[
  {
    "path": ".github/workflows/build.yml",
    "content": "name: Build CI release\n\non:\n  push:\n    branches:\n      - master\n    # paths:\n    #   - 'Quelea/**'\n\n  pull_request:\n    branches:\n      - master\n\nconcurrency:\n  group: ${{ github.workflow }}-${{ github.ref }}\n  cancel-in-progress: true\n\njobs:\n  release:\n    runs-on: ubuntu-24.04\n    steps:\n      - name: Checkout\n        uses: actions/checkout@v4\n\n      - name: Setup Java\n        uses: actions/setup-java@v4\n        with:\n          java-version: '25'\n          java-package: 'jdk'\n          distribution: 'temurin'\n      \n      - name: Setup Gradle\n        uses: gradle/actions/setup-gradle@v5\n      \n      - name: Install Wine and Flatpak\n        run: |\n          sudo dpkg --add-architecture i386\n          sudo apt update\n          sudo apt install wine wine32 wine64 flatpak flatpak-builder\n\n      - name: Setup Inno Setup cache\n        id: cache-innosetup\n        uses: actions/cache@v4\n        with:\n          path: ~/.wine/drive_c/Program Files (x86)/Inno Setup 6\n          key: ${{ runner.os }}-innosetup\n\n      - name: Install InnoSetup\n        if: ${{ ! steps.cache-innosetup.outputs.cache-hit }} # || true on Inno Setup update\n        env:\n          DISPLAY: :99\n          WINEDEBUG: -all,err+all\n          WINEARCH: win64\n        run: |\n          Xvfb $DISPLAY &\n          curl -SL \"https://files.jrsoftware.org/is/6/innosetup-6.2.2.exe\" -o is.exe\n          wine is.exe /SP- /VERYSILENT /ALLUSERS /SUPPRESSMSGBOXES\n\n      - name: Build\n        run: |\n          cd Quelea\n          gradle -Dnightly=true -Dversionsuffix=CI-UNSTABLE clean dist\n\n      - name: Cache Flatpak\n        uses: actions/cache@v4\n        with:\n          path: |\n            flatpak/repo\n            flatpak/builddir\n          key: flatpak\n\n      - name: Build Flatpak\n        run: |\n          flatpak remote-add --if-not-exists --user flathub https://dl.flathub.org/repo/flathub.flatpakrepo\n          cd flatpak\n          flatpak-builder --force-clean --user --install-deps-from=flathub --repo=repo builddir org.quelea.Quelea.yml\n          flatpak build-bundle repo/ ../Quelea/dist/standalone/quelea-CI-UNSTABLE.flatpak org.quelea.Quelea --runtime-repo=https://flathub.org/repo/flathub.flatpakrepo\n\n      - name: upload-unsigned-artifact\n        if: ${{ github.event_name == 'push' }}\n        id: upload-unsigned-artifact\n        uses: actions/upload-artifact@v4\n        with: \n          path: Quelea/dist/standalone/quelea-CI-UNSTABLE-x64-windows-install.exe\n\n      - name: Remove unsigned artifact\n        if: ${{ github.event_name == 'push' }}\n        run: |\n          rm -f Quelea/dist/standalone/quelea-CI-UNSTABLE-x64-windows-install.exe\n            \n      - name: Sign windows installer\n        if: ${{ github.event_name == 'push' }}\n        uses: signpath/github-action-submit-signing-request@v1\n        with:\n          api-token: '${{ secrets.SIGNPATH_API_TOKEN }}'\n          organization-id: '47d2e61b-2716-4b94-b15a-91240cb1d14c'\n          project-slug: 'Quelea'\n          signing-policy-slug: 'test-signing'\n          github-artifact-id: '${{ steps.upload-unsigned-artifact.outputs.artifact-id }}'\n          wait-for-completion: true\n          output-artifact-directory: 'Quelea/dist/standalone/'\n\n      - name: Upload binaries to release\n        if: ${{ github.event_name == 'push' }}\n        uses: softprops/action-gh-release@v2\n        with:\n          files: Quelea/dist/standalone/*\n          tag_name: CI-RELEASE\n          prerelease: true\n          make_latest: false\n          body: \"**This is a CI Build, built from the latest copy of the source code automatically. \n                It's not an official release and we don't recommend using this in production.**<br/>\n                Quelea is also distributed as a Linux snap package. To install it, make \n                sure snap is installed then run:\n                <pre>sudo snap install --edge quelea</pre>\"\n\n      - name: Upload standalones as artifact of PR\n        if: ${{ github.event_name == 'pull_request' }}\n        uses: actions/upload-artifact@v4\n        with:\n          path: Quelea/dist/standalone/\n"
  },
  {
    "path": ".github/workflows/label_update.yml",
    "content": "name: Update missing labels\n\non:\n  push:\n    branches:\n      - 'master'\n\njobs:\n  update-labels:\n    runs-on: ubuntu-24.04\n    steps:\n      - name: Checkout main source\n        uses: actions/checkout@v4\n        with:\n          path: 'main'\n      - name: Setup Java\n        uses: actions/setup-java@v4\n        with:\n          java-version: '25'\n          java-package: 'jdk'\n          distribution: 'temurin'\n      - name: Setup Gradle\n        uses: gradle/actions/setup-gradle@v5\n      - name: Checkout doc source\n        env:\n          QBOT_TOKEN: ${{ secrets.QBOT_TOKEN }}\n        run: |\n          git clone https://quelea-bot:${QBOT_TOKEN}@github.com/quelea-projection/quelea-projection.github.io.git ./doc\n      - name: Find missing labels\n        run: |\n          cd main/Quelea\n          chmod +x gradlew\n          chmod +x build-install.sh\n          ./gradlew -Dnightly=true -Dversionsuffix=CI-UNSTABLE labelcheck\n          cd ../..\n          cp main/Quelea/dist/missinglabels.js doc/lang/\n          cd doc\n          git add lang/missinglabels.js\n          git config --local user.email \"github-actions[bot]@users.noreply.github.com\"\n          git config --local user.name \"github-actions[bot]\"\n          git commit -m \"Update missing labels file\" || true\n          git push\n"
  },
  {
    "path": ".gitignore",
    "content": ".gradle\n\n# Compiled class file\n*.class\n\n# Log file\n*.log\n\n# Package Files #\n*.jar\n*.war\n*.nar\n*.ear\n\n# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml\nhs_err_pid*\n\nQuelea/bundlejre/*\nQuelea/build/*\nQuelea/out-mac/*\nQuelea/dist/*\nQuelea/nbproject/*\nQuelea/.idea/*\nQuelea/output/*\nQuelea/.gradle/*\nQuelea/.nb-gradle/*\nQuelea/bin/*\nQuelea/private/*\n\nflatpak/**/builddir\nflatpak/**/.flatpak-builder\nflatpak/**/repo\n\nThumbs.db\ngs.msi"
  },
  {
    "path": "CONTRIBUTING.md",
    "content": "# Contributing to Quelea\n\nContributions are always welcome! There's three main ways you can contribute to Quelea - you can report issues, [maintain and add translations](https://quelea.org/lang/), and contribute to the code directly.\n\n## Reporting issues\n\nNo qualms here - any issues you find, or anything you feel should be included, just create an issue and we'll get to it. Don't worry if you're not sure if it's something that's already been added, if so we'll just point it out to you and then close it off.\n\n## Translations\n\nIn brief, the guidelines for contributing to translations can be found here: https://quelea.org/lang/\n\nWe're always happy to receive pull requests containing missing labels, or corrections to existing labels - so long as these are in the correct format, there's no reason we'd reject these pull requests (and hey, if they're in the incorrect format somehow then we're always happy to work with you to fix it!)\n\nIt's also fantastic when someone contributes a new translation, and we gladly accept these too! The only caveat is that you must speak the language fluently, and most of the labels must be translated. We don't mind if the bulk are done and you aim to fill in the rest at a later point, but we won't accept new translations that just have a few lines translated.\n\n## Code\n\nIt's always fantastic when new code contributors come on board! We generally accept bug fixes, so long as the commit comments are clear, the fixes clearly won't introduce any new issues (or at least have a very low probability of doing so), and the code is well written and clearly documented. In the case where any of these aren't the case, then we won't accept right away, but where possible we'll happily work with you to bring your contribution to the point where we can accept it.\n\nHowever, please be aware the bar is set far higher for pull requests for new features out of the blue - especially if these haven't been discussed and agreed with the core team in advance. **There's a good chance these could just be closed if we don't agree that the feature(s) being added are a priority.** New features may seem great to have, but we have to make sure that they're implemented well, not rushed, and the core team agrees on any UX implications they may have. If you're thinking of a new feature, then talk to us first (feel free to create an issue for it if one doesn't exist already.) Additional features also present an ongoing maintenance burden to the core contributors, as they'd have to be supported & maintained long after the original PR author may have disappeared.\n\nIn short, please **only submit a PR for a new feature if you're prepared for the good possibility that PR is rejected.**\n\nMajor refactorings of the project, or a significant part of it, are very unlikely to be accepted unless specifically discussed and agreed in advance. (This is usually something that we'd leave to the core developers though.)\n\nPlease see the [Setup Guide](docs/SETUP.md) for information on setting up a local development environment.\n\n## Final notes\n\nPlease don't let any of the above put you off contributing! We love contributions, and we're always happy to work with you where we can. We just can't promise to accept everything - Quelea now has a reasonable user base and the decisions we make around the code have real world implications, so we have to be convinced that contributions are definitely going to have a positive effect on our users before we accept them.\n\nOf course, if you want to make changes you don't *have* to push them back to us - that's the beauty of open source! If you've got a bunch of changes you think would make Quelea better for your particular use case, then feel free to fork it, make all the changes you like and then use it how you please!\n"
  },
  {
    "path": "LICENSE",
    "content": "                    GNU GENERAL PUBLIC LICENSE\n                       Version 3, 29 June 2007\n\n Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n                            Preamble\n\n  The GNU General Public License is a free, copyleft license for\nsoftware and other kinds of works.\n\n  The licenses for most software and other practical works are designed\nto take away your freedom to share and change the works.  By contrast,\nthe GNU General Public License is intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users.  We, the Free Software Foundation, use the\nGNU General Public License for most of our software; it applies also to\nany other work released this way by its authors.  You can apply it to\nyour programs, too.\n\n  When we speak of free software, we are referring to freedom, not\nprice.  Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthem if you wish), that you receive source code or can get it if you\nwant it, that you can change the software or use pieces of it in new\nfree programs, and that you know you can do these things.\n\n  To protect your rights, we need to prevent others from denying you\nthese rights or asking you to surrender the rights.  Therefore, you have\ncertain responsibilities if you distribute copies of the software, or if\nyou modify it: responsibilities to respect the freedom of others.\n\n  For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must pass on to the recipients the same\nfreedoms that you received.  You must make sure that they, too, receive\nor can get the source code.  And you must show them these terms so they\nknow their rights.\n\n  Developers that use the GNU GPL protect your rights with two steps:\n(1) assert copyright on the software, and (2) offer you this License\ngiving you legal permission to copy, distribute and/or modify it.\n\n  For the developers' and authors' protection, the GPL clearly explains\nthat there is no warranty for this free software.  For both users' and\nauthors' sake, the GPL requires that modified versions be marked as\nchanged, so that their problems will not be attributed erroneously to\nauthors of previous versions.\n\n  Some devices are designed to deny users access to install or run\nmodified versions of the software inside them, although the manufacturer\ncan do so.  This is fundamentally incompatible with the aim of\nprotecting users' freedom to change the software.  The systematic\npattern of such abuse occurs in the area of products for individuals to\nuse, which is precisely where it is most unacceptable.  Therefore, we\nhave designed this version of the GPL to prohibit the practice for those\nproducts.  If such problems arise substantially in other domains, we\nstand ready to extend this provision to those domains in future versions\nof the GPL, as needed to protect the freedom of users.\n\n  Finally, every program is threatened constantly by software patents.\nStates should not allow patents to restrict development and use of\nsoftware on general-purpose computers, but in those that do, we wish to\navoid the special danger that patents applied to a free program could\nmake it effectively proprietary.  To prevent this, the GPL assures that\npatents cannot be used to render the program non-free.\n\n  The precise terms and conditions for copying, distribution and\nmodification follow.\n\n                       TERMS AND CONDITIONS\n\n  0. Definitions.\n\n  \"This License\" refers to version 3 of the GNU General Public License.\n\n  \"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such as semiconductor masks.\n\n  \"The Program\" refers to any copyrightable work licensed under this\nLicense.  Each licensee is addressed as \"you\".  \"Licensees\" and\n\"recipients\" may be individuals or organizations.\n\n  To \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy.  The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\n\n  A \"covered work\" means either the unmodified Program or a work based\non the Program.\n\n  To \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy.  Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\n\n  To \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies.  Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\n\n  An interactive user interface displays \"Appropriate Legal Notices\"\nto the extent that it includes a convenient and prominently visible\nfeature that (1) displays an appropriate copyright notice, and (2)\ntells the user that there is no warranty for the work (except to the\nextent that warranties are provided), that licensees may convey the\nwork under this License, and how to view a copy of this License.  If\nthe interface presents a list of user commands or options, such as a\nmenu, a prominent item in the list meets this criterion.\n\n  1. Source Code.\n\n  The \"source code\" for a work means the preferred form of the work\nfor making modifications to it.  \"Object code\" means any non-source\nform of a work.\n\n  A \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that\nis widely used among developers working in that language.\n\n  The \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that\nMajor Component, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form.  A\n\"Major Component\", in this context, means a major essential component\n(kernel, window system, and so on) of the specific operating system\n(if any) on which the executable work runs, or a compiler used to\nproduce the work, or an object code interpreter used to run it.\n\n  The \"Corresponding Source\" for a work in object code form means all\nthe source code needed to generate, install, and (for an executable\nwork) run the object code and to modify the work, including scripts to\ncontrol those activities.  However, it does not include the work's\nSystem Libraries, or general-purpose tools or generally available free\nprograms which are used unmodified in performing those activities but\nwhich are not part of the work.  For example, Corresponding Source\nincludes interface definition files associated with source files for\nthe work, and the source code for shared libraries and dynamically\nlinked subprograms that the work is specifically designed to require,\nsuch as by intimate data communication or control flow between those\nsubprograms and other parts of the work.\n\n  The Corresponding Source need not include anything that users\ncan regenerate automatically from other parts of the Corresponding\nSource.\n\n  The Corresponding Source for a work in source code form is that\nsame work.\n\n  2. Basic Permissions.\n\n  All rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met.  This License explicitly affirms your unlimited\npermission to run the unmodified Program.  The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work.  This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\n\n  You may make, run and propagate covered works that you do not\nconvey, without conditions so long as your license otherwise remains\nin force.  You may convey covered works to others for the sole purpose\nof having them make modifications exclusively for you, or provide you\nwith facilities for running those works, provided that you comply with\nthe terms of this License in conveying all material for which you do\nnot control copyright.  Those thus making or running the covered works\nfor you must do so exclusively on your behalf, under your direction\nand control, on terms that prohibit them from making any copies of\nyour copyrighted material outside their relationship with you.\n\n  Conveying under any other circumstances is permitted solely under\nthe conditions stated below.  Sublicensing is not allowed; section 10\nmakes it unnecessary.\n\n  3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n\n  No covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\nsimilar laws prohibiting or restricting circumvention of such\nmeasures.\n\n  When you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to\nthe covered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\n  4. Conveying Verbatim Copies.\n\n  You may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice;\nkeep intact all notices stating that this License and any\nnon-permissive terms added in accord with section 7 apply to the code;\nkeep intact all notices of the absence of any warranty; and give all\nrecipients a copy of this License along with the Program.\n\n  You may charge any price or no price for each copy that you convey,\nand you may offer support or warranty protection for a fee.\n\n  5. Conveying Modified Source Versions.\n\n  You may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the\nterms of section 4, provided that you also meet all of these conditions:\n\n    a) The work must carry prominent notices stating that you modified\n    it, and giving a relevant date.\n\n    b) The work must carry prominent notices stating that it is\n    released under this License and any conditions added under section\n    7.  This requirement modifies the requirement in section 4 to\n    \"keep intact all notices\".\n\n    c) You must license the entire work, as a whole, under this\n    License to anyone who comes into possession of a copy.  This\n    License will therefore apply, along with any applicable section 7\n    additional terms, to the whole of the work, and all its parts,\n    regardless of how they are packaged.  This License gives no\n    permission to license the work in any other way, but it does not\n    invalidate such permission if you have separately received it.\n\n    d) If the work has interactive user interfaces, each must display\n    Appropriate Legal Notices; however, if the Program has interactive\n    interfaces that do not display Appropriate Legal Notices, your\n    work need not make them do so.\n\n  A compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work,\nand which are not combined with it such as to form a larger program,\nin or on a volume of a storage or distribution medium, is called an\n\"aggregate\" if the compilation and its resulting copyright are not\nused to limit the access or legal rights of the compilation's users\nbeyond what the individual works permit.  Inclusion of a covered work\nin an aggregate does not cause this License to apply to the other\nparts of the aggregate.\n\n  6. Conveying Non-Source Forms.\n\n  You may convey a covered work in object code form under the terms\nof sections 4 and 5, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License,\nin one of these ways:\n\n    a) Convey the object code in, or embodied in, a physical product\n    (including a physical distribution medium), accompanied by the\n    Corresponding Source fixed on a durable physical medium\n    customarily used for software interchange.\n\n    b) Convey the object code in, or embodied in, a physical product\n    (including a physical distribution medium), accompanied by a\n    written offer, valid for at least three years and valid for as\n    long as you offer spare parts or customer support for that product\n    model, to give anyone who possesses the object code either (1) a\n    copy of the Corresponding Source for all the software in the\n    product that is covered by this License, on a durable physical\n    medium customarily used for software interchange, for a price no\n    more than your reasonable cost of physically performing this\n    conveying of source, or (2) access to copy the\n    Corresponding Source from a network server at no charge.\n\n    c) Convey individual copies of the object code with a copy of the\n    written offer to provide the Corresponding Source.  This\n    alternative is allowed only occasionally and noncommercially, and\n    only if you received the object code with such an offer, in accord\n    with subsection 6b.\n\n    d) Convey the object code by offering access from a designated\n    place (gratis or for a charge), and offer equivalent access to the\n    Corresponding Source in the same way through the same place at no\n    further charge.  You need not require recipients to copy the\n    Corresponding Source along with the object code.  If the place to\n    copy the object code is a network server, the Corresponding Source\n    may be on a different server (operated by you or a third party)\n    that supports equivalent copying facilities, provided you maintain\n    clear directions next to the object code saying where to find the\n    Corresponding Source.  Regardless of what server hosts the\n    Corresponding Source, you remain obligated to ensure that it is\n    available for as long as needed to satisfy these requirements.\n\n    e) Convey the object code using peer-to-peer transmission, provided\n    you inform other peers where the object code and Corresponding\n    Source of the work are being offered to the general public at no\n    charge under subsection 6d.\n\n  A separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be\nincluded in conveying the object code work.\n\n  A \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for incorporation\ninto a dwelling.  In determining whether a product is a consumer product,\ndoubtful cases shall be resolved in favor of coverage.  For a particular\nproduct received by a particular user, \"normally used\" refers to a\ntypical or common use of that class of product, regardless of the status\nof the particular user or of the way in which the particular user\nactually uses, or expects or is expected to use, the product.  A product\nis a consumer product regardless of whether the product has substantial\ncommercial, industrial or non-consumer uses, unless such uses represent\nthe only significant mode of use of the product.\n\n  \"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product from\na modified version of its Corresponding Source.  The information must\nsuffice to ensure that the continued functioning of the modified object\ncode is in no case prevented or interfered with solely because\nmodification has been made.\n\n  If you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied\nby the Installation Information.  But this requirement does not apply\nif neither you nor any third party retains the ability to install\nmodified object code on the User Product (for example, the work has\nbeen installed in ROM).\n\n  The requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed.  Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\n\n  Corresponding Source conveyed, and Installation Information provided,\nin accord with this section must be in a format that is publicly\ndocumented (and with an implementation available to the public in\nsource code form), and must require no special password or key for\nunpacking, reading or copying.\n\n  7. Additional Terms.\n\n  \"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law.  If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by\nthis License without regard to the additional permissions.\n\n  When you convey a copy of a covered work, you may at your option\nremove any additional permissions from that copy, or from any part of\nit.  (Additional permissions may be written to require their own\nremoval in certain cases when you modify the work.)  You may place\nadditional permissions on material, added by you to a covered work,\nfor which you have or can give appropriate copyright permission.\n\n  Notwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders of\nthat material) supplement the terms of this License with terms:\n\n    a) Disclaiming warranty or limiting liability differently from the\n    terms of sections 15 and 16 of this License; or\n\n    b) Requiring preservation of specified reasonable legal notices or\n    author attributions in that material or in the Appropriate Legal\n    Notices displayed by works containing it; or\n\n    c) Prohibiting misrepresentation of the origin of that material, or\n    requiring that modified versions of such material be marked in\n    reasonable ways as different from the original version; or\n\n    d) Limiting the use for publicity purposes of names of licensors or\n    authors of the material; or\n\n    e) Declining to grant rights under trademark law for use of some\n    trade names, trademarks, or service marks; or\n\n    f) Requiring indemnification of licensors and authors of that\n    material by anyone who conveys the material (or modified versions of\n    it) with contractual assumptions of liability to the recipient, for\n    any liability that these contractual assumptions directly impose on\n    those licensors and authors.\n\n  All other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10.  If the Program as you\nreceived it, or any part of it, contains a notice stating that it is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term.  If a license document contains\na further restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms\nof that license document, provided that the further restriction does\nnot survive such relicensing or conveying.\n\n  If you add terms to a covered work in accord with this section, you\nmust place, in the relevant source files, a statement of the\nadditional terms that apply to those files, or a notice indicating\nwhere to find the applicable terms.\n\n  Additional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions;\nthe above requirements apply either way.\n\n  8. Termination.\n\n  You may not propagate or modify a covered work except as expressly\nprovided under this License.  Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\n\n  However, if you cease all violation of this License, then your\nlicense from a particular copyright holder is reinstated (a)\nprovisionally, unless and until the copyright holder explicitly and\nfinally terminates your license, and (b) permanently, if the copyright\nholder fails to notify you of the violation by some reasonable means\nprior to 60 days after the cessation.\n\n  Moreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\n  Termination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License.  If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\n  9. Acceptance Not Required for Having Copies.\n\n  You are not required to accept this License in order to receive or\nrun a copy of the Program.  Ancillary propagation of a covered work\noccurring solely as a consequence of using peer-to-peer transmission\nto receive a copy likewise does not require acceptance.  However,\nnothing other than this License grants you permission to propagate or\nmodify any covered work.  These actions infringe copyright if you do\nnot accept this License.  Therefore, by modifying or propagating a\ncovered work, you indicate your acceptance of this License to do so.\n\n  10. Automatic Licensing of Downstream Recipients.\n\n  Each time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License.  You are not responsible\nfor enforcing compliance by third parties with this License.\n\n  An \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations.  If propagation of a covered\nwork results from an entity transaction, each party to that\ntransaction who receives a copy of the work also receives whatever\nlicenses to the work the party's predecessor in interest had or could\ngive under the previous paragraph, plus a right to possession of the\nCorresponding Source of the work from the predecessor in interest, if\nthe predecessor has it or can get it with reasonable efforts.\n\n  You may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License.  For example, you may\nnot impose a license fee, royalty, or other charge for exercise of\nrights granted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that\nany patent claim is infringed by making, using, selling, offering for\nsale, or importing the Program or any portion of it.\n\n  11. Patents.\n\n  A \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based.  The\nwork thus licensed is called the contributor's \"contributor version\".\n\n  A contributor's \"essential patent claims\" are all patent claims\nowned or controlled by the contributor, whether already acquired or\nhereafter acquired, that would be infringed by some manner, permitted\nby this License, of making, using, or selling its contributor version,\nbut do not include claims that would be infringed only as a\nconsequence of further modification of the contributor version.  For\npurposes of this definition, \"control\" includes the right to grant\npatent sublicenses in a manner consistent with the requirements of\nthis License.\n\n  Each contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to\nmake, use, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\n\n  In the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement).  To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\n\n  If you convey a covered work, knowingly relying on a patent license,\nand the Corresponding Source of the work is not available for anyone\nto copy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients.  \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\n\n  If, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify\nor convey a specific copy of the covered work, then the patent license\nyou grant is automatically extended to all recipients of the covered\nwork and works based on it.\n\n  A patent license is \"discriminatory\" if it does not include within\nthe scope of its coverage, prohibits the exercise of, or is\nconditioned on the non-exercise of one or more of the rights that are\nspecifically granted under this License.  You may not convey a covered\nwork if you are a party to an arrangement with a third party that is\nin the business of distributing software, under which you make payment\nto the third party based on the extent of your activity of conveying\nthe work, and under which the third party grants, to any of the\nparties who would receive the covered work from you, a discriminatory\npatent license (a) in connection with copies of the covered work\nconveyed by you (or copies made from those copies), or (b) primarily\nfor and in connection with specific products or compilations that\ncontain the covered work, unless you entered into that arrangement,\nor that patent license was granted, prior to 28 March 2007.\n\n  Nothing in this License shall be construed as excluding or limiting\nany implied license or other defenses to infringement that may\notherwise be available to you under applicable patent law.\n\n  12. No Surrender of Others' Freedom.\n\n  If conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License.  If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you may\nnot convey it at all.  For example, if you agree to terms that obligate you\nto collect a royalty for further conveying from those to whom you convey\nthe Program, the only way you could satisfy both those terms and this\nLicense would be to refrain entirely from conveying the Program.\n\n  13. Use with the GNU Affero General Public License.\n\n  Notwithstanding any other provision of this License, you have\npermission to link or combine any covered work with a work licensed\nunder version 3 of the GNU Affero General Public License into a single\ncombined work, and to convey the resulting work.  The terms of this\nLicense will continue to apply to the part which is the covered work,\nbut the special requirements of the GNU Affero General Public License,\nsection 13, concerning interaction through a network will apply to the\ncombination as such.\n\n  14. Revised Versions of this License.\n\n  The Free Software Foundation may publish revised and/or new versions of\nthe GNU General Public License from time to time.  Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\n  Each version is given a distinguishing version number.  If the\nProgram specifies that a certain numbered version of the GNU General\nPublic License \"or any later version\" applies to it, you have the\noption of following the terms and conditions either of that numbered\nversion or of any later version published by the Free Software\nFoundation.  If the Program does not specify a version number of the\nGNU General Public License, you may choose any version ever published\nby the Free Software Foundation.\n\n  If the Program specifies that a proxy can decide which future\nversions of the GNU General Public License can be used, that proxy's\npublic statement of acceptance of a version permanently authorizes you\nto choose that version for the Program.\n\n  Later license versions may give you additional or different\npermissions.  However, no additional obligations are imposed on any\nauthor or copyright holder as a result of your choosing to follow a\nlater version.\n\n  15. Disclaimer of Warranty.\n\n  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\nIS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n  16. Limitation of Liability.\n\n  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\n  17. Interpretation of Sections 15 and 16.\n\n  If the disclaimer of warranty and limitation of liability provided\nabove cannot be given local legal effect according to their terms,\nreviewing courts shall apply local law that most closely approximates\nan absolute waiver of all civil liability in connection with the\nProgram, unless a warranty or assumption of liability accompanies a\ncopy of the Program in return for a fee.\n\n                     END OF TERMS AND CONDITIONS\n\n            How to Apply These Terms to Your New Programs\n\n  If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n  To do so, attach the following notices to the program.  It is safest\nto attach them to the start of each source file to most effectively\nstate the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n    <one line to give the program's name and a brief idea of what it does.>\n    Copyright (C) <year>  <name of author>\n\n    This program is free software: you can redistribute it and/or modify\n    it under the terms of the GNU General Public License as published by\n    the Free Software Foundation, either version 3 of the License, or\n    (at your option) any later version.\n\n    This program is distributed in the hope that it will be useful,\n    but WITHOUT ANY WARRANTY; without even the implied warranty of\n    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n    GNU General Public License for more details.\n\n    You should have received a copy of the GNU General Public License\n    along with this program.  If not, see <http://www.gnu.org/licenses/>.\n\nAlso add information on how to contact you by electronic and paper mail.\n\n  If the program does terminal interaction, make it output a short\nnotice like this when it starts in an interactive mode:\n\n    <program>  Copyright (C) <year>  <name of author>\n    This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n    This is free software, and you are welcome to redistribute it\n    under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate\nparts of the General Public License.  Of course, your program's commands\nmight be different; for a GUI interface, you would use an \"about box\".\n\n  You should also get your employer (if you work as a programmer) or school,\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\nFor more information on this, and how to apply and follow the GNU GPL, see\n<http://www.gnu.org/licenses/>.\n\n  The GNU General Public License does not permit incorporating your program\ninto proprietary programs.  If your program is a subroutine library, you\nmay consider it more useful to permit linking proprietary applications with\nthe library.  If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License.  But first, please read\n<http://www.gnu.org/philosophy/why-not-lgpl.html>.\n"
  },
  {
    "path": "Quelea/.nb-gradle-properties",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n<gradle-project-properties>\n  <!--DO NOT EDIT THIS FILE! - Used by the Gradle plugin of NetBeans.-->\n  <target-platform-name>j2se</target-platform-name>\n  <target-platform>1.8</target-platform>\n  <source-level>1.8</source-level>\n  <script-platform>\n    <spec-name>j2se</spec-name>\n    <spec-version>1.8</spec-version>\n  </script-platform>\n</gradle-project-properties>\n"
  },
  {
    "path": "Quelea/.vscode/launch.json",
    "content": "{\n    // Use IntelliSense to learn about possible attributes.\n    // Hover to view descriptions of existing attributes.\n    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387\n    \"version\": \"0.2.0\",\n    \"configurations\": [\n        {\n            \"type\": \"java\",\n            \"name\": \"Quelea MainStub\",\n            \"request\": \"launch\",\n            \"mainClass\": \"org.quelea.windows.main.MainStub\",\n            \"projectName\": \"Quelea\",\n            \"encoding\": \"UTF-8\",\n            \"vmArgs\":  [\"-Dfile.encoding=UTF-8\",\"-Dprism.dirtyopts=false\",\"-Dglass.accessible.force=false\",\"--add-exports=javafx.graphics/com.sun.javafx.css=ALL-UNNAMED\",\"--add-exports=javafx.base/com.sun.javafx.runtime=ALL-UNNAMED\",\"--add-exports=javafx.base/com.sun.javafx.event=ALL-UNNAMED\",\"--add-opens=java.base/java.lang=ALL-UNNAMED\",\"--add-opens=javafx.controls/javafx.scene.control=ALL-UNNAMED\"]\n        },\n        {\n            \"type\": \"java\",\n            \"name\": \"LabelChecker\",\n            \"request\": \"launch\",\n            \"mainClass\": \"org.quelea.services.languages.LabelChecker\",\n            \"projectName\": \"Quelea\"\n        },\n        {\n            \"type\": \"java\",\n            \"name\": \"USEnglishConverter\",\n            \"request\": \"launch\",\n            \"mainClass\": \"org.quelea.services.languages.USEnglishConverter\",\n            \"projectName\": \"Quelea\"\n        },\n        {\n            \"type\": \"java\",\n            \"name\": \"ImageChecker\",\n            \"request\": \"launch\",\n            \"mainClass\": \"org.quelea.services.utils.ImageChecker\",\n            \"projectName\": \"Quelea\"\n        },\n        {\n            \"type\": \"java\",\n            \"name\": \"ReleaseSummaryGenerator\",\n            \"request\": \"launch\",\n            \"mainClass\": \"org.quelea.services.utils.ReleaseSummaryGenerator\",\n            \"projectName\": \"Quelea\"\n        },\n        {\n            \"type\": \"java\",\n            \"name\": \"GZMaxFileCompressor\",\n            \"request\": \"launch\",\n            \"mainClass\": \"org.quelea.services.utils.GZMaxFileCompressor\",\n            \"projectName\": \"Quelea\",\n            \"args\": \"${command:SpecifyProgramArgs}\" //needs 2 args (an input file name, an output file name)\n        },\n        /*{\n            \"type\": \"java\",\n            \"name\": \"LineTypeChecker\",\n            \"request\": \"launch\",\n            \"mainClass\": \"org.quelea.services.utils.LineTypeChecker\",\n            \"projectName\": \"Quelea\"\n        },*/\n        /*{\n            \"type\": \"java\",\n            \"name\": \"SongDuplicateChecker\",\n            \"request\": \"launch\",\n            \"mainClass\": \"org.quelea.services.utils.SongDuplicateChecker\",\n            \"projectName\": \"Quelea\"\n        },*/\n        /*{\n            \"type\": \"java\",\n            \"name\": \"Main\",\n            \"request\": \"launch\",\n            \"mainClass\": \"org.quelea.windows.main.Main\",\n            \"projectName\": \"Quelea\",\n            \"vmArgs\": [\"Xmx2G\",\"XX:+UseParallelGC\"]\n        },*/\n        \n    ]\n}"
  },
  {
    "path": "Quelea/CHANGE VERSION",
    "content": "When changing the version number, it needs to be changed in:\n\n1) Version constant in QueleaProperties.java (remember the minor version constant as the second argument if this is an Alpha / Beta / another dev release.)\n2) gradle.properties\n3) snap/snapcraft.yaml\n4) Add a <release> tag to releases in flatpak/org.quelea.Quelea.metainfo.xml (Linux metainfo)\n\nEverything else should now be automated.\n\nWhen releasing, change links on http://quelea.org/download\n"
  },
  {
    "path": "Quelea/Quelea.bat",
    "content": "java --add-opens java.base/java.nio=ALL-UNNAMED --add-exports=javafx.graphics/com.sun.javafx.css=ALL-UNNAMED --add-exports=javafx.base/com.sun.javafx.runtime=ALL-UNNAMED --add-exports=javafx.base/com.sun.javafx.event=ALL-UNNAMED --add-opens java.base/java.lang=ALL-UNNAMED --add-opens javafx.controls/javafx.scene.control=ALL-UNNAMED -Dfile.encoding=UTF-8 -Dprism.dirtyopts=false -jar Quelea.jar\n"
  },
  {
    "path": "Quelea/bibles/asv.xml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<XMLBIBLE xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:noNamespaceSchemaLocation=\"zef2005.xsd\" version=\"2.0.1.18\" status=\"v\" biblename=\"American Standard Version\" revision=\"3\" type=\"x-bible\">\r\n  <BIBLEBOOK bnumber=\"1\" bname=\"Genesis\" bsname=\"Gen\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">In the beginning God created the heavens and the earth.</VERS>\r\n      <VERS vnumber=\"2\">And the earth was waste and void; and darkness was upon the face of the deep: and the Spirit of God moved upon the face of the waters</VERS>\r\n      <VERS vnumber=\"3\">And God said, Let there be light: and there was light.</VERS>\r\n      <VERS vnumber=\"4\">And God saw the light, that it was good: and God divided the light from the darkness.</VERS>\r\n      <VERS vnumber=\"5\">And God called the light Day, and the darkness he called Night. And there was evening and there was morning, one day.</VERS>\r\n      <VERS vnumber=\"6\">And God said, Let there be a firmament in the midst of the waters, and let it divide the waters from the waters.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And God called the firmament Heaven. And there was evening and there was morning, a second day.</VERS>\r\n      <VERS vnumber=\"9\">And God said, Let the waters under the heavens be gathered together unto one place, and let the dry land appear: and it was so.</VERS>\r\n      <VERS vnumber=\"10\">And God called the dry land Earth; and the gathering together of the waters called he Seas: and God saw that it was good.</VERS>\r\n      <VERS vnumber=\"11\">And God said, Let the earth put forth grass, herbs yielding seed, [and] fruit-trees bearing fruit after their kind, wherein is the seed thereof, upon the earth: and it was so.</VERS>\r\n      <VERS vnumber=\"12\">And the earth brought forth grass, herbs yielding seed after their kind, and trees bearing fruit, wherein is the seed thereof, after their kind: and God saw that it was good.</VERS>\r\n      <VERS vnumber=\"13\">And there was evening and there was morning, a third day.</VERS>\r\n      <VERS vnumber=\"14\">And God said, Let there be lights in the firmament of heaven to divide the day from the night; and let them be for signs, and for seasons, and for days and years:</VERS>\r\n      <VERS vnumber=\"15\">and let them be for lights in the firmament of heaven to give light upon the earth: and it was so.</VERS>\r\n      <VERS vnumber=\"16\">And God made the two great lights; the greater light to rule the day, and the lesser light to rule the night: [he made] the stars also.</VERS>\r\n      <VERS vnumber=\"17\">And God set them in the firmament of heaven to give light upon the earth,</VERS>\r\n      <VERS vnumber=\"18\">and to rule over the day and over the night, and to divide the light from the darkness: and God saw that it was good.</VERS>\r\n      <VERS vnumber=\"19\">And there was evening and there was morning, a fourth day.</VERS>\r\n      <VERS vnumber=\"20\">And God said, Let the waters swarm with swarms of living creatures, and let birds fly above the earth in the open firmament of heaven.</VERS>\r\n      <VERS vnumber=\"21\">And God created the great sea-monsters, and every living creature that moveth, wherewith the waters swarmed, after their kind, and every winged bird after its kind: and God saw that it was good.</VERS>\r\n      <VERS vnumber=\"22\">And God blessed them, saying, Be fruitful, and multiply, and fill the waters in the seas, and let birds multiply on the earth.</VERS>\r\n      <VERS vnumber=\"23\">And there was evening and there was morning, a fifth day.</VERS>\r\n      <VERS vnumber=\"24\">And God said, Let the earth bring forth living creatures after their kind, cattle, and creeping things, and beasts of the earth after their kind: and it was so.</VERS>\r\n      <VERS vnumber=\"25\">And God made the beasts of the earth after their kind, and the cattle after their kind, and everything that creepeth upon the ground after its kind: and God saw that it was good.</VERS>\r\n      <VERS vnumber=\"26\">And 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 birds of the heavens, and over the cattle, and over all the earth, and over every creeping thing that creepeth upon the earth.</VERS>\r\n      <VERS vnumber=\"27\">And God created man in his own image, in the image of God created he him; male and female created he them.</VERS>\r\n      <VERS vnumber=\"28\">And 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 birds of the heavens, and over every living thing that moveth upon the earth.</VERS>\r\n      <VERS vnumber=\"29\">And God said, Behold, I have given you every herb yielding seed, which is upon the face of all the earth, and every tree, in which is the fruit of a tree yielding seed; to you it shall be for food:</VERS>\r\n      <VERS vnumber=\"30\">and to every beast of the earth, and to every bird of the heavens, and to everything that creepeth upon the earth, wherein there is life, [I have given] every green herb for food: and it was so.</VERS>\r\n      <VERS vnumber=\"31\">And God saw everything that he had made, and, behold, it was very good. And there was evening and there was morning, the sixth day.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">And the heavens and the earth were finished, and all the host of them.</VERS>\r\n      <VERS vnumber=\"2\">And on the seventh day God finished his work which he had made; and he rested on the seventh day from all his work which he had made.</VERS>\r\n      <VERS vnumber=\"3\">And God blessed the seventh day, and hallowed it; because that in it he rested from all his work which God had created and made.</VERS>\r\n      <VERS vnumber=\"4\">These are the generations of the heavens and of the earth when they were created, in the day that Jehovah God made earth and heaven.</VERS>\r\n      <VERS vnumber=\"5\">And no plant of the field was yet in the earth, and no herb of the field had yet sprung up; for Jehovah God had not caused it to rain upon the earth: and there was not a man to till the ground;</VERS>\r\n      <VERS vnumber=\"6\">but there went up a mist from the earth, and watered the whole face of the ground.</VERS>\r\n      <VERS vnumber=\"7\">And Jehovah God formed man of the dust of the ground, and breathed into his nostrils the breath of life; and man became a living soul.</VERS>\r\n      <VERS vnumber=\"8\">And Jehovah God planted a garden eastward, in Eden; and there he put the man whom he had formed.</VERS>\r\n      <VERS vnumber=\"9\">And out of the ground made Jehovah 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 the knowledge of good and evil.</VERS>\r\n      <VERS vnumber=\"10\">And a river went out of Eden to water the garden; and from thence it was parted, and became four heads.</VERS>\r\n      <VERS vnumber=\"11\">The name of the first is Pishon: that is it which compasseth the whole land of Havilah, where there is gold;</VERS>\r\n      <VERS vnumber=\"12\">and the gold of that land is good: there is bdellium and the onyx stone.</VERS>\r\n      <VERS vnumber=\"13\">And the name of the second river is Gihon: the same is it that compasseth the whole land of Cush.</VERS>\r\n      <VERS vnumber=\"14\">And the name of the third river is Hiddekel: that is it which goeth in front of Assyria. And the fourth river is the Euphrates.</VERS>\r\n      <VERS vnumber=\"15\">And Jehovah God took the man, and put him into the garden of Eden to dress it and to keep it.</VERS>\r\n      <VERS vnumber=\"16\">And Jehovah God commanded the man, saying, Of every tree of the garden thou mayest freely eat:</VERS>\r\n      <VERS vnumber=\"17\">but 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.</VERS>\r\n      <VERS vnumber=\"18\">And Jehovah God said, It is not good that the man should be alone; I will make him a help meet for him.</VERS>\r\n      <VERS vnumber=\"19\">And out of the ground Jehovah God formed every beast of the field, and every bird of the heavens; and brought them unto the man to see what he would call them: and whatsoever the man called every living creature, that was the name thereof.</VERS>\r\n      <VERS vnumber=\"20\">And the man gave names to all cattle, and to the birds of the heavens, and to every beast of the field; but for man there was not found a help meet for him.</VERS>\r\n      <VERS vnumber=\"21\">And Jehovah God caused a deep sleep to fall upon the man, and he slept; and he took one of his ribs, and closed up the flesh instead thereof:</VERS>\r\n      <VERS vnumber=\"22\">and the rib, which Jehovah God had taken from the man, made he a woman, and brought her unto the man.</VERS>\r\n      <VERS vnumber=\"23\">And the man 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.</VERS>\r\n      <VERS vnumber=\"24\">Therefore shall a man leave his father and his mother, and shall cleave unto his wife: and they shall be one flesh.</VERS>\r\n      <VERS vnumber=\"25\">And they were both naked, the man and his wife, and were not ashamed.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Now the serpent was more subtle than any beast of the field which Jehovah God had made. And he said unto the woman, Yea, hath God said, Ye shall not eat of any tree of the garden?</VERS>\r\n      <VERS vnumber=\"2\">And the woman said unto the serpent, Of the fruit of the trees of the garden we may eat:</VERS>\r\n      <VERS vnumber=\"3\">but 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.</VERS>\r\n      <VERS vnumber=\"4\">And the serpent said unto the woman, Ye shall not surely die:</VERS>\r\n      <VERS vnumber=\"5\">for God doth know that in the day ye eat thereof, then your eyes shall be opened, and ye shall be as God, knowing good and evil.</VERS>\r\n      <VERS vnumber=\"6\">And when the woman saw that the tree was good for food, and that it was a delight to the eyes, and that the tree was to be desired to make one wise, she took of the fruit thereof, and did eat; and she gave also unto her husband with her, and he did eat.</VERS>\r\n      <VERS vnumber=\"7\">And the eyes of them both were opened, and they knew that they were naked; and they sewed fig-leaves together, and made themselves aprons.</VERS>\r\n      <VERS vnumber=\"8\">And they heard the voice of Jehovah God walking in the garden in the cool of the day: and the man and his wife hid themselves from the presence of Jehovah God amongst the trees of the garden.</VERS>\r\n      <VERS vnumber=\"9\">And Jehovah God called unto the man, and said unto him, Where art thou?</VERS>\r\n      <VERS vnumber=\"10\">And he said, I heard thy voice in the garden, and I was afraid, because I was naked; and I hid myself.</VERS>\r\n      <VERS vnumber=\"11\">And he said, Who told thee that thou wast naked? Hast thou eaten of the tree, whereof I commanded thee that thou shouldest not eat?</VERS>\r\n      <VERS vnumber=\"12\">And the man said, The woman whom thou gavest to be with me, she gave me of the tree, and I did eat.</VERS>\r\n      <VERS vnumber=\"13\">And Jehovah God said unto the woman, What is this thou hast done? And the woman said, The serpent beguiled me, and I did eat.</VERS>\r\n      <VERS vnumber=\"14\">And Jehovah God said unto the serpent, Because thou hast done this, cursed art thou 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:</VERS>\r\n      <VERS vnumber=\"15\">and I will put enmity between thee and the woman, and between thy seed and her seed: he shall bruise thy head, and thou shalt bruise his heel.</VERS>\r\n      <VERS vnumber=\"16\">Unto the woman he said, I will greatly multiply thy pain and thy conception; in pain thou shalt bring forth children; and thy desire shall be to thy husband, and he shall rule over thee.</VERS>\r\n      <VERS vnumber=\"17\">And 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 toil shalt thou eat of it all the days of thy life;</VERS>\r\n      <VERS vnumber=\"18\">thorns also and thistles shall it bring forth to thee; and thou shalt eat the herb of the field;</VERS>\r\n      <VERS vnumber=\"19\">in 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.</VERS>\r\n      <VERS vnumber=\"20\">And the man called his wife`s name Eve; because she was the mother of all living.</VERS>\r\n      <VERS vnumber=\"21\">And Jehovah God made for Adam and for his wife coats of skins, and clothed them.</VERS>\r\n      <VERS vnumber=\"22\">And Jehovah 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-</VERS>\r\n      <VERS vnumber=\"23\">therefore Jehovah God sent him forth from the garden of Eden, to till the ground from whence he was taken.</VERS>\r\n      <VERS vnumber=\"24\">So he drove out the man; and he placed at the east of the garden of Eden the Cherubim, and the flame of a sword which turned every way, to keep the way of the tree of life.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">And the man knew Eve his wife; and she conceived, and bare Cain, and said, I have gotten a man with [the help of] Jehovah.</VERS>\r\n      <VERS vnumber=\"2\">And again she bare his brother Abel. And Abel was a keeper of sheep, but Cain was a tiller of the ground.</VERS>\r\n      <VERS vnumber=\"3\">And in process of time it came to pass, that Cain brought of the fruit of the ground an offering unto Jehovah.</VERS>\r\n      <VERS vnumber=\"4\">And Abel, he also brought of the firstlings of his flock and of the fat thereof. And Jehovah had respect unto Abel and to his offering:</VERS>\r\n      <VERS vnumber=\"5\">but unto Cain and to his offering he had not respect. And Cain was very wroth, and his countenance fell.</VERS>\r\n      <VERS vnumber=\"6\">And Jehovah said unto Cain, Why art thou wroth? and why is thy countenance fallen?</VERS>\r\n      <VERS vnumber=\"7\">If thou doest well, shall it not be lifted up? and if thou doest not well, sin coucheth at the door: and unto thee shall be its desire, but do thou rule over it.</VERS>\r\n      <VERS vnumber=\"8\">And Cain told 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.</VERS>\r\n      <VERS vnumber=\"9\">And Jehovah said unto Cain, Where is Abel thy brother? And he said, I know not: am I my brother`s keeper?</VERS>\r\n      <VERS vnumber=\"10\">And he said, What hast thou done? the voice of thy brother`s blood crieth unto me from the ground.</VERS>\r\n      <VERS vnumber=\"11\">And now cursed art thou from the ground, which hath opened its mouth to receive thy brother`s blood from thy hand;</VERS>\r\n      <VERS vnumber=\"12\">when thou tillest the ground, it shall not henceforth yield unto thee its strength; a fugitive and a wanderer shalt thou be in the earth.</VERS>\r\n      <VERS vnumber=\"13\">And Cain said unto Jehovah, My punishment is greater than I can bear.</VERS>\r\n      <VERS vnumber=\"14\">Behold, thou hast driven me out this day from the face of the ground; and from thy face shall I be hid; and I shall be a fugitive and a wanderer in the earth; and it will come to pass, that whosoever findeth me will slay me.</VERS>\r\n      <VERS vnumber=\"15\">And Jehovah said unto him, Therefore whosoever slayeth Cain, vengeance shall be taken on him sevenfold. And Jehovah appointed a sign for Cain, lest any finding him should smite him.</VERS>\r\n      <VERS vnumber=\"16\">And Cain went out from the presence of Jehovah, and dwelt in the land of Nod, on the east of Eden.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And unto Enoch was born Irad: and Irad begat Mehujael: and Mehujael begat Methushael; and Methushael begat Lamech.</VERS>\r\n      <VERS vnumber=\"19\">And Lamech took unto him two wives: the name of the one was Adah, and the name of the other Zillah.</VERS>\r\n      <VERS vnumber=\"20\">And Adah bare Jabal: he was the father of such as dwell in tents and [have] cattle.</VERS>\r\n      <VERS vnumber=\"21\">And his brother`s name was Jubal: he was the father of all such as handle the harp and pipe.</VERS>\r\n      <VERS vnumber=\"22\">And Zillah, she also bare Tubal-cain, the forger of every cutting instrument of brass and iron: and the sister of Tubal-cain was Naamah.</VERS>\r\n      <VERS vnumber=\"23\">And 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 for wounding me, And a young man for bruising me:</VERS>\r\n      <VERS vnumber=\"24\">If Cain shall be avenged sevenfold, Truly Lamech seventy and sevenfold.</VERS>\r\n      <VERS vnumber=\"25\">And Adam knew his wife again; and she bare a son, and called his name Seth. For, [said she], God hath appointed me another seed instead of Abel; for Cain slew him.</VERS>\r\n      <VERS vnumber=\"26\">And to Seth, to him also there was born a son; and he called his name Enosh. Then began men to call upon the name of Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">This is the book of the generations of Adam. In the day that God created man, in the likeness of God made he him;</VERS>\r\n      <VERS vnumber=\"2\">male and female created he them, and blessed them, and called their name Adam, in the day when they were created.</VERS>\r\n      <VERS vnumber=\"3\">And Adam lived a hundred and thirty years, and begat [a son] in his own likeness, after his image; and called his name Seth:</VERS>\r\n      <VERS vnumber=\"4\">and the days of Adam after he begat Seth were eight hundred years: and he begat sons and daughters.</VERS>\r\n      <VERS vnumber=\"5\">And all the days that Adam lived were nine hundred and thirty years: and he died.</VERS>\r\n      <VERS vnumber=\"6\">And Seth lived a hundred and five years, and begat Enosh:</VERS>\r\n      <VERS vnumber=\"7\">and Seth lived after he begat Enosh eight hundred and seven years, and begat sons and daughters:</VERS>\r\n      <VERS vnumber=\"8\">and all the days of Seth were nine hundred and twelve years: and he died.</VERS>\r\n      <VERS vnumber=\"9\">And Enosh lived ninety years, and begat Kenan.</VERS>\r\n      <VERS vnumber=\"10\">and Enosh lived after he begat Kenan eight hundred and fifteen years, and begat sons and daughters:</VERS>\r\n      <VERS vnumber=\"11\">and all the days of Enosh were nine hundred and five years: and he died.</VERS>\r\n      <VERS vnumber=\"12\">And Kenan lived seventy years, and begat Mahalalel:</VERS>\r\n      <VERS vnumber=\"13\">and Kenan lived after he begat Mahalalel eight hundred and forty years, and begat sons and daughters:</VERS>\r\n      <VERS vnumber=\"14\">and all the days of Kenan were nine hundred and ten years: and he died.</VERS>\r\n      <VERS vnumber=\"15\">And Mahalalel lived sixty and five years, and begat Jared:</VERS>\r\n      <VERS vnumber=\"16\">And Mahalalel lived after he begat Jared eight hundred and thirty years, and begat sons and daughters:</VERS>\r\n      <VERS vnumber=\"17\">and all the days of Mahalalel were eight hundred ninety and five years: and he died.</VERS>\r\n      <VERS vnumber=\"18\">And Jared lived a hundred sixty and two years, and begat Enoch:</VERS>\r\n      <VERS vnumber=\"19\">and Jared lived after he begat Enoch eight hundred years, and begat sons and daughters:</VERS>\r\n      <VERS vnumber=\"20\">And all the days of Jared were nine hundred sixty and two years: and he died.</VERS>\r\n      <VERS vnumber=\"21\">And Enoch lived sixty and five years, and begat Methuselah:</VERS>\r\n      <VERS vnumber=\"22\">and Enoch walked with God after he begat Methuselah three hundred years, and begat sons and daughters:</VERS>\r\n      <VERS vnumber=\"23\">and all the days of Enoch were three hundred sixty and five years:</VERS>\r\n      <VERS vnumber=\"24\">and Enoch walked with God: and he was not; for God took him.</VERS>\r\n      <VERS vnumber=\"25\">And Methuselah lived a hundred eighty and seven years, and begat Lamech:</VERS>\r\n      <VERS vnumber=\"26\">and Methuselah lived after he begat Lamech seven hundred eighty and two years, and begat sons and daughters.</VERS>\r\n      <VERS vnumber=\"27\">And all the days of Methuselah were nine hundred sixty and nine years: and he died.</VERS>\r\n      <VERS vnumber=\"28\">And Lamech lived a hundred eighty and two years, and begat a son:</VERS>\r\n      <VERS vnumber=\"29\">and he called his name Noah, saying, This same shall comfort us in our work and in the toil of our hands, [which cometh] because of the ground which Jehovah hath cursed.</VERS>\r\n      <VERS vnumber=\"30\">And Lamech lived after he begat Noah five hundred ninety and five years, and begat sons and daughters:</VERS>\r\n      <VERS vnumber=\"31\">And all the days of Lamech were seven hundred seventy and seven years: and he died.</VERS>\r\n      <VERS vnumber=\"32\">And Noah was five hundred years old: And Noah begat Shem, Ham, and Japheth.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">And it came to pass, when men began to multiply on the face of the ground, and daughters were born unto them,</VERS>\r\n      <VERS vnumber=\"2\">that the sons of God saw the daughters of men that they were fair; and they took them wives of all that they chose.</VERS>\r\n      <VERS vnumber=\"3\">And Jehovah said, My spirit shall not strive with man for ever, for that he also is flesh: yet shall his days be a hundred and twenty years.</VERS>\r\n      <VERS vnumber=\"4\">The Nephilim were in the earth in those days, and also after that, when the sons of God came unto the daughters of men, and they bare children to them: the same were the mighty men that were of old, the men of renown.</VERS>\r\n      <VERS vnumber=\"5\">And Jehovah 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.</VERS>\r\n      <VERS vnumber=\"6\">And it repented Jehovah that he had made man on the earth, and it grieved him at his heart.</VERS>\r\n      <VERS vnumber=\"7\">And Jehovah said, I will destroy man whom I have created from the face of the ground; both man, and beast, and creeping things, and birds of the heavens; for it repenteth me that I have made them.</VERS>\r\n      <VERS vnumber=\"8\">But Noah found favor in the eyes of Jehovah.</VERS>\r\n      <VERS vnumber=\"9\">These are the generations of Noah. Noah was a righteous man, [and] perfect in his generations: Noah walked with God.</VERS>\r\n      <VERS vnumber=\"10\">And Noah begat three sons, Shem, Ham, and Japheth.</VERS>\r\n      <VERS vnumber=\"11\">And the earth was corrupt before God, and the earth was filled with violence.</VERS>\r\n      <VERS vnumber=\"12\">And God saw the earth, and, behold, it was corrupt; for all flesh had corrupted their way upon the earth.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">Make thee an ark of gopher wood; rooms shalt thou make in the ark, and shalt pitch it within and without with pitch.</VERS>\r\n      <VERS vnumber=\"15\">And this is how thou shalt make it: the length of the ark three hundred cubits, the breadth of it fifty cubits, and the height of it thirty cubits.</VERS>\r\n      <VERS vnumber=\"16\">A light shalt thou make to the ark, and to a cubit shalt thou finish it upward; and the door of the ark shalt thou set in the side thereof; with lower, second, and third stories shalt thou make it.</VERS>\r\n      <VERS vnumber=\"17\">And I, behold, I do bring the flood of waters upon this earth, to destroy all flesh, wherein is the breath of life, from under heaven; everything that is in the earth shall die.</VERS>\r\n      <VERS vnumber=\"18\">But I will establish my covenant with thee; and thou shalt come into the ark, thou, and thy sons, and thy wife, and thy sons` wives with thee.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">Of the birds after their kind, and of the cattle after their kind, of every creeping thing of the ground after its kind, two of every sort shall come unto thee, to keep them alive.</VERS>\r\n      <VERS vnumber=\"21\">And take thou unto thee of all food that is eaten, and gather it to thee; and it shall be for food for thee, and for them.</VERS>\r\n      <VERS vnumber=\"22\">Thus did Noah; according to all that God commanded him, so did he.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">And Jehovah said unto Noah, Come thou and all thy house into the ark; for thee have I seen righteous before me in this generation.</VERS>\r\n      <VERS vnumber=\"2\">Of every clean beast thou shalt take to thee seven and seven, the male and his female; and of the beasts that are not clean two, the male and his female:</VERS>\r\n      <VERS vnumber=\"3\">of the birds also of the heavens, seven and seven, male and female, to keep seed alive upon the face of all the earth.</VERS>\r\n      <VERS vnumber=\"4\">For yet seven days, and I will cause it to rain upon the earth forty days and forty nights; and every living thing that I have made will I destroy from off the face of the ground.</VERS>\r\n      <VERS vnumber=\"5\">And Noah did according unto all that Jehovah commanded him.</VERS>\r\n      <VERS vnumber=\"6\">And Noah was six hundred years old when the flood of waters was upon the earth.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">Of clean beasts, and of beasts that are not clean, and of birds, and of everything that creepeth upon the ground,</VERS>\r\n      <VERS vnumber=\"9\">there went in two and two unto Noah into the ark, male and female, as God commanded Noah.</VERS>\r\n      <VERS vnumber=\"10\">And it came to pass after the seven days, that the waters of the flood were upon the earth.</VERS>\r\n      <VERS vnumber=\"11\">In the six hundredth year of Noah`s life, in the second month, on the seventeenth day of the month, on the same day were all the fountains of the great deep broken up, and the windows of heaven were opened.</VERS>\r\n      <VERS vnumber=\"12\">And the rain was upon the earth forty days and forty nights.</VERS>\r\n      <VERS vnumber=\"13\">In 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;</VERS>\r\n      <VERS vnumber=\"14\">they, and every beast after its kind, and all the cattle after their kind, and every creeping thing that creepeth upon the earth after its kind, and every bird after its kind, every bird of every sort.</VERS>\r\n      <VERS vnumber=\"15\">And they went in unto Noah into the ark, two and two of all flesh wherein is the breath of life.</VERS>\r\n      <VERS vnumber=\"16\">And they that went in, went in male and female of all flesh, as God commanded him: and Jehovah shut him in.</VERS>\r\n      <VERS vnumber=\"17\">And the flood was forty days upon the earth; and the waters increased, and bare up the ark, and it was lifted up above the earth.</VERS>\r\n      <VERS vnumber=\"18\">And the waters prevailed, and increased greatly upon the earth; and the ark went upon the face of the waters.</VERS>\r\n      <VERS vnumber=\"19\">And the waters prevailed exceedingly upon the earth; and all the high mountains that were under the whole heaven were covered.</VERS>\r\n      <VERS vnumber=\"20\">Fifteen cubits upward did the waters prevail; and the mountains were covered.</VERS>\r\n      <VERS vnumber=\"21\">And all flesh died that moved upon the earth, both birds, and cattle, and beasts, and every creeping thing that creepeth upon the earth, and every man:</VERS>\r\n      <VERS vnumber=\"22\">all in whose nostrils was the breath of the spirit of life, of all that was on the dry land, died.</VERS>\r\n      <VERS vnumber=\"23\">And every living thing was destroyed that was upon the face of the ground, both man, and cattle, and creeping things, and birds of the heavens; and they were destroyed from the earth: and Noah only was left, and they that were with him in the ark.</VERS>\r\n      <VERS vnumber=\"24\">And the waters prevailed upon the earth a hundred and fifty days.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">And God remembered Noah, and all the beasts, and all the cattle that were with him in the ark: and God made a wind to pass over the earth, and the waters assuaged;</VERS>\r\n      <VERS vnumber=\"2\">the fountains also of the deep and the windows of heaven were stopped, and the rain from heaven was restrained;</VERS>\r\n      <VERS vnumber=\"3\">and the waters returned from off the earth continually: and after the end of a hundred and fifty days the waters decreased.</VERS>\r\n      <VERS vnumber=\"4\">And the ark rested in the seventh month, on the seventeenth day of the month, upon the mountains of Ararat.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And it came to pass at the end of forty days, that Noah opened the window of the ark which he had made:</VERS>\r\n      <VERS vnumber=\"7\">and he sent forth a raven, and it went forth to and fro, until the waters were dried up from off the earth.</VERS>\r\n      <VERS vnumber=\"8\">And he sent forth a dove from him, to see if the waters were abated from off the face of the ground;</VERS>\r\n      <VERS vnumber=\"9\">but the dove found no rest for the sole of her foot, and she returned unto him to the ark; for the waters were on the face of the whole earth: and he put forth his hand, and took her, and brought her in unto him into the ark.</VERS>\r\n      <VERS vnumber=\"10\">And he stayed yet other seven days; and again he sent forth the dove out of the ark;</VERS>\r\n      <VERS vnumber=\"11\">and the dove came in to him at eventide; and, lo, in her mouth an olive-leaf plucked off: so Noah knew that the waters were abated from off the earth.</VERS>\r\n      <VERS vnumber=\"12\">And he stayed yet other seven days, and sent forth the dove; and she returned not again unto him any more.</VERS>\r\n      <VERS vnumber=\"13\">And it came to pass in the six hundred 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 dried.</VERS>\r\n      <VERS vnumber=\"14\">And in the second month, on the seven and twentieth day of the month, was the earth dry.</VERS>\r\n      <VERS vnumber=\"15\">And God spake unto Noah, saying,</VERS>\r\n      <VERS vnumber=\"16\">Go forth from the ark, thou, and thy wife, and thy sons, and thy sons` wives with thee.</VERS>\r\n      <VERS vnumber=\"17\">Bring forth with thee every living thing that is with thee of all flesh, both birds, and cattle, and every creeping thing that creepeth upon the earth; that they may breed abundantly in the earth, and be fruitful, and multiply upon the earth.</VERS>\r\n      <VERS vnumber=\"18\">And Noah went forth, and his sons, and his wife, and his sons` wives with him:</VERS>\r\n      <VERS vnumber=\"19\">every beast, every creeping thing, and every bird, whatsoever moveth upon the earth, after their families, went forth out of the ark.</VERS>\r\n      <VERS vnumber=\"20\">And Noah builded an altar unto Jehovah, and took of every clean beast, and of every clean bird, and offered burnt-offerings on the altar.</VERS>\r\n      <VERS vnumber=\"21\">And Jehovah smelled the sweet savor; and Jehovah said in his heart, I will not again curse the ground any more for man`s sake, for that the imagination of man`s heart is evil from his youth; neither will I again smite any more everything living, as I have done.</VERS>\r\n      <VERS vnumber=\"22\">While the earth remaineth, seedtime and harvest, and cold and heat, and summer and winter, and day and night shall not cease.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">And God blessed Noah and his sons, and said unto them, Be fruitful, and multiply, and replenish the earth.</VERS>\r\n      <VERS vnumber=\"2\">And the fear of you and the dread of you shall be upon every beast of the earth, and upon every bird of the heavens; With all wherewith the ground teemeth, and all the fishes of the sea, into your hand are they delivered.</VERS>\r\n      <VERS vnumber=\"3\">Every moving thing that liveth shall be food for you; As the green herb have I given you all.</VERS>\r\n      <VERS vnumber=\"4\">But flesh with the life thereof, [which is] the blood thereof, shall ye not eat.</VERS>\r\n      <VERS vnumber=\"5\">And surely your blood, [the blood] of your lives, will I require; At the hand of every beast will I require it. And at the hand of man, even at the hand of every man`s brother, will I require the life of man.</VERS>\r\n      <VERS vnumber=\"6\">Whoso sheddeth man`s blood, by man shall his blood be shed: For in the image of God made he man.</VERS>\r\n      <VERS vnumber=\"7\">And you, be ye fruitful, and multiply; Bring forth abundantly in the earth, and multiply therein.</VERS>\r\n      <VERS vnumber=\"8\">And God spake unto Noah, and to his sons with him, saying,</VERS>\r\n      <VERS vnumber=\"9\">And I, behold, I establish my covenant with you, and with your seed after you;</VERS>\r\n      <VERS vnumber=\"10\">and with every living creature that is with you, the birds, the cattle, and every beast of the earth with you. Of all that go out of the ark, even every beast of the earth.</VERS>\r\n      <VERS vnumber=\"11\">And I will establish my covenant with you; neither shall all flesh be cut off any more by the waters of the flood; neither shall there any more be a flood to destroy the earth.</VERS>\r\n      <VERS vnumber=\"12\">And 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:</VERS>\r\n      <VERS vnumber=\"13\">I do set my bow in the cloud, and it shall be for a token of a covenant between me and the earth.</VERS>\r\n      <VERS vnumber=\"14\">And it shall come to pass, when I bring a cloud over the earth, that the bow shall be seen in the cloud,</VERS>\r\n      <VERS vnumber=\"15\">and 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And the sons of Noah, that went forth from the ark, were Shem, and Ham, and Japheth: and Ham is the father of Canaan.</VERS>\r\n      <VERS vnumber=\"19\">These three were the sons of Noah: and of these was the whole earth overspread.</VERS>\r\n      <VERS vnumber=\"20\">And Noah began to be a husbandman, and planted a vineyard:</VERS>\r\n      <VERS vnumber=\"21\">and he drank of the wine, and was drunken. And he was uncovered within his tent.</VERS>\r\n      <VERS vnumber=\"22\">And Ham, the father of Canaan, saw the nakedness of his father, and told his two brethren without.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And Noah awoke from his wine, and knew what his youngest son had done unto him.</VERS>\r\n      <VERS vnumber=\"25\">And he said, Cursed be Canaan; A servant of servants shall he be unto his brethren.</VERS>\r\n      <VERS vnumber=\"26\">And he said, Blessed be Jehovah, the God of Shem; And let Canaan be his servant.</VERS>\r\n      <VERS vnumber=\"27\">God enlarge Japheth, And let him dwell in the tents of Shem; And let Canaan be his servant.</VERS>\r\n      <VERS vnumber=\"28\">And Noah lived after the flood three hundred and fifty years.</VERS>\r\n      <VERS vnumber=\"29\">And all the days of Noah were nine hundred and fifty years: And he died.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">Now these are the generations of the sons of Noah, [namely], of Shem, Ham, and Japheth: and unto them were sons born after the flood.</VERS>\r\n      <VERS vnumber=\"2\">The sons of Japheth: Gomer, and Magog, and Madai, and Javan, and Tubal, and Meshech, and Tiras.</VERS>\r\n      <VERS vnumber=\"3\">And the sons of Gomer: Ashkenaz, and Riphath, and Togarmah.</VERS>\r\n      <VERS vnumber=\"4\">And the sons of Javan: Elishah, and Tarshish, Kittim, and Dodanim.</VERS>\r\n      <VERS vnumber=\"5\">Of these were the isles of the nations divided in their lands, every one after his tongue, after their families, in their nations.</VERS>\r\n      <VERS vnumber=\"6\">And the sons of Ham: Cush, and Mizraim, and Put, and Canaan.</VERS>\r\n      <VERS vnumber=\"7\">And the sons of Cush: Seba, and Havilah, and Sabtah, and Raamah, and Sabteca; and the sons of Raamah: Sheba, and Dedan.</VERS>\r\n      <VERS vnumber=\"8\">And Cush begat Nimrod: he began to be a mighty one in the earth.</VERS>\r\n      <VERS vnumber=\"9\">He was a mighty hunter before Jehovah: wherefore it is said, Like Nimrod a mighty hunter before Jehovah.</VERS>\r\n      <VERS vnumber=\"10\">And the beginning of his kingdom was Babel, and Erech, and Accad, and Calneh, in the land of Shinar.</VERS>\r\n      <VERS vnumber=\"11\">Out of that land he went forth into Assyria, and builded Nineveh, and Rehoboth-ir, and Calah,</VERS>\r\n      <VERS vnumber=\"12\">and Resen between Nineveh and Calah (the same is the great city).</VERS>\r\n      <VERS vnumber=\"13\">And Mizraim begat Ludim, and Anamim, and Lehabim, and Naphtuhim,</VERS>\r\n      <VERS vnumber=\"14\">and Pathrusim, and Casluhim (whence went forth the Philistines), and Caphtorim.</VERS>\r\n      <VERS vnumber=\"15\">And Canaan begat Sidon his first-born, and Heth,</VERS>\r\n      <VERS vnumber=\"16\">and the Jebusite, and the Amorite, and the Girgashite,</VERS>\r\n      <VERS vnumber=\"17\">and the Hivite, and the Arkite, and the Sinite,</VERS>\r\n      <VERS vnumber=\"18\">and the Arvadite, and the Zemarite, and the Hamathite: and afterward were the families of the Canaanite spread abroad.</VERS>\r\n      <VERS vnumber=\"19\">And the border of the Canaanite was from Sidon, as thou goest toward Gerar, unto Gaza; as thou goest toward Sodom and Gomorrah and Admah and Zeboiim, unto Lasha.</VERS>\r\n      <VERS vnumber=\"20\">These are the sons of Ham, after their families, after their tongues, in their lands, in their nations.</VERS>\r\n      <VERS vnumber=\"21\">And unto Shem, the father of all the children of Eber, the elder brother of Japheth, to him also were children born.</VERS>\r\n      <VERS vnumber=\"22\">The sons of Shem: Elam, and Asshur, and Arpachshad, and Lud, and Aram.</VERS>\r\n      <VERS vnumber=\"23\">And the sons of Aram: Uz, and Hul, and Gether, and Mash.</VERS>\r\n      <VERS vnumber=\"24\">And Arpachshad begat Shelah; and Shelah begat Eber.</VERS>\r\n      <VERS vnumber=\"25\">And unto Eber were born two sons: The name of the one was Peleg. For in his days was the earth divided. And his brother`s name was Joktan.</VERS>\r\n      <VERS vnumber=\"26\">And Joktan begat Almodad, and Sheleph, and Hazarmaveth, and Jerah,</VERS>\r\n      <VERS vnumber=\"27\">and Hadoram, and Uzal, and Diklah,</VERS>\r\n      <VERS vnumber=\"28\">and Obal, and Abimael, and Sheba,</VERS>\r\n      <VERS vnumber=\"29\">and Ophir, and Havilah, and Jobab: all these were the sons of Joktan.</VERS>\r\n      <VERS vnumber=\"30\">And their dwelling was from Mesha, as thou goest toward Sephar, the mountain of the east.</VERS>\r\n      <VERS vnumber=\"31\">These are the sons of Shem, after their families, after their tongues, in their lands, after their nations.</VERS>\r\n      <VERS vnumber=\"32\">These are the families of the sons of Noah, after their generations, in their nations: and of these were the nations divided in the earth after the flood.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">And the whole earth was of one language and of one speech.</VERS>\r\n      <VERS vnumber=\"2\">And it came to pass, as they journeyed east, that they found a plain in the land of Shinar; and they dwelt there.</VERS>\r\n      <VERS vnumber=\"3\">And they said one to another, Come, let us make brick, and burn them thoroughly. And they had brick for stone, and slime had they for mortar.</VERS>\r\n      <VERS vnumber=\"4\">And they said, Come, 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.</VERS>\r\n      <VERS vnumber=\"5\">And Jehovah came down to see the city and the tower, which the children of men builded.</VERS>\r\n      <VERS vnumber=\"6\">And Jehovah said, Behold, they are one people, and they have all one language; and this is what they begin to do: and now nothing will be withholden from them, which they purpose to do.</VERS>\r\n      <VERS vnumber=\"7\">Come, let us go down, and there confound their language, that they may not understand one another`s speech.</VERS>\r\n      <VERS vnumber=\"8\">So Jehovah scattered them abroad from thence upon the face of all the earth: and they left off building the city.</VERS>\r\n      <VERS vnumber=\"9\">Therefore was the name of it called Babel; because Jehovah did there confound the language of all the earth: and from thence did Jehovah scatter them abroad upon the face of all the earth.</VERS>\r\n      <VERS vnumber=\"10\">These are the generations of Shem. Shem was a hundred years old, and begat Arpachshad two years after the flood.</VERS>\r\n      <VERS vnumber=\"11\">and Shem lived after he begat Arpachshad five hundred years, and begat sons and daughters.</VERS>\r\n      <VERS vnumber=\"12\">And Arpachshad lived five and thirty years, and begat Shelah.</VERS>\r\n      <VERS vnumber=\"13\">and Arpachshad lived after he begat Shelah four hundred and three years, and begat sons and daughters.</VERS>\r\n      <VERS vnumber=\"14\">And Shelah lived thirty years, and begat Eber:</VERS>\r\n      <VERS vnumber=\"15\">and Shelah lived after he begat Eber four hundred and three years, and begat sons and daughters.</VERS>\r\n      <VERS vnumber=\"16\">And Eber lived four and thirty years, and begat Peleg:</VERS>\r\n      <VERS vnumber=\"17\">and Eber lived after he begat Peleg four hundred and thirty years, and begat sons and daughters.</VERS>\r\n      <VERS vnumber=\"18\">And Peleg lived thirty years, and begat Reu:</VERS>\r\n      <VERS vnumber=\"19\">and Peleg lived after he begat Reu two hundred and nine years, and begat sons and daughters.</VERS>\r\n      <VERS vnumber=\"20\">And Reu lived two and thirty years, and begat Serug:</VERS>\r\n      <VERS vnumber=\"21\">and Reu lived after he begat Serug two hundred and seven years, and begat sons and daughters.</VERS>\r\n      <VERS vnumber=\"22\">And Serug lived thirty years, and begat Nahor:</VERS>\r\n      <VERS vnumber=\"23\">and Serug lived after he begat Nahor two hundred years, and begat sons and daughters.</VERS>\r\n      <VERS vnumber=\"24\">And Nahor lived nine and twenty years, and begat Terah:</VERS>\r\n      <VERS vnumber=\"25\">and Nahor lived after he begat Terah a hundred and nineteen years, and begat sons and daughters.</VERS>\r\n      <VERS vnumber=\"26\">And Terah lived seventy years, and begat Abram, Nahor, and Haran.</VERS>\r\n      <VERS vnumber=\"27\">Now these are the generations of Terah. Terah begat Abram, Nahor, and Haran. And Haran begat Lot.</VERS>\r\n      <VERS vnumber=\"28\">And Haran died before his father Terah in the land of his nativity, in Ur of the Chaldees.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">And Sarai was barren; She had no child.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n      <VERS vnumber=\"32\">And the days of Terah were two hundred and five years: and Terah died in Haran.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">Now Jehovah said unto Abram, Get thee out of thy country, and from thy kindred, and from thy father`s house, unto the land that I will show thee:</VERS>\r\n      <VERS vnumber=\"2\">and I will make of thee a great nation, and I will bless thee, and make they name great; and be thou a blessing;</VERS>\r\n      <VERS vnumber=\"3\">and I will bless them that bless thee, and him that curseth thee will I curse: and in thee shall all the families of the earth be blessed.</VERS>\r\n      <VERS vnumber=\"4\">So Abram went, as Jehovah had spoken unto him; and Lot went with him: and Abram was seventy and five years old when he departed out of Haran.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And Abram passed through the land unto the place of Shechem, unto the oak of Moreh. And the Canaanite was then in the land.</VERS>\r\n      <VERS vnumber=\"7\">And Jehovah appeared unto Abram, and said, Unto thy seed will I give this land: and there builded he an altar unto Jehovah, who appeared unto him.</VERS>\r\n      <VERS vnumber=\"8\">And he removed from thence unto the mountain on the east of Beth-el, and pitched his tent, having Beth-el on the west, and Ai on the east: and there he builded an altar unto Jehovah, and called upon the name of Jehovah.</VERS>\r\n      <VERS vnumber=\"9\">And Abram journeyed, going on still toward the South.</VERS>\r\n      <VERS vnumber=\"10\">And there was a famine in the land: and Abram went down into Egypt to sojourn there; for the famine was sore in the land.</VERS>\r\n      <VERS vnumber=\"11\">And 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:</VERS>\r\n      <VERS vnumber=\"12\">and it will come to pass, when the Egyptians shall see thee, that they will say, This is his wife: and they will kill me, but they will save thee alive.</VERS>\r\n      <VERS vnumber=\"13\">Say, I pray thee, thou art my sister; that it may be well with me for thy sake, and that my soul may live because of thee.</VERS>\r\n      <VERS vnumber=\"14\">And it came to pass, that, when Abram was come into Egypt, the Egyptians beheld the woman that she was very fair.</VERS>\r\n      <VERS vnumber=\"15\">And the princes of Pharaoh saw her, and praised her to Pharaoh: and the woman was taken into Pharaoh`s house.</VERS>\r\n      <VERS vnumber=\"16\">And he dealt well with Abram for her sake: and he had sheep, and oxen, and he-asses, and men-servants, and maid-servants, and she-asses, and camels.</VERS>\r\n      <VERS vnumber=\"17\">And Jehovah plagued Pharaoh and his house with great plagues because of Sarai, Abram`s wife.</VERS>\r\n      <VERS vnumber=\"18\">And 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?</VERS>\r\n      <VERS vnumber=\"19\">why saidst thou, She is my sister, so that I took her to be my wife? now therefore behold thy wife, take her, and go thy way.</VERS>\r\n      <VERS vnumber=\"20\">And Pharaoh gave men charge concerning him: and they brought him on the way, and his wife, and all that he had.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">And Abram went up out of Egypt, he, and his wife, and all that he had, and Lot with him, into the South.</VERS>\r\n      <VERS vnumber=\"2\">And Abram was very rich in cattle, in silver, and in gold.</VERS>\r\n      <VERS vnumber=\"3\">And he went on his journeys from the South even to Beth-el, unto the place where his tent had been at the beginning, between Beth-el and Ai,</VERS>\r\n      <VERS vnumber=\"4\">unto the place of the altar, which he had made there at the first: and there Abram called on the name of Jehovah.</VERS>\r\n      <VERS vnumber=\"5\">And Lot also, who went with Abram, had flocks, and herds, and tents.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And there was a strife between the herdsmen of Abram`s cattle and the herdsmen of Lot`s cattle: and the Canaanite and the Perizzite dwelt then in the land.</VERS>\r\n      <VERS vnumber=\"8\">And Abram said unto Lot, Let there be no strife, I pray thee, between me and thee, and between my herdsmen and thy herdsmen; for we are brethren.</VERS>\r\n      <VERS vnumber=\"9\">Is 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 take] the right hand, then I will go to the left.</VERS>\r\n      <VERS vnumber=\"10\">And Lot lifted up his eyes, and beheld all the Plain of the Jordan, that it was well watered every where, before Jehovah destroyed Sodom and Gomorrah, like the garden of Jehovah, like the land of Egypt, as thou goest unto Zoar.</VERS>\r\n      <VERS vnumber=\"11\">So Lot chose him all the Plain of the Jordan; and Lot journeyed east: and they separated themselves the one from the other.</VERS>\r\n      <VERS vnumber=\"12\">Abram dwelt in the land of Canaan, and Lot dwelt in the cities of the Plain, and moved his tent as far as Sodom.</VERS>\r\n      <VERS vnumber=\"13\">Now the men of Sodom were wicked and sinners against Jehovah exceedingly.</VERS>\r\n      <VERS vnumber=\"14\">And Jehovah 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:</VERS>\r\n      <VERS vnumber=\"15\">for all the land which thou seest, to thee will I give it, and to thy seed for ever.</VERS>\r\n      <VERS vnumber=\"16\">And I will make thy seed as the dust of the earth: So that if a man can number the dust of the earth, then may thy seed also be numbered.</VERS>\r\n      <VERS vnumber=\"17\">Arise, walk through the land in the length of it and in the breadth of it; for unto thee will I give it.</VERS>\r\n      <VERS vnumber=\"18\">And Abram moved his tent, and came and dwelt by the oaks of Mamre, which are in Hebron, and built there an altar unto Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">And it came to pass in the days of Amraphel king of Shinar, Arioch king of Ellasar, Chedorlaomer king of Elam, and Tidal king of Goiim,</VERS>\r\n      <VERS vnumber=\"2\">that they 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 (the same is Zoar).</VERS>\r\n      <VERS vnumber=\"3\">All these joined together in the vale of Siddim (the same is the Salt Sea).</VERS>\r\n      <VERS vnumber=\"4\">Twelve years they served Chedorlaomer, and in the thirteenth year they rebelled.</VERS>\r\n      <VERS vnumber=\"5\">And in the fourteenth year came Chedorlaomer, and the kings that were with him, and smote the Rephaim in Ashteroth-karnaim, and the Zuzim in Ham, and the Emim in Shaveh-kiriathaim,</VERS>\r\n      <VERS vnumber=\"6\">and the Horites in their mount Seir, unto Elparan, which is by the wilderness.</VERS>\r\n      <VERS vnumber=\"7\">And they returned, and came to En-mishpat (the same is Kadesh), and smote all the country of the Amalekites, and also the Amorites, that dwelt in Hazazon-tamar.</VERS>\r\n      <VERS vnumber=\"8\">And 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 set the battle in array against them in the vale of Siddim;</VERS>\r\n      <VERS vnumber=\"9\">against Chedorlaomer king of Elam, and Tidal king of Goiim, and Amraphel king of Shinar, and Arioch king of Ellasar; four kings against the five.</VERS>\r\n      <VERS vnumber=\"10\">Now the vale of Siddim was full of slime pits; and the kings of Sodom and Gomorrah fled, and they fell there, and they that remained fled to the mountain.</VERS>\r\n      <VERS vnumber=\"11\">And they took all the goods of Sodom and Gomorrah, and all their victuals, and went their way.</VERS>\r\n      <VERS vnumber=\"12\">And they took Lot, Abram`s brother`s son, who dwelt in Sodom, and his goods, and departed.</VERS>\r\n      <VERS vnumber=\"13\">And there came one that had escaped, and told Abram the Hebrew: now he dwelt by the oaks of Mamre, the Amorite, brother of Eshcol, and brother of Aner; and these were confederate with Abram.</VERS>\r\n      <VERS vnumber=\"14\">And when Abram heard that his brother was taken captive, he led forth his trained men, born in his house, three hundred and eighteen, and pursued as far as Dan.</VERS>\r\n      <VERS vnumber=\"15\">And he divided himself against them by night, he and his servants, and smote them, and pursued them unto Hobah, which is on the left hand of Damascus.</VERS>\r\n      <VERS vnumber=\"16\">And he brought back all the goods, and also brought back his brother Lot, and his goods, and the women also, and the people.</VERS>\r\n      <VERS vnumber=\"17\">And the king of Sodom went out to meet him, after his return from the slaughter of Chedorlaomer and the kings that were with him, at the vale of Shaveh (the same is the King`s Vale).</VERS>\r\n      <VERS vnumber=\"18\">And Melchizedek king of Salem brought forth bread and wine: and he was priest of God Most High.</VERS>\r\n      <VERS vnumber=\"19\">And he blessed him, and said, Blessed be Abram of God Most High, possessor of heaven and earth:</VERS>\r\n      <VERS vnumber=\"20\">and blessed be God Most High, who hath delivered thine enemies into thy hand. And he gave him a tenth of all.</VERS>\r\n      <VERS vnumber=\"21\">And the king of Sodom said unto Abram, Give me the persons, and take the goods to thyself.</VERS>\r\n      <VERS vnumber=\"22\">And Abram said to the king of Sodom, I have lifted up my hand unto Jehovah, God Most High, possessor of heaven and earth,</VERS>\r\n      <VERS vnumber=\"23\">that I will not take a thread nor a shoe-latchet nor aught that is thine, lest thou shouldest say, I have made Abram rich:</VERS>\r\n      <VERS vnumber=\"24\">save only that which the young men have eaten, and the portion of the men that went with me, Aner, Eshcol, and Mamre. Let them take their portion.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">After these things the word of Jehovah came unto Abram in a vision, saying, Fear not, Abram: I am thy shield, [and] thy exceeding great reward.</VERS>\r\n      <VERS vnumber=\"2\">And Abram said, O Lord Jehovah, what wilt thou give me, seeing I go childless, and he that shall be possessor of my house is Eliezer of Damascus?</VERS>\r\n      <VERS vnumber=\"3\">And Abram said, Behold, to me thou hast given no seed: and, lo, one born in my house is mine heir.</VERS>\r\n      <VERS vnumber=\"4\">And, behold, the word of Jehovah came unto him, saying, This man shall not be thine heir; But he that shall come forth out of thine own bowels shall be thine heir.</VERS>\r\n      <VERS vnumber=\"5\">And he brought him forth abroad, and said, Look now toward heaven, and number the stars, if thou be able to number them: and he said unto him, So shall thy seed be.</VERS>\r\n      <VERS vnumber=\"6\">And he believed in Jehovah; and he reckoned it to him for righteousness.</VERS>\r\n      <VERS vnumber=\"7\">And he said unto him, I am Jehovah that brought thee out of Ur of the Chaldees, to give thee this land to inherit it.</VERS>\r\n      <VERS vnumber=\"8\">And he said, O Lord Jehovah, whereby shall I know that I shall inherit it?</VERS>\r\n      <VERS vnumber=\"9\">And he said unto him, Take me a heifer three years old, and a she-goat three years old, and a ram three years old, and a turtle-dove, and a young pigeon.</VERS>\r\n      <VERS vnumber=\"10\">And he took him all these, and divided them in the midst, and laid each half over against the other: but the birds divided he not.</VERS>\r\n      <VERS vnumber=\"11\">And the birds of prey came down upon the carcasses, and Abram drove them away.</VERS>\r\n      <VERS vnumber=\"12\">And when the sun was going down, a deep sleep fell upon Abram; and, lo, a horror of great darkness fell upon him.</VERS>\r\n      <VERS vnumber=\"13\">And he said unto Abram, Know of a surety that thy seed shall be sojourners in a land that is not theirs, and shall serve them; and they shall afflict them four hundred years;</VERS>\r\n      <VERS vnumber=\"14\">and also that nation, whom they shall serve, will I judge: and afterward shall they come out with great substance.</VERS>\r\n      <VERS vnumber=\"15\">But thou shalt go to thy fathers in peace; thou shalt be buried in a good old age.</VERS>\r\n      <VERS vnumber=\"16\">And in the fourth generation they shall come hither again; for the iniquity of the Amorite is not yet full.</VERS>\r\n      <VERS vnumber=\"17\">And it came to pass, that, when the sun went down, and it was dark, behold, a smoking furnace, and a flaming torch that passed between these pieces.</VERS>\r\n      <VERS vnumber=\"18\">In that day Jehovah 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:</VERS>\r\n      <VERS vnumber=\"19\">the Kenite, and the Kenizzite, and the Kadmonite,</VERS>\r\n      <VERS vnumber=\"20\">and the Hittite, and the Perizzite, and the Rephaim,</VERS>\r\n      <VERS vnumber=\"21\">and the Amorite, and the Canaanite, and the Girgashite, and the Jebusite.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">Now Sarai, Abram`s wife, bare him no children: and she had a handmaid, an Egyptian, whose name was Hagar.</VERS>\r\n      <VERS vnumber=\"2\">And Sarai said unto Abram, Behold now, Jehovah hath restrained me from bearing; go in, I pray thee, unto my handmaid; it may be that I shall obtain children by her. And Abram hearkened to the voice of Sarai.</VERS>\r\n      <VERS vnumber=\"3\">And Sarai, Abram`s wife, took Hagar the Egyptian, her handmaid, after Abram had dwelt ten years in the land of Canaan, and gave her to Abram her husband to be his wife.</VERS>\r\n      <VERS vnumber=\"4\">And he went in unto Hagar, and she conceived: and when she saw that she had conceived, her mistress was despised in her eyes.</VERS>\r\n      <VERS vnumber=\"5\">And Sarai said unto Abram, My wrong be upon thee: I gave my handmaid into they bosom; and when she saw that she had conceived, I was despised in her eyes: Jehovah judge between me and thee.</VERS>\r\n      <VERS vnumber=\"6\">But Abram said unto Sarai, Behold, thy maid is in thy hand; do to her that which is good in thine eyes. And Sarai dealt hardly with her, and she fled from her face.</VERS>\r\n      <VERS vnumber=\"7\">And the angel of Jehovah found her by a fountain of water in the wilderness, by the fountain in the way to Shur.</VERS>\r\n      <VERS vnumber=\"8\">And he said, Hagar, Sarai`s handmaid, whence camest thou? and whither goest thou? And she said, I am fleeing from the face of my mistress Sarai.</VERS>\r\n      <VERS vnumber=\"9\">And the angel of Jehovah said unto her, Return to thy mistress, and submit thyself under her hands.</VERS>\r\n      <VERS vnumber=\"10\">And the angel of Jehovah said unto her, I will greatly multiply thy seed, that it shall not be numbered for multitude.</VERS>\r\n      <VERS vnumber=\"11\">And the angel of Jehovah said unto her, Behold, thou art with child, and shalt bear a son; and thou shalt call his name Ishmael, because Jehovah hath heard thy affliction.</VERS>\r\n      <VERS vnumber=\"12\">And he shall be [as] a wild ass among men; his hand [shall be] against every man, and every man`s hand against him; and he shall dwell over against all his brethren.</VERS>\r\n      <VERS vnumber=\"13\">And she called the name of Jehovah that spake unto her, Thou art a God that seeth: for she said, Have I even here looked after him that seeth me?</VERS>\r\n      <VERS vnumber=\"14\">Wherefore the well was called Beer-lahai-roi; behold, it is between Kadesh and Bered.</VERS>\r\n      <VERS vnumber=\"15\">And Hagar bare Abram a son: and Abram called the name of his son, whom Hagar bare, Ishmael.</VERS>\r\n      <VERS vnumber=\"16\">And Abram was fourscore and six years old, when Hagar bare Ishmael to Abram.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"17\">\r\n      <VERS vnumber=\"1\">And when Abram was ninety years old and nine, Jehovah appeared to Abram, and said unto him, I am God Almighty; walk before me, and be thou perfect.</VERS>\r\n      <VERS vnumber=\"2\">And I will make my covenant between me and thee, and will multiply thee exceedingly.</VERS>\r\n      <VERS vnumber=\"3\">And Abram fell on his face: and God talked with him, saying,</VERS>\r\n      <VERS vnumber=\"4\">As for me, behold, my covenant is with thee, and thou shalt be the father of a multitude of nations.</VERS>\r\n      <VERS vnumber=\"5\">Neither shall thy name any more be called Abram, but thy name shall be Abraham; for the father of a multitude of nations have I made thee.</VERS>\r\n      <VERS vnumber=\"6\">And I will make thee exceeding fruitful, and I will make nations of thee, and kings shall come out of thee.</VERS>\r\n      <VERS vnumber=\"7\">And I will establish my covenant between me and thee and thy seed after thee throughout their generations for an everlasting covenant, to be a God unto thee and to thy seed after thee.</VERS>\r\n      <VERS vnumber=\"8\">And I will give unto thee, and to thy seed after thee, the land of thy sojournings, all the land of Canaan, for an everlasting possession; and I will be their God.</VERS>\r\n      <VERS vnumber=\"9\">And God said unto Abraham, And as for thee, thou shalt keep my covenant, thou, and thy seed after thee throughout their generations.</VERS>\r\n      <VERS vnumber=\"10\">This is my covenant, which ye shall keep, between me and you and thy seed after thee: every male among you shall be circumcised.</VERS>\r\n      <VERS vnumber=\"11\">And ye shall be circumcised in the flesh of your foreskin; and it shall be a token of a covenant betwixt me and you.</VERS>\r\n      <VERS vnumber=\"12\">And he that is eight days old shall be circumcised among you, every male throughout your generations, he that is born in the house, or bought with money of any foreigner that is not of thy seed.</VERS>\r\n      <VERS vnumber=\"13\">He 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.</VERS>\r\n      <VERS vnumber=\"14\">And the uncircumcised male who is not circumcised in the flesh of his foreskin, that soul shall be cut off from his people; he hath broken my covenant.</VERS>\r\n      <VERS vnumber=\"15\">And God said unto Abraham, As for Sarai thy wife, thou shalt not call her name Sarai, but Sarah shall her name be.</VERS>\r\n      <VERS vnumber=\"16\">And I will bless her, and moreover I will give thee a son of her: yea, I will bless her, and she shall be [a mother of] nations; kings of peoples shall be of her.</VERS>\r\n      <VERS vnumber=\"17\">Then Abraham fell upon his face, and laughed, and said in his heart, Shall a child be born unto him that is a hundred years old? and shall Sarah, that is ninety years old, bear?</VERS>\r\n      <VERS vnumber=\"18\">And Abraham said unto God, Oh that Ishmael might live before thee!</VERS>\r\n      <VERS vnumber=\"19\">And God said, Nay, but Sarah thy wife shall bear thee a son; and thou shalt call his name Isaac: and I will establish my covenant with him for an everlasting covenant for his seed after him.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">But my covenant will I establish with Isaac, whom Sarah shall bear unto thee at this set time in the next year.</VERS>\r\n      <VERS vnumber=\"22\">And he left off talking with him, and God went up from Abraham.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And Abraham was ninety years old and nine, when he was circumcised in the flesh of his foreskin.</VERS>\r\n      <VERS vnumber=\"25\">And Ishmael his son was thirteen years old, when he was circumcised in the flesh of his foreskin.</VERS>\r\n      <VERS vnumber=\"26\">In the selfsame day was Abraham circumcised, and Ishmael his son.</VERS>\r\n      <VERS vnumber=\"27\">And all the men of his house, those born in the house, and those bought with money of a foreigner, were circumcised with him.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"18\">\r\n      <VERS vnumber=\"1\">And Jehovah appeared unto him by the oaks of Mamre, as he sat in the tent door in the heat of the day;</VERS>\r\n      <VERS vnumber=\"2\">and he lifted up his eyes and looked, and, lo, three men stood over against him: and when he saw them, he ran to meet them from the tent door, and bowed himself to the earth,</VERS>\r\n      <VERS vnumber=\"3\">and said, My lord, if now I have found favor in thy sight, pass not away, I pray thee, from thy servant:</VERS>\r\n      <VERS vnumber=\"4\">let now a little water be fetched, and wash your feet, and rest yourselves under the tree:</VERS>\r\n      <VERS vnumber=\"5\">and I will fetch a morsel of bread, and strengthen ye your heart; after that ye shall pass on: forasmuch as ye are come to your servant. And they said, So do, as thou hast said.</VERS>\r\n      <VERS vnumber=\"6\">And Abraham hastened into the tent unto Sarah, and said, Make ready quickly three measures of fine meal, knead it, and make cakes.</VERS>\r\n      <VERS vnumber=\"7\">And Abraham ran unto the herd, and fetched a calf tender and good, and gave it unto the servant; and he hasted to dress it.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And they said unto him, Where is Sarah thy wife? And he said, Behold, in the tent.</VERS>\r\n      <VERS vnumber=\"10\">And he said, I will certainly return unto thee when the season cometh round; and, lo, Sarah thy wife shall have a son. And Sarah heard in the tent door, which was behind him.</VERS>\r\n      <VERS vnumber=\"11\">Now Abraham and Sarah were old, [and] well stricken in age; it had ceased to be with Sarah after the manner of women.</VERS>\r\n      <VERS vnumber=\"12\">And Sarah laughed within herself, saying, After I am waxed old shall I have pleasure, my lord being old also?</VERS>\r\n      <VERS vnumber=\"13\">And Jehovah said unto Abraham, Wherefore did Sarah laugh, saying, Shall I of a surety bear a child, who am old?</VERS>\r\n      <VERS vnumber=\"14\">Is anything too hard for Jehovah? At the set time I will return unto thee, when the season cometh round, and Sarah shall have a son.</VERS>\r\n      <VERS vnumber=\"15\">Then Sarah denied, saying, I laughed not; for she was afraid. And he said, Nay; but thou didst laugh.</VERS>\r\n      <VERS vnumber=\"16\">And the men rose up from thence, and looked toward Sodom: and Abraham went with them to bring them on the way.</VERS>\r\n      <VERS vnumber=\"17\">And Jehovah said, Shall I hide from Abraham that which I do;</VERS>\r\n      <VERS vnumber=\"18\">seeing that Abraham had surely become a great and mighty nation, and all the nations of the earth shall be blessed in him?</VERS>\r\n      <VERS vnumber=\"19\">For I have known him, to the end that he may command his children and his household after him, that they may keep the way of Jehovah, to do righteousness and justice; to the end that Jehovah may bring upon Abraham that which he hath spoken of him.</VERS>\r\n      <VERS vnumber=\"20\">And Jehovah said, Because the cry of Sodom and Gomorrah is great, and because their sin is very grievous;</VERS>\r\n      <VERS vnumber=\"21\">I 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.</VERS>\r\n      <VERS vnumber=\"22\">And the men turned from thence, and went toward Sodom: but Abraham stood yet before Jehovah.</VERS>\r\n      <VERS vnumber=\"23\">And Abraham drew near, and said, Wilt thou consume the righteous with the wicked?</VERS>\r\n      <VERS vnumber=\"24\">Peradventure there are fifty righteous within the city: wilt thou consume and not spare the place for the fifty righteous that are therein?</VERS>\r\n      <VERS vnumber=\"25\">That be far from thee to do after this manner, to slay the righteous with the wicked, that so the righteous should be as the wicked; that be far from thee: shall not the Judge of all the earth do right?</VERS>\r\n      <VERS vnumber=\"26\">And Jehovah said, If I find in Sodom fifty righteous within the city, then I will spare all the place for their sake.</VERS>\r\n      <VERS vnumber=\"27\">And Abraham answered and said, Behold now, I have taken upon me to speak unto the Lord, who am but dust and ashes:</VERS>\r\n      <VERS vnumber=\"28\">peradventure there shall lack five of the fifty righteous: wilt thou destroy all the city for lack of five? And he said, I will not destroy it, if I find there forty and five.</VERS>\r\n      <VERS vnumber=\"29\">And he spake unto him yet again, and said, Peradventure there shall be forty found there. And he said, I will not do it for the forty`s sake.</VERS>\r\n      <VERS vnumber=\"30\">And he said, 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.</VERS>\r\n      <VERS vnumber=\"31\">And 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 the twenty`s sake.</VERS>\r\n      <VERS vnumber=\"32\">And 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 the ten`s sake.</VERS>\r\n      <VERS vnumber=\"33\">And Jehovah went his way, as soon as he had left off communing with Abraham: and Abraham returned unto his place.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"19\">\r\n      <VERS vnumber=\"1\">And the two angels came to Sodom at even; and Lot sat in the gate of Sodom: and Lot saw them, and rose up to meet them; and he bowed himself with his face to the earth;</VERS>\r\n      <VERS vnumber=\"2\">and he said, Behold now, my lords, turn aside, 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 way. And they said, Nay; but we will abide in the street all night.</VERS>\r\n      <VERS vnumber=\"3\">And he urged 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.</VERS>\r\n      <VERS vnumber=\"4\">But before they lay down, the men of the city, [even] the men of Sodom, compassed the house round, both young and old, all the people from every quarter;</VERS>\r\n      <VERS vnumber=\"5\">and they called unto Lot, and said unto him, Where are the men that came in to thee this night? bring them out unto us, that we may know them.</VERS>\r\n      <VERS vnumber=\"6\">And Lot went out unto them to the door, and shut the door after him.</VERS>\r\n      <VERS vnumber=\"7\">And he said, I pray you, my brethren, do not so wickedly.</VERS>\r\n      <VERS vnumber=\"8\">Behold now, I have two daughters that 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, forasmuch as they are come under the shadow of my roof.</VERS>\r\n      <VERS vnumber=\"9\">And they said, Stand back. And they said, 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 drew near to break the door.</VERS>\r\n      <VERS vnumber=\"10\">But the men put forth their hand, and brought Lot into the house to them, and shut to the door.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And the men said unto Lot, Hast thou here any besides? son-in-law, and thy sons, and thy daughters, and whomsoever thou hast in the city, bring them out of the place:</VERS>\r\n      <VERS vnumber=\"13\">for we will destroy this place, because the cry of them is waxed great before Jehovah: and Jehovah hath sent us to destroy it.</VERS>\r\n      <VERS vnumber=\"14\">And Lot went out, and spake unto his sons-in-law, who married his daughters, and said, Up, get you out of this place; for Jehovah will destroy the city. But he seemed unto his sons-in-law as one that mocked.</VERS>\r\n      <VERS vnumber=\"15\">And when the morning arose, then the angels hastened Lot, saying, Arise, take thy wife, and thy two daughters that are here, lest thou be consumed in the iniquity of the city.</VERS>\r\n      <VERS vnumber=\"16\">But he lingered; and the men laid hold upon his hand, and upon the hand of his wife, and upon the hand of his two daughters, Jehovah being merciful unto him; and they brought him forth, and set him without the city.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And Lot said unto them, Oh, not so, my lord:</VERS>\r\n      <VERS vnumber=\"19\">behold now, thy servant hath found favor in thy sight, and thou hast magnified thy lovingkindness, which thou hast showed unto me in saving my life; and I cannot escape to the mountain, lest evil overtake me, and I die:</VERS>\r\n      <VERS vnumber=\"20\">behold 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.</VERS>\r\n      <VERS vnumber=\"21\">And he said unto him, See, I have accepted thee concerning this thing also, that I will not overthrow the city of which thou hast spoken.</VERS>\r\n      <VERS vnumber=\"22\">Haste thee, escape thither; for I cannot do anything till thou be come thither. Therefore the name of the city was called Zoar.</VERS>\r\n      <VERS vnumber=\"23\">The sun was risen upon the earth when Lot came unto Zoar.</VERS>\r\n      <VERS vnumber=\"24\">Then Jehovah rained upon Sodom and upon Gomorrah brimstone and fire from Jehovah out of heaven;</VERS>\r\n      <VERS vnumber=\"25\">and he overthrew those cities, and all the Plain, and all the inhabitants of the cities, and that which grew upon the ground.</VERS>\r\n      <VERS vnumber=\"26\">But his wife looked back from behind him, and she became a pillar of salt.</VERS>\r\n      <VERS vnumber=\"27\">And Abraham gat up early in the morning to the place where he had stood before Jehovah:</VERS>\r\n      <VERS vnumber=\"28\">and he looked toward Sodom and Gomorrah, and toward all the land of the Plain, and beheld, and, lo, the smoke of the land went up as the smoke of a furnace.</VERS>\r\n      <VERS vnumber=\"29\">And 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 which Lot dwelt.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">And the first-born 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:</VERS>\r\n      <VERS vnumber=\"32\">come, let us make our father drink wine, and we will lie with him, that we may preserve seed of our father.</VERS>\r\n      <VERS vnumber=\"33\">And they made their father drink wine that night: and the first-born went in, and lay with her father; and he knew not when she lay down, nor when she arose.</VERS>\r\n      <VERS vnumber=\"34\">And it came to pass on the morrow, that the first-born 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.</VERS>\r\n      <VERS vnumber=\"35\">And they made their father drink wine that night also: and the younger arose, and lay with him; and he knew not when she lay down, nor when she arose.</VERS>\r\n      <VERS vnumber=\"36\">Thus were both the daughters of Lot with child by their father.</VERS>\r\n      <VERS vnumber=\"37\">And the first-born bare a son, and called his name Moab: the same is the father of the Moabites unto this day.</VERS>\r\n      <VERS vnumber=\"38\">And the younger, she also bare a son, and called his name Ben-ammi: the same is the father of the children of Ammon unto this day.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"20\">\r\n      <VERS vnumber=\"1\">And Abraham journeyed from thence toward the land of the South, and dwelt between Kadesh and Shur. And he sojourned in Gerar.</VERS>\r\n      <VERS vnumber=\"2\">And Abraham said of Sarah his wife, She is my sister. And Abimelech king of Gerar sent, and took Sarah.</VERS>\r\n      <VERS vnumber=\"3\">But God came to Abimelech in a dream of the night, and said to him, Behold, thou art but a dead man, because of the woman whom thou hast taken. For she is a man`s wife.</VERS>\r\n      <VERS vnumber=\"4\">Now Abimelech had not come near her. And he said, Lord, wilt thou slay even a righteous nation?</VERS>\r\n      <VERS vnumber=\"5\">Said he not himself unto me, She is my sister? And she, even she herself said, He is my brother. In the integrity of my heart and the innocency of my hands have I done this.</VERS>\r\n      <VERS vnumber=\"6\">And God said unto him in the dream, Yea, I know that in the integrity of thy heart thou has done this, and I also withheld thee from sinning against me. Therefore suffered I thee not to touch her.</VERS>\r\n      <VERS vnumber=\"7\">Now therefore restore the man`s 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.</VERS>\r\n      <VERS vnumber=\"8\">And Abimelech rose early in the morning, and called all his servants, and told all these things in their ear. And the men were sore afraid.</VERS>\r\n      <VERS vnumber=\"9\">Then Abimelech called Abraham, and said unto him, What hast thou done unto us? And wherein have I sinned against 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.</VERS>\r\n      <VERS vnumber=\"10\">And Abimelech said unto Abraham, What sawest thou, that thou hast done this thing?</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And moreover she is indeed my sister, the daughter of my father, but not the daughter of my mother; and she became my wife:</VERS>\r\n      <VERS vnumber=\"13\">and 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 show unto me. At every place whither we shall come, say of me, He is my brother.</VERS>\r\n      <VERS vnumber=\"14\">And Abimelech took sheep and oxen, and men-servants and women-servants, and gave them unto Abraham, and restored him Sarah his wife.</VERS>\r\n      <VERS vnumber=\"15\">And Abimelech said, Behold, my land is before thee. Dwell where it pleaseth thee.</VERS>\r\n      <VERS vnumber=\"16\">And unto Sarah he said, Behold, I have given thy brother a thousand pieces of silver. Behold, it is for thee a covering of the eyes to all that are with thee. And in respect of all thou art righted.</VERS>\r\n      <VERS vnumber=\"17\">And Abraham prayed unto God. And God healed Abimelech, and his wife, and his maid-servants. And they bare children.</VERS>\r\n      <VERS vnumber=\"18\">For Jehovah had fast closed up all the wombs of the house of Abimelech, because of Sarah, Abraham`s wife.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"21\">\r\n      <VERS vnumber=\"1\">And Jehovah visited Sarah as he had said, and Jehovah did unto Sarah as he had spoken.</VERS>\r\n      <VERS vnumber=\"2\">And Sarah conceived, and bare Abraham a son in his old age, at the set time of which God had spoken to him.</VERS>\r\n      <VERS vnumber=\"3\">And Abraham called the name of his son that was born unto him, whom Sarah bare to him, Isaac.</VERS>\r\n      <VERS vnumber=\"4\">And Abraham circumcised his son Isaac when he was eight days old, as God had commanded him.</VERS>\r\n      <VERS vnumber=\"5\">And Abraham was a hundred years old, when his son Isaac was born unto him.</VERS>\r\n      <VERS vnumber=\"6\">And Sarah said, God hath made me to laugh. Every one that heareth will laugh with me.</VERS>\r\n      <VERS vnumber=\"7\">And she said, Who would have said unto Abraham, that Sarah should give children suck? For I have borne him a son in his old age.</VERS>\r\n      <VERS vnumber=\"8\">And the child grew, and was weaned. And Abraham made a great feast on the day that Isaac was weaned.</VERS>\r\n      <VERS vnumber=\"9\">And Sarah saw the son of Hagar the Egyptian, whom she had borne unto Abraham, mocking.</VERS>\r\n      <VERS vnumber=\"10\">Wherefore she said unto Abraham, Cast out this handmaid and her son. For the son of this handmaid shall not be heir with my son, even with Isaac.</VERS>\r\n      <VERS vnumber=\"11\">And the thing was very grievous in Abraham`s sight on account of his son.</VERS>\r\n      <VERS vnumber=\"12\">And God said unto Abraham, Let it not be grievous in thy sight because of the lad, and because of thy handmaid. In all that Sarah saith unto thee, hearken unto her voice. For in Isaac shall thy seed be called.</VERS>\r\n      <VERS vnumber=\"13\">And also of the son of the handmaid will I make a nation, because he is thy seed.</VERS>\r\n      <VERS vnumber=\"14\">And 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 [gave her] the child, and sent her away. And she departed, and wandered in the wilderness of Beer-sheba.</VERS>\r\n      <VERS vnumber=\"15\">And the water in the bottle was spent, and she cast the child under one of the shrubs.</VERS>\r\n      <VERS vnumber=\"16\">And she went, and sat her down over against him a good way off, as it were a bowshot. For she said, Let me not look upon the death of the child. And she sat over against him, and lifted up her voice, and wept.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">Arise, lift up the lad, and hold him in thy hand. For I will make him a great nation.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And God was with the lad, and he grew. And he dwelt in the wilderness, and became, as he grew up, an archer.</VERS>\r\n      <VERS vnumber=\"21\">And he dwelt in the wilderness of Paran. And his mother took him a wife out of the land of Egypt.</VERS>\r\n      <VERS vnumber=\"22\">And it came to pass at that time, that Abimelech and Phicol the captain of his host spake unto Abraham, saying, God is with thee in all that thou doest.</VERS>\r\n      <VERS vnumber=\"23\">Now 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.</VERS>\r\n      <VERS vnumber=\"24\">And Abraham said, I will swear.</VERS>\r\n      <VERS vnumber=\"25\">And Abraham reproved Abimelech because of the well of water, which Abimelech`s servants had violently taken away.</VERS>\r\n      <VERS vnumber=\"26\">And Abimelech said, I know not who hath done this thing. Neither didst thou tell me, neither yet heard I of it, but to-day.</VERS>\r\n      <VERS vnumber=\"27\">And Abraham took sheep and oxen, and gave them unto Abimelech. And they two made a covenant.</VERS>\r\n      <VERS vnumber=\"28\">And Abraham set seven ewe lambs of the flock by themselves.</VERS>\r\n      <VERS vnumber=\"29\">And Abimelech said unto Abraham, What mean these seven ewe lambs which thou hast set by themselves?</VERS>\r\n      <VERS vnumber=\"30\">And he said, These seven ewe lambs shalt thou take of my hand, that it may be a witness unto me, that I have digged this well.</VERS>\r\n      <VERS vnumber=\"31\">Wherefore he called that place Beer-sheba. Because there they sware both of them.</VERS>\r\n      <VERS vnumber=\"32\">So they made a covenant at Beer-sheba. And Abimelech rose up, and Phicol the captain of his host, and they returned into the land of the Philistines.</VERS>\r\n      <VERS vnumber=\"33\">And [Abraham] planted a tamarisk tree in Beer-sheba, and called there on the name of Jehovah, the Everlasting God.</VERS>\r\n      <VERS vnumber=\"34\">And Abraham sojourned in the land of the Philistines many days.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"22\">\r\n      <VERS vnumber=\"1\">And it came to pass after these things, that God did prove Abraham, and said unto him, Abraham. And he said, Here am I.</VERS>\r\n      <VERS vnumber=\"2\">And he said, Take now thy son, thine only son, whom thou lovest, even Isaac, 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.</VERS>\r\n      <VERS vnumber=\"3\">And Abraham rose early in the morning, and saddled his ass, and took two of his young men with him, and Isaac his son. And he clave the wood for the burnt-offering, and rose up, and went unto the place of which God had told him.</VERS>\r\n      <VERS vnumber=\"4\">On the third day Abraham lifted up his eyes, and saw the place afar off.</VERS>\r\n      <VERS vnumber=\"5\">And Abraham said unto his young men, Abide ye here with the ass, and I and the lad will go yonder; and we will worship, and come again to you.</VERS>\r\n      <VERS vnumber=\"6\">And Abraham took the wood of the burnt-offering, and laid it upon Isaac his son. And he took in his hand the fire and the knife. And they went both of them together.</VERS>\r\n      <VERS vnumber=\"7\">And 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?</VERS>\r\n      <VERS vnumber=\"8\">And Abraham said, God will provide himself the lamb for a burnt-offering, my son. So they went both of them together.</VERS>\r\n      <VERS vnumber=\"9\">And they came to the place which God had told him of. And Abraham built the altar there, and laid the wood in order, and bound Isaac his son, and laid him on the altar, upon the wood.</VERS>\r\n      <VERS vnumber=\"10\">And Abraham stretched forth his hand, and took the knife to slay his son.</VERS>\r\n      <VERS vnumber=\"11\">And the angel of Jehovah called unto him out of heaven, and said, Abraham, Abraham. And he said, Here I am.</VERS>\r\n      <VERS vnumber=\"12\">And he said, Lay not thy hand upon the lad, neither do thou anything unto him. For now I know that thou fearest God, seeing thou hast not withheld thy son, thine only son, from me.</VERS>\r\n      <VERS vnumber=\"13\">And Abraham lifted up his eyes, and looked, and behold, behind [him] a ram caught in the 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.</VERS>\r\n      <VERS vnumber=\"14\">And Abraham called the name of that place Jehovah-jireh. As it is said to this day, In the mount of Jehovah it shall be provided.</VERS>\r\n      <VERS vnumber=\"15\">And the angel of Jehovah called unto Abraham a second time out of heaven,</VERS>\r\n      <VERS vnumber=\"16\">and said, By myself have I sworn, saith Jehovah, because thou hast done this thing, and hast not withheld thy son, thine only son,</VERS>\r\n      <VERS vnumber=\"17\">that in blessing I will bless thee, and in multiplying I will multiply thy seed as the stars of the heavens, and as the sand which is upon the seashore. And thy seed shall possess the gate of his enemies.</VERS>\r\n      <VERS vnumber=\"18\">And in thy seed shall all the nations of the earth be blessed. Because thou hast obeyed my voice.</VERS>\r\n      <VERS vnumber=\"19\">So Abraham returned unto his young men, and they rose up and went together to Beer-sheba. And Abraham dwelt at Beer-sheba.</VERS>\r\n      <VERS vnumber=\"20\">And it came to pass after these things, that it was told Abraham, saying, Behold, Milcah, she also hath borne children unto they brother Nahor.</VERS>\r\n      <VERS vnumber=\"21\">Uz his first-born, and Buz his brother, and Kemuel the father of Aram.</VERS>\r\n      <VERS vnumber=\"22\">And Chesed, and Hazo, and Pildash, and Jidlaph, and Bethuel.</VERS>\r\n      <VERS vnumber=\"23\">And Bethuel begat Rebekah. These eight did Milcah bear to Nahor, Abraham`s brother.</VERS>\r\n      <VERS vnumber=\"24\">And his concubine, whose name was Reumah, she also bare Tebah, and Gaham, and Tahash, and Maacah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"23\">\r\n      <VERS vnumber=\"1\">And the life of Sarah was a hundred and seven and twenty years. These were the years of the life of Sarah.</VERS>\r\n      <VERS vnumber=\"2\">And Sarah died in Kiriath-arba (the same is Hebron), in the land of Canaan. And Abraham came to mourn for Sarah, and to weep for her.</VERS>\r\n      <VERS vnumber=\"3\">And Abraham rose up from before his dead, and spake unto the children of Heth, saying,</VERS>\r\n      <VERS vnumber=\"4\">I am a stranger and a sojourner with you. Give me a possession of a burying-place with you, that I may bury my dead out of my sight.</VERS>\r\n      <VERS vnumber=\"5\">And the children of Heth answered Abraham, saying unto him,</VERS>\r\n      <VERS vnumber=\"6\">Hear us, my lord. Thou art a prince of God 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.</VERS>\r\n      <VERS vnumber=\"7\">And Abraham rose up, and bowed himself to the people of the land, even to the children of Heth.</VERS>\r\n      <VERS vnumber=\"8\">And he communed with them, saying, If it be your mind that I should bury my dead out of my sight, hear me, and entreat for me to Ephron the son of Zohar,</VERS>\r\n      <VERS vnumber=\"9\">that he may give me the cave of Machpelah, which he hath, which is in the end of his field. For the full price let him give it to me in the midst of you for a possession of a burying-place.</VERS>\r\n      <VERS vnumber=\"10\">Now Ephron was sitting in the midst of 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,</VERS>\r\n      <VERS vnumber=\"11\">Nay, my lord, hear me. The field give I thee, and the cave that is therein, I give it thee. In the presence of the children of my people give I it thee. Bury thy dead.</VERS>\r\n      <VERS vnumber=\"12\">And Abraham bowed himself down before the people of the land.</VERS>\r\n      <VERS vnumber=\"13\">And he spake unto Ephron in the audience of the people of the land, saying, But if thou wilt, I pray thee, hear me. I will give the price of the field. Take it of me, and I will bury my dead there.</VERS>\r\n      <VERS vnumber=\"14\">And Ephron answered Abraham, saying unto him,</VERS>\r\n      <VERS vnumber=\"15\">My lord, hearken unto me. A piece of land worth four hundred shekels of silver, what is that betwixt me and thee? Bury therefore thy dead.</VERS>\r\n      <VERS vnumber=\"16\">And Abraham hearkened unto Ephron. And Abraham weighed to Ephron the silver which he had named in the audience of the children of Heth, four hundred shekels of silver, current [money] with the merchant.</VERS>\r\n      <VERS vnumber=\"17\">So 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 border thereof round about, were made sure</VERS>\r\n      <VERS vnumber=\"18\">unto Abraham for a possession in the presence of the children of Heth, before all that went in at the gate of his city.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And the field, and the cave that is therein, were made sure unto Abraham for a possession of a burying-place by the children of Heth.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"24\">\r\n      <VERS vnumber=\"1\">And Abraham was old, [and] well stricken in age. And Jehovah had blessed Abraham in all things.</VERS>\r\n      <VERS vnumber=\"2\">And Abraham said unto his servant, the elder of his house, that ruled over all that he had, Put, I pray thee, thy hand under my thigh.</VERS>\r\n      <VERS vnumber=\"3\">And I will make thee swear by Jehovah, the God of heaven and the God of the earth, that thou wilt not take a wife for my son of the daughters of the Canaanites, among whom I dwell.</VERS>\r\n      <VERS vnumber=\"4\">But thou shalt go unto my country, and to my kindred, and take a wife for my son Isaac.</VERS>\r\n      <VERS vnumber=\"5\">And 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?</VERS>\r\n      <VERS vnumber=\"6\">And Abraham said unto him, Beware thou that thou bring not my son thither again.</VERS>\r\n      <VERS vnumber=\"7\">Jehovah, the God of heaven, who took me from my father`s house, and from the land of my nativity, and who spake unto me, and who sware unto me, saying, Unto thy seed will I give this land. He will send his angel before thee, and thou shalt take a wife for my son from thence.</VERS>\r\n      <VERS vnumber=\"8\">And if the woman be not willing to follow thee, then thou shalt be clear from this my oath. Only thou shalt not bring my son thither again.</VERS>\r\n      <VERS vnumber=\"9\">And the servant put his hand under the thigh of Abraham his master, and sware to him concerning this matter.</VERS>\r\n      <VERS vnumber=\"10\">And the servant took ten camels, of the camels of his master, and departed, having all goodly things of his master`s in his hand. And he arose, and went to Mesopotamia, unto the city of Nahor.</VERS>\r\n      <VERS vnumber=\"11\">And he made the camels to kneel down without the city by the well of water at the time of evening, the time that women go out to draw water.</VERS>\r\n      <VERS vnumber=\"12\">And he said, O Jehovah, the God of my master Abraham, send me, I pray thee, good speed this day, and show kindness unto my master Abraham.</VERS>\r\n      <VERS vnumber=\"13\">Behold, I am standing by the fountain of water. And the daughters of the men of the city are coming out to draw water.</VERS>\r\n      <VERS vnumber=\"14\">And 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 showed kindness unto my master.</VERS>\r\n      <VERS vnumber=\"15\">And it came to pass, before he had done speaking, that, behold, Rebekah came out, who was born to Bethuel the son of Milcah, the wife of Nahor, Abraham`s brother, with her pitcher upon her shoulder.</VERS>\r\n      <VERS vnumber=\"16\">And the damsel was very fair to look upon, a virgin, neither had any man known her. And she went down to the fountain, and filled her pitcher, and came up.</VERS>\r\n      <VERS vnumber=\"17\">And the servant ran to meet her, and said, Give me to drink, I pray thee, a little water from thy pitcher.</VERS>\r\n      <VERS vnumber=\"18\">And she said, Drink, my lord. And she hasted, and let down her pitcher upon her hand, and gave him drink.</VERS>\r\n      <VERS vnumber=\"19\">And when she had done giving him drink, she said, I will draw for thy camels also, until they have done drinking.</VERS>\r\n      <VERS vnumber=\"20\">And she hasted, and emptied her pitcher into the trough, and ran again unto the well to draw, and drew for all his camels.</VERS>\r\n      <VERS vnumber=\"21\">And the man looked stedfastly on her, holding his peace, to know whether Jehovah had made his journey prosperous or not.</VERS>\r\n      <VERS vnumber=\"22\">And it came to pass, as the camels had done drinking, that the man took a golden ring of half a shekel weight, and two bracelets for her hands of ten shekels weight of gold,</VERS>\r\n      <VERS vnumber=\"23\">and said, Whose daughter art thou? Tell me, I pray thee. Is there room in thy father`s house for us to lodge in?</VERS>\r\n      <VERS vnumber=\"24\">And she said unto him, I am the daughter of Bethuel the son of Milcah, whom she bare unto Nahor.</VERS>\r\n      <VERS vnumber=\"25\">She said moreover unto him, We have both straw and provender enough, and room to lodge in.</VERS>\r\n      <VERS vnumber=\"26\">And the man bowed his head, and worshipped Jehovah.</VERS>\r\n      <VERS vnumber=\"27\">And he said, Blessed be Jehovah, the God of my master Abraham, who hath not forsaken his lovingkindness and his truth toward my master. As for me, Jehovah hath led me in the way to the house of my master`s brethren.</VERS>\r\n      <VERS vnumber=\"28\">And the damsel ran, and told her mother`s house according to these words.</VERS>\r\n      <VERS vnumber=\"29\">And Rebekah had a brother, and his name was Laban: and Laban ran out unto the man, unto the fountain.</VERS>\r\n      <VERS vnumber=\"30\">And it came to pass, when he saw the ring, and the 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 was standing by the camels at the fountain.</VERS>\r\n      <VERS vnumber=\"31\">And he said, Come in, thou blessed of Jehovah. Wherefore standest thou without? For I have prepared the house, and room for the camels.</VERS>\r\n      <VERS vnumber=\"32\">And the man came into the house, and he ungirded the camels. And he gave straw and provender for the camels, and water to wash his feet and the feet of the men that were with him.</VERS>\r\n      <VERS vnumber=\"33\">And there was set food before him to eat. But he said, I will not eat, until I have told mine errand. And he said, Speak on.</VERS>\r\n      <VERS vnumber=\"34\">And he said, I am Abraham`s servant.</VERS>\r\n      <VERS vnumber=\"35\">And Jehovah hath blessed my master greatly. And he is become great. And he hath given him flocks and herds, and silver and gold, and men-servants and maid-servants, and camels and asses.</VERS>\r\n      <VERS vnumber=\"36\">And 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.</VERS>\r\n      <VERS vnumber=\"37\">And my master made me swear, saying, Thou shalt not take a wife for my son of the daughters of the Canaanites, in whose land I dwell.</VERS>\r\n      <VERS vnumber=\"38\">But thou shalt go unto my father`s house, and to my kindred, and take a wife for my son.</VERS>\r\n      <VERS vnumber=\"39\">And I said unto my master, Peradventure the woman will not follow me.</VERS>\r\n      <VERS vnumber=\"40\">And he said unto me, Jehovah, 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.</VERS>\r\n      <VERS vnumber=\"41\">Then shalt thou be clear from my oath, when thou comest to my kindred. And if they give her not to thee, thou shalt be clear from my oath.</VERS>\r\n      <VERS vnumber=\"42\">And I came this day unto the fountain, and said, O Jehovah, the God of my master Abraham, if now thou do prosper my way which I go.</VERS>\r\n      <VERS vnumber=\"43\">Behold, I am standing by the fountain of water. And let it come to pass, that the maiden that cometh forth to draw, to whom I shall say, Give me, I pray thee, a little water from thy pitcher to drink.</VERS>\r\n      <VERS vnumber=\"44\">And she shall say to me, Both drink thou, and I will also draw for thy camels. Let the same be the woman whom Jehovah hath appointed for my master`s son.</VERS>\r\n      <VERS vnumber=\"45\">And before I had done speaking in my heart, behold, Rebekah came forth with her pitcher on her shoulder. And she went down unto the fountain, and drew. And I said unto her, Let me drink, I pray thee.</VERS>\r\n      <VERS vnumber=\"46\">And 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.</VERS>\r\n      <VERS vnumber=\"47\">And 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 ring upon her nose, and the bracelets upon her hands.</VERS>\r\n      <VERS vnumber=\"48\">And I bowed my head, and worshipped Jehovah, and blessed Jehovah, the God of my master Abraham, who had led me in the right way to take my master`s brother`s daughter for his son.</VERS>\r\n      <VERS vnumber=\"49\">And 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.</VERS>\r\n      <VERS vnumber=\"50\">Then Laban and Bethuel answered and said, The thing proceedeth from Jehovah. We cannot speak unto thee bad or good.</VERS>\r\n      <VERS vnumber=\"51\">Behold, Rebekah is before thee, take her, and go, and let her be thy master`s son`s wife, as Jehovah hath spoken.</VERS>\r\n      <VERS vnumber=\"52\">And it came to pass, that, when Abraham`s servant heard their words, he bowed himself down to the earth unto Jehovah.</VERS>\r\n      <VERS vnumber=\"53\">And 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.</VERS>\r\n      <VERS vnumber=\"54\">And 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.</VERS>\r\n      <VERS vnumber=\"55\">And her brother and her mother said, Let the damsel abide with us [a few] days, at the least ten. After that she shall go.</VERS>\r\n      <VERS vnumber=\"56\">And he said unto them, Hinder me not, seeing Jehovah hath prospered my way. Send me away that I may go to my master.</VERS>\r\n      <VERS vnumber=\"57\">And they said, We will call the damsel, and inquire at her mouth.</VERS>\r\n      <VERS vnumber=\"58\">And they called Rebekah, and said unto her, Wilt thou go with this man? And she said, I will go.</VERS>\r\n      <VERS vnumber=\"59\">And they sent away Rebekah their sister, and her nurse, and Abraham`s servant, and his men.</VERS>\r\n      <VERS vnumber=\"60\">And they blessed Rebekah, and said unto her, Our sister, be thou [the mother] of thousands of ten thousands, and let thy seed possess the gate of those that hate them.</VERS>\r\n      <VERS vnumber=\"61\">And Rebekah arose, and her damsels, and they rode upon the camels, and followed the man. And the servant took Rebekah, and went his way.</VERS>\r\n      <VERS vnumber=\"62\">And Isaac came from the way of Beer-lahai-roi. For he dwelt in the land of the South.</VERS>\r\n      <VERS vnumber=\"63\">And Isaac went out to meditate in the field at the eventide. And he lifted up his eyes, and saw, and, behold, there were camels coming.</VERS>\r\n      <VERS vnumber=\"64\">And Rebekah lifted up her eyes, and when she saw Isaac, she alighted from the camel.</VERS>\r\n      <VERS vnumber=\"65\">And she said unto the servant, What man is this that walketh in the field to meet us? And the servant said, It is my master. And she took her veil, and covered herself.</VERS>\r\n      <VERS vnumber=\"66\">And the servant told Isaac all the things that he had done.</VERS>\r\n      <VERS vnumber=\"67\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"25\">\r\n      <VERS vnumber=\"1\">And Abraham took another wife, and her name was Keturah.</VERS>\r\n      <VERS vnumber=\"2\">And she bare him Zimran, and Jokshan, and Medan, and Midian, and Ishbak, and Shuah.</VERS>\r\n      <VERS vnumber=\"3\">And Jokshan begat Sheba, and Dedan. And the sons of Dedan were Asshurim, and Letushim, and Leummim.</VERS>\r\n      <VERS vnumber=\"4\">And the sons of Midian: Ephah, and Epher, and Hanoch, and Abida, and Eldaah. All these were the children of Keturah.</VERS>\r\n      <VERS vnumber=\"5\">And Abraham gave all that he had unto Isaac.</VERS>\r\n      <VERS vnumber=\"6\">But unto the sons of the concubines, that Abraham had, Abraham gave gifts. And he sent them away from Isaac his son, while he yet lived, eastward, unto the east country.</VERS>\r\n      <VERS vnumber=\"7\">And these are the days of the years of Abraham`s life which he lived, a hundred threescore and fifteen years.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And Isaac and Ishmael his sons buried him in the cave of Machpelah, in the field of Ephron the son of Zohar the Hittite, which is before Mamre.</VERS>\r\n      <VERS vnumber=\"10\">The field which Abraham purchased of the children of Heth. There was Abraham buried, and Sarah his wife.</VERS>\r\n      <VERS vnumber=\"11\">And it came to pass after the death of Abraham, that God blessed Isaac his son. And Isaac dwelt by Beer-lahai-roi.</VERS>\r\n      <VERS vnumber=\"12\">Now these are the generations of Ishmael, Abraham`s son, whom Hagar the Egyptian, Sarah`s handmaid, bare unto Abraham.</VERS>\r\n      <VERS vnumber=\"13\">And these are the names of the sons of Ishmael, by their names, according to their generations: the first-born of Ishmael, Nebaioth, and Kedar, and Adbeel, and Mibsam,</VERS>\r\n      <VERS vnumber=\"14\">and Mishma, and Dumah, and Massa,</VERS>\r\n      <VERS vnumber=\"15\">Hadad, and Tema, Jetur, Naphish, and Kedemah.</VERS>\r\n      <VERS vnumber=\"16\">These are the sons of Ishmael, and these are their names, by their villages, and by their encampments. Twelve princes according to their nations.</VERS>\r\n      <VERS vnumber=\"17\">And these are the years of the life of Ishmael, a hundred and thirty and seven years. And he gave up the ghost and died, and was gathered unto his people.</VERS>\r\n      <VERS vnumber=\"18\">And they dwelt from Havilah unto Shur that is before Egypt, as thou goest toward Assyria. He abode over against all his brethren.</VERS>\r\n      <VERS vnumber=\"19\">And these are the generations of Isaac, Abraham`s son. Abraham begat Isaac.</VERS>\r\n      <VERS vnumber=\"20\">And Isaac was forty years old when he took Rebekah, the daughter of Bethuel the Syrian of Paddan-aram, the sister of Laban the Syrian, to be his wife.</VERS>\r\n      <VERS vnumber=\"21\">And Isaac entreated Jehovah for his wife, because she was barren. And Jehovah was entreated of him, and Rebekah his wife conceived.</VERS>\r\n      <VERS vnumber=\"22\">And the children struggled together within her. And she said, If it be so, wherefore do I live? And she went to inquire of Jehovah.</VERS>\r\n      <VERS vnumber=\"23\">And Jehovah said unto her, Two nations are in thy womb, And two peoples shall be separated from thy bowels. And the one people shall be stronger than the other people. And the elder shall serve the younger.</VERS>\r\n      <VERS vnumber=\"24\">And when her days to be delivered were fulfilled, behold, there were twins in her womb.</VERS>\r\n      <VERS vnumber=\"25\">And the first came forth red, all over like a hairy garment. And they called his name Esau.</VERS>\r\n      <VERS vnumber=\"26\">And after that came forth his brother, and his hand had hold on Esau`s heel. And his name was called Jacob. And Isaac was threescore years old when she bare them.</VERS>\r\n      <VERS vnumber=\"27\">And the boys grew. And Esau was a skilful hunter, a man of the field. And Jacob was a quiet man, dwelling in tents.</VERS>\r\n      <VERS vnumber=\"28\">Now Isaac loved Esau, because he did eat of his venison. And Rebekah loved Jacob.</VERS>\r\n      <VERS vnumber=\"29\">And Jacob boiled pottage. And Esau came in from the field, and he was faint.</VERS>\r\n      <VERS vnumber=\"30\">And Esau said to Jacob, Feed me, I pray thee, with that same red [pottage]. For I am faint. Therefore was his name called Edom.</VERS>\r\n      <VERS vnumber=\"31\">And Jacob said, Sell me first thy birthright.</VERS>\r\n      <VERS vnumber=\"32\">And Esau said, Behold, I am about to die. And what profit shall the birthright do to me?</VERS>\r\n      <VERS vnumber=\"33\">And Jacob said, Swear to me first. And he sware unto him. And he sold his birthright unto Jacob.</VERS>\r\n      <VERS vnumber=\"34\">And Jacob gave Esau bread and pottage of lentils. And he did eat and drink, and rose up, and went his way. So Esau despised his birthright.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"26\">\r\n      <VERS vnumber=\"1\">And there was a famine in the land, besides the first famine that was in the days of Abraham. And Isaac went unto Abimelech king of the Philistines, unto Gerar.</VERS>\r\n      <VERS vnumber=\"2\">And Jehovah appeared unto him, and said, Go not down into Egypt. Dwell in the land which I shall tell thee of.</VERS>\r\n      <VERS vnumber=\"3\">Sojourn 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 lands, and I will establish the oath which I sware unto Abraham thy father.</VERS>\r\n      <VERS vnumber=\"4\">And I will multiply thy seed as the stars of heaven, and will give unto thy seed all these lands. And in thy seed shall all the nations of the earth be blessed.</VERS>\r\n      <VERS vnumber=\"5\">Because that Abraham obeyed my voice, and kept my charge, my commandments, my statutes, and my laws.</VERS>\r\n      <VERS vnumber=\"6\">And Isaac dwelt in Gerar.</VERS>\r\n      <VERS vnumber=\"7\">And the men of the place asked him of his wife. And he said, She is my sister. For he feared to say, My wife. Lest, [said he], the men of the place should kill me for Rebekah. Because she was fair to look upon.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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 because of her.</VERS>\r\n      <VERS vnumber=\"10\">And Abimelech said, What is this thou hast done unto us? One of the people might easily have lain with thy wife, and thou wouldest have brought guiltiness upon us.</VERS>\r\n      <VERS vnumber=\"11\">And Abimelech charged all the people, saying, He that toucheth this man or his wife shall surely be put to death.</VERS>\r\n      <VERS vnumber=\"12\">And Isaac sowed in that land, and found in the same year a hundredfold. And Jehovah blessed him.</VERS>\r\n      <VERS vnumber=\"13\">And the man waxed great, and grew more and more until he became very great.</VERS>\r\n      <VERS vnumber=\"14\">And he had possessions of flocks, and possessions of herds, and a great household. And the Philistines envied him.</VERS>\r\n      <VERS vnumber=\"15\">Now all the wells which his father`s servants had digged in the days of Abraham his father, the Philistines had stopped, and filled with earth.</VERS>\r\n      <VERS vnumber=\"16\">And Abimelech said unto Isaac, Go from us. For thou art much mightier than we.</VERS>\r\n      <VERS vnumber=\"17\">And Isaac departed thence, and encamped in the valley of Gerar, and dwelt there.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And Isaac`s servants digged in the valley, and found there a well of springing water.</VERS>\r\n      <VERS vnumber=\"20\">And the herdsmen of Gerar strove with Isaac`s herdsmen, saying, The water is ours. And he called the name of the well Esek, because they contended with him.</VERS>\r\n      <VERS vnumber=\"21\">And they digged another well, and they strove for that also. And he called the name of it Sitnah.</VERS>\r\n      <VERS vnumber=\"22\">And 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 Jehovah hath made room for us, and we shall be fruitful in the land.</VERS>\r\n      <VERS vnumber=\"23\">And he went up from thence to Beer-sheba.</VERS>\r\n      <VERS vnumber=\"24\">And Jehovah 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.</VERS>\r\n      <VERS vnumber=\"25\">And he builded an altar there, and called upon the name of Jehovah, and pitched his tent there. And there Isaac`s servants digged a well.</VERS>\r\n      <VERS vnumber=\"26\">Then Abimelech went to him from Gerar, and Ahuzzath his friend, and Phicol the captain of his host.</VERS>\r\n      <VERS vnumber=\"27\">And Isaac said unto them, Wherefore are ye come unto me, seeing ye hate me, and have sent me away from you?</VERS>\r\n      <VERS vnumber=\"28\">And they said, We saw plainly that Jehovah was with thee. And we said, Let there now be an oath betwixt us, even betwixt us and thee, and let us make a covenant with thee,</VERS>\r\n      <VERS vnumber=\"29\">that 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 Jehovah.</VERS>\r\n      <VERS vnumber=\"30\">And he made them a feast, and they did eat and drink.</VERS>\r\n      <VERS vnumber=\"31\">And they rose up betimes in the morning, and sware one to another. And Isaac sent them away, and they departed from him in peace.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">And he called it Shibah. Therefore the name of the city is Beer-sheba unto this day.</VERS>\r\n      <VERS vnumber=\"34\">And when Esau was forty years old he took to wife Judith the daughter of Beeri the Hittite, and Basemath the daughter of Elon the Hittite.</VERS>\r\n      <VERS vnumber=\"35\">And they were a grief of mind unto Isaac and to Rebekah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"27\">\r\n      <VERS vnumber=\"1\">And it came to pass, that when Isaac was old, and his eyes were dim, so that he could not see, he called Esau his elder son, and said unto him, My son. And he said unto him, Here am I.</VERS>\r\n      <VERS vnumber=\"2\">And he said, Behold now, I am old, I know not the day of my death.</VERS>\r\n      <VERS vnumber=\"3\">Now therefore take, I pray thee, thy weapons, thy quiver and thy bow, and go out to the field, and take me venison.</VERS>\r\n      <VERS vnumber=\"4\">And make me savory food, such as I love, and bring it to me, that I may eat. That my soul may bless thee before I die.</VERS>\r\n      <VERS vnumber=\"5\">And Rebekah heard when Isaac spake to Esau his son. And Esau went to the field to hunt for venison, and to bring it.</VERS>\r\n      <VERS vnumber=\"6\">And Rebekah spake unto Jacob her son, saying, Behold, I heard thy father speak unto Esau thy brother, saying,</VERS>\r\n      <VERS vnumber=\"7\">Bring me venison, and make me savory food, that I may eat, and bless thee before Jehovah before my death.</VERS>\r\n      <VERS vnumber=\"8\">Now therefore, my son, obey my voice according to that which I command thee.</VERS>\r\n      <VERS vnumber=\"9\">Go now to the flock, and fetch me from thence two good kids of the goats. And I will make them savory food for thy father, such as he loveth.</VERS>\r\n      <VERS vnumber=\"10\">And thou shalt bring it to thy father, that he may eat, so that he may bless thee before his death.</VERS>\r\n      <VERS vnumber=\"11\">And Jacob said to Rebekah his mother, Behold, Esau my brother is a hairy man, and I am a smooth man.</VERS>\r\n      <VERS vnumber=\"12\">My 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.</VERS>\r\n      <VERS vnumber=\"13\">And his mother said unto him, Upon me be thy curse, my son. Only obey my voice, and go fetch me them.</VERS>\r\n      <VERS vnumber=\"14\">And he went, and fetched, and brought them to his mother. And his mother made savory food, such as his father loved.</VERS>\r\n      <VERS vnumber=\"15\">And Rebekah took the goodly garments of Esau her elder son, which were with her in the house, and put them upon Jacob her younger son.</VERS>\r\n      <VERS vnumber=\"16\">And she put the skins of the kids of the goats upon his hands, and upon the smooth of his neck.</VERS>\r\n      <VERS vnumber=\"17\">And she gave the savory food and the bread, which she had prepared, into the hand of her son Jacob.</VERS>\r\n      <VERS vnumber=\"18\">And he came unto his father, and said, My father. And he said, Here am I. Who art thou, my son?</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And Isaac said unto his son, How is it that thou hast found it so quickly, my son? And he said, Because Jehovah thy God sent me good speed.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And he discerned him not, because his hands were hairy, as his brother Esau`s hands. So he blessed him.</VERS>\r\n      <VERS vnumber=\"24\">And he said, Art thou my very son Esau? And he said, I am.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And his father Isaac said unto him, Come near now, and kiss me, my son.</VERS>\r\n      <VERS vnumber=\"27\">And 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 Jehovah hath blessed.</VERS>\r\n      <VERS vnumber=\"28\">And God five thee of the dew of heaven, And of the fatness of the earth, And plenty of grain and new wine.</VERS>\r\n      <VERS vnumber=\"29\">Let peoples 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 every one that blesseth thee.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">And he also made savory food, and brought it unto his father. And he said unto his father, Let my father arise, and eat of his son`s venison, that thy soul may bless me.</VERS>\r\n      <VERS vnumber=\"32\">And Isaac his father said unto him, Who art thou? And he said, I am thy son, thy first-born, Esau.</VERS>\r\n      <VERS vnumber=\"33\">And Isaac trembled very exceedingly, and said, Who then 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.</VERS>\r\n      <VERS vnumber=\"34\">When Esau heard the words of his father, he cried with an exceeding great and bitter cry, and said unto his father, Bless me, even me also, O my father.</VERS>\r\n      <VERS vnumber=\"35\">And he said, Thy brother came with guile, and hath taken away thy blessing.</VERS>\r\n      <VERS vnumber=\"36\">And he said, Is not he rightly name Jacob? for he hath supplanted me these two time. 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?</VERS>\r\n      <VERS vnumber=\"37\">And 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 grain and new wine have I sustained him. And what then shall I do for thee, my son?</VERS>\r\n      <VERS vnumber=\"38\">And 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.</VERS>\r\n      <VERS vnumber=\"39\">And Isaac his father answered and said unto him, Behold, of the fatness of the earth shall be thy dwelling, And of the dew of heaven from above.</VERS>\r\n      <VERS vnumber=\"40\">And by thy sword shalt thou live, and thou shalt serve       thy brother. And it shall come to pass, when thou shalt break loose, That thou shalt shake his yoke from off thy neck.</VERS>\r\n      <VERS vnumber=\"41\">And 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.</VERS>\r\n      <VERS vnumber=\"42\">And the 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.</VERS>\r\n      <VERS vnumber=\"43\">Now therefore, my son, obey my voice. And arise, flee thou to Laban my brother to Haran.</VERS>\r\n      <VERS vnumber=\"44\">And tarry with him a few days, until thy brother`s fury turn away.</VERS>\r\n      <VERS vnumber=\"45\">Until 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 bereaved of you both in one day?</VERS>\r\n      <VERS vnumber=\"46\">And 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, of the daughters of the land, what good shall my life do me?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"28\">\r\n      <VERS vnumber=\"1\">And Isaac called Jacob, and blessed him, and charged him, and said unto him, Thou shalt not take a wife of the daughters of Canaan.</VERS>\r\n      <VERS vnumber=\"2\">Arise, go to Paddan-aram, to the house of Bethuel thy mother`s father. And take thee a wife from thence of the daughters of Laban thy mother`s brother.</VERS>\r\n      <VERS vnumber=\"3\">And God Almighty bless thee, and make thee fruitful, and multiply thee, that thou mayest be a company of peoples.</VERS>\r\n      <VERS vnumber=\"4\">And give thee the blessing of Abraham, to thee, and to thy seed with thee. That thou mayest inherit the land of thy sojournings, which God gave unto Abraham.</VERS>\r\n      <VERS vnumber=\"5\">And Isaac sent away Jacob. And he went to Paddan-aram unto Laban, son of Bethuel the Syrian, the brother of Rebekah, Jacob`s and Esau`s mother.</VERS>\r\n      <VERS vnumber=\"6\">Now Esau saw that Isaac had blessed Jacob and sent him away to Paddan-aram, 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 daughters of Canaan.</VERS>\r\n      <VERS vnumber=\"7\">And that Jacob obeyed his father and his mother, and was gone to Paddan-aram.</VERS>\r\n      <VERS vnumber=\"8\">And Esau saw that the daughters of Canaan pleased not Isaac his father.</VERS>\r\n      <VERS vnumber=\"9\">And Esau went unto Ishmael, and took, besides the wives that he had, Mahalath the daughter of Ishmael Abraham`s son, the sister of Nebaioth, to be his wife.</VERS>\r\n      <VERS vnumber=\"10\">And Jacob went out from Beer-sheba, and went toward Haran.</VERS>\r\n      <VERS vnumber=\"11\">And he lighted upon a certain place, and tarried there all night, because the sun was set. And he took one of the stones of the place, and put it under his head, and lay down in that place to sleep.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And, behold, Jehovah stood above it, and said, I am Jehovah, the 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And, behold, I am with thee, and will keep thee, whithersoever 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.</VERS>\r\n      <VERS vnumber=\"16\">And Jacob awaked out of his sleep, and he said, Surely Jehovah is in this place. And I knew it not.</VERS>\r\n      <VERS vnumber=\"17\">And he was afraid, and said, How dreadful is this place! This is none other than the house of God, and this is the gate of heaven.</VERS>\r\n      <VERS vnumber=\"18\">And Jacob rose up early in the morning, and took the stone that he had put under his head, and set it up for a pillar, and poured oil upon the top of it.</VERS>\r\n      <VERS vnumber=\"19\">And he called the name of that place Beth-el. But the name of the city was Luz at the first.</VERS>\r\n      <VERS vnumber=\"20\">And 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,</VERS>\r\n      <VERS vnumber=\"21\">so that I come again to my father`s house in peace, and Jehovah will be my God,</VERS>\r\n      <VERS vnumber=\"22\">then this stone, which I have set up for a pillar, shall be God`s house. And of all that thou shalt give me I will surely give the tenth unto thee.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"29\">\r\n      <VERS vnumber=\"1\">Then Jacob went on his journey, and came to the land of the children of the east.</VERS>\r\n      <VERS vnumber=\"2\">And he looked, and behold, a well in the field, and, lo, three flocks of sheep lying there by it. For out of that well they watered the flocks. And the stone upon the well`s mouth was great.</VERS>\r\n      <VERS vnumber=\"3\">And 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 its place.</VERS>\r\n      <VERS vnumber=\"4\">And Jacob said unto them, My brethren, whence are ye? And they said, Of Haran are we.</VERS>\r\n      <VERS vnumber=\"5\">And he said unto them, Know ye Laban the son of Nahor? And they said, We know him.</VERS>\r\n      <VERS vnumber=\"6\">And he said unto them, Is it well with him? And they said, It is well. And, behold, Rachel his daughter cometh with the sheep.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And they said, We cannot, until all the flocks be gathered together, and they roll the stone from the well`s mouth. Then we water the sheep.</VERS>\r\n      <VERS vnumber=\"9\">While he was yet speaking with them, Rachel came with her father`s sheep. For she kept them.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And Jacob kissed Rachel, and lifted up his voice, and wept.</VERS>\r\n      <VERS vnumber=\"12\">And Jacob told Rachel that he was her father`s brother, and that he was Rebekah`s son. And she ran and told her father.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And Laban said to him, Surely thou art my bone and my flesh. And he abode with him the space of a month.</VERS>\r\n      <VERS vnumber=\"15\">And Laban said unto Jacob, Because thou art my brother, shouldest thou therefore serve me for nought? Tell me, what shall thy wages be?</VERS>\r\n      <VERS vnumber=\"16\">And Laban had two daughters. The name of the elder was Leah, and the name of the younger was Rachel.</VERS>\r\n      <VERS vnumber=\"17\">And Leah`s eyes were tender. But Rachel was beautiful and well favored.</VERS>\r\n      <VERS vnumber=\"18\">And Jacob loved Rachel. And he said, I will serve thee seven years for Rachel thy younger daughter.</VERS>\r\n      <VERS vnumber=\"19\">And Laban said, It is better that I give her to thee, than that I should give her to another man. Abide with me.</VERS>\r\n      <VERS vnumber=\"20\">And Jacob served seven years for Rachel. And they seemed unto him but a few days, for the love he had to her.</VERS>\r\n      <VERS vnumber=\"21\">And Jacob said unto Laban, Give me my wife, for my days are fulfilled, that I may go in unto her.</VERS>\r\n      <VERS vnumber=\"22\">And Laban gathered together all the men of the place, and made a feast.</VERS>\r\n      <VERS vnumber=\"23\">And it came to pass in the evening, that he took Leah his daughter, and brought her to him. And he went in unto her.</VERS>\r\n      <VERS vnumber=\"24\">And Laban gave Zilpah his handmaid unto his daughter Leah for a handmaid.</VERS>\r\n      <VERS vnumber=\"25\">And it came to pass in the morning that, 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?</VERS>\r\n      <VERS vnumber=\"26\">And Laban said, It is not so done in our place, to give the younger before the first-born.</VERS>\r\n      <VERS vnumber=\"27\">Fulfil the week of this one, and we will give thee the other also for the service which thou shalt serve with me yet seven other years.</VERS>\r\n      <VERS vnumber=\"28\">And jacob did so, and fulfilled her week. And he gave him Rachel his daughter to wife.</VERS>\r\n      <VERS vnumber=\"29\">And Laban gave to Rachel his daughter Bilhah his handmaid to be her handmaid.</VERS>\r\n      <VERS vnumber=\"30\">And he went in also unto Rachel, and he loved also Rachel more than Leah, and served with him yet seven other years.</VERS>\r\n      <VERS vnumber=\"31\">And Jehovah saw that Leah was hated, and he opened her womb. But Rachel was barren.</VERS>\r\n      <VERS vnumber=\"32\">And Leah conceived, and bare a son, and she called his name Reuben. For she said, Because Jehovah hath looked upon my affliction. For now my husband will love me.</VERS>\r\n      <VERS vnumber=\"33\">And she conceived again, and bare a son: and said, Because Jehovah hath heard that I am hated, he hath therefore given me this [son] also. And she called his name Simeon.</VERS>\r\n      <VERS vnumber=\"34\">And she conceived again, and bare a son. And said, Now this time will my husband be joined unto me, because I have borne him three sons. Therefore was his name called Levi.</VERS>\r\n      <VERS vnumber=\"35\">And she conceived again, and bare a son. And she said, This time will I praise Jehovah. Therefore she called his name Judah. And she left off bearing.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"30\">\r\n      <VERS vnumber=\"1\">And when Rachel saw that she bare Jacob no children, Rachel envied her sister; and she said unto Jacob, Give me children, or else I die.</VERS>\r\n      <VERS vnumber=\"2\">And 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?</VERS>\r\n      <VERS vnumber=\"3\">And she said, Behold, my maid Bilhah, go in unto her; that she may bear upon my knees, and I also may obtain children by her.</VERS>\r\n      <VERS vnumber=\"4\">And she gave him Bilhah her handmaid to wife: and Jacob went in unto her.</VERS>\r\n      <VERS vnumber=\"5\">And Bilhah conceived, and bare Jacob a son.</VERS>\r\n      <VERS vnumber=\"6\">And Rachel said, God hath judged me, and hath also heard my voice, and hath given me a son: therefore called she his name Dan.</VERS>\r\n      <VERS vnumber=\"7\">And Bilhah Rachel`s handmaid conceived again, and bare Jacob a second son.</VERS>\r\n      <VERS vnumber=\"8\">And Rachel said, With mighty wrestlings have I wrestled with my sister, and have prevailed: and she called his name Naphtali.</VERS>\r\n      <VERS vnumber=\"9\">When Leah saw that she had left off bearing, she took Zilpah her handmaid, and gave her to Jacob to wife.</VERS>\r\n      <VERS vnumber=\"10\">And Zilpah Leah`s handmaid bare Jacob a son.</VERS>\r\n      <VERS vnumber=\"11\">And Leah said, Fortunate! and she called his name Gad.</VERS>\r\n      <VERS vnumber=\"12\">And Zilpah Leah`s handmaid bare Jacob a second son.</VERS>\r\n      <VERS vnumber=\"13\">And Leah said, Happy am I! for the daughters will call me happy: and she called his name Asher.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And she said unto her, Is it a small matter that thou hast taken away 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.</VERS>\r\n      <VERS vnumber=\"16\">And Jacob came from the field in the evening, and Leah went out to meet him, and said, Thou must come in unto me; for I have surely hired thee with my son`s mandrakes. And he lay with her that night.</VERS>\r\n      <VERS vnumber=\"17\">And God hearkened unto Leah, and she conceived, and bare Jacob a fifth son.</VERS>\r\n      <VERS vnumber=\"18\">And Leah said, God hath given me my hire, because I gave my handmaid to my husband: and she called his name Issachar.</VERS>\r\n      <VERS vnumber=\"19\">And Leah conceived again, and bare a sixth son to Jacob.</VERS>\r\n      <VERS vnumber=\"20\">And Leah said, God hath endowed me with a good dowry; now will my husband dwell with me, because I have borne him six sons: and she called his name Zebulun.</VERS>\r\n      <VERS vnumber=\"21\">And afterwards she bare a daughter, and called her name Dinah.</VERS>\r\n      <VERS vnumber=\"22\">And God remembered Rachel, and God hearkened to her, and opened her womb.</VERS>\r\n      <VERS vnumber=\"23\">And she conceived, and bare a son: and said, God hath taken away my reproach:</VERS>\r\n      <VERS vnumber=\"24\">and she called his name Joseph, saying, Jehovah add to me another son.</VERS>\r\n      <VERS vnumber=\"25\">And it came to pass, when Rachel had borne Joseph, that Jacob said unto Laban, Send me away, that I may go unto mine own place, and to my country.</VERS>\r\n      <VERS vnumber=\"26\">Give me my wives and my children for whom I have served thee, and let me go: for thou knowest my service wherewith I have served thee.</VERS>\r\n      <VERS vnumber=\"27\">And Laban said unto him, If now I have found favor in thine eyes, [tarry]: [for] I have divined that Jehovah hath blessed me for thy sake.</VERS>\r\n      <VERS vnumber=\"28\">And he said, Appoint me thy wages, and I will give it.</VERS>\r\n      <VERS vnumber=\"29\">And he said unto him, Thou knowest how I have served thee, and how thy cattle have fared with me.</VERS>\r\n      <VERS vnumber=\"30\">For it was little which thou hadst before I came, and it hath increased unto a multitude; and Jehovah hath blessed thee whithersoever I turned: and now when shall I provide for mine own house also?</VERS>\r\n      <VERS vnumber=\"31\">And he said, What shall I give thee? And Jacob said, Thou shalt not give me aught: if thou wilt do this thing for me, I will again feed thy flock and keep it.</VERS>\r\n      <VERS vnumber=\"32\">I will pass through all thy flock to-day, removing from thence every speckled and spotted one, and every black one among the sheep, and the spotted and speckled among the goats: and [of such] shall be my hire.</VERS>\r\n      <VERS vnumber=\"33\">So shall my righteousness answer for me hereafter, when thou shalt come concerning my hire that is before thee: every one that is not speckled and spotted among the goats, and black among the sheep, that [if found] with me, shall be counted stolen.</VERS>\r\n      <VERS vnumber=\"34\">And Laban said, Behold, I would it might be according to thy word.</VERS>\r\n      <VERS vnumber=\"35\">And he removed that day the he-goats that were ringstreaked and spotted, and all the she-goats that were speckled and spotted, every one that had white in it, and all the black ones among the sheep, and gave them into the hand of his sons;</VERS>\r\n      <VERS vnumber=\"36\">and he set three days` journey betwixt himself and Jacob: and Jacob fed the rest of Laban`s flocks.</VERS>\r\n      <VERS vnumber=\"37\">And Jacob took him rods of fresh poplar, and of the almond and of the plane-tree. And peeled white streaks in them, and made the white appear which was in the rods.</VERS>\r\n      <VERS vnumber=\"38\">And he set the rods which he had peeled over against the flocks in the gutters in the watering-troughs where the flocks came to drink; and they conceived when they came to drink.</VERS>\r\n      <VERS vnumber=\"39\">And the flocks conceived before the rods, and the flocks brought forth ringstreaked, speckled, and spotted.</VERS>\r\n      <VERS vnumber=\"40\">And Jacob separated the lambs, and set the faces of the flocks toward the ringstreaked and all the black in the flock of Laban: and he put his own droves apart, and put them not unto Laban`s flock.</VERS>\r\n      <VERS vnumber=\"41\">And it came to pass, whensoever the stronger of the flock did conceive, that Jacob laid the rods before the eyes of the flock in the gutters, that they might conceive among the rods;</VERS>\r\n      <VERS vnumber=\"42\">but when the flock were feeble, he put them not in: so the feebler were Laban`s, and the stronger Jacob`s.</VERS>\r\n      <VERS vnumber=\"43\">And the man increased exceedingly, and had large flocks, and maid-servants and men-servants, and camels and asses.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"31\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And Jacob beheld the countenance of Laban, and, behold, it was not toward him as beforetime.</VERS>\r\n      <VERS vnumber=\"3\">And Jehovah said unto Jacob, Return unto the land of thy fathers, and to thy kindred; and I will be with thee.</VERS>\r\n      <VERS vnumber=\"4\">And Jacob sent and called Rachel and Leah to the field unto his flock,</VERS>\r\n      <VERS vnumber=\"5\">and said unto them, I see your father`s countenance, that it is not toward me as beforetime; but the God of my father hath been with me.</VERS>\r\n      <VERS vnumber=\"6\">And ye know that will all my power I have served your father.</VERS>\r\n      <VERS vnumber=\"7\">And your father hath deceived me, and changed my wages ten times; but God suffered him not to hurt me.</VERS>\r\n      <VERS vnumber=\"8\">If he said thus, The speckled shall be thy wages; then all the flock bare speckled: and if he said thus, The ringstreaked shall be thy wages; then bare all the flock ringstreaked.</VERS>\r\n      <VERS vnumber=\"9\">Thus God hath taken away the cattle of your father, and given them to me.</VERS>\r\n      <VERS vnumber=\"10\">And it came to pass at the time that the flock conceive, that I lifted up mine eyes, and saw in a dream, and, behold, the he-goats which leaped upon the flock were ringstreaked, speckled, and grizzled.</VERS>\r\n      <VERS vnumber=\"11\">And the angel of God said unto me in the dream, Jacob: and I said, Here am I.</VERS>\r\n      <VERS vnumber=\"12\">And he said, Lift up now thine eyes, and see, all the he-goats which leap upon the flock are ringstreaked, speckled, and grizzled: for I have seen all that Laban doeth unto thee.</VERS>\r\n      <VERS vnumber=\"13\">I am the God of Beth-el, where thou anointedst a pillar, where thou vowedst a vow unto me: now arise, get thee out from this land, and return unto the land of thy nativity.</VERS>\r\n      <VERS vnumber=\"14\">And Rachel and Leah answered and said unto him, Is there yet any portion or inheritance for us in our father`s house?</VERS>\r\n      <VERS vnumber=\"15\">Are we not accounted by him as foreigners? for he hath sold us, and hath also quite devoured our money.</VERS>\r\n      <VERS vnumber=\"16\">For all the riches which God hath taken away from our father, that is ours and our children`s: now then, whatsoever God hath said unto thee, do.</VERS>\r\n      <VERS vnumber=\"17\">Then Jacob rose up, and set his sons and his wives upon the camels;</VERS>\r\n      <VERS vnumber=\"18\">and he carried away all his cattle, and all his substance which he had gathered, the cattle of his getting, which he had gathered in Paddan-aram, to go to Isaac his father unto the land of Canaan.</VERS>\r\n      <VERS vnumber=\"19\">Now Laban was gone to shear his sheep: and Rachel stole the teraphim that were her father`s.</VERS>\r\n      <VERS vnumber=\"20\">And Jacob stole away unawares to Laban the Syrian, in that he told him not that he fled.</VERS>\r\n      <VERS vnumber=\"21\">So he fled with all that he had; and he rose up, and passed over the River, and set his face toward the mountain of Gilead.</VERS>\r\n      <VERS vnumber=\"22\">And it was told Laban on the third day that Jacob was fled.</VERS>\r\n      <VERS vnumber=\"23\">And he took his brethren with him, and pursued after him seven days` journey; and he overtook him in the mountain of Gilead.</VERS>\r\n      <VERS vnumber=\"24\">And God came to Laban the Syrian in a dream of the night, and said unto him, Take heed to thyself that thou speak not to Jacob either good or bad.</VERS>\r\n      <VERS vnumber=\"25\">And Laban came up with Jacob. Now Jacob had pitched his tent in the mountain: and Laban with his brethren encamped in the mountain of Gilead.</VERS>\r\n      <VERS vnumber=\"26\">And Laban said to Jacob, What hast thou done, that thou hast stolen away unawares to me, and carried away my daughters as captives of the sword?</VERS>\r\n      <VERS vnumber=\"27\">Wherefore didst thou flee 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;</VERS>\r\n      <VERS vnumber=\"28\">and didst not suffer me to kiss my sons and my daughters? now hast thou done foolishly.</VERS>\r\n      <VERS vnumber=\"29\">It is in the power of my hand to do you hurt: but the God of your father spake unto me yesternight, saying, Take heed to thyself that thou speak not to Jacob either good or bad.</VERS>\r\n      <VERS vnumber=\"30\">And now, [though] thou wouldest needs be gone, because thou sore longedst after thy father`s house, [yet] wherefore hast thou stolen my gods?</VERS>\r\n      <VERS vnumber=\"31\">And Jacob answered and said to Laban, Because I was afraid: for I said, Lest thou shouldest take thy daughters from me by force.</VERS>\r\n      <VERS vnumber=\"32\">With whomsoever thou findest thy gods, he shall 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.</VERS>\r\n      <VERS vnumber=\"33\">And Laban went into Jacob`s tent, and into Leah`s tent, and into the tent of the two maid-servants; but he found them not. And he went out of Leah`s tent, and entered into Rachel`s tent.</VERS>\r\n      <VERS vnumber=\"34\">Now Rachel had taken the teraphim, and put them in the camel`s saddle, and sat upon them. And Laban felt about all the tent, but found them not.</VERS>\r\n      <VERS vnumber=\"35\">And she said to her father, Let not my lord be angry that I cannot rise up before thee; for the manner of women is upon me. And he searched, but found not the teraphim.</VERS>\r\n      <VERS vnumber=\"36\">And 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 hotly pursued after me?</VERS>\r\n      <VERS vnumber=\"37\">Whereas thou hast felt about 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 two.</VERS>\r\n      <VERS vnumber=\"38\">These twenty years have I been with thee; thy ewes and thy she-goats have not cast their young, and the rams of thy flocks have I not eaten.</VERS>\r\n      <VERS vnumber=\"39\">That 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.</VERS>\r\n      <VERS vnumber=\"40\">Thus I was; in the day the drought consumed me, and the frost by night; and my sleep fled from mine eyes.</VERS>\r\n      <VERS vnumber=\"41\">These twenty years have I been in thy house; I served thee fourteen years for thy two daughters, and six years for thy flock: and thou hast changed my wages ten times.</VERS>\r\n      <VERS vnumber=\"42\">Except the God of my father, the God of Abraham, and the Fear of Isaac, had been with me, surely now hadst thou sent me away empty. God hath seen mine affliction and the labor of my hands, and rebuked thee yesternight.</VERS>\r\n      <VERS vnumber=\"43\">And Laban answered and said unto Jacob, The daughters are my daughters, and the children are my children, and the flocks are my flocks, and all that thou seest is mine: and what can I do this day unto these my daughters, or unto their children whom they have borne?</VERS>\r\n      <VERS vnumber=\"44\">And now come, let us make a covenant, I and thou; and let it be for a witness between me and thee.</VERS>\r\n      <VERS vnumber=\"45\">And Jacob took a stone, and set it up for a pillar.</VERS>\r\n      <VERS vnumber=\"46\">And Jacob said unto his brethren, Gather stones; and they took stones, and made a heap: and they did eat there by the heap.</VERS>\r\n      <VERS vnumber=\"47\">And Laban called it Jegar-saha-dutha: but Jacob called it Galeed.</VERS>\r\n      <VERS vnumber=\"48\">And Laban said, This heap is witness between me and thee this day. Therefore was the name of it called Galeed:</VERS>\r\n      <VERS vnumber=\"49\">and Mizpah, for he said, Jehovah watch between me and thee, when we are absent one from another.</VERS>\r\n      <VERS vnumber=\"50\">If thou shalt afflict my daughters, and if thou shalt take wives besides my daughters, no man is with us; see, God is witness betwixt me and thee.</VERS>\r\n      <VERS vnumber=\"51\">And Laban said to Jacob, Behold this heap, and behold the pillar, which I have set betwixt me and thee.</VERS>\r\n      <VERS vnumber=\"52\">This heap be witness, and the 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.</VERS>\r\n      <VERS vnumber=\"53\">The 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.</VERS>\r\n      <VERS vnumber=\"54\">And Jacob offered a sacrifice in the mountain, and called his brethren to eat bread: and they did eat bread, and tarried all night in the mountain.</VERS>\r\n      <VERS vnumber=\"55\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"32\">\r\n      <VERS vnumber=\"1\">And Jacob went on his way, and the angels of God met him.</VERS>\r\n      <VERS vnumber=\"2\">And Jacob said when he saw them, This is God`s host: and he called the name of that place Mahanaim.</VERS>\r\n      <VERS vnumber=\"3\">And Jacob sent messengers before him to Esau his brother unto the land of Seir, the field of Edom.</VERS>\r\n      <VERS vnumber=\"4\">And he commanded them, saying, Thus shall ye say unto my lord Esau: Thus saith thy servant Jacob, I have sojourned with Laban, and stayed until now:</VERS>\r\n      <VERS vnumber=\"5\">and I have oxen, and asses, [and] flocks, and men-servants, and maid-servants: and I have sent to tell my lord, that I may find favor in thy sight.</VERS>\r\n      <VERS vnumber=\"6\">And the messengers returned to Jacob, saying, We came to thy brother Esau, and moreover he cometh to meet thee, and four hundred men with him.</VERS>\r\n      <VERS vnumber=\"7\">Then Jacob was greatly afraid and was distressed: and he divided the people that were with him, and the flocks, and the herds, and the camels, into two companies;</VERS>\r\n      <VERS vnumber=\"8\">and he said, If Esau come to the one company, and smite it, then the company which is left shall escape.</VERS>\r\n      <VERS vnumber=\"9\">And Jacob said, O God of my father Abraham, and God of my father Isaac, O Jehovah, who saidst unto me, Return unto thy country, and to thy kindred, and I will do thee good:</VERS>\r\n      <VERS vnumber=\"10\">I am not worthy of the least of all the lovingkindnesses, and of all the truth, which thou hast showed unto thy servant; for with my staff I passed over this Jordan; and now I am become two companies.</VERS>\r\n      <VERS vnumber=\"11\">Deliver me, I pray thee, from the hand of my brother, from the hand of Esau: for I fear him, lest he come and smite me, the mother with the children.</VERS>\r\n      <VERS vnumber=\"12\">And thou saidst, I will surely do thee good, and make thy seed as the sand of the sea, which cannot be numbered for multitude.</VERS>\r\n      <VERS vnumber=\"13\">And he lodged there that night, and took of that which he had with him a present for Esau his brother:</VERS>\r\n      <VERS vnumber=\"14\">two hundred she-goats and twenty he-goats, two hundred ewes and twenty rams,</VERS>\r\n      <VERS vnumber=\"15\">thirty milch camels and their colts, forty cows and ten bulls, twenty she-asses and ten foals.</VERS>\r\n      <VERS vnumber=\"16\">And he delivered them into the hand of his servants, every drove by itself, and said unto his servants, Pass over before me, and put a space betwixt drove and drove.</VERS>\r\n      <VERS vnumber=\"17\">And 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?</VERS>\r\n      <VERS vnumber=\"18\">then thou shalt say [They are] thy servant Jacob`s; it is a present sent unto my lord Esau: and, behold, he also is behind us.</VERS>\r\n      <VERS vnumber=\"19\">And he commanded also the second, and the third, and all that followed the droves, saying, On this manner shall ye speak unto Esau, when ye find him;</VERS>\r\n      <VERS vnumber=\"20\">and ye shall say, 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 me.</VERS>\r\n      <VERS vnumber=\"21\">So the present passed over before him: and he himself lodged that night in the company.</VERS>\r\n      <VERS vnumber=\"22\">And he rose up that night, and took his two wives, and his two handmaids, and his eleven children, and passed over the ford of the Jabbok.</VERS>\r\n      <VERS vnumber=\"23\">And he took them, and sent them over the stream, and sent over that which he had.</VERS>\r\n      <VERS vnumber=\"24\">And Jacob was left alone; and there wrestled a man with him until the breaking of the day.</VERS>\r\n      <VERS vnumber=\"25\">And when he saw that he prevailed not against him, he touched the hollow of his thigh; and the hollow of Jacob`s thigh was strained, as he wrestled with him.</VERS>\r\n      <VERS vnumber=\"26\">And he said, Let me go, for the day breaketh. And he said, I will not let thee go, except thou bless me.</VERS>\r\n      <VERS vnumber=\"27\">And he said unto him, What is thy name? And he said, Jacob.</VERS>\r\n      <VERS vnumber=\"28\">And he said, Thy name shall be called no more Jacob, but Israel: for thou hast striven with God and with men, and hast prevailed.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">And Jacob called the name of the place Peniel: for, [said he], I have seen God face to face, and my life is preserved.</VERS>\r\n      <VERS vnumber=\"31\">And the sun rose upon him as he passed over Penuel, and he limped upon his thigh.</VERS>\r\n      <VERS vnumber=\"32\">Therefore the children of Israel eat not the sinew of the hip which is upon the hollow of the thigh, unto this day: because he touched the hollow of Jacob`s thigh in the sinew of the hip.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"33\">\r\n      <VERS vnumber=\"1\">And Jacob lifted up his eyes, and looked, and, behold, Esau was coming, and with him four hundred men. And he divided the children unto Leah, and unto Rachel, and unto the two handmaids.</VERS>\r\n      <VERS vnumber=\"2\">And he put the handmaids and their children foremost, and Leah and her children after, and Rachel and Joseph hindermost.</VERS>\r\n      <VERS vnumber=\"3\">And he himself passed over before them, and bowed himself to the ground seven times, until he came near to his brother.</VERS>\r\n      <VERS vnumber=\"4\">And Esau ran to meet him, and embraced him, and fell on his neck, and kissed him: and they wept.</VERS>\r\n      <VERS vnumber=\"5\">And he lifted up his eyes, and saw the women and the children; and said, Who are these with thee? And he said, The children whom God hath graciously given thy servant.</VERS>\r\n      <VERS vnumber=\"6\">Then the handmaids came near, they and their children, and they bowed themselves.</VERS>\r\n      <VERS vnumber=\"7\">And Leah also and her children came near, and bowed themselves: and after came Joseph near and Rachel, and they bowed themselves.</VERS>\r\n      <VERS vnumber=\"8\">And he said, What meanest thou by all this company which I met? And he said, To find favor in the sight of my lord.</VERS>\r\n      <VERS vnumber=\"9\">And Esau said, I have enough, my brother; let that which thou hast be thine.</VERS>\r\n      <VERS vnumber=\"10\">And Jacob said, Nay, I pray thee, if now I have found favor in thy sight, then receive my present at my hand; forasmuch as I have seen thy face, as one seeth the face of God, and thou wast pleased with me.</VERS>\r\n      <VERS vnumber=\"11\">Take, I pray thee, my gift 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.</VERS>\r\n      <VERS vnumber=\"12\">And he said, Let us take our journey, and let us go, and I will go before thee.</VERS>\r\n      <VERS vnumber=\"13\">And he said unto him, My lord knoweth that the children are tender, and that the flocks and herds with me have their young: and if they overdrive them one day, all the flocks will die.</VERS>\r\n      <VERS vnumber=\"14\">Let my lord, I pray thee, pass over before his servant: and I will lead on gently, according to the pace of the cattle that are before me and according to the pace of the children, until I come unto my lord unto Seir.</VERS>\r\n      <VERS vnumber=\"15\">And 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 favor in the sight of my lord.</VERS>\r\n      <VERS vnumber=\"16\">So Esau returned that day on his way unto Seir.</VERS>\r\n      <VERS vnumber=\"17\">And Jacob journeyed to Succoth, and built him a house, and made booths for his cattle: therefore the name of the place is called Succoth.</VERS>\r\n      <VERS vnumber=\"18\">And Jacob came in peace to the city of Shechem, which is in the land of Canaan, when he came from Paddan-aram; and encamped before the city.</VERS>\r\n      <VERS vnumber=\"19\">And he bought the parcel of ground, where he had spread his tent, at the hand of the children of Hamor, Shechem`s father, for a hundred pieces of money.</VERS>\r\n      <VERS vnumber=\"20\">And he erected there an altar, and called it El-elohe-israel.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"34\">\r\n      <VERS vnumber=\"1\">And Dinah the daughter of Leah, whom she bare unto Jacob, went out to see the daughters of the land.</VERS>\r\n      <VERS vnumber=\"2\">And Shechem the son of Hamor the Hivite, the prince of the land, saw her; And he took her, and lay with her, and humbled her.</VERS>\r\n      <VERS vnumber=\"3\">And his soul clave unto Dinah the daughter of Jacob, and he loved the damsel, and spake kindly unto the damsel.</VERS>\r\n      <VERS vnumber=\"4\">And Shechem spake unto his father Hamor, saying, Get me this damsel to wife.</VERS>\r\n      <VERS vnumber=\"5\">Now Jacob heard that he had defiled Dinah his daughter; and his sons were with his cattle in the field: and Jacob held his peace until they came.</VERS>\r\n      <VERS vnumber=\"6\">And Hamor the father of Shechem went out unto Jacob to commune with him.</VERS>\r\n      <VERS vnumber=\"7\">And the sons of Jacob came in from 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.</VERS>\r\n      <VERS vnumber=\"8\">And Hamor communed with them, saying, The soul of my son Shechem longeth for your daughter: I pray you, give her unto him to wife.</VERS>\r\n      <VERS vnumber=\"9\">And make ye marriages with us; give your daughters unto us, and take our daughters unto you.</VERS>\r\n      <VERS vnumber=\"10\">And ye shall dwell with us: and the land shall be before you; dwell and trade ye therein, and get you possessions therein.</VERS>\r\n      <VERS vnumber=\"11\">And Shechem said unto her father and unto her brethren, Let me find favor in your eyes, and what ye shall say unto me I will give.</VERS>\r\n      <VERS vnumber=\"12\">Ask 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.</VERS>\r\n      <VERS vnumber=\"13\">And the sons of Jacob answered Shechem and Hamor his father with guile, and spake, because he had defiled Dinah their sister,</VERS>\r\n      <VERS vnumber=\"14\">and said unto them, We cannot do this thing, to give our sister to one that is uncircumcised; for that were a reproach unto us.</VERS>\r\n      <VERS vnumber=\"15\">Only on this condition will we consent unto you: if ye will be as we are, that every male of you be circumcised;</VERS>\r\n      <VERS vnumber=\"16\">then 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.</VERS>\r\n      <VERS vnumber=\"17\">But if ye will not hearken unto us, to be circumcised; then will we take our daughter, and we will be gone.</VERS>\r\n      <VERS vnumber=\"18\">And their words pleased Hamor, and Shechem Hamor`s son.</VERS>\r\n      <VERS vnumber=\"19\">And the young man deferred not to do the thing, because he had delight in Jacob`s daughter: and he was honored above all the house of his father.</VERS>\r\n      <VERS vnumber=\"20\">And Hamor and Shechem his son came unto the gate of their city, and communed with the men of their city, saying,</VERS>\r\n      <VERS vnumber=\"21\">These men are peaceable with us; therefore let them dwell in the land, and trade therein; for, behold, the land is large enough for them; let us take their daughters to us for wives, and let us give them our daughters.</VERS>\r\n      <VERS vnumber=\"22\">Only on this condition will the men consent unto us to dwell with us, to become one people, if every male among us be circumcised, as they are circumcised.</VERS>\r\n      <VERS vnumber=\"23\">Shall not their cattle and their substance and all their beasts be ours? only let us consent unto them, and they will dwell with us.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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 unawares, and slew all the males.</VERS>\r\n      <VERS vnumber=\"26\">And they slew Hamor and Shechem his son with the edge of the sword, and took Dinah out of Shechem`s house, and went forth.</VERS>\r\n      <VERS vnumber=\"27\">The sons of Jacob came upon the slain, and plundered the city, because they had defiled their sister.</VERS>\r\n      <VERS vnumber=\"28\">They took their flocks and their herds and their asses, and that which was in the city, and that which was in the field;</VERS>\r\n      <VERS vnumber=\"29\">and all their wealth, and all their little ones and their wives, took they captive and made a prey, even all that was in the house.</VERS>\r\n      <VERS vnumber=\"30\">And Jacob said to Simeon and Levi, Ye have troubled me, to make me odious to the inhabitants of the land, among the Canaanites and the Perizzites: and, I being few in number, they will gather themselves together against me and smite me; and I shall be destroyed, I and my house.</VERS>\r\n      <VERS vnumber=\"31\">And they said, Should he deal with our sister as with a harlot?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"35\">\r\n      <VERS vnumber=\"1\">And God said unto Jacob, Arise, go up to Beth-el, and dwell there: and make there an altar unto God, who appeared unto thee when thou fleddest from the face of Esau thy brother.</VERS>\r\n      <VERS vnumber=\"2\">Then Jacob said unto his household, and to all that were with him, Put away the foreign gods that are among you, and purify yourselves, and change your garments:</VERS>\r\n      <VERS vnumber=\"3\">and let us arise, and go up to Beth-el; 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.</VERS>\r\n      <VERS vnumber=\"4\">And they gave unto Jacob all the foreign gods which were in their hand, and the rings which were in their ears; and Jacob hid them under the oak which was by Shechem.</VERS>\r\n      <VERS vnumber=\"5\">And they journeyed: and a terror of God was upon the cities that were round about them, and they did not pursue after the sons of Jacob.</VERS>\r\n      <VERS vnumber=\"6\">So Jacob came to Luz, which is in the land of Canaan (the same is Beth-el), he and all the people that were with him.</VERS>\r\n      <VERS vnumber=\"7\">And he built there an altar, and called the place El-beth-el; because there God was revealed unto him, when he fled from the face of his brother.</VERS>\r\n      <VERS vnumber=\"8\">And Deborah Rebekah`s nurse died, and she was buried below Beth-el under the oak: and the name of it was called Allon-bacuth.</VERS>\r\n      <VERS vnumber=\"9\">And God appeared unto Jacob again, when he came from Paddan-aram, and blessed him.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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;</VERS>\r\n      <VERS vnumber=\"12\">and the land which I gave unto Abraham and Isaac, to thee I will give it, and to thy seed after thee will I give the land.</VERS>\r\n      <VERS vnumber=\"13\">And God went up from him in the place where he spake with him.</VERS>\r\n      <VERS vnumber=\"14\">And Jacob set up a pillar in the place where he spake with him, a pillar of stone: and he poured out a drink-offering thereon, and poured oil thereon.</VERS>\r\n      <VERS vnumber=\"15\">And Jacob called the name of the place where God spake with him, Beth-el.</VERS>\r\n      <VERS vnumber=\"16\">And they journeyed from Beth-el; and there was still some distance to come to Ephrath: and Rachel travailed, and she had hard labor.</VERS>\r\n      <VERS vnumber=\"17\">And it came to pass, when she was in hard labor, that the midwife said unto her, Fear not; for now thou shalt have another son.</VERS>\r\n      <VERS vnumber=\"18\">And it came to pass, as her soul was departing (for she died), that she called his name Ben-oni: but his father called him Benjamin.</VERS>\r\n      <VERS vnumber=\"19\">And Rachel died, and was buried in the way to Ephrath (the same is Beth-lehem).</VERS>\r\n      <VERS vnumber=\"20\">And Jacob set up a pillar upon her grave: the same is the Pillar of Rachel`s grave unto this day.</VERS>\r\n      <VERS vnumber=\"21\">And Israel journeyed, and spread his tent beyond the tower of Eder.</VERS>\r\n      <VERS vnumber=\"22\">And it came to pass, while Israel dwelt in that land, that Reuben went and lay with Bilhah his father`s concubine: and Israel heard of it.     Now the sons of Jacob were twelve:</VERS>\r\n      <VERS vnumber=\"23\">The sons of Leah: Reuben, Jacob`s first-born, and Simeon, and Levi, and Judah, and Issachar, and Zebulun;</VERS>\r\n      <VERS vnumber=\"24\">the sons of Rachel: Joseph and Benjamin;</VERS>\r\n      <VERS vnumber=\"25\">and the sons of Bilhah, Rachel`s handmaid: Dan and Naphtali;</VERS>\r\n      <VERS vnumber=\"26\">and the sons of Zilpah, Leah`s handmaid: Gad and Asher: these are the sons of Jacob, that were born to him in Paddan-aram.</VERS>\r\n      <VERS vnumber=\"27\">And Jacob came unto Isaac his father to Mamre, to Kiriath-arba (the same is Hebron), where Abraham and Isaac sojourned.</VERS>\r\n      <VERS vnumber=\"28\">And the days of Isaac were a hundred and fourscore years.</VERS>\r\n      <VERS vnumber=\"29\">And Isaac gave up the ghost, and died, and was gathered unto his people, old and full of days: and Esau and Jacob his sons buried him.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"36\">\r\n      <VERS vnumber=\"1\">Now these are the generations of Esau (the same is Edom).</VERS>\r\n      <VERS vnumber=\"2\">Esau took his wives of the daughters of Canaan: Adah the daughter of Elon the Hittite, and Oholibamah the daughter of Anah, the daughter of Zibeon the Hivite,</VERS>\r\n      <VERS vnumber=\"3\">and Basemath Ishmael`s daughter, sister of Nebaioth.</VERS>\r\n      <VERS vnumber=\"4\">And Adah bare to Esau Eliphaz; and Basemath bare Reuel;</VERS>\r\n      <VERS vnumber=\"5\">and Oholibamah bare Jeush, and Jalam, and Korah: these are the sons of Esau, that were born unto him in the land of Canaan.</VERS>\r\n      <VERS vnumber=\"6\">And Esau took his wives, and his sons, and his daughters, and all the souls of his house, and his cattle, and all his beasts, and all his possessions, which he had gather in the land of Canaan; and went into a land away from his brother Jacob.</VERS>\r\n      <VERS vnumber=\"7\">For their substance was too great for them to dwell together; and the land of their sojournings could not bear them because of their cattle.</VERS>\r\n      <VERS vnumber=\"8\">And Esau dwelt in mount Seir: Esau is Edom.</VERS>\r\n      <VERS vnumber=\"9\">And these are the generations of Esau the father of the Edomites in mount Seir:</VERS>\r\n      <VERS vnumber=\"10\">these are the names of Esau`s sons: Eliphaz the son of Adah the wife of Esau, Reuel the son of Basemath the wife of Esau.</VERS>\r\n      <VERS vnumber=\"11\">And the sons of Eliphaz were Teman, Omar, Zepho, and Gatam, and Kenaz.</VERS>\r\n      <VERS vnumber=\"12\">And Timna was concubine to Eliphaz Esau`s son; and she bare to Eliphaz Amalek: these are the sons of Adah, Esau`s wife.</VERS>\r\n      <VERS vnumber=\"13\">And these are the sons of Reuel: Nahath, and Zerah, Shammah, and Mizzah: these were the sons of Basemath, Esau`s wife.</VERS>\r\n      <VERS vnumber=\"14\">And these were the sons of Oholibamah the daughter of Anah, the daughter of Zibeon, Esau`s wife: and she bare to Esau Jeush, and Jalam, and Korah.</VERS>\r\n      <VERS vnumber=\"15\">These are the chiefs of the sons of Esau: the sons of Eliphaz the first-born of Esau: chief Teman, chief Omar, chief Zepho, chief Kenaz,</VERS>\r\n      <VERS vnumber=\"16\">chief Korah, chief Gatam, chief Amalek: these are the chiefs that came of Eliphaz in the land of Edom; these are the sons of Adah.</VERS>\r\n      <VERS vnumber=\"17\">And these are the sons of Reuel, Esau`s son: chief Nahath, chief Zerah, chief Shammah, chief Mizzah: these are the chiefs that came of Reuel in the land of Edom; these are the sons of Basemath, Esau`s wife.</VERS>\r\n      <VERS vnumber=\"18\">And these are the sons of Oholibamah, Esau`s wife: chief Jeush, chief Jalam, chief Korah: these are the chiefs that came of Oholibamah the daughter of Anah, Esau`s wife.</VERS>\r\n      <VERS vnumber=\"19\">These are the sons of Esau, and these are their chiefs: the same is Edom.</VERS>\r\n      <VERS vnumber=\"20\">These are the sons of Seir the Horite, the inhabitants of the land: Lotan and Shobal and Zibeon and Anah,</VERS>\r\n      <VERS vnumber=\"21\">and Dishon and Ezer and Dishan: these are the chiefs that came of the Horites, the children of Seir in the land of Edom.</VERS>\r\n      <VERS vnumber=\"22\">And the children of Lotan were Hori and Heman. And Lotan`s sister was Timna.</VERS>\r\n      <VERS vnumber=\"23\">And these are the children of Shobal: Alvan and Manahath and Ebal, Shepho and Onam.</VERS>\r\n      <VERS vnumber=\"24\">And these are the children of Zibeon: Aiah and Anah; this is Anah who found the hot springs in the wilderness, as he fed the asses of Zibeon his father.</VERS>\r\n      <VERS vnumber=\"25\">And these are the children of Anah: Dishon and Oholibamah the daughter of Anah.</VERS>\r\n      <VERS vnumber=\"26\">And these are the children of Dishon: Hemdan and Eshban and Ithran and Cheran.</VERS>\r\n      <VERS vnumber=\"27\">These are the children of Ezer: Bilhan and Zaavan and Akan.</VERS>\r\n      <VERS vnumber=\"28\">These are the children of Dishan: Uz and Aran.</VERS>\r\n      <VERS vnumber=\"29\">These are the chiefs that came of the Horites: chief Lotan, chief Shobal, chief Zibeon, chief Anah,</VERS>\r\n      <VERS vnumber=\"30\">chief Dishon, chief Ezer, chief Dishan: these are the chiefs that came of the Horites, according to their chiefs in the land of Seir.</VERS>\r\n      <VERS vnumber=\"31\">And these are the kings that reigned in the land of Edom, before there reigned any king over the children of Israel.</VERS>\r\n      <VERS vnumber=\"32\">And Bela the son of Beor reigned in Edom; and the name of his city was Dinhabah.</VERS>\r\n      <VERS vnumber=\"33\">And Bela died, and Jobab the son of Zerah of Bozrah reigned in his stead.</VERS>\r\n      <VERS vnumber=\"34\">And Jobab died, and Husham of the land of the Temanites reigned in his stead.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">And Hadad died, and Samlah of Masrekah reigned in his stead.</VERS>\r\n      <VERS vnumber=\"37\">And Samlah died, and Shaul of Rehoboth by the River reigned in his stead.</VERS>\r\n      <VERS vnumber=\"38\">And Shaul died, and Baal-hanan the son of Achbor reigned in his stead.</VERS>\r\n      <VERS vnumber=\"39\">And Baal-hanan 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 Me-zahab.</VERS>\r\n      <VERS vnumber=\"40\">And these are the names of the chiefs that came of Esau, according to their families, after their places, by their names: chief Timna, chief Alvah, chief Jetheth,</VERS>\r\n      <VERS vnumber=\"41\">chief Oholibamah, chief Elah, chief Pinon,</VERS>\r\n      <VERS vnumber=\"42\">chief Kenaz, chief Teman, chief Mibzar,</VERS>\r\n      <VERS vnumber=\"43\">chief Magdiel, chief Iram: these are the chiefs of Edom, according to their habitations in the land of their possession. This is Esau, the father of the Edomites.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"37\">\r\n      <VERS vnumber=\"1\">And Jacob dwelt in the land of his father`s sojournings, in the land of Canaan.</VERS>\r\n      <VERS vnumber=\"2\">These are the generations of Jacob. Joseph, being seventeen years old, was feeding the flock with his brethren; and he was a lad with the sons of Bilhah, and with the sons of Zilpah, his father`s wives: and Joseph brought the evil report of them unto their father.</VERS>\r\n      <VERS vnumber=\"3\">Now 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 colors.</VERS>\r\n      <VERS vnumber=\"4\">And his brethren saw that their father loved him more than all his brethren; and they hated him, and could not speak peaceably unto him.</VERS>\r\n      <VERS vnumber=\"5\">And Joseph dreamed a dream, and he told it to his brethren: and they hated him yet the more.</VERS>\r\n      <VERS vnumber=\"6\">And he said unto them, Hear, I pray you, this dream which I have dreamed:</VERS>\r\n      <VERS vnumber=\"7\">for, behold, we were binding sheaves in the field, and, lo, my sheaf arose, and also stood upright; and, behold, your sheaves came round about, and made obeisance to my sheaf.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And he dreamed yet another dream, and told it to his brethren, and said, Behold, I have dreamed yet a dream: and, behold, the sun and the moon and eleven stars made obeisance to me.</VERS>\r\n      <VERS vnumber=\"10\">And 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?</VERS>\r\n      <VERS vnumber=\"11\">And his brethren envied him; but his father kept the saying in mind.</VERS>\r\n      <VERS vnumber=\"12\">And his brethren went to feed their father`s flock in Shechem.</VERS>\r\n      <VERS vnumber=\"13\">And Israel said unto Joseph, Are not thy brethren feeding the flock in Shechem? Come, and I will send thee unto them. And he said to him, Here am I.</VERS>\r\n      <VERS vnumber=\"14\">And he said to him, Go now, see whether it is well with thy brethren, and well with the flock; and bring me word again. So he sent him out of the vale of Hebron, and he came to Shechem.</VERS>\r\n      <VERS vnumber=\"15\">And a certain man found him, and, behold, he was wandering in the field: and the man asked him, saying, What seekest thou?</VERS>\r\n      <VERS vnumber=\"16\">And he said, I am seeking my brethren: tell me, I pray thee, where they are feeding [the flock].</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And they saw him afar off, and before he came near unto them, they conspired against him to slay him.</VERS>\r\n      <VERS vnumber=\"19\">And they said one to another, Behold, this dreamer cometh.</VERS>\r\n      <VERS vnumber=\"20\">Come now therefore, and let us slay him, and cast him into one of the pits, and we will say, And evil beast hath devoured him: and we shall see what will become of his dreams.</VERS>\r\n      <VERS vnumber=\"21\">And Reuben heard it, and delivered him out of their hand, and said, Let us not take his life.</VERS>\r\n      <VERS vnumber=\"22\">And Reuben said unto them, Shed no blood; cast him into this pit that is in the wilderness, but lay no hand upon him: that he might deliver him out of their hand, to restore him to his father.</VERS>\r\n      <VERS vnumber=\"23\">And it came to pass, when Joseph was come unto his brethren, that they stripped Joseph of his coat, the coat of many colors that was on him;</VERS>\r\n      <VERS vnumber=\"24\">and they took him, and cast him into the pit: and the pit was empty, there was no water in it.</VERS>\r\n      <VERS vnumber=\"25\">And they sat down to eat bread: and they lifted up their eyes and looked, and, behold, a caravan of Ishmaelites was coming from Gilead, with their camels bearing spicery and balm and myrrh, going to carry it down to Egypt.</VERS>\r\n      <VERS vnumber=\"26\">And Judah said unto his brethren, What profit is it if we slay our brother and conceal his blood?</VERS>\r\n      <VERS vnumber=\"27\">Come, and let us sell him to the Ishmaelites, and let not our hand be upon him; for he is our brother, our flesh. And his brethren hearkened unto him.</VERS>\r\n      <VERS vnumber=\"28\">And there passed by Midianites, merchantmen; and they drew and lifted up Joseph out of the pit, and sold Joseph to the Ishmaelites for twenty pieces of silver. And they brought Joseph into Egypt.</VERS>\r\n      <VERS vnumber=\"29\">And Reuben returned unto the pit; and, behold, Joseph was not in the pit; and he rent his clothes.</VERS>\r\n      <VERS vnumber=\"30\">And he returned unto his brethren, and said, The child is not; and I, whither shall I go?</VERS>\r\n      <VERS vnumber=\"31\">And they took Joseph`s coat, and killed a he-goat, and dipped the coat in the blood;</VERS>\r\n      <VERS vnumber=\"32\">and they sent the coat of many colors, and they brought it to their father, and said, This have we found: know now whether it is thy son`s coat or not.</VERS>\r\n      <VERS vnumber=\"33\">And he knew it, and said, It is my son`s coat: an evil beast hath devoured him; Joseph is without doubt torn in pieces.</VERS>\r\n      <VERS vnumber=\"34\">And Jacob rent his garments, and put sackcloth upon his loins, and mourned for his son many days.</VERS>\r\n      <VERS vnumber=\"35\">And 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 to Sheol to my son mourning. And his father wept for him.</VERS>\r\n      <VERS vnumber=\"36\">And the Midianites sold him into Egypt unto Potiphar, an officer of Pharaoh`s, the captain of the guard.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"38\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And Judah saw there a daughter of a certain Canaanite whose name was Shua. And he took her, and went in unto her.</VERS>\r\n      <VERS vnumber=\"3\">And she conceived, and bare a son; and he called his name Er.</VERS>\r\n      <VERS vnumber=\"4\">And she conceived again, and bare a son; and she called his name Onan.</VERS>\r\n      <VERS vnumber=\"5\">And she yet again bare a son, and called his name Shelah: and he was at Chezib, when she bare him.</VERS>\r\n      <VERS vnumber=\"6\">And Judah took a wife for Er his first-born, and her name was Tamar.</VERS>\r\n      <VERS vnumber=\"7\">And Er, Judah`s first-born, was wicked in the sight of Jehovah. And Jehovah slew him.</VERS>\r\n      <VERS vnumber=\"8\">And Judah said unto Onan, Go in unto thy brother`s wife, and perform the duty of a husband`s brother unto her, and raise up seed to thy brother.</VERS>\r\n      <VERS vnumber=\"9\">And Onan knew that the seed would 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 he should give seed to his brother.</VERS>\r\n      <VERS vnumber=\"10\">And the thing which he did was evil in the sight of Jehovah: and he slew him also.</VERS>\r\n      <VERS vnumber=\"11\">Then said Judah to Tamar his daughter-in-law, Remain a widow in thy father`s house, till Shelah my son be grown up; for he said, Lest he also die, like his brethren. And Tamar went and dwelt in her father`s house.</VERS>\r\n      <VERS vnumber=\"12\">And in process of time Shua`s daughter, the wife of Judah, died; and Judah was comforted, and went up unto his sheep-shearers to Timnah, he and his friend Hirah the Adullamite.</VERS>\r\n      <VERS vnumber=\"13\">And it was told Tamar, saying, Behold, thy father-in-law goeth up to Timnah to shear his sheep.</VERS>\r\n      <VERS vnumber=\"14\">And she put off from her the garments of her widowhood, and covered herself with her veil, and wrapped herself, and sat in the gate of Enaim, which is by the way to Timnah; for she saw that Shelah was grown up, and she was not given unto him to wife.</VERS>\r\n      <VERS vnumber=\"15\">When Judah saw her, he thought her to be a harlot; for she had covered her face.</VERS>\r\n      <VERS vnumber=\"16\">And he turned unto her by the way, and said, Come, 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?</VERS>\r\n      <VERS vnumber=\"17\">And he said, I will send thee a kid of the goats from the flock. And she said, Wilt thou give me a pledge, till thou send it?</VERS>\r\n      <VERS vnumber=\"18\">And he said, What pledge shall I give thee? And she said, Thy signet and thy cord, and thy staff that is in thy hand. And he gave them to her, and came in unto her, and she conceived by him.</VERS>\r\n      <VERS vnumber=\"19\">And she arose, and went away, and put off her veil from her, and put on the garments of her widowhood.</VERS>\r\n      <VERS vnumber=\"20\">And Judah sent the kid of the goats by the hand of his friend the Adullamite, to receive the pledge from the woman`s hand: but he found her not.</VERS>\r\n      <VERS vnumber=\"21\">Then he asked the men of her place, saying, Where is the prostitute, that was at Enaim by the wayside? And they said, There hath been no prostitute here.</VERS>\r\n      <VERS vnumber=\"22\">And he returned to Judah, and said, I have not found her; and also the men of the place said, There hath been no prostitute here.</VERS>\r\n      <VERS vnumber=\"23\">And Judah said, Let her take it to her, lest we be put to shame: behold, I sent this kid, and thou hast not found her.</VERS>\r\n      <VERS vnumber=\"24\">And it came to pass about three months after, that it was told Judah, saying, Tamar thy daughter-in-law hath played the harlot; and moreover, behold, she is with child by whoredom. And Judah said, Bring her forth, and let her be burnt.</VERS>\r\n      <VERS vnumber=\"25\">When 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 the cords, and the staff.</VERS>\r\n      <VERS vnumber=\"26\">And Judah acknowledged them, and said, She is more righteous than I; forasmuch as I gave her not to Shelah my son. And he knew her again no more.</VERS>\r\n      <VERS vnumber=\"27\">And it came to pass in the time of her travail, that, behold, twins were in her womb.</VERS>\r\n      <VERS vnumber=\"28\">And it came to pass, when she travailed, that one put out a hand: and the midwife took and bound upon his hand a scarlet thread, saying, This came out first.</VERS>\r\n      <VERS vnumber=\"29\">And it came to pass, as he drew back his hand, that, behold, his brother came out: and she said, Wherefore hast thou made a breach for thyself? Therefore his name was called Perez.</VERS>\r\n      <VERS vnumber=\"30\">And afterward came out his brother, that had the scarlet thread upon his hand: and his name was called Zerah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"39\">\r\n      <VERS vnumber=\"1\">And Joseph was brought down to Egypt; and Potiphar, an officer of Pharaoh`s, the captain of the guard, an Egyptian, bought him of the hand of the Ishmaelites, that had brought him down thither.</VERS>\r\n      <VERS vnumber=\"2\">And Jehovah was with Joseph, and he was a prosperous man; and he was in the house of his master the Egyptian.</VERS>\r\n      <VERS vnumber=\"3\">And his master saw that Jehovah was with him, and that Jehovah made all that he did to prosper in his hand.</VERS>\r\n      <VERS vnumber=\"4\">And Joseph found favor in his sight, and he ministered unto him: and he made him overseer over his house, and all that he had he put into his hand.</VERS>\r\n      <VERS vnumber=\"5\">And it came to pass from the time that he made him overseer in his house, and over all that he had, that Jehovah blessed the Egyptian`s house for Joseph`s sake; and the blessing of Jehovah was upon all that he had, in the house and in the field.</VERS>\r\n      <VERS vnumber=\"6\">And he left all that he had in Joseph`s hand; and he knew not aught [that was] with him, save the bread which he did eat. And Joseph was comely, and well-favored.</VERS>\r\n      <VERS vnumber=\"7\">And it came to pass after these things, that his master`s wife cast her eyes upon Joseph; and she said, Lie with me.</VERS>\r\n      <VERS vnumber=\"8\">But he refused, and said unto his master`s wife, Behold, my master knoweth not what is with me in the house, and he hath put all that he hath into my hand:</VERS>\r\n      <VERS vnumber=\"9\">he is not greater in this house than I; neither hath he kept back anything from me but thee, because thou art his wife: how then can I do this great wickedness, and sin against God?</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And it came to pass about this time, that he went into the house to do his work; and there was none of the men of the house there within.</VERS>\r\n      <VERS vnumber=\"12\">And she caught him by his garment, saying, Lie with me: and he left his garment in her hand, and fled, and got him out.</VERS>\r\n      <VERS vnumber=\"13\">And it came to pass, when she saw that he had left his garment in her hand, and was fled forth,</VERS>\r\n      <VERS vnumber=\"14\">that she called unto the men of her house, and spake unto them, saying, See, he hath brought in a Hebrew unto us to mock us: he came in unto me to lie with me, and I cried with a loud voice:</VERS>\r\n      <VERS vnumber=\"15\">and it came to pass, when he heard that I lifted up my voice and cried, that he left his garment by me, and fled, and got him out.</VERS>\r\n      <VERS vnumber=\"16\">And she laid up his garment by her, until his master came home.</VERS>\r\n      <VERS vnumber=\"17\">And she spake unto him according to these words, saying, The Hebrew servant, whom thou hast brought unto us, came in unto me to mock me:</VERS>\r\n      <VERS vnumber=\"18\">and it came to pass, as I lifted up my voice and cried, that he left his garment by me, and fled out.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And Joseph`s master took him, and put him into the prison, the place where the king`s prisoners were bound: and he was there in the prison.</VERS>\r\n      <VERS vnumber=\"21\">But Jehovah was with Joseph, and showed kindness unto him, and gave him favor in the sight of the keeper of the prison.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">The keeper of the prison looked not to anything that was under his hand, because Jehovah was with him; and that which he did, Jehovah made it prosper.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"40\">\r\n      <VERS vnumber=\"1\">And it came to pass after these things, that the butler of the king of Egypt and his baker offended their lord the king of Egypt.</VERS>\r\n      <VERS vnumber=\"2\">And Pharaoh was wroth against his two officers, against the chief of the butlers, and against the chief of the bakers.</VERS>\r\n      <VERS vnumber=\"3\">And he put them in ward in the house of the captain of the guard, into the prison, the place where Joseph was bound.</VERS>\r\n      <VERS vnumber=\"4\">And the captain of the guard charged Joseph with them, and he ministered unto them: and they continued a season in ward.</VERS>\r\n      <VERS vnumber=\"5\">And 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, who were bound in the prison.</VERS>\r\n      <VERS vnumber=\"6\">And Joseph came in unto them in the morning, and saw them, and, behold, they were sad.</VERS>\r\n      <VERS vnumber=\"7\">And he asked Pharaoh`s officers that were with him in ward in his master`s house, saying, Wherefore look ye so sad to-day?</VERS>\r\n      <VERS vnumber=\"8\">And they said unto him, We have dreamed a dream, and there is none that can interpret it. And Joseph said unto them, Do not interpretations belong to God? tell it me, I pray you.</VERS>\r\n      <VERS vnumber=\"9\">And the chief butler told his dream to Joseph, and said to him, In my dream, behold, a vine was before me;</VERS>\r\n      <VERS vnumber=\"10\">and in the vine were three branches: and it was as though it budded, [and] its blossoms shot forth; [and] the clusters thereof brought forth ripe grapes:</VERS>\r\n      <VERS vnumber=\"11\">and 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.</VERS>\r\n      <VERS vnumber=\"12\">And Joseph said unto him, This is the interpretation of it: the three branches are three days;</VERS>\r\n      <VERS vnumber=\"13\">within yet three days shall Pharaoh lift up thy head, and restore thee unto thine office: and thou shalt give Pharaoh`s cup into his hand, after the former manner when thou wast his butler.</VERS>\r\n      <VERS vnumber=\"14\">But have me in thy remembrance when it shall be well with thee, and show kindness, I pray thee, unto me, and make mention of me unto Pharaoh, and bring me out of this house:</VERS>\r\n      <VERS vnumber=\"15\">for 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.</VERS>\r\n      <VERS vnumber=\"16\">When the chief baker saw that the interpretation was good, he said unto Joseph, I also was in my dream, and, behold, three baskets of white bread were on my head:</VERS>\r\n      <VERS vnumber=\"17\">and in the uppermost basket there was of all manner of baked food for Pharaoh; and the birds did eat them out of the basket upon my head.</VERS>\r\n      <VERS vnumber=\"18\">And Joseph answered and said, This is the interpretation thereof: the three baskets are three days;</VERS>\r\n      <VERS vnumber=\"19\">within yet 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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 the head of the chief baker among his servants.</VERS>\r\n      <VERS vnumber=\"21\">And he restored the chief butler unto his butlership again; and he gave the cup into Pharaoh`s hand:</VERS>\r\n      <VERS vnumber=\"22\">but he hanged the chief baker: as Joseph had interpreted to them.</VERS>\r\n      <VERS vnumber=\"23\">Yet did not the chief butler remember Joseph, but forgat him.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"41\">\r\n      <VERS vnumber=\"1\">And it came to pass at the end of two full years, that Pharaoh dreamed: and, behold, he stood by the river.</VERS>\r\n      <VERS vnumber=\"2\">And, behold, there came up out of the river seven kine, well-favored and fat-fleshed; and they fed in the reed-grass.</VERS>\r\n      <VERS vnumber=\"3\">And, behold, seven other kine came up after them out of the river, ill-favored and lean-fleshed, and stood by the other kine upon the brink of the river.</VERS>\r\n      <VERS vnumber=\"4\">And the ill-favored and lean-fleshed kine did eat up the seven well-favored and fat kine. So Pharaoh awoke.</VERS>\r\n      <VERS vnumber=\"5\">And he slept and dreamed a second time: and, behold, seven ears of grain came up upon one stalk, rank and good.</VERS>\r\n      <VERS vnumber=\"6\">And, behold, seven ears, thin and blasted with the east wind, sprung up after them.</VERS>\r\n      <VERS vnumber=\"7\">And the thin ears swallowed up the seven rank and full ears. And Pharaoh awoke, and, behold, it was a dream.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">Then spake the chief butler unto Pharaoh, saying, I do remember my faults this day:</VERS>\r\n      <VERS vnumber=\"10\">Pharaoh was wroth with his servants, and put me in ward in the house of the captain of the guard, me and the chief baker:</VERS>\r\n      <VERS vnumber=\"11\">and we dreamed a dream in one night, I and he; we dreamed each man according to the interpretation of his dream.</VERS>\r\n      <VERS vnumber=\"12\">And there was with us there a young man, a 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.</VERS>\r\n      <VERS vnumber=\"13\">And it came to pass, as he interpreted to us, so it was; me he restored unto mine office, and him he hanged.</VERS>\r\n      <VERS vnumber=\"14\">Then 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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 when thou hearest a dream thou canst interpret it.</VERS>\r\n      <VERS vnumber=\"16\">And Joseph answered Pharaoh, saying, It is not in me: God will give Pharaoh an answer of peace.</VERS>\r\n      <VERS vnumber=\"17\">And Pharaoh spake unto Joseph, In my dream, behold, I stood upon the brink of the river:</VERS>\r\n      <VERS vnumber=\"18\">and, behold, there came up out of the river seven kine, fat-fleshed and well-favored: and they fed in the reed-grass:</VERS>\r\n      <VERS vnumber=\"19\">and, behold, seven other kine came up after them, poor and very ill-favored and lean-fleshed, such as I never saw in all the land of Egypt for badness:</VERS>\r\n      <VERS vnumber=\"20\">and the lean and ill-favored kine did eat up the first seven fat kine:</VERS>\r\n      <VERS vnumber=\"21\">and when they had eaten them up, it could not be known that they had eaten them; but they were still ill-favored, as at the beginning. So I awoke.</VERS>\r\n      <VERS vnumber=\"22\">And I saw in my dream, and, behold, seven ears came up upon one stalk, full and good:</VERS>\r\n      <VERS vnumber=\"23\">and, behold, seven ears, withered, thin, [and] blasted with the east wind, sprung up after them:</VERS>\r\n      <VERS vnumber=\"24\">and the thin ears swallowed up the seven good ears: and I told it unto the magicians; but there was none that could declare it to me.</VERS>\r\n      <VERS vnumber=\"25\">And Joseph said unto Pharaoh, The dream of Pharaoh is one: what God is about to do he hath declared unto Pharaoh.</VERS>\r\n      <VERS vnumber=\"26\">The seven good kine are seven years; and the seven good ears are seven years: the dream is one.</VERS>\r\n      <VERS vnumber=\"27\">And the seven lean and ill-favored kine that came up after them are seven years, and also the seven empty ears blasted with the east wind; they shall be seven years of famine.</VERS>\r\n      <VERS vnumber=\"28\">That is the thing which I spake unto Pharaoh: what God is about to do he hath showed unto Pharaoh.</VERS>\r\n      <VERS vnumber=\"29\">Behold, there come seven years of great plenty throughout all the land of Egypt:</VERS>\r\n      <VERS vnumber=\"30\">and 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;</VERS>\r\n      <VERS vnumber=\"31\">and the plenty shall not be known in the land by reason of that famine which followeth; for it shall be very grievous.</VERS>\r\n      <VERS vnumber=\"32\">And for that the dream was doubled unto Pharaoh, it is because the thing is established by God, and God will shortly bring it to pass.</VERS>\r\n      <VERS vnumber=\"33\">Now therefore let Pharaoh look out a man discreet and wise, and set him over the land of Egypt.</VERS>\r\n      <VERS vnumber=\"34\">Let Pharaoh do [this], and let him appoint overseers over the land, and take up the fifth part of the land of Egypt in the seven plenteous years.</VERS>\r\n      <VERS vnumber=\"35\">And let them gather all the food of these good years that come, and lay up grain under the hand of Pharaoh for food in the cities, and let them keep it.</VERS>\r\n      <VERS vnumber=\"36\">And the food shall be for a 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.</VERS>\r\n      <VERS vnumber=\"37\">And the thing was good in the eyes of Pharaoh, and in the eyes of all his servants.</VERS>\r\n      <VERS vnumber=\"38\">And Pharaoh said unto his servants, Can we find such a one as this, a man in whom the spirit of God is?</VERS>\r\n      <VERS vnumber=\"39\">And Pharaoh said unto Joseph, Forasmuch as God hath showed thee all of this, there is none so discreet and wise as thou:</VERS>\r\n      <VERS vnumber=\"40\">thou 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.</VERS>\r\n      <VERS vnumber=\"41\">And Pharaoh said unto Joseph, See, I have set thee over all the land of Egypt.</VERS>\r\n      <VERS vnumber=\"42\">And Pharaoh took off his signet 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;</VERS>\r\n      <VERS vnumber=\"43\">and he made him to ride in the second chariot which he had; and they cried before him, Bow the knee: and he set him over all the land of Egypt.</VERS>\r\n      <VERS vnumber=\"44\">And Pharaoh said unto Joseph, I am Pharaoh, and without thee shall no man lift up his hand or his foot in all the land of Egypt.</VERS>\r\n      <VERS vnumber=\"45\">And Pharaoh called Joseph`s name Zaphenath-paneah; and he gave him to wife Asenath, the daughter of Poti-phera priest of On. And Joseph went out over the land of Egypt.</VERS>\r\n      <VERS vnumber=\"46\">And 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.</VERS>\r\n      <VERS vnumber=\"47\">And in the seven plenteous years the earth brought forth by handfuls.</VERS>\r\n      <VERS vnumber=\"48\">And 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.</VERS>\r\n      <VERS vnumber=\"49\">And Joseph laid up grain as the sand of the sea, very much, until he left off numbering; for it was without number.</VERS>\r\n      <VERS vnumber=\"50\">And unto Joseph were born two sons before the year of famine came, whom Asenath, the daughter of Potiphera priest of On, bare unto him.</VERS>\r\n      <VERS vnumber=\"51\">And Joseph called the name of the first-born Manasseh: For, [said he], God hath made me forget all my toil, and all my father`s house.</VERS>\r\n      <VERS vnumber=\"52\">And the name of the second called he Ephraim: For God hath made me fruitful in the land of my affliction.</VERS>\r\n      <VERS vnumber=\"53\">And the seven years of plenty, that was in the land of Egypt, came to an end.</VERS>\r\n      <VERS vnumber=\"54\">And the seven years of famine began to come, according as Joseph had said: and there was famine in all lands; but in all the land of Egypt there was bread.</VERS>\r\n      <VERS vnumber=\"55\">And 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.</VERS>\r\n      <VERS vnumber=\"56\">And the famine was over all the face of the earth: and Joseph opened all the store-houses, and sold unto the Egyptians; and the famine was sore in the land of Egypt.</VERS>\r\n      <VERS vnumber=\"57\">And all countries came into Egypt to Joseph to buy grain, because the famine was sore in all the earth.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"42\">\r\n      <VERS vnumber=\"1\">Now Jacob saw that there was grain in Egypt, and Jacob said unto his sons, Why do ye look one upon another?</VERS>\r\n      <VERS vnumber=\"2\">And he said, Behold, I have heard that there is grain in Egypt: get you down thither, and buy for us from thence; that we may live, and not die.</VERS>\r\n      <VERS vnumber=\"3\">And Joseph`s ten brethren went down to buy grain from Egypt.</VERS>\r\n      <VERS vnumber=\"4\">But Benjamin, Joseph`s brother, Jacob sent not with his brethren; for he said, Lest Peradventure harm befall him.</VERS>\r\n      <VERS vnumber=\"5\">And the sons of Israel came to buy among those that came: for the famine was in the land of Canaan.</VERS>\r\n      <VERS vnumber=\"6\">And Joseph was the governor over the land; he it was that sold to all the people of the land. And Joseph`s brethren came, and bowed down themselves to him with their faces to the earth.</VERS>\r\n      <VERS vnumber=\"7\">And Joseph saw his brethren, and he knew them, but made himself strange unto them, and spake roughly with them; and he said unto them. Whence come ye? And they said, From the land of Canaan to buy food.</VERS>\r\n      <VERS vnumber=\"8\">And Joseph knew his brethren, but they knew not him.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And they said unto him, Nay, my lord, but to buy food are thy servants come.</VERS>\r\n      <VERS vnumber=\"11\">We are all one man`s sons; we are true men, thy servants are no spies.</VERS>\r\n      <VERS vnumber=\"12\">And he said unto them, Nay, but to see the nakedness of the land ye are come.</VERS>\r\n      <VERS vnumber=\"13\">And they said, We 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.</VERS>\r\n      <VERS vnumber=\"14\">And Joseph said unto them, That is it that I spake unto you, saying, Ye are spies:</VERS>\r\n      <VERS vnumber=\"15\">hereby ye shall be proved: by the life of Pharaoh ye shall not go forth hence, except your youngest brother come hither.</VERS>\r\n      <VERS vnumber=\"16\">Send one of you, and let him fetch your brother, and ye shall be bound, that your words may be proved, whether there be truth in you: or else by the life of Pharaoh surely ye are spies.</VERS>\r\n      <VERS vnumber=\"17\">And he put them all together into ward three days.</VERS>\r\n      <VERS vnumber=\"18\">And Joseph said unto them the third day, This do, and live: for I fear God:</VERS>\r\n      <VERS vnumber=\"19\">if ye be true men, let one of your brethren be bound in your prison-house; but go ye, carry grain for the famine of your houses:</VERS>\r\n      <VERS vnumber=\"20\">and bring your youngest brother unto me; so shall your words be verified, and ye shall not die. And they did so.</VERS>\r\n      <VERS vnumber=\"21\">And they said one to another, We are verily guilty concerning our brother, in that we saw the distress of his soul, when he besought us, and we would not hear; therefore is this distress come upon us.</VERS>\r\n      <VERS vnumber=\"22\">And Reuben answered them, saying, Spake I not unto you, saying, Do not sin against the child; and ye would not hear? therefore also, behold, his blood is required.</VERS>\r\n      <VERS vnumber=\"23\">And they knew not that Joseph understood them; for there was an interpreter between them.</VERS>\r\n      <VERS vnumber=\"24\">And he turned himself about from them, and wept; and he returned to them, and spake to them, and took Simeon from among them, and bound him before their eyes.</VERS>\r\n      <VERS vnumber=\"25\">Then Joseph commanded to fill their vessels with grain, and to restore every man`s money into his sack, and to give them provisions for the way: and thus was it done unto them.</VERS>\r\n      <VERS vnumber=\"26\">And they laded their asses with their grain, and departed thence.</VERS>\r\n      <VERS vnumber=\"27\">And as one of them opened his sack to give his ass provender in the lodging-place, he espied his money; and, behold, it was in the mouth of his sack.</VERS>\r\n      <VERS vnumber=\"28\">And he said unto his brethren, My money is restored; and, lo, it is even in my sack: and their heart failed them, and they turned trembling one to another, saying, What is this that God hath done unto us?</VERS>\r\n      <VERS vnumber=\"29\">And they came unto Jacob their father unto the land of Canaan, and told him all that had befallen them, saying,</VERS>\r\n      <VERS vnumber=\"30\">The man, the lord of the land, spake roughly with us, and took us for spies of the country.</VERS>\r\n      <VERS vnumber=\"31\">And we said unto him, We are true men; and we are no spies:</VERS>\r\n      <VERS vnumber=\"32\">we are twelve brethren, sons of our father; one is not, and the youngest is this day with our father in the land of Canaan.</VERS>\r\n      <VERS vnumber=\"33\">And the man, the lord of the land, said unto us, Hereby shall I know that ye are true men: leave one of your brethren with me, and take [grain for] the famine of your houses, and go your way;</VERS>\r\n      <VERS vnumber=\"34\">and 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 traffic in the land.</VERS>\r\n      <VERS vnumber=\"35\">And it came to pass as they emptied their sacks, that, behold, every man`s bundle of money was in his sack: and when they and their father saw their bundles of money, they were afraid.</VERS>\r\n      <VERS vnumber=\"36\">And 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.</VERS>\r\n      <VERS vnumber=\"37\">And 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.</VERS>\r\n      <VERS vnumber=\"38\">And he said, My son shall not go down with you; for his brother is dead, and he only is left: if harm befall him by the way in which ye go, then will ye bring down my gray hairs with sorrow to Sheol.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"43\">\r\n      <VERS vnumber=\"1\">And the famine was sore in the land.</VERS>\r\n      <VERS vnumber=\"2\">And it came to pass, when they had eaten up the grain which they had brought out of Egypt, their father said unto them, Go again, buy us a little food.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">If thou wilt send our brother with us, we will go down and buy thee food:</VERS>\r\n      <VERS vnumber=\"5\">but 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.</VERS>\r\n      <VERS vnumber=\"6\">And Israel said, Wherefore dealt ye so ill with me, as to tell the man whether ye had yet a brother?</VERS>\r\n      <VERS vnumber=\"7\">And they said, The man asked straitly concerning ourselves, and concerning 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 in any wise know that he would say, Bring your brother down?</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">I 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:</VERS>\r\n      <VERS vnumber=\"10\">for except we had lingered, surely we had now returned a second time.</VERS>\r\n      <VERS vnumber=\"11\">And their father Israel said unto them, If it be so now, do this: take of the choice fruits of the land in your vessels, and carry down the man a present, a little balm, and a little honey, spicery and myrrh, nuts, and almonds;</VERS>\r\n      <VERS vnumber=\"12\">and take double money in your hand; and the money that was returned in the mouth of your sacks carry again in your hand; peradventure it was an oversight:</VERS>\r\n      <VERS vnumber=\"13\">take also your brother, and arise, go again unto the man:</VERS>\r\n      <VERS vnumber=\"14\">and God Almighty give you mercy before the man, that he may release unto you your other brother and Benjamin. And if I be bereaved of my children, I am bereaved.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And when Joseph saw Benjamin with them, he said to the steward of his house, Bring the men into the house, and slay, and make ready; for the men shall dine with me at noon.</VERS>\r\n      <VERS vnumber=\"17\">And the man did as Joseph bade; and the man brought the men to Joseph`s house.</VERS>\r\n      <VERS vnumber=\"18\">And the men were afraid, because they were brought to 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.</VERS>\r\n      <VERS vnumber=\"19\">And they came near to the steward of Joseph`s house, and they spake unto him at the door of the house,</VERS>\r\n      <VERS vnumber=\"20\">and said, Oh, my lord, we came indeed down at the first time to buy food:</VERS>\r\n      <VERS vnumber=\"21\">and it came to pass, when we came to the lodging-place, 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.</VERS>\r\n      <VERS vnumber=\"22\">And other money have we brought down in our hand to buy food: we know not who put our money in our sacks.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And the man brought the men into Joseph`s house, and gave them water, and they washed their feet. And he gave their asses provender.</VERS>\r\n      <VERS vnumber=\"25\">And they made ready the present against Joseph`s coming at noon: for they heard that they should eat bread there.</VERS>\r\n      <VERS vnumber=\"26\">And when Joseph came home, they brought him the present which was in their hand into the house, and bowed down themselves to him to the earth.</VERS>\r\n      <VERS vnumber=\"27\">And he asked them of their welfare, and said, Is your father well, the old man of whom ye spake? Is he yet alive?</VERS>\r\n      <VERS vnumber=\"28\">And they said, Thy servant our father is well, he is yet alive. And they bowed the head, and made obeisance.</VERS>\r\n      <VERS vnumber=\"29\">And he lifted up his eyes, and saw Benjamin his brother, his mother`s son, and said, Is this your youngest brother, of whom ye spake unto me? And he said, God be gracious unto thee, my son.</VERS>\r\n      <VERS vnumber=\"30\">And Joseph made haste; for his heart yearned over his brother: and he sought where to weep; and he entered into his chamber, and wept there.</VERS>\r\n      <VERS vnumber=\"31\">And he washed his face, and came out; and he refrained himself, and said, Set on bread.</VERS>\r\n      <VERS vnumber=\"32\">And they set on for him by himself, and for them by themselves, and for the Egyptians, that did eat with him, by themselves: because the Egyptians might not eat bread with the Hebrews; for that is an abomination unto the Egyptians.</VERS>\r\n      <VERS vnumber=\"33\">And they sat before him, the first-born according to his birthright, and the youngest according to his youth: and the men marvelled one with another.</VERS>\r\n      <VERS vnumber=\"34\">And he took [and sent] messes unto them from before him: but Benjamin`s mess was five times so much as any of theirs. And they drank, and were merry with him.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"44\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And put my cup, the silver cup, in the sack`s mouth of the youngest, and his grain money. And he did according to the word that Joseph had spoken.</VERS>\r\n      <VERS vnumber=\"3\">As soon as the morning was light, the men were sent away, they and their asses.</VERS>\r\n      <VERS vnumber=\"4\">[And] when they were gone out of the city, and were 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?</VERS>\r\n      <VERS vnumber=\"5\">Is not this that in which my lord drinketh, and whereby he indeed divineth? ye have done evil in so doing.</VERS>\r\n      <VERS vnumber=\"6\">And he overtook them, and he spake unto them these words.</VERS>\r\n      <VERS vnumber=\"7\">And they said unto him, Wherefore speaketh my lord such words as these? Far be it from thy servants that they should do such a thing.</VERS>\r\n      <VERS vnumber=\"8\">Behold, 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?</VERS>\r\n      <VERS vnumber=\"9\">With whomsoever of thy servants it be found, let him die, and we also will be my lord`s bondmen.</VERS>\r\n      <VERS vnumber=\"10\">And he said, Now also let it be according unto your words: he with whom it is found shall be my bondman; and ye shall be blameless.</VERS>\r\n      <VERS vnumber=\"11\">Then they hasted, and took down every man his sack to the ground, and opened every man his sack.</VERS>\r\n      <VERS vnumber=\"12\">And he searched, [and] began at the eldest, and left off at the youngest: and the cup was found in Benjamin`s sack.</VERS>\r\n      <VERS vnumber=\"13\">Then they rent their clothes, and laded every man his ass, and returned to the city.</VERS>\r\n      <VERS vnumber=\"14\">And Judah and his brethren came to Joseph`s house; and he was yet there: and they fell before him on the ground.</VERS>\r\n      <VERS vnumber=\"15\">And Joseph said unto them, What deed is this that ye have done? know ye not that such a man as I can indeed divine?</VERS>\r\n      <VERS vnumber=\"16\">And 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 bondmen, both we, and he also in whose hand the cup is found.</VERS>\r\n      <VERS vnumber=\"17\">And he said, Far be it from me that I should do so: the man in whose hand the cup is found, he shall be my bondman; but as for you, get you up in peace unto your father.</VERS>\r\n      <VERS vnumber=\"18\">Then 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.</VERS>\r\n      <VERS vnumber=\"19\">My lord asked his servants, saying, Have ye a father, or a brother?</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And thou saidst unto thy servants, Bring him down unto me, that I may set mine eyes upon him.</VERS>\r\n      <VERS vnumber=\"22\">And we said unto my lord, The lad cannot leave his father: for if he should leave his father, his father would die.</VERS>\r\n      <VERS vnumber=\"23\">And thou saidst unto thy servants, Except your youngest brother come down with you, ye shall see my face no more.</VERS>\r\n      <VERS vnumber=\"24\">And it came to pass when we came up unto thy servant my father, we told him the words of my lord.</VERS>\r\n      <VERS vnumber=\"25\">And our father said, Go again, buy us a little food.</VERS>\r\n      <VERS vnumber=\"26\">And 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, expect our youngest brother be with us.</VERS>\r\n      <VERS vnumber=\"27\">And thy servant my father said unto us, Ye know that my wife bare me two sons:</VERS>\r\n      <VERS vnumber=\"28\">and the one went out from me, and I said, Surely he is torn in pieces; and I have not seen him since:</VERS>\r\n      <VERS vnumber=\"29\">and if ye take this one also from me, and harm befall him, ye will bring down my gray hairs with sorrow to Sheol.</VERS>\r\n      <VERS vnumber=\"30\">Now therefore when I come to thy servant my father, and the lad is not with us; seeing that his life is bound up in the lad`s life;</VERS>\r\n      <VERS vnumber=\"31\">it will come to pass, when he seeth that the lad is not [with us], that he will die: and thy servants will bring down the gray hairs of thy servant our father with sorrow to Sheol.</VERS>\r\n      <VERS vnumber=\"32\">For thy servant became surety for the lad unto my father, saying, If I bring him not unto thee, then shall I bear the blame to my father for ever.</VERS>\r\n      <VERS vnumber=\"33\">Now therefore, let thy servant, I pray thee, abide instead of the lad a bondman to my lord; and let the lad go up with his brethren.</VERS>\r\n      <VERS vnumber=\"34\">For how shall I go up to my father, if the lad be not with me? lest I see the evil that shall come on my father.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"45\">\r\n      <VERS vnumber=\"1\">Then Joseph could not refrain himself before all them that stood before 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.</VERS>\r\n      <VERS vnumber=\"2\">And he wept aloud: and the Egyptians heard, and the house of Pharaoh heard.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And now be not grieved, nor angry with yourselves, that ye sold me hither: for God did send me before you to preserve life.</VERS>\r\n      <VERS vnumber=\"6\">For these two years hath the famine been in the land: and there are yet five years, in which there shall be neither plowing nor harvest.</VERS>\r\n      <VERS vnumber=\"7\">And God sent me before you to preserve you a remnant in the earth, and to save you alive by a great deliverance.</VERS>\r\n      <VERS vnumber=\"8\">So 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 ruler over all the land of Egypt.</VERS>\r\n      <VERS vnumber=\"9\">Haste 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;</VERS>\r\n      <VERS vnumber=\"10\">and 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:</VERS>\r\n      <VERS vnumber=\"11\">and there will I nourish thee; for there are yet five years of famine; lest thou come to poverty, thou, and thy household, and all that thou hast.</VERS>\r\n      <VERS vnumber=\"12\">And, behold, your eyes see, and the eyes of my brother Benjamin, that it is my mouth that speaketh unto you.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And he fell upon his brother Benjamin`s neck, and wept; and Benjamin wept upon his neck.</VERS>\r\n      <VERS vnumber=\"15\">And he kissed all his brethren, and wept upon them: and after that his brethren talked with him.</VERS>\r\n      <VERS vnumber=\"16\">And the report thereof was heard in Pharaoh`s house, saying, Joseph`s brethren are come: and it pleased Pharaoh well, and his servants.</VERS>\r\n      <VERS vnumber=\"17\">And Pharaoh said unto Joseph, Say unto thy brethren, This do ye: lade your beasts, and go, get you unto the land of Canaan;</VERS>\r\n      <VERS vnumber=\"18\">and 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.</VERS>\r\n      <VERS vnumber=\"19\">Now 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.</VERS>\r\n      <VERS vnumber=\"20\">Also regard not your stuff; for the good of all the land of Egypt is yours.</VERS>\r\n      <VERS vnumber=\"21\">And the sons of Israel did so: and Joseph gave them wagons, according to the commandment of Pharaoh, and gave them provision for the way.</VERS>\r\n      <VERS vnumber=\"22\">To 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.</VERS>\r\n      <VERS vnumber=\"23\">And to his father he sent after this manner: ten asses laden with the good things of Egypt, and ten she-asses laden with grain and bread and provision for his father by the way.</VERS>\r\n      <VERS vnumber=\"24\">So he sent his brethren away, and they departed: and he said unto them, See that ye fall not out by the way.</VERS>\r\n      <VERS vnumber=\"25\">And they went up out of Egypt, and came into the land of Canaan unto Jacob their father.</VERS>\r\n      <VERS vnumber=\"26\">And they told him, saying, Joseph is yet alive, and he is ruler over all the land of Egypt. And his heart fainted, for he believed them not.</VERS>\r\n      <VERS vnumber=\"27\">And 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:</VERS>\r\n      <VERS vnumber=\"28\">and Israel said, It is enough; Joseph my son is yet alive: I will go and see him before I die.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"46\">\r\n      <VERS vnumber=\"1\">And Israel took his journey with all that he had, and came to Beer-sheba, and offered sacrifices unto the God of his father Isaac.</VERS>\r\n      <VERS vnumber=\"2\">And God spake unto Israel in the visions of the night, and said, Jacob, Jacob. And he said, Here am I.</VERS>\r\n      <VERS vnumber=\"3\">And 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:</VERS>\r\n      <VERS vnumber=\"4\">I 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.</VERS>\r\n      <VERS vnumber=\"5\">And Jacob rose up from Beer-sheba: 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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:</VERS>\r\n      <VERS vnumber=\"7\">his sons, and his sons` sons with him, his daughters, and his sons`s daughters, and all his seed brought he with him into Egypt.</VERS>\r\n      <VERS vnumber=\"8\">And these are the names of the children of Israel, who came into Egypt, Jacob and his sons: Reuben, Jacob`s first-born.</VERS>\r\n      <VERS vnumber=\"9\">And the sons of Reuben: Hanoch, and Pallu, and Hezron, and Carmi.</VERS>\r\n      <VERS vnumber=\"10\">And the sons of Simeon: Jemuel, and Jamin, and Ohad, and Jachin, and Zohar, and Shaul the son of a Canaanitish woman.</VERS>\r\n      <VERS vnumber=\"11\">And the sons of Levi: Gershon, Kohath, and Merari.</VERS>\r\n      <VERS vnumber=\"12\">And the sons of Judah: Er, and Onan, and Shelah, and Perez, and Zerah; but Er and Onan died in the land of Canaan. And the sons of Perez were Hezron and Hamul.</VERS>\r\n      <VERS vnumber=\"13\">And the sons of Issachar: Tola, and Puvah, and Iob, and Shimron.</VERS>\r\n      <VERS vnumber=\"14\">And the sons of Zebulun: Sered, and Elon, and Jahleel.</VERS>\r\n      <VERS vnumber=\"15\">These are the sons of Leah, whom she bare unto Jacob in Paddan-aram, with his daughter Dinah: all the souls of his sons and his daughters were thirty and three.</VERS>\r\n      <VERS vnumber=\"16\">And the sons of Gad: Ziphion, and Haggi, Shuni, and Ezbon, Eri, and Arodi, and Areli.</VERS>\r\n      <VERS vnumber=\"17\">And the sons of Asher: Imnah, and Ishvah, and Ishvi, and Beriah, and Serah their sister; and the sons of Beriah: Heber, and Malchiel.</VERS>\r\n      <VERS vnumber=\"18\">These are the sons of Zilpah, whom Laban gave to Leah his daughter; and these she bare unto Jacob, even sixteen souls.</VERS>\r\n      <VERS vnumber=\"19\">The sons of Rachel Jacob`s wife: Joseph and Benjamin.</VERS>\r\n      <VERS vnumber=\"20\">And unto Joseph in the land of Egypt were born Manasseh and Ephraim, whom Asenath, the daughter of Poti-phera priest of On, bare unto him.</VERS>\r\n      <VERS vnumber=\"21\">And the sons of Benjamin: Bela, and Becher, and Ashbel, Gera, and Naaman, Ehi, and Rosh, Muppim, and Huppim, and Ard.</VERS>\r\n      <VERS vnumber=\"22\">These are the sons of Rachel, who were born to Jacob: all the souls were fourteen.</VERS>\r\n      <VERS vnumber=\"23\">And the sons of Dan: Hushim.</VERS>\r\n      <VERS vnumber=\"24\">And the sons of Naphtali: Jahzeel, and Guni, and Jezer, and Shillem.</VERS>\r\n      <VERS vnumber=\"25\">These are the sons of Bilhah, whom Laban gave unto Rachel his daughter, and these she bare unto Jacob: all the souls were seven.</VERS>\r\n      <VERS vnumber=\"26\">All the souls that came with Jacob into Egypt, that came out of his loins, besides Jacob`s sons` wives, all the souls were threescore and six;</VERS>\r\n      <VERS vnumber=\"27\">and the sons of Joseph, who were born to him in Egypt, were two souls: all the souls of the house of Jacob, that came into Egypt, were threescore and ten.</VERS>\r\n      <VERS vnumber=\"28\">And he sent Judah before him unto Joseph, to show the way before him unto Goshen; and they came into the land of Goshen.</VERS>\r\n      <VERS vnumber=\"29\">And Joseph made ready his chariot, and went up to meet Israel his father, to Goshen; and he presented himself unto him, and fell on his neck, and wept on his neck a good while.</VERS>\r\n      <VERS vnumber=\"30\">And Israel said unto Joseph, Now let me die, since I have seen thy face, that thou art yet alive.</VERS>\r\n      <VERS vnumber=\"31\">And Joseph said unto his brethren, and unto his father`s house, I will go up, and tell Pharaoh, and will say unto him, My brethren, and my father`s house, who were in the land of Canaan, are come unto me;</VERS>\r\n      <VERS vnumber=\"32\">and the men are shepherds, for they have been keepers of cattle; and they have brought their flocks, and their herds, and all that they have.</VERS>\r\n      <VERS vnumber=\"33\">And it shall come to pass, when Pharaoh shall call you, and shall say, What is your occupation?</VERS>\r\n      <VERS vnumber=\"34\">that ye shall say, Thy servants have been keepers of cattle from our youth even until now, both we, and our fathers: that ye may dwell in the land of Goshen; for every shepherd is an abomination unto the Egyptians.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"47\">\r\n      <VERS vnumber=\"1\">Then Joseph went in 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.</VERS>\r\n      <VERS vnumber=\"2\">And from among his brethren he took five men, and presented them unto Pharaoh.</VERS>\r\n      <VERS vnumber=\"3\">And Pharaoh said unto his brethren, What is your occupation? And they said unto Pharaoh, Thy servants are shepherds, both we, and our fathers.</VERS>\r\n      <VERS vnumber=\"4\">And they said unto Pharaoh, To sojourn in the land are we come; for there is no pasture for thy servants` 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.</VERS>\r\n      <VERS vnumber=\"5\">And Pharaoh spake unto Joseph, saying, Thy father and thy brethren are come unto thee:</VERS>\r\n      <VERS vnumber=\"6\">the land of Egypt is before thee; in the best of the land make thy father and thy brethren to dwell; in the land of Goshen let them dwell: and if thou knowest any able men among them, then make them rulers over my cattle.</VERS>\r\n      <VERS vnumber=\"7\">And Joseph brought in Jacob his father, and set him before Pharaoh: and Jacob blessed Pharaoh.</VERS>\r\n      <VERS vnumber=\"8\">And Pharaoh said unto Jacob, How many are the days of the years of thy life?</VERS>\r\n      <VERS vnumber=\"9\">And Jacob said unto Pharaoh, The days of the years of my pilgrimage are a hundred and thirty years: few and evil have been the days of the years of my life, and they have not attained unto the days of the years of the life of my fathers in the days of their pilgrimage.</VERS>\r\n      <VERS vnumber=\"10\">And Jacob blessed Pharaoh, and went out from the presence of Pharaoh.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And Joseph nourished his father, and his brethren, and all his father`s household, with bread, according to their families.</VERS>\r\n      <VERS vnumber=\"13\">And there was no bread in all the land; for the famine was very sore, so that the land of Egypt and the land of Canaan fainted by reason of the famine.</VERS>\r\n      <VERS vnumber=\"14\">And Joseph gathered up all the money that was found in the land of Egypt, and in the land of Canaan, for the grain which they bought: and Joseph brought the money into Pharaoh`s house.</VERS>\r\n      <VERS vnumber=\"15\">And when the money was all spent 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 [our] money faileth.</VERS>\r\n      <VERS vnumber=\"16\">And Joseph said, Give your cattle; and I will give you for your cattle, if money fail.</VERS>\r\n      <VERS vnumber=\"17\">And they brought their cattle unto Joseph; and Joseph gave them bread in exchange for the horses, and for the flocks, and for the herds, and for the asses: and he fed them with bread in exchange for all their cattle for that year.</VERS>\r\n      <VERS vnumber=\"18\">And when that year was ended, they came unto him the second year, and said unto him, We will not hide from my lord, how that our money is all spent; and the herds of cattle are my lord`s; there is nought left in the sight of my lord, but our bodies, and our lands:</VERS>\r\n      <VERS vnumber=\"19\">wherefore should 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, and that the land be not desolate.</VERS>\r\n      <VERS vnumber=\"20\">So Joseph bought all the land of Egypt for Pharaoh; for the Egyptians sold every man his field, because the famine was sore upon them: and the land became Pharaoh`s.</VERS>\r\n      <VERS vnumber=\"21\">And as for the people, he removed them to the cities from one end of the border of Egypt even to the other end thereof.</VERS>\r\n      <VERS vnumber=\"22\">Only the land of the priests bought he not: for the priests had a portion from Pharaoh, and did eat their portion which Pharaoh gave them; wherefore they sold not their land.</VERS>\r\n      <VERS vnumber=\"23\">Then 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.</VERS>\r\n      <VERS vnumber=\"24\">And it shall come to pass at the ingatherings, that ye shall give a fifth 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.</VERS>\r\n      <VERS vnumber=\"25\">And they said, Thou hast saved our lives: let us find favor in the sight of my lord, and we will be Pharaoh`s servants.</VERS>\r\n      <VERS vnumber=\"26\">And Joseph made it a statute concerning the land of Egypt unto this day, that Pharaoh should have the fifth; only the land of the priests alone became not Pharaoh`s.</VERS>\r\n      <VERS vnumber=\"27\">And Israel dwelt in the land of Egypt, in the land of Goshen; and they gat them possessions therein, and were fruitful, and multiplied exceedingly.</VERS>\r\n      <VERS vnumber=\"28\">And Jacob lived in the land of Egypt seventeen years: so the days of Jacob, the years of his life, were a hundred forty and seven years.</VERS>\r\n      <VERS vnumber=\"29\">And the time drew near that Israel must die: and he called his son Joseph, and said unto him, If now I have found favor 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;</VERS>\r\n      <VERS vnumber=\"30\">but when I sleep with my fathers, thou shalt carry me out of Egypt, and bury me in their burying-place. And he said, I will do as thou hast said.</VERS>\r\n      <VERS vnumber=\"31\">And he said, Swear unto me: and he sware unto him. And Israel bowed himself upon the bed`s head.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"48\">\r\n      <VERS vnumber=\"1\">And it came to pass after these things, that one said to Joseph, Behold, thy father is sick: and he took with him his two sons, Manasseh and Ephraim.</VERS>\r\n      <VERS vnumber=\"2\">And one told Jacob, and said, Behold, thy son Joseph cometh unto thee: and Israel strengthened himself, and sat upon the bed.</VERS>\r\n      <VERS vnumber=\"3\">And Jacob said unto Joseph, God Almighty appeared unto me at Luz in the land of Canaan, and blessed me,</VERS>\r\n      <VERS vnumber=\"4\">and said unto me, Behold, I will make thee fruitful, and multiply thee, and I will make of thee a company of peoples, and will give this land to thy seed after thee for an everlasting possession.</VERS>\r\n      <VERS vnumber=\"5\">And now thy two sons, who were born unto thee in the land of Egypt before I came unto thee into Egypt, are mine; Ephraim and Manasseh, even as Reuben and Simeon, shall be mine.</VERS>\r\n      <VERS vnumber=\"6\">And thy issue, that thou begettest after them, shall be thine; they shall be called after the name of their brethren in their inheritance.</VERS>\r\n      <VERS vnumber=\"7\">And as for me, when I came from Paddan, Rachel died by me in the land of Canaan in the way, when there was still some distance to come unto Ephrath: and I buried her there in the way to Ephrath (the same is Beth-lehem).</VERS>\r\n      <VERS vnumber=\"8\">And Israel beheld Joseph`s sons, and said, Who are these?</VERS>\r\n      <VERS vnumber=\"9\">And Joseph said unto his father, They are my sons, whom God hath given me here. And he said, Bring them, I pray thee, unto me, and I will bless them.</VERS>\r\n      <VERS vnumber=\"10\">Now 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.</VERS>\r\n      <VERS vnumber=\"11\">And Israel said unto Joseph, I had not thought to see thy face: and, lo, God hath let me see thy seed also.</VERS>\r\n      <VERS vnumber=\"12\">And Joseph brought them out from between his knees; and he bowed himself with his face to the earth.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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 first-born.</VERS>\r\n      <VERS vnumber=\"15\">And he blessed Joseph, and said, The God before whom my fathers Abraham and Isaac did walk, the God who hath fed me all my life long unto this day,</VERS>\r\n      <VERS vnumber=\"16\">the angel who hath 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And Joseph said unto his father, Not so, my father; for this is the first-born; put thy right hand upon his head.</VERS>\r\n      <VERS vnumber=\"19\">And 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: howbeit his younger brother shall be greater than he, and his seed shall become a multitude of nations.</VERS>\r\n      <VERS vnumber=\"20\">And he blessed them that day, saying, In thee will Israel bless, saying, God make thee as Ephraim and as Manasseh: and he set Ephraim before Manasseh.</VERS>\r\n      <VERS vnumber=\"21\">And Israel said unto Joseph, Behold, I die: but God will be with you, and bring you again unto the land of your fathers.</VERS>\r\n      <VERS vnumber=\"22\">Moreover 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"49\">\r\n      <VERS vnumber=\"1\">And Jacob called unto his sons, and said: gather yourselves together, that I may tell you that which shall befall you in the latter days.</VERS>\r\n      <VERS vnumber=\"2\">Assemble yourselves, and hear, ye sons of Jacob; And hearken unto Israel your father.</VERS>\r\n      <VERS vnumber=\"3\">Reuben, thou art my first-born, my might, and the       beginning of my strength; The pre-eminence of dignity, and the pre-eminence of power.</VERS>\r\n      <VERS vnumber=\"4\">Boiling over as water, thou shalt not have the       pre-eminence; Because thou wentest up to thy father`s bed; Then defiledst thou it: he went up to my couch.</VERS>\r\n      <VERS vnumber=\"5\">Simeon and Levi are brethren; Weapons of violence are their swords.</VERS>\r\n      <VERS vnumber=\"6\">O my soul, come not thou into their council; Unto their assembly, my glory, be not thou united; For in their anger they slew a man, And in their self-will they hocked an ox.</VERS>\r\n      <VERS vnumber=\"7\">Cursed 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.</VERS>\r\n      <VERS vnumber=\"8\">Judah, thee shall thy brethren praise: Thy hand shall be on the neck of thine enemies; Thy father`s sons shall bow down before thee.</VERS>\r\n      <VERS vnumber=\"9\">Judah is a lion`s whelp; From the prey, my son, thou art gone up: He stooped down, he couched as a lion, And as a lioness; who shall rouse him up?</VERS>\r\n      <VERS vnumber=\"10\">The sceptre shall not depart from Judah, Nor the ruler`s staff from between his feet, Until Shiloh come: And unto him shall the obedience of the peoples be.</VERS>\r\n      <VERS vnumber=\"11\">Binding his foal unto the vine, And his ass`s colt unto the choice vine; He hath washed his garments in wine, And his vesture in the blood of grapes:</VERS>\r\n      <VERS vnumber=\"12\">His eyes shall be red with wine, And his teeth white with milk.</VERS>\r\n      <VERS vnumber=\"13\">Zebulun shall dwell at the haven of the sea; And he shall be for a haven of ships; And his border shall be upon Sidon.</VERS>\r\n      <VERS vnumber=\"14\">Issachar is a strong ass, Couching down between the sheepfolds:</VERS>\r\n      <VERS vnumber=\"15\">And he saw a resting-place that it was good, And the land that it was pleasant; And he bowed his shoulder to bear, And became a servant under taskwork.</VERS>\r\n      <VERS vnumber=\"16\">Dan shall judge his people, As one of the tribes of Israel.</VERS>\r\n      <VERS vnumber=\"17\">Dan shall be a serpent in the way, An adder in the path, That biteth the horse`s heels, So that his rider falleth backward.</VERS>\r\n      <VERS vnumber=\"18\">I have waited for thy salvation, O Jehovah.</VERS>\r\n      <VERS vnumber=\"19\">Gad, a troop shall press upon him; But he shall press upon their heel.</VERS>\r\n      <VERS vnumber=\"20\">Out of the Asher his bread shall be fat, And he shall yield royal dainties.</VERS>\r\n      <VERS vnumber=\"21\">Naphtali is a hind let loose: He giveth goodly words.</VERS>\r\n      <VERS vnumber=\"22\">Joseph is a fruitful bough, A fruitful bough by a fountain; His branches run over the wall.</VERS>\r\n      <VERS vnumber=\"23\">The archers have sorely grieved him, And shot at him, and persecute him:</VERS>\r\n      <VERS vnumber=\"24\">But his bow abode in strength, And the arms of his hands were made strong, By the hands of the Mighty One of Jacob, (From thence is the shepherd, the stone of Israel),</VERS>\r\n      <VERS vnumber=\"25\">Even 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 coucheth beneath, Blessings of the breasts, and of the womb.</VERS>\r\n      <VERS vnumber=\"26\">The 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.</VERS>\r\n      <VERS vnumber=\"27\">Benjamin is a wolf that raveneth: In the morning she shall devour the prey, And at even he shall divide the spoil.</VERS>\r\n      <VERS vnumber=\"28\">All 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.</VERS>\r\n      <VERS vnumber=\"29\">And 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,</VERS>\r\n      <VERS vnumber=\"30\">in the cave that is in the field of Machpelah, which is before Mamre, in the land of Canaan, which Abraham bought with the field from Ephron the Hittite for a possession of a burying-place.</VERS>\r\n      <VERS vnumber=\"31\">there they buried Abraham and Sarah his wife; there they buried Isaac and Rebekah his wife; and there I buried Leah:</VERS>\r\n      <VERS vnumber=\"32\">the field and the cave that is therein, which was purchased from the children of Heth.</VERS>\r\n      <VERS vnumber=\"33\">And when Jacob made an end of charging his sons, he gathered up his feet into the bed, and yielded up the ghost, and was gathered unto his people.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"50\">\r\n      <VERS vnumber=\"1\">And Joseph fell upon his father`s face, and wept upon him, and kissed him.</VERS>\r\n      <VERS vnumber=\"2\">And Joseph commanded his servants the physicians to embalm his father: and the physicians embalmed Israel.</VERS>\r\n      <VERS vnumber=\"3\">And forty days were fulfilled for him; for so are fulfilled the days of embalming: and the Egyptians wept for him three-score and ten days.</VERS>\r\n      <VERS vnumber=\"4\">And when the days of weeping for him were past, Joseph spake unto the house of Pharaoh, saying, If now I have found favor in your eyes, speak, I pray you, in the ears of Pharaoh, saying,</VERS>\r\n      <VERS vnumber=\"5\">My 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.</VERS>\r\n      <VERS vnumber=\"6\">And Pharaoh said, Go up, and bury thy father, according as he made thee swear.</VERS>\r\n      <VERS vnumber=\"7\">And 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,</VERS>\r\n      <VERS vnumber=\"8\">and 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.</VERS>\r\n      <VERS vnumber=\"9\">And there went up with him both chariots and horsemen: and it was a very great company.</VERS>\r\n      <VERS vnumber=\"10\">And they came to the threshing-floor of Atad, which is beyond the Jordan, and there they lamented with a very great and sore lamentation: and he made a mourning for his father seven days.</VERS>\r\n      <VERS vnumber=\"11\">And 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 Abel-mizraim, which is beyond the Jordan.</VERS>\r\n      <VERS vnumber=\"12\">And his sons did unto him according as he commanded them:</VERS>\r\n      <VERS vnumber=\"13\">for 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 burying-place, of Ephron the Hittite, before Mamre.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And when Joseph`s brethren saw that their father was dead, they said, It may be that Joseph will hate us, and will fully requite us all the evil which we did unto him.</VERS>\r\n      <VERS vnumber=\"16\">And they sent a message unto Joseph, saying, Thy father did command before he died, saying,</VERS>\r\n      <VERS vnumber=\"17\">So shall ye say unto Joseph, Forgive, I pray thee now, the transgression of thy brethren, and their sin, for that they did unto thee evil. And now, we pray thee, forgive the transgression of the servants of the God of thy father. And Joseph wept when they spake unto him.</VERS>\r\n      <VERS vnumber=\"18\">And his brethren also went and fell down before his face; and they said, Behold, we are thy servants.</VERS>\r\n      <VERS vnumber=\"19\">And Joseph said unto them, Fear not: for am I in the place of God?</VERS>\r\n      <VERS vnumber=\"20\">And as for you, ye meant evil against me; but God meant it for good, to bring to pass, as it is this day, to save much people alive.</VERS>\r\n      <VERS vnumber=\"21\">Now therefore fear ye not: I will nourish you, and your little ones. And he comforted them, and spake kindly unto them.</VERS>\r\n      <VERS vnumber=\"22\">And Joseph dwelt in Egypt, he, and his father`s house: and Joseph lived a hundred and ten years.</VERS>\r\n      <VERS vnumber=\"23\">And Joseph saw Ephraim`s children of the third generation: the children also of Machir the son of Manasseh were born upon Joseph`s knees.</VERS>\r\n      <VERS vnumber=\"24\">And Joseph said unto his brethren, I die; but God will surely visit you, and bring you up out of this land unto the land which he sware to Abraham, to Isaac, and to Jacob.</VERS>\r\n      <VERS vnumber=\"25\">And Joseph took an oath of the children of Israel, saying, God will surely visit you, and ye shall carry up my bones from hence.</VERS>\r\n      <VERS vnumber=\"26\">So Joseph died, being a hundred and ten years old: and they embalmed him, and he was put in a coffin in Egypt.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"2\" bname=\"Exodus\" bsname=\"Exod\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">Now these are the names of the sons of Israel, who came into Egypt (every man and his household came with Jacob):</VERS>\r\n      <VERS vnumber=\"2\">Reuben, Simeon, Levi, and Judah,</VERS>\r\n      <VERS vnumber=\"3\">Issachar, Zebulun, and Benjamin,</VERS>\r\n      <VERS vnumber=\"4\">Dan and Naphtali, Gad and Asher.</VERS>\r\n      <VERS vnumber=\"5\">And all the souls that came out of the loins of Jacob were seventy souls: and Joseph was in Egypt already.</VERS>\r\n      <VERS vnumber=\"6\">And Joseph died, and all his brethren, and all that generation.</VERS>\r\n      <VERS vnumber=\"7\">And the children of Israel were fruitful, and increased abundantly, and multiplied, and waxed exceeding mighty; and the land was filled with them.</VERS>\r\n      <VERS vnumber=\"8\">Now there arose a new king over Egypt, who knew not Joseph.</VERS>\r\n      <VERS vnumber=\"9\">And he said unto his people, Behold, the people of the children of Israel are more and mightier than we:</VERS>\r\n      <VERS vnumber=\"10\">come, let us deal wisely with them, lest they multiply, and it come to pass, that, when there falleth out any war, they also join themselves unto our enemies, and fight against us, and get them up out of the land.</VERS>\r\n      <VERS vnumber=\"11\">Therefore they did set over them taskmasters to afflict them with their burdens. And they built for Pharaoh store-cities, Pithom and Raamses.</VERS>\r\n      <VERS vnumber=\"12\">But the more they afflicted them, the more they multiplied and the more they spread abroad. And they were grieved because of the children of Israel.</VERS>\r\n      <VERS vnumber=\"13\">And the Egyptians made the children of Israel to serve with rigor:</VERS>\r\n      <VERS vnumber=\"14\">and they made their lives bitter with hard service, in mortar and in brick, and in all manner of service in the field, all their service, wherein they made them serve with rigor.</VERS>\r\n      <VERS vnumber=\"15\">And the king of Egypt spake to the Hebrew midwives, of whom the name of the one was Shiphrah, and the name of the other Puah:</VERS>\r\n      <VERS vnumber=\"16\">and he said, When ye do the office of a midwife to the Hebrew women, and see them upon the birth-stool; if it be a son, then ye shall kill him; but if it be a daughter, then she shall live.</VERS>\r\n      <VERS vnumber=\"17\">But the midwives feared God, and did not as the king of Egypt commanded them, but saved the men-children alive.</VERS>\r\n      <VERS vnumber=\"18\">And 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?</VERS>\r\n      <VERS vnumber=\"19\">And the midwives said unto Pharaoh, Because the Hebrew women are not as the Egyptian women; for they are lively, and are delivered ere the midwife come unto them.</VERS>\r\n      <VERS vnumber=\"20\">And God dealt well with the midwives: and the people multiplied, and waxed very mighty.</VERS>\r\n      <VERS vnumber=\"21\">And it came to pass, because the midwives feared God, that he made them households.</VERS>\r\n      <VERS vnumber=\"22\">And Pharaoh charged all his people, saying, Every son that is born ye shall cast into the river, and every daughter ye shall save alive.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">And there went a man of the house of Levi, and took to wife a daughter of Levi.</VERS>\r\n      <VERS vnumber=\"2\">And the woman conceived, and bare a son: and when she saw him that he was a goodly child, she hid him three months.</VERS>\r\n      <VERS vnumber=\"3\">And when she could not longer hide him, she took for him an ark of bulrushes, and daubed it with slime and with pitch; and she put the child therein, and laid it in the flags by the river`s brink.</VERS>\r\n      <VERS vnumber=\"4\">And his sister stood afar off, to know what would be done to him.</VERS>\r\n      <VERS vnumber=\"5\">And the daughter of Pharaoh came down to bathe at the river; and her maidens walked along by the river-side; and she saw the ark among the flags, and sent her handmaid to fetch it.</VERS>\r\n      <VERS vnumber=\"6\">And she opened it, and saw the child: and, behold, the babe wept. And she had compassion on him, and said, This is one of the Hebrews` children.</VERS>\r\n      <VERS vnumber=\"7\">Then said his sister to Pharaoh`s daughter, Shall I go and call thee a nurse of the Hebrew women, that she may nurse the child for thee?</VERS>\r\n      <VERS vnumber=\"8\">And Pharaoh`s daughter said to her, Go. And the maiden went and called the child`s mother.</VERS>\r\n      <VERS vnumber=\"9\">And Pharaoh`s daughter said unto her, Take this child away, and nurse it for me, and I will give thee thy wages. And the woman took the child, and nursed it.</VERS>\r\n      <VERS vnumber=\"10\">And the child grew, and she brought him unto Pharaoh`s daughter, and he became her son. And she called his name Moses, and said, Because I drew him out of the water.</VERS>\r\n      <VERS vnumber=\"11\">And it came to pass in those days, when Moses was grown up, that he went out unto his brethren, and looked on their burdens: and he saw an Egyptian smiting a Hebrew, one of his brethren.</VERS>\r\n      <VERS vnumber=\"12\">And he looked this way and that way, and when he saw that there was no man, he smote the Egyptian, and hid him in the sand.</VERS>\r\n      <VERS vnumber=\"13\">And he went out the second day, and, behold, two men of the Hebrews were striving together: and he said to him that did the wrong, Wherefore smitest thou thy fellow?</VERS>\r\n      <VERS vnumber=\"14\">And he said, Who made thee a prince and a judge over us? Thinkest thou to kill me, as thou killedst the Egyptian? And Moses feared, and said, Surely the thing is known.</VERS>\r\n      <VERS vnumber=\"15\">Now 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.</VERS>\r\n      <VERS vnumber=\"16\">Now the priest of Midian had seven daughters: and they came and drew water, and filled the troughs to water their father`s flock.</VERS>\r\n      <VERS vnumber=\"17\">And the shepherds came and drove them away; but Moses stood up and helped them, and watered their flock.</VERS>\r\n      <VERS vnumber=\"18\">And when they came to Reuel their father, he said, How is it that ye are come so soon to-day?</VERS>\r\n      <VERS vnumber=\"19\">And they said, An Egyptian delivered us out of the hand of the shepherds, and moreover he drew water for us, and watered the flock.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And Moses was content to dwell with the man: and he gave Moses Zipporah his daughter.</VERS>\r\n      <VERS vnumber=\"22\">And she bare a son, and he called his name Gershom; for he said, I have been a sojourner in a foreign land.</VERS>\r\n      <VERS vnumber=\"23\">And it came to pass in the course of those many days, 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.</VERS>\r\n      <VERS vnumber=\"24\">And God heard their groaning, and God remembered his covenant with Abraham, with Isaac, and with Jacob.</VERS>\r\n      <VERS vnumber=\"25\">And God saw the children of Israel, and God took knowledge [of them].</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Now Moses was keeping the flock of Jethro his father-in-law, the priest of Midian: and he led the flock to the back of the wilderness, and came to the mountain of God, unto Horeb.</VERS>\r\n      <VERS vnumber=\"2\">And the angel of Jehovah 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.</VERS>\r\n      <VERS vnumber=\"3\">And Moses said, I will turn aside now, and see this great sight, why the bush is not burnt.</VERS>\r\n      <VERS vnumber=\"4\">And when Jehovah 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.</VERS>\r\n      <VERS vnumber=\"5\">And he said, Draw not nigh hither: put off thy shoes from off thy feet, for the place whereon thou standest is holy ground.</VERS>\r\n      <VERS vnumber=\"6\">Moreover 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.</VERS>\r\n      <VERS vnumber=\"7\">And Jehovah said, I have surely seen the affliction of my people that are in Egypt, and have heard their cry by reason of their taskmasters; for I know their sorrows;</VERS>\r\n      <VERS vnumber=\"8\">and 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 Canaanite, and the Hittite, and the Amorite, and the Perizzite, and the Hivite, and the Jebusite.</VERS>\r\n      <VERS vnumber=\"9\">And now, behold, the cry of the children of Israel is come unto me: moreover I have seen the oppression wherewith the Egyptians oppress them.</VERS>\r\n      <VERS vnumber=\"10\">Come now therefore, and I will send thee unto Pharaoh, that thou mayest bring forth my people the children of Israel out of Egypt.</VERS>\r\n      <VERS vnumber=\"11\">And 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?</VERS>\r\n      <VERS vnumber=\"12\">And he said, Certainly I will be with thee; and this shall be the 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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?</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And God said moreover unto Moses, Thus shalt thou say unto the children of Israel, Jehovah, the 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 forever, and this is my memorial unto all generations.</VERS>\r\n      <VERS vnumber=\"16\">Go, and gather the elders of Israel together, and say unto them, Jehovah, the God of your fathers, the God of Abraham, of Isaac, and of Jacob, hath appeared unto me, saying, I have surely visited you, and [seen] that which is done to you in Egypt:</VERS>\r\n      <VERS vnumber=\"17\">and I have said, I will bring you up out of the affliction of Egypt unto the land of the Canaanite, and the Hittite, and the Amorite, and the Perizzite, and the Hivite, and the Jebusite, unto a land flowing with milk and honey.</VERS>\r\n      <VERS vnumber=\"18\">And 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, Jehovah, the God of the Hebrews, hath met with us: and now let us go, we pray thee, three days` journey into the wilderness, that we may sacrifice to Jehovah our God.</VERS>\r\n      <VERS vnumber=\"19\">And I know that the king of Egypt will not give you leave to go, no, not by a mighty hand.</VERS>\r\n      <VERS vnumber=\"20\">And I will put forth 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.</VERS>\r\n      <VERS vnumber=\"21\">And I will give this people favor in the sight of the Egyptians: and it shall come to pass, that, when ye go, ye shall not go empty.</VERS>\r\n      <VERS vnumber=\"22\">But every woman shall ask of her neighbor, 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 despoil the Egyptians.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">And Moses answered and said, But, behold, they will not believe me, nor hearken unto my voice; for they will say, Jehovah hath not appeared unto thee.</VERS>\r\n      <VERS vnumber=\"2\">And Jehovah said unto him, What is that in thy hand? And he said, A rod.</VERS>\r\n      <VERS vnumber=\"3\">And he said, Cast in on the ground. And he cast it on the ground, and it became a serpent; and Moses fled from before it.</VERS>\r\n      <VERS vnumber=\"4\">And Jehovah said unto Moses, Put forth thy hand, and take it by the tail: (and he put forth his hand, and laid hold of it, and it became a rod in his hand:)</VERS>\r\n      <VERS vnumber=\"5\">That they may believe that Jehovah, the God of their fathers, the God of Abraham, the God of Isaac, and the God of Jacob, hath appeared unto thee.</VERS>\r\n      <VERS vnumber=\"6\">And Jehovah said furthermore unto him, Put now thy hand into thy bosom. And he put his hand into his bosom: and when he took it out, behold, his hand was leprous, as [white as] snow.</VERS>\r\n      <VERS vnumber=\"7\">And he said, Put thy hand into thy bosom again. (And he put his hand into his bosom again; and when he took it out of his bosom, behold, it was turned again as his [other] flesh.)</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And it shall come to pass, if they will not believe even 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.</VERS>\r\n      <VERS vnumber=\"10\">And Moses said unto Jehovah, Oh, Lord, I am not eloquent, neither heretofore, nor since thou hast spoken unto thy servant; for I am slow of speech, and of a slow tongue.</VERS>\r\n      <VERS vnumber=\"11\">And Jehovah said unto him, Who hath made man`s mouth? Or who maketh [a man] dumb, or deaf, or seeing, or blind? Is it not I, Jehovah?</VERS>\r\n      <VERS vnumber=\"12\">Now therefore go, and I will be with thy mouth, and teach thee what thou shalt speak.</VERS>\r\n      <VERS vnumber=\"13\">And he said, Oh, Lord, send, I pray thee, by the hand of him whom thou wilt send.</VERS>\r\n      <VERS vnumber=\"14\">And the anger of Jehovah was kindled against Moses, and he said, Is there not Aaron thy brother the Levite? 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.</VERS>\r\n      <VERS vnumber=\"15\">And thou shalt speak unto him, and put the words in his mouth: and I will be with thy mouth, and with his mouth, and will teach you what ye shall do.</VERS>\r\n      <VERS vnumber=\"16\">And he shall be thy spokesman unto the people; and it shall come to pass, that he shall be to thee a mouth, and thou shalt be to him as God.</VERS>\r\n      <VERS vnumber=\"17\">And thou shalt take in thy hand this rod, wherewith thou shalt do the signs.</VERS>\r\n      <VERS vnumber=\"18\">And 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 that are in Egypt, and see whether they be yet alive. And Jethro said to Moses, Go in peace.</VERS>\r\n      <VERS vnumber=\"19\">And Jehovah said unto Moses in Midian, Go, return into Egypt; for all the men are dead that sought thy life.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And Jehovah said unto Moses, When thou goest back into Egypt, see that thou do before Pharaoh all the wonders which I have put in thy hand: but I will harden his heart and he will not let the people go.</VERS>\r\n      <VERS vnumber=\"22\">And thou shalt say unto Pharaoh, Thus saith Jehovah, Israel is my son, my first-born:</VERS>\r\n      <VERS vnumber=\"23\">and I have said unto thee, Let my son go, that he may serve me; and thou hast refused to let him go: behold, I will slay thy son, thy first-born.</VERS>\r\n      <VERS vnumber=\"24\">And it came to pass on the way at the lodging-place, that Jehovah met him, and sought to kill him.</VERS>\r\n      <VERS vnumber=\"25\">Then Zipporah took a flint, and cut off the foreskin of her son, and cast it at his feet; and she said, Surely a bridegroom of blood art thou to me.</VERS>\r\n      <VERS vnumber=\"26\">So he let him alone. Then she said, A bridegroom of blood [art thou], because of the circumcision.</VERS>\r\n      <VERS vnumber=\"27\">And Jehovah said to Aaron, Go into the wilderness to meet Moses. And he went, and met him in the mountain of God, and kissed him.</VERS>\r\n      <VERS vnumber=\"28\">And Moses told Aaron all the words of Jehovah wherewith he had sent him, and all the signs wherewith he had charged him.</VERS>\r\n      <VERS vnumber=\"29\">And Moses and Aaron went and gathered together all the elders of the children of Israel:</VERS>\r\n      <VERS vnumber=\"30\">and Aaron spake all the words which Jehovah had spoken unto Moses, and did the signs in the sight of the people.</VERS>\r\n      <VERS vnumber=\"31\">And the people believed: and when they heard that Jehovah had visited the children of Israel, and that he had seen their affliction, then they bowed their heads and worshipped.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">And afterward Moses and Aaron came, and said unto Pharaoh, Thus saith Jehovah, the God of Israel, Let my people go, that they may hold a feast unto me in the wilderness.</VERS>\r\n      <VERS vnumber=\"2\">And Pharaoh said, Who is Jehovah, that I should hearken unto his voice to let Israel go? I know not Jehovah, and moreover I will not let Israel go.</VERS>\r\n      <VERS vnumber=\"3\">And they said, The God of the Hebrews hath met with us: let us go, we pray thee, three days` journey into the wilderness, and sacrifice unto Jehovah our God, lest he fall upon us with pestilence, or with the sword.</VERS>\r\n      <VERS vnumber=\"4\">And the king of Egypt said unto them, Wherefore do ye, Moses and Aaron, loose the people from their works? get you unto your burdens.</VERS>\r\n      <VERS vnumber=\"5\">And Pharaoh said, Behold, the people of the land are now many, and ye make them rest from their burdens.</VERS>\r\n      <VERS vnumber=\"6\">And the same day Pharaoh commanded the taskmasters of the people, and their officers, saying,</VERS>\r\n      <VERS vnumber=\"7\">Ye shall no more give the people straw to make brick, as heretofore: let them go and gather straw for themselves.</VERS>\r\n      <VERS vnumber=\"8\">And the number of the bricks, which they did make heretofore, ye shall lay upon them; ye shall not diminish aught thereof: for they are idle; therefore they cry, saying, Let us go and sacrifice to our God.</VERS>\r\n      <VERS vnumber=\"9\">Let heavier work be laid upon the men, that they may labor therein; and let them not regard lying words.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">Go yourselves, get you straw where ye can find it: for nought of your work shall be diminished.</VERS>\r\n      <VERS vnumber=\"12\">So the people were scattered abroad throughout all the land of Egypt to gather stubble for straw.</VERS>\r\n      <VERS vnumber=\"13\">And the taskmasters were urgent saying, Fulfil your works, [your] daily tasks, as when there was straw.</VERS>\r\n      <VERS vnumber=\"14\">And the officers of the children of Israel, whom Pharaoh`s taskmasters had set over them, were beaten, and demanded, Wherefore have ye not fulfilled your task both yesterday and to-day, in making brick as heretofore?</VERS>\r\n      <VERS vnumber=\"15\">Then the officers of the children of Israel came and cried unto Pharaoh, saying, Wherefore dealest thou thus with thy servants?</VERS>\r\n      <VERS vnumber=\"16\">There is no straw given unto thy servants, and they say to us, Make brick: and, behold, thy servants are beaten; but the fault it in thine own people.</VERS>\r\n      <VERS vnumber=\"17\">But he said, Ye are idle, ye are idle: therefore ye say, Let us go and sacrifice to Jehovah.</VERS>\r\n      <VERS vnumber=\"18\">Go therefore now, and work; for there shall no straw be given you, yet shall ye deliver the number of bricks.</VERS>\r\n      <VERS vnumber=\"19\">And the officers of the children of Israel did see that they were in evil case, when it was said, Ye shall not diminish aught from your bricks, [your] daily tasks.</VERS>\r\n      <VERS vnumber=\"20\">And they met Moses and Aaron, who stood in the way, as they came forth from Pharaoh:</VERS>\r\n      <VERS vnumber=\"21\">and they said unto them, Jehovah look upon you, and judge: because ye have made our savor 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.</VERS>\r\n      <VERS vnumber=\"22\">And Moses returned unto Jehovah, and said, Lord, wherefore hast thou dealt ill with this people? why is it that thou hast sent me?</VERS>\r\n      <VERS vnumber=\"23\">For since I came to Pharaoh to speak in thy name, he hath dealt ill with this people; neither hast thou delivered thy people at all.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">And Jehovah said unto Moses, Now shalt thou see what I will do to Pharaoh: for by a strong hand shall he let them go, and by a strong hand shall he drive them out of his land.</VERS>\r\n      <VERS vnumber=\"2\">And God spake unto Moses, and said unto him, I am Jehovah:</VERS>\r\n      <VERS vnumber=\"3\">and I appeared unto Abraham, unto Isaac, and unto Jacob, as God Almighty; but by my name Jehovah I was not known to them.</VERS>\r\n      <VERS vnumber=\"4\">And I have also established my covenant with them, to give them the land of Canaan, the land of their sojournings, wherein they sojourned.</VERS>\r\n      <VERS vnumber=\"5\">And moreover I have heard the groaning of the children of Israel, whom the Egyptians keep in bondage; and I have remembered my covenant.</VERS>\r\n      <VERS vnumber=\"6\">Wherefore say unto the children of Israel, I am Jehovah, 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 an outstretched arm, and with great judgments:</VERS>\r\n      <VERS vnumber=\"7\">and I will take you to me for a people, and I will be to you a God; and ye shall know that I am Jehovah your God, who bringeth you out from under the burdens of the Egyptians.</VERS>\r\n      <VERS vnumber=\"8\">And I will bring you in unto the land which I sware to give to Abraham, to Isaac, and to Jacob; and I will give it you for a heritage: I am Jehovah.</VERS>\r\n      <VERS vnumber=\"9\">And Moses spake so unto the children of Israel: but they hearkened not unto Moses for anguish of spirit, and for cruel bondage.</VERS>\r\n      <VERS vnumber=\"10\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"11\">Go in, speak unto Pharaoh king of Egypt, that he let the children of Israel go out of his land.</VERS>\r\n      <VERS vnumber=\"12\">And Moses spake before Jehovah, saying, Behold, the children of Israel have not hearkened unto me; how then shall Pharaoh hear me, who am of uncircumcised lips?</VERS>\r\n      <VERS vnumber=\"13\">And Jehovah 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.</VERS>\r\n      <VERS vnumber=\"14\">These are the heads of their fathers` houses. The sons of Reuben the first-born of Israel: Hanoch, and Pallu, Hezron, and Carmi; these are the families of Reuben.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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 a hundred thirty and seven years.</VERS>\r\n      <VERS vnumber=\"17\">The sons of Gershon: Libni and Shimei, according to their families.</VERS>\r\n      <VERS vnumber=\"18\">And the sons of Kohath: Amram, and Izhar, and Hebron, and Uzziel; and the years of the life of Kohath were a hundred thirty and three years.</VERS>\r\n      <VERS vnumber=\"19\">And the sons of Merari: Mahli and Mushi. These are the families of the Levites according to their generations.</VERS>\r\n      <VERS vnumber=\"20\">And 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 a hundred and thirty and seven years.</VERS>\r\n      <VERS vnumber=\"21\">And the sons of Izhar: Korah, and Nepheg, and Zichri.</VERS>\r\n      <VERS vnumber=\"22\">And the sons of Uzziel: Mishael, and Elzaphan, and Sithri.</VERS>\r\n      <VERS vnumber=\"23\">And Aaron took him Elisheba, the daughter of Amminadab, the sister of Nahshon, to wife; and she bare him Nadab and Abihu, Eleazar and Ithamar.</VERS>\r\n      <VERS vnumber=\"24\">And the sons of Korah: Assir, and Elkanah, and Abiasaph; these are the families of the Korahites.</VERS>\r\n      <VERS vnumber=\"25\">And 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` [houses] of the Levites according to their families.</VERS>\r\n      <VERS vnumber=\"26\">These are that Aaron and Moses, to whom Jehovah said, Bring out the children of Israel from the land of Egypt according to their hosts.</VERS>\r\n      <VERS vnumber=\"27\">These are they that spake to Pharaoh king of Egypt, to bring out the children of Israel from Egypt: these are that Moses and Aaron.</VERS>\r\n      <VERS vnumber=\"28\">And it came to pass on the day when Jehovah spake unto Moses in the land of Egypt,</VERS>\r\n      <VERS vnumber=\"29\">that Jehovah spake unto Moses, saying, I am Jehovah: speak thou unto Pharaoh king of Egypt all that I speak unto thee.</VERS>\r\n      <VERS vnumber=\"30\">And Moses said before Jehovah, Behold, I am of uncircumcised lips, and how shall Pharaoh hearken unto me?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">And Jehovah said unto Moses, See, I have made thee as God to Pharaoh; and Aaron thy brother shall be thy prophet.</VERS>\r\n      <VERS vnumber=\"2\">Thou shalt speak all that I command thee; and Aaron thy brother shall speak unto Pharaoh, that he let the children of Israel go out of his land.</VERS>\r\n      <VERS vnumber=\"3\">And I will harden Pharaoh`s heart, and multiply my signs and my wonders in the land of Egypt.</VERS>\r\n      <VERS vnumber=\"4\">But Pharaoh will not hearken unto you, and I will lay my hand upon Egypt, and bring forth my hosts, my people the children of Israel, out of the land of Egypt by great judgments.</VERS>\r\n      <VERS vnumber=\"5\">And the Egyptians shall know that I am Jehovah, when I stretch forth my hand upon Egypt, and bring out the children of Israel from among them.</VERS>\r\n      <VERS vnumber=\"6\">And Moses and Aaron did so; as Jehovah commanded them, so did they.</VERS>\r\n      <VERS vnumber=\"7\">And Moses was fourscore years old, and Aaron fourscore and three years old, when they spake unto Pharaoh.</VERS>\r\n      <VERS vnumber=\"8\">And Jehovah spake unto Moses and unto Aaron, saying,</VERS>\r\n      <VERS vnumber=\"9\">When Pharaoh shall speak unto you, saying, Show a wonder for you; then thou shalt say unto Aaron, Take thy rod, and cast it down before Pharaoh, that it become a serpent.</VERS>\r\n      <VERS vnumber=\"10\">And Moses and Aaron went in unto Pharaoh, and they did so, as Jehovah had commanded: and Aaron cast down his rod before Pharaoh and before his servants, and it became a serpent.</VERS>\r\n      <VERS vnumber=\"11\">Then Pharaoh also called for the wise men and the sorcerers: and they also, the magicians of Egypt, did in like manner with their enchantments.</VERS>\r\n      <VERS vnumber=\"12\">For they cast down every man his rod, and they became serpents: but Aaron`s rod swallowed up their rods.</VERS>\r\n      <VERS vnumber=\"13\">And Pharaoh`s heart was hardened, and he hearkened not unto them; as Jehovah had spoken.</VERS>\r\n      <VERS vnumber=\"14\">And Jehovah said unto Moses, Pharaoh`s heart is stubborn, he refuseth to let the people go.</VERS>\r\n      <VERS vnumber=\"15\">Get thee unto Pharaoh in the morning; lo, he goeth out unto the water; and thou shalt stand by the river`s brink to meet him; and the rod which was turned to a serpent shalt thou take in thy hand.</VERS>\r\n      <VERS vnumber=\"16\">And thou shalt say unto him, Jehovah, the 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 hast not hearkened.</VERS>\r\n      <VERS vnumber=\"17\">Thus saith Jehovah, In this thou shalt know that I am Jehovah: behold, I will smite with the rod that is in my hand upon the waters which are in the river, and they shall be turned to blood.</VERS>\r\n      <VERS vnumber=\"18\">And the fish that are in the river shall die, and the river shall become foul; and the Egyptians shall loathe to drink water from the river.</VERS>\r\n      <VERS vnumber=\"19\">And Jehovah said unto Moses, Say unto Aaron, Take thy rod, and stretch out thy hand over the waters of Egypt, over their rivers, over their streams, and over their pools, and over all their ponds of water, that they may become blood; and there shall be blood throughout all the land of Egypt, both in vessels of wood and in vessels of stone.</VERS>\r\n      <VERS vnumber=\"20\">And Moses and Aaron did so, as Jehovah 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.</VERS>\r\n      <VERS vnumber=\"21\">And the fish that were in the river died; and the river became foul, and the Egyptians could not drink water from the river; and the blood was throughout all the land of Egypt.</VERS>\r\n      <VERS vnumber=\"22\">And the magicians of Egypt did in like manner with their enchantments: and Pharaoh`s heart was hardened, and he hearkened not unto them; as Jehovah had spoken.</VERS>\r\n      <VERS vnumber=\"23\">And Pharaoh turned and went into his house, neither did he lay even this to heart.</VERS>\r\n      <VERS vnumber=\"24\">And all the Egyptians digged round about the river for water to drink; for they could not drink of the water of the river.</VERS>\r\n      <VERS vnumber=\"25\">And seven days were fulfilled, after that Jehovah had smitten the river.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">And Jehovah spake unto Moses, Go in unto Pharaoh, and say unto him, Thus saith Jehovah, Let my people go, that they may serve me.</VERS>\r\n      <VERS vnumber=\"2\">And if thou refuse to let them go, behold, I will smite all thy borders with frogs:</VERS>\r\n      <VERS vnumber=\"3\">and the river shall swarm with frogs, which shall go up and come into thy 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 kneading-troughs:</VERS>\r\n      <VERS vnumber=\"4\">and the frogs shall come up both upon thee, and upon thy people, and upon all thy servants.</VERS>\r\n      <VERS vnumber=\"5\">And Jehovah said unto Moses, Say unto Aaron, Stretch forth thy hand with thy rod over the rivers, over the streams, and over the pools, and cause frogs to come up upon the land of Egypt.</VERS>\r\n      <VERS vnumber=\"6\">And Aaron stretched out his hand over the waters of Egypt; and the frogs came up, and covered the land of Egypt.</VERS>\r\n      <VERS vnumber=\"7\">And the magicians did in like manner with their enchantments, and brought up frogs upon the land of Egypt.</VERS>\r\n      <VERS vnumber=\"8\">Then Pharaoh called for Moses and Aaron, and said, Entreat Jehovah, that he take away the frogs from me, and from my people; and I will let the people go, that they may sacrifice unto Jehovah.</VERS>\r\n      <VERS vnumber=\"9\">And Moses said unto Pharaoh, Have thou this glory over me: against what time shall I entreat for thee, and for thy servants, and for thy people, that the frogs be destroyed from thee and thy houses, and remain in the river only?</VERS>\r\n      <VERS vnumber=\"10\">And he said, Against to-morrow. And he said, Be it according to thy word; that thou mayest know that there is none like unto Jehovah our God.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And Moses and Aaron went out from Pharaoh: and Moses cried unto Jehovah concerning the frogs which he had brought upon Pharaoh.</VERS>\r\n      <VERS vnumber=\"13\">And Jehovah did according to the word of Moses; and the frogs died out of the houses, out of the courts, and out of the fields.</VERS>\r\n      <VERS vnumber=\"14\">And they gathered them together in heaps; and the land stank.</VERS>\r\n      <VERS vnumber=\"15\">But when Pharaoh saw that there was respite, he hardened his heart, and hearkened not unto them, as Jehovah had spoken.</VERS>\r\n      <VERS vnumber=\"16\">And Jehovah said unto Moses, Say unto Aaron, Stretch out thy rod, and smite the dust of the earth, that is may become lice throughout all the land of Egypt.</VERS>\r\n      <VERS vnumber=\"17\">And they did so; and Aaron stretched out his hand with his rod, and smote the dust of the earth, and there were lice upon man, and upon beast; all the dust of the earth became lice throughout all the land of Egypt.</VERS>\r\n      <VERS vnumber=\"18\">And the magicians did so with their enchantments to bring forth lice, but they could not: and there were lice upon man, and upon beast.</VERS>\r\n      <VERS vnumber=\"19\">Then the magicians said unto Pharaoh, This is the finger of God: and Pharaoh`s heart was hardened, and he hearkened not unto them; as Jehovah had spoken.</VERS>\r\n      <VERS vnumber=\"20\">And Jehovah 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 Jehovah, Let my people go, that they may serve me.</VERS>\r\n      <VERS vnumber=\"21\">Else, if thou wilt not let my people go, behold, I will send swarms of flies upon thee, and upon they 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.</VERS>\r\n      <VERS vnumber=\"22\">And I will set apart 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 Jehovah in the midst of the earth.</VERS>\r\n      <VERS vnumber=\"23\">And I will put a division between my people and thy people: by to-morrow shall this sign be.</VERS>\r\n      <VERS vnumber=\"24\">And Jehovah did so; and there came grievous swarms of flies into the house of Pharaoh, and into his servants` houses: and in all the land of Egypt the land was corrupted by reason of the swarms of flies.</VERS>\r\n      <VERS vnumber=\"25\">And Pharaoh called for Moses and for Aaron, and said, Go ye, sacrifice to your God in the land.</VERS>\r\n      <VERS vnumber=\"26\">And Moses said, It is not meet so to do; for we shall sacrifice the abomination of the Egyptians to Jehovah our God: lo, shall we sacrifice the abomination of the Egyptians before their eyes, and will they not stone us?</VERS>\r\n      <VERS vnumber=\"27\">We will go three days` journey into the wilderness, and sacrifice to Jehovah our God, as he shall command us.</VERS>\r\n      <VERS vnumber=\"28\">And Pharaoh said, I will let you go, that ye may sacrifice to Jehovah your God in the wilderness; only ye shall not go very far away: entreat for me.</VERS>\r\n      <VERS vnumber=\"29\">And Moses said, Behold, I go out from thee, and I will entreat Jehovah that the swarms of flies may depart from Pharaoh, from his servants, and from his people, to-morrow: only let not Pharaoh deal deceitfully any more in not letting the people go to sacrifice to Jehovah.</VERS>\r\n      <VERS vnumber=\"30\">And Moses went out from Pharaoh, and entreated Jehovah.</VERS>\r\n      <VERS vnumber=\"31\">And Jehovah 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.</VERS>\r\n      <VERS vnumber=\"32\">And Pharaoh hardened his heart this time also, and he did not let the people go.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">Then Jehovah said unto Moses, Go in unto Pharaoh, and tell him, Thus saith Jehovah, the God of the Hebrews, Let my people go, that they may serve me.</VERS>\r\n      <VERS vnumber=\"2\">For if thou refuse to let them go, and wilt hold them still,</VERS>\r\n      <VERS vnumber=\"3\">behold, the hand of Jehovah is upon thy cattle which are in the field, upon the horses, upon the asses, upon the camels, upon the herds, and upon the flocks: [there shall be] a very grievous murrain.</VERS>\r\n      <VERS vnumber=\"4\">And Jehovah shall make a distinction between the cattle of Israel and the cattle of Egypt; and there shall nothing die of all that belongeth to the children of Israel.</VERS>\r\n      <VERS vnumber=\"5\">And Jehovah appointed a set time, saying, To-morrow Jehovah shall do this thing in the land.</VERS>\r\n      <VERS vnumber=\"6\">And Jehovah 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.</VERS>\r\n      <VERS vnumber=\"7\">And Pharaoh sent, and, behold, there was not so much as one of the cattle of the Israelites dead. But the heart of Pharaoh was stubborn, and he did not let the people go.</VERS>\r\n      <VERS vnumber=\"8\">And Jehovah said unto Moses and unto Aaron, Take to you handfuls of ashes of the furnace, and let Moses sprinkle it toward heaven in the sight of Pharaoh.</VERS>\r\n      <VERS vnumber=\"9\">And it shall become small dust over 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And the magicians could not stand before Moses because of the boils; for the boils were upon the magicians, and upon all the Egyptians.</VERS>\r\n      <VERS vnumber=\"12\">And Jehovah hardened the heart of Pharaoh, and he hearkened not unto them, as Jehovah had spoken unto Moses.</VERS>\r\n      <VERS vnumber=\"13\">And Jehovah said unto Moses, Rise up early in the morning, and stand before Pharaoh, and say unto him, Thus saith Jehovah, the God of the Hebrews, Let my people go, that they may serve me.</VERS>\r\n      <VERS vnumber=\"14\">For I will this time send all my plagues upon thy heart, and upon thy servants, and upon thy people; that thou mayest know that there is none like me in all the earth.</VERS>\r\n      <VERS vnumber=\"15\">For now I had put forth my hand, and smitten thee and thy people with pestilence, and thou hadst been cut off from the earth:</VERS>\r\n      <VERS vnumber=\"16\">but in very deed for this cause have I made thee to stand, to show thee my power, and that my name may be declared throughout all the earth.</VERS>\r\n      <VERS vnumber=\"17\">As yet exaltest thou thyself against my people, that thou wilt not let them go?</VERS>\r\n      <VERS vnumber=\"18\">Behold, to-morrow about this time I will cause it to rain a very grievous hail, such as hath not been in Egypt since the day it was founded even until now.</VERS>\r\n      <VERS vnumber=\"19\">Now therefore send, hasten in thy cattle and all that thou hast in the field; [for] every man and beast that shall be found in the field, and shall not be brought home, the hail shall come down upon them, and they shall die.</VERS>\r\n      <VERS vnumber=\"20\">He that feared the word of Jehovah among the servants of Pharaoh made his servants and his cattle flee into the houses.</VERS>\r\n      <VERS vnumber=\"21\">And he that regarded not the word of Jehovah left his servants and his cattle in the field.</VERS>\r\n      <VERS vnumber=\"22\">And Jehovah said unto Moses, Stretch forth thy 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.</VERS>\r\n      <VERS vnumber=\"23\">And Moses stretched forth his rod toward heaven: and Jehovah sent thunder and hail, and fire ran down unto the earth; and Jehovah rained hail upon the land of Egypt.</VERS>\r\n      <VERS vnumber=\"24\">So there was hail, and fire mingled with the hail, very grievous, such as had not been in all the land of Egypt since it became a nation.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">Only in the land of Goshen, where the children of Israel were, was there no hail.</VERS>\r\n      <VERS vnumber=\"27\">And Pharaoh sent, and called for Moses and Aaron, and said unto them, I have sinned this time: Jehovah is righteous, and I and my people are wicked.</VERS>\r\n      <VERS vnumber=\"28\">Entreat Jehovah; for there hath been enough of [these] mighty thunderings and hail; and I will let you go, and ye shall stay no longer.</VERS>\r\n      <VERS vnumber=\"29\">And Moses said unto him, As soon as I am gone out of the city, I will spread abroad my hands unto Jehovah; the thunders shall cease, neither shall there be any more hail; that thou mayest know that the earth is Jehovah`s.</VERS>\r\n      <VERS vnumber=\"30\">But as for thee and thy servants, I know that ye will not yet fear Jehovah God.</VERS>\r\n      <VERS vnumber=\"31\">And the flax and the barley were smitten: for the barley was in the ear, and the flax was in bloom.</VERS>\r\n      <VERS vnumber=\"32\">But the wheat and the spelt were not smitten: for they were not grown up.</VERS>\r\n      <VERS vnumber=\"33\">And Moses went out of the city from Pharaoh, and spread abroad his hands unto Jehovah: and the thunders and hail ceased, and the rain was not poured upon the earth.</VERS>\r\n      <VERS vnumber=\"34\">And 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.</VERS>\r\n      <VERS vnumber=\"35\">And the heart of Pharaoh was hardened, and he did not let the children of Israel go, as Jehovah had spoken by Moses.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">And Jehovah said unto Moses, Go in unto Pharaoh: for I have hardened his heart, and the heart of his servants, that I may show these my signs in the midst of them,</VERS>\r\n      <VERS vnumber=\"2\">and that thou mayest tell in the ears of thy son, and of thy son`s son, what things I have wrought upon Egypt, and my signs which I have done among them; that ye may know that I am Jehovah.</VERS>\r\n      <VERS vnumber=\"3\">And Moses and Aaron went in unto Pharaoh, and said unto him, Thus saith Jehovah, the God of the Hebrews, How long wilt thou refuse to humble thyself before me? let my people go, that they may serve me.</VERS>\r\n      <VERS vnumber=\"4\">Else, if thou refuse to let my people go, behold, to-morrow will I bring locusts into thy border:</VERS>\r\n      <VERS vnumber=\"5\">and they shall cover the face of the earth, so that one shall not 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:</VERS>\r\n      <VERS vnumber=\"6\">and thy houses shall be filled, and the houses of all thy servants, and the houses of all the Egyptians; as neither thy fathers nor thy fathers` fathers have seen, since the day that they were upon the earth unto this day. And he turned, and went out from Pharaoh.</VERS>\r\n      <VERS vnumber=\"7\">And Pharaoh`s servants said unto him, How long shall this man be a snare unto us? let the men go, that they may serve Jehovah their God: knowest thou not yet that Egypt is destroyed?</VERS>\r\n      <VERS vnumber=\"8\">And Moses and Aaron were brought again unto Pharaoh: and he said unto them, Go, serve Jehovah your God; but who are they that shall go?</VERS>\r\n      <VERS vnumber=\"9\">And 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 Jehovah.</VERS>\r\n      <VERS vnumber=\"10\">And he said unto them, So be Jehovah with you, as I will let you go, and your little ones: look to it; for evil is before you.</VERS>\r\n      <VERS vnumber=\"11\">Not so: go now ye that are men, and serve Jehovah; for that is what ye desire. And they were driven out from Pharaoh`s presence.</VERS>\r\n      <VERS vnumber=\"12\">And Jehovah said unto Moses, Stretch out thy 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.</VERS>\r\n      <VERS vnumber=\"13\">And Moses stretched forth his rod over the land of Egypt, and Jehovah brought an east wind upon the land all that day, and all the night; and when it was morning, the east wind brought the locusts.</VERS>\r\n      <VERS vnumber=\"14\">And the locusts went up over all the land of Egypt, and rested in all the borders of Egypt; very grievous were they; before them there were no such locusts as they, neither after them shall be such.</VERS>\r\n      <VERS vnumber=\"15\">For 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, either tree or herb of the field, through all the land of Egypt.</VERS>\r\n      <VERS vnumber=\"16\">Then Pharaoh called for Moses and Aaron in haste; and he said, I have sinned against Jehovah your God, and against you.</VERS>\r\n      <VERS vnumber=\"17\">Now therefore forgive, I pray thee, my sin only this once, and entreat Jehovah your God, that he may take away from me this death only.</VERS>\r\n      <VERS vnumber=\"18\">And he went out from Pharaoh, and entreated Jehovah.</VERS>\r\n      <VERS vnumber=\"19\">And Jehovah turned an exceeding strong west wind, which took up the locusts, and drove them into the Red Sea; there remained not one locust in all the border of Egypt.</VERS>\r\n      <VERS vnumber=\"20\">But Jehovah hardened Pharaoh`s heart, and he did not let the children of Israel go.</VERS>\r\n      <VERS vnumber=\"21\">And Jehovah said unto Moses, Stretch out thy hand toward heaven, that there may be darkness over the land of Egypt, even darkness which may be felt.</VERS>\r\n      <VERS vnumber=\"22\">And Moses stretched forth his hand toward heaven; and there was a thick darkness in all the land of Egypt three days;</VERS>\r\n      <VERS vnumber=\"23\">they saw not one another, neither rose any one from his place for three days: but all the children of Israel had light in their dwellings.</VERS>\r\n      <VERS vnumber=\"24\">And Pharaoh called unto Moses, and said, Go ye, serve Jehovah; only let your flocks and your herds be stayed: let your little ones also go with you.</VERS>\r\n      <VERS vnumber=\"25\">And Moses said, Thou must also give into our hand sacrifices and burnt-offerings, that we may sacrifice unto Jehovah our God.</VERS>\r\n      <VERS vnumber=\"26\">Our cattle also shall go with us; there shall not a hoof be left behind: for thereof must we take to serve Jehovah our God; and we know not with what we must serve Jehovah, until we come thither.</VERS>\r\n      <VERS vnumber=\"27\">But Jehovah hardened Pharaoh`s heart, and he would not let them go.</VERS>\r\n      <VERS vnumber=\"28\">And Pharaoh said unto him, Get thee from me, take heed to thyself, see my face no more; for in the day thou seest my face thou shalt die.</VERS>\r\n      <VERS vnumber=\"29\">And Moses said, Thou hast spoken well. I will see thy face again no more.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">And Jehovah said unto Moses, Yet one plague more will I bring 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.</VERS>\r\n      <VERS vnumber=\"2\">Speak now in the ears of the people, and let them ask every man of his neighbor, and every woman of her neighbor, jewels of silver, and jewels of gold.</VERS>\r\n      <VERS vnumber=\"3\">And Jehovah gave the people favor 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.</VERS>\r\n      <VERS vnumber=\"4\">And Moses said, Thus saith Jehovah, About midnight will I go out into the midst of Egypt:</VERS>\r\n      <VERS vnumber=\"5\">and all the first-born in the land of Egypt shall die, from the first-born of Pharaoh that sitteth upon his throne, even unto the first-born of the maid-servant that is behind the mill; and all the first-born of cattle.</VERS>\r\n      <VERS vnumber=\"6\">And there shall be a great cry throughout all the land of Egypt, such as there hath not been, nor shall be any more.</VERS>\r\n      <VERS vnumber=\"7\">But against any of the children of Israel shall not a dog move his tongue, against man or beast: that ye may know how that Jehovah doth make a distinction between the Egyptians and Israel.</VERS>\r\n      <VERS vnumber=\"8\">And 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 hot anger.</VERS>\r\n      <VERS vnumber=\"9\">And Jehovah said unto Moses, Pharaoh will not hearken unto you; that my wonders may be multiplied in the land of Egypt.</VERS>\r\n      <VERS vnumber=\"10\">And Moses and Aaron did all these wonders before Pharaoh: and Jehovah hardened Pharaoh`s heart, and he did not let the children of Israel go out of his land.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">And Jehovah spake unto Moses and Aaron in the land of Egypt, saying,</VERS>\r\n      <VERS vnumber=\"2\">This month shall be unto you the beginning of months: it shall be the first month of the year to you.</VERS>\r\n      <VERS vnumber=\"3\">Speak 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 their fathers` houses, a lamb for a household:</VERS>\r\n      <VERS vnumber=\"4\">and if the household be too little for a lamb, then shall he and his neighbor next unto his house take one according to the number of the souls; according to every man`s eating ye shall make your count for the lamb.</VERS>\r\n      <VERS vnumber=\"5\">Your lamb shall be without blemish, a male a year old: ye shall take it from the sheep, or from the goats:</VERS>\r\n      <VERS vnumber=\"6\">and ye shall keep it until the fourteenth day of the same month; and the whole assembly of the congregation of Israel shall kill it at even.</VERS>\r\n      <VERS vnumber=\"7\">And they shall take of the blood, and put it on the two side-posts and on the lintel, upon the houses wherein they shall eat it.</VERS>\r\n      <VERS vnumber=\"8\">And they shall eat the flesh in that night, roast with fire, and unleavened bread; with bitter herbs they shall eat it.</VERS>\r\n      <VERS vnumber=\"9\">Eat not of it raw, nor boiled at all with water, but roast with fire; its head with its legs and with the inwards thereof.</VERS>\r\n      <VERS vnumber=\"10\">And ye shall let nothing of it remain until the morning; but that which remaineth of it until the morning ye shall burn with fire.</VERS>\r\n      <VERS vnumber=\"11\">And 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 Jehovah`s passover.</VERS>\r\n      <VERS vnumber=\"12\">For I will go through the land of Egypt in that night, and will smite all the first-born in the land of Egypt, both man and beast; and against all the gods of Egypt I will execute judgments: I am Jehovah.</VERS>\r\n      <VERS vnumber=\"13\">And 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 there shall no plague be upon you to destroy you, when I smite the land of Egypt.</VERS>\r\n      <VERS vnumber=\"14\">And this day shall be unto you for a memorial, and ye shall keep it a feast to Jehovah: throughout your generations ye shall keep it a feast by an ordinance for ever.</VERS>\r\n      <VERS vnumber=\"15\">Seven 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.</VERS>\r\n      <VERS vnumber=\"16\">And in the first day there shall be to you a holy convocation, and in the seventh day a holy convocation; no manner of work shall be done in them, save that which every man must eat, that only may be done by you.</VERS>\r\n      <VERS vnumber=\"17\">And ye shall observe the [feast of] unleavened bread; for in this selfsame day have I brought your hosts out of the land of Egypt: therefore shall ye observe this day throughout your generations by an ordinance for ever.</VERS>\r\n      <VERS vnumber=\"18\">In 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.</VERS>\r\n      <VERS vnumber=\"19\">Seven days shall there be no leaven found in your houses: for whosoever eateth that which is leavened, that soul shall be cut off from the congregation of Israel, whether he be a sojourner, or one that is born in the land.</VERS>\r\n      <VERS vnumber=\"20\">Ye shall eat nothing leavened; in all your habitations shall ye eat unleavened bread.</VERS>\r\n      <VERS vnumber=\"21\">Then Moses called for all the elders of Israel, and said unto them, Draw out, and take you lambs according to your families, and kill the passover.</VERS>\r\n      <VERS vnumber=\"22\">And ye shall take a bunch of hyssop, and dip it in the blood that is in the basin, and strike the lintel and the two side-posts with the blood that is in the basin; and none of you shall go out of the door of his house until the morning.</VERS>\r\n      <VERS vnumber=\"23\">For Jehovah will pass through to smite the Egyptians; and when he seeth the blood upon the lintel, and on the two side-posts, Jehovah will pass over the door, and will not suffer the destroyer to come in unto your houses to smite you.</VERS>\r\n      <VERS vnumber=\"24\">And ye shall observe this thing for an ordinance to thee and to thy sons for ever.</VERS>\r\n      <VERS vnumber=\"25\">And it shall come to pass, when ye are come to the land which Jehovah will give you, according as he hath promised, that ye shall keep this service.</VERS>\r\n      <VERS vnumber=\"26\">And it shall come to pass, when your children shall say unto you, What mean ye by this service?</VERS>\r\n      <VERS vnumber=\"27\">that ye shall say, It is the sacrifice of Jehovah`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.</VERS>\r\n      <VERS vnumber=\"28\">And the children of Israel went and did so; as Jehovah had commanded Moses and Aaron, so did they.</VERS>\r\n      <VERS vnumber=\"29\">And it came to pass at midnight, that Jehovah smote all the first-born in the land of Egypt, from the first-born of Pharaoh that sat on his throne unto the first-born of the captive that was in the dungeon; and all the first-born of cattle.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">And he called for Moses and Aaron by night, and said, Rise up, get you forth from among my people, both ye and the children of Israel; and go, serve Jehovah, as ye have said.</VERS>\r\n      <VERS vnumber=\"32\">Take both your flocks and your herds, as ye have said, and be gone; and bless me also.</VERS>\r\n      <VERS vnumber=\"33\">And the Egyptians were urgent upon the people, to send them out of the land in haste; for they said, We are all dead men.</VERS>\r\n      <VERS vnumber=\"34\">And the people took their dough before it was leavened, their kneading-troughs being bound up in their clothes upon their shoulders.</VERS>\r\n      <VERS vnumber=\"35\">And the children of Israel did according to the word of Moses; and they asked of the Egyptians jewels of silver, and jewels of gold, and raiment.</VERS>\r\n      <VERS vnumber=\"36\">And Jehovah gave the people favor in the sight of the Egyptians, so that they let them have what they asked. And they despoiled the Egyptians.</VERS>\r\n      <VERS vnumber=\"37\">And the children of Israel journeyed from Rameses to Succoth, about six hundred thousand on foot that were men, besides children.</VERS>\r\n      <VERS vnumber=\"38\">And a mixed multitude went up also with them; and flocks, and herds, even very much cattle.</VERS>\r\n      <VERS vnumber=\"39\">And 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 victuals.</VERS>\r\n      <VERS vnumber=\"40\">Now the time that the children of Israel dwelt in Egypt was four hundred and thirty years.</VERS>\r\n      <VERS vnumber=\"41\">And it came to pass at the end of four hundred and thirty years, even the selfsame day it came to pass, that all the hosts of Jehovah went out from the land of Egypt.</VERS>\r\n      <VERS vnumber=\"42\">It is a night to be much observed unto Jehovah for bringing them out from the land of Egypt: this is that night of Jehovah, to be much observed of all the children of Israel throughout their generations.</VERS>\r\n      <VERS vnumber=\"43\">And Jehovah said unto Moses and Aaron, This is the ordinance of the passover: there shall no foreigner eat thereof;</VERS>\r\n      <VERS vnumber=\"44\">but every man`s servant that is bought for money, when thou hast circumcised him, then shall he eat thereof.</VERS>\r\n      <VERS vnumber=\"45\">A sojourner and a hired servant shall not eat thereof.</VERS>\r\n      <VERS vnumber=\"46\">In one house shall it be eaten; thou shalt not carry forth aught of the flesh abroad out of the house; neither shall ye break a bone thereof.</VERS>\r\n      <VERS vnumber=\"47\">All the congregation of Israel shall keep it.</VERS>\r\n      <VERS vnumber=\"48\">And when a stranger shall sojourn with thee, and will keep the passover to Jehovah, 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: but no uncircumcised person shall eat thereof.</VERS>\r\n      <VERS vnumber=\"49\">One law shall be to him that is home-born, and unto the stranger that sojourneth among you.</VERS>\r\n      <VERS vnumber=\"50\">Thus did all the children of Israel; as Jehovah commanded Moses and Aaron, so did they.</VERS>\r\n      <VERS vnumber=\"51\">And it came to pass the selfsame day, that Jehovah did bring the children of Israel out of the land of Egypt by their hosts.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">Sanctify unto me all the first-born, whatsoever openeth the womb among the children of Israel, both of man and of beast: it is mine.</VERS>\r\n      <VERS vnumber=\"3\">And 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 Jehovah brought you out from this place: there shall no leavened bread be eaten.</VERS>\r\n      <VERS vnumber=\"4\">This day ye go forth in the month Abib.</VERS>\r\n      <VERS vnumber=\"5\">And it shall be, when Jehovah shall bring thee into the land of the Canaanite, and the Hittite, and the Amorite, and the Hivite, and the Jebusite, 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.</VERS>\r\n      <VERS vnumber=\"6\">Seven days thou shalt eat unleavened bread, and in the seventh day shall be a feast to Jehovah.</VERS>\r\n      <VERS vnumber=\"7\">Unleavened bread shall be eaten throughout the seven days; and there shall no leavened bread be seen with thee, neither shall there be leaven seen with thee, in all thy borders.</VERS>\r\n      <VERS vnumber=\"8\">And thou shalt tell thy son in that day, saying, It is because of that which Jehovah did for me when I came forth out of Egypt.</VERS>\r\n      <VERS vnumber=\"9\">And it shall be for a sign unto thee upon thy hand, and for a memorial between thine eyes, that the law of Jehovah may be in thy mouth: for with a strong hand hath Jehovah brought thee out of Egypt.</VERS>\r\n      <VERS vnumber=\"10\">Thou shalt therefore keep this ordinance in its season from year to year.</VERS>\r\n      <VERS vnumber=\"11\">And it shall be, when Jehovah shall bring thee into the land of the Canaanite, as he sware unto thee and to thy fathers, and shall give it thee,</VERS>\r\n      <VERS vnumber=\"12\">that thou shalt set apart unto Jehovah all that openeth the womb, and every firstling which thou hast that cometh of a beast; the males shall be Jehovah`s.</VERS>\r\n      <VERS vnumber=\"13\">And every firstling of an ass thou shalt redeem with a lamb; and if thou wilt not redeem it, then thou shalt break its neck: and all the first-born of man among thy sons shalt thou redeem.</VERS>\r\n      <VERS vnumber=\"14\">And 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 Jehovah brought us out from Egypt, from the house of bondage:</VERS>\r\n      <VERS vnumber=\"15\">and it came to pass, when Pharaoh would hardly let us go, that Jehovah slew all the first-born in the land of Egypt, both the first-born of man, and the first-born of beast: therefore I sacrifice to Jehovah all that openeth the womb, being males; but all the first-born of my sons I redeem.</VERS>\r\n      <VERS vnumber=\"16\">And it shall be for a sign upon thy hand, and for frontlets between thine eyes: for by strength of hand Jehovah brought us forth out of Egypt.</VERS>\r\n      <VERS vnumber=\"17\">And it came to pass, when Pharaoh had let the people go, that God led them not by 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:</VERS>\r\n      <VERS vnumber=\"18\">but God led the people about, by the way of the wilderness by the Red Sea: and the children of Israel went up armed out of the land of Egypt.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And they took their journey from Succoth, and encamped in Etham, in the edge of the wilderness.</VERS>\r\n      <VERS vnumber=\"21\">And Jehovah went before them by day in a pillar of cloud, to lead them the way, and by night in a pillar of fire, to give them light, that they might go by day and by night:</VERS>\r\n      <VERS vnumber=\"22\">the pillar of cloud by day, and the pillar of fire by night, departed not from before the people.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">Speak unto the children of Israel, that they turn back and encamp before Pihahiroth, between Migdol and the sea, before Baal-zephon: over against it shall ye encamp by the sea.</VERS>\r\n      <VERS vnumber=\"3\">And Pharaoh will say of the children of Israel, They are entangled in the land, the wilderness hath shut them in.</VERS>\r\n      <VERS vnumber=\"4\">And I will harden Pharaoh`s heart, and he shall follow after them; and I will get me honor upon Pharaoh, and upon all his host: and the Egyptians shall know that I am Jehovah. And they did so.</VERS>\r\n      <VERS vnumber=\"5\">And it was told the king of Egypt that the people were fled: and the heart of Pharaoh and of his servants was changed towards the people, and they said, What is this we have done, that we have let Israel go from serving us?</VERS>\r\n      <VERS vnumber=\"6\">And he made ready his chariot, and took his people with him:</VERS>\r\n      <VERS vnumber=\"7\">and he took six hundred chosen chariots, and all the chariots of Egypt, and captains over all of them.</VERS>\r\n      <VERS vnumber=\"8\">And Jehovah hardened the heart of Pharaoh king of Egypt, and he pursued after the children of Israel: for the children of Israel went out with a high hand.</VERS>\r\n      <VERS vnumber=\"9\">And 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 Baal-zephon.</VERS>\r\n      <VERS vnumber=\"10\">And when Pharaoh drew nigh, the children of Israel lifted up their eyes, and, behold, the Egyptians were marching after them; and they were sore afraid: and the children of Israel cried out unto Jehovah.</VERS>\r\n      <VERS vnumber=\"11\">And 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 bring us forth out of Egypt?</VERS>\r\n      <VERS vnumber=\"12\">Is not this the word that we spake unto thee in Egypt, saying, Let us alone, that we may serve the Egyptians? For it were better for us to serve the Egyptians, than that we should die in the wilderness.</VERS>\r\n      <VERS vnumber=\"13\">And Moses said unto the people, Fear ye not, stand still, and see the salvation of Jehovah, which he will work for you to-day: for the Egyptians whom ye have seen to-day, ye shall see them again no more for ever.</VERS>\r\n      <VERS vnumber=\"14\">Jehovah will fight for you, and ye shall hold your peace.</VERS>\r\n      <VERS vnumber=\"15\">And Jehovah said unto Moses, Wherefore criest thou unto me? speak unto the children of Israel, that they go forward.</VERS>\r\n      <VERS vnumber=\"16\">And lift thou up thy rod, and stretch out thy hand over the sea, and divide it: and the children of Israel shall go into the midst of the sea on dry ground.</VERS>\r\n      <VERS vnumber=\"17\">And I, behold, I will harden the hearts of the Egyptians, and they shall go in after them: and I will get me honor upon Pharaoh, and upon all his host, upon his chariots, and upon his horsemen.</VERS>\r\n      <VERS vnumber=\"18\">And the Egyptians shall know that I am Jehovah, when I have gotten me honor upon Pharaoh, upon his chariots, and upon his horsemen.</VERS>\r\n      <VERS vnumber=\"19\">And the angel of God, who went before the camp of Israel, removed and went behind them; and the pillar of cloud removed from before them, and stood behind them:</VERS>\r\n      <VERS vnumber=\"20\">and it came between the camp of Egypt and the camp of Israel; and there was the cloud and the darkness, yet gave it light by night: and the one came not near the other all the night.</VERS>\r\n      <VERS vnumber=\"21\">And Moses stretched out his hand over the sea; and Jehovah caused the sea to go [back] by a strong east wind all the night, and made the sea dry land, and the waters were divided.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And the Egyptians pursued, and went in after them into the midst of the sea, all Pharaoh`s horses, his chariots, and his horsemen.</VERS>\r\n      <VERS vnumber=\"24\">And it came to pass in the morning watch, that Jehovah looked forth upon the host of the Egyptians through the pillar of fire and of cloud, and discomfited the host of the Egyptians.</VERS>\r\n      <VERS vnumber=\"25\">And he took off their chariot wheels, and they drove them heavily; so that the Egyptians said, Let us flee from the face of Israel; for Jehovah fighteth for them against the Egyptians.</VERS>\r\n      <VERS vnumber=\"26\">And Jehovah said unto Moses, Stretch out thy hand over the sea, that the waters may come again upon the Egyptians, upon their chariots, and upon their horsemen.</VERS>\r\n      <VERS vnumber=\"27\">And Moses stretched forth his hand over the sea, and the sea returned to its strength when the morning appeared; and the Egyptians fled against it; and Jehovah overthrew the Egyptians in the midst of the sea.</VERS>\r\n      <VERS vnumber=\"28\">And the waters returned, and covered the chariots, and the horsemen, even all the host of Pharaoh that went in after them into the sea; there remained not so much as one of them.</VERS>\r\n      <VERS vnumber=\"29\">But 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.</VERS>\r\n      <VERS vnumber=\"30\">Thus Jehovah saved Israel that day out of the hand of the Egyptians; and Israel saw the Egyptians dead upon the sea-shore.</VERS>\r\n      <VERS vnumber=\"31\">And Israel saw the great work which Jehovah did upon the Egyptians, and the people feared Jehovah: and they believed in Jehovah, and in his servant Moses.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">Then sang Moses and the children of Israel this song unto Jehovah, and spake, saying, I will sing unto Jehovah, for he hath triumphed gloriously: The horse and his rider hath he thrown into the sea.</VERS>\r\n      <VERS vnumber=\"2\">Jehovah is my strength and song, And he is become my salvation: This is my God, and I will praise him; My father`s God, and I will exalt him.</VERS>\r\n      <VERS vnumber=\"3\">Jehovah is a man of war: Jehovah is his name.</VERS>\r\n      <VERS vnumber=\"4\">Pharaoh`s chariots and his host hath he cast into the sea; And his chosen captains are sunk in the Red Sea.</VERS>\r\n      <VERS vnumber=\"5\">The deeps cover them: They went down into the depths like a stone.</VERS>\r\n      <VERS vnumber=\"6\">Thy right hand, O Jehovah, is glorious in power, Thy right hand, O Jehovah, dasheth in pieces the enemy.</VERS>\r\n      <VERS vnumber=\"7\">And in the greatness of thine excellency thou       overthrowest them that rise up against thee: Thou sendest       forth thy wrath, it consumeth them as stubble.</VERS>\r\n      <VERS vnumber=\"8\">And with the blast of thy nostrils the waters were piled       up, The floods stood upright as a heap; The deeps were congealed in the heart of the sea.</VERS>\r\n      <VERS vnumber=\"9\">The enemy said, I will pursue, I will overtake, I will       divide the spoil; My desire shall be satisfied upon them; I will draw my sword, my hand shall destroy them.</VERS>\r\n      <VERS vnumber=\"10\">Thou didst blow with thy wind, the sea covered them: They sank as lead in the mighty waters.</VERS>\r\n      <VERS vnumber=\"11\">Who is like unto thee, O Jehovah, among the gods? Who is like thee, glorious in holiness, Fearful in praises, doing wonders?</VERS>\r\n      <VERS vnumber=\"12\">Thou stretchedst out thy right hand, The earth swallowed them.</VERS>\r\n      <VERS vnumber=\"13\">Thou in thy lovingkindness hast led the people that thou       hast redeemed: Thou hast guided them in thy strength to thy holy habitation.</VERS>\r\n      <VERS vnumber=\"14\">The peoples have heard, they tremble: Pangs have taken hold on the inhabitants of Philistia.</VERS>\r\n      <VERS vnumber=\"15\">Then were the chiefs of Edom dismayed; The mighty men of Moab, trembling taketh hold upon them: All the inhabitants of Canaan are melted away.</VERS>\r\n      <VERS vnumber=\"16\">Terror and dread falleth upon them; By the greatness of thine arm they are as still as a stone; Till thy people pass over, O Jehovah, Till the people pass over that thou hast purchased.</VERS>\r\n      <VERS vnumber=\"17\">Thou wilt bring them in, and plant them in the mountain       of thine inheritance, The place, O Jehovah, which thou hast made for thee to dwell in, The sanctuary, O Lord, which thy hands have established.</VERS>\r\n      <VERS vnumber=\"18\">Jehovah shall reign for ever and ever.</VERS>\r\n      <VERS vnumber=\"19\">For the horses of Pharaoh went in with his chariots and with his horsemen into the sea, and Jehovah brought back the waters of the sea upon them; but the children of Israel walked on dry land in the midst of the sea.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And Miriam answered them, Sing ye to Jehovah, for he hath triumphed gloriously; The horse and his rider hath he thrown into the sea.</VERS>\r\n      <VERS vnumber=\"22\">And Moses led Israel onward 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.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And the people murmured against Moses, saying, What shall we drink?</VERS>\r\n      <VERS vnumber=\"25\">An he cried unto Jehovah; And Jehovah showed him a tree, and he cast it into the waters, and the waters were made sweet. There he made for them a statute and an ordinance, and there he proved them;</VERS>\r\n      <VERS vnumber=\"26\">and he said, If thou wilt diligently hearken to the voice of Jehovah thy God, and wilt do that which is right in his eyes, and wilt give ear to his commandments, and keep all his statutes, I will put none of the diseases upon thee, which I have put upon the Egyptians: for I am Jehovah that healeth thee.</VERS>\r\n      <VERS vnumber=\"27\">And they came to Elim, where were twelve springs of water, and threescore and ten palm-trees: and they encamped there by the waters.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And the whole congregation of the children of Israel murmured against Moses and against Aaron in the wilderness:</VERS>\r\n      <VERS vnumber=\"3\">and the children of Israel said unto them, Would that we had died by the hand of Jehovah in the land of Egypt, when we sat by the flesh-pots, when we did eat bread to the full; for ye have brought us forth into this wilderness, to kill this whole assembly with hunger.</VERS>\r\n      <VERS vnumber=\"4\">Then said Jehovah unto Moses, Behold, I will rain bread from heaven for you; and the people shall go out and gather a day`s portion every day, that I may prove them, whether they will walk in my law, or not.</VERS>\r\n      <VERS vnumber=\"5\">And it shall come to pass on the sixth day, that they shall prepare that which they bring in, and it shall be twice as much as they gather daily.</VERS>\r\n      <VERS vnumber=\"6\">And Moses and Aaron said unto all the children of Israel, At even, then ye shall know that Jehovah hath brought you out from the land of Egypt;</VERS>\r\n      <VERS vnumber=\"7\">and in the morning, then ye shall see the glory of Jehovah; for that he heareth your murmurings against Jehovah: and what are we, that ye murmur against us?</VERS>\r\n      <VERS vnumber=\"8\">And Moses said, [This shall be], when Jehovah shall give you in the evening flesh to eat, and in the morning bread to the full; for that Jehovah heareth your murmurings which ye murmur against him: and what are we? your murmurings are not against us, but against Jehovah.</VERS>\r\n      <VERS vnumber=\"9\">And Moses said unto Aaron, Say unto all the congregation of the children of Israel, Come near before Jehovah; for he hath heard your murmurings.</VERS>\r\n      <VERS vnumber=\"10\">And 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 Jehovah appeared in the cloud.</VERS>\r\n      <VERS vnumber=\"11\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"12\">I 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 Jehovah your God.</VERS>\r\n      <VERS vnumber=\"13\">And it came to pass at even, that the quails came up, and covered the camp: and in the morning the dew lay round about the camp.</VERS>\r\n      <VERS vnumber=\"14\">And when the dew that lay was gone up, behold, upon the face of the wilderness a small round thing, small as the hoar-frost on the ground.</VERS>\r\n      <VERS vnumber=\"15\">And when the children of Israel saw it, they said one to another, What is it? For they knew not what it was. And Moses said unto them, It is the bread which Jehovah hath given you to eat.</VERS>\r\n      <VERS vnumber=\"16\">This is the thing which Jehovah hath commanded, Gather ye of it every man according to his eating; an omer a head, according to the number of your persons, shall ye take it, every man for them that are in his tent.</VERS>\r\n      <VERS vnumber=\"17\">And the children of Israel did so, and gathered some more, some less.</VERS>\r\n      <VERS vnumber=\"18\">And when they measured 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.</VERS>\r\n      <VERS vnumber=\"19\">And Moses said unto them, Let no man leave of it till the morning.</VERS>\r\n      <VERS vnumber=\"20\">Notwithstanding they hearkened not unto Moses; but some of them left of it until the morning, and it bred worms, and became foul: and Moses was wroth with them.</VERS>\r\n      <VERS vnumber=\"21\">And they gathered it morning by morning, every man according to his eating: and when the sun waxed hot, it melted.</VERS>\r\n      <VERS vnumber=\"22\">And it came to pass, that on the sixth day they gathered twice as much bread, two omers for each one: and all the rulers of the congregation came and told Moses.</VERS>\r\n      <VERS vnumber=\"23\">And he said unto them, This is that which Jehovah hath spoken, Tomorrow is a solemn rest, a holy sabbath unto Jehovah: bake that which ye will bake, and boil that which ye will boil; and all that remaineth over lay up for you to be kept until the morning.</VERS>\r\n      <VERS vnumber=\"24\">And they laid it up till the morning, as Moses bade: and it did not become foul, neither was there any worm therein.</VERS>\r\n      <VERS vnumber=\"25\">And Moses said, Eat that to-day; for to-day is a sabbath unto Jehovah: to-day ye shall not find it in the field.</VERS>\r\n      <VERS vnumber=\"26\">Six days ye shall gather it; but on the seventh day is the sabbath, in it there shall be none.</VERS>\r\n      <VERS vnumber=\"27\">And it came to pass on the seventh day, that there went out some of the people to gather, and they found none.</VERS>\r\n      <VERS vnumber=\"28\">And Jehovah said unto Moses, How long refuse ye to keep my commandments and my laws?</VERS>\r\n      <VERS vnumber=\"29\">See, for that Jehovah 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.</VERS>\r\n      <VERS vnumber=\"30\">So the people rested on the seventh day.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n      <VERS vnumber=\"32\">And Moses said, This is the thing which Jehovah hath commanded, Let an omerful of it be kept throughout your generations, that they may see the bread wherewith I fed you in the wilderness, when I brought you forth from the land of Egypt.</VERS>\r\n      <VERS vnumber=\"33\">And Moses said unto Aaron, Take a pot, and put an omerful of manna therein, and lay it up before Jehovah, to be kept throughout your generations.</VERS>\r\n      <VERS vnumber=\"34\">As Jehovah commanded Moses, so Aaron laid it up before the Testimony, to be kept.</VERS>\r\n      <VERS vnumber=\"35\">And the children of Israel did eat the manna forty years, until they came to a land inhabited; they did eat the manna, until they came unto the borders of the land of Canaan.</VERS>\r\n      <VERS vnumber=\"36\">Now an omer is the tenth part of an ephah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"17\">\r\n      <VERS vnumber=\"1\">And all the congregation of the children of Israel journeyed from the wilderness of Sin, by their journeys, according to the commandment of Jehovah, and encamped in Rephidim: and there was no water for the people to drink.</VERS>\r\n      <VERS vnumber=\"2\">Wherefore the people stove with Moses, and said, Give us water that we may drink. And Moses said unto them, Why strive ye with me? Wherefore do ye tempt Jehovah?</VERS>\r\n      <VERS vnumber=\"3\">And the people thirsted there for water; and the people murmured against Moses, and said, Wherefore hast thou brought us up out of Egypt, to kill us and our children and our cattle with thirst?</VERS>\r\n      <VERS vnumber=\"4\">And Moses cried unto Jehovah, saying, What shall I do unto this people? They are almost ready to stone me.</VERS>\r\n      <VERS vnumber=\"5\">And Jehovah said unto Moses, Pass on before the people, and take with thee of the elders of Israel; and they rod, wherewith thou smotest the river, take in thy hand, and go.</VERS>\r\n      <VERS vnumber=\"6\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"7\">And he called the name of the place Massah, and Meribah, because of the striving of the children of Israel, and because they tempted Jehovah, saying, Is Jehovah among us, or not?</VERS>\r\n      <VERS vnumber=\"8\">Then came Amalek, and fought with Israel in Rephidim.</VERS>\r\n      <VERS vnumber=\"9\">And 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 my hand.</VERS>\r\n      <VERS vnumber=\"10\">So 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.</VERS>\r\n      <VERS vnumber=\"11\">And it came to pass, when Moses held up his hand, that Israel prevailed; and when he let down his hand, Amalek prevailed.</VERS>\r\n      <VERS vnumber=\"12\">But 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.</VERS>\r\n      <VERS vnumber=\"13\">And Joshua discomfited Amalek and his people with the edge of the sword.</VERS>\r\n      <VERS vnumber=\"14\">And Jehovah said unto Moses, Write this for a memorial in a book, and rehearse it in the ears of Joshua: that I will utterly blot out the remembrance of Amalek from under heaven.</VERS>\r\n      <VERS vnumber=\"15\">And Moses built an altar, and called the name of it Jehovah-nissi;</VERS>\r\n      <VERS vnumber=\"16\">And he said, Jehovah hath sworn: Jehovah will have war with Amalek from generation to generation.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"18\">\r\n      <VERS vnumber=\"1\">Now Jethro, the priest of Midian, Moses` father-in-law, heard of all that God had done for Moses, and for Israel his people, how that Jehovah had brought Israel out of Egypt.</VERS>\r\n      <VERS vnumber=\"2\">And Jethro, Moses` father-in-law, took Zipporah, Moses` wife, after he had sent her away,</VERS>\r\n      <VERS vnumber=\"3\">and her two sons; of whom the name of the one was Gershom; for he said, I have been a sojourner in a foreign land:</VERS>\r\n      <VERS vnumber=\"4\">and the name of the other was Eliezer; for [he said], The God of my father was my help, and delivered me from the sword of Pharaoh.</VERS>\r\n      <VERS vnumber=\"5\">And Jethro, Moses` father-in-law, came with his sons and his wife unto Moses into the wilderness where he was encamped, at the mount of God:</VERS>\r\n      <VERS vnumber=\"6\">and he said unto Moses, I, thy father-in-law Jethro, am come unto thee, and thy wife, and her two sons with her.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And Moses told his father-in-law all that Jehovah had done unto Pharaoh and to the Egyptians for Israel`s sake, all the travail that had come upon them by the way, and how Jehovah delivered them.</VERS>\r\n      <VERS vnumber=\"9\">And Jethro rejoiced for all the goodness which Jehovah had done to Israel, in that he had delivered them out of the hand of the Egyptians.</VERS>\r\n      <VERS vnumber=\"10\">And Jethro said, Blessed be Jehovah, 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.</VERS>\r\n      <VERS vnumber=\"11\">Now I know that Jehovah is greater than all gods; yea, in the thing wherein they dealt proudly against them.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And it came to pass on the morrow, that Moses sat to judge the people: and the people stood about Moses from the morning unto the evening.</VERS>\r\n      <VERS vnumber=\"14\">And 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 about thee from morning unto even?</VERS>\r\n      <VERS vnumber=\"15\">And Moses said unto his father-in-law, Because the people come unto me to inquire of God:</VERS>\r\n      <VERS vnumber=\"16\">when they have a matter, they come unto me; and I judge between a man and his neighbor, and I make them know the statutes of God, and his laws.</VERS>\r\n      <VERS vnumber=\"17\">And Moses` father-in-law said unto him, The thing that thou doest is not good.</VERS>\r\n      <VERS vnumber=\"18\">Thou wilt surely wear away, both thou, and this people that is with thee: for the thing is too heavy for thee; thou art not able to perform it thyself alone.</VERS>\r\n      <VERS vnumber=\"19\">Hearken now unto my voice, I will give thee counsel, and God be with thee: be thou for the people to God-ward, and bring thou the causes unto God:</VERS>\r\n      <VERS vnumber=\"20\">and thou shalt teach them the statutes and the laws, and shalt show them the way wherein they must walk, and the work that they must do.</VERS>\r\n      <VERS vnumber=\"21\">Moreover thou shalt provide out of all the people able men, such as fear God, men of truth, hating unjust gain; and place such over them, to be rulers of thousands, rulers of hundreds, rulers of fifties, and rulers of tens:</VERS>\r\n      <VERS vnumber=\"22\">and 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 themselves: so shall it be easier for thyself, and they shall bear [the burden] with thee.</VERS>\r\n      <VERS vnumber=\"23\">If thou shalt do this thing, and God command thee so, then thou shalt be able to endure, and all this people also shall go to their place in peace.</VERS>\r\n      <VERS vnumber=\"24\">So Moses hearkened to the voice of his father-in-law, and did all that he had said.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And they judged the people at all seasons: the hard causes they brought unto Moses, but every small matter they judged themselves.</VERS>\r\n      <VERS vnumber=\"27\">And Moses let his father-in-law depart; and he went his way into his own land.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"19\">\r\n      <VERS vnumber=\"1\">In the third month after the children of Israel were gone forth out of the land of Egypt, the same day came they into the wilderness of Sinai.</VERS>\r\n      <VERS vnumber=\"2\">And when they were departed from Rephidim, and were come to the wilderness of Sinai, they encamped in the wilderness; and there Israel encamped before the mount.</VERS>\r\n      <VERS vnumber=\"3\">And Moses went up unto God, and Jehovah called unto him out of the mountain, saying, Thus shalt thou say to the house of Jacob, and tell the children of Israel:</VERS>\r\n      <VERS vnumber=\"4\">Ye have seen what I did unto the Egyptians, and how I bare you on eagles` wings, and brought you unto myself.</VERS>\r\n      <VERS vnumber=\"5\">Now therefore, if ye will obey my voice indeed, and keep my covenant, then ye shall be mine own possession from among all peoples: for all the earth is mine:</VERS>\r\n      <VERS vnumber=\"6\">and ye shall be unto me a kingdom of priests, and a holy nation. These are the words which thou shalt speak unto the children of Israel.</VERS>\r\n      <VERS vnumber=\"7\">And Moses came and called for the elders of the people, and set before them all these words which Jehovah commanded him.</VERS>\r\n      <VERS vnumber=\"8\">And all the people answered together, and said, All that Jehovah hath spoken we will do. And Moses reported the words of the people unto Jehovah.</VERS>\r\n      <VERS vnumber=\"9\">And Jehovah said unto Moses, Lo, I come unto thee in a thick cloud, that the people may hear when I speak with thee, and may also believe thee for ever. And Moses told the words of the people unto Jehovah.</VERS>\r\n      <VERS vnumber=\"10\">And Jehovah said unto Moses, Go unto the people, and sanctify them to-day and to-morrow, and let them wash their garments,</VERS>\r\n      <VERS vnumber=\"11\">and be ready against the third day; for the third day Jehovah will come down in the sight of all the people upon mount Sinai.</VERS>\r\n      <VERS vnumber=\"12\">And 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:</VERS>\r\n      <VERS vnumber=\"13\">no hand shall touch him, but he shall surely be stoned, or shot through; whether it be beast or man, he shall not live: when the trumpet soundeth long, they shall come up to the mount.</VERS>\r\n      <VERS vnumber=\"14\">And Moses went down from the mount unto the people, and sanctified the people; and they washed their garments.</VERS>\r\n      <VERS vnumber=\"15\">And he said unto the people, Be ready against the third day: come not near a woman.</VERS>\r\n      <VERS vnumber=\"16\">And it came to pass on the third day, when it was morning, that there were thunders and lightnings, and a thick cloud upon the mount, and the voice of a trumpet exceeding loud; and all the people that were in the camp trembled.</VERS>\r\n      <VERS vnumber=\"17\">And Moses brought forth the people out of the camp to meet God; and they stood at the nether part of the mount.</VERS>\r\n      <VERS vnumber=\"18\">And mount Sinai, the whole of it, smoked, because Jehovah descended upon it in fire; and the smoke thereof ascended as the smoke of a furnace, and the whole mount quaked greatly.</VERS>\r\n      <VERS vnumber=\"19\">And when the voice of the trumpet waxed louder and louder, Moses spake, and God answered him by a voice.</VERS>\r\n      <VERS vnumber=\"20\">And Jehovah came down upon mount Sinai, to the top of the mount: and Jehovah called Moses to the top of the mount; and Moses went up.</VERS>\r\n      <VERS vnumber=\"21\">And Jehovah said unto Moses, Go down, charge the people, lest they break through unto Jehovah to gaze, and many of them perish.</VERS>\r\n      <VERS vnumber=\"22\">And let the priests also, that come near to Jehovah, sanctify themselves, lest Jehovah break forth upon them.</VERS>\r\n      <VERS vnumber=\"23\">And Moses said unto Jehovah, The people cannot come up to mount Sinai: for thou didst charge us, saying, Set bounds about the mount, and sanctify it.</VERS>\r\n      <VERS vnumber=\"24\">And Jehovah said unto him, Go, 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 Jehovah, lest he break forth upon them.</VERS>\r\n      <VERS vnumber=\"25\">So Moses went down unto the people, and told them.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"20\">\r\n      <VERS vnumber=\"1\">And God spake all these words, saying,</VERS>\r\n      <VERS vnumber=\"2\">I am Jehovah thy God, who brought thee out of the land of Egypt, out of the house of bondage.</VERS>\r\n      <VERS vnumber=\"3\">Thou shalt have no other gods before me.</VERS>\r\n      <VERS vnumber=\"4\">Thou shalt not make unto thee a graven image, nor 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.</VERS>\r\n      <VERS vnumber=\"5\">Thou shalt not bow down thyself unto them, nor serve them, for I Jehovah thy God am a jealous God, visiting the iniquity of the fathers upon the children, upon the third and upon the fourth generation of them that hate me,</VERS>\r\n      <VERS vnumber=\"6\">and showing lovingkindness unto thousands of them that love me and keep my commandments.</VERS>\r\n      <VERS vnumber=\"7\">Thou shalt not take the name of Jehovah thy God in vain; for Jehovah will not hold him guiltless that taketh his name in vain.</VERS>\r\n      <VERS vnumber=\"8\">Remember the sabbath day, to keep it holy.</VERS>\r\n      <VERS vnumber=\"9\">Six days shalt thou labor, and do all thy work;</VERS>\r\n      <VERS vnumber=\"10\">but the seventh day is a sabbath unto Jehovah thy God: [in it] thou shalt not do any work, thou, nor thy son, nor thy daughter, thy man-servant, nor thy maid-servant, nor thy cattle, nor thy stranger that is within thy gates:</VERS>\r\n      <VERS vnumber=\"11\">for in six days Jehovah made heaven and earth, the sea, and all that in them is, and rested the seventh day: wherefore Jehovah blessed the sabbath day, and hallowed it.</VERS>\r\n      <VERS vnumber=\"12\">Honor thy father and thy mother, that thy days may be long in the land which Jehovah thy God giveth thee.</VERS>\r\n      <VERS vnumber=\"13\">Thou shalt not kill.</VERS>\r\n      <VERS vnumber=\"14\">Thou shalt not commit adultery.</VERS>\r\n      <VERS vnumber=\"15\">Thou shalt not steal.</VERS>\r\n      <VERS vnumber=\"16\">Thou shalt not bear false witness against thy neighbor.</VERS>\r\n      <VERS vnumber=\"17\">Thou shalt not covet thy neighbor`s house, thou shalt not covet thy neighbor`s wife, nor his man-servant, nor his maid-servant, nor his ox, nor his ass, nor anything that is thy neighbor`s.</VERS>\r\n      <VERS vnumber=\"18\">And all the people perceived the thunderings, and the lightnings, and the voice of the trumpet, and the mountain smoking: and when the people saw it, they trembled, and stood afar off.</VERS>\r\n      <VERS vnumber=\"19\">And they said unto Moses, Speak thou with us, and we will hear; but let not God speak with us, lest we die.</VERS>\r\n      <VERS vnumber=\"20\">And Moses said unto the people, Fear not: for God is come to prove you, and that his fear may be before you, that ye sin not.</VERS>\r\n      <VERS vnumber=\"21\">And the people stood afar off, and Moses drew near unto the thick darkness where God was.</VERS>\r\n      <VERS vnumber=\"22\">And Jehovah said unto Moses, Thus thou shalt say unto the children of Israel, Ye yourselves have seen that I have talked with you from heaven.</VERS>\r\n      <VERS vnumber=\"23\">Ye shall not make [other gods] with me; gods of silver, or gods of gold, ye shall not make unto you.</VERS>\r\n      <VERS vnumber=\"24\">An 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 every place where I record my name I will come unto thee and I will bless thee.</VERS>\r\n      <VERS vnumber=\"25\">And if thou make me an altar of stone, thou shalt not build it of hewn stones; for if thou lift up thy tool upon it, thou hast polluted it.</VERS>\r\n      <VERS vnumber=\"26\">Neither shalt thou go up by steps unto mine altar, that thy nakedness be not uncovered thereon.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"21\">\r\n      <VERS vnumber=\"1\">Now these are the ordinances which thou shalt set before them.</VERS>\r\n      <VERS vnumber=\"2\">If thou buy a Hebrew servant, six years he shall serve: and in the seventh he shall go out free for nothing.</VERS>\r\n      <VERS vnumber=\"3\">If he come in by himself, he shall go out by himself: if he be married, then his wife shall go out with him.</VERS>\r\n      <VERS vnumber=\"4\">If his master give him a wife and she bear him sons or daughters; the wife and her children shall be her master`s, and he shall go out by himself.</VERS>\r\n      <VERS vnumber=\"5\">But if the servant shall plainly say, I love my master, my wife, and my children; I will not go out free:</VERS>\r\n      <VERS vnumber=\"6\">then his master shall bring him unto God, and shall bring him to the door, or unto the door-post; and his master shall bore his ear through with an awl; and he shall serve him for ever.</VERS>\r\n      <VERS vnumber=\"7\">And if a man sell his daughter to be a maid-servant, she shall not go out as the men-servants do.</VERS>\r\n      <VERS vnumber=\"8\">If she please not her master, who hath espoused her to himself, then shall he let her be redeemed: to sell her unto a foreign people he shall have no power, seeing he hath dealt deceitfully with her.</VERS>\r\n      <VERS vnumber=\"9\">And if he espouse her unto his son, he shall deal with her after the manner of daughters.</VERS>\r\n      <VERS vnumber=\"10\">If he take him another [wife]; her food, her raiment, and her duty of marriage, shall he not diminish.</VERS>\r\n      <VERS vnumber=\"11\">And if he do not these three things unto her, then shall she go out for nothing, without money.</VERS>\r\n      <VERS vnumber=\"12\">He that smiteth a man, so that he dieth, shall surely be put to death.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And if a man come presumptuously upon his neighbor, to slay him with guile; thou shalt take him from mine altar, that he may die.</VERS>\r\n      <VERS vnumber=\"15\">And he that smiteth his father, or his mother, shall be surely put to death.</VERS>\r\n      <VERS vnumber=\"16\">And he that stealeth a man, and selleth him, or if he be found in his hand, he shall surely be put to death.</VERS>\r\n      <VERS vnumber=\"17\">And he that curseth his father or his mother, shall surely be put to death.</VERS>\r\n      <VERS vnumber=\"18\">And if men contend, and one smite the other with a stone, or with his fist, and he die not, but keep his bed;</VERS>\r\n      <VERS vnumber=\"19\">if 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.</VERS>\r\n      <VERS vnumber=\"20\">And if a man smite his servant, or his maid, with a rod, and he die under his hand; he shall surely be punished.</VERS>\r\n      <VERS vnumber=\"21\">Notwithstanding, if he continue a day or two, he shall not be punished: for he is his money.</VERS>\r\n      <VERS vnumber=\"22\">And if men strive together, and hurt a woman with child, so that her fruit depart, and yet no harm follow; he shall be surely fined, according as the woman`s husband shall lay upon him; and he shall pay as the judges determine.</VERS>\r\n      <VERS vnumber=\"23\">But if any harm follow, then thou shalt give life for life,</VERS>\r\n      <VERS vnumber=\"24\">eye for eye, tooth for tooth, hand for hand, foot for foot,</VERS>\r\n      <VERS vnumber=\"25\">burning for burning, wound for wound, stripe for stripe.</VERS>\r\n      <VERS vnumber=\"26\">And if a man smite the eye of his servant, or the eye of his maid, and destroy it; he shall let him go free for his eye`s sake.</VERS>\r\n      <VERS vnumber=\"27\">And if he smite out his man-servant`s tooth, or his maid-servant`s tooth, he shall let him go free for his tooth`s sake.</VERS>\r\n      <VERS vnumber=\"28\">And if an ox gore a man or a woman to death, the ox shall be surely stoned, and its flesh shall not be eaten; but the owner of the ox shall be quit.</VERS>\r\n      <VERS vnumber=\"29\">But if the ox was wont to gore in time past, and it hath been testified to its owner, and he hath not kept it in, but it hath killed a man or a woman, the ox shall be stoned, and its owner also shall be put to death.</VERS>\r\n      <VERS vnumber=\"30\">If there be laid on him a ransom, then he shall give for the redemption of his life whatsoever is laid upon him.</VERS>\r\n      <VERS vnumber=\"31\">Whether it have gored a son, or have gored a daughter, according to this judgment shall it be done unto him.</VERS>\r\n      <VERS vnumber=\"32\">If the ox gore a man-servant or a maid-servant, there shall be given unto their master thirty shekels of silver, and the ox shall be stoned.</VERS>\r\n      <VERS vnumber=\"33\">And 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,</VERS>\r\n      <VERS vnumber=\"34\">the owner of the pit shall make it good; he shall give money unto the owner thereof, and the dead [beast] shall be his.</VERS>\r\n      <VERS vnumber=\"35\">And if one man`s ox hurt another`s, so that it dieth, then they shall sell the live ox, and divide the price of it: and the dead also they shall divide.</VERS>\r\n      <VERS vnumber=\"36\">Or if it be known that the ox was wont to gore in time past, and its owner hath not kept it in, he shall surely pay ox for ox, and the dead [beast] shall be his own.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"22\">\r\n      <VERS vnumber=\"1\">If a man shall steal an ox, or a sheep, and kill it, or sell it; he shall pay five oxen for an ox, and four sheep for a sheep.</VERS>\r\n      <VERS vnumber=\"2\">If the thief be found breaking in, and be smitten so that he dieth, there shall be no bloodguiltiness for him.</VERS>\r\n      <VERS vnumber=\"3\">If the sun be risen upon him, there shall be bloodguiltiness for him; he shall make restitution: if he have nothing, then he shall be sold for his theft.</VERS>\r\n      <VERS vnumber=\"4\">If the theft be found in his hand alive, whether it be ox, or ass, or sheep, he shall pay double.</VERS>\r\n      <VERS vnumber=\"5\">If a man shall cause a field or vineyard to be eaten, and shall let his beast loose, and it 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.</VERS>\r\n      <VERS vnumber=\"6\">If fire break out, and catch in thorns, so that the shocks of grain, or the standing grain, or the field are consumed; he that kindled the fire shall surely make restitution.</VERS>\r\n      <VERS vnumber=\"7\">If a man shall deliver unto his neighbor money or stuff to keep, and it be stolen out of the man`s house; if the thief be found, he shall pay double.</VERS>\r\n      <VERS vnumber=\"8\">If the thief be not found, then the master of the house shall come near unto God, [to see] whether he have not put his hand unto his neighbor`s goods.</VERS>\r\n      <VERS vnumber=\"9\">For every matter of trespass, whether it be for ox, for ass, for sheep, for raiment, [or] for any manner of lost thing, whereof one saith, This is it, the cause of both parties shall come before God; he whom God shall condemn shall pay double unto his neighbor.</VERS>\r\n      <VERS vnumber=\"10\">If a man deliver unto his neighbor 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:</VERS>\r\n      <VERS vnumber=\"11\">the oath of Jehovah shall be between them both, whether he hath not put his hand unto his neighbor`s goods; and the owner thereof shall accept it, and he shall not make restitution.</VERS>\r\n      <VERS vnumber=\"12\">But if it be stolen from him, he shall make restitution unto the owner thereof.</VERS>\r\n      <VERS vnumber=\"13\">If it be torn in pieces, let him bring it for witness: he shall not make good that which was torn.</VERS>\r\n      <VERS vnumber=\"14\">And if a man borrow aught of his neighbor, and it be hurt, or die, the owner thereof not being with it, he shall surely make restitution.</VERS>\r\n      <VERS vnumber=\"15\">If the owner thereof be with it, he shall not make it good: if it be a hired thing, it came for its hire.</VERS>\r\n      <VERS vnumber=\"16\">And if a man entice a virgin that is not betrothed, and lie with her, he shall surely pay a dowry for her to be his wife.</VERS>\r\n      <VERS vnumber=\"17\">If her father utterly refuse to give her unto him, he shall pay money according to the dowry of virgins.</VERS>\r\n      <VERS vnumber=\"18\">Thou shalt not suffer a sorceress to live.</VERS>\r\n      <VERS vnumber=\"19\">Whosoever lieth with a beast shall surely be put to death.</VERS>\r\n      <VERS vnumber=\"20\">He that sacrificeth unto any god, save unto Jehovah only, shall be utterly destroyed.</VERS>\r\n      <VERS vnumber=\"21\">And a sojourner shalt thou not wrong, neither shalt thou oppress him: for ye were sojourners in the land of Egypt.</VERS>\r\n      <VERS vnumber=\"22\">Ye shall not afflict any widow, or fatherless child.</VERS>\r\n      <VERS vnumber=\"23\">If thou afflict them at all, and they cry at all unto me, I will surely hear their cry;</VERS>\r\n      <VERS vnumber=\"24\">and my wrath shall wax hot, and I will kill you with the sword; and your wives shall be widows, and your children fatherless.</VERS>\r\n      <VERS vnumber=\"25\">If thou lend money to any of my people with thee that is poor, thou shalt not be to him as a creditor; neither shall ye lay upon him interest.</VERS>\r\n      <VERS vnumber=\"26\">If thou at all take thy neighbor`s garment to pledge, thou shalt restore it unto him before the sun goeth down:</VERS>\r\n      <VERS vnumber=\"27\">for that is his only covering, it is his garment 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.</VERS>\r\n      <VERS vnumber=\"28\">Thou shalt not revile God, nor curse a ruler of thy people.</VERS>\r\n      <VERS vnumber=\"29\">Thou shalt not delay to offer of thy harvest, and of the outflow of thy presses. The first-born of thy sons shalt thou give unto me.</VERS>\r\n      <VERS vnumber=\"30\">Likewise shalt thou do with thine oxen, [and] with thy sheep: seven days it shall be with its dam; on the eighth day thou shalt give it me.</VERS>\r\n      <VERS vnumber=\"31\">And ye shall be holy men unto me: therefore ye shall not eat any flesh that is torn of beasts in the field; ye shall cast it to the dogs.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"23\">\r\n      <VERS vnumber=\"1\">Thou shalt not take up a false report: put not thy hand with the wicked to be an unrighteous witness.</VERS>\r\n      <VERS vnumber=\"2\">Thou shalt not follow a multitude to do evil; neither shalt thou speak in a cause to turn aside after a multitude to wrest [justice]:</VERS>\r\n      <VERS vnumber=\"3\">neither shalt thou favor a poor man in his cause.</VERS>\r\n      <VERS vnumber=\"4\">If thou meet thine enemy`s ox or his ass going astray, thou shalt surely bring it back to him again.</VERS>\r\n      <VERS vnumber=\"5\">If thou see the ass of him that hateth thee lying under his burden, thou shalt forbear to leave him, thou shalt surely release [it] with him.</VERS>\r\n      <VERS vnumber=\"6\">Thou shalt not wrest the justice [due] to thy poor in his cause.</VERS>\r\n      <VERS vnumber=\"7\">Keep thee far from a false matter; and the innocent and righteous slay thou not: for I will not justify the wicked.</VERS>\r\n      <VERS vnumber=\"8\">And thou shalt take no bribe: for a bribe blindeth them that have sight, and perverteth the words of the righteous.</VERS>\r\n      <VERS vnumber=\"9\">And a sojourner shalt thou not oppress: for ye know the heart of a sojourner, seeing ye were sojourners in the land of Egypt.</VERS>\r\n      <VERS vnumber=\"10\">And six years thou shalt sow thy land, and shalt gather in the increase thereof:</VERS>\r\n      <VERS vnumber=\"11\">but the seventh year thou shalt let it rest and lie fallow; that the poor of thy people may eat: and what they leave the beast of the field shall eat. In like manner thou shalt deal with thy vineyard, [and] with thy oliveyard.</VERS>\r\n      <VERS vnumber=\"12\">Six days thou shalt do thy work, and on the seventh day thou shalt rest; that thine ox and thine ass may have rest, and the son of thy handmaid, and the sojourner, may be refreshed.</VERS>\r\n      <VERS vnumber=\"13\">And in all things that I have said unto you take ye heed: and make no mention of the name of other gods, neither let it be heard out of thy mouth.</VERS>\r\n      <VERS vnumber=\"14\">Three times thou shalt keep a feast unto me in the year.</VERS>\r\n      <VERS vnumber=\"15\">The feast of unleavened bread shalt thou keep: seven days thou shalt eat unleavened bread, as I commanded thee, at the time appointed in the month Abib (for in it thou camest out from Egypt); and none shall appear before me empty:</VERS>\r\n      <VERS vnumber=\"16\">and the feast of harvest, the first-fruits of thy labors, which thou sowest in the field: and the feast of ingathering, at the end of the year, when thou gatherest in thy labors out of the field.</VERS>\r\n      <VERS vnumber=\"17\">Three times in the year all thy males shall appear before the Lord Jehovah.</VERS>\r\n      <VERS vnumber=\"18\">Thou shalt not offer the blood of my sacrifice with leavened bread; neither shall the fat of my feast remain all night until the morning.</VERS>\r\n      <VERS vnumber=\"19\">The first of the first-fruits of thy ground thou shalt bring into the house of Jehovah thy God. Thou shalt not boil a kid in it mother`s milk.</VERS>\r\n      <VERS vnumber=\"20\">Behold, I send an angel before thee, to keep thee by the way, and to bring thee into the place which I have prepared.</VERS>\r\n      <VERS vnumber=\"21\">Take ye heed before him, and hearken unto his voice; provoke him not; for he will not pardon your transgression: for my name is in him.</VERS>\r\n      <VERS vnumber=\"22\">But if thou shalt indeed hearken unto his voice, and do all that I speak; then I will be an enemy unto thine enemies, and an adversary unto thine adversaries.</VERS>\r\n      <VERS vnumber=\"23\">For mine angel shall go before thee, and bring thee in unto the Amorite, and the Hittite, and the Perizzite, and the Canaanite, the Hivite, and the Jebusite: and I will cut them off.</VERS>\r\n      <VERS vnumber=\"24\">Thou shalt not bow down to their gods, nor serve them, nor do after their works; but thou shalt utterly overthrow them, and break in pieces their pillars.</VERS>\r\n      <VERS vnumber=\"25\">And ye shall serve Jehovah your God, and he will bless thy bread, and thy water; and I will take sickness away from the midst of thee.</VERS>\r\n      <VERS vnumber=\"26\">There shall none cast her young, nor be barren, in thy land: the number of thy days I will fulfil.</VERS>\r\n      <VERS vnumber=\"27\">I will send my terror before thee, and will discomfit all the people to whom thou shalt come, and I will make all thine enemies turn their backs unto thee.</VERS>\r\n      <VERS vnumber=\"28\">And I will send the hornet before thee, which shall drive out the Hivite, the Canaanite, and the Hittite, from before thee.</VERS>\r\n      <VERS vnumber=\"29\">I will not drive them out from before thee in one year, lest the land become desolate, and the beasts of the field multiply against thee.</VERS>\r\n      <VERS vnumber=\"30\">By little and little I will drive them out from before thee, until thou be increased, and inherit the land.</VERS>\r\n      <VERS vnumber=\"31\">And I will set thy border from the Red Sea even unto the sea of the Philistines, and from the wilderness unto the River: for I will deliver the inhabitants of the land into your hand: and thou shalt drive them out before thee.</VERS>\r\n      <VERS vnumber=\"32\">Thou shalt make no covenant with them, nor with their gods.</VERS>\r\n      <VERS vnumber=\"33\">They 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"24\">\r\n      <VERS vnumber=\"1\">And he said unto Moses, Come up unto Jehovah, thou, and Aaron, Nadab, and Abihu, and seventy of the elders of Israel; and worship ye afar off:</VERS>\r\n      <VERS vnumber=\"2\">and Moses alone shall come near unto Jehovah; but they shall not come near; neither shall the people go up with him.</VERS>\r\n      <VERS vnumber=\"3\">And Moses came and told the people all the words of Jehovah, and all the ordinances: and all the people answered with one voice, and said, All the words which Jehovah hath spoken will we do.</VERS>\r\n      <VERS vnumber=\"4\">And Moses wrote all the words of Jehovah, and rose up early in the morning, and builded an altar under the mount, and twelve pillars, according to the twelve tribes of Israel.</VERS>\r\n      <VERS vnumber=\"5\">And he sent young men of the children of Israel, who offered burnt-offerings, and sacrificed peace-offerings of oxen unto Jehovah.</VERS>\r\n      <VERS vnumber=\"6\">And Moses took half of the blood, and put it in basins; and half of the blood he sprinkled on the altar.</VERS>\r\n      <VERS vnumber=\"7\">And he took the book of the covenant, and read in the audience of the people: and they said, All that Jehovah hath spoken will we do, and be obedient.</VERS>\r\n      <VERS vnumber=\"8\">And Moses took the blood, and sprinkled it on the people, and said, Behold the blood of the covenant, which Jehovah hath made with you concerning all these words.</VERS>\r\n      <VERS vnumber=\"9\">Then went up Moses, and Aaron, Nadab, and Abihu, and seventy of the elders of Israel.</VERS>\r\n      <VERS vnumber=\"10\">And they saw the God of Israel; and there was under his feet as it were a paved work of sapphire stone, and as it were the very heaven for clearness.</VERS>\r\n      <VERS vnumber=\"11\">And upon the nobles of the children of Israel he laid not his hand: and they beheld God, and did eat and drink.</VERS>\r\n      <VERS vnumber=\"12\">And Jehovah said unto Moses, Come up to me into the mount, and be there: and I will give thee the tables of stone, and the law and the commandment, which I have written, that thou mayest teach them.</VERS>\r\n      <VERS vnumber=\"13\">And Moses rose up, and Joshua his minister: and Moses went up into the mount of God.</VERS>\r\n      <VERS vnumber=\"14\">And he said unto the elders, Tarry ye here for us, until we come again unto you: and, behold, Aaron and Hur are with you: whosoever hath a cause, let him come near unto them.</VERS>\r\n      <VERS vnumber=\"15\">And Moses went up into the mount, and the cloud covered the mount.</VERS>\r\n      <VERS vnumber=\"16\">And the glory of Jehovah 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.</VERS>\r\n      <VERS vnumber=\"17\">And the appearance of the glory of Jehovah was like devouring fire on the top of the mount in the eyes of the children of Israel.</VERS>\r\n      <VERS vnumber=\"18\">And Moses entered into the midst of the cloud, and went up into the mount: and Moses was in the mount forty days and forty nights.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"25\">\r\n      <VERS vnumber=\"1\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">Speak unto the children of Israel, that they take for me an offering: of every man whose heart maketh him willing ye shall take my offering.</VERS>\r\n      <VERS vnumber=\"3\">And this is the offering which ye shall take of them: gold, and silver, and brass,</VERS>\r\n      <VERS vnumber=\"4\">and blue, and purple, and scarlet, and fine linen, and goats` [hair],</VERS>\r\n      <VERS vnumber=\"5\">and rams` skins dyed red, and sealskins, and acacia wood,</VERS>\r\n      <VERS vnumber=\"6\">oil for the light, spices for the anointing oil, and for the sweet incense,</VERS>\r\n      <VERS vnumber=\"7\">onyx stones, and stones to be set, for the ephod, and for the breastplate.</VERS>\r\n      <VERS vnumber=\"8\">And let them make me a sanctuary, that I may dwell among them.</VERS>\r\n      <VERS vnumber=\"9\">According to all that I show thee, the pattern of the tabernacle, and the pattern of all the furniture thereof, even so shall ye make it.</VERS>\r\n      <VERS vnumber=\"10\">And they shall make an ark of acacia 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And thou shalt cast four rings of gold for it, and put them in the four feet thereof; and two rings shall be on the one side of it, and two rings on the other side of it.</VERS>\r\n      <VERS vnumber=\"13\">And thou shalt make staves of acacia wood, and overlay them with gold.</VERS>\r\n      <VERS vnumber=\"14\">And thou shalt put the staves into the rings on the sides of the ark, wherewith to bear the ark.</VERS>\r\n      <VERS vnumber=\"15\">The staves shall be in the rings of the ark: they shall not be taken from it.</VERS>\r\n      <VERS vnumber=\"16\">And thou shalt put into the ark the testimony which I shall give thee.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And thou shalt make two cherubim of gold; of beaten work shalt thou make them, at the two ends of the mercy-seat.</VERS>\r\n      <VERS vnumber=\"19\">And make one cherub at the one end, and one cherub at the other end: of one piece with the mercy-seat shall ye make the cherubim on the two ends thereof.</VERS>\r\n      <VERS vnumber=\"20\">And the cherubim shall spread out their wings on high, covering the mercy-seat with their wings, with their faces one to another; toward the mercy-seat shall the faces of the cherubim be.</VERS>\r\n      <VERS vnumber=\"21\">And thou shalt put the mercy-seat above upon the ark; and in the ark thou shalt put the testimony that I shall give thee.</VERS>\r\n      <VERS vnumber=\"22\">And there I will meet with thee, and I will commune with thee from above the mercy-seat, from between the two cherubim which are upon the ark of the testimony, of all things which I will give thee in commandment unto the children of Israel.</VERS>\r\n      <VERS vnumber=\"23\">And thou shalt make a table of acacia wood: two cubits [shall be] the length thereof, and a cubit the breadth thereof, and a cubit and a half the height thereof.</VERS>\r\n      <VERS vnumber=\"24\">And thou shalt overlay it with pure gold, and make thereto a crown of gold round about.</VERS>\r\n      <VERS vnumber=\"25\">And thou shalt make unto it a border of a handbreadth round about; and thou shalt make a golden crown to the border thereof round about.</VERS>\r\n      <VERS vnumber=\"26\">And thou shalt make for it four rings of gold, and put the rings in the four corners that are on the four feet thereof.</VERS>\r\n      <VERS vnumber=\"27\">Close by the border shall the rings be, for places for the staves to bear the table.</VERS>\r\n      <VERS vnumber=\"28\">And thou shalt make the staves of acacia wood, and overlay them with gold, that the table may be borne with them.</VERS>\r\n      <VERS vnumber=\"29\">And thou shalt make the dishes thereof, and the spoons thereof, and the flagons thereof, and the bowls thereof, wherewith to pour out: of pure gold shalt thou make them.</VERS>\r\n      <VERS vnumber=\"30\">And thou shalt set upon the table showbread before me alway.</VERS>\r\n      <VERS vnumber=\"31\">And thou shalt make a candlestick of pure gold: of beaten work shall the candlestick be made, even its base, and its shaft; its cups, its knops, and its flowers, shall be of one piece with it.</VERS>\r\n      <VERS vnumber=\"32\">And there shall be 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:</VERS>\r\n      <VERS vnumber=\"33\">three cups made like almond-blossoms in one branch, a knop and a flower; and three cups made like almond-blossoms in the other branch, a knop and a flower: so for the six branches going out of the candlestick:</VERS>\r\n      <VERS vnumber=\"34\">and in the candlestick four cups made like almond-blossoms, the knops thereof, and the flowers thereof;</VERS>\r\n      <VERS vnumber=\"35\">and a knop under two branches of one piece with it, and a knop under two branches of one piece with it, and a knop under two branches of one piece with it, for the six branches going out of the candlestick.</VERS>\r\n      <VERS vnumber=\"36\">Their knops and their branches shall be of one piece with it; the whole of it one beaten work of pure gold.</VERS>\r\n      <VERS vnumber=\"37\">And thou shalt make the lamps thereof, seven: and they shall light the lamps thereof, to give light over against it.</VERS>\r\n      <VERS vnumber=\"38\">And the snuffers thereof, and the snuffdishes thereof, shall be of pure gold.</VERS>\r\n      <VERS vnumber=\"39\">Of a talent of pure gold shall it be made, with all these vessels.</VERS>\r\n      <VERS vnumber=\"40\">And see that thou make them after their pattern, which hath been showed thee in the mount.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"26\">\r\n      <VERS vnumber=\"1\">Moreover thou shalt make the tabernacle with ten curtains; of fine twined linen, and blue, and purple, and scarlet, with cherubim the work of the skilful workman shalt thou make them.</VERS>\r\n      <VERS vnumber=\"2\">The length of each curtain shall be eight and twenty cubits, and the breadth of each curtain four cubits: all the curtains shall have one measure.</VERS>\r\n      <VERS vnumber=\"3\">Five curtains shall be coupled together one to another; and [the other] five curtains shall be coupled one to another.</VERS>\r\n      <VERS vnumber=\"4\">And 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 edge of the curtain that is outmost in the second coupling.</VERS>\r\n      <VERS vnumber=\"5\">Fifty loops shalt thou make in the one curtain, and fifty loops shalt thou make in the edge of the curtain that is in the second coupling; the loops shall be opposite one to another.</VERS>\r\n      <VERS vnumber=\"6\">And thou shalt make fifty clasps of gold, and couple the curtains one to another with the clasps: and the tabernacle shall be one [whole].</VERS>\r\n      <VERS vnumber=\"7\">And thou shalt make curtains of goats` [hair] for a tent over the tabernacle: eleven curtains shalt thou make them.</VERS>\r\n      <VERS vnumber=\"8\">The length of each curtain shall be thirty cubits, and the breadth of each curtain four cubits: the eleven curtains shall have one measure.</VERS>\r\n      <VERS vnumber=\"9\">And thou shalt couple five curtains by themselves, and six curtains by themselves, and shalt double over the sixth curtain in the forefront of the tent.</VERS>\r\n      <VERS vnumber=\"10\">And thou shalt make fifty loops on the edge of the one curtain that is outmost in the coupling, and fifty loops upon the edge of the curtain which is [outmost in] the second coupling.</VERS>\r\n      <VERS vnumber=\"11\">And thou shalt make fifty clasps of brass, and put the clasps into the loops, and couple the tent together, that it may be one.</VERS>\r\n      <VERS vnumber=\"12\">And the overhanging part that remaineth of the curtains of the tent, the half curtain that remaineth, shall hang over the back of the tabernacle.</VERS>\r\n      <VERS vnumber=\"13\">And the cubit on the one side, and the cubit on the other side, of that which remaineth in the length of the curtains of the tent, shall hang over the sides of the tabernacle on this side and on that side, to cover it.</VERS>\r\n      <VERS vnumber=\"14\">And thou shalt make a covering for the tent of rams` skins dyed red, and a covering of sealskins above.</VERS>\r\n      <VERS vnumber=\"15\">And thou shalt make the boards for the tabernacle of acacia wood, standing up.</VERS>\r\n      <VERS vnumber=\"16\">Ten cubits shall be the length of a board, and a cubit and a half the breadth of each board.</VERS>\r\n      <VERS vnumber=\"17\">Two tenons shall there be in each board, joined one to another: thus shalt thou make for all the boards of the tabernacle.</VERS>\r\n      <VERS vnumber=\"18\">And thou shalt make the boards for the tabernacle, twenty boards for the south side southward.</VERS>\r\n      <VERS vnumber=\"19\">And thou shalt make forty sockets of silver under the twenty boards; two sockets under one board for its two tenons, and two sockets under another board for its two tenons.</VERS>\r\n      <VERS vnumber=\"20\">And for the second side of the tabernacle, on the north side, twenty boards,</VERS>\r\n      <VERS vnumber=\"21\">and their forty sockets of silver; two sockets under one board, and two sockets under another board.</VERS>\r\n      <VERS vnumber=\"22\">And for the hinder part of the tabernacle westward thou shalt make six boards.</VERS>\r\n      <VERS vnumber=\"23\">And two boards shalt thou make for the corners of the tabernacle in the hinder part.</VERS>\r\n      <VERS vnumber=\"24\">And they shall be double beneath, and in like manner they shall be entire unto the top thereof unto one ring: thus shall it be for them both; they shall be for the two corners.</VERS>\r\n      <VERS vnumber=\"25\">And there shall be eight boards, and their sockets of silver, sixteen sockets; two sockets under one board, and two sockets under another board.</VERS>\r\n      <VERS vnumber=\"26\">And thou shalt make bars of acacia wood: five for the boards of the one side of the tabernacle,</VERS>\r\n      <VERS vnumber=\"27\">and 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 hinder part westward.</VERS>\r\n      <VERS vnumber=\"28\">And the middle bar in the midst of the boards shall pass through from end to end.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">And thou shalt rear up the tabernacle according to the fashion thereof which hath been showed thee in the mount.</VERS>\r\n      <VERS vnumber=\"31\">And thou shalt make a veil of blue, and purple, and scarlet, and fine twined linen: with cherubim the work of the skilful workman shall it be made.</VERS>\r\n      <VERS vnumber=\"32\">And thou shalt hang it upon four pillars of acacia overlaid with gold; their hooks [shall be] of gold, upon four sockets of silver.</VERS>\r\n      <VERS vnumber=\"33\">And thou shalt hang up the veil under the clasps, and shalt bring in thither within the veil the ark of the testimony: and the veil shall separate unto you between the holy place and the most holy.</VERS>\r\n      <VERS vnumber=\"34\">And thou shalt put the mercy-seat upon the ark of the testimony in the most holy place.</VERS>\r\n      <VERS vnumber=\"35\">And thou shalt set the table without the veil, 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.</VERS>\r\n      <VERS vnumber=\"36\">And thou shalt make a screen for the door of the Tent, of blue, and purple, and scarlet, and fine twined linen, the work of the embroiderer.</VERS>\r\n      <VERS vnumber=\"37\">And thou shalt make for the screen five pillars of acacia, and overlay them with gold: their hooks shall be of gold: and thou shalt cast five sockets of brass for them.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"27\">\r\n      <VERS vnumber=\"1\">And thou shalt make the altar of acacia wood, five cubits long, and five cubits broad; the altar shall be foursquare: and the height thereof shall be three cubits.</VERS>\r\n      <VERS vnumber=\"2\">And thou shalt make the horns of it upon the four corners thereof; the horns thereof shall be of one piece with it: and thou shalt overlay it with brass.</VERS>\r\n      <VERS vnumber=\"3\">And thou shalt make its pots to take away its ashes, and its shovels, and its basins, and its flesh-hooks, and its firepans: all the vessels thereof thou shalt make of brass.</VERS>\r\n      <VERS vnumber=\"4\">And thou shalt make for it a grating of network of brass: and upon the net shalt thou make four brazen rings in the four corners thereof.</VERS>\r\n      <VERS vnumber=\"5\">And thou shalt put it under the ledge round the altar beneath, that the net may reach halfway up the altar.</VERS>\r\n      <VERS vnumber=\"6\">And thou shalt make staves for the altar, staves of acacia wood, and overlay them with brass.</VERS>\r\n      <VERS vnumber=\"7\">And the staves thereof shall be put into the rings, and the staves shall be upon the two sides of the altar, in bearing it.</VERS>\r\n      <VERS vnumber=\"8\">Hollow with planks shalt thou make it: as it hath been showed thee in the mount, so shall they make it.</VERS>\r\n      <VERS vnumber=\"9\">And thou shalt make the court of the tabernacle: for the south side southward there shall be hangings for the court of fine twined linen a hundred cubits long for one side:</VERS>\r\n      <VERS vnumber=\"10\">and the pillars thereof shall be twenty, and their sockets twenty, of brass; the hooks of the pillars and their fillets [shall be] of silver.</VERS>\r\n      <VERS vnumber=\"11\">And likewise for the north side in length there shall be hangings a hundred cubits long, and the pillars thereof twenty, and their sockets twenty, of brass; the hooks of the pillars, and their fillets, of silver.</VERS>\r\n      <VERS vnumber=\"12\">And for the breadth of the court on the west side shall be hangings of fifty cubits; their pillars ten, and their sockets ten.</VERS>\r\n      <VERS vnumber=\"13\">And the breadth of the court on the east side eastward shall be fifty cubits.</VERS>\r\n      <VERS vnumber=\"14\">The hangings for the one side [of the gate] shall be fifteen cubits; their pillars three, and their sockets three.</VERS>\r\n      <VERS vnumber=\"15\">And for the other side shall be hangings of fifteen cubits; their pillars three, and their sockets three.</VERS>\r\n      <VERS vnumber=\"16\">And for the gate of the court shall be a screen of twenty cubits, of blue, and purple, and scarlet, and fine twined linen, the work of the embroiderer; their pillars four, and their sockets four.</VERS>\r\n      <VERS vnumber=\"17\">All the pillars of the court round about shall be filleted with silver; their hooks of silver, and their sockets of brass.</VERS>\r\n      <VERS vnumber=\"18\">The length of the court shall be a hundred cubits, and the breadth fifty every where, and the height five cubits, of fine twined linen, and their sockets of brass.</VERS>\r\n      <VERS vnumber=\"19\">All the instruments of the tabernacle in all the service thereof, and all the pins thereof, and all the pins of the court, shall be of brass.</VERS>\r\n      <VERS vnumber=\"20\">And thou shalt command the children of Israel, that they bring unto thee pure olive oil beaten for the light, to cause a lamp to burn continually.</VERS>\r\n      <VERS vnumber=\"21\">In the tent of meeting, without the veil which is before the testimony, Aaron and his sons shall keep it in order from evening to morning before Jehovah: it shall be a statue for ever throughout their generations on the behalf of the children of Israel.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"28\">\r\n      <VERS vnumber=\"1\">And bring thou near 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.</VERS>\r\n      <VERS vnumber=\"2\">And thou shalt make holy garments for Aaron thy brother, for glory and for beauty.</VERS>\r\n      <VERS vnumber=\"3\">And thou shalt speak unto all that are wise-hearted, whom I have filled with the spirit of wisdom, that they make Aaron`s garments to sanctify him, that he may minister unto me in the priest`s office.</VERS>\r\n      <VERS vnumber=\"4\">And these are the garments which they shall make: a breastplate, and an ephod, and a robe, and a coat of checker work, 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.</VERS>\r\n      <VERS vnumber=\"5\">And they shall take the gold, and the blue, and the purple, and the scarlet, and the fine linen.</VERS>\r\n      <VERS vnumber=\"6\">And they shall make the ephod of gold, of blue, and purple, scarlet, and fine twined linen, the work of the skilful workman.</VERS>\r\n      <VERS vnumber=\"7\">It shall have two shoulder-pieces joined to the two ends thereof, that it may be joined together.</VERS>\r\n      <VERS vnumber=\"8\">And the skilfully woven band, which is upon it, wherewith to gird it on, shall be like the work thereof [and] of the same piece; of gold, of blue, and purple, and scarlet, and fine twined linen.</VERS>\r\n      <VERS vnumber=\"9\">And thou shalt take two onyx stones, and grave on them the names of the children of Israel:</VERS>\r\n      <VERS vnumber=\"10\">six of their names on the one stone, and the names of the six that remain on the other stone, according to their birth.</VERS>\r\n      <VERS vnumber=\"11\">With the work of an engraver in stone, like the engravings of a signet, shalt thou engrave the two stones, according to the names of the children of Israel: thou shalt make them to be inclosed in settings of gold.</VERS>\r\n      <VERS vnumber=\"12\">And thou shalt put the two stones upon the shoulder-pieces of the ephod, to be stones of memorial for the children of Israel: and Aaron shall bear their names before Jehovah upon his two shoulders for a memorial.</VERS>\r\n      <VERS vnumber=\"13\">And thou shalt make settings of gold,</VERS>\r\n      <VERS vnumber=\"14\">and two chains of pure gold; like cords shalt thou make them, of wreathen work: and thou shalt put the wreathen chains on the settings.</VERS>\r\n      <VERS vnumber=\"15\">And thou shalt make a breastplate of judgment, the work of the skilful workman; like the work of the ephod thou shalt make it; of gold, of blue, and purple, and scarlet, and fine twined linen, shalt thou make it.</VERS>\r\n      <VERS vnumber=\"16\">Foursquare it shall be [and] double; a span shall be the length thereof, and a span the breadth thereof.</VERS>\r\n      <VERS vnumber=\"17\">And thou shalt set in it settings of stones, four rows of stones: a row of sardius, topaz, and carbuncle shall be the first row;</VERS>\r\n      <VERS vnumber=\"18\">and the second row an emerald, a sapphire, and a diamond;</VERS>\r\n      <VERS vnumber=\"19\">and the third row a jacinth, an agate, and an amethyst;</VERS>\r\n      <VERS vnumber=\"20\">and the fourth row a beryl, and an onyx, and a jasper: they shall be inclosed in gold in their settings.</VERS>\r\n      <VERS vnumber=\"21\">And the stones shall be according to the names of the children of Israel, twelve, according to their names; like the engravings of a signet, every one according to his name, they shall be for the twelve tribes.</VERS>\r\n      <VERS vnumber=\"22\">And thou shalt make upon the breastplate chains like cords, of wreathen work of pure gold.</VERS>\r\n      <VERS vnumber=\"23\">And thou shalt make upon the breastplate two rings of gold, and shalt put the two rings on the two ends of the breastplate.</VERS>\r\n      <VERS vnumber=\"24\">And thou shalt put the two wreathen chains of gold in the two rings at the ends of the breastplate.</VERS>\r\n      <VERS vnumber=\"25\">And the [other] two ends of the two wreathen chains thou shalt put on the two settings, and put them on the shoulder-pieces of the ephod in the forepart thereof.</VERS>\r\n      <VERS vnumber=\"26\">And thou shalt make two rings of gold, and thou shalt put them upon the two ends of the breastplate, upon the edge thereof, which is toward the side of the ephod inward.</VERS>\r\n      <VERS vnumber=\"27\">And thou shalt make two rings of gold, and shalt put them on the two shoulder-pieces of the ephod underneath, in the forepart thereof, close by the coupling thereof, above the skilfully woven band of the ephod.</VERS>\r\n      <VERS vnumber=\"28\">And they shall bind the breastplate by the rings thereof unto the rings of the ephod with a lace of blue, that it may be upon the skilfully woven band of the ephod, and that the breastplate be not loosed from the ephod.</VERS>\r\n      <VERS vnumber=\"29\">And 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 Jehovah continually.</VERS>\r\n      <VERS vnumber=\"30\">And 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 Jehovah: and Aaron shall bear the judgment of the children of Israel upon his heart before Jehovah continually.</VERS>\r\n      <VERS vnumber=\"31\">And thou shalt make the robe of the ephod all of blue.</VERS>\r\n      <VERS vnumber=\"32\">And it shall have a hole for the head in the midst thereof: it shall have a binding of woven work round about the hole of it, as it were the hole of a coat of mail, that it be not rent.</VERS>\r\n      <VERS vnumber=\"33\">And upon the skirts of it thou shalt make pomegranates of blue, and of purple, and of scarlet, round about the skirts thereof; and bells of gold between them round about:</VERS>\r\n      <VERS vnumber=\"34\">a golden bell and a pomegranate, a golden bell and a pomegranate, upon the skirts of the robe round about.</VERS>\r\n      <VERS vnumber=\"35\">And it shall be upon Aaron to minister: and the sound thereof shall be heard when he goeth in unto the holy place before Jehovah, and when he cometh out, that he die not.</VERS>\r\n      <VERS vnumber=\"36\">And thou shalt make a plate of pure gold, and grave upon it, like the engravings of a signet, HOLY TO JEHOVAH.</VERS>\r\n      <VERS vnumber=\"37\">And thou shalt put it on a lace of blue, and it shall be upon the mitre; upon the forefront of the mitre it shall be.</VERS>\r\n      <VERS vnumber=\"38\">And it shall be upon Aaron`s forehead, and Aaron shall 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 Jehovah.</VERS>\r\n      <VERS vnumber=\"39\">And thou shalt weave the coat in checker work of fine linen, and thou shalt make a mitre of fine linen, and thou shalt make a girdle, the work of the embroiderer.</VERS>\r\n      <VERS vnumber=\"40\">And for Aaron`s sons thou shalt make coats, and thou shalt make for them girdles, and head-tires shalt thou make for them, for glory and for beauty.</VERS>\r\n      <VERS vnumber=\"41\">And thou shalt put them upon Aaron thy brother, and upon 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.</VERS>\r\n      <VERS vnumber=\"42\">And thou shalt make them linen breeches to cover the flesh of their nakedness; from the loins even unto the thighs they shall reach:</VERS>\r\n      <VERS vnumber=\"43\">And they shall be upon Aaron, and upon his sons, when they go in unto the tent of meeting, 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 unto his seed after him.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"29\">\r\n      <VERS vnumber=\"1\">And 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,</VERS>\r\n      <VERS vnumber=\"2\">and unleavened bread, and cakes unleavened mingled with oil, and wafers unleavened anointed with oil: of fine wheaten flour shalt thou make them.</VERS>\r\n      <VERS vnumber=\"3\">And thou shalt put them into one basket, and bring them in the basket, with the bullock and the two rams.</VERS>\r\n      <VERS vnumber=\"4\">And Aaron and his sons thou shalt bring unto the door of the tent of meeting, and shalt wash them with water.</VERS>\r\n      <VERS vnumber=\"5\">And 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 skilfully woven band of the ephod;</VERS>\r\n      <VERS vnumber=\"6\">and thou shalt set the mitre upon his head, and put the holy crown upon the mitre.</VERS>\r\n      <VERS vnumber=\"7\">Then shalt thou take the anointing oil, and pour it upon his head, and anoint him.</VERS>\r\n      <VERS vnumber=\"8\">And thou shalt bring his sons, and put coats upon them.</VERS>\r\n      <VERS vnumber=\"9\">And thou shalt gird them with girdles, Aaron and his sons, and bind head-tires on them: and they shall have the priesthood by a perpetual statute: and thou shalt consecrate Aaron and his sons.</VERS>\r\n      <VERS vnumber=\"10\">And thou shalt bring the bullock before the tent of meeting: and Aaron and his sons shall lay their hands upon the head of the bullock.</VERS>\r\n      <VERS vnumber=\"11\">And thou shalt kill the bullock before Jehovah, at the door of the tent of meeting.</VERS>\r\n      <VERS vnumber=\"12\">And thou shalt take of the blood of the bullock, and put it upon the horns of the altar with thy finger; and thou shalt pour out all the blood at the base of the altar.</VERS>\r\n      <VERS vnumber=\"13\">And thou shalt take all the fat that covereth the inwards, and the caul upon the liver, and the two kidneys, and the fat that is upon them, and burn them upon the altar.</VERS>\r\n      <VERS vnumber=\"14\">But the flesh of the bullock, and its skin, and it dung, shalt thou burn with fire without the camp: it is a sin-offering.</VERS>\r\n      <VERS vnumber=\"15\">Thou shalt also take the one ram; and Aaron and his sons shall lay their hands upon the head of the ram.</VERS>\r\n      <VERS vnumber=\"16\">And thou shalt slay the ram, and thou shalt take its blood, and sprinkle it round about upon the altar.</VERS>\r\n      <VERS vnumber=\"17\">And thou shalt cut the ram into its pieces, and wash its inwards, and its legs, and put them with its pieces, and with its head.</VERS>\r\n      <VERS vnumber=\"18\">And thou shalt burn the whole ram upon the altar: it is a burnt-offering unto Jehovah; it is a sweet savor, an offering made by fire unto Jehovah.</VERS>\r\n      <VERS vnumber=\"19\">And thou shalt take the other ram; and Aaron and his sons shall lay their hands upon the head of the ram.</VERS>\r\n      <VERS vnumber=\"20\">Then shalt thou kill the ram, and take of its 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">Also thou shalt take of the ram the fat, and the fat tail, and the fat that covereth the inwards, and the caul of the liver, and the two kidneys, and the fat that is upon them, and the right thigh (for it is a ram of consecration),</VERS>\r\n      <VERS vnumber=\"23\">and one loaf of bread, and one cake of oiled bread, and one wafer, out of the basket of unleavened bread that is before Jehovah.</VERS>\r\n      <VERS vnumber=\"24\">And thou shalt put the whole upon the hands of Aaron, and upon the hands of his sons, and shalt wave them for a wave-offering before Jehovah.</VERS>\r\n      <VERS vnumber=\"25\">And thou shalt take them from their hands, and burn them on the altar upon the burnt-offering, for a sweet savor before Jehovah: it is an offering made by fire unto Jehovah.</VERS>\r\n      <VERS vnumber=\"26\">And thou shalt take the breast of Aaron`s ram of consecration, and wave it for a wave-offering before Jehovah: and it shall be thy portion.</VERS>\r\n      <VERS vnumber=\"27\">And thou shalt sanctify the breast of the wave-offering, and the thigh of the heave-offering, which is waved, and which is heaved up, of the ram of consecration, even of that which is for Aaron, and of that which is for his sons:</VERS>\r\n      <VERS vnumber=\"28\">and it shall be for Aaron and his sons as [their] portion for ever from the children of Israel; for it is a heave-offering: and it shall be a heave-offering from the children of Israel of the sacrifices of their peace-offerings, even their heave-offering unto Jehovah.</VERS>\r\n      <VERS vnumber=\"29\">And the holy garments of Aaron shall be for his sons after him, to be anointed in them, and to be consecrated in them.</VERS>\r\n      <VERS vnumber=\"30\">Seven days shall the son that is priest in his stead put them on, when he cometh into the tent of meeting to minister in the holy place.</VERS>\r\n      <VERS vnumber=\"31\">And thou shalt take the ram of consecration, and boil its flesh in a holy place.</VERS>\r\n      <VERS vnumber=\"32\">And Aaron and his sons shall eat the flesh of the ram, and the bread that is in the basket, at the door of the tent of meeting.</VERS>\r\n      <VERS vnumber=\"33\">And they shall eat those things wherewith atonement was made, to consecrate [and] to sanctify them: but a stranger shall not eat thereof, because they are holy.</VERS>\r\n      <VERS vnumber=\"34\">And if aught of the flesh of the consecration, 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.</VERS>\r\n      <VERS vnumber=\"35\">And thus shalt thou do unto Aaron, and to his sons, according to all that I have commanded thee: seven days shalt thou consecrate them.</VERS>\r\n      <VERS vnumber=\"36\">And every day shalt thou offer the bullock of sin-offering for atonement: and thou shalt cleanse the altar, when thou makest atonement for it; and thou shalt anoint it, to sanctify it.</VERS>\r\n      <VERS vnumber=\"37\">Seven days thou shalt make atonement for the altar, and sanctify it: and the altar shall be most holy; whatsoever toucheth the altar shall be holy.</VERS>\r\n      <VERS vnumber=\"38\">Now this is that which thou shalt offer upon the altar: two lambs a year old day by day continually.</VERS>\r\n      <VERS vnumber=\"39\">The one lamb thou shalt offer in the morning; and the other lamb thou shalt offer at even:</VERS>\r\n      <VERS vnumber=\"40\">and with the one lamb a tenth part [of an ephah] of fine flour mingled with the fourth part of a hin of beaten oil, and the fourth part of a hin of wine for a drink-offering.</VERS>\r\n      <VERS vnumber=\"41\">And the other lamb thou shalt offer at even, and shalt do thereto according to the meal-offering of the morning, and according to the drink-offering thereof, for a sweet savor, an offering made by fire unto Jehovah.</VERS>\r\n      <VERS vnumber=\"42\">It shall be a continual burnt-offering throughout your generations at the door of the tent of meeting before Jehovah, where I will meet with you, to speak there unto thee.</VERS>\r\n      <VERS vnumber=\"43\">And there I will meet with the children of Israel; and [the Tent] shall be sanctified by my glory.</VERS>\r\n      <VERS vnumber=\"44\">And I will sanctify the tent of meeting, and the altar: Aaron also and his sons will I sanctify, to minister to me in the priest`s office.</VERS>\r\n      <VERS vnumber=\"45\">And I will dwell among the children of Israel, and will be their God.</VERS>\r\n      <VERS vnumber=\"46\">And they shall know that I am Jehovah their God, that brought them forth out of the land of Egypt, that I might dwell among them: I am Jehovah their God.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"30\">\r\n      <VERS vnumber=\"1\">And thou shalt make an altar to burn incense upon: of acacia wood shalt thou make it.</VERS>\r\n      <VERS vnumber=\"2\">A 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 one piece with it.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And two golden rings shalt thou make for it under the crown thereof; upon the two ribs thereof, upon the two sides of it shalt thou make them; and they shall be for places for staves wherewith to bear it.</VERS>\r\n      <VERS vnumber=\"5\">And thou shalt make the staves of acacia wood, and overlay them with gold.</VERS>\r\n      <VERS vnumber=\"6\">And thou shalt put it before the veil that is by the ark of the testimony, before the mercy-seat that is over the testimony, where I will meet with thee.</VERS>\r\n      <VERS vnumber=\"7\">And Aaron shall burn thereon incense of sweet spices: every morning, when he dresseth the lamps, he shall burn it.</VERS>\r\n      <VERS vnumber=\"8\">And when Aaron lighteth the lamps at even, he shall burn it, a perpetual incense before Jehovah throughout your generations.</VERS>\r\n      <VERS vnumber=\"9\">Ye shall offer no strange incense thereon, nor burnt-offering, nor meal-offering; and ye shall pour no drink-offering thereon.</VERS>\r\n      <VERS vnumber=\"10\">And Aaron shall make atonement upon the horns of it once in the year; with the blood of the sin-offering of atonement once in the year shall he make atonement for it throughout your generations: it is most holy unto Jehovah.</VERS>\r\n      <VERS vnumber=\"11\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"12\">When thou takest the sum of the children of Israel, according to those that are numbered of them, then shall they give every man a ransom for his soul unto Jehovah, when thou numberest them; that there be no plague among them, when thou numberest them.</VERS>\r\n      <VERS vnumber=\"13\">This they shall give, every one that passeth over unto them that are numbered, half a shekel after the shekel of the sanctuary; (the shekel is twenty gerahs;) half a shekel for an offering to Jehovah.</VERS>\r\n      <VERS vnumber=\"14\">Every one that passeth over unto them that are numbered, from twenty years old and upward, shall give the offering of Jehovah.</VERS>\r\n      <VERS vnumber=\"15\">The rich shall not give more, and the poor shall not give less, than the half shekel, when they give the offering of Jehovah, to make atonement for your souls.</VERS>\r\n      <VERS vnumber=\"16\">And thou shalt take the atonement money from the children of Israel, and shalt appoint it for the service of the tent of meeting; that it may be a memorial for the children of Israel before Jehovah, to make atonement for your souls.</VERS>\r\n      <VERS vnumber=\"17\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"18\">Thou shalt also make a laver of brass, and the base thereof of brass, whereat to wash. And thou shalt put it between the tent of meeting and the altar, and thou shalt put water therein.</VERS>\r\n      <VERS vnumber=\"19\">And Aaron and his sons shall wash their hands and their feet thereat:</VERS>\r\n      <VERS vnumber=\"20\">when they go into the tent of meeting, they shall wash with water, that they die not; or when they come near to the altar to minister, to burn an offering made by fire unto Jehovah.</VERS>\r\n      <VERS vnumber=\"21\">So 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.</VERS>\r\n      <VERS vnumber=\"22\">Moreover Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"23\">Take thou also unto thee the chief spices: of flowing myrrh five hundred [shekels], and of sweet cinnamon half so much, even two hundred and fifty, and of sweet calamus two hundred and fifty,</VERS>\r\n      <VERS vnumber=\"24\">and of cassia five hundred, after the shekel of the sanctuary, and of olive oil a hin.</VERS>\r\n      <VERS vnumber=\"25\">And thou shalt make it a holy anointing oil, a perfume compounded after the art of the perfumer: it shall be a holy anointing oil.</VERS>\r\n      <VERS vnumber=\"26\">And thou shalt anoint therewith the tent of meeting, and the ark of the testimony,</VERS>\r\n      <VERS vnumber=\"27\">and the table and all the vessels thereof, and the candlestick and the vessels thereof, and the altar of incense,</VERS>\r\n      <VERS vnumber=\"28\">and the altar of burnt-offering with all the vessels thereof, and the laver and the base thereof.</VERS>\r\n      <VERS vnumber=\"29\">And thou shalt sanctify them, that they may be most holy: whatsoever toucheth them shall be holy.</VERS>\r\n      <VERS vnumber=\"30\">And thou shalt anoint Aaron and his sons, and sanctify them, that they may minister unto me in the priest`s office.</VERS>\r\n      <VERS vnumber=\"31\">And thou shalt speak unto the children of Israel, saying, This shall be a holy anointing oil unto me throughout your generations.</VERS>\r\n      <VERS vnumber=\"32\">Upon the flesh of man shall it not be poured, neither shall ye make any like it, according to the composition thereof: it is holy, [and] it shall be holy unto you.</VERS>\r\n      <VERS vnumber=\"33\">Whosoever compoundeth any like it, or whosoever putteth any of it upon a stranger, he shall be cut off from his people.</VERS>\r\n      <VERS vnumber=\"34\">And Jehovah said unto Moses, Take unto thee sweet spices, stacte, and onycha, and galbanum; sweet spices with pure frankincense: of each shall there be a like weight;</VERS>\r\n      <VERS vnumber=\"35\">and thou shalt make of it incense, a perfume after the art of the perfumer, seasoned with salt, pure [and] holy:</VERS>\r\n      <VERS vnumber=\"36\">and thou shalt beat some of it very small, and put of it before the testimony in the tent of meeting, where I will meet with thee: it shall be unto you most holy.</VERS>\r\n      <VERS vnumber=\"37\">And the incense which thou shalt make, according to the composition thereof ye shall not make for yourselves: it shall be unto thee holy for Jehovah.</VERS>\r\n      <VERS vnumber=\"38\">Whosoever shall make like unto that, to smell thereof, he shall be cut off from his people.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"31\">\r\n      <VERS vnumber=\"1\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">See, I have called by name Bezalel the son of Uri, the son of Hur, of the tribe of Judah:</VERS>\r\n      <VERS vnumber=\"3\">and I have filled him with the Spirit of God, in wisdom, and in understanding, and in knowledge, and in all manner of workmanship,</VERS>\r\n      <VERS vnumber=\"4\">to devise skilful works, to work in gold, and in silver, and in brass,</VERS>\r\n      <VERS vnumber=\"5\">and in cutting of stones for setting, and in carving of wood, to work in all manner of workmanship.</VERS>\r\n      <VERS vnumber=\"6\">And I, behold, I have appointed with him Oholiab, the son of Ahisamach, of the tribe of Dan; and in the heart of all that are wise-hearted I have put wisdom, that they may make all that I have commanded thee:</VERS>\r\n      <VERS vnumber=\"7\">the tent of meeting, and the ark of the testimony, and the mercy-seat that is thereupon, and all the furniture of the Tent,</VERS>\r\n      <VERS vnumber=\"8\">and the table and its vessels, and the pure candlestick with all its vessels, and the altar of incense,</VERS>\r\n      <VERS vnumber=\"9\">and the altar of burnt-offering with all its vessels, and the laver and its base,</VERS>\r\n      <VERS vnumber=\"10\">and the finely wrought garments, and the holy garments for Aaron the priest, and the garments of his sons, to minister in the priest`s office,</VERS>\r\n      <VERS vnumber=\"11\">and the anointing oil, and the incense of sweet spices for the holy place: according to all that I have commanded thee shall they do.</VERS>\r\n      <VERS vnumber=\"12\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"13\">Speak thou also unto the children of Israel, saying, Verily ye shall keep my sabbaths: for it is a sign between me and you throughout your generations; that ye may know that I am Jehovah who sanctifieth you.</VERS>\r\n      <VERS vnumber=\"14\">Ye shall keep the sabbath therefore; for it is holy unto you: every one that profaneth it shall surely be put to death; for whosoever doeth any work therein, that soul shall be cut off from among his people.</VERS>\r\n      <VERS vnumber=\"15\">Six days shall work be done, but on the seventh day is a sabbath of solemn rest, holy to Jehovah: whosoever doeth any work on the sabbath day, he shall surely be put to death.</VERS>\r\n      <VERS vnumber=\"16\">Wherefore the children of Israel shall keep the sabbath, to observe the sabbath throughout their generations, for a perpetual covenant.</VERS>\r\n      <VERS vnumber=\"17\">It is a sign between me and the children of Israel for ever: for in six days Jehovah made heaven and earth, and on the seventh day he rested, and was refreshed.</VERS>\r\n      <VERS vnumber=\"18\">And he gave unto Moses, when he had made an end of communing with him upon mount Sinai, the two tables of the testimony, tables of stone, written with the finger of God.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"32\">\r\n      <VERS vnumber=\"1\">And when the people saw that Moses delayed to come down from 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 know not what is become of him.</VERS>\r\n      <VERS vnumber=\"2\">And Aaron said unto them, Break off the golden rings, which are in the ears of your wives, of your sons, and of your daughters, and bring them unto me.</VERS>\r\n      <VERS vnumber=\"3\">And all the people brake off the golden rings which were in their ears, and brought them unto Aaron.</VERS>\r\n      <VERS vnumber=\"4\">And he received it at their hand, and fashioned it with a graving tool, and made it a molten calf: and they said, These are thy gods, O Israel, which brought thee up out of the land of Egypt.</VERS>\r\n      <VERS vnumber=\"5\">And when Aaron saw [this], he built an altar before it; and Aaron made proclamation, and said, To-morrow shall be a feast to Jehovah.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And Jehovah spake unto Moses, Go, get thee down; for thy people, that thou broughtest up out of the land of Egypt, have corrupted themselves:</VERS>\r\n      <VERS vnumber=\"8\">they 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 unto it, and said, These are thy gods, O Israel, which brought thee up out of the land of Egypt.</VERS>\r\n      <VERS vnumber=\"9\">And Jehovah said unto Moses, I have seen this people, and, behold, it is a stiffnecked people:</VERS>\r\n      <VERS vnumber=\"10\">now 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.</VERS>\r\n      <VERS vnumber=\"11\">And Moses besought Jehovah his God, and said, Jehovah, why doth thy wrath wax hot against thy people, that thou hast brought forth out of the land of Egypt with great power and with a mighty hand?</VERS>\r\n      <VERS vnumber=\"12\">Wherefore should the Egyptians speak, saying, For evil did he bring them forth, 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.</VERS>\r\n      <VERS vnumber=\"13\">Remember 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.</VERS>\r\n      <VERS vnumber=\"14\">And Jehovah repented of the evil which he said he would do unto his people.</VERS>\r\n      <VERS vnumber=\"15\">And Moses turned, and went down from the mount, with the two tables of the testimony in his hand; tables that were written on both their sides; on the one side and on the other were they written.</VERS>\r\n      <VERS vnumber=\"16\">And the tables were the work of God, and the writing was the writing of God, graven upon the tables.</VERS>\r\n      <VERS vnumber=\"17\">And when Joshua heard the noise of the people as they shouted, he said unto Moses, There is a noise of war in the camp.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And he took the calf which they had made, and burnt it with fire, and ground it to powder, and strewed it upon the water, and made the children of Israel drink of it.</VERS>\r\n      <VERS vnumber=\"21\">And Moses said unto Aaron, What did this people unto thee, that thou hast brought a great sin upon them?</VERS>\r\n      <VERS vnumber=\"22\">And Aaron said, Let not the anger of my lord wax hot: thou knowest the people, that they are [set] on evil.</VERS>\r\n      <VERS vnumber=\"23\">For 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 know not what is become of him.</VERS>\r\n      <VERS vnumber=\"24\">And I said unto them, Whosoever hath any gold, let them break it off: so they gave it me; and I cast it into the fire, and there came out this calf.</VERS>\r\n      <VERS vnumber=\"25\">And when Moses saw that the people were broken loose, (for Aaron had let them loose for a derision among their enemies,)</VERS>\r\n      <VERS vnumber=\"26\">then Moses stood in the gate of the camp, and said, Whoso is on Jehovah`s side, [let him come] unto me. And all the sons of Levi gathered themselves together unto him.</VERS>\r\n      <VERS vnumber=\"27\">And he said unto them, Thus saith Jehovah, the God of Israel, Put ye every man his sword upon his thigh, and go to and fro from gate to gate throughout the camp, and slay every man his brother, and every man his companion, and every man his neighbor.</VERS>\r\n      <VERS vnumber=\"28\">And the sons of Levi did according to the word of Moses: and there fell of the people that day about three thousand men.</VERS>\r\n      <VERS vnumber=\"29\">And Moses said, Consecrate yourselves to-day to Jehovah, yea, every man against his son, and against his brother; that he may bestow upon you a blessing this day.</VERS>\r\n      <VERS vnumber=\"30\">And 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 Jehovah; peradventure I shall make atonement for your sin.</VERS>\r\n      <VERS vnumber=\"31\">And Moses returned unto Jehovah, and said, Oh, this people have sinned a great sin, and have made them gods of gold.</VERS>\r\n      <VERS vnumber=\"32\">Yet now, if thou wilt forgive their sin-; and if not, blot me, I pray thee, out of thy book which thou hast written.</VERS>\r\n      <VERS vnumber=\"33\">And Jehovah said unto Moses, Whosoever hath sinned against me, him will I blot out of my book.</VERS>\r\n      <VERS vnumber=\"34\">And 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.</VERS>\r\n      <VERS vnumber=\"35\">And Jehovah smote the people, because they made the calf, which Aaron made.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"33\">\r\n      <VERS vnumber=\"1\">And Jehovah spake unto Moses, Depart, go up hence, thou and the people that thou hast brought up out of the land of Egypt, unto the land of which I sware unto Abraham, to Isaac, and to Jacob, saying, Unto thy seed will I give it:</VERS>\r\n      <VERS vnumber=\"2\">and 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:</VERS>\r\n      <VERS vnumber=\"3\">unto 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.</VERS>\r\n      <VERS vnumber=\"4\">And when the people heard these evil tidings, they mourned: and no man did put on him his ornaments.</VERS>\r\n      <VERS vnumber=\"5\">And Jehovah said unto Moses, Say unto the children of Israel, Ye are a stiffnecked people; if I go up into the midst of thee for one moment, I shall consume thee: therefore now put off thy ornaments from thee, that I may know what to do unto thee.</VERS>\r\n      <VERS vnumber=\"6\">And the children of Israel stripped themselves of their ornaments from mount Horeb onward.</VERS>\r\n      <VERS vnumber=\"7\">Now Moses used to take the tent and to pitch it without the camp, afar off from the camp; and he called it, The tent of meeting. And it came to pass, that every one that sought Jehovah went out unto the tent of meeting, which was without the camp.</VERS>\r\n      <VERS vnumber=\"8\">And it came to pass, when Moses went out unto the Tent, that all the people rose up, and stood, every man at his tent door, and looked after Moses, until he was gone into the Tent.</VERS>\r\n      <VERS vnumber=\"9\">And it came to pass, when Moses entered into the Tent, the pillar of cloud descended, and stood at the door of the Tent: and [Jehovah] spake with Moses.</VERS>\r\n      <VERS vnumber=\"10\">And all the people saw the pillar of cloud stand at the door of the Tent: and all the people rose up and worshipped, every man at his tent door.</VERS>\r\n      <VERS vnumber=\"11\">And Jehovah spake unto Moses face to face, as a man speaketh unto his friend. And he turned again into the camp: but his minister Joshua, the son of Nun, a young man, departed not out of the Tent.</VERS>\r\n      <VERS vnumber=\"12\">And Moses said unto Jehovah, 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 favor in my sight.</VERS>\r\n      <VERS vnumber=\"13\">Now therefore, I pray thee, if I have found favor in thy sight, show me now thy ways, that I may know thee, to the end that I may find favor in thy sight: and consider that this nation is thy people.</VERS>\r\n      <VERS vnumber=\"14\">And he said, My presence shall go [with thee], and I will give thee rest.</VERS>\r\n      <VERS vnumber=\"15\">And he said unto him, If thy presence go not [with me], carry us not up hence.</VERS>\r\n      <VERS vnumber=\"16\">For wherein now shall it be known that I have found favor in thy sight, I and thy people? is it not in that thou goest with us, so that we are separated, I and thy people, from all the people that are upon the face of the earth?</VERS>\r\n      <VERS vnumber=\"17\">And Jehovah said unto Moses, I will do this thing also that thou hast spoken; for thou hast found favor in my sight, and I know thee by name.</VERS>\r\n      <VERS vnumber=\"18\">And he said, Show me, I pray thee, thy glory.</VERS>\r\n      <VERS vnumber=\"19\">And he said, I will make all my goodness pass before thee, and will proclaim the name of Jehovah before thee; and I will be gracious to whom I will be gracious, and will show mercy on whom I will show mercy.</VERS>\r\n      <VERS vnumber=\"20\">And he said, Thou canst not see my face; for man shall not see me and live.</VERS>\r\n      <VERS vnumber=\"21\">and Jehovah said, Behold, there is a place by me, and thou shalt stand upon the rock:</VERS>\r\n      <VERS vnumber=\"22\">and it shall come to pass, while my glory passeth by, that I will put thee in a cleft of the rock, and will cover thee with my hand until I have passed by:</VERS>\r\n      <VERS vnumber=\"23\">and I will take away my hand, and thou shalt see my back; but my face shall not be seen.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"34\">\r\n      <VERS vnumber=\"1\">And Jehovah said unto Moses, Hew thee two tables of stone like unto the first: and I will write upon the tables the words that were on the first tables, which thou brakest.</VERS>\r\n      <VERS vnumber=\"2\">And be ready by the morning, and come up in the morning unto mount Sinai, and present thyself there to me on the top of the mount.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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 Jehovah had commanded him, and took in his hand two tables of stone.</VERS>\r\n      <VERS vnumber=\"5\">And Jehovah descended in the cloud, and stood with him there, and proclaimed the name of Jehovah.</VERS>\r\n      <VERS vnumber=\"6\">And Jehovah passed by before him, and proclaimed, Jehovah, Jehovah, a God merciful and gracious, slow to anger, and abundant in lovingkindness and truth,</VERS>\r\n      <VERS vnumber=\"7\">keeping lovingkindness 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, upon the third and upon the fourth generation.</VERS>\r\n      <VERS vnumber=\"8\">And Moses made haste, and bowed his head toward the earth, and worshipped.</VERS>\r\n      <VERS vnumber=\"9\">And he said, If now I have found favor in thy sight, O Lord, let the Lord, I pray thee, go in the midst of us; for it is a stiffnecked people; and pardon our iniquity and our sin, and take us for thine inheritance.</VERS>\r\n      <VERS vnumber=\"10\">And he said, Behold, I make a covenant: before all thy people I will do marvels, such as have not been wrought in all the earth, nor in any nation; and all the people among which thou art shall see the work of Jehovah; for it is a terrible thing that I do with thee.</VERS>\r\n      <VERS vnumber=\"11\">Observe 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.</VERS>\r\n      <VERS vnumber=\"12\">Take 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:</VERS>\r\n      <VERS vnumber=\"13\">but ye shall break down their altars, and dash in pieces their pillars, and ye shall cut down their Asherim;</VERS>\r\n      <VERS vnumber=\"14\">for thou shalt worship no other god: for Jehovah, whose name is Jealous, is a jealous God:</VERS>\r\n      <VERS vnumber=\"15\">lest thou make a covenant with the inhabitants of the land, and they play the harlot after their gods, and sacrifice unto their gods, and one call thee and thou eat of his sacrifice;</VERS>\r\n      <VERS vnumber=\"16\">and thou take of their daughters unto thy sons, and their daughters play the harlot after their gods, and make thy sons play the harlot after their gods.</VERS>\r\n      <VERS vnumber=\"17\">Thou shalt make thee no molten gods.</VERS>\r\n      <VERS vnumber=\"18\">The feast of unleavened bread shalt thou keep. Seven days thou shalt eat unleavened bread, as I commanded thee, at the time appointed in the month Abib; for in the month Abib thou camest out from Egypt.</VERS>\r\n      <VERS vnumber=\"19\">All that openeth the womb is mine; and all thy cattle that is male, the firstlings of cow and sheep.</VERS>\r\n      <VERS vnumber=\"20\">And the firstling of an ass thou shalt redeem with a lamb: and if thou wilt not redeem it, then thou shalt break its neck. All the first-born of thy sons thou shalt redeem. And none shall appear before me empty.</VERS>\r\n      <VERS vnumber=\"21\">Six days thou shalt work, but on the seventh day thou shalt rest: in plowing time and in harvest thou shalt rest.</VERS>\r\n      <VERS vnumber=\"22\">And thou shalt observe the feast of weeks, [even] of the first-fruits of wheat harvest, and the feast of ingathering at the year`s end.</VERS>\r\n      <VERS vnumber=\"23\">Three times in the year shall all thy males appear before the Lord Jehovah, the God of Israel.</VERS>\r\n      <VERS vnumber=\"24\">For I will cast out nations before thee, and enlarge thy borders: neither shall any man desire thy land, when thou goest up to appear before Jehovah thy God three times in the year.</VERS>\r\n      <VERS vnumber=\"25\">Thou shalt not offer the blood of my sacrifice with leavened bread; neither shall the sacrifice of the feast of the passover be left unto the morning.</VERS>\r\n      <VERS vnumber=\"26\">The first of the first-fruits of thy ground thou shalt bring unto the house of Jehovah thy God. Thou shalt not boil a kid in its mother`s milk.</VERS>\r\n      <VERS vnumber=\"27\">And Jehovah said unto Moses, Write thou these words: for after the tenor of these words I have made a covenant with thee and with Israel.</VERS>\r\n      <VERS vnumber=\"28\">And he was there with Jehovah 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.</VERS>\r\n      <VERS vnumber=\"29\">And it came to pass, when Moses came down from mount Sinai with the two tables of the testimony in Moses` hand, when he came down from the mount, that Moses knew not that the skin of his face shone by reason of his speaking with him.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">And Moses called unto them; and Aaron and all the rulers of the congregation returned unto him: and Moses spake to them.</VERS>\r\n      <VERS vnumber=\"32\">And afterward all the children of Israel came nigh: and he gave them in commandment all that Jehovah had spoken with him in mount Sinai.</VERS>\r\n      <VERS vnumber=\"33\">And when Moses had done speaking with them, he put a veil on his face.</VERS>\r\n      <VERS vnumber=\"34\">But when Moses went in before Jehovah to speak with him, he took the veil off, until he came out; and he came out, and spake unto the children of Israel that which he was commanded.</VERS>\r\n      <VERS vnumber=\"35\">And the children of Israel saw the face of Moses, that the skin of Moses` face shone: and Moses put the veil upon his face again, until he went in to speak with him.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"35\">\r\n      <VERS vnumber=\"1\">And Moses assembled all the congregation of the children of Israel, and said unto them, These are the words which Jehovah hath commanded, that ye should do them.</VERS>\r\n      <VERS vnumber=\"2\">Six days shall work be done; but on the seventh day there shall be to you a holy day, a sabbath of solemn rest to Jehovah: whosoever doeth any work therein shall be put to death.</VERS>\r\n      <VERS vnumber=\"3\">Ye shall kindle no fire throughout your habitations upon the sabbath day.</VERS>\r\n      <VERS vnumber=\"4\">And Moses spake unto all the congregation of the children of Israel, saying, This is the thing which Jehovah commanded, saying,</VERS>\r\n      <VERS vnumber=\"5\">Take ye from among you an offering unto Jehovah; whosoever is of a willing heart, let him bring it, Jehovah`s offering: gold, and silver, and brass,</VERS>\r\n      <VERS vnumber=\"6\">and blue, and purple, and scarlet, and fine linen, and goats` [hair],</VERS>\r\n      <VERS vnumber=\"7\">and rams` skins dyed red, and sealskins, and acacia wood,</VERS>\r\n      <VERS vnumber=\"8\">and oil for the light, and spices for the anointing oil, and for the sweet incense,</VERS>\r\n      <VERS vnumber=\"9\">and onyx stones, and stones to be set, for the ephod, and for the breastplate.</VERS>\r\n      <VERS vnumber=\"10\">And let every wise-hearted man among you come, and make all that Jehovah hath commanded:</VERS>\r\n      <VERS vnumber=\"11\">the tabernacle, its tent, and its covering, its clasps, and its boards, its bars, its pillars, and its sockets;</VERS>\r\n      <VERS vnumber=\"12\">the ark, and the staves thereof, the mercy-seat, and the veil of the screen;</VERS>\r\n      <VERS vnumber=\"13\">the table, and its staves, and all its vessels, and the showbread;</VERS>\r\n      <VERS vnumber=\"14\">the candlestick also for the light, and its vessels, and its lamps, and the oil for the light;</VERS>\r\n      <VERS vnumber=\"15\">and the altar of incense, and its staves, and the anointing oil, and the sweet incense, and the screen for the door, at the door of the tabernacle;</VERS>\r\n      <VERS vnumber=\"16\">the altar of burnt-offering, with its grating of brass, it staves, and all its vessels, the laver and its base;</VERS>\r\n      <VERS vnumber=\"17\">the hangings of the court, the pillars thereof, and their sockets, and the screen for the gate of the court;</VERS>\r\n      <VERS vnumber=\"18\">the pins of the tabernacle, and the pins of the court, and their cords;</VERS>\r\n      <VERS vnumber=\"19\">the finely wrought garments, for ministering in the holy place, the holy garments for Aaron the priest, and the garments of his sons, to minister in the priest`s office.</VERS>\r\n      <VERS vnumber=\"20\">And all the congregation of the children of Israel departed from the presence of Moses.</VERS>\r\n      <VERS vnumber=\"21\">And they came, every one whose heart stirred him up, and every one whom his spirit made willing, [and] brought Jehovah`s offering, for the work of the tent of meeting, and for all the service thereof, and for the holy garments.</VERS>\r\n      <VERS vnumber=\"22\">And they came, both men and women, as many as were willing-hearted, [and] brought brooches, and ear-rings, and signet-rings, and armlets, all jewels of gold; even every man that offered an offering of gold unto Jehovah.</VERS>\r\n      <VERS vnumber=\"23\">And every man, with whom was found blue, and purple, and scarlet, and fine linen, and goats` [hair], and rams` skins dyed red, and sealskins, brought them.</VERS>\r\n      <VERS vnumber=\"24\">Every one that did offer an offering of silver and brass brought Jehovah`s offering; and every man, with whom was found acacia wood for any work of the service, brought it.</VERS>\r\n      <VERS vnumber=\"25\">And all the women that were wise-hearted did spin with their hands, and brought that which they had spun, the blue, and the purple, the scarlet, and the fine linen.</VERS>\r\n      <VERS vnumber=\"26\">And all the women whose heart stirred them up in wisdom spun the goats` [hair].</VERS>\r\n      <VERS vnumber=\"27\">And the rulers brought the onyx stones, and the stones to be set, for the ephod, and for the breastplate;</VERS>\r\n      <VERS vnumber=\"28\">and the spice, and the oil; for the light, and for the anointing oil, and for the sweet incense.</VERS>\r\n      <VERS vnumber=\"29\">The children of Israel brought a freewill-offering unto Jehovah; every man and woman, whose heart made them willing to bring for all the work, which Jehovah had commanded to be made by Moses.</VERS>\r\n      <VERS vnumber=\"30\">And Moses said unto the children of Israel, See, Jehovah hath called by name Bezalel the son of Uri, the son of Hur, of the tribe of Judah.</VERS>\r\n      <VERS vnumber=\"31\">And he hath filled him with the Spirit of God, in wisdom, in understanding, and in knowledge, and in all manner of workmanship;</VERS>\r\n      <VERS vnumber=\"32\">and to devise skilful works, to work in gold, and in silver, and in brass,</VERS>\r\n      <VERS vnumber=\"33\">and in cutting of stones for setting, and in carving of wood, to work in all manner of skilful workmanship.</VERS>\r\n      <VERS vnumber=\"34\">And he hath put in his heart that he may teach, both he, and Oholiab, the son of Ahisamach, of the tribe of Dan.</VERS>\r\n      <VERS vnumber=\"35\">Them hath he filled with wisdom of heart, to work all manner of workmanship, of the engraver, and of the skilful 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 workmanship, and of those that devise skilful works.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"36\">\r\n      <VERS vnumber=\"1\">And Bezalel and Oholiab shall work, and every wise-hearted man, in whom Jehovah hath put wisdom and understanding to know how to work all the work for the service of the sanctuary, according to all that Jehovah hath commanded.</VERS>\r\n      <VERS vnumber=\"2\">And Moses called Bezalel and Oholiab, and every wise-hearted man, in whose heart Jehovah had put wisdom, even every one whose heart stirred him up to come unto the work to do it:</VERS>\r\n      <VERS vnumber=\"3\">and they received of Moses all the offering which the children of Israel had brought for the work of the service of the sanctuary, wherewith to make it. And they brought yet unto him freewill-offerings every morning.</VERS>\r\n      <VERS vnumber=\"4\">And all the wise men, that wrought all the work of the sanctuary, came every man from his work which they wrought.</VERS>\r\n      <VERS vnumber=\"5\">And they spake unto Moses, saying, The people bring much more than enough for the service of the work which Jehovah commanded to make.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">For the stuff they had was sufficient for all the work to make it, and too much.</VERS>\r\n      <VERS vnumber=\"8\">And all the wise-hearted men among them that wrought the work made the tabernacle with ten curtains; of fine twined linen, and blue, and purple, and scarlet, with cherubim, the work of the skilful workman, [Bezalel] made them.</VERS>\r\n      <VERS vnumber=\"9\">The length of each curtain was eight and twenty cubits, and the breadth of each curtain four cubits: all the curtains had one measure.</VERS>\r\n      <VERS vnumber=\"10\">And he coupled five curtains one to another: and [the other] five curtains he coupled one to another.</VERS>\r\n      <VERS vnumber=\"11\">And he made loops of blue upon the edge of the one curtain from the selvedge in the coupling: likewise he made in the edge of the curtain that was outmost in the second coupling.</VERS>\r\n      <VERS vnumber=\"12\">Fifty loops made he in the one curtain, and fifty loops made he in the edge of the curtain that was in the second coupling: the loops were opposite one to another.</VERS>\r\n      <VERS vnumber=\"13\">And he made fifty clasps of gold, and coupled the curtains one to another with the clasps: so the tabernacle was one.</VERS>\r\n      <VERS vnumber=\"14\">And he made curtains of goats` [hair] for a tent over the tabernacle: eleven curtains he made them.</VERS>\r\n      <VERS vnumber=\"15\">The length of each curtain was thirty cubits, and four cubits the breadth of each curtain: the eleven curtains had one measure.</VERS>\r\n      <VERS vnumber=\"16\">And he coupled five curtains by themselves, and six curtains by themselves.</VERS>\r\n      <VERS vnumber=\"17\">And he made fifty loops on the edge of the curtain that was outmost in the coupling, and fifty loops made he upon the edge of the curtain which was [outmost in] the second coupling.</VERS>\r\n      <VERS vnumber=\"18\">And he made fifty clasps of brass to couple the tent together, that it might be one.</VERS>\r\n      <VERS vnumber=\"19\">And he made a covering for the tent of rams` skins dyed red, and a covering of sealskins above.</VERS>\r\n      <VERS vnumber=\"20\">And he made the boards for the tabernacle, of acacia wood, standing up.</VERS>\r\n      <VERS vnumber=\"21\">Ten cubits was the length of a board, and a cubit and a half the breadth of each board.</VERS>\r\n      <VERS vnumber=\"22\">Each board had two tenons, joined one to another: thus did he make for all the boards of the tabernacle.</VERS>\r\n      <VERS vnumber=\"23\">And he made the boards for the tabernacle: twenty boards for the south side southward.</VERS>\r\n      <VERS vnumber=\"24\">And he made forty sockets of silver under the twenty boards; two sockets under one board for its two tenons, and two sockets under another board for its two tenons.</VERS>\r\n      <VERS vnumber=\"25\">And for the second side of the tabernacle, on the north side, he made twenty boards,</VERS>\r\n      <VERS vnumber=\"26\">and their forty sockets of silver; two sockets under one board, and two sockets under another board.</VERS>\r\n      <VERS vnumber=\"27\">And for the hinder part of the tabernacle westward he made six boards.</VERS>\r\n      <VERS vnumber=\"28\">And two boards made he for the corners of the tabernacle in the hinder part.</VERS>\r\n      <VERS vnumber=\"29\">And they were double beneath; and in like manner they were entire unto the top thereof unto one ring: thus he did to both of them in the two corners.</VERS>\r\n      <VERS vnumber=\"30\">And there were eight boards, and their sockets of silver, sixteen sockets; under every board two sockets.</VERS>\r\n      <VERS vnumber=\"31\">And he made bars of acacia wood; five for the boards of the one side of the tabernacle,</VERS>\r\n      <VERS vnumber=\"32\">and five bars for the boards of the other side of the tabernacle, and five bars for the boards of the tabernacle for the hinder part westward.</VERS>\r\n      <VERS vnumber=\"33\">And he made the middle bar to pass through in the midst of the boards from the one end to the other.</VERS>\r\n      <VERS vnumber=\"34\">And he overlaid the boards with gold, and made their rings of gold for places for the bars, and overlaid the bars with gold.</VERS>\r\n      <VERS vnumber=\"35\">And he made the veil of blue, and purple, and scarlet, and fine twined linen: with cherubim, the work of the skilful workman, made he it.</VERS>\r\n      <VERS vnumber=\"36\">And he made thereunto four pillars of acacia, and overlaid them with gold: their hooks were of gold; And he cast for them four sockets of silver.</VERS>\r\n      <VERS vnumber=\"37\">And he made a screen for the door of the Tent, of blue, and purple, and scarlet, and fine twined linen, the work of the embroiderer;</VERS>\r\n      <VERS vnumber=\"38\">and the five pillars of it with their hooks: and he overlaid their capitals and their fillets with gold; and their five sockets were of brass.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"37\">\r\n      <VERS vnumber=\"1\">And Bezalel made the ark of acacia 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:</VERS>\r\n      <VERS vnumber=\"2\">and he overlaid it with pure gold within and without, and made a crown of gold to it round about.</VERS>\r\n      <VERS vnumber=\"3\">And he cast for it four rings of gold, in the four feet thereof; even two rings on the one side of it, and two rings on the other side of it.</VERS>\r\n      <VERS vnumber=\"4\">And he made staves of acacia wood, and overlaid them with gold.</VERS>\r\n      <VERS vnumber=\"5\">And he put the staves into the rings on the sides of the ark, to bear the ark.</VERS>\r\n      <VERS vnumber=\"6\">And he made a mercy-seat of pure gold: two cubits and a half [was] the length thereof, and a cubit and a half the breadth thereof.</VERS>\r\n      <VERS vnumber=\"7\">And he made two cherubim of gold; of beaten work made he them, at the two ends of the mercy-seat;</VERS>\r\n      <VERS vnumber=\"8\">one cherub at the one end, and one cherub at the other end: of one piece with the mercy-seat made he the cherubim at the two ends thereof.</VERS>\r\n      <VERS vnumber=\"9\">And the cherubim spread out their wings on high, covering the mercy-seat with their wings, with their faces one to another; toward the mercy-seat were the faces of the cherubim.</VERS>\r\n      <VERS vnumber=\"10\">And he made the table of acacia wood: two cubits [was] the length thereof, and a cubit the breadth thereof, and a cubit and a half the height thereof:</VERS>\r\n      <VERS vnumber=\"11\">and he overlaid it with pure gold, and made thereto a crown of gold round about.</VERS>\r\n      <VERS vnumber=\"12\">And he made unto it a border of a handbreadth round about, and made a golden crown to the border thereof round about.</VERS>\r\n      <VERS vnumber=\"13\">And he cast for it four rings of gold, and put the rings in the four corners that were on the four feet thereof.</VERS>\r\n      <VERS vnumber=\"14\">Close by the border were the rings, the places for the staves to bear the table.</VERS>\r\n      <VERS vnumber=\"15\">And he made the staves of acacia wood, and overlaid them with gold, to bear the table.</VERS>\r\n      <VERS vnumber=\"16\">And he made the vessels which were upon the table, the dishes thereof, and the spoons thereof, and the bowls thereof, and the flagons thereof, wherewith to pour out, of pure gold.</VERS>\r\n      <VERS vnumber=\"17\">And he made the candlestick of pure gold: of beaten work made he the candlestick, even its base, and its shaft; its cups, it knops, and its flowers, were of one piece with it:</VERS>\r\n      <VERS vnumber=\"18\">and there were 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:</VERS>\r\n      <VERS vnumber=\"19\">three cups made like almond-blossoms in one branch, a knop and a flower, and three cups made like almond-blossoms in the other branch, a knop and a flower: so for the six branches going out of the candlestick.</VERS>\r\n      <VERS vnumber=\"20\">And in the candlestick were four cups made like almond-blossoms, the knops thereof, and the flowers thereof;</VERS>\r\n      <VERS vnumber=\"21\">and a knop under two branches of one piece with it, and a knop under two branches of one piece with it, and a knop under two branches of one piece with it, for the six branches going out of it.</VERS>\r\n      <VERS vnumber=\"22\">Their knops and their branches were of one piece with it: the whole of it was one beaten work of pure gold.</VERS>\r\n      <VERS vnumber=\"23\">And he made the lamps thereof, seven, and the snuffers thereof, and the snuffdishes thereof, of pure gold.</VERS>\r\n      <VERS vnumber=\"24\">Of a talent of pure gold made he it, and all the vessels thereof.</VERS>\r\n      <VERS vnumber=\"25\">And he made the altar of incense of acacia wood: a cubit was the length thereof, and a cubit the breadth thereof, foursquare; and two cubits was the height thereof; the horns thereof were of one piece with it.</VERS>\r\n      <VERS vnumber=\"26\">And he overlaid it with pure gold, the top thereof, and the sides thereof round about, and the horns of it: and he made unto it a crown of gold round about.</VERS>\r\n      <VERS vnumber=\"27\">And he made for it two golden rings under the crown thereof, upon the two ribs thereof, upon the two sides of it, for places for staves wherewith to bear it.</VERS>\r\n      <VERS vnumber=\"28\">And he made the staves of acacia wood, and overlaid them with gold.</VERS>\r\n      <VERS vnumber=\"29\">And he made the holy anointing oil, and the pure incense of sweet spices, after the art of the perfumer.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"38\">\r\n      <VERS vnumber=\"1\">And he made the altar of burnt-offering of acacia wood: five cubits was the length thereof, and five cubits the breadth thereof, foursquare; and three cubits the height thereof.</VERS>\r\n      <VERS vnumber=\"2\">And he made the horns thereof upon the four corners of it; the horns thereof were of one piece with it: and he overlaid it with brass.</VERS>\r\n      <VERS vnumber=\"3\">And he made all the vessels of the altar, the pots, and the shovels, and the basins, the flesh-hooks, and the firepans: all the vessels thereof made he of brass.</VERS>\r\n      <VERS vnumber=\"4\">And he made for the altar a grating of network of brass, under the ledge round it beneath, reaching halfway up.</VERS>\r\n      <VERS vnumber=\"5\">And he cast four rings for the four ends of the grating of brass, to be places for the staves.</VERS>\r\n      <VERS vnumber=\"6\">And he made the staves of acacia wood, and overlaid them with brass.</VERS>\r\n      <VERS vnumber=\"7\">And he put the staves into the rings on the sides of the altar, wherewith to bear it; he made it hollow with planks.</VERS>\r\n      <VERS vnumber=\"8\">And he made the laver of brass, and the base thereof of brass, of the mirrors of the ministering women that ministered at the door of the tent of meeting.</VERS>\r\n      <VERS vnumber=\"9\">And he made the court: for the south side southward the hangings of the court were of fine twined linen, a hundred cubits;</VERS>\r\n      <VERS vnumber=\"10\">their pillars were twenty, and their sockets twenty, of brass; the hooks of the pillars and their fillets were of silver.</VERS>\r\n      <VERS vnumber=\"11\">And for the north side a hundred cubits, their pillars twenty, and their sockets twenty, of brass; the hooks of the pillars, and their fillets, of silver.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And for the east side eastward fifty cubits.</VERS>\r\n      <VERS vnumber=\"14\">The hangings for the one side [of the gate] were fifteen cubits; their pillars three, and their sockets three;</VERS>\r\n      <VERS vnumber=\"15\">and so for the other side: on this hand and that hand by the gate of the court were hangings of fifteen cubits; their pillars three, and their sockets three.</VERS>\r\n      <VERS vnumber=\"16\">All the hangings of the court round about were of fine twined linen.</VERS>\r\n      <VERS vnumber=\"17\">And the sockets for the pillars were of brass; the hooks of the pillars, and their fillets, of silver; and the overlaying of their capitals, of silver; and all the pillars of the court were filleted with silver.</VERS>\r\n      <VERS vnumber=\"18\">And the screen for the gate of the court was the work of the embroiderer, 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.</VERS>\r\n      <VERS vnumber=\"19\">And their pillars were four, and their sockets four, of brass; their hooks of silver, and the overlaying of their capitals, and their fillets, of silver.</VERS>\r\n      <VERS vnumber=\"20\">And all the pins of the tabernacle, and of the court round about, were of brass.</VERS>\r\n      <VERS vnumber=\"21\">This is the sum of [the things for] the tabernacle, even the tabernacle of the testimony, as they were counted, according to the commandment of Moses, for the service of the Levites, by the hand of Ithamar, the son of Aaron the priest.</VERS>\r\n      <VERS vnumber=\"22\">And Bezalel the son of Uri, the son of Hur, of the tribe of Judah, made all that Jehovah commanded Moses.</VERS>\r\n      <VERS vnumber=\"23\">And with him was Oholiab, the son of Ahisamach, of the tribe of Dan, an engraver, and a skilful workman, and an embroiderer in blue, and in purple, and in scarlet, and in fine linen.</VERS>\r\n      <VERS vnumber=\"24\">All the gold that was used for the work in all the work of the sanctuary, even the gold of the offering, was twenty and nine talents, and seven hundred and thirty shekels, after the shekel of the sanctuary.</VERS>\r\n      <VERS vnumber=\"25\">And the silver of them that were numbered of the congregation was a hundred talents, and a thousand seven hundred and threescore and fifteen shekels, after the shekel of the sanctuary:</VERS>\r\n      <VERS vnumber=\"26\">a beka a head, [that is], half a shekel, after the shekel of the sanctuary, for every one that passed over to them that were numbered, from twenty years old and upward, for six hundred thousand and three thousand and five hundred and fifty men.</VERS>\r\n      <VERS vnumber=\"27\">And the hundred talents of silver were for casting the sockets of the sanctuary, and the sockets of the veil; a hundred sockets for the hundred talents, a talent for a socket.</VERS>\r\n      <VERS vnumber=\"28\">And of the thousand seven hundred seventy and five [shekels] he made hooks for the pillars, and overlaid their capitals, and made fillets for them.</VERS>\r\n      <VERS vnumber=\"29\">And the brass of the offering was seventy talents, and two thousand and four hundred shekels.</VERS>\r\n      <VERS vnumber=\"30\">And therewith he made the sockets to the door of the tent of meeting, and the brazen altar, and the brazen grating for it, and all the vessels of the altar,</VERS>\r\n      <VERS vnumber=\"31\">and the sockets of the court round about, and the sockets of the gate of the court, and all the pins of the tabernacle, and all the pins of the court round about.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"39\">\r\n      <VERS vnumber=\"1\">And of the blue, and purple, and scarlet, they made finely wrought garments, for ministering in the holy place, and made the holy garments for Aaron; as Jehovah commanded Moses.</VERS>\r\n      <VERS vnumber=\"2\">And he made the ephod of gold, blue, and purple, and scarlet, and fine twined linen.</VERS>\r\n      <VERS vnumber=\"3\">And 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, the work of the skilful workman.</VERS>\r\n      <VERS vnumber=\"4\">They made shoulder-pieces for it, joined together; at the two ends was it joined together.</VERS>\r\n      <VERS vnumber=\"5\">And the skilfully woven band, that was upon it, wherewith to gird it on, was of the same piece [and] like the work thereof; of gold, of blue, and purple, and scarlet, and fine twined linen; as Jehovah commanded Moses.</VERS>\r\n      <VERS vnumber=\"6\">And they wrought the onyx stones, inclosed in settings of gold, graven with the engravings of a signet, according to the names of the children of Israel.</VERS>\r\n      <VERS vnumber=\"7\">And he put them on the shoulder-pieces of the ephod, to be stones of memorial for the children of Israel; as Jehovah commanded Moses.</VERS>\r\n      <VERS vnumber=\"8\">And he made the breastplate, the work of the skilful workman, like the work of the ephod; of gold, of blue, and purple, and scarlet, and fine twined linen.</VERS>\r\n      <VERS vnumber=\"9\">It was foursquare; they made the breastplate double: a span was the length thereof, and a span the breadth thereof, being double.</VERS>\r\n      <VERS vnumber=\"10\">And they set in it four rows of stones. A row of sardius, topaz, and carbuncle was the first row;</VERS>\r\n      <VERS vnumber=\"11\">and the second row, an emerald, a sapphire, and a diamond;</VERS>\r\n      <VERS vnumber=\"12\">and the third row, a jacinth, an agate, and an amethyst;</VERS>\r\n      <VERS vnumber=\"13\">and the fourth row, a beryl, an onyx, and a jaspar: they were inclosed in inclosings of gold in their settings.</VERS>\r\n      <VERS vnumber=\"14\">And 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 according to his name, for the twelve tribes.</VERS>\r\n      <VERS vnumber=\"15\">And they made upon the breastplate chains like cords, of wreathen work of pure gold.</VERS>\r\n      <VERS vnumber=\"16\">And they made two settings of gold, and two gold rings, and put the two rings on the two ends of the breastplate.</VERS>\r\n      <VERS vnumber=\"17\">And they put the two wreathen chains of gold in the two rings at the ends of the breastplate.</VERS>\r\n      <VERS vnumber=\"18\">And the [other] two ends of the two wreathen chains they put on the two settings, and put them on the shoulder-pieces of the ephod, in the forepart thereof.</VERS>\r\n      <VERS vnumber=\"19\">And they made two rings of gold, and put them upon the two ends of the breastplate, upon the edge thereof, which was toward the side of the ephod inward.</VERS>\r\n      <VERS vnumber=\"20\">And they made two rings of gold, and put them on the two shoulder-pieces of the ephod underneath, in the forepart thereof, close by the coupling thereof, above the skilfully woven band of the ephod.</VERS>\r\n      <VERS vnumber=\"21\">And they did bind the breastplate by the rings thereof unto the rings of the ephod with a lace of blue, that it might be upon the skilfully woven band of the ephod, and that the breastplate might not be loosed from the ephod; as Jehovah commanded Moses.</VERS>\r\n      <VERS vnumber=\"22\">And he made the robe of the ephod of woven work, all of blue.</VERS>\r\n      <VERS vnumber=\"23\">And the hole of the robe in the midst thereof, as the hole of a coat of mail, with a binding round about the hole of it, that it should not be rent.</VERS>\r\n      <VERS vnumber=\"24\">And they made upon the skirts of the robe pomegranates of blue, and purple, and scarlet, [and] twined [linen].</VERS>\r\n      <VERS vnumber=\"25\">And they made bells of pure gold, and put the bells between the pomegranates upon the skirts of the robe round about, between the pomegranates;</VERS>\r\n      <VERS vnumber=\"26\">a bell and a pomegranate, a bell and a pomegranate, upon the skirts of the robe round about, to minister in; as Jehovah commanded Moses.</VERS>\r\n      <VERS vnumber=\"27\">And they made the coats of fine linen of woven work for Aaron, and for his sons,</VERS>\r\n      <VERS vnumber=\"28\">and the mitre of fine linen, and the goodly head-tires of fine linen, and the linen breeches of fine twined linen,</VERS>\r\n      <VERS vnumber=\"29\">and the girdle of fine twined linen, and blue, and purple, and scarlet, the work of the embroiderer; as Jehovah commanded Moses.</VERS>\r\n      <VERS vnumber=\"30\">And they made the plate of the holy crown of pure gold, and wrote upon it a writing, like the engravings of a signet, HOLY TO JEHOVAH.</VERS>\r\n      <VERS vnumber=\"31\">And they tied unto it a lace of blue, to fasten it upon the mitre above; as Jehovah commanded Moses.</VERS>\r\n      <VERS vnumber=\"32\">Thus was finished all the work of the tabernacle of the tent of meeting: and the children of Israel did according to all that Jehovah commanded Moses; so did they.</VERS>\r\n      <VERS vnumber=\"33\">And they brought the tabernacle unto Moses, the Tent, and all its furniture, its clasps, its boards, it bars, and its pillars, and it sockets;</VERS>\r\n      <VERS vnumber=\"34\">and the covering of rams` skins dyed red, and the covering of sealskins, and the veil of the screen;</VERS>\r\n      <VERS vnumber=\"35\">the ark of the testimony, and the staves thereof, and the mercy-seat;</VERS>\r\n      <VERS vnumber=\"36\">the table, all the vessels thereof, and the showbread;</VERS>\r\n      <VERS vnumber=\"37\">the pure candlestick, the lamps thereof, even the lamps to be set in order, and all the vessels thereof, and the oil for the light;</VERS>\r\n      <VERS vnumber=\"38\">and the golden altar, and the anointing oil, and the sweet incense, and the screen for the door of the Tent;</VERS>\r\n      <VERS vnumber=\"39\">the brazen altar, and its grating of brass, its staves, and all its vessels, the laver and its base;</VERS>\r\n      <VERS vnumber=\"40\">the hangings of the court, its pillars, and its sockets, and the screen for the gate of the court, the cords thereof, and the pins thereof, and all the instruments of the service of the tabernacle, for the tent of meeting;</VERS>\r\n      <VERS vnumber=\"41\">the finely wrought garments for ministering in the holy place, and the holy garments for Aaron the priest, and the garments of his sons, to minister in the priest`s office.</VERS>\r\n      <VERS vnumber=\"42\">According to all that Jehovah commanded Moses, so the children of Israel did all the work.</VERS>\r\n      <VERS vnumber=\"43\">And Moses saw all the work, and, behold, they had done it; as Jehovah had commanded, even so had they done it: and Moses blessed them.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"40\">\r\n      <VERS vnumber=\"1\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">On the first day of the first month shalt thou rear up the tabernacle of the tent of meeting.</VERS>\r\n      <VERS vnumber=\"3\">And thou shalt put therein the ark of the testimony, and thou shalt screen the ark with the veil.</VERS>\r\n      <VERS vnumber=\"4\">And thou shalt bring in the table, and set in order the things that are upon it; and thou shalt bring in the candlestick, and light the lamps thereof.</VERS>\r\n      <VERS vnumber=\"5\">And thou shalt set the golden altar for incense before the ark of the testimony, and put the screen of the door to the tabernacle.</VERS>\r\n      <VERS vnumber=\"6\">And thou shalt set the altar of burnt-offering before the door of the tabernacle of the tent of meeting.</VERS>\r\n      <VERS vnumber=\"7\">And thou shalt set the laver between the tent of meeting and the altar, and shalt put water therein.</VERS>\r\n      <VERS vnumber=\"8\">And thou shalt set up the court round about, and hang up the screen of the gate of the court.</VERS>\r\n      <VERS vnumber=\"9\">And thou shalt take the anointing oil, and anoint the tabernacle, and all that is therein, and shalt hallow it, and all the furniture thereof: and it shall be holy.</VERS>\r\n      <VERS vnumber=\"10\">And thou shalt anoint the altar of burnt-offering, and all its vessels, and sanctify the altar: and the altar shall be most holy.</VERS>\r\n      <VERS vnumber=\"11\">And thou shalt anoint the laver and its base, and sanctify it.</VERS>\r\n      <VERS vnumber=\"12\">And thou shalt bring Aaron and his sons unto the door of the tent of meeting, and shalt wash them with water.</VERS>\r\n      <VERS vnumber=\"13\">And thou shalt put upon Aaron the holy garments; and thou shalt anoint him, and sanctify him, that he may minister unto me in the priest`s office.</VERS>\r\n      <VERS vnumber=\"14\">And thou shalt bring his sons, and put coats upon them;</VERS>\r\n      <VERS vnumber=\"15\">and thou shalt anoint them, as thou didst anoint their father, that they may minister unto me in the priest`s office: and their anointing shall be to them for an everlasting priesthood throughout their generations.</VERS>\r\n      <VERS vnumber=\"16\">Thus did Moses: according to all that Jehovah commanded him, so did he.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And Moses reared up the tabernacle, and laid its sockets, and set up the boards thereof, and put in the bars thereof, and reared up its pillars.</VERS>\r\n      <VERS vnumber=\"19\">And he spread the tent over the tabernacle, and put the covering of the tent above upon it; as Jehovah commanded Moses.</VERS>\r\n      <VERS vnumber=\"20\">And 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:</VERS>\r\n      <VERS vnumber=\"21\">and he brought the ark into the tabernacle, and set up the veil of the screen, and screened the ark of the testimony; as Jehovah commanded Moses.</VERS>\r\n      <VERS vnumber=\"22\">And he put the table in the tent of meeting, upon the side of the tabernacle northward, without the veil.</VERS>\r\n      <VERS vnumber=\"23\">And he set the bread in order upon it before Jehovah; as Jehovah commanded Moses.</VERS>\r\n      <VERS vnumber=\"24\">And he put the candlestick in the tent of meeting, over against the table, on the side of the tabernacle southward.</VERS>\r\n      <VERS vnumber=\"25\">And he lighted the lamps before Jehovah; as Jehovah commanded Moses.</VERS>\r\n      <VERS vnumber=\"26\">And he put the golden altar in the tent of meeting before the veil:</VERS>\r\n      <VERS vnumber=\"27\">and he burnt thereon incense of sweet spices; as Jehovah commanded Moses.</VERS>\r\n      <VERS vnumber=\"28\">And he put the screen of the door to the tabernacle.</VERS>\r\n      <VERS vnumber=\"29\">And he set the altar of burnt-offering at the door of the tabernacle of the tent of meeting, and offered upon it the burnt-offering and the meal-offering; as Jehovah commanded Moses.</VERS>\r\n      <VERS vnumber=\"30\">And he set the laver between the tent of meeting and the altar, and put water therein, wherewith to wash.</VERS>\r\n      <VERS vnumber=\"31\">And Moses and Aaron and his sons washed their hands and their feet thereat;</VERS>\r\n      <VERS vnumber=\"32\">when they went into the tent of meeting, and when they came near unto the altar, they washed; as Jehovah commanded Moses.</VERS>\r\n      <VERS vnumber=\"33\">And he reared up the court round about the tabernacle and the altar, and set up the screen of the gate of the court. So Moses finished the work.</VERS>\r\n      <VERS vnumber=\"34\">Then the cloud covered the tent of meeting, and the glory of Jehovah filled the tabernacle.</VERS>\r\n      <VERS vnumber=\"35\">And Moses was not able to enter into the tent of meeting, because the cloud abode thereon, and the glory of Jehovah filled the tabernacle.</VERS>\r\n      <VERS vnumber=\"36\">And when the cloud was taken up from over the tabernacle, the children of Israel went onward, throughout all their journeys:</VERS>\r\n      <VERS vnumber=\"37\">but if the cloud was not taken up, then they journeyed not till the day that it was taken up.</VERS>\r\n      <VERS vnumber=\"38\">For the cloud of Jehovah was upon the tabernacle by day, and there was fire therein by night, in the sight of all the house of Israel, throughout all their journeys.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"3\" bname=\"Leviticus\" bsname=\"Lev\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">And Jehovah called unto Moses, and spake unto him out of the tent of meeting, saying,</VERS>\r\n      <VERS vnumber=\"2\">Speak unto the children of Israel, and say unto them, When any man of you offereth an oblation unto Jehovah, ye shall offer your oblation of the cattle, [even] of the herd and of the flock.</VERS>\r\n      <VERS vnumber=\"3\">If his oblation be a burnt-offering of the herd, he shall offer it a male without blemish: he shall offer it at the door of the tent of meeting, that he may be accepted before Jehovah.</VERS>\r\n      <VERS vnumber=\"4\">And he shall lay his hand upon the head of the burnt-offering; and it shall be accepted for him to make atonement for him.</VERS>\r\n      <VERS vnumber=\"5\">And he shall kill the bullock before Jehovah: and Aaron`s sons, the priests, shall present the blood, and sprinkle the blood round about upon the altar that is at the door of the tent of meeting.</VERS>\r\n      <VERS vnumber=\"6\">And he shall flay the burnt-offering, and cut it into its pieces.</VERS>\r\n      <VERS vnumber=\"7\">And the sons of Aaron the priest shall put fire upon the altar, and lay wood in order upon the fire;</VERS>\r\n      <VERS vnumber=\"8\">and Aaron`s sons, the priests, shall lay the pieces, the head, and the fat, in order upon the wood that is on the fire which is upon the altar:</VERS>\r\n      <VERS vnumber=\"9\">but its inwards and its legs shall he wash with water: and the priest shall burn the whole on the altar, for a burnt-offering, an offering made by fire, of a sweet savor unto Jehovah.</VERS>\r\n      <VERS vnumber=\"10\">And if his oblation be of the flock, of the sheep, or of the goats, for a burnt-offering; he shall offer it a male without blemish.</VERS>\r\n      <VERS vnumber=\"11\">And he shall kill it on the side of the altar northward before Jehovah: and Aaron`s sons, the priests, shall sprinkle its blood upon the altar round about.</VERS>\r\n      <VERS vnumber=\"12\">And he shall cut it into its pieces, with its head and its fat; and the priest shall lay them in order on the wood that is on the fire which is upon the altar:</VERS>\r\n      <VERS vnumber=\"13\">but the inwards and the legs shall he wash with water; and the priest shall offer the whole, and burn it upon the altar: it is a burnt-offering, an offering made by fire, of a sweet savor unto Jehovah.</VERS>\r\n      <VERS vnumber=\"14\">And if his oblation to Jehovah be a burnt-offering of birds, then he shall offer his oblation of turtle-doves, or of young pigeons.</VERS>\r\n      <VERS vnumber=\"15\">And the priest shall bring it unto the altar, and wring off its head, and burn it on the altar; and the blood thereof shall be drained out on the side of the altar;</VERS>\r\n      <VERS vnumber=\"16\">and he shall take away its crop with the filth thereof, and cast it beside the altar on the east part, in the place of the ashes:</VERS>\r\n      <VERS vnumber=\"17\">and he shall rend it by 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-offering, an offering made by fire, of a sweet savor unto Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">And when any one offereth an oblation of a meal-offering unto Jehovah, his oblation shall be of fine flour; and he shall pour oil upon it, and put frankincense thereon:</VERS>\r\n      <VERS vnumber=\"2\">and he shall bring it to Aaron`s sons the priests; and he shall take thereout his handful of the fine flour thereof, and of the oil thereof, with all the frankincense thereof; and the priest shall burn [it as] the memorial thereof upon the altar, an offering made by fire, of a sweet savor unto Jehovah:</VERS>\r\n      <VERS vnumber=\"3\">and that which is left of the meal-offering shall be Aaron`s and his sons`: it is a thing most holy of the offerings of Jehovah made by fire.</VERS>\r\n      <VERS vnumber=\"4\">And when thou offerest an oblation of a meal-offering baken in the oven, it shall be unleavened cakes of fine flour mingled with oil, or unleavened wafers anointed with oil.</VERS>\r\n      <VERS vnumber=\"5\">And if thy oblation be a meal-offering of the baking-pan, it shall be of fine flour unleavened, mingled with oil.</VERS>\r\n      <VERS vnumber=\"6\">Thou shalt part it in pieces, and pour oil thereon: it is a meal-offering.</VERS>\r\n      <VERS vnumber=\"7\">And if thy oblation be a meal-offering of the frying-pan, it shall be made of fine flour with oil.</VERS>\r\n      <VERS vnumber=\"8\">And thou shalt bring the meal-offering that is made of these things unto Jehovah: and it shall be presented unto the priest, and he shall bring it unto the altar.</VERS>\r\n      <VERS vnumber=\"9\">And the priest shall take up from the meal-offering the memorial thereof, and shall burn it upon the altar, an offering made by fire, of a sweet savor unto Jehovah.</VERS>\r\n      <VERS vnumber=\"10\">And that which is left of the meal-offering shall be Aaron`s and his sons`: it is a thing most holy of the offerings of Jehovah made by fire.</VERS>\r\n      <VERS vnumber=\"11\">No meal-offering, which ye shall offer unto Jehovah, shall be made with leaven; for ye shall burn no leaven, nor any honey, as an offering made by fire unto Jehovah.</VERS>\r\n      <VERS vnumber=\"12\">As an oblation of first -[fruits] ye shall offer them unto Jehovah: but they shall not come up for a sweet savor on the altar.</VERS>\r\n      <VERS vnumber=\"13\">And every oblation of thy meal-offering shalt thou season with salt; neither shalt thou suffer the salt of the covenant of thy God to be lacking from thy meal-offering: with all thine oblations thou shalt offer salt.</VERS>\r\n      <VERS vnumber=\"14\">And if thou offer a meal-offering of first-fruits unto Jehovah, thou shalt offer for the meal-offering of thy first-fruits grain in the ear parched with fire, bruised grain of the fresh ear.</VERS>\r\n      <VERS vnumber=\"15\">And thou shalt put oil upon it, and lay frankincense thereon: it is a meal-offering.</VERS>\r\n      <VERS vnumber=\"16\">And the priest shall burn the memorial of it, part of the bruised grain thereof, and part of the oil thereof, with all the frankincense thereof: it is an offering made by fire unto Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">And if his oblation be a sacrifice of peace-offerings; if he offer of the herd, whether male or female, he shall offer it without blemish before Jehovah.</VERS>\r\n      <VERS vnumber=\"2\">And he shall lay his hand upon the head of his oblation, and kill it at the door of the tent of meeting: and Aaron`s sons the priests shall sprinkle the blood upon the altar round about.</VERS>\r\n      <VERS vnumber=\"3\">And he shall offer of the sacrifice of peace-offerings an offering made by fire unto Jehovah; the fat that covereth the inwards, and all the fat that is upon the inwards,</VERS>\r\n      <VERS vnumber=\"4\">and the two kidneys, and the fat that is on them, which is by the loins, and the caul upon the liver, with the kidneys, shall he take away.</VERS>\r\n      <VERS vnumber=\"5\">And Aaron`s sons shall burn it on the altar upon the burnt-offering, which is upon the wood that is on the fire: it is an offering made by fire, of a sweet savor unto Jehovah.</VERS>\r\n      <VERS vnumber=\"6\">And if his oblation for a sacrifice of peace-offerings unto Jehovah be of the flock; male or female, he shall offer it without blemish.</VERS>\r\n      <VERS vnumber=\"7\">If he offer a lamb for his oblation, then shall he offer it before Jehovah;</VERS>\r\n      <VERS vnumber=\"8\">and he shall lay his hand upon the head of his oblation, and kill it before the tent of meeting: and Aaron`s sons shall sprinkle the blood thereof upon the altar round about.</VERS>\r\n      <VERS vnumber=\"9\">And he shall offer of the sacrifice of peace-offerings an offering made by fire unto Jehovah; the fat thereof, the fat tail entire, he shall take away hard by the backbone; and the fat that covereth the inwards, and all the fat that is upon the inwards,</VERS>\r\n      <VERS vnumber=\"10\">and the two kidneys, and the fat that is upon them, which is by the loins, and the caul upon the liver, with the kidneys, shall he take away.</VERS>\r\n      <VERS vnumber=\"11\">And the priest shall burn it upon the altar: it is the food of the offering made by fire unto Jehovah.</VERS>\r\n      <VERS vnumber=\"12\">And if his oblation be a goat, then he shall offer it before Jehovah:</VERS>\r\n      <VERS vnumber=\"13\">and he shall lay his hand upon the head of it, and kill it before the tent of meeting; and the sons of Aaron shall sprinkle the blood thereof upon the altar round about.</VERS>\r\n      <VERS vnumber=\"14\">And he shall offer thereof his oblation, [even] an offering made by fire unto Jehovah; the fat that covereth the inwards, and all the fat that is upon the inwards,</VERS>\r\n      <VERS vnumber=\"15\">and the two kidneys, and the fat that is upon them, which is by the loins, and the caul upon the liver, with the kidneys, shall he take away.</VERS>\r\n      <VERS vnumber=\"16\">And the priest shall burn them upon the altar: it is the food of the offering made by fire, for a sweet savor; all the fat is Jehovah`s.</VERS>\r\n      <VERS vnumber=\"17\">It shall be a perpetual statute throughout your generations in all your dwellings, that ye shall eat neither fat nor blood.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">Speak unto the children of Israel, saying, If any one shall sin unwittingly, in any of the things which Jehovah hath commanded not to be done, and shall do any one of them:</VERS>\r\n      <VERS vnumber=\"3\">if the anointed priest shall sin so as to bring guilt on the people, then let him offer for his sin, which he hath sinned, a young bullock without blemish unto Jehovah for a sin-offering.</VERS>\r\n      <VERS vnumber=\"4\">And he shall bring the bullock unto the door of the tent of meeting before Jehovah; and he shall lay his hand upon the head of the bullock, and kill the bullock before Jehovah.</VERS>\r\n      <VERS vnumber=\"5\">And the anointed priest shall take of the blood of the bullock, and bring it to the tent of meeting:</VERS>\r\n      <VERS vnumber=\"6\">and the priest shall dip his finger in the blood, and sprinkle of the blood seven times before Jehovah, before the veil of the sanctuary.</VERS>\r\n      <VERS vnumber=\"7\">And the priest shall put of the blood upon the horns of the altar of sweet incense before Jehovah, which is in the tent of meeting; and all the blood of the bullock shall he pour out at the base of the altar of burnt-offering, which is at the door of the tent of meeting.</VERS>\r\n      <VERS vnumber=\"8\">And all the fat of the bullock of the sin-offering he shall take off from it; the fat that covereth the inwards, and all the fat that is upon the inwards,</VERS>\r\n      <VERS vnumber=\"9\">and the two kidneys, and the fat that is upon them, which is by the loins, and the caul upon the liver, with the kidneys, shall he take away,</VERS>\r\n      <VERS vnumber=\"10\">as it is taken off from the ox of the sacrifice of peace-offerings: and the priest shall burn them upon the altar of burnt-offering.</VERS>\r\n      <VERS vnumber=\"11\">And the skin of the bullock, and all its flesh, with its head, and with its legs, and its inwards, and its dung,</VERS>\r\n      <VERS vnumber=\"12\">even the whole bullock shall he carry forth without the camp unto a clean place, where the ashes are poured out, and burn it on wood with fire: where the ashes are poured out shall it be burnt.</VERS>\r\n      <VERS vnumber=\"13\">And if the whole congregation of Israel err, and the thing be hid from the eyes of the assembly, and they have done any of the things which Jehovah hath commanded not to be done, and are guilty;</VERS>\r\n      <VERS vnumber=\"14\">when the sin wherein they have sinned is known, then the assembly shall offer a young bullock for a sin-offering, and bring it before the tent of meeting.</VERS>\r\n      <VERS vnumber=\"15\">And the elders of the congregation shall lay their hands upon the head of the bullock before Jehovah; and the bullock shall be killed before Jehovah.</VERS>\r\n      <VERS vnumber=\"16\">And the anointed priest shall bring of the blood of the bullock to the tent of meeting:</VERS>\r\n      <VERS vnumber=\"17\">and the priest shall dip his finger in the blood, and sprinkle it seven times before Jehovah, before the veil.</VERS>\r\n      <VERS vnumber=\"18\">And he shall put of the blood upon the horns of the altar which is before Jehovah, that is in the tent of meeting; and all the blood shall he pour out at the base of the altar of burnt-offering, which is at the door of the tent of meeting.</VERS>\r\n      <VERS vnumber=\"19\">And all the fat thereof shall he take off from it, and burn it upon the altar.</VERS>\r\n      <VERS vnumber=\"20\">Thus shall he do with the bullock; as he did with the bullock of the sin-offering, so shall he do with this; and the priest shall make atonement for them, and they shall be forgiven.</VERS>\r\n      <VERS vnumber=\"21\">And he shall carry forth the bullock without the camp, and burn it as he burned the first bullock: it is the sin-offering for the assembly.</VERS>\r\n      <VERS vnumber=\"22\">When a ruler sinneth, and doeth unwittingly any one of all the things which Jehovah his God hath commanded not to be done, and is guilty;</VERS>\r\n      <VERS vnumber=\"23\">if his sin, wherein he hath sinned, be made known to him, he shall bring for his oblation a goat, a male without blemish.</VERS>\r\n      <VERS vnumber=\"24\">And he shall lay his hand upon the head of the goat, and kill it in the place where they kill the burnt-offering before Jehovah: it is a sin-offering.</VERS>\r\n      <VERS vnumber=\"25\">And 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 the blood thereof shall he pour out at the base of the altar of burnt-offering.</VERS>\r\n      <VERS vnumber=\"26\">And all the fat thereof shall he burn upon the altar, as the fat of the sacrifice of peace-offerings; and the priest shall make atonement for him as concerning his sin, and he shall be forgiven.</VERS>\r\n      <VERS vnumber=\"27\">And if any one of the common people sin unwittingly, in doing any of the things which Jehovah hath commanded not to be done, and be guilty;</VERS>\r\n      <VERS vnumber=\"28\">if his sin, which he hath sinned, be made known to him, then he shall bring for his oblation a goat, a female without blemish, for his sin which he hath sinned.</VERS>\r\n      <VERS vnumber=\"29\">And he shall lay his hand upon the head of the sin-offering, and kill the sin-offering in the place of burnt-offering.</VERS>\r\n      <VERS vnumber=\"30\">And the priest shall take of the blood thereof with his finger, and put it upon the horns of the altar of burnt-offering; and all the blood thereof shall he pour out at the base of the altar.</VERS>\r\n      <VERS vnumber=\"31\">And all the fat thereof shall he take away, 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 savor unto Jehovah; and the priest shall make atonement for him, and he shall be forgiven.</VERS>\r\n      <VERS vnumber=\"32\">And if he bring a lamb as his oblation for a sin-offering, he shall bring it a female without blemish.</VERS>\r\n      <VERS vnumber=\"33\">And he shall lay his hand upon the head of the sin-offering, and kill it for a sin-offering in the place where they kill the burnt-offering.</VERS>\r\n      <VERS vnumber=\"34\">And 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 all the blood thereof shall he pour out at the base of the altar:</VERS>\r\n      <VERS vnumber=\"35\">and all the fat thereof shall he take away, as the fat of the lamb is taken away from the sacrifice of peace-offerings; and the priest shall burn them on the altar, upon the offerings of Jehovah made by fire; and the priest shall make atonement for him as touching his sin that he hath sinned, and he shall be forgiven.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">And if any one sin, in that he heareth the voice of adjuration, he being a witness, whether he hath seen or known, if he do not utter [it], then he shall bear his iniquity.</VERS>\r\n      <VERS vnumber=\"2\">Or if any one touch any unclean thing, whether it be the carcass of an unclean beast, or the carcass of unclean cattle, or the carcass of unclean creeping things, and it be hidden from him, and he be unclean, then he shall be guilty.</VERS>\r\n      <VERS vnumber=\"3\">Or if he touch the uncleanness of man, whatsoever his uncleanness be wherewith he is unclean, and it be hid from him; when he knoweth of it, then he shall be guilty.</VERS>\r\n      <VERS vnumber=\"4\">Or if any one swear rashly with his lips to do evil, or to do good, whatsoever it be that a man shall utter rashly with an oath, and it be hid from him; when he knoweth of it, then he shall be guilty in one of these [things].</VERS>\r\n      <VERS vnumber=\"5\">And it shall be, when he shall be guilty in one of these [things], that he shall confess that wherein he hath sinned:</VERS>\r\n      <VERS vnumber=\"6\">and he shall bring his trespass-offering unto Jehovah for his sin which he hath sinned, a female from the flock, a lamb or a goat, for a sin-offering; and the priest shall make atonement for him as concerning his sin.</VERS>\r\n      <VERS vnumber=\"7\">And if his means suffice not for a lamb, then he shall bring his trespass-offering for that wherein he hath sinned, two turtle-doves, or two young pigeons, unto Jehovah; one for a sin-offering, and the other for a burnt-offering.</VERS>\r\n      <VERS vnumber=\"8\">And he shall bring them unto the priest, who shall offer that which is for the sin-offering first, and wring off its head from its neck, but shall not divide it asunder:</VERS>\r\n      <VERS vnumber=\"9\">and he shall sprinkle of the blood of the sin-offering upon the side of the altar; and the rest of the blood shall be drained out at the base of the altar: it is a sin-offering.</VERS>\r\n      <VERS vnumber=\"10\">And he shall offer the second for a burnt-offering, according to the ordinance; and the priest shall make atonement for him as concerning his sin which he hath sinned, and he shall be forgiven.</VERS>\r\n      <VERS vnumber=\"11\">But if his means suffice not for two turtle-doves, or two young pigeons, then he shall bring his oblation for that wherein he hath sinned, 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.</VERS>\r\n      <VERS vnumber=\"12\">And he shall bring it to the priest, and the priest shall take his handful of it as the memorial thereof, and burn it on the altar, upon the offerings of Jehovah made by fire: it is a sin-offering.</VERS>\r\n      <VERS vnumber=\"13\">And the priest shall make atonement for him as touching his sin that he hath sinned in any of these things, and he shall be forgiven: and [the remnant] shall be the priest`s, as the meal-offering.</VERS>\r\n      <VERS vnumber=\"14\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"15\">If any one commit a trespass, and sin unwittingly, in the holy things of Jehovah; then he shall bring his trespass-offering unto Jehovah, a ram without blemish out of the flock, according to thy estimation in silver by shekels, after the shekel of the sanctuary, for a trespass-offering:</VERS>\r\n      <VERS vnumber=\"16\">and he shall make restitution for that which he hath done amiss in the holy thing, and shall add the fifth part thereto, and give it unto the priest; and the priest shall make atonement for him with the ram of the trespass-offering, and he shall be forgiven.</VERS>\r\n      <VERS vnumber=\"17\">And if any one sin, and do any of the things which Jehovah hath commanded not to be done; though he knew it not, yet is he guilty, and shall bear his iniquity.</VERS>\r\n      <VERS vnumber=\"18\">And he shall bring a ram without blemish out of the flock, according to thy estimation, for a trespass-offering, unto the priest; and the priest shall make atonement for him concerning the thing wherein he erred unwittingly and knew it not, and he shall be forgiven.</VERS>\r\n      <VERS vnumber=\"19\">It is a trespass-offering: he is certainly guilty before Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">If any one sin, and commit a trespass against Jehovah, and deal falsely with his neighbor in a matter of deposit, or of bargain, or of robbery, or have oppressed his neighbor,</VERS>\r\n      <VERS vnumber=\"3\">or have found that which was lost, and deal falsely therein, and swear to a lie; in any of all these things that a man doeth, sinning therein;</VERS>\r\n      <VERS vnumber=\"4\">then it shall be, if he hath sinned, and is guilty, that he shall restore that which he took by robbery, or the thing which he hath gotten by oppression, or the deposit which was committed to him, or the lost thing which he found,</VERS>\r\n      <VERS vnumber=\"5\">or any thing about which he hath sworn falsely; he shall even restore it in full, and shall add the fifth part more thereto: unto him to whom it appertaineth shall he give it, in the day of his being found guilty.</VERS>\r\n      <VERS vnumber=\"6\">And he shall bring his trespass-offering unto Jehovah, a ram without blemish out of the flock, according to thy estimation, for a trespass-offering, unto the priest:</VERS>\r\n      <VERS vnumber=\"7\">and the priest shall make atonement for him before Jehovah; and he shall be forgiven concerning whatsoever he doeth so as to be guilty thereby.</VERS>\r\n      <VERS vnumber=\"8\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"9\">Command Aaron and his sons, saying, This is the law of the burnt-offering: the burnt-offering shall be on the hearth upon the altar all night unto the morning; and the fire of the altar shall be kept burning thereon.</VERS>\r\n      <VERS vnumber=\"10\">And the priest shall put on his linen garment, and his linen breeches shall he put upon his flesh; and he shall take up the ashes whereto the fire hath consumed the burnt-offering on the altar, and he shall put them beside the altar.</VERS>\r\n      <VERS vnumber=\"11\">And he shall put off his garments, and put on other garments, and carry forth the ashes without the camp unto a clean place.</VERS>\r\n      <VERS vnumber=\"12\">And the fire upon the altar shall be kept burning thereon, it shall not go out; and the priest shall burn wood on it every morning: and he shall lay the burnt-offering in order upon it, and shall burn thereon the fat of the peace-offerings.</VERS>\r\n      <VERS vnumber=\"13\">Fire shall be kept burning upon the altar continually; it shall not go out.</VERS>\r\n      <VERS vnumber=\"14\">And this is the law of the meal-offering: the sons of Aaron shall offer it before Jehovah, before the altar.</VERS>\r\n      <VERS vnumber=\"15\">And he shall take up therefrom his handful, of the fine flour of the meal-offering, and of the oil thereof, and all the frankincense which is upon the meal-offering, and shall burn it upon the altar for a sweet savor, as the memorial thereof, unto Jehovah.</VERS>\r\n      <VERS vnumber=\"16\">And that which is left thereof shall Aaron and his sons eat: it shall be eaten without leaven in a holy place; in the court of the tent of meeting they shall eat it.</VERS>\r\n      <VERS vnumber=\"17\">It shall not be baken with leaven. I have given it as their portion of my offerings made by fire; it is most holy, as the sin-offering, and as the trespass-offering.</VERS>\r\n      <VERS vnumber=\"18\">Every male among the children of Aaron shall eat of it, as [his] portion for ever throughout your generations, from the offerings of Jehovah made by fire: whosoever toucheth them shall be holy.</VERS>\r\n      <VERS vnumber=\"19\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"20\">This is the oblation of Aaron and of his sons, which they shall offer unto Jehovah in the day when he is anointed: the tenth part of an ephah of fine flour for a meal-offering perpetually, half of it in the morning, and half thereof in the evening.</VERS>\r\n      <VERS vnumber=\"21\">On a baking-pan it shall be made with oil; when it is soaked, thou shalt bring it in: in baken pieces shalt thou offer the meal-offering for a sweet savor unto Jehovah.</VERS>\r\n      <VERS vnumber=\"22\">And the anointed priest that shall be in his stead from among his sons shall offer it: by a statute for ever it shall be wholly burnt unto Jehovah.</VERS>\r\n      <VERS vnumber=\"23\">And every meal-offering of the priest shall be wholly burnt: it shall not be eaten.</VERS>\r\n      <VERS vnumber=\"24\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"25\">Speak 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 Jehovah: it is most holy.</VERS>\r\n      <VERS vnumber=\"26\">The priest that offereth it for sin shall eat it: in a holy place shall it be eaten, in the court of the tent of meeting.</VERS>\r\n      <VERS vnumber=\"27\">Whatsoever 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 a holy place.</VERS>\r\n      <VERS vnumber=\"28\">But the earthen vessel wherein it is boiled shall be broken; and if it be boiled in a brazen vessel, it shall be scoured, and rinsed in water.</VERS>\r\n      <VERS vnumber=\"29\">Every male among the priests shall eat thereof: it is most holy.</VERS>\r\n      <VERS vnumber=\"30\">And no sin-offering, whereof any of the blood is brought into the tent of meeting to make atonement in the holy place, shall be eaten: it shall be burnt with fire.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">And this is the law of the trespass-offering: it is most holy.</VERS>\r\n      <VERS vnumber=\"2\">In the place where they kill the burnt-offering shall they kill the trespass-offering; and the blood thereof shall he sprinkle upon the altar round about.</VERS>\r\n      <VERS vnumber=\"3\">And he shall offer of it all the fat thereof: the fat tail, and the fat that covereth the inwards,</VERS>\r\n      <VERS vnumber=\"4\">and the two kidneys, and the fat that is on them, which is by the loins, and the caul upon the liver, with the kidneys, shall he take away;</VERS>\r\n      <VERS vnumber=\"5\">and the priest shall burn them upon the altar for an offering made by fire unto Jehovah: it is a trespass-offering.</VERS>\r\n      <VERS vnumber=\"6\">Every male among the priests shall eat thereof: it shall be eaten in a holy place: it is most holy.</VERS>\r\n      <VERS vnumber=\"7\">As is the sin-offering, so is the trespass-offering; there is one law for them: the priest that maketh atonement therewith, he shall have it.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And every meal-offering that is baken in the oven, and all that is dressed in the frying-pan, and on the baking-pan, shall be the priest`s that offereth it.</VERS>\r\n      <VERS vnumber=\"10\">And every meal-offering, mingled with oil, or dry, shall all the sons of Aaron have, one as well as another.</VERS>\r\n      <VERS vnumber=\"11\">And this is the law of the sacrifice of peace-offerings, which one shall offer unto Jehovah.</VERS>\r\n      <VERS vnumber=\"12\">If 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 soaked.</VERS>\r\n      <VERS vnumber=\"13\">With cakes of leavened bread he shall offer his oblation with the sacrifice of his peace-offerings for thanksgiving.</VERS>\r\n      <VERS vnumber=\"14\">And of it he shall offer one out of each oblation for a heave-offering unto Jehovah; it shall be the priest`s that sprinkleth the blood of the peace-offerings.</VERS>\r\n      <VERS vnumber=\"15\">And the flesh of the sacrifice of his peace-offerings for thanksgiving shall be eaten on the day of his oblation; he shall not leave any of it until the morning.</VERS>\r\n      <VERS vnumber=\"16\">But if the sacrifice of his oblation be a vow, or a freewill-offering, it shall be eaten on the day that he offereth his sacrifice; and on the morrow that which remaineth of it shall be eaten:</VERS>\r\n      <VERS vnumber=\"17\">but that which remaineth of the flesh of the sacrifice on the third day shall be burnt with fire.</VERS>\r\n      <VERS vnumber=\"18\">And if any of the flesh of the sacrifice of his peace-offerings be eaten 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.</VERS>\r\n      <VERS vnumber=\"19\">And the flesh that toucheth any unclean thing shall not be eaten; it shall be burnt with fire. And as for the flesh, every one that is clean shall eat thereof:</VERS>\r\n      <VERS vnumber=\"20\">but the soul that eateth of the flesh of the sacrifice of peace-offerings, that pertain unto Jehovah, having his uncleanness upon him, that soul shall be cut off from his people.</VERS>\r\n      <VERS vnumber=\"21\">And when any one shall touch any unclean thing, the uncleanness of man, or an unclean beast, or any unclean abomination, and eat of the flesh of the sacrifice of peace-offerings, which pertain unto Jehovah, that soul shall be cut off from his people.</VERS>\r\n      <VERS vnumber=\"22\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"23\">Speak unto the children of Israel, saying, Ye shall eat no fat, of ox, or sheep, or goat.</VERS>\r\n      <VERS vnumber=\"24\">And the fat of that which dieth of itself, and the fat of that which is torn of beasts, may be used for any other service; but ye shall in no wise eat of it.</VERS>\r\n      <VERS vnumber=\"25\">For whosoever eateth the fat of the beast, of which men offer an offering made by fire unto Jehovah, even the soul that eateth it shall be cut off from his people.</VERS>\r\n      <VERS vnumber=\"26\">And ye shall eat no manner of blood, whether it be of bird or of beast, in any of your dwellings.</VERS>\r\n      <VERS vnumber=\"27\">Whosoever it be that eateth any blood, that soul shall be cut off from his people.</VERS>\r\n      <VERS vnumber=\"28\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"29\">Speak unto the children of Israel, saying, He that offereth the sacrifice of his peace-offerings unto Jehovah shall bring his oblation unto Jehovah out of the sacrifice of his peace-offerings:</VERS>\r\n      <VERS vnumber=\"30\">his own hands shall bring the offerings of Jehovah made by fire; the fat with the breast shall he bring, that the breast may be waved for a wave-offering before Jehovah.</VERS>\r\n      <VERS vnumber=\"31\">And the priest shall burn the fat upon the altar; but the breast shall be Aaron`s and his sons`.</VERS>\r\n      <VERS vnumber=\"32\">And the right thigh shall ye give unto the priest for a heave-offering out of the sacrifices of your peace-offerings.</VERS>\r\n      <VERS vnumber=\"33\">He among the sons of Aaron that offereth the blood of the peace-offerings, and the fat, shall have the right thigh for a portion.</VERS>\r\n      <VERS vnumber=\"34\">For the wave-breast and the heave-thigh have I taken of the children of Israel out of the sacrifices of their peace-offerings, and have given them unto Aaron the priest and unto his sons as [their] portion for ever from the children of Israel.</VERS>\r\n      <VERS vnumber=\"35\">This is the anointing-portion of Aaron, and the anointing-portion of his sons, out of the offerings of Jehovah made by fire, in the day when he presented them to minister unto Jehovah in the priest`s office;</VERS>\r\n      <VERS vnumber=\"36\">which Jehovah commanded to be given them of the children of Israel, in the day that he anointed them. It is [their] portion for ever throughout their generations.</VERS>\r\n      <VERS vnumber=\"37\">This is the law of the burnt-offering, of the meal-offering, and of the sin-offering, and of the trespass-offering, and of the consecration, and of the sacrifice of peace-offerings;</VERS>\r\n      <VERS vnumber=\"38\">which Jehovah commanded Moses in mount Sinai, in the day that he commanded the children of Israel to offer their oblations unto Jehovah, in the wilderness of Sinai.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">Take Aaron and his sons with him, and the garments, and the anointing oil, and the bullock of the sin-offering, and the two rams, and the basket of unleavened bread;</VERS>\r\n      <VERS vnumber=\"3\">and assemble thou all the congregation at the door of the tent of meeting.</VERS>\r\n      <VERS vnumber=\"4\">And Moses did as Jehovah commanded him; and the congregation was assembled at the door of the tent of meeting.</VERS>\r\n      <VERS vnumber=\"5\">And Moses said unto the congregation, This is the thing which Jehovah hath commanded to be done.</VERS>\r\n      <VERS vnumber=\"6\">And Moses brought Aaron and his sons, and washed them with water.</VERS>\r\n      <VERS vnumber=\"7\">And 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 skilfully woven band of the ephod, and bound it unto him therewith.</VERS>\r\n      <VERS vnumber=\"8\">And he placed the breastplate upon him: and in the breastplate he put the Urim and the Thummim.</VERS>\r\n      <VERS vnumber=\"9\">And he set the mitre upon his head; and upon the mitre, in front, did he set the golden plate, the holy crown; as Jehovah commanded Moses.</VERS>\r\n      <VERS vnumber=\"10\">And Moses took the anointing oil, and anointed the tabernacle and all that was therein, and sanctified them.</VERS>\r\n      <VERS vnumber=\"11\">And he sprinkled thereof upon the altar seven times, and anointed the altar and all its vessels, and the laver and its base, to sanctify them.</VERS>\r\n      <VERS vnumber=\"12\">And he poured of the anointing oil upon Aaron`s head, and anointed him, to sanctify him.</VERS>\r\n      <VERS vnumber=\"13\">And Moses brought Aaron`s sons, and clothed them with coats, and girded them with girdles, and bound head-tires upon them; as Jehovah commanded Moses.</VERS>\r\n      <VERS vnumber=\"14\">And he brought the bullock of the sin-offering: and Aaron and his sons laid their hands upon the head of the bullock of the sin-offering.</VERS>\r\n      <VERS vnumber=\"15\">And 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 out the blood at the base of the altar, and sanctified it, to make atonement for it.</VERS>\r\n      <VERS vnumber=\"16\">And he took all the fat that was upon the inwards, and the caul of the liver, and the two kidneys, and their fat; and Moses burned it upon the altar.</VERS>\r\n      <VERS vnumber=\"17\">But the bullock, and its skin, and its flesh, and its dung, he burnt with fire without the camp; as Jehovah commanded Moses.</VERS>\r\n      <VERS vnumber=\"18\">And he presented the ram of the burnt-offering: and Aaron and his sons laid their hands upon the head of the ram.</VERS>\r\n      <VERS vnumber=\"19\">And he killed it; and Moses sprinkled the blood upon the altar round about.</VERS>\r\n      <VERS vnumber=\"20\">And he cut the ram into its pieces; and Moses burnt the head, and the pieces, and the fat.</VERS>\r\n      <VERS vnumber=\"21\">And he washed the inwards and the legs with water; and Moses burnt the whole ram upon the altar: it was a burnt-offering for a sweet savor: it was an offering made by fire unto Jehovah; as Jehovah commanded Moses.</VERS>\r\n      <VERS vnumber=\"22\">And he presented the other ram, the ram of consecration: and Aaron and his sons laid their hands upon the head of the ram.</VERS>\r\n      <VERS vnumber=\"23\">And he slew it; and Moses took of the blood thereof, 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.</VERS>\r\n      <VERS vnumber=\"24\">And he brought Aaron`s sons; and Moses put of the blood upon the tip of their right ear, and upon the thumb of their right hand, and upon the great toe of their right foot: and Moses sprinkled the blood upon the altar round about.</VERS>\r\n      <VERS vnumber=\"25\">And he took the fat, and the fat tail, and all the fat that was upon the inwards, and the caul of the liver, and the two kidneys, and their fat, and the right thigh:</VERS>\r\n      <VERS vnumber=\"26\">and out of the basket of unleavened bread, that was before Jehovah, he took one unleavened cake, and one cake of oiled bread, and one wafer, and placed them on the fat, and upon the right thigh:</VERS>\r\n      <VERS vnumber=\"27\">and he put the whole upon the hands of Aaron, and upon the hands of his sons, and waved them for a wave-offering before Jehovah.</VERS>\r\n      <VERS vnumber=\"28\">And Moses took them from off their hands, and burnt them on the altar upon the burnt-offering: they were a consecration for a sweet savor: it was an offering made by fire unto Jehovah.</VERS>\r\n      <VERS vnumber=\"29\">And Moses took the breast, and waved it for a wave-offering before Jehovah: it was Moses` portion of the ram of consecration; as Jehovah commanded Moses.</VERS>\r\n      <VERS vnumber=\"30\">And Moses took of the anointing oil, and of the blood which was upon the altar, and sprinkled it upon Aaron, upon his garments, and upon his sons, and upon his sons` garments with him, and sanctified Aaron, his garments, and his sons, and his sons` garments with him.</VERS>\r\n      <VERS vnumber=\"31\">And Moses said unto Aaron and to his sons, Boil the flesh at the door of the tent of meeting: and there eat it and the bread that is in the basket of consecration, as I commanded, saying, Aaron and his sons shall eat it.</VERS>\r\n      <VERS vnumber=\"32\">And that which remaineth of the flesh and of the bread shall ye burn with fire.</VERS>\r\n      <VERS vnumber=\"33\">And ye shall not go out from the door of the tent of meeting seven days, until the days of your consecration be fulfilled: for he shall consecrate you seven days.</VERS>\r\n      <VERS vnumber=\"34\">As hath been done this day, so Jehovah hath commanded to do, to make atonement for you.</VERS>\r\n      <VERS vnumber=\"35\">And at the door of the tent of meeting shall ye abide day and night seven days, and keep the charge of Jehovah, that ye die not: for so I am commanded.</VERS>\r\n      <VERS vnumber=\"36\">And Aaron and his sons did all the things which Jehovah commanded by Moses.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">And it came to pass on the eighth day, that Moses called Aaron and his sons, and the elders of Israel;</VERS>\r\n      <VERS vnumber=\"2\">and he said unto Aaron, Take thee a calf of the herd for a sin-offering, and a ram for a burnt-offering, without blemish, and offer them before Jehovah.</VERS>\r\n      <VERS vnumber=\"3\">And unto the children of Israel thou shalt speak, saying, Take ye a he-goat for a sin-offering; and a calf and a lamb, both a year old, without blemish, for a burnt-offering;</VERS>\r\n      <VERS vnumber=\"4\">and an ox and a ram for peace-offerings, to sacrifice before Jehovah; and a meal-offering mingled with oil: for to-day Jehovah appeareth unto you.</VERS>\r\n      <VERS vnumber=\"5\">And they brought that which Moses commanded before the tent of meeting: and all the congregation drew near and stood before Jehovah.</VERS>\r\n      <VERS vnumber=\"6\">And Moses said, This is the thing which Jehovah commanded that ye should do: and the glory of Jehovah shall appear unto you.</VERS>\r\n      <VERS vnumber=\"7\">And Moses said unto Aaron, Draw near unto the altar, and offer thy sin-offering, and thy burnt-offering, and make atonement for thyself, and for the people; and offer the oblation of the people, and make atonement for them; as Jehovah commanded.</VERS>\r\n      <VERS vnumber=\"8\">So Aaron drew near unto the altar, and slew the calf of the sin-offering, which was for himself.</VERS>\r\n      <VERS vnumber=\"9\">And the sons of Aaron presented 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 base of the altar:</VERS>\r\n      <VERS vnumber=\"10\">but the fat, and the kidneys, and the caul from the liver of the sin-offering, he burnt upon the altar; as Jehovah commanded Moses.</VERS>\r\n      <VERS vnumber=\"11\">And the flesh and the skin he burnt with fire without the camp.</VERS>\r\n      <VERS vnumber=\"12\">And he slew the burnt-offering; and Aaron`s sons delivered unto him the blood, and he sprinkled it upon the altar round about.</VERS>\r\n      <VERS vnumber=\"13\">And they delivered the burnt-offering unto him, piece by piece, and the head: and he burnt them upon the altar.</VERS>\r\n      <VERS vnumber=\"14\">And he washed the inwards and the legs, and burnt them upon the burnt-offering on the altar.</VERS>\r\n      <VERS vnumber=\"15\">And he presented the people`s oblation, and took the goat of the sin-offering which was for the people, and slew it, and offered it for sin, as the first.</VERS>\r\n      <VERS vnumber=\"16\">And he presented the burnt-offering, and offered it according to the ordinance.</VERS>\r\n      <VERS vnumber=\"17\">And he presented the meal-offering, and filled his hand therefrom, and burnt it upon the altar, besides the burnt-offering of the morning.</VERS>\r\n      <VERS vnumber=\"18\">He slew also the ox and the ram, the sacrifice of peace-offerings, which was for the people: and Aaron`s sons delivered unto him the blood, which he sprinkled upon the altar round about,</VERS>\r\n      <VERS vnumber=\"19\">and the fat of the ox and of the ram, the fat tail, and that which covereth [the inwards], and the kidneys, and the caul of the liver:</VERS>\r\n      <VERS vnumber=\"20\">and they put the fat upon the breasts, and he burnt the fat upon the altar:</VERS>\r\n      <VERS vnumber=\"21\">and the breasts and the right thigh Aaron waved for a wave-offering before Jehovah; as Moses commanded.</VERS>\r\n      <VERS vnumber=\"22\">And Aaron lifted up his hands toward the people, and blessed them; and he came down from offering the sin-offering, and the burnt-offering, and the peace-offerings.</VERS>\r\n      <VERS vnumber=\"23\">And Moses and Aaron went into the tent of meeting, and came out, and blessed the people: and the glory of Jehovah appeared unto all the people.</VERS>\r\n      <VERS vnumber=\"24\">And there came forth fire from before Jehovah, and consumed upon the altar the burnt-offering and the fat: and when all the people saw it, they shouted, and fell on their faces.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">And Nadab and Abihu, the sons of Aaron, took each of them his censer, and put fire therein, and laid incense thereon, and offered strange fire before Jehovah, which he had not commanded them.</VERS>\r\n      <VERS vnumber=\"2\">And there came forth fire from before Jehovah, and devoured them, and they died before Jehovah.</VERS>\r\n      <VERS vnumber=\"3\">Then Moses said unto Aaron, This is it that Jehovah 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.</VERS>\r\n      <VERS vnumber=\"4\">And Moses called Mishael and Elzaphan, the sons of Uzziel the uncle of Aaron, and said unto them, Draw near, carry your brethren from before the sanctuary out of the camp.</VERS>\r\n      <VERS vnumber=\"5\">So they drew near, and carried them in their coats out of the camp, as Moses had said.</VERS>\r\n      <VERS vnumber=\"6\">And Moses said unto Aaron, and unto Eleazar and unto Ithamar, his sons, Let not the hair of your heads go loose, neither rend your clothes; that ye die not, and that he be not wroth with all the congregation: but let your brethren, the whole house of Israel, bewail the burning which Jehovah hath kindled.</VERS>\r\n      <VERS vnumber=\"7\">And ye shall not go out from the door of the tent of meeting, lest ye die; for the anointing oil of Jehovah is upon you. And they did according to the word of Moses.</VERS>\r\n      <VERS vnumber=\"8\">And Jehovah spake unto Aaron, saying,</VERS>\r\n      <VERS vnumber=\"9\">Drink no wine nor strong drink, thou, nor thy sons with thee, when ye go into the tent of meeting, that ye die not: it shall be a statute for ever throughout your generations:</VERS>\r\n      <VERS vnumber=\"10\">and that ye may make a distinction between the holy and the common, and between the unclean and the clean;</VERS>\r\n      <VERS vnumber=\"11\">and that ye may teach the children of Israel all the statutes which Jehovah hath spoken unto them by Moses.</VERS>\r\n      <VERS vnumber=\"12\">And Moses spake unto Aaron, and unto Eleazar and unto Ithamar, his sons that were left, Take the meal-offering that remaineth of the offerings of Jehovah made by fire, and eat it without leaven beside the altar; for it is most holy;</VERS>\r\n      <VERS vnumber=\"13\">and ye shall eat it in a holy place, because it is thy portion, and thy sons` portion, of the offerings of Jehovah made by fire: for so I am commanded.</VERS>\r\n      <VERS vnumber=\"14\">And the wave-breast and the heave-thigh shall ye eat in a clean place, thou, and thy sons, and thy daughters with thee: for they are given as thy portion, and thy sons` portion, out of the sacrifices of the peace-offerings of the children of Israel.</VERS>\r\n      <VERS vnumber=\"15\">The heave-thigh and the wave-breast shall they bring with the offerings made by fire of the fat, to wave it for a wave-offering before Jehovah: and it shall be thine, and thy sons` with thee, as a portion for ever; as Jehovah hath commanded.</VERS>\r\n      <VERS vnumber=\"16\">And Moses diligently sought the goat of the sin-offering, and, behold, it was burnt: and he was angry with Eleazar and with Ithamar, the sons of Aaron that were left, saying,</VERS>\r\n      <VERS vnumber=\"17\">Wherefore have ye not eaten the sin-offering in the place of the sanctuary, seeing it is most holy, and he hath given it you to bear the iniquity of the congregation, to make atonement for them before Jehovah?</VERS>\r\n      <VERS vnumber=\"18\">Behold, the blood of it was not brought into the sanctuary within: ye should certainly have eaten it in the sanctuary, as I commanded.</VERS>\r\n      <VERS vnumber=\"19\">And Aaron spake unto Moses, Behold, this day have they offered their sin-offering and their burnt-offering before Jehovah; and there have befallen me such things as these: and if I had eaten the sin-offering to-day, would it have been well-pleasing in the sight of Jehovah?</VERS>\r\n      <VERS vnumber=\"20\">And when Moses heard [that], it was well-pleasing in his sight.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">And Jehovah spake unto Moses and to Aaron, saying unto them,</VERS>\r\n      <VERS vnumber=\"2\">Speak unto the children of Israel, saying, These are the living things which ye may eat among all the beasts that are on the earth.</VERS>\r\n      <VERS vnumber=\"3\">Whatsoever parteth the hoof, and is clovenfooted, [and] cheweth the cud, among the beasts, that may ye eat.</VERS>\r\n      <VERS vnumber=\"4\">Nevertheless these shall ye not eat of them that chew the cud, or of them that part the hoof: the camel, because he cheweth the cud but parteth not the hoof, he is unclean unto you.</VERS>\r\n      <VERS vnumber=\"5\">And the coney, because he cheweth the cud but parteth not the hoof, he is unclean unto you.</VERS>\r\n      <VERS vnumber=\"6\">And the hare, because she cheweth the cud but parteth not the hoof, she is unclean unto you.</VERS>\r\n      <VERS vnumber=\"7\">And the swine, because he parteth the hoof, and is clovenfooted, but cheweth not the cud, he is unclean unto you.</VERS>\r\n      <VERS vnumber=\"8\">Of their flesh ye shall not eat, and their carcasses ye shall not touch; they are unclean unto you.</VERS>\r\n      <VERS vnumber=\"9\">These may ye eat of all that are in the waters: whatsoever hath fins and scales in the waters, in the seas, and in the rivers, that may ye eat.</VERS>\r\n      <VERS vnumber=\"10\">And all that have not fins and scales in the seas, and in the rivers, of all that move in the waters, and of all the living creatures that are in the waters, they are an abomination unto you,</VERS>\r\n      <VERS vnumber=\"11\">and they shall be an abomination unto you; ye shall not eat of their flesh, and their carcasses ye shall have in abomination.</VERS>\r\n      <VERS vnumber=\"12\">Whatsoever hath no fins nor scales in the waters, that is an abomination unto you.</VERS>\r\n      <VERS vnumber=\"13\">And these ye shall have in abomination among the birds; they shall not be eaten, they are an abomination: the eagle, and the gier-eagle, and the ospray,</VERS>\r\n      <VERS vnumber=\"14\">and the kite, and the falcon after its kind,</VERS>\r\n      <VERS vnumber=\"15\">every raven after its kind,</VERS>\r\n      <VERS vnumber=\"16\">and the ostrich, and the night-hawk, and the seamew, and the hawk after its kind,</VERS>\r\n      <VERS vnumber=\"17\">and the little owl, and the cormorant, and the great owl,</VERS>\r\n      <VERS vnumber=\"18\">and the horned owl, and the pelican, and the vulture,</VERS>\r\n      <VERS vnumber=\"19\">and the stork, the heron after its kind, and the hoopoe, and the bat.</VERS>\r\n      <VERS vnumber=\"20\">All winged creeping things that go upon all fours are an abomination unto you.</VERS>\r\n      <VERS vnumber=\"21\">Yet these may ye eat of all winged creeping things that go upon all fours, which have legs above their feet, wherewith to leap upon the earth.</VERS>\r\n      <VERS vnumber=\"22\">Even these of them ye may eat: the locust after its kind, and the bald locust after its kind, and the cricket after its kind, and the grasshopper after its kind.</VERS>\r\n      <VERS vnumber=\"23\">But all winged creeping things, which have four feet, are an abomination unto you.</VERS>\r\n      <VERS vnumber=\"24\">And by these ye shall become unclean: whosoever toucheth the carcass of them shall be unclean until the even;</VERS>\r\n      <VERS vnumber=\"25\">And whosoever beareth [aught] of the carcass of them shall wash his clothes, and be unclean until the even.</VERS>\r\n      <VERS vnumber=\"26\">Every beast which parteth the hoof, and is not clovenfooted, nor cheweth the cud, is unclean unto you: every one that toucheth them shall be unclean.</VERS>\r\n      <VERS vnumber=\"27\">And whatsoever goeth upon its paws, among all beasts that go on all fours, they are unclean unto you: whoso toucheth their carcass shall be unclean until the even.</VERS>\r\n      <VERS vnumber=\"28\">And he that beareth the carcass of them shall wash his clothes, and be unclean until the even: they are unclean unto you.</VERS>\r\n      <VERS vnumber=\"29\">And these are they which are unclean unto you among the creeping things that creep upon the earth: the weasel, and the mouse, and the great lizard after its kind,</VERS>\r\n      <VERS vnumber=\"30\">and the gecko, and the land-crocodile, and the lizard, and the sand-lizard, and the chameleon.</VERS>\r\n      <VERS vnumber=\"31\">These are they which are unclean to you among all that creep: whosoever doth touch them, when they are dead, shall be unclean until the even.</VERS>\r\n      <VERS vnumber=\"32\">And 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, wherewith any work is done, it must be put into water, and it shall be unclean until the even; then shall it be clean.</VERS>\r\n      <VERS vnumber=\"33\">And every earthen vessel, whereinto any of them falleth, whatsoever is in it shall be unclean, and it ye shall break.</VERS>\r\n      <VERS vnumber=\"34\">All food [therein] which may be eaten, that on which water cometh, shall be unclean; and all drink that may be drunk in every [such] vessel shall be unclean.</VERS>\r\n      <VERS vnumber=\"35\">And every thing whereupon [any part] of their carcass falleth shall be unclean; whether oven, or range for pots, it shall be broken in pieces: they are unclean, and shall be unclean unto you.</VERS>\r\n      <VERS vnumber=\"36\">Nevertheless a fountain or a pit wherein is a gathering of water shall be clean: but that which toucheth their carcass shall be unclean.</VERS>\r\n      <VERS vnumber=\"37\">And if [aught] of their carcass fall upon any sowing seed which is to be sown, it is clean.</VERS>\r\n      <VERS vnumber=\"38\">But if water be put upon the seed, and [aught] of their carcass fall thereon, it is unclean unto you.</VERS>\r\n      <VERS vnumber=\"39\">And if any beast, of which ye may eat, die; he that toucheth the carcass thereof shall be unclean until the even.</VERS>\r\n      <VERS vnumber=\"40\">And he that eateth of the carcass of it shall wash his clothes, and be unclean until the even: he also that beareth the carcass of it shall wash his clothes, and be unclean until the even.</VERS>\r\n      <VERS vnumber=\"41\">And every creeping thing that creepeth upon the earth is an abomination; it shall not be eaten.</VERS>\r\n      <VERS vnumber=\"42\">Whatsoever goeth upon the belly, and whatsoever goeth upon all fours, or whatsoever hath many feet, even all creeping things that creep upon the earth, them ye shall not eat; for they are an abomination.</VERS>\r\n      <VERS vnumber=\"43\">Ye 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.</VERS>\r\n      <VERS vnumber=\"44\">For I am Jehovah your God: sanctify yourselves therefore, and be ye holy; for I am holy: neither shall ye defile yourselves with any manner of creeping thing that moveth upon the earth.</VERS>\r\n      <VERS vnumber=\"45\">For I am Jehovah that brought you up out of the land of Egypt, to be your God: ye shall therefore be holy, for I am holy.</VERS>\r\n      <VERS vnumber=\"46\">This is the law of the beast, and of the bird, and of every living creature that moveth in the waters, and of every creature that creepeth upon the earth;</VERS>\r\n      <VERS vnumber=\"47\">to make a distinction between the unclean and the clean, and between the living thing that may be eaten and the living thing that may not be eaten.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">Speak unto the children of Israel, saying, If a woman conceive seed, and bear a man-child, then she shall be unclean seven days; as in the days of the impurity of her sickness shall she be unclean.</VERS>\r\n      <VERS vnumber=\"3\">And in the eighth day the flesh of his foreskin shall be circumcised.</VERS>\r\n      <VERS vnumber=\"4\">And she shall 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.</VERS>\r\n      <VERS vnumber=\"5\">But if she bear a maid-child, then she shall be unclean two weeks, as in her impurity; and she shall continue in the blood of [her] purifying threescore and six days.</VERS>\r\n      <VERS vnumber=\"6\">And when the days of her purifying are fulfilled, for a son, or for a daughter, she shall bring a lamb a year old for a burnt-offering, and a young pigeon, or a turtle-dove, for a sin-offering, unto the door of the tent of meeting, unto the priest:</VERS>\r\n      <VERS vnumber=\"7\">and he shall offer it before Jehovah, and make atonement for her; and she shall be cleansed from the fountain of her blood. This is the law for her that beareth, whether a male or a female.</VERS>\r\n      <VERS vnumber=\"8\">And if her means suffice not for a lamb, then she shall take two turtle-doves, or two young pigeons; the one for a burnt-offering, and the other for a sin-offering: and the priest shall make atonement for her, and she shall be clean.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">And Jehovah spake unto Moses and unto Aaron, saying,</VERS>\r\n      <VERS vnumber=\"2\">When a man shall have in the skin of his flesh a rising, or a scab, or a bright spot, and it become in the skin of his flesh the plague of leprosy, then he shall be brought unto Aaron the priest, or unto one of his sons the priests:</VERS>\r\n      <VERS vnumber=\"3\">and the priest shall look on the plague in the skin of the flesh: and if the hair in the plague be turned white, and the appearance of the plague be deeper than the skin of his flesh, it is the plague of leprosy; and the priest shall look on him, and pronounce him unclean.</VERS>\r\n      <VERS vnumber=\"4\">And if the bright spot be white in the skin of his flesh, and the appearance thereof 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:</VERS>\r\n      <VERS vnumber=\"5\">and the priest shall look on him the seventh day: and, behold, if in his eyes the plague be at a stay, and the plague be not spread in the skin, then the priest shall shut him up seven days more:</VERS>\r\n      <VERS vnumber=\"6\">and the priest shall look on him again the seventh day; and, behold, if the plague be dim, and the plague be not spread in the skin, then the priest shall pronounce him clean: it is a scab: and he shall wash his clothes, and be clean.</VERS>\r\n      <VERS vnumber=\"7\">But if the scab spread abroad in the skin, after that he hath showed himself to the priest for his cleansing, he shall show himself to the priest again:</VERS>\r\n      <VERS vnumber=\"8\">and the priest shall look; and, behold, if the scab be spread in the skin, then the priest shall pronounce him unclean: it is leprosy.</VERS>\r\n      <VERS vnumber=\"9\">When the plague of leprosy is in a man, then he shall be brought unto the priest;</VERS>\r\n      <VERS vnumber=\"10\">and the priest shall look; and, behold, if there be a white rising in the skin, and it have turned the hair white, and there be quick raw flesh in the rising,</VERS>\r\n      <VERS vnumber=\"11\">it is an old leprosy in the skin of his flesh, and the priest shall pronounce him unclean: he shall not shut him up, for he is unclean.</VERS>\r\n      <VERS vnumber=\"12\">And if the 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 feet, as far as appeareth to the priest;</VERS>\r\n      <VERS vnumber=\"13\">then the priest shall look; 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.</VERS>\r\n      <VERS vnumber=\"14\">But whensoever raw flesh appeareth in him, he shall be unclean.</VERS>\r\n      <VERS vnumber=\"15\">And the priest shall look on the raw flesh, and pronounce him unclean: the raw flesh is unclean: it is leprosy.</VERS>\r\n      <VERS vnumber=\"16\">Or if the raw flesh turn again, and be changed unto white, then he shall come unto the priest;</VERS>\r\n      <VERS vnumber=\"17\">and the priest shall look on him; and, behold, if the plague be turned into white, then the priest shall pronounce [him] clean [that hath] the plague: he is clean.</VERS>\r\n      <VERS vnumber=\"18\">And when the flesh hath in the skin thereof a boil, and it is healed,</VERS>\r\n      <VERS vnumber=\"19\">and in the place of the boil there is a white rising, or a bright spot, reddish-white, then is shall be showed to the priest;</VERS>\r\n      <VERS vnumber=\"20\">and the priest shall look; and, behold, if the appearance thereof be lower than the skin, and the hair thereof be turned white, then the priest shall pronounce him unclean: it is the plague of leprosy, it hath broken out in the boil.</VERS>\r\n      <VERS vnumber=\"21\">But if the priest look on it, and, behold, there be no white hairs therein, and it be not lower than the skin, but be dim; then the priest shall shut him up seven days:</VERS>\r\n      <VERS vnumber=\"22\">And if it spread abroad in the skin, then the priest shall pronounce him unclean: it is a plague.</VERS>\r\n      <VERS vnumber=\"23\">But if the bright spot stay in its place, and be not spread, it is the scar of the boil; and the priest shall pronounce him clean.</VERS>\r\n      <VERS vnumber=\"24\">Or when the flesh hath in the skin thereof a burning by fire, and the quick [flesh] of the burning become a bright spot, reddish-white, or white;</VERS>\r\n      <VERS vnumber=\"25\">then the priest shall look upon it; and, behold, if the hair in the bright spot be turned white, and the appearance thereof be deeper than the skin; it is leprosy, it hath broken out in the burning: and the priest shall pronounce him unclean: it is the plague of leprosy.</VERS>\r\n      <VERS vnumber=\"26\">But if the priest look on it, and, behold, there be no white hair in the bright spot, and it be no lower than the skin, but be dim; then the priest shall shut him up seven days:</VERS>\r\n      <VERS vnumber=\"27\">and the priest shall look upon him the seventh day: if it spread abroad in the skin, then the priest shall pronounce him unclean: it is the plague of leprosy.</VERS>\r\n      <VERS vnumber=\"28\">And if the bright spot stay in its place, and be not spread in the skin, but be dim; it is the rising of the burning, and the priest shall pronounce him clean: for it is the scar of the burning.</VERS>\r\n      <VERS vnumber=\"29\">And when a man or woman hath a plague upon the head or upon the beard,</VERS>\r\n      <VERS vnumber=\"30\">then the priest shall look on the plague; and, behold, if the appearance thereof be deeper than the skin, and there be in it yellow thin hair, then the priest shall pronounce him unclean: it is a scall, it is leprosy of the head or of the beard.</VERS>\r\n      <VERS vnumber=\"31\">And if the priest look on the plague of the scall, and, behold, the appearance thereof be not deeper than the skin, and there be no black hair in it, then the priest shall shut up [him that hath] the plague of the scall seven days:</VERS>\r\n      <VERS vnumber=\"32\">And in the seventh day the priest shall look on the plague; and, behold, if the scall be not spread, and there be in it no yellow hair, and the appearance of the scall be not deeper than the skin,</VERS>\r\n      <VERS vnumber=\"33\">then he shall be shaven, but the scall shall he not shave; and the priest shall shut up [him that hath] the scall seven days more:</VERS>\r\n      <VERS vnumber=\"34\">and in the seventh day the priest shall look on the scall; and, behold, if the scall be not spread in the skin, and the appearance thereof be not deeper than the skin; then the priest shall pronounce him clean: and he shall wash his clothes, and be clean.</VERS>\r\n      <VERS vnumber=\"35\">But if the scall spread abroad in the skin after his cleansing,</VERS>\r\n      <VERS vnumber=\"36\">then the priest shall look on him; and, behold, if the scall be spread in the skin, the priest shall not seek for the yellow hair; he is unclean.</VERS>\r\n      <VERS vnumber=\"37\">But if in his eyes the scall be at a stay, and black hair be grown up therein; the scall is healed, he is clean: and the priest shall pronounce him clean.</VERS>\r\n      <VERS vnumber=\"38\">And when a man or a woman hath in the skin of the flesh bright spots, even white bright spots;</VERS>\r\n      <VERS vnumber=\"39\">then the priest shall look; and, behold, if the bright spots in the skin of their flesh be of a dull white, it is a tetter, it hath broken out in the skin; he is clean.</VERS>\r\n      <VERS vnumber=\"40\">And if a man`s hair be fallen off his head, he is bald; [yet] is he clean.</VERS>\r\n      <VERS vnumber=\"41\">And if his hair be fallen off from the front part of his head, he is forehead bald; [yet] is he clean.</VERS>\r\n      <VERS vnumber=\"42\">But if there be in the bald head, or the bald forehead, a reddish-white plague; it is leprosy breaking out in his bald head, or his bald forehead.</VERS>\r\n      <VERS vnumber=\"43\">Then the priest shall look upon him; and, behold, if the rising of the plague be reddish-white in his bald head, or in his bald forehead, as the appearance of leprosy in the skin of the flesh;</VERS>\r\n      <VERS vnumber=\"44\">he is a leprous man, he is unclean: the priest shall surely pronounce him unclean; his plague is in his head.</VERS>\r\n      <VERS vnumber=\"45\">And the leper in whom the plague is, his clothes shall be rent, and the hair of his head shall go loose, and he shall cover his upper lip, and shall cry, Unclean, unclean.</VERS>\r\n      <VERS vnumber=\"46\">All the days wherein the plague is in him he shall be unclean; he is unclean: he shall dwell alone; without the camp shall his dwelling be.</VERS>\r\n      <VERS vnumber=\"47\">The garment also that the plague of leprosy is in, whether it be a woollen garment, or a linen garment;</VERS>\r\n      <VERS vnumber=\"48\">whether it be in warp, or woof; of linen, or of woollen; whether in a skin, or in anything made of skin;</VERS>\r\n      <VERS vnumber=\"49\">if the plague be greenish or reddish in the garment, or in the skin, or in the warp, or in the woof, or in anything of skin; it is the plague of leprosy, and shall be showed unto the priest.</VERS>\r\n      <VERS vnumber=\"50\">And the priest shall look upon the plague, and shut up [that which hath] the plague seven days:</VERS>\r\n      <VERS vnumber=\"51\">and 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 the skin, whatever service skin is used for; the plague is a fretting leprosy; it is unclean.</VERS>\r\n      <VERS vnumber=\"52\">And he shall burn the garment, whether the warp or the woof, in woollen or in linen, or anything of skin, wherein the plague is: for it is a fretting leprosy; it shall be burnt in the fire.</VERS>\r\n      <VERS vnumber=\"53\">And 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 anything of skin;</VERS>\r\n      <VERS vnumber=\"54\">then the priest shall command that they wash the thing wherein the plague is, and he shall shut it up seven days more:</VERS>\r\n      <VERS vnumber=\"55\">and the priest shall look, after that the plague is washed; and, behold, if the plague have not changed its color, and the plague be not spread, it is unclean; thou shalt burn it in the fire: it is a fret, whether the bareness be within or without.</VERS>\r\n      <VERS vnumber=\"56\">And if the priest look, and, behold, the plague be dim after the washing thereof, then he shall rend it out of the garment, or out of the skin, or out of the warp, or out of the woof:</VERS>\r\n      <VERS vnumber=\"57\">and if it appear still in the garment, either in the warp, or in the woof, or in anything of skin, it is breaking out: thou shalt burn that wherein the plague is with fire.</VERS>\r\n      <VERS vnumber=\"58\">And the garment, either the warp, or the 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.</VERS>\r\n      <VERS vnumber=\"59\">This is the law of the plague of leprosy in a garment of woollen or linen, either in the warp, or the woof, or anything of skin, to pronounce it clean, or to pronounce it unclean.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">This shall be the law of the leper in the day of his cleansing: he shall be brought unto the priest:</VERS>\r\n      <VERS vnumber=\"3\">and 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,</VERS>\r\n      <VERS vnumber=\"4\">then shall the priest command to take for him that is to be cleansed two living clean birds, and cedar wood, and scarlet, and hyssop:</VERS>\r\n      <VERS vnumber=\"5\">And the priest shall command to kill one of the birds in an earthen vessel over running water.</VERS>\r\n      <VERS vnumber=\"6\">As 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:</VERS>\r\n      <VERS vnumber=\"7\">And he shall sprinkle upon him that is to be cleansed from the leprosy seven times, and shall pronounce him clean, and shall let go the living bird into the open field.</VERS>\r\n      <VERS vnumber=\"8\">And he that is to be cleansed shall wash his clothes, and shave off all his hair, and bathe himself in water; and he shall be clean: and after that he shall come into the camp, but shall dwell outside his tent seven days.</VERS>\r\n      <VERS vnumber=\"9\">And 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, and he shall bathe his flesh in water, and he shall be clean.</VERS>\r\n      <VERS vnumber=\"10\">And on the eighth day he shall take two he-lambs without blemish, and one ewe-lamb a year old without blemish, and three tenth parts [of an ephah] of fine flour for a meal-offering, mingled with oil, and one log of oil.</VERS>\r\n      <VERS vnumber=\"11\">And the priest that cleanseth him shall set the man that is to be cleansed, and those things, before Jehovah, at the door of the tent of meeting.</VERS>\r\n      <VERS vnumber=\"12\">And the priest shall take one of the he-lambs, and offer him for a trespass-offering, and the log of oil, and wave them for a wave-offering before Jehovah:</VERS>\r\n      <VERS vnumber=\"13\">and he shall kill the he-lamb in the place where they kill the sin-offering and the burnt-offering, in the place of the sanctuary: for as the sin-offering is the priest`s, so is the trespass-offering: it is most holy:</VERS>\r\n      <VERS vnumber=\"14\">and the priest shall take 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.</VERS>\r\n      <VERS vnumber=\"15\">And the priest shall take of the log of oil, and pour it into the palm of his own left hand;</VERS>\r\n      <VERS vnumber=\"16\">and 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 Jehovah:</VERS>\r\n      <VERS vnumber=\"17\">and 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:</VERS>\r\n      <VERS vnumber=\"18\">and 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: and the priest shall make atonement for him before Jehovah.</VERS>\r\n      <VERS vnumber=\"19\">And the priest shall offer the sin-offering, and make atonement for him that is to be cleansed because of his uncleanness: and afterward he shall kill the burnt-offering;</VERS>\r\n      <VERS vnumber=\"20\">and the priest shall offer the burnt-offering and the meal-offering upon the altar: and the priest shall make atonement for him, and he shall be clean.</VERS>\r\n      <VERS vnumber=\"21\">And if he be poor, and cannot get so much, then he shall take one he-lamb for a trespass-offering to be waved, to make atonement for him, and one tenth part [of an ephah] of fine flour mingled with oil for a meal-offering, and a log of oil;</VERS>\r\n      <VERS vnumber=\"22\">and two turtle-doves, 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.</VERS>\r\n      <VERS vnumber=\"23\">And on the eighth day he shall bring them for his cleansing unto the priest, unto the door of the tent of meeting, before Jehovah:</VERS>\r\n      <VERS vnumber=\"24\">and 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 Jehovah.</VERS>\r\n      <VERS vnumber=\"25\">And he shall kill the lamb of the trespass-offering; and the priest shall take 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.</VERS>\r\n      <VERS vnumber=\"26\">And the priest shall pour of the oil into the palm of his own left hand;</VERS>\r\n      <VERS vnumber=\"27\">and the priest shall sprinkle with his right finger some of the oil that is in his left hand seven times before Jehovah:</VERS>\r\n      <VERS vnumber=\"28\">and 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:</VERS>\r\n      <VERS vnumber=\"29\">and 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 atonement for him before Jehovah.</VERS>\r\n      <VERS vnumber=\"30\">And he shall offer one of the turtle-doves, or of the young pigeons, such as he is able to get,</VERS>\r\n      <VERS vnumber=\"31\">even such as he is able to get, the one for a sin-offering, and the other for a burnt-offering, with the meal-offering: and the priest shall make atonement for him that is to be cleansed before Jehovah.</VERS>\r\n      <VERS vnumber=\"32\">This is the law of him in whom is the plague of leprosy, who is not able to get [that which pertaineth] to his cleansing.</VERS>\r\n      <VERS vnumber=\"33\">And Jehovah spake unto Moses and unto Aaron, saying,</VERS>\r\n      <VERS vnumber=\"34\">When ye are 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;</VERS>\r\n      <VERS vnumber=\"35\">then he that owneth the house shall come and tell the priest, saying, There seemeth to me to be as it were a plague in the house.</VERS>\r\n      <VERS vnumber=\"36\">And the priest shall command that they empty the house, before the priest goeth in 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:</VERS>\r\n      <VERS vnumber=\"37\">and he shall look on the plague; and, behold, if the plague be in the walls of the house with hollow streaks, greenish or reddish, and the appearance thereof be lower than the wall;</VERS>\r\n      <VERS vnumber=\"38\">then the priest shall go out of the house to the door of the house, and shut up the house seven days.</VERS>\r\n      <VERS vnumber=\"39\">And the priest shall come again the seventh day, and shall look; and, behold, if the plague be spread in the walls of the house;</VERS>\r\n      <VERS vnumber=\"40\">then the priest shall command that they take out the stones in which the plague is, and cast them into an unclean place without the city:</VERS>\r\n      <VERS vnumber=\"41\">and he shall cause the house to be scraped within round about, and they shall pour out the mortar, that they scrape off, without the city into an unclean place:</VERS>\r\n      <VERS vnumber=\"42\">and they shall take other stones, and put them in the place of those stones; and he shall take other mortar, and shall plaster the house.</VERS>\r\n      <VERS vnumber=\"43\">And if the plague come again, and break out in the house, after that he hath taken out the stones, and after he hath scraped the house, and after it is plastered;</VERS>\r\n      <VERS vnumber=\"44\">then the priest shall come in and look; and, behold, if the plague be spread in the house, it is a fretting leprosy in the house: it is unclean.</VERS>\r\n      <VERS vnumber=\"45\">And he shall break down the house, the stones of it, and the timber thereof, and all the mortar of the house; and he shall carry them forth out of the city into an unclean place.</VERS>\r\n      <VERS vnumber=\"46\">Moreover he that goeth into the house all the while that it is shut up shall be unclean until the even.</VERS>\r\n      <VERS vnumber=\"47\">And he that lieth in the house shall wash his clothes; and he that eateth in the house shall wash his clothes.</VERS>\r\n      <VERS vnumber=\"48\">And if the priest shall come in, and look, and, behold, the plague hath not spread in the house, after the house was plastered; then the priest shall pronounce the house clean, because the plague is healed.</VERS>\r\n      <VERS vnumber=\"49\">And he shall take to cleanse the house two birds, and cedar wood, and scarlet, and hyssop:</VERS>\r\n      <VERS vnumber=\"50\">and he shall kill one of the birds in an earthen vessel over running water:</VERS>\r\n      <VERS vnumber=\"51\">and 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:</VERS>\r\n      <VERS vnumber=\"52\">and 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:</VERS>\r\n      <VERS vnumber=\"53\">but he shall let got the living bird out of the city into the open field: so shall he make atonement for the house; and it shall be clean.</VERS>\r\n      <VERS vnumber=\"54\">This is the law for all manner of plague of leprosy, and for a scall,</VERS>\r\n      <VERS vnumber=\"55\">and for the leprosy of a garment, and for a house,</VERS>\r\n      <VERS vnumber=\"56\">and for a rising, and for a scab, and for a bright spot;</VERS>\r\n      <VERS vnumber=\"57\">to teach when it is unclean, and when it is clean: this is the law of leprosy.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">And Jehovah spake unto Moses and to Aaron, saying,</VERS>\r\n      <VERS vnumber=\"2\">Speak unto the children of Israel, and say unto them, When any man hath an issue out of his flesh, because of his issue he is unclean.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">Every bed whereon he that hath the issue lieth shall be unclean; and everything whereon he sitteth shall be unclean.</VERS>\r\n      <VERS vnumber=\"5\">And whosoever toucheth his bed shall wash his clothes, and bathe himself in water, and be unclean until the even.</VERS>\r\n      <VERS vnumber=\"6\">And he that sitteth on anything whereon he that hath the issue sat shall wash his clothes, and bathe himself in water, and be unclean until the even.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And what saddle soever he that hath the issue rideth upon shall be unclean.</VERS>\r\n      <VERS vnumber=\"10\">And whosoever toucheth anything that was under him shall be unclean until the even: and he that beareth those things shall wash his clothes, and bathe himself in water, and be unclean until the even.</VERS>\r\n      <VERS vnumber=\"11\">And whomsoever he that hath the issue toucheth, without having rinsed his hands in water, he shall wash his clothes, and bathe himself in water, and be unclean until the even.</VERS>\r\n      <VERS vnumber=\"12\">And the earthen vessel, which he that hath the issue toucheth, shall be broken; and every vessel of wood shall be rinsed in water.</VERS>\r\n      <VERS vnumber=\"13\">And 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 he shall bathe his flesh in running water, and shall be clean.</VERS>\r\n      <VERS vnumber=\"14\">And on the eighth day he shall take to him two turtle-doves, or two young pigeons, and come before Jehovah unto the door of the tent of meeting, and give them unto the priest:</VERS>\r\n      <VERS vnumber=\"15\">and the priest shall offer them, the one for a sin-offering, and the other for a burnt-offering; and the priest shall make atonement for him before Jehovah for his issue.</VERS>\r\n      <VERS vnumber=\"16\">And if any man`s seed of copulation go out from him, then he shall bathe all his flesh in water, and be unclean until the even.</VERS>\r\n      <VERS vnumber=\"17\">And every garment, and every skin, whereon is the seed of copulation, shall be washed with water, and be unclean until the even.</VERS>\r\n      <VERS vnumber=\"18\">The woman also with whom a man shall lie with seed of copulation, they shall both bathe themselves in water, and be unclean until the even.</VERS>\r\n      <VERS vnumber=\"19\">And if a woman have an issue, [and] her issue in her flesh be blood, she shall be in her impurity seven days: and whosoever toucheth her shall be unclean until the even.</VERS>\r\n      <VERS vnumber=\"20\">And everything that she lieth upon in her impurity shall be unclean: everything also that she sitteth upon shall be unclean.</VERS>\r\n      <VERS vnumber=\"21\">And whosoever toucheth her bed shall wash his clothes, and bathe himself in water, and be unclean until the even.</VERS>\r\n      <VERS vnumber=\"22\">And whosoever toucheth anything that she sitteth upon shall wash his clothes, and bathe himself in water, and be unclean until the even.</VERS>\r\n      <VERS vnumber=\"23\">And if it be on the bed, or on anything whereon she sitteth, when he toucheth it, he shall be unclean until the even.</VERS>\r\n      <VERS vnumber=\"24\">And if any man lie with her, and her impurity be upon him, he shall be unclean seven days; and every bed whereon he lieth shall be unclean.</VERS>\r\n      <VERS vnumber=\"25\">And if a woman have an issue of her blood many days not in the time of her impurity, or if she have an issue beyond the time of her impurity; all the days of the issue of her uncleanness she shall be as in the days of her impurity: she is unclean.</VERS>\r\n      <VERS vnumber=\"26\">Every bed whereon she lieth all the days of her issue shall be unto her as the bed of her impurity: and everything whereon she sitteth shall be unclean, as the uncleanness of her impurity.</VERS>\r\n      <VERS vnumber=\"27\">And whosoever toucheth those things shall be unclean, and shall wash his clothes, and bathe himself in water, and be unclean until the even.</VERS>\r\n      <VERS vnumber=\"28\">But if she be cleansed of her issue, then she shall number to herself seven days, and after that she shall be clean.</VERS>\r\n      <VERS vnumber=\"29\">And on the eighth day she shall take unto her two turtle-doves, or two young pigeons, and bring them unto the priest, to the door of the tent of meeting.</VERS>\r\n      <VERS vnumber=\"30\">And the priest shall offer the one for a sin-offering, and the other for a burnt-offering; and the priest shall make atonement for her before Jehovah for the issue of her uncleanness.</VERS>\r\n      <VERS vnumber=\"31\">Thus shall ye separate the children of Israel from their uncleanness, that they die not in their uncleanness, when they defile my tabernacle that is in the midst of them.</VERS>\r\n      <VERS vnumber=\"32\">This is the law of him that hath an issue, and of him whose seed of copulation goeth from him, so that he is unclean thereby;</VERS>\r\n      <VERS vnumber=\"33\">and of her that is sick with her impurity, and of him that hath an issue, of the man, and of the woman, and of him that lieth with her that is unclean.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">And Jehovah spake unto Moses, after the death of the two sons of Aaron, when they drew near before Jehovah, and died;</VERS>\r\n      <VERS vnumber=\"2\">and Jehovah said unto Moses, Speak unto Aaron thy brother, that he come not at all times into the holy place within the veil, before the mercy-seat which is upon the ark; that he die not: for I will appear in the cloud upon the mercy-seat.</VERS>\r\n      <VERS vnumber=\"3\">Herewith shall Aaron come into the holy place: with a young bullock for a sin-offering, and a ram for a burnt-offering.</VERS>\r\n      <VERS vnumber=\"4\">He shall put on the holy linen coat, and he shall have the linen breeches upon his flesh, and shall be girded with the linen girdle, and with the linen mitre shall he be attired: they are the holy garments; and he shall bathe his flesh in water, and put them on.</VERS>\r\n      <VERS vnumber=\"5\">And he shall take of the congregation of the children of Israel two he-goats for a sin-offering, and one ram for a burnt-offering.</VERS>\r\n      <VERS vnumber=\"6\">And Aaron shall present the bullock of the sin-offering, which is for himself, and make atonement for himself, and for his house.</VERS>\r\n      <VERS vnumber=\"7\">And he shall take the two goats, and set them before Jehovah at the door of the tent of meeting.</VERS>\r\n      <VERS vnumber=\"8\">And Aaron shall cast lots upon the two goats; one lot for Jehovah, and the other lot for Azazel.</VERS>\r\n      <VERS vnumber=\"9\">And Aaron shall present the goat upon which the lot fell for Jehovah, and offer him for a sin-offering.</VERS>\r\n      <VERS vnumber=\"10\">But the goat, on which the lot fell for Azazel, shall be set alive before Jehovah, to make atonement for him, to send him away for Azazel into the wilderness.</VERS>\r\n      <VERS vnumber=\"11\">And Aaron shall present the bullock of the sin-offering, which is for himself, and shall make atonement for himself, and for his house, and shall kill the bullock of the sin-offering which is for himself:</VERS>\r\n      <VERS vnumber=\"12\">and he shall take a censer full of coals of fire from off the altar before Jehovah, and his hands full of sweet incense beaten small, and bring it within the veil:</VERS>\r\n      <VERS vnumber=\"13\">and he shall put the incense upon the fire before Jehovah, that the cloud of the incense may cover the mercy-seat that is upon the testimony, that he die not:</VERS>\r\n      <VERS vnumber=\"14\">and he shall take of the blood of the bullock, and sprinkle it with his finger upon the mercy-seat on the east; and before the mercy-seat shall he sprinkle of the blood with his finger seven times.</VERS>\r\n      <VERS vnumber=\"15\">Then shall he kill the goat of the sin-offering, that is for the people, and bring his blood within the veil, and do with his blood as he did with the blood of the bullock, and sprinkle it upon the mercy-seat, and before the mercy-seat:</VERS>\r\n      <VERS vnumber=\"16\">and he shall make atonement for the holy place, because of the uncleannesses of the children of Israel, and because of their transgressions, even all their sins: and so shall he do for the tent of meeting, that dwelleth with them in the midst of their uncleannesses.</VERS>\r\n      <VERS vnumber=\"17\">And there shall be no man in the tent of meeting when he goeth in to make atonement in the holy place, until he come out, and have made atonement for himself, and for his household, and for all the assembly of Israel.</VERS>\r\n      <VERS vnumber=\"18\">And he shall go out unto the altar that is before Jehovah, and make 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.</VERS>\r\n      <VERS vnumber=\"19\">And he shall sprinkle of the blood upon it with his finger seven times, and cleanse it, and hallow it from the uncleannesses of the children of Israel.</VERS>\r\n      <VERS vnumber=\"20\">And when he hath made an end of atoning for the holy place, and the tent of meeting, and the altar, he shall present the live goat:</VERS>\r\n      <VERS vnumber=\"21\">and 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, even all their sins; and he shall put them upon the head of the goat, and shall send him away by the hand of a man that is in readiness into the wilderness:</VERS>\r\n      <VERS vnumber=\"22\">and the goat shall bear upon him all their iniquities unto a solitary land: and he shall let go the goat in the wilderness.</VERS>\r\n      <VERS vnumber=\"23\">And Aaron shall come into the tent of meeting, and shall put off the linen garments, which he put on when he went into the holy place, and shall leave them there:</VERS>\r\n      <VERS vnumber=\"24\">and he shall bathe his flesh in water in a holy place, and put on his garments, and come forth, and offer his burnt-offering and the burnt-offering of the people, and make atonement for himself and for the people.</VERS>\r\n      <VERS vnumber=\"25\">And the fat of the sin-offering shall he burn upon the altar.</VERS>\r\n      <VERS vnumber=\"26\">And he that letteth go the goat for Azazel shall wash his clothes, and bathe his flesh in water, and afterward he shall come into the camp.</VERS>\r\n      <VERS vnumber=\"27\">And the bullock of the sin-offering, and the goat of the sin-offering, whose blood was brought in to make atonement in the holy place, shall be carried forth without the camp; and they shall burn in the fire their skins, and their flesh, and their dung.</VERS>\r\n      <VERS vnumber=\"28\">And he that burneth them shall wash his clothes, and bathe his flesh in water, and afterward he shall come into the camp.</VERS>\r\n      <VERS vnumber=\"29\">And it shall be a statute for ever unto you: in the seventh month, on the tenth day of the month, ye shall afflict your souls, and shall do no manner of work, the home-born, or the stranger that sojourneth among you:</VERS>\r\n      <VERS vnumber=\"30\">for on this day shall atonement be made for you, to cleanse you; from all your sins shall ye be clean before Jehovah.</VERS>\r\n      <VERS vnumber=\"31\">It is a sabbath of solemn rest unto you, and ye shall afflict your souls; it is a statute for ever.</VERS>\r\n      <VERS vnumber=\"32\">And the priest, who shall be anointed and who shall be consecrated to be priest in his father`s stead, shall make the atonement, and shall put on the linen garments, even the holy garments:</VERS>\r\n      <VERS vnumber=\"33\">and he shall make atonement for the holy sanctuary; and he shall make atonement for the tent of meeting and for the altar; and he shall make atonement for the priests and for all the people of the assembly.</VERS>\r\n      <VERS vnumber=\"34\">And this shall be an everlasting statute unto you, to make atonement for the children of Israel because of all their sins once in the year. And he did as Jehovah commanded Moses.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"17\">\r\n      <VERS vnumber=\"1\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">Speak unto Aaron, and unto his sons, and unto all the children of Israel, and say unto them: This is the thing which Jehovah hath commanded, saying,</VERS>\r\n      <VERS vnumber=\"3\">What man soever there be of the house of Israel, that killeth an ox, or lamb, or goat, in the camp, or that killeth it without the camp,</VERS>\r\n      <VERS vnumber=\"4\">and hath not brought it unto the door of the tent of meeting, to offer it as an oblation unto Jehovah before the tabernacle of Jehovah: blood shall be imputed unto that man; he hath shed blood; and that man shall be cut off from among his people:</VERS>\r\n      <VERS vnumber=\"5\">To the end that the children of Israel may bring their sacrifices, which they sacrifice in the open field, even that they may bring them unto Jehovah, unto the door of the tent of meeting, unto the priest, and sacrifice them for sacrifices of peace-offerings unto Jehovah.</VERS>\r\n      <VERS vnumber=\"6\">And the priest shall sprinkle the blood upon the altar of Jehovah at the door of the tent of meeting, and burn the fat for a sweet savor unto Jehovah.</VERS>\r\n      <VERS vnumber=\"7\">And they shall no more sacrifice their sacrifices unto the he-goats, after which they play the harlot. This shall be a statute forever unto them throughout their generations.</VERS>\r\n      <VERS vnumber=\"8\">And thou shalt say unto them, Whatsoever man there be of the house of Israel, or of the strangers that sojourn among them, that offereth a burnt-offering or sacrifice,</VERS>\r\n      <VERS vnumber=\"9\">and bringeth it not unto the door of the tent of meeting, to sacrifice it unto Jehovah; that man shall be cut off from his people.</VERS>\r\n      <VERS vnumber=\"10\">And whatsoever man there be of the house of Israel, or of the strangers that sojourn among them, that eateth any manner of blood, I will set my face against that soul that eateth blood, and will cut him off from among his people.</VERS>\r\n      <VERS vnumber=\"11\">For the life of the flesh is in the blood; and I have given it to you upon the altar to make atonement for your souls: for it is the blood that maketh atonement by reason of the life.</VERS>\r\n      <VERS vnumber=\"12\">Therefore I said unto the children of Israel, No soul of you shall eat blood, neither shall any stranger that sojourneth among you eat blood.</VERS>\r\n      <VERS vnumber=\"13\">And whatsoever man there be of the children of Israel, or of the strangers that sojourn among them, who taketh in hunting any beast or bird that may be eaten; he shall pour out the blood thereof, and cover it with dust.</VERS>\r\n      <VERS vnumber=\"14\">For as to the life of all flesh, the blood thereof is [all one] with 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.</VERS>\r\n      <VERS vnumber=\"15\">And every soul that eateth that which dieth of itself, or that which is torn of beasts, whether he be home-born or a sojourner, he shall wash his clothes, and bathe himself in water, and be unclean until the even: then shall he be clean.</VERS>\r\n      <VERS vnumber=\"16\">But if he wash them not, nor bathe his flesh, then he shall bear his iniquity.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"18\">\r\n      <VERS vnumber=\"1\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">Speak unto the children of Israel, and say unto them, I am Jehovah your God.</VERS>\r\n      <VERS vnumber=\"3\">After 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 statutes.</VERS>\r\n      <VERS vnumber=\"4\">Mine ordinances shall ye do, and my statutes shall ye keep, to walk therein: I am Jehovah your God.</VERS>\r\n      <VERS vnumber=\"5\">Ye shall therefore keep my statutes, and mine ordinances; which if a man do, he shall live in them: I am Jehovah.</VERS>\r\n      <VERS vnumber=\"6\">None of you shall approach to any that are near of kin to him, to uncover [their] nakedness: I am Jehovah.</VERS>\r\n      <VERS vnumber=\"7\">The nakedness of thy father, even the nakedness of thy mother, shalt thou not uncover: she is thy mother; thou shalt not uncover her nakedness.</VERS>\r\n      <VERS vnumber=\"8\">The nakedness of thy father`s wife shalt thou not uncover: it is thy father`s nakedness.</VERS>\r\n      <VERS vnumber=\"9\">The nakedness of thy sister, the daughter of thy father, or the daughter of thy mother, whether born at home, or born abroad, even their nakedness thou shalt not uncover.</VERS>\r\n      <VERS vnumber=\"10\">The 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.</VERS>\r\n      <VERS vnumber=\"11\">The nakedness of thy father`s wife`s daughter, begotten of thy father, she is thy sister, thou shalt not uncover her nakedness.</VERS>\r\n      <VERS vnumber=\"12\">Thou shalt not uncover the nakedness of thy father`s sister: she is thy father`s near kinswoman.</VERS>\r\n      <VERS vnumber=\"13\">Thou shalt not uncover the nakedness of thy mother`s sister: for she is thy mother`s near kinswoman.</VERS>\r\n      <VERS vnumber=\"14\">Thou shalt not uncover the nakedness of thy father`s brother, thou shalt not approach to his wife: she is thine aunt.</VERS>\r\n      <VERS vnumber=\"15\">Thou shalt not uncover the nakedness of thy daughter-in-law: she is thy son`s wife; thou shalt not uncover her nakedness.</VERS>\r\n      <VERS vnumber=\"16\">Thou shalt not uncover the nakedness of thy brother`s wife: it is thy brother`s nakedness.</VERS>\r\n      <VERS vnumber=\"17\">Thou shalt not uncover the nakedness of a woman and her daughter; thou shalt not take her son`s daughter, or her daughter`s daughter, to uncover her nakedness; they are near kinswomen: it is wickedness.</VERS>\r\n      <VERS vnumber=\"18\">And thou shalt not take a wife to her sister, to be a rival [to her], to uncover her nakedness, besides the other in her life-time.</VERS>\r\n      <VERS vnumber=\"19\">And thou shalt not approach unto a woman to uncover her nakedness, as long as she is impure by her uncleanness.</VERS>\r\n      <VERS vnumber=\"20\">And thou shalt not lie carnally with thy neighbor`s wife, to defile thyself with her.</VERS>\r\n      <VERS vnumber=\"21\">And thou shalt not give any of thy seed to make them pass through [the fire] to Molech; neither shalt thou profane the name of thy God: I am Jehovah.</VERS>\r\n      <VERS vnumber=\"22\">Thou shalt not lie with mankind, as with womankind: it is abomination.</VERS>\r\n      <VERS vnumber=\"23\">And thou shalt not lie with any beast to defile thyself therewith; neither shall any woman stand before a beast, to lie down thereto: it is confusion.</VERS>\r\n      <VERS vnumber=\"24\">Defile not ye yourselves in any of these things: for in all these the nations are defiled which I cast out from before you;</VERS>\r\n      <VERS vnumber=\"25\">And the land is defiled: therefore I do visit the iniquity thereof upon it, and the land vomiteth out her inhabitants.</VERS>\r\n      <VERS vnumber=\"26\">Ye therefore shall keep my statutes and mine ordinances, and shall not do any of these abominations; neither the home-born, nor the stranger that sojourneth among you;</VERS>\r\n      <VERS vnumber=\"27\">(for all these abominations have the men of the land done, that were before you, and the land is defiled);</VERS>\r\n      <VERS vnumber=\"28\">that the land vomit not you out also, when ye defile it, as it vomited out the nation that was before you.</VERS>\r\n      <VERS vnumber=\"29\">For whosoever shall do any of these abominations, even the souls that do them shall be cut off from among their people.</VERS>\r\n      <VERS vnumber=\"30\">Therefore shall ye keep my charge, that ye practise not any of these abominable customs, which were practised before you, and that ye defile not yourselves therein: I am Jehovah your God.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"19\">\r\n      <VERS vnumber=\"1\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">Speak unto all the congregation of the children of Israel, and say unto them, Ye shall be holy; for I Jehovah your God am holy.</VERS>\r\n      <VERS vnumber=\"3\">Ye shall fear every man his mother, and his father; and ye shall keep my sabbaths: I am Jehovah your God.</VERS>\r\n      <VERS vnumber=\"4\">Turn ye not unto idols, nor make to yourselves molten gods: I am Jehovah your God.</VERS>\r\n      <VERS vnumber=\"5\">And when ye offer a sacrifice of peace-offerings unto Jehovah, ye shall offer it that ye may be accepted.</VERS>\r\n      <VERS vnumber=\"6\">It shall be eaten the same day ye offer it, and on the morrow: and if aught remain until the third day, it shall be burnt with fire.</VERS>\r\n      <VERS vnumber=\"7\">And if it be eaten at all on the third day, it is an abomination; it shall not be accepted:</VERS>\r\n      <VERS vnumber=\"8\">but every one that eateth it shall bear his iniquity, because he hath profaned the holy thing of Jehovah: and that soul shall be cut off from his people.</VERS>\r\n      <VERS vnumber=\"9\">And when ye reap the harvest of your land, thou shalt not wholly reap the corners of thy field, neither shalt thou gather the gleaning of thy harvest.</VERS>\r\n      <VERS vnumber=\"10\">And thou shalt not glean thy vineyard, neither shalt thou gather the fallen fruit of thy vineyard; thou shalt leave them for the poor and for the sojourner: I am Jehovah your God.</VERS>\r\n      <VERS vnumber=\"11\">Ye shall not steal; neither shall ye deal falsely, nor lie one to another.</VERS>\r\n      <VERS vnumber=\"12\">And ye shall not swear by my name falsely, and profane the name of thy God: I am Jehovah.</VERS>\r\n      <VERS vnumber=\"13\">Thou shalt not oppress thy neighbor, nor rob him: the wages of a hired servant shall not abide with thee all night until the morning.</VERS>\r\n      <VERS vnumber=\"14\">Thou shalt not curse the deaf, nor put a stumblingblock before the blind; but thou shalt fear thy God: I am Jehovah.</VERS>\r\n      <VERS vnumber=\"15\">Ye 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 neighbor.</VERS>\r\n      <VERS vnumber=\"16\">Thou shalt not go up and down as a talebearer among thy people: neither shalt thou stand against the blood of thy neighbor: I am Jehovah.</VERS>\r\n      <VERS vnumber=\"17\">Thou shalt not hate thy brother in thy heart: thou shalt surely rebuke thy neighbor, and not bear sin because of him.</VERS>\r\n      <VERS vnumber=\"18\">Thou shalt not take vengeance, nor bear any grudge against the children of thy people; but thou shalt love thy neighbor as thyself: I am Jehovah.</VERS>\r\n      <VERS vnumber=\"19\">Ye shall keep my statutes. Thou shalt not let thy cattle gender with a diverse kind: thou shalt not sow thy field with two kinds of seed: neither shall there come upon thee a garment of two kinds of stuff mingled together.</VERS>\r\n      <VERS vnumber=\"20\">And whosoever lieth carnally with a woman, that is a bondmaid, betrothed to a husband, and not at all redeemed, nor freedom given her; they shall be punished; they shall not be put to death, because she was not free.</VERS>\r\n      <VERS vnumber=\"21\">And he shall bring his trespass-offering unto Jehovah, unto the door of the tent of meeting, even a ram for a trespass-offering.</VERS>\r\n      <VERS vnumber=\"22\">And the priest shall make atonement for him with the ram of the trespass-offering before Jehovah for his sin which he hath sinned: and the sin which he hath sinned shall be forgiven him.</VERS>\r\n      <VERS vnumber=\"23\">And 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 their uncircumcision: three years shall they be as uncircumcised unto you; it shall not be eaten.</VERS>\r\n      <VERS vnumber=\"24\">But in the fourth year all the fruit thereof shall be holy, for giving praise unto Jehovah.</VERS>\r\n      <VERS vnumber=\"25\">And in the fifth year shall ye eat of the fruit thereof, that it may yield unto you the increase thereof: I am Jehovah your God.</VERS>\r\n      <VERS vnumber=\"26\">Ye shall not eat anything with the blood: neither shall ye use enchantments, nor practise augury.</VERS>\r\n      <VERS vnumber=\"27\">Ye shall not round the corners of your heads, neither shalt thou mar the corners of thy beard.</VERS>\r\n      <VERS vnumber=\"28\">Ye shall not make any cuttings in your flesh for the dead, nor print any marks upon you: I am Jehovah.</VERS>\r\n      <VERS vnumber=\"29\">Profane not thy daughter, to make her a harlot; lest the land fall to whoredom, and the land become full of wickedness.</VERS>\r\n      <VERS vnumber=\"30\">Ye shall keep my sabbaths, and reverence my sanctuary; I am Jehovah.</VERS>\r\n      <VERS vnumber=\"31\">Turn ye not unto them that have familiar spirits, nor unto the wizards; seek them not out, to be defiled by them: I am Jehovah your God.</VERS>\r\n      <VERS vnumber=\"32\">Thou shalt rise up before the hoary head, and honor the face of the old man, and thou shalt fear thy God: I am Jehovah.</VERS>\r\n      <VERS vnumber=\"33\">And if a stranger sojourn with thee in your land, ye shall not do him wrong.</VERS>\r\n      <VERS vnumber=\"34\">The stranger that sojourneth with you shall be unto you as the home-born among you, and thou shalt love him as thyself; for ye were sojourners in the land of Egypt: I am Jehovah your God.</VERS>\r\n      <VERS vnumber=\"35\">Ye shall do no unrighteousness in judgment, in measures of length, of weight, or of quantity.</VERS>\r\n      <VERS vnumber=\"36\">Just balances, just weights, a just ephah, and a just hin, shall ye have: I am Jehovah your God, who brought you out of the land of Egypt.</VERS>\r\n      <VERS vnumber=\"37\">And ye shall observe all my statutes, and all mine ordinances, and do them: I am Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"20\">\r\n      <VERS vnumber=\"1\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">Moreover, 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 of his seed unto Molech; he shall surely be put to death: the people of the land shall stone him with stones.</VERS>\r\n      <VERS vnumber=\"3\">I also 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.</VERS>\r\n      <VERS vnumber=\"4\">And if the people at the land do at all hide their eyes from that man, when he giveth of his seed unto Molech, and put him not to death;</VERS>\r\n      <VERS vnumber=\"5\">then I will set my face against that man, and against his family, and will cut him off, and all that play the harlot after him, to play the harlot with Molech, from among their people.</VERS>\r\n      <VERS vnumber=\"6\">And the soul that turneth unto them that have familiar spirits, and unto the wizards, to play the harlot after them, I will even set my face against that soul, and will cut him off from among his people.</VERS>\r\n      <VERS vnumber=\"7\">Sanctify yourselves therefore, and be ye holy; for I am Jehovah your God.</VERS>\r\n      <VERS vnumber=\"8\">And ye shall keep my statutes, and do them: I am Jehovah who sanctifieth you.</VERS>\r\n      <VERS vnumber=\"9\">For every one that curseth his father or his mother shall surely be put to death: he hath cursed his father or his mother; his blood shall be upon him.</VERS>\r\n      <VERS vnumber=\"10\">And the man that committeth adultery with another man`s wife, even he that committeth adultery with his neighbor`s wife, the adulterer and the adulteress shall surely be put to death.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And if a man lie with mankind, as with womankind, both of them have committed abomination: they shall surely be put to death; their blood shall be upon them.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And if a man lie with a beast, he shall surely be put to death: and ye shall slay the beast.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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 shameful thing; and they shall be cut off in the sight of the children of their people: he hath uncovered his sister`s nakedness; he shall bear his iniquity.</VERS>\r\n      <VERS vnumber=\"18\">And if a man shall lie with a woman having her sickness, and shall uncover her nakedness; he hath made naked her fountain, and she hath uncovered the fountain of her blood: and both of them shall be cut off from among their people.</VERS>\r\n      <VERS vnumber=\"19\">And thou shalt not uncover the nakedness of thy mother`s sister, nor of thy father`s sister; for he hath made naked his near kin: they shall bear their iniquity.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And if a man shall take his brother`s wife, it is impurity: he hath uncovered his brother`s nakedness; they shall be childless.</VERS>\r\n      <VERS vnumber=\"22\">Ye shall therefore keep all my statutes, and all mine ordinances, and do them; that the land, whither I bring you to dwell therein, vomit you not out.</VERS>\r\n      <VERS vnumber=\"23\">And ye shall not walk in the customs of the nation, which I cast out before you: for they did all these things, and therefore I abhorred them.</VERS>\r\n      <VERS vnumber=\"24\">But I have said unto you, Ye shall inherit their land, and I will give it unto you to possess it, a land flowing with milk and honey: I am Jehovah your God, who hath separated you from the peoples.</VERS>\r\n      <VERS vnumber=\"25\">Ye shall therefore make a distinction between the clean beast and the unclean, and between the unclean fowl and the clean: and ye shall not make your souls abominable by beast, or by bird, or by anything wherewith the ground teemeth, which I have separated from you as unclean.</VERS>\r\n      <VERS vnumber=\"26\">And ye shall be holy unto me: for I, Jehovah, am holy, and have set you apart from the peoples, that ye should be mine.</VERS>\r\n      <VERS vnumber=\"27\">A man also or a 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"21\">\r\n      <VERS vnumber=\"1\">And Jehovah said unto Moses, Speak unto the priests, the sons of Aaron, and say unto them, There shall none defile himself for the dead among his people;</VERS>\r\n      <VERS vnumber=\"2\">except for his kin, that is near unto him, for his mother, and for his father, and for his son, and for his daughter, and for his brother,</VERS>\r\n      <VERS vnumber=\"3\">and for his sister a virgin, that is near unto him, that hath had no husband; for her may he defile himself.</VERS>\r\n      <VERS vnumber=\"4\">He shall not defile himself, [being] a chief man among his people, to profane himself.</VERS>\r\n      <VERS vnumber=\"5\">They shall not make baldness upon their head, neither shall they shave off the corner of their beard, nor make any cuttings in their flesh.</VERS>\r\n      <VERS vnumber=\"6\">They shall be holy unto their God, and not profane the name of their God; for the offerings of Jehovah made by fire, the bread of their God, they do offer: therefore they shall be holy.</VERS>\r\n      <VERS vnumber=\"7\">They shall not take a woman that is a harlot, or profane; neither shall they take a woman put away from her husband: for he is holy unto his God.</VERS>\r\n      <VERS vnumber=\"8\">Thou shalt sanctify him therefore; for he offereth the bread of thy God: he shall be holy unto thee: for I Jehovah, who sanctify you, am holy.</VERS>\r\n      <VERS vnumber=\"9\">And the daughter of any priest, if she profane herself by playing the harlot, she profaneth her father: she shall be burnt with fire.</VERS>\r\n      <VERS vnumber=\"10\">And he that is the high priest among his brethren, upon whose head the anointing oil is poured, and that is consecrated to put on the garments, shall not let the hair of his head go loose, nor rend his clothes;</VERS>\r\n      <VERS vnumber=\"11\">neither shall he go in to any dead body, nor defile himself for his father, or for his mother;</VERS>\r\n      <VERS vnumber=\"12\">neither 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 Jehovah.</VERS>\r\n      <VERS vnumber=\"13\">And he shall take a wife in her virginity.</VERS>\r\n      <VERS vnumber=\"14\">A widow, or one divorced, or a profane woman, a harlot, these shall he not take: but a virgin of his own people shall he take to wife.</VERS>\r\n      <VERS vnumber=\"15\">And he shall not profane his seed among his people: for I am Jehovah who sanctifieth him.</VERS>\r\n      <VERS vnumber=\"16\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"17\">Speak unto Aaron, saying, Whosoever he be of thy seed throughout their generations that hath a blemish, let him not approach to offer the bread of his God.</VERS>\r\n      <VERS vnumber=\"18\">For 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 anything superfluous,</VERS>\r\n      <VERS vnumber=\"19\">or a man that is broken-footed, or broken-handed,</VERS>\r\n      <VERS vnumber=\"20\">or crook-backed, or a dwarf, or that hath a blemish in his eye, or is scurvy, or scabbed, or hath his stones broken;</VERS>\r\n      <VERS vnumber=\"21\">no man of the seed of Aaron the priest, that hath a blemish, shall come nigh to offer the offerings of Jehovah made by fire: he hath a blemish; he shall not come nigh to offer the bread of his God.</VERS>\r\n      <VERS vnumber=\"22\">He shall eat the bread of his God, both of the most holy, and of the holy:</VERS>\r\n      <VERS vnumber=\"23\">only he shall not go in unto the veil, nor come nigh unto the altar, because he hath a blemish; that he profane not my sanctuaries: for I am Jehovah who sanctifieth them.</VERS>\r\n      <VERS vnumber=\"24\">So Moses spake unto Aaron, and to his sons, and unto all the children of Israel.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"22\">\r\n      <VERS vnumber=\"1\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">Speak unto Aaron and to his sons, that they separate themselves from the holy things of the children of Israel, which they hallow unto me, and that they profane not my holy name: I am Jehovah.</VERS>\r\n      <VERS vnumber=\"3\">Say unto them, Whosoever he be of all your seed throughout your generations, that approacheth unto the holy things, which the children of Israel hallow unto Jehovah, having his uncleanness upon him, that soul shall be cut off from before me: I am Jehovah.</VERS>\r\n      <VERS vnumber=\"4\">What man soever of the seed of Aaron is a leper, or hath an issue; he shall not eat of the holy things, until he be clean. And whoso toucheth anything that is unclean by the dead, or a man whose seed goeth from him;</VERS>\r\n      <VERS vnumber=\"5\">or whosoever toucheth any creeping thing, whereby he may be made unclean, or a man of whom he may take uncleanness, whatsoever uncleanness he hath;</VERS>\r\n      <VERS vnumber=\"6\">the soul that toucheth any such shall be unclean until the even, and shall not eat of the holy things, unless he bathe his flesh in water.</VERS>\r\n      <VERS vnumber=\"7\">And when the sun is down, he shall be clean; and afterward he shall eat of the holy things, because it is his bread.</VERS>\r\n      <VERS vnumber=\"8\">That which dieth of itself, or is torn of beasts, he shall not eat, to defile himself therewith: I am Jehovah.</VERS>\r\n      <VERS vnumber=\"9\">They shall therefore keep my charge, lest they bear sin for it, and die therein, if they profane it: I am Jehovah who sanctifieth them.</VERS>\r\n      <VERS vnumber=\"10\">There shall no stranger eat of the holy thing: a sojourner of the priest`s, or a hired servant, shall not eat of the holy thing.</VERS>\r\n      <VERS vnumber=\"11\">But if a priest buy any soul, the purchase of his money, he shall eat of it; and such as are born in his house, they shall eat of his bread.</VERS>\r\n      <VERS vnumber=\"12\">And if a priest`s daughter be married unto a stranger, she shall not eat of the heave-offering of the holy things.</VERS>\r\n      <VERS vnumber=\"13\">But if a priest`s daughter be a widow, or divorced, and have no child, and be returned unto her father`s house, as in her youth, she shall eat of her father`s bread: but there shall no stranger eat thereof.</VERS>\r\n      <VERS vnumber=\"14\">And if a man eat of the holy thing unwittingly, then he shall put the fifth part thereof unto it, and shall give unto the priest the holy thing.</VERS>\r\n      <VERS vnumber=\"15\">And they shall not profane the holy things of the children of Israel, which they offer unto Jehovah,</VERS>\r\n      <VERS vnumber=\"16\">and [so] cause them to bear the iniquity that bringeth guilt, when they eat their holy things: for I am Jehovah who sanctifieth them.</VERS>\r\n      <VERS vnumber=\"17\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"18\">Speak unto Aaron, and to his sons, and unto all the children of Israel, and say unto them, Whosoever he be of the house of Israel, or of the sojourners in Israel, that offereth his oblation, whether it be any of their vows, or any of their freewill-offerings, which they offer unto Jehovah for a burnt-offering;</VERS>\r\n      <VERS vnumber=\"19\">that ye may be accepted, [ye shall offer] a male without blemish, of the bullocks, of the sheep, or of the goats.</VERS>\r\n      <VERS vnumber=\"20\">But whatsoever hath a blemish, that shall ye not offer: for it shall not be acceptable for you.</VERS>\r\n      <VERS vnumber=\"21\">And whosoever offereth a sacrifice of peace-offerings unto Jehovah to accomplish a vow, or for a freewill-offering, of the herd or of the flock, it shall be perfect to be accepted; there shall be no blemish therein.</VERS>\r\n      <VERS vnumber=\"22\">Blind, or broken, or maimed, or having a wen, or scurvy, or scabbed, ye shall not offer these unto Jehovah, nor make an offering by fire of them upon the altar unto Jehovah.</VERS>\r\n      <VERS vnumber=\"23\">Either a bullock or a lamb that hath anything superfluous or lacking in his parts, that mayest thou offer for a freewill-offering; but for a vow it shall not be accepted.</VERS>\r\n      <VERS vnumber=\"24\">That which hath its stones bruised, or crushed, or broken, or cut, ye shall not offer unto Jehovah; neither shall ye do [thus] in your land.</VERS>\r\n      <VERS vnumber=\"25\">Neither from the hand of a foreigner shall ye offer the bread of your God of any of these; because their corruption is in them, there is a blemish in them: they shall not be accepted for you.</VERS>\r\n      <VERS vnumber=\"26\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"27\">When 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 the oblation of an offering made by fire unto Jehovah.</VERS>\r\n      <VERS vnumber=\"28\">And whether it be cow or ewe, ye shall not kill it and its young both in one day.</VERS>\r\n      <VERS vnumber=\"29\">And when ye sacrifice a sacrifice of thanksgiving unto Jehovah, ye shall sacrifice it that ye may be accepted.</VERS>\r\n      <VERS vnumber=\"30\">On the same day it shall be eaten; ye shall leave none of it until the morning: I am Jehovah.</VERS>\r\n      <VERS vnumber=\"31\">Therefore shall ye keep my commandments, and do them: I am Jehovah.</VERS>\r\n      <VERS vnumber=\"32\">And ye shall not profane my holy name; but I will be hallowed among the children of Israel: I am Jehovah who halloweth you,</VERS>\r\n      <VERS vnumber=\"33\">who brought you out of the land of Egypt, to be your God: I am Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"23\">\r\n      <VERS vnumber=\"1\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">Speak unto the children of Israel, and say unto them, The set feasts of Jehovah, which ye shall proclaim to be holy convocations, even these are my set feasts.</VERS>\r\n      <VERS vnumber=\"3\">Six days shall work be done: but on the seventh day is a sabbath of solemn rest, a holy convocation; ye shall do no manner of work: it is a sabbath unto Jehovah in all your dwellings.</VERS>\r\n      <VERS vnumber=\"4\">These are the set feasts of Jehovah, even holy convocations, which ye shall proclaim in their appointed season.</VERS>\r\n      <VERS vnumber=\"5\">In the first month, on the fourteenth day of the month at even, is Jehovah`s passover.</VERS>\r\n      <VERS vnumber=\"6\">And on the fifteenth day of the same month is the feast of unleavened bread unto Jehovah: seven days ye shall eat unleavened bread.</VERS>\r\n      <VERS vnumber=\"7\">In the first day ye shall have a holy convocation: ye shall do no servile work.</VERS>\r\n      <VERS vnumber=\"8\">But ye shall offer an offering made by fire unto Jehovah seven days: in the seventh day is a holy convocation; ye shall do no servile work.</VERS>\r\n      <VERS vnumber=\"9\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"10\">Speak unto the children of Israel, and say unto them, When ye are come into the land which I give unto you, and shall reap the harvest thereof, then ye shall bring the sheaf of the first-fruits of your harvest unto the priest:</VERS>\r\n      <VERS vnumber=\"11\">and he shall wave the sheaf before Jehovah, to be accepted for you: on the morrow after the sabbath the priest shall wave it.</VERS>\r\n      <VERS vnumber=\"12\">And in the day when ye wave the sheaf, ye shall offer a he-lamb without blemish a year old for a burnt-offering unto Jehovah.</VERS>\r\n      <VERS vnumber=\"13\">And the meal-offering thereof shall be two tenth parts [of an ephah] of fine flour mingled with oil, an offering made by fire unto Jehovah for a sweet savor; and the drink-offering thereof shall be of wine, the fourth part of a hin.</VERS>\r\n      <VERS vnumber=\"14\">And ye shall eat neither bread, nor parched grain, nor fresh ears, until this selfsame day, until ye have brought the oblation of your God: it is a statute for ever throughout your generations in all your dwellings.</VERS>\r\n      <VERS vnumber=\"15\">And 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 there be complete:</VERS>\r\n      <VERS vnumber=\"16\">even unto the morrow after the seventh sabbath shall ye number fifty days; and ye shall offer a new meal-offering unto Jehovah.</VERS>\r\n      <VERS vnumber=\"17\">Ye shall bring out of your habitations two wave-loaves of two tenth parts [of an ephah]: they shall be of fine flour, they shall be baken with leaven, for first-fruits unto Jehovah.</VERS>\r\n      <VERS vnumber=\"18\">And ye shall present with the bread seven lambs without blemish a year old, and one young bullock, and two rams: they shall be a burnt-offering unto Jehovah, with their meal-offering, and their drink-offerings, even an offering made by fire, of a sweet savor unto Jehovah.</VERS>\r\n      <VERS vnumber=\"19\">And ye shall offer one he-goat for a sin-offering, and two he-lambs a year old for a sacrifice of peace-offerings.</VERS>\r\n      <VERS vnumber=\"20\">And the priest shall wave them with the bread of the first-fruits for a wave-offering before Jehovah, with the two lambs: they shall be holy to Jehovah for the priest.</VERS>\r\n      <VERS vnumber=\"21\">And ye shall make proclamation on the selfsame day; there shall be a holy convocation unto you; ye shall do no servile work: it is a statute for ever in all your dwellings throughout your generations.</VERS>\r\n      <VERS vnumber=\"22\">And when ye reap the harvest of your land, thou shalt not wholly reap the corners of thy field, neither shalt thou gather the gleaning of thy harvest: thou shalt leave them for the poor, and for the sojourner: I am Jehovah your God.</VERS>\r\n      <VERS vnumber=\"23\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"24\">Speak unto the children of Israel, saying, In the seventh month, on the first day of the month, shall be a solemn rest unto you, a memorial of blowing of trumpets, a holy convocation.</VERS>\r\n      <VERS vnumber=\"25\">Ye shall do no servile work; and ye shall offer an offering made by fire unto Jehovah.</VERS>\r\n      <VERS vnumber=\"26\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"27\">Howbeit on the tenth day of this seventh month is the day of atonement: it shall be a holy convocation unto you, and ye shall afflict your souls; and ye shall offer an offering made by fire unto Jehovah.</VERS>\r\n      <VERS vnumber=\"28\">And ye shall do no manner of work in that same day; for it is a day of atonement, to make atonement for you before Jehovah your God.</VERS>\r\n      <VERS vnumber=\"29\">For whatsoever soul it be that shall not be afflicted in that same day; he shall be cut off from his people.</VERS>\r\n      <VERS vnumber=\"30\">And whatsoever soul it be that doeth any manner of work in that same day, that soul will I destroy from among his people.</VERS>\r\n      <VERS vnumber=\"31\">Ye shall do no manner of work: it is a statute for ever throughout your generations in all your dwellings.</VERS>\r\n      <VERS vnumber=\"32\">It shall be unto you a sabbath of solemn rest, and ye shall afflict your souls: in the ninth day of the month at even, from even unto even, shall ye keep your sabbath.</VERS>\r\n      <VERS vnumber=\"33\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"34\">Speak unto the children of Israel, saying, On the fifteenth day of this seventh month is the feast of tabernacles for seven days unto Jehovah.</VERS>\r\n      <VERS vnumber=\"35\">On the first day shall be a holy convocation: ye shall do no servile work.</VERS>\r\n      <VERS vnumber=\"36\">Seven days ye shall offer an offering made by fire unto Jehovah: on the eighth day shall be a holy convocation unto you; and ye shall offer an offering made by fire unto Jehovah: it is a solemn assembly; ye shall do no servile work.</VERS>\r\n      <VERS vnumber=\"37\">These are the set feasts of Jehovah, which ye shall proclaim to be holy convocations, to offer an offering made by fire unto Jehovah, a burnt-offering, and a meal-offering, a sacrifice, and drink-offerings, each on its own day;</VERS>\r\n      <VERS vnumber=\"38\">besides the sabbaths of Jehovah, and besides your gifts, and besides all your vows, and besides all your freewill-offerings, which ye give unto Jehovah.</VERS>\r\n      <VERS vnumber=\"39\">Howbeit on the fifteenth day of the seventh month, when ye have gathered in the fruits of the land, ye shall keep the feast of Jehovah seven days: on the first day shall be a solemn rest, and on the eighth day shall be a solemn rest.</VERS>\r\n      <VERS vnumber=\"40\">And ye shall take you on the first day the fruit of goodly trees, branches of palm-trees, and boughs of thick trees, and willows of the brook; and ye shall rejoice before Jehovah your God seven days.</VERS>\r\n      <VERS vnumber=\"41\">And ye shall keep it a feast unto Jehovah seven days in the year: it is a statute for ever throughout your generations; ye shall keep it in the seventh month.</VERS>\r\n      <VERS vnumber=\"42\">Ye shall dwell in booths seven days; all that are home-born in Israel shall dwell in booths;</VERS>\r\n      <VERS vnumber=\"43\">that 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 Jehovah your God.</VERS>\r\n      <VERS vnumber=\"44\">And Moses declared unto the children of Israel the set feasts of Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"24\">\r\n      <VERS vnumber=\"1\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">Command the children of Israel, that they bring unto thee pure olive oil beaten for the light, to cause a lamp to burn continually.</VERS>\r\n      <VERS vnumber=\"3\">Without the veil of the testimony, in the tent of meeting, shall Aaron keep it in order from evening to morning before Jehovah continually: it shall be a statute for ever throughout your generations.</VERS>\r\n      <VERS vnumber=\"4\">He shall keep in order the lamps upon the pure candlestick before Jehovah continually.</VERS>\r\n      <VERS vnumber=\"5\">And thou shalt take fine flour, and bake twelve cakes thereof: two tenth parts [of an ephah] shall be in one cake.</VERS>\r\n      <VERS vnumber=\"6\">And thou shalt set them in two rows, six on a row, upon the pure table before Jehovah.</VERS>\r\n      <VERS vnumber=\"7\">And thou shalt put pure frankincense upon each row, that it may be to the bread for a memorial, even an offering made by fire unto Jehovah.</VERS>\r\n      <VERS vnumber=\"8\">Every sabbath day he shall set it in order before Jehovah continually; it is on the behalf of the children of Israel, an everlasting covenant.</VERS>\r\n      <VERS vnumber=\"9\">And it shall be for Aaron and his sons; and they shall eat it in a holy place: for it is most holy unto him of the offerings of Jehovah made by fire by a perpetual statute.</VERS>\r\n      <VERS vnumber=\"10\">And the son of an Israelitish woman, whose father was an Egyptian, went out among the children of Israel; and the son of the Israelitish woman and a man of Israel strove together in the camp:</VERS>\r\n      <VERS vnumber=\"11\">and the son of the Israelitish woman blasphemed the Name, and cursed; and they brought him unto Moses. And his mother`s name was Shelomith, the daughter of Dibri, of the tribe of Dan.</VERS>\r\n      <VERS vnumber=\"12\">And they put him in ward, that it might be declared unto them at the mouth of Jehovah.</VERS>\r\n      <VERS vnumber=\"13\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"14\">Bring 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.</VERS>\r\n      <VERS vnumber=\"15\">And thou shalt speak unto the children of Israel, saying, Whosoever curseth his God shall bear his sin.</VERS>\r\n      <VERS vnumber=\"16\">And he that blasphemeth the name of Jehovah, he shall surely be put to death; all the congregation shall certainly stone him: as well the sojourner, as the home-born, when he blasphemeth the name [of Jehovah], shall be put to death.</VERS>\r\n      <VERS vnumber=\"17\">And he that smiteth any man mortally shall surely be put to death.</VERS>\r\n      <VERS vnumber=\"18\">And he that smiteth a beast mortally shall make it good, life for life.</VERS>\r\n      <VERS vnumber=\"19\">And if a man cause a blemish in his neighbor; as he hath done, so shall it be done to him:</VERS>\r\n      <VERS vnumber=\"20\">breach for breach, eye for eye, tooth for tooth; as he hath caused a blemish in a man, so shall it be rendered unto him.</VERS>\r\n      <VERS vnumber=\"21\">And he that killeth a beast shall make it good: and he that killeth a man shall be put to death.</VERS>\r\n      <VERS vnumber=\"22\">Ye shall have one manner of law, as well for the sojourner, as for the home-born: for I am Jehovah your God.</VERS>\r\n      <VERS vnumber=\"23\">And Moses spake to the children of Israel; and they brought forth him that had cursed out of the camp, and stoned him with stones. And the children of Israel did as Jehovah commanded Moses.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"25\">\r\n      <VERS vnumber=\"1\">And Jehovah spake unto Moses in mount Sinai, saying,</VERS>\r\n      <VERS vnumber=\"2\">Speak 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 Jehovah.</VERS>\r\n      <VERS vnumber=\"3\">Six years thou shalt sow thy field, and six years thou shalt prune thy vineyard, and gather in the fruits thereof;</VERS>\r\n      <VERS vnumber=\"4\">but in the seventh year shall be a sabbath of solemn rest for the land, a sabbath unto Jehovah: thou shalt neither sow thy field, nor prune thy vineyard.</VERS>\r\n      <VERS vnumber=\"5\">That which groweth of itself of thy harvest thou shalt not reap, and the grapes of thy undressed vine thou shalt not gather: it shall be a year of solemn rest for the land.</VERS>\r\n      <VERS vnumber=\"6\">And the sabbath of the land shall be for food for you; for thee, and for thy servant and for thy maid, and for thy hired servant and for thy stranger, who sojourn with thee.</VERS>\r\n      <VERS vnumber=\"7\">And for thy cattle, and for the beasts that are in thy land, shall all the increase thereof be for food.</VERS>\r\n      <VERS vnumber=\"8\">And thou shalt number seven sabbaths of years unto thee, seven times seven years; and there shall be unto thee the days of seven sabbaths of years, even forty and nine years.</VERS>\r\n      <VERS vnumber=\"9\">Then shalt thou send abroad the loud trumpet on the tenth day of the seventh month; in the day of atonement shall ye send abroad the trumpet throughout all your land.</VERS>\r\n      <VERS vnumber=\"10\">And ye shall hallow the fiftieth year, and proclaim liberty throughout the land unto all the inhabitants thereof: it shall be a jubilee unto you; and ye shall return every man unto his possession, and ye shall return every man unto his family.</VERS>\r\n      <VERS vnumber=\"11\">A jubilee 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 the undressed vines.</VERS>\r\n      <VERS vnumber=\"12\">For it is a jubilee; it shall be holy unto you: ye shall eat the increase thereof out of the field.</VERS>\r\n      <VERS vnumber=\"13\">In this year of jubilee ye shall return every man unto his possession.</VERS>\r\n      <VERS vnumber=\"14\">And if thou sell aught unto thy neighbor, or buy of thy neighbor`s hand, ye shall not wrong one another.</VERS>\r\n      <VERS vnumber=\"15\">According to the number of years after the jubilee thou shalt buy of thy neighbor, [and] according unto the number of years of the crops he shall sell unto thee.</VERS>\r\n      <VERS vnumber=\"16\">According to the multitude of the years thou shalt increase the price thereof, and according to the fewness of the years thou shalt diminish the price of it; for the number of the crops doth he sell unto thee.</VERS>\r\n      <VERS vnumber=\"17\">And ye shall not wrong one another; but thou shalt fear thy God: for I am Jehovah your God.</VERS>\r\n      <VERS vnumber=\"18\">Wherefore ye shall do my statutes, and keep mine ordinances and do them; and ye shall dwell in the land in safety.</VERS>\r\n      <VERS vnumber=\"19\">And the land shall yield its fruit, and ye shall eat your fill, and dwell therein in safety.</VERS>\r\n      <VERS vnumber=\"20\">And if ye shall say, What shall we eat the seventh year? Behold, we shall not sow, nor gather in our increase;</VERS>\r\n      <VERS vnumber=\"21\">then I will command my blessing upon you in the sixth year, and it shall bring forth fruit for the three years.</VERS>\r\n      <VERS vnumber=\"22\">And ye shall sow the eighth year, and eat of the fruits, the old store; until the ninth year, until its fruits come in, ye shall eat the old store.</VERS>\r\n      <VERS vnumber=\"23\">And the land shall not be sold in perpetuity; for the land is mine: for ye are strangers and sojourners with me.</VERS>\r\n      <VERS vnumber=\"24\">And in all the land of your possession ye shall grant a redemption for the land.</VERS>\r\n      <VERS vnumber=\"25\">If thy brother be waxed poor, and sell some of his possession, then shall his kinsman that is next unto him come, and shall redeem that which his brother hath sold.</VERS>\r\n      <VERS vnumber=\"26\">And if a man have no one to redeem it, and he be waxed rich and find sufficient to redeem it;</VERS>\r\n      <VERS vnumber=\"27\">then let him reckon the years of the sale thereof, and restore the overplus unto the man to whom he sold it; and he shall return unto his possession.</VERS>\r\n      <VERS vnumber=\"28\">But if he be not able to get it back for himself, then that which he hath sold shall remain in the hand of him that hath bought it until the year of jubilee: and in the jubilee it shall go out, and he shall return unto his possession.</VERS>\r\n      <VERS vnumber=\"29\">And if a man sell a dwelling-house in a walled city, then he may redeem it within a whole year after it is sold; for a full year shall he have the right of redemption.</VERS>\r\n      <VERS vnumber=\"30\">And if it be not redeemed within the space of a full year, then the house that is in the walled city shall be made sure in perpetuity to him that bought it, throughout his generations: it shall not go out in the jubilee.</VERS>\r\n      <VERS vnumber=\"31\">But the houses of the villages which have no wall round about them shall be reckoned with the fields of the country: they may be redeemed, and they shall go out in the jubilee.</VERS>\r\n      <VERS vnumber=\"32\">Nevertheless the cities of the Levites, the houses of the cities of their possession, may the Levites redeem at any time.</VERS>\r\n      <VERS vnumber=\"33\">And if one of the Levites redeem, then the house that was sold, and the city of his possession, shall go out in the jubilee; for the houses of the cities of the Levites are their possession among the children of Israel.</VERS>\r\n      <VERS vnumber=\"34\">But the field of the suburbs of their cities may not be sold; for it is their perpetual possession.</VERS>\r\n      <VERS vnumber=\"35\">And if thy brother be waxed poor, and his hand fail with thee; then thou shalt uphold him: [as] a stranger and a sojourner shall he live with thee.</VERS>\r\n      <VERS vnumber=\"36\">Take thou no interest of him or increase, but fear thy God; that thy brother may live with thee.</VERS>\r\n      <VERS vnumber=\"37\">Thou shalt not give him thy money upon interest, nor give him thy victuals for increase.</VERS>\r\n      <VERS vnumber=\"38\">I am Jehovah your God, who brought you forth out of the land of Egypt, to give you the land of Canaan, [and] to be your God.</VERS>\r\n      <VERS vnumber=\"39\">And if thy brother be waxed poor with thee, and sell himself unto thee; thou shalt not make him to serve as a bond-servant.</VERS>\r\n      <VERS vnumber=\"40\">As a hired servant, and as a sojourner, he shall be with thee; he shall serve with thee unto the year of jubilee:</VERS>\r\n      <VERS vnumber=\"41\">then shall he go out from thee, he and his children with him, and shall return unto his own family, and unto the possession of his fathers shall he return.</VERS>\r\n      <VERS vnumber=\"42\">For they are my servants, whom I brought forth out of the land of Egypt: they shall not be sold as bondmen.</VERS>\r\n      <VERS vnumber=\"43\">Thou shalt not rule over him with rigor, but shalt fear thy God.</VERS>\r\n      <VERS vnumber=\"44\">And as for thy bondmen, and thy bondmaids, whom thou shalt have; of the nations that are round about you, of them shall ye buy bondmen and bondmaids.</VERS>\r\n      <VERS vnumber=\"45\">Moreover of the children of the strangers that sojourn among you, of them shall ye buy, and of their families that are with you, which they have begotten in your land: and they shall be your possession.</VERS>\r\n      <VERS vnumber=\"46\">And ye shall make them an inheritance for your children after you, to hold for a possession; of them shall ye take your bondmen for ever: but over your brethren the children of Israel ye shall not rule, one over another, with rigor.</VERS>\r\n      <VERS vnumber=\"47\">And if a stranger or sojourner with thee be waxed rich, and thy brother be waxed poor beside him, and sell himself unto the stranger [or] sojourner with thee, or to the stock of the stranger`s family;</VERS>\r\n      <VERS vnumber=\"48\">after that he is sold he may be redeemed: one of his brethren may redeem him;</VERS>\r\n      <VERS vnumber=\"49\">or 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 waxed rich, he may redeem himself.</VERS>\r\n      <VERS vnumber=\"50\">And he shall reckon with him that bought him from the year that he sold himself to him unto the year of jubilee: and the price of his sale shall be according unto the number of years; according to the time of a hired servant shall he be with him.</VERS>\r\n      <VERS vnumber=\"51\">If there be yet many years, according unto them he shall give back the price of his redemption out of the money that he was bought for.</VERS>\r\n      <VERS vnumber=\"52\">And if there remain but few years unto the year of jubilee, then he shall reckon with him; according unto his years shall he give back the price of his redemption.</VERS>\r\n      <VERS vnumber=\"53\">As a servant hired year by year shall he be with him: he shall not rule with rigor over him in thy sight.</VERS>\r\n      <VERS vnumber=\"54\">And if he be not redeemed by these [means], then he shall go out in the year of jubilee, he, and his children with him.</VERS>\r\n      <VERS vnumber=\"55\">For unto me the children of Israel are servants; they are my servants whom I brought forth out of the land of Egypt: I am Jehovah your God.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"26\">\r\n      <VERS vnumber=\"1\">Ye shall make you no idols, neither shall ye rear you up a graven image, or a pillar, neither shall ye place any figured stone in your land, to bow down unto it: for I am Jehovah your God.</VERS>\r\n      <VERS vnumber=\"2\">Ye shall keep my sabbaths, and reverence my sanctuary: I am Jehovah.</VERS>\r\n      <VERS vnumber=\"3\">If ye walk in my statutes, and keep my commandments, and do them;</VERS>\r\n      <VERS vnumber=\"4\">then I will give your rains in their season, and the land shall yield its increase, and the trees of the field shall yield their fruit.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And I will give peace in the land, and ye shall lie down, and none shall make you afraid: and I will cause evil beasts to cease out of the land, neither shall the sword go through your land.</VERS>\r\n      <VERS vnumber=\"7\">And ye shall chase your enemies, and they shall fall before you by the sword.</VERS>\r\n      <VERS vnumber=\"8\">And five of you shall chase a hundred, and a hundred of you shall chase ten thousand; and your enemies shall fall before you by the sword.</VERS>\r\n      <VERS vnumber=\"9\">And I will have respect unto you, and make you fruitful, and multiply you, and will establish my covenant with you.</VERS>\r\n      <VERS vnumber=\"10\">And ye shall eat old store long kept, and ye shall bring forth the old because of the new.</VERS>\r\n      <VERS vnumber=\"11\">And I will set my tabernacle among you: and my soul shall not abhor you.</VERS>\r\n      <VERS vnumber=\"12\">And I will walk among you, and will be your God, and ye shall be my people.</VERS>\r\n      <VERS vnumber=\"13\">I am Jehovah your God, who brought you forth out of the land of Egypt, that ye should not be their bondmen; and I have broken the bars of your yoke, and made you go upright.</VERS>\r\n      <VERS vnumber=\"14\">But if ye will not hearken unto me, and will not do all these commandments;</VERS>\r\n      <VERS vnumber=\"15\">and if ye shall reject my statutes, and if your soul abhor mine ordinances, so that ye will not do all my commandments, but break my covenant;</VERS>\r\n      <VERS vnumber=\"16\">I also will do this unto you: I will appoint terror over you, even consumption and fever, that shall consume the eyes, and make the soul to pine away; and ye shall sow your seed in vain, for your enemies shall eat it.</VERS>\r\n      <VERS vnumber=\"17\">And I will set my face against you, and ye shall be smitten before your enemies: they that hate you shall rule over you; and ye shall flee when none pursueth you.</VERS>\r\n      <VERS vnumber=\"18\">And if ye will not yet for these things hearken unto me, then I will chastise you seven times more for your sins.</VERS>\r\n      <VERS vnumber=\"19\">And I will break the pride of your power: and I will make your heaven as iron, and your earth as brass;</VERS>\r\n      <VERS vnumber=\"20\">and your strength shall be spent in vain; for your land shall not yield its increase, neither shall the trees of the land yield their fruit.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And I will send the beast of the field among you, which shall rob you of your children, and destroy your cattle, and make you few in number; and your ways shall become desolate.</VERS>\r\n      <VERS vnumber=\"23\">And if by these things ye will not be reformed unto me, but will walk contrary unto me;</VERS>\r\n      <VERS vnumber=\"24\">then will I also walk contrary unto you; and I will smite you, even I, seven times for your sins.</VERS>\r\n      <VERS vnumber=\"25\">And I will bring a sword upon you, that shall execute the vengeance of the covenant; and ye shall be gathered together within your cities: and I will send the pestilence among you; and ye shall be delivered into the hand of the enemy.</VERS>\r\n      <VERS vnumber=\"26\">When I break your staff of bread, ten women shall bake your bread in one oven, and they shall deliver your bread again by weight: and ye shall eat, and not be satisfied.</VERS>\r\n      <VERS vnumber=\"27\">And if ye will not for all this hearken unto me, but walk contrary unto me;</VERS>\r\n      <VERS vnumber=\"28\">then I will walk contrary unto you in wrath; and I also will chastise you seven times for your sins.</VERS>\r\n      <VERS vnumber=\"29\">And ye shall eat the flesh of your sons, and the flesh of your daughters shall ye eat.</VERS>\r\n      <VERS vnumber=\"30\">And I will destroy your high places, and cut down your sun-images, and cast your dead bodies upon the bodies of your idols; and my soul shall abhor you.</VERS>\r\n      <VERS vnumber=\"31\">And I will make your cities a waste, and will bring your sanctuaries unto desolation, and I will not smell the savor of your sweet odors.</VERS>\r\n      <VERS vnumber=\"32\">And I will bring the land into desolation; and your enemies that dwell therein shall be astonished at it.</VERS>\r\n      <VERS vnumber=\"33\">And you will I scatter among the nations, and I will draw out the sword after you: and your land shall be a desolation, and your cities shall be a waste.</VERS>\r\n      <VERS vnumber=\"34\">Then shall the land enjoy its sabbaths, as long as it lieth desolate, and ye are in your enemies` land; even then shall the land rest, and enjoy its sabbaths.</VERS>\r\n      <VERS vnumber=\"35\">As long as it lieth desolate it shall have rest, even the rest which it had not in your sabbaths, when ye dwelt upon it.</VERS>\r\n      <VERS vnumber=\"36\">And as for them that are left of you, I will send a faintness into their heart in the lands of their enemies: and the sound of a driven leaf shall chase them; and they shall flee, as one fleeth from the sword; and they shall fall when none pursueth.</VERS>\r\n      <VERS vnumber=\"37\">And they shall stumble one upon another, as it were before the sword, when none pursueth: and ye shall have no power to stand before your enemies.</VERS>\r\n      <VERS vnumber=\"38\">And ye shall perish among the nations, and the land of your enemies shall eat you up.</VERS>\r\n      <VERS vnumber=\"39\">And 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.</VERS>\r\n      <VERS vnumber=\"40\">And they shall confess their iniquity, and the iniquity of their fathers, in their trespass which they trespassed against me, and also that, because they walked contrary unto me,</VERS>\r\n      <VERS vnumber=\"41\">I also walked contrary unto them, and brought them into the land of their enemies: if then their uncircumcised heart be humbled, and they then accept of the punishment of their iniquity;</VERS>\r\n      <VERS vnumber=\"42\">then 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.</VERS>\r\n      <VERS vnumber=\"43\">The land also shall be left by them, and shall enjoy its sabbaths, while it lieth desolate without them: and they shall accept of the punishment of their iniquity; because, even because they rejected mine ordinances, and their soul abhorred my statutes.</VERS>\r\n      <VERS vnumber=\"44\">And yet for all that, when they are in the land of their enemies, I will not reject them, neither will I abhor them, to destroy them utterly, and to break my covenant with them; for I am Jehovah their God;</VERS>\r\n      <VERS vnumber=\"45\">but 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 nations, that I might be their God: I am Jehovah.</VERS>\r\n      <VERS vnumber=\"46\">These are the statutes and ordinances and laws, which Jehovah made between him and the children of Israel in mount Sinai by Moses.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"27\">\r\n      <VERS vnumber=\"1\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">Speak unto the children of Israel, and say unto them, When a man shall accomplish a vow, the persons shall be for Jehovah by thy estimation.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And if it be a female, then thy estimation shall be thirty shekels.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And if it be from sixty years old and upward; if it be a male, then thy estimation shall be fifteen shekels, and for the female ten shekels.</VERS>\r\n      <VERS vnumber=\"8\">But if he be poorer than thy estimation, then he shall be set before the priest, and the priest shall value him; according to the ability of him that vowed shall the priest value him.</VERS>\r\n      <VERS vnumber=\"9\">And if it be a beast, whereof men offer an oblation unto Jehovah, all that any man giveth of such unto Jehovah shall be holy.</VERS>\r\n      <VERS vnumber=\"10\">He 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 both it and that for which it is changed shall be holy.</VERS>\r\n      <VERS vnumber=\"11\">And if it be any unclean beast, of which they do not offer an oblation unto Jehovah, then he shall set the beast before the priest;</VERS>\r\n      <VERS vnumber=\"12\">and the priest shall value it, whether it be good or bad: as thou the priest valuest it, so shall it be.</VERS>\r\n      <VERS vnumber=\"13\">But if he will indeed redeem it, then he shall add the fifth part thereof unto thy estimation.</VERS>\r\n      <VERS vnumber=\"14\">And when a man shall sanctify his house to be holy unto Jehovah, then the priest shall estimate it, whether it be good or bad: as the priest shall estimate it, so shall it stand.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And if a man shall sanctify unto Jehovah part of the field of his possession, then thy estimation shall be according to the sowing thereof: the sowing of a homer of barley [shall be valued] at fifty shekels of silver.</VERS>\r\n      <VERS vnumber=\"17\">If he sanctify his field from the year of jubilee, according to thy estimation it shall stand.</VERS>\r\n      <VERS vnumber=\"18\">But if he sanctify his field after the jubilee, then the priest shall reckon unto him the money according to the years that remain unto the year of jubilee; and an abatement shall be made from thy estimation.</VERS>\r\n      <VERS vnumber=\"19\">And if he that sanctified the field will indeed redeem it, then he shall add the fifth part of the money of thy estimation unto it, and it shall be assured to him.</VERS>\r\n      <VERS vnumber=\"20\">And if he will not redeem the field, or if he have sold the field to another man, it shall not be redeemed any more:</VERS>\r\n      <VERS vnumber=\"21\">but the field, when it goeth out in the jubilee, shall be holy unto Jehovah, as a field devoted; the possession thereof shall be the priest`s.</VERS>\r\n      <VERS vnumber=\"22\">And if he sanctify unto Jehovah a field which he hath bought, which is not of the field of his possession;</VERS>\r\n      <VERS vnumber=\"23\">then the priest shall reckon unto him the worth of thy estimation unto the year of jubilee: and he shall give thine estimation in that day, as a holy thing unto Jehovah.</VERS>\r\n      <VERS vnumber=\"24\">In the year of jubilee the field shall return unto him of whom it was bought, even to him to whom the possession of the land belongeth.</VERS>\r\n      <VERS vnumber=\"25\">And all thy estimations shall be according to the shekel of the sanctuary: twenty gerahs shall be the shekel.</VERS>\r\n      <VERS vnumber=\"26\">Only the firstling among beasts, which is made a firstling to Jehovah, no man shall sanctify it; whether it be ox or sheep, it is Jehovah`s.</VERS>\r\n      <VERS vnumber=\"27\">And if it be of an unclean beast, then he shall ransom it according to thine estimation, and shall add unto it the fifth part thereof: or if it be not redeemed, then it shall be sold according to thy estimation.</VERS>\r\n      <VERS vnumber=\"28\">Notwithstanding, no devoted thing, that a man shall devote unto Jehovah of all that he hath, whether of man or beast, or of the field of his possession, shall be sold or redeemed: every devoted thing is most holy unto Jehovah.</VERS>\r\n      <VERS vnumber=\"29\">No one devoted, that shall be devoted from among men, shall be ransomed; he shall surely be put to death.</VERS>\r\n      <VERS vnumber=\"30\">And all the tithe of the land, whether of the seed of the land, or of the fruit of the tree, is Jehovah`s: it is holy unto Jehovah.</VERS>\r\n      <VERS vnumber=\"31\">And if a man will redeem aught of his tithe, he shall add unto it the fifth part thereof.</VERS>\r\n      <VERS vnumber=\"32\">And all the tithe of the herd or the flock, whatsoever passeth under the rod, the tenth shall be holy unto Jehovah.</VERS>\r\n      <VERS vnumber=\"33\">He 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 that for which it is changed shall be holy; it shall not be redeemed.</VERS>\r\n      <VERS vnumber=\"34\">These are the commandments, which Jehovah commanded Moses for the children of Israel in mount Sinai.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"4\" bname=\"Numbers\" bsname=\"Num\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">And Jehovah spake unto Moses in the wilderness of Sinai, in the tent of meeting, on the first day of the second month, in the second year after they were come out of the land of Egypt, saying,</VERS>\r\n      <VERS vnumber=\"2\">Take ye the sum of all the congregation of the children of Israel, by their families, by their fathers` houses, according to the number of the names, every male, by their polls;</VERS>\r\n      <VERS vnumber=\"3\">from twenty years old and upward, all that are able to go forth to war in Israel, thou and Aaron shall number them by their hosts.</VERS>\r\n      <VERS vnumber=\"4\">And with you there shall be a man of every tribe; every one head of his fathers` house.</VERS>\r\n      <VERS vnumber=\"5\">And these are the names of the men that shall stand with you. Of Reuben: Elizur the son of Shedeur.</VERS>\r\n      <VERS vnumber=\"6\">Of Simeon: Shelumiel the son of Zurishaddai.</VERS>\r\n      <VERS vnumber=\"7\">Of Judah: Nahshon the son of Amminadab.</VERS>\r\n      <VERS vnumber=\"8\">Of Issachar: Nethanel the son of Zuar.</VERS>\r\n      <VERS vnumber=\"9\">Of Zebulun: Eliab the son of Helon.</VERS>\r\n      <VERS vnumber=\"10\">Of the children of Joseph: Of Ephraim: Elishama the son of Ammihud. Of Manasseh: Gamaliel the son of Pedahzur.</VERS>\r\n      <VERS vnumber=\"11\">Of Benjamin: Abidan the son of Gideoni.</VERS>\r\n      <VERS vnumber=\"12\">Of Dan: Ahiezer the son of Ammishaddai.</VERS>\r\n      <VERS vnumber=\"13\">Of Asher: Pagiel the son of Ochran.</VERS>\r\n      <VERS vnumber=\"14\">Of Gad: Eliasaph the son of Deuel.</VERS>\r\n      <VERS vnumber=\"15\">Of Naphtali: Ahira the son of Enan.</VERS>\r\n      <VERS vnumber=\"16\">These are they that were called of the congregation, the princes of the tribes of their fathers; they were the heads of the thousands of Israel.</VERS>\r\n      <VERS vnumber=\"17\">And Moses and Aaron took these men that are mentioned by name:</VERS>\r\n      <VERS vnumber=\"18\">And they assembled all the congregation together on the first day of the second month; and they declared their pedigrees after their families, by their fathers` houses, according to the number of the names, from twenty years old and upward, by their polls.</VERS>\r\n      <VERS vnumber=\"19\">As Jehovah commanded Moses, so he numbered them in the wilderness of Sinai.</VERS>\r\n      <VERS vnumber=\"20\">And the children of Reuben, Israel`s first-born, their generations, by their families, by their fathers` houses, 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;</VERS>\r\n      <VERS vnumber=\"21\">those that were numbered of them, of the tribe of Reuben, were forty and six thousand and five hundred.</VERS>\r\n      <VERS vnumber=\"22\">Of the children of Simeon, their generations, by their families, by their fathers` houses, those that were numbered thereof, 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;</VERS>\r\n      <VERS vnumber=\"23\">those that were numbered of them, of the tribe of Simeon, were fifty and nine thousand and three hundred.</VERS>\r\n      <VERS vnumber=\"24\">Of the children of Gad, their generations, by their families, by their fathers` houses, according to the number of the names, from twenty years old and upward, all that were able to go forth to war;</VERS>\r\n      <VERS vnumber=\"25\">those that were numbered of them, of the tribe of Gad, were forty and five thousand six hundred and fifty.</VERS>\r\n      <VERS vnumber=\"26\">Of the children of Judah, their generations, by their families, by their fathers` houses, according to the number of the names, from twenty years old and upward, all that were able to go forth to war;</VERS>\r\n      <VERS vnumber=\"27\">those that were numbered of them, of the tribe of Judah, were threescore and fourteen thousand and six hundred.</VERS>\r\n      <VERS vnumber=\"28\">Of the children of Issachar, their generations, by their families, by their fathers` houses, according to the number of the names, from twenty years old and upward, all that were able to go forth to war;</VERS>\r\n      <VERS vnumber=\"29\">those that were numbered of them, of the tribe of Issachar, were fifty and four thousand and four hundred.</VERS>\r\n      <VERS vnumber=\"30\">Of the children of Zebulun, their generations, by their families, by their fathers` houses, according to the number of the names, from twenty years old and upward, all that were able to go forth to war;</VERS>\r\n      <VERS vnumber=\"31\">those that were numbered of them, of the tribe of Zebulun, were fifty and seven thousand and four hundred.</VERS>\r\n      <VERS vnumber=\"32\">Of the children of Joseph, [namely], of the children of Ephraim, their generations, by their families, by their fathers` houses, according to the number of the names, from twenty years old and upward, all that were able to go forth to war;</VERS>\r\n      <VERS vnumber=\"33\">those that were numbered of them, of the tribe of Ephraim, were forty thousand and five hundred.</VERS>\r\n      <VERS vnumber=\"34\">Of the children of Manasseh, their generations, by their families, by their fathers` houses, according to the number of the names, from twenty years old and upward, all that were able to go forth to war;</VERS>\r\n      <VERS vnumber=\"35\">those that were numbered of them, of the tribe of Manasseh, were thirty and two thousand and two hundred.</VERS>\r\n      <VERS vnumber=\"36\">Of the children of Benjamin, their generations, by their families, by their fathers` houses, according to the number of the names, from twenty years old and upward, all that were able to go forth to war;</VERS>\r\n      <VERS vnumber=\"37\">those that were numbered of them, of the tribe of Benjamin, were thirty and five thousand and four hundred.</VERS>\r\n      <VERS vnumber=\"38\">Of the children of Dan, their generations, by their families, by their fathers` houses, according to the number of the names, from twenty years old and upward, all that were able to go forth to war;</VERS>\r\n      <VERS vnumber=\"39\">those that were numbered of them, of the tribe of Dan, were threescore and two thousand and seven hundred.</VERS>\r\n      <VERS vnumber=\"40\">Of the children of Asher, their generations, by their families, by their fathers` houses, according to the number of the names, from twenty years old and upward, all that were able to go forth to war;</VERS>\r\n      <VERS vnumber=\"41\">those that were numbered of them, of the tribe of Asher, were forty and one thousand and five hundred.</VERS>\r\n      <VERS vnumber=\"42\">Of the children of Naphtali, their generations, by their families, by their fathers` houses, according to the number of the names, from twenty years old and upward, all that were able to go forth to war;</VERS>\r\n      <VERS vnumber=\"43\">those that were numbered of them, of the tribe of Naphtali, were fifty and three thousand and four hundred.</VERS>\r\n      <VERS vnumber=\"44\">These are they that were numbered, whom Moses and Aaron numbered, and the princes of Israel, being twelve men: they were each one for his fathers` house.</VERS>\r\n      <VERS vnumber=\"45\">So all they that were numbered of the children of Israel by their fathers` houses, from twenty years old and upward, all that were able to go forth to war in Israel;</VERS>\r\n      <VERS vnumber=\"46\">even all they that were numbered were six hundred thousand and three thousand and five hundred and fifty.</VERS>\r\n      <VERS vnumber=\"47\">But the Levites after the tribe of their fathers were not numbered among them.</VERS>\r\n      <VERS vnumber=\"48\">For Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"49\">Only the tribe of Levi thou shalt not number, neither shalt thou take the sum of them among the children of Israel;</VERS>\r\n      <VERS vnumber=\"50\">but appoint thou the Levites over the tabernacle of the testimony, and over all the furniture thereof, and over all that belongeth to it: they shall bear the tabernacle, and all the furniture thereof; and they shall minister unto it, and shall encamp round about the tabernacle.</VERS>\r\n      <VERS vnumber=\"51\">And 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.</VERS>\r\n      <VERS vnumber=\"52\">And the children of Israel shall pitch their tents, every man by his own camp, and every man by his own standard, according to their hosts.</VERS>\r\n      <VERS vnumber=\"53\">But the Levites shall encamp round about the tabernacle of the 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 the testimony.</VERS>\r\n      <VERS vnumber=\"54\">Thus did the children of Israel; according to all that Jehovah commanded Moses, so did they.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">And Jehovah spake unto Moses and unto Aaron, saying,</VERS>\r\n      <VERS vnumber=\"2\">The children of Israel shall encamp every man by his own standard, with the ensigns of their fathers` houses: over against the tent of meeting shall they encamp round about.</VERS>\r\n      <VERS vnumber=\"3\">And those that encamp on the east side toward the sunrising shall be they of the standard of the camp of Judah, according to their hosts: and the prince of the children of Judah shall be Nahshon the son of Amminadab.</VERS>\r\n      <VERS vnumber=\"4\">And his host, and those that were numbered of them, were threescore and fourteen thousand and six hundred.</VERS>\r\n      <VERS vnumber=\"5\">And those that encamp next unto him shall be the tribe of Issachar: and the prince of the children of Issachar shall be Nethanel the son of Zuar.</VERS>\r\n      <VERS vnumber=\"6\">And his host, and those that were numbered thereof, were fifty and four thousand and four hundred.</VERS>\r\n      <VERS vnumber=\"7\">[And] the tribe of Zebulun: and the prince of the children of Zebulun shall be Eliab the son of Helon.</VERS>\r\n      <VERS vnumber=\"8\">And his host, and those that were numbered thereof, were fifty and seven thousand and four hundred.</VERS>\r\n      <VERS vnumber=\"9\">All that were numbered of the camp of Judah were a hundred thousand and fourscore thousand and six thousand and four hundred, according to their hosts. They shall set forth first.</VERS>\r\n      <VERS vnumber=\"10\">On the south side shall be the standard of the camp of Reuben according to their hosts: and the prince of the children of Reuben shall be Elizur the son of Shedeur.</VERS>\r\n      <VERS vnumber=\"11\">And his host, and those that were numbered thereof, were forty and six thousand and five hundred.</VERS>\r\n      <VERS vnumber=\"12\">And those that encamp next unto him shall be the tribe of Simeon: and the prince of the children of Simeon shall be Shelumiel the son of Zurishaddai.</VERS>\r\n      <VERS vnumber=\"13\">And his host, and those that were numbered of them, were fifty and nine thousand and three hundred.</VERS>\r\n      <VERS vnumber=\"14\">And the tribe of Gad: and the prince of the children of Gad shall be Eliasaph the son of Reuel.</VERS>\r\n      <VERS vnumber=\"15\">And his host, and those that were numbered of them, were forty and five thousand and six hundred and fifty.</VERS>\r\n      <VERS vnumber=\"16\">All that were numbered of the camp of Reuben were a hundred thousand and fifty and one thousand and four hundred and fifty, according to their hosts. And they shall set forth second.</VERS>\r\n      <VERS vnumber=\"17\">Then the tent of meeting shall set forward, with the camp of the Levites in the midst of the camps: as they encamp, so shall they set forward, every man in his place, by their standards.</VERS>\r\n      <VERS vnumber=\"18\">On the west side shall be the standard of the camp of Ephraim according to their hosts: and the prince of the children of Ephraim shall be Elishama the son of Ammihud.</VERS>\r\n      <VERS vnumber=\"19\">And his host, and those that were numbered of them, were forty thousand and five hundred.</VERS>\r\n      <VERS vnumber=\"20\">And next unto him shall be the tribe of Manasseh: and the prince of the children of Manasseh shall be Gamaliel the son of Pedahzur.</VERS>\r\n      <VERS vnumber=\"21\">And his host, and those that were numbered of them, were thirty and two thousand and two hundred.</VERS>\r\n      <VERS vnumber=\"22\">And the tribe of Benjamin: and the prince of the children of Benjamin shall be Abidan the son of Gideoni.</VERS>\r\n      <VERS vnumber=\"23\">And his host, and those that were numbered of them, were thirty and five thousand and four hundred.</VERS>\r\n      <VERS vnumber=\"24\">All that were numbered of the camp of Ephraim were a hundred thousand and eight thousand and a hundred, according to their hosts. And they shall set forth third.</VERS>\r\n      <VERS vnumber=\"25\">On the north side shall be the standard of the camp of Dan according to their hosts: and the prince of the children of Dan shall be Ahiezer the son of Ammishaddai.</VERS>\r\n      <VERS vnumber=\"26\">And his host, and those that were numbered of them, were threescore and two thousand and seven hundred.</VERS>\r\n      <VERS vnumber=\"27\">And those that encamp next unto him shall be the tribe of Asher: and the prince of the children of Asher shall be Pagiel the son of Ochran.</VERS>\r\n      <VERS vnumber=\"28\">And his host, and those that were numbered of them, were forty and one thousand and five hundred.</VERS>\r\n      <VERS vnumber=\"29\">And the tribe of Naphtali: and the prince of the children of Naphtali shall be Ahira the son of Enan.</VERS>\r\n      <VERS vnumber=\"30\">And his host, and those that were numbered of them, were fifty and three thousand and four hundred.</VERS>\r\n      <VERS vnumber=\"31\">All that were numbered of the camp of Dan were a hundred thousand and fifty and seven thousand and six hundred. They shall set forth hindmost by their standards.</VERS>\r\n      <VERS vnumber=\"32\">These are they that were numbered of the children of Israel by their fathers` houses: all that were numbered of the camps according to their hosts were six hundred thousand and three thousand and five hundred and fifty.</VERS>\r\n      <VERS vnumber=\"33\">But the Levites were not numbered among the children of Israel; as Jehovah commanded Moses.</VERS>\r\n      <VERS vnumber=\"34\">Thus did the children of Israel; according to all that Jehovah commanded Moses, so they encamped by their standards, and so they set forward, every one by their families, according to their fathers` houses.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Now these are the generations of Aaron and Moses in the day that Jehovah spake with Moses in mount Sinai.</VERS>\r\n      <VERS vnumber=\"2\">And these are the names of the sons of Aaron: Nadab the first-born, and Abihu, Eleazar, and Ithamar.</VERS>\r\n      <VERS vnumber=\"3\">These are the names of the sons of Aaron, the priests that were anointed, whom he consecrated to minister in the priest`s office.</VERS>\r\n      <VERS vnumber=\"4\">And Nadab and Abihu died before Jehovah, when they offered strange fire before Jehovah, in the wilderness of Sinai, and they had no children; and Eleazar and Ithamar ministered in the priest`s office in the presence of Aaron their father.</VERS>\r\n      <VERS vnumber=\"5\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"6\">Bring the tribe of Levi near, and set them before Aaron the priest, that they may minister unto him.</VERS>\r\n      <VERS vnumber=\"7\">And they shall keep his charge, and the charge of the whole congregation before the tent of meeting, to do the service of the tabernacle.</VERS>\r\n      <VERS vnumber=\"8\">And they shall keep all the furniture of the tent of meeting, and the charge of the children of Israel, to do the service of the tabernacle.</VERS>\r\n      <VERS vnumber=\"9\">And thou shalt give the Levites unto Aaron and to his sons: they are wholly given unto him on the behalf of the children of Israel.</VERS>\r\n      <VERS vnumber=\"10\">And thou shalt appoint Aaron and his sons, and they shall keep their priesthood: and the stranger that cometh nigh shall be put to death.</VERS>\r\n      <VERS vnumber=\"11\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"12\">And I, behold, I have taken the Levites from among the children of Israel instead of all the first-born that openeth the womb among the children of Israel; and the Levites shall be mine:</VERS>\r\n      <VERS vnumber=\"13\">for all the first-born are mine; on the day that I smote all the first-born in the land of Egypt I hallowed unto me all the first-born in Israel, both man and beast; mine they shall be: I am Jehovah.</VERS>\r\n      <VERS vnumber=\"14\">And Jehovah spake unto Moses in the wilderness of Sinai, saying,</VERS>\r\n      <VERS vnumber=\"15\">Number the children of Levi by their fathers` houses, by their families: every male from a month old and upward shalt thou number them.</VERS>\r\n      <VERS vnumber=\"16\">And Moses numbered them according to the word of Jehovah, as he was commanded.</VERS>\r\n      <VERS vnumber=\"17\">And these were the sons of Levi by their names: Gershon, and Kohath, and Merari.</VERS>\r\n      <VERS vnumber=\"18\">And these are the names of the sons of Gershon by their families: Libni and Shimei.</VERS>\r\n      <VERS vnumber=\"19\">And the sons of Kohath by their families: Amram, and Izhar, Hebron, and Uzziel.</VERS>\r\n      <VERS vnumber=\"20\">And the sons of Merari by their families: Mahli and Mushi. These are the families of the Levites according to their fathers` houses.</VERS>\r\n      <VERS vnumber=\"21\">Of Gershon was the family of the Libnites, and the family of the Shimeites: these are the families of the Gershonites.</VERS>\r\n      <VERS vnumber=\"22\">Those 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.</VERS>\r\n      <VERS vnumber=\"23\">The families of the Gershonites shall encamp behind the tabernacle westward.</VERS>\r\n      <VERS vnumber=\"24\">And the prince of the fathers` house of the Gershonites shall be Eliasaph the son of Lael.</VERS>\r\n      <VERS vnumber=\"25\">And the charge of the sons of Gershon in the tent of meeting shall be the tabernacle, and the Tent, the covering thereof, and the screen for the door of the tent of meeting,</VERS>\r\n      <VERS vnumber=\"26\">and the hangings of the court, and the screen 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.</VERS>\r\n      <VERS vnumber=\"27\">And of Kohath was the family of the Amramites, and the family of the Izharites, and the family of the Hebronites, and the family of the Uzzielites: these are the families of the Kohathites.</VERS>\r\n      <VERS vnumber=\"28\">According to the number of all the males, from a month old and upward, there were eight thousand and six hundred, keeping the charge of the sanctuary.</VERS>\r\n      <VERS vnumber=\"29\">The families of the sons of Kohath shall encamp on the side of the tabernacle southward.</VERS>\r\n      <VERS vnumber=\"30\">And the prince of the fathers` house of the families of the Kohathites shall be Elizaphan the son of Uzziel.</VERS>\r\n      <VERS vnumber=\"31\">And 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 screen, and all the service thereof.</VERS>\r\n      <VERS vnumber=\"32\">And Eleazar the son of Aaron the priest shall be prince of the princes of the Levites, [and have] the oversight of them that keep the charge of the sanctuary.</VERS>\r\n      <VERS vnumber=\"33\">Of Merari was the family of the Mahlites, and the family of the Mushites: these are the families of Merari.</VERS>\r\n      <VERS vnumber=\"34\">And 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.</VERS>\r\n      <VERS vnumber=\"35\">And the prince of the fathers` house of the families of Merari was Zuriel the son of Abihail: they shall encamp on the side of the tabernacle northward.</VERS>\r\n      <VERS vnumber=\"36\">And the appointed 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 instruments thereof, and all the service thereof,</VERS>\r\n      <VERS vnumber=\"37\">and the pillars of the court round about, and their sockets, and their pins, and their cords.</VERS>\r\n      <VERS vnumber=\"38\">And those that encamp before the tabernacle eastward, before the tent of meeting toward the sunrising, 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.</VERS>\r\n      <VERS vnumber=\"39\">All that were numbered of the Levites, whom Moses and Aaron numbered at the commandment of Jehovah, by their families, all the males from a month old and upward, were twenty and two thousand.</VERS>\r\n      <VERS vnumber=\"40\">And Jehovah said unto Moses, Number all the first-born males of the children of Israel from a month old and upward, and take the number of their names.</VERS>\r\n      <VERS vnumber=\"41\">And thou shalt take the Levites for me (I am Jehovah) instead of all the first-born among the children of Israel; and the cattle of the Levites instead of all the firstlings among the cattle of the children of Israel:</VERS>\r\n      <VERS vnumber=\"42\">and Moses numbered, as Jehovah commanded him, all the first-born among the children of Israel.</VERS>\r\n      <VERS vnumber=\"43\">And all the first-born males according to 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.</VERS>\r\n      <VERS vnumber=\"44\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"45\">Take the Levites instead of all the first-born among the children of Israel, and the cattle of the Levites instead of their cattle; and the Levites shall be mine: I am Jehovah.</VERS>\r\n      <VERS vnumber=\"46\">And for the redemption of the two hundred and threescore and thirteen of the first-born of the children of Israel, that are over and above [the number of] the Levites,</VERS>\r\n      <VERS vnumber=\"47\">thou shalt take five shekels apiece by the poll; after the shekel of the sanctuary shalt thou take them (the shekel is twenty gerahs):</VERS>\r\n      <VERS vnumber=\"48\">and thou shalt give the money, wherewith the odd number of them is redeemed, unto Aaron and to his sons.</VERS>\r\n      <VERS vnumber=\"49\">And Moses took the redemption-money from them that were over and above them that were redeemed by the Levites;</VERS>\r\n      <VERS vnumber=\"50\">from the first-born of the children of Israel took he the money, a thousand three hundred and threescore and five [shekels], after the shekel of the sanctuary:</VERS>\r\n      <VERS vnumber=\"51\">and Moses gave the redemption-money unto Aaron and to his sons, according to the word of Jehovah, as Jehovah commanded Moses.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">And Jehovah spake unto Moses and unto Aaron, saying,</VERS>\r\n      <VERS vnumber=\"2\">Take the sum of the sons of Kohath from among the sons of Levi, by their families, by their fathers` houses,</VERS>\r\n      <VERS vnumber=\"3\">from thirty years old and upward even until fifty years old, all that enter upon the service, to do the work in the tent of meeting.</VERS>\r\n      <VERS vnumber=\"4\">This is the service of the sons of Kohath in the tent of meeting, [about] the most holy things:</VERS>\r\n      <VERS vnumber=\"5\">when the camp setteth forward, Aaron shall go in, and his sons, and they shall take down the veil of the screen, and cover the ark of the testimony with it,</VERS>\r\n      <VERS vnumber=\"6\">and shall put thereon a covering of sealskin, and shall spread over it a cloth all of blue, and shall put in the staves thereof.</VERS>\r\n      <VERS vnumber=\"7\">And upon the table of showbread they shall spread a cloth of blue, and put thereon the dishes, and the spoons, and the bowls and the cups wherewith to pour out; and the continual bread shall be thereon:</VERS>\r\n      <VERS vnumber=\"8\">and they shall spread upon them a cloth of scarlet, and cover the same with a covering of sealskin, and shall put in the staves thereof.</VERS>\r\n      <VERS vnumber=\"9\">And they shall take a cloth of blue, and cover the candlestick of the light, and its lamps, and its snuffers, and its snuffdishes, and all the oil vessels thereof, wherewith they minister unto it:</VERS>\r\n      <VERS vnumber=\"10\">and they shall put it and all the vessels thereof within a covering of sealskin, and shall put it upon the frame.</VERS>\r\n      <VERS vnumber=\"11\">And upon the golden altar they shall spread a cloth of blue, and cover it with a covering of sealskin, and shall put in the staves thereof:</VERS>\r\n      <VERS vnumber=\"12\">and they shall take all the vessels of ministry, wherewith they minister in the sanctuary, and put them in a cloth of blue, and cover them with a covering of sealskin, and shall put them on the frame.</VERS>\r\n      <VERS vnumber=\"13\">And they shall take away the ashes from the altar, and spread a purple cloth thereon:</VERS>\r\n      <VERS vnumber=\"14\">and they shall put upon it all the vessels thereof, wherewith they minister about it, the firepans, the flesh-hooks, and the shovels, and the basins, all the vessels of the altar; and they shall spread upon it a covering of sealskin, and put in the staves thereof.</VERS>\r\n      <VERS vnumber=\"15\">And when Aaron and his sons have made an end of covering the sanctuary, and all the furniture of the sanctuary, as the camp is set forward; after that, the sons of Kohath shall come to bear it: but they shall not touch the sanctuary, lest they die. These things are the burden of the sons of Kohath in the tent of meeting.</VERS>\r\n      <VERS vnumber=\"16\">And the charge of Eleazar the son of Aaron the priest shall be the oil for the light, and the sweet incense, and the continual meal-offering, and the anointing oil, the charge of all the tabernacle, and of all that therein is, the sanctuary, and the furniture thereof.</VERS>\r\n      <VERS vnumber=\"17\">And Jehovah spake unto Moses and unto Aaron, saying,</VERS>\r\n      <VERS vnumber=\"18\">Cut ye not off the tribe of the families of the Kohathites from among the Levites;</VERS>\r\n      <VERS vnumber=\"19\">but 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;</VERS>\r\n      <VERS vnumber=\"20\">but they shall not go in to see the sanctuary even for a moment, lest they die.</VERS>\r\n      <VERS vnumber=\"21\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"22\">Take the sum of the sons of Gershon also, by their fathers` houses, by their families;</VERS>\r\n      <VERS vnumber=\"23\">from thirty years old and upward until fifty years old shalt thou number them; all that enter in to wait upon the service, to do the work in the tent of meeting.</VERS>\r\n      <VERS vnumber=\"24\">This is the service of the families of the Gershonites, in serving and in bearing burdens:</VERS>\r\n      <VERS vnumber=\"25\">they shall bear the curtains of the tabernacle, and the tent of meeting, its covering, and the covering of sealskin that is above upon it, and the screen for the door of the tent of meeting,</VERS>\r\n      <VERS vnumber=\"26\">and the hangings of the court, and the screen 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 whatsoever shall be done with them: therein shall they serve.</VERS>\r\n      <VERS vnumber=\"27\">At the commandment of Aaron and his sons shall be all the service of the sons of the Gershonites, in all their burden, and in all their service; and ye shall appoint unto them in charge all their burden.</VERS>\r\n      <VERS vnumber=\"28\">This is the service of the families of the sons of the Gershonites in the tent of meeting: and their charge shall be under the hand of Ithamar the son of Aaron the priest.</VERS>\r\n      <VERS vnumber=\"29\">As for the sons of Merari, thou shalt number them by their families, by their fathers` houses;</VERS>\r\n      <VERS vnumber=\"30\">from thirty years old and upward even unto fifty years old shalt thou number them, every one that entereth upon the service, to do the work of the tent of meeting.</VERS>\r\n      <VERS vnumber=\"31\">And this is the charge of their burden, according to all their service in the tent of meeting: the boards of the tabernacle, and the bars thereof, and the pillars thereof, and the sockets thereof,</VERS>\r\n      <VERS vnumber=\"32\">and 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 appoint the instruments of the charge of their burden.</VERS>\r\n      <VERS vnumber=\"33\">This is the service of the families of the sons of Merari, according to all their service, in the tent of meeting, under the hand of Ithamar the son of Aaron the priest.</VERS>\r\n      <VERS vnumber=\"34\">And Moses and Aaron and the princes of the congregation numbered the sons of the Kohathites by their families, and by their fathers` houses,</VERS>\r\n      <VERS vnumber=\"35\">from thirty years old and upward even unto fifty years old, every one that entered upon the service, for work in the tent of meeting:</VERS>\r\n      <VERS vnumber=\"36\">and those that were numbered of them by their families were two thousand seven hundred and fifty.</VERS>\r\n      <VERS vnumber=\"37\">These are they that were numbered of the families of the Kohathites, all that did serve in the tent of meeting, whom Moses and Aaron numbered according to the commandment of Jehovah by Moses.</VERS>\r\n      <VERS vnumber=\"38\">And those that were numbered of the sons of Gershon, their families, and by their fathers` houses,</VERS>\r\n      <VERS vnumber=\"39\">from thirty years old and upward even unto fifty years old, every one that entered upon the service, for work in the tent of meeting,</VERS>\r\n      <VERS vnumber=\"40\">even those that were numbered of them, by their families, by their fathers` houses, were two thousand and six hundred and thirty.</VERS>\r\n      <VERS vnumber=\"41\">These are they that were numbered of the families of the sons of Gershon, all that did serve in the tent of meeting, whom Moses and Aaron numbered according to the commandment of Jehovah.</VERS>\r\n      <VERS vnumber=\"42\">And those that were numbered of the families of the sons of Merari, by their families, by their fathers` houses,</VERS>\r\n      <VERS vnumber=\"43\">from thirty years old and upward even unto fifty years old, every one that entered upon the service, for work in the tent of meeting,</VERS>\r\n      <VERS vnumber=\"44\">even those that were numbered of them by their families, were three thousand and two hundred.</VERS>\r\n      <VERS vnumber=\"45\">These are they that were numbered of the families of the sons of Merari, whom Moses and Aaron numbered according to the commandment of Jehovah by Moses.</VERS>\r\n      <VERS vnumber=\"46\">All those that were numbered of the Levites, whom Moses and Aaron and the princes of Israel numbered, by their families, and by their fathers` houses,</VERS>\r\n      <VERS vnumber=\"47\">from thirty years old and upward even unto fifty years old, every one that entered in to do the work of service, and the work of bearing burdens in the tent of meeting,</VERS>\r\n      <VERS vnumber=\"48\">even those that were numbered of them, were eight thousand and five hundred and fourscore.</VERS>\r\n      <VERS vnumber=\"49\">According to the commandment of Jehovah they were numbered by Moses, every one according to his service, and according to his burden: thus were they numbered of him, as Jehovah commanded Moses.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">Command the children of Israel, that they put out of the camp every leper, and every one that hath an issue, and whosoever is unclean by the dead:</VERS>\r\n      <VERS vnumber=\"3\">both male and female shall ye put out, without the camp shall ye put them; that they defile not their camp, in the midst whereof I dwell.</VERS>\r\n      <VERS vnumber=\"4\">And the children of Israel did so, and put them out without the camp; as Jehovah spake unto Moses, so did the children of Israel.</VERS>\r\n      <VERS vnumber=\"5\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"6\">Speak unto the children of Israel, When a man or woman shall commit any sin that men commit, so as to trespass against Jehovah, and that soul shall be guilty;</VERS>\r\n      <VERS vnumber=\"7\">then he shall confess his sin which he hath done: and he shall make restitution for his guilt in full, and add unto it the fifth part thereof, and give it unto him in respect of whom he hath been guilty.</VERS>\r\n      <VERS vnumber=\"8\">But if the man have no kinsman to whom restitution may be made for the guilt, the restitution for guilt which is made unto Jehovah shall be the priest`s; besides the ram of the atonement, whereby atonement shall be made for him.</VERS>\r\n      <VERS vnumber=\"9\">And every heave-offering of all the holy things of the children of Israel, which they present unto the priest, shall be his.</VERS>\r\n      <VERS vnumber=\"10\">And every man`s hallowed things shall be his: whatsoever any man giveth the priest, it shall be his.</VERS>\r\n      <VERS vnumber=\"11\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"12\">Speak unto the children of Israel, and say unto them, If any man`s wife go aside, and commit a trespass against him,</VERS>\r\n      <VERS vnumber=\"13\">and 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, and she be not taken in the act;</VERS>\r\n      <VERS vnumber=\"14\">and 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:</VERS>\r\n      <VERS vnumber=\"15\">then shall the man bring his wife unto the priest, and shall bring her oblation 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 a meal-offering of jealousy, a meal-offering of memorial, bringing iniquity to remembrance.</VERS>\r\n      <VERS vnumber=\"16\">And the priest shall bring her near, and set her before Jehovah:</VERS>\r\n      <VERS vnumber=\"17\">and the priest shall take holy water in an earthen vessel; and of the dust that is on the floor of the tabernacle the priest shall take, and put it into the water.</VERS>\r\n      <VERS vnumber=\"18\">And the priest shall set the woman before Jehovah, and let the hair of the woman`s head go loose, and put the meal-offering of memorial in her hands, which is the meal-offering of jealousy: and the priest shall have in his hand the water of bitterness that causeth the curse.</VERS>\r\n      <VERS vnumber=\"19\">And the priest shall cause her to swear, and shall say unto the woman, If no man have lain with thee, and if thou have not gone aside to uncleanness, being under thy husband, be thou free from this water of bitterness that causeth the curse.</VERS>\r\n      <VERS vnumber=\"20\">But if thou have gone aside, being under thy husband, and if thou be defiled, and some man have lain with thee besides thy husband:</VERS>\r\n      <VERS vnumber=\"21\">then the priest shall cause the woman to swear with the oath of cursing, and the priest shall say unto the woman, Jehovah make thee a curse and an oath among thy people, when Jehovah doth make thy thigh to fall away, and thy body to swell;</VERS>\r\n      <VERS vnumber=\"22\">and this water that causeth the curse shall go into thy bowels, and make thy body to swell, and thy thigh to fall away. And the woman shall say, Amen, Amen.</VERS>\r\n      <VERS vnumber=\"23\">And the priest shall write these curses in a book, and he shall blot them out into the water of bitterness:</VERS>\r\n      <VERS vnumber=\"24\">and he shall make the woman drink the water of bitterness that causeth the curse; and the water that causeth the curse shall enter into her [and become] bitter.</VERS>\r\n      <VERS vnumber=\"25\">And the priest shall take the meal-offering of jealousy out of the woman`s hand, and shall wave the meal-offering before Jehovah, and bring it unto the altar:</VERS>\r\n      <VERS vnumber=\"26\">and the priest shall take a handful of the meal-offering, as the memorial thereof, and burn it upon the altar, and afterward shall make the woman drink the water.</VERS>\r\n      <VERS vnumber=\"27\">And when he hath made her drink the water, then it shall come to pass, if she be defiled, and have committed a trespass against her husband, that the water that causeth the curse shall enter into her [and become] bitter, and her body shall swell, and her thigh shall fall away: and the woman shall be a curse among her people.</VERS>\r\n      <VERS vnumber=\"28\">And if the woman be not defiled, but be clean; then she shall be free, and shall conceive seed.</VERS>\r\n      <VERS vnumber=\"29\">This is the law of jealousy, when a wife, being under her husband, goeth aside, and is defiled;</VERS>\r\n      <VERS vnumber=\"30\">or when the spirit of jealousy cometh upon a man, and he is jealous of his wife; then shall he set the woman before Jehovah, and the priest shall execute upon her all this law.</VERS>\r\n      <VERS vnumber=\"31\">And the man shall be free from iniquity, and that woman shall bear her iniquity.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">Speak unto the children of Israel, and say unto them, When either man or woman shall make a special vow, the vow of a Nazirite, to separate himself unto Jehovah,</VERS>\r\n      <VERS vnumber=\"3\">he shall separate himself from wine and strong drink; he shall drink no vinegar of wine, or vinegar of strong drink, neither shall he drink any juice of grapes, nor eat fresh grapes or dried.</VERS>\r\n      <VERS vnumber=\"4\">All the days of his separation shall he eat nothing that is made of the grape-vine, from the kernels even to the husk.</VERS>\r\n      <VERS vnumber=\"5\">All the days of his vow of separation there shall no razor come upon his head: until the days be fulfilled, in which he separateth himself unto Jehovah, he shall be holy; he shall let the locks of the hair of his head grow long.</VERS>\r\n      <VERS vnumber=\"6\">All the days that he separateth himself unto Jehovah he shall not come near to a dead body.</VERS>\r\n      <VERS vnumber=\"7\">He shall not make himself unclean for his father, or for his mother, for his brother, or for his sister, when they die; because his separation unto God is upon his head.</VERS>\r\n      <VERS vnumber=\"8\">All the days of his separation he is holy unto Jehovah.</VERS>\r\n      <VERS vnumber=\"9\">And if any man die very suddenly beside him, and he defile the head of his separation; then he shall shave his head in the day of his cleansing, on the seventh day shall he shave it.</VERS>\r\n      <VERS vnumber=\"10\">And on the eighth day he shall bring two turtle-doves, or two young pigeons, to the priest, to the door of the tent of meeting:</VERS>\r\n      <VERS vnumber=\"11\">and the priest shall offer one for a sin-offering, and the other for a burnt-offering, and make atonement for him, for that he sinned by reason of the dead, and shall hallow his head that same day.</VERS>\r\n      <VERS vnumber=\"12\">And he shall separate unto Jehovah the days of his separation, and shall bring a he-lamb a year old for a trespass-offering; but the former days shall be void, because his separation was defiled.</VERS>\r\n      <VERS vnumber=\"13\">And this is the law of the Nazirite, when the days of his separation are fulfilled: he shall be brought unto the door of the tent of meeting:</VERS>\r\n      <VERS vnumber=\"14\">and he shall offer his oblation unto Jehovah, one he-lamb a year old without blemish for a burnt-offering, and one ewe-lamb a year old without blemish for a sin-offering, and one ram without blemish for peace-offerings,</VERS>\r\n      <VERS vnumber=\"15\">and a basket of unleavened bread, cakes of fine flour mingled with oil, and unleavened wafers anointed with oil, and their meal-offering, and their drink-offerings.</VERS>\r\n      <VERS vnumber=\"16\">And the priest shall present them before Jehovah, and shall offer his sin-offering, and his burnt-offering:</VERS>\r\n      <VERS vnumber=\"17\">and he shall offer the ram for a sacrifice of peace-offerings unto Jehovah, with the basket of unleavened bread: the priest shall offer also the meal-offering thereof, and the drink-offering thereof.</VERS>\r\n      <VERS vnumber=\"18\">And the Nazirite shall shave the head of his separation at the door of the tent of meeting, and shall take the hair of the head of his separation, and put it on the fire which is under the sacrifice of peace-offerings.</VERS>\r\n      <VERS vnumber=\"19\">And the priest shall take the boiled 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 Nazirite, after he hath shaven [the head of] his separation;</VERS>\r\n      <VERS vnumber=\"20\">and the priest shall wave them for a wave-offering before Jehovah; this is holy for the priest, together with the wave-breast and heave-thigh: and after that the Nazirite may drink wine.</VERS>\r\n      <VERS vnumber=\"21\">This is the law of the Nazirite who voweth, [and of] his oblation unto Jehovah for his separation, besides that which he is able to get: according to his vow which he voweth, so he must do after the law of his separation.</VERS>\r\n      <VERS vnumber=\"22\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"23\">Speak unto Aaron and unto his sons, saying, On this wise ye shall bless the children of Israel: ye shall say unto them,</VERS>\r\n      <VERS vnumber=\"24\">Jehovah bless thee, and keep thee:</VERS>\r\n      <VERS vnumber=\"25\">Jehovah make his face to shine upon thee, and be gracious unto thee:</VERS>\r\n      <VERS vnumber=\"26\">Jehovah lift up his countenance upon thee, and give thee peace.</VERS>\r\n      <VERS vnumber=\"27\">So shall they put my name upon the children of Israel; and I will bless them.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">And it came to pass on the day that Moses had made an end of setting up the tabernacle, and had anointed it and sanctified it, and all the furniture thereof, and the altar and all the vessels thereof, and had anointed them and sanctified them;</VERS>\r\n      <VERS vnumber=\"2\">that the princes of Israel, the heads of their fathers` houses, offered. These were the princes of the tribes, these are they that were over them that were numbered:</VERS>\r\n      <VERS vnumber=\"3\">and they brought their oblation before Jehovah, six covered wagons, and twelve oxen; a wagon for every two of the princes, and for each one an ox: and they presented them before the tabernacle.</VERS>\r\n      <VERS vnumber=\"4\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"5\">Take it of them, that they may be [used] in doing the service of the tent of meeting; and thou shalt give them unto the Levites, to every man according to his service.</VERS>\r\n      <VERS vnumber=\"6\">And Moses took the wagons and the oxen, and gave them unto the Levites.</VERS>\r\n      <VERS vnumber=\"7\">Two wagons and four oxen he gave unto the sons of Gershon, according to their service:</VERS>\r\n      <VERS vnumber=\"8\">and 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.</VERS>\r\n      <VERS vnumber=\"9\">But unto the sons of Kohath he gave none, because the service of the sanctuary belonged unto them; they bare it upon their shoulders.</VERS>\r\n      <VERS vnumber=\"10\">And the princes offered for the dedication of the altar in the day that it was anointed, even the princes offered their oblation before the altar.</VERS>\r\n      <VERS vnumber=\"11\">And Jehovah said unto Moses, They shall offer their oblation, each prince on his day, for the dedication of the altar.</VERS>\r\n      <VERS vnumber=\"12\">And he that offered his oblation the first day was Nahshon the son of Amminadab, of the tribe of Judah:</VERS>\r\n      <VERS vnumber=\"13\">and his oblation was one silver platter, the weight whereof was a 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 meal-offering;</VERS>\r\n      <VERS vnumber=\"14\">one golden spoon of ten [shekels], full of incense;</VERS>\r\n      <VERS vnumber=\"15\">one young bullock, one ram, one he-lamb a year old, for a burnt-offering;</VERS>\r\n      <VERS vnumber=\"16\">one male of the goats for a sin-offering;</VERS>\r\n      <VERS vnumber=\"17\">and for the sacrifice of peace-offerings, two oxen, five rams, five he-goats, five he-lambs a year old: this was the oblation of Nahshon the son of Amminadab.</VERS>\r\n      <VERS vnumber=\"18\">On the second day Nethanel the son of Zuar, prince of Issachar, did offer:</VERS>\r\n      <VERS vnumber=\"19\">he offered for his oblation one silver platter, the weight whereof was a 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 meal-offering;</VERS>\r\n      <VERS vnumber=\"20\">one golden spoon of ten [shekels], full of incense;</VERS>\r\n      <VERS vnumber=\"21\">one young bullock, one ram, one he-lamb a year old, for a burnt-offering;</VERS>\r\n      <VERS vnumber=\"22\">one male of the goats for a sin-offering;</VERS>\r\n      <VERS vnumber=\"23\">and for the sacrifice of peace-offerings, two oxen, five rams, five he-goats, five he-lambs a year old: this was the oblation of Nethanel the son of Zuar.</VERS>\r\n      <VERS vnumber=\"24\">On the third day Eliab the son of Helon, prince of the children of Zebulun.:</VERS>\r\n      <VERS vnumber=\"25\">his oblation was one silver platter, the weight whereof was a 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 meal-offering;</VERS>\r\n      <VERS vnumber=\"26\">one golden spoon of ten [shekels], full of incense;</VERS>\r\n      <VERS vnumber=\"27\">one young bullock, one ram, one he-lamb a year old, for a burnt-offering;</VERS>\r\n      <VERS vnumber=\"28\">one male of the goats for a sin-offering;</VERS>\r\n      <VERS vnumber=\"29\">and for the sacrifice of peace-offerings, two oxen, five rams, five he-goats, five he-lambs a year old: this was the oblation of Eliab the son of Helon.</VERS>\r\n      <VERS vnumber=\"30\">On the fourth day Elizur the son of Shedeur, prince of the children of Reuben:</VERS>\r\n      <VERS vnumber=\"31\">his oblation was one silver platter, the weight whereof was a 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 meal-offering;</VERS>\r\n      <VERS vnumber=\"32\">one golden spoon of ten [shekels], full of incense;</VERS>\r\n      <VERS vnumber=\"33\">one young bullock, one ram, one he-lamb a year old, for a burnt-offering;</VERS>\r\n      <VERS vnumber=\"34\">one male of the goats for a sin-offering;</VERS>\r\n      <VERS vnumber=\"35\">and for the sacrifice of peace-offerings, two oxen, five rams, five he-goats, five he-lambs a year old: this was the oblation of Elizur the son of Shedeur.</VERS>\r\n      <VERS vnumber=\"36\">On the fifth day Shelumiel the son of Zurishaddai, prince of the children of Simeon:</VERS>\r\n      <VERS vnumber=\"37\">his oblation was one silver platter, the weight whereof was a 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 meal-offering;</VERS>\r\n      <VERS vnumber=\"38\">one golden spoon of ten [shekels], full of incense;</VERS>\r\n      <VERS vnumber=\"39\">one young bullock, one ram, one he-lamb a year old, for a burnt-offering;</VERS>\r\n      <VERS vnumber=\"40\">one male of the goats for a sin-offering;</VERS>\r\n      <VERS vnumber=\"41\">and for the sacrifice of peace-offerings, two oxen, five rams, five he-goats, five he-lambs a year old: this was the oblation of Shelumiel the son of Zurishaddai.</VERS>\r\n      <VERS vnumber=\"42\">On the sixth day Eliasaph the son of Deuel, prince of the children of Gad:</VERS>\r\n      <VERS vnumber=\"43\">his oblation was one silver platter, the weight whereof was a 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 meal-offering;</VERS>\r\n      <VERS vnumber=\"44\">one golden spoon of ten [shekels], full of incense;</VERS>\r\n      <VERS vnumber=\"45\">one young bullock, one ram, one he-lamb a year old, for a burnt-offering;</VERS>\r\n      <VERS vnumber=\"46\">one male of the goats for a sin-offering;</VERS>\r\n      <VERS vnumber=\"47\">and for the sacrifice of peace-offerings, two oxen, five rams, five he-goats, five he-lambs a year old: this was the oblation of Eliasaph the son of Deuel.</VERS>\r\n      <VERS vnumber=\"48\">On the seventh day Elishama the son of Ammihud, prince of the children of Ephraim:</VERS>\r\n      <VERS vnumber=\"49\">his oblation was one silver platter, the weight whereof was a 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 meal-offering;</VERS>\r\n      <VERS vnumber=\"50\">one golden spoon of ten [shekels], full of incense;</VERS>\r\n      <VERS vnumber=\"51\">one young bullock, one ram, one he-lamb a year old, for a burnt-offering;</VERS>\r\n      <VERS vnumber=\"52\">one male of the goats for a sin-offering;</VERS>\r\n      <VERS vnumber=\"53\">and for the sacrifice of peace-offerings, two oxen, five rams, five he-goats, five he-lambs a year old: this was the oblation of Elishama the son of Ammihud.</VERS>\r\n      <VERS vnumber=\"54\">On the eighth day Gamaliel the son of Pedahzur, prince of the children of Manasseh:</VERS>\r\n      <VERS vnumber=\"55\">his oblation was one silver platter, the weight whereof was a 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 meal-offering;</VERS>\r\n      <VERS vnumber=\"56\">one golden spoon of ten [shekels], full of incense;</VERS>\r\n      <VERS vnumber=\"57\">one young bullock, one ram, one he-lamb a year old, for a burnt-offering;</VERS>\r\n      <VERS vnumber=\"58\">one male of the goats for a sin-offering;</VERS>\r\n      <VERS vnumber=\"59\">and for the sacrifice of peace-offerings, two oxen, five rams, five he-goats, five he-lambs a year old: this was the oblation of Gamaliel the son of Pedahzur.</VERS>\r\n      <VERS vnumber=\"60\">On the ninth day Abidan the son of Gideoni, prince of the children of Benjamin:</VERS>\r\n      <VERS vnumber=\"61\">his oblation was one silver platter, the weight whereof was a 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 meal-offering;</VERS>\r\n      <VERS vnumber=\"62\">one golden spoon of ten [shekels], full of incense;</VERS>\r\n      <VERS vnumber=\"63\">one young bullock, one ram, one he-lamb a year old, for a burnt-offering;</VERS>\r\n      <VERS vnumber=\"64\">one male of the goats for a sin-offering;</VERS>\r\n      <VERS vnumber=\"65\">and for the sacrifice of peace-offerings, two oxen, five rams, five he-goats, five he-lambs a year old: this was the oblation of Abidan the son of Gideoni.</VERS>\r\n      <VERS vnumber=\"66\">On the tenth day Ahiezer the son of Ammishaddai, prince of the children of Dan:</VERS>\r\n      <VERS vnumber=\"67\">his oblation was one silver platter, the weight whereof was a 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 meal-offering;</VERS>\r\n      <VERS vnumber=\"68\">one golden spoon of ten [shekels], full of incense;</VERS>\r\n      <VERS vnumber=\"69\">one young bullock, one ram, one he-lamb a year old, for a burnt-offering;</VERS>\r\n      <VERS vnumber=\"70\">one male of the goats for a sin-offering;</VERS>\r\n      <VERS vnumber=\"71\">and for the sacrifice of peace-offerings, two oxen, five rams, five he-goats, five he-lambs a year old: this was the oblation of Ahiezer the son of Ammishaddai.</VERS>\r\n      <VERS vnumber=\"72\">On the eleventh day Pagiel the son of Ochran, prince of the children of Asher:</VERS>\r\n      <VERS vnumber=\"73\">his oblation was one silver platter, the weight whereof was a 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 meal-offering;</VERS>\r\n      <VERS vnumber=\"74\">one golden spoon of ten [shekels], full of incense;</VERS>\r\n      <VERS vnumber=\"75\">one young bullock, one ram, one he-lamb a year old, for a burnt-offering;</VERS>\r\n      <VERS vnumber=\"76\">one male of the goats for a sin-offering;</VERS>\r\n      <VERS vnumber=\"77\">and for the sacrifice of peace-offerings, two oxen, five rams, five he-goats, five he-lambs a year old: this was the oblation of Pagiel the son of Ochran.</VERS>\r\n      <VERS vnumber=\"78\">On the twelfth day Ahira the son of Enan, prince of the children of Naphtali:</VERS>\r\n      <VERS vnumber=\"79\">his oblation was one silver platter, the weight whereof was a hundred a 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 meal-offering;</VERS>\r\n      <VERS vnumber=\"80\">one golden spoon of ten [shekels], full of incense;</VERS>\r\n      <VERS vnumber=\"81\">one young bullock, one ram, one he-lamb a year old, for a burnt-offering;</VERS>\r\n      <VERS vnumber=\"82\">one male of the goats for a sin-offering;</VERS>\r\n      <VERS vnumber=\"83\">and for the sacrifice of peace-offerings, two oxen, five rams, five he-goats, five he-lambs a year old: this was the oblation of Ahira the son of Enan.</VERS>\r\n      <VERS vnumber=\"84\">This was the dedication of the altar, in the day when it was anointed, by the princes of Israel: twelve silver platters, twelve silver bowls, twelve golden spoons;</VERS>\r\n      <VERS vnumber=\"85\">each silver platter [weighing] a hundred and thirty [shekels], and each bowl seventy; all the silver of the vessels two thousand and four hundred [shekels], after the shekel of the sanctuary;</VERS>\r\n      <VERS vnumber=\"86\">the twelve golden spoons, full of incense, [weighing] ten [shekels] apiece, after the shekel of the sanctuary; all the gold of the spoons a hundred and twenty [shekels];</VERS>\r\n      <VERS vnumber=\"87\">all the oxen for the burnt-offering twelve bullocks, the rams twelve, the he-lambs a year old twelve, and their meal-offering; and the males of the goats for a sin-offering twelve;</VERS>\r\n      <VERS vnumber=\"88\">and all the oxen for the sacrifice of peace-offerings twenty and four bullocks, the rams sixty, the he-goats sixty, the he-lambs a year old sixty. This was the dedication of the altar, after that it was anointed.</VERS>\r\n      <VERS vnumber=\"89\">And when Moses went into the tent of meeting to speak with him, then he heard the Voice speaking unto him from above the mercy-seat that was upon the ark of the testimony, from between the two cherubim: and he spake unto him.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">Speak unto Aaron, and say unto him, When thou lightest the lamps, the seven lamps shall give light in front of the candlestick.</VERS>\r\n      <VERS vnumber=\"3\">And Aaron did so; he lighted the lamps thereof [so as to give light] in front of the candlestick, as Jehovah commanded Moses.</VERS>\r\n      <VERS vnumber=\"4\">And this was the work of the candlestick, beaten work of gold; unto the base thereof, [and] unto the flowers thereof, it was beaten work: according unto the pattern which Jehovah had showed Moses, so he made the candlestick.</VERS>\r\n      <VERS vnumber=\"5\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"6\">Take the Levites from among the children of Israel, and cleanse them.</VERS>\r\n      <VERS vnumber=\"7\">And thus shalt thou do unto them, to cleanse them: sprinkle the water of expiation upon them, and let them cause a razor to pass over all their flesh, and let them wash their clothes, and cleanse themselves.</VERS>\r\n      <VERS vnumber=\"8\">Then let them take a young bullock, and its meal-offering, fine flour mingled with oil; and another young bullock shalt thou take for a sin-offering.</VERS>\r\n      <VERS vnumber=\"9\">And thou shalt present the Levites before the tent of meeting: and thou shalt assemble the whole congregation of the children of Israel:</VERS>\r\n      <VERS vnumber=\"10\">and thou shalt present the Levites before Jehovah. And the children of Israel shall lay their hands upon the Levites:</VERS>\r\n      <VERS vnumber=\"11\">and Aaron shall offer the Levites before Jehovah for a wave-offering, on the behalf of the children of Israel, that it may be theirs to do the service of Jehovah.</VERS>\r\n      <VERS vnumber=\"12\">And the Levites shall lay their hands upon the heads of the bullocks: and offer thou the one for a sin-offering, and the other for a burnt-offering, unto Jehovah, to make atonement for the Levites.</VERS>\r\n      <VERS vnumber=\"13\">And thou shalt set the Levites before Aaron, and before his sons, and offer them for a wave-offering unto Jehovah.</VERS>\r\n      <VERS vnumber=\"14\">Thus shalt thou separate the Levites from among the children of Israel; and the Levites shall be mine.</VERS>\r\n      <VERS vnumber=\"15\">And after that shall the Levites go in to do the service of the tent of meeting: and thou shalt cleanse them, and offer them for a wave-offering.</VERS>\r\n      <VERS vnumber=\"16\">For they are wholly given unto me from among the children of Israel; instead of all that openeth the womb, even the first-born of all the children of Israel, have I taken them unto me.</VERS>\r\n      <VERS vnumber=\"17\">For all the first-born among the children of Israel are mine, both man and beast: on the day that I smote all the first-born in the land of Egypt I sanctified them for myself.</VERS>\r\n      <VERS vnumber=\"18\">And I have taken the Levites instead of all the first-born among the children of Israel.</VERS>\r\n      <VERS vnumber=\"19\">And 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 tent of meeting, and to make 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.</VERS>\r\n      <VERS vnumber=\"20\">Thus did Moses, and Aaron, and all the congregation of the children of Israel, unto the Levites: according unto all that Jehovah commanded Moses touching the Levites, so did the children of Israel unto them.</VERS>\r\n      <VERS vnumber=\"21\">And the Levites purified themselves from sin, and they washed their clothes: and Aaron offered them for a wave-offering before Jehovah; and Aaron made atonement for them to cleanse them.</VERS>\r\n      <VERS vnumber=\"22\">And after that went the Levites in to do their service in the tent of meeting before Aaron, and before his sons: as Jehovah had commanded Moses concerning the Levites, so did they unto them.</VERS>\r\n      <VERS vnumber=\"23\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"24\">This is that which belongeth unto the Levites: from twenty and five years old and upward they shall go in to wait upon the service in the work of the tent of meeting:</VERS>\r\n      <VERS vnumber=\"25\">and from the age of fifty years they shall cease waiting upon the work, and shall serve no more,</VERS>\r\n      <VERS vnumber=\"26\">but shall minister with their brethren in the tent of meeting, to keep the charge, and shall do no service. Thus shalt thou do unto the Levites touching their charges.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">And Jehovah 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,</VERS>\r\n      <VERS vnumber=\"2\">Moreover let the children of Israel keep the passover in its appointed season.</VERS>\r\n      <VERS vnumber=\"3\">In the fourteenth day of this month, at even, ye shall keep it in its appointed season: according to all the statutes of it, and according to all the ordinances thereof, shall ye keep it.</VERS>\r\n      <VERS vnumber=\"4\">And Moses spake unto the children of Israel, that they should keep the passover.</VERS>\r\n      <VERS vnumber=\"5\">And they kept the passover in the first [month], on the fourteenth day of the month, at even, in the wilderness of Sinai: according to all that Jehovah commanded Moses, so did the children of Israel.</VERS>\r\n      <VERS vnumber=\"6\">And there were certain men, who were unclean by reason of the dead body of a man, so that they could not keep the passover on that day: and they came before Moses and before Aaron on that day:</VERS>\r\n      <VERS vnumber=\"7\">and those men said unto him, We are unclean by reason of the dead body of a man: wherefore are we kept back, that we may not offer the oblation of Jehovah in its appointed season among the children of Israel?</VERS>\r\n      <VERS vnumber=\"8\">And Moses said unto them, Stay ye, that I may hear what Jehovah will command concerning you.</VERS>\r\n      <VERS vnumber=\"9\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"10\">Speak unto the children of Israel, saying, If any man of you or of your generations shall be unclean by reason of a dead body, or be on a journey afar off, yet he shall keep the passover unto Jehovah.</VERS>\r\n      <VERS vnumber=\"11\">In the second month on the fourteenth day at even they shall keep it; they shall eat it with unleavened bread and bitter herbs:</VERS>\r\n      <VERS vnumber=\"12\">they shall leave none of it unto the morning, nor break a bone thereof: according to all the statute of the passover they shall keep it.</VERS>\r\n      <VERS vnumber=\"13\">But the man that is clean, and is not on a journey, and forbeareth to keep the passover, that soul shall be cut off from his people; because he offered not the oblation of Jehovah in its appointed season, that man shall bear his sin.</VERS>\r\n      <VERS vnumber=\"14\">And if a stranger shall sojourn among you, and will keep the passover unto Jehovah; according to the statute of the passover, and according to the ordinance thereof, so shall he do: ye shall have one statute, both for the sojourner, and for him that is born in the land.</VERS>\r\n      <VERS vnumber=\"15\">And on the day that the tabernacle was reared up the cloud covered the tabernacle, even the tent of the testimony: and at even it was upon the tabernacle as it were the appearance of fire, until morning.</VERS>\r\n      <VERS vnumber=\"16\">So it was alway: the cloud covered it, and the appearance of fire by night.</VERS>\r\n      <VERS vnumber=\"17\">And whenever the cloud was taken up from over the Tent, then after that the children of Israel journeyed: and in the place where the cloud abode, there the children of Israel encamped.</VERS>\r\n      <VERS vnumber=\"18\">At the commandment of Jehovah the children of Israel journeyed, and at the commandment of Jehovah they encamped: as long as the cloud abode upon the tabernacle they remained encamped.</VERS>\r\n      <VERS vnumber=\"19\">And when the cloud tarried upon the tabernacle many days, then the children of Israel kept the charge of Jehovah, and journeyed not.</VERS>\r\n      <VERS vnumber=\"20\">And sometimes the cloud was a few days upon the tabernacle; then according to the commandment of Jehovah they remained encamped, and according to the commandment of Jehovah they journeyed.</VERS>\r\n      <VERS vnumber=\"21\">And sometimes the cloud was from evening until morning; and when the cloud was taken up in the morning, they journeyed: or [if it continued] by day and by night, when the cloud was taken up, they journeyed.</VERS>\r\n      <VERS vnumber=\"22\">Whether it were two days, or a month, or a year, that the cloud tarried upon the tabernacle, abiding thereon, the children of Israel remained encamped, and journeyed not; but when it was taken up, they journeyed.</VERS>\r\n      <VERS vnumber=\"23\">At the commandment of Jehovah they encamped, and at the commandment of Jehovah they journeyed: they kept the charge of Jehovah, at the commandment of Jehovah by Moses.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">Make thee two trumpets of silver; of beaten work shalt thou make them: and thou shalt use them for the calling of the congregation, and for the journeying of the camps.</VERS>\r\n      <VERS vnumber=\"3\">And when they shall blow them, all the congregation shall gather themselves unto thee at the door of the tent of meeting.</VERS>\r\n      <VERS vnumber=\"4\">And if they blow but one, then the princes, the heads of the thousands of Israel, shall gather themselves unto thee.</VERS>\r\n      <VERS vnumber=\"5\">And when ye blow an alarm, the camps that lie on the east side shall take their journey.</VERS>\r\n      <VERS vnumber=\"6\">And when ye blow an alarm the second time, the camps that lie on the south side shall take their journey: they shall blow an alarm for their journeys.</VERS>\r\n      <VERS vnumber=\"7\">But when the assembly is to be gathered together, ye shall blow, but ye shall not sound an alarm.</VERS>\r\n      <VERS vnumber=\"8\">And the sons of Aaron, the priests, shall blow the trumpets; and they shall be to you for a statute for ever throughout your generations.</VERS>\r\n      <VERS vnumber=\"9\">And when ye go to war in your land against the adversary that oppresseth you, then ye shall sound an alarm with the trumpets; and ye shall be remembered before Jehovah your God, and ye shall be saved from your enemies.</VERS>\r\n      <VERS vnumber=\"10\">Also in the day of your gladness, and in your set feasts, and in the beginnings of your months, ye shall blow the trumpets over your burnt-offerings, and over the sacrifices of your peace-offerings; and they shall be to you for a memorial before your God: I am Jehovah your God.</VERS>\r\n      <VERS vnumber=\"11\">And it came to pass in the second year, in the second month, on the twentieth day of the month, that the cloud was taken up from over the tabernacle of the testimony.</VERS>\r\n      <VERS vnumber=\"12\">And the children of Israel set forward according to their journeys out of the wilderness of Sinai; and the cloud abode in the wilderness of Paran.</VERS>\r\n      <VERS vnumber=\"13\">And they first took their journey according to the commandment of Jehovah by Moses.</VERS>\r\n      <VERS vnumber=\"14\">And in the first [place] the standard of the camp of the children of Judah set forward according to their hosts: and over his host was Nahshon the son of Amminadab.</VERS>\r\n      <VERS vnumber=\"15\">And over the host of the tribe of the children of Issachar was Nethanel the son of Zuar.</VERS>\r\n      <VERS vnumber=\"16\">And over the host of the tribe of the children of Zebulun was Eliab the son of Helon.</VERS>\r\n      <VERS vnumber=\"17\">And the tabernacle was taken down; and the sons of Gershon and the sons of Merari, who bare the tabernacle, set forward.</VERS>\r\n      <VERS vnumber=\"18\">And the standard of the camp of Reuben set forward according to their hosts: and over his host was Elizur the son of Shedeur.</VERS>\r\n      <VERS vnumber=\"19\">And over the host of the tribe of the children of Simeon was Shelumiel the son of Zurishaddai.</VERS>\r\n      <VERS vnumber=\"20\">And over the host of the tribe of the children of Gad was Eliasaph the son of Deuel.</VERS>\r\n      <VERS vnumber=\"21\">And the Kohathites set forward, bearing the sanctuary: and [the others] did set up the tabernacle against their coming.</VERS>\r\n      <VERS vnumber=\"22\">And the standard of the camp of the children of Ephraim set forward according to their hosts: and over his host was Elishama the son of Ammihud.</VERS>\r\n      <VERS vnumber=\"23\">And over the host of the tribe of the children of Manasseh was Gamaliel the son of Pedahzur.</VERS>\r\n      <VERS vnumber=\"24\">And over the host of the tribe of the children of Benjamin was Abidan the son of Gideoni.</VERS>\r\n      <VERS vnumber=\"25\">And the standard of the camp of the children of Dan, which was the rearward of all the camps, set forward according to their hosts: and over his host was Ahiezer the son of Ammishaddai.</VERS>\r\n      <VERS vnumber=\"26\">And over the host of the tribe of the children of Asher was Pagiel the son of Ochran.</VERS>\r\n      <VERS vnumber=\"27\">And over the host of the tribe of the children of Naphtali was Ahira the son of Enan.</VERS>\r\n      <VERS vnumber=\"28\">Thus were the journeyings of the children of Israel according to their hosts; and they set forward.</VERS>\r\n      <VERS vnumber=\"29\">And Moses said unto Hobab, the son of Reuel the Midianite, Moses` father-in-law, We are journeying unto the place of which Jehovah said, I will give it you: come thou with us, and we will do thee good; for Jehovah hath spoken good concerning Israel.</VERS>\r\n      <VERS vnumber=\"30\">And he said unto him, I will not go; but I will depart to mine own land, and to my kindred.</VERS>\r\n      <VERS vnumber=\"31\">And he said, Leave us not, I pray thee; forasmuch as thou knowest how we are to encamp in the wilderness, and thou shalt be to us instead of eyes.</VERS>\r\n      <VERS vnumber=\"32\">And it shall be, if thou go with us, yea, it shall be, that what good soever Jehovah shall do unto us, the same will we do unto thee.</VERS>\r\n      <VERS vnumber=\"33\">And they set forward from the mount of Jehovah three days` journey; and the ark of the covenant of Jehovah went before them three days` journey, to seek out a resting-place for them.</VERS>\r\n      <VERS vnumber=\"34\">And the cloud of Jehovah was over them by day, when they set forward from the camp.</VERS>\r\n      <VERS vnumber=\"35\">And it came to pass, when the ark set forward, that Moses said, Rise up, O Jehovah, and let thine enemies be scattered; and let them that hate thee flee before thee.</VERS>\r\n      <VERS vnumber=\"36\">And when it rested, he said, Return, O Jehovah, unto the ten thousands of the thousands of Israel.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">And the people were as murmurers, [speaking] evil in the ears of Jehovah: and when Jehovah heard it, his anger was kindled; and the fire of Jehovah burnt among them, and devoured in the uttermost part of the camp.</VERS>\r\n      <VERS vnumber=\"2\">And the people cried unto Moses; and Moses prayed unto Jehovah, and the fire abated.</VERS>\r\n      <VERS vnumber=\"3\">And the name of that place was called Taberah, because the fire of Jehovah burnt among them.</VERS>\r\n      <VERS vnumber=\"4\">And the mixed multitude that was among them lusted exceedingly: and the children of Israel also wept again, and said, Who shall give us flesh to eat?</VERS>\r\n      <VERS vnumber=\"5\">We remember the fish, which we did eat in Egypt for nought; the cucumbers, and the melons, and the leeks, and the onions, and the garlic:</VERS>\r\n      <VERS vnumber=\"6\">but now our soul is dried away; there is nothing at all save this manna to look upon.</VERS>\r\n      <VERS vnumber=\"7\">And the manna was like coriander seed, and the appearance thereof as the appearance of bdellium.</VERS>\r\n      <VERS vnumber=\"8\">The people went about, and gathered it, and ground it in mills, or beat it in mortars, and boiled it in pots, and made cakes of it: and the taste of it was as the taste of fresh oil.</VERS>\r\n      <VERS vnumber=\"9\">And when the dew fell upon the camp in the night, the manna fell upon it.</VERS>\r\n      <VERS vnumber=\"10\">And Moses heard the people weeping throughout their families, every man at the door of his tent: and the anger of Jehovah was kindled greatly; and Moses was displeased.</VERS>\r\n      <VERS vnumber=\"11\">And Moses said unto Jehovah, Wherefore hast thou dealt ill with thy servant? and wherefore have I not found favor in thy sight, that thou layest the burden of all this people upon me?</VERS>\r\n      <VERS vnumber=\"12\">Have I conceived all this people? have I brought them forth, that thou shouldest say unto me, Carry them in thy bosom, as a nursing-father carrieth the sucking child, unto the land which thou swarest unto their fathers?</VERS>\r\n      <VERS vnumber=\"13\">Whence should I have flesh to give unto all this people? for they weep unto me, saying, Give us flesh, that we may eat.</VERS>\r\n      <VERS vnumber=\"14\">I am not able to bear all this people alone, because it is too heavy for me.</VERS>\r\n      <VERS vnumber=\"15\">And if thou deal thus with me, kill me, I pray thee, out of hand, if I have found favor in thy sight; and let me not see my wretchedness.</VERS>\r\n      <VERS vnumber=\"16\">And Jehovah 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 tent of meeting, that they may stand there with thee.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And say thou unto the people, Sanctify yourselves against to-morrow, and ye shall eat flesh; for ye have wept in the ears of Jehovah, saying, Who shall give us flesh to eat? for it was well with us in Egypt: therefore Jehovah will give you flesh, and ye shall eat.</VERS>\r\n      <VERS vnumber=\"19\">Ye shall not eat one day, nor two days, nor five days, neither ten days, nor twenty days,</VERS>\r\n      <VERS vnumber=\"20\">but a whole month, until it come out at your nostrils, and it be loathsome unto you; because that ye have rejected Jehovah who is among you, and have wept before him, saying, Why came we forth out of Egypt?</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">Shall flocks and herds be slain for them, to suffice them? or shall all the fish of the sea be gathered together for them, to suffice them?</VERS>\r\n      <VERS vnumber=\"23\">And Jehovah said unto Moses, Is Jehovah`s hand waxed short? now shalt thou see whether my word shall come to pass unto thee or not.</VERS>\r\n      <VERS vnumber=\"24\">And Moses went out, and told the people the words of Jehovah: and he gathered seventy men of the elders of the people, and set them round about the Tent.</VERS>\r\n      <VERS vnumber=\"25\">And Jehovah came down in the cloud, and spake unto him, and took of the Spirit that was upon him, and put it upon the seventy elders: and it came to pass, that, when the Spirit rested upon them, they prophesied, but they did so no more.</VERS>\r\n      <VERS vnumber=\"26\">But there remained two 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 had not gone out unto the Tent; and they prophesied in the camp.</VERS>\r\n      <VERS vnumber=\"27\">And there ran a young man, and told Moses, and said, Eldad and Medad do prophesy in the camp.</VERS>\r\n      <VERS vnumber=\"28\">And Joshua the son of Nun, the minister of Moses, one of his chosen men, answered and said, My lord Moses, forbid them.</VERS>\r\n      <VERS vnumber=\"29\">And Moses said unto him, Art thou jealous for my sake? would that all Jehovah`s people were prophets, that Jehovah would put his Spirit upon them!</VERS>\r\n      <VERS vnumber=\"30\">And Moses gat him into the camp, he and the elders of Israel.</VERS>\r\n      <VERS vnumber=\"31\">And there went forth a wind from Jehovah, and brought quails from the sea, and let them fall by the camp, about a day`s journey on this side, and a day`s journey on the other side, round about the camp, and about two cubits above the face of the earth.</VERS>\r\n      <VERS vnumber=\"32\">And the people rose up all that day, and all the night, and all the next day, and gathered the quails: he that gathered least gathered ten homers: and they spread them all abroad for themselves round about the camp.</VERS>\r\n      <VERS vnumber=\"33\">While the flesh was yet between their teeth, ere it was chewed, the anger of Jehovah was kindled against the people, and Jehovah smote the people with a very great plague.</VERS>\r\n      <VERS vnumber=\"34\">And the name of that place was called Kibrothhattaavah, because there they buried the people that lusted.</VERS>\r\n      <VERS vnumber=\"35\">From Kibrothhattaavah the people journeyed unto Hazeroth; and they abode at Hazeroth.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">And Miriam and Aaron spake against Moses because of the Cushite woman whom he had married; for he had married a Cushite woman.</VERS>\r\n      <VERS vnumber=\"2\">And they said, Hath Jehovah indeed spoken only with Moses? hath he not spoken also with us? And Jehovah heard it.</VERS>\r\n      <VERS vnumber=\"3\">Now the man Moses was very meek, above all the men that were upon the face of the earth.</VERS>\r\n      <VERS vnumber=\"4\">And Jehovah spake suddenly unto Moses, and unto Aaron, and unto Miriam, Come out ye three unto the tent of meeting. And they three came out.</VERS>\r\n      <VERS vnumber=\"5\">And Jehovah came down in a pillar of cloud, and stood at the door of the Tent, and called Aaron and Miriam; and they both came forth.</VERS>\r\n      <VERS vnumber=\"6\">And he said, Hear now my words: if there be a prophet among you, I Jehovah will make myself known unto him in a vision, I will speak with him in a dream.</VERS>\r\n      <VERS vnumber=\"7\">My servant Moses is not so; he is faithful in all my house:</VERS>\r\n      <VERS vnumber=\"8\">with him will I speak mouth to mouth, even manifestly, and not in dark speeches; and the form of Jehovah shall he behold: wherefore then were ye not afraid to speak against my servant, against Moses?</VERS>\r\n      <VERS vnumber=\"9\">And the anger of Jehovah was kindled against them; and he departed.</VERS>\r\n      <VERS vnumber=\"10\">And the cloud removed from over the Tent; and, behold, Miriam was leprous, as [white as] snow: and Aaron looked upon Miriam, and, behold, she was leprous.</VERS>\r\n      <VERS vnumber=\"11\">And Aaron said unto Moses, Oh, my lord, lay not, I pray thee, sin upon us, for that we have done foolishly, and for that we have sinned.</VERS>\r\n      <VERS vnumber=\"12\">Let her not, I pray, be as one dead, of whom the flesh is half consumed when he cometh out of his mother`s womb.</VERS>\r\n      <VERS vnumber=\"13\">And Moses cried unto Jehovah, saying, Heal her, O God, I beseech thee.</VERS>\r\n      <VERS vnumber=\"14\">And Jehovah said unto Moses, If her father had but spit in her face, should she not be ashamed seven days? let her be shut up without the camp seven days, and after that she shall be brought in again.</VERS>\r\n      <VERS vnumber=\"15\">And Miriam was shut up without the camp seven days: and the people journeyed not till Miriam was brought in again.</VERS>\r\n      <VERS vnumber=\"16\">And afterward the people journeyed from Hazeroth, and encamped in the wilderness of Paran.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">Send thou men, that they may spy out 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 prince among them.</VERS>\r\n      <VERS vnumber=\"3\">And Moses sent them from the wilderness of Paran according to the commandment of Jehovah: all of them men who were heads of the children of Israel.</VERS>\r\n      <VERS vnumber=\"4\">And these were their names: Of the tribe of Reuben, Shammua the son of Zaccur.</VERS>\r\n      <VERS vnumber=\"5\">Of the tribe of Simeon, Shaphat the son of Hori.</VERS>\r\n      <VERS vnumber=\"6\">Of the tribe of Judah, Caleb the son of Jephunneh.</VERS>\r\n      <VERS vnumber=\"7\">Of the tribe of Issachar, Igal the son of Joseph.</VERS>\r\n      <VERS vnumber=\"8\">Of the tribe of Ephraim, Hoshea the son of Nun.</VERS>\r\n      <VERS vnumber=\"9\">Of the tribe of Benjamin, Palti the son of Raphu.</VERS>\r\n      <VERS vnumber=\"10\">Of the tribe of Zebulun, Gaddiel the son of Sodi.</VERS>\r\n      <VERS vnumber=\"11\">Of the tribe of Joseph, [namely], of the tribe of Manasseh, Gaddi the son of Susi.</VERS>\r\n      <VERS vnumber=\"12\">Of the tribe of Dan, Ammiel the son of Gemalli.</VERS>\r\n      <VERS vnumber=\"13\">Of the tribe of Asher, Sethur the son of Michael.</VERS>\r\n      <VERS vnumber=\"14\">Of the tribe of Naphtali, Nahbi the son of Vophsi.</VERS>\r\n      <VERS vnumber=\"15\">Of the tribe of Gad, Geuel the son of Machi.</VERS>\r\n      <VERS vnumber=\"16\">These are the names of the men that Moses sent to spy out the land. And Moses called Hoshea the son of Nun Joshua.</VERS>\r\n      <VERS vnumber=\"17\">And Moses sent them to spy out the land of Canaan, and said unto them, Get you up this way by the South, and go up into the hill-country:</VERS>\r\n      <VERS vnumber=\"18\">and see the land, what it is; and the people that dwell therein, whether they are strong or weak, whether they are few or many;</VERS>\r\n      <VERS vnumber=\"19\">and what the land is that they dwell in, whether it is good or bad; and what cities they are that they dwell in, whether in camps, or in strongholds;</VERS>\r\n      <VERS vnumber=\"20\">and what the land is, whether it is fat or lean, whether there is 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 first-ripe grapes.</VERS>\r\n      <VERS vnumber=\"21\">So they went up, and spied out the land from the wilderness of Zin unto Rehob, to the entrance of Hamath.</VERS>\r\n      <VERS vnumber=\"22\">And they went up by the South, and came unto Hebron; and Ahiman, Sheshai, and Talmai, the children of Anak, were there. (Now Hebron was built seven years before Zoan in Egypt.)</VERS>\r\n      <VERS vnumber=\"23\">And they came unto the valley of Eshcol, and cut down from thence a branch with one cluster of grapes, and they bare it upon a staff between two; [they brought] also of the pomegranates, and of the figs.</VERS>\r\n      <VERS vnumber=\"24\">That place was called the valley of Eshcol, because of the cluster which the children of Israel cut down from thence.</VERS>\r\n      <VERS vnumber=\"25\">And they returned from spying out the land at the end of forty days.</VERS>\r\n      <VERS vnumber=\"26\">And 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 showed them the fruit of the land.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">Howbeit the people that dwell in the land are strong, and the cities are fortified, [and] very great: and moreover we saw the children of Anak there.</VERS>\r\n      <VERS vnumber=\"29\">Amalek dwelleth in the land of the South: and the Hittite, and the Jebusite, and the Amorite, dwell in the hill-country; and the Canaanite dwelleth by the sea, and along by the side of the Jordan.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">But the men that went up with him said, We are not able to go up against the people; for they are stronger than we.</VERS>\r\n      <VERS vnumber=\"32\">And they brought up an evil report of the land which they had spied out unto the children of Israel, saying, The land, through which we have gone to spy it out, is a land that eateth up the inhabitants thereof; and all the people that we saw in it are men of great stature.</VERS>\r\n      <VERS vnumber=\"33\">And there we saw the Nephilim, the sons of Anak, who come of the Nephilim: and we were in our own sight as grasshoppers, and so we were in their sight.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">And all the congregation lifted up their voice, and cried; and the people wept that night.</VERS>\r\n      <VERS vnumber=\"2\">And all the children of Israel murmured against Moses and against Aaron: and the whole congregation said unto them, Would that we had died in the land of Egypt! or would that we had died in this wilderness!</VERS>\r\n      <VERS vnumber=\"3\">And wherefore doth Jehovah bring us unto this land, to fall by the sword? Our wives and our little ones will be a prey: were it not better for us to return into Egypt?</VERS>\r\n      <VERS vnumber=\"4\">And they said one to another, Let us make a captain, and let us return into Egypt.</VERS>\r\n      <VERS vnumber=\"5\">Then Moses and Aaron fell on their faces before all the assembly of the congregation of the children of Israel.</VERS>\r\n      <VERS vnumber=\"6\">And Joshua the son of Nun and Caleb the son of Jephunneh, who were of them that spied out the land, rent their clothes:</VERS>\r\n      <VERS vnumber=\"7\">and they spake unto all the congregation of the children of Israel, saying, The land, which we passed through to spy it out, is an exceeding good land.</VERS>\r\n      <VERS vnumber=\"8\">If Jehovah delight in us, then he will bring us into this land, and give it unto us; a land which floweth with milk and honey.</VERS>\r\n      <VERS vnumber=\"9\">Only rebel not against Jehovah, neither fear ye the people of the land; for they are bread for us: their defence is removed from over them, and Jehovah is with us: fear them not.</VERS>\r\n      <VERS vnumber=\"10\">But all the congregation bade stone them with stones. And the glory of Jehovah appeared in the tent of meeting unto all the children of Israel.</VERS>\r\n      <VERS vnumber=\"11\">And Jehovah said unto Moses, How long will this people despise me? and how long will they not believe in me, for all the signs which I have wrought among them?</VERS>\r\n      <VERS vnumber=\"12\">I will smite them with the pestilence, and disinherit them, and will make of thee a nation greater and mightier than they.</VERS>\r\n      <VERS vnumber=\"13\">And Moses said unto Jehovah, Then the Egyptians will hear it; for thou broughtest up this people in thy might from among them;</VERS>\r\n      <VERS vnumber=\"14\">and they will tell it to the inhabitants of this land. They have heard that thou Jehovah art in the midst of this people; for thou Jehovah art seen face to face, and thy cloud standeth over them, and thou goest before them, in a pillar of cloud by day, and in a pillar of fire by night.</VERS>\r\n      <VERS vnumber=\"15\">Now if thou shalt kill this people as one man, then the nations which have heard the fame of thee will speak, saying,</VERS>\r\n      <VERS vnumber=\"16\">Because Jehovah was not able to bring this people into the land which he sware unto them, therefore he hath slain them in the wilderness.</VERS>\r\n      <VERS vnumber=\"17\">And now, I pray thee, let the power of the Lord be great, according as thou hast spoken, saying,</VERS>\r\n      <VERS vnumber=\"18\">Jehovah is slow to anger, and abundant in lovingkindness, forgiving iniquity and transgression; and that will by no means clear [the guilty], visiting the iniquity of the fathers upon the children, upon the third and upon the fourth generation.</VERS>\r\n      <VERS vnumber=\"19\">Pardon, I pray thee, the iniquity of this people according unto the greatness of thy lovingkindness, and according as thou hast forgiven this people, from Egypt even until now.</VERS>\r\n      <VERS vnumber=\"20\">And Jehovah said, I have pardoned according to thy word:</VERS>\r\n      <VERS vnumber=\"21\">but in very deed, as I live, and as all the earth shall be filled with the glory of Jehovah;</VERS>\r\n      <VERS vnumber=\"22\">because all those men that have seen my glory, and my signs, which I wrought in Egypt and in the wilderness, yet have tempted me these ten times, and have not hearkened to my voice;</VERS>\r\n      <VERS vnumber=\"23\">surely they shall not see the land which I sware unto their fathers, neither shall any of them that despised me see it:</VERS>\r\n      <VERS vnumber=\"24\">but 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.</VERS>\r\n      <VERS vnumber=\"25\">Now the Amalekite and the Canaanite dwell in the valley: to-morrow turn ye, and get you into the wilderness by the way to the Red Sea.</VERS>\r\n      <VERS vnumber=\"26\">And Jehovah spake unto Moses and unto Aaron, saying,</VERS>\r\n      <VERS vnumber=\"27\">How long [shall I bear] with this evil congregation, that murmur against me? I have heard the murmurings of the children of Israel, which they murmur against me.</VERS>\r\n      <VERS vnumber=\"28\">Say unto them, As I live, saith Jehovah, surely as ye have spoken in mine ears, so will I do to you:</VERS>\r\n      <VERS vnumber=\"29\">your dead bodies shall fall in this wilderness; and all that were numbered of you, according to your whole number, from twenty years old and upward, that have murmured against me,</VERS>\r\n      <VERS vnumber=\"30\">surely ye shall not come into the land, concerning which I sware that I would make you dwell therein, save Caleb the son of Jephunneh, and Joshua the son of Nun.</VERS>\r\n      <VERS vnumber=\"31\">But your little ones, that ye said should be a prey, them will I bring in, and they shall know the land which ye have rejected.</VERS>\r\n      <VERS vnumber=\"32\">But as for you, your dead bodies shall fall in this wilderness.</VERS>\r\n      <VERS vnumber=\"33\">And your children shall be wanderers in the wilderness forty years, and shall bear your whoredoms, until your dead bodies be consumed in the wilderness.</VERS>\r\n      <VERS vnumber=\"34\">After the number of the days in which ye spied out the land, even forty days, for every day a year, shall ye bear your iniquities, even forty years, and ye shall know my alienation.</VERS>\r\n      <VERS vnumber=\"35\">I, Jehovah, have spoken, surely this will I do unto all this evil congregation, that are gathered together against me: in this wilderness they shall be consumed, and there they shall die.</VERS>\r\n      <VERS vnumber=\"36\">And the men, whom Moses sent to spy out the land, who returned, and made all the congregation to murmur against him, by bringing up an evil report against the land,</VERS>\r\n      <VERS vnumber=\"37\">even those men that did bring up an evil report of the land, died by the plague before Jehovah.</VERS>\r\n      <VERS vnumber=\"38\">But Joshua the son of Nun, and Caleb the son of Jephunneh, remained alive of those men that went to spy out the land.</VERS>\r\n      <VERS vnumber=\"39\">And Moses told these words unto all the children of Israel: and the people mourned greatly.</VERS>\r\n      <VERS vnumber=\"40\">And they rose up early in the morning, and gat them up to the top of the mountain, saying, Lo, we are here, and will go up unto the place which Jehovah hath promised: for we have sinned.</VERS>\r\n      <VERS vnumber=\"41\">And Moses said, Wherefore now do ye transgress the commandment of Jehovah, seeing it shall not prosper?</VERS>\r\n      <VERS vnumber=\"42\">Go not up, for Jehovah is not among you; that ye be not smitten down before your enemies.</VERS>\r\n      <VERS vnumber=\"43\">For there the Amalekite and the Canaanite are before you, and ye shall fall by the sword: because ye are turned back from following Jehovah, therefore Jehovah will not be with you.</VERS>\r\n      <VERS vnumber=\"44\">But they presumed to go up to the top of the mountain: nevertheless the ark of the covenant of Jehovah, and Moses, departed not out of the camp.</VERS>\r\n      <VERS vnumber=\"45\">Then the Amalekite came down, and the Canaanite who dwelt in that mountain, and smote them and beat them down, even unto Hormah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">Speak unto the children of Israel, and say unto them, When ye are come into the land of your habitations, which I give unto you,</VERS>\r\n      <VERS vnumber=\"3\">and will make an offering by fire unto Jehovah, a burnt-offering, or a sacrifice, to accomplish a vow, or as a freewill-offering, or in your set feasts, to make a sweet savor unto Jehovah, of the herd, or of the flock;</VERS>\r\n      <VERS vnumber=\"4\">then shall he that offereth his oblation offer unto Jehovah a meal-offering of a tenth part [of an ephah] of fine flour mingled with the fourth part of a hin of oil:</VERS>\r\n      <VERS vnumber=\"5\">and wine for the drink-offering, the fourth part of a hin, shalt thou prepare with the burnt-offering, or for the sacrifice, for each lamb.</VERS>\r\n      <VERS vnumber=\"6\">Or for a ram, thou shalt prepare for a meal-offering two tenth parts [of an ephah] of fine flour mingled with the third part of a hin of oil:</VERS>\r\n      <VERS vnumber=\"7\">and for the drink-offering thou shalt offer the third part of a hin of wine, of a sweet savor unto Jehovah.</VERS>\r\n      <VERS vnumber=\"8\">And when thou preparest a bullock for a burnt-offering, or for a sacrifice, to accomplish a vow, or for peace-offerings unto Jehovah;</VERS>\r\n      <VERS vnumber=\"9\">then shall he offer with the bullock a meal-offering of three tenth parts [of an ephah] of fine flour mingled with half a hin of oil:</VERS>\r\n      <VERS vnumber=\"10\">and thou shalt offer for the drink-offering half a hin of wine, for an offering made by fire, of a sweet savor unto Jehovah.</VERS>\r\n      <VERS vnumber=\"11\">Thus shall it be done for each bullock, or for each ram, or for each of the he-lambs, or of the kids.</VERS>\r\n      <VERS vnumber=\"12\">According to the number that ye shall prepare, so shall ye do to every one according to their number.</VERS>\r\n      <VERS vnumber=\"13\">All that are home-born shall do these things after this manner, in offering an offering made by fire, of a sweet savor unto Jehovah.</VERS>\r\n      <VERS vnumber=\"14\">And if a stranger sojourn with you, or whosoever may be among you throughout your generations, and will offer an offering made by fire, of a sweet savor unto Jehovah; as ye do, so he shall do.</VERS>\r\n      <VERS vnumber=\"15\">For the assembly, there shall be one statute for you, and for the stranger that sojourneth [with you], a statute for ever throughout your generations: as ye are, so shall the sojourner be before Jehovah.</VERS>\r\n      <VERS vnumber=\"16\">One law and one ordinance shall be for you, and for the stranger that sojourneth with you.</VERS>\r\n      <VERS vnumber=\"17\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"18\">Speak unto the children of Israel, and say unto them, When ye come into the land whither I bring you,</VERS>\r\n      <VERS vnumber=\"19\">then it shall be, that, when ye eat of the bread of the land, ye shall offer up a heave-offering unto Jehovah.</VERS>\r\n      <VERS vnumber=\"20\">Of the first of your dough ye shall offer up a cake for a heave-offering: as the heave-offering of the threshing-floor, so shall ye heave it.</VERS>\r\n      <VERS vnumber=\"21\">Of the first of your dough ye shall give unto Jehovah a heave-offering throughout your generations.</VERS>\r\n      <VERS vnumber=\"22\">And when ye shall err, and not observe all these commandments, which Jehovah hath spoken unto Moses,</VERS>\r\n      <VERS vnumber=\"23\">even all that Jehovah hath commanded you by Moses, from the day that Jehovah gave commandment, and onward throughout your generations;</VERS>\r\n      <VERS vnumber=\"24\">then it shall be, if it be done unwittingly, without the knowledge of the congregation, that all the congregation shall offer one young bullock for a burnt-offering, for a sweet savor unto Jehovah, with the meal-offering thereof, and the drink-offering thereof, according to the ordinance, and one he-goat for a sin-offering.</VERS>\r\n      <VERS vnumber=\"25\">And the priest shall make atonement for all the congregation of the children of Israel, and they shall be forgiven; for it was an error, and they have brought their oblation, an offering made by fire unto Jehovah, and their sin-offering before Jehovah, for their error:</VERS>\r\n      <VERS vnumber=\"26\">and all the congregation of the children of Israel shall be forgiven, and the stranger that sojourneth among them; for in respect of all the people it was done unwittingly.</VERS>\r\n      <VERS vnumber=\"27\">And if one person sin unwittingly, then he shall offer a she-goat a year old for a sin-offering.</VERS>\r\n      <VERS vnumber=\"28\">And the priest shall make atonement for the soul that erreth, when he sinneth unwittingly, before Jehovah, to make atonement for him; and he shall be forgiven.</VERS>\r\n      <VERS vnumber=\"29\">Ye shall have one law for him that doeth aught unwittingly, for him that is home-born among the children of Israel, and for the stranger that sojourneth among them.</VERS>\r\n      <VERS vnumber=\"30\">But the soul that doeth aught with a high hand, whether he be home-born or a sojourner, the same blasphemeth Jehovah; and that soul shall be cut off from among his people.</VERS>\r\n      <VERS vnumber=\"31\">Because he hath despised the word of Jehovah, and hath broken his commandment, that soul shall utterly be cut off; his iniquity shall be upon him.</VERS>\r\n      <VERS vnumber=\"32\">And while the children of Israel were in the wilderness, they found a man gathering sticks upon the sabbath day.</VERS>\r\n      <VERS vnumber=\"33\">And they that found him gathering sticks brought him unto Moses and Aaron, and unto all the congregation.</VERS>\r\n      <VERS vnumber=\"34\">And they put him in ward, because it had not been declared what should be done to him.</VERS>\r\n      <VERS vnumber=\"35\">And Jehovah said unto Moses, The man shall surely be put to death: all the congregation shall stone him with stones without the camp.</VERS>\r\n      <VERS vnumber=\"36\">And all the congregation brought him without the camp, and stoned him to death with stones; as Jehovah commanded Moses.</VERS>\r\n      <VERS vnumber=\"37\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"38\">Speak 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 each border a cord of blue:</VERS>\r\n      <VERS vnumber=\"39\">and it shall be unto you for a fringe, that ye may look upon it, and remember all the commandments of Jehovah, and do them; and that ye follow not after your own heart and your own eyes, after which ye use to play the harlot;</VERS>\r\n      <VERS vnumber=\"40\">that ye may remember and do all my commandments, and be holy unto your God.</VERS>\r\n      <VERS vnumber=\"41\">I am Jehovah your God, who brought you out of the land of Egypt, to be your God: I am Jehovah your God.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">Now Korah, the son of Izhar, the son of Kohath, the son of Levi, with Dathan and Abiram, the sons of Eliab, and On, the son of Peleth, sons of Reuben, took [men]:</VERS>\r\n      <VERS vnumber=\"2\">and they rose up before Moses, with certain of the children of Israel, two hundred and fifty princes of the congregation, called to the assembly, men of renown;</VERS>\r\n      <VERS vnumber=\"3\">and they assembled 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 Jehovah is among them: wherefore then lift ye up yourselves above the assembly of Jehovah?</VERS>\r\n      <VERS vnumber=\"4\">And when Moses heard it, he fell upon his face:</VERS>\r\n      <VERS vnumber=\"5\">and he spake unto Korah and unto all his company, saying, In the morning Jehovah will show who are his, and who is holy, and will cause him to come near unto him: even him whom he shall choose will he cause to come near unto him.</VERS>\r\n      <VERS vnumber=\"6\">This do: take you censers, Korah, and all his company;</VERS>\r\n      <VERS vnumber=\"7\">and put fire in them, and put incense upon them before Jehovah to-morrow: and it shall be that the man whom Jehovah doth choose, he [shall be] holy: ye take too much upon you, ye sons of Levi.</VERS>\r\n      <VERS vnumber=\"8\">And Moses said unto Korah, Hear now, ye sons of Levi:</VERS>\r\n      <VERS vnumber=\"9\">[seemeth 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 Jehovah, and to stand before the congregation to minister unto them;</VERS>\r\n      <VERS vnumber=\"10\">and that he hath brought thee near, and all thy brethren the sons of Levi with thee? and seek ye the priesthood also?</VERS>\r\n      <VERS vnumber=\"11\">Therefore thou and all thy company are gathered together against Jehovah: and Aaron, what is he that ye murmur against him?</VERS>\r\n      <VERS vnumber=\"12\">And Moses sent to call Dathan and Abiram, the sons of Eliab; and they said, We will not come up:</VERS>\r\n      <VERS vnumber=\"13\">is it a small thing that thou hast brought us up out of a land flowing with milk and honey, to kill us in the wilderness, but thou must needs make thyself also a prince over us?</VERS>\r\n      <VERS vnumber=\"14\">Moreover thou hast not brought us into a land flowing with milk and honey, nor given us inheritance of fields and vineyards: wilt thou put out the eyes of these men? we will not come up.</VERS>\r\n      <VERS vnumber=\"15\">And Moses was very wroth, and said unto Jehovah, Respect not thou their offering: I have not taken one ass from them, neither have I hurt one of them.</VERS>\r\n      <VERS vnumber=\"16\">And Moses said unto Korah, Be thou and all thy company before Jehovah, thou, and they, and Aaron, to-morrow:</VERS>\r\n      <VERS vnumber=\"17\">and take ye every man his censer, and put incense upon them, and bring ye before Jehovah every man his censer, two hundred and fifty censers; thou also, and Aaron, each his censer.</VERS>\r\n      <VERS vnumber=\"18\">And they took every man his censer, and put fire in them, and laid incense thereon, and stood at the door of the tent of meeting with Moses and Aaron.</VERS>\r\n      <VERS vnumber=\"19\">And Korah assembled all the congregation against them unto the door of the tent of meeting: and the glory of Jehovah appeared unto all the congregation.</VERS>\r\n      <VERS vnumber=\"20\">And Jehovah spake unto Moses and unto Aaron, saying,</VERS>\r\n      <VERS vnumber=\"21\">Separate yourselves from among this congregation, that I may consume them in a moment.</VERS>\r\n      <VERS vnumber=\"22\">And 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?</VERS>\r\n      <VERS vnumber=\"23\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"24\">Speak unto the congregation, saying, Get you up from about the tabernacle of Korah, Dathan, and Abiram.</VERS>\r\n      <VERS vnumber=\"25\">And Moses rose up and went unto Dathan and Abiram; and the elders of Israel followed him.</VERS>\r\n      <VERS vnumber=\"26\">And he spake unto the congregation, saying, Depart, I pray you, from the tents of these wicked men, and touch nothing of theirs, lest ye be consumed in all their sins.</VERS>\r\n      <VERS vnumber=\"27\">So they gat them up from the tabernacle of Korah, Dathan, and Abiram, on every side: and Dathan and Abiram came out, and stood at the door of their tents, and their wives, and their sons, and their little ones.</VERS>\r\n      <VERS vnumber=\"28\">And Moses said, Hereby ye shall know that Jehovah hath sent me to do all these works; for [I have] not [done them] of mine own mind.</VERS>\r\n      <VERS vnumber=\"29\">If these men die the common death of all men, or if they be visited after the visitation of all men; then Jehovah hath not sent me.</VERS>\r\n      <VERS vnumber=\"30\">But if Jehovah make a new thing, and the ground open its mouth, and swallow them up, with all that appertain unto them, and they go down alive into Sheol; then ye shall understand that these men have despised Jehovah.</VERS>\r\n      <VERS vnumber=\"31\">And it came to pass, as he made an end of speaking all these words, that the ground clave asunder that was under them;</VERS>\r\n      <VERS vnumber=\"32\">and the earth opened its mouth, and swallowed them up, and their households, and all the men that appertained unto Korah, and all their goods.</VERS>\r\n      <VERS vnumber=\"33\">So they, and all that appertained to them, went down alive into Sheol: and the earth closed upon them, and they perished from among the assembly.</VERS>\r\n      <VERS vnumber=\"34\">And all Israel that were round about them fled at the cry of them; for they said, Lest the earth swallow us up.</VERS>\r\n      <VERS vnumber=\"35\">And fire came forth from Jehovah, and devoured the two hundred and fifty men that offered the incense.</VERS>\r\n      <VERS vnumber=\"36\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"37\">Speak 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 holy,</VERS>\r\n      <VERS vnumber=\"38\">even the censers of these sinners against their own lives; and let them be made beaten plates for a covering of the altar: for they offered them before Jehovah; therefore they are holy; and they shall be a sign unto the children of Israel.</VERS>\r\n      <VERS vnumber=\"39\">And Eleazar the priest took the brazen censers, which they that were burnt had offered; and they beat them out for a covering of the altar,</VERS>\r\n      <VERS vnumber=\"40\">to be a memorial unto the children of Israel, to the end that no stranger, that is not of the seed of Aaron, come near to burn incense before Jehovah; that he be not as Korah, and as his company: as Jehovah spake unto him by Moses.</VERS>\r\n      <VERS vnumber=\"41\">But on the morrow all the congregation of the children of Israel murmured against Moses and against Aaron, saying, Ye have killed the people of Jehovah.</VERS>\r\n      <VERS vnumber=\"42\">And it came to pass, when the congregation was assembled against Moses and against Aaron, that they looked toward the tent of meeting: and, behold, the cloud covered it, and the glory of Jehovah appeared.</VERS>\r\n      <VERS vnumber=\"43\">And Moses and Aaron came to the front of the tent of meeting.</VERS>\r\n      <VERS vnumber=\"44\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"45\">Get you up from among this congregation, that I may consume them in a moment. And they fell upon their faces.</VERS>\r\n      <VERS vnumber=\"46\">And Moses said unto Aaron, Take they censer, and put fire therein from off the altar, and lay incense thereon, and carry it quickly unto the congregation, and make atonement for them: for there is wrath gone out from Jehovah; the plague is begun.</VERS>\r\n      <VERS vnumber=\"47\">And Aaron took as Moses spake, and ran into the midst of the assembly; and, behold, the plague was begun among the people: and he put on the incense, and made atonement for the people.</VERS>\r\n      <VERS vnumber=\"48\">And he stood between the dead and the living; and the plague was stayed.</VERS>\r\n      <VERS vnumber=\"49\">Now they that died by the plague were fourteen thousand and seven hundred, besides them that died about the matter of Korah.</VERS>\r\n      <VERS vnumber=\"50\">And Aaron returned unto Moses unto the door of the tent of meeting: and the plague was stayed.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"17\">\r\n      <VERS vnumber=\"1\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">Speak unto the children of Israel, and take of them rods, one for each fathers` house, of all their princes according to their fathers` houses, twelve rods: write thou every man`s name upon his rod.</VERS>\r\n      <VERS vnumber=\"3\">And thou shalt write Aaron`s name upon the rod of Levi; for there shall be one rod for each head of their fathers` houses.</VERS>\r\n      <VERS vnumber=\"4\">And thou shalt lay them up in the tent of meeting before the testimony, where I meet with you.</VERS>\r\n      <VERS vnumber=\"5\">And it shall come to pass, that the rod of the man whom I shall choose shall bud: and I will make to cease from me the murmurings of the children of Israel, which they murmur against you.</VERS>\r\n      <VERS vnumber=\"6\">And Moses spake unto the children of Israel; and all their princes gave him rods, for each prince one, according to their fathers` houses, even twelve rods: and the rod of Aaron was among their rods.</VERS>\r\n      <VERS vnumber=\"7\">And Moses laid up the rods before Jehovah in the tent of the testimony.</VERS>\r\n      <VERS vnumber=\"8\">And it came to pass on the morrow, that Moses went into the tent of the testimony; and, behold, the rod of Aaron for the house of Levi was budded, and put forth buds, and produced blossoms, and bare ripe almonds.</VERS>\r\n      <VERS vnumber=\"9\">And Moses brought out all the rods from before Jehovah unto all the children of Israel: and they looked, and took every man his rod.</VERS>\r\n      <VERS vnumber=\"10\">And Jehovah said unto Moses, Put back the rod of Aaron before the testimony, to be kept for a token against the children of rebellion; that thou mayest make an end of their murmurings against me, that they die not.</VERS>\r\n      <VERS vnumber=\"11\">Thus did Moses: as Jehovah commanded him, so did he.</VERS>\r\n      <VERS vnumber=\"12\">And the children of Israel spake unto Moses, saying, Behold, we perish, we are undone, we are all undone.</VERS>\r\n      <VERS vnumber=\"13\">Every one that cometh near, that cometh near unto the tabernacle of Jehovah, dieth: shall we perish all of us?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"18\">\r\n      <VERS vnumber=\"1\">And Jehovah said unto Aaron, Thou and thy sons and thy fathers` house with thee shall bear the iniquity of the sanctuary; and thou and thy sons with thee shall bear the iniquity of your priesthood.</VERS>\r\n      <VERS vnumber=\"2\">And thy brethren also, the tribe of Levi, the tribe of thy father, bring thou near with thee, that they may be joined unto thee, and minister unto thee: but thou and thy sons with thee shall be before the tent of the testimony.</VERS>\r\n      <VERS vnumber=\"3\">And they shall keep thy charge, and the charge of all the Tent: only they shall not come nigh unto the vessels of the sanctuary and unto the altar, that they die not, neither they, nor ye.</VERS>\r\n      <VERS vnumber=\"4\">And they shall be joined unto thee, and keep the charge of the tent of meeting, for all the service of the Tent: and a stranger shall not come nigh unto you.</VERS>\r\n      <VERS vnumber=\"5\">And ye shall keep the charge of the sanctuary, and the charge of the altar; that there be wrath no more upon the children of Israel.</VERS>\r\n      <VERS vnumber=\"6\">And I, behold, I have taken your brethren the Levites from among the children of Israel: to you they are a gift, given unto Jehovah, to do the service of the tent of meeting.</VERS>\r\n      <VERS vnumber=\"7\">And thou and thy sons with thee shall keep your priesthood for everything of the altar, and for that within the veil; and ye shall serve: I give you the priesthood as a service of gift: and the stranger that cometh nigh shall be put to death.</VERS>\r\n      <VERS vnumber=\"8\">And Jehovah spake unto Aaron, And I, behold, I have given thee the charge of my heave-offerings, even all the hallowed things of the children of Israel; unto thee have I given them by reason of the anointing, and to thy sons, as a portion for ever.</VERS>\r\n      <VERS vnumber=\"9\">This shall be thine of the most holy things, [reserved] from the fire: every oblation of theirs, even every meal-offering of theirs, and every sin-offering of theirs, and every trespass-offering of theirs, which they shall render unto me, shall be most holy for thee and for thy sons.</VERS>\r\n      <VERS vnumber=\"10\">As the most holy things shalt thou eat thereof; every male shall eat thereof: it shall be holy unto thee.</VERS>\r\n      <VERS vnumber=\"11\">And this is thine: the heave-offering of their gift, even 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, as a portion for ever; every one that is clean in thy house shall eat thereof.</VERS>\r\n      <VERS vnumber=\"12\">All the best of the oil, and all the best of the vintage, and of the grain, the first-fruits of them which they give unto Jehovah, to thee have I given them.</VERS>\r\n      <VERS vnumber=\"13\">The first-ripe fruits of all that is in their land, which they bring unto Jehovah, shall be thine; every one that is clean in thy house shall eat thereof.</VERS>\r\n      <VERS vnumber=\"14\">Everything devoted in Israel shall be thine.</VERS>\r\n      <VERS vnumber=\"15\">Everything that openeth the womb, of all flesh which they offer unto Jehovah, both of man and beast shall be thine: nevertheless the first-born of man shalt thou surely redeem, and the firstling of unclean beasts shalt thou redeem.</VERS>\r\n      <VERS vnumber=\"16\">And those that are to be redeemed of them from a month old shalt thou redeem, according to thine estimation, for the money of five shekels, after the shekel of the sanctuary (the same is twenty gerahs).</VERS>\r\n      <VERS vnumber=\"17\">But 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 savor unto Jehovah.</VERS>\r\n      <VERS vnumber=\"18\">And the flesh of them shall be thine, as the wave-breast and as the right thigh, it shall be thine.</VERS>\r\n      <VERS vnumber=\"19\">All the heave-offerings of the holy things, which the children of Israel offer unto Jehovah, have I given thee, and thy sons and thy daughters with thee, as a portion for ever: it is a covenant of salt for ever before Jehovah unto thee and to thy seed with thee.</VERS>\r\n      <VERS vnumber=\"20\">And Jehovah said unto Aaron, Thou shalt have no inheritance in their land, neither shalt thou have any portion among them: I am thy portion and thine inheritance among the children of Israel.</VERS>\r\n      <VERS vnumber=\"21\">And unto the children of Levi, behold, I have given all the tithe in Israel for an inheritance, in return for their service which they serve, even the service of the tent of meeting.</VERS>\r\n      <VERS vnumber=\"22\">And henceforth the children of Israel shall not come nigh the tent of meeting, lest they bear sin, and die.</VERS>\r\n      <VERS vnumber=\"23\">But the Levites shall do the service of the tent of meeting, and they shall bear their iniquity: it shall be a statute for ever throughout your generations; and among the children of Israel they shall have no inheritance.</VERS>\r\n      <VERS vnumber=\"24\">For the tithe of the children of Israel, which they offer as a heave-offering unto Jehovah, I have given to the Levites for an inheritance: therefore I have said unto them, Among the children of Israel they shall have no inheritance.</VERS>\r\n      <VERS vnumber=\"25\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"26\">Moreover thou shalt speak unto the Levites, and say unto them, When ye take of the children of Israel the tithe which I have given you from them for your inheritance, then ye shall offer up a heave-offering of it for Jehovah, a tithe of the tithe.</VERS>\r\n      <VERS vnumber=\"27\">And your heave-offering shall be reckoned unto you, as though it were the grain of the threshing-floor, and as the fulness of the winepress.</VERS>\r\n      <VERS vnumber=\"28\">Thus ye also shall offer a heave-offering unto Jehovah of all your tithes, which ye receive of the children of Israel; and thereof ye shall give Jehovah`s heave-offering to Aaron the priest.</VERS>\r\n      <VERS vnumber=\"29\">Out of all your gifts ye shall offer every heave-offering of Jehovah, of all the best thereof, even the hallowed part thereof out of it.</VERS>\r\n      <VERS vnumber=\"30\">Therefore thou shalt say unto them, When ye heave the best thereof from it, then it shall be reckoned unto the Levites as the increase of the threshing-floor, and as the increase of the wine-press.</VERS>\r\n      <VERS vnumber=\"31\">And ye shall eat it in every place, ye and your households: for it is your reward in return for your service in the tent of meeting.</VERS>\r\n      <VERS vnumber=\"32\">And ye shall bear no sin by reason of it, when ye have heaved from it the best thereof: and ye shall not profane the holy things of the children of Israel, that ye die not.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"19\">\r\n      <VERS vnumber=\"1\">And Jehovah spake unto Moses and unto Aaron, saying,</VERS>\r\n      <VERS vnumber=\"2\">This is the statute of the law which Jehovah 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.</VERS>\r\n      <VERS vnumber=\"3\">And ye shall give her unto Eleazar the priest, and he shall bring her forth without the camp, and one shall slay her before his face:</VERS>\r\n      <VERS vnumber=\"4\">and Eleazar the priest shall take of her blood with his finger, and sprinkle her blood toward the front of the tent of meeting seven times.</VERS>\r\n      <VERS vnumber=\"5\">And one shall burn the heifer in his sight; her skin, and her flesh, and her blood, with her dung, shall he burn:</VERS>\r\n      <VERS vnumber=\"6\">and the priest shall take cedar-wood, and hyssop, and scarlet, and cast it into the midst of the burning of the heifer.</VERS>\r\n      <VERS vnumber=\"7\">Then 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.</VERS>\r\n      <VERS vnumber=\"8\">And he that burneth her shall wash his clothes in water, and bathe his flesh in water, and shall be unclean until the even.</VERS>\r\n      <VERS vnumber=\"9\">And 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 for impurity: it is a sin-offering.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">He that toucheth the dead body of any man shall be unclean seven days:</VERS>\r\n      <VERS vnumber=\"12\">the same shall purify himself therewith 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.</VERS>\r\n      <VERS vnumber=\"13\">Whosoever toucheth a dead person, the body of a man that hath died, and purifieth not himself, defileth the tabernacle of Jehovah; and that soul shall be cut off from Israel: because the water for impurity was not sprinkled upon him, he shall be unclean; his uncleanness is yet upon him.</VERS>\r\n      <VERS vnumber=\"14\">This is the law when a man dieth in a tent: every one that cometh into the tent, and every one that is in the tent, shall be unclean seven days.</VERS>\r\n      <VERS vnumber=\"15\">And every open vessel, which hath no covering bound upon it, is unclean.</VERS>\r\n      <VERS vnumber=\"16\">And whosoever in the open field toucheth one that is slain with a sword, or a dead body, or a bone of a man, or a grave, shall be unclean seven days.</VERS>\r\n      <VERS vnumber=\"17\">And for the unclean they shall take of the ashes of the burning of the sin-offering; and running water shall be put thereto in a vessel:</VERS>\r\n      <VERS vnumber=\"18\">and 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 the bone, or the slain, or the dead, or the grave:</VERS>\r\n      <VERS vnumber=\"19\">and 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 him; and he shall wash his clothes, and bathe himself in water, and shall be clean at even.</VERS>\r\n      <VERS vnumber=\"20\">But the man that shall be unclean, and shall not purify himself, that soul shall be cut off from the midst of the assembly, because he hath defiled the sanctuary of Jehovah: the water for impurity hath not been sprinkled upon him; he is unclean.</VERS>\r\n      <VERS vnumber=\"21\">And it shall be a perpetual statute unto them: and he that sprinkleth the water for impurity shall wash his clothes, and he that toucheth the water for impurity shall be unclean until even.</VERS>\r\n      <VERS vnumber=\"22\">And whatsoever the unclean person toucheth shall be unclean; and the soul that toucheth it shall be unclean until even.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"20\">\r\n      <VERS vnumber=\"1\">And the children of Israel, even the whole congregation, came into the wilderness of Zin in the first month: and the people abode in Kadesh; and Miriam died there, and was buried there.</VERS>\r\n      <VERS vnumber=\"2\">And there was no water for the congregation: and they assembled themselves together against Moses and against Aaron.</VERS>\r\n      <VERS vnumber=\"3\">And the people strove with Moses, and spake, saying, Would that we had died when our brethren died before Jehovah!</VERS>\r\n      <VERS vnumber=\"4\">And why have ye brought the assembly of Jehovah into this wilderness, that we should die there, we and our beasts?</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And Moses and Aaron went from the presence of the assembly unto the door of the tent of meeting, and fell upon their faces: and the glory of Jehovah appeared unto them.</VERS>\r\n      <VERS vnumber=\"7\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"8\">Take the rod, and assemble the congregation, thou, and Aaron thy brother, and speak ye unto the rock before their eyes, that it give forth its water; and thou shalt bring forth to them water out of the rock; so thou shalt give the congregation and their cattle drink.</VERS>\r\n      <VERS vnumber=\"9\">And Moses took the rod from before Jehovah, as he commanded him.</VERS>\r\n      <VERS vnumber=\"10\">And Moses and Aaron gathered the assembly together before the rock, and he said unto them, Hear now, ye rebels; shall we bring you forth water out of this rock?</VERS>\r\n      <VERS vnumber=\"11\">And Moses lifted up his hand, and smote the rock with his rod twice: and water came forth abundantly, and the congregation drank, and their cattle.</VERS>\r\n      <VERS vnumber=\"12\">And Jehovah said unto Moses and Aaron, Because ye believed not in me, to sanctify me in the eyes of the children of Israel, therefore ye shall not bring this assembly into the land which I have given them.</VERS>\r\n      <VERS vnumber=\"13\">These are the waters of Meribah; because the children of Israel strove with Jehovah, and he was sanctified in them.</VERS>\r\n      <VERS vnumber=\"14\">And Moses sent messengers from Kadesh unto the king of Edom, Thus saith thy brother Israel, Thou knowest all the travail that hath befallen us:</VERS>\r\n      <VERS vnumber=\"15\">how our fathers went down into Egypt, and we dwelt in Egypt a long time; and the Egyptians dealt ill with us, and our fathers:</VERS>\r\n      <VERS vnumber=\"16\">and when we cried unto Jehovah, he heard our voice, and sent an angel, and brought us forth out of Egypt: and, behold, we are in Kadesh, a city in the uttermost of thy border.</VERS>\r\n      <VERS vnumber=\"17\">Let us pass, I pray thee, through thy land: we will not pass through field or through vineyard, neither will we drink of the water of the wells: we will go along the king`s highway; we will not turn aside to the right hand nor to the left, until we have passed thy border.</VERS>\r\n      <VERS vnumber=\"18\">And Edom said unto him, Thou shalt not pass through me, lest I come out with the sword against thee.</VERS>\r\n      <VERS vnumber=\"19\">And the children of Israel said unto him, We will go up by the highway; and if we drink of thy water, I and my cattle, then will I give the price thereof: let me only, without [doing] anything [else], pass through on my feet.</VERS>\r\n      <VERS vnumber=\"20\">And he said, Thou shalt not pass through. And Edom came out against him with much people, and with a strong hand.</VERS>\r\n      <VERS vnumber=\"21\">Thus Edom refused to give Israel passage through his border: wherefore Israel turned away from him.</VERS>\r\n      <VERS vnumber=\"22\">And they journeyed from Kadesh: and the children of Israel, even the whole congregation, came unto mount Hor.</VERS>\r\n      <VERS vnumber=\"23\">And Jehovah spake unto Moses and Aaron in mount Hor, by the border of the land of Edom, saying,</VERS>\r\n      <VERS vnumber=\"24\">Aaron 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 waters of Meribah.</VERS>\r\n      <VERS vnumber=\"25\">Take Aaron and Eleazar his son, and bring them up unto mount Hor;</VERS>\r\n      <VERS vnumber=\"26\">and strip Aaron of his garments, and put them upon Eleazar his son: and Aaron shall be gathered [unto his people], and shall die there.</VERS>\r\n      <VERS vnumber=\"27\">And Moses did as Jehovah commanded: and they went up into mount Hor in the sight of all the congregation.</VERS>\r\n      <VERS vnumber=\"28\">And Moses stripped Aaron of his garments, and put them upon Eleazar his son; and Aaron died there on the top of the mount: and Moses and Eleazar came down from the mount.</VERS>\r\n      <VERS vnumber=\"29\">And when all the congregation saw that Aaron was dead, they wept for Aaron thirty days, even all the house of Israel.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"21\">\r\n      <VERS vnumber=\"1\">And the Canaanite, the king of Arad, who dwelt in the South, heard tell that Israel came by the way of Atharim; and he fought against Israel, and took some of them captive.</VERS>\r\n      <VERS vnumber=\"2\">And Israel vowed a vow unto Jehovah, and said, If thou wilt indeed deliver this people into my hand, then I will utterly destroy their cities.</VERS>\r\n      <VERS vnumber=\"3\">And Jehovah hearkened to the voice of Israel, and delivered up the Canaanites; and they utterly destroyed them and their cities: and the name of the place was called Hormah.</VERS>\r\n      <VERS vnumber=\"4\">And they journeyed from mount Hor by the way to the Red Sea, to compass the land of Edom: and the soul of the people was much discouraged because of the way.</VERS>\r\n      <VERS vnumber=\"5\">And 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, and there is no water; and our soul loatheth this light bread.</VERS>\r\n      <VERS vnumber=\"6\">And Jehovah sent fiery serpents among the people, and they bit the people; and much people of Israel died.</VERS>\r\n      <VERS vnumber=\"7\">And the people came to Moses, and said, We have sinned, because we have spoken against Jehovah, and against thee; pray unto Jehovah, that he take away the serpents from us. And Moses prayed for the people.</VERS>\r\n      <VERS vnumber=\"8\">And Jehovah said unto Moses, Make thee a fiery serpent, and set it upon a standard: and it shall come to pass, that every one that is bitten, when he seeth it, shall live.</VERS>\r\n      <VERS vnumber=\"9\">And Moses made a serpent of brass, and set it upon the standard: and it came to pass, that if a serpent had bitten any man, when he looked unto the serpent of brass, he lived.</VERS>\r\n      <VERS vnumber=\"10\">And the children of Israel journeyed, and encamped in Oboth.</VERS>\r\n      <VERS vnumber=\"11\">And they journeyed from Oboth, and encamped at Iyeabarim, in the wilderness which is before Moab, toward the sunrising.</VERS>\r\n      <VERS vnumber=\"12\">From thence they journeyed, and encamped in the valley of Zered.</VERS>\r\n      <VERS vnumber=\"13\">From thence they journeyed, and encamped on the other side of the Arnon, which is in the wilderness, that cometh out of the border of the Amorites: for the Arnon is the border of Moab, between Moab and the Amorites.</VERS>\r\n      <VERS vnumber=\"14\">Wherefore it is said in the book of the Wars of Jehovah, Vaheb in Suphah, And the valleys of the Arnon,</VERS>\r\n      <VERS vnumber=\"15\">And the slope of the valleys That inclineth toward the dwelling of Ar, And leaneth upon the border of Moab.</VERS>\r\n      <VERS vnumber=\"16\">And from thence [they journeyed] to Beer: that is the well whereof Jehovah said unto Moses, Gather the people together, and I will give them water.</VERS>\r\n      <VERS vnumber=\"17\">Then sang Israel this song: Spring up, O well; sing ye unto it:</VERS>\r\n      <VERS vnumber=\"18\">The well, which the princes digged, Which the nobles of the people delved, With the sceptre, [and] with their staves.     And from the wilderness [they journeyed] to Mattanah;</VERS>\r\n      <VERS vnumber=\"19\">and from Mattanah to Nahaliel; and from Nahaliel to Bamoth;</VERS>\r\n      <VERS vnumber=\"20\">and from Bamoth to the valley that is in the field of Moab, to the top of Pisgah, which looketh down upon the desert.</VERS>\r\n      <VERS vnumber=\"21\">And Israel sent messengers unto Sihon king of the Amorites, saying,</VERS>\r\n      <VERS vnumber=\"22\">Let me pass through thy land: we will not turn aside into field, or into vineyard; we will not drink of the water of the wells: we will go by the king`s highway, until we have passed thy border.</VERS>\r\n      <VERS vnumber=\"23\">And 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 came to Jahaz; and he fought against Israel.</VERS>\r\n      <VERS vnumber=\"24\">And Israel smote him with the edge of the sword, and possessed his land from the Arnon unto the Jabbok, even unto the children of Ammon; for the border of the children of Ammon was strong.</VERS>\r\n      <VERS vnumber=\"25\">And Israel took all these cities: and Israel dwelt in all the cities of the Amorites, in Heshbon, and in all the towns thereof.</VERS>\r\n      <VERS vnumber=\"26\">For 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 the Arnon.</VERS>\r\n      <VERS vnumber=\"27\">Wherefore they that speak in proverbs say, Come ye to Heshbon; Let the city of Sihon be built and established:</VERS>\r\n      <VERS vnumber=\"28\">For a fire is gone out of Heshbon, A flame from the city of Sihon: It hath devoured Ar of Moab, The lords of the high places of the Arnon.</VERS>\r\n      <VERS vnumber=\"29\">Woe to thee, Moab! Thou art undone, O people of Chemosh: He hath given his sons as fugitives, And his daughters into captivity, Unto Sihon king of the Amorites.</VERS>\r\n      <VERS vnumber=\"30\">We have shot at them; Heshbon is perished even unto       Dibon, And we have laid waste even unto Nophah, Which [reacheth] unto Medeba.</VERS>\r\n      <VERS vnumber=\"31\">Thus Israel dwelt in the land of the Amorites.</VERS>\r\n      <VERS vnumber=\"32\">And Moses sent to spy out Jazer; and they took the towns thereof, and drove out the Amorites that were there.</VERS>\r\n      <VERS vnumber=\"33\">And 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 battle at Edrei.</VERS>\r\n      <VERS vnumber=\"34\">And Jehovah 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, who dwelt at Heshbon.</VERS>\r\n      <VERS vnumber=\"35\">So they smote him, and his sons and all his people, until there was none left him remaining: and they possessed his land.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"22\">\r\n      <VERS vnumber=\"1\">And the children of Israel journeyed, and encamped in the plains of Moab beyond the Jordan at Jericho.</VERS>\r\n      <VERS vnumber=\"2\">And Balak the son of Zippor saw all that Israel had done to the Amorites.</VERS>\r\n      <VERS vnumber=\"3\">And Moab was sore afraid of the people, because they were many: and Moab was distressed because of the children of Israel.</VERS>\r\n      <VERS vnumber=\"4\">And Moab said unto the elders of Midian, Now will this multitude lick up all that is round about us, as the ox licketh up the grass of the field. And Balak the son of Zippor was king of Moab at that time.</VERS>\r\n      <VERS vnumber=\"5\">And he sent messengers unto Balaam the son of Beor, to Pethor, which is by the River, to 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.</VERS>\r\n      <VERS vnumber=\"6\">Come 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 know that he whom thou blessest is blessed, and he whom thou cursest is cursed.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And he said unto them, Lodge here this night, and I will bring you word again, as Jehovah shall speak unto me: and the princes of Moab abode with Balaam.</VERS>\r\n      <VERS vnumber=\"9\">And God came unto Balaam, and said, What men are these with thee?</VERS>\r\n      <VERS vnumber=\"10\">And Balaam said unto God, Balak the son of Zippor, king of Moab, hath sent unto me, [saying],</VERS>\r\n      <VERS vnumber=\"11\">Behold, the people that is come out of Egypt, it covereth the face of the earth: now, come curse me them; peradventure I shall be able to fight against them, and shall drive them out.</VERS>\r\n      <VERS vnumber=\"12\">And God said unto Balaam, Thou shalt not go with them; thou shalt not curse the people; for they are blessed.</VERS>\r\n      <VERS vnumber=\"13\">And Balaam rose up in the morning, and said unto the princes of Balak, Get you into your land; for Jehovah refuseth to give me leave to go with you.</VERS>\r\n      <VERS vnumber=\"14\">And the princes of Moab rose up, and they went unto Balak, and said, Balaam refuseth to come with us.</VERS>\r\n      <VERS vnumber=\"15\">And Balak sent yet again princes, more, and more honorable than they.</VERS>\r\n      <VERS vnumber=\"16\">And 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:</VERS>\r\n      <VERS vnumber=\"17\">for I will promote thee unto very great honor, and whatsoever thou sayest unto me I will do: come therefore, I pray thee, curse me this people.</VERS>\r\n      <VERS vnumber=\"18\">And 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 Jehovah my God, to do less or more.</VERS>\r\n      <VERS vnumber=\"19\">Now therefore, I pray you, tarry ye also here this night, that I may know what Jehovah will speak unto me more.</VERS>\r\n      <VERS vnumber=\"20\">And God came unto Balaam at night, and said unto him, If the men are come to call thee, rise up, go with them; but only the word which I speak unto thee, that shalt thou do.</VERS>\r\n      <VERS vnumber=\"21\">And Balaam rose up in the morning, and saddled his ass, and went with the princes of Moab.</VERS>\r\n      <VERS vnumber=\"22\">And God`s anger was kindled because he went; and the angel of Jehovah placed himself in the way for an adversary against him. Now he was riding upon his ass, and his two servants were with him.</VERS>\r\n      <VERS vnumber=\"23\">And the ass saw the angel of Jehovah standing in the way, with 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.</VERS>\r\n      <VERS vnumber=\"24\">Then the angel of Jehovah stood in a narrow path between the vineyards, a wall being on this side, and a wall on that side.</VERS>\r\n      <VERS vnumber=\"25\">And the ass saw the angel of Jehovah, and she thrust herself unto the wall, and crushed Balaam`s foot against the wall: and he smote her again.</VERS>\r\n      <VERS vnumber=\"26\">And the angel of Jehovah went further, and stood in a narrow place, where was no way to turn either to the right hand or to the left.</VERS>\r\n      <VERS vnumber=\"27\">And the ass saw the angel of Jehovah, and she lay down under Balaam: and Balaam`s anger was kindled, and he smote the ass with his staff.</VERS>\r\n      <VERS vnumber=\"28\">And Jehovah 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?</VERS>\r\n      <VERS vnumber=\"29\">And Balaam said unto the ass, Because thou hast mocked me, I would there were a sword in my hand, for now I had killed thee.</VERS>\r\n      <VERS vnumber=\"30\">And the ass said unto Balaam, Am not I thine ass, upon which thou hast ridden all thy life long unto this day? was I ever wont to do so unto thee? and he said, Nay.</VERS>\r\n      <VERS vnumber=\"31\">Then Jehovah opened the eyes of Balaam, and he saw the angel of Jehovah standing in the way, with his sword drawn in his hand; and he bowed his head, and fell on his face.</VERS>\r\n      <VERS vnumber=\"32\">And the angel of Jehovah said unto him, Wherefore hast thou smitten thine ass these three times? behold, I am come forth for an adversary, because thy way is perverse before me:</VERS>\r\n      <VERS vnumber=\"33\">and the ass saw me, and turned aside before me these three times: unless she had turned aside from me, surely now I had even slain thee, and saved her alive.</VERS>\r\n      <VERS vnumber=\"34\">And Balaam said unto the angel of Jehovah, 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.</VERS>\r\n      <VERS vnumber=\"35\">And the angel of Jehovah 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.</VERS>\r\n      <VERS vnumber=\"36\">And when Balak heard that Balaam was come, he went out to meet him unto the City of Moab, which is on the border of the Arnon, which is in the utmost part of the border.</VERS>\r\n      <VERS vnumber=\"37\">And 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 honor?</VERS>\r\n      <VERS vnumber=\"38\">And Balaam said unto Balak, Lo, I am come unto thee: have I now any power at all to speak anything? the word that God putteth in my mouth, that shall I speak.</VERS>\r\n      <VERS vnumber=\"39\">And Balaam went with Balak, and they came unto Kiriath-huzoth.</VERS>\r\n      <VERS vnumber=\"40\">And Balak sacrificed oxen and sheep, and sent to Balaam, and to the princes that were with him.</VERS>\r\n      <VERS vnumber=\"41\">And it came to pass in the morning, that Balak took Balaam, and brought him up into the high places of Baal; and he saw from thence the utmost part of the people.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"23\">\r\n      <VERS vnumber=\"1\">And Balaam said unto Balak, Build me here seven altars, and prepare me here seven bullocks and seven rams.</VERS>\r\n      <VERS vnumber=\"2\">And Balak did as Balaam had spoken; and Balak and Balaam offered on every altar a bullock and a ram.</VERS>\r\n      <VERS vnumber=\"3\">And Balaam said unto Balak, Stand by thy burnt-offering, and I will go: peradventure Jehovah will come to meet me; and whatsoever he showeth me I will tell thee. And he went to a bare height.</VERS>\r\n      <VERS vnumber=\"4\">And God met Balaam: and he said unto him, I have prepared the seven altars, and I have offered up a bullock and a ram on every altar.</VERS>\r\n      <VERS vnumber=\"5\">And Jehovah put a word in Balaam`s mouth, and said, Return unto Balak, and thus thou shalt speak.</VERS>\r\n      <VERS vnumber=\"6\">And he returned unto him, and, lo, he was standing by his burnt-offering, he, and all the princes of Moab.</VERS>\r\n      <VERS vnumber=\"7\">And he took up his parable, and said, From Aram hath Balak brought me, The king of Moab from the mountains of the East: Come, curse me Jacob, And come, defy Israel.</VERS>\r\n      <VERS vnumber=\"8\">How shall I curse, whom God hath not cursed? And how shall I defy, whom Jehovah hath not defied?</VERS>\r\n      <VERS vnumber=\"9\">For from the top of the rocks I see him, And from the hills I behold him: lo, it is a people that dwelleth alone, And shall not be reckoned among the nations.</VERS>\r\n      <VERS vnumber=\"10\">Who can count the dust of Jacob, Or number the fourth part of Israel? Let me die the death of the righteous, And let my last end be like his!</VERS>\r\n      <VERS vnumber=\"11\">And Balak said unto Balaam, What hast thou done unto me? I took thee to curse mine enemies, and, behold, thou hast blessed them altogether.</VERS>\r\n      <VERS vnumber=\"12\">And he answered and said, Must I not take heed to speak that which Jehovah putteth in my mouth?</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And he took him into the field of Zophim, to the top of Pisgah, and built seven altars, and offered up a bullock and a ram on every altar.</VERS>\r\n      <VERS vnumber=\"15\">And he said unto Balak, Stand here by thy burnt-offering, while I meet [Jehovah] yonder.</VERS>\r\n      <VERS vnumber=\"16\">And Jehovah met Balaam, and put a word in his mouth, and said, Return unto Balak, and thus shalt thou speak.</VERS>\r\n      <VERS vnumber=\"17\">And he came to him, and, lo, he was standing by his burnt-offering, and the princes of Moab with him. And Balak said unto him, What hath Jehovah spoken?</VERS>\r\n      <VERS vnumber=\"18\">And he took up his parable, and said, Rise up, Balak, and hear; Hearken unto me, thou son of Zippor:</VERS>\r\n      <VERS vnumber=\"19\">God is not a man, that he should lie, Neither the son of man, that he should repent: Hath he said, and will he not do it? Or hath he spoken, and will he not make it good?</VERS>\r\n      <VERS vnumber=\"20\">Behold, I have received [commandment] to bless: And he hath blessed, and I cannot reverse it.</VERS>\r\n      <VERS vnumber=\"21\">He hath not beheld iniquity in Jacob; Neither hath he seen perverseness in Israel: Jehovah his God is with him, And the shout of a king is among them.</VERS>\r\n      <VERS vnumber=\"22\">God bringeth them forth out of Egypt; He hath as it were the strength of the wild-ox.</VERS>\r\n      <VERS vnumber=\"23\">Surely there is no enchantment with Jacob; Neither is there any divination with Israel: Now shalt it be said of Jacob and of Israel, What hath God wrought!</VERS>\r\n      <VERS vnumber=\"24\">Behold, the people riseth up as a lioness, And as a lion doth he lift himself up: He shall not lie down until he eat of the prey, And drink the blood of the slain.</VERS>\r\n      <VERS vnumber=\"25\">And Balak said unto Balaam, Neither curse them at all, nor bless them at all.</VERS>\r\n      <VERS vnumber=\"26\">But Balaam answered and said unto Balak, Told not I thee, saying, All that Jehovah speaketh, that I must do?</VERS>\r\n      <VERS vnumber=\"27\">And Balak said unto Balaam, Come now, I will take thee unto another place; peradventure it will please God that thou mayest curse me them from thence.</VERS>\r\n      <VERS vnumber=\"28\">And Balak took Balaam unto the top of Peor, that looketh down upon the desert.</VERS>\r\n      <VERS vnumber=\"29\">And Balaam said unto Balak, Build me here seven altars, and prepare me here seven bullocks and seven rams.</VERS>\r\n      <VERS vnumber=\"30\">And Balak did as Balaam had said, and offered up a bullock and a ram on every altar.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"24\">\r\n      <VERS vnumber=\"1\">And when Balaam saw that it pleased Jehovah to bless Israel, he went not, as at the other times, to meet with enchantments, but he set his face toward the wilderness.</VERS>\r\n      <VERS vnumber=\"2\">And Balaam lifted up his eyes, and he saw Israel dwelling according to their tribes; and the Spirit of God came upon him.</VERS>\r\n      <VERS vnumber=\"3\">And he took up his parable, and said, Balaam the son of Beor saith, And the man whose eye was closed saith;</VERS>\r\n      <VERS vnumber=\"4\">He saith, who heareth the words of God, Who seeth the vision of the Almighty, Falling down, and having his eyes open:</VERS>\r\n      <VERS vnumber=\"5\">How goodly are thy tents, O Jacob, Thy tabernacles, O Israel!</VERS>\r\n      <VERS vnumber=\"6\">As valleys are they spread forth, As gardens by the river-side, As lign-aloes which Jehovah hath planted, As cedar-trees beside the waters.</VERS>\r\n      <VERS vnumber=\"7\">Water shall flow from his buckets, And his seed shall be in many waters, And his king shall be higher than Agag, And his kingdom shall be exalted.</VERS>\r\n      <VERS vnumber=\"8\">God bringeth him forth out of Egypt; He hath as it were the strength of the wild-ox: He shall eat up the nations his adversaries, And shall break their bones in pieces, And smite [them] through with his arrows.</VERS>\r\n      <VERS vnumber=\"9\">He couched, he lay down as a lion, And as a lioness; who shall rouse him up? Blessed be every one that blesseth thee, And cursed be every one that curseth thee.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">Therefore now flee thou to thy place: I thought to promote thee unto great honor; but, lo, Jehovah hath kept thee back from honor.</VERS>\r\n      <VERS vnumber=\"12\">And Balaam said unto Balak, Spake I not also to thy messengers that thou sentest unto me, saying,</VERS>\r\n      <VERS vnumber=\"13\">If Balak would give me his house full of silver and gold, I cannot go beyond the word of Jehovah, to do either good or bad of mine own mind; what Jehovah speaketh, that will I speak?</VERS>\r\n      <VERS vnumber=\"14\">And now, behold, I go unto my people: come, [and] I will advertise thee what this people shall do to thy people in the latter days.</VERS>\r\n      <VERS vnumber=\"15\">And he took up his parable, and said, Balaam the son of Beor saith, And the man whose eye was closed saith;</VERS>\r\n      <VERS vnumber=\"16\">He saith, who heareth the words of God, And knoweth the knowledge of the Most High, Who seeth the vision of the Almighty, Falling down, and having his eyes open:</VERS>\r\n      <VERS vnumber=\"17\">I see him, but not now; I behold him, but not nigh: There shall come forth a star out of Jacob, And a sceptre shall rise out of Israel, And shall smite through the corners of Moab, And break down all the sons of tumult.</VERS>\r\n      <VERS vnumber=\"18\">And Edom shall be a possession, Seir also shall be a possession, [who were] his enemies; While Israel doeth valiantly.</VERS>\r\n      <VERS vnumber=\"19\">And out of Jacob shall one have dominion, And shall destroy the remnant from the city.</VERS>\r\n      <VERS vnumber=\"20\">And he looked on Amalek, and took up his parable, and said, Amalek was the first of the nations; But his latter end shall come to destruction.</VERS>\r\n      <VERS vnumber=\"21\">And he looked on the Kenite, and took up his parable, and said, Strong is thy dwelling-place, And thy nest is set in the rock.</VERS>\r\n      <VERS vnumber=\"22\">Nevertheless Kain shall be wasted, Until Asshur shall carry thee away captive.</VERS>\r\n      <VERS vnumber=\"23\">And he took up his parable, and said, Alas, who shall live when God doeth this?</VERS>\r\n      <VERS vnumber=\"24\">But ships [shall come] from the coast of Kittim, And they shall afflict Asshur, and shall afflict Eber; And he also shall come to destruction.</VERS>\r\n      <VERS vnumber=\"25\">And Balaam rose up, and went and returned to his place; and Balak also went his way.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"25\">\r\n      <VERS vnumber=\"1\">And Israel abode in Shittim; and the people began to play the harlot with the daughters of Moab:</VERS>\r\n      <VERS vnumber=\"2\">for they called the people unto the sacrifices of their gods; and the people did eat, and bowed down to their gods.</VERS>\r\n      <VERS vnumber=\"3\">And Israel joined himself unto Baal-peor: and the anger of Jehovah was kindled against Israel.</VERS>\r\n      <VERS vnumber=\"4\">And Jehovah said unto Moses, Take all the chiefs of the people, and hang them up unto Jehovah before the sun, that the fierce anger of Jehovah may turn away from Israel.</VERS>\r\n      <VERS vnumber=\"5\">And Moses said unto the judges of Israel, Slay ye every one his men that have joined themselves unto Baal-peor.</VERS>\r\n      <VERS vnumber=\"6\">And, 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, while they were weeping at the door of the tent of meeting.</VERS>\r\n      <VERS vnumber=\"7\">And when Phinehas, the son of Eleazar, the son of Aaron the priest, saw it, he rose up from the midst of the congregation, and took a spear in his hand;</VERS>\r\n      <VERS vnumber=\"8\">and he went after the man of Israel into the pavilion, and thrust both of them through, the man of Israel, and the woman through her body. So the plague was stayed from the children of Israel.</VERS>\r\n      <VERS vnumber=\"9\">And those that died by the plague were twenty and four thousand.</VERS>\r\n      <VERS vnumber=\"10\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"11\">Phinehas, the son of Eleazar, the son of Aaron the priest, hath turned my wrath away from the children of Israel, in that he was jealous with my jealousy among them, so that I consumed not the children of Israel in my jealousy.</VERS>\r\n      <VERS vnumber=\"12\">Wherefore say, Behold, I give unto him my covenant of peace:</VERS>\r\n      <VERS vnumber=\"13\">and it shall be unto him, and to his seed after him, the covenant of an everlasting priesthood; because he was jealous for his God, and made atonement for the children of Israel.</VERS>\r\n      <VERS vnumber=\"14\">Now the name of the man of Israel that was slain, who was slain with the Midianitish woman, was Zimri, the son of Salu, a prince of a fathers` house among the Simeonites.</VERS>\r\n      <VERS vnumber=\"15\">And the name of the Midianitish woman that was slain was Cozbi, the daughter of Zur; he was head of the people of a fathers` house in Midian.</VERS>\r\n      <VERS vnumber=\"16\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"17\">Vex the Midianites, and smite them;</VERS>\r\n      <VERS vnumber=\"18\">for 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 the prince of Midian, their sister, who was slain on the day of the plague in the matter of Peor.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"26\">\r\n      <VERS vnumber=\"1\">And it came to pass after the plague, that Jehovah spake unto Moses and unto Eleazar the son of Aaron the priest, saying,</VERS>\r\n      <VERS vnumber=\"2\">Take the sum of all the congregation of the children of Israel, from twenty years old and upward, by their fathers` houses, all that are able to go forth to war in Israel.</VERS>\r\n      <VERS vnumber=\"3\">And Moses and Eleazar the priest spake with them in the plains of Moab by the Jordan at Jericho, saying,</VERS>\r\n      <VERS vnumber=\"4\">[Take the sum of the people], from twenty years old and upward; as Jehovah commanded Moses and the children of Israel, that came forth out of the land of Egypt.</VERS>\r\n      <VERS vnumber=\"5\">Reuben, the first-born of Israel; the sons of Reuben: [of] Hanoch, the family of the Hanochites; of Pallu, the family of the Palluites;</VERS>\r\n      <VERS vnumber=\"6\">of Hezron, the family of the Hezronites; of Carmi, the family of the Carmites.</VERS>\r\n      <VERS vnumber=\"7\">These are the families of the Reubenites; and they that were numbered of them were forty and three thousand and seven hundred and thirty.</VERS>\r\n      <VERS vnumber=\"8\">And the sons of Pallu: Eliab.</VERS>\r\n      <VERS vnumber=\"9\">And the sons of Eliab: Nemuel, and Dathan, and Abiram. These are that Dathan and Abiram, who were called of the congregation, who strove against Moses and against Aaron in the company of Korah, when they strove against Jehovah,</VERS>\r\n      <VERS vnumber=\"10\">and the earth opened its 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.</VERS>\r\n      <VERS vnumber=\"11\">Notwithstanding, the sons of Korah died not.</VERS>\r\n      <VERS vnumber=\"12\">The 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;</VERS>\r\n      <VERS vnumber=\"13\">of Zerah, the family of the Zerahites; of Shaul, the family of the Shaulites.</VERS>\r\n      <VERS vnumber=\"14\">These are the families of the Simeonites, twenty and two thousand and two hundred.</VERS>\r\n      <VERS vnumber=\"15\">The sons 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;</VERS>\r\n      <VERS vnumber=\"16\">of Ozni, the family of the Oznites; of Eri, the family of the Erites;</VERS>\r\n      <VERS vnumber=\"17\">of Arod, the family of the Arodites; of Areli, the family of the Arelites.</VERS>\r\n      <VERS vnumber=\"18\">These are the families of the sons of Gad according to those that were numbered of them, forty thousand and five hundred.</VERS>\r\n      <VERS vnumber=\"19\">The sons of Judah: Er and Onan; and Er and Onan died in the land of Canaan.</VERS>\r\n      <VERS vnumber=\"20\">And the sons of Judah after their families were: of Shelah, the family of the Shelanites; of Perez, the family of the Perezites; of Zerah, the family of the Zerahites.</VERS>\r\n      <VERS vnumber=\"21\">And the sons of Perez were: of Hezron, the family of the Hezronites; of Hamul, the family of the Hamulites.</VERS>\r\n      <VERS vnumber=\"22\">These are the families of Judah according to those that were numbered of them, threescore and sixteen thousand and five hundred.</VERS>\r\n      <VERS vnumber=\"23\">The sons of Issachar after their families: [of] Tola, the family of the Tolaites; of Puvah, the family of the Punites;</VERS>\r\n      <VERS vnumber=\"24\">of Jashub, the family of the Jashubites; of Shimron, the family of the Shimronites.</VERS>\r\n      <VERS vnumber=\"25\">These are the families of Issachar according to those that were numbered of them, threescore and four thousand and three hundred.</VERS>\r\n      <VERS vnumber=\"26\">The sons of Zebulun after their families: of Sered, the family of the Seredites; of Elon, the family of the Elonites; of Jahleel, the family of the Jahleelites.</VERS>\r\n      <VERS vnumber=\"27\">These are the families of the Zebulunites according to those that were numbered of them, threescore thousand and five hundred.</VERS>\r\n      <VERS vnumber=\"28\">The sons of Joseph after their families: Manasseh and Ephraim.</VERS>\r\n      <VERS vnumber=\"29\">The sons of Manasseh: of Machir, the family of the Machirites; and Machir begat Gilead; of Gilead, the family of the Gileadites.</VERS>\r\n      <VERS vnumber=\"30\">These are the sons of Gilead: [of] Iezer, the family of the Iezerites; of Helek, the family of the Helekites;</VERS>\r\n      <VERS vnumber=\"31\">and [of] Asriel, the family of the Asrielites; and [of] Shechem, the family of the Shechemites;</VERS>\r\n      <VERS vnumber=\"32\">and [of] Shemida, the family of the Shemidaites; and [of] Hepher, the family of the Hepherites.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">These are the families of Manasseh; and they that were numbered of them were fifty and two thousand and seven hundred.</VERS>\r\n      <VERS vnumber=\"35\">These are the sons of Ephraim after their families: of Shuthelah, the family of the Shuthelahites; of Becher, the family of the Becherites; of Tahan, the family of the Tahanites.</VERS>\r\n      <VERS vnumber=\"36\">And these are the sons of Shuthelah: of Eran, the family of the Eranites.</VERS>\r\n      <VERS vnumber=\"37\">These 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.</VERS>\r\n      <VERS vnumber=\"38\">The 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;</VERS>\r\n      <VERS vnumber=\"39\">of Shephupham, the family of the Shuphamites; of Hupham, the family of the Huphamites.</VERS>\r\n      <VERS vnumber=\"40\">And the sons of Bela were Ard and Naaman: [of Ard], the family of the Ardites; of Naaman, the family of the Naamites.</VERS>\r\n      <VERS vnumber=\"41\">These are the sons of Benjamin after their families; and they that were numbered of them were forty and five thousand and six hundred.</VERS>\r\n      <VERS vnumber=\"42\">These are the sons of Dan after their families: of Shuham, the family of the Shuhamites. These are the families of Dan after their families.</VERS>\r\n      <VERS vnumber=\"43\">All the families of the Shuhamites, according to those that were numbered of them, were threescore and four thousand and four hundred.</VERS>\r\n      <VERS vnumber=\"44\">The sons of Asher after their families: of Imnah, the family of the Imnites; of Ishvi, the family of the Ishvites; of Beriah, the family of the Berites.</VERS>\r\n      <VERS vnumber=\"45\">Of the sons of Beriah: of Heber, the family of the Heberites; of Malchiel, the family of the Malchielites.</VERS>\r\n      <VERS vnumber=\"46\">And the name of the daughter of Asher was Serah.</VERS>\r\n      <VERS vnumber=\"47\">These are the families of the sons of Asher according to those that were numbered of them, fifty and three thousand and four hundred.</VERS>\r\n      <VERS vnumber=\"48\">The sons of Naphtali after their families: of Jahzeel, the family of the Jahzeelites; of Guni, the family of the Gunites;</VERS>\r\n      <VERS vnumber=\"49\">of Jezer, the family of the Jezerites; of Shillem, the family of the Shillemites.</VERS>\r\n      <VERS vnumber=\"50\">These are the families of Naphtali according to their families; and they that were numbered of them were forty and five thousand and four hundred.</VERS>\r\n      <VERS vnumber=\"51\">These are they that were numbered of the children of Israel, six hundred thousand and a thousand seven hundred and thirty.</VERS>\r\n      <VERS vnumber=\"52\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"53\">Unto these the land shall be divided for an inheritance according to the number of names.</VERS>\r\n      <VERS vnumber=\"54\">To the more thou shalt give the more inheritance, and to the fewer thou shalt give the less inheritance: to every one according to those that were numbered of him shall his inheritance be given.</VERS>\r\n      <VERS vnumber=\"55\">Notwithstanding, the land shall be divided by lot: according to the names of the tribes of their fathers they shall inherit.</VERS>\r\n      <VERS vnumber=\"56\">According to the lot shall their inheritance be divided between the more and the fewer.</VERS>\r\n      <VERS vnumber=\"57\">And 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.</VERS>\r\n      <VERS vnumber=\"58\">These are the families of Levi: the family of the Libnites, the family of the Hebronites, the family of the Mahlites, the family of the Mushites, the family of the Korahites. And Kohath begat Amram.</VERS>\r\n      <VERS vnumber=\"59\">And the name of Amram`s wife was Jochebed, the daughter of Levi, who was born to Levi in Egypt: and she bare unto Amram Aaron and Moses, and Miriam their sister.</VERS>\r\n      <VERS vnumber=\"60\">And unto Aaron were born Nadab and Abihu, Eleazar and Ithamar.</VERS>\r\n      <VERS vnumber=\"61\">And Nadab and Abihu died, when they offered strange fire before Jehovah.</VERS>\r\n      <VERS vnumber=\"62\">And they that were numbered of them were twenty and three thousand, every male 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.</VERS>\r\n      <VERS vnumber=\"63\">These are they that were numbered by Moses and Eleazar the priest, who numbered the children of Israel in the plains of Moab by the Jordan at Jericho.</VERS>\r\n      <VERS vnumber=\"64\">But among these there was not a man of them that were numbered by Moses and Aaron the priest, who numbered the children of Israel in the wilderness of Sinai.</VERS>\r\n      <VERS vnumber=\"65\">For Jehovah 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"27\">\r\n      <VERS vnumber=\"1\">Then drew near 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.</VERS>\r\n      <VERS vnumber=\"2\">And they stood before Moses, and before Eleazar the priest, and before the princes and all the congregation, at the door of the tent of meeting, saying,</VERS>\r\n      <VERS vnumber=\"3\">Our father died in the wilderness, and he was not among the company of them that gathered themselves together against Jehovah in the company of Korah: but he died in his own sin; and he had no sons.</VERS>\r\n      <VERS vnumber=\"4\">Why should the name of our father be taken away from among his family, because he had no son? Give unto us a possession among the brethren of our father.</VERS>\r\n      <VERS vnumber=\"5\">And Moses brought their cause before Jehovah.</VERS>\r\n      <VERS vnumber=\"6\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"7\">The 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And if he have no daughter, then ye shall give his inheritance unto his brethren.</VERS>\r\n      <VERS vnumber=\"10\">And if he have no brethren, then ye shall give his inheritance unto his father`s brethren.</VERS>\r\n      <VERS vnumber=\"11\">And 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 [and] ordinance, as Jehovah commanded Moses.</VERS>\r\n      <VERS vnumber=\"12\">And Jehovah said unto Moses, Get thee up into this mountain of Abarim, and behold the land which I have given unto the children of Israel.</VERS>\r\n      <VERS vnumber=\"13\">And when thou hast seen it, thou also shalt be gathered unto thy people, as Aaron thy brother was gathered;</VERS>\r\n      <VERS vnumber=\"14\">because ye rebelled against my word in the wilderness of Zin, in the strife of the congregation, to sanctify me at the waters before their eyes. (These are the waters of Meribah of Kadesh in the wilderness of Zin.)</VERS>\r\n      <VERS vnumber=\"15\">And Moses spake unto Jehovah, saying,</VERS>\r\n      <VERS vnumber=\"16\">Let Jehovah, the God of the spirits of all flesh, appoint a man over the congregation,</VERS>\r\n      <VERS vnumber=\"17\">who may go out before them, and who may come in before them, and who may lead them out, and who may bring them in; that the congregation of Jehovah be not as sheep which have no shepherd.</VERS>\r\n      <VERS vnumber=\"18\">And Jehovah said unto Moses, Take thee Joshua the son of Nun, a man in whom is the Spirit, and lay thy hand upon him;</VERS>\r\n      <VERS vnumber=\"19\">and set him before Eleazar the priest, and before all the congregation; and give him a charge in their sight.</VERS>\r\n      <VERS vnumber=\"20\">And thou shalt put of thine honor upon him, that all the congregation of the children of Israel may obey.</VERS>\r\n      <VERS vnumber=\"21\">And he shall stand before Eleazar the priest, who shall inquire for him by the judgment of the Urim before Jehovah: 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.</VERS>\r\n      <VERS vnumber=\"22\">And Moses did as Jehovah commanded him; and he took Joshua, and set him before Eleazar the priest, and before all the congregation:</VERS>\r\n      <VERS vnumber=\"23\">and he laid his hands upon him, and gave him a charge, as Jehovah spake by Moses.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"28\">\r\n      <VERS vnumber=\"1\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">Command the children of Israel, and say unto them, My oblation, my food for my offerings made by fire, of a sweet savor unto me, shall ye observe to offer unto me in their due season.</VERS>\r\n      <VERS vnumber=\"3\">And thou shalt say unto them, This is the offering made by fire which ye shall offer unto Jehovah: he-lambs a year old without blemish, two day by day, for a continual burnt-offering.</VERS>\r\n      <VERS vnumber=\"4\">The one lamb shalt thou offer in the morning, and the other lamb shalt thou offer at even;</VERS>\r\n      <VERS vnumber=\"5\">and the tenth part of an ephah of fine flour for a meal-offering, mingled with the fourth part of a hin of beaten oil.</VERS>\r\n      <VERS vnumber=\"6\">It is a continual burnt-offering, which was ordained in mount Sinai for a sweet savor, an offering made by fire unto Jehovah.</VERS>\r\n      <VERS vnumber=\"7\">And the drink-offering thereof shall be the fourth part of a hin for the one lamb: in the holy place shalt thou pour out a drink-offering of strong drink unto Jehovah.</VERS>\r\n      <VERS vnumber=\"8\">And the other lamb shalt thou offer at even: as the meal-offering of the morning, and as the drink-offering thereof, thou shalt offer it, an offering made by fire, of a sweet savor unto Jehovah.</VERS>\r\n      <VERS vnumber=\"9\">And on the sabbath day two he-lambs a year old without blemish, and two tenth parts [of an ephah] of fine flour for a meal-offering, mingled with oil, and the drink-offering thereof:</VERS>\r\n      <VERS vnumber=\"10\">this is the burnt-offering of every sabbath, besides the continual burnt-offering, and the drink-offering thereof.</VERS>\r\n      <VERS vnumber=\"11\">And in the beginnings of your months ye shall offer a burnt-offering unto Jehovah: two young bullocks, and one ram, seven he-lambs a year old without blemish;</VERS>\r\n      <VERS vnumber=\"12\">and three tenth parts [of an ephah] of fine flour for a meal-offering, mingled with oil, for each bullock; and two tenth parts of fine flour for a meal-offering, mingled with oil, for the one ram;</VERS>\r\n      <VERS vnumber=\"13\">and a tenth part of fine flour mingled with oil for a meal-offering unto every lamb; for a burnt-offering of a sweet savor, an offering made by fire unto Jehovah.</VERS>\r\n      <VERS vnumber=\"14\">And their drink-offerings shall be half a hin of wine for a bullock, and the third part of a hin for the ram, and the fourth part of a hin for a lamb: this is the burnt-offering of every month throughout the months of the year.</VERS>\r\n      <VERS vnumber=\"15\">And one he-goat for a sin-offering unto Jehovah; it shall be offered besides the continual burnt-offering, and the drink-offering thereof.</VERS>\r\n      <VERS vnumber=\"16\">And in the first month, on the fourteenth day of the month, is Jehovah`s passover.</VERS>\r\n      <VERS vnumber=\"17\">And on the fifteenth day of this month shall be a feast: seven days shall unleavened bread be eaten.</VERS>\r\n      <VERS vnumber=\"18\">In the first day shall be a holy convocation: ye shall do no servile work;</VERS>\r\n      <VERS vnumber=\"19\">but ye shall offer an offering made by fire, a burnt-offering unto Jehovah: two young bullocks, and one ram, and seven he-lambs a year old; they shall be unto you without blemish;</VERS>\r\n      <VERS vnumber=\"20\">and their meal-offering, fine flour mingled with oil: three tenth parts shall ye offer for a bullock, and two tenth parts for the ram;</VERS>\r\n      <VERS vnumber=\"21\">a tenth part shalt thou offer for every lamb of the seven lambs;</VERS>\r\n      <VERS vnumber=\"22\">and one he-goat for a sin-offering, to make atonement for you.</VERS>\r\n      <VERS vnumber=\"23\">Ye shall offer these besides the burnt-offering of the morning, which is for a continual burnt-offering.</VERS>\r\n      <VERS vnumber=\"24\">After this manner ye shall offer daily, for seven days, the food of the offering made by fire, of a sweet savor unto Jehovah: it shall be offered besides the continual burnt-offering, and the drink-offering thereof.</VERS>\r\n      <VERS vnumber=\"25\">And on the seventh day ye shall have a holy convocation: ye shall do no servile work.</VERS>\r\n      <VERS vnumber=\"26\">Also in the day of the first-fruits, when ye offer a new meal-offering unto Jehovah in your [feast of] weeks, ye shall have a holy convocation; ye shall do no servile work;</VERS>\r\n      <VERS vnumber=\"27\">but ye shall offer a burnt-offering for a sweet savor unto Jehovah: two young bullocks, one ram, seven he-lambs a year old;</VERS>\r\n      <VERS vnumber=\"28\">and their meal-offering, fine flour mingled with oil, three tenth parts for each bullock, two tenth parts for the one ram,</VERS>\r\n      <VERS vnumber=\"29\">a tenth part for every lamb of the seven lambs;</VERS>\r\n      <VERS vnumber=\"30\">one he-goat, to make atonement for you.</VERS>\r\n      <VERS vnumber=\"31\">Besides the continual burnt-offering, and the meal-offering thereof, ye shall offer them (they shall be unto you without blemish), and their drink-offerings.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"29\">\r\n      <VERS vnumber=\"1\">And in the seventh month, on the first day of the month, ye shall have a holy convocation; ye shall do no servile work: it is a day of blowing of trumpets unto you.</VERS>\r\n      <VERS vnumber=\"2\">And ye shall offer a burnt-offering for a sweet savor unto Jehovah: one young bullock, one ram, seven he-lambs a year old without blemish;</VERS>\r\n      <VERS vnumber=\"3\">and their meal-offering, fine flour mingled with oil, three tenth parts for the bullock, two tenth parts for the ram,</VERS>\r\n      <VERS vnumber=\"4\">and one tenth part for every lamb of the seven lambs;</VERS>\r\n      <VERS vnumber=\"5\">and one he-goat for a sin-offering, to make atonement for you;</VERS>\r\n      <VERS vnumber=\"6\">besides the burnt-offering of the new moon, and the meal-offering thereof, and the continual burnt-offering and the meal-offering thereof, and their drink-offerings, according unto their ordinance, for a sweet savor, an offering made by fire unto Jehovah.</VERS>\r\n      <VERS vnumber=\"7\">And on the tenth day of this seventh month ye shall have a holy convocation; and ye shall afflict your souls: ye shall do no manner of work;</VERS>\r\n      <VERS vnumber=\"8\">but ye shall offer a burnt-offering unto Jehovah for a sweet savor: one young bullock, one ram, seven he-lambs a year old; they shall be unto you without blemish;</VERS>\r\n      <VERS vnumber=\"9\">and their meal-offering, fine flour mingled with oil, three tenth parts for the bullock, two tenth parts for the one ram,</VERS>\r\n      <VERS vnumber=\"10\">a tenth part for every lamb of the seven lambs:</VERS>\r\n      <VERS vnumber=\"11\">one he-goat for a sin-offering; besides the sin-offering of atonement, and the continual burnt-offering, and the meal-offering thereof, and their drink-offerings.</VERS>\r\n      <VERS vnumber=\"12\">And on the fifteenth day of the seventh month ye shall have a holy convocation; ye shall do no servile work, and ye shall keep a feast unto Jehovah seven days:</VERS>\r\n      <VERS vnumber=\"13\">and ye shall offer a burnt-offering, an offering made by fire, of a sweet savor unto Jehovah; thirteen young bullocks, two rams, fourteen he-lambs a year old; they shall be without blemish;</VERS>\r\n      <VERS vnumber=\"14\">and their meal-offering, fine flour mingled with oil, three tenth parts for every bullock of the thirteen bullocks, two tenth parts for each ram of the two rams,</VERS>\r\n      <VERS vnumber=\"15\">and a tenth part for every lamb of the fourteen lambs;</VERS>\r\n      <VERS vnumber=\"16\">and one he-goat for a sin-offering, besides the continual burnt-offering, the meal-offering thereof, and the drink-offering thereof.</VERS>\r\n      <VERS vnumber=\"17\">And on the second day [ye shall offer] twelve young bullocks, two rams, fourteen he-lambs a year old without blemish;</VERS>\r\n      <VERS vnumber=\"18\">and their meal-offering and their drink-offerings for the bullocks, for the rams, and for the lambs, according to their number, after the ordinance;</VERS>\r\n      <VERS vnumber=\"19\">and one he-goat for a sin-offering; besides the continual burnt-offering, and the meal-offering thereof, and their drink-offerings.</VERS>\r\n      <VERS vnumber=\"20\">And on the third day eleven bullocks, two rams, fourteen he-lambs a year old without blemish;</VERS>\r\n      <VERS vnumber=\"21\">and their meal-offering and their drink-offerings for the bullocks, for the rams, and for the lambs, according to their number, after the ordinance;</VERS>\r\n      <VERS vnumber=\"22\">and one he-goat for a sin-offering; besides the continual burnt-offering, and the meal-offering thereof, and the drink-offering thereof.</VERS>\r\n      <VERS vnumber=\"23\">And on the fourth day ten bullocks, two rams, fourteen he-lambs a year old without blemish;</VERS>\r\n      <VERS vnumber=\"24\">their meal-offering and their drink-offerings for the bullocks, for the rams, and for the lambs, according to their number, after the ordinance;</VERS>\r\n      <VERS vnumber=\"25\">and one he-goat for a sin-offering; besides the continual burnt-offering, the meal-offering thereof, and the drink-offering thereof.</VERS>\r\n      <VERS vnumber=\"26\">And on the fifth day nine bullocks, two rams, fourteen he-lambs a year old without blemish;</VERS>\r\n      <VERS vnumber=\"27\">and their meal-offering and their drink-offerings for the bullocks, for the rams, and for the lambs, according to their number, after the ordinance;</VERS>\r\n      <VERS vnumber=\"28\">and one he-goat for a sin-offering, besides the continual burnt-offering, and the meal-offering thereof, and the drink-offering thereof.</VERS>\r\n      <VERS vnumber=\"29\">And on the sixth day eight bullocks, two rams, fourteen he-lambs a year old without blemish;</VERS>\r\n      <VERS vnumber=\"30\">and their meal-offering and their drink-offerings for the bullocks, for the rams, and for the lambs, according to their number, after the ordinance;</VERS>\r\n      <VERS vnumber=\"31\">and one he-goat for a sin-offering; besides the continual burnt-offering, the meal-offering thereof, and the drink-offerings thereof.</VERS>\r\n      <VERS vnumber=\"32\">And on the seventh day seven bullocks, two rams, fourteen he-lambs a year old without blemish;</VERS>\r\n      <VERS vnumber=\"33\">and their meal-offering and their drink-offerings for the bullocks, for the rams, and for the lambs, according to their number, after the ordinance;</VERS>\r\n      <VERS vnumber=\"34\">and one he-goat for a sin-offering; besides the continual burnt-offering, the meal-offering thereof, and the drink-offering thereof.</VERS>\r\n      <VERS vnumber=\"35\">On the eighth day ye shall have a solemn assembly: ye shall do no servile work;</VERS>\r\n      <VERS vnumber=\"36\">but ye shall offer a burnt-offering, an offering made by fire, of a sweet savor unto Jehovah: one bullock, one ram, seven he-lambs a year old without blemish;</VERS>\r\n      <VERS vnumber=\"37\">their meal-offering and their drink-offerings for the bullock, for the ram, and for the lambs, shall be according to their number, after the ordinance:</VERS>\r\n      <VERS vnumber=\"38\">and one he-goat for a sin-offering, besides the continual burnt-offering, and the meal-offering thereof, and the drink-offering thereof.</VERS>\r\n      <VERS vnumber=\"39\">These ye shall offer unto Jehovah in your set feasts, besides your vows, and your freewill-offerings, for your burnt-offerings, and for your meal-offerings, and for your drink-offerings, and for your peace-offerings.</VERS>\r\n      <VERS vnumber=\"40\">And Moses told the children of Israel according to all that Jehovah commanded Moses.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"30\">\r\n      <VERS vnumber=\"1\">And Moses spake unto the heads of the tribes of the children of Israel, saying, This is the thing which Jehovah hath commanded.</VERS>\r\n      <VERS vnumber=\"2\">When a man voweth a vow unto Jehovah, or sweareth 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.</VERS>\r\n      <VERS vnumber=\"3\">Also when a woman voweth a vow unto Jehovah, and bindeth herself by a bond, being in her father`s house, in her youth,</VERS>\r\n      <VERS vnumber=\"4\">and her father heareth her vow, and her bond wherewith she hath bound her soul, and her father holdeth his peace at her; then all her vows shall stand, and every bond wherewith she hath bound her soul shall stand.</VERS>\r\n      <VERS vnumber=\"5\">But if her father disallow her in the day that he heareth, none of her vows, or of her bonds wherewith she hath bound her soul, shall stand: and Jehovah will forgive her, because her father disallowed her.</VERS>\r\n      <VERS vnumber=\"6\">And if she be [married] to a husband, while her vows are upon her, or the rash utterance of her lips, wherewith she hath bound her soul,</VERS>\r\n      <VERS vnumber=\"7\">and her husband hear it, and hold his peace at her in the day that he heareth it; then her vows shall stand, and her bonds wherewith she hath bound her soul shall stand.</VERS>\r\n      <VERS vnumber=\"8\">But if her husband disallow her in the day that he heareth it, then he shall make void her vow which is upon her, and the rash utterance of her lips, wherewith she hath bound her soul: and Jehovah will forgive her.</VERS>\r\n      <VERS vnumber=\"9\">But the vow of a widow, or of her that is divorced, [even] everything wherewith she hath bound her soul, shall stand against her.</VERS>\r\n      <VERS vnumber=\"10\">And if she vowed in her husband`s house, or bound her soul by a bond with an oath,</VERS>\r\n      <VERS vnumber=\"11\">and 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.</VERS>\r\n      <VERS vnumber=\"12\">But if her husband made them null and void in the day that 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 Jehovah will forgive her.</VERS>\r\n      <VERS vnumber=\"13\">Every vow, and every binding oath to afflict the soul, her husband may establish it, or her husband may make it void.</VERS>\r\n      <VERS vnumber=\"14\">But 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 hath established them, because he held his peace at her in the day that he heard them.</VERS>\r\n      <VERS vnumber=\"15\">But if he shall make them null and void after that he hath heard them, then he shall bear her iniquity.</VERS>\r\n      <VERS vnumber=\"16\">These are the statutes, which Jehovah commanded Moses, between a man and his wife, between a father and his daughter, being in her youth, in her father`s house.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"31\">\r\n      <VERS vnumber=\"1\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">Avenge the children of Israel of the Midianites: afterward shalt thou be gathered unto thy people.</VERS>\r\n      <VERS vnumber=\"3\">And Moses spake unto the people, saying, Arm ye men from among you for the war, that they may go against Midian, to execute Jehovah`s vengeance on Midian.</VERS>\r\n      <VERS vnumber=\"4\">Of every tribe a thousand, throughout all the tribes of Israel, shall ye send to the war.</VERS>\r\n      <VERS vnumber=\"5\">So there were delivered, out of the thousands of Israel, a thousand of every tribe, twelve thousand armed for war.</VERS>\r\n      <VERS vnumber=\"6\">And Moses sent them, a thousand of every tribe, to the war, them and Phinehas the son of Eleazar the priest, to the war, with the vessels of the sanctuary and the trumpets for the alarm in his hand.</VERS>\r\n      <VERS vnumber=\"7\">And they warred against Midian, as Jehovah commanded Moses; and they slew every male.</VERS>\r\n      <VERS vnumber=\"8\">And they slew the kings of Midian with the rest of their slain: Evi, and Rekem, and Zur, and Hur, and Reba, the five kings of Midian: Balaam also the son of Beor they slew with the sword.</VERS>\r\n      <VERS vnumber=\"9\">And the children of Israel took captive the women of Midian and their little ones; and all their cattle, and all their flocks, and all their goods, they took for a prey.</VERS>\r\n      <VERS vnumber=\"10\">And all their cities in the places wherein they dwelt, and all their encampments, they burnt with fire.</VERS>\r\n      <VERS vnumber=\"11\">And they took all the spoil, and all the prey, both of man and of beast.</VERS>\r\n      <VERS vnumber=\"12\">And they brought the captives, and the prey, and the spoil, unto Moses, and unto Eleazar the priest, and unto the congregation of the children of Israel, unto the camp at the plains of Moab, which are by the Jordan at Jericho.</VERS>\r\n      <VERS vnumber=\"13\">And Moses, and Eleazar the priest, and all the princes of the congregation, went forth to meet them without the camp.</VERS>\r\n      <VERS vnumber=\"14\">And Moses was wroth with the officers of the host, the captains of thousands and the captains of hundreds, who came from the service of the war.</VERS>\r\n      <VERS vnumber=\"15\">And Moses said unto them, Have ye saved all the women alive?</VERS>\r\n      <VERS vnumber=\"16\">Behold, these caused the children of Israel, through the counsel of Balaam, to commit trespass against Jehovah in the matter of Peor, and so the plague was among the congregation of Jehovah.</VERS>\r\n      <VERS vnumber=\"17\">Now therefore kill every male among the little ones, and kill every woman that hath known man by lying with him.</VERS>\r\n      <VERS vnumber=\"18\">But all the women-children, that have not known man by lying with him, keep alive for yourselves.</VERS>\r\n      <VERS vnumber=\"19\">And encamp ye without the camp seven days: whosoever hath killed any person, and whosoever hath touched any slain, purify yourselves on the third day and on the seventh day, ye and your captives.</VERS>\r\n      <VERS vnumber=\"20\">And as to every garment, and all that is made of skin, and all work of goats` [hair], and all things made of wood, ye shall purify yourselves.</VERS>\r\n      <VERS vnumber=\"21\">And Eleazar the priest said unto the men of war that went to the battle, This is the statute of the law which Jehovah hath commanded Moses:</VERS>\r\n      <VERS vnumber=\"22\">howbeit the gold, and the silver, the brass, the iron, the tin, and the lead,</VERS>\r\n      <VERS vnumber=\"23\">everything that may abide the fire, ye shall make to go through the fire, and it shall be clean; nevertheless it shall be purified with the water for impurity: and all that abideth not the fire ye shall make to go through the water.</VERS>\r\n      <VERS vnumber=\"24\">And ye shall wash your clothes on the seventh day, and ye shall be clean; and afterward ye shall come into the camp.</VERS>\r\n      <VERS vnumber=\"25\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"26\">Take the sum of the prey that was taken, both of man and of beast, thou, and Eleazar the priest, and the heads of the fathers` [houses] of the congregation;</VERS>\r\n      <VERS vnumber=\"27\">and divide the prey into two parts: between the men skilled in war, that went out to battle, and all the congregation.</VERS>\r\n      <VERS vnumber=\"28\">And levy a tribute unto Jehovah of the men of war that went out to battle: one soul of five hundred, [both] of the persons, and of the oxen, and of the asses, and of the flocks:</VERS>\r\n      <VERS vnumber=\"29\">take it of their half, and give it unto Eleazar the priest, for Jehovah`s heave-offering.</VERS>\r\n      <VERS vnumber=\"30\">And of the children of Israel`s half, thou shalt take one drawn out of every fifty, of the persons, of the oxen, of the asses, and of the flocks, [even] of all the cattle, and give them unto the Levites, that keep the charge of the tabernacle of Jehovah.</VERS>\r\n      <VERS vnumber=\"31\">And Moses and Eleazar the priest did as Jehovah commanded Moses.</VERS>\r\n      <VERS vnumber=\"32\">Now the prey, over and above the booty which the men of war took, was six hundred thousand and seventy thousand and five thousand sheep,</VERS>\r\n      <VERS vnumber=\"33\">and threescore and twelve thousand oxen,</VERS>\r\n      <VERS vnumber=\"34\">and threescore and one thousand asses,</VERS>\r\n      <VERS vnumber=\"35\">and thirty and two thousand persons in all, of the women that had not known man by lying with him.</VERS>\r\n      <VERS vnumber=\"36\">And the half, which was the portion of them that went out to war, was in number three hundred thousand and thirty thousand and seven thousand and five hundred sheep:</VERS>\r\n      <VERS vnumber=\"37\">and Jehovah`s tribute of the sheep was six hundred and threescore and fifteen.</VERS>\r\n      <VERS vnumber=\"38\">And the oxen were thirty and six thousand; of which Jehovah`s tribute was threescore and twelve.</VERS>\r\n      <VERS vnumber=\"39\">And the asses were thirty thousand and five hundred; of which Jehovah`s tribute was threescore and one.</VERS>\r\n      <VERS vnumber=\"40\">And the persons were sixteen thousand; of whom Jehovah`s tribute was thirty and two persons.</VERS>\r\n      <VERS vnumber=\"41\">And Moses gave the tribute, which was Jehovah`s heave-offering, unto Eleazar the priest, as Jehovah commanded Moses.</VERS>\r\n      <VERS vnumber=\"42\">And of the children of Israel`s half, which Moses divided off from the men that warred</VERS>\r\n      <VERS vnumber=\"43\">(now the congregation`s half was three hundred thousand and thirty thousand, seven thousand and five hundred sheep,</VERS>\r\n      <VERS vnumber=\"44\">and thirty and six thousand oxen,</VERS>\r\n      <VERS vnumber=\"45\">and thirty thousand and five hundred asses,</VERS>\r\n      <VERS vnumber=\"46\">and sixteen thousand persons),</VERS>\r\n      <VERS vnumber=\"47\">even of the children of Israel`s half, Moses took one drawn out of every fifty, both of man and of beast, and gave them unto the Levites, that kept the charge of the tabernacle of Jehovah; as Jehovah commanded Moses.</VERS>\r\n      <VERS vnumber=\"48\">And the officers that were over the thousands of the host, the captains of thousands, and the captains of hundreds, came near unto Moses;</VERS>\r\n      <VERS vnumber=\"49\">and they said unto Moses, Thy servants have taken the sum of the men of war that are under our charge, and there lacketh not one man of us.</VERS>\r\n      <VERS vnumber=\"50\">And we have brought Jehovah`s oblation, what every man hath gotten, of jewels of gold, ankle-chains, and bracelets, signet-rings, ear-rings, and armlets, to make atonement for our souls before Jehovah.</VERS>\r\n      <VERS vnumber=\"51\">And Moses and Eleazar the priest took the gold of them, even all wrought jewels.</VERS>\r\n      <VERS vnumber=\"52\">And all the gold of the heave-offering that they offered up to Jehovah, of the captains of thousands, and of the captains of hundreds, was sixteen thousand seven hundred and fifty shekels.</VERS>\r\n      <VERS vnumber=\"53\">([For] the men of war had taken booty, every man for himself.)</VERS>\r\n      <VERS vnumber=\"54\">And Moses and Eleazar the priest took the gold of the captains of thousands and of hundreds, and brought it into the tent of meeting, for a memorial for the children of Israel before Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"32\">\r\n      <VERS vnumber=\"1\">Now 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;</VERS>\r\n      <VERS vnumber=\"2\">the 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,</VERS>\r\n      <VERS vnumber=\"3\">Ataroth, and Dibon, and Jazer, and Nimrah, and Heshbon, and Elealeh, and Sebam, and Nebo, and Beon,</VERS>\r\n      <VERS vnumber=\"4\">the land which Jehovah smote before the congregation of Israel, is a land for cattle; and thy servants have cattle.</VERS>\r\n      <VERS vnumber=\"5\">And they said, If we have found favor in thy sight, let this land be given unto thy servants for a possession; bring us not over the Jordan.</VERS>\r\n      <VERS vnumber=\"6\">And Moses said unto the children of Gad, and to the children of Reuben, Shall your brethren go to the war, and shall ye sit here?</VERS>\r\n      <VERS vnumber=\"7\">And wherefore discourage ye the heart of the children of Israel from going over into the land which Jehovah hath given them?</VERS>\r\n      <VERS vnumber=\"8\">Thus did your fathers, when I sent them from Kadesh-barnea to see the land.</VERS>\r\n      <VERS vnumber=\"9\">For 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 Jehovah had given them.</VERS>\r\n      <VERS vnumber=\"10\">And Jehovah`s anger was kindled in that day, and he sware, saying,</VERS>\r\n      <VERS vnumber=\"11\">Surely 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:</VERS>\r\n      <VERS vnumber=\"12\">save Caleb the son of Jephunneh the Kenizzite, and Joshua the son of Nun; because they have wholly followed Jehovah.</VERS>\r\n      <VERS vnumber=\"13\">And Jehovah`s anger was kindled against Israel, and he made them wander to and fro in the wilderness forty years, until all the generation, that had done evil in the sight of Jehovah, was consumed.</VERS>\r\n      <VERS vnumber=\"14\">And, behold, ye are risen up in your fathers` stead, an increase of sinful men, to augment yet the fierce anger of Jehovah toward Israel.</VERS>\r\n      <VERS vnumber=\"15\">For if ye turn away from after him, he will yet again leave them in the wilderness; and ye will destroy all this people.</VERS>\r\n      <VERS vnumber=\"16\">And they came near unto him, and said, We will build sheepfolds here for our cattle, and cities for our little ones:</VERS>\r\n      <VERS vnumber=\"17\">but we ourselves will be ready armed to go before the children of Israel, until we have brought them unto their place: and our little ones shall dwell in the fortified cities because of the inhabitants of the land.</VERS>\r\n      <VERS vnumber=\"18\">We will not return unto our houses, until the children of Israel have inherited every man his inheritance.</VERS>\r\n      <VERS vnumber=\"19\">For we will not inherit with them on the other side of the Jordan, and forward; because our inheritance is fallen to us on this side of the Jordan eastward.</VERS>\r\n      <VERS vnumber=\"20\">And Moses said unto them, If ye will do this thing, if ye will arm yourselves to go before Jehovah to the war,</VERS>\r\n      <VERS vnumber=\"21\">and every armed man of you will pass over the Jordan before Jehovah, until he hath driven out his enemies from before him,</VERS>\r\n      <VERS vnumber=\"22\">and the land is subdued before Jehovah; then afterward ye shall return, and be guiltless towards Jehovah, and towards Israel; and this land shall be unto you for a possession before Jehovah.</VERS>\r\n      <VERS vnumber=\"23\">But if ye will not do so, behold, ye have sinned against Jehovah; and be sure your sin will find you out.</VERS>\r\n      <VERS vnumber=\"24\">Build you cities for your little ones, and folds for your sheep; and do that which hath proceeded out of your mouth.</VERS>\r\n      <VERS vnumber=\"25\">And the children of Gad and the children of Reuben spake unto Moses, saying, Thy servants will do as my lord commandeth.</VERS>\r\n      <VERS vnumber=\"26\">Our little ones, our wives, our flocks, and all our cattle, shall be there in the cities of Gilead;</VERS>\r\n      <VERS vnumber=\"27\">but thy servants will pass over, every man that is armed for war, before Jehovah to battle, as my lord saith.</VERS>\r\n      <VERS vnumber=\"28\">So Moses gave charge concerning them to Eleazar the priest, and to Joshua the son of Nun, and to the heads of the fathers` [houses] of the tribes of the children of Israel.</VERS>\r\n      <VERS vnumber=\"29\">And Moses said unto them, If the children of Gad and the children of Reuben will pass with you over the Jordan, every man that is armed to battle, before Jehovah, and the land shall be subdued before you; then ye shall give them the land of Gilead for a possession:</VERS>\r\n      <VERS vnumber=\"30\">but if they will not pass over with you armed, they shall have possessions among you in the land of Canaan.</VERS>\r\n      <VERS vnumber=\"31\">And the children of Gad and the children of Reuben answered, saying, As Jehovah hath said unto thy servants, so will we do.</VERS>\r\n      <VERS vnumber=\"32\">We will pass over armed before Jehovah into the land of Canaan, and the possession of our inheritance [shall remain] with us beyond the Jordan.</VERS>\r\n      <VERS vnumber=\"33\">And Moses gave unto them, even to the children of Gad, and to the children of Reuben, and unto the half-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, according to the cities thereof with [their] borders, even the cities of the land round about.</VERS>\r\n      <VERS vnumber=\"34\">And the children of Gad built Dibon, and Ataroth, and Aroer,</VERS>\r\n      <VERS vnumber=\"35\">and Atrothshophan, and Jazer, and Jogbehah,</VERS>\r\n      <VERS vnumber=\"36\">and Beth-nimrah, and Beth-haran: fortified cities, and folds for sheep.</VERS>\r\n      <VERS vnumber=\"37\">And the children of Reuben built Heshbon, and Elealeh, and Kiriathaim,</VERS>\r\n      <VERS vnumber=\"38\">and Nebo, and Baal-meon, (their names being changed,) and Sibmah: and they gave other names unto the cities which they builded.</VERS>\r\n      <VERS vnumber=\"39\">And the children of Machir the son of Manasseh went to Gilead, and took it, and dispossessed the Amorites that were therein.</VERS>\r\n      <VERS vnumber=\"40\">And Moses gave Gilead unto Machir the son of Manasseh; and he dwelt therein.</VERS>\r\n      <VERS vnumber=\"41\">And Jair the son of Manasseh went and took the towns thereof, and called them Havvoth-jair.</VERS>\r\n      <VERS vnumber=\"42\">And Nobah went and took Kenath, and the villages thereof, and called it Nobah, after his own name.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"33\">\r\n      <VERS vnumber=\"1\">These are the journeys of the children of Israel, when they went forth out of the land of Egypt by their hosts under the hand of Moses and Aaron.</VERS>\r\n      <VERS vnumber=\"2\">And Moses wrote their goings out according to their journeys by the commandment of Jehovah: and these are their journeys according to their goings out.</VERS>\r\n      <VERS vnumber=\"3\">And they journeyed 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 a high hand in the sight of all the Egyptians,</VERS>\r\n      <VERS vnumber=\"4\">while the Egyptians were burying all their first-born, whom Jehovah had smitten among them: upon their gods also Jehovah executed judgments.</VERS>\r\n      <VERS vnumber=\"5\">And the children of Israel journeyed from Rameses, and encamped in Succoth.</VERS>\r\n      <VERS vnumber=\"6\">And they journeyed from Succoth, and encamped in Etham, which is in the edge of the wilderness.</VERS>\r\n      <VERS vnumber=\"7\">And they journeyed from Etham, and turned back unto Pihahiroth, which is before Baal-zephon: and they encamped before Migdol.</VERS>\r\n      <VERS vnumber=\"8\">And they journeyed from before Hahiroth, and passed through the midst of the sea into the wilderness: and they went three days` journey in the wilderness of Etham, and encamped in Marah.</VERS>\r\n      <VERS vnumber=\"9\">And they journeyed from Marah, and came unto Elim: and in Elim were twelve springs of water, and threescore and ten palm-trees; and they encamped there.</VERS>\r\n      <VERS vnumber=\"10\">And they journeyed from Elim, and encamped by the Red Sea.</VERS>\r\n      <VERS vnumber=\"11\">And they journeyed from the Red Sea, and encamped in the wilderness of Sin.</VERS>\r\n      <VERS vnumber=\"12\">And they journeyed from the wilderness of Sin, and encamped in Dophkah.</VERS>\r\n      <VERS vnumber=\"13\">And they journeyed from Dophkah, and encamped in Alush.</VERS>\r\n      <VERS vnumber=\"14\">And they journeyed from Alush, and encamped in Rephidim, where was no water for the people to drink.</VERS>\r\n      <VERS vnumber=\"15\">And they journeyed from Rephidim, and encamped in the wilderness of Sinai.</VERS>\r\n      <VERS vnumber=\"16\">And they journeyed from the wilderness of Sinai, and encamped in Kibroth-hattaavah.</VERS>\r\n      <VERS vnumber=\"17\">And they journeyed from Kibroth-hattaavah, and encamped in Hazeroth.</VERS>\r\n      <VERS vnumber=\"18\">And they journeyed from Hazeroth, and encamped in Rithmah.</VERS>\r\n      <VERS vnumber=\"19\">And they journeyed from Rithmah, and encamped in Rimmon-perez.</VERS>\r\n      <VERS vnumber=\"20\">And they journeyed from Rimmon-perez, and encamped in Libnah.</VERS>\r\n      <VERS vnumber=\"21\">And they journeyed from Libnah, and encamped in Rissah.</VERS>\r\n      <VERS vnumber=\"22\">And they journeyed from Rissah, and encamped in Kehelathah.</VERS>\r\n      <VERS vnumber=\"23\">And they journeyed from Kehelathah, and encamped in mount Shepher.</VERS>\r\n      <VERS vnumber=\"24\">And they journeyed from mount Shepher, and encamped in Haradah.</VERS>\r\n      <VERS vnumber=\"25\">And they journeyed from Haradah, and encamped in Makheloth.</VERS>\r\n      <VERS vnumber=\"26\">And they journeyed from Makheloth, and encamped in Tahath.</VERS>\r\n      <VERS vnumber=\"27\">And they journeyed from Tahath, and encamped in Terah.</VERS>\r\n      <VERS vnumber=\"28\">And they journeyed from Terah, and encamped in Mithkah.</VERS>\r\n      <VERS vnumber=\"29\">And they journeyed from Mithkah, and encamped in Hashmonah.</VERS>\r\n      <VERS vnumber=\"30\">And they journeyed from Hashmonah, and encamped in Moseroth.</VERS>\r\n      <VERS vnumber=\"31\">And they journeyed from Moseroth, and encamped in Bene-jaakan.</VERS>\r\n      <VERS vnumber=\"32\">And they journeyed from Bene-jaakan, and encamped in Hor-haggidgad.</VERS>\r\n      <VERS vnumber=\"33\">And they journeyed from Hor-haggidgad, and encamped in Jotbathah.</VERS>\r\n      <VERS vnumber=\"34\">And they journeyed from Jotbathah, and encamped in Abronah.</VERS>\r\n      <VERS vnumber=\"35\">And they journeyed from Abronah, and encamped in Ezion-geber.</VERS>\r\n      <VERS vnumber=\"36\">And they journeyed from Ezion-geber, and encamped in the wilderness of Zin (the same is Kadesh).</VERS>\r\n      <VERS vnumber=\"37\">And they journeyed from Kadesh, and encamped in mount Hor, in the edge of the land of Edom.</VERS>\r\n      <VERS vnumber=\"38\">And Aaron the priest went up into mount Hor at the commandment of Jehovah, and died there, in the fortieth year after the children of Israel were come out of the land of Egypt, in the fifth month, on the first day of the month.</VERS>\r\n      <VERS vnumber=\"39\">And Aaron was a hundred and twenty and three years old when he died in mount Hor.</VERS>\r\n      <VERS vnumber=\"40\">And the Canaanite, the king of Arad, who dwelt in the South in the land of Canaan, heard of the coming of the children of Israel.</VERS>\r\n      <VERS vnumber=\"41\">And they journeyed from mount Hor, and encamped in Zalmonah.</VERS>\r\n      <VERS vnumber=\"42\">And they journeyed from Zalmonah, and encamped in Punon.</VERS>\r\n      <VERS vnumber=\"43\">And they journeyed from Punon, and encamped in Oboth.</VERS>\r\n      <VERS vnumber=\"44\">And they journeyed from Oboth, and encamped in Iye-abarim, in the border of Moab.</VERS>\r\n      <VERS vnumber=\"45\">And they journeyed from Iyim, and encamped in Dibon-gad.</VERS>\r\n      <VERS vnumber=\"46\">And they journeyed from Dibon-gad, and encamped in Almon-diblathaim.</VERS>\r\n      <VERS vnumber=\"47\">And they journeyed from Almon-diblathaim, and encamped in the mountains of Abarim, before Nebo.</VERS>\r\n      <VERS vnumber=\"48\">And they journeyed from the mountains of Abarim, and encamped in the plains of Moab by the Jordan at Jericho.</VERS>\r\n      <VERS vnumber=\"49\">And they encamped by the Jordan, from Beth-jeshimoth even unto Abel-shittim in the plains of Moab.</VERS>\r\n      <VERS vnumber=\"50\">And Jehovah spake unto Moses in the plains of Moab by the Jordan at Jericho, saying,</VERS>\r\n      <VERS vnumber=\"51\">Speak unto the children of Israel, and say unto them, When ye pass over the Jordan into the land of Canaan,</VERS>\r\n      <VERS vnumber=\"52\">then ye shall drive out all the inhabitants of the land from before you, and destroy all their figured [stones], and destroy all their molten images, and demolish all their high places:</VERS>\r\n      <VERS vnumber=\"53\">and ye shall take possession of the land, and dwell therein; for unto you have I given the land to possess it.</VERS>\r\n      <VERS vnumber=\"54\">And ye shall inherit the land by lot according to your families; to the more ye shall give the more inheritance, and to the fewer thou shalt give the less inheritance: wheresoever the lot falleth to any man, that shall be his; according to the tribes of your fathers shall ye inherit.</VERS>\r\n      <VERS vnumber=\"55\">But if ye will not drive out the inhabitants of the land from before you, then shall those that ye let remain of them be as pricks in your eyes, and as thorns in your sides, and they shall vex you in the land wherein ye dwell.</VERS>\r\n      <VERS vnumber=\"56\">And it shall come to pass, that, as I thought to do unto them, so will I do unto you.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"34\">\r\n      <VERS vnumber=\"1\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">Command 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 according to the borders thereof),</VERS>\r\n      <VERS vnumber=\"3\">then your south quarter shall be from the wilderness of Zin along by the side of Edom, and your south border shall be from the end of the Salt Sea eastward;</VERS>\r\n      <VERS vnumber=\"4\">and your border shall turn about southward of the ascent of Akrabbim, and pass along to Zin; and the goings out thereof shall be southward of Kadesh-barnea; and it shall go forth to Hazar-addar, and pass along to Azmon;</VERS>\r\n      <VERS vnumber=\"5\">and the border shall turn about from Azmon unto the brook of Egypt, and the goings out thereof shall be at the sea.</VERS>\r\n      <VERS vnumber=\"6\">And for the western border, ye shall have the great sea and the border [thereof]: this shall be your west border.</VERS>\r\n      <VERS vnumber=\"7\">And this shall be your north border: from the great sea ye shall mark out for you mount Hor;</VERS>\r\n      <VERS vnumber=\"8\">from mount Hor ye shall mark out unto the entrance of Hamath; and the goings out of the border shall be at Zedad;</VERS>\r\n      <VERS vnumber=\"9\">and the border shall go forth to Ziphron, and the goings out thereof shall be at Hazar-enan: this shall be your north border.</VERS>\r\n      <VERS vnumber=\"10\">And ye shall mark out your east border from Hazar-enan to Shepham;</VERS>\r\n      <VERS vnumber=\"11\">and the border shall go down from Shepham to Riblah, on the east side of Ain; and the border shall go down, and shall reach unto the side of the sea of Chinnereth eastward;</VERS>\r\n      <VERS vnumber=\"12\">and the border shall go down to the Jordan, and the goings out thereof shall be at the Salt Sea. This shall be your land according to the borders thereof round about.</VERS>\r\n      <VERS vnumber=\"13\">And Moses commanded the children of Israel, saying, This is the land which ye shall inherit by lot, which Jehovah hath commanded to give unto the nine tribes, and to the half-tribe;</VERS>\r\n      <VERS vnumber=\"14\">for the tribe of the children of Reuben according to their fathers` houses, and the tribe of the children of Gad according to their fathers` houses, have received, and the half-tribe of Manasseh have received, their inheritance:</VERS>\r\n      <VERS vnumber=\"15\">the two tribes and the half-tribe have received their inheritance beyond the Jordan at Jericho eastward, toward the sunrising.</VERS>\r\n      <VERS vnumber=\"16\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"17\">These are the names of the men that shall divide the land unto you for inheritance: Eleazar the priest, and Joshua the son of Nun.</VERS>\r\n      <VERS vnumber=\"18\">And ye shall take one prince of every tribe, to divide the land for inheritance.</VERS>\r\n      <VERS vnumber=\"19\">And these are the names of the men: Of the tribe of Judah, Caleb the son of Jephunneh.</VERS>\r\n      <VERS vnumber=\"20\">And of the tribe of the children of Simeon, Shemuel the son of Ammihud.</VERS>\r\n      <VERS vnumber=\"21\">Of the tribe of Benjamin, Elidad the son of Chislon.</VERS>\r\n      <VERS vnumber=\"22\">And of the tribe of the children of Dan a prince, Bukki the son of Jogli.</VERS>\r\n      <VERS vnumber=\"23\">Of the children of Joseph: of the tribe of the children of Manasseh a prince, Hanniel the son of Ephod.</VERS>\r\n      <VERS vnumber=\"24\">And of the tribe of the children of Ephraim a prince, Kemuel the son of Shiphtan.</VERS>\r\n      <VERS vnumber=\"25\">And of the tribe of the children of Zebulun a prince, Elizaphan the son of Parnach.</VERS>\r\n      <VERS vnumber=\"26\">And of the tribe of the children of Issachar a prince, Paltiel the son of Azzan.</VERS>\r\n      <VERS vnumber=\"27\">And of the tribe of the children of Asher a prince, Ahihud the son of Shelomi.</VERS>\r\n      <VERS vnumber=\"28\">And of the tribe of the children of Naphtali a prince, Pedahel the son of Ammihud.</VERS>\r\n      <VERS vnumber=\"29\">These are they whom Jehovah commanded to divide the inheritance unto the children of Israel in the land of Canaan.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"35\">\r\n      <VERS vnumber=\"1\">And Jehovah spake unto Moses in the plains of Moab by the Jordan at Jericho, saying,</VERS>\r\n      <VERS vnumber=\"2\">Command the children of Israel, that they give unto the Levites of the inheritance of their possession cities to dwell in; and suburbs for the cities round about them shall ye give unto the Levites.</VERS>\r\n      <VERS vnumber=\"3\">And the cities shall they have to dwell in; and their suburbs shall be for their cattle, and for their substance, and for all their beasts.</VERS>\r\n      <VERS vnumber=\"4\">And the suburbs of the cities, which ye shall give unto the Levites, shall be from the wall of the city and outward a thousand cubits round about.</VERS>\r\n      <VERS vnumber=\"5\">And ye shall measure without the city for the east side two thousand cubits, and for the south side two thousand cubits, and for the west side two thousand cubits, and for the north side two thousand cubits, the city being in the midst. This shall be to them the suburbs of the cities.</VERS>\r\n      <VERS vnumber=\"6\">And the cities which ye shall give unto the Levites, they shall be the six cities of refuge, which ye shall give for the manslayer to flee unto: and besides them ye shall give forty and two cities.</VERS>\r\n      <VERS vnumber=\"7\">All the cities which ye shall give to the Levites shall be forty and eight cities; them [shall ye give] with their suburbs.</VERS>\r\n      <VERS vnumber=\"8\">And concerning the cities which ye shall give of the possession of the children of Israel, from the many ye shall take many; and from the few ye shall take few: every one according to his inheritance which he inheriteth shall give of his cities unto the Levites.</VERS>\r\n      <VERS vnumber=\"9\">And Jehovah spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"10\">Speak unto the children of Israel, and say unto them, When ye pass over the Jordan into the land of Canaan,</VERS>\r\n      <VERS vnumber=\"11\">then ye shall appoint you cities to be cities of refuge for you, that the manslayer that killeth any person unwittingly may flee thither.</VERS>\r\n      <VERS vnumber=\"12\">And the cities shall be unto you for refuge from the avenger, that the manslayer die not, until he stand before the congregation for judgment.</VERS>\r\n      <VERS vnumber=\"13\">And the cities which ye shall give shall be for you six cities of refuge.</VERS>\r\n      <VERS vnumber=\"14\">Ye shall give three cities beyond the Jordan, and three cities shall ye give in the land of Canaan; they shall be cities of refuge.</VERS>\r\n      <VERS vnumber=\"15\">For the children of Israel, and for the stranger and for the sojourner among them, shall these six cities be for refuge; that every one that killeth any person unwittingly may flee thither.</VERS>\r\n      <VERS vnumber=\"16\">But if he smote him with an instrument of iron, so that he died, he is a murderer: the murderer shall surely be put to death.</VERS>\r\n      <VERS vnumber=\"17\">And if he smote him with a stone in the hand, whereby a man may die, and he died, he is a murderer: the murderer shall surely be put to death.</VERS>\r\n      <VERS vnumber=\"18\">Or if he smote him with a weapon of wood in the hand, whereby a man may die, and he died, he is a murderer: the murderer shall surely be put to death.</VERS>\r\n      <VERS vnumber=\"19\">The avenger of blood shall himself put the murderer to death: when he meeteth him, he shall put him to death.</VERS>\r\n      <VERS vnumber=\"20\">And if he thrust him of hatred, or hurled at him, lying in wait, so that he died,</VERS>\r\n      <VERS vnumber=\"21\">or in enmity smote him with his hand, so that he died; he that smote him shall surely be put to death; he is a murderer: the avenger of blood shall put the murderer to death, when he meeteth him.</VERS>\r\n      <VERS vnumber=\"22\">But if he thrust him suddenly without enmity, or hurled upon him anything without lying in wait,</VERS>\r\n      <VERS vnumber=\"23\">or with any stone, whereby a man may die, seeing him not, and cast it upon him, so that he died, and he was not his enemy, neither sought his harm;</VERS>\r\n      <VERS vnumber=\"24\">then the congregation shall judge between the smiter and the avenger of blood according to these ordinances;</VERS>\r\n      <VERS vnumber=\"25\">and the congregation shall deliver the manslayer out of the hand of the avenger of blood, and the congregation shall restore him to his city of refuge, whither he was fled: and he shall dwell therein until the death of the high priest, who was anointed with the holy oil.</VERS>\r\n      <VERS vnumber=\"26\">But if the manslayer shall at any time go beyond the border of his city of refuge, whither he fleeth,</VERS>\r\n      <VERS vnumber=\"27\">and the avenger of blood find him without the border of his city of refuge, and the avenger of blood slay the manslayer; he shall not be guilty of blood,</VERS>\r\n      <VERS vnumber=\"28\">because he should have remained in his city of refuge until the death of the high priest: but after the death of the high priest the manslayer shall return into the land of his possession.</VERS>\r\n      <VERS vnumber=\"29\">And these things shall be for a statute [and] ordinance unto you throughout your generations in all your dwellings.</VERS>\r\n      <VERS vnumber=\"30\">Whoso killeth any person, the murderer shall be slain at the mouth of witnesses: but one witness shall not testify against any person that he die.</VERS>\r\n      <VERS vnumber=\"31\">Moreover ye shall take no ransom for the life of a murderer, that is guilty of death; but he shall surely be put to death.</VERS>\r\n      <VERS vnumber=\"32\">And ye shall take no ransom for him that is fled to his city of refuge, that he may come again to dwell in the land, until the death of the priest.</VERS>\r\n      <VERS vnumber=\"33\">So ye shall not pollute the land wherein ye are: for blood, it polluteth the land; and no expiation can be made for the land for the blood that is shed therein, but by the blood of him that shed it.</VERS>\r\n      <VERS vnumber=\"34\">And thou shalt not defile the land which ye inhabit, in the midst of which I dwell: for I, Jehovah, dwell in the midst of the children of Israel.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"36\">\r\n      <VERS vnumber=\"1\">And the heads of the fathers` [houses] of the family 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 heads of the fathers` [houses] of the children of Israel:</VERS>\r\n      <VERS vnumber=\"2\">and they said, Jehovah commanded my lord to give the land for inheritance by lot to the children of Israel: and my lord was commanded by Jehovah to give the inheritance of Zelophehad our brother unto his daughters.</VERS>\r\n      <VERS vnumber=\"3\">And if they be married to any of the sons of the [other] tribes of the children of Israel, then will their inheritance be taken away from the inheritance of our fathers, and will be added to the inheritance of the tribe whereunto they shall belong: so will it be taken away from the lot of our inheritance.</VERS>\r\n      <VERS vnumber=\"4\">And when the jubilee of the children of Israel shall be, then will their inheritance be added unto the inheritance of the tribe whereunto they shall belong: so will their inheritance be taken away from the inheritance of the tribe of our fathers.</VERS>\r\n      <VERS vnumber=\"5\">And Moses commanded the children of Israel according to the word of Jehovah, saying, The tribe of the sons of Joseph speaketh right.</VERS>\r\n      <VERS vnumber=\"6\">This is the thing which Jehovah doth command concerning the daughters of Zelophehad, saying, Let them be married to whom they think best; only into the family of the tribe of their father shall they be married.</VERS>\r\n      <VERS vnumber=\"7\">So shall no inheritance of the children of Israel remove from tribe to tribe; for the children of Israel shall cleave every one to the inheritance of the tribe of his fathers.</VERS>\r\n      <VERS vnumber=\"8\">And 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 possess every man the inheritance of his fathers.</VERS>\r\n      <VERS vnumber=\"9\">So shall no inheritance remove from one tribe to another tribe; for the tribes of the children of Israel shall cleave every one to his own inheritance.</VERS>\r\n      <VERS vnumber=\"10\">Even as Jehovah commanded Moses, so did the daughters of Zelophehad:</VERS>\r\n      <VERS vnumber=\"11\">for Mahlah, Tirzah, and Hoglah, and Milcah, and Noah, the daughters of Zelophehad, were married unto their father`s brothers` sons.</VERS>\r\n      <VERS vnumber=\"12\">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.</VERS>\r\n      <VERS vnumber=\"13\">These are the commandments and the ordinances which Jehovah commanded by Moses unto the children of Israel in the plains of Moab by the Jordan at Jericho.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"5\" bname=\"Deuteronomy\" bsname=\"Deut\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">These are the words which Moses spake unto all Israel beyond the Jordan in the wilderness, in the Arabah over against Suph, between Paran, and Tophel, and Laban, and Hazeroth, and Di-zahab.</VERS>\r\n      <VERS vnumber=\"2\">It is eleven days` [journey] from Horeb by the way of mount Seir unto Kadesh-barnea.</VERS>\r\n      <VERS vnumber=\"3\">And 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 Jehovah had given him in commandment unto them;</VERS>\r\n      <VERS vnumber=\"4\">after he had smitten Sihon the king of the Amorites, who dwelt in Heshbon, and Og the king of Bashan, who dwelt in Ashtaroth, at Edrei.</VERS>\r\n      <VERS vnumber=\"5\">Beyond the Jordan, in the land of Moab, began Moses to declare this law, saying,</VERS>\r\n      <VERS vnumber=\"6\">Jehovah our God spake unto us in Horeb, saying, Ye have dwelt long enough in this mountain:</VERS>\r\n      <VERS vnumber=\"7\">turn you, and take your journey, and go to the hill-country of the Amorites, and unto all [the places] nigh thereunto, in the Arabah, in the hill-country, and in the lowland, and in the South, and by the sea-shore, the land of the Canaanites, and Lebanon, as far as the great river, the river Euphrates.</VERS>\r\n      <VERS vnumber=\"8\">Behold, I have set the land before you: go in and possess the land which Jehovah sware unto your fathers, to Abraham, to Isaac, and to Jacob, to give unto them and to their seed after them.</VERS>\r\n      <VERS vnumber=\"9\">And I spake unto you at that time, saying, I am not able to bear you myself alone:</VERS>\r\n      <VERS vnumber=\"10\">Jehovah your God hath multiplied you, and, behold, ye are this day as the stars of heaven for multitude.</VERS>\r\n      <VERS vnumber=\"11\">Jehovah, the God of your fathers, make you a thousand times as many as ye are, and bless you, as he hath promised you!</VERS>\r\n      <VERS vnumber=\"12\">How can I myself alone bear your cumbrance, and your burden, and your strife?</VERS>\r\n      <VERS vnumber=\"13\">Take you wise men, and understanding, and known, according to your tribes, and I will make them heads over you.</VERS>\r\n      <VERS vnumber=\"14\">And ye answered me, and said, The thing which thou hast spoken is good [for us] to do.</VERS>\r\n      <VERS vnumber=\"15\">So I took the heads of your tribes, wise men, and known, and made them heads over you, captains of thousands, and captains of hundreds, and captains of fifties, and captains of tens, and officers, according to your tribes.</VERS>\r\n      <VERS vnumber=\"16\">And I charged your judges at that time, saying, Hear [the causes] between your brethren, and judge righteously between a man and his brother, and the sojourner that is with him.</VERS>\r\n      <VERS vnumber=\"17\">Ye shall not respect persons in judgment; ye shall hear the small and the great alike; 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 ye shall bring unto me, and I will hear it.</VERS>\r\n      <VERS vnumber=\"18\">And I commanded you at that time all the things which ye should do.</VERS>\r\n      <VERS vnumber=\"19\">And we journeyed from Horeb, and went through all that great and terrible wilderness which ye saw, by the way to the hill-country of the Amorites, as Jehovah our God commanded us; and we came to Kadesh-barnea.</VERS>\r\n      <VERS vnumber=\"20\">And I said unto you, Ye are come unto the hill-country of the Amorites, which Jehovah our God giveth unto us.</VERS>\r\n      <VERS vnumber=\"21\">Behold, Jehovah thy God hath set the land before thee: go up, take possession, as Jehovah, the God of thy fathers, hath spoken unto thee; fear not, neither be dismayed.</VERS>\r\n      <VERS vnumber=\"22\">And ye came near unto me every one of you, and said, Let us send men before us, that they may search the land for us, and bring us word again of the way by which we must go up, and the cities unto which we shall come.</VERS>\r\n      <VERS vnumber=\"23\">And the thing pleased me well; and I took twelve men of you, one man for every tribe:</VERS>\r\n      <VERS vnumber=\"24\">and they turned and went up into the hill-country, and came unto the valley of Eshcol, and spied it out.</VERS>\r\n      <VERS vnumber=\"25\">And 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 Jehovah our God giveth unto us.</VERS>\r\n      <VERS vnumber=\"26\">Yet ye would not go up, but rebelled against the commandment of Jehovah your God:</VERS>\r\n      <VERS vnumber=\"27\">and ye murmured in your tents, and said, Because Jehovah 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.</VERS>\r\n      <VERS vnumber=\"28\">Whither are we going up? our brethren have made our heart to melt, saying, The people are greater and taller than we; the cities are great and fortified up to heaven; and moreover we have seen the sons of the Anakim there.</VERS>\r\n      <VERS vnumber=\"29\">Then I said unto you, Dread not, neither be afraid of them.</VERS>\r\n      <VERS vnumber=\"30\">Jehovah your God who goeth before you, he will fight for you, according to all that he did for you in Egypt before your eyes,</VERS>\r\n      <VERS vnumber=\"31\">and in the wilderness, where thou hast seen how that Jehovah thy God bare thee, as a man doth bear his son, in all the way that ye went, until ye came unto this place.</VERS>\r\n      <VERS vnumber=\"32\">Yet in this thing ye did not believe Jehovah your God,</VERS>\r\n      <VERS vnumber=\"33\">who went before you in the way, to seek you out a place to pitch your tents in, in fire by night, to show you by what way ye should go, and in the cloud by day.</VERS>\r\n      <VERS vnumber=\"34\">And Jehovah heard the voice of your words, and was wroth, and sware, saying,</VERS>\r\n      <VERS vnumber=\"35\">Surely there shall not one of these men of this evil generation see the good land, which I sware to give unto your fathers,</VERS>\r\n      <VERS vnumber=\"36\">save 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 Jehovah.</VERS>\r\n      <VERS vnumber=\"37\">Also Jehovah was angry with me for your sakes, saying, Thou also shalt not go in thither:</VERS>\r\n      <VERS vnumber=\"38\">Joshua the son of Nun, who standeth before thee, he shall go in thither: encourage thou him; for he shall cause Israel to inherit it.</VERS>\r\n      <VERS vnumber=\"39\">Moreover your little ones, that ye said should be a prey, and your children, that this day have no knowledge of good or evil, they shall go in thither, and unto them will I give it, and they shall possess it.</VERS>\r\n      <VERS vnumber=\"40\">But as for you, turn you, and take your journey into the wilderness by the way to the Red Sea.</VERS>\r\n      <VERS vnumber=\"41\">Then ye answered and said unto me, We have sinned against Jehovah, we will go up and fight, according to all that Jehovah our God commanded us. And ye girded on every man his weapons of war, and were forward to go up into the hill-country.</VERS>\r\n      <VERS vnumber=\"42\">And Jehovah said unto me, Say unto them, Go not up, neither fight; for I am not among you; lest ye be smitten before your enemies.</VERS>\r\n      <VERS vnumber=\"43\">So I spake unto you, and ye hearkened not; but ye rebelled against the commandment of Jehovah, and were presumptuous, and went up into the hill-country.</VERS>\r\n      <VERS vnumber=\"44\">And the Amorites, that dwelt in that hill-country, came out against you, and chased you, as bees do, and beat you down in Seir, even unto Hormah.</VERS>\r\n      <VERS vnumber=\"45\">And ye returned and wept before Jehovah; but Jehovah hearkened not to your voice, nor gave ear unto you.</VERS>\r\n      <VERS vnumber=\"46\">So ye abode in Kadesh many days, according unto the days that ye abode [there].</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">Then we turned, and took our journey into the wilderness by the way to the Red Sea, as Jehovah spake unto me; and we compassed mount Seir many days.</VERS>\r\n      <VERS vnumber=\"2\">And Jehovah spake unto me, saying,</VERS>\r\n      <VERS vnumber=\"3\">Ye have compassed this mountain long enough: turn you northward.</VERS>\r\n      <VERS vnumber=\"4\">And command thou the people, saying, Ye are to pass through the border of your brethren the children of Esau, that dwell in Seir; and they will be afraid of you: take ye good heed unto yourselves therefore;</VERS>\r\n      <VERS vnumber=\"5\">contend not with them; for I will not give you of their land, no, not so much as for the sole of the foot to tread on; because I have given mount Seir unto Esau for a possession.</VERS>\r\n      <VERS vnumber=\"6\">Ye shall purchase food of them for money, that ye may eat; and ye shall also buy water of them for money, that ye may drink.</VERS>\r\n      <VERS vnumber=\"7\">For Jehovah thy God hath blessed thee in all the work of thy hand; he hath known thy walking through this great wilderness: these forty years Jehovah thy God hath been with thee; thou hast lacked nothing.</VERS>\r\n      <VERS vnumber=\"8\">So we passed by from our brethren the children of Esau, that dwell in Seir, from the way of the Arabah from Elath and from Ezion-geber.     And we turned and passed by the way of the wilderness of Moab.</VERS>\r\n      <VERS vnumber=\"9\">And Jehovah said unto me, Vex not Moab, neither contend with them in battle; for I will not give thee of his land for a possession; because I have given Ar unto the children of Lot for a possession.</VERS>\r\n      <VERS vnumber=\"10\">(The Emim dwelt therein aforetime, a people great, and many, and tall, as the Anakim:</VERS>\r\n      <VERS vnumber=\"11\">these also are accounted Rephaim, as the Anakim; but the Moabites call them Emim.</VERS>\r\n      <VERS vnumber=\"12\">The Horites also dwelt in Seir aforetime, but the children of Esau succeeded them; and they destroyed them from before them, and dwelt in their stead; as Israel did unto the land of his possession, which Jehovah gave unto them.)</VERS>\r\n      <VERS vnumber=\"13\">Now rise up, and get you over the brook Zered. And we went over the brook Zered.</VERS>\r\n      <VERS vnumber=\"14\">And the days in which we came from Kadesh-barnea, until we were come over the brook Zered, were thirty and eight years; until all the generation of the men of war were consumed from the midst of the camp, as Jehovah sware unto them.</VERS>\r\n      <VERS vnumber=\"15\">Moreover the hand of Jehovah was against them, to destroy them from the midst of the camp, until they were consumed.</VERS>\r\n      <VERS vnumber=\"16\">So it came to pass, when all the men of war were consumed and dead from among the people,</VERS>\r\n      <VERS vnumber=\"17\">that Jehovah spake unto me, saying,</VERS>\r\n      <VERS vnumber=\"18\">Thou art this day to pass over Ar, the border of Moab:</VERS>\r\n      <VERS vnumber=\"19\">and when thou comest nigh over against the children of Ammon, vex them not, nor contend with them; for I will not give thee of the land of the children of Ammon for a possession; because I have given it unto the children of Lot for a possession.</VERS>\r\n      <VERS vnumber=\"20\">(That also is accounted a land of Rephaim: Rephaim dwelt therein aforetime; but the Ammonites call them Zamzummim,</VERS>\r\n      <VERS vnumber=\"21\">a people great, and many, and tall, as the Anakim; but Jehovah destroyed them before them; and they succeeded them, and dwelt in their stead;</VERS>\r\n      <VERS vnumber=\"22\">as he did for the children of Esau, that dwell in Seir, when he destroyed the Horites from before them; and they succeeded them, and dwelt in their stead even unto this day:</VERS>\r\n      <VERS vnumber=\"23\">and the Avvim, that dwelt in villages as far as Gaza, the Caphtorim, that came forth out of Caphtor, destroyed them, and dwelt in their stead.)</VERS>\r\n      <VERS vnumber=\"24\">Rise ye up, take your journey, and pass over the valley of the Arnon: behold, I have given into thy hand Sihon the Amorite, king of Heshbon, and his land; begin to possess it, and contend with him in battle.</VERS>\r\n      <VERS vnumber=\"25\">This day will I begin to put the dread of thee and the fear of thee upon the peoples that are under the whole heaven, who shall hear the report of thee, and shall tremble, and be in anguish because of thee.</VERS>\r\n      <VERS vnumber=\"26\">And I sent messengers out of the wilderness of Kedemoth unto Sihon king of Heshbon with words of peace, saying,</VERS>\r\n      <VERS vnumber=\"27\">Let me pass through thy land: I will go along by the highway, I will turn neither unto the right hand nor to the left.</VERS>\r\n      <VERS vnumber=\"28\">Thou shalt sell me food for money, that I may eat; and give me water for money, that I may drink: only let me pass through on my feet,</VERS>\r\n      <VERS vnumber=\"29\">as the children of Esau that dwell in Seir, and the Moabites that dwell in Ar, did unto me; until I shall pass over the Jordan into the land which Jehovah our God giveth us.</VERS>\r\n      <VERS vnumber=\"30\">But Sihon king of Heshbon would not let us pass by him; for Jehovah thy God hardened his spirit, and made his heart obstinate, that he might deliver him into thy hand, as at this day.</VERS>\r\n      <VERS vnumber=\"31\">And Jehovah said unto me, Behold, I have begun to deliver up Sihon and his land before thee: begin to possess, that thou mayest inherit his land.</VERS>\r\n      <VERS vnumber=\"32\">Then Sihon came out against us, he and all his people, unto battle at Jahaz.</VERS>\r\n      <VERS vnumber=\"33\">And Jehovah our God delivered him up before us; and we smote him, and his sons, and all his people.</VERS>\r\n      <VERS vnumber=\"34\">And we took all his cities at that time, and utterly destroyed every inhabited city, with the women and the little ones; we left none remaining:</VERS>\r\n      <VERS vnumber=\"35\">only the cattle we took for a prey unto ourselves, with the spoil of the cities which we had taken.</VERS>\r\n      <VERS vnumber=\"36\">From Aroer, which is on the edge of the valley of the Arnon, and [from] the city that is in the valley, even unto Gilead, there was not a city too high for us; Jehovah our God delivered up all before us:</VERS>\r\n      <VERS vnumber=\"37\">only to the land of the children of Ammon thou camest not near; all the side of the river Jabbok, and the cities of the hill-country, and wheresoever Jehovah our God forbade us.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Then we turned, and went up the way to Bashan: and Og the king of Bashan came out against us, he and all his people, unto battle at Edrei.</VERS>\r\n      <VERS vnumber=\"2\">And Jehovah said unto me, Fear him not; for I have delivered 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, who dwelt at Heshbon.</VERS>\r\n      <VERS vnumber=\"3\">So Jehovah our God delivered into our hand Og also, the king of Bashan, and all his people: and we smote him until none was left to him remaining.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">All these were cities fortified with high walls, gates, and bars; besides the unwalled towns a great many.</VERS>\r\n      <VERS vnumber=\"6\">And we utterly destroyed them, as we did unto Sihon king of Heshbon, utterly destroying every inhabited city, with the women and the little ones.</VERS>\r\n      <VERS vnumber=\"7\">But all the cattle, and the spoil of the cities, we took for a prey unto ourselves.</VERS>\r\n      <VERS vnumber=\"8\">And we took the land at that time out of the hand of the two kings of the Amorites that were beyond the Jordan, from the valley of the Arnon unto mount Hermon;</VERS>\r\n      <VERS vnumber=\"9\">([which] Hermon the Sidonians call Sirion, and the Amorites call it Senir;)</VERS>\r\n      <VERS vnumber=\"10\">all the cities of the plain, and all Gilead, and all Bashan, unto Salecah and Edrei, cities of the kingdom of Og in Bashan.</VERS>\r\n      <VERS vnumber=\"11\">(For only Og king of Bashan remained of the remnant of the Rephaim; behold, his bedstead was a bedstead of iron; is it not in Rabbah of the children of Ammon? nine cubits was the length thereof, and four cubits the breadth of it, after the cubit of a man.)</VERS>\r\n      <VERS vnumber=\"12\">And this land we took in possession at that time: from Aroer, which is by the valley of the Arnon, and half the hill-country of Gilead, and the cities thereof, gave I unto the Reubenites and to the Gadites:</VERS>\r\n      <VERS vnumber=\"13\">and the rest of Gilead, and all Bashan, the kingdom of Og, gave I unto the half-tribe of Manasseh; all the region of Argob, even all Bashan. (The same is called the land of Rephaim.</VERS>\r\n      <VERS vnumber=\"14\">Jair the son of Manasseh took all the region of Argob, unto the border of the Geshurites and the Maacathites, and called them, even Bashan, after his own name, Havvoth-jair, unto this day.)</VERS>\r\n      <VERS vnumber=\"15\">And I gave Gilead unto Machir.</VERS>\r\n      <VERS vnumber=\"16\">And unto the Reubenites and unto the Gadites I gave from Gilead even unto the valley of the Arnon, the middle of the valley, and the border [thereof], even unto the river Jabbok, which is the border of the children of Ammon;</VERS>\r\n      <VERS vnumber=\"17\">the Arabah also, and the Jordan and the border [thereof], from Chinnereth even unto the sea of the Arabah, the Salt Sea, under the slopes of Pisgah eastward.</VERS>\r\n      <VERS vnumber=\"18\">And I commanded you at that time, saying, Jehovah your God hath given you this land to possess it: ye shall pass over armed before your brethren the children of Israel, all the men of valor.</VERS>\r\n      <VERS vnumber=\"19\">But your wives, and your little ones, and your cattle, (I know that ye have much cattle,) shall abide in your cities which I have given you,</VERS>\r\n      <VERS vnumber=\"20\">until Jehovah give rest unto your brethren, as unto you, and they also possess the land which Jehovah your God giveth them beyond the Jordan: then shall ye return every man unto his possession, which I have given you.</VERS>\r\n      <VERS vnumber=\"21\">And I commanded Joshua at that time, saying, Thine eyes have seen all that Jehovah your God hath done unto these two kings: so shall Jehovah do unto all the kingdoms whither thou goest over.</VERS>\r\n      <VERS vnumber=\"22\">Ye shall not fear them; for Jehovah your God, he it is that fighteth for you.</VERS>\r\n      <VERS vnumber=\"23\">And I besought Jehovah at that time, saying,</VERS>\r\n      <VERS vnumber=\"24\">O Lord Jehovah, thou hast begun to show thy servant thy greatness, and thy strong hand: for what god is there in heaven or in earth, that can do according to thy works, and according to thy mighty acts?</VERS>\r\n      <VERS vnumber=\"25\">Let me go over, I pray thee, and see the good land that is beyond the Jordan, that goodly mountain, and Lebanon.</VERS>\r\n      <VERS vnumber=\"26\">But Jehovah was wroth with me for your sakes, and hearkened not unto me; and Jehovah said unto me, Let it suffice thee; speak no more unto me of this matter.</VERS>\r\n      <VERS vnumber=\"27\">Get thee up unto the top of Pisgah, and lift up thine eyes westward, and northward, and southward, and eastward, and behold with thine eyes: for thou shalt not go over this Jordan.</VERS>\r\n      <VERS vnumber=\"28\">But 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.</VERS>\r\n      <VERS vnumber=\"29\">So we abode in the valley over against Beth-peor.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">And now, O Israel, hearken unto the statutes and unto the ordinances, which I teach you, to do them; that ye may live, and go in and possess the land which Jehovah, the God of your fathers, giveth you.</VERS>\r\n      <VERS vnumber=\"2\">Ye shall not add unto the word which I command you, neither shall ye diminish from it, that ye may keep the commandments of Jehovah your God which I command you.</VERS>\r\n      <VERS vnumber=\"3\">Your eyes have seen what Jehovah did because of Baal-peor; for all the men that followed Baal-peor, Jehovah thy God hath destroyed them from the midst of thee.</VERS>\r\n      <VERS vnumber=\"4\">But ye that did cleave unto Jehovah your God are alive every one of you this day.</VERS>\r\n      <VERS vnumber=\"5\">Behold, I have taught you statutes and ordinances, even as Jehovah my God commanded me, that ye should do so in the midst of the land whither ye go in to possess it.</VERS>\r\n      <VERS vnumber=\"6\">Keep therefore and do them; for this is your wisdom and your understanding in the sight of the peoples, that shall hear all these statutes, and say, Surely this great nation is a wise and understanding people.</VERS>\r\n      <VERS vnumber=\"7\">For what great nation is there, that hath a god so nigh unto them, as Jehovah our God is whensoever we call upon him?</VERS>\r\n      <VERS vnumber=\"8\">And what great nation is there, that hath statutes and ordinances so righteous as all this law, which I set before you this day?</VERS>\r\n      <VERS vnumber=\"9\">Only take heed to thyself, and keep thy soul diligently, lest thou forget the things which thine eyes saw, and lest they depart from thy heart all the days of thy life; but make them known unto thy children and thy children`s children;</VERS>\r\n      <VERS vnumber=\"10\">the day that thou stoodest before Jehovah thy God in Horeb, when Jehovah said unto me, Assemble me the people, and I will make them hear my words, that they may learn to fear me all the days that they live upon the earth, and that they may teach their children.</VERS>\r\n      <VERS vnumber=\"11\">And ye came near and stood under the mountain; and the mountain burned with fire unto the heart of heaven, with darkness, cloud, and thick darkness.</VERS>\r\n      <VERS vnumber=\"12\">And Jehovah spake unto you out of the midst of the fire: ye heard the voice of words, but ye saw no form; only [ye heard] a voice.</VERS>\r\n      <VERS vnumber=\"13\">And he declared unto you his covenant, which he commanded you to perform, even the ten commandments; and he wrote them upon two tables of stone.</VERS>\r\n      <VERS vnumber=\"14\">And Jehovah commanded me at that time to teach you statutes and ordinances, that ye might do them in the land whither ye go over to possess it.</VERS>\r\n      <VERS vnumber=\"15\">Take ye therefore good heed unto yourselves; for ye saw no manner of form on the day that Jehovah spake unto you in Horeb out of the midst of the fire.</VERS>\r\n      <VERS vnumber=\"16\">Lest ye corrupt yourselves, and make you a graven image in the form of any figure, the likeness of male or female,</VERS>\r\n      <VERS vnumber=\"17\">the likeness of any beast that is on the earth, the likeness of any winged bird that flieth in the heavens,</VERS>\r\n      <VERS vnumber=\"18\">the likeness of anything that creepeth on the ground, the likeness of any fish that is in the water under the earth;</VERS>\r\n      <VERS vnumber=\"19\">and 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, thou be drawn away and worship them, and serve them, which Jehovah thy God hath allotted unto all the peoples under the whole heaven.</VERS>\r\n      <VERS vnumber=\"20\">But Jehovah hath taken you, and brought you forth out of the iron furnace, out of Egypt, to be unto him a people of inheritance, as at this day.</VERS>\r\n      <VERS vnumber=\"21\">Furthermore Jehovah was angry with me for your sakes, and sware that I should not go over the Jordan, and that I should not go in unto that good land, which Jehovah thy God giveth thee for an inheritance:</VERS>\r\n      <VERS vnumber=\"22\">but I must die in this land, I must not go over the Jordan; but ye shall go over, and possess that good land.</VERS>\r\n      <VERS vnumber=\"23\">Take heed unto yourselves, lest ye forget the covenant of Jehovah your God, which he made with you, and make you a graven image in the form of anything which Jehovah thy God hath forbidden thee.</VERS>\r\n      <VERS vnumber=\"24\">For Jehovah thy God is a devouring fire, a jealous God.</VERS>\r\n      <VERS vnumber=\"25\">When thou shalt beget children, and children`s children, and ye shall have been long in the land, and shall corrupt yourselves, and make a graven image in the form of anything, and shall do that which is evil in the sight of Jehovah thy God, to provoke him to anger;</VERS>\r\n      <VERS vnumber=\"26\">I call heaven and earth to witness against you this day, that ye shall soon utterly perish from off the land whereunto ye go over the Jordan to possess it; ye shall not prolong your days upon it, but shall utterly be destroyed.</VERS>\r\n      <VERS vnumber=\"27\">And Jehovah will scatter you among the peoples, and ye shall be left few in number among the nations, whither Jehovah shall lead you away.</VERS>\r\n      <VERS vnumber=\"28\">And there ye shall serve gods, the work of men`s hands, wood and stone, which neither see, nor hear, nor eat, nor smell.</VERS>\r\n      <VERS vnumber=\"29\">But from thence ye shall seek Jehovah thy God, and thou shalt find him, when thou searchest after him with all thy heart and with all thy soul.</VERS>\r\n      <VERS vnumber=\"30\">When thou art in tribulation, and all these things are come upon thee, in the latter days thou shalt return to Jehovah thy God, and hearken unto his voice:</VERS>\r\n      <VERS vnumber=\"31\">for Jehovah thy God is a merciful God; he will not fail thee, neither destroy thee, nor forget the covenant of thy fathers which he sware unto them.</VERS>\r\n      <VERS vnumber=\"32\">For ask now of the days that are past, which were before thee, since the day that God created man upon the earth, and from the one end of heaven unto the other, whether there hath been [any such thing] as this great thing is, or hath been heard like it?</VERS>\r\n      <VERS vnumber=\"33\">Did ever a people hear the voice of God speaking out of the midst of the fire, as thou hast heard, and live?</VERS>\r\n      <VERS vnumber=\"34\">Or hath God assayed to go and take him a nation from the midst of [another] nation, by trials, by signs, and by wonders, and by war, and by a mighty hand, and by an outstretched arm, and by great terrors, according to all that Jehovah your God did for you in Egypt before your eyes?</VERS>\r\n      <VERS vnumber=\"35\">Unto thee it was showed, that thou mightest know that Jehovah he is God; there is none else besides him.</VERS>\r\n      <VERS vnumber=\"36\">Out of heaven he made thee to hear his voice, that he might instruct thee: and upon earth he made thee to see his great fire; and thou heardest his words out of the midst of the fire.</VERS>\r\n      <VERS vnumber=\"37\">And because he loved thy fathers, therefore he chose their seed after them, and brought thee out with his presence, with his great power, out of Egypt;</VERS>\r\n      <VERS vnumber=\"38\">to drive out nations from before thee greater and mightier than thou, to bring thee in, to give thee their land for an inheritance, as at this day.</VERS>\r\n      <VERS vnumber=\"39\">Know therefore this day, and lay it to thy heart, that Jehovah he is God in heaven above and upon the earth beneath; there is none else.</VERS>\r\n      <VERS vnumber=\"40\">And thou shalt keep 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 in the land, which Jehovah thy God giveth thee, for ever.</VERS>\r\n      <VERS vnumber=\"41\">Then Moses set apart three cities beyond the Jordan toward the sunrising;</VERS>\r\n      <VERS vnumber=\"42\">that the manslayer might flee thither, that slayeth his neighbor unawares, and hated him not in time past; and that fleeing unto one of these cities he might live:</VERS>\r\n      <VERS vnumber=\"43\">[namely], Bezer in the wilderness, in the plain country, for the Reubenites; and Ramoth in Gilead, for the Gadites; and Golan in Bashan, for the Manassites.</VERS>\r\n      <VERS vnumber=\"44\">And this is the law which Moses set before the children of Israel:</VERS>\r\n      <VERS vnumber=\"45\">these are the testimonies, and the statutes, and the ordinances, which Moses spake unto the children of Israel, when they came forth out of Egypt,</VERS>\r\n      <VERS vnumber=\"46\">beyond the Jordan, in the valley over against Beth-peor, in the land of Sihon king of the Amorites, who dwelt at Heshbon, whom Moses and the children of Israel smote, when they came forth out of Egypt.</VERS>\r\n      <VERS vnumber=\"47\">And they took his land in possession, and the land of Og king of Bashan, the two kings of the Amorites, who were beyond the Jordan toward the sunrising;</VERS>\r\n      <VERS vnumber=\"48\">from Aroer, which is on the edge of the valley of the Arnon, even unto mount Sion (the same is Hermon),</VERS>\r\n      <VERS vnumber=\"49\">and all the Arabah beyond the Jordan eastward, even unto the sea of the Arabah, under the slopes of Pisgah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">And Moses called unto all Israel, and said unto them, Hear, O Israel, the statutes and the ordinances which I speak in your ears this day, that ye may learn them, and observe to do them.</VERS>\r\n      <VERS vnumber=\"2\">Jehovah our God made a covenant with us in Horeb.</VERS>\r\n      <VERS vnumber=\"3\">Jehovah made not this covenant with our fathers, but with us, even us, who are all of us here alive this day.</VERS>\r\n      <VERS vnumber=\"4\">Jehovah spake with you face to face in the mount out of the midst of the fire,</VERS>\r\n      <VERS vnumber=\"5\">(I stood between Jehovah and you at that time, to show you the word of Jehovah: for ye were afraid because of the fire, and went not up into the mount;) saying,</VERS>\r\n      <VERS vnumber=\"6\">I am Jehovah thy God, who brought thee out of the land of Egypt, out of the house of bondage.</VERS>\r\n      <VERS vnumber=\"7\">Thou shalt have no other gods before me.</VERS>\r\n      <VERS vnumber=\"8\">Thou shalt not make unto thee a graven image, [nor] any likeness [of anything] that is in heaven above, or that is in the earth beneath, or that is in the water under the earth:</VERS>\r\n      <VERS vnumber=\"9\">thou shalt not bow down thyself unto them, nor serve them; for I, Jehovah, thy God, am a jealous God, visiting the iniquity of the fathers upon the children, and upon the third and upon the fourth generation of them that hate me;</VERS>\r\n      <VERS vnumber=\"10\">and showing lovingkindness unto thousands of them that love me and keep my commandments.</VERS>\r\n      <VERS vnumber=\"11\">Thou shalt not take the name of Jehovah thy God in vain: for Jehovah will not hold him guiltless that taketh his name in vain.</VERS>\r\n      <VERS vnumber=\"12\">Observe the sabbath day, to keep it holy, as Jehovah thy God commanded thee.</VERS>\r\n      <VERS vnumber=\"13\">Six days shalt thou labor, and do all thy work;</VERS>\r\n      <VERS vnumber=\"14\">but the seventh day is a sabbath unto Jehovah thy God: [in it] thou shalt not do any work, thou, nor thy son, nor thy daughter, nor thy man-servant, nor thy maid-servant, nor thine ox, nor thine ass, nor any of thy cattle, nor thy stranger that is within thy gates; that thy man-servant and thy maid-servant may rest as well as thou.</VERS>\r\n      <VERS vnumber=\"15\">And thou shalt remember that thou wast a servant in the land of Egypt, and Jehovah thy God brought thee out thence by a mighty hand and by an outstretched arm: therefore Jehovah thy God commanded thee to keep the sabbath day.</VERS>\r\n      <VERS vnumber=\"16\">Honor thy father and thy mother, as Jehovah thy God commanded thee; that thy days may be long, and that it may go well with thee, in the land which Jehovah thy God giveth thee.</VERS>\r\n      <VERS vnumber=\"17\">Thou shalt not kill.</VERS>\r\n      <VERS vnumber=\"18\">Neither shalt thou commit adultery.</VERS>\r\n      <VERS vnumber=\"19\">Neither shalt thou steal.</VERS>\r\n      <VERS vnumber=\"20\">Neither shalt thou bear false witness against thy neighbor.</VERS>\r\n      <VERS vnumber=\"21\">Neither shalt thou covet thy neighbor`s wife; neither shalt thou desire thy neighbor`s house, his field, or his man-servant, or his maid-servant, his ox, or his ass, or anything that is thy neighbor`s.</VERS>\r\n      <VERS vnumber=\"22\">These words Jehovah 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 upon two tables of stone, and gave them unto me.</VERS>\r\n      <VERS vnumber=\"23\">And it came to pass, when ye heard the voice out of the midst of the darkness, while the mountain was burning with fire, that ye came near unto me, even all the heads of your tribes, and your elders;</VERS>\r\n      <VERS vnumber=\"24\">and ye said, Behold, Jehovah our God hath showed 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 speak with man, and he liveth.</VERS>\r\n      <VERS vnumber=\"25\">Now therefore why should we die? for this great fire will consume us: if we hear the voice of Jehovah our God any more, then we shall die.</VERS>\r\n      <VERS vnumber=\"26\">For 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?</VERS>\r\n      <VERS vnumber=\"27\">Go thou near, and hear all that Jehovah our God shall say: and speak thou unto us all that Jehovah our God shall speak unto thee; and we will hear it, and do it.</VERS>\r\n      <VERS vnumber=\"28\">And Jehovah heard the voice of your words, when ye spake unto me; and Jehovah 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.</VERS>\r\n      <VERS vnumber=\"29\">Oh that there were such a 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!</VERS>\r\n      <VERS vnumber=\"30\">Go say to them, Return ye to your tents.</VERS>\r\n      <VERS vnumber=\"31\">But as for thee, stand thou here by me, and I will speak unto thee all the commandment, and the statutes, and the ordinances, which thou shalt teach them, that they may do them in the land which I give them to possess it.</VERS>\r\n      <VERS vnumber=\"32\">Ye shall observe to do therefore as Jehovah your God hath commanded you: ye shall not turn aside to the right hand or to the left.</VERS>\r\n      <VERS vnumber=\"33\">Ye shall walk in all the way which Jehovah 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">Now this is the commandment, the statutes, and the ordinances, which Jehovah your God commanded to teach you, that ye might do them in the land whither ye go over to possess it;</VERS>\r\n      <VERS vnumber=\"2\">that thou mightest fear Jehovah 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.</VERS>\r\n      <VERS vnumber=\"3\">Hear therefore, O Israel, and observe to do it; that it may be well with thee, and that ye may increase mightily, as Jehovah, the God of thy fathers, hath promised unto thee, in a land flowing with milk and honey.</VERS>\r\n      <VERS vnumber=\"4\">Hear, O Israel: Jehovah our God is one Jehovah:</VERS>\r\n      <VERS vnumber=\"5\">and thou shalt love Jehovah thy God with all thy heart, and with all thy soul, and with all thy might.</VERS>\r\n      <VERS vnumber=\"6\">And these words, which I command thee this day, shall be upon thy heart;</VERS>\r\n      <VERS vnumber=\"7\">and thou shalt teach them diligently unto thy children, and shalt talk of them when thou sittest in thy house, and when thou walkest by the way, and when thou liest down, and when thou risest up.</VERS>\r\n      <VERS vnumber=\"8\">And thou shalt bind them for a sign upon thy hand, and they shall be for frontlets between thine eyes.</VERS>\r\n      <VERS vnumber=\"9\">And thou shalt write them upon the door-posts of thy house, and upon thy gates.</VERS>\r\n      <VERS vnumber=\"10\">And it shall be, when Jehovah thy God shall bring 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 buildest not,</VERS>\r\n      <VERS vnumber=\"11\">and houses full of all good things, which thou filledst not, and cisterns hewn out, which thou hewedst not, vineyards and olive-trees, which thou plantedst not, and thou shalt eat and be full;</VERS>\r\n      <VERS vnumber=\"12\">then beware lest thou forget Jehovah, who brought thee forth out of the land of Egypt, out of the house of bondage.</VERS>\r\n      <VERS vnumber=\"13\">Thou shalt fear Jehovah thy God; and him shalt thou serve, and shalt swear by his name.</VERS>\r\n      <VERS vnumber=\"14\">Ye shall not go after other gods, of the gods of the peoples that are round about you;</VERS>\r\n      <VERS vnumber=\"15\">for Jehovah thy God in the midst of thee is a jealous God; lest the anger of Jehovah thy God be kindled against thee, and he destroy thee from off the face of the earth.</VERS>\r\n      <VERS vnumber=\"16\">Ye shall not tempt Jehovah your God, as ye tempted him in Massah.</VERS>\r\n      <VERS vnumber=\"17\">Ye shall diligently keep the commandments of Jehovah your God, and his testimonies, and his statutes, which he hath commanded thee.</VERS>\r\n      <VERS vnumber=\"18\">And thou shalt do that which is right and good in the sight of Jehovah; that it may be well with thee, and that thou mayest go in and possess the good land which Jehovah sware unto thy fathers,</VERS>\r\n      <VERS vnumber=\"19\">to thrust out all thine enemies from before thee, as Jehovah hath spoken.</VERS>\r\n      <VERS vnumber=\"20\">When thy son asketh thee in time to come, saying, What mean the testimonies, and the statutes, and the ordinances, which Jehovah our God hath commanded you?</VERS>\r\n      <VERS vnumber=\"21\">then thou shalt say unto thy son, We were Pharaoh`s bondmen in Egypt: and Jehovah brought us out of Egypt with a mighty hand;</VERS>\r\n      <VERS vnumber=\"22\">and Jehovah showed signs and wonders, great and sore, upon Egypt, upon Pharaoh, and upon all his house, before our eyes;</VERS>\r\n      <VERS vnumber=\"23\">and he brought us out from thence, that he might bring us in, to give us the land which he sware unto our fathers.</VERS>\r\n      <VERS vnumber=\"24\">And Jehovah commanded us to do all these statutes, to fear Jehovah our God, for our good always, that he might preserve us alive, as at this day.</VERS>\r\n      <VERS vnumber=\"25\">And it shall be righteousness unto us, if we observe to do all this commandment before Jehovah our God, as he hath commanded us.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">When Jehovah thy God shall bring thee into the land whither thou goest to possess it, and shall cast out many nations before thee, the Hittite, and the Girgashite, and the Amorite, and the Canaanite, and the Perizzite, and the Hivite, and the Jebusite, seven nations greater and mightier than thou;</VERS>\r\n      <VERS vnumber=\"2\">and when Jehovah thy God shall deliver them up before thee, and thou shalt smite them; then thou shalt utterly destroy them: thou shalt make no covenant with them, nor show mercy unto them;</VERS>\r\n      <VERS vnumber=\"3\">neither shalt thou make marriages with them; thy daughter thou shalt not give unto his son, nor his daughter shalt thou take unto thy son.</VERS>\r\n      <VERS vnumber=\"4\">For he will turn away thy son from following me, that they may serve other gods: so will the anger of Jehovah be kindled against you, and he will destroy thee quickly.</VERS>\r\n      <VERS vnumber=\"5\">But thus shall ye deal with them: ye shall break down their altars, and dash in pieces their pillars, and hew down their Asherim, and burn their graven images with fire.</VERS>\r\n      <VERS vnumber=\"6\">For thou art a holy people unto Jehovah thy God: Jehovah thy God hath chosen thee to be a people for his own possession, above all peoples that are upon the face of the earth.</VERS>\r\n      <VERS vnumber=\"7\">Jehovah 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 peoples:</VERS>\r\n      <VERS vnumber=\"8\">but because Jehovah loveth you, and because he would keep the oath which he sware unto your fathers, hath Jehovah brought you out with a mighty hand, and redeemed you out of the house of bondage, from the hand of Pharaoh king of Egypt.</VERS>\r\n      <VERS vnumber=\"9\">Know therefore that Jehovah thy God, he is God, the faithful God, who keepeth covenant and lovingkindness with them that love him and keep his commandments to a thousand generations,</VERS>\r\n      <VERS vnumber=\"10\">and 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.</VERS>\r\n      <VERS vnumber=\"11\">Thou shalt therefore keep the commandment, and the statutes, and the ordinances, which I command thee this day, to do them.</VERS>\r\n      <VERS vnumber=\"12\">And it shall come to pass, because ye hearken to these ordinances, and keep and do them, that Jehovah thy God will keep with thee the covenant and the lovingkindness which he sware unto thy fathers:</VERS>\r\n      <VERS vnumber=\"13\">and he will love thee, and bless thee, and multiply thee; he will also bless the fruit of thy body and the fruit of thy ground, thy grain and thy new wine and thine oil, the increase of thy cattle and the young of thy flock, in the land which he sware unto thy fathers to give thee.</VERS>\r\n      <VERS vnumber=\"14\">Thou shalt be blessed above all peoples: there shall not be male or female barren among you, or among your cattle.</VERS>\r\n      <VERS vnumber=\"15\">And Jehovah will take away from thee all sickness; and none of the evil diseases of Egypt, which thou knowest, will he put upon thee, but will lay them upon all them that hate thee.</VERS>\r\n      <VERS vnumber=\"16\">And thou shalt consume all the peoples that Jehovah thy God shall deliver unto thee; thine eye shall not pity them: neither shalt thou serve their gods; for that will be a snare unto thee.</VERS>\r\n      <VERS vnumber=\"17\">If thou shalt say in thy heart, These nations are more than I; how can I dispossess them?</VERS>\r\n      <VERS vnumber=\"18\">thou shalt not be afraid of them: thou shalt well remember what Jehovah thy God did unto Pharaoh, and unto all Egypt;</VERS>\r\n      <VERS vnumber=\"19\">the great trials which thine eyes saw, and the signs, and the wonders, and the mighty hand, and the outstretched arm, whereby Jehovah thy God brought thee out: so shall Jehovah thy God do unto all the peoples of whom thou art afraid.</VERS>\r\n      <VERS vnumber=\"20\">Moreover Jehovah thy God will send the hornet among them, until they that are left, and hide themselves, perish from before thee.</VERS>\r\n      <VERS vnumber=\"21\">Thou shalt not be affrighted at them; for Jehovah thy God is in the midst of thee, a great God and a terrible.</VERS>\r\n      <VERS vnumber=\"22\">And Jehovah thy God will cast 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.</VERS>\r\n      <VERS vnumber=\"23\">But Jehovah thy God will deliver them up before thee, and will discomfit them with a great discomfiture, until they be destroyed.</VERS>\r\n      <VERS vnumber=\"24\">And he will deliver their kings into thy hand, and thou shalt make their name to perish from under heaven: there shall no man be able to stand before thee, until thou have destroyed them.</VERS>\r\n      <VERS vnumber=\"25\">The graven images of their gods shall ye burn with fire: thou shalt not covet the silver or the gold that is on them, nor take it unto thee, lest thou be snared therein; for it is an abomination to Jehovah thy God.</VERS>\r\n      <VERS vnumber=\"26\">And thou shalt not bring an abomination into thy house, and become a devoted thing like unto it: thou shalt utterly detest it, and thou shalt utterly abhor it; for it is a devoted thing.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">All the commandment 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 Jehovah sware unto your fathers.</VERS>\r\n      <VERS vnumber=\"2\">And thou shalt remember all the way which Jehovah thy God hath led thee these forty years in the wilderness, that he might humble thee, to prove thee, to know what was in thy heart, whether thou wouldest keep his commandments, or not.</VERS>\r\n      <VERS vnumber=\"3\">And 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 everything that proceedeth out of the mouth of Jehovah doth man live.</VERS>\r\n      <VERS vnumber=\"4\">Thy raiment waxed not old upon thee, neither did thy foot swell, these forty years.</VERS>\r\n      <VERS vnumber=\"5\">And thou shalt consider in thy heart, that, as a man chasteneth his son, so Jehovah thy God chasteneth thee.</VERS>\r\n      <VERS vnumber=\"6\">And thou shalt keep the commandments of Jehovah thy God, to walk in his ways, and to fear him.</VERS>\r\n      <VERS vnumber=\"7\">For Jehovah thy God bringeth thee into a good land, a land of brooks of water, of fountains and springs, flowing forth in valleys and hills;</VERS>\r\n      <VERS vnumber=\"8\">a land of wheat and barley, and vines and fig-trees and pomegranates; a land of olive-trees and honey;</VERS>\r\n      <VERS vnumber=\"9\">a land wherein thou shalt eat bread without scarceness, thou shalt not lack anything in it; a land whose stones are iron, and out of whose hills thou mayest dig copper.</VERS>\r\n      <VERS vnumber=\"10\">And thou shalt eat and be full, and thou shalt bless Jehovah thy God for the good land which he hath given thee.</VERS>\r\n      <VERS vnumber=\"11\">Beware lest thou forget Jehovah thy God, in not keeping his commandments, and his ordinances, and his statutes, which I command thee this day:</VERS>\r\n      <VERS vnumber=\"12\">lest, when thou hast eaten and art full, and hast built goodly houses, and dwelt therein;</VERS>\r\n      <VERS vnumber=\"13\">and when thy herds and thy flocks multiply, and thy silver and thy gold is multiplied, and all that thou hast is multiplied;</VERS>\r\n      <VERS vnumber=\"14\">then thy heart be lifted up, and thou forget Jehovah thy God, who brought thee forth out of the land of Egypt, out of the house of bondage;</VERS>\r\n      <VERS vnumber=\"15\">who led thee through the great and terrible wilderness, [wherein were] fiery serpents and scorpions, and thirsty ground where was no water; who brought thee forth water out of the rock of flint;</VERS>\r\n      <VERS vnumber=\"16\">who 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:</VERS>\r\n      <VERS vnumber=\"17\">and [lest] thou say in thy heart, My power and the might of my hand hath gotten me this wealth.</VERS>\r\n      <VERS vnumber=\"18\">But thou shalt remember Jehovah 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 at this day.</VERS>\r\n      <VERS vnumber=\"19\">And it shall be, if thou shalt forget Jehovah thy God, and walk after other gods, and serve them, and worship them, I testify against you this day that ye shall surely perish.</VERS>\r\n      <VERS vnumber=\"20\">As the nations that Jehovah maketh to perish before you, so shall ye perish; because ye would not hearken unto the voice of Jehovah your God.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">Hear, O Israel: thou art to pass over the Jordan this day, to go in to dispossess nations greater and mightier than thyself, cities great and fortified up to heaven,</VERS>\r\n      <VERS vnumber=\"2\">a people great and tall, the sons of the Anakim, whom thou knowest, and of whom thou hast heard say, Who can stand before the sons of Anak?</VERS>\r\n      <VERS vnumber=\"3\">Know therefore this day, that Jehovah thy God is he who goeth over before thee as a devouring fire; he will destroy them, and he will bring them down before thee: so shalt thou drive them out, and make them to perish quickly, as Jehovah hath spoken unto thee.</VERS>\r\n      <VERS vnumber=\"4\">Speak not thou in thy heart, after that Jehovah thy God hath thrust them out from before thee, saying, For my righteousness Jehovah hath brought me in to possess this land; whereas for the wickedness of these nations Jehovah doth drive them out from before thee.</VERS>\r\n      <VERS vnumber=\"5\">Not for thy righteousness, or for the uprightness of thy heart, dost thou go in to possess their land; but for the wickedness of these nations Jehovah thy God doth drive them out from before thee, and that he may establish the word which Jehovah sware unto thy fathers, to Abraham, to Isaac, and to Jacob.</VERS>\r\n      <VERS vnumber=\"6\">Know therefore, that Jehovah thy God giveth thee not this good land to possess it for thy righteousness; for thou art a stiffnecked people.</VERS>\r\n      <VERS vnumber=\"7\">Remember, forget thou not, how thou provokedst Jehovah thy God to wrath in the wilderness: from the day that thou wentest forth out of the land of Egypt, until ye came unto this place, ye have been rebellious against Jehovah.</VERS>\r\n      <VERS vnumber=\"8\">Also in Horeb ye provoked Jehovah to wrath, and Jehovah was angry with you to destroy you.</VERS>\r\n      <VERS vnumber=\"9\">When I was gone up into the mount to receive the tables of stone, even the tables of the covenant which Jehovah made with you, then I abode in the mount forty days and forty nights; I did neither eat bread nor drink water.</VERS>\r\n      <VERS vnumber=\"10\">And Jehovah delivered unto me the two tables of stone written with the finger of God; and on them [was written] according to all the words, which Jehovah speak with you in the mount out of the midst of the fire in the day of the assembly.</VERS>\r\n      <VERS vnumber=\"11\">And it came to pass at the end of forty days and forty nights, that Jehovah gave me the two tables of stone, even the tables of the covenant.</VERS>\r\n      <VERS vnumber=\"12\">And Jehovah said unto me, Arise, get thee down quickly from hence; for thy people that 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.</VERS>\r\n      <VERS vnumber=\"13\">Furthermore Jehovah spake unto me, saying, I have seen this people, and, behold, it is a stiffnecked people:</VERS>\r\n      <VERS vnumber=\"14\">let 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.</VERS>\r\n      <VERS vnumber=\"15\">So I turned and came down from the mount, and the mount was burning with fire: and the two tables of the covenant were in my two hands.</VERS>\r\n      <VERS vnumber=\"16\">And I looked, and, behold, ye had sinned against Jehovah your God; ye had made you a molten calf: ye had turned aside quickly out of the way which Jehovah had commanded you.</VERS>\r\n      <VERS vnumber=\"17\">And I took hold of the two tables, and cast them out of my two hands, and brake them before your eyes.</VERS>\r\n      <VERS vnumber=\"18\">And I fell down before Jehovah, as at the first, forty days and forty nights; I did neither eat bread nor drink water; because of all your sin which ye sinned, in doing that which was evil in the sight of Jehovah, to provoke him to anger.</VERS>\r\n      <VERS vnumber=\"19\">For I was afraid of the anger and hot displeasure, wherewith Jehovah was wroth against you to destroy you. But Jehovah hearkened unto me that time also.</VERS>\r\n      <VERS vnumber=\"20\">And Jehovah was very angry with Aaron to destroy him: and I prayed for Aaron also at the same time.</VERS>\r\n      <VERS vnumber=\"21\">And I took your sin, the calf which ye had made, and burnt it with fire, and stamped it, grinding it very small, until it was as fine as dust: and I cast the dust thereof into the brook that descended out of the mount.</VERS>\r\n      <VERS vnumber=\"22\">And at Taberah, and at Massah, and at Kibroth-hattaavah, ye provoked Jehovah to wrath.</VERS>\r\n      <VERS vnumber=\"23\">And when Jehovah sent you from Kadesh-barnea, saying, Go up and possess the land which I have given you; then ye rebelled against the commandment of Jehovah your God, and ye believed him not, nor hearkened to his voice.</VERS>\r\n      <VERS vnumber=\"24\">Ye have been rebellious against Jehovah from the day that I knew you.</VERS>\r\n      <VERS vnumber=\"25\">So I fell down before Jehovah the forty days and forty nights that I fell down, because Jehovah had said he would destroy you.</VERS>\r\n      <VERS vnumber=\"26\">And I prayed unto Jehovah, and said, O Lord Jehovah, destroy not thy people and thine inheritance, that thou hast redeemed through thy greatness, that thou hast brought forth out of Egypt with a mighty hand.</VERS>\r\n      <VERS vnumber=\"27\">Remember thy servants, Abraham, Isaac, and Jacob; look not unto the stubbornness of this people, nor to their wickedness, nor to their sin,</VERS>\r\n      <VERS vnumber=\"28\">lest the land whence thou broughtest us out say, Because Jehovah was not able to bring them into the land which he promised unto them, and because he hated them, he hath brought them out to slay them in the wilderness.</VERS>\r\n      <VERS vnumber=\"29\">Yet they are thy people and thine inheritance, which thou broughtest out by thy great power and by thine outstretched arm.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">At that time Jehovah 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.</VERS>\r\n      <VERS vnumber=\"2\">And I will write on the tables the words that were on the first tables which thou brakest, and thou shalt put them in the ark.</VERS>\r\n      <VERS vnumber=\"3\">So I made an ark of acacia wood, and hewed two tables of stone like unto the first, and went up into the mount, having the two tables in my hand.</VERS>\r\n      <VERS vnumber=\"4\">And he wrote on the tables, according to the first writing, the ten commandments, which Jehovah spake unto you in the mount out of the midst of the fire in the day of the assembly: and Jehovah gave them unto me.</VERS>\r\n      <VERS vnumber=\"5\">And I turned and came down from the mount, and put the tables in the ark which I had made; and there they are as Jehovah commanded me.</VERS>\r\n      <VERS vnumber=\"6\">(And the children of Israel journeyed from Beeroth Bene-jaakan to Moserah. There Aaron died, and there he was buried; and Eleazar his son ministered in the priest`s office in his stead.</VERS>\r\n      <VERS vnumber=\"7\">From thence they journeyed unto Gudgodah; and from Gudgodah to Jotbathah, a land of brooks of water.</VERS>\r\n      <VERS vnumber=\"8\">At that time Jehovah set apart the tribe of Levi, to bear the ark of the covenant of Jehovah, to stand before Jehovah to minister unto him, and to bless in his name, unto this day.</VERS>\r\n      <VERS vnumber=\"9\">Wherefore Levi hath no portion nor inheritance with his brethren; Jehovah is his inheritance, according as Jehovah thy God spake unto him.)</VERS>\r\n      <VERS vnumber=\"10\">And I stayed in the mount, as at the first time, forty days and forty nights: and Jehovah hearkened unto me that time also; Jehovah would not destroy thee.</VERS>\r\n      <VERS vnumber=\"11\">And Jehovah said unto me, Arise, take thy journey before the people; and they shall go in and possess the land, which I sware unto their fathers to give unto them.</VERS>\r\n      <VERS vnumber=\"12\">And now, Israel, what doth Jehovah thy God require of thee, but to fear Jehovah thy God, to walk in all his ways, and to love him, and to serve Jehovah thy God with all thy heart and with all thy soul,</VERS>\r\n      <VERS vnumber=\"13\">to keep the commandments of Jehovah, and his statutes, which I command thee this day for thy good?</VERS>\r\n      <VERS vnumber=\"14\">Behold, unto Jehovah thy God belongeth heaven and the heaven of heavens, the earth, with all that is therein.</VERS>\r\n      <VERS vnumber=\"15\">Only Jehovah had a delight in thy fathers to love them, and he chose their seed after them, even you above all peoples, as at this day.</VERS>\r\n      <VERS vnumber=\"16\">Circumcise therefore the foreskin of your heart, and be no more stiffnecked.</VERS>\r\n      <VERS vnumber=\"17\">For Jehovah your God, he is God of gods, and Lord of lords, the great God, the mighty, and the terrible, who regardeth not persons, nor taketh reward.</VERS>\r\n      <VERS vnumber=\"18\">He doth execute justice for the fatherless and widow, and loveth the sojourner, in giving him food and raiment.</VERS>\r\n      <VERS vnumber=\"19\">Love ye therefore the sojourner; for ye were sojourners in the land of Egypt.</VERS>\r\n      <VERS vnumber=\"20\">Thou shalt fear Jehovah thy God; him shalt thou serve; and to him shalt thou cleave, and by his name shalt thou swear.</VERS>\r\n      <VERS vnumber=\"21\">He is thy praise, and he is thy God, that hath done for thee these great and terrible things, which thine eyes have seen.</VERS>\r\n      <VERS vnumber=\"22\">Thy fathers went down into Egypt with threescore and ten persons; and now Jehovah thy God hath made thee as the stars of heaven for multitude.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">Therefore thou shalt love Jehovah thy God, and keep his charge, and his statutes, and his ordinances, and his commandments, alway.</VERS>\r\n      <VERS vnumber=\"2\">And know ye this day: for [I speak] not with your children that have not known, and that have not seen the chastisement of Jehovah your God, his greatness, his mighty hand, and his outstretched arm,</VERS>\r\n      <VERS vnumber=\"3\">and his signs, and his works, which he did in the midst of Egypt unto Pharaoh the king of Egypt, and unto all his land;</VERS>\r\n      <VERS vnumber=\"4\">and 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 Jehovah hath destroyed them unto this day;</VERS>\r\n      <VERS vnumber=\"5\">and what he did unto you in the wilderness, until ye came unto this place;</VERS>\r\n      <VERS vnumber=\"6\">and what he did unto Dathan and Abiram, the sons of Eliab, the son of Reuben; how the earth opened its mouth, and swallowed them up, and their households, and their tents, and every living thing that followed them, in the midst of all Israel:</VERS>\r\n      <VERS vnumber=\"7\">but your eyes have seen all the great work of Jehovah which he did.</VERS>\r\n      <VERS vnumber=\"8\">Therefore shall ye keep all the commandment which I command thee this day, that ye may be strong, and go in and possess the land, whither ye go over to possess it;</VERS>\r\n      <VERS vnumber=\"9\">and that ye may prolong your days in the land, which Jehovah sware unto your fathers to give unto them and to their seed, a land flowing with milk and honey.</VERS>\r\n      <VERS vnumber=\"10\">For 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;</VERS>\r\n      <VERS vnumber=\"11\">but the land, whither ye go over to possess it, is a land of hills and valleys, [and] drinketh water of the rain of heaven,</VERS>\r\n      <VERS vnumber=\"12\">a land which Jehovah thy God careth for: the eyes of Jehovah thy God are always upon it, from the beginning of the year even unto the end of the year.</VERS>\r\n      <VERS vnumber=\"13\">And it shall come to pass, if ye shall hearken diligently unto my commandments which I command you this day, to love Jehovah your God, and to serve him with all your heart and with all your soul,</VERS>\r\n      <VERS vnumber=\"14\">that I will give the rain of your land in its season, the former rain and the latter rain, that thou mayest gather in thy grain, and thy new wine, and thine oil.</VERS>\r\n      <VERS vnumber=\"15\">And I will give grass in thy fields for thy cattle, and thou shalt eat and be full.</VERS>\r\n      <VERS vnumber=\"16\">Take heed to yourselves, lest your heart be deceived, and ye turn aside, and serve other gods, and worship them;</VERS>\r\n      <VERS vnumber=\"17\">and the anger of Jehovah be kindled against you, and he shut up the heavens, so that there shall be no rain, and the land shall not yield its fruit; and ye perish quickly from off the good land which Jehovah giveth you.</VERS>\r\n      <VERS vnumber=\"18\">Therefore shall ye lay up these my words in your heart and in your soul; and ye shall bind them for a sign upon your hand, and they shall be for frontlets between your eyes.</VERS>\r\n      <VERS vnumber=\"19\">And ye shall teach them your children, talking of them, when thou sittest in thy house, and when thou walkest by the way, and when thou liest down, and when thou risest up.</VERS>\r\n      <VERS vnumber=\"20\">And thou shalt write them upon the door-posts of thy house, and upon thy gates;</VERS>\r\n      <VERS vnumber=\"21\">that your days may be multiplied, and the days of your children, in the land which Jehovah sware unto your fathers to give them, as the days of the heavens above the earth.</VERS>\r\n      <VERS vnumber=\"22\">For if ye shall diligently keep all this commandment which I command you, to do it, to love Jehovah your God, to walk in all his ways, and to cleave unto him;</VERS>\r\n      <VERS vnumber=\"23\">then will Jehovah drive out all these nations from before you, and ye shall dispossess nations greater and mightier than yourselves.</VERS>\r\n      <VERS vnumber=\"24\">Every place whereon the sole of your foot shall tread shall be yours: from the wilderness, and Lebanon, from the river, the river Euphrates, even unto the hinder sea shall be your border.</VERS>\r\n      <VERS vnumber=\"25\">There shall no man be able to stand before you: Jehovah 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 spoken unto you.</VERS>\r\n      <VERS vnumber=\"26\">Behold, I set before you this day a blessing and a curse:</VERS>\r\n      <VERS vnumber=\"27\">the blessing, if ye shall hearken unto the commandments of Jehovah your God, which I command you this day;</VERS>\r\n      <VERS vnumber=\"28\">and the curse, if ye shall not hearken unto the commandments of Jehovah 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.</VERS>\r\n      <VERS vnumber=\"29\">And it shall come to pass, when Jehovah thy God shall bring thee into the land whither thou goest to possess it, that thou shalt set the blessing upon mount Gerizim, and the curse upon mount Ebal.</VERS>\r\n      <VERS vnumber=\"30\">Are they not beyond the Jordan, behind the way of the going down of the sun, in the land of the Canaanites that dwell in the Arabah, over against Gilgal, beside the oaks of Moreh?</VERS>\r\n      <VERS vnumber=\"31\">For ye are to pass over the Jordan to go in to possess the land which Jehovah your God giveth you, and ye shall possess it, and dwell therein.</VERS>\r\n      <VERS vnumber=\"32\">And ye shall observe to do all the statutes and the ordinances which I set before you this day.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">These are the statutes and the ordinances which ye shall observe to do in the land which Jehovah, the God of thy fathers, hath given thee to possess it, all the days that ye live upon the earth.</VERS>\r\n      <VERS vnumber=\"2\">Ye shall surely destroy all the places wherein the nations that ye shall dispossess served their gods, upon the high mountains, and upon the hills, and under every green tree:</VERS>\r\n      <VERS vnumber=\"3\">and ye shall break down their altars, and dash in pieces their pillars, and burn their Asherim with fire; and ye shall hew down the graven images of their gods; and ye shall destroy their name out of that place.</VERS>\r\n      <VERS vnumber=\"4\">Ye shall not do so unto Jehovah your God.</VERS>\r\n      <VERS vnumber=\"5\">But unto the place which Jehovah 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;</VERS>\r\n      <VERS vnumber=\"6\">and thither ye shall bring your burnt-offerings, and your sacrifices, and your tithes, and the heave-offering of your hand, and your vows, and your freewill-offerings, and the firstlings of your herd and of your flock:</VERS>\r\n      <VERS vnumber=\"7\">and there ye shall eat before Jehovah your God, and ye shall rejoice in all that ye put your hand unto, ye and your households, wherein Jehovah thy God hath blessed thee.</VERS>\r\n      <VERS vnumber=\"8\">Ye shall not do after all the things that we do here this day, every man whatsoever is right in his own eyes;</VERS>\r\n      <VERS vnumber=\"9\">for ye are not as yet come to the rest and to the inheritance, which Jehovah thy God giveth thee.</VERS>\r\n      <VERS vnumber=\"10\">But when ye go over the Jordan, and dwell in the land which Jehovah your God causeth you to inherit, and he giveth you rest from all your enemies round about, so that ye dwell in safety;</VERS>\r\n      <VERS vnumber=\"11\">then it shall come to pass that to the place which Jehovah 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 Jehovah.</VERS>\r\n      <VERS vnumber=\"12\">And ye shall rejoice before Jehovah your God, ye, and your sons, and your daughters, and your men-servants, and your maid-servants, and the Levite that is within your gates, forasmuch as he hath no portion nor inheritance with you.</VERS>\r\n      <VERS vnumber=\"13\">Take heed to thyself that thou offer not thy burnt-offerings in every place that thou seest;</VERS>\r\n      <VERS vnumber=\"14\">but in the place which Jehovah shall choose in one of thy tribes, there thou shalt offer thy burnt-offerings, and there thou shalt do all that I command thee.</VERS>\r\n      <VERS vnumber=\"15\">Notwithstanding, thou mayest kill and eat flesh within all thy gates, after all the desire of thy soul, according to the blessing of Jehovah thy God which he hath given thee: the unclean and the clean may eat thereof, as of the gazelle, and as of the hart.</VERS>\r\n      <VERS vnumber=\"16\">Only ye shall not eat the blood; thou shalt pour it out upon the earth as water.</VERS>\r\n      <VERS vnumber=\"17\">Thou mayest not eat within thy gates the tithe of thy grain, or of thy new wine, or of thine oil, or the firstlings of thy herd or of thy flock, nor any of thy vows which thou vowest, nor thy freewill-offerings, nor the heave-offering of thy hand;</VERS>\r\n      <VERS vnumber=\"18\">but thou shalt eat them before Jehovah thy God in the place which Jehovah thy God shall choose, thou, and thy son, and thy daughter, and thy man-servant, and thy maid-servant, and the Levite that is within thy gates: and thou shalt rejoice before Jehovah thy God in all that thou puttest thy hand unto.</VERS>\r\n      <VERS vnumber=\"19\">Take heed to thyself that thou forsake not the Levite as long as thou livest in thy land.</VERS>\r\n      <VERS vnumber=\"20\">When Jehovah thy God shall enlarge thy border, as he hath promised thee, and thou shalt say, I will eat flesh, because thy soul desireth to eat flesh; thou mayest eat flesh, after all the desire of thy soul.</VERS>\r\n      <VERS vnumber=\"21\">If the place which Jehovah thy God shall choose, to put his name there, be too far from thee, then thou shalt kill of thy herd and of thy flock, which Jehovah hath given thee, as I have commanded thee; and thou mayest eat within thy gates, after all the desire of thy soul.</VERS>\r\n      <VERS vnumber=\"22\">Even as the gazelle and as the hart is eaten, so thou shalt eat thereof: the unclean and the clean may eat thereof alike.</VERS>\r\n      <VERS vnumber=\"23\">Only be sure that thou eat not the blood: for the blood is the life; and thou shalt not eat the life with the flesh.</VERS>\r\n      <VERS vnumber=\"24\">Thou shalt not eat it; thou shalt pour it out upon the earth as water.</VERS>\r\n      <VERS vnumber=\"25\">Thou 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 eyes of Jehovah.</VERS>\r\n      <VERS vnumber=\"26\">Only thy holy things which thou hast, and thy vows, thou shalt take, and go unto the place which Jehovah shall choose:</VERS>\r\n      <VERS vnumber=\"27\">and thou shalt offer thy burnt-offerings, the flesh and the blood, upon the altar of Jehovah thy God; and the blood of thy sacrifices shall be poured out upon the altar of Jehovah thy God; and thou shalt eat the flesh.</VERS>\r\n      <VERS vnumber=\"28\">Observe 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 eyes of Jehovah thy God.</VERS>\r\n      <VERS vnumber=\"29\">When Jehovah thy God shall cut off the nations from before thee, whither thou goest in to dispossess them, and thou dispossessest them, and dwellest in their land;</VERS>\r\n      <VERS vnumber=\"30\">take heed to thyself that thou be not ensnared to follow them, after that they are destroyed from before thee; and that thou inquire not after their gods, saying, How do these nations serve their gods? even so will I do likewise.</VERS>\r\n      <VERS vnumber=\"31\">Thou shalt not do so unto Jehovah thy God: for every abomination to Jehovah, which he hateth, have they done unto their gods; for even their sons and their daughters do they burn in the fire to their gods.</VERS>\r\n      <VERS vnumber=\"32\">What thing soever I command you, that shall ye observe to do: thou shalt not add thereto, nor diminish from it.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">If there arise in the midst of thee a prophet, or a dreamer of dreams, and he give thee a sign or a wonder,</VERS>\r\n      <VERS vnumber=\"2\">and 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;</VERS>\r\n      <VERS vnumber=\"3\">thou shalt not hearken unto the words of that prophet, or unto that dreamer of dreams: for Jehovah your God proveth you, to know whether ye love Jehovah your God with all your heart and with all your soul.</VERS>\r\n      <VERS vnumber=\"4\">Ye shall walk after Jehovah your God, and fear him, and keep his commandments, and obey his voice, and ye shall serve him, and cleave unto him.</VERS>\r\n      <VERS vnumber=\"5\">And that prophet, or that dreamer of dreams, shall be put to death, because he hath spoken rebellion against Jehovah your God, who brought you out of the land of Egypt, and redeemed thee out of the house of bondage, to draw thee aside out of the way which Jehovah thy God commanded thee to walk in. So shalt thou put away the evil from the midst of thee.</VERS>\r\n      <VERS vnumber=\"6\">If thy brother, the son of thy mother, or thy son, or thy daughter, or the wife of thy bosom, or thy friend, that 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;</VERS>\r\n      <VERS vnumber=\"7\">of the gods of the peoples that 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;</VERS>\r\n      <VERS vnumber=\"8\">thou shalt not consent unto him, nor hearken unto him; neither shall thine eye pity him, neither shalt thou spare, neither shalt thou conceal him:</VERS>\r\n      <VERS vnumber=\"9\">but thou shalt surely kill him; thy hand shall be first upon him to put him to death, and afterwards the hand of all the people.</VERS>\r\n      <VERS vnumber=\"10\">And thou shalt stone him to death with stones, because he hath sought to draw thee away from Jehovah thy God, who brought thee out of the land of Egypt, out of the house of bondage.</VERS>\r\n      <VERS vnumber=\"11\">And all Israel shall hear, and fear, and shall do not more any such wickedness as this is in the midst of thee.</VERS>\r\n      <VERS vnumber=\"12\">If thou shalt hear tell concerning one of thy cities, which Jehovah thy God giveth thee to dwell there, saying,</VERS>\r\n      <VERS vnumber=\"13\">Certain base fellows are gone out from the midst of thee, and have drawn away the inhabitants of their city, saying, Let us go and serve other gods, which ye have not known;</VERS>\r\n      <VERS vnumber=\"14\">then shalt thou inquire, and make search, and ask diligently; and, behold, if it be truth, and the thing certain, that such abomination is wrought in the midst of thee,</VERS>\r\n      <VERS vnumber=\"15\">thou 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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, unto Jehovah thy God: and it shall be a heap for ever; it shall not be built again.</VERS>\r\n      <VERS vnumber=\"17\">And there shall cleave nought of the devoted thing to thy hand; that Jehovah may turn from the fierceness of his anger, and show thee mercy, and have compassion upon thee, and multiply thee, as he hath sworn unto thy fathers;</VERS>\r\n      <VERS vnumber=\"18\">when thou shalt hearken to the voice of Jehovah thy God, to keep all his commandments which I command thee this day, to do that which is right in the eyes of Jehovah thy God.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">Ye are the children of Jehovah your God: ye shall not cut yourselves, nor make any baldness between your eyes for the dead.</VERS>\r\n      <VERS vnumber=\"2\">For thou art a holy people unto Jehovah thy God, and Jehovah hath chosen thee to be a people for his own possession, above all peoples that are upon the face of the earth.</VERS>\r\n      <VERS vnumber=\"3\">Thou shalt not eat any abominable thing.</VERS>\r\n      <VERS vnumber=\"4\">These are the beasts which ye may eat: the ox, the sheep, and the goat,</VERS>\r\n      <VERS vnumber=\"5\">the hart, and the gazelle, and the roebuck, and the wild goat, and the pygarg, and the antelope, and the chamois.</VERS>\r\n      <VERS vnumber=\"6\">And every beast that parteth the hoof, and hath the hoof cloven in two, [and] cheweth the cud, among the beasts, that may ye eat.</VERS>\r\n      <VERS vnumber=\"7\">Nevertheless these ye shall not eat of them that chew the cud, or of them that have the hoof cloven: the camel, and the hare, and the coney; because they chew the cud but part not the hoof, they are unclean unto you.</VERS>\r\n      <VERS vnumber=\"8\">And the swine, because he parteth the hoof but cheweth not the cud, he is unclean unto you: of their flesh ye shall not eat, and their carcasses ye shall not touch.</VERS>\r\n      <VERS vnumber=\"9\">These ye may eat of all that are in the waters: whatsoever hath fins and scales may ye eat;</VERS>\r\n      <VERS vnumber=\"10\">and whatsoever hath not fins and scales ye shall not eat; it is unclean unto you.</VERS>\r\n      <VERS vnumber=\"11\">Of all clean birds ye may eat.</VERS>\r\n      <VERS vnumber=\"12\">But these are they of which ye shall not eat: the eagle, and the gier-eagle, and the ospray,</VERS>\r\n      <VERS vnumber=\"13\">and the glede, and the falcon, and the kite after its kind,</VERS>\r\n      <VERS vnumber=\"14\">and every raven after its kind,</VERS>\r\n      <VERS vnumber=\"15\">and the ostrich, and the night-hawk, and the sea-mew, and the hawk after its kind,</VERS>\r\n      <VERS vnumber=\"16\">the little owl, and the great owl, and the horned owl,</VERS>\r\n      <VERS vnumber=\"17\">and the pelican, and the vulture, and the cormorant,</VERS>\r\n      <VERS vnumber=\"18\">and the stork, and the heron after its kind, and the hoopoe, and the bat.</VERS>\r\n      <VERS vnumber=\"19\">And all winged creeping things are unclean unto you: they shall not be eaten.</VERS>\r\n      <VERS vnumber=\"20\">Of all clean birds ye may eat.</VERS>\r\n      <VERS vnumber=\"21\">Ye shall not eat of anything that dieth of itself: thou mayest give it unto the sojourner that is within thy gates, that he may eat it; or thou mayest sell it unto a foreigner: for thou art a holy people unto Jehovah thy God. Thou shalt not boil a kid in its mother`s milk.</VERS>\r\n      <VERS vnumber=\"22\">Thou shalt surely tithe all the increase of thy seed, that which cometh forth from the field year by year.</VERS>\r\n      <VERS vnumber=\"23\">And thou shalt eat before Jehovah thy God, in the place which he shall choose, to cause his name to dwell there, the tithe of thy grain, of thy new wine, and of thine oil, and the firstlings of thy herd and of thy flock; that thou mayest learn to fear Jehovah thy God always.</VERS>\r\n      <VERS vnumber=\"24\">And if the way be too long for thee, so that thou art not able to carry it, because the place is too far from thee, which Jehovah thy God shall choose, to set his name there, when Jehovah thy God shall bless thee;</VERS>\r\n      <VERS vnumber=\"25\">then shalt thou turn it into money, and bind up the money in thy hand, and shalt go unto the place which Jehovah thy God shall choose:</VERS>\r\n      <VERS vnumber=\"26\">and thou shalt bestow the money for whatsoever thy soul desireth, for oxen, or for sheep, or for wine, or for strong drink, or for whatsoever thy soul asketh of thee; and thou shalt eat there before Jehovah thy God, and thou shalt rejoice, thou and thy household.</VERS>\r\n      <VERS vnumber=\"27\">And the Levite that is within thy gates, thou shalt not forsake him; for he hath no portion nor inheritance with thee.</VERS>\r\n      <VERS vnumber=\"28\">At the end of every three years thou shalt bring forth all the tithe of thine increase in the same year, and shalt lay it up within thy gates:</VERS>\r\n      <VERS vnumber=\"29\">and the Levite, because he hath no portion nor inheritance with thee, and the sojourner, and the fatherless, and the widow, that are within thy gates, shall come, and shall eat and be satisfied; that Jehovah thy God may bless thee in all the work of thy hand which thou doest.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">At the end of every seven years thou shalt make a release.</VERS>\r\n      <VERS vnumber=\"2\">And this is the manner of the release: every creditor shall release that which he hath lent unto his neighbor; he shall not exact it of his neighbor and his brother; because Jehovah`s release hath been proclaimed.</VERS>\r\n      <VERS vnumber=\"3\">Of a foreigner thou mayest exact it: but whatsoever of thine is with thy brother thy hand shall release.</VERS>\r\n      <VERS vnumber=\"4\">Howbeit there shall be no poor with thee; (for Jehovah will surely bless thee in the land which Jehovah thy God giveth thee for an inheritance to possess it;)</VERS>\r\n      <VERS vnumber=\"5\">if only thou diligently hearken unto the voice of Jehovah thy God, to observe to do all this commandment which I command thee this day.</VERS>\r\n      <VERS vnumber=\"6\">For Jehovah thy God will bless thee, as he promised thee: and thou shalt lend unto many nations, but thou shalt not borrow; and thou shalt rule over many nations, but they shall not rule over thee.</VERS>\r\n      <VERS vnumber=\"7\">If there be with thee a poor man, one of thy brethren, within any of thy gates in thy land which Jehovah thy God giveth thee, thou shalt not harden thy heart, nor shut thy hand from thy poor brother;</VERS>\r\n      <VERS vnumber=\"8\">but thou shalt surely open thy hand unto him, and shalt surely lend him sufficient for his need [in that] which he wanteth.</VERS>\r\n      <VERS vnumber=\"9\">Beware that there be not a base thought in thy heart, saying, The seventh year, the year of release, is at hand; and thine eye be evil against thy poor brother, and thou give him nought; and he cry unto Jehovah against thee, and it be sin unto thee.</VERS>\r\n      <VERS vnumber=\"10\">Thou shalt surely give him, and thy heart shall not be grieved when thou givest unto him; because that for this thing Jehovah thy God will bless thee in all thy work, and in all that thou puttest thy hand unto.</VERS>\r\n      <VERS vnumber=\"11\">For the poor will never cease out of the land: therefore I command thee, saying, Thou shalt surely open thy hand unto thy brother, to thy needy, and to thy poor, in thy land.</VERS>\r\n      <VERS vnumber=\"12\">If thy brother, a Hebrew man, or a Hebrew woman, be sold unto thee, and serve thee six years; then in the seventh year thou shalt let him go free from thee.</VERS>\r\n      <VERS vnumber=\"13\">And when thou lettest him go free from thee, thou shalt not let him go empty:</VERS>\r\n      <VERS vnumber=\"14\">thou shalt furnish him liberally out of thy flock, and out of thy threshing-floor, and out of thy winepress; as Jehovah thy God hath blessed thee thou shalt give unto him.</VERS>\r\n      <VERS vnumber=\"15\">And thou shalt remember that thou wast a bondman in the land of Egypt, and Jehovah thy God redeemed thee: therefore I command thee this thing to-day.</VERS>\r\n      <VERS vnumber=\"16\">And it shall be, if he say unto thee, I will not go out from thee; because he loveth thee and thy house, because he is well with thee;</VERS>\r\n      <VERS vnumber=\"17\">then thou shalt take an awl, and thrust it through his ear unto the door, and he shall be thy servant for ever. And also unto thy maid-servant thou shalt do likewise.</VERS>\r\n      <VERS vnumber=\"18\">It shall not seem hard unto thee, when thou lettest him go free from thee; for to the double of the hire of a hireling hath he served thee six years: and Jehovah thy God will bless thee in all that thou doest.</VERS>\r\n      <VERS vnumber=\"19\">All the firstling males that are born of thy herd and of thy flock thou shalt sanctify unto Jehovah thy God: thou shalt do no work with the firstling of thy herd, nor shear the firstling of thy flock.</VERS>\r\n      <VERS vnumber=\"20\">Thou shalt eat it before Jehovah thy God year by year in the place which Jehovah shall choose, thou and thy household.</VERS>\r\n      <VERS vnumber=\"21\">And if it have any blemish, [as if it be] lame or blind, any ill blemish whatsoever, thou shalt not sacrifice it unto Jehovah thy God.</VERS>\r\n      <VERS vnumber=\"22\">Thou shalt eat it within thy gates: the unclean and the clean [shall eat it] alike, as the gazelle, and as the hart.</VERS>\r\n      <VERS vnumber=\"23\">Only thou shalt not eat the blood thereof; thou shalt pour it out upon the ground as water.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">Observe the month of Abib, and keep the passover unto Jehovah thy God; for in the month of Abib Jehovah thy God brought thee forth out of Egypt by night.</VERS>\r\n      <VERS vnumber=\"2\">And thou shalt sacrifice the passover unto Jehovah thy God, of the flock and the herd, in the place which Jehovah shall choose, to cause his name to dwell there.</VERS>\r\n      <VERS vnumber=\"3\">Thou 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.</VERS>\r\n      <VERS vnumber=\"4\">And there shall be no leaven seen with thee in all thy borders seven days; neither shall any of the flesh, which thou sacrificest the first day at even, remain all night until the morning.</VERS>\r\n      <VERS vnumber=\"5\">Thou mayest not sacrifice the passover within any of thy gates, which Jehovah thy God giveth thee;</VERS>\r\n      <VERS vnumber=\"6\">but at the place which Jehovah thy God shall choose, to cause his name to dwell 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.</VERS>\r\n      <VERS vnumber=\"7\">And thou shalt roast and eat it in the place which Jehovah thy God shall choose: and thou shalt turn in the morning, and go unto thy tents.</VERS>\r\n      <VERS vnumber=\"8\">Six days thou shalt eat unleavened bread; and on the seventh day shall be a solemn assembly to Jehovah thy God; thou shalt do no work [therein].</VERS>\r\n      <VERS vnumber=\"9\">Seven weeks shalt thou number unto thee: from the time thou beginnest to put the sickle to the standing grain shalt thou begin to number seven weeks.</VERS>\r\n      <VERS vnumber=\"10\">And thou shalt keep the feast of weeks unto Jehovah thy God with a tribute of a freewill-offering of thy hand, which thou shalt give, according as Jehovah thy God blesseth thee:</VERS>\r\n      <VERS vnumber=\"11\">and thou shalt rejoice before Jehovah thy God, thou, and thy son, and thy daughter, and thy man-servant, and thy maid-servant, and the Levite that is within thy gates, and the sojourner, and the fatherless, and the widow, that are in the midst of thee, in the place which Jehovah thy God shall choose, to cause his name to dwell there.</VERS>\r\n      <VERS vnumber=\"12\">And thou shalt remember that thou wast a bondman in Egypt: and thou shalt observe and do these statutes.</VERS>\r\n      <VERS vnumber=\"13\">Thou shalt keep the feast of tabernacles seven days, after that thou hast gathered in from thy threshing-floor and from thy winepress:</VERS>\r\n      <VERS vnumber=\"14\">and thou shalt rejoice in thy feast, thou, and thy son, and thy daughter, and thy man-servant, and thy maid-servant, and the Levite, and the sojourner, and the fatherless, and the widow, that are within thy gates.</VERS>\r\n      <VERS vnumber=\"15\">Seven days shalt thou keep a feast unto Jehovah thy God in the place which Jehovah shall choose; because Jehovah thy God will bless thee in all thine increase, and in all the work of thy hands, and thou shalt be altogether joyful.</VERS>\r\n      <VERS vnumber=\"16\">Three times in a year shall all thy males appear before Jehovah 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 Jehovah empty:</VERS>\r\n      <VERS vnumber=\"17\">every man shall give as he is able, according to the blessing of Jehovah thy God which he hath given thee.</VERS>\r\n      <VERS vnumber=\"18\">Judges and officers shalt thou make thee in all thy gates, which Jehovah thy God giveth thee, according to thy tribes; and they shall judge the people with righteous judgment.</VERS>\r\n      <VERS vnumber=\"19\">Thou shalt not wrest justice: thou shalt not respect persons; neither shalt thou take a bribe; for a bribe doth blind the eyes of the wise, and pervert the words of the righteous.</VERS>\r\n      <VERS vnumber=\"20\">That which is altogether just shalt thou follow, that thou mayest live, and inherit the land which Jehovah thy God giveth thee.</VERS>\r\n      <VERS vnumber=\"21\">Thou shalt not plant thee an Asherah of any kind of tree beside the altar of Jehovah thy God, which thou shalt make thee.</VERS>\r\n      <VERS vnumber=\"22\">Neither shalt thou set thee up a pillar; which Jehovah thy God hateth.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"17\">\r\n      <VERS vnumber=\"1\">Thou shalt not sacrifice unto Jehovah thy God an ox, or a sheep, wherein is a blemish, [or] anything evil; for that is an abomination unto Jehovah thy God.</VERS>\r\n      <VERS vnumber=\"2\">If there be found in the midst of thee, within any of thy gates which Jehovah thy God giveth thee, man or woman, that doeth that which is evil in the sight of Jehovah thy God, in transgressing his covenant,</VERS>\r\n      <VERS vnumber=\"3\">and hath gone and served other gods, and worshipped them, or the sun, or the moon, or any of the host of heaven, which I have not commanded;</VERS>\r\n      <VERS vnumber=\"4\">and it be told thee, and thou hast heard of it, then shalt thou inquire diligently; and, behold, if it be true, and the thing certain, that such abomination is wrought in Israel,</VERS>\r\n      <VERS vnumber=\"5\">then shalt thou bring forth that man or that woman, who hath done this evil thing, unto thy gates, even the man or the woman; and thou shalt stone them to death with stones.</VERS>\r\n      <VERS vnumber=\"6\">At the mouth of two witnesses, or three witnesses, shall he that is to die be put to death; at the mouth of one witness he shall not be put to death.</VERS>\r\n      <VERS vnumber=\"7\">The hand of the witnesses shall be first upon him to put him to death, and afterward the hand of all the people. So thou shalt put away the evil from the midst of thee.</VERS>\r\n      <VERS vnumber=\"8\">If 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 unto the place which Jehovah thy God shall choose;</VERS>\r\n      <VERS vnumber=\"9\">and thou shalt come unto the priests the Levites, and unto the judge that shall be in those days: and thou shalt inquire; and they shall show thee the sentence of judgment.</VERS>\r\n      <VERS vnumber=\"10\">And thou shalt do according to the tenor of the sentence which they shall show thee from that place which Jehovah shall choose; and thou shalt observe to do according to all that they shall teach thee:</VERS>\r\n      <VERS vnumber=\"11\">according to the tenor of the law which they shall teach thee, and according to the judgment which they shall tell thee, thou shalt do; thou shalt not turn aside from the sentence which they shall show thee, to the right hand, nor to the left.</VERS>\r\n      <VERS vnumber=\"12\">And the man that doeth presumptuously, in not hearkening unto the priest that standeth to minister there before Jehovah thy God, or unto the judge, even that man shall die: and thou shalt put away the evil from Israel.</VERS>\r\n      <VERS vnumber=\"13\">And all the people shall hear, and fear, and do no more presumptuously.</VERS>\r\n      <VERS vnumber=\"14\">When thou art come unto the land which Jehovah thy God giveth thee, and shalt possess it, and shalt dwell therein, and shalt say, I will set a king over me, like all the nations that are round about me;</VERS>\r\n      <VERS vnumber=\"15\">thou shalt surely set him king over thee, whom Jehovah thy God shall choose: one from among thy brethren shalt thou set king over thee; thou mayest not put a foreigner over thee, who is not thy brother.</VERS>\r\n      <VERS vnumber=\"16\">Only he shall not multiply horses to himself, nor cause the people to return to Egypt, to the end that he may multiply horses; forasmuch as Jehovah hath said unto you, Ye shall henceforth return no more that way.</VERS>\r\n      <VERS vnumber=\"17\">Neither shall he multiply wives to himself, that his heart turn not away: neither shall he greatly multiply to himself silver and gold.</VERS>\r\n      <VERS vnumber=\"18\">And 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:</VERS>\r\n      <VERS vnumber=\"19\">and it shall be with him, and he shall read therein all the days of his life; that he may learn to fear Jehovah his God, to keep all the words of this law and these statutes, to do them;</VERS>\r\n      <VERS vnumber=\"20\">that 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"18\">\r\n      <VERS vnumber=\"1\">The priests the Levites, [even] all the tribe of Levi, shall have no portion nor inheritance with Israel: they shall eat the offerings of Jehovah made by fire, and his inheritance.</VERS>\r\n      <VERS vnumber=\"2\">And they shall have no inheritance among their brethren: Jehovah is their inheritance, as he hath spoken unto them.</VERS>\r\n      <VERS vnumber=\"3\">And this shall be the priests` due from the people, from them that offer a sacrifice, whether it be ox or sheep, that they shall give unto the priest the shoulder, and the two cheeks, and the maw.</VERS>\r\n      <VERS vnumber=\"4\">The first-fruits of thy grain, of thy new wine, and of thine oil, and the first of the fleece of thy sheep, shalt thou give him.</VERS>\r\n      <VERS vnumber=\"5\">For Jehovah thy God hath chosen him out of all thy tribes, to stand to minister in the name of Jehovah, him and his sons for ever.</VERS>\r\n      <VERS vnumber=\"6\">And if a Levite come from any of thy gates out of all Israel, where he sojourneth, and come with all the desire of his soul unto the place which Jehovah shall choose;</VERS>\r\n      <VERS vnumber=\"7\">then he shall minister in the name of Jehovah his God, as all his brethren the Levites do, who stand there before Jehovah.</VERS>\r\n      <VERS vnumber=\"8\">They shall have like portions to eat, besides that which cometh of the sale of his patrimony.</VERS>\r\n      <VERS vnumber=\"9\">When thou art come into the land which Jehovah thy God giveth thee, thou shalt not learn to do after the abominations of those nations.</VERS>\r\n      <VERS vnumber=\"10\">There shall not be found with thee any one that maketh his son or his daughter to pass through the fire, one that useth divination, one that practiseth augury, or an enchanter, or a sorcerer,</VERS>\r\n      <VERS vnumber=\"11\">or a charmer, or a consulter with a familiar spirit, or a wizard, or a necromancer.</VERS>\r\n      <VERS vnumber=\"12\">For whosoever doeth these things is an abomination unto Jehovah: and because of these abominations Jehovah thy God doth drive them out from before thee.</VERS>\r\n      <VERS vnumber=\"13\">Thou shalt be perfect with Jehovah thy God.</VERS>\r\n      <VERS vnumber=\"14\">For these nations, that thou shalt dispossess, hearken unto them that practise augury, and unto diviners; but as for thee, Jehovah thy God hath not suffered thee so to do.</VERS>\r\n      <VERS vnumber=\"15\">Jehovah 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;</VERS>\r\n      <VERS vnumber=\"16\">according to all that thou desiredst of Jehovah thy God in Horeb in the day of the assembly, saying, Let me not hear again the voice of Jehovah my God, neither let me see this great fire any more, that I die not.</VERS>\r\n      <VERS vnumber=\"17\">And Jehovah said unto me, They have well said that which they have spoken.</VERS>\r\n      <VERS vnumber=\"18\">I will raise them up a prophet from among their brethren, like unto thee; and I will put my words in his mouth, and he shall speak unto them all that I shall command him.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">But the prophet, that shall speak a word presumptuously in my name, which I have not commanded him to speak, or that shall speak in the name of other gods, that same prophet shall die.</VERS>\r\n      <VERS vnumber=\"21\">And if thou say in thy heart, How shall we know the word which Jehovah hath not spoken?</VERS>\r\n      <VERS vnumber=\"22\">when a prophet speaketh in the name of Jehovah, if the thing follow not, nor come to pass, that is the thing which Jehovah hath not spoken: the prophet hath spoken it presumptuously, thou shalt not be afraid of him.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"19\">\r\n      <VERS vnumber=\"1\">When Jehovah thy God shall cut off the nations, whose land Jehovah thy God giveth thee, and thou succeedest them, and dwellest in their cities, and in their houses;</VERS>\r\n      <VERS vnumber=\"2\">thou shalt set apart three cities for thee in the midst of thy land, which Jehovah thy God giveth thee to possess it.</VERS>\r\n      <VERS vnumber=\"3\">Thou shalt prepare thee the way, and divide the borders of thy land, which Jehovah thy God causeth thee to inherit, into three parts, that every manslayer may flee thither.</VERS>\r\n      <VERS vnumber=\"4\">And this is the case of the manslayer, that shall flee thither and live: whoso killeth his neighbor unawares, and hated him not in time past;</VERS>\r\n      <VERS vnumber=\"5\">as when a man goeth into the forest with his neighbor 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 neighbor, so that he dieth; he shall flee unto one of these cities and live:</VERS>\r\n      <VERS vnumber=\"6\">lest the avenger of blood pursue the manslayer, while his heart is hot, and overtake him, because the way is long, and smite him mortally; whereas he was not worthy of death, inasmuch as he hated him not in time past.</VERS>\r\n      <VERS vnumber=\"7\">Wherefore I command thee, saying, Thou shalt set apart three cities for thee.</VERS>\r\n      <VERS vnumber=\"8\">And if Jehovah thy God enlarge thy border, as he hath sworn unto thy fathers, and give thee all the land which he promised to give unto thy fathers;</VERS>\r\n      <VERS vnumber=\"9\">if thou shalt keep all this commandment to do it, which I command thee this day, to love Jehovah thy God, and to walk ever in his ways; then shalt thou add three cities more for thee, besides these three:</VERS>\r\n      <VERS vnumber=\"10\">that innocent blood be not shed in the midst of thy land, which Jehovah thy God giveth thee for an inheritance, and so blood be upon thee.</VERS>\r\n      <VERS vnumber=\"11\">But if any man hate his neighbor, and lie in wait for him, and rise up against him, and smite him mortally so that he dieth, and he flee into one of these cities;</VERS>\r\n      <VERS vnumber=\"12\">then 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.</VERS>\r\n      <VERS vnumber=\"13\">Thine eye shall not pity him, but thou shalt put away the innocent blood from Israel, that it may go well with thee.</VERS>\r\n      <VERS vnumber=\"14\">Thou shalt not remove thy neighbor`s landmark, which they of old time have set, in thine inheritance which thou shalt inherit, in the land that Jehovah thy God giveth thee to possess it.</VERS>\r\n      <VERS vnumber=\"15\">One 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 a matter be established.</VERS>\r\n      <VERS vnumber=\"16\">If an unrighteous witness rise up against any man to testify against him of wrong-doing,</VERS>\r\n      <VERS vnumber=\"17\">then both the men, between whom the controversy is, shall stand before Jehovah, before the priests and the judges that shall be in those days;</VERS>\r\n      <VERS vnumber=\"18\">and the judges shall make diligent inquisition: and, behold, if the witness be a false witness, and have testified falsely against his brother;</VERS>\r\n      <VERS vnumber=\"19\">then shall ye do unto him, as he had thought to do unto his brother: so shalt thou put away the evil from the midst of thee.</VERS>\r\n      <VERS vnumber=\"20\">And those that remain shall hear, and fear, and shall henceforth commit no more any such evil in the midst of thee.</VERS>\r\n      <VERS vnumber=\"21\">And thine eyes shall not pity; life [shall go] for life, eye for eye, tooth for tooth, hand for hand, foot for foot.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"20\">\r\n      <VERS vnumber=\"1\">When thou goest forth to battle against thine enemies, and seest horses, and chariots, [and] a people more than thou, thou shalt not be afraid of them; for Jehovah thy God is with thee, who brought thee up out of the land of Egypt.</VERS>\r\n      <VERS vnumber=\"2\">And it shall be, when ye draw nigh unto the battle, that the priest shall approach and speak unto the people,</VERS>\r\n      <VERS vnumber=\"3\">and shall say unto them, Hear, O Israel, ye draw nigh this day unto battle against your enemies: let not your heart faint; fear not, nor tremble, neither be ye affrighted at them;</VERS>\r\n      <VERS vnumber=\"4\">for Jehovah your God is he that goeth with you, to fight for you against your enemies, to save you.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And what man is there that hath planted a vineyard, and hath not used the fruit thereof? let him go and return unto his house, lest he die in the battle, and another man use the fruit thereof.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And the officers shall speak further unto the people, and they shall say, What man is there that is fearful and faint-hearted? let him go and return unto his house, lest his brethren`s heart melt as his heart.</VERS>\r\n      <VERS vnumber=\"9\">And it shall be, when the officers have made an end of speaking unto the people, that they shall appoint captains of hosts at the head of the people.</VERS>\r\n      <VERS vnumber=\"10\">When thou drawest nigh unto a city to fight against it, then proclaim peace unto it.</VERS>\r\n      <VERS vnumber=\"11\">And it shall be, if it make thee answer of peace, and open unto thee, then it shall be, that all the people that are found therein shall become tributary unto thee, and shall serve thee.</VERS>\r\n      <VERS vnumber=\"12\">And if it will make no peace with thee, but will make war against thee, then thou shalt besiege it:</VERS>\r\n      <VERS vnumber=\"13\">and when Jehovah thy God delivereth it into thy hand, thou shalt smite every male thereof with the edge of the sword:</VERS>\r\n      <VERS vnumber=\"14\">but the women, and the little ones, and the cattle, and all that is in the city, even all the spoil thereof, shalt thou take for a prey unto thyself; and thou shalt eat the spoil of thine enemies, which Jehovah thy God hath given thee.</VERS>\r\n      <VERS vnumber=\"15\">Thus shalt thou do unto all the cities which are very far off from thee, which are not of the cities of these nations.</VERS>\r\n      <VERS vnumber=\"16\">But of the cities of these peoples, that Jehovah thy God giveth thee for an inheritance, thou shalt save alive nothing that breatheth;</VERS>\r\n      <VERS vnumber=\"17\">but thou shalt utterly destroy them: the Hittite, and the Amorite, the Canaanite, and the Perizzite, the Hivite, and the Jebusite; as Jehovah thy God hath commanded thee;</VERS>\r\n      <VERS vnumber=\"18\">that they teach you not to do after all their abominations, which they have done unto their gods; so would ye sin against Jehovah your God.</VERS>\r\n      <VERS vnumber=\"19\">When thou shalt besiege a city a long time, in making war against it to take it, thou shalt not destroy the trees thereof by wielding an axe against them; for thou mayest eat of them, and thou shalt not cut them down; for is the tree of the field man, that it should be besieged of thee?</VERS>\r\n      <VERS vnumber=\"20\">Only the trees of which thou knowest that they are not trees for food, thou shalt destroy and cut them down; and thou shalt build bulwarks against the city that maketh war with thee, until it fall.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"21\">\r\n      <VERS vnumber=\"1\">If one be found slain in the land which Jehovah thy God giveth thee to possess it, lying in the field, and it be not known who hath smitten him;</VERS>\r\n      <VERS vnumber=\"2\">then thy elders and thy judges shall come forth, and they shall measure unto the cities which are round about him that is slain:</VERS>\r\n      <VERS vnumber=\"3\">and it shall be, that the city which is nearest unto the slain man, even the elders of that city shall take a heifer of the herd, which hath not been wrought with, and which hath not drawn in the yoke;</VERS>\r\n      <VERS vnumber=\"4\">and the elders of that city shall bring down the heifer unto a valley with running water, which is neither plowed nor sown, and shall break the heifer`s neck there in the valley.</VERS>\r\n      <VERS vnumber=\"5\">And the priests the sons of Levi shall come near; for them Jehovah thy God hath chosen to minister unto him, and to bless in the name of Jehovah; and according to their word shall every controversy and every stroke be.</VERS>\r\n      <VERS vnumber=\"6\">And all the elders of that city, who are nearest unto the slain man, shall wash their hands over the heifer whose neck was broken in the valley;</VERS>\r\n      <VERS vnumber=\"7\">and they shall answer and say, Our hands have not shed this blood, neither have our eyes seen it.</VERS>\r\n      <VERS vnumber=\"8\">Forgive, O Jehovah, thy people Israel, whom thou hast redeemed, and suffer not innocent blood [to remain] in the midst of thy people Israel. And the blood shall be forgiven them.</VERS>\r\n      <VERS vnumber=\"9\">So shalt thou put away the innocent blood from the midst of thee, when thou shalt do that which is right in the eyes of Jehovah.</VERS>\r\n      <VERS vnumber=\"10\">When thou goest forth to battle against thine enemies, and Jehovah thy God delivereth them into thy hands, and thou carriest them away captive,</VERS>\r\n      <VERS vnumber=\"11\">and seest among the captives a beautiful woman, and thou hast a desire unto her, and wouldest take her to thee to wife;</VERS>\r\n      <VERS vnumber=\"12\">then thou shalt bring her home to thy house; and she shall shave her head, and pare her nails;</VERS>\r\n      <VERS vnumber=\"13\">and she shall put the raiment of her captivity from off her, and shall remain in thy 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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 deal with her as a slave, because thou hast humbled her.</VERS>\r\n      <VERS vnumber=\"15\">If a man have two wives, the one beloved, and the other hated, and they have borne him children, both the beloved and the hated; and if the first-born son be hers that was hated;</VERS>\r\n      <VERS vnumber=\"16\">then it shall be, in the day that he causeth his sons to inherit that which he hath, that he may not make the son of the beloved the first-born before the son of the hated, who is the first-born:</VERS>\r\n      <VERS vnumber=\"17\">but he shall acknowledge the first-born, the son of the hated, by giving him a double portion of all that he hath; for he is the beginning of his strength; the right of the first-born is his.</VERS>\r\n      <VERS vnumber=\"18\">If a man have a stubborn and rebellious son, that will not obey the voice of his father, or the voice of his mother, and, though they chasten him, will not hearken unto them;</VERS>\r\n      <VERS vnumber=\"19\">then 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;</VERS>\r\n      <VERS vnumber=\"20\">and 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.</VERS>\r\n      <VERS vnumber=\"21\">And all the men of his city shall stone him to death with stones: so shalt thou put away the evil from the midst of thee; and all Israel shall hear, and fear.</VERS>\r\n      <VERS vnumber=\"22\">And if a man have committed a sin worthy of death, and he be put to death, and thou hang him on a tree;</VERS>\r\n      <VERS vnumber=\"23\">his body shall not remain all night upon the tree, but thou shalt surely bury him the same day; for he that is hanged is accursed of God; that thou defile not thy land which Jehovah thy God giveth thee for an inheritance.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"22\">\r\n      <VERS vnumber=\"1\">Thou shalt not see thy brother`s ox or his sheep go astray, and hide thyself from them: thou shalt surely bring them again unto thy brother.</VERS>\r\n      <VERS vnumber=\"2\">And if thy brother be not nigh unto thee, or if thou know him not, then thou shalt bring it home to thy house, and it shall be with thee until thy brother seek after it, and thou shalt restore it to him.</VERS>\r\n      <VERS vnumber=\"3\">And so shalt thou do with his ass; and so shalt thou do with his garment; and so shalt thou do with every lost thing of thy brother`s, which he hath lost, and thou hast found: thou mayest not hide thyself.</VERS>\r\n      <VERS vnumber=\"4\">Thou shalt not see thy brother`s ass or his ox fallen down by the way, and hide thyself from them: thou shalt surely help him to lift them up again.</VERS>\r\n      <VERS vnumber=\"5\">A woman shall not wear that which pertaineth unto a man, neither shall a man put on a woman`s garment; for whosoever doeth these things is an abomination unto Jehovah thy God.</VERS>\r\n      <VERS vnumber=\"6\">If a bird`s nest chance to be before thee in the way, in any tree or on the ground, with young ones or eggs, and the dam sitting upon the young, or upon the eggs, thou shalt not take the dam with the young:</VERS>\r\n      <VERS vnumber=\"7\">thou shalt surely let the dam go, but the young thou mayest take unto thyself; that it may be well with thee, and that thou mayest prolong thy days.</VERS>\r\n      <VERS vnumber=\"8\">When thou buildest a new house, then thou shalt make a battlement for thy roof, that thou bring not blood upon thy house, if any man fall from thence.</VERS>\r\n      <VERS vnumber=\"9\">Thou shalt not sow thy vineyard with two kinds of seed, lest the whole fruit be forfeited, the seed which thou hast sown, and the increase of the vineyard.</VERS>\r\n      <VERS vnumber=\"10\">Thou shalt not plow with an ox and an ass together.</VERS>\r\n      <VERS vnumber=\"11\">Thou shalt not wear a mingled stuff, wool and linen together.</VERS>\r\n      <VERS vnumber=\"12\">Thou shalt make thee fringes upon the four borders of thy vesture, wherewith thou coverest thyself.</VERS>\r\n      <VERS vnumber=\"13\">If any man take a wife, and go in unto her, and hate her,</VERS>\r\n      <VERS vnumber=\"14\">and lay shameful things to her charge, and bring up an evil name upon her, and say, I took this woman, and when I came nigh to her, I found not in her the tokens of virginity;</VERS>\r\n      <VERS vnumber=\"15\">then 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;</VERS>\r\n      <VERS vnumber=\"16\">and the damsel`s father shall say unto the elders, I gave my daughter unto this man to wife, and he hateth her;</VERS>\r\n      <VERS vnumber=\"17\">and, lo, he hath laid shameful things [to her charge], saying, I found not in thy daughter the tokens of virginity; and yet these are the tokens of my daughter`s virginity. And they shall spread the garment before the elders of the city.</VERS>\r\n      <VERS vnumber=\"18\">And the elders of that city shall take the man and chastise him;</VERS>\r\n      <VERS vnumber=\"19\">and they shall fine him a 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.</VERS>\r\n      <VERS vnumber=\"20\">But if this thing be true, that the tokens of virginity were not found in the damsel;</VERS>\r\n      <VERS vnumber=\"21\">then they shall bring out the damsel to the door of her father`s house, and the men of her city shall stone her to death with stones, because she hath wrought folly in Israel, to play the harlot in her father`s house: so shalt thou put away the evil from the midst of thee.</VERS>\r\n      <VERS vnumber=\"22\">If a man be found lying with a woman married to a husband, then they shall both of them die, the man that lay with the woman, and the woman: so shalt thou put away the evil from Israel.</VERS>\r\n      <VERS vnumber=\"23\">If there be a damsel that is a virgin betrothed unto a husband, and a man find her in the city, and lie with her;</VERS>\r\n      <VERS vnumber=\"24\">then ye shall bring them both out unto the gate of that city, and ye shall stone them to death with stones; the damsel, because she cried not, being in the city; and the man, because he hath humbled his neighbor`s wife: so thou shalt put away the evil from the midst of thee.</VERS>\r\n      <VERS vnumber=\"25\">But if the man find the damsel that is betrothed in the field, and the man force her, and lie with her; then the man only that lay with her shall die:</VERS>\r\n      <VERS vnumber=\"26\">but 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 neighbor, and slayeth him, even so is this matter;</VERS>\r\n      <VERS vnumber=\"27\">for he found her in the field, the betrothed damsel cried, and there was none to save her.</VERS>\r\n      <VERS vnumber=\"28\">If a man find a damsel that is a virgin, that is not betrothed, and lay hold on her, and lie with her, and they be found;</VERS>\r\n      <VERS vnumber=\"29\">then 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.</VERS>\r\n      <VERS vnumber=\"30\">A man shall not take his father`s wife, and shall not uncover his father`s skirt.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"23\">\r\n      <VERS vnumber=\"1\">He that is wounded in the stones, or hath his privy member cut off, shall not enter into the assembly of Jehovah.</VERS>\r\n      <VERS vnumber=\"2\">A bastard shall not enter into the assembly of Jehovah; even to the tenth generation shall none of his enter into the assembly of Jehovah.</VERS>\r\n      <VERS vnumber=\"3\">An Ammonite or a Moabite shall not enter into the assembly of Jehovah; even to the tenth generation shall none belonging to them enter into the assembly of Jehovah for ever:</VERS>\r\n      <VERS vnumber=\"4\">because 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 from Pethor of Mesopotamia, to curse thee.</VERS>\r\n      <VERS vnumber=\"5\">Nevertheless Jehovah thy God would not hearken unto Balaam; but Jehovah thy God turned the curse into a blessing unto thee, because Jehovah thy God loved thee.</VERS>\r\n      <VERS vnumber=\"6\">Thou shalt not seek their peace nor their prosperity all thy days for ever.</VERS>\r\n      <VERS vnumber=\"7\">Thou shalt not abhor an Edomite; for he is thy brother: thou shalt not abhor an Egyptian, because thou wast a sojourner in his land.</VERS>\r\n      <VERS vnumber=\"8\">The children of the third generation that are born unto them shall enter into the assembly of Jehovah.</VERS>\r\n      <VERS vnumber=\"9\">When thou goest forth in camp against thine enemies, then thou shalt keep thee from every evil thing.</VERS>\r\n      <VERS vnumber=\"10\">If there be among you any man, that is not clean by reason of that which chanceth him by night, then shall he go abroad out of the camp, he shall not come within the camp:</VERS>\r\n      <VERS vnumber=\"11\">but it shall be, when evening cometh on, he shall bathe himself in water; and when the sun is down, he shall come within the camp.</VERS>\r\n      <VERS vnumber=\"12\">Thou shalt have a place also without the camp, whither thou shalt go forth abroad:</VERS>\r\n      <VERS vnumber=\"13\">and thou shalt have a paddle among thy weapons; and it shall be, when thou sittest down abroad, thou shalt dig therewith, and shalt turn back and cover that which cometh from thee:</VERS>\r\n      <VERS vnumber=\"14\">for Jehovah 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 may not see an unclean thing in thee, and turn away from thee.</VERS>\r\n      <VERS vnumber=\"15\">Thou shalt not deliver unto his master a servant that is escaped from his master unto thee:</VERS>\r\n      <VERS vnumber=\"16\">he shall dwell with thee, in the midst of thee, in the place which he shall choose within one of thy gates, where it pleaseth him best: thou shalt not oppress him.</VERS>\r\n      <VERS vnumber=\"17\">There shall be no prostitute of the daughters of Israel, neither shall there be a sodomite of the sons of Israel.</VERS>\r\n      <VERS vnumber=\"18\">Thou shalt not bring the hire of a harlot, or the wages of a dog, into the house of Jehovah thy God for any vow: for even both these are an abomination unto Jehovah thy God.</VERS>\r\n      <VERS vnumber=\"19\">Thou shalt not lend upon interest to thy brother; interest of money, interest of victuals, interest of anything that is lent upon interest:</VERS>\r\n      <VERS vnumber=\"20\">unto a foreigner thou mayest lend upon interest; but unto thy brother thou shalt not lend upon interest, that Jehovah thy God may bless thee in all that thou puttest thy hand unto, in the land whither thou goest in to possess it.</VERS>\r\n      <VERS vnumber=\"21\">When thou shalt vow a vow unto Jehovah thy God, thou shalt not be slack to pay it: for Jehovah thy God will surely require it of thee; and it would be sin in thee.</VERS>\r\n      <VERS vnumber=\"22\">But if thou shalt forbear to vow, it shall be no sin in thee.</VERS>\r\n      <VERS vnumber=\"23\">That which is gone out of thy lips thou shalt observe and do; according as thou hast vowed unto Jehovah thy God, a freewill-offering, which thou hast promised with thy mouth.</VERS>\r\n      <VERS vnumber=\"24\">When thou comest into thy neighbor`s vineyard, then thou mayest eat of grapes thy fill at thine own pleasure; but thou shalt not put any in thy vessel.</VERS>\r\n      <VERS vnumber=\"25\">When thou comest into thy neighbor`s standing grain, then thou mayest pluck the ears with thy hand; but thou shalt not move a sickle unto thy neighbor`s standing grain.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"24\">\r\n      <VERS vnumber=\"1\">When a man taketh a wife, and marrieth her, then it shall be, if she find no favor in his eyes, because he hath found some unseemly thing in her, that he shall write her a bill of divorcement, and give it in her hand, and send her out of his house.</VERS>\r\n      <VERS vnumber=\"2\">And when she is departed out of his house, she may go and be another man`s [wife].</VERS>\r\n      <VERS vnumber=\"3\">And if the latter husband hate her, and write her a bill of divorcement, and give it in her hand, and send her out of his house; or if the latter husband die, who took her to be his wife;</VERS>\r\n      <VERS vnumber=\"4\">her former husband, who sent her away, may not take her again to be his wife, after that she is defiled; for that is abomination before Jehovah: and thou shalt not cause the land to sin, which Jehovah thy God giveth thee for an inheritance.</VERS>\r\n      <VERS vnumber=\"5\">When a man taketh a new wife, he shall not go out in the host, neither shall he be charged with any business: he shall be free at home one year, and shall cheer his wife whom he hath taken.</VERS>\r\n      <VERS vnumber=\"6\">No man shall take the mill or the upper millstone to pledge; for he taketh [a man`s] life to pledge.</VERS>\r\n      <VERS vnumber=\"7\">If a man be found stealing any of his brethren of the children of Israel, and he deal with him as a slave, or sell him; then that thief shall die: so shalt thou put away the evil from the midst of thee.</VERS>\r\n      <VERS vnumber=\"8\">Take 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.</VERS>\r\n      <VERS vnumber=\"9\">Remember what Jehovah thy God did unto Miriam, by the way as ye came forth out of Egypt.</VERS>\r\n      <VERS vnumber=\"10\">When thou dost lend thy neighbor any manner of loan, thou shalt not go into his house to fetch his pledge.</VERS>\r\n      <VERS vnumber=\"11\">Thou shalt stand without, and the man to whom thou dost lend shall bring forth the pledge without unto thee.</VERS>\r\n      <VERS vnumber=\"12\">And if he be a poor man, thou shalt not sleep with his pledge;</VERS>\r\n      <VERS vnumber=\"13\">thou shalt surely restore to him the pledge when the sun goeth down, that he may sleep in his garment, and bless thee: and it shall be righteousness unto thee before Jehovah thy God.</VERS>\r\n      <VERS vnumber=\"14\">Thou shalt not oppress a hired servant that is poor and needy, whether he be of thy brethren, or of thy sojourners that are in thy land within thy gates:</VERS>\r\n      <VERS vnumber=\"15\">in 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 Jehovah, and it be sin unto thee.</VERS>\r\n      <VERS vnumber=\"16\">The 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.</VERS>\r\n      <VERS vnumber=\"17\">Thou shalt not wrest the justice [due] to the sojourner, [or] to the fatherless, nor take the widow`s raiment to pledge;</VERS>\r\n      <VERS vnumber=\"18\">but thou shalt remember that thou wast a bondman in Egypt, and Jehovah thy God redeemed thee thence: therefore I command thee to do this thing.</VERS>\r\n      <VERS vnumber=\"19\">When thou reapest thy 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 sojourner, for the fatherless, and for the widow; that Jehovah thy God may bless thee in all the work of thy hands.</VERS>\r\n      <VERS vnumber=\"20\">When thou beatest thine olive-tree, thou shalt not go over the boughs again: it shall be for the sojourner, for the fatherless, and for the widow.</VERS>\r\n      <VERS vnumber=\"21\">When thou gatherest [the grapes of] thy vineyard, thou shalt not glean it after thee: it shall be for the sojourner, for the fatherless, and for the widow.</VERS>\r\n      <VERS vnumber=\"22\">And thou shalt remember that thou wast a bondman in the land of Egypt: therefore I command thee to do this thing.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"25\">\r\n      <VERS vnumber=\"1\">If there be a controversy between men, and they come unto judgment, and [the judges] judge them; then they shall justify the righteous, and condemn the wicked;</VERS>\r\n      <VERS vnumber=\"2\">and 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 wickedness, by number.</VERS>\r\n      <VERS vnumber=\"3\">Forty stripes he may give him, he shall not exceed; lest, if he should exceed, and beat him above these with many stripes, then thy brother should seem vile unto thee.</VERS>\r\n      <VERS vnumber=\"4\">Thou shalt not muzzle the ox when he treadeth out [the grain].</VERS>\r\n      <VERS vnumber=\"5\">If brethren dwell together, and one of them die, and have no son, the wife of the dead shall not be married 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 a husband`s brother unto her.</VERS>\r\n      <VERS vnumber=\"6\">And it shall be, that the first-born that she beareth shall succeed in the name of his brother that is dead, that his name be not blotted out of Israel.</VERS>\r\n      <VERS vnumber=\"7\">And if the man like not to take his brother`s wife, then his brother`s wife shall 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 a husband`s brother unto me.</VERS>\r\n      <VERS vnumber=\"8\">Then the elders of his city shall call him, and speak unto him: and if he stand, and say, I like not to take her;</VERS>\r\n      <VERS vnumber=\"9\">then 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 she shall answer and say, So shall it be done unto the man that doth not build up his brother`s house.</VERS>\r\n      <VERS vnumber=\"10\">And his name shall be called in Israel, The house of him that hath his shoe loosed.</VERS>\r\n      <VERS vnumber=\"11\">When men strive together one with another, and the wife of the one draweth near to deliver her husband out of the hand of him that smiteth him, and putteth forth her hand, and taketh him by the secrets;</VERS>\r\n      <VERS vnumber=\"12\">then thou shalt cut off her hand, thine eye shall have no pity.</VERS>\r\n      <VERS vnumber=\"13\">Thou shalt not have in thy bag diverse weights, a great and a small.</VERS>\r\n      <VERS vnumber=\"14\">Thou shalt not have in thy house diverse measures, a great and a small.</VERS>\r\n      <VERS vnumber=\"15\">A perfect and just weight shalt thou have; a perfect and just measure shalt thou have: that thy days may be long in the land which Jehovah thy God giveth thee.</VERS>\r\n      <VERS vnumber=\"16\">For all that do such things, [even] all that do unrighteously, are an abomination unto Jehovah thy God.</VERS>\r\n      <VERS vnumber=\"17\">Remember what Amalek did unto thee by the way as ye came forth out of Egypt;</VERS>\r\n      <VERS vnumber=\"18\">how he met thee by the way, and smote the hindmost of thee, all that were feeble behind thee, when thou wast faint and weary; and he feared not God.</VERS>\r\n      <VERS vnumber=\"19\">Therefore it shall be, when Jehovah thy God hath given thee rest from all thine enemies round about, in the land which Jehovah 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"26\">\r\n      <VERS vnumber=\"1\">And it shall be, when thou art come in unto the land which Jehovah thy God giveth thee for an inheritance, and possessest it, and dwellest therein,</VERS>\r\n      <VERS vnumber=\"2\">that thou shalt take of the first of all the fruit of the ground, which thou shalt bring in from thy land that Jehovah thy God giveth thee; and thou shalt put it in a basket, and shalt go unto the place which Jehovah thy God shall choose, to cause his name to dwell there.</VERS>\r\n      <VERS vnumber=\"3\">And thou shalt come unto the priest that shall be in those days, and say unto him, I profess this day unto Jehovah thy God, that I am come unto the land which Jehovah sware unto our fathers to give us.</VERS>\r\n      <VERS vnumber=\"4\">And the priest shall take the basket out of thy hand, and set it down before the altar of Jehovah thy God.</VERS>\r\n      <VERS vnumber=\"5\">And thou shalt answer and say before Jehovah thy God, A Syrian ready to perish was my father; and he went down into Egypt, and sojourned there, few in number; and he became there a nation, great, mighty, and populous.</VERS>\r\n      <VERS vnumber=\"6\">And the Egyptians dealt ill with us, and afflicted us, and laid upon us hard bondage:</VERS>\r\n      <VERS vnumber=\"7\">and we cried unto Jehovah, the God of our fathers, and Jehovah heard our voice, and saw our affliction, and our toil, and our oppression;</VERS>\r\n      <VERS vnumber=\"8\">and Jehovah 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;</VERS>\r\n      <VERS vnumber=\"9\">and he hath brought us into this place, and hath given us this land, a land flowing with milk and honey.</VERS>\r\n      <VERS vnumber=\"10\">And now, behold, I have brought the first of the fruit of the ground, which thou, O Jehovah, hast given me. And thou shalt set it down before Jehovah thy God, and worship before Jehovah thy God:</VERS>\r\n      <VERS vnumber=\"11\">and thou shalt rejoice in all the good which Jehovah thy God hath given unto thee, and unto thy house, thou, and the Levite, and the sojourner that is in the midst of thee.</VERS>\r\n      <VERS vnumber=\"12\">When thou hast made an end of tithing all the tithe of thine increase in the third year, which is the year of tithing, then thou shalt give it unto the Levite, to the sojourner, to the fatherless, and to the widow, that they may eat within thy gates, and be filled.</VERS>\r\n      <VERS vnumber=\"13\">And thou shalt say before Jehovah thy God, I have put away the hallowed things out of my house, and also have given them unto the Levite, and unto the sojourner, to the fatherless, and to the widow, according to all thy commandment which thou hast commanded me: I have not transgressed any of thy commandments, neither have I forgotten them:</VERS>\r\n      <VERS vnumber=\"14\">I have not eaten thereof in my mourning, neither have I put away thereof, being unclean, nor given thereof for the dead: I have hearkened to the voice of Jehovah my God; I have done according to all that thou hast commanded me.</VERS>\r\n      <VERS vnumber=\"15\">Look down from thy holy habitation, from heaven, and bless thy people Israel, and the ground which thou hast given us, as thou swarest unto our fathers, a land flowing with milk and honey.</VERS>\r\n      <VERS vnumber=\"16\">This day Jehovah thy God commandeth thee to do these statutes and ordinances: thou shalt therefore keep and do them with all thy heart, and with all thy soul.</VERS>\r\n      <VERS vnumber=\"17\">Thou hast avouched Jehovah this day to be thy God, and that thou wouldest walk in his ways, and keep his statutes, and his commandments, and his ordinances, and hearken unto his voice:</VERS>\r\n      <VERS vnumber=\"18\">and Jehovah hath avouched thee this day to be a people for his own possession, as he hath promised thee, and that thou shouldest keep all his commandments;</VERS>\r\n      <VERS vnumber=\"19\">and to make thee high above all nations that he hath made, in praise, and in name, and in honor; and that thou mayest be a holy people unto Jehovah thy God, as he hath spoken.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"27\">\r\n      <VERS vnumber=\"1\">And Moses and the elders of Israel commanded the people, saying, Keep all the commandment which I command you this day.</VERS>\r\n      <VERS vnumber=\"2\">And it shall be on the day when ye shall pass over the Jordan unto the land which Jehovah thy God giveth thee, that thou shalt set thee up great stones, and plaster them with plaster:</VERS>\r\n      <VERS vnumber=\"3\">and 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 Jehovah thy God giveth thee, a land flowing with milk and honey, as Jehovah, the God of thy fathers, hath promised thee.</VERS>\r\n      <VERS vnumber=\"4\">And it shall be, when ye are passed over the Jordan, that ye shall set up these stones, which I command you this day, in mount Ebal, and thou shalt plaster them with plaster.</VERS>\r\n      <VERS vnumber=\"5\">And there shalt thou build an altar unto Jehovah thy God, an altar of stones: thou shalt lift up no iron [tool] upon them.</VERS>\r\n      <VERS vnumber=\"6\">Thou shalt build the altar of Jehovah thy God of unhewn stones; and thou shalt offer burnt-offerings thereon unto Jehovah thy God:</VERS>\r\n      <VERS vnumber=\"7\">and thou shalt sacrifice peace-offerings, and shalt eat there; and thou shalt rejoice before Jehovah thy God.</VERS>\r\n      <VERS vnumber=\"8\">And thou shalt write upon the stones all the words of this law very plainly.</VERS>\r\n      <VERS vnumber=\"9\">And Moses and the priests the Levites spake unto all Israel, saying, Keep silence, and hearken, O Israel: this day thou art become the people of Jehovah thy God.</VERS>\r\n      <VERS vnumber=\"10\">Thou shalt therefore obey the voice of Jehovah thy God, and do his commandments and his statutes, which I command thee this day.</VERS>\r\n      <VERS vnumber=\"11\">And Moses charged the people the same day, saying,</VERS>\r\n      <VERS vnumber=\"12\">These shall stand upon mount Gerizim to bless the people, when ye are passed over the Jordan: Simeon, and Levi, and Judah, and Issachar, and Joseph, and Benjamin.</VERS>\r\n      <VERS vnumber=\"13\">And these shall stand upon mount Ebal for the curse: Reuben, Gad, and Asher, and Zebulun, Dan, and Naphtali.</VERS>\r\n      <VERS vnumber=\"14\">And the Levites shall answer, and say unto all the men of Israel with a loud voice,</VERS>\r\n      <VERS vnumber=\"15\">Cursed be the man that maketh a graven or molten image, an abomination unto Jehovah, the work of the hands of the craftsman, and setteth it up in secret. And all the people shall answer and say, Amen.</VERS>\r\n      <VERS vnumber=\"16\">Cursed be he that setteth light by his father or his mother. And all the people shall say, Amen.</VERS>\r\n      <VERS vnumber=\"17\">Cursed be he that removeth his neighbor`s landmark. And all the people shall say, Amen.</VERS>\r\n      <VERS vnumber=\"18\">Cursed be he that maketh the blind to wander out of the way. And all the people shall say, Amen.</VERS>\r\n      <VERS vnumber=\"19\">Cursed be he that wresteth the justice [due] to the sojourner, fatherless, and widow. And all the people shall say, Amen.</VERS>\r\n      <VERS vnumber=\"20\">Cursed be he that lieth with his father`s wife, because he hath uncovered his father`s skirt. And all the people shall say, Amen.</VERS>\r\n      <VERS vnumber=\"21\">Cursed be he that lieth with any manner of beast. And all the people shall say, Amen.</VERS>\r\n      <VERS vnumber=\"22\">Cursed 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.</VERS>\r\n      <VERS vnumber=\"23\">Cursed be he that lieth with his mother-in-law. And all the people shall say, Amen.</VERS>\r\n      <VERS vnumber=\"24\">Cursed be he that smiteth his neighbor in secret. And all the people shall say, Amen.</VERS>\r\n      <VERS vnumber=\"25\">Cursed be he that taketh a bribe to slay an innocent person. And all the people shall say, Amen.</VERS>\r\n      <VERS vnumber=\"26\">Cursed be he that confirmeth not the words of this law to do them. And all the people shall say, Amen.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"28\">\r\n      <VERS vnumber=\"1\">And it shall come to pass, if thou shalt hearken diligently unto the voice of Jehovah thy God, to observe to do all his commandments which I command thee this day, that Jehovah thy God will set thee on high above all the nations of the earth:</VERS>\r\n      <VERS vnumber=\"2\">and all these blessings shall come upon thee, and overtake thee, if thou shalt hearken unto the voice of Jehovah thy God.</VERS>\r\n      <VERS vnumber=\"3\">Blessed shalt thou be in the city, and blessed shalt thou be in the field.</VERS>\r\n      <VERS vnumber=\"4\">Blessed shall be the fruit of thy body, and the fruit of thy ground, and the fruit of thy beasts, the increase of thy cattle, and the young of thy flock.</VERS>\r\n      <VERS vnumber=\"5\">Blessed shall be thy basket and thy kneading-trough.</VERS>\r\n      <VERS vnumber=\"6\">Blessed shalt thou be when thou comest in, and blessed shalt thou be when thou goest out.</VERS>\r\n      <VERS vnumber=\"7\">Jehovah will cause thine enemies that rise up against thee to be smitten before thee: they shall come out against thee one way, and shall flee before thee seven ways.</VERS>\r\n      <VERS vnumber=\"8\">Jehovah will command the blessing upon thee in thy barns, and in all that thou puttest thy hand unto; and he will bless thee in the land which Jehovah thy God giveth thee.</VERS>\r\n      <VERS vnumber=\"9\">Jehovah will establish thee for a holy people unto himself, as he hath sworn unto thee; if thou shalt keep the commandments of Jehovah thy God, and walk in his ways.</VERS>\r\n      <VERS vnumber=\"10\">And all the peoples of the earth shall see that thou art called by the name of Jehovah; and they shall be afraid of thee.</VERS>\r\n      <VERS vnumber=\"11\">And Jehovah will make thee plenteous for good, in the fruit of thy body, and in the fruit of thy cattle, and in the fruit of thy ground, in the land which Jehovah sware unto thy fathers to give thee.</VERS>\r\n      <VERS vnumber=\"12\">Jehovah will open unto thee his good treasure the heavens, to give the rain of thy land in its season, and to bless all the work of thy hand: and thou shalt lend unto many nations, and thou shalt not borrow.</VERS>\r\n      <VERS vnumber=\"13\">And Jehovah will make thee the head, and not the tail; and thou shalt be above only, and thou shalt not be beneath; if thou shalt hearken unto the commandments of Jehovah thy God, which I command thee this day, to observe and to do [them],</VERS>\r\n      <VERS vnumber=\"14\">and shalt not turn aside from any of the words which I command you this day, to the right hand, or to the left, to go after other gods to serve them.</VERS>\r\n      <VERS vnumber=\"15\">But it shall come to pass, if thou wilt not hearken unto the voice of Jehovah 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.</VERS>\r\n      <VERS vnumber=\"16\">Cursed shalt thou be in the city, and cursed shalt thou be in the field.</VERS>\r\n      <VERS vnumber=\"17\">Cursed shall be thy basket and thy kneading-trough.</VERS>\r\n      <VERS vnumber=\"18\">Cursed shall be the fruit of thy body, and the fruit of thy ground, the increase of thy cattle, and the young of thy flock.</VERS>\r\n      <VERS vnumber=\"19\">Cursed shalt thou be when thou comest in, and cursed shalt thou be when thou goest out.</VERS>\r\n      <VERS vnumber=\"20\">Jehovah will send upon thee cursing, discomfiture, and rebuke, in all that thou puttest thy hand unto to do, until thou be destroyed, and until thou perish quickly; because of the evil of thy doings, whereby thou hast forsaken me.</VERS>\r\n      <VERS vnumber=\"21\">Jehovah will make the pestilence cleave unto thee, until he have consumed thee from off the land, whither thou goest in to possess it.</VERS>\r\n      <VERS vnumber=\"22\">Jehovah will smite thee with consumption, and with fever, and with inflammation, and with fiery heat, and with the sword, and with blasting, and with mildew; and they shall pursue thee until thou perish.</VERS>\r\n      <VERS vnumber=\"23\">And thy heaven that is over thy head shall be brass, and the earth that is under thee shall be iron.</VERS>\r\n      <VERS vnumber=\"24\">Jehovah will make the rain of thy land powder and dust: from heaven shall it come down upon thee, until thou be destroyed.</VERS>\r\n      <VERS vnumber=\"25\">Jehovah will cause thee to be smitten before thine enemies; thou shalt go out one way against them, and shalt flee seven ways before them: and thou shalt be tossed to and from among all the kingdoms of the earth.</VERS>\r\n      <VERS vnumber=\"26\">And thy dead body shall be food unto all birds of the heavens, and unto the beasts of the earth; and there shall be none to frighten them away.</VERS>\r\n      <VERS vnumber=\"27\">Jehovah will smite thee with the boil of Egypt, and with the emerods, and with the scurvy, and with the itch, whereof thou canst not be healed.</VERS>\r\n      <VERS vnumber=\"28\">Jehovah will smite thee with madness, and with blindness, and with astonishment of heart;</VERS>\r\n      <VERS vnumber=\"29\">and 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 robbed alway, and there shall be none to save thee.</VERS>\r\n      <VERS vnumber=\"30\">Thou shalt betroth a wife, and another man shall lie with her: thou shalt build a house, and thou shalt not dwell therein: thou shalt plant a vineyard, and shalt not use the fruit thereof.</VERS>\r\n      <VERS vnumber=\"31\">Thine 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 save thee.</VERS>\r\n      <VERS vnumber=\"32\">Thy sons and thy daughters shall be given unto another people; and thine eyes shall look, and fail with longing for them all the day: and there shall be nought in the power of thy hand.</VERS>\r\n      <VERS vnumber=\"33\">The fruit of thy ground, and all thy labors, shall a nation which thou knowest not eat up; and thou shalt be only oppressed and crushed alway;</VERS>\r\n      <VERS vnumber=\"34\">so that thou shalt be mad for the sight of thine eyes which thou shalt see.</VERS>\r\n      <VERS vnumber=\"35\">Jehovah will smite thee in the knees, and in the legs, with a sore boil, whereof thou canst not be healed, from the sole of thy foot unto the crown of thy head.</VERS>\r\n      <VERS vnumber=\"36\">Jehovah will bring thee, and thy king whom thou shalt set over thee, unto a nation that thou hast not known, thou nor thy fathers; and there shalt thou serve other gods, wood and stone.</VERS>\r\n      <VERS vnumber=\"37\">And thou shalt become an astonishment, a proverb, and a byword, among all the peoples whither Jehovah shall lead thee away.</VERS>\r\n      <VERS vnumber=\"38\">Thou shalt carry much seed out into the field, and shalt gather little in; for the locust shall consume it.</VERS>\r\n      <VERS vnumber=\"39\">Thou shalt plant vineyards and dress them, but thou shalt neither drink of the wine, nor gather [the grapes]; for the worm shall eat them.</VERS>\r\n      <VERS vnumber=\"40\">Thou shalt have olive-trees throughout all thy borders, but thou shalt not anoint thyself with the oil; for thine olive shall cast [its fruit].</VERS>\r\n      <VERS vnumber=\"41\">Thou shalt beget sons and daughters, but they shall not be thine; for they shall go into captivity.</VERS>\r\n      <VERS vnumber=\"42\">All thy trees and the fruit of thy ground shall the locust possess.</VERS>\r\n      <VERS vnumber=\"43\">The sojourner that is in the midst of thee shall mount up above thee higher and higher; and thou shalt come down lower and lower.</VERS>\r\n      <VERS vnumber=\"44\">He shall lend to thee, and thou shalt not lend to him: he shall be the head, and thou shalt be the tail.</VERS>\r\n      <VERS vnumber=\"45\">And 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 Jehovah thy God, to keep his commandments and his statutes which he commanded thee:</VERS>\r\n      <VERS vnumber=\"46\">and they shall be upon thee for a sign and for a wonder, and upon thy seed for ever.</VERS>\r\n      <VERS vnumber=\"47\">Because thou servedst not Jehovah thy God with joyfulness, and with gladness of heart, by reason of the abundance of all things;</VERS>\r\n      <VERS vnumber=\"48\">therefore shalt thou serve thine enemies that Jehovah 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.</VERS>\r\n      <VERS vnumber=\"49\">Jehovah will bring a nation against thee from far, from the end of the earth, as the eagle flieth; a nation whose tongue thou shalt not understand;</VERS>\r\n      <VERS vnumber=\"50\">a nation of fierce countenance, that shall not regard the person of the old, nor show favor to the young,</VERS>\r\n      <VERS vnumber=\"51\">and shall eat the fruit of thy cattle, and the fruit of thy ground, until thou be destroyed; that also shall not leave thee grain, new wine, or oil, the increase of thy cattle, or the young of thy flock, until they have caused thee to perish.</VERS>\r\n      <VERS vnumber=\"52\">And they shall besiege thee in all thy gates, until thy high and fortified walls come down, wherein thou trustedst, throughout all thy land; and they shall besiege thee in all thy gates throughout all thy land, which Jehovah thy God hath given thee.</VERS>\r\n      <VERS vnumber=\"53\">And thou shalt eat the fruit of thine own body, the flesh of thy sons and of thy daughters, whom Jehovah thy God hath given thee, in the siege and in the distress wherewith thine enemies shall distress thee.</VERS>\r\n      <VERS vnumber=\"54\">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 whom he hath remaining;</VERS>\r\n      <VERS vnumber=\"55\">so 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 distress wherewith thine enemy shall distress thee in all thy gates.</VERS>\r\n      <VERS vnumber=\"56\">The tender and delicate woman among you, who 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,</VERS>\r\n      <VERS vnumber=\"57\">and toward her young one that cometh out from between her feet, and toward her children whom she shall bear; for she shall eat them for want of all things secretly, in the siege and in the distress wherewith thine enemy shall distress thee in thy gates.</VERS>\r\n      <VERS vnumber=\"58\">If 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, JEHOVAH THY GOD;</VERS>\r\n      <VERS vnumber=\"59\">then Jehovah 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.</VERS>\r\n      <VERS vnumber=\"60\">And he will bring upon thee again all the diseases of Egypt, which thou wast afraid of; and they shall cleave unto thee.</VERS>\r\n      <VERS vnumber=\"61\">Also every sickness, and every plague, which is not written in the book of this law, them will Jehovah bring upon thee, until thou be destroyed.</VERS>\r\n      <VERS vnumber=\"62\">And ye shall be left few in number, whereas ye were as the stars of heaven for multitude; because thou didst not hearken unto the voice of Jehovah thy God.</VERS>\r\n      <VERS vnumber=\"63\">And it shall come to pass, that, as Jehovah rejoiced over you to do you good, and to multiply you, so Jehovah will rejoice over you to cause you to perish, and to destroy you; and ye shall be plucked from off the land whither thou goest in to possess it.</VERS>\r\n      <VERS vnumber=\"64\">And Jehovah will scatter thee among all peoples, from the one end of the earth even unto the other end of the earth; and there thou shalt serve other gods, which thou hast not known, thou nor thy fathers, even wood and stone.</VERS>\r\n      <VERS vnumber=\"65\">And among these nations shalt thou find no ease, and there shall be no rest for the sole of thy foot: but Jehovah will give thee there a trembling heart, and failing of eyes, and pining of soul;</VERS>\r\n      <VERS vnumber=\"66\">and thy life shall hang in doubt before thee; and thou shalt fear night and day, and shalt have no assurance of thy life.</VERS>\r\n      <VERS vnumber=\"67\">In the morning thou shalt say, Would it were even! and at even thou shalt say, Would it were morning! for the fear of thy heart which thou shalt fear, and for the sight of thine eyes which thou shalt see.</VERS>\r\n      <VERS vnumber=\"68\">And Jehovah will bring thee into Egypt again with ships, by the way whereof I said unto thee, Thou shalt see it no more again: and there ye shall sell yourselves unto your enemies for bondmen and for bondwomen, and no man shall buy you.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"29\">\r\n      <VERS vnumber=\"1\">These are the words of the covenant which Jehovah commanded Moses to make with the children of Israel in the land of Moab, besides the covenant which he made with them in Horeb.</VERS>\r\n      <VERS vnumber=\"2\">And Moses called unto all Israel, and said unto them, Ye have seen all that Jehovah did before your eyes in the land of Egypt unto Pharaoh, and unto all his servants, and unto all his land;</VERS>\r\n      <VERS vnumber=\"3\">the great trials which thine eyes saw, the signs, and those great wonders:</VERS>\r\n      <VERS vnumber=\"4\">but Jehovah hath not given you a heart to know, and eyes to see, and ears to hear, unto this day.</VERS>\r\n      <VERS vnumber=\"5\">And I have led you forty years in the wilderness: your clothes are not waxed old upon you, and thy shoe is not waxed old upon thy foot.</VERS>\r\n      <VERS vnumber=\"6\">Ye have not eaten bread, neither have ye drunk wine or strong drink; that ye may know that I am Jehovah your God.</VERS>\r\n      <VERS vnumber=\"7\">And 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:</VERS>\r\n      <VERS vnumber=\"8\">and we took their land, and gave it for an inheritance unto the Reubenites, and to the Gadites, and to the half-tribe of the Manassites.</VERS>\r\n      <VERS vnumber=\"9\">Keep therefore the words of this covenant, and do them, that ye may prosper in all that ye do.</VERS>\r\n      <VERS vnumber=\"10\">Ye stand this day all of you before Jehovah your God; your heads, your tribes, your elders, and your officers, even all the men of Israel,</VERS>\r\n      <VERS vnumber=\"11\">your little ones, your wives, and thy sojourner that is in the midst of thy camps, from the hewer of thy wood unto the drawer of thy water;</VERS>\r\n      <VERS vnumber=\"12\">that thou mayest enter into the covenant of Jehovah thy God, and into his oath, which Jehovah thy God maketh with thee this day;</VERS>\r\n      <VERS vnumber=\"13\">that he may establish thee this day unto himself for a people, and that he may be unto thee a God, as he spake unto thee, and as he sware unto thy fathers, to Abraham, to Isaac, and to Jacob.</VERS>\r\n      <VERS vnumber=\"14\">Neither with you only do I make this covenant and this oath,</VERS>\r\n      <VERS vnumber=\"15\">but with him that standeth here with us this day before Jehovah our God, and also with him that is not here with us this day</VERS>\r\n      <VERS vnumber=\"16\">(for ye know how we dwelt in the land of Egypt, and how we came through the midst of the nations through which ye passed;</VERS>\r\n      <VERS vnumber=\"17\">and ye have seen their abominations, and their idols, wood and stone, silver and gold, which were among them);</VERS>\r\n      <VERS vnumber=\"18\">lest there should be among you man, or woman, or family, or tribe, whose heart turneth away this day from Jehovah our God, to go to serve the gods of those nations; lest there should be among you a root that beareth gall and wormwood;</VERS>\r\n      <VERS vnumber=\"19\">and 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 stubbornness of my heart, to destroy the moist with the dry.</VERS>\r\n      <VERS vnumber=\"20\">Jehovah will not pardon him, but then the anger of Jehovah and his jealousy will smoke against that man, and all the curse that is written in this book shall lie upon him, and Jehovah will blot out his name from under heaven.</VERS>\r\n      <VERS vnumber=\"21\">And Jehovah will set him apart unto evil out of all the tribes of Israel, according to all the curses of the covenant that is written in this book of the law.</VERS>\r\n      <VERS vnumber=\"22\">And the generation to come, your children that shall rise up after you, and the foreigner that shall come from a far land, shall say, when they see the plagues of that land, and the sicknesses wherewith Jehovah hath made it sick;</VERS>\r\n      <VERS vnumber=\"23\">[and that] the whole land thereof is brimstone, and salt, [and] a burning, [that] it is not sown, nor beareth, nor any grass groweth therein, like the overthrow of Sodom and Gomorrah, Admah and Zeboiim, which Jehovah overthrew in his anger, and in his wrath:</VERS>\r\n      <VERS vnumber=\"24\">even all the nations shall say, Wherefore hath Jehovah done thus unto this land? what meaneth the heat of this great anger?</VERS>\r\n      <VERS vnumber=\"25\">Then men shall say, Because they forsook the covenant of Jehovah, the God of their fathers, which he made with them when he brought them forth out of the land of Egypt,</VERS>\r\n      <VERS vnumber=\"26\">and went and served other gods, and worshipped them, gods that they knew not, and that he had not given unto them:</VERS>\r\n      <VERS vnumber=\"27\">therefore the anger of Jehovah was kindled against this land, to bring upon it all the curse that is written in this book;</VERS>\r\n      <VERS vnumber=\"28\">and Jehovah rooted them out of their land in anger, and in wrath, and in great indignation, and cast them into another land, as at this day.</VERS>\r\n      <VERS vnumber=\"29\">The secret things belong unto Jehovah our God; but the things that are revealed belong unto us and to our children for ever, that we may do all the words of this law.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"30\">\r\n      <VERS vnumber=\"1\">And 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 Jehovah thy God hath driven thee,</VERS>\r\n      <VERS vnumber=\"2\">and shalt return unto Jehovah thy God, and shalt obey his voice according to all that I command thee this day, thou and thy children, with all thy heart, and with all thy soul;</VERS>\r\n      <VERS vnumber=\"3\">that then Jehovah thy God will turn thy captivity, and have compassion upon thee, and will return and gather thee from all the peoples, whither Jehovah thy God hath scattered thee.</VERS>\r\n      <VERS vnumber=\"4\">If [any of] thine outcasts be in the uttermost parts of heaven, from thence will Jehovah thy God gather thee, and from thence will he fetch thee:</VERS>\r\n      <VERS vnumber=\"5\">and Jehovah 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.</VERS>\r\n      <VERS vnumber=\"6\">And Jehovah thy God will circumcise thy heart, and the heart of thy seed, to love Jehovah thy God with all thy heart, and with all thy soul, that thou mayest live.</VERS>\r\n      <VERS vnumber=\"7\">And Jehovah thy God will put all these curses upon thine enemies, and on them that hate thee, that persecuted thee.</VERS>\r\n      <VERS vnumber=\"8\">And thou shalt return and obey the voice of Jehovah, and do all his commandments which I command thee this day.</VERS>\r\n      <VERS vnumber=\"9\">And Jehovah thy God will make thee plenteous in all the work of thy hand, in the fruit of thy body, and in the fruit of thy cattle, and in the fruit of thy ground, for good: for Jehovah will again rejoice over thee for good, as he rejoiced over thy fathers;</VERS>\r\n      <VERS vnumber=\"10\">if thou shalt obey the voice of Jehovah thy God, to keep his commandments and his statutes which are written in this book of the law; if thou turn unto Jehovah thy God with all thy heart, and with all thy soul.</VERS>\r\n      <VERS vnumber=\"11\">For this commandment which I command thee this day, it is not too hard for thee, neither is it far off.</VERS>\r\n      <VERS vnumber=\"12\">It is not in heaven, that thou shouldest say, Who shall go up for us to heaven, and bring it unto us, and make us to hear it, that we may do it?</VERS>\r\n      <VERS vnumber=\"13\">Neither is it beyond the sea, that thou shouldest say, Who shall go over the sea for us, and bring it unto us, and make us to hear it, that we may do it?</VERS>\r\n      <VERS vnumber=\"14\">But the word is very nigh unto thee, in thy mouth, and in thy heart, that thou mayest do it.</VERS>\r\n      <VERS vnumber=\"15\">See, I have set before thee this day life and good, and death and evil;</VERS>\r\n      <VERS vnumber=\"16\">in that I command thee this day to love Jehovah thy God, to walk in his ways, and to keep his commandments and his statutes and his ordinances, that thou mayest live and multiply, and that Jehovah thy God may bless thee in the land whither thou goest in to possess it.</VERS>\r\n      <VERS vnumber=\"17\">But if thy heart turn away, and thou wilt not hear, but shalt be drawn away, and worship other gods, and serve them;</VERS>\r\n      <VERS vnumber=\"18\">I denounce unto you this day, that ye shall surely perish; ye shall not prolong your days in the land, whither thou passest over the Jordan to go in to possess it.</VERS>\r\n      <VERS vnumber=\"19\">I call heaven and earth to witness against you this day, that I have set before thee life and death, the blessing and the curse: therefore choose life, that thou mayest live, thou and thy seed;</VERS>\r\n      <VERS vnumber=\"20\">to love Jehovah thy God, to obey his voice, and to cleave unto him; for he is thy life, and the length of thy days; that thou mayest dwell in the land which Jehovah sware unto thy fathers, to Abraham, to Isaac, and to Jacob, to give them.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"31\">\r\n      <VERS vnumber=\"1\">And Moses went and spake these words unto all Israel.</VERS>\r\n      <VERS vnumber=\"2\">And he said unto them, I am a hundred and twenty years old this day; I can no more go out and come in: and Jehovah hath said unto me, Thou shalt not go over this Jordan.</VERS>\r\n      <VERS vnumber=\"3\">Jehovah thy God, he will go over before thee; he will destroy these nations from before thee, and thou shalt dispossess them: [and] Joshua, he shall go over before thee, as Jehovah hath spoken.</VERS>\r\n      <VERS vnumber=\"4\">And Jehovah will do unto them as he did to Sihon and to Og, the kings of the Amorites, and unto their land; whom he destroyed.</VERS>\r\n      <VERS vnumber=\"5\">And Jehovah will deliver them up before you, and ye shall do unto them according unto all the commandment which I have commanded you.</VERS>\r\n      <VERS vnumber=\"6\">Be strong and of good courage, fear not, nor be affrighted at them: for Jehovah thy God, he it is that doth go with thee; he will not fail thee, nor forsake thee.</VERS>\r\n      <VERS vnumber=\"7\">And Moses called unto Joshua, and said unto him in the sight of all Israel, Be strong and of good courage: for thou shalt go with this people into the land which Jehovah hath sworn unto their fathers to give them; and thou shalt cause them to inherit it.</VERS>\r\n      <VERS vnumber=\"8\">And Jehovah, 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.</VERS>\r\n      <VERS vnumber=\"9\">And Moses wrote this law, and delivered it unto the priests the sons of Levi, that bare the ark of the covenant of Jehovah, and unto all the elders of Israel.</VERS>\r\n      <VERS vnumber=\"10\">And Moses commanded them, saying, At the end of [every] seven years, in the set time of the year of release, in the feast of tabernacles,</VERS>\r\n      <VERS vnumber=\"11\">when all Israel is come to appear before Jehovah thy God in the place which he shall choose, thou shalt read this law before all Israel in their hearing.</VERS>\r\n      <VERS vnumber=\"12\">Assemble the people, the men and the women and the little ones, and thy sojourner that is within thy gates, that they may hear, and that they may learn, and fear Jehovah your God, and observe to do all the words of this law;</VERS>\r\n      <VERS vnumber=\"13\">and that their children, who have not known, may hear, and learn to fear Jehovah your God, as long as ye live in the land whither ye go over the Jordan to possess it.</VERS>\r\n      <VERS vnumber=\"14\">And Jehovah said unto Moses, Behold, thy days approach that thou must die: call Joshua, and present yourselves in the tent of meeting, that I may give him a charge. And Moses and Joshua went, and presented themselves in the tent of meeting.</VERS>\r\n      <VERS vnumber=\"15\">And Jehovah appeared in the Tent in a pillar of cloud: and the pillar of cloud stood over the door of the Tent.</VERS>\r\n      <VERS vnumber=\"16\">And Jehovah said unto Moses, Behold, thou shalt sleep with thy fathers; and this people will rise up, and play the harlot after the strange gods of the land, whither they go to be among them, and will forsake me, and break my covenant which I have made with them.</VERS>\r\n      <VERS vnumber=\"17\">Then 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 come upon them; so that they will say in that day, Are not these evils come upon us because our God is not among us?</VERS>\r\n      <VERS vnumber=\"18\">And I will surely hide my face in that day for all the evil which they shall have wrought, in that they are turned unto other gods.</VERS>\r\n      <VERS vnumber=\"19\">Now therefore write ye this song for you, and teach thou it the children of Israel: put it in their mouths, that this song may be a witness for me against the children of Israel.</VERS>\r\n      <VERS vnumber=\"20\">For when I shall have brought them into the land which I sware unto their fathers, flowing with milk and honey, and they shall have eaten and filled themselves, and waxed fat; then will they turn unto other gods, and serve them, and despise me, and break my covenant.</VERS>\r\n      <VERS vnumber=\"21\">And it shall come to pass, when many evils and troubles are come upon them, that this song shall testify before them as a witness; for it shall not be forgotten out of the mouths of their seed: for I know their imagination which they frame this day, before I have brought them into the land which I sware.</VERS>\r\n      <VERS vnumber=\"22\">So Moses wrote this song the same day, and taught it the children of Israel.</VERS>\r\n      <VERS vnumber=\"23\">And he gave Joshua the son of Nun a charge, and said, Be strong and of good courage; for thou shalt bring the children of Israel into the land which I sware unto them: and I will be with thee.</VERS>\r\n      <VERS vnumber=\"24\">And it came to pass, when Moses had made an end of writing the words of this law in a book, until they were finished,</VERS>\r\n      <VERS vnumber=\"25\">that Moses commanded the Levites, that bare the ark of the covenant of Jehovah, saying,</VERS>\r\n      <VERS vnumber=\"26\">Take this book of the law, and put it by the side of the ark of the covenant of Jehovah your God, that it may be there for a witness against thee.</VERS>\r\n      <VERS vnumber=\"27\">For I know thy rebellion, and thy stiff neck: behold, while I am yet alive with you this day, ye have been rebellious against Jehovah; and how much more after my death?</VERS>\r\n      <VERS vnumber=\"28\">Assemble 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 witness against them.</VERS>\r\n      <VERS vnumber=\"29\">For 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 that which is evil in the sight of Jehovah, to provoke him to anger through the work of your hands.</VERS>\r\n      <VERS vnumber=\"30\">And Moses spake in the ears of all the assembly of Israel the words of this song, until they were finished.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"32\">\r\n      <VERS vnumber=\"1\">Give ear, ye heavens, and I will speak; And let the earth hear the words of my mouth.</VERS>\r\n      <VERS vnumber=\"2\">My doctrine shall drop as the rain; My speech shall distil as the dew, As the small rain upon the tender grass, And as the showers upon the herb.</VERS>\r\n      <VERS vnumber=\"3\">For I will proclaim the name of Jehovah: Ascribe ye greatness unto our God.</VERS>\r\n      <VERS vnumber=\"4\">The Rock, his work is perfect; For all his ways are justice: A God of faithfulness and without iniquity, Just and right is he.</VERS>\r\n      <VERS vnumber=\"5\">They have dealt corruptly with him, [they are] not his       children, [it is] their blemish; [They are] a perverse and crooked generation.</VERS>\r\n      <VERS vnumber=\"6\">Do ye thus requite Jehovah, O foolish people and unwise? Is not he thy father that hath bought thee? He hath made thee, and established thee.</VERS>\r\n      <VERS vnumber=\"7\">Remember the days of old, Consider the years of many generations: Ask thy father, and he will show thee; Thine elders, and they will tell thee.</VERS>\r\n      <VERS vnumber=\"8\">When the Most High gave to the nations their inheritance, When he separated the children of men, He set the bounds of the peoples According to the number of the children of Israel.</VERS>\r\n      <VERS vnumber=\"9\">For Jehovah`s portion is his people; Jacob is the lot of his inheritance.</VERS>\r\n      <VERS vnumber=\"10\">He found him in a desert land, And in the waste howling wilderness; He compassed him about, he cared for him, He kept him as the apple of his eye.</VERS>\r\n      <VERS vnumber=\"11\">As an eagle that stirreth up her nest, That fluttereth over her young, He spread abroad his wings, he took them, He bare them on his pinions.</VERS>\r\n      <VERS vnumber=\"12\">Jehovah alone did lead him, And there was no foreign god with him.</VERS>\r\n      <VERS vnumber=\"13\">He made him ride on the high places of the earth, And he did eat the increase of the field; And he made him to suck honey out of the rock, And oil out of the flinty rock;</VERS>\r\n      <VERS vnumber=\"14\">Butter of the herd, and milk of the flock, With fat of lambs, And rams of the breed of Bashan, and goats, With the finest of the wheat; And of the blood of the grape thou drankest wine.</VERS>\r\n      <VERS vnumber=\"15\">But Jeshurun waxed fat, and kicked: Thou art waxed fat, thou art grown thick, thou art become sleek; Then he forsook God who made him, And lightly esteemed the Rock of his salvation.</VERS>\r\n      <VERS vnumber=\"16\">They moved him to jealousy with strange [gods]; With abominations provoked they him to anger.</VERS>\r\n      <VERS vnumber=\"17\">They sacrificed unto demons, [which were] no God, To gods that they knew not, To new [gods] that came up of late, Which your fathers dreaded not.</VERS>\r\n      <VERS vnumber=\"18\">Of the Rock that begat thee thou art unmindful, And hast forgotten God that gave thee birth.</VERS>\r\n      <VERS vnumber=\"19\">And Jehovah saw [it], and abhorred [them], Because of the provocation of his sons and his daughters.</VERS>\r\n      <VERS vnumber=\"20\">And he said, I will hide my face from them, I will see what their end shall be: For they are a very perverse generation, Children in whom is no faithfulness.</VERS>\r\n      <VERS vnumber=\"21\">They 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 that are not a       people; I will provoke them to anger with a foolish nation.</VERS>\r\n      <VERS vnumber=\"22\">For a fire is kindled in mine anger, And burneth unto the lowest Sheol, And devoureth the earth with its increase, And setteth on fire the foundations of the mountains.</VERS>\r\n      <VERS vnumber=\"23\">I will heap evils upon them; I will spend mine arrows upon them:</VERS>\r\n      <VERS vnumber=\"24\">[They shall be] wasted with hunger, and devoured with       burning heat And bitter destruction; And the teeth of beasts will I send upon them, With the poison of crawling things of the dust.</VERS>\r\n      <VERS vnumber=\"25\">Without shall the sword bereave, And in the chambers terror; [It shall destroy] both young man and virgin, The suckling with the man of gray hairs.</VERS>\r\n      <VERS vnumber=\"26\">I said, I would scatter them afar, I would make the remembrance of them to cease from among men;</VERS>\r\n      <VERS vnumber=\"27\">Were it not that I feared the provocation of the enemy, Lest their adversaries should judge amiss, Lest they should say, Our hand is exalted, And Jehovah hath not done all this.</VERS>\r\n      <VERS vnumber=\"28\">For they are a nation void of counsel, And there is no understanding in them.</VERS>\r\n      <VERS vnumber=\"29\">Oh that they were wise, that they understood this, That they would consider their latter end!</VERS>\r\n      <VERS vnumber=\"30\">How should one chase a thousand, And two put ten thousand to flight, Except their Rock had sold them, And Jehovah had delivered them up?</VERS>\r\n      <VERS vnumber=\"31\">For their rock is not as our Rock, Even our enemies themselves being judges.</VERS>\r\n      <VERS vnumber=\"32\">For their vine is of the vine of Sodom, And of the fields of Gomorrah: Their grapes are grapes of gall, Their clusters are bitter:</VERS>\r\n      <VERS vnumber=\"33\">Their wine is the poison of serpents, And the cruel venom of asps.</VERS>\r\n      <VERS vnumber=\"34\">Is not this laid up in store with me, Sealed up among my treasures?</VERS>\r\n      <VERS vnumber=\"35\">Vengeance is mine, and recompense, At the time when their foot shall slide: For the day of their calamity is at hand, And the things that are to come upon them shall make haste.</VERS>\r\n      <VERS vnumber=\"36\">For Jehovah will judge his people, And repent himself for his servants; When he seeth that [their] power is gone, And there is none [remaining], shut up or left at large.</VERS>\r\n      <VERS vnumber=\"37\">And he will say, Where are their gods, The rock in which they took refuge;</VERS>\r\n      <VERS vnumber=\"38\">Which did eat the fat of their sacrifices, [And] drank the wine of their drink-offering? Let them rise up and help you, Let them be your protection.</VERS>\r\n      <VERS vnumber=\"39\">See 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; And there is none that can deliver out of my hand.</VERS>\r\n      <VERS vnumber=\"40\">For I lift up my hand to heaven, And say, As I live for ever,</VERS>\r\n      <VERS vnumber=\"41\">If I whet my glittering sword, And my hand take hold on judgment; I will render vengeance to mine adversaries, And will recompense them that hate me.</VERS>\r\n      <VERS vnumber=\"42\">I will make mine arrows drunk with blood, And my sword shall devour flesh; With the blood of the slain and the captives, From the head of the leaders of the enemy.</VERS>\r\n      <VERS vnumber=\"43\">Rejoice, O ye nations, [with] his people: For he will avenge the blood of his servants,  And will render vengeance to his adversaries, And will make expiation for his land, for his people.</VERS>\r\n      <VERS vnumber=\"44\">And Moses came and spake all the words of this song in the ears of the people, he, and Hoshea the son of Nun.</VERS>\r\n      <VERS vnumber=\"45\">And Moses made an end of speaking all these words to all Israel;</VERS>\r\n      <VERS vnumber=\"46\">And he said unto them, Set your heart unto all the words which I testify unto you this day, which ye shall command your children to observe to do, [even] all the words of this law.</VERS>\r\n      <VERS vnumber=\"47\">For it is no 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 the Jordan to possess it.</VERS>\r\n      <VERS vnumber=\"48\">And Jehovah spake unto Moses that selfsame day, saying,</VERS>\r\n      <VERS vnumber=\"49\">Get thee up into this mountain of 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;</VERS>\r\n      <VERS vnumber=\"50\">and 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:</VERS>\r\n      <VERS vnumber=\"51\">because ye trespassed against me in the midst of the children of Israel at the waters of Meribah of Kadesh, in the wilderness of Zin; because ye sanctified me not in the midst of the children of Israel.</VERS>\r\n      <VERS vnumber=\"52\">For thou shalt see the land before thee; but thou shalt not go thither into the land which I give the children of Israel.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"33\">\r\n      <VERS vnumber=\"1\">And this is the blessing, wherewith Moses the man of God blessed the children of Israel before his death.</VERS>\r\n      <VERS vnumber=\"2\">And he said, Jehovah came from Sinai, And rose from Seir unto them; He shined forth from mount Paran, And he came from the ten thousands of holy ones: At his right hand was a fiery law for them.</VERS>\r\n      <VERS vnumber=\"3\">Yea, he loveth the people; All his saints are in thy hand: And they sat down at thy feet; [Every one] shall receive of thy words.</VERS>\r\n      <VERS vnumber=\"4\">Moses commanded us a law, An inheritance for the assembly of Jacob.</VERS>\r\n      <VERS vnumber=\"5\">And he was king in Jeshurun, When the heads of the people were gathered, All the tribes of Israel together.</VERS>\r\n      <VERS vnumber=\"6\">Let Reuben live, and not die; Nor let his men be few.</VERS>\r\n      <VERS vnumber=\"7\">And this is [the blessing] of Judah: and he said, Hear, Jehovah, the voice of Judah, And bring him in unto his people. With his hands he contended for himself; And thou shalt be a help against his adversaries.</VERS>\r\n      <VERS vnumber=\"8\">And of Levi he said, Thy Thummim and thy Urim are with thy godly one, Whom thou didst prove at Massah, With whom thou didst strive at the waters of Meribah;</VERS>\r\n      <VERS vnumber=\"9\">Who said of his father, and of his mother, I have not       seen him; Neither did he acknowledge his brethren, Nor knew he his own children: For they have observed thy word, And keep thy covenant.</VERS>\r\n      <VERS vnumber=\"10\">They shall teach Jacob thine ordinances, And Israel thy law: They shall put incense before thee, And whole burnt-offering upon thine altar.</VERS>\r\n      <VERS vnumber=\"11\">Bless, Jehovah, his substance, And accept the work of his hands: Smite through the loins of them that rise up against him, And of them that hate him, that they rise not again.</VERS>\r\n      <VERS vnumber=\"12\">Of Benjamin he said, The beloved of Jehovah shall dwell in safety by him; He covereth him all the day long, And he dwelleth between his shoulders.</VERS>\r\n      <VERS vnumber=\"13\">And of Joseph he said, Blessed of Jehovah be his land, For the precious things of heaven, for the dew, And for the deep that coucheth beneath,</VERS>\r\n      <VERS vnumber=\"14\">And for the precious things of the fruits of the sun, And for the precious things of the growth of the moons,</VERS>\r\n      <VERS vnumber=\"15\">And for the chief things of the ancient mountains, And for the precious things of the everlasting hills,</VERS>\r\n      <VERS vnumber=\"16\">And for the precious things of the earth and the fulness       thereof, And the good will of him that dwelt in the bush. Let [the blessing] come upon the head of Joseph, And upon the crown of the head of him that was separate from his       brethren.</VERS>\r\n      <VERS vnumber=\"17\">The firstling of his herd, majesty is his; And his horns are the horns of the wild-ox: With them he shall push the peoples all of them, [even] the ends       of the earth: And they are the ten thousands of Ephraim, And they are the thousands of Manasseh.</VERS>\r\n      <VERS vnumber=\"18\">And of Zebulun he said, Rejoice, Zebulun, in thy going out; And, Issachar, in thy tents.</VERS>\r\n      <VERS vnumber=\"19\">They shall call the peoples unto the mountain; There shall they offer sacrifices of righteousness: For they shall suck the abundance of the seas, And the hidden treasures of the sand.</VERS>\r\n      <VERS vnumber=\"20\">And of Gad he said, Blessed be he that enlargeth Gad: He dwelleth as a lioness, And teareth the arm, yea, the crown of the head.</VERS>\r\n      <VERS vnumber=\"21\">And he provided the first part for himself, For there was the lawgiver`s portion reserved; And he came [with] the heads of the people; He executed the righteousness of Jehovah, And his ordinances with Israel.</VERS>\r\n      <VERS vnumber=\"22\">And of Dan he said, Dan is a lion`s whelp, That leapeth forth from Bashan.</VERS>\r\n      <VERS vnumber=\"23\">And of Naphtali he said, O Naphtali, satisfied with favor, And full with the blessing of Jehovah, Possess thou the west and the south.</VERS>\r\n      <VERS vnumber=\"24\">And of Asher he said, Blessed be Asher with children; Let him be acceptable unto his brethren, And let him dip his foot in oil.</VERS>\r\n      <VERS vnumber=\"25\">Thy bars shall be iron and brass; And as thy days, so shall thy strength be.</VERS>\r\n      <VERS vnumber=\"26\">There is none like unto God, O Jeshurun, Who rideth upon the heavens for thy help, And in his excellency on the skies.</VERS>\r\n      <VERS vnumber=\"27\">The eternal God is [thy] dwelling-place, And underneath are the everlasting arms. And he thrust out the enemy from before thee, And said, Destroy.</VERS>\r\n      <VERS vnumber=\"28\">And Israel dwelleth in safety, The fountain of Jacob alone, In a land of grain and new wine; Yea, his heavens drop down dew.</VERS>\r\n      <VERS vnumber=\"29\">Happy art thou, O Israel: Who is like unto thee, a people saved by Jehovah, The shield of thy help, And the sword of thy excellency! And thine enemies shall submit themselves unto thee; And thou shalt tread upon their high places.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"34\">\r\n      <VERS vnumber=\"1\">And Moses went up from the plains of Moab unto mount Nebo, to the top of Pisgah, that is over against Jericho. And Jehovah showed him all the land of Gilead, unto Dan,</VERS>\r\n      <VERS vnumber=\"2\">and all Naphtali, and the land of Ephraim and Manasseh, and all the land of Judah, unto the hinder sea,</VERS>\r\n      <VERS vnumber=\"3\">and the South, and the Plain of the valley of Jericho the city of palm-trees, unto Zoar.</VERS>\r\n      <VERS vnumber=\"4\">And Jehovah 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.</VERS>\r\n      <VERS vnumber=\"5\">So Moses the servant of Jehovah died there in the land of Moab, according to the word of Jehovah.</VERS>\r\n      <VERS vnumber=\"6\">And he buried him in the valley in the land of Moab over against Beth-peor: but no man knoweth of his sepulchre unto this day.</VERS>\r\n      <VERS vnumber=\"7\">And Moses was a hundred and twenty years old when he died: his eye was not dim, nor his natural force abated.</VERS>\r\n      <VERS vnumber=\"8\">And the children of Israel wept for Moses in the plains of Moab thirty days: so the days of weeping in the mourning for Moses were ended.</VERS>\r\n      <VERS vnumber=\"9\">And 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 Jehovah commanded Moses.</VERS>\r\n      <VERS vnumber=\"10\">And there hath not arisen a prophet since in Israel like unto Moses, whom Jehovah knew face to face,</VERS>\r\n      <VERS vnumber=\"11\">in all the signs and the wonders, which Jehovah sent him to do in the land of Egypt, to Pharaoh, and to all his servants, and to all his land,</VERS>\r\n      <VERS vnumber=\"12\">and in all the mighty hand, and in all the great terror, which Moses wrought in the sight of all Israel.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"6\" bname=\"Joshua\" bsname=\"Josh\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">Now it came to pass after the death of Moses the servant of Jehovah, that Jehovah spake unto Joshua the son of Nun, Moses` minister, saying,</VERS>\r\n      <VERS vnumber=\"2\">Moses 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.</VERS>\r\n      <VERS vnumber=\"3\">Every place that the sole of your foot shall tread upon, to you have I given it, as I spake unto Moses.</VERS>\r\n      <VERS vnumber=\"4\">From 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 border.</VERS>\r\n      <VERS vnumber=\"5\">There 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.</VERS>\r\n      <VERS vnumber=\"6\">Be strong and of good courage; for thou shalt cause this people to inherit the land which I sware unto their fathers to give them.</VERS>\r\n      <VERS vnumber=\"7\">Only be strong and very courageous, to 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 have good success whithersoever thou goest.</VERS>\r\n      <VERS vnumber=\"8\">This book of the law shall not depart out of thy mouth, but thou shalt meditate thereon 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.</VERS>\r\n      <VERS vnumber=\"9\">Have not I commanded thee? Be strong and of good courage; be not affrighted, neither be thou dismayed: for Jehovah thy God is with thee whithersoever thou goest.</VERS>\r\n      <VERS vnumber=\"10\">Then Joshua commanded the officers of the people, saying,</VERS>\r\n      <VERS vnumber=\"11\">Pass through the midst of the camp, and command the people, saying, Prepare you victuals; for within three days ye are to pass over this Jordan, to go in to possess the land, which Jehovah your God giveth you to possess it.</VERS>\r\n      <VERS vnumber=\"12\">And to the Reubenites, and to the Gadites, and to the half-tribe of Manasseh, spake Joshua, saying,</VERS>\r\n      <VERS vnumber=\"13\">Remember the word which Moses the servant of Jehovah commanded you, saying, Jehovah your God giveth you rest, and will give you this land.</VERS>\r\n      <VERS vnumber=\"14\">Your wives, your little ones, and your cattle, shall abide in the land which Moses gave you beyond the Jordan; but ye shall pass over before your brethren armed, all the mighty men of valor, and shall help them;</VERS>\r\n      <VERS vnumber=\"15\">until Jehovah have given your brethren rest, as [he hath given] you, and they also have possessed the land which Jehovah your God giveth them: then ye shall return unto the land of your possession, and possess it, which Moses the servant of Jehovah gave you beyond the Jordan toward the sunrising.</VERS>\r\n      <VERS vnumber=\"16\">And they answered Joshua, saying, All that thou hast commanded us we will do, and whithersoever thou sendest us we will go.</VERS>\r\n      <VERS vnumber=\"17\">According as we hearkened unto Moses in all things, so will we hearken unto thee: only Jehovah thy God be with thee, as he was with Moses.</VERS>\r\n      <VERS vnumber=\"18\">Whosoever he be that shall rebel against thy commandment, and shall not hearken unto thy words in all that thou commandest him, he shall be put to death: only be strong and of good courage.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">And Joshua the son of Nun sent out of Shittim two men as spies secretly, saying, Go, view the land, and Jericho. And they went and came into the house of a harlot whose name was Rahab, and lay there.</VERS>\r\n      <VERS vnumber=\"2\">And 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 land.</VERS>\r\n      <VERS vnumber=\"3\">And the king of Jericho sent unto Rahab, saying, Bring forth the men that are come to thee, that are entered into thy house; for they are come to search out all the land.</VERS>\r\n      <VERS vnumber=\"4\">And the woman took the two men, and hid them; and she said, Yea, the men came unto me, but I knew not whence they were:</VERS>\r\n      <VERS vnumber=\"5\">and it came to pass about the time of the shutting of the gate, when it was dark, that the men went out; whither the men went I know not: pursue after them quickly; for ye will overtake them.</VERS>\r\n      <VERS vnumber=\"6\">But she had brought them up to the roof, and hid them with the stalks of flax, which she had laid in order upon the roof.</VERS>\r\n      <VERS vnumber=\"7\">And the men pursued after them the way to the Jordan unto the fords: and as soon as they that pursued after them were gone out, they shut the gate.</VERS>\r\n      <VERS vnumber=\"8\">And before they were laid down, she came up unto them upon the roof;</VERS>\r\n      <VERS vnumber=\"9\">and she said unto the men, I know that Jehovah hath given you the land, and that the fear of you is fallen upon us, and that all the inhabitants of the land melt away before you.</VERS>\r\n      <VERS vnumber=\"10\">For we have heard how Jehovah dried up the water of the Red Sea before you, when ye came out of Egypt; and what ye did unto the two kings of the Amorites, that were beyond the Jordan, unto Sihon and to Og, whom ye utterly destroyed.</VERS>\r\n      <VERS vnumber=\"11\">And as soon as we had heard it, our hearts did melt, neither did there remain any more spirit in any man, because of you: for Jehovah your God, he is God in heaven above, and on earth beneath.</VERS>\r\n      <VERS vnumber=\"12\">Now therefore, I pray you, swear unto me by Jehovah, since I have dealt kindly with you, that ye also will deal kindly with my father`s house, and give me a true token;</VERS>\r\n      <VERS vnumber=\"13\">and that ye will save alive my father, and my mother, and my brethren, and my sisters, and all that they have, and will deliver our lives from death.</VERS>\r\n      <VERS vnumber=\"14\">And the men said unto her, Our life for yours, if ye utter not this our business; and it shall be, when Jehovah giveth us the land, that we will deal kindly and truly with thee.</VERS>\r\n      <VERS vnumber=\"15\">Then she let them down by a cord through the window: for her house was upon the side of the wall, and she dwelt upon the wall.</VERS>\r\n      <VERS vnumber=\"16\">And she said unto them, Get you to the mountain, lest the pursuers light upon you; and hide yourselves there three days, until the pursuers be returned: and afterward may ye go your way.</VERS>\r\n      <VERS vnumber=\"17\">And the men said unto her, We will be guiltless of this thine oath which thou hast made us to swear.</VERS>\r\n      <VERS vnumber=\"18\">Behold, 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 gather unto thee into the house thy father, and thy mother, and thy brethren, and all thy father`s household.</VERS>\r\n      <VERS vnumber=\"19\">And 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 shall be guiltless: and whosoever shall be with thee in the house, his blood shall be on our head, if any hand be upon him.</VERS>\r\n      <VERS vnumber=\"20\">But if thou utter this our business, then we shall be guiltless of thine oath which thou hast made us to swear.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">Then the two men returned, and descended from the mountain, and passed over, and came to Joshua the son of Nun; and they told him all that had befallen them.</VERS>\r\n      <VERS vnumber=\"24\">And they said unto Joshua, Truly Jehovah hath delivered into our hands all the land; and moreover all the inhabitants of the land do melt away before us.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">And Joshua rose up early in the morning; and they removed from Shittim, and came to the Jordan, he and all the children of Israel; and they lodged there before they passed over.</VERS>\r\n      <VERS vnumber=\"2\">And it came to pass after three days, that the officers went through the midst of the camp;</VERS>\r\n      <VERS vnumber=\"3\">and they commanded the people, saying, When ye see the ark of the covenant of Jehovah your God, and the priests the Levites bearing it, then ye shall remove from your place, and go after it.</VERS>\r\n      <VERS vnumber=\"4\">Yet 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.</VERS>\r\n      <VERS vnumber=\"5\">And Joshua said unto the people, Sanctify yourselves; for tomorrow Jehovah will do wonders among you.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And Jehovah 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.</VERS>\r\n      <VERS vnumber=\"8\">And thou shalt command the priests that bear the ark of the covenant, saying, When ye are come to the brink of the waters of the Jordan, ye shall stand still in the Jordan.</VERS>\r\n      <VERS vnumber=\"9\">And Joshua said unto the children of Israel, Come hither, and hear the words of Jehovah your God.</VERS>\r\n      <VERS vnumber=\"10\">And 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 Canaanite, and the Hittite, and the Hivite, and the Perizzite, and the Girgashite, and the Amorite, and the Jebusite.</VERS>\r\n      <VERS vnumber=\"11\">Behold, the ark of the covenant of the Lord of all the earth passeth over before you into the Jordan.</VERS>\r\n      <VERS vnumber=\"12\">Now therefore take you twelve men out of the tribes of Israel, for every tribe a man.</VERS>\r\n      <VERS vnumber=\"13\">And it shall come to pass, when the soles of the feet of the priests that bear the ark of Jehovah, the Lord of all the earth, shall rest in the waters of the Jordan, that the waters of the Jordan shall be cut off, even the waters that come down from above; and they shall stand in one heap.</VERS>\r\n      <VERS vnumber=\"14\">And it came to pass, when the people removed from their tents, to pass over the Jordan, the priests that bare the ark of the covenant being before the people;</VERS>\r\n      <VERS vnumber=\"15\">and when they that bare the ark were come unto the Jordan, and the feet of the priests that bare the ark were dipped in the brink of the water (for the Jordan overfloweth all its banks all the time of harvest,)</VERS>\r\n      <VERS vnumber=\"16\">that the waters which came down from above stood, and rose up in one heap, a great way off, at Adam, the city that is beside Zarethan; and those that went down toward the sea of the Arabah, even the Salt Sea, were wholly cut off: and the people passed over right against Jericho.</VERS>\r\n      <VERS vnumber=\"17\">And the priests that bare the ark of the covenant of Jehovah stood firm on dry ground in the midst of the Jordan; and all Israel passed over on dry ground, until all the nation were passed clean over the Jordan.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">And it came to pass, when all the nation were clean passed over the Jordan, that Jehovah spake unto Joshua, saying,</VERS>\r\n      <VERS vnumber=\"2\">Take you twelve men out of the people, out of every tribe a man,</VERS>\r\n      <VERS vnumber=\"3\">and command ye them, saying, Take you hence out of the midst of the Jordan, out of the place where the priests` feet stood firm, twelve stones, and carry them over with you, and lay them down in the lodging-place, where ye shall lodge this night.</VERS>\r\n      <VERS vnumber=\"4\">Then Joshua called the twelve men, whom he had prepared of the children of Israel, out of every tribe a man:</VERS>\r\n      <VERS vnumber=\"5\">and Joshua said unto them, Pass over before the ark of Jehovah your God into the midst of the 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;</VERS>\r\n      <VERS vnumber=\"6\">that this may be a sign among you, that, when your children ask in time to come, saying, What mean ye by these stones?</VERS>\r\n      <VERS vnumber=\"7\">then ye shall say unto them, Because the waters of the Jordan were cut off before the ark of the covenant of Jehovah; when it passed over the Jordan, the waters of the Jordan were cut off: and these stones shall be for a memorial unto the children of Israel for ever.</VERS>\r\n      <VERS vnumber=\"8\">And the children of Israel did so as Joshua commanded, and took up twelve stones out of the midst of the Jordan, as Jehovah spake unto Joshua, according to the number of the tribes of the children of Israel; and they carried them over with them unto the place where they lodged, and laid them down there.</VERS>\r\n      <VERS vnumber=\"9\">And Joshua set up twelve stones in the midst of the Jordan, in the place where the feet of the priests that bare the ark of the covenant stood: and they are there unto this day.</VERS>\r\n      <VERS vnumber=\"10\">For the priests that bare the ark stood in the midst of the Jordan, until everything was finished that Jehovah commanded Joshua to speak unto the people, according to all that Moses commanded Joshua: and the people hasted and passed over.</VERS>\r\n      <VERS vnumber=\"11\">And it came to pass, when all the people were clean passed over, that the ark of Jehovah passed over, and the priests, in the presence of the people.</VERS>\r\n      <VERS vnumber=\"12\">And the children of Reuben, and the children of Gad, and the half-tribe of Manasseh, passed over armed before the children of Israel, as Moses spake unto them:</VERS>\r\n      <VERS vnumber=\"13\">about forty thousand ready armed for war passed over before Jehovah unto battle, to the plains of Jericho.</VERS>\r\n      <VERS vnumber=\"14\">On that day Jehovah magnified Joshua in the sight of all Israel; and they feared him, as they feared Moses, all the days of his life.</VERS>\r\n      <VERS vnumber=\"15\">And Jehovah spake unto Joshua, saying,</VERS>\r\n      <VERS vnumber=\"16\">Command the priests that bear the ark of the testimony, that they come up out of the Jordan.</VERS>\r\n      <VERS vnumber=\"17\">Joshua therefore commanded the priests, saying, Come ye up out of the Jordan.</VERS>\r\n      <VERS vnumber=\"18\">And it came to pass, when the priests that bare the ark of the covenant of Jehovah were come up out of the midst of the Jordan, and the soles of the priests` feet were lifted up unto the dry ground, that the waters of the Jordan returned unto their place, and went over all its banks, as aforetime.</VERS>\r\n      <VERS vnumber=\"19\">And the people came up out of the Jordan on the tenth day of the first month, and encamped in Gilgal, on the east border of Jericho.</VERS>\r\n      <VERS vnumber=\"20\">And those twelve stones, which they took out of the Jordan, did Joshua set up in Gilgal.</VERS>\r\n      <VERS vnumber=\"21\">And he spake unto the children of Israel, saying, When your children shall ask their fathers in time to come, saying, What mean these stones?</VERS>\r\n      <VERS vnumber=\"22\">Then ye shall let your children know, saying, Israel came over this Jordan on dry land.</VERS>\r\n      <VERS vnumber=\"23\">For Jehovah your God dried up the waters of the Jordan from before you, until ye were passed over, as Jehovah your God did to the Red Sea, which he dried up from before us, until we were passed over;</VERS>\r\n      <VERS vnumber=\"24\">that all the peoples of the earth may know the hand of Jehovah, that it is mighty; that ye may fear Jehovah your God for ever.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">And it came to pass, when all the kings of the Amorites, that were beyond the Jordan westward, and all the kings of the Canaanites, that were by the sea, heard how that Jehovah had dried up the waters of the 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.</VERS>\r\n      <VERS vnumber=\"2\">At that time Jehovah said unto Joshua, Make thee knives of flint, and circumcise again the children of Israel the second time.</VERS>\r\n      <VERS vnumber=\"3\">And Joshua made him knives of lint, and circumcised the children of Israel at the hill of the foreskins.</VERS>\r\n      <VERS vnumber=\"4\">And this is the cause why Joshua did circumcise: all the people that came forth out of Egypt, that were males, even all the men of war, died in the wilderness by the way, after they came forth out of Egypt.</VERS>\r\n      <VERS vnumber=\"5\">For 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, they had not circumcised.</VERS>\r\n      <VERS vnumber=\"6\">For the children of Israel walked forty years in the wilderness, till all the nation, even the men of war that came forth out of Egypt, were consumed, because they hearkened not unto the voice of Jehovah: unto whom Jehovah sware that he would not let them see the land which Jehovah sware unto their fathers that he would give us, a land flowing with milk and honey.</VERS>\r\n      <VERS vnumber=\"7\">And their children, whom he raised up in their stead, them did Joshua circumcise: for they were uncircumcised, because they had not circumcised them by the way.</VERS>\r\n      <VERS vnumber=\"8\">And it came to pass, when they had done circumcising all the nation, that they abode in their places in the camp, till they were whole.</VERS>\r\n      <VERS vnumber=\"9\">And Jehovah said unto Joshua, This day have I rolled away the reproach of Egypt from off you. Wherefore the name of that place was called Gilgal, unto this day.</VERS>\r\n      <VERS vnumber=\"10\">And the children of Israel encamped in Gilgal; and they kept the passover on the fourteenth day of the month at even in the plains of Jericho.</VERS>\r\n      <VERS vnumber=\"11\">And they did eat of the produce of the land on the morrow after the passover, unleavened cakes and parched grain, in the selfsame day.</VERS>\r\n      <VERS vnumber=\"12\">And the manna ceased on the morrow, after they had eaten of the produce 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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?</VERS>\r\n      <VERS vnumber=\"14\">And he said, Nay; but [as] prince of the host of Jehovah 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?</VERS>\r\n      <VERS vnumber=\"15\">And the prince of Jehovah`s host said unto Joshua, Put off thy shoe from off thy foot; for the place whereon thou standest is holy. And Joshua did so.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">Now Jericho was straitly shut up because of the children of Israel: none went out, and none came in.</VERS>\r\n      <VERS vnumber=\"2\">And Jehovah said unto Joshua, See, I have given into thy hand Jericho, and the king thereof, and the mighty men of valor.</VERS>\r\n      <VERS vnumber=\"3\">And ye shall compass the city, all the men of war, going about the city once. Thus shalt thou do six days.</VERS>\r\n      <VERS vnumber=\"4\">And seven priests shall bear seven trumpets of rams` horns before the ark: and the seventh day ye shall compass the city seven times, and the priests shall blow the trumpets.</VERS>\r\n      <VERS vnumber=\"5\">And it shall be, 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 go up every man straight before him.</VERS>\r\n      <VERS vnumber=\"6\">And 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 Jehovah.</VERS>\r\n      <VERS vnumber=\"7\">And they said unto the people, Pass on, and compass the city, and let the armed men pass on before the ark of Jehovah.</VERS>\r\n      <VERS vnumber=\"8\">And it was so, that, when Joshua had spoken unto the people, the seven priests bearing the seven trumpets of rams` horns before Jehovah passed on, and blew the trumpets: and the ark of the covenant of Jehovah followed them.</VERS>\r\n      <VERS vnumber=\"9\">And the armed men went before the priests that blew the trumpets, and the rearward went after the ark, [the priests] blowing the trumpets as they went.</VERS>\r\n      <VERS vnumber=\"10\">And Joshua commanded the people, saying, Ye shall not shout, nor let your voice be heard, neither shall any word proceed out of your mouth, until the day I bid you shout; then shall ye shout.</VERS>\r\n      <VERS vnumber=\"11\">So he caused the ark of Jehovah to compass the city, going about it once: and they came into the camp, and lodged in the camp.</VERS>\r\n      <VERS vnumber=\"12\">And Joshua rose early in the morning, and the priests took up the ark of Jehovah.</VERS>\r\n      <VERS vnumber=\"13\">And the seven priests bearing the seven trumpets of rams` horns before the ark of Jehovah went on continually, and blew the trumpets: and the armed men went before them; and the rearward came after the ark of Jehovah, [the priests] blowing the trumpets as they went.</VERS>\r\n      <VERS vnumber=\"14\">And the second day they compassed the city once, and returned into the camp: so they did six days.</VERS>\r\n      <VERS vnumber=\"15\">And it came to pass on the seventh day, that they rose early at the dawning of the day, and compassed the city after the same manner seven times: only on the day they compassed the city seven times.</VERS>\r\n      <VERS vnumber=\"16\">And it came to pass at the seventh time, when the priests blew the trumpets, Joshua said unto the people, Shout; for Jehovah hath given you the city.</VERS>\r\n      <VERS vnumber=\"17\">And the city shall be devoted, even it and all that is therein, to Jehovah: only Rahab the harlot shall live, she and all that are with her in the house, because she hid the messengers that we sent.</VERS>\r\n      <VERS vnumber=\"18\">But as for you, only keep yourselves from the devoted thing, lest when ye have devoted it, ye take of the devoted thing; so would ye make the camp of Israel accursed, and trouble it.</VERS>\r\n      <VERS vnumber=\"19\">But all the silver, and gold, and vessels of brass and iron, are holy unto Jehovah: they shall come into the treasury of Jehovah.</VERS>\r\n      <VERS vnumber=\"20\">So the people shouted, and [the priests] blew the trumpets; and it came to pass, when the people heard the sound of the trumpet, that the people shouted with a great shout, and the wall fell down flat, so that the people went up into the city, every man straight before him, and they took the city.</VERS>\r\n      <VERS vnumber=\"21\">And they utterly destroyed all that was in the city, both man and woman, both young and old, and ox, and sheep, and ass, with the edge of the sword.</VERS>\r\n      <VERS vnumber=\"22\">And Joshua said unto the two men that had spied out the land, Go into the harlot`s house, and bring out thence the woman, and all that she hath, as ye sware unto her.</VERS>\r\n      <VERS vnumber=\"23\">And the young men the spies went in, and brought out Rahab, and her father, and her mother, and her brethren, and all that she had; all her kindred also they brought out; and they set them without the camp of Israel.</VERS>\r\n      <VERS vnumber=\"24\">And 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 Jehovah.</VERS>\r\n      <VERS vnumber=\"25\">But Rahab the harlot, and her father`s household, and all that she had, did Joshua save alive; and she dwelt in the midst of Israel unto this day, because she hid the messengers, whom Joshua sent to spy out Jericho.</VERS>\r\n      <VERS vnumber=\"26\">And Joshua charged them with an oath at that time, saying, Cursed be the man before Jehovah, that riseth up and buildeth this city Jericho: with the loss of his first-born shall he lay the foundation thereof, and with the loss of his youngest son shall he set up the gates of it.</VERS>\r\n      <VERS vnumber=\"27\">So Jehovah was with Joshua; and his fame was in all the land.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">But the children of Israel committed a trespass in the devoted thing; for Achan, the son of Carmi, the son of Zabdi, the son of Zerah, of the tribe of Judah, took of the devoted thing: and the anger of Jehovah was kindled against the children of Israel.</VERS>\r\n      <VERS vnumber=\"2\">And Joshua sent men from Jericho to Ai, which is beside Beth-aven, on the east side of Beth-el, and spake unto them, saying, Go up and spy out the land. And the men went up and spied out Ai.</VERS>\r\n      <VERS vnumber=\"3\">And 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; make not all the people to toil thither; for they are but few.</VERS>\r\n      <VERS vnumber=\"4\">So there went up thither of the people about three thousand men: and they fled before the men of Ai.</VERS>\r\n      <VERS vnumber=\"5\">And the men of Ai smote of them about thirty and six men; and they chased them [from] before the gate even unto Shebarim, and smote them at the descent; and the hearts of the people melted, and became as water.</VERS>\r\n      <VERS vnumber=\"6\">And Joshua rent his clothes, and fell to the earth upon his face before the ark of Jehovah until the evening, he and the elders of Israel; and they put dust upon their heads.</VERS>\r\n      <VERS vnumber=\"7\">And Joshua said, Alas, O Lord Jehovah, wherefore hast thou at all brought this people over the Jordan, to deliver us into the hand of the Amorites, to cause us to perish? would that we had been content and dwelt beyond the Jordan!</VERS>\r\n      <VERS vnumber=\"8\">Oh, Lord, what shall I say, after that Israel hath turned their backs before their enemies!</VERS>\r\n      <VERS vnumber=\"9\">For the Canaanites and all the inhabitants of the land will hear of it, and will compass us round, and cut off our name from the earth: and what wilt thou do for thy great name?</VERS>\r\n      <VERS vnumber=\"10\">And Jehovah said unto Joshua, Get thee up; wherefore art thou thus fallen upon thy face?</VERS>\r\n      <VERS vnumber=\"11\">Israel hath sinned; yea, they have even transgressed my covenant which I commanded them: yea, they have even taken of the devoted thing, and have also stolen, and dissembled also; and they have even put it among their own stuff.</VERS>\r\n      <VERS vnumber=\"12\">Therefore the children of Israel cannot stand before their enemies; they turn their backs before their enemies, because they are become accursed: I will not be with you any more, except ye destroy the devoted thing from among you.</VERS>\r\n      <VERS vnumber=\"13\">Up, sanctify the people, and say, Sanctify yourselves against tomorrow: for thus saith Jehovah, the God of Israel, There is a devoted thing in the midst of thee, O Israel; thou canst not stand before thine enemies, until ye take away the devoted thing from among you.</VERS>\r\n      <VERS vnumber=\"14\">In the morning therefore ye shall be brought near by your tribes: and it shall be, that the tribe which Jehovah taketh shall come near by families; and the family which Jehovah shall take shall come near by households; and the household which Jehovah shall take shall come near man by man.</VERS>\r\n      <VERS vnumber=\"15\">And it shall be, that he that is taken with the devoted thing shall be burnt with fire, he and all that he hath; because he hath transgressed the covenant of Jehovah, and because he hath wrought folly in Israel.</VERS>\r\n      <VERS vnumber=\"16\">So Joshua rose up early in the morning, and brought Israel near by their tribes; and the tribe of Judah was taken:</VERS>\r\n      <VERS vnumber=\"17\">and he brought near the family of Judah; and he took the family of the Zerahites: and he brought near the family of the Zerahites man by man; and Zabdi was taken:</VERS>\r\n      <VERS vnumber=\"18\">and he brought near 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.</VERS>\r\n      <VERS vnumber=\"19\">And Joshua said unto Achan, My son, give, I pray thee, glory to Jehovah, the God of Israel, and make confession unto him; and tell me now what thou hast done; hide it not from me.</VERS>\r\n      <VERS vnumber=\"20\">And Achan answered Joshua, and said, Of a truth I have sinned against Jehovah, the God of Israel, and thus and thus have I done:</VERS>\r\n      <VERS vnumber=\"21\">when I saw among the spoil a goodly Babylonish mantle, 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.</VERS>\r\n      <VERS vnumber=\"22\">So Joshua sent messengers, and they ran unto the tent; and, behold, it was hid in his tent, and the silver under it.</VERS>\r\n      <VERS vnumber=\"23\">And they took them from the midst of the tent, and brought them unto Joshua, and unto all the children of Israel; and they laid them down before Jehovah.</VERS>\r\n      <VERS vnumber=\"24\">And Joshua, and all Israel with him, took Achan the son of Zerah, and the silver, and the mantle, 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 up unto the valley of Achor.</VERS>\r\n      <VERS vnumber=\"25\">And Joshua said, Why hast thou troubled us? Jehovah shall trouble thee this day. And all Israel stoned him with stones; and they burned them with fire, and stoned them with stones.</VERS>\r\n      <VERS vnumber=\"26\">And they raised over him a great heap of stones, unto this day; and Jehovah turned from the fierceness of his anger. Wherefore the name of that place was called, The valley of Achor, unto this day.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">And Jehovah 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;</VERS>\r\n      <VERS vnumber=\"2\">And 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: set thee an ambush for the city behind it.</VERS>\r\n      <VERS vnumber=\"3\">So Joshua arose, and all the people of war, to go up to Ai: and Joshua chose out thirty thousand men, the mighty men of valor, and sent them forth by night.</VERS>\r\n      <VERS vnumber=\"4\">And he commanded them, saying, Behold, ye shall lie in ambush against the city, behind the city; go not very far from the city, but be ye all ready:</VERS>\r\n      <VERS vnumber=\"5\">and 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;</VERS>\r\n      <VERS vnumber=\"6\">and they will come out after us, till we have drawn them away from the city; for they will say, They flee before us, as at the first: so we will flee before them;</VERS>\r\n      <VERS vnumber=\"7\">and ye shall rise up from the ambush, and take possession of the city: for Jehovah your God will deliver it into your hand.</VERS>\r\n      <VERS vnumber=\"8\">And it shall be, when ye have seized upon the city, that ye shall set the city on fire; according to the word of Jehovah shall ye do: see, I have commanded you.</VERS>\r\n      <VERS vnumber=\"9\">And Joshua sent them forth; and they went to the ambushment, and abode between Beth-el and Ai, on the west side of Ai: but Joshua lodged that night among the people.</VERS>\r\n      <VERS vnumber=\"10\">And Joshua arose up early in the morning, and mustered the people, and went up, he and the elders of Israel, before the people to Ai.</VERS>\r\n      <VERS vnumber=\"11\">And all the people, [even] the [men of] war that were with him, went up, and drew nigh, and came before the city, and encamped on the north side of Ai: now there was a valley between him and Ai.</VERS>\r\n      <VERS vnumber=\"12\">And he took about five thousand men, and set them in ambush between Beth-el and Ai, on the west side of the city.</VERS>\r\n      <VERS vnumber=\"13\">So they set the people, even all the host that was on the north of the city, and their liers-in-wait that were on the west of the city; and Joshua went that night into the midst of the valley.</VERS>\r\n      <VERS vnumber=\"14\">And 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 the time appointed, before the Arabah; but he knew not that there was an ambush against him behind the city.</VERS>\r\n      <VERS vnumber=\"15\">And Joshua and all Israel made as if they were beaten before them, and fled by the way of the wilderness.</VERS>\r\n      <VERS vnumber=\"16\">And all the people that were in the city were called together to pursue after them: and they pursued after Joshua, and were drawn away from the city.</VERS>\r\n      <VERS vnumber=\"17\">And there was not a man left in Ai or Beth-el, that went not out after Israel: and they left the city open, and pursued after Israel.</VERS>\r\n      <VERS vnumber=\"18\">And Jehovah said unto Joshua, Stretch out the javelin that is in thy hand toward Ai; for I will give it into thy hand. And Joshua stretched out the javelin that was in his hand toward the city.</VERS>\r\n      <VERS vnumber=\"19\">And the ambush arose quickly out of their place, and they ran as soon as he had stretched out his hand, and entered into the city, and took it; and they hasted and set the city on fire.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And the others came forth 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.</VERS>\r\n      <VERS vnumber=\"23\">And the king of Ai they took alive, and brought him to Joshua.</VERS>\r\n      <VERS vnumber=\"24\">And 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 pursued them, and they were all fallen by the edge of the sword, until they were consumed, that all Israel returned unto Ai, and smote it with the edge of the sword.</VERS>\r\n      <VERS vnumber=\"25\">And all that fell that day, both of men and women, were twelve thousand, even all the men of Ai.</VERS>\r\n      <VERS vnumber=\"26\">For Joshua drew not back his hand, wherewith he stretched out the javelin, until he had utterly destroyed all the inhabitants of Ai.</VERS>\r\n      <VERS vnumber=\"27\">Only the cattle and the spoil of that city Israel took for prey unto themselves, according unto the word of Jehovah which he commanded Joshua.</VERS>\r\n      <VERS vnumber=\"28\">So Joshua burnt Ai, and made it a heap for ever, even a desolation, unto this day.</VERS>\r\n      <VERS vnumber=\"29\">And the king of Ai he hanged on a tree until the eventide: and at the going down of the sun Joshua commanded, and they took his body down from the tree, and cast it at the entrance of the gate of the city, and raised thereon a great heap of stones, unto this day.</VERS>\r\n      <VERS vnumber=\"30\">Then Joshua built an altar unto Jehovah, the God of Israel, in mount Ebal,</VERS>\r\n      <VERS vnumber=\"31\">as Moses the servant of Jehovah commanded the children of Israel, as it is written in the book of the law of Moses, an altar of unhewn stones, upon which no man had lifted up any iron: and they offered thereon burnt-offerings unto Jehovah, and sacrificed peace-offerings.</VERS>\r\n      <VERS vnumber=\"32\">And he wrote there upon the stones a copy of the law of Moses, which he wrote, in the presence of the children of Israel.</VERS>\r\n      <VERS vnumber=\"33\">And all Israel, and their elders and officers, and their judges, stood on this side of the ark and on that side before the priests the Levites, that bare the ark of the covenant of Jehovah, as well the sojourner as the homeborn; half of them in front of mount Gerizim, and half of them in front of mount Ebal; as Moses the servant of Jehovah had commanded at the first, that they should bless the people of Israel.</VERS>\r\n      <VERS vnumber=\"34\">And afterward he read all the words of the law, the blessing and the curse, according to all that is written in the book of the law.</VERS>\r\n      <VERS vnumber=\"35\">There was not a word of all that Moses commanded, which Joshua read not before all the assembly of Israel, and the women, and the little ones, and the sojourners that were among them.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">And it came to pass, when all the kings that were beyond the Jordan, in the hill-country, and in the lowland, and on all the shore of the great sea in front of Lebanon, the Hittite, and the Amorite, the Canaanite, the Perizzite, the Hivite, and the Jebusite, heard thereof;</VERS>\r\n      <VERS vnumber=\"2\">that they gathered themselves together, to fight with Joshua and with Israel, with one accord.</VERS>\r\n      <VERS vnumber=\"3\">But when the inhabitants of Gibeon heard what Joshua had done unto Jericho and to Ai,</VERS>\r\n      <VERS vnumber=\"4\">they also did work wilily, and went and made as if they had been ambassadors, and took old sacks upon their asses, and wine-skins, old and rent and bound up,</VERS>\r\n      <VERS vnumber=\"5\">and old and patched shoes upon their feet, and old garments upon them; and all the bread of their provision was dry and was become mouldy.</VERS>\r\n      <VERS vnumber=\"6\">And they went to Joshua unto the camp at Gilgal, and said unto him, and to the men of Israel, We are come from a far country: now therefore make ye a covenant with us.</VERS>\r\n      <VERS vnumber=\"7\">And the men of Israel said unto the Hivites, Peradventure ye dwell among us; and how shall we make a covenant with you?</VERS>\r\n      <VERS vnumber=\"8\">And they said unto Joshua, We are thy servants. And Joshua said unto them, Who are ye? and from whence come ye?</VERS>\r\n      <VERS vnumber=\"9\">And they said unto him, From a very far country thy servants are come because of the name of Jehovah thy God: for we have heard the fame of him, and all that he did in Egypt,</VERS>\r\n      <VERS vnumber=\"10\">and all that he did to the two kings of the Amorites, that were beyond the Jordan, to Sihon king of Heshbon, and to Og king of Bashan, who was at Ashtaroth.</VERS>\r\n      <VERS vnumber=\"11\">And our elders and all the inhabitants of our country spake to us, saying, Take provision in your hand for the journey, and go to meet them, and say unto them, We are your servants: and now make ye a covenant with us.</VERS>\r\n      <VERS vnumber=\"12\">This 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 is become mouldy:</VERS>\r\n      <VERS vnumber=\"13\">and these wine-skins, which we filled, were new; and, behold, they are rent: and these our garments and our shoes are become old by reason of the very long journey.</VERS>\r\n      <VERS vnumber=\"14\">And the men took of their provision, and asked not counsel at the mouth of Jehovah.</VERS>\r\n      <VERS vnumber=\"15\">And Joshua made peace with them, and made a covenant with them, to let them live: and the princes of the congregation sware unto them.</VERS>\r\n      <VERS vnumber=\"16\">And it came to pass at the end of three days after they had made a covenant with them, that they heard that they were their neighbors, and that they dwelt among them.</VERS>\r\n      <VERS vnumber=\"17\">And the children of Israel journeyed, and came unto their cities on the third day. Now their cities were Gibeon, and Chephirah, and Beeroth, and Kiriath-jearim.</VERS>\r\n      <VERS vnumber=\"18\">And the children of Israel smote them not, because the princes of the congregation had sworn unto them by Jehovah, the God of Israel. And all the congregation murmured against the princes.</VERS>\r\n      <VERS vnumber=\"19\">But all the princes said unto all the congregation, We have sworn unto them by Jehovah, the God of Israel: now therefore we may not touch them.</VERS>\r\n      <VERS vnumber=\"20\">This we will do to them, and let them live; lest wrath be upon us, because of the oath which we sware unto them.</VERS>\r\n      <VERS vnumber=\"21\">And the princes said unto them, Let them live: so they became hewers of wood and drawers of water unto all the congregation, as the princes had spoken unto them.</VERS>\r\n      <VERS vnumber=\"22\">And 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?</VERS>\r\n      <VERS vnumber=\"23\">Now therefore ye are cursed, and there shall never fail to be of you bondmen, both hewers of wood and drawers of water for the house of my God.</VERS>\r\n      <VERS vnumber=\"24\">And they answered Joshua, and said, Because it was certainly told thy servants, how that Jehovah 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 for our lives because of you, and have done this thing.</VERS>\r\n      <VERS vnumber=\"25\">And now, behold, we are in thy hand: as it seemeth good and right unto thee to do unto us, do.</VERS>\r\n      <VERS vnumber=\"26\">And so did he unto them, and delivered them out of the hand of the children of Israel, that they slew them not.</VERS>\r\n      <VERS vnumber=\"27\">And Joshua made them that day hewers of wood and drawers of water for the congregation, and for the altar of Jehovah, unto this day, in the place which he should choose.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">Now it came to pass, when Adoni-zedek king of Jerusalem 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;</VERS>\r\n      <VERS vnumber=\"2\">that 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.</VERS>\r\n      <VERS vnumber=\"3\">Wherefore Adoni-zedek 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,</VERS>\r\n      <VERS vnumber=\"4\">Come up unto me, and help me, and let us smite Gibeon; for it hath made peace with Joshua and with the children of Israel.</VERS>\r\n      <VERS vnumber=\"5\">Therefore 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 against Gibeon, and made war against it.</VERS>\r\n      <VERS vnumber=\"6\">And 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 hill-country are gathered together against us.</VERS>\r\n      <VERS vnumber=\"7\">So Joshua went up from Gilgal, he, and all the people of war with him, and all the mighty men of valor.</VERS>\r\n      <VERS vnumber=\"8\">And Jehovah said unto Joshua, Fear them not: for I have delivered them into thy hands; there shall not a man of them stand before thee.</VERS>\r\n      <VERS vnumber=\"9\">Joshua therefore came upon them suddenly; [for] he went up from Gilgal all the night.</VERS>\r\n      <VERS vnumber=\"10\">And Jehovah discomfited them before Israel, and he slew them with a great slaughter at Gibeon, and chased them by the way of the ascent of Beth-horon, and smote them to Azekah, and unto Makkedah.</VERS>\r\n      <VERS vnumber=\"11\">And it came to pass, as they fled from before Israel, while they were at the descent of Beth-horon, that Jehovah cast down great stones from heaven upon them unto Azekah, and they died: they were more who died with the hailstones than they whom the children of Israel slew with the sword.</VERS>\r\n      <VERS vnumber=\"12\">Then spake Joshua to Jehovah in the day when Jehovah 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 Aijalon.</VERS>\r\n      <VERS vnumber=\"13\">And the sun stood still, and the moon stayed, Until the nation had avenged themselves of their enemies.     Is not this written in the book of Jashar? And the sun stayed in the midst of heaven, and hasted not to go down about a whole day.</VERS>\r\n      <VERS vnumber=\"14\">And there was no day like that before it or after it, that Jehovah hearkened unto the voice of a man: for Jehovah fought for Israel.</VERS>\r\n      <VERS vnumber=\"15\">And Joshua returned, and all Israel with him, unto the camp to Gilgal.</VERS>\r\n      <VERS vnumber=\"16\">And these five kings fled, and hid themselves in the cave at Makkedah.</VERS>\r\n      <VERS vnumber=\"17\">And it was told Joshua, saying, The five kings are found, hidden in the cave at Makkedah.</VERS>\r\n      <VERS vnumber=\"18\">And Joshua said, Roll great stones unto the mouth of the cave, and set men by it to keep them:</VERS>\r\n      <VERS vnumber=\"19\">but stay not ye; pursue after your enemies, and smite the hindmost of them; suffer them not to enter into their cities: for Jehovah your God hath delivered them into your hand.</VERS>\r\n      <VERS vnumber=\"20\">And 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, and the remnant which remained of them had entered into the fortified cities,</VERS>\r\n      <VERS vnumber=\"21\">that all the people returned to the camp to Joshua at Makkedah in peace: none moved his tongue against any of the children of Israel.</VERS>\r\n      <VERS vnumber=\"22\">Then said Joshua, Open the mouth of the cave, and bring forth those five kings unto me out of the cave.</VERS>\r\n      <VERS vnumber=\"23\">And 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, the king of Eglon.</VERS>\r\n      <VERS vnumber=\"24\">And it came to pass, when they brought forth those kings unto Joshua, that Joshua called for all the men of Israel, and said unto the chiefs of the men of war that 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.</VERS>\r\n      <VERS vnumber=\"25\">And Joshua said unto them, Fear not, nor be dismayed; be strong and of good courage: for thus shall Jehovah do to all your enemies against whom ye fight.</VERS>\r\n      <VERS vnumber=\"26\">And afterward Joshua smote them, and put them to death, and hanged them on five trees: and they were hanging upon the trees until the evening.</VERS>\r\n      <VERS vnumber=\"27\">And 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 hidden themselves, and laid great stones on the mouth of the cave, unto this very day.</VERS>\r\n      <VERS vnumber=\"28\">And Joshua took Makkedah on that day, 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 left none remaining; and he did to the king of Makkedah as he had done unto the king of Jericho.</VERS>\r\n      <VERS vnumber=\"29\">And Joshua passed from Makkedah, and all Israel with him, unto Libnah, and fought against Libnah:</VERS>\r\n      <VERS vnumber=\"30\">and Jehovah 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 left none remaining in it; and he did unto the king thereof as he had done unto the king of Jericho.</VERS>\r\n      <VERS vnumber=\"31\">And Joshua passed from Libnah, and all Israel with him, unto Lachish, and encamped against it, and fought against it:</VERS>\r\n      <VERS vnumber=\"32\">and Jehovah delivered Lachish into the hand of Israel; and he 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.</VERS>\r\n      <VERS vnumber=\"33\">Then Horam king of Gezer came up to help Lachish; and Joshua smote him and his people, until he had left him none remaining.</VERS>\r\n      <VERS vnumber=\"34\">And Joshua passed from Lachish, and all Israel with him, unto Eglon; and they encamped against it, and fought against it;</VERS>\r\n      <VERS vnumber=\"35\">and 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.</VERS>\r\n      <VERS vnumber=\"36\">And Joshua went up from Eglon, and all Israel with him, unto Hebron; and they fought against it:</VERS>\r\n      <VERS vnumber=\"37\">and 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 he utterly destroyed it, and all the souls that were therein.</VERS>\r\n      <VERS vnumber=\"38\">And Joshua returned, and all Israel with him, to Debir, and fought against it:</VERS>\r\n      <VERS vnumber=\"39\">and 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 the king thereof.</VERS>\r\n      <VERS vnumber=\"40\">So Joshua smote all the land, the hill-country, and the South, and the lowland, and the slopes, and all their kings: he left none remaining, but he utterly destroyed all that breathed, as Jehovah, the God of Israel, commanded.</VERS>\r\n      <VERS vnumber=\"41\">And Joshua smote them from Kadesh-barnea even unto Gaza, and all the country of Goshen, even unto Gibeon.</VERS>\r\n      <VERS vnumber=\"42\">And all these kings and their land did Joshua take at one time, because Jehovah, the God of Israel, fought for Israel.</VERS>\r\n      <VERS vnumber=\"43\">And Joshua returned, and all Israel with him, unto the camp to Gilgal.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">And it came to pass, when Jabin king of Hazor heard thereof, that he sent to Jobab king of Madon, and to the king of Shimron, and to the king of Achshaph,</VERS>\r\n      <VERS vnumber=\"2\">and to the kings that were on the north, in the hill-country, and in the Arabah south of Chinneroth, and in the lowland, and in the heights of Dor on the west,</VERS>\r\n      <VERS vnumber=\"3\">to the Canaanite on the east and on the west, and the Amorite, and the Hittite, and the Perizzite, and the Jebusite in the hill-country, and the Hivite under Hermon in the land of Mizpah.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And all these kings met together; and they came and encamped together at the waters of Merom, to fight with Israel.</VERS>\r\n      <VERS vnumber=\"6\">And Jehovah said unto Joshua, Be not afraid because of them; for to-morrow at this time will I deliver them up all slain before Israel: thou shalt hock their horses, and burn their chariots with fire.</VERS>\r\n      <VERS vnumber=\"7\">So Joshua came, and all the people of war with him, against them by the waters of Merom suddenly, and fell upon them.</VERS>\r\n      <VERS vnumber=\"8\">And Jehovah delivered them into the hand of Israel, and they smote them, and chased them unto great Sidon, and unto Misrephoth-maim, and unto the valley of Mizpeh eastward; and they smote them, until they left them none remaining.</VERS>\r\n      <VERS vnumber=\"9\">And Joshua did unto them as Jehovah bade him: he hocked their horses, and burnt their chariots with fire.</VERS>\r\n      <VERS vnumber=\"10\">And Joshua turned back at that time, and took Hazor, and smote the king thereof with the sword: for Hazor beforetime was the head of all those kingdoms.</VERS>\r\n      <VERS vnumber=\"11\">And they smote all the souls that were therein with the edge of the sword, utterly destroying them; there was none left that breathed: and he burnt Hazor with fire.</VERS>\r\n      <VERS vnumber=\"12\">And all the cities of those kings, and all the kings of them, did Joshua take, and he smote them with the edge of the sword, and utterly destroyed them; as Moses the servant of Jehovah commanded.</VERS>\r\n      <VERS vnumber=\"13\">But as for the cities that stood on their mounds, Israel burned none of them, save Hazor only; that did Joshua burn.</VERS>\r\n      <VERS vnumber=\"14\">And 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 that breathed.</VERS>\r\n      <VERS vnumber=\"15\">As Jehovah commanded Moses his servant, so did Moses command Joshua: and so did Joshua; he left nothing undone of all that Jehovah commanded Moses.</VERS>\r\n      <VERS vnumber=\"16\">So Joshua took all that land, the hill-country, and all the South, and all the land of Goshen, and the lowland, and the Arabah, and the hill-country of Israel, and the lowland of the same;</VERS>\r\n      <VERS vnumber=\"17\">from mount Halak, that goeth up to Seir, even unto Baal-gad in the valley of Lebanon under mount Hermon: and all their kings he took, and smote them, and put them to death.</VERS>\r\n      <VERS vnumber=\"18\">Joshua made war a long time with all those kings.</VERS>\r\n      <VERS vnumber=\"19\">There was not a city that made peace with the children of Israel, save the Hivites the inhabitants of Gibeon: they took all in battle.</VERS>\r\n      <VERS vnumber=\"20\">For it was of Jehovah to harden their hearts, to come against Israel in battle, that he might utterly destroy them, that they might have no favor, but that he might destroy them, as Jehovah commanded Moses.</VERS>\r\n      <VERS vnumber=\"21\">And Joshua came at that time, and cut off the Anakim from the hill-country, from Hebron, from Debir, from Anab, and from all the hill-country of Judah, and from all the hill-country of Israel: Joshua utterly destroyed them with their cities.</VERS>\r\n      <VERS vnumber=\"22\">There was none of the Anakim left in the land of the children of Israel: only in Gaza, in Gath, and in Ashdod, did some remain.</VERS>\r\n      <VERS vnumber=\"23\">So Joshua took the whole land, according to all that Jehovah spake unto Moses; and Joshua gave it for an inheritance unto Israel according to their divisions by their tribes. And the land had rest from war.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">Now these are the kings of the land, whom the children of Israel smote, and possessed their land beyond the Jordan toward the sunrising, from the valley of the Arnon unto mount Hermon, and all the Arabah eastward:</VERS>\r\n      <VERS vnumber=\"2\">Sihon king of the Amorites, who dwelt in Heshbon, and ruled from Aroer, which is on the edge of the valley of the Arnon, and [the city that is in] the middle of the valley, and half Gilead, even unto the river Jabbok, the border of the children of Ammon;</VERS>\r\n      <VERS vnumber=\"3\">and the Arabah unto the sea of Chinneroth, eastward, and unto the sea of the Arabah, even the Salt Sea, eastward, the way to Beth-jeshimoth; and on the south, under the slopes of Pisgah:</VERS>\r\n      <VERS vnumber=\"4\">and the border of Og king of Bashan, of the remnant of the Rephaim, who dwelt at Ashtaroth and at Edrei,</VERS>\r\n      <VERS vnumber=\"5\">and ruled in mount Hermon, and in Salecah, and in all Bashan, unto the border of the Geshurites and the Maacathites, and half Gilead, the border of Sihon king of Heshbon.</VERS>\r\n      <VERS vnumber=\"6\">Moses the servant of Jehovah and the children of Israel smote them: and Moses the servant of Jehovah gave it for a possession unto the Reubenites, and the Gadites, and the half-tribe of Manasseh.</VERS>\r\n      <VERS vnumber=\"7\">And these are the kings of the land whom Joshua and the children of Israel smote beyond the Jordan westward, from Baal-gad in the valley of Lebanon even unto mount Halak, that goeth up to Seir; and Joshua gave it unto the tribes of Israel for a possession according to their divisions;</VERS>\r\n      <VERS vnumber=\"8\">in the hill-country, and in the lowland, and in the Arabah, and in the slopes, and in the wilderness, and in the South; the Hittite, the Amorite, and the Canaanite, the Perizzite, the Hivite, and the Jebusite:</VERS>\r\n      <VERS vnumber=\"9\">the king of Jericho, one; the king of Ai, which is beside Bethel, one;</VERS>\r\n      <VERS vnumber=\"10\">the king of Jerusalem, one; the king of Hebron, one;</VERS>\r\n      <VERS vnumber=\"11\">the king of Jarmuth, one; the king of Lachish, one;</VERS>\r\n      <VERS vnumber=\"12\">the king of Eglon, one; the king of Gezer, one;</VERS>\r\n      <VERS vnumber=\"13\">the king of Debir, one; the king of Geder, one;</VERS>\r\n      <VERS vnumber=\"14\">the king of Hormah, one; the king of Arad, one;</VERS>\r\n      <VERS vnumber=\"15\">the king of Libnah, one; the king of Adullam, one;</VERS>\r\n      <VERS vnumber=\"16\">the king of Makkedah, one; the king of Bethel, one;</VERS>\r\n      <VERS vnumber=\"17\">the king of Tappuah, one; the king of Hepher, one;</VERS>\r\n      <VERS vnumber=\"18\">the king of Aphek, one; the king of Lassharon, one;</VERS>\r\n      <VERS vnumber=\"19\">the king of Madon, one; the king of Hazor, one;</VERS>\r\n      <VERS vnumber=\"20\">the king of Shimron-meron, one; the king of Achshaph, one;</VERS>\r\n      <VERS vnumber=\"21\">the king of Taanach, one; the king of Megiddo, one;</VERS>\r\n      <VERS vnumber=\"22\">the king of Kedesh, one; the king of Jokneam in Carmel, one;</VERS>\r\n      <VERS vnumber=\"23\">the king of Dor in the height of Dor, one; the king of Goiim in Gilgal, one;</VERS>\r\n      <VERS vnumber=\"24\">the king of Tirzah, one: all the kings thirty and one.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">Now Joshua was old and well stricken in years; and Jehovah said unto him, Thou art old and well stricken in years, and there remaineth yet very much land to be possessed.</VERS>\r\n      <VERS vnumber=\"2\">This is the land that yet remaineth: all the regions of the Philistines, and all the Geshurites;</VERS>\r\n      <VERS vnumber=\"3\">from the Shihor, which is before Egypt, even unto the border of Ekron northward, [which] is reckoned to the Canaanites; the five lords of the Philistines; the Gazites, and the Ashdodites, the Ashkelonites, the Gittites, and the Ekronites; also the Avvim,</VERS>\r\n      <VERS vnumber=\"4\">on the south; all the land of the Canaanites, and Mearah that belongeth to the Sidonians, unto Aphek, to the border of the Amorites;</VERS>\r\n      <VERS vnumber=\"5\">and the land of the Gebalites, and all Lebanon, toward the sunrising, from Baal-gad under mount Hermon unto the entrance of Hamath;</VERS>\r\n      <VERS vnumber=\"6\">all the inhabitants of the hill-country from Lebanon unto Misrephoth-maim, even all the Sidonians; them will I drive out from before the children of Israel: only allot thou it unto Israel for an inheritance, as I have commanded thee.</VERS>\r\n      <VERS vnumber=\"7\">Now therefore divide this land for an inheritance unto the nine tribes, and the half-tribe of Manasseh.</VERS>\r\n      <VERS vnumber=\"8\">With him the Reubenites and the Gadites received their inheritance, which Moses gave them, beyond the Jordan eastward, even as Moses the servant of Jehovah gave them:</VERS>\r\n      <VERS vnumber=\"9\">from Aroer, that is on the edge of the valley of the Arnon, and the city that is in the middle of the valley, and all the plain of Medeba unto Dibon;</VERS>\r\n      <VERS vnumber=\"10\">and all the cities of Sihon king of the Amorites, who reigned in Heshbon, unto the border of the children of Ammon;</VERS>\r\n      <VERS vnumber=\"11\">and Gilead, and the border of the Geshurites and Maacathites, and all mount Hermon, and all Bashan unto Salecah;</VERS>\r\n      <VERS vnumber=\"12\">all the kingdom of Og in Bashan, who reigned in Ashtaroth and in Edrei (the same was left of the remnant of the Rephaim); for these did Moses smite, and drove them out.</VERS>\r\n      <VERS vnumber=\"13\">Nevertheless the children of Israel drove not out the Geshurites, nor the Maacathites: but Geshur and Maacath dwell in the midst of Israel unto this day.</VERS>\r\n      <VERS vnumber=\"14\">Only unto the tribe of Levi he gave no inheritance; the offerings of Jehovah, the God of Israel, made by fire are his inheritance, as he spake unto him.</VERS>\r\n      <VERS vnumber=\"15\">And Moses gave unto the tribe of the children of Reuben according to their families.</VERS>\r\n      <VERS vnumber=\"16\">And their border was from Aroer, that is on the edge of the valley of the Arnon, and the city that is in the middle of the valley, and all the plain by Medeba;</VERS>\r\n      <VERS vnumber=\"17\">Heshbon, and all its cities that are in the plain; Dibon, and Bamoth-baal, and Beth-baal-meon,</VERS>\r\n      <VERS vnumber=\"18\">and Jahaz, and Kedemoth, and Mephaath,</VERS>\r\n      <VERS vnumber=\"19\">and Kiriathaim, and Sibmah, and Zereth-shahar in the mount of the valley,</VERS>\r\n      <VERS vnumber=\"20\">and Beth-peor, and the slopes of Pisgah, and Beth-jeshimoth,</VERS>\r\n      <VERS vnumber=\"21\">and all the cities of the plain, and all the kingdom of Sihon king of the Amorites, who reigned in Heshbon, whom Moses smote with the chiefs of Midian, Evi, and Rekem, and Zur, and Hur, and Reba, the princes of Sihon, that dwelt in the land.</VERS>\r\n      <VERS vnumber=\"22\">Balaam also the son of Beor, the soothsayer, did the children of Israel slay with the sword among the rest of their slain.</VERS>\r\n      <VERS vnumber=\"23\">And the border of the children of Reuben was the Jordan, and the border [thereof]. This was the inheritance of the children of Reuben according to their families, the cities and the villages thereof.</VERS>\r\n      <VERS vnumber=\"24\">And Moses gave unto the tribe of Gad, unto the children of Gad, according to their families.</VERS>\r\n      <VERS vnumber=\"25\">And their border was Jazer, and all the cities of Gilead, and half the land of the children of Ammon, unto Aroer that is before Rabbah;</VERS>\r\n      <VERS vnumber=\"26\">and from Heshbon unto Ramath-mizpeh, and Betonim; and from Mahanaim unto the border of Debir;</VERS>\r\n      <VERS vnumber=\"27\">and in the valley, Beth-haram, and Beth-nimrah, and Succoth, and Zaphon, the rest of the kingdom of Sihon king of Heshbon, the Jordan and the border [thereof], unto the uttermost part of the sea of Chinnereth beyond the Jordan eastward.</VERS>\r\n      <VERS vnumber=\"28\">This is the inheritance of the children of Gad according to their families, the cities and the villages thereof.</VERS>\r\n      <VERS vnumber=\"29\">And Moses gave [inheritance] unto the half-tribe of Manasseh: and it was for the half-tribe of the children of Manasseh according to their families.</VERS>\r\n      <VERS vnumber=\"30\">And their border 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:</VERS>\r\n      <VERS vnumber=\"31\">and half Gilead, and Ashtaroth, and Edrei, the cities of the kingdom of Og in Bashan, were for the children of Machir the son of Manasseh, even for the half of the children of Machir according to their families.</VERS>\r\n      <VERS vnumber=\"32\">These are the inheritances which Moses distributed in the plains of Moab, beyond the Jordan at Jericho, eastward.</VERS>\r\n      <VERS vnumber=\"33\">But unto the tribe of Levi Moses gave no inheritance: Jehovah, the God of Israel, is their inheritance, as he spake unto them.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">And these are the inheritances which the children of Israel took in the land of Canaan, which Eleazar the priest, and Joshua the son of Nun, and the heads of the fathers` [houses] of the tribes of the children of Israel, distributed unto them,</VERS>\r\n      <VERS vnumber=\"2\">by the lot of their inheritance, as Jehovah commanded by Moses, for the nine tribes, and for the half-tribe.</VERS>\r\n      <VERS vnumber=\"3\">For Moses had given the inheritance of the two tribes and the half-tribe beyond the Jordan: but unto the Levites he gave no inheritance among them.</VERS>\r\n      <VERS vnumber=\"4\">For the children of Joseph were two tribes, Manasseh and Ephraim: and they gave no portion unto the Levites in the land, save cities to dwell in, with the suburbs thereof for their cattle and for their substance.</VERS>\r\n      <VERS vnumber=\"5\">As Jehovah commanded Moses, so the children of Israel did; and they divided the land.</VERS>\r\n      <VERS vnumber=\"6\">Then the children of Judah drew nigh unto Joshua in Gilgal: and Caleb the son of Jephunneh the Kenizzite said unto him, Thou knowest the thing that Jehovah spake unto Moses the man of God concerning me and concerning thee in Kadesh-barnea.</VERS>\r\n      <VERS vnumber=\"7\">Forty years old was I when Moses the servant of Jehovah sent me from Kadesh-barnea to spy out the land; and I brought him word again as it was in my heart.</VERS>\r\n      <VERS vnumber=\"8\">Nevertheless my brethren that went up with me made the heart of the people melt; but I wholly followed Jehovah my God.</VERS>\r\n      <VERS vnumber=\"9\">And Moses sware on that day, saying, Surely the land whereon thy foot hath trodden shall be an inheritance to thee and to thy children for ever, because thou hast wholly followed Jehovah my God.</VERS>\r\n      <VERS vnumber=\"10\">And now, behold, Jehovah hath kept me alive, as he spake, these forty and five years, from the time that Jehovah spake this word unto Moses, while Israel walked in the wilderness: and now, lo, I am this day fourscore and five years old.</VERS>\r\n      <VERS vnumber=\"11\">As yet I am as strong this day as I as in the day that Moses sent me: as my strength was then, even so is my strength now, for war, and to go out and to come in.</VERS>\r\n      <VERS vnumber=\"12\">Now therefore give me this hill-country, whereof Jehovah spake in that day; for thou heardest in that day how the Anakim were there, and cities great and fortified: it may be that Jehovah will be with me, and I shall drive them out, as Jehovah spake.</VERS>\r\n      <VERS vnumber=\"13\">And Joshua blessed him; and he gave Hebron unto Caleb the son of Jephunneh for an inheritance.</VERS>\r\n      <VERS vnumber=\"14\">Therefore Hebron became the inheritance of Caleb the son of Jephunneh the Kenizzite unto this day; because that he wholly followed Jehovah, the God of Israel.</VERS>\r\n      <VERS vnumber=\"15\">Now the name of Hebron beforetime was Kiriath-arba; [which Arba was] the greatest man among the Anakim. And the land had rest from war.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">And the lot for the tribe of the children of Judah according to their families was unto the border of Edom, even to the wilderness of Zin southward, at the uttermost part of the south.</VERS>\r\n      <VERS vnumber=\"2\">And their south border was from the uttermost part of the Salt Sea, from the bay that looketh southward;</VERS>\r\n      <VERS vnumber=\"3\">and it went out southward of the ascent of Akrabbim, and passed along to Zin, and went up by the south of Kadesh-barnea, and passed along by Hezron, and went up to Addar, and turned about to Karka;</VERS>\r\n      <VERS vnumber=\"4\">and it passed along to Azmon, and went out at the brook of Egypt; and the goings out of the border were at the sea: this shall be your south border.</VERS>\r\n      <VERS vnumber=\"5\">And the east border was the Salt Sea, even unto the end of the Jordan. And the border of the north quarter was from the bay of the sea at the end of the Jordan;</VERS>\r\n      <VERS vnumber=\"6\">and the border went up to Beth-hoglah, and passed along by the north of Beth-arabah; and the border went up to the stone of Bohan the son of Reuben;</VERS>\r\n      <VERS vnumber=\"7\">and the border went up to Debir from the valley of Achor, and so northward, looking toward Gilgal, that is over against the ascent of Adummim, which is on the south side of the river; and the border passed along to the waters of En-shemesh, and the goings out thereof were at En-rogel;</VERS>\r\n      <VERS vnumber=\"8\">and the border went up by the valley of the son of Hinnom unto the side of the Jebusite southward (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 uttermost part of the vale of Rephaim northward;</VERS>\r\n      <VERS vnumber=\"9\">and the border extended from the top of the mountain unto the fountain of the waters of Nephtoah, and went out to the cities of mount Ephron; and the border extended to Baalah (the same is Kiriath-jearim);</VERS>\r\n      <VERS vnumber=\"10\">and the border turned about from Baalah westward unto mount Seir, and passed along unto the side of mount Jearim on the north (the same is Chesalon), and went down to Beth-shemesh, and passed along by Timnah;</VERS>\r\n      <VERS vnumber=\"11\">and the border went out unto the side of Ekron northward; and the border extended to Shikkeron, and passed along to mount Baalah, and went out at Jabneel; and the goings out of the border were at the sea.</VERS>\r\n      <VERS vnumber=\"12\">And the west border was to the great sea, and the border [thereof]. This is the border of the children of Judah round about according to their families.</VERS>\r\n      <VERS vnumber=\"13\">And unto Caleb the son of Jephunneh he gave a portion among the children of Judah, according to the commandment of Jehovah to Joshua, even Kiriath-arba, [which Arba was] the father of Anak (the same is Hebron).</VERS>\r\n      <VERS vnumber=\"14\">And Caleb drove out thence the three sons of Anak: Sheshai, and Ahiman, and Talmai, the children of Anak.</VERS>\r\n      <VERS vnumber=\"15\">And he went up thence against the inhabitants of Debir: now the name of Debir beforetime was Kiriath-sepher.</VERS>\r\n      <VERS vnumber=\"16\">And Caleb said, He that smiteth Kiriath-sepher, and taketh it, to him will I give Achsah my daughter to wife.</VERS>\r\n      <VERS vnumber=\"17\">And Othniel the son of Kenaz, the brother of Caleb, took it: and he gave him Achsah his daughter to wife.</VERS>\r\n      <VERS vnumber=\"18\">And it came to pass, when she came [unto him], that she moved him to ask of her father a field: and she alighted from off her ass; and Caleb said, What wouldest thou?</VERS>\r\n      <VERS vnumber=\"19\">And she said, Give me a blessing; for that thou hast set me in the land of the South, give me also springs of water. And he gave her the upper springs and the nether springs.</VERS>\r\n      <VERS vnumber=\"20\">This is the inheritance of the tribe of the children of Judah according to their families.</VERS>\r\n      <VERS vnumber=\"21\">And the uttermost cities of the tribe of the children of Judah toward the border of Edom in the South were Kabzeel, and Eder, and Jagur,</VERS>\r\n      <VERS vnumber=\"22\">and Kinah, and Dimonah, and Adadah,</VERS>\r\n      <VERS vnumber=\"23\">and Kedesh, and Hazor, and Ithnan,</VERS>\r\n      <VERS vnumber=\"24\">Ziph, and Telem, and Bealoth,</VERS>\r\n      <VERS vnumber=\"25\">and Hazor-hadattah, and Kerioth-hezron (the same is Hazor),</VERS>\r\n      <VERS vnumber=\"26\">Amam, and Shema, and Moladah,</VERS>\r\n      <VERS vnumber=\"27\">and Hazar-gaddah, and Heshmon, and Beth-pelet,</VERS>\r\n      <VERS vnumber=\"28\">and Hazar-shual, and Beer-sheba, and Biziothiah,</VERS>\r\n      <VERS vnumber=\"29\">Baalah, and Iim, and Ezem,</VERS>\r\n      <VERS vnumber=\"30\">and Eltolad, and Chesil, and Hormah,</VERS>\r\n      <VERS vnumber=\"31\">and Ziklag, and Madmannah, and Sansannah,</VERS>\r\n      <VERS vnumber=\"32\">and Lebaoth, and Shilhim, and Ain, and Rimmon: all the cities are twenty and nine, with their villages.</VERS>\r\n      <VERS vnumber=\"33\">In the lowland, Eshtaol, and Zorah, and Ashnah,</VERS>\r\n      <VERS vnumber=\"34\">and Zanoah, and En-gannim, Tappuah, and Enam,</VERS>\r\n      <VERS vnumber=\"35\">Jarmuth, and Adullam, Socoh, and Azekah,</VERS>\r\n      <VERS vnumber=\"36\">and Shaaraim, and Adithaim, and Gederah, and Gederothaim; fourteen cities with their villages.</VERS>\r\n      <VERS vnumber=\"37\">Zenan, and Hadashah, and Migdal-gad,</VERS>\r\n      <VERS vnumber=\"38\">and Dilean, and Mizpeh, and Joktheel,</VERS>\r\n      <VERS vnumber=\"39\">Lachish, and Bozkath, and Eglon,</VERS>\r\n      <VERS vnumber=\"40\">and Cabbon, and Lahmam, and Chitlish,</VERS>\r\n      <VERS vnumber=\"41\">and Gederoth, Beth-dagon, and Naamah, and Makkedah; sixteen cities with their villages.</VERS>\r\n      <VERS vnumber=\"42\">Libnah, and Ether, and Ashan,</VERS>\r\n      <VERS vnumber=\"43\">and Iphtah, and Ashnah, and Nezib,</VERS>\r\n      <VERS vnumber=\"44\">and Keilah, and Achzib, and Mareshah; nine cities with their villages.</VERS>\r\n      <VERS vnumber=\"45\">Ekron, with its towns and its villages;</VERS>\r\n      <VERS vnumber=\"46\">from Ekron even unto the sea, all that were by the side of Ashdod, with their villages.</VERS>\r\n      <VERS vnumber=\"47\">Ashdod, its towns and its villages; Gaza, its towns and its villages; unto the brook of Egypt, and the great sea, and the border [thereof].</VERS>\r\n      <VERS vnumber=\"48\">And in the hill-country, Shamir, and Jattir, and Socoh,</VERS>\r\n      <VERS vnumber=\"49\">and Dannah, and Kiriath-sannah (the same is Debir),</VERS>\r\n      <VERS vnumber=\"50\">and Anab, and Eshtemoh, and Anim,</VERS>\r\n      <VERS vnumber=\"51\">and Goshen, and Holon, and Giloh; eleven cities with their villages.</VERS>\r\n      <VERS vnumber=\"52\">Arab, and Dumah, and Eshan,</VERS>\r\n      <VERS vnumber=\"53\">and Janim, and Beth-tappuah, and Aphekah,</VERS>\r\n      <VERS vnumber=\"54\">and Humtah, and Kiriath-arba (the same is Hebron), and Zior; nine cities with their villages.</VERS>\r\n      <VERS vnumber=\"55\">Maon, Carmel, and Ziph, and Jutah,</VERS>\r\n      <VERS vnumber=\"56\">and Jezreel, and Jokdeam, and Zanoah,</VERS>\r\n      <VERS vnumber=\"57\">Kain, Gibeah, and Timnah; ten cities with their villages.</VERS>\r\n      <VERS vnumber=\"58\">Halhul, Beth-zur, and Gedor,</VERS>\r\n      <VERS vnumber=\"59\">and Maarath, and Beth-anoth, and Eltekon; six cities with their villages.</VERS>\r\n      <VERS vnumber=\"60\">Kiriath-baal (the same is Kiriath-jearim), and Rabbah; two cities with their villages.</VERS>\r\n      <VERS vnumber=\"61\">In the wilderness, Beth-arabah, Middin, and Secacah,</VERS>\r\n      <VERS vnumber=\"62\">and Nibshan, and the City of Salt, and En-gedi; six cities with their villages.</VERS>\r\n      <VERS vnumber=\"63\">And as 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">And the lot came out for the children of Joseph from the Jordan at Jericho, at the waters of Jericho on the east, even the wilderness, going up from Jericho through the hill-country to Beth-el;</VERS>\r\n      <VERS vnumber=\"2\">and it went out from Beth-el to Luz, and passed along unto the border of the Archites to Ataroth;</VERS>\r\n      <VERS vnumber=\"3\">and it went down westward to the border of the Japhletites, unto the border of Beth-horon the nether, even unto Gezer; and the goings out thereof were at the sea.</VERS>\r\n      <VERS vnumber=\"4\">And the children of Joseph, Manasseh and Ephraim, took their inheritance.</VERS>\r\n      <VERS vnumber=\"5\">And the border of the children of Ephraim according to their families was [thus]: the border of their inheritance eastward was Ataroth-addar, unto Beth-horon the upper;</VERS>\r\n      <VERS vnumber=\"6\">and the border went out westward at Michmethath on the north; and the border turned about eastward unto Taanath-shiloh, and passed along it on the east of Janoah;</VERS>\r\n      <VERS vnumber=\"7\">and it went down from Janoah to Ataroth, and to Naarah, and reached unto Jericho, and went out at the Jordan.</VERS>\r\n      <VERS vnumber=\"8\">From Tappuah the border went along westward to the brook of Kanah; and the goings out thereof were at the sea. This is the inheritance of the tribe of the children of Ephraim according to their families;</VERS>\r\n      <VERS vnumber=\"9\">together with the cities which were set apart for the children of Ephraim in the midst of the inheritance of the children of Manasseh, all the cities with their villages.</VERS>\r\n      <VERS vnumber=\"10\">And they drove not out the Canaanites that dwelt in Gezer: but the Canaanites dwell in the midst of Ephraim unto this day, and are become servants to do taskwork.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"17\">\r\n      <VERS vnumber=\"1\">And [this] was the lot for the tribe of Manasseh; for he was the first-born of Joseph. As for Machir the first-born of Manasseh, the father of Gilead, because he was a man of war, therefore he had Gilead and Bashan.</VERS>\r\n      <VERS vnumber=\"2\">So [the lot] was for the rest of the children of Manasseh according to 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 according to their families.</VERS>\r\n      <VERS vnumber=\"3\">But 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.</VERS>\r\n      <VERS vnumber=\"4\">And they came near before Eleazar the priest, and before Joshua the son of Nun, and before the princes, saying, Jehovah commanded Moses to give us an inheritance among our brethren: therefore according to the commandment of Jehovah he gave them an inheritance among the brethren of their father.</VERS>\r\n      <VERS vnumber=\"5\">And there fell ten parts to Manasseh, besides the land of Gilead and Bashan, which is beyond the Jordan;</VERS>\r\n      <VERS vnumber=\"6\">because the daughters of Manasseh had an inheritance among his sons. And the land of Gilead belonged unto the rest of the sons of Manasseh.</VERS>\r\n      <VERS vnumber=\"7\">And the border of Manasseh was from Asher to Michmethath, which is before Shechem; and the border went along to the right hand, unto the inhabitants of En-tappuah.</VERS>\r\n      <VERS vnumber=\"8\">The land of Tappuah belonged to Manasseh; but Tappuah on the border of Manasseh belonged to the children of Ephraim.</VERS>\r\n      <VERS vnumber=\"9\">And the border went down unto the brook of Kanah, southward of the brook: these cities belonged to Ephraim among the cities of Manasseh: and the border of Manasseh was on the north side of the brook, and the goings out thereof were at the sea:</VERS>\r\n      <VERS vnumber=\"10\">southward it was Ephraim`s, and northward it was Manasseh`s, and the sea was his border; and they reached to Asher on the north, and to Issachar on the east.</VERS>\r\n      <VERS vnumber=\"11\">And Manasseh had in Issachar and in Asher Beth-shean and its towns, and Ibleam and its towns, and the inhabitants of Dor and its towns, and the inhabitants of En-dor and its towns, and the inhabitants of Taanach and its towns, and the inhabitants of Megiddo and its towns, even the three heights.</VERS>\r\n      <VERS vnumber=\"12\">Yet the children of Manasseh could not drive out [the inhabitants of] those cities; but the Canaanites would dwell in that land.</VERS>\r\n      <VERS vnumber=\"13\">And it came to pass, when the children of Israel were waxed strong, that they put the Canaanites to taskwork, and did not utterly drive them out.</VERS>\r\n      <VERS vnumber=\"14\">And the children of Joseph spake unto Joshua, saying, Why hast thou given me but one lot and one part for an inheritance, seeing I am a great people, forasmuch as hitherto Jehovah hath blessed me?</VERS>\r\n      <VERS vnumber=\"15\">And Joshua said unto them, If thou be a great people, get thee up to the forest, and cut down for thyself there in the land of the Perizzites and of the Rephaim; since the hill-country of Ephraim is too narrow for thee.</VERS>\r\n      <VERS vnumber=\"16\">And the children of Joseph said, The hill-country 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 in Beth-shean and its towns, and they who are in the valley of Jezreel.</VERS>\r\n      <VERS vnumber=\"17\">And 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:</VERS>\r\n      <VERS vnumber=\"18\">but the hill-country shall be thine; for though it is a forest, thou shalt cut it down, and the goings out thereof shall be thine; for thou shalt drive out the Canaanites, though they have chariots of iron, and though they are strong.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"18\">\r\n      <VERS vnumber=\"1\">And the whole congregation of the children of Israel assembled themselves together at Shiloh, and set up the tent of meeting there: and the land was subdued before them.</VERS>\r\n      <VERS vnumber=\"2\">And there remained among the children of Israel seven tribes, which had not yet divided their inheritance.</VERS>\r\n      <VERS vnumber=\"3\">And Joshua said unto the children of Israel, How long are ye slack to go in to possess the land, which Jehovah, the God of your fathers, hath given you?</VERS>\r\n      <VERS vnumber=\"4\">Appoint for you three men of each tribe: and I will send them, and they shall arise, and walk through the land, and describe it according to their inheritance; and they shall come unto me.</VERS>\r\n      <VERS vnumber=\"5\">And they shall divide it into seven portions: Judah shall abide in his border on the south, and the house of Joseph shall abide in their border on the north.</VERS>\r\n      <VERS vnumber=\"6\">And ye shall describe the land into seven portions, and bring [the description] hither to me; and I will cast lots for you here before Jehovah our God.</VERS>\r\n      <VERS vnumber=\"7\">For the Levites have no portion among you; for the priesthood of Jehovah is their inheritance: and Gad and Reuben and the half-tribe of Manasseh have received their inheritance beyond the Jordan eastward, which Moses the servant of Jehovah gave them.</VERS>\r\n      <VERS vnumber=\"8\">And the men arose, and went: 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; and I will cast lots for you here before Jehovah in Shiloh.</VERS>\r\n      <VERS vnumber=\"9\">And the men went and passed through the land, and described it by cities into seven portions in a book; and they came to Joshua unto the camp at Shiloh.</VERS>\r\n      <VERS vnumber=\"10\">And Joshua cast lots for them in Shiloh before Jehovah: and there Joshua divided the land unto the children of Israel according to their divisions.</VERS>\r\n      <VERS vnumber=\"11\">And the lot of the tribe of the children of Benjamin came up according to their families: and the border of their lot went out between the children of Judah and the children of Joseph.</VERS>\r\n      <VERS vnumber=\"12\">And their border on the north quarter was from the Jordan; and the border went up to the side of Jericho on the north, and went up through the hill-country westward; and the goings out thereof were at the wilderness of Beth-aven.</VERS>\r\n      <VERS vnumber=\"13\">And the border passed along from thence to Luz, to the side of Luz (the same is Beth-el), southward; and the border went down to Ataroth-addar, by the mountain that lieth on the south of Beth-horon the nether.</VERS>\r\n      <VERS vnumber=\"14\">And the border extended [thence], and turned about on the west quarter southward, from the mountain that lieth before Beth-horon southward; and the goings out thereof were at Kiriath-baal (the same is Kiriath-jearim), a city of the children of Judah: this was the west quarter.</VERS>\r\n      <VERS vnumber=\"15\">And the south quarter was from the uttermost part of Kiriath-jearim; and the border went out westward, and went out to the fountain of the waters of Nephtoah;</VERS>\r\n      <VERS vnumber=\"16\">and the border went down to the uttermost part of the mountain that lieth before the valley of the son of Hinnom, which is in the vale of Rephaim northward; and it went down to the valley of Hinnom, to the side of the Jebusite southward, and went down to En-rogel;</VERS>\r\n      <VERS vnumber=\"17\">and it extended northward, and went out at En-shemesh, and went out to Geliloth, which is over against the ascent of Adummim; and it went down to the stone of Bohan the son of Reuben;</VERS>\r\n      <VERS vnumber=\"18\">and it passed along to the side over against the Arabah northward, and went down unto the Arabah;</VERS>\r\n      <VERS vnumber=\"19\">and the border passed along to the side of Beth-hoglah northward; and the goings out of the border were at the north bay of the Salt Sea, at the south end of the Jordan: this was the south border.</VERS>\r\n      <VERS vnumber=\"20\">And the Jordan was the border of it on the east quarter. This was the inheritance of the children of Benjamin, by the borders thereof round about, according to their families.</VERS>\r\n      <VERS vnumber=\"21\">Now the cities of the tribe of the children of Benjamin according to their families were Jericho, and Beth-hoglah, and Emek-keziz,</VERS>\r\n      <VERS vnumber=\"22\">and Beth-arabah, and Zemaraim, and Beth-el,</VERS>\r\n      <VERS vnumber=\"23\">and Avvim, and Parah, and Ophrah,</VERS>\r\n      <VERS vnumber=\"24\">and Chephar-ammoni, and Ophni, and Geba; twelve cities with their villages:</VERS>\r\n      <VERS vnumber=\"25\">Gibeon, and Ramah, and Beeroth,</VERS>\r\n      <VERS vnumber=\"26\">and Mizpeh, and Chephirah, and Mozah,</VERS>\r\n      <VERS vnumber=\"27\">and Rekem, and Irpeel, and Taralah,</VERS>\r\n      <VERS vnumber=\"28\">and Zelah, Eleph, and the Jebusite (the same is Jerusalem), Gibeath, [and] Kiriath; fourteen cities with their villages. This is the inheritance of the children of Benjamin according to their families.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"19\">\r\n      <VERS vnumber=\"1\">And the second lot came out for Simeon, even for the tribe of the children of Simeon according to their families: and their inheritance was in the midst of the inheritance of the children of Judah.</VERS>\r\n      <VERS vnumber=\"2\">And they had for their inheritance Beer-sheba, or Sheba, and Moladah,</VERS>\r\n      <VERS vnumber=\"3\">and Hazar-shual, and Balah, and Ezem,</VERS>\r\n      <VERS vnumber=\"4\">and Eltolad, and Bethul, and Hormah,</VERS>\r\n      <VERS vnumber=\"5\">and Ziklag, and Beth-marcaboth, and Hazar-susah,</VERS>\r\n      <VERS vnumber=\"6\">and Beth-lebaoth, and Sharuhen; thirteen cities with their villages:</VERS>\r\n      <VERS vnumber=\"7\">Ain, Rimmon, and Ether, and Ashan; four cities with their villages:</VERS>\r\n      <VERS vnumber=\"8\">and all the villages that were round about these cities to Baalath-beer, Ramah of the South. This is the inheritance of the tribe of the children of Simeon according to their families.</VERS>\r\n      <VERS vnumber=\"9\">Out of the part of the children of Judah was the inheritance of the children of Simeon; for the portion of the children of Judah was too much for them: therefore the children of Simeon had inheritance in the midst of their inheritance.</VERS>\r\n      <VERS vnumber=\"10\">And the third lot came up for the children of Zebulun according to their families; and the border of their inheritance was unto Sarid;</VERS>\r\n      <VERS vnumber=\"11\">and their border went up westward, even to Maralah, and reached to Dabbesheth; and it reached to the brook that is before Jokneam;</VERS>\r\n      <VERS vnumber=\"12\">and it turned from Sarid eastward toward the sunrising unto the border of Chisloth-tabor; and it went out to Daberath, and went up to Japhia;</VERS>\r\n      <VERS vnumber=\"13\">and from thence it passed along eastward to Gath-hepher, to Eth-kazin; and it went out at Rimmon which stretcheth unto Neah;</VERS>\r\n      <VERS vnumber=\"14\">and the border turned about it on the north to Hannathon; and the goings out thereof were at the valley of Iphtah-el;</VERS>\r\n      <VERS vnumber=\"15\">and Kattath, and Nahalal, and Shimron, and Idalah, and Bethlehem: twelve cities with their villages.</VERS>\r\n      <VERS vnumber=\"16\">This is the inheritance of the children of Zebulun according to their families, these cities with their villages.</VERS>\r\n      <VERS vnumber=\"17\">The fourth lot came out for Issachar, even for the children of Issachar according to their families.</VERS>\r\n      <VERS vnumber=\"18\">And their border was unto Jezreel, and Chesulloth, and Shunem,</VERS>\r\n      <VERS vnumber=\"19\">and Hapharaim, and Shion, and Anaharath,</VERS>\r\n      <VERS vnumber=\"20\">and Rabbith, and Kishion, and Ebez,</VERS>\r\n      <VERS vnumber=\"21\">and Remeth, and Engannim, and En-haddah, and Beth-pazzez,</VERS>\r\n      <VERS vnumber=\"22\">and the border reached to Tabor, and Shahazumah, and Beth-shemesh; and the goings out of their border were at the Jordan: sixteen cities with their villages.</VERS>\r\n      <VERS vnumber=\"23\">This is the inheritance of the tribe of the children of Issachar according to their families, the cities with their villages.</VERS>\r\n      <VERS vnumber=\"24\">And the fifth lot came out for the tribe of the children of Asher according to their families.</VERS>\r\n      <VERS vnumber=\"25\">And their border was Helkath, and Hali, and Beten, and Achshaph,</VERS>\r\n      <VERS vnumber=\"26\">and Allammelech, and Amad, and Mishal; and it reached to Carmel westward, and to Shihor-libnath;</VERS>\r\n      <VERS vnumber=\"27\">and it turned toward the sunrising to Beth-dagon, and reached to Zebulun, and to the valley of Iphtah-el northward to Beth-emek and Neiel; and it went out to Cabul on the left hand,</VERS>\r\n      <VERS vnumber=\"28\">and Ebron, and Rehob, and Hammon, and Kanah, even unto great Sidon;</VERS>\r\n      <VERS vnumber=\"29\">and the border turned to Ramah, and to the fortified city of Tyre; and the border turned to Hosah; and the goings out thereof were at the sea by the region of Achzib;</VERS>\r\n      <VERS vnumber=\"30\">Ummah also, and Aphek, and Rehob: twenty and two cities with their villages.</VERS>\r\n      <VERS vnumber=\"31\">This is the inheritance of the tribe of the children of Asher according to their families, these cities with their villages.</VERS>\r\n      <VERS vnumber=\"32\">The sixth lot came out for the children of Naphtali, even for the children of Naphtali according to their families.</VERS>\r\n      <VERS vnumber=\"33\">And their border was from Heleph, from the oak in Zaanannim, and Adaminekeb, and Jabneel, unto Lakkum; and the goings out thereof were at the Jordan;</VERS>\r\n      <VERS vnumber=\"34\">and the border turned westward to Aznoth-tabor, and went out from thence to Hukkok; and it reached to Zebulun on the south, and reached to Asher on the west, and to Judah at the Jordan toward the sunrising.</VERS>\r\n      <VERS vnumber=\"35\">And the fortified cities were Ziddim, Zer, and Hammath, Rakkath, and Chinnereth,</VERS>\r\n      <VERS vnumber=\"36\">and Adamah, and Ramah, and Hazor,</VERS>\r\n      <VERS vnumber=\"37\">and Kedesh, and Edrei, and En-hazor,</VERS>\r\n      <VERS vnumber=\"38\">And Iron, and Migdal-el, Horem, and Beth-anath, and Beth-shemesh; nineteen cities with their villages.</VERS>\r\n      <VERS vnumber=\"39\">This is the inheritance of the tribe of the children of Naphtali according to their families, the cities with their villages.</VERS>\r\n      <VERS vnumber=\"40\">The seventh lot came out for the tribe of the children of Dan according to their families.</VERS>\r\n      <VERS vnumber=\"41\">And the border of their inheritance was Zorah, and Eshtaol, and Ir-shemesh,</VERS>\r\n      <VERS vnumber=\"42\">and Shaalabbin, and Aijalon, and Ithlah,</VERS>\r\n      <VERS vnumber=\"43\">and Elon, and Timnah, and Ekron,</VERS>\r\n      <VERS vnumber=\"44\">and Eltekeh, and Gibbethon, and Baalath,</VERS>\r\n      <VERS vnumber=\"45\">and Jehud, and Bene-berak, and Gath-rimmon,</VERS>\r\n      <VERS vnumber=\"46\">and Me-jarkon, and Rakkon, with the border over against Joppa.</VERS>\r\n      <VERS vnumber=\"47\">And the border of the children of Dan went out beyond them; for the children of Dan went up and fought 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.</VERS>\r\n      <VERS vnumber=\"48\">This is the inheritance of the tribe of the children of Dan according to their families, these cities with their villages.</VERS>\r\n      <VERS vnumber=\"49\">So they made an end of distributing the land for inheritance by the borders thereof; and the children of Israel gave an inheritance to Joshua the son of Nun in the midst of them:</VERS>\r\n      <VERS vnumber=\"50\">according to the commandment of Jehovah they gave him the city which he asked, even Timnath-serah in the hill-country of Ephraim; and he built the city, and dwelt therein.</VERS>\r\n      <VERS vnumber=\"51\">These are the inheritances, which Eleazar the priest, and Joshua the son of Nun, and the heads of the fathers` [houses] of the tribes of the children of Israel, distributed for inheritance by lot in Shiloh before Jehovah, at the door of the tent of meeting. So they made an end of dividing the land.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"20\">\r\n      <VERS vnumber=\"1\">And Jehovah spake unto Joshua, saying,</VERS>\r\n      <VERS vnumber=\"2\">Speak to the children of Israel, saying, Assign you the cities of refuge, whereof I spake unto you by Moses,</VERS>\r\n      <VERS vnumber=\"3\">that the manslayer that killeth any person unwittingly [and] unawares may flee thither: and they shall be unto you for a refuge from the avenger of blood.</VERS>\r\n      <VERS vnumber=\"4\">And he shall flee unto one of those cities, and shall stand at the entrance of the gate of the city, and declare his cause in the ears of the elders of that city; and they shall take him into the city unto them, and give him a place, that he may dwell among them.</VERS>\r\n      <VERS vnumber=\"5\">And if the avenger of blood pursue after him, then they shall not deliver up the manslayer into his hand; because he smote his neighbor unawares, and hated him not beforetime.</VERS>\r\n      <VERS vnumber=\"6\">And he shall dwell in that city, until he stand before the congregation for judgment, until the death of the high priest that shall be in those days: then shall the manslayer return, and come unto his own city, and unto his own house, unto the city from whence he fled.</VERS>\r\n      <VERS vnumber=\"7\">And they set apart Kedesh in Galilee in the hill-country of Naphtali, and Shechem in the hill-country of Ephraim, and Kiriath-arba (the same is Hebron) in the hill-country of Judah.</VERS>\r\n      <VERS vnumber=\"8\">And beyond the Jordan at Jericho eastward, they assigned Bezer in the wilderness in 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.</VERS>\r\n      <VERS vnumber=\"9\">These were the appointed cities for all the children of Israel, and for the stranger that sojourneth among them, that whosoever killeth any person unwittingly might flee thither, and not die by the hand of the avenger of blood, until he stood before the congregation.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"21\">\r\n      <VERS vnumber=\"1\">Then came near the heads of fathers` [houses] of the Levites unto Eleazar the priest, and unto Joshua the son of Nun, and unto the heads of fathers` [houses] of the tribes of the children of Israel;</VERS>\r\n      <VERS vnumber=\"2\">and they spake unto them at Shiloh in the land of Canaan, saying, Jehovah commanded Moses to give us cities to dwell in, with the suburbs thereof for our cattle.</VERS>\r\n      <VERS vnumber=\"3\">And the children of Israel gave unto the Levites out of their inheritance, according to the commandment of Jehovah, these cities with their suburbs.</VERS>\r\n      <VERS vnumber=\"4\">And the lot came out for the families of the Kohathites: and the children of Aaron the priest, who were of the Levites, had by lot out of the tribe of Judah, and out of the tribe of the Simeonites, and out of the tribe of Benjamin, thirteen cities.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">The children of Merari according to 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.</VERS>\r\n      <VERS vnumber=\"8\">And the children of Israel gave by lot unto the Levites these cities with their suburbs, as Jehovah commanded by Moses.</VERS>\r\n      <VERS vnumber=\"9\">And 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:</VERS>\r\n      <VERS vnumber=\"10\">and they were for the children of Aaron, of the families of the Kohathites, who were of the children of Levi; for theirs was the first lot.</VERS>\r\n      <VERS vnumber=\"11\">And they gave them Kiriath-arba, [which Arba was] the father of Anak (the same is Hebron), in the hill-country of Judah, with the suburbs thereof round about it.</VERS>\r\n      <VERS vnumber=\"12\">But the fields of the city, and the villages thereof, gave they to Caleb the son of Jephunneh for his possession.</VERS>\r\n      <VERS vnumber=\"13\">And unto the children of Aaron the priest they gave Hebron with its suburbs, the city of refuge for the manslayer, and Libnah with its suburbs,</VERS>\r\n      <VERS vnumber=\"14\">and Jattir with its suburbs, and Eshtemoa with its suburbs,</VERS>\r\n      <VERS vnumber=\"15\">and Holon with its suburbs, and Debir with its suburbs,</VERS>\r\n      <VERS vnumber=\"16\">and Ain with its suburbs, and Juttah with its suburbs, [and] Beth-shemesh with its suburbs; nine cities out of those two tribes.</VERS>\r\n      <VERS vnumber=\"17\">And out of the tribe of Benjamin, Gibeon with its suburbs, Geba with its suburbs,</VERS>\r\n      <VERS vnumber=\"18\">Anathoth with its suburbs, and Almon with its suburbs; four cities.</VERS>\r\n      <VERS vnumber=\"19\">All the cities of the children of Aaron, the priests, were thirteen cities with their suburbs.</VERS>\r\n      <VERS vnumber=\"20\">And the families of the children of Kohath, the Levites, even the rest of the children of Kohath, they had the cities of their lot out of the tribe of Ephraim.</VERS>\r\n      <VERS vnumber=\"21\">And they gave them Shechem with its suburbs in the hill-country of Ephraim, the city of refuge for the manslayer, and Gezer with its suburbs,</VERS>\r\n      <VERS vnumber=\"22\">and Kibzaim with its suburbs, and Beth-horon with its suburbs; four cities.</VERS>\r\n      <VERS vnumber=\"23\">And out of the tribe of Dan, Elteke with its suburbs, Gibbethon with its suburbs,</VERS>\r\n      <VERS vnumber=\"24\">Aijalon with its suburbs, Gath-rimmon with its suburbs; four cities.</VERS>\r\n      <VERS vnumber=\"25\">And out of the half-tribe of Manasseh, Taanach with its suburbs, and Gath-rimmon with its suburbs; two cities.</VERS>\r\n      <VERS vnumber=\"26\">All the cities of the families of the rest of the children of Kohath were ten with their suburbs.</VERS>\r\n      <VERS vnumber=\"27\">And unto the children of Gershon, of the families of the Levites, out of the half-tribe of Manasseh [they gave] Golan in Bashan with its suburbs, the city of refuge for the manslayer, and Be-eshterah with its suburbs; two cities.</VERS>\r\n      <VERS vnumber=\"28\">And out of the tribe of Issachar, Kishion with its suburbs, Daberath with its suburbs,</VERS>\r\n      <VERS vnumber=\"29\">Jarmuth with its suburbs, En-gannim with its suburbs; four cities.</VERS>\r\n      <VERS vnumber=\"30\">And out of the tribe of Asher, Mishal with its suburbs, Abdon with its suburbs,</VERS>\r\n      <VERS vnumber=\"31\">Helkath with its suburbs, and Rehob with its suburbs; four cities.</VERS>\r\n      <VERS vnumber=\"32\">And out of the tribe of Naphtali, Kedesh in Galilee with its suburbs, the city of refuge for the manslayer, and Hammoth-dor with its suburbs, and Kartan with its suburbs; three cities.</VERS>\r\n      <VERS vnumber=\"33\">All the cities of the Gershonites according to their families were thirteen cities with their suburbs.</VERS>\r\n      <VERS vnumber=\"34\">And unto the families of the children of Merari, the rest of the Levites, out of the tribe of Zebulun, Jokneam with its suburbs, and Kartah with its suburbs,</VERS>\r\n      <VERS vnumber=\"35\">Dimnah with its suburbs, Nahalal with its suburbs; four cities.</VERS>\r\n      <VERS vnumber=\"36\">And out of the tribe of Reuben, Bezer with its suburbs, and Jahaz with its suburbs,</VERS>\r\n      <VERS vnumber=\"37\">Kedemoth with its suburbs, and Mephaath with its suburbs; four cities.</VERS>\r\n      <VERS vnumber=\"38\">And out of the tribe of Gad, Ramoth in Gilead with its suburbs, the city of refuge for the manslayer, and Mahanaim with its suburbs,</VERS>\r\n      <VERS vnumber=\"39\">Heshbon with its suburbs, Jazer with its suburbs; four cities in all.</VERS>\r\n      <VERS vnumber=\"40\">All [these were] the cities of the children of Merari according to their families, even the rest of the families of the Levites; and their lot was twelve cities.</VERS>\r\n      <VERS vnumber=\"41\">All the cities of the Levites in the midst of the possession of the children of Israel were forty and eight cities with their suburbs.</VERS>\r\n      <VERS vnumber=\"42\">These cities were every one with their suburbs round about them: thus it was with all these cities.</VERS>\r\n      <VERS vnumber=\"43\">So Jehovah gave unto Israel all the land which he sware to give unto their fathers; and they possessed it, and dwelt therein.</VERS>\r\n      <VERS vnumber=\"44\">And Jehovah 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; Jehovah delivered all their enemies into their hand.</VERS>\r\n      <VERS vnumber=\"45\">There failed not aught of any good thing which Jehovah had spoken unto the house of Israel; all came to pass.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"22\">\r\n      <VERS vnumber=\"1\">Then Joshua called the Reubenites, and the Gadites, and the half-tribe of Manasseh,</VERS>\r\n      <VERS vnumber=\"2\">and said unto them, Ye have kept all that Moses the servant of Jehovah commanded you, and have hearkened unto my voice in all that I commanded you:</VERS>\r\n      <VERS vnumber=\"3\">ye have not left your brethren these many days unto this day, but have kept the charge of the commandment of Jehovah your God.</VERS>\r\n      <VERS vnumber=\"4\">And now Jehovah your God hath given rest unto your brethren, as he spake unto them: therefore now turn ye, and get you unto your tents, unto the land of your possession, which Moses the servant of Jehovah gave you beyond the Jordan.</VERS>\r\n      <VERS vnumber=\"5\">Only take diligent heed to do the commandment and the law which Moses the servant of Jehovah commanded you, to love Jehovah 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.</VERS>\r\n      <VERS vnumber=\"6\">So Joshua blessed them, and sent them away; and they went unto their tents.</VERS>\r\n      <VERS vnumber=\"7\">Now to the one half-tribe of Manasseh Moses had given [inheritance] in Bashan; but unto the other half gave Joshua among their brethren beyond the Jordan westward; moreover when Joshua sent them away unto their tents, he blessed them,</VERS>\r\n      <VERS vnumber=\"8\">and spake unto them, saying, Return with much wealth 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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 land of Gilead, to the land of their possession, whereof they were possessed, according to the commandment of Jehovah by Moses.</VERS>\r\n      <VERS vnumber=\"10\">And when they came unto the region about the Jordan, that is 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 the Jordan, a great altar to look upon.</VERS>\r\n      <VERS vnumber=\"11\">And 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 in the forefront of the land of Canaan, in the region about the Jordan, on the side that pertaineth to the children of Israel.</VERS>\r\n      <VERS vnumber=\"12\">And when the children of Israel heard of it, the whole congregation of the children of Israel gathered themselves together at Shiloh, to go up against them to war.</VERS>\r\n      <VERS vnumber=\"13\">And 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,</VERS>\r\n      <VERS vnumber=\"14\">and with him ten princes, one prince of a fathers` house for each of the tribes of Israel; and they were every one of them head of their fathers` houses among the thousands of Israel.</VERS>\r\n      <VERS vnumber=\"15\">And 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,</VERS>\r\n      <VERS vnumber=\"16\">Thus saith the whole congregation of Jehovah, What trespass is this that ye have committed against the God of Israel, to turn away this day from following Jehovah, in that ye have builded you an altar, to rebel this day against Jehovah?</VERS>\r\n      <VERS vnumber=\"17\">Is the iniquity of Peor too little for us, from which we have not cleansed ourselves unto this day, although there came a plague upon the congregation of Jehovah,</VERS>\r\n      <VERS vnumber=\"18\">that ye must turn away this day from following Jehovah? and it will be, seeing ye rebel to-day against Jehovah, that to-morrow he will be wroth with the whole congregation of Israel.</VERS>\r\n      <VERS vnumber=\"19\">Howbeit, if the land of your possession be unclean, then pass ye over unto the land of the possession of Jehovah, wherein Jehovah`s tabernacle dwelleth, and take possession among us: but rebel not against Jehovah, nor rebel against us, in building you an altar besides the altar of Jehovah our God.</VERS>\r\n      <VERS vnumber=\"20\">Did not Achan the son of Zerah commit a trespass in the devoted thing, and wrath fell upon all the congregation of Israel? and that man perished not alone in his iniquity.</VERS>\r\n      <VERS vnumber=\"21\">Then the children of Reuben and the children of Gad and the half-tribe of Manasseh answered, and spake unto the heads of the thousands of Israel,</VERS>\r\n      <VERS vnumber=\"22\">The Mighty One, God, Jehovah, the Mighty One, God, Jehovah, he knoweth; and Israel he shall know: if it be in rebellion, or if in trespass against Jehovah (save thou us not this day,)</VERS>\r\n      <VERS vnumber=\"23\">that we have built us an altar to turn away from following Jehovah; or if to offer thereon burnt-offering or meal-offering, or if to offer sacrifices of peace-offerings thereon, let Jehovah himself require it;</VERS>\r\n      <VERS vnumber=\"24\">and if we have not [rather] out of carefulness done this, [and] of purpose, saying, In time to come your children might speak unto our children, saying, What have ye to do with Jehovah, the God of Israel?</VERS>\r\n      <VERS vnumber=\"25\">for Jehovah hath made the Jordan a border between us and you, ye children of Reuben and children of Gad; ye have no portion in Jehovah: so might your children make our children cease from fearing Jehovah.</VERS>\r\n      <VERS vnumber=\"26\">Therefore we said, Let us now prepare to build us an altar, not for burnt-offering, nor for sacrifice:</VERS>\r\n      <VERS vnumber=\"27\">but it shall be a witness between us and you, and between our generations after us, that we may do the service of Jehovah 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 portion in Jehovah.</VERS>\r\n      <VERS vnumber=\"28\">Therefore said we, It shall be, when they so say to us or to our generations in time to come, that we shall say, Behold the pattern of the altar of Jehovah, which our fathers made, not for burnt-offering, nor for sacrifice; but it is a witness between us and you.</VERS>\r\n      <VERS vnumber=\"29\">Far be it from us that we should rebel against Jehovah, and turn away this day from following Jehovah, to build an altar for burnt-offering, for meal-offering, or for sacrifice, besides the altar of Jehovah our God that is before his tabernacle.</VERS>\r\n      <VERS vnumber=\"30\">And when Phinehas the priest, and the princes of the congregation, even the heads of the thousands of Israel that 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 well.</VERS>\r\n      <VERS vnumber=\"31\">And 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 know that Jehovah is in the midst of us, because ye have not committed this trespass against Jehovah: now have ye delivered the children of Israel out of the hand of Jehovah.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">And the thing pleased the children of Israel; and the children of Israel blessed God, and spake no more of going up against them to war, to destroy the land wherein the children of Reuben and the children of Gad dwelt.</VERS>\r\n      <VERS vnumber=\"34\">And the children of Reuben and the children of Gad called the altar [Ed]: For, [said they], it is a witness between us that Jehovah is God.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"23\">\r\n      <VERS vnumber=\"1\">And it came to pass after many days, when Jehovah had given rest unto Israel from all their enemies round about, and Joshua was old and well stricken in years;</VERS>\r\n      <VERS vnumber=\"2\">that Joshua called for all Israel, for their elders and for their heads, and for their judges and for their officers, and said unto them, I am old and well stricken in years:</VERS>\r\n      <VERS vnumber=\"3\">and ye have seen all that Jehovah your God hath done unto all these nations because of you; for Jehovah your God, he it is that hath fought for you.</VERS>\r\n      <VERS vnumber=\"4\">Behold, I have allotted unto you these nations that remain, to be an inheritance for your tribes, from the Jordan, with all the nations that I have cut off, even unto the great sea toward the going down of the sun.</VERS>\r\n      <VERS vnumber=\"5\">And Jehovah your God, he will thrust them out from before you, and drive them from out of your sight; and ye shall possess their land, as Jehovah your God spake unto you.</VERS>\r\n      <VERS vnumber=\"6\">Therefore be ye 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;</VERS>\r\n      <VERS vnumber=\"7\">that 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 down yourselves unto them;</VERS>\r\n      <VERS vnumber=\"8\">but cleave unto Jehovah your God, as ye have done unto this day.</VERS>\r\n      <VERS vnumber=\"9\">For Jehovah hath driven out from before you great nations and strong: but as for you, no man hath stood before you unto this day.</VERS>\r\n      <VERS vnumber=\"10\">One man of you shall chase a thousand; for Jehovah your God, he it is that fighteth for you, as he spake unto you.</VERS>\r\n      <VERS vnumber=\"11\">Take good heed therefore unto yourselves, that ye love Jehovah your God.</VERS>\r\n      <VERS vnumber=\"12\">Else if ye do at all go back, and cleave unto the remnant of these nations, even these that remain among you, and make marriages with them, and go in unto them, and they to you;</VERS>\r\n      <VERS vnumber=\"13\">know for a certainty that Jehovah your God will no more drive these nations from out of your sight; but they shall be a snare and a trap unto you, and a scourge in your sides, and thorns in your eyes, until ye perish from off this good land which Jehovah your God hath given you.</VERS>\r\n      <VERS vnumber=\"14\">And, 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 Jehovah your God spake concerning you; all are come to pass unto you, not one thing hath failed thereof.</VERS>\r\n      <VERS vnumber=\"15\">And it shall come to pass, that as all the good things are come upon you of which Jehovah your God spake unto you, so will Jehovah bring upon you all the evil things, until he have destroyed you from off this good land which Jehovah your God hath given you.</VERS>\r\n      <VERS vnumber=\"16\">When ye transgress the covenant of Jehovah your God, which he commanded you, and go and serve other gods, and bow down yourselves to them; then will the anger of Jehovah be kindled against you, and ye shall perish quickly from off the good land which he hath given unto you.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"24\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And Joshua said unto all the people, Thus saith Jehovah, the God of Israel, Your fathers dwelt of old time beyond the River, even Terah, the father of Abraham, and the father of Nahor: and they served other gods.</VERS>\r\n      <VERS vnumber=\"3\">And I took your father Abraham from beyond the River, and led him throughout all the land of Canaan, and multiplied his seed, and gave him Isaac.</VERS>\r\n      <VERS vnumber=\"4\">And I gave unto Isaac Jacob and Esau: and I gave unto Esau mount Seir, to possess it: and Jacob and his children went down into Egypt.</VERS>\r\n      <VERS vnumber=\"5\">And I sent Moses and Aaron, and I plagued Egypt, according to that which I did in the midst thereof: and afterward I brought you out.</VERS>\r\n      <VERS vnumber=\"6\">And I brought your fathers out of Egypt: and ye came unto the sea; and the Egyptians pursued after your fathers with chariots and with horsemen unto the Red Sea.</VERS>\r\n      <VERS vnumber=\"7\">And when they cried out unto Jehovah, he put darkness between you and the Egyptians, and brought the sea upon them, and covered them; and your eyes saw what I did in Egypt: and ye dwelt in the wilderness many days.</VERS>\r\n      <VERS vnumber=\"8\">And I brought you into the land of the Amorites, that dwelt beyond the Jordan: and they fought with you; and I gave them into your hand, and ye possessed their land; and I destroyed them from before you.</VERS>\r\n      <VERS vnumber=\"9\">Then Balak the son of Zippor, king of Moab, arose and fought against Israel: and he sent and called Balaam the son of Beor to curse you;</VERS>\r\n      <VERS vnumber=\"10\">but I would not hearken unto Balaam; therefore he blessed you still: so I delivered you out of his hand.</VERS>\r\n      <VERS vnumber=\"11\">And ye went over the Jordan, and came unto Jericho: and the men of Jericho fought against you, the Amorite, and the Perizzite, and the Canaanite, and the Hittite, and the Girgashite, the Hivite, and the Jebusite; and I delivered them into your hand.</VERS>\r\n      <VERS vnumber=\"12\">And I sent the hornet before you, which drove them out from before you, even the two kings of the Amorites; not with thy sword, nor with thy bow.</VERS>\r\n      <VERS vnumber=\"13\">And I gave you a land whereon thou hadst not labored, and cities which ye built not, and ye dwell therein; of vineyards and oliveyards which ye planted not do ye eat.</VERS>\r\n      <VERS vnumber=\"14\">Now therefore fear Jehovah, and serve him in sincerity and in truth; and put away the gods which your fathers served beyond the River, and in Egypt; and serve ye Jehovah.</VERS>\r\n      <VERS vnumber=\"15\">And if it seem evil unto you to serve Jehovah, choose you this day whom ye will serve; whether the gods which your fathers served that were beyond the River, or the gods of the Amorites, in whose land ye dwell: but as for me and my house, we will serve Jehovah.</VERS>\r\n      <VERS vnumber=\"16\">And the people answered and said, Far be it from us that we should forsake Jehovah, to serve other gods;</VERS>\r\n      <VERS vnumber=\"17\">for Jehovah our God, he it is that brought us and our fathers up out of the land of Egypt, from the house of bondage, and that did those great signs in our sight, and preserved us in all the way wherein we went, and among all the peoples through the midst of whom we passed;</VERS>\r\n      <VERS vnumber=\"18\">and Jehovah drove out from before us all the peoples, even the Amorites that dwelt in the land: therefore we also will serve Jehovah; for he is our God.</VERS>\r\n      <VERS vnumber=\"19\">And Joshua said unto the people, Ye cannot serve Jehovah; for he is a holy God; he is a jealous God; he will not forgive your transgression nor your sins.</VERS>\r\n      <VERS vnumber=\"20\">If ye forsake Jehovah, and serve foreign gods, then he will turn and do you evil, and consume you, after that he hath done you good.</VERS>\r\n      <VERS vnumber=\"21\">And the people said unto Joshua, Nay; but we will serve Jehovah.</VERS>\r\n      <VERS vnumber=\"22\">And Joshua said unto the people, Ye are witnesses against yourselves that ye have chosen you Jehovah, to serve him. And they said, We are witnesses.</VERS>\r\n      <VERS vnumber=\"23\">Now therefore put away, [said he], the foreign gods which are among you, and incline your heart unto Jehovah, the God of Israel.</VERS>\r\n      <VERS vnumber=\"24\">And the people said unto Joshua, Jehovah our God will we serve, and unto his voice will we hearken.</VERS>\r\n      <VERS vnumber=\"25\">So Joshua made a covenant with the people that day, and set them a statute and an ordinance in Shechem.</VERS>\r\n      <VERS vnumber=\"26\">And Joshua wrote these words in the book of the law of God; and he took a great stone, and set it up there under the oak that was by the sanctuary of Jehovah.</VERS>\r\n      <VERS vnumber=\"27\">And Joshua said unto all the people, Behold, this stone shall be a witness against us; for it hath heard all the words of Jehovah which he spake unto us: it shall be therefore a witness against you, lest ye deny your God.</VERS>\r\n      <VERS vnumber=\"28\">So Joshua sent the people away, every man unto his inheritance.</VERS>\r\n      <VERS vnumber=\"29\">And it came to pass after these things, that Joshua the son of Nun, the servant of Jehovah, died, being a hundred and ten years old.</VERS>\r\n      <VERS vnumber=\"30\">And they buried him in the border of his inheritance in Timnathserah, which is in the hill-country of Ephraim, on the north of the mountain of Gaash.</VERS>\r\n      <VERS vnumber=\"31\">And Israel served Jehovah all the days of Joshua, and all the days of the elders that outlived Joshua, and had known all the work of Jehovah, that he had wrought for Israel.</VERS>\r\n      <VERS vnumber=\"32\">And the bones of Joseph, which the children of Israel brought up out of Egypt, buried they in Shechem, in the parcel of ground which Jacob bought of the sons of Hamor the father of Shechem for a hundred pieces of money: and they became the inheritance of the children of Joseph.</VERS>\r\n      <VERS vnumber=\"33\">And Eleazar the son of Aaron died; and they buried him in the hill of Phinehas his son, which was given him in the hill-country of Ephraim.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"7\" bname=\"Judges\" bsname=\"Judg\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">And it came to pass after the death of Joshua, that the children of Israel asked of Jehovah, saying, Who shall go up for us first against the Canaanites, to fight against them?</VERS>\r\n      <VERS vnumber=\"2\">And Jehovah said, Judah shall go up: behold, I have delivered the land into his hand.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And Judah went up; and Jehovah delivered the Canaanites and the Perizzites into their hand: and they smote of them in Bezek ten thousand men.</VERS>\r\n      <VERS vnumber=\"5\">And they found Adoni-bezek in Bezek; and they fought against him, and they smote the Canaanites and the Perizzites.</VERS>\r\n      <VERS vnumber=\"6\">But Adoni-bezek fled; and they pursued after him, and caught him, and cut off his thumbs and his great toes.</VERS>\r\n      <VERS vnumber=\"7\">And Adoni-bezek said, Threescore and ten kings, having their thumbs and their great toes cut off, gathered [their food] under my table: as I have done, so God hath requited me. And they brought him to Jerusalem, and he died there.</VERS>\r\n      <VERS vnumber=\"8\">And the children of Judah fought against Jerusalem, and took it, and smote it with the edge of the sword, and set the city on fire.</VERS>\r\n      <VERS vnumber=\"9\">And afterward the children of Judah went down to fight against the Canaanites that dwelt in the hill-country, and in the South, and in the lowland.</VERS>\r\n      <VERS vnumber=\"10\">And Judah went against the Canaanites that dwelt in Hebron (now the name of Hebron beforetime was Kiriath-arba); and they smote Sheshai, and Ahiman, and Talmai.</VERS>\r\n      <VERS vnumber=\"11\">And from thence he went against the inhabitants of Debir. (Now the name of Debir beforetime was Kiriath-sepher.)</VERS>\r\n      <VERS vnumber=\"12\">And Caleb said, He that smiteth Kiriath-sepher, and taketh it, to him will I give Achsah my daughter to wife.</VERS>\r\n      <VERS vnumber=\"13\">And Othniel the son of Kenaz, Caleb`s younger brother, took it: and he gave him Achsah his daughter to wife.</VERS>\r\n      <VERS vnumber=\"14\">And it came to pass, when she came [unto him], that she moved him to ask of her father a field: and she alighted from off her ass; and Caleb said unto her, What wouldest thou?</VERS>\r\n      <VERS vnumber=\"15\">And she said unto him, Give me a blessing; for that thou hast set me in the land of the South, give me also springs of water. And Caleb gave her the upper springs and the nether springs.</VERS>\r\n      <VERS vnumber=\"16\">And the children of the Kenite, Moses` brother-in-law, went up out of the city of palm-trees with the children of Judah into the wilderness of Judah, which is in the south of Arad; and they went and dwelt with the people.</VERS>\r\n      <VERS vnumber=\"17\">And Judah went with Simeon his brother, and they smote the Canaanites that inhabited Zephath, and utterly destroyed it. And the name of the city was called Hormah.</VERS>\r\n      <VERS vnumber=\"18\">Also Judah took Gaza with the border thereof, and Ashkelon with the border thereof, and Ekron with the border thereof.</VERS>\r\n      <VERS vnumber=\"19\">And Jehovah was with Judah; and drove out [the inhabitants of] the hill-country; for he could not drive out the inhabitants of the valley, because they had chariots of iron.</VERS>\r\n      <VERS vnumber=\"20\">And they gave Hebron unto Caleb, as Moses had spoken: and he drove out thence the three sons of Anak.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And the house of Joseph, they also went up against Beth-el; and Jehovah was with them.</VERS>\r\n      <VERS vnumber=\"23\">And the house of Joseph sent to spy out Beth-el. (Now the name of the city beforetime was Luz.)</VERS>\r\n      <VERS vnumber=\"24\">And the watchers saw a man come forth out of the city, and they said unto him, Show us, we pray thee, the entrance into the city, and we will deal kindly with thee.</VERS>\r\n      <VERS vnumber=\"25\">And he showed them the entrance into the city; and they smote the city with the edge of the sword; but they let the man go and all his family.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And Manasseh did not drive out [the inhabitants of] Beth-shean and its towns, nor [of] Taanach and its towns, nor the inhabitants of Dor and its towns, nor the inhabitants of Ibleam and its towns, nor the inhabitants of Megiddo and its towns; but the Canaanites would dwell in that land.</VERS>\r\n      <VERS vnumber=\"28\">And it came to pass, when Israel was waxed strong, that they put the Canaanites to taskwork, and did not utterly drive them out.</VERS>\r\n      <VERS vnumber=\"29\">And Ephraim drove not out the Canaanites that dwelt in Gezer; but the Canaanites dwelt in Gezer among them.</VERS>\r\n      <VERS vnumber=\"30\">Zebulun drove not out the inhabitants of Kitron, nor the inhabitants of Nahalol; but the Canaanites dwelt among them, and became subject to taskwork.</VERS>\r\n      <VERS vnumber=\"31\">Asher drove not out the inhabitants of Acco, nor the inhabitants of Sidon, nor of Ahlab, nor of Achzib, nor of Helbah, nor of Aphik, nor of Rehob;</VERS>\r\n      <VERS vnumber=\"32\">but the Asherites dwelt among the Canaanites, the inhabitants of the land; for they did not drive them out.</VERS>\r\n      <VERS vnumber=\"33\">Naphtali drove not out the inhabitants of Beth-shemesh, nor the inhabitants of Beth-anath; but he dwelt among the Canaanites, the inhabitants of the land: nevertheless the inhabitants of Beth-shemesh and of Beth-anath became subject to taskwork.</VERS>\r\n      <VERS vnumber=\"34\">And the Amorites forced the children of Dan into the hill-country; for they would not suffer them to come down to the valley;</VERS>\r\n      <VERS vnumber=\"35\">but 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 subject to taskwork.</VERS>\r\n      <VERS vnumber=\"36\">And the border of the Amorites was from the ascent of Akrabbim, from the rock, and upward.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">And the angel of Jehovah came up from Gilgal to Bochim. And he 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:</VERS>\r\n      <VERS vnumber=\"2\">and ye shall make no covenant with the inhabitants of this land; ye shall break down their altars. But ye have not hearkened unto my voice: why have ye done this?</VERS>\r\n      <VERS vnumber=\"3\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"4\">And it came to pass, when the angel of Jehovah spake these words unto all the children of Israel, that the people lifted up their voice, and wept.</VERS>\r\n      <VERS vnumber=\"5\">And they called the name of that place Bochim: and they sacrificed there unto Jehovah.</VERS>\r\n      <VERS vnumber=\"6\">Now when Joshua had sent the people away, the children of Israel went every man unto his inheritance to possess the land.</VERS>\r\n      <VERS vnumber=\"7\">And the people served Jehovah all the days of Joshua, and all the days of the elders that outlived Joshua, who had seen all the great work of Jehovah that he had wrought for Israel.</VERS>\r\n      <VERS vnumber=\"8\">And Joshua the son of Nun, the servant of Jehovah, died, being a hundred and ten years old.</VERS>\r\n      <VERS vnumber=\"9\">And they buried him in the border of his inheritance in Timnath-heres, in the hill-country of Ephraim, on the north of the mountain of Gaash.</VERS>\r\n      <VERS vnumber=\"10\">And also all that generation were gathered unto their fathers: and there arose another generation after them, that knew not Jehovah, nor yet the work which he had wrought for Israel.</VERS>\r\n      <VERS vnumber=\"11\">And the children of Israel did that which was evil in the sight of Jehovah, and served the Baalim;</VERS>\r\n      <VERS vnumber=\"12\">and they forsook Jehovah, the God of their fathers, who brought them out of the land of Egypt, and followed other gods, of the gods of the peoples that were round about them, and bowed themselves down unto them: and they provoked Jehovah to anger.</VERS>\r\n      <VERS vnumber=\"13\">And they forsook Jehovah, and served Baal and the Ashtaroth.</VERS>\r\n      <VERS vnumber=\"14\">And the anger of Jehovah was kindled against Israel, and he delivered them into the hands of spoilers that despoiled them; and he sold them into the hands of their enemies round about, so that they could not any longer stand before their enemies.</VERS>\r\n      <VERS vnumber=\"15\">Whithersoever they went out, the hand of Jehovah was against them for evil, as Jehovah had spoken, and as Jehovah had sworn unto them: and they were sore distressed.</VERS>\r\n      <VERS vnumber=\"16\">And Jehovah raised up judges, who saved them out of the hand of those that despoiled them.</VERS>\r\n      <VERS vnumber=\"17\">And yet they hearkened not unto their judges; for they played the harlot after other gods, and bowed themselves down unto them: they turned aside quickly out of the way wherein their fathers walked, obeying the commandments of Jehovah; [but] they did not so.</VERS>\r\n      <VERS vnumber=\"18\">And when Jehovah raised them up judges, then Jehovah was with the judge, and saved them out of the hand of their enemies all the days of the judge: for it repented Jehovah because of their groaning by reason of them that oppressed them and vexed them.</VERS>\r\n      <VERS vnumber=\"19\">But it came to pass, when the judge was dead, that they turned back, and dealt more corruptly than their fathers, in following other gods to serve them, and to bow down unto them; they ceased not from their doings, nor from their stubborn way.</VERS>\r\n      <VERS vnumber=\"20\">And the anger of Jehovah was kindled against Israel; and he said, Because this nation have transgressed my covenant which I commanded their fathers, and have not hearkened unto my voice;</VERS>\r\n      <VERS vnumber=\"21\">I also will not henceforth drive out any from before them of the nations that Joshua left when he died;</VERS>\r\n      <VERS vnumber=\"22\">that by them I may prove Israel, whether they will keep the way of Jehovah to walk therein, as their fathers did keep it, or not.</VERS>\r\n      <VERS vnumber=\"23\">So Jehovah left those nations, without driving them out hastily; neither delivered he them into the hand of Joshua.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Now these are the nations which Jehovah left, to prove Israel by them, even as many [of Israel] as had not known all the wars of Canaan;</VERS>\r\n      <VERS vnumber=\"2\">only that the generations of the children of Israel might know, to teach them war, at the least such as beforetime knew nothing thereof:</VERS>\r\n      <VERS vnumber=\"3\">[namely], the five lords of the Philistines, and all the Canaanites, and the Sidonians, and the Hivites that dwelt in mount Lebanon, from mount Baal-hermon unto the entrance of Hamath.</VERS>\r\n      <VERS vnumber=\"4\">And they were [left], to prove Israel by them, to know whether they would hearken unto the commandments of Jehovah, which he commanded their fathers by Moses.</VERS>\r\n      <VERS vnumber=\"5\">And the children of Israel dwelt among the Canaanites, the Hittites, and the Amorites, and the Perizzites, and the Hivites, and the Jebusites:</VERS>\r\n      <VERS vnumber=\"6\">and they took their daughters to be their wives, and gave their own daughters to their sons and served their gods.</VERS>\r\n      <VERS vnumber=\"7\">And the children of Israel did that which was evil in the sight of Jehovah, and forgat Jehovah their God, and served the Baalim and the Asheroth.</VERS>\r\n      <VERS vnumber=\"8\">Therefore the anger of Jehovah was kindled against Israel, and he sold them into the hand of Cushan-rishathaim king of Mesopotamia: and the children of Israel served Cushan-rishathaim eight years.</VERS>\r\n      <VERS vnumber=\"9\">And when the children of Israel cried unto Jehovah, Jehovah raised up a saviour to the children of Israel, who saved them, even Othniel the son of Kenaz, Caleb`s younger brother.</VERS>\r\n      <VERS vnumber=\"10\">And the Spirit of Jehovah came upon him, and he judged Israel; and he went out to war, and Jehovah delivered Cushan-rishathaim king of Mesopotamia into his hand: and his hand prevailed against Cushan-rishathaim.</VERS>\r\n      <VERS vnumber=\"11\">And the land had rest forty years. And Othniel the son of Kenaz died.</VERS>\r\n      <VERS vnumber=\"12\">And the children of Israel again did that which was evil in the sight of Jehovah: and Jehovah strengthened Eglon the king of Moab against Israel, because they had done that which was evil in the sight of Jehovah.</VERS>\r\n      <VERS vnumber=\"13\">And he gathered unto him the children of Ammon and Amalek; and he went and smote Israel, and they possessed the city of palm-trees.</VERS>\r\n      <VERS vnumber=\"14\">And the children of Israel served Eglon the king of Moab eighteen years.</VERS>\r\n      <VERS vnumber=\"15\">But when the children of Israel cried unto Jehovah, Jehovah raised them up a saviour, Ehud the son of Gera, the Benjamite, a man left-handed. And the children of Israel sent tribute by him unto Eglon the king of Moab.</VERS>\r\n      <VERS vnumber=\"16\">And Ehud made him a sword which had two edges, a cubit in length; and he girded it under his raiment upon his right thigh.</VERS>\r\n      <VERS vnumber=\"17\">And he offered the tribute unto Eglon king of Moab: now Eglon was a very fat man.</VERS>\r\n      <VERS vnumber=\"18\">And when he had made an end of offering the tribute, he sent away the people that bare the tribute.</VERS>\r\n      <VERS vnumber=\"19\">But he himself turned back from the quarries that were by Gilgal, and said, I have a secret errand unto thee, O king. And he said, Keep silence. And all that stood by him went out from him.</VERS>\r\n      <VERS vnumber=\"20\">And Ehud came unto him; and he was sitting by himself alone in the cool upper room. And Ehud said, I have a message from God unto thee. And he arose out of his seat.</VERS>\r\n      <VERS vnumber=\"21\">And Ehud put forth his left hand, and took the sword from his right thigh, and thrust it into his body:</VERS>\r\n      <VERS vnumber=\"22\">and the haft also went in after the blade; and the fat closed upon the blade, for he drew not the sword out of his body; and it came out behind.</VERS>\r\n      <VERS vnumber=\"23\">Then Ehud went forth into the porch, and shut the doors of the upper room upon him, and locked them.</VERS>\r\n      <VERS vnumber=\"24\">Now when he was gone out, his servants came; and they saw, and, behold, the doors of the upper room were locked; and they said, Surely he is covering his feet in the upper chamber.</VERS>\r\n      <VERS vnumber=\"25\">And they tarried till they were ashamed; and, behold, he opened not the doors of the upper room: therefore they took the key, and opened [them], and, behold, their lord was fallen down dead on the earth.</VERS>\r\n      <VERS vnumber=\"26\">And Ehud escaped while they tarried, and passed beyond the quarries, and escaped unto Seirah.</VERS>\r\n      <VERS vnumber=\"27\">And it came to pass, when he was come, that he blew a trumpet in the hill-country of Ephraim; and the children of Israel went down with him from the hill-country, and he before them.</VERS>\r\n      <VERS vnumber=\"28\">And he said unto them, Follow after me; for Jehovah hath delivered your enemies the Moabites into your hand. And they went down after him, and took the fords of the Jordan against the Moabites, and suffered not a man to pass over.</VERS>\r\n      <VERS vnumber=\"29\">And they smote of Moab at that time about ten thousand men, every lusty man, and every man of valor; and there escaped not a man.</VERS>\r\n      <VERS vnumber=\"30\">So Moab was subdued that day under the hand of Israel. And the land had rest fourscore years.</VERS>\r\n      <VERS vnumber=\"31\">And after him was Shamgar the son of Anath, who smote of the Philistines six hundred men with an ox-goad: and he also saved Israel.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">And the children of Israel again did that which was evil in the sight of Jehovah, when Ehud was dead.</VERS>\r\n      <VERS vnumber=\"2\">And Jehovah sold them into the hand of Jabin king of Canaan, that reigned in Hazor; the captain of whose host was Sisera, who dwelt in Harosheth of the Gentiles.</VERS>\r\n      <VERS vnumber=\"3\">And the children of Israel cried unto Jehovah: for he had nine hundred chariots of iron; and twenty years he mightily oppressed the children of Israel.</VERS>\r\n      <VERS vnumber=\"4\">Now Deborah, a prophetess, the wife of Lappidoth, she judged Israel at that time.</VERS>\r\n      <VERS vnumber=\"5\">And she dwelt under the palm-tree of Deborah between Ramah and Beth-el in the hill-country of Ephraim: and the children of Israel came up to her for judgment.</VERS>\r\n      <VERS vnumber=\"6\">And she sent and called Barak the son of Abinoam out of Kedesh-naphtali, and said unto him, Hath not Jehovah, the God of Israel, commanded, [saying], Go and draw unto mount Tabor, and take with thee ten thousand men of the children of Naphtali and of the children of Zebulun?</VERS>\r\n      <VERS vnumber=\"7\">And 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 thy hand.</VERS>\r\n      <VERS vnumber=\"8\">And Barak said unto her, If thou wilt go with me, then I will go; but if thou wilt not go with me, I will not go.</VERS>\r\n      <VERS vnumber=\"9\">And she said, I will surely go with thee: notwithstanding, the journey that thou takest shall not be for thine honor; for Jehovah will sell Sisera into the hand of a woman. And Deborah arose, and went with Barak to Kedesh.</VERS>\r\n      <VERS vnumber=\"10\">And Barak called Zebulun and Naphtali together to Kedesh; and there went up ten thousand men at his feet: and Deborah went up with him.</VERS>\r\n      <VERS vnumber=\"11\">Now Heber the Kenite had separated himself from the Kenites, even from the children of Hobab the brother-in-law of Moses, and had pitched his tent as far as the oak in Zaanannim, which is by Kedesh.</VERS>\r\n      <VERS vnumber=\"12\">And they told Sisera that Barak the son of Abinoam was gone up to mount Tabor.</VERS>\r\n      <VERS vnumber=\"13\">And 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 Kishon.</VERS>\r\n      <VERS vnumber=\"14\">And Deborah said unto Barak, Up; for this is the day in which Jehovah hath delivered Sisera into thy hand; is not Jehovah gone out before thee? So Barak went down from mount Tabor, and ten thousand men after him.</VERS>\r\n      <VERS vnumber=\"15\">And Jehovah discomfited Sisera, and all his chariots, and all his host, with the edge of the sword before Barak; and Sisera alighted from his chariot, and fled away on his feet.</VERS>\r\n      <VERS vnumber=\"16\">But Barak pursued after the chariots, and after the host, unto Harosheth of the Gentiles: and all the host of Sisera fell by the edge of the sword; there was not a man left.</VERS>\r\n      <VERS vnumber=\"17\">Howbeit 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.</VERS>\r\n      <VERS vnumber=\"18\">And Jael went out to meet Sisera, and said unto him, Turn in, my lord, turn in to me; fear not. And he turned in unto her into the tent, and she covered him with a rug.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And he said unto her, Stand in the door of the tent, and it shall be, when any man doth come and inquire of thee, and say, Is there any man here? that thou shalt say, No.</VERS>\r\n      <VERS vnumber=\"21\">Then Jael Heber`s wife took a tent-pin, and took a hammer in her hand, and went softly unto him, and smote the pin into his temples, and it pierced through into the ground; for he was in a deep sleep; so he swooned and died.</VERS>\r\n      <VERS vnumber=\"22\">And, behold, as Barak pursued Sisera, Jael came out to meet him, and said unto him, Come, and I will show thee the man whom thou seekest. And he came unto her; and, behold, Sisera lay dead, and the tent-pin was in his temples.</VERS>\r\n      <VERS vnumber=\"23\">So God subdued on that day Jabin the king of Canaan before the children of Israel.</VERS>\r\n      <VERS vnumber=\"24\">And the hand of the children of Israel prevailed more and more against Jabin the king of Canaan, until they had destroyed Jabin king of Canaan.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">Then sang Deborah and Barak the son of Abinoam on that day, saying,</VERS>\r\n      <VERS vnumber=\"2\">For that the leaders took the lead in Israel, For that the people offered themselves willingly, Bless ye Jehovah.</VERS>\r\n      <VERS vnumber=\"3\">Hear, O ye kings; give ear, O ye princes; I, [even] I, will sing unto Jehovah; I will sing praise to Jehovah, the God of Israel.</VERS>\r\n      <VERS vnumber=\"4\">Jehovah, when thou wentest forth out of Seir, When thou marchedst out of the field of Edom, The earth trembled, the heavens also dropped, Yea, the clouds dropped water.</VERS>\r\n      <VERS vnumber=\"5\">The mountains quaked at the presence of Jehovah, Even yon Sinai at the presence of Jehovah, the God of Israel.</VERS>\r\n      <VERS vnumber=\"6\">In the days of Shamgar the son of Anath, In the days of Jael, the highways were unoccupied, And the travellers walked through byways.</VERS>\r\n      <VERS vnumber=\"7\">The rulers ceased in Israel, they ceased, Until that I Deborah arose, That I arose a mother in Israel.</VERS>\r\n      <VERS vnumber=\"8\">They chose new gods; Then was war in the gates: Was there a shield or spear seen Among forty thousand in Israel?</VERS>\r\n      <VERS vnumber=\"9\">My heart is toward the governors of Israel, That offered themselves willingly among the people: Bless ye Jehovah.</VERS>\r\n      <VERS vnumber=\"10\">Tell [of it], ye that ride on white asses, Ye that sit on rich carpets, And ye that walk by the way.</VERS>\r\n      <VERS vnumber=\"11\">Far from the noise of archers, in the places of drawing       water, There shall they rehearse the righteous acts of Jehovah, [Even] the righteous acts of his rule in Israel. Then the people of Jehovah went down to the gates.</VERS>\r\n      <VERS vnumber=\"12\">Awake, awake, Deborah; Awake, awake, utter a song: Arise, Barak, and lead away thy captives, thou son of Abinoam.</VERS>\r\n      <VERS vnumber=\"13\">Then came down a remnant of the nobles [and] the people; Jehovah came down for me against the mighty.</VERS>\r\n      <VERS vnumber=\"14\">Out of Ephraim [came down] they whose root is in Amalek; After thee, Benjamin, among thy peoples; Out of Machir came down governors, And out of Zebulun they that handle the marshal`s staff.</VERS>\r\n      <VERS vnumber=\"15\">And the princes of Issachar were with Deborah; As was Issachar, so was Barak; Into the valley they rushed forth at his feet. By the watercourses of Reuben There were great resolves of heart.</VERS>\r\n      <VERS vnumber=\"16\">Why sattest thou among the sheepfolds, To hear the pipings for the flocks? At the watercourses of Reuben There were great searchings of heart.</VERS>\r\n      <VERS vnumber=\"17\">Gilead abode beyond the Jordan: And Dan, why did he remain in ships? Asher sat still at the haven of the sea, And abode by his creeks.</VERS>\r\n      <VERS vnumber=\"18\">Zebulun was a people that jeoparded their lives unto the       death, And Naphtali, upon the high places of the field.</VERS>\r\n      <VERS vnumber=\"19\">The kings came and fought; Then fought the kings of Canaan. In Taanach by the waters of Megiddo: They took no gain of money.</VERS>\r\n      <VERS vnumber=\"20\">From heaven fought the stars, From their courses they fought against Sisera.</VERS>\r\n      <VERS vnumber=\"21\">The river Kishon swept them away, That ancient river, the river Kishon. O my soul, march on with strength.</VERS>\r\n      <VERS vnumber=\"22\">Then did the horsehoofs stamp By reason of the prancings, the prancings of their strong ones.</VERS>\r\n      <VERS vnumber=\"23\">Curse ye Meroz, said the angel of Jehovah. Curse ye bitterly the inhabitants thereof, Because they came not to the help of Jehovah, To the help of Jehovah against the mighty.</VERS>\r\n      <VERS vnumber=\"24\">Blessed above women shall Jael be, The wife of Heber the Kenite; Blessed shall she be above women in the tent.</VERS>\r\n      <VERS vnumber=\"25\">He asked water, [and] she gave him milk; She brought him butter in a lordly dish.</VERS>\r\n      <VERS vnumber=\"26\">She put her hand to the tent-pin, And her right hand to the workmen`s hammer; And with the hammer she smote Sisera, she smote through his head; Yea, she pierced and struck through his temples.</VERS>\r\n      <VERS vnumber=\"27\">At her feet he bowed, he fell, he lay; At her feet he bowed, he fell; Where he bowed, there he fell down dead.</VERS>\r\n      <VERS vnumber=\"28\">Through the window she looked forth, and cried, The mother of Sisera [cried] through the lattice, Why is his chariot so long in coming? Why tarry the wheels of his chariots?</VERS>\r\n      <VERS vnumber=\"29\">Her wise ladies answered her, Yea, she returned answer to herself,</VERS>\r\n      <VERS vnumber=\"30\">Have they not found, have they not divided the spoil? A damsel, two damsels to every man; To Sisera a spoil of dyed garments, A spoil of dyed garments embroidered, Of dyed garments embroidered on both sides, on the necks of the       spoil?</VERS>\r\n      <VERS vnumber=\"31\">So let all thine enemies perish, O Jehovah: But let them that love him be as the sun when he goeth forth in       his might.     And the land had rest forty years.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">And the children of Israel did that which was evil in the sight of Jehovah: and Jehovah delivered them into the hand of Midian seven years.</VERS>\r\n      <VERS vnumber=\"2\">And the hand of Midian prevailed against Israel; and because of Midian the children of Israel made them the dens which are in the mountains, and the caves, and the strongholds.</VERS>\r\n      <VERS vnumber=\"3\">And so it was, when Israel had sown, that the Midianites came up, and the Amalekites, and the children of the east; they came up against them;</VERS>\r\n      <VERS vnumber=\"4\">and they encamped against them, and destroyed the increase of the earth, till thou come unto Gaza, and left no sustenance in Israel, neither sheep, nor ox, nor ass.</VERS>\r\n      <VERS vnumber=\"5\">For they came up with their cattle and their tents; they came in as locusts for multitude; both they and their camels were without number: and they came into the land to destroy it.</VERS>\r\n      <VERS vnumber=\"6\">And Israel was brought very low because of Midian; and the children of Israel cried unto Jehovah.</VERS>\r\n      <VERS vnumber=\"7\">And it came to pass, when the children of Israel cried unto Jehovah because of Midian,</VERS>\r\n      <VERS vnumber=\"8\">that Jehovah sent a prophet unto the children of Israel: and he said unto them, Thus saith Jehovah, the God of Israel, I brought you up from Egypt, and brought you forth out of the house of bondage;</VERS>\r\n      <VERS vnumber=\"9\">and I delivered you out of the hand of the Egyptians, and out of the hand of all that oppressed you, and drove them out from before you, and gave you their land;</VERS>\r\n      <VERS vnumber=\"10\">and I said unto you, I am Jehovah your God; ye shall not fear the gods of the Amorites, in whose land ye dwell. But ye have not hearkened unto my voice.</VERS>\r\n      <VERS vnumber=\"11\">And the angel of Jehovah came, and sat under the oak which was in Ophrah, that pertained unto Joash the Abiezrite: and his son Gideon was beating out wheat in the winepress, to hide it from the Midianites.</VERS>\r\n      <VERS vnumber=\"12\">And the angel of Jehovah appeared unto him, and said unto him, Jehovah is with thee, thou mighty man of valor.</VERS>\r\n      <VERS vnumber=\"13\">And Gideon said unto him, Oh, my lord, if Jehovah is with us, why then is all this befallen us? and where are all his wondrous works which our fathers told us of, saying, Did not Jehovah bring us up from Egypt? but now Jehovah hath cast us off, and delivered us into the hand of Midian.</VERS>\r\n      <VERS vnumber=\"14\">And Jehovah looked upon him, and said, Go in this thy might, and save Israel from the hand of Midian: have not I sent thee?</VERS>\r\n      <VERS vnumber=\"15\">And he said unto him, Oh, Lord, wherewith shall I save Israel? behold, my family is the poorest in Manasseh, and I am the least in my father`s house.</VERS>\r\n      <VERS vnumber=\"16\">And Jehovah said unto him, Surely I will be with thee, and thou shalt smite the Midianites as one man.</VERS>\r\n      <VERS vnumber=\"17\">And he said unto him, If now I have found favor in thy sight, then show me a sign that it is thou that talkest with me.</VERS>\r\n      <VERS vnumber=\"18\">Depart not hence, I pray thee, until I come unto thee, and bring forth my present, and lay it before thee. And he said, I will tarry until thou come again.</VERS>\r\n      <VERS vnumber=\"19\">And Gideon went in, and made ready a kid, and unleavened cakes of an ephah of meal: 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">Then the angel of Jehovah put forth the end of the staff that was in his hand, and touched the flesh and the unleavened cakes; and there went up fire out of the rock, and consumed the flesh and the unleavened cakes; and the angel of Jehovah departed out of his sight.</VERS>\r\n      <VERS vnumber=\"22\">And Gideon saw that he was the angel of Jehovah; and Gideon said, Alas, O Lord Jehovah! forasmuch as I have seen the angel of Jehovah face to face.</VERS>\r\n      <VERS vnumber=\"23\">And Jehovah said unto him, Peace be unto thee; fear not: thou shalt not die.</VERS>\r\n      <VERS vnumber=\"24\">Then Gideon built an altar there unto Jehovah, and called it Jehovah-shalom: unto this day it is yet in Ophrah of the Abiezrites.</VERS>\r\n      <VERS vnumber=\"25\">And it came to pass the same night, that Jehovah said unto him, Take thy father`s bullock, even the second bullock seven years old, and throw down the altar of Baal that thy father hath, and cut down the Asherah that is by it;</VERS>\r\n      <VERS vnumber=\"26\">and build an altar unto Jehovah thy God upon the top of this stronghold, in the orderly manner, and take the second bullock, and offer a burnt-offering with the wood of the Asherah which thou shalt cut down.</VERS>\r\n      <VERS vnumber=\"27\">Then Gideon took ten men of his servants, and did as Jehovah had spoken unto him: and it came to pass, because he feared his father`s household and the men of the city, so that he could not do it by day, that he did it by night.</VERS>\r\n      <VERS vnumber=\"28\">And when the men of the city arose early in the morning, behold, the altar of Baal was broken down, and the Asherah was cut down that was by it, and the second bullock was offered upon the altar that was built.</VERS>\r\n      <VERS vnumber=\"29\">And they said one to another, Who hath done this thing? And when they inquired and asked, they said, Gideon the son of Joash hath done this thing.</VERS>\r\n      <VERS vnumber=\"30\">Then the men of the city said unto Joash, Bring out thy son, that he may die, because he hath broken down the altar of Baal, and because he hath cut down the Asherah that was by it.</VERS>\r\n      <VERS vnumber=\"31\">And Joash said unto all that stood against him, Will ye contend for Baal? Or will ye save him? he that will contend for him, let him be put to death whilst [it is yet] morning: if he be a god, let him contend for himself, because one hath broken down his altar.</VERS>\r\n      <VERS vnumber=\"32\">Therefore on that day he called him Jerubbaal, saying, Let Baal contend against him, because he hath broken down his altar.</VERS>\r\n      <VERS vnumber=\"33\">Then all the Midianites and the Amalekites and the children of the east assembled themselves together; and they passed over, and encamped in the valley of Jezreel.</VERS>\r\n      <VERS vnumber=\"34\">But the Spirit of Jehovah came upon Gideon; and he blew a trumpet; and Abiezer was gathered together after him.</VERS>\r\n      <VERS vnumber=\"35\">And he sent messengers throughout all Manasseh; and they also were gathered together after him: and he sent messengers unto Asher, and unto Zebulun, and unto Naphtali; and they came up to meet them.</VERS>\r\n      <VERS vnumber=\"36\">And Gideon said unto God, If thou wilt save Israel by my hand, as thou hast spoken,</VERS>\r\n      <VERS vnumber=\"37\">behold, I will put a fleece of wool on the threshing-floor; if there be dew on the fleece only, and it be dry upon all the ground, then shall I know that thou wilt save Israel by my hand, as thou hast spoken.</VERS>\r\n      <VERS vnumber=\"38\">And it was so; for he rose up early on the morrow, and pressed the fleece together, and wrung the dew out of the fleece, a bowlful of water.</VERS>\r\n      <VERS vnumber=\"39\">And Gideon said unto God, Let not thine anger be kindled against me, and I will speak but this once: let me make trial, 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.</VERS>\r\n      <VERS vnumber=\"40\">And God did so that night: for it was dry upon the fleece only, and there was dew on all the ground.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">Then Jerubbaal, who is Gideon, and all the people that were with him, rose up early, and encamped beside the spring of Harod: and the camp of Midian was on the north side of them, by the hill of Moreh, in the valley.</VERS>\r\n      <VERS vnumber=\"2\">And Jehovah said unto Gideon, The people that are with thee are too many for me to give the Midianites into their hand, lest Israel vaunt themselves against me, saying, Mine own hand hath saved me.</VERS>\r\n      <VERS vnumber=\"3\">Now therefore proclaim in the ears of the people, saying, Whosoever is fearful and trembling, let him return and depart from mount Gilead. And there returned of the people twenty and two thousand; and there remained ten thousand.</VERS>\r\n      <VERS vnumber=\"4\">And Jehovah 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.</VERS>\r\n      <VERS vnumber=\"5\">So he brought down the people unto the water: and Jehovah 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.</VERS>\r\n      <VERS vnumber=\"6\">And the number of them that lapped, putting their hand to their mouth, was three hundred men: but all the rest of the people bowed down upon their knees to drink water.</VERS>\r\n      <VERS vnumber=\"7\">And Jehovah said unto Gideon, By the three hundred men that lapped will I save you, and deliver the Midianites into thy hand; and let all the people go every man unto his place.</VERS>\r\n      <VERS vnumber=\"8\">So the people took victuals in their hand, and their trumpets; and he sent all the men of Israel every man unto his tent, but retained the three hundred men: and the camp of Midian was beneath him in the valley.</VERS>\r\n      <VERS vnumber=\"9\">And it came to pass the same night, that Jehovah said unto him, Arise, get thee down into the camp; for I have delivered it into thy hand.</VERS>\r\n      <VERS vnumber=\"10\">But if thou fear to go down, go thou with Purah thy servant down to the camp:</VERS>\r\n      <VERS vnumber=\"11\">and thou shalt hear what they say; and afterward shall thy hands be strengthened to go down into the camp. Then went he down with Purah his servant unto the outermost part of the armed men that were in the camp.</VERS>\r\n      <VERS vnumber=\"12\">And the Midianites and the Amalekites and all the children of the east lay along in the valley like locusts for multitude; and their camels were without number, as the sand which is upon the sea-shore for multitude.</VERS>\r\n      <VERS vnumber=\"13\">And when Gideon was come, behold, there was a man telling a dream unto his fellow; and he said, Behold, I dreamed a dream; and, lo, a cake of barley bread tumbled into the camp of Midian, and came unto the tent, and smote it so that it fell, and turned it upside down, so that the tent lay flat.</VERS>\r\n      <VERS vnumber=\"14\">And his fellow answered and said, This is nothing else save the sword of Gideon the son of Joash, a man of Israel: into his hand God hath delivered Midian, and all the host.</VERS>\r\n      <VERS vnumber=\"15\">And it was so, when Gideon heard the telling of the dream, and the interpretation thereof, that he worshipped; and he returned into the camp of Israel, and said, Arise; for Jehovah hath delivered into your hand the host of Midian.</VERS>\r\n      <VERS vnumber=\"16\">And he divided the three hundred men into three companies, and he put into the hands of all of them trumpets, and empty pitchers, with torches within the pitchers.</VERS>\r\n      <VERS vnumber=\"17\">And he said unto them, Look on me, and do likewise: and, behold, when I come to the outermost part of the camp, it shall be that, as I do, so shall ye do.</VERS>\r\n      <VERS vnumber=\"18\">When I blow the trumpet, I and all that are with me, then blow ye the trumpets also on every side of all the camp, and say, For Jehovah and for Gideon.</VERS>\r\n      <VERS vnumber=\"19\">So Gideon, and the hundred men that were with him, came unto the outermost part of the camp in the beginning of the middle watch, when they had but newly set the watch: and they blew the trumpets, and brake in pieces the pitchers that were in their hands.</VERS>\r\n      <VERS vnumber=\"20\">And the three companies blew the trumpets, and brake the pitchers, and held the torches in their left hands, and the trumpets in their right hands wherewith to blow; and they cried, The sword of Jehovah and of Gideon.</VERS>\r\n      <VERS vnumber=\"21\">And they stood every man in his place round about the camp; and all the host ran; and they shouted, and put [them] to flight.</VERS>\r\n      <VERS vnumber=\"22\">And they blew the three hundred trumpets, and Jehovah set every man`s sword against his fellow, and against all the host; and the host fled as far as Beth-shittah toward Zererah, as far as the border of Abel-meholah, by Tabbath.</VERS>\r\n      <VERS vnumber=\"23\">And the men of Israel were gathered together out of Naphtali, and out of Asher, and out of all Manasseh, and pursued after Midian.</VERS>\r\n      <VERS vnumber=\"24\">And Gideon sent messengers throughout all the hill-country of Ephraim, saying, Come down against Midian, and take before them the waters, as far as Beth-barah, even the Jordan. So all the men of Ephraim were gathered together, and took the waters as far as Beth-barah, even the Jordan.</VERS>\r\n      <VERS vnumber=\"25\">And they took the two princes of Midian, Oreb and Zeeb; and they slew Oreb at the rock of Oreb, and Zeeb they slew at the winepress of Zeeb, and pursued Midian: and they brought the heads of Oreb and Zeeb to Gideon beyond the Jordan.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">And the men of Ephraim said unto him, Why hast thou served us thus, that thou calledst us not, when thou wentest to fight with Midian? And they did chide with him sharply.</VERS>\r\n      <VERS vnumber=\"2\">And he said unto them, What have I now done in comparison with you? Is not the gleaning of the grapes of Ephraim better than the vintage of Abiezer?</VERS>\r\n      <VERS vnumber=\"3\">God hath delivered into your hand the princes of Midian, Oreb and Zeeb: and what was I able to do in comparison with you? Then their anger was abated toward him, when he had said that.</VERS>\r\n      <VERS vnumber=\"4\">And Gideon came to the Jordan, [and] passed over, he, and the three hundred men that were with him, faint, yet pursuing.</VERS>\r\n      <VERS vnumber=\"5\">And he said unto the men of Succoth, Give, I pray you, loaves of bread unto the people that follow me; for they are faint, and I am pursuing after Zebah and Zalmunna, the kings of Midian.</VERS>\r\n      <VERS vnumber=\"6\">And the princes of Succoth said, Are the hands of Zebah and Zalmunna now in thy hand, that we should give bread unto thine army?</VERS>\r\n      <VERS vnumber=\"7\">And Gideon said, Therefore when Jehovah hath delivered Zebah and Zalmunna into my hand, then I will tear your flesh with the thorns of the wilderness and with briers.</VERS>\r\n      <VERS vnumber=\"8\">And he went up thence to Penuel, and spake unto them in like manner; and the men of Penuel answered him as the men of Succoth had answered.</VERS>\r\n      <VERS vnumber=\"9\">And he spake also unto the men of Penuel, saying, When I come again in peace, I will break down this tower.</VERS>\r\n      <VERS vnumber=\"10\">Now Zebah and Zalmunna were in Karkor, and their hosts with them, about fifteen thousand men, all that were left of all the host of the children of the east; for there fell a hundred and twenty thousand men that drew sword.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And Zebah and Zalmunna fled; and he pursued after them; and he took the two kings of Midian, Zebah and Zalmunna, and discomfited all the host.</VERS>\r\n      <VERS vnumber=\"13\">And Gideon the son of Joash returned from the battle from the ascent of Heres.</VERS>\r\n      <VERS vnumber=\"14\">And he caught a young man of the men of Succoth, and inquired of him: and he described for him the princes of Succoth, and the elders thereof, seventy and seven men.</VERS>\r\n      <VERS vnumber=\"15\">And he came unto the men of Succoth, and said, Behold Zebah and Zalmunna, concerning whom ye did taunt me, saying, Are the hands of Zebah and Zalmunna now in thy hand, that we should give bread unto thy men that are weary?</VERS>\r\n      <VERS vnumber=\"16\">And he took the elders of the city, and thorns of the wilderness and briers, and with them he taught the men of Succoth.</VERS>\r\n      <VERS vnumber=\"17\">And he brake down the tower of Penuel, and slew the men of the city.</VERS>\r\n      <VERS vnumber=\"18\">Then 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.</VERS>\r\n      <VERS vnumber=\"19\">And he said, They were my brethren, the sons of my mother: as Jehovah liveth, if ye had saved them alive, I would not slay you.</VERS>\r\n      <VERS vnumber=\"20\">And he said unto Jether his first-born, Up, and slay them. But the youth drew not his sword; for he feared, because he was yet a youth.</VERS>\r\n      <VERS vnumber=\"21\">Then 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 the crescents that were on their camels` necks.</VERS>\r\n      <VERS vnumber=\"22\">Then 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 saved us out of the hand of Midian.</VERS>\r\n      <VERS vnumber=\"23\">And Gideon said unto them, I will not rule over you, neither shall my son rule over you: Jehovah shall rule over you.</VERS>\r\n      <VERS vnumber=\"24\">And Gideon said unto them, I would make a request of you, that ye would give me every man the ear-rings of his spoil. (For they had golden ear-rings, because they were Ishmaelites.)</VERS>\r\n      <VERS vnumber=\"25\">And they answered, We will willingly give them. And they spread a garment, and did cast therein every man the ear-rings of his spoil.</VERS>\r\n      <VERS vnumber=\"26\">And the weight of the golden ear-rings that he requested was a thousand and seven hundred [shekels] of gold, besides the crescents, and the pendants, and the purple raiment that was on the kings of Midian, and besides the chains that were about their camels` necks.</VERS>\r\n      <VERS vnumber=\"27\">And Gideon made an ephod thereof, and put it in his city, even in Ophrah: and all Israel played the harlot after it there; and it became a snare unto Gideon, and to his house.</VERS>\r\n      <VERS vnumber=\"28\">So Midian was subdued before the children of Israel, and they lifted up their heads no more. And the land had rest forty years in the days of Gideon.</VERS>\r\n      <VERS vnumber=\"29\">And Jerubbaal the son of Joash went and dwelt in his own house.</VERS>\r\n      <VERS vnumber=\"30\">And Gideon had threescore and ten sons of his body begotten; for he had many wives.</VERS>\r\n      <VERS vnumber=\"31\">And his concubine that was in Shechem, she also bare him a son, and he called his name Abimelech.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">And it came to pass, as soon as Gideon was dead, that the children of Israel turned again, and played the harlot after the Baalim, and made Baal-berith their god.</VERS>\r\n      <VERS vnumber=\"34\">And the children of Israel remembered not Jehovah their God, who had delivered them out of the hand of all their enemies on every side;</VERS>\r\n      <VERS vnumber=\"35\">neither showed they kindness to the house of Jerubbaal, [who is] Gideon, according to all the goodness which he had showed unto Israel.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">And Abimelech the son of Jerubbaal went to Shechem unto his mother`s brethren, and spake with them, and with all the family of the house of his mother`s father, saying,</VERS>\r\n      <VERS vnumber=\"2\">Speak, I pray you, in the ears of all the men of Shechem, Whether is better for you, that all the sons of Jerubbaal, who are threescore and ten persons, rule over you, or that one rule over you? remember also that I am your bone and your flesh.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And they gave him threescore and ten [pieces] of silver out of the house of Baal-berith, wherewith Abimelech hired vain and light fellows, who followed him.</VERS>\r\n      <VERS vnumber=\"5\">And 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: but Jotham the youngest son of Jerubbaal was left; for he hid himself.</VERS>\r\n      <VERS vnumber=\"6\">And all the men of Shechem assembled themselves together, and all the house of Millo, and went and made Abimelech king, by the oak of the pillar that was in Shechem.</VERS>\r\n      <VERS vnumber=\"7\">And when they told it to Jotham, he went and stood on 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.</VERS>\r\n      <VERS vnumber=\"8\">The trees went forth on a time to anoint a king over them; and they said unto the olive-tree, Reign thou over us.</VERS>\r\n      <VERS vnumber=\"9\">But the olive-tree said unto them, Should I leave my fatness, wherewith by me they honor God and man, and go to wave to and fro over the trees?</VERS>\r\n      <VERS vnumber=\"10\">And the trees said to the fig-tree, Come thou, and reign over us.</VERS>\r\n      <VERS vnumber=\"11\">But the fig-tree said unto them, Should I leave my sweetness, and my good fruit, and go to wave to and fro over the trees?</VERS>\r\n      <VERS vnumber=\"12\">And the trees said unto the vine, Come thou, and reign over us.</VERS>\r\n      <VERS vnumber=\"13\">And the vine said unto them, Should I leave my new wine, which cheereth God and man, and go to wave to and fro over the trees?</VERS>\r\n      <VERS vnumber=\"14\">Then said all the trees unto the bramble, Come thou, and reign over us.</VERS>\r\n      <VERS vnumber=\"15\">And the bramble said unto the trees, If in truth ye anoint me king over you, then come and take refuge in my shade; and if not, let fire come out of the bramble, and devour the cedars of Lebanon.</VERS>\r\n      <VERS vnumber=\"16\">Now therefore, if ye have dealt truly and uprightly, 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</VERS>\r\n      <VERS vnumber=\"17\">(for my father fought for you, and adventured his life, and delivered you out of the hand of Midian:</VERS>\r\n      <VERS vnumber=\"18\">and 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 maid-servant, king over the men of Shechem, because he is your brother);</VERS>\r\n      <VERS vnumber=\"19\">if ye then have dealt truly and uprightly with Jerubbaal and with his house this day, then rejoice ye in Abimelech, and let him also rejoice in you:</VERS>\r\n      <VERS vnumber=\"20\">but 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.</VERS>\r\n      <VERS vnumber=\"21\">And Jotham ran away, and fled, and went to Beer, and dwelt there, for fear of Abimelech his brother.</VERS>\r\n      <VERS vnumber=\"22\">And Abimelech was prince over Israel three years.</VERS>\r\n      <VERS vnumber=\"23\">And God sent an evil spirit between Abimelech and the men of Shechem; and the men of Shechem dealt treacherously with Abimelech:</VERS>\r\n      <VERS vnumber=\"24\">that the violence done to the threescore and ten sons of Jerubbaal might come, and that their blood might be laid upon Abimelech their brother, who slew them, and upon the men of Shechem, who strengthened his hands to slay his brethren.</VERS>\r\n      <VERS vnumber=\"25\">And the men of Shechem set liers-in-wait for him on the tops of the mountains, and they robbed all that came along that way by them: and it was told Abimelech.</VERS>\r\n      <VERS vnumber=\"26\">And Gaal the son of Ebed came with his brethren, and went over to Shechem; and the men of Shechem put their trust in him.</VERS>\r\n      <VERS vnumber=\"27\">And they went out into the field, and gathered their vineyards, and trod [the grapes], and held festival, and went into the house of their god, and did eat and drink, and cursed Abimelech.</VERS>\r\n      <VERS vnumber=\"28\">And 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 ye the men of Hamor the father of Shechem: but why should we serve him?</VERS>\r\n      <VERS vnumber=\"29\">And would that this people were under my hand! then would I remove Abimelech. And he said to Abimelech, Increase thine army, and come out.</VERS>\r\n      <VERS vnumber=\"30\">And when Zebul the ruler of the city heard the words of Gaal the son of Ebed, his anger was kindled.</VERS>\r\n      <VERS vnumber=\"31\">And he sent messengers unto Abimelech craftily, saying, Behold, Gaal the son of Ebed and his brethren are come to Shechem; and, behold, they constrain the city [to take part] against thee.</VERS>\r\n      <VERS vnumber=\"32\">Now therefore, up by night, thou and the people that are with thee, and lie in wait in the field:</VERS>\r\n      <VERS vnumber=\"33\">and it shall be, that in the morning, as soon as the sun is up, thou shalt rise early, and rush upon the city; and, behold, when he and the people that are with him come out against thee, then mayest thou do to them as thou shalt find occasion.</VERS>\r\n      <VERS vnumber=\"34\">And Abimelech rose up, and all the people that were with him, by night, and they laid wait against Shechem in four companies.</VERS>\r\n      <VERS vnumber=\"35\">And Gaal the son of Ebed went out, and stood in the entrance of the gate of the city: and Abimelech rose up, and the people that were with him, from the ambushment.</VERS>\r\n      <VERS vnumber=\"36\">And when Gaal saw the people, he said to Zebul, Behold, there come people down from the tops of the mountains. And Zebul said unto him, Thou seest the shadow of the mountains as if they were men.</VERS>\r\n      <VERS vnumber=\"37\">And Gaal spake again and said, See, there come people down by the middle of the land, and one company cometh by the way of the oak of Meonenim.</VERS>\r\n      <VERS vnumber=\"38\">Then said Zebul unto him, Where is now thy mouth, that thou saidst, Who is Abimelech, that we should serve him? is not this the people that thou hast despised? go out now, I pray, and fight with them.</VERS>\r\n      <VERS vnumber=\"39\">And Gaal went out before the men of Shechem, and fought with Abimelech.</VERS>\r\n      <VERS vnumber=\"40\">And Abimelech chased him, and he fled before him, and there fell many wounded, even unto the entrance of the gate.</VERS>\r\n      <VERS vnumber=\"41\">And Abimelech dwelt at Arumah: and Zebul drove out Gaal and his brethren, that they should not dwell in Shechem.</VERS>\r\n      <VERS vnumber=\"42\">And it came to pass on the morrow, that the people went out into the field; and they told Abimelech.</VERS>\r\n      <VERS vnumber=\"43\">And he took the people, and divided them into three companies, and laid wait in the field; and he looked, and, behold, the people came forth out of the city; And he rose up against them, and smote them.</VERS>\r\n      <VERS vnumber=\"44\">And Abimelech, and the companies that were with him, rushed forward, and stood in the entrance of the gate of the city: and the two companies rushed upon all that were in the field, and smote them.</VERS>\r\n      <VERS vnumber=\"45\">And Abimelech fought against the city all that day; and he took the city, and slew the people that were therein: and he beat down the city, and sowed it with salt.</VERS>\r\n      <VERS vnumber=\"46\">And when all the men of the tower of Shechem heard thereof, they entered into the stronghold of the house of Elberith.</VERS>\r\n      <VERS vnumber=\"47\">And it was told Abimelech that all the men of the tower of Shechem were gathered together.</VERS>\r\n      <VERS vnumber=\"48\">And 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 up, and laid it on his shoulder: and he said unto the people that were with him, What ye have seen me do, make haste, and do as I have done.</VERS>\r\n      <VERS vnumber=\"49\">And all the people likewise cut down every man his bough, and followed Abimelech, and put them to the stronghold, and set the stronghold on fire upon them; so that all the men of the tower of Shechem died also, about a thousand men and women.</VERS>\r\n      <VERS vnumber=\"50\">Then went Abimelech to Thebez, and encamped against Thebez, and took it.</VERS>\r\n      <VERS vnumber=\"51\">But there was a strong tower within the city, and thither fled all the men and women, and all they of the city, and shut themselves in, and gat them up to the roof of the tower.</VERS>\r\n      <VERS vnumber=\"52\">And Abimelech came unto the tower, and fought against it, and drew near unto the door of the tower to burn it with fire.</VERS>\r\n      <VERS vnumber=\"53\">And a certain woman cast an upper millstone upon Abimelech`s head, and brake his skull.</VERS>\r\n      <VERS vnumber=\"54\">Then he called hastily unto the young man his armorbearer, and said unto him, Draw thy sword, and kill me, that men say not of me, A woman slew him. And his young man thrust him through, and he died.</VERS>\r\n      <VERS vnumber=\"55\">And when the men of Israel saw that Abimelech was dead, they departed every man unto his place.</VERS>\r\n      <VERS vnumber=\"56\">Thus God requited the wickedness of Abimelech, which he did unto his father, in slaying his seventy brethren;</VERS>\r\n      <VERS vnumber=\"57\">and all the wickedness of the men of Shechem did God requite upon their heads: and upon them came the curse of Jotham the son of Jerubbaal.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">And after Abimelech there arose to save Israel Tola the son of Puah, the son of Dodo, a man of Issachar; and he dwelt in Shamir in the hill-country of Ephraim.</VERS>\r\n      <VERS vnumber=\"2\">And he judged Israel twenty and three years, and died, and was buried in Shamir.</VERS>\r\n      <VERS vnumber=\"3\">And after him arose Jair, the Gileadite; and he judged Israel twenty and two years.</VERS>\r\n      <VERS vnumber=\"4\">And he had thirty sons that rode on thirty ass colts, and they had thirty cities, which are called Havvoth-jair unto this day, which are in the land of Gilead.</VERS>\r\n      <VERS vnumber=\"5\">And Jair died, and was buried in Kamon.</VERS>\r\n      <VERS vnumber=\"6\">And the children of Israel again did that which was evil in the sight of Jehovah, and served the Baalim, and the Ashtaroth, and the gods of Syria, and the gods of Sidon, and the gods of Moab, and the gods of the children of Ammon, and the gods of the Philistines; and they forsook Jehovah, and served him not.</VERS>\r\n      <VERS vnumber=\"7\">And the anger of Jehovah was kindled against Israel, and he sold them into the hand of the Philistines, and into the hand of the children of Ammon.</VERS>\r\n      <VERS vnumber=\"8\">And they vexed and oppressed the children of Israel that year: eighteen years [oppressed they] all the children of Israel that were beyond the Jordan in the land of the Amorites, which is in Gilead.</VERS>\r\n      <VERS vnumber=\"9\">And the children of Ammon passed over the Jordan to fight also against Judah, and against Benjamin, and against the house of Ephraim; so that Israel was sore distressed.</VERS>\r\n      <VERS vnumber=\"10\">And the children of Israel cried unto Jehovah, saying, We have sinned against thee, even because we have forsaken our God, and have served the Baalim.</VERS>\r\n      <VERS vnumber=\"11\">And Jehovah said unto the children of Israel, [Did] not [I save you] from the Egyptians, and from the Amorites, from the children of Ammon, and from the Philistines?</VERS>\r\n      <VERS vnumber=\"12\">The Sidonians also, and the Amalekites, and the Maonites, did oppress you; and ye cried unto me, and I saved you out of their hand.</VERS>\r\n      <VERS vnumber=\"13\">Yet ye have forsaken me, and served other gods: wherefore I will save you no more.</VERS>\r\n      <VERS vnumber=\"14\">Go and cry unto the gods which ye have chosen; let them save you in the time of your distress.</VERS>\r\n      <VERS vnumber=\"15\">And the children of Israel said unto Jehovah, We have sinned: do thou unto us whatsoever seemeth good unto thee; only deliver us, we pray thee, this day.</VERS>\r\n      <VERS vnumber=\"16\">And they put away the foreign gods from among them, and served Jehovah; and his soul was grieved for the misery of Israel.</VERS>\r\n      <VERS vnumber=\"17\">Then the children of Ammon were gathered together, and encamped in Gilead. And the children of Israel assembled themselves together, and encamped in Mizpah.</VERS>\r\n      <VERS vnumber=\"18\">And the people, the 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">Now Jephthah the Gileadite was a mighty man of valor, and he was the son of a harlot: and Gilead begat Jephthah.</VERS>\r\n      <VERS vnumber=\"2\">And Gilead`s wife bare him sons; and when his wife`s sons grew up, they drove out Jephthah, and said unto him, Thou shalt not inherit in our father`s house; for thou art the son of another woman.</VERS>\r\n      <VERS vnumber=\"3\">Then Jephthah fled from his brethren, and dwelt in the land of Tob: and there were gathered vain fellows to Jephthah, and they went out with him.</VERS>\r\n      <VERS vnumber=\"4\">And it came to pass after a while, that the children of Ammon made war against Israel.</VERS>\r\n      <VERS vnumber=\"5\">And 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;</VERS>\r\n      <VERS vnumber=\"6\">and they said unto Jephthah, Come and be our chief, that we may fight with the children of Ammon.</VERS>\r\n      <VERS vnumber=\"7\">And Jephthah said unto the elders of Gilead, Did not ye hate me, and drive me out of my father`s house? and why are ye come unto me now when ye are in distress?</VERS>\r\n      <VERS vnumber=\"8\">And the elders of Gilead said unto Jephthah, Therefore are we turned again to thee now, that thou mayest go with us, and fight with the children of Ammon; and thou shalt be our head over all the inhabitants of Gilead.</VERS>\r\n      <VERS vnumber=\"9\">And Jephthah said unto the elders of Gilead, If ye bring me home again to fight with the children of Ammon, and Jehovah deliver them before me, shall I be your head?</VERS>\r\n      <VERS vnumber=\"10\">And the elders of Gilead said unto Jephthah, Jehovah shall be witness between us; surely according to thy word so will we do.</VERS>\r\n      <VERS vnumber=\"11\">Then Jephthah went with the elders of Gilead, and the people made him head and chief over them: and Jephthah spake all his words before Jehovah in Mizpah.</VERS>\r\n      <VERS vnumber=\"12\">And Jephthah sent messengers unto the king of the children of Ammon, saying, What hast thou to do with me, that thou art come unto me to fight against my land?</VERS>\r\n      <VERS vnumber=\"13\">And the king of the children of Ammon answered unto the messengers of Jephthah, Because Israel took away my land, when he came up out of Egypt, from the Arnon even unto the Jabbok, and unto the Jordan: now therefore restore those [lands] again peaceably.</VERS>\r\n      <VERS vnumber=\"14\">And Jephthah sent messengers again unto the king of the children of Ammon;</VERS>\r\n      <VERS vnumber=\"15\">and he said unto him, Thus saith Jephthah: Israel took not away the land of Moab, nor the land of the children of Ammon,</VERS>\r\n      <VERS vnumber=\"16\">but when they came up from Egypt, and Israel went through the wilderness unto the Red Sea, and came to Kadesh;</VERS>\r\n      <VERS vnumber=\"17\">then Israel sent messengers unto the king of Edom, saying, Let me, I pray thee, pass through thy land; but the king of Edom hearkened not. And in like manner he sent unto the king of Moab; but he would not: and Israel abode in Kadesh.</VERS>\r\n      <VERS vnumber=\"18\">Then they went through the wilderness, and went around the land of Edom, and the land of Moab, and came by the east side of the land of Moab, and they encamped on the other side of the Arnon; but they came not within the border of Moab, for the Arnon was the border of Moab.</VERS>\r\n      <VERS vnumber=\"19\">And 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 unto my place.</VERS>\r\n      <VERS vnumber=\"20\">But Sihon trusted not Israel to pass through his border; but Sihon gathered all his people together, and encamped in Jahaz, and fought against Israel.</VERS>\r\n      <VERS vnumber=\"21\">And Jehovah, the 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.</VERS>\r\n      <VERS vnumber=\"22\">And they possessed all the border of the Amorites, from the Arnon even unto the Jabbok, and from the wilderness even unto the Jordan.</VERS>\r\n      <VERS vnumber=\"23\">So now Jehovah, the God of Israel, hath dispossessed the Amorites from before his people Israel, and shouldest thou possess them?</VERS>\r\n      <VERS vnumber=\"24\">Wilt not thou possess that which Chemosh thy god giveth thee to possess? So whomsoever Jehovah our God hath dispossessed from before us, them will we possess.</VERS>\r\n      <VERS vnumber=\"25\">And now art thou anything better than Balak the son of Zippor, king of Moab? did he ever strive against Israel, or did he ever fight against them?</VERS>\r\n      <VERS vnumber=\"26\">While Israel dwelt in Heshbon and its towns, and in Aroer and its towns, and in all the cities that are along by the side of the Arnon, three hundred years; wherefore did ye not recover them within that time?</VERS>\r\n      <VERS vnumber=\"27\">I therefore have not sinned against thee, but thou doest me wrong to war against me: Jehovah, the Judge, be judge this day between the children of Israel and the children of Ammon.</VERS>\r\n      <VERS vnumber=\"28\">Howbeit the king of the children of Ammon hearkened not unto the words of Jephthah which he sent him.</VERS>\r\n      <VERS vnumber=\"29\">Then the Spirit of Jehovah 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.</VERS>\r\n      <VERS vnumber=\"30\">And Jephthah vowed a vow unto Jehovah, and said, If thou wilt indeed deliver the children of Ammon into my hand,</VERS>\r\n      <VERS vnumber=\"31\">then it shall be, that whatsoever cometh forth from the doors of my house to meet me, when I return in peace from the children of Ammon, it shall be Jehovah`s, and I will offer it up for a burnt-offering.</VERS>\r\n      <VERS vnumber=\"32\">So Jephthah passed over unto the children of Ammon to fight against them; and Jehovah delivered them into his hand.</VERS>\r\n      <VERS vnumber=\"33\">And he smote them from Aroer until thou come to Minnith, even twenty cities, and unto Abelcheramim, with a very great slaughter. So the children of Ammon were subdued before the children of Israel.</VERS>\r\n      <VERS vnumber=\"34\">And Jephthah came to Mizpah unto his house; and, behold, his daughter came out to meet him with timbrels and with dances: and she was his only child; besides her he had neither son nor daughter.</VERS>\r\n      <VERS vnumber=\"35\">And 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 Jehovah, and I cannot go back.</VERS>\r\n      <VERS vnumber=\"36\">And she said unto him, My father, thou hast opened thy mouth unto Jehovah; do unto me according to that which hath proceeded out of thy mouth, forasmuch as Jehovah hath taken vengeance for thee on thine enemies, even on the children of Ammon.</VERS>\r\n      <VERS vnumber=\"37\">And she said unto her father, Let this thing be done for me: let me alone two months, that I may depart and go down upon the mountains, and bewail my virginity, I and my companions.</VERS>\r\n      <VERS vnumber=\"38\">And he said, Go. And he sent her away for two months: and she departed, she and her companions, and bewailed her virginity upon the mountains.</VERS>\r\n      <VERS vnumber=\"39\">And 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 not man. And it was a custom in Israel,</VERS>\r\n      <VERS vnumber=\"40\">that the daughters of Israel went yearly to celebrate the daughter of Jephthah the Gileadite four days in a year.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">And the men of Ephraim were gathered together, and passed northward; and they 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 thy house upon thee with fire.</VERS>\r\n      <VERS vnumber=\"2\">And Jephthah said unto them, I and my people were at great strife with the children of Ammon; and when I called you, ye saved me not out of their hand.</VERS>\r\n      <VERS vnumber=\"3\">And when I saw that ye saved me not, I put my life in my hand, and passed over against the children of Ammon, and Jehovah delivered them into my hand: wherefore then are ye come up unto me this day, to fight against me?</VERS>\r\n      <VERS vnumber=\"4\">Then Jephthah gathered together all the men of Gilead, and fought with Ephraim; and the men of Gilead smote Ephraim, because they said, Ye are fugitives of Ephraim, ye Gileadites, in the midst of Ephraim, [and] in the midst of Manasseh.</VERS>\r\n      <VERS vnumber=\"5\">And the Gileadites took the fords of the Jordan against the Ephraimites. And it was so, that, when [any of] the fugitives of Ephraim said, Let me go over, the men of Gilead said unto him, Art thou an Ephraimite? If he said, Nay;</VERS>\r\n      <VERS vnumber=\"6\">then said they unto him, Say now Shibboleth; and he said Sibboleth; for he could not frame to pronounce it right: then they laid hold on him, and slew him at the fords of the Jordan. And there fell at that time of Ephraim forty and two thousand.</VERS>\r\n      <VERS vnumber=\"7\">And Jephthah judged Israel six years. Then died Jephthah the Gileadite, and was buried in [one of] the cities of Gilead.</VERS>\r\n      <VERS vnumber=\"8\">And after him Ibzan of Beth-lehem judged Israel.</VERS>\r\n      <VERS vnumber=\"9\">And he had thirty sons; and thirty daughters he sent abroad, and thirty daughters he brought in from abroad for his sons. And he judged Israel seven years.</VERS>\r\n      <VERS vnumber=\"10\">And Ibzan died, and was buried at Beth-lehem.</VERS>\r\n      <VERS vnumber=\"11\">And after him Elon the Zebulunite judged Israel; and he judged Israel ten years.</VERS>\r\n      <VERS vnumber=\"12\">And Elon the Zebulunite died, and was buried in Aijalon in the land of Zebulun.</VERS>\r\n      <VERS vnumber=\"13\">And after him Abdon the son of Hillel the Pirathonite judged Israel.</VERS>\r\n      <VERS vnumber=\"14\">And he had forty sons and thirty sons` sons, that rode on threescore and ten ass colts: and he judged Israel eight years.</VERS>\r\n      <VERS vnumber=\"15\">And Abdon the son of Hillel the Pirathonite died, and was buried in Pirathon in the land of Ephraim, in the hill-country of the Amalekites.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">And the children of Israel again did that which was evil in the sight of Jehovah; and Jehovah delivered them into the hand of the Philistines forty years.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And the angel of Jehovah appeared unto the woman, and said unto her, Behold now, thou art barren, and bearest not; but thou shalt conceive, and bear a son.</VERS>\r\n      <VERS vnumber=\"4\">Now therefore beware, I pray thee, and drink no wine nor strong drink, and eat not any unclean thing:</VERS>\r\n      <VERS vnumber=\"5\">for, lo, thou shalt conceive, and bear a son; and no razor shall come upon his head; for the child shall be a Nazirite unto God from the womb: and he shall begin to save Israel out of the hand of the Philistines.</VERS>\r\n      <VERS vnumber=\"6\">Then the woman came and told her husband, saying, A man of God came unto me, and his countenance was like the countenance of the angel of God, very terrible; and I asked him not whence he was, neither told he me his name:</VERS>\r\n      <VERS vnumber=\"7\">but he said unto me, Behold, thou shalt conceive, and bear a son; and now drink no wine nor strong drink, and eat not any unclean thing; for the child shall be a Nazirite unto God from the womb to the day of his death.</VERS>\r\n      <VERS vnumber=\"8\">Then Manoah entreated Jehovah, and said, Oh, Lord, I pray thee, let the man of God whom thou didst send come again unto us, and teach us what we shall do unto the child that shall be born.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And the woman made haste, and ran, and told her husband, and said unto him, Behold, the man hath appeared unto me, that came unto me the [other] day.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And Manoah said, Now let thy words come to pass: what shall be the ordering of the child, and [how] shall we do unto him?</VERS>\r\n      <VERS vnumber=\"13\">And the angel of Jehovah said unto Manoah, Of all that I said unto the woman let her beware.</VERS>\r\n      <VERS vnumber=\"14\">She may not eat of anything 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.</VERS>\r\n      <VERS vnumber=\"15\">And Manoah said unto the angel of Jehovah, I pray thee, let us detain thee, that we may make ready a kid for thee.</VERS>\r\n      <VERS vnumber=\"16\">And the angel of Jehovah said unto Manoah, Though thou detain me, I will not eat of thy bread; and if thou wilt make ready a burnt-offering, thou must offer it unto Jehovah. For Manoah knew not that he was the angel of Jehovah.</VERS>\r\n      <VERS vnumber=\"17\">And Manoah said unto the angel of Jehovah, What is thy name, that, when thy words come to pass, we may do thee honor?</VERS>\r\n      <VERS vnumber=\"18\">And the angel of Jehovah said unto him, Wherefore askest thou after my name, seeing it is wonderful?</VERS>\r\n      <VERS vnumber=\"19\">So Manoah took the kid with the meal-offering, and offered it upon the rock unto Jehovah: and [the angel] did wondrously, and Manoah and his wife looked on.</VERS>\r\n      <VERS vnumber=\"20\">For it came to pass, when the flame went up toward heaven from off the altar, that the angel of Jehovah ascended in the flame of the altar: and Manoah and his wife looked on; and they fell on their faces to the ground.</VERS>\r\n      <VERS vnumber=\"21\">But the angel of Jehovah did no more appear to Manoah or to his wife. Then Manoah knew that he was the angel of Jehovah.</VERS>\r\n      <VERS vnumber=\"22\">And Manoah said unto his wife, We shall surely die, because we have seen God.</VERS>\r\n      <VERS vnumber=\"23\">But his wife said unto him, If Jehovah were pleased to kill us, he would not have received a burnt-offering and a meal-offering at our hand, neither would he have showed us all these things, nor would at this time have told such things as these.</VERS>\r\n      <VERS vnumber=\"24\">And the woman bare a son, and called his name Samson: and the child grew, and Jehovah blessed him.</VERS>\r\n      <VERS vnumber=\"25\">And the Spirit of Jehovah began to move him in Mahaneh-dan, between Zorah and Eshtaol.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">And Samson went down to Timnah, and saw a woman in Timnah of the daughters of the Philistines.</VERS>\r\n      <VERS vnumber=\"2\">And he came up, and told his father and his mother, and said, I have seen a woman in Timnah of the daughters of the Philistines: now therefore get her for me to wife.</VERS>\r\n      <VERS vnumber=\"3\">Then 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.</VERS>\r\n      <VERS vnumber=\"4\">But his father and his mother knew not that it was of Jehovah; for he sought an occasion against the Philistines. Now at that time the Philistines had rule over Israel.</VERS>\r\n      <VERS vnumber=\"5\">Then went Samson down, and his father and his mother, to Timnah, and came to the vineyards of Timnah: and, behold, a young lion roared against him.</VERS>\r\n      <VERS vnumber=\"6\">And the Spirit of Jehovah 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.</VERS>\r\n      <VERS vnumber=\"7\">And he went down, and talked with the woman, and she pleased Samson well.</VERS>\r\n      <VERS vnumber=\"8\">And after a while he returned to take her; and he turned aside to see the carcass of the lion: and, behold, there was a swarm of bees in the body of the lion, and honey.</VERS>\r\n      <VERS vnumber=\"9\">And he took it into his hands, and went on, eating as he went; and he came to his father and mother, and gave unto them, and they did eat: but he told them not that he had taken the honey out of the body of the lion.</VERS>\r\n      <VERS vnumber=\"10\">And his father went down unto the woman: and Samson made there a feast; for so used the young men to do.</VERS>\r\n      <VERS vnumber=\"11\">And it came to pass, when they saw him, that they brought thirty companions to be with him.</VERS>\r\n      <VERS vnumber=\"12\">And Samson said unto them, Let me now put forth a riddle unto you: if ye can declare it unto me within the seven days of the feast, and find it out, then I will give you thirty linen garments and thirty changes of raiment;</VERS>\r\n      <VERS vnumber=\"13\">but if ye cannot declare it unto me, then shall ye give me thirty linen garments and thirty changes of raiment. And they said unto him, Put forth thy riddle, that we may hear it.</VERS>\r\n      <VERS vnumber=\"14\">And he said unto them, Out of the eater came forth food, And out of the strong came forth sweetness.     And they could not in three days declare the riddle.</VERS>\r\n      <VERS vnumber=\"15\">And 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 impoverish us? is it not [so]?</VERS>\r\n      <VERS vnumber=\"16\">And 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 thee?</VERS>\r\n      <VERS vnumber=\"17\">And 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 pressed him sore; and she told the riddle to the children of her people.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And the Spirit of Jehovah came mightily upon him, and he went down to Ashkelon, and smote thirty men of them, and took their spoil, and gave the changes [of raiment] unto them that declared the riddle. And his anger was kindled, and he went up to his father`s house.</VERS>\r\n      <VERS vnumber=\"20\">But Samson`s wife was [given] to his companion, whom he had used as his friend.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">But it came to pass after a while, 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And Samson said unto them, This time shall I be blameless in regard of the Philistines, when I do them a mischief.</VERS>\r\n      <VERS vnumber=\"4\">And Samson went and caught three hundred foxes, and took firebrands, and turned tail to tail, and put a firebrand in the midst between every two tails.</VERS>\r\n      <VERS vnumber=\"5\">And when he had set the brands on fire, he let them go into the standing grain of the Philistines, and burnt up both the shocks and the standing grain, and also the oliveyards.</VERS>\r\n      <VERS vnumber=\"6\">Then the Philistines said, Who hath done this? And they said, Samson, the son-in-law of the Timnite, because he hath taken his wife, and given her to his companion. And the Philistines came up, and burnt her and her father with fire.</VERS>\r\n      <VERS vnumber=\"7\">And Samson said unto them, If ye do after this manner, surely I will be avenged of you, and after that I will cease.</VERS>\r\n      <VERS vnumber=\"8\">And he smote them hip and thigh with a great slaughter: and he went down and dwelt in the cleft of the rock of Etam.</VERS>\r\n      <VERS vnumber=\"9\">Then the Philistines went up, and encamped in Judah, and spread themselves in Lehi.</VERS>\r\n      <VERS vnumber=\"10\">And the men of Judah said, Why are ye come up against us? And they said, To bind Samson are we come up, to do to him as he hath done to us.</VERS>\r\n      <VERS vnumber=\"11\">Then three thousand men of Judah went down to the cleft of the rock of Etam, and said to Samson, Knowest thou not that the Philistines are rulers over us? what then is this that thou hast done unto us? And he said unto them, As they did unto me, so have I done unto them.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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 ropes, and brought him up from the rock.</VERS>\r\n      <VERS vnumber=\"14\">When he came unto Lehi, the Philistines shouted as they met him: and the Spirit of Jehovah came mightily upon him, and the ropes that were upon his arms became as flax that was burnt with fire, and his bands dropped from off his hands.</VERS>\r\n      <VERS vnumber=\"15\">And he found a fresh jawbone of an ass, and put forth his hand, and took it, and smote a thousand men therewith.</VERS>\r\n      <VERS vnumber=\"16\">And Samson said, With the jawbone of an ass, heaps upon heaps, With the jawbone of an ass have I smitten a thousand men.</VERS>\r\n      <VERS vnumber=\"17\">And it came to pass, when he had made an end of speaking, that he cast away the jawbone out of his hand; and that place was called Ramath-lehi.</VERS>\r\n      <VERS vnumber=\"18\">And he was sore athirst, and called on Jehovah, and said, Thou hast given this great deliverance by the hand of thy servant; and now shall I die for thirst, and fall into the hand of the uncircumcised.</VERS>\r\n      <VERS vnumber=\"19\">But God clave the hollow place that is in Lehi, and there came water thereout; and when he had drunk, his spirit came again, and he revived: wherefore the name thereof was called En-hakkore, which is in Lehi, unto this day.</VERS>\r\n      <VERS vnumber=\"20\">And he judged Israel in the days of the Philistines twenty years.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">And Samson went to Gaza, and saw there a harlot, and went in unto her.</VERS>\r\n      <VERS vnumber=\"2\">[And 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, [Let be] till morning light, then we will kill him.</VERS>\r\n      <VERS vnumber=\"3\">And Samson lay till midnight, and arose at midnight, and laid hold of the doors of the gate of the city, and the two posts, and plucked them up, bar and all, and put them upon his shoulders, and carried them up to the top of the mountain that is before Hebron.</VERS>\r\n      <VERS vnumber=\"4\">And it came to pass afterward, that he loved a woman in the valley of Sorek, whose name was Delilah.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And Delilah said to Samson, Tell me, I pray thee, wherein thy great strength lieth, and wherewith thou mightest be bound to afflict thee.</VERS>\r\n      <VERS vnumber=\"7\">And Samson said unto her, If they bind me with seven green withes that were never dried, then shall I become weak, and be as another man.</VERS>\r\n      <VERS vnumber=\"8\">Then the lords of the Philistines brought up to her seven green withes which had not been dried, and she bound him with them.</VERS>\r\n      <VERS vnumber=\"9\">Now she had liers-in-wait abiding in the inner chamber. And she said unto him, The Philistines are upon thee, Samson. And he brake the withes, as a string of tow is broken when it toucheth the fire. So his strength was not known.</VERS>\r\n      <VERS vnumber=\"10\">And Delilah said unto Samson, Behold, thou hast mocked me, and told me lies: now tell me, I pray thee, wherewith thou mightest be bound.</VERS>\r\n      <VERS vnumber=\"11\">And he said unto her, If they only bind me with new ropes wherewith no work hath been done, then shall I become weak, and be as another man.</VERS>\r\n      <VERS vnumber=\"12\">So Delilah took new ropes, and bound him therewith, and said unto him, The Philistines are upon thee, Samson. And the liers-in-wait were abiding in the inner chamber. And he brake them off his arms like a thread.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And she fastened it with the pin, and said unto him, The Philistines are upon thee, Samson. And he awaked out of his sleep, and plucked away the pin of the beam, and the web.</VERS>\r\n      <VERS vnumber=\"15\">And she said unto him, How canst thou say, I love thee, when thy heart is not with me? thou hast mocked me these three times, and hast not told me wherein thy great strength lieth.</VERS>\r\n      <VERS vnumber=\"16\">And it came to pass, when she pressed him daily with her words, and urged him, that his soul was vexed unto death.</VERS>\r\n      <VERS vnumber=\"17\">And he told her all his heart, and said unto her, There hath not come a razor upon my head; for I have been a Nazirite 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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 told me all his heart. Then the lords of the Philistines came up unto her, and brought the money in their hand.</VERS>\r\n      <VERS vnumber=\"19\">And she made him sleep upon her knees; and she called for a man, and shaved off the seven locks of his head; and she began to afflict him, and his strength went from him.</VERS>\r\n      <VERS vnumber=\"20\">And she said, The Philistines are upon thee, Samson. And he awoke out of his sleep, and said, I will go out as at other times, and shake myself free. But he knew not that Jehovah was departed from him.</VERS>\r\n      <VERS vnumber=\"21\">And the Philistines laid hold on him, and put out his eyes; and they brought him down to Gaza, and bound him with fetters of brass; and he did grind in the prison-house.</VERS>\r\n      <VERS vnumber=\"22\">Howbeit the hair of his head began to grow again after he was shaven.</VERS>\r\n      <VERS vnumber=\"23\">And the lords of the Philistines gathered them together 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.</VERS>\r\n      <VERS vnumber=\"24\">And when the people saw him, they praised their god; for they said, Our god hath delivered into our hand our enemy, and the destroyer of our country, who hath slain many of us.</VERS>\r\n      <VERS vnumber=\"25\">And 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 sport before them. And they set him between the pillars:</VERS>\r\n      <VERS vnumber=\"26\">and Samson said unto the lad that held him by the hand, Suffer me that I may feel the pillars whereupon the house resteth, that I may lean upon them.</VERS>\r\n      <VERS vnumber=\"27\">Now 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.</VERS>\r\n      <VERS vnumber=\"28\">And Samson called unto Jehovah, and said, O Lord Jehovah, 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.</VERS>\r\n      <VERS vnumber=\"29\">And Samson took hold of the two middle pillars upon which the house rested, and leaned upon them, the one with his right hand, and the other with his left.</VERS>\r\n      <VERS vnumber=\"30\">And 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 that he slew at his death were more than they that he slew in his life.</VERS>\r\n      <VERS vnumber=\"31\">Then 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 burying-place of Manoah his father. And he judged Israel twenty years.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"17\">\r\n      <VERS vnumber=\"1\">And there was a man of the hill-country of Ephraim, whose name was Micah.</VERS>\r\n      <VERS vnumber=\"2\">And he said unto his mother, The eleven hundred [pieces] of silver that were taken from thee, about which thou didst utter a curse, and didst also speak it in mine ears, behold, the silver is with me; I took it. And his mother said, Blessed be my son of Jehovah.</VERS>\r\n      <VERS vnumber=\"3\">And he restored the eleven hundred [pieces] of silver to his mother; and his mother said, I verily dedicate the silver unto Jehovah from my hand for my son, to make a graven image and a molten image: now therefore I will restore it unto thee.</VERS>\r\n      <VERS vnumber=\"4\">And when he restored the money unto his mother, his mother took two hundred [pieces] of silver, and gave them to the founder, who made thereof a graven image and a molten image: and it was in the house of Micah.</VERS>\r\n      <VERS vnumber=\"5\">And the man Micah had a house of gods, and he made an ephod, and teraphim, and consecrated one of his sons, who became his priest.</VERS>\r\n      <VERS vnumber=\"6\">In those days there was no king in Israel: every man did that which was right in his own eyes.</VERS>\r\n      <VERS vnumber=\"7\">And there was a young man out of Beth-lehem-judah, of the family of Judah, who was a Levite; and he sojourned there.</VERS>\r\n      <VERS vnumber=\"8\">And the man departed out of the city, out of Beth-lehem-judah, to sojourn where he could find [a place], and he came to the hill-country of Ephraim to the house of Micah, as he journeyed.</VERS>\r\n      <VERS vnumber=\"9\">And Micah said unto him, Whence comest thou? And he said unto him, I am a Levite of Beth-lehem-judah, and I go to sojourn where I may find [a place].</VERS>\r\n      <VERS vnumber=\"10\">And Micah said unto him, Dwell with me, and be unto me a father and a priest, and I will give thee ten [pieces] of silver by the year, and a suit of apparel, and thy victuals. So the Levite went in.</VERS>\r\n      <VERS vnumber=\"11\">And the Levite was content to dwell with the man; and the young man was unto him as one of his sons.</VERS>\r\n      <VERS vnumber=\"12\">And Micah consecrated the Levite, and the young man became his priest, and was in the house of Micah.</VERS>\r\n      <VERS vnumber=\"13\">Then said Micah, Now know I that Jehovah will do me good, seeing I have a Levite to my priest.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"18\">\r\n      <VERS vnumber=\"1\">In 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 [their] inheritance had not fallen unto them among the tribes of Israel.</VERS>\r\n      <VERS vnumber=\"2\">And the children of Dan sent of their family five men from their whole number, men of valor, from Zorah, and from Eshtaol, to spy out the land, and to search it; and they said unto them, Go, search the land. And they came to the hill-country of Ephraim, unto the house of Micah, and lodged there.</VERS>\r\n      <VERS vnumber=\"3\">When they were by the house of Micah, they knew the voice of the young man the Levite; and they turned aside thither, and said unto him, Who brought thee hither? and what doest thou in this place? and what hast thou here?</VERS>\r\n      <VERS vnumber=\"4\">And he said unto them, Thus and thus hath Micah dealt with me, and he hath hired me, and I am become his priest.</VERS>\r\n      <VERS vnumber=\"5\">And they said unto him, Ask counsel, we pray thee, of God, that we may know whether our way which we go shall be prosperous.</VERS>\r\n      <VERS vnumber=\"6\">And the priest said unto them, Go in peace: before Jehovah is your way wherein ye go.</VERS>\r\n      <VERS vnumber=\"7\">Then the five men departed, and came to Laish, and saw the people that were therein, how they dwelt in security, after the manner of the Sidonians, quiet and secure; for there was none in the land, possessing authority, that might put [them] to shame in anything, and they were far from the Sidonians, and had no dealings with any man.</VERS>\r\n      <VERS vnumber=\"8\">And they came unto their brethren to Zorah and Eshtaol: and their brethren said unto them, What [say] ye?</VERS>\r\n      <VERS vnumber=\"9\">And they said, Arise, and let us 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 in to possess the land.</VERS>\r\n      <VERS vnumber=\"10\">When ye go, ye shall come unto a people secure, and the land is large; for God hath given it into your hand, a place where there is no want of anything that is in the earth.</VERS>\r\n      <VERS vnumber=\"11\">And there set forth from thence of the family of the Danites, out of Zorah and out of Eshtaol, six hundred men girt with weapons of war.</VERS>\r\n      <VERS vnumber=\"12\">And they went up, and encamped in Kiriath-jearim, in Judah: wherefore they called that place Mahaneh-dan, unto this day; behold, it is behind Kiriath-jearim.</VERS>\r\n      <VERS vnumber=\"13\">And they passed thence unto the hill-country of Ephraim, and came unto the house of Micah.</VERS>\r\n      <VERS vnumber=\"14\">Then 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.</VERS>\r\n      <VERS vnumber=\"15\">And they turned aside thither, and came to the house of the young man the Levite, even unto the house of Micah, and asked him of his welfare.</VERS>\r\n      <VERS vnumber=\"16\">And the six hundred men girt with their weapons of war, who were of the children of Dan, stood by the entrance of the gate.</VERS>\r\n      <VERS vnumber=\"17\">And 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 by the entrance of the gate with the six hundred men girt with weapons of war.</VERS>\r\n      <VERS vnumber=\"18\">And when these went into Micah`s house, and fetched the graven image, the ephod, and the teraphim, and the molten image, the priest said unto them, What do ye?</VERS>\r\n      <VERS vnumber=\"19\">And they said unto him, Hold thy peace, lay thy hand upon thy mouth, and go with us, and be to us a father and a priest: is it better for thee to be priest unto the house of one man, or to be priest unto a tribe and a family in Israel?</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">So they turned and departed, and put the little ones and the cattle and the goods before them.</VERS>\r\n      <VERS vnumber=\"22\">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.</VERS>\r\n      <VERS vnumber=\"23\">And 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?</VERS>\r\n      <VERS vnumber=\"24\">And he said, ye have taken away my gods which I made, and the priest, and are gone away, and what have I more? and how then say ye unto me, What aileth thee?</VERS>\r\n      <VERS vnumber=\"25\">And the children of Dan said unto him, Let not thy voice be heard among us, lest angry fellows fall upon you, and thou lose thy life, with the lives of thy household.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And they took that which Micah had made, and the priest whom he had, and came unto Laish, unto a people quiet and secure, and smote them with the edge of the sword; and they burnt the city with fire.</VERS>\r\n      <VERS vnumber=\"28\">And there was no deliverer, because it was far from Sidon, and they had no dealings with any man; and it was in the valley that lieth by Beth-rehob. And they built the city, and dwelt therein.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">And the children of Dan set up for themselves the graven image: and Jonathan, the son of Gershom, the son of Moses, he and his sons were priests to the tribe of the Danites until the day of the captivity of the land.</VERS>\r\n      <VERS vnumber=\"31\">So they set them up Micah`s graven image which he made, all the time that the house of God was in Shiloh.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"19\">\r\n      <VERS vnumber=\"1\">And it came to pass in those days, when there was no king in Israel, that there was a certain Levite sojourning on the farther side of the hill-country of Ephraim, who took to him a concubine out of Beth-lehem-judah.</VERS>\r\n      <VERS vnumber=\"2\">And his concubine played the harlot against him, and went away from him unto her father`s house to Beth-lehem-judah, and was there the space of four months.</VERS>\r\n      <VERS vnumber=\"3\">And her husband arose, and went after her, to speak kindly unto her, 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And it came to pass on the fourth day, that they arose early in the morning, and he rose up to depart: and the damsel`s father said unto his son-in-law, Strengthen thy heart with a morsel of bread, and afterward ye shall go your way.</VERS>\r\n      <VERS vnumber=\"6\">So they sat down, and did eat and drink, both of them together: and the damsel`s father said unto the man, Be pleased, I pray thee, to tarry all night, and let thy heart be merry.</VERS>\r\n      <VERS vnumber=\"7\">And the man rose up to depart; but his father-in-law urged him, and he lodged there again.</VERS>\r\n      <VERS vnumber=\"8\">And he arose early in the morning on the fifth day to depart; and the damsel`s father said, Strengthen thy heart, I pray thee, and tarry ye until the day declineth; and they did eat, both of them.</VERS>\r\n      <VERS vnumber=\"9\">And 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 thy heart may be merry; and to-morrow get you early on your way, that thou mayest go home.</VERS>\r\n      <VERS vnumber=\"10\">But the man would not tarry that night, but he rose up and departed, and came over against Jebus (the same is Jerusalem): and there were with him a couple of asses saddled; his concubine also was with him.</VERS>\r\n      <VERS vnumber=\"11\">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 aside into this city of the Jebusites, and lodge in it.</VERS>\r\n      <VERS vnumber=\"12\">And his master said unto him, We will not turn aside into the city of a foreigner, that is not of the children of Israel; but we will pass over to Gibeah.</VERS>\r\n      <VERS vnumber=\"13\">And he said unto his servant, Come and let us draw near to one of these places; and we will lodge in Gibeah, or in Ramah.</VERS>\r\n      <VERS vnumber=\"14\">So they passed on and went their way; and the sun went down upon them near to Gibeah, which belongeth to Benjamin.</VERS>\r\n      <VERS vnumber=\"15\">And they turned aside thither, to go in to lodge in Gibeah: and he went in, and sat him down in the street of the city; for there was no man that took them into his house to lodge.</VERS>\r\n      <VERS vnumber=\"16\">And, behold, there came an old man from his work out of the field at even: now the man was of the hill-country of Ephraim, and he sojourned in Gibeah; but the men of the place were Benjamites.</VERS>\r\n      <VERS vnumber=\"17\">And he lifted up his eyes, and saw the wayfaring man in the street of the city; and the old man said, Whither goest thou? and whence comest thou?</VERS>\r\n      <VERS vnumber=\"18\">And he said unto him, We are passing from Beth-lehem-judah unto the farther side of the hill-country of Ephraim; from thence am I, and I went to Beth-lehem-judah: and I am [now] going to the house of Jehovah; and there is no man that taketh me into his house.</VERS>\r\n      <VERS vnumber=\"19\">Yet 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 that is with thy servants: there is no want of anything.</VERS>\r\n      <VERS vnumber=\"20\">And the old man said, Peace be unto thee; howsoever let all thy wants lie upon me; only lodge not in the street.</VERS>\r\n      <VERS vnumber=\"21\">So he brought him into his house, and gave the asses fodder; and they washed their feet, and did eat and drink.</VERS>\r\n      <VERS vnumber=\"22\">As they were making their hearts merry, behold, the men of the city, certain base fellows, beset the house round about, beating at the door; and they spake to the master of the house, the old man, saying, Bring forth the man that came into thy house, that we may know him.</VERS>\r\n      <VERS vnumber=\"23\">And the man, the master of the house, went out unto them, and said unto them, Nay, my brethren, I pray you, do not so wickedly; seeing that this man is come into my house, do not this folly.</VERS>\r\n      <VERS vnumber=\"24\">Behold, here is my daughter a virgin, 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 any such folly.</VERS>\r\n      <VERS vnumber=\"25\">But the men would not hearken to him: so the man laid hold on 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.</VERS>\r\n      <VERS vnumber=\"26\">Then 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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, with her hands upon the threshold.</VERS>\r\n      <VERS vnumber=\"28\">And he said unto her, Up, and let us be going; but none answered: then he took her up upon the ass; and the man rose up, and gat him unto his place.</VERS>\r\n      <VERS vnumber=\"29\">And when he was come into his house, he took a knife, and laid hold on his concubine, and divided her, limb by limb, into twelve pieces, and sent her throughout all the borders of Israel.</VERS>\r\n      <VERS vnumber=\"30\">And 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 it, take counsel, and speak.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"20\">\r\n      <VERS vnumber=\"1\">Then all the children of Israel went out, and the congregation was assembled as one man, from Dan even to Beer-sheba, with the land of Gilead, unto Jehovah at Mizpah.</VERS>\r\n      <VERS vnumber=\"2\">And the chiefs 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.</VERS>\r\n      <VERS vnumber=\"3\">(Now the children of Benjamin heard that the children of Israel were gone up to Mizpah.) And the children of Israel said, Tell us, how was this wickedness brought to pass?</VERS>\r\n      <VERS vnumber=\"4\">And the Levite, the husband of the woman that was murdered, answered and said, I came into Gibeah that belongeth to Benjamin, I and my concubine, to lodge.</VERS>\r\n      <VERS vnumber=\"5\">And the men of Gibeah rose against me, and beset the house round about me by night; me they thought to have slain, and my concubine they forced, and she is dead.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">Behold, ye children of Israel, all of you, give here your advice and counsel.</VERS>\r\n      <VERS vnumber=\"8\">And 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 unto his house.</VERS>\r\n      <VERS vnumber=\"9\">But now this is the thing which we will do to Gibeah: [we will go up] against it by lot;</VERS>\r\n      <VERS vnumber=\"10\">and we will take ten men of a hundred throughout all the tribes of Israel, and a hundred of a thousand, and a thousand out of ten thousand, to fetch victuals 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.</VERS>\r\n      <VERS vnumber=\"11\">So all the men of Israel were gathered against the city, knit together as one man.</VERS>\r\n      <VERS vnumber=\"12\">And the tribes of Israel sent men through all the tribe of Benjamin, saying, What wickedness is this that is come to pass among you?</VERS>\r\n      <VERS vnumber=\"13\">Now therefore deliver up the men, the base fellows, that are in Gibeah, that we may put them to death, and put away evil from Israel. But Benjamin would not hearken to the voice of their brethren the children of Israel.</VERS>\r\n      <VERS vnumber=\"14\">And the children of Benjamin gathered themselves together out of the cities unto Gibeah, to go out to battle against the children of Israel.</VERS>\r\n      <VERS vnumber=\"15\">And the children of Benjamin were numbered on that day out of the cities twenty and six thousand men that drew sword, besides the inhabitants of Gibeah, who were numbered seven hundred chosen men.</VERS>\r\n      <VERS vnumber=\"16\">Among all this people there were seven hundred chosen men lefthanded; every one could sling stones at a hair-breadth, and not miss.</VERS>\r\n      <VERS vnumber=\"17\">And the men of Israel, besides Benjamin, were numbered four hundred thousand men that drew sword: all these were men of war.</VERS>\r\n      <VERS vnumber=\"18\">And the children of Israel arose, and went up to Beth-el, and asked counsel of God; and they said, Who shall go up for us first to battle against the children of Benjamin? And Jehovah said, Judah [shall go up] first.</VERS>\r\n      <VERS vnumber=\"19\">And the children of Israel rose up in the morning, and encamped against Gibeah.</VERS>\r\n      <VERS vnumber=\"20\">And the men of Israel went out to battle against Benjamin; and the men of Israel set the battle in array against them at Gibeah.</VERS>\r\n      <VERS vnumber=\"21\">And the children of Benjamin came forth out of Gibeah, and destroyed down to the ground of the Israelites on that day twenty and two thousand men.</VERS>\r\n      <VERS vnumber=\"22\">And the people, the men of Israel, encouraged themselves, and set the battle again in array in the place where they set themselves in array the first day.</VERS>\r\n      <VERS vnumber=\"23\">And the children of Israel went up and wept before Jehovah until even; and they asked of Jehovah, saying, Shall I again draw nigh to battle against the children of Benjamin my brother? And Jehovah said, Go up against him.</VERS>\r\n      <VERS vnumber=\"24\">And the children of Israel came near against the children of Benjamin the second day.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">Then all the children of Israel, and all the people, went up, and came unto Beth-el, and wept, and sat there before Jehovah, and fasted that day until even; and they offered burnt-offerings and peace-offerings before Jehovah.</VERS>\r\n      <VERS vnumber=\"27\">And the children of Israel asked of Jehovah (for the ark of the covenant of God was there in those days,</VERS>\r\n      <VERS vnumber=\"28\">and 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 Jehovah said, Go up; for to-morrow I will deliver him into thy hand.</VERS>\r\n      <VERS vnumber=\"29\">And Israel set liers-in-wait against Gibeah round about.</VERS>\r\n      <VERS vnumber=\"30\">And the children of Israel went up against the children of Benjamin on the third day, and set themselves in array against Gibeah, as at other times.</VERS>\r\n      <VERS vnumber=\"31\">And the children of Benjamin went out against the people, and were drawn away from the city; and they began to smite and kill of the people, as at other times, in the highways, of which one goeth up to Beth-el, and the other to Gibeah, in the field, about thirty men of Israel.</VERS>\r\n      <VERS vnumber=\"32\">And 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 away from the city unto the highways.</VERS>\r\n      <VERS vnumber=\"33\">And all the men of Israel rose up out of their place, and set themselves in array at Baal-tamar: and the liers-in-wait of Israel brake forth out of their place, even out of Maareh-geba.</VERS>\r\n      <VERS vnumber=\"34\">And there came over against Gibeah ten thousand chosen men out of all Israel, and the battle was sore; but they knew not that evil was close upon them.</VERS>\r\n      <VERS vnumber=\"35\">And Jehovah smote Benjamin before Israel; and the children of Israel destroyed of Benjamin that day twenty and five thousand and a hundred men: all these drew the sword.</VERS>\r\n      <VERS vnumber=\"36\">So the children of Benjamin saw that they were smitten; for the men of Israel gave place to Benjamin, because they trusted unto the liers-in-wait whom they had set against Gibeah.</VERS>\r\n      <VERS vnumber=\"37\">And 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.</VERS>\r\n      <VERS vnumber=\"38\">Now the appointed sign between the men of Israel and the liers-in-wait was, that they should make a great cloud of smoke rise up out of the city.</VERS>\r\n      <VERS vnumber=\"39\">And the men of Israel turned in the battle, and 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.</VERS>\r\n      <VERS vnumber=\"40\">But when the cloud began to arise up out of the city in a pillar of smoke, the Benjamites looked behind them; and, behold, the whole of the city went up [in smoke] to heaven.</VERS>\r\n      <VERS vnumber=\"41\">And the men of Israel turned, and the men of Benjamin were dismayed; for they saw that evil was come upon them.</VERS>\r\n      <VERS vnumber=\"42\">Therefore they turned their backs before the men of Israel unto the way of the wilderness; but the battle followed hard after them; and they that came out of the cities destroyed them in the midst thereof.</VERS>\r\n      <VERS vnumber=\"43\">They inclosed the Benjamites round about, [and] chased them, [and] trod them down at [their] resting-place, as far as over against Gibeah toward the sunrising.</VERS>\r\n      <VERS vnumber=\"44\">And there fell of Benjamin eighteen thousand men; all these [were] men of valor.</VERS>\r\n      <VERS vnumber=\"45\">And they turned and fled toward the wilderness unto the rock of Rimmon: and they gleaned of them in the highways five thousand men, and followed hard after them unto Gidom, and smote of them two thousand men.</VERS>\r\n      <VERS vnumber=\"46\">So that all who fell that day of Benjamin were twenty and five thousand men that drew the sword; all these [were] men of valor.</VERS>\r\n      <VERS vnumber=\"47\">But six hundred men turned and fled toward the wilderness unto the rock of Rimmon, and abode in the rock of Rimmon four months.</VERS>\r\n      <VERS vnumber=\"48\">And the men of Israel turned again upon the children of Benjamin, and smote them with the edge of the sword, both the entire city, and the cattle, and all that they found: moreover all the cities which they found they set on fire.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"21\">\r\n      <VERS vnumber=\"1\">Now the men of Israel had sworn in Mizpah, saying, There shall not any of us give his daughter unto Benjamin to wife.</VERS>\r\n      <VERS vnumber=\"2\">And the people came to Beth-el, and sat there till even before God, and lifted up their voices, and wept sore.</VERS>\r\n      <VERS vnumber=\"3\">And they said, O Jehovah, the God of Israel, why is this come to pass in Israel, that there should be to-day one tribe lacking in Israel?</VERS>\r\n      <VERS vnumber=\"4\">And it came to pass on the morrow, that the people rose early, and built there an altar, and offered burnt-offerings and peace-offerings.</VERS>\r\n      <VERS vnumber=\"5\">And the children of Israel said, Who is there among all the tribes of Israel that came not up in the assembly unto Jehovah? For they had made a great oath concerning him that came not up unto Jehovah to Mizpah, saying, He shall surely be put to death.</VERS>\r\n      <VERS vnumber=\"6\">And the children of Israel repented them for Benjamin their brother, and said, There is one tribe cut off from Israel this day.</VERS>\r\n      <VERS vnumber=\"7\">How shall we do for wives for them that remain, seeing we have sworn by Jehovah that we will not give them of our daughters to wives?</VERS>\r\n      <VERS vnumber=\"8\">And they said, What one is there of the tribes of Israel that came not up unto Jehovah to Mizpah? And, behold, there came none to the camp from Jabesh-gilead to the assembly.</VERS>\r\n      <VERS vnumber=\"9\">For when the people were numbered, behold, there were none of the inhabitants of Jabesh-gilead there.</VERS>\r\n      <VERS vnumber=\"10\">And the congregation sent thither twelve thousand men of the valiantest, and commanded them, saying, Go and smite the inhabitants of Jabesh-gilead with the edge of the sword, with the women and the little ones.</VERS>\r\n      <VERS vnumber=\"11\">And this is the thing that ye shall do: ye shall utterly destroy every male, and every woman that hath lain by man.</VERS>\r\n      <VERS vnumber=\"12\">And they found among the inhabitants of Jabesh-gilead four hundred young virgins, that had not known man by lying with him; and they brought them unto the camp to Shiloh, which is in the land of Canaan.</VERS>\r\n      <VERS vnumber=\"13\">And the whole congregation sent and spake to the children of Benjamin that were in the rock of Rimmon, and proclaimed peace unto them.</VERS>\r\n      <VERS vnumber=\"14\">And Benjamin returned at that time; and they gave them the women whom they had saved alive of the women of Jabesh-gilead: and yet so they sufficed them not.</VERS>\r\n      <VERS vnumber=\"15\">And the people repented them for Benjamin, because that Jehovah had made a breach in the tribes of Israel.</VERS>\r\n      <VERS vnumber=\"16\">Then the elders of the congregation said, How shall we do for wives for them that remain, seeing the women are destroyed out of Benjamin?</VERS>\r\n      <VERS vnumber=\"17\">And they said, There must be an inheritance for them that are escaped of Benjamin, that a tribe be not blotted out from Israel.</VERS>\r\n      <VERS vnumber=\"18\">Howbeit we may not give them wives of our daughters, for the children of Israel had sworn, saying, Cursed be he that giveth a wife to Benjamin.</VERS>\r\n      <VERS vnumber=\"19\">And they said, Behold, there is a feast of Jehovah from year to year in Shiloh, which is on the north of Beth-el, on the east side of the highway that goeth up from Beth-el to Shechem, and on the south of Lebonah.</VERS>\r\n      <VERS vnumber=\"20\">And they commanded the children of Benjamin, saying, Go and lie in wait in the vineyards,</VERS>\r\n      <VERS vnumber=\"21\">and see, and, behold, if the daughters of Shiloh come out to dance in the 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.</VERS>\r\n      <VERS vnumber=\"22\">And it shall be, when their fathers or their brethren come to complain unto us, that we will say unto them, Grant them graciously unto us, because we took not for each man [of them] his wife in battle, neither did ye give them unto them, else would ye now be guilty.</VERS>\r\n      <VERS vnumber=\"23\">And the children of Benjamin did so, and took them wives, according to their number, of them that danced, whom they carried off: and they went and returned unto their inheritance, and built the cities, and dwelt in them.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">In those days there was no king in Israel: every man did that which was right in his own eyes.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"8\" bname=\"Ruth\" bsname=\"Ruth\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">And it came to pass in the days when the judges judged, that there was a famine in the land. And a certain man of Bethlehem-judah went to sojourn in the country of Moab, he, and his wife, and his two sons.</VERS>\r\n      <VERS vnumber=\"2\">And 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 Bethlehem-judah. And they came into the country of Moab, and continued there.</VERS>\r\n      <VERS vnumber=\"3\">And Elimelech, Naomi`s husband, died; and she was left, and her two sons.</VERS>\r\n      <VERS vnumber=\"4\">And 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 dwelt there about ten years.</VERS>\r\n      <VERS vnumber=\"5\">And Mahlon and Chilion died both of them; and the woman was left of her two children and of her husband.</VERS>\r\n      <VERS vnumber=\"6\">Then 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 Jehovah had visited his people in giving them bread.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And Naomi said unto her two daughters-in-law, Go, return each of you to her mother`s house: Jehovah deal kindly with you, as ye have dealt with the dead, and with me.</VERS>\r\n      <VERS vnumber=\"9\">Jehovah 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.</VERS>\r\n      <VERS vnumber=\"10\">And they said unto her, Nay, but we will return with thee unto thy people.</VERS>\r\n      <VERS vnumber=\"11\">And Naomi said, Turn again, my daughters: why will ye go with me? have I yet sons in my womb, that they may be your husbands?</VERS>\r\n      <VERS vnumber=\"12\">Turn again, my daughters, go your way; for I am too old to have a husband. If I should say, I have hope, if I should even have a husband to-night, and should also bear sons;</VERS>\r\n      <VERS vnumber=\"13\">would ye therefore tarry till they were grown? would ye therefore stay from having husbands? nay, my daughters, for it grieveth me much for your sakes, for the hand of Jehovah is gone forth against me.</VERS>\r\n      <VERS vnumber=\"14\">And they lifted up their voice, and wept again: and Orpah kissed her mother-in-law, but Ruth clave unto her.</VERS>\r\n      <VERS vnumber=\"15\">And she said, Behold, thy sister-in-law is gone back unto her people, and unto her god: return thou after thy sister-in-law.</VERS>\r\n      <VERS vnumber=\"16\">And Ruth said, Entreat me not to leave thee, and 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;</VERS>\r\n      <VERS vnumber=\"17\">where thou diest, will I die, and there will I be buried: Jehovah do so to me, and more also, if aught but death part thee and me.</VERS>\r\n      <VERS vnumber=\"18\">And when she saw that she was stedfastly minded to go with her, she left off speaking unto her.</VERS>\r\n      <VERS vnumber=\"19\">So 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 [the women] said, Is this Naomi?</VERS>\r\n      <VERS vnumber=\"20\">And she said unto them, Call me not Naomi, call me Mara; for the Almighty hath dealt very bitterly with me.</VERS>\r\n      <VERS vnumber=\"21\">I went out full, and Jehovah hath brought me home again empty; why call ye me Naomi, seeing Jehovah hath testified against me, and the Almighty hath afflicted me?</VERS>\r\n      <VERS vnumber=\"22\">So Naomi returned, and Ruth the Moabitess, her daughter-in-law, with her, who returned out of the country of Moab: and they came to Bethlehem in the beginning of barley harvest.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">And Naomi had a kinsman of her husband`s, a mighty man of wealth, of the family of Elimelech, and his name was Boaz.</VERS>\r\n      <VERS vnumber=\"2\">And Ruth the Moabitess said unto Naomi, Let me now go to the field, and glean among the ears of grain after him in whose sight I shall find favor. And she said unto her, Go, my daughter.</VERS>\r\n      <VERS vnumber=\"3\">And she went, and came and gleaned in the field after the reapers: and her hap was to light on the portion of the field belonging unto Boaz, who was of the family of Elimelech.</VERS>\r\n      <VERS vnumber=\"4\">And, behold, Boaz came from Bethlehem, and said unto the reapers, Jehovah be with you. And they answered him, Jehovah bless thee.</VERS>\r\n      <VERS vnumber=\"5\">Then said Boaz unto his servant that was set over the reapers, Whose damsel is this?</VERS>\r\n      <VERS vnumber=\"6\">And 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:</VERS>\r\n      <VERS vnumber=\"7\">And she said, Let me glean, I pray you, and gather after the reapers among the sheaves. So she came, and hath continued even from the morning until now, save that she tarried a little in the house.</VERS>\r\n      <VERS vnumber=\"8\">Then said Boaz unto Ruth, Hearest thou not, my daughter? Go not to glean in another field, neither pass from hence, but abide here fast by my maidens.</VERS>\r\n      <VERS vnumber=\"9\">Let 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.</VERS>\r\n      <VERS vnumber=\"10\">Then she fell on her face, and bowed herself to the ground, and said unto him, Why have I found favor in thy sight, that thou shouldest take knowledge of me, seeing I am a foreigner?</VERS>\r\n      <VERS vnumber=\"11\">And Boaz answered and said unto her, It hath fully been showed me, all that thou hast done unto thy mother-in-law since the death of thy husband; and how thou hast left thy father and thy mother, and the land of thy nativity, and art come unto a people that thou knewest not heretofore.</VERS>\r\n      <VERS vnumber=\"12\">Jehovah recompense thy work, and a full reward be given thee of Jehovah, the God of Israel, under whose wings thou art come to take refuge.</VERS>\r\n      <VERS vnumber=\"13\">Then she said, Let me find favor in thy sight, my lord, for that thou hast comforted me, and for that thou hast spoken kindly unto thy handmaid, though I be not as one of thy handmaidens.</VERS>\r\n      <VERS vnumber=\"14\">And at meal-time Boaz said unto her, Come hither, and eat of the bread, and dip thy morsel in the vinegar. And she sat beside the reapers, and they reached her parched grain, and she did eat, and was sufficed, and left thereof.</VERS>\r\n      <VERS vnumber=\"15\">And when she was risen up to glean, Boaz commanded his young men, saying, Let her glean even among the sheaves, and reproach her not.</VERS>\r\n      <VERS vnumber=\"16\">And also pull out some for her from the bundles, and leave it, and let her glean, and rebuke her not.</VERS>\r\n      <VERS vnumber=\"17\">So she gleaned in the field until even; and she beat out that which she had gleaned, and it was about an ephah of barley.</VERS>\r\n      <VERS vnumber=\"18\">And 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 which she had left after she was sufficed.</VERS>\r\n      <VERS vnumber=\"19\">And her mother-in-law said unto her, Where hast thou gleaned to-day? and where hast thou wrought? blessed be he that did take knowledge of thee. And she showed her mother-in-law with whom she had wrought, and said, The man`s name with whom I wrought to-day is Boaz.</VERS>\r\n      <VERS vnumber=\"20\">And Naomi said unto her daughter-in-law, Blessed be he of Jehovah, who hath not left off his kindness to the living and to the dead. And Naomi said unto her, The man is nigh of kin unto us, one of our near kinsmen.</VERS>\r\n      <VERS vnumber=\"21\">And Ruth the Moabitess said, Yea, he said unto me, Thou shalt keep fast by my young men, until they have ended all my harvest.</VERS>\r\n      <VERS vnumber=\"22\">And Naomi said unto Ruth her daughter-in-law, It is good, my daughter, that thou go out with his maidens, and that they meet thee not in any other field.</VERS>\r\n      <VERS vnumber=\"23\">So she kept fast by the maidens of Boaz, to glean unto the end of barley harvest and of wheat harvest; and she dwelt with her mother-in-law.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">And Naomi her mother-in-law said unto her, My daughter, shall I not seek rest for thee, that it may be well with thee?</VERS>\r\n      <VERS vnumber=\"2\">And now is not Boaz our kinsman, with whose maidens thou wast? Behold, he winnoweth barley to-night in the threshing-floor.</VERS>\r\n      <VERS vnumber=\"3\">Wash thyself therefore, and anoint thee, and put thy raiment upon thee, and get thee down to the threshing-floor, but make not thyself known unto the man, until he shall have done eating and drinking.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And she said unto her, All that thou sayest I will do.</VERS>\r\n      <VERS vnumber=\"6\">And she went down unto the threshing-floor, and did according to all that her mother-in-law bade her.</VERS>\r\n      <VERS vnumber=\"7\">And when Boaz had eaten and drunk, and his heart was merry, he went to lie down at the end of the heap of grain: and she came softly, and uncovered his feet, and laid her down.</VERS>\r\n      <VERS vnumber=\"8\">And it came to pass at midnight, that the man was afraid, and turned himself; and, behold, a woman lay at his feet.</VERS>\r\n      <VERS vnumber=\"9\">And he said, Who art thou? And she answered, I am Ruth thy handmaid: spread therefore thy skirt over thy handmaid; for thou art a near kinsman.</VERS>\r\n      <VERS vnumber=\"10\">And he said, Blessed be thou of Jehovah, my daughter: thou hast showed more kindness in the latter end than at the beginning, inasmuch as thou followedst not young men, whether poor or rich.</VERS>\r\n      <VERS vnumber=\"11\">And now, my daughter, fear not; I will do to thee all that thou sayest; for all the city of my people doth know that thou art a worthy woman.</VERS>\r\n      <VERS vnumber=\"12\">And now it is true that I am a near kinsman; howbeit there is a kinsman nearer than I.</VERS>\r\n      <VERS vnumber=\"13\">Tarry 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 Jehovah liveth: lie down until the morning.</VERS>\r\n      <VERS vnumber=\"14\">And she lay at his feet until the morning. And she rose up before one could discern another. For he said, Let it not be known that the woman came to the threshing-floor.</VERS>\r\n      <VERS vnumber=\"15\">And he said, Bring the mantle that is upon thee, and hold it; and she held it; and he measured six [measures] of barley, and laid it on her: and he went into the city.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And she said, These six [measures] of barley gave he me; for he said, Go not empty unto thy mother-in-law.</VERS>\r\n      <VERS vnumber=\"18\">Then said she, Sit still, my daughter, until thou know how the matter will fall; for the man will not rest, until he have finished the thing this day.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">Now Boaz went up to the gate, and sat him down there: and, behold, the near 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.</VERS>\r\n      <VERS vnumber=\"2\">And he took ten men of the elders of the city, and said, Sit ye down here. And they sat down.</VERS>\r\n      <VERS vnumber=\"3\">And he said unto the near kinsman, Naomi, that is come again out of the country of Moab, selleth the parcel of land, which was our brother Elimelech`s:</VERS>\r\n      <VERS vnumber=\"4\">And I thought to disclose it unto thee, saying, Buy it before them that sit here, 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 besides thee; and I am after thee. And he said, I will redeem it.</VERS>\r\n      <VERS vnumber=\"5\">Then 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.</VERS>\r\n      <VERS vnumber=\"6\">And the near kinsman said, I cannot redeem it for myself, lest I mar mine own inheritance: take thou my right of redemption on thee; for I cannot redeem it.</VERS>\r\n      <VERS vnumber=\"7\">Now this was [the custom] in former time in Israel concerning redeeming and concerning exchanging, to confirm all things: a man drew off his shoe, and gave it to his neighbor; and this was the [manner of] attestation in Israel.</VERS>\r\n      <VERS vnumber=\"8\">So the near kinsman said unto Boaz, Buy it for thyself. And he drew off his shoe.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">Moreover 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.</VERS>\r\n      <VERS vnumber=\"11\">And all the people that were in the gate, and the elders, said, We are witnesses. Jehovah make the woman that is come into thy house like Rachel and like Leah, which two did build the house of Israel: and do thou worthily in Ephrathah, and be famous in Bethlehem:</VERS>\r\n      <VERS vnumber=\"12\">and let thy house be like the house of Perez, whom Tamar bare unto Judah, of the seed which Jehovah shall give thee of this young woman.</VERS>\r\n      <VERS vnumber=\"13\">So Boaz took Ruth, and she became his wife; and he went in unto her, and Jehovah gave her conception, and she bare a son.</VERS>\r\n      <VERS vnumber=\"14\">And the women said unto Naomi, Blessed be Jehovah, who hath not left thee this day without a near kinsman; and let his name be famous in Israel.</VERS>\r\n      <VERS vnumber=\"15\">And he shall be unto thee a restorer of life, and a nourisher of thine old age, for thy daughter-in-law, who loveth thee, who is better to thee than seven sons, hath borne him.</VERS>\r\n      <VERS vnumber=\"16\">And Naomi took the child, and laid it in her bosom, and became nurse unto it.</VERS>\r\n      <VERS vnumber=\"17\">And the women her neighbors 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.</VERS>\r\n      <VERS vnumber=\"18\">Now these are the generations of Perez: Perez begat Hezron,</VERS>\r\n      <VERS vnumber=\"19\">and Hezron begat Ram, and Ram begat Amminadab,</VERS>\r\n      <VERS vnumber=\"20\">and Amminadab begat Nahshon, and Nahshon begat Salmon,</VERS>\r\n      <VERS vnumber=\"21\">and Salmon begat Boaz, and Boaz begat Obed,</VERS>\r\n      <VERS vnumber=\"22\">and Obed begat Jesse, and Jesse begat David.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"9\" bname=\"1 Samuel\" bsname=\"1Sam\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">Now there was a certain man of Ramathaim-zophim, of the hill-country of Ephraim, and his name was Elkanah, the son of Jeroham, the son of Elihu, the son of Tohu, the son of Zuph, an Ephraimite:</VERS>\r\n      <VERS vnumber=\"2\">and he had two wives; the name of the one was Hannah, and the name of other Peninnah: and Peninnah had children, but Hannah had no children.</VERS>\r\n      <VERS vnumber=\"3\">And this man went up out of his city from year to year to worship and to sacrifice unto Jehovah of hosts in Shiloh. And the two sons of Eli, Hophni and Phinehas, priests unto Jehovah, were there.</VERS>\r\n      <VERS vnumber=\"4\">And when the day came that Elkanah sacrificed, he gave to Peninnah his wife, and to all her sons and her daughters, portions:</VERS>\r\n      <VERS vnumber=\"5\">but unto Hannah he gave a double portion; for he loved Hannah, but Jehovah had shut up her womb.</VERS>\r\n      <VERS vnumber=\"6\">And her rival provoked her sore, to make her fret, because Jehovah had shut up her womb.</VERS>\r\n      <VERS vnumber=\"7\">And [as] he did so year by year, when she went up to the house of Jehovah, so she provoked her; therefore she wept, and did not eat.</VERS>\r\n      <VERS vnumber=\"8\">And Elkanah her husband said unto 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?</VERS>\r\n      <VERS vnumber=\"9\">So Hannah rose up after they had eaten in Shiloh, and after they had drunk. Now Eli the priest was sitting upon his seat by the door-post of the temple of Jehovah.</VERS>\r\n      <VERS vnumber=\"10\">And she was in bitterness of soul, and prayed unto Jehovah, and wept sore.</VERS>\r\n      <VERS vnumber=\"11\">And she vowed a vow, and said, O Jehovah of hosts, if thou wilt indeed look on the affliction of thy handmaid, and remember me, and not forget thy handmaid, but wilt give unto thy handmaid a man-child, then I will give him unto Jehovah all the days of his life, and there shall no razor come upon his head.</VERS>\r\n      <VERS vnumber=\"12\">And it came to pass, as she continued praying before Jehovah, that Eli marked her mouth.</VERS>\r\n      <VERS vnumber=\"13\">Now Hannah, she spake in her heart; only her lips moved, but her voice was not heard: therefore Eli thought she had been drunken.</VERS>\r\n      <VERS vnumber=\"14\">And Eli said unto her, How long wilt thou be drunken? put away thy wine from thee.</VERS>\r\n      <VERS vnumber=\"15\">And Hannah answered and said, No, my lord, I am a woman of a sorrowful spirit: I have drunk neither wine nor strong drink, but I poured out my soul before Jehovah.</VERS>\r\n      <VERS vnumber=\"16\">Count not thy handmaid for a wicked woman; for out of the abundance of my complaint and my provocation have I spoken hitherto.</VERS>\r\n      <VERS vnumber=\"17\">Then Eli answered and said, Go in peace; and the God of Israel grant thy petition that thou hast asked of him.</VERS>\r\n      <VERS vnumber=\"18\">And she said, Let thy handmaid find favor in thy sight. So the woman went her way, and did eat; and her countenance was no more [sad].</VERS>\r\n      <VERS vnumber=\"19\">And they rose up in the morning early, and worshipped before Jehovah, and returned, and came to their house to Ramah: and Elkanah knew Hannah his wife; and Jehovah remembered her.</VERS>\r\n      <VERS vnumber=\"20\">And it came to pass, when the time was come about, that Hannah conceived, and bare a son; and she called his name Samuel, [saying], Because I have asked him of Jehovah.</VERS>\r\n      <VERS vnumber=\"21\">And the man Elkanah, and all his house, went up to offer unto Jehovah the yearly sacrifice, and his vow.</VERS>\r\n      <VERS vnumber=\"22\">But 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 Jehovah, and there abide for ever.</VERS>\r\n      <VERS vnumber=\"23\">And Elkanah her husband said unto her, Do what seemeth thee good; tarry until thou have weaned him; only Jehovah establish his word. So the woman tarried and gave her son suck, until she weaned him.</VERS>\r\n      <VERS vnumber=\"24\">And when she had weaned him, she took him up with her, with three bullocks, and one ephah of meal, and a bottle of wine, and brought him unto the house of Jehovah in Shiloh: and the child was young.</VERS>\r\n      <VERS vnumber=\"25\">And they slew the bullock, and brought the child to Eli.</VERS>\r\n      <VERS vnumber=\"26\">And she said, Oh, my lord, as thy soul liveth, my lord, I am the woman that stood by thee here, praying unto Jehovah.</VERS>\r\n      <VERS vnumber=\"27\">For this child I prayed; and Jehovah hath given me my petition which I asked of him:</VERS>\r\n      <VERS vnumber=\"28\">therefore also I have granted him to Jehovah; as long as he liveth he is granted to Jehovah. And he worshipped Jehovah there.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">And Hannah prayed, and said: My heart exulteth in Jehovah; My horn is exalted in Jehovah; My mouth is enlarged over mine enemies; Because I rejoice in thy salvation.</VERS>\r\n      <VERS vnumber=\"2\">There is none holy as Jehovah; For there is none besides thee, Neither is there any rock like our God.</VERS>\r\n      <VERS vnumber=\"3\">Talk no more so exceeding proudly; Let not arrogancy come out of your mouth; For Jehovah is a God of knowledge, And by him actions are weighed.</VERS>\r\n      <VERS vnumber=\"4\">The bows of the mighty men are broken; And they that stumbled are girded with strength.</VERS>\r\n      <VERS vnumber=\"5\">They that were full have hired out themselves for bread; And they that were hungry have ceased [to hunger]: Yea, the barren hath borne seven; And she that hath many children languisheth.</VERS>\r\n      <VERS vnumber=\"6\">Jehovah killeth, and maketh alive: He bringeth down to Sheol, and bringeth up.</VERS>\r\n      <VERS vnumber=\"7\">Jehovah maketh poor, and maketh rich: He bringeth low, he also lifteth up.</VERS>\r\n      <VERS vnumber=\"8\">He raiseth up the poor out of the dust, He lifteth up the needy from the dunghill, To make them sit with princes, And inherit the throne of glory: For the pillars of the earth are Jehovah`s, And he hath set the world upon them.</VERS>\r\n      <VERS vnumber=\"9\">He will keep the feet of his holy ones; But the wicked shall be put to silence in darkness; For by strength shall no man prevail.</VERS>\r\n      <VERS vnumber=\"10\">They that strive with Jehovah shall be broken to pieces; Against them will he thunder in heaven: Jehovah will judge the ends of the earth; And he will give strength unto his king, And exalt the horn of his anointed.</VERS>\r\n      <VERS vnumber=\"11\">And Elkanah went to Ramah to his house. And the child did minister unto Jehovah before Eli the priest.</VERS>\r\n      <VERS vnumber=\"12\">Now the sons of Eli were base men; they knew not Jehovah.</VERS>\r\n      <VERS vnumber=\"13\">And the custom of the priests with the people was, that, when any man offered sacrifice, the priest`s servant came, while the flesh was boiling, with a flesh-hook of three teeth in his hand;</VERS>\r\n      <VERS vnumber=\"14\">and he struck it into the pan, or kettle, or caldron, or pot; all that the flesh-hook brought up the priest took therewith. So they did in Shiloh unto all the Israelites that came thither.</VERS>\r\n      <VERS vnumber=\"15\">Yea, 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 boiled flesh of thee, but raw.</VERS>\r\n      <VERS vnumber=\"16\">And if the man said unto him, They will surely burn the fat first, and then take as much as thy soul desireth; then he would say, Nay, but thou shalt give it me now: and if not, I will take it by force.</VERS>\r\n      <VERS vnumber=\"17\">And the sin of the young men was very great before Jehovah; for the men despised the offering of Jehovah.</VERS>\r\n      <VERS vnumber=\"18\">But Samuel ministered before Jehovah, being a child, girded with a linen ephod.</VERS>\r\n      <VERS vnumber=\"19\">Moreover his mother made him a little robe, and brought it to him from year to year, when she came up with her husband to offer the yearly sacrifice.</VERS>\r\n      <VERS vnumber=\"20\">And Eli blessed Elkanah and his wife, and said, Jehovah give thee seed of this woman for the petition which was asked of Jehovah. And they went unto their own home.</VERS>\r\n      <VERS vnumber=\"21\">And Jehovah visited Hannah, and she conceived, and bare three sons and two daughters. And the child Samuel grew before Jehovah.</VERS>\r\n      <VERS vnumber=\"22\">Now Eli was very old; and he heard all that his sons did unto all Israel, and how that they lay with the women that did service at the door of the tent of meeting.</VERS>\r\n      <VERS vnumber=\"23\">And he said unto them, Why do ye such things? for I hear of your evil dealings from all this people.</VERS>\r\n      <VERS vnumber=\"24\">Nay, my sons; for it is no good report that I hear: ye make Jehovah`s people to transgress.</VERS>\r\n      <VERS vnumber=\"25\">If one man sin against another, God shall judge him; but if a man sin against Jehovah, who shall entreat for him? Notwithstanding, they hearkened not unto the voice of their father, because Jehovah was minded to slay them.</VERS>\r\n      <VERS vnumber=\"26\">And the child Samuel grew on, and increased in favor both with Jehovah, and also with men.</VERS>\r\n      <VERS vnumber=\"27\">And there came a man of God unto Eli, and said unto him, Thus saith Jehovah, Did I reveal myself unto the house of thy father, when they were in Egypt [in bondage] to Pharaoh`s house?</VERS>\r\n      <VERS vnumber=\"28\">and did I choose him out of all the tribes of Israel to be my priest, to go up unto mine altar, to burn incense, to wear an ephod before me? and did I give unto the house of thy father all the offerings of the children of Israel made by fire?</VERS>\r\n      <VERS vnumber=\"29\">Wherefore kick ye at my sacrifice and at mine offering, which I have commanded in [my] habitation, and honorest thy sons above me, to make yourselves fat with the chiefest of all the offerings of Israel my people?</VERS>\r\n      <VERS vnumber=\"30\">Therefore Jehovah, the God of Israel, saith, I said indeed that thy house, and the house of thy father, should walk before me for ever: but now Jehovah saith, Be it far from me; for them that honor me I will honor, and they that despise me shall be lightly esteemed.</VERS>\r\n      <VERS vnumber=\"31\">Behold, 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 thy house.</VERS>\r\n      <VERS vnumber=\"32\">And thou shalt behold the affliction of [my] habitation, in all the wealth which [God] shall give Israel; and there shall not be an old man in thy house for ever.</VERS>\r\n      <VERS vnumber=\"33\">And the man of thine, [whom] I shall not cut off from mine altar, [shall be] to consume thine eyes, and to grieve thy heart; and all the increase of thy house shall die in the flower of their age.</VERS>\r\n      <VERS vnumber=\"34\">And this shall be the sign unto thee, that shall come upon thy two sons, on Hophni and Phinehas: in one day they shall die both of them.</VERS>\r\n      <VERS vnumber=\"35\">And I will raise me up a faithful priest, that shall do according to that which is in my heart and in my mind: and I will build him a sure house; and he shall walk before mine anointed for ever.</VERS>\r\n      <VERS vnumber=\"36\">And it shall come to pass, that every one that is left in thy house shall come and bow down to him for a piece of silver and a loaf of bread, and shall say, Put me, I pray thee, into one of the priests` offices, that I may eat a morsel of bread.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">And the child Samuel ministered unto Jehovah before Eli. And the word of Jehovah was precious in those days; there was no frequent vision.</VERS>\r\n      <VERS vnumber=\"2\">And it came to pass at that time, when Eli was laid down in his place (now his eyes had begun to wax dim, so that he could not see),</VERS>\r\n      <VERS vnumber=\"3\">and the lamp of God was not yet gone out, and Samuel was laid down [to sleep], in the temple of Jehovah, where the ark of God was;</VERS>\r\n      <VERS vnumber=\"4\">that Jehovah called Samuel; and he said, Here am I.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And Jehovah called yet again, Samuel. And Samuel arose and went to Eli, and said, Here am I; for thou calledst me. And he answered, I called not, my son; lie down again.</VERS>\r\n      <VERS vnumber=\"7\">Now Samuel did not yet know Jehovah, neither was the word of Jehovah yet revealed unto him.</VERS>\r\n      <VERS vnumber=\"8\">And Jehovah called Samuel again the third time. And he arose and went to Eli, and said, Here am I; for thou calledst me. And Eli perceived that Jehovah had called the child.</VERS>\r\n      <VERS vnumber=\"9\">Therefore Eli said unto Samuel, Go, lie down: and it shall be, if he call thee, that thou shalt say, Speak, Jehovah; for thy servant heareth. So Samuel went and lay down in his place.</VERS>\r\n      <VERS vnumber=\"10\">And Jehovah came, and stood, and called as at other times, Samuel, Samuel. Then Samuel said, Speak; for thy servant heareth.</VERS>\r\n      <VERS vnumber=\"11\">And Jehovah said to Samuel, Behold, I will do a thing in Israel, at which both the ears of every one that heareth it shall tingle.</VERS>\r\n      <VERS vnumber=\"12\">In that day I will perform against Eli all that I have spoken concerning his house, from the beginning even unto the end.</VERS>\r\n      <VERS vnumber=\"13\">For I have told him that I will judge his house for ever, for the iniquity which he knew, because his sons did bring a curse upon themselves, and he restrained them not.</VERS>\r\n      <VERS vnumber=\"14\">And therefore I have sworn unto the house of Eli, that the iniquity of Eli`s house shall not be expiated with sacrifice nor offering for ever.</VERS>\r\n      <VERS vnumber=\"15\">And Samuel lay until the morning, and opened the doors of the house of Jehovah. And Samuel feared to show Eli the vision.</VERS>\r\n      <VERS vnumber=\"16\">Then Eli called Samuel, and said, Samuel, my son. And he said, Here am I.</VERS>\r\n      <VERS vnumber=\"17\">And he said, What is the thing that [Jehovah] hath spoken unto thee? I pray thee, hide it not from me: God do so to thee, and more also, if thou hide anything from me of all the things that he spake unto thee.</VERS>\r\n      <VERS vnumber=\"18\">And Samuel told him every whit, and hid nothing from him. And he said, It is Jehovah: let him do what seemeth him good.</VERS>\r\n      <VERS vnumber=\"19\">And Samuel grew, and Jehovah was with him, and did let none of his words fall to the ground.</VERS>\r\n      <VERS vnumber=\"20\">And all Israel from Dan even to Beer-sheba knew that Samuel was established to be a prophet of Jehovah.</VERS>\r\n      <VERS vnumber=\"21\">And Jehovah appeared again in Shiloh; for Jehovah revealed himself to Samuel in Shiloh by the word of Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">And the word of Samuel came to all Israel.     Now Israel went out against the Philistines to battle, and encamped beside Eben-ezer: and the Philistines encamped in Aphek.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And when the people were come into the camp, the elders of Israel said, Wherefore hath Jehovah smitten us to-day before the Philistines? Let us fetch the ark of the covenant of Jehovah out of Shiloh unto us, that it may come among us, and save us out of the hand of our enemies.</VERS>\r\n      <VERS vnumber=\"4\">So the people sent to Shiloh; and they brought from thence the ark of the covenant of Jehovah of hosts, who sitteth [above] the cherubim: and the two sons of Eli, Hophni and Phinehas, were there with the ark of the covenant of God.</VERS>\r\n      <VERS vnumber=\"5\">And when the ark of the covenant of Jehovah came into the camp, all Israel shouted with a great shout, so that the earth rang again.</VERS>\r\n      <VERS vnumber=\"6\">And 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 Jehovah was come into the camp.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">Woe unto us! who shall deliver us out of the hand of these mighty gods? these are the gods that smote the Egyptians with all manner of plagues in the wilderness.</VERS>\r\n      <VERS vnumber=\"9\">Be 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.</VERS>\r\n      <VERS vnumber=\"10\">And the Philistines fought, and Israel was smitten, and they fled every man to his tent: and there was a very great slaughter; for there fell of Israel thirty thousand footmen.</VERS>\r\n      <VERS vnumber=\"11\">And the ark of God was taken; and the two sons of Eli, Hophni and Phinehas, were slain.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And when he came, lo, Eli was sitting upon his 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.</VERS>\r\n      <VERS vnumber=\"14\">And when Eli heard the noise of the crying, he said, What meaneth the noise of this tumult? And the man hasted, and came and told Eli.</VERS>\r\n      <VERS vnumber=\"15\">Now Eli was ninety and eight years old; and his eyes were set, so that he could not see.</VERS>\r\n      <VERS vnumber=\"16\">And 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, How went the matter, my son?</VERS>\r\n      <VERS vnumber=\"17\">And he that brought the tidings 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.</VERS>\r\n      <VERS vnumber=\"18\">And it came to pass, when he made mention of the ark of God, that [Eli] feel from off his 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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 brought forth; for her pains came upon her.</VERS>\r\n      <VERS vnumber=\"20\">And about the time of her death the women that stood by her said unto her, Fear not; for thou hast brought forth a son. But she answered not, neither did she regard it.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And she said, The glory is departed from Israel; for the ark of God is taken.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">Now the Philistines had taken the ark of God, and they brought it from Eben-ezer unto Ashdod.</VERS>\r\n      <VERS vnumber=\"2\">And the Philistines took the ark of God, and brought it into the house of Dagon, and set it by Dagon.</VERS>\r\n      <VERS vnumber=\"3\">And when they of Ashdod arose early on the morrow, behold, Dagon was fallen upon his face to the ground before the ark of Jehovah. And they took Dagon, and set him in his place again.</VERS>\r\n      <VERS vnumber=\"4\">And when they arose early on the morrow morning, behold, Dagon was fallen upon his face to the ground before the ark of Jehovah; and the head of Dagon and both the palms of his hands [lay] cut off upon the threshold; only [the stump of] Dagon was left to him.</VERS>\r\n      <VERS vnumber=\"5\">Therefore neither the priests of Dagon, nor any that come into Dagon`s house, tread on the threshold of Dagon in Ashdod, unto this day.</VERS>\r\n      <VERS vnumber=\"6\">But the hand of Jehovah was heavy upon them of Ashdod, and he destroyed them, and smote them with tumors, even Ashdod and the borders thereof.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">They 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 [thither].</VERS>\r\n      <VERS vnumber=\"9\">And it was so, that, after they had carried it about, the hand of Jehovah was against the city with a very great discomfiture: and he smote the men of the city, both small and great; and tumors brake out upon them.</VERS>\r\n      <VERS vnumber=\"10\">So 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.</VERS>\r\n      <VERS vnumber=\"11\">They sent therefore and gathered together all the lords of the Philistines, and they said, Send away the ark of the God of Israel, and let it go again to its own place, that is slay us not, and our people. For there was a deadly discomfiture throughout all the city; the hand of God was very heavy there.</VERS>\r\n      <VERS vnumber=\"12\">And the men that died not were smitten with the tumors; and the cry of the city went up to heaven.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">And the ark of Jehovah was in the country of the Philistines seven months.</VERS>\r\n      <VERS vnumber=\"2\">And the Philistines called for the priests and the diviners, saying, What shall we do with the ark of Jehovah? show us wherewith we shall sent it to its place.</VERS>\r\n      <VERS vnumber=\"3\">And they said, If ye send away the ark of the God of Israel, send it not empty; but by all means 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.</VERS>\r\n      <VERS vnumber=\"4\">Then said they, What shall be the trespass-offering which we shall return to him? And they said, Five golden tumors, 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.</VERS>\r\n      <VERS vnumber=\"5\">Wherefore ye shall make images of your tumors, 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.</VERS>\r\n      <VERS vnumber=\"6\">Wherefore 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?</VERS>\r\n      <VERS vnumber=\"7\">Now therefore take and prepare you a new cart, and two milch kine, on which there hath come no yoke; and tie the kine to the cart, and bring their calves home from them;</VERS>\r\n      <VERS vnumber=\"8\">and take the ark of Jehovah, 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.</VERS>\r\n      <VERS vnumber=\"9\">And see; if it goeth up by the way of its own border to Beth-shemesh, 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.</VERS>\r\n      <VERS vnumber=\"10\">And the men did so, and took two milch kine, and tied them to the cart, and shut up their calves at home;</VERS>\r\n      <VERS vnumber=\"11\">and they put the ark of Jehovah upon the cart, and the coffer with the mice of gold and the images of their tumors.</VERS>\r\n      <VERS vnumber=\"12\">And the kine took the straight way by the way to Beth-shemesh; they 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 Beth-shemesh.</VERS>\r\n      <VERS vnumber=\"13\">And they of Beth-shemesh were reaping their wheat harvest in the valley; and they lifted up their eyes, and saw the ark, and rejoiced to see it.</VERS>\r\n      <VERS vnumber=\"14\">And the cart came into the field of Joshua the Beth-shemite, and stood there, where there was a great stone: and they clave the wood of the cart, and offered up the kine for a burnt-offering unto Jehovah.</VERS>\r\n      <VERS vnumber=\"15\">And the Levites took down the ark of Jehovah, and the coffer that was with it, wherein the jewels of gold were, and put them on the great stone: and the men of Beth-shemesh offered burnt-offerings and sacrificed sacrifices the same day unto Jehovah.</VERS>\r\n      <VERS vnumber=\"16\">And when the five lords of the Philistines had seen it, they returned to Ekron the same day.</VERS>\r\n      <VERS vnumber=\"17\">And these are the golden tumors which the Philistines returned for a trespass-offering unto Jehovah: for Ashdod one, for Gaza one, for Ashkelon one, for Gath one, for Ekron one;</VERS>\r\n      <VERS vnumber=\"18\">and the golden mice, according to the number of all the cities of the Philistines belonging to the five lords, both of fortified cities and of country villages, even unto the great stone, whereon they set down the ark of Jehovah, [which stone remaineth] unto this day in the field of Joshua the Beth-shemite.</VERS>\r\n      <VERS vnumber=\"19\">And he smote of the men of Beth-shemesh, because they had looked into the ark of Jehovah, he smote of the people seventy men, [and] fifty thousand men; and the people mourned, because Jehovah had smitten the people with a great slaughter.</VERS>\r\n      <VERS vnumber=\"20\">And the men of Beth-shemesh said, Who is able to stand before Jehovah, this holy God? and to whom shall he go up from us?</VERS>\r\n      <VERS vnumber=\"21\">And they sent messengers to the inhabitants of Kiriath-jearim, saying, The Philistines have brought back the ark of Jehovah; come ye down, and fetch it up to you.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">And the men of Kiriath-jearim came, and fetched up the ark of Jehovah, and brought it into the house of Abinadab in the hill, and sanctified Eleazar his son to keep the ark of Jehovah.</VERS>\r\n      <VERS vnumber=\"2\">And it came to pass, from the day that the ark abode in Kiriath-jearim, that the time was long; for it was twenty years: and all the house of Israel lamented after Jehovah.</VERS>\r\n      <VERS vnumber=\"3\">And Samuel spake unto all the house of Israel, saying, If ye do return unto Jehovah with all your heart, then put away the foreign gods and the Ashtaroth from among you, and direct your hearts unto Jehovah, and serve him only; and he will deliver you out of the hand of the Philistines.</VERS>\r\n      <VERS vnumber=\"4\">Then the children of Israel did put away the Baalim and the Ashtaroth, and served Jehovah only.</VERS>\r\n      <VERS vnumber=\"5\">And Samuel said, Gather all Israel to Mizpah, and I will pray for you unto Jehovah.</VERS>\r\n      <VERS vnumber=\"6\">And they gathered together to Mizpah, and drew water, and poured it out before Jehovah, and fasted on that day, and said there, We have sinned against Jehovah. And Samuel judged the children of Israel in Mizpah.</VERS>\r\n      <VERS vnumber=\"7\">And when the Philistines heard that the children of Israel were gathered together to Mizpah, the lords of the Philistines went up against Israel. And when the children of Israel heard it, they were afraid of the Philistines.</VERS>\r\n      <VERS vnumber=\"8\">And the children of Israel said to Samuel, Cease not to cry unto Jehovah our God for us, that he will save us out of the hand of the Philistines.</VERS>\r\n      <VERS vnumber=\"9\">And Samuel took a sucking lamb, and offered it for a whole burnt-offering unto Jehovah: and Samuel cried unto Jehovah for Israel; and Jehovah answered him.</VERS>\r\n      <VERS vnumber=\"10\">And as Samuel was offering up the burnt-offering, the Philistines drew near to battle against Israel; but Jehovah thundered with a great thunder on that day upon the Philistines, and discomfited them; and they were smitten down before Israel.</VERS>\r\n      <VERS vnumber=\"11\">And the men of Israel went out of Mizpah, and pursued the Philistines, and smote them, until they came under Beth-car.</VERS>\r\n      <VERS vnumber=\"12\">Then Samuel took a stone, and set it between Mizpah and Shen, and called the name of it Eben-ezer, saying, Hitherto hath Jehovah helped us.</VERS>\r\n      <VERS vnumber=\"13\">So the Philistines were subdued, and they came no more within the border of Israel: and the hand of Jehovah was against the Philistines all the days of Samuel.</VERS>\r\n      <VERS vnumber=\"14\">And the cities which the Philistines had taken from Israel were restored to Israel, from Ekron even unto Gath; and the border thereof did Israel deliver out of the hand of the Philistines. And there was peace between Israel and the Amorites.</VERS>\r\n      <VERS vnumber=\"15\">And Samuel judged Israel all the days of his life.</VERS>\r\n      <VERS vnumber=\"16\">And he went from year to year in circuit to Beth-el and Gilgal, and Mizpah; and he judged Israel in all those places.</VERS>\r\n      <VERS vnumber=\"17\">And his return was to Ramah, for there was his house; and there he judged Israel: and he built there an altar unto Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">And it came to pass, when Samuel was old, that he made his sons judges over Israel.</VERS>\r\n      <VERS vnumber=\"2\">Now the name of his first-born was Joel; and the name of his second, Abijah: they were judges in Beer-sheba.</VERS>\r\n      <VERS vnumber=\"3\">And his sons walked not in his ways, but turned aside after lucre, and took bribes, and perverted justice.</VERS>\r\n      <VERS vnumber=\"4\">Then all the elders of Israel gathered themselves together, and came to Samuel unto Ramah;</VERS>\r\n      <VERS vnumber=\"5\">and they 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.</VERS>\r\n      <VERS vnumber=\"6\">But the thing displeased Samuel, when they said, Give us a king to judge us. And Samuel prayed unto Jehovah.</VERS>\r\n      <VERS vnumber=\"7\">And Jehovah 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 be king over them.</VERS>\r\n      <VERS vnumber=\"8\">According to all the works which they have done since the day that I brought them up out of Egypt even unto this day, in that they have forsaken me, and served other gods, so do they also unto thee.</VERS>\r\n      <VERS vnumber=\"9\">Now therefore hearken unto their voice: howbeit thou shalt protest solemnly unto them, and shalt show them the manner of the king that shall reign over them.</VERS>\r\n      <VERS vnumber=\"10\">And Samuel told all the words of Jehovah unto the people that asked of him a king.</VERS>\r\n      <VERS vnumber=\"11\">And he said, This will be the manner of the king that shall reign over you: he will take your sons, and appoint them unto him, for his chariots, and to be his horsemen; and they shall run before his chariots;</VERS>\r\n      <VERS vnumber=\"12\">and he will appoint them unto him for captains of thousands, and captains of fifties; and [he will set some] to plow his ground, and to reap his harvest, and to make his instruments of war, and the instruments of his chariots.</VERS>\r\n      <VERS vnumber=\"13\">And he will take your daughters to be perfumers, and to be cooks, and to be bakers.</VERS>\r\n      <VERS vnumber=\"14\">And he will take your fields, and your vineyards, and your oliveyards, even the best of them, and give them to his servants.</VERS>\r\n      <VERS vnumber=\"15\">And he will take the tenth of your seed, and of your vineyards, and give to his officers, and to his servants.</VERS>\r\n      <VERS vnumber=\"16\">And he will take your men-servants, and your maid-servants, and your goodliest young men, and your asses, and put them to his work.</VERS>\r\n      <VERS vnumber=\"17\">He will take the tenth of your flocks: and ye shall be his servants.</VERS>\r\n      <VERS vnumber=\"18\">And ye shall cry out in that day because of your king whom ye shall have chosen you; and Jehovah will not answer you in that day.</VERS>\r\n      <VERS vnumber=\"19\">But the people refused to hearken unto the voice of Samuel; and they said, Nay: but we will have a king over us,</VERS>\r\n      <VERS vnumber=\"20\">that we also may be like all the nations, and that our king may judge us, and go out before us, and fight our battles.</VERS>\r\n      <VERS vnumber=\"21\">And Samuel heard all the words of the people, and he rehearsed them in the ears of Jehovah.</VERS>\r\n      <VERS vnumber=\"22\">And Jehovah 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">Now there was a man of Benjamin, whose name was Kish, the son of Abiel, the son of Zeror, the son of Becorath, the son of Aphiah, the son of a Benjamite, a mighty man of valor.</VERS>\r\n      <VERS vnumber=\"2\">And he had a son, whose name was Saul, a 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And he passed through the hill-country of Ephraim, and passed through the land of Shalishah, but they found them not: then they passed through the land of Shaalim, and there they were not: and he passed through the land of the Benjamites, but they found them not.</VERS>\r\n      <VERS vnumber=\"5\">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 off caring for the asses, and be anxious for us.</VERS>\r\n      <VERS vnumber=\"6\">And he said unto him, Behold now, there is in this city a man of God, and he is a man that is held in honor; all that he saith cometh surely to pass: now let us go thither; peradventure he can tell us concerning our journey whereon we go.</VERS>\r\n      <VERS vnumber=\"7\">Then 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?</VERS>\r\n      <VERS vnumber=\"8\">And the servant answered Saul again, and said, Behold, I have in my hand the fourth part of a shekel of silver: that will I give to the man of God, to tell us our way.</VERS>\r\n      <VERS vnumber=\"9\">(Beforetime in Israel, when a man went to inquire of God, thus he said, Come, and let us go to the seer; for he that is now called a Prophet was beforetime called a Seer.)</VERS>\r\n      <VERS vnumber=\"10\">Then said Saul to his servant, Well said; come, let us go. So they went unto the city where the man of God was.</VERS>\r\n      <VERS vnumber=\"11\">As they went up the ascent to the city, they found young maidens going out to draw water, and said unto them, Is the seer here?</VERS>\r\n      <VERS vnumber=\"12\">And they answered them, and said, He is; behold, [he is] before thee: make haste now, for he is come to-day into the city; for the people have a sacrifice to-day in the high place:</VERS>\r\n      <VERS vnumber=\"13\">as soon as ye are come into the city, ye shall straightway find him, before he goeth 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 are bidden. Now therefore get you up; for at this time ye shall find him.</VERS>\r\n      <VERS vnumber=\"14\">And they went up to the city; [and] as they came within the city, behold, Samuel came out toward them, to go up to the high place.</VERS>\r\n      <VERS vnumber=\"15\">Now Jehovah had revealed unto Samuel a day before Saul came, saying,</VERS>\r\n      <VERS vnumber=\"16\">To-morrow about this time I will send thee a man out of the land of Benjamin, and thou shalt anoint him to be prince over my people Israel; and he shall save my people out of the hand of the Philistines: for I have looked upon my people, because their cry is come unto me.</VERS>\r\n      <VERS vnumber=\"17\">And when Samuel saw Saul, Jehovah said unto him, Behold, the man of whom I spake to thee! this same shall have authority over my people.</VERS>\r\n      <VERS vnumber=\"18\">Then Saul drew near to Samuel in the gate, and said, Tell me, I pray thee, where the seer`s house is.</VERS>\r\n      <VERS vnumber=\"19\">And 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 in the morning I will let thee go, and will tell thee all that is in thy heart.</VERS>\r\n      <VERS vnumber=\"20\">And as for thine asses that were lost three days ago, set not they mind on them; for they are found. And for whom is all that is desirable in Israel? Is it not for thee, and for all thy father`s house?</VERS>\r\n      <VERS vnumber=\"21\">And 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 to me after this manner?</VERS>\r\n      <VERS vnumber=\"22\">And Samuel took Saul and his servant, and brought them into the guest-chamber, and made them sit in the chiefest place among them that were bidden, who were about thirty persons.</VERS>\r\n      <VERS vnumber=\"23\">And Samuel said unto the cook, Bring the portion which I gave thee, of which I said unto thee, Set it by thee.</VERS>\r\n      <VERS vnumber=\"24\">And the cook took up the thigh, and that which was upon it, and set it before Saul. And [Samuel] said, Behold, that which hath been reserved! set it before thee and eat; because unto the appointed time hath it been kept for thee, for I said, I have invited the people. So Saul did eat with Samuel that day.</VERS>\r\n      <VERS vnumber=\"25\">And when they were come down from the high place into the city, he communed with Saul upon the housetop.</VERS>\r\n      <VERS vnumber=\"26\">And they arose early: and it came to pass about the spring of the day, that Samuel called to Saul on the housetop, saying, Up, that I may send thee away. And Saul arose, and they went out both of them, he and Samuel, abroad.</VERS>\r\n      <VERS vnumber=\"27\">As they were going down at the end of the city, Samuel said to Saul, Bid the servant pass on before us (and he passed on), but stand thou still first, that I may cause thee to hear the word of God.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">Then Samuel took the vial of oil, and poured it upon his head, and kissed him, and said, Is it not that Jehovah hath anointed thee to be prince over his inheritance?</VERS>\r\n      <VERS vnumber=\"2\">When 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 off caring for the asses, and is anxious for you, saying, What shall I do for my son?</VERS>\r\n      <VERS vnumber=\"3\">Then shalt thou go on forward from thence, and thou shalt come to the oak of Tabor; and there shall meet thee there three men going up to God to Beth-el, one carrying three kids, and another carrying three loaves of bread, and another carrying a bottle of wine:</VERS>\r\n      <VERS vnumber=\"4\">and they will salute thee, and give thee two loaves of bread, which thou shalt receive of their hand.</VERS>\r\n      <VERS vnumber=\"5\">After 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 band of prophets coming down from the high place with a psaltery, and a timbrel, and a pipe, and a harp, before them; and they will be prophesying:</VERS>\r\n      <VERS vnumber=\"6\">and the Spirit of Jehovah will come mightily upon thee, and thou shalt prophesy with them, and shalt be turned into another man.</VERS>\r\n      <VERS vnumber=\"7\">And let it be, when these signs are come unto thee, that thou do as occasion shall serve thee; for God is with thee.</VERS>\r\n      <VERS vnumber=\"8\">And 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 unto thee, and show thee what thou shalt do.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And when they came thither to the hill, behold, a band of prophets met him; and the Spirit of God came mightily upon him, and he prophesied among them.</VERS>\r\n      <VERS vnumber=\"11\">And it came to pass, when all that knew him beforetime saw that, behold, he prophesied with 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?</VERS>\r\n      <VERS vnumber=\"12\">And one of the same place answered and said, And who is their father? Therefore it became a proverb, Is Saul also among the prophets?</VERS>\r\n      <VERS vnumber=\"13\">And when he had made an end of prophesying, he came to the high place.</VERS>\r\n      <VERS vnumber=\"14\">And 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 not found, we came to Samuel.</VERS>\r\n      <VERS vnumber=\"15\">And Saul`s uncle said, Tell me, I pray thee, what Samuel said unto you.</VERS>\r\n      <VERS vnumber=\"16\">And Saul said unto his uncle, He told us plainly that the asses were found. But concerning the matter of the kingdom, whereof Samuel spake, he told him not.</VERS>\r\n      <VERS vnumber=\"17\">And Samuel called the people together unto Jehovah to Mizpah;</VERS>\r\n      <VERS vnumber=\"18\">and he said unto the children of Israel, Thus saith Jehovah, the God of Israel, I brought up Israel out of Egypt, and I delivered you out of the hand of the Egyptians, and out of the hand of all the kingdoms that oppressed you:</VERS>\r\n      <VERS vnumber=\"19\">but ye have this day rejected your God, who himself saveth you out of all your calamities and your distresses; and ye have said unto him, [Nay], but set a king over us. Now therefore present yourselves before Jehovah by your tribes, and by your thousands.</VERS>\r\n      <VERS vnumber=\"20\">So Samuel brought all the tribes of Israel near, and the tribe of Benjamin was taken.</VERS>\r\n      <VERS vnumber=\"21\">And he brought the tribe of Benjamin near by their families; and the family of the Matrites was taken; and Saul the son of Kish was taken: but when they sought him, he could not be found.</VERS>\r\n      <VERS vnumber=\"22\">Therefore they asked of Jehovah further, Is there yet a man to come hither? And Jehovah answered, Behold, he hath hid himself among the baggage.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And Samuel said to all the people, See ye him whom Jehovah hath chosen, that there is none like him along all the people? And all the people shouted, and said, [Long] live the king.</VERS>\r\n      <VERS vnumber=\"25\">Then Samuel told the people the manner of the kingdom, and wrote it in a book, and laid it up before Jehovah. And Samuel sent all the people away, every man to his house.</VERS>\r\n      <VERS vnumber=\"26\">And Saul also went to his house to Gibeah; and there went with him the host, whose hearts God had touched.</VERS>\r\n      <VERS vnumber=\"27\">But certain worthless fellows said, How shall this man save us? And they despised him, and brought him no present. But he held his peace.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">Then Nahash the Ammonite came up, and encamped against Jabesh-gilead: and all the men of Jabesh said unto Nahash, Make a covenant with us, and we will serve thee.</VERS>\r\n      <VERS vnumber=\"2\">And Nahash the Ammonite said unto them, On this condition will I make it with you, that all your right eyes be put out; and I will lay it for a reproach upon all Israel.</VERS>\r\n      <VERS vnumber=\"3\">And the elders of Jabesh said unto him, Give us seven days` respite, that we may send messengers unto all the borders of Israel; and then, if there be none to save us, we will come out to thee.</VERS>\r\n      <VERS vnumber=\"4\">Then came the messengers to Gibeah of Saul, and spake these words in the ears of the people: and all the people lifted up their voice, and wept.</VERS>\r\n      <VERS vnumber=\"5\">And, behold, Saul came following the oxen out of the field; and Saul said, What aileth the people that they weep? And they told him the words of the men of Jabesh.</VERS>\r\n      <VERS vnumber=\"6\">And the Spirit of God came mightily upon Saul when he heard those words, and his anger was kindled greatly.</VERS>\r\n      <VERS vnumber=\"7\">And he took a yoke of oxen, and cut them in pieces, and sent them throughout all the borders of Israel by the hand of messengers, saying, Whosoever cometh not forth after Saul and after Samuel, so shall it be done unto his oxen. And the dread of Jehovah fell on the people, and they came out as one man.</VERS>\r\n      <VERS vnumber=\"8\">And he numbered them in Bezek; and the children of Israel were three hundred thousand, and the men of Judah thirty thousand.</VERS>\r\n      <VERS vnumber=\"9\">And they said unto the messengers that came, Thus shall ye say unto the men of Jabesh-gilead, To-morrow, by the time the sun is hot, ye shall have deliverance. And the messengers came and told the men of Jabesh; and they were glad.</VERS>\r\n      <VERS vnumber=\"10\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"11\">And it was so on the morrow, that Saul put the people in three companies; and they came into the midst of the camp in the morning watch, and smote the Ammonites until the heat of the day: and it came to pass, that they that remained were scattered, so that not two of them were left together.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And Saul said, There shall not a man be put to death this day; for to-day Jehovah hath wrought deliverance in Israel.</VERS>\r\n      <VERS vnumber=\"14\">Then said Samuel to the people, Come, and let us go to Gilgal, and renew the kingdom there.</VERS>\r\n      <VERS vnumber=\"15\">And all the people went to Gilgal; and there they made Saul king before Jehovah in Gilgal; and there they offered sacrifices of peace-offerings before Jehovah; and there Saul and all the men of Israel rejoiced greatly.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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 youth unto this day.</VERS>\r\n      <VERS vnumber=\"3\">Here I am: witness against me before Jehovah, 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 taken a ransom to blind mine eyes therewith? and I will restore it you.</VERS>\r\n      <VERS vnumber=\"4\">And they said, Thou hast not defrauded us, nor oppressed us, neither hast thou taken aught of any man`s hand.</VERS>\r\n      <VERS vnumber=\"5\">And he said unto them, Jehovah is witness against you, and his anointed is witness this day, that ye have not found aught in my hand. And they said, He is witness.</VERS>\r\n      <VERS vnumber=\"6\">And Samuel said unto the people, It is Jehovah that appointed Moses and Aaron, and that brought your fathers up out of the land of Egypt.</VERS>\r\n      <VERS vnumber=\"7\">Now therefore stand still, that I may plead with you before Jehovah concerning all the righteous acts of Jehovah, which he did to you and to your fathers.</VERS>\r\n      <VERS vnumber=\"8\">When Jacob was come into Egypt, and your fathers cried unto Jehovah, then Jehovah sent Moses and Aaron, who brought forth your fathers out of Egypt, and made them to dwell in this place.</VERS>\r\n      <VERS vnumber=\"9\">But they forgat Jehovah their God; and 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.</VERS>\r\n      <VERS vnumber=\"10\">And they cried unto Jehovah, and said, We have sinned, because we have forsaken Jehovah, and have served the Baalim and the Ashtaroth: but now deliver us out of the hand of our enemies, and we will serve thee.</VERS>\r\n      <VERS vnumber=\"11\">And Jehovah sent Jerubbaal, and Bedan, and Jephthah, and Samuel, and delivered you out of the hand of your enemies on every side; and ye dwelt in safety.</VERS>\r\n      <VERS vnumber=\"12\">And 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 Jehovah your God was your king.</VERS>\r\n      <VERS vnumber=\"13\">Now therefore behold the king whom ye have chosen, and whom ye have asked for: and, behold, Jehovah hath set a king over you.</VERS>\r\n      <VERS vnumber=\"14\">If ye will fear Jehovah, and serve him, and hearken unto his voice, and not rebel against the commandment of Jehovah, and both ye and also the king that reigneth over you be followers of Jehovah your God, [well]:</VERS>\r\n      <VERS vnumber=\"15\">but if ye will not hearken unto the voice of Jehovah, but rebel against the commandment of Jehovah, then will the hand of Jehovah be against you, as it was against your fathers.</VERS>\r\n      <VERS vnumber=\"16\">Now therefore stand still and see this great thing, which Jehovah will do before your eyes.</VERS>\r\n      <VERS vnumber=\"17\">Is it not wheat harvest to-day? I will call unto Jehovah, that he may send thunder and rain; and ye shall know and see that your wickedness is great, which ye have done in the sight of Jehovah, in asking you a king.</VERS>\r\n      <VERS vnumber=\"18\">So Samuel called unto Jehovah; and Jehovah sent thunder and rain that day: and all the people greatly feared Jehovah and Samuel.</VERS>\r\n      <VERS vnumber=\"19\">And all the people said unto Samuel, Pray for thy servants unto Jehovah thy God, that we die not; for we have added unto all our sins [this] evil, to ask us a king.</VERS>\r\n      <VERS vnumber=\"20\">And Samuel said unto the people, Fear not; ye have indeed done all this evil; yet turn not aside from following Jehovah, but serve Jehovah with all your heart:</VERS>\r\n      <VERS vnumber=\"21\">and turn ye not aside; for [then would ye go] after vain things which cannot profit nor deliver, for they are vain.</VERS>\r\n      <VERS vnumber=\"22\">For Jehovah will not forsake his people for his great name`s sake, because it hath pleased Jehovah to make you a people unto himself.</VERS>\r\n      <VERS vnumber=\"23\">Moreover as for me, far be it from me that I should sin against Jehovah in ceasing to pray for you: but I will instruct you in the good and the right way.</VERS>\r\n      <VERS vnumber=\"24\">Only fear Jehovah, and serve him in truth with all your heart; for consider how great things he hath done for you.</VERS>\r\n      <VERS vnumber=\"25\">But if ye shall still do wickedly, ye shall be consumed, both ye and your king.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">Saul was [forty] years old when he began to reign; and when he had reigned two years over Israel,</VERS>\r\n      <VERS vnumber=\"2\">Saul chose him three thousand men of Israel, whereof two thousand were with Saul in Michmash and in the mount of Beth-el, and a thousand were with Jonathan in Gibeah of Benjamin: and the rest of the people he sent every man to his tent.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And all Israel heard say that Saul had smitten the garrison of the Philistines, and also that Israel was had in abomination with the Philistines. And the people were gathered together after Saul to Gilgal.</VERS>\r\n      <VERS vnumber=\"5\">And the Philistines assembled 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 encamped in Michmash, eastward of Beth-aven.</VERS>\r\n      <VERS vnumber=\"6\">When 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 coverts, and in pits.</VERS>\r\n      <VERS vnumber=\"7\">Now some of the Hebrews had gone over the Jordan to the land of Gad and Gilead; but as for Saul, he was yet in Gilgal, and all the people followed him trembling.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And Saul said, Bring hither the burnt-offering to me, and the peace-offerings. And he offered the burnt-offering.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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 assembled themselves together at Michmash;</VERS>\r\n      <VERS vnumber=\"12\">therefore said I, Now will the Philistines come down upon me to Gilgal, and I have not entreated the favor of Jehovah: I forced myself therefore, and offered the burnt-offering.</VERS>\r\n      <VERS vnumber=\"13\">And Samuel said to Saul, Thou hast done foolishly; thou hast not kept the commandment of Jehovah thy God, which he commanded thee: for now would Jehovah have established thy kingdom upon Israel for ever.</VERS>\r\n      <VERS vnumber=\"14\">But now thy kingdom shall not continue: Jehovah hath sought him a man after his own heart, and Jehovah hath appointed him to be prince over his people, because thou hast not kept that which Jehovah commanded thee.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And Saul, and Jonathan his son, and the people that were present with them, abode in Geba of Benjamin: but the Philistines encamped in Michmash.</VERS>\r\n      <VERS vnumber=\"17\">And 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;</VERS>\r\n      <VERS vnumber=\"18\">and another company turned the way to Beth-horon; and another company turned the way of the border that looketh down upon the valley of Zeboim toward the wilderness.</VERS>\r\n      <VERS vnumber=\"19\">Now there was no smith found throughout all the land of Israel; for the Philistines said, Lest the Hebrews make them swords or spears:</VERS>\r\n      <VERS vnumber=\"20\">but all the Israelites went down to the Philistines, to sharpen every man his share, and his coulter, and his axe, and his mattock;</VERS>\r\n      <VERS vnumber=\"21\">yet they had a file for the mattocks, and for the coulters, and for the forks, and for the axes, and to set the goads.</VERS>\r\n      <VERS vnumber=\"22\">So 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.</VERS>\r\n      <VERS vnumber=\"23\">And the garrison of the Philistines went out unto the pass of Michmash.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">Now it fell upon a day, that Jonathan the son of Saul said unto the young man that bare his armor, Come, and let us go over to the Philistines` garrison, that is on yonder side. But he told not his father.</VERS>\r\n      <VERS vnumber=\"2\">And Saul abode in the uttermost part of Gibeah under the pomegranate-tree which is in Migron: and the people that were with him were about six hundred men;</VERS>\r\n      <VERS vnumber=\"3\">and Ahijah, the son of Ahitub, Ichabod`s brother, the son of Phinehas, the son of Eli, the priest of Jehovah in Shiloh, wearing an ephod. And the people knew not that Jonathan was gone.</VERS>\r\n      <VERS vnumber=\"4\">And between the passes, by which Jonathan sought to go over unto the Philistines` garrison, there was a rocky crag on the one side, and a rocky crag on the other side: and the name of the one was Bozez, and the name of the other Seneh.</VERS>\r\n      <VERS vnumber=\"5\">The one crag rose up on the north in front of Michmash, and the other on the south in front of Geba.</VERS>\r\n      <VERS vnumber=\"6\">And Jonathan said to the young man that bare his armor, Come, and let us go over unto the garrison of these uncircumcised: it may be that Jehovah will work for us; for there is no restraint to Jehovah to save by many or by few.</VERS>\r\n      <VERS vnumber=\"7\">And his armorbearer said unto him, Do all that is in thy heart: turn thee, behold, I am with thee according to thy heart.</VERS>\r\n      <VERS vnumber=\"8\">Then said Jonathan, Behold, we will pass over unto the men, and we will disclose ourselves unto them.</VERS>\r\n      <VERS vnumber=\"9\">If 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.</VERS>\r\n      <VERS vnumber=\"10\">But if they say thus, Come up unto us; then we will go up; for Jehovah hath delivered them into our hand: and this shall be the sign unto us.</VERS>\r\n      <VERS vnumber=\"11\">And both of them disclosed 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.</VERS>\r\n      <VERS vnumber=\"12\">And the men of the garrison answered Jonathan and his armorbearer, and said, Come up to us, and we will show you a thing. And Jonathan said unto his armorbearer, Come up after me; for Jehovah hath delivered them into the hand of Israel.</VERS>\r\n      <VERS vnumber=\"13\">And Jonathan climbed up upon his hands and upon his feet, and his armorbearer after him: and they fell before Jonathan; and his armorbearer slew them after him.</VERS>\r\n      <VERS vnumber=\"14\">And that first slaughter, which Jonathan and his armorbearer made, was about twenty men, within as it were half a furrow`s length in an acre of land.</VERS>\r\n      <VERS vnumber=\"15\">And there was a trembling in the camp, in the field, and among all the people; the garrison, and the spoilers, they also trembled; and the earth quaked: so there was an exceeding great trembling.</VERS>\r\n      <VERS vnumber=\"16\">And the watchmen of Saul in Gibeah of Benjamin looked; and, behold, the multitude melted away, and they went [hither] and thither.</VERS>\r\n      <VERS vnumber=\"17\">Then 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 armorbearer were not there.</VERS>\r\n      <VERS vnumber=\"18\">And Saul said unto Ahijah, Bring hither the ark of God. For the ark of God was [there] at that time with the children of Israel.</VERS>\r\n      <VERS vnumber=\"19\">And it came to pass, while Saul talked unto the priest, that the tumult that was in the camp of the Philistines went on and increased: and Saul said unto the priest, Withdraw thy hand.</VERS>\r\n      <VERS vnumber=\"20\">And Saul and all the people that were with him were gathered together, and came to the battle: and, behold, every man`s sword was against his fellow, [and there was] a very great discomfiture.</VERS>\r\n      <VERS vnumber=\"21\">Now the Hebrews that were with the Philistines as beforetime, and that 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.</VERS>\r\n      <VERS vnumber=\"22\">Likewise all the men of Israel that had hid themselves in the hill-country of Ephraim, when they heard that the Philistines fled, even they also followed hard after them in the battle.</VERS>\r\n      <VERS vnumber=\"23\">So Jehovah saved Israel that day: and the battle passed over by Beth-aven.</VERS>\r\n      <VERS vnumber=\"24\">And the men of Israel were distressed that day; for Saul had adjured the people, saying, Cursed be the man that eateth any food until it be evening, and I be avenged on mine enemies. So none of the people tasted food.</VERS>\r\n      <VERS vnumber=\"25\">And all the people came into the forest; and there was honey upon the ground.</VERS>\r\n      <VERS vnumber=\"26\">And when the people were come unto the forest, behold, the honey dropped: but no man put his hand to his mouth; for the people feared the oath.</VERS>\r\n      <VERS vnumber=\"27\">But 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 the honeycomb, and put his hand to his mouth; and his eyes were enlightened.</VERS>\r\n      <VERS vnumber=\"28\">Then answered one of the people, and said, Thy father straitly charged the people with an oath, saying, Cursed be the man that eateth food this day. And the people were faint.</VERS>\r\n      <VERS vnumber=\"29\">Then 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.</VERS>\r\n      <VERS vnumber=\"30\">How much more, if haply the people had eaten freely to-day of the spoil of their enemies which they found? for now hath there been no great slaughter among the Philistines.</VERS>\r\n      <VERS vnumber=\"31\">And they smote of the Philistines that day from Michmash to Aijalon. And the people were very faint;</VERS>\r\n      <VERS vnumber=\"32\">and 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.</VERS>\r\n      <VERS vnumber=\"33\">Then they told Saul, saying, Behold, the people sin against Jehovah, in that they eat with the blood. And he said, ye have dealt treacherously: roll a great stone unto me this day.</VERS>\r\n      <VERS vnumber=\"34\">And 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 Jehovah in eating with the blood. And all the people brought every man his ox with him that night, and slew them there.</VERS>\r\n      <VERS vnumber=\"35\">And Saul built an altar unto Jehovah: the same was the first altar that he built unto Jehovah.</VERS>\r\n      <VERS vnumber=\"36\">And Saul said, Let us go down after the Philistines by night, and take spoil among 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.</VERS>\r\n      <VERS vnumber=\"37\">And 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.</VERS>\r\n      <VERS vnumber=\"38\">And Saul said, Draw nigh hither, all ye chiefs of the people; and know and see wherein this sin hath been this day.</VERS>\r\n      <VERS vnumber=\"39\">For, as Jehovah liveth, who 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.</VERS>\r\n      <VERS vnumber=\"40\">Then 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.</VERS>\r\n      <VERS vnumber=\"41\">Therefore Saul said unto Jehovah, the God of Israel, Show the right. And Jonathan and Saul were taken [by lot]; but the people escaped.</VERS>\r\n      <VERS vnumber=\"42\">And Saul said, Cast [lots] between me and Jonathan my son. And Jonathan was taken.</VERS>\r\n      <VERS vnumber=\"43\">Then Saul said to Jonathan, Tell me what thou hast done. And Jonathan told him, and said, I did certainly taste a little honey with the end of the rod that was in my hand; and, lo, I must die.</VERS>\r\n      <VERS vnumber=\"44\">And Saul said, God do so and more also; for thou shalt surely die, Jonathan.</VERS>\r\n      <VERS vnumber=\"45\">And the people said unto Saul, Shall Jonathan die, who hath wrought this great salvation in Israel? Far from it: as Jehovah 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.</VERS>\r\n      <VERS vnumber=\"46\">Then Saul went up from following the Philistines; and the Philistines went to their own place.</VERS>\r\n      <VERS vnumber=\"47\">Now when Saul had taken the kingdom over Israel, he 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 put [them] to the worse.</VERS>\r\n      <VERS vnumber=\"48\">And he did valiantly, and smote the Amalekites, and delivered Israel out of the hands of them that despoiled them.</VERS>\r\n      <VERS vnumber=\"49\">Now the sons of Saul were Jonathan, and Ishvi, and Malchishua; and the names of his two daughters were these: the name of the first-born Merab, and the name of the younger Michal:</VERS>\r\n      <VERS vnumber=\"50\">and 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.</VERS>\r\n      <VERS vnumber=\"51\">And Kish was the father of Saul; and Ner the father of Abner was the son of Abiel.</VERS>\r\n      <VERS vnumber=\"52\">And there was sore war against the Philistines all the days of Saul: and when Saul saw any mighty man, or any valiant man, he took him unto him.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">And Samuel said unto Saul, Jehovah sent me to anoint thee to be king over his people, over Israel: now therefore hearken thou unto the voice of the words of Jehovah.</VERS>\r\n      <VERS vnumber=\"2\">Thus saith Jehovah of hosts, I have marked that which Amalek did to Israel, how he set himself against him in the way, when he came up out of Egypt.</VERS>\r\n      <VERS vnumber=\"3\">Now 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.</VERS>\r\n      <VERS vnumber=\"4\">And Saul summoned the people, and numbered them in Telaim, two hundred thousand footmen, and ten thousand men of Judah.</VERS>\r\n      <VERS vnumber=\"5\">And Saul came to the city of Amalek, and laid wait in the valley.</VERS>\r\n      <VERS vnumber=\"6\">And Saul said unto the Kenites, Go, depart, get you down from among the Amalekites, lest I destroy you with them; for ye showed kindness to all the children of Israel, when they came up out of Egypt. So the Kenites departed from among the Amalekites.</VERS>\r\n      <VERS vnumber=\"7\">And Saul smote the Amalekites, from Havilah as thou goest to Shur, that is before Egypt.</VERS>\r\n      <VERS vnumber=\"8\">And he took Agag the king of the Amalekites alive, and utterly destroyed all the people with the edge of the sword.</VERS>\r\n      <VERS vnumber=\"9\">But 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 everything that was vile and refuse, that they destroyed utterly.</VERS>\r\n      <VERS vnumber=\"10\">Then came the word of Jehovah unto Samuel, saying,</VERS>\r\n      <VERS vnumber=\"11\">It 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 Samuel was wroth; and he cried unto Jehovah all night.</VERS>\r\n      <VERS vnumber=\"12\">And Samuel rose early to meet Saul in the morning; and it was told Samuel, saying, Saul came to Carmel, and, behold, he set him up a monument, and turned, and passed on, and went down to Gilgal.</VERS>\r\n      <VERS vnumber=\"13\">And Samuel came to Saul; and Saul said unto him, Blessed be thou of Jehovah: I have performed the commandment of Jehovah.</VERS>\r\n      <VERS vnumber=\"14\">And Samuel said, What meaneth then this bleating of the sheep in mine ears, and the lowing of the oxen which I hear?</VERS>\r\n      <VERS vnumber=\"15\">And 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 Jehovah thy God; and the rest we have utterly destroyed.</VERS>\r\n      <VERS vnumber=\"16\">Then Samuel said unto Saul, Stay, and I will tell thee what Jehovah hath said to me this night. And he said unto him, Say on.</VERS>\r\n      <VERS vnumber=\"17\">And Samuel said, Though thou wast little in thine own sight, wast thou not made the head of the tribes of Israel? And Jehovah anointed thee king over Israel;</VERS>\r\n      <VERS vnumber=\"18\">and Jehovah sent thee on a journey, and said, Go, and utterly destroy the sinners the Amalekites, and fight against them until they be consumed.</VERS>\r\n      <VERS vnumber=\"19\">Wherefore then didst thou not obey the voice of Jehovah, but didst fly upon the spoil, and didst that which was evil in the sight of Jehovah?</VERS>\r\n      <VERS vnumber=\"20\">And Saul said unto Samuel, Yea, I have obeyed the voice of Jehovah, and have gone the way which Jehovah sent me, and have brought Agag the king of Amalek, and have utterly destroyed the Amalekites.</VERS>\r\n      <VERS vnumber=\"21\">But the people took of the spoil, sheep and oxen, the chief of the devoted things, to sacrifice unto Jehovah thy God in Gilgal.</VERS>\r\n      <VERS vnumber=\"22\">And Samuel said, Hath Jehovah as great delight in burnt-offerings and sacrifices, as in obeying the voice of Jehovah? Behold, to obey is better than sacrifice, and to hearken than the fat of rams.</VERS>\r\n      <VERS vnumber=\"23\">For rebellion is as the sin of witchcraft, and stubbornness is as idolatry and teraphim. Because thou hast rejected the word of Jehovah, he hath also rejected thee from being king.</VERS>\r\n      <VERS vnumber=\"24\">And Saul said unto Samuel, I have sinned; for I have transgressed the commandment of Jehovah, and thy words, because I feared the people, and obeyed their voice.</VERS>\r\n      <VERS vnumber=\"25\">Now therefore, I pray thee, pardon my sin, and turn again with me, that I may worship Jehovah.</VERS>\r\n      <VERS vnumber=\"26\">And Samuel said unto Saul, I will not return with thee; for thou hast rejected the word of Jehovah, and Jehovah hath rejected thee from being king over Israel.</VERS>\r\n      <VERS vnumber=\"27\">And as Samuel turned about to go away, [Saul] laid hold upon the skirt of his robe, and it rent.</VERS>\r\n      <VERS vnumber=\"28\">And Samuel said unto him, Jehovah hath rent the kingdom of Israel from thee this day, and hath given it to a neighbor of thine, that is better than thou.</VERS>\r\n      <VERS vnumber=\"29\">And also the Strength of Israel will not lie nor repent; for he is not a man, that he should repent.</VERS>\r\n      <VERS vnumber=\"30\">Then he said, I have sinned: yet honor me now, I pray thee, before the elders of my people, and before Israel, and turn again with me, that I may worship Jehovah thy God.</VERS>\r\n      <VERS vnumber=\"31\">So Samuel turned again after Saul; and Saul worshipped Jehovah.</VERS>\r\n      <VERS vnumber=\"32\">Then said Samuel, Bring ye hither to me Agag the king of the Amalekites. And Agag came unto him cheerfully. And Agag said, Surely the bitterness of death is past.</VERS>\r\n      <VERS vnumber=\"33\">And Samuel said, As thy sword hath made women childless, so shall thy mother be childless among women. And Samuel hewed Agag in pieces before Jehovah in Gilgal.</VERS>\r\n      <VERS vnumber=\"34\">Then Samuel went to Ramah; and Saul went up to his house to Gibeah of Saul.</VERS>\r\n      <VERS vnumber=\"35\">And Samuel came no more to see Saul until the day of his death; for Samuel mourned for Saul: and Jehovah repented that he had made Saul king over Israel.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">And Jehovah said unto Samuel, How long wilt thou mourn for Saul, seeing I have rejected him from being king over Israel? fill thy horn with oil, and go: I will send thee to Jesse the Beth-lehemite; for I have provided me a king among his sons.</VERS>\r\n      <VERS vnumber=\"2\">And Samuel said, How can I go? if Saul hear it, he will kill me. And Jehovah said, Take a heifer with thee, and say, I am come to sacrifice to Jehovah.</VERS>\r\n      <VERS vnumber=\"3\">And call Jesse to the sacrifice, and I will show thee what thou shalt do: and thou shalt anoint unto me him whom I name unto thee.</VERS>\r\n      <VERS vnumber=\"4\">And Samuel did that which Jehovah spake, and came to Beth-lehem. And the elders of the city came to meet him trembling, and said, Comest thou peaceably?</VERS>\r\n      <VERS vnumber=\"5\">And he said, Peaceably; I am come to sacrifice unto Jehovah: sanctify yourselves, and come with me to the sacrifice. And he sanctified Jesse and his sons, and called them to the sacrifice.</VERS>\r\n      <VERS vnumber=\"6\">And it came to pass, when they were come, that he looked on Eliab, and said, Surely Jehovah`s anointed is before him.</VERS>\r\n      <VERS vnumber=\"7\">But Jehovah said unto Samuel, Look not on his countenance, or on the height of his stature; because I have rejected him: for [Jehovah seeth] not as man seeth; for man looketh on the outward appearance, but Jehovah looketh on the heart.</VERS>\r\n      <VERS vnumber=\"8\">Then Jesse called Abinadab, and made him pass before Samuel. And he said, Neither hath Jehovah chosen this.</VERS>\r\n      <VERS vnumber=\"9\">Then Jesse made Shammah to pass by. And he said, Neither hath Jehovah chosen this.</VERS>\r\n      <VERS vnumber=\"10\">And Jesse made seven of his sons to pass before Samuel. And Samuel said unto Jesse, Jehovah hath not chosen these.</VERS>\r\n      <VERS vnumber=\"11\">And Samuel said unto Jesse, Are here all thy children? And he said, There remaineth yet the youngest, and, behold, he is keeping the sheep. And Samuel said unto Jesse, Send and fetch him; for we will not sit down till he come hither.</VERS>\r\n      <VERS vnumber=\"12\">And he sent, and brought him in. Now he was ruddy, and withal of a beautiful countenance, and goodly to look upon. And Jehovah said, Arise, anoint him; for this is he.</VERS>\r\n      <VERS vnumber=\"13\">Then Samuel took the horn of oil, and anointed him in the midst of his brethren: and the Spirit of Jehovah came mightily upon David from that day forward. So Samuel rose up, and went to Ramah.</VERS>\r\n      <VERS vnumber=\"14\">Now the Spirit of Jehovah departed from Saul, and an evil spirit from Jehovah troubled him.</VERS>\r\n      <VERS vnumber=\"15\">And Saul`s servants said unto him, Behold now, an evil spirit from God troubleth thee.</VERS>\r\n      <VERS vnumber=\"16\">Let our lord now command thy servants, that are before thee, to seek out a man who is a skilful player on the 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.</VERS>\r\n      <VERS vnumber=\"17\">And Saul said unto his servants, Provide me now a man that can play well, and bring him to me.</VERS>\r\n      <VERS vnumber=\"18\">Then answered one of the young men, and said, Behold, I have seen a son of Jesse the Beth-lehemite, that is skilful in playing, and a mighty man of valor, and a man of war, and prudent in speech, and a comely person; and Jehovah is with him.</VERS>\r\n      <VERS vnumber=\"19\">Wherefore Saul sent messengers unto Jesse, and said, Send me David thy son, who is with the sheep.</VERS>\r\n      <VERS vnumber=\"20\">And Jesse took an ass [laden] with bread, and a bottle of wine, and a kid, and sent them by David his son unto Saul.</VERS>\r\n      <VERS vnumber=\"21\">And David came to Saul, and stood before him: and he loved him greatly; and he became his armorbearer.</VERS>\r\n      <VERS vnumber=\"22\">And Saul sent to Jesse, saying, Let David, I pray thee, stand before me; for he hath found favor in my sight.</VERS>\r\n      <VERS vnumber=\"23\">And it came to pass, when the [evil] spirit from God was upon Saul, that David took the harp, and played with his hand: so Saul was refreshed, and was well, and the evil spirit departed from him.</VERS>\r\n      <REMARK vref=\"23\"> 17,0 And 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 place of the wagons, as the host which was going forth to the fight shouted for the battle.</REMARK>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"17\">\r\n      <VERS vnumber=\"1\">Now the Philistines gathered together their armies to battle; and they were gathered together at Socoh, which belongeth to Judah, and encamped between Socoh and Azekah, in Ephes-dammim.</VERS>\r\n      <VERS vnumber=\"2\">And Saul and the men of Israel were gathered together, and encamped in the vale of Elah, and set the battle in array against the Philistines.</VERS>\r\n      <VERS vnumber=\"3\">And the Philistines stood on the mountain on the one side, and Israel stood on the mountain on the other side: and there was a valley between them.</VERS>\r\n      <VERS vnumber=\"4\">And there went out a champion out of the camp of the Philistines, named Goliath, of Gath, whose height was six cubits and a span.</VERS>\r\n      <VERS vnumber=\"5\">And he had a helmet of brass upon his head, and he was clad with a coat of mail; and the weight of the coat was five thousand shekels of brass.</VERS>\r\n      <VERS vnumber=\"6\">And he had greaves of brass upon his legs, and a javelin of brass between his shoulders.</VERS>\r\n      <VERS vnumber=\"7\">And the staff of his spear was like a weaver`s beam; and his spear`s head [weighed] six hundred shekels of iron: and his shield-bearer went before him.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">If he be able to fight with me, and 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.</VERS>\r\n      <VERS vnumber=\"10\">And the Philistine said, I defy the armies of Israel this day; give me a man, that we may fight together.</VERS>\r\n      <VERS vnumber=\"11\">And when Saul and all Israel heard those words of the Philistine, they were dismayed, and greatly afraid.</VERS>\r\n      <VERS vnumber=\"12\">Now David was the son of that Ephrathite of Beth-lehem-judah, whose name was Jesse; and he had eight sons: and the man was an old man in the days of Saul, stricken [in years] among men.</VERS>\r\n      <VERS vnumber=\"13\">And the three eldest sons of Jesse had gone after Saul to the battle: and the names of his three sons that went to the battle were Eliab the first-born, and next unto him Abinadab, and the third Shammah.</VERS>\r\n      <VERS vnumber=\"14\">And David was the youngest; and the three eldest followed Saul.</VERS>\r\n      <VERS vnumber=\"15\">Now David went to and fro from Saul to feed his father`s sheep at Beth-lehem.</VERS>\r\n      <VERS vnumber=\"16\">And the Philistine drew near morning and evening, and presented himself forty days.</VERS>\r\n      <VERS vnumber=\"17\">And Jesse said unto David his son, Take now for thy brethren an ephah of this parched grain, and these ten loaves, and carry [them] quickly to the camp to thy brethren;</VERS>\r\n      <VERS vnumber=\"18\">and bring these ten cheeses unto the captain of their thousand, and look how thy brethren fare, and take their pledge.</VERS>\r\n      <VERS vnumber=\"19\">Now Saul, and they, and all the men of Israel, were in the vale of Elah, fighting with the Philistines.</VERS>\r\n      <VERS vnumber=\"20\">dummy verses inserted by amos</VERS>\r\n      <VERS vnumber=\"21\">And Israel and the Philistines put the battle in array, army against army.</VERS>\r\n      <VERS vnumber=\"22\">And David left his baggage in the hand of the keeper of the baggage, and ran to the army, and came and saluted his brethren.</VERS>\r\n      <VERS vnumber=\"23\">And as he talked with them, behold, there came up the champion, the Philistine of Gath, Goliath by name, out of the ranks of the Philistines, and spake according to the same words: and David heard them.</VERS>\r\n      <VERS vnumber=\"24\">And all the men of Israel, when they saw the man, fled from him, and were sore afraid.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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?</VERS>\r\n      <VERS vnumber=\"27\">And the people answered him after this manner, saying, So shall it be done to the man that killeth him.</VERS>\r\n      <VERS vnumber=\"28\">And Eliab his eldest brother heard when he spake unto the men; and Eliab`s anger was kindled against David, and he said, Why art thou come down? and with whom hast thou left those few sheep in the wilderness? I know thy pride, and the naughtiness of thy heart; for thou art come down that thou mightest see the battle.</VERS>\r\n      <VERS vnumber=\"29\">And David said, What have I now done? Is there not a cause?</VERS>\r\n      <VERS vnumber=\"30\">And he turned away from him toward another, and spake after the same manner: and the people answered him again after the former manner.</VERS>\r\n      <VERS vnumber=\"31\">And when the words were heard which David spake, they rehearsed them before Saul; and he sent for him.</VERS>\r\n      <VERS vnumber=\"32\">And David said to Saul, Let no man`s heart fail because of him; thy servant will go and fight with this Philistine.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">And David said unto Saul, Thy servant was keeping his father`s sheep; and when there came a lion, or a bear, and took a lamb out of the flock,</VERS>\r\n      <VERS vnumber=\"35\">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.</VERS>\r\n      <VERS vnumber=\"36\">Thy servant smote 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.</VERS>\r\n      <VERS vnumber=\"37\">And David said, Jehovah 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 Jehovah shall be with thee.</VERS>\r\n      <VERS vnumber=\"38\">And Saul clad David with his apparel, and he put a helmet of brass upon his head, and he clad him with a coat of mail.</VERS>\r\n      <VERS vnumber=\"39\">And David girded his sword upon his apparel, 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.</VERS>\r\n      <VERS vnumber=\"40\">And he took his staff in his hand, and chose him five smooth stones out of the brook, and put them in the shepherd`s bag which he had, even in his wallet; and his sling was in his hand: and he drew near to the Philistine.</VERS>\r\n      <VERS vnumber=\"41\">And the Philistine came on and drew near unto David; and the man that bare the shield went before him.</VERS>\r\n      <VERS vnumber=\"42\">And when the Philistine looked about, and saw David, he disdained him; for he was but a youth, and ruddy, and withal of a fair countenance.</VERS>\r\n      <VERS vnumber=\"43\">And the Philistine said unto David, Am I a dog, that thou comest to me with staves? And the Philistine cursed David by his gods.</VERS>\r\n      <VERS vnumber=\"44\">And the Philistine said to David, Come to me, and I will give thy flesh unto the birds of the heavens, and to the beasts of the field.</VERS>\r\n      <VERS vnumber=\"45\">Then said David to the Philistine, Thou comest to me with a sword, and with a spear, and with a javelin: but I come to thee in the name of Jehovah of hosts, the God of the armies of Israel, whom thou hast defied.</VERS>\r\n      <VERS vnumber=\"46\">This day will Jehovah deliver thee into my hand; and I will smite thee, and take thy head from off thee; and I will give the dead bodies of the host of the Philistines this day unto the birds of the heavens, and to the wild beasts of the earth; that all the earth may know that there is a God in Israel,</VERS>\r\n      <VERS vnumber=\"47\">and that all this assembly may know that Jehovah saveth not with sword and spear: for the battle is Jehovah`s, and he will give you into our hand.</VERS>\r\n      <VERS vnumber=\"48\">And 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.</VERS>\r\n      <VERS vnumber=\"49\">And David put his hand in his bag, and took thence a stone, and slang it, and smote the Philistine in his forehead; and the stone sank into his forehead, and he fell upon his face to the earth.</VERS>\r\n      <VERS vnumber=\"50\">So 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.</VERS>\r\n      <VERS vnumber=\"51\">Then David ran, and stood over 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 that their champion was dead, they fled.</VERS>\r\n      <VERS vnumber=\"52\">And the men of Israel and of Judah arose, and shouted, and pursued the Philistines, until thou comest to Gai, 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.</VERS>\r\n      <VERS vnumber=\"53\">And the children of Israel returned from chasing after the Philistines, and they plundered their camp.</VERS>\r\n      <VERS vnumber=\"54\">And David took the head of the Philistine, and brought it to Jerusalem; but he put his armor in his tent.</VERS>\r\n      <VERS vnumber=\"55\">And 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.</VERS>\r\n      <VERS vnumber=\"56\">And the king said, Inquire thou whose son the stripling is.</VERS>\r\n      <VERS vnumber=\"57\">And 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.</VERS>\r\n      <VERS vnumber=\"58\">And Saul said to him, Whose son art thou, thou young man? And David answered, I am the son of thy servant Jesse the Beth-lehemite.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"18\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And Saul took him that day, and would let him go no more home to his father`s house.</VERS>\r\n      <VERS vnumber=\"3\">Then Jonathan and David made a covenant, because he loved him as his own soul.</VERS>\r\n      <VERS vnumber=\"4\">And Jonathan stripped himself of the robe that was upon him, and gave it to David, and his apparel, even to his sword, and to his bow, and to his girdle.</VERS>\r\n      <VERS vnumber=\"5\">And David went out whithersoever Saul sent him, [and] behaved himself wisely: and Saul set him over the men of war, and it was good in the sight of all the people, and also in the sight of Saul`s servants.</VERS>\r\n      <VERS vnumber=\"6\">And it came to pass as they came, when David returned from the slaughter of the Philistine, that the women came out of all the cities of Israel, singing and dancing, to meet king Saul, with timbrels, with joy, and with instruments of music.</VERS>\r\n      <VERS vnumber=\"7\">And the women sang one to another as they played, and said, Saul hath slain his thousands, And David his ten thousands.</VERS>\r\n      <VERS vnumber=\"8\">And Saul was very wroth, and this 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?</VERS>\r\n      <VERS vnumber=\"9\">And Saul eyed David from that day and forward.</VERS>\r\n      <VERS vnumber=\"10\">And it came to pass on the morrow, that an evil spirit from God came mightily upon Saul, and he prophesied in the midst of the house: and David played with his hand, as he did day by day. And Saul had his spear in his hand;</VERS>\r\n      <VERS vnumber=\"11\">and Saul cast the spear; for he said, I will smite David even to the wall. And David avoided out of his presence twice.</VERS>\r\n      <VERS vnumber=\"12\">And Saul was afraid of David, because Jehovah was with him, and was departed from Saul.</VERS>\r\n      <VERS vnumber=\"13\">Therefore Saul removed him from him, and made him his captain over a thousand; and he went out and came in before the people.</VERS>\r\n      <VERS vnumber=\"14\">And David behaved himself wisely in all his ways; and Jehovah was with him.</VERS>\r\n      <VERS vnumber=\"15\">And when Saul saw that he behaved himself very wisely, he stood in awe of him.</VERS>\r\n      <VERS vnumber=\"16\">But all Israel and Judah loved David; for he went out and came in before them.</VERS>\r\n      <VERS vnumber=\"17\">And Saul said to David, Behold, my elder daughter Merab, her will I give thee to wife: only be thou valiant for me, and fight Jehovah`s battles. For Saul said, Let not my hand be upon him, but let the hand of the Philistines be upon him.</VERS>\r\n      <VERS vnumber=\"18\">And 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?</VERS>\r\n      <VERS vnumber=\"19\">But 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.</VERS>\r\n      <VERS vnumber=\"20\">And Michal, Saul`s daughter, loved David: and they told Saul, and the thing pleased him.</VERS>\r\n      <VERS vnumber=\"21\">And 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 a second time.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And Saul`s servants spake those words in the ears of David. And David said, Seemeth it to you a light thing to be the king`s son-in-law, seeing that I am a poor man, and lightly esteemed?</VERS>\r\n      <VERS vnumber=\"24\">And the servants of Saul told him, saying, On this manner spake David.</VERS>\r\n      <VERS vnumber=\"25\">And Saul said, Thus shall ye say to David, The king desireth not any dowry, but a hundred foreskins of the Philistines, to be avenged of the king`s enemies. Now Saul thought to make David fall by the hand of the Philistines.</VERS>\r\n      <VERS vnumber=\"26\">And 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;</VERS>\r\n      <VERS vnumber=\"27\">and 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 number to the king, that he might be the king`s son-in-law. And Saul gave him Michal his daughter to wife.</VERS>\r\n      <VERS vnumber=\"28\">And Saul saw and knew that Jehovah was with David; and Michal, Saul`s daughter, loved him.</VERS>\r\n      <VERS vnumber=\"29\">And Saul was yet the more afraid of David; and Saul was David`s enemy continually.</VERS>\r\n      <VERS vnumber=\"30\">Then the princes of the Philistines went forth: and it came to pass, as often as they went forth, that David behaved himself more wisely than all the servants of Saul; so that his name was much set by.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"19\">\r\n      <VERS vnumber=\"1\">And Saul spake to Jonathan his son, and to all his servants, that they should slay David. But Jonathan, Saul`s son, delighted much in David.</VERS>\r\n      <VERS vnumber=\"2\">And Jonathan told David, saying, Saul my father seeketh to slay thee: now therefore, I pray thee, take heed to thyself in the morning, and abide in a secret place, and hide thyself:</VERS>\r\n      <VERS vnumber=\"3\">and 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 if I see aught, I will tell thee.</VERS>\r\n      <VERS vnumber=\"4\">And 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:</VERS>\r\n      <VERS vnumber=\"5\">for he put his life in his hand, and smote the Philistine, and Jehovah wrought a great victory for all Israel: thou sawest it, and didst rejoice; wherefore then wilt thou sin against innocent blood, to slay David without a cause?</VERS>\r\n      <VERS vnumber=\"6\">And Saul hearkened unto the voice of Jonathan: and Saul sware, As Jehovah liveth, he shall not be put to death.</VERS>\r\n      <VERS vnumber=\"7\">And Jonathan called David, and Jonathan showed him all those things. And Jonathan brought David to Saul, and he was in his presence, as beforetime.</VERS>\r\n      <VERS vnumber=\"8\">And there was war again: and David went out, and fought with the Philistines, and slew them with a great slaughter; and they fled before him.</VERS>\r\n      <VERS vnumber=\"9\">And an evil spirit from Jehovah was upon Saul, as he sat in his house with his spear in his hand; and David was playing with his hand.</VERS>\r\n      <VERS vnumber=\"10\">And Saul sought to smite David even to the wall with the spear; but he slipped away out of Saul`s presence, and he smote the spear into the wall: and David fled, and escaped that night.</VERS>\r\n      <VERS vnumber=\"11\">And Saul 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 wilt be slain.</VERS>\r\n      <VERS vnumber=\"12\">So Michal let David down through the window: and he went, and fled, and escaped.</VERS>\r\n      <VERS vnumber=\"13\">And Michal took the teraphim, and laid it in the bed, and put a pillow of goats` [hair] at the head thereof, and covered it with the clothes.</VERS>\r\n      <VERS vnumber=\"14\">And when Saul sent messengers to take David, she said, He is sick.</VERS>\r\n      <VERS vnumber=\"15\">And Saul sent the messengers to see David, saying, Bring him up to me in the bed, that I may slay him.</VERS>\r\n      <VERS vnumber=\"16\">And when the messengers came in, behold, the teraphim was in the bed, with the pillow of goats` [hair] at the head thereof.</VERS>\r\n      <VERS vnumber=\"17\">And Saul said unto Michal, Why hast thou deceived me thus, and let mine enemy go, so that he is escaped? And Michal answered Saul, He said unto me, Let me go; why should I kill thee?</VERS>\r\n      <VERS vnumber=\"18\">Now 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.</VERS>\r\n      <VERS vnumber=\"19\">And it was told Saul, saying, Behold, David is at Naioth in Ramah.</VERS>\r\n      <VERS vnumber=\"20\">And Saul sent messengers to take David: and when they saw the company of the prophets prophesying, and Samuel standing as head over them, the Spirit of God came upon the messengers of Saul, and they also prophesied.</VERS>\r\n      <VERS vnumber=\"21\">And when it was told Saul, he sent other messengers, and they also prophesied. And Saul sent messengers again the third time, and they also prophesied.</VERS>\r\n      <VERS vnumber=\"22\">Then went he also to Ramah, and came to the great well that is in Secu: and he asked and said, Where are Samuel and David? And one said, Behold, they are at Naioth in Ramah.</VERS>\r\n      <VERS vnumber=\"23\">And he went thither to Naioth in Ramah: and the Spirit of God came upon him also, and he went on, and prophesied, until he came to Naioth in Ramah.</VERS>\r\n      <VERS vnumber=\"24\">And he also stripped off his clothes, and he also prophesied before Samuel, and lay down naked all that day and all that night. Wherefore they say, Is Saul also among the prophets?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"20\">\r\n      <VERS vnumber=\"1\">And 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?</VERS>\r\n      <VERS vnumber=\"2\">And he said unto him, Far from it; thou shalt not die: behold, my father doeth nothing either great or small, but that he discloseth it unto me; and why should my father hide this thing from me? it is not so.</VERS>\r\n      <VERS vnumber=\"3\">And David sware moreover, and said, Thy father knoweth well that I have found favor in thine eyes; and he saith, Let not Jonathan know this, lest he be grieved: but truly as Jehovah liveth, and as thy soul liveth, there is but a step between me and death.</VERS>\r\n      <VERS vnumber=\"4\">Then said Jonathan unto David, Whatsoever thy soul desireth, I will even do it for thee.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">If thy father miss me at all, then say, David earnestly asked leave of me that he might run to Beth-lehem his city; for it is the yearly sacrifice there for all the family.</VERS>\r\n      <VERS vnumber=\"7\">If he say thus, It is well; thy servant shall have peace: but if he be wroth, then know that evil is determined by him.</VERS>\r\n      <VERS vnumber=\"8\">Therefore deal kindly with thy servant; for thou hast brought thy servant into a covenant of Jehovah with thee: but if there be in me iniquity, slay me thyself; for why shouldest thou bring me to thy father?</VERS>\r\n      <VERS vnumber=\"9\">And Jonathan said, Far be it from thee; for if I should at all know that evil were determined by my father to come upon thee, then would not I tell it thee?</VERS>\r\n      <VERS vnumber=\"10\">Then said David to Jonathan, Who shall tell me if perchance thy father answer thee roughly?</VERS>\r\n      <VERS vnumber=\"11\">And Jonathan said unto David, Come, and let us go out into the field. And they went out both of them into the field.</VERS>\r\n      <VERS vnumber=\"12\">And Jonathan said unto David, Jehovah, the God of Israel, [be witness]: when I have sounded my father about this time to-morrow, [or] the third day, behold, if there be good toward David, shall I not then send unto thee, and disclose it unto thee?</VERS>\r\n      <VERS vnumber=\"13\">Jehovah do so to Jonathan, and more also, should it please my father to do thee evil, if I disclose it not unto thee, and send thee away, that thou mayest go in peace: and Jehovah be with thee, as he hath been with my father.</VERS>\r\n      <VERS vnumber=\"14\">And thou shalt not only while yet I live show me the lovingkindness of Jehovah, that I die not;</VERS>\r\n      <VERS vnumber=\"15\">but also thou shalt not cut off thy kindness from my house for ever; no, not when Jehovah hath cut off the enemies of David every one from the face of the earth.</VERS>\r\n      <VERS vnumber=\"16\">So Jonathan made a covenant with the house of David, [saying], And Jehovah will require it at the hand of David`s enemies.</VERS>\r\n      <VERS vnumber=\"17\">And Jonathan caused David to swear again, for the love that he had to him; for he loved him as he loved his own soul.</VERS>\r\n      <VERS vnumber=\"18\">Then Jonathan said unto him, To-morrow is the new moon: and thou wilt be missed, because thy seat will be empty.</VERS>\r\n      <VERS vnumber=\"19\">And when thou hast stayed three days, 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.</VERS>\r\n      <VERS vnumber=\"20\">And I will shoot three arrows on the side thereof, as though I shot at a mark.</VERS>\r\n      <VERS vnumber=\"21\">And, behold, I will send the lad, [saying], Go, find the arrows. If I say unto the lad, Behold, the arrows are on this side of thee; take them, and come; for there is peace to thee and no hurt, as Jehovah liveth.</VERS>\r\n      <VERS vnumber=\"22\">But if I say thus unto the boy, Behold, the arrows are beyond thee; go thy way; for Jehovah hath sent thee away.</VERS>\r\n      <VERS vnumber=\"23\">And as touching the matter which thou and I have spoken of, behold, Jehovah is between thee and me for ever.</VERS>\r\n      <VERS vnumber=\"24\">So David hid himself in the field: and when the new moon was come, the king sat him down to eat food.</VERS>\r\n      <VERS vnumber=\"25\">And the king sat upon his seat, as at other times, even upon the seat by the wall; and Jonathan stood up, and Abner sat by Saul`s side: but David`s place was empty.</VERS>\r\n      <VERS vnumber=\"26\">Nevertheless Saul spake not anything that day: for he thought, Something hath befallen him, he is not clean; surely he is not clean.</VERS>\r\n      <VERS vnumber=\"27\">And it came to pass on the morrow after the new moon, [which was] the second [day], 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?</VERS>\r\n      <VERS vnumber=\"28\">And Jonathan answered Saul, David earnestly asked leave of me to go to Beth-lehem:</VERS>\r\n      <VERS vnumber=\"29\">and 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 favor in thine eyes, let me get away, I pray thee, and see my brethren. Therefore he is not come unto the king`s table.</VERS>\r\n      <VERS vnumber=\"30\">Then Saul`s anger was kindled against Jonathan, and he said unto him, Thou son of a perverse rebellious woman, do not I know that thou hast chosen the son of Jesse to thine own shame, and unto the shame of thy mother`s nakedness?</VERS>\r\n      <VERS vnumber=\"31\">For 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.</VERS>\r\n      <VERS vnumber=\"32\">And Jonathan answered Saul his father, and said unto him, Wherefore should he be put to death? what hath he done?</VERS>\r\n      <VERS vnumber=\"33\">And Saul cast his spear at him to smite him; whereby Jonathan knew that is was determined of his father to put David to death.</VERS>\r\n      <VERS vnumber=\"34\">So Jonathan arose from the table in fierce anger, and did eat no food the second day of the month; for he was grieved for David, because his father had done him shame.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">And he said unto his lad, Run, find now the arrows which I shoot. And as the lad ran, he shot an arrow beyond him.</VERS>\r\n      <VERS vnumber=\"37\">And 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?</VERS>\r\n      <VERS vnumber=\"38\">And Jonathan cried after the lad, Make speed, haste, stay not. And Jonathan`s lad gathered up the arrows, and came to his master.</VERS>\r\n      <VERS vnumber=\"39\">But the lad knew not anything: only Jonathan and David knew the matter.</VERS>\r\n      <VERS vnumber=\"40\">And Jonathan gave his weapons unto his lad, and said unto him, Go, carry them to the city.</VERS>\r\n      <VERS vnumber=\"41\">And 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.</VERS>\r\n      <VERS vnumber=\"42\">And Jonathan said to David, Go in peace, forasmuch as we have sworn both of us in the name of Jehovah, saying, Jehovah shall 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"21\">\r\n      <VERS vnumber=\"1\">Then came David to Nob to Ahimelech the priest: and Ahimelech came to meet David trembling, and said unto him, Why art thou alone, and no man with thee?</VERS>\r\n      <VERS vnumber=\"2\">And David said unto Ahimelech the priest, The king hath commanded me a business, and hath said unto me, Let no man know anything of the business whereabout I send thee, and what I have commanded thee: and I have appointed the young men to such and such a place.</VERS>\r\n      <VERS vnumber=\"3\">Now therefore what is under thy hand? give me five loaves of bread in my hand, or whatsoever there is present.</VERS>\r\n      <VERS vnumber=\"4\">And the priest answered David, and said, There is no common bread under my hand, but there is holy bread; if only the young men have kept themselves from women.</VERS>\r\n      <VERS vnumber=\"5\">And David answered the priest, and said unto him, Of a truth women have been kept from us about these three days; when I came out, the vessels of the young men were holy, though it was but a common journey; how much more then to-day shall their vessels be holy?</VERS>\r\n      <VERS vnumber=\"6\">So the priest gave him holy [bread]; for there was no bread there but the showbread, that was taken from before Jehovah, to put hot bread in the day when it was taken away.</VERS>\r\n      <VERS vnumber=\"7\">Now a certain man of the servants of Saul was there that day, detained before Jehovah; and his name was Doeg the Edomite, the chiefest of the herdsmen that belonged to Saul.</VERS>\r\n      <VERS vnumber=\"8\">And David said unto Ahimelech, And is there not here under thy hand spear or sword? for I have neither brought my sword nor my weapons with me, because the king`s business required haste.</VERS>\r\n      <VERS vnumber=\"9\">And the priest said, The sword of Goliath the Philistine, whom thou slewest in the vale 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.</VERS>\r\n      <VERS vnumber=\"10\">And David arose, and fled that day for fear of Saul, and went to Achish the king of Gath.</VERS>\r\n      <VERS vnumber=\"11\">And 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?</VERS>\r\n      <VERS vnumber=\"12\">And David laid up these words in his heart, and was sore afraid of Achish the king of Gath.</VERS>\r\n      <VERS vnumber=\"13\">And he changed his behavior 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.</VERS>\r\n      <VERS vnumber=\"14\">Then said Achish unto his servants, Lo, ye see the man is mad; wherefore then have ye brought him to me?</VERS>\r\n      <VERS vnumber=\"15\">Do I lack madmen, that ye have brought this fellow to play the madman in my presence? shall this fellow come into my house?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"22\">\r\n      <VERS vnumber=\"1\">David therefore departed thence, and escaped to the cave of Adullam: and when his brethren and all his father`s house heard it, they went down thither to him.</VERS>\r\n      <VERS vnumber=\"2\">And 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 captain over them: and there were with him about four hundred men.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And he brought them before the king of Moab: and they dwelt with him all the while that David was in the stronghold.</VERS>\r\n      <VERS vnumber=\"5\">And the prophet Gad said unto David, Abide not in the stronghold; depart, and get thee into the land of Judah. Then David departed, and came into the forest of Hereth.</VERS>\r\n      <VERS vnumber=\"6\">And Saul heard that David was discovered, and the men that were with him: now Saul was sitting in Gibeah, under the tamarisk-tree in Ramah, with his spear in his hand, and all his servants were standing about him.</VERS>\r\n      <VERS vnumber=\"7\">And 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, will he make you all captains of thousands and captains of hundreds,</VERS>\r\n      <VERS vnumber=\"8\">that all of you have conspired against me, and there is none that discloseth to me when my son maketh a league with the son of Jesse, and there is none of you that is sorry for me, or discloseth unto me that my son hath stirred up my servant against me, to lie in wait, as at this day?</VERS>\r\n      <VERS vnumber=\"9\">Then answered Doeg the Edomite, who stood by the servants of Saul, and said, I saw the son of Jesse coming to Nob, to Ahimelech the son of Ahitub.</VERS>\r\n      <VERS vnumber=\"10\">And he inquired of Jehovah for him, and gave him victuals, and gave him the sword of Goliath the Philistine.</VERS>\r\n      <VERS vnumber=\"11\">Then 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.</VERS>\r\n      <VERS vnumber=\"12\">And Saul said, Hear now, thou son of Ahitub. And he answered, Here I am, my lord.</VERS>\r\n      <VERS vnumber=\"13\">And 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 inquired of God for him, that he should rise against me, to lie in wait, as at this day?</VERS>\r\n      <VERS vnumber=\"14\">Then Ahimelech answered the king, and said, And who among all thy servants is so faithful as David, who is the king`s son-in-law, and is taken into thy council, and is honorable in thy house?</VERS>\r\n      <VERS vnumber=\"15\">Have I to-day begun to inquire of God for him? be it far from me: let not the king impute anything unto his servant, nor to all the house of my father; for thy servant knoweth nothing of all this, less or more.</VERS>\r\n      <VERS vnumber=\"16\">And the king said, Thou shalt surely die, Ahimelech, thou, and all thy father`s house.</VERS>\r\n      <VERS vnumber=\"17\">And the king said unto the guard that stood about him, Turn, and slay the priests of Jehovah; because their hand also is with David, and because they knew that he fled, and did not disclose it to me. But the servants of the king would not put forth their hand to fall upon the priests of Jehovah.</VERS>\r\n      <VERS vnumber=\"18\">And the king said to Doeg, Turn thou, and fall upon the priests. And Doeg the Edomite turned, and he fell upon the priests, and he slew on that day fourscore and five persons that did wear a linen ephod.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And one of the sons of Ahimelech, the son of Ahitub, named Abiathar, escaped, and fled after David.</VERS>\r\n      <VERS vnumber=\"21\">And Abiathar told David that Saul had slain Jehovah`s priests.</VERS>\r\n      <VERS vnumber=\"22\">And David said unto Abiathar, I knew on 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.</VERS>\r\n      <VERS vnumber=\"23\">Abide thou with me, fear not; for he that seeketh my life seeketh thy life: for with me thou shalt be in safeguard.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"23\">\r\n      <VERS vnumber=\"1\">And they told David, saying, Behold, the Philistines are fighting against Keilah, and are robbing the threshing-floors.</VERS>\r\n      <VERS vnumber=\"2\">Therefore David inquired of Jehovah, saying, Shall I go and smite these Philistines? And Jehovah said unto David, Go, and smite the Philistines, and save Keilah.</VERS>\r\n      <VERS vnumber=\"3\">And David`s men said unto him, Behold, we are afraid here in Judah: how much more then if we go to Keilah against the armies of the Philistines?</VERS>\r\n      <VERS vnumber=\"4\">Then David inquired of Jehovah yet again. And Jehovah answered him, and said, Arise, go down to Keilah; for I will deliver the Philistines into thy hand.</VERS>\r\n      <VERS vnumber=\"5\">And David and his men went to Keilah, and fought with the Philistines, and brought away their cattle, and slew them with a great slaughter. So David save the inhabitants of Keilah.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And it was told Saul that David was come to Keilah. And Saul said, God hath delivered him into my hand; for he is shut in, by entering into a town that hath gates and bars.</VERS>\r\n      <VERS vnumber=\"8\">And Saul summoned all the people to war, to go down to Keilah, to besiege David and his men.</VERS>\r\n      <VERS vnumber=\"9\">And David knew that Saul was devising mischief against him; and he said to Abiathar the priest, Bring hither the ephod.</VERS>\r\n      <VERS vnumber=\"10\">Then said David, O Jehovah, the God of Israel, thy servant hath surely heard that Saul seeketh to come to Keilah, to destroy the city for my sake.</VERS>\r\n      <VERS vnumber=\"11\">Will the men of Keilah deliver me up into his hand? will Saul come down, as thy servant hath heard? O Jehovah, the God of Israel, I beseech thee, tell thy servant. And Jehovah said, He will come down.</VERS>\r\n      <VERS vnumber=\"12\">Then said David, Will the men of Keilah deliver up to me and my men into the hand of Saul? And Jehovah said, They will deliver thee up.</VERS>\r\n      <VERS vnumber=\"13\">Then David and his men, who 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.</VERS>\r\n      <VERS vnumber=\"14\">And David abode in the wilderness in the strongholds, and remained in the hill-country in the wilderness of Ziph. And Saul sought him every day, but God delivered him not into his hand.</VERS>\r\n      <VERS vnumber=\"15\">And David saw that Saul was come out to seek his life: and David was in the wilderness of Ziph in the wood.</VERS>\r\n      <VERS vnumber=\"16\">And Jonathan, Saul`s son, arose, and went to David into the wood, and strengthened his hand in God.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And they two made a covenant before Jehovah: and David abode in the wood, and Jonathan went to his house.</VERS>\r\n      <VERS vnumber=\"19\">Then came up the Ziphites to Saul to Gibeah, saying, Doth not David hide himself with us in the strongholds in the wood, in the hill of Hachilah, which is on the south of the desert?</VERS>\r\n      <VERS vnumber=\"20\">Now therefore, O king, come down, according to all the desire of thy soul to come down; and our part shall be to deliver him up into the king`s hand.</VERS>\r\n      <VERS vnumber=\"21\">And Saul said, Blessed be ye of Jehovah; for ye have had compassion on me.</VERS>\r\n      <VERS vnumber=\"22\">Go, I pray you, make yet more sure, 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 subtly.</VERS>\r\n      <VERS vnumber=\"23\">See therefore, and take knowledge of all the lurking-places where he hideth himself, and come ye again to me of a 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 among all the thousands of Judah.</VERS>\r\n      <VERS vnumber=\"24\">And they arose, and went to Ziph before Saul: but David and his men were in the wilderness of Maon, in the Arabah on the south of the desert.</VERS>\r\n      <VERS vnumber=\"25\">And Saul and his men went to seek him. And they told David: wherefore he came down to the rock, and abode in the wilderness of Maon. And when Saul heard [that], he pursued after David in the wilderness of Maon.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">But there came a messenger unto Saul, saying, Haste thee, and come; for the Philistines have made a raid upon the land.</VERS>\r\n      <VERS vnumber=\"28\">So Saul returned from pursuing after David, and went against the Philistines: therefore they called that place Sela-hammahlekoth.</VERS>\r\n      <VERS vnumber=\"29\">And David went up from thence, and dwelt in the strongholds of En-gedi.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"24\">\r\n      <VERS vnumber=\"1\">And 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 En-gedi.</VERS>\r\n      <VERS vnumber=\"2\">Then 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.</VERS>\r\n      <VERS vnumber=\"3\">And he came to the sheepcotes by the way, where was a cave; and Saul went in to cover his feet. Now David and his men were abiding in the innermost parts of the cave.</VERS>\r\n      <VERS vnumber=\"4\">And the men of David said unto him, Behold, the day of which Jehovah said unto thee, Behold, I will deliver thine enemy into thy hand, and thou shalt do to him as it shall seem good unto thee. Then David arose, and cut off the skirt of Saul`s robe privily.</VERS>\r\n      <VERS vnumber=\"5\">And it came to pass afterward, that David`s heart smote him, because he had cut off Saul`s skirt.</VERS>\r\n      <VERS vnumber=\"6\">And he said unto his men, Jehovah forbid that I should do this thing unto my lord, Jehovah`s anointed, to put forth my hand against him, seeing he is Jehovah`s anointed.</VERS>\r\n      <VERS vnumber=\"7\">So David checked his men with these words, and suffered them not to rise against Saul. And Saul rose up out of the cave, and went on his way.</VERS>\r\n      <VERS vnumber=\"8\">David 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 bowed with his face to the earth, and did obeisance.</VERS>\r\n      <VERS vnumber=\"9\">And David said to Saul, Wherefore hearkenest thou to men`s words, saying, Behold, David seeketh thy hurt?</VERS>\r\n      <VERS vnumber=\"10\">Behold, this day thine eyes have seen how that Jehovah had delivered thee to-day into my hand in the cave: and some bade me kill thee; but [mine eye] spared thee; and I said, I will not put forth my hand against my lord; for he is Jehovah`s anointed.</VERS>\r\n      <VERS vnumber=\"11\">Moreover, 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 my hand, and I have not sinned against thee, though thou huntest after my life to take it.</VERS>\r\n      <VERS vnumber=\"12\">Jehovah judge between me and thee, and Jehovah avenge me of thee; but my hand shall not be upon thee.</VERS>\r\n      <VERS vnumber=\"13\">As saith the proverb of the ancients, Out of the wicked cometh forth wickedness; but my hand shall not be upon thee.</VERS>\r\n      <VERS vnumber=\"14\">After whom is the king of Israel come out? after whom dost thou pursue? after a dead dog, after a flea.</VERS>\r\n      <VERS vnumber=\"15\">Jehovah therefore be judge, and give sentence between me and thee, and see, and plead my cause, and deliver me out of thy hand.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And he said to David, Thou art more righteous than I; for thou hast rendered unto me good, whereas I have rendered unto thee evil.</VERS>\r\n      <VERS vnumber=\"18\">And thou hast declared this day how that thou hast dealt well with me, forasmuch as when Jehovah had delivered me up into thy hand, thou killedst me not.</VERS>\r\n      <VERS vnumber=\"19\">For if a man find his enemy, will he let him go well away? wherefore Jehovah reward thee good for that which thou hast done unto me this day.</VERS>\r\n      <VERS vnumber=\"20\">And now, behold, I know that thou shalt surely be king, and that the kingdom of Israel shall be established in thy hand.</VERS>\r\n      <VERS vnumber=\"21\">Swear now therefore unto me by Jehovah, that thou wilt not cut off my seed after me, and that thou wilt not destroy my name out of my father`s house.</VERS>\r\n      <VERS vnumber=\"22\">And David sware unto Saul. And Saul went home; but David and his men gat them up unto the stronghold.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"25\">\r\n      <VERS vnumber=\"1\">And Samuel died; and all Israel gathered themselves together, and lamented him, and buried him in his house at Ramah. And David arose, and went down to the wilderness of Paran.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">Now the name of the man was Nabal; and the name of his wife Abigail; and the woman was 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.</VERS>\r\n      <VERS vnumber=\"4\">And David heard in the wilderness that Nabal was shearing his sheep.</VERS>\r\n      <VERS vnumber=\"5\">And David sent 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:</VERS>\r\n      <VERS vnumber=\"6\">and thus shall ye say to him that liveth [in prosperity], Peace be unto thee, and peace be to thy house, and peace be unto all that thou hast.</VERS>\r\n      <VERS vnumber=\"7\">And now I have heard that thou hast shearers: thy shepherds have now been with us, and we did them no hurt, neither was there aught missing unto them, all the while they were in Carmel.</VERS>\r\n      <VERS vnumber=\"8\">Ask thy young men, and they will tell thee: wherefore let the young men find favor in thine eyes; for we come in a good day: give, I pray thee, whatsoever cometh to thy hand, unto thy servants, and to thy son David.</VERS>\r\n      <VERS vnumber=\"9\">And when David`s young men came, they spake to Nabal according to all those words in the name of David, and ceased.</VERS>\r\n      <VERS vnumber=\"10\">And Nabal answered David`s servants, and said, Who is David? and who is the son of Jesse? there are many servants now-a-days that break away every man from his master.</VERS>\r\n      <VERS vnumber=\"11\">Shall I then take my bread, and my water, and my flesh that I have killed for my shearers, and give it unto men of whom I know not whence they are?</VERS>\r\n      <VERS vnumber=\"12\">So David`s young men turned on their way, and went back, and came and told him according to all these words.</VERS>\r\n      <VERS vnumber=\"13\">And 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 baggage.</VERS>\r\n      <VERS vnumber=\"14\">But 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 at them.</VERS>\r\n      <VERS vnumber=\"15\">But the men were very good unto us, and we were not hurt, neither missed we anything, as long as we went with them, when we were in the fields:</VERS>\r\n      <VERS vnumber=\"16\">they were a wall unto us both by night and by day, all the while we were with them keeping the sheep.</VERS>\r\n      <VERS vnumber=\"17\">Now therefore know and consider what thou wilt do; for evil is determined against our master, and against all his house: for he is such a worthless fellow, that one cannot speak to him.</VERS>\r\n      <VERS vnumber=\"18\">Then Abigail made haste, and took two hundred loaves, and two bottles of wine, and five sheep ready dressed, and five measures of parched grain, and a hundred clusters of raisins, and two hundred cakes of figs, and laid them on asses.</VERS>\r\n      <VERS vnumber=\"19\">And she said unto her young men, Go on before me; behold, I come after you. But she told not her husband Nabal.</VERS>\r\n      <VERS vnumber=\"20\">And it was so, as she rode on her ass, and came down by the covert of the mountain, that, behold, David and his men came down toward her; and she met them.</VERS>\r\n      <VERS vnumber=\"21\">Now 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 returned me evil for good.</VERS>\r\n      <VERS vnumber=\"22\">God do so unto the enemies of David, and more also, if I leave of all that pertain to him by the morning light so much as one man-child.</VERS>\r\n      <VERS vnumber=\"23\">And when Abigail saw David, she hasted, and alighted from her ass, and fell before David on her face, and bowed herself to the ground.</VERS>\r\n      <VERS vnumber=\"24\">And she fell at his feet, and said, Upon me, my lord, upon me be the iniquity; and let thy handmaid, I pray thee, speak in thine ears, and hear thou the words of thy handmaid.</VERS>\r\n      <VERS vnumber=\"25\">Let not my lord, I pray thee, regard this worthless fellow, even Nabal; for as his name is, so is he; Nabal is his name, and folly is with him: but I thy handmaid saw not the young men of my lord, whom thou didst send.</VERS>\r\n      <VERS vnumber=\"26\">Now therefore, my lord, as Jehovah liveth, and as thy soul liveth, seeing Jehovah hath withholden thee from bloodguiltiness, and from avenging thyself with thine own hand, now therefore let thine enemies, and them that seek evil to my lord, be as Nabal.</VERS>\r\n      <VERS vnumber=\"27\">And now this present which thy servant hath brought unto my lord, let it be given unto the young men that follow my lord.</VERS>\r\n      <VERS vnumber=\"28\">Forgive, I pray thee, the trespass of thy handmaid: for Jehovah will certainly make my lord a sure house, because my lord fighteth the battles of Jehovah; and evil shall not be found in thee all thy days.</VERS>\r\n      <VERS vnumber=\"29\">And though men be risen up to pursue thee, and to seek thy soul, yet the soul of my lord shall be bound in the bundle of life with Jehovah thy God; and the souls of thine enemies, them shall he sling out, as from the hollow of a sling.</VERS>\r\n      <VERS vnumber=\"30\">And it shall come to pass, when Jehovah shall have done to my lord according to all the good that he hath spoken concerning thee, and shall have appointed thee prince over Israel,</VERS>\r\n      <VERS vnumber=\"31\">that this shall be no grief unto thee, nor offence of heart unto my lord, either that thou hast shed blood without cause, or that my lord hath avenged himself. And when Jehovah shall have dealt well with my lord, then remember thy handmaid.</VERS>\r\n      <VERS vnumber=\"32\">And David said to Abigail, Blessed be Jehovah, the God of Israel, who sent thee this day to meet me:</VERS>\r\n      <VERS vnumber=\"33\">and blessed be thy discretion, and blessed be thou, that hast kept me this day from bloodguiltiness, and from avenging myself with mine own hand.</VERS>\r\n      <VERS vnumber=\"34\">For in very deed, as Jehovah, the God of Israel, liveth, who hath withholden me from hurting thee, except thou hadst hasted and come to meet me, surely there had not been left unto Nabal by the morning light so much as one man-child.</VERS>\r\n      <VERS vnumber=\"35\">So David received of her hand that which she had brought him: and he said unto her, Go up in peace to thy house; see, I have hearkened to thy voice, and have accepted thy person.</VERS>\r\n      <VERS vnumber=\"36\">And 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.</VERS>\r\n      <VERS vnumber=\"37\">And it came to pass in the morning, when the wine was gone out of Nabal, that his wife told him these things, and his heart died within him, and he became as a stone.</VERS>\r\n      <VERS vnumber=\"38\">And it came to pass about ten days after, that Jehovah smote Nabal, so that he died.</VERS>\r\n      <VERS vnumber=\"39\">And when David heard that Nabal was dead, he said, Blessed be Jehovah, that hath pleaded the cause of my reproach from the hand of Nabal, and hath kept back his servant from evil: and the evil-doing of Nabal hath Jehovah returned upon his own head. And David sent and spake concerning Abigail, to take her to him to wife.</VERS>\r\n      <VERS vnumber=\"40\">And when the servants of David were come to Abigail to Carmel, they spake unto her, saying, David hath sent us unto thee, to take thee to him to wife.</VERS>\r\n      <VERS vnumber=\"41\">And she arose, and bowed herself with her face to the earth, and said, Behold, thy handmaid is a servant to wash the feet of the servants of my lord.</VERS>\r\n      <VERS vnumber=\"42\">And Abigail hasted, and arose, and rode upon an ass, with five damsels of hers that followed her; and she went after the messengers of David, and became his wife.</VERS>\r\n      <VERS vnumber=\"43\">David also took Ahinoam of Jezreel; and they became both of them his wives.</VERS>\r\n      <VERS vnumber=\"44\">Now Saul had given Michal his daughter, David`s wife, to Palti the son of Laish, who was of Gallim.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"26\">\r\n      <VERS vnumber=\"1\">And the Ziphites came unto Saul to Gibeah, saying, Doth not David hide himself in the hill of Hachilah, which is before the desert?</VERS>\r\n      <VERS vnumber=\"2\">Then 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.</VERS>\r\n      <VERS vnumber=\"3\">And Saul encamped in the hill of Hachilah, which is before the desert, by the way. But David abode in the wilderness, and he saw that Saul came after him into the wilderness.</VERS>\r\n      <VERS vnumber=\"4\">David therefore sent out spies, and understood that Saul was come of a certainty.</VERS>\r\n      <VERS vnumber=\"5\">And David arose, and came to the place where Saul had encamped; and David beheld the place where Saul lay, and Abner the son of Ner, the captain of his host: and Saul lay within the place of the wagons, and the people were encamped round about him.</VERS>\r\n      <VERS vnumber=\"6\">Then 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.</VERS>\r\n      <VERS vnumber=\"7\">So David and Abishai came to the people by night: and, behold, Saul lay sleeping within the place of the wagons, with his spear stuck in the ground at his head; and Abner and the people lay round about him.</VERS>\r\n      <VERS vnumber=\"8\">Then said Abishai to David, God hath delivered up thine enemy into thy hand this day: now therefore let me smite him, I pray thee, with the spear to the earth at one stroke, and I will not smite him the second time.</VERS>\r\n      <VERS vnumber=\"9\">And David said to Abishai, Destroy him not; for who can put forth his hand against Jehovah`s anointed, and be guiltless?</VERS>\r\n      <VERS vnumber=\"10\">And David said, As Jehovah liveth, Jehovah will smite him; or his day shall come to die; or he shall go down into battle and perish.</VERS>\r\n      <VERS vnumber=\"11\">Jehovah forbid that I should put forth my hand against Jehovah`s anointed: but now take, I pray thee, the spear that is at his head, and the cruse of water, and let us go.</VERS>\r\n      <VERS vnumber=\"12\">So David took the spear and the cruse of water from Saul`s head; and they gat them away: and no man saw it, nor knew it, neither did any awake; for they were all asleep, because a deep sleep from Jehovah was fallen upon them.</VERS>\r\n      <VERS vnumber=\"13\">Then David went over to the other side, and stood on the top of the mountain afar off; a great space being between them;</VERS>\r\n      <VERS vnumber=\"14\">and 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?</VERS>\r\n      <VERS vnumber=\"15\">And David said to Abner, Art not thou a [valiant] man? and who is like to thee in Israel? wherefore then hast thou not kept watch over thy lord the king? for there came one of the people in to destroy the king thy lord.</VERS>\r\n      <VERS vnumber=\"16\">This thing is not good that thou hast done. As Jehovah liveth, ye are worthy to die, because ye have not kept watch over your lord, Jehovah`s anointed. And now see where the king`s spear is, and the cruse of water that was at his head.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And he said, Wherefore doth my lord pursue after his servant? for what have I done? or what evil is in my hand?</VERS>\r\n      <VERS vnumber=\"19\">Now therefore, I pray thee, let my lord the king hear the words of his servant. If it be Jehovah that hath stirred thee up against me, let him accept an offering: but if it be the children of men, cursed be they before Jehovah: for they have driven me out this day that I should not cleave unto the inheritance of Jehovah, saying, Go, serve other gods.</VERS>\r\n      <VERS vnumber=\"20\">Now therefore, let not my blood fall to the earth away from the presence of Jehovah: for the king of Israel is come out to seek a flea, as when one doth hunt a partridge in the mountains.</VERS>\r\n      <VERS vnumber=\"21\">Then said Saul, I have sinned: return, my son David; for I will no more do thee harm, because my life was precious in thine eyes this day: behold, I have played the fool, and have erred exceedingly.</VERS>\r\n      <VERS vnumber=\"22\">And David answered and said, Behold the spear, O king! let then one of the young men come over and fetch it.</VERS>\r\n      <VERS vnumber=\"23\">And Jehovah will render to every man his righteousness and his faithfulness; forasmuch as Jehovah delivered thee into my hand to-day, and I would not put forth my hand against Jehovah`s anointed.</VERS>\r\n      <VERS vnumber=\"24\">And, 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 Jehovah, and let him deliver me out of all tribulation.</VERS>\r\n      <VERS vnumber=\"25\">Then Saul said to David, Blessed be thou, my son David: thou shalt both do mightily, and shalt surely prevail. So David went his way, and Saul returned to his place.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"27\">\r\n      <VERS vnumber=\"1\">And 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 escape into the land of the Philistines; and Saul will despair of me, to seek me any more in all the borders of Israel: so shall I escape out of his hand.</VERS>\r\n      <VERS vnumber=\"2\">And David arose, and passed over, he and the six hundred men that were with him, unto Achish the son of Maoch, king of Gath.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And it was told Saul that David was fled to Gath: and he sought no more again for him.</VERS>\r\n      <VERS vnumber=\"5\">And David said unto Achish, If now I have found favor in thine eyes, let them give me a place in one of the cities in the country, that I may dwell there: for why should thy servant dwell in the royal city with thee?</VERS>\r\n      <VERS vnumber=\"6\">Then Achish gave him Ziklag that day: wherefore Ziklag pertaineth unto the kings of Judah unto this day.</VERS>\r\n      <VERS vnumber=\"7\">And the number of the days that David dwelt in the country of the Philistines was a full year and four months.</VERS>\r\n      <VERS vnumber=\"8\">And David and his men went up, and made a raid upon the Geshurites, and the Girzites, and the Amalekites; for those [nations] were the inhabitants of the land, who were of old, as thou goest to Shur, even unto the land of Egypt.</VERS>\r\n      <VERS vnumber=\"9\">And David smote the land, and saved neither man nor woman alive, and took away the sheep, and the oxen, and the asses, and the camels, and the apparel; and he returned, and came to Achish.</VERS>\r\n      <VERS vnumber=\"10\">And Achish said, Against whom have ye made a raid to-day? And David said, Against the South of Judah, and against the South of the Jerahmeelites, and against the South of the Kenites.</VERS>\r\n      <VERS vnumber=\"11\">And David saved neither man nor woman alive, to bring them to Gath, saying, Lest they should tell of us, saying, So did David, and so hath been his manner all the while he hath dwelt in the country of the Philistines.</VERS>\r\n      <VERS vnumber=\"12\">And Achish believed David, saying, He hath made his people Israel utterly to abhor him; therefore he shall be my servant for ever.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"28\">\r\n      <VERS vnumber=\"1\">And it came to pass in those days, that the Philistines gathered their hosts together for warfare, to fight with Israel. And Achish said unto David, Know thou assuredly, that thou shalt go out with me in the host, thou and thy men.</VERS>\r\n      <VERS vnumber=\"2\">And David said to Achish, Therefore thou shalt know what thy servant will do. And Achish said to David, Therefore will I make thee keeper of my head for ever.</VERS>\r\n      <VERS vnumber=\"3\">Now 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.</VERS>\r\n      <VERS vnumber=\"4\">And the Philistines gathered themselves together, and came and encamped in Shunem: and Saul gathered all Israel together, and they encamped in Gilboa.</VERS>\r\n      <VERS vnumber=\"5\">And when Saul saw the host of the Philistines, he was afraid, and his heart trembled greatly.</VERS>\r\n      <VERS vnumber=\"6\">And when Saul inquired of Jehovah, Jehovah answered him not, neither by dreams, nor by Urim, nor by prophets.</VERS>\r\n      <VERS vnumber=\"7\">Then said Saul unto his servants, Seek me a woman that hath a familiar spirit, that I may go to her, and inquire of her. And his servants said to him, Behold, there is a woman that hath a familiar spirit at En-dor.</VERS>\r\n      <VERS vnumber=\"8\">And Saul disguised himself, and put on other raiment, and went, he and two men with him, and they came to the woman by night: and he said, Divine unto me, I pray thee, by the familiar spirit, and bring me up whomsoever I shall name unto thee.</VERS>\r\n      <VERS vnumber=\"9\">And 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?</VERS>\r\n      <VERS vnumber=\"10\">And Saul sware to her by Jehovah, saying, As Jehovah liveth, there shall no punishment happen to thee for this thing.</VERS>\r\n      <VERS vnumber=\"11\">Then said the woman, Whom shall I bring up unto thee? And he said, Bring me up Samuel.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And the king said unto her, Be not afraid: for what seest thou? And the woman said unto Saul, I see a god coming up out of the earth.</VERS>\r\n      <VERS vnumber=\"14\">And he said unto her, What form is he of? And she said, An old man cometh up; and he is covered with a robe. And Saul perceived that it was Samuel, and he bowed with his face to the ground, and did obeisance.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And Samuel said, Wherefore then dost thou ask of me, seeing Jehovah is departed from thee, and is become thine adversary?</VERS>\r\n      <VERS vnumber=\"17\">And Jehovah hath done unto thee, as he spake by me: and Jehovah hath rent the kingdom out of thy hand, and given it to thy neighbor, even to David.</VERS>\r\n      <VERS vnumber=\"18\">Because thou obeyedst not the voice of Jehovah, and didst not execute his fierce wrath upon Amalek, therefore hath Jehovah done this thing unto thee this day.</VERS>\r\n      <VERS vnumber=\"19\">Moreover Jehovah will deliver Israel also with thee into the hand of the Philistines; and to-morrow shalt thou and thy sons be with me: Jehovah will deliver the host of Israel also into the hand of the Philistines.</VERS>\r\n      <VERS vnumber=\"20\">Then Saul fell straightway his full length upon 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.</VERS>\r\n      <VERS vnumber=\"21\">And the woman came unto Saul, and saw that he was sore troubled, and said unto him, Behold, thy handmaid hath hearkened unto thy voice, and I have put my life in my hand, and have hearkened unto thy words which thou spakest unto me.</VERS>\r\n      <VERS vnumber=\"22\">Now therefore, I pray thee, hearken thou also unto the voice of thy handmaid, and let me set a morsel of bread before thee; and eat, that thou mayest have strength, when thou goest on thy way.</VERS>\r\n      <VERS vnumber=\"23\">But he refused, and said, I will not eat. But his servants, together with the woman, constrained him; and he hearkened unto their voice. So he arose from the earth, and sat upon the bed.</VERS>\r\n      <VERS vnumber=\"24\">And the woman had a fatted calf in the house; and she hasted, and killed it; and she took flour, and kneaded it, and did bake unleavened bread thereof:</VERS>\r\n      <VERS vnumber=\"25\">and she brought it before Saul, and before his servants; and they did eat. Then they rose up, and went away that night.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"29\">\r\n      <VERS vnumber=\"1\">Now the Philistines gathered together all their hosts to Aphek: and the Israelites encamped by the fountain which is in Jezreel.</VERS>\r\n      <VERS vnumber=\"2\">And the lords of the Philistines passed on by hundreds, and by thousands; and David and his men passed on in the rearward with Achish.</VERS>\r\n      <VERS vnumber=\"3\">Then 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, who hath been with me these days, or [rather] these years, and I have found no fault in him since he fell away [unto me] unto this day?</VERS>\r\n      <VERS vnumber=\"4\">But he princes of the Philistines were wroth with him; and the princes of the Philistines said unto him, Make the man return, that he may go back to his place where thou hast appointed him, and let him not go down with us to battle, lest in the battle he become an adversary to us: for wherewith should this [fellow] reconcile himself unto his lord? should it not be with the heads of these men?</VERS>\r\n      <VERS vnumber=\"5\">Is not this David, of whom they sang one to another in dances, saying, Saul hath slain his thousands,  And David his ten thousands?</VERS>\r\n      <VERS vnumber=\"6\">Then Achish called David, and said unto him, As Jehovah 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 favor thee not.</VERS>\r\n      <VERS vnumber=\"7\">Wherefore now return, and go in peace, that thou displease not the lords of the Philistines.</VERS>\r\n      <VERS vnumber=\"8\">And David said unto Achish, But what have I done? and what hast thou found in thy servant so long as I have been before thee unto this day, that I may not go and fight against the enemies of my lord the king?</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">Wherefore now rise up early in the morning with the servants of thy lord that are come with thee; and as soon as ye are up early in the morning, and have light, depart.</VERS>\r\n      <VERS vnumber=\"11\">So David rose up early, he and his men, to depart in the morning, to return into the land of the Philistines. And the Philistines went up to Jezreel.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"30\">\r\n      <VERS vnumber=\"1\">And it came to pass, when David and his men were come to Ziklag on the third day, that the Amalekites had made a raid upon the South, and upon Ziklag, and had smitten Ziklag, and burned it with fire,</VERS>\r\n      <VERS vnumber=\"2\">and had taken captive the women [and all] that were therein, both small and great: they slew not any, but carried them off, and went their way.</VERS>\r\n      <VERS vnumber=\"3\">And when David and his men came to the city, behold, it was burned with fire; and their wives, and their sons, and their daughters, were taken captive.</VERS>\r\n      <VERS vnumber=\"4\">Then David and the people that were with him lifted up their voice and wept, until they had no more power to weep.</VERS>\r\n      <VERS vnumber=\"5\">And David`s two wives were taken captive, Ahinoam the Jezreelitess, and Abigail the wife of Nabal the Carmelite.</VERS>\r\n      <VERS vnumber=\"6\">And 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 strengthened himself in Jehovah his God.</VERS>\r\n      <VERS vnumber=\"7\">And David said to Abiathar the priest, the son of Ahimelech, I pray thee, bring me hither the ephod. And Abiathar brought thither the ephod to David.</VERS>\r\n      <VERS vnumber=\"8\">And David inquired of Jehovah, saying, If I pursue after this troop, shall I overtake them? And he answered him, Pursue; for thou shalt surely overtake [them], and shalt without fail recover [all].</VERS>\r\n      <VERS vnumber=\"9\">So 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.</VERS>\r\n      <VERS vnumber=\"10\">But David pursued, he and four hundred men; for two hundred stayed behind, who were so faint that they could not go over the brook Besor.</VERS>\r\n      <VERS vnumber=\"11\">And they found an Egyptian in the field, and brought him to David, and gave him bread, and he did eat; and they gave him water to drink.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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 ago I fell sick.</VERS>\r\n      <VERS vnumber=\"14\">We made a raid upon the South of the Cherethites, and upon that which belongeth to Judah, and upon the South of Caleb; and we burned Ziklag with fire.</VERS>\r\n      <VERS vnumber=\"15\">And David said to him, Wilt thou bring me down to this troop? And he said, Swear unto me by God, that thou wilt neither kill me, nor deliver me up into the hands of my master, and I will bring thee down to this troop.</VERS>\r\n      <VERS vnumber=\"16\">And when he had brought him down, behold, they were spread abroad over all the ground, 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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, who rode upon camels and fled.</VERS>\r\n      <VERS vnumber=\"18\">And David recovered all that the Amalekites had taken; and David rescued his two wives.</VERS>\r\n      <VERS vnumber=\"19\">And there was nothing lacking to them, neither small nor great, neither sons nor daughters, neither spoil, nor anything that they had taken to them: David brought back all.</VERS>\r\n      <VERS vnumber=\"20\">And David took all the flocks and the herds, [which] they drove before those [other] cattle, and said, This is David`s spoil.</VERS>\r\n      <VERS vnumber=\"21\">And David came to the two hundred men, who were so faint that they could not follow David, whom also they had made 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.</VERS>\r\n      <VERS vnumber=\"22\">Then answered all the wicked men and base fellows, of those that went with David, and said, Because they went not with us, we will not give them aught of the spoil that we have recovered, save to every man his wife and his children, that he may lead them away, and depart.</VERS>\r\n      <VERS vnumber=\"23\">Then said David, Ye shall not do so, my brethren, with that which Jehovah hath given unto us, who hath preserved us, and delivered the troop that came against us into our hand.</VERS>\r\n      <VERS vnumber=\"24\">And who will hearken unto you in this matter? for as his share is that goeth down to the battle, so shall his share be that tarrieth by the baggage: they shall share alike.</VERS>\r\n      <VERS vnumber=\"25\">And it was so from that day forward, that he made it a statute and an ordinance for Israel unto this day.</VERS>\r\n      <VERS vnumber=\"26\">And 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 Jehovah:</VERS>\r\n      <VERS vnumber=\"27\">To them that were in Beth-el, and to them that were in Ramoth of the South, and to them that were in Jattir,</VERS>\r\n      <VERS vnumber=\"28\">and to them that were in Aroer, and to them that were in Siphmoth, and to them that were in Eshtemoa,</VERS>\r\n      <VERS vnumber=\"29\">and to them that were in Racal, and to them that were in the cities of the Jerahmeelites, and to them that were in the cities of the Kenites,</VERS>\r\n      <VERS vnumber=\"30\">and to them that were in Hormah, and to them that were in Bor-ashan, and to them that were in Athach,</VERS>\r\n      <VERS vnumber=\"31\">and to them that were in Hebron, and to all the places where David himself and his men were wont to haunt.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"31\">\r\n      <VERS vnumber=\"1\">Now the Philistines fought against Israel: and the men of Israel fled from before the Philistines, and fell down slain in mount Gilboa.</VERS>\r\n      <VERS vnumber=\"2\">And the Philistines followed hard upon Saul and upon his sons; and the Philistines slew Jonathan, and Abinadab, and Malchishua, the sons of Saul.</VERS>\r\n      <VERS vnumber=\"3\">And the battle went sore against Saul, and the archers overtook him; and he was greatly distressed by reason of the archers.</VERS>\r\n      <VERS vnumber=\"4\">Then said Saul to his armorbearer, Draw thy sword, and thrust me through therewith, lest these uncircumcised come and thrust me through, and abuse me. But his armorbearer would not; for he was sore afraid. Therefore Saul took his sword, and fell upon it.</VERS>\r\n      <VERS vnumber=\"5\">And when his armorbearer saw that Saul was dead, he likewise fell upon his sword, and died with him.</VERS>\r\n      <VERS vnumber=\"6\">So Saul died, and his three sons, and his armorbearer, and all his men, that same day together.</VERS>\r\n      <VERS vnumber=\"7\">And when the men of Israel that were on the other side of the valley, and they that were beyond the 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And they cut off his head, and stripped off his armor, and sent into the land of the Philistines round about, to carry the tidings unto the house of their idols, and to the people.</VERS>\r\n      <VERS vnumber=\"10\">And they put his armor in the house of the Ashtaroth; and they fastened his body to the wall of Beth-shan.</VERS>\r\n      <VERS vnumber=\"11\">And when the inhabitants of Jabesh-gilead heard concerning him that which the Philistines had done to Saul,</VERS>\r\n      <VERS vnumber=\"12\">all the valiant men arose, and went all night, and took the body of Saul and the bodies of his sons from the wall of Beth-shan; and they came to Jabesh, and burnt them there.</VERS>\r\n      <VERS vnumber=\"13\">And they took their bones, and buried them under the tamarisk-tree in Jabesh, and fasted seven days.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"10\" bname=\"2 Samuel\" bsname=\"2Sam\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">And 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;</VERS>\r\n      <VERS vnumber=\"2\">it came 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.</VERS>\r\n      <VERS vnumber=\"3\">And David said unto him, From whence comest thou? And he said unto him, Out of the camp of Israel am I escaped.</VERS>\r\n      <VERS vnumber=\"4\">And David said unto him, How went the matter? I pray thee, tell me. And he answered, 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.</VERS>\r\n      <VERS vnumber=\"5\">And David said unto the young man that told him, How knowest thou that Saul and Jonathan his son are dead?</VERS>\r\n      <VERS vnumber=\"6\">And the young man that told him said, As I happened by chance upon mount Gilboa, behold, Saul was leaning upon his spear; and, lo, the chariots and the horsemen followed hard after him.</VERS>\r\n      <VERS vnumber=\"7\">And when he looked behind him, he saw me, and called unto me. And I answered, Here am I.</VERS>\r\n      <VERS vnumber=\"8\">And he said unto me, Who art thou? And I answered him, I am an Amalekite.</VERS>\r\n      <VERS vnumber=\"9\">And he said unto me, Stand, I pray thee, beside me, and slay me; for anguish hath taken hold of me, because my life is yet whole in me.</VERS>\r\n      <VERS vnumber=\"10\">So I stood beside 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.</VERS>\r\n      <VERS vnumber=\"11\">Then David took hold on his clothes, and rent them; and likewise all the men that were with him:</VERS>\r\n      <VERS vnumber=\"12\">and they mourned, and wept, and fasted until even, for Saul, and for Jonathan his son, and for the people of Jehovah, and for the house of Israel; because they were fallen by the sword.</VERS>\r\n      <VERS vnumber=\"13\">And David said unto the young man that told him, Whence art thou? And he answered, I am the son of a sojourner, an Amalekite.</VERS>\r\n      <VERS vnumber=\"14\">And David said unto him, How wast thou not afraid to put forth thy hand to destroy Jehovah`s anointed?</VERS>\r\n      <VERS vnumber=\"15\">And David called one of the young men, and said, Go near, and fall upon him. And he smote him, so that he died.</VERS>\r\n      <VERS vnumber=\"16\">And David said unto him, Thy blood be upon thy head; for thy mouth hath testified against thee, saying, I have slain Jehovah`s anointed.</VERS>\r\n      <VERS vnumber=\"17\">And David lamented with this lamentation over Saul and over Jonathan his son</VERS>\r\n      <VERS vnumber=\"18\">(and he bade them teach the children of Judah [the song of] the bow: behold, it is written in the book of Jashar):</VERS>\r\n      <VERS vnumber=\"19\">Thy glory, O Israel, is slain upon thy high places! How are the mighty fallen!</VERS>\r\n      <VERS vnumber=\"20\">Tell it not in Gath, Publish it not in the streets of Ashkelon; Lest the daughters of the Philistines rejoice, Lest the daughters of the uncircumcised triumph.</VERS>\r\n      <VERS vnumber=\"21\">Ye mountains of Gilboa, Let there be no dew nor rain upon you, neither fields of       offerings: For there the shield of the mighty was vilely cast away, The shield of Saul, not anointed with oil.</VERS>\r\n      <VERS vnumber=\"22\">From 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.</VERS>\r\n      <VERS vnumber=\"23\">Saul 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.</VERS>\r\n      <VERS vnumber=\"24\">Ye daughters of Israel, weep over Saul, Who clothed you in scarlet delicately, Who put ornaments of gold upon your apparel.</VERS>\r\n      <VERS vnumber=\"25\">How are the mighty fallen in the midst of the battle! Jonathan is slain upon thy high places.</VERS>\r\n      <VERS vnumber=\"26\">I 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.</VERS>\r\n      <VERS vnumber=\"27\">How are the mighty fallen, And the weapons of war perished!</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">And it came to pass after this, that David inquired of Jehovah, saying, Shall I go up into any of the cities of Judah? And Jehovah said unto him, Go up. And David said, Whither shall I go up? And he said, Unto Hebron.</VERS>\r\n      <VERS vnumber=\"2\">So David went up thither, and his two wives also, Ahinoam the Jezreelitess, and Abigail the wife of Nabal the Carmelite.</VERS>\r\n      <VERS vnumber=\"3\">And his men that were with him did David bring up, every man with his household: and they dwelt in the cities of Hebron.</VERS>\r\n      <VERS vnumber=\"4\">And the men of Judah came, and there they anointed David king over the house of Judah.     And they told David, saying, The men of Jabesh-gilead were they that buried Saul.</VERS>\r\n      <VERS vnumber=\"5\">And David sent messengers unto the men of Jabesh-gilead, and said unto them, Blessed be ye of Jehovah, that ye have showed this kindness unto your lord, even unto Saul, and have buried him.</VERS>\r\n      <VERS vnumber=\"6\">And now Jehovah show lovingkindness and truth unto you: and I also will requite you this kindness, because ye have done this thing.</VERS>\r\n      <VERS vnumber=\"7\">Now therefore let your hands be strong, and be ye valiant; for Saul your lord is dead, and also the house of Judah have anointed me king over them.</VERS>\r\n      <VERS vnumber=\"8\">Now Abner the son of Ner, captain of Saul`s host, had taken Ish-bosheth the son of Saul, and brought him over to Mahanaim;</VERS>\r\n      <VERS vnumber=\"9\">and he made him king over Gilead, and over the Ashurites, and over Jezreel, and over Ephraim, and over Benjamin, and over all Israel.</VERS>\r\n      <VERS vnumber=\"10\">Ish-bosheth, Saul`s son, was forty years old when he began to reign over Israel, and he reigned two years. But the house of Judah followed David.</VERS>\r\n      <VERS vnumber=\"11\">And the time that David was king in Hebron over the house of Judah was seven years and six months.</VERS>\r\n      <VERS vnumber=\"12\">And Abner the son of Ner, and the servants of Ish-bosheth the son of Saul, went out from Mahanaim to Gibeon.</VERS>\r\n      <VERS vnumber=\"13\">And Joab the son of Zeruiah, and the servants of David, went out, and met them 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.</VERS>\r\n      <VERS vnumber=\"14\">And Abner said to Joab, Let the young men, I pray thee, arise and play before us. And Joab said, Let them arise.</VERS>\r\n      <VERS vnumber=\"15\">Then they arose and went over by number: twelve for Benjamin, and for Ish-bosheth the son of Saul, and twelve of the servants of David.</VERS>\r\n      <VERS vnumber=\"16\">And 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 Helkath-hazzurim, which is in Gibeon.</VERS>\r\n      <VERS vnumber=\"17\">And the battle was very sore that day: and Abner was beaten, and the men of Israel, before the servants of David.</VERS>\r\n      <VERS vnumber=\"18\">And the three sons of Zeruiah were there, Joab, and Abishai, and Asahel: and Asahel was as light of foot as a wild roe.</VERS>\r\n      <VERS vnumber=\"19\">And Asahel pursued after Abner; and in going he turned not to the right hand nor to the left from following Abner.</VERS>\r\n      <VERS vnumber=\"20\">Then Abner looked behind him, and said, Is it thou, Asahel? And he answered, It is I.</VERS>\r\n      <VERS vnumber=\"21\">And 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 armor. But Asahel would not turn aside from following him.</VERS>\r\n      <VERS vnumber=\"22\">And 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?</VERS>\r\n      <VERS vnumber=\"23\">Howbeit he refused to turn aside: wherefore Abner with the hinder end of the spear smote him in the body, so 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.</VERS>\r\n      <VERS vnumber=\"24\">But Joab 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.</VERS>\r\n      <VERS vnumber=\"25\">And the children of Benjamin gathered themselves together after Abner, and became one band, and stood on the top of a hill.</VERS>\r\n      <VERS vnumber=\"26\">Then 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?</VERS>\r\n      <VERS vnumber=\"27\">And Joab said, As God liveth, if thou hadst not spoken, surely then in the morning the people had gone away, nor followed every one his brother.</VERS>\r\n      <VERS vnumber=\"28\">So Joab blew the trumpet; and all the people stood still, and pursued after Israel no more, neither fought they any more.</VERS>\r\n      <VERS vnumber=\"29\">And Abner and his men went all that night through the Arabah; and they passed over the Jordan, and went through all Bithron, and came to Mahanaim.</VERS>\r\n      <VERS vnumber=\"30\">And Joab returned from following Abner: and when he had gathered all the people together, there lacked of David`s servants nineteen men and Asahel.</VERS>\r\n      <VERS vnumber=\"31\">But the servants of David had smitten of Benjamin, and of Abner`s men, [so that] three hundred and threescore men died.</VERS>\r\n      <VERS vnumber=\"32\">And they took up Asahel, and buried him in the sepulchre of his father, which was in Beth-lehem. And Joab and his men went all night, and the day brake upon them at Hebron.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Now there was long war between the house of Saul and the house of David: and David waxed stronger and stronger, but the house of Saul waxed weaker and weaker.</VERS>\r\n      <VERS vnumber=\"2\">And unto David were sons born in Hebron: and his first-born was Amnon, of Ahinoam the Jezreelitess;</VERS>\r\n      <VERS vnumber=\"3\">and 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;</VERS>\r\n      <VERS vnumber=\"4\">and the fourth, Adonijah the son of Haggith; and the fifth, Shephatiah the son of Abital;</VERS>\r\n      <VERS vnumber=\"5\">and the sixth, Ithream, of Eglah, David`s wife. These were born to David in Hebron.</VERS>\r\n      <VERS vnumber=\"6\">And it came to pass, while there was war between the house of Saul and the house of David, that Abner made himself strong in the house of Saul.</VERS>\r\n      <VERS vnumber=\"7\">Now Saul had a concubine, whose name was Rizpah, the daughter of Aiah: and [Ish-bosheth] said to Abner, Wherefore hast thou gone in unto my father`s concubine?</VERS>\r\n      <VERS vnumber=\"8\">Then was Abner very wroth for the words of Ish-bosheth, and said, Am I a dog`s head that belongeth to Judah? This day do I show kindness unto the house of Saul thy father, to his brethren, and to his friends, and have not delivered thee into the hand of David; and yet thou chargest me this day with a fault concerning this woman.</VERS>\r\n      <VERS vnumber=\"9\">God do so to Abner, and more also, if, as Jehovah hath sworn to David, I do not even so to him;</VERS>\r\n      <VERS vnumber=\"10\">to transfer the kingdom from the house of Saul, and to set up the throne of David over Israel and over Judah, from Dan even to Beer-sheba.</VERS>\r\n      <VERS vnumber=\"11\">And he could not answer Abner another word, because he feared him.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And David sent messengers to Ish-bosheth, Saul`s son, saying, Deliver me my wife Michal, whom I betrothed to me for a hundred foreskins of the Philistines.</VERS>\r\n      <VERS vnumber=\"15\">And Ish-bosheth sent, and took her from her husband, even from Paltiel the son of Laish.</VERS>\r\n      <VERS vnumber=\"16\">And her husband went with her, weeping as he went, and followed her to Bahurim. Then said Abner unto him, Go, return: and he returned.</VERS>\r\n      <VERS vnumber=\"17\">And Abner had communication with the elders of Israel, saying, In times past ye sought for David to be king over you:</VERS>\r\n      <VERS vnumber=\"18\">now then do it; for Jehovah 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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 to the whole house of Benjamin.</VERS>\r\n      <VERS vnumber=\"20\">So Abner came to David to Hebron, and twenty men with him. And David made Abner and the men that were with him a feast.</VERS>\r\n      <VERS vnumber=\"21\">And Abner said unto David, I will arise and go, and will gather all Israel unto my lord the king, that they may make a covenant with thee, and that thou mayest reign over all that thy soul desireth. And David sent Abner away; and he went in peace.</VERS>\r\n      <VERS vnumber=\"22\">And, behold, the servants of David and Joab came from a foray, 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.</VERS>\r\n      <VERS vnumber=\"23\">When 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.</VERS>\r\n      <VERS vnumber=\"24\">Then 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?</VERS>\r\n      <VERS vnumber=\"25\">Thou 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.</VERS>\r\n      <VERS vnumber=\"26\">And when Joab was come out from David, he sent messengers after Abner, and they brought him back from the well of Sirah: but David knew it not.</VERS>\r\n      <VERS vnumber=\"27\">And when Abner was returned to Hebron, Joab took him aside into the midst of the gate to speak with him quietly, and smote him there in the body, so that he died, for the blood of Asahel his brother.</VERS>\r\n      <VERS vnumber=\"28\">And afterward, when David heard it, he said, I and my kingdom are guiltless before Jehovah for ever of the blood of Abner the son of Ner:</VERS>\r\n      <VERS vnumber=\"29\">let it fall upon the head of Joab, and upon 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 by the sword, or that lacketh bread.</VERS>\r\n      <VERS vnumber=\"30\">So Joab and Abishai his brother slew Abner, because he had killed their brother Asahel at Gibeon in the battle.</VERS>\r\n      <VERS vnumber=\"31\">And 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 followed the bier.</VERS>\r\n      <VERS vnumber=\"32\">And they buried Abner in Hebron: and the king lifted up his voice, and wept at the grave of Abner; and all the people wept.</VERS>\r\n      <VERS vnumber=\"33\">And the king lamented for Abner, and said, Should Abner die as a fool dieth?</VERS>\r\n      <VERS vnumber=\"34\">Thy hands were not bound, nor thy feet put into fetters: As a man falleth before the children of iniquity, so didst thou       fall.     And all the people wept again over him.</VERS>\r\n      <VERS vnumber=\"35\">And all the people came to cause David to eat bread while it was yet day; but David sware, saying, God do so to me, and more also, if I taste bread, or aught else, till the sun be down.</VERS>\r\n      <VERS vnumber=\"36\">And all the people took notice of it, and it pleased them; as whatsoever the king did pleased all the people.</VERS>\r\n      <VERS vnumber=\"37\">So all the people and all Israel understood that day that it was not of the king to slay Abner the son of Ner.</VERS>\r\n      <VERS vnumber=\"38\">And the king said unto his servants, Know ye not that there is a prince and a great man fallen this day in Israel?</VERS>\r\n      <VERS vnumber=\"39\">And I am this day weak, though anointed king; and these men the sons of Zeruiah are too hard for me: Jehovah reward the evil-doer according to his wickedness.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">And when [Ish-bosheth], Saul`s son, heard that Abner was dead in Hebron, his hands became feeble, and all the Israelites were troubled.</VERS>\r\n      <VERS vnumber=\"2\">And [Ish-bosheth], 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 the Beerothite, of the children of Benjamin (for Beeroth also is reckoned to Benjamin:</VERS>\r\n      <VERS vnumber=\"3\">and the Beerothites fled to Gittaim, and have been sojourners there until this day).</VERS>\r\n      <VERS vnumber=\"4\">Now 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.</VERS>\r\n      <VERS vnumber=\"5\">And the sons of Rimmon the Beerothite, Rechab and Baanah, went, and came about the heat of the day to the house of Ish-bosheth, as he took his rest at noon.</VERS>\r\n      <VERS vnumber=\"6\">And they came thither into the midst of the house, as though they would have fetched wheat; and they smote him in the body: and Rechab and Baanah his brother escaped.</VERS>\r\n      <VERS vnumber=\"7\">Now when they came into the house, as he lay on his bed in his bedchamber, they smote him, and slew him, and beheaded him, and took his head, and went by the way of the Arabah all night.</VERS>\r\n      <VERS vnumber=\"8\">And they brought the head of Ish-bosheth unto David to Hebron, and said to the king, Behold, the head of Ish-bosheth, the son of Saul, thine enemy, who sought thy life; and Jehovah hath avenged my lord the king this day of Saul, and of his seed.</VERS>\r\n      <VERS vnumber=\"9\">And David answered Rechab and Baanah his brother, the sons of Rimmon the Beerothite, and said unto them, As Jehovah liveth, who hath redeemed my soul out of all adversity,</VERS>\r\n      <VERS vnumber=\"10\">when one told me, saying, Behold, Saul is dead, thinking to have brought good tidings, I took hold of him, and slew him in Ziklag, which was the reward I gave him for his tidings.</VERS>\r\n      <VERS vnumber=\"11\">How much more, when wicked men have slain a righteous person in his own house upon his bed, shall I not now require his blood of your hand, and take you away from the earth?</VERS>\r\n      <VERS vnumber=\"12\">And David commanded his young men, and they slew them, and cut off their hands and their feet, and hanged them up beside the pool in Hebron. But they took the head of Ish-bosheth, and buried it in the grave of Abner in Hebron.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">Then came all the tribes of Israel to David unto Hebron, and spake, saying, Behold, we are thy bone and thy flesh.</VERS>\r\n      <VERS vnumber=\"2\">In times past, when Saul was king over us, it was thou that leddest out and broughtest in Israel: and Jehovah said to thee, Thou shalt be shepherd of my people Israel, and thou shalt be prince over Israel.</VERS>\r\n      <VERS vnumber=\"3\">So all the elders of Israel came to the king to Hebron; and king David made a covenant with them in Hebron before Jehovah: and they anointed David king over Israel.</VERS>\r\n      <VERS vnumber=\"4\">David was thirty years old when he began to reign, and he reigned forty years.</VERS>\r\n      <VERS vnumber=\"5\">In Hebron he reigned over Judah seven years and six months; and in Jerusalem he reigned thirty and three years over all Israel and Judah.</VERS>\r\n      <VERS vnumber=\"6\">And the king and his men went to Jerusalem against the Jebusites, the inhabitants of the land, who 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.</VERS>\r\n      <VERS vnumber=\"7\">Nevertheless David took the stronghold of Zion; the same is the city of David.</VERS>\r\n      <VERS vnumber=\"8\">And David said on that day, Whosoever smiteth the Jebusites, let him get up to the watercourse, and [smite] the lame and the blind, that are hated of David`s soul. Wherefore they say, There are the blind and the lame; he cannot come into the house.</VERS>\r\n      <VERS vnumber=\"9\">And David dwelt in the stronghold, and called it the city of David. And David built round about from Millo and inward.</VERS>\r\n      <VERS vnumber=\"10\">And David waxed greater and greater; for Jehovah, the God of hosts, was with him.</VERS>\r\n      <VERS vnumber=\"11\">And Hiram king of Tyre sent messengers to David, and cedar-trees, and carpenters, and masons; and they built David a house.</VERS>\r\n      <VERS vnumber=\"12\">And David perceived that Jehovah had established him king over Israel, and that he had exalted his kingdom for his people Israel`s sake.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And these are the names of those that were born unto him in Jerusalem: Shammua, and Shobab, and Nathan, and Solomon,</VERS>\r\n      <VERS vnumber=\"15\">and Ibhar, and Elishua, and Nepheg, and Japhia,</VERS>\r\n      <VERS vnumber=\"16\">and Elishama, and Eliada, and Eliphelet.</VERS>\r\n      <VERS vnumber=\"17\">And when the Philistines heard that they had anointed David king over Israel, all the Philistines went up to seek David; and David heard of it, and went down to the stronghold.</VERS>\r\n      <VERS vnumber=\"18\">Now the Philistines had come and spread themselves in the valley of Rephaim.</VERS>\r\n      <VERS vnumber=\"19\">And David inquired of Jehovah, saying, Shall I go up against the Philistines? wilt thou deliver them into my hand? And Jehovah said unto David, Go up; for I will certainly deliver the Philistines into thy hand.</VERS>\r\n      <VERS vnumber=\"20\">And David came to Baal-perazim, and David smote them there; and he said, Jehovah hath broken mine enemies before me, like the breach of waters. Therefore he called the name of that place Baal-perazim.</VERS>\r\n      <VERS vnumber=\"21\">And they left their images there; and David and his men took them away.</VERS>\r\n      <VERS vnumber=\"22\">And the Philistines came up yet again, and spread themselves in the valley of Rephaim.</VERS>\r\n      <VERS vnumber=\"23\">And when David inquired of Jehovah, he said, Thou shalt not go up: make a circuit behind them, and come upon them over against the mulberry-trees.</VERS>\r\n      <VERS vnumber=\"24\">And it shall be, when thou hearest the sound of marching in the tops of the mulberry-trees, that then thou shalt bestir thyself; for then is Jehovah gone out before thee to smite the host of the Philistines.</VERS>\r\n      <VERS vnumber=\"25\">And David did so, as Jehovah commanded him, and smote the Philistines from Geba until thou come to Gezer.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">And David again gathered together all the chosen men of Israel, thirty thousand.</VERS>\r\n      <VERS vnumber=\"2\">And David arose, and went with all the people that were with him, from Baale-judah, to bring up from thence the ark of God, which is called by the Name, even the name of Jehovah of hosts that sitteth [above] the cherubim.</VERS>\r\n      <VERS vnumber=\"3\">And they set the ark of God upon a new cart, and brought it out of the house of Abinadab that was in the hill: and Uzzah and Ahio, the sons of Abinadab, drove the new cart.</VERS>\r\n      <VERS vnumber=\"4\">And they brought it out of the house of Abinadab, which was in the hill, with the ark of God: and Ahio went before the ark.</VERS>\r\n      <VERS vnumber=\"5\">And David and all the house of Israel played before Jehovah with all manner of [instruments made of] fir-wood, and with harps, and with psalteries, and with timbrels, and with castanets, and with cymbals.</VERS>\r\n      <VERS vnumber=\"6\">And when they came to the threshing-floor of Nacon, Uzzah put forth [his hand] to the ark of God, and took hold of it; for the oxen stumbled.</VERS>\r\n      <VERS vnumber=\"7\">And the anger of Jehovah was kindled against Uzzah; and God smote him there for his error; and there he died by the ark of God.</VERS>\r\n      <VERS vnumber=\"8\">And David was displeased, because Jehovah had broken forth upon Uzzah; and he called that place Perez-uzzah, unto this day.</VERS>\r\n      <VERS vnumber=\"9\">And David was afraid of Jehovah that day; and he said, How shall the ark of Jehovah come unto me?</VERS>\r\n      <VERS vnumber=\"10\">So David would not remove the ark of Jehovah unto him into the city of David; but David carried it aside into the house of Obed-edom the Gittite.</VERS>\r\n      <VERS vnumber=\"11\">And the ark of Jehovah remained in the house of Obed-edom the Gittite three months: and Jehovah blessed Obed-edom, and all his house.</VERS>\r\n      <VERS vnumber=\"12\">And it was told king David, saying, Jehovah hath blessed the house of Obed-edom, and all that pertaineth unto him, because of the ark of God. And David went and brought up the ark of God from the house of Obed-edom into the city of David with joy.</VERS>\r\n      <VERS vnumber=\"13\">And it was so, that, when they that bare the ark of Jehovah had gone six paces, he sacrificed an ox and a fatling.</VERS>\r\n      <VERS vnumber=\"14\">And David danced before Jehovah with all his might; and David was girded with a linen ephod.</VERS>\r\n      <VERS vnumber=\"15\">So David and all the house of Israel brought up the ark of Jehovah with shouting, and with the sound of the trumpet.</VERS>\r\n      <VERS vnumber=\"16\">And it was so, as the ark of Jehovah came into the city of David, that Michal the daughter of Saul looked out at the window, and saw king David leaping and dancing before Jehovah; and she despised him in her heart.</VERS>\r\n      <VERS vnumber=\"17\">And they brought in the ark of Jehovah, and set it in its place, in the midst of the tent that David had pitched for it; and David offered burnt-offerings and peace-offerings before Jehovah.</VERS>\r\n      <VERS vnumber=\"18\">And when David had made an end of offering the burnt-offering and the peace-offerings, he blessed the people in the name of Jehovah of hosts.</VERS>\r\n      <VERS vnumber=\"19\">And he dealt among all the people, even among the whole multitude of Israel, both to men and women, to every one a cake of bread, and a portion [of flesh], and a cake of raisins. So all the people departed every one to his house.</VERS>\r\n      <VERS vnumber=\"20\">Then 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!</VERS>\r\n      <VERS vnumber=\"21\">And David said unto Michal, [It was] before Jehovah, who chose me above thy father, and above all his house, to appoint me prince over the people of Jehovah, over Israel: therefore will I play before Jehovah.</VERS>\r\n      <VERS vnumber=\"22\">And I will be yet more vile than this, and will be base in mine own sight: but of the handmaids of whom thou hast spoken, of them shall I be had in honor.</VERS>\r\n      <VERS vnumber=\"23\">And Michal the daughter of Saul had no child unto the day of her death.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">And it came to pass, when the king dwelt in his house, and Jehovah had given him rest from all his enemies round about,</VERS>\r\n      <VERS vnumber=\"2\">that the king said unto Nathan the prophet, See now, I dwell in a house of cedar, but the ark of God dwelleth within curtains.</VERS>\r\n      <VERS vnumber=\"3\">And Nathan said to the king, Go, do all that is in thy heart; for Jehovah is with thee.</VERS>\r\n      <VERS vnumber=\"4\">And it came to pass the same night, that the word of Jehovah came unto Nathan, saying,</VERS>\r\n      <VERS vnumber=\"5\">Go and tell my servant David, Thus saith Jehovah, Shalt thou build me a house for me to dwell in?</VERS>\r\n      <VERS vnumber=\"6\">for I have not dwelt in a house since the day 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.</VERS>\r\n      <VERS vnumber=\"7\">In all 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 be shepherd of my people Israel, saying, Why have ye not built me a house of cedar?</VERS>\r\n      <VERS vnumber=\"8\">Now therefore thus shalt thou say unto my servant David, Thus saith Jehovah of hosts, I took thee from the sheepcote, from following the sheep, that thou shouldest be prince over my people, over Israel;</VERS>\r\n      <VERS vnumber=\"9\">and I have been with thee whithersoever thou wentest, and have cut off all thine enemies from before thee; and I will make thee a great name, like unto the name of the great ones that are in the earth.</VERS>\r\n      <VERS vnumber=\"10\">And I will appoint a place for my people Israel, and will plant them, that they may dwell in their own place, and be moved no more; neither shall the children of wickedness afflict them any more, as at the first,</VERS>\r\n      <VERS vnumber=\"11\">and [as] from the day that I commanded judges to be over my people Israel; and I will cause thee to rest from all thine enemies. Moreover Jehovah telleth thee that Jehovah will make thee a house.</VERS>\r\n      <VERS vnumber=\"12\">When thy days are fulfilled, and thou shalt sleep with thy fathers, I will set up thy seed after thee, that shall proceed out of thy bowels, and I will establish his kingdom.</VERS>\r\n      <VERS vnumber=\"13\">He shall build a house for my name, and I will establish the throne of his kingdom for ever.</VERS>\r\n      <VERS vnumber=\"14\">I 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;</VERS>\r\n      <VERS vnumber=\"15\">but my lovingkindness shall not depart from him, as I took it from Saul, whom I put away before thee.</VERS>\r\n      <VERS vnumber=\"16\">And thy house and thy kingdom shall be made sure for ever before thee: thy throne shall be established for ever.</VERS>\r\n      <VERS vnumber=\"17\">According to all these words, and according to all this vision, so did Nathan speak unto David.</VERS>\r\n      <VERS vnumber=\"18\">Then David the king went in, and sat before Jehovah; and he said, Who am I, O Lord Jehovah, and what is my house, that thou hast brought me thus far?</VERS>\r\n      <VERS vnumber=\"19\">And this was yet a small thing in thine eyes, O Lord Jehovah; but thou hast spoken also of thy servant`s house for a great while to come; and this [too] after the manner of men, O Lord Jehovah!</VERS>\r\n      <VERS vnumber=\"20\">And what can David say more unto thee? for thou knowest thy servant, O Lord Jehovah.</VERS>\r\n      <VERS vnumber=\"21\">For thy word`s sake, and according to thine own heart, hast thou wrought all this greatness, to make thy servant know it.</VERS>\r\n      <VERS vnumber=\"22\">Wherefore thou art great, O Jehovah God: for there is none like thee, neither is there any God besides thee, according to all that we have heard with our ears.</VERS>\r\n      <VERS vnumber=\"23\">And what one nation in the earth is like thy people, even like Israel, whom God went to redeem unto himself for a people, and to make him a name, and to do great things for you, and terrible things for thy land, before thy people, whom thou redeemest to thee out of Egypt, [from] the nations and their gods?</VERS>\r\n      <VERS vnumber=\"24\">And thou didst establish to thyself thy people Israel to be a people unto thee for ever; and thou, Jehovah, becamest their God.</VERS>\r\n      <VERS vnumber=\"25\">And now, O Jehovah God, the word that thou hast spoken concerning thy servant, and concerning his house, confirm thou it for ever, and do as thou hast spoken.</VERS>\r\n      <VERS vnumber=\"26\">And let thy name be magnified for ever, saying, Jehovah of hosts is God over Israel; and the house of thy servant David shall be established before thee.</VERS>\r\n      <VERS vnumber=\"27\">For thou, O Jehovah of hosts, the God of Israel, hast revealed to thy servant, saying, I will build thee a house: therefore hath thy servant found in his heart to pray this prayer unto thee.</VERS>\r\n      <VERS vnumber=\"28\">And now, O Lord Jehovah, thou art God, and thy words are truth, and thou hast promised this good thing unto thy servant:</VERS>\r\n      <VERS vnumber=\"29\">now therefore let it please thee to bless the house of thy servant, that it may continue for ever before thee; for thou, O Lord Jehovah, hast spoken it: and with thy blessing let the house of thy servant be blessed for ever.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">And after this it came to pass, that David smote the Philistines, and subdued them: and David took the bridle of the mother city out of the hand of the Philistines.</VERS>\r\n      <VERS vnumber=\"2\">And he smote Moab, and measured them with the line, making them to lie down on the ground; and he measured two lines to put to death, and one full line to keep alive. And the Moabites became servants to David, and brought tribute.</VERS>\r\n      <VERS vnumber=\"3\">David smote also Hadadezer the son of Rehob, king of Zobah, as he went to recover his dominion at the River.</VERS>\r\n      <VERS vnumber=\"4\">And David took from him a thousand and seven hundred horsemen, and twenty thousand footmen: and David hocked all the chariot horses, but reserved of them for a hundred chariots.</VERS>\r\n      <VERS vnumber=\"5\">And when the Syrians of Damascus came to succor Hadadezer king of Zobah, David smote of the Syrians two and twenty thousand men.</VERS>\r\n      <VERS vnumber=\"6\">Then David put garrisons in Syria of Damascus; and the Syrians became servants to David, and brought tribute. And Jehovah gave victory to David whithersoever he went.</VERS>\r\n      <VERS vnumber=\"7\">And David took the shields of gold that were on the servants of Hadadezer, and brought them to Jerusalem.</VERS>\r\n      <VERS vnumber=\"8\">And from Betah and from Berothai, cities of Hadadezer, king David took exceeding much brass.</VERS>\r\n      <VERS vnumber=\"9\">And when Toi king of Hamath heard that David had smitten all the host of Hadadezer,</VERS>\r\n      <VERS vnumber=\"10\">then 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:</VERS>\r\n      <VERS vnumber=\"11\">These also did king David dedicate unto Jehovah, with the silver and gold that he dedicated of all the nations which he subdued;</VERS>\r\n      <VERS vnumber=\"12\">of 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.</VERS>\r\n      <VERS vnumber=\"13\">And David gat him a name when he returned from smiting the Syrians in the Valley of Salt, even eighteen thousand men.</VERS>\r\n      <VERS vnumber=\"14\">And he put garrisons in Edom; throughout all Edom put he garrisons, and all the Edomites became servants to David. And Jehovah gave victory to David whithersoever he went.</VERS>\r\n      <VERS vnumber=\"15\">And David reigned over all Israel; and David executed justice and righteousness unto all his people.</VERS>\r\n      <VERS vnumber=\"16\">And Joab the son of Zeruiah was over the host; and Jehoshaphat the son of Ahilud was recorder;</VERS>\r\n      <VERS vnumber=\"17\">and Zadok the son of Ahitub, and Ahimelech the son of Abiathar, were priests; and Seraiah was scribe;</VERS>\r\n      <VERS vnumber=\"18\">and Benaiah the son of Jehoiada [was over] the Cherethites and the Pelethites; and David`s sons were chief ministers.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">And David said, Is there yet any that is left of the house of Saul, that I may show him kindness for Jonathan`s sake?</VERS>\r\n      <VERS vnumber=\"2\">And there was of the house of Saul a servant whose name was Ziba, and they called him unto David; and the king said unto him, Art thou Ziba? And he said, Thy servant is he.</VERS>\r\n      <VERS vnumber=\"3\">And the king said, Is there not yet any of the house of Saul, that I may show the kindness of God unto him? And Ziba said unto the king, Jonathan hath yet a son, who is lame of his feet.</VERS>\r\n      <VERS vnumber=\"4\">And 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 Lo-debar.</VERS>\r\n      <VERS vnumber=\"5\">Then king David sent, and fetched him out of the house of Machir the son of Ammiel, from Lo-debar.</VERS>\r\n      <VERS vnumber=\"6\">And Mephibosheth, the son of Jonathan, the son of Saul, came unto David, and fell on his face, and did obeisance. And David said, Mephibosheth. And he answered, Behold, thy servant!</VERS>\r\n      <VERS vnumber=\"7\">And David said unto him, Fear not; for I will surely show 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.</VERS>\r\n      <VERS vnumber=\"8\">And he did obeisance, and said, What is thy servant, that thou shouldest look upon such a dead dog as I am?</VERS>\r\n      <VERS vnumber=\"9\">Then the king called to Ziba, Saul`s servant, and said unto him, All that pertained to Saul and to all his house have I given unto thy master`s son.</VERS>\r\n      <VERS vnumber=\"10\">And thou shalt till the land for him, thou, and thy sons, and thy servants; and thou shalt bring in [the fruits], that thy master`s son may have bread to eat: but Mephibosheth thy master`s son shall eat bread alway at my table. Now Ziba had fifteen sons and twenty servants.</VERS>\r\n      <VERS vnumber=\"11\">Then said Ziba unto the king, According to all that my lord the king commandeth 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.</VERS>\r\n      <VERS vnumber=\"12\">And Mephibosheth had a young son, whose name was Mica. And all that dwelt in the house of Ziba were servants unto Mephibosheth.</VERS>\r\n      <VERS vnumber=\"13\">So Mephibosheth dwelt in Jerusalem; for he did eat continually at the king`s table. And he was lame in both his feet.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">And it came to pass after this, that the king of the children of Ammon died, and Hanun his son reigned in his stead.</VERS>\r\n      <VERS vnumber=\"2\">And David said, I will show kindness unto Hanun the son of Nahash, as his father showed kindness unto me. So David sent by his servants to comfort him concerning his father. And David`s servants came into the land of the children of Ammon.</VERS>\r\n      <VERS vnumber=\"3\">But the princes of the children of Ammon said unto Hanun their lord, Thinkest thou that David doth honor thy father, in that he hath sent comforters unto thee? hath not David sent his servants unto thee to search the city, and to spy it out, and to overthrow it?</VERS>\r\n      <VERS vnumber=\"4\">So 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.</VERS>\r\n      <VERS vnumber=\"5\">When they told it unto David, 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.</VERS>\r\n      <VERS vnumber=\"6\">And when the children of Ammon saw that they were become odious to David, the children of Ammon sent and hired the Syrians of Beth-rehob, and the Syrians of Zobah, twenty thousand footmen, and the king of Maacah with a thousand men, and the men of Tob twelve thousand men.</VERS>\r\n      <VERS vnumber=\"7\">And when David heard of it, he sent Joab, and all the host of the mighty men.</VERS>\r\n      <VERS vnumber=\"8\">And the children of Ammon came out, and put the battle in array at the entrance of the gate: and the Syrians of Zobah and of Rehob, and the men of Tob and Maacah, were by themselves in the field.</VERS>\r\n      <VERS vnumber=\"9\">Now when Joab saw that the battle was set against him before and behind, he chose of all the choice men of Israel, and put them in array against the Syrians:</VERS>\r\n      <VERS vnumber=\"10\">And the rest of the people he committed into the hand of Abishai his brother; and he put them in array against the children of Ammon.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">Be of good courage, and let us play the man for our people, and for the cities of our God: and Jehovah do that which seemeth him good.</VERS>\r\n      <VERS vnumber=\"13\">So Joab and the people that were with him drew nigh unto the battle against the Syrians: and they fled before him.</VERS>\r\n      <VERS vnumber=\"14\">And when the children of Ammon saw that the Syrians were fled, they likewise fled before Abishai, and entered into the city. Then Joab returned from the children of Ammon, and came to Jerusalem.</VERS>\r\n      <VERS vnumber=\"15\">And when the Syrians saw that they were put to the worse before Israel, they gathered themselves together.</VERS>\r\n      <VERS vnumber=\"16\">And Hadarezer sent, and brought out the Syrians that were beyond the River: and they came to Helam, with Shobach the captain of the host of Hadarezer at their head.</VERS>\r\n      <VERS vnumber=\"17\">And it was told David; and he gathered all Israel together, and passed over the Jordan, and came to Helam. And the Syrians set themselves in array against David, and fought with him.</VERS>\r\n      <VERS vnumber=\"18\">And the Syrians fled before Israel; and David slew of the Syrians [the men of] seven hundred chariots, and forty thousand horsemen, and smote Shobach the captain of their host, so that he died there.</VERS>\r\n      <VERS vnumber=\"19\">And when all the kings that were servants to Hadarezer saw that they were put to the worse before Israel, they made peace with Israel, and served them. So the Syrians feared to help the children of Ammon any more.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">And it came to pass, at the return of the year, at the time when kings go out [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 at Jerusalem.</VERS>\r\n      <VERS vnumber=\"2\">And it came to pass at eventide, 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 bathing; and the woman was very beautiful to look upon.</VERS>\r\n      <VERS vnumber=\"3\">And David send and inquired after the woman. And one said, Is not this Bath-sheba, the daughter of Eliam, the wife of Uriah the Hittite?</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And the woman conceived; and she sent and told David, and said, I am with child.</VERS>\r\n      <VERS vnumber=\"6\">And David sent to Joab, [saying], Send me Uriah the Hittite. And Joab sent Uriah to David.</VERS>\r\n      <VERS vnumber=\"7\">And when Uriah was come unto him, David asked of him how Joab did, and how the people fared, and how the war prospered.</VERS>\r\n      <VERS vnumber=\"8\">And 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 food] from the king.</VERS>\r\n      <VERS vnumber=\"9\">But Uriah slept at the door of the king`s house with all the servants of his lord, and went not down to his house.</VERS>\r\n      <VERS vnumber=\"10\">And when they had told David, saying, Uriah went not down unto his house, David said unto Uriah, Art thou not come from a journey? wherefore didst thou not go down unto thy house?</VERS>\r\n      <VERS vnumber=\"11\">And Uriah said unto David, The ark, and Israel, and Judah, abide in booths; and my lord Joab, and the servants of my lord, are encamped in the open field; shall I then go into my 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And it came to pass in the morning, that David wrote a letter to Joab, and sent it by the hand of Uriah.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And it came to pass, when Joab kept watch upon the city, that he assigned Uriah unto the place where he knew that valiant men were.</VERS>\r\n      <VERS vnumber=\"17\">And the men of the city went out, and fought with Joab: and there fell some of the people, even of the servants of David; and Uriah the Hittite died also.</VERS>\r\n      <VERS vnumber=\"18\">Then Joab sent and told David all the things concerning the war;</VERS>\r\n      <VERS vnumber=\"19\">and he charged the messenger, saying, When thou hast made an end of telling all the things concerning the war unto the king,</VERS>\r\n      <VERS vnumber=\"20\">it shall be that, if the king`s wrath arise, and he say unto thee, Wherefore went ye so nigh unto the city to fight? knew ye not that they would shoot from the wall?</VERS>\r\n      <VERS vnumber=\"21\">who smote Abimelech the son of Jerubbesheth? did not a woman cast an upper millstone upon him from the wall, so that he died at Thebez? why went ye so nigh the wall? then shalt thou say, Thy servant Uriah the Hittite is dead also.</VERS>\r\n      <VERS vnumber=\"22\">So the messenger went, and came and showed David all that Joab had sent him for.</VERS>\r\n      <VERS vnumber=\"23\">And the messenger said unto David, The men prevailed against us, and came out unto us into the field, and we were upon them even unto the entrance of the gate.</VERS>\r\n      <VERS vnumber=\"24\">And the shooters shot at thy servants from off the wall; and some of the king`s servants are dead, and thy servant Uriah the Hittite is dead also.</VERS>\r\n      <VERS vnumber=\"25\">Then 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.</VERS>\r\n      <VERS vnumber=\"26\">And when the wife of Uriah heard that Uriah her husband was dead, she made lamentation for her husband.</VERS>\r\n      <VERS vnumber=\"27\">And when the mourning was past, David sent and took her home to his house, and she became his wife, and bare him a son. But the thing that David had done displeased Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">And Jehovah 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.</VERS>\r\n      <VERS vnumber=\"2\">The rich man had exceeding many flocks and herds;</VERS>\r\n      <VERS vnumber=\"3\">but 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 morsel, and drank of his own cup, and lay in his bosom, and was unto him as a daughter.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And David`s anger was greatly kindled against the man; and he said to Nathan, As Jehovah liveth, the man that hath done this is worthy to die:</VERS>\r\n      <VERS vnumber=\"6\">and he shall restore the lamb fourfold, because he did this thing, and because he had no pity.</VERS>\r\n      <VERS vnumber=\"7\">And Nathan said to David, Thou art the man. Thus saith Jehovah, the God of Israel, I anointed thee king over Israel, and I delivered thee out of the hand of Saul;</VERS>\r\n      <VERS vnumber=\"8\">and 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 have added unto thee such and such things.</VERS>\r\n      <VERS vnumber=\"9\">Wherefore hast thou despised the word of Jehovah, to do that which is evil in his sight? thou hast smitten 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.</VERS>\r\n      <VERS vnumber=\"10\">Now therefore the sword shall never depart from thy house, because thou hast despised me, and hast taken the wife of Uriah the Hittite to be thy wife.</VERS>\r\n      <VERS vnumber=\"11\">Thus saith Jehovah, 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 neighbor, and he shall lie with thy wives in the sight of this sun.</VERS>\r\n      <VERS vnumber=\"12\">For thou didst it secretly: but I will do this thing before all Israel, and before the sun.</VERS>\r\n      <VERS vnumber=\"13\">And David said unto Nathan, I have sinned against Jehovah. And Nathan said unto David, Jehovah also hath put away thy sin; thou shalt not die.</VERS>\r\n      <VERS vnumber=\"14\">Howbeit, because by this deed thou hast given great occasion to the enemies of Jehovah to blaspheme, the child also that is born unto thee shall surely die.</VERS>\r\n      <VERS vnumber=\"15\">And Nathan departed unto his house.     And Jehovah struck the child that Uriah`s wife bare unto David, and it was very sick.</VERS>\r\n      <VERS vnumber=\"16\">David therefore besought God for the child; and David fasted, and went in, and lay all night upon the earth.</VERS>\r\n      <VERS vnumber=\"17\">And the elders of his house arose, [and stood] beside him, to raise him up from the earth: but he would not, neither did he eat bread with them.</VERS>\r\n      <VERS vnumber=\"18\">And 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 hearkened not unto our voice: how will he then vex himself, if we tell him that the child is dead!</VERS>\r\n      <VERS vnumber=\"19\">But when David saw that his servants were whispering together, David perceived that the child was dead; and David said unto his servants, Is the child dead? And they said, He is dead.</VERS>\r\n      <VERS vnumber=\"20\">Then David arose from the earth, and washed, and anointed himself, and changed his apparel; and he came into the house of Jehovah, and worshipped: then he came to his own house; and when he required, they set bread before him, and he did eat.</VERS>\r\n      <VERS vnumber=\"21\">Then 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.</VERS>\r\n      <VERS vnumber=\"22\">And he said, While the child was yet alive, I fasted and wept: for I said, Who knoweth whether Jehovah will not be gracious to me, that the child may live?</VERS>\r\n      <VERS vnumber=\"23\">But now he is dead, wherefore should I fast? can I bring him back again? I shall go to him, but he will not return to me.</VERS>\r\n      <VERS vnumber=\"24\">And David comforted Bath-sheba his wife, and went in unto her, and lay with her: and she bare a son, and he called his name Solomon. And Jehovah loved him;</VERS>\r\n      <VERS vnumber=\"25\">and he sent by the hand of Nathan the prophet; and he called his name Jedidiah, for Jehovah`s sake.</VERS>\r\n      <VERS vnumber=\"26\">Now Joab fought against Rabbah of the children of Ammon, and took the royal city.</VERS>\r\n      <VERS vnumber=\"27\">And Joab sent messengers to David, and said, I have fought against Rabbah; yea, I have taken the city of waters.</VERS>\r\n      <VERS vnumber=\"28\">Now 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.</VERS>\r\n      <VERS vnumber=\"29\">And David gathered all the people together, and went to Rabbah, and fought against it, and took it.</VERS>\r\n      <VERS vnumber=\"30\">And he took the crown of their king from off his head; and the weight thereof was a talent of gold, and [in it were] precious stones; and it was set on David`s head. And he brought forth the spoil of the city, exceeding much.</VERS>\r\n      <VERS vnumber=\"31\">And 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 brickkiln: and thus did he unto all the cities of the children of Ammon. And David and all the people returned unto Jerusalem.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And Amnon was so vexed that he fell sick because of his sister Tamar; for she was a virgin; and it seemed hard to Amnon to do anything unto her.</VERS>\r\n      <VERS vnumber=\"3\">But Amnon had a friend, whose name was Jonadab, the son of Shimeah, David`s brother; and Jonadab was a very subtle man.</VERS>\r\n      <VERS vnumber=\"4\">And he said unto him, Why, O son of the king, art thou thus lean from day to day? wilt thou not tell me? And Amnon said unto him, I love Tamar, my brother Absalom`s sister.</VERS>\r\n      <VERS vnumber=\"5\">And Jonadab said unto him, Lay thee down on thy bed, and feign thyself sick: and when thy father cometh to see thee, say unto him, Let my sister Tamar come, I pray thee, and give me bread to eat, and dress the food in my sight, that I may see it, and eat it from her hand.</VERS>\r\n      <VERS vnumber=\"6\">So Amnon lay down, and feigned himself sick: and when the king was come to see him, Amnon said unto the king, Let her sister Tamar come, I pray thee, and make me a couple of cakes in my sight, that I may eat from her hand.</VERS>\r\n      <VERS vnumber=\"7\">Then David sent home to Tamar, saying, Go now to thy brother Amnon`s house, and dress him food.</VERS>\r\n      <VERS vnumber=\"8\">So Tamar went to her brother Amnon`s house; and he was laid down. And she took dough, and kneaded it, and made cakes in his sight, and did bake the cakes.</VERS>\r\n      <VERS vnumber=\"9\">And she took the 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.</VERS>\r\n      <VERS vnumber=\"10\">And Amnon said unto Tamar, Bring the food into the chamber, that I may eat from thy hand. And Tamar took the cakes which she had made, and brought them into the chamber to Amnon her brother.</VERS>\r\n      <VERS vnumber=\"11\">And when she had brought them near unto him to eat, he took hold of her, and said unto her, Come, lie with me, my sister.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And I, whither shall I carry my shame? and as for thee, thou wilt 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.</VERS>\r\n      <VERS vnumber=\"14\">Howbeit he would not hearken unto her voice; but being stronger than she, he forced her, and lay with her.</VERS>\r\n      <VERS vnumber=\"15\">Then Amnon hated her with exceeding great hatred; for the hatred wherewith he hated her was greater than the love wherewith he had loved her. And Amnon said unto her, Arise, be gone.</VERS>\r\n      <VERS vnumber=\"16\">And she said unto him, Not so, because this great wrong in putting me forth is [worse] than the other that thou didst unto me. But he would not hearken unto her.</VERS>\r\n      <VERS vnumber=\"17\">Then he called his servant that ministered unto him, and said, Put now this woman out from me, and bolt the door after her.</VERS>\r\n      <VERS vnumber=\"18\">And she had a garment of divers colors 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.</VERS>\r\n      <VERS vnumber=\"19\">And Tamar put ashes on her head, and rent her garment of divers colors that was on her; and she laid her hand on her head, and went her way, crying aloud as she went.</VERS>\r\n      <VERS vnumber=\"20\">And Absalom her brother said unto her, Hath Amnon thy brother been with thee? but now hold thy peace, my sister: he is thy brother; take not this thing to heart. So Tamar remained desolate in her brother Absalom`s house.</VERS>\r\n      <VERS vnumber=\"21\">But when king David heard of all these things, he was very wroth.</VERS>\r\n      <VERS vnumber=\"22\">And Absalom spake unto Amnon neither good nor bad; for Absalom hated Amnon, because he had forced his sister Tamar.</VERS>\r\n      <VERS vnumber=\"23\">And it came to pass after two full years, that Absalom had sheep-shearers in Baal-hazor, which is beside Ephraim: and Absalom invited all the king`s sons.</VERS>\r\n      <VERS vnumber=\"24\">And Absalom came to the king, and said, Behold now, thy servant hath sheep-shearers; let the king, I pray thee, and his servants go with thy servant.</VERS>\r\n      <VERS vnumber=\"25\">And the king said to Absalom, Nay, my son, let us not all go, lest we be burdensome unto thee. And he pressed him: howbeit he would not go, but blessed him.</VERS>\r\n      <VERS vnumber=\"26\">Then 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?</VERS>\r\n      <VERS vnumber=\"27\">But Absalom pressed him, and he let Amnon and all the king`s sons go with him.</VERS>\r\n      <VERS vnumber=\"28\">And Absalom 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.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">And it came to pass, while they were in the way, that the tidings came to David, saying, Absalom hath slain all the king`s sons, and there is not one of them left.</VERS>\r\n      <VERS vnumber=\"31\">Then the king arose, and rent his garments, and lay on the earth; and all his servants stood by with their clothes rent.</VERS>\r\n      <VERS vnumber=\"32\">And Jonadab, the son of Shimeah, David`s brother, answered and said, Let not my lord suppose that they have killed 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.</VERS>\r\n      <VERS vnumber=\"33\">Now 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.</VERS>\r\n      <VERS vnumber=\"34\">But 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.</VERS>\r\n      <VERS vnumber=\"35\">And Jonadab said unto the king, Behold, the king`s sons are come: as thy servant said, so it is.</VERS>\r\n      <VERS vnumber=\"36\">And 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.</VERS>\r\n      <VERS vnumber=\"37\">But Absalom fled, and went to Talmai the son of Ammihur, king of Geshur. And [David] mourned for his son every day.</VERS>\r\n      <VERS vnumber=\"38\">So Absalom fled, and went to Geshur, and was there three years.</VERS>\r\n      <VERS vnumber=\"39\">And [the soul of] king David longed to go forth unto Absalom: for he was comforted concerning Amnon, seeing he was dead.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">Now Joab the son of Zeruiah perceived that the king`s heart was toward Absalom.</VERS>\r\n      <VERS vnumber=\"2\">And Joab sent to Tekoa, and fetched thence a wise woman, and said unto her, I pray thee, feign thyself to be a mourner, and put on mourning apparel, I pray thee, and anoint not thyself with oil, but be as a woman that hath a long time mourned for the dead:</VERS>\r\n      <VERS vnumber=\"3\">and go in to the king, and speak on this manner unto him. So Joab put the words in her mouth.</VERS>\r\n      <VERS vnumber=\"4\">And when the woman of Tekoa spake to the king, she fell on her face to the ground, and did obeisance, and said, Help, O king.</VERS>\r\n      <VERS vnumber=\"5\">And the king said unto her, What aileth thee? And she answered, Of a truth I am a widow, and my husband is dead.</VERS>\r\n      <VERS vnumber=\"6\">And 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 killed him.</VERS>\r\n      <VERS vnumber=\"7\">And, behold, the whole family is risen against thy handmaid, and they say, Deliver him that smote his brother, that we may kill him for the life of his brother whom he slew, and so destroy the heir also. Thus will they quench my coal which is left, and will leave to my husband neither name nor remainder upon the face of the earth.</VERS>\r\n      <VERS vnumber=\"8\">And the king said unto the woman, Go to thy house, and I will give charge concerning thee.</VERS>\r\n      <VERS vnumber=\"9\">And the woman of Tekoa 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.</VERS>\r\n      <VERS vnumber=\"10\">And the king said, Whosoever saith aught unto thee, bring him to me, and he shall not touch thee any more.</VERS>\r\n      <VERS vnumber=\"11\">Then said she, I pray thee, let the king remember Jehovah thy God, that the avenger of blood destroy not any more, lest they destroy my son. And he said, As Jehovah liveth, there shall not one hair of thy son fall to the earth.</VERS>\r\n      <VERS vnumber=\"12\">Then the woman said, Let thy handmaid, I pray thee, speak a word unto my lord the king. And he said, Say on.</VERS>\r\n      <VERS vnumber=\"13\">And the woman said, Wherefore then hast thou devised such a thing against the people of God? for in speaking this word the king is as one that is guilty, in that the king doth not fetch home again his banished one.</VERS>\r\n      <VERS vnumber=\"14\">For we must needs die, and are as water split on the ground, which cannot be gathered up again; neither doth God take away life, but deviseth means, that he that is banished be not an outcast from him.</VERS>\r\n      <VERS vnumber=\"15\">Now therefore seeing that I am come to speak this word 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 servant.</VERS>\r\n      <VERS vnumber=\"16\">For the king will hear, to deliver his servant out of the hand of the man that would destroy me and my son together out of the inheritance of God.</VERS>\r\n      <VERS vnumber=\"17\">Then thy handmaid said, Let, I pray thee, the word of my lord the king be comfortable; for as an angel of God, so is my lord the king to discern good and bad: and Jehovah thy God be with thee.</VERS>\r\n      <VERS vnumber=\"18\">Then the king answered and said unto the woman, Hide not from me, I pray thee, aught that I shall ask thee. And the woman said, Let my lord the king now speak.</VERS>\r\n      <VERS vnumber=\"19\">And the king said, Is 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 aught that my lord the king hath spoken; for thy servant Joab, he bade me, and he put all these words in the mouth of thy handmaid;</VERS>\r\n      <VERS vnumber=\"20\">to change the face of the matter 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.</VERS>\r\n      <VERS vnumber=\"21\">And the king said unto Joab, Behold now, I have done this thing: go therefore, bring the young man Absalom back.</VERS>\r\n      <VERS vnumber=\"22\">And Joab fell to the ground on his face, and did obeisance, and blessed the king: and Joab said, To-day thy servant knoweth that I have found favor in thy sight, my lord, O king, in that the king hath performed the request of his servant.</VERS>\r\n      <VERS vnumber=\"23\">So Joab arose and went to Geshur, and brought Absalom to Jerusalem.</VERS>\r\n      <VERS vnumber=\"24\">And the king said, Let him turn to his own house, but let him not see my face. So Absalom turned to his own house, and saw not the king`s face.</VERS>\r\n      <VERS vnumber=\"25\">Now 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.</VERS>\r\n      <VERS vnumber=\"26\">And when he cut the hair of his head (now it was at every year`s end that he cut it; because it was heavy on him, therefore he cut it); he weighed the hair of his head at two hundred shekels, after the king`s weight.</VERS>\r\n      <VERS vnumber=\"27\">And unto Absalom there were born three sons, and one daughter, whose name was Tamar: she was a woman of a fair countenance.</VERS>\r\n      <VERS vnumber=\"28\">And Absalom dwelt two full years in Jerusalem; and he saw not the king`s face.</VERS>\r\n      <VERS vnumber=\"29\">Then Absalom sent for Joab, to send him to the king; but he would not come to him: and he sent again a second time, but he would not come.</VERS>\r\n      <VERS vnumber=\"30\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"31\">Then Joab arose, and came to Absalom unto his house, and said unto him, Wherefore have thy servants set my field on fire?</VERS>\r\n      <VERS vnumber=\"32\">And 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 were better for me to be there still. Now therefore let me see the king`s face; and if there be iniquity in me, let him kill me.</VERS>\r\n      <VERS vnumber=\"33\">So 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">And it came to pass after this, that Absalom prepared him a chariot and horses, and fifty men to run before him.</VERS>\r\n      <VERS vnumber=\"2\">And Absalom rose up early, and stood beside the way of the gate: and it was so, that, when any man had a suit which should come 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.</VERS>\r\n      <VERS vnumber=\"3\">And Absalom said unto him, See, thy matters are good and right; but there is no man deputed of the king to hear thee.</VERS>\r\n      <VERS vnumber=\"4\">Absalom said moreover, Oh that I were made judge in the land, that every man who hath any suit or cause might come unto me, and I would do him justice!</VERS>\r\n      <VERS vnumber=\"5\">And it was so, that, when any man came nigh to do him obeisance, he put forth his hand, and took hold of him, and kissed him.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And it came to pass at the end of forty years, that Absalom said unto the king, I pray thee, let me go and pay my vow, which I have vowed unto Jehovah, in Hebron.</VERS>\r\n      <VERS vnumber=\"8\">For thy servant vowed a vow while I abode at Geshur in Syria, saying, If Jehovah shall indeed bring me again to Jerusalem, then I will serve Jehovah.</VERS>\r\n      <VERS vnumber=\"9\">And the king said unto him, Go in peace. So he arose, and went to Hebron.</VERS>\r\n      <VERS vnumber=\"10\">But 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 is king in Hebron.</VERS>\r\n      <VERS vnumber=\"11\">And with Absalom went two hundred men out of Jerusalem, that were invited, and went in their simplicity; and they knew not anything.</VERS>\r\n      <VERS vnumber=\"12\">And Absalom sent for Ahithophel the Gilonite, David`s counsellor, from his city, even from Giloh, while he was offering the sacrifices. And the conspiracy was strong; for the people increased continually with Absalom.</VERS>\r\n      <VERS vnumber=\"13\">And there came a messenger to David, saying, The hearts of the men of Israel are after Absalom.</VERS>\r\n      <VERS vnumber=\"14\">And David said unto all his servants that were with him at Jerusalem, Arise, and let us flee; for else none of us shall escape from Absalom: make speed to depart, lest he overtake us quickly, and bring down evil upon us, and smite the city with the edge of the sword.</VERS>\r\n      <VERS vnumber=\"15\">And the king`s servants said unto the king, Behold, thy servants are ready to do whatsoever my lord the king shall choose.</VERS>\r\n      <VERS vnumber=\"16\">And the king went forth, and all his household after him. And the king left ten women, that were concubines, to keep the house.</VERS>\r\n      <VERS vnumber=\"17\">And the king went forth, and all the people after him; and they tarried in Beth-merhak.</VERS>\r\n      <VERS vnumber=\"18\">And all his servants passed on beside him; and all the Cherethites, and all the Pelethites, and all the Gittites, six hundred men that came after him from Gath, passed on before the king.</VERS>\r\n      <VERS vnumber=\"19\">Then said the king to Ittai the Gittite, Wherefore goest thou also with us? return, and abide with the king: for thou art a foreigner, and also an exile; [return] to thine own place.</VERS>\r\n      <VERS vnumber=\"20\">Whereas 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.</VERS>\r\n      <VERS vnumber=\"21\">And Ittai answered the king, and said, As Jehovah liveth, and as my lord the king liveth, surely in what place my lord the king shall be, whether for death or for life, even there also will thy servant be.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And, lo, Zadok also [came], and all the Levites 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.</VERS>\r\n      <VERS vnumber=\"25\">And the king said unto Zadok, Carry back the ark of God into the city: if I shall find favor in the eyes of Jehovah, he will bring me again, and show me both it, and his habitation:</VERS>\r\n      <VERS vnumber=\"26\">but if he say thus, I have no delight in thee; behold, here am I, let him do to me as seemeth good unto him.</VERS>\r\n      <VERS vnumber=\"27\">The king said also unto Zadok the priest, Art thou [not] a seer? return into the city in peace, and your two sons with you, Ahimaaz thy son, and Jonathan the son of Abiathar.</VERS>\r\n      <VERS vnumber=\"28\">See, I will tarry at the fords of the wilderness, until there come word from you to certify me.</VERS>\r\n      <VERS vnumber=\"29\">Zadok therefore and Abiathar carried the ark of God again to Jerusalem: and they abode there.</VERS>\r\n      <VERS vnumber=\"30\">And David went up by the ascent of the [mount of] Olives, and wept as he went up; and he had his head covered, and went barefoot: and all the people that were with him covered every man his head, and they went up, weeping as they went up.</VERS>\r\n      <VERS vnumber=\"31\">And one told David, saying, Ahithophel is among the conspirators with Absalom. And David said, O Jehovah, I pray thee, turn the counsel of Ahithophel into foolishness.</VERS>\r\n      <VERS vnumber=\"32\">And it came to pass, that, when David was come to the top [of the ascent], where God was worshipped, behold, Hushai the Archite came to meet him with his coat rent, and earth upon his head.</VERS>\r\n      <VERS vnumber=\"33\">And David said unto him, If thou passest on with me, then thou wilt be a burden unto me:</VERS>\r\n      <VERS vnumber=\"34\">but 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 in time past, so will I now be thy servant; then wilt thou defeat for me the counsel of Ahithophel.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">Behold, 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 everything that ye shall hear.</VERS>\r\n      <VERS vnumber=\"37\">So Hushai, David`s friend, came into the city; and Absalom came into Jerusalem.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">And when David was a little past the top [of the ascent], behold, Ziba the servant of Mephibosheth met him, with a couple of asses saddled, and upon them two hundred loaves of bread, and a hundred clusters of raisins, and a hundred of summer fruits, and a bottle of wine.</VERS>\r\n      <VERS vnumber=\"2\">And the king said unto Ziba, What meanest thou by these? And Ziba said, The asses are 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 are faint in the wilderness may drink.</VERS>\r\n      <VERS vnumber=\"3\">And 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 will the house of Israel restore me the kingdom of my father.</VERS>\r\n      <VERS vnumber=\"4\">Then said the king to Ziba, Behold, thine is all that pertaineth unto Mephibosheth. And Ziba said, I do obeisance; let me find favor in thy sight, my lord, O king.</VERS>\r\n      <VERS vnumber=\"5\">And when king David came to Bahurim, behold, there came out thence a man of the family of the house of Saul, whose name was Shimei, the son of Gera; he came out, and cursed still as he came.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And thus said Shimei when he cursed, Begone, begone, thou man of blood, and base fellow:</VERS>\r\n      <VERS vnumber=\"8\">Jehovah hath returned upon thee all the blood of the house of Saul, in whose stead thou hast reigned; and Jehovah hath delivered the kingdom into the hand of Absalom thy son; and, behold, thou art [taken] in thine own mischief, because thou art a man of blood.</VERS>\r\n      <VERS vnumber=\"9\">Then 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.</VERS>\r\n      <VERS vnumber=\"10\">And the king said, What have I to do with you, ye sons of Zeruiah? Because he curseth, and because Jehovah hath said unto him, Curse David; who then shall say, Wherefore hast thou done so?</VERS>\r\n      <VERS vnumber=\"11\">And David said to Abishai, and to all his servants, Behold, my son, who came forth from my bowels, seeketh my life: how much more [may] this Benjamite now [do it]? let him alone, and let him curse; for Jehovah hath bidden him.</VERS>\r\n      <VERS vnumber=\"12\">It may be that Jehovah will look on the wrong done unto me, and that Jehovah will requite me good for [his] cursing of me this day.</VERS>\r\n      <VERS vnumber=\"13\">So David and his men went by the way; and Shimei went along on the hill-side over against him, and cursed as he went, and threw stones at him, and cast dust.</VERS>\r\n      <VERS vnumber=\"14\">And the king, and all the people that were with him, came weary; and he refreshed himself there.</VERS>\r\n      <VERS vnumber=\"15\">And Absalom, and all the people, the men of Israel, came to Jerusalem, and Ahithophel with him.</VERS>\r\n      <VERS vnumber=\"16\">And it came to pass, when Hushai the Archite, David`s friend, was come unto Absalom, that Hushai said unto Absalom, [Long] live the king, [Long] live the king.</VERS>\r\n      <VERS vnumber=\"17\">And Absalom said to Hushai, Is this thy kindness to thy friend? why wentest thou not with thy friend?</VERS>\r\n      <VERS vnumber=\"18\">And Hushai said unto Absalom, Nay; but whom Jehovah, and this people, and all the men of Israel have chosen, his will I be, and with him will I abide.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">Then said Absalom to Ahithophel, Give your counsel what we shall do.</VERS>\r\n      <VERS vnumber=\"21\">And Ahithophel said unto Absalom, Go in unto thy father`s concubines, that he hath left to keep the house; and all Israel will hear that thou art abhorred of thy father: then will the hands of all that are with thee be strong.</VERS>\r\n      <VERS vnumber=\"22\">So 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.</VERS>\r\n      <VERS vnumber=\"23\">And the counsel of Ahithophel, which he gave in those days, was as if a man inquired at the oracle of God: so was all the counsel of Ahithophel both with David and with Absalom.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"17\">\r\n      <VERS vnumber=\"1\">Moreover Ahithophel said unto Absalom, Let me now choose out twelve thousand men, and I will arise and pursue after David this night:</VERS>\r\n      <VERS vnumber=\"2\">and 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;</VERS>\r\n      <VERS vnumber=\"3\">and 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.</VERS>\r\n      <VERS vnumber=\"4\">And the saying pleased Absalom well, and all the elders of Israel.</VERS>\r\n      <VERS vnumber=\"5\">Then said Absalom, Call now Hushai the Archite also, and let us hear likewise what he saith.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And Hushai said unto Absalom, The counsel that Ahithophel hath given this time is not good.</VERS>\r\n      <VERS vnumber=\"8\">Hushai said moreover, Thou knowest thy father and his men, that they are mighty men, and they are 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.</VERS>\r\n      <VERS vnumber=\"9\">Behold, he is hid now in some pit, or in some [other] place: and it will come to pass, when some of them are fallen at the first, that whosoever heareth it will say, There is a slaughter among the people that follow Absalom.</VERS>\r\n      <VERS vnumber=\"10\">And even he that is valiant, whose heart is as the heart of a lion, will utterly melt; for all Israel knoweth that thy father is a mighty man, and they that are with him are valiant men.</VERS>\r\n      <VERS vnumber=\"11\">But I counsel that all Israel be gathered together unto thee, from Dan even to Beer-sheba, as the sand that is by the sea for multitude; and that thou go to battle in thine own person.</VERS>\r\n      <VERS vnumber=\"12\">So 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 we will not leave so much as one.</VERS>\r\n      <VERS vnumber=\"13\">Moreover, 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.</VERS>\r\n      <VERS vnumber=\"14\">And Absalom and all the men of Israel said, The counsel of Hushai the Archite is better than the counsel of Ahithophel. For Jehovah had ordained to defeat the good counsel of Ahithophel, to the intent that Jehovah might bring evil upon Absalom.</VERS>\r\n      <VERS vnumber=\"15\">Then 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.</VERS>\r\n      <VERS vnumber=\"16\">Now therefore send quickly, and tell David, saying, Lodge not this night at the fords of the wilderness, but by all means pass over; lest the king be swallowed up, and all the people that are with him.</VERS>\r\n      <VERS vnumber=\"17\">Now Jonathan and Ahimaaz were staying by En-rogel; and a maid-servant used to go and tell them; and they went and told king David: for they might not be seen to come into the city.</VERS>\r\n      <VERS vnumber=\"18\">But a lad saw them, and told Absalom: and they went both of them away quickly, and came to the house of a man in Bahurim, who had a well in his court; and they went down thither.</VERS>\r\n      <VERS vnumber=\"19\">And the woman took and spread the covering over the well`s mouth, and strewed bruised grain thereon; and nothing was known.</VERS>\r\n      <VERS vnumber=\"20\">And Absalom`s servants came to the woman to the house; and they said, Where are Ahimaaz and Jonathan? And the woman said unto them, They are gone over the brook of water. And when they had sought and could not find them, they returned to Jerusalem.</VERS>\r\n      <VERS vnumber=\"21\">And it came to pass, after they were departed, that they came up out of the well, and went and told king David; and they said unto David, Arise ye, and pass quickly over the water; for thus hath Ahithophel counselled against you.</VERS>\r\n      <VERS vnumber=\"22\">Then David arose, and all the people that were with him, and they passed over the Jordan: by the morning light there lacked not one of them that was not gone over the Jordan.</VERS>\r\n      <VERS vnumber=\"23\">And when Ahithophel saw that his counsel was not followed, he saddled his ass, and arose, and gat him home, unto his city, and set his house in order, and hanged himself; and he died, and was buried in the sepulchre of his father.</VERS>\r\n      <VERS vnumber=\"24\">Then David came to Mahanaim. And Absalom passed over the Jordan, he and all the men of Israel with him.</VERS>\r\n      <VERS vnumber=\"25\">And Absalom set Amasa over the host instead of Joab. Now Amasa was the son of a man, whose name was Ithra the Israelite, that went in to Abigal the daughter of Nahash, sister to Zeruiah, Joab`s mother.</VERS>\r\n      <VERS vnumber=\"26\">And Israel and Absalom encamped in the land of Gilead.</VERS>\r\n      <VERS vnumber=\"27\">And 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,</VERS>\r\n      <VERS vnumber=\"28\">brought beds, and basins, and earthen vessels, and wheat, and barley, and meal, and parched [grain], and beans, and lentils, and parched [pulse],</VERS>\r\n      <VERS vnumber=\"29\">and honey, and butter, and sheep, and cheese of the herd, for David, and for the people that were with him, to eat: for they said, The people are hungry, and weary, and thirsty, in the wilderness.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"18\">\r\n      <VERS vnumber=\"1\">And David numbered the people that were with him, and set captains of thousands and captains of hundreds over them.</VERS>\r\n      <VERS vnumber=\"2\">And David sent forth the people, a third part 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.</VERS>\r\n      <VERS vnumber=\"3\">But the people said, 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 thou art worth ten thousand of us; therefore now it is better that thou be ready to succor us out of the city.</VERS>\r\n      <VERS vnumber=\"4\">And the king said unto them, What seemeth you best I will do. And the king stood by the gate-side, and all the people went out by hundreds and by thousands.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">So the people went out into the field against Israel: and the battle was in the forest of Ephraim.</VERS>\r\n      <VERS vnumber=\"7\">And the people of Israel were smitten there before the servants of David, and there was a great slaughter there that day of twenty thousand men.</VERS>\r\n      <VERS vnumber=\"8\">For the battle was there spread over the face of all the country; and the forest devoured more people that day than the sword devoured.</VERS>\r\n      <VERS vnumber=\"9\">And Absalom chanced to meet the servants of David. And Absalom was riding upon his 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 heaven and earth; and the mule that was under him went on.</VERS>\r\n      <VERS vnumber=\"10\">And a certain man saw it, and told Joab, and said, Behold, I saw Absalom hanging in an oak.</VERS>\r\n      <VERS vnumber=\"11\">And Joab said unto the man that told him, And, behold, thou sawest it, and why didst thou not smite him there to the ground? and I would have given thee ten [pieces of] silver, and a girdle.</VERS>\r\n      <VERS vnumber=\"12\">And the man said unto Joab, Though I should receive a thousand [pieces of] silver in my hand, yet would I not put forth my 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.</VERS>\r\n      <VERS vnumber=\"13\">Otherwise if I had dealt falsely against his life (and there is no matter hid from the king), then thou thyself wouldest have set thyself against [me].</VERS>\r\n      <VERS vnumber=\"14\">Then 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.</VERS>\r\n      <VERS vnumber=\"15\">And ten young men that bare Joab`s armor compassed about and smote Absalom, and slew him.</VERS>\r\n      <VERS vnumber=\"16\">And Joab blew the trumpet, and the people returned from pursuing after Israel; for Joab held back the people.</VERS>\r\n      <VERS vnumber=\"17\">And they took Absalom, and cast him into the great pit in the forest, and raised over him a very great heap of stones: and all Israel fled every one to his tent.</VERS>\r\n      <VERS vnumber=\"18\">Now Absalom in his lifetime had taken and reared up for himself the 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 Absalom`s monument, unto this day.</VERS>\r\n      <VERS vnumber=\"19\">Then said Ahimaaz the son of Zadok, Let me now run, and bear the king tidings, how that Jehovah hath avenged him of his enemies.</VERS>\r\n      <VERS vnumber=\"20\">And Joab said unto him, Thou shalt not be the bearer of 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.</VERS>\r\n      <VERS vnumber=\"21\">Then said Joab to the Cushite, Go, tell the king what thou hast seen. And the Cushite bowed himself unto Joab, and ran.</VERS>\r\n      <VERS vnumber=\"22\">Then said Ahimaaz the son of Zadok yet again to Joab, But come what may, let me, I pray thee, also run after the Cushite. And Joab said, Wherefore wilt thou run, my son, seeing that thou wilt have no reward for the tidings?</VERS>\r\n      <VERS vnumber=\"23\">But come what may, [said he], I will run. And he said unto him, Run. Then Ahimaaz ran by the way of the Plain, and outran the Cushite.</VERS>\r\n      <VERS vnumber=\"24\">Now David was sitting between the two gates: and the watchman went up to the roof of the gate unto the wall, and lifted up his eyes, and looked, and, behold, a man running alone.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And the watchman said, I think 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.</VERS>\r\n      <VERS vnumber=\"28\">And Ahimaaz called, and said unto the king, All is well. And he bowed himself before the king with his face to the earth, and said, Blessed be Jehovah thy God, who hath delivered up the men that lifted up their hand against my lord the king.</VERS>\r\n      <VERS vnumber=\"29\">And the king said, Is it well with the young man Absalom? And Ahimaaz answered, When Joab sent the king`s servant, even me thy servant, I saw a great tumult, but I knew not what it was.</VERS>\r\n      <VERS vnumber=\"30\">And the king said, Turn aside, and stand here. And he turned aside, and stood still.</VERS>\r\n      <VERS vnumber=\"31\">And, behold, the Cushite came; and the Cushite said, Tidings for my lord the king; for Jehovah hath avenged thee this day of all them that rose up against thee.</VERS>\r\n      <VERS vnumber=\"32\">And the king said unto the Cushite, Is it well with the young man Absalom? And the Cushite answered, The enemies of my lord the king, and all that rise up against thee to do thee hurt, be as that young man is.</VERS>\r\n      <VERS vnumber=\"33\">And 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 I had died for thee, O Absalom, my son, my son!</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"19\">\r\n      <VERS vnumber=\"1\">And it was told Joab, Behold, the king weepeth and mourneth for Absalom.</VERS>\r\n      <VERS vnumber=\"2\">And the victory that day was turned into mourning unto all the people; for the people heard say that day, The king grieveth for his son.</VERS>\r\n      <VERS vnumber=\"3\">And the people gat them by stealth that day into the city, as people that are ashamed steal away when they flee in battle.</VERS>\r\n      <VERS vnumber=\"4\">And the king covered his face, and the king cried with a loud voice, O my son Absalom, O Absalom, my son, my son!</VERS>\r\n      <VERS vnumber=\"5\">And Joab came into the house to the king, and said, Thou hast shamed this day the faces of all thy servants, who 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;</VERS>\r\n      <VERS vnumber=\"6\">in that thou lovest them that hate thee, and hatest them that love thee. For thou hast declared this day, that princes and servants are nought unto thee: for this day I perceive, that if Absalom had lived, and all we had died this day, then it had pleased thee well.</VERS>\r\n      <VERS vnumber=\"7\">Now therefore arise, go forth, and speak comfortably unto thy servants; for I swear by Jehovah, if thou go not forth, there will not tarry a man with thee this night: and that will be worse unto thee than all the evil that hath befallen thee from thy youth until now.</VERS>\r\n      <VERS vnumber=\"8\">Then the king arose, and sat in the gate. And they told unto all the people, saying, Behold, the king is sitting in the gate: and all the people came before the king.     Now Israel had fled every man to his tent.</VERS>\r\n      <VERS vnumber=\"9\">And all the people were at strife throughout all the tribes of Israel, saying, The king delivered us out of the hand of our enemies, and he saved us out of the hand of the Philistines; and now he is fled out of the land from Absalom.</VERS>\r\n      <VERS vnumber=\"10\">And Absalom, whom we anointed over us, is dead in battle. Now therefore why speak ye not a word of bringing the king back?</VERS>\r\n      <VERS vnumber=\"11\">And 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, [to bring him] to his house.</VERS>\r\n      <VERS vnumber=\"12\">Ye are my brethren, ye are my bone and my flesh: wherefore then are ye the last to bring back the king?</VERS>\r\n      <VERS vnumber=\"13\">And say ye to Amasa, Art thou not my bone and 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.</VERS>\r\n      <VERS vnumber=\"14\">And he bowed the heart of all the men of Judah, even as [the heart of] one man; so that they sent unto the king, [saying], Return thou, and all thy servants.</VERS>\r\n      <VERS vnumber=\"15\">So the king returned, and came to the Jordan. And Judah came to Gilgal, to go to meet the king, to bring the king over the Jordan.</VERS>\r\n      <VERS vnumber=\"16\">And Shimei the son of Gera, the Benjamite, who was of Bahurim, hasted and came down with the men of Judah to meet king David.</VERS>\r\n      <VERS vnumber=\"17\">And 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 through the Jordan in the presence of the king.</VERS>\r\n      <VERS vnumber=\"18\">And there went over a ferry-boat to bring over the king`s household, and to do what he thought good. And Shimei the son of Gera fell down before the king, when he was come over the Jordan.</VERS>\r\n      <VERS vnumber=\"19\">And he 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.</VERS>\r\n      <VERS vnumber=\"20\">For thy servant doth know that I have sinned: therefore, behold, I am come this day the first of all the house of Joseph to go down to meet my lord the king.</VERS>\r\n      <VERS vnumber=\"21\">But Abishai the son of Zeruiah answered and said, Shall not Shimei be put to death for this, because he cursed Jehovah`s anointed?</VERS>\r\n      <VERS vnumber=\"22\">And 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?</VERS>\r\n      <VERS vnumber=\"23\">And the king said unto Shimei, Thou shalt not die. And the king sware unto him.</VERS>\r\n      <VERS vnumber=\"24\">And Mephibosheth the son of Saul came down to meet the king; and he had neither dressed his feet, nor trimmed his beard, nor washed his clothes, from the day the king departed until the day he came home in peace.</VERS>\r\n      <VERS vnumber=\"25\">And 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?</VERS>\r\n      <VERS vnumber=\"26\">And 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 with the king; because thy servant is lame.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">For all 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 that I should cry any more unto the king?</VERS>\r\n      <VERS vnumber=\"29\">And the king said unto him, Why speakest thou any more of thy matters? I say, Thou and Ziba divide the land.</VERS>\r\n      <VERS vnumber=\"30\">And Mephibosheth said unto the king, yea, let him take all, forasmuch as my lord the king is come in peace unto his own house.</VERS>\r\n      <VERS vnumber=\"31\">And Barzillai the Gileadite came down from Rogelim; and he went over the Jordan with the king, to conduct him over the Jordan.</VERS>\r\n      <VERS vnumber=\"32\">Now Barzillai was a very aged man, even fourscore years old: and he had provided the king with sustenance while he lay at Mahanaim; for he was a very great man.</VERS>\r\n      <VERS vnumber=\"33\">And the king said unto Barzillai, Come thou over with me, and I will sustain thee with me in Jerusalem.</VERS>\r\n      <VERS vnumber=\"34\">And Barzillai said unto the king, How many are the days of the years of my life, that I should go up with the king unto Jerusalem?</VERS>\r\n      <VERS vnumber=\"35\">I am this day fourscore years old: can I discern between good and bad? 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?</VERS>\r\n      <VERS vnumber=\"36\">Thy servant would but just go over the Jordan with the king: and why should the king recompense it me with such a reward?</VERS>\r\n      <VERS vnumber=\"37\">Let thy servant, I pray thee, turn back again, that I may die in mine own city, by the grave of my father and 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.</VERS>\r\n      <VERS vnumber=\"38\">And 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.</VERS>\r\n      <VERS vnumber=\"39\">And all the people went over the Jordan, and the king went over: and the king kissed Barzillai, and blessed him; and he returned unto his own place.</VERS>\r\n      <VERS vnumber=\"40\">So the king went over to Gilgal, and Chimham went over with him: and all the people of Judah brought the king over, and also half the people of Israel.</VERS>\r\n      <VERS vnumber=\"41\">And, 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 brought the king, and his household, over the Jordan, and all David`s men with him?</VERS>\r\n      <VERS vnumber=\"42\">And all the men of Judah answered the men of Israel, Because the king is near of kin to us: wherefore then are ye angry for this matter? have we eaten at all at the king`s cost? or hath he given us any gift?</VERS>\r\n      <VERS vnumber=\"43\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"20\">\r\n      <VERS vnumber=\"1\">And there happened to be there a base fellow, whose name was Sheba, the son of Bichri, a Benjamite: and he blew the trumpet, and said, We have no portion in David, neither have we inheritance in the son of Jesse: every man to his tents, O Israel.</VERS>\r\n      <VERS vnumber=\"2\">So all the men of Israel went up from following David, and followed Sheba the son of Bichri; but the men of Judah clave unto their king, from the Jordan even to Jerusalem.</VERS>\r\n      <VERS vnumber=\"3\">And 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 provided them with sustenance, but went not in unto them. So they were shut up unto the day of their death, living in widowhood.</VERS>\r\n      <VERS vnumber=\"4\">Then said the king to Amasa, Call me the men of Judah together within three days, and be thou here present.</VERS>\r\n      <VERS vnumber=\"5\">So Amasa went to call [the men of] Judah together; but he tarried longer than the set time which he had appointed him.</VERS>\r\n      <VERS vnumber=\"6\">And David said to Abishai, Now will 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 fortified cities, and escape out of our sight.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">When they were at the great stone which is in Gibeon, Amasa came to meet them. And Joab was girded with his apparel of war that he had put on, and thereon was a girdle with a sword fastened upon his loins in the sheath thereof; and as he went forth it fell out.</VERS>\r\n      <VERS vnumber=\"9\">And Joab said to Amasa, Is it well with thee, my brother? And Joab took Amasa by the beard with his right hand to kiss him.</VERS>\r\n      <VERS vnumber=\"10\">But Amasa took no heed to the sword that was in Joab`s hand: so he smote him therewith in the body, and shed out his bowels to the ground, and struck him not again; and he died.     And Joab and Abishai his brother pursued after Sheba the son of Bichri.</VERS>\r\n      <VERS vnumber=\"11\">And there stood by him one of Joab`s young men, and said, He that favoreth Joab, and he that is for David, let him follow Joab.</VERS>\r\n      <VERS vnumber=\"12\">And Amasa lay wallowing in his blood in the midst of the highway. And when the man saw that all the people stood still, he carried Amasa out of the highway into the field, and cast a garment over him, when he saw that every one that came by him stood still.</VERS>\r\n      <VERS vnumber=\"13\">When he was removed out of the highway, all the people went on after Joab, to pursue after Sheba the son of Bichri.</VERS>\r\n      <VERS vnumber=\"14\">And he went through all the tribes of Israel unto Abel, and to Beth-maacah, and all the Berites: and they were gathered together, and went also after him.</VERS>\r\n      <VERS vnumber=\"15\">And they came and besieged him in Abel of Beth-maacah, and they cast up a mound against the city, and it stood against the rampart; and all the people that were with Joab battered the wall, to throw it down.</VERS>\r\n      <VERS vnumber=\"16\">Then 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.</VERS>\r\n      <VERS vnumber=\"17\">And he came near unto her; and the woman said, Art thou Joab? And he answered, I am. Then she said unto him, Hear the words of thy handmaid. And he answered, I do hear.</VERS>\r\n      <VERS vnumber=\"18\">Then 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].</VERS>\r\n      <VERS vnumber=\"19\">I am 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 Jehovah?</VERS>\r\n      <VERS vnumber=\"20\">And Joab answered and said, Far be it, far be it from me, that I should swallow up or destroy.</VERS>\r\n      <VERS vnumber=\"21\">The matter is not so: but a man of the hill-country of 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.</VERS>\r\n      <VERS vnumber=\"22\">Then the woman went unto all the people in her wisdom. And they cut off the head of Sheba the son of Bichri, and threw it out to Joab. And he blew the trumpet, and they were dispersed from the city, every man to his tent. And Joab returned to Jerusalem unto the king.</VERS>\r\n      <VERS vnumber=\"23\">Now Joab was over all the host of Israel; and Benaiah the son of Jehoiada was over the Cherethites and over the Pelethites;</VERS>\r\n      <VERS vnumber=\"24\">and Adoram was over the men subject to taskwork; and Jehoshaphat the son of Ahilud was the recorder;</VERS>\r\n      <VERS vnumber=\"25\">and Sheva was scribe; and Zadok and Abiathar were priests;</VERS>\r\n      <VERS vnumber=\"26\">and also Ira the Jairite was chief minister unto David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"21\">\r\n      <VERS vnumber=\"1\">And there was a famine in the days of David three years, year after year; and David sought the face of Jehovah. And Jehovah said, It is for Saul, and for his bloody house, because he put to death the Gibeonites.</VERS>\r\n      <VERS vnumber=\"2\">And 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 for the children of Israel and Judah);</VERS>\r\n      <VERS vnumber=\"3\">and David said unto the Gibeonites, What shall I do for you? and wherewith shall I make atonement, that ye may bless the inheritance of Jehovah?</VERS>\r\n      <VERS vnumber=\"4\">And the Gibeonites said unto him, It is no matter of silver or gold between us and Saul, or his house; neither is it for us to put any man to death in Israel. And he said, What ye shall say, that will I do for you.</VERS>\r\n      <VERS vnumber=\"5\">And they said unto the king, The man that consumed us, and that devised against us, [that] we should be destroyed from remaining in any of the borders of Israel,</VERS>\r\n      <VERS vnumber=\"6\">let seven men of his sons be delivered unto us, and we will hang them up unto Jehovah in Gibeah of Saul, the chosen of Jehovah. And the king said, I will give them.</VERS>\r\n      <VERS vnumber=\"7\">But the king spared Mephibosheth, the son of Jonathan the son of Saul, because of Jehovah`s oath that was between them, between David and Jonathan the son of Saul.</VERS>\r\n      <VERS vnumber=\"8\">But 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 bare to Adriel the son of Barzillai the Meholathite:</VERS>\r\n      <VERS vnumber=\"9\">And he delivered them into the hands of the Gibeonites, and they hanged them in the mountain before Jehovah, and they fell [all] seven together. And they were put to death in the days of harvest, in the first days, at the beginning of barley harvest.</VERS>\r\n      <VERS vnumber=\"10\">And Rizpah the daughter of Aiah took sackcloth, and spread it for her upon the rock, from the beginning of harvest until water was poured upon them from heaven; and she suffered neither the birds of the heavens to rest on them by day, nor the beasts of the field by night.</VERS>\r\n      <VERS vnumber=\"11\">And it was told David what Rizpah the daughter of Aiah, the concubine of Saul, had done.</VERS>\r\n      <VERS vnumber=\"12\">And David went and took the bones of Saul and the bones of Jonathan his son from the men of Jabesh-gilead, who had stolen them from the street of Beth-shan, where the Philistines had hanged them, in the day that the Philistines slew Saul in Gilboa;</VERS>\r\n      <VERS vnumber=\"13\">and 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.</VERS>\r\n      <VERS vnumber=\"14\">And they buried the bones of Saul and Jonathan his son in the country of Benjamin in Zela, in the sepulchre of Kish his father: and they performed all that the king commanded. And after that God was entreated for the land.</VERS>\r\n      <VERS vnumber=\"15\">And the Philistines had war again with Israel; and David went down, and his servants with him, and fought against the Philistines. And David waxed faint;</VERS>\r\n      <VERS vnumber=\"16\">and Ishbibenob, who was of the sons of the giant, the weight of whose spear was three hundred [shekels] of brass in weight, he being girded with a new [sword], thought to have slain David.</VERS>\r\n      <VERS vnumber=\"17\">But Abishai the son of Zeruiah succored 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 lamp of Israel.</VERS>\r\n      <VERS vnumber=\"18\">And it came to pass after this, that there was again war with the Philistines at Gob: then Sibbecai the Hushathite slew Saph, who was of the sons of the giant.</VERS>\r\n      <VERS vnumber=\"19\">And there was again war with the Philistines at Gob; and Elhanan the son of Jaareoregim the Beth-lehemite slew Goliath the Gittite, the staff of whose spear was like a weaver`s beam.</VERS>\r\n      <VERS vnumber=\"20\">And there was again war at 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.</VERS>\r\n      <VERS vnumber=\"21\">And when he defied Israel, Jonathan the son of Shimei, David`s brother, slew him.</VERS>\r\n      <VERS vnumber=\"22\">These four were born to the giant in Gath; and they fell by the hand of David, and by the hand of his servants.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"22\">\r\n      <VERS vnumber=\"1\">And David spake unto Jehovah the words of this song in the day that Jehovah delivered him out of the hand of all his enemies, and out of the hand of Saul:</VERS>\r\n      <VERS vnumber=\"2\">and he said, Jehovah is my rock, and my fortress, and my deliverer, even mine;</VERS>\r\n      <VERS vnumber=\"3\">God, my rock, in him will I take refuge; My shield, and the horn of my salvation, my high tower, and my       refuge; My saviour, thou savest me from violence.</VERS>\r\n      <VERS vnumber=\"4\">I will call upon Jehovah, who is worthy to be praised: So shall I be saved from mine enemies.</VERS>\r\n      <VERS vnumber=\"5\">For the waves of death compassed me; The floods of ungodliness made me afraid:</VERS>\r\n      <VERS vnumber=\"6\">The cords of Sheol were round about me; The snares of death came upon me.</VERS>\r\n      <VERS vnumber=\"7\">In my distress I called upon Jehovah; Yea, I called unto my God: And he heard my voice out of his temple, And my cry [came] into his ears.</VERS>\r\n      <VERS vnumber=\"8\">Then the earth shook and trembled, The foundations of heaven quaked And were shaken, because he was wroth.</VERS>\r\n      <VERS vnumber=\"9\">There went up a smoke out of his nostrils, And fire out of his mouth devoured: Coals were kindled by it.</VERS>\r\n      <VERS vnumber=\"10\">He bowed the heavens also, and came down; And thick darkness was under his feet.</VERS>\r\n      <VERS vnumber=\"11\">And he rode upon a cherub, and did fly; Yea, he was seen upon the wings of the wind.</VERS>\r\n      <VERS vnumber=\"12\">And he made darkness pavilions round about him, Gathering of waters, thick clouds of the skies.</VERS>\r\n      <VERS vnumber=\"13\">At the brightness before him Coals of fire were kindled.</VERS>\r\n      <VERS vnumber=\"14\">Jehovah thundered from heaven, And the Most High uttered his voice.</VERS>\r\n      <VERS vnumber=\"15\">And he sent out arrows, and scattered them; Lightning, and discomfited them.</VERS>\r\n      <VERS vnumber=\"16\">Then the channels of the sea appeared, The foundations of the world were laid bare, By the rebuke of Jehovah, At the blast of the breath of his nostrils.</VERS>\r\n      <VERS vnumber=\"17\">He sent from on high, he took me; He drew me out of many waters;</VERS>\r\n      <VERS vnumber=\"18\">He delivered me from my strong enemy, From them that hated me; for they were too mighty for me.</VERS>\r\n      <VERS vnumber=\"19\">They came upon me in the day of my calamity; But Jehovah was my stay.</VERS>\r\n      <VERS vnumber=\"20\">He brought me forth also into a large place; He delivered me, because he delighted in me.</VERS>\r\n      <VERS vnumber=\"21\">Jehovah rewarded me according to my righteousness; According to the cleanness of my hands hath he recompensed me.</VERS>\r\n      <VERS vnumber=\"22\">For I have kept the ways of Jehovah, And have not wickedly departed from my God.</VERS>\r\n      <VERS vnumber=\"23\">For all his ordinances were before me; And as for his statutes, I did not depart from them.</VERS>\r\n      <VERS vnumber=\"24\">I was also perfect toward him; And I kept myself from mine iniquity.</VERS>\r\n      <VERS vnumber=\"25\">Therefore hath Jehovah recompensed me according to my       righteousness, According to my cleanness in his eyesight.</VERS>\r\n      <VERS vnumber=\"26\">With the merciful thou wilt show thyself merciful; With the perfect man thou wilt show thyself perfect;</VERS>\r\n      <VERS vnumber=\"27\">With the pure thou wilt show thyself pure; And with the perverse thou wilt show thyself froward.</VERS>\r\n      <VERS vnumber=\"28\">And the afflicted people thou wilt save; But thine eyes are upon the haughty, that thou mayest bring them       down.</VERS>\r\n      <VERS vnumber=\"29\">For thou art my lamp, O Jehovah; And Jehovah will lighten my darkness.</VERS>\r\n      <VERS vnumber=\"30\">For by thee I run upon a troop; By my God do I leap over a wall.</VERS>\r\n      <VERS vnumber=\"31\">As for God, his way is perfect: The word of Jehovah is tried; He is a shield unto all them that take refuge in him.</VERS>\r\n      <VERS vnumber=\"32\">For who is God, save Jehovah? And who is a rock, save our God?</VERS>\r\n      <VERS vnumber=\"33\">God is my strong fortress; And he guideth the perfect in his way.</VERS>\r\n      <VERS vnumber=\"34\">He maketh his feet like hinds` [feet], And setteth me upon my high places.</VERS>\r\n      <VERS vnumber=\"35\">He teacheth my hands to war, So that mine arms do bend a bow of brass.</VERS>\r\n      <VERS vnumber=\"36\">Thou hast also given me the shield of thy salvation; And thy gentleness hath made me great.</VERS>\r\n      <VERS vnumber=\"37\">Thou hast enlarged my steps under me; And my feet have not slipped.</VERS>\r\n      <VERS vnumber=\"38\">I have pursued mine enemies, and destroyed them; Neither did I turn again till they were consumed.</VERS>\r\n      <VERS vnumber=\"39\">And I have consumed them, and smitten them through, so       that they cannot arise: Yea, they are fallen under my feet.</VERS>\r\n      <VERS vnumber=\"40\">For thou hast girded me with strength unto the battle; Thou hast subdued under me those that rose up against me.</VERS>\r\n      <VERS vnumber=\"41\">Thou hast also made mine enemies turn their backs unto       me, That I might cut off them that hate me.</VERS>\r\n      <VERS vnumber=\"42\">They looked, but there was none to save; Even unto Jehovah, but he answered them not.</VERS>\r\n      <VERS vnumber=\"43\">Then did I beat them small as the dust of the earth, I did crush them as the mire of the streets, and did spread them       abroad.</VERS>\r\n      <VERS vnumber=\"44\">Thou also hast delivered me from the strivings of my       people; Thou hast kept me to be the head of the nations: A people whom I have not known shall serve me.</VERS>\r\n      <VERS vnumber=\"45\">The foreigners shall submit themselves unto me: As soon as they hear of me, they shall obey me.</VERS>\r\n      <VERS vnumber=\"46\">The foreigners shall fade away, And shall come trembling out of their close places.</VERS>\r\n      <VERS vnumber=\"47\">Jehovah liveth; And blessed be my rock; And exalted be God, the rock of my salvation,</VERS>\r\n      <VERS vnumber=\"48\">Even the God that executeth vengeance for me, And that bringeth down peoples under me,</VERS>\r\n      <VERS vnumber=\"49\">And that bringeth me forth from mine enemies: Yea, thou liftest me up above them that rise up against me; Thou deliverest me from the violent man.</VERS>\r\n      <VERS vnumber=\"50\">Therefore I will give thanks unto thee, O Jehovah, among       the nations, And will sing praises unto thy name.</VERS>\r\n      <VERS vnumber=\"51\">Great deliverance giveth he to his king, And showeth lovingkindness to his anointed, To David and to his seed, for evermore.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"23\">\r\n      <VERS vnumber=\"1\">Now these are the last words of David. David the son of Jesse saith, And the man who was raised on high saith, The anointed of the God of Jacob, And the sweet psalmist of Israel:</VERS>\r\n      <VERS vnumber=\"2\">The Spirit of Jehovah spake by me, And his word was upon my tongue.</VERS>\r\n      <VERS vnumber=\"3\">The God of Israel said, The Rock of Israel spake to me: One that ruleth over men righteously, That ruleth in the fear of God,</VERS>\r\n      <VERS vnumber=\"4\">[He shall be] as the light of the morning, when the sun       riseth, A morning without clouds, [When] the tender grass [springeth] out of the earth, Through clear shining after rain.</VERS>\r\n      <VERS vnumber=\"5\">Verily my house is not so with God; Yet he hath made with me an everlasting covenant, Ordered in all things, and sure: For it is all my salvation, and all [my] desire, Although he maketh it not to grow.</VERS>\r\n      <VERS vnumber=\"6\">But the ungodly shall be all of them as thorns to be       thrust away, Because they cannot be taken with the hand</VERS>\r\n      <VERS vnumber=\"7\">But the man that toucheth them Must be armed with iron and the staff of a spear: And they shall be utterly burned with fire in [their] place</VERS>\r\n      <VERS vnumber=\"8\">These are the names of the mighty men whom David had: Josheb-basshebeth a Tahchemonite, chief of the captains; the same was Adino the Eznite, against eight hundred slain at one time.</VERS>\r\n      <VERS vnumber=\"9\">And after him was Eleazar the son of Dodai the son of an 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.</VERS>\r\n      <VERS vnumber=\"10\">He arose, and smote the Philistines until his hand was weary, and his hand clave unto the sword; and Jehovah wrought a great victory that day; and the people returned after him only to take spoil.</VERS>\r\n      <VERS vnumber=\"11\">And after him was Shammah the son of Agee a Hararite. And the Philistines were gathered together into a troop, where was a plot of ground full of lentils; and the people fled from the Philistines.</VERS>\r\n      <VERS vnumber=\"12\">But he stood in the midst of the plot, and defended it, and slew the Philistines; and Jehovah wrought a great victory.</VERS>\r\n      <VERS vnumber=\"13\">And three of the thirty chief men went down, and came to David in the harvest time unto the cave of Adullam; and the troop of the Philistines was encamped in the valley of Rephaim.</VERS>\r\n      <VERS vnumber=\"14\">And David was then in the stronghold; and the garrison of the Philistines was then in Beth-lehem.</VERS>\r\n      <VERS vnumber=\"15\">And David longed, and said, Oh that one would give me water to drink of the well of Beth-lehem, which is by the gate!</VERS>\r\n      <VERS vnumber=\"16\">And the three mighty men brake through the host of the Philistines, and drew water out of the well of Beth-lehem, that was by the gate, and took it, and brought it to David: but he would not drink thereof, but poured it out unto Jehovah.</VERS>\r\n      <VERS vnumber=\"17\">And he said, Be it far from me, O Jehovah, that I should do this: [shall I drink] the blood of the men that went in jeopardy of their lives? therefore he would not drink it. These things did the three mighty men.</VERS>\r\n      <VERS vnumber=\"18\">And Abishai, the brother of Joab, the son of Zeruiah, was chief of the three. And he lifted up his spear against three hundred and slew them, and had a name among the three.</VERS>\r\n      <VERS vnumber=\"19\">Was he not most honorable of the three? therefore he was made their captain: howbeit he attained not unto the [first] three.</VERS>\r\n      <VERS vnumber=\"20\">And Benaiah the son of Jehoiada, the son of a valiant man of Kabzeel, who had done mighty deeds, he slew the two [sons of] Ariel of Moab: he went down also and slew a lion in the midst of a pit in time of snow.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">These things did Benaiah the son of Jehoiada, and had a name among the three mighty men.</VERS>\r\n      <VERS vnumber=\"23\">He was more honorable than the thirty, but he attained not to the [first] three. And David set him over his guard.</VERS>\r\n      <VERS vnumber=\"24\">Asahel the brother of Joab was one of the thirty; Elhanan the son of Dodo of Beth-lehem,</VERS>\r\n      <VERS vnumber=\"25\">Shammah the Harodite, Elika the Harodite,</VERS>\r\n      <VERS vnumber=\"26\">Helez the Paltite, Ira the son of Ikkesh the Tekoite,</VERS>\r\n      <VERS vnumber=\"27\">Abiezer the Anathothite, Mebunnai the Hushathite,</VERS>\r\n      <VERS vnumber=\"28\">Zalmon the Ahohite, Maharai the Netophathite,</VERS>\r\n      <VERS vnumber=\"29\">Heleb the son of Baanah the Netophathite, Ittai the son of Ribai of Gibeah of the children of Benjamin,</VERS>\r\n      <VERS vnumber=\"30\">Benaiah a Pirathonite, Hiddai of the brooks of Gaash.</VERS>\r\n      <VERS vnumber=\"31\">Abialbon the Arbathite, Azmaveth the Barhumite,</VERS>\r\n      <VERS vnumber=\"32\">Eliahba the Shaalbonite, the sons of Jashen, Jonathan,</VERS>\r\n      <VERS vnumber=\"33\">Shammah the Hararite, Ahiam the son of Sharar the Ararite,</VERS>\r\n      <VERS vnumber=\"34\">Eliphelet the son of Ahasbai, the son of the Maacathite, Eliam the son of Ahithophel the Gilonite,</VERS>\r\n      <VERS vnumber=\"35\">Hezro the Carmelite, Paarai the Arbite,</VERS>\r\n      <VERS vnumber=\"36\">Igal the son of Nathan of Zobah, Bani the Gadite,</VERS>\r\n      <VERS vnumber=\"37\">Zelek the Ammonite, Naharai the Beerothite, armorbearers to Joab the son of Zeruiah,</VERS>\r\n      <VERS vnumber=\"38\">Ira the Ithrite, Gareb the Ithrite,</VERS>\r\n      <VERS vnumber=\"39\">Uriah the Hittite: thirty and seven in all.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"24\">\r\n      <VERS vnumber=\"1\">And again the anger of Jehovah was kindled against Israel, and he moved David against them, saying, Go, number Israel and Judah.</VERS>\r\n      <VERS vnumber=\"2\">And the king said to Joab the captain of the host, who was with him, Go now to and fro through all the tribes of Israel, from Dan even to Beer-sheba, and number ye the people, that I may know the sum of the people.</VERS>\r\n      <VERS vnumber=\"3\">And Joab said unto the king, Now Jehovah thy God add unto the people, how many soever they may be, a hundredfold; and may the eyes of my lord the king see it: but why doth my lord the king delight in this thing?</VERS>\r\n      <VERS vnumber=\"4\">Notwithstanding, 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.</VERS>\r\n      <VERS vnumber=\"5\">And they passed over the Jordan, and encamped in Aroer, on the right side of the city that is in the middle of the valley of Gad, and unto Jazer:</VERS>\r\n      <VERS vnumber=\"6\">then they came to Gilead, and to the land of Tahtim-hodshi; and they came to Dan-jaan, and round about to Sidon,</VERS>\r\n      <VERS vnumber=\"7\">and came to the stronghold of Tyre, and to all the cities of the Hivites, and of the Canaanites; and they went out to the south of Judah, at Beer-sheba.</VERS>\r\n      <VERS vnumber=\"8\">So when they had gone to and from through all the land, they came to Jerusalem at the end of nine months and twenty days.</VERS>\r\n      <VERS vnumber=\"9\">And Joab gave up the sum of the numbering 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.</VERS>\r\n      <VERS vnumber=\"10\">And David`s heart smote him after that he had numbered the people. And David said unto Jehovah, I have sinned greatly in that which I have done: but now, O Jehovah, put away, I beseech thee, the iniquity of thy servant; for I have done very foolishly.</VERS>\r\n      <VERS vnumber=\"11\">And when David rose up in the morning, the word of Jehovah came unto the prophet Gad, David`s seer, saying,</VERS>\r\n      <VERS vnumber=\"12\">Go and speak unto David, Thus saith Jehovah, I offer thee three things: choose thee one of them, that I may do it unto thee.</VERS>\r\n      <VERS vnumber=\"13\">So 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 thy foes while they pursue thee? or shall there be three days` pestilence in thy land? now advise thee, and consider what answer I shall return to him that sent me.</VERS>\r\n      <VERS vnumber=\"14\">And David said unto Gad, I am in a great strait: let us fall now into the hand of Jehovah; for his mercies are great; and let me not fall into the hand of man.</VERS>\r\n      <VERS vnumber=\"15\">So Jehovah sent a pestilence upon Israel from the morning even to the time appointed; and there died of the people from Dan even to Beer-sheba seventy thousand men.</VERS>\r\n      <VERS vnumber=\"16\">And when the angel stretched out his hand toward Jerusalem to destroy it, Jehovah repented him of the evil, and said to the angel that destroyed the people, It is enough; now stay thy hand. And the angel of Jehovah was by the threshing-floor of Araunah the Jebusite.</VERS>\r\n      <VERS vnumber=\"17\">And David spake unto Jehovah when he saw the angel that smote the people, and said, Lo, I have sinned, and I have done perversely; but these sheep, what have they done? let thy hand, I pray thee, be against me, and against my father`s house.</VERS>\r\n      <VERS vnumber=\"18\">And Gad came that day to David, and said unto him, Go up, rear an altar unto Jehovah in the threshing-floor of Araunah the Jebusite.</VERS>\r\n      <VERS vnumber=\"19\">And David went up according to the saying of Gad, as Jehovah commanded.</VERS>\r\n      <VERS vnumber=\"20\">And Araunah looked forth, and saw the king and his servants coming on toward him: and Araunah went out, and bowed himself before the king with his face to the ground.</VERS>\r\n      <VERS vnumber=\"21\">And Araunah said, Wherefore is my lord the king come to his servant? And David said, To buy the threshing-floor of thee, to build an altar unto Jehovah, that the plague may be stayed from the people.</VERS>\r\n      <VERS vnumber=\"22\">And Araunah said unto David, Let my lord the king take and offer up what seemeth good unto him: behold, the oxen for the burnt-offering, and the threshing instruments and the yokes of the oxen for the wood:</VERS>\r\n      <VERS vnumber=\"23\">all this, O king, doth Araunah give unto the king. And Araunah said unto the king, Jehovah thy God accept thee.</VERS>\r\n      <VERS vnumber=\"24\">And the king said unto Araunah, Nay; but I will verily buy it of thee at a price. Neither will I offer burnt-offerings unto Jehovah my God which cost me nothing. So David bought the threshing-floor and the oxen for fifty shekels of silver.</VERS>\r\n      <VERS vnumber=\"25\">And David built there an altar unto Jehovah, and offered burnt-offerings and peace-offerings. So Jehovah was entreated for the land, and the plague was stayed from Israel.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"11\" bname=\"1 Kings\" bsname=\"1Kgs\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">Now king David was old and stricken in years; and they covered him with clothes, but he gat no heat.</VERS>\r\n      <VERS vnumber=\"2\">Wherefore 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 cherish him; and let her lie in thy bosom, that my lord the king may get heat.</VERS>\r\n      <VERS vnumber=\"3\">So they sought for a fair damsel throughout all the borders of Israel, and found Abishag the Shunammite, and brought her to the king.</VERS>\r\n      <VERS vnumber=\"4\">And the damsel was very fair; and she cherished the king, and ministered to him; but the king knew her not.</VERS>\r\n      <VERS vnumber=\"5\">Then 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.</VERS>\r\n      <VERS vnumber=\"6\">And his father had not displeased him at any time in saying, Why hast thou done so? and he was also a very goodly man; and he was born after Absalom.</VERS>\r\n      <VERS vnumber=\"7\">And he conferred with Joab the son of Zeruiah, and with Abiathar the priest: and they following Adonijah helped him.</VERS>\r\n      <VERS vnumber=\"8\">But Zadok the priest, and Benaiah the son of Jehoiada, and Nathan the prophet, and Shimei, and Rei, and the mighty men that belonged to David, were not with Adonijah.</VERS>\r\n      <VERS vnumber=\"9\">And Adonijah slew sheep and oxen and fatlings by the stone of Zoheleth, which is beside En-rogel; and he called all his brethren, the king`s sons, and all the men of Judah, the king`s servants:</VERS>\r\n      <VERS vnumber=\"10\">but Nathan the prophet, and Benaiah, and the mighty men, and Solomon his brother, he called not.</VERS>\r\n      <VERS vnumber=\"11\">Then Nathan spake unto Bath-sheba the mother of Solomon, saying, Hast thou not heard that Adonijah the son of Haggith doth reign, and David our lord knoweth it not?</VERS>\r\n      <VERS vnumber=\"12\">Now therefore come, let me, I pray thee, give thee counsel, that thou mayest save thine own life, and the life of thy son Solomon.</VERS>\r\n      <VERS vnumber=\"13\">Go and get thee in unto king David, and say unto him, Didst not thou, my lord, O king, swear unto thy handmaid, saying, Assuredly Solomon thy son shall reign after me, and he shall sit upon my throne? why then doth Adonijah reign?</VERS>\r\n      <VERS vnumber=\"14\">Behold, while thou yet talkest there with the king, I also will come in after thee, and confirm thy words.</VERS>\r\n      <VERS vnumber=\"15\">And Bath-sheba went in unto the king into the chamber: and the king was very old; and Abishag the Shunammite was ministering unto the king.</VERS>\r\n      <VERS vnumber=\"16\">And Bath-sheba bowed, and did obeisance unto the king. And the king said, What wouldest thou?</VERS>\r\n      <VERS vnumber=\"17\">And she said unto him, My lord, thou swarest by Jehovah thy God unto thy handmaid, [saying], Assuredly Solomon thy son shall reign after me, and he shall sit upon my throne.</VERS>\r\n      <VERS vnumber=\"18\">And now, behold, Adonijah reigneth; and thou, my lord the king, knowest it not:</VERS>\r\n      <VERS vnumber=\"19\">and he hath slain oxen and fatlings 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.</VERS>\r\n      <VERS vnumber=\"20\">And thou, my lord the 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.</VERS>\r\n      <VERS vnumber=\"21\">Otherwise it will come to pass, when my lord the king shall sleep with his fathers, that I and my son Solomon shall be counted offenders.</VERS>\r\n      <VERS vnumber=\"22\">And, lo, while she yet talked with the king, Nathan the prophet came in.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And Nathan said, My lord, O king, hast thou said, Adonijah shall reign after me, and he shall sit upon my throne?</VERS>\r\n      <VERS vnumber=\"25\">For he is gone down this day, and hath slain oxen and fatlings 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 are eating and drinking before him, and say, [Long] live king Adonijah.</VERS>\r\n      <VERS vnumber=\"26\">But me, even me thy servant, and Zadok the priest, and Benaiah the son of Jehoiada, and thy servant Solomon, hath he not called.</VERS>\r\n      <VERS vnumber=\"27\">Is this thing done by my lord the king, and thou hast not showed unto thy servants who should sit on the throne of my lord the king after him?</VERS>\r\n      <VERS vnumber=\"28\">Then king David answered and said, Call to me Bath-sheba. And she came into the king`s presence, and stood before the king.</VERS>\r\n      <VERS vnumber=\"29\">And the king sware, and said, As Jehovah liveth, who hath redeemed my soul out of all adversity,</VERS>\r\n      <VERS vnumber=\"30\">verily as I sware unto thee by Jehovah, the God of Israel, saying, Assuredly Solomon thy son shall reign after me, and he shall sit upon my throne in my stead; verily so will I do this day.</VERS>\r\n      <VERS vnumber=\"31\">Then Bath-sheba bowed with her face to the earth, and did obeisance to the king, and said, Let my lord king David live for ever.</VERS>\r\n      <VERS vnumber=\"32\">And king David said, Call to me Zadok the priest, and Nathan the prophet, and Benaiah the son of Jehoiada. And they came before the king.</VERS>\r\n      <VERS vnumber=\"33\">And the king 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:</VERS>\r\n      <VERS vnumber=\"34\">and let Zadok the priest and Nathan the prophet anoint him there king over Israel; and blow ye the trumpet, and say, [Long] live king Solomon.</VERS>\r\n      <VERS vnumber=\"35\">Then ye shall come up after him, and he shall come and sit upon my throne; for he shall be king in my stead; and I have appointed him to be prince over Israel and over Judah.</VERS>\r\n      <VERS vnumber=\"36\">And Benaiah the son of Jehoiada answered the king, and said, Amen: Jehovah, the God of my lord the king, say so [too].</VERS>\r\n      <VERS vnumber=\"37\">As Jehovah 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.</VERS>\r\n      <VERS vnumber=\"38\">So 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.</VERS>\r\n      <VERS vnumber=\"39\">And Zadok the priest took the horn of oil out of the Tent, and anointed Solomon. And they blew the trumpet; and all the people said, [Long] live king Solomon.</VERS>\r\n      <VERS vnumber=\"40\">And 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.</VERS>\r\n      <VERS vnumber=\"41\">And 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?</VERS>\r\n      <VERS vnumber=\"42\">While he yet spake, behold, Jonathan the son of Abiathar the priest came: and Adonijah said, Come in; for thou art a worthy man, and bringest good tidings.</VERS>\r\n      <VERS vnumber=\"43\">And Jonathan answered and said to Adonijah, Verily our lord king David hath made Solomon king:</VERS>\r\n      <VERS vnumber=\"44\">and 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;</VERS>\r\n      <VERS vnumber=\"45\">and 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.</VERS>\r\n      <VERS vnumber=\"46\">And also Solomon sitteth on the throne of the kingdom.</VERS>\r\n      <VERS vnumber=\"47\">And moreover the king`s servants came to bless our lord king David, saying, Thy 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.</VERS>\r\n      <VERS vnumber=\"48\">And also thus said the king, Blessed be Jehovah, the God of Israel, who hath given one to sit on my throne this day, mine eyes even seeing it.</VERS>\r\n      <VERS vnumber=\"49\">And all the guests of Adonijah were afraid, and rose up, and went every man his way.</VERS>\r\n      <VERS vnumber=\"50\">And Adonijah feared because of Solomon; and he arose, and went, and caught hold on the horns of the altar.</VERS>\r\n      <VERS vnumber=\"51\">And it was told Solomon, saying, Behold, Adonijah feareth king Solomon; for, lo, he hath laid hold on the horns of the altar, saying, Let king Solomon swear unto me first that he will not slay his servant with the sword.</VERS>\r\n      <VERS vnumber=\"52\">And Solomon said, If he shall show himself a worthy man, there shall not a hair of him fall to the earth; but if wickedness be found in him, he shall die.</VERS>\r\n      <VERS vnumber=\"53\">So king Solomon sent, and they brought him down from the altar. And he came and did obeisance to king Solomon; and Solomon said unto him, Go to thy house.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">Now the days of David drew nigh that he should die; and he charged Solomon his son, saying,</VERS>\r\n      <VERS vnumber=\"2\">I am going the way of all the earth: be thou strong therefore, and show thyself a man;</VERS>\r\n      <VERS vnumber=\"3\">and keep the charge of Jehovah thy God, to walk in his ways, to keep his statutes, [and] his commandments, and his ordinances, and his testimonies, according to that which is written in the law of Moses, that thou mayest prosper in all that thou doest, and whithersoever thou turnest thyself.</VERS>\r\n      <VERS vnumber=\"4\">That Jehovah may establish 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.</VERS>\r\n      <VERS vnumber=\"5\">Moreover thou knowest also what Joab the son of Zeruiah did unto me, even 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.</VERS>\r\n      <VERS vnumber=\"6\">Do therefore according to thy wisdom, and let not his hoar head go down to Sheol in peace.</VERS>\r\n      <VERS vnumber=\"7\">But show 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 from Absalom thy brother.</VERS>\r\n      <VERS vnumber=\"8\">And, behold, there is with thee Shimei the son of Gera, the Benjamite, of Bahurim, who cursed me with a grievous curse in the day when I went to Mahanaim; but he came down to meet me at the Jordan, and I sware to him by Jehovah, saying, I will not put thee to death with the sword.</VERS>\r\n      <VERS vnumber=\"9\">Now therefore hold him not guiltless, for thou art a wise man; and thou wilt know what thou oughtest to do unto him, and thou shalt bring his hoar head down to Sheol with blood.</VERS>\r\n      <VERS vnumber=\"10\">And David slept with his fathers, and was buried in the city of David.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And Solomon sat upon the throne of David his father; and his kingdom was established greatly.</VERS>\r\n      <VERS vnumber=\"13\">Then Adonijah the son of Haggith came to Bath-sheba the mother of Solomon. And she said, Comest thou peaceably? And he said, Peaceably.</VERS>\r\n      <VERS vnumber=\"14\">He said moreover, I have somewhat to say unto thee. And she said, Say on.</VERS>\r\n      <VERS vnumber=\"15\">And 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 Jehovah.</VERS>\r\n      <VERS vnumber=\"16\">And now I ask one petition of thee; deny me not. And she said unto him, Say on.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And Bath-sheba said, Well; I will speak for thee unto the king.</VERS>\r\n      <VERS vnumber=\"19\">Bath-sheba 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 throne to be set for the king`s mother; and she sat on his right hand.</VERS>\r\n      <VERS vnumber=\"20\">Then she said, I ask one small petition of thee; deny me not. And the king said unto her, Ask on, my mother; for I will not deny thee.</VERS>\r\n      <VERS vnumber=\"21\">And she said, Let Abishag the Shunammite be given to Adonijah thy brother to wife.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">Then king Solomon sware by Jehovah, saying, God do so to me, and more also, if Adonijah hath not spoken this word against his own life.</VERS>\r\n      <VERS vnumber=\"24\">Now therefore as Jehovah liveth, who hath established me, and set me on the throne of David my father, and who hath made me a house, as he promised, surely Adonijah shall be put to death this day.</VERS>\r\n      <VERS vnumber=\"25\">And king Solomon sent by Benaiah the son of Jehoiada; and he fell upon him, so that he died.</VERS>\r\n      <VERS vnumber=\"26\">And 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 Jehovah before David my father, and because thou wast afflicted in all wherein my father was afflicted.</VERS>\r\n      <VERS vnumber=\"27\">So Solomon thrust out Abiathar from being priest unto Jehovah, that he might fulfil the word of Jehovah, which he spake concerning the house of Eli in Shiloh.</VERS>\r\n      <VERS vnumber=\"28\">And the tidings came to Joab; for Joab had turned after Adonijah, though he turned not after Absalom. And Joab fled unto the Tent of Jehovah, and caught hold on the horns of the altar.</VERS>\r\n      <VERS vnumber=\"29\">And it was told king Solomon, Joab is fled unto the Tent of Jehovah, and, behold, he is by the altar. Then Solomon sent Benaiah the son of Jehoiada, saying, Go, fall upon him.</VERS>\r\n      <VERS vnumber=\"30\">And Benaiah came to the Tent of Jehovah, 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.</VERS>\r\n      <VERS vnumber=\"31\">And the king said unto him, Do as he hath said, and fall upon him, and bury him; that thou mayest take away the blood, which Joab shed without cause, from me and from my father`s house.</VERS>\r\n      <VERS vnumber=\"32\">And Jehovah will return his blood upon his own head, because he fell upon two men more righteous and better than he, and slew them with the sword, and my father David knew it not, [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.</VERS>\r\n      <VERS vnumber=\"33\">So shall their blood return upon the head of Joab, and upon the head of his seed for ever: but unto David, and unto his seed, and unto his house, and unto his throne, shall there be peace for ever from Jehovah.</VERS>\r\n      <VERS vnumber=\"34\">Then 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.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">And the king sent and called for Shimei, and said unto him, Build thee a house in Jerusalem, and dwell there, and go not forth thence any whither.</VERS>\r\n      <VERS vnumber=\"37\">For on the day thou goest out, and passest over the brook Kidron, know thou for certain that thou shalt surely die: thy blood shall be upon thine own head.</VERS>\r\n      <VERS vnumber=\"38\">And 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.</VERS>\r\n      <VERS vnumber=\"39\">And it came to pass at the end of three years, that two of the servants of Shimei ran away unto Achish, son of Maacah, king of Gath. And they told Shimei, saying, Behold, thy servants are in Gath.</VERS>\r\n      <VERS vnumber=\"40\">And 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.</VERS>\r\n      <VERS vnumber=\"41\">And it was told Solomon that Shimei had gone from Jerusalem to Gath, and was come again.</VERS>\r\n      <VERS vnumber=\"42\">And the king sent and called for Shimei, and said unto him, Did I not adjure thee by Jehovah, and protest unto thee, saying, Know for certain, that on the day thou goest out, and walkest abroad any whither, thou shalt surely die? and thou saidst unto me, The saying that I have heard is good.</VERS>\r\n      <VERS vnumber=\"43\">Why then hast thou not kept the oath of Jehovah, and the commandment that I have charged thee with?</VERS>\r\n      <VERS vnumber=\"44\">The king said moreover to Shimei, Thou knowest all the wickedness which thy heart is privy to, that thou didst to David my father: therefore Jehovah shall return thy wickedness upon thine own head.</VERS>\r\n      <VERS vnumber=\"45\">But king Solomon shall be blessed, and the throne of David shall be established before Jehovah for ever.</VERS>\r\n      <VERS vnumber=\"46\">So the king commanded Benaiah the son of Jehoiada; and he went out, and fell upon him, so that he died. And the kingdom was established in the hand of Solomon.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">And 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 Jehovah, and the wall of Jerusalem round about.</VERS>\r\n      <VERS vnumber=\"2\">Only the people sacrificed in the high places, because there was no house built for the name of Jehovah until those days.</VERS>\r\n      <VERS vnumber=\"3\">And Solomon loved Jehovah, walking in the statutes of David his father: only he sacrificed and burnt incense in the high places.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">In Gibeon Jehovah appeared to Solomon in a dream by night; and God said, Ask what I shall give thee.</VERS>\r\n      <VERS vnumber=\"6\">And Solomon said, Thou hast showed unto thy servant David my father great lovingkindness, 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 lovingkindness, that thou hast given him a son to sit on his throne, as it is this day.</VERS>\r\n      <VERS vnumber=\"7\">And now, O Jehovah 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.</VERS>\r\n      <VERS vnumber=\"8\">And thy servant is in the midst of thy people which thou hast chosen, a great people, that cannot be numbered nor counted for multitude.</VERS>\r\n      <VERS vnumber=\"9\">Give thy servant therefore an understanding heart to judge thy people, that I may discern between good and evil; for who is able to judge this thy great people?</VERS>\r\n      <VERS vnumber=\"10\">And the speech pleased the Lord, that Solomon had asked this thing.</VERS>\r\n      <VERS vnumber=\"11\">And 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 justice;</VERS>\r\n      <VERS vnumber=\"12\">behold, I have done according to thy word: lo, I have given thee a wise and an understanding heart; so that there hath been none like thee before thee, neither after thee shall any arise like unto thee.</VERS>\r\n      <VERS vnumber=\"13\">And I have also given thee that which thou hast not asked, both riches and honor, so that there shall not be any among the kings like unto thee, all thy days.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And Solomon awoke; and, behold, it was a dream: and he came to Jerusalem, and stood before the ark of the covenant of Jehovah, and offered up burnt-offerings, and offered peace-offerings, and made a feast to all his servants.</VERS>\r\n      <VERS vnumber=\"16\">Then there came two women that were harlots, unto the king, and stood before him.</VERS>\r\n      <VERS vnumber=\"17\">And the one woman said, Oh, my lord, I and this woman dwell in one house; and I was delivered of a child with her in the house.</VERS>\r\n      <VERS vnumber=\"18\">And it came to pass the third day after 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.</VERS>\r\n      <VERS vnumber=\"19\">And this woman`s child died in the night, because she lay upon it.</VERS>\r\n      <VERS vnumber=\"20\">And she arose at midnight, and took my son from beside me, while thy handmaid slept, and laid it in her bosom, and laid her dead child in my bosom.</VERS>\r\n      <VERS vnumber=\"21\">And when I rose in the morning to give my child suck, behold, it was dead; but when I had looked at it in the morning, behold, it was not my son, whom I did bear.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">Then 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.</VERS>\r\n      <VERS vnumber=\"24\">And the king said, Fetch me a sword. And they brought a sword before the king.</VERS>\r\n      <VERS vnumber=\"25\">And the king said, Divide the living child in two, and give half to the one, and half to the other.</VERS>\r\n      <VERS vnumber=\"26\">Then spake the woman whose the living child was unto the king, for her heart yearned over her son, and she said, Oh, my lord, give her the living child, and in no wise slay it. But the other said, It shall be neither mine nor thine; divide it.</VERS>\r\n      <VERS vnumber=\"27\">Then the king answered and said, Give her the living child, and in no wise slay it: she is the mother thereof.</VERS>\r\n      <VERS vnumber=\"28\">And 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 justice.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">And king Solomon was king over all Israel.</VERS>\r\n      <VERS vnumber=\"2\">And these were the princes whom he had: Azariah the son of Zadok, the priest;</VERS>\r\n      <VERS vnumber=\"3\">Elihoreph and Ahijah, the sons of Shisha, scribes; Jehoshaphat the son of Ahilud, the recorder;</VERS>\r\n      <VERS vnumber=\"4\">and Benaiah the son of Jehoiada was over the host; and Zadok and Abiathar were priests;</VERS>\r\n      <VERS vnumber=\"5\">and Azariah the son of Nathan was over the officers; and Zabud the son of Nathan was chief minister, [and] the king`s friend;</VERS>\r\n      <VERS vnumber=\"6\">and Ahishar was over the household; and Adoniram the son of Abda was over the men subject to taskwork.</VERS>\r\n      <VERS vnumber=\"7\">And Solomon had twelve officers over all Israel, who provided victuals for the king and his household: each man had to make provision for a month in the year.</VERS>\r\n      <VERS vnumber=\"8\">And these are their names: Ben-hur, in the hill-country of Ephraim;</VERS>\r\n      <VERS vnumber=\"9\">Ben-deker, in Makaz, and in Shaalbim, and Beth-shemesh, and Elon-beth-hanan;</VERS>\r\n      <VERS vnumber=\"10\">Ben-hesed, in Arubboth (to him [pertained] Socoh, and all the land of Hepher);</VERS>\r\n      <VERS vnumber=\"11\">Ben-abinadab, in all the height of Dor (he had Taphath the daughter of Solomon to wife);</VERS>\r\n      <VERS vnumber=\"12\">Baana the son of Ahilud, in Taanach and Megiddo, and all Beth-shean which is beside Zarethan, beneath Jezreel, from Beth-shean to Abel-meholah, as far as beyond Jokmeam;</VERS>\r\n      <VERS vnumber=\"13\">Ben-geber, in Ramoth-gilead (to him [pertained] the towns of Jair the son of Manasseh, which are in Gilead; [even] to him [pertained] the region of Argob, which is in Bashan, threescore great cities with walls and brazen bars);</VERS>\r\n      <VERS vnumber=\"14\">Ahinadab the son of Iddo, in Mahanaim;</VERS>\r\n      <VERS vnumber=\"15\">Ahimaaz, in Naphtali (he also took Basemath the daughter of Solomon to wife);</VERS>\r\n      <VERS vnumber=\"16\">Baana the son of Hushai, in Asher and Bealoth;</VERS>\r\n      <VERS vnumber=\"17\">Jehoshaphat the son of Paruah, in Issachar;</VERS>\r\n      <VERS vnumber=\"18\">Shimei the son of Ela, in Benjamin;</VERS>\r\n      <VERS vnumber=\"19\">Geber the son of Uri, in the land of Gilead, the country of Sihon king of the Amorites and of Og king of Bashan; and [he was] the only officer that was in the land.</VERS>\r\n      <VERS vnumber=\"20\">Judah and Israel were many as the sand which is by the sea in multitude, eating and drinking and making merry.</VERS>\r\n      <VERS vnumber=\"21\">And Solomon ruled over all the kingdoms from the River unto the land of the Philistines, and unto the border of Egypt: they brought tribute, and served Solomon all the days of his life.</VERS>\r\n      <VERS vnumber=\"22\">And Solomon`s provision for one day was thirty measures of fine flour, and threescore measures of meal,</VERS>\r\n      <VERS vnumber=\"23\">ten fat oxen, and twenty oxen out of the pastures, and a hundred sheep, besides harts, and gazelles, and roebucks, and fatted fowl.</VERS>\r\n      <VERS vnumber=\"24\">For he had dominion over all [the region] on this side the River, from Tiphsah even to Gaza, over all the kings on this side the River: and he had peace on all sides round about him.</VERS>\r\n      <VERS vnumber=\"25\">And Judah and Israel dwelt safely, every man under his vine and under his fig-tree, from Dan even to Beer-sheba, all the days of Solomon.</VERS>\r\n      <VERS vnumber=\"26\">And Solomon had forty thousand stalls of horses for his chariots, and twelve thousand horsemen.</VERS>\r\n      <VERS vnumber=\"27\">And those officers provided victuals for king Solomon, and for all that came unto king Solomon`s table, every man in his month; they let nothing be lacking.</VERS>\r\n      <VERS vnumber=\"28\">Barley also and straw for the horses and swift steeds brought they unto the place where [the officers] were, every man according to his charge.</VERS>\r\n      <VERS vnumber=\"29\">And God gave Solomon wisdom and understanding exceeding much, and largeness of heart, even as the sand that is on the sea-shore.</VERS>\r\n      <VERS vnumber=\"30\">And Solomon`s wisdom excelled the wisdom of all the children of the east, and all the wisdom of Egypt.</VERS>\r\n      <VERS vnumber=\"31\">For he was wiser than all men; than Ethan the Ezrahite, and Heman, and Calcol, and Darda, the sons of Mahol: and his fame was in all the nations round about.</VERS>\r\n      <VERS vnumber=\"32\">And he spake three thousand proverbs; and his songs were a thousand and five.</VERS>\r\n      <VERS vnumber=\"33\">And he spake of trees, from the cedar that is in Lebanon even unto the hyssop that springeth out of the wall; he spake also of beasts, and of birds, and of creeping things, and of fishes.</VERS>\r\n      <VERS vnumber=\"34\">And there came of all peoples to hear the wisdom of Solomon, from all kings of the earth, who had heard of his wisdom.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And Solomon sent to Hiram, saying,</VERS>\r\n      <VERS vnumber=\"3\">Thou knowest how that David my father could not build a house for the name of Jehovah his God for the wars which were about him on every side, until Jehovah put them under the soles of his feet.</VERS>\r\n      <VERS vnumber=\"4\">But now Jehovah my God hath given me rest on every side; there is neither adversary, nor evil occurrence.</VERS>\r\n      <VERS vnumber=\"5\">And, behold, I purpose to build a house for the name of Jehovah my God, as Jehovah spake unto David my father, saying, Thy son, whom I will set upon thy throne in thy room, he shall build the house for my name.</VERS>\r\n      <VERS vnumber=\"6\">Now therefore command thou that they cut me cedar-trees out of Lebanon; and my servants shall be with thy servants; and I will give thee hire for thy servants according to all that thou shalt say: for thou knowest that there is not among us any that knoweth how to cut timber like unto the Sidonians.</VERS>\r\n      <VERS vnumber=\"7\">And it came to pass, when Hiram heard the words of Solomon, that he rejoiced greatly, and said, Blessed be Jehovah this day, who hath given unto David a wise son over this great people.</VERS>\r\n      <VERS vnumber=\"8\">And Hiram sent to Solomon, saying, I have heard [the message] which thou hast sent unto me: I will do all thy desire concerning timber of cedar, and concerning timber of fir.</VERS>\r\n      <VERS vnumber=\"9\">My servants shall bring them down from Lebanon unto the sea; and I will make them into rafts to go by sea unto the place that thou shalt appoint me, and will cause them to be broken up there, and thou shalt receive them; and thou shalt accomplish my desire, in giving food for my household.</VERS>\r\n      <VERS vnumber=\"10\">So Hiram gave Solomon timber of cedar and timber of fir according to all his desire.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And Jehovah gave Solomon wisdom, as he promised him; and there was peace between Hiram and Solomon; and they two made a league together.</VERS>\r\n      <VERS vnumber=\"13\">And king Solomon raised a levy out of all Israel; and the levy was thirty thousand men.</VERS>\r\n      <VERS vnumber=\"14\">And 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 men subject to taskwork.</VERS>\r\n      <VERS vnumber=\"15\">And Solomon had threescore and ten thousand that bare burdens, and fourscore thousand that were hewers in the mountains;</VERS>\r\n      <VERS vnumber=\"16\">besides Solomon`s chief officers that were over the work, three thousand and three hundred, who bare rule over the people that wrought in the work.</VERS>\r\n      <VERS vnumber=\"17\">And the king commanded, and they hewed out great stones, costly stones, to lay the foundation of the house with wrought stone.</VERS>\r\n      <VERS vnumber=\"18\">And Solomon`s builders and Hiram`s builders and the Gebalites did fashion them, and prepared the timber and the stones to build the house.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">And 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 Ziv, which is the second month, that he began to build the house of Jehovah.</VERS>\r\n      <VERS vnumber=\"2\">And the house which king Solomon built for Jehovah, the length thereof was threescore cubits, and the breadth thereof twenty [cubits], and the height thereof thirty cubits.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And for the house he made windows of fixed lattice-work.</VERS>\r\n      <VERS vnumber=\"5\">And against the wall of the house he built stories round about, against the walls of the house round about, both of the temple and of the oracle; and he made side-chambers round about.</VERS>\r\n      <VERS vnumber=\"6\">The nethermost story was five cubits broad, and the middle was six cubits broad, and the third was seven cubits broad; for on the outside he made offsets [in the wall] of the house round about, that [the beams] should not have hold in the walls of the house.</VERS>\r\n      <VERS vnumber=\"7\">And the house, when it was in building, was built of stone made ready at the quarry; and there was neither hammer nor axe nor any tool of iron heard in the house, while it was in building.</VERS>\r\n      <VERS vnumber=\"8\">The door for the middle side-chambers was in the right side of the house: and they went up by winding stairs into the middle [story], and out of the middle into the third.</VERS>\r\n      <VERS vnumber=\"9\">So he built the house, and finished it; and he covered the house with beams and planks of cedar.</VERS>\r\n      <VERS vnumber=\"10\">And he built the stories against all the house, each five cubits high: and they rested on the house with timber of cedar.</VERS>\r\n      <VERS vnumber=\"11\">And the word of Jehovah came to Solomon, saying,</VERS>\r\n      <VERS vnumber=\"12\">Concerning this house which thou art building, if thou wilt walk in my statutes, and execute mine ordinances, and keep all my commandments to walk in them; then will I establish my word with thee, which I spake unto David thy father.</VERS>\r\n      <VERS vnumber=\"13\">And I will dwell among the children of Israel, and will not forsake my people Israel.</VERS>\r\n      <VERS vnumber=\"14\">So Solomon built the house, and finished it.</VERS>\r\n      <VERS vnumber=\"15\">And he built the walls of the house within with boards of cedar: from the floor of the house unto the walls of the ceiling, he covered them on the inside with wood; and he covered the floor of the house with boards of fir.</VERS>\r\n      <VERS vnumber=\"16\">And he built twenty cubits on the hinder part of the house with boards of cedar from the floor unto the walls [of the ceiling]: he built [them] for it within, for an oracle, even for the most holy place.</VERS>\r\n      <VERS vnumber=\"17\">And the house, that is, the temple before [the oracle], was forty cubits [long].</VERS>\r\n      <VERS vnumber=\"18\">And there was cedar on the house within, carved with knops and open flowers: all was cedar; there was no stone seen.</VERS>\r\n      <VERS vnumber=\"19\">And he prepared an oracle in the midst of the house within, to set there the ark of the covenant of Jehovah.</VERS>\r\n      <VERS vnumber=\"20\">And within the oracle was [a space of] twenty cubits in length, and twenty cubits in breadth, and twenty cubits in the height thereof; and he overlaid it with pure gold: and he covered the altar with cedar.</VERS>\r\n      <VERS vnumber=\"21\">So Solomon overlaid the house within with pure gold: and he drew chains of gold across before the oracle; and he overlaid it with gold.</VERS>\r\n      <VERS vnumber=\"22\">And the whole house he overlaid with gold, until all the house was finished: also the whole altar that belonged to the oracle he overlaid with gold.</VERS>\r\n      <VERS vnumber=\"23\">And in the oracle he made two cherubim of olive-wood, each ten cubits high.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And the other cherub was ten cubits: both the cherubim were of one measure and one form.</VERS>\r\n      <VERS vnumber=\"26\">The height of the one cherub was ten cubits, and so was it of the other cherub.</VERS>\r\n      <VERS vnumber=\"27\">And he set the cherubim within the inner house; and the wings of the cherubim were stretched forth, 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.</VERS>\r\n      <VERS vnumber=\"28\">And he overlaid the cherubim with gold.</VERS>\r\n      <VERS vnumber=\"29\">And he carved all the walls of the house round about with carved figures of cherubim and palm-trees and open flowers, within and without.</VERS>\r\n      <VERS vnumber=\"30\">And the floor of the house he overlaid with gold, within and without.</VERS>\r\n      <VERS vnumber=\"31\">And for the entrance of the oracle he made doors of olive-wood: the lintel [and] door-posts were a fifth part [of the wall].</VERS>\r\n      <VERS vnumber=\"32\">So [he made] two doors of olive-wood; and he carved upon them carvings of cherubim and palm-trees and open flowers, and overlaid them with gold; and he spread the gold upon the cherubim, and upon the palm-trees.</VERS>\r\n      <VERS vnumber=\"33\">So also made he for the entrance of the temple door-posts of olive-wood, out of a fourth part [of the wall];</VERS>\r\n      <VERS vnumber=\"34\">and two doors of fir-wood: the two leaves of the one door were folding, and the two leaves of the other door were folding.</VERS>\r\n      <VERS vnumber=\"35\">And he carved [thereon] cherubim and palm-trees and open flowers; and he overlaid them with gold fitted upon the graven work.</VERS>\r\n      <VERS vnumber=\"36\">And he built the inner court with three courses of hewn stone, and a course of cedar beams.</VERS>\r\n      <VERS vnumber=\"37\">In the fourth year was the foundation of the house of Jehovah laid, in the month Ziv.</VERS>\r\n      <VERS vnumber=\"38\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">And Solomon was building his own house thirteen years, and he finished all his house.</VERS>\r\n      <VERS vnumber=\"2\">For he built the house of the forest of Lebanon; the length thereof was a 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.</VERS>\r\n      <VERS vnumber=\"3\">And it was covered with cedar above over the forty and five beams, that were upon the pillars; fifteen in a row.</VERS>\r\n      <VERS vnumber=\"4\">And there were beams in three rows, and window was over against window in three ranks.</VERS>\r\n      <VERS vnumber=\"5\">And all the doors and posts were made square with beams: and window was over against window in three ranks.</VERS>\r\n      <VERS vnumber=\"6\">And he made the porch of pillars; the length thereof was fifty cubits, and the breadth thereof thirty cubits; and a porch before them; and pillars and a threshold before them.</VERS>\r\n      <VERS vnumber=\"7\">And he made the porch of the throne where he was to judge, even the porch of judgment: and it was covered with cedar from floor to floor.</VERS>\r\n      <VERS vnumber=\"8\">And his house where he was to dwell, the other court within the porch, was of the like work. He made also a house for Pharaoh`s daughter (whom Solomon had taken to wife), like unto this porch.</VERS>\r\n      <VERS vnumber=\"9\">All these were of costly stones, even of hewn stone, according to measure, sawed with saws, within and without, even from the foundation unto the coping, and so on the outside unto the great court.</VERS>\r\n      <VERS vnumber=\"10\">And the foundation was of costly stones, even great stones, stones of ten cubits, and stones of eight cubits.</VERS>\r\n      <VERS vnumber=\"11\">And above were costly stones, even hewn stone, according to measure, and cedar-wood.</VERS>\r\n      <VERS vnumber=\"12\">And the great court round about had three courses of hewn stone, and a course of cedar beams; like as the inner court of the house of Jehovah, and the porch of the house.</VERS>\r\n      <VERS vnumber=\"13\">And king Solomon sent and fetched Hiram out of Tyre.</VERS>\r\n      <VERS vnumber=\"14\">He was the son of a widow 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 skill, to work all works in brass. And he came to king Solomon, and wrought all his work.</VERS>\r\n      <VERS vnumber=\"15\">For he fashioned the two pillars of brass, eighteen cubits high apiece: and a line of twelve cubits compassed either of them about.</VERS>\r\n      <VERS vnumber=\"16\">And he made two capitals of molten brass, to set upon the tops of the pillars: the height of the one capital was five cubits, and the height of the other capital was five cubits.</VERS>\r\n      <VERS vnumber=\"17\">There were nets of checker-work, and wreaths of chain-work, for the capitals which were upon the top of the pillars; seven for the one capital, and seven for the other capital.</VERS>\r\n      <VERS vnumber=\"18\">So he made the pillars; and there were two rows round about upon the one network, to cover the capitals that were upon the top of the pillars: and so did he for the other capital.</VERS>\r\n      <VERS vnumber=\"19\">And the capitals that were upon the top of the pillars in the porch were of lily-work, four cubits.</VERS>\r\n      <VERS vnumber=\"20\">And there were capitals above also upon the two pillars, close by the belly which was beside the network: and the pomegranates were two hundred, in rows round about upon the other capital.</VERS>\r\n      <VERS vnumber=\"21\">And he set up the pillars at 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.</VERS>\r\n      <VERS vnumber=\"22\">And upon the top of the pillars was lily-work: so was the work of the pillars finished.</VERS>\r\n      <VERS vnumber=\"23\">And he made the molten sea of ten cubits from brim to brim, round in compass, and the height thereof was five cubits; and a line of thirty cubits compassed it round about.</VERS>\r\n      <VERS vnumber=\"24\">And under the brim of it round about there were knops which did compass it, for ten cubits, compassing the sea round about: the knops were in two rows, cast when it was cast.</VERS>\r\n      <VERS vnumber=\"25\">It 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 upon them above, and all their hinder parts were inward.</VERS>\r\n      <VERS vnumber=\"26\">And it was a handbreadth thick: and the brim thereof was wrought like the brim of a cup, like the flower of a lily: it held two thousand baths.</VERS>\r\n      <VERS vnumber=\"27\">And he made the 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.</VERS>\r\n      <VERS vnumber=\"28\">And the work of the bases was on this manner: they had panels; and there were panels between the ledges;</VERS>\r\n      <VERS vnumber=\"29\">and on the panels that were between the ledges were lions, oxen, and cherubim; and upon the ledges there was a pedestal above; and beneath the lions and oxen were wreaths of hanging work.</VERS>\r\n      <VERS vnumber=\"30\">And every base had four brazen wheels, and axles of brass; and the four feet thereof had undersetters: beneath the laver were the undersetters molten, with wreaths at the side of each.</VERS>\r\n      <VERS vnumber=\"31\">And the mouth of it within the capital and above was a cubit: and the mouth thereof was round after the work of a pedestal, a cubit and a half; and also upon the mouth of it were gravings, and their panels were foursquare, not round.</VERS>\r\n      <VERS vnumber=\"32\">And the four wheels were underneath the panels; and the axletrees of the wheels were in the base: and the height of a wheel was a cubit and half a cubit.</VERS>\r\n      <VERS vnumber=\"33\">And the work of the wheels was like the work of a chariot wheel: their axletrees, and their felloes, and their spokes, and their naves, were all molten.</VERS>\r\n      <VERS vnumber=\"34\">And there were four undersetters at the four corners of each base: the undersetters thereof were of the base itself.</VERS>\r\n      <VERS vnumber=\"35\">And in the top of the base was there a round compass half a cubit high; and on the top of the base the stays thereof and the panels thereof were of the same.</VERS>\r\n      <VERS vnumber=\"36\">And on the plates of the stays thereof, and on the panels thereof, he graved cherubim, lions, and palm-trees, according to the space of each, with wreaths round about.</VERS>\r\n      <VERS vnumber=\"37\">After this manner he made the ten bases: all of them had one casting, one measure, and one form.</VERS>\r\n      <VERS vnumber=\"38\">And he made ten lavers of brass: one laver contained forty baths; and every laver was four cubits; and upon very one of the ten bases one laver.</VERS>\r\n      <VERS vnumber=\"39\">And he set the bases, five 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, toward the south.</VERS>\r\n      <VERS vnumber=\"40\">And Hiram made the lavers, and the shovels, and the basins. So Hiram made an end of doing all the work that he wrought for king Solomon in the house of Jehovah:</VERS>\r\n      <VERS vnumber=\"41\">the two pillars, and the two bowls of the capitals that were on the top of the pillars; and the two networks to cover the two bowls of the capitals that were on the top of the pillars;</VERS>\r\n      <VERS vnumber=\"42\">and the four hundred pomegranates for the two networks; two rows of pomegranates for each network, to cover the two bowls of the capitals that were upon the pillars;</VERS>\r\n      <VERS vnumber=\"43\">and the ten bases, and the ten lavers on the bases;</VERS>\r\n      <VERS vnumber=\"44\">and the one sea, and the twelve oxen under the sea;</VERS>\r\n      <VERS vnumber=\"45\">and the pots, and the shovels, and the basins: even all these vessels, which Hiram made for king Solomon, in the house of Jehovah, were of burnished brass.</VERS>\r\n      <VERS vnumber=\"46\">In the plain of the Jordan did the king cast them, in the clay ground between Succoth and Zarethan.</VERS>\r\n      <VERS vnumber=\"47\">And Solomon left all the vessels [unweighed], because they were exceeding many: the weight of the brass could not be found out.</VERS>\r\n      <VERS vnumber=\"48\">And Solomon made all the vessels that were in the house of Jehovah: the golden altar, and the table whereupon the showbread was, of gold;</VERS>\r\n      <VERS vnumber=\"49\">and the candlesticks, five on the right side, and five on the left, before the oracle, of pure gold; and the flowers, and the lamps, and the tongs, of gold;</VERS>\r\n      <VERS vnumber=\"50\">and the cups, and the snuffers, and the basins, and the spoons, and the firepans, of pure gold; and the hinges, both for the doors of the inner house, the most holy place, and for the doors of the house, [to wit], of the temple, of gold.</VERS>\r\n      <VERS vnumber=\"51\">Thus all the work that king Solomon wrought in the house of Jehovah was finished. And Solomon brought in the things which David his father had dedicated, [even] the silver, and the gold, and the vessels, and put them in the treasuries of the house of Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">Then Solomon assembled the elders of Israel, and all the heads of the tribes, the princes of the fathers` [houses] of the children of Israel, unto king Solomon in Jerusalem, to bring up the ark of the covenant of Jehovah out of the city of David, which is Zion.</VERS>\r\n      <VERS vnumber=\"2\">And all the men of Israel assembled themselves unto king Solomon at the feast, in the month Ethanim, which is the seventh month.</VERS>\r\n      <VERS vnumber=\"3\">And all the elders of Israel came, and the priests took up the ark.</VERS>\r\n      <VERS vnumber=\"4\">And they brought up the ark of Jehovah, and the tent of meeting, and all the holy vessels that were in the Tent; even these did the priests and the Levites bring up.</VERS>\r\n      <VERS vnumber=\"5\">And 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 counted nor numbered for multitude.</VERS>\r\n      <VERS vnumber=\"6\">And the priests brought in the ark of the covenant of Jehovah unto its place, into the oracle of the house, to the most holy place, even under the wings of the cherubim.</VERS>\r\n      <VERS vnumber=\"7\">For the cherubim spread forth their wings over the place of the ark, and the cherubim covered the ark and the staves thereof above.</VERS>\r\n      <VERS vnumber=\"8\">And the staves were so long that the ends of the staves were seen from the holy place before the oracle; but they were not seen without: and there they are unto this day.</VERS>\r\n      <VERS vnumber=\"9\">There was nothing in the ark save the two tables of stone which Moses put there at Horeb, when Jehovah made a covenant with the children of Israel, when they came out of the land of Egypt.</VERS>\r\n      <VERS vnumber=\"10\">And it came to pass, when the priests were come out of the holy place, that the cloud filled the house of Jehovah,</VERS>\r\n      <VERS vnumber=\"11\">so that the priests could not stand to minister by reason of the cloud; for the glory of Jehovah filled the house of Jehovah.</VERS>\r\n      <VERS vnumber=\"12\">Then spake Solomon, Jehovah hath said that he would dwell in the thick darkness.</VERS>\r\n      <VERS vnumber=\"13\">I have surely built thee a house of habitation, a place for thee to dwell in for ever.</VERS>\r\n      <VERS vnumber=\"14\">And the king turned his face about, and blessed all the assembly of Israel: and all the assembly of Israel stood.</VERS>\r\n      <VERS vnumber=\"15\">And he said, Blessed be Jehovah, the God of Israel, who spake with his mouth unto David thy father, and hath with his hand fulfilled it, saying,</VERS>\r\n      <VERS vnumber=\"16\">Since 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 a house, that my name might be there; but I chose David to be over my people Israel.</VERS>\r\n      <VERS vnumber=\"17\">Now it was in the heart of David my father to build a house for the name of Jehovah, the God of Israel.</VERS>\r\n      <VERS vnumber=\"18\">But Jehovah said unto David my father, Whereas it was in thy heart to build a house for my name, thou didst well that it was in thy heart:</VERS>\r\n      <VERS vnumber=\"19\">nevertheless thou shalt not build the house; but thy son that shall come forth out of thy loins, he shall build the house for my name.</VERS>\r\n      <VERS vnumber=\"20\">And Jehovah hath established his word that he spake; for I am risen up in the room of David my father, and sit on the throne of Israel, as Jehovah promised, and have built the house for the name of Jehovah, the God of Israel.</VERS>\r\n      <VERS vnumber=\"21\">And there have I set a place for the ark, wherein is the covenant of Jehovah, which he made with our fathers, when he brought them out of the land of Egypt.</VERS>\r\n      <VERS vnumber=\"22\">And Solomon stood before the altar of Jehovah in the presence of all the assembly of Israel, and spread forth his hands toward heaven;</VERS>\r\n      <VERS vnumber=\"23\">and he said, O Jehovah, the God of Israel, there is no God like thee, in heaven above, or on earth beneath; who keepest covenant and lovingkindness with thy servants, that walk before thee with all their heart;</VERS>\r\n      <VERS vnumber=\"24\">who hast kept with thy servant David my father that which thou didst promise him: yea, thou spakest with thy mouth, and hast fulfilled it with thy hand, as it is this day.</VERS>\r\n      <VERS vnumber=\"25\">Now therefore, O Jehovah, the 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 on the throne of Israel, if only thy children take heed to their way, to walk before me as thou hast walked before me.</VERS>\r\n      <VERS vnumber=\"26\">Now therefore, O God of Israel, let thy word, I pray thee, be verified, which thou spakest unto thy servant David my father.</VERS>\r\n      <VERS vnumber=\"27\">But will God in very deed dwell on the earth? behold, heaven and the heaven of heavens cannot contain thee; how much less this house that I have builded!</VERS>\r\n      <VERS vnumber=\"28\">Yet have thou respect unto the prayer of thy servant, and to his supplication, O Jehovah my God, to hearken unto the cry and to the prayer which thy servant prayeth before thee this day;</VERS>\r\n      <VERS vnumber=\"29\">that thine eyes may be open toward this house night and day, even toward the place whereof thou hast said, My name shall be there; to hearken unto the prayer which thy servant shall pray toward this place.</VERS>\r\n      <VERS vnumber=\"30\">And hearken thou to the supplication of thy servant, and of thy people Israel, when they shall pray toward this place: yea, hear thou in heaven thy dwelling-place; and when thou hearest, forgive.</VERS>\r\n      <VERS vnumber=\"31\">If a man sin against his neighbor, and an oath be laid upon him to cause him to swear, and he come [and] swear before thine altar in this house;</VERS>\r\n      <VERS vnumber=\"32\">then hear thou in heaven, and do, and judge thy servants, condemning the wicked, to bring his way upon his own head, and justifying the righteous, to give him according to his righteousness.</VERS>\r\n      <VERS vnumber=\"33\">When thy people Israel are smitten down before the enemy, because they have sinned against thee; if they turn again to thee, and confess thy name, and pray and make supplication unto thee in this house:</VERS>\r\n      <VERS vnumber=\"34\">then 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.</VERS>\r\n      <VERS vnumber=\"35\">When 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 dost afflict them:</VERS>\r\n      <VERS vnumber=\"36\">then hear thou in heaven, and forgive the sin of thy servants, and of thy people Israel, when thou teachest them the good way wherein they should walk; and send rain upon thy land, which thou hast given to thy people for an inheritance.</VERS>\r\n      <VERS vnumber=\"37\">If there be in the land famine, if there be pestilence, if there be blasting [or] mildew, locust [or] caterpillar; if their enemy besiege them in the land of their cities; whatsoever plague, whatsoever sickness there be;</VERS>\r\n      <VERS vnumber=\"38\">what prayer and supplication soever be made by any man, [or] by all thy people Israel, who shall know every man the plague of his own heart, and spread forth his hands toward this house:</VERS>\r\n      <VERS vnumber=\"39\">then hear thou in heaven thy dwelling-place, and forgive, and do, and render unto every man according to all his ways, whose heart thou knowest; (for thou, even thou only, knowest the hearts of all the children of men;)</VERS>\r\n      <VERS vnumber=\"40\">that they may fear thee all the days that they live in the land which thou gavest unto our fathers.</VERS>\r\n      <VERS vnumber=\"41\">Moreover concerning the foreigner, that is not of thy people Israel, when he shall come out of a far country for thy name`s sake</VERS>\r\n      <VERS vnumber=\"42\">(for they shall hear of thy great name, and of thy mighty hand, and of thine outstretched arm); when he shall come and pray toward this house;</VERS>\r\n      <VERS vnumber=\"43\">hear thou in heaven thy dwelling-place, and do according to all that the foreigner calleth to thee for; that all the peoples of the earth may know thy name, to fear thee, as doth thy people Israel, and that they may know that this house which I have built is called by my name.</VERS>\r\n      <VERS vnumber=\"44\">If thy people go out to battle against their enemy, by whatsoever way thou shalt send them, and they pray unto Jehovah toward the city which thou hast chosen, and toward the house which I have built for thy name;</VERS>\r\n      <VERS vnumber=\"45\">then hear thou in heaven their prayer and their supplication, and maintain their cause.</VERS>\r\n      <VERS vnumber=\"46\">If 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 captive unto the land of the enemy, far off or near;</VERS>\r\n      <VERS vnumber=\"47\">yet if they shall bethink themselves in the land whither they are carried captive, and turn again, and make supplication unto thee in the land of them that carried them captive, saying, We have sinned, and have done perversely, we have dealt wickedly;</VERS>\r\n      <VERS vnumber=\"48\">if they return unto thee with all their heart and with all their soul in the land of their enemies, who carried them 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:</VERS>\r\n      <VERS vnumber=\"49\">then hear thou their prayer and their supplication in heaven thy dwelling-place, and maintain their cause;</VERS>\r\n      <VERS vnumber=\"50\">and forgive thy people who have sinned against thee, and all their transgressions wherein they have transgressed against thee; and give them compassion before those who carried them captive, that they may have compassion on them</VERS>\r\n      <VERS vnumber=\"51\">(for they are thy people, and thine inheritance, which thou broughtest forth out of Egypt, from the midst of the furnace of iron);</VERS>\r\n      <VERS vnumber=\"52\">that thine eyes may be open unto the supplication of thy servant, and unto the supplication of thy people Israel, to hearken unto them whensoever they cry unto thee.</VERS>\r\n      <VERS vnumber=\"53\">For thou didst separate them from among all the peoples of the earth, to be thine inheritance, as thou spakest by Moses thy servant, when thou broughtest our fathers out of Egypt, O Lord Jehovah.</VERS>\r\n      <VERS vnumber=\"54\">And it was so, that, when Solomon had made an end of praying all this prayer and supplication unto Jehovah, he arose from before the altar of Jehovah, from kneeling on his knees with his hands spread forth toward heaven.</VERS>\r\n      <VERS vnumber=\"55\">And he stood, and blessed all the assembly of Israel with a loud voice, saying,</VERS>\r\n      <VERS vnumber=\"56\">Blessed be Jehovah, 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 Moses his servant.</VERS>\r\n      <VERS vnumber=\"57\">Jehovah our God be with us, as he was with our fathers: let him not leave us, nor forsake us;</VERS>\r\n      <VERS vnumber=\"58\">that he may incline our hearts unto him, to walk in all his ways, and to keep his commandments, and his statutes, and his ordinances, which he commanded our fathers.</VERS>\r\n      <VERS vnumber=\"59\">And let these my words, wherewith I have made supplication before Jehovah, be nigh unto Jehovah our God day and night, that he maintain the cause of his servant, and the cause of his people Israel, as every day shall require;</VERS>\r\n      <VERS vnumber=\"60\">that all the peoples of the earth may know that Jehovah, he is God; there is none else.</VERS>\r\n      <VERS vnumber=\"61\">Let your heart therefore be perfect with Jehovah our God, to walk in his statutes, and to keep his commandments, as at this day.</VERS>\r\n      <VERS vnumber=\"62\">And the king, and all Israel with him, offered sacrifice before Jehovah.</VERS>\r\n      <VERS vnumber=\"63\">And Solomon offered for the sacrifice of peace-offerings, which he offered unto Jehovah, two and twenty thousand oxen, and a hundred and twenty thousand sheep. So the king and all the children of Israel dedicated the house of Jehovah.</VERS>\r\n      <VERS vnumber=\"64\">The same day did the king hallow the middle of the court that was before the house of Jehovah; for there he offered the burnt-offering, and the meal-offering, and the fat of the peace-offerings, because the brazen altar that was before Jehovah was too little to receive the burnt-offering, and the meal-offering, and the fat of the peace-offerings.</VERS>\r\n      <VERS vnumber=\"65\">So Solomon held the feast at that time, and all Israel with him, a great assembly, from the entrance of Hamath unto the brook of Egypt, before Jehovah our God, seven days and seven days, even fourteen days.</VERS>\r\n      <VERS vnumber=\"66\">On 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 Jehovah had showed unto David his servant, and to Israel his people.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">And it came to pass, when Solomon had finished the building of the house of Jehovah, and the king`s house, and all Solomon`s desire which he was pleased to do,</VERS>\r\n      <VERS vnumber=\"2\">that Jehovah appeared to Solomon the second time, as he had appeared unto him at Gibeon.</VERS>\r\n      <VERS vnumber=\"3\">And Jehovah 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 my heart shall be there perpetually.</VERS>\r\n      <VERS vnumber=\"4\">And as for thee, 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 mine ordinances;</VERS>\r\n      <VERS vnumber=\"5\">then I will establish the throne of thy kingdom over Israel for ever, according as I promised to David thy father, saying, There shall not fail thee a man upon the throne of Israel.</VERS>\r\n      <VERS vnumber=\"6\">But if ye shall turn away from following me, ye or your children, and not keep my commandments and my statutes which I have set before you, but shall go and serve other gods, and worship them;</VERS>\r\n      <VERS vnumber=\"7\">then 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 peoples.</VERS>\r\n      <VERS vnumber=\"8\">And though this house is so high, yet shall every one that passeth by it be astonished, and shall hiss; and they shall say, Why hath Jehovah done thus unto this land, and to this house?</VERS>\r\n      <VERS vnumber=\"9\">and they shall answer, Because they forsook Jehovah their God, who brought forth their fathers out of the land of Egypt, and laid hold on other gods, and worshipped them, and served them: therefore hath Jehovah brought all this evil upon them.</VERS>\r\n      <VERS vnumber=\"10\">And it came to pass at the end of twenty years, wherein Solomon had built the two houses, the house of Jehovah and the king`s house</VERS>\r\n      <VERS vnumber=\"11\">(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.</VERS>\r\n      <VERS vnumber=\"12\">And Hiram came out from Tyre to see the cities which Solomon had given him; and they pleased him not.</VERS>\r\n      <VERS vnumber=\"13\">And he said, What cities are these which thou hast given me, my brother? And he called them the land of Cabul unto this day.</VERS>\r\n      <VERS vnumber=\"14\">And Hiram sent to the king sixscore talents of gold.</VERS>\r\n      <VERS vnumber=\"15\">And this is the reason of the levy which king Solomon raised, to build the house of Jehovah, and his own house, and Millo, and the wall of Jerusalem, and Hazor, and Megiddo, and Gezer.</VERS>\r\n      <VERS vnumber=\"16\">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 portion unto his daughter, Solomon`s wife.</VERS>\r\n      <VERS vnumber=\"17\">And Solomon built Gezer, and Beth-horon the nether,</VERS>\r\n      <VERS vnumber=\"18\">and Baalath, and Tamar in the wilderness, in the land,</VERS>\r\n      <VERS vnumber=\"19\">and all the store-cities that Solomon had, and the cities for his chariots, and the cities for his horsemen, and that which Solomon desired to build for his pleasure in Jerusalem, and in Lebanon, and in all the land of his dominion.</VERS>\r\n      <VERS vnumber=\"20\">As for all the people that were left of the Amorites, the Hittites, the Perizzites, the Hivites, and the Jebusites, who were not of the children of Israel;</VERS>\r\n      <VERS vnumber=\"21\">their children that were left after them in the land, whom the children of Israel were not able utterly to destroy, of them did Solomon raise a levy of bondservants unto this day.</VERS>\r\n      <VERS vnumber=\"22\">But of the children of Israel did Solomon make no bondservants; but they were the men of war, and his servants, and his princes, and his captains, and rulers of his chariots and of his horsemen.</VERS>\r\n      <VERS vnumber=\"23\">These were the chief officers that were over Solomon`s work, five hundred and fifty, who bare rule over the people that wrought in the work.</VERS>\r\n      <VERS vnumber=\"24\">But 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.</VERS>\r\n      <VERS vnumber=\"25\">And three times a year did Solomon offer burnt-offerings and peace-offerings upon the altar which he built unto Jehovah, burning incense therewith, [upon the altar] that was before Jehovah. So he finished the house.</VERS>\r\n      <VERS vnumber=\"26\">And king Solomon made a navy of ships in Ezion-geber, which is beside Eloth, on the shore of the Red Sea, in the land of Edom.</VERS>\r\n      <VERS vnumber=\"27\">And Hiram sent in the navy his servants, shipmen that had knowledge of the sea, with the servants of Solomon.</VERS>\r\n      <VERS vnumber=\"28\">And they came to Ophir, and fetched from thence gold, four hundred and twenty talents, and brought it to king Solomon.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">And when the queen of Sheba heard of the fame of Solomon concerning the name of Jehovah, she came to prove him with hard questions.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And Solomon told her all her questions: there was not anything hid from the king which he told her not.</VERS>\r\n      <VERS vnumber=\"4\">And when the queen of Sheba had seen all the wisdom of Solomon, and the house that he had built,</VERS>\r\n      <VERS vnumber=\"5\">and the food 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 Jehovah; there was no more spirit in her.</VERS>\r\n      <VERS vnumber=\"6\">And she said to the king, It was a true report that I heard in mine own land of thine acts, and of thy wisdom.</VERS>\r\n      <VERS vnumber=\"7\">Howbeit 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 exceed the fame which I heard.</VERS>\r\n      <VERS vnumber=\"8\">Happy are thy men, happy are these thy servants, that stand continually before thee, [and] that hear thy wisdom.</VERS>\r\n      <VERS vnumber=\"9\">Blessed be Jehovah thy God, who delighted in thee, to set thee on the throne of Israel: because Jehovah loved Israel for ever, therefore made he thee king, to do justice and righteousness.</VERS>\r\n      <VERS vnumber=\"10\">And she gave the king a 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.</VERS>\r\n      <VERS vnumber=\"11\">And the navy also of Hiram, that brought gold from Ophir, brought in from Ophir great plenty of almug-trees and precious stones.</VERS>\r\n      <VERS vnumber=\"12\">And the king made of the almug-trees pillars for the house of Jehovah, and for the king`s house, harps also and psalteries for the singers: there came no such almug-trees, nor were seen, unto this day.</VERS>\r\n      <VERS vnumber=\"13\">And king Solomon gave to the queen of Sheba all her desire, whatsoever she asked, besides that which Solomon gave her of his royal bounty. So she turned, and went to her own land, she and her servants.</VERS>\r\n      <VERS vnumber=\"14\">Now the weight of gold that came to Solomon in one year was six hundred threescore and six talents of gold,</VERS>\r\n      <VERS vnumber=\"15\">besides [that which] the traders [brought], and the traffic of the merchants, and of all the kings of the mingled people, and of the governors of the country.</VERS>\r\n      <VERS vnumber=\"16\">And king Solomon made two hundred bucklers of beaten gold; six hundred [shekels] of gold went to one buckler.</VERS>\r\n      <VERS vnumber=\"17\">And [he made] three hundred shields of beaten gold; three pounds of gold went to one shield: and the king put them in the house of the forest of Lebanon.</VERS>\r\n      <VERS vnumber=\"18\">Moreover the king made a great throne of ivory, and overlaid it with the finest gold.</VERS>\r\n      <VERS vnumber=\"19\">There were six steps to the throne, and the top of the throne was round behind; and there were stays on either side by the place of the seat, and two lions standing beside the stays.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">For the king had at sea a navy of Tarshish with the navy of Hiram: once every three years came the navy of Tarshish, bringing gold, and silver, ivory, and apes, and peacocks.</VERS>\r\n      <VERS vnumber=\"23\">So king Solomon exceeded all the kings of the earth in riches and in wisdom.</VERS>\r\n      <VERS vnumber=\"24\">And all the earth sought the presence of Solomon, to hear his wisdom, which God had put in his heart.</VERS>\r\n      <VERS vnumber=\"25\">And they brought every man his tribute, vessels of silver, and vessels of gold, and raiment, and armor, and spices, horses, and mules, a rate year by year.</VERS>\r\n      <VERS vnumber=\"26\">And Solomon gathered together chariots and horsemen: and he had a thousand and four hundred chariots, and twelve thousand horsemen, that he bestowed in the chariot cities, and with the king at Jerusalem.</VERS>\r\n      <VERS vnumber=\"27\">And the king made silver to be in Jerusalem as stones, and cedars made he to be as the sycomore-trees that are in the lowland, for abundance.</VERS>\r\n      <VERS vnumber=\"28\">And the horses which Solomon had were brought out of Egypt; and the king`s merchants received them in droves, each drove at a price.</VERS>\r\n      <VERS vnumber=\"29\">And a chariot came up and went out of Egypt for six hundred [shekels] of silver, and a horse for a 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">Now king Solomon loved many foreign women, together with the daughter of Pharaoh, women of the Moabites, Ammonites, Edomites, Sidonians, and Hittites;</VERS>\r\n      <VERS vnumber=\"2\">of the nations concerning which Jehovah said unto the children of Israel, Ye shall not go among them, neither shall they come among you; for surely they will turn away your heart after their gods: Solomon clave unto these in love.</VERS>\r\n      <VERS vnumber=\"3\">And he had seven hundred wives, princesses, and three hundred concubines; and his wives turned away his heart.</VERS>\r\n      <VERS vnumber=\"4\">For 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 Jehovah his God, as was the heart of David his father.</VERS>\r\n      <VERS vnumber=\"5\">For Solomon went after Ashtoreth the goddess of the Sidonians, and after Milcom the abomination of the Ammonites.</VERS>\r\n      <VERS vnumber=\"6\">And Solomon did that which was evil in the sight of Jehovah, and went not fully after Jehovah, as did David his father.</VERS>\r\n      <VERS vnumber=\"7\">Then did Solomon build a high place for Chemosh the abomination of Moab, in the mount that is before Jerusalem, and for Molech the abomination of the children of Ammon.</VERS>\r\n      <VERS vnumber=\"8\">And so did he for all his foreign wives, who burnt incense and sacrificed unto their gods.</VERS>\r\n      <VERS vnumber=\"9\">And Jehovah was angry with Solomon, because his heart was turned away from Jehovah, the God of Israel, who had appeared unto him twice,</VERS>\r\n      <VERS vnumber=\"10\">and had commanded him concerning this thing, that he should not go after other gods: but he kept not that which Jehovah commanded.</VERS>\r\n      <VERS vnumber=\"11\">Wherefore Jehovah 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.</VERS>\r\n      <VERS vnumber=\"12\">Notwithstanding 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.</VERS>\r\n      <VERS vnumber=\"13\">Howbeit I will not rend away all the kingdom; but I will give one tribe to thy son, for David my servant`s sake, and for Jerusalem`s sake which I have chosen.</VERS>\r\n      <VERS vnumber=\"14\">And Jehovah raised up an adversary unto Solomon, Hadad the Edomite: he was of the king`s seed in Edom.</VERS>\r\n      <VERS vnumber=\"15\">For it came to pass, when David was in Edom, and Joab the captain of the host was gone up to bury the slain, and had smitten every male in Edom</VERS>\r\n      <VERS vnumber=\"16\">(for Joab and all Israel remained there six months, until he had cut off every male in Edom);</VERS>\r\n      <VERS vnumber=\"17\">that Hadad fled, he and certain Edomites of his father`s servants with him, to go into Egypt, Hadad being yet a little child.</VERS>\r\n      <VERS vnumber=\"18\">And 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, who gave him a house, and appointed him victuals, and gave him land.</VERS>\r\n      <VERS vnumber=\"19\">And Hadad found great favor in the sight of Pharaoh, so that he gave him to wife the sister of his own wife, the sister of Tahpenes the queen.</VERS>\r\n      <VERS vnumber=\"20\">And the sister of Tahpenes bare him Genubath his son, whom Tahpenes weaned in Pharaoh`s house; and Genubath was in Pharaoh`s house among the sons of Pharaoh.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">Then 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 only let me depart.</VERS>\r\n      <VERS vnumber=\"23\">And God raised up [another] adversary unto him, Rezon the son of Eliada, who had fled from his lord Hadadezer king of Zobah.</VERS>\r\n      <VERS vnumber=\"24\">And he gathered men unto him, and became captain over a troop, when David slew them [of Zobah]: and they went to Damascus, and dwelt therein, and reigned in Damascus.</VERS>\r\n      <VERS vnumber=\"25\">And he was an adversary to Israel all the days of Solomon, besides the mischief that Hadad [did]: and he abhorred Israel, and reigned over Syria.</VERS>\r\n      <VERS vnumber=\"26\">And Jeroboam the son of Nebat, an Ephraimite of Zeredah, a servant of Solomon, whose mother`s name was Zeruah, a widow, he also lifted up his hand against the king.</VERS>\r\n      <VERS vnumber=\"27\">And this was the reason why he lifted up his hand against the king: Solomon built Millo, and repaired the breach of the city of David his father.</VERS>\r\n      <VERS vnumber=\"28\">And the man Jeroboam was a mighty man of valor; and Solomon saw the young man that he was industrious, and he gave him charge over all the labor of the house of Joseph.</VERS>\r\n      <VERS vnumber=\"29\">And it came to pass at that time, when Jeroboam went out of Jerusalem, that the prophet Ahijah the Shilonite found him in the way; now [Ahijah] had clad himself with a new garment; and they two were alone in the field.</VERS>\r\n      <VERS vnumber=\"30\">And Ahijah laid hold of the new garment that was on him, and rent it in twelve pieces.</VERS>\r\n      <VERS vnumber=\"31\">And he said to Jeroboam, Take thee ten pieces; for thus saith Jehovah, the God of Israel, Behold, I will rend the kingdom out of the hand of Solomon, and will give ten tribes to thee</VERS>\r\n      <VERS vnumber=\"32\">(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);</VERS>\r\n      <VERS vnumber=\"33\">because that they have forsaken me, and have worshipped Ashtoreth the goddess of the Sidonians, Chemosh the god of Moab, and Milcom the god of the children of Ammon; and they have not walked in my ways, to do that which is right in mine eyes, and [to keep] my statutes and mine ordinances, as did David his father.</VERS>\r\n      <VERS vnumber=\"34\">Howbeit 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, who kept my commandments and my statutes;</VERS>\r\n      <VERS vnumber=\"35\">but I will take the kingdom out of his son`s hand, and will give it unto thee, even ten tribes.</VERS>\r\n      <VERS vnumber=\"36\">And unto his son will I give one tribe, that David my servant may have a lamp alway before me in Jerusalem, the city which I have chosen me to put my name there.</VERS>\r\n      <VERS vnumber=\"37\">And I will take thee, and thou shalt reign according to all that thy soul desireth, and shalt be king over Israel.</VERS>\r\n      <VERS vnumber=\"38\">And it shall be, if thou wilt hearken unto all that I command thee, and wilt walk in my ways, and do that which is right in mine eyes, to keep my statutes and my commandments, as David my servant did; that I will be with thee, and will build thee a sure house, as I built for David, and will give Israel unto thee.</VERS>\r\n      <VERS vnumber=\"39\">And I will for this afflict the seed of David, but not for ever.</VERS>\r\n      <VERS vnumber=\"40\">Solomon sought therefore to kill Jeroboam; but Jeroboam arose, and fled into Egypt, unto Shishak king of Egypt, and was in Egypt until the death of Solomon.</VERS>\r\n      <VERS vnumber=\"41\">Now 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?</VERS>\r\n      <VERS vnumber=\"42\">And the time that Solomon reigned in Jerusalem over all Israel was forty years.</VERS>\r\n      <VERS vnumber=\"43\">And Solomon slept with his fathers, and was buried in the city of David his father: and Rehoboam his son reigned in his stead.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">And Rehoboam went to Shechem: for all Israel were come to Shechem to make him king.</VERS>\r\n      <VERS vnumber=\"2\">And it came to pass, when Jeroboam the son of Nebat heard of it (for he was yet in Egypt, whither he had fled from the presence of king Solomon, and Jeroboam dwelt in Egypt,</VERS>\r\n      <VERS vnumber=\"3\">and they sent and called him), that Jeroboam and all the assembly of Israel came, and spake unto Rehoboam, saying,</VERS>\r\n      <VERS vnumber=\"4\">Thy 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.</VERS>\r\n      <VERS vnumber=\"5\">And he said unto them, Depart yet for three days, then come again to me. And the people departed.</VERS>\r\n      <VERS vnumber=\"6\">And 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?</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">But he forsook the counsel of the old men which they had given him, and took counsel with the young men that were grown up with him, that stood before him.</VERS>\r\n      <VERS vnumber=\"9\">And he said unto them, What counsel give ye, that we may return answer to this people, who have spoken to me, saying, Make the yoke that thy father did put upon us lighter?</VERS>\r\n      <VERS vnumber=\"10\">And the young men that were grown up with him spake unto him, saying, Thus shalt thou say unto this people that spake unto thee, saying, Thy father made our yoke heavy, but make thou it lighter unto us; thus shalt thou speak unto them, My little finger is thicker than my father`s loins.</VERS>\r\n      <VERS vnumber=\"11\">And now whereas my father did lade you with a heavy yoke, I will add to your yoke: my father chastised you with whips, but I will chastise you with scorpions.</VERS>\r\n      <VERS vnumber=\"12\">So Jeroboam and all the people came to Rehoboam the third day, as the king bade, saying, Come to me again the third day.</VERS>\r\n      <VERS vnumber=\"13\">And the king answered the people roughly, and forsook the counsel of the old men which they had given him,</VERS>\r\n      <VERS vnumber=\"14\">and spake to them after the counsel of the young men, saying, My father made your yoke heavy, but I will add to your yoke: my father chastised you with whips, but I will chastise you with scorpions.</VERS>\r\n      <VERS vnumber=\"15\">So the king hearkened not unto the people; for it was a thing brought about of Jehovah, that he might establish his word, which Jehovah spake by Ahijah the Shilonite to Jeroboam the son of Nebat.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">But as for the children of Israel that dwelt in the cities of Judah, Rehoboam reigned over them.</VERS>\r\n      <VERS vnumber=\"18\">Then king Rehoboam sent Adoram, who was over the men subject to taskwork; and all Israel stoned him to death with stones. And king Rehoboam made speed to get him up to his chariot, to flee to Jerusalem.</VERS>\r\n      <VERS vnumber=\"19\">So Israel rebelled against the house of David unto this day.</VERS>\r\n      <VERS vnumber=\"20\">And it came to pass, when all Israel heard that Jeroboam was returned, 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.</VERS>\r\n      <VERS vnumber=\"21\">And when Rehoboam was come to Jerusalem, he assembled all the house of Judah, and the tribe of Benjamin, a hundred and fourscore thousand chosen men, that were warriors, to fight against the house of Israel, to bring the kingdom again to Rehoboam the son of Solomon.</VERS>\r\n      <VERS vnumber=\"22\">But the word of God came unto Shemaiah the man of God, saying,</VERS>\r\n      <VERS vnumber=\"23\">Speak unto Rehoboam the son of Solomon, king of Judah, and unto all the house of Judah and Benjamin, and to the rest of the people, saying,</VERS>\r\n      <VERS vnumber=\"24\">Thus saith Jehovah, Ye shall not go up, nor fight against your brethren the children of Israel: return every man to his house; for this thing is of me. So they hearkened unto the word of Jehovah, and returned and went their way, according to the word of Jehovah.</VERS>\r\n      <VERS vnumber=\"25\">Then Jeroboam built Shechem in the hill-country of Ephraim, and dwelt therein; and he went out from thence, and built Penuel.</VERS>\r\n      <VERS vnumber=\"26\">And Jeroboam said in his heart, Now will the kingdom return to the house of David:</VERS>\r\n      <VERS vnumber=\"27\">if this people go up to offer sacrifices in the house of Jehovah at Jerusalem, then will the heart of this people turn again unto their lord, even unto Rehoboam king of Judah; and they will kill me, and return to Rehoboam king of Judah.</VERS>\r\n      <VERS vnumber=\"28\">Whereupon the king took counsel, and made two calves of gold; and he 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.</VERS>\r\n      <VERS vnumber=\"29\">And he set the one in Beth-el, and the other put he in Dan.</VERS>\r\n      <VERS vnumber=\"30\">And this thing became a sin; for the people went [to worship] before the one, even unto Dan.</VERS>\r\n      <VERS vnumber=\"31\">And he made houses of high places, and made priests from among all the people, that were not of the sons of Levi.</VERS>\r\n      <VERS vnumber=\"32\">And 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 went up unto the altar; so did he in Beth-el, sacrificing unto the calves that he had made: and he placed in Beth-el the priests of the high places that he had made.</VERS>\r\n      <VERS vnumber=\"33\">And he went up unto the altar which he had made in Beth-el on the fifteenth day in the eighth month, even in the month which he had devised of his own heart: and he ordained a feast for the children of Israel, and went up unto the altar, to burn incense.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">And, behold, there came a man of God out of Judah by the word of Jehovah unto Beth-el: and Jeroboam was standing by the altar to burn incense.</VERS>\r\n      <VERS vnumber=\"2\">And he cried against the altar by the word of Jehovah, and said, O altar, altar, thus saith Jehovah: Behold, a son shall be born unto the house of David, Josiah by name; and upon thee shall he sacrifice the priests of the high places that burn incense upon thee, and men`s bones shall they burn upon thee.</VERS>\r\n      <VERS vnumber=\"3\">And he gave a sign the same day, saying, This is the sign which Jehovah hath spoken: Behold, the altar shall be rent, and the ashes that are upon it shall be poured out.</VERS>\r\n      <VERS vnumber=\"4\">And it came to pass, when the king heard the saying of the man of God, which he cried against the altar in Beth-el, that Jeroboam 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 draw it back again to him.</VERS>\r\n      <VERS vnumber=\"5\">The 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 Jehovah.</VERS>\r\n      <VERS vnumber=\"6\">And the king answered and said unto the man of God, Entreat now the favor of Jehovah thy God, and pray for me, that my hand may be restored me again. And the man of God entreated Jehovah, and the king`s hand was restored him again, and became as it was before.</VERS>\r\n      <VERS vnumber=\"7\">And the king said unto the man of God, Come home with me, and refresh thyself, and I will give thee a reward.</VERS>\r\n      <VERS vnumber=\"8\">And the man of God said unto the king, If thou wilt give me half thy house, I will not go in with thee, neither will I eat bread nor drink water in this place;</VERS>\r\n      <VERS vnumber=\"9\">for so was it charged me by the word of Jehovah, saying, Thou shalt eat no bread, nor drink water, neither return by the way that thou camest.</VERS>\r\n      <VERS vnumber=\"10\">So he went another way, and returned not by the way that he came to Beth-el.</VERS>\r\n      <VERS vnumber=\"11\">Now there dwelt an old prophet in Beth-el; and one of his sons came and told him all the works that the man of God had done that day in Beth-el: the words which he had spoken unto the king, them also they told unto their father.</VERS>\r\n      <VERS vnumber=\"12\">And their father said unto them, What way went he? Now his sons had seen what way the man of God went, that came from Judah.</VERS>\r\n      <VERS vnumber=\"13\">And he said unto his sons, Saddle me the ass. So they saddled him the ass; and he rode thereon.</VERS>\r\n      <VERS vnumber=\"14\">And he 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.</VERS>\r\n      <VERS vnumber=\"15\">Then he said unto him, Come home with me, and eat bread.</VERS>\r\n      <VERS vnumber=\"16\">And 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:</VERS>\r\n      <VERS vnumber=\"17\">for it was said to me by the word of Jehovah, Thou shalt eat no bread nor drink water there, nor turn again to go by the way that thou camest.</VERS>\r\n      <VERS vnumber=\"18\">And he said unto him, I also am a prophet as thou art; and an angel spake unto me by the word of Jehovah, saying, Bring him back with thee into thy house, that he may eat bread and drink water. [But] he lied unto him.</VERS>\r\n      <VERS vnumber=\"19\">So he went back with him, and did eat bread in his house, and drank water.</VERS>\r\n      <VERS vnumber=\"20\">And it came to pass, as they sat at the table, that the word of Jehovah came unto the prophet that brought him back;</VERS>\r\n      <VERS vnumber=\"21\">and he cried unto the man of God that came from Judah, saying, Thus saith Jehovah, Forasmuch as thou hast been disobedient unto the mouth of Jehovah, and hast not kept the commandment which Jehovah thy God commanded thee,</VERS>\r\n      <VERS vnumber=\"22\">but camest back, and hast eaten bread and drunk water in the place of which he said to thee, Eat no bread, and drink no water; thy body shall not come unto the sepulchre of thy fathers.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And when he was gone, a lion met him by the way, and slew him: and his body was cast in the way, and the ass stood by it; the lion also stood by the body.</VERS>\r\n      <VERS vnumber=\"25\">And, behold, men passed by, and saw the body cast in the way, and the lion standing by the body; and they came and told it in the city where the old prophet dwelt.</VERS>\r\n      <VERS vnumber=\"26\">And 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 mouth of Jehovah: therefore Jehovah hath delivered him unto the lion, which hath torn him, and slain him, according to the word of Jehovah, which he spake unto him.</VERS>\r\n      <VERS vnumber=\"27\">And he spake to his sons, saying, Saddle me the ass. And they saddled it.</VERS>\r\n      <VERS vnumber=\"28\">And he went and found his body cast in the way, and the ass and the lion standing by the body: the lion had not eaten the body, nor torn the ass.</VERS>\r\n      <VERS vnumber=\"29\">And the prophet took up the body of the man of God, and laid it upon the ass, and brought it back; and he came to the city of the old prophet, to mourn, and to bury him.</VERS>\r\n      <VERS vnumber=\"30\">And he laid his body in his own grave; and they mourned over him, [saying], Alas, my brother!</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n      <VERS vnumber=\"32\">For the saying which he cried by the word of Jehovah against the altar in Beth-el, and against all the houses of the high places which are in the cities of Samaria, shall surely come to pass.</VERS>\r\n      <VERS vnumber=\"33\">After this thing Jeroboam returned not from his evil way, but made again from among all the people priests of the high places: whosoever would, he consecrated him, that there might be priests of the high places.</VERS>\r\n      <VERS vnumber=\"34\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">At that time Abijah the son of Jeroboam fell sick.</VERS>\r\n      <VERS vnumber=\"2\">And 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, who spake concerning me that I should be king over this people.</VERS>\r\n      <VERS vnumber=\"3\">And take with thee ten loaves, and cakes, and a cruse of honey, and go to him: he will tell thee what shall become of the child.</VERS>\r\n      <VERS vnumber=\"4\">And Jeroboam`s wife did so, and arose, and went to Shiloh, and came to the house of Ahijah. Now Ahijah could not see; for his eyes were set by reason of his age.</VERS>\r\n      <VERS vnumber=\"5\">And Jehovah said unto Ahijah, Behold, the wife of Jeroboam cometh to inquire of thee concerning her son; for he is sick: thus and thus shalt thou say unto her; for it will be, when she cometh in, that she will feign herself to be another woman.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">Go, tell Jeroboam, Thus saith Jehovah, the God of Israel: Forasmuch as I exalted thee from among the people, and made thee prince over my people Israel,</VERS>\r\n      <VERS vnumber=\"8\">and 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,</VERS>\r\n      <VERS vnumber=\"9\">but hast done evil above all that were before thee, and hast gone and made thee other gods, and molten images, to provoke me to anger, and hast cast me behind thy back:</VERS>\r\n      <VERS vnumber=\"10\">therefore, behold, I will bring evil upon the house of Jeroboam, and will cut off from Jeroboam every man-child, him that is shut up and him that is left at large in Israel, and will utterly sweep away the house of Jeroboam, as a man sweepeth away dung, till it be all gone.</VERS>\r\n      <VERS vnumber=\"11\">Him that dieth of Jeroboam in the city shall the dogs eat; and him that dieth in the field shall the birds of the heavens eat: for Jehovah hath spoken it.</VERS>\r\n      <VERS vnumber=\"12\">Arise thou therefore, get thee to thy house: [and] when thy feet enter into the city, the child shall die.</VERS>\r\n      <VERS vnumber=\"13\">And 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 Jehovah, the God of Israel, in the house of Jeroboam.</VERS>\r\n      <VERS vnumber=\"14\">Moreover Jehovah will raise him up a king over Israel, who shall cut off the house of Jeroboam that day: but what? even now.</VERS>\r\n      <VERS vnumber=\"15\">For Jehovah will smite Israel, as a reed is shaken in the water; and he will root up Israel out of this good land which he gave to their fathers, and will scatter them beyond the River, because they have made their Asherim, provoking Jehovah to anger.</VERS>\r\n      <VERS vnumber=\"16\">And he will give Israel up because of the sins of Jeroboam, which he hath sinned, and wherewith he hath made Israel to sin.</VERS>\r\n      <VERS vnumber=\"17\">And Jeroboam`s wife arose, and departed, and came to Tirzah: [and] as she came to the threshold of the house, the child died.</VERS>\r\n      <VERS vnumber=\"18\">And all Israel buried him, and mourned for him, according to the word of Jehovah, which he spake by his servant Ahijah the prophet.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And the days which Jeroboam reigned were two and twenty years: and he slept with his fathers, and Nadab his son reigned in his stead.</VERS>\r\n      <VERS vnumber=\"21\">And 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 Jehovah had chosen out of all the tribes of Israel, to put his name there: and his mother`s name was Naamah the Ammonitess.</VERS>\r\n      <VERS vnumber=\"22\">And Judah did that which was evil in the sight of Jehovah, and they provoked him to jealousy with their sins which they committed, above all that their fathers had done.</VERS>\r\n      <VERS vnumber=\"23\">For they also built them high places, and pillars, and Asherim, on every high hill, and under every green tree;</VERS>\r\n      <VERS vnumber=\"24\">and there were also sodomites in the land: they did according to all the abominations of the nations which Jehovah drove out before the children of Israel.</VERS>\r\n      <VERS vnumber=\"25\">And it came to pass in the fifth year of king Rehoboam, that Shishak king of Egypt came up against Jerusalem;</VERS>\r\n      <VERS vnumber=\"26\">and he took away the treasures of the house of Jehovah, 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.</VERS>\r\n      <VERS vnumber=\"27\">And king Rehoboam made in their stead shields of brass, and committed them to the hands of the captains of the guard, who kept the door of the king`s house.</VERS>\r\n      <VERS vnumber=\"28\">And it was so, that, as oft as the king went into the house of Jehovah, the guard bare them, and brought them back into the guard-chamber.</VERS>\r\n      <VERS vnumber=\"29\">Now 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?</VERS>\r\n      <VERS vnumber=\"30\">And there was war between Rehoboam and Jeroboam continually.</VERS>\r\n      <VERS vnumber=\"31\">And Rehoboam slept with his fathers, and was buried with his fathers in the city of David: and his mother`s name was Naamah the Ammonitess. And Abijam his son reigned in his stead.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">Now in the eighteenth year of king Jeroboam the son of Nebat began Abijam to reign over Judah.</VERS>\r\n      <VERS vnumber=\"2\">Three years reigned he in Jerusalem: and his mother`s name was Maacah the daughter of Abishalom.</VERS>\r\n      <VERS vnumber=\"3\">And he walked in all the sins of his father, which he had done before him; and his heart was not perfect with Jehovah his God, as the heart of David his father.</VERS>\r\n      <VERS vnumber=\"4\">Nevertheless for David`s sake did Jehovah his God give him a lamp in Jerusalem, to set up his son after him, and to establish Jerusalem;</VERS>\r\n      <VERS vnumber=\"5\">because David did that which was right in the eyes of Jehovah, and turned not aside from anything that he commanded him all the days of his life, save only in the matter of Uriah the Hittite.</VERS>\r\n      <VERS vnumber=\"6\">Now there was war between Rehoboam and Jeroboam all the days of his life.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And Abijam slept with his fathers; and they buried him in the city of David: and Asa his son reigned in his stead.</VERS>\r\n      <VERS vnumber=\"9\">And in the twentieth year of Jeroboam king of Israel began Asa to reign over Judah.</VERS>\r\n      <VERS vnumber=\"10\">And forty and one years reigned he in Jerusalem: and his mother`s name was Maacah the daughter of Abishalom.</VERS>\r\n      <VERS vnumber=\"11\">And Asa did that which was right in the eyes of Jehovah, as did David his father.</VERS>\r\n      <VERS vnumber=\"12\">And he put away the sodomites out of the land, and removed all the idols that his fathers had made.</VERS>\r\n      <VERS vnumber=\"13\">And also Maacah his mother he removed from being queen, because she had made an abominable image for an Asherah; and Asa cut down her image, and burnt it at the brook Kidron.</VERS>\r\n      <VERS vnumber=\"14\">But the high places were not taken away: nevertheless the heart of Asa was perfect with Jehovah all his days.</VERS>\r\n      <VERS vnumber=\"15\">And he brought into the house of Jehovah the things that his father had dedicated, and the things that himself had dedicated, silver, and gold, and vessels.</VERS>\r\n      <VERS vnumber=\"16\">And there was war between Asa and Baasha king of Israel all their days.</VERS>\r\n      <VERS vnumber=\"17\">And Baasha king of Israel went up against Judah, and built Ramah, that he might not suffer any one to go out or come in to Asa king of Judah.</VERS>\r\n      <VERS vnumber=\"18\">Then Asa took all the silver and the gold that were left in the treasures of the house of Jehovah, and the treasures of the king`s house, and delivered them into the hand of his servants; and king Asa sent them to Ben-hadad, the son of Tabrimmon, the son of Hezion, king of Syria, that dwelt at Damascus, saying,</VERS>\r\n      <VERS vnumber=\"19\">[There is] a league between me and thee, between my father and thy father: behold, I have sent unto thee a present of silver and gold; go, break thy league with Baasha king of Israel, that he may depart from me.</VERS>\r\n      <VERS vnumber=\"20\">And Ben-hadad hearkened unto king Asa, and sent the captains of his armies against the cities of Israel, and smote Ijon, and Dan, and Abel-beth-maacah, and all Chinneroth, with all the land of Naphtali.</VERS>\r\n      <VERS vnumber=\"21\">And it came to pass, when Baasha heard thereof, that he left off building Ramah, and dwelt in Tirzah.</VERS>\r\n      <VERS vnumber=\"22\">Then king Asa made a proclamation unto all Judah; none was exempted: and they carried away the stones of Ramah, and the timber thereof, wherewith Baasha had builded; and king Asa built therewith Geba of Benjamin, and Mizpah.</VERS>\r\n      <VERS vnumber=\"23\">Now the 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? But in the time of his old age he was diseased in his feet.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And Nadab the son of Jeroboam began to reign over Israel in the second year of Asa king of Judah; and he reigned over Israel two years.</VERS>\r\n      <VERS vnumber=\"26\">And he did that which was evil in the sight of Jehovah, and walked in the way of his father, and in his sin wherewith he made Israel to sin.</VERS>\r\n      <VERS vnumber=\"27\">And 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 were laying siege to Gibbethon.</VERS>\r\n      <VERS vnumber=\"28\">Even in the third year of Asa king of Judah did Baasha slay him, and reigned in his stead.</VERS>\r\n      <VERS vnumber=\"29\">And it came to pass that, as soon as he was king, 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 Jehovah, which he spake by his servant Ahijah the Shilonite;</VERS>\r\n      <VERS vnumber=\"30\">for the sins of Jeroboam which he sinned, and wherewith he made Israel to sin, because of his provocation wherewith he provoked Jehovah, the God of Israel, to anger.</VERS>\r\n      <VERS vnumber=\"31\">Now 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?</VERS>\r\n      <VERS vnumber=\"32\">And there was war between Asa and Baasha king of Israel all their days.</VERS>\r\n      <VERS vnumber=\"33\">In the third year of Asa king of Judah began Baasha the son of Ahijah to reign over all Israel in Tirzah, [and reigned] twenty and four years.</VERS>\r\n      <VERS vnumber=\"34\">And he did that which was evil in the sight of Jehovah, and walked in the way of Jeroboam, and in his sin wherewith he made Israel to sin.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">And the word of Jehovah came to Jehu the son of Hanani against Baasha, saying,</VERS>\r\n      <VERS vnumber=\"2\">Forasmuch 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;</VERS>\r\n      <VERS vnumber=\"3\">behold, I will utterly sweep away Baasha and his house; and I will make thy house like the house of Jeroboam the son of Nebat.</VERS>\r\n      <VERS vnumber=\"4\">Him that dieth of Baasha in the city shall the dogs eat; and him that dieth of his in the field shall the birds of the heavens eat.</VERS>\r\n      <VERS vnumber=\"5\">Now 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?</VERS>\r\n      <VERS vnumber=\"6\">And Baasha slept with his fathers, and was buried in Tirzah; and Elah his son reigned in his stead.</VERS>\r\n      <VERS vnumber=\"7\">And moreover by the prophet Jehu the son of Hanani came the word of Jehovah against Baasha, and against his house, both because of all the evil that he did in the sight of Jehovah, to provoke him to anger with the work of his hands, in being like the house of Jeroboam, and because he smote him.</VERS>\r\n      <VERS vnumber=\"8\">In the twenty and sixth year of Asa king of Judah began Elah the son of Baasha to reign over Israel in Tirzah, [and reigned] two years.</VERS>\r\n      <VERS vnumber=\"9\">And his servant Zimri, captain of half his chariots, conspired against him. Now he was in Tirzah, drinking himself drunk in the house of Arza, who was over the household in Tirzah:</VERS>\r\n      <VERS vnumber=\"10\">and 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.</VERS>\r\n      <VERS vnumber=\"11\">And it came to pass, when he began to reign, as soon as he sat on his throne, that he smote all the house of Baasha: he left him not a single man-child, neither of his kinsfolks, nor of his friends.</VERS>\r\n      <VERS vnumber=\"12\">Thus did Zimri destroy all the house of Baasha, according to the word of Jehovah, which he spake against Baasha by Jehu the prophet,</VERS>\r\n      <VERS vnumber=\"13\">for all the sins of Baasha, and the sins of Elah his son, which they sinned, and wherewith they made Israel to sin, to provoke Jehovah, the God of Israel, to anger with their vanities.</VERS>\r\n      <VERS vnumber=\"14\">Now 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?</VERS>\r\n      <VERS vnumber=\"15\">In the twenty and seventh year of Asa king of Judah did Zimri reign seven days in Tirzah. Now the people were encamped against Gibbethon, which belonged to the Philistines.</VERS>\r\n      <VERS vnumber=\"16\">And the people that were encamped heard say, Zimri hath conspired, and hath also smitten the king: wherefore all Israel made Omri, the captain of the host, king over Israel that day in the camp.</VERS>\r\n      <VERS vnumber=\"17\">And Omri went up from Gibbethon, and all Israel with him, and they besieged Tirzah.</VERS>\r\n      <VERS vnumber=\"18\">And it came to pass, when Zimri saw that the city was taken, that he went into the castle of the king`s house, and burnt the king`s house over him with fire, and died,</VERS>\r\n      <VERS vnumber=\"19\">for his sins which he sinned in doing that which was evil in the sight of Jehovah, in walking in the way of Jeroboam, and in his sin which he did, to make Israel to sin.</VERS>\r\n      <VERS vnumber=\"20\">Now 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?</VERS>\r\n      <VERS vnumber=\"21\">Then 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.</VERS>\r\n      <VERS vnumber=\"22\">But the people that followed Omri prevailed against the people that followed Tibni the son of Ginath: so Tibni died, and Omri reigned.</VERS>\r\n      <VERS vnumber=\"23\">In the thirty and first year of Asa king of Judah began Omri to reign over Israel, [and reigned] twelve years: six years reigned he in Tirzah.</VERS>\r\n      <VERS vnumber=\"24\">And he bought the hill Samaria of Shemer for two talents of silver; and he built on the hill, and called the name of the city which he built, after the name of Shemer, the owner of the hill, Samaria.</VERS>\r\n      <VERS vnumber=\"25\">And Omri did that which was evil in the sight of Jehovah, and dealt wickedly above all that were before him.</VERS>\r\n      <VERS vnumber=\"26\">For he walked in all the way of Jeroboam the son of Nebat, and in his sins wherewith he made Israel to sin, to provoke Jehovah, the God of Israel, to anger with their vanities.</VERS>\r\n      <VERS vnumber=\"27\">Now the rest of the acts of Omri which he did, and his might that he showed, are they not written in the book of the chronicles of the kings of Israel?</VERS>\r\n      <VERS vnumber=\"28\">So Omri slept with his fathers, and was buried in Samaria; and Ahab his son reigned in his stead.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">And Ahab the son of Omri did that which was evil in the sight of Jehovah above all that were before him.</VERS>\r\n      <VERS vnumber=\"31\">And 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 Sidonians, and went and served Baal, and worshipped him.</VERS>\r\n      <VERS vnumber=\"32\">And he reared up an altar for Baal in the house of Baal, which he had built in Samaria.</VERS>\r\n      <VERS vnumber=\"33\">And Ahab made the Asherah; and Ahab did yet more to provoke Jehovah, the God of Israel, to anger than all the kings of Israel that were before him.</VERS>\r\n      <VERS vnumber=\"34\">In his days did Hiel the Beth-elite build Jericho: he laid the foundation thereof with the loss of Abiram his first-born, and set up the gates thereof with the loss of his youngest son Segub, according to the word of Jehovah, which he spake by Joshua the son of Nun.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"17\">\r\n      <VERS vnumber=\"1\">And Elijah the Tishbite, who was of the sojourners of Gilead, said unto Ahab, As Jehovah, the God of Israel, liveth, before whom I stand, there shall not be dew nor rain these years, but according to my word.</VERS>\r\n      <VERS vnumber=\"2\">And the word of Jehovah came unto him, saying,</VERS>\r\n      <VERS vnumber=\"3\">Get thee hence, and turn thee eastward, and hide thyself by the brook Cherith, that is before the Jordan.</VERS>\r\n      <VERS vnumber=\"4\">And it shall be, that thou shalt drink of the brook; and I have commanded the ravens to feed thee there.</VERS>\r\n      <VERS vnumber=\"5\">So he went and did according unto the word of Jehovah; for he went and dwelt by the brook Cherith, that is before the Jordan.</VERS>\r\n      <VERS vnumber=\"6\">And the ravens brought him bread and flesh in the morning, and bread and flesh in the evening; and he drank of the brook.</VERS>\r\n      <VERS vnumber=\"7\">And it came to pass after a while, that the brook dried up, because there was no rain in the land.</VERS>\r\n      <VERS vnumber=\"8\">And the word of Jehovah came unto him, saying,</VERS>\r\n      <VERS vnumber=\"9\">Arise, get thee to Zarephath, which belongeth to Sidon, and dwell there: behold, I have commanded a widow there to sustain thee.</VERS>\r\n      <VERS vnumber=\"10\">So he arose and went to Zarephath; and when he came to the gate of the city, behold, a widow was there gathering sticks: and he called to her, and said, Fetch me, I pray thee, a little water in a vessel, that I may drink.</VERS>\r\n      <VERS vnumber=\"11\">And as she was going to fetch it, he called to her, and said, Bring me, I pray thee, a morsel of bread in thy hand.</VERS>\r\n      <VERS vnumber=\"12\">And she said, As Jehovah thy God liveth, I have not a cake, but a handful of meal in the jar, and a little oil in the 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.</VERS>\r\n      <VERS vnumber=\"13\">And Elijah said unto her, Fear not; go and do as thou hast said; but make me thereof a little cake first, and bring it forth unto me, and afterward make for thee and for thy son.</VERS>\r\n      <VERS vnumber=\"14\">For thus saith Jehovah, the God of Israel, The jar of meal shall not waste, neither shall the cruse of oil fail, until the day that Jehovah sendeth rain upon the earth.</VERS>\r\n      <VERS vnumber=\"15\">And she went and did according to the saying of Elijah: and she, and he, and her house, did eat [many] days.</VERS>\r\n      <VERS vnumber=\"16\">The jar of meal wasted not, neither did the cruse of oil fail, according to the word of Jehovah, which he spake by Elijah.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And she said unto Elijah, What have I to do with thee, O thou man of God? thou art come unto me to bring my sin to remembrance, and to slay my son!</VERS>\r\n      <VERS vnumber=\"19\">And he said unto her, Give me thy son. And he took him out of her bosom, and carried him up into the chamber, where he abode, and laid him upon his own bed.</VERS>\r\n      <VERS vnumber=\"20\">And he cried unto Jehovah, and said, O Jehovah my God, hast thou also brought evil upon the widow with whom I sojourn, by slaying her son?</VERS>\r\n      <VERS vnumber=\"21\">And he stretched himself upon the child three times, and cried unto Jehovah, and said, O Jehovah my God, I pray thee, let this child`s soul come into him again.</VERS>\r\n      <VERS vnumber=\"22\">And Jehovah hearkened unto the voice of Elijah; and the soul of the child came into him again, and he revived.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And the woman said to Elijah, Now I know that thou art a man of God, and that the word of Jehovah in thy mouth is truth.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"18\">\r\n      <VERS vnumber=\"1\">And it came to pass after many days, that the word of Jehovah came to Elijah, in the third year, saying, Go, show thyself unto Ahab; and I will send rain upon the earth.</VERS>\r\n      <VERS vnumber=\"2\">And Elijah went to show himself unto Ahab. And the famine was sore in Samaria.</VERS>\r\n      <VERS vnumber=\"3\">And Ahab called Obadiah, who was over the household. (Now Obadiah feared Jehovah greatly:</VERS>\r\n      <VERS vnumber=\"4\">for it was so, when Jezebel cut off the prophets of Jehovah, that Obadiah took a hundred prophets, and hid them by fifty in a cave, and fed them with bread and water.)</VERS>\r\n      <VERS vnumber=\"5\">And Ahab said unto Obadiah, Go through the land, unto all the fountains of water, and unto all the brooks: peradventure we may find grass and save the horses and mules alive, that we lose not all the beasts.</VERS>\r\n      <VERS vnumber=\"6\">So they divided the land between them to pass throughout it: Ahab went one way by himself, and Obadiah went another way by himself.</VERS>\r\n      <VERS vnumber=\"7\">And as Obadiah was in the way, behold, Elijah met him: and he knew him, and fell on his face, and said, Is it thou, my lord Elijah?</VERS>\r\n      <VERS vnumber=\"8\">And he answered him, It is I: go, tell thy lord, Behold, Elijah [is here].</VERS>\r\n      <VERS vnumber=\"9\">And he said, Wherein have I sinned, that thou wouldest deliver thy servant into the hand of Ahab, to slay me?</VERS>\r\n      <VERS vnumber=\"10\">As Jehovah 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 here, he took an oath of the kingdom and nation, that they found thee not.</VERS>\r\n      <VERS vnumber=\"11\">And now thou sayest, Go, tell thy lord, Behold, Elijah [is here].</VERS>\r\n      <VERS vnumber=\"12\">And it will come to pass, as soon as I am gone from thee, that the Spirit of Jehovah will carry thee whither I know not; and so when I come and tell Ahab, and he cannot find thee, he will slay me: but I thy servant fear Jehovah from my youth.</VERS>\r\n      <VERS vnumber=\"13\">Was it not told my lord what I did when Jezebel slew the prophets of Jehovah, how I hid a hundred men of Jehovah`s prophets by fifty in a cave, and fed them with bread and water?</VERS>\r\n      <VERS vnumber=\"14\">And now thou sayest, Go, tell thy lord, Behold, Elijah [is here]; and he will slay me.</VERS>\r\n      <VERS vnumber=\"15\">And Elijah said, As Jehovah of hosts liveth, before whom I stand, I will surely show myself unto him to-day.</VERS>\r\n      <VERS vnumber=\"16\">So Obadiah went to meet Ahab, and told him; and Ahab went to meet Elijah.</VERS>\r\n      <VERS vnumber=\"17\">And it came to pass, when Ahab saw Elijah, that Ahab said unto him, Is it thou, thou troubler of Israel?</VERS>\r\n      <VERS vnumber=\"18\">And he answered, I have not troubled Israel; but thou, and thy father`s house, in that ye have forsaken the commandments of Jehovah, and thou hast followed the Baalim.</VERS>\r\n      <VERS vnumber=\"19\">Now 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 Asherah four hundred, that eat at Jezebel`s table.</VERS>\r\n      <VERS vnumber=\"20\">So Ahab sent unto all the children of Israel, and gathered the prophets together unto mount Carmel.</VERS>\r\n      <VERS vnumber=\"21\">And Elijah came near unto all the people, and said, How long go ye limping between the two sides? if Jehovah be God, follow him; but if Baal, then follow him. And the people answered him not a word.</VERS>\r\n      <VERS vnumber=\"22\">Then said Elijah unto the people, I, even I only, am left a prophet of Jehovah; but Baal`s prophets are four hundred and fifty men.</VERS>\r\n      <VERS vnumber=\"23\">Let them therefore give us two bullocks; and let them choose one bullock for themselves, and cut it in pieces, and lay it on the wood, and put no fire under; and I will dress the other bullock, and lay it on the wood, and put no fire under.</VERS>\r\n      <VERS vnumber=\"24\">And call ye on the name of your god, and I will call on the name of Jehovah; and the God that answereth by fire, let him be God. And all the people answered and said, It is well spoken.</VERS>\r\n      <VERS vnumber=\"25\">And 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 god, but put no fire under.</VERS>\r\n      <VERS vnumber=\"26\">And 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 about the altar which was made.</VERS>\r\n      <VERS vnumber=\"27\">And it came to pass at noon, that Elijah mocked them, and said, Cry aloud; for he is a god: either he is musing, or he is gone aside, or he is on a journey, or peradventure he sleepeth and must be awaked.</VERS>\r\n      <VERS vnumber=\"28\">And they cried aloud, and cut themselves after their manner with knives and lances, till the blood gushed out upon them.</VERS>\r\n      <VERS vnumber=\"29\">And it was so, when midday was past, that they prophesied until the time of the offering of the [evening] oblation; but there was neither voice, nor any to answer, nor any that regarded.</VERS>\r\n      <VERS vnumber=\"30\">And Elijah said unto all the people, Come near unto me; and all the people came near unto him. And he repaired the altar of Jehovah that was thrown down.</VERS>\r\n      <VERS vnumber=\"31\">And Elijah took twelve stones, according to the number of the tribes of the sons of Jacob, unto whom the word of Jehovah came, saying, Israel shall be thy name.</VERS>\r\n      <VERS vnumber=\"32\">And with the stones he built an altar in the name of Jehovah; and he made a trench about the altar, as great as would contain two measures of seed.</VERS>\r\n      <VERS vnumber=\"33\">And he put the wood in order, and cut the bullock in pieces, and laid it on the wood. And he said, Fill four jars with water, and pour it on the burnt-offering, and on the wood.</VERS>\r\n      <VERS vnumber=\"34\">And 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.</VERS>\r\n      <VERS vnumber=\"35\">And the water ran round about the altar; and he filled the trench also with water.</VERS>\r\n      <VERS vnumber=\"36\">And it came to pass at the time of the offering of the [evening] oblation, that Elijah the prophet came near, and said, O Jehovah, the God of Abraham, of 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.</VERS>\r\n      <VERS vnumber=\"37\">Hear me, O Jehovah, hear me, that this people may know that thou, Jehovah, art God, and [that] thou hast turned their heart back again.</VERS>\r\n      <VERS vnumber=\"38\">Then the fire of Jehovah fell, and consumed the burnt-offering, and the wood, and the stones, and the dust, and licked up the water that was in the trench.</VERS>\r\n      <VERS vnumber=\"39\">And when all the people saw it, they fell on their faces: and they said, Jehovah, he is God; Jehovah, he is God.</VERS>\r\n      <VERS vnumber=\"40\">and 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.</VERS>\r\n      <VERS vnumber=\"41\">And Elijah said unto Ahab, Get thee up, eat and drink; for there is the sound of abundance of rain.</VERS>\r\n      <VERS vnumber=\"42\">So Ahab went up to eat and to drink. And Elijah went up to the top of Carmel; and he bowed himself down upon the earth, and put his face between his knees.</VERS>\r\n      <VERS vnumber=\"43\">And he 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.</VERS>\r\n      <VERS vnumber=\"44\">And it came to pass at the seventh time, that he said, Behold, there ariseth a cloud out of the sea, as small as a man`s hand. And he said, Go up, say unto Ahab, Make ready [thy chariot], and get thee down, that the rain stop thee not.</VERS>\r\n      <VERS vnumber=\"45\">And it came to pass in a little while, that the heavens grew black with clouds and wind, and there was a great rain. And Ahab rode, and went to Jezreel:</VERS>\r\n      <VERS vnumber=\"46\">and the hand of Jehovah was on Elijah; and he girded up his loins, and ran before Ahab to the entrance of Jezreel.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"19\">\r\n      <VERS vnumber=\"1\">And Ahab told Jezebel all that Elijah had done, and withal how he had slain all the prophets with the sword.</VERS>\r\n      <VERS vnumber=\"2\">Then Jezebel send 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.</VERS>\r\n      <VERS vnumber=\"3\">And when he saw that, he arose, and went for his life, and came to Beer-sheba, which belongeth to Judah, and left his servant there.</VERS>\r\n      <VERS vnumber=\"4\">But 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 Jehovah, take away my life; for I am not better than my fathers.</VERS>\r\n      <VERS vnumber=\"5\">And he lay down and slept under a juniper-tree; and, behold, an angel touched him, and said unto him, Arise and eat.</VERS>\r\n      <VERS vnumber=\"6\">And he looked, and, behold, there was at his head a cake baken on the coals, and a cruse of water. And he did eat and drink, and laid him down again.</VERS>\r\n      <VERS vnumber=\"7\">And the angel of Jehovah came again the second time, and touched him, and said, Arise and eat, because the journey is too great for thee.</VERS>\r\n      <VERS vnumber=\"8\">And he arose, and did eat and drink, and went in the strength of that food forty days and forty nights unto Horeb the mount of God.</VERS>\r\n      <VERS vnumber=\"9\">And he came thither unto a cave, and lodged there; and, behold, the word of Jehovah came to him, and he said unto him, What doest thou here, Elijah?</VERS>\r\n      <VERS vnumber=\"10\">And he said, I have been very jealous for Jehovah, the 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.</VERS>\r\n      <VERS vnumber=\"11\">And he said, Go forth, and stand upon the mount before Jehovah. And, behold, Jehovah passed by, and a great and strong wind rent the mountains, and brake in pieces the rocks before Jehovah; but Jehovah was not in the wind: and after the wind an earthquake; but Jehovah was not in the earthquake:</VERS>\r\n      <VERS vnumber=\"12\">and after the earthquake a fire; but Jehovah was not in the fire: and after the fire a still small voice.</VERS>\r\n      <VERS vnumber=\"13\">And it was so, when Elijah heard it, that he wrapped his face in his mantle, and went out, and stood in the entrance of the cave. And, behold, there came a voice unto him, and said, What doest thou here, Elijah?</VERS>\r\n      <VERS vnumber=\"14\">And he said, I have been very jealous for Jehovah, the 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.</VERS>\r\n      <VERS vnumber=\"15\">And Jehovah said unto him, Go, return on thy way to the wilderness of Damascus: and when thou comest, thou shalt anoint Hazael to be king over Syria;</VERS>\r\n      <VERS vnumber=\"16\">and Jehu the son of Nimshi shalt thou anoint to be king over Israel; and Elisha the son of Shaphat of Abel-meholah shalt thou anoint to be prophet in thy room.</VERS>\r\n      <VERS vnumber=\"17\">And it shall come to pass, that him that escapeth from the sword of Hazael shall Jehu slay; and him that escapeth from the sword of Jehu shall Elisha slay.</VERS>\r\n      <VERS vnumber=\"18\">Yet will I leave [me] seven thousand in Israel, all the knees which have not bowed unto Baal, and every mouth which hath not kissed him.</VERS>\r\n      <VERS vnumber=\"19\">So 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 over unto him, and cast his mantle upon him.</VERS>\r\n      <VERS vnumber=\"20\">And 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?</VERS>\r\n      <VERS vnumber=\"21\">And he returned from following him, and took the 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"20\">\r\n      <VERS vnumber=\"1\">And Ben-hadad 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 fought against it.</VERS>\r\n      <VERS vnumber=\"2\">And he sent messengers to Ahab king of Israel, into the city, and said unto him, Thus saith Ben-hadad,</VERS>\r\n      <VERS vnumber=\"3\">Thy silver and thy gold is mine; thy wives also and thy children, even the goodliest, are mine.</VERS>\r\n      <VERS vnumber=\"4\">And the king of Israel answered and said, It is according to thy saying, my lord, O king; I am thine, and all that I have.</VERS>\r\n      <VERS vnumber=\"5\">And the messengers came again, and said, Thus speaketh Ben-hadad, saying, I sent indeed unto thee, saying, Thou shalt deliver me thy silver, and thy gold, and thy wives, and thy children;</VERS>\r\n      <VERS vnumber=\"6\">but I will send my servants unto thee to-morrow about this time, and they shall search thy 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.</VERS>\r\n      <VERS vnumber=\"7\">Then 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.</VERS>\r\n      <VERS vnumber=\"8\">And all the elders and all the people said unto him, Hearken thou not, neither consent.</VERS>\r\n      <VERS vnumber=\"9\">Wherefore he said unto the messengers of Ben-hadad, 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.</VERS>\r\n      <VERS vnumber=\"10\">And Ben-hadad 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.</VERS>\r\n      <VERS vnumber=\"11\">And the king of Israel answered and said, Tell him, Let not him that girdeth on [his armor] boast himself as he that putteth it off.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And, behold, a prophet came near unto Ahab king of Israel, and said, Thus saith Jehovah, Hast thou seen all this great multitude? behold, I will deliver it into thy hand this day; and thou shalt know that I am Jehovah.</VERS>\r\n      <VERS vnumber=\"14\">And Ahab said, By whom? And he said, Thus saith Jehovah, By the young men of the princes of the provinces. Then he said, Who shall begin the battle? And he answered, Thou.</VERS>\r\n      <VERS vnumber=\"15\">Then he mustered the young men of the princes of the provinces, and they were two hundred and thirty-two: and after them he mustered all the people, even all the children of Israel, being seven thousand.</VERS>\r\n      <VERS vnumber=\"16\">And they went out at noon. But Ben-hadad was drinking himself drunk in the pavilions, he and the kings, the thirty and two kings that helped him.</VERS>\r\n      <VERS vnumber=\"17\">And the young men of the princes of the provinces went out first; and Ben-hadad sent out, and they told him, saying, There are men come out from Samaria.</VERS>\r\n      <VERS vnumber=\"18\">And he said, Whether they are come out for peace, take them alive, or whether they are come out for war, taken them alive.</VERS>\r\n      <VERS vnumber=\"19\">So these went out of the city, the young men of the princes of the provinces, and the army which followed them.</VERS>\r\n      <VERS vnumber=\"20\">And they slew every one his man; and the Syrians fled, and Israel pursued them: and Ben-hadad the king of Syria escaped on a horse with horsemen.</VERS>\r\n      <VERS vnumber=\"21\">And the king of Israel went out, and smote the horses and chariots, and slew the Syrians with a great slaughter.</VERS>\r\n      <VERS vnumber=\"22\">And the prophet came near 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.</VERS>\r\n      <VERS vnumber=\"23\">And the servants of the king of Syria said unto him, Their god is a god 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.</VERS>\r\n      <VERS vnumber=\"24\">And do this thing: take the kings away, every man out of his place, and put captains in their room;</VERS>\r\n      <VERS vnumber=\"25\">and 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.</VERS>\r\n      <VERS vnumber=\"26\">And it came to pass at the return of the year, that Ben-hadad mustered the Syrians, and went up to Aphek, to fight against Israel.</VERS>\r\n      <VERS vnumber=\"27\">And the children of Israel were mustered, and were victualled, and went against them: and the children of Israel encamped before them like two little flocks of kids; but the Syrians filled the country.</VERS>\r\n      <VERS vnumber=\"28\">And a man of God came near and spake unto the king of Israel, and said, Thus saith Jehovah, Because the Syrians have said, Jehovah is a god of the hills, but he is not a god of the valleys; therefore will I deliver all this great multitude into thy hand, and ye shall know that I am Jehovah.</VERS>\r\n      <VERS vnumber=\"29\">And they encamped 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 a hundred thousand footmen in one day.</VERS>\r\n      <VERS vnumber=\"30\">But the rest fled to Aphek, into the city; and the wall fell upon twenty and seven thousand men that were left. And Ben-hadad fled, and came into the city, into an inner chamber.</VERS>\r\n      <VERS vnumber=\"31\">And his servants said unto him, Behold now, we have heard that the kings of the house of Israel are merciful kings: let us, we 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.</VERS>\r\n      <VERS vnumber=\"32\">So they girded sackcloth on their loins, and [put] ropes on their heads, and came to the king of Israel, and said, Thy servant Ben-hadad saith, I pray thee, let me live. And he said, Is he yet alive? he is my brother.</VERS>\r\n      <VERS vnumber=\"33\">Now the men observed diligently, and hasted to catch whether it were his mind; and they said, Thy brother Ben-hadad. Then he said, Go ye, bring him. Then Ben-hadad came forth to him; and he caused him to come up into the chariot.</VERS>\r\n      <VERS vnumber=\"34\">And [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. And I, [said Ahab], will let thee go with this covenant. So he made a covenant with him, and let him go.</VERS>\r\n      <VERS vnumber=\"35\">And a certain man of the sons of the prophets said unto his fellow by the word of Jehovah, Smite me, I pray thee. And the man refused to smite him.</VERS>\r\n      <VERS vnumber=\"36\">Then said he unto him, Because thou hast not obeyed the voice of Jehovah, 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.</VERS>\r\n      <VERS vnumber=\"37\">Then he found another man, and said, Smite me, I pray thee. And the man smote him, smiting and wounding him.</VERS>\r\n      <VERS vnumber=\"38\">So the prophet departed, and waited for the king by the way, and disguised himself with his headband over his eyes.</VERS>\r\n      <VERS vnumber=\"39\">And 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.</VERS>\r\n      <VERS vnumber=\"40\">And 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.</VERS>\r\n      <VERS vnumber=\"41\">And he hasted, and took the headband away from his eyes; and the king of israel discerned him that he was of the prophets.</VERS>\r\n      <VERS vnumber=\"42\">And he said unto him, Thus saith Jehovah, Because thou hast let go out of thy hand the man whom I had devoted to destruction, therefore thy life shall go for his life, and thy people for his people.</VERS>\r\n      <VERS vnumber=\"43\">And the king of Israel went to his house heavy and displeased, and came to Samaria.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"21\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And Naboth said to Ahab, Jehovah forbid it me, that I should give the inheritance of my fathers unto thee.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">But Jezebel his wife came to him, and said unto him, Why is thy spirit so sad, that thou eatest no bread?</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And Jezebel his wife said unto him, Dost thou now govern the kingdom of Israel? arise, and eat bread, and let thy heart be merry: I will give thee the vineyard of Naboth the Jezreelite.</VERS>\r\n      <VERS vnumber=\"8\">So 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, [and] that dwelt with Naboth.</VERS>\r\n      <VERS vnumber=\"9\">And she wrote in the letters, saying, Proclaim a fast, and set Naboth on high among the people:</VERS>\r\n      <VERS vnumber=\"10\">and set two men, base fellows, before him, and let them bear witness against him, saying, Thou didst curse God and the king. And then carry him out, and stone him to death.</VERS>\r\n      <VERS vnumber=\"11\">And the men of his city, even the elders and the nobles who dwelt in his city, did as Jezebel had sent unto them, according as it was written in the letters which she had sent unto them.</VERS>\r\n      <VERS vnumber=\"12\">They proclaimed a fast, and set Naboth on high among the people.</VERS>\r\n      <VERS vnumber=\"13\">And the two men, the base fellows, came in and sat before him: and the base fellows bare witness against him, even against Naboth, in the presence of the people, saying, Naboth did curse God and the king. Then they carried him forth out of the city, and stoned him to death with stones.</VERS>\r\n      <VERS vnumber=\"14\">Then they sent to Jezebel, saying, Naboth is stoned, and is dead.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And the word of Jehovah came to Elijah the Tishbite, saying,</VERS>\r\n      <VERS vnumber=\"18\">Arise, go down to meet Ahab king of Israel, who dwelleth in Samaria: behold, he is in the vineyard of Naboth, whither he is gone down to take possession of it.</VERS>\r\n      <VERS vnumber=\"19\">And thou shalt speak unto him, saying, Thus saith Jehovah, Hast thou killed and also taken possession? And thou shalt speak unto him, saying, Thus saith Jehovah, In the place where dogs licked the blood of Naboth shall dogs lick thy blood, even thine.</VERS>\r\n      <VERS vnumber=\"20\">And Ahab said to Elijah, Hast thou found me, O mine enemy? And he answered, I have found thee, because thou hast sold thyself to do that which is evil in the sight of Jehovah.</VERS>\r\n      <VERS vnumber=\"21\">Behold, I will bring evil upon thee, and will utterly sweep thee away and will cut off from Ahab every man-child, and him that is shut up and him that is left at large in Israel:</VERS>\r\n      <VERS vnumber=\"22\">and I will make thy 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 hast made Israel to sin.</VERS>\r\n      <VERS vnumber=\"23\">And of Jezebel also spake Jehovah, saying, The dogs shall eat Jezebel by the rampart of Jezreel.</VERS>\r\n      <VERS vnumber=\"24\">Him that dieth of Ahab in the city the dogs shall eat; and him that dieth in the field shall the birds of the heavens eat.</VERS>\r\n      <VERS vnumber=\"25\">(But there was none like unto Ahab, who did sell himself to do that which was evil in the sight of Jehovah, whom Jezebel his wife stirred up.</VERS>\r\n      <VERS vnumber=\"26\">And he did very abominably in following idols, according to all that the Amorites did, whom Jehovah cast out before the children of Israel.)</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And the word of Jehovah came to Elijah the Tishbite, saying,</VERS>\r\n      <VERS vnumber=\"29\">Seest 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"22\">\r\n      <VERS vnumber=\"1\">And they continued three years without war between Syria and Israel.</VERS>\r\n      <VERS vnumber=\"2\">And it came to pass in the third year, that Jehoshaphat the king of Judah came down to the king of Israel.</VERS>\r\n      <VERS vnumber=\"3\">And the king of Israel said unto his servants, Know ye that Ramoth-gilead is ours, and we are still, and take it not out of the hand of the king of Syria?</VERS>\r\n      <VERS vnumber=\"4\">And he said unto Jehoshaphat, Wilt thou go with me to battle to Ramoth-gilead? And Jehoshaphat said to the king of Israel, I am as thou art, my people as thy people, my horses as thy horses.</VERS>\r\n      <VERS vnumber=\"5\">And Jehoshaphat said unto the king of Israel, Inquire first, I pray thee, for the word of Jehovah.</VERS>\r\n      <VERS vnumber=\"6\">Then the king of Israel gathered the prophets together, about four hundred men, and said unto them, Shall I go against Ramoth-gilead to battle, or shall I forbear? And they said, Go up; for the Lord will deliver it into the hand of the king.</VERS>\r\n      <VERS vnumber=\"7\">But Jehoshaphat said, Is there not here a prophet of Jehovah besides, that we may inquire of him?</VERS>\r\n      <VERS vnumber=\"8\">And the king of Israel said unto Jehoshaphat, there is yet one man by whom we may inquire of Jehovah, Micaiah the son of Imlah: but I hate him; for he doth not prophesy good concerning me, but evil. And Jehoshaphat said, Let not the king say so.</VERS>\r\n      <VERS vnumber=\"9\">Then the king of Israel called an officer, and said, Fetch quickly Micaiah the son of Imlah.</VERS>\r\n      <VERS vnumber=\"10\">Now the king of Israel and Jehoshaphat the king of Judah were sitting each on his throne, arrayed in their robes, in an open place at the entrance of the gate of Samaria; and all the prophets were prophesying before them.</VERS>\r\n      <VERS vnumber=\"11\">And Zedekiah the son of Chenaanah made him horns of iron, and said, Thus saith Jehovah, With these shalt thou push the Syrians, until they be consumed.</VERS>\r\n      <VERS vnumber=\"12\">And all the prophets prophesied so, saying, Go up to Ramoth-gilead, and prosper; for Jehovah will deliver it into the hand of the king.</VERS>\r\n      <VERS vnumber=\"13\">And the messenger that went 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 thou good.</VERS>\r\n      <VERS vnumber=\"14\">And Micaiah said, As Jehovah liveth, what Jehovah saith unto me, that will I speak.</VERS>\r\n      <VERS vnumber=\"15\">And when he was come to the king, the king said unto him, Micaiah, shall we go to Ramoth-gilead to battle, or shall we forbear? And he answered him, Go up and prosper; and Jehovah will deliver it into the hand of the king.</VERS>\r\n      <VERS vnumber=\"16\">And the king said unto him, How many times shall I adjure thee that thou speak unto me nothing but the truth in the name of Jehovah?</VERS>\r\n      <VERS vnumber=\"17\">And he said, I saw all Israel scattered upon the mountains, as sheep that have no shepherd: and Jehovah said, These have no master; let them return every man to his house in peace.</VERS>\r\n      <VERS vnumber=\"18\">And the king of Israel said to Jehoshaphat, Did I not tell thee that he would not prophesy good concerning me, but evil?</VERS>\r\n      <VERS vnumber=\"19\">And [Micaiah] said, Therefore hear thou the word of Jehovah: I saw Jehovah sitting on his throne, and all the host of heaven standing by him on his right hand and on his left.</VERS>\r\n      <VERS vnumber=\"20\">And Jehovah said, Who shall entice Ahab, that he may go up and fall at Ramoth-gilead? And one said on this manner; and another said on that manner.</VERS>\r\n      <VERS vnumber=\"21\">And there came forth a spirit, and stood before Jehovah, and said, I will entice him.</VERS>\r\n      <VERS vnumber=\"22\">And Jehovah said unto him, Wherewith? And he said, I will go forth, and will be a lying spirit in the mouth of all his prophets. And he said, Thou shalt entice him, and shalt prevail also: go forth, and do so.</VERS>\r\n      <VERS vnumber=\"23\">Now therefore, behold, Jehovah hath put a lying spirit in the mouth of all these thy prophets; and Jehovah hath spoken evil concerning thee.</VERS>\r\n      <VERS vnumber=\"24\">Then Zedekiah the son of Chenaanah came near, and smote Micaiah on the cheek, and said, Which way went the Spirit of Jehovah from me to speak unto thee?</VERS>\r\n      <VERS vnumber=\"25\">And Micaiah said, Behold, thou shalt see on that day, when thou shalt go into an inner chamber to hide thyself.</VERS>\r\n      <VERS vnumber=\"26\">And 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;</VERS>\r\n      <VERS vnumber=\"27\">and 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.</VERS>\r\n      <VERS vnumber=\"28\">And Micaiah said, If thou return at all in peace, Jehovah hath not spoken by me. And he said, Hear, ye peoples, all of you.</VERS>\r\n      <VERS vnumber=\"29\">So the king of Israel and Jehoshaphat the king of Judah went up to Ramoth-gilead.</VERS>\r\n      <VERS vnumber=\"30\">And the king of Israel said unto Jehoshaphat, I will disguise myself, and go into the battle; but put thou on thy robes. And the king of Israel disguised himself, and went into the battle.</VERS>\r\n      <VERS vnumber=\"31\">Now the king of Syria had commanded the thirty and two captains of his chariots, saying, Fight neither with small nor great, save only with the king of Israel.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">And it came to pass, when the captains of the chariots saw that it was not the king of Israel, that they turned back from pursuing him.</VERS>\r\n      <VERS vnumber=\"34\">And a certain man drew his bow at a venture, and smote the king of Israel between the joints of the armor: wherefore he said unto the driver of his chariot, Turn thy hand, and carry me out of the host; for I am sore wounded.</VERS>\r\n      <VERS vnumber=\"35\">And 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 bottom of the chariot.</VERS>\r\n      <VERS vnumber=\"36\">And there went a cry throughout the host about the going down of the sun, saying, Every man to his city, and every man to his country.</VERS>\r\n      <VERS vnumber=\"37\">So the king died, and was brought to Samaria; and they buried the king in Samaria.</VERS>\r\n      <VERS vnumber=\"38\">And they washed the chariot by the pool of Samaria; and the dogs licked up his blood (now the harlots washed themselves [there]); according unto the word of Jehovah which he spake.</VERS>\r\n      <VERS vnumber=\"39\">Now the rest of the acts of Ahab, and all that he did, and the ivory house which he built, and all the cities that he built, are they not written in the book of the chronicles of the kings of Israel?</VERS>\r\n      <VERS vnumber=\"40\">So Ahab slept with his fathers; and Ahaziah his son reigned in his stead.</VERS>\r\n      <VERS vnumber=\"41\">And Jehoshaphat the son of Asa began to reign over Judah in the fourth year of Ahab king of Israel.</VERS>\r\n      <VERS vnumber=\"42\">Jehoshaphat 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.</VERS>\r\n      <VERS vnumber=\"43\">And he walked in all the way of Asa his father; He turned not aside from it, doing that which was right in the eyes of Jehovah: howbeit the high places were not taken away; the people still sacrificed and burnt incense in the high places.</VERS>\r\n      <VERS vnumber=\"44\">And Jehoshaphat made peace with the king of Israel.</VERS>\r\n      <VERS vnumber=\"45\">Now the rest of the acts of Jehoshaphat, and his might that he showed, and how he warred, are they not written in the book of the chronicles of the kings of Judah?</VERS>\r\n      <VERS vnumber=\"46\">And the remnant of the sodomites, that remained in the days of his father Asa, he put away out of the land.</VERS>\r\n      <VERS vnumber=\"47\">And there was no king in Edom: a deputy was king.</VERS>\r\n      <VERS vnumber=\"48\">Jehoshaphat made ships of Tarshish to go to Ophir for gold: but they went not; for the ships were broken at Ezion-geber.</VERS>\r\n      <VERS vnumber=\"49\">Then said Ahaziah the son of Ahab unto Jehoshaphat, Let my servants go with thy servants in the ships. But Jehoshaphat would not.</VERS>\r\n      <VERS vnumber=\"50\">And 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.</VERS>\r\n      <VERS vnumber=\"51\">Ahaziah the son of Ahab began to reign over Israel in Samaria in the seventeenth year of Jehoshaphat king of Judah, and he reigned two years over Israel.</VERS>\r\n      <VERS vnumber=\"52\">And he did that which was evil in the sight of Jehovah, 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, wherein he made Israel to sin.</VERS>\r\n      <VERS vnumber=\"53\">And he served Baal, and worshipped him, and provoked to anger Jehovah, the God of Israel, according to all that his father had done.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"12\" bname=\"2 Kings\" bsname=\"2Kgs\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">And Moab rebelled against Israel after the death of Ahab.</VERS>\r\n      <VERS vnumber=\"2\">And Ahaziah fell down through the lattice in his upper chamber that was in Samaria, and was sick: and he sent messengers, and said unto them, Go, inquire of Baal-zebub, the god of Ekron, whether I shall recover of this sickness.</VERS>\r\n      <VERS vnumber=\"3\">But the angel of Jehovah said to Elijah the Tishbite, Arise, go up to meet the messengers of the king of Samaria, and say unto them, Is it because there is no God in Israel, that ye go to inquire of Baal-zebub, the god of Ekron?</VERS>\r\n      <VERS vnumber=\"4\">Now therefore thus saith Jehovah, Thou shalt not come down from the bed whither thou art gone up, but shalt surely die. And Elijah departed.</VERS>\r\n      <VERS vnumber=\"5\">And the messengers returned unto him, and he said unto them, Why is it that ye are returned?</VERS>\r\n      <VERS vnumber=\"6\">And they said unto him, There came up a man to meet us, and said unto us, Go, turn again unto the king that sent you, and say unto him, Thus saith Jehovah, Is it because there is no God in Israel, that thou sendest to inquire of Baal-zebub, the god of Ekron? therefore thou shalt not come down from the bed whither thou art gone up, but shalt surely die.</VERS>\r\n      <VERS vnumber=\"7\">And he said unto them, What manner of man was he that came up to meet you, and told you these words?</VERS>\r\n      <VERS vnumber=\"8\">And they answered him, He was a hairy man, and girt with a girdle of leather about his loins. And he said, It is Elijah the Tishbite.</VERS>\r\n      <VERS vnumber=\"9\">Then [the king] sent unto him a captain of fifty with his fifty. And he went up to him: and, behold, he was sitting on the top of the hill. And he spake unto him, O man of God, the king hath said, Come down.</VERS>\r\n      <VERS vnumber=\"10\">And Elijah answered and said to the captain of fifty, If I be a man of God, let fire come down from heaven, and consume thee and thy fifty. And there came down fire from heaven, and consumed him and his fifty.</VERS>\r\n      <VERS vnumber=\"11\">And again he sent unto him another captain of fifty and his fifty. And he answered and said unto him, O man of God, thus hath the king said, Come down quickly.</VERS>\r\n      <VERS vnumber=\"12\">And Elijah answered and said unto them, If I be a man of God, let fire come down from heaven, and consume thee and thy fifty. And the fire of God came down from heaven, and consumed him and his fifty.</VERS>\r\n      <VERS vnumber=\"13\">And again he sent the captain of a third fifty with his fifty. And the third captain of fifty went up, and came and fell on his knees before Elijah, and besought him, and said unto him, O man of God, I pray thee, let my life, and the life of these fifty thy servants, be precious in thy sight.</VERS>\r\n      <VERS vnumber=\"14\">Behold, there came fire down from heaven, and consumed the two former captains of fifty with their fifties; but now let my life be precious in thy sight.</VERS>\r\n      <VERS vnumber=\"15\">And the angel of Jehovah said unto Elijah, Go down with him: be not afraid of him. And he arose, and went down with him unto the king.</VERS>\r\n      <VERS vnumber=\"16\">And he said unto him, Thus saith Jehovah, Forasmuch as thou hast sent messengers to inquire of Baal-zebub, the god of Ekron, is it because there is no God in Israel to inquire of his word? therefore thou shalt not come down from the bed whither thou art gone up, but shalt surely die.</VERS>\r\n      <VERS vnumber=\"17\">So he died according to the word of Jehovah which Elijah had spoken. And Jehoram began to reign in his stead in the second year of Jehoram the son of Jehoshaphat king of Judah; because he had no son.</VERS>\r\n      <VERS vnumber=\"18\">Now the rest of the acts of Ahaziah which he did, are they not written in the book of the chronicles of the kings of Israel?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">And it came to pass, when Jehovah would take up Elijah by a whirlwind into heaven, that Elijah went with Elisha from Gilgal.</VERS>\r\n      <VERS vnumber=\"2\">And Elijah said unto Elisha, Tarry here, I pray thee; for Jehovah hath sent me as far as Beth-el. And Elisha said, As Jehovah liveth, and as thy soul liveth, I will not leave thee. So they went down to Beth-el.</VERS>\r\n      <VERS vnumber=\"3\">And the sons of the prophets that were at Beth-el came forth to Elisha, and said unto him, Knowest thou that Jehovah will take away thy master from thy head to-day? And he said, Yea, I know it; hold ye your peace.</VERS>\r\n      <VERS vnumber=\"4\">And Elijah said unto him, Elisha, tarry here, I pray thee; for Jehovah hath sent me to Jericho. And he said, As Jehovah liveth, and as thy soul liveth, I will not leave thee. So they came to Jericho.</VERS>\r\n      <VERS vnumber=\"5\">And the sons of the prophets that were at Jericho came near to Elisha, and said unto him, Knowest thou that Jehovah will take away thy master from thy head to-day? And he answered, Yea, I know it; hold ye your peace.</VERS>\r\n      <VERS vnumber=\"6\">And Elijah said unto him, Tarry here, I pray thee; for Jehovah hath sent me to the Jordan. And he said, As Jehovah liveth, and as thy soul liveth, I will not leave thee. And they two went on.</VERS>\r\n      <VERS vnumber=\"7\">And fifty men of the sons of the prophets went, and stood over against them afar off: and they two stood by the Jordan.</VERS>\r\n      <VERS vnumber=\"8\">And Elijah took his mantle, and wrapped it together, and smote the waters, and they were divided hither and thither, so that they two went over on dry ground.</VERS>\r\n      <VERS vnumber=\"9\">And it came to pass, when they were gone over, that Elijah said unto Elisha, Ask what I shall do for thee, before I am taken from thee. And Elisha said, I pray thee, let a double portion of thy spirit be upon me.</VERS>\r\n      <VERS vnumber=\"10\">And he said, Thou hast asked a hard thing: [nevertheless], if thou see me when I am taken from thee, it shall be so unto thee; but if not, it shall not be so.</VERS>\r\n      <VERS vnumber=\"11\">And it came to pass, as they still went on, and talked, that, behold, [there appeared] a chariot of fire, and horses of fire, which parted them both asunder; and Elijah went up by a whirlwind into heaven.</VERS>\r\n      <VERS vnumber=\"12\">And Elisha saw it, and he cried, My father, my father, the chariots of Israel and the horsemen thereof!     And he saw him no more: and he took hold of his own clothes, and rent them in two pieces.</VERS>\r\n      <VERS vnumber=\"13\">He took up also the mantle of Elijah that fell from him, and went back, and stood by the bank of the Jordan.</VERS>\r\n      <VERS vnumber=\"14\">And he took the mantle of Elijah that fell from him, and smote the waters, and said, Where is Jehovah, the God of Elijah? and when he also had smitten the waters, they were divided hither and thither; and Elisha went over.</VERS>\r\n      <VERS vnumber=\"15\">And when the sons of the prophets that were at Jericho over against him saw him, they said, The spirit of Elijah doth rest on Elisha. And they came to meet him, and bowed themselves to the ground before him.</VERS>\r\n      <VERS vnumber=\"16\">And they said unto him, Behold now, there are with thy servants fifty strong men; let them go, we pray thee, and seek thy master, lest the Spirit of Jehovah hath taken him up, and cast him upon some mountain, or into some valley. And he said, Ye shall not send.</VERS>\r\n      <VERS vnumber=\"17\">And when they urged him till he was ashamed, he said, Send. They sent therefore fifty men; and they sought three days, but found him not.</VERS>\r\n      <VERS vnumber=\"18\">And they came back to him, while he tarried at Jericho; and he said unto them, Did I not say unto you, Go not?</VERS>\r\n      <VERS vnumber=\"19\">And the men of the city said unto Elisha, Behold, we pray thee, the situation of this city is pleasant, as my lord seeth: but the water is bad, and the land miscarrieth.</VERS>\r\n      <VERS vnumber=\"20\">And he said, Bring me a new cruse, and put salt therein. And they brought it to him.</VERS>\r\n      <VERS vnumber=\"21\">And he went forth unto the spring of the waters, and cast salt therein, and said, Thus saith Jehovah, I have healed these waters; there shall not be from thence any more death or miscarrying.</VERS>\r\n      <VERS vnumber=\"22\">So the waters were healed unto this day, according to the word of Elisha which he spake.</VERS>\r\n      <VERS vnumber=\"23\">And he went up from thence unto Beth-el; and as he was going up by the way, there came forth young lads out of the city, and mocked him, and said unto him, Go up, thou baldhead; go up, thou baldhead.</VERS>\r\n      <VERS vnumber=\"24\">And he looked behind him and saw them, and cursed them in the name of Jehovah. And there came forth two she-bears out of the wood, and tare forty and two lads of them.</VERS>\r\n      <VERS vnumber=\"25\">And he went from thence to mount Carmel, and from thence he returned to Samaria.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Now Jehoram the son of Ahab began to reign over Israel in Samaria in the eighteenth year of Jehoshaphat king of Judah, and reigned twelve years.</VERS>\r\n      <VERS vnumber=\"2\">And he did that which was evil in the sight of Jehovah, but not like his father, and like his mother; for he put away the pillar of Baal that his father had made.</VERS>\r\n      <VERS vnumber=\"3\">Nevertheless he cleaved unto the sins of Jeroboam the son of Nebat, wherewith he made Israel to sin; he departed not therefrom.</VERS>\r\n      <VERS vnumber=\"4\">Now Mesha king of Moab was a sheep-master; and he rendered unto the king of Israel the wool of a hundred thousand lambs, and of a hundred thousand rams.</VERS>\r\n      <VERS vnumber=\"5\">But it came to pass, when Ahab was dead, that the king of Moab rebelled against the king of Israel.</VERS>\r\n      <VERS vnumber=\"6\">And king Jehoram went out of Samaria at that time, and mustered all Israel.</VERS>\r\n      <VERS vnumber=\"7\">And he went and sent to Jehoshaphat the king of Judah, saying, The king of Moab hath rebelled against me: wilt thou go with me against Moab to battle? And he said, I will go up: I am as thou art, my people as thy people, my horses as thy horses.</VERS>\r\n      <VERS vnumber=\"8\">And he said, Which way shall we go up? And he answered, The way of the wilderness of Edom.</VERS>\r\n      <VERS vnumber=\"9\">So the king of Israel went, and the king of Judah, and the king of Edom; and they made a circuit of seven days` journey: and there was no water for the host, nor for the beasts that followed them.</VERS>\r\n      <VERS vnumber=\"10\">And the king of Israel said, Alas! for Jehovah hath called these three kings together to deliver them into the hand of Moab.</VERS>\r\n      <VERS vnumber=\"11\">But Jehoshaphat said, Is there not here a prophet of Jehovah, that we may inquire of Jehovah by him? And one of the king of Israel`s servants answered and said, Elisha the son of Shaphat is here, who poured water on the hands of Elijah.</VERS>\r\n      <VERS vnumber=\"12\">And Jehoshaphat said, The word of Jehovah is with him. So the king of Israel and Jehoshaphat and the king of Edom went down to him.</VERS>\r\n      <VERS vnumber=\"13\">And Elisha said unto the king of Israel, What have I to do with thee? get thee to the prophets of thy father, and to the prophets of thy mother. And the king of Israel said unto him, Nay; for Jehovah hath called these three kings together to deliver them into the hand of Moab.</VERS>\r\n      <VERS vnumber=\"14\">And Elisha said, As Jehovah of hosts liveth, before whom I stand, surely, were it not that I regard the presence of Jehoshaphat the king of Judah, I would not look toward thee, nor see thee.</VERS>\r\n      <VERS vnumber=\"15\">But now bring me a minstrel. And it came to pass, when the minstrel played, that the hand of Jehovah came upon him.</VERS>\r\n      <VERS vnumber=\"16\">And he said, Thus saith Jehovah, Make this valley full of trenches.</VERS>\r\n      <VERS vnumber=\"17\">For thus saith Jehovah, Ye shall not see wind, neither shall ye see rain; yet that valley shall be filled with water, and ye shall drink, both ye and your cattle and your beasts.</VERS>\r\n      <VERS vnumber=\"18\">And this is but a light thing in the sight of Jehovah: he will also deliver the Moabites into your hand.</VERS>\r\n      <VERS vnumber=\"19\">And ye shall smite every fortified city, and every choice city, and shall fell every good tree, and stop all fountains of water, and mar every good piece of land with stones.</VERS>\r\n      <VERS vnumber=\"20\">And it came to pass in the morning, about the time of offering the oblation, that, behold, there came water by the way of Edom, and the country was filled with water.</VERS>\r\n      <VERS vnumber=\"21\">Now when all the Moabites heard that the kings were come up to fight against them, they gathered themselves together, all that were able to put on armor, and upward, and stood on the border.</VERS>\r\n      <VERS vnumber=\"22\">And they rose up early in the morning, and the sun shone upon the water, and the Moabites saw the water over against them as red as blood:</VERS>\r\n      <VERS vnumber=\"23\">and they said, This is blood; the kings are surely destroyed, and they have smitten each man his fellow: now therefore, Moab, to the spoil.</VERS>\r\n      <VERS vnumber=\"24\">And when they came to the camp of Israel, the Israelites rose up and smote the Moabites, so that they fled before them; and they went forward into the land smiting the Moabites.</VERS>\r\n      <VERS vnumber=\"25\">And they beat down the cities; and on every good piece of land they cast every man his stone, and filled it; and they stopped all the fountains of water, and felled all the good trees, until in Kir-hareseth [only] they left the stones thereof; howbeit the slingers went about it, and smote it.</VERS>\r\n      <VERS vnumber=\"26\">And when the king of Moab saw that the battle was too sore for him, he took with him seven hundred men that drew sword, to break through unto the king of Edom; but they could not.</VERS>\r\n      <VERS vnumber=\"27\">Then he took his eldest son that should have reigned in his stead, and offered him for a burnt-offering upon the wall. And there was great wrath against Israel: and they departed from him, and returned to their own land.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">Now there cried a certain woman of the wives of the sons of the prophets unto Elisha, saying, Thy servant my husband is dead; and thou knowest that thy servant did fear Jehovah: and the creditor is come to take unto him my two children to be bondmen.</VERS>\r\n      <VERS vnumber=\"2\">And Elisha said unto her, What shall I do for thee? tell me; what hast thou in the house? And she said, Thy handmaid hath not anything in the house, save a pot of oil.</VERS>\r\n      <VERS vnumber=\"3\">Then he said, Go, borrow thee vessels abroad of all thy neighbors, even empty vessels; borrow not a few.</VERS>\r\n      <VERS vnumber=\"4\">And thou shalt go in, and shut the door upon thee and upon thy sons, and pour out into all those vessels; and thou shalt set aside that which is full.</VERS>\r\n      <VERS vnumber=\"5\">So she went from him, and shut the door upon her and upon her sons; they brought [the vessels] to her, and she poured out.</VERS>\r\n      <VERS vnumber=\"6\">And it came to pass, when the vessels were full, that she said unto her son, Bring me yet a vessel. And he said unto her, There is not a vessel more. And the oil stayed.</VERS>\r\n      <VERS vnumber=\"7\">Then she came and told the man of God. And he said, Go, sell the oil, and pay thy debt, and live thou and thy sons of the rest.</VERS>\r\n      <VERS vnumber=\"8\">And it fell on a day, that Elisha passed to Shunem, where was a great woman; and she constrained him to eat bread. And so it was, that as oft as he passed by, he turned in thither to eat bread.</VERS>\r\n      <VERS vnumber=\"9\">And she said unto her husband, Behold now, I perceive that this is a holy man of God, that passeth by us continually.</VERS>\r\n      <VERS vnumber=\"10\">Let us make, I pray thee, a little chamber on the wall; and let us set for him there a bed, and a table, and a seat, and a candlestick: and it shall be, when he cometh to us, that he shall turn in thither.</VERS>\r\n      <VERS vnumber=\"11\">And it fell on a day, that he came thither, and he turned into the chamber and lay there.</VERS>\r\n      <VERS vnumber=\"12\">And he said to Gehazi his servant, Call this Shunammite. And when he had called her, she stood before him.</VERS>\r\n      <VERS vnumber=\"13\">And he said unto him, Say now unto her, Behold, thou hast been careful for us with all this care; what is to be done for thee? wouldest thou be spoken for to the king, or to the captain of the host? And she answered, I dwell among mine own people.</VERS>\r\n      <VERS vnumber=\"14\">And he said, What then is to be done for her? And Gehazi answered, Verily she hath no son, and her husband is old.</VERS>\r\n      <VERS vnumber=\"15\">And he said, Call her. And when he had called her, she stood in the door.</VERS>\r\n      <VERS vnumber=\"16\">And he said, At this season, when the time cometh round, thou shalt embrace a son. And she said, Nay, my lord, thou man of God, do not lie unto thy handmaid.</VERS>\r\n      <VERS vnumber=\"17\">And the woman conceived, and bare a son at that season, when the time came round, as Elisha had said unto her.</VERS>\r\n      <VERS vnumber=\"18\">And when the child was grown, it fell on a day, that he went out to his father to the reapers.</VERS>\r\n      <VERS vnumber=\"19\">And he said unto his father, My head, my head. And he said to his servant, Carry him to his mother.</VERS>\r\n      <VERS vnumber=\"20\">And when he had taken him, and brought him to his mother, he sat on her knees till noon, and then died.</VERS>\r\n      <VERS vnumber=\"21\">And she went up and laid him on the bed of the man of God, and shut [the door] upon him, and went out.</VERS>\r\n      <VERS vnumber=\"22\">And she called unto her husband, and said, Send me, I pray thee, one of the servants, and one of the asses, that I may run to the man of God, and come again.</VERS>\r\n      <VERS vnumber=\"23\">And he said, Wherefore wilt thou go to him to-day? it is neither new moon nor sabbath. And she said, It shall be well.</VERS>\r\n      <VERS vnumber=\"24\">Then she saddled an ass, and said to her servant, Drive, and go forward; slacken me not the riding, except I bid thee.</VERS>\r\n      <VERS vnumber=\"25\">So she went, and came unto the man of God to mount Carmel.     And it came to pass, when the man of God saw her afar off, that he said to Gehazi his servant, Behold, yonder is the Shunammite:</VERS>\r\n      <VERS vnumber=\"26\">run, I pray thee, now to meet her, and say unto her, Is it well with thee? is it well with thy husband? is it well with the child? And she answered, It is well.</VERS>\r\n      <VERS vnumber=\"27\">And when she came to the man of God to the hill, she caught hold of his feet. And Gehazi came near to thrust her away; but the man of God said, Let her alone: for her soul is vexed within her; and Jehovah hath hid it from me, and hath not told me.</VERS>\r\n      <VERS vnumber=\"28\">Then she said, Did I desire a son of my lord? did I not say, Do not deceive me?</VERS>\r\n      <VERS vnumber=\"29\">Then he said to Gehazi, Gird up thy loins, and take my staff in thy hand, and go thy way: if thou meet any man, salute him not; and if any salute thee, answer him not again: and lay my staff upon the face of the child.</VERS>\r\n      <VERS vnumber=\"30\">And the mother of the child said, As Jehovah liveth, and as thy soul liveth, I will not leave thee. And he arose, and followed her.</VERS>\r\n      <VERS vnumber=\"31\">And Gehazi passed on before them, and laid the staff upon the face of the child; but there was neither voice, nor hearing. Wherefore he returned to meet him, and told him, saying, The child is not awaked.</VERS>\r\n      <VERS vnumber=\"32\">And when Elisha was come into the house, behold, the child was dead, and laid upon his bed.</VERS>\r\n      <VERS vnumber=\"33\">He went in therefore, and shut the door upon them twain, and prayed unto Jehovah.</VERS>\r\n      <VERS vnumber=\"34\">And he went up, and lay upon the child, and put his mouth upon his mouth, and his eyes upon his eyes, and his hands upon his hands: and he stretched himself upon him; and the flesh of the child waxed warm.</VERS>\r\n      <VERS vnumber=\"35\">Then he returned, and walked in the house once to and fro; and went up, and stretched himself upon him: and the child sneezed seven times, and the child opened his eyes.</VERS>\r\n      <VERS vnumber=\"36\">And he called Gehazi, and said, Call this Shunammite. So he called her. And when she was come in unto him, he said, Take up thy son.</VERS>\r\n      <VERS vnumber=\"37\">Then she went in, and fell at his feet, and bowed herself to the ground; and she took up her son, and went out.</VERS>\r\n      <VERS vnumber=\"38\">And Elisha came again to Gilgal. And there was a dearth in the land; and the sons of the prophets were sitting before him; and he said unto his servant, Set on the great pot, and boil pottage for the sons of the prophets.</VERS>\r\n      <VERS vnumber=\"39\">And one went out into the field to gather herbs, and found a wild vine, and gathered thereof wild gourds his lap full, and came and shred them into the pot of pottage; for they knew them not.</VERS>\r\n      <VERS vnumber=\"40\">So they poured out for the men to eat. And it came to pass, as they were eating of the pottage, that they cried out, and said, O man of God, there is death in the pot. And they could not eat thereof.</VERS>\r\n      <VERS vnumber=\"41\">But he said, Then bring meal. And he cast it into the pot; and he said, Pour out for the people, that they may eat. And there was no harm in the pot.</VERS>\r\n      <VERS vnumber=\"42\">And there came a man from Baal-shalishah, and brought the man of God bread of the first-fruits, twenty loaves of barley, and fresh ears of grain in his sack. And he said, Give unto the people, that they may eat.</VERS>\r\n      <VERS vnumber=\"43\">And his servant said, What, should I set this before a hundred men? But he said, Give the people, that they may eat; for thus saith Jehovah, They shall eat, and shall leave thereof.</VERS>\r\n      <VERS vnumber=\"44\">So he set it before them, and they did eat, and left thereof, according to the word of Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">Now Naaman, captain of the host of the king of Syria, was a great man with his master, and honorable, because by him Jehovah had given victory unto Syria: he was also a mighty man of valor, [but he was] a leper.</VERS>\r\n      <VERS vnumber=\"2\">And the Syrians had gone out in bands, and had brought away captive out of the land of Israel a little maiden; and she waited on Naaman`s wife.</VERS>\r\n      <VERS vnumber=\"3\">And she said unto her mistress, Would that my lord were with the prophet that is in Samaria! then would he recover him of his leprosy.</VERS>\r\n      <VERS vnumber=\"4\">And one went in, and told his lord, saying, Thus and thus said the maiden that is of the land of Israel.</VERS>\r\n      <VERS vnumber=\"5\">And the king of Syria said, Go now, and I will send a letter unto the king of Israel. And he departed, and took with him ten talents of silver, and six thousand [pieces] of gold, and ten changes of raiment.</VERS>\r\n      <VERS vnumber=\"6\">And he brought the letter to the king of Israel, saying, And now when this letter is come unto thee, behold, I have sent Naaman my servant to thee, that thou mayest recover him of his leprosy.</VERS>\r\n      <VERS vnumber=\"7\">And it came to pass, when the king of Israel had read the letter, that he rent his clothes, and said, Am I God, to kill and to make alive, that this man doth send unto me to recover a man of his leprosy? but consider, I pray you, and see how he seeketh a quarrel against me.</VERS>\r\n      <VERS vnumber=\"8\">And it was so, when Elisha the man of God heard that the king of Israel had rent his clothes, that he sent to the king, saying, Wherefore hast thou rent thy clothes? let him come now to me, and he shall know that there is a prophet in Israel.</VERS>\r\n      <VERS vnumber=\"9\">So Naaman came with his horses and with his chariots, and stood at the door of the house of Elisha.</VERS>\r\n      <VERS vnumber=\"10\">And Elisha sent a messenger unto him, saying, Go and wash in the Jordan seven times, and thy flesh shall come again to thee, and thou shalt be clean.</VERS>\r\n      <VERS vnumber=\"11\">But Naaman was wroth, and went away, and said, Behold, I thought, He will surely come out to me, and stand, and call on the name of Jehovah his God, and wave his hand over the place, and recover the leper.</VERS>\r\n      <VERS vnumber=\"12\">Are not Abanah and Pharpar, the rivers of Damascus, better than all the waters of Israel? may I not wash in them, and be clean? So he turned and went away in a rage.</VERS>\r\n      <VERS vnumber=\"13\">And his servants came near, and spake unto him, and said, My father, if the prophet had bid thee do some great thing, wouldest thou not have done it? how much rather then, when he saith to thee, Wash, and be clean?</VERS>\r\n      <VERS vnumber=\"14\">Then went he down, and dipped [himself] seven times in the Jordan, according to the saying of the man of God; and his flesh came again like unto the flesh of a little child, and he was clean.</VERS>\r\n      <VERS vnumber=\"15\">And he returned to the man of God, he and all his company, and came, and stood before him; and he said, Behold now, I know that there is no God in all the earth, but in Israel: now therefore, I pray thee, take a present of thy servant.</VERS>\r\n      <VERS vnumber=\"16\">But he said, As Jehovah liveth, before whom I stand, I will receive none. And he urged him to take it; but he refused.</VERS>\r\n      <VERS vnumber=\"17\">And Naaman said, If not, yet, I pray thee, let there be given to thy servant two mules` burden of earth; for thy servant will henceforth offer neither burnt-offering nor sacrifice unto other gods, but unto Jehovah.</VERS>\r\n      <VERS vnumber=\"18\">In this thing Jehovah pardon thy servant: when my master goeth into the house of Rimmon to worship there, and he leaneth on my hand, and I bow myself in the house of Rimmon, when I bow myself in the house of Rimmon, Jehovah pardon thy servant in this thing.</VERS>\r\n      <VERS vnumber=\"19\">And he said unto him, Go in peace. So he departed from him a little way.</VERS>\r\n      <VERS vnumber=\"20\">But Gehazi the servant of Elisha the man of God, said, Behold, my master hath spared this Naaman the Syrian, in not receiving at his hands that which he brought: as Jehovah liveth, I will run after him, and take somewhat of him.</VERS>\r\n      <VERS vnumber=\"21\">So Gehazi followed after Naaman. And when Naaman saw one running after him, he alighted from the chariot to meet him, and said, Is all well?</VERS>\r\n      <VERS vnumber=\"22\">And he said, All is well. My master hath sent me, saying, Behold, even now there are come to me from the hill-country of Ephraim two young men of the sons of the prophets; give them, I pray thee, a talent of silver, and two changes of raiment.</VERS>\r\n      <VERS vnumber=\"23\">And Naaman said, Be pleased to take two talents. And he urged him, and bound two talents of silver in two bags, with two changes of raiment, and laid them upon two of his servants; and they bare them before him.</VERS>\r\n      <VERS vnumber=\"24\">And when he came to the hill, he took them from their hand, and bestowed them in the house; and he let the men go, and they departed.</VERS>\r\n      <VERS vnumber=\"25\">But he went in, and stood before his master. And Elisha said unto him, Whence comest thou, Gehazi? And he said, Thy servant went no whither.</VERS>\r\n      <VERS vnumber=\"26\">And he said unto him, Went not my heart [with thee], when the man turned from his chariot to meet thee? Is it a time to receive money, and to receive garments, and oliveyards and vineyards, and sheep and oxen, and men-servants and maid-servants?</VERS>\r\n      <VERS vnumber=\"27\">The leprosy therefore of Naaman shall cleave unto thee, and unto thy seed for ever. And he went out from his presence a leper [as white] as snow.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">And the sons of the prophets said unto Elisha, Behold now, the place where we dwell before thee is too strait for us.</VERS>\r\n      <VERS vnumber=\"2\">Let us go, we pray thee, unto the Jordan, and take thence every man a beam, and let us make us a place there, where we may dwell. And he answered, Go ye.</VERS>\r\n      <VERS vnumber=\"3\">And one said, Be pleased, I pray thee, to go with thy servants. And he answered, I will go.</VERS>\r\n      <VERS vnumber=\"4\">So he went with them. And when they came to the Jordan, they cut down wood.</VERS>\r\n      <VERS vnumber=\"5\">But as one was felling a beam, the axe-head fell into the water; and he cried, and said, Alas, my master! for it was borrowed.</VERS>\r\n      <VERS vnumber=\"6\">And the man of God said, Where fell it? And he showed him the place. And he cut down a stick, and cast it in thither, and made the iron to swim.</VERS>\r\n      <VERS vnumber=\"7\">And he said, Take it up to thee. So he put out his hand, and took it.</VERS>\r\n      <VERS vnumber=\"8\">Now the king of Syria was warring against Israel; and he took counsel with his servants, saying, In such and such a place shall be my camp.</VERS>\r\n      <VERS vnumber=\"9\">And the man of God sent unto the king of Israel, saying, Beware that thou pass not such a place; for thither the Syrians are coming down.</VERS>\r\n      <VERS vnumber=\"10\">And the king of Israel sent to the place which the man of God told him and warned him of; and he saved himself there, not once nor twice.</VERS>\r\n      <VERS vnumber=\"11\">And the heart of the king of Syria was sore troubled for this thing; and he called his servants, and said unto them, Will ye not show me which of us is for the king of Israel?</VERS>\r\n      <VERS vnumber=\"12\">And one of his servants said, Nay, my lord, O king; but Elisha, the prophet that is in Israel, telleth the king of Israel the words that thou speakest in thy bedchamber.</VERS>\r\n      <VERS vnumber=\"13\">And he said, Go and see where he is, that I may send and fetch him. And it was told him, saying, Behold, he is in Dothan.</VERS>\r\n      <VERS vnumber=\"14\">Therefore sent he thither horses, and chariots, and a great host: and they came by night, and compassed the city about.</VERS>\r\n      <VERS vnumber=\"15\">And when the servant of the man of God was risen early, and gone forth, behold, a host with horses and chariots was round about the city. And his servant said unto him, Alas, my master! how shall we do?</VERS>\r\n      <VERS vnumber=\"16\">And he answered, Fear not; for they that are with us are more than they that are with them.</VERS>\r\n      <VERS vnumber=\"17\">And Elisha prayed, and said, Jehovah, I pray thee, open his eyes, that he may see. And Jehovah opened the eyes of the young man; and he saw: and, behold, the mountain was full of horses and chariots of fire round about Elisha.</VERS>\r\n      <VERS vnumber=\"18\">And when they came down to him, Elisha prayed unto Jehovah, and said, Smite this people, I pray thee, with blindness. And he smote them with blindness according to the word of Elisha.</VERS>\r\n      <VERS vnumber=\"19\">And Elisha said unto them, This is not the way, neither is this the city: follow me, and I will bring you to the man whom ye seek. And he led them to Samaria.</VERS>\r\n      <VERS vnumber=\"20\">And it came to pass, when they were come into Samaria, that Elisha said, Jehovah, open the eyes of these men, that they may see. And Jehovah opened their eyes, and they saw; and, behold, they were in the midst of Samaria.</VERS>\r\n      <VERS vnumber=\"21\">And the king of Israel said unto Elisha, when he saw them, My father, shall I smite them? shall I smite them?</VERS>\r\n      <VERS vnumber=\"22\">And he answered, Thou shalt not smite them: wouldest thou smite those whom thou hast taken captive with thy sword and with thy bow? set bread and water before them, that they may eat and drink, and go to their master.</VERS>\r\n      <VERS vnumber=\"23\">And he prepared great provision for them; and when they had eaten and drunk, he sent them away, and they went to their master. And the bands of Syria came no more into the land of Israel.</VERS>\r\n      <VERS vnumber=\"24\">And it came to pass after this, that Benhadad king of Syria gathered all his host, and went up, and besieged Samaria.</VERS>\r\n      <VERS vnumber=\"25\">And there was a great famine in Samaria: and, behold, they besieged it, until an ass`s head was sold for fourscore [pieces] of silver, and the fourth part of a kab of dove`s dung for five [pieces] of silver.</VERS>\r\n      <VERS vnumber=\"26\">And as the king of Israel was passing by upon the wall, there cried a woman unto him, saying, Help, my lord, O king.</VERS>\r\n      <VERS vnumber=\"27\">And he said, If Jehovah do not help thee, whence shall I help thee? out of the threshing-floor, or out of the winepress?</VERS>\r\n      <VERS vnumber=\"28\">And the king said unto her, What aileth thee? And she answered, This woman said unto me, Give thy son, that we may eat him to-day, and we will eat my son to-morrow.</VERS>\r\n      <VERS vnumber=\"29\">So we boiled my son, and did eat him: and I said unto her on the next day, Give thy son, that we may eat him; and she hath hid her son.</VERS>\r\n      <VERS vnumber=\"30\">And it came to pass, when the king heard the words of the woman, that he rent his clothes (now he was passing by upon the wall); and the people looked, and, behold, he had sackcloth within upon his flesh.</VERS>\r\n      <VERS vnumber=\"31\">Then he said, God do so to me, and more also, if the head of Elisha the son of Shaphat shall stand on him this day.</VERS>\r\n      <VERS vnumber=\"32\">But Elisha was sitting in his house, and the elders were sitting with him; and [the king] sent a man from before him: but ere the messenger came to him, he said to the elders, See ye how this son of a murderer hath sent to take away my head? look, when the messenger cometh, shut the door, and hold the door fast against him: is not the sound of his master`s feet behind him?</VERS>\r\n      <VERS vnumber=\"33\">And while he was yet talking with them, behold, the messenger came down unto him: and he said, Behold, this evil is of Jehovah; why should I wait for Jehovah any longer?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">And Elisha said, Hear ye the word of Jehovah: thus saith Jehovah, To-morrow about this time shall a measure of fine flour be [sold] for a shekel, and two measures of barley for a shekel, in the gate of Samaria.</VERS>\r\n      <VERS vnumber=\"2\">Then the captain on whose hand the king leaned answered the man of God, and said, Behold, if Jehovah should make windows in heaven, might this thing be? And he said, Behold, thou shalt see it with thine eyes, but shalt not eat thereof.</VERS>\r\n      <VERS vnumber=\"3\">Now there were four leprous men at the entrance of the gate: and they said one to another, Why sit we here until we die?</VERS>\r\n      <VERS vnumber=\"4\">If we say, We will enter into the city, then the famine is in the city, and we shall die there; and if we sit still here, we die also. Now therefore come, and let us fall unto the host of the Syrians: if they save us alive, we shall live; and if they kill us, we shall but die.</VERS>\r\n      <VERS vnumber=\"5\">And they rose up in the twilight, to go unto the camp of the Syrians; and when they were come to the outermost part of the camp of the Syrians, behold, there was no man there.</VERS>\r\n      <VERS vnumber=\"6\">For the Lord had made the host of the Syrians to hear a noise of chariots, and a noise of horses, even the noise of a great host: and they said one to another, Lo, the king of Israel hath hired against us the kings of the Hittites, and the kings of the Egyptians, to come upon us.</VERS>\r\n      <VERS vnumber=\"7\">Wherefore they arose and fled in the twilight, and left their tents, and their horses, and their asses, even the camp as it was, and fled for their life.</VERS>\r\n      <VERS vnumber=\"8\">And when these lepers came to the outermost part of the camp, they went into one tent, and did eat and drink, and carried thence silver, and gold, and raiment, and went and hid it; and they came back, and entered into another tent, and carried thence also, and went and hid it.</VERS>\r\n      <VERS vnumber=\"9\">Then they said one to another, We do not well; this day is a day of good tidings, and we hold our peace: if we tarry till the morning light, punishment will overtake us; now therefore come, let us go and tell the king`s household.</VERS>\r\n      <VERS vnumber=\"10\">So they came and called unto the porter of the city; and they told them, saying, We came to the camp of the Syrians, and, behold, there was no man there, neither voice of man, but the horses tied, and the asses tied, and the tents as they were.</VERS>\r\n      <VERS vnumber=\"11\">And he called the porters; and they told it to the king`s household within.</VERS>\r\n      <VERS vnumber=\"12\">And the king arose in the night, and said unto his servants, I will now show you what the Syrians have done to us. They know that we are hungry; therefore are they gone out of the camp to hide themselves in the field, saying, When they come out of the city, we shall take them alive, and get into the city.</VERS>\r\n      <VERS vnumber=\"13\">And one of his servants answered and said, Let some take, I pray thee, five of the horses that remain, which are left in the city (behold, they are as all the multitude of Israel that are left in it; behold, they are as all the multitude of Israel that are consumed); and let us send and see.</VERS>\r\n      <VERS vnumber=\"14\">They took therefore two chariots with horses; and the king sent after the host of the Syrians, saying, Go and see.</VERS>\r\n      <VERS vnumber=\"15\">And they went after them unto the Jordan: and, lo, all the way was full of garments and vessels, which the Syrians had cast away in their haste. And the messengers returned, and told the king.</VERS>\r\n      <VERS vnumber=\"16\">And the people went out, and plundered the camp of the Syrians. So a measure of fine flour was [sold] for a shekel, and two measures of barley for a shekel, according to the word of Jehovah.</VERS>\r\n      <VERS vnumber=\"17\">And the king appointed the captain on whose hand he leaned to have the charge of the gate: and the people trod upon him in the gate, and he died as the man of God had said, who spake when the king came down to him.</VERS>\r\n      <VERS vnumber=\"18\">And it came to pass, as the man of God had spoken to the king, saying, Two measures of barley for a shekel, and a measure of fine flour for a shekel, shall be to-morrow about this time in the gate of Samaria;</VERS>\r\n      <VERS vnumber=\"19\">and that captain answered the man of God, and said, Now, behold, if Jehovah should make windows in heaven, might such a thing be? and he said, Behold, thou shalt see it with thine eyes, but shalt not eat thereof:</VERS>\r\n      <VERS vnumber=\"20\">it came to pass even so unto him; for the people trod upon him in the gate, and he died.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">Now Elisha had spoken unto the woman, whose son he had restored to life, saying, Arise, and go thou and thy household, and sojourn wheresoever thou canst sojourn: for Jehovah hath called for a famine; and it shall also come upon the land seven years.</VERS>\r\n      <VERS vnumber=\"2\">And the woman arose, and did according to the word of the man of God; and she went with her household, and sojourned in the land of the Philistines seven years.</VERS>\r\n      <VERS vnumber=\"3\">And it came to pass at the seven years` end, that the woman returned out of the land of the Philistines: and she went forth to cry unto the king for her house and for her land.</VERS>\r\n      <VERS vnumber=\"4\">Now the king was talking with Gehazi the servant of the man of God, saying, Tell me, I pray thee, all the great things that Elisha hath done.</VERS>\r\n      <VERS vnumber=\"5\">And it came to pass, as he was telling the king how he had restored to life him that was dead, that, behold, the woman, whose son he had restored to life, cried to the king for her house and for her land. And Gehazi said, My lord, O king, this is the woman, and this is her son, whom Elisha restored to life.</VERS>\r\n      <VERS vnumber=\"6\">And when the king asked the woman, she told him. So the king appointed unto her a certain officer, saying, Restore all that was hers, and all the fruits of the field since the day that she left the land, even until now.</VERS>\r\n      <VERS vnumber=\"7\">And Elisha came to Damascus; and Benhadad the king of Syria was sick; and it was told him, saying, The man of God is come hither.</VERS>\r\n      <VERS vnumber=\"8\">And the king said unto Hazael, Take a present in thy hand, and go, meet the man of God, and inquire of Jehovah by him, saying, Shall I recover of this sickness?</VERS>\r\n      <VERS vnumber=\"9\">So Hazael went to meet him, and took a present with him, even of every good thing of Damascus, forty camels` burden, and came and stood before him, and said, Thy son Benhadad king of Syria hath sent me to thee, saying, Shall I recover of this sickness?</VERS>\r\n      <VERS vnumber=\"10\">And Elisha said unto him, Go, say unto him, Thou shalt surely recover; howbeit Jehovah hath showed me that he shall surely die.</VERS>\r\n      <VERS vnumber=\"11\">And he settled his countenance stedfastly [upon him], until he was ashamed: and the man of God wept.</VERS>\r\n      <VERS vnumber=\"12\">And Hazael said, Why weepeth my lord? And he answered, Because I know the evil that thou wilt do unto the children of Israel: their strongholds wilt thou set on fire, and their young men wilt thou slay with the sword, and wilt dash in pieces their little ones, and rip up their women with child.</VERS>\r\n      <VERS vnumber=\"13\">And Hazael said, But what is thy servant, who is but a dog, that he should do this great thing? And Elisha answered, Jehovah hath showed me that thou shalt be king over Syria.</VERS>\r\n      <VERS vnumber=\"14\">Then he departed from Elisha, and came to his master; who said to him, What said Elisha to thee? And he answered, He told me that thou wouldest surely recover.</VERS>\r\n      <VERS vnumber=\"15\">And it came to pass on the morrow, that he took the coverlet, and dipped it in water, and spread it on his face, so that he died: and Hazael reigned in his stead.</VERS>\r\n      <VERS vnumber=\"16\">And in the fifth year of Joram the son of Ahab king of Israel, Jehoshaphat being then king of Judah, Jehoram the son of Jehoshaphat king of Judah began to reign.</VERS>\r\n      <VERS vnumber=\"17\">Thirty and two years old was he when he began to reign; and he reigned eight years in Jerusalem.</VERS>\r\n      <VERS vnumber=\"18\">And he walked in the way of the kings of Israel, as did the house of Ahab: for he had the daughter of Ahab to wife; and he did that which was evil in the sight of Jehovah.</VERS>\r\n      <VERS vnumber=\"19\">Howbeit Jehovah would not destroy Judah, for David his servant`s sake, as he promised him to give unto him a lamp for his children alway.</VERS>\r\n      <VERS vnumber=\"20\">In his days Edom revolted from under the hand of Judah, and made a king over themselves.</VERS>\r\n      <VERS vnumber=\"21\">Then Joram passed over to Zair, and all his chariots with him: and he rose up by night, and smote the Edomites that compassed him about, and the captains of the chariots; and the people fled to their tents.</VERS>\r\n      <VERS vnumber=\"22\">So Edom revolted from under the hand of Judah unto this day. Then did Libnah revolt at the same time.</VERS>\r\n      <VERS vnumber=\"23\">And the rest of the acts of Joram, and all that he did, are they not written in the book of the chronicles of the kings of Judah?</VERS>\r\n      <VERS vnumber=\"24\">And Joram slept with his fathers, and was buried with his fathers in the city of David; and Ahaziah his son reigned in his stead.</VERS>\r\n      <VERS vnumber=\"25\">In the twelfth year of Joram the son of Ahab king of Israel did Ahaziah the son of Jehoram king of Judah begin to reign.</VERS>\r\n      <VERS vnumber=\"26\">Two and twenty years old was Ahaziah when he began to reign; and he reigned one year in Jerusalem. And his mother`s name was Athaliah the daughter of Omri king of Israel.</VERS>\r\n      <VERS vnumber=\"27\">And he walked in the way of the house of Ahab, and did that which was evil in the sight of Jehovah, as did the house of Ahab; for he was the son-in-law of the house of Ahab.</VERS>\r\n      <VERS vnumber=\"28\">And he went with Joram the son of Ahab to war against Hazael king of Syria at Ramoth-gilead: and the Syrians wounded Joram.</VERS>\r\n      <VERS vnumber=\"29\">And king Joram returned to be healed in Jezreel of the wounds which the Syrians had given him at Ramah, when he fought against Hazael king of Syria. And Ahaziah the son of Jehoram king of Judah went down to see Joram the son of Ahab in Jezreel, because he was sick.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">And Elisha the prophet called one of the sons of the prophets, and said unto him, Gird up thy loins, and take this vial of oil in thy hand, and go to Ramoth-gilead.</VERS>\r\n      <VERS vnumber=\"2\">And when thou comest thither, look out there Jehu the son of Jehoshaphat the son of Nimshi, and go in, and make him arise up from among his brethren, and carry him to an inner chamber.</VERS>\r\n      <VERS vnumber=\"3\">Then take the vial of oil, and pour it on his head, and say, Thus saith Jehovah, I have anointed thee king over Israel. Then open the door, and flee, and tarry not.</VERS>\r\n      <VERS vnumber=\"4\">So the young man, even the young man the prophet, went to Ramoth-gilead.</VERS>\r\n      <VERS vnumber=\"5\">And when he came, behold, the captains of the host were sitting; and he said, I have an errand to thee, O captain. And Jehu said, Unto which of us all? And he said, To thee, O captain.</VERS>\r\n      <VERS vnumber=\"6\">And he arose, and went into the house; and he poured the oil on his head, and said unto him, Thus saith Jehovah, the God of Israel, I have anointed thee king over the people of Jehovah, even over Israel.</VERS>\r\n      <VERS vnumber=\"7\">And thou shalt smite the house of Ahab thy master, that I may avenge the blood of my servants the prophets, and the blood of all the servants of Jehovah, at the hand of Jezebel.</VERS>\r\n      <VERS vnumber=\"8\">For the whole house of Ahab shall perish; and I will cut off from Ahab every man-child, and him that is shut up and him that is left at large in Israel.</VERS>\r\n      <VERS vnumber=\"9\">And I will make the house of Ahab like the house of Jeroboam the son of Nebat, and like the house of Baasha the son of Ahijah.</VERS>\r\n      <VERS vnumber=\"10\">And the dogs shall eat Jezebel in the portion of Jezreel, and there shall be none to bury her. And he opened the door, and fled.</VERS>\r\n      <VERS vnumber=\"11\">Then Jehu came forth to the servants of his lord: and one said unto him, Is all well? wherefore came this mad fellow to thee? And he said unto them, Ye know the man and what his talk was.</VERS>\r\n      <VERS vnumber=\"12\">And they said, It is false; tell us now. And he said, Thus and thus spake he to me, saying, Thus saith Jehovah, I have anointed thee king over Israel.</VERS>\r\n      <VERS vnumber=\"13\">Then they hasted, and took every man his garment, and put it under him on the top of the stairs, and blew the trumpet, saying, Jehu is king.</VERS>\r\n      <VERS vnumber=\"14\">So Jehu the son of Jehoshaphat the son of Nimshi conspired against Joram. (Now Joram was keeping Ramoth-gilead, he and all Israel, because of Hazael king of Syria;</VERS>\r\n      <VERS vnumber=\"15\">but king Joram was returned to be healed in Jezreel of the wounds which the Syrians had given him, when he fought with Hazael king of Syria.) And Jehu said, If this be your mind, then let none escape and go forth out of the city, to go to tell it in Jezreel.</VERS>\r\n      <VERS vnumber=\"16\">So Jehu rode in a chariot, and went to Jezreel; for Joram lay there. And Ahaziah king of Judah was come down to see Joram.</VERS>\r\n      <VERS vnumber=\"17\">Now the watchman was standing on the tower in Jezreel, and he spied the company of Jehu as he came, and said, I see a company. And Joram said, Take a horseman, and send to meet them, and let him say, Is it peace?</VERS>\r\n      <VERS vnumber=\"18\">So there went one on horseback to meet him, and said, Thus saith the king, Is it peace? And Jehu said, What hast thou to do with peace? turn thee behind me. And the watchman told, saying, The messenger came to them, but he cometh not back.</VERS>\r\n      <VERS vnumber=\"19\">Then he sent out a second on horseback, who came to them, and said, Thus saith the king, Is it peace? And Jehu answered, What hast thou to do with peace? turn thee behind me.</VERS>\r\n      <VERS vnumber=\"20\">And the watchman told, saying, He came even unto them, and cometh not back: and the driving is like the driving of Jehu the son of Nimshi; for he driveth furiously.</VERS>\r\n      <VERS vnumber=\"21\">And Joram said, Make ready. And they made ready his chariot. And Joram king of Israel and Ahaziah king of Judah went out, each in his chariot, and they went out to meet Jehu, and found him in the portion of Naboth the Jezreelite.</VERS>\r\n      <VERS vnumber=\"22\">And it came to pass, when Joram saw Jehu, that he said, Is it peace, Jehu? And he answered, What peace, so long as the whoredoms of thy mother Jezebel and her witchcrafts are so many?</VERS>\r\n      <VERS vnumber=\"23\">And Joram turned his hands, and fled, and said to Ahaziah, There is treachery, O Ahaziah.</VERS>\r\n      <VERS vnumber=\"24\">And Jehu drew his bow with his full strength, and smote Joram between his arms; and the arrow went out at his heart, and he sunk down in his chariot.</VERS>\r\n      <VERS vnumber=\"25\">Then said [Jehu] to Bidkar his captain, Take up, and cast him in the portion of the field of Naboth the Jezreelite; for remember how that, when I and thou rode together after Ahab his father, Jehovah laid this burden upon him:</VERS>\r\n      <VERS vnumber=\"26\">Surely I have seen yesterday the blood of Naboth, and the blood of his sons, saith Jehovah; and I will requite thee in this plat, saith Jehovah. Now therefore take and cast him into the plat [of ground], according to the word of Jehovah.</VERS>\r\n      <VERS vnumber=\"27\">But when Ahaziah the king of Judah saw this, he fled by the way of the garden-house. And Jehu followed after him, and said, Smite him also in the chariot: [and they smote him] at the ascent of Gur, which is by Ibleam. And he fled to Megiddo, and died there.</VERS>\r\n      <VERS vnumber=\"28\">And his servants carried him in a chariot to Jerusalem, and buried him in his sepulchre with his fathers in the city of David.</VERS>\r\n      <VERS vnumber=\"29\">And in the eleventh year of Joram the son of Ahab began Ahaziah to reign over Judah.</VERS>\r\n      <VERS vnumber=\"30\">And when Jehu was come to Jezreel, Jezebel heard of it; and she painted her eyes, and attired her head, and looked out at the window.</VERS>\r\n      <VERS vnumber=\"31\">And as Jehu entered in at the gate, she said, Is it peace, thou Zimri, thy master`s murderer?</VERS>\r\n      <VERS vnumber=\"32\">And he lifted up his face to the window, and said, Who is on my side? who? And there looked out to him two or three eunuchs.</VERS>\r\n      <VERS vnumber=\"33\">And he said, Throw her down. So they threw her down; and some of her blood was sprinkled on the wall, and on the horses: and he trod her under foot.</VERS>\r\n      <VERS vnumber=\"34\">And when he was come in, he did eat and drink; and he said, See now to this cursed woman, and bury her; for she is a king`s daughter.</VERS>\r\n      <VERS vnumber=\"35\">And they went to bury her; but they found no more of her than the skull, and the feet, and the palms of her hands.</VERS>\r\n      <VERS vnumber=\"36\">Wherefore they came back, and told him. And he said, This is the word of Jehovah, which he spake by his servant Elijah the Tishbite, saying, In the portion of Jezreel shall the dogs eat the flesh of Jezebel;</VERS>\r\n      <VERS vnumber=\"37\">and the body of Jezebel shall be as dung upon the face of the field in the portion of Jezreel, so that they shall not say, This is Jezebel.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">Now Ahab had seventy sons in Samaria. And Jehu wrote letters, and sent to Samaria, unto the rulers of Jezreel, even the elders, and unto them that brought up [the sons of] Ahab, saying,</VERS>\r\n      <VERS vnumber=\"2\">And now as soon as this letter cometh to you, seeing your master`s sons are with you, and there are with you chariots and horses, a fortified city also, and armor;</VERS>\r\n      <VERS vnumber=\"3\">look ye out the best and meetest of your master`s sons, and set him on his father`s throne, and fight for your master`s house.</VERS>\r\n      <VERS vnumber=\"4\">But they were exceedingly afraid, and said, Behold, the two kings stood not before him: how then shall we stand?</VERS>\r\n      <VERS vnumber=\"5\">And he that was over the household, and he that was over the city, the elders also, and they that brought up [the children], sent to Jehu, saying, We are thy servants, and will do all that thou shalt bid us; we will not make any man king: do thou that which is good in thine eyes.</VERS>\r\n      <VERS vnumber=\"6\">Then he wrote a letter the second time to them, saying, If ye be on my side, and if ye will hearken unto my voice, take ye the heads of the men your master`s sons, and come to me to Jezreel by to-morrow this time. Now the king`s sons, being seventy persons, were with the great men of the city, who brought them up.</VERS>\r\n      <VERS vnumber=\"7\">And it came to pass, when the letter came to them, that they took the king`s sons, and slew them, even seventy persons, and put their heads in baskets, and sent them unto him to Jezreel.</VERS>\r\n      <VERS vnumber=\"8\">And there came a messenger, and told him, saying, They have brought the heads of the king`s sons. And he said, Lay ye them in two heaps at the entrance of the gate until the morning.</VERS>\r\n      <VERS vnumber=\"9\">And it came to pass in the morning, that he went out, and stood, and said to all the people, Ye are righteous: behold, I conspired against my master, and slew him; but who smote all these?</VERS>\r\n      <VERS vnumber=\"10\">Know now that there shall fall unto the earth nothing of the word of Jehovah, which Jehovah spake concerning the house of Ahab: for Jehovah hath done that which he spake by his servant Elijah.</VERS>\r\n      <VERS vnumber=\"11\">So Jehu smote all that remained of the house of Ahab in Jezreel, and all his great men, and his familiar friends, and his priests, until he left him none remaining.</VERS>\r\n      <VERS vnumber=\"12\">And he arose and departed, and went to Samaria. And as he was at the shearing-house of the shepherds in the way,</VERS>\r\n      <VERS vnumber=\"13\">Jehu met with the brethren of Ahaziah king of Judah, and said, Who are ye? And they answered, We are the brethren of Ahaziah: and we go down to salute the children of the king and the children of the queen.</VERS>\r\n      <VERS vnumber=\"14\">And he said, Take them alive. And they took them alive, and slew them at the pit of the shearing-house, even two and forty men; neither left he any of them.</VERS>\r\n      <VERS vnumber=\"15\">And when he was departed thence, he lighted on Jehonadab the son of Rechab coming to meet him; and he saluted him, and said to him, Is thy heart right, as my heart is with thy heart? And Jehonadab answered, It is. If it be, give me thy hand. And he gave him his hand; and he took him up to him into the chariot.</VERS>\r\n      <VERS vnumber=\"16\">And he said, Come with me, and see my zeal for Jehovah. So they made him ride in his chariot.</VERS>\r\n      <VERS vnumber=\"17\">And when he came to Samaria, he smote all that remained unto Ahab in Samaria, till he had destroyed him, according to the word of Jehovah, which he spake to Elijah.</VERS>\r\n      <VERS vnumber=\"18\">And Jehu gathered all the people together, and said unto them, Ahab served Baal a little; but Jehu will serve him much.</VERS>\r\n      <VERS vnumber=\"19\">Now therefore call unto me all the prophets of Baal, all his worshippers, and all his priests; let none be wanting: for I have a great sacrifice [to do] to Baal; whosoever shall be wanting, he shall not live. But Jehu did it in subtlety, to the intent that he might destroy the worshippers of Baal.</VERS>\r\n      <VERS vnumber=\"20\">And Jehu said, Sanctify a solemn assembly for Baal. And they proclaimed it.</VERS>\r\n      <VERS vnumber=\"21\">And Jehu sent through all Israel: and all the worshippers of Baal came, so that there was not a man left that came not. And they came into the house of Baal; and the house of Baal was filled from one end to another.</VERS>\r\n      <VERS vnumber=\"22\">And he said unto him that was over the vestry, Bring forth vestments for all the worshippers of Baal. And he brought them forth vestments.</VERS>\r\n      <VERS vnumber=\"23\">And Jehu went, and Jehonadab the son of Rechab, into the house of Baal; and he said unto the worshippers of Baal, Search, and look that there be here with you none of the servants of Jehovah, but the worshippers of Baal only.</VERS>\r\n      <VERS vnumber=\"24\">And they went in to offer sacrifices and burnt-offerings. Now Jehu had appointed him fourscore men without, and said, If any of the men whom I bring into your hands escape, [he that letteth him go], his life shall be for the life of him.</VERS>\r\n      <VERS vnumber=\"25\">And it came to pass, as soon as he had made an end of offering the burnt-offering, that Jehu said to the guard and to the captains, Go in, and slay them; let none come forth. And they smote them with the edge of the sword; and the guard and the captains cast them out, and went to the city of the house of Baal.</VERS>\r\n      <VERS vnumber=\"26\">And they brought forth the pillars that were in the house of Baal, and burned them.</VERS>\r\n      <VERS vnumber=\"27\">And they brake down the pillar of Baal, and brake down the house of Baal, and made it a draught-house, unto this day.</VERS>\r\n      <VERS vnumber=\"28\">Thus Jehu destroyed Baal out of Israel.</VERS>\r\n      <VERS vnumber=\"29\">Howbeit from the sins of Jeroboam the son of Nebat, wherewith he made Israel to sin, Jehu departed not from after them, [to wit], the golden calves that were in Beth-el, and that were in Dan.</VERS>\r\n      <VERS vnumber=\"30\">And Jehovah said unto Jehu, Because thou hast done well in executing that which is right in mine eyes, [and] hast done unto the house of Ahab according to all that was in my heart, thy sons of the fourth generation shall sit on the throne of Israel.</VERS>\r\n      <VERS vnumber=\"31\">But Jehu took no heed to walk in the law of Jehovah, the God of Israel, with all his heart: he departed not from the sins of Jeroboam, wherewith he made Israel to sin.</VERS>\r\n      <VERS vnumber=\"32\">In those days Jehovah began to cut off from Israel: and Hazael smote them in all the borders of Israel;</VERS>\r\n      <VERS vnumber=\"33\">from the Jordan eastward, all the land of Gilead, the Gadites, and the Reubenites, and the Manassites, from Aroer, which is by the valley of the Arnon, even Gilead and Bashan.</VERS>\r\n      <VERS vnumber=\"34\">Now the rest of the acts of Jehu, and all that he did, and all his might, are they not written in the book of the chronicles of the kings of Israel?</VERS>\r\n      <VERS vnumber=\"35\">And Jehu slept with his fathers; and they buried him in Samaria. And Jehoahaz his son reigned in his stead.</VERS>\r\n      <VERS vnumber=\"36\">And the time that Jehu reigned over Israel in Samaria was twenty and eight years.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">Now when Athaliah the mother of Ahaziah saw that her son was dead, she arose and destroyed all the seed royal.</VERS>\r\n      <VERS vnumber=\"2\">But Jehosheba, the daughter of king Joram, sister of Ahaziah, took Joash the son of Ahaziah, and stole him away from among the king`s sons that were slain, even him and his nurse, [and put them] in the bedchamber; and they hid him from Athaliah, so that he was not slain;</VERS>\r\n      <VERS vnumber=\"3\">And he was with her hid in the house of Jehovah six years. And Athaliah reigned over the land.</VERS>\r\n      <VERS vnumber=\"4\">And in the seventh year Jehoiada sent and fetched the captains over hundreds of the Carites and of the guard, and brought them to him into the house of Jehovah; and he made a covenant with them, and took an oath of them in the house of Jehovah, and showed them the king`s son.</VERS>\r\n      <VERS vnumber=\"5\">And he commanded them, saying, This is the thing that ye shall do: a third part of you, that come in on the sabbath, shall be keepers of the watch of the king`s house;</VERS>\r\n      <VERS vnumber=\"6\">And a third part shall be at the gate Sur; and a third part at the gate behind the guard: so shall ye keep the watch of the house, and be a barrier.</VERS>\r\n      <VERS vnumber=\"7\">And the two companies of you, even all that go forth on the sabbath, shall keep the watch of the house of Jehovah about the king.</VERS>\r\n      <VERS vnumber=\"8\">And ye shall compass the king round about, every man with his weapons in his hand; and he that cometh within the ranks, let him be slain: and be ye with the king when he goeth out, and when he cometh in.</VERS>\r\n      <VERS vnumber=\"9\">And the captains over hundreds did according to all that Jehoiada the priest commanded; and they took every man his men, those that were to come in on the sabbath, with those that were to go out on the sabbath, and came to Jehoiada the priest.</VERS>\r\n      <VERS vnumber=\"10\">And the priest delivered to the captains over hundreds the spears and shields that had been king David`s, which were in the house of Jehovah.</VERS>\r\n      <VERS vnumber=\"11\">And the guard stood, every man with his weapons in his hand, from the right side of the house to the left side of the house, along by the altar and the house, by the king round about.</VERS>\r\n      <VERS vnumber=\"12\">Then he brought out the king`s son, and put the crown upon him, and [gave him] the testimony; and they made him king, and anointed him; and they clapped their hands, and said, [Long] live the king.</VERS>\r\n      <VERS vnumber=\"13\">And when Athaliah heard the noise of the guard [and of] the people, she came to the people into the house of Jehovah:</VERS>\r\n      <VERS vnumber=\"14\">and she looked, and, behold, the king stood by the pillar, as the manner was, and the captains and the trumpets by the king; and all the people of the land rejoiced, and blew trumpets. Then Athaliah rent her clothes, and cried, Treason! treason!</VERS>\r\n      <VERS vnumber=\"15\">And Jehoiada the priest commanded the captains of hundreds that were set over the host, and said unto them, Have her forth between the ranks; and him that followeth her slay with the sword. For the priest said, Let her not be slain in the house of Jehovah.</VERS>\r\n      <VERS vnumber=\"16\">So they made way for her; and she went by the way of the horses` entry to the king`s house: and there was she slain.</VERS>\r\n      <VERS vnumber=\"17\">And Jehoiada made a covenant between Jehovah and the king and the people, that they should be Jehovah`s people; between the king also and the people.</VERS>\r\n      <VERS vnumber=\"18\">And all the people of the land went to the house of Baal, and brake it down; his altars and his images brake they in pieces thoroughly, and slew Mattan the priest of Baal before the altars. And the priest appointed officers over the house of Jehovah.</VERS>\r\n      <VERS vnumber=\"19\">And he took the captains over hundreds, and the Carites, and the guard, and all the people of the land; and they brought down the king from the house of Jehovah, and came by the way of the gate of the guard unto the king`s house. And he sat on the throne of the kings.</VERS>\r\n      <VERS vnumber=\"20\">So all the people of the land rejoiced, and the city was quiet. And Athaliah they had slain with the sword at the king`s house.</VERS>\r\n      <VERS vnumber=\"21\">Jehoash was seven years old when he began to reign.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">In the seventh year of Jehu began Jehoash to reign; and he reigned forty years in Jerusalem: and his mother`s name was Zibiah of Beer-sheba.</VERS>\r\n      <VERS vnumber=\"2\">And Jehoash did that which was right in the eyes of Jehovah all his days wherein Jehoiada the priest instructed him.</VERS>\r\n      <VERS vnumber=\"3\">Howbeit the high places were not taken away; the people still sacrificed and burnt incense in the high places.</VERS>\r\n      <VERS vnumber=\"4\">And Jehoash said to the priests, All the money of the hallowed things that is brought into the house of Jehovah, in current money, the money of the persons for whom each man is rated, and all the money that it cometh into any man`s heart to bring into the house of Jehovah,</VERS>\r\n      <VERS vnumber=\"5\">let the priests take it to them, every man from his acquaintance; and they shall repair the breaches of the house, wheresoever any breach shall be found.</VERS>\r\n      <VERS vnumber=\"6\">But it was so, that in the three and twentieth year of king Jehoash the priests had not repaired the breaches of the house.</VERS>\r\n      <VERS vnumber=\"7\">Then king Jehoash called for Jehoiada the priest, and for the [other] priests, and said unto them, Why repair ye not the breaches of the house? now therefore take no [more] money from your acquaintance, but deliver it for the breaches of the house.</VERS>\r\n      <VERS vnumber=\"8\">And the priests consented that they should take no [more] money from the people, neither repair the breaches of the house.</VERS>\r\n      <VERS vnumber=\"9\">But Jehoiada the priest took a chest, and bored a hole in the lid of it, and set it beside the altar, on the right side as one cometh into the house of Jehovah: and the priests that kept the threshold put therein all the money that was brought into the house of Jehovah.</VERS>\r\n      <VERS vnumber=\"10\">And it was so, when they saw that there was much money in the chest, that the king`s scribe and the high priest came up, and they put up in bags and counted the money that was found in the house of Jehovah.</VERS>\r\n      <VERS vnumber=\"11\">And they gave the money that was weighed out into the hands of them that did the work, that had the oversight of the house of Jehovah: and they paid it out to the carpenters and the builders, that wrought upon the house of Jehovah,</VERS>\r\n      <VERS vnumber=\"12\">and to the masons and the hewers of stone, and for buying timber and hewn stone to repair the breaches of the house of Jehovah, and for all that was laid out for the house to repair it.</VERS>\r\n      <VERS vnumber=\"13\">But there were not made for the house of Jehovah cups of silver, snuffers, basins, trumpets, any vessels of gold, or vessels of silver, of the money that was brought into the house of Jehovah;</VERS>\r\n      <VERS vnumber=\"14\">for they gave that to them that did the work, and repaired therewith the house of Jehovah.</VERS>\r\n      <VERS vnumber=\"15\">Moreover they reckoned not with the men, into whose hand they delivered the money to give to them that did the work; for they dealt faithfully.</VERS>\r\n      <VERS vnumber=\"16\">The money for the trespass-offerings, and the money for the sin-offerings, was not brought into the house of Jehovah: it was the priests`.</VERS>\r\n      <VERS vnumber=\"17\">Then Hazael king of Syria went up, and fought against Gath, and took it; and Hazael set his face to go up to Jerusalem.</VERS>\r\n      <VERS vnumber=\"18\">And Jehoash king of Judah took all the hallowed things that Jehoshaphat and Jehoram and Ahaziah, his fathers, kings of Judah, had dedicated, and his own hallowed things, and all the gold that was found in the treasures of the house of Jehovah, and of the king`s house, and sent it to Hazael king of Syria: and he went away from Jerusalem.</VERS>\r\n      <VERS vnumber=\"19\">Now the rest of the acts of Joash, and all that he did, are they not written in the book of the chronicles of the kings of Judah?</VERS>\r\n      <VERS vnumber=\"20\">And his servants arose, and made a conspiracy, and smote Joash at the house of Millo, [on the way] that goeth down to Silla.</VERS>\r\n      <VERS vnumber=\"21\">For Jozacar the son of Shimeath, and Jehozabad the son of Shomer, his servants, smote him, and he died; and they buried him with his fathers in the city of David: and Amaziah his son reigned in his stead.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">In the three and twentieth year of Joash the son of Ahaziah, king of Judah, Jehoahaz the son of Jehu began to reign over Israel in Samaria, [and reigned] seventeen years.</VERS>\r\n      <VERS vnumber=\"2\">And he did that which was evil in the sight of Jehovah, and followed the sins of Jeroboam the son of Nebat, wherewith he made Israel to sin; he departed not therefrom.</VERS>\r\n      <VERS vnumber=\"3\">And the anger of Jehovah was kindled against Israel, and he delivered them into the hand of Hazael king of Syria, and into the hand of Benhadad the son of Hazael, continually.</VERS>\r\n      <VERS vnumber=\"4\">And Jehoahaz besought Jehovah, and Jehovah hearkened unto him; for he saw the oppression of Israel, how that the king of Syria oppressed them.</VERS>\r\n      <VERS vnumber=\"5\">(And Jehovah gave Israel a saviour, so that they went out from under the hand of the Syrians; and the children of Israel dwelt in their tents as beforetime.</VERS>\r\n      <VERS vnumber=\"6\">Nevertheless they departed not from the sins of the house of Jeroboam, wherewith he made Israel to sin, but walked therein: and there remained the Asherah also in Samaria.)</VERS>\r\n      <VERS vnumber=\"7\">For he left not to Jehoahaz of the people save fifty horsemen, and ten chariots, and ten thousand footmen; for the king of Syria destroyed them, and made them like the dust in threshing.</VERS>\r\n      <VERS vnumber=\"8\">Now the rest of the acts of Jehoahaz, and all that he did, and his might, are they not written in the book of the chronicles of the kings of Israel?</VERS>\r\n      <VERS vnumber=\"9\">And Jehoahaz slept with his fathers; and they buried him in Samaria: and Joash his son reigned in his stead.</VERS>\r\n      <VERS vnumber=\"10\">In the thirty and seventh year of Joash king of Judah began Jehoash the son of Jehoahaz to reign over Israel in Samaria, [and reigned] sixteen years.</VERS>\r\n      <VERS vnumber=\"11\">And he did that which was evil in the sight of Jehovah; he departed not from all the sins of Jeroboam the son of Nebat, wherewith he made Israel to sin; but he walked therein.</VERS>\r\n      <VERS vnumber=\"12\">Now the rest of the acts of Joash, and all that he did, and his might wherewith he fought against Amaziah king of Judah, are they not written in the book of the chronicles of the kings of Israel?</VERS>\r\n      <VERS vnumber=\"13\">And Joash slept with his fathers; and Jeroboam sat upon his throne: and Joash was buried in Samaria with the kings of Israel.</VERS>\r\n      <VERS vnumber=\"14\">Now Elisha was fallen sick of his sickness whereof he died: and Joash the king of Israel came down unto him, and wept over him, and said, My father, my father, the chariots of Israel and the horsemen thereof!</VERS>\r\n      <VERS vnumber=\"15\">And Elisha said unto him, Take bow and arrows; and he took unto him bow and arrows.</VERS>\r\n      <VERS vnumber=\"16\">And he said to the king of Israel, Put thy hand upon the bow; and he put his hand [upon it]. And Elisha laid his hands upon the king`s hands.</VERS>\r\n      <VERS vnumber=\"17\">And he said, Open the window eastward; and he opened it. Then Elisha said, Shoot; and he shot. And he said, Jehovah`s arrow of victory, even the arrow of victory over Syria; for thou shalt smite the Syrians in Aphek, till thou have consumed them.</VERS>\r\n      <VERS vnumber=\"18\">And he said, Take the arrows; and he took them. And he said unto the king of Israel, Smite upon the ground; and he smote thrice, and stayed.</VERS>\r\n      <VERS vnumber=\"19\">And the man of God was wroth with him, and said, Thou shouldest have smitten five or six times: then hadst thou smitten Syria till thou hadst consumed it, whereas now thou shalt smite Syria but thrice.</VERS>\r\n      <VERS vnumber=\"20\">And Elisha died, and they buried him. Now the bands of the Moabites invaded the land at the coming in of the year.</VERS>\r\n      <VERS vnumber=\"21\">And it came to pass, as they were burying a man, that, behold, they spied a band; and they cast the man into the sepulchre of Elisha: and as soon as the man touched the bones of Elisha, he revived, and stood up on his feet.</VERS>\r\n      <VERS vnumber=\"22\">And Hazael king of Syria oppressed Israel all the days of Jehoahaz.</VERS>\r\n      <VERS vnumber=\"23\">But Jehovah was gracious unto them, and had compassion on them, and had respect unto them, because of his covenant with Abraham, Isaac, and Jacob, and would not destroy them, neither cast he them from his presence as yet.</VERS>\r\n      <VERS vnumber=\"24\">And Hazael king of Syria died; and Benhadad his son reigned in his stead.</VERS>\r\n      <VERS vnumber=\"25\">And Jehoash the son of Jehoahaz took again out of the hand of Benhadad the son of Hazael the cities which he had taken out of the hand of Jehoahaz his father by war. Three times did Joash smite him, and recovered the cities of Israel.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">In the second year of Joash son of Joahaz king of Israel began Amaziah the son of Joash king of Judah to reign.</VERS>\r\n      <VERS vnumber=\"2\">He 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 Jehoaddin of Jerusalem.</VERS>\r\n      <VERS vnumber=\"3\">And he did that which was right in the eyes of Jehovah, yet not like David his father: he did according to all that Joash his father had done.</VERS>\r\n      <VERS vnumber=\"4\">Howbeit the high places were not taken away: the people still sacrificed and burnt incense in the high places.</VERS>\r\n      <VERS vnumber=\"5\">And it came to pass, as soon as the kingdom was established in his hand, that he slew his servants who had slain the king his father:</VERS>\r\n      <VERS vnumber=\"6\">but the children of the murderers he put not to death; according to that which is written in the book of the law of Moses, as Jehovah commanded, saying, The fathers shall not be put to death for the children, nor the children be put to death for the fathers; but every man shall die for his own sin.</VERS>\r\n      <VERS vnumber=\"7\">He slew of Edom in the Valley of Salt ten thousand, and took Sela by war, and called the name of it Joktheel, unto this day.</VERS>\r\n      <VERS vnumber=\"8\">Then Amaziah sent messengers to Jehoash, the son of Jehoahaz son of Jehu, king of Israel, saying, Come, let us look one another in the face.</VERS>\r\n      <VERS vnumber=\"9\">And Jehoash the 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 trod down the thistle.</VERS>\r\n      <VERS vnumber=\"10\">Thou hast indeed smitten Edom, and thy heart hath lifted thee up: glory thereof, and abide at home; for why shouldest thou meddle to [thy] hurt, that thou shouldest fall, even thou, and Judah with thee?</VERS>\r\n      <VERS vnumber=\"11\">But Amaziah would not hear. So Jehoash king of Israel went up; and he and Amaziah king of Judah looked one another in the face at Beth-shemesh, which belongeth to Judah.</VERS>\r\n      <VERS vnumber=\"12\">And Judah was put to the worse before Israel; and they fled every man to his tent.</VERS>\r\n      <VERS vnumber=\"13\">And Jehoash king of Israel took Amaziah king of Judah, the son of Jehoash the son of Ahaziah, at Beth-shemesh, and came to Jerusalem, and brake down the wall of Jerusalem from the gate of Ephraim unto the corner gate, four hundred cubits.</VERS>\r\n      <VERS vnumber=\"14\">And he took all the gold and silver, and all the vessels that were found in the house of Jehovah, and in the treasures of the king`s house, the hostages also, and returned to Samaria.</VERS>\r\n      <VERS vnumber=\"15\">Now the rest of the acts of Jehoash which he did, and his might, and how he fought with Amaziah king of Judah, are they not written in the book of the chronicles of the kings of Israel?</VERS>\r\n      <VERS vnumber=\"16\">And Jehoash slept with his fathers, and was buried in Samaria with the kings of Israel; and Jeroboam his son reigned in his stead.</VERS>\r\n      <VERS vnumber=\"17\">And Amaziah the son of Joash king of Judah lived after the death of Jehoash son of Jehoahaz king of Israel fifteen years.</VERS>\r\n      <VERS vnumber=\"18\">Now the rest of the acts of Amaziah, are they not written in the book of the chronicles of the kings of Judah?</VERS>\r\n      <VERS vnumber=\"19\">And they made a conspiracy against him in Jerusalem; and he fled to Lachish: but they sent after him to Lachish, and slew him there.</VERS>\r\n      <VERS vnumber=\"20\">And they brought him upon horses; and he was buried at Jerusalem with his fathers in the city of David.</VERS>\r\n      <VERS vnumber=\"21\">And all the people of Judah took Azariah, who was sixteen years old, and made him king in the room of his father Amaziah.</VERS>\r\n      <VERS vnumber=\"22\">He built Elath, and restored it to Judah, after that the king slept with his fathers.</VERS>\r\n      <VERS vnumber=\"23\">In the fifteenth year of Amaziah the son of Joash king of Judah Jeroboam the son of Joash king of Israel began to reign in Samaria, [and reigned] forty and one years.</VERS>\r\n      <VERS vnumber=\"24\">And he did that which was evil in the sight of Jehovah: he departed not from all the sins of Jeroboam the son of Nebat, wherewith he made Israel to sin.</VERS>\r\n      <VERS vnumber=\"25\">He restored the border of Israel from the entrance of Hamath unto the sea of the Arabah, according to the word of Jehovah, the God of Israel, which he spake by his servant Jonah the son of Amittai, the prophet, who was of Gath-hepher.</VERS>\r\n      <VERS vnumber=\"26\">For Jehovah saw the affliction of Israel, that it was very bitter; for there was none shut up nor left at large, neither was there any helper for Israel.</VERS>\r\n      <VERS vnumber=\"27\">And Jehovah said not that he would blot out the name of Israel from under heaven; but he saved them by the hand of Jeroboam the son of Joash.</VERS>\r\n      <VERS vnumber=\"28\">Now the rest of the acts of Jeroboam, and all that he did, and his might, how he warred, and how he recovered Damascus, and Hamath, [which had belonged] to Judah, for Israel, are they not written in the book of the chronicles of the kings of Israel?</VERS>\r\n      <VERS vnumber=\"29\">And Jeroboam slept with his fathers, even with the kings of Israel; and Zechariah his son reigned in his stead.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">In the twenty and seventh year of Jeroboam king of Israel began Azariah son of Amaziah king of Judah to reign.</VERS>\r\n      <VERS vnumber=\"2\">Sixteen years old was he when he began to reign; and he reigned two and fifty years in Jerusalem: and his mother`s name was Jecoliah of Jerusalem.</VERS>\r\n      <VERS vnumber=\"3\">And he did that which was right in the eyes of Jehovah, according to all that his father Amaziah had done.</VERS>\r\n      <VERS vnumber=\"4\">Howbeit the high places were not taken away: the people still sacrificed and burnt incense in the high places.</VERS>\r\n      <VERS vnumber=\"5\">And Jehovah smote the king, so that he was a leper unto the day of his death, and dwelt in a separate house. And Jotham the king`s son was over the household, judging the people of the land.</VERS>\r\n      <VERS vnumber=\"6\">Now the rest of the acts of Azariah, and all that he did, are they not written in the book of the chronicles of the kings of Judah?</VERS>\r\n      <VERS vnumber=\"7\">And Azariah slept with his fathers; and they buried him with his fathers in the city of David: and Jotham his son reigned in his stead.</VERS>\r\n      <VERS vnumber=\"8\">In the thirty and eighth year of Azariah king of Judah did Zechariah the son of Jeroboam reign over Israel in Samaria six months.</VERS>\r\n      <VERS vnumber=\"9\">And he did that which was evil in the sight of Jehovah, as his fathers had done: he departed not from the sins of Jeroboam the son of Nebat, wherewith he made Israel to sin.</VERS>\r\n      <VERS vnumber=\"10\">And Shallum the son of Jabesh conspired against him, and smote him before the people, and slew him, and reigned in his stead.</VERS>\r\n      <VERS vnumber=\"11\">Now the rest of the acts of Zechariah, behold, they are written in the book of the chronicles of the kings of Israel.</VERS>\r\n      <VERS vnumber=\"12\">This was the word of Jehovah which he spake unto Jehu, saying, Thy sons to the fourth generation shall sit upon the throne of Israel. And so it came to pass.</VERS>\r\n      <VERS vnumber=\"13\">Shallum the son of Jabesh began to reign in the nine and thirtieth year of Uzziah king of Judah; and he reigned the space of a month in Samaria.</VERS>\r\n      <VERS vnumber=\"14\">And Menahem the son of Gadi went up from Tirzah, and came to Samaria, and smote Shallum the son of Jabesh in Samaria, and slew him, and reigned in his stead.</VERS>\r\n      <VERS vnumber=\"15\">Now the rest of the acts of Shallum, and his conspiracy which he made, behold, they are written in the book of the chronicles of the kings of Israel.</VERS>\r\n      <VERS vnumber=\"16\">Then Menahem smote Tiphsah, and all that were therein, and the borders thereof, from Tirzah: because they opened not to him, therefore he smote it; and all the women therein that were with child he ripped up.</VERS>\r\n      <VERS vnumber=\"17\">In the nine and thirtieth year of Azariah king of Judah began Menahem the son of Gadi to reign over Israel, [and reigned] ten years in Samaria.</VERS>\r\n      <VERS vnumber=\"18\">And he did that which was evil in the sight of Jehovah: he departed not all his days from the sins of Jeroboam the son of Nebat, wherewith he made Israel to sin.</VERS>\r\n      <VERS vnumber=\"19\">There came against the land Pul the king of Assyria; and Menahem gave Pul a thousand talents of silver, that his hand might be with him to confirm the kingdom in his hand.</VERS>\r\n      <VERS vnumber=\"20\">And Menahem exacted the money of Israel, even of all the mighty men of wealth, of each man fifty shekels of silver, to give to the king of Assyria. So the king of Assyria turned back, and stayed not there in the land.</VERS>\r\n      <VERS vnumber=\"21\">Now the rest of the acts of Menahem, and all that he did, are they not written in the book of the chronicles of the kings of Israel?</VERS>\r\n      <VERS vnumber=\"22\">And Menahem slept with his fathers; and Pekahiah his son reigned in his stead.</VERS>\r\n      <VERS vnumber=\"23\">In the fiftieth year of Azariah king of Judah Pekahiah the son of Menahem began to reign over Israel in Samaria, [and reigned] two years.</VERS>\r\n      <VERS vnumber=\"24\">And he did that which was evil in the sight of Jehovah: he departed not from the sins of Jeroboam the son of Nebat, wherewith he made Israel to sin.</VERS>\r\n      <VERS vnumber=\"25\">And Pekah the son of Remaliah, his captain, conspired against him, and smote him in Samaria, in the castle of the king`s house, with Argob and Arieh; and with him were fifty men of the Gileadites: and he slew him, and reigned in his stead.</VERS>\r\n      <VERS vnumber=\"26\">Now the rest of the acts of Pekahiah, and all that he did, behold, they are written in the book of the chronicles of the kings of Israel.</VERS>\r\n      <VERS vnumber=\"27\">In the two and fiftieth year of Azariah king of Judah Pekah the son of Remaliah began to reign over Israel in Samaria, [and reigned] twenty years.</VERS>\r\n      <VERS vnumber=\"28\">And he did that which was evil in the sight of Jehovah: he departed not from the sins of Jeroboam the son of Nebat, wherewith he made Israel to sin.</VERS>\r\n      <VERS vnumber=\"29\">In the days of Pekah king of Israel came Tiglath-pileser king of Assyria, and took Ijon, and Abel-beth-maacah, and Janoah, and Kedesh, and Hazor, and Gilead, and Galilee, all the land of Naphtali; and he carried them captive to Assyria.</VERS>\r\n      <VERS vnumber=\"30\">And Hoshea the son of Elah made a conspiracy against Pekah the son of Remaliah, and smote him, and slew him, and reigned in his stead, in the twentieth year of Jotham the son of Uzziah.</VERS>\r\n      <VERS vnumber=\"31\">Now the rest of the acts of Pekah, and all that he did, behold, they are written in the book of the chronicles of the kings of Israel.</VERS>\r\n      <VERS vnumber=\"32\">In the second year of Pekah the son of Remaliah king of Israel began Jotham the son of Uzziah king of Judah to reign.</VERS>\r\n      <VERS vnumber=\"33\">Five and twenty years old was he when he began to reign; and he reigned sixteen years in Jerusalem: and his mother`s name was Jerusha the daughter of Zadok.</VERS>\r\n      <VERS vnumber=\"34\">And he did that which was right in the eyes of Jehovah; he did according to all that his father Uzziah had done.</VERS>\r\n      <VERS vnumber=\"35\">Howbeit the high places were not taken away: the people still sacrificed and burned incense in the high places. He built the upper gate of the house of Jehovah.</VERS>\r\n      <VERS vnumber=\"36\">Now the rest of the acts of Jotham, and all that he did, are they not written in the book of the chronicles of the kings of Judah?</VERS>\r\n      <VERS vnumber=\"37\">In those days Jehovah began to send against Judah Rezin the king of Syria, and Pekah the son of Remaliah.</VERS>\r\n      <VERS vnumber=\"38\">And Jotham slept with his fathers, and was buried with his fathers in the city of David his father: and Ahaz his son reigned in his stead.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">In the seventeenth year of Pekah the son of Remaliah Ahaz the son of Jotham king of Judah began to reign.</VERS>\r\n      <VERS vnumber=\"2\">Twenty years old was Ahaz when he began to reign; and he reigned sixteen years in Jerusalem: and he did not that which was right in the eyes of Jehovah his God, like David his father.</VERS>\r\n      <VERS vnumber=\"3\">But he walked in the way of the kings of Israel, yea, and made his son to pass through the fire, according to the abominations of the nations, whom Jehovah cast out from before the children of Israel.</VERS>\r\n      <VERS vnumber=\"4\">And he sacrificed and burnt incense in the high places, and on the hills, and under every green tree.</VERS>\r\n      <VERS vnumber=\"5\">Then Rezin king of Syria and Pekah son of Remaliah king of Israel came up to Jerusalem to war: and they besieged Ahaz, but could not overcome him.</VERS>\r\n      <VERS vnumber=\"6\">At that time Rezin king of Syria recovered Elath to Syria, and drove the Jews from Elath; and the Syrians came to Elath, and dwelt there, unto this day.</VERS>\r\n      <VERS vnumber=\"7\">So Ahaz sent messengers to Tiglath-pileser king of Assyria, saying, I am thy servant and thy son: come up, and save me out of the hand of the king of Syria, and out of the hand of the king of Israel, who rise up against me.</VERS>\r\n      <VERS vnumber=\"8\">And Ahaz took the silver and gold that was found in the house of Jehovah, and in the treasures of the king`s house, and sent it for a present to the king of Assyria.</VERS>\r\n      <VERS vnumber=\"9\">And the king of Assyria hearkened unto him; and the king of Assyria went up against Damascus, and took it, and carried [the people of] it captive to Kir, and slew Rezin.</VERS>\r\n      <VERS vnumber=\"10\">And king Ahaz went to Damascus to meet Tiglath-pileser king of Assyria, and saw the altar that was at Damascus; and king Ahaz sent to Urijah the priest the fashion of the altar, and the pattern of it, according to all the workmanship thereof.</VERS>\r\n      <VERS vnumber=\"11\">And Urijah the priest built an altar: according to all that king Ahaz had sent from Damascus, so did Urijah the priest make it against the coming of king Ahaz from Damascus.</VERS>\r\n      <VERS vnumber=\"12\">And when the king was come from Damascus, the king saw the altar: and the king drew near unto the altar, and offered thereon.</VERS>\r\n      <VERS vnumber=\"13\">And he burnt his burnt-offering and his meal-offering, and poured his drink-offering, and sprinkled the blood of his peace-offerings, upon the altar.</VERS>\r\n      <VERS vnumber=\"14\">And the brazen altar, which was before Jehovah, he brought from the forefront of the house, from between his altar and the house of Jehovah, and put it on the north side of his altar.</VERS>\r\n      <VERS vnumber=\"15\">And king Ahaz commanded Urijah the priest, saying, Upon the great altar burn the morning burnt-offering, and the evening meal-offering, and the king`s burnt-offering, and his meal-offering, with the burnt-offering of all the people of the land, and their meal-offering, and their drink-offerings; and sprinkle upon it all the blood of the burnt-offering, and all the blood of the sacrifice: but the brazen altar shall be for me to inquire by.</VERS>\r\n      <VERS vnumber=\"16\">Thus did Urijah the priest, according to all that king Ahaz commanded.</VERS>\r\n      <VERS vnumber=\"17\">And king Ahaz cut off the panels of the bases, and removed the laver from off them, and took down the sea from off the brazen oxen that were under it, and put it upon a pavement of stone.</VERS>\r\n      <VERS vnumber=\"18\">And the covered way for the sabbath that they had built in the house, and the king`s entry without, turned he unto the house of Jehovah, because of the king of Assyria.</VERS>\r\n      <VERS vnumber=\"19\">Now the rest of the acts of Ahaz which he did, are they not written in the book of the chronicles of the kings of Judah?</VERS>\r\n      <VERS vnumber=\"20\">And Ahaz slept with his fathers, and was buried with his fathers in the city of David: and Hezekiah his son reigned in his stead.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"17\">\r\n      <VERS vnumber=\"1\">In the twelfth year of Ahaz king of Judah began Hoshea the son of Elah to reign in Samaria over Israel, [and reigned] nine years.</VERS>\r\n      <VERS vnumber=\"2\">And he did that which was evil in the sight of Jehovah, yet not as the kings of Israel that were before him.</VERS>\r\n      <VERS vnumber=\"3\">Against him came up Shalmaneser king of Assyria; and Hoshea became his servant, and brought him tribute.</VERS>\r\n      <VERS vnumber=\"4\">And the king of Assyria found conspiracy in Hoshea; for he had sent messengers to So king of Egypt, and offered no tribute to the king of Assyria, as he had done year by year: therefore the king of Assyria shut him up, and bound him in prison.</VERS>\r\n      <VERS vnumber=\"5\">Then the king of Assyria came up throughout all the land, and went up to Samaria, and besieged it three years.</VERS>\r\n      <VERS vnumber=\"6\">In the ninth year of Hoshea the king of Assyria took Samaria, and carried Israel away unto Assyria, and placed them in Halah, and on the Habor, the river of Gozan, and in the cities of the Medes.</VERS>\r\n      <VERS vnumber=\"7\">And it was so, because the children of Israel had sinned against Jehovah their God, who brought them up out of the land of Egypt from under the hand of Pharaoh king of Egypt, and had feared other gods,</VERS>\r\n      <VERS vnumber=\"8\">and walked in the statutes of the nations, whom Jehovah cast out from before the children of Israel, and of the kings of Israel, which they made.</VERS>\r\n      <VERS vnumber=\"9\">And the children of Israel did secretly things that were not right against Jehovah their God: and they built them high places in all their cities, from the tower of the watchmen to the fortified city;</VERS>\r\n      <VERS vnumber=\"10\">and they set them up pillars and Asherim upon every high hill, and under every green tree;</VERS>\r\n      <VERS vnumber=\"11\">and there they burnt incense in all the high places, as did the nations whom Jehovah carried away before them; and they wrought wicked things to provoke Jehovah to anger;</VERS>\r\n      <VERS vnumber=\"12\">and they served idols, whereof Jehovah had said unto them, Ye shall not do this thing.</VERS>\r\n      <VERS vnumber=\"13\">Yet Jehovah testified unto Israel, and unto Judah, by every prophet, and every seer, saying, Turn ye from your evil ways, and keep my commandments and my statutes, according to all the law which I commanded your fathers, and which I sent to you by my servants the prophets.</VERS>\r\n      <VERS vnumber=\"14\">Notwithstanding, they would not hear, but hardened their neck, like to the neck of their fathers, who believed not in Jehovah their God.</VERS>\r\n      <VERS vnumber=\"15\">And they rejected his statutes, and his covenant that he made with their fathers, and his testimonies which he testified unto them; and they followed vanity, and became vain, and [went] after the nations that were round about them, concerning whom Jehovah had charged them that they should not do like them.</VERS>\r\n      <VERS vnumber=\"16\">And they forsook all the commandments of Jehovah their God, and made them molten images, even two calves, and made an Asherah, and worshipped all the host of heaven, and served Baal.</VERS>\r\n      <VERS vnumber=\"17\">And they caused their sons and their daughters to pass through the fire, and used divination and enchantments, and sold themselves to do that which was evil in the sight of Jehovah, to provoke him to anger.</VERS>\r\n      <VERS vnumber=\"18\">Therefore Jehovah was very angry with Israel, and removed them out of his sight: there was none left but the tribe of Judah only.</VERS>\r\n      <VERS vnumber=\"19\">Also Judah kept not the commandments of Jehovah their God, but walked in the statutes of Israel which they made.</VERS>\r\n      <VERS vnumber=\"20\">And Jehovah rejected all the seed of Israel, and afflicted them, and delivered them into the hand of spoilers, until he had cast them out of his sight.</VERS>\r\n      <VERS vnumber=\"21\">For he rent Israel from the house of David; and they made Jeroboam the son of Nebat king: and Jeroboam drove Israel from following Jehovah, and made them sin a great sin.</VERS>\r\n      <VERS vnumber=\"22\">And the children of Israel walked in all the sins of Jeroboam which he did; they departed not from them;</VERS>\r\n      <VERS vnumber=\"23\">until Jehovah removed Israel out of his sight, as he spake by all his servants the prophets. So Israel was carried away out of their own land to Assyria unto this day.</VERS>\r\n      <VERS vnumber=\"24\">And the king of Assyria brought men from Babylon, and from Cuthah, and from Avva, and from Hamath and Sepharvaim, and placed them in the cities of Samaria instead of the children of Israel; and they possessed Samaria, and dwelt in the cities thereof.</VERS>\r\n      <VERS vnumber=\"25\">And so it was, at the beginning of their dwelling there, that they feared not Jehovah: therefore Jehovah sent lions among them, which killed some of them.</VERS>\r\n      <VERS vnumber=\"26\">Wherefore they spake to the king of Assyria, saying, The nations which thou hast carried away, and placed in the cities of Samaria, know not the law of the god of the land: therefore he hath sent lions among them, and, behold, they slay them, because they know not the law of the god of the land.</VERS>\r\n      <VERS vnumber=\"27\">Then the king of Assyria commanded, saying, Carry thither one of the priests whom ye brought from thence; and let them go and dwell there, and let him teach them the law of the god of the land.</VERS>\r\n      <VERS vnumber=\"28\">So one of the priests whom they had carried away from Samaria came and dwelt in Beth-el, and taught them how they should fear Jehovah.</VERS>\r\n      <VERS vnumber=\"29\">Howbeit every nation made gods of their own, and put them in the houses of the high places which the Samaritans had made, every nation in their cities wherein they dwelt.</VERS>\r\n      <VERS vnumber=\"30\">And the men of Babylon made Succoth-benoth, and the men of Cuth made Nergal, and the men of Hamath made Ashima,</VERS>\r\n      <VERS vnumber=\"31\">and the Avvites made Nibhaz and Tartak; and the Sepharvites burnt their children in the fire to Adrammelech and Anammelech, the gods of Sepharvaim.</VERS>\r\n      <VERS vnumber=\"32\">So they feared Jehovah, and made unto them from among themselves priests of the high places, who sacrificed for them in the houses of the high places.</VERS>\r\n      <VERS vnumber=\"33\">They feared Jehovah, and served their own gods, after the manner of the nations from among whom they had been carried away.</VERS>\r\n      <VERS vnumber=\"34\">Unto this day they do after the former manner: they fear not Jehovah, neither do they after their statutes, or after their ordinances, or after the law or after the commandment which Jehovah commanded the children of Jacob, whom he named Israel;</VERS>\r\n      <VERS vnumber=\"35\">with whom Jehovah had made a covenant, and charged them, saying, Ye shall not fear other gods, nor bow yourselves to them, nor serve them, nor sacrifice to them:</VERS>\r\n      <VERS vnumber=\"36\">but Jehovah, who brought you up out of the land of Egypt with great power and with an outstretched arm, him shall ye fear, and unto him shall ye bow yourselves, and to him shall ye sacrifice:</VERS>\r\n      <VERS vnumber=\"37\">and the statutes and the ordinances, and the law and the commandment, which he wrote for you, ye shall observe to do for evermore; and ye shall not fear other gods:</VERS>\r\n      <VERS vnumber=\"38\">and the covenant that I have made with you ye shall not forget; neither shall ye fear other gods:</VERS>\r\n      <VERS vnumber=\"39\">but Jehovah your God shall ye fear; and he will deliver you out of the hand of all your enemies.</VERS>\r\n      <VERS vnumber=\"40\">Howbeit they did not hearken, but they did after their former manner.</VERS>\r\n      <VERS vnumber=\"41\">So these nations feared Jehovah, and served their graven images; their children likewise, and their children`s children, as did their fathers, so do they unto this day.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"18\">\r\n      <VERS vnumber=\"1\">Now it came to pass in the third year of Hoshea son of Elah king of Israel, that Hezekiah the son of Ahaz king of Judah began to reign.</VERS>\r\n      <VERS vnumber=\"2\">Twenty and five years old was he when he began to reign; and he reigned twenty and nine years in Jerusalem: and his mother`s name was Abi the daughter of Zechariah.</VERS>\r\n      <VERS vnumber=\"3\">And he did that which was right in the eyes of Jehovah, according to all that David his father had done.</VERS>\r\n      <VERS vnumber=\"4\">He removed the high places, and brake the pillars, and cut down the Asherah: and he brake in pieces the brazen serpent that Moses had made; for unto those days the children of Israel did burn incense to it; and he called it Nehushtan.</VERS>\r\n      <VERS vnumber=\"5\">He trusted in Jehovah, the God of Israel; so that after him was none like him among all the kings of Judah, nor [among them] that were before him.</VERS>\r\n      <VERS vnumber=\"6\">For he clave to Jehovah; he departed not from following him, but kept his commandments, which Jehovah commanded Moses.</VERS>\r\n      <VERS vnumber=\"7\">And Jehovah was with him; whithersoever he went forth he prospered: and he rebelled against the king of Assyria, and served him not.</VERS>\r\n      <VERS vnumber=\"8\">He smote the Philistines unto Gaza and the borders thereof, from the tower of the watchmen to the fortified city.</VERS>\r\n      <VERS vnumber=\"9\">And it came to pass in the fourth year of king Hezekiah, which was the seventh year of Hoshea son of Elah king of Israel, that Shalmaneser king of Assyria came up against Samaria, and besieged it.</VERS>\r\n      <VERS vnumber=\"10\">And at the end of three years they took it: in the sixth year of Hezekiah, which was the ninth year of Hoshea king of Israel, Samaria was taken.</VERS>\r\n      <VERS vnumber=\"11\">And the king of Assyria carried Israel away unto Assyria, and put them in Halah, and on the Habor, the river of Gozan, and in the cities of the Medes,</VERS>\r\n      <VERS vnumber=\"12\">because they obeyed not the voice of Jehovah their God, but transgressed his covenant, even all that Moses the servant of Jehovah commanded, and would not hear it, nor do it.</VERS>\r\n      <VERS vnumber=\"13\">Now in the fourteenth year of king Hezekiah did Sennacherib king of Assyria come up against all the fortified cities of Judah, and took them.</VERS>\r\n      <VERS vnumber=\"14\">And Hezekiah king of Judah sent to the king of Assyria to Lachish, saying, I have offended; return from me: that which thou puttest on me will I bear. And the king of Assyria appointed unto Hezekiah king of Judah three hundred talents of silver and thirty talents of gold.</VERS>\r\n      <VERS vnumber=\"15\">And Hezekiah gave [him] all the silver that was found in the house of Jehovah, and in the treasures of the king`s house.</VERS>\r\n      <VERS vnumber=\"16\">At that time did Hezekiah cut off [the gold from] the doors of the temple of Jehovah, and [from] the pillars which Hezekiah king of Judah had overlaid, and gave it to the king of Assyria.</VERS>\r\n      <VERS vnumber=\"17\">And the king of Assyria sent Tartan and Rab-saris and Rabshakeh from Lachish to king Hezekiah with a great army unto Jerusalem. And they went up and came to Jerusalem. And when they were come up, they came and stood by the conduit of the upper pool, which is in the highway of the fuller`s field.</VERS>\r\n      <VERS vnumber=\"18\">And when they had called to the king, there came out to them Eliakim the son of Hilkiah, who was over the household, and Shebnah the scribe, and Joah the son of Asaph the recorder.</VERS>\r\n      <VERS vnumber=\"19\">And 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?</VERS>\r\n      <VERS vnumber=\"20\">Thou sayest (but they are but vain words), [There is] counsel and strength for the war. Now on whom dost thou trust, that thou hast rebelled against me?</VERS>\r\n      <VERS vnumber=\"21\">Now, behold, thou trustest upon the staff of this bruised reed, even upon Egypt; whereon if a man lean, it will go into his hand, and pierce it: so is Pharaoh king of Egypt unto all that trust on him.</VERS>\r\n      <VERS vnumber=\"22\">But if ye say unto me, We trust in Jehovah our God; is not that he, whose high places and whose altars Hezekiah hath taken away, and hath said to Judah and to Jerusalem, Ye shall worship before this altar in Jerusalem?</VERS>\r\n      <VERS vnumber=\"23\">Now therefore, I pray thee, give pledges 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.</VERS>\r\n      <VERS vnumber=\"24\">How then canst 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?</VERS>\r\n      <VERS vnumber=\"25\">Am I now come up without Jehovah against this place to destroy it? Jehovah said unto me, Go up against this land, and destroy it.</VERS>\r\n      <VERS vnumber=\"26\">Then said Eliakim the son of Hilkiah, and Shebnah, and Joah, unto Rabshakeh, Speak, I pray thee, to thy servants in the Syrian language; for we understand it: and speak not with us in the Jews` language, in the ears of the people that are on the wall.</VERS>\r\n      <VERS vnumber=\"27\">But Rabshakeh said unto them, 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 on the wall, to eat their own dung, and to drink their own water with you?</VERS>\r\n      <VERS vnumber=\"28\">Then Rabshakeh stood, and cried with a loud voice in the Jews` language, and spake, saying, Hear ye the word of the great king, the king of Assyria.</VERS>\r\n      <VERS vnumber=\"29\">Thus saith the king, Let not Hezekiah deceive you; for he will not be able to deliver you out of his hand:</VERS>\r\n      <VERS vnumber=\"30\">neither let Hezekiah make you trust in Jehovah, saying, Jehovah will surely deliver us, and this city shall not be given into the hand of the king of Assyria.</VERS>\r\n      <VERS vnumber=\"31\">Hearken not to Hezekiah: for thus saith the king of Assyria, Make your peace with me, 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;</VERS>\r\n      <VERS vnumber=\"32\">Until I come and take you away to a land like your own land, a land of grain and new wine, a land of bread and vineyards, a land of olive-trees and of honey, that ye may live, and not die: and hearken not unto Hezekiah, when he persuadeth you, saying, Jehovah will deliver us.</VERS>\r\n      <VERS vnumber=\"33\">Hath any of the gods of the nations ever delivered his land out of the hand of the king of Assyria?</VERS>\r\n      <VERS vnumber=\"34\">Where are the gods of Hamath, and of Arpad? where are the gods of Sepharvaim, of Hena, and Ivvah? have they delivered Samaria out of my hand?</VERS>\r\n      <VERS vnumber=\"35\">Who are they among all the gods of the countries, that have delivered their country out of my hand, that Jehovah should deliver Jerusalem out of my hand?</VERS>\r\n      <VERS vnumber=\"36\">But the people held their peace, and answered him not a word; for the king`s commandment was, saying, Answer him not.</VERS>\r\n      <VERS vnumber=\"37\">Then came Eliakim the son of Hilkiah, who 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"19\">\r\n      <VERS vnumber=\"1\">And 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 Jehovah.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And they said unto him, Thus saith Hezekiah, This day is a day of trouble, and of rebuke, and of contumely; for the children are come to the birth, and there is not strength to bring forth.</VERS>\r\n      <VERS vnumber=\"4\">It may be Jehovah thy God will hear all the words of Rabshakeh, whom the king of Assyria his master hath sent to defy the living God, and will rebuke the words which Jehovah thy God hath heard: wherefore lift up thy prayer for the remnant that is left.</VERS>\r\n      <VERS vnumber=\"5\">So the servants of king Hezekiah came to Isaiah.</VERS>\r\n      <VERS vnumber=\"6\">And Isaiah said unto them, Thus shall ye say to your master, Thus saith Jehovah, Be not afraid of the words that thou hast heard, wherewith the servants of the king of Assyria have blasphemed me.</VERS>\r\n      <VERS vnumber=\"7\">Behold, I will put a spirit in him, and he shall hear tidings, and shall return to his own land; and I will cause him to fall by the sword in his own land.</VERS>\r\n      <VERS vnumber=\"8\">So Rabshakeh returned, and found the king of Assyria warring against Libnah; for he had heard that he was departed from Lachish.</VERS>\r\n      <VERS vnumber=\"9\">And when he heard say of Tirhakah king of Ethiopia, Behold, he is come out to fight against thee, he sent messengers again unto Hezekiah, saying,</VERS>\r\n      <VERS vnumber=\"10\">Thus 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.</VERS>\r\n      <VERS vnumber=\"11\">Behold, thou hast heard what the kings of Assyria have done to all lands, by destroying them utterly: and shalt thou be delivered?</VERS>\r\n      <VERS vnumber=\"12\">Have the gods of the nations delivered them, which my fathers have destroyed, Gozan, and Haran, and Rezeph, and the children of Eden that were in Telassar?</VERS>\r\n      <VERS vnumber=\"13\">Where is the king of Hamath, and the king of Arpad, and the king of the city of Sepharvaim, of Hena, and Ivvah?</VERS>\r\n      <VERS vnumber=\"14\">And Hezekiah received the letter from the hand of the messengers, and read it; and Hezekiah went up unto the house of Jehovah, and spread it before Jehovah.</VERS>\r\n      <VERS vnumber=\"15\">And Hezekiah prayed before Jehovah, and said, O Jehovah, the God of Israel, that sittest [above] the cherubim, thou art the God, even thou alone, of all the kingdoms of the earth; thou hast made heaven and earth.</VERS>\r\n      <VERS vnumber=\"16\">Incline thine ear, O Jehovah, and hear; open thine eyes, O Jehovah, and see; and hear the words of Sennacherib, wherewith he hath sent him to defy the living God.</VERS>\r\n      <VERS vnumber=\"17\">Of a truth, Jehovah, the kings of Assyria have laid waste the nations and their lands,</VERS>\r\n      <VERS vnumber=\"18\">and 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.</VERS>\r\n      <VERS vnumber=\"19\">Now therefore, O Jehovah our God, save thou us, I beseech thee, out of his hand, that all the kingdoms of the earth may know that thou Jehovah art God alone.</VERS>\r\n      <VERS vnumber=\"20\">Then Isaiah the son of Amoz sent to Hezekiah, saying, Thus saith Jehovah, the God of Israel, Whereas thou hast prayed to me against Sennacherib king of Assyria, I have heard [thee].</VERS>\r\n      <VERS vnumber=\"21\">This is the word that Jehovah hath spoken concerning him: The virgin daughter of Zion hath despised thee and laughed thee to scorn; the daughter of Jerusalem hath shaken her head at thee.</VERS>\r\n      <VERS vnumber=\"22\">Whom hast thou defied and blasphemed? and against whom hast thou exalted thy voice and lifted up thine eyes on high? [even] against the Holy One of Israel.</VERS>\r\n      <VERS vnumber=\"23\">By thy messengers thou hast defied the Lord, and hast said, With the multitude of my chariots am I come up to the height of the mountains, to the innermost parts of Lebanon; and I will cut down the tall cedars thereof, and the choice fir-trees thereof; and I will enter into his farthest lodging-place, the forest of his fruitful field.</VERS>\r\n      <VERS vnumber=\"24\">I have digged and drunk strange waters, and with the sole of my feet will I dry up all the rivers of Egypt.</VERS>\r\n      <VERS vnumber=\"25\">Hast thou not heard how I have done it long ago, and formed it of ancient times? now have I brought it to pass, that it should be thine to lay waste fortified cities into ruinous heaps.</VERS>\r\n      <VERS vnumber=\"26\">Therefore 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 grain blasted before it is grown up.</VERS>\r\n      <VERS vnumber=\"27\">But I know thy sitting down, and thy going out, and thy coming in, and thy raging against me.</VERS>\r\n      <VERS vnumber=\"28\">Because of thy raging against me, and because thine arrogancy 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.</VERS>\r\n      <VERS vnumber=\"29\">And this shall be the sign unto thee: Ye shall eat this year that which groweth of itself, and in 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.</VERS>\r\n      <VERS vnumber=\"30\">And the remnant that is escaped of the house of Judah shall again take root downward, and bear fruit upward.</VERS>\r\n      <VERS vnumber=\"31\">For out of Jerusalem shall go forth a remnant, and out of mount Zion they that shall escape: the zeal of Jehovah shall perform this.</VERS>\r\n      <VERS vnumber=\"32\">Therefore thus saith Jehovah concerning the king of Assyria, He shall not come unto this city, nor shoot an arrow there, neither shall he come before it with shield, nor cast up a mound against it.</VERS>\r\n      <VERS vnumber=\"33\">By the way that he came, by the same shall he return, and he shall not come unto this city, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"34\">For I will defend this city to save it, for mine own sake, and for my servant David`s sake.</VERS>\r\n      <VERS vnumber=\"35\">And it came to pass that night, that the angel of Jehovah went forth, and smote in the camp of the Assyrians a hundred fourscore and five thousand: and when men arose early in the morning, behold, these were all dead bodies.</VERS>\r\n      <VERS vnumber=\"36\">So Sennacherib king of Assyria departed, and went and returned, and dwelt at Nineveh.</VERS>\r\n      <VERS vnumber=\"37\">And it came to pass, as he was worshipping in the house of Nisroch his god, that Adrammelech and Sharezer smote him with the sword: and they escaped into the land of Ararat. And Esar-haddon his son reigned in his stead.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"20\">\r\n      <VERS vnumber=\"1\">In those days was Hezekiah sick unto death. And Isaiah the prophet the son of Amoz came to him, and said unto him, Thus saith Jehovah, Set thy house in order: for thou shalt die, and not live.</VERS>\r\n      <VERS vnumber=\"2\">Then he turned his face to the wall, and prayed unto Jehovah, saying,</VERS>\r\n      <VERS vnumber=\"3\">Remember now, O Jehovah, 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.</VERS>\r\n      <VERS vnumber=\"4\">And it came to pass, before Isaiah was gone out into the middle part of the city, that the word of Jehovah came to him, saying,</VERS>\r\n      <VERS vnumber=\"5\">Turn back, and say to Hezekiah the prince of my people, Thus saith Jehovah, the God of David thy father, I have heard thy prayer, I have seen thy tears: behold, I will heal thee; on the third day thou shalt go up unto the house of Jehovah.</VERS>\r\n      <VERS vnumber=\"6\">And I will add unto thy days fifteen years; and I will deliver thee and this city out of the hand of the king of Assyria; and I will defend this city for mine own sake, and for my servant David`s sake.</VERS>\r\n      <VERS vnumber=\"7\">And Isaiah said, Take a cake of figs. And they took and laid it on the boil, and he recovered.</VERS>\r\n      <VERS vnumber=\"8\">And Hezekiah said unto Isaiah, What shall be the sign that Jehovah will heal me, and that I shall go up unto the house of Jehovah the third day?</VERS>\r\n      <VERS vnumber=\"9\">And Isaiah said, This shall be the sign unto thee from Jehovah, that Jehovah will do the thing that he hath spoken: shall the shadow go forward ten steps, or go back ten steps?</VERS>\r\n      <VERS vnumber=\"10\">And Hezekiah answered, It is a light thing for the shadow to decline ten steps: nay, but let the shadow return backward ten steps.</VERS>\r\n      <VERS vnumber=\"11\">And Isaiah the prophet cried unto Jehovah; and he brought the shadow ten steps backward, by which it had gone down on the dial of Ahaz.</VERS>\r\n      <VERS vnumber=\"12\">At that time Berodach-baladan the son of Baladan, king of Babylon, sent letters and a present unto Hezekiah; for he had heard that Hezekiah had been sick.</VERS>\r\n      <VERS vnumber=\"13\">And Hezekiah hearkened unto them, and showed them all the house of his precious things, the silver, and the gold, and the spices, and the precious oil, and the house of his armor, and all that was found in his treasures: there was nothing in his house, nor in all his dominion, that Hezekiah showed them not.</VERS>\r\n      <VERS vnumber=\"14\">Then 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, even from Babylon.</VERS>\r\n      <VERS vnumber=\"15\">And he said, What have they seen in thy house? And Hezekiah answered, All that is in my house have they seen: there is nothing among my treasures that I have not showed them.</VERS>\r\n      <VERS vnumber=\"16\">And Isaiah said unto Hezekiah, Hear the word of Jehovah.</VERS>\r\n      <VERS vnumber=\"17\">Behold, the days come, that all that is in thy house, and that which thy fathers have laid up in store unto this day, shall be carried to Babylon: nothing shall be left, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"18\">And of thy sons that shall issue from thee, whom thou shalt beget, shall they take away; and they shall be eunuchs in the palace of the king of Babylon.</VERS>\r\n      <VERS vnumber=\"19\">Then said Hezekiah unto Isaiah, Good is the word of Jehovah which thou hast spoken. He said moreover, Is it not so, if peace and truth shall be in my days?</VERS>\r\n      <VERS vnumber=\"20\">Now the rest of the acts of Hezekiah, and all his might, and how he made the pool, and the conduit, and brought water into the city, are they not written in the book of the chronicles of the kings of Judah?</VERS>\r\n      <VERS vnumber=\"21\">And Hezekiah slept with his fathers; and Manasseh his son reigned in his stead.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"21\">\r\n      <VERS vnumber=\"1\">Manasseh was twelve years old when he began to reign; and he reigned five and fifty years in Jerusalem: and his mother`s name was Hephzibah.</VERS>\r\n      <VERS vnumber=\"2\">And he did that which was evil in the sight of Jehovah, after the abominations of the nations whom Jehovah cast out before the children of Israel.</VERS>\r\n      <VERS vnumber=\"3\">For he built again the high places which Hezekiah his father had destroyed; and he reared up altars for Baal, and made an Asherah, as did Ahab king of Israel, and worshipped all the host of heaven, and served them.</VERS>\r\n      <VERS vnumber=\"4\">And he built altars in the house of Jehovah, whereof Jehovah said, In Jerusalem will I put my name.</VERS>\r\n      <VERS vnumber=\"5\">And he built altars for all the host of heaven in the two courts of the house of Jehovah.</VERS>\r\n      <VERS vnumber=\"6\">And he made his son to pass through the fire, and practised augury, and used enchantments, and dealt with them that had familiar spirits, and with wizards: he wrought much evil in the sight of Jehovah, to provoke him to anger.</VERS>\r\n      <VERS vnumber=\"7\">And he set the graven image of Asherah, that he had made, in the house of which Jehovah said to David and to Solomon his son, In this house, and in Jerusalem, which I have chosen out of all the tribes of Israel, will I put my name for ever;</VERS>\r\n      <VERS vnumber=\"8\">neither will I cause the feet of Israel to wander any more out of the land which I gave their fathers, if only they will observe to do according to all that I have commanded them, and according to all the law that my servant Moses commanded them.</VERS>\r\n      <VERS vnumber=\"9\">But they hearkened not: and Manasseh seduced them to do that which is evil more than did the nations whom Jehovah destroyed before the children of Israel.</VERS>\r\n      <VERS vnumber=\"10\">And Jehovah spake by his servants the prophets, saying,</VERS>\r\n      <VERS vnumber=\"11\">Because Manasseh king of Judah hath done these abominations, and hath done wickedly above all that the Amorites did, that were before him, and hath made Judah also to sin with his idols;</VERS>\r\n      <VERS vnumber=\"12\">therefore thus saith Jehovah, the God of Israel, Behold, I bring such evil upon Jerusalem and Judah, that whosoever heareth of it, both his ears shall tingle.</VERS>\r\n      <VERS vnumber=\"13\">And I will stretch over Jerusalem the line of Samaria, and the plummet of the house of Ahab; and I will wipe Jerusalem as a man wipeth a dish, wiping it and turning it upside down.</VERS>\r\n      <VERS vnumber=\"14\">And I will cast off the remnant of mine inheritance, and deliver them into the hand of their enemies; and they shall become a prey and a spoil to all their enemies;</VERS>\r\n      <VERS vnumber=\"15\">because they have done that which is evil in my sight, and have provoked me to anger, since the day their fathers came forth out of Egypt, even unto this day.</VERS>\r\n      <VERS vnumber=\"16\">Moreover Manasseh shed innocent blood very much, till he had filled Jerusalem from one end to another; besides his sin wherewith he made Judah to sin, in doing that which was evil in the sight of Jehovah.</VERS>\r\n      <VERS vnumber=\"17\">Now the rest of the acts of Manasseh, and all that he did, and his sin that he sinned, are they not written in the book of the chronicles of the kings of Judah?</VERS>\r\n      <VERS vnumber=\"18\">And Manasseh slept with his fathers, and was buried in the garden of his own house, in the garden of Uzza: and Amon his son reigned in his stead.</VERS>\r\n      <VERS vnumber=\"19\">Amon was twenty and two years old when he began to reign; and he reigned two years in Jerusalem: and his mother`s name was Meshullemeth the daughter of Haruz of Jotbah.</VERS>\r\n      <VERS vnumber=\"20\">And he did that which was evil in the sight of Jehovah, as did Manasseh his father.</VERS>\r\n      <VERS vnumber=\"21\">And he walked in all the way that his father walked in, and served the idols that his father served, and worshipped them:</VERS>\r\n      <VERS vnumber=\"22\">and he forsook Jehovah, the God of his fathers, and walked not in the way of Jehovah.</VERS>\r\n      <VERS vnumber=\"23\">And the servants of Amon conspired against him, and put the king to death in his own house.</VERS>\r\n      <VERS vnumber=\"24\">But 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.</VERS>\r\n      <VERS vnumber=\"25\">Now the rest of the acts of Amon which he did, are they not written in the book of the chronicles of the kings of Judah?</VERS>\r\n      <VERS vnumber=\"26\">And he was buried in his sepulchre in the garden of Uzza: and Josiah his son reigned in his stead.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"22\">\r\n      <VERS vnumber=\"1\">Josiah was eight years old when he began to reign; and he reigned thirty and one years in Jerusalem: and his mother`s name was Jedidah the daughter of Adaiah of Bozkath.</VERS>\r\n      <VERS vnumber=\"2\">And he did that which was right in the eyes of Jehovah, and walked in all the way of David his father, and turned not aside to the right hand or to the left.</VERS>\r\n      <VERS vnumber=\"3\">And it came to pass in the eighteenth year of king Josiah, that the king sent Shaphan, the son of Azaliah the son of Meshullam, the scribe, to the house of Jehovah, saying,</VERS>\r\n      <VERS vnumber=\"4\">Go up to Hilkiah the high priest, that he may sum the money which is brought into the house of Jehovah, which the keepers of the threshold have gathered of the people:</VERS>\r\n      <VERS vnumber=\"5\">and let them deliver it into the hand of the workmen that have the oversight of the house of Jehovah; and let them give it to the workmen that are in the house of Jehovah, to repair the breaches of the house,</VERS>\r\n      <VERS vnumber=\"6\">unto the carpenters, and to the builders, and to the masons, and for buying timber and hewn stone to repair the house.</VERS>\r\n      <VERS vnumber=\"7\">Howbeit there was no reckoning made with them of the money that was delivered into their hand; for they dealt faithfully.</VERS>\r\n      <VERS vnumber=\"8\">And Hilkiah the high priest said unto Shaphan the scribe, I have found the book of the law in the house of Jehovah. And Hilkiah delivered the book to Shaphan, and he read it.</VERS>\r\n      <VERS vnumber=\"9\">And Shaphan the scribe came to the king, and brought the king word again, and said, Thy servants have emptied out the money that was found in the house, and have delivered it into the hand of the workmen that have the oversight of the house of Jehovah.</VERS>\r\n      <VERS vnumber=\"10\">And Shaphan the scribe told the king, saying, Hilkiah the priest hath delivered me a book. And Shaphan read it before the king.</VERS>\r\n      <VERS vnumber=\"11\">And it came to pass, when the king had heard the words of the book of the law, that he rent his clothes.</VERS>\r\n      <VERS vnumber=\"12\">And the king commanded Hilkiah the priest, and Ahikam the son of Shaphan, and Achbor the son of Micaiah, and Shaphan the scribe, and Asaiah the king`s servant, saying,</VERS>\r\n      <VERS vnumber=\"13\">Go ye, inquire of Jehovah for me, and for the people, and for all Judah, concerning the words of this book that is found; for great is the wrath of Jehovah that is kindled against us, because our fathers have not hearkened unto the words of this book, to do according unto all that which is written concerning us.</VERS>\r\n      <VERS vnumber=\"14\">So Hilkiah the priest, and Ahikam, and Achbor, and Shaphan, and Asaiah, went unto Huldah the prophetess, the wife of Shallum the son of Tikvah, the son of Harhas, keeper of the wardrobe (now she dwelt in Jerusalem in the second quarter); and they communed with her.</VERS>\r\n      <VERS vnumber=\"15\">And she said unto them, Thus saith Jehovah, the God of Israel: Tell ye the man that sent you unto me,</VERS>\r\n      <VERS vnumber=\"16\">Thus saith Jehovah, Behold, I will bring evil upon this place, and upon the inhabitants thereof, even all the words of the book which the king of Judah hath read.</VERS>\r\n      <VERS vnumber=\"17\">Because they have forsaken me, and have burned incense unto other gods, that they might provoke me to anger with all the work of their hands, therefore my wrath shall be kindled against this place, and it shall not be quenched.</VERS>\r\n      <VERS vnumber=\"18\">But unto the king of Judah, who sent you to inquire of Jehovah, thus shall ye say to him, Thus saith Jehovah, the God of Israel: As touching the words which thou hast heard,</VERS>\r\n      <VERS vnumber=\"19\">because thy heart was tender, and thou didst humble thyself before Jehovah, when thou heardest what I spake against this place, and against the inhabitants thereof, that they should become a desolation and a curse, and hast rent thy clothes, and wept before me; I also have heard thee, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"20\">Therefore, behold, 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 which I will bring upon this place. And they brought the king word again.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"23\">\r\n      <VERS vnumber=\"1\">And the king sent, and they gathered unto him all the elders of Judah and of Jerusalem.</VERS>\r\n      <VERS vnumber=\"2\">And the king went up to the house of Jehovah, and all the men of Judah and all the inhabitants of Jerusalem with him, and the priests, and the prophets, and all the people, both small and great: and he read in their ears all the words of the book of the covenant which was found in the house of Jehovah.</VERS>\r\n      <VERS vnumber=\"3\">And the king stood by the pillar, and made a covenant before Jehovah, to walk after Jehovah, and to keep his commandments, and his testimonies, and his statutes, with all [his] heart, and all [his] soul, to confirm the words of this covenant that were written in this book: and all the people stood to the covenant.</VERS>\r\n      <VERS vnumber=\"4\">And the king commanded Hilkiah the high priest, and the priests of the second order, and the keepers of the threshold, to bring forth out of the temple of Jehovah all the vessels that were made for Baal, and for the Asherah, and for all the host of heaven, and he burned them without Jerusalem in the fields of the Kidron, and carried the ashes of them unto Beth-el.</VERS>\r\n      <VERS vnumber=\"5\">And he put down the idolatrous priests, whom the kings of Judah had ordained to burn incense in the high places in the cities of Judah, and in the places round about Jerusalem; them also that burned incense unto Baal, to the sun, and to the moon, and to the planets, and to all the host of heaven.</VERS>\r\n      <VERS vnumber=\"6\">And he brought out the Asherah from the house of Jehovah, without Jerusalem, unto the brook Kidron, and burned it at the brook Kidron, and beat it to dust, and cast the dust thereof upon the graves of the common people.</VERS>\r\n      <VERS vnumber=\"7\">And he brake down the houses of the sodomites, that were in the house of Jehovah, where the women wove hangings for the Asherah.</VERS>\r\n      <VERS vnumber=\"8\">And he brought all the priests out of the cities of Judah, and defiled the high places where the priests had burned incense, from Geba to Beer-sheba; and he brake down the high places of the gates that were at the entrance of the gate of Joshua the governor of the city, which were on a man`s left hand at the gate of the city.</VERS>\r\n      <VERS vnumber=\"9\">Nevertheless the priests of the high places came not up to the altar of Jehovah in Jerusalem, but they did eat unleavened bread among their brethren.</VERS>\r\n      <VERS vnumber=\"10\">And he defiled Topheth, which is in the valley of the children of Hinnom, that no man might make his son or his daughter to pass through the fire to Molech.</VERS>\r\n      <VERS vnumber=\"11\">And he took away the horses that the kings of Judah had given to the sun, at the entrance of the house of Jehovah, by the chamber of Nathan-melech the chamberlain, which was in the precincts; and he burned the chariots of the sun with fire.</VERS>\r\n      <VERS vnumber=\"12\">And the altars that were on the roof of the upper chamber of Ahaz, which the kings of Judah had made, and the altars which Manasseh had made in the two courts of the house of Jehovah, did the king break down, and beat [them] down from thence, and cast the dust of them into the brook Kidron.</VERS>\r\n      <VERS vnumber=\"13\">And the high places that were before Jerusalem, which were on the right hand of the mount of corruption, which Solomon the king of Israel had builded for Ashtoreth the abomination of the Sidonians, and for Chemosh the abomination of Moab, and for Milcom the abomination of the children of Ammon, did the king defile.</VERS>\r\n      <VERS vnumber=\"14\">And he brake in pieces the pillars, and cut down the Asherim, and filled their places with the bones of men.</VERS>\r\n      <VERS vnumber=\"15\">Moreover the altar that was at Beth-el, and the high place which Jeroboam the son of Nebat, who made Israel to sin, had made, even that altar and the high place he brake down; and he burned the high place and beat it to dust, and burned the Asherah.</VERS>\r\n      <VERS vnumber=\"16\">And as Josiah turned himself, he spied the sepulchres that were there in the mount; and he sent, and took the bones out of the sepulchres, and burned them upon the altar, and defiled it, according to the word of Jehovah which the man of God proclaimed, who proclaimed these things.</VERS>\r\n      <VERS vnumber=\"17\">Then he said, What monument is that which I see? And the men of the city told him, It is the sepulchre of the man of God, who came from Judah, and proclaimed these things that thou hast done against the altar of Beth-el.</VERS>\r\n      <VERS vnumber=\"18\">And he said, Let him be; let no man move his bones. So they let his bones alone, with the bones of the prophet that came out of Samaria.</VERS>\r\n      <VERS vnumber=\"19\">And all the houses also of the high places that were in the cities of Samaria, which the kings of Israel had made to provoke [Jehovah] to anger, Josiah took away, and did to them according to all the acts that he had done in Beth-el.</VERS>\r\n      <VERS vnumber=\"20\">And he slew all the priests of the high places that were there, upon the altars, and burned men`s bones upon them; and he returned to Jerusalem.</VERS>\r\n      <VERS vnumber=\"21\">And the king commanded all the people, saying, Keep the passover unto Jehovah your God, as it is written in this book of the covenant.</VERS>\r\n      <VERS vnumber=\"22\">Surely there was not kept such a passover from the days of the judges that judged Israel, nor in all the days of the kings of Israel, nor of the kings of Judah;</VERS>\r\n      <VERS vnumber=\"23\">but in the eighteenth year of king Josiah was this passover kept to Jehovah in Jerusalem.</VERS>\r\n      <VERS vnumber=\"24\">Moreover them that had familiar spirits, and the wizards, and the teraphim, and the idols, and all the abominations that were seen in the land of Judah and in Jerusalem, did Josiah put away, that he might confirm the words of the law which were written in the book that Hilkiah the priest found in the house of Jehovah.</VERS>\r\n      <VERS vnumber=\"25\">And like unto him was there no king before him, that turned to Jehovah with all his heart, and with all his soul, and with all his might, according to all the law of Moses; neither after him arose there any like him.</VERS>\r\n      <VERS vnumber=\"26\">Notwithstanding, Jehovah turned not from the fierceness of his great wrath, wherewith his anger was kindled against Judah, because of all the provocations wherewith Manasseh had provoked him.</VERS>\r\n      <VERS vnumber=\"27\">And Jehovah said, I will remove Judah also out of my sight, as I have removed Israel, and I will cast off this city which I have chosen, even Jerusalem, and the house of which I said, My name shall be there.</VERS>\r\n      <VERS vnumber=\"28\">Now the rest of the acts of Josiah, and all that he did, are they not written in the book of the chronicles of the kings of Judah?</VERS>\r\n      <VERS vnumber=\"29\">In his days Pharaoh-necoh king of Egypt went up against the king of Assyria to the river Euphrates: and king Josiah went against him; and [Pharaoh-necoh] slew him at Megiddo, when he had seen him.</VERS>\r\n      <VERS vnumber=\"30\">And his servants carried him in a chariot dead from Megiddo, and brought him to Jerusalem, and buried him in his own sepulchre. And the people of the land took Jehoahaz the son of Josiah, and anointed him, and made him king in his father`s stead.</VERS>\r\n      <VERS vnumber=\"31\">Jehoahaz was twenty and three years old when he began to reign; and he reigned three months in Jerusalem: and his mother`s name was Hamutal the daughter of Jeremiah of Libnah.</VERS>\r\n      <VERS vnumber=\"32\">And he did that which was evil in the sight of Jehovah, according to all that his fathers had done.</VERS>\r\n      <VERS vnumber=\"33\">And Pharaoh-necoh put him in bonds at Riblah in the land of Hamath, that he might not reign in Jerusalem; and put the land to a tribute of a hundred talents of silver, and a talent of gold.</VERS>\r\n      <VERS vnumber=\"34\">And Pharaoh-necoh made Eliakim the son of Josiah king in the room of Josiah his father, and changed his name to Jehoiakim: but he took Jehoahaz away; and he came to Egypt, and died there.</VERS>\r\n      <VERS vnumber=\"35\">And Jehoiakim gave the silver and the gold to Pharaoh; but he taxed the land to give the money according to the commandment of Pharaoh: he exacted the silver and the gold of the people of the land, of every one according to his taxation, to give it unto Pharaoh-necoh.</VERS>\r\n      <VERS vnumber=\"36\">Jehoiakim was twenty and five years old when he began to reign; and he reigned eleven years in Jerusalem: and his mother`s name was Zebidah the daughter of Pedaiah of Rumah.</VERS>\r\n      <VERS vnumber=\"37\">And he did that which was evil in the sight of Jehovah, according to all that his fathers had done.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"24\">\r\n      <VERS vnumber=\"1\">In his days Nebuchadnezzar king of Babylon came up, and Jehoiakim became his servant three years: then he turned and rebelled against him.</VERS>\r\n      <VERS vnumber=\"2\">And Jehovah sent against him bands of the Chaldeans, and bands of the Syrians, and bands of the Moabites, and bands of the children of Ammon, and sent them against Judah to destroy it, according to the word of Jehovah, which he spake by his servants the prophets.</VERS>\r\n      <VERS vnumber=\"3\">Surely at the commandment of Jehovah came this upon Judah, to remove them out of his sight, for the sins of Manasseh, according to all that he did,</VERS>\r\n      <VERS vnumber=\"4\">and also for the innocent blood that he shed; for he filled Jerusalem with innocent blood: and Jehovah would not pardon.</VERS>\r\n      <VERS vnumber=\"5\">Now the rest of the acts of Jehoiakim, and all that he did, are they not written in the book of the chronicles of the kings of Judah?</VERS>\r\n      <VERS vnumber=\"6\">So Jehoiakim slept with his fathers; and Jehoiachin his son reigned in his stead.</VERS>\r\n      <VERS vnumber=\"7\">And the king of Egypt came not again any more out of his land; for the king of Babylon had taken, from the brook of Egypt unto the river Euphrates, all that pertained to the king of Egypt.</VERS>\r\n      <VERS vnumber=\"8\">Jehoiachin was eighteen years old when he began to reign; and he reigned in Jerusalem three months: and his mother`s name was Nehushta the daughter of Elnathan of Jerusalem.</VERS>\r\n      <VERS vnumber=\"9\">And he did that which was evil in the sight of Jehovah, according to all that his father had done.</VERS>\r\n      <VERS vnumber=\"10\">At that time the servants of Nebuchadnezzar king of Babylon came up to Jerusalem, and the city was besieged.</VERS>\r\n      <VERS vnumber=\"11\">And Nebuchadnezzar king of Babylon came unto the city, while his servants were besieging it;</VERS>\r\n      <VERS vnumber=\"12\">and Jehoiachin the king of Judah went out to the king of Babylon, he, and his mother, and his servants, and his princes, and his officers: and the king of Babylon took him in the eighth year of his reign.</VERS>\r\n      <VERS vnumber=\"13\">And he carried out thence all the treasures of the house of Jehovah, and the treasures of the king`s house, and cut in pieces all the vessels of gold, which Solomon king of Israel had made in the temple of Jehovah, as Jehovah had said.</VERS>\r\n      <VERS vnumber=\"14\">And he carried away all Jerusalem, and all the princes, and all the mighty men of valor, even ten thousand captives, and all the craftsmen and the smiths; none remained, save the poorest sort of the people of the land.</VERS>\r\n      <VERS vnumber=\"15\">And he carried away Jehoiachin to Babylon; and the king`s mother, and the king`s wives, and his officers, and the chief men of the land, carried he into captivity from Jerusalem to Babylon.</VERS>\r\n      <VERS vnumber=\"16\">And all the men of might, even seven thousand, and the craftsmen and the smiths a thousand, all of them strong and apt for war, even them the king of Babylon brought captive to Babylon.</VERS>\r\n      <VERS vnumber=\"17\">And the king of Babylon made Mattaniah, [Jehoiachin`s] father`s brother, king is his stead, and changed his name to Zedekiah.</VERS>\r\n      <VERS vnumber=\"18\">Zedekiah was twenty and one 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.</VERS>\r\n      <VERS vnumber=\"19\">And he did that which was evil in the sight of Jehovah, according to all that Jehoiakim had done.</VERS>\r\n      <VERS vnumber=\"20\">For through the anger of Jehovah did it come to pass in Jerusalem and Judah, until he had cast them out from his presence. And Zedekiah rebelled against the king of Babylon.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"25\">\r\n      <VERS vnumber=\"1\">And it came to pass in the ninth year of his reign, in the tenth month, in the tenth day of the month, that Nebuchadnezzar king of Babylon came, he and all his army, against Jerusalem, and encamped against it; and they built forts against it round about.</VERS>\r\n      <VERS vnumber=\"2\">So the city was besieged unto the eleventh year of king Zedekiah.</VERS>\r\n      <VERS vnumber=\"3\">On the ninth day of the [fourth] month the famine was sore in the city, so that there was no bread for the people of the land.</VERS>\r\n      <VERS vnumber=\"4\">Then a breach was made in the city, and all the men of war [fled] by night by the way of the gate between the two walls, which was by the king`s garden (now the Chaldeans were against the city round about); and [the king] went by the way of the Arabah.</VERS>\r\n      <VERS vnumber=\"5\">But the army of the Chaldeans pursued after the king, and overtook him in the plains of Jericho; and all his army was scattered from him.</VERS>\r\n      <VERS vnumber=\"6\">Then they took the king, and carried him up unto the king of Babylon to Riblah; and they gave judgment upon him.</VERS>\r\n      <VERS vnumber=\"7\">And they slew the sons of Zedekiah before his eyes, and put out the eyes of Zedekiah, and bound him in fetters, and carried him to Babylon.</VERS>\r\n      <VERS vnumber=\"8\">Now in the fifth month, on the seventh day of the month, which was the nineteenth year of king Nebuchadnezzar, king of Babylon, came Nebuzaradan the captain of the guard, a servant of the king of Babylon, unto Jerusalem.</VERS>\r\n      <VERS vnumber=\"9\">And he burnt the house of Jehovah, and the king`s house; and all the houses of Jerusalem, even every great house, burnt he with fire.</VERS>\r\n      <VERS vnumber=\"10\">And all the army of the Chaldeans, that were [with] the captain of the guard, brake down the walls of Jerusalem round about.</VERS>\r\n      <VERS vnumber=\"11\">And the residue of the people that were left in the city, and those that fell away, that fell to the king of Babylon, and the residue of the multitude, did Nebuzaradan the captain of the guard carry away captive.</VERS>\r\n      <VERS vnumber=\"12\">But the captain of the guard left of the poorest of the land to be vinedressers and husbandmen.</VERS>\r\n      <VERS vnumber=\"13\">And the pillars of brass that were in the house of Jehovah, and the bases and the brazen sea that were in the house of Jehovah, did the Chaldeans break in pieces, and carried the brass of them to Babylon.</VERS>\r\n      <VERS vnumber=\"14\">And the pots, and the shovels, and the snuffers, and the spoons, and all the vessels of brass wherewith they ministered, took they away.</VERS>\r\n      <VERS vnumber=\"15\">And the firepans, and the basins, that which was of gold, in gold, and that which was of silver, in silver, the captain of the guard took away.</VERS>\r\n      <VERS vnumber=\"16\">The two pillars, the one sea, and the bases, which Solomon had made for the house of Jehovah, the brass of all these vessels was without weight.</VERS>\r\n      <VERS vnumber=\"17\">The height of the one pillar was eighteen cubits, and a capital of brass was upon it; and the height of the capital was three cubits, with network and pomegranates upon the capital round about, all of brass: and like unto these had the second pillar with network.</VERS>\r\n      <VERS vnumber=\"18\">And the captain of the guard took Seraiah the chief priest, and Zephaniah the second priest, and the three keepers of the threshold:</VERS>\r\n      <VERS vnumber=\"19\">and out of the city he took an officer that was set over the men of war; and five men of them that saw the king`s face, who were found in the city; and the scribe, the captain of the host, who mustered the people of the land; and threescore men of the people of the land, that were found in the city.</VERS>\r\n      <VERS vnumber=\"20\">And Nebuzaradan the captain of the guard took them, and brought them to the king of Babylon to Riblah.</VERS>\r\n      <VERS vnumber=\"21\">And the king of Babylon smote them, and put them to death at Riblah in the land of Hamath. So Judah was carried away captive out of his land.</VERS>\r\n      <VERS vnumber=\"22\">And as for the people that were left in the land of Judah, whom Nebuchadnezzar king of Babylon had left, even over them he made Gedaliah the son of Ahikam, the son of Shaphan, governor.</VERS>\r\n      <VERS vnumber=\"23\">Now when all the captains of the forces, they and their men, heard that the king of Babylon had made Gedaliah governor, they came to Gedaliah to Mizpah, even Ishmael the son of Nethaniah, and Johanan the son of Kareah, and Seraiah the son of Tanhumeth the Netophathite, and Jaazaniah the son of the Maacathite, they and their men.</VERS>\r\n      <VERS vnumber=\"24\">And Gedaliah sware to them and to their men, and said unto them, Fear not because of the servants of the Chaldeans: dwell in the land, and serve the king of Babylon, and it shall be well with you.</VERS>\r\n      <VERS vnumber=\"25\">But it came to pass in the seventh month, that Ishmael the son of Nethaniah, the son of Elishama, of the seed royal, came, and ten men with him, and smote Gedaliah, so that he died, and the Jews and the Chaldeans that were with him at Mizpah.</VERS>\r\n      <VERS vnumber=\"26\">And all the people, both small and great, and the captains of the forces, arose, and came to Egypt; for they were afraid of the Chaldeans.</VERS>\r\n      <VERS vnumber=\"27\">And it came to pass in the seven and thirtieth year of the captivity of Jehoiachin king of Judah, in the twelfth month, on the seven and twentieth day of the month, that Evil-merodach king of Babylon, in the year that he began to reign, did lift up the head of Jehoiachin king of Judah out of prison;</VERS>\r\n      <VERS vnumber=\"28\">and he spake kindly to him, and set his throne above the throne of the kings that were with him in Babylon,</VERS>\r\n      <VERS vnumber=\"29\">and changed his prison garments. And [Jehoiachin] did eat bread before him continually all the days of his life:</VERS>\r\n      <VERS vnumber=\"30\">and for his allowance, there was a continual allowance given him of the king, every day a portion, all the days of his life.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"13\" bname=\"1 Chronicles\" bsname=\"1Chr\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">Adam, Seth, Enosh,</VERS>\r\n      <VERS vnumber=\"2\">Kenan, Mahalalel, Jared,</VERS>\r\n      <VERS vnumber=\"3\">Enoch, Methuselah, Lamech,</VERS>\r\n      <VERS vnumber=\"4\">Noah, Shem, Ham, and Japheth.</VERS>\r\n      <VERS vnumber=\"5\">The sons of Japheth: Gomer, and Magog, and Madai, and Javan, and Tubal, and Meshech, and Tiras.</VERS>\r\n      <VERS vnumber=\"6\">And the sons of Gomer: Ashkenaz, and Diphath, and Togarmah.</VERS>\r\n      <VERS vnumber=\"7\">And the sons of Javan: Elishah, and Tarshish, Kittim, and Rodanim.</VERS>\r\n      <VERS vnumber=\"8\">The sons of Ham: Cush, and Mizraim, Put, and Canaan.</VERS>\r\n      <VERS vnumber=\"9\">And the sons of Cush: Seba, and Havilah, and Sabta, and Raama, and Sabteca. And the sons of Raamah: Sheba, and Dedan.</VERS>\r\n      <VERS vnumber=\"10\">And Cush begat Nimrod; he began to be a mighty one in the earth.</VERS>\r\n      <VERS vnumber=\"11\">And Mizraim begat Ludim, and Anamim, and Lehabim, and Naphtuhim,</VERS>\r\n      <VERS vnumber=\"12\">and Pathrusim, and Casluhim (from whence came the Philistines), and Caphtorim.</VERS>\r\n      <VERS vnumber=\"13\">And Canaan begat Sidon his first-born, and Heth,</VERS>\r\n      <VERS vnumber=\"14\">and the Jebusite, and the Amorite, and the Girgashite,</VERS>\r\n      <VERS vnumber=\"15\">and the Hivite, and the Arkite, and the Sinite,</VERS>\r\n      <VERS vnumber=\"16\">and the Arvadite, and the Zemarite, and the Hamathite.</VERS>\r\n      <VERS vnumber=\"17\">The sons of Shem: Elam, and Asshur, and Arpachshad, and Lud, and Aram, and Uz, and Hul, and Gether, and Meshech.</VERS>\r\n      <VERS vnumber=\"18\">And Arpachshad begat Shelah, and Shelah begat Eber.</VERS>\r\n      <VERS vnumber=\"19\">And unto Eber were born two sons: the name of the one was Peleg; for in his days the earth was divided; and his brother`s name was Joktan.</VERS>\r\n      <VERS vnumber=\"20\">And Joktan begat Almodad, and Sheleph, and Hazarmaveth, and Jerah,</VERS>\r\n      <VERS vnumber=\"21\">and Hadoram, and Uzal, and Diklah,</VERS>\r\n      <VERS vnumber=\"22\">and Ebal, and Abimael, and Sheba,</VERS>\r\n      <VERS vnumber=\"23\">and Ophir, and Havilah, and Jobab. All these were the sons of Joktan.</VERS>\r\n      <VERS vnumber=\"24\">Shem, Arpachshad, Shelah,</VERS>\r\n      <VERS vnumber=\"25\">Eber, Peleg, Reu,</VERS>\r\n      <VERS vnumber=\"26\">Serug, Nahor, Terah,</VERS>\r\n      <VERS vnumber=\"27\">Abram (the same is Abraham).</VERS>\r\n      <VERS vnumber=\"28\">The sons of Abraham: Isaac, and Ishmael.</VERS>\r\n      <VERS vnumber=\"29\">These are their generations: the first-born of Ishmael, Nebaioth; then Kedar, and Adbeel, and Mibsam,</VERS>\r\n      <VERS vnumber=\"30\">Mishma, and Dumah, Massa, Hadad, and Tema,</VERS>\r\n      <VERS vnumber=\"31\">Jetur, Naphish, and Kedemah. These are the sons of Ishmael.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">And the sons of Midian: Ephah, and Epher, and Hanoch, and Abida, and Eldaah. All these were the sons of Keturah.</VERS>\r\n      <VERS vnumber=\"34\">And Abraham begat Isaac. The sons of Isaac: Esau, and Israel.</VERS>\r\n      <VERS vnumber=\"35\">The sons of Esau: Eliphaz, Reuel, and Jeush, and Jalam, and Korah.</VERS>\r\n      <VERS vnumber=\"36\">The sons of Eliphaz: Teman, and Omar, Zephi, and Gatam, Kenaz, and Timna, and Amalek.</VERS>\r\n      <VERS vnumber=\"37\">The sons of Reuel: Nahath, Zerah, Shammah, and Mizzah.</VERS>\r\n      <VERS vnumber=\"38\">And the sons of Seir: Lotan, and Shobal, and Zibeon, and Anah, and Dishon, and Ezer, and Dishan.</VERS>\r\n      <VERS vnumber=\"39\">And the sons of Lotan: Hori, and Homam; and Timna was Lotan`s sister.</VERS>\r\n      <VERS vnumber=\"40\">The sons of Shobal: Alian, and Manahath, and Ebal, Shephi, and Onam. And the sons of Zibeon: Aiah, and Anah.</VERS>\r\n      <VERS vnumber=\"41\">The sons of Anah: Dishon. And the sons of Dishon: Hamran, and Eshban, and Ithran, and Cheran.</VERS>\r\n      <VERS vnumber=\"42\">The sons of Ezer: Bilhan, and Zaavan, Jaakan. The sons of Dishan: Uz, and Aran.</VERS>\r\n      <VERS vnumber=\"43\">Now these are the kings that reigned in the land of Edom, before there resigned any king over the children of Israel: Bela the son of Beor; and the name of his city was Dinhabah.</VERS>\r\n      <VERS vnumber=\"44\">And Bela died, and Jobab the son of Zerah of Bozrah reigned in his stead.</VERS>\r\n      <VERS vnumber=\"45\">And Jobab died, and Husham of the land of the Temanites reigned in his stead.</VERS>\r\n      <VERS vnumber=\"46\">And 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.</VERS>\r\n      <VERS vnumber=\"47\">And Hadad died, and Samlah of Masrekah reigned in his stead.</VERS>\r\n      <VERS vnumber=\"48\">And Samlah died, and Shaul of Rehoboth by the River reigned in his stead.</VERS>\r\n      <VERS vnumber=\"49\">And Shaul died, and Baal-hanan the son of Achbor reigned in his stead.</VERS>\r\n      <VERS vnumber=\"50\">And Baal-hanan died, and 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 Me-zahab.</VERS>\r\n      <VERS vnumber=\"51\">And Hadad died.     And the chiefs of Edom were: chief Timna, chief Aliah, chief Jetheth,</VERS>\r\n      <VERS vnumber=\"52\">chief Oholibamah, chief Elah, chief Pinon,</VERS>\r\n      <VERS vnumber=\"53\">chief Kenaz, chief Teman, chief Mibzar,</VERS>\r\n      <VERS vnumber=\"54\">chief Magdiel, chief Iram. These are the chiefs of Edom.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">These are the sons of Israel: Reuben, Simeon, Levi, and Judah, Issachar, and Zebulun,</VERS>\r\n      <VERS vnumber=\"2\">Dan, Joseph, and Benjamin, Naphtali, Gad, and Asher.</VERS>\r\n      <VERS vnumber=\"3\">The sons of Judah: Er, and Onan, and Shelah; which three were born unto him of Shua`s daughter the Canaanitess. And Er, Judah`s first-born, was wicked in the sight of Jehovah; and he slew him.</VERS>\r\n      <VERS vnumber=\"4\">And Tamar his daughter-in-law bare him Perez and Zerah. All the sons of Judah were five.</VERS>\r\n      <VERS vnumber=\"5\">The sons of Perez: Hezron, and Hamul.</VERS>\r\n      <VERS vnumber=\"6\">And the sons of Zerah: Zimri, and Ethan, and Heman, and Calcol, and Dara; five of them in all.</VERS>\r\n      <VERS vnumber=\"7\">And the sons of Carmi: Achar, the troubler of Israel, who committed a trespass in the devoted thing.</VERS>\r\n      <VERS vnumber=\"8\">And the sons of Ethan: Azariah.</VERS>\r\n      <VERS vnumber=\"9\">The sons also of Hezron, that were born unto him: Jerahmeel, and Ram, and Chelubai.</VERS>\r\n      <VERS vnumber=\"10\">And Ram begat Amminadab, and Amminadab begat Nahshon, prince of the children of Judah;</VERS>\r\n      <VERS vnumber=\"11\">and Nahshon begat Salma, and Salma begat Boaz,</VERS>\r\n      <VERS vnumber=\"12\">and Boaz begat Obed, and Obed begat Jesse;</VERS>\r\n      <VERS vnumber=\"13\">and Jesse begat his first-born Eliab, and Abinadab the second, and Shimea the third,</VERS>\r\n      <VERS vnumber=\"14\">Nethanel the fourth, Raddai the fifth,</VERS>\r\n      <VERS vnumber=\"15\">Ozem the sixth, David the seventh;</VERS>\r\n      <VERS vnumber=\"16\">and their sisters were Zeruiah and Abigail. And the sons of Zeruiah: Abishai, and Joab, and Asahel, three.</VERS>\r\n      <VERS vnumber=\"17\">And Abigail bare Amasa; and the father of Amasa was Jether the Ishmaelite.</VERS>\r\n      <VERS vnumber=\"18\">And Caleb the son of Hezron begat [children] of Azubah [his] wife, and of Jerioth; and these were her sons: Jesher, and Shobab, and Ardon.</VERS>\r\n      <VERS vnumber=\"19\">And Azubah died, and Caleb took unto him Ephrath, who bare him Hur.</VERS>\r\n      <VERS vnumber=\"20\">And Hur begat Uri, and Uri begat Bezalel.</VERS>\r\n      <VERS vnumber=\"21\">And afterward Hezron went in to the daughter of Machir the father of Gilead, whom he took [to wife] when he was threescore years old; and she bare him Segub.</VERS>\r\n      <VERS vnumber=\"22\">And Segub begat Jair, who had three and twenty cities in the land of Gilead.</VERS>\r\n      <VERS vnumber=\"23\">And Geshur and Aram took the towns of Jair from them, with Kenath, and the villages thereof, even threescore cities. All these were the sons of Machir the father of Gilead.</VERS>\r\n      <VERS vnumber=\"24\">And after that Hezron was dead in Caleb-ephrathah, then Abijah Hezron`s wife bare him Ashhur the father of Tekoa.</VERS>\r\n      <VERS vnumber=\"25\">And the sons of Jerahmeel the first-born of Hezron were Ram the first-born, and Bunah, and Oren, and Ozem, Ahijah.</VERS>\r\n      <VERS vnumber=\"26\">And Jerahmeel had another wife, whose name was Atarah; she was the mother of Onam.</VERS>\r\n      <VERS vnumber=\"27\">And the sons of Ram the first-born of Jerahmeel were Maaz, and Jamin, and Eker.</VERS>\r\n      <VERS vnumber=\"28\">And the sons of Onam were Shammai, and Jada. And the sons of Shammai: Nadab, and Abishur.</VERS>\r\n      <VERS vnumber=\"29\">And the name of the wife of Abishur was Abihail; and she bare him Ahban, and Molid.</VERS>\r\n      <VERS vnumber=\"30\">And the sons of Nadab: Seled, and Appaim; but Seled died without children.</VERS>\r\n      <VERS vnumber=\"31\">And the sons of Appaim: Ishi. And the sons of Ishi: Sheshan. And the sons of Sheshan: Ahlai.</VERS>\r\n      <VERS vnumber=\"32\">And the sons of Jada the brother of Shammai: Jether, and Jonathan; and Jether died without children.</VERS>\r\n      <VERS vnumber=\"33\">And the sons of Jonathan: Peleth, and Zaza. These were the sons of Jerahmeel.</VERS>\r\n      <VERS vnumber=\"34\">Now Sheshan had no sons, but daughters. And Sheshan had a servant, an Egyptian, whose name was Jarha.</VERS>\r\n      <VERS vnumber=\"35\">And Sheshan gave his daughter to Jarha his servant to wife; and she bare him Attai.</VERS>\r\n      <VERS vnumber=\"36\">And Attai begat Nathan, and Nathan begat Zabad,</VERS>\r\n      <VERS vnumber=\"37\">and Zabad begat Ephlal, and Ephlal begat Obed,</VERS>\r\n      <VERS vnumber=\"38\">and Obed begat Jehu, and Jehu begat Azariah,</VERS>\r\n      <VERS vnumber=\"39\">and Azariah begat Helez, and Helez begat Eleasah,</VERS>\r\n      <VERS vnumber=\"40\">and Eleasah begat Sismai, and Sismai begat Shallum,</VERS>\r\n      <VERS vnumber=\"41\">and Shallum begat Jekamiah, and Jekamiah begat Elishama.</VERS>\r\n      <VERS vnumber=\"42\">And the sons of Caleb the brother of Jerahmeel were Mesha his first-born, who was the father of Ziph; and the sons of Mareshah the father of Hebron.</VERS>\r\n      <VERS vnumber=\"43\">And the sons of Hebron: Korah, and Tappuah, and Rekem, and Shema.</VERS>\r\n      <VERS vnumber=\"44\">And Shema begat Raham, the father of Jorkeam; and Rekem begat Shammai.</VERS>\r\n      <VERS vnumber=\"45\">And the son of Shammai was Maon; and Maon was the father of Beth-zur.</VERS>\r\n      <VERS vnumber=\"46\">And Ephah, Caleb`s concubine, bare Haran, and Moza, and Gazez; and Haran begat Gazez.</VERS>\r\n      <VERS vnumber=\"47\">And the sons of Jahdai: Regem, and Jothan, and Geshan, and Pelet, and Ephah, and Shaaph.</VERS>\r\n      <VERS vnumber=\"48\">Maacah, Caleb`s concubine, bare Sheber and Tirhanah.</VERS>\r\n      <VERS vnumber=\"49\">She bare also Shaaph the father of Madmannah, Sheva the father of Machbena, and the father of Gibea; and the daughter of Caleb was Achsah.</VERS>\r\n      <VERS vnumber=\"50\">These were the sons of Caleb, the son of Hur, the first-born of Ephrathah: Shobal the father of Kiriath-jearim,</VERS>\r\n      <VERS vnumber=\"51\">Salma the father of Beth-lehem, Hareph the father of Beth-gader.</VERS>\r\n      <VERS vnumber=\"52\">And Shobal the father of Kiriath-jearim had sons: Haroeh, half of the Menuhoth.</VERS>\r\n      <VERS vnumber=\"53\">And the families of Kiriath-jearim: The Ithrites, and the Puthites, and the Shumathites, and the Mishraites; of them came the Zorathites and the Eshtaolites.</VERS>\r\n      <VERS vnumber=\"54\">The sons of Salma: Beth-lehem, and the Netophathites, Atroth-beth-joab, and half of the Manahathites, the Zorites.</VERS>\r\n      <VERS vnumber=\"55\">And the families of scribes that dwelt at Jabez: the Tirathites, the Shimeathites, the Sucathites. These are the Kenites that came of Hammath, the father of the house of Rechab.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Now these were the sons of David, that were born unto him in Hebron: the first-born, Amnon, of Ahinoam the Jezreelitess; the second, Daniel, of Abigail the Carmelitess;</VERS>\r\n      <VERS vnumber=\"2\">the third, Absalom the son of Maacah the daughter of Talmai king of Geshur; the fourth, Adonijah the son of Haggith;</VERS>\r\n      <VERS vnumber=\"3\">the fifth, Shephatiah of Abital; the sixth, Ithream by Eglah his wife:</VERS>\r\n      <VERS vnumber=\"4\">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;</VERS>\r\n      <VERS vnumber=\"5\">and these were born unto him in Jerusalem: Shimea, and Shobab, and Nathan, and Solomon, four, of Bath-shua the daughter of Ammiel;</VERS>\r\n      <VERS vnumber=\"6\">and Ibhar, and Elishama, and Eliphelet,</VERS>\r\n      <VERS vnumber=\"7\">and Nogah, and Nepheg, and Japhia,</VERS>\r\n      <VERS vnumber=\"8\">and Elishama, and Eliada, and Eliphelet, nine.</VERS>\r\n      <VERS vnumber=\"9\">All these were the sons of David, besides the sons of the concubines; and Tamar was their sister.</VERS>\r\n      <VERS vnumber=\"10\">And Solomon`s son was Rehoboam, Abijah his son, Asa his son, Jehoshaphat his son,</VERS>\r\n      <VERS vnumber=\"11\">Joram his son, Ahaziah his son, Joash his son,</VERS>\r\n      <VERS vnumber=\"12\">Amaziah his son, Azariah his son, Jotham his son,</VERS>\r\n      <VERS vnumber=\"13\">Ahaz his son, Hezekiah his son, Manasseh his son,</VERS>\r\n      <VERS vnumber=\"14\">Amon his son, Josiah his son.</VERS>\r\n      <VERS vnumber=\"15\">And the sons of Josiah: the first-born Johanan, the second Jehoiakim, the third Zedekiah, the fourth Shallum.</VERS>\r\n      <VERS vnumber=\"16\">And the sons of Jehoiakim: Jeconiah his son, Zedekiah his son.</VERS>\r\n      <VERS vnumber=\"17\">And the sons of Jeconiah, the captive: Shealtiel his son,</VERS>\r\n      <VERS vnumber=\"18\">and Malchiram, and Pedaiah, and Shenazzar, Jekamiah, Hoshama, and Nedabiah.</VERS>\r\n      <VERS vnumber=\"19\">And the sons of Pedaiah: Zerubbabel, and Shimei. And the sons of Zerubbabel: Meshullam, and Hananiah; and Shelomith was their sister;</VERS>\r\n      <VERS vnumber=\"20\">and Hashubah, and Ohel, and Berechiah, and Hasadiah, Jushab-hesed, five.</VERS>\r\n      <VERS vnumber=\"21\">And the sons of Hananiah: Pelatiah, and Jeshaiah; the sons of Rephaiah, the sons of Arnan, the sons of Obadiah, the sons of Shecaniah.</VERS>\r\n      <VERS vnumber=\"22\">And the sons of Shecaniah: Shemaiah. And the sons of Shemaiah: Hattush, and Igal, and Bariah, and Neariah, and Shaphat, six.</VERS>\r\n      <VERS vnumber=\"23\">And the sons of Neariah: Elioenai, and Hizkiah, and Azrikam, three.</VERS>\r\n      <VERS vnumber=\"24\">And the sons of Elioenai: Hodaviah, and Eliashib, and Pelaiah, and Akkub, and Johanan, and Delaiah, and Anani, seven.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">The sons of Judah: Perez, Hezron, and Carmi, and Hur, and Shobal.</VERS>\r\n      <VERS vnumber=\"2\">And Reaiah the son of Shobal begat Jahath; and Jahath begat Ahumai and Lahad. These are the families of the Zorathites.</VERS>\r\n      <VERS vnumber=\"3\">And these were [the sons of] the father of Etam: Jezreel, and Ishma, and Idbash; and the name of their sister was Hazzelelponi;</VERS>\r\n      <VERS vnumber=\"4\">and Penuel the father of Gedor, and Ezer the father of Hushah. These are the sons of Hur, the first-born of Ephrathah, the father of Beth-lehem.</VERS>\r\n      <VERS vnumber=\"5\">And Ashhur the father of Tekoa had two wives, Helah and Naarah.</VERS>\r\n      <VERS vnumber=\"6\">And Naarah bare him Ahuzzam, and Hepher, and Temeni, and Haahashtari. These were the sons of Naarah.</VERS>\r\n      <VERS vnumber=\"7\">And the sons of Helah were Zereth, Izhar, and Ethnan.</VERS>\r\n      <VERS vnumber=\"8\">And Hakkoz begat Anub, and Zobebah, and the families of Aharhel the son of Harum.</VERS>\r\n      <VERS vnumber=\"9\">And Jabez was more honorable than his brethren: and his mother called his name Jabez, saying, Because I bare him with sorrow.</VERS>\r\n      <VERS vnumber=\"10\">And Jabez called on the God of Israel, saying, Oh that thou wouldest bless me indeed, and enlarge my border, and that thy hand might be with me, and that thou wouldest keep me from evil, that it be not to my sorrow! And God granted him that which he requested.</VERS>\r\n      <VERS vnumber=\"11\">And Chelub the brother of Shuhah begat Mehir, who was the father of Eshton.</VERS>\r\n      <VERS vnumber=\"12\">And Eshton begat Beth-rapha, and Paseah, and Tehinnah the father of Ir-nahash. These are the men of Recah.</VERS>\r\n      <VERS vnumber=\"13\">And the sons of Kenaz: Othniel, and Seraiah. And the sons of Othniel: Hathath.</VERS>\r\n      <VERS vnumber=\"14\">And Meonothai begat Ophrah: and Seraiah begat Joab the father of Ge-harashim; for they were craftsmen.</VERS>\r\n      <VERS vnumber=\"15\">And the sons of Caleb the son of Jephunneh: Iru, Elah, and Naam; and the sons of Elah; and Kenaz.</VERS>\r\n      <VERS vnumber=\"16\">And the sons of Jehallelel: Ziph, and Ziphah, Tiria, and Asarel.</VERS>\r\n      <VERS vnumber=\"17\">And the sons of Ezrah: Jether, and Mered, and Epher, and Jalon; and she bare Miriam, and Shammai, and Ishbah the father of Eshtemoa.</VERS>\r\n      <VERS vnumber=\"18\">And his wife the Jewess bare Jered the father of Gedor, and Heber the father of Soco, and Jekuthiel the father of Zanoah. And these are the sons of Bithiah the daughter of Pharaoh, whom Mered took.</VERS>\r\n      <VERS vnumber=\"19\">And the sons of the wife of Hodiah, the sister of Naham, were the father of Keilah the Garmite, and Eshtemoa the Maacathite.</VERS>\r\n      <VERS vnumber=\"20\">And the sons of Shimon: Amnon, and Rinnah, Ben-hanan, and Tilon. And the sons of Ishi: Zoheth, and Ben-zoheth.</VERS>\r\n      <VERS vnumber=\"21\">The sons of Shelah the son of Judah: 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;</VERS>\r\n      <VERS vnumber=\"22\">and Jokim, and the men of Cozeba, and Joash, and Saraph, who had dominion in Moab, and Jashubilehem. And the records are ancient.</VERS>\r\n      <VERS vnumber=\"23\">These were the potters, and the inhabitants of Netaim and Gederah: there they dwelt with the king for his work.</VERS>\r\n      <VERS vnumber=\"24\">The sons of Simeon: Nemuel, and Jamin, Jarib, Zerah, Shaul;</VERS>\r\n      <VERS vnumber=\"25\">Shallum his son, Mibsam his son, Mishma his son.</VERS>\r\n      <VERS vnumber=\"26\">And the sons of Mishma: Hammuel his son, Zaccur his son, Shimei his son.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And they dwelt at Beer-sheba, and Moladah, and Hazarshual,</VERS>\r\n      <VERS vnumber=\"29\">and at Bilhah, and at Ezem, and at Tolad,</VERS>\r\n      <VERS vnumber=\"30\">and at Bethuel, and at Hormah, and at Ziklag,</VERS>\r\n      <VERS vnumber=\"31\">and at Beth-marcaboth, and Hazar-susim, and at Beth-biri, and at Shaaraim. These were their cities unto the reign of David.</VERS>\r\n      <VERS vnumber=\"32\">And their villages were Etam, and Ain, Rimmon, and Tochen, and Ashan, five cities;</VERS>\r\n      <VERS vnumber=\"33\">and all their villages that were round about the same cities, unto Baal. These were their habitations, and they have their genealogy.</VERS>\r\n      <VERS vnumber=\"34\">And Meshobab, and Jamlech, and Joshah the son of Amaziah,</VERS>\r\n      <VERS vnumber=\"35\">and Joel, and Jehu the son of Joshibiah, the son of Seraiah, the son of Asiel,</VERS>\r\n      <VERS vnumber=\"36\">and Elioenai, and Jaakobah, and Jeshohaiah, and Asaiah, and Adiel, and Jesimiel, and Benaiah,</VERS>\r\n      <VERS vnumber=\"37\">and Ziza the son of Shiphi, the son of Allon, the son of Jedaiah, the son of Shimri, the son of Shemaiah-</VERS>\r\n      <VERS vnumber=\"38\">these mentioned by name were princes in their families: and their fathers` houses increased greatly.</VERS>\r\n      <VERS vnumber=\"39\">And they went to the entrance of Gedor, even unto the east side of the valley, to seek pasture for their flocks.</VERS>\r\n      <VERS vnumber=\"40\">And they found fat pasture and good, and the land was wide, and quiet, and peaceable; for they that dwelt there aforetime were of Ham.</VERS>\r\n      <VERS vnumber=\"41\">And these written by name came in the days of Hezekiah king of Judah, and smote their tents, and the Meunim that were found there, and destroyed them utterly unto this day, and dwelt in their stead; because there was pasture there for their flocks.</VERS>\r\n      <VERS vnumber=\"42\">And 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.</VERS>\r\n      <VERS vnumber=\"43\">And they smote the remnant of the Amalekites that escaped, and have dwelt there unto this day.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">And the sons of Reuben the first-born of Israel (for he was the first-born; but, forasmuch as he defiled his father`s couch, his birthright was given unto the sons of Joseph the son of Israel; and the genealogy is not to be reckoned after the birthright.</VERS>\r\n      <VERS vnumber=\"2\">For Judah prevailed above his brethren, and of him came the prince; but the birthright was Joseph`s:)</VERS>\r\n      <VERS vnumber=\"3\">the sons of Reuben the first-born of Israel: Hanoch, and Pallu, Hezron, and Carmi.</VERS>\r\n      <VERS vnumber=\"4\">The sons of Joel: Shemaiah his son, Gog his son, Shimei his son,</VERS>\r\n      <VERS vnumber=\"5\">Micah his son, Reaiah his son, Baal his son,</VERS>\r\n      <VERS vnumber=\"6\">Beerah his son, whom Tilgath-pilneser king of Assyria carried away captive: he was prince of the Reubenites.</VERS>\r\n      <VERS vnumber=\"7\">And his brethren by their families, when the genealogy of their generations was reckoned: the chief, Jeiel, and Zechariah,</VERS>\r\n      <VERS vnumber=\"8\">and Bela the son of Azaz, the son of Shema, the son of Joel, who dwelt in Aroer, even unto Nebo and Baal-meon:</VERS>\r\n      <VERS vnumber=\"9\">and eastward he dwelt even unto the entrance of the wilderness from the river Euphrates, because their cattle were multiplied in the land of Gilead.</VERS>\r\n      <VERS vnumber=\"10\">And in the days of Saul, they made war with the Hagrites, who fell by their hand; and they dwelt in their tents throughout all the [land] east of Gilead.</VERS>\r\n      <VERS vnumber=\"11\">And the sons of Gad dwelt over against them, in the land of Bashan unto Salecah:</VERS>\r\n      <VERS vnumber=\"12\">Joel the chief, and Shapham the second, and Janai, and Shaphat in Bashan.</VERS>\r\n      <VERS vnumber=\"13\">And their brethren of their fathers` houses: Michael, and Meshullam, and Sheba, and Jorai, and Jacan, and Zia, and Eber, seven.</VERS>\r\n      <VERS vnumber=\"14\">These were the sons 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;</VERS>\r\n      <VERS vnumber=\"15\">Ahi the son of Abdiel, the son of Guni, chief of their fathers` houses.</VERS>\r\n      <VERS vnumber=\"16\">And they dwelt in Gilead in Bashan, and in its towns, and in all the suburbs of Sharon, as far as their borders.</VERS>\r\n      <VERS vnumber=\"17\">All these were reckoned by genealogies in the days of Jotham king of Judah, and in the days of Jeroboam king of Israel.</VERS>\r\n      <VERS vnumber=\"18\">The sons of Reuben, and the Gadites, and the half-tribe of Manasseh, of valiant men, men able to bear buckler and sword, and to shoot with bow, and skilful in war, were forty and four thousand seven hundred and threescore, that were able to go forth to war.</VERS>\r\n      <VERS vnumber=\"19\">And they made war with the Hagrites, with Jetur, and Naphish, and Nodab.</VERS>\r\n      <VERS vnumber=\"20\">And they were helped against them, and the Hagrites were delivered into their hand, and all that were with them; for they cried to God in the battle, and he was entreated of them, because they put their trust in him.</VERS>\r\n      <VERS vnumber=\"21\">And 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 a hundred thousand.</VERS>\r\n      <VERS vnumber=\"22\">For there fell many slain, because the war was of God. And they dwelt in their stead until the captivity.</VERS>\r\n      <VERS vnumber=\"23\">And the children of the half-tribe of Manasseh dwelt in the land: they increased from Bashan unto Baal-hermon and Senir and mount Hermon.</VERS>\r\n      <VERS vnumber=\"24\">And these were the heads of their fathers` houses: even Epher, and Ishi, and Eliel, and Azriel, and Jeremiah, and Hodaviah, and Jahdiel, mighty men of valor, famous men, heads of their fathers` houses.</VERS>\r\n      <VERS vnumber=\"25\">And they trespassed against the God of their fathers, and played the harlot after the gods of the peoples of the land, whom God destroyed before them.</VERS>\r\n      <VERS vnumber=\"26\">And the God of Israel stirred up the spirit of Pul king of Assyria, and the spirit of Tilgath-pilneser 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 of Gozan, unto this day.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">The sons of Levi: Gershon, Kohath, and Merari.</VERS>\r\n      <VERS vnumber=\"2\">And the sons of Kohath: Amram, Izhar, and Hebron, and Uzziel.</VERS>\r\n      <VERS vnumber=\"3\">And the children of Amram: Aaron, and Moses, and Miriam. And the sons of Aaron: Nadab, and Abihu, Eleazar, and Ithamar.</VERS>\r\n      <VERS vnumber=\"4\">Eleazar begat Phinehas, Phinehas begat Abishua,</VERS>\r\n      <VERS vnumber=\"5\">and Abishua begat Bukki, and Bukki begat Uzzi,</VERS>\r\n      <VERS vnumber=\"6\">and Uzzi begat Zerahiah, and Zerahiah begat Meraioth,</VERS>\r\n      <VERS vnumber=\"7\">Meraioth begat Amariah, and Amariah begat Ahitub,</VERS>\r\n      <VERS vnumber=\"8\">and Ahitub begat Zadok, and Zadok begat Ahimaaz,</VERS>\r\n      <VERS vnumber=\"9\">and Ahimaaz begat Azariah, and Azariah begat Johanan,</VERS>\r\n      <VERS vnumber=\"10\">and Johanan begat Azariah, (he it is that executed the priest`s office in the house that Solomon built in Jerusalem),</VERS>\r\n      <VERS vnumber=\"11\">and Azariah begat Amariah, and Amariah begat Ahitub,</VERS>\r\n      <VERS vnumber=\"12\">and Ahitub begat Zadok, and Zadok begat Shallum,</VERS>\r\n      <VERS vnumber=\"13\">and Shallum begat Hilkiah, and Hilkiah begat Azariah,</VERS>\r\n      <VERS vnumber=\"14\">and Azariah begat Seraiah, and Seraiah begat Jehozadak;</VERS>\r\n      <VERS vnumber=\"15\">And Jehozadak went [into captivity], when Jehovah carried away Judah and Jerusalem by the hand of Nebuchadnezzar.</VERS>\r\n      <VERS vnumber=\"16\">The sons of Levi: Gershom, Kohath, and Merari.</VERS>\r\n      <VERS vnumber=\"17\">And these are the names of the sons of Gershom: Libni and Shimei.</VERS>\r\n      <VERS vnumber=\"18\">And the sons of Kohath were Amram, and Izhar, and Hebron, and Uzziel.</VERS>\r\n      <VERS vnumber=\"19\">The sons of Merari: Mahli and Mushi. And these are the families of the Levites according to their fathers` [houses].</VERS>\r\n      <VERS vnumber=\"20\">Of Gershom: Libni his son, Jahath his son, Zimmah his son,</VERS>\r\n      <VERS vnumber=\"21\">Joah his son, Iddo his son, Zerah his son, Jeatherai his son.</VERS>\r\n      <VERS vnumber=\"22\">The sons of Kohath: Amminadab his son, Korah his son, Assir his son,</VERS>\r\n      <VERS vnumber=\"23\">Elkanah his son, and Ebiasaph his son, and Assir his son,</VERS>\r\n      <VERS vnumber=\"24\">Tahath his son, Uriel his son, Uzziah his son, and Shaul his son.</VERS>\r\n      <VERS vnumber=\"25\">And the sons of Elkanah: Amasai, and Ahimoth.</VERS>\r\n      <VERS vnumber=\"26\">As for Elkanah, the sons of Elkanah: Zophai his son, and Nahath his son,</VERS>\r\n      <VERS vnumber=\"27\">Eliab his son, Jeroham his son, Elkanah his son.</VERS>\r\n      <VERS vnumber=\"28\">And the sons of Samuel: the first-born [Joel], and the second Abijah.</VERS>\r\n      <VERS vnumber=\"29\">The sons of Merari: Mahli, Libni his son, Shimei his son, Uzzah his son,</VERS>\r\n      <VERS vnumber=\"30\">Shimea his son, Haggiah his son, Asaiah his son.</VERS>\r\n      <VERS vnumber=\"31\">And these are they whom David set over the service of song in the house of Jehovah, after that the ark had rest.</VERS>\r\n      <VERS vnumber=\"32\">And they ministered with song before the tabernacle of the tent of meeting, until Solomon had built the house of Jehovah in Jerusalem: and they waited on their office according to their order.</VERS>\r\n      <VERS vnumber=\"33\">And these are they that waited, and their sons. Of the sons of the Kohathites: Heman the singer, the son of Joel, the son of Samuel,</VERS>\r\n      <VERS vnumber=\"34\">the son of Elkanah, the son of Jeroham, the son of Eliel, the son of Toah,</VERS>\r\n      <VERS vnumber=\"35\">the son of Zuph, the son of Elkanah, the son of Mahath, the son of Amasai,</VERS>\r\n      <VERS vnumber=\"36\">the son of Elkanah, the son of Joel, the son of Azariah, the son of Zephaniah,</VERS>\r\n      <VERS vnumber=\"37\">the son of Tahath, the son of Assir, the son of Ebiasaph, the son of Korah,</VERS>\r\n      <VERS vnumber=\"38\">the son of Izhar, the son of Kohath, the son of Levi, the son of Israel.</VERS>\r\n      <VERS vnumber=\"39\">And his brother Asaph, who stood on his right hand, even Asaph the son of Berechiah, the son of Shimea,</VERS>\r\n      <VERS vnumber=\"40\">the son of Michael, the son of Baaseiah, the son of Malchijah,</VERS>\r\n      <VERS vnumber=\"41\">the son of Ethni, the son of Zerah, the son of Adaiah,</VERS>\r\n      <VERS vnumber=\"42\">the son of Ethan, the son of Zimmah, the son of Shimei,</VERS>\r\n      <VERS vnumber=\"43\">the son of Jahath, the son of Gershom, the son of Levi.</VERS>\r\n      <VERS vnumber=\"44\">And on the left hand their brethren the sons of Merari: Ethan the son of Kishi, the son of Abdi, the son of Malluch,</VERS>\r\n      <VERS vnumber=\"45\">the son of Hashabiah, the son of Amaziah, the son of Hilkiah,</VERS>\r\n      <VERS vnumber=\"46\">the son of Amzi, the son of Bani, the son of Shemer,</VERS>\r\n      <VERS vnumber=\"47\">the son of Mahli, the son of Mushi, the son of Merari, the son of Levi.</VERS>\r\n      <VERS vnumber=\"48\">And their brethren the Levites were appointed for all the service of the tabernacle of the house of God.</VERS>\r\n      <VERS vnumber=\"49\">But Aaron and his sons offered upon the altar of burnt-offering, and upon the altar of incense, for all the work of the most holy place, and to make atonement for Israel, according to all that Moses the servant of God had commanded.</VERS>\r\n      <VERS vnumber=\"50\">And these are the sons of Aaron: Eleazar his son, Phinehas his son, Abishua his son,</VERS>\r\n      <VERS vnumber=\"51\">Bukki his son, Uzzi his son, Zerahiah his son,</VERS>\r\n      <VERS vnumber=\"52\">Meraioth his son, Amariah his son, Ahitub his son,</VERS>\r\n      <VERS vnumber=\"53\">Zadok his son, Ahimaaz his son.</VERS>\r\n      <VERS vnumber=\"54\">Now these are their dwelling-places according to their encampments in their borders: to the sons of Aaron, of the families of the Kohathites (for theirs was the [first] lot),</VERS>\r\n      <VERS vnumber=\"55\">to them they gave Hebron in the land of Judah, and the suburbs thereof round about it;</VERS>\r\n      <VERS vnumber=\"56\">but the fields of the city, and the villages thereof, they gave to Caleb the son of Jephunneh.</VERS>\r\n      <VERS vnumber=\"57\">And to the sons of Aaron they gave the cities of refuge, Hebron; Libnah also with its suburbs, and Jattir, and Eshtemoa with its suburbs,</VERS>\r\n      <VERS vnumber=\"58\">and Hilen with its suburbs, Debir with its suburbs,</VERS>\r\n      <VERS vnumber=\"59\">and Ashan with its suburbs, and Beth-shemesh with its suburbs;</VERS>\r\n      <VERS vnumber=\"60\">and out of the tribe of Benjamin, Geba with its suburbs, and Allemeth with its suburbs, and Anathoth with its suburbs. All their cities throughout their families were thirteen cities.</VERS>\r\n      <VERS vnumber=\"61\">And unto the rest of the sons of Kohath [were given] by lot, out of the family of the tribe, out of the half-tribe, the half of Manasseh, ten cities.</VERS>\r\n      <VERS vnumber=\"62\">And to the sons of Gershom, according to 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.</VERS>\r\n      <VERS vnumber=\"63\">Unto the sons of Merari [were given] by lot, according to their families, out of the tribe of Reuben, and out of the tribe of Gad, and out of the tribe of Zebulun, twelve cities.</VERS>\r\n      <VERS vnumber=\"64\">And the children of Israel gave to the Levites the cities with their suburbs.</VERS>\r\n      <VERS vnumber=\"65\">And 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 mentioned by name.</VERS>\r\n      <VERS vnumber=\"66\">And some of the families of the sons of Kohath had cities of their borders out of the tribe of Ephraim.</VERS>\r\n      <VERS vnumber=\"67\">And they gave unto them the cities of refuge, Shechem in the hill-country of Ephraim with its suburbs; Gezer also with its suburbs,</VERS>\r\n      <VERS vnumber=\"68\">and Jokmeam with its suburbs, and Beth-horon with its suburbs,</VERS>\r\n      <VERS vnumber=\"69\">and Aijalon with its suburbs, and Gath-rimmon with its suburbs;</VERS>\r\n      <VERS vnumber=\"70\">and out of the half-tribe of Manasseh, Aner with its suburbs, and Bileam with its suburbs, for the rest of the family of the sons of Kohath.</VERS>\r\n      <VERS vnumber=\"71\">Unto the sons of Gershom [were given], out of the family of the half-tribe of Manasseh, Golan in Bashan with its suburbs, and Ashtaroth with its suburbs;</VERS>\r\n      <VERS vnumber=\"72\">and out of the tribe of Issachar, Kedesh with its suburbs, Daberath with its suburbs,</VERS>\r\n      <VERS vnumber=\"73\">and Ramoth with its suburbs, and Anem with its suburbs;</VERS>\r\n      <VERS vnumber=\"74\">and out of the tribe of Asher, Mashal with its suburbs, and Abdon with its suburbs,</VERS>\r\n      <VERS vnumber=\"75\">and Hukok with its suburbs, and Rehob with its suburbs;</VERS>\r\n      <VERS vnumber=\"76\">and out of the tribe of Naphtali, Kedesh in Galilee with its suburbs, and Hammon with its suburbs, and Kiriathaim with its suburbs.</VERS>\r\n      <VERS vnumber=\"77\">Unto the rest of [the Levites], the sons of Merari, [were given], out of the tribe of Zebulun, Rimmono with its suburbs, Tabor with its suburbs;</VERS>\r\n      <VERS vnumber=\"78\">and beyond the Jordan at Jericho, on the east side of the Jordan, [were given them], out of the tribe of Reuben, Bezer in the wilderness with its suburbs, and Jahzah with its suburbs,</VERS>\r\n      <VERS vnumber=\"79\">and Kedemoth with its suburbs, and Mephaath with its suburbs;</VERS>\r\n      <VERS vnumber=\"80\">and out of the tribe of Gad, Ramoth in Gilead with its suburbs, and Mahanaim with its suburbs,</VERS>\r\n      <VERS vnumber=\"81\">and Heshbon with its suburbs, and Jazer with its suburbs.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">And of the sons of Issachar: Tola, and Puah, Jashub, and Shimron, four.</VERS>\r\n      <VERS vnumber=\"2\">And the sons of Tola: Uzzi, and Rephaiah, and Jeriel, and Jahmai, and Ibsam, and Shemuel, heads of their fathers` houses, [to wit], of Tola; mighty men of valor in their generations: their number in the days of David was two and twenty thousand and six hundred.</VERS>\r\n      <VERS vnumber=\"3\">And the sons of Uzzi: Izrahiah. And the sons of Izrahiah: Michael, and Obadiah, and Joel, Isshiah, five; all of them chief men.</VERS>\r\n      <VERS vnumber=\"4\">And with them, by their generations, after their fathers` houses, were bands of the host for war, six and thirty thousand; for they had many wives and sons.</VERS>\r\n      <VERS vnumber=\"5\">And their brethren among all the families of Issachar, mighty men of valor, reckoned in all by genealogy, were fourscore and seven thousand.</VERS>\r\n      <VERS vnumber=\"6\">[The sons of] Benjamin: Bela, and Becher, and Jediael, three.</VERS>\r\n      <VERS vnumber=\"7\">And the sons of Bela: Ezbon, and Uzzi, and Uzziel, and Jerimoth, and Iri, five; heads of fathers` houses, mighty men of valor; and they were reckoned by genealogy twenty and two thousand and thirty and four.</VERS>\r\n      <VERS vnumber=\"8\">And the sons of Becher: Zemirah, and Joash, and Eliezer, and Elioenai, and Omri, and Jeremoth, and Abijah, and Anathoth, and Alemeth. All these were the sons of Becher.</VERS>\r\n      <VERS vnumber=\"9\">And they were reckoned by genealogy, after their generations, heads of their fathers` houses, mighty men of valor, twenty thousand and two hundred.</VERS>\r\n      <VERS vnumber=\"10\">And the sons of Jediael: Bilhan. And the sons of Bilhan: Jeush, and Benjamin, and Ehud, and Chenaanah, and Zethan, and Tarshish, and Ahishahar.</VERS>\r\n      <VERS vnumber=\"11\">All these were sons of Jediael, according to the heads of their fathers` [houses], mighty men of valor, seventeen thousand and two hundred, that were able to go forth in the host for war.</VERS>\r\n      <VERS vnumber=\"12\">Shuppim also, and Huppim, the sons of Ir, Hushim, the sons of Aher.</VERS>\r\n      <VERS vnumber=\"13\">The sons of Naphtali: Jahziel, and Guni, and Jezer, and Shallum, the sons of Bilhah.</VERS>\r\n      <VERS vnumber=\"14\">The sons of Manasseh: Asriel, whom his concubine the Aramitess bare: she bare Machir the father of Gilead:</VERS>\r\n      <VERS vnumber=\"15\">and Machir took a wife of Huppim and Shuppim, whose sister`s name was Maacah; and the name of the second was Zelophehad: and Zelophehad had daughters.</VERS>\r\n      <VERS vnumber=\"16\">And Maacah 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.</VERS>\r\n      <VERS vnumber=\"17\">And the sons of Ulam: Bedan. These were the sons of Gilead the son of Machir, the son of Manasseh.</VERS>\r\n      <VERS vnumber=\"18\">And his sister Hammolecheth bare Ishhod, and Abiezer, and Mahlah.</VERS>\r\n      <VERS vnumber=\"19\">And the sons of Shemida were Ahian, and Shechem, and Likhi, and Aniam.</VERS>\r\n      <VERS vnumber=\"20\">And the sons of Ephraim: Shuthelah, and Bered his son, and Tahath his son, and Eleadah his son, and Tahath his son,</VERS>\r\n      <VERS vnumber=\"21\">and Zabad his son, and Shuthelah his son, and Ezer, and Elead, whom the men of Gath that were born in the land slew, because they came down to take away their cattle.</VERS>\r\n      <VERS vnumber=\"22\">And Ephraim their father mourned many days, and his brethren came to comfort him.</VERS>\r\n      <VERS vnumber=\"23\">And he went in to his wife, and she conceived, and bare a son, and he called his name Beriah, because it went evil with his house.</VERS>\r\n      <VERS vnumber=\"24\">And his daughter was Sheerah, who built Beth-horon the nether and the upper, and Uzzen-sheerah.</VERS>\r\n      <VERS vnumber=\"25\">And Rephah was his son, and Resheph, and Telah his son, and Tahan his son,</VERS>\r\n      <VERS vnumber=\"26\">Ladan his son, Ammihud his son, Elishama his son,</VERS>\r\n      <VERS vnumber=\"27\">Nun his son, Joshua his son.</VERS>\r\n      <VERS vnumber=\"28\">And their possessions and habitations were Beth-el and the towns thereof, and eastward Naaran, and westward Gezer, with the towns thereof; Shechem also and the towns thereof, unto Azzah and the towns thereof;</VERS>\r\n      <VERS vnumber=\"29\">and by the borders of the children of Manasseh, Beth-shean and its towns, Taanach and its towns, Megiddo and its towns, Dor and its towns. In these dwelt the children of Joseph the son of Israel.</VERS>\r\n      <VERS vnumber=\"30\">The sons of Asher: Imnah, and Ishvah, and Ishvi, and Beriah, and Serah their sister.</VERS>\r\n      <VERS vnumber=\"31\">And the sons of Beriah: Heber, and Malchiel, who was the father of Birzaith.</VERS>\r\n      <VERS vnumber=\"32\">And Heber begat Japhlet, and Shomer, and Hotham, and Shua their sister.</VERS>\r\n      <VERS vnumber=\"33\">And the sons of Japhlet: Pasach, and Bimhal, and Ashvath. These are the children of Japhlet.</VERS>\r\n      <VERS vnumber=\"34\">And the sons of Shemer: Ahi, and Rohgah, Jehubbah, and Aram.</VERS>\r\n      <VERS vnumber=\"35\">And the sons of Helem his brother: Zophah, and Imna, and Shelesh, and Amal.</VERS>\r\n      <VERS vnumber=\"36\">The sons of Zophah: Suah, and Harnepher, and Shual, and Beri, and Imrah,</VERS>\r\n      <VERS vnumber=\"37\">Bezer, and Hod, and Shamma, and Shilshah, and Ithran, and Beera.</VERS>\r\n      <VERS vnumber=\"38\">And the sons of Jether: Jephunneh, and Pispa, and Ara.</VERS>\r\n      <VERS vnumber=\"39\">And the sons of Ulla: Arah, and Hanniel, and Rizia.</VERS>\r\n      <VERS vnumber=\"40\">All these were the children of Asher, heads of the fathers` houses, choice and mighty men of valor, chief of the princes. And the number of them reckoned by genealogy for service in war was twenty and six thousand men.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">And Benjamin begat Bela his first-born, Ashbel the second, and Aharah the third,</VERS>\r\n      <VERS vnumber=\"2\">Nohah the fourth, and Rapha the fifth.</VERS>\r\n      <VERS vnumber=\"3\">And Bela had sons: Addar, and Gera, and Abihud,</VERS>\r\n      <VERS vnumber=\"4\">and Abishua, and Naaman, and Ahoah,</VERS>\r\n      <VERS vnumber=\"5\">and Gera, and Shephuphan, and Huram.</VERS>\r\n      <VERS vnumber=\"6\">And these are the sons of Ehud: these are the heads of fathers` [houses] of the inhabitants of Geba, and they carried them captive to Manahath:</VERS>\r\n      <VERS vnumber=\"7\">and Naaman, and Ahijah, and Gera, he carried them captive: and he begat Uzza and Ahihud.</VERS>\r\n      <VERS vnumber=\"8\">And Shaharaim begat children in the field of Moab, after he had sent them away; Hushim and Baara were his wives.</VERS>\r\n      <VERS vnumber=\"9\">And he begat of Hodesh his wife, Jobab, and Zibia, and Mesha, and Malcam,</VERS>\r\n      <VERS vnumber=\"10\">and Jeuz, and Shachia, and Mirmah. These were his sons, heads of fathers` [houses].</VERS>\r\n      <VERS vnumber=\"11\">And of Hushim he begat Abitub and Elpaal.</VERS>\r\n      <VERS vnumber=\"12\">And the sons of Elpaal: Eber, and Misham, and Shemed, who built Ono and Lod, with the towns thereof;</VERS>\r\n      <VERS vnumber=\"13\">and Beriah, and Shema, who were heads of fathers` [houses] of the inhabitants of Aijalon, who put to flight the inhabitants of Gath;</VERS>\r\n      <VERS vnumber=\"14\">and Ahio, Shashak, and Jeremoth,</VERS>\r\n      <VERS vnumber=\"15\">and Zebadiah, and Arad, and Eder,</VERS>\r\n      <VERS vnumber=\"16\">and Michael, and Ishpah, and Joha, the sons of Beriah,</VERS>\r\n      <VERS vnumber=\"17\">and Zebadiah, and Meshullam, and Hizki, and Heber,</VERS>\r\n      <VERS vnumber=\"18\">and Ishmerai, and Izliah, and Jobab, the sons of Elpaal,</VERS>\r\n      <VERS vnumber=\"19\">and Jakim, and Zichri, and Zabdi,</VERS>\r\n      <VERS vnumber=\"20\">and Elienai, and Zillethai, and Eliel,</VERS>\r\n      <VERS vnumber=\"21\">and Adaiah, and Beraiah, and Shimrath, the sons of Shimei,</VERS>\r\n      <VERS vnumber=\"22\">and Ishpan, and Eber, and Eliel,</VERS>\r\n      <VERS vnumber=\"23\">and Abdon, and Zichri, and Hanan,</VERS>\r\n      <VERS vnumber=\"24\">and Hananiah, and Elam, and Anthothijah,</VERS>\r\n      <VERS vnumber=\"25\">and Iphdeiah, and Penuel, the sons of Shashak,</VERS>\r\n      <VERS vnumber=\"26\">and Shamsherai, and Shehariah, and Athaliah,</VERS>\r\n      <VERS vnumber=\"27\">and Jaareshiah, and Elijah, and Zichri, the sons of Jeroham.</VERS>\r\n      <VERS vnumber=\"28\">These were heads of fathers` [houses] throughout their generations, chief men: these dwelt in Jerusalem.</VERS>\r\n      <VERS vnumber=\"29\">And in Gibeon there dwelt the father of Gibeon, [Jeiel], whose wife`s name was Maacah;</VERS>\r\n      <VERS vnumber=\"30\">and his first-born son Abdon, and Zur, and Kish, and Baal, and Nadab,</VERS>\r\n      <VERS vnumber=\"31\">and Gedor, and Ahio, and Zecher.</VERS>\r\n      <VERS vnumber=\"32\">And Mikloth begat Shimeah. And they also dwelt with their brethren in Jerusalem, over against their brethren.</VERS>\r\n      <VERS vnumber=\"33\">And Ner begat Kish; and Kish begat Saul; and Saul begat Jonathan, and Malchi-shua, and Abinadab, and Eshbaal.</VERS>\r\n      <VERS vnumber=\"34\">And the son of Jonathan was Merib-baal; and Merib-baal begat Micah.</VERS>\r\n      <VERS vnumber=\"35\">And the sons of Micah: Pithon, and Melech, and Tarea, and Ahaz.</VERS>\r\n      <VERS vnumber=\"36\">And Ahaz begat Jehoaddah; and Jehoaddah begat Alemeth, and Azmaveth, and Zimri; and Zimri begat Moza.</VERS>\r\n      <VERS vnumber=\"37\">And Moza begat Binea; Raphah was his son, Eleasah his son, Azel his son.</VERS>\r\n      <VERS vnumber=\"38\">And 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.</VERS>\r\n      <VERS vnumber=\"39\">And the sons of Eshek his brother: Ulam his first-born, Jeush the second, and Eliphelet the third.</VERS>\r\n      <VERS vnumber=\"40\">And the sons of Ulam were mighty men of valor, archers, and had many sons, and sons` sons, a hundred and fifty. All these were of the sons of Benjamin.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">So all Israel were reckoned by genealogies; and, behold, they are written in the book of the kings of Israel: and Judah was carried away captive to Babylon for their transgression.</VERS>\r\n      <VERS vnumber=\"2\">Now the first inhabitants that dwelt in their possessions in their cities were Israel, the priests, the Levites, and the Nethinim.</VERS>\r\n      <VERS vnumber=\"3\">And in Jerusalem dwelt of the children of Judah, and of the children of Benjamin, and of the children of Ephraim and Manasseh:</VERS>\r\n      <VERS vnumber=\"4\">Uthai the son of Ammihud, the son of Omri, the son of Imri, the son of Bani, of the children of Perez the son of Judah.</VERS>\r\n      <VERS vnumber=\"5\">And of the Shilonites: Asaiah the first-born, and his sons.</VERS>\r\n      <VERS vnumber=\"6\">And of the sons of Zerah: Jeuel, and their brethren, six hundred and ninety.</VERS>\r\n      <VERS vnumber=\"7\">And of the sons of Benjamin: Sallu the son of Meshullam, the son of Hodaviah, the son of Hassenuah,</VERS>\r\n      <VERS vnumber=\"8\">and Ibneiah the son of Jeroham, and Elah the son of Uzzi, the son of Michri, and Meshullam the son of Shephatiah, the son of Reuel, the son of Ibnijah;</VERS>\r\n      <VERS vnumber=\"9\">and their brethren, according to their generations, nine hundred and fifty and six. All these men were heads of fathers` [houses] by their fathers` houses.</VERS>\r\n      <VERS vnumber=\"10\">And of the priests: Jedaiah, and Jehoiarib, Jachin,</VERS>\r\n      <VERS vnumber=\"11\">and 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;</VERS>\r\n      <VERS vnumber=\"12\">and Adaiah the son of Jeroham, the son of Pashhur, the son of Malchijah, and Maasai the son of Adiel, the son of Jahzerah, the son of Meshullam, the son of Meshillemith, the son of Immer;</VERS>\r\n      <VERS vnumber=\"13\">and their brethren, heads of their fathers` houses, a thousand and seven hundred and threescore; very able men for the work of the service of the house of God.</VERS>\r\n      <VERS vnumber=\"14\">And of the Levites: Shemaiah the son of Hasshub, the son of Azrikam, the son of Hashabiah, of the sons of Merari;</VERS>\r\n      <VERS vnumber=\"15\">and Bakbakkar, Heresh, and Galal, and Mattaniah the son of Mica, the son of Zichri, the son of Asaph,</VERS>\r\n      <VERS vnumber=\"16\">and 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.</VERS>\r\n      <VERS vnumber=\"17\">And the porters: Shallum, and Akkub, and Talmon, and Ahiman, and their brethren (Shallum was the chief),</VERS>\r\n      <VERS vnumber=\"18\">who hitherto [waited] in the king`s gate eastward: they were the porters for the camp of the children of Levi.</VERS>\r\n      <VERS vnumber=\"19\">And Shallum the son of Kore, the son of Ebiasaph, the son of Korah, and his brethren, of his father`s house, the Korahites, were over the work of the service, keepers of the thresholds of the tent: and their fathers had been over the camp of Jehovah, keepers of the entry.</VERS>\r\n      <VERS vnumber=\"20\">And Phinehas the son of Eleazar was ruler over them in time past, [and] Jehovah was with him.</VERS>\r\n      <VERS vnumber=\"21\">Zechariah the son of Meshelemiah was porter of the door of the tent of meeting.</VERS>\r\n      <VERS vnumber=\"22\">All these that were chosen to be porters in the thresholds were two hundred and twelve. These were reckoned by genealogy in their villages, whom David and Samuel the seer did ordain in their office of trust.</VERS>\r\n      <VERS vnumber=\"23\">So they and their children had the oversight of the gates of the house of Jehovah, even the house of the tent, by wards.</VERS>\r\n      <VERS vnumber=\"24\">On the four sides were the porters, toward the east, west, north, and south.</VERS>\r\n      <VERS vnumber=\"25\">And their brethren, in their villages, were to come in every seven days from time to time to be with them:</VERS>\r\n      <VERS vnumber=\"26\">for the four chief porters, who were Levites, were in an office of trust, and were over the chambers and over the treasuries in the house of God.</VERS>\r\n      <VERS vnumber=\"27\">And they lodged round about the house of God, because the charge [thereof] was upon them; and to them pertained the opening thereof morning by morning.</VERS>\r\n      <VERS vnumber=\"28\">And certain of them had charge of the vessels of service; for by count were these brought in and by count were these taken out.</VERS>\r\n      <VERS vnumber=\"29\">Some of them also were appointed over the furniture, and over all the vessels of the sanctuary, and over the fine flour, and the wine, and the oil, and the frankincense, and the spices.</VERS>\r\n      <VERS vnumber=\"30\">And some of the sons of the priests prepared the confection of the spices.</VERS>\r\n      <VERS vnumber=\"31\">And Mattithiah, one of the Levites, who was the first-born of Shallum the Korahite, had the office of trust over the things that were baked in pans.</VERS>\r\n      <VERS vnumber=\"32\">And some of their brethren, of the sons of the Kohathites, were over the showbread, to prepare it every sabbath.</VERS>\r\n      <VERS vnumber=\"33\">And these are the singers, heads of fathers` [houses] of the Levites, [who dwelt] in the chambers [and were] free [from other service]; for they were employed in their work day and night.</VERS>\r\n      <VERS vnumber=\"34\">These were heads of fathers` [houses] of the Levites, throughout their generations, chief men: these dwelt at Jerusalem.</VERS>\r\n      <VERS vnumber=\"35\">And in Gibeon there dwelt the father of Gibeon, Jeiel, whose wife`s name was Maacah:</VERS>\r\n      <VERS vnumber=\"36\">and his first-born son Abdon, and Zur, and Kish, and Baal, and Ner, and Nadab,</VERS>\r\n      <VERS vnumber=\"37\">and Gedor, and Ahio, and Zechariah, and Mikloth.</VERS>\r\n      <VERS vnumber=\"38\">And Mikloth begat Shimeam. And they also dwelt with their brethren in Jerusalem, over against their brethren.</VERS>\r\n      <VERS vnumber=\"39\">And Ner begat Kish; and Kish begat Saul; and Saul begat Jonathan, and Malchishua, and Abinadab, and Eshbaal.</VERS>\r\n      <VERS vnumber=\"40\">And the son of Jonathan was Merib-baal; and Merib-baal begat Micah.</VERS>\r\n      <VERS vnumber=\"41\">And the sons of Micah: Pithon, and Melech, and Tahrea, [and Ahaz].</VERS>\r\n      <VERS vnumber=\"42\">And Ahaz begat Jarah; and Jarah begat Alemeth, and Azmaveth, and Zimri; and Zimri begat Moza;</VERS>\r\n      <VERS vnumber=\"43\">and Moza begat Binea; and Rephaiah his son, Eleasah his son, Azel his son.</VERS>\r\n      <VERS vnumber=\"44\">And Azel had six sons, whose names are these: Azrikam, Bocheru, and Ishmael, and Sheariah, and Obadiah, and Hanan: these were the sons of Azel.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">Now the Philistines fought against Israel: and the men of Israel fled from before the Philistines, and fell down slain in mount Gilboa.</VERS>\r\n      <VERS vnumber=\"2\">And the Philistines followed hard after Saul and after his sons; and the Philistines slew Jonathan, and Abinadab, and Malchi-shua, the sons of Saul.</VERS>\r\n      <VERS vnumber=\"3\">And the battle went sore against Saul, and the archers overtook him; and he was distressed by reason of the archers.</VERS>\r\n      <VERS vnumber=\"4\">Then said Saul unto his armor-bearer, Draw thy sword, and thrust me through therewith, lest these uncircumcised come and abuse me. But his armor-bearer would not; for he was sore afraid. Therefore Saul took his sword, and fell upon it.</VERS>\r\n      <VERS vnumber=\"5\">And when his armor-bearer saw that Saul was dead, he likewise fell upon his sword, and died.</VERS>\r\n      <VERS vnumber=\"6\">So Saul died, and his three sons; and all his house died together.</VERS>\r\n      <VERS vnumber=\"7\">And when all the men of Israel that were in the valley saw that they fled, and that Saul and his sons were dead, they forsook their cities, and fled; and the Philistines came and dwelt in them.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And they stripped him, and took his head, and his armor, and sent into the land of the Philistines round about, to carry the tidings unto their idols, and to the people.</VERS>\r\n      <VERS vnumber=\"10\">And they put his armor in the house of their gods, and fastened his head in the house of Dagon.</VERS>\r\n      <VERS vnumber=\"11\">And when all Jabesh-gilead heard all that the Philistines had done to Saul,</VERS>\r\n      <VERS vnumber=\"12\">all the valiant men arose, 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.</VERS>\r\n      <VERS vnumber=\"13\">So Saul died for his trespass which he committed against Jehovah, because of the word of Jehovah, which he kept not; and also for that he asked counsel of one that had a familiar spirit, to inquire [thereby],</VERS>\r\n      <VERS vnumber=\"14\">and inquired not of Jehovah: therefore he slew him, and turned the kingdom unto David the son of Jesse.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">Then all Israel gathered themselves to David unto Hebron, saying, Behold, we are thy bone and thy flesh.</VERS>\r\n      <VERS vnumber=\"2\">In times past, even when Saul was king, it was thou that leddest out and broughtest in Israel: and Jehovah thy God said unto thee, Thou shalt be shepherd of my people Israel, and thou shalt be prince over my people Israel.</VERS>\r\n      <VERS vnumber=\"3\">So all the elders of Israel came to the king to Hebron; and David made a covenant with them in Hebron before Jehovah; and they anointed David king over Israel, according to the word of Jehovah by Samuel.</VERS>\r\n      <VERS vnumber=\"4\">And David and all Israel went to Jerusalem (the same is Jebus); and the Jebusites, the inhabitants of the land, were there.</VERS>\r\n      <VERS vnumber=\"5\">And the inhabitants of Jebus said to David, Thou shalt not come in hither. Nevertheless David took the stronghold of Zion; the same is the city of David.</VERS>\r\n      <VERS vnumber=\"6\">And David said, Whosoever smiteth the Jebusites first shall be chief and captain. And Joab the son of Zeruiah went up first, and was made chief.</VERS>\r\n      <VERS vnumber=\"7\">And David dwelt in the stronghold; therefore they called it the city of David.</VERS>\r\n      <VERS vnumber=\"8\">And he built the city round about, from Millo even round about; and Joab repaired the rest of the city.</VERS>\r\n      <VERS vnumber=\"9\">And David waxed greater and greater; for Jehovah of hosts was with him.</VERS>\r\n      <VERS vnumber=\"10\">Now these are the chief of the mighty men whom David had, who showed themselves strong with him in his kingdom, together with all Israel, to make him king, according to the word of Jehovah concerning Israel.</VERS>\r\n      <VERS vnumber=\"11\">And this is the number of the mighty men whom David had: Jashobeam, the son of a Hachmonite, the chief of the thirty; he lifted up his spear against three hundred and slew them at one time.</VERS>\r\n      <VERS vnumber=\"12\">And after him was Eleazar the son of Dodo, the Ahohite, who was one of the three mighty men.</VERS>\r\n      <VERS vnumber=\"13\">He was with David at Pasdammim, and there the Philistines were gathered together to battle, where was a plot of ground full of barley; and the people fled from before the Philistines.</VERS>\r\n      <VERS vnumber=\"14\">And they stood in the midst of the plot, and defended it, and slew the Philistines; and Jehovah saved them by a great victory.</VERS>\r\n      <VERS vnumber=\"15\">And three of the thirty chief men went down to the rock to David, into the cave of Adullam; and the host of the Philistines were encamped in the valley of Rephaim.</VERS>\r\n      <VERS vnumber=\"16\">And David was then in the stronghold, and the garrison of the Philistines was then in Beth-lehem.</VERS>\r\n      <VERS vnumber=\"17\">And David longed, and said, Oh that one would give me water to drink of the well of Beth-lehem, which is by the gate!</VERS>\r\n      <VERS vnumber=\"18\">And the three brake through the host of the Philistines, and drew water out of the well of Beth-lehem, that was by the gate, and took it, and brought it to David: but David would not drink thereof, but poured it out unto Jehovah,</VERS>\r\n      <VERS vnumber=\"19\">and said, My God forbid it me, that I should do this: 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 the three mighty men.</VERS>\r\n      <VERS vnumber=\"20\">And Abishai, the brother of Joab, he was chief of the three; for he lifted up his spear against three hundred and slew them, and had a name among the three.</VERS>\r\n      <VERS vnumber=\"21\">Of the three, he was more honorable than the two, and was made their captain: howbeit he attained not to the [first] three.</VERS>\r\n      <VERS vnumber=\"22\">Benaiah the son of Jehoiada, the son of a valiant man of Kabzeel, who had done mighty deeds, he slew the two [sons of] Ariel of Moab: he went down also and slew a lion in the midst of a pit in time of snow.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">These things did Benaiah the son of Jehoiada, and had a name among the three mighty men.</VERS>\r\n      <VERS vnumber=\"25\">Behold, he was more honorable than the thirty, but he attained not to the [first] three: and David set him over his guard.</VERS>\r\n      <VERS vnumber=\"26\">Also the mighty men of the armies: Asahel the brother of Joab, Elhanan the son of Dodo of Beth-lehem,</VERS>\r\n      <VERS vnumber=\"27\">Shammoth the Harorite, Helez the Pelonite,</VERS>\r\n      <VERS vnumber=\"28\">Ira the son of Ikkesh the Tekoite, Abiezer the Anathothite,</VERS>\r\n      <VERS vnumber=\"29\">Sibbecai the Hushathite, Ilai the Ahohite,</VERS>\r\n      <VERS vnumber=\"30\">Maharai the Netophathite, Heled the son of Baanah the Netophathite,</VERS>\r\n      <VERS vnumber=\"31\">Ithai the son of Ribai of Gibeah of the children of Benjamin, Benaiah the Pirathonite,</VERS>\r\n      <VERS vnumber=\"32\">Hurai of the brooks of Gaash, Abiel the Arbathite,</VERS>\r\n      <VERS vnumber=\"33\">Azmaveth the Baharumite, Eliahba the Shaalbonite,</VERS>\r\n      <VERS vnumber=\"34\">the sons of Hashem the Gizonite, Jonathan the son of Shagee the Hararite,</VERS>\r\n      <VERS vnumber=\"35\">Ahiam the son of Sacar the Hararite, Eliphal the son of Ur,</VERS>\r\n      <VERS vnumber=\"36\">Hepher the Mecherathite, Ahijah the Pelonite,</VERS>\r\n      <VERS vnumber=\"37\">Hezro the Carmelite, Naarai the son of Ezbai,</VERS>\r\n      <VERS vnumber=\"38\">Joel the brother of Nathan, Mibhar the son of Hagri,</VERS>\r\n      <VERS vnumber=\"39\">Zelek the Ammonite, Naharai the Berothite, the armorbearer of Joab the son of Zeruiah,</VERS>\r\n      <VERS vnumber=\"40\">Ira the Ithrite, Gareb the Ithrite,</VERS>\r\n      <VERS vnumber=\"41\">Uriah the Hittite, Zabad the son of Ahlai,</VERS>\r\n      <VERS vnumber=\"42\">Adina the son of Shiza the Reubenite, a chief of the Reubenites, and thirty with him,</VERS>\r\n      <VERS vnumber=\"43\">Hanan the son of Maacah, and Joshaphat the Mithnite,</VERS>\r\n      <VERS vnumber=\"44\">Uzzia the Ashterathite, Shama and Jeiel the sons of Hotham the Aroerite,</VERS>\r\n      <VERS vnumber=\"45\">Jediael the son of Shimri, and Joha his brother, the Tizite,</VERS>\r\n      <VERS vnumber=\"46\">Eliel the Mahavite, and Jeribai, and Joshaviah, the sons of Elnaam, and Ithmah the Moabite,</VERS>\r\n      <VERS vnumber=\"47\">Eliel, and Obed, and Jaasiel the Mezobaite.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">Now 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, his helpers in war.</VERS>\r\n      <VERS vnumber=\"2\">They were armed with bows, and could use both the right hand and the left in slinging stones and in shooting arrows from the bow: they were of Saul`s brethren of Benjamin.</VERS>\r\n      <VERS vnumber=\"3\">The chief was Ahiezer; then Joash, the sons of Shemaah the Gibeathite, and Jeziel, and Pelet, the sons of Azmaveth, and Beracah, and Jehu the Anathothite,</VERS>\r\n      <VERS vnumber=\"4\">and Ishmaiah the Gibeonite, a mighty man among the thirty, and over the thirty, and Jeremiah, and Jahaziel, and Johanan, and Jozabad the Gederathite,</VERS>\r\n      <VERS vnumber=\"5\">Eluzai, and Jerimoth, and Bealiah, and Shemariah, and Shephatiah the Haruphite,</VERS>\r\n      <VERS vnumber=\"6\">Elkanah, and Isshiah, and Azarel, and Joezer, and Jashobeam, the Korahites,</VERS>\r\n      <VERS vnumber=\"7\">and Joelah, and Zebadiah, the sons of Jeroham of Gedor.</VERS>\r\n      <VERS vnumber=\"8\">And of the Gadites there separated themselves unto David to the stronghold in the wilderness, mighty men of valor, men trained for war, that could handle shield and spear; whose faces were like the faces of lions, and they were as swift as the roes upon the mountains;</VERS>\r\n      <VERS vnumber=\"9\">Ezer the chief, Obadiah the second, Eliab the third,</VERS>\r\n      <VERS vnumber=\"10\">Mishmannah the fourth, Jeremiah the fifth,</VERS>\r\n      <VERS vnumber=\"11\">Attai the sixth, Eliel the seventh,</VERS>\r\n      <VERS vnumber=\"12\">Johanan the eighth, Elzabad the ninth,</VERS>\r\n      <VERS vnumber=\"13\">Jeremiah the tenth, Machbannai the eleventh.</VERS>\r\n      <VERS vnumber=\"14\">These of the sons of Gad were captains of the host: he that was least was equal to a hundred, and the greatest to a thousand.</VERS>\r\n      <VERS vnumber=\"15\">These are they that went over the Jordan in the first month, when it had overflowed all its banks; and they put to flight all them of the valleys, both toward the east, and toward the west.</VERS>\r\n      <VERS vnumber=\"16\">And there came of the children of Benjamin and Judah to the stronghold unto David.</VERS>\r\n      <VERS vnumber=\"17\">And David went out to meet them, and answered and said unto them, If ye be come peaceably unto me to help me, my heart shall be knit unto you; but if [ye be come] to betray me to mine adversaries, seeing there is no wrong in my hands, the God of our fathers look thereon, and rebuke it.</VERS>\r\n      <VERS vnumber=\"18\">Then the Spirit came upon Amasai, who was chief of the thirty, [and he said], Thine are we, David, and on thy side, thou son of Jesse: peace, peace be unto thee, and peace be to thy helpers; for thy God helpeth thee. Then David received them, and made them captains of the band.</VERS>\r\n      <VERS vnumber=\"19\">Of Manasseh also there fell away some 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 away to his master Saul to the jeopardy of our heads.</VERS>\r\n      <VERS vnumber=\"20\">As he went to Ziklag, there fell to him of Manasseh, Adnah, and Jozabad, and Jediael, and Michael, and Jozabad, and Elihu, and Zillethai, captains of thousands that were of Manasseh.</VERS>\r\n      <VERS vnumber=\"21\">And they helped David against the band of rovers: for they were all mighty men of valor, and were captains in the host.</VERS>\r\n      <VERS vnumber=\"22\">For from day to day men came to David to help him, until there was a great host, like the host of God.</VERS>\r\n      <VERS vnumber=\"23\">And these are the numbers of the heads of them that were armed for war, who came to David to Hebron, to turn the kingdom of Saul to him, according to the word of Jehovah.</VERS>\r\n      <VERS vnumber=\"24\">The children of Judah that bare shield and spear were six thousand and eight hundred, armed for war.</VERS>\r\n      <VERS vnumber=\"25\">Of the children of Simeon, mighty men of valor for the war, seven thousand and one hundred.</VERS>\r\n      <VERS vnumber=\"26\">Of the children of Levi four thousand and six hundred.</VERS>\r\n      <VERS vnumber=\"27\">And Jehoiada was the leader of [the house of] Aaron; and with him were three thousand and seven hundred,</VERS>\r\n      <VERS vnumber=\"28\">and Zadok, a young man mighty of valor, and of his father`s house twenty and two captains.</VERS>\r\n      <VERS vnumber=\"29\">And of the children of Benjamin, the brethren of Saul, three thousand: for hitherto the greatest part of them had kept their allegiance to the house of Saul.</VERS>\r\n      <VERS vnumber=\"30\">And of the children of Ephraim twenty thousand and eight hundred, mighty men of valor, famous men in their fathers` houses.</VERS>\r\n      <VERS vnumber=\"31\">And of the half-tribe of Manasseh eighteen thousand, who were mentioned by name, to come and make David king.</VERS>\r\n      <VERS vnumber=\"32\">And of the children of Issachar, 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.</VERS>\r\n      <VERS vnumber=\"33\">Of Zebulun, such as were able to go out in the host, that could set the battle in array, with all manner of instruments of war, fifty thousand, and that could order [the battle array, and were] not of double heart.</VERS>\r\n      <VERS vnumber=\"34\">And of Naphtali a thousand captains, and with them with shield and spear thirty and seven thousand.</VERS>\r\n      <VERS vnumber=\"35\">And of the Danites that could set the battle in array, twenty and eight thousand and six hundred.</VERS>\r\n      <VERS vnumber=\"36\">And of Asher, such as were able to go out in the host, that could set the battle in array, forty thousand.</VERS>\r\n      <VERS vnumber=\"37\">And on the other side of the Jordan, of the Reubenites, and the Gadites, and of the half-tribe of Manasseh, with all manner of instruments of war for the battle, a hundred and twenty thousand.</VERS>\r\n      <VERS vnumber=\"38\">All these being men of war, that could order the battle array, 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.</VERS>\r\n      <VERS vnumber=\"39\">And they were there with David three days, eating and drinking; for their brethren had made preparation for them.</VERS>\r\n      <VERS vnumber=\"40\">Moreover they that were nigh unto them, [even] as far as Issachar and Zebulun and Naphtali, brought bread on asses, and on camels, and on mules, and on oxen, victuals of meal, cakes of figs, and clusters of raisins, and wine, and oil, and oxen, and sheep in abundance: for there was joy in Israel.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">And David consulted with the captains of thousands and of hundreds, even with every leader.</VERS>\r\n      <VERS vnumber=\"2\">And David said unto all the assembly of Israel, If it seem good unto you, and if it be of Jehovah our God, let us send abroad every where unto our brethren that are left in all the land of Israel, with whom the priests and Levites are in their cities that have suburbs, that they may gather themselves unto us;</VERS>\r\n      <VERS vnumber=\"3\">and let us bring again the ark of our God to us: for we sought not unto it in the days of Saul.</VERS>\r\n      <VERS vnumber=\"4\">And all the assembly said that they would do so; for the thing was right in the eyes of all the people.</VERS>\r\n      <VERS vnumber=\"5\">So David assembled all Israel together, from the Shihor [the brook] of Egypt even unto the entrance of Hamath, to bring the ark of God from Kiriath-jearim.</VERS>\r\n      <VERS vnumber=\"6\">And David went up, and all Israel, to Baalah, [that is], to Kiriath-jearim, which belonged to Judah, to bring up from thence the ark of God Jehovah that sitteth [above] the cherubim, that is called by the Name.</VERS>\r\n      <VERS vnumber=\"7\">And they carried the ark of God upon a new cart, [and brought it] out of the house of Abinadab: and Uzza and Ahio drove the cart.</VERS>\r\n      <VERS vnumber=\"8\">And David and all Israel played before God with all their might, even with songs, and with harps, and with psalteries, and with timbrels, and with cymbals, and with trumpets.</VERS>\r\n      <VERS vnumber=\"9\">And when they came unto the threshing-floor of Chidon, Uzza put forth his hand to hold the ark; for the oxen stumbled.</VERS>\r\n      <VERS vnumber=\"10\">And the anger of Jehovah was kindled against Uzza, and he smote him, because he put forth his hand to the ark; and there he died before God.</VERS>\r\n      <VERS vnumber=\"11\">And David was displeased, because Jehovah had broken forth upon Uzza; and he called that place Perez-uzza, unto this day.</VERS>\r\n      <VERS vnumber=\"12\">And David was afraid of God that day, saying, How shall I bring the ark of God home to me?</VERS>\r\n      <VERS vnumber=\"13\">So David removed not the ark unto him into the city of David, but carried it aside into the house of Obed-edom the Gittite.</VERS>\r\n      <VERS vnumber=\"14\">And the ark of God remained with the family of Obed-edom in his house three months: and Jehovah blessed the house of Obed-edom, and all that he had.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">And Hiram king of Tyre sent messengers to David, and cedar-trees, and masons, and carpenters, to build him a house.</VERS>\r\n      <VERS vnumber=\"2\">And David perceived that Jehovah had established him king over Israel; for his kingdom was exalted on high, for his people Israel`s sake.</VERS>\r\n      <VERS vnumber=\"3\">And David took more wives at Jerusalem; and David begat more sons and daughters.</VERS>\r\n      <VERS vnumber=\"4\">And these are the names of the children whom he had in Jerusalem: Shammua, and Shobab, Nathan, and Solomon,</VERS>\r\n      <VERS vnumber=\"5\">and Ibhar, and Elishua, and Elpelet,</VERS>\r\n      <VERS vnumber=\"6\">and Nogah, and Nepheg, and Japhia,</VERS>\r\n      <VERS vnumber=\"7\">and Elishama, and Beeliada, and Eliphelet.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">Now the Philistines had come and made a raid in the valley of Rephaim.</VERS>\r\n      <VERS vnumber=\"10\">And David inquired of God, saying, Shall I go up against the Philistines? and wilt thou deliver them into my hand? And Jehovah said unto him, Go up; for I will deliver them into thy hand.</VERS>\r\n      <VERS vnumber=\"11\">So they came up to Baal-perazim, and David smote them there; and David said, God hath broken mine enemies by my hand, like the breach of waters. Therefore they called the name of that place Baal-perazim.</VERS>\r\n      <VERS vnumber=\"12\">And they left their gods there; and David gave commandment, and they were burned with fire.</VERS>\r\n      <VERS vnumber=\"13\">And the Philistines yet again made a raid in the valley.</VERS>\r\n      <VERS vnumber=\"14\">And David inquired again of God; and God said unto him, Thou shalt not go up after them: turn away from them, and come upon them over against the mulberry-trees.</VERS>\r\n      <VERS vnumber=\"15\">And it shall be, when thou hearest the sound of marching in the tops of the mulberry-trees, that then thou shalt go out to battle; for God is gone out before thee to smite the host of the Philistines.</VERS>\r\n      <VERS vnumber=\"16\">And David did as God commanded him: and they smote the host of the Philistines from Gibeon even to Gezer.</VERS>\r\n      <VERS vnumber=\"17\">And the fame of David went out into all lands; and Jehovah brought the fear of him upon all nations.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">And [David] made him houses in the city of David; and he prepared a place for the ark of God, and pitched for it a tent.</VERS>\r\n      <VERS vnumber=\"2\">Then David said, None ought to carry the ark of God but the Levites: for them hath Jehovah chosen to carry the ark of God, and to minister unto him for ever.</VERS>\r\n      <VERS vnumber=\"3\">And David assembled all Israel at Jerusalem, to bring up the ark of Jehovah unto its place, which he had prepared for it.</VERS>\r\n      <VERS vnumber=\"4\">And David gathered together the sons of Aaron, and the Levites:</VERS>\r\n      <VERS vnumber=\"5\">of the sons of Kohath, Uriel the chief, and his brethren a hundred and twenty;</VERS>\r\n      <VERS vnumber=\"6\">of the sons of Merari, Asaiah the chief, and his brethren two hundred and twenty;</VERS>\r\n      <VERS vnumber=\"7\">of the sons of Gershom, Joel the chief, and his brethren a hundred and thirty;</VERS>\r\n      <VERS vnumber=\"8\">of the sons of Elizaphan, Shemaiah the chief, and his brethren two hundred;</VERS>\r\n      <VERS vnumber=\"9\">of the sons of Hebron, Eliel the chief, and his brethren fourscore;</VERS>\r\n      <VERS vnumber=\"10\">of the sons of Uzziel, Amminadab the chief, and his brethren a hundred and twelve.</VERS>\r\n      <VERS vnumber=\"11\">And David called for Zadok and Abiathar the priests, and for the Levites, for Uriel, Asaiah, and Joel, Shemaiah, and Eliel, and Amminadab,</VERS>\r\n      <VERS vnumber=\"12\">and said unto them, Ye are the heads of the fathers` [houses] of the Levites: sanctify yourselves, both ye and your brethren, that ye may bring up the ark of Jehovah, the God of Israel, unto [the place] that I have prepared for it.</VERS>\r\n      <VERS vnumber=\"13\">For because ye [bare it] not at the first, Jehovah our God made a breach upon us, for that we sought him not according to the ordinance.</VERS>\r\n      <VERS vnumber=\"14\">So the priests and the Levites sanctified themselves to bring up the ark of Jehovah, the God of Israel.</VERS>\r\n      <VERS vnumber=\"15\">And 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 Jehovah.</VERS>\r\n      <VERS vnumber=\"16\">And David spake to the chief of the Levites to appoint their brethren the singers, with instruments of music, psalteries and harps and cymbals, sounding aloud and lifting up the voice with joy.</VERS>\r\n      <VERS vnumber=\"17\">So 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;</VERS>\r\n      <VERS vnumber=\"18\">and 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 Eliphelehu, and Mikneiah, and Obed-edom, and Jeiel, the doorkeepers.</VERS>\r\n      <VERS vnumber=\"19\">So the singers, Heman, Asaph, and Ethan, [were appointed] with cymbals of brass to sound aloud;</VERS>\r\n      <VERS vnumber=\"20\">and Zechariah, and Aziel, and Shemiramoth, and Jehiel, and Unni, and Eliab, and Maaseiah, and Benaiah, with psalteries set to Alamoth;</VERS>\r\n      <VERS vnumber=\"21\">and Mattithiah, and Eliphelehu, and Mikneiah, and Obed-edom, and Jeiel, and Azaziah, with harps set to the Sheminith, to lead.</VERS>\r\n      <VERS vnumber=\"22\">And Chenaniah, chief of the Levites, was over the song: he instructed about the song, because he was skilful.</VERS>\r\n      <VERS vnumber=\"23\">And Berechiah and Elkanah were doorkeepers for the ark.</VERS>\r\n      <VERS vnumber=\"24\">And Shebaniah, and Joshaphat, and Nethanel, and Amasai, and Zechariah, and Benaiah, and Eliezer, the priests, did blow the trumpets before the ark of God: and Obed-edom and Jehiah were doorkeepers for the ark.</VERS>\r\n      <VERS vnumber=\"25\">So David, and the elders of Israel, and the captains over thousands, went to bring up the ark of the covenant of Jehovah out of the house of Obed-edom with joy.</VERS>\r\n      <VERS vnumber=\"26\">And it came to pass, when God helped the Levites that bare the ark of the covenant of Jehovah, that they sacrificed seven bullocks and seven rams.</VERS>\r\n      <VERS vnumber=\"27\">And 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: and David had upon him an ephod of linen.</VERS>\r\n      <VERS vnumber=\"28\">Thus all Israel brought up the ark of the covenant of Jehovah with shouting, and with sound of the cornet, and with trumpets, and with cymbals, sounding aloud with psalteries and harps.</VERS>\r\n      <VERS vnumber=\"29\">And it came to pass, as the ark of the covenant of Jehovah came to the city of David, that Michal the daughter of Saul looked out at the window, and saw king David dancing and playing; and she despised him in her heart.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">And they brought in the ark of God, and set it in the midst of the tent that David had pitched for it: and they offered burnt-offerings and peace-offerings before God.</VERS>\r\n      <VERS vnumber=\"2\">And when David had made an end of offering the burnt-offering and the peace-offerings, he blessed the people in the name of Jehovah.</VERS>\r\n      <VERS vnumber=\"3\">And he dealt to every one of Israel, both man and woman, to every one a loaf of bread, and a portion [of flesh], and a cake of raisins.</VERS>\r\n      <VERS vnumber=\"4\">And he appointed certain of the Levites to minister before the ark of Jehovah, and to celebrate and to thank and praise Jehovah, the God of Israel:</VERS>\r\n      <VERS vnumber=\"5\">Asaph the chief, and second to him Zechariah, Jeiel, and Shemiramoth, and Jehiel, and Mattithiah, and Eliab, and Benaiah, and Obed-edom, and Jeiel, with psalteries and with harps; and Asaph with cymbals, sounding aloud;</VERS>\r\n      <VERS vnumber=\"6\">and Benaiah and Jahaziel the priests with trumpets continually, before the ark of the covenant of God.</VERS>\r\n      <VERS vnumber=\"7\">Then on that day did David first ordain to give thanks unto Jehovah, by the hand of Asaph and his brethren.</VERS>\r\n      <VERS vnumber=\"8\">O give thanks unto Jehovah, call upon his name; Make known his doings among the peoples.</VERS>\r\n      <VERS vnumber=\"9\">Sing unto him, sing praises unto him; Talk ye of all his marvellous works.</VERS>\r\n      <VERS vnumber=\"10\">Glory ye in his holy name; Let the heart of them rejoice that seek Jehovah.</VERS>\r\n      <VERS vnumber=\"11\">Seek ye Jehovah and his strength; Seek his face evermore.</VERS>\r\n      <VERS vnumber=\"12\">Remember his marvellous works that he hath done, His wonders, and the judgments of his mouth,</VERS>\r\n      <VERS vnumber=\"13\">O ye seed of Israel his servant, Ye children of Jacob, his chosen ones.</VERS>\r\n      <VERS vnumber=\"14\">He is Jehovah our God; His judgments are in all the earth.</VERS>\r\n      <VERS vnumber=\"15\">Remember his covenant for ever, The word which he commanded to a thousand generations,</VERS>\r\n      <VERS vnumber=\"16\">[The covenant] which he made with Abraham, And his oath unto Isaac,</VERS>\r\n      <VERS vnumber=\"17\">And confirmed the same unto Jacob for a statute, To Israel for an everlasting covenant,</VERS>\r\n      <VERS vnumber=\"18\">Saying, Unto thee will I give the land of Canaan, The lot of your inheritance;</VERS>\r\n      <VERS vnumber=\"19\">When ye were but a few men in number, Yea, very few, and sojourners in it;</VERS>\r\n      <VERS vnumber=\"20\">And they went about from nation to nation, And from one kingdom to another people.</VERS>\r\n      <VERS vnumber=\"21\">He suffered no man to do them wrong; Yea, he reproved kings for their sakes,</VERS>\r\n      <VERS vnumber=\"22\">[Saying], Touch not mine anointed ones, And do my prophets no harm.</VERS>\r\n      <VERS vnumber=\"23\">Sing unto Jehovah, all the earth; Show forth his salvation from day to day.</VERS>\r\n      <VERS vnumber=\"24\">Declare his glory among the nations, His marvellous works among all the peoples.</VERS>\r\n      <VERS vnumber=\"25\">For great is Jehovah, and greatly to be praised: He also is to be feared above all gods.</VERS>\r\n      <VERS vnumber=\"26\">For all the gods of the peoples are idols: But Jehovah made the heavens.</VERS>\r\n      <VERS vnumber=\"27\">Honor and majesty are before him: Strength and gladness are in his place.</VERS>\r\n      <VERS vnumber=\"28\">Ascribe unto Jehovah, ye kindreds of the peoples, Ascribe unto Jehovah glory and strength;</VERS>\r\n      <VERS vnumber=\"29\">Ascribe unto Jehovah the glory due unto his name: Bring an offering, and come before him: Worship Jehovah in holy array.</VERS>\r\n      <VERS vnumber=\"30\">Tremble before him, all the earth: The world also is established that it cannot be moved.</VERS>\r\n      <VERS vnumber=\"31\">Let the heavens be glad, and let the earth rejoice; And let them say among the nations, Jehovah reigneth.</VERS>\r\n      <VERS vnumber=\"32\">Let the sea roar, and the fulness thereof; Let the field exult, and all that is therein;</VERS>\r\n      <VERS vnumber=\"33\">Then shall the trees of the wood sing for joy before       Jehovah; For he cometh to judge the earth.</VERS>\r\n      <VERS vnumber=\"34\">O give thanks unto Jehovah; for he is good; For his lovingkindness [endureth] for ever.</VERS>\r\n      <VERS vnumber=\"35\">And say ye, Save us, O God of our salvation, And gather us together and deliver us from the nations, To give thanks unto thy holy name, And to triumph in thy praise.</VERS>\r\n      <VERS vnumber=\"36\">Blessed be Jehovah, the God of Israel, From everlasting even to everlasting.     And all the people said, Amen, and praised Jehovah.</VERS>\r\n      <VERS vnumber=\"37\">So he left there, before the ark of the covenant of Jehovah, Asaph and his brethren, to minister before the ark continually, as every day`s work required;</VERS>\r\n      <VERS vnumber=\"38\">and Obed-edom with their brethren, threescore and eight; Obed-edom also the son of Jeduthun and Hosah to be doorkeepers;</VERS>\r\n      <VERS vnumber=\"39\">and Zadok the priest, and his brethren the priests, before the tabernacle of Jehovah in the high place that was at Gibeon,</VERS>\r\n      <VERS vnumber=\"40\">to offer burnt-offerings unto Jehovah upon the altar of burnt-offering continually morning and evening, even according to all that is written in the law of Jehovah, which he commanded unto Israel;</VERS>\r\n      <VERS vnumber=\"41\">and with them Heman and Jeduthun, and the rest that were chosen, who were mentioned by name, to give thanks to Jehovah, because his lovingkindness [endureth] for ever;</VERS>\r\n      <VERS vnumber=\"42\">and with them Heman and Jeduthun [with] trumpets and cymbals for those that should sound aloud, and [with] instruments for the songs of God; and the sons of Jeduthun to be at the gate.</VERS>\r\n      <VERS vnumber=\"43\">And all the people departed every man to his house: and David returned to bless his house.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"17\">\r\n      <VERS vnumber=\"1\">And it came to pass, when David dwelt in his house, that David said to Nathan the prophet, Lo, I dwell in a house of cedar, but the ark of the covenant of Jehovah [dwelleth] under curtains.</VERS>\r\n      <VERS vnumber=\"2\">And Nathan said unto David, Do all that is in thy heart; for God is with thee.</VERS>\r\n      <VERS vnumber=\"3\">And it came to pass the same night, that the word of God came to Nathan, saying,</VERS>\r\n      <VERS vnumber=\"4\">Go and tell David my servant, Thus saith Jehovah, Thou shalt not build me a house to dwell in:</VERS>\r\n      <VERS vnumber=\"5\">for I have not dwelt in a 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].</VERS>\r\n      <VERS vnumber=\"6\">In all places wherein I have walked with all Israel, spake I a word with any of the judges of Israel, whom I commanded to be shepherd of my people, saying, Why have ye not built me a house of cedar?</VERS>\r\n      <VERS vnumber=\"7\">Now therefore thus shalt thou say unto my servant David, Thus saith Jehovah of hosts, I took thee from the sheepcote, from following the sheep, that thou shouldest be prince over my people Israel:</VERS>\r\n      <VERS vnumber=\"8\">and I have been with thee whithersoever thou hast gone, and have cut off all thine enemies from before thee; and I will make thee a name, like unto the name of the great ones that are in the earth.</VERS>\r\n      <VERS vnumber=\"9\">And I will appoint a place for my people Israel, and will plant them, that they may dwell in their own place, and be moved no more; neither shall the children of wickedness waste them any more, as at the first,</VERS>\r\n      <VERS vnumber=\"10\">and [as] from the day that I commanded judges to be over my people Israel; and I will subdue all thine enemies. Moreover I tell thee that Jehovah will build thee a house.</VERS>\r\n      <VERS vnumber=\"11\">And it shall come to pass, when thy days are fulfilled that thou must go to be with thy fathers, that I will set up thy seed after thee, who shall be of thy sons; and I will establish his kingdom.</VERS>\r\n      <VERS vnumber=\"12\">He shall build me a house, and I will establish his throne for ever.</VERS>\r\n      <VERS vnumber=\"13\">I will be his father, and he shall be my son: and I will not take my lovingkindness away from him, as I took it from him that was before thee;</VERS>\r\n      <VERS vnumber=\"14\">but I will settle him in my house and in my kingdom for ever; and his throne shall be established for ever.</VERS>\r\n      <VERS vnumber=\"15\">According to all these words, and according to all this vision, so did Nathan speak unto David.</VERS>\r\n      <VERS vnumber=\"16\">Then David the king went in, and sat before Jehovah; and he said, Who am I, O Jehovah God, and what is my house, that thou hast brought me thus far?</VERS>\r\n      <VERS vnumber=\"17\">And this was a small thing in thine eyes, O God; but thou hast 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 Jehovah God.</VERS>\r\n      <VERS vnumber=\"18\">What can David [say] yet more unto thee concerning the honor which is done to thy servant? for thou knowest thy servant.</VERS>\r\n      <VERS vnumber=\"19\">O Jehovah, for thy servant`s sake, and according to thine own heart, hast thou wrought all this greatness, to make known all [these] great things.</VERS>\r\n      <VERS vnumber=\"20\">O Jehovah, there is none like thee, neither is there any God besides thee, according to all that we have heard with our ears.</VERS>\r\n      <VERS vnumber=\"21\">And what one nation in the earth is like thy people Israel, whom God went to redeem unto himself for a people, to make thee a name by great and terrible things, in driving out nations from before thy people, whom thou redeemest out of Egypt?</VERS>\r\n      <VERS vnumber=\"22\">For thy people Israel didst thou make thine own people for ever; and thou, Jehovah, becamest their God.</VERS>\r\n      <VERS vnumber=\"23\">And now, O Jehovah, let the word that thou hast spoken concerning thy servant, and concerning his house, be established for ever, and do as thou hast spoken.</VERS>\r\n      <VERS vnumber=\"24\">And let thy name be established and magnified for ever, saying, Jehovah of hosts is the God of Israel, even a God to Israel: and the house of David thy servant is established before thee.</VERS>\r\n      <VERS vnumber=\"25\">For thou, O my God, hast revealed to thy servant that thou wilt build him a house: therefore hath thy servant found [in his heart] to pray before thee.</VERS>\r\n      <VERS vnumber=\"26\">And now, O Jehovah, thou art God, and hast promised this good thing unto thy servant:</VERS>\r\n      <VERS vnumber=\"27\">and now it hath pleased thee to bless the house of thy servant, that it may continue for ever before thee: for thou, O Jehovah, hast blessed, and it is blessed for ever.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"18\">\r\n      <VERS vnumber=\"1\">And after this it came to pass, that David smote the Philistines, and subdued them, and took Gath and its towns out of the hand of the Philistines.</VERS>\r\n      <VERS vnumber=\"2\">And he smote Moab; and the Moabites became servants to David, and brought tribute.</VERS>\r\n      <VERS vnumber=\"3\">And David smote Hadarezer king of Zobah unto Hamath, as he went to establish his dominion by the river Euphrates.</VERS>\r\n      <VERS vnumber=\"4\">And David took from him a thousand chariots, and seven thousand horsemen, and twenty thousand footmen; and David hocked all the chariot horses, but reserved of them for a hundred chariots.</VERS>\r\n      <VERS vnumber=\"5\">And when the Syrians of Damascus came to succor Hadarezer king of Zobah, David smote of the Syrians two and twenty thousand men.</VERS>\r\n      <VERS vnumber=\"6\">Then David put [garrisons] in Syria of Damascus; and the Syrians became servants to David, and brought tribute. And Jehovah gave victory to David whithersoever he went.</VERS>\r\n      <VERS vnumber=\"7\">And David took the shields of gold that were on the servants of Hadarezer, and brought them to Jerusalem.</VERS>\r\n      <VERS vnumber=\"8\">And from Tibhath and from Cun, cities of Hadarezer, David took very much brass, wherewith Solomon made the brazen sea, and the pillars, and the vessels of brass.</VERS>\r\n      <VERS vnumber=\"9\">And when Tou king of Hamath heard that David had smitten all the host of Hadarezer king of Zobah,</VERS>\r\n      <VERS vnumber=\"10\">he sent Hadoram his son to king David, to salute him, and to bless him, because he had fought against Hadarezer and smitten him; (for Hadarezer had wars with Tou;) and [he had with him] all manner of vessels of gold and silver and brass.</VERS>\r\n      <VERS vnumber=\"11\">These also did king David dedicate unto Jehovah, with the silver and the gold that he carried away from all the nations; from Edom, and from Moab, and from the children of Ammon, and from the Philistines, and from Amalek.</VERS>\r\n      <VERS vnumber=\"12\">Moreover Abishai the son of Zeruiah smote of the Edomites in the Valley of Salt eighteen thousand.</VERS>\r\n      <VERS vnumber=\"13\">And he put garrisons in Edom; and all the Edomites became servants to David. And Jehovah gave victory to David whithersoever he went.</VERS>\r\n      <VERS vnumber=\"14\">And David reigned over all Israel; and he executed justice and righteousness unto all his people.</VERS>\r\n      <VERS vnumber=\"15\">And Joab the son of Zeruiah was over the host; and Jehoshaphat the son of Ahilud was recorder;</VERS>\r\n      <VERS vnumber=\"16\">and Zadok the son of Ahitub, and Abimelech the son of Abiathar, were priests; and Shavsha was scribe;</VERS>\r\n      <VERS vnumber=\"17\">and Benaiah the son of Jehoiada was over the Cherethites and the Pelethites; and the sons of David were chief about the king.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"19\">\r\n      <VERS vnumber=\"1\">And it came to pass after this, that Nahash the king of the children of Ammon died, and his son reigned in his stead.</VERS>\r\n      <VERS vnumber=\"2\">And David said, I will show kindness unto Hanun the son of Nahash, because his father showed kindness to me. So David sent messengers to comfort him concerning his father. And David`s servants came into the land of the children of Ammon to Hanun, to comfort him.</VERS>\r\n      <VERS vnumber=\"3\">But the princes of the children of Ammon said to Hanun, Thinkest thou that David doth honor thy father, in that he hath sent comforters unto thee? are not his servants come unto thee to search, and to overthrow, and to spy out the land?</VERS>\r\n      <VERS vnumber=\"4\">So Hanun took David`s servants, and shaved them, and cut off their garments in the middle, even to their buttocks, and sent them away.</VERS>\r\n      <VERS vnumber=\"5\">Then there went certain persons, 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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 Arammaacah, and out of Zobah.</VERS>\r\n      <VERS vnumber=\"7\">So they hired them thirty and two thousand chariots, and the king of Maacah and his people, who came and encamped before Medeba. And the children of Ammon gathered themselves together from their cities, and came to battle.</VERS>\r\n      <VERS vnumber=\"8\">And when David heard of it, he sent Joab, and all the host of the mighty men.</VERS>\r\n      <VERS vnumber=\"9\">And the children of Ammon came out, and put the battle in array at the gate of the city: and the kings that were come were by themselves in the field.</VERS>\r\n      <VERS vnumber=\"10\">Now when Joab saw that the battle was set against him before and behind, he chose of all the choice men of Israel, and put them in array against the Syrians.</VERS>\r\n      <VERS vnumber=\"11\">And the rest of the people he committed into the hand of Abishai his brother; and they put themselves in array against the children of Ammon.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">Be of good courage, and let us play the man for our people, and for the cities of our God: and Jehovah do that which seemeth him good.</VERS>\r\n      <VERS vnumber=\"14\">So Joab and the people that were with him drew nigh before the Syrians unto the battle; and they fled before him.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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, with Shophach the captain of the host of Hadarezer at their head.</VERS>\r\n      <VERS vnumber=\"17\">And it was told David; and he gathered all Israel together, and passed over the 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.</VERS>\r\n      <VERS vnumber=\"18\">And the Syrians fled before Israel; and David slew of the Syrians [the men of] seven thousand chariots, and forty thousand footmen, and killed Shophach the captain of the host.</VERS>\r\n      <VERS vnumber=\"19\">And when the servants of Hadarezer saw that they were put to the worse before Israel, they made peace with David, and served him: neither would the Syrians help the children of Ammon any more.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"20\">\r\n      <VERS vnumber=\"1\">And it came to pass, at the time of the return of the year, at the time when kings go out [to battle], that Joab led forth 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 overthrew it.</VERS>\r\n      <VERS vnumber=\"2\">And 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 forth the spoil of the city, exceeding much.</VERS>\r\n      <VERS vnumber=\"3\">And he brought forth the people that were therein, and cut [them] with saws, and with harrows of iron, and with axes. And thus did David unto all the cities of the children of Ammon. And David and all the people returned to Jerusalem.</VERS>\r\n      <VERS vnumber=\"4\">And it came to pass after this, that there arose war at Gezer with the Philistines: then Sibbecai the Hushathite slew Sippai, of the sons of the giant; and they were subdued.</VERS>\r\n      <VERS vnumber=\"5\">And there was again war with the Philistines; and Elhanan the son of Jair slew Lahmi the brother of Goliath the Gittite, the staff of whose spear was like a weaver`s beam.</VERS>\r\n      <VERS vnumber=\"6\">And there was again 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 born unto the giant.</VERS>\r\n      <VERS vnumber=\"7\">And when he defied Israel, Jonathan the son of Shimea David`s brother slew him.</VERS>\r\n      <VERS vnumber=\"8\">These were born unto the giant in Gath; and they fell by the hand of David, and by the hand of his servants.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"21\">\r\n      <VERS vnumber=\"1\">And Satan stood up against Israel, and moved David to number Israel.</VERS>\r\n      <VERS vnumber=\"2\">And David said to Joab and to the princes of the people, Go, number Israel from Beer-sheba even to Dan; and bring me word, that I may know the sum of them.</VERS>\r\n      <VERS vnumber=\"3\">And Joab said, Jehovah make his people a hundred times as many as they are: but, my lord the king, are they not all my lord`s servants? why doth my lord require this thing? why will he be a cause of guilt unto Israel?</VERS>\r\n      <VERS vnumber=\"4\">Nevertheless the king`s word prevailed against Joab. Wherefore Joab departed, and went throughout all Israel, and came to Jerusalem.</VERS>\r\n      <VERS vnumber=\"5\">And Joab gave up the sum of the numbering of the people unto David. And all they of Israel were a thousand thousand and a hundred thousand men that drew sword: and Judah was four hundred threescore and ten thousand men that drew sword.</VERS>\r\n      <VERS vnumber=\"6\">But Levi and Benjamin counted he not among them; for the king`s word was abominable to Joab.</VERS>\r\n      <VERS vnumber=\"7\">And God was displeased with this thing; therefore he smote Israel.</VERS>\r\n      <VERS vnumber=\"8\">And David said unto God, I have sinned greatly, in that I have done this thing: but now, put away, I beseech thee, the iniquity of thy servant; for I have done very foolishly.</VERS>\r\n      <VERS vnumber=\"9\">And Jehovah spake unto Gad, David`s seer, saying,</VERS>\r\n      <VERS vnumber=\"10\">Go and speak unto David, saying, Thus saith Jehovah, I offer thee three things: choose thee one of them, that I may do it unto thee.</VERS>\r\n      <VERS vnumber=\"11\">So Gad came to David, and said unto him, Thus saith Jehovah, Take which thou wilt:</VERS>\r\n      <VERS vnumber=\"12\">either three years of famine; or three months to be consumed before thy foes, while the sword of thine enemies overtaketh thee; or else three days the sword of Jehovah, even pestilence in the land, and the angel of Jehovah destroying throughout all the borders of Israel. Now therefore consider what answer I shall return to him that sent me.</VERS>\r\n      <VERS vnumber=\"13\">And David said unto Gad, I am in a great strait: let me fall, I pray, into the hand of Jehovah; for very great are his mercies: and let me not fall into the hand of man.</VERS>\r\n      <VERS vnumber=\"14\">So Jehovah sent a pestilence upon Israel; and there fell of Israel seventy thousand men.</VERS>\r\n      <VERS vnumber=\"15\">And God sent an angel unto Jerusalem to destroy it: and as he was about to destroy, Jehovah beheld, and he repented him of the evil, and said to the destroying angel, It is enough; now stay thy hand. And the angel of Jehovah was standing by the threshing-floor of Ornan the Jebusite.</VERS>\r\n      <VERS vnumber=\"16\">And David lifted up his eyes, and saw the angel of Jehovah standing between earth and heaven, having a drawn sword in his hand stretched out over Jerusalem. Then David and the elders, clothed in sackcloth, fell upon their faces.</VERS>\r\n      <VERS vnumber=\"17\">And David said unto God, Is it not I that commanded the people to be numbered? even I it is that have sinned and done very wickedly; but these sheep, what have they done? let thy hand, I pray thee, O Jehovah my God, be against me, and against my father`s house; but not against thy people, that they should be plagued.</VERS>\r\n      <VERS vnumber=\"18\">Then the angel of Jehovah commanded Gad to say to David, that David should go up, and rear an altar unto Jehovah in the threshing-floor of Ornan the Jebusite.</VERS>\r\n      <VERS vnumber=\"19\">And David went up at the saying of Gad, which he spake in the name of Jehovah.</VERS>\r\n      <VERS vnumber=\"20\">And Ornan turned back, and saw the angel; and his four sons that were with him hid themselves. Now Ornan was threshing wheat.</VERS>\r\n      <VERS vnumber=\"21\">And as David came to Ornan, Ornan looked and saw David, and went out of the threshing-floor, and bowed himself to David with his face to the ground.</VERS>\r\n      <VERS vnumber=\"22\">Then David said to Ornan, Give me the place of this threshing-floor, that I may build thereon an altar unto Jehovah: for the full price shalt thou give it me, that the plague may be stayed from the people.</VERS>\r\n      <VERS vnumber=\"23\">And 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 for burnt-offerings, and the threshing instruments for wood, and the wheat for the meal-offering; I give it all.</VERS>\r\n      <VERS vnumber=\"24\">And 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 Jehovah, nor offer a burnt-offering without cost.</VERS>\r\n      <VERS vnumber=\"25\">So David gave to Ornan for the place six hundred shekels of gold by weight.</VERS>\r\n      <VERS vnumber=\"26\">And David built there an altar unto Jehovah, and offered burnt-offerings and peace-offerings, and called upon Jehovah; and he answered him from heaven by fire upon the altar of burnt-offering.</VERS>\r\n      <VERS vnumber=\"27\">And Jehovah commanded the angel; and he put up his sword again into the sheath thereof.</VERS>\r\n      <VERS vnumber=\"28\">At that time, when David saw that Jehovah had answered him in the threshing-floor of Ornan the Jebusite, then he sacrificed there.</VERS>\r\n      <VERS vnumber=\"29\">For the tabernacle of Jehovah, which Moses made in the wilderness, and the altar of burnt-offering, were at that time in the high place at Gibeon.</VERS>\r\n      <VERS vnumber=\"30\">But David could not go before it to inquire of God; for he was afraid because of the sword of the angel of Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"22\">\r\n      <VERS vnumber=\"1\">Then David said, This is the house of Jehovah God, and this is the altar of burnt-offering for Israel.</VERS>\r\n      <VERS vnumber=\"2\">And David commanded to gather together the sojourners that were in the land of Israel; and he set masons to hew wrought stones to build the house of God.</VERS>\r\n      <VERS vnumber=\"3\">And David prepared iron in abundance for the nails for the doors of the gates, and for the couplings; and brass in abundance without weight;</VERS>\r\n      <VERS vnumber=\"4\">and cedar-trees without number: for the Sidonians and they of Tyre brought cedar-trees in abundance to David.</VERS>\r\n      <VERS vnumber=\"5\">And David said, Solomon my son is young and tender, and the house that is to be builded for Jehovah must be exceeding magnificent, of fame and of glory throughout all countries: I will therefore make preparation for it. So David prepared abundantly before his death.</VERS>\r\n      <VERS vnumber=\"6\">Then he called for Solomon his son, and charged him to build a house for Jehovah, the God of Israel.</VERS>\r\n      <VERS vnumber=\"7\">And David said to Solomon his son, As for me, it was in my heart to build a house unto the name of Jehovah my God.</VERS>\r\n      <VERS vnumber=\"8\">But the word of Jehovah came to me, saying, Thou hast shed blood abundantly, and hast made great wars: thou shalt not build a house unto my name, because thou hast shed much blood upon the earth in my sight.</VERS>\r\n      <VERS vnumber=\"9\">Behold, 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:</VERS>\r\n      <VERS vnumber=\"10\">he shall build a 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.</VERS>\r\n      <VERS vnumber=\"11\">Now, my son, Jehovah be with thee; and prosper thou, and build the house of Jehovah thy God, as he hath spoken concerning thee.</VERS>\r\n      <VERS vnumber=\"12\">Only Jehovah give thee discretion and understanding, and give thee charge concerning Israel; that so thou mayest keep the law of Jehovah thy God.</VERS>\r\n      <VERS vnumber=\"13\">Then shalt thou prosper, if thou observe to do the statutes and the ordinances which Jehovah charged Moses with concerning Israel: be strong, and of good courage; fear not, neither be dismayed.</VERS>\r\n      <VERS vnumber=\"14\">Now, behold, in my affliction I have prepared for the house of Jehovah a 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.</VERS>\r\n      <VERS vnumber=\"15\">Moreover there are workmen with thee in abundance, hewers and workers of stone and timber, and all men that are skilful in every manner of work:</VERS>\r\n      <VERS vnumber=\"16\">of the gold, the silver, and the brass, and the iron, there is no number. Arise and be doing, and Jehovah be with thee.</VERS>\r\n      <VERS vnumber=\"17\">David also commanded all the princes of Israel to help Solomon his son, [saying],</VERS>\r\n      <VERS vnumber=\"18\">Is not Jehovah your God with you? and hath he not given you rest on every side? for he hath delivered the inhabitants of the land into my hand; and the land is subdued before Jehovah, and before his people.</VERS>\r\n      <VERS vnumber=\"19\">Now set your heart and your soul to seek after Jehovah your God; arise therefore, and build ye the sanctuary of Jehovah God, to bring the ark of the covenant of Jehovah, and the holy vessels of God, into the house that is to be built to the name of Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"23\">\r\n      <VERS vnumber=\"1\">Now David was old and full of days; and he made Solomon his son king over Israel.</VERS>\r\n      <VERS vnumber=\"2\">And he gathered together all the princes of Israel, with the priests and the Levites.</VERS>\r\n      <VERS vnumber=\"3\">And the Levites were numbered from thirty years old and upward: and their number by their polls, man by man, was thirty and eight thousand.</VERS>\r\n      <VERS vnumber=\"4\">Of these, twenty and four thousand were to oversee the work of the house of Jehovah; and six thousand were officers and judges;</VERS>\r\n      <VERS vnumber=\"5\">and four thousand were doorkeepers; and four thousand praised Jehovah with the instruments which I made, [said David], to praise therewith.</VERS>\r\n      <VERS vnumber=\"6\">And David divided them into courses according to the sons of Levi: Gershon, Kohath, and Merari.</VERS>\r\n      <VERS vnumber=\"7\">Of the Gershonites: Ladan and Shimei.</VERS>\r\n      <VERS vnumber=\"8\">The sons of Ladan: Jehiel the chief, and Zetham, and Joel, three.</VERS>\r\n      <VERS vnumber=\"9\">The sons of Shimei: Shelomoth, and Haziel, and Haran, three. These were the heads of the fathers` [houses] of Ladan.</VERS>\r\n      <VERS vnumber=\"10\">And the sons of Shimei: Jahath, Zina, and Jeush, and Beriah. These four were the sons of Shimei.</VERS>\r\n      <VERS vnumber=\"11\">And Jahath was the chief, and Zizah the second: but Jeush and Beriah had not many sons; therefore they became a fathers` house in one reckoning.</VERS>\r\n      <VERS vnumber=\"12\">The sons of Kohath: Amram, Izhar, Hebron, and Uzziel, four.</VERS>\r\n      <VERS vnumber=\"13\">The 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 Jehovah, to minister unto him, and to bless in his name, for ever.</VERS>\r\n      <VERS vnumber=\"14\">But as for Moses the man of God, his sons were named among the tribe of Levi.</VERS>\r\n      <VERS vnumber=\"15\">The sons of Moses: Gershom and Eliezer.</VERS>\r\n      <VERS vnumber=\"16\">The sons of Gershom: Shebuel the chief.</VERS>\r\n      <VERS vnumber=\"17\">And the sons of Eliezer were: Rehabiah the chief; and Eliezer had no other sons; but the sons of Rehabiah were very many.</VERS>\r\n      <VERS vnumber=\"18\">The sons of Izhar: Shelomith the chief.</VERS>\r\n      <VERS vnumber=\"19\">The sons of Hebron: Jeriah the chief, Amariah the second, Jahaziel the third, and Jekameam the fourth.</VERS>\r\n      <VERS vnumber=\"20\">The sons of Uzziel: Micah the chief, and Isshiah the second.</VERS>\r\n      <VERS vnumber=\"21\">The sons of Merari: Mahli and Mushi. The sons of Mahli: Eleazar and Kish.</VERS>\r\n      <VERS vnumber=\"22\">And Eleazar died, and had no sons, but daughters only: and their brethren the sons of Kish took them [to wife].</VERS>\r\n      <VERS vnumber=\"23\">The sons of Mushi: Mahli, and Eder, and Jeremoth, three.</VERS>\r\n      <VERS vnumber=\"24\">These were the sons of Levi after their fathers` houses, even the heads of the fathers` [houses] of those of them that were counted, in the number of names by their polls, who did the work for the service of the house of Jehovah, from twenty years old and upward.</VERS>\r\n      <VERS vnumber=\"25\">For David said, Jehovah, the God of Israel, hath given rest unto his people; and he dwelleth in Jerusalem for ever:</VERS>\r\n      <VERS vnumber=\"26\">and also the Levites shall no more have need to carry the tabernacle and all the vessels of it for the service thereof.</VERS>\r\n      <VERS vnumber=\"27\">For by the last words of David the sons of Levi were numbered, from twenty years old and upward.</VERS>\r\n      <VERS vnumber=\"28\">For their office was to wait on the sons of Aaron for the service of the house of Jehovah, in the courts, and in the chambers, and in the purifying of all holy things, even the work of the service of the house of God;</VERS>\r\n      <VERS vnumber=\"29\">for the showbread also, and for the fine flour for a meal-offering, whether of unleavened wafers, or of that which is baked in the pan, or of that which is soaked, and for all manner of measure and size;</VERS>\r\n      <VERS vnumber=\"30\">and to stand every morning to thank and praise Jehovah, and likewise at even;</VERS>\r\n      <VERS vnumber=\"31\">and to offer all burnt-offerings unto Jehovah, on the sabbaths, on the new moons, and on the set feasts, in number according to the ordinance concerning them, continually before Jehovah;</VERS>\r\n      <VERS vnumber=\"32\">and that they should keep the charge of the tent of meeting, and the charge of the holy place, and the charge of the sons of Aaron their brethren, for the service of the house of Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"24\">\r\n      <VERS vnumber=\"1\">And the courses of the sons of Aaron [were these]. The sons of Aaron: Nadab and Abihu, Eleazar and Ithamar.</VERS>\r\n      <VERS vnumber=\"2\">But Nadab and Abihu died before their father, and had no children: therefore Eleazar and Ithamar executed the priest`s office.</VERS>\r\n      <VERS vnumber=\"3\">And David with Zadok of the sons of Eleazar, and Ahimelech of the sons of Ithamar, divided them according to their ordering in their service.</VERS>\r\n      <VERS vnumber=\"4\">And there were more chief men found of the sons of Eleazar than of the sons of Ithamar; and [thus] were they divided: of the sons of Eleazar there were sixteen, heads of fathers` houses; and of the sons of Ithamar, according to their fathers` houses, eight.</VERS>\r\n      <VERS vnumber=\"5\">Thus were they divided by lot, one sort with another; for there were princes of the sanctuary, and princes of God, both of the sons of Eleazar, and of the sons of Ithamar.</VERS>\r\n      <VERS vnumber=\"6\">And Shemaiah the son of Nethanel the scribe, who was of the Levites, wrote them in the presence of the king, and the princes, and Zadok the priest, and Ahimelech the son of Abiathar, and the heads of the fathers` [houses] of the priests and of the Levites; one fathers` house being taken for Eleazar, and one taken for Ithamar.</VERS>\r\n      <VERS vnumber=\"7\">Now the first lot came forth to Jehoiarib, the second to Jedaiah,</VERS>\r\n      <VERS vnumber=\"8\">the third to Harim, the fourth to Seorim,</VERS>\r\n      <VERS vnumber=\"9\">the fifth to Malchijah, the sixth to Mijamin,</VERS>\r\n      <VERS vnumber=\"10\">the seventh to Hakkoz, the eighth to Abijah,</VERS>\r\n      <VERS vnumber=\"11\">the ninth to Jeshua, the tenth to Shecaniah,</VERS>\r\n      <VERS vnumber=\"12\">the eleventh to Eliashib, the twelfth to Jakim,</VERS>\r\n      <VERS vnumber=\"13\">the thirteenth to Huppah, the fourteenth to Jeshebeab,</VERS>\r\n      <VERS vnumber=\"14\">the fifteenth to Bilgah, the sixteenth to Immer,</VERS>\r\n      <VERS vnumber=\"15\">the seventeenth to Hezir, the eighteenth to Happizzez,</VERS>\r\n      <VERS vnumber=\"16\">the nineteenth to Pethahiah, the twentieth to Jehezkel,</VERS>\r\n      <VERS vnumber=\"17\">the one and twentieth to Jachin, the two and twentieth to Gamul,</VERS>\r\n      <VERS vnumber=\"18\">the three and twentieth to Delaiah, the four and twentieth to Maaziah.</VERS>\r\n      <VERS vnumber=\"19\">This was the ordering of them in their service, to come into the house of Jehovah according to the ordinance [given] unto them by Aaron their father, as Jehovah, the God of Israel, had commanded him.</VERS>\r\n      <VERS vnumber=\"20\">And of the rest of the sons of Levi: of the sons of Amram, Shubael; of the sons of Shubael, Jehdeiah.</VERS>\r\n      <VERS vnumber=\"21\">Of Rehabiah: of the sons of Rehabiah, Isshiah the chief.</VERS>\r\n      <VERS vnumber=\"22\">Of the Izharites, Shelomoth; of the sons of Shelomoth, Jahath.</VERS>\r\n      <VERS vnumber=\"23\">And the sons [of Hebron]: Jeriah [the chief], Amariah the second, Jahaziel the third, Jekameam the fourth.</VERS>\r\n      <VERS vnumber=\"24\">The sons of Uzziel, Micah; of the sons of Micah, Shamir.</VERS>\r\n      <VERS vnumber=\"25\">The brother of Micah, Isshiah; of the sons of Isshiah, Zechariah.</VERS>\r\n      <VERS vnumber=\"26\">The sons of Merari: Mahli and Mushi; the sons of Jaaziah: Beno.</VERS>\r\n      <VERS vnumber=\"27\">The sons of Merari: of Jaaziah, Beno, and Shoham, and Zaccur, and Ibri.</VERS>\r\n      <VERS vnumber=\"28\">Of Mahli: Eleazar, who had no sons.</VERS>\r\n      <VERS vnumber=\"29\">Of Kish; the sons of Kish: Jerahmeel.</VERS>\r\n      <VERS vnumber=\"30\">And the sons of Mushi: Mahli, and Eder, and Jerimoth. These were the sons of the Levites after their fathers` houses.</VERS>\r\n      <VERS vnumber=\"31\">These likewise cast lots even as their brethren the sons of Aaron in the presence of David the king, and Zadok, and Ahimelech, and the heads of the fathers` [houses] of the priests and of the Levites; the fathers` [houses] of the chief even as those of his younger brother.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"25\">\r\n      <VERS vnumber=\"1\">Moreover David and the captains of the host set apart for the service certain 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 them that did the work according to their service was:</VERS>\r\n      <VERS vnumber=\"2\">of the sons of Asaph: Zaccur, and Joseph, and Nethaniah, and Asharelah, the sons of Asaph, under the hand of Asaph, who prophesied after the order of the king.</VERS>\r\n      <VERS vnumber=\"3\">Of Jeduthun; the sons of Jeduthun: Gedaliah, and Zeri, and Jeshaiah, Hashabiah, and Mattithiah, six, under the hands of their father Jeduthun with the harp, who prophesied in giving thanks and praising Jehovah.</VERS>\r\n      <VERS vnumber=\"4\">Of Heman; the sons of Heman: Bukkiah, Mattaniah, Uzziel, Shebuel, and Jerimoth, Hananiah, Hanani, Eliathah, Giddalti, and Romamti-ezer, Joshbekashah, Mallothi, Hothir, Mahazioth.</VERS>\r\n      <VERS vnumber=\"5\">All 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.</VERS>\r\n      <VERS vnumber=\"6\">All these were under the hands of their father for song in the house of Jehovah, with cymbals, psalteries, and harps, for the service of the house of God; Asaph, Jeduthun, and Heman being under the order of the king.</VERS>\r\n      <VERS vnumber=\"7\">And the number of them, with their brethren that were instructed in singing unto Jehovah, even all that were skilful, was two hundred fourscore and eight.</VERS>\r\n      <VERS vnumber=\"8\">And they cast lots for their offices, all alike, as well the small as the great, the teacher as the scholar.</VERS>\r\n      <VERS vnumber=\"9\">Now the first lot came forth for Asaph to Joseph: the second to Gedaliah; he and his brethren and sons were twelve:</VERS>\r\n      <VERS vnumber=\"10\">the third to Zaccur, his sons and his brethren, twelve:</VERS>\r\n      <VERS vnumber=\"11\">the fourth to Izri, his sons and his brethren, twelve:</VERS>\r\n      <VERS vnumber=\"12\">the fifth to Nethaniah, his sons and his brethren, twelve:</VERS>\r\n      <VERS vnumber=\"13\">the sixth to Bukkiah, his sons and his brethren, twelve:</VERS>\r\n      <VERS vnumber=\"14\">the seventh to Jesharelah, his sons and his brethren, twelve:</VERS>\r\n      <VERS vnumber=\"15\">the eighth to Jeshaiah, his sons and his brethren, twelve:</VERS>\r\n      <VERS vnumber=\"16\">the ninth to Mattaniah, his sons and his brethren, twelve:</VERS>\r\n      <VERS vnumber=\"17\">the tenth to Shimei, his sons and his brethren, twelve:</VERS>\r\n      <VERS vnumber=\"18\">the eleventh to Azarel, his sons and his brethren, twelve:</VERS>\r\n      <VERS vnumber=\"19\">the twelfth to Hashabiah, his sons and his brethren, twelve:</VERS>\r\n      <VERS vnumber=\"20\">for the thirteenth, Shubael, his sons and his brethren, twelve:</VERS>\r\n      <VERS vnumber=\"21\">for the fourteenth, Mattithiah, his sons and his brethren, twelve:</VERS>\r\n      <VERS vnumber=\"22\">for the fifteenth to Jeremoth, his sons and his brethren, twelve:</VERS>\r\n      <VERS vnumber=\"23\">for the sixteenth to Hananiah, his sons and his brethren, twelve:</VERS>\r\n      <VERS vnumber=\"24\">for the seventeenth to Joshbekashah, his sons and his brethren, twelve:</VERS>\r\n      <VERS vnumber=\"25\">for the eighteenth to Hanani, his sons and his brethren, twelve:</VERS>\r\n      <VERS vnumber=\"26\">for the nineteenth to Mallothi, his sons and his brethren, twelve:</VERS>\r\n      <VERS vnumber=\"27\">for the twentieth to Eliathah, his sons and his brethren, twelve:</VERS>\r\n      <VERS vnumber=\"28\">for the one and twentieth to Hothir, his sons and his brethren, twelve:</VERS>\r\n      <VERS vnumber=\"29\">for the two and twentieth to Giddalti, his sons and his brethren, twelve:</VERS>\r\n      <VERS vnumber=\"30\">for the three and twentieth to Mahazioth, his sons and his brethren, twelve:</VERS>\r\n      <VERS vnumber=\"31\">for the four and twentieth to Romamtiezer, his sons and his brethren, twelve.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"26\">\r\n      <VERS vnumber=\"1\">For the courses of the doorkeepers: of the Korahites, Meshelemiah the son of Kore, of the sons of Asaph.</VERS>\r\n      <VERS vnumber=\"2\">And Meshelemiah had sons: Zechariah the first-born, Jediael the second, Zebadiah the third, Jathniel the fourth,</VERS>\r\n      <VERS vnumber=\"3\">Elam the fifth, Jehohanan the sixth, Eliehoenai the seventh.</VERS>\r\n      <VERS vnumber=\"4\">And Obed-edom had sons: Shemaiah the first-born, Jehozabad the second, Joah the third, and Sacar the fourth, and Nethanel the fifth,</VERS>\r\n      <VERS vnumber=\"5\">Ammiel the sixth, Issachar the seventh, Peullethai the eighth; for God blessed him.</VERS>\r\n      <VERS vnumber=\"6\">Also unto Shemaiah his son were sons born, that ruled over the house of their father; for they were mighty men of valor.</VERS>\r\n      <VERS vnumber=\"7\">The sons of Shemaiah: Othni, and Rephael, and Obed, Elzabad, whose brethren were valiant men, Elihu, and Semachiah.</VERS>\r\n      <VERS vnumber=\"8\">All these were of the sons of Obed-edom: they and their sons and their brethren, able men in strength for the service; threescore and two of Obed-edom.</VERS>\r\n      <VERS vnumber=\"9\">And Meshelemiah had sons and brethren, valiant men, eighteen.</VERS>\r\n      <VERS vnumber=\"10\">Also Hosah, of the children of Merari, had sons: Shimri the chief, (for though he was not the first-born, yet his father made him chief),</VERS>\r\n      <VERS vnumber=\"11\">Hilkiah the second, Tebaliah the third, Zechariah the fourth: all the sons and brethren of Hosah were thirteen.</VERS>\r\n      <VERS vnumber=\"12\">Of these were the courses of the doorkeepers, even of the chief men, having offices like their brethren, to minister in the house of Jehovah.</VERS>\r\n      <VERS vnumber=\"13\">And they cast lots, as well the small as the great, according to their fathers` houses, for every gate.</VERS>\r\n      <VERS vnumber=\"14\">And the lot eastward fell to Shelemiah. Then for Zechariah his son, a discreet counsellor, they cast lots; and his lot came out northward.</VERS>\r\n      <VERS vnumber=\"15\">To Obed-edom southward; and to his sons the store-house.</VERS>\r\n      <VERS vnumber=\"16\">To Shuppim and Hosah westward, by the gate of Shallecheth, at the causeway that goeth up, watch against watch.</VERS>\r\n      <VERS vnumber=\"17\">Eastward were six Levites, northward four a day, southward four a day, and for the store-house two and two.</VERS>\r\n      <VERS vnumber=\"18\">For Parbar westward, four at the causeway, and two at Parbar.</VERS>\r\n      <VERS vnumber=\"19\">These were the courses of the doorkeepers; of the sons of the Korahites, and of the sons of Merari.</VERS>\r\n      <VERS vnumber=\"20\">And of the Levites, Ahijah was over the treasures of the house of God, and over the treasures of the dedicated things.</VERS>\r\n      <VERS vnumber=\"21\">The sons of Ladan, the sons of the Gershonites belonging to Ladan, the heads of the fathers` [houses] belonging to Ladan the Gershonite: Jehieli.</VERS>\r\n      <VERS vnumber=\"22\">The sons of Jehieli: Zetham, and Joel his brother, over the treasures of the house of Jehovah.</VERS>\r\n      <VERS vnumber=\"23\">Of the Amramites, of the Izharites, of the Hebronites, of the Uzzielites:</VERS>\r\n      <VERS vnumber=\"24\">and Shebuel the son of Gershom, the son of Moses, was ruler over the treasures.</VERS>\r\n      <VERS vnumber=\"25\">And his brethren: of Eliezer [came] Rehabiah his son, and Jeshaiah his son, and Joram his son, and Zichri his son, and Shelomoth his son.</VERS>\r\n      <VERS vnumber=\"26\">This Shelomoth and his brethren were over all the treasures of the dedicated things, which David the king, and the heads of the fathers` [houses], the captains over thousands and hundreds, and the captains of the host, had dedicated.</VERS>\r\n      <VERS vnumber=\"27\">Out of the spoil won in battles did they dedicate to repair the house of Jehovah.</VERS>\r\n      <VERS vnumber=\"28\">And 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, whosoever had dedicated anything, it was under the hand of Shelomoth, and of his brethren.</VERS>\r\n      <VERS vnumber=\"29\">Of the Izharites, Chenaniah and his sons were for the outward business over Israel, for officers and judges.</VERS>\r\n      <VERS vnumber=\"30\">Of the Hebronites, Hashabiah and his brethren, men of valor, a thousand and seven hundred, had the oversight of Israel beyond the Jordan westward, for all the business of Jehovah, and for the service of the king.</VERS>\r\n      <VERS vnumber=\"31\">Of the Hebronites was Jerijah the chief, even of the Hebronites, according to their generations by fathers` [houses]. In the fortieth year of the reign of David they were sought for, and there were found among them mighty men of valor at Jazer of Gilead.</VERS>\r\n      <VERS vnumber=\"32\">And his brethren, men of valor, were two thousand and seven hundred, heads of fathers` [houses], whom king David made overseers over the Reubenites, and the Gadites, and the half-tribe of the Manassites, for every matter pertaining to God, and for the affairs of the king.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"27\">\r\n      <VERS vnumber=\"1\">Now the children of Israel after their number, [to wit], the heads of fathers` [houses] and the captains of thousands and of 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.</VERS>\r\n      <VERS vnumber=\"2\">Over the first course for the first month was Jashobeam the son of Zabdiel: and in his course were twenty and four thousand.</VERS>\r\n      <VERS vnumber=\"3\">[He was] of the children of Perez, the chief of all the captains of the host for the first month.</VERS>\r\n      <VERS vnumber=\"4\">And over the course of the second month was Dodai the Ahohite, and his course; and Mikloth the ruler: and in his course were twenty and four thousand.</VERS>\r\n      <VERS vnumber=\"5\">The third captain of the host for the third month was Benaiah, the son of Jehoiada the priest, chief: and in his course were twenty and four thousand.</VERS>\r\n      <VERS vnumber=\"6\">This is that Benaiah, who was the mighty man of the thirty, and over the thirty: and [of] his course was Ammizabad his son.</VERS>\r\n      <VERS vnumber=\"7\">The 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.</VERS>\r\n      <VERS vnumber=\"8\">The fifth captain for this fifth month was Shamhuth the Izrahite: and in his course were twenty and four thousand.</VERS>\r\n      <VERS vnumber=\"9\">The sixth [captain] for the sixth month was Ira the son of Ikkesh the Tekoite: and in his course were twenty and four thousand.</VERS>\r\n      <VERS vnumber=\"10\">The seventh [captain] for the seventh month was Helez the Pelonite, of the children of Ephraim: and in his course were twenty and four thousand.</VERS>\r\n      <VERS vnumber=\"11\">The eighth [captain] for the eighth month was Sibbecai the Hushathite, of the Zerahites: and in his course were twenty and four thousand.</VERS>\r\n      <VERS vnumber=\"12\">The ninth [captain] for the ninth month was Abiezer the Anathothite, of the Benjamites: and in his course were twenty and four thousand.</VERS>\r\n      <VERS vnumber=\"13\">The tenth [captain] for the tenth month was Maharai the Netophathite, of the Zerahites: and in his course were twenty and four thousand.</VERS>\r\n      <VERS vnumber=\"14\">The eleventh [captain] for the eleventh month was Benaiah the Pirathonite, of the children of Ephraim: and in his course were twenty and four thousand.</VERS>\r\n      <VERS vnumber=\"15\">The twelfth [captain] for the twelfth month was Heldai the Netophathite, of Othniel: and in his course were twenty and four thousand.</VERS>\r\n      <VERS vnumber=\"16\">Furthermore over the tribes of Israel: of the Reubenites was Eliezer the son of Zichri the ruler: of the Simeonites, Shephatiah the son of Maacah:</VERS>\r\n      <VERS vnumber=\"17\">of Levi, Hashabiah the son of Kemuel: of Aaron, Zadok:</VERS>\r\n      <VERS vnumber=\"18\">of Judah, Elihu, one of the brethren of David: of Issachar, Omri the son of Michael:</VERS>\r\n      <VERS vnumber=\"19\">of Zebulun, Ishmaiah the son of Obadiah: of Naphtali, Jeremoth the son of Azriel:</VERS>\r\n      <VERS vnumber=\"20\">of the children of Ephraim, Hoshea the son of Azaziah: of the half-tribe of Manasseh, Joel the son of Pedaiah:</VERS>\r\n      <VERS vnumber=\"21\">of the half -[tribe] of Manasseh in Gilead, Iddo the son of Zechariah: of Benjamin, Jaasiel the son of Abner:</VERS>\r\n      <VERS vnumber=\"22\">of Dan, Azarel the son of Jeroham. These were the captains of the tribes of Israel.</VERS>\r\n      <VERS vnumber=\"23\">But David took not the number of them from twenty years old and under, because Jehovah had said he would increase Israel like to the stars of heaven.</VERS>\r\n      <VERS vnumber=\"24\">Joab the son of Zeruiah began to number, but finished not; and there came wrath for this upon Israel; neither was the number put into the account in the chronicles of king David.</VERS>\r\n      <VERS vnumber=\"25\">And over the king`s treasures was Azmaveth the son of Adiel: and over the treasures in the fields, in the cities, and in the villages, and in the castles, was Jonathan the son of Uzziah:</VERS>\r\n      <VERS vnumber=\"26\">And over them that did the work of the field for tillage of the ground was Ezri the son of Chelub:</VERS>\r\n      <VERS vnumber=\"27\">and over the vineyards was Shimei the Ramathite: and over the increase of the vineyards for the wine-cellars was Zabdi the Shiphmite:</VERS>\r\n      <VERS vnumber=\"28\">and over the olive-trees and the sycomore-trees that were in the lowland was Baal-hanan the Gederite: and over the cellars of oil was Joash:</VERS>\r\n      <VERS vnumber=\"29\">and 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:</VERS>\r\n      <VERS vnumber=\"30\">and over the camels was Obil the Ishmaelite: and over the asses was Jehdeiah the Meronothite: and over the flocks was Jaziz the Hagrite.</VERS>\r\n      <VERS vnumber=\"31\">All these were the rulers of the substance which was king David`s.</VERS>\r\n      <VERS vnumber=\"32\">Also Jonathan, David`s uncle, was a counsellor, a man of understanding, and a scribe: and Jehiel the son of Hachmoni was with the king`s sons:</VERS>\r\n      <VERS vnumber=\"33\">And Ahithophel was the king`s counsellor: and Hushai the Archite was the king`s friend:</VERS>\r\n      <VERS vnumber=\"34\">and after Ahithophel was Jehoiada the son of Benaiah, and Abiathar: and the captain of the king`s host was Joab.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"28\">\r\n      <VERS vnumber=\"1\">And David assembled all the princes of Israel, the princes of the tribes, and the captains of the companies that served the king by course, and the captains of thousands, and the captains of hundreds, and the rulers over all the substance and possessions of the king and of his sons, with the officers, and the mighty men, even all the mighty men of valor, unto Jerusalem.</VERS>\r\n      <VERS vnumber=\"2\">Then David the king stood up upon his feet, and said, Hear me, my brethren, and my people: as for me, it was in my heart to build a house of rest for the ark of the covenant of Jehovah, and for the footstool of our God; and I had made ready for the building.</VERS>\r\n      <VERS vnumber=\"3\">But God said unto me, Thou shalt not build a house for my name, because thou art a man of war, and hast shed blood.</VERS>\r\n      <VERS vnumber=\"4\">Howbeit Jehovah, the God of Israel, chose me out of all the house of my father to be king over Israel for ever: for he hath chosen Judah to be prince; and in the house of Judah, the house of my father; and among the sons of my father he took pleasure in me to make me king over all Israel;</VERS>\r\n      <VERS vnumber=\"5\">And of all my sons (for Jehovah hath given me many sons), he hath chosen Solomon my son to sit upon the throne of the kingdom of Jehovah over Israel.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And I will establish his kingdom for ever, if he be constant to do my commandments and mine ordinances, as at this day.</VERS>\r\n      <VERS vnumber=\"8\">Now therefore, in the sight of all Israel, the assembly of Jehovah, and in the audience of our God, observe and seek out all the commandments of Jehovah your God; that ye may possess this good land, and leave it for an inheritance to your children after you for ever.</VERS>\r\n      <VERS vnumber=\"9\">And thou, Solomon my son, know thou the God of thy father, and serve him with a perfect heart and with a willing mind; for Jehovah 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.</VERS>\r\n      <VERS vnumber=\"10\">Take heed now; for Jehovah hath chosen thee to build a house for the sanctuary: be strong, and do it.</VERS>\r\n      <VERS vnumber=\"11\">Then David gave to Solomon his son the pattern of the porch [of the temple], and of the houses thereof, and of the treasuries thereof, and of the upper rooms thereof, and of the inner chambers thereof, and of the place of the mercy-seat;</VERS>\r\n      <VERS vnumber=\"12\">and the pattern of all that he had by the Spirit, for the courts of the house of Jehovah, and for all the chambers round about, for the treasuries of the house of God, and for the treasuries of the dedicated things;</VERS>\r\n      <VERS vnumber=\"13\">also for the courses of the priests and the Levites, and for all the work of the service of the house of Jehovah, and for all the vessels of service in the house of Jehovah;</VERS>\r\n      <VERS vnumber=\"14\">of gold by weight for the [vessels of] gold, for all vessels of every kind of service; [of silver] for all the vessels of silver by weight, for all vessels of every kind of service;</VERS>\r\n      <VERS vnumber=\"15\">by weight also for the candlesticks of gold, and for the lamps thereof, of gold, by weight for every candlestick and for the lamps thereof; and for the candlesticks of silver, [silver] by weight for [every] candlestick and for the lamps thereof, according to the use of every candlestick;</VERS>\r\n      <VERS vnumber=\"16\">and the gold by weight for the tables of showbread, for every table; and silver for the tables of silver;</VERS>\r\n      <VERS vnumber=\"17\">and the flesh-hooks, and the basins, and the cups, of pure gold; and for the golden bowls by weight for every bowl; and for the silver bowls by weight for every bowl;</VERS>\r\n      <VERS vnumber=\"18\">and for the altar of incense refined gold by weight; and gold for the pattern of the chariot, [even] the cherubim, that spread out [their wings], and covered the ark of the covenant of Jehovah.</VERS>\r\n      <VERS vnumber=\"19\">All this, [said David], have I been made to understand in writing from the hand of Jehovah, even all the works of this pattern.</VERS>\r\n      <VERS vnumber=\"20\">And David said to Solomon his son, Be strong and of good courage, and do it: fear not, nor be dismayed; for Jehovah God, even my God, is with thee; he will not fail thee, nor forsake thee, until all the work for the service of the house of Jehovah be finished.</VERS>\r\n      <VERS vnumber=\"21\">And, behold, there are the courses of the priests and the Levites, for all the service of the house of God: and there shall be with thee in all manner of work every willing man that hath skill, for any manner of service: also the captains and all the people will be wholly at thy commandment.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"29\">\r\n      <VERS vnumber=\"1\">And David the king said unto all the assembly, 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 Jehovah God.</VERS>\r\n      <VERS vnumber=\"2\">Now I have prepared with all my might for the house of my God the gold for the [things of] gold, and the silver for the [things of] silver, and the brass for the [things of] brass, the iron for the [things of] iron, and wood for the [things of] wood; onyx stones, and [stones] to be set, stones for inlaid work, and of divers colors, and all manner of precious stones, and marble stones in abundance.</VERS>\r\n      <VERS vnumber=\"3\">Moreover also, because I have set my affection on the house of my God, seeing that I have a treasure of mine own of gold and silver, I give it unto the house of my God, over and above all that I have prepared for the holy house,</VERS>\r\n      <VERS vnumber=\"4\">even three thousand talents of gold, of the gold of Ophir, and seven thousand talents of refined silver, wherewith to overlay the walls of the houses;</VERS>\r\n      <VERS vnumber=\"5\">of gold for the [things of] gold, and of silver for the [things of] silver, and for all manner of work [to be made] by the hands of artificers. Who then offereth willingly to consecrate himself this day unto Jehovah?</VERS>\r\n      <VERS vnumber=\"6\">Then the princes of the fathers` [houses], and the princes of the tribes of Israel, and the captains of thousands and of hundreds, with the rulers over the king`s work, offered willingly;</VERS>\r\n      <VERS vnumber=\"7\">and they gave for the service of the house of God of gold five thousand talents and ten thousand darics, and of silver ten thousand talents, and of brass eighteen thousand talents, and of iron a hundred thousand talents.</VERS>\r\n      <VERS vnumber=\"8\">And they with whom [precious] stones were found gave them to the treasure of the house of Jehovah, under the hand of Jehiel the Gershonite.</VERS>\r\n      <VERS vnumber=\"9\">Then the people rejoiced, for that they offered willingly, because with a perfect heart they offered willingly to Jehovah: and David the king also rejoiced with great joy.</VERS>\r\n      <VERS vnumber=\"10\">Wherefore David blessed Jehovah before all the assembly; and David said, Blessed be thou, O Jehovah, the God of Israel our father, for ever and ever.</VERS>\r\n      <VERS vnumber=\"11\">Thine, O Jehovah, is the greatness, and the power, and the glory, and the victory, and the majesty: for all that is in the heavens and in the earth [is thine]; thine is the kingdom, O Jehovah, and thou art exalted as head above all.</VERS>\r\n      <VERS vnumber=\"12\">Both riches and honor come of thee, and thou rulest over all; and in thy hand is power and might; and in thy hand it is to make great, and to give strength unto all.</VERS>\r\n      <VERS vnumber=\"13\">Now therefore, our God, we thank thee, and praise thy glorious name.</VERS>\r\n      <VERS vnumber=\"14\">But 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.</VERS>\r\n      <VERS vnumber=\"15\">For we are strangers before thee, and sojourners, as all our fathers were: our days on the earth are as a shadow, and there is no abiding.</VERS>\r\n      <VERS vnumber=\"16\">O Jehovah our God, all this store that we have prepared to build thee a house for thy holy name cometh of thy hand, and is all thine own.</VERS>\r\n      <VERS vnumber=\"17\">I know also, my God, that thou triest the heart, and hast pleasure in uprightness. As for me, in the uprightness of my heart I have willingly offered all these things: and now have I seen with joy thy people, that are present here, offer willingly unto thee.</VERS>\r\n      <VERS vnumber=\"18\">O Jehovah, the God of Abraham, of 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;</VERS>\r\n      <VERS vnumber=\"19\">and 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 which I have made provision.</VERS>\r\n      <VERS vnumber=\"20\">And David said to all the assembly, Now bless Jehovah your God. And all the assembly blessed Jehovah, the God of their fathers, and bowed down their heads, and worshipped Jehovah, and the king.</VERS>\r\n      <VERS vnumber=\"21\">And they sacrificed sacrifices unto Jehovah, and offered burnt-offerings unto Jehovah, 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,</VERS>\r\n      <VERS vnumber=\"22\">and did eat and drink before Jehovah on that day with great gladness.     And they made Solomon the son of David king the second time, and anointed him unto Jehovah to be prince, and Zadok to be priest.</VERS>\r\n      <VERS vnumber=\"23\">Then Solomon sat on the throne of Jehovah as king instead of David his father, and prospered; and all Israel obeyed him.</VERS>\r\n      <VERS vnumber=\"24\">And all the princes, and the mighty men, and all the sons likewise of king David, submitted themselves unto Solomon the king.</VERS>\r\n      <VERS vnumber=\"25\">And Jehovah 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.</VERS>\r\n      <VERS vnumber=\"26\">Now David the son of Jesse reigned over all Israel.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And he died in a good old age, full of days, riches, and honor: and Solomon his son reigned in his stead.</VERS>\r\n      <VERS vnumber=\"29\">Now the acts of David the king, first and last, behold, they are written in the history of Samuel the seer, and in the history of Nathan the prophet, and in the history of Gad the seer,</VERS>\r\n      <VERS vnumber=\"30\">with all his reign and his might, and the times that went over him, and over Israel, and over all the kingdoms of the countries.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"14\" bname=\"2 Chronicles\" bsname=\"1Chr\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">And Solomon the son of David was strengthened in his kingdom, and Jehovah his God was with him, and magnified him exceedingly.</VERS>\r\n      <VERS vnumber=\"2\">And Solomon spake unto all Israel, to the captains of thousands and of hundreds, and to the judges, and to every prince in all Israel, the heads of the fathers` [houses].</VERS>\r\n      <VERS vnumber=\"3\">So Solomon, and all the assembly with him, went to the high place that was at Gibeon; for there was the tent of meeting of God, which Moses the servant of Jehovah had made in the wilderness.</VERS>\r\n      <VERS vnumber=\"4\">But the ark of God had David brought up from Kiriath-jearim to [the place] that David had prepared for it; for he had pitched a tent for it at Jerusalem.</VERS>\r\n      <VERS vnumber=\"5\">Moreover the brazen altar, that Bezalel the son of Uri, the son of Hur, had made, was there before the tabernacle of Jehovah: and Solomon and the assembly sought unto it.</VERS>\r\n      <VERS vnumber=\"6\">And Solomon went up thither to the brazen altar before Jehovah, which was at the tent of meeting, and offered a thousand burnt-offerings upon it.</VERS>\r\n      <VERS vnumber=\"7\">In that night did God appear unto Solomon, and said unto him, Ask what I shall give thee.</VERS>\r\n      <VERS vnumber=\"8\">And Solomon said unto God, Thou hast showed great lovingkindness unto David my father, and hast made me king in his stead.</VERS>\r\n      <VERS vnumber=\"9\">Now, O Jehovah 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.</VERS>\r\n      <VERS vnumber=\"10\">Give 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?</VERS>\r\n      <VERS vnumber=\"11\">And God said to Solomon, Because this was in thy heart, and thou hast not asked riches, wealth, or honor, nor the life of them that hate thee, 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:</VERS>\r\n      <VERS vnumber=\"12\">wisdom and knowledge is granted unto thee; and I will give thee riches, and wealth, and honor, such as none of the kings have had that have been before thee; neither shall there any after thee have the like.</VERS>\r\n      <VERS vnumber=\"13\">So Solomon came from the high place that was at Gibeon, from before the tent of meeting, unto Jerusalem; and he reigned over Israel.</VERS>\r\n      <VERS vnumber=\"14\">And Solomon gathered chariots and horsemen: and he had a thousand and four hundred chariots, and twelve thousand horsemen, that he placed in the chariot cities, and with the king at Jerusalem.</VERS>\r\n      <VERS vnumber=\"15\">And the king made silver and gold to be in Jerusalem as stones, and cedars made he to be as the sycomore-trees that are in the lowland, for abundance.</VERS>\r\n      <VERS vnumber=\"16\">And the horses which Solomon had were brought out of Egypt; the king`s merchants received them in droves, each drove at a price.</VERS>\r\n      <VERS vnumber=\"17\">And they fetched up and brought out of Egypt a chariot for six hundred [shekels] of silver, and a horse for a hundred and fifty: and so for all the kings of the Hittites, and the kings of Syria, did they bring them out by their means.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">Now Solomon purposed to build a house for the name of Jehovah, and a house for his kingdom.</VERS>\r\n      <VERS vnumber=\"2\">And Solomon counted out threescore and ten thousand men to bear burdens, and fourscore thousand men that were hewers in the mountains, and three thousand and six hundred to oversee them.</VERS>\r\n      <VERS vnumber=\"3\">And 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 a house to dwell therein, [even so deal with me].</VERS>\r\n      <VERS vnumber=\"4\">Behold, I am about to build a house for the name of Jehovah my God, to dedicate it to him, and to burn before him incense of sweet spices, and for the continual showbread, and for the burnt-offerings morning and evening, on the sabbaths, and on the new moons, and on the set feasts of Jehovah our God. This is [an ordinance] for ever to Israel.</VERS>\r\n      <VERS vnumber=\"5\">And the house which I build is great; for great is our God above all gods.</VERS>\r\n      <VERS vnumber=\"6\">But who is able to build him a house, seeing heaven and the heaven of heavens cannot contain him? who am I then, that I should build him a house, save only to burn incense before him?</VERS>\r\n      <VERS vnumber=\"7\">Now therefore send me a man skilful to work in gold, and in silver, and in brass, and in iron, and in purple, and crimson, and blue, and that knoweth how to grave [all manner of] gravings, [to be] with the skilful men that are with me in Judah and in Jerusalem, whom David my father did provide.</VERS>\r\n      <VERS vnumber=\"8\">Send me also cedar-trees, fir-trees, and algum-trees, out of Lebanon; for I know that thy servants know how to cut timber in Lebanon: and, behold, my servants shall be with thy servants,</VERS>\r\n      <VERS vnumber=\"9\">even to prepare me timber in abundance; for the house which I am about to build shall be great and wonderful.</VERS>\r\n      <VERS vnumber=\"10\">And, 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.</VERS>\r\n      <VERS vnumber=\"11\">Then Huram the king of Tyre answered in writing, which he sent to Solomon, Because Jehovah loveth his people, he hath made thee king over them.</VERS>\r\n      <VERS vnumber=\"12\">Huram said moreover, Blessed be Jehovah, the God of Israel, that made heaven and earth, who hath given to David the king a wise son, endued with discretion and understanding, that should build a house for Jehovah, and a house for his kingdom.</VERS>\r\n      <VERS vnumber=\"13\">And now I have sent a skilful man, endued with understanding, of Huram my father`s,</VERS>\r\n      <VERS vnumber=\"14\">the 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 devise any device; that there may be [a place] appointed unto him with thy skilful men, and with the skilful men of my lord David thy father.</VERS>\r\n      <VERS vnumber=\"15\">Now therefore the wheat and the barley, the oil and the wine, which my lord hath spoken of, let him send unto his servants:</VERS>\r\n      <VERS vnumber=\"16\">and 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.</VERS>\r\n      <VERS vnumber=\"17\">And Solomon numbered all the sojourners that were in the land of Israel, after the numbering wherewith David his father had numbered them; and they were found a hundred and fifty thousand and three thousand and six hundred.</VERS>\r\n      <VERS vnumber=\"18\">And he set threescore and ten thousand of them to bear burdens, and fourscore thousand that were hewers in the mountains, and three thousand and six hundred overseers to set the people at work.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Then Solomon began to build the house of Jehovah at Jerusalem on mount Moriah, where [Jehovah] appeared unto David his father, which he made ready in the place that David had appointed, in the threshing-floor of Ornan the Jebusite.</VERS>\r\n      <VERS vnumber=\"2\">And he began to build in the second [day] of the second month, in the fourth year of his reign.</VERS>\r\n      <VERS vnumber=\"3\">Now these are the foundations which Solomon laid for the building of the house of God. The length by cubits after the first measure was threescore cubits, and the breadth twenty cubits.</VERS>\r\n      <VERS vnumber=\"4\">And the porch that was before [the house], the length of it, according to the breadth of the house, was twenty cubits, and the height a hundred and twenty; and he overlaid it within with pure gold.</VERS>\r\n      <VERS vnumber=\"5\">And the greater house he ceiled with fir-wood, which he overlaid with fine gold, and wrought thereon palm-trees and chains.</VERS>\r\n      <VERS vnumber=\"6\">And he garnished the house with precious stones for beauty: and the gold was gold of Parvaim.</VERS>\r\n      <VERS vnumber=\"7\">He overlaid also the house, the beams, the thresholds, and the walls thereof, and the doors thereof, with gold; and graved cherubim on the walls.</VERS>\r\n      <VERS vnumber=\"8\">And he made the most holy house: the length thereof, according to the breadth of the house, was twenty cubits, and the breadth thereof twenty cubits; and he overlaid it with fine gold, amounting to six hundred talents.</VERS>\r\n      <VERS vnumber=\"9\">And the weight of the nails was fifty shekels of gold. And he overlaid the upper chambers with gold.</VERS>\r\n      <VERS vnumber=\"10\">And in the most holy house he made two cherubim of image work; and they overlaid them with gold.</VERS>\r\n      <VERS vnumber=\"11\">And the wings of the cherubim were twenty cubits long: the 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.</VERS>\r\n      <VERS vnumber=\"12\">And the 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.</VERS>\r\n      <VERS vnumber=\"13\">The wings of these cherubim spread themselves forth twenty cubits: and they stood on their feet, and their faces were toward the house.</VERS>\r\n      <VERS vnumber=\"14\">And he made the veil of blue, and purple, and crimson, and fine linen, and wrought cherubim thereon.</VERS>\r\n      <VERS vnumber=\"15\">Also he made before the house two pillars of thirty and five cubits high, and the capital that was on the top of each of them was five cubits.</VERS>\r\n      <VERS vnumber=\"16\">And he made chains in the oracle, and put [them] on the tops of the pillars; and he made a hundred pomegranates, and put them on the chains.</VERS>\r\n      <VERS vnumber=\"17\">And he set 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">Moreover he made an altar of brass, twenty cubits the length thereof, and twenty cubits the breadth thereof, and ten cubits the height thereof.</VERS>\r\n      <VERS vnumber=\"2\">Also he made the molten sea of ten cubits from brim to brim, round in compass; and the height thereof was five cubits; and a line of thirty cubits compassed it round about.</VERS>\r\n      <VERS vnumber=\"3\">And under it was the likeness of oxen, which did compass it round about, for ten cubits, compassing the sea round about. The oxen were in two rows, cast when it was cast.</VERS>\r\n      <VERS vnumber=\"4\">It 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 upon them above, and all their hinder parts were inward.</VERS>\r\n      <VERS vnumber=\"5\">And it was a handbreadth thick; and the brim thereof was wrought like the brim of a cup, like the flower of a lily: it received and held three thousand baths.</VERS>\r\n      <VERS vnumber=\"6\">He made also ten lavers, and put five on the right hand, and five on the left, to wash in them; such things as belonged to the burnt-offering they washed in them; but the sea was for the priests to wash in.</VERS>\r\n      <VERS vnumber=\"7\">And he made the ten candlesticks of gold according to the ordinance concerning them; and he set them in the temple, five on the right hand, and five on the left.</VERS>\r\n      <VERS vnumber=\"8\">He made also ten tables, and placed them in the temple, five on the right side, and five on the left. And he made a hundred basins of gold.</VERS>\r\n      <VERS vnumber=\"9\">Furthermore he made the court of the priests, and the great court, and doors for the court, and overlaid the doors of them with brass.</VERS>\r\n      <VERS vnumber=\"10\">And he set the sea on the right side [of the house] eastward, toward the south.</VERS>\r\n      <VERS vnumber=\"11\">And Huram made the pots, and the shovels, and the basins. So Huram made an end of doing the work that he wrought for king Solomon in the house of God:</VERS>\r\n      <VERS vnumber=\"12\">the two pillars, and the bowls, and the two capitals which were on the top of the pillars, and the two networks to cover the two bowls of the capitals that were on the top of the pillars,</VERS>\r\n      <VERS vnumber=\"13\">and the four hundred pomegranates for the two networks; two rows of pomegranates for each network, to cover the two bowls of the capitals that were upon the pillars.</VERS>\r\n      <VERS vnumber=\"14\">He made also the bases, and the lavers made he upon the bases;</VERS>\r\n      <VERS vnumber=\"15\">one sea, and the twelve oxen under it.</VERS>\r\n      <VERS vnumber=\"16\">The pots also, and the shovels, and the flesh-hooks, and all the vessels thereof, did Huram his father make for king Solomon for the house of Jehovah of bright brass.</VERS>\r\n      <VERS vnumber=\"17\">In the plain of the Jordan did the king cast them, in the clay ground between Succoth and Zeredah.</VERS>\r\n      <VERS vnumber=\"18\">Thus Solomon made all these vessels in great abundance: for the weight of the brass could not be found out.</VERS>\r\n      <VERS vnumber=\"19\">And Solomon made all the vessels that were in the house of God, the golden altar also, and the tables whereon was the showbread;</VERS>\r\n      <VERS vnumber=\"20\">and the candlesticks with their lamps, to burn according to the ordinance before the oracle, of pure gold;</VERS>\r\n      <VERS vnumber=\"21\">and the flowers, and the lamps, and the tongs, of gold, and that perfect gold;</VERS>\r\n      <VERS vnumber=\"22\">and the snuffers, and the basins, and the spoons, and the firepans, of pure gold: and as for the entry of the house, the inner doors thereof for the most holy place, and the doors of the house, [to wit], of the temple, were of gold.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">Thus all the work that Solomon wrought for the house of Jehovah was finished. And Solomon brought in the things that David his father had dedicated, even the silver, and the gold, and all the vessels, and put them in the treasuries of the house of God.</VERS>\r\n      <VERS vnumber=\"2\">Then Solomon assembled the elders of Israel, and all the heads of the tribes, the princes of the fathers` [houses] of the children of Israel, unto Jerusalem, to bring up the ark of the covenant of Jehovah out of the city of David, which is Zion.</VERS>\r\n      <VERS vnumber=\"3\">nd all the men of Israel assembled themselves unto the king at the feast, which was [in] the seventh month.</VERS>\r\n      <VERS vnumber=\"4\">And all the elders of Israel came: and the Levites took up the ark;</VERS>\r\n      <VERS vnumber=\"5\">and they brought up the ark, and the tent of meeting, and all the holy vessels that were in the Tent; these did the priests the Levites bring up.</VERS>\r\n      <VERS vnumber=\"6\">And king Solomon and all the congregation of Israel, that were assembled unto him, were before the ark, sacrificing sheep and oxen, that could not be counted nor numbered for multitude.</VERS>\r\n      <VERS vnumber=\"7\">And the priests brought in the ark of the covenant of Jehovah unto its place, into the oracle of the house, to the most holy place, even under the wings of the cherubim.</VERS>\r\n      <VERS vnumber=\"8\">For the cherubim spread forth their wings over the place of the ark, and the cherubim covered the ark and the staves thereof above.</VERS>\r\n      <VERS vnumber=\"9\">And the staves were so long 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.</VERS>\r\n      <VERS vnumber=\"10\">There was nothing in the ark save the two tables which Moses put [there] at Horeb, when Jehovah made a covenant with the children of Israel, when they came out of Egypt.</VERS>\r\n      <VERS vnumber=\"11\">And it came to pass, when the priests were come out of the holy place, (for all the priests that were present had sanctified themselves, and did not keep their courses;</VERS>\r\n      <VERS vnumber=\"12\">also the Levites who were the singers, all of them, even Asaph, Heman, Jeduthun, and their sons and their brethren, arrayed in fine linen, with cymbals and psalteries and harps, stood at the east end of the altar, and with them a hundred and twenty priests sounding with trumpets;)</VERS>\r\n      <VERS vnumber=\"13\">it came to pass, when the trumpeters and singers were as one, to make one sound to be heard in praising and thanking Jehovah; and when they lifted up their voice with the trumpets and cymbals and instruments of music, and praised Jehovah, [saying], For he is good; for his lovingkindness [endureth] for ever; that then the house was filled with a cloud, even the house of Jehovah,</VERS>\r\n      <VERS vnumber=\"14\">so that the priests could not stand to minister by reason of the cloud: for the glory of Jehovah filled the house of God.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">Then spake Solomon, Jehovah hath said that he would dwell in the thick darkness.</VERS>\r\n      <VERS vnumber=\"2\">But I have built thee a house of habitation, and a place for thee to dwell in for ever.</VERS>\r\n      <VERS vnumber=\"3\">And the king turned his face, and blessed all the assembly of Israel: and all the assembly of Israel stood.</VERS>\r\n      <VERS vnumber=\"4\">And he said, Blessed be Jehovah, the God of Israel, who spake with his mouth unto David my father, and hath with his hands fulfilled it, saying,</VERS>\r\n      <VERS vnumber=\"5\">Since the day that I brought forth my people out of the land of Egypt, I chose no city out of all the tribes of Israel to build a house in, that my name might be there; neither chose I any man to be prince over my people Israel:</VERS>\r\n      <VERS vnumber=\"6\">but I have chosen Jerusalem, that my name might be there; and have chosen David to be over my people Israel.</VERS>\r\n      <VERS vnumber=\"7\">Now it was in the heart of David my father to build a house for the name of Jehovah, the God of Israel.</VERS>\r\n      <VERS vnumber=\"8\">But Jehovah said unto David my father, Whereas it was in thy heart to build a house for my name, thou didst well that it was in thy heart:</VERS>\r\n      <VERS vnumber=\"9\">nevertheless thou shalt not build the house; but thy son that shall come forth out of thy loins, he shall build the house for my name.</VERS>\r\n      <VERS vnumber=\"10\">And Jehovah hath performed his word that he spake; for I am risen up in the room of David my father, and sit on the throne of Israel, as Jehovah promised, and have built the house for the name of Jehovah, the God of Israel.</VERS>\r\n      <VERS vnumber=\"11\">And there have I set the ark, wherein is the covenant of Jehovah, which he made with the children of Israel.</VERS>\r\n      <VERS vnumber=\"12\">And he stood before the altar of Jehovah in the presence of all the assembly of Israel, and spread forth his hands</VERS>\r\n      <VERS vnumber=\"13\">(for Solomon had made a brazen scaffold, 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 assembly of Israel, and spread forth his hands toward heaven;)</VERS>\r\n      <VERS vnumber=\"14\">and he said, O Jehovah, the God of Israel, there is no God like thee, in heaven, or on earth; who keepest covenant and lovingkindness with thy servants, that walk before thee with all their heart;</VERS>\r\n      <VERS vnumber=\"15\">who hast kept with thy servant David my father that which thou didst promise him: yea, thou spakest with thy mouth, and hast fulfilled it with thy hand, as it is this day.</VERS>\r\n      <VERS vnumber=\"16\">Now therefore, O Jehovah, the 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 on the throne of Israel, if only thy children take heed to their way, to walk in my law as thou hast walked before me.</VERS>\r\n      <VERS vnumber=\"17\">Now therefore, O Jehovah, the God of Israel, let thy word be verified, which thou spakest unto thy servant David.</VERS>\r\n      <VERS vnumber=\"18\">But 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 builded!</VERS>\r\n      <VERS vnumber=\"19\">Yet have thou respect unto the prayer of thy servant, and to his supplication, O Jehovah my God, to hearken unto the cry and to the prayer which thy servant prayeth before thee;</VERS>\r\n      <VERS vnumber=\"20\">that thine eyes may be open toward this house day and night, even toward the place whereof thou hast said that thou wouldest put thy name there; to hearken unto the prayer which thy servant shall pray toward this place.</VERS>\r\n      <VERS vnumber=\"21\">And hearken thou to the supplications of thy servant, and of thy people Israel, when they shall pray toward this place: yea, hear thou from thy dwelling-place, even from heaven; and when thou hearest forgive.</VERS>\r\n      <VERS vnumber=\"22\">If a man sin against his neighbor, and an oath be laid upon him to cause him to swear, and he come [and] swear before thine altar in this house;</VERS>\r\n      <VERS vnumber=\"23\">then hear thou from heaven, and do, and judge thy servants, requiting the wicked, to bring his way upon his own head; and justifying the righteous, to give him according to his righteousness.</VERS>\r\n      <VERS vnumber=\"24\">And if thy people Israel be smitten down before the enemy, because they have sinned against thee, and shall turn again and confess thy name, and pray and make supplication before thee in this house;</VERS>\r\n      <VERS vnumber=\"25\">then hear thou from heaven, and forgive the sin of thy people Israel, and bring them again unto the land which thou gavest to them and to their fathers.</VERS>\r\n      <VERS vnumber=\"26\">When the heavens are 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 dost afflict them:</VERS>\r\n      <VERS vnumber=\"27\">then hear thou in heaven, and forgive the sin of thy servants, and of thy people Israel, when thou teachest them the good way wherein they should walk; and send rain upon thy land, which thou hast given to thy people for an inheritance.</VERS>\r\n      <VERS vnumber=\"28\">If there be in the land famine, if there be pestilence, if there be blasting or mildew, locust or caterpillar; if their enemies besiege them in the land of their cities; whatsoever plague or whatsoever sickness there be;</VERS>\r\n      <VERS vnumber=\"29\">what prayer and supplication soever be made by any man, or by all thy people Israel, who shall know every man his own plague and his own sorrow, and shall spread forth his hands toward this house:</VERS>\r\n      <VERS vnumber=\"30\">then hear thou from heaven thy dwelling-place and forgive, and render unto every man according to all his ways, whose heart thou knowest; (for thou, even thou only, knowest the hearts of the children of men;)</VERS>\r\n      <VERS vnumber=\"31\">that they may fear thee, to walk in thy ways, so long as they live in the land which thou gavest unto our fathers.</VERS>\r\n      <VERS vnumber=\"32\">Moreover concerning the foreigner, that is not of thy people Israel, when he shall come from a far country for thy great name`s sake, and thy mighty hand, and thine outstretched arm; when they shall come and pray toward this house:</VERS>\r\n      <VERS vnumber=\"33\">then hear thou from heaven, even from thy dwelling-place, and do according to all that the foreigner calleth to thee for; that all the peoples of the earth may know thy name, and fear thee, as doth thy people Israel, and that they may know that this house which I have built is called by thy name.</VERS>\r\n      <VERS vnumber=\"34\">If thy people go out to battle against their enemies, by whatsoever way 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;</VERS>\r\n      <VERS vnumber=\"35\">then hear thou from heaven their prayer and their supplication, and maintain their cause.</VERS>\r\n      <VERS vnumber=\"36\">If 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 captive unto a land far off or near;</VERS>\r\n      <VERS vnumber=\"37\">yet if they shall bethink themselves in the land whither they are carried captive, and turn again, and make supplication unto thee in the land of their captivity, saying, We have sinned, we have done perversely, and have dealt wickedly;</VERS>\r\n      <VERS vnumber=\"38\">if they return unto thee with all their heart and with all their soul in the land of their captivity, whither they have carried them captive, and pray toward their land, which thou gavest unto their fathers, and the city which thou hast chosen, and toward the house which I have built for thy name:</VERS>\r\n      <VERS vnumber=\"39\">then hear thou from heaven, even from thy dwelling-place, their prayer and their supplications, and maintain their cause, and forgive thy people who have sinned against thee.</VERS>\r\n      <VERS vnumber=\"40\">Now, O 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.</VERS>\r\n      <VERS vnumber=\"41\">Now therefore arise, O Jehovah God, into thy resting-place, thou, and the ark of thy strength: let thy priests, O Jehovah God, be clothed with salvation, and let thy saints rejoice in goodness.</VERS>\r\n      <VERS vnumber=\"42\">O Jehovah God, turn not away the face of thine anointed: remember [thy] lovingkindnesses to David thy servant.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">Now 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 Jehovah filled the house.</VERS>\r\n      <VERS vnumber=\"2\">And the priests could not enter into the house of Jehovah, because the glory of Jehovah filled Jehovah`s house.</VERS>\r\n      <VERS vnumber=\"3\">And all the children of Israel looked on, when the fire came down, and the glory of Jehovah was upon the house; and they bowed themselves with their faces to the ground upon the pavement, and worshipped, and gave thanks unto Jehovah, [saying], For he is good; for his lovingkindness [endureth] for ever.</VERS>\r\n      <VERS vnumber=\"4\">Then the king and all the people offered sacrifice before Jehovah.</VERS>\r\n      <VERS vnumber=\"5\">And king Solomon offered a sacrifice of twenty and two thousand oxen, and a hundred and twenty thousand sheep. So the king and all the people dedicated the house of God.</VERS>\r\n      <VERS vnumber=\"6\">And the priests stood, according to their offices; the Levites also with instruments of music of Jehovah, which David the king had made to give thanks unto Jehovah, (for his lovingkindness [endureth] for ever,) when David praised by their ministry: and the priests sounded trumpets before them; and all Israel stood.</VERS>\r\n      <VERS vnumber=\"7\">Moreover Solomon hallowed the middle of the court that was before the house of Jehovah; for there he offered the burnt-offerings, and the fat of the peace-offerings, because the brazen altar which Solomon had made was not able to receive the burnt-offering, and the meal-offering, and the fat.</VERS>\r\n      <VERS vnumber=\"8\">So Solomon held the feast at that time seven days, and all Israel with him, a very great assembly, from the entrance of Hamath unto the brook of Egypt.</VERS>\r\n      <VERS vnumber=\"9\">And on the eighth day they held a solemn assembly: for they kept the dedication of the altar seven days, and the feast seven days.</VERS>\r\n      <VERS vnumber=\"10\">And on the three and twentieth day of the seventh month he sent the people away unto their tents, joyful and glad of heart for the goodness that Jehovah had showed unto David, and to Solomon, and to Israel his people.</VERS>\r\n      <VERS vnumber=\"11\">Thus Solomon finished the house of Jehovah, and the king`s house: and all that came into Solomon`s heart to make in the house of Jehovah, and in his own house, he prosperously effected.</VERS>\r\n      <VERS vnumber=\"12\">And Jehovah appeared to Solomon by night, and said unto him, I have heard thy prayer, and have chosen this place to myself for a house of sacrifice.</VERS>\r\n      <VERS vnumber=\"13\">If I shut up the heavens so that there is no rain, or if I command the locust to devour the land, or if I send pestilence among my people;</VERS>\r\n      <VERS vnumber=\"14\">if my people, who 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.</VERS>\r\n      <VERS vnumber=\"15\">Now mine eyes shall be open, and mine ears attent, unto the prayer that is made in this place.</VERS>\r\n      <VERS vnumber=\"16\">For now have I chosen and hallowed this house, that my name may be there for ever; and mine eyes and my heart shall be there perpetually.</VERS>\r\n      <VERS vnumber=\"17\">And 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 wilt keep my statutes and mine ordinances;</VERS>\r\n      <VERS vnumber=\"18\">then I will establish the throne of thy kingdom, according as I covenanted with David thy father, saying, There shall not fail thee a man to be ruler in Israel.</VERS>\r\n      <VERS vnumber=\"19\">But 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;</VERS>\r\n      <VERS vnumber=\"20\">then will I pluck them up by the roots out of my land which I have given them; and this house, which I have hallowed for my name, will I cast out of my sight, and I will make it a proverb and a byword among all peoples.</VERS>\r\n      <VERS vnumber=\"21\">And this house, which is so high, every one that passeth by it shall be astonished, and shall say, Why hath Jehovah done thus unto this land, and to this house?</VERS>\r\n      <VERS vnumber=\"22\">And they shall answer, Because they forsook Jehovah, the God of their fathers, who 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">And it came to pass at the end of twenty years, wherein Solomon had built the house of Jehovah, and his own house,</VERS>\r\n      <VERS vnumber=\"2\">that the cities which Huram had given to Solomon, Solomon built them, and caused the children of Israel to dwell there.</VERS>\r\n      <VERS vnumber=\"3\">And Solomon went to Hamath-zobah, and prevailed against it.</VERS>\r\n      <VERS vnumber=\"4\">And he built Tadmor in the wilderness, and all the store-cities, which he built in Hamath.</VERS>\r\n      <VERS vnumber=\"5\">Also he built Beth-horon the upper, and Beth-horon the nether, fortified cities, with walls, gates, and bars;</VERS>\r\n      <VERS vnumber=\"6\">and Baalath, and all the store-cities that Solomon had, and all the cities for his chariots, and the cities for his horsemen, and all that Solomon desired to build for his pleasure in Jerusalem, and in Lebanon, and in all the land of his dominion.</VERS>\r\n      <VERS vnumber=\"7\">As for all the people that were left of the Hittites, and the Amorites, and the Perizzites, and the Hivites, and the Jebusites, that were not of Israel;</VERS>\r\n      <VERS vnumber=\"8\">of their children that were left after them in the land, whom the children of Israel consumed not, of them did Solomon raise a levy [of bondservants] unto this day.</VERS>\r\n      <VERS vnumber=\"9\">But 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 rulers of his chariots and of his horsemen.</VERS>\r\n      <VERS vnumber=\"10\">And these were the chief officers of king Solomon, even two hundred and fifty, that bare rule over the people.</VERS>\r\n      <VERS vnumber=\"11\">And 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 Jehovah hath come.</VERS>\r\n      <VERS vnumber=\"12\">Then Solomon offered burnt-offerings unto Jehovah on the altar of Jehovah, which he had built before the porch,</VERS>\r\n      <VERS vnumber=\"13\">even as the duty of every day required, offering according to the commandment of Moses, on the sabbaths, and on the new moons, and on the set 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.</VERS>\r\n      <VERS vnumber=\"14\">And he appointed, according to the ordinance of David his father, the courses of the priests to their service, and the Levites to their offices, to praise, and to minister before the priests, as the duty of every day required; the doorkeepers also by their courses at every gate: for so had David the man of God commanded.</VERS>\r\n      <VERS vnumber=\"15\">And they departed not from the commandment of the king unto the priests and Levites concerning any matter, or concerning the treasures.</VERS>\r\n      <VERS vnumber=\"16\">Now all the work of Solomon was prepared unto the day of the foundation of the house of Jehovah, and until it was finished. [So] the house of Jehovah was completed.</VERS>\r\n      <VERS vnumber=\"17\">Then went Solomon to Ezion-geber, and to Eloth, on the seashore in the land of Edom.</VERS>\r\n      <VERS vnumber=\"18\">And Huram sent him by the hands of his servants ships, and servants that had knowledge of the sea; and they came with the servants of Solomon to Ophir, and fetched from thence four hundred and fifty talents of gold, and brought them to king Solomon.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">And 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 train, 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.</VERS>\r\n      <VERS vnumber=\"2\">And Solomon told her all her questions; and there was not anything hid from Solomon which he told her not.</VERS>\r\n      <VERS vnumber=\"3\">And when the queen of Sheba had seen the wisdom of Solomon, and the house that he had built,</VERS>\r\n      <VERS vnumber=\"4\">and the food 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 unto the house of Jehovah; there was no more spirit in her.</VERS>\r\n      <VERS vnumber=\"5\">And she said to the king, It was a true report that I heard in mine own land of thine acts, and of thy wisdom.</VERS>\r\n      <VERS vnumber=\"6\">Howbeit I believed not their words, until I came, and mine eyes had seen it; and, behold, the half of the greatness of thy wisdom was not told me: thou exceedest the fame that I heard.</VERS>\r\n      <VERS vnumber=\"7\">Happy are thy men, and happy are these thy servants, that stand continually before thee, and hear thy wisdom.</VERS>\r\n      <VERS vnumber=\"8\">Blessed be Jehovah thy God, who delighted in thee, to set thee on his throne, to be king for Jehovah thy God: because thy God loved Israel, to establish them for ever, therefore made he thee king over them, to do justice and righteousness.</VERS>\r\n      <VERS vnumber=\"9\">And she gave the king a hundred and twenty talents of gold, and spices in great abundance, and precious stones: neither was there any such spice as the queen of Sheba gave to king Solomon.</VERS>\r\n      <VERS vnumber=\"10\">And the servants also of Huram, and the servants of Solomon, that brought gold from Ophir, brought algum-trees and precious stones.</VERS>\r\n      <VERS vnumber=\"11\">And the king made of the algum-trees terraces for the house of Jehovah, and for the king`s house, and harps and psalteries for the singers: and there were none such seen before in the land of Judah.</VERS>\r\n      <VERS vnumber=\"12\">And king Solomon gave to the queen of Sheba all her desire, whatsoever she asked, besides that which she had brought unto the king. So she turned, and went to her own land, she and her servants.</VERS>\r\n      <VERS vnumber=\"13\">Now the weight of gold that came to Solomon in one year was six hundred and threescore and six talents of gold,</VERS>\r\n      <VERS vnumber=\"14\">besides that which the traders and merchants brought: and all the kings of Arabia and the governors of the country brought gold and silver to Solomon.</VERS>\r\n      <VERS vnumber=\"15\">And king Solomon made two hundred bucklers of beaten gold; six hundred [shekels] of beaten gold went to one buckler.</VERS>\r\n      <VERS vnumber=\"16\">And [he made] three hundred shields 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.</VERS>\r\n      <VERS vnumber=\"17\">Moreover the king made a great throne of ivory, and overlaid it with pure gold.</VERS>\r\n      <VERS vnumber=\"18\">nd there were six steps to the throne, with a footstool of gold, which were fastened to the throne, and stays on either side by the place of the seat, and two lions standing beside the stays.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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: silver was nothing accounted of in the days of Solomon.</VERS>\r\n      <VERS vnumber=\"21\">For the king had ships that went to Tarshish with the servants of Huram; once every three years came the ships of Tarshish, bringing gold, and silver, ivory, and apes, and peacocks.</VERS>\r\n      <VERS vnumber=\"22\">So king Solomon exceeded all the kings of the earth in riches and wisdom.</VERS>\r\n      <VERS vnumber=\"23\">And all the kings of the earth sought the presence of Solomon, to hear his wisdom, which God had put in his heart.</VERS>\r\n      <VERS vnumber=\"24\">And they brought every man his tribute, vessels of silver, and vessels of gold, and raiment, armor, and spices, horses, and mules, a rate year by year.</VERS>\r\n      <VERS vnumber=\"25\">And Solomon had four thousand stalls for horses and chariots, and twelve thousand horsemen, that he bestowed in the chariot cities, and with the king at Jerusalem.</VERS>\r\n      <VERS vnumber=\"26\">And he ruled over all the kings from the River even unto the land of the Philistines, and to the border of Egypt.</VERS>\r\n      <VERS vnumber=\"27\">And the king made silver to be in Jerusalem as stones, and cedars made he to be as the sycomore-trees that are in the lowland, for abundance.</VERS>\r\n      <VERS vnumber=\"28\">And they brought horses for Solomon out of Egypt, and out of all lands.</VERS>\r\n      <VERS vnumber=\"29\">Now the rest of the acts of Solomon, first and last, are they not written in the history of Nathan the prophet, and in the prophecy of Ahijah the Shilonite, and in the visions of Iddo the seer concerning Jeroboam the son of Nebat?</VERS>\r\n      <VERS vnumber=\"30\">And Solomon reigned in Jerusalem over all Israel forty years.</VERS>\r\n      <VERS vnumber=\"31\">And Solomon slept with his fathers, and he was buried in the city of David his father: and Rehoboam his son reigned in his stead.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">And Rehoboam went to Shechem; for all Israel were come to Shechem to make him king.</VERS>\r\n      <VERS vnumber=\"2\">And it came to pass, when Jeroboam the son of Nebat heard of it, (for he was in Egypt, whither he had fled from the presence of king Solomon,) that Jeroboam returned out of Egypt.</VERS>\r\n      <VERS vnumber=\"3\">And they sent and called him; and Jeroboam and all Israel came, and they spake to Rehoboam, saying,</VERS>\r\n      <VERS vnumber=\"4\">Thy 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.</VERS>\r\n      <VERS vnumber=\"5\">And he said unto them, Come again unto me after three days. And the people departed.</VERS>\r\n      <VERS vnumber=\"6\">And 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?</VERS>\r\n      <VERS vnumber=\"7\">And they spake unto him, saying, If thou be kind to this people, and please them, and speak good words to them, then they will be thy servants for ever.</VERS>\r\n      <VERS vnumber=\"8\">But he forsook the counsel of the old men which they had given him, and took counsel with the young men that were grown up with him, that stood before him.</VERS>\r\n      <VERS vnumber=\"9\">And he said unto them, What counsel give ye, that we may return answer to this people, who have spoken to me, saying, Make the yoke that thy father did put upon us lighter?</VERS>\r\n      <VERS vnumber=\"10\">And the young men that were grown up with him spake unto him, saying, Thus shalt thou say unto the 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 is thicker than my father`s loins.</VERS>\r\n      <VERS vnumber=\"11\">And now whereas my father did lade you with a heavy yoke, I will add to your yoke: my father chastised you with whips, but I [will chastise you] with scorpions.</VERS>\r\n      <VERS vnumber=\"12\">So Jeroboam and all the people came to Rehoboam the third day, as the king bade, saying, Come to me again the third day.</VERS>\r\n      <VERS vnumber=\"13\">And the king answered them roughly; and king Rehoboam forsook the counsel of the old men,</VERS>\r\n      <VERS vnumber=\"14\">and spake to them after the counsel 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.</VERS>\r\n      <VERS vnumber=\"15\">So the king hearkened not unto the people; for it was brought about of God, that Jehovah might establish his word, which he spake by Ahijah the Shilonite to Jeroboam the son of Nebat.</VERS>\r\n      <VERS vnumber=\"16\">And 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: every man to your tents, O Israel: now see to thine own house, David. So all Israel departed unto their tents.</VERS>\r\n      <VERS vnumber=\"17\">But as for the children of Israel that dwelt in the cities of Judah, Rehoboam reigned over them.</VERS>\r\n      <VERS vnumber=\"18\">Then king Rehoboam sent Hadoram, who was over the men subject to taskwork; and the children of Israel stoned him to death with stones. And king Rehoboam made speed to get him up to his chariot, to flee to Jerusalem.</VERS>\r\n      <VERS vnumber=\"19\">So Israel rebelled against the house of David unto this day.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">And when Rehoboam was come to Jerusalem, he assembled the house of Judah and Benjamin, a hundred and fourscore thousand chosen men, that were warriors, to fight against Israel, to bring the kingdom again to Rehoboam.</VERS>\r\n      <VERS vnumber=\"2\">But the word of Jehovah came to Shemaiah the man of God, saying,</VERS>\r\n      <VERS vnumber=\"3\">Speak unto Rehoboam the son of Solomon, king of Judah, and to all Israel in Judah and Benjamin, saying,</VERS>\r\n      <VERS vnumber=\"4\">Thus saith Jehovah, Ye shall not go up, nor fight against your brethren: return every man to his house; for this thing is of me. So they hearkened unto the words of Jehovah, and returned from going against Jeroboam.</VERS>\r\n      <VERS vnumber=\"5\">And Rehoboam dwelt in Jerusalem, and built cities for defence in Judah.</VERS>\r\n      <VERS vnumber=\"6\">He built Beth-lehem, and Etam, and Tekoa,</VERS>\r\n      <VERS vnumber=\"7\">And Beth-zur, and Soco, and Adullam,</VERS>\r\n      <VERS vnumber=\"8\">and Gath, and Mareshah, and Ziph,</VERS>\r\n      <VERS vnumber=\"9\">and Adoraim, and Lachish, and Azekah,</VERS>\r\n      <VERS vnumber=\"10\">and Zorah, and Aijalon, and Hebron, which are in Judah and in Benjamin, fortified cities.</VERS>\r\n      <VERS vnumber=\"11\">And he fortified the strongholds, and put captains in them, and stores of victuals, and oil and wine.</VERS>\r\n      <VERS vnumber=\"12\">And in every city [he put] shields and spears, and made them exceeding strong. And Judah and Benjamin belonged to him.</VERS>\r\n      <VERS vnumber=\"13\">And the priests and the Levites that were in all Israel resorted to him out of all their border.</VERS>\r\n      <VERS vnumber=\"14\">For the Levites left their suburbs and their possession, and came to Judah and Jerusalem: for Jeroboam and his sons cast them off, that they should not execute the priest`s office unto Jehovah;</VERS>\r\n      <VERS vnumber=\"15\">and he appointed him priests for the high places, and for the he-goats, and for the calves which he had made.</VERS>\r\n      <VERS vnumber=\"16\">And after them, out of all the tribes of Israel, such as set their hearts to seek Jehovah, the God of Israel, came to Jerusalem to sacrifice unto Jehovah, the God of their fathers.</VERS>\r\n      <VERS vnumber=\"17\">So they strengthened the kingdom of Judah, and made Rehoboam the son of Solomon strong, three years; for they walked three years in the way of David and Solomon.</VERS>\r\n      <VERS vnumber=\"18\">And Rehoboam took him a wife, Mahalath the daughter of Jerimoth the son of David, [and of] Abihail the daughter of Eliab the son of Jesse;</VERS>\r\n      <VERS vnumber=\"19\">and she bare him sons: Jeush, and Shemariah, and Zaham.</VERS>\r\n      <VERS vnumber=\"20\">And after her he took Maacah the daughter of Absalom; and she bare him Abijah, and Attai, and Ziza, and Shelomith.</VERS>\r\n      <VERS vnumber=\"21\">And Rehoboam loved Maacah 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.)</VERS>\r\n      <VERS vnumber=\"22\">And Rehoboam appointed Abijah the son of Maacah to be chief, [even] the prince among his brethren; for [he was minded] to make him king.</VERS>\r\n      <VERS vnumber=\"23\">And he dealt wisely, and dispersed of all his sons throughout all the lands of Judah and Benjamin, unto every fortified city: and he gave them victuals in abundance. And he sought [for them] many wives.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">And it came to pass, when the kingdom of Rehoboam was established, and he was strong, that he forsook the law of Jehovah, and all Israel with him.</VERS>\r\n      <VERS vnumber=\"2\">And it came to pass in the fifth year of king Rehoboam, that Shishak king of Egypt came up against Jerusalem, because they had trespassed against Jehovah,</VERS>\r\n      <VERS vnumber=\"3\">with twelve hundred chariots, and threescore thousand horsemen. And the people were without number that came with him out of Egypt: the Lubim, the Sukkiim, and the Ethiopians.</VERS>\r\n      <VERS vnumber=\"4\">And he took the fortified cities which pertained to Judah, and came unto Jerusalem.</VERS>\r\n      <VERS vnumber=\"5\">Now Shemaiah the prophet came to Rehoboam, and to the princes of Judah, that were gathered together to Jerusalem because of Shishak, and said unto them, Thus saith Jehovah, Ye have forsaken me, therefore have I also left you in the hand of Shishak.</VERS>\r\n      <VERS vnumber=\"6\">Then the princes of Israel and the king humbled themselves; and they said, Jehovah is righteous.</VERS>\r\n      <VERS vnumber=\"7\">And when Jehovah saw that they humbled themselves, the word of Jehovah came to Shemaiah, saying, They have humbled themselves: 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.</VERS>\r\n      <VERS vnumber=\"8\">Nevertheless they shall be his servants, that they may know my service, and the service of the kingdoms of the countries.</VERS>\r\n      <VERS vnumber=\"9\">So Shishak king of Egypt came up against Jerusalem, and took away the treasures of the house of Jehovah, and the treasures of the king`s house: he took all away: he took away also the shields of gold which Solomon had made.</VERS>\r\n      <VERS vnumber=\"10\">And king Rehoboam made in their stead shields of brass, and committed them to the hands of the captains of the guard, that kept the door of the king`s house.</VERS>\r\n      <VERS vnumber=\"11\">And it was so, that, as oft as the king entered into the house of Jehovah, the guard came and bare them, and brought them back into the guard-chamber.</VERS>\r\n      <VERS vnumber=\"12\">And when he humbled himself, the wrath of Jehovah turned from him, so as not to destroy him altogether: and moreover in Judah there were good things [found].</VERS>\r\n      <VERS vnumber=\"13\">So king Rehoboam strengthened himself in Jerusalem, and reigned: for Rehoboam was forty and one years old when he began to reign, and he reigned seventeen years in Jerusalem, the city which Jehovah had chosen out of all the tribes of Israel, to put his name there: and his mother`s name was Naamah the Ammonitess.</VERS>\r\n      <VERS vnumber=\"14\">And he did that which was evil, because he set not his heart to seek Jehovah.</VERS>\r\n      <VERS vnumber=\"15\">Now the acts of Rehoboam, first and last, are they not written in the histories of Shemaiah the prophet and of Iddo the seer, after the manner of genealogies? And there were wars between Rehoboam and Jeroboam continually.</VERS>\r\n      <VERS vnumber=\"16\">And Rehoboam slept with his fathers, and was buried in the city of David: and Abijah his son reigned in his stead.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">In the eighteenth year of king Jeroboam began Abijah to reign over Judah.</VERS>\r\n      <VERS vnumber=\"2\">Three years reigned he in Jerusalem: and his mother`s name was Micaiah the daughter of Uriel of Gibeah. And there was war between Abijah and Jeroboam.</VERS>\r\n      <VERS vnumber=\"3\">And Abijah joined battle with an army of valiant men of war, even four hundred thousand chosen men: and Jeroboam set the battle in array against him with eight hundred thousand chosen men, who were mighty men of valor.</VERS>\r\n      <VERS vnumber=\"4\">And Abijah stood up upon mount Zemaraim, which is in the hill-country of Ephraim, and said, Hear me, O Jeroboam and all Israel:</VERS>\r\n      <VERS vnumber=\"5\">Ought ye not to know that Jehovah, the God of Israel, gave the kingdom over Israel to David for ever, even to him and to his sons by a covenant of salt?</VERS>\r\n      <VERS vnumber=\"6\">Yet Jeroboam the son of Nebat, the servant of Solomon the son of David, rose up, and rebelled against his lord.</VERS>\r\n      <VERS vnumber=\"7\">And there were gathered unto him worthless men, base fellows, that strengthened themselves against Rehoboam the son of Solomon, when Rehoboam was young and tender-hearted, and could not withstand them.</VERS>\r\n      <VERS vnumber=\"8\">And now ye think to withstand the kingdom of Jehovah in the hand of the sons of David; and ye are a great multitude, and there are with you the golden calves which Jeroboam made you for gods.</VERS>\r\n      <VERS vnumber=\"9\">Have ye not driven out the priests of Jehovah, the sons of Aaron, and the Levites, and made you priests after the manner of the peoples 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.</VERS>\r\n      <VERS vnumber=\"10\">But as for us, Jehovah is our God, and we have not forsaken him; and [we have] priests ministering unto Jehovah, the sons of Aaron, and the Levites in their work:</VERS>\r\n      <VERS vnumber=\"11\">and they burn unto Jehovah every morning and every evening burnt-offerings and sweet incense: the showbread 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 Jehovah our God; but ye have forsaken him.</VERS>\r\n      <VERS vnumber=\"12\">And, behold, God is with us at our head, and his priests with the trumpets of alarm to sound an alarm against you. O children of Israel, fight ye not against Jehovah, the God of your fathers; for ye shall not prosper.</VERS>\r\n      <VERS vnumber=\"13\">But Jeroboam caused an ambushment to come about behind them: so they were before Judah, and the ambushment was behind them.</VERS>\r\n      <VERS vnumber=\"14\">And when Judah looked back, behold, the battle was before and behind them; and they cried unto Jehovah, and the priests sounded with the trumpets.</VERS>\r\n      <VERS vnumber=\"15\">Then 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.</VERS>\r\n      <VERS vnumber=\"16\">And the children of Israel fled before Judah; and God delivered them into their hand.</VERS>\r\n      <VERS vnumber=\"17\">And Abijah and his people slew them with a great slaughter: so there fell down slain of Israel five hundred thousand chosen men.</VERS>\r\n      <VERS vnumber=\"18\">Thus the children of Israel were brought under at that time, and the children of Judah prevailed, because they relied upon Jehovah, the God of their fathers.</VERS>\r\n      <VERS vnumber=\"19\">And Abijah pursued after Jeroboam, and took cities from him, Beth-el with the towns thereof, and Jeshanah with the towns thereof, and Ephron with the towns thereof.</VERS>\r\n      <VERS vnumber=\"20\">Neither did Jeroboam recover strength again in the days of Abijah: and Jehovah smote him, and he died.</VERS>\r\n      <VERS vnumber=\"21\">But Abijah waxed mighty, and took unto himself fourteen wives, and begat twenty and two sons, and sixteen daughters.</VERS>\r\n      <VERS vnumber=\"22\">And the rest of the acts of Abijah, and his ways, and his sayings, are written in the commentary of the prophet Iddo.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">So 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.</VERS>\r\n      <VERS vnumber=\"2\">And Asa did that which was good and right in the eyes of Jehovah his God:</VERS>\r\n      <VERS vnumber=\"3\">for he took away the foreign altars, and the high places, and brake down the pillars, and hewed down the Asherim,</VERS>\r\n      <VERS vnumber=\"4\">and commanded Judah to seek Jehovah, the God of their fathers, and to do the law and the commandment.</VERS>\r\n      <VERS vnumber=\"5\">Also he took away out of all the cities of Judah the high places and the sun-images: and the kingdom was quiet before him.</VERS>\r\n      <VERS vnumber=\"6\">And he built fortified cities in Judah; for the land was quiet, and he had no war in those years, because Jehovah had given him rest.</VERS>\r\n      <VERS vnumber=\"7\">For he said unto Judah, Let us build these cities, and make about them walls, and towers, gates, and bars; the land is yet before us, because we have sought Jehovah our God; we have sought him, and he hath given us rest on every side. So they built and prospered.</VERS>\r\n      <VERS vnumber=\"8\">And Asa had an army that bare bucklers 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 valor.</VERS>\r\n      <VERS vnumber=\"9\">And there came out against them Zerah the Ethiopian with an army of a thousand thousand, and three hundred chariots; and he came unto Mareshah.</VERS>\r\n      <VERS vnumber=\"10\">Then Asa went out to meet him, and they set the battle in array in the valley of Zephathah at Mareshah.</VERS>\r\n      <VERS vnumber=\"11\">And Asa cried unto Jehovah his God, and said, Jehovah, there is none besides thee to help, between the mighty and him that hath no strength: help us, O Jehovah our God; for we rely on thee, and in thy name are we come against this multitude. O Jehovah, thou art our God; let not man prevail against thee.</VERS>\r\n      <VERS vnumber=\"12\">So Jehovah smote the Ethiopians before Asa, and before Judah; and the Ethiopians fled.</VERS>\r\n      <VERS vnumber=\"13\">And Asa and the people that were with him pursued them unto Gerar: and there fell of the Ethiopians so many that they could not recover themselves; for they were destroyed before Jehovah, and before his host; and they carried away very much booty.</VERS>\r\n      <VERS vnumber=\"14\">And they smote all the cities round about Gerar; for the fear of Jehovah came upon them: and they despoiled all the cities; for there was much spoil in them.</VERS>\r\n      <VERS vnumber=\"15\">They smote also the tents of cattle, and carried away sheep in abundance, and camels, and returned to Jerusalem.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">And the Spirit of God came upon Azariah the son of Oded:</VERS>\r\n      <VERS vnumber=\"2\">and he went out to meet Asa, and said unto him, Hear ye me, Asa, and all Judah and Benjamin: Jehovah is with you, while ye are with him; and if ye seek him, he will be found of you; but if ye forsake him, he will forsake you.</VERS>\r\n      <VERS vnumber=\"3\">Now for a long season Israel was without the true God, and without a teaching priest, and without law:</VERS>\r\n      <VERS vnumber=\"4\">But when in their distress they turned unto Jehovah, the God of Israel, and sought him, he was found of them.</VERS>\r\n      <VERS vnumber=\"5\">And 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 lands.</VERS>\r\n      <VERS vnumber=\"6\">And they were broken in pieces, nation against nation, and city against city; for God did vex them with all adversity.</VERS>\r\n      <VERS vnumber=\"7\">But be ye strong, and let not your hands be slack; for your work shall be rewarded.</VERS>\r\n      <VERS vnumber=\"8\">And when Asa heard these words, and the prophecy of Oded the prophet, he took courage, and put away the abominations out of all the land of Judah and Benjamin, and out of the cities which he had taken from the hill-country of Ephraim; and he renewed the altar of Jehovah, that was before the porch of Jehovah.</VERS>\r\n      <VERS vnumber=\"9\">And he gathered all Judah and Benjamin, and them that sojourned 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 Jehovah his God was with him.</VERS>\r\n      <VERS vnumber=\"10\">So they gathered themselves together at Jerusalem in the third month, in the fifteenth year of the reign of Asa.</VERS>\r\n      <VERS vnumber=\"11\">And they sacrificed unto Jehovah in that day, of the spoil which they had brought, seven hundred oxen and seven thousand sheep.</VERS>\r\n      <VERS vnumber=\"12\">And they entered into the covenant to seek Jehovah, the God of their fathers, with all their heart and with all their soul;</VERS>\r\n      <VERS vnumber=\"13\">and that whosoever would not seek Jehovah, the God of Israel, should be put to death, whether small or great, whether man or woman.</VERS>\r\n      <VERS vnumber=\"14\">And they sware unto Jehovah with a loud voice, and with shouting, and with trumpets, and with cornets.</VERS>\r\n      <VERS vnumber=\"15\">And 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 Jehovah gave them rest round about.</VERS>\r\n      <VERS vnumber=\"16\">And also Maacah, the mother of Asa the king, he removed from being queen, because she had made an abominable image for an Asherah; and Asa cut down her image, and made dust of it, and burnt it at the brook Kidron.</VERS>\r\n      <VERS vnumber=\"17\">But the high places were not taken away out of Israel: nevertheless the heart of Asa was perfect all his days.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And there was no more war unto the five and thirtieth year of the reign of Asa.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">In the six and thirtieth year of the reign of Asa, Baasha king of Israel went up against Judah, and built Ramah, that he might not suffer any one to go out or come in to Asa king of Judah.</VERS>\r\n      <VERS vnumber=\"2\">Then Asa brought out silver and gold out of the treasures of the house of Jehovah and of the king`s house, and sent to Ben-hadad king of Syria, that dwelt at Damascus, saying,</VERS>\r\n      <VERS vnumber=\"3\">[There 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.</VERS>\r\n      <VERS vnumber=\"4\">And Ben-hadad hearkened unto king Asa, and sent the captains of his armies against the cities of Israel; and they smote Ijon, and Dan, and Abel-maim, and all the store-cities of Naphtali.</VERS>\r\n      <VERS vnumber=\"5\">And it came to pass, when Baasha heard thereof, that he left off building Ramah, and let his work cease.</VERS>\r\n      <VERS vnumber=\"6\">Then Asa the king took all Judah; and they carried away the stones of Ramah, and the timber thereof, wherewith Baasha had builded; and he built therewith Geba and Mizpah.</VERS>\r\n      <VERS vnumber=\"7\">And 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 hast not relied on Jehovah thy God, therefore is the host of the king of Syria escaped out of thy hand.</VERS>\r\n      <VERS vnumber=\"8\">Were not the Ethiopians and the Lubim a huge host, with chariots and horsemen exceeding many? yet, because thou didst rely on Jehovah, he delivered them into thy hand.</VERS>\r\n      <VERS vnumber=\"9\">For the eyes of Jehovah run to and fro throughout the whole earth, to show himself strong in the behalf of them whose heart is perfect toward him. Herein thou hast done foolishly; for from henceforth thou shalt have wars.</VERS>\r\n      <VERS vnumber=\"10\">Then Asa was wroth with the seer, and put him in the prison-house; for he was in a rage with him because of this thing. And Asa oppressed some of the people at the same time.</VERS>\r\n      <VERS vnumber=\"11\">And, behold, the acts of Asa, first and last, lo, they are written in the book of the kings of Judah and Israel.</VERS>\r\n      <VERS vnumber=\"12\">And in the thirty and ninth year of his reign Asa was diseased in his feet; his disease was exceeding great: yet in his disease he sought not to Jehovah, but to the physicians.</VERS>\r\n      <VERS vnumber=\"13\">And Asa slept with his fathers, and died in the one and fortieth year of his reign.</VERS>\r\n      <VERS vnumber=\"14\">And they buried him in his own sepulchres, which he had hewn out for himself in the city of David, and laid him in the bed which was filled with sweet odors and divers kinds [of spices] prepared by the perfumers` art: and they made a very great burning for him.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"17\">\r\n      <VERS vnumber=\"1\">And Jehoshaphat his son reigned in his stead, and strengthened himself against Israel.</VERS>\r\n      <VERS vnumber=\"2\">And he placed forces in all the fortified cities of Judah, and set garrisons in the land of Judah, and in the cities of Ephraim, which Asa his father had taken.</VERS>\r\n      <VERS vnumber=\"3\">And Jehovah was with Jehoshaphat, because he walked in the first ways of his father David, and sought not unto the Baalim,</VERS>\r\n      <VERS vnumber=\"4\">but sought to the God of his father, and walked in his commandments, and not after the doings of Israel.</VERS>\r\n      <VERS vnumber=\"5\">Therefore Jehovah established the kingdom in his hand; and all Judah brought to Jehoshaphat tribute; and he had riches and honor in abundance.</VERS>\r\n      <VERS vnumber=\"6\">And his heart was lifted up in the ways of Jehovah: and furthermore he took away the high places and the Asherim out of Judah.</VERS>\r\n      <VERS vnumber=\"7\">Also in the third year of his reign he sent his princes, even Ben-hail, and Obadiah, and Zechariah, and Nethanel, and Micaiah, to teach in the cities of Judah;</VERS>\r\n      <VERS vnumber=\"8\">and with them the Levites, even Shemaiah, and Nethaniah, and Zebadiah, and Asahel, and Shemiramoth, and Jehonathan, and Adonijah, and Tobijah, and Tob-adonijah, the Levites; and with them Elishama and Jehoram, the priests.</VERS>\r\n      <VERS vnumber=\"9\">And they taught in Judah, having the book of the law of Jehovah with them; and they went about throughout all the cities of Judah, and taught among the people.</VERS>\r\n      <VERS vnumber=\"10\">And the fear of Jehovah fell upon all the kingdoms of the lands that were round about Judah, so that they made no war against Jehoshaphat.</VERS>\r\n      <VERS vnumber=\"11\">And some of the Philistines brought Jehoshaphat presents, and silver for tribute; the Arabians also brought him flocks, seven thousand and seven hundred rams, and seven thousand and seven hundred he-goats.</VERS>\r\n      <VERS vnumber=\"12\">And Jehoshaphat waxed great exceedingly; and he built in Judah castles and cities of store.</VERS>\r\n      <VERS vnumber=\"13\">And he had many works in the cities of Judah; and men of war, mighty men of valor, in Jerusalem.</VERS>\r\n      <VERS vnumber=\"14\">And this was the numbering of them according to their fathers` houses: Of Judah, the captains of thousands: Adnah the captain, and with him mighty men of valor three hundred thousand;</VERS>\r\n      <VERS vnumber=\"15\">and next to him Jehohanan the captain, and with him two hundred and fourscore thousand;</VERS>\r\n      <VERS vnumber=\"16\">and next to him Amasiah the son of Zichri, who willingly offered himself unto Jehovah; and with him two hundred thousand mighty men of valor.</VERS>\r\n      <VERS vnumber=\"17\">And of Benjamin: Eliada a mighty man of valor, and with him two hundred thousand armed with bow and shield;</VERS>\r\n      <VERS vnumber=\"18\">and next to him Jehozabad and with him a hundred and fourscore thousand ready prepared for war.</VERS>\r\n      <VERS vnumber=\"19\">These were they that waited on the king, besides those whom the king put in the fortified cities throughout all Judah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"18\">\r\n      <VERS vnumber=\"1\">Now Jehoshaphat had riches and honor in abundance; and he joined affinity with Ahab.</VERS>\r\n      <VERS vnumber=\"2\">And 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 were with him, and moved him to go up [with him] to Ramoth-gilead.</VERS>\r\n      <VERS vnumber=\"3\">And Ahab king of Israel said unto Jehoshaphat king of Judah, Wilt thou go with me to Ramoth-gilead? And he answered him, I am as thou art, and my people as thy people; and [we will be] with thee in the war.</VERS>\r\n      <VERS vnumber=\"4\">And Jehoshaphat said unto the king of Israel, Inquire first, I pray thee, for the word of Jehovah.</VERS>\r\n      <VERS vnumber=\"5\">Then the king of Israel gathered the prophets together, four hundred men, and said unto them, Shall we go to Ramoth-gilead to battle, or shall I forbear? And they said, Go up; for God will deliver it into the hand of the king.</VERS>\r\n      <VERS vnumber=\"6\">But Jehoshaphat said, Is there not here a prophet of Jehovah besides, that we may inquire of him?</VERS>\r\n      <VERS vnumber=\"7\">And the king of Israel said unto Jehoshaphat, There is yet one man by whom we may inquire of Jehovah: but I hate him; for he never prophesieth good concerning me, but always evil: the same is Micaiah the son of Imla. And Jehoshaphat said, Let not the king say so.</VERS>\r\n      <VERS vnumber=\"8\">Then the king of Israel called an officer, and said, Fetch quickly Micaiah the son of Imla.</VERS>\r\n      <VERS vnumber=\"9\">Now the king of Israel and Jehoshaphat the king of Judah sat each on his throne, arrayed in their robes, and they were sitting in an open place at the entrance of the gate of Samaria; and all the prophets were prophesying before them.</VERS>\r\n      <VERS vnumber=\"10\">And Zedekiah the son of Chenaanah made him horns of iron, and said, Thus saith Jehovah, With these shalt thou push the Syrians, until they be consumed.</VERS>\r\n      <VERS vnumber=\"11\">And all the prophets prophesied so, saying, Go up to Ramoth-gilead, and prosper; for Jehovah will deliver it into the hand of the king.</VERS>\r\n      <VERS vnumber=\"12\">And the messenger that went to call Micaiah spake to him, saying, Behold, the words of the prophets [declare] good to the king with one mouth: let thy word therefore, I pray thee, be like one of theirs, and speak thou good.</VERS>\r\n      <VERS vnumber=\"13\">And Micaiah said, As Jehovah liveth, what my God saith, that will I speak.</VERS>\r\n      <VERS vnumber=\"14\">And when he was come to the king, the king said unto him, Micaiah, shall we go to Ramoth-gilead to battle, or shall I forbear? And he said, Go ye up, and prosper; and they shall be delivered into your hand.</VERS>\r\n      <VERS vnumber=\"15\">And the king said to him, How many times shall I adjure thee that thou speak unto me nothing but the truth in the name of Jehovah?</VERS>\r\n      <VERS vnumber=\"16\">And he said, I saw all Israel scattered upon the mountains, as sheep that have no shepherd: and Jehovah said, These have no master; let them return every man to his house in peace.</VERS>\r\n      <VERS vnumber=\"17\">And the king of Israel said to Jehoshaphat, Did I not tell thee that he would not prophesy good concerning me, but evil?</VERS>\r\n      <VERS vnumber=\"18\">And [Micaiah] said, Therefore hear ye the word of Jehovah: I saw Jehovah sitting upon his throne, and all the host of heaven standing on his right hand and on his left.</VERS>\r\n      <VERS vnumber=\"19\">And Jehovah said, Who shall entice Ahab king of Israel, that he may go up and fall at Ramoth-gilead? And one spake saying after this manner, and another saying after that manner.</VERS>\r\n      <VERS vnumber=\"20\">And there came forth a spirit, and stood before Jehovah, and said, I will entice him. And Jehovah said unto him, Wherewith?</VERS>\r\n      <VERS vnumber=\"21\">And he said, I will go forth, and will be a lying spirit in the mouth of all his prophets. And he said, Thou shalt entice him, and shalt prevail also: go forth, and do so.</VERS>\r\n      <VERS vnumber=\"22\">Now therefore, behold, Jehovah hath put a lying spirit in the mouth of these thy prophets; and Jehovah hath spoken evil concerning thee.</VERS>\r\n      <VERS vnumber=\"23\">Then Zedekiah the son of Chenaanah came near, and smote Micaiah upon the cheek, and said, Which way went the Spirit of Jehovah from me to speak unto thee?</VERS>\r\n      <VERS vnumber=\"24\">And Micaiah said, Behold, thou shalt see on that day, when thou shalt go into an inner chamber to hide thyself.</VERS>\r\n      <VERS vnumber=\"25\">And the king of Israel said, Take ye Micaiah, and carry him back unto Amon the governor of the city, and to Joash the king`s son;</VERS>\r\n      <VERS vnumber=\"26\">and 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.</VERS>\r\n      <VERS vnumber=\"27\">And Micaiah said, If thou return at all in peace, Jehovah hath not spoken by me. And he said, Hear, ye peoples, all of you.</VERS>\r\n      <VERS vnumber=\"28\">So the king of Israel and Jehoshaphat the king of Judah went up to Ramoth-gilead.</VERS>\r\n      <VERS vnumber=\"29\">And the king of Israel said unto Jehoshaphat, I will disguise myself, and go into the battle; but put thou on thy robes. So the king of Israel disguised himself; and they went into the battle.</VERS>\r\n      <VERS vnumber=\"30\">Now the king of Syria had commanded the captains of his chariots, saying, Fight neither with small nor great, save only with the king of Israel.</VERS>\r\n      <VERS vnumber=\"31\">And it came to pass, when the captains of the chariots saw Jehoshaphat, that they said, It is the king of Israel. Therefore they turned about to fight against him: but Jehoshaphat cried out, and Jehovah helped him; and God moved them [to depart] from him.</VERS>\r\n      <VERS vnumber=\"32\">And it came to pass, when the captains of the chariots saw that it was not the king of Israel, that they turned back from pursuing him.</VERS>\r\n      <VERS vnumber=\"33\">And a certain man drew his bow at a venture, and smote the king of Israel between the joints of the armor: wherefore he said to the driver of the chariot, Turn thy hand, and carry me out of the host; for I am sore wounded.</VERS>\r\n      <VERS vnumber=\"34\">And 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 going down of the sun he died.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"19\">\r\n      <VERS vnumber=\"1\">And Jehoshaphat the king of Judah returned to his house in peace to Jerusalem.</VERS>\r\n      <VERS vnumber=\"2\">And Jehu the son of Hanani the seer went out to meet him, and said to king Jehoshaphat, Shouldest thou help the wicked, and love them that hate Jehovah? for this thing wrath is upon thee from before Jehovah.</VERS>\r\n      <VERS vnumber=\"3\">Nevertheless there are good things found in thee, in that thou hast put away the Asheroth out of the land, and hast set thy heart to seek God.</VERS>\r\n      <VERS vnumber=\"4\">And Jehoshaphat dwelt at Jerusalem: and he went out again among the people from Beer-sheba to the hill-country of Ephraim, and brought them back unto Jehovah, the God of their fathers.</VERS>\r\n      <VERS vnumber=\"5\">And he set judges in the land throughout all the fortified cities of Judah, city by city,</VERS>\r\n      <VERS vnumber=\"6\">and said to the judges, Consider what ye do: for ye judge not for man, but for Jehovah; and [he is] with you in the judgment.</VERS>\r\n      <VERS vnumber=\"7\">Now therefore let the fear of Jehovah be upon you; take heed and do it: for there is no iniquity with Jehovah our God, nor respect of persons, nor taking of bribes.</VERS>\r\n      <VERS vnumber=\"8\">Moreover in Jerusalem did Jehoshaphat set of the Levites and the priests, and of the heads of the fathers` [houses] of Israel, for the judgment of Jehovah, and for controversies. And they returned to Jerusalem.</VERS>\r\n      <VERS vnumber=\"9\">And he charged them, saying, Thus shall ye do in the fear of Jehovah, faithfully, and with a perfect heart.</VERS>\r\n      <VERS vnumber=\"10\">And whensoever any controversy shall come to you from your brethren that dwell in their cities, between blood and blood, between law and commandment, statutes and ordinances, ye shall warn them, that they be not guilty towards Jehovah, and so wrath come upon you and upon your brethren: this do, and ye shall not be guilty.</VERS>\r\n      <VERS vnumber=\"11\">And, behold, Amariah the chief priest is over you in all matters of Jehovah; and Zebadiah the son of Ishmael, the ruler of the house of Judah, in all the king`s matters: also the Levites shall be officers before you. Deal courageously, and Jehovah be with the good.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"20\">\r\n      <VERS vnumber=\"1\">And it came to pass after this, that the children of Moab, and the children of Ammon, and with them some of the Ammonites, came against Jehoshaphat to battle.</VERS>\r\n      <VERS vnumber=\"2\">Then there came some that told Jehoshaphat, saying, There cometh a great multitude against thee from beyond the sea from Syria; and, behold, they are in Hazazon-tamar (the same is En-gedi).</VERS>\r\n      <VERS vnumber=\"3\">And Jehoshaphat feared, and set himself to seek unto Jehovah; and he proclaimed a fast throughout all Judah.</VERS>\r\n      <VERS vnumber=\"4\">And Judah gathered themselves together, to seek [help] of Jehovah: even out of all the cities of Judah they came to seek Jehovah.</VERS>\r\n      <VERS vnumber=\"5\">And Jehoshaphat stood in the assembly of Judah and Jerusalem, in the house of Jehovah, before the new court;</VERS>\r\n      <VERS vnumber=\"6\">and he said, O Jehovah, the God of our fathers, art not thou God in heaven? and art not thou ruler over all the kingdoms of the nations? and in thy hand is power and might, so that none is able to withstand thee.</VERS>\r\n      <VERS vnumber=\"7\">Didst not thou, O our God, drive out the inhabitants of this land before thy people Israel, and give it to the seed of Abraham thy friend for ever?</VERS>\r\n      <VERS vnumber=\"8\">And they dwelt therein, and have built thee a sanctuary therein for thy name, saying,</VERS>\r\n      <VERS vnumber=\"9\">If evil come upon us, the sword, judgment, or pestilence, or famine, we will stand before this house, and before thee, (for thy name is in this house,) and cry unto thee in our affliction, and thou wilt hear and save.</VERS>\r\n      <VERS vnumber=\"10\">And 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 aside from them, and destroyed them not;</VERS>\r\n      <VERS vnumber=\"11\">behold, how they reward us, to come to cast us out of thy possession, which thou hast given us to inherit.</VERS>\r\n      <VERS vnumber=\"12\">O 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 out eyes are upon thee.</VERS>\r\n      <VERS vnumber=\"13\">And all Judah stood before Jehovah, with their little ones, their wives, and their children.</VERS>\r\n      <VERS vnumber=\"14\">Then upon Jahaziel the son of Zechariah, the son of Benaiah, the son of Jeiel, the son of Mattaniah, the Levite, of the sons of Asaph, came the Spirit of Jehovah in the midst of the assembly;</VERS>\r\n      <VERS vnumber=\"15\">and he said, Hearken ye, all Judah, and ye inhabitants of Jerusalem, and thou king Jehoshaphat: Thus saith Jehovah unto you, Fear not ye, neither be dismayed by reason of this great multitude; for the battle is not yours, but God`s.</VERS>\r\n      <VERS vnumber=\"16\">To-morrow go ye down against them: behold, they come up by the ascent of Ziz; and ye shall find them at the end of the valley, before the wilderness of Jeruel.</VERS>\r\n      <VERS vnumber=\"17\">Ye shall not need to fight in this [battle]: set yourselves, stand ye still, and see the salvation of Jehovah with you, O Judah and Jerusalem; fear not, nor be dismayed: to-morrow go out against them: for Jehovah is with you.</VERS>\r\n      <VERS vnumber=\"18\">And Jehoshaphat bowed his head with his face to the ground; and all Judah and the inhabitants of Jerusalem fell down before Jehovah, worshipping Jehovah.</VERS>\r\n      <VERS vnumber=\"19\">And the Levites, of the children of the Kohathites and of the children of the Korahites, stood up to praise Jehovah, the God of Israel, with an exceeding loud voice.</VERS>\r\n      <VERS vnumber=\"20\">And 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 Jehovah your God, so shall ye be established; believe his prophets, so shall ye prosper.</VERS>\r\n      <VERS vnumber=\"21\">And when he had taken counsel with the people, he appointed them that should sing unto Jehovah, and give praise in holy array, as they went out before the army, and say, Give thanks unto Jehovah; for his lovingkindness [endureth] for ever.</VERS>\r\n      <VERS vnumber=\"22\">And when they began to sing and to praise, Jehovah set liers-in-wait against the children of Ammon, Moab, and mount Seir, that were come against Judah; and they were smitten.</VERS>\r\n      <VERS vnumber=\"23\">For 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.</VERS>\r\n      <VERS vnumber=\"24\">And when Judah came to the watch-tower of the wilderness, they looked upon the multitude; and, behold, they were dead bodies fallen to the earth, and there were none that escaped.</VERS>\r\n      <VERS vnumber=\"25\">And when Jehoshaphat and his people came to take the spoil of them, they found among them in abundance both riches and dead bodies, and precious jewels, which they stripped off for themselves, more than they could carry away: and they were three days in taking the spoil, it was so much.</VERS>\r\n      <VERS vnumber=\"26\">And on the fourth day they assembled themselves in the valley of Beracah; for there they blessed Jehovah: therefore the name of that place was called The valley of Beracah unto this day.</VERS>\r\n      <VERS vnumber=\"27\">Then they returned, every man of Judah and Jerusalem, and Jehoshaphat in the forefront of them, to go again to Jerusalem with joy; for Jehovah had made them to rejoice over their enemies.</VERS>\r\n      <VERS vnumber=\"28\">And they came to Jerusalem with psalteries and harps and trumpets unto the house of Jehovah.</VERS>\r\n      <VERS vnumber=\"29\">And the fear of God was on all the kingdoms of the countries, when they heard that Jehovah fought against the enemies of Israel.</VERS>\r\n      <VERS vnumber=\"30\">So the realm of Jehoshaphat was quiet; for his God gave him rest round about.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n      <VERS vnumber=\"32\">And he walked in the way of Asa his father, and turned not aside from it, doing that which was right in the eyes of Jehovah.</VERS>\r\n      <VERS vnumber=\"33\">Howbeit the high places were not taken away; neither as yet had the people set their hearts unto the God of their fathers.</VERS>\r\n      <VERS vnumber=\"34\">Now the rest of the acts of Jehoshaphat, first and last, behold, they are written in the history of Jehu the son of Hanani, which is inserted in the book of the kings of Israel.</VERS>\r\n      <VERS vnumber=\"35\">And after this did Jehoshaphat king of Judah join himself with Ahaziah king of Israel; the same did very wickedly:</VERS>\r\n      <VERS vnumber=\"36\">and he joined himself with him to make ships to go to Tarshish; and they made the ships in Ezion-geber.</VERS>\r\n      <VERS vnumber=\"37\">Then Eliezer the son of Dodavahu of Mareshah prophesied against Jehoshaphat, saying, Because thou hast joined thyself with Ahaziah, Jehovah hath destroyed thy works. And the ships were broken, so that they were not able to go to Tarshish.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"21\">\r\n      <VERS vnumber=\"1\">And Jehoshaphat slept with his fathers, and was buried with his fathers in the city of David: and Jehoram his son reigned in his stead.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And their father gave them great gifts, of silver, and of gold, and of precious things, with fortified cities in Judah: but the kingdom gave he to Jehoram, because he was the first-born.</VERS>\r\n      <VERS vnumber=\"4\">Now when Jehoram was risen up over the kingdom of his father, and had strengthened himself, he slew all his brethren with the sword, and divers also of the princes of Israel.</VERS>\r\n      <VERS vnumber=\"5\">Jehoram was thirty and two years old when he began to reign; and he reigned eight years in Jerusalem.</VERS>\r\n      <VERS vnumber=\"6\">And he walked in the way of the kings of Israel, as did the house of Ahab; for he had the daughter of Ahab to wife: and he did that which was evil in the sight of Jehovah.</VERS>\r\n      <VERS vnumber=\"7\">Howbeit Jehovah would not destroy the house of David, because of the covenant that he had made with David, and as he promised to give a lamp to him and to his children alway.</VERS>\r\n      <VERS vnumber=\"8\">In his days Edom revolted from under the hand of Judah, and made a king over themselves.</VERS>\r\n      <VERS vnumber=\"9\">Then Jehoram passed over with his captains, and all his chariots with him: and he rose up by night, and smote the Edomites that compassed him about, and the captains of the chariots.</VERS>\r\n      <VERS vnumber=\"10\">So Edom revolted from under the hand of Judah unto this day: then did Libnah revolt at the same time from under his hand, because he had forsaken Jehovah, the God of his fathers.</VERS>\r\n      <VERS vnumber=\"11\">Moreover he made high places in the mountains of Judah, and made the inhabitants of Jerusalem to play the harlot, and led Judah astray.</VERS>\r\n      <VERS vnumber=\"12\">And there came a writing to him from Elijah the prophet, saying, Thus saith Jehovah, the 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,</VERS>\r\n      <VERS vnumber=\"13\">but hast walked in the way of the kings of Israel, and hast made Judah and the inhabitants of Jerusalem to play the harlot, like as the house of Ahab did, and also hast slain thy brethren of thy father`s house, who were better than thyself:</VERS>\r\n      <VERS vnumber=\"14\">behold, Jehovah will smite with a great plague thy people, and thy children, and thy wives, and all thy substance;</VERS>\r\n      <VERS vnumber=\"15\">and thou shalt have great sickness by disease of thy bowels, until thy bowels fall out by reason of the sickness, day by day.</VERS>\r\n      <VERS vnumber=\"16\">And Jehovah stirred up against Jehoram the spirit of the Philistines, and of the Arabians that are beside the Ethiopians:</VERS>\r\n      <VERS vnumber=\"17\">and they came up against 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.</VERS>\r\n      <VERS vnumber=\"18\">And after all this Jehovah smote him in his bowels with an incurable disease.</VERS>\r\n      <VERS vnumber=\"19\">And it came to pass, in process of time, at the end of two years, that his bowels fell out by reason of his sickness, and he died of sore diseases. And his people made no burning for him, like the burning of his fathers.</VERS>\r\n      <VERS vnumber=\"20\">Thirty and two years old was he when he began to reign, and he reigned in Jerusalem eight years: and he departed without being desired; and they buried him in the city of David, but not in the sepulchres of the kings.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"22\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">Forty and two years old was Ahaziah when he began to reign; and he reigned one year in Jerusalem: and his mother`s name was Athaliah the daughter of Omri.</VERS>\r\n      <VERS vnumber=\"3\">He also walked in the ways of the house of Ahab; for his mother was his counsellor to do wickedly.</VERS>\r\n      <VERS vnumber=\"4\">And he did that which was evil in the sight of Jehovah, as did the house of Ahab; for they were his counsellors after the death of his father, to his destruction.</VERS>\r\n      <VERS vnumber=\"5\">He walked also after their counsel, and went with Jehoram the son of Ahab king of Israel to war against Hazael king of Syria at Ramoth-gilead: and the Syrians wounded Joram.</VERS>\r\n      <VERS vnumber=\"6\">And he returned to be healed in Jezreel of the wounds which they had given him at Ramah, when he fought against Hazael king of Syria. And Azariah the son of Jehoram king of Judah went down to see Jehoram the son of Ahab in Jezreel, because he was sick.</VERS>\r\n      <VERS vnumber=\"7\">Now the destruction of Ahaziah was of God, in that he went unto Joram: for when he was come, he went out with Jehoram against Jehu the son of Nimshi, whom Jehovah had anointed to cut off the house of Ahab.</VERS>\r\n      <VERS vnumber=\"8\">And it came to pass, when Jehu was executing judgment upon the house of Ahab, that he found the princes of Judah, and the sons of the brethren of Ahaziah, ministering to Ahaziah, and slew them.</VERS>\r\n      <VERS vnumber=\"9\">And he sought Ahaziah, and they caught him (now he was hiding in Samaria), and they brought him to Jehu, and slew him; and they buried him, for they said, He is the son of Jehoshaphat, who sought Jehovah with all his heart. And the house of Ahaziah had no power to hold the kingdom.</VERS>\r\n      <VERS vnumber=\"10\">Now 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.</VERS>\r\n      <VERS vnumber=\"11\">But Jehoshabeath, the daughter of the king, took Joash the son of Ahaziah, and stole him away from among the king`s sons that were slain, and put him and his nurse in the 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.</VERS>\r\n      <VERS vnumber=\"12\">And he was with them hid in the house of God six years: and Athaliah reigned over the land.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"23\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And they went about in Judah, and gathered the Levites out of all the cities of Judah, and the heads of fathers` [houses] of Israel, and they came to Jerusalem.</VERS>\r\n      <VERS vnumber=\"3\">And all the assembly made a covenant with the king in the house of God. And he said unto them, Behold, the king`s son shall reign, as Jehovah hath spoken concerning the sons of David.</VERS>\r\n      <VERS vnumber=\"4\">This is the thing that ye shall do: a third part of you, that come in on the sabbath, of the priests and of the Levites, shall be porters of the thresholds;</VERS>\r\n      <VERS vnumber=\"5\">and 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 Jehovah.</VERS>\r\n      <VERS vnumber=\"6\">But let none come into the house of Jehovah, save the priests, and they that minister of the Levites; they shall come in, for they are holy: but all the people shall keep the charge of Jehovah.</VERS>\r\n      <VERS vnumber=\"7\">And the Levites shall compass the king round about, every man with his weapons in his hand; and whosoever cometh into the house, let him be slain: and be ye with the king when he cometh in, and when he goeth out.</VERS>\r\n      <VERS vnumber=\"8\">So the Levites and all Judah did according to all that Jehoiada the priest commanded: and they took every man his men, those that were to come in on the sabbath; with those that were to go out on the sabbath; for Jehoiada the priest dismissed not the courses.</VERS>\r\n      <VERS vnumber=\"9\">And Jehoiada the priest delivered to the captains of hundreds the spears, and bucklers, and shields, that had been king David`s, which were in the house of God.</VERS>\r\n      <VERS vnumber=\"10\">And he set all the people, every man with his weapon in his hand, from the right side of the house to the left side of the house, along by the altar and the house, by the king round about.</VERS>\r\n      <VERS vnumber=\"11\">Then they brought out the king`s son, and put the crown upon him, and [gave him] the testimony, and made him king: and Jehoiada and his sons anointed him; and they said, [Long] live the king.</VERS>\r\n      <VERS vnumber=\"12\">And when Athaliah heard the noise of the people running and praising the king, she came to the people into the house of Jehovah:</VERS>\r\n      <VERS vnumber=\"13\">and she looked, and, behold, the king stood by his pillar at the entrance, and the captains and the trumpets by the king; and all the people of the land rejoiced, and blew trumpets; the singers also [played] on instruments of music, and led the singing of praise. Then Athaliah rent her clothes, and said, Treason! treason!</VERS>\r\n      <VERS vnumber=\"14\">And Jehoiada the priest brought out the captains of hundreds that were set over the host, and said unto them, Have her forth between the ranks; and whoso followeth her, let him be slain with the sword: for the priest said, Slay her not in the house of Jehovah.</VERS>\r\n      <VERS vnumber=\"15\">So they made way for her; and she went to the entrance of the horse gate to the king`s house: and they slew her there.</VERS>\r\n      <VERS vnumber=\"16\">And Jehoiada made a covenant between himself, and all the people, and the king, that they should be Jehovah`s people.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And Jehoiada appointed the officers of the house of Jehovah under the hand of the priests the Levites, whom David had distributed in the house of Jehovah, to offer the burnt-offerings of Jehovah, as it is written in the law of Moses, with rejoicing and with singing, according to the order of David.</VERS>\r\n      <VERS vnumber=\"19\">And he set the porters at the gates of the house of Jehovah, that none that was unclean in anything should enter in.</VERS>\r\n      <VERS vnumber=\"20\">And 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 Jehovah: and they came through the upper gate unto the king`s house, and set the king upon the throne of the kingdom.</VERS>\r\n      <VERS vnumber=\"21\">So all the people of the land rejoiced, and the city was quiet. And Athaliah they had slain with the sword.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"24\">\r\n      <VERS vnumber=\"1\">Joash was seven years old when he began to reign; and he reigned forty years in Jerusalem: and his mother`s name was Zibiah, of Beer-sheba.</VERS>\r\n      <VERS vnumber=\"2\">And Joash did that which was right in the eyes of Jehovah all the days of Jehoiada the priest.</VERS>\r\n      <VERS vnumber=\"3\">And Jehoiada took for him two wives; and he begat sons and daughters.</VERS>\r\n      <VERS vnumber=\"4\">And it came to pass after this, that Joash was minded to restore the house of Jehovah.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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 tax of Moses the servant of Jehovah, and of the assembly of Israel, for the tent of the testimony?</VERS>\r\n      <VERS vnumber=\"7\">For the sons of Athaliah, that wicked woman, had broken up the house of God; and also all the dedicated things of the house of Jehovah did they bestow upon the Baalim.</VERS>\r\n      <VERS vnumber=\"8\">So the king commanded, and they made a chest, and set it without at the gate of the house of Jehovah.</VERS>\r\n      <VERS vnumber=\"9\">And they made a proclamation through Judah and Jerusalem, to bring in for Jehovah the tax that Moses the servant of God laid upon Israel in the wilderness.</VERS>\r\n      <VERS vnumber=\"10\">And all the princes and all the people rejoiced, and brought in, and cast into the chest, until they had made an end.</VERS>\r\n      <VERS vnumber=\"11\">And it was so, that, at what time the chest was brought unto the king`s officers by the hand of the Levites, and when they saw that there was much money, the king`s scribe and the chief priest`s officer came and emptied the chest, and took it, and carried it to its place again. Thus they did day by day, and gathered money in abundance.</VERS>\r\n      <VERS vnumber=\"12\">And the king and Jehoiada gave it to such as did the work of the service of the house of Jehovah; and they hired masons and carpenters to restore the house of Jehovah, and also such as wrought iron and brass to repair the house of Jehovah.</VERS>\r\n      <VERS vnumber=\"13\">So the workmen wrought, and the work of repairing went forward in their hands, and they set up the house of God in its state, and strengthened it.</VERS>\r\n      <VERS vnumber=\"14\">And when they had made an end, they brought the rest of the money before the king and Jehoiada, whereof were made vessels for the house of Jehovah, even vessels wherewith to minister and to offer, and spoons, and vessels of gold and silver. And they offered burnt-offerings in the house of Jehovah continually all the days of Jehoiada.</VERS>\r\n      <VERS vnumber=\"15\">But Jehoiada waxed old and was full of days, and he died; a hundred and thirty years old was he when he died.</VERS>\r\n      <VERS vnumber=\"16\">And they buried him in the city of David among the kings, because he had done good in Israel, and toward God and his house.</VERS>\r\n      <VERS vnumber=\"17\">Now after the death of Jehoiada came the princes of Judah, and made obeisance to the king. Then the king hearkened unto them.</VERS>\r\n      <VERS vnumber=\"18\">And they forsook the house of Jehovah, the God of their fathers, and served the Asherim and the idols: and wrath came upon Judah and Jerusalem for this their guiltiness.</VERS>\r\n      <VERS vnumber=\"19\">Yet he sent prophets to them, to bring them again unto Jehovah; and they testified against them: but they would not give ear.</VERS>\r\n      <VERS vnumber=\"20\">And the Spirit of God came upon Zechariah the son of Jehoiada the priest; and he stood above the people, and said unto them, Thus saith God, Why transgress ye the commandments of Jehovah, so that ye cannot prosper? because ye have forsaken Jehovah, he hath also forsaken you.</VERS>\r\n      <VERS vnumber=\"21\">And they conspired against him, and stoned him with stones at the commandment of the king in the court of the house of Jehovah.</VERS>\r\n      <VERS vnumber=\"22\">Thus 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, Jehovah look upon it, and require it.</VERS>\r\n      <VERS vnumber=\"23\">And it came to pass at the end of the year, that the army of the Syrians 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.</VERS>\r\n      <VERS vnumber=\"24\">For the army of the Syrians came with a small company of men; and Jehovah delivered a very great host into their hand, because they had forsaken Jehovah, the God of their fathers. So they executed judgment upon Joash.</VERS>\r\n      <VERS vnumber=\"25\">And when they were departed for him (for they left him very sick), 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.</VERS>\r\n      <VERS vnumber=\"26\">And these are they that conspired against him: Zabad the son of Shimeath the Ammonitess, and Jehozabad the son of Shimrith the Moabitess.</VERS>\r\n      <VERS vnumber=\"27\">Now concerning his sons, and the greatness of the burdens [laid] upon him, and the rebuilding of the house of God, behold, they are written in the commentary of the book of the kings. And Amaziah his son reigned in his stead.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"25\">\r\n      <VERS vnumber=\"1\">Amaziah 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.</VERS>\r\n      <VERS vnumber=\"2\">And he did that which was right in the eyes of Jehovah, but not with a perfect heart.</VERS>\r\n      <VERS vnumber=\"3\">Now it came to pass, when the kingdom was established unto him, that he slew his servants that had killed the king his father.</VERS>\r\n      <VERS vnumber=\"4\">But he put not their children to death, but did according to that which is written in the law in the book of Moses, as Jehovah 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.</VERS>\r\n      <VERS vnumber=\"5\">Moreover Amaziah gathered Judah together, and ordered them according to their fathers` houses, under captains of thousands and captains of hundreds, even all Judah and Benjamin: and he numbered them from twenty years old and upward, and found them three hundred thousand chosen men, able to go forth to war, that could handle spear and shield.</VERS>\r\n      <VERS vnumber=\"6\">He hired also a hundred thousand mighty men of valor out of Israel for a hundred talents of silver.</VERS>\r\n      <VERS vnumber=\"7\">But there came a man of God to him, saying, O king, let not the army of Israel go with thee; for Jehovah is not with Israel, [to wit], with all the children of Ephraim.</VERS>\r\n      <VERS vnumber=\"8\">But if thou wilt go, do [valiantly], be strong for the battle: God will cast thee down before the enemy; for God hath power to help, and to cast down.</VERS>\r\n      <VERS vnumber=\"9\">And 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, Jehovah is able to give thee much more than this.</VERS>\r\n      <VERS vnumber=\"10\">Then 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 fierce anger.</VERS>\r\n      <VERS vnumber=\"11\">And Amaziah took courage, and led forth his people, and went to the Valley of Salt, and smote of the children of Seir ten thousand.</VERS>\r\n      <VERS vnumber=\"12\">And [other] ten thousand did the children of Judah carry away alive, and brought them unto the top of the rock, and cast them down from the top of the rock, so that they all were broken in pieces.</VERS>\r\n      <VERS vnumber=\"13\">But the men of the army whom Amaziah sent back, that they should not go with him to battle, fell upon the cities of Judah, from Samaria even unto Beth-horon, and smote of them three thousand, and took much spoil.</VERS>\r\n      <VERS vnumber=\"14\">Now 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.</VERS>\r\n      <VERS vnumber=\"15\">Wherefore the anger of Jehovah was kindled against Amaziah, and he sent unto him a prophet, who said unto him, Why hast thou sought after the gods of the people, which have not delivered their own people out of thy hand?</VERS>\r\n      <VERS vnumber=\"16\">And it came to pass, as he talked with him, that [the king] said unto him, Have we made thee 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.</VERS>\r\n      <VERS vnumber=\"17\">Then 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 look one another in the face.</VERS>\r\n      <VERS vnumber=\"18\">And 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 trod down the thistle.</VERS>\r\n      <VERS vnumber=\"19\">Thou sayest, Lo, thou hast smitten Edom; and thy heart lifteth thee up to boast: abide now at home; why shouldest thou meddle to [thy] hurt, that thou shouldest fall, even thou, and Judah with thee?</VERS>\r\n      <VERS vnumber=\"20\">But Amaziah would not hear; for it was of God, that he might deliver them into the hand [of their enemies], because they had sought after the gods of Edom.</VERS>\r\n      <VERS vnumber=\"21\">So Joash king of Israel went up; and he and Amaziah king of Judah looked one another in the face at Beth-shemesh, which belongeth to Judah.</VERS>\r\n      <VERS vnumber=\"22\">And Judah was put to the worse before Israel; and they fled every man to his tent.</VERS>\r\n      <VERS vnumber=\"23\">And Joash king of Israel took Amaziah king of Judah, the son of Joash the son of Jehoahaz, at Beth-shemesh, and brought him to Jerusalem, and brake down the wall of Jerusalem from the gate of Ephraim unto the corner gate, four hundred cubits.</VERS>\r\n      <VERS vnumber=\"24\">And [he took] all the gold and silver, and all the vessels that were found in the house of God with Obed-edom, and the treasures of the king`s house, the hostages also, and returned to Samaria.</VERS>\r\n      <VERS vnumber=\"25\">And Amaziah the son of Joash king of Judah lived after the death of Joash son of Jehoahaz king of Israel fifteen years.</VERS>\r\n      <VERS vnumber=\"26\">Now 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?</VERS>\r\n      <VERS vnumber=\"27\">Now from the time that Amaziah did turn away from following Jehovah they made a conspiracy against him in Jerusalem; and he fled to Lachish: but they sent after him to Lachish, and slew him there.</VERS>\r\n      <VERS vnumber=\"28\">And they brought him upon horses, and buried him with his fathers in the city of Judah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"26\">\r\n      <VERS vnumber=\"1\">And all the people of Judah took Uzziah, who was sixteen years old, and made him king in the room of his father Amaziah.</VERS>\r\n      <VERS vnumber=\"2\">He built Eloth, and restored it to Judah, after that the king slept with his fathers.</VERS>\r\n      <VERS vnumber=\"3\">Sixteen years old was Uzziah when he began to reign; and he reigned fifty and two years in Jerusalem: and his mother`s name was Jechiliah, of Jerusalem.</VERS>\r\n      <VERS vnumber=\"4\">And he did that which was right in the eyes of Jehovah, according to all that his father Amaziah had done.</VERS>\r\n      <VERS vnumber=\"5\">And he set himself to seek God in the days of Zechariah, who had understanding in the vision of God: and as long as he sought Jehovah, God made him to prosper.</VERS>\r\n      <VERS vnumber=\"6\">And 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 he built cities in [the country of] Ashdod, and among the Philistines.</VERS>\r\n      <VERS vnumber=\"7\">And God helped him against the Philistines, and against the Arabians that dwelt in Gur-baal, and the Meunim.</VERS>\r\n      <VERS vnumber=\"8\">And the Ammonites gave tribute to Uzziah: and his name spread abroad even to the entrance of Egypt; for he waxed exceeding strong.</VERS>\r\n      <VERS vnumber=\"9\">Moreover Uzziah built towers in Jerusalem at the corner gate, and at the valley gate, and at the turning [of the wall], and fortified them.</VERS>\r\n      <VERS vnumber=\"10\">And he built towers in the wilderness, and hewed out many cisterns, for he had much cattle; in the lowland also, and in the plain: [and he had] husbandmen and vinedressers in the mountains and in the fruitful fields; for he loved husbandry.</VERS>\r\n      <VERS vnumber=\"11\">Moreover Uzziah had an army of fighting men, that went out to war by bands, according to the number of their reckoning made by Jeiel the scribe and Maaseiah the officer, under the hand of Hananiah, one of the king`s captains.</VERS>\r\n      <VERS vnumber=\"12\">The whole number of the heads of fathers` [houses], even the mighty men of valor, was two thousand and six hundred.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And Uzziah prepared for them, even for all the host, shields, and spears, and helmets, and coats of mail, and bows, and stones for slinging.</VERS>\r\n      <VERS vnumber=\"15\">And he made in Jerusalem engines, invented by skilful men, to be on the towers and upon the battlements, wherewith to shoot arrows and great stones. And his name spread far abroad; for he was marvellously helped, till he was strong.</VERS>\r\n      <VERS vnumber=\"16\">But when he was strong, his heart was lifted up, so that he did corruptly, and he trespassed against Jehovah his God; for he went into the temple of Jehovah to burn incense upon the altar of incense.</VERS>\r\n      <VERS vnumber=\"17\">And Azariah the priest went in after him, and with him fourscore priests of Jehovah, that were valiant men:</VERS>\r\n      <VERS vnumber=\"18\">and they withstood Uzziah the king, and said unto him, It pertaineth not unto thee, Uzziah, to burn incense unto Jehovah, 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 honor from Jehovah God.</VERS>\r\n      <VERS vnumber=\"19\">Then Uzziah was wroth; and he had a censer in his hand to burn incense; and while he was wroth with the priests, the leprosy brake forth in his forehead before the priests in the house of Jehovah, beside the altar of incense.</VERS>\r\n      <VERS vnumber=\"20\">And Azariah the chief priest, and all the priests, looked upon him, and, behold, he was leprous in his forehead, and they thrust him out quickly from thence; yea, himself hasted also to go out, because Jehovah had smitten him.</VERS>\r\n      <VERS vnumber=\"21\">And Uzziah the king was a leper unto the day of his death, and dwelt in a separate house, being a leper; for he was cut off from the house of Jehovah: and Jotham his son was over the king`s house, judging the people of the land.</VERS>\r\n      <VERS vnumber=\"22\">Now the rest of the acts of Uzziah, first and last, did Isaiah the prophet, the son of Amoz, write.</VERS>\r\n      <VERS vnumber=\"23\">So Uzziah slept with his fathers; and they buried him with his fathers in the field of burial which belonged to the kings; for they said, He is a leper: and Jotham his son reigned in his stead.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"27\">\r\n      <VERS vnumber=\"1\">Jotham was twenty and five years old when he began to reign; and he reigned sixteen years in Jerusalem: and his mother`s name was Jerushah the daughter of Zadok.</VERS>\r\n      <VERS vnumber=\"2\">And he did that which was right in the eyes of Jehovah, according to all that his father Uzziah had done: howbeit he entered not into the temple of Jehovah. And the people did yet corruptly.</VERS>\r\n      <VERS vnumber=\"3\">He built the upper gate of the house of Jehovah, and on the wall of Ophel he built much.</VERS>\r\n      <VERS vnumber=\"4\">Moreover he built cities in the hill-country of Judah, and in the forests he built castles and towers.</VERS>\r\n      <VERS vnumber=\"5\">He fought also with the king of the children of Ammon, and prevailed against them. And the children of Ammon gave him the same year a hundred talents of silver, and ten thousand measures of wheat, and ten thousand of barley. So much did the children of Ammon render unto him, in the second year also, and in the third.</VERS>\r\n      <VERS vnumber=\"6\">So Jotham became mighty, because he ordered his ways before Jehovah his God.</VERS>\r\n      <VERS vnumber=\"7\">Now the rest of the acts of Jotham, and all his wars, and his ways, behold, they are written in the book of the kings of Israel and Judah.</VERS>\r\n      <VERS vnumber=\"8\">He was five and twenty years old when he began to reign, and reigned sixteen years in Jerusalem.</VERS>\r\n      <VERS vnumber=\"9\">And Jotham slept with his fathers, and they buried him in the city of David: and Ahaz his son reigned in his stead.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"28\">\r\n      <VERS vnumber=\"1\">Ahaz was twenty years old when he began to reign; and he reigned sixteen years in Jerusalem: and he did not that which was right in the eyes of Jehovah, like David his father;</VERS>\r\n      <VERS vnumber=\"2\">but he walked in the ways of the kings of Israel, and made also molten images for the Baalim.</VERS>\r\n      <VERS vnumber=\"3\">Moreover he burnt incense in the valley of the son of Hinnom, and burnt his children in the fire, according to the abominations of the nations whom Jehovah cast out before the children of Israel.</VERS>\r\n      <VERS vnumber=\"4\">And he sacrificed and burnt incense in the high places, and on the hills, and under every green tree.</VERS>\r\n      <VERS vnumber=\"5\">Wherefore Jehovah his God delivered him into the hand of the king of Syria; and they smote him, and carried away of his a great multitude of 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.</VERS>\r\n      <VERS vnumber=\"6\">For Pekah the son of Remaliah slew in Judah a hundred and twenty thousand in one day, all of them valiant men; because they had forsaken Jehovah, the God of their fathers.</VERS>\r\n      <VERS vnumber=\"7\">And Zichri, a mighty man of Ephraim, slew Maaseiah the king`s son, and Azrikam the ruler of the house, and Elkanah that was next to the king.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">But a prophet of Jehovah was there, whose name was Oded: and he went out to meet the host that came to Samaria, and said unto them, Behold, because Jehovah, the God of your fathers, was wroth with Judah, he hath delivered them into your hand, and ye have slain them in a rage which hath reached up to heaven.</VERS>\r\n      <VERS vnumber=\"10\">And now ye purpose to keep under the children of Judah and Jerusalem for bondmen and bondwomen unto you: [but] are there not even with you trespasses of your own against Jehovah your God?</VERS>\r\n      <VERS vnumber=\"11\">Now hear me therefore, and send back the captives, that ye have taken captive of your brethren; for the fierce wrath of Jehovah is upon you.</VERS>\r\n      <VERS vnumber=\"12\">Then 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,</VERS>\r\n      <VERS vnumber=\"13\">and said unto them, Ye shall not bring in the captives hither: for ye purpose that which will bring upon us a trespass against Jehovah, to add unto our sins and to our trespass; for our trespass is great, and there is fierce wrath against Israel.</VERS>\r\n      <VERS vnumber=\"14\">So the armed men left the captives and the spoil before the princes and all the assembly.</VERS>\r\n      <VERS vnumber=\"15\">And the men that have been mentioned 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, unto their brethren: then they returned to Samaria.</VERS>\r\n      <VERS vnumber=\"16\">At that time did king Ahaz send unto the kings of Assyria to help him.</VERS>\r\n      <VERS vnumber=\"17\">For again the Edomites had come and smitten Judah, and carried away captives.</VERS>\r\n      <VERS vnumber=\"18\">The Philistines also had invaded the cities of the lowland, and of the South of Judah, and had taken Beth-shemesh, and Aijalon, and Gederoth, and Soco with the towns thereof, and Timnah with the towns thereof, Gimzo also and the towns thereof: and they dwelt there.</VERS>\r\n      <VERS vnumber=\"19\">For Jehovah brought Judah low because of Ahaz king of Israel; for he had dealt wantonly in Judah, and trespassed sore against Jehovah.</VERS>\r\n      <VERS vnumber=\"20\">And Tilgath-pilneser king of Assyria came unto him, and distressed him, but strengthened him not.</VERS>\r\n      <VERS vnumber=\"21\">For Ahaz took away a portion out of the house of Jehovah, and out of the house of the king and of the princes, and gave it unto the king of Assyria: but it helped him not.</VERS>\r\n      <VERS vnumber=\"22\">And in the time of his distress did he trespass yet more against Jehovah, this same king Ahaz.</VERS>\r\n      <VERS vnumber=\"23\">For he sacrificed unto the gods of Damascus, which smote him; and he said, Because the gods of the kings of Syria helped them, [therefore] will I sacrifice to them, that they may help me. But they were the ruin of him, and of all Israel.</VERS>\r\n      <VERS vnumber=\"24\">And 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 Jehovah; and he made him altars in every corner of Jerusalem.</VERS>\r\n      <VERS vnumber=\"25\">And in every city of Judah he made high places to burn incense unto other gods, and provoked to anger Jehovah, the God of his fathers.</VERS>\r\n      <VERS vnumber=\"26\">Now the rest of his acts, and all his ways, first and last, behold, they are written in the book of the kings of Judah and Israel.</VERS>\r\n      <VERS vnumber=\"27\">And Ahaz slept with his fathers, and they buried him in the city, even in Jerusalem; for they brought him not into the sepulchres of the kings of Israel: and Hezekiah his son reigned in his stead.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"29\">\r\n      <VERS vnumber=\"1\">Hezekiah 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.</VERS>\r\n      <VERS vnumber=\"2\">And he did that which was right in the eyes of Jehovah, according to all that David his father had done.</VERS>\r\n      <VERS vnumber=\"3\">He in the first year of his reign, in the first month, opened the doors of the house of Jehovah, and repaired them.</VERS>\r\n      <VERS vnumber=\"4\">And he brought in the priests and the Levites, and gathered them together into the broad place on the east,</VERS>\r\n      <VERS vnumber=\"5\">and said unto them, Hear me, ye Levites; now sanctify yourselves, and sanctify the house of Jehovah, the God of your fathers, and carry forth the filthiness out of the holy place.</VERS>\r\n      <VERS vnumber=\"6\">For our fathers have trespassed, and done that which was evil in the sight of Jehovah our God, and have forsaken him, and have turned away their faces from the habitation of Jehovah, and turned their backs.</VERS>\r\n      <VERS vnumber=\"7\">Also 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.</VERS>\r\n      <VERS vnumber=\"8\">Wherefore the wrath of Jehovah was upon Judah and Jerusalem, and he hath delivered them to be tossed to and fro, to be an astonishment, and a hissing, as ye see with your eyes.</VERS>\r\n      <VERS vnumber=\"9\">For, lo, our fathers have fallen by the sword, and our sons and our daughters and our wives are in captivity for this.</VERS>\r\n      <VERS vnumber=\"10\">Now it is in my heart to make a covenant with Jehovah, the God of Israel, that his fierce anger may turn away from us.</VERS>\r\n      <VERS vnumber=\"11\">My sons, be not now negligent; for Jehovah hath chosen you to stand before him, to minister unto him, and that ye should be his ministers, and burn incense.</VERS>\r\n      <VERS vnumber=\"12\">Then 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 Jehallelel; and of the Gershonites, Joah the son of Zimmah, and Eden the son of Joah;</VERS>\r\n      <VERS vnumber=\"13\">and of the sons of Elizaphan, Shimri and Jeuel; and of the sons of Asaph, Zechariah and Mattaniah;</VERS>\r\n      <VERS vnumber=\"14\">and of the sons of Heman, Jehuel and Shimei; and of the sons of Jeduthun, Shemaiah and Uzziel.</VERS>\r\n      <VERS vnumber=\"15\">And they gathered their brethren, and sanctified themselves, and went in, according to the commandment of the king by the words of Jehovah, to cleanse the house of Jehovah.</VERS>\r\n      <VERS vnumber=\"16\">And the priests went in unto the inner part of the house of Jehovah, to cleanse it, and brought out all the uncleanness that they found in the temple of Jehovah into the court of the house of Jehovah. And the Levites took it, to carry it out abroad to the brook Kidron.</VERS>\r\n      <VERS vnumber=\"17\">Now 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 Jehovah; and they sanctified the house of Jehovah in eight days: and on the sixteenth day of the first month they made an end.</VERS>\r\n      <VERS vnumber=\"18\">Then they went in to Hezekiah the king within [the palace], and said, We have cleansed all the house of Jehovah, and the altar of burnt-offering, with all the vessels thereof, and the table of showbread, with all the vessels thereof.</VERS>\r\n      <VERS vnumber=\"19\">Moreover all the vessels, which king Ahaz in his reign did cast away when he trespassed, have we prepared and sanctified; and, behold, they are before the altar of Jehovah.</VERS>\r\n      <VERS vnumber=\"20\">Then Hezekiah the king arose early, and gathered the princes of the city, and went up to the house of Jehovah.</VERS>\r\n      <VERS vnumber=\"21\">And 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 Jehovah.</VERS>\r\n      <VERS vnumber=\"22\">So they killed the bullocks, and the priests received the blood, and sprinkled it on the altar: and they killed the rams, and sprinkled the blood upon the altar: they killed also the lambs, and sprinkled the blood upon the altar.</VERS>\r\n      <VERS vnumber=\"23\">And they brought near the he-goats for the sin-offering before the king and the assembly; and they laid their hands upon them:</VERS>\r\n      <VERS vnumber=\"24\">and the priests killed them, and they made a sin-offering with their blood upon the altar, to make atonement for all Israel; for the king commanded [that] the burnt-offering and the sin-offering [should be made] for all Israel.</VERS>\r\n      <VERS vnumber=\"25\">And he set the Levites in the house of Jehovah 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 the commandment was of Jehovah by his prophets.</VERS>\r\n      <VERS vnumber=\"26\">And the Levites stood with the instruments of David, and the priests with the trumpets.</VERS>\r\n      <VERS vnumber=\"27\">And Hezekiah commanded to offer the burnt-offering upon the altar. And when the burnt-offering began, the song of Jehovah began also, and the trumpets, together with the instruments of David king of Israel.</VERS>\r\n      <VERS vnumber=\"28\">And all the assembly worshipped, and the singers sang, and the trumpeters sounded; all this [continued] until the burnt-offering was finished.</VERS>\r\n      <VERS vnumber=\"29\">And when they had made an end of offering, the king and all that were present with him bowed themselves and worshipped.</VERS>\r\n      <VERS vnumber=\"30\">Moreover Hezekiah the king and the princes commanded the Levites to sing praises unto Jehovah with the words of David, and of Asaph the seer. And they sang praises with gladness, and they bowed their heads and worshipped.</VERS>\r\n      <VERS vnumber=\"31\">Then Hezekiah answered and said, Now ye have consecrated yourselves unto Jehovah; come near and bring sacrifices and thank-offerings into the house of Jehovah. And the assembly brought in sacrifices and thank-offerings; and as many as were of a willing heart [brought] burnt-offerings.</VERS>\r\n      <VERS vnumber=\"32\">And the number of the burnt-offerings which the assembly brought was threescore and ten bullocks, a hundred rams, and two hundred lambs: all these were for a burnt-offering to Jehovah.</VERS>\r\n      <VERS vnumber=\"33\">And the consecrated things were six hundred oxen and three thousand sheep.</VERS>\r\n      <VERS vnumber=\"34\">But 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 priests had sanctified themselves; for the Levites were more upright in heart to sanctify themselves than the priests.</VERS>\r\n      <VERS vnumber=\"35\">And also the burnt-offerings were in abundance, with the fat of the peace-offerings, and with the drink-offerings for every burnt-offering. So the service of the house of Jehovah was set in order.</VERS>\r\n      <VERS vnumber=\"36\">And Hezekiah rejoiced, and all the people, because of that which God had prepared for the people: for the thing was done suddenly.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"30\">\r\n      <VERS vnumber=\"1\">And Hezekiah sent to all Israel and Judah, and wrote letters also to Ephraim and Manasseh, that they should come to the house of Jehovah at Jerusalem, to keep the passover unto Jehovah, the God of Israel.</VERS>\r\n      <VERS vnumber=\"2\">For the king had taken counsel, and his princes, and all the assembly in Jerusalem, to keep the passover in the second month.</VERS>\r\n      <VERS vnumber=\"3\">For they could not keep it at that time, because the priests had not sanctified themselves in sufficient number, neither had the people gathered themselves together to Jerusalem.</VERS>\r\n      <VERS vnumber=\"4\">And the thing was right in the eyes of the king and of all the assembly.</VERS>\r\n      <VERS vnumber=\"5\">So they established a decree to make proclamation throughout all Israel, from Beer-sheba even to Dan, that they should come to keep the passover unto Jehovah, the God of Israel, at Jerusalem: for they had not kept it in great numbers in such sort as it is written.</VERS>\r\n      <VERS vnumber=\"6\">So 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 Jehovah, the God of Abraham, Isaac, and Israel, that he may return to the remnant that are escaped of you out of the hand of the kings of Assyria.</VERS>\r\n      <VERS vnumber=\"7\">And be not ye like your fathers, and like your brethren, who trespassed against Jehovah, the God of their fathers, so that he gave them up to desolation, as ye see.</VERS>\r\n      <VERS vnumber=\"8\">Now be ye not stiffnecked, as your fathers were; but yield yourselves unto Jehovah, and enter into his sanctuary, which he hath sanctified for ever, and serve Jehovah your God, that his fierce anger may turn away from you.</VERS>\r\n      <VERS vnumber=\"9\">For if ye turn again unto Jehovah, your brethren and your children shall find compassion before them that led them captive, and shall come again into this land: for Jehovah your God is gracious and merciful, and will not turn away his face from you, if ye return unto him.</VERS>\r\n      <VERS vnumber=\"10\">So 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.</VERS>\r\n      <VERS vnumber=\"11\">Nevertheless certain men of Asher and Manasseh and of Zebulun humbled themselves, and came to Jerusalem.</VERS>\r\n      <VERS vnumber=\"12\">Also upon Judah came the hand of God to give them one heart, to do the commandment of the king and of the princes by the word of Jehovah.</VERS>\r\n      <VERS vnumber=\"13\">And there assembled at Jerusalem much people to keep the feast of unleavened bread in the second month, a very great assembly.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">Then 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 burnt-offerings into the house of Jehovah.</VERS>\r\n      <VERS vnumber=\"16\">And they stood in their place after their order, according to the law of Moses the man of God: the priests sprinkled the blood [which they received] of the hand of the Levites.</VERS>\r\n      <VERS vnumber=\"17\">For there were many in the assembly that had not sanctified themselves: therefore the Levites had the charge of killing the passovers for every one that was not clean, to sanctify them unto Jehovah.</VERS>\r\n      <VERS vnumber=\"18\">For 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 is written. For Hezekiah had prayed for them, saying, The good Jehovah pardon every one</VERS>\r\n      <VERS vnumber=\"19\">that setteth his heart to seek God, Jehovah, the God of his fathers, though [he be] not [cleansed] according to the purification of the sanctuary.</VERS>\r\n      <VERS vnumber=\"20\">And Jehovah hearkened to Hezekiah, and healed the people.</VERS>\r\n      <VERS vnumber=\"21\">And 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 Jehovah day by day, [singing] with loud instruments unto Jehovah.</VERS>\r\n      <VERS vnumber=\"22\">And Hezekiah spake comfortably unto all the Levites that had good understanding [in the service] of Jehovah. So they did eat throughout the feast for the seven days, offering sacrifices of peace-offerings, and making confession to Jehovah, the God of their fathers.</VERS>\r\n      <VERS vnumber=\"23\">And the whole assembly took counsel to keep other seven days; and they kept [other] seven days with gladness.</VERS>\r\n      <VERS vnumber=\"24\">For Hezekiah king of Judah did give to the assembly for offerings a thousand bullocks and seven thousand sheep; and the princes gave to the assembly a thousand bullocks and ten thousand sheep: and a great number of priests sanctified themselves.</VERS>\r\n      <VERS vnumber=\"25\">And all the assembly of Judah, with the priests and the Levites, and all the assembly that came out of Israel, and the sojourners that came out of the land of Israel, and that dwelt in Judah, rejoiced.</VERS>\r\n      <VERS vnumber=\"26\">So 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.</VERS>\r\n      <VERS vnumber=\"27\">Then the priests the Levites arose and blessed the people: and their voice was heard, and their prayer came up to his holy habitation, even unto heaven.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"31\">\r\n      <VERS vnumber=\"1\">Now when all this was finished, all Israel that were present went out to the cities of Judah, and brake in pieces the pillars, and hewed down the Asherim, and brake down the high places and the altars out of all Judah and Benjamin, in Ephraim also and Manasseh, until they had destroyed them all. Then all the children of Israel returned, every man to his possession, into their own cities.</VERS>\r\n      <VERS vnumber=\"2\">And Hezekiah appointed the courses of the priests and the Levites after their courses, every man according to his service, both the priests and the Levites, for burnt-offerings and for peace-offerings, to minister, and to give thanks, and to praise in the gates of the camp of Jehovah.</VERS>\r\n      <VERS vnumber=\"3\">[He 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 Jehovah.</VERS>\r\n      <VERS vnumber=\"4\">Moreover he commanded the people that dwelt in Jerusalem to give the portion of the priests and the Levites, that they might give themselves to the law of Jehovah.</VERS>\r\n      <VERS vnumber=\"5\">And as soon as the commandment came abroad, the children of Israel gave in abundance the first-fruits of grain, new wine, and oil, and honey, and of all the increase of the field; and the tithe of all things brought they in abundantly.</VERS>\r\n      <VERS vnumber=\"6\">And 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 dedicated things which were consecrated unto Jehovah their God, and laid them by heaps.</VERS>\r\n      <VERS vnumber=\"7\">In the third month they began to lay the foundation of the heaps, and finished them in the seventh month.</VERS>\r\n      <VERS vnumber=\"8\">And when Hezekiah and the princes came and saw the heaps, they blessed Jehovah, and his people Israel.</VERS>\r\n      <VERS vnumber=\"9\">Then Hezekiah questioned the priests and the Levites concerning the heaps.</VERS>\r\n      <VERS vnumber=\"10\">And Azariah the chief priest, of the house of Zadok, answered him and said, Since [the people] began to bring the oblations into the house of Jehovah, we have eaten and had enough, and have left plenty: for Jehovah hath blessed his people; and that which is left is this great store.</VERS>\r\n      <VERS vnumber=\"11\">Then Hezekiah commanded to prepare chambers in the house of Jehovah; and they prepared them.</VERS>\r\n      <VERS vnumber=\"12\">And they brought in the oblations and the tithes and the dedicated things faithfully: and over them Conaniah the Levite was ruler, and Shimei his brother was second.</VERS>\r\n      <VERS vnumber=\"13\">And 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 Conaniah and Shimei his brother, by the appointment of Hezekiah the king, and Azariah the ruler of the house of God.</VERS>\r\n      <VERS vnumber=\"14\">And Kore the son of Imnah the Levite, the porter at the east [gate], was over the freewill-offerings of God, to distribute the oblations of Jehovah, and the most holy things.</VERS>\r\n      <VERS vnumber=\"15\">And under him were Eden, and Miniamin, and Jeshua, and Shemaiah, Amariah, and Shecaniah, in the cities of the priests, in their office of trust, to give to their brethren by courses, as well to the great as to the small:</VERS>\r\n      <VERS vnumber=\"16\">besides them that were reckoned by genealogy of males, from three years old and upward, even every one that entered into the house of Jehovah, as the duty of every day required, for their service in their offices according to their courses;</VERS>\r\n      <VERS vnumber=\"17\">and them that were reckoned by genealogy of the priests by their fathers` houses, and the Levites from twenty years old and upward, in their offices by their courses;</VERS>\r\n      <VERS vnumber=\"18\">and them that were reckoned by genealogy of all their little ones, their wives, and their sons, and their daughters, through all the congregation: for in their office of trust they sanctified themselves in holiness.</VERS>\r\n      <VERS vnumber=\"19\">Also for the sons of Aaron the priests, that were in the fields of the suburbs of their cities, in every city, there were men that were mentioned by name, to give portions to all the males among the priests, and to all that were reckoned by genealogy among the Levites.</VERS>\r\n      <VERS vnumber=\"20\">And thus did Hezekiah throughout all Judah; and he wrought that which was good and right and faithful before Jehovah his God.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"32\">\r\n      <VERS vnumber=\"1\">After these things, and this faithfulness, Sennacherib king of Assyria came, and entered into Judah, and encamped against the fortified cities, and thought to win them for himself.</VERS>\r\n      <VERS vnumber=\"2\">And when Hezekiah saw that Sennacherib was come, and that he was purposed to fight against Jerusalem,</VERS>\r\n      <VERS vnumber=\"3\">he took counsel with his princes and his mighty men to stop the waters of the fountains which were without the city; and they helped him.</VERS>\r\n      <VERS vnumber=\"4\">So there was gathered much people together, and they stopped all the fountains, and the brook that flowed through the midst of the land, saying, Why should the kings of Assyria come, and find much water?</VERS>\r\n      <VERS vnumber=\"5\">And he took courage, and built up all the wall that was broken down, and raised [it] up to the towers, and the other wall without, and strengthened Millo [in] the city of David, and made weapons and shields in abundance.</VERS>\r\n      <VERS vnumber=\"6\">And he set captains of war over the people, and gathered them together to him in the broad place at the gate of the city, and spake comfortably to them, saying,</VERS>\r\n      <VERS vnumber=\"7\">Be strong and of good courage, be not afraid nor dismayed for the king of Assyria, nor for all the multitude that is with him; for there is a greater with us than with him:</VERS>\r\n      <VERS vnumber=\"8\">with him is an arm of flesh; but with us is Jehovah our God to help us, and to fight our battles. And the people rested themselves upon the words of Hezekiah king of Judah.</VERS>\r\n      <VERS vnumber=\"9\">After this did Sennacherib king of Assyria send his servants to Jerusalem, (now he was before Lachish, and all his power with him,) unto Hezekiah king of Judah, and unto all Judah that were at Jerusalem, saying,</VERS>\r\n      <VERS vnumber=\"10\">Thus saith Sennacherib king of Assyria, Whereon do ye trust, that ye abide the siege in Jerusalem?</VERS>\r\n      <VERS vnumber=\"11\">Doth not Hezekiah persuade you, to give you over to die by famine and by thirst, saying, Jehovah our God will deliver us out of the hand of the king of Assyria?</VERS>\r\n      <VERS vnumber=\"12\">Hath 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 upon it shall ye burn incense?</VERS>\r\n      <VERS vnumber=\"13\">Know ye not what I and my fathers have done unto all the peoples of the lands? Were the gods of the nations of the lands in any wise able to deliver their land out of my hand?</VERS>\r\n      <VERS vnumber=\"14\">Who was there among all the gods of those nations which my fathers utterly destroyed, that could deliver his people out of my hand, that your God should be able to deliver you out of my hand?</VERS>\r\n      <VERS vnumber=\"15\">Now therefore let not Hezekiah deceive you, nor persuade you after this manner, neither believe ye him; for no god of any nation or kingdom was able to deliver his people out of my hand, and out of the hand of my fathers: how much less shall your God deliver you out of my hand?</VERS>\r\n      <VERS vnumber=\"16\">And his servants spake yet more against Jehovah God, and against his servant Hezekiah.</VERS>\r\n      <VERS vnumber=\"17\">He wrote also letters, to rail on Jehovah, the God of Israel, and to speak against him, saying, As the gods of the nations of the lands, which have not delivered their people out of my hand, so shall not the God of Hezekiah deliver his people out of my hand.</VERS>\r\n      <VERS vnumber=\"18\">And they cried with a loud voice in the Jews` language unto the people of Jerusalem that were on the wall, to affright them, and to trouble them; that they might take the city.</VERS>\r\n      <VERS vnumber=\"19\">And they spake of the God of Jerusalem, as of the gods of the peoples of the earth, which are the work of men`s hands.</VERS>\r\n      <VERS vnumber=\"20\">And Hezekiah the king, and Isaiah the prophet the son of Amoz, prayed because of this, and cried to heaven.</VERS>\r\n      <VERS vnumber=\"21\">And Jehovah sent an angel, who cut off all the mighty men of valor, 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 from his own bowels slew him there with the sword.</VERS>\r\n      <VERS vnumber=\"22\">Thus Jehovah saved Hezekiah and the inhabitants of Jerusalem from the hand of Sennacherib the king of Assyria, and from the hand of all [others], and guided them on every side.</VERS>\r\n      <VERS vnumber=\"23\">And many brought gifts unto Jehovah to Jerusalem, and precious things to Hezekiah king of Judah; so that he was exalted in the sight of all nations from thenceforth.</VERS>\r\n      <VERS vnumber=\"24\">In those days Hezekiah was sick even unto death: and he prayed unto Jehovah; and he spake unto him, and gave him a sign.</VERS>\r\n      <VERS vnumber=\"25\">But 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.</VERS>\r\n      <VERS vnumber=\"26\">Notwithstanding Hezekiah humbled himself for the pride of his heart, both he and the inhabitants of Jerusalem, so that the wrath of Jehovah came not upon them in the days of Hezekiah.</VERS>\r\n      <VERS vnumber=\"27\">And Hezekiah had exceeding much riches and honor: and he provided him treasuries for silver, and for gold, and for precious stones, and for spices, and for shields, and for all manner of goodly vessels;</VERS>\r\n      <VERS vnumber=\"28\">store-houses also for the increase of grain and new wine and oil; and stalls for all manner of beasts, and flocks in folds.</VERS>\r\n      <VERS vnumber=\"29\">Moreover he provided him cities, and possessions of flocks and herds in abundance; for God had given him very much substance.</VERS>\r\n      <VERS vnumber=\"30\">This same Hezekiah also stopped the upper spring of the waters of Gihon, and brought them straight down on the west side of the city of David. And Hezekiah prospered in all his works.</VERS>\r\n      <VERS vnumber=\"31\">Howbeit in [the business of] the ambassadors of the princes of Babylon, who sent unto him to inquire 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.</VERS>\r\n      <VERS vnumber=\"32\">Now the rest of the acts of Hezekiah, and his good deeds, behold, they are written in the vision of Isaiah the prophet the son of Amoz, in the book of the kings of Judah and Israel.</VERS>\r\n      <VERS vnumber=\"33\">And Hezekiah slept with his fathers, and they buried him in the ascent of the sepulchres of the sons of David: and all Judah and the inhabitants of Jerusalem did him honor at his death. And Manasseh his son reigned in his stead.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"33\">\r\n      <VERS vnumber=\"1\">Manasseh was twelve years old when he began to reign; and he reigned fifty and five years in Jerusalem.</VERS>\r\n      <VERS vnumber=\"2\">And he did that which was evil in the sight of Jehovah, after the abominations of the nations whom Jehovah cast out before the children of Israel.</VERS>\r\n      <VERS vnumber=\"3\">For he built again the high places which Hezekiah his father had broken down; and he reared up altars for the Baalim, and made Asheroth, and worshipped all the host of heaven, and served them.</VERS>\r\n      <VERS vnumber=\"4\">And he built altars in the house of Jehovah, whereof Jehovah said, In Jerusalem shall my name be for ever.</VERS>\r\n      <VERS vnumber=\"5\">And he built altars for all the host of heaven in the two courts of the house of Jehovah.</VERS>\r\n      <VERS vnumber=\"6\">He also made his children to pass through the fire in the valley of the son of Hinnom; and he practised augury, and used enchantments, and practised sorcery, and dealt with them that had familiar spirits, and with wizards: he wrought much evil in the sight of Jehovah, to provoke him to anger.</VERS>\r\n      <VERS vnumber=\"7\">And he set the graven image of the idol, which he had made, in the house of God, of which God said to David and to Solomon his son, In this house, and in Jerusalem, which I have chosen out of all the tribes of Israel, will I put my name for ever:</VERS>\r\n      <VERS vnumber=\"8\">neither will I any more remove the foot of Israel from off the land which I have appointed for your fathers, if only they will observe to do all that I have commanded them, even all the law and the statutes and the ordinances [given] by Moses.</VERS>\r\n      <VERS vnumber=\"9\">And Manasseh seduced Judah and the inhabitants of Jerusalem, so that they did evil more than did the nations whom Jehovah destroyed before the children of Israel.</VERS>\r\n      <VERS vnumber=\"10\">And Jehovah spake to Manasseh, and to his people; but they gave no heed.</VERS>\r\n      <VERS vnumber=\"11\">Wherefore Jehovah brought upon them the captains of the host of the king of Assyria, who took Manasseh in chains, and bound him with fetters, and carried him to Babylon.</VERS>\r\n      <VERS vnumber=\"12\">And when he was in distress, he besought Jehovah his God, and humbled himself greatly before the God of his fathers.</VERS>\r\n      <VERS vnumber=\"13\">And he prayed unto him; and he was entreated of him, and heard his supplication, and brought him again to Jerusalem into his kingdom. Then Manasseh knew that Jehovah he was God.</VERS>\r\n      <VERS vnumber=\"14\">Now after this he built an outer wall to the city of David, on the west side of Gihon, in the valley, even to the entrance at the fish gate; and he compassed Ophel about [with it], and raised it up to a very great height: and he put valiant captains in all the fortified cities of Judah.</VERS>\r\n      <VERS vnumber=\"15\">And he took away the foreign gods, and the idol out of the house of Jehovah, and all the altars that he had built in the mount of the house of Jehovah, and in Jerusalem, and cast them out of the city.</VERS>\r\n      <VERS vnumber=\"16\">And he built up the altar of Jehovah, and offered thereon sacrifices of peace-offerings and of thanksgiving, and commanded Judah to serve Jehovah, the God of Israel.</VERS>\r\n      <VERS vnumber=\"17\">Nevertheless the people sacrificed still in the high places, but only unto Jehovah their God.</VERS>\r\n      <VERS vnumber=\"18\">Now 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 Jehovah, the God of Israel, behold, they are written among the acts of the kings of Israel.</VERS>\r\n      <VERS vnumber=\"19\">His prayer also, and how [God] was entreated of him, and all his sin and his trespass, and the places wherein he built high places, and set up the Asherim and the graven images, before he humbled himself: behold, they are written in the history of Hozai.</VERS>\r\n      <VERS vnumber=\"20\">So Manasseh slept with his fathers, and they buried him in his own house: and Amon his son reigned in his stead.</VERS>\r\n      <VERS vnumber=\"21\">Amon was twenty and two years old when he began to reign; and he reigned two years in Jerusalem.</VERS>\r\n      <VERS vnumber=\"22\">And he did that which was evil in the sight of Jehovah, as did Manasseh his father; and Amon sacrificed unto all the graven images which Manasseh his father had made, and served them.</VERS>\r\n      <VERS vnumber=\"23\">And he humbled not himself before Jehovah, as Manasseh his father had humbled himself; but this same Amon trespassed more and more.</VERS>\r\n      <VERS vnumber=\"24\">And his servants conspired against him, and put him to death in his own house.</VERS>\r\n      <VERS vnumber=\"25\">But 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"34\">\r\n      <VERS vnumber=\"1\">Josiah was eight years old when he began to reign; and he reigned thirty and one years in Jerusalem.</VERS>\r\n      <VERS vnumber=\"2\">And he did that which was right in the eyes of Jehovah, and walked in the ways of David his father, and turned not aside to the right hand or to the left.</VERS>\r\n      <VERS vnumber=\"3\">For 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 Asherim, and the graven images, and the molten images.</VERS>\r\n      <VERS vnumber=\"4\">And they brake down the altars of the Baalim in his presence; and the sun-images that were on high above them he hewed down; and the Asherim, and the graven images, and the molten images, he brake in pieces, and made dust of them, and strewed it upon the graves [of them] that had sacrificed unto them.</VERS>\r\n      <VERS vnumber=\"5\">And he burnt the bones of the priests upon their altars, and purged Judah and Jerusalem.</VERS>\r\n      <VERS vnumber=\"6\">And [so did he] in the cities of Manasseh and Ephraim and Simeon, even unto Naphtali, in their ruins round about.</VERS>\r\n      <VERS vnumber=\"7\">And he brake down the altars, and beat the Asherim and the graven images into powder, and hewed down all the sun-images throughout all the land of Israel, and returned to Jerusalem.</VERS>\r\n      <VERS vnumber=\"8\">Now 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 Jehovah his God.</VERS>\r\n      <VERS vnumber=\"9\">And they came to Hilkiah the high priest, and delivered the money that was brought into the house of God, which the Levites, the keepers of the threshold, had gathered of the hand of Manasseh and Ephraim, and of all the remnant of Israel, and of all Judah and Benjamin, and of the inhabitants of Jerusalem.</VERS>\r\n      <VERS vnumber=\"10\">And they delivered it into the hand of the workmen that had the oversight of the house of Jehovah; and the workmen that wrought in the house of Jehovah gave it to mend and repair the house;</VERS>\r\n      <VERS vnumber=\"11\">even to the carpenters and to the builders gave they it, to buy hewn stone, and timber for couplings, and to make beams for the houses which the kings of Judah had destroyed.</VERS>\r\n      <VERS vnumber=\"12\">And 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 [others of] the Levites, all that were skilful with instruments of music.</VERS>\r\n      <VERS vnumber=\"13\">Also they were over the bearers of burdens, and set forward all that did the work in every manner of service: and of the Levites there were scribes, and officers, and porters.</VERS>\r\n      <VERS vnumber=\"14\">And when they brought out the money that was brought into the house of Jehovah, Hilkiah the priest found the book of the law of Jehovah [given] by Moses.</VERS>\r\n      <VERS vnumber=\"15\">And Hilkiah answered and said to Shaphan the scribe, I have found the book of the law in the house of Jehovah. And Hilkiah delivered the book to Shaphan.</VERS>\r\n      <VERS vnumber=\"16\">And Shaphan carried the book to the king, and moreover brought back word to the king, saying, All that was committed to thy servants, they are doing.</VERS>\r\n      <VERS vnumber=\"17\">And they have emptied out the money that was found in the house of Jehovah, and have delivered it into the hand of the overseers, and into the hand of the workmen.</VERS>\r\n      <VERS vnumber=\"18\">And Shaphan the scribe told the king, saying, Hilkiah the priest hath delivered me a book. And Shaphan read therein before the king.</VERS>\r\n      <VERS vnumber=\"19\">And it came to pass, when the king had heard the words of the law, that he rent his clothes.</VERS>\r\n      <VERS vnumber=\"20\">And the king commanded Hilkiah, and Ahikam the son of Shaphan, and Abdon the son of Micah, and Shaphan the scribe, and Asaiah the king`s servant, saying,</VERS>\r\n      <VERS vnumber=\"21\">Go ye, inquire of Jehovah 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 Jehovah that is poured out upon us, because our fathers have not kept the word of Jehovah, to do according unto all that is written in this book.</VERS>\r\n      <VERS vnumber=\"22\">So Hilkiah, and they whom the king [had commanded], went to Huldah the prophetess, the wife of Shallum the son of Tokhath, the son of Hasrah, keeper of the wardrobe; (now she dwelt in Jerusalem in the second quarter;) and they spake to her to that effect.</VERS>\r\n      <VERS vnumber=\"23\">And she said unto them, Thus saith Jehovah, the God of Israel: Tell ye the man that sent you unto me,</VERS>\r\n      <VERS vnumber=\"24\">Thus saith Jehovah, 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.</VERS>\r\n      <VERS vnumber=\"25\">Because 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 is my wrath poured out upon this place, and it shall not be quenched.</VERS>\r\n      <VERS vnumber=\"26\">But unto the king of Judah, who sent you to inquire of Jehovah, thus shall ye say to him, Thus saith Jehovah, the God of Israel: As touching the words which thou hast heard,</VERS>\r\n      <VERS vnumber=\"27\">because thy heart was tender, and thou didst humble thyself before God, when thou heardest his words against this place, and against the inhabitants thereof, and hast humbled thyself before me, and hast rent thy clothes, and wept before me; I also have heard thee, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"28\">Behold, 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 thereof. And they brought back word to the king.</VERS>\r\n      <VERS vnumber=\"29\">Then the king sent and gathered together all the elders of Judah and Jerusalem.</VERS>\r\n      <VERS vnumber=\"30\">And the king went up to the house of Jehovah, and all the men of Judah and the inhabitants of Jerusalem, and the priests, and the Levites, and all the people, both 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 Jehovah.</VERS>\r\n      <VERS vnumber=\"31\">And the king stood in his place, and made a covenant before Jehovah, to walk after Jehovah, 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 that were written in this book.</VERS>\r\n      <VERS vnumber=\"32\">And he caused all that were found 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.</VERS>\r\n      <VERS vnumber=\"33\">And Josiah took away all the abominations out of all the countries that pertained to the children of Israel, and made all that were found in Israel to serve, even to serve Jehovah their God. All his days they departed not from following Jehovah, the God of their fathers.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"35\">\r\n      <VERS vnumber=\"1\">And Josiah kept a passover unto Jehovah in Jerusalem: and they killed the passover on the fourteenth [day] of the first month.</VERS>\r\n      <VERS vnumber=\"2\">And he set the priests in their offices, and encouraged them to the service of the house of Jehovah.</VERS>\r\n      <VERS vnumber=\"3\">And he said unto the Levites that taught all Israel, that were holy unto Jehovah, Put the holy ark in the house which Solomon the son of David king of Israel did build; there shall no more be a burden upon your shoulders: now serve Jehovah your God, and his people Israel.</VERS>\r\n      <VERS vnumber=\"4\">And prepare yourselves after your fathers` houses by your courses, according to the writing of David king of Israel, and according to the writing of Solomon his son.</VERS>\r\n      <VERS vnumber=\"5\">And stand in the holy place according to the divisions of the fathers` houses of your brethren the children of the people, and [let there be for each] a portion of a fathers` house of the Levites.</VERS>\r\n      <VERS vnumber=\"6\">And kill the passover, and sanctify yourselves, and prepare for your brethren, to do according to the word of Jehovah by Moses.</VERS>\r\n      <VERS vnumber=\"7\">And Josiah gave to the children of the people, of the flock, lambs and kids, all of them for the passover-offerings, unto all that were present, to the number of thirty thousand, and three thousand bullocks: these were of the king`s substance.</VERS>\r\n      <VERS vnumber=\"8\">And his princes gave for a freewill-offering unto the people, to the priests, and to the Levites. Hilkiah and Zechariah and Jehiel, the 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.</VERS>\r\n      <VERS vnumber=\"9\">Conaniah also, and Shemaiah and Nethanel, his brethren, and Hashabiah and Jeiel and Jozabad, the chiefs of the Levites, gave unto the Levites for the passover-offerings five thousand [small cattle], and five hundred oxen.</VERS>\r\n      <VERS vnumber=\"10\">So the service was prepared, and the priests stood in their place, and the Levites by their courses, according to the king`s commandment.</VERS>\r\n      <VERS vnumber=\"11\">And they killed the passover, and the priests sprinkled [the blood which they received] of their hand, and the Levites flayed them.</VERS>\r\n      <VERS vnumber=\"12\">And they removed the burnt-offerings, that they might give them according to the divisions of the fathers` houses of the children of the people, to offer unto Jehovah, as it is written in the book of Moses. And so did they with the oxen.</VERS>\r\n      <VERS vnumber=\"13\">And they roasted the passover with fire according to the ordinance: and the holy offerings boiled they in pots, and in caldrons, and in pans, and carried them quickly to all the children of the people.</VERS>\r\n      <VERS vnumber=\"14\">And afterward they prepared for themselves, and for the priests, because the priests the sons of Aaron [were busied] in offering the burnt-offerings and the fat until night: therefore the Levites prepared for themselves, and for the priests the sons of Aaron.</VERS>\r\n      <VERS vnumber=\"15\">And 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 were at every gate: they needed not to depart from their service; for their brethren the Levites prepared for them.</VERS>\r\n      <VERS vnumber=\"16\">So all the service of Jehovah was prepared the same day, to keep the passover, and to offer burnt-offerings upon the altar of Jehovah, according to the commandment of king Josiah.</VERS>\r\n      <VERS vnumber=\"17\">And the children of Israel that were present kept the passover at that time, and the feast of unleavened bread seven days.</VERS>\r\n      <VERS vnumber=\"18\">And there was no passover like to that kept in Israel from the days of Samuel the prophet; neither did any of 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.</VERS>\r\n      <VERS vnumber=\"19\">In the eighteenth year of the reign of Josiah was this passover kept.</VERS>\r\n      <VERS vnumber=\"20\">After all this, when Josiah had prepared the temple, Neco king of Egypt went up to fight against Carchemish by the Euphrates: and Josiah went out against him.</VERS>\r\n      <VERS vnumber=\"21\">But 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; and God hath commanded me to make haste: forbear thee from [meddling with] God, who is with me, that he destroy thee not.</VERS>\r\n      <VERS vnumber=\"22\">Nevertheless Josiah would not turn his face from him, but disguised himself, that he might fight with him, and hearkened not unto the words of Neco from the mouth of God, and came to fight in the valley of Megiddo.</VERS>\r\n      <VERS vnumber=\"23\">And the archers shot at king Josiah; and the king said to his servants, Have me away; for I am sore wounded.</VERS>\r\n      <VERS vnumber=\"24\">So his servants took him out of the chariot, and put him in the second chariot that he had, and brought him to Jerusalem; and he died, and was buried in the sepulchres of his fathers. And all Judah and Jerusalem mourned for Josiah.</VERS>\r\n      <VERS vnumber=\"25\">And Jeremiah lamented for Josiah: and all the singing men and singing women spake of Josiah in their lamentations unto this day; and they made them an ordinance in Israel: and, behold, they are written in the lamentations.</VERS>\r\n      <VERS vnumber=\"26\">Now the rest of the acts of Josiah, and his good deeds, according to that which is written in the law of Jehovah,</VERS>\r\n      <VERS vnumber=\"27\">and his acts, first and last, behold, they are written in the book of the kings of Israel and Judah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"36\">\r\n      <VERS vnumber=\"1\">Then the people of the land took Jehoahaz the son of Josiah, and made him king in his father`s stead in Jerusalem.</VERS>\r\n      <VERS vnumber=\"2\">Joahaz was twenty and three years old when he began to reign; and he reigned three months in Jerusalem.</VERS>\r\n      <VERS vnumber=\"3\">And the king of Egypt deposed him at Jerusalem, and fined the land a hundred talents of silver and a talent of gold.</VERS>\r\n      <VERS vnumber=\"4\">And the king of Egypt made Eliakim his brother king over Judah and Jerusalem, and changed his name to Jehoiakim. And Neco took Joahaz his brother, and carried him to Egypt.</VERS>\r\n      <VERS vnumber=\"5\">Jehoiakim 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 Jehovah his God.</VERS>\r\n      <VERS vnumber=\"6\">Against him came up Nebuchadnezzar king of Babylon, and bound him in fetters, to carry him to Babylon.</VERS>\r\n      <VERS vnumber=\"7\">Nebuchadnezzar also carried of the vessels of the house of Jehovah to Babylon, and put them in his temple at Babylon.</VERS>\r\n      <VERS vnumber=\"8\">Now 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.</VERS>\r\n      <VERS vnumber=\"9\">Jehoiachin 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 Jehovah.</VERS>\r\n      <VERS vnumber=\"10\">And at the return of the year king Nebuchadnezzar sent, and brought him to Babylon, with the goodly vessels of the house of Jehovah, and made Zedekiah his brother king over Judah and Jerusalem.</VERS>\r\n      <VERS vnumber=\"11\">Zedekiah was twenty and one years old when he began to reign; and he reigned eleven years in Jerusalem:</VERS>\r\n      <VERS vnumber=\"12\">and he did that which was evil in the sight of Jehovah his God; he humbled not himself before Jeremiah the prophet [speaking] from the mouth of Jehovah.</VERS>\r\n      <VERS vnumber=\"13\">And he also rebelled against king Nebuchadnezzar, who had made him swear by God: but he stiffened his neck, and hardened his heart against turning unto Jehovah, the God of Israel.</VERS>\r\n      <VERS vnumber=\"14\">Moreover all the chiefs of the priests, and the people, trespassed very greatly after all the abominations of the nations; and they polluted the house of Jehovah which he had hallowed in Jerusalem.</VERS>\r\n      <VERS vnumber=\"15\">And Jehovah, the God of their fathers, sent to them by his messengers, rising up early and sending, because he had compassion on his people, and on his dwelling-place:</VERS>\r\n      <VERS vnumber=\"16\">but they mocked the messengers of God, and despised his words, and scoffed at his prophets, until the wrath of Jehovah arose against his people, till there was no remedy.</VERS>\r\n      <VERS vnumber=\"17\">Therefore he brought upon them the king of the Chaldeans, who slew their young men with the sword in the house of their sanctuary, and had no compassion upon young man or virgin, old man or hoary-headed: he gave them all into his hand.</VERS>\r\n      <VERS vnumber=\"18\">And all the vessels of the house of God, great and small, and the treasures of the house of Jehovah, and the treasures of the king, and of his princes, all these he brought to Babylon.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And them that had escaped from the sword carried he away to Babylon; and they were servants to him and his sons until the reign of the kingdom of Persia:</VERS>\r\n      <VERS vnumber=\"21\">to fulfil the word of Jehovah by the mouth of Jeremiah, until the land had enjoyed its sabbaths: [for] as long as it lay desolate it kept sabbath, to fulfil threescore and ten years.</VERS>\r\n      <VERS vnumber=\"22\">Now in the first year of Cyrus king of Persia, that the word of Jehovah by the mouth of Jeremiah might be accomplished, Jehovah stirred up the spirit of Cyrus king of Persia, so that he made a proclamation throughout all his kingdom, and [put it] also in writing, saying,</VERS>\r\n      <VERS vnumber=\"23\">Thus saith Cyrus king of Persia, All the kingdoms of the earth hath Jehovah, the God of heaven, given me; and he hath charged me to build him a house in Jerusalem, which is in Judah. Whosoever there is among you of all his people, Jehovah his God be with him, and let him go up.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"15\" bname=\"Ezra\" bsname=\"Ezra\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">Now in the first year of Cyrus king of Persia, that the word of Jehovah by the mouth of Jeremiah might be accomplished, Jehovah stirred up the spirit of Cyrus king of Persia, so that he made a proclamation throughout all his kingdom, and [put it] also in writing, saying,</VERS>\r\n      <VERS vnumber=\"2\">Thus saith Cyrus king of Persia, All the kingdoms of the earth hath Jehovah, the God of heaven, given me; and he hath charged me to build him a house in Jerusalem, which is in Judah.</VERS>\r\n      <VERS vnumber=\"3\">Whosoever there is 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 Jehovah, the God of Israel (he is God), which is in Jerusalem.</VERS>\r\n      <VERS vnumber=\"4\">And whosoever is left, 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, besides the freewill-offering for the house of God which is in Jerusalem.</VERS>\r\n      <VERS vnumber=\"5\">Then rose up the heads of fathers` [houses] of Judah and Benjamin, and the priests, and the Levites, even all whose spirit God had stirred to go up to build the house of Jehovah which is in Jerusalem.</VERS>\r\n      <VERS vnumber=\"6\">And all they that were round about them strengthened their hands with vessels of silver, with gold, with goods, and with beasts, and with precious things, besides all that was willingly offered.</VERS>\r\n      <VERS vnumber=\"7\">Also Cyrus the king brought forth the vessels of the house of Jehovah, which Nebuchadnezzar had brought forth out of Jerusalem, and had put in the house of his gods;</VERS>\r\n      <VERS vnumber=\"8\">even those did Cyrus king of Persia bring forth by the hand of Mithredath the treasurer, and numbered them unto Sheshbazzar, the prince of Judah.</VERS>\r\n      <VERS vnumber=\"9\">And this is the number of them: thirty platters of gold, a thousand platters of silver, nine and twenty knives,</VERS>\r\n      <VERS vnumber=\"10\">thirty bowls of gold, silver bowls of a second sort four hundred and ten, and other vessels a thousand.</VERS>\r\n      <VERS vnumber=\"11\">All the vessels of gold and of silver were five thousand and four hundred. All these did Sheshbazzar bring up, when they of the captivity were brought up from Babylon unto Jerusalem.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">Now these 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 unto Babylon, and that returned unto Jerusalem and Judah, every one unto his city;</VERS>\r\n      <VERS vnumber=\"2\">who came with Zerubbabel, Jeshua, Nehemiah, Seraiah, Reelaiah, Mordecai, Bilshan, Mispar, Bigvai, Rehum, Baanah. The number of the men of the people of Israel:</VERS>\r\n      <VERS vnumber=\"3\">The children of Parosh, two thousand a hundred seventy and two.</VERS>\r\n      <VERS vnumber=\"4\">The children of Shephatiah, three hundred seventy and two.</VERS>\r\n      <VERS vnumber=\"5\">The children of Arah, seven hundred seventy and five.</VERS>\r\n      <VERS vnumber=\"6\">The children of Pahath-moab, of the children of Jeshua [and] Joab, two thousand eight hundred and twelve.</VERS>\r\n      <VERS vnumber=\"7\">The children of Elam, a thousand two hundred fifty and four.</VERS>\r\n      <VERS vnumber=\"8\">The children of Zattu, nine hundred forty and five.</VERS>\r\n      <VERS vnumber=\"9\">The children of Zaccai, seven hundred and threescore.</VERS>\r\n      <VERS vnumber=\"10\">The children of Bani, six hundred forty and two.</VERS>\r\n      <VERS vnumber=\"11\">The children of Bebai, six hundred twenty and three.</VERS>\r\n      <VERS vnumber=\"12\">The children of Azgad, a thousand two hundred twenty and two.</VERS>\r\n      <VERS vnumber=\"13\">The children of Adonikam, six hundred sixty and six.</VERS>\r\n      <VERS vnumber=\"14\">The children of Bigvai, two thousand fifty and six.</VERS>\r\n      <VERS vnumber=\"15\">The children of Adin, four hundred fifty and four.</VERS>\r\n      <VERS vnumber=\"16\">The children of Ater, of Hezekiah, ninety and eight.</VERS>\r\n      <VERS vnumber=\"17\">The children of Bezai, three hundred twenty and three.</VERS>\r\n      <VERS vnumber=\"18\">The children of Jorah, a hundred and twelve.</VERS>\r\n      <VERS vnumber=\"19\">The children of Hashum, two hundred twenty and three.</VERS>\r\n      <VERS vnumber=\"20\">The children of Gibbar, ninety and five.</VERS>\r\n      <VERS vnumber=\"21\">The children of Beth-lehem, a hundred twenty and three.</VERS>\r\n      <VERS vnumber=\"22\">The men of Netophah, fifty and six.</VERS>\r\n      <VERS vnumber=\"23\">The men of Anathoth, a hundred twenty and eight.</VERS>\r\n      <VERS vnumber=\"24\">The children of Azmaveth, forty and two.</VERS>\r\n      <VERS vnumber=\"25\">The children of Kiriath-arim, Chephirah, and Beeroth, seven hundred and forty and three.</VERS>\r\n      <VERS vnumber=\"26\">The children of Ramah and Geba, six hundred twenty and one.</VERS>\r\n      <VERS vnumber=\"27\">The men of Michmas, a hundred twenty and two.</VERS>\r\n      <VERS vnumber=\"28\">The men of Beth-el and Ai, two hundred twenty and three.</VERS>\r\n      <VERS vnumber=\"29\">The children of Nebo, fifty and two.</VERS>\r\n      <VERS vnumber=\"30\">The children of Magbish, a hundred fifty and six.</VERS>\r\n      <VERS vnumber=\"31\">The children of the other Elam, a thousand two hundred fifty and four.</VERS>\r\n      <VERS vnumber=\"32\">The children of Harim, three hundred and twenty.</VERS>\r\n      <VERS vnumber=\"33\">The children of Lod, Hadid, and Ono, seven hundred twenty and five.</VERS>\r\n      <VERS vnumber=\"34\">The children of Jericho, three hundred forty and five.</VERS>\r\n      <VERS vnumber=\"35\">The children of Senaah, three thousand and six hundred and thirty.</VERS>\r\n      <VERS vnumber=\"36\">The priests: the children of Jedaiah, of the house of Jeshua, nine hundred seventy and three.</VERS>\r\n      <VERS vnumber=\"37\">The children of Immer, a thousand fifty and two.</VERS>\r\n      <VERS vnumber=\"38\">The children of Pashhur, a thousand two hundred forty and seven.</VERS>\r\n      <VERS vnumber=\"39\">The children of Harim, a thousand and seventeen.</VERS>\r\n      <VERS vnumber=\"40\">The Levites: the children of Jeshua and Kadmiel, of the children of Hodaviah, seventy and four.</VERS>\r\n      <VERS vnumber=\"41\">The singers: the children of Asaph, a hundred twenty and eight.</VERS>\r\n      <VERS vnumber=\"42\">The 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 a hundred thirty and nine.</VERS>\r\n      <VERS vnumber=\"43\">The Nethinim: the children of Ziha, the children of Hasupha, the children of Tabbaoth,</VERS>\r\n      <VERS vnumber=\"44\">the children of Keros, the children of Siaha, the children of Padon,</VERS>\r\n      <VERS vnumber=\"45\">the children of Lebanah, the children of Hagabah, the children of Akkub,</VERS>\r\n      <VERS vnumber=\"46\">the children of Hagab, the children of Shamlai, the children of Hanan,</VERS>\r\n      <VERS vnumber=\"47\">the children of Giddel, the children of Gahar, the children of Reaiah,</VERS>\r\n      <VERS vnumber=\"48\">the children of Rezin, the children of Nekoda, the children of Gazzam,</VERS>\r\n      <VERS vnumber=\"49\">the children of Uzza, the children of Paseah, the children of Besai,</VERS>\r\n      <VERS vnumber=\"50\">the children of Asnah, the children of Meunim, the children of Nephisim,</VERS>\r\n      <VERS vnumber=\"51\">the children of Bakbuk, the children of Hakupha, the children of Harhur,</VERS>\r\n      <VERS vnumber=\"52\">the children of Bazluth, the children of Mehida, the children of Harsha,</VERS>\r\n      <VERS vnumber=\"53\">the children of Barkos, the children of Sisera, the children of Temah,</VERS>\r\n      <VERS vnumber=\"54\">the children of Neziah, the children of Hatipha.</VERS>\r\n      <VERS vnumber=\"55\">The children of Solomon`s servants: the children of Sotai, the children of Hassophereth, the children of Peruda,</VERS>\r\n      <VERS vnumber=\"56\">the children of Jaalah, the children of Darkon, the children of Giddel,</VERS>\r\n      <VERS vnumber=\"57\">the children of Shephatiah, the children of Hattil, the children of Pochereth-hazzebaim, the children of Ami.</VERS>\r\n      <VERS vnumber=\"58\">All the Nethinim, and the children of Solomon`s servants, were three hundred ninety and two.</VERS>\r\n      <VERS vnumber=\"59\">And these were they that went up from Tel-melah, Tel-harsha, Cherub, Addan, [and] Immer; but they could not show their fathers` houses, and their seed, whether they were of Israel:</VERS>\r\n      <VERS vnumber=\"60\">the children of Delaiah, the children of Tobiah, the children of Nekoda, six hundred fifty and two.</VERS>\r\n      <VERS vnumber=\"61\">And of the children of the priests: the children of Habaiah, the children of Hakkoz, the children of Barzillai, who took a wife of the daughters of Barzillai the Gileadite, and was called after their name.</VERS>\r\n      <VERS vnumber=\"62\">These sought their register [among] those that were reckoned by genealogy, but they were not found: therefore were they deemed polluted and put from the priesthood.</VERS>\r\n      <VERS vnumber=\"63\">And the governor said unto them, that they should not eat of the most holy things, till there stood up a priest with Urim and with Thummim.</VERS>\r\n      <VERS vnumber=\"64\">The whole assembly together was forty and two thousand three hundred and threescore,</VERS>\r\n      <VERS vnumber=\"65\">besides their men-servants and their maid-servants, of whom there were seven thousand three hundred thirty and seven: and they had two hundred singing men and singing women.</VERS>\r\n      <VERS vnumber=\"66\">Their horses were seven hundred thirty and six; their mules, two hundred forty and five;</VERS>\r\n      <VERS vnumber=\"67\">their camels, four hundred thirty and five; [their] asses, six thousand seven hundred and twenty.</VERS>\r\n      <VERS vnumber=\"68\">And some of the heads of fathers` [houses], when they came to the house of Jehovah which is in Jerusalem, offered willingly for the house of God to set it up in its place:</VERS>\r\n      <VERS vnumber=\"69\">they gave after their ability into the treasury of the work threescore and one thousand darics of gold, and five thousand pounds of silver, and one hundred priests` garments.</VERS>\r\n      <VERS vnumber=\"70\">So the priests, and the Levites, and some of the people, and the singers, and the porters, and the Nethinim, dwelt in their cities, and all Israel in their cities.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">Then 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.</VERS>\r\n      <VERS vnumber=\"3\">And they set the altar upon its base; for fear was upon them because of the peoples of the countries: and they offered burnt-offerings thereon unto Jehovah, even burnt-offerings morning and evening.</VERS>\r\n      <VERS vnumber=\"4\">And they kept the feast of tabernacles, as it is written, and [offered] the daily burnt-offerings by number, according to the ordinance, as the duty of every day required;</VERS>\r\n      <VERS vnumber=\"5\">and afterward the continual burnt-offering, and [the offerings] of the new moons, and of all the set feasts of Jehovah that were consecrated, and of every one that willingly offered a freewill-offering unto Jehovah.</VERS>\r\n      <VERS vnumber=\"6\">From the first day of the seventh month began they to offer burnt-offerings unto Jehovah: but the foundation of the temple of Jehovah was not yet laid.</VERS>\r\n      <VERS vnumber=\"7\">They gave money also unto the masons, and to the carpenters; and food, and drink, and oil, unto them of Sidon, and to them of Tyre, to bring cedar-trees from Lebanon to the sea, unto Joppa, according to the grant that they had of Cyrus king of Persia.</VERS>\r\n      <VERS vnumber=\"8\">Now 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 rest 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 have the oversight of the work of the house of Jehovah.</VERS>\r\n      <VERS vnumber=\"9\">Then stood Jeshua with his sons and his brethren, Kadmiel and his sons, the sons of Judah, together, to have the oversight of the workmen in the house of God: the sons of Henadad, with their sons and their brethren the Levites.</VERS>\r\n      <VERS vnumber=\"10\">And when the builders laid the foundation of the temple of Jehovah, they set the priests in their apparel with trumpets, and the Levites the sons of Asaph with cymbals, to praise Jehovah, after the order of David king of Israel.</VERS>\r\n      <VERS vnumber=\"11\">And they sang one to another in praising and giving thanks unto Jehovah, [saying], For he is good, for his lovingkindness [endureth] for ever toward Israel. And all the people shouted with a great shout, when they praised Jehovah, because the foundation of the house of Jehovah was laid.</VERS>\r\n      <VERS vnumber=\"12\">But many of the priests and Levites and heads of fathers` [houses], the old 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:</VERS>\r\n      <VERS vnumber=\"13\">so 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">Now when the adversaries of Judah and Benjamin heard that the children of the captivity were building a temple unto Jehovah, the God of Israel;</VERS>\r\n      <VERS vnumber=\"2\">then they drew near to Zerubbabel, and to the heads of fathers` [houses], and said unto them, Let us build with you; for we seek your God, as ye do; and we sacrifice unto him since the days of Esar-haddon king of Assyria, who brought us up hither.</VERS>\r\n      <VERS vnumber=\"3\">But Zerubbabel, and Jeshua, and the rest of the heads of fathers` [houses] of Israel, said unto them, Ye have nothing to do with us in building a house unto our God; but we ourselves together will build unto Jehovah, the God of Israel, as king Cyrus the king of Persia hath commanded us.</VERS>\r\n      <VERS vnumber=\"4\">Then the people of the land weakened the hands of the people of Judah, and troubled them in building,</VERS>\r\n      <VERS vnumber=\"5\">and 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.</VERS>\r\n      <VERS vnumber=\"6\">And in the reign of Ahasuerus, in the beginning of his reign, wrote they an accusation against the inhabitants of Judah and Jerusalem.</VERS>\r\n      <VERS vnumber=\"7\">And in the days of Artaxerxes wrote Bishlam, Mithredath, Tabeel, and the rest of his companions, unto Artaxerxes king of Persia; and the writing of the letter was written in the Syrian [character], and set forth in the Syrian [tongue].</VERS>\r\n      <VERS vnumber=\"8\">Rehum the chancellor and Shimshai the scribe wrote a letter against Jerusalem to Artaxerxes the king in this sort:</VERS>\r\n      <VERS vnumber=\"9\">then [wrote] Rehum the chancellor, and Shimshai the scribe, and the rest of their companions, the Dinaites, and the Apharsathchites, the Tarpelites, the Apharsites, the Archevites, the Babylonians, the Shushanchites, the Dehaites, the Elamites,</VERS>\r\n      <VERS vnumber=\"10\">and the rest of the nations whom the great and noble Osnappar brought over, and set in the city of Samaria, and in the rest [of the country] beyond the River, and so forth.</VERS>\r\n      <VERS vnumber=\"11\">This is the copy of the letter that they sent unto Artaxerxes the king: Thy servants the men beyond the River, and so forth.</VERS>\r\n      <VERS vnumber=\"12\">Be it known unto the king, that the Jews that came up from thee are come to us unto Jerusalem; they are building the rebellious and the bad city, and have finished the walls, and repaired the foundations.</VERS>\r\n      <VERS vnumber=\"13\">Be it known now unto the king, that, if this city be builded, and the walls finished, they will not pay tribute, custom, or toll, and in the end it will be hurtful unto the kings.</VERS>\r\n      <VERS vnumber=\"14\">Now because we eat the salt of the palace, and it is not meet for us to see the king`s dishonor, therefore have we sent and certified the king;</VERS>\r\n      <VERS vnumber=\"15\">that 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 laid waste.</VERS>\r\n      <VERS vnumber=\"16\">We certify the king that, if this city be builded, and the walls finished, by this means thou shalt have no portion beyond the River.</VERS>\r\n      <VERS vnumber=\"17\">[Then] 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 in the rest [of the country] beyond the River: Peace, and so forth.</VERS>\r\n      <VERS vnumber=\"18\">The letter which ye sent unto us hath been plainly read before me.</VERS>\r\n      <VERS vnumber=\"19\">And I decreed, 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.</VERS>\r\n      <VERS vnumber=\"20\">There have been mighty kings also over Jerusalem, who have ruled over all [the country] beyond the River; and tribute, custom, and toll, was paid unto them.</VERS>\r\n      <VERS vnumber=\"21\">Make ye now a decree to cause these men to cease, and that this city be not builded, until a decree shall be made by me.</VERS>\r\n      <VERS vnumber=\"22\">And take heed that ye be not slack herein: why should damage grow to the hurt of the kings?</VERS>\r\n      <VERS vnumber=\"23\">Then when the copy of king Artaxerxes` letter was read before Rehum, and Shimshai the scribe, and their companions, they went in haste to Jerusalem unto the Jews, and made them to cease by force and power.</VERS>\r\n      <VERS vnumber=\"24\">Then ceased the work of the house of God which is at Jerusalem; and it ceased until the second year of the reign of Darius king of Persia.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">Now 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 [prophesied they] unto them.</VERS>\r\n      <VERS vnumber=\"2\">Then 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.</VERS>\r\n      <VERS vnumber=\"3\">At the same time came to them Tattenai, the governor beyond the River, and Shethar-bozenai, and their companions, and said thus unto them, Who gave you a decree to build this house, and to finish this wall?</VERS>\r\n      <VERS vnumber=\"4\">Then we told them after this manner, what the names of the men were that were making this building.</VERS>\r\n      <VERS vnumber=\"5\">But the eye of their God was upon the elders of the Jews, and they did not make them cease, till the matter should come to Darius, and then answer should be returned by letter concerning it.</VERS>\r\n      <VERS vnumber=\"6\">The copy of the letter that Tattenai, the governor beyond the River, and Shethar-bozenai, and his companions the Apharsachites, who were beyond the River, sent unto Darius the king;</VERS>\r\n      <VERS vnumber=\"7\">they sent a letter unto him, wherein was written thus: Unto Darius the king, all peace.</VERS>\r\n      <VERS vnumber=\"8\">Be it known unto the king, that we went into the province of Judah, to the house of the great God, which is builded with great stones, and timber is laid in the walls; and this work goeth on with diligence and prospereth in their hands.</VERS>\r\n      <VERS vnumber=\"9\">Then asked we those elders, and said unto them thus, Who gave you a decree to build this house, and to finish this wall?</VERS>\r\n      <VERS vnumber=\"10\">We asked them their names also, to certify thee, that we might write the names of the men that were at the head of them.</VERS>\r\n      <VERS vnumber=\"11\">And thus they returned us answer, saying, We are the servants of the God of heaven and earth, and are building the house that was builded these many years ago, which a great king of Israel builded and finished.</VERS>\r\n      <VERS vnumber=\"12\">But after that our fathers had provoked the God of heaven unto wrath, he gave them into the hand of Nebuchadnezzar king of Babylon, the Chaldean, who destroyed this house, and carried the people away into Babylon.</VERS>\r\n      <VERS vnumber=\"13\">But in the first year of Cyrus king of Babylon, Cyrus the king made a decree to build this house of God.</VERS>\r\n      <VERS vnumber=\"14\">And the gold and silver vessels also of the house of God, which Nebuchadnezzar took out of the temple that was in Jerusalem, and brought 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;</VERS>\r\n      <VERS vnumber=\"15\">and he said unto him, Take these vessels, go, put them in the temple that is in Jerusalem, and let the house of God be builded in its place.</VERS>\r\n      <VERS vnumber=\"16\">Then came the same Sheshbazzar, and laid the foundations 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 completed.</VERS>\r\n      <VERS vnumber=\"17\">Now 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">Then Darius the king made a decree, and search was made in the house of the archives, where the treasures were laid up in Babylon.</VERS>\r\n      <VERS vnumber=\"2\">And there was found at Achmetha, in the palace that is in the province of Media, a roll, and therein was thus written for a record:</VERS>\r\n      <VERS vnumber=\"3\">In the first year of Cyrus the king, Cyrus the king made a decree: Concerning the house of God at Jerusalem, let the house be builded, the place where they offer sacrifices, and let the foundations thereof be strongly laid; the height thereof threescore cubits, and the breadth thereof threescore cubits;</VERS>\r\n      <VERS vnumber=\"4\">with three courses of great stones, and a course of new timber: and let the expenses be given out of the king`s house.</VERS>\r\n      <VERS vnumber=\"5\">And also let the gold 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 its place; and thou shalt put them in the house of God.</VERS>\r\n      <VERS vnumber=\"6\">Now therefore, Tattenai, governor beyond the River, Shethar-bozenai, and your companions the Apharsachites, who are beyond the River, be ye far from thence:</VERS>\r\n      <VERS vnumber=\"7\">let 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 its place.</VERS>\r\n      <VERS vnumber=\"8\">Moreover I make a decree what ye shall do to these elders of the Jews for the building of this house of God: that of the king`s goods, even of the tribute beyond the River, expenses be given with all diligence unto these men, that they be not hindered.</VERS>\r\n      <VERS vnumber=\"9\">And that which they have need of, both young bullocks, and rams, and lambs, for burnt-offerings to the God of heaven; [also] wheat, salt, wine, and oil, according to the word of the priests that are at Jerusalem, let it be given them day by day without fail;</VERS>\r\n      <VERS vnumber=\"10\">that they may offer sacrifices of sweet savor unto the God of heaven, and pray for the life of the king, and of his sons.</VERS>\r\n      <VERS vnumber=\"11\">Also I have made a decree, that whosoever shall alter this word, let a beam be pulled out from his house, and let him be lifted up and fastened thereon; and let his house be made a dunghill for this:</VERS>\r\n      <VERS vnumber=\"12\">and the God that hath caused his name to dwell there overthrow all kings and peoples that shall put forth their hand to alter [the same], to destroy this house of God which is at Jerusalem. I Darius have made a decree; let it be done with all diligence.</VERS>\r\n      <VERS vnumber=\"13\">Then Tattenai, the governor beyond the River, Shethar-bozenai, and their companions, because that Darius the king had sent, did accordingly with all diligence.</VERS>\r\n      <VERS vnumber=\"14\">And the elders of the Jews builded and 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 decree of Cyrus, and Darius, and Artaxerxes king of Persia.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And they offered at the dedication of this house of God a 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And the children of the captivity kept the passover upon the fourteenth [day] of the first month.</VERS>\r\n      <VERS vnumber=\"20\">For the priests and the Levites had purified themselves together; all of them were pure: and they killed the passover for all the children of the captivity, and for their brethren the priests, and for themselves.</VERS>\r\n      <VERS vnumber=\"21\">And the children of Israel that were come again out of the captivity, and all such as had separated themselves unto them from the filthiness of the nations of the land, to seek Jehovah, the God of Israel, did eat,</VERS>\r\n      <VERS vnumber=\"22\">and kept the feast of unleavened bread seven days with joy: for Jehovah had made them joyful, and had 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">Now after these things, in the reign of Artaxerxes king of Persia, Ezra the son of Seraiah, the son of Azariah, the son of Hilkiah,</VERS>\r\n      <VERS vnumber=\"2\">the son of Shallum, the son of Zadok, the son of Ahitub,</VERS>\r\n      <VERS vnumber=\"3\">the son of Amariah, the son of Azariah, the son of Meraioth,</VERS>\r\n      <VERS vnumber=\"4\">the son of Zerahiah, the son of Uzzi, the son of Bukki,</VERS>\r\n      <VERS vnumber=\"5\">the son of Abishua, the son of Phinehas, the son of Eleazar, the son of Aaron the chief priest;</VERS>\r\n      <VERS vnumber=\"6\">this Ezra went up from Babylon: and he was a ready scribe in the law of Moses, which Jehovah, the God of Israel, had given; and the king granted him all his request, according to the hand of Jehovah his God upon him.</VERS>\r\n      <VERS vnumber=\"7\">And there went up some of the children of Israel, and of the priests, and the Levites, and the singers, and the porters, and the Nethinim, unto Jerusalem, in the seventh year of Artaxerxes the king.</VERS>\r\n      <VERS vnumber=\"8\">And he came to Jerusalem in the fifth month, which was in the seventh year of the king.</VERS>\r\n      <VERS vnumber=\"9\">For 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.</VERS>\r\n      <VERS vnumber=\"10\">For Ezra had set his heart to seek the law of Jehovah, and to do it, and to teach in Israel statutes and ordinances.</VERS>\r\n      <VERS vnumber=\"11\">Now this is the copy of the letter that the king Artaxerxes gave unto Ezra the priest, the scribe, even the scribe of the words of the commandments of Jehovah, and of his statutes to Israel:</VERS>\r\n      <VERS vnumber=\"12\">Artaxerxes, king of kings, unto Ezra the priest, the scribe of the law of the God of heaven, perfect and so forth.</VERS>\r\n      <VERS vnumber=\"13\">I make a decree, that all they of the people of Israel, and their priests and the Levites, in my realm, that are minded of their own free will to go to Jerusalem, go with thee.</VERS>\r\n      <VERS vnumber=\"14\">Forasmuch as thou art sent of the king and his seven counsellors, to inquire concerning Judah and Jerusalem, according to the law of thy God which is in thy hand,</VERS>\r\n      <VERS vnumber=\"15\">and 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,</VERS>\r\n      <VERS vnumber=\"16\">and all the silver and gold that thou shalt 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;</VERS>\r\n      <VERS vnumber=\"17\">therefore thou shalt with all diligence buy with this money bullocks, rams, lambs, with their meal-offerings and their drink-offerings, and shalt offer them upon the altar of the house of your God which is in Jerusalem.</VERS>\r\n      <VERS vnumber=\"18\">And whatsoever shall seem good to thee and to thy brethren to do with the rest of the silver and the gold, that do ye after the will of your God.</VERS>\r\n      <VERS vnumber=\"19\">And the vessels that are given thee for the service of the house of thy God, deliver thou before the God of Jerusalem.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And I, even I Artaxerxes the king, do make a decree to all the treasurers that 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 with all diligence,</VERS>\r\n      <VERS vnumber=\"22\">unto a hundred talents of silver, and to a hundred measures of wheat, and to a hundred baths of wine, and to a hundred baths of oil, and salt without prescribing how much.</VERS>\r\n      <VERS vnumber=\"23\">Whatsoever is commanded by the God of heaven, let it be done exactly for the house of the God of heaven; for why should there be wrath against the realm of the king and his sons?</VERS>\r\n      <VERS vnumber=\"24\">Also we certify you, that touching any of the priests and Levites, the singers, porters, Nethinim, or servants of this house of God, it shall not be lawful to impose tribute, custom, or toll, upon them.</VERS>\r\n      <VERS vnumber=\"25\">And thou, Ezra, after the wisdom of thy God that is in thy hand, appoint magistrates and judges, who may judge all the people that are beyond the River, all such as know the laws of thy God; and teach ye him that knoweth them not.</VERS>\r\n      <VERS vnumber=\"26\">And whosoever will not do the law of thy God, and the law of the king, let judgment be executed upon him with all diligence, whether it be unto death, or to banishment, or to confiscation of goods, or to imprisonment.</VERS>\r\n      <VERS vnumber=\"27\">Blessed be Jehovah, the God of our fathers, who hath put such a thing as this in the king`s heart, to beautify the house of Jehovah which is in Jerusalem;</VERS>\r\n      <VERS vnumber=\"28\">and hath extended lovingkindness unto me before the king, and his counsellors, and before all the king`s mighty princes. And I was strengthened according to the hand of Jehovah my God upon me, and I gathered together out of Israel chief men to go up with me.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">Now these are the heads of their fathers` [houses], and this is the genealogy of them that went up with me from Babylon, in the reign of Artaxerxes the king:</VERS>\r\n      <VERS vnumber=\"2\">Of the sons of Phinehas, Gershom. Of the sons of Ithamar, Daniel. Of the sons of David, Hattush.</VERS>\r\n      <VERS vnumber=\"3\">Of the sons of Shecaniah, of the sons of Parosh, Zechariah; and with him were reckoned by genealogy of the males a hundred and fifty.</VERS>\r\n      <VERS vnumber=\"4\">Of the sons of Pahath-moab, Eliehoenai the son of Zerahiah; and with him two hundred males.</VERS>\r\n      <VERS vnumber=\"5\">Of the sons of Shecaniah, the son of Jahaziel; and with him three hundred males.</VERS>\r\n      <VERS vnumber=\"6\">And of the sons of Adin, Ebed the son of Jonathan; and with him fifty males.</VERS>\r\n      <VERS vnumber=\"7\">And of the sons of Elam, Jeshaiah the son of Athaliah; and with him seventy males.</VERS>\r\n      <VERS vnumber=\"8\">And of the sons of Shephatiah, Zebadiah the son of Michael; and with him fourscore males.</VERS>\r\n      <VERS vnumber=\"9\">Of the sons of Joab, Obadiah the son of Jehiel; and with him two hundred and eighteen males.</VERS>\r\n      <VERS vnumber=\"10\">And of the sons of Shelomith, the son of Josiphiah; and with him a hundred and threescore males.</VERS>\r\n      <VERS vnumber=\"11\">And of the sons of Bebai, Zechariah the son of Bebai; and with him twenty and eight males.</VERS>\r\n      <VERS vnumber=\"12\">And of the sons of Azgad, Johanan the son of Hakkatan; and with him a hundred and ten males.</VERS>\r\n      <VERS vnumber=\"13\">And of the sons of Adonikam, [that were] the last; and these are their names: Eliphelet, Jeuel, and Shemaiah; and with them threescore males.</VERS>\r\n      <VERS vnumber=\"14\">And of the sons of Bigvai, Uthai and Zabbud; and with them seventy males.</VERS>\r\n      <VERS vnumber=\"15\">And I gathered them together to the river that runneth to Ahava; and there we encamped three days: and I viewed the people, and the priests, and found there none of the sons of Levi.</VERS>\r\n      <VERS vnumber=\"16\">Then 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, who were teachers.</VERS>\r\n      <VERS vnumber=\"17\">And I sent them forth unto Iddo the chief at the place Casiphia; and I told them what they should say unto Iddo, [and] his brethren the Nethinim, at the place Casiphia, that they should bring unto us ministers for the house of our God.</VERS>\r\n      <VERS vnumber=\"18\">And according to the good hand of our God upon us they brought us a man of discretion, of the sons of Mahli, the son of Levi, the son of Israel; and Sherebiah, with his sons and his brethren, eighteen;</VERS>\r\n      <VERS vnumber=\"19\">and Hashabiah, and with him Jeshaiah of the sons of Merari, his brethren and their sons, twenty;</VERS>\r\n      <VERS vnumber=\"20\">and of the Nethinim, whom David and the princes had given for the service of the Levites, two hundred and twenty Nethinim: all of them were mentioned by name.</VERS>\r\n      <VERS vnumber=\"21\">Then I proclaimed a fast there, at the river Ahava, that we might humble ourselves before our God, to seek of him a straight way for us, and for our little ones, and for all our substance.</VERS>\r\n      <VERS vnumber=\"22\">For I was ashamed to ask 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 that seek him, for good; but his power and his wrath is against all them that forsake him.</VERS>\r\n      <VERS vnumber=\"23\">So we fasted and besought our God for this: and he was entreated of us.</VERS>\r\n      <VERS vnumber=\"24\">Then I set apart twelve of the chiefs of the priests, even Sherebiah, Hashabiah, and ten of their brethren with them,</VERS>\r\n      <VERS vnumber=\"25\">and weighed unto them the silver, and the gold, and the vessels, even the offering for the house of our God, which the king, and his counsellors, and his princes, and all Israel there present, had offered:</VERS>\r\n      <VERS vnumber=\"26\">I weighed into their hand six hundred and fifty talents of silver, and silver vessels a hundred talents; of gold a hundred talents;</VERS>\r\n      <VERS vnumber=\"27\">and twenty bowls of gold, of a thousand darics; and two vessels of fine bright brass, precious as gold.</VERS>\r\n      <VERS vnumber=\"28\">And I said unto them, Ye are holy unto Jehovah, and the vessels are holy; and the silver and the gold are a freewill-offering unto Jehovah, the God of your fathers.</VERS>\r\n      <VERS vnumber=\"29\">Watch ye, and keep them, until ye weigh them before the chiefs of the priests and the Levites, and the princes of the fathers` [houses] of Israel, at Jerusalem, in the chambers of the house of Jehovah.</VERS>\r\n      <VERS vnumber=\"30\">So the priests and the Levites received the weight of the silver and the gold, and the vessels, to bring them to Jerusalem unto the house of our God.</VERS>\r\n      <VERS vnumber=\"31\">Then we departed from the river 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 the lier-in-wait by the way.</VERS>\r\n      <VERS vnumber=\"32\">And we came to Jerusalem, and abode there three days.</VERS>\r\n      <VERS vnumber=\"33\">And on the fourth day the silver and the gold and the vessels were weighed in the house of our God into 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, the Levite;</VERS>\r\n      <VERS vnumber=\"34\">the whole by number and by weight: and all the weight was written at that time.</VERS>\r\n      <VERS vnumber=\"35\">The children of the captivity, that were come out of exile, 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 Jehovah.</VERS>\r\n      <VERS vnumber=\"36\">And they delivered the king`s commissions unto the king`s satraps, and to the governors beyond the River: and they furthered the people and the house of God.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">Now when these things were done, the princes drew near unto me, saying, The people of Israel, and the priests and the Levites, have not separated themselves from the peoples 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.</VERS>\r\n      <VERS vnumber=\"2\">For they have taken of their daughters for themselves and for their sons, so that the holy seed have mingled themselves with the peoples of the lands: yea, the hand of the princes and rulers hath been chief in this trespass.</VERS>\r\n      <VERS vnumber=\"3\">And when I heard this thing, I rent my garment and my robe, and plucked off the hair of my head and of my beard, and sat down confounded.</VERS>\r\n      <VERS vnumber=\"4\">Then were assembled unto me every one that trembled at the words of the God of Israel, because of the trespass of them of the captivity; and I sat confounded until the evening oblation.</VERS>\r\n      <VERS vnumber=\"5\">And at the evening oblation I arose up from my humiliation, even with my garment and my robe rent; and I fell upon my knees, and spread out my hands unto Jehovah my God;</VERS>\r\n      <VERS vnumber=\"6\">and I 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 guiltiness is grown up unto the heavens.</VERS>\r\n      <VERS vnumber=\"7\">Since the days of our fathers we have been exceeding guilty 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 plunder, and to confusion of face, as it is this day.</VERS>\r\n      <VERS vnumber=\"8\">And now for a little moment grace hath been showed from Jehovah 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.</VERS>\r\n      <VERS vnumber=\"9\">For we are bondmen; yet our God hath not forsaken us in our bondage, but hath extended lovingkindness 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 ruins thereof, and to give us a wall in Judah and in Jerusalem.</VERS>\r\n      <VERS vnumber=\"10\">And now, O our God, what shall we say after this? for we have forsaken thy commandments,</VERS>\r\n      <VERS vnumber=\"11\">which thou hast commanded by thy servants the prophets, saying, The land, unto which ye go to possess it, is an unclean land through the uncleanness of the peoples of the lands, through their abominations, which have filled it from one end to another with their filthiness:</VERS>\r\n      <VERS vnumber=\"12\">now therefore give not your daughters unto their sons, neither take their daughters unto your sons, nor seek their peace or their prosperity 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.</VERS>\r\n      <VERS vnumber=\"13\">And after all that is come upon us for our evil deeds, and for our great guilt, seeing that thou our God hast punished us less than our iniquities deserve, and hast given us such a remnant,</VERS>\r\n      <VERS vnumber=\"14\">shall we again break thy commandments, and join in affinity with the peoples that do these abominations? wouldest not thou be angry with us till thou hadst consumed us, so that there should be no remnant, nor any to escape?</VERS>\r\n      <VERS vnumber=\"15\">O Jehovah, the God of Israel, thou art righteous; for we are left a remnant that is escaped, as it is this day: behold, we are before thee in our guiltiness; for none can stand before thee because of this.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">Now while Ezra prayed and made confession, weeping and casting himself down before the house of God, there was gathered together unto him out of Israel a very great assembly of men and women and children; for the people wept very sore.</VERS>\r\n      <VERS vnumber=\"2\">And Shecaniah the son of Jehiel, one of the sons of Elam, answered and said unto Ezra, We have trespassed against our God, and have married foreign women of the peoples of the land: yet now there is hope for Israel concerning this thing.</VERS>\r\n      <VERS vnumber=\"3\">Now 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.</VERS>\r\n      <VERS vnumber=\"4\">Arise; for the matter belongeth unto thee, and we are with thee: be of good courage, and do it.</VERS>\r\n      <VERS vnumber=\"5\">Then arose Ezra, and made the chiefs of the priests, the Levites, and all Israel, to swear that they would do according to this word. So they sware.</VERS>\r\n      <VERS vnumber=\"6\">Then Ezra rose up from before the house of God, and went into the chamber of Jehohanan the son of Eliashib: and [when] he came thither, he did eat no bread, nor drink water; for he mourned because of the trespass of them of the captivity.</VERS>\r\n      <VERS vnumber=\"7\">And they made proclamation throughout Judah and Jerusalem unto all the children of the captivity, that they should gather themselves together unto Jerusalem;</VERS>\r\n      <VERS vnumber=\"8\">and that whosoever came not within three days, according to the counsel of the princes and the elders, all his substance should be forfeited, and himself separated from the assembly of the captivity.</VERS>\r\n      <VERS vnumber=\"9\">Then all the men of Judah and Benjamin gathered themselves together unto Jerusalem within the three days; it was the ninth month, on the twentieth [day] of the month: and all the people sat in the broad place before the house of God, trembling because of this matter, and for the great rain.</VERS>\r\n      <VERS vnumber=\"10\">And Ezra the priest stood up, and said unto them, Ye have trespassed, and have married foreign women, to increase the guilt of Israel.</VERS>\r\n      <VERS vnumber=\"11\">Now therefore make confession unto Jehovah, the God of your fathers, and do his pleasure; and separate yourselves from the peoples of the land, and from the foreign women.</VERS>\r\n      <VERS vnumber=\"12\">Then all the assembly answered and said with a loud voice, As thou hast said concerning us, so must we do.</VERS>\r\n      <VERS vnumber=\"13\">But 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 have greatly transgressed in this matter.</VERS>\r\n      <VERS vnumber=\"14\">Let now our princes be appointed for all the assembly, and let all them that are in our cities that have married foreign women come at appointed times, and with them the elders of every city, and the judges thereof, until the fierce wrath of our God be turned from us, until this matter be despatched.</VERS>\r\n      <VERS vnumber=\"15\">Only Jonathan the son of Asahel and Jahzeiah the son of Tikvah stood up against this [matter]: and Meshullam and Shabbethai the Levite helped them.</VERS>\r\n      <VERS vnumber=\"16\">And the children of the captivity did so. And Ezra the priest, [with] certain heads of fathers` [houses], after their fathers` houses, and all of them by their names, were set apart; and they sat down in the first day of the tenth month to examine the matter.</VERS>\r\n      <VERS vnumber=\"17\">And they made an end with all the men that had married foreign women by the first day of the first month.</VERS>\r\n      <VERS vnumber=\"18\">And among the sons of the priests there were found that had married foreign women: [namely], of the sons of Jeshua, the son of Jozadak, and his brethren, Maaseiah, and Eliezer, and Jarib, and Gedaliah.</VERS>\r\n      <VERS vnumber=\"19\">And they gave their hand that they would put away their wives; and being guilty, [they offered] a ram of the flock for their guilt.</VERS>\r\n      <VERS vnumber=\"20\">And of the sons of Immer: Hanani and Zebadiah.</VERS>\r\n      <VERS vnumber=\"21\">And of the sons of Harim: Maaseiah, and Elijah, and Shemaiah, and Jehiel, and Uzziah.</VERS>\r\n      <VERS vnumber=\"22\">And of the sons of Pashhur: Elioenai, Maaseiah, Ishmael, Nethanel, Jozabad, and Elasah.</VERS>\r\n      <VERS vnumber=\"23\">And of the Levites: Jozabad, and Shimei, and Kelaiah (the same is Kelita), Pethahiah, Judah, and Eliezer.</VERS>\r\n      <VERS vnumber=\"24\">And of the singers: Eliashib. And of the porters: Shallum, and Telem, and Uri.</VERS>\r\n      <VERS vnumber=\"25\">And of Israel: Of the sons of Parosh: Ramiah, and Izziah, and Malchijah, and Mijamin, and Eleazar, and Malchijah, and Benaiah.</VERS>\r\n      <VERS vnumber=\"26\">And of the sons of Elam: Mattaniah, Zechariah, and Jehiel, and Abdi, and Jeremoth, and Elijah.</VERS>\r\n      <VERS vnumber=\"27\">And of the sons of Zattu: Elioenai, Eliashib, Mattaniah, and Jeremoth, and Zabad, and Aziza.</VERS>\r\n      <VERS vnumber=\"28\">And of the sons of Bebai: Jehohanan, Hananiah, Zabbai, Athlai.</VERS>\r\n      <VERS vnumber=\"29\">And of the sons of Bani: Meshullam, Malluch, and Adaiah, Jashub, and Sheal, Jeremoth.</VERS>\r\n      <VERS vnumber=\"30\">And of the sons of Pahath-moab: Adna, and Chelal, Benaiah, Maaseiah, Mattaniah, Bezalel, and Binnui, and Manasseh.</VERS>\r\n      <VERS vnumber=\"31\">And [of] the sons of Harim: Eliezer, Isshijah, Malchijah, Shemaiah, Shimeon,</VERS>\r\n      <VERS vnumber=\"32\">Benjamin, Malluch, Shemariah.</VERS>\r\n      <VERS vnumber=\"33\">Of the sons of Hashum: Mattenai, Mattattah, Zabad, Eliphelet, Jeremai, Manasseh, Shimei.</VERS>\r\n      <VERS vnumber=\"34\">Of the sons of Bani: Maadai, Amram, and Uel,</VERS>\r\n      <VERS vnumber=\"35\">Benaiah, Bedeiah, Cheluhi,</VERS>\r\n      <VERS vnumber=\"36\">Vaniah, Meremoth, Eliashib,</VERS>\r\n      <VERS vnumber=\"37\">Mattaniah, Mattenai, and Jaasu,</VERS>\r\n      <VERS vnumber=\"38\">and Bani, and Binnui, Shimei,</VERS>\r\n      <VERS vnumber=\"39\">and Shelemiah, and Nathan, and Adaiah,</VERS>\r\n      <VERS vnumber=\"40\">Machnadebai, Shashai, Sharai,</VERS>\r\n      <VERS vnumber=\"41\">Azarel, and Shelemiah, Shemariah,</VERS>\r\n      <VERS vnumber=\"42\">Shallum, Amariah, Joseph.</VERS>\r\n      <VERS vnumber=\"43\">Of the sons of Nebo: Jeiel, Mattithiah, Zabad, Zebina, Iddo, and Joel, Benaiah.</VERS>\r\n      <VERS vnumber=\"44\">All these had taken foreign wives; and some of them had wives by whom they had children.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"16\" bname=\"Nehemiah\" bsname=\"Neh\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">The words of Nehemiah the son of Hacaliah. Now it came to pass in the month Chislev, in the twentieth year, as I was in Shushan the palace,</VERS>\r\n      <VERS vnumber=\"2\">that Hanani, one of my brethren, came, he and certain men out of Judah; and I asked them concerning the Jews that had escaped, that were left of the captivity, and concerning Jerusalem.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And it came to pass, when I heard these words, that I sat down and wept, and mourned certain days; and I fasted and prayed before the God of heaven,</VERS>\r\n      <VERS vnumber=\"5\">and said, I beseech thee, O Jehovah, the God of heaven, the great and terrible God, that keepeth covenant and lovingkindness with them that love him and keep his commandments:</VERS>\r\n      <VERS vnumber=\"6\">Let thine ear now be attentive, and thine eyes open, that thou mayest hearken unto the prayer of thy servant, which I pray before thee at this time, day and night, for the children of Israel thy servants while I confess the sins of the children of Israel, which we have sinned against thee. Yea, I and my father`s house have sinned:</VERS>\r\n      <VERS vnumber=\"7\">we have dealt very corruptly against thee, and have not kept the commandments, nor the statutes, nor the ordinances, which thou commandedst thy servant Moses.</VERS>\r\n      <VERS vnumber=\"8\">Remember, I beseech thee, the word that thou commandedst thy servant Moses, saying, If ye trespass, I will scatter you abroad among the peoples:</VERS>\r\n      <VERS vnumber=\"9\">but if ye return unto me, and keep my commandments and do them, though your outcasts were in the uttermost part of the heavens, yet will I gather them from thence, and will bring them unto the place that I have chosen, to cause my name to dwell there.</VERS>\r\n      <VERS vnumber=\"10\">Now these are thy servants and thy people, whom thou hast redeemed by thy great power, and by thy strong hand.</VERS>\r\n      <VERS vnumber=\"11\">O Lord, I beseech thee, let now thine ear be attentive to the prayer of thy servant, and to the prayer of thy servants, who delight to fear thy name; and prosper, I pray thee, thy servant this day, and grant him mercy in the sight of this man. Now I was cupbearer to the king.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">And it came to pass in the month Nisan, in the twentieth year of Artaxerxes the king, when wine was before him, that I took up the wine, and gave it unto the king. Now I had not been [beforetime] sad in his presence.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And I 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?</VERS>\r\n      <VERS vnumber=\"4\">Then the king said unto me, For what dost thou make request? So I prayed to the God of heaven.</VERS>\r\n      <VERS vnumber=\"5\">And I said unto the king, If it please the king, and if thy servant have found favor in thy sight, that thou wouldest send me unto Judah, unto the city of my fathers` sepulchres, that I may build it.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">Moreover I said unto the king, If it please the king, let letters be given me to the governors beyond the River, that they may let me pass through till I come unto Judah;</VERS>\r\n      <VERS vnumber=\"8\">and 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 castle which appertaineth 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.</VERS>\r\n      <VERS vnumber=\"9\">Then I came to the governors beyond the River, and gave them the king`s letters. Now the king had sent with me captains of the army and horsemen.</VERS>\r\n      <VERS vnumber=\"10\">And when Sanballat the Horonite, and Tobiah the servant, the Ammonite, heard of it, it grieved them exceedingly, for that there was come a man to seek the welfare of the children of Israel.</VERS>\r\n      <VERS vnumber=\"11\">So I came to Jerusalem, and was there three days.</VERS>\r\n      <VERS vnumber=\"12\">And I arose in the night, I and some few men with me; neither told I any man what my God put into my heart to do for Jerusalem; neither was there any beast with me, save the beast that I rode upon.</VERS>\r\n      <VERS vnumber=\"13\">And I went out by night by the valley gate, even toward the jackal`s well, and to the dung gate, and viewed the walls of Jerusalem, which were broken down, and the gates thereof were consumed with fire.</VERS>\r\n      <VERS vnumber=\"14\">Then I went on to the fountain gate and to the king`s pool: but there was no place for the beast that was under me to pass.</VERS>\r\n      <VERS vnumber=\"15\">Then went I up in the night by the brook, and viewed the wall; and I turned back, and entered by the valley gate, and so returned.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">Then said I unto them, Ye see the evil case 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.</VERS>\r\n      <VERS vnumber=\"18\">And I told them of the hand of my God which was good upon me, as also of 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 the good [work].</VERS>\r\n      <VERS vnumber=\"19\">But 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?</VERS>\r\n      <VERS vnumber=\"20\">Then 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Then 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 Hammeah they sanctified it, unto the tower of Hananel.</VERS>\r\n      <VERS vnumber=\"2\">And next unto him builded the men of Jericho. And next to them builded Zaccur the son of Imri.</VERS>\r\n      <VERS vnumber=\"3\">And the fish gate did the sons of Hassenaah build; they laid the beams thereof, and set up the doors thereof, the bolts thereof, and the bars thereof.</VERS>\r\n      <VERS vnumber=\"4\">And next unto them repaired Meremoth the son of Uriah, the son of Hakkoz. And next unto them repaired Meshullam the son of Berechiah, the son of Meshezabel. And next unto them repaired Zadok the son of Baana.</VERS>\r\n      <VERS vnumber=\"5\">And next unto them the Tekoites repaired; but their nobles put not their necks to the work of their lord.</VERS>\r\n      <VERS vnumber=\"6\">And the old gate repaired Joiada the son of Paseah and Meshullam the son of Besodeiah; they laid the beams thereof, and set up the doors thereof, and the bolts thereof, and the bars thereof.</VERS>\r\n      <VERS vnumber=\"7\">And next unto them repaired Melatiah the Gibeonite, and Jadon the Meronothite, the men of Gibeon, and of Mizpah, [that appertained] to the throne of the governor beyond the River.</VERS>\r\n      <VERS vnumber=\"8\">Next unto him repaired Uzziel the son of Harhaiah, goldsmiths. And next unto him repaired Hananiah one of the perfumers, and they fortified Jerusalem even unto the broad wall.</VERS>\r\n      <VERS vnumber=\"9\">And next unto them repaired Rephaiah the son of Hur, the ruler of half the district of Jerusalem.</VERS>\r\n      <VERS vnumber=\"10\">And next unto them repaired Jedaiah the son of Harumaph, over against his house. And next unto him repaired Hattush the son of Hashabneiah.</VERS>\r\n      <VERS vnumber=\"11\">Malchijah the son of Harim, and Hasshub the son of Pahath-moab, repaired another portion, and the tower of the furnaces.</VERS>\r\n      <VERS vnumber=\"12\">And next unto him repaired Shallum the son of Hallohesh, the ruler of half the district of Jerusalem, he and his daughters.</VERS>\r\n      <VERS vnumber=\"13\">The valley gate repaired Hanun, and the inhabitants of Zanoah; they built it, and set up the doors thereof, the bolts thereof, and the bars thereof, and a thousand cubits of the wall unto the dung gate.</VERS>\r\n      <VERS vnumber=\"14\">And the dung gate repaired Malchijah the son of Rechab, the ruler of the district of Beth-haccherem; he built it, and set up the doors thereof, the bolts thereof, and the bars thereof.</VERS>\r\n      <VERS vnumber=\"15\">And the fountain gate repaired Shallun the son of Colhozeh, the ruler of the district of Mizpah; he built it, and covered it, and set up the doors thereof, the bolts thereof, and the bars thereof, and the wall of the pool of Shelah by the king`s garden, even unto the stairs that go down from the city of David.</VERS>\r\n      <VERS vnumber=\"16\">After him repaired Nehemiah the son of Azbuk, the ruler of half the district of Beth-zur, unto the place over against the sepulchres of David, and unto the pool that was made, and unto the house of the mighty men.</VERS>\r\n      <VERS vnumber=\"17\">After him repaired the Levites, Rehum the son of Bani. Next unto him repaired Hashabiah, the ruler of half the district of Keilah, for his district.</VERS>\r\n      <VERS vnumber=\"18\">After him repaired their brethren, Bavvai the son of Henadad, the ruler of half the district of Keilah.</VERS>\r\n      <VERS vnumber=\"19\">And next to him repaired Ezer the son of Jeshua, the ruler of Mizpah, another portion, over against the ascent to the armory at the turning [of the wall].</VERS>\r\n      <VERS vnumber=\"20\">After him Baruch the son of Zabbai earnestly repaired another portion, from the turning [of the wall] unto the door of the house of Eliashib the high priest.</VERS>\r\n      <VERS vnumber=\"21\">After him repaired Meremoth the son of Uriah the son of Hakkoz another portion, from the door of the house of Eliashib even to the end of the house of Eliashib.</VERS>\r\n      <VERS vnumber=\"22\">And after him repaired the priests, the men of the Plain.</VERS>\r\n      <VERS vnumber=\"23\">After them repaired Benjamin and Hasshub over against their house. After them repaired Azariah the son of Maaseiah the son of Ananiah beside his own house.</VERS>\r\n      <VERS vnumber=\"24\">After him repaired Binnui the son of Henadad another portion, from the house of Azariah unto the turning [of the wall], and unto the corner.</VERS>\r\n      <VERS vnumber=\"25\">Palal the son of Uzai [repaired] over against the turning [of the wall], and the tower that standeth out from the upper house of the king, which is by the court of the guard. After him Pedaiah the son of Parosh [repaired].</VERS>\r\n      <VERS vnumber=\"26\">(Now the Nethinim dwelt in Ophel, unto the place over against the water gate toward the east, and the tower that standeth out.)</VERS>\r\n      <VERS vnumber=\"27\">After him the Tekoites repaired another portion, over against the great tower that standeth out, and unto the wall of Ophel.</VERS>\r\n      <VERS vnumber=\"28\">Above the horse gate repaired the priests, every one over against his own house.</VERS>\r\n      <VERS vnumber=\"29\">After them repaired Zadok the son of Immer over against his own house. And after him repaired Shemaiah the son of Shecaniah, the keeper of the east gate.</VERS>\r\n      <VERS vnumber=\"30\">After him repaired Hananiah the son of Shelemiah, and Hanun the sixth son of Zalaph, another portion. After him repaired Meshullam the son of Berechiah over against his chamber.</VERS>\r\n      <VERS vnumber=\"31\">After him repaired Malchijah one of the goldsmiths unto the house of the Nethinim, and of the merchants, over against the gate of Hammiphkad, and to the ascent of the corner.</VERS>\r\n      <VERS vnumber=\"32\">And between the ascent of the corner and the sheep gate repaired the goldsmiths and the merchants.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">But it came to pass that, when Sanballat heard that we were building the wall, he was wroth, and took great indignation, and mocked the Jews.</VERS>\r\n      <VERS vnumber=\"2\">And he spake before his brethren and the army of Samaria, and said, What are these feeble Jews doing? 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 rubbish, seeing they are burned?</VERS>\r\n      <VERS vnumber=\"3\">Now Tobiah the Ammonite was by him, and he said, Even that which they are building, if a fox go up, he shall break down their stone wall.</VERS>\r\n      <VERS vnumber=\"4\">Hear, O our God; for we are despised: and turn back their reproach upon their own head, and give them up for a spoil in a land of captivity;</VERS>\r\n      <VERS vnumber=\"5\">and 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.</VERS>\r\n      <VERS vnumber=\"6\">So we built the wall; and all the wall was joined together unto half [the height] thereof: for the people had a mind to work.</VERS>\r\n      <VERS vnumber=\"7\">But it came to pass that, when Sanballat, and Tobiah, and the Arabians, and the Ammonites, and the Ashdodites, heard that the repairing of the walls of Jerusalem went forward, [and] that the breaches began to be stopped, then they were very wroth;</VERS>\r\n      <VERS vnumber=\"8\">and they conspired all of them together to come and fight against Jerusalem, and to cause confusion therein.</VERS>\r\n      <VERS vnumber=\"9\">But we made our prayer unto our God, and set a watch against them day and night, because of them.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And our adversaries said, They shall not know, neither see, till we come into the midst of them, and slay them, and cause the work to cease.</VERS>\r\n      <VERS vnumber=\"12\">And it came to pass that, when the Jews that dwelt by them came, they said unto us ten times from all places, Ye must return unto us.</VERS>\r\n      <VERS vnumber=\"13\">Therefore set I in the lowest parts of the space behind the wall, in the open places, I set [there] the people after their families with their swords, their spears, and their bows.</VERS>\r\n      <VERS vnumber=\"14\">And 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, who is great and terrible, and fight for your brethren, your sons, and your daughters, your wives, and your houses.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And it came to pass from that time forth, that half of my servants wrought in the work, and half of them held the spears, the shields, and the bows, and the coats of mail; and the rulers were behind all the house of Judah.</VERS>\r\n      <VERS vnumber=\"17\">They all builded the wall and they that bare burdens laded themselves; every one with one of his hands wrought in the work, and with the other held his weapon;</VERS>\r\n      <VERS vnumber=\"18\">and the builders, every one had his sword girded by his side, and so builded. And he that sounded the trumpet was by me.</VERS>\r\n      <VERS vnumber=\"19\">And 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:</VERS>\r\n      <VERS vnumber=\"20\">in what place soever ye hear the sound of the trumpet, resort ye thither unto us; our God will fight for us.</VERS>\r\n      <VERS vnumber=\"21\">So we wrought in the work: and half of them held the spears from the rising of the morning till the stars appeared.</VERS>\r\n      <VERS vnumber=\"22\">Likewise 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 may labor in the day.</VERS>\r\n      <VERS vnumber=\"23\">So neither I, nor my brethren, nor my servants, nor the men of the guard that followed me, none of us put off our clothes, every one [went with] his weapon [to] the water.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">Then there arose a great cry of the people and of their wives against their brethren the Jews.</VERS>\r\n      <VERS vnumber=\"2\">For there were that said, We, our sons and our daughters, are many: let us get grain, that we may eat and live.</VERS>\r\n      <VERS vnumber=\"3\">Some also there were that said, We are mortgaging our fields, and our vineyards, and our houses: let us get grain, because of the dearth.</VERS>\r\n      <VERS vnumber=\"4\">There were also that said, We have borrowed money for the king`s tribute [upon] our fields and our vineyards.</VERS>\r\n      <VERS vnumber=\"5\">Yet 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 into bondage [already]: neither is it in our power to help it; for other men have our fields and our vineyards.</VERS>\r\n      <VERS vnumber=\"6\">And I was very angry when I heard their cry and these words.</VERS>\r\n      <VERS vnumber=\"7\">Then I consulted with myself, and contended with the nobles and the rulers, and said unto them, Ye exact usury, every one of his brother. And I held a great assembly against them.</VERS>\r\n      <VERS vnumber=\"8\">And I said unto them, We after our ability have redeemed our brethren the Jews, that were sold unto the nations; and would ye even sell your brethren, and should they be sold unto us? Then held they their peace, and found never a word.</VERS>\r\n      <VERS vnumber=\"9\">Also I said, The thing that ye do is not good: ought ye not to walk in the fear of our God, because of the reproach of the nations our enemies?</VERS>\r\n      <VERS vnumber=\"10\">And I likewise, my brethren and my servants, do lend them money and grain. I pray you, let us leave off this usury.</VERS>\r\n      <VERS vnumber=\"11\">Restore, I pray you, to them, even this day, their fields, their vineyards, their oliveyards, and their houses, also the hundredth part of the money, and of the grain, the new wine, and the oil, that ye exact of them.</VERS>\r\n      <VERS vnumber=\"12\">Then said they, We will restore them, and will require nothing of them; so will we do, even as thou sayest. Then I called the priests, and took an oath of them, that they would do according to this promise.</VERS>\r\n      <VERS vnumber=\"13\">Also I shook out my lap, and said, So God shake out every man from his house, and from his labor, that performeth not this promise; even thus be he shaken out, and emptied. And all the assembly said, Amen, and praised Jehovah. And the people did according to this promise.</VERS>\r\n      <VERS vnumber=\"14\">Moreover 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.</VERS>\r\n      <VERS vnumber=\"15\">But the former governors that were before me were chargeable unto the people, and took of them bread and wine, besides forty shekels of silver; yea, even their servants bare rule over the people: but so did not I, because of the fear of God.</VERS>\r\n      <VERS vnumber=\"16\">Yea, also I continued in the work of this wall, neither bought we any land: and all my servants were gathered thither unto the work.</VERS>\r\n      <VERS vnumber=\"17\">Moreover there were at my table, of the Jews and the rulers, a hundred and fifty men, besides those that came unto us from among the nations that were round about us.</VERS>\r\n      <VERS vnumber=\"18\">Now that which was prepared for one day 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 I demanded not the bread of the governor, because the bondage was heavy upon this people.</VERS>\r\n      <VERS vnumber=\"19\">Remember unto me, O my God, for good, all that I have done for this people.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">Now it came to pass, when it was reported to Sanballat and Tobiah, and to Geshem the Arabian, and unto the rest of our enemies, that I had builded the wall, and that there was no breach left therein; (though even unto that time I had not set up the doors in the gates;)</VERS>\r\n      <VERS vnumber=\"2\">that Sanballat and Geshem sent unto me, saying, Come, let us meet together in [one of] the villages in the plain of Ono. But they thought to do me mischief.</VERS>\r\n      <VERS vnumber=\"3\">And 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?</VERS>\r\n      <VERS vnumber=\"4\">And they sent unto me four times after this sort; and I answered them after the same manner.</VERS>\r\n      <VERS vnumber=\"5\">Then sent Sanballat his servant unto me in like manner the fifth time with an open letter in his hand,</VERS>\r\n      <VERS vnumber=\"6\">wherein was written, It is reported among the nations, and Gashmu saith it, that thou and the Jews think to rebel; for which cause thou art building the wall: and thou wouldest be their king, according to these words.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">Then I sent unto him, saying, There are no such things done as thou sayest, but thou feignest them out of thine own heart.</VERS>\r\n      <VERS vnumber=\"9\">For they all would have made us afraid, saying, Their hands shall be weakened from the work, that it be not done. But now, [O God], strengthen thou my hands.</VERS>\r\n      <VERS vnumber=\"10\">And I went unto the house of Shemaiah the son of Delaiah the son of Mehetabel, 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.</VERS>\r\n      <VERS vnumber=\"11\">And I said, Should such a man as I flee? and who is there, that, being such as I, would go into the temple to save his life? I will not go in.</VERS>\r\n      <VERS vnumber=\"12\">And I discerned, and, lo, God had not sent him; but he pronounced this prophecy against me: and Tobiah and Sanballat had hired him.</VERS>\r\n      <VERS vnumber=\"13\">For this cause 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.</VERS>\r\n      <VERS vnumber=\"14\">Remember, O my God, Tobiah and Sanballat according to these their works, and also the prophetess Noadiah, and the rest of the prophets, that would have put me in fear.</VERS>\r\n      <VERS vnumber=\"15\">So the wall was finished in the twenty and fifth [day] of [the month] Elul, in fifty and two days.</VERS>\r\n      <VERS vnumber=\"16\">And it came to pass, when all our enemies heard [thereof], that all the nations that were about us feared, and were much cast down in their own eyes; for they perceived that this work was wrought of our God.</VERS>\r\n      <VERS vnumber=\"17\">Moreover in those days the nobles of Judah sent many letters unto Tobiah, and [the letters] of Tobiah came unto them.</VERS>\r\n      <VERS vnumber=\"18\">For there were many in Judah sworn unto him, because he was the son-in-law of Shecaniah the son of Arah; and his son Jehohanan had taken the daughter of Meshullam the son of Berechiah to wife.</VERS>\r\n      <VERS vnumber=\"19\">Also they spake of his good deeds before me, and reported my words to him. [And] Tobiah sent letters to put me in fear.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">Now 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,</VERS>\r\n      <VERS vnumber=\"2\">that I gave my brother Hanani, and Hananiah the governor of the castle, charge over Jerusalem; for he was a faithful man, and feared God above many.</VERS>\r\n      <VERS vnumber=\"3\">And I said unto them, Let not the gates of Jerusalem be opened until the sun be hot; and while they stand [on guard], let them shut the doors, and bar ye them: and appoint watches of the inhabitants of Jerusalem, every one in his watch, and every one [to be] over against his house.</VERS>\r\n      <VERS vnumber=\"4\">Now the city was wide and large; but the people were few therein, and the houses were not builded.</VERS>\r\n      <VERS vnumber=\"5\">And my God put into my heart to gather together the nobles, and the rulers, and the people, that they might be reckoned by genealogy. And I found the book of the genealogy of them that came up at the first, and I found written therein:</VERS>\r\n      <VERS vnumber=\"6\">These 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 that returned unto Jerusalem and to Judah, every one unto his city;</VERS>\r\n      <VERS vnumber=\"7\">who came with Zerubbabel, Jeshua, Nehemiah, Azariah, Raamiah, Nahamani, Mordecai, Bilshan, Mispereth, Bigvai, Nehum, Baanah. The number of the men of the people of Israel:</VERS>\r\n      <VERS vnumber=\"8\">The children of Parosh, two thousand a hundred and seventy and two.</VERS>\r\n      <VERS vnumber=\"9\">The children of Shephatiah, three hundred seventy and two.</VERS>\r\n      <VERS vnumber=\"10\">The children of Arah, six hundred fifty and two.</VERS>\r\n      <VERS vnumber=\"11\">The children of Pahath-moab, of the children of Jeshua and Joab, two thousand and eight hundred [and] eighteen.</VERS>\r\n      <VERS vnumber=\"12\">The children of Elam, a thousand two hundred fifty and four.</VERS>\r\n      <VERS vnumber=\"13\">The children of Zattu, eight hundred forty and five.</VERS>\r\n      <VERS vnumber=\"14\">The children of Zaccai, seven hundred and threescore.</VERS>\r\n      <VERS vnumber=\"15\">The children of Binnui, six hundred forty and eight.</VERS>\r\n      <VERS vnumber=\"16\">The children of Bebai, six hundred twenty and eight.</VERS>\r\n      <VERS vnumber=\"17\">The children of Azgad, two thousand three hundred twenty and two.</VERS>\r\n      <VERS vnumber=\"18\">The children of Adonikam, six hundred threescore and seven.</VERS>\r\n      <VERS vnumber=\"19\">The children of Bigvai, two thousand threescore and seven.</VERS>\r\n      <VERS vnumber=\"20\">The children of Adin, six hundred fifty and five.</VERS>\r\n      <VERS vnumber=\"21\">The children of Ater, of Hezekiah, ninety and eight.</VERS>\r\n      <VERS vnumber=\"22\">The children of Hashum, three hundred twenty and eight.</VERS>\r\n      <VERS vnumber=\"23\">The children of Bezai, three hundred twenty and four.</VERS>\r\n      <VERS vnumber=\"24\">The children of Hariph, a hundred and twelve.</VERS>\r\n      <VERS vnumber=\"25\">The children of Gibeon, ninety and five.</VERS>\r\n      <VERS vnumber=\"26\">The men of Bethlehem and Netophah, a hundred fourscore and eight.</VERS>\r\n      <VERS vnumber=\"27\">The men of Anathoth, a hundred twenty and eight.</VERS>\r\n      <VERS vnumber=\"28\">The men of Beth-azmaveth, forty and two.</VERS>\r\n      <VERS vnumber=\"29\">The men of Kiriath-jearim, Chephirah, and Beeroth, seven hundred forty and three.</VERS>\r\n      <VERS vnumber=\"30\">The men of Ramah and Geba, six hundred twenty and one.</VERS>\r\n      <VERS vnumber=\"31\">The men of Michmas, a hundred and twenty and two.</VERS>\r\n      <VERS vnumber=\"32\">The men of Beth-el and Ai, a hundred twenty and three.</VERS>\r\n      <VERS vnumber=\"33\">The men of the other Nebo, fifty and two.</VERS>\r\n      <VERS vnumber=\"34\">The children of the other Elam, a thousand two hundred fifty and four.</VERS>\r\n      <VERS vnumber=\"35\">The children of Harim, three hundred and twenty.</VERS>\r\n      <VERS vnumber=\"36\">The children of Jericho, three hundred forty and five.</VERS>\r\n      <VERS vnumber=\"37\">The children of Lod, Hadid, and Ono, seven hundred twenty and one.</VERS>\r\n      <VERS vnumber=\"38\">The children of Senaah, three thousand nine hundred and thirty.</VERS>\r\n      <VERS vnumber=\"39\">The priests: The children of Jedaiah, of the house of Jeshua, nine hundred seventy and three.</VERS>\r\n      <VERS vnumber=\"40\">The children of Immer, a thousand fifty and two.</VERS>\r\n      <VERS vnumber=\"41\">The children of Pashhur, a thousand two hundred forty and seven.</VERS>\r\n      <VERS vnumber=\"42\">The children of Harim, a thousand [and] seventeen.</VERS>\r\n      <VERS vnumber=\"43\">The Levites: the children of Jeshua, of Kadmiel, of the children of Hodevah, seventy and four.</VERS>\r\n      <VERS vnumber=\"44\">The singers: the children of Asaph, a hundred forty and eight.</VERS>\r\n      <VERS vnumber=\"45\">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, a hundred thirty and eight.</VERS>\r\n      <VERS vnumber=\"46\">The Nethinim: the children of Ziha, the children of Hasupha, the children of Tabbaoth,</VERS>\r\n      <VERS vnumber=\"47\">the children of Keros, the children of Sia, the children of Padon,</VERS>\r\n      <VERS vnumber=\"48\">the children of Lebana, the children of Hagaba, the children of Salmai,</VERS>\r\n      <VERS vnumber=\"49\">the children of Hanan, the children of Giddel, the children of Gahar,</VERS>\r\n      <VERS vnumber=\"50\">the children of Reaiah, the children of Rezin, the children of Nekoda,</VERS>\r\n      <VERS vnumber=\"51\">the children of Gazzam, the children of Uzza, the children of Paseah.</VERS>\r\n      <VERS vnumber=\"52\">The children of Besai, the children of Meunim, the children of Nephushesim,</VERS>\r\n      <VERS vnumber=\"53\">the children of Bakbuk, the children of Hakupha, the children of Harhur,</VERS>\r\n      <VERS vnumber=\"54\">the children of Bazlith, the children of Mehida, the children of Harsha,</VERS>\r\n      <VERS vnumber=\"55\">the children of Barkos, the children of Sisera, the children of Temah,</VERS>\r\n      <VERS vnumber=\"56\">the children of Neziah, the children of Hatipha.</VERS>\r\n      <VERS vnumber=\"57\">The children of Solomon`s servants: the children of Sotai, the children of Sophereth, the children of Perida,</VERS>\r\n      <VERS vnumber=\"58\">the children of Jaala, the children of Darkon, the children of Giddel,</VERS>\r\n      <VERS vnumber=\"59\">the children of Shephatiah, the children of Hattil, the children of Pochereth-hazzebaim, the children of Amon.</VERS>\r\n      <VERS vnumber=\"60\">All the Nethinim, and the children of Solomon`s servants, were three hundred ninety and two.</VERS>\r\n      <VERS vnumber=\"61\">And these were they that went up from Tel-melah, Tel-harsha, Cherub, Addon, and Immer; but they could not show their fathers` houses, nor their seed, whether they were of Israel:</VERS>\r\n      <VERS vnumber=\"62\">The children of Delaiah, the children of Tobiah, the children of Nekoda, six hundred forty and two.</VERS>\r\n      <VERS vnumber=\"63\">And of the priests: the children of Hobaiah, the children of Hakkoz, the children of Barzillai, who took a wife of the daughters of Barzillai the Gileadite, and was called after their name.</VERS>\r\n      <VERS vnumber=\"64\">These sought their register [among] those that were reckoned by genealogy, but it was not found: therefore were they deemed polluted and put from the priesthood.</VERS>\r\n      <VERS vnumber=\"65\">And the governor said unto them, that they should not eat of the most holy things, till there stood up a priest with Urim and Thummim.</VERS>\r\n      <VERS vnumber=\"66\">The whole assembly together was forty and two thousand three hundred and threescore,</VERS>\r\n      <VERS vnumber=\"67\">besides their men-servants and their maid-servants, of whom there were seven thousand three hundred thirty and seven: and they had two hundred forty and five singing men and singing women.</VERS>\r\n      <VERS vnumber=\"68\">Their horses were seven hundred thirty and six; their mules, two hundred forty and five;</VERS>\r\n      <VERS vnumber=\"69\">[their] camels, four hundred thirty and five; [their] asses, six thousand seven hundred and twenty.</VERS>\r\n      <VERS vnumber=\"70\">And some from among the heads of fathers` [houses] gave unto the work. The governor gave to the treasury a thousand darics of gold, fifty basins, five hundred and thirty priests` garments.</VERS>\r\n      <VERS vnumber=\"71\">And some of the heads of fathers` [houses] gave into the treasury of the work twenty thousand darics of gold, and two thousand and two hundred pounds of silver.</VERS>\r\n      <VERS vnumber=\"72\">And that which the rest of the people gave was twenty thousand darics of gold, and two thousand pounds of silver, and threescore and seven priests` garments.</VERS>\r\n      <VERS vnumber=\"73\">So the priests, and the Levites, and the porters, and the singers, and some of the people, and the Nethinim, and all Israel, dwelt in their cities. And when the seventh month was come, the children of Israel were in their cities.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">And all the people gathered themselves together as one man into the broad place that was before the water gate; and they spake unto Ezra the scribe to bring the book of the law of Moses, which Jehovah had commanded to Israel.</VERS>\r\n      <VERS vnumber=\"2\">And Ezra the priest brought the law before the assembly, both men and women, and all that could hear with understanding, upon the first day of the seventh month.</VERS>\r\n      <VERS vnumber=\"3\">And he read therein before the broad place that was before the water gate from early morning until midday, in the presence of the men and the women, and of those that could understand; and the ears of all the people were [attentive] unto the book of the law.</VERS>\r\n      <VERS vnumber=\"4\">And 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 Uriah, and Hilkiah, and Maaseiah, on his right hand; and on his left hand, Pedaiah, and Mishael, and Malchijah, and Hashum, and Hashbaddanah, Zechariah, [and] Meshullam.</VERS>\r\n      <VERS vnumber=\"5\">And 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:</VERS>\r\n      <VERS vnumber=\"6\">and Ezra blessed Jehovah, the great God. And all the people answered, Amen, Amen, with the lifting up of their hands: and they bowed their heads, and worshipped Jehovah with their faces to the ground.</VERS>\r\n      <VERS vnumber=\"7\">Also Jeshua, and Bani, and Sherebiah, Jamin, Akkub, Shabbethai, Hodiah, Maaseiah, Kelita, Azariah, Jozabad, Hanan, Pelaiah, and the Levites, caused the people to understand the law: and the people [stood] in their place.</VERS>\r\n      <VERS vnumber=\"8\">And they read in the book, in the law of God, distinctly; and they gave the sense, so that they understood the reading.</VERS>\r\n      <VERS vnumber=\"9\">And Nehemiah, who was the governor, and Ezra the priest the scribe, and the Levites that taught the people, said unto all the people, This day is holy unto Jehovah your God; mourn not, nor weep. For all the people wept, when they heard the words of the law.</VERS>\r\n      <VERS vnumber=\"10\">Then he said unto them, Go your way, eat the fat, and drink the sweet, and send portions unto him for whom nothing is prepared; for this day is holy unto our Lord: neither be ye grieved; for the joy of Jehovah is your strength.</VERS>\r\n      <VERS vnumber=\"11\">So the Levites stilled all the people, saying, Hold your peace, for the day is holy; neither be ye grieved.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And on the second day were gathered together the heads of fathers` [houses] of all the people, the priests, and the Levites, unto Ezra the scribe, even to give attention to the words of the law.</VERS>\r\n      <VERS vnumber=\"14\">And they found written in the law, how that Jehovah had commanded by Moses, that the children of Israel should dwell in booths in the feast of the seventh month;</VERS>\r\n      <VERS vnumber=\"15\">and that they should publish and proclaim in all their cities, and in Jerusalem, saying, Go forth unto the mount, and fetch olive branches, and branches of wild olive, and myrtle branches, and palm branches, and branches of thick trees, to make booths, as it is written.</VERS>\r\n      <VERS vnumber=\"16\">So 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 broad place of the water gate, and in the broad place of the gate of Ephraim.</VERS>\r\n      <VERS vnumber=\"17\">And all the assembly of them that were come again out of the captivity made booths, and dwelt in 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.</VERS>\r\n      <VERS vnumber=\"18\">Also 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 ordinance.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">Now in the twenty and fourth day of this month the children of Israel were assembled with fasting, and with sackcloth, and earth upon them.</VERS>\r\n      <VERS vnumber=\"2\">And the seed of Israel separated themselves from all foreigners, and stood and confessed their sins, and the iniquities of their fathers.</VERS>\r\n      <VERS vnumber=\"3\">And they stood up in their place, and read in the book of the law of Jehovah their God a fourth part of the day; and [another] fourth part they confessed, and worshipped Jehovah their God.</VERS>\r\n      <VERS vnumber=\"4\">Then 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 Jehovah their God.</VERS>\r\n      <VERS vnumber=\"5\">Then the Levites, Jeshua, and Kadmiel, Bani, Hashabneiah, Sherebiah, Hodiah, Shebaniah, [and] Pethahiah, said, Stand up and bless Jehovah your God from everlasting to everlasting; and blessed be thy glorious name, which is exalted above all blessing and praise.</VERS>\r\n      <VERS vnumber=\"6\">Thou art Jehovah, even thou alone; thou hast made heaven, the heaven of heavens, with all their host, the earth and all things that are thereon, the seas and all that is in them, and thou preservest them all; and the host of heaven worshippeth thee.</VERS>\r\n      <VERS vnumber=\"7\">Thou art Jehovah the God, who didst choose Abram, and broughtest him forth out of Ur of the Chaldees, and gavest him the name of Abraham,</VERS>\r\n      <VERS vnumber=\"8\">and foundest his heart faithful before thee, and madest a covenant with him to give the land of the Canaanite, the Hittite, the Amorite, and the Perizzite, and the Jebusite, and the Girgashite, to give it unto his seed, and hast performed thy words; for thou art righteous.</VERS>\r\n      <VERS vnumber=\"9\">And thou sawest the affliction of our fathers in Egypt, and heardest their cry by the Red Sea,</VERS>\r\n      <VERS vnumber=\"10\">and showedst 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, and didst get thee a name, as it is this day.</VERS>\r\n      <VERS vnumber=\"11\">And thou didst divide the sea before them, so that they went through the midst of the sea on the dry land; and their pursuers thou didst cast into the depths, as a stone into the mighty waters.</VERS>\r\n      <VERS vnumber=\"12\">Moreover in a pillar of cloud thou leddest them by day; and in a pillar of fire by night, to give them light in the way wherein they should go.</VERS>\r\n      <VERS vnumber=\"13\">Thou camest down also upon mount Sinai, and spakest with them from heaven, and gavest them right ordinances and true laws, good statutes and commandments,</VERS>\r\n      <VERS vnumber=\"14\">and madest known unto them thy holy sabbath, and commandedst them commandments, and statutes, and a law, by Moses thy servant,</VERS>\r\n      <VERS vnumber=\"15\">and gavest them bread from heaven for their hunger, and broughtest forth water for them out of the rock for their thirst, and commandedst them that they should go in to possess the land which thou hadst sworn to give them.</VERS>\r\n      <VERS vnumber=\"16\">But they and our fathers dealt proudly and hardened their neck, and hearkened not to thy commandments,</VERS>\r\n      <VERS vnumber=\"17\">and refused to obey, neither were mindful of thy wonders that thou didst among them, but hardened their neck, 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 abundant in lovingkindness, and forsookest them not.</VERS>\r\n      <VERS vnumber=\"18\">Yea, 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;</VERS>\r\n      <VERS vnumber=\"19\">yet thou in thy manifold mercies forsookest them not in the wilderness: the pillar of cloud departed not from over them by day, to lead them in the way; neither the pillar of fire by night, to show them light, and the way wherein they should go.</VERS>\r\n      <VERS vnumber=\"20\">Thou gavest also thy good Spirit to instruct them, and withheldest not thy manna from their mouth, and gavest them water for their thirst.</VERS>\r\n      <VERS vnumber=\"21\">Yea, forty years didst thou sustain them in the wilderness, [and] they lacked nothing; their clothes waxed not old, and their feet swelled not.</VERS>\r\n      <VERS vnumber=\"22\">Moreover thou gavest them kingdoms and peoples, which thou didst allot after their portions: so they possessed the land of Sihon, even the land of the king of Heshbon, and the land of Og king of Bashan.</VERS>\r\n      <VERS vnumber=\"23\">Their children also multipliedst thou as the stars of heaven, and broughtest them into the land concerning which thou didst say to their fathers, that they should go in to possess it.</VERS>\r\n      <VERS vnumber=\"24\">So 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 peoples of the land, that they might do with them as they would.</VERS>\r\n      <VERS vnumber=\"25\">And they took fortified cities, and a fat land, and possessed houses full of all good things, cisterns hewn out, 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.</VERS>\r\n      <VERS vnumber=\"26\">Nevertheless they were disobedient, and rebelled against thee, and cast thy law behind their back, and slew thy prophets that testified against them to turn them again unto thee, and they wrought great provocations.</VERS>\r\n      <VERS vnumber=\"27\">Therefore thou deliveredst them into the hand of their adversaries, who distressed them: and in the time of their trouble, when they cried unto thee, thou heardest from heaven; and according to thy manifold mercies thou gavest them saviours who saved them out of the hand of their adversaries.</VERS>\r\n      <VERS vnumber=\"28\">But after they had rest, they did evil again before thee; therefore leftest thou them in the hand of their enemies, so that they had the dominion over them: yet when they returned, and cried unto thee, thou heardest from heaven; and many times didst thou deliver them according to thy mercies,</VERS>\r\n      <VERS vnumber=\"29\">and 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 thine ordinances, (which if a man do, he shall live in them,) and withdrew the shoulder, and hardened their neck, and would not hear.</VERS>\r\n      <VERS vnumber=\"30\">Yet many years didst thou bear with them, and testifiedst against them by thy Spirit through thy prophets: yet would they not give ear: therefore gavest thou them into the hand of the peoples of the lands.</VERS>\r\n      <VERS vnumber=\"31\">Nevertheless in thy manifold mercies thou didst not make a full end of them, nor forsake them; for thou art a gracious and merciful God.</VERS>\r\n      <VERS vnumber=\"32\">Now therefore, our God, the great, the mighty, and the terrible God, who keepest covenant and lovingkindness, let not all the travail 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.</VERS>\r\n      <VERS vnumber=\"33\">Howbeit thou art just in all that is come upon us; for thou hast dealt truly, but we have done wickedly;</VERS>\r\n      <VERS vnumber=\"34\">neither 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.</VERS>\r\n      <VERS vnumber=\"35\">For 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.</VERS>\r\n      <VERS vnumber=\"36\">Behold, we are servants this day, and as for the land that thou gavest unto our fathers to eat the fruit thereof and the good thereof, behold, we are servants in it.</VERS>\r\n      <VERS vnumber=\"37\">And it yieldeth much increase unto the kings whom thou hast set over us because of our sins: also they have power over our bodies, and over our cattle, at their pleasure, and we are in great distress.</VERS>\r\n      <VERS vnumber=\"38\">And yet for all this we make a sure covenant, and write it; and our princes, our Levites, [and] our priests, seal unto it.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">Now those that sealed were: Nehemiah the governor, the son of Hacaliah, and Zedekiah,</VERS>\r\n      <VERS vnumber=\"2\">Seraiah, Azariah, Jeremiah,</VERS>\r\n      <VERS vnumber=\"3\">Pashhur, Amariah, Malchijah,</VERS>\r\n      <VERS vnumber=\"4\">Hattush, Shebaniah, Malluch,</VERS>\r\n      <VERS vnumber=\"5\">Harim, Meremoth, Obadiah,</VERS>\r\n      <VERS vnumber=\"6\">Daniel, Ginnethon, Baruch,</VERS>\r\n      <VERS vnumber=\"7\">Meshullam, Abijah, Mijamin,</VERS>\r\n      <VERS vnumber=\"8\">Maaziah, Bilgai, Shemaiah; these were the priests.</VERS>\r\n      <VERS vnumber=\"9\">And the Levites: namely, Jeshua the son of Azaniah, Binnui of the sons of Henadad, Kadmiel;</VERS>\r\n      <VERS vnumber=\"10\">and their brethren, Shebaniah, Hodiah, Kelita, Pelaiah, Hanan,</VERS>\r\n      <VERS vnumber=\"11\">Mica, Rehob, Hashabiah,</VERS>\r\n      <VERS vnumber=\"12\">Zaccur, Sherebiah, Shebaniah,</VERS>\r\n      <VERS vnumber=\"13\">Hodiah, Bani, Beninu.</VERS>\r\n      <VERS vnumber=\"14\">The chiefs of the people: Parosh, Pahath-moab, Elam, Zattu, Bani,</VERS>\r\n      <VERS vnumber=\"15\">Bunni, Azgad, Bebai,</VERS>\r\n      <VERS vnumber=\"16\">Adonijah, Bigvai, Adin,</VERS>\r\n      <VERS vnumber=\"17\">Ater, Hezekiah, Azzur,</VERS>\r\n      <VERS vnumber=\"18\">Hodiah, Hashum, Bezai,</VERS>\r\n      <VERS vnumber=\"19\">Hariph, Anathoth, Nobai,</VERS>\r\n      <VERS vnumber=\"20\">Magpiash, Meshullam, Hezir,</VERS>\r\n      <VERS vnumber=\"21\">Meshezabel, Zadok, Jaddua,</VERS>\r\n      <VERS vnumber=\"22\">Pelatiah, Hanan, Anaiah,</VERS>\r\n      <VERS vnumber=\"23\">Hoshea, Hananiah, Hasshub,</VERS>\r\n      <VERS vnumber=\"24\">Hallohesh, Pilha, Shobek,</VERS>\r\n      <VERS vnumber=\"25\">Rehum, Hashabnah, Maaseiah,</VERS>\r\n      <VERS vnumber=\"26\">and Ahiah, Hanan, Anan,</VERS>\r\n      <VERS vnumber=\"27\">Malluch, Harim, Baanah.</VERS>\r\n      <VERS vnumber=\"28\">And the rest of the people, the priests, the Levites, the porters, the singers, the Nethinim, and all they that had separated themselves from the peoples of the lands unto the law of God, their wives, their sons, and their daughters, every one that had knowledge, and understanding;</VERS>\r\n      <VERS vnumber=\"29\">They 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 Jehovah our Lord, and his ordinances and his statutes;</VERS>\r\n      <VERS vnumber=\"30\">and that we would not give our daughters unto the peoples of the land, nor take their daughters for our sons;</VERS>\r\n      <VERS vnumber=\"31\">and if the peoples of the land bring wares or any grain on the sabbath day to sell, that we would not buy of them on the sabbath, or on a holy day; and that we would forego the seventh year, and the exaction of every debt.</VERS>\r\n      <VERS vnumber=\"32\">Also 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;</VERS>\r\n      <VERS vnumber=\"33\">for the showbread, and for the continual meal-offering, and for the continual burnt-offering, for the sabbaths, for the new moons, for the set feasts, and for the holy things, and for the sin-offerings to make atonement for Israel, and for all the work of the house of our God.</VERS>\r\n      <VERS vnumber=\"34\">And we cast lots, the priests, the Levites, and the people, for the wood-offering, to bring it into the house of our God, according to our fathers` houses, at times appointed, year by year, to burn upon the altar of Jehovah our God, as it is written in the law;</VERS>\r\n      <VERS vnumber=\"35\">and to bring the first-fruits of our ground, and the first-fruits of all fruit of all manner of trees, year by year, unto the house of Jehovah;</VERS>\r\n      <VERS vnumber=\"36\">also the first-born 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;</VERS>\r\n      <VERS vnumber=\"37\">and that we should bring the first-fruits of our dough, and our heave-offerings, and the fruit of all manner of trees, the new wine and the oil, unto the priests, to the chambers of the house of our God; and the tithes of our ground unto the Levites; for they, the Levites, take the tithes in all the cities of our tillage.</VERS>\r\n      <VERS vnumber=\"38\">And 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.</VERS>\r\n      <VERS vnumber=\"39\">For the children of Israel and the children of Levi shall bring the heave-offering of the grain, of the new wine, and of 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">And the princes of the people dwelt in Jerusalem: the rest of the people also cast lots, to bring one of ten to dwell in Jerusalem the holy city, and nine parts in the [other] cities.</VERS>\r\n      <VERS vnumber=\"2\">And the people blessed all the men that willingly offered themselves to dwell in Jerusalem.</VERS>\r\n      <VERS vnumber=\"3\">Now these are the chiefs 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 Nethinim, and the children of Solomon`s servants.</VERS>\r\n      <VERS vnumber=\"4\">And in 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 Mahalalel, of the children of Perez;</VERS>\r\n      <VERS vnumber=\"5\">and 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 the Shilonite.</VERS>\r\n      <VERS vnumber=\"6\">All the sons of Perez that dwelt in Jerusalem were four hundred threescore and eight valiant men.</VERS>\r\n      <VERS vnumber=\"7\">And 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 Jeshaiah.</VERS>\r\n      <VERS vnumber=\"8\">And after him Gabbai, Sallai, nine hundred twenty and eight.</VERS>\r\n      <VERS vnumber=\"9\">And Joel the son of Zichri was their overseer; and Judah the son of Hassenuah was second over the city.</VERS>\r\n      <VERS vnumber=\"10\">Of the priests: Jedaiah the son of Joiarib, Jachin,</VERS>\r\n      <VERS vnumber=\"11\">Seraiah 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,</VERS>\r\n      <VERS vnumber=\"12\">and their brethren that did the work of the house, 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 Pashhur, the son of Malchijah,</VERS>\r\n      <VERS vnumber=\"13\">and his brethren, chiefs of fathers` [houses], two hundred forty and two; and Amashsai the son of Azarel, the son of Ahzai, the son of Meshillemoth, the son of Immer,</VERS>\r\n      <VERS vnumber=\"14\">and their brethren, mighty men of valor, a hundred twenty and eight; and their overseer was Zabdiel, the son of Haggedolim.</VERS>\r\n      <VERS vnumber=\"15\">And of the Levites: Shemaiah the son of Hasshub, the son of Azrikam, the son of Hashabiah, the son of Bunni;</VERS>\r\n      <VERS vnumber=\"16\">and Shabbethai and Jozabad, of the chiefs of the Levites, who had the oversight of the outward business of the house of God;</VERS>\r\n      <VERS vnumber=\"17\">and Mattaniah the son of Mica, the son of Zabdi, the son of Asaph, who was the chief 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.</VERS>\r\n      <VERS vnumber=\"18\">All the Levites in the holy city were two hundred fourscore and four.</VERS>\r\n      <VERS vnumber=\"19\">Moreover the porters, Akkub, Talmon, and their brethren, that kept watch at the gates, were a hundred seventy and two.</VERS>\r\n      <VERS vnumber=\"20\">And the residue of Israel, of the priests, the Levites, were in all the cities of Judah, every one in his inheritance.</VERS>\r\n      <VERS vnumber=\"21\">But the Nethinim dwelt in Ophel: and Ziha and Gishpa were over the Nethinim.</VERS>\r\n      <VERS vnumber=\"22\">The overseer also of the Levites at Jerusalem was Uzzi the son of Bani, the son of Hashabiah, the son of Mattaniah, the son of Mica, of the sons of Asaph, the singers, over the business of the house of God.</VERS>\r\n      <VERS vnumber=\"23\">For there was a commandment from the king concerning them, and a settled provision for the singers, as every day required.</VERS>\r\n      <VERS vnumber=\"24\">And Pethahiah the son of Meshezabel, of the children of Zerah the son of Judah, was at the king`s hand in all matters concerning the people.</VERS>\r\n      <VERS vnumber=\"25\">And as for the villages, with their fields, some of the children of Judah dwelt in Kiriath-arba and the towns thereof, and in Dibon and the towns thereof, and in Jekabzeel and the villages thereof,</VERS>\r\n      <VERS vnumber=\"26\">and in Jeshua, and in Moladah, and Beth-pelet,</VERS>\r\n      <VERS vnumber=\"27\">and in Hazar-shual, and in Beer-sheba and the towns thereof,</VERS>\r\n      <VERS vnumber=\"28\">and in Ziklag, and in Meconah and in the towns thereof,</VERS>\r\n      <VERS vnumber=\"29\">and in En-rimmon, and in Zorah, and in Jarmuth,</VERS>\r\n      <VERS vnumber=\"30\">Zanoah, Adullam, and their villages, Lachish and the fields thereof, Azekah and the towns thereof. So they encamped from Beer-sheba unto the valley of Hinnom.</VERS>\r\n      <VERS vnumber=\"31\">The children of Benjamin also [dwelt] from Geba [onward], at Michmash and Aija, and at Beth-el and the towns thereof,</VERS>\r\n      <VERS vnumber=\"32\">at Anathoth, Nob, Ananiah,</VERS>\r\n      <VERS vnumber=\"33\">Hazor, Ramah, Gittaim,</VERS>\r\n      <VERS vnumber=\"34\">Hadid, Zeboim, Neballat,</VERS>\r\n      <VERS vnumber=\"35\">Lod, and Ono, the valley of craftsmen.</VERS>\r\n      <VERS vnumber=\"36\">And of the Levites, certain courses in Judah [were joined] to Benjamin.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">Now these are the priests and the Levites that went up with Zerubbabel the son of Shealtiel, and Jeshua: Seraiah, Jeremiah, Ezra,</VERS>\r\n      <VERS vnumber=\"2\">Amariah, Malluch, Hattush,</VERS>\r\n      <VERS vnumber=\"3\">Shecaniah, Rehum, Meremoth,</VERS>\r\n      <VERS vnumber=\"4\">Iddo, Ginnethoi, Abijah,</VERS>\r\n      <VERS vnumber=\"5\">Mijamin, Maadiah, Bilgah,</VERS>\r\n      <VERS vnumber=\"6\">Shemaiah, and Joiarib, Jedaiah.</VERS>\r\n      <VERS vnumber=\"7\">Sallu, Amok, Hilkiah, Jedaiah. These were the chiefs of the priests and of their brethren in the days of Jeshua.</VERS>\r\n      <VERS vnumber=\"8\">Moreover the Levites: Jeshua, Binnui, Kadmiel, Sherebiah, Judah, [and] Mattaniah, who was over the thanksgiving, he and his brethren.</VERS>\r\n      <VERS vnumber=\"9\">Also Bakbukiah and Unno, their brethren, were over against them according to their offices.</VERS>\r\n      <VERS vnumber=\"10\">And Jeshua begat Joiakim, and Joiakim begat Eliashib, and Eliashib begat Joiada,</VERS>\r\n      <VERS vnumber=\"11\">and Joiada begat Jonathan, and Jonathan begat Jaddua.</VERS>\r\n      <VERS vnumber=\"12\">And in the days of Joiakim were priests, heads of fathers` [houses]: of Seraiah, Meraiah; of Jeremiah, Hananiah;</VERS>\r\n      <VERS vnumber=\"13\">of Ezra, Meshullam; of Amariah, Jehohanan;</VERS>\r\n      <VERS vnumber=\"14\">of Malluchi, Jonathan; of Shebaniah, Joseph;</VERS>\r\n      <VERS vnumber=\"15\">of Harim, Adna; of Meraioth, Helkai;</VERS>\r\n      <VERS vnumber=\"16\">of Iddo, Zechariah; of Ginnethon, Meshullam;</VERS>\r\n      <VERS vnumber=\"17\">of Abijah, Zichri; of Miniamin, of Moadiah, Piltai;</VERS>\r\n      <VERS vnumber=\"18\">of Bilgah, Shammua; of Shemaiah, Jehonathan;</VERS>\r\n      <VERS vnumber=\"19\">and of Joiarib, Mattenai; of Jedaiah, Uzzi;</VERS>\r\n      <VERS vnumber=\"20\">of Sallai, Kallai; of Amok, Eber;</VERS>\r\n      <VERS vnumber=\"21\">of Hilkiah, Hashabiah; of Jedaiah, Nethanel.</VERS>\r\n      <VERS vnumber=\"22\">As for the Levites, in the days of Eliashib, Joiada, and Johanan, and Jaddua, there were recorded the heads of fathers` [houses]; also the priests, in the reign of Darius the Persian.</VERS>\r\n      <VERS vnumber=\"23\">The sons of Levi, heads of fathers` [houses], were written in the book of the chronicles, even until the days of Johanan the son of Eliashib.</VERS>\r\n      <VERS vnumber=\"24\">And the chiefs of the Levites: Hashabiah, Sherebiah, and Jeshua the son of Kadmiel, with their brethren over against them, to praise and give thanks, according to the commandment of David the man of God, watch next to watch.</VERS>\r\n      <VERS vnumber=\"25\">Mattaniah, and Bakbukiah, Obadiah, Meshullam, Talmon, Akkub, were porters keeping the watch at the store-houses of the gates.</VERS>\r\n      <VERS vnumber=\"26\">These 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And the sons of the singers gathered themselves together, both out of the plain round about Jerusalem, and from the villages of the Netophathites;</VERS>\r\n      <VERS vnumber=\"29\">also from Beth-gilgal, and out of the fields of Geba and Azmaveth: for the singers had builded them villages round about Jerusalem.</VERS>\r\n      <VERS vnumber=\"30\">And the priests and the Levites purified themselves; and they purified the people, and the gates, and the wall.</VERS>\r\n      <VERS vnumber=\"31\">Then I brought up the princes of Judah upon the wall, and appointed two great companies that gave thanks and went in procession; [whereof one went] on the right hand upon the wall toward the dung gate:</VERS>\r\n      <VERS vnumber=\"32\">and after them went Hoshaiah, and half of the princes of Judah,</VERS>\r\n      <VERS vnumber=\"33\">and Azariah, Ezra, and Meshullam,</VERS>\r\n      <VERS vnumber=\"34\">Judah, and Benjamin, and Shemaiah, and Jeremiah,</VERS>\r\n      <VERS vnumber=\"35\">and certain of the priests` sons with trumpets: Zechariah the son of Jonathan, the son of Shemaiah, the son of Mattaniah, the son of Micaiah, the son of Zaccur, the son of Asaph;</VERS>\r\n      <VERS vnumber=\"36\">and his brethren, Shemaiah, and Azarel, Milalai, Gilalai, Maai, Nethanel, and Judah, Hanani, with the musical instruments of David the man of God; and Ezra the scribe was before them.</VERS>\r\n      <VERS vnumber=\"37\">And by the fountain gate, and straight before them, they went up by the stairs of the city of David, at the ascent of the wall, above the house of David, even unto the water gate eastward.</VERS>\r\n      <VERS vnumber=\"38\">And the other company of them that gave thanks went to meet them, and I after them, with the half of the people, upon the wall, above the tower of the furnaces, even unto the broad wall,</VERS>\r\n      <VERS vnumber=\"39\">and above the gate of Ephraim, and by the old gate, and by the fish gate, and the tower of Hananel, and the tower of Hammeah, even unto the sheep gate: and they stood still in the gate of the guard.</VERS>\r\n      <VERS vnumber=\"40\">So stood the two companies of them that gave thanks in the house of God, and I, and the half of the rulers with me;</VERS>\r\n      <VERS vnumber=\"41\">and the priests, Eliakim, Maaseiah, Miniamin, Micaiah, Elioenai, Zechariah, and Hananiah, with trumpets;</VERS>\r\n      <VERS vnumber=\"42\">and Maaseiah, and Shemaiah, and Eleazar, and Uzzi, and Jehohanan, and Malchijah, and Elam, and Ezer. And the singers sang loud, with Jezrahiah their overseer.</VERS>\r\n      <VERS vnumber=\"43\">And they offered great sacrifices that day, and rejoiced; for God had made them rejoice with great joy; and the women also and the children rejoiced: so that the joy of Jerusalem was heard even afar off.</VERS>\r\n      <VERS vnumber=\"44\">And on that day were men appointed over the chambers for the treasures, for the heave-offerings, for the first-fruits, and for the tithes, to gather into them, according to the fields of the cities, the portions appointed by the law for the priests and Levites: for Judah rejoiced for the priests and for the Levites that waited.</VERS>\r\n      <VERS vnumber=\"45\">And they kept the charge of their God, and the charge of the purification, and [so did] the singers and the porters, according to the commandment of David, and of Solomon his son.</VERS>\r\n      <VERS vnumber=\"46\">For in the days of David and Asaph of old there was a chief of the singers, and songs of praise and thanksgiving unto God.</VERS>\r\n      <VERS vnumber=\"47\">And all Israel in the days of Zerubbabel, and in the days of Nehemiah, gave the portions of the singers and the porters, as every day required: and they set apart [that which was] for the Levites; and the Levites set apart [that which was] for the sons of Aaron.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">On that day they read in the book of Moses in the audience of the people; and therein was found written, that an Ammonite and a Moabite should not enter into the assembly of God for ever,</VERS>\r\n      <VERS vnumber=\"2\">because they met not the children of Israel with bread and with water, but hired Balaam against them, to curse them: howbeit our God turned the curse into a blessing.</VERS>\r\n      <VERS vnumber=\"3\">And it came to pass, when they had heard the law, that they separated from Israel all the mixed multitude.</VERS>\r\n      <VERS vnumber=\"4\">Now before this, Eliashib the priest, who was appointed over the chambers of the house of our God, being allied unto Tobiah,</VERS>\r\n      <VERS vnumber=\"5\">had prepared for him a great chamber, where aforetime they laid the meal-offerings, the frankincense, and the vessels, and the tithes of the grain, the new wine, and the oil, which were given by commandment to the Levites, and the singers, and the porters; and the heave-offerings for the priests.</VERS>\r\n      <VERS vnumber=\"6\">But in all this [time] I was not at Jerusalem; for in the two and thirtieth year of Artaxerxes king of Babylon I went unto the king: and after certain days asked I leave of the king,</VERS>\r\n      <VERS vnumber=\"7\">and I came to Jerusalem, and understood the evil that Eliashib had done for Tobiah, in preparing him a chamber in the courts of the house of God.</VERS>\r\n      <VERS vnumber=\"8\">And it grieved me sore: therefore I cast forth all the household stuff of Tobiah out of the chamber.</VERS>\r\n      <VERS vnumber=\"9\">Then I commanded, and they cleansed the chambers: and thither brought I again the vessels of the house of God, with the meal-offerings and the frankincense.</VERS>\r\n      <VERS vnumber=\"10\">And I perceived that the portions of the Levites had not been given them; so that the Levites and the singers, that did the work, were fled every one to his field.</VERS>\r\n      <VERS vnumber=\"11\">Then 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.</VERS>\r\n      <VERS vnumber=\"12\">Then brought all Judah the tithe of the grain and the new wine and the oil unto the treasuries.</VERS>\r\n      <VERS vnumber=\"13\">And 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 business was to distribute unto their brethren.</VERS>\r\n      <VERS vnumber=\"14\">Remember 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 observances thereof.</VERS>\r\n      <VERS vnumber=\"15\">In those days saw I in Judah some men treading wine-presses on the sabbath, and bringing in sheaves, and lading asses [therewith]; 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.</VERS>\r\n      <VERS vnumber=\"16\">There dwelt men of Tyre also therein, who brought in fish, and all manner of wares, and sold on the sabbath unto the children of Judah, and in Jerusalem.</VERS>\r\n      <VERS vnumber=\"17\">Then I contended with the nobles of Judah, and said unto them, What evil thing is this that ye do, and profane the sabbath day?</VERS>\r\n      <VERS vnumber=\"18\">Did 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.</VERS>\r\n      <VERS vnumber=\"19\">And it came to pass that, when the gates of Jerusalem began to be dark before the sabbath, I commanded that the doors should be shut, and commanded that they should not be opened till after the sabbath: and some of my servants set I over the gates, that there should no burden be brought in on the sabbath day.</VERS>\r\n      <VERS vnumber=\"20\">So the merchants and sellers of all kind of wares lodged without Jerusalem once or twice.</VERS>\r\n      <VERS vnumber=\"21\">Then 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.</VERS>\r\n      <VERS vnumber=\"22\">And I commanded the Levites that they should purify themselves, and that they should come and keep the gates, to sanctify the sabbath day. Remember unto me, O my God, this also, and spare me according to the greatness of thy lovingkindness.</VERS>\r\n      <VERS vnumber=\"23\">In those days also saw I the Jews that had married women of Ashdod, of Ammon, [and] of Moab:</VERS>\r\n      <VERS vnumber=\"24\">and 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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 for your sons, or for yourselves.</VERS>\r\n      <VERS vnumber=\"26\">Did not Solomon king of Israel sin by these things? yet among many nations was there no king like him, and he was beloved of his God, and God made him king over all Israel: nevertheless even him did foreign women cause to sin.</VERS>\r\n      <VERS vnumber=\"27\">Shall we then hearken unto you to do all this great evil, to trespass against our God in marrying foreign women?</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">Remember them, O my God, because they have defiled the priesthood, and the covenant of the priesthood, and of the Levites.</VERS>\r\n      <VERS vnumber=\"30\">Thus cleansed I them from all foreigners, and appointed charges for the priests and for the Levites, every one in his work;</VERS>\r\n      <VERS vnumber=\"31\">and for the wood-offering, at times appointed, and for the first-fruits. Remember me, O my God, for good.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"17\" bname=\"Esther\" bsname=\"Esth\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">Now it came to pass in the days of Ahasuerus (this is Ahasuerus who reigned from India even unto Ethiopia, over a hundred and seven and twenty provinces),</VERS>\r\n      <VERS vnumber=\"2\">that in those days, when the king Ahasuerus sat on the throne of his kingdom, which was in Shushan the palace,</VERS>\r\n      <VERS vnumber=\"3\">in 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;</VERS>\r\n      <VERS vnumber=\"4\">when he showed the riches of his glorious kingdom and the honor of his excellent majesty many days, even a hundred and fourscore days.</VERS>\r\n      <VERS vnumber=\"5\">And when these days were fulfilled, the king made a feast unto all the people that were present in Shushan the palace, both great and small, seven days, in the court of the garden of the king`s palace.</VERS>\r\n      <VERS vnumber=\"6\">[There were hangings of] white [cloth], [of] green, and [of] blue, fastened with cords of fine linen and purple to silver rings and pillars of marble: the couches were of gold and silver, upon a pavement of red, and white, and yellow, and black marble.</VERS>\r\n      <VERS vnumber=\"7\">And they gave them drink in vessels of gold (the vessels being diverse one from another), and royal wine in abundance, according to the bounty of the king.</VERS>\r\n      <VERS vnumber=\"8\">And the drinking was according to the law; none could compel: for so the king had appointed to all the officers of his house, that they should do according to every man`s pleasure.</VERS>\r\n      <VERS vnumber=\"9\">Also Vashti the queen made a feast for the women in the royal house which belonged to king Ahasuerus.</VERS>\r\n      <VERS vnumber=\"10\">On 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 ministered in the presence of Ahasuerus the king,</VERS>\r\n      <VERS vnumber=\"11\">to bring Vashti the queen before the king with the crown royal, to show the peoples and the princes her beauty; for she was fair to look on.</VERS>\r\n      <VERS vnumber=\"12\">But the queen Vashti refused to come at the king`s commandment by the chamberlains: therefore was the king very wroth, and his anger burned in him.</VERS>\r\n      <VERS vnumber=\"13\">Then the king said to the wise men, who knew the times, (for so was the king`s manner toward all that knew law and judgment;</VERS>\r\n      <VERS vnumber=\"14\">and the next unto him were Carshena, Shethar, Admatha, Tarshish, Meres, Marsena, and Memucan, the seven princes of Persia and Media, who saw the king`s face, and sat first in the kingdom),</VERS>\r\n      <VERS vnumber=\"15\">What shall we do unto the queen Vashti according to law, because she hath not done the bidding of the king Ahasuerus by the chamberlains?</VERS>\r\n      <VERS vnumber=\"16\">And 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 peoples that are in all the provinces of the king Ahasuerus.</VERS>\r\n      <VERS vnumber=\"17\">For this deed of the queen will come abroad unto all women, to make their husbands contemptible 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.</VERS>\r\n      <VERS vnumber=\"18\">And this day will the princesses of Persia and Media who have heard of the deed of the queen say [the like] unto all the king`s princes. So [will there arise] much contempt and wrath.</VERS>\r\n      <VERS vnumber=\"19\">If it please the king, let there go forth 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.</VERS>\r\n      <VERS vnumber=\"20\">And when the king`s decree which he shall make shall be published throughout all his kingdom (for it is great), all the wives will give to their husbands honor, both to great and small.</VERS>\r\n      <VERS vnumber=\"21\">And the saying pleased the king and the princes; and the king did according to the word of Memucan:</VERS>\r\n      <VERS vnumber=\"22\">for 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 should speak according to the language of his people.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">After these things, when the wrath of king Ahasuerus was pacified, he remembered Vashti, and what she had done, and what was decreed against her.</VERS>\r\n      <VERS vnumber=\"2\">Then said the king`s servants that ministered unto him, Let there be fair young virgins sought for the king:</VERS>\r\n      <VERS vnumber=\"3\">and 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 Hegai the king`s chamberlain, keeper of the women; and let their things for purification be given them;</VERS>\r\n      <VERS vnumber=\"4\">and let the maiden that pleaseth the king be queen instead of Vashti. And the thing pleased the king; and he did so.</VERS>\r\n      <VERS vnumber=\"5\">There was a certain Jew in Shushan the palace, whose name was Mordecai, the son of Jair, the son of Shimei, the son of Kish, a Benjamite,</VERS>\r\n      <VERS vnumber=\"6\">who had been carried away from Jerusalem with the captives that had been carried away with Jeconiah king of Judah, whom Nebuchadnezzar the king of Babylon had carried away.</VERS>\r\n      <VERS vnumber=\"7\">And he brought up Hadassah, that is, Esther, his uncle`s daughter: for she had neither father nor mother, and the maiden was fair and beautiful; and when her father and mother were dead, Mordecai took her for his own daughter.</VERS>\r\n      <VERS vnumber=\"8\">So 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 taken into the king`s house, to the custody of Hegai, keeper of the women.</VERS>\r\n      <VERS vnumber=\"9\">And the maiden pleased him, and she obtained kindness of him; and he speedily gave her her things for purification, with her portions, and the seven maidens who were meet to be given her out of the king`s house: and he removed her and her maidens to the best place of the house of the women.</VERS>\r\n      <VERS vnumber=\"10\">Esther had not made known her people nor her kindred; for Mordecai had charged her that she should not make it known.</VERS>\r\n      <VERS vnumber=\"11\">And Mordecai walked every day before the court of the women`s house, to know how Esther did, and what would become of her.</VERS>\r\n      <VERS vnumber=\"12\">Now when the turn of every maiden was come to go in to king Ahasuerus, after that it had been done to her according to the law for the women twelve months (for so were the days of their purifications accomplished, [to wit], six months with oil of myrrh, and six months with sweet odors and with the things for the purifying of the women),</VERS>\r\n      <VERS vnumber=\"13\">then in this wise came the 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.</VERS>\r\n      <VERS vnumber=\"14\">In 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, who kept the concubines: she came in unto the king no more, except the king delighted in her, and she were called by name.</VERS>\r\n      <VERS vnumber=\"15\">Now 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 favor in the sight of all them that looked upon her.</VERS>\r\n      <VERS vnumber=\"16\">So 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.</VERS>\r\n      <VERS vnumber=\"17\">And the king loved Esther above all the women, and she obtained favor and kindness 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.</VERS>\r\n      <VERS vnumber=\"18\">Then 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 bounty of the king.</VERS>\r\n      <VERS vnumber=\"19\">And when the virgins were gathered together the second time, then Mordecai was sitting in the king`s gate.</VERS>\r\n      <VERS vnumber=\"20\">Esther had not yet made known 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.</VERS>\r\n      <VERS vnumber=\"21\">In those days, while Mordecai was sitting in the king`s gate, two of the king`s chamberlains, Bigthan and Teresh, of those that kept the threshold, were wroth, and sought to lay hands on the king Ahasuerus.</VERS>\r\n      <VERS vnumber=\"22\">And the thing became known to Mordecai, who showed it unto Esther the queen; and Esther told the king [thereof] in Mordecai`s name.</VERS>\r\n      <VERS vnumber=\"23\">And when inquisition was made of the matter, and it was found to be so, they were both hanged on a tree: and it was written in the book of the chronicles before the king.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">After 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.</VERS>\r\n      <VERS vnumber=\"2\">And all the king`s servants, that were in the king`s gate, bowed down, and did reverence to Haman; for the king had so commanded concerning him. But Mordecai bowed not down, nor did him reverence.</VERS>\r\n      <VERS vnumber=\"3\">Then the king`s servants, that were in the king`s gate, said unto Mordecai, Why transgressest thou the king`s commandment?</VERS>\r\n      <VERS vnumber=\"4\">Now 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.</VERS>\r\n      <VERS vnumber=\"5\">And when Haman saw that Mordecai bowed not down, nor did him reverence, then was Haman full of wrath.</VERS>\r\n      <VERS vnumber=\"6\">But he thought scorn to lay hands on Mordecai alone; for they had made known to 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.</VERS>\r\n      <VERS vnumber=\"7\">In the first month, which 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], which is the month Adar.</VERS>\r\n      <VERS vnumber=\"8\">And Haman said unto king Ahasuerus, There is a certain people scattered abroad and dispersed among the peoples in all the provinces of thy kingdom; and their laws are diverse from [those of] every people; neither keep they the king`s laws: therefore it is not for the king`s profit to suffer them.</VERS>\r\n      <VERS vnumber=\"9\">If it please the king, let it be written that they be destroyed: and I will pay ten thousand talents of silver into the hands of those that have the charge of the [king`s] business, to bring it into the king`s treasuries.</VERS>\r\n      <VERS vnumber=\"10\">And the king took his ring from his hand, and gave it unto Haman the son of Hammedatha the Agagite, the Jews` enemy.</VERS>\r\n      <VERS vnumber=\"11\">And the king said unto Haman, The silver is given to thee, the people also, to do with them as it seemeth good to thee.</VERS>\r\n      <VERS vnumber=\"12\">Then were the king`s scribes called in the first month, on the thirteenth day thereof; and there was written according to all that Haman commanded unto the king`s satraps, and to the governors that were over every province, and to the princes of every people, to every province according to the writing thereof, and to every people after their language; in the name of king Ahasuerus was it written, and it was sealed with the king`s ring.</VERS>\r\n      <VERS vnumber=\"13\">And letters were sent by posts into all the king`s provinces, to destroy, to slay, 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.</VERS>\r\n      <VERS vnumber=\"14\">A copy of the writing, that the decree should be given out in every province, was published unto all the peoples, that they should be ready against that day.</VERS>\r\n      <VERS vnumber=\"15\">The posts went forth in haste by the king`s commandment, and the decree was given out in Shushan the palace. And the king and Haman sat down to drink; but the city of Shushan was perplexed.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">Now when Mordecai knew 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;</VERS>\r\n      <VERS vnumber=\"2\">and he came even before the king`s gate: for none might enter within the king`s gate clothed with sackcloth.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And Esther`s maidens and her chamberlains came and told it her; and the queen was exceedingly grieved: and she sent raiment to clothe Mordecai, and to take his sackcloth from off him; but he received it not.</VERS>\r\n      <VERS vnumber=\"5\">Then called Esther for Hathach, one of the king`s chamberlains, whom he had appointed to attend upon her, and charged him to go to Mordecai, to know what this was, and why it was.</VERS>\r\n      <VERS vnumber=\"6\">So Hathach went forth to Mordecai unto the broad place of the city, which was before the king`s gate.</VERS>\r\n      <VERS vnumber=\"7\">And Mordecai told him of all that had happened unto him, and the exact sum of the money that Haman had promised to pay to the king`s treasuries for the Jews, to destroy them.</VERS>\r\n      <VERS vnumber=\"8\">Also he gave him the copy of the writing of the decree that was given out in Shushan to destroy them, to show 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.</VERS>\r\n      <VERS vnumber=\"9\">And Hathach came and told Esther the words of Mordecai.</VERS>\r\n      <VERS vnumber=\"10\">Then Esther spake unto Hathach, and gave him a message unto Mordecai [saying]:</VERS>\r\n      <VERS vnumber=\"11\">All the king`s servants, and the people of the king`s provinces, do know, that whosoever, whether man or woman, shall come unto the king into the inner court, who is not called, there is one law for him, that he be put to death, except those 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.</VERS>\r\n      <VERS vnumber=\"12\">And they told to Mordecai Esther`s words.</VERS>\r\n      <VERS vnumber=\"13\">Then Mordecai bade them return answer unto Esther, Think not with thyself that thou shalt escape in the king`s house, more than all the Jews.</VERS>\r\n      <VERS vnumber=\"14\">For if thou altogether holdest thy peace at this time, then will relief and deliverance arise to the Jews from another place, but thou and thy father`s house will perish: and who knoweth whether thou art not come to the kingdom for such a time as this?</VERS>\r\n      <VERS vnumber=\"15\">Then Esther bade them return answer unto Mordecai,</VERS>\r\n      <VERS vnumber=\"16\">Go, 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 in like manner; and so will I go in unto the king, which is not according to the law: and if I perish, I perish.</VERS>\r\n      <VERS vnumber=\"17\">So Mordecai went his way, and did according to all that Esther had commanded him.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">Now 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 entrance of the house.</VERS>\r\n      <VERS vnumber=\"2\">And it was so, when the king saw Esther the queen standing in the court, that she obtained favor 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.</VERS>\r\n      <VERS vnumber=\"3\">Then said the king unto her, What wilt thou, queen Esther? and what is thy request? it shall be given thee even to the half of the kingdom.</VERS>\r\n      <VERS vnumber=\"4\">And Esther said, If it seem good unto the king, let the king and Haman come this day unto the banquet that I have prepared for him.</VERS>\r\n      <VERS vnumber=\"5\">Then the king said, Cause Haman to make haste, that it may be done as Esther hath said. So the king and Haman came to the banquet that Esther had prepared.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">Then answered Esther, and said, My petition and my request is:</VERS>\r\n      <VERS vnumber=\"8\">if I have found favor 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.</VERS>\r\n      <VERS vnumber=\"9\">Then went Haman forth that day joyful and glad of heart: but when Haman saw Mordecai in the king`s gate, that he stood not up nor moved for him, he was filled with wrath against Mordecai.</VERS>\r\n      <VERS vnumber=\"10\">Nevertheless Haman refrained himself, and went home; and he sent and fetched his friends and Zeresh his wife.</VERS>\r\n      <VERS vnumber=\"11\">And Haman recounted unto them 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.</VERS>\r\n      <VERS vnumber=\"12\">Haman 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 also am I invited by her together with the king.</VERS>\r\n      <VERS vnumber=\"13\">Yet all this availeth me nothing, so long as I see Mordecai the Jew sitting at the king`s gate.</VERS>\r\n      <VERS vnumber=\"14\">Then said Zeresh his wife and all his friends unto him, Let a gallows be made fifty cubits high, and in the morning 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">On 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.</VERS>\r\n      <VERS vnumber=\"2\">And it was found written, that Mordecai had told of Bigthana and Teresh, two of the king`s chamberlains, of those that kept the threshold, who had sought to lay hands on the king Ahasuerus.</VERS>\r\n      <VERS vnumber=\"3\">And the king said, What honor and dignity hath been bestowed on Mordecai for this? Then said the king`s servants that ministered unto him, There is nothing done for him.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And the king`s servants said unto him, Behold, Haman standeth in the court. And the king said, Let him come in.</VERS>\r\n      <VERS vnumber=\"6\">So Haman came in. And the king said unto him, What shall be done unto the man whom the king delighteth to honor? Now Haman said in his heart, To whom would the king delight to do honor more than to myself?</VERS>\r\n      <VERS vnumber=\"7\">And Haman said unto the king, For the man whom the king delighteth to honor,</VERS>\r\n      <VERS vnumber=\"8\">let royal apparel be brought which the king useth to wear, and the horse that the king rideth upon, and on the head of which a crown royal is set:</VERS>\r\n      <VERS vnumber=\"9\">and let the apparel and the horse be delivered to the hand of one of the king`s most noble princes, that they may array the man therewith whom the king delighteth to honor, and cause him to ride 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 honor.</VERS>\r\n      <VERS vnumber=\"10\">Then 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.</VERS>\r\n      <VERS vnumber=\"11\">Then took Haman the apparel and the horse, and arrayed Mordecai, and caused him to ride through the street of the city, and proclaimed before him, Thus shall it be done unto the man whom the king delighteth to honor.</VERS>\r\n      <VERS vnumber=\"12\">And Mordecai came again to the king`s gate. But Haman hasted to his house, mourning and having his head covered.</VERS>\r\n      <VERS vnumber=\"13\">And Haman recounted unto Zeresh his wife and all his friends everything that had befallen him. Then said his wise men and Zeresh his wife unto him, If Mordecai, before whom thou hast begun to fall, be of the seed of the Jews, thou shalt not prevail against him, but shalt surely fall before him.</VERS>\r\n      <VERS vnumber=\"14\">While they were yet talking with him, came the king`s chamberlains, and hasted to bring Haman unto the banquet that Esther had prepared.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">So the king and Haman came to banquet with Esther the queen.</VERS>\r\n      <VERS vnumber=\"2\">And 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? even to the half of the kingdom it shall be performed.</VERS>\r\n      <VERS vnumber=\"3\">Then Esther the queen answered and said, If I have found favor 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:</VERS>\r\n      <VERS vnumber=\"4\">for 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 peace, although the adversary could not have compensated for the king`s damage.</VERS>\r\n      <VERS vnumber=\"5\">Then spake the king Ahasuerus and said unto Esther the queen, Who is he, and where is he, that durst presume in his heart to do so?</VERS>\r\n      <VERS vnumber=\"6\">And Esther said, An adversary and an enemy, even this wicked Haman. Then Haman was afraid before the king and the queen.</VERS>\r\n      <VERS vnumber=\"7\">And the king arose in his wrath from the banquet of wine [and 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.</VERS>\r\n      <VERS vnumber=\"8\">Then the king returned out of the palace garden into the place of the banquet of wine; and Haman was fallen upon the couch whereon Esther was. Then said the king, Will he even force the queen before me in the house? As the word went out of the king`s mouth, they covered Haman`s face.</VERS>\r\n      <VERS vnumber=\"9\">Then said Harbonah, one of the chamberlains that were before the king, Behold also, the gallows fifty cubits high, which Haman hath made for Mordecai, who spake good for the king, standeth in the house of Haman. And the king said, Hang him thereon.</VERS>\r\n      <VERS vnumber=\"10\">So they hanged Haman on the gallows that he had prepared for Mordecai. Then was the king`s wrath pacified.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">On 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">Then the king held out to Esther the golden sceptre. So Esther arose, and stood before the king.</VERS>\r\n      <VERS vnumber=\"5\">And she said, If it please the king, and if I have found favor 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 that are in all the king`s provinces:</VERS>\r\n      <VERS vnumber=\"6\">for 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?</VERS>\r\n      <VERS vnumber=\"7\">Then 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.</VERS>\r\n      <VERS vnumber=\"8\">Write ye also to the Jews, as it pleaseth 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.</VERS>\r\n      <VERS vnumber=\"9\">Then were the king`s scribes called at that time, in the third 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 satraps, and the governors and princes of the provinces which are from India unto Ethiopia, a 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.</VERS>\r\n      <VERS vnumber=\"10\">And he wrote the name of king Ahasuerus, and sealed it with the king`s ring, and sent letters by post on horseback, riding on swift steeds that were used in the king`s service, bred of the stud:</VERS>\r\n      <VERS vnumber=\"11\">wherein the king granted the Jews that 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, [their] little ones and women, and to take the spoil of them for a prey,</VERS>\r\n      <VERS vnumber=\"12\">upon one day in all the provinces of king Ahasuerus, [namely], upon the thirteenth [day] of the twelfth month, which is the month Adar.</VERS>\r\n      <VERS vnumber=\"13\">A copy of the writing, that the decree should be given out in every province, was published unto all the peoples, and that the Jews should be ready against that day to avenge themselves on their enemies.</VERS>\r\n      <VERS vnumber=\"14\">So the posts that rode upon swift steeds that were used in the king`s service went out, being hastened and pressed on by the king`s commandment; and the decree was given out in Shushan the palace.</VERS>\r\n      <VERS vnumber=\"15\">And Mordecai went forth from the presence of the king in royal apparel of blue and white, and with a great crown of gold, and with a robe of fine linen and purple: and the city of Shushan shouted and was glad.</VERS>\r\n      <VERS vnumber=\"16\">The Jews had light and gladness, and joy and honor.</VERS>\r\n      <VERS vnumber=\"17\">And in every province, and in every city, whithersoever the king`s commandment and his decree came, the Jews had gladness and joy, a feast and a good day. And many from among the peoples of the land became Jews; for the fear of the Jews was fallen upon them.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">Now in the twelfth month, which 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, on the day that the enemies of the Jews hoped to have rule over them, (whereas it was turned to the contrary, that the Jews had rule over them that hated them,)</VERS>\r\n      <VERS vnumber=\"2\">the 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 was fallen upon all the peoples.</VERS>\r\n      <VERS vnumber=\"3\">And all the princes of the provinces, and the satraps, and the governors, and they that did the king`s business, helped the Jews; because the fear of Mordecai was fallen upon them.</VERS>\r\n      <VERS vnumber=\"4\">For Mordecai was great in the king`s house, and his fame went forth throughout all the provinces; for the man Mordecai waxed greater and greater.</VERS>\r\n      <VERS vnumber=\"5\">And the Jews smote all their enemies with the stroke of the sword, and with slaughter and destruction, and did what they would unto them that hated them.</VERS>\r\n      <VERS vnumber=\"6\">And in Shushan the palace the Jews slew and destroyed five hundred men.</VERS>\r\n      <VERS vnumber=\"7\">And Parshandatha, and Dalphon, and Aspatha,</VERS>\r\n      <VERS vnumber=\"8\">and Poratha, and Adalia, and Aridatha,</VERS>\r\n      <VERS vnumber=\"9\">and Parmashta, and Arisai, and Aridai, and Vaizatha,</VERS>\r\n      <VERS vnumber=\"10\">the ten sons of Haman the son of Hammedatha, the Jew`s enemy, slew they; but on the spoil they laid not their hand.</VERS>\r\n      <VERS vnumber=\"11\">On that day the number of those that were slain in Shushan the palace was brought before the king.</VERS>\r\n      <VERS vnumber=\"12\">And 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 then 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.</VERS>\r\n      <VERS vnumber=\"13\">Then said Esther, If it please the king, let it be granted to the Jews that 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.</VERS>\r\n      <VERS vnumber=\"14\">And the king commanded it so to be done: and a decree was given out in Shushan; and they hanged Haman`s ten sons.</VERS>\r\n      <VERS vnumber=\"15\">And the Jews that were in Shushan gathered themselves together on the fourteenth day also of the month Adar, and slew three hundred men in Shushan; but on the spoil they laid not their hand.</VERS>\r\n      <VERS vnumber=\"16\">And 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 them that hated them seventy and five thousand; but on the spoil they laid not their hand.</VERS>\r\n      <VERS vnumber=\"17\">[This was done] on the thirteenth day of the month Adar; and on the fourteenth day of the same they rested, and made it a day of feasting and gladness.</VERS>\r\n      <VERS vnumber=\"18\">But the Jews that were in 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.</VERS>\r\n      <VERS vnumber=\"19\">Therefore do the Jews of the villages, that dwell in the unwalled towns, make the fourteenth day of the month Adar [a day of] gladness and feasting, and a good day, and of sending portions one to another.</VERS>\r\n      <VERS vnumber=\"20\">And 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,</VERS>\r\n      <VERS vnumber=\"21\">to enjoin them that they should keep the fourteenth day of the month Adar, and the fifteenth day of the same, yearly,</VERS>\r\n      <VERS vnumber=\"22\">as the days wherein the Jews had rest from their enemies, and the month which was turned unto them from sorrow to gladness, and from mourning into a good day; that they should make them days of feasting and gladness, and of sending portions one to another, and gifts to the poor.</VERS>\r\n      <VERS vnumber=\"23\">And the Jews undertook to do as they had begun, and as Mordecai had written unto them;</VERS>\r\n      <VERS vnumber=\"24\">because Haman the son of Hammedatha, the Agagite, the enemy of all the Jews, had plotted against the Jews to destroy them, and had cast Pur, that is the lot, to consume them, and to destroy them;</VERS>\r\n      <VERS vnumber=\"25\">but when [the matter] came before the king, he commanded by letters that his wicked device, which he had devised against the Jews, should return upon his own head, and that he and his sons should be hanged on the gallows.</VERS>\r\n      <VERS vnumber=\"26\">Wherefore they called these days Purim, after the name of Pur. Therefore because of all the words of this letter, and of that which they had seen concerning this matter, and that which had come unto them,</VERS>\r\n      <VERS vnumber=\"27\">the Jews ordained, and took upon them, and upon their seed, and upon all such as joined themselves unto them, so that it should not fail, that they would keep these two days according to the writing thereof, and according to the appointed time thereof, every year;</VERS>\r\n      <VERS vnumber=\"28\">and 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 remembrance of them perish from their seed.</VERS>\r\n      <VERS vnumber=\"29\">Then Esther the queen, the daughter of Abihail, and Mordecai the Jew, wrote with all authority to confirm this second letter of Purim.</VERS>\r\n      <VERS vnumber=\"30\">And he sent letters unto all the Jews, to the hundred twenty and seven provinces of the kingdom of Ahasuerus, [with] words of peace and truth,</VERS>\r\n      <VERS vnumber=\"31\">to confirm these days of Purim in their appointed times, according as Mordecai the Jew and Esther the queen had enjoined them, and as they had ordained for themselves and for their seed, in the matter of the fastings and their cry.</VERS>\r\n      <VERS vnumber=\"32\">And the commandment of Esther confirmed these matters of Purim; and it was written in the book.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">And the king Ahasuerus laid a tribute upon the land, and upon the isles of the sea.</VERS>\r\n      <VERS vnumber=\"2\">And all the acts of his power and of his might, and the full account 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?</VERS>\r\n      <VERS vnumber=\"3\">For Mordecai the Jew was next unto king Ahasuerus, and great among the Jews, and accepted of the multitude of his brethren, seeking the good of his people, and speaking peace to all his seed.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"18\" bname=\"Job\" bsname=\"Job\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">There 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 turned away from evil.</VERS>\r\n      <VERS vnumber=\"2\">And there were born unto him seven sons and three daughters.</VERS>\r\n      <VERS vnumber=\"3\">His 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 children of the east.</VERS>\r\n      <VERS vnumber=\"4\">And his sons went and held a feast in the house of each one upon his day; and they sent and called for their three sisters to eat and to drink with them.</VERS>\r\n      <VERS vnumber=\"5\">And 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 renounced God in their hearts. Thus did Job continually.</VERS>\r\n      <VERS vnumber=\"6\">Now it came to pass on the day when the sons of God came to present themselves before Jehovah, that Satan also came among them.</VERS>\r\n      <VERS vnumber=\"7\">And Jehovah said unto Satan, Whence comest thou? Then Satan answered Jehovah, and said, From going to and fro in the earth, and from walking up and down in it.</VERS>\r\n      <VERS vnumber=\"8\">And Jehovah said unto Satan, Hast thou considered my servant Job? for there is none like him in the earth, a perfect and an upright man, one that feareth God, and turneth away from evil.</VERS>\r\n      <VERS vnumber=\"9\">Then Satan answered Jehovah, and said, Doth Job fear God for nought?</VERS>\r\n      <VERS vnumber=\"10\">Hast not thou made a 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.</VERS>\r\n      <VERS vnumber=\"11\">But put forth thy hand now, and touch all that he hath, and he will renounce thee to thy face.</VERS>\r\n      <VERS vnumber=\"12\">And Jehovah said unto Satan, Behold, all that he hath is in thy power; only upon himself put not forth thy hand. So Satan went forth from the presence of Jehovah.</VERS>\r\n      <VERS vnumber=\"13\">And it fell on a day when his sons and his daughters were eating and drinking wine in their eldest brother`s house,</VERS>\r\n      <VERS vnumber=\"14\">that there came a messenger unto Job, and said, The oxen were plowing, and the asses feeding beside them;</VERS>\r\n      <VERS vnumber=\"15\">and 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.</VERS>\r\n      <VERS vnumber=\"16\">While 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.</VERS>\r\n      <VERS vnumber=\"17\">While he was yet speaking, there came also another, and said, The Chaldeans made three bands, and fell upon the camels, and have taken them away, yea, and slain the servants with the edge of the sword; and I only am escaped alone to tell thee.</VERS>\r\n      <VERS vnumber=\"18\">While 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;</VERS>\r\n      <VERS vnumber=\"19\">and, 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.</VERS>\r\n      <VERS vnumber=\"20\">Then Job arose, and rent his robe, and shaved his head, and fell down upon the ground, and worshipped;</VERS>\r\n      <VERS vnumber=\"21\">and he said, Naked came I out of my mother`s womb, and naked shall I return thither: Jehovah gave, and Jehovah hath taken away; blessed be the name of Jehovah.</VERS>\r\n      <VERS vnumber=\"22\">In all this Job sinned not, nor charged God foolishly.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">Again it came to pass on the day when the sons of God came to present themselves before Jehovah, that Satan came also among them to present himself before Jehovah.</VERS>\r\n      <VERS vnumber=\"2\">And Jehovah said unto Satan, From whence comest thou? And Satan answered Jehovah, and said, From going to and fro in the earth, and from walking up and down in it.</VERS>\r\n      <VERS vnumber=\"3\">And Jehovah said unto Satan, Hast thou considered my servant Job? for there is none like him in the earth, a perfect and an upright man, one that feareth God, and turneth away from evil: and he still holdeth fast his integrity, although thou movedst me against him, to destroy him without cause.</VERS>\r\n      <VERS vnumber=\"4\">And Satan answered Jehovah, and said, Skin for skin, yea, all that a man hath will he give for his life.</VERS>\r\n      <VERS vnumber=\"5\">But put forth thy hand now, and touch his bone and his flesh, and he will renounce thee to thy face.</VERS>\r\n      <VERS vnumber=\"6\">And Jehovah said unto Satan, Behold, he is in thy hand; only spare his life.</VERS>\r\n      <VERS vnumber=\"7\">So Satan went forth from the presence of Jehovah, and smote Job with sore boils from the sole of his foot unto his crown.</VERS>\r\n      <VERS vnumber=\"8\">And he took him a potsherd to scrape himself therewith; and he sat among the ashes.</VERS>\r\n      <VERS vnumber=\"9\">Then said his wife unto him, Dost thou still hold fast thine integrity? renounce God, and die.</VERS>\r\n      <VERS vnumber=\"10\">But 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.</VERS>\r\n      <VERS vnumber=\"11\">Now 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, and they made an appointment together to come to bemoan him and to comfort him.</VERS>\r\n      <VERS vnumber=\"12\">And 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 robe, and sprinkled dust upon their heads toward heaven.</VERS>\r\n      <VERS vnumber=\"13\">So 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">After this opened Job his mouth, and cursed his day.</VERS>\r\n      <VERS vnumber=\"2\">And Job answered and said:</VERS>\r\n      <VERS vnumber=\"3\">Let the day perish wherein I was born, And the night which said, There is a man-child conceived.</VERS>\r\n      <VERS vnumber=\"4\">Let that day be darkness; Let not God from above seek for it, Neither let the light shine upon it.</VERS>\r\n      <VERS vnumber=\"5\">Let darkness and the shadow of death claim it for their       own; Let a cloud dwell upon it; Let all that maketh black the day terrify it.</VERS>\r\n      <VERS vnumber=\"6\">As for that night, let thick darkness seize upon it: Let it not rejoice among the days of the year; Let it not come into the number of the months.</VERS>\r\n      <VERS vnumber=\"7\">Lo, let that night be barren; Let no joyful voice come therein.</VERS>\r\n      <VERS vnumber=\"8\">Let them curse it that curse the day, Who are ready to rouse up leviathan.</VERS>\r\n      <VERS vnumber=\"9\">Let the stars of the twilight thereof be dark: Let it look for light, but have none; Neither let it behold the eyelids of the morning:</VERS>\r\n      <VERS vnumber=\"10\">Because it shut not up the doors of my [mother`s] womb, Nor hid trouble from mine eyes.</VERS>\r\n      <VERS vnumber=\"11\">Why died I not from the womb? Why did I not give up the ghost when my mother bare me?</VERS>\r\n      <VERS vnumber=\"12\">Why did the knees receive me? Or why the breast, that I should suck?</VERS>\r\n      <VERS vnumber=\"13\">For now should I have lain down and been quiet; I should have slept; then had I been at rest,</VERS>\r\n      <VERS vnumber=\"14\">With kings and counsellors of the earth, Who built up waste places for themselves;</VERS>\r\n      <VERS vnumber=\"15\">Or with princes that had gold, Who filled their houses with silver:</VERS>\r\n      <VERS vnumber=\"16\">Or as a hidden untimely birth I had not been, As infants that never saw light.</VERS>\r\n      <VERS vnumber=\"17\">There the wicked cease from troubling; And there the weary are at rest.</VERS>\r\n      <VERS vnumber=\"18\">There the prisoners are at ease together; They hear not the voice of the taskmaster.</VERS>\r\n      <VERS vnumber=\"19\">The small and the great are there: And the servant is free from his master.</VERS>\r\n      <VERS vnumber=\"20\">Wherefore is light given to him that is in misery, And life unto the bitter in soul;</VERS>\r\n      <VERS vnumber=\"21\">Who long for death, but it cometh not, And dig for it more than for hid treasures;</VERS>\r\n      <VERS vnumber=\"22\">Who rejoice exceedingly, And are glad, when they can find the grave?</VERS>\r\n      <VERS vnumber=\"23\">[Why is light given] to a man whose way is hid, And whom God hath hedged in?</VERS>\r\n      <VERS vnumber=\"24\">For my sighing cometh before I eat, And my groanings are poured out like water.</VERS>\r\n      <VERS vnumber=\"25\">For the thing which I fear cometh upon me, And that which I am afraid of cometh unto me.</VERS>\r\n      <VERS vnumber=\"26\">I am not at ease, neither am I quiet, neither have I rest; But trouble cometh.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">Then answered Eliphaz the Temanite, and said,</VERS>\r\n      <VERS vnumber=\"2\">If one assay to commune with thee, wilt thou be grieved? But who can withhold himself from speaking?</VERS>\r\n      <VERS vnumber=\"3\">Behold, thou hast instructed many, And thou hast strengthened the weak hands.</VERS>\r\n      <VERS vnumber=\"4\">Thy words have upholden him that was falling, And thou hast made firm the feeble knees.</VERS>\r\n      <VERS vnumber=\"5\">But now it is come unto thee, and thou faintest; It toucheth thee, and thou art troubled.</VERS>\r\n      <VERS vnumber=\"6\">Is not thy fear [of God] thy confidence, [And] the integrity of thy ways thy hope?</VERS>\r\n      <VERS vnumber=\"7\">Remember, I pray thee, who [ever] perished, being innocent? Or where were the upright cut off?</VERS>\r\n      <VERS vnumber=\"8\">According as I have seen, they that plow iniquity, And sow trouble, reap the same.</VERS>\r\n      <VERS vnumber=\"9\">By the breath of God they perish, And by the blast of his anger are they consumed.</VERS>\r\n      <VERS vnumber=\"10\">The roaring of the lion, and the voice of the fierce lion, And the teeth of the young lions, are broken.</VERS>\r\n      <VERS vnumber=\"11\">The old lion perisheth for lack of prey, And the whelps of the lioness are scattered abroad.</VERS>\r\n      <VERS vnumber=\"12\">Now a thing was secretly brought to me, And mine ear received a whisper thereof.</VERS>\r\n      <VERS vnumber=\"13\">In thoughts from the visions of the night, When deep sleep falleth on men,</VERS>\r\n      <VERS vnumber=\"14\">Fear came upon me, and trembling, Which made all my bones to shake.</VERS>\r\n      <VERS vnumber=\"15\">Then a spirit passed before my face; The hair of my flesh stood up.</VERS>\r\n      <VERS vnumber=\"16\">It stood still, but I could not discern the appearance       thereof; A form was before mine eyes: [There was] silence, and I heard a voice, [saying],</VERS>\r\n      <VERS vnumber=\"17\">Shall mortal man be more just than God? Shall a man be more pure than his Maker?</VERS>\r\n      <VERS vnumber=\"18\">Behold, he putteth no trust in his servants; And his angels he chargeth with folly:</VERS>\r\n      <VERS vnumber=\"19\">How much more them that dwell in houses of clay, Whose foundation is in the dust, Who are crushed before the moth!</VERS>\r\n      <VERS vnumber=\"20\">Betwixt morning and evening they are destroyed: They perish for ever without any regarding it.</VERS>\r\n      <VERS vnumber=\"21\">Is not their tent-cord plucked up within them? They die, and that without wisdom.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">Call now; is there any that will answer thee? And to which of the holy ones wilt thou turn?</VERS>\r\n      <VERS vnumber=\"2\">For vexation killeth the foolish man, And jealousy slayeth the silly one.</VERS>\r\n      <VERS vnumber=\"3\">I have seen the foolish taking root: But suddenly I cursed his habitation.</VERS>\r\n      <VERS vnumber=\"4\">His children are far from safety, And they are crushed in the gate, Neither is there any to deliver them:</VERS>\r\n      <VERS vnumber=\"5\">Whose harvest the hungry eateth up, And taketh it even out of the thorns; And the snare gapeth for their substance.</VERS>\r\n      <VERS vnumber=\"6\">For affliction cometh not forth from the dust, Neither doth trouble spring out of the ground;</VERS>\r\n      <VERS vnumber=\"7\">But man is born unto trouble, As the sparks fly upward.</VERS>\r\n      <VERS vnumber=\"8\">But as for me, I would seek unto God, And unto God would I commit my cause;</VERS>\r\n      <VERS vnumber=\"9\">Who doeth great things and unsearchable, Marvellous things without number:</VERS>\r\n      <VERS vnumber=\"10\">Who giveth rain upon the earth, And sendeth waters upon the fields;</VERS>\r\n      <VERS vnumber=\"11\">So that he setteth up on high those that are low, And those that mourn are exalted to safety.</VERS>\r\n      <VERS vnumber=\"12\">He frustrateth the devices of the crafty, So that their hands cannot perform their enterprise.</VERS>\r\n      <VERS vnumber=\"13\">He taketh the wise in their own craftiness; And the counsel of the cunning is carried headlong.</VERS>\r\n      <VERS vnumber=\"14\">They meet with darkness in the day-time, And grope at noonday as in the night.</VERS>\r\n      <VERS vnumber=\"15\">But he saveth from the sword of their mouth, Even the needy from the hand of the mighty.</VERS>\r\n      <VERS vnumber=\"16\">So the poor hath hope, And iniquity stoppeth her mouth.</VERS>\r\n      <VERS vnumber=\"17\">Behold, happy is the man whom God correcteth: Therefore despise not thou the chastening of the Almighty.</VERS>\r\n      <VERS vnumber=\"18\">For he maketh sore, and bindeth up; He woundeth, and his hands make whole.</VERS>\r\n      <VERS vnumber=\"19\">He will deliver thee in six troubles; Yea, in seven there shall no evil touch thee.</VERS>\r\n      <VERS vnumber=\"20\">In famine he will redeem thee from death; And in war from the power of the sword.</VERS>\r\n      <VERS vnumber=\"21\">Thou shalt be hid from the scourge of the tongue; Neither shalt thou be afraid of destruction when it cometh.</VERS>\r\n      <VERS vnumber=\"22\">At destruction and dearth thou shalt laugh; Neither shalt thou be afraid of the beasts of the earth.</VERS>\r\n      <VERS vnumber=\"23\">For thou shalt be in league with the stones of the field; And the beasts of the field shall be at peace with thee.</VERS>\r\n      <VERS vnumber=\"24\">And thou shalt know that thy tent is in peace; And thou shalt visit thy fold, and shalt miss nothing.</VERS>\r\n      <VERS vnumber=\"25\">Thou shalt know also that thy seed shall be great, And thine offspring as the grass of the earth.</VERS>\r\n      <VERS vnumber=\"26\">Thou shalt come to thy grave in a full age, Like as a shock of grain cometh in in its season.</VERS>\r\n      <VERS vnumber=\"27\">Lo this, we have searched it, so it is; Hear it, and know thou it for thy good.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">Then Job answered and said,</VERS>\r\n      <VERS vnumber=\"2\">Oh that my vexation were but weighed, And all my calamity laid in the balances!</VERS>\r\n      <VERS vnumber=\"3\">For now it would be heavier than the sand of the seas: Therefore have my words been rash.</VERS>\r\n      <VERS vnumber=\"4\">For the arrows of the Almighty are within me, The poison whereof my spirit drinketh up: The terrors of God do set themselves in array against me.</VERS>\r\n      <VERS vnumber=\"5\">Doth the wild ass bray when he hath grass? Or loweth the ox over his fodder?</VERS>\r\n      <VERS vnumber=\"6\">Can that which hath no savor be eaten without salt? Or is there any taste in the white of an egg?</VERS>\r\n      <VERS vnumber=\"7\">My soul refuseth to touch [them]; They are as loathsome food to me.</VERS>\r\n      <VERS vnumber=\"8\">Oh that I might have my request; And that God would grant [me] the thing that I long for!</VERS>\r\n      <VERS vnumber=\"9\">Even that it would please God to crush me; That he would let loose his hand, and cut me off!</VERS>\r\n      <VERS vnumber=\"10\">And be it still my consolation, Yea, let me exult in pain that spareth not, That I have not denied the words of the Holy One.</VERS>\r\n      <VERS vnumber=\"11\">What is my strength, that I should wait? And what is mine end, that I should be patient?</VERS>\r\n      <VERS vnumber=\"12\">Is my strength the strength of stones? Or is my flesh of brass?</VERS>\r\n      <VERS vnumber=\"13\">Is it not that I have no help in me, And that wisdom is driven quite from me?</VERS>\r\n      <VERS vnumber=\"14\">To him that is ready to faint kindness [should be showed]       from his friend; Even to him that forsaketh the fear of the Almighty.</VERS>\r\n      <VERS vnumber=\"15\">My brethren have dealt deceitfully as a brook, As the channel of brooks that pass away;</VERS>\r\n      <VERS vnumber=\"16\">Which are black by reason of the ice, [And] wherein the snow hideth itself:</VERS>\r\n      <VERS vnumber=\"17\">What time they wax warm, they vanish; When it is hot, they are consumed out of their place.</VERS>\r\n      <VERS vnumber=\"18\">The caravans [that travel] by the way of them turn aside; They go up into the waste, and perish.</VERS>\r\n      <VERS vnumber=\"19\">The caravans of Tema looked, The companies of Sheba waited for them.</VERS>\r\n      <VERS vnumber=\"20\">They were put to shame because they had hoped; They came thither, and were confounded.</VERS>\r\n      <VERS vnumber=\"21\">For now ye are nothing; Ye see a terror, and are afraid.</VERS>\r\n      <VERS vnumber=\"22\">Did I say, Give unto me? Or, Offer a present for me of your substance?</VERS>\r\n      <VERS vnumber=\"23\">Or, Deliver me from the adversary`s hand? Or, Redeem me from the hand of the oppressors?</VERS>\r\n      <VERS vnumber=\"24\">Teach me, and I will hold my peace; And cause me to understand wherein I have erred.</VERS>\r\n      <VERS vnumber=\"25\">How forcible are words of uprightness! But your reproof, what doth it reprove?</VERS>\r\n      <VERS vnumber=\"26\">Do ye think to reprove words, Seeing that the speeches of one that is desperate are as wind?</VERS>\r\n      <VERS vnumber=\"27\">Yea, ye would cast [lots] upon the fatherless, And make merchandise of your friend.</VERS>\r\n      <VERS vnumber=\"28\">Now therefore be pleased to look upon me; For surely I shall not lie to your face.</VERS>\r\n      <VERS vnumber=\"29\">Return, I pray you, let there be no injustice; Yea, return again, my cause is righteous.</VERS>\r\n      <VERS vnumber=\"30\">Is there injustice on my tongue? Cannot my taste discern mischievous things?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">Is there not a warfare to man upon earth? And are not his days like the days of a hireling?</VERS>\r\n      <VERS vnumber=\"2\">As a servant that earnestly desireth the shadow, And as a hireling that looketh for his wages:</VERS>\r\n      <VERS vnumber=\"3\">So am I made to possess months of misery, And wearisome nights are appointed to me.</VERS>\r\n      <VERS vnumber=\"4\">When 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.</VERS>\r\n      <VERS vnumber=\"5\">My flesh is clothed with worms and clods of dust; My skin closeth up, and breaketh out afresh.</VERS>\r\n      <VERS vnumber=\"6\">My days are swifter than a weaver`s shuttle, And are spent without hope.</VERS>\r\n      <VERS vnumber=\"7\">Oh remember that my life is a breath: Mine eye shall no more see good.</VERS>\r\n      <VERS vnumber=\"8\">The eye of him that seeth me shall behold me no more; Thine eyes shall be upon me, but I shall not be.</VERS>\r\n      <VERS vnumber=\"9\">As the cloud is consumed and vanisheth away, So he that goeth down to Sheol shall come up no more.</VERS>\r\n      <VERS vnumber=\"10\">He shall return no more to his house, Neither shall his place know him any more.</VERS>\r\n      <VERS vnumber=\"11\">Therefore I will not refrain my mouth; I will speak in the anguish of my spirit; I will complain in the bitterness of my soul.</VERS>\r\n      <VERS vnumber=\"12\">Am I a sea, or a sea-monster, That thou settest a watch over me?</VERS>\r\n      <VERS vnumber=\"13\">When I say, My bed shall comfort me, My couch shall ease my complaint;</VERS>\r\n      <VERS vnumber=\"14\">Then thou scarest me with dreams, And terrifiest me through visions:</VERS>\r\n      <VERS vnumber=\"15\">So that my soul chooseth strangling, And death rather than [these] my bones.</VERS>\r\n      <VERS vnumber=\"16\">I loathe [my life]; I would not live alway: Let me alone; for my days are vanity.</VERS>\r\n      <VERS vnumber=\"17\">What is man, that thou shouldest magnify him, And that thou shouldest set thy mind upon him,</VERS>\r\n      <VERS vnumber=\"18\">And that thou shouldest visit him every morning, And try him every moment?</VERS>\r\n      <VERS vnumber=\"19\">How long wilt thou not look away from me, Nor let me alone till I swallow down my spittle?</VERS>\r\n      <VERS vnumber=\"20\">If I have sinned, what do I unto thee, O thou watcher of       men? Why hast thou set me as a mark for thee, So that I am a burden to myself?</VERS>\r\n      <VERS vnumber=\"21\">And why dost thou not pardon my transgression, and take       away mine iniquity? For now shall I lie down in the dust; And thou wilt seek me diligently, but I shall not be.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">Then answered Bildad the Shuhite, and said,</VERS>\r\n      <VERS vnumber=\"2\">How long wilt thou speak these things? And [how long] shall the words of thy mouth be [like] a mighty       wind?</VERS>\r\n      <VERS vnumber=\"3\">Doth God pervert justice? Or doth the Almighty pervert righteousness?</VERS>\r\n      <VERS vnumber=\"4\">If thy children have sinned against him, And he hath delivered them into the hand of their transgression;</VERS>\r\n      <VERS vnumber=\"5\">If thou wouldest seek diligently unto God, And make thy supplication to the Almighty;</VERS>\r\n      <VERS vnumber=\"6\">If thou wert pure and upright: Surely now he would awake for thee, And make the habitation of thy righteousness prosperous.</VERS>\r\n      <VERS vnumber=\"7\">And though thy beginning was small, Yet thy latter end would greatly increase.</VERS>\r\n      <VERS vnumber=\"8\">For inquire, I pray thee, of the former age, And apply thyself to that which their fathers have searched out:</VERS>\r\n      <VERS vnumber=\"9\">(For we are but of yesterday, and know nothing, Because our days upon earth are a shadow);</VERS>\r\n      <VERS vnumber=\"10\">Shall not they teach thee, and tell thee, And utter words out of their heart?</VERS>\r\n      <VERS vnumber=\"11\">Can the rush grow up without mire? Can the flag grow without water?</VERS>\r\n      <VERS vnumber=\"12\">Whilst it is yet in its greenness, [and] not cut down, It withereth before any [other] herb.</VERS>\r\n      <VERS vnumber=\"13\">So are the paths of all that forget God; And the hope of the godless man shall perish:</VERS>\r\n      <VERS vnumber=\"14\">Whose confidence shall break in sunder, And whose trust is a spider`s web.</VERS>\r\n      <VERS vnumber=\"15\">He shall lean upon his house, but it shall not stand: He shall hold fast thereby, but it shall not endure.</VERS>\r\n      <VERS vnumber=\"16\">He is green before the sun, And his shoots go forth over his garden.</VERS>\r\n      <VERS vnumber=\"17\">His roots are wrapped about the [stone] -heap, He beholdeth the place of stones.</VERS>\r\n      <VERS vnumber=\"18\">If he be destroyed from his place, Then it shall deny him, [saying], I have not seen thee.</VERS>\r\n      <VERS vnumber=\"19\">Behold, this is the joy of his way; And out of the earth shall others spring.</VERS>\r\n      <VERS vnumber=\"20\">Behold, God will not cast away a perfect man, Neither will he uphold the evil-doers.</VERS>\r\n      <VERS vnumber=\"21\">He will yet fill thy mouth with laughter, And thy lips with shouting.</VERS>\r\n      <VERS vnumber=\"22\">They that hate thee shall be clothed with shame; And the tent of the wicked shall be no more.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">Then Job answered and said,</VERS>\r\n      <VERS vnumber=\"2\">Of a truth I know that it is so: But how can man be just with God?</VERS>\r\n      <VERS vnumber=\"3\">If he be pleased to contend with him, He cannot answer him one of a thousand.</VERS>\r\n      <VERS vnumber=\"4\">[He is] wise in heart, and mighty in strength: Who hath hardened himself against him, and prospered?-</VERS>\r\n      <VERS vnumber=\"5\">[Him] that removeth the mountains, and they know it not, When he overturneth them in his anger;</VERS>\r\n      <VERS vnumber=\"6\">That shaketh the earth out of its place, And the pillars thereof tremble;</VERS>\r\n      <VERS vnumber=\"7\">That commandeth the sun, and it riseth not, And sealeth up the stars;</VERS>\r\n      <VERS vnumber=\"8\">That alone stretcheth out the heavens, And treadeth upon the waves of the sea;</VERS>\r\n      <VERS vnumber=\"9\">That maketh the Bear, Orion, and the Pleiades, And the chambers of the south;</VERS>\r\n      <VERS vnumber=\"10\">That doeth great things past finding out, Yea, marvellous things without number.</VERS>\r\n      <VERS vnumber=\"11\">Lo, he goeth by me, and I see him not: He passeth on also, but I perceive him not.</VERS>\r\n      <VERS vnumber=\"12\">Behold, he seizeth [the prey], who can hinder him? Who will say unto him, What doest thou?</VERS>\r\n      <VERS vnumber=\"13\">God will not withdraw his anger; The helpers of Rahab do stoop under him.</VERS>\r\n      <VERS vnumber=\"14\">How much less shall I answer him, And choose out my words [to reason] with him?</VERS>\r\n      <VERS vnumber=\"15\">Whom, though I were righteous, yet would I not answer; I would make supplication to my judge.</VERS>\r\n      <VERS vnumber=\"16\">If I had called, and he had answered me, Yet would I not believe that he hearkened unto my voice.</VERS>\r\n      <VERS vnumber=\"17\">For he breaketh me with a tempest, And multiplieth my wounds without cause.</VERS>\r\n      <VERS vnumber=\"18\">He will not suffer me to take my breath, But filleth me with bitterness.</VERS>\r\n      <VERS vnumber=\"19\">If [we speak] of strength, lo, [he is] mighty! And if of justice, Who, [saith he], will summon me?</VERS>\r\n      <VERS vnumber=\"20\">Though I be righteous, mine own mouth shall condemn me: Though I be perfect, it shall prove me perverse.</VERS>\r\n      <VERS vnumber=\"21\">I am perfect; I regard not myself; I despise my life.</VERS>\r\n      <VERS vnumber=\"22\">It is all one; therefore I say, He destroyeth the perfect and the wicked.</VERS>\r\n      <VERS vnumber=\"23\">If the scourge slay suddenly, He will mock at the trial of the innocent.</VERS>\r\n      <VERS vnumber=\"24\">The earth is given into the hand of the wicked; He covereth the faces of the judges thereof: If [it be] not [he], who then is it?</VERS>\r\n      <VERS vnumber=\"25\">Now my days are swifter than a post: They flee away, they see no good,</VERS>\r\n      <VERS vnumber=\"26\">They are passed away as the swift ships; As the eagle that swoopeth on the prey.</VERS>\r\n      <VERS vnumber=\"27\">If I say, I will forget my complaint, I will put off my [sad] countenance, and be of good cheer;</VERS>\r\n      <VERS vnumber=\"28\">I am afraid of all my sorrows, I know that thou wilt not hold me innocent.</VERS>\r\n      <VERS vnumber=\"29\">I shall be condemned; Why then do I labor in vain?</VERS>\r\n      <VERS vnumber=\"30\">If I wash myself with snow water, And make my hands never so clean;</VERS>\r\n      <VERS vnumber=\"31\">Yet wilt thou plunge me in the ditch, And mine own clothes shall abhor me.</VERS>\r\n      <VERS vnumber=\"32\">For he is not a man, as I am, that I should answer him, That we should come together in judgment.</VERS>\r\n      <VERS vnumber=\"33\">There is no umpire betwixt us, That might lay his hand upon us both.</VERS>\r\n      <VERS vnumber=\"34\">Let him take his rod away from me, And let not his terror make me afraid:</VERS>\r\n      <VERS vnumber=\"35\">Then would I speak, and not fear him; For I am not so in myself.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">My soul is weary of my life; I will give free course to my complaint; I will speak in the bitterness of my soul.</VERS>\r\n      <VERS vnumber=\"2\">I will say unto God, Do not condemn me; Show me wherefore thou contendest with me.</VERS>\r\n      <VERS vnumber=\"3\">Is it good unto thee that thou shouldest oppress, That thou shouldest despise the work of thy hands, And shine upon the counsel of the wicked?</VERS>\r\n      <VERS vnumber=\"4\">Hast thou eyes of flesh? Or seest thou as man seeth?</VERS>\r\n      <VERS vnumber=\"5\">Are thy days as the days of man, Or thy years as man`s days,</VERS>\r\n      <VERS vnumber=\"6\">That thou inquirest after mine iniquity, And searchest after my sin,</VERS>\r\n      <VERS vnumber=\"7\">Although thou knowest that I am not wicked, And there is none that can deliver out of thy hand?</VERS>\r\n      <VERS vnumber=\"8\">Thy hands have framed me and fashioned me Together round about; yet thou dost destroy me.</VERS>\r\n      <VERS vnumber=\"9\">Remember, I beseech thee, that thou hast fashioned me as       clay; And wilt thou bring me into dust again?</VERS>\r\n      <VERS vnumber=\"10\">Hast thou not poured me out as milk, And curdled me like cheese?</VERS>\r\n      <VERS vnumber=\"11\">Thou hast clothed me with skin and flesh, And knit me together with bones and sinews.</VERS>\r\n      <VERS vnumber=\"12\">Thou hast granted me life and lovingkindness; And thy visitation hath preserved my spirit.</VERS>\r\n      <VERS vnumber=\"13\">Yet these things thou didst hide in thy heart; I know that this is with thee:</VERS>\r\n      <VERS vnumber=\"14\">If I sin, then thou markest me, And thou wilt not acquit me from mine iniquity.</VERS>\r\n      <VERS vnumber=\"15\">If I be wicked, woe unto me; And if I be righteous, yet shall I not lift up my head; Being filled with ignominy, And looking upon mine affliction.</VERS>\r\n      <VERS vnumber=\"16\">And if [my head] exalt itself, thou huntest me as a lion; And again thou showest thyself marvellous upon me.</VERS>\r\n      <VERS vnumber=\"17\">Thou renewest thy witnesses against me, And increasest thine indignation upon me: Changes and warfare are with me.</VERS>\r\n      <VERS vnumber=\"18\">Wherefore then hast thou brought me forth out of the       womb? I had given up the ghost, and no eye had seen me.</VERS>\r\n      <VERS vnumber=\"19\">I should have been as though I had not been; I should have been carried from the womb to the grave.</VERS>\r\n      <VERS vnumber=\"20\">Are not my days few? cease then, And let me alone, that I may take comfort a little,</VERS>\r\n      <VERS vnumber=\"21\">Before I go whence I shall not return, [Even] to the land of darkness and of the shadow of death;</VERS>\r\n      <VERS vnumber=\"22\">The land dark as midnight, [The land] of the shadow of death, without any order, And where the light is as midnight.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">Then answered Zophar the Naamathite, and said,</VERS>\r\n      <VERS vnumber=\"2\">Should not the multitude of words be answered? And should a man full of talk be justified?</VERS>\r\n      <VERS vnumber=\"3\">Should thy boastings make men hold their peace? And when thou mockest, shall no man make thee ashamed?</VERS>\r\n      <VERS vnumber=\"4\">For thou sayest, My doctrine is pure, And I am clean in thine eyes.</VERS>\r\n      <VERS vnumber=\"5\">But oh that God would speak, And open his lips against thee,</VERS>\r\n      <VERS vnumber=\"6\">And that he would show thee the secrets of wisdom! For he is manifold in understanding. Know therefore that God exacteth of thee less than thine       iniquity deserveth.</VERS>\r\n      <VERS vnumber=\"7\">Canst thou by searching find out God? Canst thou find out the Almighty unto perfection?</VERS>\r\n      <VERS vnumber=\"8\">It is high as heaven; what canst thou do? Deeper than Sheol; what canst thou know?</VERS>\r\n      <VERS vnumber=\"9\">The measure thereof is longer than the earth, And broader than the sea.</VERS>\r\n      <VERS vnumber=\"10\">If he pass through, and shut up, And all unto judgment, then who can hinder him?</VERS>\r\n      <VERS vnumber=\"11\">For he knoweth false men: He seeth iniquity also, even though he consider it not.</VERS>\r\n      <VERS vnumber=\"12\">But vain man is void of understanding, Yea, man is born [as] a wild ass`s colt.</VERS>\r\n      <VERS vnumber=\"13\">If thou set thy heart aright, And stretch out thy hands toward him;</VERS>\r\n      <VERS vnumber=\"14\">If iniquity be in thy hand, put it far away, And let not unrighteousness dwell in thy tents.</VERS>\r\n      <VERS vnumber=\"15\">Surely then shalt thou lift up thy face without spot; Yea, thou shalt be stedfast, and shalt not fear:</VERS>\r\n      <VERS vnumber=\"16\">For thou shalt forget thy misery; Thou shalt remember it as waters that are passed away,</VERS>\r\n      <VERS vnumber=\"17\">And [thy] life shall be clearer than the noonday;  Though there be darkness, it shall be as the morning.</VERS>\r\n      <VERS vnumber=\"18\">And thou shalt be secure, because there is hope; Yea, thou shalt search [about thee], and shalt take thy rest in       safety.</VERS>\r\n      <VERS vnumber=\"19\">Also thou shalt lie down, and none shall make thee       afraid; Yea, many shall make suit unto thee.</VERS>\r\n      <VERS vnumber=\"20\">But the eyes of the wicked shall fail, And they shall have no way to flee; And their hope shall be the giving up of the ghost.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">Then Job answered and said,</VERS>\r\n      <VERS vnumber=\"2\">No doubt but ye are the people, And wisdom shall die with you.</VERS>\r\n      <VERS vnumber=\"3\">But I have understanding as well as you; I am not inferior to you: Yea, who knoweth not such things as these?</VERS>\r\n      <VERS vnumber=\"4\">I am as one that is a laughing-stock to his neighbor, I who called upon God, and he answered: The just, the perfect man is a laughing-stock.</VERS>\r\n      <VERS vnumber=\"5\">In the thought of him that is at ease there is contempt       for misfortune; It is ready for them whose foot slippeth.</VERS>\r\n      <VERS vnumber=\"6\">The tents of robbers prosper, And they that provoke God are secure; Into whose hand God bringeth [abundantly].</VERS>\r\n      <VERS vnumber=\"7\">But ask now the beasts, and they shall teach thee; And the birds of the heavens, and they shall tell thee:</VERS>\r\n      <VERS vnumber=\"8\">Or speak to the earth, and it shall teach thee; And the fishes of the sea shall declare unto thee.</VERS>\r\n      <VERS vnumber=\"9\">Who knoweth not in all these, That the hand of Jehovah hath wrought this,</VERS>\r\n      <VERS vnumber=\"10\">In whose hand is the soul of every living thing, And the breath of all mankind?</VERS>\r\n      <VERS vnumber=\"11\">Doth not the ear try words, Even as the palate tasteth its food?</VERS>\r\n      <VERS vnumber=\"12\">With aged men is wisdom, And in length of days understanding.</VERS>\r\n      <VERS vnumber=\"13\">With [God] is wisdom and might; He hath counsel and understanding.</VERS>\r\n      <VERS vnumber=\"14\">Behold, he breaketh down, and it cannot be built again; He shutteth up a man, and there can be no opening.</VERS>\r\n      <VERS vnumber=\"15\">Behold, he withholdeth the waters, and they dry up; Again, he sendeth them out, and they overturn the earth.</VERS>\r\n      <VERS vnumber=\"16\">With him is strength and wisdom; The deceived and the deceiver are his.</VERS>\r\n      <VERS vnumber=\"17\">He leadeth counsellors away stripped, And judges maketh he fools.</VERS>\r\n      <VERS vnumber=\"18\">He looseth the bond of kings, And he bindeth their loins with a girdle.</VERS>\r\n      <VERS vnumber=\"19\">He leadeth priests away stripped, And overthroweth the mighty.</VERS>\r\n      <VERS vnumber=\"20\">He removeth the speech of the trusty, And taketh away the understanding of the elders.</VERS>\r\n      <VERS vnumber=\"21\">He poureth contempt upon princes, And looseth the belt of the strong.</VERS>\r\n      <VERS vnumber=\"22\">He uncovereth deep things out of darkness,  And bringeth out to light the shadow of death.</VERS>\r\n      <VERS vnumber=\"23\">He increaseth the nations, and he destroyeth them: He enlargeth the nations, and he leadeth them captive.</VERS>\r\n      <VERS vnumber=\"24\">He taketh away understanding from the chiefs of the       people of the earth, And causeth them to wander in a wilderness where there is no way.</VERS>\r\n      <VERS vnumber=\"25\">They grope in the dark without light; And he maketh them to stagger like a drunken man.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">Lo, mine eye hath seen all [this], Mine ear hath heard and understood it.</VERS>\r\n      <VERS vnumber=\"2\">What ye know, [the same] do I know also: I am not inferior unto you.</VERS>\r\n      <VERS vnumber=\"3\">Surely I would speak to the Almighty, And I desire to reason with God.</VERS>\r\n      <VERS vnumber=\"4\">But ye are forgers of lies; Ye are all physicians of no value.</VERS>\r\n      <VERS vnumber=\"5\">Oh that ye would altogether hold your peace! And it would be your wisdom.</VERS>\r\n      <VERS vnumber=\"6\">Hear now my reasoning, And hearken to the pleadings of my lips.</VERS>\r\n      <VERS vnumber=\"7\">Will ye speak unrighteously for God, And talk deceitfully for him?</VERS>\r\n      <VERS vnumber=\"8\">Will ye show partiality to him? Will ye contend for God?</VERS>\r\n      <VERS vnumber=\"9\">Is it good that he should search you out? Or as one deceiveth a man, will ye deceive him?</VERS>\r\n      <VERS vnumber=\"10\">He will surely reprove you If ye do secretly show partiality.</VERS>\r\n      <VERS vnumber=\"11\">Shall not his majesty make you afraid, And his dread fall upon you?</VERS>\r\n      <VERS vnumber=\"12\">Your memorable sayings are proverbs of ashes, Your defences are defences of clay.</VERS>\r\n      <VERS vnumber=\"13\">Hold your peace, let me alone, that I may speak; And let come on me what will.</VERS>\r\n      <VERS vnumber=\"14\">Wherefore should I take my flesh in my teeth, And put my life in my hand?</VERS>\r\n      <VERS vnumber=\"15\">Behold, he will slay me; I have no hope: Nevertheless I will maintain my ways before him.</VERS>\r\n      <VERS vnumber=\"16\">This also shall be my salvation, That a godless man shall not come before him.</VERS>\r\n      <VERS vnumber=\"17\">Hear diligently my speech, And let my declaration be in your ears.</VERS>\r\n      <VERS vnumber=\"18\">Behold now, I have set my cause in order; I know that I am righteous.</VERS>\r\n      <VERS vnumber=\"19\">Who is he that will contend with me? For then would I hold my peace and give up the ghost.</VERS>\r\n      <VERS vnumber=\"20\">Only do not two things unto me; Then will I not hide myself from thy face:</VERS>\r\n      <VERS vnumber=\"21\">Withdraw thy hand far from me; And let not thy terror make me afraid.</VERS>\r\n      <VERS vnumber=\"22\">Then call thou, and I will answer; Or let me speak, and answer thou me.</VERS>\r\n      <VERS vnumber=\"23\">How many are mine iniquities and sins? Make me to know my transgression and my sin.</VERS>\r\n      <VERS vnumber=\"24\">Wherefore hidest thou thy face, And holdest me for thine enemy?</VERS>\r\n      <VERS vnumber=\"25\">Wilt thou harass a driven leaf? And wilt thou pursue the dry stubble?</VERS>\r\n      <VERS vnumber=\"26\">For thou writest bitter things against me, And makest me to inherit the iniquities of my youth:</VERS>\r\n      <VERS vnumber=\"27\">Thou puttest my feet also in the stocks, And markest all my paths; Thou settest a bound to the soles of my feet:</VERS>\r\n      <VERS vnumber=\"28\">Though I am like a rotten thing that consumeth, Like a garment that is moth-eaten.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">Man, that is born of a woman, Is of few days, and full of trouble.</VERS>\r\n      <VERS vnumber=\"2\">He cometh forth like a flower, and is cut down: He fleeth also as a shadow, and continueth not.</VERS>\r\n      <VERS vnumber=\"3\">And dost thou open thine eyes upon such a one, And bringest me into judgment with thee?</VERS>\r\n      <VERS vnumber=\"4\">Who can bring a clean thing out of an unclean? not one.</VERS>\r\n      <VERS vnumber=\"5\">Seeing his days are determined, The number of his months is with thee, And thou hast appointed his bounds that he cannot pass;</VERS>\r\n      <VERS vnumber=\"6\">Look away from him, that he may rest, Till he shall accomplish, as a hireling, his day.</VERS>\r\n      <VERS vnumber=\"7\">For 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.</VERS>\r\n      <VERS vnumber=\"8\">Though the root thereof wax old in the earth, And the stock thereof die in the ground;</VERS>\r\n      <VERS vnumber=\"9\">Yet through the scent of water it will bud, And put forth boughs like a plant.</VERS>\r\n      <VERS vnumber=\"10\">But man dieth, and is laid low: Yea, man giveth up the ghost, and where is he?</VERS>\r\n      <VERS vnumber=\"11\">[As] the waters fail from the sea, And the river wasteth and drieth up;</VERS>\r\n      <VERS vnumber=\"12\">So man lieth down and riseth not: Till the heavens be no more, they shall not awake, Nor be roused out of their sleep.</VERS>\r\n      <VERS vnumber=\"13\">Oh that thou wouldest hide me in Sheol, That thou wouldest keep me secret, until thy wrath be past, That thou wouldest appoint me a set time, and remember me!</VERS>\r\n      <VERS vnumber=\"14\">If a man die, shall he live [again]? All the days of my warfare would I wait, Till my release should come.</VERS>\r\n      <VERS vnumber=\"15\">Thou wouldest call, and I would answer thee: Thou wouldest have a desire to the work of thy hands.</VERS>\r\n      <VERS vnumber=\"16\">But now thou numberest my steps: Dost thou not watch over my sin?</VERS>\r\n      <VERS vnumber=\"17\">My transgression is sealed up in a bag, And thou fastenest up mine iniquity.</VERS>\r\n      <VERS vnumber=\"18\">But the mountain falling cometh to nought; And the rock is removed out of its place;</VERS>\r\n      <VERS vnumber=\"19\">The waters wear the stones; The overflowings thereof wash away the dust of the earth: So thou destroyest the hope of man.</VERS>\r\n      <VERS vnumber=\"20\">Thou prevailest for ever against him, and he passeth; Thou changest his countenance, and sendest him away.</VERS>\r\n      <VERS vnumber=\"21\">His sons come to honor, and he knoweth it not; And they are brought low, but he perceiveth it not of them.</VERS>\r\n      <VERS vnumber=\"22\">But his flesh upon him hath pain, And his soul within him mourneth.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">Then answered Eliphaz the Temanite, and said,</VERS>\r\n      <VERS vnumber=\"2\">Should a wise man make answer with vain knowledge, And fill himself with the east wind?</VERS>\r\n      <VERS vnumber=\"3\">Should he reason with unprofitable talk, Or with speeches wherewith he can do no good?</VERS>\r\n      <VERS vnumber=\"4\">Yea, thou doest away with fear, And hinderest devotion before God.</VERS>\r\n      <VERS vnumber=\"5\">For thine iniquity teacheth thy mouth, And thou choosest the tongue of the crafty.</VERS>\r\n      <VERS vnumber=\"6\">Thine own mouth condemneth thee, and not I; Yea, thine own lips testify against thee.</VERS>\r\n      <VERS vnumber=\"7\">Art thou the first man that was born? Or wast thou brought forth before the hills?</VERS>\r\n      <VERS vnumber=\"8\">Hast thou heard the secret counsel of God? And dost thou limit wisdom to thyself?</VERS>\r\n      <VERS vnumber=\"9\">What knowest thou, that we know not? What understandest thou, which is not in us?</VERS>\r\n      <VERS vnumber=\"10\">With us are both the gray-headed and the very aged men, Much elder than thy father.</VERS>\r\n      <VERS vnumber=\"11\">Are the consolations of God too small for thee, Even the word that is gentle toward thee?</VERS>\r\n      <VERS vnumber=\"12\">Why doth thy heart carry thee away? And why do thine eyes flash,</VERS>\r\n      <VERS vnumber=\"13\">That against God thou turnest thy spirit, And lettest words go out of thy mouth?</VERS>\r\n      <VERS vnumber=\"14\">What is man, that he should be clean? And he that is born of a woman, that he should be righteous?</VERS>\r\n      <VERS vnumber=\"15\">Behold, he putteth no trust in his holy ones; Yea, the heavens are not clean in his sight:</VERS>\r\n      <VERS vnumber=\"16\">How much less one that is abominable and corrupt, A man that drinketh iniquity like water!</VERS>\r\n      <VERS vnumber=\"17\">I will show thee, hear thou me; And that which I have seen I will declare:</VERS>\r\n      <VERS vnumber=\"18\">(Which wise men have told From their fathers, and have not hid it;</VERS>\r\n      <VERS vnumber=\"19\">Unto whom alone the land was given, And no stranger passed among them):</VERS>\r\n      <VERS vnumber=\"20\">The wicked man travaileth with pain all his days, Even the number of years that are laid up for the oppressor.</VERS>\r\n      <VERS vnumber=\"21\">A sound of terrors is in his ears; In prosperity the destroyer shall come upon him.</VERS>\r\n      <VERS vnumber=\"22\">He believeth not that he shall return out of darkness, And he is waited for of the sword.</VERS>\r\n      <VERS vnumber=\"23\">He wandereth abroad for bread, [saying], Where is it? He knoweth that the day of darkness is ready at his hand.</VERS>\r\n      <VERS vnumber=\"24\">Distress and anguish make him afraid; They prevail against him, as a king ready to the battle.</VERS>\r\n      <VERS vnumber=\"25\">Because he hath stretched out his hand against God, And behaveth himself proudly against the Almighty;</VERS>\r\n      <VERS vnumber=\"26\">He runneth upon him with a [stiff] neck, With the thick bosses of his bucklers;</VERS>\r\n      <VERS vnumber=\"27\">Because he hath covered his face with his fatness, And gathered fat upon his loins;</VERS>\r\n      <VERS vnumber=\"28\">And he hath dwelt in desolate cities, In houses which no man inhabited, Which were ready to become heaps;</VERS>\r\n      <VERS vnumber=\"29\">He shall not be rich, neither shall his substance       continue, Neither shall their possessions be extended on the earth.</VERS>\r\n      <VERS vnumber=\"30\">He shall not depart out of darkness; The flame shall dry up his branches, And by the breath of [God`s] mouth shall he go away.</VERS>\r\n      <VERS vnumber=\"31\">Let him not trust in vanity, deceiving himself; For vanity shall be his recompense.</VERS>\r\n      <VERS vnumber=\"32\">It shall be accomplished before his time, And his branch shall not be green.</VERS>\r\n      <VERS vnumber=\"33\">He shall shake off his unripe grape as the vine, And shall cast off his flower as the olive-tree.</VERS>\r\n      <VERS vnumber=\"34\">For the company of the godless shall be barren, And fire shall consume the tents of bribery.</VERS>\r\n      <VERS vnumber=\"35\">They conceive mischief, and bring forth iniquity, And their heart prepareth deceit.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">Then Job answered and said,</VERS>\r\n      <VERS vnumber=\"2\">I have heard many such things: Miserable comforters are ye all.</VERS>\r\n      <VERS vnumber=\"3\">Shall vain words have an end? Or what provoketh thee that thou answerest?</VERS>\r\n      <VERS vnumber=\"4\">I also could speak as ye do; If your soul were in my soul`s stead, I could join words together against you, And shake my head at you.</VERS>\r\n      <VERS vnumber=\"5\">[But] I would strengthen you with my mouth, And the solace of my lips would assuage [your grief].</VERS>\r\n      <VERS vnumber=\"6\">Though I speak, my grief is not assuaged; And though I forbear, what am I eased?</VERS>\r\n      <VERS vnumber=\"7\">But now he hath made me weary: Thou hast made desolate all my company.</VERS>\r\n      <VERS vnumber=\"8\">And thou hast laid fast hold on me, [which] is a witness       [against me]: And my leanness riseth up against me, It testifieth to my face.</VERS>\r\n      <VERS vnumber=\"9\">He hath torn me in his wrath, and persecuted me; He hath gnashed upon me with his teeth: Mine adversary sharpeneth his eyes upon me.</VERS>\r\n      <VERS vnumber=\"10\">They have gaped upon me with their mouth; They have smitten me upon the cheek reproachfully: They gather themselves together against me.</VERS>\r\n      <VERS vnumber=\"11\">God delivereth me to the ungodly, And casteth me into the hands of the wicked.</VERS>\r\n      <VERS vnumber=\"12\">I was at ease, and he brake me asunder; Yea, he hath taken me by the neck, and dashed me to pieces: He hath also set me up for his mark.</VERS>\r\n      <VERS vnumber=\"13\">His archers compass me round about; He cleaveth my reins asunder, and doth not spare; He poureth out my gall upon the ground.</VERS>\r\n      <VERS vnumber=\"14\">He breaketh me with breach upon breach; He runneth upon me like a giant.</VERS>\r\n      <VERS vnumber=\"15\">I have sewed sackcloth upon my skin, And have laid my horn in the dust.</VERS>\r\n      <VERS vnumber=\"16\">My face is red with weeping, And on my eyelids is the shadow of death;</VERS>\r\n      <VERS vnumber=\"17\">Although there is no violence in my hands, And my prayer is pure.</VERS>\r\n      <VERS vnumber=\"18\">O earth, cover not thou my blood, And let my cry have no [resting] -place.</VERS>\r\n      <VERS vnumber=\"19\">Even now, behold, my witness is in heaven, And he that voucheth for me is on high.</VERS>\r\n      <VERS vnumber=\"20\">My friends scoff at me: [But] mine eye poureth out tears unto God,</VERS>\r\n      <VERS vnumber=\"21\">That he would maintain the right of a man with God, And of a son of man with his neighbor!</VERS>\r\n      <VERS vnumber=\"22\">For when a few years are come, I shall go the way whence I shall not return.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"17\">\r\n      <VERS vnumber=\"1\">My spirit is consumed, my days are extinct, The grave is [ready] for me.</VERS>\r\n      <VERS vnumber=\"2\">Surely there are mockers with me, And mine eye dwelleth upon their provocation.</VERS>\r\n      <VERS vnumber=\"3\">Give now a pledge, be surety for me with thyself; Who is there that will strike hands with me?</VERS>\r\n      <VERS vnumber=\"4\">For thou hast hid their heart from understanding: Therefore shalt thou not exalt [them].</VERS>\r\n      <VERS vnumber=\"5\">He that denounceth his friends for a prey, Even the eyes of his children shall fail.</VERS>\r\n      <VERS vnumber=\"6\">But he hath made me a byword of the people; And they spit in my face.</VERS>\r\n      <VERS vnumber=\"7\">Mine eye also is dim by reason of sorrow, And all my members are as a shadow.</VERS>\r\n      <VERS vnumber=\"8\">Upright men shall be astonished at this, And the innocent shall stir up himself against the godless.</VERS>\r\n      <VERS vnumber=\"9\">Yet shall the righteous hold on his way, And he that hath clean hands shall wax stronger and stronger.</VERS>\r\n      <VERS vnumber=\"10\">But as for you all, come on now again; And I shall not find a wise man among you.</VERS>\r\n      <VERS vnumber=\"11\">My days are past, my purposes are broken off, Even the thoughts of my heart.</VERS>\r\n      <VERS vnumber=\"12\">They change the night into day: The light, [say they], is near unto the darkness.</VERS>\r\n      <VERS vnumber=\"13\">If I look for Sheol as my house; If I have spread my couch in the darkness;</VERS>\r\n      <VERS vnumber=\"14\">If I have said to corruption, Thou art my father; To the worm, [Thou art] my mother, and my sister;</VERS>\r\n      <VERS vnumber=\"15\">Where then is my hope? And as for my hope, who shall see it?</VERS>\r\n      <VERS vnumber=\"16\">It shall go down to the bars of Sheol, When once there is rest in the dust.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"18\">\r\n      <VERS vnumber=\"1\">Then answered Bildad the Shuhite, and said,</VERS>\r\n      <VERS vnumber=\"2\">How long will ye hunt for words? Consider, and afterwards we will speak.</VERS>\r\n      <VERS vnumber=\"3\">Wherefore are we counted as beasts, [And] are become unclean in your sight?</VERS>\r\n      <VERS vnumber=\"4\">Thou that tearest thyself in thine anger, Shall the earth be forsaken for thee? Or shall the rock be removed out of its place?</VERS>\r\n      <VERS vnumber=\"5\">Yea, the light of the wicked shall be put out, And the spark of his fire shall not shine.</VERS>\r\n      <VERS vnumber=\"6\">The light shall be dark in his tent, And his lamp above him shall be put out.</VERS>\r\n      <VERS vnumber=\"7\">The steps of his strength shall be straitened, And his own counsel shall cast him down.</VERS>\r\n      <VERS vnumber=\"8\">For he is cast into a net by his own feet, And he walketh upon the toils.</VERS>\r\n      <VERS vnumber=\"9\">A gin shall take [him] by the heel, [And] a snare shall lay hold on him.</VERS>\r\n      <VERS vnumber=\"10\">A noose is hid for him in the ground, And a trap for him in the way.</VERS>\r\n      <VERS vnumber=\"11\">Terrors shall make him afraid on every side, And shall chase him at his heels.</VERS>\r\n      <VERS vnumber=\"12\">His strength shall be hunger-bitten, And calamity shall be ready at his side.</VERS>\r\n      <VERS vnumber=\"13\">The members of his body shall be devoured, [Yea], the first-born of death shall devour his members.</VERS>\r\n      <VERS vnumber=\"14\">He shall be rooted out of his tent where he trusteth; And he shall be brought to the king of terrors.</VERS>\r\n      <VERS vnumber=\"15\">There shall dwell in his tent that which is none of his: Brimstone shall be scattered upon his habitation.</VERS>\r\n      <VERS vnumber=\"16\">His roots shall be dried up beneath, And above shall his branch be cut off.</VERS>\r\n      <VERS vnumber=\"17\">His remembrance shall perish from the earth, And he shall have no name in the street.</VERS>\r\n      <VERS vnumber=\"18\">He shall be driven from light into darkness, And chased out of the world.</VERS>\r\n      <VERS vnumber=\"19\">He shall have neither son nor son`s son among his people, Nor any remaining where he sojourned.</VERS>\r\n      <VERS vnumber=\"20\">They that come after shall be astonished at his day, As they that went before were affrighted.</VERS>\r\n      <VERS vnumber=\"21\">Surely such are the dwellings of the unrighteous, And this is the place of him that knoweth not God.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"19\">\r\n      <VERS vnumber=\"1\">Then Job answered and said,</VERS>\r\n      <VERS vnumber=\"2\">How long will ye vex my soul, And break me in pieces with words?</VERS>\r\n      <VERS vnumber=\"3\">These ten times have ye reproached me: Ye are not ashamed that ye deal hardly with me.</VERS>\r\n      <VERS vnumber=\"4\">And be it indeed that I have erred, Mine error remaineth with myself.</VERS>\r\n      <VERS vnumber=\"5\">If indeed ye will magnify yourselves against me, And plead against me my reproach;</VERS>\r\n      <VERS vnumber=\"6\">Know now that God hath subverted me [in my cause], And hath compassed me with his net.</VERS>\r\n      <VERS vnumber=\"7\">Behold, I cry out of wrong, but I am not heard: I cry for help, but there is no justice.</VERS>\r\n      <VERS vnumber=\"8\">He hath walled up my way that I cannot pass, And hath set darkness in my paths.</VERS>\r\n      <VERS vnumber=\"9\">He hath stripped me of my glory, And taken the crown from my head.</VERS>\r\n      <VERS vnumber=\"10\">He hath broken me down on every side, and I am gone; And my hope hath he plucked up like a tree.</VERS>\r\n      <VERS vnumber=\"11\">He hath also kindled his wrath against me, And he counteth me unto him as [one of] his adversaries.</VERS>\r\n      <VERS vnumber=\"12\">His troops come on together, And cast up their way against me, And encamp round about my tent.</VERS>\r\n      <VERS vnumber=\"13\">He hath put my brethren far from me, And mine acquaintance are wholly estranged from me.</VERS>\r\n      <VERS vnumber=\"14\">My kinsfolk have failed, And my familiar friends have forgotten me.</VERS>\r\n      <VERS vnumber=\"15\">They that dwell in my house, and my maids, count me for       a stranger; I am an alien in their sight.</VERS>\r\n      <VERS vnumber=\"16\">I call unto my servant, and he giveth me no answer, [Though] I entreat him with my mouth.</VERS>\r\n      <VERS vnumber=\"17\">My breath is strange to my wife, And my supplication to the children of mine own mother.</VERS>\r\n      <VERS vnumber=\"18\">Even young children despise me; If I arise, they speak against me.</VERS>\r\n      <VERS vnumber=\"19\">All my familiar friends abhor me, And they whom I loved are turned against me.</VERS>\r\n      <VERS vnumber=\"20\">My bone cleaveth to my skin and to my flesh, And I am escaped with the skin of my teeth.</VERS>\r\n      <VERS vnumber=\"21\">Have pity upon me, have pity upon me, O ye my friends; For the hand of God hath touched me.</VERS>\r\n      <VERS vnumber=\"22\">Why do ye persecute me as God, And are not satisfied with my flesh?</VERS>\r\n      <VERS vnumber=\"23\">Oh that my words were now written! Oh that they were inscribed in a book!</VERS>\r\n      <VERS vnumber=\"24\">That with an iron pen and lead They were graven in the rock for ever!</VERS>\r\n      <VERS vnumber=\"25\">But as for me I know that my Redeemer liveth, And at last he will stand up upon the earth:</VERS>\r\n      <VERS vnumber=\"26\">And after my skin, [even] this [body], is destroyed, Then without my flesh shall I see God;</VERS>\r\n      <VERS vnumber=\"27\">Whom I, even I, shall see, on my side, And mine eyes shall behold, and not as a stranger. My heart is consumed within me.</VERS>\r\n      <VERS vnumber=\"28\">If ye say, How we will persecute him! And that the root of the matter is found in me;</VERS>\r\n      <VERS vnumber=\"29\">Be ye afraid of the sword: For wrath [bringeth] the punishments of the sword, That ye may know there is a judgment.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"20\">\r\n      <VERS vnumber=\"1\">Then answered Zophar the Naamathite, and said,</VERS>\r\n      <VERS vnumber=\"2\">Therefore do my thoughts give answer to me, Even by reason of my haste that is in me.</VERS>\r\n      <VERS vnumber=\"3\">I have heard the reproof which putteth me to shame; And the spirit of my understanding answereth me.</VERS>\r\n      <VERS vnumber=\"4\">Knowest thou [not] this of old time, Since man was placed upon earth,</VERS>\r\n      <VERS vnumber=\"5\">That the triumphing of the wicked is short, And the joy of the godless but for a moment?</VERS>\r\n      <VERS vnumber=\"6\">Though his height mount up to the heavens, And his head reach unto the clouds;</VERS>\r\n      <VERS vnumber=\"7\">Yet he shall perish for ever like his own dung: They that have seen him shall say, Where is he?</VERS>\r\n      <VERS vnumber=\"8\">He shall fly away as a dream, and shall not be found: Yea, he shall be chased away as a vision of the night.</VERS>\r\n      <VERS vnumber=\"9\">The eye which saw him shall see him no more; Neither shall his place any more behold him.</VERS>\r\n      <VERS vnumber=\"10\">His children shall seek the favor of the poor, And his hands shall give back his wealth.</VERS>\r\n      <VERS vnumber=\"11\">His bones are full of his youth, But it shall lie down with him in the dust.</VERS>\r\n      <VERS vnumber=\"12\">Though wickedness be sweet in his mouth, Though he hide it under his tongue,</VERS>\r\n      <VERS vnumber=\"13\">Though he spare it, and will not let it go, But keep it still within his mouth;</VERS>\r\n      <VERS vnumber=\"14\">Yet his food in his bowels is turned, It is the gall of asps within him.</VERS>\r\n      <VERS vnumber=\"15\">He hath swallowed down riches, and he shall vomit them       up again; God will cast them out of his belly.</VERS>\r\n      <VERS vnumber=\"16\">He shall suck the poison of asps: The viper`s tongue shall slay him.</VERS>\r\n      <VERS vnumber=\"17\">He shall not look upon the rivers, The flowing streams of honey and butter.</VERS>\r\n      <VERS vnumber=\"18\">That which he labored for shall he restore, and shall       not swallow it down; According to the substance that he hath gotten, he shall not       rejoice.</VERS>\r\n      <VERS vnumber=\"19\">For he hath oppressed and forsaken the poor; He hath violently taken away a house, and he shall not build it       up.</VERS>\r\n      <VERS vnumber=\"20\">Because he knew no quietness within him, He shall not save aught of that wherein he delighteth.</VERS>\r\n      <VERS vnumber=\"21\">There was nothing left that he devoured not; Therefore his prosperity shall not endure.</VERS>\r\n      <VERS vnumber=\"22\">In the fulness of his sufficiency he shall be in straits: The hand of every one that is in misery shall come upon him.</VERS>\r\n      <VERS vnumber=\"23\">When he is about to fill his belly, [God] will cast the       fierceness of his wrath upon him, And will rain it upon him while he is eating.</VERS>\r\n      <VERS vnumber=\"24\">He shall flee from the iron weapon, And the bow of brass shall strike him through.</VERS>\r\n      <VERS vnumber=\"25\">He draweth it forth, and it cometh out of his body; Yea, the glittering point cometh out of his gall: Terrors are upon him.</VERS>\r\n      <VERS vnumber=\"26\">All darkness is laid up for his treasures: A fire not blown [by man] shall devour him; It shall consume that which is left in his tent.</VERS>\r\n      <VERS vnumber=\"27\">The heavens shall reveal his iniquity, And the earth shall rise up against him.</VERS>\r\n      <VERS vnumber=\"28\">The increase of his house shall depart; [His goods] shall flow away in the day of his wrath.</VERS>\r\n      <VERS vnumber=\"29\">This is the portion of a wicked man from God, And the heritage appointed unto him by God.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"21\">\r\n      <VERS vnumber=\"1\">Then Job answered and said,</VERS>\r\n      <VERS vnumber=\"2\">Hear diligently my speech; And let this be your consolations.</VERS>\r\n      <VERS vnumber=\"3\">Suffer me, and I also will speak; And after that I have spoken, mock on.</VERS>\r\n      <VERS vnumber=\"4\">As for me, is my complaint to man? And why should I not be impatient?</VERS>\r\n      <VERS vnumber=\"5\">Mark me, and be astonished,  And lay your hand upon your mouth.</VERS>\r\n      <VERS vnumber=\"6\">Even when I remember I am troubled, And horror taketh hold on my flesh.</VERS>\r\n      <VERS vnumber=\"7\">Wherefore do the wicked live, Become old, yea, wax mighty in power?</VERS>\r\n      <VERS vnumber=\"8\">Their seed is established with them in their sight, And their offspring before their eyes.</VERS>\r\n      <VERS vnumber=\"9\">Their houses are safe from fear, Neither is the rod of God upon them.</VERS>\r\n      <VERS vnumber=\"10\">Their bull gendereth, and faileth not; Their cow calveth, and casteth not her calf.</VERS>\r\n      <VERS vnumber=\"11\">They send forth their little ones like a flock, And their children dance.</VERS>\r\n      <VERS vnumber=\"12\">They sing to the timbrel and harp, And rejoice at the sound of the pipe.</VERS>\r\n      <VERS vnumber=\"13\">They spend their days in prosperity, And in a moment they go down to Sheol.</VERS>\r\n      <VERS vnumber=\"14\">And they say unto God, Depart from us; For we desire not the knowledge of thy ways.</VERS>\r\n      <VERS vnumber=\"15\">What is the Almighty, that we should serve him? And what profit should we have, if we pray unto him?</VERS>\r\n      <VERS vnumber=\"16\">Lo, their prosperity is not in their hand: The counsel of the wicked is far from me.</VERS>\r\n      <VERS vnumber=\"17\">How oft is it that the lamp of the wicked is put out? That their calamity cometh upon them? That [God] distributeth sorrows in his anger?</VERS>\r\n      <VERS vnumber=\"18\">That they are as stubble before the wind, And as chaff that the storm carrieth away?</VERS>\r\n      <VERS vnumber=\"19\">[Ye say], God layeth up his iniquity for his children. Let him recompense it unto himself, that he may know it:</VERS>\r\n      <VERS vnumber=\"20\">Let his own eyes see his destruction, And let him drink of the wrath of the Almighty.</VERS>\r\n      <VERS vnumber=\"21\">For what careth he for his house after him, When the number of his months is cut off?</VERS>\r\n      <VERS vnumber=\"22\">Shall any teach God knowledge, Seeing he judgeth those that are high?</VERS>\r\n      <VERS vnumber=\"23\">One dieth in his full strength, Being wholly at ease and quiet:</VERS>\r\n      <VERS vnumber=\"24\">His pails are full of milk, And the marrow of his bones is moistened.</VERS>\r\n      <VERS vnumber=\"25\">And another dieth in bitterness of soul, And never tasteth of good.</VERS>\r\n      <VERS vnumber=\"26\">They lie down alike in the dust, And the worm covereth them.</VERS>\r\n      <VERS vnumber=\"27\">Behold, I know your thoughts, And the devices wherewith ye would wrong me.</VERS>\r\n      <VERS vnumber=\"28\">For ye say, Where is the house of the prince? And where is the tent wherein the wicked dwelt?</VERS>\r\n      <VERS vnumber=\"29\">Have ye not asked wayfaring men? And do ye not know their evidences,</VERS>\r\n      <VERS vnumber=\"30\">That the evil man is reserved to the day of calamity? That they are led forth to the day of wrath?</VERS>\r\n      <VERS vnumber=\"31\">Who shall declare his way to his face? And who shall repay him what he hath done?</VERS>\r\n      <VERS vnumber=\"32\">Yet shall he be borne to the grave, And men shall keep watch over the tomb.</VERS>\r\n      <VERS vnumber=\"33\">The clods of the valley shall be sweet unto him, And all men shall draw after him, As there were innumerable before him.</VERS>\r\n      <VERS vnumber=\"34\">How then comfort ye me in vain, Seeing in your answers there remaineth [only] falsehood?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"22\">\r\n      <VERS vnumber=\"1\">Then answered Eliphaz the Temanite, and said,</VERS>\r\n      <VERS vnumber=\"2\">Can a man be profitable unto God? Surely he that is wise is profitable unto himself.</VERS>\r\n      <VERS vnumber=\"3\">Is it any pleasure to the Almighty, that thou art       righteous? Or is it gain [to him], that thou makest thy ways perfect?</VERS>\r\n      <VERS vnumber=\"4\">Is it for thy fear [of him] that he reproveth thee, That he entereth with thee into judgment?</VERS>\r\n      <VERS vnumber=\"5\">Is not thy wickedness great? Neither is there any end to thine iniquities.</VERS>\r\n      <VERS vnumber=\"6\">For thou hast taken pledges of thy brother for nought, And stripped the naked of their clothing.</VERS>\r\n      <VERS vnumber=\"7\">Thou hast not given water to the weary to drink, And thou hast withholden bread from the hungry.</VERS>\r\n      <VERS vnumber=\"8\">But as for the mighty man, he had the earth; And the honorable man, he dwelt in it.</VERS>\r\n      <VERS vnumber=\"9\">Thou hast sent widows away empty, And the arms of the fatherless have been broken.</VERS>\r\n      <VERS vnumber=\"10\">Therefore snares are round about thee, And sudden fear troubleth thee,</VERS>\r\n      <VERS vnumber=\"11\">Or darkness, so that thou canst not see, And abundance of waters cover thee.</VERS>\r\n      <VERS vnumber=\"12\">Is not God in the height of heaven? And behold the height of the stars, how high they are!</VERS>\r\n      <VERS vnumber=\"13\">And thou sayest, What doth God know? Can he judge through the thick darkness?</VERS>\r\n      <VERS vnumber=\"14\">Thick clouds are a covering to him, so that he seeth not; And he walketh on the vault of heaven.</VERS>\r\n      <VERS vnumber=\"15\">Wilt thou keep the old way Which wicked men have trodden?</VERS>\r\n      <VERS vnumber=\"16\">Who were snatched away before their time, Whose foundation was poured out as a stream,</VERS>\r\n      <VERS vnumber=\"17\">Who said unto God, Depart from us; And, What can the Almighty do for us?</VERS>\r\n      <VERS vnumber=\"18\">Yet he filled their houses with good things: But the counsel of the wicked is far from me.</VERS>\r\n      <VERS vnumber=\"19\">The righteous see it, and are glad; And the innocent laugh them to scorn,</VERS>\r\n      <VERS vnumber=\"20\">[Saying], Surely they that did rise up against us are       cut off, And the remnant of them the fire hath consumed.</VERS>\r\n      <VERS vnumber=\"21\">Acquaint now thyself with him, and be at peace: Thereby good shall come unto thee.</VERS>\r\n      <VERS vnumber=\"22\">Receive, I pray thee, the law from his mouth, And lay up his words in thy heart.</VERS>\r\n      <VERS vnumber=\"23\">If thou return to the Almighty, thou shalt be built up, If thou put away unrighteousness far from thy tents.</VERS>\r\n      <VERS vnumber=\"24\">And lay thou [thy] treasure in the dust, And [the gold of] Ophir among the stones of the brooks;</VERS>\r\n      <VERS vnumber=\"25\">And the Almighty will be thy treasure, And precious silver unto thee.</VERS>\r\n      <VERS vnumber=\"26\">For then shalt thou delight thyself in the Almighty, And shalt lift up thy face unto God.</VERS>\r\n      <VERS vnumber=\"27\">Thou shalt make thy prayer unto him, and he will hear       thee; And thou shalt pay thy vows.</VERS>\r\n      <VERS vnumber=\"28\">Thou shalt also decree a thing, and it shall be       established unto thee; And light shall shine upon thy ways.</VERS>\r\n      <VERS vnumber=\"29\">When they cast [thee] down, thou shalt say, [There is]       lifting up; And the humble person he will save.</VERS>\r\n      <VERS vnumber=\"30\">He will deliver [even] him that is not innocent: Yea, he shall be delivered through the cleanness of thy hands.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"23\">\r\n      <VERS vnumber=\"1\">Then Job answered and said,</VERS>\r\n      <VERS vnumber=\"2\">Even to-day is my complaint rebellious: My stroke is heavier than my groaning.</VERS>\r\n      <VERS vnumber=\"3\">Oh that I knew where I might find him! That I might come even to his seat!</VERS>\r\n      <VERS vnumber=\"4\">I would set my cause in order before him, And fill my mouth with arguments.</VERS>\r\n      <VERS vnumber=\"5\">I would know the words which he would answer me, And understand what he would say unto me.</VERS>\r\n      <VERS vnumber=\"6\">Would he contend with me in the greatness of his power? Nay; but he would give heed unto me.</VERS>\r\n      <VERS vnumber=\"7\">There the upright might reason with him; So should I be delivered for ever from my judge.</VERS>\r\n      <VERS vnumber=\"8\">Behold, I go forward, but he is not [there]; And backward, but I cannot perceive him;</VERS>\r\n      <VERS vnumber=\"9\">On the left hand, when he doth work, but I cannot behold       him; He hideth himself on the right hand, that I cannot see him.</VERS>\r\n      <VERS vnumber=\"10\">But he knoweth the way that I take; When he hath tried me, I shall come forth as gold.</VERS>\r\n      <VERS vnumber=\"11\">My foot hath held fast to his steps; His way have I kept, and turned not aside.</VERS>\r\n      <VERS vnumber=\"12\">I have not gone back from the commandment of his lips; I have treasured up the words of his mouth more than my       necessary food.</VERS>\r\n      <VERS vnumber=\"13\">But he is in one [mind], and who can turn him? And what his soul desireth, even that he doeth.</VERS>\r\n      <VERS vnumber=\"14\">For he performeth that which is appointed for me: And many such things are with him.</VERS>\r\n      <VERS vnumber=\"15\">Therefore am I terrified at his presence; When I consider, I am afraid of him.</VERS>\r\n      <VERS vnumber=\"16\">For God hath made my heart faint, And the Almighty hath terrified me;</VERS>\r\n      <VERS vnumber=\"17\">Because I was not cut off before the darkness, Neither did he cover the thick darkness from my face.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"24\">\r\n      <VERS vnumber=\"1\">Why are times not laid up by the Almighty? And why do not they that know him see his days?</VERS>\r\n      <VERS vnumber=\"2\">There are that remove the landmarks; They violently take away flocks, and feed them.</VERS>\r\n      <VERS vnumber=\"3\">They drive away the ass of the fatherless; They take the widow`s ox for a pledge.</VERS>\r\n      <VERS vnumber=\"4\">They turn the needy out of the way: The poor of the earth all hide themselves.</VERS>\r\n      <VERS vnumber=\"5\">Behold, as wild asses in the desert They go forth to their work, seeking diligently for food; The wilderness [yieldeth] them bread for their children.</VERS>\r\n      <VERS vnumber=\"6\">They cut their provender in the field; And they glean the vintage of the wicked.</VERS>\r\n      <VERS vnumber=\"7\">They lie all night naked without clothing, And have no covering in the cold.</VERS>\r\n      <VERS vnumber=\"8\">They are wet with the showers of the mountains, And embrace the rock for want of a shelter.</VERS>\r\n      <VERS vnumber=\"9\">There are that pluck the fatherless from the breast, And take a pledge of the poor;</VERS>\r\n      <VERS vnumber=\"10\">[So that] they go about naked without clothing, And being hungry they carry the sheaves.</VERS>\r\n      <VERS vnumber=\"11\">They make oil within the walls of these men;  They tread [their] winepresses, and suffer thirst.</VERS>\r\n      <VERS vnumber=\"12\">From out of the populous city men groan,  And the soul of the wounded crieth out:  Yet God regardeth not the folly.</VERS>\r\n      <VERS vnumber=\"13\">These are of them that rebel against the light; They know not the ways thereof, Nor abide in the paths thereof.</VERS>\r\n      <VERS vnumber=\"14\">The murderer riseth with the light; He killeth the poor and needy; And in the night he is as a thief.</VERS>\r\n      <VERS vnumber=\"15\">The eye also of the adulterer waiteth for the twilight, Saying, No eye shall see me: And he disguiseth his face.</VERS>\r\n      <VERS vnumber=\"16\">In the dark they dig through houses: They shut themselves up in the day-time; They know not the light.</VERS>\r\n      <VERS vnumber=\"17\">For the morning is to all of them as thick darkness; For they know the terrors of the thick darkness.</VERS>\r\n      <VERS vnumber=\"18\">Swiftly they [pass away] upon the face of the waters; Their portion is cursed in the earth: They turn not into the way of the vineyards.</VERS>\r\n      <VERS vnumber=\"19\">Drought and heat consume the snow waters: [So doth] Sheol [those that] have sinned.</VERS>\r\n      <VERS vnumber=\"20\">The womb shall forget him; The worm shall feed sweetly on him; He shall be no more remembered; And unrighteousness shall be broken as a tree.</VERS>\r\n      <VERS vnumber=\"21\">He devoureth the barren that beareth not, And doeth not good to the widow.</VERS>\r\n      <VERS vnumber=\"22\">Yet [God] preserveth the mighty by his power: He riseth up that hath no assurance of life.</VERS>\r\n      <VERS vnumber=\"23\">[God] giveth them to be in security, and they rest       thereon; And his eyes are upon their ways.</VERS>\r\n      <VERS vnumber=\"24\">They are exalted; yet a little while, and they are gone; Yea, they are brought low, they are taken out of the way as all       others, And are cut off as the tops of the ears of grain.</VERS>\r\n      <VERS vnumber=\"25\">And if it be not so now, who will prove me a liar, And make my speech nothing worth?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"25\">\r\n      <VERS vnumber=\"1\">Then answered Bildad the Shuhite, and said,</VERS>\r\n      <VERS vnumber=\"2\">Dominion and fear are with him; He maketh peace in his high places.</VERS>\r\n      <VERS vnumber=\"3\">Is there any number of his armies? And upon whom doth not his light arise?</VERS>\r\n      <VERS vnumber=\"4\">How then can man be just with God? Or how can he be clean that is born of a woman?</VERS>\r\n      <VERS vnumber=\"5\">Behold, even the moon hath no brightness, And the stars are not pure in his sight:</VERS>\r\n      <VERS vnumber=\"6\">How much less man, that is a worm! And the son of man, that is a worm!</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"26\">\r\n      <VERS vnumber=\"1\">Then Job answered and said,</VERS>\r\n      <VERS vnumber=\"2\">How hast thou helped him that is without power! How hast thou saved the arm that hath no strength!</VERS>\r\n      <VERS vnumber=\"3\">How hast thou counselled him that hath no wisdom, And plentifully declared sound knowledge!</VERS>\r\n      <VERS vnumber=\"4\">To whom hast thou uttered words? And whose spirit came forth from thee?</VERS>\r\n      <VERS vnumber=\"5\">They that are deceased tremble Beneath the waters and the inhabitants thereof.</VERS>\r\n      <VERS vnumber=\"6\">Sheol is naked before [God], And Abaddon hath no covering.</VERS>\r\n      <VERS vnumber=\"7\">He stretcheth out the north over empty space, And hangeth the earth upon nothing.</VERS>\r\n      <VERS vnumber=\"8\">He bindeth up the waters in his thick clouds; And the cloud is not rent under them.</VERS>\r\n      <VERS vnumber=\"9\">He incloseth the face of his throne, And spreadeth his cloud upon it.</VERS>\r\n      <VERS vnumber=\"10\">He hath described a boundary upon the face of the waters, Unto the confines of light and darkness.</VERS>\r\n      <VERS vnumber=\"11\">The pillars of heaven tremble And are astonished at his rebuke.</VERS>\r\n      <VERS vnumber=\"12\">He stirreth up the sea with his power, And by his understanding he smiteth through Rahab.</VERS>\r\n      <VERS vnumber=\"13\">By his Spirit the heavens are garnished; His hand hath pierced the swift serpent.</VERS>\r\n      <VERS vnumber=\"14\">Lo, these are but the outskirts of his ways: And how small a whisper do we hear of him! But the thunder of his power who can understand?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"27\">\r\n      <VERS vnumber=\"1\">And Job again took up his parable, and said,</VERS>\r\n      <VERS vnumber=\"2\">As God liveth, who hath taken away my right, And the Almighty, who hath vexed my soul:</VERS>\r\n      <VERS vnumber=\"3\">(For my life is yet whole in me, And the spirit of God is in my nostrils);</VERS>\r\n      <VERS vnumber=\"4\">Surely my lips shall not speak unrighteousness, Neither shall my tongue utter deceit.</VERS>\r\n      <VERS vnumber=\"5\">Far be it from me that I should justify you: Till I die I will not put away mine integrity from me.</VERS>\r\n      <VERS vnumber=\"6\">My righteousness I hold fast, and will not let it go: My heart shall not reproach [me] so long as I live.</VERS>\r\n      <VERS vnumber=\"7\">Let mine enemy be as the wicked, And let him that riseth up against me be as the unrighteous.</VERS>\r\n      <VERS vnumber=\"8\">For what is the hope of the godless, though he get him       gain, When God taketh away his soul?</VERS>\r\n      <VERS vnumber=\"9\">Will God hear his cry, When trouble cometh upon him?</VERS>\r\n      <VERS vnumber=\"10\">Will he delight himself in the Almighty, And call upon God at all times?</VERS>\r\n      <VERS vnumber=\"11\">I will teach you concerning the hand of God; That which is with the Almighty will I not conceal.</VERS>\r\n      <VERS vnumber=\"12\">Behold, all ye yourselves have seen it; Why then are ye become altogether vain?</VERS>\r\n      <VERS vnumber=\"13\">This is the portion of a wicked man with God, And the heritage of oppressors, which they receive from the       Almighty:</VERS>\r\n      <VERS vnumber=\"14\">If his children be multiplied, it is for the sword; And his offspring shall not be satisfied with bread.</VERS>\r\n      <VERS vnumber=\"15\">Those that remain of him shall be buried in death, And his widows shall make no lamentation.</VERS>\r\n      <VERS vnumber=\"16\">Though he heap up silver as the dust, And prepare raiment as the clay;</VERS>\r\n      <VERS vnumber=\"17\">He may prepare it, but the just shall put it on, And the innocent shall divide the silver.</VERS>\r\n      <VERS vnumber=\"18\">He buildeth his house as the moth, And as a booth which the keeper maketh.</VERS>\r\n      <VERS vnumber=\"19\">He lieth down rich, but he shall not be gathered [to his       fathers]; He openeth his eyes, and he is not.</VERS>\r\n      <VERS vnumber=\"20\">Terrors overtake him like waters; A tempest stealeth him away in the night.</VERS>\r\n      <VERS vnumber=\"21\">The east wind carrieth him away, and he departeth; And it sweepeth him out of his place.</VERS>\r\n      <VERS vnumber=\"22\">For [God] shall hurl at him, and not spare: He would fain flee out of his hand.</VERS>\r\n      <VERS vnumber=\"23\">Men shall clap their hands at him, And shall hiss him out of his place.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"28\">\r\n      <VERS vnumber=\"1\">Surely there is a mine for silver,  And a place for gold which they refine.</VERS>\r\n      <VERS vnumber=\"2\">Iron is taken out of the earth, And copper is molten out of the stone.</VERS>\r\n      <VERS vnumber=\"3\">[Man] setteth an end to darkness, And searcheth out, to the furthest bound, The stones of obscurity and of thick darkness.</VERS>\r\n      <VERS vnumber=\"4\">He breaketh open a shaft away from where men sojourn; They are forgotten of the foot; They hang afar from men, they swing to and fro.</VERS>\r\n      <VERS vnumber=\"5\">As for the earth, out of it cometh bread; And underneath it is turned up as it were by fire.</VERS>\r\n      <VERS vnumber=\"6\">The stones thereof are the place of sapphires, And it hath dust of gold.</VERS>\r\n      <VERS vnumber=\"7\">That path no bird of prey knoweth, Neither hath the falcon`s eye seen it:</VERS>\r\n      <VERS vnumber=\"8\">The proud beasts have not trodden it, Nor hath the fierce lion passed thereby.</VERS>\r\n      <VERS vnumber=\"9\">He putteth forth his hand upon the flinty rock; He overturneth the mountains by the roots.</VERS>\r\n      <VERS vnumber=\"10\">He cutteth out channels among the rocks; And his eye seeth every precious thing.</VERS>\r\n      <VERS vnumber=\"11\">He bindeth the streams that they trickle not;  And the thing that is hid bringeth he forth to light.</VERS>\r\n      <VERS vnumber=\"12\">But where shall wisdom be found? And where is the place of understanding?</VERS>\r\n      <VERS vnumber=\"13\">Man knoweth not the price thereof; Neither is it found in the land of the living.</VERS>\r\n      <VERS vnumber=\"14\">The deep saith, It is not in me; And the sea saith, It is not with me.</VERS>\r\n      <VERS vnumber=\"15\">It cannot be gotten for gold, Neither shall silver be weighed for the price thereof.</VERS>\r\n      <VERS vnumber=\"16\">It cannot be valued with the gold of Ophir, With the precious onyx, or the sapphire.</VERS>\r\n      <VERS vnumber=\"17\">Gold and glass cannot equal it, Neither shall it be exchanged for jewels of fine gold.</VERS>\r\n      <VERS vnumber=\"18\">No mention shall be made of coral or of crystal: Yea, the price of wisdom is above rubies.</VERS>\r\n      <VERS vnumber=\"19\">The topaz of Ethiopia shall not equal it, Neither shall it be valued with pure gold.</VERS>\r\n      <VERS vnumber=\"20\">Whence then cometh wisdom? And where is the place of understanding?</VERS>\r\n      <VERS vnumber=\"21\">Seeing it is hid from the eyes of all living, And kept close from the birds of the heavens.</VERS>\r\n      <VERS vnumber=\"22\">Destruction and Death say, We have heard a rumor thereof with our ears.</VERS>\r\n      <VERS vnumber=\"23\">God understandeth the way thereof, And he knoweth the place thereof.</VERS>\r\n      <VERS vnumber=\"24\">For he looketh to the ends of the earth, And seeth under the whole heaven;</VERS>\r\n      <VERS vnumber=\"25\">To make a weight for the wind: Yea, he meteth out the waters by measure.</VERS>\r\n      <VERS vnumber=\"26\">When he made a decree for the rain, And a way for the lightning of the thunder;</VERS>\r\n      <VERS vnumber=\"27\">Then did he see it, and declare it; He established it, yea, and searched it out.</VERS>\r\n      <VERS vnumber=\"28\">And unto man he said, Behold, the fear of the Lord, that is wisdom; And to depart from evil is understanding.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"29\">\r\n      <VERS vnumber=\"1\">And Job again took up his parable, and said,</VERS>\r\n      <VERS vnumber=\"2\">Oh that I were as in the months of old, As in the days when God watched over me;</VERS>\r\n      <VERS vnumber=\"3\">When his lamp shined upon my head, And by his light I walked through darkness;</VERS>\r\n      <VERS vnumber=\"4\">As I was in the ripeness of my days, When the friendship of God was upon my tent;</VERS>\r\n      <VERS vnumber=\"5\">When the Almighty was yet with me, And my children were about me;</VERS>\r\n      <VERS vnumber=\"6\">When my steps were washed with butter, And the rock poured me out streams of oil!</VERS>\r\n      <VERS vnumber=\"7\">When I went forth to the gate unto the city, When I prepared my seat in the street,</VERS>\r\n      <VERS vnumber=\"8\">The young men saw me and hid themselves, And the aged rose up and stood;</VERS>\r\n      <VERS vnumber=\"9\">The princes refrained from talking, And laid their hand on their mouth;</VERS>\r\n      <VERS vnumber=\"10\">The voice of the nobles was hushed, And their tongue cleaved to the roof of their mouth.</VERS>\r\n      <VERS vnumber=\"11\">For when the ear heard [me], then it blessed me; And when the eye saw [me], it gave witness unto me:</VERS>\r\n      <VERS vnumber=\"12\">Because I delivered the poor that cried, The fatherless also, that had none to help him.</VERS>\r\n      <VERS vnumber=\"13\">The blessing of him that was ready to perish came upon       me; And I caused the widow`s heart to sing for joy.</VERS>\r\n      <VERS vnumber=\"14\">I put on righteousness, and it clothed me: My justice was as a robe and a diadem.</VERS>\r\n      <VERS vnumber=\"15\">I was eyes to the blind, And feet was I to the lame.</VERS>\r\n      <VERS vnumber=\"16\">I was a father to the needy: And the cause of him that I knew not I searched out.</VERS>\r\n      <VERS vnumber=\"17\">And I brake the jaws of the unrighteous, And plucked the prey out of his teeth.</VERS>\r\n      <VERS vnumber=\"18\">Then I said, I shall die in my nest, And I shall multiply my days as the sand:</VERS>\r\n      <VERS vnumber=\"19\">My root is spread out to the waters, And the dew lieth all night upon my branch;</VERS>\r\n      <VERS vnumber=\"20\">My glory is fresh in me, And my bow is renewed in my hand.</VERS>\r\n      <VERS vnumber=\"21\">Unto me men gave ear, and waited, And kept silence for my counsel.</VERS>\r\n      <VERS vnumber=\"22\">After my words they spake not again; And my speech distilled upon them.</VERS>\r\n      <VERS vnumber=\"23\">And they waited for me as for the rain; And they opened their mouth wide [as] for the latter rain.</VERS>\r\n      <VERS vnumber=\"24\">I smiled on them, when they had no confidence; And the light of my countenance they cast not down.</VERS>\r\n      <VERS vnumber=\"25\">I chose out their way, and sat [as] chief, And dwelt as a king in the army, As one that comforteth the mourners.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"30\">\r\n      <VERS vnumber=\"1\">But now they that are younger than I have me in derision, Whose fathers I disdained to set with the dogs of my flock.</VERS>\r\n      <VERS vnumber=\"2\">Yea, the strength of their hands, whereto should it       profit me? Men in whom ripe age is perished.</VERS>\r\n      <VERS vnumber=\"3\">They are gaunt with want and famine; They gnaw the dry ground, in the gloom of wasteness and       desolation.</VERS>\r\n      <VERS vnumber=\"4\">They pluck salt-wort by the bushes;  And the roots of the broom are their food.</VERS>\r\n      <VERS vnumber=\"5\">They are driven forth from the midst [of men]; They cry after them as after a thief;</VERS>\r\n      <VERS vnumber=\"6\">So that they dwell in frightful valleys, In holes of the earth and of the rocks.</VERS>\r\n      <VERS vnumber=\"7\">Among the bushes they bray; Under the nettles they are gathered together.</VERS>\r\n      <VERS vnumber=\"8\">[They are] children of fools, yea, children of base men; They were scourged out of the land.</VERS>\r\n      <VERS vnumber=\"9\">And now I am become their song, Yea, I am a byword unto them.</VERS>\r\n      <VERS vnumber=\"10\">They abhor me, they stand aloof from me, And spare not to spit in my face.</VERS>\r\n      <VERS vnumber=\"11\">For he hath loosed his cord, and afflicted me; And they have cast off the bridle before me.</VERS>\r\n      <VERS vnumber=\"12\">Upon my right hand rise the rabble; They thrust aside my feet, And they cast up against me their ways of destruction.</VERS>\r\n      <VERS vnumber=\"13\">They mar my path, They set forward my calamity, [Even] men that have no helper.</VERS>\r\n      <VERS vnumber=\"14\">As through a wide breach they come: In the midst of the ruin they roll themselves [upon me].</VERS>\r\n      <VERS vnumber=\"15\">Terrors are turned upon me; They chase mine honor as the wind; And my welfare is passed away as a cloud.</VERS>\r\n      <VERS vnumber=\"16\">And now my soul is poured out within me; Days of affliction have taken hold upon me.</VERS>\r\n      <VERS vnumber=\"17\">In the night season my bones are pierced in me, And the [pains] that gnaw me take no rest.</VERS>\r\n      <VERS vnumber=\"18\">By [God`s] great force is my garment disfigured; It bindeth me about as the collar of my coat.</VERS>\r\n      <VERS vnumber=\"19\">He hath cast me into the mire, And I am become like dust and ashes.</VERS>\r\n      <VERS vnumber=\"20\">I cry unto thee, and thou dost not answer me: I stand up, and thou gazest at me.</VERS>\r\n      <VERS vnumber=\"21\">Thou art turned to be cruel to me; With the might of thy hand thou persecutest me.</VERS>\r\n      <VERS vnumber=\"22\">Thou liftest me up to the wind, thou causest me to ride       [upon it];  And thou dissolvest me in the storm.</VERS>\r\n      <VERS vnumber=\"23\">For I know that thou wilt bring me to death, And to the house appointed for all living.</VERS>\r\n      <VERS vnumber=\"24\">Howbeit doth not one stretch out the hand in his fall? Or in his calamity therefore cry for help?</VERS>\r\n      <VERS vnumber=\"25\">Did not I weep for him that was in trouble? Was not my soul grieved for the needy?</VERS>\r\n      <VERS vnumber=\"26\">When I looked for good, then evil came; And when I waited for light, there came darkness.</VERS>\r\n      <VERS vnumber=\"27\">My heart is troubled, and resteth not;  Days of affliction are come upon me.</VERS>\r\n      <VERS vnumber=\"28\">I go mourning without the sun: I stand up in the assembly, and cry for help.</VERS>\r\n      <VERS vnumber=\"29\">I am a brother to jackals, And a companion to ostriches.</VERS>\r\n      <VERS vnumber=\"30\">My skin is black, [and falleth] from me, And my bones are burned with heat.</VERS>\r\n      <VERS vnumber=\"31\">Therefore is my harp [turned] to mourning, And my pipe into the voice of them that weep.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"31\">\r\n      <VERS vnumber=\"1\">I made a covenant with mine eyes; How then should I look upon a virgin?</VERS>\r\n      <VERS vnumber=\"2\">For what is the portion from God above, And the heritage from the Almighty on high?</VERS>\r\n      <VERS vnumber=\"3\">Is it not calamity to the unrighteous, And disaster to the workers of iniquity?</VERS>\r\n      <VERS vnumber=\"4\">Doth not he see my ways, And number all my steps?</VERS>\r\n      <VERS vnumber=\"5\">If I have walked with falsehood, And my foot hath hasted to deceit</VERS>\r\n      <VERS vnumber=\"6\">(Let me be weighed in an even balance, That God may know mine integrity);</VERS>\r\n      <VERS vnumber=\"7\">If my step hath turned out of the way, And my heart walked after mine eyes, And if any spot hath cleaved to my hands:</VERS>\r\n      <VERS vnumber=\"8\">Then let me sow, and let another eat; Yea, let the produce of my field be rooted out.</VERS>\r\n      <VERS vnumber=\"9\">If my heart hath been enticed unto a woman, And I have laid wait at my neighbor`s door;</VERS>\r\n      <VERS vnumber=\"10\">Then let my wife grind unto another, And let others bow down upon her.</VERS>\r\n      <VERS vnumber=\"11\">For that were a heinous crime; Yea, it were an iniquity to be punished by the judges:</VERS>\r\n      <VERS vnumber=\"12\">For it is a fire that consumeth unto Destruction, And would root out all mine increase.</VERS>\r\n      <VERS vnumber=\"13\">If I have despised the cause of my man-servant or of my       maid-servant, When they contended with me;</VERS>\r\n      <VERS vnumber=\"14\">What then shall I do when God riseth up? And when he visiteth, what shall I answer him?</VERS>\r\n      <VERS vnumber=\"15\">Did not he that made me in the womb make him? And did not one fashion us in the womb?</VERS>\r\n      <VERS vnumber=\"16\">If I have withheld the poor from [their] desire, Or have caused the eyes of the widow to fail,</VERS>\r\n      <VERS vnumber=\"17\">Or have eaten my morsel alone, And the fatherless hath not eaten thereof</VERS>\r\n      <VERS vnumber=\"18\">(Nay, from my youth he grew up with me as with a father,  And her have I guided from my mother`s womb);</VERS>\r\n      <VERS vnumber=\"19\">If I have seen any perish for want of clothing, Or that the needy had no covering;</VERS>\r\n      <VERS vnumber=\"20\">If his loins have not blessed me, And if he hath not been warmed with the fleece of my sheep;</VERS>\r\n      <VERS vnumber=\"21\">If I have lifted up my hand against the fatherless, Because I saw my help in the gate:</VERS>\r\n      <VERS vnumber=\"22\">Then let my shoulder fall from the shoulder-blade, And mine arm be broken from the bone.</VERS>\r\n      <VERS vnumber=\"23\">For calamity from God is a terror to me, And by reason of his majesty I can do nothing.</VERS>\r\n      <VERS vnumber=\"24\">If I have made gold my hope, And have said to the fine gold, [Thou art] my confidence;</VERS>\r\n      <VERS vnumber=\"25\">If I have rejoiced because my wealth was great, And because my hand had gotten much;</VERS>\r\n      <VERS vnumber=\"26\">If I have beheld the sun when it shined, Or the moon walking in brightness,</VERS>\r\n      <VERS vnumber=\"27\">And my heart hath been secretly enticed, And my mouth hath kissed my hand:</VERS>\r\n      <VERS vnumber=\"28\">This also were an iniquity to be punished by the judges; For I should have denied the God that is above.</VERS>\r\n      <VERS vnumber=\"29\">If I have rejoiced at the destruction of him that hated       me, Or lifted up myself when evil found him;</VERS>\r\n      <VERS vnumber=\"30\">(Yea, I have not suffered by mouth to sin By asking his life with a curse);</VERS>\r\n      <VERS vnumber=\"31\">If the men of my tent have not said, Who can find one that hath not been filled with his meat?</VERS>\r\n      <VERS vnumber=\"32\">(The sojourner hath not lodged in the street; But I have opened my doors to the traveller);</VERS>\r\n      <VERS vnumber=\"33\">If like Adam I have covered my transgressions, By hiding mine iniquity in my bosom,</VERS>\r\n      <VERS vnumber=\"34\">Because I feared the great multitude, And the contempt of families terrified me, So that I kept silence, and went not out of the door-</VERS>\r\n      <VERS vnumber=\"35\">Oh that I had one to hear me! (Lo, here is my signature, let the Almighty answer me); And [that I had] the indictment which mine adversary hath       written!</VERS>\r\n      <VERS vnumber=\"36\">Surely I would carry it upon my shoulder; I would bind it unto me as a crown:</VERS>\r\n      <VERS vnumber=\"37\">I would declare unto him the number of my steps; As a prince would I go near unto him.</VERS>\r\n      <VERS vnumber=\"38\">If my land crieth out against me, And the furrows thereof weep together;</VERS>\r\n      <VERS vnumber=\"39\">If I have eaten the fruits thereof without money, Or have caused the owners thereof to lose their life:</VERS>\r\n      <VERS vnumber=\"40\">Let thistles grow instead of wheat, And cockle instead of barley.          The words of Job are ended.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"32\">\r\n      <VERS vnumber=\"1\">So these three men ceased to answer Job, because he was righteous in his own eyes.</VERS>\r\n      <VERS vnumber=\"2\">Then was kindled the wrath of Elihu the son of Barachel the Buzite, of the family of Ram: against Job was his wrath kindled, because he justified himself rather than God.</VERS>\r\n      <VERS vnumber=\"3\">Also against his three friends was his wrath kindled, because they had found no answer, and yet had condemned Job.</VERS>\r\n      <VERS vnumber=\"4\">Now Elihu had waited to speak unto Job, because they were elder than he.</VERS>\r\n      <VERS vnumber=\"5\">And when Elihu saw that there was no answer in the mouth of these three men, his wrath was kindled.</VERS>\r\n      <VERS vnumber=\"6\">And Elihu the son of Barachel the Buzite answered and said, I am young, and ye are very old; Wherefore I held back, and durst not show you mine opinion.</VERS>\r\n      <VERS vnumber=\"7\">I said, Days should speak, And multitude of years should teach wisdom.</VERS>\r\n      <VERS vnumber=\"8\">But there is a spirit in man, And the breath of the Almighty giveth them understanding.</VERS>\r\n      <VERS vnumber=\"9\">It is not the great that are wise, Nor the aged that understand justice.</VERS>\r\n      <VERS vnumber=\"10\">Therefore I said, Hearken to me; I also will show mine opinion.</VERS>\r\n      <VERS vnumber=\"11\">Behold, I waited for your words, I listened for your reasonings, Whilst ye searched out what to say.</VERS>\r\n      <VERS vnumber=\"12\">Yea, I attended unto you, And, behold, there was none that convinced Job, Or that answered his words, among you.</VERS>\r\n      <VERS vnumber=\"13\">Beware lest ye say, We have found wisdom; God may vanquish him, not man:</VERS>\r\n      <VERS vnumber=\"14\">For he hath not directed his words against me; Neither will I answer him with your speeches.</VERS>\r\n      <VERS vnumber=\"15\">They are amazed, they answer no more: They have not a word to say.</VERS>\r\n      <VERS vnumber=\"16\">And shall I wait, because they speak not, Because they stand still, and answer no more?</VERS>\r\n      <VERS vnumber=\"17\">I also will answer my part, I also will show mine opinion.</VERS>\r\n      <VERS vnumber=\"18\">For I am full of words; The spirit within me constraineth me.</VERS>\r\n      <VERS vnumber=\"19\">Behold, my breast is as wine which hath no vent; Like new wine-skins it is ready to burst.</VERS>\r\n      <VERS vnumber=\"20\">I will speak, that I may be refreshed; I will open my lips and answer.</VERS>\r\n      <VERS vnumber=\"21\">Let me not, I pray you, respect any man`s person; Neither will I give flattering titles unto any man.</VERS>\r\n      <VERS vnumber=\"22\">For I know not to give flattering titles; [Else] would my Maker soon take me away.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"33\">\r\n      <VERS vnumber=\"1\">Howbeit, Job, I pray thee, hear my speech, And hearken to all my words.</VERS>\r\n      <VERS vnumber=\"2\">Behold now, I have opened my mouth; My tongue hath spoken in my mouth.</VERS>\r\n      <VERS vnumber=\"3\">My words [shall utter] the uprightness of my heart; And that which my lips know they shall speak sincerely.</VERS>\r\n      <VERS vnumber=\"4\">The Spirit of God hath made me, And the breath of the Almighty giveth me life.</VERS>\r\n      <VERS vnumber=\"5\">If thou canst, answer thou me; Set [thy words] in order before me, stand forth.</VERS>\r\n      <VERS vnumber=\"6\">Behold, I am toward God even as thou art: I also am formed out of the clay.</VERS>\r\n      <VERS vnumber=\"7\">Behold, my terror shall not make thee afraid, Neither shall my pressure be heavy upon thee.</VERS>\r\n      <VERS vnumber=\"8\">Surely thou hast spoken in my hearing, And I have heard the voice of [thy] words, [saying],</VERS>\r\n      <VERS vnumber=\"9\">I am clean, without transgression; I am innocent, neither is there iniquity in me:</VERS>\r\n      <VERS vnumber=\"10\">Behold, he findeth occasions against me, He counteth me for his enemy:</VERS>\r\n      <VERS vnumber=\"11\">He putteth my feet in the stocks, He marketh all my paths.</VERS>\r\n      <VERS vnumber=\"12\">Behold, I will answer thee, in this thou art not just; For God is greater than man.</VERS>\r\n      <VERS vnumber=\"13\">Why dost thou strive against him, For that he giveth not account of any of his matters?</VERS>\r\n      <VERS vnumber=\"14\">For God speaketh once, Yea twice, [though man] regardeth it not.</VERS>\r\n      <VERS vnumber=\"15\">In a dream, in a vision of the night, When deep sleep falleth upon men, In slumberings upon the bed;</VERS>\r\n      <VERS vnumber=\"16\">Then he openeth the ears of men, And sealeth their instruction,</VERS>\r\n      <VERS vnumber=\"17\">That he may withdraw man [from his] purpose, And hide pride from man;</VERS>\r\n      <VERS vnumber=\"18\">He keepeth back his soul from the pit, And his life from perishing by the sword.</VERS>\r\n      <VERS vnumber=\"19\">He is chastened also with pain upon his bed, And with continual strife in his bones;</VERS>\r\n      <VERS vnumber=\"20\">So that his life abhorreth bread, And his soul dainty food.</VERS>\r\n      <VERS vnumber=\"21\">His flesh is consumed away, that it cannot be seen; And his bones that were not seen stick out.</VERS>\r\n      <VERS vnumber=\"22\">Yea, his soul draweth near unto the pit, And his life to the destroyers.</VERS>\r\n      <VERS vnumber=\"23\">If there be with him an angel, An interpreter, one among a thousand, To show unto man what is right for him;</VERS>\r\n      <VERS vnumber=\"24\">Then [God] is gracious unto him, and saith, Deliver him from going down to the pit, I have found a ransom.</VERS>\r\n      <VERS vnumber=\"25\">His flesh shall be fresher than a child`s; He returneth to the days of his youth.</VERS>\r\n      <VERS vnumber=\"26\">He prayeth unto God, and he is favorable unto him, So that he seeth his face with joy: And he restoreth unto man his righteousness.</VERS>\r\n      <VERS vnumber=\"27\">He singeth before men, and saith, I have sinned, and perverted that which was right, And it profited me not:</VERS>\r\n      <VERS vnumber=\"28\">He hath redeemed my soul from going into the pit, And my life shall behold the light.</VERS>\r\n      <VERS vnumber=\"29\">Lo, all these things doth God work, Twice, [yea] thrice, with a man,</VERS>\r\n      <VERS vnumber=\"30\">To bring back his soul from the pit, That he may be enlightened with the light of the living.</VERS>\r\n      <VERS vnumber=\"31\">Mark well, O Job, hearken unto me: Hold thy peace, and I will speak.</VERS>\r\n      <VERS vnumber=\"32\">If thou hast anything to say, answer me: Speak, for I desire to justify thee.</VERS>\r\n      <VERS vnumber=\"33\">If not, hearken thou unto me: Hold thy peace, and I will teach thee wisdom.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"34\">\r\n      <VERS vnumber=\"1\">Moreover Elihu answered and said,</VERS>\r\n      <VERS vnumber=\"2\">Hear my words, ye wise men; And give ear unto me, ye that have knowledge.</VERS>\r\n      <VERS vnumber=\"3\">For the ear trieth words, As the palate tasteth food.</VERS>\r\n      <VERS vnumber=\"4\">Let us choose for us that which is right: Let us know among ourselves what is good.</VERS>\r\n      <VERS vnumber=\"5\">For Job hath said, I am righteous, And God hath taken away my right:</VERS>\r\n      <VERS vnumber=\"6\">Notwithstanding my right I am [accounted] a liar; My wound is incurable, [though I am] without transgression.</VERS>\r\n      <VERS vnumber=\"7\">What man is like Job, Who drinketh up scoffing like water,</VERS>\r\n      <VERS vnumber=\"8\">Who goeth in company with the workers of iniquity, And walketh with wicked men?</VERS>\r\n      <VERS vnumber=\"9\">For he hath said, It profiteth a man nothing That he should delight himself with God.</VERS>\r\n      <VERS vnumber=\"10\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"11\">For the work of a man will he render unto him, And cause every man to find according to his ways.</VERS>\r\n      <VERS vnumber=\"12\">Yea, of a surety, God will not do wickedly, Neither will the Almighty pervert justice.</VERS>\r\n      <VERS vnumber=\"13\">Who gave him a charge over the earth? Or who hath disposed the whole world?</VERS>\r\n      <VERS vnumber=\"14\">If he set his heart upon himself, [If] he gather unto himself his spirit and his breath;</VERS>\r\n      <VERS vnumber=\"15\">All flesh shall perish together, And man shall turn again unto dust.</VERS>\r\n      <VERS vnumber=\"16\">If now [thou hast] understanding, hear this: Hearken to the voice of my words.</VERS>\r\n      <VERS vnumber=\"17\">Shall even one that hateth justice govern? And wilt thou condemn him that is righteous [and] mighty?-</VERS>\r\n      <VERS vnumber=\"18\">[Him] that saith to a king, [Thou art] vile, [Or] to nobles, [Ye are] wicked;</VERS>\r\n      <VERS vnumber=\"19\">That respecteth not the persons of princes, Nor regardeth the rich more than the poor; For they all are the work of his hands.</VERS>\r\n      <VERS vnumber=\"20\">In a moment they die, even at midnight; The people are shaken and pass away, And the mighty are taken away without hand.</VERS>\r\n      <VERS vnumber=\"21\">For his eyes are upon the ways of a man, And he seeth all his goings.</VERS>\r\n      <VERS vnumber=\"22\">There is no darkness, nor thick gloom, Where the workers of iniquity may hide themselves.</VERS>\r\n      <VERS vnumber=\"23\">For he needeth not further to consider a man, That he should go before God in judgment.</VERS>\r\n      <VERS vnumber=\"24\">He breaketh in pieces mighty men [in ways] past finding       out, And setteth others in their stead.</VERS>\r\n      <VERS vnumber=\"25\">Therefore he taketh knowledge of their works; And he overturneth them in the night, so that they are destroyed.</VERS>\r\n      <VERS vnumber=\"26\">He striketh them as wicked men In the open sight of others;</VERS>\r\n      <VERS vnumber=\"27\">Because they turned aside from following him, And would not have regard in any of his ways:</VERS>\r\n      <VERS vnumber=\"28\">So that they caused the cry of the poor to come unto him, And he heard the cry of the afflicted.</VERS>\r\n      <VERS vnumber=\"29\">When he giveth quietness, who then can condemn? And when he hideth his face, who then can behold him? Alike whether [it be done] unto a nation, or unto a man:</VERS>\r\n      <VERS vnumber=\"30\">That the godless man reign not, That there be none to ensnare the people.</VERS>\r\n      <VERS vnumber=\"31\">For hath any said unto God, I have borne [chastisement], I will not offend [any more]:</VERS>\r\n      <VERS vnumber=\"32\">That which I see not teach thou me: If I have done iniquity, I will do it no more?</VERS>\r\n      <VERS vnumber=\"33\">Shall his recompense be as thou wilt, that thou refusest       it? For thou must choose, and not I: Therefore speak what thou knowest.</VERS>\r\n      <VERS vnumber=\"34\">Men of understanding will say unto me, Yea, every wise man that heareth me:</VERS>\r\n      <VERS vnumber=\"35\">Job speaketh without knowledge, And his words are without wisdom.</VERS>\r\n      <VERS vnumber=\"36\">Would that Job were tried unto the end, Because of his answering like wicked men.</VERS>\r\n      <VERS vnumber=\"37\">For he addeth rebellion unto his sin; He clappeth his hands among us, And multiplieth his words against God.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"35\">\r\n      <VERS vnumber=\"1\">Moreover Elihu answered and said,</VERS>\r\n      <VERS vnumber=\"2\">Thinkest thou this to be [thy] right, [Or] sayest thou, My righteousness is more than God`s,</VERS>\r\n      <VERS vnumber=\"3\">That thou sayest, What advantage will it be unto thee? [And], What profit shall I have, more than if I had sinned?</VERS>\r\n      <VERS vnumber=\"4\">I will answer thee, And thy companions with thee.</VERS>\r\n      <VERS vnumber=\"5\">Look unto the heavens, and see; And behold the skies, which are higher than thou.</VERS>\r\n      <VERS vnumber=\"6\">If thou hast sinned, what effectest thou against him? And if thy transgressions be multiplied, what doest thou unto       him?</VERS>\r\n      <VERS vnumber=\"7\">If thou be righteous, what givest thou him? Or what receiveth he of thy hand?</VERS>\r\n      <VERS vnumber=\"8\">Thy wickedness [may hurt] a man as thou art; And thy righteousness [may profit] a son of man.</VERS>\r\n      <VERS vnumber=\"9\">By reason of the multitude of oppressions they cry out; They cry for help by reason of the arm of the mighty.</VERS>\r\n      <VERS vnumber=\"10\">But none saith, Where is God my Maker, Who giveth songs in the night,</VERS>\r\n      <VERS vnumber=\"11\">Who teacheth us more than the beasts of the earth, And maketh us wiser than the birds of the heavens?</VERS>\r\n      <VERS vnumber=\"12\">There they cry, but none giveth answer, Because of the pride of evil men.</VERS>\r\n      <VERS vnumber=\"13\">Surely God will not hear an empty [cry], Neither will the Almighty regard it.</VERS>\r\n      <VERS vnumber=\"14\">How much less when thou sayest thou beholdest him not, The cause is before him, and thou waitest for him!</VERS>\r\n      <VERS vnumber=\"15\">But now, because he hath not visited in his anger, Neither doth he greatly regard arrogance;</VERS>\r\n      <VERS vnumber=\"16\">Therefore doth Job open his mouth in vanity; He multiplieth words without knowledge.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"36\">\r\n      <VERS vnumber=\"1\">Elihu also proceeded, and said,</VERS>\r\n      <VERS vnumber=\"2\">Suffer me a little, and I will show thee; For I have yet somewhat to say on God`s behalf.</VERS>\r\n      <VERS vnumber=\"3\">I will fetch my knowledge from afar, And will ascribe righteousness to my Maker.</VERS>\r\n      <VERS vnumber=\"4\">For truly my words are not false: One that is perfect in knowledge is with thee.</VERS>\r\n      <VERS vnumber=\"5\">Behold, God is mighty, and despiseth not any: He is mighty in strength of understanding.</VERS>\r\n      <VERS vnumber=\"6\">He preserveth not the life of the wicked, But giveth to the afflicted [their] right.</VERS>\r\n      <VERS vnumber=\"7\">He withdraweth not his eyes from the righteous: But with kings upon the throne He setteth them for ever, and they are exalted.</VERS>\r\n      <VERS vnumber=\"8\">And if they be bound in fetters, And be taken in the cords of afflictions;</VERS>\r\n      <VERS vnumber=\"9\">Then he showeth them their work, And their transgressions, that they have behaved themselves       proudly.</VERS>\r\n      <VERS vnumber=\"10\">He openeth also their ear to instruction, And commandeth that they return from iniquity.</VERS>\r\n      <VERS vnumber=\"11\">If they hearken and serve [him], They shall spend their days in prosperity, And their years in pleasures.</VERS>\r\n      <VERS vnumber=\"12\">But if they hearken not, they shall perish by the sword, And they shall die without knowledge.</VERS>\r\n      <VERS vnumber=\"13\">But they that are godless in heart lay up anger: They cry not for help when he bindeth them.</VERS>\r\n      <VERS vnumber=\"14\">They die in youth, And their life [perisheth] among the unclean.</VERS>\r\n      <VERS vnumber=\"15\">He delivereth the afflicted by their affliction, And openeth their ear in oppression.</VERS>\r\n      <VERS vnumber=\"16\">Yea, he would have allured thee out of distress Into a broad place, where there is no straitness; And that which is set on thy table would be full of fatness.</VERS>\r\n      <VERS vnumber=\"17\">But thou art full of the judgment of the wicked: Judgment and justice take hold [on thee].</VERS>\r\n      <VERS vnumber=\"18\">For let not wrath stir thee up against chastisements; Neither let the greatness of the ransom turn thee aside.</VERS>\r\n      <VERS vnumber=\"19\">Will thy cry avail, [that thou be] not in distress, Or all the forces of [thy] strength?</VERS>\r\n      <VERS vnumber=\"20\">Desire not the night, When peoples are cut off in their place.</VERS>\r\n      <VERS vnumber=\"21\">Take heed, regard not iniquity: For this hast thou chosen rather than affliction.</VERS>\r\n      <VERS vnumber=\"22\">Behold, God doeth loftily in his power: Who is a teacher like unto him?</VERS>\r\n      <VERS vnumber=\"23\">Who hath enjoined him his way? Or who can say, Thou hast wrought unrighteousness?</VERS>\r\n      <VERS vnumber=\"24\">Remember that thou magnify his work, Whereof men have sung.</VERS>\r\n      <VERS vnumber=\"25\">All men have looked thereon; Man beholdeth it afar off.</VERS>\r\n      <VERS vnumber=\"26\">Behold, God is great, and we know him not; The number of his years is unsearchable.</VERS>\r\n      <VERS vnumber=\"27\">For he draweth up the drops of water, Which distil in rain from his vapor,</VERS>\r\n      <VERS vnumber=\"28\">Which the skies pour down And drop upon man abundantly.</VERS>\r\n      <VERS vnumber=\"29\">Yea, can any understand the spreadings of the clouds, The thunderings of his pavilion?</VERS>\r\n      <VERS vnumber=\"30\">Behold, he spreadeth his light around him; And he covereth the bottom of the sea.</VERS>\r\n      <VERS vnumber=\"31\">For by these he judgeth the peoples; He giveth food in abundance.</VERS>\r\n      <VERS vnumber=\"32\">He covereth his hands with the lightning, And giveth it a charge that it strike the mark.</VERS>\r\n      <VERS vnumber=\"33\">The noise thereof telleth concerning him, The cattle also concerning [the storm] that cometh up.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"37\">\r\n      <VERS vnumber=\"1\">Yea, at this my heart trembleth, And is moved out of its place.</VERS>\r\n      <VERS vnumber=\"2\">Hear, oh, hear the noise of his voice, And the sound that goeth out of his mouth.</VERS>\r\n      <VERS vnumber=\"3\">He sendeth it forth under the whole heaven, And his lightening unto the ends of the earth.</VERS>\r\n      <VERS vnumber=\"4\">After it a voice roareth; He thundereth with the voice of his majesty; And he restraineth not [the lightnings] when his voice is heard.</VERS>\r\n      <VERS vnumber=\"5\">God thundereth marvellously with his voice; Great things doeth he, which we cannot comprehend.</VERS>\r\n      <VERS vnumber=\"6\">For he saith to the snow, Fall thou on the earth; Likewise to the shower of rain, And to the showers of his mighty rain.</VERS>\r\n      <VERS vnumber=\"7\">He sealeth up the hand of every man, That all men whom he hath made may know [it].</VERS>\r\n      <VERS vnumber=\"8\">Then the beasts go into coverts, And remain in their dens.</VERS>\r\n      <VERS vnumber=\"9\">Out of the chamber [of the south] cometh the storm, And cold out of the north.</VERS>\r\n      <VERS vnumber=\"10\">By the breath of God ice is given; And the breadth of the waters is straitened.</VERS>\r\n      <VERS vnumber=\"11\">Yea, he ladeth the thick cloud with moisture; He spreadeth abroad the cloud of his lightning:</VERS>\r\n      <VERS vnumber=\"12\">And it is turned round about by his guidance, That they may do whatsoever he commandeth them Upon the face of the habitable world,</VERS>\r\n      <VERS vnumber=\"13\">Whether it be for correction, or for his land, Or for lovingkindness, that he cause it to come.</VERS>\r\n      <VERS vnumber=\"14\">Hearken unto this, O Job: Stand still, and consider the wondrous works of God.</VERS>\r\n      <VERS vnumber=\"15\">Dost thou know how God layeth [his charge] upon them, And causeth the lightning of his cloud to shine?</VERS>\r\n      <VERS vnumber=\"16\">Dost thou know the balancings of the clouds, The wondrous works of him who is perfect in knowledge?</VERS>\r\n      <VERS vnumber=\"17\">How thy garments are warm, When the earth is still by reason of the south [wind]?</VERS>\r\n      <VERS vnumber=\"18\">Canst thou with him spread out the sky, Which is strong as a molten mirror?</VERS>\r\n      <VERS vnumber=\"19\">Teach us what we shall say unto him; [For] we cannot set [our speech] in order by reason of darkness.</VERS>\r\n      <VERS vnumber=\"20\">Shall it be told him that I would speak? Or should a man wish that he were swallowed up?</VERS>\r\n      <VERS vnumber=\"21\">And now men see not the light which is bright in the       skies; But the wind passeth, and cleareth them.</VERS>\r\n      <VERS vnumber=\"22\">Out of the north cometh golden splendor: God hath upon him terrible majesty.</VERS>\r\n      <VERS vnumber=\"23\">[Touching] the Almighty, we cannot find him out  He is excellent in power; And in justice and plenteous righteousness he will not afflict.</VERS>\r\n      <VERS vnumber=\"24\">Men do therefore fear him: He regardeth not any that are wise of heart.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"38\">\r\n      <VERS vnumber=\"1\">Then Jehovah answered Job out of the whirlwind, and said,</VERS>\r\n      <VERS vnumber=\"2\">Who is this that darkeneth counsel By words without knowledge?</VERS>\r\n      <VERS vnumber=\"3\">Gird up now thy loins like a man; For I will demand of thee, and declare thou unto me.</VERS>\r\n      <VERS vnumber=\"4\">Where wast thou when I laid the foundations of the earth? Declare, if thou hast understanding.</VERS>\r\n      <VERS vnumber=\"5\">Who determined the measures thereof, if thou knowest? Or who stretched the line upon it?</VERS>\r\n      <VERS vnumber=\"6\">Whereupon were the foundations thereof fastened? Or who laid the corner-stone thereof,</VERS>\r\n      <VERS vnumber=\"7\">When the morning stars sang together, And all the sons of God shouted for joy?</VERS>\r\n      <VERS vnumber=\"8\">Or [who] shut up the sea with doors, When it brake forth, [as if] it had issued out of the womb;</VERS>\r\n      <VERS vnumber=\"9\">When I made clouds the garment thereof, And thick darkness a swaddling-band for it,</VERS>\r\n      <VERS vnumber=\"10\">And marked out for it my bound, And set bars and doors,</VERS>\r\n      <VERS vnumber=\"11\">And said, Hitherto shalt thou come, but no further; And here shall thy proud waves be stayed?</VERS>\r\n      <VERS vnumber=\"12\">Hast thou commanded the morning since thy days [began], [And] caused the dayspring to know its place;</VERS>\r\n      <VERS vnumber=\"13\">That it might take hold of the ends of the earth, And the wicked be shaken out of it?</VERS>\r\n      <VERS vnumber=\"14\">It is changed as clay under the seal; And [all things] stand forth as a garment:</VERS>\r\n      <VERS vnumber=\"15\">And from the wicked their light is withholden, And the high arm is broken.</VERS>\r\n      <VERS vnumber=\"16\">Hast thou entered into the springs of the sea? Or hast thou walked in the recesses of the deep?</VERS>\r\n      <VERS vnumber=\"17\">Have the gates of death been revealed unto thee? Or hast thou seen the gates of the shadow of death?</VERS>\r\n      <VERS vnumber=\"18\">Hast thou comprehended the earth in its breadth? Declare, if thou knowest it all.</VERS>\r\n      <VERS vnumber=\"19\">Where is the way to the dwelling of light? And as for darkness, where is the place thereof,</VERS>\r\n      <VERS vnumber=\"20\">That thou shouldest take it to the bound thereof, And that thou shouldest discern the paths to the house thereof?</VERS>\r\n      <VERS vnumber=\"21\">[Doubtless], thou knowest, for thou wast then born, And the number of thy days is great!</VERS>\r\n      <VERS vnumber=\"22\">Hast thou entered the treasuries of the snow, Or hast thou seen the treasures of the hail,</VERS>\r\n      <VERS vnumber=\"23\">Which I have reserved against the time of trouble, Against the day of battle and war?</VERS>\r\n      <VERS vnumber=\"24\">By what way is the light parted, Or the east wind scattered upon the earth?</VERS>\r\n      <VERS vnumber=\"25\">Who hath cleft a channel for the waterflood, Or the way for the lightning of the thunder;</VERS>\r\n      <VERS vnumber=\"26\">To cause it to rain on a land where no man is; On the wilderness, wherein there is no man;</VERS>\r\n      <VERS vnumber=\"27\">To satisfy the waste and desolate [ground], And to cause the tender grass to spring forth?</VERS>\r\n      <VERS vnumber=\"28\">Hath the rain a father? Or who hath begotten the drops of dew?</VERS>\r\n      <VERS vnumber=\"29\">Out of whose womb came the ice? And the hoary frost of heaven, who hath gendered it?</VERS>\r\n      <VERS vnumber=\"30\">The waters hide themselves [and become] like stone, And the face of the deep is frozen.</VERS>\r\n      <VERS vnumber=\"31\">Canst thou bind the cluster of the Pleiades, Or loose the bands of Orion?</VERS>\r\n      <VERS vnumber=\"32\">Canst thou lead forth the Mazzaroth in their season? Or canst thou guide the Bear with her train?</VERS>\r\n      <VERS vnumber=\"33\">Knowest thou the ordinances of the heavens? Canst thou establish the dominion thereof in the earth?</VERS>\r\n      <VERS vnumber=\"34\">Canst thou lift up thy voice to the clouds, That abundance of waters may cover thee?</VERS>\r\n      <VERS vnumber=\"35\">Canst thou send forth lightnings, that they may go, And say unto thee, Here we are?</VERS>\r\n      <VERS vnumber=\"36\">Who hath put wisdom in the inward parts? Or who hath given understanding to the mind?</VERS>\r\n      <VERS vnumber=\"37\">Who can number the clouds by wisdom? Or who can pour out the bottles of heaven,</VERS>\r\n      <VERS vnumber=\"38\">When the dust runneth into a mass, And the clods cleave fast together?</VERS>\r\n      <VERS vnumber=\"39\">Canst thou hunt the prey for the lioness, Or satisfy the appetite of the young lions,</VERS>\r\n      <VERS vnumber=\"40\">When they couch in their dens, [And] abide in the covert to lie in wait?</VERS>\r\n      <VERS vnumber=\"41\">Who provideth for the raven his prey, When his young ones cry unto God, [And] wander for lack of food?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"39\">\r\n      <VERS vnumber=\"1\">Knowest thou the time when the wild goats of the rock       bring forth? [Or] canst thou mark when the hinds do calve?</VERS>\r\n      <VERS vnumber=\"2\">Canst thou number the months that they fulfil? Or knowest thou the time when they bring forth?</VERS>\r\n      <VERS vnumber=\"3\">They bow themselves, they bring forth their young, They cast out their pains.</VERS>\r\n      <VERS vnumber=\"4\">Their young ones become strong, they grow up in the open       field; They go forth, and return not again.</VERS>\r\n      <VERS vnumber=\"5\">Who hath sent out the wild ass free? Or who hath loosed the bonds of the swift ass,</VERS>\r\n      <VERS vnumber=\"6\">Whose home I have made the wilderness, And the salt land his dwelling-place?</VERS>\r\n      <VERS vnumber=\"7\">He scorneth the tumult of the city, Neither heareth he the shoutings of the driver.</VERS>\r\n      <VERS vnumber=\"8\">The range of the mountains is his pasture, And he searcheth after every green thing.</VERS>\r\n      <VERS vnumber=\"9\">Will the wild-ox be content to serve thee? Or will he abide by thy crib?</VERS>\r\n      <VERS vnumber=\"10\">Canst thou bind the wild-ox with his band in the furrow? Or will he harrow the valleys after thee?</VERS>\r\n      <VERS vnumber=\"11\">Wilt thou trust him, because his strength is great? Or wilt thou leave to him thy labor?</VERS>\r\n      <VERS vnumber=\"12\">Wilt thou confide in him, that he will bring home thy       seed, And gather [the grain] of thy threshing-floor?</VERS>\r\n      <VERS vnumber=\"13\">The wings of the ostrich wave proudly; [But] are they the pinions and plumage of love?</VERS>\r\n      <VERS vnumber=\"14\">For she leaveth her eggs on the earth, And warmeth them in the dust,</VERS>\r\n      <VERS vnumber=\"15\">And forgetteth that the foot may crush them, Or that the wild beast may trample them.</VERS>\r\n      <VERS vnumber=\"16\">She dealeth hardly with her young ones, as if they were       not hers: Though her labor be in vain, [she is] without fear;</VERS>\r\n      <VERS vnumber=\"17\">Because God hath deprived her of wisdom, Neither hath he imparted to her understanding.</VERS>\r\n      <VERS vnumber=\"18\">What time she lifteth up herself on high, She scorneth the horse and his rider.</VERS>\r\n      <VERS vnumber=\"19\">Hast thou given the horse [his] might? Hast thou clothed his neck with the quivering mane?</VERS>\r\n      <VERS vnumber=\"20\">Hast thou made him to leap as a locust? The glory of his snorting is terrible.</VERS>\r\n      <VERS vnumber=\"21\">He paweth in the valley, and rejoiceth in his strength: He goeth out to meet the armed men.</VERS>\r\n      <VERS vnumber=\"22\">He mocketh at fear, and is not dismayed; Neither turneth he back from the sword.</VERS>\r\n      <VERS vnumber=\"23\">The quiver rattleth against him, The flashing spear and the javelin.</VERS>\r\n      <VERS vnumber=\"24\">He swalloweth the ground with fierceness and rage; Neither believeth he that it is the voice of the trumpet.</VERS>\r\n      <VERS vnumber=\"25\">As oft as the trumpet [soundeth] he saith, Aha! And he smelleth the battle afar off, The thunder of the captains, and the shouting.</VERS>\r\n      <VERS vnumber=\"26\">Is it by thy wisdom that the hawk soareth, (And) stretcheth her wings toward the south?</VERS>\r\n      <VERS vnumber=\"27\">Is it at thy command that the eagle mounteth up, And maketh her nest on high?</VERS>\r\n      <VERS vnumber=\"28\">On the cliff she dwelleth, and maketh her home, Upon the point of the cliff, and the stronghold.</VERS>\r\n      <VERS vnumber=\"29\">From thence she spieth out the prey; Her eyes behold it afar off.</VERS>\r\n      <VERS vnumber=\"30\">Her young ones also suck up blood: And where the slain are, there is she.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"40\">\r\n      <VERS vnumber=\"1\">Moreover Jehovah answered Job, and said,</VERS>\r\n      <VERS vnumber=\"2\">Shall he that cavilleth contend with the Almighty? He that argueth with God, let him answer it.</VERS>\r\n      <VERS vnumber=\"3\">Then Job answered Jehovah, and said,</VERS>\r\n      <VERS vnumber=\"4\">Behold, I am of small account; What shall I answer thee? I lay my hand upon my mouth.</VERS>\r\n      <VERS vnumber=\"5\">Once have I spoken, and I will not answer; Yea, twice, but I will proceed no further.</VERS>\r\n      <VERS vnumber=\"6\">Then Jehovah answered Job out of the whirlwind, and said,</VERS>\r\n      <VERS vnumber=\"7\">Gird up thy loins now like a man: I will demand of thee, and declare thou unto me.</VERS>\r\n      <VERS vnumber=\"8\">Wilt thou even annul my judgment? Wilt thou condemn me, that thou mayest be justified?</VERS>\r\n      <VERS vnumber=\"9\">Or hast thou an arm like God? And canst thou thunder with a voice like him?</VERS>\r\n      <VERS vnumber=\"10\">Deck thyself now with excellency and dignity; And array thyself with honor and majesty.</VERS>\r\n      <VERS vnumber=\"11\">Pour forth the overflowings of thine anger; And look upon every one that is proud, and abase him.</VERS>\r\n      <VERS vnumber=\"12\">Look on every one that is proud, [and] bring him low; And tread down the wicked where they stand.</VERS>\r\n      <VERS vnumber=\"13\">Hide them in the dust together; Bind their faces in the hidden [place].</VERS>\r\n      <VERS vnumber=\"14\">Then will I also confess of thee That thine own right hand can save thee.</VERS>\r\n      <VERS vnumber=\"15\">Behold now, behemoth, which I made as well as thee; He eateth grass as an ox.</VERS>\r\n      <VERS vnumber=\"16\">Lo now, his strength is in his loins, And his force is in the muscles of his belly.</VERS>\r\n      <VERS vnumber=\"17\">He moveth his tail like a cedar: The sinews of his thighs are knit together.</VERS>\r\n      <VERS vnumber=\"18\">His bones are [as] tubes of brass; His limbs are like bars of iron.</VERS>\r\n      <VERS vnumber=\"19\">He is the chief of the ways of God: He [only] that made him giveth him his sword.</VERS>\r\n      <VERS vnumber=\"20\">Surely the mountains bring him forth food, Where all the beasts of the field do play.</VERS>\r\n      <VERS vnumber=\"21\">He lieth under the lotus-trees, In the covert of the reed, and the fen.</VERS>\r\n      <VERS vnumber=\"22\">The lotus-trees cover him with their shade; The willows of the brook compass him about.</VERS>\r\n      <VERS vnumber=\"23\">Behold, if a river overflow, he trembleth not; He is confident, though a Jordan swell even to his mouth.</VERS>\r\n      <VERS vnumber=\"24\">Shall any take him when he is on the watch, Or pierce through his nose with a snare?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"41\">\r\n      <VERS vnumber=\"1\">Canst thou draw out leviathan with a fishhook? Or press down his tongue with a cord?</VERS>\r\n      <VERS vnumber=\"2\">Canst thou put a rope into his nose? Or pierce his jaw through with a hook?</VERS>\r\n      <VERS vnumber=\"3\">Will he make many supplications unto thee? Or will he speak soft words unto thee?</VERS>\r\n      <VERS vnumber=\"4\">Will he make a covenant with thee, That thou shouldest take him for a servant for ever?</VERS>\r\n      <VERS vnumber=\"5\">Wilt thou play with him as with a bird? Or wilt thou bind him for thy maidens?</VERS>\r\n      <VERS vnumber=\"6\">Will the bands [of fishermen] make traffic of him? Will they part him among the merchants?</VERS>\r\n      <VERS vnumber=\"7\">Canst thou fill his skin with barbed irons, Or his head with fish-spears?</VERS>\r\n      <VERS vnumber=\"8\">Lay thy hand upon him; Remember the battle, and do so no more.</VERS>\r\n      <VERS vnumber=\"9\">Behold, the hope of him is in vain: Will not one be cast down even at the sight of him?</VERS>\r\n      <VERS vnumber=\"10\">None is so fierce that he dare stir him up; Who then is he that can stand before me?</VERS>\r\n      <VERS vnumber=\"11\">Who hath first given unto me, that I should repay him? [Whatsoever is] under the whole heaven is mine.</VERS>\r\n      <VERS vnumber=\"12\">I will not keep silence concerning his limbs, Nor his mighty strength, nor his goodly frame.</VERS>\r\n      <VERS vnumber=\"13\">Who can strip off his outer garment? Who shall come within his jaws?</VERS>\r\n      <VERS vnumber=\"14\">Who can open the doors of his face? Round about his teeth is terror.</VERS>\r\n      <VERS vnumber=\"15\">[His] strong scales are [his] pride, Shut up together [as with] a close seal.</VERS>\r\n      <VERS vnumber=\"16\">One is so near to another, That no air can come between them.</VERS>\r\n      <VERS vnumber=\"17\">They are joined one to another; They stick together, so that they cannot be sundered.</VERS>\r\n      <VERS vnumber=\"18\">His sneezings flash forth light, And his eyes are like the eyelids of the morning.</VERS>\r\n      <VERS vnumber=\"19\">Out of his mouth go burning torches, And sparks of fire leap forth.</VERS>\r\n      <VERS vnumber=\"20\">Out of his nostrils a smoke goeth, As of a boiling pot and [burning] rushes.</VERS>\r\n      <VERS vnumber=\"21\">His breath kindleth coals, And a flame goeth forth from his mouth.</VERS>\r\n      <VERS vnumber=\"22\">In his neck abideth strength, And terror danceth before him.</VERS>\r\n      <VERS vnumber=\"23\">The flakes of his flesh are joined together: They are firm upon him; they cannot be moved.</VERS>\r\n      <VERS vnumber=\"24\">His heart is as firm as a stone; Yea, firm as the nether millstone.</VERS>\r\n      <VERS vnumber=\"25\">When he raiseth himself up, the mighty are afraid: By reason of consternation they are beside themselves.</VERS>\r\n      <VERS vnumber=\"26\">If one lay at him with the sword, it cannot avail; Nor the spear, the dart, nor the pointed shaft.</VERS>\r\n      <VERS vnumber=\"27\">He counteth iron as straw, [And] brass as rotten wood.</VERS>\r\n      <VERS vnumber=\"28\">The arrow cannot make him flee: Sling-stones are turned with him into stubble.</VERS>\r\n      <VERS vnumber=\"29\">Clubs are counted as stubble: He laugheth at the rushing of the javelin.</VERS>\r\n      <VERS vnumber=\"30\">His underparts are [like] sharp potsherds: He spreadeth [as it were] a threshing-wain upon the mire.</VERS>\r\n      <VERS vnumber=\"31\">He maketh the deep to boil like a pot: He maketh the sea like a pot of ointment.</VERS>\r\n      <VERS vnumber=\"32\">He maketh a path to shine after him; One would think the deep to be hoary.</VERS>\r\n      <VERS vnumber=\"33\">Upon earth there is not his like, That is made without fear.</VERS>\r\n      <VERS vnumber=\"34\">He beholdeth everything that is high: He is king over all the sons of pride.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"42\">\r\n      <VERS vnumber=\"1\">Then Job answered Jehovah, and said,</VERS>\r\n      <VERS vnumber=\"2\">I know that thou canst do all things, And that no purpose of thine can be restrained.</VERS>\r\n      <VERS vnumber=\"3\">Who is this that hideth counsel without knowledge? Therefore have I uttered that which I understood not, Things too wonderful for me, which I knew not.</VERS>\r\n      <VERS vnumber=\"4\">Hear, I beseech thee, and I will speak; I will demand of thee, and declare thou unto me.</VERS>\r\n      <VERS vnumber=\"5\">I had heard of thee by the hearing of the ear; But now mine eye seeth thee:</VERS>\r\n      <VERS vnumber=\"6\">Wherefore I abhor [myself], And repent in dust and ashes.</VERS>\r\n      <VERS vnumber=\"7\">And it was so, that, after Jehovah had spoken these words unto Job, Jehovah 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.</VERS>\r\n      <VERS vnumber=\"8\">Now therefore, take unto you 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, that I deal not with you after your folly; for ye have not spoken of me the thing that is right, as my servant Job hath.</VERS>\r\n      <VERS vnumber=\"9\">So Eliphaz the Temanite and Bildad the Shuhite and Zophar the Naamathite went, and did according as Jehovah commanded them: and Jehovah accepted Job.</VERS>\r\n      <VERS vnumber=\"10\">And Jehovah turned the captivity of Job, when he prayed for his friends: and Jehovah gave Job twice as much as he had before.</VERS>\r\n      <VERS vnumber=\"11\">Then 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 concerning all the evil that Jehovah had brought upon him: every man also gave him a piece of money, and every one a ring of gold.</VERS>\r\n      <VERS vnumber=\"12\">So Jehovah blessed the latter end of Job more than his beginning: And he had fourteen thousand sheep, and six thousand camels, and a thousand yoke of oxen, and a thousand she-asses.</VERS>\r\n      <VERS vnumber=\"13\">He had also seven sons and three daughters.</VERS>\r\n      <VERS vnumber=\"14\">And he called the name of the first, Jemimah: and the name of the second, Keziah; and the name of the third, Keren-happuch.</VERS>\r\n      <VERS vnumber=\"15\">And in all the land were no women found so fair as the daughters of Job: and their father gave them inheritance among their brethren.</VERS>\r\n      <VERS vnumber=\"16\">And after this Job lived a hundred and forty years, and saw his sons, and his sons` sons, [even] four generations.</VERS>\r\n      <VERS vnumber=\"17\">So Job died, being old and full of days.                      Book I  Psalm 1</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"19\" bname=\"Psalm\" bsname=\"Ps\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">Blessed is the man that walketh not in the counsel of the       wicked, Nor standeth in the way of sinners, Nor sitteth in the seat of scoffers:</VERS>\r\n      <VERS vnumber=\"2\">But his delight is in the law of Jehovah; And on his law doth he meditate day and night.</VERS>\r\n      <VERS vnumber=\"3\">And he shall be like a tree planted by the streams of       water, That bringeth forth its fruit in its season, Whose leaf also doth not wither; And whatsoever he doeth shall prosper.</VERS>\r\n      <VERS vnumber=\"4\">The wicked are not so, But are like the chaff which the wind driveth away.</VERS>\r\n      <VERS vnumber=\"5\">Therefore the wicked shall not stand in the judgment, Nor sinners in the congregation of the righteous.</VERS>\r\n      <VERS vnumber=\"6\">For Jehovah knoweth the way of the righteous; But the way of the wicked shall perish.           Psalm 2</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">Why do the nations rage, And the peoples meditate a vain thing?</VERS>\r\n      <VERS vnumber=\"2\">The kings of the earth set themselves, And the rulers take counsel together, Against Jehovah, and against his anointed, [saying],</VERS>\r\n      <VERS vnumber=\"3\">Let us break their bonds asunder, And cast away their cords from us.</VERS>\r\n      <VERS vnumber=\"4\">He that sitteth in the heavens will laugh: The Lord will have them in derision.</VERS>\r\n      <VERS vnumber=\"5\">Then will he speak unto them in his wrath, And vex them in his sore displeasure:</VERS>\r\n      <VERS vnumber=\"6\">Yet I have set my king Upon my holy hill of Zion.</VERS>\r\n      <VERS vnumber=\"7\">I will tell of the decree: Jehovah said unto me, Thou art my son; This day have I begotten thee.</VERS>\r\n      <VERS vnumber=\"8\">Ask of me, and I will give [thee] the nations for thine       inheritance, And the uttermost parts of the earth for thy possession.</VERS>\r\n      <VERS vnumber=\"9\">Thou shalt break them with a rod of iron; Thou shalt dash them in pieces like a potter`s vessel.</VERS>\r\n      <VERS vnumber=\"10\">Now therefore be wise, O ye kings: Be instructed, ye judges of the earth.</VERS>\r\n      <VERS vnumber=\"11\">Serve Jehovah with fear, And rejoice with trembling.</VERS>\r\n      <VERS vnumber=\"12\">Kiss the son, lest he be angry, and ye perish in the way, For his wrath will soon be kindled. Blessed are all they that take refuge in him.           Psalm 3  A Psalm of David, when he fled from Absalom his son.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Jehovah, how are mine adversaries increased! Many are they that rise up against me.</VERS>\r\n      <VERS vnumber=\"2\">Many there are that say of my soul, There is no help for him in God.     Selah</VERS>\r\n      <VERS vnumber=\"3\">But thou, O Jehovah, art a shield about me; My glory and the lifter up of my head.</VERS>\r\n      <VERS vnumber=\"4\">I cry unto Jehovah with my voice, And he answereth me out of his holy hill.     Selah</VERS>\r\n      <VERS vnumber=\"5\">I laid me down and slept; I awaked; for Jehovah sustaineth me.</VERS>\r\n      <VERS vnumber=\"6\">I will not be afraid of ten thousands of the people That have set themselves against me round about.</VERS>\r\n      <VERS vnumber=\"7\">Arise, O Jehovah; save me, O my God: For thou hast smitten all mine enemies upon the cheek bone; Thou hast broken the teeth of the wicked.</VERS>\r\n      <VERS vnumber=\"8\">Salvation belongeth unto Jehovah: Thy blessing be upon thy people.     Selah           Psalm 4  For the Chief Musician; on stringed instruments. A Psalm of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">Answer me when I call, O God of my righteousness; Thou hast set me at large [when I was] in distress: Have mercy upon me, and hear my prayer.</VERS>\r\n      <VERS vnumber=\"2\">O ye sons of men, how long shall my glory be turned into       dishonor? [How long] will ye love vanity, and seek after falsehood?     Selah</VERS>\r\n      <VERS vnumber=\"3\">But know that Jehovah hath set apart for himself him that       is godly: Jehovah will hear when I call unto him.</VERS>\r\n      <VERS vnumber=\"4\">Stand in awe, and sin not: Commune with your own heart upon your bed, and be still.     Selah</VERS>\r\n      <VERS vnumber=\"5\">Offer the sacrifices of righteousness, And put your trust in Jehovah.</VERS>\r\n      <VERS vnumber=\"6\">Many there are that say, Who will show us [any] good? Jehovah, lift thou up the light of thy countenance upon us.</VERS>\r\n      <VERS vnumber=\"7\">Thou hast put gladness in my heart, More than [they have] when their grain and their new wine are       increased.</VERS>\r\n      <VERS vnumber=\"8\">In peace will I both lay me down and sleep; For thou, Jehovah, alone makest me dwell in safety.           Psalm 5  For the Chief Musician; with the Nehiloth. A Psalm of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">Give ear to my words, O Jehovah, Consider my meditation.</VERS>\r\n      <VERS vnumber=\"2\">Hearken unto the voice of my cry, my King, and my God; For unto thee do I pray.</VERS>\r\n      <VERS vnumber=\"3\">O Jehovah, in the morning shalt thou hear my voice; In the morning will I order [my prayer] unto thee, and will keep       watch.</VERS>\r\n      <VERS vnumber=\"4\">For thou art not a God that hath pleasure in wickedness: Evil shall not sojourn with thee.</VERS>\r\n      <VERS vnumber=\"5\">The arrogant shall not stand in thy sight: Thou hatest all workers of iniquity.</VERS>\r\n      <VERS vnumber=\"6\">Thou wilt destroy them that speak lies: Jehovah abhorreth the blood-thirsty and deceitful man.</VERS>\r\n      <VERS vnumber=\"7\">But as for me, in the abundance of thy lovingkindness will       I come into thy house: In thy fear will I worship toward thy holy temple.</VERS>\r\n      <VERS vnumber=\"8\">Lead me, O Jehovah, in thy righteousness because of mine       enemies; Make thy way straight before my face.</VERS>\r\n      <VERS vnumber=\"9\">For there is no faithfulness in their mouth; Their inward part is very wickedness; Their throat is an open sepulchre; They flatter with their tongue.</VERS>\r\n      <VERS vnumber=\"10\">Hold them guilty, O God; Let them fall by their own counsels; Thrust them out in the multitude of their transgressions; For they have rebelled against thee.</VERS>\r\n      <VERS vnumber=\"11\">But let all those that take refuge in thee rejoice, Let them ever shout for joy, because thou defendest them: Let them also that love thy name be joyful in thee.</VERS>\r\n      <VERS vnumber=\"12\">For thou wilt bless the righteous; O Jehovah, thou wilt compass him with favor as with a shield.           Psalm 6  For the Chief Musician; on stringed instruments, set to the Sheminith. A Psalm of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">O Jehovah, rebuke me not in thine anger, Neither chasten me in thy hot displeasure.</VERS>\r\n      <VERS vnumber=\"2\">Have mercy upon me, O Jehovah; for I am withered away: O Jehovah, heal me; for my bones are troubled.</VERS>\r\n      <VERS vnumber=\"3\">My soul also is sore troubled: And thou, O Jehovah, how long?</VERS>\r\n      <VERS vnumber=\"4\">Return, O Jehovah, deliver my soul: Save me for thy lovingkindness` sake.</VERS>\r\n      <VERS vnumber=\"5\">For in death there is no remembrance of thee: In Sheol who shall give thee thanks?</VERS>\r\n      <VERS vnumber=\"6\">I am weary with my groaning; Every night make I my bed to swim; I water my couch with my tears.</VERS>\r\n      <VERS vnumber=\"7\">Mine eye wasteth away because of grief; It waxeth old because of all mine adversaries.</VERS>\r\n      <VERS vnumber=\"8\">Depart from me, all ye workers of iniquity; For Jehovah hath heard the voice of my weeping.</VERS>\r\n      <VERS vnumber=\"9\">Jehovah hath heard my supplication; Jehovah will receive my prayer.</VERS>\r\n      <VERS vnumber=\"10\">All mine enemies shall be put to shame and sore troubled: They shall turn back, they shall be put to shame suddenly.           Psalm 7  Shiggaion of David, which he sang unto Jehova, concerning the words of Cush a Benjamite.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">O Jehovah my God, in thee do I take refuge: Save me from all them that pursue me, and deliver me,</VERS>\r\n      <VERS vnumber=\"2\">Lest they tear my soul like a lion, Rending it in pieces, while there is none to deliver.</VERS>\r\n      <VERS vnumber=\"3\">O Jehovah my God, if I have done this; If there be iniquity in my hands;</VERS>\r\n      <VERS vnumber=\"4\">If I have rewarded evil unto him that was at peace with me; (Yea, I have delivered him that without cause was mine       adversary;)</VERS>\r\n      <VERS vnumber=\"5\">Let the enemy pursue my soul, and overtake it; Yea, let him tread my life down to the earth, And lay my glory in the dust.     Selah</VERS>\r\n      <VERS vnumber=\"6\">Arise, O Jehovah, in thine anger; Lift up thyself against the rage of mine adversaries, And awake for me; thou hast commanded judgment.</VERS>\r\n      <VERS vnumber=\"7\">And let the congregation of the peoples compass thee about; And over them return thou on high.</VERS>\r\n      <VERS vnumber=\"8\">Jehovah ministereth judgment to the peoples: Judge me, O Jehovah, according to my righteousness, and to mine       integrity that is in me.</VERS>\r\n      <VERS vnumber=\"9\">O let the wickedness of the wicked come to an end, but       establish thou the righteous: For the righteous God trieth the minds and hearts.</VERS>\r\n      <VERS vnumber=\"10\">My shield is with God, Who saveth the upright in heart.</VERS>\r\n      <VERS vnumber=\"11\">God is a righteous judge, Yea, a God that hath indignation every day.</VERS>\r\n      <VERS vnumber=\"12\">If a man turn not, he will whet his sword; He hath bent his bow, and made it ready.</VERS>\r\n      <VERS vnumber=\"13\">He hath also prepared for him the instruments of death; He maketh his arrows fiery [shafts].</VERS>\r\n      <VERS vnumber=\"14\">Behold, he travaileth with iniquity; Yea, he hath conceived mischief, and brought forth falsehood.</VERS>\r\n      <VERS vnumber=\"15\">He hath made a pit, and digged it, And is fallen into the ditch which he made.</VERS>\r\n      <VERS vnumber=\"16\">His mischief shall return upon his own head, And his violence shall come down upon his own pate.</VERS>\r\n      <VERS vnumber=\"17\">I will give thanks unto Jehovah according to his       righteousness, And will sing praise to the name of Jehovah Most High.           Psalm 8  For the Chief Musician; set to the Gittith. A Psalm of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">O Jehovah, our Lord, How excellent is thy name in all the       earth, Who hast set thy glory upon the heavens!</VERS>\r\n      <VERS vnumber=\"2\">Out of the mouth of babes and sucklings hast thou       established strength, Because of thine adversaries, That thou mightest still the enemy and the avenger.</VERS>\r\n      <VERS vnumber=\"3\">When I consider thy heavens, the work of thy fingers, The moon and the stars, which thou hast ordained;</VERS>\r\n      <VERS vnumber=\"4\">What is man, that thou art mindful of him? And the son of man, that thou visitest him?</VERS>\r\n      <VERS vnumber=\"5\">For thou hast made him but little lower than God, And crownest him with glory and honor.</VERS>\r\n      <VERS vnumber=\"6\">Thou makest him to have dominion over the works of thy       hands; Thou hast put all things under his feet:</VERS>\r\n      <VERS vnumber=\"7\">All sheep and oxen, Yea, and the beasts of the field,</VERS>\r\n      <VERS vnumber=\"8\">The birds of the heavens, and the fish of the sea, Whatsoever passeth through the paths of the seas.</VERS>\r\n      <VERS vnumber=\"9\">O Jehovah, our Lord, How excellent is thy name in all the earth!           Psalm 9  For the Chief Musician; set to Muthlabben. A Psalm of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">I will give thanks unto Jehovah with my whole heart; I will show forth all thy marvellous works.</VERS>\r\n      <VERS vnumber=\"2\">I will be glad and exult in thee; I will sing praise to thy name, O thou Most High.</VERS>\r\n      <VERS vnumber=\"3\">When mine enemies turn back, They stumble and perish at thy presence.</VERS>\r\n      <VERS vnumber=\"4\">For thou hast maintained my right and my cause; Thou sittest in the throne judging righteously.</VERS>\r\n      <VERS vnumber=\"5\">Thou hast rebuked the nations, thou hast destroyed the       wicked; Thou hast blotted out their name for ever and ever.</VERS>\r\n      <VERS vnumber=\"6\">The enemy are come to an end, they are desolate for ever; And the cities which thou hast overthrown, The very remembrance of them is perished.</VERS>\r\n      <VERS vnumber=\"7\">But Jehovah sitteth [as king] for ever: He hath prepared his throne for judgment;</VERS>\r\n      <VERS vnumber=\"8\">And he will judge the world in righteousness, He will minister judgment to the peoples in uprightness.</VERS>\r\n      <VERS vnumber=\"9\">Jehovah also will be a high tower for the oppressed, A high tower in times of trouble;</VERS>\r\n      <VERS vnumber=\"10\">And they that know thy name will put their trust in thee; For thou, Jehovah, hast not forsaken them that seek thee.</VERS>\r\n      <VERS vnumber=\"11\">Sing praises to Jehovah, who dwelleth in Zion: Declare among the people his doings.</VERS>\r\n      <VERS vnumber=\"12\">For he that maketh inquisition for blood remembereth them; He forgetteth not the cry of the poor.</VERS>\r\n      <VERS vnumber=\"13\">Have mercy upon me, O Jehovah; Behold my affliction [which I suffer] of them that hate me, Thou that liftest me up from the gates of death;</VERS>\r\n      <VERS vnumber=\"14\">That I may show forth all thy praise. In the gates of the daughter of Zion I will rejoice in thy salvation.</VERS>\r\n      <VERS vnumber=\"15\">The nations are sunk down in the pit that they made: In the net which they hid is their own foot taken.</VERS>\r\n      <VERS vnumber=\"16\">Jehovah hath made himself known, he hath executed       judgment: The wicked is snared in the work of his own hands.     Higgaion. Selah</VERS>\r\n      <VERS vnumber=\"17\">The wicked shall be turned back unto Sheol, Even all the nations that forget God.</VERS>\r\n      <VERS vnumber=\"18\">For the needy shall not alway be forgotten, Nor the expectation of the poor perish for ever.</VERS>\r\n      <VERS vnumber=\"19\">Arise, O Jehovah; let not man prevail: Let the nations be judged in thy sight.</VERS>\r\n      <VERS vnumber=\"20\">Put them in fear, O Jehovah: Let the nations know themselves to be but men.     Selah           Psalm 10</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">Why standest thou afar off, O Jehovah? Why hidest thou thyself in times of trouble?</VERS>\r\n      <VERS vnumber=\"2\">In the pride of the wicked the poor is hotly pursued; Let them be taken in the devices that they have conceived.</VERS>\r\n      <VERS vnumber=\"3\">For the wicked boasteth of his heart`s desire, And the covetous renounceth, [yea], contemneth Jehovah.</VERS>\r\n      <VERS vnumber=\"4\">The wicked, in the pride of his countenance, [saith], He       will not require [it]. All his thoughts are, There is no God.</VERS>\r\n      <VERS vnumber=\"5\">His ways are firm at all times; Thy judgments are far above out of his sight: As for all his adversaries, he puffeth at them.</VERS>\r\n      <VERS vnumber=\"6\">He saith in his heart, I shall not be moved; To all generations I shall not be in adversity.</VERS>\r\n      <VERS vnumber=\"7\">His mouth is full of cursing and deceit and oppression: Under his tongue is mischief and iniquity.</VERS>\r\n      <VERS vnumber=\"8\">He sitteth in the lurking-places of the villages; In the secret places doth he murder the innocent; His eyes are privily set against the helpless.</VERS>\r\n      <VERS vnumber=\"9\">He lurketh in secret as a lion in his covert; He lieth in wait to catch the poor: He doth catch the poor, when he draweth him in his net.</VERS>\r\n      <VERS vnumber=\"10\">He croucheth, he boweth down, And the helpless fall by his strong ones.</VERS>\r\n      <VERS vnumber=\"11\">He saith in his heart, God hath forgotten; He hideth his face; he will never see it.</VERS>\r\n      <VERS vnumber=\"12\">Arise, O Jehovah; O God, lift up thy hand: Forget not the poor.</VERS>\r\n      <VERS vnumber=\"13\">Wherefore doth the wicked contemn God, And say in his heart, Thou wilt not require [it]?</VERS>\r\n      <VERS vnumber=\"14\">Thou hast seen [it]; for thou beholdest mischief and       spite, to requite it with thy hand: The helpless committeth [himself] unto thee; Thou hast been the helper of the fatherless.</VERS>\r\n      <VERS vnumber=\"15\">Break thou the arm of the wicked; And as for the evil man, seek out his wickedness till thou find       none.</VERS>\r\n      <VERS vnumber=\"16\">Jehovah is King for ever and ever: The nations are perished out of his land.</VERS>\r\n      <VERS vnumber=\"17\">Jehovah, thou hast heard the desire of the meek: Thou wilt prepare their heart, thou wilt cause thine ear to hear;</VERS>\r\n      <VERS vnumber=\"18\">To judge the fatherless and the oppressed, That man who is of the earth may be terrible no more.           Psalm 11  For the Chief Musician. [A Psalm] of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">In Jehovah do I take refuge: How say ye to my soul, Flee [as] a bird to your mountain;</VERS>\r\n      <VERS vnumber=\"2\">For, lo, the wicked bend the bow, They make ready their arrow upon the string, That they may shoot in darkness at the upright in heart;</VERS>\r\n      <VERS vnumber=\"3\">If the foundations be destroyed, What can the righteous do?</VERS>\r\n      <VERS vnumber=\"4\">Jehovah is in his holy temple; Jehovah, his throne is in heaven; His eyes behold, his eyelids try, the children of men.</VERS>\r\n      <VERS vnumber=\"5\">Jehovah trieth the righteous; But the wicked and him that loveth violence his soul hateth.</VERS>\r\n      <VERS vnumber=\"6\">Upon the wicked he will rain snares; Fire and brimstone and burning wind shall be the portion of       their cup.</VERS>\r\n      <VERS vnumber=\"7\">For Jehovah is righteous; he loveth righteousness: The upright shall behold his face.           Psalm 12  For the Chief Musician; set to the Sheminith. A Psalm of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">Help, Jehovah; for the godly man ceaseth; For the faithful fail from among the children of men.</VERS>\r\n      <VERS vnumber=\"2\">They speak falsehood every one with his neighbor: With flattering lip, and with a double heart, do they speak.</VERS>\r\n      <VERS vnumber=\"3\">Jehovah will cut off all flattering lips, The tongue that speaketh great things;</VERS>\r\n      <VERS vnumber=\"4\">Who have said, With our tongue will we prevail; Our lips are our own: who is lord over us?</VERS>\r\n      <VERS vnumber=\"5\">Because of the oppression of the poor, because of the       sighing of the needy, Now will I arise, saith Jehovah; I will set him in the safety he panteth for.</VERS>\r\n      <VERS vnumber=\"6\">The words of Jehovah are pure words; As silver tried in a furnace on the earth, Purified seven times.</VERS>\r\n      <VERS vnumber=\"7\">Thou wilt keep them, O Jehovah, Thou wilt preserve them from this generation for ever.</VERS>\r\n      <VERS vnumber=\"8\">The wicked walk on every side, When vileness is exalted among the sons of men.           Psalm 13  For the Chief Musician. A Psalm of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">How long, O Jehovah? wilt thou forget me for ever? How long wilt thou hide thy face from me?</VERS>\r\n      <VERS vnumber=\"2\">How long shall I take counsel in my soul, Having sorrow in my heart all the day? How long shall mine enemy be exalted over me?</VERS>\r\n      <VERS vnumber=\"3\">Consider [and] answer me, O Jehovah my God: Lighten mine eyes, lest I sleep the [sleep of] death;</VERS>\r\n      <VERS vnumber=\"4\">Lest mine enemy say, I have prevailed against him; [Lest] mine adversaries rejoice when I am moved.</VERS>\r\n      <VERS vnumber=\"5\">But I have trusted in thy lovingkindness; My heart shall rejoice in thy salvation.</VERS>\r\n      <VERS vnumber=\"6\">I will sing unto Jehovah, Because he hath dealt bountifully with me.           Psalm 14  For the Chief Musician. [A Psalm] of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">The fool hath said in his heart, There is no God. They are corrupt, they have done abominable works; There is none that doeth good.</VERS>\r\n      <VERS vnumber=\"2\">Jehovah looked down from heaven upon the children of men, To see if there were any that did understand, That did seek after God.</VERS>\r\n      <VERS vnumber=\"3\">They are all gone aside; they are together become filthy; There is none that doeth good, no, not one.</VERS>\r\n      <VERS vnumber=\"4\">Have all the workers of iniquity no knowledge, Who eat up my people [as] they eat bread, And call not upon Jehovah?</VERS>\r\n      <VERS vnumber=\"5\">There were they in great fear; For God is in the generation of the righteous.</VERS>\r\n      <VERS vnumber=\"6\">Ye put to shame the counsel of the poor, Because Jehovah is his refuge.</VERS>\r\n      <VERS vnumber=\"7\">Oh that the salvation of Israel were come out of Zion! When Jehovah bringeth back the captivity of his people, Then shall Jacob rejoice, [and] Israel shall be glad.           Psalm 15  A Psalm of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">Jehovah, who shall sojourn in thy tabernacle? Who shall dwell in thy holy hill?</VERS>\r\n      <VERS vnumber=\"2\">He that walketh uprightly, and worketh righteousness, And speaketh truth in his heart;</VERS>\r\n      <VERS vnumber=\"3\">He that slandereth not with his tongue, Nor doeth evil to his friend, Nor taketh up a reproach against his neighbor;</VERS>\r\n      <VERS vnumber=\"4\">In whose eyes a reprobate is despised, But who honoreth them that fear Jehovah; He that sweareth to his own hurt, and changeth not;</VERS>\r\n      <VERS vnumber=\"5\">He that putteth not out his money to interest, Nor taketh reward against the innocent. He that doeth these things shall never be moved.           Psalm 16  Michtam of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">Preserve me, O God; for in thee do I take refuge.</VERS>\r\n      <VERS vnumber=\"2\">[O my soul], thou hast said unto Jehovah, Thou art my       Lord: I have no good beyond thee.</VERS>\r\n      <VERS vnumber=\"3\">As for the saints that are in the earth, They are the excellent in whom is all my delight.</VERS>\r\n      <VERS vnumber=\"4\">Their sorrows shall be multiplied that give gifts for       another [god]: Their drink-offerings of blood will I not offer, Nor take their names upon my lips.</VERS>\r\n      <VERS vnumber=\"5\">Jehovah is the portion of mine inheritance and of my cup: Thou maintainest my lot.</VERS>\r\n      <VERS vnumber=\"6\">The lines are fallen unto me in pleasant places; Yea, I have a goodly heritage.</VERS>\r\n      <VERS vnumber=\"7\">I will bless Jehovah, who hath given me counsel; Yea, my heart instructeth me in the night seasons.</VERS>\r\n      <VERS vnumber=\"8\">I have set Jehovah always before me: Because he is at my right hand, I shall not be moved.</VERS>\r\n      <VERS vnumber=\"9\">Therefore my heart is glad, and my glory rejoiceth; My flesh also shall dwell in safety.</VERS>\r\n      <VERS vnumber=\"10\">For thou wilt not leave my soul to Sheol; Neither wilt thou suffer thy holy one to see corruption.</VERS>\r\n      <VERS vnumber=\"11\">Thou wilt show me the path of life: In thy presence is fulness of joy; In thy right hand there are pleasures for evermore.           Psalm 17  A Prayer of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"17\">\r\n      <VERS vnumber=\"1\">Hear the right, O Jehovah, attend unto my cry; Give ear unto my prayer, that goeth not out of feigned lips.</VERS>\r\n      <VERS vnumber=\"2\">Let my sentence come forth from thy presence; Let thine eyes look upon equity.</VERS>\r\n      <VERS vnumber=\"3\">Thou hast proved my heart; thou hast visited me in the       night; Thou hast tried me, and findest nothing; I am purposed that my mouth shall not transgress.</VERS>\r\n      <VERS vnumber=\"4\">As for the works of men, by the word of thy lips I have kept me from the ways of the violent.</VERS>\r\n      <VERS vnumber=\"5\">My steps have held fast to thy paths, My feet have not slipped.</VERS>\r\n      <VERS vnumber=\"6\">I have called upon thee, for thou wilt answer me, O God: Incline thine ear unto me, [and] hear my speech.</VERS>\r\n      <VERS vnumber=\"7\">Show thy marvellous lovingkindness, O thou that savest by thy right hand them that take refuge [in       thee ]From those that rise up [against them].</VERS>\r\n      <VERS vnumber=\"8\">Keep me as the apple of the eye; Hide me under the shadow of thy wings,</VERS>\r\n      <VERS vnumber=\"9\">From the wicked that oppress me, My deadly enemies, that compass me about.</VERS>\r\n      <VERS vnumber=\"10\">They are inclosed in their own fat: With their mouth they speak proudly.</VERS>\r\n      <VERS vnumber=\"11\">They have now compassed us in our steps; They set their eyes to cast [us] down to the earth.</VERS>\r\n      <VERS vnumber=\"12\">He is like a lion that is greedy of his prey, And as it were a young lion lurking in secret places.</VERS>\r\n      <VERS vnumber=\"13\">Arise, O Jehovah,  Confront him, cast him down: Deliver my soul from the wicked by thy sword;</VERS>\r\n      <VERS vnumber=\"14\">From men by thy hand, O Jehovah, From men of the world, whose portion is in [this] life, And whose belly thou fillest with thy treasure: They are satisfied with children, And leave the rest of their substance to their babes.</VERS>\r\n      <VERS vnumber=\"15\">As for me, I shall behold thy face in righteousness; I shall be satisfied, when I awake, with [beholding] thy form.           Psalm 18  For the Chief Musician. [A Psalm] of David the servant of Jehovah, who spake unto Jehovah the words of this song in the day that Jehovah delivered him from the hand of all his enemies, and from the hand of Saul: and he said,</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"18\">\r\n      <VERS vnumber=\"1\">I love thee, O Jehovah, my strength.</VERS>\r\n      <VERS vnumber=\"2\">Jehovah is my rock, and my fortress, and my deliverer; My God, my rock, in whom I will take refuge; My shield, and the horn of my salvation, my high tower.</VERS>\r\n      <VERS vnumber=\"3\">I will call upon Jehovah, who is worthy to be praised: So shall I be saved from mine enemies.</VERS>\r\n      <VERS vnumber=\"4\">The cords of death compassed me, And the floods of ungodliness made me afraid.</VERS>\r\n      <VERS vnumber=\"5\">The cords of Sheol were round about me; The snares of death came upon me.</VERS>\r\n      <VERS vnumber=\"6\">In my distress I called upon Jehovah, And cried unto my God: He heard my voice out of his temple, And my cry before him came into his ears.</VERS>\r\n      <VERS vnumber=\"7\">Then the earth shook and trembled; The foundations also of the mountains quaked And were shaken, because he was wroth.</VERS>\r\n      <VERS vnumber=\"8\">There went up a smoke out of his nostrils, And fire out of his mouth devoured: Coals were kindled by it.</VERS>\r\n      <VERS vnumber=\"9\">He bowed the heavens also, and came down; And thick darkness was under his feet.</VERS>\r\n      <VERS vnumber=\"10\">And he rode upon a cherub, and did fly; Yea, he soared upon the wings of the wind.</VERS>\r\n      <VERS vnumber=\"11\">He made darkness his hiding-place, his pavilion round       about him, Darkness of waters, thick clouds of the skies.</VERS>\r\n      <VERS vnumber=\"12\">At the brightness before him his thick clouds passed, Hailstones and coals of fire.</VERS>\r\n      <VERS vnumber=\"13\">Jehovah also thundered in the heavens, And the Most High uttered his voice, Hailstones and coals of fire.</VERS>\r\n      <VERS vnumber=\"14\">And he sent out his arrows, and scattered them; Yea, lightnings manifold, and discomfited them.</VERS>\r\n      <VERS vnumber=\"15\">Then the channels of waters appeared, And the foundations of the world were laid bare, At thy rebuke, O Jehovah, At the blast of the breath of thy nostrils.</VERS>\r\n      <VERS vnumber=\"16\">He sent from on high, he took me; He drew me out of many waters.</VERS>\r\n      <VERS vnumber=\"17\">He delivered me from my strong enemy, And from them that hated me; for they were too mighty for me.</VERS>\r\n      <VERS vnumber=\"18\">They came upon me in the day of my calamity; But Jehovah was my stay.</VERS>\r\n      <VERS vnumber=\"19\">He brought me forth also into a large place; He delivered me, because he delighted in me.</VERS>\r\n      <VERS vnumber=\"20\">Jehovah hath rewarded me according to my righteousness; According to the cleanness of my hands hath he recompensed me.</VERS>\r\n      <VERS vnumber=\"21\">For I have kept the ways of Jehovah, And have not wickedly departed from my God.</VERS>\r\n      <VERS vnumber=\"22\">For all his ordinances were before me, And I put not away his statutes from me.</VERS>\r\n      <VERS vnumber=\"23\">I was also perfect with him, And I kept myself from mine iniquity.</VERS>\r\n      <VERS vnumber=\"24\">Therefore hath Jehovah recompensed me according to my       righteousness, According to the cleanness of my hands in his eyesight.</VERS>\r\n      <VERS vnumber=\"25\">With the merciful thou wilt show thyself merciful; With the perfect man thou wilt show thyself perfect;</VERS>\r\n      <VERS vnumber=\"26\">With the pure thou wilt show thyself pure; And with the perverse thou wilt show thyself froward.</VERS>\r\n      <VERS vnumber=\"27\">For thou wilt save the afflicted people; But the haughty eyes thou wilt bring down.</VERS>\r\n      <VERS vnumber=\"28\">For thou wilt light my lamp: Jehovah my God will lighten my darkness.</VERS>\r\n      <VERS vnumber=\"29\">For by thee I run upon a troop; And by my God do I leap over a wall.</VERS>\r\n      <VERS vnumber=\"30\">As for God, his way is perfect: The word of Jehovah is tried; He is a shield unto all them that take refuge in him.</VERS>\r\n      <VERS vnumber=\"31\">For who is God, save Jehovah? And who is a rock, besides our God,</VERS>\r\n      <VERS vnumber=\"32\">The God that girdeth me with strength, And maketh my way perfect?</VERS>\r\n      <VERS vnumber=\"33\">He maketh my feet like hinds` [feet]: And setteth me upon my high places.</VERS>\r\n      <VERS vnumber=\"34\">He teacheth my hands to war; So that mine arms do bend a bow of brass.</VERS>\r\n      <VERS vnumber=\"35\">Thou hast also given me the shield of thy salvation; And thy right hand hath holden me up, And thy gentleness hath made me great.</VERS>\r\n      <VERS vnumber=\"36\">Thou hast enlarged my steps under me, And my feet have not slipped.</VERS>\r\n      <VERS vnumber=\"37\">I will pursue mine enemies, and overtake them; Neither will I turn again till they are consumed.</VERS>\r\n      <VERS vnumber=\"38\">I will smite them through, so that they shall not be       able to rise: They shall fall under my feet.</VERS>\r\n      <VERS vnumber=\"39\">For thou hast girded me with strength unto the battle: Thou hast subdued under me those that rose up against me.</VERS>\r\n      <VERS vnumber=\"40\">Thou hast also made mine enemies turn their backs unto       me, That I might cut off them that hate me.</VERS>\r\n      <VERS vnumber=\"41\">They cried, but there was none to save; Even unto Jehovah, but he answered them not.</VERS>\r\n      <VERS vnumber=\"42\">Then did I beat them small as the dust before the wind; I did cast them out as the mire of the streets.</VERS>\r\n      <VERS vnumber=\"43\">Thou hast delivered me from the strivings of the people; Thou hast made me the head of the nations: A people whom I have not known shall serve me.</VERS>\r\n      <VERS vnumber=\"44\">As soon as they hear of me they shall obey me; The foreigners shall submit themselves unto me.</VERS>\r\n      <VERS vnumber=\"45\">The foreigners shall fade away, And shall come trembling out of their close places.</VERS>\r\n      <VERS vnumber=\"46\">Jehovah liveth; and blessed be my rock; And exalted be the God of my salvation,</VERS>\r\n      <VERS vnumber=\"47\">Even the God that executeth vengeance for me, And subdueth peoples under me.</VERS>\r\n      <VERS vnumber=\"48\">He rescueth me from mine enemies; Yea, thou liftest me up above them that rise up against me; Thou deliverest me from the violent man.</VERS>\r\n      <VERS vnumber=\"49\">Therefore I will give thanks unto thee, O Jehovah, among       the nations, And will sing praises unto thy name.</VERS>\r\n      <VERS vnumber=\"50\">Great deliverance giveth he to his king, And showeth lovingkindness to his anointed, To David and to his seed, for evermore.           Psalm 19  For the Chief Musician. A Psalm of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"19\">\r\n      <VERS vnumber=\"1\">The heavens declare the glory of God; And the firmament showeth his handiwork.</VERS>\r\n      <VERS vnumber=\"2\">Day unto day uttereth speech, And night unto night showeth knowledge.</VERS>\r\n      <VERS vnumber=\"3\">There is no speech nor language; Their voice is not heard.</VERS>\r\n      <VERS vnumber=\"4\">Their 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,</VERS>\r\n      <VERS vnumber=\"5\">Which is as a bridegroom coming out of his chamber, And rejoiceth as a strong man to run his course.</VERS>\r\n      <VERS vnumber=\"6\">His going forth is from the end of the heavens, And his circuit unto the ends of it; And there is nothing hid from the heat thereof.</VERS>\r\n      <VERS vnumber=\"7\">The law of Jehovah is perfect, restoring the soul: The testimony of Jehovah is sure, making wise the simple.</VERS>\r\n      <VERS vnumber=\"8\">The precepts of Jehovah are right, rejoicing the heart: The commandment of Jehovah is pure, enlightening the eyes.</VERS>\r\n      <VERS vnumber=\"9\">The fear of Jehovah is clean, enduring for ever: The ordinances of Jehovah are true, [and] righteous altogether.</VERS>\r\n      <VERS vnumber=\"10\">More to be desired are they than gold, yea, than much       fine gold; Sweeter also than honey and the droppings of the honeycomb.</VERS>\r\n      <VERS vnumber=\"11\">Moreover by them is thy servant warned: In keeping them there is great reward.</VERS>\r\n      <VERS vnumber=\"12\">Who can discern [his] errors? Clear thou me from hidden [faults].</VERS>\r\n      <VERS vnumber=\"13\">Keep back thy servant also from presumptuous [sins]; Let them not have dominion over me: Then shall I be upright, And I shall be clear from great transgression.</VERS>\r\n      <VERS vnumber=\"14\">Let the words of my mouth and the meditation of my heart Be acceptable in thy sight, O Jehovah, my rock, and my redeemer.           Psalm 20  For the Chief Musician. A Psalm of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"20\">\r\n      <VERS vnumber=\"1\">Jehovah answer thee in the day of trouble; The name of the God of Jacob set thee up on high;</VERS>\r\n      <VERS vnumber=\"2\">Send thee help from the sanctuary, And strengthen thee out of Zion;</VERS>\r\n      <VERS vnumber=\"3\">Remember all thy offerings, And accept thy burnt-sacrifice;     Selah</VERS>\r\n      <VERS vnumber=\"4\">Grant thee thy heart`s desire, And fulfil all thy counsel.</VERS>\r\n      <VERS vnumber=\"5\">We will triumph in thy salvation, And in the name of our God we will set up our banners: Jehovah fulfil all thy petitions.</VERS>\r\n      <VERS vnumber=\"6\">Now know I that Jehovah saveth his anointed; He will answer him from his holy heaven With the saving strength of his right hand.</VERS>\r\n      <VERS vnumber=\"7\">Some [trust] in chariots, and some in horses; But we will make mention of the name of Jehovah our God.</VERS>\r\n      <VERS vnumber=\"8\">They are bowed down and fallen; But we are risen, and stand upright.</VERS>\r\n      <VERS vnumber=\"9\">Save, Jehovah: Let the King answer us when we call.           Psalm 21  For the Chief Musician. A Psalm of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"21\">\r\n      <VERS vnumber=\"1\">The king shall joy in thy strength, O Jehovah; And in thy salvation how greatly shall he rejoice!</VERS>\r\n      <VERS vnumber=\"2\">Thou hast given him his heart`s desire, And hast not withholden the request of his lips.     Selah</VERS>\r\n      <VERS vnumber=\"3\">For thou meetest him with the blessings of goodness: Thou settest a crown of fine gold on his head.</VERS>\r\n      <VERS vnumber=\"4\">He asked life of thee, thou gavest it him, Even length of days for ever and ever.</VERS>\r\n      <VERS vnumber=\"5\">His glory is great in thy salvation: Honor and majesty dost thou lay upon him.</VERS>\r\n      <VERS vnumber=\"6\">For thou makest him most blessed for ever: Thou makest him glad with joy in thy presence.</VERS>\r\n      <VERS vnumber=\"7\">For the king trusteth in Jehovah; And through the lovingkindness of the Most High he shall not be       moved.</VERS>\r\n      <VERS vnumber=\"8\">Thy hand will find out all thine enemies; Thy right hand will find out those that hate thee.</VERS>\r\n      <VERS vnumber=\"9\">Thou wilt make them as a fiery furnace in the time of       thine anger: Jehovah will swallow them up in his wrath, And the fire shall devour them.</VERS>\r\n      <VERS vnumber=\"10\">Their fruit wilt thou destroy from the earth, And their seed from among the children of men.</VERS>\r\n      <VERS vnumber=\"11\">For they intended evil against thee; They conceived a device which they are not able to perform.</VERS>\r\n      <VERS vnumber=\"12\">For thou wilt make them turn their back; Thou wilt make ready with thy bowstrings against their face.</VERS>\r\n      <VERS vnumber=\"13\">Be thou exalted, O Jehovah, in thy strength: So will we sing and praise thy power.           Psalm 22  For the Chief Musician; set to Aijaleth hash-Shahar. A Psalm of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"22\">\r\n      <VERS vnumber=\"1\">My God, my God, why hast thou forsaken me? [Why art thou so] far from helping me, [and from] the words of       my groaning?</VERS>\r\n      <VERS vnumber=\"2\">O my God, I cry in the daytime, but thou answerest not; And in the night season, and am not silent.</VERS>\r\n      <VERS vnumber=\"3\">But thou art holy, O thou that inhabitest the praises of Israel.</VERS>\r\n      <VERS vnumber=\"4\">Our fathers trusted in thee: They trusted, and thou didst deliver them.</VERS>\r\n      <VERS vnumber=\"5\">They cried unto thee, and were delivered: They trusted in thee, and were not put to shame.</VERS>\r\n      <VERS vnumber=\"6\">But I am a worm, and no man; A reproach of men, and despised of the people.</VERS>\r\n      <VERS vnumber=\"7\">All they that see me laugh me to scorn: They shoot out the lip, they shake the head, [saying],</VERS>\r\n      <VERS vnumber=\"8\">Commit [thyself] unto Jehovah; Let him deliver him: Let him rescue him, seeing he delighteth in him.</VERS>\r\n      <VERS vnumber=\"9\">But thou art he that took me out of the womb; Thou didst make me trust [when I was] upon my mother`s breasts.</VERS>\r\n      <VERS vnumber=\"10\">I was cast upon thee from the womb; Thou art my God since my mother bare me.</VERS>\r\n      <VERS vnumber=\"11\">Be not far from me; for trouble is near; For there is none to help.</VERS>\r\n      <VERS vnumber=\"12\">Many bulls have compassed me; Strong bulls of Bashan have beset me round.</VERS>\r\n      <VERS vnumber=\"13\">They gape upon me with their mouth, [As] a ravening and a roaring lion.</VERS>\r\n      <VERS vnumber=\"14\">I am poured out like water, And all my bones are out of joint: My heart is like wax; It is melted within me.</VERS>\r\n      <VERS vnumber=\"15\">My strength is dried up like a potsherd; And my tongue cleaveth to my jaws; And thou hast brought me into the dust of death.</VERS>\r\n      <VERS vnumber=\"16\">For dogs have compassed me: A company of evil-doers have inclosed me; They pierced my hands and my feet.</VERS>\r\n      <VERS vnumber=\"17\">I may count all my bones; They look and stare upon me.</VERS>\r\n      <VERS vnumber=\"18\">They part my garments among them, And upon my vesture do they cast lots.</VERS>\r\n      <VERS vnumber=\"19\">But be not thou far off, O Jehovah: O thou my succor, haste thee to help me.</VERS>\r\n      <VERS vnumber=\"20\">Deliver my soul from the sword, My darling from the power of the dog.</VERS>\r\n      <VERS vnumber=\"21\">Save me from the lion`s mouth; Yea, from the horns of the wild-oxen thou hast answered me.</VERS>\r\n      <VERS vnumber=\"22\">I will declare thy name unto my brethren: In the midst of the assembly will I praise thee.</VERS>\r\n      <VERS vnumber=\"23\">Ye that fear Jehovah, praise him; All ye the seed of Jacob, glorify him; And stand in awe of him, all ye the seed of Israel.</VERS>\r\n      <VERS vnumber=\"24\">For 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.</VERS>\r\n      <VERS vnumber=\"25\">Of thee cometh my praise in the great assembly: I will pay my vows before them that fear him.</VERS>\r\n      <VERS vnumber=\"26\">The meek shall eat and be satisfied; They shall praise Jehovah that seek after him: Let your heart live for ever.</VERS>\r\n      <VERS vnumber=\"27\">All the ends of the earth shall remember and turn unto       Jehovah; And all the kindreds of the nations shall worship before thee.</VERS>\r\n      <VERS vnumber=\"28\">For the kingdom is Jehovah`s; And he is the ruler over the nations.</VERS>\r\n      <VERS vnumber=\"29\">All the fat ones of the earth shall eat and worship: All they that go down to the dust shall bow before him, Even he that cannot keep his soul alive.</VERS>\r\n      <VERS vnumber=\"30\">A seed shall serve him; It shall be told of the Lord unto the [next] generation.</VERS>\r\n      <VERS vnumber=\"31\">They shall come and shall declare his righteousness Unto a people that shall be born, that he hath done it.           Psalm 23  A Psalm of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"23\">\r\n      <VERS vnumber=\"1\">Jehovah is my shepherd; I shall not want.</VERS>\r\n      <VERS vnumber=\"2\">He maketh me to lie down in green pastures; He leadeth me beside still waters.</VERS>\r\n      <VERS vnumber=\"3\">He restoreth my soul: He guideth me in the paths of righteousness for his name`s sake.</VERS>\r\n      <VERS vnumber=\"4\">Yea, thou 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.</VERS>\r\n      <VERS vnumber=\"5\">Thou preparest a table before me in the presence of mine       enemies: Thou hast anointed my head with oil; My cup runneth over.</VERS>\r\n      <VERS vnumber=\"6\">Surely goodness and lovingkindness shall follow me all       the days of my life; And I shall dwell in the house of Jehovah for ever.           Psalm 24  A Psalm of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"24\">\r\n      <VERS vnumber=\"1\">The earth is Jehovah`s, and the fulness thereof; The world, and they that dwell therein.</VERS>\r\n      <VERS vnumber=\"2\">For he hath founded it upon the seas, And established it upon the floods.</VERS>\r\n      <VERS vnumber=\"3\">Who shall ascend into the hill of Jehovah? And who shall stand in his holy place?</VERS>\r\n      <VERS vnumber=\"4\">He that hath clean hands, and a pure heart; Who hath not lifted up his soul unto falsehood, And hath not sworn deceitfully.</VERS>\r\n      <VERS vnumber=\"5\">He shall receive a blessing from Jehovah, And righteousness from the God of his salvation.</VERS>\r\n      <VERS vnumber=\"6\">This is the generation of them that seek after him, That seek thy face, [even] Jacob.     Selah</VERS>\r\n      <VERS vnumber=\"7\">Lift up your heads, O ye gates; And be ye lifted up, ye everlasting doors: And the King of glory will come in.</VERS>\r\n      <VERS vnumber=\"8\">Who is the King of glory? Jehovah strong and mighty, Jehovah mighty in battle.</VERS>\r\n      <VERS vnumber=\"9\">Lift up your heads, O ye gates; Yea, lift them up, ye everlasting doors: And the King of glory will come in.</VERS>\r\n      <VERS vnumber=\"10\">Who is this King of glory? Jehovah of hosts, He is the King of glory.     Selah           Psalm 25  [A Psalm] of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"25\">\r\n      <VERS vnumber=\"1\">Unto thee, O Jehovah, do I lift up my soul.</VERS>\r\n      <VERS vnumber=\"2\">O my God, in thee have I trusted, Let me not be put to shame; Let not mine enemies triumph over me.</VERS>\r\n      <VERS vnumber=\"3\">Yea, none that wait for thee shall be put to shame: They shall be put to shame that deal treacherously without cause.</VERS>\r\n      <VERS vnumber=\"4\">Show me thy ways, O Jehovah; Teach me thy paths.</VERS>\r\n      <VERS vnumber=\"5\">Guide me in thy truth, and teach me; For thou art the God of my salvation; For thee do I wait all the day.</VERS>\r\n      <VERS vnumber=\"6\">Remember, O Jehovah, thy tender mercies and thy       lovingkindness; For they have been ever of old.</VERS>\r\n      <VERS vnumber=\"7\">Remember not the sins of my youth, nor my transgressions: According to thy lovingkindness remember thou me, For thy goodness` sake, O Jehovah.</VERS>\r\n      <VERS vnumber=\"8\">Good and upright is Jehovah: Therefore will he instruct sinners in the way.</VERS>\r\n      <VERS vnumber=\"9\">The meek will he guide in justice; And the meek will he teach his way.</VERS>\r\n      <VERS vnumber=\"10\">All the paths of Jehovah are lovingkindness and truth Unto such as keep his covenant and his testimonies.</VERS>\r\n      <VERS vnumber=\"11\">For thy name`s sake, O Jehovah, Pardon mine iniquity, for it is great.</VERS>\r\n      <VERS vnumber=\"12\">What man is he that feareth Jehovah? Him shall he instruct in the way that he shall choose.</VERS>\r\n      <VERS vnumber=\"13\">His soul shall dwell at ease; And his seed shall inherit the land.</VERS>\r\n      <VERS vnumber=\"14\">The friendship of Jehovah is with them that fear him; And he will show them his covenant.</VERS>\r\n      <VERS vnumber=\"15\">Mine eyes are ever toward Jehovah; For he will pluck my feet out of the net.</VERS>\r\n      <VERS vnumber=\"16\">Turn thee unto me, and have mercy upon me; For I am desolate and afflicted.</VERS>\r\n      <VERS vnumber=\"17\">The troubles of my heart are enlarged: Oh bring thou me out of my distresses.</VERS>\r\n      <VERS vnumber=\"18\">Consider mine affliction and my travail; And forgive all my sins.</VERS>\r\n      <VERS vnumber=\"19\">Consider mine enemies, for they are many; And they hate me with cruel hatred.</VERS>\r\n      <VERS vnumber=\"20\">Oh keep my soul, and deliver me: Let me not be put to shame, for I take refuge in thee.</VERS>\r\n      <VERS vnumber=\"21\">Let integrity and uprightness preserve me, For I wait for thee.</VERS>\r\n      <VERS vnumber=\"22\">Redeem Israel, O God, Out all of his troubles.           Psalm 26  [A Psalm] of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"26\">\r\n      <VERS vnumber=\"1\">Judge me, O Jehovah, for I have walked in mine integrity: I have trusted also in Jehovah without wavering.</VERS>\r\n      <VERS vnumber=\"2\">Examine me, O Jehovah, and prove me; Try my heart and my mind.</VERS>\r\n      <VERS vnumber=\"3\">For thy lovingkindness is before mine eyes; And I have walked in thy truth.</VERS>\r\n      <VERS vnumber=\"4\">I have not sat with men of falsehood; Neither will I go in with dissemblers.</VERS>\r\n      <VERS vnumber=\"5\">I hate the assembly of evil-doers, And will not sit with the wicked.</VERS>\r\n      <VERS vnumber=\"6\">I will wash my hands in innocency: So will I compass thine altar, O Jehovah;</VERS>\r\n      <VERS vnumber=\"7\">That I may make the voice of thanksgiving to be heard, And tell of all thy wondrous works.</VERS>\r\n      <VERS vnumber=\"8\">Jehovah, I love the habitation of thy house, And the place where thy glory dwelleth.</VERS>\r\n      <VERS vnumber=\"9\">Gather not my soul with sinners, Nor my life with men of blood;</VERS>\r\n      <VERS vnumber=\"10\">In whose hands is wickedness, And their right hand is full of bribes.</VERS>\r\n      <VERS vnumber=\"11\">But as for me, I will walk in mine integrity: Redeem me, and be merciful unto me.</VERS>\r\n      <VERS vnumber=\"12\">My foot standeth in an even place: In the congregations will I bless Jehovah.           Psalm 27  [A Psalm] of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"27\">\r\n      <VERS vnumber=\"1\">Jehovah is my light and my salvation; Whom shall I fear? Jehovah is the strength of my life; Of whom shall I be afraid?</VERS>\r\n      <VERS vnumber=\"2\">When evil-doers came upon me to eat up my flesh, [Even] mine adversaries and my foes, they stumbled and fell.</VERS>\r\n      <VERS vnumber=\"3\">Though a host should encamp against me, My heart shall not fear: Though war should rise against me, Even then will I be confident.</VERS>\r\n      <VERS vnumber=\"4\">One thing have I asked of Jehovah, that will I seek after; That I may dwell in the house of Jehovah all the days of my life, To behold the beauty of Jehovah, And to inquire in his temple.</VERS>\r\n      <VERS vnumber=\"5\">For in the day of trouble he will keep me secretly in his       pavilion: In the covert of his tabernacle will he hide me; He will lift me up upon a rock.</VERS>\r\n      <VERS vnumber=\"6\">And now shall my head be lifted up above mine enemies       round about me. And I will offer in his tabernacle sacrifices of joy; I will sing, yea, I will sing praises unto Jehovah.</VERS>\r\n      <VERS vnumber=\"7\">Hear, O Jehovah, when I cry with my voice: Have mercy also upon me, and answer me.</VERS>\r\n      <VERS vnumber=\"8\">[When thou saidst], Seek ye my face; My heart said unto thee, Thy face, Jehovah, will I seek.</VERS>\r\n      <VERS vnumber=\"9\">Hide not thy face from me; Put not thy servant away in anger: Thou hast been my help; Cast me not off, neither forsake me, O God of my salvation.</VERS>\r\n      <VERS vnumber=\"10\">When my father and my mother forsake me, Then Jehovah will take me up.</VERS>\r\n      <VERS vnumber=\"11\">Teach me thy way, O Jehovah; And lead me in a plain path, Because of mine enemies.</VERS>\r\n      <VERS vnumber=\"12\">Deliver me not over unto the will of mine adversaries: For false witnesses are risen up against me, And such as breathe out cruelty.</VERS>\r\n      <VERS vnumber=\"13\">[I had fainted], unless I had believed to see the       goodness of Jehovah In the land of the living.</VERS>\r\n      <VERS vnumber=\"14\">Wait for Jehovah: Be strong, and let thy heart take courage; Yea, wait thou for Jehovah.           Psalm 28  [A Psalm] of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"28\">\r\n      <VERS vnumber=\"1\">Unto thee, O Jehovah, will I call: My rock, be not thou deaf unto me; Lest, if thou be silent unto me, I become like them that go down into the pit.</VERS>\r\n      <VERS vnumber=\"2\">Hear the voice of my supplications, when I cry unto thee, When I lift up my hands toward thy holy oracle.</VERS>\r\n      <VERS vnumber=\"3\">Draw me not away with the wicked, And with the workers of iniquity; That speak peace with their neighbors, But mischief is in their hearts.</VERS>\r\n      <VERS vnumber=\"4\">Give them according to their work, and according to the       wickedness of their doings: Give them after the operation of their hands; Render to them their desert.</VERS>\r\n      <VERS vnumber=\"5\">Because they regard not the works of Jehovah, Nor the operation of his hands, He will break them down and not build them up.</VERS>\r\n      <VERS vnumber=\"6\">Blessed be Jehovah, Because he hath heard the voice of my supplications.</VERS>\r\n      <VERS vnumber=\"7\">Jehovah is my strength and my shield; My heart hath trusted in him, and I am helped: Therefore my heart greatly rejoiceth; And with my song will I praise him.</VERS>\r\n      <VERS vnumber=\"8\">Jehovah is their strength, And he is a stronghold of salvation to his anointed.</VERS>\r\n      <VERS vnumber=\"9\">Save thy people, and bless thine inheritance: Be their shepherd also, and bear them up for ever.           Psalm 29  A Psalm of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"29\">\r\n      <VERS vnumber=\"1\">Ascribe unto Jehovah, O ye sons of the mighty, Ascribe unto Jehovah glory and strength.</VERS>\r\n      <VERS vnumber=\"2\">Ascribe unto Jehovah the glory due unto his name; Worship Jehovah in holy array.</VERS>\r\n      <VERS vnumber=\"3\">The voice of Jehovah is upon the waters: The God of glory thundereth, Even Jehovah upon many waters.</VERS>\r\n      <VERS vnumber=\"4\">The voice of Jehovah is powerful; The voice of Jehovah is full of majesty.</VERS>\r\n      <VERS vnumber=\"5\">The voice of Jehovah breaketh the cedars; Yea, Jehovah breaketh in pieces the cedars of Lebanon.</VERS>\r\n      <VERS vnumber=\"6\">He maketh them also to skip like a calf; Lebanon and Sirion like a young wild-ox.</VERS>\r\n      <VERS vnumber=\"7\">The voice of Jehovah cleaveth the flames of fire.</VERS>\r\n      <VERS vnumber=\"8\">The voice of Jehovah shaketh the wilderness; Jehovah shaketh the wilderness of Kadesh.</VERS>\r\n      <VERS vnumber=\"9\">The voice of Jehovah maketh the hinds to calve, And strippeth the forests bare: And in his temple everything saith, Glory.</VERS>\r\n      <VERS vnumber=\"10\">Jehovah sat [as King] at the Flood; Yea, Jehovah sitteth as King for ever.</VERS>\r\n      <VERS vnumber=\"11\">Jehovah will give strength unto his people; Jehovah will bless his people with peace.           Psalm 30  A Psalm; a Song at the Dedication of the House. [A Psalm] of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"30\">\r\n      <VERS vnumber=\"1\">I will extol thee, O Jehovah; for thou hast raised me up, And hast not made my foes to rejoice over me.</VERS>\r\n      <VERS vnumber=\"2\">O Jehovah my God, I cried unto thee, and thou hast healed me.</VERS>\r\n      <VERS vnumber=\"3\">O Jehovah, thou hast brought up my soul from Sheol; Thou hast kept me alive, that I should not go down to the pit.</VERS>\r\n      <VERS vnumber=\"4\">Sing praise unto Jehovah, O ye saints of his, And give thanks to his holy memorial [name].</VERS>\r\n      <VERS vnumber=\"5\">For his anger is but for a moment; His favor is for a life-time: Weeping may tarry for the night, But joy [cometh] in the morning.</VERS>\r\n      <VERS vnumber=\"6\">As for me, I said in my prosperity, I shall never be moved.</VERS>\r\n      <VERS vnumber=\"7\">Thou, Jehovah, of thy favor hadst made my mountain to       stand strong: Thou didst hide thy face; I was troubled.</VERS>\r\n      <VERS vnumber=\"8\">I cried to thee, O Jehovah; And unto Jehovah I made supplication:</VERS>\r\n      <VERS vnumber=\"9\">What profit is there in my blood, when I go down to the       pit? Shall the dust praise thee? shall it declare thy truth?</VERS>\r\n      <VERS vnumber=\"10\">Hear, O Jehovah, and have mercy upon me: Jehovah, be thou my helper.</VERS>\r\n      <VERS vnumber=\"11\">Thou hast turned for me my mourning into dancing; Thou hast loosed my sackcloth, and girded me with gladness;</VERS>\r\n      <VERS vnumber=\"12\">To the end that [my] glory may sing praise to thee, and       not be silent. O Jehovah my God, I will give thanks unto thee for ever.           Psalm 31  For the Chief Musician. A Psalm of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"31\">\r\n      <VERS vnumber=\"1\">In thee, O Jehovah, do I take refuge; Let me never be put to shame: Deliver me in thy righteousness.</VERS>\r\n      <VERS vnumber=\"2\">Bow down thine ear unto me; deliver me speedily: Be thou to me a strong rock, A house of defence to save me.</VERS>\r\n      <VERS vnumber=\"3\">For thou art my rock and my fortress; Therefore for thy name`s sake lead me and guide me.</VERS>\r\n      <VERS vnumber=\"4\">Pluck me out of the net that they have laid privily for       me; For thou art my stronghold.</VERS>\r\n      <VERS vnumber=\"5\">Into thy hand I commend my spirit: Thou hast redeemed me, O Jehovah, thou God of truth.</VERS>\r\n      <VERS vnumber=\"6\">I hate them that regard lying vanities; But I trust in Jehovah.</VERS>\r\n      <VERS vnumber=\"7\">I will be glad and rejoice in thy lovingkindness; For thou hast seen my affliction: Thou hast known my soul in adversities;</VERS>\r\n      <VERS vnumber=\"8\">And thou hast not shut me up into the hand of the enemy; Thou hast set my feet in a large place.</VERS>\r\n      <VERS vnumber=\"9\">Have mercy upon me, O Jehovah, for I am in distress: Mine eye wasteth away with grief, [yea], my soul and my body.</VERS>\r\n      <VERS vnumber=\"10\">For my life is spent with sorrow, And my years with sighing: My strength faileth because of mine iniquity, And my bones are wasted away.</VERS>\r\n      <VERS vnumber=\"11\">Because of all mine adversaries I am become a reproach, Yea, unto my neighbors exceedingly, And a fear to mine acquaintance: They that did see me without fled from me.</VERS>\r\n      <VERS vnumber=\"12\">I am forgotten as a dead man out of mind: I am like a broken vessel.</VERS>\r\n      <VERS vnumber=\"13\">For I have heard the defaming of many, Terror on every side: While they took counsel together against me, They devised to take away my life.</VERS>\r\n      <VERS vnumber=\"14\">But I trusted in thee, O Jehovah: I said, Thou art my God.</VERS>\r\n      <VERS vnumber=\"15\">My times are in thy hand: Deliver me from the hand of mine enemies, and from them that       persecute me.</VERS>\r\n      <VERS vnumber=\"16\">Make thy face to shine upon thy servant: Save me in thy lovingkindness.</VERS>\r\n      <VERS vnumber=\"17\">Let me not be put to shame, O Jehovah; for I have called       upon thee: Let the wicked be put to shame, let them be silent in Sheol.</VERS>\r\n      <VERS vnumber=\"18\">Let the lying lips be dumb, Which speak against the righteous insolently, With pride and contempt.</VERS>\r\n      <VERS vnumber=\"19\">Oh how great is thy goodness, Which thou hast laid up for them that fear thee, Which thou hast wrought for them that take refuge in thee, Before the sons of men!</VERS>\r\n      <VERS vnumber=\"20\">In the covert of thy presence wilt thou hide them from       the plottings of man: Thou wilt keep them secretly in a pavilion from the strife of       tongues.</VERS>\r\n      <VERS vnumber=\"21\">Blessed be Jehovah; For he hath showed me his marvellous lovingkindness in a strong       city.</VERS>\r\n      <VERS vnumber=\"22\">As for me, 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.</VERS>\r\n      <VERS vnumber=\"23\">Oh love Jehovah, all ye his saints: Jehovah preserveth the faithful, And plentifully rewardeth him that dealeth proudly.</VERS>\r\n      <VERS vnumber=\"24\">Be strong, and let your heart take courage, All ye that hope in Jehovah.           Psalm 32  [A Psalm] of David. Maschil.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"32\">\r\n      <VERS vnumber=\"1\">Blessed is he whose transgression is forgiven, Whose sin is covered.</VERS>\r\n      <VERS vnumber=\"2\">Blessed is the man unto whom Jehovah imputeth not       iniquity, And in whose spirit there is no guile.</VERS>\r\n      <VERS vnumber=\"3\">When I kept silence, my bones wasted away Through my groaning all the day long.</VERS>\r\n      <VERS vnumber=\"4\">For day and night thy hand was heavy upon me: My moisture was changed [as] with the drought of summer.     Selah</VERS>\r\n      <VERS vnumber=\"5\">I acknowledged my sin unto thee, And mine iniquity did I not hide: I said, I will confess my transgressions unto Jehovah; And thou forgavest the iniquity of my sin.     Selah</VERS>\r\n      <VERS vnumber=\"6\">For this let every one that is godly pray unto thee in a       time when thou mayest be found: Surely when the great waters overflow they shall not reach unto       him.</VERS>\r\n      <VERS vnumber=\"7\">Thou art my hiding-place; thou wilt preserve me from       trouble; Thou wilt compass me about with songs of deliverance.     Selah</VERS>\r\n      <VERS vnumber=\"8\">I will instruct thee and teach thee in the way which thou       shalt go: I will counsel thee with mine eye upon thee.</VERS>\r\n      <VERS vnumber=\"9\">Be ye not as the horse, or as the mule, which have no       understanding; Whose trappings must be bit and bridle to hold them in, [Else] they will not come near unto thee.</VERS>\r\n      <VERS vnumber=\"10\">Many sorrows shall be to the wicked; But he that trusteth in Jehovah, lovingkindness shall compass       him about.</VERS>\r\n      <VERS vnumber=\"11\">Be glad in Jehovah, and rejoice, ye righteous; And shout for joy, all ye that are upright in heart.           Psalm 33</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"33\">\r\n      <VERS vnumber=\"1\">Rejoice in Jehovah, O ye righteous: Praise is comely for the upright.</VERS>\r\n      <VERS vnumber=\"2\">Give thanks unto Jehovah with the harp: Sing praises unto him with the psaltery of ten strings.</VERS>\r\n      <VERS vnumber=\"3\">Sing unto him a new song; Play skilfully with a loud noise.</VERS>\r\n      <VERS vnumber=\"4\">For the word of Jehovah is right; And all his work is [done] in faithfulness.</VERS>\r\n      <VERS vnumber=\"5\">He loveth righteousness and justice: The earth is full of the lovingkindness of Jehovah.</VERS>\r\n      <VERS vnumber=\"6\">By the word of Jehovah were the heavens made, And all the host of them by the breath of his mouth.</VERS>\r\n      <VERS vnumber=\"7\">He gathereth the waters of the sea together as a heap: He layeth up the deeps in store-houses.</VERS>\r\n      <VERS vnumber=\"8\">Let all the earth fear Jehovah: Let all the inhabitants of the world stand in awe of him.</VERS>\r\n      <VERS vnumber=\"9\">For he spake, and it was done; He commanded, and it stood fast.</VERS>\r\n      <VERS vnumber=\"10\">Jehovah bringeth the counsel of the nations to nought; He maketh the thoughts of the peoples to be of no effect.</VERS>\r\n      <VERS vnumber=\"11\">The counsel of Jehovah standeth fast for ever, The thoughts of his heart to all generations.</VERS>\r\n      <VERS vnumber=\"12\">Blessed is the nation whose God is Jehovah, The people whom he hath chosen for his own inheritance.</VERS>\r\n      <VERS vnumber=\"13\">Jehovah looketh from heaven; He beholdeth all the sons of men;</VERS>\r\n      <VERS vnumber=\"14\">From the place of his habitation he looketh forth Upon all the inhabitants of the earth,</VERS>\r\n      <VERS vnumber=\"15\">He that fashioneth the hearts of them all, That considereth all their works.</VERS>\r\n      <VERS vnumber=\"16\">There is no king saved by the multitude of a host: A mighty man is not delivered by great strength.</VERS>\r\n      <VERS vnumber=\"17\">A horse is a vain thing for safety; Neither doth he deliver any by his great power.</VERS>\r\n      <VERS vnumber=\"18\">Behold, the eye of Jehovah is upon them that fear him, Upon them that hope in his lovingkindness;</VERS>\r\n      <VERS vnumber=\"19\">To deliver their soul from death, And to keep them alive in famine.</VERS>\r\n      <VERS vnumber=\"20\">Our soul hath waited for Jehovah: He is our help and our shield.</VERS>\r\n      <VERS vnumber=\"21\">For our heart shall rejoice in him, Because we have trusted in his holy name.</VERS>\r\n      <VERS vnumber=\"22\">Let thy lovingkindness, O Jehovah, be upon us, According as we have hoped in thee.           Psalm 34  A Psalm of David; when he changed his behavior before Abimelech, who drove him away, and he departed.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"34\">\r\n      <VERS vnumber=\"1\">I will bless Jehovah at all times: His praise shall continually be in my mouth.</VERS>\r\n      <VERS vnumber=\"2\">My soul shall make her boast in Jehovah: The meek shall hear thereof, and be glad.</VERS>\r\n      <VERS vnumber=\"3\">Oh magnify Jehovah with me, And let us exalt his name together.</VERS>\r\n      <VERS vnumber=\"4\">I sought Jehovah, and he answered me, And delivered me from all my fears.</VERS>\r\n      <VERS vnumber=\"5\">They looked unto him, and were radiant; And their faces shall never be confounded.</VERS>\r\n      <VERS vnumber=\"6\">This poor man cried, and Jehovah heard him, And saved him out of all his troubles.</VERS>\r\n      <VERS vnumber=\"7\">The angel of Jehovah encampeth round about them that fear       him, And delivereth them.</VERS>\r\n      <VERS vnumber=\"8\">Oh taste and see that Jehovah is       good: Blessed is the man that taketh refuge in him.</VERS>\r\n      <VERS vnumber=\"9\">Oh fear Jehovah, ye his saints; For there is no want to them that fear him.</VERS>\r\n      <VERS vnumber=\"10\">The young lions do lack, and suffer hunger; But they that seek Jehovah shall not want any good thing.</VERS>\r\n      <VERS vnumber=\"11\">Come, ye children, hearken unto me: I will teach you the fear of Jehovah.</VERS>\r\n      <VERS vnumber=\"12\">What man is he that desireth life, And loveth [many] days, that he may see good?</VERS>\r\n      <VERS vnumber=\"13\">Keep thy tongue from evil, And thy lips from speaking guile.</VERS>\r\n      <VERS vnumber=\"14\">Depart from evil, and do good; Seek peace, and pursue it.</VERS>\r\n      <VERS vnumber=\"15\">The eyes of Jehovah are toward the righteous, And his ears are [open] unto their cry.</VERS>\r\n      <VERS vnumber=\"16\">The face of Jehovah is against them that do evil, To cut off the remembrance of them from the earth.</VERS>\r\n      <VERS vnumber=\"17\">[The righteous] cried, and Jehovah heard, And delivered them out of all their troubles.</VERS>\r\n      <VERS vnumber=\"18\">Jehovah is nigh unto them that are of a broken heart, And saveth such as are of a contrite spirit.</VERS>\r\n      <VERS vnumber=\"19\">Many are the afflictions of the righteous; But Jehovah delivereth him out of them all.</VERS>\r\n      <VERS vnumber=\"20\">He keepeth all his bones: Not one of them is broken.</VERS>\r\n      <VERS vnumber=\"21\">Evil shall slay the wicked; And they that hate the righteous shall be condemned.</VERS>\r\n      <VERS vnumber=\"22\">Jehovah redeemeth the soul of his servants; And none of them that take refuge in him shall be condemned.           Psalm 35  [A Psalm] of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"35\">\r\n      <VERS vnumber=\"1\">Strive thou, O Jehovah, with them that strive with me: Fight thou against them that fight against me.</VERS>\r\n      <VERS vnumber=\"2\">Take hold of shield and buckler, And stand up for my help.</VERS>\r\n      <VERS vnumber=\"3\">Draw out also the spear, and stop the way against them       that pursue me: Say unto my soul, I am thy salvation.</VERS>\r\n      <VERS vnumber=\"4\">Let them be put to shame and brought to dishonor that       seek after my soul: Let them be turned back and confounded that devise my hurt.</VERS>\r\n      <VERS vnumber=\"5\">Let them be as chaff before the wind, And the angel of Jehovah driving [them] on.</VERS>\r\n      <VERS vnumber=\"6\">Let their way be dark and slippery, And the angel of Jehovah pursuing them.</VERS>\r\n      <VERS vnumber=\"7\">For without cause have they hid for me their net [in] a       pit; Without cause have they digged [a pit] for my soul.</VERS>\r\n      <VERS vnumber=\"8\">Let destruction come upon him unawares; And let his net that he hath hid catch himself: With destruction let him fall therein.</VERS>\r\n      <VERS vnumber=\"9\">And my soul shall be joyful in Jehovah: It shall rejoice in his salvation.</VERS>\r\n      <VERS vnumber=\"10\">All my bones shall say, Jehovah, who is like unto thee, Who deliverest the poor from him that is too strong for him, Yea, the poor and the needy from him that robbeth him?</VERS>\r\n      <VERS vnumber=\"11\">Unrighteous witnesses rise up; They ask me of things that I know not.</VERS>\r\n      <VERS vnumber=\"12\">They reward me evil for good, [To] the bereaving of my soul.</VERS>\r\n      <VERS vnumber=\"13\">But as for me, when they were sick, my clothing was       sackcloth: I afflicted my soul with fasting; And my prayer returned into mine own bosom.</VERS>\r\n      <VERS vnumber=\"14\">I behaved myself as though it had been my friend or my       brother: I bowed down mourning, as one that bewaileth his mother.</VERS>\r\n      <VERS vnumber=\"15\">But in mine adversity they rejoiced, and gathered       themselves together: The abjects gathered themselves together against me, and I knew       [it] not; They did tear me, and ceased not:</VERS>\r\n      <VERS vnumber=\"16\">Like the profane mockers in feasts, They gnashed upon me with their teeth.</VERS>\r\n      <VERS vnumber=\"17\">Lord, how long wilt thou look on? Rescue my soul from their destructions, My darling from the lions.</VERS>\r\n      <VERS vnumber=\"18\">I will give thee thanks in the great assembly: I will praise thee among much people.</VERS>\r\n      <VERS vnumber=\"19\">Let not them that are mine enemies wrongfully rejoice       over me; Neither let them wink with the eye that hate me without a cause.</VERS>\r\n      <VERS vnumber=\"20\">For they speak not peace; But they devise deceitful words against them that are quiet in       the land.</VERS>\r\n      <VERS vnumber=\"21\">Yea, they opened their mouth wide against me; They said, Aha, aha, our eye hath seen it.</VERS>\r\n      <VERS vnumber=\"22\">Thou hast seen it, O Jehovah; keep not silence: O Lord, be not far from me.</VERS>\r\n      <VERS vnumber=\"23\">Stir up thyself, and awake to the justice [due] unto me, [Even] unto my cause, my God and my Lord.</VERS>\r\n      <VERS vnumber=\"24\">Judge me, O Jehovah my God, according to thy       righteousness; And let them not rejoice over me.</VERS>\r\n      <VERS vnumber=\"25\">Let them not say in their heart, Aha, so would we have       it: Let them not say, We have swallowed him up.</VERS>\r\n      <VERS vnumber=\"26\">Let them be put to shame and confounded together that       rejoice at my hurt: Let them be clothed with shame and dishonor that magnify       themselves against me.</VERS>\r\n      <VERS vnumber=\"27\">Let them shout for joy, and be glad, that favor my       righteous cause: Yea, let them say continually, Jehovah be magnified, Who hath pleasure in the prosperity of his servant.</VERS>\r\n      <VERS vnumber=\"28\">And my tongue shall talk of thy righteousness [And] of thy praise all the day long.           Psalm 36  For the Chief Musician. [A Psalm] of David the servant of Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"36\">\r\n      <VERS vnumber=\"1\">The transgression of the wicked saith within my heart, There is no fear of God before his eyes.</VERS>\r\n      <VERS vnumber=\"2\">For he flattereth himself in his own eyes, That his iniquity will not be found out and be hated.</VERS>\r\n      <VERS vnumber=\"3\">The words of his mouth are iniquity and deceit: He hath ceased to be wise [and] to do good.</VERS>\r\n      <VERS vnumber=\"4\">He deviseth iniquity upon his bed; He setteth himself in a way that is not good; He abhorreth not evil.</VERS>\r\n      <VERS vnumber=\"5\">Thy lovingkindness, O Jehovah, is in the heavens; Thy faithfulness [reacheth] unto the skies.</VERS>\r\n      <VERS vnumber=\"6\">Thy righteousness is like the mountains of God; Thy judgments are a great deep: O Jehovah, thou preservest man and beast.</VERS>\r\n      <VERS vnumber=\"7\">How precious is thy lovingkindness, O God! And the children of men take refuge under the shadow of thy       wings.</VERS>\r\n      <VERS vnumber=\"8\">They shall be abundantly satisfied with the fatness of       thy house; And thou wilt make them drink of the river of thy pleasures.</VERS>\r\n      <VERS vnumber=\"9\">For with thee is the fountain of life: In thy light shall we see light.</VERS>\r\n      <VERS vnumber=\"10\">Oh continue thy lovingkindness unto them that know thee, And thy righteousness to the upright in heart.</VERS>\r\n      <VERS vnumber=\"11\">Let not the foot of pride come against me, And let not the hand of the wicked drive me away.</VERS>\r\n      <VERS vnumber=\"12\">There are the workers of iniquity fallen: They are thrust down, and shall not be able to rise.           Psalm 37  [A Psalm] of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"37\">\r\n      <VERS vnumber=\"1\">Fret not thyself because of evil-doers, Neither be thou envious against them that work unrighteousness.</VERS>\r\n      <VERS vnumber=\"2\">For they shall soon be cut down like the grass, And wither as the green herb.</VERS>\r\n      <VERS vnumber=\"3\">Trust in Jehovah, and do good; Dwell in the land, and feed on [his] faithfulness.</VERS>\r\n      <VERS vnumber=\"4\">Delight thyself also in Jehovah; And he will give thee the desires of thy heart.</VERS>\r\n      <VERS vnumber=\"5\">Commit thy way unto Jehovah; Trust also in him, and he will bring it to pass.</VERS>\r\n      <VERS vnumber=\"6\">And he will make thy righteousness to go forth as the       light, And thy justice as the noon-day.</VERS>\r\n      <VERS vnumber=\"7\">Rest in Jehovah, 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.</VERS>\r\n      <VERS vnumber=\"8\">Cease from anger, and forsake wrath: Fret not thyself, [it tendeth] only to evil-doing.</VERS>\r\n      <VERS vnumber=\"9\">For evil-doers shall be cut off; But those that wait for Jehovah, they shall inherit the land.</VERS>\r\n      <VERS vnumber=\"10\">For yet a little while, and the wicked shall not be: Yea, thou shalt diligently consider his place, and he shall not       be.</VERS>\r\n      <VERS vnumber=\"11\">But the meek shall inherit the land, And shall delight themselves in the abundance of peace.</VERS>\r\n      <VERS vnumber=\"12\">The wicked plotteth against the just, And gnasheth upon him with his teeth.</VERS>\r\n      <VERS vnumber=\"13\">The Lord will laugh at him; For he seeth that his day is coming.</VERS>\r\n      <VERS vnumber=\"14\">The wicked have drawn out the sword, and have bent their       bow, To cast down the poor and needy, To slay such as are upright in the way.</VERS>\r\n      <VERS vnumber=\"15\">Their sword shall enter into their own heart, And their bows shall be broken.</VERS>\r\n      <VERS vnumber=\"16\">Better is a little that the righteous hath Than the abundance of many wicked.</VERS>\r\n      <VERS vnumber=\"17\">For the arms of the wicked shall be broken; But Jehovah upholdeth the righteous.</VERS>\r\n      <VERS vnumber=\"18\">Jehovah knoweth the days of the perfect; And their inheritance shall be for ever.</VERS>\r\n      <VERS vnumber=\"19\">They shall not be put to shame in the time of evil; And in the days of famine they shall be satisfied.</VERS>\r\n      <VERS vnumber=\"20\">But the wicked shall perish, And the enemies of Jehovah shall be as the fat of lambs: They shall consume; In smoke shall they consume away.</VERS>\r\n      <VERS vnumber=\"21\">The wicked borroweth, and payeth not again; But the righteous dealeth graciously, and giveth.</VERS>\r\n      <VERS vnumber=\"22\">For such as are blessed of him shall inherit the land; And they that are cursed of him shall be cut off.</VERS>\r\n      <VERS vnumber=\"23\">A man`s goings are established of Jehovah; And he delighteth in his way.</VERS>\r\n      <VERS vnumber=\"24\">Though he fall, he shall not be utterly cast down; For Jehovah upholdeth him with his hand.</VERS>\r\n      <VERS vnumber=\"25\">I have been young, and now am old; Yet have I not seen the righteous forsaken, Nor his seed begging bread.</VERS>\r\n      <VERS vnumber=\"26\">All the day long he dealeth graciously, and lendeth; And his seed is blessed.</VERS>\r\n      <VERS vnumber=\"27\">Depart from evil, and do good; And dwell for evermore.</VERS>\r\n      <VERS vnumber=\"28\">For Jehovah loveth justice, And forsaketh not his saints; They are preserved for ever: But the seed of the wicked shall be cut off.</VERS>\r\n      <VERS vnumber=\"29\">The righteous shall inherit the land, And dwell therein for ever.</VERS>\r\n      <VERS vnumber=\"30\">The mouth of the righteous talketh of wisdom, And his tongue speaketh justice.</VERS>\r\n      <VERS vnumber=\"31\">The law of his God is in his heart; None of his steps shall slide.</VERS>\r\n      <VERS vnumber=\"32\">The wicked watcheth the righteous, And seeketh to slay him.</VERS>\r\n      <VERS vnumber=\"33\">Jehovah will not leave him in his hand, Nor condemn him when he is judged.</VERS>\r\n      <VERS vnumber=\"34\">Wait for Jehovah, and keep his way, And he will exalt thee to inherit the land: When the wicked are cut off, thou shalt see it.</VERS>\r\n      <VERS vnumber=\"35\">I have seen the wicked in great power, And spreading himself like a green tree in its native soil.</VERS>\r\n      <VERS vnumber=\"36\">But one passed by, and, lo, he was not: Yea, I sought him, but he could not be found.</VERS>\r\n      <VERS vnumber=\"37\">Mark the perfect man, and behold the upright; For there is a [happy] end to the man of peace.</VERS>\r\n      <VERS vnumber=\"38\">As for transgressors, they shall be destroyed together; The end of the wicked shall be cut off.</VERS>\r\n      <VERS vnumber=\"39\">But the salvation of the righteous is of Jehovah; He is their stronghold in the time of trouble.</VERS>\r\n      <VERS vnumber=\"40\">And Jehovah helpeth them, and rescueth them; He rescueth them from the wicked, and saveth them, Because they have taken refuge in him.           Psalm 38  A Psalm of David, to bring to remembrance.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"38\">\r\n      <VERS vnumber=\"1\">O Jehovah, rebuke me not in thy wrath; Neither chasten me in thy hot displeasure.</VERS>\r\n      <VERS vnumber=\"2\">For thine arrows stick fast in me, And thy hand presseth me sore.</VERS>\r\n      <VERS vnumber=\"3\">There is no soundness in my flesh because of thine       indignation; Neither is there any health in my bones because of my sin.</VERS>\r\n      <VERS vnumber=\"4\">For mine iniquities are gone over my head: As a heavy burden they are too heavy for me.</VERS>\r\n      <VERS vnumber=\"5\">My wounds are loathsome and corrupt, Because of my foolishness.</VERS>\r\n      <VERS vnumber=\"6\">I am pained and bowed down greatly; I go mourning all the day long.</VERS>\r\n      <VERS vnumber=\"7\">For my loins are filled with burning; And there is no soundness in my flesh.</VERS>\r\n      <VERS vnumber=\"8\">I am faint and sore bruised: I have groaned by reason of the disquietness of my heart.</VERS>\r\n      <VERS vnumber=\"9\">Lord, all my desire is before thee; And my groaning is not hid from thee.</VERS>\r\n      <VERS vnumber=\"10\">My heart throbbeth, my strength faileth me: As for the light of mine eyes, it also is gone from me.</VERS>\r\n      <VERS vnumber=\"11\">My lovers and my friends stand aloof from my plague; And my kinsmen stand afar off.</VERS>\r\n      <VERS vnumber=\"12\">They also that seek after my life lay snares [for me]; And they that seek my hurt speak mischievous things, And meditate deceits all the day long.</VERS>\r\n      <VERS vnumber=\"13\">But I, as a deaf man, hear not; And I am as a dumb man that openeth not his mouth.</VERS>\r\n      <VERS vnumber=\"14\">Yea, I am as a man that heareth not, And in whose mouth are no reproofs.</VERS>\r\n      <VERS vnumber=\"15\">For in thee, O Jehovah, do I hope: Thou wilt answer, O Lord my God.</VERS>\r\n      <VERS vnumber=\"16\">For I said, Lest they rejoice over me: When my foot slippeth, they magnify themselves against me.</VERS>\r\n      <VERS vnumber=\"17\">For I am ready to fall, And my sorrow is continually before me.</VERS>\r\n      <VERS vnumber=\"18\">For I will declare mine iniquity; I will be sorry for my       sin.</VERS>\r\n      <VERS vnumber=\"19\">But mine enemies are lively, [and] are strong; And they that hate me wrongfully are multiplied.</VERS>\r\n      <VERS vnumber=\"20\">They also that render evil for good Are adversaries unto me, because I follow the thing that is good.</VERS>\r\n      <VERS vnumber=\"21\">Forsake me not, O Jehovah: O my God, be not far from me.</VERS>\r\n      <VERS vnumber=\"22\">Make haste to help me, O Lord, my salvation.           Psalm 39  For the Chief Musician, Jeduthun. A Psalm of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"39\">\r\n      <VERS vnumber=\"1\">I 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.</VERS>\r\n      <VERS vnumber=\"2\">I was dumb with silence, I held my peace, even from good; And my sorrow was stirred.</VERS>\r\n      <VERS vnumber=\"3\">My heart was hot within me; While I was musing the fire burned: [Then] spake I with my tongue:</VERS>\r\n      <VERS vnumber=\"4\">Jehovah, make me to know mine end, And the measure of my days, what it is; Let me know how frail I am.</VERS>\r\n      <VERS vnumber=\"5\">Behold, thou hast made my days [as] handbreadths; And my life-time is as nothing before thee: Surely every man at his best estate is altogether vanity.     Selah</VERS>\r\n      <VERS vnumber=\"6\">Surely every man walketh in a vain show; Surely they are disquieted in vain: He heapeth up [riches], and knoweth not who shall gather them.</VERS>\r\n      <VERS vnumber=\"7\">And now, Lord, what wait I for? My hope is in thee.</VERS>\r\n      <VERS vnumber=\"8\">Deliver me from all my transgressions: Make me not the reproach of the foolish.</VERS>\r\n      <VERS vnumber=\"9\">I was dumb, I opened not my mouth; Because thou didst it.</VERS>\r\n      <VERS vnumber=\"10\">Remove thy stroke away from me: I am consumed by the blow of thy hand.</VERS>\r\n      <VERS vnumber=\"11\">When thou with rebukes dost correct man for iniquity, Thou makest his beauty to consume away like a moth: Surely every man is vanity.     Selah</VERS>\r\n      <VERS vnumber=\"12\">Hear my prayer, O Jehovah, and give ear unto my cry; Hold not thy peace at my tears: For I am a stranger with thee, A sojourner, as all my fathers were.</VERS>\r\n      <VERS vnumber=\"13\">Oh spare me, that I may recover strength, Before I go hence, and be no more.           Psalm 40  For the Chief Musician. A Psalm of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"40\">\r\n      <VERS vnumber=\"1\">I waited patiently for Jehovah; And he inclined unto me, and heard my cry.</VERS>\r\n      <VERS vnumber=\"2\">He brought me up also out of a horrible pit, out of the       miry clay; And he set my feet upon a rock, and established my goings.</VERS>\r\n      <VERS vnumber=\"3\">And he hath put a new song in my mouth, even praise unto       our God: Many shall see it, and fear, And shall trust in Jehovah.</VERS>\r\n      <VERS vnumber=\"4\">Blessed is the man that maketh Jehovah his trust, And respecteth not the proud, nor such as turn aside to lies.</VERS>\r\n      <VERS vnumber=\"5\">Many, O Jehovah my God, are the wonderful works which       thou hast done, And thy thoughts which are to us-ward; They cannot be set in order unto thee; If I would declare and speak of them, They are more than can be numbered.</VERS>\r\n      <VERS vnumber=\"6\">Sacrifice and offering thou hast no delight in; Mine ears hast thou opened: Burnt-offering and sin-offering hast thou not required.</VERS>\r\n      <VERS vnumber=\"7\">Then said I, Lo, I am come; In the roll of the book it is written of me:</VERS>\r\n      <VERS vnumber=\"8\">I delight to do thy will, O my God; Yea, thy law is within my heart.</VERS>\r\n      <VERS vnumber=\"9\">I have proclaimed glad tidings of righteousness in the       great assembly; Lo, I will not refrain my lips, O Jehovah, thou knowest.</VERS>\r\n      <VERS vnumber=\"10\">I 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 assembly.</VERS>\r\n      <VERS vnumber=\"11\">Withhold not thou thy tender mercies from me, O Jehovah; Let thy lovingkindness and thy truth continually preserve me.</VERS>\r\n      <VERS vnumber=\"12\">For innumerable evils have compassed me about; Mine iniquities have overtaken me, so that I am not able to look       up; They are more than the hairs of my head; And my heart hath failed me.</VERS>\r\n      <VERS vnumber=\"13\">Be pleased, O Jehovah, to deliver me: Make haste to help me, O Jehovah.</VERS>\r\n      <VERS vnumber=\"14\">Let them be put to shame and confounded together That seek after my soul to destroy it: Let them be turned backward and brought to dishonor That delight in my hurt.</VERS>\r\n      <VERS vnumber=\"15\">Let them be desolate by reason of their shame That say unto me, Aha, aha.</VERS>\r\n      <VERS vnumber=\"16\">Let all those that seek thee rejoice and be glad in thee: Let such as love thy salvation say continually, Jehovah be magnified.</VERS>\r\n      <VERS vnumber=\"17\">But I am poor and needy; [Yet] the Lord thinketh upon me: Thou art my help and my deliverer; Make no tarrying, O my God.           Psalm 41  For the Chief Musician. A Psalm of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"41\">\r\n      <VERS vnumber=\"1\">Blessed is he that considereth the poor: Jehovah will deliver him in the day of evil.</VERS>\r\n      <VERS vnumber=\"2\">Jehovah will preserve him, and keep him alive, And he shall be blessed upon the earth; And deliver not thou him unto the will of his enemies.</VERS>\r\n      <VERS vnumber=\"3\">Jehovah will support him upon the couch of languishing: Thou makest all his bed in his sickness.</VERS>\r\n      <VERS vnumber=\"4\">I said, O Jehovah, have mercy upon me: Heal my soul; for I have sinned against thee.</VERS>\r\n      <VERS vnumber=\"5\">Mine enemies speak evil against me, [saying], When will he die, and his name perish?</VERS>\r\n      <VERS vnumber=\"6\">And if he come to see [me], he speaketh falsehood; His heart gathereth iniquity to itself: When he goeth abroad, he telleth it.</VERS>\r\n      <VERS vnumber=\"7\">All that hate me whisper together against me; Against me do they devise my hurt.</VERS>\r\n      <VERS vnumber=\"8\">An evil disease, [say they], cleaveth fast unto him; And now that he lieth he shall rise up no more.</VERS>\r\n      <VERS vnumber=\"9\">Yea, mine own familiar friend, in whom I trusted, Who did eat of my bread, Hath lifted up his heel against me.</VERS>\r\n      <VERS vnumber=\"10\">But thou, O Jehovah, have mercy upon me, and raise me up, That I may requite them.</VERS>\r\n      <VERS vnumber=\"11\">By this I know that thou delightest in me, Because mine enemy doth not triumph over me.</VERS>\r\n      <VERS vnumber=\"12\">And as for me, thou upholdest me in mine integrity, And settest me before thy face for ever.</VERS>\r\n      <VERS vnumber=\"13\">Blessed be Jehovah, the God of Israel, From everlasting and to everlasting. Amen, and Amen.          Book II      Psalm 42  For the Chief Musician. Maschil of the sons of Korah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"42\">\r\n      <VERS vnumber=\"1\">As the hart panteth after the water brooks, So panteth my soul after thee, O God.</VERS>\r\n      <VERS vnumber=\"2\">My soul thirsteth for God, for the living God: When shall I come and appear before God?</VERS>\r\n      <VERS vnumber=\"3\">My tears have been my food day and night, While they continually say unto me, Where is thy God?</VERS>\r\n      <VERS vnumber=\"4\">These things I remember, and pour out my soul within me, How I went with the throng, and led them to the house of God, With the voice of joy and praise, a multitude keeping holyday.</VERS>\r\n      <VERS vnumber=\"5\">Why art thou cast down, O my soul? And [why] art thou disquieted within me? Hope thou in God; for I shall yet praise him [For] the help of his countenance.</VERS>\r\n      <VERS vnumber=\"6\">O my God, my soul is cast down within me: Therefore do I remember thee from the land of the Jordan, And the Hermons, from the hill Mizar.</VERS>\r\n      <VERS vnumber=\"7\">Deep calleth unto deep at the noise of thy waterfalls: All thy waves and thy billows are gone over me.</VERS>\r\n      <VERS vnumber=\"8\">[Yet] Jehovah will command his lovingkindness in the       day-time; And in the night his song shall be with me, [Even] a prayer unto the God of my life.</VERS>\r\n      <VERS vnumber=\"9\">I will say unto God my rock, Why hast thou forgotten me? Why go I mourning because of the oppression of the enemy?</VERS>\r\n      <VERS vnumber=\"10\">As with a sword in my bones, mine adversaries reproach       me, While they continually say unto me, Where is thy God?</VERS>\r\n      <VERS vnumber=\"11\">Why 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 help of my countenance, and my God.           Psalm 43</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"43\">\r\n      <VERS vnumber=\"1\">Judge me, O God, and plead my cause against an ungodly       nation: Oh deliver me from the deceitful and unjust man.</VERS>\r\n      <VERS vnumber=\"2\">For thou art the God of my strength; why hast thou cast       me off? Why go I mourning because of the oppression of the enemy?</VERS>\r\n      <VERS vnumber=\"3\">Oh send out thy light and thy truth; let them lead me: Let them bring me unto thy holy hill, And to thy tabernacles.</VERS>\r\n      <VERS vnumber=\"4\">Then will I go unto the altar of God, Unto God my exceeding joy; And upon the harp will I praise thee, O God, my God.</VERS>\r\n      <VERS vnumber=\"5\">Why 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 help of my countenance, and my God.           Psalm 44  For the Chief Musician. [A Psalm] of the sons of Korah. Maschil.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"44\">\r\n      <VERS vnumber=\"1\">We have heard with our ears, O God, Our fathers have told us, What work thou didst in their days, In the days of old.</VERS>\r\n      <VERS vnumber=\"2\">Thou didst drive out the nations with thy hand; But them thou didst plant: Thou didst afflict the peoples; But them thou didst spread abroad.</VERS>\r\n      <VERS vnumber=\"3\">For they gat 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 wast favorable unto them.</VERS>\r\n      <VERS vnumber=\"4\">Thou art my King, O God: Command deliverance for Jacob.</VERS>\r\n      <VERS vnumber=\"5\">Through thee will we push down our adversaries: Through thy name will we tread them under that rise up against       us.</VERS>\r\n      <VERS vnumber=\"6\">For I will not trust in my bow, Neither shall my sword save me.</VERS>\r\n      <VERS vnumber=\"7\">But thou hast saved us from our adversaries, And hast put them to shame that hate us.</VERS>\r\n      <VERS vnumber=\"8\">In God have we made our boast all the day long, And we will give thanks unto thy name for ever.     Selah</VERS>\r\n      <VERS vnumber=\"9\">But now thou hast cast [us] off, and brought us to       dishonor, And goest not forth with our hosts.</VERS>\r\n      <VERS vnumber=\"10\">Thou makest us to turn back from the adversary; And they that hate us take spoil for themselves.</VERS>\r\n      <VERS vnumber=\"11\">Thou hast made us like sheep [appointed] for food, And hast scattered us among the nations.</VERS>\r\n      <VERS vnumber=\"12\">Thou sellest thy people for nought, And hast not increased [thy wealth] by their price.</VERS>\r\n      <VERS vnumber=\"13\">Thou makest us a reproach to our neighbors, A scoffing and a derision to them that are round about us.</VERS>\r\n      <VERS vnumber=\"14\">Thou makest us a byword among the nations, A shaking of the head among the peoples.</VERS>\r\n      <VERS vnumber=\"15\">All the day long is my dishonor before me, And the shame of my face hath covered me,</VERS>\r\n      <VERS vnumber=\"16\">For the voice of him that reproacheth and blasphemeth, By reason of the enemy and the avenger.</VERS>\r\n      <VERS vnumber=\"17\">All this is come upon us; Yet have we not forgotten thee, Neither have we dealt falsely in thy covenant.</VERS>\r\n      <VERS vnumber=\"18\">Our heart is not turned back, Neither have our steps declined from thy way,</VERS>\r\n      <VERS vnumber=\"19\">That thou hast sore broken us in the place of jackals, And covered us with the shadow of death.</VERS>\r\n      <VERS vnumber=\"20\">If we have forgotten the name of our God, Or spread forth our hands to a strange god;</VERS>\r\n      <VERS vnumber=\"21\">Will not God search this out? For he knoweth the secrets of the heart.</VERS>\r\n      <VERS vnumber=\"22\">Yea, for thy sake are we killed all the day long; We are accounted as sheep for the slaughter.</VERS>\r\n      <VERS vnumber=\"23\">Awake, why sleepest thou, O Lord? Arise, cast [us] not off for ever.</VERS>\r\n      <VERS vnumber=\"24\">Wherefore hidest thou thy face, And forgettest our affliction and our oppression?</VERS>\r\n      <VERS vnumber=\"25\">For our soul is bowed down to the dust: Our body cleaveth unto the earth.</VERS>\r\n      <VERS vnumber=\"26\">Rise up for our help, And redeem us for thy lovingkindness` sake.           Psalm 45  For the Chief Musician; set to Shoshannim. [A Psalm] of the sons of Korah. Maschil. A Song of loves.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"45\">\r\n      <VERS vnumber=\"1\">My heart overfloweth with a goodly matter; I speak the things which I have made touching the king: My tongue is the pen of a ready writer.</VERS>\r\n      <VERS vnumber=\"2\">Thou art fairer than the children of men; Grace is poured into thy lips: Therefore God hath blessed thee for ever.</VERS>\r\n      <VERS vnumber=\"3\">Gird thy sword upon thy thigh, O mighty one, Thy glory and thy majesty.</VERS>\r\n      <VERS vnumber=\"4\">And in thy majesty ride on prosperously, Because of truth and meekness [and] righteousness: And thy right hand shall teach thee terrible things.</VERS>\r\n      <VERS vnumber=\"5\">Thine arrows are sharp; The peoples fall under thee; [They are] in the heart of the king`s enemies.</VERS>\r\n      <VERS vnumber=\"6\">Thy throne, O God, is for ever and ever: A sceptre of equity is the sceptre of thy kingdom.</VERS>\r\n      <VERS vnumber=\"7\">Thou hast loved righteousness, and hated wickedness: Therefore God, thy God, hath anointed thee With the oil of gladness above thy fellows.</VERS>\r\n      <VERS vnumber=\"8\">All thy garments [smell of] myrrh, and aloes, [and]       cassia; Out of ivory palaces stringed instruments have made thee glad.</VERS>\r\n      <VERS vnumber=\"9\">Kings` daughters are among thy honorable women: At thy right hand doth stand the queen in gold of Ophir.</VERS>\r\n      <VERS vnumber=\"10\">Hearken, O daughter, and consider, and incline thine ear; Forget also thine own people, and thy father`s house:</VERS>\r\n      <VERS vnumber=\"11\">So will the king desire thy beauty; For he is thy lord; and reverence thou him.</VERS>\r\n      <VERS vnumber=\"12\">And the daughter of Tyre [shall be there] with a gift; The rich among the people shall entreat thy favor.</VERS>\r\n      <VERS vnumber=\"13\">The king`s daughter within [the palace] is all glorious: Her clothing is inwrought with gold.</VERS>\r\n      <VERS vnumber=\"14\">She shall be led unto the king in broidered work: The virgins her companions that follow her Shall be brought unto thee.</VERS>\r\n      <VERS vnumber=\"15\">With gladness and rejoicing shall they be led: They shall enter into the king`s palace.</VERS>\r\n      <VERS vnumber=\"16\">Instead of thy fathers shall be thy children, Whom thou shalt make princes in all the earth.</VERS>\r\n      <VERS vnumber=\"17\">I will make thy name to be remembered in all generations: Therefore shall the peoples give thee thanks for ever and ever.           Psalm 46  For the Chief Musician. [A Psalm] of the sons of Korah; set to Alamoth. A Song.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"46\">\r\n      <VERS vnumber=\"1\">God is our refuge and strength, A very present help in trouble.</VERS>\r\n      <VERS vnumber=\"2\">Therefore will we not fear, though the earth do change, And though the mountains be shaken into the heart of the seas;</VERS>\r\n      <VERS vnumber=\"3\">Though the waters thereof roar and be troubled, Though the mountains tremble with the swelling thereof.     Selah</VERS>\r\n      <VERS vnumber=\"4\">There is a river, the streams whereof make glad the city       of God, The holy place of the tabernacles of the Most High.</VERS>\r\n      <VERS vnumber=\"5\">God is in the midst of her; she shall not be moved: God will help her, and that right early.</VERS>\r\n      <VERS vnumber=\"6\">The nations raged, the kingdoms were moved: He uttered his voice, the earth melted.</VERS>\r\n      <VERS vnumber=\"7\">Jehovah of hosts is with us; The God of Jacob is our refuge.     Selah</VERS>\r\n      <VERS vnumber=\"8\">Come, behold the works of Jehovah, What desolations he hath made in the earth.</VERS>\r\n      <VERS vnumber=\"9\">He maketh wars to cease unto the end of the earth; He breaketh the bow, and cutteth the spear in sunder; He burneth the chariots in the fire.</VERS>\r\n      <VERS vnumber=\"10\">Be still, and know that I am God: I will be exalted among the nations, I will be exalted in the       earth.</VERS>\r\n      <VERS vnumber=\"11\">Jehovah of hosts is with us; The God of Jacob is our refuge.     Selah           Psalm 47  For the Chief Musician. A Psalm of the sons of Korah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"47\">\r\n      <VERS vnumber=\"1\">Oh clap your hands, all ye peoples; Shout unto God with the voice of triumph.</VERS>\r\n      <VERS vnumber=\"2\">For Jehovah Most High is terrible; He is a great King over all the earth.</VERS>\r\n      <VERS vnumber=\"3\">He subdueth peoples under us, And nations under our feet.</VERS>\r\n      <VERS vnumber=\"4\">He chooseth our inheritance for us, The glory of Jacob whom he loved.     Selah</VERS>\r\n      <VERS vnumber=\"5\">God is gone up with a shout, Jehovah with the sound of a trumpet.</VERS>\r\n      <VERS vnumber=\"6\">Sing praise to God, sing praises: Sing praises unto our King, sing praises.</VERS>\r\n      <VERS vnumber=\"7\">For God is the King of all the earth: Sing ye praises with understanding.</VERS>\r\n      <VERS vnumber=\"8\">God reigneth over the nations: God sitteth upon his holy throne.</VERS>\r\n      <VERS vnumber=\"9\">The princes of the peoples are gathered together [To be] the people of the God of Abraham: For the shields of the earth belong unto God; He is greatly exalted.           Psalm 48  A Song; a Psalm of the sons of Korah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"48\">\r\n      <VERS vnumber=\"1\">Great is Jehovah, and greatly to be praised, In the city of our God, in his holy mountain.</VERS>\r\n      <VERS vnumber=\"2\">Beautiful in elevation, the joy of the whole earth, Is mount Zion, [on] the sides of the north, The city of the great King.</VERS>\r\n      <VERS vnumber=\"3\">God hath made himself known in her palaces for a refuge.</VERS>\r\n      <VERS vnumber=\"4\">For, lo, the kings assembled themselves, They passed by together.</VERS>\r\n      <VERS vnumber=\"5\">They saw it, then were they amazed; They were dismayed, they hasted away.</VERS>\r\n      <VERS vnumber=\"6\">Trembling took hold of them there, Pain, as of a woman in travail.</VERS>\r\n      <VERS vnumber=\"7\">With the east wind Thou breakest the ships of Tarshish.</VERS>\r\n      <VERS vnumber=\"8\">As we have heard, so have we seen In the city of Jehovah of hosts, in the city of our God: God will establish it for ever.     Selah</VERS>\r\n      <VERS vnumber=\"9\">We have thought on thy lovingkindness, O God, In the midst of thy temple.</VERS>\r\n      <VERS vnumber=\"10\">As is thy name, O God, So is thy praise unto the ends of the earth: Thy right hand is full of righteousness.</VERS>\r\n      <VERS vnumber=\"11\">Let mount Zion be glad, Let the daughters of Judah rejoice, Because of thy judgments.</VERS>\r\n      <VERS vnumber=\"12\">Walk about Zion, and go round about her; Number the towers thereof;</VERS>\r\n      <VERS vnumber=\"13\">Mark ye well her bulwarks; Consider her palaces: That ye may tell it to the generation following.</VERS>\r\n      <VERS vnumber=\"14\">For this God is our God for ever and ever: He will be our guide [even] unto death.           Psalm 49  For the Chief Musician. A Psalm of the sons of Korah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"49\">\r\n      <VERS vnumber=\"1\">Hear this, all ye peoples; Give ear, all ye inhabitants of the world,</VERS>\r\n      <VERS vnumber=\"2\">Both low and high, Rich and poor together.</VERS>\r\n      <VERS vnumber=\"3\">My mouth shall speak wisdom; And the meditation of my heart shall be of understanding.</VERS>\r\n      <VERS vnumber=\"4\">I will incline mine ear to a parable: I will open my dark saying upon the harp.</VERS>\r\n      <VERS vnumber=\"5\">Wherefore should I fear in the days of evil, When iniquity at my heels compasseth me about?</VERS>\r\n      <VERS vnumber=\"6\">They that trust in their wealth, And boast themselves in the multitude of their riches;</VERS>\r\n      <VERS vnumber=\"7\">None [of them] can by any means redeem his brother, Nor give to God a ransom for him;</VERS>\r\n      <VERS vnumber=\"8\">(For the redemption of their life is costly, And it faileth for ever;)</VERS>\r\n      <VERS vnumber=\"9\">That he should still live alway, That he should not see corruption.</VERS>\r\n      <VERS vnumber=\"10\">For he shall see it. Wise men die; The fool and the brutish alike perish, And leave their wealth to others.</VERS>\r\n      <VERS vnumber=\"11\">Their 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.</VERS>\r\n      <VERS vnumber=\"12\">But man [being] in honor abideth not: He is like the beasts that perish.</VERS>\r\n      <VERS vnumber=\"13\">This their way is their folly: Yet after them men approve their sayings.     Selah</VERS>\r\n      <VERS vnumber=\"14\">They are appointed as a flock for Sheol; Death shall be their shepherd; And the upright shall have dominion over them in the morning; And their beauty shall be for Sheol to consume, That there be no habitation for it.</VERS>\r\n      <VERS vnumber=\"15\">But God will redeem my soul from the power of Sheol; For he will receive me.     Selah</VERS>\r\n      <VERS vnumber=\"16\">Be not thou afraid when one is made rich, When the glory of his house is increased.</VERS>\r\n      <VERS vnumber=\"17\">For when he dieth he shall carry nothing away; His glory shall not descend after him.</VERS>\r\n      <VERS vnumber=\"18\">Though while he lived he blessed his soul (And men praise thee, when thou doest well to thyself,)</VERS>\r\n      <VERS vnumber=\"19\">He shall go to the generation of his fathers; They shall never see the light.</VERS>\r\n      <VERS vnumber=\"20\">Man that is in honor, and understandeth not, Is like the beasts that perish.           Psalm 50  A Psalm of Asaph.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"50\">\r\n      <VERS vnumber=\"1\">The Mighty One, God, Jehovah, hath spoken, And called the earth from the rising of the sun unto the going       down thereof.</VERS>\r\n      <VERS vnumber=\"2\">Out of Zion, the perfection of beauty, God hath shined forth.</VERS>\r\n      <VERS vnumber=\"3\">Our God cometh, and doth not keep silence: A fire devoureth before him, And it is very tempestuous round about him.</VERS>\r\n      <VERS vnumber=\"4\">He calleth to the heavens above, And to the earth, that he may judge his people:</VERS>\r\n      <VERS vnumber=\"5\">Gather my saints together unto me, Those that have made a covenant with me by sacrifice.</VERS>\r\n      <VERS vnumber=\"6\">And the heavens shall declare his righteousness; For God is judge himself.     Selah</VERS>\r\n      <VERS vnumber=\"7\">Hear, O my people, and I will speak; O Israel, and I will testify unto thee: I am God, [even] thy God.</VERS>\r\n      <VERS vnumber=\"8\">I will not reprove thee for thy sacrifices; And thy burnt-offerings are continually before me.</VERS>\r\n      <VERS vnumber=\"9\">I will take no bullock out of thy house, Nor he-goats out of thy folds.</VERS>\r\n      <VERS vnumber=\"10\">For every beast of the forest is mine, And the cattle upon a thousand hills.</VERS>\r\n      <VERS vnumber=\"11\">I know all the birds of the mountains; And the wild beasts of the field are mine.</VERS>\r\n      <VERS vnumber=\"12\">If I were hungry, I would not tell thee; For the world is mine, and the fulness thereof.</VERS>\r\n      <VERS vnumber=\"13\">Will I eat the flesh of bulls, Or drink the blood of goats?</VERS>\r\n      <VERS vnumber=\"14\">Offer unto God the sacrifice of thanksgiving; And pay thy vows unto the Most High:</VERS>\r\n      <VERS vnumber=\"15\">And call upon me in the day of trouble; I will deliver thee, and thou shalt glorify me.</VERS>\r\n      <VERS vnumber=\"16\">But unto the wicked God saith, What hast thou to do to declare my statutes, And that thou hast taken my covenant in thy mouth,</VERS>\r\n      <VERS vnumber=\"17\">Seeing thou hatest instruction, And castest my words behind thee?</VERS>\r\n      <VERS vnumber=\"18\">When thou sawest a thief, thou consentedst with him, And hast been partaker with adulterers.</VERS>\r\n      <VERS vnumber=\"19\">Thou givest thy mouth to evil, And thy tongue frameth deceit.</VERS>\r\n      <VERS vnumber=\"20\">Thou sittest and speakest against thy brother; Thou slanderest thine own mother`s son.</VERS>\r\n      <VERS vnumber=\"21\">These things hast thou done, and I kept silence; Thou thoughtest that I was altogether such a one as thyself: [But] I will reprove thee, and set [them] in order before thine       eyes.</VERS>\r\n      <VERS vnumber=\"22\">Now consider this, ye that forget God, Lest I tear you in pieces, and there be none to deliver:</VERS>\r\n      <VERS vnumber=\"23\">Whoso offereth the sacrifice of thanksgiving glorifieth       me; And to him that ordereth his way [aright] Will I show the salvation of God.           Psalm 51  For the Chief Musician. A Psalm of David; when Nathan the prophet came unto him, after he had gone in to Bathsheba.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"51\">\r\n      <VERS vnumber=\"1\">Have mercy upon me, O God, according to thy       lovingkindness: According to the multitude of thy tender mercies blot out my       transgressions.</VERS>\r\n      <VERS vnumber=\"2\">Wash me thoroughly from mine iniquity, And cleanse me from my sin.</VERS>\r\n      <VERS vnumber=\"3\">For I know my transgressions; And my sin is ever before me.</VERS>\r\n      <VERS vnumber=\"4\">Against thee, thee only, have I sinned, And done that which is evil in thy sight; That thou mayest be justified when thou speakest, And be clear when thou judgest.</VERS>\r\n      <VERS vnumber=\"5\">Behold, I was brought forth in iniquity; And in sin did my mother conceive me.</VERS>\r\n      <VERS vnumber=\"6\">Behold, thou desirest truth in the inward parts; And in the hidden part thou wilt make me to know wisdom.</VERS>\r\n      <VERS vnumber=\"7\">Purify me with hyssop, and I shall be clean: Wash me, and I shall be whiter than snow.</VERS>\r\n      <VERS vnumber=\"8\">Make me to hear joy and gladness, That the bones which thou hast broken may rejoice.</VERS>\r\n      <VERS vnumber=\"9\">Hide thy face from my sins, And blot out all mine iniquities.</VERS>\r\n      <VERS vnumber=\"10\">Create in me a clean heart, O God; And renew a right spirit within me.</VERS>\r\n      <VERS vnumber=\"11\">Cast me not away from thy presence; And take not thy holy Spirit from me.</VERS>\r\n      <VERS vnumber=\"12\">Restore unto me the joy of thy salvation; And uphold me with a willing spirit.</VERS>\r\n      <VERS vnumber=\"13\">Then will I teach transgressors thy ways; And sinners shall be converted unto thee.</VERS>\r\n      <VERS vnumber=\"14\">Deliver me from bloodguiltiness, O God, thou God of my       salvation; [And] my tongue shall sing aloud of thy righteousness.</VERS>\r\n      <VERS vnumber=\"15\">O Lord, open thou my lips; And my mouth shall show forth thy praise.</VERS>\r\n      <VERS vnumber=\"16\">For thou delightest not in sacrifice; else would I give       it: Thou hast no pleasure in burnt-offering.</VERS>\r\n      <VERS vnumber=\"17\">The sacrifices of God are a broken spirit: A broken and contrite heart, O God, thou wilt not despise.</VERS>\r\n      <VERS vnumber=\"18\">Do good in thy good pleasure unto Zion: Build thou the walls of Jerusalem.</VERS>\r\n      <VERS vnumber=\"19\">Then will thou delight in the sacrifices of       righteousness, In burnt-offering and in whole burnt-offering: Then will they offer bullocks upon thine altar.           Psalm 52  For the Chief Musician. Maschil of David; when Doeg the Edomite came and told Saul, and said unto him, David is come to the house of Abimelech.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"52\">\r\n      <VERS vnumber=\"1\">Why boastest thou thyself in mischief, O mighty man? The lovingkindness of God [endureth] continually.</VERS>\r\n      <VERS vnumber=\"2\">Thy tongue deviseth very wickedness, Like a sharp razor, working deceitfully.</VERS>\r\n      <VERS vnumber=\"3\">Thou lovest evil more than good, And lying rather than to speak righteousness.     Selah</VERS>\r\n      <VERS vnumber=\"4\">Thou lovest all devouring words, thou deceitful tongue.</VERS>\r\n      <VERS vnumber=\"5\">God will likewise destroy thee for ever; He will take thee up, and pluck thee out of thy tent, And root thee out of the land of the living.     Selah</VERS>\r\n      <VERS vnumber=\"6\">The righteous also shall see [it], and fear, And shall laugh at him, [saying],</VERS>\r\n      <VERS vnumber=\"7\">Lo, this is the man that made not God his strength, But trusted in the abundance of his riches, And strengthened himself in his wickedness.</VERS>\r\n      <VERS vnumber=\"8\">But as for me, I am like a green olive-tree in the house       of God: I trust in the lovingkindness of God for ever and ever.</VERS>\r\n      <VERS vnumber=\"9\">I will give thee thanks for ever, because thou hast done       it; And I will hope in thy name, for it is good, in the presence of       thy saints.           Psalm 53  For the Chief Musician; set to Mahalath. Maschil of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"53\">\r\n      <VERS vnumber=\"1\">The fool hath said in his heart, There is no God. Corrupt are they, and have done abominable iniquity; There is none that doeth good.</VERS>\r\n      <VERS vnumber=\"2\">God looked down from heaven upon the children of men, To see if there were any that did understand, That did seek after God.</VERS>\r\n      <VERS vnumber=\"3\">Every one of them is gone back; they are together become       filthy; There is none that doeth good, no, not one.</VERS>\r\n      <VERS vnumber=\"4\">Have the workers of iniquity no knowledge, Who eat up my people [as] they eat bread, And call not upon God?</VERS>\r\n      <VERS vnumber=\"5\">There 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 of God hath rejected them.</VERS>\r\n      <VERS vnumber=\"6\">Oh that the salvation of Israel were come out of Zion! When God bringeth back the captivity of his people, Then shall Jacob rejoice, [and] Israel shall be glad.           Psalm 54  For the Chief Musician; on stringed instruments. Maschil of David; when the Ziphites came and said to Saul, Doth not David hide himself with us?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"54\">\r\n      <VERS vnumber=\"1\">Save me, O God, by thy name, And judge me in thy might.</VERS>\r\n      <VERS vnumber=\"2\">Hear my prayer, O God; Give ear to the words of my mouth.</VERS>\r\n      <VERS vnumber=\"3\">For strangers are risen up against me, And violent men have sought after my soul: They have not set God before them.     Selah</VERS>\r\n      <VERS vnumber=\"4\">Behold, God is my helper: The Lord is of them that uphold my soul.</VERS>\r\n      <VERS vnumber=\"5\">He will requite the evil unto mine enemies: Destroy thou them in thy truth.</VERS>\r\n      <VERS vnumber=\"6\">With a freewill-offering will I sacrifice unto thee: I will give thanks unto thy name, O Jehovah, for it is good.</VERS>\r\n      <VERS vnumber=\"7\">For he hath delivered me out of all trouble; And mine eye hath seen [my desire] upon mine enemies.           Psalm 55  For the Chief Musician; on stringed instruments. Maschil of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"55\">\r\n      <VERS vnumber=\"1\">Give ear to my prayer, O God; And hide not thyself from my supplication.</VERS>\r\n      <VERS vnumber=\"2\">Attend unto me, and answer me: I am restless in my complaint, and moan,</VERS>\r\n      <VERS vnumber=\"3\">Because of the voice of the enemy, Because of the oppression of the wicked; For they cast iniquity upon me, And in anger they persecute me.</VERS>\r\n      <VERS vnumber=\"4\">My heart is sore pained within me: And the terrors of death are fallen upon me.</VERS>\r\n      <VERS vnumber=\"5\">Fearfulness and trembling are come upon me, And horror hath overwhelmed me.</VERS>\r\n      <VERS vnumber=\"6\">And I said, Oh that I had wings like a dove! Then would I fly away, and be at rest.</VERS>\r\n      <VERS vnumber=\"7\">Lo, then would I wander far off, I would lodge in the wilderness.     Selah</VERS>\r\n      <VERS vnumber=\"8\">I would haste me to a shelter From the stormy wind and tempest.</VERS>\r\n      <VERS vnumber=\"9\">Destroy, O Lord, [and] divide their tongue; For I have seen violence and strife in the city.</VERS>\r\n      <VERS vnumber=\"10\">Day and night they go about it upon the walls thereof: Iniquity also and mischief are in the midst of it.</VERS>\r\n      <VERS vnumber=\"11\">Wickedness is in the midst thereof: Oppression and guile depart not from its streets.</VERS>\r\n      <VERS vnumber=\"12\">For 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:</VERS>\r\n      <VERS vnumber=\"13\">But it was thou, a man mine equal, My companion, and my familiar friend.</VERS>\r\n      <VERS vnumber=\"14\">We took sweet counsel together; We walked in the house of God with the throng.</VERS>\r\n      <VERS vnumber=\"15\">Let death come suddenly upon them, Let them go down alive into Sheol; For wickedness is in their dwelling, in the midst of them.</VERS>\r\n      <VERS vnumber=\"16\">As for me, I will call upon God; And Jehovah will save me.</VERS>\r\n      <VERS vnumber=\"17\">Evening, and morning, and at noonday, will I complain,       and moan; And he will hear my voice.</VERS>\r\n      <VERS vnumber=\"18\">He hath redeemed my soul in peace from the battle that       was against me; For they were many [that strove] with me.</VERS>\r\n      <VERS vnumber=\"19\">God will hear, and answer them, Even he that abideth of old,     Selah [The men] who have no changes, And who fear not God.</VERS>\r\n      <VERS vnumber=\"20\">He hath put forth his hands against such as were at       peace with him: He hath profaned his covenant.</VERS>\r\n      <VERS vnumber=\"21\">His mouth was smooth as butter, But his heart was war: His words were softer than oil, Yet were they drawn swords.</VERS>\r\n      <VERS vnumber=\"22\">Cast thy burden upon Jehovah, and he will sustain thee: He will never suffer the righteous to be moved.</VERS>\r\n      <VERS vnumber=\"23\">But thou, O God, wilt bring them down into the pit of       destruction: Bloodthirsty and deceitful men shall not live out half their       days; But I will trust in thee.           Psalm 56  For the Chief Musician; set to Jonath elem rehokim. [A Psalm] of David. Michtam: when the Philistines took him in Gath.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"56\">\r\n      <VERS vnumber=\"1\">Be merciful unto me, O God; for man would swallow me up: All the day long he fighting oppresseth me.</VERS>\r\n      <VERS vnumber=\"2\">Mine enemies would swallow me up all the day long; For they are many that fight proudly against me.</VERS>\r\n      <VERS vnumber=\"3\">What time I am afraid, I will put my trust in thee.</VERS>\r\n      <VERS vnumber=\"4\">In God (I will praise his word), In God have I put my trust, I will not be afraid; What can flesh do unto me?</VERS>\r\n      <VERS vnumber=\"5\">All the day long they wrest my words: All their thoughts are against me for evil.</VERS>\r\n      <VERS vnumber=\"6\">They gather themselves together, they hide themselves, They mark my steps, Even as they have waited for my soul.</VERS>\r\n      <VERS vnumber=\"7\">Shall they escape by iniquity? In anger cast down the peoples, O God.</VERS>\r\n      <VERS vnumber=\"8\">Thou numberest my wanderings: Put thou my tears into thy bottle; Are they not in thy book?</VERS>\r\n      <VERS vnumber=\"9\">Then shall mine enemies turn back in the day that I call: This I know, that God is for me.</VERS>\r\n      <VERS vnumber=\"10\">In God (I will praise [his] word), In Jehovah (I will praise [his] word),</VERS>\r\n      <VERS vnumber=\"11\">In God have I put my trust, I will not be afraid; What can man do unto me?</VERS>\r\n      <VERS vnumber=\"12\">Thy vows are upon me, O God: I will render thank-offerings unto thee.</VERS>\r\n      <VERS vnumber=\"13\">For thou hast delivered my soul from death: [Hast thou] not [delivered] my feet from falling, That I may walk before God In the light of the living?           Psalm 57  For the Chief Musician; [set to] Al-tash-heth. [A Psalm] of David. Michtam; when he fled from Saul, in the cave.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"57\">\r\n      <VERS vnumber=\"1\">Be merciful unto me, O God, be merciful unto me; For my soul taketh refuge in thee: Yea, in the shadow of thy wings will I take refuge, Until [these] calamities be overpast.</VERS>\r\n      <VERS vnumber=\"2\">I will cry unto God Most High, Unto God that performeth [all things] for me.</VERS>\r\n      <VERS vnumber=\"3\">He will send from heaven, and save me, [When] he that would swallow me up reproacheth;     Selah God will send forth his lovingkindness and his truth.</VERS>\r\n      <VERS vnumber=\"4\">My soul is among lions; I lie among them that are set on fire, Even the sons of men, whose teeth are spears and arrows, And their tongue a sharp sword.</VERS>\r\n      <VERS vnumber=\"5\">Be thou exalted, O God, above the heavens; [Let] thy glory [be] above all the earth.</VERS>\r\n      <VERS vnumber=\"6\">They have prepared a net for my steps; My soul is bowed down: They have digged a pit before me; They are fallen into the midst thereof themselves.     Selah</VERS>\r\n      <VERS vnumber=\"7\">My heart is fixed, O God, my heart is fixed: I will sing, yea, I will sing praises.</VERS>\r\n      <VERS vnumber=\"8\">Awake up, my glory; awake, psaltery and harp: I myself will awake right early.</VERS>\r\n      <VERS vnumber=\"9\">I will give thanks unto thee, O Lord, among the peoples: I will sing praises unto thee among the nations.</VERS>\r\n      <VERS vnumber=\"10\">For thy lovingkindness is great unto the heavens, And thy truth unto the skies.</VERS>\r\n      <VERS vnumber=\"11\">Be thou exalted, O God, above the heavens; [Let] thy glory [be] above all the earth.           Psalm 58  For the Chief Musician; [set to] Al-tashheth. [A Psalm] of David. Michtam.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"58\">\r\n      <VERS vnumber=\"1\">Do ye indeed in silence speak righteousness? Do ye judge uprightly, O ye sons of men?</VERS>\r\n      <VERS vnumber=\"2\">Nay, in heart ye work wickedness; Ye weigh out the violence of your hands in the earth.</VERS>\r\n      <VERS vnumber=\"3\">The wicked are estranged from the womb: They go astray as soon as they are born, speaking lies.</VERS>\r\n      <VERS vnumber=\"4\">Their poison is like the poison of a serpent: [They are] like the deaf adder that stoppeth her ear,</VERS>\r\n      <VERS vnumber=\"5\">Which hearkeneth not to the voice of charmers, Charming never so wisely.</VERS>\r\n      <VERS vnumber=\"6\">Break their teeth, O God, in their mouth: Break out the great teeth of the young lions, O Jehovah.</VERS>\r\n      <VERS vnumber=\"7\">Let them melt away as water that runneth apace: When he aimeth his arrows, let them be as though they were cut       off.</VERS>\r\n      <VERS vnumber=\"8\">[Let them be] as a snail which melteth and passeth away, [Like] the untimely birth of a woman, that hath not seen the sun.</VERS>\r\n      <VERS vnumber=\"9\">Before your pots can feel the thorns, He will take them away with a whirlwind, the green and the       burning alike.</VERS>\r\n      <VERS vnumber=\"10\">The righteous shall rejoice when he seeth the vengeance: He shall wash his feet in the blood of the wicked;</VERS>\r\n      <VERS vnumber=\"11\">So that men shall say, Verily there is a reward for the       righteous: Verily there is a God that judgeth in the earth.           Psalm 59  For the Chief Musician; [set to] Al-tashheth. [A Psalm] of David. Michtam; when Saul sent, and they watched the house to kill him.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"59\">\r\n      <VERS vnumber=\"1\">Deliver me from mine enemies, O my God: Set me on high from them that rise up against me.</VERS>\r\n      <VERS vnumber=\"2\">Deliver me from the workers of iniquity, And save me from the bloodthirsty men.</VERS>\r\n      <VERS vnumber=\"3\">For, lo, they lie in wait for my soul; The mighty gather themselves together against me: Not for my transgression, nor for my sin, O Jehovah.</VERS>\r\n      <VERS vnumber=\"4\">They run and prepare themselves without [my] fault: Awake thou to help me, and behold.</VERS>\r\n      <VERS vnumber=\"5\">Even thou, O Jehovah God of hosts, the God of Israel, Arise to visit all the nations: Be not merciful to any wicked transgressors.     Selah</VERS>\r\n      <VERS vnumber=\"6\">They return at evening, they howl like a dog, And go round about the city.</VERS>\r\n      <VERS vnumber=\"7\">Behold, they belch out with their mouth; Swords are in their lips: For who, [say they], doth hear?</VERS>\r\n      <VERS vnumber=\"8\">But thou, O Jehovah, wilt laugh at them; Thou wilt have all the nations in derision.</VERS>\r\n      <VERS vnumber=\"9\">[Because of] his strength I will give heed unto thee; For God is my high tower.</VERS>\r\n      <VERS vnumber=\"10\">My God with his lovingkindness will meet me: God will let me see [my desire] upon mine enemies.</VERS>\r\n      <VERS vnumber=\"11\">Slay them not, lest my people forget: Scatter them by thy power, and bring them down, O Lord our shield.</VERS>\r\n      <VERS vnumber=\"12\">[For] 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.</VERS>\r\n      <VERS vnumber=\"13\">Consume them in wrath, consume them, so that they shall       be no more: And let them know that God ruleth in Jacob, Unto the ends of the earth.      Selah</VERS>\r\n      <VERS vnumber=\"14\">And at evening let them return, let them howl like a dog, And go round about the city.</VERS>\r\n      <VERS vnumber=\"15\">They shall wander up and down for food, And tarry all night if they be not satisfied.</VERS>\r\n      <VERS vnumber=\"16\">But I will sing of thy strength; Yea, I will sing aloud of thy lovingkindness in the morning: For thou hast been my high tower, And a refuge in the day of my distress.</VERS>\r\n      <VERS vnumber=\"17\">Unto thee, O my strength, will I sing praises: For God is my high tower, the God of my mercy.           Psalm 60  For the Chief Musician; [set to] Shushan Eduth. Michtam of David, to teach; and when he strove with Aram-naharaim and with Aram-zobah, and Joab returned, and smote of Edom in the Valley of Salt twelve thousand.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"60\">\r\n      <VERS vnumber=\"1\">O God thou hast cast us off, thou hast broken us down; Thou hast been angry; oh restore us again.</VERS>\r\n      <VERS vnumber=\"2\">Thou hast made the land to tremble; thou hast rent it: Heal the breaches thereof; for it shaketh.</VERS>\r\n      <VERS vnumber=\"3\">Thou hast showed thy people hard things: Thou hast made us to drink the wine of staggering.</VERS>\r\n      <VERS vnumber=\"4\">Thou hast given a banner to them that fear thee, That it may be displayed because of the truth.     Selah</VERS>\r\n      <VERS vnumber=\"5\">That thy beloved may be delivered, Save with thy right hand, and answer us.</VERS>\r\n      <VERS vnumber=\"6\">God hath spoken in his holiness: I will exult; I will divide Shechem, and mete out the valley of Succoth.</VERS>\r\n      <VERS vnumber=\"7\">Gilead is mine, and Manasseh is mine; Ephraim also is the defence of my head; Judah is my sceptre.</VERS>\r\n      <VERS vnumber=\"8\">Moab is my washpot; Upon Edom will I cast my shoe: Philistia, shout thou because of me.</VERS>\r\n      <VERS vnumber=\"9\">Who will bring me into the strong city? Who hath led me unto Edom?</VERS>\r\n      <VERS vnumber=\"10\">Hast not thou, O God, cast us off? And thou goest not forth, O God, with our hosts.</VERS>\r\n      <VERS vnumber=\"11\">Give us help against the adversary; For vain is the help of man.</VERS>\r\n      <VERS vnumber=\"12\">Through God we shall do valiantly; For he it is that will tread down our adversaries.           Psalm 61  For the Chief Musician; on a stringed instrument. [A Psalm] of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"61\">\r\n      <VERS vnumber=\"1\">Hear my cry, O God; Attend unto my prayer.</VERS>\r\n      <VERS vnumber=\"2\">From the end of the earth will I call unto thee, when my       heart is overwhelmed: Lead me to the rock that is higher than I.</VERS>\r\n      <VERS vnumber=\"3\">For thou hast been a refuge for me, A strong tower from the enemy.</VERS>\r\n      <VERS vnumber=\"4\">I will dwell in thy tabernacle for ever: I will take refuge in the covert of thy wings.     Selah</VERS>\r\n      <VERS vnumber=\"5\">For thou, O God, hast heard my vows: Thou hast given [me] the heritage of those that fear thy name.</VERS>\r\n      <VERS vnumber=\"6\">Thou wilt prolong the king`s life; His years shall be as many generations.</VERS>\r\n      <VERS vnumber=\"7\">He shall abide before God for ever: Oh prepare lovingkindness and truth, that they may preserve him.</VERS>\r\n      <VERS vnumber=\"8\">So will I sing praise unto thy name for ever, That I may daily perform my vows.           Psalm 62  For the Chief Musician; after the manner of Jeduthan. A Psalm of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"62\">\r\n      <VERS vnumber=\"1\">My soul waiteth in silence for God only: From him [cometh] my salvation.</VERS>\r\n      <VERS vnumber=\"2\">He only is my rock and my salvation: [He is] my high tower; I shall not be greatly moved.</VERS>\r\n      <VERS vnumber=\"3\">How long will ye set upon a man, That ye may slay [him], all of you, Like a leaning wall, like a tottering fence?</VERS>\r\n      <VERS vnumber=\"4\">They only consult to thrust him down from his dignity; They delight in lies; They bless with their mouth, but they curse inwardly.     Selah</VERS>\r\n      <VERS vnumber=\"5\">My soul, wait thou in silence for God only; For my expectation is from him.</VERS>\r\n      <VERS vnumber=\"6\">He only is my rock and my salvation: [He is] my high tower; I shall not be moved.</VERS>\r\n      <VERS vnumber=\"7\">With God is my salvation and my glory: The rock of my strength, and my refuge, is in God.</VERS>\r\n      <VERS vnumber=\"8\">Trust in him at all times, ye people; Pour out your heart before him: God is a refuge for us.     Selah</VERS>\r\n      <VERS vnumber=\"9\">Surely men of low degree are vanity, and men of high       degree are a lie: In the balances they will go up; They are together lighter than vanity.</VERS>\r\n      <VERS vnumber=\"10\">Trust not in oppression, And become not vain in robbery: If riches increase, set not your heart [thereon].</VERS>\r\n      <VERS vnumber=\"11\">God hath spoken once, Twice have I heard this, That power belongeth unto God.</VERS>\r\n      <VERS vnumber=\"12\">Also unto thee, O Lord, belongeth lovingkindness; For thou renderest to every man according to his work.           Psalm 63  A Psalm of David when he was in the wilderness of Judah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"63\">\r\n      <VERS vnumber=\"1\">O God, thou art my God; earnestly will I seek thee: My soul thirsteth for thee, my flesh longeth for thee, In a dry and weary land, where no water is.</VERS>\r\n      <VERS vnumber=\"2\">So have I looked upon thee in the sanctuary, To see thy power and thy glory.</VERS>\r\n      <VERS vnumber=\"3\">Because thy lovingkindness is better than life, My lips shall praise thee.</VERS>\r\n      <VERS vnumber=\"4\">So will I bless thee while I live: I will lift up my hands in thy name.</VERS>\r\n      <VERS vnumber=\"5\">My soul shall be satisfied as with marrow and fatness; And my mouth shall praise thee with joyful lips;</VERS>\r\n      <VERS vnumber=\"6\">When I remember thee upon my bed, [And] meditate on thee in the night-watches.</VERS>\r\n      <VERS vnumber=\"7\">For thou hast been my help, And in the shadow of thy wings will I rejoice.</VERS>\r\n      <VERS vnumber=\"8\">My soul followeth hard after thee: Thy right hand upholdeth me.</VERS>\r\n      <VERS vnumber=\"9\">But those that seek my soul, to destroy it, Shall go into the lower parts of the earth.</VERS>\r\n      <VERS vnumber=\"10\">They shall be given over to the power of the sword: They shall be a portion for foxes.</VERS>\r\n      <VERS vnumber=\"11\">But the king shall rejoice in God: Every one that sweareth by him shall glory; For the mouth of them that speak lies shall be stopped.           Psalm 64  For the Chief Musician. A Psalm of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"64\">\r\n      <VERS vnumber=\"1\">Hear my voice, O God, in my complaint: Preserve my life from fear of the enemy.</VERS>\r\n      <VERS vnumber=\"2\">Hide me from the secret counsel of evil-doers, From the tumult of the workers of iniquity;</VERS>\r\n      <VERS vnumber=\"3\">Who have whet their tongue like a sword, And have aimed their arrows, even bitter words,</VERS>\r\n      <VERS vnumber=\"4\">That they may shoot in secret places at the perfect: Suddenly do they shoot at him, and fear not.</VERS>\r\n      <VERS vnumber=\"5\">They encourage themselves in an evil purpose; They commune of laying snares privily; They say, Who will see them?</VERS>\r\n      <VERS vnumber=\"6\">They search out iniquities; We have accomplished, [say they], a diligent search: And the inward thought and the heart of every one is deep.</VERS>\r\n      <VERS vnumber=\"7\">But God will shoot at them; With an arrow suddenly shall they be wounded.</VERS>\r\n      <VERS vnumber=\"8\">So they shall be made to stumble, their own tongue being       against them: All that see them shall wag the head.</VERS>\r\n      <VERS vnumber=\"9\">And all men shall fear; And they shall declare the work of God, And shall wisely consider of his doing.</VERS>\r\n      <VERS vnumber=\"10\">The righteous shall be glad in Jehovah, and shall take       refuge in him; And all the upright in heart shall glory.           Psalm 65  For the Chief Musician. A Psalm. A song of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"65\">\r\n      <VERS vnumber=\"1\">Praise waiteth for thee, O God, in Zion; And unto thee shall the vow be performed.</VERS>\r\n      <VERS vnumber=\"2\">O thou that hearest prayer, Unto thee shall all flesh come.</VERS>\r\n      <VERS vnumber=\"3\">Iniquities prevail against me: As for our transgressions, thou wilt forgive them.</VERS>\r\n      <VERS vnumber=\"4\">Blessed 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, Thy holy temple.</VERS>\r\n      <VERS vnumber=\"5\">By terrible things thou wilt answer us in righteousness, Oh God of our salvation, Thou that art the confidence of all the ends of the earth, And of them that are afar off upon the sea:</VERS>\r\n      <VERS vnumber=\"6\">Who by his strength setteth fast the mountains, Being girded about with might;</VERS>\r\n      <VERS vnumber=\"7\">Who stilleth the roaring of the seas, The roaring of their waves, And the tumult of the peoples.</VERS>\r\n      <VERS vnumber=\"8\">They also that dwell in the uttermost parts are afraid at       thy tokens: Thou makest the outgoings of the morning and evening to rejoice.</VERS>\r\n      <VERS vnumber=\"9\">Thou visitest the earth, and waterest it, Thou greatly enrichest it; The river of God is full of water: Thou providest them grain, when thou hast so prepared the earth.</VERS>\r\n      <VERS vnumber=\"10\">Thou waterest its furrows abundantly; Thou settlest the ridges thereof: Thou makest it soft with showers; Thou blessest the springing thereof.</VERS>\r\n      <VERS vnumber=\"11\">Thou crownest the year with thy goodness; And thy paths drop fatness.</VERS>\r\n      <VERS vnumber=\"12\">They drop upon the pastures of the wilderness; And the hills are girded with joy.</VERS>\r\n      <VERS vnumber=\"13\">The pastures are clothed with flocks; The valleys also are covered over with grain; They shout for joy, they also sing.           Psalm 66  For the Chief Musician. A song, a Psalm.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"66\">\r\n      <VERS vnumber=\"1\">Make a joyful noise unto God, all the earth:</VERS>\r\n      <VERS vnumber=\"2\">Sing forth the glory of his name: Make his praise glorious.</VERS>\r\n      <VERS vnumber=\"3\">Say unto God, How terrible are thy works! Through the greatness of thy power shall thine enemies submit       themselves unto thee.</VERS>\r\n      <VERS vnumber=\"4\">All the earth shall worship thee, And shall sing unto thee; They shall sing to thy name.     Selah</VERS>\r\n      <VERS vnumber=\"5\">Come, and see the works of God; [He is] terrible in his doing toward the children of men.</VERS>\r\n      <VERS vnumber=\"6\">He turned the sea into dry land; They went through the river on foot: There did we rejoice in him.</VERS>\r\n      <VERS vnumber=\"7\">He ruleth by his might for ever; His eyes observe the nations: Let not the rebellious exalt themselves.     Selah</VERS>\r\n      <VERS vnumber=\"8\">Oh bless our God, ye peoples, And make the voice of his praise to be heard;</VERS>\r\n      <VERS vnumber=\"9\">Who holdeth our soul in life, And suffereth not our feet to be moved.</VERS>\r\n      <VERS vnumber=\"10\">For thou, O God, hast proved us: Thou hast tried us, as silver is tried.</VERS>\r\n      <VERS vnumber=\"11\">Thou broughtest us into the net; Thou layedst a sore burden upon our loins.</VERS>\r\n      <VERS vnumber=\"12\">Thou didst cause men to ride over our heads; We went through fire and through water; But thou broughtest us out into a wealthy place.</VERS>\r\n      <VERS vnumber=\"13\">I will come into thy house with burnt-offerings; I will pay thee my vows,</VERS>\r\n      <VERS vnumber=\"14\">Which my lips uttered, And my mouth spake, when I was in distress.</VERS>\r\n      <VERS vnumber=\"15\">I will offer unto thee burnt-offerings of fatlings, With the incense of rams; I will offer bullocks with goats.     Selah</VERS>\r\n      <VERS vnumber=\"16\">Come, and hear, all ye that fear God, And I will declare what he hath done for my soul.</VERS>\r\n      <VERS vnumber=\"17\">I cried unto him with my mouth, And he was extolled with my tongue.</VERS>\r\n      <VERS vnumber=\"18\">If I regard iniquity in my heart, The Lord will not hear:</VERS>\r\n      <VERS vnumber=\"19\">But verily God hath heard; He hath attended to the voice of my prayer.</VERS>\r\n      <VERS vnumber=\"20\">Blessed be God, Who hath not turned away my prayer, Nor his lovingkindness from me.           Psalm 67  For the Chief Musician; on stringed instruments. A Psalm, a song.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"67\">\r\n      <VERS vnumber=\"1\">God be merciful unto us, and bless us, [And] cause his face to shine upon us;     Selah</VERS>\r\n      <VERS vnumber=\"2\">That thy way may be known upon earth, Thy salvation among all nations.</VERS>\r\n      <VERS vnumber=\"3\">Let the peoples praise thee, O God; Let all the peoples praise thee.</VERS>\r\n      <VERS vnumber=\"4\">Oh let the nations be glad and sing for joy; For thou wilt judge the peoples with equity, And govern the nations upon earth.     Selah</VERS>\r\n      <VERS vnumber=\"5\">Let the peoples praise thee, O God; Let all the peoples praise thee.</VERS>\r\n      <VERS vnumber=\"6\">The earth hath yielded its increase: God, even our own God, will bless us.</VERS>\r\n      <VERS vnumber=\"7\">God will bless us; And all the ends of the earth shall fear him.           Psalm 68  For the Chief Musician; A Psalm of David, a song.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"68\">\r\n      <VERS vnumber=\"1\">Let God arise, let his enemies be scattered; Let them also that hate him flee before him.</VERS>\r\n      <VERS vnumber=\"2\">As smoke is driven away, so drive them away: As wax melteth before the fire, So let the wicked perish at the presence of God.</VERS>\r\n      <VERS vnumber=\"3\">But let the righteous be glad; let them exult before God: Yea, let them rejoice with gladness.</VERS>\r\n      <VERS vnumber=\"4\">Sing unto God, sing praises to his name: Cast up a highway for him that rideth through the deserts; His name is Jehovah; and exult ye before him.</VERS>\r\n      <VERS vnumber=\"5\">A father of the fatherless, and a judge of the widows, Is God in his holy habitation.</VERS>\r\n      <VERS vnumber=\"6\">God setteth the solitary in families: He bringeth out the prisoners into prosperity; But the rebellious dwell in a parched land.</VERS>\r\n      <VERS vnumber=\"7\">O God, when thou wentest forth before thy people, When thou didst march through the wilderness;     Selah</VERS>\r\n      <VERS vnumber=\"8\">The earth trembled, The heavens also dropped [rain] at the presence of God: Yon Sinai [trembled] at the presence of God, the God of Israel.</VERS>\r\n      <VERS vnumber=\"9\">Thou, O God, didst send a plentiful rain, Thou didst confirm thine inheritance, when it was weary.</VERS>\r\n      <VERS vnumber=\"10\">Thy congregation dwelt therein: Thou, O God, didst prepare of thy goodness for the poor.</VERS>\r\n      <VERS vnumber=\"11\">The Lord giveth the word: The women that publish the tidings are a great host.</VERS>\r\n      <VERS vnumber=\"12\">Kings of armies flee, they flee; And she that tarrieth at home divideth the spoil.</VERS>\r\n      <VERS vnumber=\"13\">When ye lie among the sheepfolds, [It is as] the wings of a dove covered with silver, And her pinions with yellow gold.</VERS>\r\n      <VERS vnumber=\"14\">When the Almighty scattered kings therein, [It was as when] it snoweth in Zalmon.</VERS>\r\n      <VERS vnumber=\"15\">A mountain of God is the mountain of Bashan; A high mountain is the mountain of Bashan.</VERS>\r\n      <VERS vnumber=\"16\">Why look ye askance, ye high mountains, At the mountain which God hath desired for his abode? Yea, Jehovah will dwell [in it] for ever.</VERS>\r\n      <VERS vnumber=\"17\">The chariots of God are twenty thousand, even thousands       upon thousands; The Lord is among them, [as in] Sinai, in the sanctuary.</VERS>\r\n      <VERS vnumber=\"18\">Thou hast ascended on high, thou hast led away captives; Thou hast received gifts among men, Yea, [among] the rebellious also, that Jehovah God might dwell       [with them].</VERS>\r\n      <VERS vnumber=\"19\">Blessed be the Lord, who daily beareth our burden, Even the God who is our salvation.     Selah</VERS>\r\n      <VERS vnumber=\"20\">God is unto us a God of deliverances; And unto Jehovah the Lord belongeth escape from death.</VERS>\r\n      <VERS vnumber=\"21\">But God will smite through the head of his enemies, The hairy scalp of such a one as goeth on still in his       guiltiness.</VERS>\r\n      <VERS vnumber=\"22\">The Lord said, I will bring again from Bashan, I will bring [them] again from the depths of the sea;</VERS>\r\n      <VERS vnumber=\"23\">That thou mayest crush [them], [dipping] thy foot in       blood, That the tongue of thy dogs may have its portion from [thine]       enemies.</VERS>\r\n      <VERS vnumber=\"24\">They have seen thy goings, O God, Even the goings of my God, my King, into the sanctuary.</VERS>\r\n      <VERS vnumber=\"25\">The singers went before, the minstrels followed after, In the midst of the damsels playing with timbrels.</VERS>\r\n      <VERS vnumber=\"26\">Bless ye God in the congregations, Even the Lord, [ye that are] of the fountain of Israel.</VERS>\r\n      <VERS vnumber=\"27\">There is little Benjamin their ruler, The princes of Judah [and] their council, The princes of Zebulun, the princes of Naphtali.</VERS>\r\n      <VERS vnumber=\"28\">Thy God hath commanded thy strength: Strengthen, O God, that which thou hast wrought for us.</VERS>\r\n      <VERS vnumber=\"29\">Because of thy temple at Jerusalem Kings shall bring presents unto thee.</VERS>\r\n      <VERS vnumber=\"30\">Rebuke the wild beast of the reeds, The multitude of the bulls, with the calves of the peoples, Trampling under foot the pieces of silver: He hath scattered the peoples that delight in war.</VERS>\r\n      <VERS vnumber=\"31\">Princes shall come out of Egypt; Ethiopia shall haste to stretch out her hands unto God.</VERS>\r\n      <VERS vnumber=\"32\">Sing unto God, ye kingdoms of the earth; Oh sing praises unto the Lord;     Selah</VERS>\r\n      <VERS vnumber=\"33\">To him that rideth upon the heaven of heavens, which are       of old; Lo, he uttereth his voice, a mighty voice.</VERS>\r\n      <VERS vnumber=\"34\">Ascribe ye strength unto God: His excellency is over Israel, And his strength is in the skies.</VERS>\r\n      <VERS vnumber=\"35\">O God, [thou art] terrible out of thy holy places: The God of Israel, he giveth strength and power unto [his]       people. Blessed be God.           Psalm 69  For the Chief Musician; set to Shoshanim. [A Psalm] of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"69\">\r\n      <VERS vnumber=\"1\">Save me, O God; For the waters are come in unto my soul.</VERS>\r\n      <VERS vnumber=\"2\">I sink in deep mire, where there is no standing: I am come into deep waters, where the floods overflow me.</VERS>\r\n      <VERS vnumber=\"3\">I am weary with my crying; my throat is dried: Mine eyes fail while I wait for my God.</VERS>\r\n      <VERS vnumber=\"4\">They that hate me without a cause are more than the hairs       of my head: They that would cut me off, being mine enemies wrongfully, are       mighty: That which I took not away I have to restore.</VERS>\r\n      <VERS vnumber=\"5\">O God, thou knowest my foolishness; And my sins are not hid from thee.</VERS>\r\n      <VERS vnumber=\"6\">Let not them that wait for thee be put to shame through       me, O Lord Jehovah of hosts: Let not those that seek thee be brought to dishonor through me,       O God of Israel.</VERS>\r\n      <VERS vnumber=\"7\">Because for thy sake I have borne reproach; Shame hath covered my face.</VERS>\r\n      <VERS vnumber=\"8\">I am become a stranger unto my brethren, And an alien unto my mother`s children.</VERS>\r\n      <VERS vnumber=\"9\">For the zeal of thy house hath eaten me up; And the reproaches of them that reproach thee are fallen upon me.</VERS>\r\n      <VERS vnumber=\"10\">When I wept, [and chastened] my soul with fasting, That was to my reproach.</VERS>\r\n      <VERS vnumber=\"11\">When I made sackcloth my clothing, I became a byword unto them.</VERS>\r\n      <VERS vnumber=\"12\">They that sit in the gate talk of me; And [I am] the song of the drunkards.</VERS>\r\n      <VERS vnumber=\"13\">But as for me, my prayer is unto thee, O Jehovah, in an       acceptable time: O God, in the abundance of thy lovingkindness, Answer me in the truth of thy salvation.</VERS>\r\n      <VERS vnumber=\"14\">Deliver 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.</VERS>\r\n      <VERS vnumber=\"15\">Let not the waterflood overwhelm me, Neither let the deep shallow me up; And let not the pit shut its mouth upon me.</VERS>\r\n      <VERS vnumber=\"16\">Answer me, O Jehovah; for thy lovingkindness is good: According to the multitude of thy tender mercies turn thou unto       me.</VERS>\r\n      <VERS vnumber=\"17\">And hide not thy face from thy servant; For I am in distress; answer me speedily.</VERS>\r\n      <VERS vnumber=\"18\">Draw nigh unto my soul, and redeem it: Ransom me because of mine enemies.</VERS>\r\n      <VERS vnumber=\"19\">Thou knowest my reproach, and my shame, and my dishonor: Mine adversaries are all before thee.</VERS>\r\n      <VERS vnumber=\"20\">Reproach 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.</VERS>\r\n      <VERS vnumber=\"21\">They gave me also gall for my food; And in my thirst they gave me vinegar to drink.</VERS>\r\n      <VERS vnumber=\"22\">Let their table before them become a snare; And when they are in peace, [let it become] a trap.</VERS>\r\n      <VERS vnumber=\"23\">Let their eyes be darkened, so that they cannot see; And make their loins continually to shake.</VERS>\r\n      <VERS vnumber=\"24\">Pour out thine indignation upon them, And let the fierceness of thine anger overtake them.</VERS>\r\n      <VERS vnumber=\"25\">Let their habitation be desolate; Let none dwell in their tents.</VERS>\r\n      <VERS vnumber=\"26\">For they persecute him whom thou hast smitten; And they tell of the sorrow of those whom thou hast wounded.</VERS>\r\n      <VERS vnumber=\"27\">Add iniquity unto their iniquity; And let them not come into thy righteousness.</VERS>\r\n      <VERS vnumber=\"28\">Let them be blotted out of the book of life, And not be written with the righteous.</VERS>\r\n      <VERS vnumber=\"29\">But I am poor and sorrowful: Let thy salvation, O God, set me up on high.</VERS>\r\n      <VERS vnumber=\"30\">I will praise the name of God with a song, And will magnify him with thanksgiving.</VERS>\r\n      <VERS vnumber=\"31\">And it will please Jehovah better than an ox, [Or] a bullock that hath horns and hoofs.</VERS>\r\n      <VERS vnumber=\"32\">The meek have seen it, and are glad: Ye that seek after God, let your heart live.</VERS>\r\n      <VERS vnumber=\"33\">For Jehovah heareth the needy, And despiseth not his prisoners.</VERS>\r\n      <VERS vnumber=\"34\">Let heaven and earth praise him, The seas, and everything that moveth therein.</VERS>\r\n      <VERS vnumber=\"35\">For God will save Zion, and build the cities of Judah; And they shall abide there, and have it in possession.</VERS>\r\n      <VERS vnumber=\"36\">The seed also of his servants shall inherit it; And they that love his name shall dwell therein.           Psalm 70  For the Chief Musician. [A Psalm] of David; to bring to remembrance.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"70\">\r\n      <VERS vnumber=\"1\">[Make haste], O God, to deliver me; Make haste to help me, O Jehovah.</VERS>\r\n      <VERS vnumber=\"2\">Let them be put to shame and confounded That seek after my soul: Let them be turned backward and brought to dishonor That delight in my hurt.</VERS>\r\n      <VERS vnumber=\"3\">Let them be turned back by reason of their shame That say, Aha, aha.</VERS>\r\n      <VERS vnumber=\"4\">Let all those that seek thee rejoice and be glad in thee; And let such as love thy salvation say continually, Let God be magnified.</VERS>\r\n      <VERS vnumber=\"5\">But I am poor and needy; Make haste unto me, O God: Thou art my help and my deliverer; O Jehovah, make no tarrying.           Psalm 71</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"71\">\r\n      <VERS vnumber=\"1\">In thee, O Jehovah, do I take refuge: Let me never be put to shame.</VERS>\r\n      <VERS vnumber=\"2\">Deliver me in thy righteousness, and rescue me: Bow down thine ear unto me, and save me.</VERS>\r\n      <VERS vnumber=\"3\">Be thou to me a rock of habitation, whereunto I may       continually resort: Thou hast given commandment to save me; For thou art my rock and my fortress.</VERS>\r\n      <VERS vnumber=\"4\">Rescue me, O my God, out of the hand of the wicked, Out of the hand of the unrighteous and cruel man.</VERS>\r\n      <VERS vnumber=\"5\">For thou art my hope, O Lord Jehovah: [Thou art] my trust from my youth.</VERS>\r\n      <VERS vnumber=\"6\">By 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.</VERS>\r\n      <VERS vnumber=\"7\">I am as a wonder unto many; But thou art my strong refuge.</VERS>\r\n      <VERS vnumber=\"8\">My mouth shall be filled with thy praise, And with thy honor all the day.</VERS>\r\n      <VERS vnumber=\"9\">Cast me not off in the time of old age; Forsake me not when my strength faileth.</VERS>\r\n      <VERS vnumber=\"10\">For mine enemies speak concerning me; And they that watch for my soul take counsel together,</VERS>\r\n      <VERS vnumber=\"11\">Saying, God hath forsaken him: Pursue and take him; for there is none to deliver.</VERS>\r\n      <VERS vnumber=\"12\">O God, be not far from me; O my God, make haste to help me.</VERS>\r\n      <VERS vnumber=\"13\">Let them be put to shame [and] consumed that are       adversaries to my soul; Let them be covered with reproach and dishonor that seek my hurt.</VERS>\r\n      <VERS vnumber=\"14\">But I will hope continually, And will praise thee yet more and more.</VERS>\r\n      <VERS vnumber=\"15\">My mouth shall tell of thy righteousness, [And] of thy salvation all the day; For I know not the numbers [thereof].</VERS>\r\n      <VERS vnumber=\"16\">I will come with the mighty acts of the Lord Jehovah: I will make mention of thy righteousness, even of thine only.</VERS>\r\n      <VERS vnumber=\"17\">O God, thou hast taught me from my youth; And hitherto have I declared thy wondrous works.</VERS>\r\n      <VERS vnumber=\"18\">Yea, even when I am old and grayheaded, O God, forsake       me not, Until I have declared thy strength unto [the next] generation, Thy might to every one that is to come.</VERS>\r\n      <VERS vnumber=\"19\">Thy righteousness also, O God, is very high; Thou who hast done great things, O God, who is like unto thee?</VERS>\r\n      <VERS vnumber=\"20\">Thou, who hast showed us many and sore troubles, Wilt quicken us again, And wilt bring us up again from the depths of the earth.</VERS>\r\n      <VERS vnumber=\"21\">Increase thou my greatness, And turn again and comfort me.</VERS>\r\n      <VERS vnumber=\"22\">I will also praise thee with the psaltery, [Even] thy truth, O my God: Unto thee will I sing praises with the harp, O thou Holy One of Israel.</VERS>\r\n      <VERS vnumber=\"23\">My lips shall shout for joy when I sing praises unto       thee; And my soul, which thou hast redeemed.</VERS>\r\n      <VERS vnumber=\"24\">My tongue also shall talk of thy righteousness all the       day long; For they are put to shame, for they are confounded, that seek my       hurt.           Psalm 72  [A Psalm] of Solomon.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"72\">\r\n      <VERS vnumber=\"1\">Give the king thy judgments, O God, And thy righteousness unto the king`s son.</VERS>\r\n      <VERS vnumber=\"2\">He will judge thy people with righteousness, And thy poor with justice.</VERS>\r\n      <VERS vnumber=\"3\">The mountains shall bring peace to the people, And the hills, in righteousness.</VERS>\r\n      <VERS vnumber=\"4\">He will judge the poor of the people, He will save the children of the needy, And will break in pieces the oppressor.</VERS>\r\n      <VERS vnumber=\"5\">They shall fear thee while the sun endureth, And so long as the moon, throughout all generations.</VERS>\r\n      <VERS vnumber=\"6\">He will come down like rain upon the mown grass, As showers that water the earth.</VERS>\r\n      <VERS vnumber=\"7\">In his days shall the righteous flourish, And abundance of peace, till the moon be no more.</VERS>\r\n      <VERS vnumber=\"8\">He shall have dominion also from sea to sea, And from the River unto the ends of the earth.</VERS>\r\n      <VERS vnumber=\"9\">They that dwell in the wilderness shall bow before him; And his enemies shall lick the dust.</VERS>\r\n      <VERS vnumber=\"10\">The kings of Tarshish and of the isles shall render       tribute: The kings of Sheba and Seba shall offer gifts.</VERS>\r\n      <VERS vnumber=\"11\">Yea, all kings shall fall down before him; All nations shall serve him.</VERS>\r\n      <VERS vnumber=\"12\">For he will deliver the needy when he crieth, And the poor, that hath no helper.</VERS>\r\n      <VERS vnumber=\"13\">He will have pity on the poor and needy, And the souls of the needy he will save.</VERS>\r\n      <VERS vnumber=\"14\">He will redeem their soul from oppression and violence; And precious will their blood be in his sight:</VERS>\r\n      <VERS vnumber=\"15\">And they shall live; and to him shall be given of the       gold of Sheba: And men shall pray for him continually; They shall bless him all the day long.</VERS>\r\n      <VERS vnumber=\"16\">There shall be abundance of grain 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.</VERS>\r\n      <VERS vnumber=\"17\">His 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 happy.</VERS>\r\n      <VERS vnumber=\"18\">Blessed be Jehovah God, the God of Israel, Who only doeth wondrous things:</VERS>\r\n      <VERS vnumber=\"19\">And blessed be his glorious name for ever; And let the whole earth be filled with his glory. Amen, and Amen.</VERS>\r\n      <VERS vnumber=\"20\">The prayers of David the son of Jesse are ended.          BOOK III      Psalm 73  A Psalm of Asaph.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"73\">\r\n      <VERS vnumber=\"1\">Surely God is good to Israel, [Even] to such as are pure in heart.</VERS>\r\n      <VERS vnumber=\"2\">But as for me, my feet were almost gone; My steps had well nigh slipped.</VERS>\r\n      <VERS vnumber=\"3\">For I was envious at the arrogant, When I saw the prosperity of the wicked.</VERS>\r\n      <VERS vnumber=\"4\">For there are no pangs in their death; But their strength is firm.</VERS>\r\n      <VERS vnumber=\"5\">They are not in trouble as [other] men; Neither are they plagued like [other] men.</VERS>\r\n      <VERS vnumber=\"6\">Therefore pride is as a chain about their neck; Violence covereth them as a garment.</VERS>\r\n      <VERS vnumber=\"7\">Their eyes stand out with fatness: They have more than heart could wish.</VERS>\r\n      <VERS vnumber=\"8\">They scoff, and in wickedness utter oppression: They speak loftily.</VERS>\r\n      <VERS vnumber=\"9\">They have set their mouth in the heavens, And their tongue walketh through the earth.</VERS>\r\n      <VERS vnumber=\"10\">Therefore his people return hither: And waters of a full [cup] are drained by them.</VERS>\r\n      <VERS vnumber=\"11\">And they say, How doth God know? And is there knowledge in the Most High?</VERS>\r\n      <VERS vnumber=\"12\">Behold, these are the wicked; And, being alway at ease, they increase in riches.</VERS>\r\n      <VERS vnumber=\"13\">Surely in vain have I cleansed my heart, And washed my hands in innocency;</VERS>\r\n      <VERS vnumber=\"14\">For all the day long have I been plagued, And chastened every morning.</VERS>\r\n      <VERS vnumber=\"15\">If I had said, I will speak thus; Behold, I had dealt treacherously with the generation of thy       children.</VERS>\r\n      <VERS vnumber=\"16\">When I thought how I might know this, It was too painful for me;</VERS>\r\n      <VERS vnumber=\"17\">Until I went into the sanctuary of God, And considered their latter end.</VERS>\r\n      <VERS vnumber=\"18\">Surely thou settest them in slippery places: Thou castest them down to destruction.</VERS>\r\n      <VERS vnumber=\"19\">How are they become a desolation in a moment! They are utterly consumed with terrors.</VERS>\r\n      <VERS vnumber=\"20\">As a dream when one awaketh, So, O Lord, when thou awakest, thou wilt despise their image.</VERS>\r\n      <VERS vnumber=\"21\">For my soul was grieved, And I was pricked in my heart:</VERS>\r\n      <VERS vnumber=\"22\">So brutish was I, and ignorant; I was [as] a beast before thee.</VERS>\r\n      <VERS vnumber=\"23\">Nevertheless I am continually with thee: Thou hast holden my right hand.</VERS>\r\n      <VERS vnumber=\"24\">Thou wilt guide me with thy counsel, And afterward receive me to glory.</VERS>\r\n      <VERS vnumber=\"25\">Whom have I in heaven [but thee]? And there is none upon earth that I desire besides thee.</VERS>\r\n      <VERS vnumber=\"26\">My flesh and my heart faileth; [But] God is the strength of my heart and my portion for ever.</VERS>\r\n      <VERS vnumber=\"27\">For, lo, they that are far from thee shall perish: Thou hast destroyed all them that play the harlot, [departing]       from thee.</VERS>\r\n      <VERS vnumber=\"28\">But it is good for me to draw near unto God: I have made the Lord Jehovah my refuge, That I may tell of all thy works.           Psalm 74  Maschil of Asaph.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"74\">\r\n      <VERS vnumber=\"1\">O God, why hast thou cast [us] off for ever? Why doth thine anger smoke against the sheep of thy pasture?</VERS>\r\n      <VERS vnumber=\"2\">Remember thy congregation, which thou hast gotten of old, Which thou hast redeemed to be the tribe of thine inheritance; [And] mount Zion, wherein thou hast dwelt.</VERS>\r\n      <VERS vnumber=\"3\">Lift up thy feet unto the perpetual ruins, All the evil that the enemy hath done in the sanctuary.</VERS>\r\n      <VERS vnumber=\"4\">Thine adversaries have roared in the midst of thine       assembly; They have set up their ensigns for signs.</VERS>\r\n      <VERS vnumber=\"5\">They seemed as men that lifted up Axes upon a thicket of trees.</VERS>\r\n      <VERS vnumber=\"6\">And now all the carved work thereof They break down with hatchet and hammers.</VERS>\r\n      <VERS vnumber=\"7\">They have set thy sanctuary on fire; They have profaned the dwelling-place of thy name [by casting       it] to the ground.</VERS>\r\n      <VERS vnumber=\"8\">They said in their heart, Let us make havoc of them       altogether: They have burned up all the synagogues of God in the land.</VERS>\r\n      <VERS vnumber=\"9\">We see not our signs: There is no more any prophet; Neither is there among us any that knoweth how long.</VERS>\r\n      <VERS vnumber=\"10\">How long, O God, shall the adversary reproach? Shall the enemy blaspheme thy name for ever?</VERS>\r\n      <VERS vnumber=\"11\">Why drawest thou back thy hand, even thy right hand? [Pluck it] out of thy bosom [and] consume [them].</VERS>\r\n      <VERS vnumber=\"12\">Yet God is my King of old, Working salvation in the midst of the earth.</VERS>\r\n      <VERS vnumber=\"13\">Thou didst divide the sea by thy strength: Thou brakest the heads of the sea-monsters in the waters.</VERS>\r\n      <VERS vnumber=\"14\">Thou brakest the heads of leviathan in pieces; Thou gavest him to be food to the people inhabiting the       wilderness.</VERS>\r\n      <VERS vnumber=\"15\">Thou didst cleave fountain and flood: Thou driedst up mighty rivers.</VERS>\r\n      <VERS vnumber=\"16\">The day is thine, the night also is thine: Thou hast prepared the light and the sun.</VERS>\r\n      <VERS vnumber=\"17\">Thou hast set all the borders of the earth: Thou hast made summer and winter.</VERS>\r\n      <VERS vnumber=\"18\">Remember this, that the enemy hath reproached, O Jehovah, And that a foolish people hath blasphemed thy name.</VERS>\r\n      <VERS vnumber=\"19\">Oh deliver not the soul of thy turtle-dove unto the wild       beast: Forget not the life of thy poor for ever.</VERS>\r\n      <VERS vnumber=\"20\">Have respect unto the covenant; For the dark places of the earth are full of the habitations of       violence.</VERS>\r\n      <VERS vnumber=\"21\">Oh let not the oppressed return ashamed: Let the poor and needy praise thy name.</VERS>\r\n      <VERS vnumber=\"22\">Arise, O God, plead thine own cause: Remember how the foolish man reproacheth thee all the day.</VERS>\r\n      <VERS vnumber=\"23\">Forget not the voice of thine adversaries: The tumult of those that rise up against thee ascendeth       continually.           Psalm 75  For the Chief Musician; [set to] Al-tash-heth. A Psalm of Asaph; a song.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"75\">\r\n      <VERS vnumber=\"1\">We give thanks unto thee, O God; We give thanks, for thy name is near: Men tell of thy wondrous works.</VERS>\r\n      <VERS vnumber=\"2\">When I shall find the set time, I will judge uprightly.</VERS>\r\n      <VERS vnumber=\"3\">The earth and all the inhabitants thereof are dissolved: I have set up the pillars of it.     Selah</VERS>\r\n      <VERS vnumber=\"4\">I said unto the arrogant, Deal not arrogantly; And to the wicked, Lift not up the horn:</VERS>\r\n      <VERS vnumber=\"5\">Lift not up your horn on high; Speak not with a stiff neck.</VERS>\r\n      <VERS vnumber=\"6\">For neither from the east, nor from the west, Nor yet from the south, [cometh] lifting up.</VERS>\r\n      <VERS vnumber=\"7\">But God is the judge: He putteth down one, and lifteth up another.</VERS>\r\n      <VERS vnumber=\"8\">For in the hand of Jehovah there is a cup, and the wine       foameth; It is full of mixture, and he poureth out of the same: Surely the dregs thereof, all the wicked of the earth shall       drain them, and drink them.</VERS>\r\n      <VERS vnumber=\"9\">But I will declare for ever, I will sing praises to the God of Jacob.</VERS>\r\n      <VERS vnumber=\"10\">All the horns of the wicked also will I cut off; But the horns of the righteous shall be lifted up.           Psalm 76  For the Chief Musician; on stringed instruments. A Psalm of Asaph, a song.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"76\">\r\n      <VERS vnumber=\"1\">In Judah is God known: His name is great in Israel.</VERS>\r\n      <VERS vnumber=\"2\">In Salem also is his tabernacle, And his dwelling-place in Zion.</VERS>\r\n      <VERS vnumber=\"3\">There he brake the arrows of the bow; The shield, and the sword, and the battle.     Selah</VERS>\r\n      <VERS vnumber=\"4\">Glorious art thou [and] excellent, From the mountains of prey.</VERS>\r\n      <VERS vnumber=\"5\">The stouthearted are made a spoil, They have slept their sleep; And none of the men of might have found their hands.</VERS>\r\n      <VERS vnumber=\"6\">At thy rebuke, O God of Jacob, Both chariot and horse are cast into a deep sleep.</VERS>\r\n      <VERS vnumber=\"7\">Thou, even thou, art to be feared; And who may stand in thy sight when once thou art angry?</VERS>\r\n      <VERS vnumber=\"8\">Thou didst cause sentence to be heard from heaven; The earth feared, and was still,</VERS>\r\n      <VERS vnumber=\"9\">When God arose to judgment, To save all the meek of the earth.     Selah</VERS>\r\n      <VERS vnumber=\"10\">Surely the wrath of man shall praise thee: The residue of wrath shalt thou gird upon thee.</VERS>\r\n      <VERS vnumber=\"11\">Vow, and pay unto Jehovah your God: Let all that are round about him bring presents unto him that       ought to be feared.</VERS>\r\n      <VERS vnumber=\"12\">He will cut off the spirit of princes: He is terrible to the kings of the earth.           Psalm 77  For the Chief Musician; after the manner of Jeduthan. A Psalm of Asaph.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"77\">\r\n      <VERS vnumber=\"1\">I will cry unto God with my voice, Even unto God with my voice; and he will give ear unto me.</VERS>\r\n      <VERS vnumber=\"2\">In the day of my trouble I sought the Lord: My hand was stretched out in the night, and slacked not; My soul refused to be comforted.</VERS>\r\n      <VERS vnumber=\"3\">I remember God, and am disquieted: I complain, and my spirit is overwhelmed.     Selah</VERS>\r\n      <VERS vnumber=\"4\">Thou holdest mine eyes watching: I am so troubled that I cannot speak.</VERS>\r\n      <VERS vnumber=\"5\">I have considered the days of old, The years of ancient times.</VERS>\r\n      <VERS vnumber=\"6\">I call to remembrance my song in the night: I commune with mine own heart; And my spirit maketh diligent search.</VERS>\r\n      <VERS vnumber=\"7\">Will the Lord cast off for ever? And will he be favorable no more?</VERS>\r\n      <VERS vnumber=\"8\">Is his lovingkindness clean gone for ever? Doth his promise fail for evermore?</VERS>\r\n      <VERS vnumber=\"9\">Hath God forgotten to be gracious? Hath he in anger shut up his tender mercies?     Selah</VERS>\r\n      <VERS vnumber=\"10\">And I said, This is my infirmity; [But I will remember] the years of the right hand of the Most       High.</VERS>\r\n      <VERS vnumber=\"11\">I will make mention of the deeds of Jehovah; For I will remember thy wonders of old.</VERS>\r\n      <VERS vnumber=\"12\">I will meditate also upon all thy work, And muse on thy doings.</VERS>\r\n      <VERS vnumber=\"13\">Thy way, O God, is in the sanctuary: Who is a great god like unto God?</VERS>\r\n      <VERS vnumber=\"14\">Thou art the God that doest wonders: Thou hast made known thy strength among the peoples.</VERS>\r\n      <VERS vnumber=\"15\">Thou hast with thine arm redeemed thy people, The sons of Jacob and Joseph.     Selah</VERS>\r\n      <VERS vnumber=\"16\">The waters saw thee, O God; The waters saw thee, they were afraid: The depths also trembled.</VERS>\r\n      <VERS vnumber=\"17\">The clouds poured out water; The skies sent out a sound: Thine arrows also went abroad.</VERS>\r\n      <VERS vnumber=\"18\">The voice of thy thunder was in the whirlwind; The lightnings lightened the world: The earth trembled and shook.</VERS>\r\n      <VERS vnumber=\"19\">Thy way was in the sea, And thy paths in the great waters, And thy footsteps were not known.</VERS>\r\n      <VERS vnumber=\"20\">Thou leddest thy people like a flock, By the hand of Moses and Aaron.           Psalm 78  Maschil of Asaph.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"78\">\r\n      <VERS vnumber=\"1\">Give ear, O my people, to my law: Incline your ears to the words of my mouth.</VERS>\r\n      <VERS vnumber=\"2\">I will open my mouth in a parable; I will utter dark sayings of old,</VERS>\r\n      <VERS vnumber=\"3\">Which we have heard and known, And our fathers have told us.</VERS>\r\n      <VERS vnumber=\"4\">We will not hide them from their children, Telling to the generation to come the praises of Jehovah, And his strength, and his wondrous works that he hath done.</VERS>\r\n      <VERS vnumber=\"5\">For 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;</VERS>\r\n      <VERS vnumber=\"6\">That the generation to come might know [them], even the       children that should be born; Who should arise and tell [them] to their children,</VERS>\r\n      <VERS vnumber=\"7\">That they might set their hope in God, And not forget the works of God, But keep his commandments,</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">The children of Ephraim, being armed and carrying bows, Turned back in the day of battle.</VERS>\r\n      <VERS vnumber=\"10\">They kept not the covenant of God, And refused to walk in his law;</VERS>\r\n      <VERS vnumber=\"11\">And they forgat his doings, And his wondrous works that he had showed them.</VERS>\r\n      <VERS vnumber=\"12\">Marvellous things did he in the sight of their fathers, In the land of Egypt, in the field of Zoan.</VERS>\r\n      <VERS vnumber=\"13\">He clave the sea, and caused them to pass through; And he made the waters to stand as a heap.</VERS>\r\n      <VERS vnumber=\"14\">In the day-time also he led them with a cloud, And all the night with a light of fire.</VERS>\r\n      <VERS vnumber=\"15\">He clave rocks in the wilderness, And gave them drink abundantly as out of the depths.</VERS>\r\n      <VERS vnumber=\"16\">He brought streams also out of the rock, And caused waters to run down like rivers.</VERS>\r\n      <VERS vnumber=\"17\">Yet went they on still to sin against him, To rebel against the Most High in the desert.</VERS>\r\n      <VERS vnumber=\"18\">And they tempted God in their heart By asking food according to their desire.</VERS>\r\n      <VERS vnumber=\"19\">Yea, they spake against God; They said, Can God prepare a table in the wilderness?</VERS>\r\n      <VERS vnumber=\"20\">Behold, he smote the rock, so that waters gushed out, And streams overflowed; Can he give bread also? Will he provide flesh for his people?</VERS>\r\n      <VERS vnumber=\"21\">Therefore Jehovah heard, and was wroth; And a fire was kindled against Jacob, And anger also went up against Israel;</VERS>\r\n      <VERS vnumber=\"22\">Because they believed not in God, And trusted not in his salvation.</VERS>\r\n      <VERS vnumber=\"23\">Yet he commanded the skies above, And opened the doors of heaven;</VERS>\r\n      <VERS vnumber=\"24\">And he rained down manna upon them to eat, And gave them food from heaven.</VERS>\r\n      <VERS vnumber=\"25\">Man did eat the bread of the mighty: He sent them food to the full.</VERS>\r\n      <VERS vnumber=\"26\">He caused the east wind to blow in the heavens; And by his power he guided the south wind.</VERS>\r\n      <VERS vnumber=\"27\">He rained flesh also upon them as the dust, And winged birds as the sand of the seas:</VERS>\r\n      <VERS vnumber=\"28\">And he let it fall in the midst of their camp, Round about their habitations.</VERS>\r\n      <VERS vnumber=\"29\">So they did eat, and were well filled; And he gave them their own desire.</VERS>\r\n      <VERS vnumber=\"30\">They were not estranged from that which they desired, Their food was yet in their mouths,</VERS>\r\n      <VERS vnumber=\"31\">When the anger of God went up against them, And slew of the fattest of them, And smote down the young men of Israel.</VERS>\r\n      <VERS vnumber=\"32\">For all this they sinned still, And believed not in his wondrous works.</VERS>\r\n      <VERS vnumber=\"33\">Therefore their days did he consume in vanity, And their years in terror.</VERS>\r\n      <VERS vnumber=\"34\">When he slew them, then they inquired after him; And they returned and sought God earnestly.</VERS>\r\n      <VERS vnumber=\"35\">And they remembered that God was their rock, And the Most High God their redeemer.</VERS>\r\n      <VERS vnumber=\"36\">But they flattered him with their mouth, And lied unto him with their tongue.</VERS>\r\n      <VERS vnumber=\"37\">For their heart was not right with him, Neither were they faithful in his covenant.</VERS>\r\n      <VERS vnumber=\"38\">But he, being merciful, forgave [their] iniquity, and       destroyed [them] not: Yea, many a time turned he his anger away, And did not stir up all his wrath.</VERS>\r\n      <VERS vnumber=\"39\">And he remembered that they were but flesh, A wind that passeth away, and cometh not again.</VERS>\r\n      <VERS vnumber=\"40\">How oft did they rebel against him in the wilderness, And grieve him in the desert!</VERS>\r\n      <VERS vnumber=\"41\">And they turned again and tempted God, And provoked the Holy One of Israel.</VERS>\r\n      <VERS vnumber=\"42\">They remember not his hand, Nor the day when he redeemed them from the adversary;</VERS>\r\n      <VERS vnumber=\"43\">How he set his signs in Egypt, And his wonders in the field of Zoan,</VERS>\r\n      <VERS vnumber=\"44\">And turned their rivers into blood, And their streams, so that they could not drink.</VERS>\r\n      <VERS vnumber=\"45\">He sent among them swarms of flies, which devoured them; And frogs, which destroyed them.</VERS>\r\n      <VERS vnumber=\"46\">He gave also their increase unto the caterpillar, And their labor unto the locust.</VERS>\r\n      <VERS vnumber=\"47\">He destroyed their vines with hail, And their sycomore-trees with frost.</VERS>\r\n      <VERS vnumber=\"48\">He gave over their cattle also to the hail, And their flocks to hot thunderbolts.</VERS>\r\n      <VERS vnumber=\"49\">He cast upon them the fierceness of his anger, Wrath, and indignation, and trouble, A band of angels of evil.</VERS>\r\n      <VERS vnumber=\"50\">He made a path for his anger; He spared not their soul from death, But gave their life over to the pestilence,</VERS>\r\n      <VERS vnumber=\"51\">And smote all the first-born in Egypt, The chief of their strength in the tents of Ham.</VERS>\r\n      <VERS vnumber=\"52\">But he led forth his own people like sheep, And guided them in the wilderness like a flock.</VERS>\r\n      <VERS vnumber=\"53\">And he led them safely, so that they feared not; But the sea overwhelmed their enemies.</VERS>\r\n      <VERS vnumber=\"54\">And he brought them to the border of his sanctuary, To this mountain, which his right hand had gotten.</VERS>\r\n      <VERS vnumber=\"55\">He drove out the nations also before them, And allotted them for an inheritance by line, And made the tribes of Israel to dwell in their tents.</VERS>\r\n      <VERS vnumber=\"56\">Yet they tempted and rebelled against the Most High God, And kept not his testimonies;</VERS>\r\n      <VERS vnumber=\"57\">But turned back, and dealt treacherously like their       fathers: They were turned aside like a deceitful bow.</VERS>\r\n      <VERS vnumber=\"58\">For they provoked him to anger with their high places, And moved him to jealousy with their graven images.</VERS>\r\n      <VERS vnumber=\"59\">When God heard [this], he was wroth, And greatly abhorred Israel;</VERS>\r\n      <VERS vnumber=\"60\">So that he forsook the tabernacle of Shiloh, The tent which he placed among men;</VERS>\r\n      <VERS vnumber=\"61\">And delivered his strength into captivity, And his glory into the adversary`s hand.</VERS>\r\n      <VERS vnumber=\"62\">He gave his people over also unto the sword, And was wroth with his inheritance.</VERS>\r\n      <VERS vnumber=\"63\">Fire devoured their young men; And their virgins had no marriage-song.</VERS>\r\n      <VERS vnumber=\"64\">Their priests fell by the sword; And their widows made no lamentation.</VERS>\r\n      <VERS vnumber=\"65\">Then the Lord awaked as one out of sleep, Like a mighty man that shouteth by reason of wine.</VERS>\r\n      <VERS vnumber=\"66\">And he smote his adversaries backward: He put them to a perpetual reproach.</VERS>\r\n      <VERS vnumber=\"67\">Moreover he refused the tent of Joseph, And chose not the tribe of Ephraim,</VERS>\r\n      <VERS vnumber=\"68\">But chose the tribe of Judah, The mount Zion which he loved.</VERS>\r\n      <VERS vnumber=\"69\">And he built his sanctuary like the heights, Like the earth which he hath established for ever.</VERS>\r\n      <VERS vnumber=\"70\">He chose David also his servant, And took him from the sheepfolds:</VERS>\r\n      <VERS vnumber=\"71\">From following the ewes that have their young he brought       him, To be the shepherd of Jacob his people, and Israel his       inheritance.</VERS>\r\n      <VERS vnumber=\"72\">So he was their shepherd according to the integrity of       his heart, And guided them by the skilfulness of his hands.           Psalm 79  A Psalm of Asaph.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"79\">\r\n      <VERS vnumber=\"1\">O God, the nations are come into thine inheritance; Thy holy temple have they defiled; They have laid Jerusalem in heaps.</VERS>\r\n      <VERS vnumber=\"2\">The dead bodies of thy servants have they given to be       food unto the birds of the heavens, The flesh of thy saints unto the beasts of the earth.</VERS>\r\n      <VERS vnumber=\"3\">Their blood have they shed like water round about       Jerusalem; And there was none to bury them.</VERS>\r\n      <VERS vnumber=\"4\">We are become a reproach to our neighbors, A scoffing and derision to them that are round about us.</VERS>\r\n      <VERS vnumber=\"5\">How long, O Jehovah? wilt thou be angry for ever? Shall thy jealousy burn like fire?</VERS>\r\n      <VERS vnumber=\"6\">Pour out thy wrath upon the nations that know thee not, And upon the kingdoms that call not upon thy name.</VERS>\r\n      <VERS vnumber=\"7\">For they have devoured Jacob, And laid waste his habitation.</VERS>\r\n      <VERS vnumber=\"8\">Remember not against us the iniquities of our forefathers: Let thy tender mercies speedily meet us; For we are brought very low.</VERS>\r\n      <VERS vnumber=\"9\">Help us, O God of our salvation, for the glory of thy       name; And deliver us, and forgive our sins, for thy name`s sake.</VERS>\r\n      <VERS vnumber=\"10\">Wherefore should the nations say, Where is their God? Let the avenging of the blood of thy servants which is shed Be known among the nations in our sight.</VERS>\r\n      <VERS vnumber=\"11\">Let the sighing of the prisoner come before thee: According to the greatness of thy power preserve thou those that       are appointed to death;</VERS>\r\n      <VERS vnumber=\"12\">And render unto our neighbors sevenfold into their bosom Their reproach, wherewith they have reproached thee, O Lord.</VERS>\r\n      <VERS vnumber=\"13\">So we thy people and sheep of thy pasture Will give thee thanks for ever: We will show forth thy praise to all generations.           Psalm 80  For the Chief Musician, set to Shoshanim Eduth.. A Psalm of Asaph.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"80\">\r\n      <VERS vnumber=\"1\">Give ear, O Shepherd of Israel, Thou that leadest Joseph like a flock; Thou that sittest [above] the cherubim, shine forth.</VERS>\r\n      <VERS vnumber=\"2\">Before Ephraim and Benjamin and Manasseh, stir up thy       might, And come to save us.</VERS>\r\n      <VERS vnumber=\"3\">Turn us again, O God; And cause thy face to shine, and we shall be saved.</VERS>\r\n      <VERS vnumber=\"4\">O Jehovah God of hosts, How long wilt thou be angry against the prayer of thy people?</VERS>\r\n      <VERS vnumber=\"5\">Thou hast fed them with the bread of tears, And given them tears to drink in large measure.</VERS>\r\n      <VERS vnumber=\"6\">Thou makest us a strife unto our neighbors; And our enemies laugh among themselves.</VERS>\r\n      <VERS vnumber=\"7\">Turn us again, O God of hosts; And cause thy face to shine, and we shall be saved.</VERS>\r\n      <VERS vnumber=\"8\">Thou broughtest a vine out of Egypt: Thou didst drive out the nations, and plantedst it.</VERS>\r\n      <VERS vnumber=\"9\">Thou preparedst [room] before it, And it took deep root, and filled the land.</VERS>\r\n      <VERS vnumber=\"10\">The mountains were covered with the shadow of it, And the boughs thereof were [like] cedars of God.</VERS>\r\n      <VERS vnumber=\"11\">It sent out its branches unto the sea, And its shoots unto the River.</VERS>\r\n      <VERS vnumber=\"12\">Why hast thou broken down its walls, So that all they that pass by the way do pluck it?</VERS>\r\n      <VERS vnumber=\"13\">The boar out of the wood doth ravage it, And the wild beasts of the field feed on it.</VERS>\r\n      <VERS vnumber=\"14\">Turn again, we beseech thee, O God of hosts: Look down from heaven, and behold, and visit this vine,</VERS>\r\n      <VERS vnumber=\"15\">And the stock which thy right hand planted, And the branch that thou madest strong for thyself.</VERS>\r\n      <VERS vnumber=\"16\">It is burned with fire, it is cut down: They perish at the rebuke of thy countenance.</VERS>\r\n      <VERS vnumber=\"17\">Let thy hand be upon the man of thy right hand, Upon the son of man whom thou madest strong for thyself.</VERS>\r\n      <VERS vnumber=\"18\">So shall we not go back from thee: Quicken thou us, and we will call upon thy name.</VERS>\r\n      <VERS vnumber=\"19\">Turn us again, O Jehovah God of hosts; Cause thy face to shine, and we shall be saved.           Psalm 81  For the Chief Musician; set to the Gittith. [A Psalm] of Asaph.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"81\">\r\n      <VERS vnumber=\"1\">Sing aloud unto God our strength: Make a joyful noise unto the God of Jacob.</VERS>\r\n      <VERS vnumber=\"2\">Raise a song, and bring hither the timbrel, The pleasant harp with the psaltery.</VERS>\r\n      <VERS vnumber=\"3\">Blow the trumpet at the new moon, At the full moon, on our feast-day.</VERS>\r\n      <VERS vnumber=\"4\">For it is a statute for Israel, An ordinance of the God of Jacob.</VERS>\r\n      <VERS vnumber=\"5\">He appointed it in Joseph for a testimony, When he went out over the land of Egypt, [Where] I heard a language that I knew not.</VERS>\r\n      <VERS vnumber=\"6\">I removed his shoulder from the burden: His hands were freed from the basket.</VERS>\r\n      <VERS vnumber=\"7\">Thou 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</VERS>\r\n      <VERS vnumber=\"8\">Hear, O my people, and I will testify unto thee: O Israel, if thou wouldest hearken unto me!</VERS>\r\n      <VERS vnumber=\"9\">There shall no strange god be in thee; Neither shalt thou worship any foreign god.</VERS>\r\n      <VERS vnumber=\"10\">I am Jehovah thy God, Who brought thee up out of the land of Egypt: Open thy mouth wide, and I will fill it.</VERS>\r\n      <VERS vnumber=\"11\">But my people hearkened not to my voice; And Israel would none of me.</VERS>\r\n      <VERS vnumber=\"12\">So I let them go after the stubbornness of their heart, That they might walk in their own counsels.</VERS>\r\n      <VERS vnumber=\"13\">Oh that my people would hearken unto me, That Israel would walk in my ways!</VERS>\r\n      <VERS vnumber=\"14\">I would soon subdue their enemies, And turn my hand against their adversaries.</VERS>\r\n      <VERS vnumber=\"15\">The haters of Jehovah should submit themselves unto him: But their time should endure for ever.</VERS>\r\n      <VERS vnumber=\"16\">He would feed them also with the finest of the wheat; And with honey out of the rock would I satisfy thee.           Psalm 82  A Psalm of Asaph.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"82\">\r\n      <VERS vnumber=\"1\">God standeth in the congregation of God; He judgeth among the gods.</VERS>\r\n      <VERS vnumber=\"2\">How long will ye judge unjustly, And respect the persons of the wicked?     Selah</VERS>\r\n      <VERS vnumber=\"3\">Judge the poor and fatherless: Do justice to the afflicted and destitute.</VERS>\r\n      <VERS vnumber=\"4\">Rescue the poor and needy: Deliver them out of the hand of the wicked.</VERS>\r\n      <VERS vnumber=\"5\">They know not, neither do they understand; They walk to and fro in darkness: All the foundations of the earth are shaken.</VERS>\r\n      <VERS vnumber=\"6\">I said, Ye are gods, And all of you sons of the Most High.</VERS>\r\n      <VERS vnumber=\"7\">Nevertheless ye shall die like men, And fall like one of the princes.</VERS>\r\n      <VERS vnumber=\"8\">Arise, O God, judge the earth; For thou shalt inherit all the nations.           Psalm 83  A song. A Psalm of Asaph.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"83\">\r\n      <VERS vnumber=\"1\">O God, keep not thou silence: Hold not thy peace, and be not still, O God.</VERS>\r\n      <VERS vnumber=\"2\">For, lo, thine enemies make a tumult; And they that hate thee have lifted up the head.</VERS>\r\n      <VERS vnumber=\"3\">Thy take crafty counsel against thy people, And consult together against thy hidden ones.</VERS>\r\n      <VERS vnumber=\"4\">They have said, Come, and let us cut them off from being       a nation; That the name of Israel may be no more in remembrance.</VERS>\r\n      <VERS vnumber=\"5\">For they have consulted together with one consent; Against thee do they make a covenant:</VERS>\r\n      <VERS vnumber=\"6\">The tents of Edom and the Ishmaelites; Moab, and the Hagarenes;</VERS>\r\n      <VERS vnumber=\"7\">Gebal, and Ammon, and Amalek; Philistia with the inhabitants of Tyre:</VERS>\r\n      <VERS vnumber=\"8\">Assyria also is joined with them; They have helped the children of Lot.     Selah</VERS>\r\n      <VERS vnumber=\"9\">Do thou unto them as unto Midian, As to Sisera, as to Jabin, at the river Kishon;</VERS>\r\n      <VERS vnumber=\"10\">Who perished at Endor, Who became as dung for the earth.</VERS>\r\n      <VERS vnumber=\"11\">Make their nobles like Oreb and Zeeb; Yea, all their princes like Zebah and Zalmunna;</VERS>\r\n      <VERS vnumber=\"12\">Who said, Let us take to ourselves in possession The habitations of God.</VERS>\r\n      <VERS vnumber=\"13\">O my God, make them like the whirling dust; As stubble before the wind.</VERS>\r\n      <VERS vnumber=\"14\">As the fire that burneth the forest, And as the flame that setteth the mountains on fire,</VERS>\r\n      <VERS vnumber=\"15\">So pursue them with thy tempest, And terrify them with thy storm.</VERS>\r\n      <VERS vnumber=\"16\">Fill their faces with confusion, That they may seek thy name, O Jehovah.</VERS>\r\n      <VERS vnumber=\"17\">Let them be put to shame and dismayed for ever; Yea, let them be confounded and perish;</VERS>\r\n      <VERS vnumber=\"18\">That they may know that thou alone, whose name is       Jehovah, Art the Most High over all the earth.           Psalm 84  For the Chief Musician; set to the Gittith. A Psalm of the sons of Korah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"84\">\r\n      <VERS vnumber=\"1\">How amiable are thy tabernacles, O Jehovah of hosts!</VERS>\r\n      <VERS vnumber=\"2\">My soul longeth, yea, even fainteth for the courts of       Jehovah; My heart and my flesh cry out unto the living God.</VERS>\r\n      <VERS vnumber=\"3\">Yea, the sparrow hath found her a house, And the swallow a nest for herself, where she may lay her young, Even thine altars, O Jehovah of hosts, My King, and my God.</VERS>\r\n      <VERS vnumber=\"4\">Blessed are they that dwell in thy house: They will be still praising thee.     Selah</VERS>\r\n      <VERS vnumber=\"5\">Blessed is the man whose strength is in thee; In whose heart are the highways [to Zion].</VERS>\r\n      <VERS vnumber=\"6\">Passing through the valley of Weeping they make it a       place of springs; Yea, the early rain covereth it with blessings.</VERS>\r\n      <VERS vnumber=\"7\">They go from strength to strength; Every one of them appeareth before God in Zion.</VERS>\r\n      <VERS vnumber=\"8\">O Jehovah God of hosts, hear my prayer; Give ear, O God of Jacob.     Selah</VERS>\r\n      <VERS vnumber=\"9\">Behold, O God our shield, And look upon the face of thine anointed.</VERS>\r\n      <VERS vnumber=\"10\">For 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.</VERS>\r\n      <VERS vnumber=\"11\">For Jehovah God is a sun and a shield: Jehovah will give grace and glory; No good thing will he withhold from them that walk uprightly.</VERS>\r\n      <VERS vnumber=\"12\">O Jehovah of hosts, Blessed is the man that trusteth in thee.           Psalm 85  For the Chief Musician. A Psalm of the sons of Korah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"85\">\r\n      <VERS vnumber=\"1\">Jehovah, thou hast been favorable unto thy land; Thou hast brought back the captivity of Jacob.</VERS>\r\n      <VERS vnumber=\"2\">Thou hast forgiven the iniquity of thy people; Thou hast covered all their sin.     Selah</VERS>\r\n      <VERS vnumber=\"3\">Thou hast taken away all thy wrath; Thou hast turned [thyself] from the fierceness of thine anger.</VERS>\r\n      <VERS vnumber=\"4\">Turn us, O God of our salvation, And cause thine indignation toward us to cease.</VERS>\r\n      <VERS vnumber=\"5\">Wilt thou be angry with us for ever? Wilt thou draw out thine anger to all generations?</VERS>\r\n      <VERS vnumber=\"6\">Wilt thou not quicken us again, That thy people may rejoice in thee?</VERS>\r\n      <VERS vnumber=\"7\">Show us thy lovingkindness, O Jehovah, And grant us thy salvation.</VERS>\r\n      <VERS vnumber=\"8\">I will hear what God Jehovah will speak; For he will speak peace unto his people, and to his saints: But let them not turn again to folly.</VERS>\r\n      <VERS vnumber=\"9\">Surely his salvation is nigh them that fear him, That glory may dwell in our land.</VERS>\r\n      <VERS vnumber=\"10\">Mercy and truth are met together; Righteousness and peace have kissed each other.</VERS>\r\n      <VERS vnumber=\"11\">Truth springeth out of the earth; And righteousness hath looked down from heaven.</VERS>\r\n      <VERS vnumber=\"12\">Yea, Jehovah will give that which is good; And our land shall yield its increase.</VERS>\r\n      <VERS vnumber=\"13\">Righteousness shall go before him, And shall make his footsteps a way [to walk in].           Psalm 86  A Prayer of David</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"86\">\r\n      <VERS vnumber=\"1\">Bow down thine ear, O Jehovah, and answer me; For I am poor and needy.</VERS>\r\n      <VERS vnumber=\"2\">Preserve my soul; for I am godly: O thou my God, save thy servant that trusteth in thee.</VERS>\r\n      <VERS vnumber=\"3\">Be merciful unto me, O Lord; For unto thee do I cry all the day long.</VERS>\r\n      <VERS vnumber=\"4\">Rejoice the soul of thy servant; For unto thee, O Lord, do I lift up my soul.</VERS>\r\n      <VERS vnumber=\"5\">For thou, Lord, art good, and ready to forgive, And abundant in lovingkindness unto all them that call upon thee.</VERS>\r\n      <VERS vnumber=\"6\">Give ear, O Jehovah, unto my prayer; And hearken unto the voice of my supplications.</VERS>\r\n      <VERS vnumber=\"7\">In the day of my trouble I will call upon thee; For thou wilt answer me.</VERS>\r\n      <VERS vnumber=\"8\">There is none like unto thee among the gods, O Lord; Neither [are there any works] like unto thy works.</VERS>\r\n      <VERS vnumber=\"9\">All nations whom thou hast made shall come and worship       before thee, O Lord; And they shall glorify thy name.</VERS>\r\n      <VERS vnumber=\"10\">For thou art great, and doest wondrous things: Thou art God alone.</VERS>\r\n      <VERS vnumber=\"11\">Teach me thy way, O Jehovah; I will walk in thy truth: Unite my heart to fear thy name.</VERS>\r\n      <VERS vnumber=\"12\">I will praise thee, O Lord my God, with my whole heart; And I will glorify thy name for evermore.</VERS>\r\n      <VERS vnumber=\"13\">For great is thy lovingkindness toward me; And thou hast delivered my soul from the lowest Sheol.</VERS>\r\n      <VERS vnumber=\"14\">O God, the proud are risen up against me, And a company of violent men have sought after my soul, And have not set thee before them.</VERS>\r\n      <VERS vnumber=\"15\">But thou, O Lord, art a God merciful and gracious, Slow to anger, and abundant in lovingkindness and truth.</VERS>\r\n      <VERS vnumber=\"16\">Oh turn unto me, and have mercy upon me; Give thy strength unto thy servant, And save the son of thy handmaid.</VERS>\r\n      <VERS vnumber=\"17\">Show me a token for good, That they who hate me may see it, and be put to shame, Because thou, Jehovah, hast helped me, and comforted me.           Psalm 87  A Psalm of the sons of Korah; a Song.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"87\">\r\n      <VERS vnumber=\"1\">His foundation is in the holy mountains.</VERS>\r\n      <VERS vnumber=\"2\">Jehovah loveth the gates of Zion More than all the dwellings of Jacob.</VERS>\r\n      <VERS vnumber=\"3\">Glorious things are spoken of thee, O city of God.     Selah</VERS>\r\n      <VERS vnumber=\"4\">I will make mention of Rahab and Babylon as among them       that know me: Behold, Philistia, and Tyre, with Ethiopia: This one was born there.</VERS>\r\n      <VERS vnumber=\"5\">Yea, of Zion it shall be said, This one and that one was       born in her; And the Most High himself will establish her.</VERS>\r\n      <VERS vnumber=\"6\">Jehovah will count, when he writeth up the peoples, This one was born there.     Selah</VERS>\r\n      <VERS vnumber=\"7\">They that sing as well as they that dance [shall say], All my fountains are in thee.           Psalm 88  A Song, a Psalm of the sons of Korah; for the Chief Musician; set to Mahalath Leannoth. Maschil of Heman the Ezrahite.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"88\">\r\n      <VERS vnumber=\"1\">O Jehovah, the God of my salvation, I have cried day and night before thee.</VERS>\r\n      <VERS vnumber=\"2\">Let my prayer enter into thy presence; Incline thine ear unto my cry.</VERS>\r\n      <VERS vnumber=\"3\">For my soul is full of troubles, And my life draweth nigh unto Sheol.</VERS>\r\n      <VERS vnumber=\"4\">I am reckoned with them that go down into the pit; I am as a man that hath no help,</VERS>\r\n      <VERS vnumber=\"5\">Cast off among the dead, Like the slain that lie in the grave, Whom thou rememberest no more, And they are cut off from thy hand.</VERS>\r\n      <VERS vnumber=\"6\">Thou hast laid me in the lowest pit, In dark places, in the deeps.</VERS>\r\n      <VERS vnumber=\"7\">Thy wrath lieth hard upon me, And thou hast afflicted me with all thy waves.     Selah</VERS>\r\n      <VERS vnumber=\"8\">Thou hast put mine acquaintance far from me; Thou hast made me an abomination unto them: I am shut up, and I cannot come forth.</VERS>\r\n      <VERS vnumber=\"9\">Mine eye wasteth away by reason of affliction: I have called daily upon thee, O Jehovah; I have spread forth my hands unto thee.</VERS>\r\n      <VERS vnumber=\"10\">Wilt thou show wonders to the dead? Shall they that are decreased arise and praise thee?     Selah</VERS>\r\n      <VERS vnumber=\"11\">Shall thy lovingkindness be declared in the grave? Or thy faithfulness in Destruction?</VERS>\r\n      <VERS vnumber=\"12\">Shall thy wonders be known in the dark? And thy righteousness in the land of forgetfulness?</VERS>\r\n      <VERS vnumber=\"13\">But unto thee, O Jehovah, have I cried; And in the morning shall my prayer come before thee.</VERS>\r\n      <VERS vnumber=\"14\">Jehovah, why castest thou off my soul? Why hidest thou thy face from me?</VERS>\r\n      <VERS vnumber=\"15\">I am afflicted and ready to die from my youth up: While I suffer thy terrors I am distracted.</VERS>\r\n      <VERS vnumber=\"16\">Thy fierce wrath is gone over me; Thy terrors have cut me off.</VERS>\r\n      <VERS vnumber=\"17\">They came round about me like water all the day long; They compassed me about together.</VERS>\r\n      <VERS vnumber=\"18\">Lover and friend hast thou put far from me, And mine acquaintance into darkness.           Psalm 89  Maschil of Ethan the Ezrahite.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"89\">\r\n      <VERS vnumber=\"1\">I will sing of the lovingkindness of Jehovah for ever: With my mouth will I make known thy faithfulness to all       generations.</VERS>\r\n      <VERS vnumber=\"2\">For I have said, Mercy shall be built up for ever; Thy faithfulness wilt thou establish in the very heavens.</VERS>\r\n      <VERS vnumber=\"3\">I have made a covenant with my chosen, I have sworn unto David my servant:</VERS>\r\n      <VERS vnumber=\"4\">Thy seed will I establish for ever, And build up thy throne to all generations.     Selah</VERS>\r\n      <VERS vnumber=\"5\">And the heavens shall praise thy wonders, O Jehovah; Thy faithfulness also in the assembly of the holy ones.</VERS>\r\n      <VERS vnumber=\"6\">For who in the skies can be compared unto Jehovah? Who among the sons of the mighty is like unto Jehovah,</VERS>\r\n      <VERS vnumber=\"7\">A God very terrible in the council of the holy ones, And to be feared above all them that are round about him?</VERS>\r\n      <VERS vnumber=\"8\">O Jehovah God of hosts, Who is a mighty one, like unto thee, O Jehovah? And thy faithfulness is round about thee.</VERS>\r\n      <VERS vnumber=\"9\">Thou rulest the pride of the sea: When the waves thereof arise, thou stillest them.</VERS>\r\n      <VERS vnumber=\"10\">Thou hast broken Rahab in pieces, as one that is slain; Thou hast scattered thine enemies with the arm of thy strength.</VERS>\r\n      <VERS vnumber=\"11\">The heavens are thine, the earth also is thine: The world and the fulness thereof, thou hast founded them.</VERS>\r\n      <VERS vnumber=\"12\">The north and the south, thou hast created them: Tabor and Hermon rejoice in thy name.</VERS>\r\n      <VERS vnumber=\"13\">Thou hast a mighty arm; Strong is thy hand, and high is thy right hand.</VERS>\r\n      <VERS vnumber=\"14\">Righteousness and justice are the foundation of thy       throne: Lovingkindness and truth go before thy face.</VERS>\r\n      <VERS vnumber=\"15\">Blessed is the people that know the joyful sound: They walk, O Jehovah, in the light of thy countenance.</VERS>\r\n      <VERS vnumber=\"16\">In thy name do they rejoice all the day; And in thy righteousness are they exalted.</VERS>\r\n      <VERS vnumber=\"17\">For thou art the glory of their strength; And in thy favor our horn shall be exalted.</VERS>\r\n      <VERS vnumber=\"18\">For our shield belongeth unto Jehovah; And our king to the Holy One of Israel.</VERS>\r\n      <VERS vnumber=\"19\">Then thou spakest in vision to thy saints, And saidst, I have laid help upon one that is mighty; I have exalted one chosen out of the people.</VERS>\r\n      <VERS vnumber=\"20\">I have found David my servant; With my holy oil have I anointed him:</VERS>\r\n      <VERS vnumber=\"21\">With whom my hand shall be established; Mine arm also shall strengthen him.</VERS>\r\n      <VERS vnumber=\"22\">The enemy shall not exact from him, Nor the son of wickedness afflict him.</VERS>\r\n      <VERS vnumber=\"23\">And I will beat down his adversaries before him, And smite them that hate him.</VERS>\r\n      <VERS vnumber=\"24\">But my faithfulness and my lovingkindness shall be with       him; And in my name shall his horn be exalted.</VERS>\r\n      <VERS vnumber=\"25\">I will set his hand also on the sea, And his right hand on the rivers.</VERS>\r\n      <VERS vnumber=\"26\">He shall cry unto me, Thou art my Father, My God, and the rock of my salvation.</VERS>\r\n      <VERS vnumber=\"27\">I also will make him [my] first-born, The highest of the kings of the earth.</VERS>\r\n      <VERS vnumber=\"28\">My lovingkindness will I keep for him for evermore; And my covenant shall stand fast with him.</VERS>\r\n      <VERS vnumber=\"29\">His seed also will I make to endure for ever, And his throne as the days of heaven.</VERS>\r\n      <VERS vnumber=\"30\">If his children forsake my law, And walk not in mine ordinances;</VERS>\r\n      <VERS vnumber=\"31\">If they break my statutes, And keep not my commandments;</VERS>\r\n      <VERS vnumber=\"32\">Then will I visit their transgression with the rod, And their iniquity with stripes.</VERS>\r\n      <VERS vnumber=\"33\">But my lovingkindness will I not utterly take from him, Nor suffer my faithfulness to fail.</VERS>\r\n      <VERS vnumber=\"34\">My covenant will I not break, Nor alter the thing that is gone out of my lips.</VERS>\r\n      <VERS vnumber=\"35\">Once have I sworn by my holiness: I will not lie unto David:</VERS>\r\n      <VERS vnumber=\"36\">His seed shall endure for ever, And his throne as the sun before me.</VERS>\r\n      <VERS vnumber=\"37\">It shall be established for ever as the moon, And [as] the faithful witness in the sky.     Selah</VERS>\r\n      <VERS vnumber=\"38\">But thou hast cast off and rejected, Thou hast been wroth with thine anointed.</VERS>\r\n      <VERS vnumber=\"39\">Thou hast abhorred the covenant of thy servant: Thou hast profaned his crown [by casting it] to the ground.</VERS>\r\n      <VERS vnumber=\"40\">Thou hast broken down all his hedges; Thou hast brought his strongholds to ruin.</VERS>\r\n      <VERS vnumber=\"41\">All that pass by the way rob him: He is become a reproach to his neighbors.</VERS>\r\n      <VERS vnumber=\"42\">Thou hast exalted the right hand of his adversaries; Thou hast made all his enemies to rejoice.</VERS>\r\n      <VERS vnumber=\"43\">Yea, thou turnest back the edge of his sword, And hast not made him to stand in the battle.</VERS>\r\n      <VERS vnumber=\"44\">Thou hast made his brightness to cease, And cast his throne down to the ground.</VERS>\r\n      <VERS vnumber=\"45\">The days of his youth hast thou shortened: Thou hast covered him with shame.     Selah</VERS>\r\n      <VERS vnumber=\"46\">How long, O Jehovah? wilt thou hide thyself for ever? [How long] shall thy wrath burn like fire?</VERS>\r\n      <VERS vnumber=\"47\">Oh remember how short my time is: For what vanity hast thou created all the children of men!</VERS>\r\n      <VERS vnumber=\"48\">What man is he that shall live and not see death, That shall deliver his soul from the power of Sheol?     Selah</VERS>\r\n      <VERS vnumber=\"49\">Lord, where are thy former lovingkindnesses, Which thou swarest unto David in thy faithfulness?</VERS>\r\n      <VERS vnumber=\"50\">Remember, Lord, the reproach of thy servants; How I do bear in my bosom [the reproach of] all the mighty       peoples,</VERS>\r\n      <VERS vnumber=\"51\">Wherewith thine enemies have reproached, O Jehovah, Wherewith they have reproached the footsteps of thine anointed.</VERS>\r\n      <VERS vnumber=\"52\">Blessed be Jehovah for evermore. Amen, and Amen.          BOOK IV      Psalm 90  A Prayer of Moses the man of God.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"90\">\r\n      <VERS vnumber=\"1\">Lord, thou hast been our dwelling-place In all generations.</VERS>\r\n      <VERS vnumber=\"2\">Before the mountains were brought forth, Or ever thou hadst formed the earth and the world, Even from everlasting to everlasting, thou art God.</VERS>\r\n      <VERS vnumber=\"3\">Thou turnest man to destruction, And sayest, Return, ye children of men.</VERS>\r\n      <VERS vnumber=\"4\">For a thousand years in thy sight Are but as yesterday when it is past, And as a watch in the night.</VERS>\r\n      <VERS vnumber=\"5\">Thou carriest them away as with a flood; they are as a       sleep: In the morning they are like grass which groweth up.</VERS>\r\n      <VERS vnumber=\"6\">In the morning it flourisheth, and groweth up; In the evening it is cut down, and withereth.</VERS>\r\n      <VERS vnumber=\"7\">For we are consumed in thine anger, And in thy wrath are we troubled.</VERS>\r\n      <VERS vnumber=\"8\">Thou hast set our iniquities before thee, Our secret sins in the light of thy countenance.</VERS>\r\n      <VERS vnumber=\"9\">For all our days are passed away in thy wrath: We bring our years to an end as a sigh.</VERS>\r\n      <VERS vnumber=\"10\">The days of our years are threescore years and ten, Or even by reason of strength fourscore years; Yet is their pride but labor and sorrow; For it is soon gone, and we fly away.</VERS>\r\n      <VERS vnumber=\"11\">Who knoweth the power of thine anger, And thy wrath according to the fear that is due unto thee?</VERS>\r\n      <VERS vnumber=\"12\">So teach us to number our days, That we may get us a heart of wisdom.</VERS>\r\n      <VERS vnumber=\"13\">Return, O Jehovah; how long? And let it repent thee concerning thy servants.</VERS>\r\n      <VERS vnumber=\"14\">Oh satisfy us in the morning with thy lovingkindness, That we may rejoice and be glad all our days.</VERS>\r\n      <VERS vnumber=\"15\">Make us glad according to the days wherein thou hast       afflicted us, And the years wherein we have seen evil.</VERS>\r\n      <VERS vnumber=\"16\">Let thy work appear unto thy servants, And thy glory upon their children.</VERS>\r\n      <VERS vnumber=\"17\">And let the favor 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.           Psalm 91</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"91\">\r\n      <VERS vnumber=\"1\">He that dwelleth in the secret place of the Most High Shall abide under the shadow of the Almighty.</VERS>\r\n      <VERS vnumber=\"2\">I will say of Jehovah, He is my refuge and my fortress; My God, in whom I trust.</VERS>\r\n      <VERS vnumber=\"3\">For he will deliver thee from the snare of the fowler, And from the deadly pestilence.</VERS>\r\n      <VERS vnumber=\"4\">He will cover thee with his pinions, And under his wings shalt thou take refuge: His truth is a shield and a buckler.</VERS>\r\n      <VERS vnumber=\"5\">Thou shalt not be afraid for the terror by night, Nor for the arrow that flieth by day;</VERS>\r\n      <VERS vnumber=\"6\">For the pestilence that walketh in darkness, Nor for the destruction that wasteth at noonday.</VERS>\r\n      <VERS vnumber=\"7\">A thousand shall fall at thy side, And ten thousand at thy right hand; [But] it shall not come nigh thee.</VERS>\r\n      <VERS vnumber=\"8\">Only with thine eyes shalt thou behold, And see the reward of the wicked.</VERS>\r\n      <VERS vnumber=\"9\">For thou, O Jehovah, art my refuge! Thou hast made the Most High thy habitation;</VERS>\r\n      <VERS vnumber=\"10\">There shall no evil befall thee, Neither shall any plague come nigh thy tent.</VERS>\r\n      <VERS vnumber=\"11\">For he will give his angels charge over thee, To keep thee in all thy ways.</VERS>\r\n      <VERS vnumber=\"12\">They shall bear thee up in their hands, Lest thou dash thy foot against a stone.</VERS>\r\n      <VERS vnumber=\"13\">Thou shalt tread upon the lion and adder: The young lion and the serpent shalt thou trample under foot.</VERS>\r\n      <VERS vnumber=\"14\">Because he hath set his love upon me, therefore will I       deliver him: I will set him on high, because he hath known my name.</VERS>\r\n      <VERS vnumber=\"15\">He shall call upon me, and I will answer him; I will be with him in trouble: I will deliver him, and honor him.</VERS>\r\n      <VERS vnumber=\"16\">With long life will I satisfy him, And show him my salvation.           Psalm 92  A Psalm, a Song for the sabbath day.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"92\">\r\n      <VERS vnumber=\"1\">It is a good thing to give thanks unto Jehovah, And to sing praises unto thy name, O Most High;</VERS>\r\n      <VERS vnumber=\"2\">To show forth thy lovingkindness in the morning, And thy faithfulness every night,</VERS>\r\n      <VERS vnumber=\"3\">With an instrument of ten strings, and with the psaltery; With a solemn sound upon the harp.</VERS>\r\n      <VERS vnumber=\"4\">For thou, Jehovah, hast made me glad through thy work: I will triumph in the works of thy hands.</VERS>\r\n      <VERS vnumber=\"5\">How great are thy works, O Jehovah! Thy thoughts are very deep.</VERS>\r\n      <VERS vnumber=\"6\">A brutish man knoweth not; Neither doth a fool understand this:</VERS>\r\n      <VERS vnumber=\"7\">When the wicked spring as the grass, And when all the workers of iniquity do flourish; It is that they shall be destroyed for ever.</VERS>\r\n      <VERS vnumber=\"8\">But thou, O Jehovah, art on high for evermore.</VERS>\r\n      <VERS vnumber=\"9\">For, lo, thine enemies, O Jehovah, For, lo, thine enemies shall perish; All the workers of iniquity shall be scattered.</VERS>\r\n      <VERS vnumber=\"10\">But my horn hast thou exalted like [the horn of] the       wild-ox: I am anointed with fresh oil.</VERS>\r\n      <VERS vnumber=\"11\">Mine eye also hath seen [my desire] on mine enemies, Mine ears have heard [my desire] of the evil-doers that rise up       against me.</VERS>\r\n      <VERS vnumber=\"12\">The righteous shall flourish like the palm-tree: He shall grow like a cedar in Lebanon.</VERS>\r\n      <VERS vnumber=\"13\">They are planted in the house of Jehovah; They shall flourish in the courts of our God.</VERS>\r\n      <VERS vnumber=\"14\">They shall still bring forth fruit in old age; They shall be full of sap and green:</VERS>\r\n      <VERS vnumber=\"15\">To show that Jehovah is upright; He is my rock, and there is no unrighteousness in him.           Psalm 93</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"93\">\r\n      <VERS vnumber=\"1\">Jehovah reigneth; he is clothed with majesty; Jehovah is clothed with strength; he hath girded himself       therewith: The world also is established, that it cannot be moved.</VERS>\r\n      <VERS vnumber=\"2\">Thy throne is established of old: Thou art from everlasting.</VERS>\r\n      <VERS vnumber=\"3\">The floods have lifted up, O Jehovah, The floods have lifted up their voice; The floods lift up their waves.</VERS>\r\n      <VERS vnumber=\"4\">Above the voices of many waters, The mighty breakers of the sea, Jehovah on high is mighty.</VERS>\r\n      <VERS vnumber=\"5\">Thy testimonies are very sure: Holiness becometh thy house, O Jehovah, for evermore.           Psalm 94</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"94\">\r\n      <VERS vnumber=\"1\">O Jehovah, thou God to whom vengeance belongeth, Thou God to whom vengeance belongeth, shine forth.</VERS>\r\n      <VERS vnumber=\"2\">Lift up thyself, thou judge of the earth: Render to the proud [their] desert.</VERS>\r\n      <VERS vnumber=\"3\">Jehovah, how long shall the wicked, How long shall the wicked triumph?</VERS>\r\n      <VERS vnumber=\"4\">They prate, they speak arrogantly: All the workers of iniquity boast themselves.</VERS>\r\n      <VERS vnumber=\"5\">They break in pieces thy people, O Jehovah, And afflict thy heritage.</VERS>\r\n      <VERS vnumber=\"6\">They slay the widow and the sojourner, And murder the fatherless.</VERS>\r\n      <VERS vnumber=\"7\">And they say, Jehovah will not see, Neither will the God of Jacob consider.</VERS>\r\n      <VERS vnumber=\"8\">Consider, ye brutish among the people; And ye fools, when will ye be wise?</VERS>\r\n      <VERS vnumber=\"9\">He that planted the ear, shall he not hear? He that formed the eye, shall he not see?</VERS>\r\n      <VERS vnumber=\"10\">He that chastiseth the nations, shall not he correct, [Even] he that teacheth man knowledge?</VERS>\r\n      <VERS vnumber=\"11\">Jehovah knoweth the thoughts of man, That they are vanity.</VERS>\r\n      <VERS vnumber=\"12\">Blessed is the man whom thou chastenest, O Jehovah, And teachest out of thy law;</VERS>\r\n      <VERS vnumber=\"13\">That thou mayest give him rest from the days of       adversity, Until the pit be digged for the wicked.</VERS>\r\n      <VERS vnumber=\"14\">For Jehovah will not cast off his people, Neither will he forsake his inheritance.</VERS>\r\n      <VERS vnumber=\"15\">For judgment shall return unto righteousness; And all the upright in heart shall follow it.</VERS>\r\n      <VERS vnumber=\"16\">Who will rise up for me against the evil-doers? Who will stand up for me against the workers of iniquity?</VERS>\r\n      <VERS vnumber=\"17\">Unless Jehovah had been my help, My soul had soon dwelt in silence.</VERS>\r\n      <VERS vnumber=\"18\">When I said, My foot slippeth; Thy lovingkindness, O Jehovah, held me up.</VERS>\r\n      <VERS vnumber=\"19\">In the multitude of my thoughts within me Thy comforts       delight my soul.</VERS>\r\n      <VERS vnumber=\"20\">Shall the throne of wickedness have fellowship with thee, Which frameth mischief by statute?</VERS>\r\n      <VERS vnumber=\"21\">They gather themselves together against the soul of the       righteous, And condemn the innocent blood.</VERS>\r\n      <VERS vnumber=\"22\">But Jehovah hath been my high tower, And my God the rock of my refuge.</VERS>\r\n      <VERS vnumber=\"23\">And he hath brought upon them their own iniquity, And will cut them off in their own wickedness; Jehovah our God will cut them off.           Psalm 95</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"95\">\r\n      <VERS vnumber=\"1\">Oh come, let us sing unto Jehovah; Let us make a joyful noise to the rock of our salvation.</VERS>\r\n      <VERS vnumber=\"2\">Let us come before his presence with thanksgiving; Let us make a joyful noise unto him with psalms.</VERS>\r\n      <VERS vnumber=\"3\">For Jehovah is a great God, And a great King above all gods.</VERS>\r\n      <VERS vnumber=\"4\">In his hand are the deep places of the earth; The heights of the mountains are his also.</VERS>\r\n      <VERS vnumber=\"5\">The sea is his, and he made it; And his hands formed the dry land.</VERS>\r\n      <VERS vnumber=\"6\">Oh come, let us worship and bow down; Let us kneel before Jehovah our Maker:</VERS>\r\n      <VERS vnumber=\"7\">For he is our God, And we are the people of his pasture, and the sheep of his hand. To-day, oh that ye would hear his voice!</VERS>\r\n      <VERS vnumber=\"8\">Harden not your heart, as at Meribah, As in the day of Massah in the wilderness;</VERS>\r\n      <VERS vnumber=\"9\">When your fathers tempted me, Proved me, and saw my work.</VERS>\r\n      <VERS vnumber=\"10\">Forty years long was I grieved with [that] generation, And said, It is a people that do err in their heart, And they have not known my ways:</VERS>\r\n      <VERS vnumber=\"11\">Wherefore I sware in my wrath, That they should not enter into my rest.           Psalm 96</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"96\">\r\n      <VERS vnumber=\"1\">Oh sing unto Jehovah a new song: Sing unto Jehovah, all the earth.</VERS>\r\n      <VERS vnumber=\"2\">Sing unto Jehovah, bless his name; Show forth his salvation from day to day.</VERS>\r\n      <VERS vnumber=\"3\">Declare his glory among the nations, His marvellous works among all the peoples.</VERS>\r\n      <VERS vnumber=\"4\">For great is Jehovah, and greatly to be praised: He is to be feared above all gods.</VERS>\r\n      <VERS vnumber=\"5\">For all the gods of the peoples are idols; But Jehovah made the heavens.</VERS>\r\n      <VERS vnumber=\"6\">Honor and majesty are before him: Strength and beauty are in his sanctuary.</VERS>\r\n      <VERS vnumber=\"7\">Ascribe unto Jehovah, ye kindreds of the peoples, Ascribe unto Jehovah glory and strength.</VERS>\r\n      <VERS vnumber=\"8\">Ascribe unto Jehovah the glory due unto his name: Bring an offering, and come into his courts.</VERS>\r\n      <VERS vnumber=\"9\">Oh worship Jehovah in holy array: Tremble before him, all the earth.</VERS>\r\n      <VERS vnumber=\"10\">Say among the nations, Jehovah reigneth: The world also is established that it cannot be moved: He will judge the peoples with equity.</VERS>\r\n      <VERS vnumber=\"11\">Let the heavens be glad, and let the earth rejoice; Let the sea roar, and the fulness thereof;</VERS>\r\n      <VERS vnumber=\"12\">Let the field exult, and all that is therein; Then shall all the trees of the wood sing for joy</VERS>\r\n      <VERS vnumber=\"13\">Before Jehovah; for he cometh, For he cometh to judge the earth: He will judge the world with righteousness, And the peoples with his truth.           Psalm 97</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"97\">\r\n      <VERS vnumber=\"1\">Jehovah reigneth; let the earth rejoice; Let the multitude of isles be glad.</VERS>\r\n      <VERS vnumber=\"2\">Clouds and darkness are round about him: Righteousness and justice are the foundation of his throne.</VERS>\r\n      <VERS vnumber=\"3\">A fire goeth before him, And burneth up his adversaries round about.</VERS>\r\n      <VERS vnumber=\"4\">His lightnings lightened the world: The earth saw, and trembled.</VERS>\r\n      <VERS vnumber=\"5\">The mountains melted like wax at the presence of Jehovah, At the presence of the Lord of the whole earth.</VERS>\r\n      <VERS vnumber=\"6\">The heavens declare his righteousness, And all the peoples have seen his glory.</VERS>\r\n      <VERS vnumber=\"7\">Let all them be put to shame that serve graven images, That boast themselves of idols: Worship him, all ye gods.</VERS>\r\n      <VERS vnumber=\"8\">Zion heard and was glad, And the daughters of Judah rejoiced, Because of thy judgments, O Jehovah.</VERS>\r\n      <VERS vnumber=\"9\">For thou, Jehovah, art most high above all the earth: Thou art exalted far above all gods.</VERS>\r\n      <VERS vnumber=\"10\">O ye that love Jehovah, hate evil: He preserveth the souls of his saints; He delivereth them out of the hand of the wicked.</VERS>\r\n      <VERS vnumber=\"11\">Light is sown for the righteous, And gladness for the upright in heart.</VERS>\r\n      <VERS vnumber=\"12\">Be glad in Jehovah, ye righteous; And give thanks to his holy memorial [name].           Psalm 98  A Psalm.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"98\">\r\n      <VERS vnumber=\"1\">Oh sing unto Jehovah a new song; For he hath done marvellous things: His right hand, and his holy arm, hath wrought salvation for him.</VERS>\r\n      <VERS vnumber=\"2\">Jehovah hath made known his salvation: His righteousness hath he openly showed in the sight of the       nations.</VERS>\r\n      <VERS vnumber=\"3\">He hath remembered his lovingkindness and his       faithfulness toward the house of Israel: All the ends of the earth have seen the salvation of our God.</VERS>\r\n      <VERS vnumber=\"4\">Make a joyful noise unto Jehovah, all the earth: Break forth and sing for joy, yea, sing praises.</VERS>\r\n      <VERS vnumber=\"5\">Sing praises unto Jehovah with the harp; With the harp and the voice of melody.</VERS>\r\n      <VERS vnumber=\"6\">With trumpets and sound of cornet Make a joyful noise before the King, Jehovah.</VERS>\r\n      <VERS vnumber=\"7\">Let the sea roar, and the fulness thereof; The world, and they that dwell therein;</VERS>\r\n      <VERS vnumber=\"8\">Let the floods clap their hands; Let the hills sing for joy together</VERS>\r\n      <VERS vnumber=\"9\">Before Jehovah; for he cometh to judge the earth: He will judge the world with righteousness, And the peoples with equity.           Psalm 99</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"99\">\r\n      <VERS vnumber=\"1\">Jehovah reigneth; let the peoples tremble: He sitteth [above] the cherubim; let the earth be moved.</VERS>\r\n      <VERS vnumber=\"2\">Jehovah is great in Zion; And he is high above all the peoples.</VERS>\r\n      <VERS vnumber=\"3\">Let them praise thy great and terrible name: Holy is he.</VERS>\r\n      <VERS vnumber=\"4\">The king`s strength also loveth justice; Thou dost establish equity; Thou executest justice and righteousness in Jacob.</VERS>\r\n      <VERS vnumber=\"5\">Exalt ye Jehovah our God, And worship at his footstool: Holy is he.</VERS>\r\n      <VERS vnumber=\"6\">Moses and Aaron among his priests, And Samuel among them that call upon his name; They called upon Jehovah, and he answered them.</VERS>\r\n      <VERS vnumber=\"7\">He spake unto them in the pillar of cloud: They kept his testimonies, And the statute that he gave them.</VERS>\r\n      <VERS vnumber=\"8\">Thou answeredst them, O Jehovah our God: Thou wast a God that forgavest them, Though thou tookest vengeance of their doings.</VERS>\r\n      <VERS vnumber=\"9\">Exalt ye Jehovah our God, And worship at his holy hill; For Jehovah our God is holy.           Psalm 100       A Psalm of thanksgiving.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"100\">\r\n      <VERS vnumber=\"1\">Make a joyful noise unto Jehovah, all ye lands.</VERS>\r\n      <VERS vnumber=\"2\">Serve Jehovah with gladness: Come before his presence with singing.</VERS>\r\n      <VERS vnumber=\"3\">Know ye that Jehovah, he is God: It is he that hath made us, and we are his; We are his people, and the sheep of his pasture.</VERS>\r\n      <VERS vnumber=\"4\">Enter into his gates with thanksgiving, And into his courts with praise: Give thanks unto him, and bless his name.</VERS>\r\n      <VERS vnumber=\"5\">For Jehovah is good; his lovingkindness [endureth] for       ever, And his faithfulness unto all generations.           Psalm 101       A Psalm of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"101\">\r\n      <VERS vnumber=\"1\">I will sing of lovingkindness and justice: Unto thee, O Jehovah, will I sing praises.</VERS>\r\n      <VERS vnumber=\"2\">I will behave myself wisely in a perfect way: Oh when wilt thou come unto me? I will walk within my house with a perfect heart.</VERS>\r\n      <VERS vnumber=\"3\">I will set no base thing before mine eyes: I hate the work of them that turn aside; It shall not cleave unto me.</VERS>\r\n      <VERS vnumber=\"4\">A perverse heart shall depart from me: I will know no evil thing.</VERS>\r\n      <VERS vnumber=\"5\">Whoso privily slandereth his neighbor, him will I       destroy: Him that hath a high look and a proud heart will I not suffer.</VERS>\r\n      <VERS vnumber=\"6\">Mine eyes shall be upon the faithful of the land, that       they may dwell with me: He that walketh in a perfect way, he shall minister unto me.</VERS>\r\n      <VERS vnumber=\"7\">He that worketh deceit shall not dwell within my house: He that speaketh falsehood shall not be established before mine       eyes.</VERS>\r\n      <VERS vnumber=\"8\">Morning by morning will I destroy all the wicked of the       land; To cut off all the workers of iniquity from the city of Jehovah.           Psalm 102       A Prayer of the afflicted, when he is overwhelmed, and poureth out his complaint before Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"102\">\r\n      <VERS vnumber=\"1\">Hear my prayer, O Jehovah, And let my cry come unto thee.</VERS>\r\n      <VERS vnumber=\"2\">Hide not thy face from me in the day of my distress: Incline thine ear unto me; In the day when I call answer me speedily.</VERS>\r\n      <VERS vnumber=\"3\">For my days consume away like smoke, And my bones are burned as a firebrand.</VERS>\r\n      <VERS vnumber=\"4\">My heart is smitten like grass, and withered; For I forget to eat my bread.</VERS>\r\n      <VERS vnumber=\"5\">By reason of the voice of my groaning My bones cleave to my flesh.</VERS>\r\n      <VERS vnumber=\"6\">I am like a pelican of the wilderness; I am become as an owl of the waste places.</VERS>\r\n      <VERS vnumber=\"7\">I watch, and am become like a sparrow That is alone upon the house-top.</VERS>\r\n      <VERS vnumber=\"8\">Mine enemies reproach me all the day; They that are mad against me do curse by me.</VERS>\r\n      <VERS vnumber=\"9\">For I have eaten ashes like bread, And mingled my drink with weeping,</VERS>\r\n      <VERS vnumber=\"10\">Because of thine indignation and thy wrath: For thou hast taken me up, and cast me away.</VERS>\r\n      <VERS vnumber=\"11\">My days are like a shadow that declineth; And I am withered like grass.</VERS>\r\n      <VERS vnumber=\"12\">But thou, O Jehovah, wilt abide for ever; And thy memorial [name] unto all generations.</VERS>\r\n      <VERS vnumber=\"13\">Thou wilt arise, and have mercy upon Zion; For it is time to have pity upon her, Yea, the set time is come.</VERS>\r\n      <VERS vnumber=\"14\">For thy servants take pleasure in her stones, And have pity upon her dust.</VERS>\r\n      <VERS vnumber=\"15\">So the nations shall fear the name of Jehovah, And all the kings of the earth thy glory.</VERS>\r\n      <VERS vnumber=\"16\">For Jehovah hath built up Zion; He hath appeared in his glory.</VERS>\r\n      <VERS vnumber=\"17\">He hath regarded the prayer of the destitute, And hath not despised their prayer.</VERS>\r\n      <VERS vnumber=\"18\">This shall be written for the generation to come; And a people which shall be created shall praise Jehovah.</VERS>\r\n      <VERS vnumber=\"19\">For he hath looked down from the height of his       sanctuary; From heaven did Jehovah behold the earth;</VERS>\r\n      <VERS vnumber=\"20\">To hear the sighing of the prisoner; To loose those that are appointed to death;</VERS>\r\n      <VERS vnumber=\"21\">That men may declare the name of Jehovah in Zion, And his praise in Jerusalem;</VERS>\r\n      <VERS vnumber=\"22\">When the peoples are gathered together, And the kingdoms, to serve Jehovah.</VERS>\r\n      <VERS vnumber=\"23\">He weakened my strength in the way; He shortened my days.</VERS>\r\n      <VERS vnumber=\"24\">I said, O my God, take me not away in the midst of my       days: Thy years are throughout all generations.</VERS>\r\n      <VERS vnumber=\"25\">Of old didst thou lay the foundation of the earth; And the heavens are the work of thy hands.</VERS>\r\n      <VERS vnumber=\"26\">They 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:</VERS>\r\n      <VERS vnumber=\"27\">But thou art the same, And thy years shall have no end.</VERS>\r\n      <VERS vnumber=\"28\">The children of thy servants shall continue, And their seed shall be established before thee.           Psalm 103       [A Psalm] of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"103\">\r\n      <VERS vnumber=\"1\">Bless Jehovah, O my soul; And all that is within me, [bless] his holy name.</VERS>\r\n      <VERS vnumber=\"2\">Bless Jehovah, O my soul, And forget not all his benefits:</VERS>\r\n      <VERS vnumber=\"3\">Who forgiveth all thine iniquities; Who healeth all thy diseases;</VERS>\r\n      <VERS vnumber=\"4\">Who redeemeth thy life from destruction; Who crowneth thee with lovingkindness and tender mercies;</VERS>\r\n      <VERS vnumber=\"5\">Who satisfieth thy desire with good things, [So that] thy youth is renewed like the eagle.</VERS>\r\n      <VERS vnumber=\"6\">Jehovah executeth righteous acts, And judgments for all that are oppressed.</VERS>\r\n      <VERS vnumber=\"7\">He made known his ways unto Moses, His doings unto the children of Israel.</VERS>\r\n      <VERS vnumber=\"8\">Jehovah is merciful and gracious, Slow to anger, and abundant in lovingkindness.</VERS>\r\n      <VERS vnumber=\"9\">He will not always chide; Neither will he keep [his anger] for ever.</VERS>\r\n      <VERS vnumber=\"10\">He hath not dealt with us after our sins, Nor rewarded us after our iniquities.</VERS>\r\n      <VERS vnumber=\"11\">For as the heavens are high above the earth, So great is his lovingkindness toward them that fear him.</VERS>\r\n      <VERS vnumber=\"12\">As far as the east is from the west, So far hath he removed our transgressions from us.</VERS>\r\n      <VERS vnumber=\"13\">Like as a father pitieth his children, So Jehovah pitieth them that fear him.</VERS>\r\n      <VERS vnumber=\"14\">For he knoweth our frame; He remembereth that we are dust.</VERS>\r\n      <VERS vnumber=\"15\">As for man, his days are as grass; As a flower of the field, so he flourisheth.</VERS>\r\n      <VERS vnumber=\"16\">For the wind passeth over it, and it is gone; And the place thereof shall know it no more.</VERS>\r\n      <VERS vnumber=\"17\">But the lovingkindness of Jehovah is from everlasting       to everlasting upon them that fear him, And his righteousness unto children`s children;</VERS>\r\n      <VERS vnumber=\"18\">To such as keep his covenant, And to those that remember his precepts to do them.</VERS>\r\n      <VERS vnumber=\"19\">Jehovah hath established his throne in the heavens; And his kingdom ruleth over all.</VERS>\r\n      <VERS vnumber=\"20\">Bless Jehovah, ye his angels, That are mighty in strength, that fulfil his word, Hearkening unto the voice of his word.</VERS>\r\n      <VERS vnumber=\"21\">Bless Jehovah, all ye his hosts, Ye ministers of his, that do his pleasure.</VERS>\r\n      <VERS vnumber=\"22\">Bless Jehovah, all ye his works, In all places of his dominion: Bless Jehovah, O my soul.           Psalm 104</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"104\">\r\n      <VERS vnumber=\"1\">Bless Jehovah, O my soul. O Jehovah my God, thou art very great; Thou art clothed with honor and majesty:</VERS>\r\n      <VERS vnumber=\"2\">Who coverest thyself with light as with a garment; Who stretchest out the heavens like a curtain;</VERS>\r\n      <VERS vnumber=\"3\">Who layeth the beams of his chambers in the waters; Who maketh the clouds his chariot; Who walketh upon the wings of the wind;</VERS>\r\n      <VERS vnumber=\"4\">Who maketh winds his messengers; Flames of fire his ministers;</VERS>\r\n      <VERS vnumber=\"5\">Who laid the foundations of the earth, That it should not be moved for ever.</VERS>\r\n      <VERS vnumber=\"6\">Thou coveredst it with the deep as with a vesture; The waters stood above the mountains.</VERS>\r\n      <VERS vnumber=\"7\">At thy rebuke they fled; At the voice of thy thunder they hasted away</VERS>\r\n      <VERS vnumber=\"8\">(The mountains rose, the valleys sank down) Unto the place which thou hadst founded for them.</VERS>\r\n      <VERS vnumber=\"9\">Thou hast set a bound that they may not pass over; That they turn not again to cover the earth.</VERS>\r\n      <VERS vnumber=\"10\">He sendeth forth springs into the valleys; They run among the mountains;</VERS>\r\n      <VERS vnumber=\"11\">They give drink to every beast of the field; The wild asses quench their thirst.</VERS>\r\n      <VERS vnumber=\"12\">By them the birds of the heavens have their habitation; They sing among the branches.</VERS>\r\n      <VERS vnumber=\"13\">He watereth the mountains from his chambers: The earth is filled with the fruit of thy works.</VERS>\r\n      <VERS vnumber=\"14\">He 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,</VERS>\r\n      <VERS vnumber=\"15\">And wine that maketh glad the heart of man, [And] oil to make his face to shine, And bread that strengtheneth man`s heart.</VERS>\r\n      <VERS vnumber=\"16\">The trees of Jehovah are filled [with moisture], The cedars of Lebanon, which he hath planted;</VERS>\r\n      <VERS vnumber=\"17\">Where the birds make their nests: As for the stork, the fir-trees are her house.</VERS>\r\n      <VERS vnumber=\"18\">The high mountains are for the wild goats; The rocks are a refuge for the conies.</VERS>\r\n      <VERS vnumber=\"19\">He appointed the moon for seasons: The sun knoweth his going down.</VERS>\r\n      <VERS vnumber=\"20\">Thou makest darkness, and it is night, Wherein all the beasts of the forest creep forth.</VERS>\r\n      <VERS vnumber=\"21\">The young lions roar after their prey, And seek their food from God.</VERS>\r\n      <VERS vnumber=\"22\">The sun ariseth, they get them away, And lay them down in their dens.</VERS>\r\n      <VERS vnumber=\"23\">Man goeth forth unto his work And to his labor until the evening.</VERS>\r\n      <VERS vnumber=\"24\">O Jehovah, how manifold are thy works! In wisdom hast thou made them all: The earth is full of thy riches.</VERS>\r\n      <VERS vnumber=\"25\">Yonder is the sea, great and wide, Wherein are things creeping innumerable, Both small and great beasts.</VERS>\r\n      <VERS vnumber=\"26\">There go the ships; There is leviathan, whom thou hast formed to play therein.</VERS>\r\n      <VERS vnumber=\"27\">These wait all for thee, That thou mayest give them their food in due season.</VERS>\r\n      <VERS vnumber=\"28\">Thou givest unto them, they gather; Thou openest thy hand, they are satisfied with good.</VERS>\r\n      <VERS vnumber=\"29\">Thou hidest thy face, they are troubled; Thou takest away their breath, they die, And return to their dust.</VERS>\r\n      <VERS vnumber=\"30\">Thou sendest forth thy Spirit, they are created; And thou renewest the face of the ground.</VERS>\r\n      <VERS vnumber=\"31\">Let the glory of Jehovah endure for ever; Let Jehovah rejoice in his works:</VERS>\r\n      <VERS vnumber=\"32\">Who looketh on the earth, and it trembleth; He toucheth the mountains, and they smoke.</VERS>\r\n      <VERS vnumber=\"33\">I will sing unto Jehovah as long as I live: I will sing praise to my God while I have any being.</VERS>\r\n      <VERS vnumber=\"34\">Let thy meditation be sweet unto him: I will rejoice in Jehovah.</VERS>\r\n      <VERS vnumber=\"35\">Let sinners be consumed out of the earth. And let the wicked be no more. Bless Jehovah, O my soul. Praise ye Jehovah.           Psalm 105</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"105\">\r\n      <VERS vnumber=\"1\">Oh give thanks unto Jehovah, call upon his name; Make known among the peoples his doings.</VERS>\r\n      <VERS vnumber=\"2\">Sing unto him, sing praises unto him; Talk ye of all his marvelous works.</VERS>\r\n      <VERS vnumber=\"3\">Glory ye in his holy name: Let the heart of them rejoice that seek Jehovah.</VERS>\r\n      <VERS vnumber=\"4\">Seek ye Jehovah and his strength; Seek his face evermore.</VERS>\r\n      <VERS vnumber=\"5\">Remember his marvellous works that he hath done, His wonders, and the judgments of his mouth,</VERS>\r\n      <VERS vnumber=\"6\">O ye seed of Abraham his servant, Ye children of Jacob, his chosen ones.</VERS>\r\n      <VERS vnumber=\"7\">He is Jehovah our God: His judgments are in all the earth.</VERS>\r\n      <VERS vnumber=\"8\">He hath remembered his covenant for ever, The word which he commanded to a thousand generations,</VERS>\r\n      <VERS vnumber=\"9\">[The covenant] which he made with Abraham, And his oath unto Isaac,</VERS>\r\n      <VERS vnumber=\"10\">And confirmed the same unto Jacob for a statute, To Israel for an everlasting covenant,</VERS>\r\n      <VERS vnumber=\"11\">Saying, Unto thee will I give the land of Canaan, The lot of your inheritance;</VERS>\r\n      <VERS vnumber=\"12\">When they were but a few men in number, Yea, very few, and sojourners in it.</VERS>\r\n      <VERS vnumber=\"13\">And they went about from nation to nation, From one kingdom to another people.</VERS>\r\n      <VERS vnumber=\"14\">He suffered no man to do them wrong; Yea, he reproved kings for their sakes,</VERS>\r\n      <VERS vnumber=\"15\">[Saying], Touch not mine anointed ones, And do my prophets no harm.</VERS>\r\n      <VERS vnumber=\"16\">And he called for a famine upon the land; He brake the whole staff of bread.</VERS>\r\n      <VERS vnumber=\"17\">He sent a man before them; Joseph was sold for a servant:</VERS>\r\n      <VERS vnumber=\"18\">His feet they hurt with fetters: He was laid in [chains of] iron,</VERS>\r\n      <VERS vnumber=\"19\">Until the time that his word came to pass, The word of Jehovah tried him.</VERS>\r\n      <VERS vnumber=\"20\">The king sent and loosed him; Even the ruler of peoples, and let him go free.</VERS>\r\n      <VERS vnumber=\"21\">He made him lord of his house, And ruler of all his substance;</VERS>\r\n      <VERS vnumber=\"22\">To bind his princes at his pleasure, And teach his elders wisdom.</VERS>\r\n      <VERS vnumber=\"23\">Israel also came into Egypt; And Jacob sojourned in the land of Ham.</VERS>\r\n      <VERS vnumber=\"24\">And he increased his people greatly, And made them stronger than their adversaries.</VERS>\r\n      <VERS vnumber=\"25\">He turned their heart to hate his people, To deal subtly with his servants.</VERS>\r\n      <VERS vnumber=\"26\">He sent Moses his servant, [And] Aaron whom he had chosen.</VERS>\r\n      <VERS vnumber=\"27\">They set among them his signs, And wonders in the land of Ham.</VERS>\r\n      <VERS vnumber=\"28\">He sent darkness, and made it dark; And they rebelled not against his words.</VERS>\r\n      <VERS vnumber=\"29\">He turned their waters into blood, And slew their fish.</VERS>\r\n      <VERS vnumber=\"30\">Their land swarmed with frogs In the chambers of their       kings.</VERS>\r\n      <VERS vnumber=\"31\">He spake, and there came swarms of flies, And lice in all their borders.</VERS>\r\n      <VERS vnumber=\"32\">He gave them hail for rain, [And] flaming fire in their land.</VERS>\r\n      <VERS vnumber=\"33\">He smote their vines also and their fig-trees, And brake the trees of their borders.</VERS>\r\n      <VERS vnumber=\"34\">He spake, and the locust came, And the grasshopper, and that without number,</VERS>\r\n      <VERS vnumber=\"35\">And did eat up every herb in their land, And did eat up the fruit of their ground.</VERS>\r\n      <VERS vnumber=\"36\">He smote also all the first-born in their land, The chief of all their strength.</VERS>\r\n      <VERS vnumber=\"37\">And he brought them forth with silver and gold; And there was not one feeble person among his tribes.</VERS>\r\n      <VERS vnumber=\"38\">Egypt was glad when they departed; For the fear of them had fallen upon them.</VERS>\r\n      <VERS vnumber=\"39\">He spread a cloud for a covering, And fire to give light in the night.</VERS>\r\n      <VERS vnumber=\"40\">They asked, and he brought quails, And satisfied them with the bread of heaven.</VERS>\r\n      <VERS vnumber=\"41\">He opened the rock, and waters gushed out; They ran in the dry places [like] a river.</VERS>\r\n      <VERS vnumber=\"42\">For he remembered his holy word, [And] Abraham his servant.</VERS>\r\n      <VERS vnumber=\"43\">And he brought forth his people with joy, [And] his chosen with singing.</VERS>\r\n      <VERS vnumber=\"44\">And he gave them the lands of the nations; And they took the labor of the peoples in possession:</VERS>\r\n      <VERS vnumber=\"45\">That they might keep his statutes, And observe his laws. Praise ye Jehovah.           Psalm 106</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"106\">\r\n      <VERS vnumber=\"1\">Praise ye Jehovah. Oh give thanks unto Jehovah; for he is good; For his lovingkindness [endureth] forever.</VERS>\r\n      <VERS vnumber=\"2\">Who can utter the mighty acts of Jehovah, Or show forth all his praise?</VERS>\r\n      <VERS vnumber=\"3\">Blessed are they that keep justice, And he that doeth righteousness at all times.</VERS>\r\n      <VERS vnumber=\"4\">Remember me, O Jehovah, with the favor that thou bearest       unto thy people; Oh visit me with thy salvation,</VERS>\r\n      <VERS vnumber=\"5\">That I may see the prosperity of thy chosen, That I may rejoice in the gladness of thy nation, That I may glory with thine inheritance.</VERS>\r\n      <VERS vnumber=\"6\">We have sinned with our fathers, We have committed iniquity, we have done wickedly.</VERS>\r\n      <VERS vnumber=\"7\">Our fathers understood not thy wonders in Egypt; They remembered not the multitude of thy lovingkindnesses, But were rebellious at the sea, even at the Red Sea.</VERS>\r\n      <VERS vnumber=\"8\">Nevertheless he saved them for his name`s sake, That he might make his mighty power to be known.</VERS>\r\n      <VERS vnumber=\"9\">He rebuked the Red Sea also, and it was dried up: So he led them through the depths, as through a wilderness.</VERS>\r\n      <VERS vnumber=\"10\">And he saved them from the hand of him that hated them, And redeemed them from the hand of the enemy.</VERS>\r\n      <VERS vnumber=\"11\">And the waters covered their adversaries; There was not one of them left.</VERS>\r\n      <VERS vnumber=\"12\">Then believed they his words; They sang his praise.</VERS>\r\n      <VERS vnumber=\"13\">They soon forgat his works; They waited not for his counsel,</VERS>\r\n      <VERS vnumber=\"14\">But lusted exceedingly in the wilderness, And tempted God in the desert.</VERS>\r\n      <VERS vnumber=\"15\">And he gave them their request, But sent leanness into their soul.</VERS>\r\n      <VERS vnumber=\"16\">They envied Moses also in the camp, [And] Aaron the saint of Jehovah.</VERS>\r\n      <VERS vnumber=\"17\">The earth opened and swallowed up Dathan, And covered the company of Abiram.</VERS>\r\n      <VERS vnumber=\"18\">And a fire was kindled in their company; The flame burned up the wicked.</VERS>\r\n      <VERS vnumber=\"19\">They made a calf in Horeb, And worshipped a molten image.</VERS>\r\n      <VERS vnumber=\"20\">Thus they changed their glory For the likeness of an ox that eateth grass.</VERS>\r\n      <VERS vnumber=\"21\">They forgat God their Saviour, Who had done great things in Egypt,</VERS>\r\n      <VERS vnumber=\"22\">Wondrous works in the land of Ham, [And] terrible things by the Red Sea.</VERS>\r\n      <VERS vnumber=\"23\">Therefore 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].</VERS>\r\n      <VERS vnumber=\"24\">Yea, they despised the pleasant land, They believed not his word,</VERS>\r\n      <VERS vnumber=\"25\">But murmured in their tents, And hearkened not unto the voice of Jehovah.</VERS>\r\n      <VERS vnumber=\"26\">Therefore he sware unto them, That he would overthrow them in the wilderness,</VERS>\r\n      <VERS vnumber=\"27\">And that he would overthrow their seed among the       nations, And scatter them in the lands.</VERS>\r\n      <VERS vnumber=\"28\">They joined themselves also unto Baal-peor, And ate the sacrifices of the dead.</VERS>\r\n      <VERS vnumber=\"29\">Thus they provoked him to anger with their doings; And the plague brake in upon them.</VERS>\r\n      <VERS vnumber=\"30\">Then stood up Phinehas, and executed judgment; And so the plague was stayed.</VERS>\r\n      <VERS vnumber=\"31\">And that was reckoned unto him for righteousness, Unto all generations for evermore.</VERS>\r\n      <VERS vnumber=\"32\">They angered him also at the waters of Meribah, So that it went ill with Moses for their sakes;</VERS>\r\n      <VERS vnumber=\"33\">Because they were rebellious against his spirit, And he spake unadvisedly with his lips.</VERS>\r\n      <VERS vnumber=\"34\">They did not destroy the peoples, As Jehovah commanded them,</VERS>\r\n      <VERS vnumber=\"35\">But mingled themselves with the nations, And learned their works,</VERS>\r\n      <VERS vnumber=\"36\">And served their idols, Which became a snare unto them.</VERS>\r\n      <VERS vnumber=\"37\">Yea, they sacrificed their sons and their daughters       unto demons,</VERS>\r\n      <VERS vnumber=\"38\">And 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.</VERS>\r\n      <VERS vnumber=\"39\">Thus were they defiled with their works, And played the harlot in their doings.</VERS>\r\n      <VERS vnumber=\"40\">Therefore was the wrath of Jehovah kindled against his       people, And he abhorred his inheritance.</VERS>\r\n      <VERS vnumber=\"41\">And he gave them into the hand of the nations; And they that hated them ruled over them.</VERS>\r\n      <VERS vnumber=\"42\">Their enemies also oppressed them, And they were brought into subjection under their hand.</VERS>\r\n      <VERS vnumber=\"43\">Many times did he deliver them; But they were rebellious in their counsel, And were brought low in their iniquity.</VERS>\r\n      <VERS vnumber=\"44\">Nevertheless he regarded their distress, When he heard their cry:</VERS>\r\n      <VERS vnumber=\"45\">And he remembered for them his covenant, And repented according to the multitude of his lovingkindnesses.</VERS>\r\n      <VERS vnumber=\"46\">He made them also to be pitied Of all those that carried them captive.</VERS>\r\n      <VERS vnumber=\"47\">Save us, O Jehovah our God, And gather us from among the nations, To give thanks unto thy holy name, And to triumph in thy praise.</VERS>\r\n      <VERS vnumber=\"48\">Blessed be Jehovah, the God of Israel, From everlasting even to everlasting. And let all the people say, Amen. Praise ye Jehovah.          BOOK V      Psalm 107</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"107\">\r\n      <VERS vnumber=\"1\">O give thanks unto Jehovah; For he is good; For his lovingkindness [endureth] for ever.</VERS>\r\n      <VERS vnumber=\"2\">Let the redeemed of Jehovah say [so], Whom he hath redeemed from the hand of the adversary,</VERS>\r\n      <VERS vnumber=\"3\">And gathered out of the lands, From the east and from the west, From the north and from the south.</VERS>\r\n      <VERS vnumber=\"4\">They wandered in the wilderness in a desert way; They found no city of habitation.</VERS>\r\n      <VERS vnumber=\"5\">Hungry and thirsty, Their soul fainted in them.</VERS>\r\n      <VERS vnumber=\"6\">Then they cried unto Jehovah in their trouble, And he delivered them out of their distresses,</VERS>\r\n      <VERS vnumber=\"7\">He led them also by a straight way, That they might go to a city of habitation.</VERS>\r\n      <VERS vnumber=\"8\">Oh that men would praise Jehovah for his lovingkindness, And for his wonderful works to the children of men!</VERS>\r\n      <VERS vnumber=\"9\">For he satisfieth the longing soul, And the hungry soul he filleth with good.</VERS>\r\n      <VERS vnumber=\"10\">Such as sat in darkness and in the shadow of death, Being bound in affliction and iron,</VERS>\r\n      <VERS vnumber=\"11\">Because they rebelled against the words of God, And contemned the counsel of the Most High:</VERS>\r\n      <VERS vnumber=\"12\">Therefore he brought down their heart with labor; They fell down, and there was none to help.</VERS>\r\n      <VERS vnumber=\"13\">Then they cried unto Jehovah in their trouble, And he saved them out of their distresses.</VERS>\r\n      <VERS vnumber=\"14\">He brought them out of darkness and the shadow of death, And brake their bonds in sunder.</VERS>\r\n      <VERS vnumber=\"15\">Oh that men would praise Jehovah for his lovingkindness, And for his wonderful works to the children of men!</VERS>\r\n      <VERS vnumber=\"16\">For he hath broken the gates of brass, And cut the bars of iron in sunder.</VERS>\r\n      <VERS vnumber=\"17\">Fools because of their transgression, And because of their iniquities, are afflicted.</VERS>\r\n      <VERS vnumber=\"18\">Their soul abhorreth all manner of food; And they draw near unto the gates of death.</VERS>\r\n      <VERS vnumber=\"19\">Then they cry unto Jehovah in their trouble, And he saveth them out of their distresses.</VERS>\r\n      <VERS vnumber=\"20\">He sendeth his word, and healeth them, And delivereth [them] from their destructions.</VERS>\r\n      <VERS vnumber=\"21\">Oh that men would praise Jehovah for his lovingkindness, And for his wonderful works to the children of men!</VERS>\r\n      <VERS vnumber=\"22\">And let them offer the sacrifices of thanksgiving, And declare his works with singing.</VERS>\r\n      <VERS vnumber=\"23\">They that go down to the sea in ships, That do business in great waters;</VERS>\r\n      <VERS vnumber=\"24\">These see the works of Jehovah, And his wonders in the deep.</VERS>\r\n      <VERS vnumber=\"25\">For he commandeth, and raiseth the stormy wind, Which lifteth up the waves thereof.</VERS>\r\n      <VERS vnumber=\"26\">They mount up to the heavens, they go down again to the       depths: Their soul melteth away because of trouble.</VERS>\r\n      <VERS vnumber=\"27\">They reel to and fro, and stagger like a drunken man, And are at their wits` end.</VERS>\r\n      <VERS vnumber=\"28\">Then they cry unto Jehovah in their trouble, And he bringeth them out of their distresses.</VERS>\r\n      <VERS vnumber=\"29\">He maketh the storm a calm, So that the waves thereof are still.</VERS>\r\n      <VERS vnumber=\"30\">Then are they glad because they are quiet; So he bringeth them unto their desired haven.</VERS>\r\n      <VERS vnumber=\"31\">Oh that men would praise Jehovah for his lovingkindness, And for his wonderful works to the children of men!</VERS>\r\n      <VERS vnumber=\"32\">Let them exalt him also in the assembly of the people, And praise him in the seat of the elders.</VERS>\r\n      <VERS vnumber=\"33\">He turneth rivers into a wilderness, And watersprings into a thirsty ground;</VERS>\r\n      <VERS vnumber=\"34\">A fruitful land into a salt desert, For the wickedness of them that dwell therein.</VERS>\r\n      <VERS vnumber=\"35\">He turneth a wilderness into a pool of water, And a dry land into watersprings.</VERS>\r\n      <VERS vnumber=\"36\">And there he maketh the hungry to dwell, That they may prepare a city of habitation,</VERS>\r\n      <VERS vnumber=\"37\">And sow fields, and plant vineyards, And get them fruits of increase.</VERS>\r\n      <VERS vnumber=\"38\">He blesseth them also, so that they are multiplied       greatly; And he suffereth not their cattle to decrease.</VERS>\r\n      <VERS vnumber=\"39\">Again, they are diminished and bowed down Through oppression, trouble, and sorrow.</VERS>\r\n      <VERS vnumber=\"40\">He poureth contempt upon princes, And causeth them to wander in the waste, where there is no way.</VERS>\r\n      <VERS vnumber=\"41\">Yet setteth he the needy on high from affliction, And maketh [him] families like a flock.</VERS>\r\n      <VERS vnumber=\"42\">The upright shall see it, and be glad; And all iniquity shall stop her mouth.</VERS>\r\n      <VERS vnumber=\"43\">Whoso is wise will give heed to these things; And they will consider the lovingkindnesses of Jehovah.           Psalm 108       A Song, A Psalm of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"108\">\r\n      <VERS vnumber=\"1\">My heart is fixed, O God; I will sing, yea, I will sing praises, even with my glory.</VERS>\r\n      <VERS vnumber=\"2\">Awake, psaltery and harp: I myself will awake right early.</VERS>\r\n      <VERS vnumber=\"3\">I will give thanks unto thee, O Jehovah, among the       peoples; And I will sing praises unto thee among the nations.</VERS>\r\n      <VERS vnumber=\"4\">For thy lovingkindness is great above the heavens; And thy truth [reacheth] unto the skies.</VERS>\r\n      <VERS vnumber=\"5\">Be thou exalted, O God, above the heavens, And thy glory above all the earth.</VERS>\r\n      <VERS vnumber=\"6\">That thy beloved may be delivered, Save with thy right hand, and answer us.</VERS>\r\n      <VERS vnumber=\"7\">God hath spoken in his holiness: I will exult; I will divide Shechem, and mete out the valley of Succoth.</VERS>\r\n      <VERS vnumber=\"8\">Gilead is mine; Manasseh is mine; Ephraim also is the defence of my head; Judah is my sceptre.</VERS>\r\n      <VERS vnumber=\"9\">Moab is my washpot; Upon Edom will I cast my shoe; Over Philistia will I shout.</VERS>\r\n      <VERS vnumber=\"10\">Who will bring me into the fortified city? Who hath led me unto Edom?</VERS>\r\n      <VERS vnumber=\"11\">Hast not thou cast us off, O God? And thou goest not forth, O God, with our hosts.</VERS>\r\n      <VERS vnumber=\"12\">Give us help against the adversary; For vain is the help of man.</VERS>\r\n      <VERS vnumber=\"13\">Through God we shall do valiantly: For he it is that will tread down our adversaries.           Psalm 109       For the Chief Musicion. A Psalm of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"109\">\r\n      <VERS vnumber=\"1\">Hold not thy peace, O God of my praise;</VERS>\r\n      <VERS vnumber=\"2\">For the mouth of the wicked and the mouth of deceit have       they opened against me: They have spoken unto me with a lying tongue.</VERS>\r\n      <VERS vnumber=\"3\">They have compassed me about also with words of hatred, And fought against me without a cause.</VERS>\r\n      <VERS vnumber=\"4\">For my love they are my adversaries: But I [give myself unto] prayer.</VERS>\r\n      <VERS vnumber=\"5\">And they have rewarded me evil for good, And hatred for my love.</VERS>\r\n      <VERS vnumber=\"6\">Set thou a wicked man over him; And let an adversary stand at his right hand.</VERS>\r\n      <VERS vnumber=\"7\">When he is judged, let him come forth guilty; And let his prayer be turned into sin.</VERS>\r\n      <VERS vnumber=\"8\">Let his days be few; [And] let another take his office.</VERS>\r\n      <VERS vnumber=\"9\">Let his children be fatherless, And his wife a widow.</VERS>\r\n      <VERS vnumber=\"10\">Let his children be vagabonds, and beg; And let them seek [their bread] out of their desolate places.</VERS>\r\n      <VERS vnumber=\"11\">Let the extortioner catch all that he hath; And let strangers make spoil of his labor.</VERS>\r\n      <VERS vnumber=\"12\">Let there be none to extend kindness unto him; Neither let there be any to have pity on his fatherless children.</VERS>\r\n      <VERS vnumber=\"13\">Let his posterity be cut off; In the generation following let their name be blotted out.</VERS>\r\n      <VERS vnumber=\"14\">Let the iniquity of his fathers be remembered with       Jehovah; And let not the sin of his mother be blotted out.</VERS>\r\n      <VERS vnumber=\"15\">Let them be before Jehovah continually, That he may cut off the memory of them from the earth;</VERS>\r\n      <VERS vnumber=\"16\">Because he remembered not to show kindness, But persecuted the poor and needy man, And the broken in heart, to slay [them].</VERS>\r\n      <VERS vnumber=\"17\">Yea, he loved cursing, and it came unto him; And he delighted not in blessing, and it was far from him.</VERS>\r\n      <VERS vnumber=\"18\">He clothed himself also with cursing as with his       garment, And it came into his inward parts like water, And like oil into his bones.</VERS>\r\n      <VERS vnumber=\"19\">Let it be unto him as the raiment wherewith he covereth       himself, And for the girdle wherewith he is girded continually.</VERS>\r\n      <VERS vnumber=\"20\">This is the reward of mine adversaries from Jehovah, And of them that speak evil against my soul.</VERS>\r\n      <VERS vnumber=\"21\">But deal thou with me, O Jehovah the Lord, for thy       name`s sake: Because thy lovingkindness is good, deliver thou me;</VERS>\r\n      <VERS vnumber=\"22\">For I am poor and needy, And my heart is wounded within me.</VERS>\r\n      <VERS vnumber=\"23\">I am gone like the shadow when it declineth: I am tossed up and down as the locust.</VERS>\r\n      <VERS vnumber=\"24\">My knees are weak through fasting; And my flesh faileth of fatness.</VERS>\r\n      <VERS vnumber=\"25\">I am become also a reproach unto them: When they see me, they shake their head.</VERS>\r\n      <VERS vnumber=\"26\">Help me, O Jehovah my God; Oh save me according to thy lovingkindness:</VERS>\r\n      <VERS vnumber=\"27\">That they may know that this is thy hand; [That] thou, Jehovah, hast done it.</VERS>\r\n      <VERS vnumber=\"28\">Let them curse, but bless thou: When they arise, they shall be put to shame, But thy servant shall rejoice.</VERS>\r\n      <VERS vnumber=\"29\">Let mine adversaries be clothed with dishonor, And let them cover themselves with their own shame as with a       robe.</VERS>\r\n      <VERS vnumber=\"30\">I will give great thanks unto Jehovah with my mouth; Yea, I will praise him among the multitude.</VERS>\r\n      <VERS vnumber=\"31\">For he will stand at the right hand of the needy, To save him from them that judge his soul.           Psalm 110       A Psalm of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"110\">\r\n      <VERS vnumber=\"1\">Jehovah saith unto my Lord, Sit thou at my right hand, Until I make thine enemies thy footstool.</VERS>\r\n      <VERS vnumber=\"2\">Jehovah will send forth the rod of thy strength out of       Zion: Rule thou in the midst of thine enemies.</VERS>\r\n      <VERS vnumber=\"3\">Thy people offer themselves willingly  In the day of thy power, in holy array: Out of the womb of the morning Thou hast the dew of thy youth.</VERS>\r\n      <VERS vnumber=\"4\">Jehovah hath sworn, and will not repent: Thou art a priest for ever After the order of Melchizedek.</VERS>\r\n      <VERS vnumber=\"5\">The Lord at thy right hand Will strike through kings in the day of his wrath.</VERS>\r\n      <VERS vnumber=\"6\">He will judge among the nations, He will fill [the places] with dead bodies; He will strike through the head in many countries.</VERS>\r\n      <VERS vnumber=\"7\">He will drink of the brook in the way: Therefore will he lift up the head.           Psalm 111</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"111\">\r\n      <VERS vnumber=\"1\">Praise ye Jehovah. I will give thanks unto Jehovah with my whole heart, In the council of the upright, and in the congregation.</VERS>\r\n      <VERS vnumber=\"2\">The works of Jehovah are great, Sought out of all them that have pleasure therein.</VERS>\r\n      <VERS vnumber=\"3\">His work is honor and majesty; And his righteousness endureth for ever.</VERS>\r\n      <VERS vnumber=\"4\">He hath made his wonderful works to be remembered: Jehovah is gracious and merciful.</VERS>\r\n      <VERS vnumber=\"5\">He hath given food unto them that fear him: He will ever be mindful of his covenant.</VERS>\r\n      <VERS vnumber=\"6\">He hath showed his people the power of his works, In giving them the heritage of the nations.</VERS>\r\n      <VERS vnumber=\"7\">The works of his hands are truth and justice; All his precepts are sure.</VERS>\r\n      <VERS vnumber=\"8\">They are established for ever and ever; They are done in truth and uprightness.</VERS>\r\n      <VERS vnumber=\"9\">He hath sent redemption unto his people; He hath commanded his covenant for ever: Holy and reverend is his name.</VERS>\r\n      <VERS vnumber=\"10\">The fear of Jehovah is the beginning of wisdom; A good understanding have all they that do [his commandments]: His praise endureth for ever.           Psalm 112</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"112\">\r\n      <VERS vnumber=\"1\">Praise ye Jehovah. Blessed is the man that feareth Jehovah, That delighteth greatly in his commandments.</VERS>\r\n      <VERS vnumber=\"2\">His seed shall be mighty upon earth: The generation of the upright shall be blessed.</VERS>\r\n      <VERS vnumber=\"3\">Wealth and riches are in his house; And his righteousness endureth for ever.</VERS>\r\n      <VERS vnumber=\"4\">Unto the upright there ariseth light in the darkness: [He is] gracious, and merciful, and righteous.</VERS>\r\n      <VERS vnumber=\"5\">Well is it with the man that dealeth graciously and       lendeth; He shall maintain his cause in judgment.</VERS>\r\n      <VERS vnumber=\"6\">For he shall never be moved; The righteous shall be had in everlasting remembrance.</VERS>\r\n      <VERS vnumber=\"7\">He shall not be afraid of evil tidings: His heart is fixed, trusting in Jehovah.</VERS>\r\n      <VERS vnumber=\"8\">His heart is established, he shall not be afraid, Until he see [his desire] upon his adversaries.</VERS>\r\n      <VERS vnumber=\"9\">He hath dispersed, he hath given to the needy; His righteousness endureth for ever: His horn shall be exalted with honor.</VERS>\r\n      <VERS vnumber=\"10\">The wicked shall see it, and be grieved; He shall gnash with his teeth, and melt away: The desire of the wicked shall perish.           Psalm 113</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"113\">\r\n      <VERS vnumber=\"1\">Praise ye Jehovah. Praise, O ye servants of Jehovah, Praise the name of Jehovah.</VERS>\r\n      <VERS vnumber=\"2\">Blessed be the name of Jehovah From this time forth and for evermore.</VERS>\r\n      <VERS vnumber=\"3\">From the rising of the sun unto the going down of the       same Jehovah`s name is to be praised.</VERS>\r\n      <VERS vnumber=\"4\">Jehovah is high above all nations, And his glory above the heavens.</VERS>\r\n      <VERS vnumber=\"5\">Who is like unto Jehovah our God, That hath his seat on high,</VERS>\r\n      <VERS vnumber=\"6\">That humbleth himself to behold [The things that are] in heaven and in the earth?</VERS>\r\n      <VERS vnumber=\"7\">He raiseth up the poor out of the dust, And lifteth up the needy from the dunghill;</VERS>\r\n      <VERS vnumber=\"8\">That he may set him with princes, Even with the princes of his people.</VERS>\r\n      <VERS vnumber=\"9\">He maketh the barren woman to keep house, [And to be] a joyful mother of children. Praise ye Jehovah.           Psalm 114</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"114\">\r\n      <VERS vnumber=\"1\">When Israel went forth out of Egypt, The house of Jacob from a people of strange language;</VERS>\r\n      <VERS vnumber=\"2\">Judah became his sanctuary, Israel his dominion.</VERS>\r\n      <VERS vnumber=\"3\">The sea saw it, and fled; The Jordan was driven back.</VERS>\r\n      <VERS vnumber=\"4\">The mountains skipped like rams, The little hills like lambs.</VERS>\r\n      <VERS vnumber=\"5\">What aileth thee, O thou sea, that thou fleest? Thou Jordan, that thou turnest back?</VERS>\r\n      <VERS vnumber=\"6\">Ye mountains, that ye skip like rams; Ye little hills, like lambs?</VERS>\r\n      <VERS vnumber=\"7\">Tremble, thou earth, at the presence of the Lord, At the presence of the God of Jacob,</VERS>\r\n      <VERS vnumber=\"8\">Who turned the rock into a pool of water, The flint into a fountain of waters.           Psalm 115</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"115\">\r\n      <VERS vnumber=\"1\">Not unto us, O Jehovah, not unto us, But unto thy name give glory, For thy lovingkindness, and for thy truth`s sake.</VERS>\r\n      <VERS vnumber=\"2\">Wherefore should the nations say, Where is now their God?</VERS>\r\n      <VERS vnumber=\"3\">But our God is in the heavens: He hath done whatsoever he pleased.</VERS>\r\n      <VERS vnumber=\"4\">Their idols are silver and gold, The work of men`s hands.</VERS>\r\n      <VERS vnumber=\"5\">They have mouths, but they speak not; Eyes have they, but they see not;</VERS>\r\n      <VERS vnumber=\"6\">They have ears, but they hear not; Noses have they, but they smell not;</VERS>\r\n      <VERS vnumber=\"7\">They have hands, but they handle not; Feet have they, but they walk not; Neither speak they through their throat.</VERS>\r\n      <VERS vnumber=\"8\">They that make them shall be like unto them; Yea, every one that trusteth in them.</VERS>\r\n      <VERS vnumber=\"9\">O Israel, trust thou in Jehovah: He is their help and their shield.</VERS>\r\n      <VERS vnumber=\"10\">O house of Aaron, trust ye in Jehovah: He is their help and their shield.</VERS>\r\n      <VERS vnumber=\"11\">Ye that fear Jehovah, trust in Jehovah: He is their help and their shield.</VERS>\r\n      <VERS vnumber=\"12\">Jehovah hath been mindful of us; he will bless [us]: He will bless the house of Israel; He will bless the house of Aaron.</VERS>\r\n      <VERS vnumber=\"13\">He will bless them that fear Jehovah, Both small and great.</VERS>\r\n      <VERS vnumber=\"14\">Jehovah increase you more and more, You and your children.</VERS>\r\n      <VERS vnumber=\"15\">Blessed are ye of Jehovah, Who made heaven and earth.</VERS>\r\n      <VERS vnumber=\"16\">The heavens are the heavens of Jehovah; But the earth hath he given to the children of men.</VERS>\r\n      <VERS vnumber=\"17\">The dead praise not Jehovah, Neither any that go down into silence;</VERS>\r\n      <VERS vnumber=\"18\">But we will bless Jehovah From this time forth and for evermore. Praise ye Jehovah.           Psalm 116</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"116\">\r\n      <VERS vnumber=\"1\">I love Jehovah, because he heareth My voice and my supplications.</VERS>\r\n      <VERS vnumber=\"2\">Because he hath inclined his ear unto me, Therefore will I call [upon him] as long as I live.</VERS>\r\n      <VERS vnumber=\"3\">The cords of death compassed me, And the pains of Sheol gat hold upon me: I found trouble and sorrow.</VERS>\r\n      <VERS vnumber=\"4\">Then called I upon the name of Jehovah: O Jehovah, I beseech thee, deliver my soul.</VERS>\r\n      <VERS vnumber=\"5\">Gracious is Jehovah, and righteous; Yea, our God is merciful.</VERS>\r\n      <VERS vnumber=\"6\">Jehovah preserveth the simple: I was brought low, and he saved me.</VERS>\r\n      <VERS vnumber=\"7\">Return unto thy rest, O my soul; For Jehovah hath dealt bountifully with thee.</VERS>\r\n      <VERS vnumber=\"8\">For thou hast delivered my soul from death, Mine eyes from tears, [And] my feet from falling.</VERS>\r\n      <VERS vnumber=\"9\">I will walk before Jehovah In the land of the living.</VERS>\r\n      <VERS vnumber=\"10\">I believe, for I will speak: I was greatly afflicted:</VERS>\r\n      <VERS vnumber=\"11\">I said in my haste, All men are liars.</VERS>\r\n      <VERS vnumber=\"12\">What shall I render unto Jehovah For all his benefits toward me?</VERS>\r\n      <VERS vnumber=\"13\">I will take the cup of salvation, And call upon the name of Jehovah.</VERS>\r\n      <VERS vnumber=\"14\">I will pay my vows unto Jehovah, Yea, in the presence of all his people.</VERS>\r\n      <VERS vnumber=\"15\">Precious in the sight of Jehovah Is the death of his saints.</VERS>\r\n      <VERS vnumber=\"16\">O Jehovah, truly I am thy servant: I am thy servant, the son of thy handmaid; Thou hast loosed my bonds.</VERS>\r\n      <VERS vnumber=\"17\">I will offer to thee the sacrifice of thanksgiving, And will call upon the name of Jehovah.</VERS>\r\n      <VERS vnumber=\"18\">I will pay my vows unto Jehovah, Yea, in the presence of all his people,</VERS>\r\n      <VERS vnumber=\"19\">In the courts of Jehovah`s house, In the midst of thee, O Jerusalem. Praise ye Jehovah.           Psalm 117</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"117\">\r\n      <VERS vnumber=\"1\">O praise Jehovah, all ye nations; Laud him, all ye peoples.</VERS>\r\n      <VERS vnumber=\"2\">For his lovingkindness is great toward us; And the truth of Jehovah [endureth] for ever. Praise ye Jehovah.           Psalm 118</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"118\">\r\n      <VERS vnumber=\"1\">Oh give thanks unto Jehovah; for he is good; For his lovingkindness [endureth] for ever.</VERS>\r\n      <VERS vnumber=\"2\">Let Israel now say, That his lovingkindness [endureth] for ever.</VERS>\r\n      <VERS vnumber=\"3\">Let the house of Aaron now say, That his lovingkindness [endureth] for ever.</VERS>\r\n      <VERS vnumber=\"4\">Let them now that fear Jehovah say, That his lovingkindness [endureth] for ever.</VERS>\r\n      <VERS vnumber=\"5\">Out of my distress I called upon Jehovah: Jehovah answered me [and set me] in a large place.</VERS>\r\n      <VERS vnumber=\"6\">Jehovah is on my side; I will not fear: What can man do unto me?</VERS>\r\n      <VERS vnumber=\"7\">Jehovah is on my side among them that help me: Therefore shall I see [my desire] upon them that hate me.</VERS>\r\n      <VERS vnumber=\"8\">It is better to take refuge in Jehovah Than to put confidence in man.</VERS>\r\n      <VERS vnumber=\"9\">It is better to take refuge in Jehovah Than to put confidence in princes.</VERS>\r\n      <VERS vnumber=\"10\">All nations compassed me about: In the name of Jehovah I will cut them off.</VERS>\r\n      <VERS vnumber=\"11\">They compassed me about; yea, they compassed me about: In the name of Jehovah I will cut them off.</VERS>\r\n      <VERS vnumber=\"12\">They compassed me about like bees; They are quenched as the fire of thorns: In the name of Jehovah I will cut them off.</VERS>\r\n      <VERS vnumber=\"13\">Thou didst thrust sore at me that I might fall; But Jehovah helped me.</VERS>\r\n      <VERS vnumber=\"14\">Jehovah is my strength and song; And he is become my salvation.</VERS>\r\n      <VERS vnumber=\"15\">The voice of rejoicing and salvation is in the tents of       the righteous: The right hand of Jehovah doeth valiantly.</VERS>\r\n      <VERS vnumber=\"16\">The right hand of Jehovah is exalted: The right hand of Jehovah doeth valiantly.</VERS>\r\n      <VERS vnumber=\"17\">I shall not die, but live, And declare the works of Jehovah.</VERS>\r\n      <VERS vnumber=\"18\">Jehovah hath chastened me sore; But he hath not given me over unto death.</VERS>\r\n      <VERS vnumber=\"19\">Open to me the gates of righteousness: I will enter into them, I will give thanks unto Jehovah.</VERS>\r\n      <VERS vnumber=\"20\">This is the gate of Jehovah; The righteous shall enter into it.</VERS>\r\n      <VERS vnumber=\"21\">I will give thanks unto thee; for thou hast answered me, And art become my salvation.</VERS>\r\n      <VERS vnumber=\"22\">The stone which the builders rejected Is become the       head of the corner.</VERS>\r\n      <VERS vnumber=\"23\">This is Jehovah`s doing; It is marvellous in our eyes.</VERS>\r\n      <VERS vnumber=\"24\">This is the day which Jehovah hath made; We will rejoice and be glad in it.</VERS>\r\n      <VERS vnumber=\"25\">Save now, we beseech thee, O Jehovah: O Jehovah, we beseech thee, send now prosperity.</VERS>\r\n      <VERS vnumber=\"26\">Blessed be he that cometh in the name of Jehovah: We have blessed you out of the house of Jehovah.</VERS>\r\n      <VERS vnumber=\"27\">Jehovah is God, and he hath given us light: Bind the sacrifice with cords, even unto the horns of the altar.</VERS>\r\n      <VERS vnumber=\"28\">Thou art my God, and I will give thanks unto thee: Thou art my God, I will exalt thee.</VERS>\r\n      <VERS vnumber=\"29\">Oh give thanks unto Jehovah; for he is good; For his lovingkindness [endureth] for ever.           Psalm 119            ALEPH.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"119\">\r\n      <VERS vnumber=\"1\">Blessed are they that are perfect in the way, Who walk in the law of Jehovah.</VERS>\r\n      <VERS vnumber=\"2\">Blessed are they that keep his testimonies, That seek him with the whole heart.</VERS>\r\n      <VERS vnumber=\"3\">Yea, they do no unrighteousness; They walk in his ways.</VERS>\r\n      <VERS vnumber=\"4\">Thou hast commanded [us] thy precepts, That we should observe them diligently.</VERS>\r\n      <VERS vnumber=\"5\">Oh that my ways were established To observe thy statutes!</VERS>\r\n      <VERS vnumber=\"6\">Then shall I not be put to shame, When I have respect unto all thy commandments.</VERS>\r\n      <VERS vnumber=\"7\">I will give thanks unto thee with uprightness of heart, When I learn thy righteous judgments.</VERS>\r\n      <VERS vnumber=\"8\">I will observe thy statutes: Oh forsake me not utterly.          BETH.</VERS>\r\n      <VERS vnumber=\"9\">Wherewith shall a young man cleanse his way? By taking heed [thereto] according to thy word.</VERS>\r\n      <VERS vnumber=\"10\">With my whole heart have I sought thee: Oh let me not wander from thy commandments.</VERS>\r\n      <VERS vnumber=\"11\">Thy word have I laid up in my heart, That I might not sin against thee.</VERS>\r\n      <VERS vnumber=\"12\">Blessed art thou, O Jehovah: Teach me thy statutes.</VERS>\r\n      <VERS vnumber=\"13\">With my lips have I declared All the ordinances of thy mouth.</VERS>\r\n      <VERS vnumber=\"14\">I have rejoiced in the way of thy testimonies, As much as in all riches.</VERS>\r\n      <VERS vnumber=\"15\">I will meditate on thy precepts, And have respect unto thy ways.</VERS>\r\n      <VERS vnumber=\"16\">I will delight myself in thy statutes: I will not forget thy word.          GIMEL.</VERS>\r\n      <VERS vnumber=\"17\">Deal bountifully with thy servant, that I may live; So will I observe thy word.</VERS>\r\n      <VERS vnumber=\"18\">Open thou mine eyes, that I may behold Wondrous things out of thy law.</VERS>\r\n      <VERS vnumber=\"19\">I am a sojourner in the earth: Hide not thy commandments from me.</VERS>\r\n      <VERS vnumber=\"20\">My soul breaketh for the longing That it hath unto thine ordinances at all times.</VERS>\r\n      <VERS vnumber=\"21\">Thou hast rebuked the proud that are cursed, That do wander from thy commandments.</VERS>\r\n      <VERS vnumber=\"22\">Take away from me reproach and contempt; For I have kept thy testimonies.</VERS>\r\n      <VERS vnumber=\"23\">Princes also sat and talked against me; [But] thy servant did meditate on thy statutes.</VERS>\r\n      <VERS vnumber=\"24\">Thy testimonies also are my delight [And] my counsellors.          DALETH.</VERS>\r\n      <VERS vnumber=\"25\">My soul cleaveth unto the dust: Quicken thou me according to thy word.</VERS>\r\n      <VERS vnumber=\"26\">I declared my ways, and thou answeredst me: Teach me thy statutes.</VERS>\r\n      <VERS vnumber=\"27\">Make me to understand the way of thy precepts: So shall I meditate on thy wondrous works.</VERS>\r\n      <VERS vnumber=\"28\">My soul melteth for heaviness: Strengthen thou me according unto thy word.</VERS>\r\n      <VERS vnumber=\"29\">Remove from me the way of falsehood; And grant me thy law graciously.</VERS>\r\n      <VERS vnumber=\"30\">I have chosen the way of faithfulness: Thine ordinances have I set [before me].</VERS>\r\n      <VERS vnumber=\"31\">I cleave unto thy testimonies: O Jehovah, put me not to shame.</VERS>\r\n      <VERS vnumber=\"32\">I will run the way of thy commandments, When thou shalt enlarge my heart.          HE.</VERS>\r\n      <VERS vnumber=\"33\">Teach me, O Jehovah, the way of thy statutes; And I shall keep it unto the end.</VERS>\r\n      <VERS vnumber=\"34\">Give me understanding, and I shall keep thy law; Yea, I shall observe it with my whole heart.</VERS>\r\n      <VERS vnumber=\"35\">Make me to go in the path of thy commandments; For therein do I delight.</VERS>\r\n      <VERS vnumber=\"36\">Incline my heart unto thy testimonies, And not to covetousness.</VERS>\r\n      <VERS vnumber=\"37\">Turn away mine eyes from beholding vanity, And quicken me in thy ways.</VERS>\r\n      <VERS vnumber=\"38\">Confirm unto thy servant thy word, Which [is in order] unto the fear of thee.</VERS>\r\n      <VERS vnumber=\"39\">Turn away my reproach whereof I am afraid; For thine ordinances are good.</VERS>\r\n      <VERS vnumber=\"40\">Behold, I have longed after thy precepts: Quicken me in thy righteousness.          VAV.</VERS>\r\n      <VERS vnumber=\"41\">Let thy lovingkindnesses also come unto me, O Jehovah, Even thy salvation, according to thy word.</VERS>\r\n      <VERS vnumber=\"42\">So shall I have an answer for him that reproacheth me; For I trust in thy word.</VERS>\r\n      <VERS vnumber=\"43\">And take not the word of truth utterly out of my mouth; For I have hoped in thine ordinances.</VERS>\r\n      <VERS vnumber=\"44\">So shall I observe thy law continually For ever and ever.</VERS>\r\n      <VERS vnumber=\"45\">And I shall walk at liberty; For I have sought thy precepts.</VERS>\r\n      <VERS vnumber=\"46\">I will also speak of thy testimonies before kings, And shall not be put to shame.</VERS>\r\n      <VERS vnumber=\"47\">And I will delight myself in thy commandments, Which I have loved.</VERS>\r\n      <VERS vnumber=\"48\">I will lift up my hands also unto thy commandments,       which I have loved; And I will meditate on thy statutes.          ZAYIN.</VERS>\r\n      <VERS vnumber=\"49\">Remember the word unto thy servant, Because thou hast made me to hope.</VERS>\r\n      <VERS vnumber=\"50\">This is my comfort in my affliction; For thy word hath quickened me.</VERS>\r\n      <VERS vnumber=\"51\">The proud have had me greatly in derision: [Yet] have I not swerved from thy law.</VERS>\r\n      <VERS vnumber=\"52\">I have remembered thine ordinances of old, O Jehovah, And have comforted myself.</VERS>\r\n      <VERS vnumber=\"53\">Hot indignation hath taken hold upon me, Because of the wicked that forsake thy law.</VERS>\r\n      <VERS vnumber=\"54\">Thy statutes have been my songs In the house of my pilgrimage.</VERS>\r\n      <VERS vnumber=\"55\">I have remembered thy name, O Jehovah, in the night, And have observed thy law.</VERS>\r\n      <VERS vnumber=\"56\">This I have had, Because I have kept thy precepts.      HHETH.</VERS>\r\n      <VERS vnumber=\"57\">Jehovah is my portion: I have said that I would observe thy words.</VERS>\r\n      <VERS vnumber=\"58\">I entreated thy favor with my whole heart: Be merciful unto me according to thy word.</VERS>\r\n      <VERS vnumber=\"59\">I thought on my ways, And turned my feet unto thy testimonies.</VERS>\r\n      <VERS vnumber=\"60\">I made haste, and delayed not, To observe thy commandments.</VERS>\r\n      <VERS vnumber=\"61\">The cords of the wicked have wrapped me round; [But] I have not forgotten thy law.</VERS>\r\n      <VERS vnumber=\"62\">At midnight I will rise to give thanks unto thee Because of thy righteous ordinances.</VERS>\r\n      <VERS vnumber=\"63\">I am a companion of all them that fear thee, And of them that observe thy precepts.</VERS>\r\n      <VERS vnumber=\"64\">The earth, O Jehovah, is full of thy lovingkindness: Teach me thy statutes.      TETH.</VERS>\r\n      <VERS vnumber=\"65\">Thou hast dealt well with thy servant, O Jehovah, according unto thy word.</VERS>\r\n      <VERS vnumber=\"66\">Teach me good judgment and knowledge; For I have believed in thy commandments.</VERS>\r\n      <VERS vnumber=\"67\">Before I was afflicted I went astray; But now I observe thy word.</VERS>\r\n      <VERS vnumber=\"68\">Thou art good, and doest good; Teach me thy statutes.</VERS>\r\n      <VERS vnumber=\"69\">The proud have forged a lie against me: With my whole heart will I keep thy precepts.</VERS>\r\n      <VERS vnumber=\"70\">Their heart is as fat as grease; But I delight in thy law.</VERS>\r\n      <VERS vnumber=\"71\">It is good for me that I have been afflicted; That I may learn thy statutes.</VERS>\r\n      <VERS vnumber=\"72\">The law of thy mouth is better unto me Than thousands of gold and silver.      YODH.</VERS>\r\n      <VERS vnumber=\"73\">Thy hands have made me and fashioned me: Give me understanding, that I may learn thy commandments.</VERS>\r\n      <VERS vnumber=\"74\">They that fear thee shall see me and be glad, Because I have hoped in thy word.</VERS>\r\n      <VERS vnumber=\"75\">I know, O Jehovah, that thy judgments are righteous, And that in faithfulness thou hast afflicted me.</VERS>\r\n      <VERS vnumber=\"76\">Let, I pray thee, thy lovingkindness be for my comfort, According to thy word unto thy servant.</VERS>\r\n      <VERS vnumber=\"77\">Let thy tender mercies come unto me, that I may live; For thy law is my delight.</VERS>\r\n      <VERS vnumber=\"78\">Let the proud be put to shame; For they have overthrown me wrongfully: [But] I will meditate on thy precepts.</VERS>\r\n      <VERS vnumber=\"79\">Let those that fear thee turn unto me; And they shall know thy testimonies.</VERS>\r\n      <VERS vnumber=\"80\">Let my heart be perfect in thy statutes, That I be not put to shame.      KAPH.</VERS>\r\n      <VERS vnumber=\"81\">My soul fainteth for thy salvation; [But] I hope in thy word.</VERS>\r\n      <VERS vnumber=\"82\">Mine eyes fail for thy word, While I say, When wilt thou comfort me?</VERS>\r\n      <VERS vnumber=\"83\">For I am become like a wine-skin in the smoke; Yet do I not forget thy statutes.</VERS>\r\n      <VERS vnumber=\"84\">How many are the days of thy servant? When wilt thou execute judgment on them that persecute me?</VERS>\r\n      <VERS vnumber=\"85\">The proud have digged pits for me, Who are not according to thy law.</VERS>\r\n      <VERS vnumber=\"86\">All thy commandments are faithful: They persecute me wrongfully; help thou me.</VERS>\r\n      <VERS vnumber=\"87\">They had almost consumed me upon earth; But I forsook not thy precepts.      LAMEDH.</VERS>\r\n      <VERS vnumber=\"88\">Quicken me after thy lovingkindness; So shall I observe the testimony of thy mouth.</VERS>\r\n      <VERS vnumber=\"89\">For ever, O Jehovah, Thy word is settled in heaven.</VERS>\r\n      <VERS vnumber=\"90\">Thy faithfulness is unto all generations: Thou hast established the earth, and it abideth.</VERS>\r\n      <VERS vnumber=\"91\">They abide this day according to thine ordinances; For all things are thy servants.</VERS>\r\n      <VERS vnumber=\"92\">Unless thy law had been my delight, I should then have perished in mine affliction.</VERS>\r\n      <VERS vnumber=\"93\">I will never forget thy precepts; For with them thou hast quickened me.</VERS>\r\n      <VERS vnumber=\"94\">I am thine, save me; For I have sought thy precepts.</VERS>\r\n      <VERS vnumber=\"95\">The wicked have waited for me, to destroy me; [But] I will consider thy testimonies.      MEM.</VERS>\r\n      <VERS vnumber=\"96\">I have seen an end of all perfection; [But] thy commandment is exceeding broad.</VERS>\r\n      <VERS vnumber=\"97\">Oh how love I thy law! It is my meditation all the day.</VERS>\r\n      <VERS vnumber=\"98\">Thy commandments make me wiser than mine enemies; For they are ever with me.</VERS>\r\n      <VERS vnumber=\"99\">I have more understanding than all my teachers; For thy testimonies are my meditation.</VERS>\r\n      <VERS vnumber=\"100\">I understand more than the aged, Because I have kept thy precepts.</VERS>\r\n      <VERS vnumber=\"101\">I have refrained my feet from every evil way, That I might observe thy word.</VERS>\r\n      <VERS vnumber=\"102\">I have not turned aside from thine ordinances; For thou hast taught me.</VERS>\r\n      <VERS vnumber=\"103\">How sweet are thy words unto my taste! [Yea, sweeter] than honey to my mouth!</VERS>\r\n      <VERS vnumber=\"104\">Through thy precepts I get understanding: Therefore I hate every false way.      NUN.</VERS>\r\n      <VERS vnumber=\"105\">Thy word is a lamp unto my feet, And light unto my path.</VERS>\r\n      <VERS vnumber=\"106\">I have sworn, and have confirmed it, That I will observe thy righteous ordinances.</VERS>\r\n      <VERS vnumber=\"107\">I am afflicted very much: Quicken me, O Jehovah, according unto thy word.</VERS>\r\n      <VERS vnumber=\"108\">Accept, I beseech thee, the freewill-offerings of my       mouth, O Jehovah, And teach me thine ordinances.</VERS>\r\n      <VERS vnumber=\"109\">My soul is continually in my hand; Yet do I not forget thy law.</VERS>\r\n      <VERS vnumber=\"110\">The wicked have laid a snare for me; Yet have I not gone astray from thy precepts.</VERS>\r\n      <VERS vnumber=\"111\">Thy testimonies have I taken as a heritage for ever; For they are the rejoicing of my heart.</VERS>\r\n      <VERS vnumber=\"112\">I have inclined my heart to perform thy statutes For ever, even unto the end.      SAMEKH.</VERS>\r\n      <VERS vnumber=\"113\">I hate them that are of a double mind; But thy law do I love.</VERS>\r\n      <VERS vnumber=\"114\">Thou art my hiding-place and my shield: I hope in thy word.</VERS>\r\n      <VERS vnumber=\"115\">Depart from me, ye evil-doers, That I may keep the commandments of my God.</VERS>\r\n      <VERS vnumber=\"116\">Uphold me according unto thy word, that I may live; And let me not be ashamed of my hope.</VERS>\r\n      <VERS vnumber=\"117\">Hold thou me up, and I shall be safe, And shall have respect unto thy statutes continually.</VERS>\r\n      <VERS vnumber=\"118\">Thou hast set at nought all them that err from thy       statutes; For their deceit is falsehood.</VERS>\r\n      <VERS vnumber=\"119\">Thou puttest away all the wicked of the earth like       dross: Therefore I love thy testimonies.</VERS>\r\n      <VERS vnumber=\"120\">My flesh trembleth for fear of thee; And I am afraid of thy judgments.      AYIN.</VERS>\r\n      <VERS vnumber=\"121\">I have done justice and righteousness: Leave me not to mine oppressors.</VERS>\r\n      <VERS vnumber=\"122\">Be surety for thy servant for good: Let not the proud oppress me.</VERS>\r\n      <VERS vnumber=\"123\">Mine eyes fail for thy salvation, And for thy righteous word.</VERS>\r\n      <VERS vnumber=\"124\">Deal with thy servant according unto thy       lovingkindness, And teach me thy statutes.</VERS>\r\n      <VERS vnumber=\"125\">I am thy servant; give me understanding, That I may know thy testimonies.</VERS>\r\n      <VERS vnumber=\"126\">It is time for Jehovah to work; [For] they have made void thy law.</VERS>\r\n      <VERS vnumber=\"127\">Therefore I love thy commandments Above gold, yea, above fine gold.</VERS>\r\n      <VERS vnumber=\"128\">Therefore I esteem all [thy] precepts concerning all       [things] to be right; [And] I hate every false way.      PE.</VERS>\r\n      <VERS vnumber=\"129\">Thy testimonies are wonderful; Therefore doth my soul keep them.</VERS>\r\n      <VERS vnumber=\"130\">The opening of thy words giveth light; It giveth understanding unto the simple.</VERS>\r\n      <VERS vnumber=\"131\">I opened wide my mouth, and panted; For I longed for thy commandments.</VERS>\r\n      <VERS vnumber=\"132\">Turn thee unto me, and have mercy upon me, As thou usest to do unto those that love thy name.</VERS>\r\n      <VERS vnumber=\"133\">Establish my footsteps in thy word; And let not any iniquity have dominion over me.</VERS>\r\n      <VERS vnumber=\"134\">Redeem me from the oppression of man: So will I observe thy precepts.</VERS>\r\n      <VERS vnumber=\"135\">Make thy face to shine upon thy servant; And teach me thy statutes.</VERS>\r\n      <VERS vnumber=\"136\">Streams of water run down mine eyes, Because they observe not thy law.      TSADHE.</VERS>\r\n      <VERS vnumber=\"137\">Righteous art thou, O Jehovah, And upright are thy judgments.</VERS>\r\n      <VERS vnumber=\"138\">Thou hast commanded thy testimonies in righteousness And very faithfulness.</VERS>\r\n      <VERS vnumber=\"139\">My zeal hath consumed me, Because mine adversaries have forgotten thy words.</VERS>\r\n      <VERS vnumber=\"140\">Thy word is very pure; Therefore thy servant loveth it.</VERS>\r\n      <VERS vnumber=\"141\">I am small and despised; [Yet] do I not forget thy precepts.</VERS>\r\n      <VERS vnumber=\"142\">Thy righteousness is an everlasting righteousness, And thy law is truth.</VERS>\r\n      <VERS vnumber=\"143\">Trouble and anguish have taken hold on me; [Yet] thy commandments are my delight.</VERS>\r\n      <VERS vnumber=\"144\">Thy testimonies are righteous for ever: Give me understanding, and I shall live.      QOPH.</VERS>\r\n      <VERS vnumber=\"145\">I have called with my whole heart; answer me, O       Jehovah: I will keep thy statutes.</VERS>\r\n      <VERS vnumber=\"146\">I have called unto thee; save me, And I shall observe thy testimonies.</VERS>\r\n      <VERS vnumber=\"147\">I anticipated the dawning of the morning, and cried: I hoped in thy words.</VERS>\r\n      <VERS vnumber=\"148\">Mine eyes anticipated the night-watches, That I might meditate on thy word.</VERS>\r\n      <VERS vnumber=\"149\">Hear my voice according unto thy lovingkindness: Quicken me, O Jehovah, according to thine ordinances.</VERS>\r\n      <VERS vnumber=\"150\">They draw nigh that follow after wickedness; They are far from thy law.</VERS>\r\n      <VERS vnumber=\"151\">Thou art nigh, O Jehovah; And all thy commandments are truth.</VERS>\r\n      <VERS vnumber=\"152\">Of old have I known from thy testimonies, That thou hast founded them for ever.      RESH.</VERS>\r\n      <VERS vnumber=\"153\">Consider mine affliction, and deliver me; For I do not forget thy law.</VERS>\r\n      <VERS vnumber=\"154\">Plead thou my cause, and redeem me: Quicken me according to thy word.</VERS>\r\n      <VERS vnumber=\"155\">Salvation is far from the wicked; For they seek not thy statutes.</VERS>\r\n      <VERS vnumber=\"156\">Great are thy tender mercies, O Jehovah: Quicken me according to thine ordinances.</VERS>\r\n      <VERS vnumber=\"157\">Many are my persecutors and mine adversaries; [Yet] have I not swerved from thy testimonies.</VERS>\r\n      <VERS vnumber=\"158\">I beheld the treacherous, and was grieved, Because they observe not thy word.</VERS>\r\n      <VERS vnumber=\"159\">Consider how I love thy precepts: Quicken me, O Jehovah, according to thy lovingkindness.</VERS>\r\n      <VERS vnumber=\"160\">The sum of thy word is truth; And every one of thy righteous ordinances [endureth] for ever.      SHIN.</VERS>\r\n      <VERS vnumber=\"161\">Princes have persecuted me without a cause; But my heart standeth in awe of thy words.</VERS>\r\n      <VERS vnumber=\"162\">I rejoice at thy word, As one that findeth great spoil.</VERS>\r\n      <VERS vnumber=\"163\">I hate and abhor falsehood; [But] thy law do I love.</VERS>\r\n      <VERS vnumber=\"164\">Seven times a day do I praise thee, Because of thy righteous ordinances.</VERS>\r\n      <VERS vnumber=\"165\">Great peace have they that love thy law; And they have no occasion of stumbling.</VERS>\r\n      <VERS vnumber=\"166\">I have hoped for thy salvation, O Jehovah, And have done thy commandments.</VERS>\r\n      <VERS vnumber=\"167\">My soul hath observed thy testimonies; And I love them exceedingly.</VERS>\r\n      <VERS vnumber=\"168\">I have observed thy precepts and thy testimonies; For all my ways are before thee.      TAV.</VERS>\r\n      <VERS vnumber=\"169\">Let my cry come near before thee, O Jehovah: Give me understanding according to thy word.</VERS>\r\n      <VERS vnumber=\"170\">Let my supplication come before thee: Deliver me according to thy word.</VERS>\r\n      <VERS vnumber=\"171\">Let my lips utter praise; For thou teachest me thy statutes.</VERS>\r\n      <VERS vnumber=\"172\">Let my tongue sing of thy word; For all thy commandments are righteousness.</VERS>\r\n      <VERS vnumber=\"173\">Let thy hand be ready to help me; For I have chosen thy precepts.</VERS>\r\n      <VERS vnumber=\"174\">I have longed for thy salvation, O Jehovah; And thy law is my delight.</VERS>\r\n      <VERS vnumber=\"175\">Let my soul live, and it shall praise thee; And let thine ordinances help me.</VERS>\r\n      <VERS vnumber=\"176\">I have gone astray like a lost sheep; Seek thy servant; For I do not forget thy commandments.       Psalm 120       A Song of Ascents.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"120\">\r\n      <VERS vnumber=\"1\">In my distress I cried unto Jehovah, And he answered me.</VERS>\r\n      <VERS vnumber=\"2\">Deliver my soul, O Jehovah, from lying lips, [And] from a deceitful tongue.</VERS>\r\n      <VERS vnumber=\"3\">What shall be given unto thee, and what shall be done       more unto thee, Thou deceitful tongue?</VERS>\r\n      <VERS vnumber=\"4\">Sharp arrows of the mighty, With coals of juniper.</VERS>\r\n      <VERS vnumber=\"5\">Woe is me, that I sojourn in Meshech, That I dwell among the tents of Kedar!</VERS>\r\n      <VERS vnumber=\"6\">My soul hath long had her dwelling With him that hateth peace.</VERS>\r\n      <VERS vnumber=\"7\">I am [for] peace: But when I speak, they are for war.           Psalm 121       A Song of Ascents.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"121\">\r\n      <VERS vnumber=\"1\">I will lift up mine eyes unto the mountains: From whence shall my help come?</VERS>\r\n      <VERS vnumber=\"2\">My help [cometh] from Jehovah, Who made heaven and earth.</VERS>\r\n      <VERS vnumber=\"3\">He will not suffer thy foot to be moved: He that keepeth thee will not slumber.</VERS>\r\n      <VERS vnumber=\"4\">Behold, he that keepeth Israel Will neither slumber nor sleep.</VERS>\r\n      <VERS vnumber=\"5\">Jehovah is thy keeper: Jehovah is thy shade upon thy right hand.</VERS>\r\n      <VERS vnumber=\"6\">The sun shall not smite thee by day, Nor the moon by night.</VERS>\r\n      <VERS vnumber=\"7\">Jehovah will keep thee from all evil; He will keep thy soul.</VERS>\r\n      <VERS vnumber=\"8\">Jehovah will keep thy going out and thy coming in From this time forth and for evermore.           Psalm 122       A Song of Ascents; of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"122\">\r\n      <VERS vnumber=\"1\">I was glad when they said unto me, Let us go unto the house of Jehovah.</VERS>\r\n      <VERS vnumber=\"2\">Our feet are standing Within thy gates, O Jerusalem,</VERS>\r\n      <VERS vnumber=\"3\">Jerusalem, that art builded As a city that is compact together;</VERS>\r\n      <VERS vnumber=\"4\">Whither the tribes go up, even the tribes of Jehovah, [For] an ordinance for Israel, To give thanks unto the name of Jehovah.</VERS>\r\n      <VERS vnumber=\"5\">For there are set thrones for judgment, The thrones of the house of David.</VERS>\r\n      <VERS vnumber=\"6\">Pray for the peace of Jerusalem: They shall prosper that love thee.</VERS>\r\n      <VERS vnumber=\"7\">Peace be within thy walls, And prosperity within thy palaces.</VERS>\r\n      <VERS vnumber=\"8\">For my brethren and companions` sakes, I will now say, Peace be within thee.</VERS>\r\n      <VERS vnumber=\"9\">For the sake of the house of Jehovah our God I will seek thy good.           Psalm 123       A Song of Ascents.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"123\">\r\n      <VERS vnumber=\"1\">Unto thee do I lift up mine eyes, O thou that sittest in the heavens.</VERS>\r\n      <VERS vnumber=\"2\">Behold, as the eyes of servants [look] unto the hand of       their master, As the eyes of a maid unto the hand of her mistress; So our eyes [look] unto Jehovah our God, Until he have mercy upon us.</VERS>\r\n      <VERS vnumber=\"3\">Have mercy upon us, O Jehovah, have mercy upon us; For we are exceedingly filled with contempt.</VERS>\r\n      <VERS vnumber=\"4\">Our soul is exceedingly filled With the scoffing of those that are at ease, And with the contempt of the proud.           Psalm 124       A Song of Ascents; of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"124\">\r\n      <VERS vnumber=\"1\">If it had not been Jehovah who was on our side, Let Israel now say,</VERS>\r\n      <VERS vnumber=\"2\">If it had not been Jehovah who was on our side, When men rose up against us;</VERS>\r\n      <VERS vnumber=\"3\">Then they had swallowed us up alive, When their wrath was kindled against us;</VERS>\r\n      <VERS vnumber=\"4\">Then the waters had overwhelmed us, The stream had gone over our soul;</VERS>\r\n      <VERS vnumber=\"5\">Then the proud waters had gone over our soul.</VERS>\r\n      <VERS vnumber=\"6\">Blessed be Jehovah, Who hath not given us as a prey to their teeth.</VERS>\r\n      <VERS vnumber=\"7\">Our soul is escaped as a bird out of the snare of the       fowlers: The snare is broken, and we are escaped.</VERS>\r\n      <VERS vnumber=\"8\">Our help is in the name of Jehovah, Who made heaven and earth.           Psalm 125       A Song of Ascents.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"125\">\r\n      <VERS vnumber=\"1\">They that trust in Jehovah Are as mount Zion, which cannot be moved, but abideth for ever.</VERS>\r\n      <VERS vnumber=\"2\">As the mountains are round about Jerusalem, So Jehovah is round about his people From this time forth and for evermore.</VERS>\r\n      <VERS vnumber=\"3\">For the sceptre of wickedness shall not rest upon the       lot of the righteous; That the righteous put not forth their hands unto iniquity.</VERS>\r\n      <VERS vnumber=\"4\">Do good, O Jehovah, unto those that are good, And to them that are upright in their hearts.</VERS>\r\n      <VERS vnumber=\"5\">But as for such as turn aside unto their crooked ways, Jehovah will lead them forth with the workers of iniquity. Peace be upon Israel.           Psalm 126       A Song of Ascents.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"126\">\r\n      <VERS vnumber=\"1\">When Jehovah brought back those that returned to Zion, We were like unto them that dream.</VERS>\r\n      <VERS vnumber=\"2\">Then was our mouth filled with laughter, And our tongue with singing: Then said they among the nations, Jehovah hath done great things for them.</VERS>\r\n      <VERS vnumber=\"3\">Jehovah hath done great things for us, [Whereof] we are glad.</VERS>\r\n      <VERS vnumber=\"4\">Turn again our captivity, O Jehovah, As the streams in the South.</VERS>\r\n      <VERS vnumber=\"5\">They that sow in tears shall reap in joy.</VERS>\r\n      <VERS vnumber=\"6\">He that goeth forth and weepeth, bearing seed for sowing, Shall doubtless come again with joy, bringing his sheaves [with       him].           Psalm 127       A Song of Ascents; of Solomon.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"127\">\r\n      <VERS vnumber=\"1\">Except Jehovah build the house, They labor in vain that build it: Except Jehovah keep the city, The watchman waketh but in vain.</VERS>\r\n      <VERS vnumber=\"2\">It is vain for you to rise up early, To take rest late, To eat the bread of toil; [For] so he giveth unto his beloved sleep.</VERS>\r\n      <VERS vnumber=\"3\">Lo, children are a heritage of Jehovah; [And] the fruit of the womb is [his] reward.</VERS>\r\n      <VERS vnumber=\"4\">As arrows in the hand of a mighty man, So are the children of youth.</VERS>\r\n      <VERS vnumber=\"5\">Happy is the man that hath his quiver full of them: They shall not be put to shame, When they speak with their enemies in the gate.           Psalm 128       A Song of Ascents.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"128\">\r\n      <VERS vnumber=\"1\">Blessed is every one that feareth Jehovah, That walketh in his ways.</VERS>\r\n      <VERS vnumber=\"2\">For thou shalt eat the labor of thy hands: Happy shalt thou be, and it shall be well with thee.</VERS>\r\n      <VERS vnumber=\"3\">Thy wife shall be as a fruitful vine, In the innermost parts of thy house; Thy children like olive plants, Round about thy table.</VERS>\r\n      <VERS vnumber=\"4\">Behold, thus shall the man be blessed That feareth Jehovah.</VERS>\r\n      <VERS vnumber=\"5\">Jehovah bless thee out of Zion: And see thou the good of Jerusalem all the days of thy life.</VERS>\r\n      <VERS vnumber=\"6\">Yea, see thou thy children`s children. Peace be upon Israel.           Psalm 129       A Song of Ascents.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"129\">\r\n      <VERS vnumber=\"1\">Many a time have they afflicted me from my youth up, Let Israel now say,</VERS>\r\n      <VERS vnumber=\"2\">Many a time have they afflicted me from my youth up: Yet they have not prevailed against me.</VERS>\r\n      <VERS vnumber=\"3\">The plowers plowed upon my back; They made long their furrows.</VERS>\r\n      <VERS vnumber=\"4\">Jehovah is righteous: He hath cut asunder the cords of the wicked.</VERS>\r\n      <VERS vnumber=\"5\">Let them be put to shame and turned backward, All they that hate Zion.</VERS>\r\n      <VERS vnumber=\"6\">Let them be as the grass upon the housetops, Which withereth before it groweth up;</VERS>\r\n      <VERS vnumber=\"7\">Wherewith the reaper filleth not his hand, Nor he that bindeth sheaves his bosom.</VERS>\r\n      <VERS vnumber=\"8\">Neither do they that go by say, The blessing of Jehovah be upon you; We bless you in the name of Jehovah.           Psalm 130       A Song of Ascents.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"130\">\r\n      <VERS vnumber=\"1\">Out of the depths have I cried unto thee, O Jehovah.</VERS>\r\n      <VERS vnumber=\"2\">Lord, hear my voice:  Let thine ears be attentive  To the voice of my supplications.</VERS>\r\n      <VERS vnumber=\"3\">If thou, Jehovah, shouldest mark iniquities,  O Lord, who could stand?</VERS>\r\n      <VERS vnumber=\"4\">But there is forgiveness with thee,  That thou mayest be feared.</VERS>\r\n      <VERS vnumber=\"5\">I wait for Jehovah, my soul doth wait,  And in his word do I hope.</VERS>\r\n      <VERS vnumber=\"6\">My soul [waiteth] for the Lord More than watchmen [wait] for the morning; [Yea, more than] watchmen for the morning.</VERS>\r\n      <VERS vnumber=\"7\">O Israel, hope in Jehovah; For with Jehovah there is lovingkindness, And with him is plenteous redemption.</VERS>\r\n      <VERS vnumber=\"8\">And he will redeem Israel From all his iniquities.           Psalm 131       A Song of Ascents; of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"131\">\r\n      <VERS vnumber=\"1\">Jehovah, my heart is not haughty, nor mine eyes lofty; Neither do I exercise myself in great matters, Or in things too wonderful for me.</VERS>\r\n      <VERS vnumber=\"2\">Surely I have stilled and quieted my soul; Like a weaned child with his mother, Like a weaned child is my soul within me.</VERS>\r\n      <VERS vnumber=\"3\">O Israel, hope in Jehovah From this time forth and for evermore.           Psalm 132       A Song of Ascents.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"132\">\r\n      <VERS vnumber=\"1\">Jehovah, remember for David All his affliction;</VERS>\r\n      <VERS vnumber=\"2\">How he sware unto Jehovah, And vowed unto the Mighty One of Jacob:</VERS>\r\n      <VERS vnumber=\"3\">Surely I will not come into the tabernacle of my house, Nor go up into my bed;</VERS>\r\n      <VERS vnumber=\"4\">I will not give sleep to mine eyes, Or slumber to mine eyelids;</VERS>\r\n      <VERS vnumber=\"5\">Until I find out a place for Jehovah, A tabernacle for the Mighty One of Jacob.</VERS>\r\n      <VERS vnumber=\"6\">Lo, we heard of it in Ephrathah: We found it in the field of the wood.</VERS>\r\n      <VERS vnumber=\"7\">We will go into his tabernacles; We will worship at his footstool.</VERS>\r\n      <VERS vnumber=\"8\">Arise, O Jehovah, into thy resting-place; Thou, and the ark of thy strength.</VERS>\r\n      <VERS vnumber=\"9\">Let thy priest be clothed with righteousness; And let thy saints shout for joy.</VERS>\r\n      <VERS vnumber=\"10\">For thy servant David`s sake Turn not away the face of thine anointed.</VERS>\r\n      <VERS vnumber=\"11\">Jehovah hath sworn unto David in truth; He will not turn from it: Of the fruit of thy body will I set upon thy throne.</VERS>\r\n      <VERS vnumber=\"12\">If thy children will keep my covenant And my testimony that I shall teach them, Their children also shall sit upon thy throne for evermore.</VERS>\r\n      <VERS vnumber=\"13\">For Jehovah hath chosen Zion; He hath desired it for his habitation.</VERS>\r\n      <VERS vnumber=\"14\">This is my resting-place for ever: Here will I dwell; for I have desired it.</VERS>\r\n      <VERS vnumber=\"15\">I will abundantly bless her provision: I will satisfy her poor with bread.</VERS>\r\n      <VERS vnumber=\"16\">Her priests also will I clothe with salvation; And her saints shall shout aloud for joy.</VERS>\r\n      <VERS vnumber=\"17\">There will I make the horn of David to bud: I have ordained a lamp for mine anointed.</VERS>\r\n      <VERS vnumber=\"18\">His enemies will I clothe with shame; But upon himself shall his crown flourish.           Psalm 133       A Song of Ascents; of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"133\">\r\n      <VERS vnumber=\"1\">Behold, how good and how pleasant it is For brethren to dwell together in unity!</VERS>\r\n      <VERS vnumber=\"2\">It is like the precious oil upon the head, That ran down upon the beard, Even Aaron`s beard; That came down upon the skirt of his garments;</VERS>\r\n      <VERS vnumber=\"3\">Like the dew of Hermon, That cometh down upon the mountains of Zion: For there Jehovah commanded the blessing, Even life for evermore.           Psalm 134       A Song of Ascents.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"134\">\r\n      <VERS vnumber=\"1\">Behold, bless ye Jehovah, all ye servants of Jehovah, That by night stand in the house of Jehovah.</VERS>\r\n      <VERS vnumber=\"2\">Lift up your hands to the sanctuary, And bless ye Jehovah.</VERS>\r\n      <VERS vnumber=\"3\">Jehovah bless thee out of Zion; Even he that made heaven and earth.           Psalm 135</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"135\">\r\n      <VERS vnumber=\"1\">Praise ye Jehovah. Praise ye the name of Jehovah; Praise [him], O ye servants of Jehovah,</VERS>\r\n      <VERS vnumber=\"2\">Ye that stand in the house of Jehovah, In the courts of the house of our God.</VERS>\r\n      <VERS vnumber=\"3\">Praise ye Jehovah; for Jehovah is good: Sing praises unto his name; for it is pleasant.</VERS>\r\n      <VERS vnumber=\"4\">For Jehovah hath chosen Jacob unto himself, [And] Israel for his own possession.</VERS>\r\n      <VERS vnumber=\"5\">For I know that Jehovah is great, And that our Lord is above all gods.</VERS>\r\n      <VERS vnumber=\"6\">Whatsoever Jehovah pleased, that hath he done, In heaven and in earth, in the seas and in all deeps;</VERS>\r\n      <VERS vnumber=\"7\">Who causeth the vapors to ascend from the ends of the       earth; Who maketh lightnings for the rain; Who bringeth forth the wind out of his treasuries;</VERS>\r\n      <VERS vnumber=\"8\">Who smote the first-born of Egypt, Both of man and beast;</VERS>\r\n      <VERS vnumber=\"9\">Who sent signs and wonders into the midst of thee, O       Egypt, Upon Pharaoh, and upon all his servants;</VERS>\r\n      <VERS vnumber=\"10\">Who smote many nations, And slew mighty kings,</VERS>\r\n      <VERS vnumber=\"11\">Sihon king of the Amorites, And Og king of Bashan, And all the kingdoms of Canaan,</VERS>\r\n      <VERS vnumber=\"12\">And gave their land for a heritage, A heritage unto Israel his people.</VERS>\r\n      <VERS vnumber=\"13\">Thy name, O Jehovah, [endureth] for ever; Thy memorial [name], O Jehovah, throughout all generations.</VERS>\r\n      <VERS vnumber=\"14\">For Jehovah will judge his people, And repent himself concerning his servants.</VERS>\r\n      <VERS vnumber=\"15\">The idols of the nations are silver and gold, The work of men`s hands.</VERS>\r\n      <VERS vnumber=\"16\">They have mouths, but they speak not; Eyes have they, but they see not;</VERS>\r\n      <VERS vnumber=\"17\">They have ears, but they hear not; Neither is there any breath in their mouths.</VERS>\r\n      <VERS vnumber=\"18\">They that make them shall be like unto them; Yea, every one that trusteth in them.</VERS>\r\n      <VERS vnumber=\"19\">O house of Israel, bless ye Jehovah: O house of Aaron, bless ye Jehovah:</VERS>\r\n      <VERS vnumber=\"20\">O house of Levi, bless ye Jehovah: Ye that fear Jehovah, bless ye Jehovah.</VERS>\r\n      <VERS vnumber=\"21\">Blessed be Jehovah out of Zion, Who dwelleth at Jerusalem. Praise ye Jehovah.           Psalm 136</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"136\">\r\n      <VERS vnumber=\"1\">Oh give thanks unto Jehovah; for he is good; For his lovingkindness [endureth] for ever.</VERS>\r\n      <VERS vnumber=\"2\">Oh give thanks unto the God of gods; For his lovingkindness [endureth] for ever.</VERS>\r\n      <VERS vnumber=\"3\">Oh give thanks unto the Lord of lords; For his lovingkindness [endureth] for ever:</VERS>\r\n      <VERS vnumber=\"4\">To him who alone doeth great wonders; For his lovingkindness [endureth] for ever:</VERS>\r\n      <VERS vnumber=\"5\">To him that by understanding made the heavens; For his lovingkindness [endureth] for ever:</VERS>\r\n      <VERS vnumber=\"6\">To him that spread forth the earth above the waters; For his lovingkindness [endureth] for ever:</VERS>\r\n      <VERS vnumber=\"7\">To him that made great lights; For his lovingkindness [endureth] for ever:</VERS>\r\n      <VERS vnumber=\"8\">The sun to rule by day; For his lovingkindness [endureth] for ever;</VERS>\r\n      <VERS vnumber=\"9\">The moon and stars to rule by night; For his lovingkindness [endureth] for ever:</VERS>\r\n      <VERS vnumber=\"10\">To him that smote Egypt in their first-born; For his lovingkindness [endureth] for ever;</VERS>\r\n      <VERS vnumber=\"11\">And brought out Israel from among them; For his lovingkindness [endureth] for ever;</VERS>\r\n      <VERS vnumber=\"12\">With a strong hand, and with an outstretched arm; For his lovingkindness [endureth] for ever:</VERS>\r\n      <VERS vnumber=\"13\">To him that divided the Red Sea in sunder; For his lovingkindness [endureth] for ever;</VERS>\r\n      <VERS vnumber=\"14\">And made Israel to pass through the midst of it; For his lovingkindness [endureth] for ever;</VERS>\r\n      <VERS vnumber=\"15\">But overthrew Pharaoh and his host in the Red Sea; For his lovingkindness [endureth] for ever:</VERS>\r\n      <VERS vnumber=\"16\">To him that led his people through the wilderness; For his lovingkindness [endureth] for ever:</VERS>\r\n      <VERS vnumber=\"17\">To him that smote great kings; For his lovingkindness [endureth] for ever;</VERS>\r\n      <VERS vnumber=\"18\">And slew famous kings; For his lovingkindness [endureth] for ever:</VERS>\r\n      <VERS vnumber=\"19\">Sihon king of the Amorites; For his lovingkindness [endureth] forever;</VERS>\r\n      <VERS vnumber=\"20\">And Og king of Bashan; For his lovingkindness [endureth] for ever;</VERS>\r\n      <VERS vnumber=\"21\">And gave their land for a heritage; For his lovingkindness [endureth] for ever;</VERS>\r\n      <VERS vnumber=\"22\">Even a heritage unto Israel his servant; For his lovingkindness [endureth] for ever:</VERS>\r\n      <VERS vnumber=\"23\">Who remembered us in our low estate; For his lovingkindness [endureth] for ever;</VERS>\r\n      <VERS vnumber=\"24\">And hath delivered us from our adversaries; For his lovingkindness [endureth] for ever:</VERS>\r\n      <VERS vnumber=\"25\">Who giveth food to all flesh; For his lovingkindness [endureth] for ever.</VERS>\r\n      <VERS vnumber=\"26\">Oh give thanks unto the God of heaven; For his lovingkindness [endureth] for ever.           Psalm 137</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"137\">\r\n      <VERS vnumber=\"1\">By the rivers of Babylon, There we sat down, yea, we wept, When we remembered Zion.</VERS>\r\n      <VERS vnumber=\"2\">Upon the willows in the midst thereof We hanged up our       harps.</VERS>\r\n      <VERS vnumber=\"3\">For there they that led us captive required of us songs, And they that wasted us [required of us] mirth, [saying], Sing us one of the songs of Zion.</VERS>\r\n      <VERS vnumber=\"4\">How shall we sing Jehovah`s song In a foreign land?</VERS>\r\n      <VERS vnumber=\"5\">If I forget thee, O Jerusalem, Let my right hand forget [her skill].</VERS>\r\n      <VERS vnumber=\"6\">Let my tongue cleave to the roof of my mouth, If I remember thee not; If I prefer not Jerusalem Above my chief joy.</VERS>\r\n      <VERS vnumber=\"7\">Remember, O Jehovah, against the children of Edom The day of Jerusalem; Who said, Rase it, rase it, Even to the foundation thereof.</VERS>\r\n      <VERS vnumber=\"8\">O daughter of Babylon, that art to be destroyed, Happy shall he be, that rewardeth thee As thou hast served us.</VERS>\r\n      <VERS vnumber=\"9\">Happy shall he be, that taketh and dasheth thy little       ones Against the rock.           Psalm 138       A [Psalm] of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"138\">\r\n      <VERS vnumber=\"1\">I will give thee thanks with my whole heart: Before the gods will I sing praises unto thee.</VERS>\r\n      <VERS vnumber=\"2\">I will worship toward thy holy temple, And give thanks unto thy name for thy lovingkindness and for thy       truth: For thou hast magnified thy word above all thy name.</VERS>\r\n      <VERS vnumber=\"3\">In the day that I called thou answeredst me, Thou didst encourage me with strength in my soul.</VERS>\r\n      <VERS vnumber=\"4\">All the kings of the earth shall give thee thanks, O       Jehovah, For they have heard the words of thy mouth.</VERS>\r\n      <VERS vnumber=\"5\">Yea, they shall sing of the ways of Jehovah; For great is the glory of Jehovah.</VERS>\r\n      <VERS vnumber=\"6\">For though Jehovah is high, yet hath he respect unto the       lowly; But the haughty he knoweth from afar.</VERS>\r\n      <VERS vnumber=\"7\">Though I walk in the midst of trouble, thou wilt revive       me; Thou wilt stretch forth thy hand against the wrath of mine       enemies, And thy right hand will save me.</VERS>\r\n      <VERS vnumber=\"8\">Jehovah will perfect that which concerneth me: Thy lovingkindness, O Jehovah, [endureth] for ever; Forsake not the works of thine own hands.           Psalm 139       For the Chief Musician.  A Psalm of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"139\">\r\n      <VERS vnumber=\"1\">O Jehovah, thou hast searched me, and known [me].</VERS>\r\n      <VERS vnumber=\"2\">Thou knowest my downsitting and mine uprising; Thou understandest my thought afar off.</VERS>\r\n      <VERS vnumber=\"3\">Thou searchest out my path and my lying down, And art acquainted with all my ways.</VERS>\r\n      <VERS vnumber=\"4\">For there is not a word in my tongue, But, lo, O Jehovah, thou knowest it altogether.</VERS>\r\n      <VERS vnumber=\"5\">Thou hast beset me behind and before, And laid thy hand upon me.</VERS>\r\n      <VERS vnumber=\"6\">[Such] knowledge is too wonderful for me; It is high, I cannot attain unto it.</VERS>\r\n      <VERS vnumber=\"7\">Whither shall I go from thy Spirit? Or whither shall I flee from thy presence?</VERS>\r\n      <VERS vnumber=\"8\">If I ascend up into heaven, thou art there: If I make my bed in Sheol, behold, thou art there.</VERS>\r\n      <VERS vnumber=\"9\">If I take the wings of the morning, And dwell in the uttermost parts of the sea;</VERS>\r\n      <VERS vnumber=\"10\">Even there shall thy hand lead me, And thy right hand shall hold me.</VERS>\r\n      <VERS vnumber=\"11\">If I say, Surely the darkness shall overwhelm me, And the light about me shall be night;</VERS>\r\n      <VERS vnumber=\"12\">Even the darkness hideth not from thee, But the night shineth as the day: The darkness and the light are both alike [to thee].</VERS>\r\n      <VERS vnumber=\"13\">For thou didst form my inward parts: Thou didst cover me in my mother`s womb.</VERS>\r\n      <VERS vnumber=\"14\">I will give thanks unto thee; for I am fearfully and       wonderfully made: Wonderful are thy works; And that my soul knoweth right well.</VERS>\r\n      <VERS vnumber=\"15\">My frame was not hidden from thee, When I was made in secret, [And] curiously wrought in the lowest parts of the earth.</VERS>\r\n      <VERS vnumber=\"16\">Thine eyes did see mine unformed substance; And in thy book they were all written, [Even] the days that were ordained [for me], When as yet there was none of them.</VERS>\r\n      <VERS vnumber=\"17\">How precious also are thy thoughts unto me, O God! How great is the sum of them!</VERS>\r\n      <VERS vnumber=\"18\">If I should count them, they are more in number than       the sand: When I awake, I am still with thee.</VERS>\r\n      <VERS vnumber=\"19\">Surely thou wilt slay the wicked, O God: Depart from me therefore, ye bloodthirsty men.</VERS>\r\n      <VERS vnumber=\"20\">For they speak against thee wickedly, And thine enemies take [thy name] in vain.</VERS>\r\n      <VERS vnumber=\"21\">Do not I hate them, O Jehovah, that hate thee? And am not I grieved with those that rise up against thee?</VERS>\r\n      <VERS vnumber=\"22\">I hate them with perfect hatred: They are become mine enemies.</VERS>\r\n      <VERS vnumber=\"23\">Search me, O God, and know my heart: Try me, and know my thoughts;</VERS>\r\n      <VERS vnumber=\"24\">And see if there be any wicked way in me, And lead me in the way everlasting.           Psalm 140       For the Chief Musician.  A Psalm of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"140\">\r\n      <VERS vnumber=\"1\">Deliver me, O Jehovah, from the evil man; Preserve me from the violent man:</VERS>\r\n      <VERS vnumber=\"2\">Who devise mischiefs in their heart; Continually do they gather themselves together for war.</VERS>\r\n      <VERS vnumber=\"3\">They have sharpened their tongue like a serpent; Adders` poison is under their lips.      Selah</VERS>\r\n      <VERS vnumber=\"4\">Keep me, O Jehovah, from the hands of the wicked; Preserve me from the violent man: Who have purposed to thrust aside my steps.</VERS>\r\n      <VERS vnumber=\"5\">The proud have hid a snare for me, and cords; They have spread a net by the wayside; They have set gins for me.     Selah</VERS>\r\n      <VERS vnumber=\"6\">I said unto Jehovah, Thou art my God: Give ear unto the voice of my supplications, O Jehovah.</VERS>\r\n      <VERS vnumber=\"7\">O Jehovah the Lord, the strength of my salvation, Thou hast covered my head in the day of battle.</VERS>\r\n      <VERS vnumber=\"8\">Grant not, O Jehovah, the desires of the wicked; Further not his evil device, [lest] they exalt themselves.     Selah</VERS>\r\n      <VERS vnumber=\"9\">As for the head of those that compass me about, Let the mischief of their own lips cover them.</VERS>\r\n      <VERS vnumber=\"10\">Let burning coals fall upon them: Let them be cast into the fire, Into deep pits, whence they shall not rise.</VERS>\r\n      <VERS vnumber=\"11\">An evil speaker shall not be established in the earth: Evil shall hunt the violent man to overthrow him.</VERS>\r\n      <VERS vnumber=\"12\">I know that Jehovah will maintain the cause of the       afflicted, And justice for the needy.</VERS>\r\n      <VERS vnumber=\"13\">Surely the righteous shall give thanks unto thy name: The upright shall dwell in thy presence.           Psalm 141       A Psalm of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"141\">\r\n      <VERS vnumber=\"1\">Jehovah, I have called upon thee; make haste unto me: Give ear unto my voice, when I call unto thee.</VERS>\r\n      <VERS vnumber=\"2\">Let my prayer be set forth as incense before thee; The lifting up of my hands as the evening sacrifice.</VERS>\r\n      <VERS vnumber=\"3\">Set a watch, O Jehovah, before my mouth; Keep the door of my lips.</VERS>\r\n      <VERS vnumber=\"4\">Incline not my heart to any evil thing, To practise deeds of wickedness With men that work iniquity: And let me not eat of their dainties.</VERS>\r\n      <VERS vnumber=\"5\">Let the righteous smite me, [it shall be] a kindness; And let him reprove me, [it shall be as] oil upon the head; Let not my head refuse it: For even in their wickedness shall my prayer continue.</VERS>\r\n      <VERS vnumber=\"6\">Their judges are thrown down by the sides of the rock; And they shall hear my words; for they are sweet.</VERS>\r\n      <VERS vnumber=\"7\">As when one ploweth and cleaveth the earth, Our bones are scattered at the mouth of Sheol.</VERS>\r\n      <VERS vnumber=\"8\">For mine eyes are unto thee, O Jehovah the Lord: In thee do I take refuge; leave not my soul destitute.</VERS>\r\n      <VERS vnumber=\"9\">Keep me from the snare which they have laid for me, And from the gins of the workers of iniquity.</VERS>\r\n      <VERS vnumber=\"10\">Let the wicked fall into their own nets, Whilst that I withal escape.           Psalm 142       Maschil of David, when he was in the cave;  a Prayer.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"142\">\r\n      <VERS vnumber=\"1\">I cry with my voice unto Jehovah; With my voice unto Jehovah do I make supplication.</VERS>\r\n      <VERS vnumber=\"2\">I pour out my complaint before him; I show before him my trouble.</VERS>\r\n      <VERS vnumber=\"3\">When my spirit was overwhelmed within me, Thou knewest my path. In the way wherein I walk Have they hidden a snare for me.</VERS>\r\n      <VERS vnumber=\"4\">Look on [my] right hand, and see; For there is no man that knoweth me: Refuge hath failed me; No man careth for my soul.</VERS>\r\n      <VERS vnumber=\"5\">I cried unto thee, O Jehovah; I said, Thou art my refuge, My portion in the land of the living.</VERS>\r\n      <VERS vnumber=\"6\">Attend unto my cry; For I am brought very low: Deliver me from my persecutors; For they are stronger than I.</VERS>\r\n      <VERS vnumber=\"7\">Bring my soul out of prison, That I may give thanks unto thy name: The righteous shall compass me about; For thou wilt deal bountifully with me.           Psalm 143       A Psalm of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"143\">\r\n      <VERS vnumber=\"1\">Hear my prayer, O Jehovah; give ear to my supplications: In thy faithfulness answer me, [and] in thy righteousness.</VERS>\r\n      <VERS vnumber=\"2\">And enter not into judgment with thy servant; For in thy sight no man living is righteous.</VERS>\r\n      <VERS vnumber=\"3\">For the enemy hath persecuted my soul; He hath smitten my life down to the ground: He hath made me to dwell in dark places, as those that have been       long dead.</VERS>\r\n      <VERS vnumber=\"4\">Therefore is my spirit overwhelmed within me; My heart within me is desolate.</VERS>\r\n      <VERS vnumber=\"5\">I remember the days of old; I meditate on all thy doings; I muse on the work of thy hands.</VERS>\r\n      <VERS vnumber=\"6\">I spread forth my hands unto thee: My soul [thirsteth] after thee, as a weary land.     Selah</VERS>\r\n      <VERS vnumber=\"7\">Make haste to answer me, O Jehovah; my spirit faileth: Hide not thy face from me, Lest I become like them that go down into the pit.</VERS>\r\n      <VERS vnumber=\"8\">Cause 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.</VERS>\r\n      <VERS vnumber=\"9\">Deliver me, O Jehovah, from mine enemies: I flee unto thee to hide me.</VERS>\r\n      <VERS vnumber=\"10\">Teach me to do thy will; For thou art my God: Thy Spirit is good; Lead me in the land of uprightness.</VERS>\r\n      <VERS vnumber=\"11\">Quicken me, O Jehovah, for thy name`s sake: In thy righteousness bring my soul out of trouble.</VERS>\r\n      <VERS vnumber=\"12\">And in thy lovingkindness cut off mine enemies, And destroy all them that afflict my soul; For I am thy servant.           Psalm 144       [A Psalm] of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"144\">\r\n      <VERS vnumber=\"1\">Blessed be Jehovah my rock, Who teacheth my hands to war, [And] my fingers to fight:</VERS>\r\n      <VERS vnumber=\"2\">My lovingkindness, and my fortress, My high tower, and my deliverer; My shield, and he in whom I take refuge; Who subdueth my people under me.</VERS>\r\n      <VERS vnumber=\"3\">Jehovah, what is man, that thou takest knowledge of him? Or the son of man, that thou makest account of him?</VERS>\r\n      <VERS vnumber=\"4\">Man is like to vanity: His days are as a shadow that passeth away.</VERS>\r\n      <VERS vnumber=\"5\">Bow thy heavens, O Jehovah, and come down: Touch the mountains, and they shall smoke.</VERS>\r\n      <VERS vnumber=\"6\">Cast forth lightning, and scatter them; Send out thine arrows, and discomfit them.</VERS>\r\n      <VERS vnumber=\"7\">Stretch forth thy hand from above; Rescue me, and deliver me out of great waters, Out of the hand of aliens;</VERS>\r\n      <VERS vnumber=\"8\">Whose mouth speaketh deceit, And whose right hand is a right hand of falsehood.</VERS>\r\n      <VERS vnumber=\"9\">I will sing a new song unto thee, O God: Upon a psaltery of ten strings will I sing praises unto thee.</VERS>\r\n      <VERS vnumber=\"10\">Thou art he that giveth salvation unto kings; Who rescueth David his servant from the hurtful sword.</VERS>\r\n      <VERS vnumber=\"11\">Rescue me, and deliver me out of the hand of aliens, Whose mouth speaketh deceit, And whose right hand is a right hand of falsehood.</VERS>\r\n      <VERS vnumber=\"12\">When our sons shall be as plants grown up in their       youth, And our daughters as corner-stones hewn after the fashion of a       palace;</VERS>\r\n      <VERS vnumber=\"13\">[When] our garners are full, affording all manner of       store, [And] our sheep bring forth thousands and ten thousands in our       fields;</VERS>\r\n      <VERS vnumber=\"14\">[When] our oxen are well laden; [When there is] no breaking in, and no going forth, And no outcry in our streets:</VERS>\r\n      <VERS vnumber=\"15\">Happy is the people that is in such a case; [Yea], happy is the people whose God is Jehovah.           Psalm 145       [A] [Psalm] [of] praise;  of David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"145\">\r\n      <VERS vnumber=\"1\">I will extol thee, my God, O King; And I will bless thy name for ever and ever.</VERS>\r\n      <VERS vnumber=\"2\">Every day will I bless thee; And I will praise thy name for ever and ever.</VERS>\r\n      <VERS vnumber=\"3\">Great is Jehovah, and greatly to be praised; And his greatness is unsearchable.</VERS>\r\n      <VERS vnumber=\"4\">One generation shall laud thy works to another, And shall declare thy mighty acts.</VERS>\r\n      <VERS vnumber=\"5\">Of the glorious majesty of thine honor, And of thy wondrous works, will I meditate.</VERS>\r\n      <VERS vnumber=\"6\">And men shall speak of the might of thy terrible acts; And I will declare thy greatness.</VERS>\r\n      <VERS vnumber=\"7\">They shall utter the memory of thy great goodness, And shall sing of thy righteousness.</VERS>\r\n      <VERS vnumber=\"8\">Jehovah is gracious, and merciful; Slow to anger, and of great lovingkindness.</VERS>\r\n      <VERS vnumber=\"9\">Jehovah is good to all; And his tender mercies are over all his works.</VERS>\r\n      <VERS vnumber=\"10\">All thy works shall give thanks unto thee, O Jehovah; And thy saints shall bless thee.</VERS>\r\n      <VERS vnumber=\"11\">They shall speak of the glory of thy kingdom, And talk of thy power;</VERS>\r\n      <VERS vnumber=\"12\">To make known to the sons of men his mighty acts, And the glory of the majesty of his kingdom.</VERS>\r\n      <VERS vnumber=\"13\">Thy kingdom is an everlasting kingdom, And thy dominion [endureth] throughout all generations.</VERS>\r\n      <VERS vnumber=\"14\">Jehovah upholdeth all that fall, And raiseth up all those that are bowed down.</VERS>\r\n      <VERS vnumber=\"15\">The eyes of all wait for thee; And thou givest them their food in due season.</VERS>\r\n      <VERS vnumber=\"16\">Thou openest thy hand, And satisfiest the desire of every living thing.</VERS>\r\n      <VERS vnumber=\"17\">Jehovah is righteous in all his ways, And gracious in all his works.</VERS>\r\n      <VERS vnumber=\"18\">Jehovah is nigh unto all them that call upon him, To all that call upon him in truth.</VERS>\r\n      <VERS vnumber=\"19\">He will fulfil the desire of them that fear him; He also will hear their cry and will save them.</VERS>\r\n      <VERS vnumber=\"20\">Jehovah preserveth all them that love him; But all the wicked will he destroy.</VERS>\r\n      <VERS vnumber=\"21\">My mouth shall speak the praise of Jehovah; And let all flesh bless his holy name for ever and ever.           Psalm 146</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"146\">\r\n      <VERS vnumber=\"1\">Praise ye Jehovah. Praise Jehovah, O my soul.</VERS>\r\n      <VERS vnumber=\"2\">While I live will I praise Jehovah: I will sing praises unto my God while I have any being.</VERS>\r\n      <VERS vnumber=\"3\">Put not your trust in princes, Nor in the son of man, in whom there is no help.</VERS>\r\n      <VERS vnumber=\"4\">His breath goeth forth, he returneth to his earth; In that very day his thoughts perish.</VERS>\r\n      <VERS vnumber=\"5\">Happy is he that hath the God of Jacob for his help, Whose hope is in Jehovah his God:</VERS>\r\n      <VERS vnumber=\"6\">Who made heaven and earth, The sea, and all that in them is; Who keepeth truth for ever;</VERS>\r\n      <VERS vnumber=\"7\">Who executeth justice for the oppressed; Who giveth food to the hungry. Jehovah looseth the prisoners;</VERS>\r\n      <VERS vnumber=\"8\">Jehovah openeth [the eyes of] the blind; Jehovah raiseth up them that are bowed down; Jehovah loveth the righteous;</VERS>\r\n      <VERS vnumber=\"9\">Jehovah preserveth the sojourners; He upholdeth the fatherless and widow; But the way of the wicked he turneth upside down.</VERS>\r\n      <VERS vnumber=\"10\">Jehovah will reign for ever, Thy God, O Zion, unto all generations. Praise ye Jehovah.           Psalm 147</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"147\">\r\n      <VERS vnumber=\"1\">Praise ye Jehovah; For it is good to sing praises unto our God; For it is pleasant, [and] praise is comely.</VERS>\r\n      <VERS vnumber=\"2\">Jehovah doth build up Jerusalem; He gathereth together the outcasts of Israel.</VERS>\r\n      <VERS vnumber=\"3\">He healeth the broken in heart, And bindeth up their wounds.</VERS>\r\n      <VERS vnumber=\"4\">He counteth the number of the stars; He calleth them all by [their] names.</VERS>\r\n      <VERS vnumber=\"5\">Great is our Lord, and mighty in power; His understanding is infinite.</VERS>\r\n      <VERS vnumber=\"6\">Jehovah upholdeth the meek: He bringeth the wicked down to the ground.</VERS>\r\n      <VERS vnumber=\"7\">Sing unto Jehovah with thanksgiving; Sing praises upon the harp unto our God,</VERS>\r\n      <VERS vnumber=\"8\">Who covereth the heavens with clouds, Who prepareth rain for the earth, Who maketh grass to grow upon the mountains.</VERS>\r\n      <VERS vnumber=\"9\">He giveth to the beast his food, [And] to the young ravens which cry.</VERS>\r\n      <VERS vnumber=\"10\">He delighteth not in the strength of the horse: He taketh no pleasure in the legs of a man.</VERS>\r\n      <VERS vnumber=\"11\">Jehovah taketh pleasure in them that fear him, In those that hope in his lovingkindness.</VERS>\r\n      <VERS vnumber=\"12\">Praise Jehovah, O Jerusalem; Praise thy God, O Zion.</VERS>\r\n      <VERS vnumber=\"13\">For he hath strengthened the bars of thy gates; He hath blessed thy children within thee.</VERS>\r\n      <VERS vnumber=\"14\">He maketh peace in thy borders; He filleth thee with the finest of the wheat.</VERS>\r\n      <VERS vnumber=\"15\">He sendeth out his commandment upon earth; His word runneth very swiftly.</VERS>\r\n      <VERS vnumber=\"16\">He giveth snow like wool; He scattereth the hoar-frost like ashes.</VERS>\r\n      <VERS vnumber=\"17\">He casteth forth his ice like morsels: Who can stand before his cold?</VERS>\r\n      <VERS vnumber=\"18\">He sendeth out his word, and melteth them: He causeth his wind to blow, and the waters flow.</VERS>\r\n      <VERS vnumber=\"19\">He showeth his word unto Jacob, His statutes and his ordinances unto Israel.</VERS>\r\n      <VERS vnumber=\"20\">He hath not dealt so with any nation; And as for his ordinances, they have not known them. Praise ye Jehovah.           Psalm 148</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"148\">\r\n      <VERS vnumber=\"1\">Praise ye Jehovah. Praise ye Jehovah from the heavens: Praise him in the heights.</VERS>\r\n      <VERS vnumber=\"2\">Praise ye him, all his angels: Praise ye him, all his host.</VERS>\r\n      <VERS vnumber=\"3\">Praise ye him, sun and moon: Praise him, all ye stars of light.</VERS>\r\n      <VERS vnumber=\"4\">Praise him, ye heavens of heavens, And ye waters that are above the heavens.</VERS>\r\n      <VERS vnumber=\"5\">Let them praise the name of Jehovah; For he commanded, and they were created.</VERS>\r\n      <VERS vnumber=\"6\">He hath also established them for ever and ever: He hath made a decree which shall not pass away.</VERS>\r\n      <VERS vnumber=\"7\">Praise Jehovah from the earth, Ye sea-monsters, and all deeps.</VERS>\r\n      <VERS vnumber=\"8\">Fire and hail, snow and vapor; Stormy wind, fulfilling his word;</VERS>\r\n      <VERS vnumber=\"9\">Mountains and all hills; Fruitful trees and all cedars;</VERS>\r\n      <VERS vnumber=\"10\">Beasts and all cattle; Creeping things and flying birds;</VERS>\r\n      <VERS vnumber=\"11\">Kings of the earth and all peoples; Princes and all judges of the earth;</VERS>\r\n      <VERS vnumber=\"12\">Both young men and virgins; Old men and children:</VERS>\r\n      <VERS vnumber=\"13\">Let them praise the name of Jehovah; For his name alone is exalted; His glory is above the earth and the heavens.</VERS>\r\n      <VERS vnumber=\"14\">And he hath lifted up the horn of his people, The praise of all his saints; Even of the children of Israel, a people near unto him. Praise ye Jehovah.           Psalm 149</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"149\">\r\n      <VERS vnumber=\"1\">Praise ye Jehovah. Sing unto Jehovah a new song, And his praise in the assembly of the saints.</VERS>\r\n      <VERS vnumber=\"2\">Let Israel rejoice in him that made him: Let the children of Zion be joyful in their King.</VERS>\r\n      <VERS vnumber=\"3\">Let them praise his name in the dance: Let them sing praises unto him with timbrel and harp.</VERS>\r\n      <VERS vnumber=\"4\">For Jehovah taketh pleasure in his people: He will beautify the meek with salvation.</VERS>\r\n      <VERS vnumber=\"5\">Let the saints exult in glory: Let them sing for joy upon their beds.</VERS>\r\n      <VERS vnumber=\"6\">[Let] the high praises of God [be] in their mouth, And a two-edged sword in their hand;</VERS>\r\n      <VERS vnumber=\"7\">To execute vengeance upon the nations, And punishments upon the peoples;</VERS>\r\n      <VERS vnumber=\"8\">To bind their kings with chains, And their nobles with fetters of iron;</VERS>\r\n      <VERS vnumber=\"9\">To execute upon them the judgment written: This honor have all his saints. Praise ye Jehovah.           Psalm 150</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"150\">\r\n      <VERS vnumber=\"1\">Praise ye Jehovah. Praise God in his sanctuary: Praise him in the firmament of his power.</VERS>\r\n      <VERS vnumber=\"2\">Praise him for his mighty acts: Praise him according to his excellent greatness.</VERS>\r\n      <VERS vnumber=\"3\">Praise him with trumpet sound: Praise him with psaltery and harp.</VERS>\r\n      <VERS vnumber=\"4\">Praise him with timbrel and dance: Praise him with stringed instruments and pipe.</VERS>\r\n      <VERS vnumber=\"5\">Praise him with loud cymbals: Praise him with high sounding cymbals.</VERS>\r\n      <VERS vnumber=\"6\">Let everything that hath breath praise Jehovah. Praise ye Jehovah.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"20\" bname=\"Proverbs\" bsname=\"Prov\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">The proverbs of Solomon the son of David, king of Israel:</VERS>\r\n      <VERS vnumber=\"2\">To know wisdom and instruction; To discern the words of understanding;</VERS>\r\n      <VERS vnumber=\"3\">To receive instruction in wise dealing, In righteousness and justice and equity;</VERS>\r\n      <VERS vnumber=\"4\">To give prudence to the simple, To the young man knowledge and discretion:</VERS>\r\n      <VERS vnumber=\"5\">That the wise man may hear, and increase in learning; And that the man of understanding may attain unto sound counsels:</VERS>\r\n      <VERS vnumber=\"6\">To understand a proverb, and a figure, The words of the wise, and their dark sayings.</VERS>\r\n      <VERS vnumber=\"7\">The fear of Jehovah is the beginning of knowledge; [But] the foolish despise wisdom and instruction.</VERS>\r\n      <VERS vnumber=\"8\">My son, hear the instruction of thy father, And forsake not the law of thy mother:</VERS>\r\n      <VERS vnumber=\"9\">For they shall be a chaplet of grace unto thy head, And chains about thy neck.</VERS>\r\n      <VERS vnumber=\"10\">My son, if sinners entice thee, Consent thou not.</VERS>\r\n      <VERS vnumber=\"11\">If they say, Come with us, Let us lay wait for blood; Let us lurk privily for the innocent without cause;</VERS>\r\n      <VERS vnumber=\"12\">Let us swallow them up alive as Sheol, And whole, as those that go down into the pit;</VERS>\r\n      <VERS vnumber=\"13\">We shall find all precious substance; We shall fill our houses with spoil;</VERS>\r\n      <VERS vnumber=\"14\">Thou shalt cast thy lot among us; We will all have one purse:</VERS>\r\n      <VERS vnumber=\"15\">My son, walk not thou in the way with them; Refrain thy foot from their path:</VERS>\r\n      <VERS vnumber=\"16\">For their feet run to evil, And they make haste to shed blood.</VERS>\r\n      <VERS vnumber=\"17\">For in vain is the net spread In the sight of any bird:</VERS>\r\n      <VERS vnumber=\"18\">And these lay wait for their own blood; They lurk privily for their own lives.</VERS>\r\n      <VERS vnumber=\"19\">So are the ways of every one that is greedy of gain; It taketh away the life of the owners thereof.</VERS>\r\n      <VERS vnumber=\"20\">Wisdom crieth aloud in the street; She uttereth her voice in the broad places;</VERS>\r\n      <VERS vnumber=\"21\">She crieth in the chief place of concourse; At the entrance of the gates, In the city, she uttereth her words:</VERS>\r\n      <VERS vnumber=\"22\">How long, ye simple ones, will ye love simplicity? And scoffers delight them in scoffing, And fools hate knowledge?</VERS>\r\n      <VERS vnumber=\"23\">Turn you at my reproof: Behold, I will pour out my spirit upon you; I will make known my words unto you.</VERS>\r\n      <VERS vnumber=\"24\">Because I have called, and ye have refused; I have stretched out my hand, and no man hath regarded;</VERS>\r\n      <VERS vnumber=\"25\">But ye have set at nought all my counsel, And would none of my reproof:</VERS>\r\n      <VERS vnumber=\"26\">I also will laugh in [the day of] your calamity; I will mock when your fear cometh;</VERS>\r\n      <VERS vnumber=\"27\">When your fear cometh as a storm, And your calamity cometh on as a whirlwind; When distress and anguish come upon you.</VERS>\r\n      <VERS vnumber=\"28\">Then will they call upon me, but I will not answer; They will seek me diligently, but they shall not find me:</VERS>\r\n      <VERS vnumber=\"29\">For that they hated knowledge, And did not choose the fear of Jehovah:</VERS>\r\n      <VERS vnumber=\"30\">They would none of my counsel; They despised all my reproof.</VERS>\r\n      <VERS vnumber=\"31\">Therefore shall they eat of the fruit of their own way, And be filled with their own devices.</VERS>\r\n      <VERS vnumber=\"32\">For the backsliding of the simple shall slay them, And the careless ease of fools shall destroy them.</VERS>\r\n      <VERS vnumber=\"33\">But whoso hearkeneth unto me shall dwell securely, And shall be quiet without fear of evil.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">My son, if thou wilt receive my words, And lay up my commandments with thee;</VERS>\r\n      <VERS vnumber=\"2\">So as to incline thine ear unto wisdom, And apply thy heart to understanding;</VERS>\r\n      <VERS vnumber=\"3\">Yea, if thou cry after discernment, And lift up thy voice for understanding;</VERS>\r\n      <VERS vnumber=\"4\">If thou seek her as silver, And search for her as for hid treasures:</VERS>\r\n      <VERS vnumber=\"5\">Then shalt thou understand the fear of Jehovah, And find the knowledge of God.</VERS>\r\n      <VERS vnumber=\"6\">For Jehovah giveth wisdom; Out of his mouth [cometh] knowledge and understanding:</VERS>\r\n      <VERS vnumber=\"7\">He layeth up sound wisdom for the upright; [He is] a shield to them that walk in integrity;</VERS>\r\n      <VERS vnumber=\"8\">That he may guard the paths of justice, And preserve the way of his saints.</VERS>\r\n      <VERS vnumber=\"9\">Then shalt thou understand righteousness and justice, And equity, [yea], every good path.</VERS>\r\n      <VERS vnumber=\"10\">For wisdom shall enter into thy heart, And knowledge shall be pleasant unto thy soul;</VERS>\r\n      <VERS vnumber=\"11\">Discretion shall watch over thee; Understanding shall keep thee:</VERS>\r\n      <VERS vnumber=\"12\">To deliver thee from the way of evil, From the men that speak perverse things;</VERS>\r\n      <VERS vnumber=\"13\">Who forsake the paths of uprightness, To walk in the ways of darkness;</VERS>\r\n      <VERS vnumber=\"14\">Who rejoice to do evil, And delight in the perverseness of evil;</VERS>\r\n      <VERS vnumber=\"15\">Who are crooked in their ways, And wayward in their paths:</VERS>\r\n      <VERS vnumber=\"16\">To deliver thee from the strange woman, Even from the foreigner that flattereth with her words;</VERS>\r\n      <VERS vnumber=\"17\">That forsaketh the friend of her youth, And forgetteth the covenant of her God:</VERS>\r\n      <VERS vnumber=\"18\">For her house inclineth unto death, And her paths unto the dead;</VERS>\r\n      <VERS vnumber=\"19\">None that go unto her return again, Neither do they attain unto the paths of life:</VERS>\r\n      <VERS vnumber=\"20\">That thou mayest walk in the way of good men, And keep the paths of the righteous.</VERS>\r\n      <VERS vnumber=\"21\">For the upright shall dwell in the land, And the perfect shall remain in it.</VERS>\r\n      <VERS vnumber=\"22\">But the wicked shall be cut off from the land, And the treacherous shall be rooted out of it.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">My son, forget not my law; But let thy heart keep my commandments:</VERS>\r\n      <VERS vnumber=\"2\">For length of days, and years of life, And peace, will they add to thee.</VERS>\r\n      <VERS vnumber=\"3\">Let not kindness and truth forsake thee: Bind them about thy neck; Write them upon the tablet of thy heart:</VERS>\r\n      <VERS vnumber=\"4\">So shalt thou find favor and good understanding In the sight of God and man.</VERS>\r\n      <VERS vnumber=\"5\">Trust in Jehovah with all thy heart, And lean not upon thine own understanding:</VERS>\r\n      <VERS vnumber=\"6\">In all thy ways acknowledge him, And he will direct thy paths.</VERS>\r\n      <VERS vnumber=\"7\">Be not wise in thine own eyes; Fear Jehovah, and depart from evil:</VERS>\r\n      <VERS vnumber=\"8\">It will be health to thy navel, And marrow to thy bones.</VERS>\r\n      <VERS vnumber=\"9\">Honor Jehovah with thy substance, And with the first-fruits of all thine increase:</VERS>\r\n      <VERS vnumber=\"10\">So shall thy barns be filled with plenty, And thy vats shall overflow with new wine.</VERS>\r\n      <VERS vnumber=\"11\">My son, despise not the chastening of Jehovah; Neither be weary of his reproof:</VERS>\r\n      <VERS vnumber=\"12\">For whom Jehovah loveth he reproveth; Even as a father the son in whom he delighteth.</VERS>\r\n      <VERS vnumber=\"13\">Happy is the man that findeth wisdom, And the man that getteth understanding.</VERS>\r\n      <VERS vnumber=\"14\">For the gaining of it is better than the gaining of       silver, And the profit thereof than fine gold.</VERS>\r\n      <VERS vnumber=\"15\">She is more precious than rubies: And none of the things thou canst desire are to be compared unto       her.</VERS>\r\n      <VERS vnumber=\"16\">Length of days is in her right hand; In her left hand are riches and honor.</VERS>\r\n      <VERS vnumber=\"17\">Her ways are ways of pleasantness, And all her paths are peace.</VERS>\r\n      <VERS vnumber=\"18\">She is a tree of life to them that lay hold upon her: And happy is every one that retaineth her.</VERS>\r\n      <VERS vnumber=\"19\">Jehovah by wisdom founded the earth; By understanding he established the heavens.</VERS>\r\n      <VERS vnumber=\"20\">By his knowledge the depths were broken up, And the skies drop down the dew.</VERS>\r\n      <VERS vnumber=\"21\">My son, let them not depart from thine eyes; Keep sound wisdom and discretion:</VERS>\r\n      <VERS vnumber=\"22\">So shall they be life unto thy soul, And grace to thy neck.</VERS>\r\n      <VERS vnumber=\"23\">Then shalt thou walk in thy way securely, And thy foot shall not stumble.</VERS>\r\n      <VERS vnumber=\"24\">When thou liest down, thou shalt not be afraid: Yea, thou shalt lie down, and thy sleep shall be sweet.</VERS>\r\n      <VERS vnumber=\"25\">Be not afraid of sudden fear, Neither of the desolation of the wicked, when it cometh:</VERS>\r\n      <VERS vnumber=\"26\">For Jehovah will be thy confidence, And will keep thy foot from being taken.</VERS>\r\n      <VERS vnumber=\"27\">Withhold not good from them to whom it is due, When it is in the power of thy hand to do it.</VERS>\r\n      <VERS vnumber=\"28\">Say not unto thy neighbor, Go, and come again, And to-morrow I will give; When thou hast it by thee.</VERS>\r\n      <VERS vnumber=\"29\">Devise not evil against thy neighbor, Seeing he dwelleth securely by thee.</VERS>\r\n      <VERS vnumber=\"30\">Strive not with a man without cause, If he have done thee no harm.</VERS>\r\n      <VERS vnumber=\"31\">Envy thou not the man of violence, And choose none of his ways.</VERS>\r\n      <VERS vnumber=\"32\">For the perverse is an abomination to Jehovah; But his friendship is with the upright.</VERS>\r\n      <VERS vnumber=\"33\">The curse of Jehovah is in the house of the wicked; But he blesseth the habitation of the righteous.</VERS>\r\n      <VERS vnumber=\"34\">Surely he scoffeth at the scoffers; But he giveth grace unto the lowly.</VERS>\r\n      <VERS vnumber=\"35\">The wise shall inherit glory; But shame shall be the promotion of fools.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">Hear, [my] sons, the instruction of a father, And attend to know understanding:</VERS>\r\n      <VERS vnumber=\"2\">For I give you good doctrine; Forsake ye not my law.</VERS>\r\n      <VERS vnumber=\"3\">For I was a son unto my father, Tender and only beloved in the sight of my mother.</VERS>\r\n      <VERS vnumber=\"4\">And he taught me, and said unto me: Let thy heart retain my words; Keep my commandments, and live;</VERS>\r\n      <VERS vnumber=\"5\">Get wisdom, get understanding; Forget not, neither decline from the words of my mouth;</VERS>\r\n      <VERS vnumber=\"6\">Forsake her not, and she will preserve thee; Love her, and she will keep thee.</VERS>\r\n      <VERS vnumber=\"7\">Wisdom [is] the principal thing; [therefore] get wisdom; Yea, with all thy getting get understanding.</VERS>\r\n      <VERS vnumber=\"8\">Exalt her, and she will promote thee; She will bring thee to honor, when thou dost embrace her.</VERS>\r\n      <VERS vnumber=\"9\">She will give to thy head a chaplet of grace; A crown of beauty will she deliver to thee.</VERS>\r\n      <VERS vnumber=\"10\">Hear, O my son, and receive my sayings; And the years of thy life shall be many.</VERS>\r\n      <VERS vnumber=\"11\">I have taught thee in the way of wisdom; I have led thee in paths of uprightness.</VERS>\r\n      <VERS vnumber=\"12\">When thou goest, thy steps shall not be straitened; And if thou runnest, thou shalt not stumble.</VERS>\r\n      <VERS vnumber=\"13\">Take fast hold of instruction; let her not go: Keep her; for she is thy life.</VERS>\r\n      <VERS vnumber=\"14\">Enter not into the path of the wicked, And walk not in the way of evil men.</VERS>\r\n      <VERS vnumber=\"15\">Avoid it, pass not by it; Turn from it, and pass on.</VERS>\r\n      <VERS vnumber=\"16\">For they sleep not, except they do evil; And their sleep is taken away, unless they cause some to fall.</VERS>\r\n      <VERS vnumber=\"17\">For they eat the bread of wickedness, And drink the wine of violence.</VERS>\r\n      <VERS vnumber=\"18\">But the path of the righteous is as the dawning light, That shineth more and more unto the perfect day.</VERS>\r\n      <VERS vnumber=\"19\">The way of the wicked is as darkness: They know not at what they stumble.</VERS>\r\n      <VERS vnumber=\"20\">My son, attend to my words; Incline thine ear unto my sayings.</VERS>\r\n      <VERS vnumber=\"21\">Let them not depart from thine eyes; Keep them in the midst of thy heart.</VERS>\r\n      <VERS vnumber=\"22\">For they are life unto those that find them, And health to all their flesh.</VERS>\r\n      <VERS vnumber=\"23\">Keep thy heart with all diligence; For out of it are the issues of life.</VERS>\r\n      <VERS vnumber=\"24\">Put away from thee a wayward mouth, And perverse lips put far from thee.</VERS>\r\n      <VERS vnumber=\"25\">Let thine eyes look right on, And let thine eyelids look straight before thee.</VERS>\r\n      <VERS vnumber=\"26\">Make level the path of thy feet, And let all thy ways be established.</VERS>\r\n      <VERS vnumber=\"27\">Turn not to the right hand nor to the left: Remove thy foot from evil.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">My son, attend unto my wisdom; Incline thine ear to my understanding:</VERS>\r\n      <VERS vnumber=\"2\">That thou mayest preserve discretion, And that thy lips may keep knowledge.</VERS>\r\n      <VERS vnumber=\"3\">For the lips of a strange woman drop honey, And her mouth is smoother than oil:</VERS>\r\n      <VERS vnumber=\"4\">But in the end she is bitter as wormwood, Sharp as a two-edged sword.</VERS>\r\n      <VERS vnumber=\"5\">Her feet go down to death; Her steps take hold on Sheol;</VERS>\r\n      <VERS vnumber=\"6\">So that she findeth not the level path of life: Her ways are unstable, [and] she knoweth [it] not.</VERS>\r\n      <VERS vnumber=\"7\">Now therefore, [my] sons, hearken unto me, And depart not from the words of my mouth.</VERS>\r\n      <VERS vnumber=\"8\">Remove thy way far from her, And come not nigh the door of her house;</VERS>\r\n      <VERS vnumber=\"9\">Lest thou give thine honor unto others, And thy years unto the cruel;</VERS>\r\n      <VERS vnumber=\"10\">Lest strangers be filled with thy strength, And thy labors [be] in the house of an alien,</VERS>\r\n      <VERS vnumber=\"11\">And thou mourn at thy latter end, When thy flesh and thy body are consumed,</VERS>\r\n      <VERS vnumber=\"12\">And say, How have I hated instruction, And my heart despised reproof;</VERS>\r\n      <VERS vnumber=\"13\">Neither have I obeyed the voice of my teachers, Nor inclined mine ear to them that instructed me!</VERS>\r\n      <VERS vnumber=\"14\">I was well-nigh in all evil In the midst of the assembly and congregation.</VERS>\r\n      <VERS vnumber=\"15\">Drink waters out of thine own cistern, And running waters out of thine own well.</VERS>\r\n      <VERS vnumber=\"16\">Should thy springs be dispersed abroad, And streams of water in the streets?</VERS>\r\n      <VERS vnumber=\"17\">Let them be for thyself alone, And not for strangers with thee.</VERS>\r\n      <VERS vnumber=\"18\">Let thy fountain be blessed; And rejoice in the wife of thy youth.</VERS>\r\n      <VERS vnumber=\"19\">[As] a loving hind and a pleasant doe, Let her breasts satisfy thee at all times; And be thou ravished always with her love.</VERS>\r\n      <VERS vnumber=\"20\">For why shouldest thou, my son, be ravished with a       strange woman, And embrace the bosom of a foreigner?</VERS>\r\n      <VERS vnumber=\"21\">For the ways of man are before the eyes of Jehovah; And he maketh level all his paths.</VERS>\r\n      <VERS vnumber=\"22\">His own iniquities shall take the wicked, And he shall be holden with the cords of his sin.</VERS>\r\n      <VERS vnumber=\"23\">He shall die for lack of instruction; And in the greatness of his folly he shall go astray.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">My son, if thou art become surety for thy neighbor, If thou hast stricken thy hands for a stranger;</VERS>\r\n      <VERS vnumber=\"2\">Thou art snared with the words of thy mouth, Thou art taken with the words of thy mouth.</VERS>\r\n      <VERS vnumber=\"3\">Do this now, my son, and deliver thyself, Seeing thou art come into the hand of thy neighbor: Go, humble thyself, and importune thy neighbor;</VERS>\r\n      <VERS vnumber=\"4\">Give not sleep to thine eyes, Nor slumber to thine eyelids;</VERS>\r\n      <VERS vnumber=\"5\">Deliver thyself as a roe from the hand [of the hunter], And as a bird from the hand of the fowler.</VERS>\r\n      <VERS vnumber=\"6\">Go to the ant, thou sluggard; Consider her ways, and be wise:</VERS>\r\n      <VERS vnumber=\"7\">Which having no chief, Overseer, or ruler,</VERS>\r\n      <VERS vnumber=\"8\">Provideth her bread in the summer, And gathereth her food in the harvest.</VERS>\r\n      <VERS vnumber=\"9\">How long wilt thou sleep, O sluggard? When wilt thou arise out of thy sleep?</VERS>\r\n      <VERS vnumber=\"10\">[Yet] a little sleep, a little slumber, A little folding of the hands to sleep:</VERS>\r\n      <VERS vnumber=\"11\">So shall thy poverty come as a robber, And thy want as an armed man.</VERS>\r\n      <VERS vnumber=\"12\">A worthless person, a man of iniquity, Is he that walketh with a perverse mouth;</VERS>\r\n      <VERS vnumber=\"13\">That winketh with his eyes, that speaketh with his feet, That maketh signs with his fingers;</VERS>\r\n      <VERS vnumber=\"14\">In whose heart is perverseness, Who deviseth evil continually, Who soweth discord.</VERS>\r\n      <VERS vnumber=\"15\">Therefore shall his calamity come suddenly; On a sudden shall he be broken, and that without remedy.</VERS>\r\n      <VERS vnumber=\"16\">There are six things which Jehovah hateth; Yea, seven which are an abomination unto him:</VERS>\r\n      <VERS vnumber=\"17\">Haughty eyes, a lying tongue, And hands that shed innocent blood;</VERS>\r\n      <VERS vnumber=\"18\">A heart that deviseth wicked purposes, Feet that are swift in running to mischief,</VERS>\r\n      <VERS vnumber=\"19\">A false witness that uttereth lies, And he that soweth discord among brethren.</VERS>\r\n      <VERS vnumber=\"20\">My son, keep the commandment of thy father, And forsake not the law of thy mother:</VERS>\r\n      <VERS vnumber=\"21\">Bind them continually upon thy heart; Tie them about thy neck.</VERS>\r\n      <VERS vnumber=\"22\">When thou walkest, it shall lead thee; When thou sleepest, it shall watch over thee; And when thou awakest, it shall talk with thee.</VERS>\r\n      <VERS vnumber=\"23\">For the commandment is a lamp; and the law is light; And reproofs of instruction are the way of life:</VERS>\r\n      <VERS vnumber=\"24\">To keep thee from the evil woman, From the flattery of the foreigner`s tongue.</VERS>\r\n      <VERS vnumber=\"25\">Lust not after her beauty in thy heart; Neither let her take thee with her eyelids.</VERS>\r\n      <VERS vnumber=\"26\">For on account of a harlot [a man is brought] to a piece       of bread; And the adulteress hunteth for the precious life.</VERS>\r\n      <VERS vnumber=\"27\">Can a man take fire in his bosom, And his clothes not be burned?</VERS>\r\n      <VERS vnumber=\"28\">Or can one walk upon hot coals, And his feet not be scorched?</VERS>\r\n      <VERS vnumber=\"29\">So he that goeth in to his neighbor`s wife; Whosoever toucheth her shall not be unpunished.</VERS>\r\n      <VERS vnumber=\"30\">Men do not despise a thief, if he steal To satisfy himself when he is hungry:</VERS>\r\n      <VERS vnumber=\"31\">But if he be found, he shall restore sevenfold; He shall give all the substance of his house.</VERS>\r\n      <VERS vnumber=\"32\">He that committeth adultery with a woman is void of       understanding: He doeth it who would destroy his own soul.</VERS>\r\n      <VERS vnumber=\"33\">Wounds and dishonor shall he get; And his reproach shall not be wiped away.</VERS>\r\n      <VERS vnumber=\"34\">For jealousy is the rage of a man; And he will not spare in the day of vengeance.</VERS>\r\n      <VERS vnumber=\"35\">He will not regard any ransom; Neither will he rest content, though thou givest many gifts.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">My son, keep my words, And lay up my commandments with thee.</VERS>\r\n      <VERS vnumber=\"2\">Keep my commandments and live; And my law as the apple of thine eye.</VERS>\r\n      <VERS vnumber=\"3\">Bind them upon thy fingers; Write them upon the tablet of thy heart.</VERS>\r\n      <VERS vnumber=\"4\">Say unto wisdom, Thou art my sister; And call understanding [thy] kinswoman:</VERS>\r\n      <VERS vnumber=\"5\">That they may keep thee from the strange woman, From the foreigner that flattereth with her words.</VERS>\r\n      <VERS vnumber=\"6\">For at the window of my house I looked forth through my lattice;</VERS>\r\n      <VERS vnumber=\"7\">And I beheld among the simple ones, I discerned among the youths, A young man void of understanding,</VERS>\r\n      <VERS vnumber=\"8\">Passing through the street near her corner; And he went the way to her house,</VERS>\r\n      <VERS vnumber=\"9\">In the twilight, in the evening of the day, In the middle of the night and in the darkness.</VERS>\r\n      <VERS vnumber=\"10\">And, behold, there met him a woman With the attire of a harlot, and wily of heart.</VERS>\r\n      <VERS vnumber=\"11\">She is clamorous and wilful; Her feet abide not in her house:</VERS>\r\n      <VERS vnumber=\"12\">Now she is in the streets, now in the broad places, And lieth in wait at every corner.</VERS>\r\n      <VERS vnumber=\"13\">So she caught him, and kissed him, [And] with an impudent face she said unto him:</VERS>\r\n      <VERS vnumber=\"14\">Sacrifices of peace-offerings are with me; This day have I paid my vows.</VERS>\r\n      <VERS vnumber=\"15\">Therefore came I forth to meet thee, Diligently to seek thy face, and I have found thee.</VERS>\r\n      <VERS vnumber=\"16\">I have spread my couch with carpets of tapestry, With striped cloths of the yarn of Egypt.</VERS>\r\n      <VERS vnumber=\"17\">I have perfumed my bed With myrrh, aloes, and cinnamon.</VERS>\r\n      <VERS vnumber=\"18\">Come, let us take our fill of love until the morning; Let us solace ourselves with loves.</VERS>\r\n      <VERS vnumber=\"19\">For the man is not at home; He is gone a long journey:</VERS>\r\n      <VERS vnumber=\"20\">He hath taken a bag of money with him; He will come home at the full moon.</VERS>\r\n      <VERS vnumber=\"21\">With her much fair speech she causeth him to yield; With the flattering of her lips she forceth him along.</VERS>\r\n      <VERS vnumber=\"22\">He goeth after her straightway, As an ox goeth to the slaughter, Or as [one in] fetters to the correction of the fool;</VERS>\r\n      <VERS vnumber=\"23\">Till an arrow strike through his liver; As a bird hasteth to the snare, And knoweth not that it is for his life.</VERS>\r\n      <VERS vnumber=\"24\">Now therefore, [my] sons, hearken unto me, And attend to the words of my mouth.</VERS>\r\n      <VERS vnumber=\"25\">Let not thy heart decline to her ways; Go not astray in her paths.</VERS>\r\n      <VERS vnumber=\"26\">For she hath cast down many wounded: Yea, all her slain are a mighty host.</VERS>\r\n      <VERS vnumber=\"27\">Her house is the way to Sheol, Going down to the chambers of death.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">Doth not wisdom cry, And understanding put forth her voice?</VERS>\r\n      <VERS vnumber=\"2\">On the top of high places by the way, Where the paths meet, she standeth;</VERS>\r\n      <VERS vnumber=\"3\">Beside the gates, at the entry of the city, At the coming in at the doors, she crieth aloud:</VERS>\r\n      <VERS vnumber=\"4\">Unto you, O men, I call; And my voice is to the sons of men.</VERS>\r\n      <VERS vnumber=\"5\">O ye simple, understand prudence; And, ye fools, be of an understanding heart.</VERS>\r\n      <VERS vnumber=\"6\">Hear, for I will speak excellent things; And the opening of my lips shall be right things.</VERS>\r\n      <VERS vnumber=\"7\">For my mouth shall utter truth; And wickedness is an abomination to my lips.</VERS>\r\n      <VERS vnumber=\"8\">All the words of my mouth are in righteousness; There is nothing crooked or perverse in them.</VERS>\r\n      <VERS vnumber=\"9\">They are all plain to him that understandeth, And right to them that find knowledge.</VERS>\r\n      <VERS vnumber=\"10\">Receive my instruction, and not silver; And knowledge rather than choice gold.</VERS>\r\n      <VERS vnumber=\"11\">For wisdom is better than rubies; And all the things that may be desired are not to be compared       unto it.</VERS>\r\n      <VERS vnumber=\"12\">I wisdom have made prudence my dwelling, And find out knowledge [and] discretion.</VERS>\r\n      <VERS vnumber=\"13\">The fear of Jehovah is to hate evil: Pride, and arrogancy, and the evil way, And the perverse mouth, do I hate.</VERS>\r\n      <VERS vnumber=\"14\">Counsel is mine, and sound knowledge: I am understanding; I have might.</VERS>\r\n      <VERS vnumber=\"15\">By me kings reign, And princes decree justice.</VERS>\r\n      <VERS vnumber=\"16\">By me princes rule, And nobles, [even] all the judges of the earth.</VERS>\r\n      <VERS vnumber=\"17\">I love them that love me; And those that seek me diligently shall find me.</VERS>\r\n      <VERS vnumber=\"18\">Riches and honor are with me; [Yea], durable wealth and righteousness.</VERS>\r\n      <VERS vnumber=\"19\">My fruit is better than gold, yea, than fine gold; And my revenue than choice silver.</VERS>\r\n      <VERS vnumber=\"20\">I walk in the way of righteousness, In the midst of the paths of justice;</VERS>\r\n      <VERS vnumber=\"21\">That I may cause those that love me to inherit substance, And that I may fill their treasuries.</VERS>\r\n      <VERS vnumber=\"22\">Jehovah possessed me in the beginning of his way, Before his works of old.</VERS>\r\n      <VERS vnumber=\"23\">I was set up from everlasting, from the beginning, Before the earth was.</VERS>\r\n      <VERS vnumber=\"24\">When there were no depths, I was brought forth, When there were no fountains abounding with water.</VERS>\r\n      <VERS vnumber=\"25\">Before the mountains were settled, Before the hills was I brought forth;</VERS>\r\n      <VERS vnumber=\"26\">While as yet he had not made the earth, nor the fields, Nor the beginning of the dust of the world.</VERS>\r\n      <VERS vnumber=\"27\">When he established the heavens, I was there: When he set a circle upon the face of the deep,</VERS>\r\n      <VERS vnumber=\"28\">When he made firm the skies above, When the fountains of the deep became strong,</VERS>\r\n      <VERS vnumber=\"29\">When he gave to the sea its bound, That the waters should not transgress his commandment, When he marked out the foundations of the earth;</VERS>\r\n      <VERS vnumber=\"30\">Then I was by him, [as] a master workman; And I was daily [his] delight, Rejoicing always before him,</VERS>\r\n      <VERS vnumber=\"31\">Rejoicing in his habitable earth; And my delight was with the sons of men.</VERS>\r\n      <VERS vnumber=\"32\">Now therefore, [my] sons, hearken unto me; For blessed are they that keep my ways.</VERS>\r\n      <VERS vnumber=\"33\">Hear instruction, and be wise, And refuse it not.</VERS>\r\n      <VERS vnumber=\"34\">Blessed is the man that heareth me, Watching daily at my gates, Waiting at the posts of my doors.</VERS>\r\n      <VERS vnumber=\"35\">For whoso findeth me findeth life, And shall obtain favor of Jehovah.</VERS>\r\n      <VERS vnumber=\"36\">But he that sinneth against me wrongeth his own soul: All they that hate me love death.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">Wisdom hath builded her house; She hath hewn out her seven pillars:</VERS>\r\n      <VERS vnumber=\"2\">She hath killed her beasts; She hath mingled her wine; She hath also furnished her table:</VERS>\r\n      <VERS vnumber=\"3\">She hath sent forth her maidens; She crieth upon the highest places of the city:</VERS>\r\n      <VERS vnumber=\"4\">Whoso is simple, let him turn in hither: As for him that is void of understanding, she saith to him,</VERS>\r\n      <VERS vnumber=\"5\">Come, eat ye of my bread, And drink of the wine which I have mingled.</VERS>\r\n      <VERS vnumber=\"6\">Leave off, ye simple ones, and live; And walk in the way of understanding.</VERS>\r\n      <VERS vnumber=\"7\">He that correcteth a scoffer getteth to himself reviling; And he that reproveth a wicked man [getteth] himself a blot.</VERS>\r\n      <VERS vnumber=\"8\">Reprove not a scoffer, lest he hate thee: Reprove a wise man, and he will love thee.</VERS>\r\n      <VERS vnumber=\"9\">Give [instruction] to a wise man, and he will be yet wiser: Teach a righteous man, and he will increase in learning.</VERS>\r\n      <VERS vnumber=\"10\">The fear of Jehovah is the beginning of wisdom; And the knowledge of the Holy One is understanding.</VERS>\r\n      <VERS vnumber=\"11\">For by me thy days shall be multiplied, And the years of thy life shall be increased.</VERS>\r\n      <VERS vnumber=\"12\">If thou art wise, thou art wise for thyself; And if thou scoffest, thou alone shalt bear it.</VERS>\r\n      <VERS vnumber=\"13\">The foolish woman is clamorous; [She is] simple, and knoweth nothing.</VERS>\r\n      <VERS vnumber=\"14\">And she sitteth at the door of her house, On a seat in the high places of the city,</VERS>\r\n      <VERS vnumber=\"15\">To call to them that pass by, Who go right on their ways:</VERS>\r\n      <VERS vnumber=\"16\">Whoso is simple, let him turn in hither; And as for him that is void of understanding, she saith to him,</VERS>\r\n      <VERS vnumber=\"17\">Stolen waters are sweet, And bread [eaten] in secret is pleasant.</VERS>\r\n      <VERS vnumber=\"18\">But he knoweth not that the dead are there; That her guests are in the depths of Sheol.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">The proverbs of Solomon.      A wise son maketh a glad father; But a foolish son is the heaviness of his mother.</VERS>\r\n      <VERS vnumber=\"2\">Treasures of wickedness profit nothing; But righteousness delivereth from death.</VERS>\r\n      <VERS vnumber=\"3\">Jehovah will not suffer the soul of the righteous to       famish; But he thrusteth away the desire of the wicked.</VERS>\r\n      <VERS vnumber=\"4\">He becometh poor that worketh with a slack hand; But the hand of the diligent maketh rich.</VERS>\r\n      <VERS vnumber=\"5\">He that gathereth in summer is a wise son; [But] he that sleepeth in harvest is a son that causeth shame.</VERS>\r\n      <VERS vnumber=\"6\">Blessings are upon the head of the righteous; But violence covereth the mouth of the wicked.</VERS>\r\n      <VERS vnumber=\"7\">The memory of the righteous is blessed; But the name of the wicked shall rot.</VERS>\r\n      <VERS vnumber=\"8\">The wise in heart will receive commandments; But a prating fool shall fall.</VERS>\r\n      <VERS vnumber=\"9\">He that walketh uprightly walketh surely; But he that perverteth his ways shall be known.</VERS>\r\n      <VERS vnumber=\"10\">He that winketh with the eye causeth sorrow; But a prating fool shall fall.</VERS>\r\n      <VERS vnumber=\"11\">The mouth of the righteous is a fountain of life; But violence covereth the mouth of the wicked.</VERS>\r\n      <VERS vnumber=\"12\">Hatred stirreth up strifes; But love covereth all transgressions.</VERS>\r\n      <VERS vnumber=\"13\">In the lips of him that hath discernment wisdom is found; But a rod is for the back of him that is void of understanding.</VERS>\r\n      <VERS vnumber=\"14\">Wise men lay up knowledge; But the mouth of the foolish is a present destruction.</VERS>\r\n      <VERS vnumber=\"15\">The rich man`s wealth is his strong city: The destruction of the poor is their poverty.</VERS>\r\n      <VERS vnumber=\"16\">The labor of the righteous [tendeth] to life; The increase of the wicked, to sin.</VERS>\r\n      <VERS vnumber=\"17\">He is in the way of life that heedeth correction; But he that forsaketh reproof erreth.</VERS>\r\n      <VERS vnumber=\"18\">He that hideth hatred is of lying lips; And he that uttereth a slander is a fool.</VERS>\r\n      <VERS vnumber=\"19\">In the multitude of words there wanteth not       transgression; But he that refraineth his lips doeth wisely.</VERS>\r\n      <VERS vnumber=\"20\">The tongue of the righteous is [as] choice silver: The heart of the wicked is little worth.</VERS>\r\n      <VERS vnumber=\"21\">The lips of the righteous feed many; But the foolish die for lack of understanding.</VERS>\r\n      <VERS vnumber=\"22\">The blessing of Jehovah, it maketh rich; And he addeth no sorrow therewith.</VERS>\r\n      <VERS vnumber=\"23\">It is as sport to a fool to do wickedness; And [so is] wisdom to a man of understanding.</VERS>\r\n      <VERS vnumber=\"24\">The fear of the wicked, it shall come upon him; And the desire of the righteous shall be granted.</VERS>\r\n      <VERS vnumber=\"25\">When the whirlwind passeth, the wicked is no more; But the righteous is an everlasting foundation.</VERS>\r\n      <VERS vnumber=\"26\">As vinegar to the teeth, and as smoke to the eyes, So is the sluggard to them that send him.</VERS>\r\n      <VERS vnumber=\"27\">The fear of Jehovah prolongeth days; But the years of the wicked shall be shortened.</VERS>\r\n      <VERS vnumber=\"28\">The hope of the righteous [shall be] gladness; But the expectation of the wicked shall perish.</VERS>\r\n      <VERS vnumber=\"29\">The way of Jehovah is a stronghold to the upright; But it is a destruction to the workers of iniquity.</VERS>\r\n      <VERS vnumber=\"30\">The righteous shall never be removed; But the wicked shall not dwell in the land.</VERS>\r\n      <VERS vnumber=\"31\">The mouth of the righteous bringeth forth wisdom; But the perverse tongue shall be cut off.</VERS>\r\n      <VERS vnumber=\"32\">The lips of the righteous know what is acceptable; But the mouth of the wicked [speaketh] perverseness.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">A false balance is an abomination to Jehovah; But a just weight is his delight.</VERS>\r\n      <VERS vnumber=\"2\">When pride cometh, then cometh shame; But with the lowly is wisdom.</VERS>\r\n      <VERS vnumber=\"3\">The integrity of the upright shall guide them; But the perverseness of the treacherous shall destroy them.</VERS>\r\n      <VERS vnumber=\"4\">Riches profit not in the day of wrath; But righteousness delivereth from death.</VERS>\r\n      <VERS vnumber=\"5\">The righteousness of the perfect shall direct his way; But the wicked shall fall by his own wickedness.</VERS>\r\n      <VERS vnumber=\"6\">The righteousness of the upright shall deliver them; But the treacherous shall be taken in their own iniquity.</VERS>\r\n      <VERS vnumber=\"7\">When a wicked man dieth, [his] expectation shall perish; And the hope of iniquity perisheth.</VERS>\r\n      <VERS vnumber=\"8\">The righteous is delivered out of trouble, And the wicked cometh in his stead.</VERS>\r\n      <VERS vnumber=\"9\">With his mouth the godless man destroyeth his neighbor; But through knowledge shall the righteous be delivered.</VERS>\r\n      <VERS vnumber=\"10\">When it goeth well with the righteous, the city       rejoiceth; And when the wicked perish, there is shouting.</VERS>\r\n      <VERS vnumber=\"11\">By the blessing of the upright the city is exalted; But it is overthrown by the mouth of the wicked.</VERS>\r\n      <VERS vnumber=\"12\">He that despiseth his neighbor is void of wisdom; But a man of understanding holdeth his peace.</VERS>\r\n      <VERS vnumber=\"13\">He that goeth about as a tale-bearer revealeth secrets; But he that is of a faithful spirit concealeth a matter.</VERS>\r\n      <VERS vnumber=\"14\">Where no wise guidance is, the people falleth; But in the multitude of counsellors there is safety.</VERS>\r\n      <VERS vnumber=\"15\">He that is surety for a stranger shall smart for it; But he that hateth suretyship is secure.</VERS>\r\n      <VERS vnumber=\"16\">A gracious woman obtaineth honor; And violent men obtain riches.</VERS>\r\n      <VERS vnumber=\"17\">The merciful man doeth good to his own soul; But he that is cruel troubleth his own flesh.</VERS>\r\n      <VERS vnumber=\"18\">The wicked earneth deceitful wages; But he that soweth righteousness [hath] a sure reward.</VERS>\r\n      <VERS vnumber=\"19\">He that is stedfast in righteousness [shall attain] unto       life; And he that pursueth evil [doeth it] to his own death.</VERS>\r\n      <VERS vnumber=\"20\">They that are perverse in heart are an abomination to       Jehovah; But such as are perfect in [their] way are his delight.</VERS>\r\n      <VERS vnumber=\"21\">[Though] hand [join] in hand, the evil man shall not be       unpunished; But the seed of the righteous shall be delivered.</VERS>\r\n      <VERS vnumber=\"22\">[As] a ring of gold in a swine`s snout, [So is] a fair woman that is without discretion.</VERS>\r\n      <VERS vnumber=\"23\">The desire of the righteous is only good; [But] the expectation of the wicked is wrath.</VERS>\r\n      <VERS vnumber=\"24\">There is that scattereth, and increaseth yet more; And there is that withholdeth more than is meet, but [it       tendeth] only to want.</VERS>\r\n      <VERS vnumber=\"25\">The liberal soul shall be made fat; And he that watereth shall be watered also himself.</VERS>\r\n      <VERS vnumber=\"26\">He that withholdeth grain, the people shall curse him; But blessing shall be upon the head of him that selleth it.</VERS>\r\n      <VERS vnumber=\"27\">He that diligently seeketh good seeketh favor; But he that searcheth after evil, it shall come unto him.</VERS>\r\n      <VERS vnumber=\"28\">He that trusteth in his riches shall fall; But the righteous shall flourish as the green leaf.</VERS>\r\n      <VERS vnumber=\"29\">He that troubleth his own house shall inherit the wind; And the foolish shall be servant to the wise of heart.</VERS>\r\n      <VERS vnumber=\"30\">The fruit of the righteous is a tree of life; And he that is wise winneth souls.</VERS>\r\n      <VERS vnumber=\"31\">Behold, the righteous shall be recompensed in the earth: How much more the wicked and the sinner!</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">Whoso loveth correction loveth knowledge; But he that hateth reproof is brutish.</VERS>\r\n      <VERS vnumber=\"2\">A good man shall obtain favor of Jehovah; But a man of wicked devices will he condemn.</VERS>\r\n      <VERS vnumber=\"3\">A man shall not be established by wickedness; But the root of the righteous shall not be moved.</VERS>\r\n      <VERS vnumber=\"4\">A worthy woman is the crown of her husband; But she that maketh ashamed is as rottenness in his bones.</VERS>\r\n      <VERS vnumber=\"5\">The thoughts of the righteous are just; [But] the counsels of the wicked are deceit.</VERS>\r\n      <VERS vnumber=\"6\">The words of the wicked are of lying in wait for blood; But the mouth of the upright shall deliver them.</VERS>\r\n      <VERS vnumber=\"7\">The wicked are overthrown, and are not; But the house of the righteous shall stand.</VERS>\r\n      <VERS vnumber=\"8\">A man shall be commended according to his wisdom; But he that is of a perverse heart shall be despised.</VERS>\r\n      <VERS vnumber=\"9\">Better is he that is lightly esteemed, and hath a servant, Than he that honoreth himself, and lacketh bread.</VERS>\r\n      <VERS vnumber=\"10\">A righteous man regardeth the life of his beast; But the tender mercies of the wicked are cruel.</VERS>\r\n      <VERS vnumber=\"11\">He that tilleth his land shall have plenty of bread; But he that followeth after vain [persons] is void of       understanding.</VERS>\r\n      <VERS vnumber=\"12\">The wicked desireth the net of evil men; But the root of the righteous yieldeth [fruit].</VERS>\r\n      <VERS vnumber=\"13\">In the transgression of the lips is a snare to the evil       man; But the righteous shall come out of trouble.</VERS>\r\n      <VERS vnumber=\"14\">A man shall be satisfied with good by the fruit of his       mouth; And the doings of a man`s hands shall be rendered unto him.</VERS>\r\n      <VERS vnumber=\"15\">The way of a fool is right in his own eyes; But he that is wise hearkeneth unto counsel.</VERS>\r\n      <VERS vnumber=\"16\">A fool`s vexation is presently known; But a prudent man concealeth shame.</VERS>\r\n      <VERS vnumber=\"17\">He that uttereth truth showeth forth righteousness; But a false witness, deceit.</VERS>\r\n      <VERS vnumber=\"18\">There is that speaketh rashly like the piercings of a       sword; But the tongue of the wise is health.</VERS>\r\n      <VERS vnumber=\"19\">The lip of truth shall be established for ever; But a lying tongue is but for a moment.</VERS>\r\n      <VERS vnumber=\"20\">Deceit is in the heart of them that devise evil; But to the counsellors of peace is joy.</VERS>\r\n      <VERS vnumber=\"21\">There shall no mischief happen to the righteous; But the wicked shall be filled with evil.</VERS>\r\n      <VERS vnumber=\"22\">Lying lips are an abomination to Jehovah; But they that deal truly are his delight.</VERS>\r\n      <VERS vnumber=\"23\">A prudent man concealeth knowledge; But the heart of fools proclaimeth foolishness.</VERS>\r\n      <VERS vnumber=\"24\">The hand of the diligent shall bear rule; But the slothful shall be put under taskwork.</VERS>\r\n      <VERS vnumber=\"25\">Heaviness in the heart of a man maketh it stoop; But a good word maketh it glad.</VERS>\r\n      <VERS vnumber=\"26\">The righteous is a guide to his neighbor; But the way of the wicked causeth them to err.</VERS>\r\n      <VERS vnumber=\"27\">The slothful man roasteth not that which he took in       hunting; But the precious substance of men [is to] the diligent.</VERS>\r\n      <VERS vnumber=\"28\">In the way of righteousness is life; And in the pathway thereof there is no death.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">A wise son [heareth] his father`s instruction; But a scoffer heareth not rebuke.</VERS>\r\n      <VERS vnumber=\"2\">A man shall eat good by the fruit of his mouth; But the soul of the treacherous [shall eat] violence.</VERS>\r\n      <VERS vnumber=\"3\">He that guardeth his mouth keepeth his life; [But] he that openeth wide his lips shall have destruction.</VERS>\r\n      <VERS vnumber=\"4\">The soul of the sluggard desireth, and hath nothing; But the soul of the diligent shall be made fat.</VERS>\r\n      <VERS vnumber=\"5\">A righteous man hateth lying; But a wicked man is loathsome, and cometh to shame.</VERS>\r\n      <VERS vnumber=\"6\">Righteousness guardeth him that is upright in the way; But wickedness overthroweth the sinner.</VERS>\r\n      <VERS vnumber=\"7\">There is that maketh himself rich, yet hath nothing: There is that maketh himself poor, yet hath great wealth.</VERS>\r\n      <VERS vnumber=\"8\">The ransom of a man`s life is his riches; But the poor heareth no threatening.</VERS>\r\n      <VERS vnumber=\"9\">The light of the righteous rejoiceth; But the lamp of the wicked shall be put out.</VERS>\r\n      <VERS vnumber=\"10\">By pride cometh only contention; But with the well-advised is wisdom.</VERS>\r\n      <VERS vnumber=\"11\">Wealth gotten by vanity shall be diminished; But he that gathereth by labor shall have increase.</VERS>\r\n      <VERS vnumber=\"12\">Hope deferred maketh the heart sick; But when the desire cometh, it is a tree of life.</VERS>\r\n      <VERS vnumber=\"13\">Whoso despiseth the word bringeth destruction on himself; But he that feareth the commandment shall be rewarded.</VERS>\r\n      <VERS vnumber=\"14\">The law of the wise is a fountain of life, That one may depart from the snares of death.</VERS>\r\n      <VERS vnumber=\"15\">Good understanding giveth favor; But the way of the transgressor is hard.</VERS>\r\n      <VERS vnumber=\"16\">Every prudent man worketh with knowledge; But a fool flaunteth [his] folly.</VERS>\r\n      <VERS vnumber=\"17\">A wicked messenger falleth into evil; But a faithful ambassador is health.</VERS>\r\n      <VERS vnumber=\"18\">Poverty and shame [shall be to] him that refuseth       correction; But he that regardeth reproof shall be honored.</VERS>\r\n      <VERS vnumber=\"19\">The desire accomplished is sweet to the soul; But it is an abomination to fools to depart from evil.</VERS>\r\n      <VERS vnumber=\"20\">Walk with wise men, and thou shalt be wise; But the companion of fools shall smart for it.</VERS>\r\n      <VERS vnumber=\"21\">Evil pursueth sinners; But the righteous shall be recompensed with good.</VERS>\r\n      <VERS vnumber=\"22\">A good man leaveth an inheritance to his children`s       children; And the wealth of the sinner is laid up for the righteous.</VERS>\r\n      <VERS vnumber=\"23\">Much food [is in] the tillage of the poor; But there is that is destroyed by reason of injustice.</VERS>\r\n      <VERS vnumber=\"24\">He that spareth his rod hateth his son; But he that loveth him chasteneth him betimes.</VERS>\r\n      <VERS vnumber=\"25\">The righteous eateth to the satisfying of his soul; But the belly of the wicked shall want.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">Every wise woman buildeth her house; But the foolish plucketh it down with her own hands.</VERS>\r\n      <VERS vnumber=\"2\">He that walketh in his uprightness feareth Jehovah; But he that is perverse in his ways despiseth him.</VERS>\r\n      <VERS vnumber=\"3\">In the mouth of the foolish is a rod for [his] pride; But the lips of the wise shall preserve them.</VERS>\r\n      <VERS vnumber=\"4\">Where no oxen are, the crib is clean; But much increase is by the strength of the ox.</VERS>\r\n      <VERS vnumber=\"5\">A faithful witness will not lie; But a false witness uttereth lies.</VERS>\r\n      <VERS vnumber=\"6\">A scoffer seeketh wisdom, and [findeth it] not; But knowledge is easy unto him that hath understanding.</VERS>\r\n      <VERS vnumber=\"7\">Go into the presence of a foolish man, And thou shalt not perceive [in him] the lips of knowledge.</VERS>\r\n      <VERS vnumber=\"8\">The wisdom of the prudent is to understand his way; But the folly of fools is deceit.</VERS>\r\n      <VERS vnumber=\"9\">A trespass-offering mocketh fools; But among the upright there is good will.</VERS>\r\n      <VERS vnumber=\"10\">The heart knoweth its own bitterness; And a stranger doth not intermeddle with its joy.</VERS>\r\n      <VERS vnumber=\"11\">The house of the wicked shall be overthrown; But the tent of the upright shall flourish.</VERS>\r\n      <VERS vnumber=\"12\">There is a way which seemeth right unto a man; But the end thereof are the ways of death.</VERS>\r\n      <VERS vnumber=\"13\">Even in laughter the heart is sorrowful; And the end of mirth is heaviness.</VERS>\r\n      <VERS vnumber=\"14\">The backslider in heart shall be filled with his own       ways; And a good man [shall be satisfied] from himself.</VERS>\r\n      <VERS vnumber=\"15\">The simple believeth every word; But the prudent man looketh well to his going.</VERS>\r\n      <VERS vnumber=\"16\">A wise man feareth, and departeth from evil; But the fool beareth himself insolently, and is confident.</VERS>\r\n      <VERS vnumber=\"17\">He that is soon angry will deal foolishly; And a man of wicked devices is hated.</VERS>\r\n      <VERS vnumber=\"18\">The simple inherit folly; But the prudent are crowned with knowledge.</VERS>\r\n      <VERS vnumber=\"19\">The evil bow down before the good; And the wicked, at the gates of the righteous.</VERS>\r\n      <VERS vnumber=\"20\">The poor is hated even of his own neighbor; But the rich hath many friends.</VERS>\r\n      <VERS vnumber=\"21\">He that despiseth his neighbor sinneth; But he that hath pity on the poor, happy is he.</VERS>\r\n      <VERS vnumber=\"22\">Do they not err that devise evil? But mercy and truth [shall be to] them that devise good.</VERS>\r\n      <VERS vnumber=\"23\">In all labor there is profit; But the talk of the lips [tendeth] only to penury.</VERS>\r\n      <VERS vnumber=\"24\">The crown of the wise is their riches; [But] the folly of fools is [only] folly.</VERS>\r\n      <VERS vnumber=\"25\">A true witness delivereth souls; But he that uttereth lies [causeth] deceit.</VERS>\r\n      <VERS vnumber=\"26\">In the fear of Jehovah is strong confidence; And his children shall have a place of refuge.</VERS>\r\n      <VERS vnumber=\"27\">The fear of Jehovah is a fountain of life, That one may depart from the snares of death.</VERS>\r\n      <VERS vnumber=\"28\">In the multitude of people is the king`s glory; But in the want of people is the destruction of the prince.</VERS>\r\n      <VERS vnumber=\"29\">He that is slow to anger is of great understanding; But he that is hasty of spirit exalteth folly.</VERS>\r\n      <VERS vnumber=\"30\">A tranquil heart is the life of the flesh; But envy is the rottenness of the bones.</VERS>\r\n      <VERS vnumber=\"31\">He that oppresseth the poor reproacheth his Maker; But he that hath mercy on the needy honoreth him.</VERS>\r\n      <VERS vnumber=\"32\">The wicked is thrust down in his evil-doing; But the righteous hath a refuge in his death.</VERS>\r\n      <VERS vnumber=\"33\">Wisdom resteth in the heart of him that hath       understanding; But [that which is] in the inward part of fools is made known.</VERS>\r\n      <VERS vnumber=\"34\">Righteousness exalteth a nation; But sin is a reproach to any people.</VERS>\r\n      <VERS vnumber=\"35\">The king`s favor is toward a servant that dealeth wisely; But his wrath will be [against] him that causeth shame.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">A soft answer turneth away wrath; But a grievous word stirreth up anger.</VERS>\r\n      <VERS vnumber=\"2\">The tongue of the wise uttereth knowledge aright; But the mouth of fools poureth out folly.</VERS>\r\n      <VERS vnumber=\"3\">The eyes of Jehovah are in every place, Keeping watch upon the evil and the good.</VERS>\r\n      <VERS vnumber=\"4\">A gentle tongue is a tree of life; But perverseness therein is a breaking of the spirit.</VERS>\r\n      <VERS vnumber=\"5\">A fool despiseth his father`s correction; But he that regardeth reproof getteth prudence.</VERS>\r\n      <VERS vnumber=\"6\">In the house of the righteous is much treasure; But in the revenues of the wicked is trouble.</VERS>\r\n      <VERS vnumber=\"7\">The lips of the wise disperse knowledge; But the heart of the foolish [doeth] not so.</VERS>\r\n      <VERS vnumber=\"8\">The sacrifice of the wicked is an abomination to Jehovah; But the prayer of the upright is his delight.</VERS>\r\n      <VERS vnumber=\"9\">The way of the wicked is an abomination to Jehovah; But he loveth him that followeth after righteousness.</VERS>\r\n      <VERS vnumber=\"10\">There is grievous correction for him that forsaketh the       way; [And] he that hateth reproof shall die.</VERS>\r\n      <VERS vnumber=\"11\">Sheol and Abaddon are before Jehovah: How much more then the hearts of the children of men!</VERS>\r\n      <VERS vnumber=\"12\">A scoffer loveth not to be reproved; He will not go unto the wise.</VERS>\r\n      <VERS vnumber=\"13\">A glad heart maketh a cheerful countenance; But by sorrow of heart the spirit is broken.</VERS>\r\n      <VERS vnumber=\"14\">The heart of him that hath understanding seeketh       knowledge; But the mouth of fools feedeth on folly.</VERS>\r\n      <VERS vnumber=\"15\">All the days of the afflicted are evil; But he that is of a cheerful heart [hath] a continual feast.</VERS>\r\n      <VERS vnumber=\"16\">Better is little, with the fear of Jehovah, Than great treasure and trouble therewith.</VERS>\r\n      <VERS vnumber=\"17\">Better is a dinner of herbs, where love is, Than a stalled ox and hatred therewith.</VERS>\r\n      <VERS vnumber=\"18\">A wrathful man stirreth up contention; But he that is slow to anger appeaseth strife.</VERS>\r\n      <VERS vnumber=\"19\">The way of the sluggard is as a hedge of thorns; But the path of the upright is made a highway.</VERS>\r\n      <VERS vnumber=\"20\">A wise son maketh a glad father; But a foolish man despiseth his mother.</VERS>\r\n      <VERS vnumber=\"21\">Folly is joy to him that is void of wisdom;  But a man of understanding maketh straight his going.</VERS>\r\n      <VERS vnumber=\"22\">Where there is no counsel, purposes are disappointed; But in the multitude of counsellors they are established.</VERS>\r\n      <VERS vnumber=\"23\">A man hath joy in the answer of his mouth; And a word in due season, how good is it!</VERS>\r\n      <VERS vnumber=\"24\">To the wise the way of life [goeth] upward, That he may depart from Sheol beneath.</VERS>\r\n      <VERS vnumber=\"25\">Jehovah will root up the house of the proud; But he will establish the border of the widow.</VERS>\r\n      <VERS vnumber=\"26\">Evil devices are an abomination to Jehovah; But pleasant words [are] pure.</VERS>\r\n      <VERS vnumber=\"27\">He that is greedy of gain troubleth his own house; But he that hateth bribes shall live.</VERS>\r\n      <VERS vnumber=\"28\">The heart of the righteous studieth to answer; But the mouth of the wicked poureth out evil things.</VERS>\r\n      <VERS vnumber=\"29\">Jehovah is far from the wicked; But he heareth the prayer of the righteous.</VERS>\r\n      <VERS vnumber=\"30\">The light of the eyes rejoiceth the heart; [And] good tidings make the bones fat.</VERS>\r\n      <VERS vnumber=\"31\">The ear that hearkeneth to the reproof of life Shall abide among the wise.</VERS>\r\n      <VERS vnumber=\"32\">He that refuseth correction despiseth his own soul; But he that hearkeneth to reproof getteth understanding.</VERS>\r\n      <VERS vnumber=\"33\">The fear of Jehovah is the instruction of wisdom; And before honor [goeth] humility.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">The plans of the heart belong to man; But the answer of the tongue is from Jehovah.</VERS>\r\n      <VERS vnumber=\"2\">All the ways of a man are clean in his own eyes; But Jehovah weigheth the spirits.</VERS>\r\n      <VERS vnumber=\"3\">Commit thy works unto Jehovah, And thy purposes shall be established.</VERS>\r\n      <VERS vnumber=\"4\">Jehovah hath made everything for its own end; Yea, even the wicked for the day of evil.</VERS>\r\n      <VERS vnumber=\"5\">Every one that is proud in heart is an abomination to       Jehovah: [Though] hand [join] in hand, he shall not be unpunished.</VERS>\r\n      <VERS vnumber=\"6\">By mercy and truth iniquity is atoned for; And by the fear of Jehovah men depart from evil.</VERS>\r\n      <VERS vnumber=\"7\">When a man`s ways please Jehovah, He maketh even his enemies to be at peace with him.</VERS>\r\n      <VERS vnumber=\"8\">Better is a little, with righteousness, Than great revenues with injustice.</VERS>\r\n      <VERS vnumber=\"9\">A man`s heart deviseth his way; But Jehovah directeth his steps.</VERS>\r\n      <VERS vnumber=\"10\">A divine sentence is in the lips of the king; His mouth shall not transgress in judgment.</VERS>\r\n      <VERS vnumber=\"11\">A just balance and scales are Jehovah`s; All the weights of the bag are his work.</VERS>\r\n      <VERS vnumber=\"12\">It is an abomination to kings to commit wickedness; For the throne is established by righteousness.</VERS>\r\n      <VERS vnumber=\"13\">Righteous lips are the delight of kings; And they love him that speaketh right.</VERS>\r\n      <VERS vnumber=\"14\">The wrath of a king is [as] messengers of death; But a wise man will pacify it.</VERS>\r\n      <VERS vnumber=\"15\">In the light of the king`s countenance is life; And his favor is as a cloud of the latter rain.</VERS>\r\n      <VERS vnumber=\"16\">How much better is it to get wisdom than gold! Yea, to get understanding is rather to be chosen than silver.</VERS>\r\n      <VERS vnumber=\"17\">The highway of the upright is to depart from evil: He that keepeth his way preserveth his soul.</VERS>\r\n      <VERS vnumber=\"18\">Pride [goeth] before destruction, And a haughty spirit before a fall.</VERS>\r\n      <VERS vnumber=\"19\">Better it is to be of a lowly spirit with the poor, Than to divide the spoil with the proud.</VERS>\r\n      <VERS vnumber=\"20\">He that giveth heed unto the word shall find good; And whoso trusteth in Jehovah, happy is he.</VERS>\r\n      <VERS vnumber=\"21\">The wise in heart shall be called prudent; And the sweetness of the lips increaseth learning.</VERS>\r\n      <VERS vnumber=\"22\">Understanding is a well-spring of life unto him that       hath it; But the correction of fools is [their] folly.</VERS>\r\n      <VERS vnumber=\"23\">The heart of the wise instructeth his mouth, And addeth learning to his lips.</VERS>\r\n      <VERS vnumber=\"24\">Pleasant words are [as] a honeycomb, Sweet to the soul, and health to the bones.</VERS>\r\n      <VERS vnumber=\"25\">There is a way which seemeth right unto a man, But the end thereof are the ways of death.</VERS>\r\n      <VERS vnumber=\"26\">The appetite of the laboring man laboreth for him; For his mouth urgeth him [thereto].</VERS>\r\n      <VERS vnumber=\"27\">A worthless man deviseth mischief; And in his lips there is as a scorching fire.</VERS>\r\n      <VERS vnumber=\"28\">A perverse man scattereth abroad strife; And a whisperer separateth chief friends.</VERS>\r\n      <VERS vnumber=\"29\">A man of violence enticeth his neighbor, And leadeth him in a way that is not good.</VERS>\r\n      <VERS vnumber=\"30\">He that shutteth his eyes, [it is] to devise perverse       things: He that compresseth his lips bringeth evil to pass.</VERS>\r\n      <VERS vnumber=\"31\">The hoary head is a crown of glory; It shall be found in the way of righteousness.</VERS>\r\n      <VERS vnumber=\"32\">He that is slow to anger is better than the mighty; And he that ruleth his spirit, than he that taketh a city.</VERS>\r\n      <VERS vnumber=\"33\">The lot is cast into the lap; But the whole disposing thereof is of Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"17\">\r\n      <VERS vnumber=\"1\">Better is a dry morsel, and quietness therewith, Than a house full of feasting with strife.</VERS>\r\n      <VERS vnumber=\"2\">A servant that dealeth wisely shall have rule over a son       that causeth shame, And shall have part in the inheritance among the brethren.</VERS>\r\n      <VERS vnumber=\"3\">The refining pot is for silver, and the furnace for gold; But Jehovah trieth the hearts.</VERS>\r\n      <VERS vnumber=\"4\">An evil-doer giveth heed to wicked lips; [And] a liar giveth ear to a mischievous tongue.</VERS>\r\n      <VERS vnumber=\"5\">Whoso mocketh the poor reproacheth his Maker; [And] he that is glad at calamity shall not be unpunished.</VERS>\r\n      <VERS vnumber=\"6\">Children`s children are the crown of old men; And the glory of children are their fathers.</VERS>\r\n      <VERS vnumber=\"7\">Excellent speech becometh not a fool; Much less do lying lips a prince.</VERS>\r\n      <VERS vnumber=\"8\">A bribe is [as] a precious stone in the eyes of him that       hath it; Whithersoever it turneth, it prospereth.</VERS>\r\n      <VERS vnumber=\"9\">He that covereth a transgression seeketh love; But he that harpeth on a matter separateth chief friends.</VERS>\r\n      <VERS vnumber=\"10\">A rebuke entereth deeper into one that hath understanding Than a hundred stripes into a fool.</VERS>\r\n      <VERS vnumber=\"11\">An evil man seeketh only rebellion; Therefore a cruel messenger shall be sent against him.</VERS>\r\n      <VERS vnumber=\"12\">Let a bear robbed of her whelps meet a man, Rather than a fool in his folly.</VERS>\r\n      <VERS vnumber=\"13\">Whoso rewardeth evil for good, Evil shall not depart from his house.</VERS>\r\n      <VERS vnumber=\"14\">The beginning of strife is [as] when one letteth out       water: Therefore leave off contention, before there is quarrelling.</VERS>\r\n      <VERS vnumber=\"15\">He that justifieth the wicked, and he that condemneth       the righteous, Both of them alike are an abomination to Jehovah.</VERS>\r\n      <VERS vnumber=\"16\">Wherefore is there a price in the hand of a fool to buy       wisdom, Seeing he hath no understanding?</VERS>\r\n      <VERS vnumber=\"17\">A friend loveth at all times; And a brother is born for adversity.</VERS>\r\n      <VERS vnumber=\"18\">A man void of understanding striketh hands, And becometh surety in the presence of his neighbor.</VERS>\r\n      <VERS vnumber=\"19\">He loveth transgression that loveth strife: He that raiseth high his gate seeketh destruction.</VERS>\r\n      <VERS vnumber=\"20\">He that hath a wayward heart findeth no good; And he that hath a perverse tongue falleth into mischief.</VERS>\r\n      <VERS vnumber=\"21\">He that begetteth a fool [doeth it] to his sorrow; And the father of a fool hath no joy.</VERS>\r\n      <VERS vnumber=\"22\">A cheerful heart is a good medicine; But a broken spirit drieth up the bones.</VERS>\r\n      <VERS vnumber=\"23\">A wicked man receiveth a bribe out of the bosom, To pervert the ways of justice.</VERS>\r\n      <VERS vnumber=\"24\">Wisdom is before the face of him that hath understanding; But the eyes of a fool are in the ends of the earth.</VERS>\r\n      <VERS vnumber=\"25\">A foolish son is a grief to his father, And bitterness to her that bare him.</VERS>\r\n      <VERS vnumber=\"26\">Also to punish the righteous is not good, [Nor] to smite the noble for [their] uprightness.</VERS>\r\n      <VERS vnumber=\"27\">He that spareth his words hath knowledge; And he that is of a cool spirit is a man of understanding.</VERS>\r\n      <VERS vnumber=\"28\">Even a fool, when he holdeth his peace, is counted wise; When he shutteth his lips, he is [esteemed as] prudent.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"18\">\r\n      <VERS vnumber=\"1\">He that separateth himself seeketh [his own] desire, And rageth against all sound wisdom.</VERS>\r\n      <VERS vnumber=\"2\">A fool hath no delight in understanding, But only that his heart may reveal itself.</VERS>\r\n      <VERS vnumber=\"3\">When the wicked cometh, there cometh also contempt, And with ignominy [cometh] reproach.</VERS>\r\n      <VERS vnumber=\"4\">The words of a man`s mouth are [as] deep waters; The wellspring of wisdom is [as] a flowing brook.</VERS>\r\n      <VERS vnumber=\"5\">To respect the person of the wicked is not good, [Nor] to turn aside the righteous in judgment.</VERS>\r\n      <VERS vnumber=\"6\">A fool`s lips enter into contention, And his mouth calleth for stripes.</VERS>\r\n      <VERS vnumber=\"7\">A fool`s mouth is his destruction, And his lips are the snare of his soul.</VERS>\r\n      <VERS vnumber=\"8\">The words of a whisperer are as dainty morsels, And they go down into the innermost parts.</VERS>\r\n      <VERS vnumber=\"9\">He also that is slack in his work Is brother to him that is a destroyer.</VERS>\r\n      <VERS vnumber=\"10\">The name of Jehovah is a strong tower; The righteous runneth into it, and is safe.</VERS>\r\n      <VERS vnumber=\"11\">The rich man`s wealth is his strong city, And as a high wall in his own imagination.</VERS>\r\n      <VERS vnumber=\"12\">Before destruction the heart of man is haughty; And before honor [goeth] humility.</VERS>\r\n      <VERS vnumber=\"13\">He that giveth answer before he heareth, It is folly and shame unto him.</VERS>\r\n      <VERS vnumber=\"14\">The spirit of a man will sustain his infirmity; But a broken spirit who can bear?</VERS>\r\n      <VERS vnumber=\"15\">The heart of the prudent getteth knowledge; And the ear of the wise seeketh knowledge.</VERS>\r\n      <VERS vnumber=\"16\">A man`s gift maketh room for him, And bringeth him before great men.</VERS>\r\n      <VERS vnumber=\"17\">He that pleadeth his cause first [seemeth] just; But his neighbor cometh and searcheth him out.</VERS>\r\n      <VERS vnumber=\"18\">The lot causeth contentions to cease, And parteth between the mighty.</VERS>\r\n      <VERS vnumber=\"19\">A brother offended [is harder to be won] than a strong       city; And [such] contentions are like the bars of a castle.</VERS>\r\n      <VERS vnumber=\"20\">A man`s belly shall be filled with the fruit of his       mouth; With the increase of his lips shall he be satisfied.</VERS>\r\n      <VERS vnumber=\"21\">Death and life are in the power of the tongue; And they that love it shall eat the fruit thereof.</VERS>\r\n      <VERS vnumber=\"22\">Whoso findeth a wife findeth a good thing, And obtaineth favor of Jehovah.</VERS>\r\n      <VERS vnumber=\"23\">The poor useth entreaties; But the rich answereth roughly.</VERS>\r\n      <VERS vnumber=\"24\">He that maketh many friends [doeth it] to his own       destruction; But there is a friend that sticketh closer than a brother.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"19\">\r\n      <VERS vnumber=\"1\">Better is the poor that walketh in his integrity Than he that is perverse in his lips and is a fool.</VERS>\r\n      <VERS vnumber=\"2\">Also, that the soul be without knowledge is not good; And he that hasteth with his feet sinneth.</VERS>\r\n      <VERS vnumber=\"3\">The foolishness of man subverteth his way; And his heart fretteth against Jehovah.</VERS>\r\n      <VERS vnumber=\"4\">Wealth addeth many friends; But the poor is separated from his friend.</VERS>\r\n      <VERS vnumber=\"5\">A false witness shall not be unpunished; And he that uttereth lies shall not escape.</VERS>\r\n      <VERS vnumber=\"6\">Many will entreat the favor of the liberal man; And every man is a friend to him that giveth gifts.</VERS>\r\n      <VERS vnumber=\"7\">All the brethren of the poor do hate him: How much more do his friends go far from him! He pursueth [them with] words, [but] they are gone.</VERS>\r\n      <VERS vnumber=\"8\">He that getteth wisdom loveth his own soul: He that keepeth understanding shall find good.</VERS>\r\n      <VERS vnumber=\"9\">A false witness shall not be unpunished; And he that uttereth lies shall perish.</VERS>\r\n      <VERS vnumber=\"10\">Delicate living is not seemly for a fool; Much less for a servant to have rule over princes.</VERS>\r\n      <VERS vnumber=\"11\">The discretion of a man maketh him slow to anger; And it is his glory to pass over a transgression.</VERS>\r\n      <VERS vnumber=\"12\">The king`s wrath is as the roaring of a lion; But his favor is as dew upon the grass.</VERS>\r\n      <VERS vnumber=\"13\">A foolish son is the calamity of his father; And the contentions of a wife are a continual dropping.</VERS>\r\n      <VERS vnumber=\"14\">House and riches are an inheritance from fathers; But a prudent wife is from Jehovah.</VERS>\r\n      <VERS vnumber=\"15\">Slothfulness casteth into a deep sleep; And the idle soul shall suffer hunger.</VERS>\r\n      <VERS vnumber=\"16\">He that keepeth the commandment keepeth his soul; [But] he that is careless of his ways shall die.</VERS>\r\n      <VERS vnumber=\"17\">He that hath pity upon the poor lendeth unto Jehovah, And his good deed will he pay him again.</VERS>\r\n      <VERS vnumber=\"18\">Chasten thy son, seeing there is hope;  nd set not thy heart on his destruction.</VERS>\r\n      <VERS vnumber=\"19\">A man of great wrath shall bear the penalty; For if thou deliver [him], thou must do it yet again.</VERS>\r\n      <VERS vnumber=\"20\">Hear counsel, and receive instruction, That thou mayest be wise in thy latter end.</VERS>\r\n      <VERS vnumber=\"21\">There are many devices in a man`s heart; But the counsel of Jehovah, that shall stand.</VERS>\r\n      <VERS vnumber=\"22\">That which maketh a man to be desired is his kindness; And a poor man is better than a liar.</VERS>\r\n      <VERS vnumber=\"23\">The fear of Jehovah [tendeth] to life; And he [that hath it] shall abide satisfied; He shall not be visited with evil.</VERS>\r\n      <VERS vnumber=\"24\">The sluggard burieth his hand in the dish, And will not so much as bring it to his mouth again.</VERS>\r\n      <VERS vnumber=\"25\">Smite a scoffer, and the simple will learn prudence; And reprove one that hath understanding, [and] he will       understand knowledge.</VERS>\r\n      <VERS vnumber=\"26\">He that doeth violence to his father, and chaseth away       his mother, Is a son that causeth shame and bringeth reproach.</VERS>\r\n      <VERS vnumber=\"27\">Cease, my son, to hear instruction [Only] to err from the words of knowledge.</VERS>\r\n      <VERS vnumber=\"28\">A worthless witness mocketh at justice; And the mouth of the wicked swalloweth iniquity.</VERS>\r\n      <VERS vnumber=\"29\">Judgments are prepared for scoffers, And stripes for the back of fools.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"20\">\r\n      <VERS vnumber=\"1\">Wine is a mocker, strong drink a brawler; And whosoever erreth thereby is not wise.</VERS>\r\n      <VERS vnumber=\"2\">The terror of a king is as the roaring of a lion: He that provoketh him to anger sinneth [against] his own life.</VERS>\r\n      <VERS vnumber=\"3\">It is an honor for a man to keep aloof from strife; But every fool will be quarrelling.</VERS>\r\n      <VERS vnumber=\"4\">The sluggard will not plow by reason of the winter; Therefore he shall beg in harvest, and have nothing.</VERS>\r\n      <VERS vnumber=\"5\">Counsel in the heart of man is [like] deep water; But a man of understanding will draw it out.</VERS>\r\n      <VERS vnumber=\"6\">Most men will proclaim every one his own kindness; But a faithful man who can find?</VERS>\r\n      <VERS vnumber=\"7\">A righteous man that walketh in his integrity, Blessed are his children after him.</VERS>\r\n      <VERS vnumber=\"8\">A king that sitteth on the throne of judgment Scattereth away all evil with his eyes.</VERS>\r\n      <VERS vnumber=\"9\">Who can say, I have made my heart clean, I am pure from my sin?</VERS>\r\n      <VERS vnumber=\"10\">Diverse weights, and diverse measures, Both of them alike are an abomination to Jehovah.</VERS>\r\n      <VERS vnumber=\"11\">Even a child maketh himself known by his doings, Whether his work be pure, and whether it be right.</VERS>\r\n      <VERS vnumber=\"12\">The hearing ear, and the seeing eye, Jehovah hath made even both of them.</VERS>\r\n      <VERS vnumber=\"13\">Love not sleep, let thou come to poverty; Open thine eyes, [and] thou shalt be satisfied with bread.</VERS>\r\n      <VERS vnumber=\"14\">It is bad, it is bad, saith the buyer; But when he is gone his way, then he boasteth.</VERS>\r\n      <VERS vnumber=\"15\">There is gold, and abundance of rubies; But the lips of knowledge are a precious jewel.</VERS>\r\n      <VERS vnumber=\"16\">Take his garment that is surety for a stranger; And hold him in pledge [that is surety] for foreigners.</VERS>\r\n      <VERS vnumber=\"17\">Bread of falsehood is sweet to a man; But afterwards his mouth shall be filled with gravel.</VERS>\r\n      <VERS vnumber=\"18\">Every purpose is established by counsel; And by wise guidance make thou war.</VERS>\r\n      <VERS vnumber=\"19\">He that goeth about as a tale-bearer revealeth secrets; Therefore company not with him that openeth wide his lips.</VERS>\r\n      <VERS vnumber=\"20\">Whoso curseth his father or his mother, His lamp shall be put out in blackness of darkness.</VERS>\r\n      <VERS vnumber=\"21\">An inheritance [may be] gotten hastily at the beginning; But the end thereof shall not be blessed.</VERS>\r\n      <VERS vnumber=\"22\">Say not thou, I will recompense evil: Wait for Jehovah, and he will save thee.</VERS>\r\n      <VERS vnumber=\"23\">Diverse weights are an abomination to Jehovah; And a false balance is not good.</VERS>\r\n      <VERS vnumber=\"24\">A man`s goings are of Jehovah; How then can man understand his way?</VERS>\r\n      <VERS vnumber=\"25\">It is a snare to a man rashly to say, [It is] holy, And after vows to make inquiry.</VERS>\r\n      <VERS vnumber=\"26\">A wise king winnoweth the wicked, And bringeth the [threshing] -wheel over them.</VERS>\r\n      <VERS vnumber=\"27\">The spirit of man is the lamp of Jehovah, Searching all his innermost parts.</VERS>\r\n      <VERS vnumber=\"28\">Kindness and truth preserve the king; And his throne is upholden by kindness.</VERS>\r\n      <VERS vnumber=\"29\">The glory of young men is their strength; And the beauty of old men is the hoary head.</VERS>\r\n      <VERS vnumber=\"30\">Stripes that wound cleanse away evil; And strokes [reach] the innermost parts.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"21\">\r\n      <VERS vnumber=\"1\">The king`s heart is in the hand of Jehovah as the       watercourses: He turneth it whithersoever he will.</VERS>\r\n      <VERS vnumber=\"2\">Every way of a man is right in his own eyes; But Jehovah weigheth the hearts.</VERS>\r\n      <VERS vnumber=\"3\">To do righteousness and justice Is more acceptable to Jehovah than sacrifice.</VERS>\r\n      <VERS vnumber=\"4\">A high look, and a proud heart, [Even] the lamp of the wicked, is sin.</VERS>\r\n      <VERS vnumber=\"5\">The thoughts of the diligent [tend] only to plenteousness; But every one that is hasty [hasteth] only to want.</VERS>\r\n      <VERS vnumber=\"6\">The getting of treasures by a lying tongue Is a vapor driven to and fro by them that seek death.</VERS>\r\n      <VERS vnumber=\"7\">The violence of the wicked shall sweep them away, Because they refuse to do justice.</VERS>\r\n      <VERS vnumber=\"8\">The way of him that is laden with guilt is exceeding       crooked; But as for the pure, his work is right.</VERS>\r\n      <VERS vnumber=\"9\">It is better to dwell in the corner of the housetop, Than with a contentious woman in a wide house.</VERS>\r\n      <VERS vnumber=\"10\">The soul of the wicked desireth evil: His neighbor findeth no favor in his eyes.</VERS>\r\n      <VERS vnumber=\"11\">When the scoffer is punished, the simple is made wise; And when the wise is instructed, he receiveth knowledge.</VERS>\r\n      <VERS vnumber=\"12\">The righteous man considereth the house of the wicked, [How] the wicked are overthrown to [their] ruin.</VERS>\r\n      <VERS vnumber=\"13\">Whoso stoppeth his ears at the cry of the poor, He also shall cry, but shall not be heard.</VERS>\r\n      <VERS vnumber=\"14\">A gift in secret pacifieth anger; And a present in the bosom, strong wrath.</VERS>\r\n      <VERS vnumber=\"15\">It is joy to the righteous to do justice; But it is a destruction to the workers of iniquity.</VERS>\r\n      <VERS vnumber=\"16\">The man that wandereth out of the way of understanding Shall rest in the assembly of the dead.</VERS>\r\n      <VERS vnumber=\"17\">He that loveth pleasure shall be a poor man: He that loveth wine and oil shall not be rich.</VERS>\r\n      <VERS vnumber=\"18\">The wicked is a ransom for the righteous; And the treacherous [cometh] in the stead of the upright.</VERS>\r\n      <VERS vnumber=\"19\">It is better to dwell in a desert land, Than with a contentious and fretful woman.</VERS>\r\n      <VERS vnumber=\"20\">There is precious treasure and oil in the dwelling of       the wise; But a foolish man swalloweth it up.</VERS>\r\n      <VERS vnumber=\"21\">He that followeth after righteousness and kindness Findeth life, righteousness, and honor.</VERS>\r\n      <VERS vnumber=\"22\">A wise man scaleth the city of the mighty, And bringeth down the strength of the confidence thereof.</VERS>\r\n      <VERS vnumber=\"23\">Whoso keepeth his mouth and his tongue Keepeth his soul from troubles.</VERS>\r\n      <VERS vnumber=\"24\">The proud and haughty man, scoffer is his name; He worketh in the arrogance of pride.</VERS>\r\n      <VERS vnumber=\"25\">The desire of the sluggard killeth him; For his hands refuse to labor.</VERS>\r\n      <VERS vnumber=\"26\">There is that coveteth greedily all the day long; But the righteous giveth and withholdeth not.</VERS>\r\n      <VERS vnumber=\"27\">The sacrifice of the wicked is an abomination: How much more, when he bringeth it with a wicked mind!</VERS>\r\n      <VERS vnumber=\"28\">A false witness shall perish; But the man that heareth shall speak so as to endure.</VERS>\r\n      <VERS vnumber=\"29\">A wicked man hardeneth his face; But as for the upright, he establisheth his ways.</VERS>\r\n      <VERS vnumber=\"30\">There is no wisdom nor understanding Nor counsel against Jehovah.</VERS>\r\n      <VERS vnumber=\"31\">The horse is prepared against the day of battle; But victory is of Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"22\">\r\n      <VERS vnumber=\"1\">A [good] name is rather to be chosen than great riches, [And] loving favor rather than silver and gold.</VERS>\r\n      <VERS vnumber=\"2\">The rich and the poor meet together: Jehovah is the maker of them all.</VERS>\r\n      <VERS vnumber=\"3\">A prudent man seeth the evil, and hideth himself; But the simple pass on, and suffer for it.</VERS>\r\n      <VERS vnumber=\"4\">The reward of humility [and] the fear of Jehovah [Is] riches, and honor, and life.</VERS>\r\n      <VERS vnumber=\"5\">Thorns [and] snares are in the way of the perverse: He that keepeth his soul shall be far from them.</VERS>\r\n      <VERS vnumber=\"6\">Train up a child in the way he should go, And even when he is old he will not depart from it.</VERS>\r\n      <VERS vnumber=\"7\">The rich ruleth over the poor; And the borrower is servant to the lender.</VERS>\r\n      <VERS vnumber=\"8\">He that soweth iniquity shall reap calamity; And the rod of his wrath shall fail.</VERS>\r\n      <VERS vnumber=\"9\">He that hath a bountiful eye shall be blessed; For he giveth of his bread to the poor.</VERS>\r\n      <VERS vnumber=\"10\">Cast out the scoffer, and contention will go out; Yea, strife and ignominy will cease.</VERS>\r\n      <VERS vnumber=\"11\">He that loveth pureness of heart, [For] the grace of his lips the king will be his friend.</VERS>\r\n      <VERS vnumber=\"12\">The eyes of Jehovah preserve [him that hath] knowledge; But he overthroweth the words of the treacherous man.</VERS>\r\n      <VERS vnumber=\"13\">The sluggard saith, There is a lion without: I shall be slain in the streets.</VERS>\r\n      <VERS vnumber=\"14\">The mouth of strange women is a deep pit: He that is abhorred of Jehovah shall fall therein.</VERS>\r\n      <VERS vnumber=\"15\">Foolishness is bound up in the heart of a child; [But] the rod of correction shall drive it far from him.</VERS>\r\n      <VERS vnumber=\"16\">He that oppresseth the poor to increase his [gain], [And] he that giveth to the rich, [shall come] only to want.</VERS>\r\n      <VERS vnumber=\"17\">Incline thine ear, and hear the words of the wise, And apply thy heart unto my knowledge.</VERS>\r\n      <VERS vnumber=\"18\">For it is a pleasant thing if thou keep them within thee, If they be established together upon thy lips.</VERS>\r\n      <VERS vnumber=\"19\">That thy trust may be in Jehovah, I have made [them] known to thee this day, even to thee.</VERS>\r\n      <VERS vnumber=\"20\">Have not I written unto thee excellent things Of counsels and knowledge,</VERS>\r\n      <VERS vnumber=\"21\">To make thee know the certainty of the words of truth, That thou mayest carry back words of truth to them that send       thee?</VERS>\r\n      <VERS vnumber=\"22\">Rob not the poor, because he is poor; Neither oppress the afflicted in the gate:</VERS>\r\n      <VERS vnumber=\"23\">For Jehovah will plead their cause, And despoil of life those that despoil them.</VERS>\r\n      <VERS vnumber=\"24\">Make no friendship with a man that is given to anger; And with a wrathful man thou shalt not go:</VERS>\r\n      <VERS vnumber=\"25\">Lest thou learn this ways, And get a snare to thy soul.</VERS>\r\n      <VERS vnumber=\"26\">Be thou not one of them that strike hands, [Or] of them that are sureties for debts.</VERS>\r\n      <VERS vnumber=\"27\">If thou hast not wherewith to pay, Why should he take away thy bed from under thee?</VERS>\r\n      <VERS vnumber=\"28\">Remove not the ancient landmark, Which thy fathers have set.</VERS>\r\n      <VERS vnumber=\"29\">Seest thou a man diligent in his business? he shall       stand before kings; He shall not stand before mean men.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"23\">\r\n      <VERS vnumber=\"1\">When thou sittest to eat with a ruler, Consider diligently him that is before thee;</VERS>\r\n      <VERS vnumber=\"2\">And put a knife to thy throat, If thou be a man given to appetite.</VERS>\r\n      <VERS vnumber=\"3\">Be not desirous of his dainties; Seeing they are deceitful food.</VERS>\r\n      <VERS vnumber=\"4\">Weary not thyself to be rich; Cease from thine own wisdom.</VERS>\r\n      <VERS vnumber=\"5\">Wilt thou set thine eyes upon that which is not? For [riches] certainly make themselves wings, Like an eagle that flieth toward heaven.</VERS>\r\n      <VERS vnumber=\"6\">Eat thou not the bread of him that hath an evil eye, Neither desire thou his dainties:</VERS>\r\n      <VERS vnumber=\"7\">For as he thinketh within himself, so is he: Eat and drink, saith he to thee; But his heart is not with thee.</VERS>\r\n      <VERS vnumber=\"8\">The morsel which thou hast eaten shalt thou vomit up, And lose thy sweet words.</VERS>\r\n      <VERS vnumber=\"9\">Speak not in the hearing of a fool; For he will despise the wisdom of thy words.</VERS>\r\n      <VERS vnumber=\"10\">Remove not the ancient landmark; And enter not into the fields of the fatherless:</VERS>\r\n      <VERS vnumber=\"11\">For their Redeemer is strong; He will plead their cause against thee.</VERS>\r\n      <VERS vnumber=\"12\">Apply thy heart unto instruction, And thine ears to the words of knowledge.</VERS>\r\n      <VERS vnumber=\"13\">Withhold not correction from the child; [For] if thou beat him with the rod, he will not die.</VERS>\r\n      <VERS vnumber=\"14\">Thou shalt beat him with the rod, And shalt deliver his soul from Sheol.</VERS>\r\n      <VERS vnumber=\"15\">My son, if thy heart be wise, My heart will be glad, even mine:</VERS>\r\n      <VERS vnumber=\"16\">Yea, my heart will rejoice, When thy lips speak right things.</VERS>\r\n      <VERS vnumber=\"17\">Let not thy heart envy sinners; But [be thou] in the fear of Jehovah all the day long:</VERS>\r\n      <VERS vnumber=\"18\">For surely there is a reward; And thy hope shall not be cut off.</VERS>\r\n      <VERS vnumber=\"19\">Hear thou, my son, and be wise, And guide thy heart in the way.</VERS>\r\n      <VERS vnumber=\"20\">Be not among winebibbers, Among gluttonous eaters of flesh:</VERS>\r\n      <VERS vnumber=\"21\">For the drunkard and the glutton shall come to poverty; And drowsiness will clothe [a man] with rags.</VERS>\r\n      <VERS vnumber=\"22\">Hearken unto thy father that begat thee, And despise not thy mother when she is old.</VERS>\r\n      <VERS vnumber=\"23\">Buy the truth, and sell it not; [Yea], wisdom, and instruction, and understanding.</VERS>\r\n      <VERS vnumber=\"24\">The father of the righteous will greatly rejoice; And he that begetteth a wise child will have joy of him.</VERS>\r\n      <VERS vnumber=\"25\">Let thy father and thy mother be glad, And let her that bare thee rejoice.</VERS>\r\n      <VERS vnumber=\"26\">My son, give me thy heart; And let thine eyes delight in my ways.</VERS>\r\n      <VERS vnumber=\"27\">For a harlot is a deep ditch; And a foreign woman is a narrow pit.</VERS>\r\n      <VERS vnumber=\"28\">Yea, she lieth in wait as a robber, And increaseth the treacherous among men.</VERS>\r\n      <VERS vnumber=\"29\">Who hath woe? who hath sorrow? who hath contentions? Who hath complaining? who hath wounds without cause? Who hath redness of eyes?</VERS>\r\n      <VERS vnumber=\"30\">They that tarry long at the wine; They that go to seek out mixed wine.</VERS>\r\n      <VERS vnumber=\"31\">Look not thou upon the wine when it is red, When it sparkleth in the cup, When it goeth down smoothly:</VERS>\r\n      <VERS vnumber=\"32\">At the last it biteth like a serpent, And stingeth like an adder.</VERS>\r\n      <VERS vnumber=\"33\">Thine eyes shall behold strange things, And thy heart shall utter perverse things.</VERS>\r\n      <VERS vnumber=\"34\">Yea, 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.</VERS>\r\n      <VERS vnumber=\"35\">They have stricken me, [shalt thou say], and I was not       hurt; They have beaten me, and I felt it not: When shall I awake? I will seek it yet again.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"24\">\r\n      <VERS vnumber=\"1\">Be not thou envious against evil men; Neither desire to be with them:</VERS>\r\n      <VERS vnumber=\"2\">For their heart studieth oppression, And their lips talk of mischief.</VERS>\r\n      <VERS vnumber=\"3\">Through wisdom is a house builded; And by understanding it is established;</VERS>\r\n      <VERS vnumber=\"4\">And by knowledge are the chambers filled With all precious and pleasant riches.</VERS>\r\n      <VERS vnumber=\"5\">A wise man is strong; Yea, a man of knowledge increaseth might</VERS>\r\n      <VERS vnumber=\"6\">For by wise guidance thou shalt make thy war;  And in the multitude of counsellors there is safety.</VERS>\r\n      <VERS vnumber=\"7\">Wisdom is too high for a fool: He openeth not his mouth in the gate.</VERS>\r\n      <VERS vnumber=\"8\">He that deviseth to do evil, Men shall call him a mischief-maker.</VERS>\r\n      <VERS vnumber=\"9\">The thought of foolishness is sin; And the scoffer is an abomination to men.</VERS>\r\n      <VERS vnumber=\"10\">If thou faint in the day of adversity, Thy strength is small.</VERS>\r\n      <VERS vnumber=\"11\">Deliver them that are carried away unto death, And those that are ready to be slain see that thou hold back.</VERS>\r\n      <VERS vnumber=\"12\">If thou sayest, Behold, we knew not this; Doth not he that weigheth the hearts consider it? And he that keepeth thy soul, doth not he know it? And shall not he render to every man according to his work?</VERS>\r\n      <VERS vnumber=\"13\">My son, eat thou honey, for it is good; And the droppings of the honeycomb, which are sweet to thy taste:</VERS>\r\n      <VERS vnumber=\"14\">So shalt thou know wisdom to be unto thy soul; If thou hast found it, then shall there be a reward, And thy hope shall not be cut off.</VERS>\r\n      <VERS vnumber=\"15\">Lay not wait, O wicked man, against the habitation of       the righteous; Destroy not his resting-place:</VERS>\r\n      <VERS vnumber=\"16\">For a righteous man falleth seven times, and riseth up       again; But the wicked are overthrown by calamity.</VERS>\r\n      <VERS vnumber=\"17\">Rejoice not when thine enemy falleth, And let not thy heart be glad when he is overthrown;</VERS>\r\n      <VERS vnumber=\"18\">Lest Jehovah see it, and it displease him, And he turn away his wrath from him.</VERS>\r\n      <VERS vnumber=\"19\">Fret not thyself because of evil-doers; Neither be thou envious at the wicked:</VERS>\r\n      <VERS vnumber=\"20\">For there shall be no reward to the evil man; The lamp of the wicked shall be put out.</VERS>\r\n      <VERS vnumber=\"21\">My son, fear thou Jehovah and the king; [And] company not with them that are given to change:</VERS>\r\n      <VERS vnumber=\"22\">For their calamity shall rise suddenly; And the destruction from them both, who knoweth it?</VERS>\r\n      <VERS vnumber=\"23\">These also are [sayings] of the wise.      To have respect of persons in judgment is not good.</VERS>\r\n      <VERS vnumber=\"24\">He that saith unto the wicked, Thou art righteous; Peoples shall curse him, nations shall abhor him:</VERS>\r\n      <VERS vnumber=\"25\">But to them that rebuke [him] shall be delight,  And a good blessing shall come upon them.</VERS>\r\n      <VERS vnumber=\"26\">He kisseth the lips Who giveth a right answer.</VERS>\r\n      <VERS vnumber=\"27\">Prepare thy work without, And make it ready for thee in the field; And afterwards build thy house.</VERS>\r\n      <VERS vnumber=\"28\">Be not a witness against thy neighbor without cause; And deceive not with thy lips.</VERS>\r\n      <VERS vnumber=\"29\">Say not, I will do so to him as he hath done to me; I will render to the man according to his work.</VERS>\r\n      <VERS vnumber=\"30\">I went by the field of the sluggard, And by the vineyard of the man void of understanding;</VERS>\r\n      <VERS vnumber=\"31\">And, lo, it was all grown over with thorns, The face thereof was covered with nettles, And the stone wall thereof was broken down.</VERS>\r\n      <VERS vnumber=\"32\">Then I beheld, and considered well; I saw, and received instruction:</VERS>\r\n      <VERS vnumber=\"33\">[Yet] a little sleep, a little slumber, A little folding of the hands to sleep;</VERS>\r\n      <VERS vnumber=\"34\">So shall thy poverty come as a robber, And thy want as an armed man.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"25\">\r\n      <VERS vnumber=\"1\">These also are proverbs of Solomon, which the men of Hezekiah king of Judah copied out.</VERS>\r\n      <VERS vnumber=\"2\">It is the glory of God to conceal a thing; But the glory of kings is to search out a matter.</VERS>\r\n      <VERS vnumber=\"3\">As the heavens for height, and the earth for depth, So the heart of kings is unsearchable.</VERS>\r\n      <VERS vnumber=\"4\">Take away the dross from the silver, And there cometh forth a vessel for the refiner:</VERS>\r\n      <VERS vnumber=\"5\">Take away the wicked [from] before the king, And his throne shall be established in righteousness.</VERS>\r\n      <VERS vnumber=\"6\">Put not thyself forward in the presence of the king, And stand not in the place of great men:</VERS>\r\n      <VERS vnumber=\"7\">For better is it 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.</VERS>\r\n      <VERS vnumber=\"8\">Go not forth hastily to strive, Lest [thou know not] what to do in the end thereof, When thy neighbor hath put thee to shame.</VERS>\r\n      <VERS vnumber=\"9\">Debate thy cause with thy neighbor [himself], And disclose not the secret of another;</VERS>\r\n      <VERS vnumber=\"10\">Lest he that heareth it revile thee, And thine infamy turn not away.</VERS>\r\n      <VERS vnumber=\"11\">A word fitly spoken Is [like] apples of gold in network of silver.</VERS>\r\n      <VERS vnumber=\"12\">[As] an ear-ring of gold, and an ornament of fine gold, [So is] a wise reprover upon an obedient ear.</VERS>\r\n      <VERS vnumber=\"13\">As 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.</VERS>\r\n      <VERS vnumber=\"14\">[As] clouds and wind without rain, [So is] he that boasteth himself of his gifts falsely.</VERS>\r\n      <VERS vnumber=\"15\">By long forbearing is a ruler persuaded, And a soft tongue breaketh the bone.</VERS>\r\n      <VERS vnumber=\"16\">Hast thou found honey? eat so much as is sufficient for       thee, Lest thou be filled therewith, and vomit it.</VERS>\r\n      <VERS vnumber=\"17\">Let thy foot be seldom in thy neighbor`s house, Lest he be weary of thee, and hate thee.</VERS>\r\n      <VERS vnumber=\"18\">A man that beareth false witness against his neighbor Is a maul, and a sword, and a sharp arrow.</VERS>\r\n      <VERS vnumber=\"19\">Confidence in an unfaithful man in time of trouble Is [like] a broken tooth, and a foot out of joint.</VERS>\r\n      <VERS vnumber=\"20\">[As] one that taketh off a garment in cold weather, [and       as] vinegar upon soda, So is he that singeth songs to a heavy heart.</VERS>\r\n      <VERS vnumber=\"21\">If thine enemy be hungry, give him bread to eat; And if he be thirsty, give him water to drink:</VERS>\r\n      <VERS vnumber=\"22\">For thou wilt heap coals of fire upon his head, And Jehovah will reward thee.</VERS>\r\n      <VERS vnumber=\"23\">The north wind bringeth forth rain: So doth a backbiting tongue an angry countenance.</VERS>\r\n      <VERS vnumber=\"24\">It is better to dwell in the corner of the housetop, Than with a contentious woman in a wide house.</VERS>\r\n      <VERS vnumber=\"25\">[As] cold waters to a thirsty soul, So is good news from a far country.</VERS>\r\n      <VERS vnumber=\"26\">[As] a troubled fountain, and a corrupted spring, [So is] a righteous man that giveth way before the wicked.</VERS>\r\n      <VERS vnumber=\"27\">It is not good to eat much honey: So [for men] to search out their own glory is grievous.</VERS>\r\n      <VERS vnumber=\"28\">He whose spirit is without restraint Is [like] a city that is broken down and without walls.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"26\">\r\n      <VERS vnumber=\"1\">As snow in summer, and as rain in harvest, So honor is not seemly for a fool.</VERS>\r\n      <VERS vnumber=\"2\">As the sparrow in her wandering, as the swallow in her       flying, So the curse that is causeless alighteth not.</VERS>\r\n      <VERS vnumber=\"3\">A whip for the horse, a bridle for the ass, And a rod for the back of fools.</VERS>\r\n      <VERS vnumber=\"4\">Answer not a fool according to his folly, Lest thou also be like unto him.</VERS>\r\n      <VERS vnumber=\"5\">Answer a fool according to his folly, Lest he be wise in his own conceit.</VERS>\r\n      <VERS vnumber=\"6\">He that sendeth a message by the hand of a fool Cutteth off [his own] feet, [and] drinketh in damage.</VERS>\r\n      <VERS vnumber=\"7\">The legs of the lame hang loose: So is a parable in the mouth of fools.</VERS>\r\n      <VERS vnumber=\"8\">As one that bindeth a stone in a sling, So is he that giveth honor to a fool.</VERS>\r\n      <VERS vnumber=\"9\">[As] a thorn that goeth up into the hand of a drunkard, So is a parable in the mouth of fools.</VERS>\r\n      <VERS vnumber=\"10\">[As] an archer that woundeth all, So is he that hireth a fool and he that hireth them that pass by.</VERS>\r\n      <VERS vnumber=\"11\">As a dog that returneth to his vomit, [So is] a fool that repeateth his folly.</VERS>\r\n      <VERS vnumber=\"12\">Seest thou a man wise in his own conceit? There is more hope of a fool than of him.</VERS>\r\n      <VERS vnumber=\"13\">The sluggard saith, There is a lion in the way; A lion is in the streets.</VERS>\r\n      <VERS vnumber=\"14\">[As] the door turneth upon its hinges, So doth the sluggard upon his bed.</VERS>\r\n      <VERS vnumber=\"15\">The sluggard burieth his hand in the dish; It wearieth him to bring it again to his mouth.</VERS>\r\n      <VERS vnumber=\"16\">The sluggard is wiser in his own conceit Than seven men that can render a reason.</VERS>\r\n      <VERS vnumber=\"17\">He that passeth by, [and] vexeth himself with strife       belonging not to him, Is [like] one that taketh a dog by the ears.</VERS>\r\n      <VERS vnumber=\"18\">As a madman who casteth firebrands, Arrows, and death,</VERS>\r\n      <VERS vnumber=\"19\">So is the man that deceiveth his neighbor, And saith, Am not I in sport?</VERS>\r\n      <VERS vnumber=\"20\">For lack of wood the fire goeth out; And where there is no whisperer, contention ceaseth.</VERS>\r\n      <VERS vnumber=\"21\">[As] coals are to hot embers, and wood to fire, So is a contentious man to inflame strife.</VERS>\r\n      <VERS vnumber=\"22\">The words of a whisperer are as dainty morsels, And they go down into the innermost parts.</VERS>\r\n      <VERS vnumber=\"23\">Fervent lips and a wicked heart Are [like] an earthen vessel overlaid with silver dross.</VERS>\r\n      <VERS vnumber=\"24\">He that hateth dissembleth with his lips; But he layeth up deceit within him:</VERS>\r\n      <VERS vnumber=\"25\">When he speaketh fair, believe him not; For there are seven abominations in his heart:</VERS>\r\n      <VERS vnumber=\"26\">Though [his] hatred cover itself with guile, His wickedness shall be openly showed before the assembly.</VERS>\r\n      <VERS vnumber=\"27\">Whoso diggeth a pit shall fall therein; And he that rolleth a stone, it shall return upon him.</VERS>\r\n      <VERS vnumber=\"28\">A lying tongue hateth those whom it hath wounded; And a flattering mouth worketh ruin.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"27\">\r\n      <VERS vnumber=\"1\">Boast not thyself of tomorrow; For thou knowest not what a day may bring forth.</VERS>\r\n      <VERS vnumber=\"2\">Let another man praise thee, and not thine own mouth; A stranger, and not thine own lips.</VERS>\r\n      <VERS vnumber=\"3\">A stone is heavy, and the sand weighty; But a fool`s vexation is heavier than they both.</VERS>\r\n      <VERS vnumber=\"4\">Wrath is cruel, and anger is overwhelming; But who is able to stand before jealousy?</VERS>\r\n      <VERS vnumber=\"5\">Better is open rebuke Than love that is hidden.</VERS>\r\n      <VERS vnumber=\"6\">Faithful are the wounds of a friend; But the kisses of an enemy are profuse.</VERS>\r\n      <VERS vnumber=\"7\">The full soul loatheth a honeycomb; But to the hungry soul every bitter thing is sweet.</VERS>\r\n      <VERS vnumber=\"8\">As a bird that wandereth from her nest, So is a man that wandereth from his place.</VERS>\r\n      <VERS vnumber=\"9\">Oil and perfume rejoice the heart; So doth the sweetness of a man`s friend [that cometh] of hearty       counsel.</VERS>\r\n      <VERS vnumber=\"10\">Thine own friend, and thy father`s friend, forsake not; And go not to thy brother`s house in the day of thy calamity: Better is a neighbor that is near than a brother far off.</VERS>\r\n      <VERS vnumber=\"11\">My son, be wise, and make my heart glad, That I may answer him that reproacheth me.</VERS>\r\n      <VERS vnumber=\"12\">A prudent man seeth the evil, [and] hideth himself; [But] the simple pass on, [and] suffer for it.</VERS>\r\n      <VERS vnumber=\"13\">Take his garment that is surety for a stranger; And hold him in pledge [that is surety] for a foreign woman.</VERS>\r\n      <VERS vnumber=\"14\">He that blesseth his friend with a loud voice, rising       early in the morning, It shall be counted a curse to him.</VERS>\r\n      <VERS vnumber=\"15\">A continual dropping in a very rainy day And a contentious woman are alike:</VERS>\r\n      <VERS vnumber=\"16\">He that would restrain her restraineth the wind; And his right hand encountereth oil.</VERS>\r\n      <VERS vnumber=\"17\">Iron sharpeneth iron; So a man sharpeneth the countenance of his friend.</VERS>\r\n      <VERS vnumber=\"18\">Whoso keepeth the fig-tree shall eat the fruit thereof; And he that regardeth his master shall be honored.</VERS>\r\n      <VERS vnumber=\"19\">As in water face [answereth] to face, So the heart of man to man.</VERS>\r\n      <VERS vnumber=\"20\">Sheol and Abaddon are never satisfied; And the eyes of man are never satisfied.</VERS>\r\n      <VERS vnumber=\"21\">The refining pot is for silver, and the furnace for gold; And a man is [tried] by his praise.</VERS>\r\n      <VERS vnumber=\"22\">Though thou shouldest bray a fool in a mortar with a       pestle along with bruised grain, Yet will not his foolishness depart from him.</VERS>\r\n      <VERS vnumber=\"23\">Be thou diligent to know the state of thy flocks, [And] look well to thy herds:</VERS>\r\n      <VERS vnumber=\"24\">For riches are not for ever: And doth the crown endure unto all generations?</VERS>\r\n      <VERS vnumber=\"25\">The hay is carried, and the tender grass showeth itself, And the herbs of the mountains are gathered in.</VERS>\r\n      <VERS vnumber=\"26\">The lambs are for thy clothing, And the goats are the price of the field;</VERS>\r\n      <VERS vnumber=\"27\">And [there will be] goats` milk enough for thy food, for       the food of thy household, And maintenance for thy maidens.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"28\">\r\n      <VERS vnumber=\"1\">The wicked flee when no man pursueth; But the righteous are bold as a lion.</VERS>\r\n      <VERS vnumber=\"2\">For the transgression of a land many are the princes       thereof; But by men of understanding [and] knowledge the state [thereof]       shall be prolonged.</VERS>\r\n      <VERS vnumber=\"3\">A needy man that oppresseth the poor Is [like] a sweeping rain which leaveth no food.</VERS>\r\n      <VERS vnumber=\"4\">They that forsake the law praise the wicked; But such as keep the law contend with them.</VERS>\r\n      <VERS vnumber=\"5\">Evil men understand not justice; But they that seek Jehovah understand all things.</VERS>\r\n      <VERS vnumber=\"6\">Better is the poor that walketh in his integrity, Than he that is perverse in [his] ways, though he be rich.</VERS>\r\n      <VERS vnumber=\"7\">Whoso keepeth the law is a wise son; But he that is a companion of gluttons shameth his father.</VERS>\r\n      <VERS vnumber=\"8\">He that augmenteth his substance by interest and       increase,  Gathereth it for him that hath pity on the poor.</VERS>\r\n      <VERS vnumber=\"9\">He that turneth away his ear from hearing the law, Even his prayer is an abomination.</VERS>\r\n      <VERS vnumber=\"10\">Whoso causeth the upright to go astray in an evil way, He shall fall himself into his own pit; But the perfect shall inherit good.</VERS>\r\n      <VERS vnumber=\"11\">The rich man is wise in his own conceit; But the poor that hath understanding searcheth him out.</VERS>\r\n      <VERS vnumber=\"12\">When the righteous triumph, there is great glory; But when the wicked rise, men hide themselves.</VERS>\r\n      <VERS vnumber=\"13\">He that covereth his transgressions shall not prosper: But whoso confesseth and forsaketh them shall obtain mercy.</VERS>\r\n      <VERS vnumber=\"14\">Happy is the man that feareth alway; But he that hardeneth his heart shall fall into mischief.</VERS>\r\n      <VERS vnumber=\"15\">[As] a roaring lion, and a ranging bear, [So is] a wicked ruler over a poor people.</VERS>\r\n      <VERS vnumber=\"16\">The prince that lacketh understanding is also a great       oppressor; [But] he that hateth covetousness shall prolong his days.</VERS>\r\n      <VERS vnumber=\"17\">A man that is laden with the blood of any person Shall flee unto the pit; let no man stay him.</VERS>\r\n      <VERS vnumber=\"18\">Whoso walketh uprightly shall be delivered; But he that is perverse in [his] ways shall fall at once.</VERS>\r\n      <VERS vnumber=\"19\">He that tilleth his land shall have plenty of bread; But he that followeth after vain [persons] shall have poverty       enough.</VERS>\r\n      <VERS vnumber=\"20\">A faithful man shall abound with blessings; But he that maketh haste to be rich shall not be unpunished.</VERS>\r\n      <VERS vnumber=\"21\">To have respect of persons is not good; Neither that a man should transgress for a piece of bread.</VERS>\r\n      <VERS vnumber=\"22\">he that hath an evil eye hasteth after riches, And knoweth not that want shall come upon him.</VERS>\r\n      <VERS vnumber=\"23\">He that rebuketh a man shall afterward find more favor Than he that flattereth with the tongue.</VERS>\r\n      <VERS vnumber=\"24\">Whoso robbeth his father or his mother, and saith, It is       no transgression, The same is the companion of a destroyer.</VERS>\r\n      <VERS vnumber=\"25\">He that is of a greedy spirit stirreth up strife; But he that putteth his trust in Jehovah shall be made fat.</VERS>\r\n      <VERS vnumber=\"26\">He that trusteth in his own heart is a fool; But whoso walketh wisely, he shall be delivered.</VERS>\r\n      <VERS vnumber=\"27\">He that giveth unto the poor shall not lack; But he that hideth his eyes shall have many a curse.</VERS>\r\n      <VERS vnumber=\"28\">When the wicked rise, men hide themselves; But when they perish, the righteous increase.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"29\">\r\n      <VERS vnumber=\"1\">He that being often reproved hardeneth his neck Shall suddenly be destroyed, and that without remedy.</VERS>\r\n      <VERS vnumber=\"2\">When the righteous are increased, the people rejoice; But when a wicked man beareth rule, the people sigh.</VERS>\r\n      <VERS vnumber=\"3\">Whoso loveth wisdom rejoiceth his father; But he that keepeth company with harlots wasteth [his] substance.</VERS>\r\n      <VERS vnumber=\"4\">The king by justice establisheth the land; But he that exacteth gifts overthroweth it.</VERS>\r\n      <VERS vnumber=\"5\">A man that flattereth his neighbor Spreadeth a net for his steps.</VERS>\r\n      <VERS vnumber=\"6\">In the transgression of an evil man there is a snare; But the righteous doth sing and rejoice.</VERS>\r\n      <VERS vnumber=\"7\">The righteous taketh knowledge of the cause of the poor; The wicked hath not understanding to know [it].</VERS>\r\n      <VERS vnumber=\"8\">Scoffers set a city in a flame; But wise men turn away wrath.</VERS>\r\n      <VERS vnumber=\"9\">If a wise man hath a controversy with a foolish man, Whether he be angry or laugh, there will be no rest.</VERS>\r\n      <VERS vnumber=\"10\">The bloodthirsty hate him that is perfect; And as for the upright, they seek his life.</VERS>\r\n      <VERS vnumber=\"11\">A fool uttereth all his anger; But a wise man keepeth it back and stilleth it.</VERS>\r\n      <VERS vnumber=\"12\">If a ruler hearkeneth to falsehood, All his servants are wicked.</VERS>\r\n      <VERS vnumber=\"13\">The poor man and the oppressor meet together; Jehovah lighteneth the eyes of them both.</VERS>\r\n      <VERS vnumber=\"14\">The king that faithfully judgeth the poor, His throne shall be established for ever.</VERS>\r\n      <VERS vnumber=\"15\">The rod and reproof give wisdom; But a child left to himself causeth shame to his mother.</VERS>\r\n      <VERS vnumber=\"16\">When the wicked are increased, transgression increaseth; But the righteous shall look upon their fall.</VERS>\r\n      <VERS vnumber=\"17\">Correct thy son, and he will give thee rest; Yea, he will give delight unto thy soul.</VERS>\r\n      <VERS vnumber=\"18\">Where there is no vision, the people cast off restraint; But he that keepeth the law, happy is he.</VERS>\r\n      <VERS vnumber=\"19\">A servant will not be corrected by words; For though he understand, he will not give heed.</VERS>\r\n      <VERS vnumber=\"20\">Seest thou a man that is hasty in his words? There is more hope of a fool than of him.</VERS>\r\n      <VERS vnumber=\"21\">He that delicately bringeth up his servant from a child Shall have him become a son at the last.</VERS>\r\n      <VERS vnumber=\"22\">An angry man stirreth up strife, And a wrathful man aboundeth in transgression.</VERS>\r\n      <VERS vnumber=\"23\">A man`s pride shall bring him low; But he that is of a lowly spirit shall obtain honor.</VERS>\r\n      <VERS vnumber=\"24\">Whoso is partner with a thief hateth his own soul; He heareth the adjuration and uttereth nothing.</VERS>\r\n      <VERS vnumber=\"25\">The fear of man bringeth a snare; But whoso putteth his trust in Jehovah shall be safe.</VERS>\r\n      <VERS vnumber=\"26\">Many seek the ruler`s favor; But a man`s judgment [cometh] from Jehovah.</VERS>\r\n      <VERS vnumber=\"27\">An unjust man is an abomination to the righteous; And he that is upright in the way is an abomination to the       wicked.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"30\">\r\n      <VERS vnumber=\"1\">The words of Agur the son of Jakeh; The oracle.      The man saith unto Ithiel, unto Ithiel and Ucal:</VERS>\r\n      <VERS vnumber=\"2\">Surely I am more brutish than any man, And have not the understanding of a man;</VERS>\r\n      <VERS vnumber=\"3\">And I have not learned wisdom, Neither have I the knowledge of the Holy One.</VERS>\r\n      <VERS vnumber=\"4\">Who hath ascended up into heaven, and descended? Who hath gathered the wind in his fists?  Who hath bound the waters in his garment?  Who hath established all the ends of the earth? What is his name, and what is his son`s name, if thou knowest?</VERS>\r\n      <VERS vnumber=\"5\">Every word of God is tried: He is a shield unto them that take refuge in him.</VERS>\r\n      <VERS vnumber=\"6\">Add thou not unto his words, Lest he reprove thee, and thou be found a liar.</VERS>\r\n      <VERS vnumber=\"7\">Two things have I asked of thee; Deny me [them] not before I die:</VERS>\r\n      <VERS vnumber=\"8\">Remove far from me falsehood and lies; Give me neither poverty nor riches; Feed me with the food that is needful for me:</VERS>\r\n      <VERS vnumber=\"9\">Lest I be full, and deny [thee], and say, Who is Jehovah? Or lest I be poor, and steal, And use profanely the name of my God.</VERS>\r\n      <VERS vnumber=\"10\">Slander not a servant unto his master, Lest he curse thee, and thou be held guilty.</VERS>\r\n      <VERS vnumber=\"11\">There is a generation that curse their father, And bless not their mother.</VERS>\r\n      <VERS vnumber=\"12\">There is a generation that are pure in their own eyes, And [yet] are not washed from their filthiness.</VERS>\r\n      <VERS vnumber=\"13\">There is a generation, oh how lofty are their eyes! And their eyelids are lifted up.</VERS>\r\n      <VERS vnumber=\"14\">There 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.</VERS>\r\n      <VERS vnumber=\"15\">The horseleach hath two daughters, [crying], Give, give. There are three things that are never satisfied, [Yea], four that say not, Enough:</VERS>\r\n      <VERS vnumber=\"16\">Sheol; and the barren womb; The earth that is not satisfied with water; And the fire that saith not, Enough.</VERS>\r\n      <VERS vnumber=\"17\">The 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.</VERS>\r\n      <VERS vnumber=\"18\">There are three things which are too wonderful for me, Yea, four which I know not:</VERS>\r\n      <VERS vnumber=\"19\">The 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 maiden.</VERS>\r\n      <VERS vnumber=\"20\">So is the way of an adulterous woman; She eateth, and wipeth her mouth, And saith, I have done no wickedness.</VERS>\r\n      <VERS vnumber=\"21\">For three things the earth doth tremble, And for four, [which] it cannot bear:</VERS>\r\n      <VERS vnumber=\"22\">For a servant when he is king;  And a fool when he is filled with food;</VERS>\r\n      <VERS vnumber=\"23\">For an odious woman when she is married; And a handmaid that is heir to her mistress.</VERS>\r\n      <VERS vnumber=\"24\">There are four things which are little upon the earth, But they are exceeding wise:</VERS>\r\n      <VERS vnumber=\"25\">The ants are a people not strong, Yet they provide their food in the summer;</VERS>\r\n      <VERS vnumber=\"26\">The conies are but a feeble folk, Yet make they their houses in the rocks;</VERS>\r\n      <VERS vnumber=\"27\">The locusts have no king, Yet go they forth all of them by bands;</VERS>\r\n      <VERS vnumber=\"28\">The lizard taketh hold with her hands, Yet is she in kings` palaces.</VERS>\r\n      <VERS vnumber=\"29\">There are three things which are stately in their march, Yea, four which are stately in going:</VERS>\r\n      <VERS vnumber=\"30\">The lion, which is mightiest among beasts, And turneth not away for any;</VERS>\r\n      <VERS vnumber=\"31\">The greyhound; the he-goat also; And the king against whom there is no rising up.</VERS>\r\n      <VERS vnumber=\"32\">If thou hast done foolishly in lifting up thyself, Or if thou hast thought evil, [Lay] thy hand upon thy mouth.</VERS>\r\n      <VERS vnumber=\"33\">For the churning of milk bringeth forth butter, And the wringing of the nose bringeth forth blood; So the forcing of wrath bringeth forth strife.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"31\">\r\n      <VERS vnumber=\"1\">The words of king Lemuel; the oracle which his mother taught him.</VERS>\r\n      <VERS vnumber=\"2\">What, my son? and what, O son of my womb? And what, O son of my vows?</VERS>\r\n      <VERS vnumber=\"3\">Give not thy strength unto women, Nor thy ways to that which destroyeth kings.</VERS>\r\n      <VERS vnumber=\"4\">It is not for kings, O Lemuel, it is not for kings to       drink wine; Nor for princes [to say], Where is strong drink?</VERS>\r\n      <VERS vnumber=\"5\">Lest they drink, and forget the law, And pervert the justice [due] to any that is afflicted.</VERS>\r\n      <VERS vnumber=\"6\">Give strong drink unto him that is ready to perish, And wine unto the bitter in soul:</VERS>\r\n      <VERS vnumber=\"7\">Let him drink, and forget his poverty, And remember his misery no more.</VERS>\r\n      <VERS vnumber=\"8\">Open thy mouth for the dumb, In the cause of all such as are left desolate.</VERS>\r\n      <VERS vnumber=\"9\">Open thy mouth, judge righteously, And minister justice to the poor and needy.</VERS>\r\n      <VERS vnumber=\"10\">A worthy woman who can find? For her price is far above rubies.</VERS>\r\n      <VERS vnumber=\"11\">The heart of her husband trusteth in her, And he shall have no lack of gain.</VERS>\r\n      <VERS vnumber=\"12\">She doeth him good and not evil All the days of her life.</VERS>\r\n      <VERS vnumber=\"13\">She seeketh wool and flax, And worketh willingly with her hands.</VERS>\r\n      <VERS vnumber=\"14\">She is like the merchant-ships; She bringeth her bread from afar.</VERS>\r\n      <VERS vnumber=\"15\">She riseth also while it is yet night, And giveth food to her household, And their task to her maidens.</VERS>\r\n      <VERS vnumber=\"16\">She considereth a field, and buyeth it; With the fruit of her hands she planteth a vineyard.</VERS>\r\n      <VERS vnumber=\"17\">She girdeth her loins with strength, And maketh strong her arms.</VERS>\r\n      <VERS vnumber=\"18\">She perceiveth that her merchandise is profitable: Her lamp goeth not out by night.</VERS>\r\n      <VERS vnumber=\"19\">She layeth her hands to the distaff, And her hands hold the spindle.</VERS>\r\n      <VERS vnumber=\"20\">She stretcheth out her hand to the poor; Yea, she reacheth forth her hands to the needy.</VERS>\r\n      <VERS vnumber=\"21\">She is not afraid of the snow for her household; For all her household are clothed with scarlet.</VERS>\r\n      <VERS vnumber=\"22\">She maketh for herself carpets of tapestry; Her clothing is fine linen and purple.</VERS>\r\n      <VERS vnumber=\"23\">Her husband is known in the gates, When he sitteth among the elders of the land.</VERS>\r\n      <VERS vnumber=\"24\">She maketh linen garments and selleth them, And delivereth girdles unto the merchant.</VERS>\r\n      <VERS vnumber=\"25\">Strength and dignity are her clothing; And she laugheth at the time to come.</VERS>\r\n      <VERS vnumber=\"26\">She openeth her mouth with wisdom; And the law of kindness is on her tongue.</VERS>\r\n      <VERS vnumber=\"27\">She looketh well to the ways of her household, And eateth not the bread of idleness.</VERS>\r\n      <VERS vnumber=\"28\">Her children rise up, and call her blessed; Her husband [also], and he praiseth her, [saying]:</VERS>\r\n      <VERS vnumber=\"29\">Many daughters have done worthily, But thou excellest them all.</VERS>\r\n      <VERS vnumber=\"30\">Grace is deceitful, and beauty is vain; [But] a woman that feareth Jehovah, she shall be praised.</VERS>\r\n      <VERS vnumber=\"31\">Give her of the fruit of her hands; And let her works praise her in the gates.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"21\" bname=\"Ecclesiastes\" bsname=\"Eccl\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">The words of the Preacher, the son of David, king in Jerusalem.</VERS>\r\n      <VERS vnumber=\"2\">Vanity of vanities, saith the Preacher; vanity of vanities, all is vanity.</VERS>\r\n      <VERS vnumber=\"3\">What profit hath man of all his labor wherein he laboreth under the sun?</VERS>\r\n      <VERS vnumber=\"4\">One generation goeth, and another generation cometh; but the earth abideth for ever.</VERS>\r\n      <VERS vnumber=\"5\">The sun also ariseth, and the sun goeth down, and hasteth to its place where it ariseth.</VERS>\r\n      <VERS vnumber=\"6\">The wind goeth toward the south, and turneth about unto the north; it turneth about continually in its course, and the wind returneth again to its circuits.</VERS>\r\n      <VERS vnumber=\"7\">All the rivers run into the sea, yet the sea is not full; unto the place whither the rivers go, thither they go again.</VERS>\r\n      <VERS vnumber=\"8\">All things are full of weariness; man cannot utter [it]: the eye is not satisfied with seeing, nor the ear filled with hearing.</VERS>\r\n      <VERS vnumber=\"9\">That which hath been is that which shall be; and that which hath been done is that which shall be done: and there is no new thing under the sun.</VERS>\r\n      <VERS vnumber=\"10\">Is there a thing whereof it may be said, See, this is new? it hath been long ago, in the ages which were before us.</VERS>\r\n      <VERS vnumber=\"11\">There is no remembrance of the former [generations]; neither shall there be any remembrance of the latter [generations] that are to come, among those that shall come after.</VERS>\r\n      <VERS vnumber=\"12\">I the Preacher was king over Israel in Jerusalem.</VERS>\r\n      <VERS vnumber=\"13\">And I applied my heart to seek and to search out by wisdom concerning all that is done under heaven: it is a sore travail that God hath given to the sons of men to be exercised therewith.</VERS>\r\n      <VERS vnumber=\"14\">I have seen all the works that are done under the sun; and, behold, all is vanity and a striving after wind.</VERS>\r\n      <VERS vnumber=\"15\">That which is crooked cannot be made straight; and that which is wanting cannot be numbered.</VERS>\r\n      <VERS vnumber=\"16\">I communed with mine own hear, saying, Lo, I have gotten me great wisdom above all that were before me in Jerusalem; yea, my heart hath had great experience of wisdom and knowledge.</VERS>\r\n      <VERS vnumber=\"17\">And I applied my heart to know wisdom, and to know madness and folly: I perceived that this also was a striving after wind.</VERS>\r\n      <VERS vnumber=\"18\">For in much wisdom is much grief; and he that increaseth knowledge increaseth sorrow.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">I said in my heart, Come now, I will prove thee with mirth; therefore enjoy pleasure: and, behold, this also was vanity.</VERS>\r\n      <VERS vnumber=\"2\">I said of laughter, It is mad; and of mirth, What doeth it?</VERS>\r\n      <VERS vnumber=\"3\">I searched in my heart how to cheer my flesh with wine, my heart yet guiding [me] with wisdom, and how to lay hold on folly, till I might see what it was good for the sons of men that they should do under heaven all the days of their life.</VERS>\r\n      <VERS vnumber=\"4\">I made me great works; I builded me houses; I planted me vineyards;</VERS>\r\n      <VERS vnumber=\"5\">I made me gardens and parks, and I planted trees in them of all kinds of fruit;</VERS>\r\n      <VERS vnumber=\"6\">I made me pools of water, to water therefrom the forest where trees were reared;</VERS>\r\n      <VERS vnumber=\"7\">I bought men-servants and maid-servants, and had servants born in my house; also I had great possessions of herds and flocks, above all that were before me in Jerusalem;</VERS>\r\n      <VERS vnumber=\"8\">I gathered me also silver and gold, and the treasure of kings and of the provinces; I gat me men-singers and women-singers, and the delights of the sons of men, musical instruments, and that of all sorts.</VERS>\r\n      <VERS vnumber=\"9\">So I was great, and increased more than all that were before me in Jerusalem: also my wisdom remained with me.</VERS>\r\n      <VERS vnumber=\"10\">And whatsoever mine eyes desired I kept not from them; I withheld not my heart from any joy; for my heart rejoiced because of all my labor; and this was my portion from all my labor.</VERS>\r\n      <VERS vnumber=\"11\">Then I looked on all the works that my hands had wrought, and on the labor that I had labored to do; and, behold, all was vanity and a striving after wind, and there was no profit under the sun.</VERS>\r\n      <VERS vnumber=\"12\">And 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 done long ago.</VERS>\r\n      <VERS vnumber=\"13\">Then I saw that wisdom excelleth folly, as far as light excelleth darkness.</VERS>\r\n      <VERS vnumber=\"14\">The wise man`s eyes are in his head, and the fool walketh in darkness: and yet I perceived that one event happeneth to them all.</VERS>\r\n      <VERS vnumber=\"15\">Then said I in my heart, As it happeneth to the fool, so will it happen even to me; and why was I then more wise? Then said I in my heart, that this also is vanity.</VERS>\r\n      <VERS vnumber=\"16\">For of the wise man, even as of the fool, there is no remembrance for ever; seeing that in the days to come all will have been long forgotten. And how doth the wise man die even as the fool!</VERS>\r\n      <VERS vnumber=\"17\">So I hated life, because the work that is wrought under the sun was grievous unto me; for all is vanity and a striving after wind.</VERS>\r\n      <VERS vnumber=\"18\">And I hated all my labor wherein I labored under the sun, seeing that I must leave it unto the man that shall be after me.</VERS>\r\n      <VERS vnumber=\"19\">And who knoweth whether he will be a wise man or a fool? yet will he have rule over all my labor wherein I have labored, and wherein I have showed myself wise under the sun. This also is vanity.</VERS>\r\n      <VERS vnumber=\"20\">Therefore I turned about to cause my heart to despair concerning all the labor wherein I had labored under the sun.</VERS>\r\n      <VERS vnumber=\"21\">For there is a man whose labor is with wisdom, and with knowledge, and with skilfulness; yet to a man that hath not labored therein shall he leave it for his portion. This also is vanity and a great evil.</VERS>\r\n      <VERS vnumber=\"22\">For what hath a man of all his labor, and of the striving of his heart, wherein he laboreth under the sun?</VERS>\r\n      <VERS vnumber=\"23\">For all his days are [but] sorrows, and his travail is grief; yea, even in the night his heart taketh no rest. This also is vanity.</VERS>\r\n      <VERS vnumber=\"24\">There is nothing better for a man [than] that he should eat and drink, and make his soul enjoy good in his labor. This also I saw, that it is from the hand of God.</VERS>\r\n      <VERS vnumber=\"25\">For who can eat, or who can have enjoyment, more than I?</VERS>\r\n      <VERS vnumber=\"26\">For to the man that pleaseth him [God] giveth 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 pleaseth God. This also is vanity and a striving after wind.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">For everything there is a season, and a time for very purpose under heaven:</VERS>\r\n      <VERS vnumber=\"2\">a time to be born, and a time to die; a time to plant, and a time to pluck up that which is planted;</VERS>\r\n      <VERS vnumber=\"3\">a time to kill, and a time to heal; a time to break down, and a time to build up;</VERS>\r\n      <VERS vnumber=\"4\">a time to weep, and a time to laugh; a time to mourn, and a time to dance;</VERS>\r\n      <VERS vnumber=\"5\">a time to cast away stones, and a time to gather stones together; a time to embrace, and a time to refrain from embracing;</VERS>\r\n      <VERS vnumber=\"6\">a time to seek, and a time to lose; a time to keep, and a time to cast away;</VERS>\r\n      <VERS vnumber=\"7\">a time to rend, and a time to sew; a time to keep silence, and a time to speak;</VERS>\r\n      <VERS vnumber=\"8\">a time to love, and a time to hate; a time for war, and a time for peace.</VERS>\r\n      <VERS vnumber=\"9\">What profit hath he that worketh in that wherein he laboreth?</VERS>\r\n      <VERS vnumber=\"10\">I have seen the travail which God hath given to the sons of men to be exercised therewith.</VERS>\r\n      <VERS vnumber=\"11\">He hath made everything beautiful in its time: also he hath set eternity in their heart, yet so that man cannot find out the work that God hath done from the beginning even to the end.</VERS>\r\n      <VERS vnumber=\"12\">I know that there is nothing better for them, than to rejoice, and to do good so long as they live.</VERS>\r\n      <VERS vnumber=\"13\">And also that every man should eat and drink, and enjoy good in all his labor, is the gift of God.</VERS>\r\n      <VERS vnumber=\"14\">I know that, whatsoever God doeth, it shall be for ever: nothing can be put to it, nor anything taken from it; and God hath done it, that men should fear before him.</VERS>\r\n      <VERS vnumber=\"15\">That which is hath been long ago; and that which is to be hath long ago been: and God seeketh again that which is passed away.</VERS>\r\n      <VERS vnumber=\"16\">And moreover I saw under the sun, in the place of justice, that wickedness was there; and in the place of righteousness, that wickedness was there.</VERS>\r\n      <VERS vnumber=\"17\">I said in my heart, God will judge the righteous and the wicked; for there is a time there for every purpose and for every work.</VERS>\r\n      <VERS vnumber=\"18\">I said in my heart, [It is] because of the sons of men, that God may prove them, and that they may see that they themselves are [but as] beasts.</VERS>\r\n      <VERS vnumber=\"19\">For 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; and man hath no preeminence above the beasts: for all is vanity.</VERS>\r\n      <VERS vnumber=\"20\">All go unto one place; all are of the dust, and all turn to dust again.</VERS>\r\n      <VERS vnumber=\"21\">Who knoweth the spirit of man, whether it goeth upward, and the spirit of the beast, whether it goeth downward to the earth?</VERS>\r\n      <VERS vnumber=\"22\">Wherefore I saw that there is nothing better, than that a man should rejoice in his works; for that is his portion: for who shall bring him [back] to see what shall be after him?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">Then I returned and saw 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.</VERS>\r\n      <VERS vnumber=\"2\">Wherefore I praised the dead that have been long dead more than the living that are yet alive;</VERS>\r\n      <VERS vnumber=\"3\">yea, better than them both [did I esteem] him that hath not yet been, who hath not seen the evil work that is done under the sun.</VERS>\r\n      <VERS vnumber=\"4\">Then I saw all labor and every skilful work, that for this a man is envied of his neighbor. This also is vanity and a striving after wind.</VERS>\r\n      <VERS vnumber=\"5\">The fool foldeth his hands together, and eateth his own flesh.</VERS>\r\n      <VERS vnumber=\"6\">Better is a handful, with quietness, than two handfuls with labor and striving after wind.</VERS>\r\n      <VERS vnumber=\"7\">Then I returned and saw vanity under the sun.</VERS>\r\n      <VERS vnumber=\"8\">There is one that is alone, and he hath not a second; yea, he hath neither son nor brother; yet is there no end of all his labor, neither are his eyes satisfied with riches. For whom then, [saith he], do I labor, and deprive my soul of good? This also is vanity, yea, it is a sore travail.</VERS>\r\n      <VERS vnumber=\"9\">Two are better than one, because they have a good reward for their labor.</VERS>\r\n      <VERS vnumber=\"10\">For if they fall, the one will lift up his fellow; but woe to him that is alone when he falleth, and hath not another to lift him up.</VERS>\r\n      <VERS vnumber=\"11\">Again, if two lie together, then they have warmth; but how can one be warm [alone]?</VERS>\r\n      <VERS vnumber=\"12\">And if a man prevail against him that is alone, two shall withstand him; and a threefold cord is not quickly broken.</VERS>\r\n      <VERS vnumber=\"13\">Better is a poor and wise youth than an old and foolish king, who knoweth not how to receive admonition any more.</VERS>\r\n      <VERS vnumber=\"14\">For out of prison he came forth to be king; yea, even in his kingdom he was born poor.</VERS>\r\n      <VERS vnumber=\"15\">I saw all the living that walk under the sun, that they were with the youth, the second, that stood up in his stead.</VERS>\r\n      <VERS vnumber=\"16\">There was no end of all the people, even of all them over whom he was: yet they that come after shall not rejoice in him. Surely this also is vanity and a striving after wind.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">Keep thy foot when thou goest to the house of God; for to draw nigh to hear is better than to give the sacrifice of fools: for they know not that they do evil.</VERS>\r\n      <VERS vnumber=\"2\">Be not rash with thy mouth, and let not thy heart be hasty to utter anything before God; for God is in heaven, and thou upon earth: therefore let thy words be few.</VERS>\r\n      <VERS vnumber=\"3\">For a dream cometh with a multitude of business, and a fool`s voice with a multitude of words.</VERS>\r\n      <VERS vnumber=\"4\">When thou vowest a vow unto God, defer not to pay it; for he hath no pleasure in fools: pay that which thou vowest.</VERS>\r\n      <VERS vnumber=\"5\">Better is it that thou shouldest not vow, than that thou shouldest vow and not pay.</VERS>\r\n      <VERS vnumber=\"6\">Suffer not thy mouth to cause thy flesh to sin; neither say thou before the angel, that is was an error: wherefore should God be angry at thy voice, and destroy the work of thy hands?</VERS>\r\n      <VERS vnumber=\"7\">For in the multitude of dreams there are vanities, and in many words: but fear thou God.</VERS>\r\n      <VERS vnumber=\"8\">If thou seest the oppression of the poor, and the violent taking away of justice and righteousness in a province, marvel not at the matter: for one higher than the high regardeth; and there are higher than they.</VERS>\r\n      <VERS vnumber=\"9\">Moreover the profit of the earth is for all: the king [himself] is served by the field.</VERS>\r\n      <VERS vnumber=\"10\">He that loveth silver shall not be satisfied with silver; nor he that loveth abundance, with increase: this also is vanity.</VERS>\r\n      <VERS vnumber=\"11\">When goods increase, they are increased that eat them; and what advantage is there to the owner thereof, save the beholding [of them] with his eyes?</VERS>\r\n      <VERS vnumber=\"12\">The sleep of a laboring man is sweet, whether he eat little or much; but the fulness of the rich will not suffer him to sleep.</VERS>\r\n      <VERS vnumber=\"13\">There is a grievous evil which I have seen under the sun, [namely], riches kept by the owner thereof to his hurt:</VERS>\r\n      <VERS vnumber=\"14\">and those riches perish by evil adventure; and if he hath begotten a son, there is nothing in his hand.</VERS>\r\n      <VERS vnumber=\"15\">As he came forth from his mother`s womb, naked shall he go again as he came, and shall take nothing for his labor, which he may carry away in his hand.</VERS>\r\n      <VERS vnumber=\"16\">And this also is a grievous evil, that in all points as he came, so shall he go: and what profit hath he that he laboreth for the wind?</VERS>\r\n      <VERS vnumber=\"17\">All his days also he eateth in darkness, and he is sore vexed, and hath sickness and wrath.</VERS>\r\n      <VERS vnumber=\"18\">Behold, that which I have seen to be good and to be comely is for one to eat and to drink, and to enjoy good in all his labor, wherein he laboreth under the sun, all the days of his life which God hath given him: for this is his portion.</VERS>\r\n      <VERS vnumber=\"19\">Every 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 labor-this is the gift of God.</VERS>\r\n      <VERS vnumber=\"20\">For he shall not much remember the days of his life; because God answereth [him] in the joy of his heart.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">There is an evil which I have seen under the sun, and it is heavy upon men:</VERS>\r\n      <VERS vnumber=\"2\">a man to whom God giveth riches, wealth, and honor, so that he lacketh nothing for his soul of all that he desireth, yet God giveth him not power to eat thereof, but an alien eateth it; this is vanity, and it is an evil disease.</VERS>\r\n      <VERS vnumber=\"3\">If a man beget a hundred children, and live many years, so that the days of his years are many, but his soul be not filled with good, and moreover he have no burial; I say, that an untimely birth is better than he:</VERS>\r\n      <VERS vnumber=\"4\">for it cometh in vanity, and departeth in darkness, and the name thereof is covered with darkness;</VERS>\r\n      <VERS vnumber=\"5\">moreover it hath not seen the sun nor known it; this hath rest rather than the other:</VERS>\r\n      <VERS vnumber=\"6\">yea, though he live a thousand years twice told, and yet enjoy no good, do not all go to one place?</VERS>\r\n      <VERS vnumber=\"7\">All the labor of man is for his mouth, and yet the appetite is not filled.</VERS>\r\n      <VERS vnumber=\"8\">For what advantage hath the wise more than the fool? [or] what hath the poor man, that knoweth how to walk before the living?</VERS>\r\n      <VERS vnumber=\"9\">Better is the sight of the eyes than the wandering of the desire: this also is vanity and a striving after wind.</VERS>\r\n      <VERS vnumber=\"10\">Whatsoever hath been, the name thereof was given long ago; and it is know what man is; neither can he contend with him that is mightier than he.</VERS>\r\n      <VERS vnumber=\"11\">Seeing there are many things that increase vanity, what is man the better?</VERS>\r\n      <VERS vnumber=\"12\">For who knoweth what is good for man in [his] 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?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">A [good] name is better than precious oil; and the day of death, than the day of one`s birth.</VERS>\r\n      <VERS vnumber=\"2\">It 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.</VERS>\r\n      <VERS vnumber=\"3\">Sorrow is better than laughter; for by the sadness of the countenance the heart is made glad.</VERS>\r\n      <VERS vnumber=\"4\">The heart of the wise is in the house of mourning; but the heart of fools is in the house of mirth.</VERS>\r\n      <VERS vnumber=\"5\">It is better to hear the rebuke of the wise, than for a man to hear the song of fools.</VERS>\r\n      <VERS vnumber=\"6\">For as the crackling of thorns under a pot, so is the laughter of the fool: this also is vanity.</VERS>\r\n      <VERS vnumber=\"7\">Surely extortion maketh the wise man foolish; and a bribe destroyeth the understanding.</VERS>\r\n      <VERS vnumber=\"8\">Better is the end of a thing than the beginning thereof; [and] the patient in spirit is better than the proud in spirit.</VERS>\r\n      <VERS vnumber=\"9\">Be not hasty in thy spirit to be angry; for anger resteth in the bosom of fools.</VERS>\r\n      <VERS vnumber=\"10\">Say not thou, What is the cause that the former days were better than these? for thou dost not inquire wisely concerning this.</VERS>\r\n      <VERS vnumber=\"11\">Wisdom is as good as an inheritance; yea, more excellent is it for them that see the sun.</VERS>\r\n      <VERS vnumber=\"12\">For wisdom is a defence, even as money is a defence; but the excellency of knowledge is, that wisdom preserveth the life of him that hath it.</VERS>\r\n      <VERS vnumber=\"13\">Consider the work of God: for who can make that straight, which he hath made crooked?</VERS>\r\n      <VERS vnumber=\"14\">In the day of prosperity be joyful, and in the day of adversity consider; yea, God hath made the one side by side with the other, to the end that man should not find out anything [that shall be] after him.</VERS>\r\n      <VERS vnumber=\"15\">All this have I seen in my days of vanity: there is a righteous man that perisheth in his righteousness, and there is a wicked man that prolongeth [his life] in his evil-doing.</VERS>\r\n      <VERS vnumber=\"16\">Be not righteous overmuch; neither make thyself overwise: why shouldest thou destroy thyself?</VERS>\r\n      <VERS vnumber=\"17\">Be not overmuch wicked, neither be thou foolish: why shouldest thou die before thy time?</VERS>\r\n      <VERS vnumber=\"18\">It is good that thou shouldest take hold of this; yea, also from that withdraw not thy hand: for he that feareth God shall come forth from them all.</VERS>\r\n      <VERS vnumber=\"19\">Wisdom is a strength to the wise man more than ten rulers that are in a city.</VERS>\r\n      <VERS vnumber=\"20\">Surely there is not a righteous man upon earth, that doeth good, and sinneth not.</VERS>\r\n      <VERS vnumber=\"21\">Also take not heed unto all words that are spoken, lest thou hear thy servant curse thee;</VERS>\r\n      <VERS vnumber=\"22\">for oftentimes also thine own heart knoweth that thou thyself likewise hast cursed others.</VERS>\r\n      <VERS vnumber=\"23\">All this have I proved in wisdom: I said, I will be wise; but it was far from me.</VERS>\r\n      <VERS vnumber=\"24\">That which is, is far off and exceeding deep; who can find it out?</VERS>\r\n      <VERS vnumber=\"25\">I turned about, and my heart [was set] to know and to search out, and to seek wisdom and the reason [of things], and to know that wickedness is folly, and that foolishness is madness.</VERS>\r\n      <VERS vnumber=\"26\">And I find more bitter than death the woman whose heart is snares and nets, [and] whose hands are bands: whoso pleaseth God shall escape from her; but the sinner shall be taken by her.</VERS>\r\n      <VERS vnumber=\"27\">Behold, this have I found, saith the Preacher, [laying] one thing to another, to find out the account;</VERS>\r\n      <VERS vnumber=\"28\">which my soul still seeketh, but I have not found: one man among a thousand have I found; but a woman among all those have I not found.</VERS>\r\n      <VERS vnumber=\"29\">Behold, this only have I found: that God made man upright; but they have sought out many inventions.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">Who is as the wise man? and who knoweth the interpretation of a thing? A man`s wisdom maketh his face to shine, and the hardness of his face is changed.</VERS>\r\n      <VERS vnumber=\"2\">I [counsel thee], Keep the king`s command, and that in regard of the oath of God.</VERS>\r\n      <VERS vnumber=\"3\">Be not hasty to go out of his presence; persist not in an evil thing: for he doeth whatsoever pleaseth him.</VERS>\r\n      <VERS vnumber=\"4\">For the king`s word [hath] power; and who may say unto him, What doest thou?</VERS>\r\n      <VERS vnumber=\"5\">Whoso keepeth the commandment shall know no evil thing; and a wise man`s heart discerneth time and judgment:</VERS>\r\n      <VERS vnumber=\"6\">for to every purpose there is a time and judgment; because the misery of man is great upon him:</VERS>\r\n      <VERS vnumber=\"7\">for he knoweth not that which shall be; for who can tell him how it shall be?</VERS>\r\n      <VERS vnumber=\"8\">There is no man that hath power over the spirit to retain the spirit; neither hath he power over the day of death; and there is no discharge in war: neither shall wickedness deliver him that is given to it.</VERS>\r\n      <VERS vnumber=\"9\">All this have I seen, and applied my heart unto every work that is done under the sun: [there is] a time wherein one man hath power over another to his hurt.</VERS>\r\n      <VERS vnumber=\"10\">So I saw the wicked buried, and they came [to the grave]; and they that had done right went away from the holy place, and were forgotten in the city: this also is vanity.</VERS>\r\n      <VERS vnumber=\"11\">Because 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.</VERS>\r\n      <VERS vnumber=\"12\">Though a sinner do evil a hundred times, and prolong his [days], yet surely I know that it shall be well with them that fear God, that fear before him:</VERS>\r\n      <VERS vnumber=\"13\">but 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.</VERS>\r\n      <VERS vnumber=\"14\">There is a vanity which is done upon the earth, that there are righteous men unto whom it happeneth according to the work of the wicked; again, there are wicked men to whom it happeneth according to the work of the righteous: I said that this also is vanity.</VERS>\r\n      <VERS vnumber=\"15\">Then I commended mirth, because a man hath no better thing under the sun, than to eat, and to drink, and to be joyful: for that shall abide with him in his labor [all] the days of his life which God hath given him under the sun.</VERS>\r\n      <VERS vnumber=\"16\">When I applied my 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),</VERS>\r\n      <VERS vnumber=\"17\">then I beheld all the work of God, that man cannot find out the work that is done under the sun: because however much a man labor to seek it out, yet he shall not find it; yea moreover, though a wise man think to know it, yet shall he not be able to find it.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">For all this I laid to my heart, even to explore all this: that the righteous, and the wise, and their works, are in the hand of God; whether it be love or hatred, man knoweth it not; all is before them.</VERS>\r\n      <VERS vnumber=\"2\">All 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.</VERS>\r\n      <VERS vnumber=\"3\">This is an evil in all that is 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.</VERS>\r\n      <VERS vnumber=\"4\">For to him that is joined with all the living there is hope; for a living dog is better than a dead lion.</VERS>\r\n      <VERS vnumber=\"5\">For the living know that they shall die: but the dead know not anything, neither have they any more a reward; for the memory of them is forgotten.</VERS>\r\n      <VERS vnumber=\"6\">As well their love, as their hatred and their envy, is perished long ago; neither have they any more a portion for ever in anything that is done under the sun.</VERS>\r\n      <VERS vnumber=\"7\">Go thy way, eat thy bread with joy, and drink thy wine with a merry heart; for God hath already accepted thy works.</VERS>\r\n      <VERS vnumber=\"8\">Let thy garments be always white; and let not thy head lack oil.</VERS>\r\n      <VERS vnumber=\"9\">Live joyfully with the wife whom thou lovest all the days of thy life of vanity, which he hath given thee under the sun, all thy days of vanity: for that is thy portion in life, and in thy labor wherein thou laborest under the sun.</VERS>\r\n      <VERS vnumber=\"10\">Whatsoever thy hand findeth to do, do [it] with thy might; for there is no work, nor device, nor knowledge, nor wisdom, in Sheol, whither thou goest.</VERS>\r\n      <VERS vnumber=\"11\">I 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 favor to men of skill; but time and chance happeneth to them all.</VERS>\r\n      <VERS vnumber=\"12\">For 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, even so are the sons of men snared in an evil time, when it falleth suddenly upon them.</VERS>\r\n      <VERS vnumber=\"13\">I have also seen wisdom under the sun on this wise, and it seemed great unto me:</VERS>\r\n      <VERS vnumber=\"14\">There 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.</VERS>\r\n      <VERS vnumber=\"15\">Now 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.</VERS>\r\n      <VERS vnumber=\"16\">Then said I, Wisdom is better than strength: nevertheless the poor man`s wisdom is despised, and his words are not heard.</VERS>\r\n      <VERS vnumber=\"17\">The words of the wise heard in quiet are better than the cry of him that ruleth among fools.</VERS>\r\n      <VERS vnumber=\"18\">Wisdom is better than weapons of war; but one sinner destroyeth much good.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">Dead flies cause the oil of the perfumer to send forth an evil odor; [so] doth a little folly outweigh wisdom and honor.</VERS>\r\n      <VERS vnumber=\"2\">A wise man`s heart is at his right hand; but a fool`s heart at his left.</VERS>\r\n      <VERS vnumber=\"3\">Yea also, when the fool walketh by the way, his understanding faileth him, and he saith to every one [that] he is a fool.</VERS>\r\n      <VERS vnumber=\"4\">If the spirit of the ruler rise up against thee, leave not thy place; for gentleness allayeth great offences.</VERS>\r\n      <VERS vnumber=\"5\">There is an evil which I have seen under the sun, as it were an error which proceedeth from the ruler:</VERS>\r\n      <VERS vnumber=\"6\">folly is set in great dignity, and the rich sit in a low place.</VERS>\r\n      <VERS vnumber=\"7\">I have seen servants upon horses, and princes walking like servants upon the earth.</VERS>\r\n      <VERS vnumber=\"8\">He that diggeth a pit shall fall into it; and whoso breaketh through a wall, a serpent shall bite him.</VERS>\r\n      <VERS vnumber=\"9\">Whoso heweth out stones shall be hurt therewith; [and] he that cleaveth wood is endangered thereby.</VERS>\r\n      <VERS vnumber=\"10\">If the iron be blunt, and one do not whet the edge, then must he put to more strength: but wisdom is profitable to direct.</VERS>\r\n      <VERS vnumber=\"11\">If the serpent bite before it is charmed, then is there no advantage in the charmer.</VERS>\r\n      <VERS vnumber=\"12\">The words of a wise man`s mouth are gracious; but the lips of a fool will swallow up himself.</VERS>\r\n      <VERS vnumber=\"13\">The beginning of the words of his mouth is foolishness; and the end of his talk is mischievous madness.</VERS>\r\n      <VERS vnumber=\"14\">A fool also multiplieth words: [yet] man knoweth not what shall be; and that which shall be after him, who can tell him?</VERS>\r\n      <VERS vnumber=\"15\">The labor of fools wearieth every one of them; for he knoweth not how to go to the city.</VERS>\r\n      <VERS vnumber=\"16\">Woe to thee, O land, when thy king is a child, and thy princes eat in the morning!</VERS>\r\n      <VERS vnumber=\"17\">Happy 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!</VERS>\r\n      <VERS vnumber=\"18\">By slothfulness the roof sinketh in; and through idleness of the hands the house leaketh.</VERS>\r\n      <VERS vnumber=\"19\">A feast is made for laughter, and wine maketh glad the life; and money answereth all things.</VERS>\r\n      <VERS vnumber=\"20\">Revile not the king, no, not in thy thought; and revile not the rich in thy bedchamber: for a bird of the heavens shall carry the voice, and that which hath wings shall tell the matter.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">Cast thy bread upon the waters; for thou shalt find it after many days.</VERS>\r\n      <VERS vnumber=\"2\">Give a portion to seven, yea, even unto eight; for thou knowest not what evil shall be upon the earth.</VERS>\r\n      <VERS vnumber=\"3\">If the clouds be full of rain, they empty themselves upon the earth; and if a tree fall toward the south, or toward the north, in the place where the tree falleth, there shall it be.</VERS>\r\n      <VERS vnumber=\"4\">He that observeth the wind shall not sow; and he that regardeth the clouds shall not reap.</VERS>\r\n      <VERS vnumber=\"5\">As thou knowest not what is the way of the wind, [nor] how the bones [do grow] in the womb of her that is with child; even so thou knowest not the work of God who doeth all.</VERS>\r\n      <VERS vnumber=\"6\">In the morning sow thy seed, and in the evening withhold not thy hand; for thou knowest not which shall prosper, whether this or that, or whether they both shall be alike good.</VERS>\r\n      <VERS vnumber=\"7\">Truly the light is sweet, and a pleasant thing it is for the eyes to behold the sun.</VERS>\r\n      <VERS vnumber=\"8\">Yea, if a man live many years, let him rejoice in them all; but let him remember the days of darkness, for they shall be many. All that cometh is vanity.</VERS>\r\n      <VERS vnumber=\"9\">Rejoice, O young man, in thy youth, and let thy heart cheer thee in the days of thy youth, and walk in the ways of thy heart, and in the sight of thine eyes; but know thou, that for all these things God will bring thee into judgment.</VERS>\r\n      <VERS vnumber=\"10\">Therefore remove sorrow from thy heart, and put away evil from thy flesh; for youth and the dawn of life are vanity.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">Remember also thy Creator in the days of thy youth, before the evil days come, and the years draw nigh, when thou shalt say, I have no pleasure in them;</VERS>\r\n      <VERS vnumber=\"2\">before the sun, and the light, and the moon, and the stars, are darkened, and the clouds return after the rain;</VERS>\r\n      <VERS vnumber=\"3\">in 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 shall be darkened,</VERS>\r\n      <VERS vnumber=\"4\">and the doors shall be shut in the street; when the sound of the grinding is low, and one shall rise up at the voice of a bird, and all the daughters of music shall be brought low;</VERS>\r\n      <VERS vnumber=\"5\">yea, they shall be afraid of [that which is] high, and terrors [shall be] in the way; and the almond-tree shall blossom, and the grasshopper shall be a burden, and desire shall fail; because man goeth to his everlasting home, and the mourners go about the streets:</VERS>\r\n      <VERS vnumber=\"6\">before the silver cord is loosed, or the golden bowl is broken, or the pitcher is broken at the fountain, or the wheel broken at the cistern,</VERS>\r\n      <VERS vnumber=\"7\">and the dust returneth to the earth as it was, and the spirit returneth unto God who gave it.</VERS>\r\n      <VERS vnumber=\"8\">Vanity of vanities, saith the Preacher; all is vanity.</VERS>\r\n      <VERS vnumber=\"9\">And further, because the Preacher was wise, he still taught the people knowledge; yea, he pondered, and sought out, [and] set in order many proverbs.</VERS>\r\n      <VERS vnumber=\"10\">The Preacher sought to find out acceptable words, and that which was written uprightly, [even] words of truth.</VERS>\r\n      <VERS vnumber=\"11\">The words of the wise are as goads; and as nails well fastened are [the words of] the masters of assemblies, [which] are given from one shepherd.</VERS>\r\n      <VERS vnumber=\"12\">And furthermore, my son, be admonished: of making many books there is no end; and much study is a weariness of the flesh.</VERS>\r\n      <VERS vnumber=\"13\">[This is] the end of the matter; all hath been heard: fear God, and keep his commandments; for this is the whole [duty] of man.</VERS>\r\n      <VERS vnumber=\"14\">For God will bring every work into judgment, with every hidden thing, whether it be good, or whether it be evil.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"22\" bname=\"Song of Solomon\" bsname=\"Song\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">The Song of songs, which is Solomon`s.</VERS>\r\n      <VERS vnumber=\"2\">Let him kiss me with the kisses of his mouth; For thy love is better than wine.</VERS>\r\n      <VERS vnumber=\"3\">Thine oils have a goodly fragrance; Thy name is [as] oil poured forth; Therefore do the virgins love thee.</VERS>\r\n      <VERS vnumber=\"4\">Draw me; we will run after thee: The king hath brought me into his chambers; We will be glad and rejoice in thee; We will make mention of thy love more than of wine: Rightly do they love thee.</VERS>\r\n      <VERS vnumber=\"5\">I am black, but comely, Oh ye daughters of Jerusalem, As the tents of Kedar, As the curtains of Solomon.</VERS>\r\n      <VERS vnumber=\"6\">Look not upon me, because I am swarthy, Because the sun hath scorched me. My mother`s sons were incensed against me; They made me keeper of the vineyards; [But] mine own vineyard have I not kept.</VERS>\r\n      <VERS vnumber=\"7\">Tell me, O thou whom my soul loveth, Where thou feedest [thy flock], Where thou makest [it] to rest at noon: For why should I be as one that is veiled Beside the flocks of thy companions?</VERS>\r\n      <VERS vnumber=\"8\">If 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.</VERS>\r\n      <VERS vnumber=\"9\">I have compared thee, O my love, To a steed in Pharaoh`s chariots.</VERS>\r\n      <VERS vnumber=\"10\">Thy cheeks are comely with plaits [of hair], Thy neck with strings of jewels.</VERS>\r\n      <VERS vnumber=\"11\">We will make thee plaits of gold With studs of silver.</VERS>\r\n      <VERS vnumber=\"12\">While the king sat at his table, My spikenard sent forth its fragrance.</VERS>\r\n      <VERS vnumber=\"13\">My beloved is unto me [as] a bundle of myrrh, That lieth betwixt my breasts.</VERS>\r\n      <VERS vnumber=\"14\">My beloved is unto me [as] a cluster of henna-flowers In the vineyards of En-gedi.</VERS>\r\n      <VERS vnumber=\"15\">Behold, thou art fair, my love; Behold thou art fair; Thine eyes are [as] doves.</VERS>\r\n      <VERS vnumber=\"16\">Behold, thou art fair, my beloved, yea, pleasant: Also our couch is green.</VERS>\r\n      <VERS vnumber=\"17\">The beams of our house are cedars, [And] our rafters are firs.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">I am a rose of Sharon, A lily of the valleys.</VERS>\r\n      <VERS vnumber=\"2\">As a lily among thorns, So is my love among the daughters.</VERS>\r\n      <VERS vnumber=\"3\">As 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.</VERS>\r\n      <VERS vnumber=\"4\">He brought me to the banqueting-house, And his banner over me was love.</VERS>\r\n      <VERS vnumber=\"5\">Stay ye me with raisins, refresh me with apples; For I am sick from love.</VERS>\r\n      <VERS vnumber=\"6\">His left hand [is] under my head, And his right hand doth embrace me.</VERS>\r\n      <VERS vnumber=\"7\">I adjure you, O daughters of Jerusalem, By the roes, or by the hinds of the field, That ye stir not up, nor awake [my] love, Until he please.</VERS>\r\n      <VERS vnumber=\"8\">The voice of my beloved! behold, he cometh, Leaping upon the mountains, Skipping upon the hills.</VERS>\r\n      <VERS vnumber=\"9\">My beloved is like a roe or a young hart: Behold, he standeth behind our wall; He looketh in at the windows; He glanceth through the lattice.</VERS>\r\n      <VERS vnumber=\"10\">My beloved spake, and said unto me, Rise up, my love, my fair one, and come away.</VERS>\r\n      <VERS vnumber=\"11\">For, lo, the winter is past; The rain is over and gone;</VERS>\r\n      <VERS vnumber=\"12\">The flowers appear on the earth; The time of the singing [of birds] is come, And the voice of the turtle-dove is heard in our land;</VERS>\r\n      <VERS vnumber=\"13\">The fig-tree ripeneth her green figs, And the vines are in blossom; They give forth their fragrance. Arise, my love, my fair one, and come away.</VERS>\r\n      <VERS vnumber=\"14\">O my dove, that art in the clefts of the rock, In the covert of the steep place, Let me see thy countenance, Let me hear thy voice; For sweet is thy voice, and thy countenance is comely.</VERS>\r\n      <VERS vnumber=\"15\">Take us the foxes, the little foxes, That spoil the vineyards; For our vineyards are in blossom.</VERS>\r\n      <VERS vnumber=\"16\">My beloved is mine, and I am his: He feedeth [his flock] among the lilies.</VERS>\r\n      <VERS vnumber=\"17\">Until the day be cool, and the shadows flee away, Turn, my beloved, and be thou like a roe or a young hart Upon the mountains of Bether.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">By night on my bed I sought him whom my soul loveth: I sought him, but I found him not.</VERS>\r\n      <VERS vnumber=\"2\">[I said], I 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.</VERS>\r\n      <VERS vnumber=\"3\">The watchmen that go about the city found me; [To whom I said], Saw ye him whom my soul loveth?</VERS>\r\n      <VERS vnumber=\"4\">It was but a little that I passed from them, When 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.</VERS>\r\n      <VERS vnumber=\"5\">I adjure you, O daughters of Jerusalem, By the roes, or by the hinds of the field, That ye stir not up, nor awake [my] love, Until he please.</VERS>\r\n      <VERS vnumber=\"6\">Who is this that cometh up from the wilderness Like pillars of smoke, Perfumed with myrrh and frankincense, With all powders of the merchant?</VERS>\r\n      <VERS vnumber=\"7\">Behold, it is the litter of Solomon; Threescore mighty men are about it, Of the mighty men of Israel.</VERS>\r\n      <VERS vnumber=\"8\">They all handle the sword, [and] are expert in war: Every man hath his sword upon his thigh, Because of fear in the night.</VERS>\r\n      <VERS vnumber=\"9\">King Solomon made himself a palanquin Of the wood of Lebanon.</VERS>\r\n      <VERS vnumber=\"10\">He made the pillars thereof of silver, The bottom thereof of gold, the seat of it of purple, The midst thereof being paved with love, From the daughters of Jerusalem.</VERS>\r\n      <VERS vnumber=\"11\">Go forth, O ye daughters of Zion, and behold king Solomon, With the crown wherewith his mother hath crowned him In the day of his espousals, And in the day of the gladness of his heart.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">Behold, thou art fair, my love; behold, thou art fair; Thine eyes are [as] doves behind thy veil. Thy hair is as a flock of goats, That lie along the side of mount Gilead.</VERS>\r\n      <VERS vnumber=\"2\">Thy teeth are like a flock [of ewes] that are [newly]       shorn, Which are come up from the washing, Whereof every one hath twins, And none is bereaved among them.</VERS>\r\n      <VERS vnumber=\"3\">Thy lips are like a thread of scarlet, And thy mouth is comely. Thy temples are like a piece of a pomegranate Behind thy veil.</VERS>\r\n      <VERS vnumber=\"4\">Thy neck is like the tower of David builded for an armory, Whereon there hang a thousand bucklers, All the shields of the mighty men.</VERS>\r\n      <VERS vnumber=\"5\">Thy two breasts are like two fawns That are twins of a roe, Which feed among the lilies.</VERS>\r\n      <VERS vnumber=\"6\">Until the day be cool, and the shadows flee away, I will get me to the mountain of myrrh, And to the hill of frankincense.</VERS>\r\n      <VERS vnumber=\"7\">Thou art all fair, my love; And there is no spot in thee.</VERS>\r\n      <VERS vnumber=\"8\">Come with me from Lebanon, [my] bride, With me from Lebanon: Look from the top of Amana, From the top of Senir and Hermon, From the lions` dens, From the mountains of the leopards.</VERS>\r\n      <VERS vnumber=\"9\">Thou hast ravished my heart, my sister, [my] bride; Thou hast ravished my heart with one of thine eyes, With one chain of thy neck.</VERS>\r\n      <VERS vnumber=\"10\">How fair is thy love, my sister, [my] bride! How much better is thy love than wine! And the fragrance of thine oils than all manner of spices!</VERS>\r\n      <VERS vnumber=\"11\">Thy lips, O [my] bride, drop [as] the honeycomb: Honey and milk are under thy tongue; And the smell of thy garments is like the smell of Lebanon.</VERS>\r\n      <VERS vnumber=\"12\">A garden shut up is my sister, [my] bride; A spring shut up, a fountain sealed.</VERS>\r\n      <VERS vnumber=\"13\">Thy shoots are an orchard of pomegranates, with precious       fruits; Henna with spikenard plants,</VERS>\r\n      <VERS vnumber=\"14\">Spikenard and saffron, Calamus and cinnamon, with all trees of frankincense; Myrrh and aloes, with all the chief spices.</VERS>\r\n      <VERS vnumber=\"15\">[Thou art] a fountain of gardens, A well of living waters, And flowing streams from Lebanon.</VERS>\r\n      <VERS vnumber=\"16\">Awake, 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 precious fruits.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">I am come into my garden, my sister, [my] bride: 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.</VERS>\r\n      <VERS vnumber=\"2\">I was asleep, but my heart waked: 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, My locks with the drops of the night.</VERS>\r\n      <VERS vnumber=\"3\">I have put off my garment; how shall I put it on? I have washed my feet; how shall I defile them?</VERS>\r\n      <VERS vnumber=\"4\">My beloved put in his hand by the hole [of the door], And my heart was moved for him.</VERS>\r\n      <VERS vnumber=\"5\">I rose up to open to my beloved; And my hands droppeth with myrrh, And my fingers with liquid myrrh, Upon the handles of the bolt.</VERS>\r\n      <VERS vnumber=\"6\">I opened to my beloved; But my beloved had withdrawn himself, [and] was gone. My soul had failed me when he spake: I sought him, but I could not find him; I called him, but he gave me no answer.</VERS>\r\n      <VERS vnumber=\"7\">The watchmen that go about the city found me, They smote me, they wounded me; The keepers of the walls took away my mantle from me.</VERS>\r\n      <VERS vnumber=\"8\">I adjure you, O daughters of Jerusalem, If ye find my beloved, That ye tell him, that I am sick from love.</VERS>\r\n      <VERS vnumber=\"9\">What is thy beloved more than [another] beloved, O thou fairest among women? What is thy beloved more than [another] beloved, That thou dost so adjure us?</VERS>\r\n      <VERS vnumber=\"10\">My beloved is white and ruddy, The chiefest among ten thousand.</VERS>\r\n      <VERS vnumber=\"11\">His head is [as] the most fine gold; His locks are bushy, [and] black as a raven.</VERS>\r\n      <VERS vnumber=\"12\">His eyes are like doves beside the water-brooks, Washed with milk, [and] fitly set.</VERS>\r\n      <VERS vnumber=\"13\">His cheeks are as a bed of spices, [As] banks of sweet herbs: His lips are [as] lilies, dropping liquid myrrh.</VERS>\r\n      <VERS vnumber=\"14\">His hands are [as] rings of gold set with beryl: His body is [as] ivory work overlaid [with] sapphires.</VERS>\r\n      <VERS vnumber=\"15\">His legs are [as] pillars of marble, set upon sockets of       fine gold: His aspect is like Lebanon, excellent as the cedars.</VERS>\r\n      <VERS vnumber=\"16\">His mouth is most sweet; Yea, he is altogether lovely. This is my beloved, and this is my friend, O daughters of Jerusalem.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">Whither is thy beloved gone, O thou fairest among women? Whither hath thy beloved turned him, That we may seek him with thee?</VERS>\r\n      <VERS vnumber=\"2\">My beloved is gone down to his garden, To the beds of spices, To feed in the gardens, and to gather lilies.</VERS>\r\n      <VERS vnumber=\"3\">I am my beloved`s, and my beloved is mine; He feedeth [his flock] among the lilies,</VERS>\r\n      <VERS vnumber=\"4\">Thou art fair, O my love, as Tirzah, Comely as Jerusalem, Terrible as an army with banners.</VERS>\r\n      <VERS vnumber=\"5\">Turn away thine eyes from me, For they have overcome me. Thy hair is as a flock of goats, That lie along the side of Gilead.</VERS>\r\n      <VERS vnumber=\"6\">Thy teeth are like a flock of ewes, Which are come up from the washing; Whereof every one hath twins, And none is bereaved among them.</VERS>\r\n      <VERS vnumber=\"7\">Thy temples are like a piece of a pomegranate Behind thy veil.</VERS>\r\n      <VERS vnumber=\"8\">There are threescore queens, and fourscore concubines, And virgins without number.</VERS>\r\n      <VERS vnumber=\"9\">My 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 called her blessed; [Yea], the queens and the concubines, and they praised her.</VERS>\r\n      <VERS vnumber=\"10\">Who is she that looketh forth as the morning, Fair as the moon, Clear as the sun, Terrible as an army with banners?</VERS>\r\n      <VERS vnumber=\"11\">I went down into the garden of nuts, To see the green plants of the valley, To see whether the vine budded, [And] the pomegranates were in flower.</VERS>\r\n      <VERS vnumber=\"12\">Before I was aware, my soul set me [Among] the chariots of my princely people.</VERS>\r\n      <VERS vnumber=\"13\">Return, return, O Shulammite; Return, return, that we may look upon thee. Why will ye look upon the Shulammite, As upon the dance of Mahanaim?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">How beautiful are thy feet in sandals, O prince`s daughter! Thy rounded thighs are like jewels, The work of the hands of a skilful workman.</VERS>\r\n      <VERS vnumber=\"2\">Thy body is [like] a round goblet, [Wherein] no mingled wine is wanting: Thy waist is [like] a heap of wheat Set about with lilies.</VERS>\r\n      <VERS vnumber=\"3\">Thy two breasts are like two fawns That are twins of a roe.</VERS>\r\n      <VERS vnumber=\"4\">Thy neck is like the tower of ivory; Thine eyes [as] the pools in Heshbon, By the gate of Bath-rabbim; Thy nose is like the tower of Lebanon Which looketh toward Damascus.</VERS>\r\n      <VERS vnumber=\"5\">Thy head upon thee is like Carmel, And the hair of thy head like purple; The king is held captive in the tresses [thereof].</VERS>\r\n      <VERS vnumber=\"6\">How fair and how pleasant art thou, O love, for delights!</VERS>\r\n      <VERS vnumber=\"7\">This thy stature is like to a palm-tree, And thy breasts to its clusters.</VERS>\r\n      <VERS vnumber=\"8\">I said, I will climb up into the palm-tree, I will take hold of the branches thereof: Let thy breasts be as clusters of the vine, And the smell of thy breath like apples,</VERS>\r\n      <VERS vnumber=\"9\">And thy mouth like the best wine, That goeth down smoothly for my beloved, Gliding through the lips of those that are asleep.</VERS>\r\n      <VERS vnumber=\"10\">I am my beloved`s; And his desire is toward me.</VERS>\r\n      <VERS vnumber=\"11\">Come, my beloved, let us go forth into the field; Let us lodge in the villages.</VERS>\r\n      <VERS vnumber=\"12\">Let us get up early to the vineyards; Let us see whether the vine hath budded, [And] its blossom is open, [And] the pomegranates are in flower: There will I give thee my love.</VERS>\r\n      <VERS vnumber=\"13\">The mandrakes give forth fragrance; And at our doors are all manner of precious fruits, new and old, Which I have laid up for thee, O my beloved.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">Oh that thou wert as my brother, That sucked the breasts of my mother! [When] I should find thee without, I would kiss thee; Yea, and none would despise me.</VERS>\r\n      <VERS vnumber=\"2\">I 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.</VERS>\r\n      <VERS vnumber=\"3\">His left hand [should be] under my head, And his right hand should embrace me.</VERS>\r\n      <VERS vnumber=\"4\">I adjure you, O daughters of Jerusalem, That ye stir not up, nor awake [my] love, Until he please.</VERS>\r\n      <VERS vnumber=\"5\">Who is this that cometh up from the wilderness, Leaning upon her beloved?  Under the apple-tree I awakened thee: There thy mother was in travail with thee, There was she in travail that brought thee forth.</VERS>\r\n      <VERS vnumber=\"6\">Set me as a seal upon thy heart, As a seal upon thine arm: For love is strong as death; Jealousy is cruel as Sheol; The flashes thereof are flashes of fire, A very flame of Jehovah.</VERS>\r\n      <VERS vnumber=\"7\">Many waters cannot quench love, Neither can floods drown it: If a man would give all the substance of his house for love, He would utterly be contemned.</VERS>\r\n      <VERS vnumber=\"8\">We 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?</VERS>\r\n      <VERS vnumber=\"9\">If she be a wall, We will build upon her a turret of silver: And if she be a door, We will inclose her with boards of cedar.</VERS>\r\n      <VERS vnumber=\"10\">I am a wall, and my breasts like the towers [thereof] Then was I in his eyes as one that found peace.</VERS>\r\n      <VERS vnumber=\"11\">Solomon had a vineyard at Baal-hamon; He let out the vineyard unto keepers; Every one for the fruit thereof was to bring a thousand [pieces]       of silver.</VERS>\r\n      <VERS vnumber=\"12\">My vineyard, which is mine, is before me: Thou, O Solomon, shalt have the thousand, And those that keep the fruit thereof two hundred.</VERS>\r\n      <VERS vnumber=\"13\">Thou that dwellest in the gardens, The companions hearken for thy voice: Cause me to hear it.</VERS>\r\n      <VERS vnumber=\"14\">Make haste, my beloved, And be thou like to a roe or to a young hart Upon the mountains of spices.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"23\" bname=\"Isaiah\" bsname=\"Isa\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">The 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.</VERS>\r\n      <VERS vnumber=\"2\">Hear, O heavens, and give ear, O earth; for Jehovah hath spoken: I have nourished and brought up children, and they have rebelled against me.</VERS>\r\n      <VERS vnumber=\"3\">The ox knoweth his owner, and the ass his master`s crib; [but] Israel doth not know, my people doth not consider.</VERS>\r\n      <VERS vnumber=\"4\">Ah sinful nation, a people laden with iniquity, a seed of evil-doers, children that deal corruptly! they have forsaken Jehovah, they have despised the Holy One of Israel, they are estranged [and gone] backward.</VERS>\r\n      <VERS vnumber=\"5\">Why will ye be still stricken, that ye revolt more and more? the whole head is sick, and the whole heart faint.</VERS>\r\n      <VERS vnumber=\"6\">From the sole of the foot even unto the head there is no soundness in it; [but] wounds, and bruises, and fresh stripes: they have not been closed, neither bound up, neither mollified with oil.</VERS>\r\n      <VERS vnumber=\"7\">Your 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.</VERS>\r\n      <VERS vnumber=\"8\">And the daughter of Zion is left as a booth in a vineyard, as a lodge in a garden of cucumbers, as a besieged city.</VERS>\r\n      <VERS vnumber=\"9\">Except Jehovah of hosts had left unto us a very small remnant, we should have been as Sodom, we should have been like unto Gomorrah.</VERS>\r\n      <VERS vnumber=\"10\">Hear the word of Jehovah, ye rulers of Sodom; give ear unto the law of our God, ye people of Gomorrah.</VERS>\r\n      <VERS vnumber=\"11\">What unto me is the multitude of your sacrifices? saith Jehovah: I have had enough 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.</VERS>\r\n      <VERS vnumber=\"12\">When ye come to appear before me, who hath required this at your hand, to trample my courts?</VERS>\r\n      <VERS vnumber=\"13\">Bring no more vain oblations; incense is an abomination unto me; new moon and sabbath, the calling of assemblies,- I cannot away with iniquity and the solemn meeting.</VERS>\r\n      <VERS vnumber=\"14\">Your new moons and your appointed feasts my soul hateth; they are a trouble unto me; I am weary of bearing them.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">Wash you, make you clean; put away the evil of your doings from before mine eyes; cease to do evil;</VERS>\r\n      <VERS vnumber=\"17\">learn to do well; seek justice, relieve the oppressed, judge the fatherless, plead for the widow.</VERS>\r\n      <VERS vnumber=\"18\">Come now, and let us reason together, saith Jehovah: though your sins be as scarlet, they shall be as white as snow; though they be red like crimson, they shall be as wool.</VERS>\r\n      <VERS vnumber=\"19\">If ye be willing and obedient, ye shall eat the good of the land:</VERS>\r\n      <VERS vnumber=\"20\">but if ye refuse and rebel, ye shall be devoured with the sword; for the mouth of Jehovah hath spoken it.</VERS>\r\n      <VERS vnumber=\"21\">How is the faithful city become a harlot! she that was full of justice! righteousness lodged in her, but now murderers.</VERS>\r\n      <VERS vnumber=\"22\">Thy silver is become dross, thy wine mixed with water.</VERS>\r\n      <VERS vnumber=\"23\">Thy princes are rebellious, and companions of thieves; every one loveth bribes, and followeth after rewards: they judge not the fatherless, neither doth the cause of the widow come unto them.</VERS>\r\n      <VERS vnumber=\"24\">Therefore saith the Lord, Jehovah of hosts, the Mighty One of Israel, Ah, I will ease me of mine adversaries, and avenge me of mine enemies;</VERS>\r\n      <VERS vnumber=\"25\">and I will turn my hand upon thee, and thoroughly purge away thy dross, and will take away all thy tin;</VERS>\r\n      <VERS vnumber=\"26\">and 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, a faithful town.</VERS>\r\n      <VERS vnumber=\"27\">Zion shall be redeemed with justice, and her converts with righteousness.</VERS>\r\n      <VERS vnumber=\"28\">But the destruction of transgressors and sinners shall be together, and they that forsake Jehovah shall be consumed.</VERS>\r\n      <VERS vnumber=\"29\">For they shall be ashamed of the oaks which ye have desired, and ye shall be confounded for the gardens that ye have chosen.</VERS>\r\n      <VERS vnumber=\"30\">For ye shall be as an oak whose leaf fadeth, and as a garden that hath no water.</VERS>\r\n      <VERS vnumber=\"31\">And the strong shall be as tow, and his work as a spark; and they shall both burn together, and none shall quench them.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">The word that Isaiah the son of Amoz saw concerning Judah and Jerusalem.</VERS>\r\n      <VERS vnumber=\"2\">And it shall come to pass in the latter days, that the mountain of Jehovah`s house shall be established on the top of the mountains, and shall be exalted above the hills; and all nations shall flow unto it.</VERS>\r\n      <VERS vnumber=\"3\">And many peoples shall go and say, Come ye, and let us go up to the mountain of Jehovah, 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 Jehovah from Jerusalem.</VERS>\r\n      <VERS vnumber=\"4\">And he will judge between the nations, and will decide concerning many peoples; and they shall beat their swords into plowshares, and their spears into pruning-hooks; nation shall not lift up sword against nation, neither shall they learn war any more.</VERS>\r\n      <VERS vnumber=\"5\">O house of Jacob, come ye, and let us walk in the light of Jehovah.</VERS>\r\n      <VERS vnumber=\"6\">For thou hast forsaken thy people the house of Jacob, because they are filled [with customs] from the east, and [are] soothsayers like the Philistines, and they strike hands with the children of foreigners.</VERS>\r\n      <VERS vnumber=\"7\">And their land is full of silver and gold, neither is there any end of their treasures; their land also is full of horses, neither is there any end of their chariots.</VERS>\r\n      <VERS vnumber=\"8\">Their land also is full of idols; they worship the work of their own hands, that which their own fingers have made.</VERS>\r\n      <VERS vnumber=\"9\">And the mean man is bowed down, and the great man is brought low: therefore forgive them not.</VERS>\r\n      <VERS vnumber=\"10\">Enter into the rock, and hide thee in the dust, from before the terror of Jehovah, and from the glory of his majesty.</VERS>\r\n      <VERS vnumber=\"11\">The lofty looks of man shall be brought low, and the haughtiness of men shall be bowed down, and Jehovah alone shall be exalted in that day.</VERS>\r\n      <VERS vnumber=\"12\">For there shall be a day of Jehovah of hosts upon all that is proud and haughty, and upon all that is lifted up; and it shall be brought low;</VERS>\r\n      <VERS vnumber=\"13\">and upon all the cedars of Lebanon, that are high and lifted up, and upon all the oaks of Bashan,</VERS>\r\n      <VERS vnumber=\"14\">and upon all the high mountains, and upon all the hills that are lifted up,</VERS>\r\n      <VERS vnumber=\"15\">and upon every lofty tower, and upon every fortified wall,</VERS>\r\n      <VERS vnumber=\"16\">and upon all the ships of Tarshish, and upon all pleasant imagery.</VERS>\r\n      <VERS vnumber=\"17\">And the loftiness of man shall be bowed down, and the haughtiness of men shall be brought low; and Jehovah alone shall be exalted in that day.</VERS>\r\n      <VERS vnumber=\"18\">And the idols shall utterly pass away.</VERS>\r\n      <VERS vnumber=\"19\">And men shall go into the caves of the rocks, and into the holes of the earth, from before the terror of Jehovah, and from the glory of his majesty, when he ariseth to shake mightily the earth.</VERS>\r\n      <VERS vnumber=\"20\">In that day men shall cast away their idols of silver, and their idols of gold, which have been made for them to worship, to the moles and to the bats;</VERS>\r\n      <VERS vnumber=\"21\">to go into the caverns of the rocks, and into the clefts of the ragged rocks, from before the terror of Jehovah, and from the glory of his majesty, when he ariseth to shake mightily the earth.</VERS>\r\n      <VERS vnumber=\"22\">Cease ye from man, whose breath is in his nostrils; for wherein is he to be accounted of?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">For, behold, the Lord, Jehovah of hosts, doth take away from Jerusalem and from Judah stay and staff, the whole stay of bread, and the whole stay of water;</VERS>\r\n      <VERS vnumber=\"2\">the mighty man, and the man of war; the judge, and the prophet, and the diviner, and the elder;</VERS>\r\n      <VERS vnumber=\"3\">the captain of fifty, and the honorable man, and the counsellor, and the expert artificer, and the skilful enchanter.</VERS>\r\n      <VERS vnumber=\"4\">And I will give children to be their princes, and babes shall rule over them.</VERS>\r\n      <VERS vnumber=\"5\">And the people shall be oppressed, every one by another, and every one by his neighbor: the child shall behave himself proudly against the old man, and the base against the honorable.</VERS>\r\n      <VERS vnumber=\"6\">When a man shall take hold of his brother in the house of his father, [saying], Thou hast clothing, be thou our ruler, and let this ruin be under thy hand;</VERS>\r\n      <VERS vnumber=\"7\">in that day shall he lift up [his voice], saying, I will not be a healer; for in my house is neither bread nor clothing: ye shall not make me ruler of the people.</VERS>\r\n      <VERS vnumber=\"8\">For Jerusalem is ruined, and Judah is fallen; because their tongue and their doings are against Jehovah, to provoke the eyes of his glory.</VERS>\r\n      <VERS vnumber=\"9\">The show 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 done evil unto themselves.</VERS>\r\n      <VERS vnumber=\"10\">Say ye of the righteous, that [it shall be] well [with him]; for they shall eat the fruit of their doings.</VERS>\r\n      <VERS vnumber=\"11\">Woe unto the wicked! [it shall be] ill [with him]; for what his hands have done shall be done unto him.</VERS>\r\n      <VERS vnumber=\"12\">As for my people, children are their oppressors, and women rule over them. O my people, they that lead thee cause thee to err, and destroy the way of thy paths.</VERS>\r\n      <VERS vnumber=\"13\">Jehovah standeth up to contend, and standeth to judge the peoples.</VERS>\r\n      <VERS vnumber=\"14\">Jehovah will enter into judgment with the elders of his people, and the princes thereof: It is ye that have eaten up the vineyard; the spoil of the poor is in your houses:</VERS>\r\n      <VERS vnumber=\"15\">what mean ye that ye crush my people, and grind the face of the poor? saith the Lord, Jehovah of hosts.</VERS>\r\n      <VERS vnumber=\"16\">Moreover Jehovah said, Because the daughters of Zion are haughty, and walk with outstretched necks and wanton eyes, walking and mincing as they go, and making a tinkling with their feet;</VERS>\r\n      <VERS vnumber=\"17\">therefore the Lord will smite with a scab the crown of the head of the daughters of Zion, and Jehovah will lay bare their secret parts.</VERS>\r\n      <VERS vnumber=\"18\">In that day the Lord will take away the beauty of their anklets, and the cauls, and the crescents;</VERS>\r\n      <VERS vnumber=\"19\">the pendants, and the bracelets, and the mufflers;</VERS>\r\n      <VERS vnumber=\"20\">the headtires, and the ankle chains, and the sashes, and the perfume-boxes, and the amulets;</VERS>\r\n      <VERS vnumber=\"21\">the rings, and the nose-jewels;</VERS>\r\n      <VERS vnumber=\"22\">the festival robes, and the mantles, and the shawls, and the satchels;</VERS>\r\n      <VERS vnumber=\"23\">the hand-mirrors, and the fine linen, and the turbans, and the veils.</VERS>\r\n      <VERS vnumber=\"24\">And it shall come to pass, that instead of sweet spices there shall be rottenness; and instead of a girdle, a rope; and instead of well set hair, baldness; and instead of a robe, a girding of sackcloth; branding instead of beauty.</VERS>\r\n      <VERS vnumber=\"25\">Thy men shall fall by the sword, and thy mighty in the war.</VERS>\r\n      <VERS vnumber=\"26\">And her gates shall lament and mourn; and she shall be desolate and sit upon the ground.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">And seven women shall take hold of one man in that day, saying, We will eat our own bread, and wear our own apparel: only let us be called by thy name; take thou away our reproach.</VERS>\r\n      <VERS vnumber=\"2\">In that day shall the branch of Jehovah be beautiful and glorious, and the fruit of the land shall be excellent and comely for them that are escaped of Israel.</VERS>\r\n      <VERS vnumber=\"3\">And 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;</VERS>\r\n      <VERS vnumber=\"4\">when 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 justice, and by the spirit of burning.</VERS>\r\n      <VERS vnumber=\"5\">And Jehovah will create over the whole habitation of mount Zion, and over her assemblies, a cloud and smoke by day, and the shining of a flaming fire by night; for over all the glory [shall be spread] a covering.</VERS>\r\n      <VERS vnumber=\"6\">And there shall be a pavilion for a shade in the day-time from the heat, and for a refuge and for a covert from storm and from rain.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">Let me sing for my wellbeloved a song of my beloved touching his vineyard. My wellbeloved had a vineyard in a very fruitful hill:</VERS>\r\n      <VERS vnumber=\"2\">and he digged 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 hewed out a winepress therein: and he looked that it should bring forth grapes, and it brought forth wild grapes.</VERS>\r\n      <VERS vnumber=\"3\">And now, O inhabitants of Jerusalem and men of Judah, judge, I pray you, betwixt me and my vineyard.</VERS>\r\n      <VERS vnumber=\"4\">What 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?</VERS>\r\n      <VERS vnumber=\"5\">And now I will tell you what I will do to my vineyard: I will take away the hedge thereof, and it shall be eaten up; I will break down the wall thereof, and it shall be trodden down:</VERS>\r\n      <VERS vnumber=\"6\">and I will lay it waste; it shall not be pruned nor hoed; but there shall come up briers and thorns: I will also command the clouds that they rain no rain upon it.</VERS>\r\n      <VERS vnumber=\"7\">For the vineyard of Jehovah of hosts is the house of Israel, and the men of Judah his pleasant plant: and he looked for justice, but, behold, oppression; for righteousness, but, behold, a cry.</VERS>\r\n      <VERS vnumber=\"8\">Woe unto them that join house to house, that lay field to field, till there be no room, and ye be made to dwell alone in the midst of the land!</VERS>\r\n      <VERS vnumber=\"9\">In mine ears [saith] Jehovah of hosts, Of a truth many houses shall be desolate, even great and fair, without inhabitant.</VERS>\r\n      <VERS vnumber=\"10\">For ten acres of vineyard shall yield one bath, and a homer of seed shall yield [but] an ephah.</VERS>\r\n      <VERS vnumber=\"11\">Woe unto them that rise up early in the morning, that they may follow strong drink; that tarry late into the night, till wine inflame them!</VERS>\r\n      <VERS vnumber=\"12\">And the harp and the lute, the tabret and the pipe, and wine, are [in] their feasts; but they regard not the work of Jehovah, neither have they considered the operation of his hands.</VERS>\r\n      <VERS vnumber=\"13\">Therefore my people are gone into captivity for lack of knowledge; and their honorable men are famished, and their multitude are parched with thirst.</VERS>\r\n      <VERS vnumber=\"14\">Therefore Sheol hath enlarged its desire, and opened its mouth without measure; and their glory, and their multitude, and their pomp, and he that rejoiceth among them, descend [into it].</VERS>\r\n      <VERS vnumber=\"15\">And the mean man is bowed down, and the great man is humbled, and the eyes of the lofty are humbled:</VERS>\r\n      <VERS vnumber=\"16\">but Jehovah of hosts is exalted in justice, and God the Holy One is sanctified in righteousness.</VERS>\r\n      <VERS vnumber=\"17\">Then shall the lambs feed as in their pasture, and the waste places of the fat ones shall wanderers eat.</VERS>\r\n      <VERS vnumber=\"18\">Woe unto them that draw iniquity with cords of falsehood, and sin as it were with a cart rope;</VERS>\r\n      <VERS vnumber=\"19\">that say, Let him make speed, let him 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!</VERS>\r\n      <VERS vnumber=\"20\">Woe 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!</VERS>\r\n      <VERS vnumber=\"21\">Woe unto them that are wise in their own eyes, and prudent in their own sight!</VERS>\r\n      <VERS vnumber=\"22\">Woe unto them that are mighty to drink wine, and men of strength to mingle strong drink;</VERS>\r\n      <VERS vnumber=\"23\">that justify the wicked for a bribe, and take away the righteousness of the righteous from him!</VERS>\r\n      <VERS vnumber=\"24\">Therefore as the tongue of fire devoureth the stubble, and as the dry grass sinketh down in the flame, so their root shall be as rottenness, and their blossom shall go up as dust; because they have rejected the law of Jehovah of hosts, and despised the word of the Holy One of Israel.</VERS>\r\n      <VERS vnumber=\"25\">Therefore is the anger of Jehovah kindled against his people, and he hath stretched forth his hand against them, and hath smitten them; and the mountains tremble, and their dead bodies are as refuse in the midst of the streets. For all this his anger is not turned away, but his hand is stretched out still.</VERS>\r\n      <VERS vnumber=\"26\">And he will lift up an ensign to the nations from far, and will hiss for them from the end of the earth; and, behold, they shall come with speed swiftly.</VERS>\r\n      <VERS vnumber=\"27\">None 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:</VERS>\r\n      <VERS vnumber=\"28\">whose arrows are sharp, and all their bows bent; their horses` hoofs shall be accounted as flint, and their wheels as a whirlwind:</VERS>\r\n      <VERS vnumber=\"29\">their roaring shall be like a lioness, they shall roar like young lions; yea, they shall roar, and lay hold of the prey, and carry it away safe, and there shall be none to deliver.</VERS>\r\n      <VERS vnumber=\"30\">And they shall roar against them in that day like the roaring of the sea: and if one look unto the land, behold, darkness [and] distress; and the light is darkened in the clouds thereof.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">In the year that king Uzziah died I saw the Lord sitting upon a throne, high and lifted up; and his train filled the temple.</VERS>\r\n      <VERS vnumber=\"2\">Above him stood the seraphim: each one had six wings; with twain he covered his face, and with twain he covered his feet, and with twain he did fly.</VERS>\r\n      <VERS vnumber=\"3\">And one cried unto another, and said, Holy, holy, holy, is Jehovah of hosts: the whole earth is full of his glory.</VERS>\r\n      <VERS vnumber=\"4\">And the foundations of the thresholds shook at the voice of him that cried, and the house was filled with smoke.</VERS>\r\n      <VERS vnumber=\"5\">Then 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, Jehovah of hosts.</VERS>\r\n      <VERS vnumber=\"6\">Then flew one of the seraphim unto me, having a live coal in his hand, which he had taken with the tongs from off the altar:</VERS>\r\n      <VERS vnumber=\"7\">and he touched my mouth with it, and said, Lo, this hath touched thy lips; and thine iniquity is taken away, and thy sin forgiven.</VERS>\r\n      <VERS vnumber=\"8\">And I heard the voice of the Lord, saying, Whom shall I send, and who will go for us? Then I said, Here am I; send me.</VERS>\r\n      <VERS vnumber=\"9\">And he said, Go, and tell this people, Hear ye indeed, but understand not; and see ye indeed, but perceive not.</VERS>\r\n      <VERS vnumber=\"10\">Make the heart of this people fat, and make their ears heavy, and shut their eyes; lest they sea with their eyes, and hear with their ears, and understand with their heart, and turn again, and be healed.</VERS>\r\n      <VERS vnumber=\"11\">Then said I, Lord, how long? And he answered, Until cities be waste without inhabitant, and houses without man, and the land become utterly waste,</VERS>\r\n      <VERS vnumber=\"12\">and Jehovah have removed men far away, and the forsaken places be many in the midst of the land.</VERS>\r\n      <VERS vnumber=\"13\">And if there be yet a tenth in it, it also shall in turn be eaten up: as a terebinth, and as an oak, whose stock remaineth, when they are felled; so the holy seed is the stock thereof.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">And 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 to Jerusalem to war against it, but could not prevail against it.</VERS>\r\n      <VERS vnumber=\"2\">And it was told the house of David, saying, Syria is confederate with Ephraim. And his heart trembled, and the heart of his people, as the trees of the forest tremble with the wind.</VERS>\r\n      <VERS vnumber=\"3\">Then said Jehovah unto Isaiah, Go forth now to meet Ahaz, thou, and Shear-jashub thy son, at the end of the conduit of the upper pool, in the highway of the fuller`s field;</VERS>\r\n      <VERS vnumber=\"4\">and say unto him, Take heed, and be quiet; fear not, neither let thy heart be faint, because of these two tails of smoking firebrands, for the fierce anger of Rezin and Syria, and of the son of Remaliah.</VERS>\r\n      <VERS vnumber=\"5\">Because Syria, Ephraim, and the son of Remaliah, have purposed evil against thee, saying,</VERS>\r\n      <VERS vnumber=\"6\">Let us go up against Judah, and vex it, and let us make a breach therein for us, and set up a king in the midst of it, even the son of Tabeel;</VERS>\r\n      <VERS vnumber=\"7\">thus saith the Lord Jehovah, It shall not stand, neither shall it come to pass.</VERS>\r\n      <VERS vnumber=\"8\">For the head of Syria is Damascus, and the head of Damascus is Rezin; and within threescore and five years shall Ephraim be broken in pieces, so that is shall not be a people:</VERS>\r\n      <VERS vnumber=\"9\">and 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.</VERS>\r\n      <VERS vnumber=\"10\">And Jehovah spake again unto Ahaz, saying,</VERS>\r\n      <VERS vnumber=\"11\">Ask thee a sign of Jehovah thy God; ask it either in the depth, or in the height above.</VERS>\r\n      <VERS vnumber=\"12\">But Ahaz said, I will not ask, neither will I tempt Jehovah.</VERS>\r\n      <VERS vnumber=\"13\">And he said, Hear ye now, O house of David: Is it a small thing for you to weary men, that ye will weary my God also?</VERS>\r\n      <VERS vnumber=\"14\">Therefore the Lord himself will give you a sign: behold, a virgin shall conceive, and bear a son, and shall call his name Immanuel.</VERS>\r\n      <VERS vnumber=\"15\">Butter and honey shall he eat, when he knoweth to refuse the evil, and choose the good.</VERS>\r\n      <VERS vnumber=\"16\">For before the child shall know to refuse the evil, and choose the good, the land whose two kings thou abhorrest shall be forsaken.</VERS>\r\n      <VERS vnumber=\"17\">Jehovah will 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.</VERS>\r\n      <VERS vnumber=\"18\">And it shall come to pass in that day, that Jehovah will 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.</VERS>\r\n      <VERS vnumber=\"19\">And they shall come, and shall rest all of them in the desolate valleys, and in the clefts of the rocks, and upon all thorn-hedges, and upon all pastures.</VERS>\r\n      <VERS vnumber=\"20\">In that day will the Lord shave with a razor that is hired in the parts beyond the River, [even] with the king of Assyria, the head and the hair of the feet; and it shall also consume the beard.</VERS>\r\n      <VERS vnumber=\"21\">And it shall come to pass in that day, that a man shall keep alive a young cow, and two sheep;</VERS>\r\n      <VERS vnumber=\"22\">and it shall come to pass, that because of the abundance of milk which they shall give he shall eat butter: for butter and honey shall every one eat that is left in the midst of the land.</VERS>\r\n      <VERS vnumber=\"23\">And it shall come to pass in that day, that every place, where there were a thousand vines at a thousand silverlings, shall be for briers and thorns.</VERS>\r\n      <VERS vnumber=\"24\">With arrows and with bow shall one come thither, because all the land shall be briers and thorns.</VERS>\r\n      <VERS vnumber=\"25\">And all the hills that were digged with the mattock, thou shalt not come thither for fear of briers and thorns; but it shall be for the sending forth of oxen, and for the treading of sheep.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">And Jehovah said unto me, Take thee a great tablet, and write upon it with the pen of a man, For Maher-shalal-hash-baz;</VERS>\r\n      <VERS vnumber=\"2\">and I will take unto me faithful witnesses to record, Uriah the priest, and Zechariah the son of Jeberechiah.</VERS>\r\n      <VERS vnumber=\"3\">And I went unto the prophetess; and she conceived, and bare a son. Then said Jehovah unto me, Call his name Maher-shalal-hash-baz.</VERS>\r\n      <VERS vnumber=\"4\">For before the child shall have knowledge to cry, My father, and, My mother, the riches of Damascus and the spoil of Samaria shall be carried away before the king of Assyria.</VERS>\r\n      <VERS vnumber=\"5\">And Jehovah spake unto me yet again, saying,</VERS>\r\n      <VERS vnumber=\"6\">Forasmuch as this people have refused the waters of Shiloah that go softly, and rejoice in Rezin and Remaliah`s son;</VERS>\r\n      <VERS vnumber=\"7\">now 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 it shall come up over all its channels, and go over all its banks;</VERS>\r\n      <VERS vnumber=\"8\">and it shall sweep onward into Judah; it shall overflow and pass through; it shall reach even to the neck; and the stretching out of its wings shall fill the breadth of thy land, O Immanuel.</VERS>\r\n      <VERS vnumber=\"9\">Make an uproar, O ye peoples, and be broken in pieces; and give ear, all ye of far countries: gird yourselves, and be broken in pieces; gird yourselves, and be broken in pieces.</VERS>\r\n      <VERS vnumber=\"10\">Take counsel together, and it shall be brought to nought; speak the word, and it shall not stand: for God is with us.</VERS>\r\n      <VERS vnumber=\"11\">For Jehovah spake thus to me with a strong hand, and instructed me not to walk in the way of this people, saying,</VERS>\r\n      <VERS vnumber=\"12\">Say ye not, A conspiracy, concerning all whereof this people shall say, A conspiracy; neither fear ye their fear, nor be in dread [thereof].</VERS>\r\n      <VERS vnumber=\"13\">Jehovah of hosts, him shall ye sanctify; and let him be your fear, and let him be your dread.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And many shall stumble thereon, and fall, and be broken, and be snared, and be taken.</VERS>\r\n      <VERS vnumber=\"16\">Bind thou up the testimony, seal the law among my disciples.</VERS>\r\n      <VERS vnumber=\"17\">And I will wait for Jehovah, that hideth his face from the house of Jacob, and I will look for him.</VERS>\r\n      <VERS vnumber=\"18\">Behold, I and the children whom Jehovah hath given me are for signs and for wonders in Israel from Jehovah of hosts, who dwelleth in mount Zion.</VERS>\r\n      <VERS vnumber=\"19\">And when they shall say unto you, Seek unto them that have familiar spirits and unto the wizards, that chirp and that mutter: should not a people seek unto their God? on behalf of the living [should they seek] unto the dead?</VERS>\r\n      <VERS vnumber=\"20\">To the law and to the testimony! if they speak not according to this word, surely there is no morning for them.</VERS>\r\n      <VERS vnumber=\"21\">And they shall pass through it, sore distressed and hungry; and it shall come to pass that, when they shall be hungry, they shall fret themselves, and curse by their king and by their God, and turn their faces upward:</VERS>\r\n      <VERS vnumber=\"22\">and they shall look unto the earth, and behold, distress and darkness, the gloom of anguish; and into thick darkness [they shall be] driven away.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">But there shall be no gloom to her that was in anguish. In the former time he brought into contempt the land of Zebulun and the land of Naphtali; but in the latter time hath he made it glorious, by the way of the sea, beyond the Jordan, Galilee of the nations.</VERS>\r\n      <VERS vnumber=\"2\">The people that walked in darkness have seen a great light: they that dwelt in the land of the shadow of death, upon them hath the light shined.</VERS>\r\n      <VERS vnumber=\"3\">Thou hast multiplied the nation, thou hast increased their joy: they joy before thee according to the joy in harvest, as men rejoice when they divide the spoil.</VERS>\r\n      <VERS vnumber=\"4\">For the yoke of his burden, and the staff of his shoulder, the rod of his oppressor, thou hast broken as in the day of Midian.</VERS>\r\n      <VERS vnumber=\"5\">For all the armor of the armed man in the tumult, and the garments rolled in blood, shall be for burning, for fuel of fire.</VERS>\r\n      <VERS vnumber=\"6\">For 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, Mighty God, Everlasting Father, Prince of Peace.</VERS>\r\n      <VERS vnumber=\"7\">Of the increase of his government and of peace there shall be no end, upon the throne of David, and upon his kingdom, to establish it, and to uphold it with justice and with righteousness from henceforth even for ever. The zeal of Jehovah of hosts will perform this.</VERS>\r\n      <VERS vnumber=\"8\">The Lord sent a word into Jacob, and it hath lighted upon Israel.</VERS>\r\n      <VERS vnumber=\"9\">And all the people shall know, [even] Ephraim and the inhabitant of Samaria, that say in pride and in stoutness of heart,</VERS>\r\n      <VERS vnumber=\"10\">The bricks are fallen, but we will build with hewn stone; the sycomores are cut down, but we will put cedars in their place.</VERS>\r\n      <VERS vnumber=\"11\">Therefore Jehovah will set up on high against him the adversaries of Rezin, and will stir up his enemies,</VERS>\r\n      <VERS vnumber=\"12\">the 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.</VERS>\r\n      <VERS vnumber=\"13\">Yet the people have not turned unto him that smote them, neither have they sought Jehovah of hosts.</VERS>\r\n      <VERS vnumber=\"14\">Therefore Jehovah will cut off from Israel head and tail, palm-branch and rush, in one day.</VERS>\r\n      <VERS vnumber=\"15\">The elder and the honorable man, he is the head; and the prophet that teacheth lies, he is the tail.</VERS>\r\n      <VERS vnumber=\"16\">For they that lead this people cause them to err; and they that are led of them are destroyed.</VERS>\r\n      <VERS vnumber=\"17\">Therefore the Lord will not rejoice over their young men, neither will he have compassion on their fatherless and widows; for every one is profane and an evil-doer, and every mouth speaketh folly. For all this his anger is not turned away, but his hand is stretched out still.</VERS>\r\n      <VERS vnumber=\"18\">For wickedness burneth as the fire; it devoureth the briers and thorns; yea, it kindleth in the thickets of the forest, and they roll upward in a column of smoke.</VERS>\r\n      <VERS vnumber=\"19\">Through the wrath of Jehovah of hosts is the land burnt up; and the people are as the fuel of fire: no man spareth his brother.</VERS>\r\n      <VERS vnumber=\"20\">And one 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:</VERS>\r\n      <VERS vnumber=\"21\">Manasseh, 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">Woe unto them that decree unrighteous decrees, and to the writers that write perverseness;</VERS>\r\n      <VERS vnumber=\"2\">to turn aside the needy from justice, and to rob the poor of my people of their right, that widows may be their spoil, and that they may make the fatherless their prey!</VERS>\r\n      <VERS vnumber=\"3\">And 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?</VERS>\r\n      <VERS vnumber=\"4\">They shall only bow down under the prisoners, and shall fall under the slain. For all this his anger is not turned away, but his hand is stretched out still.</VERS>\r\n      <VERS vnumber=\"5\">Ho Assyrian, the rod of mine anger, the staff in whose hand is mine indignation!</VERS>\r\n      <VERS vnumber=\"6\">I will send him against a profane 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.</VERS>\r\n      <VERS vnumber=\"7\">Howbeit he meaneth not so, neither doth his heart think so; but it is in his heart to destroy, and to cut off nations not a few.</VERS>\r\n      <VERS vnumber=\"8\">For he saith, Are not my princes all of them kings?</VERS>\r\n      <VERS vnumber=\"9\">Is not Calno as Carchemish? is not Hamath as Arpad? is not Samaria as Damascus?</VERS>\r\n      <VERS vnumber=\"10\">As my hand hath found the kingdoms of the idols, whose graven images did excel them of Jerusalem and of Samaria;</VERS>\r\n      <VERS vnumber=\"11\">shall I not, as I have done unto Samaria and her idols, so do to Jerusalem and her idols?</VERS>\r\n      <VERS vnumber=\"12\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"13\">For he hath said, By the strength of my hand I have done it, and by my wisdom; for I have understanding: and I have removed the bounds of the peoples, and have robbed their treasures, and like a valiant man I have brought down them that sit [on thrones]:</VERS>\r\n      <VERS vnumber=\"14\">and my hand hath found as a nest the riches of the peoples; and as one gathereth eggs that are forsaken, have I gathered all the earth: and there was none that moved the wing, or that opened the mouth, or chirped.</VERS>\r\n      <VERS vnumber=\"15\">Shall the axe boast itself against him that heweth therewith? shall the saw magnify itself against him that wieldeth it? as if a rod should wield them that lift it up, [or] as if a staff should lift up [him that is] not wood.</VERS>\r\n      <VERS vnumber=\"16\">Therefore will the Lord, Jehovah of hosts, send among his fat ones leanness; and under his glory there shall be kindled a burning like the burning of fire.</VERS>\r\n      <VERS vnumber=\"17\">And the light of Israel will be for a fire, and his Holy One for a flame; and it will burn and devour his thorns and his briers in one day.</VERS>\r\n      <VERS vnumber=\"18\">And he will consume the glory of his forest, and of his fruitful field, both soul and body: and it shall be as when a standard-bearer fainteth.</VERS>\r\n      <VERS vnumber=\"19\">And the remnant of the trees of his forest shall be few, so that a child may write them.</VERS>\r\n      <VERS vnumber=\"20\">And it shall come to pass in that day, that the remnant of Israel, and they that are escaped of the house of Jacob, shall no more again lean upon him that smote them, but shall lean upon Jehovah, the Holy One of Israel, in truth.</VERS>\r\n      <VERS vnumber=\"21\">A remnant shall return, [even] the remnant of Jacob, unto the mighty God.</VERS>\r\n      <VERS vnumber=\"22\">For though thy people, Israel, be as the sand of the sea, [only] a remnant of them shall return: a destruction [is] determined, overflowing with righteousness.</VERS>\r\n      <VERS vnumber=\"23\">For a full end, and that determined, will the Lord, Jehovah of hosts, make in the midst of all the earth.</VERS>\r\n      <VERS vnumber=\"24\">Therefore thus saith the Lord, Jehovah of hosts, O my people that dwellest in Zion, be not afraid of the Assyrian, though he smite thee with the rod, and lift up his staff against thee, after the manner of Egypt.</VERS>\r\n      <VERS vnumber=\"25\">For yet a very little while, and the indignation [against thee] shall be accomplished, and mine anger [shall be directed] to his destruction.</VERS>\r\n      <VERS vnumber=\"26\">And Jehovah of hosts will stir up against him a scourge, as in the slaughter of Midian at the rock of Oreb: and his rod will be over the sea, and he will lift it up after the manner of Egypt.</VERS>\r\n      <VERS vnumber=\"27\">And it shall come to pass in that day, that his burden shall depart from off thy shoulder, and his yoke from off thy neck, and the yoke shall be destroyed by reason of fatness.</VERS>\r\n      <VERS vnumber=\"28\">He is come to Aiath, he is passed through Migron; at Michmash he layeth up his baggage;</VERS>\r\n      <VERS vnumber=\"29\">they are gone over the pass; they have taken up their lodging at Geba; Ramah trembleth; Gibeah of Saul is fled.</VERS>\r\n      <VERS vnumber=\"30\">Cry aloud with thy voice, O daughter of Gallim! hearken, O Laishah! O thou poor Anathoth!</VERS>\r\n      <VERS vnumber=\"31\">Madmenah is a fugitive; the inhabitants of Gebim flee for safety.</VERS>\r\n      <VERS vnumber=\"32\">This very day shall he halt at Nob: he shaketh his hand at the mount of the daughter of Zion, the hill of Jerusalem.</VERS>\r\n      <VERS vnumber=\"33\">Behold, the Lord, Jehovah of hosts, will lop the boughs with terror: and the high of stature shall be hewn down, and the lofty shall be brought low.</VERS>\r\n      <VERS vnumber=\"34\">And he will cut down the thickets of the forest with iron, and Lebanon shall fall by a mighty one.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">And there shall come forth a shoot out of the stock of Jesse, and a branch out of his roots shall bear fruit.</VERS>\r\n      <VERS vnumber=\"2\">And the Spirit of Jehovah 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 Jehovah.</VERS>\r\n      <VERS vnumber=\"3\">And his delight shall be in the fear of Jehovah; and he shall not judge after the sight of his eyes, neither decide after the hearing of his ears;</VERS>\r\n      <VERS vnumber=\"4\">but with righteousness shall he judge the poor, and decide 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.</VERS>\r\n      <VERS vnumber=\"5\">And righteousness shall be the girdle of his waist, and faithfulness the girdle of his loins.</VERS>\r\n      <VERS vnumber=\"6\">And the wolf 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.</VERS>\r\n      <VERS vnumber=\"7\">And the cow and the bear shall feed; their young ones shall lie down together; and the lion shall eat straw like the ox.</VERS>\r\n      <VERS vnumber=\"8\">And the sucking child shall play on the hole of the asp, and the weaned child shall put his hand on the adder`s den.</VERS>\r\n      <VERS vnumber=\"9\">They shall not hurt nor destroy in all my holy mountain; for the earth shall be full of the knowledge of Jehovah, as the waters cover the sea.</VERS>\r\n      <VERS vnumber=\"10\">And it shall come to pass in that day, that the root of Jesse, that standeth for an ensign of the peoples, unto him shall the nations seek; and his resting-place shall be glorious.</VERS>\r\n      <VERS vnumber=\"11\">And it shall come to pass in that day, that the Lord will set his hand again the second time to recover the remnant of his people, that shall remain, 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.</VERS>\r\n      <VERS vnumber=\"12\">And he will set up an ensign for the nations, and will assemble the outcasts of Israel, and gather together the dispersed of Judah from the four corners of the earth.</VERS>\r\n      <VERS vnumber=\"13\">The envy also of Ephraim shall depart, and they that vex Judah shall be cut off: Ephraim shall not envy Judah, and Judah shall not vex Ephraim.</VERS>\r\n      <VERS vnumber=\"14\">And they shall fly down upon the shoulder of the Philistines on the west; together shall they despoil the children of the east: they shall put forth their hand upon Edom and Moab; and the children of Ammon shall obey them.</VERS>\r\n      <VERS vnumber=\"15\">And Jehovah will utterly destroy the tongue of the Egyptian sea; and with his scorching wind will he wave his hand over the River, and will smite it into seven streams, and cause men to march over dryshod.</VERS>\r\n      <VERS vnumber=\"16\">And there shall be a highway for the remnant of his people, that shall remain, from Assyria; like as there was for Israel in the day that he came up out of the land of Egypt.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">And in that day thou shalt say, I will give thanks unto thee, O Jehovah; for though thou wast angry with me, thine anger is turned away and thou comfortest me.</VERS>\r\n      <VERS vnumber=\"2\">Behold, God is my salvation; I will trust, and will not be afraid; for Jehovah, [even] Jehovah, is my strength and song; and he is become my salvation.</VERS>\r\n      <VERS vnumber=\"3\">Therefore with joy shall ye draw water out of the wells of salvation.</VERS>\r\n      <VERS vnumber=\"4\">And in that day shall ye say, Give thanks unto Jehovah, call upon his name, declare his doings among the peoples, make mention that his name is exalted.</VERS>\r\n      <VERS vnumber=\"5\">Sing unto Jehovah; for he hath done excellent things: let this be known in all the earth.</VERS>\r\n      <VERS vnumber=\"6\">Cry aloud and shout, thou inhabitant of Zion; for great in the midst of thee is the Holy One of Israel.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">The burden of Babylon, which Isaiah the son of Amoz did see.</VERS>\r\n      <VERS vnumber=\"2\">Set ye up an ensign upon the bare mountain, lift up the voice unto them, wave the hand, that they may go into the gates of the nobles.</VERS>\r\n      <VERS vnumber=\"3\">I have commanded my consecrated ones, yea, I have called my mighty men for mine anger, even my proudly exulting ones.</VERS>\r\n      <VERS vnumber=\"4\">The noise of a multitude in the mountains, as of a great people! the noise of a tumult of the kingdoms of the nations gathered together! Jehovah of hosts is mustering the host for the battle.</VERS>\r\n      <VERS vnumber=\"5\">They come from a far country, from the uttermost part of heaven, even Jehovah, and the weapons of his indignation, to destroy the whole land.</VERS>\r\n      <VERS vnumber=\"6\">Wail ye; for the day of Jehovah is at hand; as destruction from the Almighty shall it come.</VERS>\r\n      <VERS vnumber=\"7\">Therefore shall all hands be feeble, and every heart of man shall melt:</VERS>\r\n      <VERS vnumber=\"8\">and they shall be dismayed; pangs and sorrows shall take hold [of them]; they shall be in pain as a woman in travail: they shall look in amazement one at another; their faces [shall be] faces of flame.</VERS>\r\n      <VERS vnumber=\"9\">Behold, the day of Jehovah cometh, cruel, with wrath and fierce anger; to make the land a desolation, and to destroy the sinners thereof out of it.</VERS>\r\n      <VERS vnumber=\"10\">For the stars of heaven and the constellations thereof shall not give their light; the sun shall be darkened in its going forth, and the moon shall not cause its light to shine.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">I will make a man more rare than fine gold, even a man than the pure gold of Ophir.</VERS>\r\n      <VERS vnumber=\"13\">Therefore I will make the heavens to tremble, and the earth shall be shaken out of its place, in the wrath of Jehovah of hosts, and in the day of his fierce anger.</VERS>\r\n      <VERS vnumber=\"14\">And it shall come to pass, that as the chased roe, and as sheep that no man gathereth, they shall turn every man to his own people, and shall flee every man to his own land.</VERS>\r\n      <VERS vnumber=\"15\">Every one that is found shall be thrust through; and every one that is taken shall fall by the sword.</VERS>\r\n      <VERS vnumber=\"16\">Their infants also shall be dashed in pieces before their eyes; their houses shall be rifled, and their wives ravished.</VERS>\r\n      <VERS vnumber=\"17\">Behold, I will stir up the Medes against them, who shall not regard silver, and as for gold, they shall not delight in it.</VERS>\r\n      <VERS vnumber=\"18\">And [their] bows shall dash the young men in pieces; and they shall have no pity on the fruit of the womb; their eye shall not spare children.</VERS>\r\n      <VERS vnumber=\"19\">And Babylon, the glory of kingdoms, the beauty of the Chaldeans` pride, shall be as when God overthrew Sodom and Gomorrah.</VERS>\r\n      <VERS vnumber=\"20\">It shall never be inhabited, neither shall it be dwelt in from generation to generation: neither shall the Arabian pitch tent there; neither shall shepherds make their flocks to lie down there.</VERS>\r\n      <VERS vnumber=\"21\">But wild beasts of the desert shall lie there; and their houses shall be full of doleful creatures; and ostriches shall dwell there, and wild goats shall dance there.</VERS>\r\n      <VERS vnumber=\"22\">And wolves shall cry in their castles, and jackals in the pleasant palaces: and her time is near to come, and her days shall not be prolonged.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">For Jehovah will have compassion on Jacob, and will yet choose Israel, and set them in their own land: and the sojourner shall join himself with them, and they shall cleave to the house of Jacob.</VERS>\r\n      <VERS vnumber=\"2\">And the peoples shall take them, and bring them to their place; and the house of Israel shall possess them in the land of Jehovah for servants and for handmaids: and they shall take them captive whose captives they were; and they shall rule over their oppressors.</VERS>\r\n      <VERS vnumber=\"3\">And it shall come to pass in the day that Jehovah shall give thee rest from thy sorrow, and from thy trouble, and from the hard service wherein thou wast made to serve,</VERS>\r\n      <VERS vnumber=\"4\">that thou shalt take up this parable against the king of Babylon, and say, How hath the oppressor ceased! the golden city ceased!</VERS>\r\n      <VERS vnumber=\"5\">Jehovah hath broken the staff of the wicked, the sceptre of the rulers;</VERS>\r\n      <VERS vnumber=\"6\">that smote the peoples in wrath with a continual stroke, that ruled the nations in anger, with a persecution that none restrained.</VERS>\r\n      <VERS vnumber=\"7\">The whole earth is at rest, [and] is quiet: they break forth into singing.</VERS>\r\n      <VERS vnumber=\"8\">Yea, the fir-trees rejoice at thee, [and] the cedars of Lebanon, [saying], Since thou art laid low, no hewer is come up against us.</VERS>\r\n      <VERS vnumber=\"9\">Sheol 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.</VERS>\r\n      <VERS vnumber=\"10\">All they shall answer and say unto thee, Art thou also become weak as we? art thou become like unto us?</VERS>\r\n      <VERS vnumber=\"11\">Thy pomp is brought down to Sheol, [and] the noise of thy viols: the worm is spread under thee, and worms cover thee.</VERS>\r\n      <VERS vnumber=\"12\">How art thou fallen from heaven, O day-star, son of the morning! how art thou cut down to the ground, that didst lay low the nations!</VERS>\r\n      <VERS vnumber=\"13\">And thou saidst in thy heart, I will ascend into heaven, I will exalt my throne above the stars of God; and I will sit upon the mount of congregation, in the uttermost parts of the north;</VERS>\r\n      <VERS vnumber=\"14\">I will ascend above the heights of the clouds; I will make myself like the Most High.</VERS>\r\n      <VERS vnumber=\"15\">Yet thou shalt be brought down to Sheol, to the uttermost parts of the pit.</VERS>\r\n      <VERS vnumber=\"16\">They that see thee shall gaze at thee, they shall consider thee, [saying], Is this the man that made the earth to tremble, that did shake kingdoms;</VERS>\r\n      <VERS vnumber=\"17\">that made the world as a wilderness, and overthrew the cities thereof; that let not loose his prisoners to their home?</VERS>\r\n      <VERS vnumber=\"18\">All the kings of the nations, all of them, sleep in glory, every one in his own house.</VERS>\r\n      <VERS vnumber=\"19\">But thou art cast forth away from thy sepulchre like an abominable branch, clothed with the slain, that are thrust through with the sword, that go down to the stones of the pit; as a dead body trodden under foot.</VERS>\r\n      <VERS vnumber=\"20\">Thou shalt not be joined with them in burial, because thou hast destroyed thy land, thou hast slain thy people; the seed of evil-doers shall not be named for ever.</VERS>\r\n      <VERS vnumber=\"21\">Prepare ye slaughter for his children for the iniquity of their fathers, that they rise not up, and possess the earth, and fill the face of the world with cities.</VERS>\r\n      <VERS vnumber=\"22\">And I will rise up against them, saith Jehovah of hosts, and cut off from Babylon name and remnant, and son and son`s son, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"23\">I will also make it a possession for the porcupine, and pools of water: and I will sweep it with the besom of destruction, saith Jehovah of hosts.</VERS>\r\n      <VERS vnumber=\"24\">Jehovah 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:</VERS>\r\n      <VERS vnumber=\"25\">that 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 shoulder.</VERS>\r\n      <VERS vnumber=\"26\">This is the purpose that is purposed upon the whole earth; and this is the hand that is stretched out upon all the nations.</VERS>\r\n      <VERS vnumber=\"27\">For Jehovah of hosts hath purposed, and who shall annul it? and his hand is stretched out, and who shall turn it back?</VERS>\r\n      <VERS vnumber=\"28\">In the year that king Ahaz died was this burden.</VERS>\r\n      <VERS vnumber=\"29\">Rejoice not, O Philistia, all of thee, because the rod that smote thee is broken; for out of the serpent`s root shall come forth an adder, and his fruit shall be a fiery flying serpent.</VERS>\r\n      <VERS vnumber=\"30\">And the first-born of the poor shall feed, and the needy shall lie down in safety; and I will kill thy root with famine, and thy remnant shall be slain.</VERS>\r\n      <VERS vnumber=\"31\">Howl, O gate; cry, O city; thou art melted away, O Philistia, all of thee; for there cometh a smoke out of the north, and there is no straggler in his ranks.</VERS>\r\n      <VERS vnumber=\"32\">What then shall one answer the messengers of the nation? That Jehovah hath founded Zion, and in her shall the afflicted of his people take refuge.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">The burden of Moab. For in a night Ar of Moab is laid waste, [and] brought to nought; for in a night Kir of Moab is laid waste, [and] brought to nought.</VERS>\r\n      <VERS vnumber=\"2\">They are gone up to Bayith, and to Dibon, to the high places, to weep: Moab waileth over Nebo, and over Medeba; on all their heads is baldness, every beard is cut off.</VERS>\r\n      <VERS vnumber=\"3\">In their streets they gird themselves with sackcloth; on their housetops, and in their broad places, every one waileth, weeping abundantly.</VERS>\r\n      <VERS vnumber=\"4\">And Heshbon crieth out, and Elealeh; their voice is heard even unto Jahaz: therefore the armed men of Moab cry aloud; his soul trembleth within him.</VERS>\r\n      <VERS vnumber=\"5\">My heart crieth out for Moab; her nobles [flee] unto Zoar, to Eglath-shelishi-yah: for by the ascent of Luhith with weeping they go up; for in the way of Horonaim they raise up a cry of destruction.</VERS>\r\n      <VERS vnumber=\"6\">For the waters of Nimrim shall be desolate; for the grass is withered away, the tender grass faileth, there is no green thing.</VERS>\r\n      <VERS vnumber=\"7\">Therefore the abundance they have gotten, and that which they have laid up, shall they carry away over the brook of the willows.</VERS>\r\n      <VERS vnumber=\"8\">For the cry is gone round about the borders of Moab; the wailing thereof unto Eglaim, and the wailing thereof unto Beer-elim.</VERS>\r\n      <VERS vnumber=\"9\">For the waters of Dimon are full of blood; for I will bring yet more upon Dimon, a lion upon them of Moab that escape, and upon the remnant of the land.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">Send ye the lambs for the ruler of the land from Selah to the wilderness, unto the mount of the daughter of Zion.</VERS>\r\n      <VERS vnumber=\"2\">For it shall be that, as wandering birds, as a scattered nest, so shall the daughters of Moab be at the fords of the Arnon.</VERS>\r\n      <VERS vnumber=\"3\">Give counsel, execute justice; make thy shade as the night in the midst of the noonday; hide the outcasts; betray not the fugitive.</VERS>\r\n      <VERS vnumber=\"4\">Let mine outcasts dwell with thee; as for Moab, be thou a covert to him from the face of the destroyer. For the extortioner is brought to nought, destruction ceaseth, the oppressors are consumed out of the land.</VERS>\r\n      <VERS vnumber=\"5\">And a throne shall be established in lovingkindness; and one shall sit thereon in truth, in the tent of David, judging, and seeking justice, and swift to do righteousness.</VERS>\r\n      <VERS vnumber=\"6\">We have heard of the pride of Moab, [that] he is very proud; even of his arrogancy, and his pride, and his wrath; his boastings are nought.</VERS>\r\n      <VERS vnumber=\"7\">Therefore shall Moab wail for Moab, every one shall wail: for the raisin-cakes of Kir-hareseth shall ye mourn, utterly stricken.</VERS>\r\n      <VERS vnumber=\"8\">For the fields of Heshbon languish, [and] the vine of Sibmah; the lords of the nations have broken down the choice branches thereof, which reached even unto Jazer, which wandered into the wilderness; its shoots were spread abroad, they passed over the sea.</VERS>\r\n      <VERS vnumber=\"9\">Therefore I will weep with the weeping of Jazer for the vine of Sibmah; I will water thee with my tears, O Heshbon, and Elealeh: for upon thy summer fruits and upon thy harvest the [battle] shout is fallen.</VERS>\r\n      <VERS vnumber=\"10\">And gladness is taken away, and joy out of the fruitful field; and in the vineyards there shall be no singing, neither joyful noise: no treader shall tread out wine in the presses; I have made the [vintage] shout to cease.</VERS>\r\n      <VERS vnumber=\"11\">Wherefore my heart soundeth like a harp for Moab, and mine inward parts for Kir-heres.</VERS>\r\n      <VERS vnumber=\"12\">And it shall come to pass, when Moab presenteth himself, when he wearieth himself upon the high place, and shall come to his sanctuary to pray, that he shall not prevail.</VERS>\r\n      <VERS vnumber=\"13\">This is the word that Jehovah spake concerning Moab in time past.</VERS>\r\n      <VERS vnumber=\"14\">But now Jehovah hath spoken, saying, Within three years, as the years of a hireling, the glory of Moab shall be brought into contempt, with all his great multitude; and the remnant shall be very small and of no account.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"17\">\r\n      <VERS vnumber=\"1\">The burden of Damascus. Behold, Damascus is taken away from being a city, and it shall be a ruinous heap.</VERS>\r\n      <VERS vnumber=\"2\">The cities of Aroer are forsaken; they shall be for flocks, which shall lie down, and none shall make them afraid.</VERS>\r\n      <VERS vnumber=\"3\">And the fortress 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 Jehovah of hosts.</VERS>\r\n      <VERS vnumber=\"4\">And it shall come to pass in that day, that the glory of Jacob shall be made thin, and the fatness of his flesh shall wax lean.</VERS>\r\n      <VERS vnumber=\"5\">And it shall be as when the harvestman gathereth the standing grain, and his arm reapeth the ears; yea, it shall be as when one gleaneth ears in the valley of Rephaim.</VERS>\r\n      <VERS vnumber=\"6\">Yet there shall be left therein gleanings, as the shaking of an olive-tree, two or three berries in the top of the uppermost bough, four or five in the outmost branches of a fruitful tree, saith Jehovah, the God of Israel.</VERS>\r\n      <VERS vnumber=\"7\">In that day shall men look unto their Maker, and their eyes shall have respect to the Holy One of Israel.</VERS>\r\n      <VERS vnumber=\"8\">And they shall not look to the altars, the work of their hands; neither shall they have respect to that which their fingers have made, either the Asherim, or the sun-images.</VERS>\r\n      <VERS vnumber=\"9\">In that day shall their strong cities be as the forsaken places in the wood and on the mountain top, which were forsaken from before the children of Israel; and it shall be a desolation.</VERS>\r\n      <VERS vnumber=\"10\">For thou hast forgotten the God of thy salvation, and hast not been mindful of the rock of thy strength; therefore thou plantest pleasant plants, and settest it with strange slips.</VERS>\r\n      <VERS vnumber=\"11\">In the day of thy planting thou hedgest it in, and in the morning thou makest thy seed to blossom; but the harvest fleeth away in the day of grief and of desperate sorrow.</VERS>\r\n      <VERS vnumber=\"12\">Ah, the uproar of many peoples, that roar like the roaring of the seas; and the rushing of nations, that rush like the rushing of mighty waters!</VERS>\r\n      <VERS vnumber=\"13\">The nations shall rush like the rushing of many waters: but he shall rebuke them, and they shall flee far off, and shall be chased as the chaff of the mountains before the wind, and like the whirling dust before the storm.</VERS>\r\n      <VERS vnumber=\"14\">At eventide, behold, terror; [and] before the morning they are not. This is the portion of them that despoil us, and the lot of them that rob us.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"18\">\r\n      <VERS vnumber=\"1\">Ah, the land of the rustling of wings, which is beyond the rivers of Ethiopia;</VERS>\r\n      <VERS vnumber=\"2\">that sendeth ambassadors by the sea, even in vessels of papyrus upon the waters, [saying], Go, ye swift messengers, to a nation tall and smooth, to a people terrible from their beginning onward, a nation that meteth out and treadeth down, whose land the rivers divide!</VERS>\r\n      <VERS vnumber=\"3\">All ye inhabitants of the world, and ye dwellers on the earth, when an ensign is lifted up on the mountains, see ye; and when the trumpet is blown, hear ye.</VERS>\r\n      <VERS vnumber=\"4\">For thus hath Jehovah said unto me, I will be still, and I will behold in my dwelling-place, like clear heat in sunshine, like a cloud of dew in the heat of harvest.</VERS>\r\n      <VERS vnumber=\"5\">For before the harvest, when the blossom is over, and the flower becometh a ripening grape, he will cut off the sprigs with pruning-hooks, and the spreading branches will he take away [and] cut down.</VERS>\r\n      <VERS vnumber=\"6\">They shall be left together unto the ravenous birds of the mountains, and to the beasts of the earth; and the ravenous birds shall summer upon them, and all the beasts of the earth shall winter upon them.</VERS>\r\n      <VERS vnumber=\"7\">In that time shall a present be brought unto Jehovah of hosts [from] a people tall and smooth, even from a people terrible from their beginning onward, a nation that meteth out and treadeth down, whose land the rivers divide, to the place of the name of Jehovah of hosts, the mount Zion.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"19\">\r\n      <VERS vnumber=\"1\">The burden of Egypt. Behold, Jehovah rideth upon a swift cloud, and cometh unto Egypt: and the idols of Egypt shall tremble at his presence; and the heart of Egypt shall melt in the midst of it.</VERS>\r\n      <VERS vnumber=\"2\">And I will stir up the Egyptians against the Egyptians: and they shall fight every one against his brother, and every one against his neighbor; city against city, [and] kingdom against kingdom.</VERS>\r\n      <VERS vnumber=\"3\">And the spirit of Egypt shall fail in the midst of it; and I will destroy the counsel thereof: and they shall seek unto the idols, and to the charmers, and to them that have familiar spirits, and to the wizards.</VERS>\r\n      <VERS vnumber=\"4\">And I will give over the Egyptians into the hand of a cruel lord; and a fierce king shall rule over them, saith the Lord, Jehovah of hosts.</VERS>\r\n      <VERS vnumber=\"5\">And the waters shall fail from the sea, and the river shall be wasted and become dry.</VERS>\r\n      <VERS vnumber=\"6\">And the rivers shall become foul; the streams of Egypt shall be diminished and dried up; the reeds and flags shall wither away.</VERS>\r\n      <VERS vnumber=\"7\">The meadows by the Nile, by the brink of the Nile, and all the sown fields of the Nile, shall become dry, be driven away, and be no more.</VERS>\r\n      <VERS vnumber=\"8\">And the fishers shall lament, and all they that cast angle into the Nile shall mourn, and they that spread nets upon the waters shall languish.</VERS>\r\n      <VERS vnumber=\"9\">Moreover they that work in combed flax, and they that weave white cloth, shall be confounded.</VERS>\r\n      <VERS vnumber=\"10\">And the pillars [of Egypt] shall be broken in pieces; all they that work for hire [shall be] grieved in soul.</VERS>\r\n      <VERS vnumber=\"11\">The princes of Zoan are utterly foolish; the counsel of the wisest counsellors of Pharaoh is become brutish: how say ye unto Pharaoh, I am the son of the wise, the son of ancient kings?</VERS>\r\n      <VERS vnumber=\"12\">Where then are thy wise men? and let them tell thee now; and let them know what Jehovah of hosts hath purposed concerning Egypt.</VERS>\r\n      <VERS vnumber=\"13\">The princes of Zoan are become fools, the princes of Memphis are deceived; they have caused Egypt to go astray, that are the corner-stone of her tribes.</VERS>\r\n      <VERS vnumber=\"14\">Jehovah hath mingled a spirit of perverseness in the midst of her; and they have caused Egypt to go astray in every work thereof, as a drunken man staggereth in his vomit.</VERS>\r\n      <VERS vnumber=\"15\">Neither shall there be for Egypt any work, which head or tail, palm-branch or rush, may do.</VERS>\r\n      <VERS vnumber=\"16\">In that day shall the Egyptians be like unto women; and they shall tremble and fear because of the shaking of the hand of Jehovah of hosts, which he shaketh over them.</VERS>\r\n      <VERS vnumber=\"17\">And the land of Judah shall become a terror unto Egypt; every one to whom mention is made thereof shall be afraid, because of the purpose of Jehovah of hosts, which he purposeth against it.</VERS>\r\n      <VERS vnumber=\"18\">In that day there shall be five cities in the land of Egypt that speak the language of Canaan, and swear to Jehovah of hosts; one shall be called The city of destruction.</VERS>\r\n      <VERS vnumber=\"19\">In that day shall there be an altar to Jehovah in the midst of the land of Egypt, and a pillar at the border thereof to Jehovah.</VERS>\r\n      <VERS vnumber=\"20\">And it shall be for a sign and for a witness unto Jehovah of hosts in the land of Egypt; for they shall cry unto Jehovah because of oppressors, and he will send them a saviour, and a defender, and he will deliver them.</VERS>\r\n      <VERS vnumber=\"21\">And Jehovah shall be known to Egypt, and the Egyptians shall know Jehovah in that day; yea, they shall worship with sacrifice and oblation, and shall vow a vow unto Jehovah, and shall perform it.</VERS>\r\n      <VERS vnumber=\"22\">And Jehovah will smite Egypt, smiting and healing; and they shall return unto Jehovah, and he will be entreated of them, and will heal them.</VERS>\r\n      <VERS vnumber=\"23\">In 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 worship with the Assyrians.</VERS>\r\n      <VERS vnumber=\"24\">In that day shall Israel be the third with Egypt and with Assyria, a blessing in the midst of the earth;</VERS>\r\n      <VERS vnumber=\"25\">for that Jehovah of hosts hath blessed them, saying, Blessed be Egypt my people, and Assyria the work of my hands, and Israel mine inheritance.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"20\">\r\n      <VERS vnumber=\"1\">In the year that Tartan came unto Ashdod, when Sargon the king of Assyria sent him, and he fought against Ashdod and took it;</VERS>\r\n      <VERS vnumber=\"2\">at that time Jehovah spake by Isaiah the son of Amoz, saying, Go, and loose the sackcloth from off thy loins, and put thy shoe from off thy foot. And he did so, walking naked and barefoot.</VERS>\r\n      <VERS vnumber=\"3\">And Jehovah said, Like as my servant Isaiah hath walked naked and barefoot three years for a sign and a wonder concerning Egypt and concerning Ethiopia;</VERS>\r\n      <VERS vnumber=\"4\">so shall the king of Assyria lead away the captives of Egypt, and the exiles of Ethiopia, young and old, naked and barefoot, and with buttocks uncovered, to the shame of Egypt.</VERS>\r\n      <VERS vnumber=\"5\">And they shall be dismayed and confounded, because of Ethiopia their expectation, and of Egypt their glory.</VERS>\r\n      <VERS vnumber=\"6\">And the inhabitant of this coast-land shall say in that day, Behold, such is our expectation, whither we fled for help to be delivered from the king of Assyria: and we, how shall we escape?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"21\">\r\n      <VERS vnumber=\"1\">The burden of the wilderness of the sea. As whirlwinds in the South sweep through, it cometh from the wilderness, from a terrible land.</VERS>\r\n      <VERS vnumber=\"2\">A grievous vision is declared unto me; the treacherous man dealeth treacherously, and the destroyer destroyeth. Go up, O Elam; besiege, O Media; all the sighing thereof have I made to cease.</VERS>\r\n      <VERS vnumber=\"3\">Therefore are my loins filled with anguish; pangs have taken hold upon me, as the pangs of a woman in travail: I am pained so that I cannot hear; I am dismayed so that I cannot see.</VERS>\r\n      <VERS vnumber=\"4\">My heart fluttereth, horror hath affrighted me; the twilight that I desired hath been turned into trembling unto me.</VERS>\r\n      <VERS vnumber=\"5\">They prepare the table, they set the watch, they eat, they drink: rise up, ye princes, anoint the shield.</VERS>\r\n      <VERS vnumber=\"6\">For thus hath the Lord said unto me, Go, set a watchman: let him declare what he seeth:</VERS>\r\n      <VERS vnumber=\"7\">and when he seeth a troop, horsemen in pairs, a troop of asses, a troop of camels, he shall hearken diligently with much heed.</VERS>\r\n      <VERS vnumber=\"8\">And he cried as a lion: O Lord, I stand continually upon the watch-tower in the day-time, and am set in my ward whole nights;</VERS>\r\n      <VERS vnumber=\"9\">and, behold, here cometh a troop of men, horsemen in pairs. And he answered and said, Fallen, fallen is Babylon; and all the graven images of her gods are broken unto the ground.</VERS>\r\n      <VERS vnumber=\"10\">O thou my threshing, and the grain of my floor! that which I have heard from Jehovah of hosts, the God of Israel, have I declared unto you.</VERS>\r\n      <VERS vnumber=\"11\">The burden of Dumah. One calleth unto me out of Seir, Watchman, what of the night? Watchman, what of the night?</VERS>\r\n      <VERS vnumber=\"12\">The watchman said, The morning cometh, and also the night: if ye will inquire, inquire ye: turn ye, come.</VERS>\r\n      <VERS vnumber=\"13\">The burden upon Arabia. In the forest in Arabia shall ye lodge, O ye caravans of Dedanites.</VERS>\r\n      <VERS vnumber=\"14\">Unto him that was thirsty they brought water; the inhabitants of the land of Tema did meet the fugitives with their bread.</VERS>\r\n      <VERS vnumber=\"15\">For they fled away from the swords, from the drawn sword, and from the bent bow, and from the grievousness of war.</VERS>\r\n      <VERS vnumber=\"16\">For thus hath the Lord said unto me, Within a year, according to the years of a hireling, all the glory of Kedar shall fail;</VERS>\r\n      <VERS vnumber=\"17\">and the residue of the number of the archers, the mighty men of the children of Kedar, shall be few; for Jehovah, the God of Israel, hath spoken it.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"22\">\r\n      <VERS vnumber=\"1\">The burden of the valley of vision. What aileth thee now, that thou art wholly gone up to the housetops?</VERS>\r\n      <VERS vnumber=\"2\">O thou that art full of shoutings, a tumultuous city, a joyous town; thy slain are not slain with the sword, neither are they dead in battle.</VERS>\r\n      <VERS vnumber=\"3\">All thy rulers fled away together, they were bound by the archers; all that were found of thee were bound together; they fled afar off.</VERS>\r\n      <VERS vnumber=\"4\">Therefore said I, Look away from me, I will weep bitterly; labor not to comfort me for the destruction of the daughter of my people.</VERS>\r\n      <VERS vnumber=\"5\">For it is a day of discomfiture, and of treading down, and of perplexity, from the Lord, Jehovah of hosts, in the valley of vision; a breaking down of the walls, and a crying to the mountains.</VERS>\r\n      <VERS vnumber=\"6\">And Elam bare the quiver, with chariots of men [and] horsemen; and Kir uncovered the shield.</VERS>\r\n      <VERS vnumber=\"7\">And it came to pass, that thy choicest valleys were full of chariots, and the horsemen set themselves in array at the gate.</VERS>\r\n      <VERS vnumber=\"8\">And he took away the covering of Judah; and thou didst look in that day to the armor in the house of the forest.</VERS>\r\n      <VERS vnumber=\"9\">And ye saw the breaches of the city of David, that they were many; and ye gathered together the waters of the lower pool;</VERS>\r\n      <VERS vnumber=\"10\">and ye numbered the houses of Jerusalem, and ye brake down the houses to fortify the wall;</VERS>\r\n      <VERS vnumber=\"11\">ye made also a reservoir between the two walls for the water of the old pool. But ye looked not unto him that had done this, neither had ye respect unto him that purposed it long ago.</VERS>\r\n      <VERS vnumber=\"12\">And in that day did the Lord, Jehovah of hosts, call to weeping, and to mourning, and to baldness, and to girding with sackcloth:</VERS>\r\n      <VERS vnumber=\"13\">and 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.</VERS>\r\n      <VERS vnumber=\"14\">And Jehovah of hosts revealed himself in mine ears, Surely this iniquity shall not be forgiven you till ye die, saith the Lord, Jehovah of hosts.</VERS>\r\n      <VERS vnumber=\"15\">Thus saith the Lord, Jehovah of hosts, Go, get thee unto this treasurer, even unto Shebna, who is over the house, [and say],</VERS>\r\n      <VERS vnumber=\"16\">What doest thou here? and whom has thou here, that thou hast hewed thee out here a sepulchre? hewing him out a sepulchre on high, graving a habitation for himself in the rock!</VERS>\r\n      <VERS vnumber=\"17\">Behold, Jehovah, like a [strong] man, will hurl thee away violently; yea, he will wrap thee up closely.</VERS>\r\n      <VERS vnumber=\"18\">He will surely wind thee round and round, [and toss thee] like a ball into a large country; there shalt thou die, and there shall be the chariots of thy glory, thou shame of thy lord`s house.</VERS>\r\n      <VERS vnumber=\"19\">And I will thrust thee from thine office; and from thy station shalt thou be pulled down.</VERS>\r\n      <VERS vnumber=\"20\">And it shall come to pass in that day, that I will call my servant Eliakim the son of Hilkiah:</VERS>\r\n      <VERS vnumber=\"21\">and I will cloth 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.</VERS>\r\n      <VERS vnumber=\"22\">And the key of the house of David will I lay upon his shoulder; and he shall open, and none shall shut; and he shall shut, and none shall open.</VERS>\r\n      <VERS vnumber=\"23\">And I will fasten him as a nail in a sure place; and he shall be for a throne of glory to his father`s house.</VERS>\r\n      <VERS vnumber=\"24\">And they shall hang upon him all the glory of his father`s house, the offspring and the issue, every small vessel, from the cups even to all the flagons.</VERS>\r\n      <VERS vnumber=\"25\">In that day, saith Jehovah of hosts, shall the nail that was fastened in a sure place give way; and it shall be hewn down, and fall; and the burden that was upon it shall be cut off; for Jehovah hath spoken it.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"23\">\r\n      <VERS vnumber=\"1\">The 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 Kittim it is revealed to them.</VERS>\r\n      <VERS vnumber=\"2\">Be still, ye inhabitants of the coast, thou whom the merchants of Sidon, that pass over the sea, have replenished.</VERS>\r\n      <VERS vnumber=\"3\">And on great waters the seed of the Shihor, the harvest of the Nile, was her revenue; and she was the mart of nations.</VERS>\r\n      <VERS vnumber=\"4\">Be thou ashamed, O Sidon; for the sea hath spoken, the stronghold of the sea, saying, I have not travailed, nor brought forth, neither have I nourished young men, nor brought up virgins.</VERS>\r\n      <VERS vnumber=\"5\">When the report cometh to Egypt, they shall be sorely pained at the report of Tyre.</VERS>\r\n      <VERS vnumber=\"6\">Pass ye over to Tarshish; wail, ye inhabitants of the coast.</VERS>\r\n      <VERS vnumber=\"7\">Is this your joyous [city], whose antiquity is of ancient days, whose feet carried her afar off to sojourn?</VERS>\r\n      <VERS vnumber=\"8\">Who hath purposed this against Tyre, the bestower of crowns, whose merchants are princes, whose traffickers are the honorable of the earth?</VERS>\r\n      <VERS vnumber=\"9\">Jehovah of hosts hath purposed it, to stain the pride of all glory, to bring into contempt all the honorable of the earth.</VERS>\r\n      <VERS vnumber=\"10\">Pass through thy land as the Nile, O daughter of Tarshish; there is no restraint any more.</VERS>\r\n      <VERS vnumber=\"11\">He hath stretched out his hand over the sea, he hath shaken the kingdoms: Jehovah hath given commandment concerning Canaan, to destroy the strongholds thereof.</VERS>\r\n      <VERS vnumber=\"12\">And he said, Thou shalt no more rejoice, O thou oppressed virgin daughter of Sidon: arise, pass over to Kittim; even there shalt thou have no rest.</VERS>\r\n      <VERS vnumber=\"13\">Behold, the land of the Chaldeans: this people was not; the Assyrian founded it for them that dwell in the wilderness; they set up their towers; they overthrew the palaces thereof; they made it a ruin.</VERS>\r\n      <VERS vnumber=\"14\">Howl, ye ships of Tarshish; for your stronghold is laid waste.</VERS>\r\n      <VERS vnumber=\"15\">And 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 it shall be unto Tyre as in the song of the harlot.</VERS>\r\n      <VERS vnumber=\"16\">Take a harp, go about the city, thou harlot that hast been forgotten; make sweet melody, sing many songs, that thou mayest be remembered.</VERS>\r\n      <VERS vnumber=\"17\">And it shall come to pass after the end of seventy years, that Jehovah will visit Tyre, and she shall return to her hire, and shall play the harlot with all the kingdoms of the world upon the face of the earth.</VERS>\r\n      <VERS vnumber=\"18\">And her merchandise and her hire shall be holiness to Jehovah: it shall not be treasured nor laid up; for her merchandise shall be for them that dwell before Jehovah, to eat sufficiently, and for durable clothing.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"24\">\r\n      <VERS vnumber=\"1\">Behold, Jehovah maketh the earth empty, and maketh it waste, and turneth it upside down, and scattereth abroad the inhabitants thereof.</VERS>\r\n      <VERS vnumber=\"2\">And 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 creditor, so with the debtor; as with the taker of interest, so with the giver of interest to him.</VERS>\r\n      <VERS vnumber=\"3\">The earth shall be utterly emptied, and utterly laid waste; for Jehovah hath spoken this word.</VERS>\r\n      <VERS vnumber=\"4\">The earth mourneth and fadeth away, the world languisheth and fadeth away, the lofty people of the earth do languish.</VERS>\r\n      <VERS vnumber=\"5\">The earth also is polluted under the inhabitants thereof; because they have transgressed the laws, violated the statutes, broken the everlasting covenant.</VERS>\r\n      <VERS vnumber=\"6\">Therefore hath the curse devoured the earth, and they that dwell therein are found guilty: therefore the inhabitants of the earth are burned, and few men left.</VERS>\r\n      <VERS vnumber=\"7\">The new wine mourneth, the vine languisheth, all the merry-hearted do sigh.</VERS>\r\n      <VERS vnumber=\"8\">The mirth of tabrets ceaseth, the noise of them that rejoice endeth, the joy of the harp ceaseth.</VERS>\r\n      <VERS vnumber=\"9\">They shall not drink wine with a song; strong drink shall be bitter to them that drink it.</VERS>\r\n      <VERS vnumber=\"10\">The waste city is broken down; every house is shut up, that no man may come in.</VERS>\r\n      <VERS vnumber=\"11\">There is a crying in the streets because of the wine; all joy is darkened, the mirth of the land is gone.</VERS>\r\n      <VERS vnumber=\"12\">In the city is left desolation, and the gate is smitten with destruction.</VERS>\r\n      <VERS vnumber=\"13\">For thus shall it be in the midst of the earth among the peoples, as the shaking of an olive-tree, as the gleanings when the vintage is done.</VERS>\r\n      <VERS vnumber=\"14\">These shall lift up their voice, they shall shout; for the majesty of Jehovah they cry aloud from the sea.</VERS>\r\n      <VERS vnumber=\"15\">Wherefore glorify ye Jehovah in the east, even the name of Jehovah, the God of Israel, in the isles of the sea.</VERS>\r\n      <VERS vnumber=\"16\">From the uttermost part of the earth have we heard songs: Glory to the righteous. But I said, I pine away, I pine away, woe is me! the treacherous have dealt treacherously; yea, the treacherous have dealt very treacherously.</VERS>\r\n      <VERS vnumber=\"17\">Fear, and the pit, and the snare, are upon thee, O inhabitant of the earth.</VERS>\r\n      <VERS vnumber=\"18\">And 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 on high are opened, and the foundations of the earth tremble.</VERS>\r\n      <VERS vnumber=\"19\">The earth is utterly broken, the earth is rent asunder, the earth is shaken violently.</VERS>\r\n      <VERS vnumber=\"20\">The earth shall stagger like a drunken man, and shall sway to and fro like a hammock; and the transgression thereof shall be heavy upon it, and it shall fall, and not rise again.</VERS>\r\n      <VERS vnumber=\"21\">And it shall come to pass in that day, that Jehovah will punish the host of the high ones on high, and the kings of the earth upon the earth.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">Then the moon shall be confounded, and the sun ashamed; for Jehovah of hosts will reign in mount Zion, and in Jerusalem; and before his elders shall be glory.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"25\">\r\n      <VERS vnumber=\"1\">O Jehovah, thou art my God; I will exalt thee, I will praise thy name; for thou hast done wonderful things, [even] counsels of old, in faithfulness [and] truth.</VERS>\r\n      <VERS vnumber=\"2\">For thou hast made of a city a heap, of a fortified city a ruin, a palace of strangers to be no city; it shall never be built.</VERS>\r\n      <VERS vnumber=\"3\">Therefore shall a strong people glorify thee; a city of terrible nations shall fear thee.</VERS>\r\n      <VERS vnumber=\"4\">For thou hast been a stronghold to the poor, a stronghold to the needy in his distress, a refuge from the storm, a shade from the heat, when the blast of the terrible ones is as a storm against the wall.</VERS>\r\n      <VERS vnumber=\"5\">As the heat in a dry place wilt thou bring down the noise of strangers; as the heat by the shade of a cloud, the song of the terrible ones shall be brought low.</VERS>\r\n      <VERS vnumber=\"6\">And in this mountain will Jehovah of hosts make unto all peoples 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.</VERS>\r\n      <VERS vnumber=\"7\">And he will destroy in this mountain the face of the covering that covereth all peoples, and the veil that is spread over all nations.</VERS>\r\n      <VERS vnumber=\"8\">He hath swallowed up death for ever; and the Lord Jehovah will wipe away tears from off all faces; and the reproach of his people will he take away from off all the earth: for Jehovah hath spoken it.</VERS>\r\n      <VERS vnumber=\"9\">And it shall be said in that day, Lo, this is our God; we have waited for him, and he will save us: this is Jehovah; we have waited for him, we will be glad and rejoice in his salvation.</VERS>\r\n      <VERS vnumber=\"10\">For in this mountain will the hand of Jehovah rest; and Moab shall be trodden down in his place, even as straw is trodden down in the water of the dung-hill.</VERS>\r\n      <VERS vnumber=\"11\">And he shall spread forth his hands in the midst thereof, as he that swimmeth spreadeth forth [his hands] to swim; but [Jehovah] will lay low his pride together with the craft of his hands.</VERS>\r\n      <VERS vnumber=\"12\">And the high fortress of thy walls hath he brought down, laid low, and brought to the ground, even to the dust.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"26\">\r\n      <VERS vnumber=\"1\">In that day shall this song be sung in the land of Judah: we have a strong city; salvation will he appoint for walls and bulwarks.</VERS>\r\n      <VERS vnumber=\"2\">Open ye the gates, that the righteous nation which keepeth faith may enter in.</VERS>\r\n      <VERS vnumber=\"3\">Thou wilt keep [him] in perfect peace, [whose] mind [is] stayed [on thee]; because he trusteth in thee.</VERS>\r\n      <VERS vnumber=\"4\">Trust ye in Jehovah for ever; for in Jehovah, [even] Jehovah, is an everlasting rock.</VERS>\r\n      <VERS vnumber=\"5\">For he hath brought 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.</VERS>\r\n      <VERS vnumber=\"6\">The foot shall tread it down; even the feet of the poor, and the steps of the needy.</VERS>\r\n      <VERS vnumber=\"7\">The way of the just is uprightness: thou that art upright dost direct the path of the just.</VERS>\r\n      <VERS vnumber=\"8\">Yea, in the way of thy judgments, O Jehovah, have we waited for thee; to thy name, even to thy memorial [name], is the desire of our soul.</VERS>\r\n      <VERS vnumber=\"9\">With my soul have I desired thee in the night; yea, with my spirit within me will I seek thee earnestly: for when thy judgments are in the earth, the inhabitants of the world learn righteousness.</VERS>\r\n      <VERS vnumber=\"10\">Let favor be showed to the wicked, yet will he not learn righteousness; in the land of uprightness will he deal wrongfully, and will not behold the majesty of Jehovah.</VERS>\r\n      <VERS vnumber=\"11\">Jehovah, thy hand is lifted up, yet they see not: but they shall see [thy] zeal for the people, and be put to shame; yea, fire shall devour thine adversaries.</VERS>\r\n      <VERS vnumber=\"12\">Jehovah, thou wilt ordain peace for us; for thou hast also wrought all our works for us.</VERS>\r\n      <VERS vnumber=\"13\">O Jehovah our God, other lords besides thee have had dominion over us; but by thee only will we make mention of thy name.</VERS>\r\n      <VERS vnumber=\"14\">[They are] dead, they shall not live; [they are] deceased, they shall not rise: therefore hast thou visited and destroyed them, and made all remembrance of them to perish.</VERS>\r\n      <VERS vnumber=\"15\">Thou hast increased the nation, O Jehovah, thou hast increased the nation; thou art glorified; thou hast enlarged all the borders of the land.</VERS>\r\n      <VERS vnumber=\"16\">Jehovah, in trouble have they visited thee; they poured out a prayer [when] thy chastening was upon them.</VERS>\r\n      <VERS vnumber=\"17\">Like as a woman with child, that draweth near the time of her delivery, is in pain and crieth out in her pangs; so we have been before thee, O Jehovah.</VERS>\r\n      <VERS vnumber=\"18\">We 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.</VERS>\r\n      <VERS vnumber=\"19\">Thy dead shall live; my dead bodies shall arise. Awake and sing, ye that dwell in the dust; for thy dew is [as] the dew of herbs, and the earth shall cast forth the dead.</VERS>\r\n      <VERS vnumber=\"20\">Come, my people, enter thou into thy chambers, and shut thy doors about thee: hide thyself for a little moment, until the indignation be overpast.</VERS>\r\n      <VERS vnumber=\"21\">For, behold, Jehovah cometh forth 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"27\">\r\n      <VERS vnumber=\"1\">In that day Jehovah with his hard and great and strong sword will punish leviathan the swift serpent, and leviathan the crooked serpent; and he will slay the monster that is in the sea.</VERS>\r\n      <VERS vnumber=\"2\">In that day: A vineyard of wine, sing ye unto it.</VERS>\r\n      <VERS vnumber=\"3\">I Jehovah am its keeper; I will water it every moment: lest any hurt it, I will keep it night and day.</VERS>\r\n      <VERS vnumber=\"4\">Wrath is not in me: would that the briers and thorns were against me in battle! I would march upon them, I would burn them together.</VERS>\r\n      <VERS vnumber=\"5\">Or else let him take hold of my strength, that he may make peace with me; [yea], let him make peace with me.</VERS>\r\n      <VERS vnumber=\"6\">In days to come shall Jacob take root; Israel shall blossom and bud; and they shall fill the face of the world with fruit.</VERS>\r\n      <VERS vnumber=\"7\">Hath he smitten them as he smote those that smote them? or are they slain according to the slaughter of them that were slain by them?</VERS>\r\n      <VERS vnumber=\"8\">In measure, when thou sendest them away, thou dost contend with them; he hath removed [them] with his rough blast in the day of the east wind.</VERS>\r\n      <VERS vnumber=\"9\">Therefore by this shall the iniquity of Jacob be forgiven, and this is all the fruit of taking away his sin: that he maketh all the stones of the altar as chalkstones that are beaten in sunder, [so that] the Asherim and the sun-images shall rise no more.</VERS>\r\n      <VERS vnumber=\"10\">For the fortified city is solitary, a habitation deserted and forsaken, like the wilderness: there shall the calf feed, and there shall he lie down, and consume the branches thereof.</VERS>\r\n      <VERS vnumber=\"11\">When the boughs thereof are withered, they shall be broken off; the women shall come, and set them on fire; for it is a people of no understanding: therefore he that made them will not have compassion upon them, and he that formed them will show them no favor.</VERS>\r\n      <VERS vnumber=\"12\">And it shall come to pass in that day, that Jehovah will beat off [his fruit] from the flood of the River unto the brook of Egypt; and ye shall be gathered one by one, O ye children of Israel.</VERS>\r\n      <VERS vnumber=\"13\">And it shall come to pass in that day, that a great trumpet shall be blown; and they shall come that were ready to perish in the land of Assyria, and they that were outcasts in the land of Egypt; and they shall worship Jehovah in the holy mountain at Jerusalem.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"28\">\r\n      <VERS vnumber=\"1\">Woe to the crown of pride of the drunkards of Ephraim, and to the fading flower of his glorious beauty, which is on the head of the fat valley of them that are overcome with wine!</VERS>\r\n      <VERS vnumber=\"2\">Behold, the Lord hath a mighty and strong one; as a tempest of hail, a destroying storm, as a tempest of mighty waters overflowing, will he cast down to the earth with the hand.</VERS>\r\n      <VERS vnumber=\"3\">The crown of pride of the drunkards of Ephraim shall be trodden under foot:</VERS>\r\n      <VERS vnumber=\"4\">and the fading flower of his glorious beauty, which is on the head of the fat valley, shall be as the first-ripe fig before the summer; which when he that looketh upon it seeth, while it is yet in his hand he eateth it up.</VERS>\r\n      <VERS vnumber=\"5\">In that day will Jehovah of hosts become a crown of glory, and a diadem of beauty, unto the residue of his people;</VERS>\r\n      <VERS vnumber=\"6\">and a spirit of justice to him that sitteth in judgment, and strength to them that turn back the battle at the gate.</VERS>\r\n      <VERS vnumber=\"7\">And even these reel with wine, and stagger with strong drink; the priest and the prophet reel with strong drink, they are swallowed up of wine, they stagger with strong drink; they err in vision, they stumble in judgment.</VERS>\r\n      <VERS vnumber=\"8\">For all tables are full of vomit [and] filthiness, [so that there is] no place [clean].</VERS>\r\n      <VERS vnumber=\"9\">Whom will he teach knowledge? and whom will he make to understand the message? them that are weaned from the milk, and drawn from the breasts?</VERS>\r\n      <VERS vnumber=\"10\">For it is precept upon precept, precept upon precept; line upon line, line upon line; here a little, there a little.</VERS>\r\n      <VERS vnumber=\"11\">Nay, but by [men of] strange lips and with another tongue will he speak to this people;</VERS>\r\n      <VERS vnumber=\"12\">to whom he said, This is the rest, give ye rest to him that is weary; and this is the refreshing: yet they would not hear.</VERS>\r\n      <VERS vnumber=\"13\">Therefore shall the word of Jehovah be unto them precept upon precept, precept upon precept; line upon line, line upon line; here a little, there a little; that they may go, and fall backward, and be broken, and snared, and taken.</VERS>\r\n      <VERS vnumber=\"14\">Wherefore hear the word of Jehovah, ye scoffers, that rule this people that is in Jerusalem:</VERS>\r\n      <VERS vnumber=\"15\">Because ye have said, We have made a covenant with death, and with Sheol 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:</VERS>\r\n      <VERS vnumber=\"16\">therefore thus saith the Lord Jehovah, Behold, I lay in Zion for a foundation a stone, a tried stone, a precious corner -[stone] of sure foundation: he that believeth shall not be in haste.</VERS>\r\n      <VERS vnumber=\"17\">And I will make justice the line, and righteousness the plummet; and the hail shall sweep away the refuge of lies, and the waters shall overflow the hiding-place.</VERS>\r\n      <VERS vnumber=\"18\">And your covenant with death shall be annulled, and your agreement with Sheol shall not stand; when the overflowing scourge shall pass through, then ye shall be trodden down by it.</VERS>\r\n      <VERS vnumber=\"19\">As often as it passeth though, it shall take you; for morning by morning shall it pass through, by day and by night: and it shall be nought but terror to understand the message.</VERS>\r\n      <VERS vnumber=\"20\">For 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.</VERS>\r\n      <VERS vnumber=\"21\">For Jehovah will rise up as in mount Perazim, he will 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.</VERS>\r\n      <VERS vnumber=\"22\">Now therefore be ye not scoffers, lest your bonds be made strong; for a decree of destruction have I heard from the Lord, Jehovah of hosts, upon the whole earth.</VERS>\r\n      <VERS vnumber=\"23\">Give ye ear, and hear my voice; hearken, and hear my speech.</VERS>\r\n      <VERS vnumber=\"24\">Doth he that ploweth to sow plow continually? doth he [continually] open and harrow his ground?</VERS>\r\n      <VERS vnumber=\"25\">When he hath levelled the face thereof, doth he not cast abroad the fitches, and scatter the cummin, and put in the wheat in rows, and the barley in the appointed place, and the spelt in the border thereof?</VERS>\r\n      <VERS vnumber=\"26\">For his God doth instruct him aright, [and] doth teach him.</VERS>\r\n      <VERS vnumber=\"27\">For the fitches are not threshed with a sharp [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.</VERS>\r\n      <VERS vnumber=\"28\">Bread [grain] is ground; for he will not be always threshing it: and though the wheel of his cart and his horses scatter it, he doth not grind it.</VERS>\r\n      <VERS vnumber=\"29\">This also cometh forth from Jehovah of hosts, who is wonderful in counsel, and excellent in wisdom.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"29\">\r\n      <VERS vnumber=\"1\">Ho Ariel, Ariel, the city where David encamped! add ye year to year; let the feasts come round:</VERS>\r\n      <VERS vnumber=\"2\">then will I distress Ariel, and there shall be mourning and lamentation; and she shall be unto me as Ariel.</VERS>\r\n      <VERS vnumber=\"3\">And I will encamp against thee round about, and will lay siege against thee with posted troops, and I will raise siege works against thee.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">But the multitude of thy foes shall be like small dust, and the multitude of the terrible ones as chaff that passeth away: yea, it shall be in an instant suddenly.</VERS>\r\n      <VERS vnumber=\"6\">She shall be visited of Jehovah of hosts with thunder, and with earthquake, and great noise, with whirlwind and tempest, and the flame of a devouring fire.</VERS>\r\n      <VERS vnumber=\"7\">And the multitude of all the nations that fight against Ariel, even all that fight against her and her stronghold, and that distress her, shall be as a dream, a vision of the night.</VERS>\r\n      <VERS vnumber=\"8\">And it shall be as when a 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.</VERS>\r\n      <VERS vnumber=\"9\">Tarry ye and wonder; take your pleasure and be blind: they are drunken, but not with wine; they stagger, but not with strong drink.</VERS>\r\n      <VERS vnumber=\"10\">For Jehovah hath poured out upon you the spirit of deep sleep, and hath closed your eyes, the prophets; and your heads, the seers, hath he covered.</VERS>\r\n      <VERS vnumber=\"11\">And all vision 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:</VERS>\r\n      <VERS vnumber=\"12\">and the book is delivered to him that is not learned, saying, Read this, I pray thee; and he saith, I am not learned.</VERS>\r\n      <VERS vnumber=\"13\">And the Lord said, Forasmuch as this people draw nigh [unto me], and with their mouth and with their lips to honor me, but have removed their heart far from me, and their fear of me is a commandment of men which hath been taught [them];</VERS>\r\n      <VERS vnumber=\"14\">therefore, behold, I will proceed to do a marvellous work among this people, even a marvellous work and a wonder; and the wisdom of their wise men shall perish, and the understanding of their prudent men shall be hid.</VERS>\r\n      <VERS vnumber=\"15\">Woe unto them that hide deep their counsel from Jehovah, and whose works are in the dark, and that say, Who seeth us? and who knoweth us?</VERS>\r\n      <VERS vnumber=\"16\">Ye turn things upside down! Shall the potter be esteemed as clay; that the thing made should say of him that made it, He made me not; or the thing formed say of him that formed it, He hath no understanding?</VERS>\r\n      <VERS vnumber=\"17\">Is 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?</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">The meek also shall increase their joy in Jehovah, and the poor among men shall rejoice in the Holy One of Israel.</VERS>\r\n      <VERS vnumber=\"20\">For the terrible one is brought to nought, and the scoffer ceaseth, and all they that watch for iniquity are cut off;</VERS>\r\n      <VERS vnumber=\"21\">that make a man an offender in [his] cause, and lay a snare for him that reproveth in the gate, and turn aside the just with a thing of nought.</VERS>\r\n      <VERS vnumber=\"22\">Therefore thus saith Jehovah, who redeemed Abraham, concerning the house of Jacob: Jacob shall not now be ashamed, neither shall his face now wax pale.</VERS>\r\n      <VERS vnumber=\"23\">But when he seeth his children, the work of my hands, in the midst of him, they shall sanctify my name; yea, they shall sanctify the Holy One of Jacob, and shall stand in awe of the God of Israel.</VERS>\r\n      <VERS vnumber=\"24\">They also that err in spirit shall come to understanding, and they that murmur shall receive instruction.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"30\">\r\n      <VERS vnumber=\"1\">Woe to the rebellious children, saith Jehovah, that take counsel, but not of me; and that make a league, but not of my Spirit, that they may add sin to sin,</VERS>\r\n      <VERS vnumber=\"2\">that set out to go down into Egypt, and have not asked at my mouth; to strengthen themselves in the strength of Pharaoh, and to take refuge in the shadow of Egypt!</VERS>\r\n      <VERS vnumber=\"3\">Therefore shall the strength of Pharaoh be your shame, and the refuge in the shadow of Egypt your confusion.</VERS>\r\n      <VERS vnumber=\"4\">For their princes are at Zoan, and their ambassadors are come to Hanes.</VERS>\r\n      <VERS vnumber=\"5\">They shall all be ashamed because of a people that cannot profit them, that are not a help nor profit, but a shame, and also a reproach.</VERS>\r\n      <VERS vnumber=\"6\">The burden of the beasts of the South. Through the land of trouble and anguish, from whence come the lioness and the lion, the viper and fiery flying serpent, they carry their riches upon the shoulders of young asses, and their treasures upon the humps of camels, to a people that shall not profit [them].</VERS>\r\n      <VERS vnumber=\"7\">For Egypt helpeth in vain, and to no purpose: therefore have I called her Rahab that sitteth still.</VERS>\r\n      <VERS vnumber=\"8\">Now go, write it before them on a tablet, and inscribe it in a book, that it may be for the time to come for ever and ever.</VERS>\r\n      <VERS vnumber=\"9\">For it is a rebellious people, lying children, children that will not hear the law of Jehovah;</VERS>\r\n      <VERS vnumber=\"10\">that say to the seers, See not; and to the prophets, Prophesy not unto us right things, speak unto us smooth things, prophesy deceits,</VERS>\r\n      <VERS vnumber=\"11\">get you out of the way, turn aside out of the path, cause the Holy One of Israel to cease from before us.</VERS>\r\n      <VERS vnumber=\"12\">Wherefore thus saith the Holy One of Israel, Because ye despise this word, and trust in oppression and perverseness, and rely thereon;</VERS>\r\n      <VERS vnumber=\"13\">therefore this iniquity shall be to you as a breach ready to fall, swelling out in a high wall, whose breaking cometh suddenly in an instant.</VERS>\r\n      <VERS vnumber=\"14\">And he shall break it as a potter`s vessel is broken, breaking it in pieces without sparing; so that there shall not be found among the pieces thereof a sherd wherewith to take fire from the hearth, or to dip up water out of the cistern.</VERS>\r\n      <VERS vnumber=\"15\">For thus said the Lord Jehovah, 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:</VERS>\r\n      <VERS vnumber=\"16\">but 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.</VERS>\r\n      <VERS vnumber=\"17\">One thousand [shall flee] at the threat of one; at the threat of five shall ye flee: till ye be left as a beacon upon the top of a mountain, and as an ensign on a hill.</VERS>\r\n      <VERS vnumber=\"18\">And therefore will Jehovah wait, that he may be gracious unto you; and therefore will he be exalted, that he may have mercy upon you: for Jehovah is a God of justice; blessed are all they that wait for him.</VERS>\r\n      <VERS vnumber=\"19\">For the people shall dwell in Zion at Jerusalem; thou shalt weep no more; he will surely be gracious unto thee at the voice of thy cry; when he shall hear, he will answer thee.</VERS>\r\n      <VERS vnumber=\"20\">And though the Lord give you the bread of adversity and the water of affliction, yet shall not thy teachers be hidden anymore, but thine eyes shall see thy teachers;</VERS>\r\n      <VERS vnumber=\"21\">and 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.</VERS>\r\n      <VERS vnumber=\"22\">And ye shall defile the overlaying of thy graven images of silver, and the plating of thy molten images of gold: thou shalt cast them away as an unclean thing; thou shalt say unto it, Get thee hence.</VERS>\r\n      <VERS vnumber=\"23\">And he will give the rain for thy seed, wherewith thou shalt sow the ground; and bread of the increase of the ground, and it shall be fat and plenteous. In that day shall thy cattle feed in large pastures;</VERS>\r\n      <VERS vnumber=\"24\">the oxen likewise and the young asses that till the ground shall eat savory provender, which hath been winnowed with the shovel and with the fork.</VERS>\r\n      <VERS vnumber=\"25\">And there shall be upon every lofty mountain, and upon every high hill, brooks [and] streams of waters, in the day of the great slaughter, when the towers fall.</VERS>\r\n      <VERS vnumber=\"26\">Moreover 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 Jehovah bindeth up the hurt of his people, and healeth the stroke of their wound.</VERS>\r\n      <VERS vnumber=\"27\">Behold, the name of Jehovah cometh from far, burning with his anger, and in thick rising smoke: his lips are full of indignation, and his tongue is as a devouring fire;</VERS>\r\n      <VERS vnumber=\"28\">and his breath is as an overflowing stream, that reacheth even unto the neck, to sift the nations with the sieve of destruction: and a bridle that causeth to err [shall be] in the jaws of the peoples.</VERS>\r\n      <VERS vnumber=\"29\">Ye shall have a song as in the night when a holy feast is kept; and gladness of heart, as when one goeth with a pipe to come unto the mountain of Jehovah, to the Rock of Israel.</VERS>\r\n      <VERS vnumber=\"30\">And Jehovah will cause his glorious voice to be heard, and will show the lighting down of his arm, with the indignation of [his] anger, and the flame of a devouring fire, with a blast, and tempest, and hailstones.</VERS>\r\n      <VERS vnumber=\"31\">For through the voice of Jehovah shall the Assyrian be dismayed; with his rod will he smite [him].</VERS>\r\n      <VERS vnumber=\"32\">And every stroke of the appointed staff, which Jehovah shall lay upon him, shall be with [the sound of] tabrets and harps; and in battles with the brandishing [of his arm] will he fight with them.</VERS>\r\n      <VERS vnumber=\"33\">For a Topheth is prepared of old; yea, for the king it is made ready; he hath made it deep and large; the pile thereof is fire and much wood; the breath of Jehovah, like a stream of brimstone, doth kindle it.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"31\">\r\n      <VERS vnumber=\"1\">Woe to them that go down to Egypt for help, and rely 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 Jehovah!</VERS>\r\n      <VERS vnumber=\"2\">Yet he also is wise, and will bring evil, and will not call back his words, but will arise against the house of the evil-doers, and against the help of them that work iniquity.</VERS>\r\n      <VERS vnumber=\"3\">Now the Egyptians are men, and not God; and their horses flesh, and not spirit: and when Jehovah shall stretch out his hand, both he that helpeth shall stumble, and he that is helped shall fall, and they all shall be consumed together.</VERS>\r\n      <VERS vnumber=\"4\">For thus saith Jehovah unto me, As the lion and the young lion growling over his prey, if a multitude of shepherds be called forth against him, will not be dismayed at their voice, nor abase himself for the noise of them: so will Jehovah of hosts come down to fight upon mount Zion, and upon the hill thereof.</VERS>\r\n      <VERS vnumber=\"5\">As birds hovering, so will Jehovah of hosts protect Jerusalem; he will protect and deliver [it], he will pass over and preserve [it].</VERS>\r\n      <VERS vnumber=\"6\">Turn ye unto him from whom ye have deeply revolted, O children of Israel.</VERS>\r\n      <VERS vnumber=\"7\">For in that day they shall cast away every man his idols of silver, and his idols of gold, which your own hands have made unto you for a sin.</VERS>\r\n      <VERS vnumber=\"8\">And the Assyrian shall fall by the sword, not of man; and the sword, not of men, shall devour him; and he shall flee from the sword, and his young men shall become subject to taskwork.</VERS>\r\n      <VERS vnumber=\"9\">And his rock shall pass away by reason of terror, and his princes shall be dismayed at the ensign, saith Jehovah, whose fire is in Zion, and his furnace in Jerusalem.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"32\">\r\n      <VERS vnumber=\"1\">Behold, a king shall reign in righteousness, and princes shall rule in justice.</VERS>\r\n      <VERS vnumber=\"2\">And a man shall be as a hiding-place from the wind, and a covert from the tempest, as streams of water in a dry place, as the shade of a great rock in a weary land.</VERS>\r\n      <VERS vnumber=\"3\">And the eyes of them that see shall not be dim, and the ears of them that hear shall hearken.</VERS>\r\n      <VERS vnumber=\"4\">And the heart of the rash shall understand knowledge, and the tongue of the stammerers shall be ready to speak plainly.</VERS>\r\n      <VERS vnumber=\"5\">The fool shall be no more called noble, nor the churl said to be bountiful.</VERS>\r\n      <VERS vnumber=\"6\">For the fool will speak folly, and his heart will work iniquity, to practise profaneness, and to utter error against Jehovah, to make empty the soul of the hungry, and to cause the drink of the thirsty to fail.</VERS>\r\n      <VERS vnumber=\"7\">And the instruments of the churl are evil: he deviseth wicked devices to destroy the meek with lying words, even when the needy speaketh right.</VERS>\r\n      <VERS vnumber=\"8\">But the noble deviseth noble things; and in noble things shall he continue.</VERS>\r\n      <VERS vnumber=\"9\">Rise up, ye women that are at ease, [and] hear my voice; ye careless daughters, give ear unto my speech.</VERS>\r\n      <VERS vnumber=\"10\">For days beyond a year shall ye be troubled, ye careless women; for the vintage shall fail, the ingathering shall not come.</VERS>\r\n      <VERS vnumber=\"11\">Tremble, ye women that are at ease; be troubled, ye careless ones; strip you, and make you bare, and gird [sackcloth] upon your loins.</VERS>\r\n      <VERS vnumber=\"12\">They shall smite upon the breasts for the pleasant fields, for the fruitful vine.</VERS>\r\n      <VERS vnumber=\"13\">Upon the land of my people shall come up thorns and briers; yea, upon all the houses of joy in the joyous city.</VERS>\r\n      <VERS vnumber=\"14\">For the palace shall be forsaken; the populous city shall be deserted; the hill and the watch-tower shall be for dens for ever, a joy of wild asses, a pasture of flocks;</VERS>\r\n      <VERS vnumber=\"15\">until the Spirit be poured upon us from on high, and the wilderness become a fruitful field, and the fruitful field be esteemed as a forest.</VERS>\r\n      <VERS vnumber=\"16\">Then justice shall dwell in the wilderness; and righteousness shall abide in the fruitful field.</VERS>\r\n      <VERS vnumber=\"17\">And the work of righteousness shall be peace; and the effect of righteousness, quietness and confidence for ever.</VERS>\r\n      <VERS vnumber=\"18\">And my people shall abide in a peaceable habitation, and in safe dwellings, and in quiet resting-places.</VERS>\r\n      <VERS vnumber=\"19\">But it shall hail in the downfall of the forest; and the city shall be utterly laid low.</VERS>\r\n      <VERS vnumber=\"20\">Blessed are yet that sow beside all waters, that send forth the feet of the ox and the ass.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"33\">\r\n      <VERS vnumber=\"1\">Woe to thee that destroyest, and thou wast not destroyed; and dealest treacherously, and they dealt not treacherously with thee! When thou hast ceased to destroy, thou shalt be destroyed; and when thou hast made an end of dealing treacherously, they shall deal treacherously with thee.</VERS>\r\n      <VERS vnumber=\"2\">O Jehovah, be gracious unto us; we have waited for thee: be thou our arm every morning, our salvation also in the time of trouble.</VERS>\r\n      <VERS vnumber=\"3\">At the noise of the tumult the peoples are fled; at the lifting up of thyself the nations are scattered.</VERS>\r\n      <VERS vnumber=\"4\">And your spoil shall be gathered as the caterpillar gathereth: as locusts leap shall men leap upon it.</VERS>\r\n      <VERS vnumber=\"5\">Jehovah is exalted; for he dwelleth on high: he hath filled Zion with justice and righteousness.</VERS>\r\n      <VERS vnumber=\"6\">And there shall be stability in thy times, abundance of salvation, wisdom, and knowledge: the fear of Jehovah is thy treasure.</VERS>\r\n      <VERS vnumber=\"7\">Behold, their valiant ones cry without; the ambassadors of peace weep bitterly.</VERS>\r\n      <VERS vnumber=\"8\">The highways lie waste, the wayfaring man ceaseth: [the enemy] hath broken the covenant, he hath despised the cities, he regardeth not man.</VERS>\r\n      <VERS vnumber=\"9\">The land mourneth and languisheth; Lebanon is confounded and withereth away; Sharon is like a desert; and Bashan and Carmel shake off [their leaves].</VERS>\r\n      <VERS vnumber=\"10\">Now will I arise, saith Jehovah; now will I lift up myself; now will I be exalted.</VERS>\r\n      <VERS vnumber=\"11\">Ye shall conceive chaff, ye shall bring forth stubble: your breath is a fire that shall devour you.</VERS>\r\n      <VERS vnumber=\"12\">And the peoples shall be as the burnings of lime, as thorns cut down, that are burned in the fire.</VERS>\r\n      <VERS vnumber=\"13\">Hear, ye that are far off, what I have done; and, ye that are near, acknowledge my might.</VERS>\r\n      <VERS vnumber=\"14\">The sinners in Zion are afraid; trembling hath seized the godless ones: Who among us can dwell with the devouring fire? who among us can dwell with everlasting burnings?</VERS>\r\n      <VERS vnumber=\"15\">He that walketh righteously, and speaketh uprightly; he that despiseth the gain of oppressions, that shaketh his hands from taking a bribe, that stoppeth his ears from hearing of blood, and shutteth his eyes from looking upon evil:</VERS>\r\n      <VERS vnumber=\"16\">He shall dwell on high; his place of defence shall be the munitions of rocks; his bread shall be given [him]; his waters shall be sure.</VERS>\r\n      <VERS vnumber=\"17\">Thine eyes shall see the king in his beauty: they shall behold a land that reacheth afar.</VERS>\r\n      <VERS vnumber=\"18\">Thy heart shall muse on the terror: Where is he that counted, where is he that weighed [the tribute]? where is he that counted the towers?</VERS>\r\n      <VERS vnumber=\"19\">Thou shalt not see the fierce people, a people of a deep speech that thou canst not comprehend, of a strange tongue that thou canst not understand.</VERS>\r\n      <VERS vnumber=\"20\">Look upon Zion, the city of our solemnities: thine eyes shall see Jerusalem a quiet habitation, a tent that shall not be removed, the stakes whereof shall never be plucked up, neither shall any of the cords thereof be broken.</VERS>\r\n      <VERS vnumber=\"21\">But there Jehovah will be with us in majesty, a place of broad rivers and streams, wherein shall go no galley with oars, neither shall gallant ship pass thereby.</VERS>\r\n      <VERS vnumber=\"22\">For Jehovah is our judge, Jehovah is our lawgiver, Jehovah is our king; he will save us.</VERS>\r\n      <VERS vnumber=\"23\">Thy tacklings are loosed; they could not strengthen the foot of their mast, they could not spread the sail: then was the prey of a great spoil divided; the lame took the prey.</VERS>\r\n      <VERS vnumber=\"24\">And the inhabitant shall not say, I am sick: the people that dwell therein shall be forgiven their iniquity.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"34\">\r\n      <VERS vnumber=\"1\">Come near, ye nations, to hear; and hearken, ye peoples: let the earth hear, and the fulness thereof; the world, and all things that come forth from it.</VERS>\r\n      <VERS vnumber=\"2\">For Jehovah hath indignation against all the nations, and wrath against all their host: he hath utterly destroyed them, he hath delivered them to the slaughter.</VERS>\r\n      <VERS vnumber=\"3\">Their slain also shall be cast out, and the stench of their dead bodies shall come up; and the mountains shall be melted with their blood.</VERS>\r\n      <VERS vnumber=\"4\">And all the host of heaven shall be dissolved, and the heavens shall be rolled together as a scroll; and all their host shall fade away, as the leaf fadeth from off the vine, and as a fading [leaf] from the fig-tree.</VERS>\r\n      <VERS vnumber=\"5\">For my sword hath drunk its fill in heaven: behold, it shall come down upon Edom, and upon the people of my curse, to judgment.</VERS>\r\n      <VERS vnumber=\"6\">The sword of Jehovah is filled with blood, it is made fat with fatness, with the blood of lambs and goats, with the fat of the kidneys of rams; for Jehovah hath a sacrifice in Bozrah, and a great slaughter in the land of Edom.</VERS>\r\n      <VERS vnumber=\"7\">And the wild-oxen shall come down with them, and the bullocks with the bulls: and their land shall be drunken with blood, and their dust made fat with fatness.</VERS>\r\n      <VERS vnumber=\"8\">For Jehovah hath a day of vengeance, a year of recompense for the cause of Zion.</VERS>\r\n      <VERS vnumber=\"9\">And the streams of [Edom] shall be turned into pitch, and the dust thereof into brimstone, and the land thereof shall become burning pitch.</VERS>\r\n      <VERS vnumber=\"10\">It 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.</VERS>\r\n      <VERS vnumber=\"11\">But the pelican and the porcupine shall possess it; and the owl and the raven shall dwell therein: and he will stretch over it the line of confusion, and the plummet of emptiness.</VERS>\r\n      <VERS vnumber=\"12\">They shall call the nobles thereof to the kingdom, but none shall be there; and all its princes shall be nothing.</VERS>\r\n      <VERS vnumber=\"13\">And thorns shall come up in its palaces, nettles and thistles in the fortresses thereof; and it shall be a habitation of jackals, a court for ostriches.</VERS>\r\n      <VERS vnumber=\"14\">And the wild beasts of the desert shall meet with the wolves, and the wild goat shall cry to his fellow; yea, the night-monster shall settle there, and shall find her a place of rest.</VERS>\r\n      <VERS vnumber=\"15\">There shall the dart-snake make her nest, and lay, and hatch, and gather under her shade; yea, there shall the kites be gathered, every one with her mate.</VERS>\r\n      <VERS vnumber=\"16\">Seek ye out of the book of Jehovah, and read: no one of these shall be missing, none shall want her mate; for my mouth, it hath commanded, and his Spirit, it hath gathered them.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"35\">\r\n      <VERS vnumber=\"1\">The wilderness and the dry land shall be glad; and the desert shall rejoice, and blossom as the rose.</VERS>\r\n      <VERS vnumber=\"2\">It 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 Jehovah, the excellency of our God.</VERS>\r\n      <VERS vnumber=\"3\">Strengthen ye the weak hands, and confirm the feeble knees.</VERS>\r\n      <VERS vnumber=\"4\">Say to them that are of a fearful heart, Be strong, fear not: behold, your God will come [with] vengeance, [with] the recompense of God; he will come and save you.</VERS>\r\n      <VERS vnumber=\"5\">Then the eyes of the blind shall be opened, and the ears of the deaf shall be unstopped.</VERS>\r\n      <VERS vnumber=\"6\">Then shall the lame man leap as a hart, and the tongue of the dumb shall sing; for in the wilderness shall waters break out, and streams in the desert.</VERS>\r\n      <VERS vnumber=\"7\">And the glowing sand shall become a pool, and the thirsty ground springs of water: in the habitation of jackals, where they lay, shall be grass with reeds and rushes.</VERS>\r\n      <VERS vnumber=\"8\">And a highway shall be there, and a way, and it shall be called The way of holiness; the unclean shall not pass over it; but is shall be for [the redeemed]: the wayfaring men, yea fools, shall not err [therein].</VERS>\r\n      <VERS vnumber=\"9\">No lion shall be there, nor shall any ravenous beast go up thereon; they shall not be found there; but the redeemed shall walk [there]:</VERS>\r\n      <VERS vnumber=\"10\">and the ransomed of Jehovah shall return, and come with singing unto Zion; and everlasting joy shall be upon their heads: they shall obtain gladness and joy, and sorrow and sighing shall flee away.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"36\">\r\n      <VERS vnumber=\"1\">Now it came to pass in the fourteenth year of king Hezekiah, that Sennacherib king of Assyria came up against all the fortified cities of Judah, and took them.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">Then came forth unto him Eliakim the son of Hilkiah, who was over the household, and Shebna the scribe, and Joah, the son of Asaph, the recorder.</VERS>\r\n      <VERS vnumber=\"4\">And 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?</VERS>\r\n      <VERS vnumber=\"5\">I say, [thy] counsel and strength for the war are but vain words: now on whom dost thou trust, that thou hast rebelled against me?</VERS>\r\n      <VERS vnumber=\"6\">Behold, thou trustest upon the staff of this bruised reed, even upon 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 on him.</VERS>\r\n      <VERS vnumber=\"7\">But if thou say unto me, We trust in Jehovah our God: is not that he, whose high places and whose altars Hezekiah hath taken away, and hath said to Judah and to Jerusalem, Ye shall worship before this altar?</VERS>\r\n      <VERS vnumber=\"8\">Now therefore, I pray thee, give pledges 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.</VERS>\r\n      <VERS vnumber=\"9\">How then canst 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?</VERS>\r\n      <VERS vnumber=\"10\">And am I now come up without Jehovah against this land to destroy it? Jehovah said unto me, Go up against this land, and destroy it.</VERS>\r\n      <VERS vnumber=\"11\">Then 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.</VERS>\r\n      <VERS vnumber=\"12\">But 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, to eat their own dung, and to drink their own water with you?</VERS>\r\n      <VERS vnumber=\"13\">Then 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.</VERS>\r\n      <VERS vnumber=\"14\">Thus saith the king, Let not Hezekiah deceive you; for he will not be able to deliver you:</VERS>\r\n      <VERS vnumber=\"15\">neither let Hezekiah make you trust in Jehovah, saying, Jehovah will surely deliver us; this city shall not be given into the hand of the king of Assyria.</VERS>\r\n      <VERS vnumber=\"16\">Hearken not to Hezekiah: for thus saith the king of Assyria, Make your peace with me, 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;</VERS>\r\n      <VERS vnumber=\"17\">until I come and take you away to a land like your own land, a land of grain and new wine, a land of bread and vineyards.</VERS>\r\n      <VERS vnumber=\"18\">Beware lest Hezekiah persuade you, saying, Jehovah will deliver us. Hath any of the gods of the nations delivered his land out of the hand of the king of Assyria?</VERS>\r\n      <VERS vnumber=\"19\">Where are the gods of Hamath and Arpad? where are the gods of Sepharvaim? and have they delivered Samaria out of my hand?</VERS>\r\n      <VERS vnumber=\"20\">Who are they among all the gods of these countries, that have delivered their country out of my hand, that Jehovah should deliver Jerusalem out of my hand?</VERS>\r\n      <VERS vnumber=\"21\">But they held their peace, and answered him not a word; for the king`s commandment was, saying, Answer him not.</VERS>\r\n      <VERS vnumber=\"22\">Then 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"37\">\r\n      <VERS vnumber=\"1\">And 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 Jehovah.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And they said unto him, Thus saith Hezekiah, This day is a day of trouble, and of rebuke, and of contumely; for the children are come to the birth, and there is not strength to bring forth.</VERS>\r\n      <VERS vnumber=\"4\">It may be Jehovah thy God will hear the words of Rabshakeh, whom the king of Assyria his master hath sent to defy the living God, and will rebuke the words which Jehovah thy God hath heard: wherefore lift up thy prayer for the remnant that is left.</VERS>\r\n      <VERS vnumber=\"5\">So the servants of king Hezekiah came to Isaiah.</VERS>\r\n      <VERS vnumber=\"6\">And Isaiah said unto them, Thus shall ye say to your master, Thus saith Jehovah, Be not afraid of the words that thou hast heard, wherewith the servants of the king of Assyria have blasphemed me.</VERS>\r\n      <VERS vnumber=\"7\">Behold, I will put a spirit in him, and he shall hear tidings, and shall return unto his own land; and I will cause him to fall by the sword in his own land.</VERS>\r\n      <VERS vnumber=\"8\">So Rabshakeh returned, and found the king of Assyria warring against Libnah; for he had heard that he was departed from Lachish.</VERS>\r\n      <VERS vnumber=\"9\">And he heard say concerning Tirhakah king of Ethiopia, He is come out to fight against thee. And when he heard it, he sent messengers to Hezekiah, saying,</VERS>\r\n      <VERS vnumber=\"10\">Thus 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.</VERS>\r\n      <VERS vnumber=\"11\">Behold, thou hast heard what the kings of Assyria have done to all lands, by destroying them utterly: and shalt thou be delivered?</VERS>\r\n      <VERS vnumber=\"12\">Have the gods of the nations delivered them, which my fathers have destroyed, Gozan, and Haran, and Rezeph, and the children of Eden that were in Telassar?</VERS>\r\n      <VERS vnumber=\"13\">Where is the king of Hamath, and the king of Arpad, and the king of the city of Sepharvaim, of Hena, and Ivvah?</VERS>\r\n      <VERS vnumber=\"14\">And Hezekiah received the letter from the hand of the messengers, and read it; and Hezekiah went up unto the house of Jehovah, and spread it before Jehovah.</VERS>\r\n      <VERS vnumber=\"15\">And Hezekiah prayed unto Jehovah, saying,</VERS>\r\n      <VERS vnumber=\"16\">O Jehovah of hosts, the God of Israel, that sittest [above] the cherubim, thou art the God, even thou alone, of all the kingdoms of the earth; thou hast made heaven and earth.</VERS>\r\n      <VERS vnumber=\"17\">Incline thine ear, O Jehovah, and hear; open thine eyes, O Jehovah, and see; and hear all the words of Sennacherib, who hath sent to defy the living God.</VERS>\r\n      <VERS vnumber=\"18\">Of a truth, Jehovah, the kings of Assyria have laid waste all the countries, and their land,</VERS>\r\n      <VERS vnumber=\"19\">and 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.</VERS>\r\n      <VERS vnumber=\"20\">Now therefore, O Jehovah our God, save us from his hand, that all the kingdoms of the earth may know that thou art Jehovah, even thou only.</VERS>\r\n      <VERS vnumber=\"21\">Then Isaiah the son of Amoz sent unto Hezekiah, saying, Thus saith Jehovah, the God of Israel, Whereas thou hast prayed to me against Sennacherib king of Assyria,</VERS>\r\n      <VERS vnumber=\"22\">this is the word which Jehovah hath spoken concerning him: The virgin daughter of Zion hath despised thee and laughed thee to scorn; the daughter of Jerusalem hath shaken her head at thee.</VERS>\r\n      <VERS vnumber=\"23\">Whom hast thou defied and blasphemed? and against whom hast thou exalted thy voice and lifted up thine eyes on high? [even] against the Holy One of Israel.</VERS>\r\n      <VERS vnumber=\"24\">By thy servants hast thou defied the Lord, and hast said, With the multitude of my chariots am I come up to the height of the mountains, to the innermost parts of Lebanon; and I will cut down the tall cedars thereof, and the choice fir-trees thereof; and I will enter into its farthest height, the forest of its fruitful field;</VERS>\r\n      <VERS vnumber=\"25\">I have digged and drunk water, and with the sole of my feet will I dry up all the rivers of Egypt.</VERS>\r\n      <VERS vnumber=\"26\">Hast thou not heard how I have done it long ago, and formed it of ancient times? now have I brought it to pass, that it should be thine to lay waste fortified cities into ruinous heaps.</VERS>\r\n      <VERS vnumber=\"27\">Therefore 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 a field [of grain] before it is grown up.</VERS>\r\n      <VERS vnumber=\"28\">But I know thy sitting down, and thy going out, and thy coming in, and thy raging against me.</VERS>\r\n      <VERS vnumber=\"29\">Because of thy raging against me, and because thine arrogancy 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.</VERS>\r\n      <VERS vnumber=\"30\">And this shall be the sign unto thee: ye shall eat this year that which groweth of itself, and in 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.</VERS>\r\n      <VERS vnumber=\"31\">And the remnant that is escaped of the house of Judah shall again take root downward, and bear fruit upward.</VERS>\r\n      <VERS vnumber=\"32\">For out of Jerusalem shall go forth a remnant, and out of mount Zion they that shall escape. The zeal of Jehovah of hosts will perform this.</VERS>\r\n      <VERS vnumber=\"33\">Therefore thus saith Jehovah concerning the king of Assyria, He shall not come unto this city, nor shoot an arrow there, neither shall he come before it with shield, nor cast up a mound against it.</VERS>\r\n      <VERS vnumber=\"34\">By the way that he came, by the same shall he return, and he shall not come unto this city, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"35\">For I will defend this city to save it, for mine own sake, and for my servant David`s sake.</VERS>\r\n      <VERS vnumber=\"36\">And the angel of Jehovah went forth, and smote in the camp of the Assyrians a hundred and fourscore and five thousand; and when men arose early in the morning, behold, these were all dead bodies.</VERS>\r\n      <VERS vnumber=\"37\">So Sennacherib king of Assyria departed, and went and returned, and dwelt at Nineveh.</VERS>\r\n      <VERS vnumber=\"38\">And 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 Ararat. And Esar-haddon his son reigned in his stead.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"38\">\r\n      <VERS vnumber=\"1\">In those days was Hezekiah sick unto death. And Isaiah the prophet the son of Amoz came to him, and said unto him, Thus saith Jehovah, Set thy house in order; for thou shalt die, and not live.</VERS>\r\n      <VERS vnumber=\"2\">Then Hezekiah turned his face to the wall, and prayed unto Jehovah,</VERS>\r\n      <VERS vnumber=\"3\">and said, Remember now, O Jehovah, 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.</VERS>\r\n      <VERS vnumber=\"4\">Then came the word of Jehovah to Isaiah, saying,</VERS>\r\n      <VERS vnumber=\"5\">Go, and say to Hezekiah, Thus saith Jehovah, 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.</VERS>\r\n      <VERS vnumber=\"6\">And I will deliver thee and this city out of the hand of the king of Assyria; and I will defend this city.</VERS>\r\n      <VERS vnumber=\"7\">And this shall be the sign unto thee from Jehovah, that Jehovah will do this thing that he hath spoken:</VERS>\r\n      <VERS vnumber=\"8\">behold, I will cause the shadow on the steps, which is gone down on the dial of Ahaz with the sun, to return backward ten steps. So the sun returned ten steps on the dial whereon it was gone down.</VERS>\r\n      <VERS vnumber=\"9\">The writing of Hezekiah king of Judah, when he had been sick, and was recovered of his sickness.</VERS>\r\n      <VERS vnumber=\"10\">I said, In the noontide of my days I shall go into the       gates of Sheol: I am deprived of the residue of my years.</VERS>\r\n      <VERS vnumber=\"11\">I said, I shall not see Jehovah, [even] Jehovah in the       land of the living: I shall behold man no more with the inhabitants of the world.</VERS>\r\n      <VERS vnumber=\"12\">My dwelling is removed, and is carried away from me as a       shepherd`s tent: I have rolled up, like a weaver, my life; he will cut me off       from the loom: From day even to night wilt thou make an end of me.</VERS>\r\n      <VERS vnumber=\"13\">I quieted [myself] until morning; as a lion, so he       breaketh all my bones: From day even to night wilt thou make an end of me.</VERS>\r\n      <VERS vnumber=\"14\">Like a swallow [or] a crane, so did I chatter; I did moan as a dove; mine eyes fail [with looking] upward: O Lord, I am oppressed, be thou my surety.</VERS>\r\n      <VERS vnumber=\"15\">What shall I say? he hath both spoken unto me, and       himself hath done it: I shall go softly all my years because of the bitterness of my       soul.</VERS>\r\n      <VERS vnumber=\"16\">O Lord, by these things men live; And wholly therein is the life of my spirit: Wherefore recover thou me, and make me to live.</VERS>\r\n      <VERS vnumber=\"17\">Behold, [it was] for [my] peace [that] 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.</VERS>\r\n      <VERS vnumber=\"18\">For Sheol cannot praise thee, death cannot celebrate       thee: They that go down into the pit cannot hope for thy truth.</VERS>\r\n      <VERS vnumber=\"19\">The living, the living, he shall praise thee, as I do       this day: The father to the children shall make known thy truth.</VERS>\r\n      <VERS vnumber=\"20\">Jehovah is [ready] to save me: Therefore we will sing my songs with stringed instruments All the days of our life in the house of Jehovah.</VERS>\r\n      <VERS vnumber=\"21\">Now Isaiah had said, Let them take a cake of figs, and lay it for a plaster upon the boil, and he shall recover.</VERS>\r\n      <VERS vnumber=\"22\">Hezekiah also had said, What is the sign that I shall go up to the house of Jehovah?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"39\">\r\n      <VERS vnumber=\"1\">At that time Merodach-baladan the son of Baladan, king of Babylon, sent letters and a present to Hezekiah; for he heard that he had been sick, and was recovered.</VERS>\r\n      <VERS vnumber=\"2\">And Hezekiah was glad of them, and showed them the house of his precious things, the silver, and the gold, and the spices, and the precious oil, and all the house of his armor, and all that was found in his treasures: there was nothing in his house, nor in all his dominion, that Hezekiah showed them not.</VERS>\r\n      <VERS vnumber=\"3\">Then 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.</VERS>\r\n      <VERS vnumber=\"4\">Then said he, What have they seen in thy house? And Hezekiah answered, All that is in my house have they seen: there is nothing among my treasures that I have not showed them.</VERS>\r\n      <VERS vnumber=\"5\">Then said Isaiah to Hezekiah, Hear the word of Jehovah of hosts:</VERS>\r\n      <VERS vnumber=\"6\">Behold, the days are coming, when all that is in thy house, and that which thy fathers have laid up in store until this day, shall be carried to Babylon: nothing shall be left, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"7\">And of thy sons that shall issue from thee, whom thou shalt beget, shall they take away; and they shall be eunuchs in the palace of the king of Babylon.</VERS>\r\n      <VERS vnumber=\"8\">Then said Hezekiah unto Isaiah, Good is the word of Jehovah which thou hast spoken. He said moreover, For there shall be peace and truth in my days.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"40\">\r\n      <VERS vnumber=\"1\">Comfort ye, comfort ye my people, saith your God.</VERS>\r\n      <VERS vnumber=\"2\">Speak ye comfortably to Jerusalem; and cry unto her, that her warfare is accomplished, that her iniquity is pardoned, that she hath received of Jehovah`s hand double for all her sins.</VERS>\r\n      <VERS vnumber=\"3\">The voice of one that crieth, Prepare ye in the wilderness the way of Jehovah; make level in the desert a highway for our God.</VERS>\r\n      <VERS vnumber=\"4\">Every valley shall be exalted, and every mountain and hill shall be made low; and the uneven shall be made level, and the rough places a plain:</VERS>\r\n      <VERS vnumber=\"5\">and the glory of Jehovah shall be revealed, and all flesh shall see it together; for the mouth of Jehovah hath spoken it.</VERS>\r\n      <VERS vnumber=\"6\">The voice of one saying, Cry. And one said, What shall I cry? All flesh is grass, and all the goodliness thereof is as the flower of the field.</VERS>\r\n      <VERS vnumber=\"7\">The grass withereth, the flower fadeth, because the breath of Jehovah bloweth upon it; surely the people is grass.</VERS>\r\n      <VERS vnumber=\"8\">The grass withereth, the flower fadeth; but the word of our God shall stand forever.</VERS>\r\n      <VERS vnumber=\"9\">O thou that tellest good tidings to Zion, get thee up on a high mountain; O thou that tellest good tidings to Jerusalem, lift up thy voice with strength; lift it up, be not afraid; say unto the cities of Judah, Behold, your God!</VERS>\r\n      <VERS vnumber=\"10\">Behold, the Lord Jehovah will come as a mighty one, and his arm will rule for him: Behold, his reward is with him, and his recompense before him.</VERS>\r\n      <VERS vnumber=\"11\">He will feed his flock like a shepherd, he will gather the lambs in his arm, and carry them in his bosom, [and] will gently lead those that have their young.</VERS>\r\n      <VERS vnumber=\"12\">Who 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?</VERS>\r\n      <VERS vnumber=\"13\">Who hath directed the Spirit of Jehovah, or being his counsellor hath taught him?</VERS>\r\n      <VERS vnumber=\"14\">With whom took he counsel, and who instructed him, and taught him in the path of justice, and taught him knowledge, and showed to him the way of understanding?</VERS>\r\n      <VERS vnumber=\"15\">Behold, the nations are as a drop of a bucket, and are accounted as the small dust of the balance: Behold, he taketh up the isles as a very little thing.</VERS>\r\n      <VERS vnumber=\"16\">And Lebanon is not sufficient to burn, nor the beasts thereof sufficient for a burnt-offering.</VERS>\r\n      <VERS vnumber=\"17\">All the nations are as nothing before him; they are accounted by him as less than nothing, and vanity.</VERS>\r\n      <VERS vnumber=\"18\">To whom then will ye liken God? or what likeness will ye compare unto him?</VERS>\r\n      <VERS vnumber=\"19\">The image, a workman hath cast [it], and the goldsmith overlayeth it with gold, and casteth [for it] silver chains.</VERS>\r\n      <VERS vnumber=\"20\">He that is too impoverished for [such] an oblation chooseth a tree that will not rot; he seeketh unto him a skilful workman to set up a graven image, that shall not be moved.</VERS>\r\n      <VERS vnumber=\"21\">Have ye not known? have yet not heard? hath it not been told you from the beginning? have ye not understood from the foundations of the earth?</VERS>\r\n      <VERS vnumber=\"22\">[It is] he that sitteth above 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;</VERS>\r\n      <VERS vnumber=\"23\">that bringeth princes to nothing; that maketh the judges of the earth as vanity.</VERS>\r\n      <VERS vnumber=\"24\">Yea, they have not been planted; yea, they have not been sown; yea, their stock hath not taken root in the earth: moreover he bloweth upon them, and they wither, and the whirlwind taketh them away as stubble.</VERS>\r\n      <VERS vnumber=\"25\">To whom then will ye liken me, that I should be equal [to him]? saith the Holy One.</VERS>\r\n      <VERS vnumber=\"26\">Lift up your eyes on high, and see who hath created these, that bringeth out their host by number; he calleth them all by name; by the greatness of his might, and for that he is strong in power, not one is lacking.</VERS>\r\n      <VERS vnumber=\"27\">Why sayest thou, O Jacob, and speakest, O Israel, My way is hid from Jehovah, and the justice [due] to me is passed away from my God?</VERS>\r\n      <VERS vnumber=\"28\">Hast thou not known? hast thou not heard? The everlasting God, Jehovah, the Creator of the ends of the earth, fainteth not, neither is weary; there is no searching of his understanding.</VERS>\r\n      <VERS vnumber=\"29\">He giveth power to the faint; and to him that hath no might he increaseth strength.</VERS>\r\n      <VERS vnumber=\"30\">Even the youths shall faint and be weary, and the young men shall utterly fall:</VERS>\r\n      <VERS vnumber=\"31\">but they that wait for Jehovah shall renew their strength; they shall mount up with wings as eagles; they shall run, and not be weary; they shall walk, and not faint.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"41\">\r\n      <VERS vnumber=\"1\">Keep silence before me, O islands; and let the peoples renew their strength: let them come near; then let them speak; let us come near together to judgment.</VERS>\r\n      <VERS vnumber=\"2\">Who hath raised up one from the east, whom he calleth in righteousness to his foot? he giveth nations before him, and maketh him rule over kings; he giveth them as the dust to his sword, as the driven stubble to his bow.</VERS>\r\n      <VERS vnumber=\"3\">He pursueth them, and passeth on safely, even by a way that he had not gone with his feet.</VERS>\r\n      <VERS vnumber=\"4\">Who hath wrought and done it, calling the generations from the beginning? I, Jehovah, the first, and with the last, I am he.</VERS>\r\n      <VERS vnumber=\"5\">The isles have seen, and fear; the ends of the earth tremble; they draw near, and come.</VERS>\r\n      <VERS vnumber=\"6\">They help every one his neighbor; and [every one] saith to his brother, Be of good courage.</VERS>\r\n      <VERS vnumber=\"7\">So the carpenter encourageth the goldsmith, [and] he that smootheth with the hammer him that smiteth the anvil, saying of the soldering, It is good; and he fasteneth it with nails, that is should not be moved.</VERS>\r\n      <VERS vnumber=\"8\">But thou, Israel, my servant, Jacob whom I have chosen, the seed of Abraham my friend,</VERS>\r\n      <VERS vnumber=\"9\">thou whom I have taken hold of from the ends of the earth, and called from the corners thereof, and said unto thee, Thou art my servant, I have chosen thee and not cast thee away;</VERS>\r\n      <VERS vnumber=\"10\">Fear 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.</VERS>\r\n      <VERS vnumber=\"11\">Behold, all they that are incensed against thee shall be put to shame and confounded: they that strive with thee shall be as nothing, and shall perish.</VERS>\r\n      <VERS vnumber=\"12\">Thou shalt seek them, and shalt not find them, even them that contend with thee: they that war against thee shall be as nothing, and as a thing of nought.</VERS>\r\n      <VERS vnumber=\"13\">For I, Jehovah thy God, will hold thy right hand, saying unto thee, Fear not; I will help thee.</VERS>\r\n      <VERS vnumber=\"14\">Fear not, thou worm Jacob, and ye men of Israel; I will help thee, saith Jehovah, and thy Redeemer is the Holy One of Israel.</VERS>\r\n      <VERS vnumber=\"15\">Behold, I have made thee [to be] a new sharp threshing instrument having teeth; thou shalt thresh the mountains, and beat them small, and shalt make the hills as chaff.</VERS>\r\n      <VERS vnumber=\"16\">Thou shalt winnow them, and the wind shall carry them away, and the whirlwind shall scatter them; and thou shalt rejoice in Jehovah, thou shalt glory in the Holy One of Israel.</VERS>\r\n      <VERS vnumber=\"17\">The poor and needy seek water, and there is none, and their tongue faileth for thirst; I, Jehovah, will answer them, I, the God of Israel, will not forsake them.</VERS>\r\n      <VERS vnumber=\"18\">I will open rivers on the bare heights, and fountains in the midst of the valleys; I will make the wilderness a pool of water, and the dry land springs of water.</VERS>\r\n      <VERS vnumber=\"19\">I will put in the wilderness the cedar, the acacia, and the myrtle, and the oil-tree; I will set in the desert the fir-tree, the pine, and the box-tree together:</VERS>\r\n      <VERS vnumber=\"20\">that they may see, and know, and consider, and understand together, that the hand of Jehovah hath done this, and the Holy One of Israel hath created it.</VERS>\r\n      <VERS vnumber=\"21\">Produce your cause, saith Jehovah; bring forth your strong reasons, saith the King of Jacob.</VERS>\r\n      <VERS vnumber=\"22\">Let them bring forth, and declare unto us what shall happen: declare ye the former things, what they are, that we may consider them, and know the latter end of them; or show us things to come.</VERS>\r\n      <VERS vnumber=\"23\">Declare 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.</VERS>\r\n      <VERS vnumber=\"24\">Behold, ye are of nothing, and your work is of nought; an abomination is he that chooseth you.</VERS>\r\n      <VERS vnumber=\"25\">I have raised up one from the north, and he is come; from the rising of the sun one that calleth upon my name: and he shall come upon rulers as upon mortar, and as the potter treadeth clay.</VERS>\r\n      <VERS vnumber=\"26\">Who hath declared it from the beginning, that we may know? and beforetime, that we may say, [He is] right? yea, there is none that declareth, yea, there is none that showeth, yea, there is none that heareth your words.</VERS>\r\n      <VERS vnumber=\"27\">[I am the] first [that saith] unto Zion, Behold, behold them; and I will give to Jerusalem one that bringeth good tidings.</VERS>\r\n      <VERS vnumber=\"28\">And when I look, there is no man: even among them there is no counsellor, that, when I ask of them, can answer a word.</VERS>\r\n      <VERS vnumber=\"29\">Behold, all of them, their works are vanity [and] nought; their molten images are wind and confusion.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"42\">\r\n      <VERS vnumber=\"1\">Behold, my servant, whom I uphold; my chosen, in whom my soul delighteth: I have put my Spirit upon him; he will bring forth justice to the Gentiles.</VERS>\r\n      <VERS vnumber=\"2\">He will not cry, nor lift up his voice, nor cause it to be heard in the street.</VERS>\r\n      <VERS vnumber=\"3\">A bruised reed will he not break, and a dimly burning wick will he not quench: he will bring forth justice in truth.</VERS>\r\n      <VERS vnumber=\"4\">He will not fail nor be discouraged, till he have set justice in the earth; and the isles shall wait for his law.</VERS>\r\n      <VERS vnumber=\"5\">Thus saith God Jehovah, he that created the heavens, and stretched them forth; he that spread abroad 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:</VERS>\r\n      <VERS vnumber=\"6\">I, Jehovah, have called thee in righteousness, and will hold thy hand, and will keep thee, and give thee for a covenant of the people, for a light of the Gentiles;</VERS>\r\n      <VERS vnumber=\"7\">to open the blind eyes, to bring out the prisoners from the dungeon, and them that sit in darkness out of the prison-house.</VERS>\r\n      <VERS vnumber=\"8\">I am Jehovah, that is my name; and my glory will I not give to another, neither my praise unto graven images.</VERS>\r\n      <VERS vnumber=\"9\">Behold, the former things are come to pass, and new things do I declare; before they spring forth I tell you of them.</VERS>\r\n      <VERS vnumber=\"10\">Sing unto Jehovah 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.</VERS>\r\n      <VERS vnumber=\"11\">Let the wilderness and the cities thereof lift up [their voice], the villages that Kedar doth inhabit; let the inhabitants of Sela sing, let them shout from the top of the mountains.</VERS>\r\n      <VERS vnumber=\"12\">Let them give glory unto Jehovah, and declare his praise in the islands.</VERS>\r\n      <VERS vnumber=\"13\">Jehovah will go forth as a mighty man; he will stir up [his] zeal like a man of war: he will cry, yea, he will shout aloud; he will do mightily against his enemies.</VERS>\r\n      <VERS vnumber=\"14\">I have long time holden my peace; I have been still, and refrained myself: [now] will I cry out like a travailing woman; I will gasp and pant together.</VERS>\r\n      <VERS vnumber=\"15\">I will lay waste mountains and hills, and dry up all their herbs; and I will make the rivers islands, and will dry up the pools.</VERS>\r\n      <VERS vnumber=\"16\">And I will bring the blind by a way that they know not; in paths that they know not will I lead them; I will make darkness light before them, and crooked places straight. These things will I do, and I will not forsake them.</VERS>\r\n      <VERS vnumber=\"17\">They shall be turned back, they shall be utterly put to shame, that trust in graven images, that say unto molten images, Ye are our gods.</VERS>\r\n      <VERS vnumber=\"18\">Hear, ye deaf; and look, ye blind, that ye may see.</VERS>\r\n      <VERS vnumber=\"19\">Who is blind, but my servant? or deaf, as my messenger that I send? who is blind as he that is at peace [with me], and blind as Jehovah`s servant?</VERS>\r\n      <VERS vnumber=\"20\">Thou seest many things, but thou observest not; his ears are open, but he heareth not.</VERS>\r\n      <VERS vnumber=\"21\">It pleased Jehovah, for his righteousness` sake, to magnify the law, and make it honorable.</VERS>\r\n      <VERS vnumber=\"22\">But this is a people robbed and plundered; 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.</VERS>\r\n      <VERS vnumber=\"23\">Who is there among you that will give ear to this? that will hearken and hear for the time to come?</VERS>\r\n      <VERS vnumber=\"24\">Who gave Jacob for a spoil, and Israel to the robbers? did not Jehovah? he against whom we have sinned, and in whose ways they would not walk, neither were they obedient unto his law.</VERS>\r\n      <VERS vnumber=\"25\">Therefore he poured upon him the fierceness of his anger, and the strength of battle; and it set him on fire round about, yet he knew not; and it burned him, yet he laid it not to heart.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"43\">\r\n      <VERS vnumber=\"1\">But now thus saith Jehovah 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.</VERS>\r\n      <VERS vnumber=\"2\">When 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.</VERS>\r\n      <VERS vnumber=\"3\">For I am Jehovah thy God, the Holy One of Israel, thy Saviour; I have given Egypt as thy ransom, Ethiopia and Seba in thy stead.</VERS>\r\n      <VERS vnumber=\"4\">Since thou hast been precious in my sight, [and] honorable, and I have loved thee; therefore will I give men in thy stead, and peoples instead of thy life.</VERS>\r\n      <VERS vnumber=\"5\">Fear not; for I am with thee: I will bring thy seed from the east, and gather thee from the west;</VERS>\r\n      <VERS vnumber=\"6\">I will say to the north, Give up; and to the south, Keep not back; bring my sons from far, and my daughters from the end of the earth;</VERS>\r\n      <VERS vnumber=\"7\">every one that is called by my name, and whom I have created for my glory, whom I have formed, yea, whom I have made.</VERS>\r\n      <VERS vnumber=\"8\">Bring forth the blind people that have eyes, and the deaf that have ears.</VERS>\r\n      <VERS vnumber=\"9\">Let all the nations be gathered together, and let the peoples be assembled: who among them can declare this, and show us former things? let them bring their witnesses, that they may be justified; or let them hear, and say, It is truth.</VERS>\r\n      <VERS vnumber=\"10\">Ye are my witnesses, saith Jehovah, 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.</VERS>\r\n      <VERS vnumber=\"11\">I, even I, am Jehovah; and besides me there is no saviour.</VERS>\r\n      <VERS vnumber=\"12\">I have declared, and I have saved, and I have showed; and there was no strange [god] among you: therefore ye are my witnesses, saith Jehovah, and I am God.</VERS>\r\n      <VERS vnumber=\"13\">Yea, since the day was I am he; and there is none that can deliver out of my hand: I will work, and who can hinder it?</VERS>\r\n      <VERS vnumber=\"14\">Thus saith Jehovah, your Redeemer, the Holy One of Israel: For your sake I have sent to Babylon, and I will bring down all of them as fugitives, even the Chaldeans, in the ships of their rejoicing.</VERS>\r\n      <VERS vnumber=\"15\">I am Jehovah, your Holy One, the Creator of Israel, your King.</VERS>\r\n      <VERS vnumber=\"16\">Thus saith Jehovah, who maketh a way in the sea, and a path in the mighty waters;</VERS>\r\n      <VERS vnumber=\"17\">who bringeth forth the chariot and horse, the army and the mighty man (they lie down together, they shall not rise; they are extinct, they are quenched as a wick):</VERS>\r\n      <VERS vnumber=\"18\">Remember ye not the former things, neither consider the things of old.</VERS>\r\n      <VERS vnumber=\"19\">Behold, I will do a new thing; now shall it spring forth; shall ye not know it? I will even make a way in the wilderness, and rivers in the desert.</VERS>\r\n      <VERS vnumber=\"20\">The beasts of the field shall honor me, the jackals and the ostriches; because I give waters in the wilderness, and rivers in the desert, to give drink to my people, my chosen,</VERS>\r\n      <VERS vnumber=\"21\">the people which I formed for myself, that they might set forth my praise.</VERS>\r\n      <VERS vnumber=\"22\">Yet thou hast not called upon me, O Jacob; but thou hast been weary of me, O Israel.</VERS>\r\n      <VERS vnumber=\"23\">Thou hast not brought me of thy sheep for burnt-offerings; neither hast thou honored me with thy sacrifices. I have not burdened thee with offerings, nor wearied thee with frankincense.</VERS>\r\n      <VERS vnumber=\"24\">Thou hast bought me no sweet cane with money, neither hast thou filled me with the fat of thy sacrifices; but thou hast burdened me with thy sins, thou hast wearied me with thine iniquities.</VERS>\r\n      <VERS vnumber=\"25\">I, even I, am he that blotteth out thy transgressions for mine own sake; and I will not remember thy sins.</VERS>\r\n      <VERS vnumber=\"26\">Put me in remembrance; let us plead together: set thou forth [thy cause], that thou mayest be justified.</VERS>\r\n      <VERS vnumber=\"27\">Thy first father sinned, and thy teachers have transgressed against me.</VERS>\r\n      <VERS vnumber=\"28\">Therefore I will profane the princes of the sanctuary; and I will make Jacob a curse, and Israel a reviling.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"44\">\r\n      <VERS vnumber=\"1\">Yet now hear, O Jacob my servant, and Israel, who I have chosen:</VERS>\r\n      <VERS vnumber=\"2\">Thus saith Jehovah that made thee, and formed thee from the womb, who will help thee: Fear not, O Jacob my servant; and thou, Jeshurun, whom I have chosen.</VERS>\r\n      <VERS vnumber=\"3\">For I will pour water upon him that is thirsty, and streams upon the dry ground; I will pour my Spirit upon thy seed, and my blessing upon thine offspring:</VERS>\r\n      <VERS vnumber=\"4\">and they shall spring up among the grass, as willows by the watercourses.</VERS>\r\n      <VERS vnumber=\"5\">One shall say, I am Jehovah`s; and another shall call [himself] by the name of Jacob; and another shall subscribe with his hand unto Jehovah, and surname [himself] by the name of Israel.</VERS>\r\n      <VERS vnumber=\"6\">Thus saith Jehovah, the King of Israel, and his Redeemer, Jehovah of hosts: I am the first, and I am the last; and besides me there is no God.</VERS>\r\n      <VERS vnumber=\"7\">And who, as I, shall call, and shall declare it, and set it in order for me, since I established the ancient people? and the things that are coming, and that shall come to pass, let them declare.</VERS>\r\n      <VERS vnumber=\"8\">Fear ye not, neither be afraid: have I not declared unto thee of old, and showed it? and ye are my witnesses. Is there a God besides me? yea, there is no Rock; I know not any.</VERS>\r\n      <VERS vnumber=\"9\">They that fashion a graven image are all of them vanity; and the things that they delight in shall not profit; and their own witnesses see not, nor know: that they may be put to shame.</VERS>\r\n      <VERS vnumber=\"10\">Who hath fashioned a god, or molten an image that is profitable for nothing?</VERS>\r\n      <VERS vnumber=\"11\">Behold, all his fellows shall be put to shame; and the workmen, they are of men: let them all be gathered together, let them stand up; they shall fear, they shall be put to shame together.</VERS>\r\n      <VERS vnumber=\"12\">The smith [maketh] an axe, and worketh in the coals, and fashioneth it with hammers, and worketh it with his strong arm: yea, he is hungry, and his strength faileth; he drinketh no water, and is faint.</VERS>\r\n      <VERS vnumber=\"13\">The carpenter stretcheth out a line; he marketh it out with a pencil; he shapeth it with planes, and he marketh it out with the compasses, and shapeth it after the figure of a man, according to the beauty of a man, to dwell in a house.</VERS>\r\n      <VERS vnumber=\"14\">He heweth him down cedars, and taketh the holm-tree and the oak, and strengtheneth for himself one among the trees of the forest: he planteth a fir-tree, and the rain doth nourish it.</VERS>\r\n      <VERS vnumber=\"15\">Then shall it be for a man to burn; and he taketh thereof, and warmeth 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.</VERS>\r\n      <VERS vnumber=\"16\">He 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.</VERS>\r\n      <VERS vnumber=\"17\">And the residue thereof he maketh a god, even his graven image; he falleth down unto it and worshippeth, and prayeth unto it, and saith, Deliver me; for thou art my god.</VERS>\r\n      <VERS vnumber=\"18\">They know not, neither do they consider: for he hath shut their eyes, that they cannot see; and their hearts, that they cannot understand.</VERS>\r\n      <VERS vnumber=\"19\">And none calleth to mind, 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?</VERS>\r\n      <VERS vnumber=\"20\">He feedeth on ashes; a deceived heart hath turned him aside; and he cannot deliver his soul, nor say, Is there not a lie in my right hand?</VERS>\r\n      <VERS vnumber=\"21\">Remember these things, 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.</VERS>\r\n      <VERS vnumber=\"22\">I have blotted out, as a thick cloud, thy transgressions, and, as a cloud, thy sins: return unto me; for I have redeemed thee.</VERS>\r\n      <VERS vnumber=\"23\">Sing, O ye heavens, for Jehovah hath done it; shout, ye lower parts of the earth; break forth into singing, ye mountains, O forest, and every tree therein: for Jehovah hath redeemed Jacob, and will glorify himself in Israel.</VERS>\r\n      <VERS vnumber=\"24\">Thus saith Jehovah, thy Redeemer, and he that formed thee from the womb: I am Jehovah, that maketh all things; that stretcheth forth the heavens alone; that spreadeth abroad the earth (who is with me?);</VERS>\r\n      <VERS vnumber=\"25\">that frustrateth the signs of the liars, and maketh diviners mad; that turneth wise men backward, and maketh their knowledge foolish;</VERS>\r\n      <VERS vnumber=\"26\">that confirmeth the word of his servant, and performeth the counsel of his messengers; that saith of Jerusalem, She shall be inhabited; and of the cities of Judah, They shall be built, and I will raise up the waste places thereof;</VERS>\r\n      <VERS vnumber=\"27\">that saith to the deep, Be dry, and I will dry up thy rivers;</VERS>\r\n      <VERS vnumber=\"28\">That saith of Cyrus, [He is] my shepherd, and shall perform all my pleasure, even saying of Jerusalem, She shall be built; and of the temple, Thy foundation shall be laid.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"45\">\r\n      <VERS vnumber=\"1\">Thus saith Jehovah 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 the doors before him, and the gates shall not be shut:</VERS>\r\n      <VERS vnumber=\"2\">I will go before thee, and make the rough places smooth; I will break in pieces the doors of brass, and cut in sunder the bars of iron;</VERS>\r\n      <VERS vnumber=\"3\">and I will give thee the treasures of darkness, and hidden riches of secret places, that thou mayest know that it is I, Jehovah, who call thee by thy name, even the God of Israel.</VERS>\r\n      <VERS vnumber=\"4\">For Jacob my servant`s sake, and Israel my chosen, I have called thee by thy name: I have surnamed thee, though thou hast not known me.</VERS>\r\n      <VERS vnumber=\"5\">I am Jehovah, and there is none else; besides me there is no God. I will gird thee, though thou hast not known me;</VERS>\r\n      <VERS vnumber=\"6\">that they may know from the rising of the sun, and from the west, that there is none besides me: I am Jehovah, and there is none else.</VERS>\r\n      <VERS vnumber=\"7\">I form the light, and create darkness; I make peace, and create evil. I am Jehovah, that doeth all these things.</VERS>\r\n      <VERS vnumber=\"8\">Distil, ye heavens, from above, and let the skies pour down righteousness: let the earth open, that it may bring forth salvation, and let it cause righteousness to spring up together; I, Jehovah, have created it.</VERS>\r\n      <VERS vnumber=\"9\">Woe unto him that striveth with his Maker! a potsherd among the potsherds of the earth! Shall the clay say to him that fashioneth it, What makest thou? or thy work, He hath no hands?</VERS>\r\n      <VERS vnumber=\"10\">Woe unto him that saith unto a father, What begettest thou? or to a woman, With what travailest thou?</VERS>\r\n      <VERS vnumber=\"11\">Thus saith Jehovah, the Holy One of Israel, and his Maker: Ask me of the things that are to come; concerning my sons, and concerning the work of my hands, command ye me.</VERS>\r\n      <VERS vnumber=\"12\">I 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.</VERS>\r\n      <VERS vnumber=\"13\">I have raised him up in righteousness, and I will make straight all his ways: he shall build my city, and he shall let my exiles go free, not for price nor reward, saith Jehovah of hosts.</VERS>\r\n      <VERS vnumber=\"14\">Thus saith Jehovah, The labor of Egypt, and the merchandise of Ethiopia, and the Sabeans, men of stature, shall come over unto thee, and they shall be thine: they shall go 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.</VERS>\r\n      <VERS vnumber=\"15\">Verily thou art a God that hidest thyself, O God of Israel, the Saviour.</VERS>\r\n      <VERS vnumber=\"16\">They shall be put to shame, yea, confounded, all of them; they shall go into confusion together that are makers of idols.</VERS>\r\n      <VERS vnumber=\"17\">[But] Israel shall be saved by Jehovah with an everlasting salvation: ye shall not be put to shame nor confounded world without end.</VERS>\r\n      <VERS vnumber=\"18\">For thus saith Jehovah that created the heavens, the God that formed the earth and made it, that established it and created it not a waste, that formed it to be inhabited: I am Jehovah; and there is none else.</VERS>\r\n      <VERS vnumber=\"19\">I have not spoken in secret, in a place of the land of darkness; I said not unto the seed of Jacob, Seek ye me in vain: I, Jehovah, speak righteousness, I declare things that are right.</VERS>\r\n      <VERS vnumber=\"20\">Assemble yourselves and come; draw near together, ye that are escaped of the nations: they have no knowledge that carry the wood of their graven image, and pray unto a god that cannot save.</VERS>\r\n      <VERS vnumber=\"21\">Declare ye, and bring [it] forth; yea, let them take counsel together: who hath showed this from ancient time? who hath declared it of old? have not I, Jehovah? and there is no God else besides me, a just God and a Saviour; there is none besides me.</VERS>\r\n      <VERS vnumber=\"22\">Look unto me, and be ye saved, all the ends of the earth; for I am God, and there is none else.</VERS>\r\n      <VERS vnumber=\"23\">By myself have I sworn, the word is gone forth from my mouth [in] righteousness, and shall not return, that unto me every knee shall bow, every tongue shall swear.</VERS>\r\n      <VERS vnumber=\"24\">Only in Jehovah, it is said of me, is righteousness and strength; even to him shall men come; and all they that were incensed against him shall be put to shame.</VERS>\r\n      <VERS vnumber=\"25\">In Jehovah shall all the seed of Israel be justified, and shall glory.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"46\">\r\n      <VERS vnumber=\"1\">Bel boweth down, Nebo stoopeth; their idols are upon the beasts, and upon the cattle: the things that ye carried about are made a load, a burden to the weary [beast].</VERS>\r\n      <VERS vnumber=\"2\">They stoop, they bow down together; they could not deliver the burden, but themselves are gone into captivity.</VERS>\r\n      <VERS vnumber=\"3\">Hearken unto me, O house of Jacob, and all the remnant of the house of Israel, that have been borne [by me] from their birth, that have been carried from the womb;</VERS>\r\n      <VERS vnumber=\"4\">and even to old age I am he, and even to hoar hairs will I carry [you]; I have made, and I will bear; yea, I will carry, and will deliver.</VERS>\r\n      <VERS vnumber=\"5\">To whom will ye like me, and make me equal, and compare me, that we may be like?</VERS>\r\n      <VERS vnumber=\"6\">Such as lavish gold out of the bag, and weigh silver in the balance, they hire a goldsmith, and he maketh it a god; they fall down, yea, they worship.</VERS>\r\n      <VERS vnumber=\"7\">They bear it upon the shoulder, they carry it, and set it in its place, and it standeth, from its place shall it not remove: yea, one may cry unto it, yet can it not answer, nor save him out of his trouble.</VERS>\r\n      <VERS vnumber=\"8\">Remember this, and show yourselves men; bring it again to mind, O ye transgressors.</VERS>\r\n      <VERS vnumber=\"9\">Remember the former things of old: for I am God, and there is none else; [I am] God, and there is none like me;</VERS>\r\n      <VERS vnumber=\"10\">declaring the end from the beginning, and from ancient times things that are not [yet] done; saying, My counsel shall stand, and I will do all my pleasure;</VERS>\r\n      <VERS vnumber=\"11\">calling a ravenous bird from the east, the man of my counsel from a far country; yea, I have spoken, I will also bring it to pass; I have purposed, I will also do it.</VERS>\r\n      <VERS vnumber=\"12\">Hearken unto me, ye stout-hearted, that are far from righteousness:</VERS>\r\n      <VERS vnumber=\"13\">I 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"47\">\r\n      <VERS vnumber=\"1\">Come down, and sit in the dust, O virgin daughter of Babylon; sit on the ground without a throne, O daughter of the Chaldeans: for thou shalt no more be called tender and delicate.</VERS>\r\n      <VERS vnumber=\"2\">Take the millstones, and grind meal; remove thy veil, strip off the train, uncover the leg, pass through the rivers.</VERS>\r\n      <VERS vnumber=\"3\">Thy nakedness shall be uncovered, yea, thy shame shall be seen: I will take vengeance, and will spare no man.</VERS>\r\n      <VERS vnumber=\"4\">Our Redeemer, Jehovah of hosts is his name, the Holy One of Israel.</VERS>\r\n      <VERS vnumber=\"5\">Sit thou silent, and get thee into darkness, O daughter of the Chaldeans; for thou shalt no more be called The mistress of kingdoms.</VERS>\r\n      <VERS vnumber=\"6\">I was wroth with my people, I profaned mine inheritance, and gave them into thy hand: thou didst show them no mercy; upon the aged hast thou very heavily laid thy yoke.</VERS>\r\n      <VERS vnumber=\"7\">And thou saidst, I shall be mistress for ever; so that thou didst not lay these things to thy heart, neither didst remember the latter end thereof.</VERS>\r\n      <VERS vnumber=\"8\">Now therefore hear this, thou that art given to pleasures, that sittest securely, that sayest in thy heart, I am, and there is none else besides me; I shall not sit as a widow, neither shall I know the loss of children:</VERS>\r\n      <VERS vnumber=\"9\">but these two things shall come to thee in a moment in one day, the loss of children, and widowhood; in their full measure shall they come upon thee, in the multitude of thy sorceries, and the great abundance of thine enchantments.</VERS>\r\n      <VERS vnumber=\"10\">For 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 thy heart, I am, and there is none else besides me.</VERS>\r\n      <VERS vnumber=\"11\">Therefore shall evil come upon thee; thou shalt not know the dawning thereof: and mischief shall fall upon thee; thou shalt not be able to put it away: and desolation shall come upon thee suddenly, which thou knowest not.</VERS>\r\n      <VERS vnumber=\"12\">Stand now with thine enchantments, and with the multitude of thy sorceries, wherein thou hast labored from thy youth; if so be thou shalt be able to profit, if so be thou mayest prevail.</VERS>\r\n      <VERS vnumber=\"13\">Thou art wearied in the multitude of thy counsels: let now the astrologers, the star-gazers, the monthly prognosticators, stand up, and save thee from the things that shall come upon thee.</VERS>\r\n      <VERS vnumber=\"14\">Behold, they shall be as stubble; the fire shall burn them; they shall not deliver themselves from the power of the flame: it shall not be a coal to warm at, nor a fire to sit before.</VERS>\r\n      <VERS vnumber=\"15\">Thus shall the things be unto thee wherein thou hast labored: they that have trafficked with thee from thy youth shall wander every one to his quarter; there shall be none to save thee.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"48\">\r\n      <VERS vnumber=\"1\">Hear ye this, O house of Jacob, who are called by the name of Israel, and are come forth out of the waters of Judah; who swear by the name of Jehovah, and make mention of the God of Israel, but not in truth, nor in righteousness</VERS>\r\n      <VERS vnumber=\"2\">(for they call themselves of the holy city, and stay themselves upon the God of Israel; Jehovah of hosts is his name):</VERS>\r\n      <VERS vnumber=\"3\">I have declared the former things from of old; yea, they went forth out of my mouth, and I showed them: suddenly I did them, and they came to pass.</VERS>\r\n      <VERS vnumber=\"4\">Because I knew that thou art obstinate, and thy neck is an iron sinew, and thy brow brass;</VERS>\r\n      <VERS vnumber=\"5\">therefore I have declared it to thee from of old; before it came to pass I showed it thee; lest thou shouldest say, Mine idol hath done them, and my graven image, and my molten image, hath commanded them.</VERS>\r\n      <VERS vnumber=\"6\">Thou hast heard it; behold all this; and ye, will ye not declare it? I have showed thee new things from this time, even hidden things, which thou hast not known.</VERS>\r\n      <VERS vnumber=\"7\">They are created now, and not from of old; and before this day thou heardest them not; lest thou shouldest say, Behold, I knew them.</VERS>\r\n      <VERS vnumber=\"8\">Yea, thou heardest not; yea, thou knewest not; yea, from of old thine ear was not opened: for I knew that thou didst deal very treacherously, and wast called a transgressor from the womb.</VERS>\r\n      <VERS vnumber=\"9\">For my name`s sake will I defer mine anger, and for my praise will I refrain for thee, that I cut thee not off.</VERS>\r\n      <VERS vnumber=\"10\">Behold, I have refined thee, but not as silver; I have chosen thee in the furnace of affliction.</VERS>\r\n      <VERS vnumber=\"11\">For mine own sake, for mine own sake, will I do it; for how should [my name] be profaned? and my glory will I not give to another.</VERS>\r\n      <VERS vnumber=\"12\">Hearken unto me, O Jacob, and Israel my called: I am he; I am the first, I also am the last.</VERS>\r\n      <VERS vnumber=\"13\">Yea, my hand hath laid the foundation of the earth, and my right hand hath spread out the heavens: when I call unto them, they stand up together.</VERS>\r\n      <VERS vnumber=\"14\">Assemble yourselves, all ye, and hear; who among them hath declared these things? He whom Jehovah loveth shall perform his pleasure on Babylon, and his arm [shall be on] the Chaldeans.</VERS>\r\n      <VERS vnumber=\"15\">I, even I, have spoken; yea, I have called him; I have brought him, and he shall make his way prosperous.</VERS>\r\n      <VERS vnumber=\"16\">Come ye near unto me, hear ye this; from the beginning I have not spoken in secret; from the time that it was, there am I: and now the Lord Jehovah hath sent me, and his Spirit.</VERS>\r\n      <VERS vnumber=\"17\">Thus saith Jehovah, thy Redeemer, the Holy One of Israel: I am Jehovah thy God, who teacheth thee to profit, who leadeth thee by the way that thou shouldest go.</VERS>\r\n      <VERS vnumber=\"18\">Oh that thou hadst hearkened to my commandments! then had thy peace been as a river, and thy righteousness as the waves of the sea:</VERS>\r\n      <VERS vnumber=\"19\">thy seed also had been as the sand, and the offspring of thy bowels like the grains thereof: his name would not be cut off nor destroyed from before me.</VERS>\r\n      <VERS vnumber=\"20\">Go ye forth from 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, Jehovah hath redeemed his servant Jacob.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">There is no peace, saith Jehovah, to the wicked.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"49\">\r\n      <VERS vnumber=\"1\">Listen, O isles, unto me; and hearken, ye peoples, from far: Jehovah hath called me from the womb; from the bowels of my mother hath he made mention of my name:</VERS>\r\n      <VERS vnumber=\"2\">and he hath made my mouth like a sharp sword; in the shadow of his hand hath he hid me: and he hath made me a polished shaft; in his quiver hath he kept me close:</VERS>\r\n      <VERS vnumber=\"3\">and he said unto me, Thou art my servant; Israel, in whom I will be glorified.</VERS>\r\n      <VERS vnumber=\"4\">But I said, I have labored in vain, I have spent my strength for nought and vanity; yet surely the justice [due] to me is with Jehovah, and my recompense with my God.</VERS>\r\n      <VERS vnumber=\"5\">And now saith Jehovah that formed me from the womb to be his servant, to bring Jacob again to him, and that Israel be gathered unto him (for I am honorable in the eyes of Jehovah, and my God is become my strength);</VERS>\r\n      <VERS vnumber=\"6\">yea, he saith, It is too light a 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.</VERS>\r\n      <VERS vnumber=\"7\">Thus saith Jehovah, 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, and they shall worship; because of Jehovah that is faithful, [even] the Holy One of Israel, who hath chosen thee.</VERS>\r\n      <VERS vnumber=\"8\">Thus saith Jehovah, In an acceptable time have I answered 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 raise up the land, to make them inherit the desolate heritages:</VERS>\r\n      <VERS vnumber=\"9\">saying to them that are bound, Go forth; to them that are in darkness, Show yourselves. They shall feed in the ways, and on all bare heights shall be their pasture.</VERS>\r\n      <VERS vnumber=\"10\">They shall not hunger nor thirst; neither shall the heat nor sun smite them: for he that hath mercy on them will lead them, even by springs of water will he guide them.</VERS>\r\n      <VERS vnumber=\"11\">And I will make all my mountains a way, and my highways shall be exalted.</VERS>\r\n      <VERS vnumber=\"12\">Lo, these shall come from far; and, lo, these from the north and from the west; and these from the land of Sinim.</VERS>\r\n      <VERS vnumber=\"13\">Sing, O heavens; and be joyful, O earth; and break forth into singing, O mountains: for Jehovah hath comforted his people, and will have compassion upon his afflicted.</VERS>\r\n      <VERS vnumber=\"14\">But Zion said, Jehovah hath forsaken me, and the Lord hath forgotten me.</VERS>\r\n      <VERS vnumber=\"15\">Can a woman forget her sucking child, that she should not have compassion on the son of her womb? yea, these may forget, yet will not I forget thee.</VERS>\r\n      <VERS vnumber=\"16\">Behold, I have graven thee upon the palms of my hands; thy walls are continually before me.</VERS>\r\n      <VERS vnumber=\"17\">Thy children make haste; thy destroyers and they that made thee waste shall go forth from thee.</VERS>\r\n      <VERS vnumber=\"18\">Lift up thine eyes round about, and behold: all these gather themselves together, and come to thee. As I live, saith Jehovah, thou shalt surely clothe thee with them all as with an ornament, and gird thyself with them, like a bride.</VERS>\r\n      <VERS vnumber=\"19\">For, as for thy waste and thy desolate places, and thy land that hath been destroyed, surely now shalt thou be too strait for the inhabitants, and they that swallowed thee up shall be far away.</VERS>\r\n      <VERS vnumber=\"20\">The children of thy bereavement shall yet say in thine ears, The place is too strait for me; give place to me that I may dwell.</VERS>\r\n      <VERS vnumber=\"21\">Then shalt thou say in thy heart, Who hath begotten me these, seeing I have been bereaved of my children, and am solitary, an exile, and wandering to and fro? and who hath brought up these? Behold, I was left alone; these, where were they?</VERS>\r\n      <VERS vnumber=\"22\">Thus saith the Lord Jehovah, Behold, I will lift up my hand to the nations, and set up my ensign to the peoples; and they shall bring thy sons in their bosom, and thy daughters shall be carried upon their shoulders.</VERS>\r\n      <VERS vnumber=\"23\">And kings shall be thy nursing fathers, and their queens thy nursing mothers: they shall bow down to thee with their faces to the earth, and lick the dust of thy feet; and thou shalt know that I am Jehovah; and they that wait for me shall not be put to shame.</VERS>\r\n      <VERS vnumber=\"24\">Shall the prey be taken from the mighty, or the lawful captives be delivered?</VERS>\r\n      <VERS vnumber=\"25\">But thus saith Jehovah, 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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, Jehovah, am thy Saviour, and thy Redeemer, the Mighty One of Jacob.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"50\">\r\n      <VERS vnumber=\"1\">Thus saith Jehovah, Where is the bill of your mother`s divorcement, wherewith I have put her away? or which of my creditors is it to whom I have sold you? Behold, for your iniquities were ye sold, and for your transgressions was your mother put away.</VERS>\r\n      <VERS vnumber=\"2\">Wherefore, 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 stink, because there is no water, and die for thirst.</VERS>\r\n      <VERS vnumber=\"3\">I clothe the heavens with blackness, and I make sackcloth their covering.</VERS>\r\n      <VERS vnumber=\"4\">The Lord Jehovah hath given me the tongue of them that are taught, that I may know how to sustain with words him that is weary: he wakeneth morning by morning, he wakeneth mine ear to hear as they that are taught.</VERS>\r\n      <VERS vnumber=\"5\">The Lord Jehovah hath opened mine ear, and I was not rebellious, neither turned away backward.</VERS>\r\n      <VERS vnumber=\"6\">I 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.</VERS>\r\n      <VERS vnumber=\"7\">For the Lord Jehovah will help me; therefore have I not been confounded: therefore have I set my face like a flint, and I know that I shall not be put to shame.</VERS>\r\n      <VERS vnumber=\"8\">He is near that justifieth me; who will content with me? let us stand up together: who is mine adversary? let him come near to me.</VERS>\r\n      <VERS vnumber=\"9\">Behold, the Lord Jehovah will help me; who is he that shall condemn me? behold, all they shall wax old as a garment, the moth shall eat them up.</VERS>\r\n      <VERS vnumber=\"10\">Who is among you that feareth Jehovah, that obeyeth the voice of his servant? he that walketh in darkness, and hath no light, let him trust in the name of Jehovah, and rely upon his God.</VERS>\r\n      <VERS vnumber=\"11\">Behold, all ye that kindle a fire, that gird yourselves about with firebrands; walk ye in the flame of your fire, and among the brands that ye have kindled. This shall ye have of my hand; ye shall lie down in sorrow.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"51\">\r\n      <VERS vnumber=\"1\">Hearken to me, ye that follow after righteousness, ye that seek Jehovah: look unto the rock whence ye were hewn, and to the hold of the pit whence ye were digged.</VERS>\r\n      <VERS vnumber=\"2\">Look unto Abraham your father, and unto Sarah that bare you; for when he was but one I called him, and I blessed him, and made him many.</VERS>\r\n      <VERS vnumber=\"3\">For Jehovah hath comforted Zion; he hath comforted all her waste places, and hath made her wilderness like Eden, and her desert like the garden of Jehovah; joy and gladness shall be found therein, thanksgiving, and the voice of melody.</VERS>\r\n      <VERS vnumber=\"4\">Attend unto me, O my people; and give ear unto me, O my nation: for a law shall go forth from me, and I will establish my justice for a light of the peoples.</VERS>\r\n      <VERS vnumber=\"5\">My righteousness is near, my salvation is gone forth, and mine arms shall judge the peoples; the isles shall wait for me, and on mine arm shall they trust.</VERS>\r\n      <VERS vnumber=\"6\">Lift 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.</VERS>\r\n      <VERS vnumber=\"7\">Hearken unto me, ye that know righteousness, the people in whose heart is my law; fear ye not the reproach of men, neither be ye dismayed at their revilings.</VERS>\r\n      <VERS vnumber=\"8\">For 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 unto all generations.</VERS>\r\n      <VERS vnumber=\"9\">Awake, awake, put on strength, O arm of Jehovah; awake, as in the days of old, the generations of ancient times. Is it not thou that didst cut Rahab in pieces, that didst pierce the monster?</VERS>\r\n      <VERS vnumber=\"10\">Is it not thou that driedst up the sea, the waters of the great deep; that madest the depths of the sea a way for the redeemed to pass over?</VERS>\r\n      <VERS vnumber=\"11\">And the ransomed of Jehovah shall return, and come with singing unto Zion; and everlasting joy shall be upon their heads: they shall obtain gladness and joy; [and] sorrow and sighing shall flee away.</VERS>\r\n      <VERS vnumber=\"12\">I, even I, am he that comforteth you: who art thou, that thou art afraid of man that shall die, and of the son of man that shall be made as grass;</VERS>\r\n      <VERS vnumber=\"13\">and hast forgotten Jehovah thy Maker, that stretched forth the heavens, and laid the foundations of the earth; and fearest continually all the day because of the fury of the oppressor, when he maketh ready to destroy? and where is the fury of the oppressor?</VERS>\r\n      <VERS vnumber=\"14\">The captive exile shall speedily be loosed; and he shall not die [and go down] into the pit, neither shall his bread fail.</VERS>\r\n      <VERS vnumber=\"15\">For I am Jehovah thy God, who stirreth up the sea, so that the waves thereof roar: Jehovah of hosts is his name.</VERS>\r\n      <VERS vnumber=\"16\">And I have put my words in thy mouth, and have covered thee in the shadow of my hand, that I may plant the heavens, and lay the foundations of the earth, and say unto Zion, Thou art my people.</VERS>\r\n      <VERS vnumber=\"17\">Awake, awake, stand up, O Jerusalem, that hast drunk at the hand of Jehovah the cup of his wrath; thou hast drunken the bowl of the cup of staggering, and drained it.</VERS>\r\n      <VERS vnumber=\"18\">There is none to guide her among all the sons whom she hath brought forth; neither is there any that taketh her by the hand among all the sons that she hath brought up.</VERS>\r\n      <VERS vnumber=\"19\">These two things are befallen thee, who shall bemoan thee? desolation and destruction, and the famine and the sword; how shall I comfort thee?</VERS>\r\n      <VERS vnumber=\"20\">Thy sons have fainted, they lie at the head of all the streets, as an antelope in a net; they are full of the wrath of Jehovah, the rebuke of thy God.</VERS>\r\n      <VERS vnumber=\"21\">Therefore hear now this, thou afflicted, and drunken, but now with wine:</VERS>\r\n      <VERS vnumber=\"22\">Thus saith thy Lord Jehovah, and thy God that pleadeth the cause of his people, Behold, I have taken out of thy hand the cup of staggering, even the bowl of the cup of my wrath; thou shalt no more drink it again:</VERS>\r\n      <VERS vnumber=\"23\">and I will put it into the hand of them that afflict thee, that have said to thy soul, Bow down, that we may go over; and thou hast laid thy back as the ground, and as the street, to them that go over.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"52\">\r\n      <VERS vnumber=\"1\">Awake, 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.</VERS>\r\n      <VERS vnumber=\"2\">Shake thyself from the dust; arise, sit [on thy throne], O Jerusalem: loose thyself from the bonds of thy neck, O captive daughter of Zion.</VERS>\r\n      <VERS vnumber=\"3\">For thus saith Jehovah, Ye were sold for nought; and ye shall be redeemed without money.</VERS>\r\n      <VERS vnumber=\"4\">For thus saith the Lord Jehovah, My people went down at the first into Egypt to sojourn there: and the Assyrian hath oppressed them without cause.</VERS>\r\n      <VERS vnumber=\"5\">Now therefore, what do I here, saith Jehovah, seeing that my people is taken away for nought? they that rule over them do howl, saith Jehovah, and my name continually all the day is blasphemed.</VERS>\r\n      <VERS vnumber=\"6\">Therefore my people shall know my name: therefore [they shall know] in that day that I am he that doth speak; behold, it is I.</VERS>\r\n      <VERS vnumber=\"7\">How 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!</VERS>\r\n      <VERS vnumber=\"8\">The voice of thy watchmen! they lift up the voice, together do they sing; for they shall see eye to eye, when Jehovah returneth to Zion.</VERS>\r\n      <VERS vnumber=\"9\">Break forth into joy, sing together, ye waste places of Jerusalem; for Jehovah hath comforted his people, he hath redeemed Jerusalem.</VERS>\r\n      <VERS vnumber=\"10\">Jehovah hath made bare his holy arm in the eyes of all the nations; and all the ends of the earth have seen the salvation of our God.</VERS>\r\n      <VERS vnumber=\"11\">Depart ye, depart ye, go ye out from thence, touch no unclean thing; go ye out of the midst of her; cleanse yourselves, ye that bear the vessels of Jehovah.</VERS>\r\n      <VERS vnumber=\"12\">For ye shall not go out in haste, neither shall ye go by flight: for Jehovah will go before you; and the God of Israel will be your rearward.</VERS>\r\n      <VERS vnumber=\"13\">Behold, my servant shall deal wisely, he shall be exalted and lifted up, and shall be very high.</VERS>\r\n      <VERS vnumber=\"14\">Like as many were astonished at thee (his visage was so marred more than any man, and his form more than the sons of men),</VERS>\r\n      <VERS vnumber=\"15\">so shall he sprinkle many nations; 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 understand.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"53\">\r\n      <VERS vnumber=\"1\">Who hath believed our message? and to whom hath the arm of Jehovah been revealed?</VERS>\r\n      <VERS vnumber=\"2\">For he grew 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 see him, there is no beauty that we should desire him.</VERS>\r\n      <VERS vnumber=\"3\">He was despised, and rejected of men; a man of sorrows, and acquainted with grief: and as one from whom men hide their face he was despised; and we esteemed him not.</VERS>\r\n      <VERS vnumber=\"4\">Surely he hath borne our griefs, and carried our sorrows; yet we did esteem him stricken, smitten of God, and afflicted.</VERS>\r\n      <VERS vnumber=\"5\">But 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.</VERS>\r\n      <VERS vnumber=\"6\">All we like sheep have gone astray; we have turned every one to his own way; and Jehovah hath laid on him the iniquity of us all.</VERS>\r\n      <VERS vnumber=\"7\">He was oppressed, yet when he was afflicted he opened not his mouth; as a lamb that is led to the slaughter, and as a sheep that before its shearers is dumb, so he opened not his mouth.</VERS>\r\n      <VERS vnumber=\"8\">By oppression and judgment he was taken away; and as for his generation, who [among them] considered that he was cut off out of the land of the living for the transgression of my people to whom the stroke [was due]?</VERS>\r\n      <VERS vnumber=\"9\">And they made his grave with the wicked, and with a rich man in his death; although he had done no violence, neither was any deceit in his mouth.</VERS>\r\n      <VERS vnumber=\"10\">Yet it pleased Jehovah 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 Jehovah shall prosper in his hand.</VERS>\r\n      <VERS vnumber=\"11\">He shall see of the travail of his soul, [and] shall be satisfied: by the knowledge of himself shall my righteous servant justify many; and he shall bear their iniquities.</VERS>\r\n      <VERS vnumber=\"12\">Therefore will I divide him a portion with the great, and he shall divide the spoil with the strong; because he poured out his soul unto death, and was numbered with the transgressors: yet he bare the sin of many, and made intercession for the transgressors.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"54\">\r\n      <VERS vnumber=\"1\">Sing, 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 Jehovah.</VERS>\r\n      <VERS vnumber=\"2\">Enlarge the place of thy tent, and let them stretch forth the curtains of thy habitations; spare not: lengthen thy cords, and strengthen thy stakes.</VERS>\r\n      <VERS vnumber=\"3\">For thou shalt spread aboard on the right hand and on the left; and thy seed shall possess the nations, and make the desolate cities to be inhabited.</VERS>\r\n      <VERS vnumber=\"4\">Fear 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 the reproach of thy widowhood shalt thou remember no more.</VERS>\r\n      <VERS vnumber=\"5\">For thy Maker is thy husband; Jehovah of hosts is his name: and the Holy One of Israel is thy Redeemer; the God of the whole earth shall he be called.</VERS>\r\n      <VERS vnumber=\"6\">For Jehovah hath called thee as a wife forsaken and grieved in spirit, even a wife of youth, when she is cast off, saith thy God.</VERS>\r\n      <VERS vnumber=\"7\">For a small moment have I forsaken thee; but with great mercies will I gather thee.</VERS>\r\n      <VERS vnumber=\"8\">In overflowing wrath I hid my face from thee for a moment; but with everlasting lovingkindness will I have mercy on thee, saith Jehovah thy Redeemer.</VERS>\r\n      <VERS vnumber=\"9\">For this is [as] the waters of Noah unto me; for as I have sworn that the waters of Noah shall no more go over the earth, so have I sworn that I will not be wroth with thee, nor rebuke thee.</VERS>\r\n      <VERS vnumber=\"10\">For the mountains may depart, and the hills be removed; but my lovingkindness shall not depart from thee, neither shall my covenant of peace be removed, saith Jehovah that hath mercy on thee.</VERS>\r\n      <VERS vnumber=\"11\">O thou afflicted, tossed with tempest, and not comforted, behold, I will set thy stones in fair colors, and lay thy foundations with sapphires.</VERS>\r\n      <VERS vnumber=\"12\">And I will make thy pinnacles of rubies, and thy gates of carbuncles, and all thy border of precious stones.</VERS>\r\n      <VERS vnumber=\"13\">And all thy children shall be taught of Jehovah; and great shall be the peace of thy children.</VERS>\r\n      <VERS vnumber=\"14\">In 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.</VERS>\r\n      <VERS vnumber=\"15\">Behold, they may gather together, but not by me: whosoever shall gather together against thee shall fall because of thee.</VERS>\r\n      <VERS vnumber=\"16\">Behold, I have created the smith that bloweth the fire of coals, and bringeth forth a weapon for his work; and I have created the waster to destroy.</VERS>\r\n      <VERS vnumber=\"17\">No 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 Jehovah, and their righteousness which is of me, saith Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"55\">\r\n      <VERS vnumber=\"1\">Ho, 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.</VERS>\r\n      <VERS vnumber=\"2\">Wherefore do ye spend money for that which is not bread? and your labor for that which satisfieth not? hearken diligently unto me, and eat ye that which is good, and let your soul delight itself in fatness.</VERS>\r\n      <VERS vnumber=\"3\">Incline 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.</VERS>\r\n      <VERS vnumber=\"4\">Behold, I have given him for a witness to the peoples, a leader and commander to the peoples.</VERS>\r\n      <VERS vnumber=\"5\">Behold, thou shalt call a nation that thou knowest not; and a nation that knew not thee shall run unto thee, because of Jehovah thy God, and for the Holy One of Israel; for he hath glorified thee.</VERS>\r\n      <VERS vnumber=\"6\">Seek ye Jehovah while he may be found; call ye upon him while he is near:</VERS>\r\n      <VERS vnumber=\"7\">let the wicked forsake his way, and the unrighteous man his thoughts; and let him return unto Jehovah, and he will have mercy upon him; and to our God, for he will abundantly pardon.</VERS>\r\n      <VERS vnumber=\"8\">For my thoughts are not your thoughts, neither are your ways my ways, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"9\">For as the heavens are higher than the earth, so are my ways higher than your ways, and my thoughts than your thoughts.</VERS>\r\n      <VERS vnumber=\"10\">For 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, and giveth seed to the sower and bread to the eater;</VERS>\r\n      <VERS vnumber=\"11\">so 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.</VERS>\r\n      <VERS vnumber=\"12\">For 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 fields shall clap their hands.</VERS>\r\n      <VERS vnumber=\"13\">Instead 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 Jehovah for a name, for an everlasting sign that shall not be cut off.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"56\">\r\n      <VERS vnumber=\"1\">Thus saith Jehovah, Keep ye justice, and do righteousness; for my salvation is near to come, and my righteousness to be revealed.</VERS>\r\n      <VERS vnumber=\"2\">Blessed is the man that doeth this, and the son of man that holdeth it fast; that keepeth the sabbath from profaning it, and keepeth his hand from doing any evil.</VERS>\r\n      <VERS vnumber=\"3\">Neither let the foreigner, that hath joined himself to Jehovah, speak, saying, Jehovah will surely separate me from his people; neither let the eunuch say, Behold, I am a dry tree.</VERS>\r\n      <VERS vnumber=\"4\">For thus saith Jehovah of the eunuchs that keep my sabbaths, and choose the things that please me, and hold fast my covenant:</VERS>\r\n      <VERS vnumber=\"5\">Unto them will I give in my house and within my walls a memorial and a name better than of sons and of daughters; I will give them an everlasting name, that shall not be cut off.</VERS>\r\n      <VERS vnumber=\"6\">Also the foreigners that join themselves to Jehovah, to minister unto him, and to love the name of Jehovah, to be his servants, every one that keepeth the sabbath from profaning it, and holdeth fast my covenant;</VERS>\r\n      <VERS vnumber=\"7\">even 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 my house shall be called a house of prayer for all peoples.</VERS>\r\n      <VERS vnumber=\"8\">The Lord Jehovah, who gathereth the outcasts of Israel, saith, Yet will I gather [others] to him, besides his own that are gathered.</VERS>\r\n      <VERS vnumber=\"9\">All ye beasts of the field, come to devour, [yea], all ye beasts in the forest.</VERS>\r\n      <VERS vnumber=\"10\">His watchmen are blind, they are all without knowledge; they are all dumb dogs, they cannot bark; dreaming, lying down, loving to slumber.</VERS>\r\n      <VERS vnumber=\"11\">Yea, the dogs are greedy, they can never have enough; and these are shepherds that cannot understand: they have all turned to their own way, each one to his gain, from every quarter.</VERS>\r\n      <VERS vnumber=\"12\">Come ye, [say they], I will fetch wine, and we will fill ourselves with strong drink; and to-morrow shall be as this day, [a day] great beyond measure.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"57\">\r\n      <VERS vnumber=\"1\">The 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].</VERS>\r\n      <VERS vnumber=\"2\">He entereth into peace; they rest in their beds, each one that walketh in his uprightness.</VERS>\r\n      <VERS vnumber=\"3\">But draw near hither, ye sons of the sorceress, the seed of the adulterer and the harlot.</VERS>\r\n      <VERS vnumber=\"4\">Against whom do ye sport yourselves? against whom make ye a wide mouth, and put out the tongue? are ye not children of transgression, a seed of falsehood,</VERS>\r\n      <VERS vnumber=\"5\">ye that inflame yourselves among the oaks, under every green tree; that slay the children in the valleys, under the clefts of the rocks?</VERS>\r\n      <VERS vnumber=\"6\">Among the smooth [stones] of the valley is thy portion; they, they are thy lot; even to them hast thou poured a drink-offering, thou hast offered an oblation. Shall I be appeased for these things?</VERS>\r\n      <VERS vnumber=\"7\">Upon a high and lofty mountain hast thou set thy bed; thither also wentest thou up to offer sacrifice.</VERS>\r\n      <VERS vnumber=\"8\">And behind the doors and the posts hast thou set up thy memorial: for thou hast uncovered [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.</VERS>\r\n      <VERS vnumber=\"9\">And thou wentest to the king with oil, and didst increase thy perfumes, and didst send thine ambassadors far off, and didst debase thyself even unto Sheol.</VERS>\r\n      <VERS vnumber=\"10\">Thou wast wearied with the length of thy way; yet saidst thou not, It is in vain: thou didst find a quickening of thy strength; therefore thou wast not faint.</VERS>\r\n      <VERS vnumber=\"11\">And of whom hast thou been afraid and in fear, that thou liest, and hast not remembered me, nor laid it to thy heart? have not I held my peace even of long time, and thou fearest me not?</VERS>\r\n      <VERS vnumber=\"12\">I will declare thy righteousness; and as for thy works, they shall not profit thee.</VERS>\r\n      <VERS vnumber=\"13\">When thou criest, let them that thou hast gathered deliver thee; but the wind shall take them, a breath shall carry them all away: but he that taketh refuge in me shall possess the land, and shall inherit my holy mountain.</VERS>\r\n      <VERS vnumber=\"14\">And he will say, Cast ye up, cast ye up, prepare the way, take up the stumbling-block out of the way of my people.</VERS>\r\n      <VERS vnumber=\"15\">For 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.</VERS>\r\n      <VERS vnumber=\"16\">For I will not contend for ever, neither will I be always wroth; for the spirit would faint before me, and the souls that I have made.</VERS>\r\n      <VERS vnumber=\"17\">For the iniquity of his covetousness was I wroth, and smote him; I hid [my face] and was wroth; and he went on backsliding in the way of his heart.</VERS>\r\n      <VERS vnumber=\"18\">I have seen his ways, and will heal him: I will lead him also, and restore comforts unto him and to his mourners.</VERS>\r\n      <VERS vnumber=\"19\">I create the fruit of the lips: Peace, peace, to him that is far off and to him that is near, saith Jehovah; and I will heal him.</VERS>\r\n      <VERS vnumber=\"20\">But the wicked are like the troubled sea; for it cannot rest, and its waters cast up mire and dirt.</VERS>\r\n      <VERS vnumber=\"21\">There is no peace, saith my God, to the wicked.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"58\">\r\n      <VERS vnumber=\"1\">Cry aloud, spare not, lift up thy voice like a trumpet, and declare unto my people their transgression, and to the house of Jacob their sins.</VERS>\r\n      <VERS vnumber=\"2\">Yet 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 righteous judgments; they delight to draw near unto God.</VERS>\r\n      <VERS vnumber=\"3\">Wherefore 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 [your own] pleasure, and exact all your labors.</VERS>\r\n      <VERS vnumber=\"4\">Behold, ye fast for strife and contention, and to smite with the fist of wickedness: ye fast not this day so as to make your voice to be heard on high.</VERS>\r\n      <VERS vnumber=\"5\">Is such the fast that I have chosen? the day for a man to afflict his soul? Is it to bow down his head as a rush, and to spread sackcloth and ashes under him? wilt thou call this a fast, and an acceptable day to Jehovah?</VERS>\r\n      <VERS vnumber=\"6\">Is not this the fast that I have chosen: to loose the bonds of wickedness, to undo the bands of the yoke, and to let the oppressed go free, and that ye break every yoke?</VERS>\r\n      <VERS vnumber=\"7\">Is 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?</VERS>\r\n      <VERS vnumber=\"8\">Then shall thy light break forth as the morning, and thy healing shall spring forth speedily; and thy righteousness shall go before thee; the glory of Jehovah shall by thy rearward.</VERS>\r\n      <VERS vnumber=\"9\">Then shalt thou call, and Jehovah will answer; thou shalt cry, and he will say, Here I am. If thou take away from the midst of thee the yoke, the putting forth of the finger, and speaking wickedly;</VERS>\r\n      <VERS vnumber=\"10\">and if thou draw out thy soul to the hungry, and satisfy the afflicted soul: then shall thy light rise in darkness, and thine obscurity be as the noonday;</VERS>\r\n      <VERS vnumber=\"11\">and Jehovah will guide thee continually, and satisfy thy soul in dry places, and make strong thy bones; and thou shalt be like a watered garden, and like a spring of water, whose waters fail not.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">If thou turn away thy foot from the sabbath, from doing thy pleasure on my holy day; and call the sabbath a delight, [and] the holy of Jehovah honorable; and shalt honor it, not doing thine own ways, nor finding thine own pleasure, nor speaking [thine own] words:</VERS>\r\n      <VERS vnumber=\"14\">then shalt thou delight thyself in Jehovah; and I will make thee to ride upon the high places of the earth; and I will feed thee with the heritage of Jacob thy father: for the mouth of Jehovah hath spoken it.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"59\">\r\n      <VERS vnumber=\"1\">Behold, Jehovah`s hand is not shortened, that it cannot save; neither his ear heavy, that it cannot hear:</VERS>\r\n      <VERS vnumber=\"2\">but your iniquities have separated between you and your God, and your sins have hid his face from you, so that he will not hear.</VERS>\r\n      <VERS vnumber=\"3\">For your hands are defiled with blood, and your fingers with iniquity; your lips have spoken lies, your tongue muttereth wickedness.</VERS>\r\n      <VERS vnumber=\"4\">None sueth in righteousness, and none pleadeth in truth: they trust in vanity, and speak lies; they conceive mischief, and bring forth iniquity.</VERS>\r\n      <VERS vnumber=\"5\">They hatch adders` eggs, and weave the spider`s web: he that eateth of their eggs dieth; and that which is crushed breaketh out into a viper.</VERS>\r\n      <VERS vnumber=\"6\">Their 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.</VERS>\r\n      <VERS vnumber=\"7\">Their feet run to evil, and they make haste to shed innocent blood: their thoughts are thoughts of iniquity; desolation and destruction are in their paths.</VERS>\r\n      <VERS vnumber=\"8\">The way of peace they know not; and there is no justice in their goings: they have made them crooked paths; whosoever goeth therein doth not know peace.</VERS>\r\n      <VERS vnumber=\"9\">Therefore is justice far from us, neither doth righteousness overtake us: we look for light, but, behold, darkness; for brightness, but we walk in obscurity.</VERS>\r\n      <VERS vnumber=\"10\">We grope for the wall like the blind; yea, we grope as they that have no eyes: we stumble at noonday as in the twilight; among them that are lusty we are as dead men.</VERS>\r\n      <VERS vnumber=\"11\">We roar all like bears, and moan sore like doves: we look for justice, but there is none; for salvation, but it is far off from us.</VERS>\r\n      <VERS vnumber=\"12\">For 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:</VERS>\r\n      <VERS vnumber=\"13\">transgressing and denying Jehovah, and turning away from following our God, speaking oppression and revolt, conceiving and uttering from the heart words of falsehood.</VERS>\r\n      <VERS vnumber=\"14\">And justice is turned away backward, and righteousness standeth afar off; for truth is fallen in the street, and uprightness cannot enter.</VERS>\r\n      <VERS vnumber=\"15\">Yea, truth is lacking; and he that departeth from evil maketh himself a prey. And Jehovah saw it, and it displeased him that there was no justice.</VERS>\r\n      <VERS vnumber=\"16\">And he saw that there was no man, and wondered that there was no intercessor: therefore his own arm brought salvation unto him; and his righteousness, it upheld him.</VERS>\r\n      <VERS vnumber=\"17\">And he put on righteousness as a breastplate, and a helmet of salvation upon his head; and he put on garments of vengeance for clothing, and was clad with zeal as a mantle.</VERS>\r\n      <VERS vnumber=\"18\">According to their deeds, accordingly he will repay, wrath to his adversaries, recompense to his enemies; to the islands he will repay recompense.</VERS>\r\n      <VERS vnumber=\"19\">So shall they fear the name of Jehovah from the west, and his glory from the rising of the sun; for he will come as a rushing stream, which the breath of Jehovah driveth.</VERS>\r\n      <VERS vnumber=\"20\">And a Redeemer will come to Zion, and unto them that turn from transgression in Jacob, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"21\">And as for me, this is my covenant with them, saith Jehovah: 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 Jehovah, from henceforth and for ever.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"60\">\r\n      <VERS vnumber=\"1\">Arise, shine; for thy light is come, and the glory of Jehovah is risen upon thee.</VERS>\r\n      <VERS vnumber=\"2\">For, behold, darkness shall cover the earth, and gross darkness the peoples; but Jehovah will arise upon thee, and his glory shall be seen upon thee.</VERS>\r\n      <VERS vnumber=\"3\">And nations shall come to thy light, and kings to the brightness of thy rising.</VERS>\r\n      <VERS vnumber=\"4\">Lift up thine eyes round about, and see: they all gather themselves together, they come to thee; thy sons shall come from far, and thy daughters shall be carried in the arms.</VERS>\r\n      <VERS vnumber=\"5\">Then thou shalt see and be radiant, and thy heart shall thrill and be enlarged; because the abundance of the sea shall be turned unto thee, the wealth of the nations shall come unto thee.</VERS>\r\n      <VERS vnumber=\"6\">The multitude of camels shall cover thee, the dromedaries of Midian and Ephah; all they from Sheba shall come; they shall bring gold and frankincense, and shall proclaim the praises of Jehovah.</VERS>\r\n      <VERS vnumber=\"7\">All 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.</VERS>\r\n      <VERS vnumber=\"8\">Who are these that fly as a cloud, and as the doves to their windows?</VERS>\r\n      <VERS vnumber=\"9\">Surely 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, for the name of Jehovah thy God, and for the Holy One of Israel, because he hath glorified thee.</VERS>\r\n      <VERS vnumber=\"10\">And foreigners shall build up thy walls, and their kings shall minister unto thee: for in my wrath I smote thee, but in my favor have I had mercy on thee.</VERS>\r\n      <VERS vnumber=\"11\">Thy gates also shall be open continually; they shall not be shut day nor night; that men may bring unto thee the wealth of the nations, and their kings led captive.</VERS>\r\n      <VERS vnumber=\"12\">For that nation and kingdom that will not serve thee shall perish; yea, those nations shall be utterly wasted.</VERS>\r\n      <VERS vnumber=\"13\">The glory of Lebanon shall come unto thee, the fir-tree, the pine, and the box-tree together, to beautify the place of my sanctuary; and I will make the place of my feet glorious.</VERS>\r\n      <VERS vnumber=\"14\">And the sons 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 Jehovah, The Zion of the Holy One of Israel.</VERS>\r\n      <VERS vnumber=\"15\">Whereas thou hast been forsaken and hated, so that no man passed through thee, I will make thee an eternal excellency, a joy of many generations.</VERS>\r\n      <VERS vnumber=\"16\">Thou shalt also suck the milk of the nations, and shalt suck the breast of kings; and thou shalt know that I, Jehovah, am thy Saviour, and thy Redeemer, the Mighty One of Jacob.</VERS>\r\n      <VERS vnumber=\"17\">For 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.</VERS>\r\n      <VERS vnumber=\"18\">Violence shall no more be heard in thy land, desolation nor destruction within thy borders; but thou shalt call thy walls Salvation, and thy gates Praise.</VERS>\r\n      <VERS vnumber=\"19\">The sun shall be no more thy light by day; neither for brightness shall the moon give light unto thee: but Jehovah will be unto thee an everlasting light, and thy God thy glory.</VERS>\r\n      <VERS vnumber=\"20\">Thy sun shall no more go down, neither shall thy moon withdraw itself; for Jehovah will be thine everlasting light, and the days of thy mourning shall be ended.</VERS>\r\n      <VERS vnumber=\"21\">Thy 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.</VERS>\r\n      <VERS vnumber=\"22\">The little one shall become a thousand, and the small one a strong nation; I, Jehovah, will hasten it in its time.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"61\">\r\n      <VERS vnumber=\"1\">The Spirit of the Lord Jehovah is upon me; because Jehovah hath anointed me to preach good tidings unto the meek; he hath sent me to bind up the broken-hearted, to proclaim liberty to the captives, and the opening [of the prison] to them that are bound;</VERS>\r\n      <VERS vnumber=\"2\">to proclaim the year of Jehovah`s favor, and the day of vengeance of our God; to comfort all that mourn;</VERS>\r\n      <VERS vnumber=\"3\">to appoint unto them that mourn in Zion, to give unto them a garland for ashes, the oil of joy for mourning, the garment of praise for the spirit of heaviness; that they may be called trees of righteousness, the planting of Jehovah, that he may be glorified.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And strangers shall stand and feed your flocks, and foreigners shall be your plowmen and your vine-dressers.</VERS>\r\n      <VERS vnumber=\"6\">But ye shall be named the priests of Jehovah; men shall call you the ministers of our God: ye shall eat the wealth of the nations, and in their glory shall ye boast yourselves.</VERS>\r\n      <VERS vnumber=\"7\">Instead of your shame [ye shall have] double; and instead of dishonor they shall rejoice in their portion: therefore in their land they shall possess double; everlasting joy shall be unto them.</VERS>\r\n      <VERS vnumber=\"8\">For I, Jehovah, love justice, I hate robbery with iniquity; and I will give them their recompense in truth, and I will make an everlasting covenant with them.</VERS>\r\n      <VERS vnumber=\"9\">And their seed shall be known among the nations, and their offspring among the peoples; all that see them shall acknowledge them, that they are the seed which Jehovah hath blessed.</VERS>\r\n      <VERS vnumber=\"10\">I will greatly rejoice in Jehovah, 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 a garland, and as a bride adorneth herself with her jewels.</VERS>\r\n      <VERS vnumber=\"11\">For as the earth bringeth forth its bud, and as the garden causeth the things that are sown in it to spring forth; so the Lord Jehovah will cause righteousness and praise to spring forth before all the nations.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"62\">\r\n      <VERS vnumber=\"1\">For Zion`s sake will I not hold my peace, and for Jerusalem`s sake I will not rest, until her righteousness go forth as brightness, and her salvation as a lamp that burneth.</VERS>\r\n      <VERS vnumber=\"2\">And the nations shall see thy righteousness, and all kings thy glory, and thou shalt be called by a new name, which the mouth of Jehovah shall name.</VERS>\r\n      <VERS vnumber=\"3\">Thou shalt also be a crown of beauty in the hand of Jehovah, and a royal diadem in the hand of thy God.</VERS>\r\n      <VERS vnumber=\"4\">Thou shalt no more be termed Forsaken; neither shall thy land any more be termed Desolate: but thou shalt be called Hephzi-bah, and thy land Beulah; for Jehovah delighteth in thee, and thy land shall be married.</VERS>\r\n      <VERS vnumber=\"5\">For 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.</VERS>\r\n      <VERS vnumber=\"6\">I have set watchmen upon thy walls, O Jerusalem; they shall never hold their peace day nor night: ye that are Jehovah`s remembrancers, take ye no rest,</VERS>\r\n      <VERS vnumber=\"7\">and give him no rest, till he establish, and till he make Jerusalem a praise in the earth.</VERS>\r\n      <VERS vnumber=\"8\">Jehovah hath sworn by his right hand, and by the arm of his strength, Surely I will no more give thy grain to be food for thine enemies; and foreigners shall not drink thy new wine, for which thou hast labored:</VERS>\r\n      <VERS vnumber=\"9\">but they that have garnered it shall eat it, and praise Jehovah; and they that have gathered it shall drink it in the courts of my sanctuary.</VERS>\r\n      <VERS vnumber=\"10\">Go through, go through the gates; prepare ye the way of the people; cast up, cast up the highway; gather out the stones; lift up an ensign for the peoples.</VERS>\r\n      <VERS vnumber=\"11\">Behold, Jehovah hath proclaimed unto the end of the earth, Say ye to the daughter of Zion, Behold, thy salvation cometh; behold, his reward is with him, and his recompense before him.</VERS>\r\n      <VERS vnumber=\"12\">And they shall call them The holy people, The redeemed of Jehovah: and thou shalt be called Sought out, A city not forsaken.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"63\">\r\n      <VERS vnumber=\"1\">Who is this that cometh from Edom, with dyed garments from Bozrah? this that is glorious in his apparel, marching in the greatness of his strength? I that speak in righteousness, mighty to save.</VERS>\r\n      <VERS vnumber=\"2\">Wherefore art thou red in thine apparel, and thy garments like him that treadeth in the winevat?</VERS>\r\n      <VERS vnumber=\"3\">I have trodden the winepress alone; and of the peoples there was no man with me: yea, I trod them in mine anger, and trampled them in my wrath; and their lifeblood is sprinkled upon my garments, and I have stained all my raiment.</VERS>\r\n      <VERS vnumber=\"4\">For the day of vengeance was in my heart, and the year of my redeemed is come.</VERS>\r\n      <VERS vnumber=\"5\">And 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 wrath, it upheld me.</VERS>\r\n      <VERS vnumber=\"6\">And I trod down the peoples in mine anger, and made them drunk in my wrath, and I poured out their lifeblood on the earth.</VERS>\r\n      <VERS vnumber=\"7\">I will make mention of the lovingkindnesses of Jehovah, [and] the praises of Jehovah, according to all that Jehovah 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.</VERS>\r\n      <VERS vnumber=\"8\">For he said, Surely, they are my people, children that will not deal falsely: so he was their Saviour.</VERS>\r\n      <VERS vnumber=\"9\">In 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.</VERS>\r\n      <VERS vnumber=\"10\">But they rebelled, and grieved his holy Spirit: therefore he was turned to be their enemy, [and] himself fought against them.</VERS>\r\n      <VERS vnumber=\"11\">Then he remembered the days of old, Moses [and] his people, [saying], Where is he that brought them up out of the sea with the shepherds of his flock? where is he that put his holy Spirit in the midst of them?</VERS>\r\n      <VERS vnumber=\"12\">that caused his glorious arm to go at the right hand of Moses? that divided the waters before them, to make himself an everlasting name?</VERS>\r\n      <VERS vnumber=\"13\">that led them through the depths, as a horse in the wilderness, so that they stumbled not?</VERS>\r\n      <VERS vnumber=\"14\">As the cattle that go down into the valley, the Spirit of Jehovah caused them to rest; so didst thou lead thy people, to make thyself a glorious name.</VERS>\r\n      <VERS vnumber=\"15\">Look down from heaven, and behold from the habitation of thy holiness and of thy glory: where are thy zeal and thy mighty acts? the yearning of thy heart and thy compassions are restrained toward me.</VERS>\r\n      <VERS vnumber=\"16\">For thou art our Father, though Abraham knoweth us not, and Israel doth not acknowledge us: thou, O Jehovah, art our Father; our Redeemer from everlasting is thy name.</VERS>\r\n      <VERS vnumber=\"17\">O Jehovah, why dost thou make us to err from thy ways, and hardenest our heart from thy fear? Return for thy servants` sake, the tribes of thine inheritance.</VERS>\r\n      <VERS vnumber=\"18\">Thy holy people possessed [it] but a little while: our adversaries have trodden down thy sanctuary.</VERS>\r\n      <VERS vnumber=\"19\">We are become as they over whom thou never barest rule, as they that were not called by thy name.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"64\">\r\n      <VERS vnumber=\"1\">Oh that thou wouldest rend the heavens, that thou wouldest come down, that the mountains might quake at thy presence,</VERS>\r\n      <VERS vnumber=\"2\">as when fire kindleth the brushwood, [and] the fire causeth the waters to boil; to make thy name known to thine adversaries, that the nations may tremble at thy presence!</VERS>\r\n      <VERS vnumber=\"3\">When thou didst terrible things which we looked not for, thou camest down, the mountains quaked at thy presence.</VERS>\r\n      <VERS vnumber=\"4\">For from of old men have not heard, nor perceived by the ear, neither hath the eye seen a God besides thee, who worketh for him that waiteth for him.</VERS>\r\n      <VERS vnumber=\"5\">Thou meetest him that rejoiceth and worketh righteousness, those that remember thee in thy ways: behold, thou wast wroth, and we sinned: in them [have we been] of long time; and shall we be saved?</VERS>\r\n      <VERS vnumber=\"6\">For we are all become as one that is unclean, and all our righteousnesses are as a polluted garment: and we all do fade as a leaf; and our iniquities, like the wind, take us away.</VERS>\r\n      <VERS vnumber=\"7\">And 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 by means of our iniquities.</VERS>\r\n      <VERS vnumber=\"8\">But now, O Jehovah, thou art our Father; we are the clay, and thou our potter; and we all are the work of thy hand.</VERS>\r\n      <VERS vnumber=\"9\">Be not wroth very sore, O Jehovah, neither remember iniquity for ever: behold, look, we beseech thee, we are all thy people.</VERS>\r\n      <VERS vnumber=\"10\">Thy holy cities are become a wilderness, Zion is become a wilderness, Jerusalem a desolation.</VERS>\r\n      <VERS vnumber=\"11\">Our holy and our beautiful house, where our fathers praised thee, is burned with fire; and all our pleasant places are laid waste.</VERS>\r\n      <VERS vnumber=\"12\">Wilt thou refrain thyself for these things, O Jehovah? wilt thou hold thy peace, and afflict us very sore?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"65\">\r\n      <VERS vnumber=\"1\">I am inquired of by 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.</VERS>\r\n      <VERS vnumber=\"2\">I have spread out my hands all the day unto a rebellious people, that walk in a way that is not good, after their own thoughts;</VERS>\r\n      <VERS vnumber=\"3\">a people that provoke me to my face continually, sacrificing in gardens, and burning incense upon bricks;</VERS>\r\n      <VERS vnumber=\"4\">that sit among the graves, and lodge in the secret places; that eat swine`s flesh, and broth of abominable things is in their vessels;</VERS>\r\n      <VERS vnumber=\"5\">that 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.</VERS>\r\n      <VERS vnumber=\"6\">Behold, it is written before me: I will not keep silence, but will recompense, yea, I will recompense into their bosom,</VERS>\r\n      <VERS vnumber=\"7\">your own iniquities, and the iniquities of your fathers together, saith Jehovah, that have burned incense upon the mountains, and blasphemed me upon the hills; therefore will I first measure their work into their bosom.</VERS>\r\n      <VERS vnumber=\"8\">Thus saith Jehovah, 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` sake, that I may not destroy them all.</VERS>\r\n      <VERS vnumber=\"9\">And I will bring forth a seed out of Jacob, and out of Judah an inheritor of my mountains; and my chosen shall inherit it, and my servants shall dwell there.</VERS>\r\n      <VERS vnumber=\"10\">And Sharon shall be a fold of flocks, and the valley of Achor a place for herds to lie down in, for my people that have sought me.</VERS>\r\n      <VERS vnumber=\"11\">But ye that forsake Jehovah, that forget my holy mountain, that prepare a table for Fortune, and that fill up mingled wine unto Destiny;</VERS>\r\n      <VERS vnumber=\"12\">I will destine 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 ye did that which was evil in mine eyes, and chose that wherein I delighted not.</VERS>\r\n      <VERS vnumber=\"13\">Therefore thus saith the Lord Jehovah, 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 put to shame;</VERS>\r\n      <VERS vnumber=\"14\">behold, my servants shall sing for joy of heart, but ye shall cry for sorrow of heart, and shall wail for vexation of spirit.</VERS>\r\n      <VERS vnumber=\"15\">And ye shall leave your name for a curse unto my chosen; and the Lord Jehovah will slay thee; and he will call his servants by another name:</VERS>\r\n      <VERS vnumber=\"16\">so that 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.</VERS>\r\n      <VERS vnumber=\"17\">For, behold, I create new heavens and a new earth; and the former things shall not be remembered, nor come into mind.</VERS>\r\n      <VERS vnumber=\"18\">But be ye glad and rejoice for ever in that which I create; for, behold, I create Jerusalem a rejoicing, and her people a joy.</VERS>\r\n      <VERS vnumber=\"19\">And I will rejoice in Jerusalem, and joy in my people; and there shall be heard in her no more the voice of weeping and the voice of crying.</VERS>\r\n      <VERS vnumber=\"20\">There shall be no more thence an infant of days, nor an old man that hath not filled his days; for the child shall die a hundred years old, and the sinner being a hundred years old shall be accursed.</VERS>\r\n      <VERS vnumber=\"21\">And they shall build houses, and inhabit them; and they shall plant vineyards, and eat the fruit of them.</VERS>\r\n      <VERS vnumber=\"22\">They shall not build, and another inhabit; they shall not plant, and another eat: for as the days of a tree shall be the days of my people, and my chosen shall long enjoy the work of their hands.</VERS>\r\n      <VERS vnumber=\"23\">They shall not labor in vain, nor bring forth for calamity; for they are the seed of the blessed of Jehovah, and their offspring with them.</VERS>\r\n      <VERS vnumber=\"24\">And it shall come to pass that, before they call, I will answer; and while they are yet speaking, I will hear.</VERS>\r\n      <VERS vnumber=\"25\">The wolf and the lamb shall feed together, and the lion shall eat straw like the ox; and dust shall be the serpent`s food. They shall not hurt nor destroy in all my holy mountain, saith Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"66\">\r\n      <VERS vnumber=\"1\">Thus saith Jehovah, Heaven is my throne, and the earth is my footstool: what manner of house will ye build unto me? and what place shall be my rest?</VERS>\r\n      <VERS vnumber=\"2\">For all these things hath my hand made, and [so] all these things came to be, saith Jehovah: but to this man will I look, even to him that is poor and of a contrite spirit, and that trembleth at my word.</VERS>\r\n      <VERS vnumber=\"3\">He that killeth an ox is as he that slayeth a man; he that sacrificeth a lamb, as he that breaketh a dog`s neck; he that offereth an oblation, [as he that offereth] swine`s blood; he that burneth frankincense, as he that blesseth an idol. Yea, they have chosen their own ways, and their soul delighteth in their abominations:</VERS>\r\n      <VERS vnumber=\"4\">I 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 that which was evil in mine eyes, and chose that wherein I delighted not.</VERS>\r\n      <VERS vnumber=\"5\">Hear the word of Jehovah, ye that tremble at his word: Your brethren that hate you, that cast you out for my name`s sake, have said, Let Jehovah be glorified, that we may see your joy; but it is they that shall be put to shame.</VERS>\r\n      <VERS vnumber=\"6\">A voice of tumult from the city, a voice from the temple, a voice of Jehovah that rendereth recompense to his enemies.</VERS>\r\n      <VERS vnumber=\"7\">Before she travailed, she brought forth; before her pain came, she was delivered of a man-child.</VERS>\r\n      <VERS vnumber=\"8\">Who hath heard such a thing? who hath seen such things? Shall a land be born in one day? shall a nation be brought forth at once? for as soon as Zion travailed, she brought forth her children.</VERS>\r\n      <VERS vnumber=\"9\">Shall I bring to the birth, and not cause to bring forth? saith Jehovah: shall I that cause to bring forth shut [the womb]? saith thy God.</VERS>\r\n      <VERS vnumber=\"10\">Rejoice ye with Jerusalem, and be glad for her, all ye that love her: rejoice for joy with her, all ye that mourn over her;</VERS>\r\n      <VERS vnumber=\"11\">that 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.</VERS>\r\n      <VERS vnumber=\"12\">For thus saith Jehovah, Behold, I will extend peace to her like a river, and the glory of the nations like an overflowing stream: and ye shall suck [thereof]; ye shall be borne upon the side, and shall be dandled upon the knees.</VERS>\r\n      <VERS vnumber=\"13\">As one whom his mother comforteth, so will I comfort you; and ye shall be comforted in Jerusalem.</VERS>\r\n      <VERS vnumber=\"14\">And ye shall see [it], and your heart shall rejoice, and your bones shall flourish like the tender grass: and the hand of Jehovah shall be known toward his servants; and he will have indignation against his enemies.</VERS>\r\n      <VERS vnumber=\"15\">For, behold, Jehovah will come with fire, and his chariots shall be like the whirlwind; to render his anger with fierceness, and his rebuke with flames of fire.</VERS>\r\n      <VERS vnumber=\"16\">For by fire will Jehovah execute judgment, and by his sword, upon all flesh; and the slain of Jehovah shall be many.</VERS>\r\n      <VERS vnumber=\"17\">They that sanctify themselves and purify themselves [to go] unto the gardens, behind one in the midst, eating swine`s flesh, and the abomination, and the mouse, they shall come to an end together, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"18\">For I [know] their works and their thoughts: [the time] cometh, that I will gather all nations and tongues; and they shall come, and shall see my glory.</VERS>\r\n      <VERS vnumber=\"19\">And I will set a sign among them, and I will send such as 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 nations.</VERS>\r\n      <VERS vnumber=\"20\">And they shall bring all your brethren out of all the nations for an oblation unto Jehovah, upon horses, and in chariots, and in litters, and upon mules, and upon dromedaries, to my holy mountain Jerusalem, saith Jehovah, as the children of Israel bring their oblation in a clean vessel into the house of Jehovah.</VERS>\r\n      <VERS vnumber=\"21\">And of them also will I take for priests [and] for Levites, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"22\">For as the new heavens and the new earth, which I will make, shall remain before me, saith Jehovah, so shall your seed and your name remain.</VERS>\r\n      <VERS vnumber=\"23\">And 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 Jehovah.</VERS>\r\n      <VERS vnumber=\"24\">And they shall go forth, and look upon the dead bodies 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.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"24\" bname=\"Jeremiah\" bsname=\"Jer\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">The words of Jeremiah the son of Hilkiah, of the priests that were in Anathoth in the land of Benjamin:</VERS>\r\n      <VERS vnumber=\"2\">to whom the word of Jehovah came in the days of Josiah the son of Amon, king of Judah, in the thirteenth year of his reign.</VERS>\r\n      <VERS vnumber=\"3\">It 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.</VERS>\r\n      <VERS vnumber=\"4\">Now the word of Jehovah came unto me, saying,</VERS>\r\n      <VERS vnumber=\"5\">Before I formed thee in the belly I knew thee, and before thou camest forth out of the womb I sanctified thee; I have appointed thee a prophet unto the nations.</VERS>\r\n      <VERS vnumber=\"6\">Then said I, Ah, Lord Jehovah! behold, I know not how to speak; for I am a child.</VERS>\r\n      <VERS vnumber=\"7\">But Jehovah said unto me, Say not, I am a child; for to whomsoever I shall send thee thou shalt go, and whatsoever I shall command thee thou shalt speak.</VERS>\r\n      <VERS vnumber=\"8\">Be not afraid because of them; for I am with thee to deliver thee, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"9\">Then Jehovah put forth his hand, and touched my mouth; and Jehovah said unto me, Behold, I have put my words in thy mouth:</VERS>\r\n      <VERS vnumber=\"10\">see, I have this day set thee over the nations and over the kingdoms, to pluck up and to break down and to destroy and to overthrow, to build and to plant.</VERS>\r\n      <VERS vnumber=\"11\">Moreover the word of Jehovah came unto me, saying, Jeremiah, what seest thou? And I said, I see a rod of an almond-tree.</VERS>\r\n      <VERS vnumber=\"12\">Then said Jehovah unto me, Thou hast well seen: for I watch over my word to perform it.</VERS>\r\n      <VERS vnumber=\"13\">And the word of Jehovah came unto me the second time, saying, What seest thou? And I said, I see a boiling caldron; and the face thereof is from the north.</VERS>\r\n      <VERS vnumber=\"14\">Then Jehovah said unto me, Out of the north evil shall break forth upon all the inhabitants of the land.</VERS>\r\n      <VERS vnumber=\"15\">For, lo, I will call all the families of the kingdoms of the north, saith Jehovah; and they shall come, and they shall set every one his throne at the entrance of the gates of Jerusalem, and against all the walls thereof round about, and against all the cities of Judah.</VERS>\r\n      <VERS vnumber=\"16\">And I will utter my judgments against them touching all their wickedness, in that they have forsaken me, and have burned incense unto other gods, and worshipped the works of their own hands.</VERS>\r\n      <VERS vnumber=\"17\">Thou therefore gird up thy loins, and arise, and speak unto them all that I command thee: be not dismayed at them, lest I dismay thee before them.</VERS>\r\n      <VERS vnumber=\"18\">For, behold, I have made thee this day a fortified city, and an iron pillar, and brazen 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.</VERS>\r\n      <VERS vnumber=\"19\">And they shall fight against thee; but they shall not prevail against thee: for I am with thee, saith Jehovah, to deliver thee.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">And the word of Jehovah came to me, saying,</VERS>\r\n      <VERS vnumber=\"2\">Go, and cry in the ears of Jerusalem, saying, Thus saith Jehovah, I remember for thee the kindness of thy youth, the love of thine espousals; how thou wentest after me in the wilderness, in a land that was not sown.</VERS>\r\n      <VERS vnumber=\"3\">Israel [was] holiness unto Jehovah, the first-fruits of his increase: all that devour him shall be held guilty; evil shall come upon them, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"4\">Hear ye the word of Jehovah, O house of Jacob, and all the families of the house of Israel:</VERS>\r\n      <VERS vnumber=\"5\">thus saith Jehovah, What unrighteousness have your fathers found in me, that they are gone far from me, and have walked after vanity, and are become vain?</VERS>\r\n      <VERS vnumber=\"6\">Neither said they, Where is Jehovah 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 none passed through, and where no man dwelt?</VERS>\r\n      <VERS vnumber=\"7\">And I brought you into a plentiful land, to eat the fruit thereof and the goodness thereof; but when ye entered, ye defiled my land, and made my heritage an abomination.</VERS>\r\n      <VERS vnumber=\"8\">The priests said not, Where is Jehovah? and they that handle the law knew me not: the rulers also transgressed against me, and the prophets prophesied by Baal, and walked after things that do not profit.</VERS>\r\n      <VERS vnumber=\"9\">Wherefore I will yet contend with you, saith Jehovah, and with your children`s children will I contend.</VERS>\r\n      <VERS vnumber=\"10\">For pass over to the isles of Kittim, and see; and send unto Kedar, and consider diligently; and see if there hath been such a thing.</VERS>\r\n      <VERS vnumber=\"11\">Hath a nation changed [its] gods, which yet are no gods? but my people have changed their glory for that which doth not profit.</VERS>\r\n      <VERS vnumber=\"12\">Be astonished, O ye heavens, at this, and be horribly afraid, be ye very desolate, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"13\">For 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.</VERS>\r\n      <VERS vnumber=\"14\">Is Israel a servant? is he a home-born [slave]? why is he become a prey?</VERS>\r\n      <VERS vnumber=\"15\">The young lions have roared upon him, and yelled; and they have made his land waste: his cities are burned up, without inhabitant.</VERS>\r\n      <VERS vnumber=\"16\">The children also of Memphis and Tahpanhes have broken the crown of thy head.</VERS>\r\n      <VERS vnumber=\"17\">Hast thou not procured this unto thyself, in that thou hast forsaken Jehovah thy God, when he led thee by the way?</VERS>\r\n      <VERS vnumber=\"18\">And now what hast thou to do in the way to Egypt, to drink the waters of the Shihor? or what hast thou to do in the way to Assyria, to drink the waters of the River?</VERS>\r\n      <VERS vnumber=\"19\">Thine own wickedness shall correct thee, and thy backslidings shall reprove thee: know therefore and see that it is an evil thing and a bitter, that thou hast forsaken Jehovah thy God, and that my fear is not in thee, saith the Lord, Jehovah of hosts.</VERS>\r\n      <VERS vnumber=\"20\">For of old time I have broken thy yoke, and burst thy bonds; and thou saidst, I will not serve; for upon every high hill and under every green tree thou didst bow thyself, playing the harlot.</VERS>\r\n      <VERS vnumber=\"21\">Yet I had planted thee a noble vine, wholly a right seed: how then art thou turned into the degenerate branches of a foreign vine unto me?</VERS>\r\n      <VERS vnumber=\"22\">For though thou wash thee with lye, and take thee much soap, yet thine iniquity is marked before me, saith the Lord Jehovah.</VERS>\r\n      <VERS vnumber=\"23\">How canst thou say, I am not defiled, I have not gone after the Baalim? see thy way in the valley, know what thou hast done: [thou art] a swift dromedary traversing her ways;</VERS>\r\n      <VERS vnumber=\"24\">a wild ass used to the wilderness, that snuffeth up the wind in her desire; in her occasion who can turn her away? all they that seek her will not weary themselves; in her month they shall find her.</VERS>\r\n      <VERS vnumber=\"25\">Withhold thy foot from being unshod, and thy throat from thirst: but thou saidst, It is in vain; no, for I have loved strangers, and after them will I go.</VERS>\r\n      <VERS vnumber=\"26\">As 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;</VERS>\r\n      <VERS vnumber=\"27\">who say 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.</VERS>\r\n      <VERS vnumber=\"28\">But 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.</VERS>\r\n      <VERS vnumber=\"29\">Wherefore will ye contend with me? ye all have transgressed against me, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"30\">In vain have I smitten your children; they received no correction: your own sword hath devoured your prophets, like a destroying lion.</VERS>\r\n      <VERS vnumber=\"31\">O generation, see ye the word of Jehovah. Have I been a wilderness unto Israel? or a land of thick darkness? wherefore say my people, We are broken loose; we will come no more unto thee?</VERS>\r\n      <VERS vnumber=\"32\">Can a virgin forget her ornaments, or a bride her attire? yet my people have forgotten me days without number.</VERS>\r\n      <VERS vnumber=\"33\">How trimmest thou thy way to seek love! therefore even the wicked women hast thou taught thy ways.</VERS>\r\n      <VERS vnumber=\"34\">Also in thy skirts is found the blood of the souls of the innocent poor: thou didst not find them breaking in; but it is because of all these things.</VERS>\r\n      <VERS vnumber=\"35\">Yet thou saidst, I am innocent; surely his anger is turned away from me. Behold, I will enter into judgment with thee, because thou sayest, I have not sinned.</VERS>\r\n      <VERS vnumber=\"36\">Why gaddest thou about so much to change thy way? thou shalt be ashamed of Egypt also, as thou wast ashamed of Assyria.</VERS>\r\n      <VERS vnumber=\"37\">From thence also shalt thou go forth, with thy hands upon thy head: for Jehovah hath rejected those in whom thou trustest, and thou shalt not prosper with them.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">They say, If a man put away his wife, and she go from him, and become another man`s, will he return unto her again? will not that land be greatly polluted? But thou hast played the harlot with many lovers; yet return again to me, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"2\">Lift up thine eyes unto the bare heights, and see; where hast thou not been lain with? By the ways hast thou sat for them, as an Arabian in the wilderness; and thou hast polluted the land with thy whoredoms and with thy wickedness.</VERS>\r\n      <VERS vnumber=\"3\">Therefore the showers have been withholden, and there hath been no latter rain; yet thou hast a harlot`s forehead, thou refusedst to be ashamed.</VERS>\r\n      <VERS vnumber=\"4\">Wilt thou not from this time cry unto me, My Father, thou art the guide of my youth?</VERS>\r\n      <VERS vnumber=\"5\">Will he retain [his anger] for ever? will he keep it to the end? Behold, thou hast spoken and hast done evil things, and hast had thy way.</VERS>\r\n      <VERS vnumber=\"6\">Moreover Jehovah said 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.</VERS>\r\n      <VERS vnumber=\"7\">And I said after she had done all these things, She will return unto me; but she returned not: and her treacherous sister Judah saw it.</VERS>\r\n      <VERS vnumber=\"8\">And I saw, when, for this very cause that backsliding Israel had committed adultery, I had put her away and given her a bill of divorcement, yet treacherous Judah her sister feared not; but she also went and played the harlot.</VERS>\r\n      <VERS vnumber=\"9\">And it came to pass through the lightness of her whoredom, that the land was polluted, and she committed adultery with stones and with stocks.</VERS>\r\n      <VERS vnumber=\"10\">And yet for all this her treacherous sister Judah hath not returned unto me with her whole heart, but feignedly, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"11\">And Jehovah said unto me, Backsliding Israel hath showed herself more righteous than treacherous Judah.</VERS>\r\n      <VERS vnumber=\"12\">Go, and proclaim these words toward the north, and say, Return, thou backsliding Israel, saith Jehovah; I will not look in anger upon you; for I am merciful, saith Jehovah, I will not keep [anger] for ever.</VERS>\r\n      <VERS vnumber=\"13\">Only acknowledge thine iniquity, that thou hast transgressed against Jehovah thy God, and hast scattered thy ways to the strangers under every green tree, and ye have not obeyed my voice, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"14\">Return, O backsliding children, saith Jehovah; for I am a husband unto you: and I will take you one of a city, and two of a family, and I will bring you to Zion:</VERS>\r\n      <VERS vnumber=\"15\">and I will give you shepherds according to my heart, who shall feed you with knowledge and understanding.</VERS>\r\n      <VERS vnumber=\"16\">And it shall come to pass, when ye are multiplied and increased in the land, in those days, saith Jehovah, they shall say no more, The ark of the covenant of Jehovah; neither shall it come to mind; neither shall they remember it; neither shall they miss it; neither shall it be made any more.</VERS>\r\n      <VERS vnumber=\"17\">At that time they shall call Jerusalem the throne of Jehovah; and all the nations shall be gathered unto it, to the name of Jehovah, to Jerusalem: neither shall they walk any more after the stubbornness of their evil heart.</VERS>\r\n      <VERS vnumber=\"18\">In 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 gave for an inheritance unto your fathers.</VERS>\r\n      <VERS vnumber=\"19\">But I said, How I will put thee among the children, and give thee a pleasant land, a goodly heritage of the hosts of the nations! and I said, Ye shall call me My Father, and shall not turn away from following me.</VERS>\r\n      <VERS vnumber=\"20\">Surely as a wife treacherously departeth from her husband, so have ye dealt treacherously with me, O house of Israel, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"21\">A voice is heard upon the bare heights, the weeping [and] the supplications of the children of Israel; because they have perverted their way, they have forgotten Jehovah their God.</VERS>\r\n      <VERS vnumber=\"22\">Return, ye backsliding children, I will heal your backslidings. Behold, we are come unto thee; for thou art Jehovah our God.</VERS>\r\n      <VERS vnumber=\"23\">Truly in vain is [the help that is looked for] from the hills, the tumult on the mountains: truly in Jehovah our God is the salvation of Israel.</VERS>\r\n      <VERS vnumber=\"24\">But the shameful thing hath devoured the labor of our fathers from our youth, their flocks and their herds, their sons and their daughters.</VERS>\r\n      <VERS vnumber=\"25\">Let us lie down in our shame, and let our confusion cover us; for we have sinned against Jehovah our God, we and our fathers, from our youth even unto this day; and we have not obeyed the voice of Jehovah our God.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">If thou wilt return, O Israel, saith Jehovah, if thou wilt return unto me, and if thou wilt put away thine abominations out of my sight; then shalt thou not be removed;</VERS>\r\n      <VERS vnumber=\"2\">and thou shalt swear, As Jehovah liveth, in truth, in justice, and in righteousness; and the nations shall bless themselves in him, and in him shall they glory.</VERS>\r\n      <VERS vnumber=\"3\">For thus saith Jehovah to the men of Judah and to Jerusalem, Break up your fallow ground, and sow not among thorns.</VERS>\r\n      <VERS vnumber=\"4\">Circumcise yourselves to Jehovah, and take away the foreskins of your heart, ye men of Judah and inhabitants of Jerusalem; lest my wrath go forth like fire, and burn so that none can quench it, because of the evil of your doings.</VERS>\r\n      <VERS vnumber=\"5\">Declare ye in Judah, and publish in Jerusalem; and say, Blow ye the trumpet in the land: cry aloud and say, Assemble yourselves, and let us go into the fortified cities.</VERS>\r\n      <VERS vnumber=\"6\">Set up a standard toward Zion: flee for safety, stay not; for I will bring evil from the north, and a great destruction.</VERS>\r\n      <VERS vnumber=\"7\">A lion is gone up from his thicket, and a destroyer of nations; he is on his way, he is gone forth from his place, to make thy land desolate, that thy cities be laid waste, without inhabitant.</VERS>\r\n      <VERS vnumber=\"8\">For this gird you with sackcloth, lament and wail; for the fierce anger of Jehovah is not turned back from us.</VERS>\r\n      <VERS vnumber=\"9\">And it shall come to pass at that day, saith Jehovah, 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.</VERS>\r\n      <VERS vnumber=\"10\">Then said I, Ah, Lord Jehovah! surely thou hast greatly deceived this people and Jerusalem, saying, Ye shall have peace; whereas the sword reacheth unto the life.</VERS>\r\n      <VERS vnumber=\"11\">At that time shall it be said to this people and to Jerusalem, A hot wind from the bare heights in the wilderness toward the daughter of my people, not to winnow, nor to cleanse;</VERS>\r\n      <VERS vnumber=\"12\">a full wind from these shall come for me: now will I also utter judgments against them.</VERS>\r\n      <VERS vnumber=\"13\">Behold, he shall come up as clouds, and his chariots [shall be] as the whirlwind: his horses are swifter than eagles. Woe unto us! for we are ruined.</VERS>\r\n      <VERS vnumber=\"14\">O Jerusalem, wash thy heart from wickedness, that thou mayest be saved. How long shall thine evil thoughts lodge within thee?</VERS>\r\n      <VERS vnumber=\"15\">For a voice declareth from Dan, and publisheth evil from the hills of Ephraim:</VERS>\r\n      <VERS vnumber=\"16\">make 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.</VERS>\r\n      <VERS vnumber=\"17\">As keepers of a field are they against her round about, because she hath been rebellious against me, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"18\">Thy way and thy doings have procured these things unto thee; this is thy wickedness; for it is bitter, for it reacheth unto thy heart.</VERS>\r\n      <VERS vnumber=\"19\">My anguish, my anguish! I am pained at my very heart; my heart is disquieted in me; I cannot hold my peace; because thou hast heard, O my soul, the sound of the trumpet, the alarm of war.</VERS>\r\n      <VERS vnumber=\"20\">Destruction upon destruction is cried; for the whole land is laid waste: suddenly are my tents destroyed, [and] my curtains in a moment.</VERS>\r\n      <VERS vnumber=\"21\">How long shall I see the standard, and hear the sound of the trumpet?</VERS>\r\n      <VERS vnumber=\"22\">For my people are foolish, they know me not; they are sottish children, and they have no understanding; they are wise to do evil, but to do good they have no knowledge.</VERS>\r\n      <VERS vnumber=\"23\">I beheld the earth, and, lo, it was waste and void; and the heavens, and they had no light.</VERS>\r\n      <VERS vnumber=\"24\">I beheld the mountains, and, lo, they trembled, and all the hills moved to and fro.</VERS>\r\n      <VERS vnumber=\"25\">I beheld, and, lo, there was no man, and all the birds of the heavens were fled.</VERS>\r\n      <VERS vnumber=\"26\">I beheld, and, lo, the fruitful field was a wilderness, and all the cities thereof were broken down at the presence of Jehovah, [and] before his fierce anger.</VERS>\r\n      <VERS vnumber=\"27\">For thus saith Jehovah, The whole land shall be a desolation; yet will I not make a full end.</VERS>\r\n      <VERS vnumber=\"28\">For this shall the earth mourn, and the heavens above be black; because I have spoken it, I have purposed it, and I have not repented, neither will I turn back from it.</VERS>\r\n      <VERS vnumber=\"29\">Every city fleeth for the noise of the horsemen and bowmen; they go into the thickets, and climb up upon the rocks: every city is forsaken, and not a man dwelleth therein.</VERS>\r\n      <VERS vnumber=\"30\">And thou, when thou art made desolate, what wilt thou do? Though thou clothest thyself with scarlet, though thou deckest thee with ornaments of gold, though thou enlargest thine eyes with paint, in vain dost thou make thyself fair; [thy] lovers despise thee, they seek thy life.</VERS>\r\n      <VERS vnumber=\"31\">For I have heard a voice as of a woman in travail, the anguish as of her that bringeth forth her first child, the voice of the daughter of Zion, that gaspeth for breath, that spreadeth her hands, [saying], Woe is me now! for my soul fainteth before the murderers.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">Run 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 doeth justly, that seeketh truth; and I will pardon her.</VERS>\r\n      <VERS vnumber=\"2\">And though they say, As Jehovah liveth; surely they swear falsely.</VERS>\r\n      <VERS vnumber=\"3\">O Jehovah, do not thine eyes look upon truth? thou hast stricken them, but they were 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.</VERS>\r\n      <VERS vnumber=\"4\">Then I said, Surely these are poor; they are foolish; for they know not the way of Jehovah, nor the law of their God:</VERS>\r\n      <VERS vnumber=\"5\">I will get me unto the great men, and will speak unto them; for they know the way of Jehovah, and the law of their God. But these with one accord have broken the yoke, and burst the bonds.</VERS>\r\n      <VERS vnumber=\"6\">Wherefore a lion out of the forest shall slay them, a wolf of the evenings shall destroy them, a leopard shall watch against their cities; every one that goeth out thence shall be torn in pieces; because their transgressions are many, [and] their backslidings are increased.</VERS>\r\n      <VERS vnumber=\"7\">How can I pardon thee? thy children have forsaken me, and sworn by them that are no gods: when I had fed them to the full, they committed adultery, and assembled themselves in troops at the harlots` houses.</VERS>\r\n      <VERS vnumber=\"8\">They were as fed horses roaming at large; every one neighed after his neighbor`s wife.</VERS>\r\n      <VERS vnumber=\"9\">Shall I not visit for these things? saith Jehovah; and shall not my soul be avenged on such a nation as this?</VERS>\r\n      <VERS vnumber=\"10\">Go ye up upon her walls, and destroy; but make not a full end: take away her branches; for they are not Jehovah`s.</VERS>\r\n      <VERS vnumber=\"11\">For the house of Israel and the house of Judah have dealt very treacherously against me, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"12\">They have denied Jehovah, and said, It is not he; neither shall evil come upon us; neither shall we see sword nor famine:</VERS>\r\n      <VERS vnumber=\"13\">and the prophets shall become wind, and the word is not in them: thus shall it be done unto them.</VERS>\r\n      <VERS vnumber=\"14\">Wherefore thus saith Jehovah, the 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.</VERS>\r\n      <VERS vnumber=\"15\">Lo, I will bring a nation upon you from far, O house of Israel, saith Jehovah: it is a mighty nation, it is an ancient nation, a nation whose language thou knowest not, neither understandest what they say.</VERS>\r\n      <VERS vnumber=\"16\">Their quiver is an open sepulchre, they are all mighty men.</VERS>\r\n      <VERS vnumber=\"17\">And they shall eat up thy harvest, and thy bread, [which] thy sons and thy daughters should eat; they shall eat up thy flocks and thy herds; they shall eat up thy vines and thy fig-trees; they shall beat down thy fortified cities, wherein thou trustest, with the sword.</VERS>\r\n      <VERS vnumber=\"18\">But even in those days, saith Jehovah, I will not make a full end with you.</VERS>\r\n      <VERS vnumber=\"19\">And it shall come to pass, when ye shall say, Wherefore hath Jehovah our God done all these things unto us? then shalt thou say unto them, Like as ye have forsaken me, and served foreign gods in your land, so shall ye serve strangers in a land that is not yours.</VERS>\r\n      <VERS vnumber=\"20\">Declare ye this in the house of Jacob, and publish it in Judah, saying,</VERS>\r\n      <VERS vnumber=\"21\">Hear now this, O foolish people, and without understanding; that have eyes, and see not; that have ears, and hear not:</VERS>\r\n      <VERS vnumber=\"22\">Fear ye not me? saith Jehovah: will ye not tremble at my presence, who 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.</VERS>\r\n      <VERS vnumber=\"23\">But this people hath a revolting and a rebellious heart; they are revolted and gone.</VERS>\r\n      <VERS vnumber=\"24\">Neither say they in their heart, Let us now fear Jehovah our God, that giveth rain, both the former and the latter, in its season; that preserveth unto us the appointed weeks of the harvest.</VERS>\r\n      <VERS vnumber=\"25\">Your iniquities have turned away these things, and your sins have withholden good from you.</VERS>\r\n      <VERS vnumber=\"26\">For among my people are found wicked men: they watch, as fowlers lie in wait; they set a trap, they catch men.</VERS>\r\n      <VERS vnumber=\"27\">As a cage is full of birds, so are their houses full of deceit: therefore they are become great, and waxed rich.</VERS>\r\n      <VERS vnumber=\"28\">They are waxed fat, they shine: yea, they overpass in deeds of wickedness; they plead not the cause, the cause of the fatherless, that they may prosper; and the right of the needy do they not judge.</VERS>\r\n      <VERS vnumber=\"29\">Shall I not visit for these things? saith Jehovah; shall not my soul be avenged on such a nation as this?</VERS>\r\n      <VERS vnumber=\"30\">A wonderful and horrible thing is come to pass in the land:</VERS>\r\n      <VERS vnumber=\"31\">the 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?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">Flee for safety, ye children of Benjamin, out of the midst of Jerusalem, and blow the trumpet in Tekoa, and raise up a signal on Beth-haccherem; for evil looketh forth from the north, and a great destruction.</VERS>\r\n      <VERS vnumber=\"2\">The comely and delicate one, the daughter of Zion, will I cut off.</VERS>\r\n      <VERS vnumber=\"3\">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.</VERS>\r\n      <VERS vnumber=\"4\">Prepare ye war against her; arise, and let us go up at noon. Woe unto us! for the day declineth, for the shadows of the evening are stretched out.</VERS>\r\n      <VERS vnumber=\"5\">Arise, and let us go up by night, and let us destroy her palaces.</VERS>\r\n      <VERS vnumber=\"6\">For thus hath Jehovah of hosts said, Hew ye down trees, and cast up a mound against Jerusalem: this is the city to be visited; she is wholly oppression in the midst of her.</VERS>\r\n      <VERS vnumber=\"7\">As a well casteth forth its waters, so she casteth forth her wickedness: violence and destruction is heard in her; before me continually is sickness and wounds.</VERS>\r\n      <VERS vnumber=\"8\">Be thou instructed, O Jerusalem, lest my soul be alienated from thee; lest I make thee a desolation, a land not inhabited.</VERS>\r\n      <VERS vnumber=\"9\">Thus saith Jehovah of hosts, They shall thoroughly glean the remnant of Israel as a vine: turn again thy hand as a grape-gatherer into the baskets.</VERS>\r\n      <VERS vnumber=\"10\">To whom shall I speak and testify, that they may hear? behold, their ear is uncircumcised, and they cannot hearken: behold, the word of Jehovah is become unto them a reproach; they have no delight in it.</VERS>\r\n      <VERS vnumber=\"11\">Therefore I am full of the wrath of Jehovah; I am weary with holding in: pour it out upon the children in the street, 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.</VERS>\r\n      <VERS vnumber=\"12\">And their houses shall be turned unto others, their fields and their wives together; for I will stretch out my hand upon the inhabitants of the land, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"13\">For 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.</VERS>\r\n      <VERS vnumber=\"14\">They have healed also the hurt of my people slightly, saying, Peace, peace; when there is no peace.</VERS>\r\n      <VERS vnumber=\"15\">Were 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 Jehovah.</VERS>\r\n      <VERS vnumber=\"16\">Thus saith Jehovah, 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].</VERS>\r\n      <VERS vnumber=\"17\">And I set watchmen over you, [saying], Hearken to the sound of the trumpet; but they said, We will not hearken.</VERS>\r\n      <VERS vnumber=\"18\">Therefore hear, ye nations, and know, O congregation, what is among them.</VERS>\r\n      <VERS vnumber=\"19\">Hear, O earth: behold, I will bring evil upon this people, even the fruit of their thoughts, because they have not hearkened unto my words; and as for my law, they have rejected it.</VERS>\r\n      <VERS vnumber=\"20\">To what purpose cometh there to me frankincense from Sheba, and the sweet cane from a far country? your burnt-offerings are not acceptable, nor your sacrifices pleasing unto me.</VERS>\r\n      <VERS vnumber=\"21\">Therefore thus saith Jehovah, Behold, I will lay stumbling-blocks before this people; and the fathers and the sons together shall stumble against them; the neighbor and his friend shall perish.</VERS>\r\n      <VERS vnumber=\"22\">Thus saith Jehovah, Behold, a people cometh from the north country; and a great nation shall be stirred up from the uttermost parts of the earth.</VERS>\r\n      <VERS vnumber=\"23\">They lay hold on bow and spear; they are cruel, and have no mercy; their voice roareth like the sea, and they ride upon horses, every one set in array, as a man to the battle, against thee, O daughter of Zion.</VERS>\r\n      <VERS vnumber=\"24\">We have heard the report thereof; our hands wax feeble: anguish hath taken hold of us, [and] pangs as of a woman in travail.</VERS>\r\n      <VERS vnumber=\"25\">Go not forth into the field, nor walk by the way; for the sword of the enemy, [and] terror, are on every side.</VERS>\r\n      <VERS vnumber=\"26\">O 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 destroyer shall suddenly come upon us.</VERS>\r\n      <VERS vnumber=\"27\">I have made thee a trier [and] a fortress among my people; that thou mayest know and try their way.</VERS>\r\n      <VERS vnumber=\"28\">They are all grievous revolters, going about with slanders; they are brass and iron: they all of them deal corruptly.</VERS>\r\n      <VERS vnumber=\"29\">The bellows blow fiercely; the lead is consumed of the fire: in vain do they go on refining; for the wicked are not plucked away.</VERS>\r\n      <VERS vnumber=\"30\">Refuse silver shall men them, because Jehovah hath rejected them.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">The word that came to Jeremiah from Jehovah, saying,</VERS>\r\n      <VERS vnumber=\"2\">Stand in the gate of Jehovah`s house, and proclaim there this word, and say, Hear the word of Jehovah, all ye of Judah, that enter in at these gates to worship Jehovah.</VERS>\r\n      <VERS vnumber=\"3\">Thus saith Jehovah of hosts, the God of Israel, Amend your ways and your doings, and I will cause you to dwell in this place.</VERS>\r\n      <VERS vnumber=\"4\">Trust ye not in lying words, saying, The temple of Jehovah, the temple of Jehovah, the temple of Jehovah, are these.</VERS>\r\n      <VERS vnumber=\"5\">For if ye thoroughly amend your ways and your doings; if ye thoroughly execute justice between a man and his neighbor;</VERS>\r\n      <VERS vnumber=\"6\">if ye oppress not the sojourner, the fatherless, and the widow, and shed not innocent blood in this place, neither walk after other gods to your own hurt:</VERS>\r\n      <VERS vnumber=\"7\">then will I cause you to dwell in this place, in the land that I gave to your fathers, from of old even for evermore.</VERS>\r\n      <VERS vnumber=\"8\">Behold, ye trust in lying words, that cannot profit.</VERS>\r\n      <VERS vnumber=\"9\">Will ye steal, murder, and commit adultery, and swear falsely, and burn incense unto Baal, and walk after other gods that ye have not known,</VERS>\r\n      <VERS vnumber=\"10\">and come and stand before me in this house, which is called by my name, and say, We are delivered; that ye may do all these abominations?</VERS>\r\n      <VERS vnumber=\"11\">Is this house, which is called by my name, become a den of robbers in your eyes? Behold, I, even I, have seen it, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"12\">But go ye now unto my place which was in Shiloh, where I caused my name to dwell at the first, and see what I did to it for the wickedness of my people Israel.</VERS>\r\n      <VERS vnumber=\"13\">And now, because ye have done all these works, saith Jehovah, and I spake unto you, rising up early and speaking, but ye heard not; and I called you, but ye answered not:</VERS>\r\n      <VERS vnumber=\"14\">therefore will I do unto the 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 did to Shiloh.</VERS>\r\n      <VERS vnumber=\"15\">And I will cast you out of my sight, as I have cast out all your brethren, even the whole seed of Ephraim.</VERS>\r\n      <VERS vnumber=\"16\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"17\">Seest thou not what they do in the cities of Judah and in the streets of Jerusalem?</VERS>\r\n      <VERS vnumber=\"18\">The children gather wood, and the fathers kindle the fire, and the women knead the 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.</VERS>\r\n      <VERS vnumber=\"19\">Do they provoke me to anger? saith Jehovah; [do they] not [provoke] themselves, to the confusion of their own faces?</VERS>\r\n      <VERS vnumber=\"20\">Therefore thus saith the Lord Jehovah: Behold, mine anger and my wrath 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.</VERS>\r\n      <VERS vnumber=\"21\">Thus saith Jehovah of hosts, the God of Israel: Add your burnt-offerings unto your sacrifices, and eat ye flesh.</VERS>\r\n      <VERS vnumber=\"22\">For 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:</VERS>\r\n      <VERS vnumber=\"23\">but this thing I commanded them, saying, Hearken unto my voice, and I will be your God, and ye shall be my people; and walk ye in all the way that I command you, that it may be well with you.</VERS>\r\n      <VERS vnumber=\"24\">But they hearkened not, nor inclined their ear, but walked in [their own] counsels [and] in the stubbornness of their evil heart, and went backward, and not forward.</VERS>\r\n      <VERS vnumber=\"25\">Since the day that your fathers came forth out of the land of Egypt unto this day, I have sent unto you all my servants the prophets, daily rising up early and sending them:</VERS>\r\n      <VERS vnumber=\"26\">yet they hearkened not unto me, nor inclined their ear, but made their neck stiff: they did worse than their fathers.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And thou shalt say unto them, This is the nation that hath not hearkened to the voice of Jehovah their God, nor received instruction: truth is perished, and is cut off from their mouth.</VERS>\r\n      <VERS vnumber=\"29\">Cut off thy hair, [O Jerusalem], and cast it away, and take up a lamentation on the bare heights; for Jehovah hath rejected and forsaken the generation of his wrath.</VERS>\r\n      <VERS vnumber=\"30\">For the children of Judah have done that which is evil in my sight, saith Jehovah: they have set their abominations in the house which is called by my name, to defile it.</VERS>\r\n      <VERS vnumber=\"31\">And they have built the high places of Topheth, which is in the valley of the son of Hinnom, to burn their sons and their daughters in the fire; which I commanded not, neither came it into my mind.</VERS>\r\n      <VERS vnumber=\"32\">Therefore, behold, the days come, saith Jehovah, that it shall no more be called Topheth, nor The valley of the son of Hinnom, but The valley of Slaughter: for they shall bury in Topheth, till there be no place [to bury].</VERS>\r\n      <VERS vnumber=\"33\">And the dead bodies of this people shall be food for the birds of the heavens, and for the beasts of the earth; and none shall frighten them away.</VERS>\r\n      <VERS vnumber=\"34\">Then 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 become a waste.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">At that time, saith Jehovah, 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;</VERS>\r\n      <VERS vnumber=\"2\">and they shall spread them before the sun, and the moon, and all the host of heaven, which they have loved, and which they have served, and after which they have walked, and which they have sought, and which they have worshipped: they shall not be gathered, nor be buried, they shall be for dung upon the face of the earth.</VERS>\r\n      <VERS vnumber=\"3\">And death shall be chosen rather than life by all the residue that remain of this evil family, that remain in all the places whither I have driven them, saith Jehovah of hosts.</VERS>\r\n      <VERS vnumber=\"4\">Moreover thou shalt say unto them, Thus saith Jehovah: Shall men fall, and not rise up again? Shall one turn away, and not return?</VERS>\r\n      <VERS vnumber=\"5\">Why then is this people of Jerusalem slidden back by a perpetual backsliding? they hold fast deceit, they refuse to return.</VERS>\r\n      <VERS vnumber=\"6\">I hearkened and heard, but they spake not aright: no man repenteth him of his wickedness, saying, What have I done? every one turneth to his course, as a horse that rusheth headlong in the battle.</VERS>\r\n      <VERS vnumber=\"7\">Yea, the stork in the heavens knoweth her appointed times; and the turtle-dove and the swallow and the crane observe the time of their coming; but my people know not the law of Jehovah.</VERS>\r\n      <VERS vnumber=\"8\">How do ye say, We are wise, and the law of Jehovah is with us? But, behold, the false pen of the scribes hath wrought falsely.</VERS>\r\n      <VERS vnumber=\"9\">The wise men are put to shame, they are dismayed and taken: lo, they have rejected the word of Jehovah; and what manner of wisdom is in them?</VERS>\r\n      <VERS vnumber=\"10\">Therefore will I give their wives unto others, and their fields to them that shall possess 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.</VERS>\r\n      <VERS vnumber=\"11\">And they have healed the hurt of the daughter of my people slightly, saying, Peace, peace; when there is no peace.</VERS>\r\n      <VERS vnumber=\"12\">Were 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 Jehovah.</VERS>\r\n      <VERS vnumber=\"13\">I will utterly consume them, saith Jehovah: 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.</VERS>\r\n      <VERS vnumber=\"14\">Why do we sit still? assemble yourselves, and let us enter into the fortified cities, and let us be silent there; for Jehovah our God hath put us to silence, and given us water of gall to drink, because we have sinned against Jehovah.</VERS>\r\n      <VERS vnumber=\"15\">We looked for peace, but no good came; [and] for a time of healing, and, behold, dismay!</VERS>\r\n      <VERS vnumber=\"16\">The snorting of his horses is heard from Dan: at the sound of the neighing of his strong ones the whole land trembleth; for they are come, and have devoured the land and all that is in it; the city and those that dwell therein.</VERS>\r\n      <VERS vnumber=\"17\">For, behold, I will send serpents, adders, among you, which will not be charmed; and they shall bite you, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"18\">Oh that I could comfort myself against sorrow! my heart is faint within me.</VERS>\r\n      <VERS vnumber=\"19\">Behold, the voice of the cry of the daughter of my people from a land that is very far off: is not Jehovah in Zion? is not her King in her? Why have they provoked me to anger with their graven images, and with foreign vanities?</VERS>\r\n      <VERS vnumber=\"20\">The harvest is past, the summer is ended, and we are not saved.</VERS>\r\n      <VERS vnumber=\"21\">For the hurt of the daughter of my people am I hurt: I mourn; dismay hath taken hold on me.</VERS>\r\n      <VERS vnumber=\"22\">Is there no balm in Gilead? is there no physician there? why then is not the health of the daughter of my people recovered?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">Oh 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!</VERS>\r\n      <VERS vnumber=\"2\">Oh that I had in the wilderness a lodging-place of wayfaring men; that I might leave my people, and go from them! for they are all adulterers, an assembly of treacherous men.</VERS>\r\n      <VERS vnumber=\"3\">And they bend their tongue, [as it were] their bow, for falsehood; and they are grown strong in the land, but not for truth: for they proceed from evil to evil, and they know not me, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"4\">Take ye heed every one of his neighbor, and trust ye not in any brother; for every brother will utterly supplant, and every neighbor will go about with slanders.</VERS>\r\n      <VERS vnumber=\"5\">And they will deceive every one his neighbor, and will not speak the truth: they have taught their tongue to speak lies; they weary themselves to commit iniquity.</VERS>\r\n      <VERS vnumber=\"6\">Thy habitation is in the midst of deceit; through deceit they refuse to know me, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"7\">Therefore thus saith Jehovah of hosts, Behold, I will melt them, and try them; for how [else] should I do, because of the daughter of my people?</VERS>\r\n      <VERS vnumber=\"8\">Their tongue is a deadly arrow; it speaketh deceit: one speaketh peaceably to his neighbor with his mouth, but in his heart he layeth wait for him.</VERS>\r\n      <VERS vnumber=\"9\">Shall I not visit them for these things? saith Jehovah; shall not my soul be avenged on such a nation as this?</VERS>\r\n      <VERS vnumber=\"10\">For the mountains will I take up a weeping and wailing, and for the pastures of the wilderness a lamentation, because they are burned up, so that none passeth through; neither can men hear the voice of the cattle; both the birds of the heavens and the beasts are fled, they are gone.</VERS>\r\n      <VERS vnumber=\"11\">And I will make Jerusalem heaps, a dwelling-place of jackals; and I will make the cities of Judah a desolation, without inhabitant.</VERS>\r\n      <VERS vnumber=\"12\">Who is the wise man, that may understand this? and [who is] he to whom the mouth of Jehovah hath spoken, that he may declare it? wherefore is the land perished and burned up like a wilderness, so that none passeth through?</VERS>\r\n      <VERS vnumber=\"13\">And Jehovah saith, Because they have forsaken my law which I set before them, and have not obeyed my voice, neither walked therein,</VERS>\r\n      <VERS vnumber=\"14\">but have walked after the stubbornness of their own heart, and after the Baalim, which their fathers taught them;</VERS>\r\n      <VERS vnumber=\"15\">therefore thus saith Jehovah of hosts, the God of Israel, Behold, I will feed them, even this people, with wormwood, and give them water of gall to drink.</VERS>\r\n      <VERS vnumber=\"16\">I will scatter them also among the nations, whom neither they nor their fathers have known; and I will send the sword after them, till I have consumed them.</VERS>\r\n      <VERS vnumber=\"17\">Thus saith Jehovah of hosts, Consider ye, and call for the mourning women, that they may come; and send for the skilful women, that they may come:</VERS>\r\n      <VERS vnumber=\"18\">and 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.</VERS>\r\n      <VERS vnumber=\"19\">For a voice of wailing is heard out of Zion, How are we ruined! we are greatly confounded, because we have forsaken the land, because they have cast down our dwellings.</VERS>\r\n      <VERS vnumber=\"20\">Yet hear the word of Jehovah, O ye women, and let your ear receive the word of his mouth; and teach your daughters wailing, and every one her neighbor lamentation.</VERS>\r\n      <VERS vnumber=\"21\">For death is come up into our windows, it is entered into our palaces; to cut off the children from without, [and] the young men from the streets.</VERS>\r\n      <VERS vnumber=\"22\">Speak, Thus saith Jehovah, The dead bodies of men shall fall as dung upon the open field, and as the handful after the harvestman; and none shall gather [them].</VERS>\r\n      <VERS vnumber=\"23\">Thus saith Jehovah, 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;</VERS>\r\n      <VERS vnumber=\"24\">but let him that glorieth glory in this, that he hath understanding, and knoweth me, that I am Jehovah who exerciseth lovingkindness, justice, and righteousness, in the earth: for in these things I delight, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"25\">Behold, the days come, saith Jehovah, that I will punish all them that are circumcised in [their] uncircumcision:</VERS>\r\n      <VERS vnumber=\"26\">Egypt, and Judah, and Edom, and the children of Ammon, and Moab, and all that have the corners [of their hair] cut off, that dwell in the wilderness; for all the nations are uncircumcised, and all the house of Israel are uncircumcised in heart.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">Hear ye the word which Jehovah speaketh unto you, O house of Israel:</VERS>\r\n      <VERS vnumber=\"2\">thus saith Jehovah, Learn not the way of the nations, and be not dismayed at the signs of heaven; for the nations are dismayed at them.</VERS>\r\n      <VERS vnumber=\"3\">For the customs of the peoples are vanity; for one cutteth a tree out of the forest, the work of the hands of the workman with the axe.</VERS>\r\n      <VERS vnumber=\"4\">They deck it with silver and with gold; they fasten it with nails and with hammers, that it move not.</VERS>\r\n      <VERS vnumber=\"5\">They are like a palm-tree, of turned work, and speak not: they must needs be borne, because they cannot go. Be not afraid of them; for they cannot do evil, neither is it in them to do good.</VERS>\r\n      <VERS vnumber=\"6\">There is none like unto thee, O Jehovah; thou art great, and thy name is great in might.</VERS>\r\n      <VERS vnumber=\"7\">Who should not fear thee, O King of the nations? for to thee doth it appertain; forasmuch as among all the wise men of the nations, and in all their royal estate, there is none like unto thee.</VERS>\r\n      <VERS vnumber=\"8\">But they are together brutish and foolish: the instruction of idols! it is but a stock.</VERS>\r\n      <VERS vnumber=\"9\">There is silver beaten into plates, which is brought from Tarshish, and gold from Uphaz, the work of the artificer and of the hands of the goldsmith; blue and purple for their clothing; they are all the work of skilful men.</VERS>\r\n      <VERS vnumber=\"10\">But Jehovah is the true God; he is the living God, and an everlasting King: at his wrath the earth trembleth, and the nations are not able to abide his indignation.</VERS>\r\n      <VERS vnumber=\"11\">Thus shall ye say unto them, The gods that have not made the heavens and the earth, these shall perish from the earth, and from under the heavens.</VERS>\r\n      <VERS vnumber=\"12\">He hath made the earth by his power, he hath established the world by his wisdom, and by his understanding hath he stretched out the heavens:</VERS>\r\n      <VERS vnumber=\"13\">when he uttereth his voice, there is a tumult of waters in the heavens, and he causeth the vapors to ascend from the ends of the earth; he maketh lightnings for the rain, and bringeth forth the wind out of his treasuries.</VERS>\r\n      <VERS vnumber=\"14\">Every man is become brutish [and is] without knowledge; every goldsmith is put to shame by his graven image; for his molten image is falsehood, and there is no breath in them.</VERS>\r\n      <VERS vnumber=\"15\">They are vanity, a work of delusion: in the time of their visitation they shall perish.</VERS>\r\n      <VERS vnumber=\"16\">The portion of Jacob is not like these; for he is the former of all things; and Israel is the tribe of his inheritance: Jehovah of hosts is his name.</VERS>\r\n      <VERS vnumber=\"17\">Gather up thy wares out of the land, O thou that abidest in the siege.</VERS>\r\n      <VERS vnumber=\"18\">For thus saith Jehovah, Behold, I will sling out the inhabitants of the land at this time, and will distress them, that they may feel [it].</VERS>\r\n      <VERS vnumber=\"19\">Woe is me because of my hurt! my wound is grievous: but I said, Truly this is [my] grief, and I must bear it.</VERS>\r\n      <VERS vnumber=\"20\">My tent is destroyed, and all my cords are broken: my children are gone forth from me, and they are not: there is none to spread my tent any more, and to set up my curtains.</VERS>\r\n      <VERS vnumber=\"21\">For the shepherds are become brutish, and have not inquired of Jehovah: therefore they have not prospered, and all their flocks are scattered.</VERS>\r\n      <VERS vnumber=\"22\">The voice of tidings, behold, it cometh, and a great commotion out of the north country, to make the cities of Judah a desolation, a dwelling-place of jackals.</VERS>\r\n      <VERS vnumber=\"23\">O Jehovah, I know that the way of man is not in himself: it is not in man that walketh to direct his steps.</VERS>\r\n      <VERS vnumber=\"24\">O Jehovah, correct me, but in measure: not in thine anger, lest thou bring me to nothing.</VERS>\r\n      <VERS vnumber=\"25\">Pour out thy wrath upon the nations that know thee not, and upon the families that call not on thy name: for they have devoured Jacob, yea, they have devoured him and consumed him, and have laid waste his habitation.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">The word that came to Jeremiah from Jehovah, saying,</VERS>\r\n      <VERS vnumber=\"2\">Hear ye the words of this covenant, and speak unto the men of Judah, and to the inhabitants of Jerusalem;</VERS>\r\n      <VERS vnumber=\"3\">and say thou unto them, Thus saith Jehovah, the God of Israel: Cursed be the man that heareth not the words of this covenant,</VERS>\r\n      <VERS vnumber=\"4\">which I commanded your fathers in the day that I brought them forth out of the land of Egypt, out of 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;</VERS>\r\n      <VERS vnumber=\"5\">that I may establish the oath which I sware unto your fathers, to give them a land flowing with milk and honey, as at this day. Then answered I, and said, Amen, O Jehovah.</VERS>\r\n      <VERS vnumber=\"6\">And Jehovah 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.</VERS>\r\n      <VERS vnumber=\"7\">For 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.</VERS>\r\n      <VERS vnumber=\"8\">Yet they obeyed not, nor inclined their ear, but walked every one in the stubbornness of their evil heart: therefore I brought upon them all the words of this covenant, which I commanded them to do, but they did them not.</VERS>\r\n      <VERS vnumber=\"9\">And Jehovah said unto me, A conspiracy is found among the men of Judah, and among the inhabitants of Jerusalem.</VERS>\r\n      <VERS vnumber=\"10\">They are turned back to the iniquities of their forefathers, who refused to hear my words; and they are gone 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.</VERS>\r\n      <VERS vnumber=\"11\">Therefore thus saith Jehovah, Behold, I will bring evil upon them, which they shall not be able to escape; and they shall cry unto me, but I will not hearken unto them.</VERS>\r\n      <VERS vnumber=\"12\">Then shall the cities of Judah and the inhabitants of Jerusalem go and cry unto the gods unto which they offer incense: but they will not save them at all in the time of their trouble.</VERS>\r\n      <VERS vnumber=\"13\">For according to the number of thy cities are thy gods, O Judah; and according to the number of the streets of Jerusalem have ye set up altars to the shameful thing, even altars to burn incense unto Baal.</VERS>\r\n      <VERS vnumber=\"14\">Therefore pray not thou for this people, neither lift up cry nor prayer for them; for I will not hear them in the time that they cry unto me because of their trouble.</VERS>\r\n      <VERS vnumber=\"15\">What hath my beloved to do in my house, seeing she hath wrought lewdness [with] many, and the holy flesh is passed from thee? when thou doest evil, then thou rejoicest.</VERS>\r\n      <VERS vnumber=\"16\">Jehovah called thy name, A green olive-tree, fair with goodly fruit: with the noise of a great tumult he hath kindled fire upon it, and the branches of it are broken.</VERS>\r\n      <VERS vnumber=\"17\">For Jehovah of hosts, who planted thee, hath pronounced evil against thee, because of the evil of the house of Israel and of the house of Judah, which they have wrought for themselves in provoking me to anger by offering incense unto Baal.</VERS>\r\n      <VERS vnumber=\"18\">And Jehovah gave me knowledge of it, and I knew it: then thou showedst me their doings.</VERS>\r\n      <VERS vnumber=\"19\">But I was like a gentle lamb that is led 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.</VERS>\r\n      <VERS vnumber=\"20\">But, O Jehovah of hosts, who judgest righteously, who triest the heart and the mind, I shall see thy vengeance on them; for unto thee have I revealed my cause.</VERS>\r\n      <VERS vnumber=\"21\">Therefore thus saith Jehovah concerning the men of Anathoth, that seek thy life, saying, Thou shalt not prophesy in the name of Jehovah, that thou die not by our hand;</VERS>\r\n      <VERS vnumber=\"22\">therefore thus saith Jehovah of hosts, Behold, I will punish them: the young men shall die by the sword; their sons and their daughters shall die by famine;</VERS>\r\n      <VERS vnumber=\"23\">and there shall be no remnant unto them: for I will bring evil upon the men of Anathoth, even the year of their visitation.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">Righteous art thou, O Jehovah, when I contend with thee; yet would I reason the cause with thee: wherefore doth the way of the wicked prosper? wherefore are all they at ease that deal very treacherously?</VERS>\r\n      <VERS vnumber=\"2\">Thou 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 heart.</VERS>\r\n      <VERS vnumber=\"3\">But thou, O Jehovah, knowest me; thou seest me, and triest my heart toward thee: pull them out like sheep for the slaughter, and prepare them for the day of slaughter.</VERS>\r\n      <VERS vnumber=\"4\">How long shall the land mourn, and the herbs of the whole country wither? for the wickedness of them that dwell therein, the beasts are consumed, and the birds; because they said, He shall not see our latter end.</VERS>\r\n      <VERS vnumber=\"5\">If thou hast run with the footmen, and they have wearied thee, then how canst thou contend with horses? and though in a land of peace thou art secure, yet how wilt thou do in the pride of the Jordan?</VERS>\r\n      <VERS vnumber=\"6\">For even thy brethren, and the house of thy father, even they have dealt treacherously with thee; even they have cried aloud after thee: believe them not, though they speak fair words unto thee.</VERS>\r\n      <VERS vnumber=\"7\">I have forsaken my house, I have cast off my heritage; I have given the dearly beloved of my soul into the hand of her enemies.</VERS>\r\n      <VERS vnumber=\"8\">My heritage is become unto me as a lion in the forest: she hath uttered her voice against me; therefore I have hated her.</VERS>\r\n      <VERS vnumber=\"9\">Is my heritage unto me as a speckled bird of prey? are the birds of prey against her round about? go ye, assemble all the beasts of the field, bring them to devour.</VERS>\r\n      <VERS vnumber=\"10\">Many shepherds have destroyed my vineyard, they have trodden my portion under foot, they have made my pleasant portion a desolate wilderness.</VERS>\r\n      <VERS vnumber=\"11\">They have made it a desolation; it mourneth unto me, being desolate; the whole land is made desolate, because no man layeth it to heart.</VERS>\r\n      <VERS vnumber=\"12\">Destroyers are come upon all the bare heights in the wilderness; for the sword of Jehovah devoureth from the one end of the land even to the other end of the land: no flesh hath peace.</VERS>\r\n      <VERS vnumber=\"13\">They have sown wheat, and have reaped thorns; they have put themselves to pain, and profit nothing: and ye shall be ashamed of your fruits, because of the fierce anger of Jehovah.</VERS>\r\n      <VERS vnumber=\"14\">Thus saith Jehovah against all mine evil neighbors, that touch the inheritance which I have caused my people Israel to inherit: behold, I will pluck them up from off their land, and will pluck up the house of Judah from among them.</VERS>\r\n      <VERS vnumber=\"15\">And it shall come to pass, after that I have plucked them up, I will return and have compassion on them; and I will bring them again, every man to his heritage, and every man to his land.</VERS>\r\n      <VERS vnumber=\"16\">And it shall come to pass, if they will diligently learn the ways of my people, to swear by my name, As Jehovah liveth; even as they taught my people to swear by Baal; then shall they be built up in the midst of my people.</VERS>\r\n      <VERS vnumber=\"17\">But if they will not hear, then will I pluck up that nation, plucking up and destroying it, saith Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">Thus saith Jehovah unto me, Go, and buy thee a linen girdle, and put it upon thy loins, and put it not in water.</VERS>\r\n      <VERS vnumber=\"2\">So I bought a girdle according to the word of Jehovah, and put it upon my loins.</VERS>\r\n      <VERS vnumber=\"3\">And the word of Jehovah came unto me the second time, saying,</VERS>\r\n      <VERS vnumber=\"4\">Take the girdle that thou hast bought, which is upon thy loins, and arise, go to the Euphrates, and hide it there in a cleft of the rock.</VERS>\r\n      <VERS vnumber=\"5\">So I went, and hid it by the Euphrates, as Jehovah commanded me.</VERS>\r\n      <VERS vnumber=\"6\">And it came to pass after many days, that Jehovah said unto me, Arise, go to the Euphrates, and take the girdle from thence, which I commanded thee to hide there.</VERS>\r\n      <VERS vnumber=\"7\">Then I went to the 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.</VERS>\r\n      <VERS vnumber=\"8\">Then the word of Jehovah came unto me, saying,</VERS>\r\n      <VERS vnumber=\"9\">Thus saith Jehovah, After this manner will I mar the pride of Judah, and the great pride of Jerusalem.</VERS>\r\n      <VERS vnumber=\"10\">This evil people, that refuse to hear my words, that walk in the stubbornness of their heart, and are gone after other gods to serve them, and to worship them, shall even be as this girdle, which is profitable for nothing.</VERS>\r\n      <VERS vnumber=\"11\">For 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 Jehovah; that they may be unto me for a people, and for a name, and for a praise, and for a glory: but they would not hear.</VERS>\r\n      <VERS vnumber=\"12\">Therefore thou shalt speak unto them this word: Thus saith Jehovah, the 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?</VERS>\r\n      <VERS vnumber=\"13\">Then shalt thou say unto them, Thus saith Jehovah, 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.</VERS>\r\n      <VERS vnumber=\"14\">And I will dash them one against another, even the fathers and the sons together, saith Jehovah: I will not pity, nor spare, nor have compassion, that I should not destroy them.</VERS>\r\n      <VERS vnumber=\"15\">Hear ye, and give ear; be not proud; for Jehovah hath spoken.</VERS>\r\n      <VERS vnumber=\"16\">Give glory to Jehovah 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.</VERS>\r\n      <VERS vnumber=\"17\">But if ye will not hear it, my soul shall weep in secret for [your] pride; and mine eye shall weep sore, and run down with tears, because Jehovah`s flock is taken captive.</VERS>\r\n      <VERS vnumber=\"18\">Say thou unto the king and to the queen-mother, Humble yourselves, sit down; for your headtires are come down, even the crown of your glory.</VERS>\r\n      <VERS vnumber=\"19\">The cities of the South are shut up, and there is none to open them: Judah is carried away captive, all of it; it is wholly carried away captive.</VERS>\r\n      <VERS vnumber=\"20\">Lift up your eyes, and behold them that come from the north: where is the flock that was given thee, thy beautiful flock?</VERS>\r\n      <VERS vnumber=\"21\">What wilt thou say, when he shall set over thee as head those whom thou hast thyself taught to be friends to thee? shall not sorrows take hold of thee, as of a woman in travail?</VERS>\r\n      <VERS vnumber=\"22\">And if thou say in thy heart, Wherefore are these things come upon me? for the greatness of thine iniquity are thy skirts uncovered, and thy heels suffer violence.</VERS>\r\n      <VERS vnumber=\"23\">Can the Ethiopian change his skin, or the leopard his spots? then may ye also do good, that are accustomed to do evil.</VERS>\r\n      <VERS vnumber=\"24\">Therefore will I scatter them, as the stubble that passeth away, by the wind of the wilderness.</VERS>\r\n      <VERS vnumber=\"25\">This is thy lot, the portion measured unto thee from me, saith Jehovah; because thou hast forgotten me, and trusted in falsehood.</VERS>\r\n      <VERS vnumber=\"26\">Therefore will I also uncover thy skirts upon thy face, and thy shame shall appear.</VERS>\r\n      <VERS vnumber=\"27\">I have seen thine abominations, even thine adulteries, and thy neighings, the lewdness of thy whoredom, on the hills in the field. Woe unto thee, O Jerusalem! thou wilt not be made clean; how long shall it yet be?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">The word of Jehovah that came to Jeremiah concerning the drought.</VERS>\r\n      <VERS vnumber=\"2\">Judah mourneth, and the gates thereof languish, they sit in black upon the ground; and the cry of Jerusalem is gone up.</VERS>\r\n      <VERS vnumber=\"3\">And their nobles send their little ones to the waters: they come to the cisterns, and find no water; they return with their vessels empty; they are put to shame and confounded, and cover their heads.</VERS>\r\n      <VERS vnumber=\"4\">Because of the ground which is cracked, for that no rain hath been in the land, the plowmen are put to shame, they cover their heads.</VERS>\r\n      <VERS vnumber=\"5\">Yea, the hind also in the field calveth, and forsaketh [her young], because there is no grass.</VERS>\r\n      <VERS vnumber=\"6\">And the wild asses stand on the bare heights, they pant for air like jackals; their eyes fail, because there is no herbage.</VERS>\r\n      <VERS vnumber=\"7\">Though our iniquities testify against us, work thou for thy name`s sake, O Jehovah; for our backslidings are many; we have sinned against thee.</VERS>\r\n      <VERS vnumber=\"8\">O thou hope of Israel, the Saviour thereof in the time of trouble, why shouldest thou be as a sojourner in the land, and as a wayfaring man that turneth aside to tarry for a night?</VERS>\r\n      <VERS vnumber=\"9\">Why shouldest thou be as a man affrighted, as a mighty man that cannot save? yet thou, O Jehovah, art in the midst of us, and we are called by thy name; leave us not.</VERS>\r\n      <VERS vnumber=\"10\">Thus saith Jehovah unto this people, Even so have they loved to wander; they have not refrained their feet: therefore Jehovah doth not accept them; now will he remember their iniquity, and visit their sins.</VERS>\r\n      <VERS vnumber=\"11\">And Jehovah said unto me, Pray not for this people for [their] good.</VERS>\r\n      <VERS vnumber=\"12\">When they fast, I will not hear their cry; and when they offer burnt-offering and meal-offering, I will not accept them; but I will consume them by the sword, and by the famine, and by the pestilence.</VERS>\r\n      <VERS vnumber=\"13\">Then said I, Ah, Lord Jehovah! 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.</VERS>\r\n      <VERS vnumber=\"14\">Then Jehovah said unto me, The prophets prophesy lies in my name; I sent them not, neither have I commanded them, neither spake I unto them: they prophesy unto you a lying vision, and divination, and a thing of nought, and the deceit of their own heart.</VERS>\r\n      <VERS vnumber=\"15\">Therefore thus saith Jehovah 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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 wound.</VERS>\r\n      <VERS vnumber=\"18\">If I go forth into the field, then, behold, the slain with the sword! and if I enter into the city, then, behold, they that are sick with famine! for both the prophet and the priest go about in the land, and have no knowledge.</VERS>\r\n      <VERS vnumber=\"19\">Hast thou utterly rejected Judah? hath thy soul loathed Zion? why hast thou smitten us, and there is no healing for us? We looked for peace, but no good came; and for a time of healing, and, behold, dismay!</VERS>\r\n      <VERS vnumber=\"20\">We acknowledge, O Jehovah, our wickedness, and the iniquity of our fathers; for we have sinned against thee.</VERS>\r\n      <VERS vnumber=\"21\">Do not abhor [us], for thy name`s sake; do not disgrace the throne of thy glory: remember, break not thy covenant with us.</VERS>\r\n      <VERS vnumber=\"22\">Are there any among the vanities of the nations that can cause rain? or can the heavens give showers? art not thou he, O Jehovah our God? therefore we will wait for thee; for thou hast made all these things.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">Then said Jehovah unto me, Though Moses and Samuel stood before me, yet my mind would not be toward this people: cast them out of my sight, and let them go forth.</VERS>\r\n      <VERS vnumber=\"2\">And it shall come to pass, when they say unto thee, Whither shall we go forth? then thou shalt tell them, Thus saith Jehovah: 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 captivity, to captivity.</VERS>\r\n      <VERS vnumber=\"3\">And I will appoint over them four kinds, saith Jehovah: the sword to slay, and the dogs to tear, and the birds of the heavens, and the beasts of the earth, to devour and to destroy.</VERS>\r\n      <VERS vnumber=\"4\">And I will cause them to be tossed to and fro among all the kingdoms of the earth, because of Manasseh, the son of Hezekiah, king of Judah, for that which he did in Jerusalem.</VERS>\r\n      <VERS vnumber=\"5\">For who will have pity upon thee, O Jerusalem? or who will bemoan thee? or who will turn aside to ask of thy welfare?</VERS>\r\n      <VERS vnumber=\"6\">Thou hast rejected me, saith Jehovah, thou art gone backward: therefore have I stretched out my hand against thee, and destroyed thee; I am weary with repenting.</VERS>\r\n      <VERS vnumber=\"7\">And I have winnowed them with a fan in the gates of the land; I have bereaved [them] of children, I have destroyed my people; they returned not from their ways.</VERS>\r\n      <VERS vnumber=\"8\">Their widows are increased to me above the sand of the seas; I have brought upon them against the mother of the young men a destroyer at noonday: I have caused anguish and terrors to fall upon her suddenly.</VERS>\r\n      <VERS vnumber=\"9\">She that hath borne seven languisheth; she hath given up the ghost; her sun is gone down while it was yet day; she hath been put to shame and confounded: and the residue of them will I deliver to the sword before their enemies, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"10\">Woe is me, my mother, that thou hast borne me a man of strife and a man of contention to the whole earth! I have not lent, neither have men lent to me; [yet] every one of them doth curse me.</VERS>\r\n      <VERS vnumber=\"11\">Jehovah said, Verily I will strengthen thee for good; verily I will cause the enemy to make supplication unto thee in the time of evil and in the time of affliction.</VERS>\r\n      <VERS vnumber=\"12\">Can one break iron, even iron from the north, and brass?</VERS>\r\n      <VERS vnumber=\"13\">Thy substance and thy treasures will I give for a spoil without price, and that for all thy sins, even in all thy borders.</VERS>\r\n      <VERS vnumber=\"14\">And I will make [them] 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.</VERS>\r\n      <VERS vnumber=\"15\">O Jehovah, thou knowest; remember me, and visit me, and avenge me of my persecutors; take me not away in thy longsuffering: know that for thy sake I have suffered reproach.</VERS>\r\n      <VERS vnumber=\"16\">Thy words were found, and I did eat them; and thy words were unto me a joy and the rejoicing of my heart: for I am called by thy name, O Jehovah, God of hosts.</VERS>\r\n      <VERS vnumber=\"17\">I sat not in the assembly of them that make merry, nor rejoiced; I sat alone because of thy hand; for thou hast filled me with indignation.</VERS>\r\n      <VERS vnumber=\"18\">Why is my pain perpetual, and my wound incurable, which refuseth to be healed? wilt thou indeed be unto me as a deceitful [brook], as waters that fail?</VERS>\r\n      <VERS vnumber=\"19\">Therefore thus saith Jehovah, If thou return, then will I bring thee again, that thou mayest stand before me; and if thou take forth the precious from the vile, thou shalt be as my mouth: they shall return unto thee, but thou shalt not return unto them.</VERS>\r\n      <VERS vnumber=\"20\">And I will make thee unto this people a fortified brazen 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 Jehovah.</VERS>\r\n      <VERS vnumber=\"21\">And I will deliver thee out of the hand of the wicked, and I will redeem thee out of the hand of the terrible.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">The word of Jehovah came also unto me, saying,</VERS>\r\n      <VERS vnumber=\"2\">Thou shalt not take thee a wife, neither shalt thou have sons or daughters, in this place.</VERS>\r\n      <VERS vnumber=\"3\">For thus saith Jehovah 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:</VERS>\r\n      <VERS vnumber=\"4\">They shall die grievous deaths: they shall not be lamented, neither shall they be buried; they shall be as dung upon the face of the ground; and they shall be consumed by the sword, and by famine; and their dead bodies shall be food for the birds of the heavens, and for the beasts of the earth.</VERS>\r\n      <VERS vnumber=\"5\">For thus saith Jehovah, Enter not into the house of mourning, neither go to lament, neither bemoan them; for I have taken away my peace from this people, saith Jehovah, even lovingkindness and tender mercies.</VERS>\r\n      <VERS vnumber=\"6\">Both great and 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;</VERS>\r\n      <VERS vnumber=\"7\">neither shall men break [bread] 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.</VERS>\r\n      <VERS vnumber=\"8\">And thou shalt not go into the house of feasting to sit with them, to eat and to drink.</VERS>\r\n      <VERS vnumber=\"9\">For thus saith Jehovah of hosts, the God of Israel: Behold, I will cause to cease out of this place, before 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.</VERS>\r\n      <VERS vnumber=\"10\">And it shall come to pass, when thou shalt show this people all these words, and they shall say unto thee, Wherefore hath Jehovah pronounced all this great evil against us? or what is our iniquity? or what is our sin that we have committed against Jehovah our God?</VERS>\r\n      <VERS vnumber=\"11\">Then shalt thou say unto them, Because your fathers have forsaken me, saith Jehovah, and have walked after other gods, and have served them, and have worshipped them, and have forsaken me, and have not kept my law;</VERS>\r\n      <VERS vnumber=\"12\">and ye have done evil more than your fathers; for, behold, ye walk every one after the stubbornness of his evil heart, so that ye hearken not unto me:</VERS>\r\n      <VERS vnumber=\"13\">therefore will I cast you forth out of this land into the land that ye have not known, neither ye nor your fathers; and there shall ye serve other gods day and night; for I will show you no favor.</VERS>\r\n      <VERS vnumber=\"14\">Therefore, behold, the days come, saith Jehovah, that it shall no more be said, As Jehovah liveth, that brought up the children of Israel out of the land of Egypt;</VERS>\r\n      <VERS vnumber=\"15\">but, As Jehovah liveth, that brought up the children of Israel from the land of the north, and from all the countries whither he had driven them. And I will bring them again into their land that I gave unto their fathers.</VERS>\r\n      <VERS vnumber=\"16\">Behold, I will send for many fishers, saith Jehovah, and they shall fish them up; and afterward I will send for many hunters, and they shall hunt them from every mountain, and from every hill, and out of the clefts of the rocks.</VERS>\r\n      <VERS vnumber=\"17\">For mine eyes are upon all their ways; they are not hid from my face, neither is their iniquity concealed from mine eyes.</VERS>\r\n      <VERS vnumber=\"18\">And first I will recompense their iniquity and their sin double, because they have polluted my land with the carcasses of their detestable things, and have filled mine inheritance with their abominations.</VERS>\r\n      <VERS vnumber=\"19\">O Jehovah, my strength, and my stronghold, and my refuge in the day of affliction, unto thee shall the nations come from the ends of the earth, and shall say, Our fathers have inherited nought but lies, [even] vanity and things wherein there is no profit.</VERS>\r\n      <VERS vnumber=\"20\">Shall a man make unto himself gods, which yet are no gods?</VERS>\r\n      <VERS vnumber=\"21\">Therefore, behold, I will cause them to know, this once will I cause them to know my hand and my might; and they shall know that my name is Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"17\">\r\n      <VERS vnumber=\"1\">The sin of Judah is written with a pen of iron, [and] with the point of a diamond: it is graven upon the tablet of their heart, and upon the horns of your altars;</VERS>\r\n      <VERS vnumber=\"2\">whilst their children remember their altars and their Asherim by the green trees upon the high hills.</VERS>\r\n      <VERS vnumber=\"3\">O my mountain in the field, I will give thy substance and all thy treasures for a spoil, [and] thy high places, because of sin, throughout all thy borders.</VERS>\r\n      <VERS vnumber=\"4\">And thou, even of thyself, shalt discontinue from thy 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.</VERS>\r\n      <VERS vnumber=\"5\">Thus saith Jehovah: Cursed is the man that trusteth in man, and maketh flesh his arm, and whose heart departeth from Jehovah.</VERS>\r\n      <VERS vnumber=\"6\">For 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, a salt land and not inhabited.</VERS>\r\n      <VERS vnumber=\"7\">Blessed is the man that trusteth in Jehovah, and whose trust Jehovah is.</VERS>\r\n      <VERS vnumber=\"8\">For he shall be as a tree planted by the waters, that spreadeth out its roots by the river, and shall not fear when heat cometh, but its leaf shall be green; and shall not be careful in the year of drought, neither shall cease from yielding fruit.</VERS>\r\n      <VERS vnumber=\"9\">The heart is deceitful above all things, and it is exceedingly corrupt: who can know it?</VERS>\r\n      <VERS vnumber=\"10\">I, Jehovah, search the mind, I try the heart, even to give every man according to his ways, according to the fruit of his doings.</VERS>\r\n      <VERS vnumber=\"11\">As the partridge that sitteth on [eggs] which she hath not laid, so is he that getteth riches, and not by right; in the midst of his days they shall leave him, and at his end he shall be a fool.</VERS>\r\n      <VERS vnumber=\"12\">A glorious throne, [set] on high from the beginning, is the place of our sanctuary.</VERS>\r\n      <VERS vnumber=\"13\">O Jehovah, the hope of Israel, all that forsake thee shall be put to shame. They that depart from me shall be written in the earth, because they have forsaken Jehovah, the fountain of living waters.</VERS>\r\n      <VERS vnumber=\"14\">Heal me, O Jehovah, and I shall be healed; save me, and I shall be saved: for thou art my praise.</VERS>\r\n      <VERS vnumber=\"15\">Behold, they say unto me, Where is the word of Jehovah? let it come now.</VERS>\r\n      <VERS vnumber=\"16\">As for me, I have not hastened from being a shepherd after thee; neither have I desired the woeful day; thou knowest: that which came out of my lips was before thy face.</VERS>\r\n      <VERS vnumber=\"17\">Be not a terror unto me: thou art my refuge in the day of evil.</VERS>\r\n      <VERS vnumber=\"18\">Let them be put to shame that persecute me, but let not me be put to shame; let them be dismayed, but let not me be dismayed; bring upon them the day of evil, and destroy them with double destruction.</VERS>\r\n      <VERS vnumber=\"19\">Thus said Jehovah unto me: Go, and stand in the gate of the children of the people, whereby the kings of Judah come in, and by which they go out, and in all the gates of Jerusalem;</VERS>\r\n      <VERS vnumber=\"20\">and say unto them, Hear ye the word of Jehovah, ye kings of Judah, and all Judah, and all the inhabitants of Jerusalem, that enter in by these gates:</VERS>\r\n      <VERS vnumber=\"21\">Thus saith Jehovah, Take heed to yourselves, and bear no burden on the sabbath day, nor bring it in by the gates of Jerusalem;</VERS>\r\n      <VERS vnumber=\"22\">neither 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.</VERS>\r\n      <VERS vnumber=\"23\">But they hearkened not, neither inclined their ear, but made their neck stiff, that they might not hear, and might not receive instruction.</VERS>\r\n      <VERS vnumber=\"24\">And it shall come to pass, if ye diligently hearken unto me, saith Jehovah, to bring in no burden through the gates of this city on the sabbath day, but to hallow the sabbath day, to do no work therein;</VERS>\r\n      <VERS vnumber=\"25\">then shall there enter in by 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.</VERS>\r\n      <VERS vnumber=\"26\">And they shall come from the cities of Judah, and from the places round about Jerusalem, and from the land of Benjamin, and from the lowland, and from the hill-country, and from the South, bringing burnt-offerings, and sacrifices, and meal-offerings, and frankincense, and bringing [sacrifices of] thanksgiving, unto the house of Jehovah.</VERS>\r\n      <VERS vnumber=\"27\">But if ye will not hearken unto me to hallow the sabbath day, and not to bear a burden and enter 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"18\">\r\n      <VERS vnumber=\"1\">The word which came to Jeremiah from Jehovah, saying,</VERS>\r\n      <VERS vnumber=\"2\">Arise, and go down to the potter`s house, and there I will cause thee to hear my words.</VERS>\r\n      <VERS vnumber=\"3\">Then I went down to the potter`s house, and, behold, he was making a work on the wheels.</VERS>\r\n      <VERS vnumber=\"4\">And when the vessel that he made of the clay was marred in the hand of the potter, he made it again another vessel, as seemed good to the potter to make it.</VERS>\r\n      <VERS vnumber=\"5\">Then the word of Jehovah came to me, saying,</VERS>\r\n      <VERS vnumber=\"6\">O house of Israel, cannot I do with you as this potter? saith Jehovah. Behold, as the clay in the potter`s hand, so are ye in my hand, O house of Israel.</VERS>\r\n      <VERS vnumber=\"7\">At what instant I shall speak concerning a nation, and concerning a kingdom, to pluck up and to break down and to destroy it;</VERS>\r\n      <VERS vnumber=\"8\">if that nation, concerning which I have spoken, turn from their evil, I will repent of the evil that I thought to do unto them.</VERS>\r\n      <VERS vnumber=\"9\">And at what instant I shall speak concerning a nation, and concerning a kingdom, to build and to plant it;</VERS>\r\n      <VERS vnumber=\"10\">if they do that which is evil in my sight, that they obey not my voice, then I will repent of the good, wherewith I said I would benefit them.</VERS>\r\n      <VERS vnumber=\"11\">Now therefore, speak to the men of Judah, and to the inhabitants of Jerusalem, saying, Thus saith Jehovah: Behold, I frame evil against you, and devise a device against you: return ye now every one from his evil way, and amend your ways and your doings.</VERS>\r\n      <VERS vnumber=\"12\">But they say, It is in vain; for we will walk after our own devices, and we will do every one after the stubbornness of his evil heart.</VERS>\r\n      <VERS vnumber=\"13\">Therefore thus saith Jehovah: Ask ye now among the nations, who hath heard such things; the virgin of Israel hath done a very horrible thing.</VERS>\r\n      <VERS vnumber=\"14\">Shall the snow of Lebanon fail from the rock of the field? [or] shall the cold waters that flow down from afar be dried up?</VERS>\r\n      <VERS vnumber=\"15\">For my people have forgotten me, they have burned incense to false [gods]; and they have been made to stumble in their ways, in the ancient paths, to walk in bypaths, in a way not cast up;</VERS>\r\n      <VERS vnumber=\"16\">to make their land an astonishment, and a perpetual hissing; every one that passeth thereby shall be astonished, and shake his head.</VERS>\r\n      <VERS vnumber=\"17\">I will scatter them as with an east wind before the enemy; I will show them the back, and not the face, in the day of their calamity.</VERS>\r\n      <VERS vnumber=\"18\">Then 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.</VERS>\r\n      <VERS vnumber=\"19\">Give heed to me, O Jehovah, and hearken to the voice of them that contend with me.</VERS>\r\n      <VERS vnumber=\"20\">Shall evil be recompensed for good? for they have digged a pit for my soul. Remember how I stood before thee to speak good for them, to turn away thy wrath from them.</VERS>\r\n      <VERS vnumber=\"21\">Therefore deliver up their children to the famine, and give them over to the power of the sword; and let their wives become childless, and widows; and let their men be slain of death, [and] their young men smitten of the sword in battle.</VERS>\r\n      <VERS vnumber=\"22\">Let 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.</VERS>\r\n      <VERS vnumber=\"23\">Yet, Jehovah, 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 thou with them in the time of thine anger.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"19\">\r\n      <VERS vnumber=\"1\">Thus said Jehovah, Go, and buy a potter`s earthen bottle, and [take] of the elders of the people, and of the elders of the priests;</VERS>\r\n      <VERS vnumber=\"2\">and go forth unto the valley of the son of Hinnom, which is by the entry of the gate Harsith, and proclaim there the words that I shall tell thee;</VERS>\r\n      <VERS vnumber=\"3\">and say, Hear ye the word of Jehovah, O kings of Judah, and inhabitants of Jerusalem: thus saith Jehovah of hosts, the God of Israel, Behold, I will bring evil upon this place, which whosoever heareth, his ears shall tingle.</VERS>\r\n      <VERS vnumber=\"4\">Because they have forsaken me, and have estranged this place, and have burned incense in it unto other gods, that they knew not, they and their fathers and the kings of Judah; and have filled this place with the blood of innocents,</VERS>\r\n      <VERS vnumber=\"5\">and have built the high places of Baal, to burn their sons in the fire for burnt-offerings unto Baal; which I commanded not, nor spake it, neither came it into my mind:</VERS>\r\n      <VERS vnumber=\"6\">therefore, behold, the days come, saith Jehovah, that this place shall no more be called Topheth, nor The valley of the son of Hinnom, but The valley of Slaughter.</VERS>\r\n      <VERS vnumber=\"7\">And 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 hand of them that seek their life: and their dead bodies will I give to be food for the birds of the heavens, and for the beasts of the earth.</VERS>\r\n      <VERS vnumber=\"8\">And I will make this city an astonishment, and a hissing; every one that passeth thereby shall be astonished and hiss because of all the plagues thereof.</VERS>\r\n      <VERS vnumber=\"9\">And 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 in the distress, wherewith their enemies, and they that seek their life, shall distress them.</VERS>\r\n      <VERS vnumber=\"10\">Then shalt thou break the bottle in the sight of the men that go with thee,</VERS>\r\n      <VERS vnumber=\"11\">and shalt say unto them, Thus saith Jehovah 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 in Topheth, till there be no place to bury.</VERS>\r\n      <VERS vnumber=\"12\">Thus will I do unto this place, saith Jehovah, and to the inhabitants thereof, even making this city as Topheth:</VERS>\r\n      <VERS vnumber=\"13\">and the houses of Jerusalem, and the houses of the kings of Judah, which are defiled, shall be as the place of Topheth, even 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.</VERS>\r\n      <VERS vnumber=\"14\">Then came Jeremiah from Topheth, whither Jehovah had sent him to prophesy; and he stood in the court of Jehovah`s house, and said to all the people:</VERS>\r\n      <VERS vnumber=\"15\">Thus saith Jehovah of hosts, the God of Israel, Behold, I will bring upon this city and upon all its towns all the evil that I have pronounced against it; because they have made their neck stiff, that they may not hear my words.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"20\">\r\n      <VERS vnumber=\"1\">Now Pashhur, the son of Immer the priest, who was chief officer in the house of Jehovah, heard Jeremiah prophesying these things.</VERS>\r\n      <VERS vnumber=\"2\">Then Pashhur smote Jeremiah the prophet, and put him in the stocks that were in the upper gate of Benjamin, which was in the house of Jehovah.</VERS>\r\n      <VERS vnumber=\"3\">And it came to pass on the morrow, that Pashhur brought forth Jeremiah out of the stocks. Then said Jeremiah unto him, Jehovah hath not called thy name Pashhur, but Magor-missabib.</VERS>\r\n      <VERS vnumber=\"4\">For thus saith Jehovah, 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 to Babylon, and shall slay them with the sword.</VERS>\r\n      <VERS vnumber=\"5\">Moreover I will give all the riches of this city, and all the gains thereof, and all the precious things thereof, yea, all the treasures of the kings of Judah will I give into the hand of their enemies; and they shall make them a prey, and take them, and carry them to Babylon.</VERS>\r\n      <VERS vnumber=\"6\">And thou, Pashhur, and all that dwell in thy house shall go into captivity; and thou shalt come to Babylon, and there thou shalt die, and there shalt thou be buried, thou, and all thy friends, to whom thou hast prophesied falsely.</VERS>\r\n      <VERS vnumber=\"7\">O Jehovah, thou hast persuaded me, and I was persuaded; thou art stronger than I, and hast prevailed: I am become a laughing-stock all the day, every one mocketh me.</VERS>\r\n      <VERS vnumber=\"8\">For as often as I speak, I cry out; I cry, Violence and destruction! because the word of Jehovah is made a reproach unto me, and a derision, all the day.</VERS>\r\n      <VERS vnumber=\"9\">And if I say, I will not make mention of him, nor speak any more in his name, then there is in my heart as it were a burning fire shut up in my bones, and I am weary with forbearing, and I cannot [contain].</VERS>\r\n      <VERS vnumber=\"10\">For I have heard the defaming of many, terror on every side. Denounce, and we will denounce him, [say] all my familiar friends, they that watch for my fall; peradventure he will be persuaded, and we shall prevail against him, and we shall take our revenge on him.</VERS>\r\n      <VERS vnumber=\"11\">But Jehovah is with me as a mighty one [and] a terrible: therefore my persecutors shall stumble, and they shall not prevail; they shall be utterly put to shame, because they have not dealt wisely, even with an everlasting dishonor which shall never be forgotten.</VERS>\r\n      <VERS vnumber=\"12\">But, O Jehovah of hosts, that triest the righteous, that seest the heart and the mind, let me see thy vengeance on them; for unto thee have I revealed my cause.</VERS>\r\n      <VERS vnumber=\"13\">Sing unto Jehovah, praise ye Jehovah; for he hath delivered the soul of the needy from the hand of evil-doers.</VERS>\r\n      <VERS vnumber=\"14\">Cursed be the day wherein I was born: let not the day wherein my mother bare me be blessed.</VERS>\r\n      <VERS vnumber=\"15\">Cursed be the man who brought tidings to my father, saying, A man-child is born unto thee; making him very glad.</VERS>\r\n      <VERS vnumber=\"16\">And let that man be as the cities which Jehovah overthrew, and repented not: and let him hear a cry in the morning, and shouting at noontime;</VERS>\r\n      <VERS vnumber=\"17\">because he slew me not from the womb; and so my mother would have been my grave, and her womb always great.</VERS>\r\n      <VERS vnumber=\"18\">Wherefore came I forth out of the womb to see labor and sorrow, that my days should be consumed with shame?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"21\">\r\n      <VERS vnumber=\"1\">The word which came unto Jeremiah from Jehovah, when king Zedekiah sent unto him Pashhur the son of Malchijah, and Zephaniah the son of Maaseiah, the priest, saying,</VERS>\r\n      <VERS vnumber=\"2\">Inquire, I pray thee, of Jehovah for us; for Nebuchadrezzar king of Babylon maketh war against us: peradventure Jehovah will deal with us according to all his wondrous works, that he may go up from us.</VERS>\r\n      <VERS vnumber=\"3\">Then said Jeremiah unto them, Thus shall ye say to Zedekiah:</VERS>\r\n      <VERS vnumber=\"4\">Thus saith Jehovah, the 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 that besiege you, without the walls; and I will gather them into the midst of this city.</VERS>\r\n      <VERS vnumber=\"5\">And I myself will fight against you with an outstretched hand and with a strong arm, even in anger, and in wrath, and in great indignation.</VERS>\r\n      <VERS vnumber=\"6\">And I will smite the inhabitants of this city, both man and beast: they shall die of a great pestilence.</VERS>\r\n      <VERS vnumber=\"7\">And afterward, saith Jehovah, I will deliver Zedekiah king of Judah, and his servants, and the people, even 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.</VERS>\r\n      <VERS vnumber=\"8\">And unto this people thou shalt say, Thus saith Jehovah: Behold, I set before you the way of life and the way of death.</VERS>\r\n      <VERS vnumber=\"9\">He that abideth in this city shall die by the sword, and by the famine, and by the pestilence; but he that goeth out, and passeth over to the Chaldeans that besiege you, he shall live, and his life shall be unto him for a prey.</VERS>\r\n      <VERS vnumber=\"10\">For I have set my face upon this city for evil, and not for good, saith Jehovah: it shall be given into the hand of the king of Babylon, and he shall burn it with fire.</VERS>\r\n      <VERS vnumber=\"11\">And touching the house of the king of Judah, hear ye the word of Jehovah:</VERS>\r\n      <VERS vnumber=\"12\">O house of David, thus saith Jehovah, Execute justice in the morning, and deliver him that is robbed out of the hand of the oppressor, lest my wrath go forth like fire, and burn so that none can quench it, because of the evil of your doings.</VERS>\r\n      <VERS vnumber=\"13\">Behold, I am against thee, O inhabitant of the valley, [and] of the rock of the plain, saith Jehovah; you that say, Who shall come down against us? or who shall enter into our habitations?</VERS>\r\n      <VERS vnumber=\"14\">And I will punish you according to the fruit of your doings, saith Jehovah; and I will kindle a fire in her forest, and it shall devour all that is round about her.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"22\">\r\n      <VERS vnumber=\"1\">Thus said Jehovah: Go down to the house of the king of Judah, and speak there this word,</VERS>\r\n      <VERS vnumber=\"2\">And say, Hear the word of Jehovah, O king of Judah, that sittest upon the throne of David, thou, and thy servants, and thy people that enter in by these gates.</VERS>\r\n      <VERS vnumber=\"3\">Thus saith Jehovah: Execute ye justice and righteousness, and deliver him that is robbed out of the hand of the oppressor: and do no wrong, do no violence, to the sojourner, the fatherless, nor the widow; neither shed innocent blood in this place.</VERS>\r\n      <VERS vnumber=\"4\">For 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.</VERS>\r\n      <VERS vnumber=\"5\">But if ye will not hear these words, I swear by myself, saith Jehovah, that this house shall become a desolation.</VERS>\r\n      <VERS vnumber=\"6\">For thus saith Jehovah concerning the house of the king 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And many nations shall pass by this city, and they shall say every man to his neighbor, Wherefore hath Jehovah done thus unto this great city?</VERS>\r\n      <VERS vnumber=\"9\">Then they shall answer, Because they forsook the covenant of Jehovah their God, and worshipped other gods, and served them.</VERS>\r\n      <VERS vnumber=\"10\">Weep 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.</VERS>\r\n      <VERS vnumber=\"11\">For thus saith Jehovah touching Shallum the son of Josiah, king of Judah, who reigned instead of Josiah his father, [and] who went forth out of this place: He shall not return thither any more.</VERS>\r\n      <VERS vnumber=\"12\">But in the place whither they have led him captive, there shall he die, and he shall see this land no more.</VERS>\r\n      <VERS vnumber=\"13\">Woe unto him that buildeth his house by unrighteousness, and his chambers by injustice; that useth his neighbor`s service without wages, and giveth him not his hire;</VERS>\r\n      <VERS vnumber=\"14\">that saith, I will build me a wide house and spacious chambers, and cutteth him out windows; and it is ceiled with cedar, and painted with vermilion.</VERS>\r\n      <VERS vnumber=\"15\">Shalt thou reign, because thou strivest to excel in cedar? Did not thy father eat and drink, and do justice and righteousness? then it was well with him.</VERS>\r\n      <VERS vnumber=\"16\">He judged the cause of the poor and needy; then it was well. Was not this to know me? saith Jehovah.</VERS>\r\n      <VERS vnumber=\"17\">But thine eyes and thy heart are not but for thy covetousness, and for shedding innocent blood, and for oppression, and for violence, to do it.</VERS>\r\n      <VERS vnumber=\"18\">Therefore thus saith Jehovah 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!</VERS>\r\n      <VERS vnumber=\"19\">He shall be buried with the burial of an ass, drawn and cast forth beyond the gates of Jerusalem.</VERS>\r\n      <VERS vnumber=\"20\">Go up to Lebanon, and cry; and lift up thy voice in Bashan, and cry from Abarim; for all thy lovers are destroyed.</VERS>\r\n      <VERS vnumber=\"21\">I 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.</VERS>\r\n      <VERS vnumber=\"22\">The wind shall feed all thy shepherds, and thy lovers shall go into captivity: surely then shalt thou be ashamed and confounded for all thy wickedness.</VERS>\r\n      <VERS vnumber=\"23\">O inhabitant of Lebanon, that makest thy nest in the cedars, how greatly to be pitied shalt thou be when pangs come upon thee, the pain as of a woman in travail!</VERS>\r\n      <VERS vnumber=\"24\">As I live, saith Jehovah, though Coniah the son of Jehoiakim king of Judah were the signet upon my right hand, yet would I pluck thee thence;</VERS>\r\n      <VERS vnumber=\"25\">and I will give thee into the hand of them that seek thy life, and into the hand of them of whom thou art afraid, even into the hand of Nebuchadrezzar king of Babylon, and into the hand of the Chaldeans.</VERS>\r\n      <VERS vnumber=\"26\">And I will cast thee out, and thy mother that bare thee, into another country, where ye were not born; and there shall ye die.</VERS>\r\n      <VERS vnumber=\"27\">But to the land whereunto their soul longeth to return, thither shall they not return.</VERS>\r\n      <VERS vnumber=\"28\">Is this man Coniah a despised broken vessel? is he a vessel wherein none delighteth? wherefore are they cast out, he and his seed, and are cast into the land which they know not?</VERS>\r\n      <VERS vnumber=\"29\">O earth, earth, earth, hear the word of Jehovah.</VERS>\r\n      <VERS vnumber=\"30\">Thus saith Jehovah, Write ye this man childless, a man that shall not prosper in his days; for no more shall a man of his seed prosper, sitting upon the throne of David, and ruling in Judah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"23\">\r\n      <VERS vnumber=\"1\">Woe unto the shepherds that destroy and scatter the sheep of my pasture! saith Jehovah.</VERS>\r\n      <VERS vnumber=\"2\">Therefore thus saith Jehovah, the God of Israel, against the shepherds 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 Jehovah.</VERS>\r\n      <VERS vnumber=\"3\">And I will gather the remnant of my flock out of all the countries whither I have driven them, and will bring them again to their folds; and they shall be fruitful and multiply.</VERS>\r\n      <VERS vnumber=\"4\">And I will set up shepherds over them, who shall feed them; and they shall fear no more, nor be dismayed, neither shall any be lacking, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"5\">Behold, the days come, saith Jehovah, that I will raise unto David a righteous Branch, and he shall reign as king and deal wisely, and shall execute justice and righteousness in the land.</VERS>\r\n      <VERS vnumber=\"6\">In his days Judah shall be saved, and Israel shall dwell safely; and this is his name whereby he shall be called: Jehovah our righteousness.</VERS>\r\n      <VERS vnumber=\"7\">Therefore, behold, the days come, saith Jehovah, that they shall no more say, As Jehovah liveth, who brought up the children of Israel out of the land of Egypt;</VERS>\r\n      <VERS vnumber=\"8\">but, As Jehovah liveth, who brought up and who led the seed of the house of Israel out of the north country, and from all the countries whither I had driven them. And they shall dwell in their own land.</VERS>\r\n      <VERS vnumber=\"9\">Concerning the prophets. My heart within me is broken, all my bones shake; I am like a drunken man, and like a man whom wine hath overcome, because of Jehovah, and because of his holy words.</VERS>\r\n      <VERS vnumber=\"10\">For the land is full of adulterers; for because of swearing the land mourneth; the pastures of the wilderness are dried up. And their course is evil, and their might is not right;</VERS>\r\n      <VERS vnumber=\"11\">for both prophet and priest are profane; yea, in my house have I found their wickedness, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"12\">Wherefore their way shall be unto them as slippery places 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 Jehovah.</VERS>\r\n      <VERS vnumber=\"13\">And I have seen folly in the prophets of Samaria; they prophesied by Baal, and caused my people Israel to err.</VERS>\r\n      <VERS vnumber=\"14\">In the prophets of Jerusalem also I have seen a horrible thing: they commit adultery, and walk in lies; and they strengthen the hands of evil-doers, so that none doth return from his wickedness: they are all of them become unto me as Sodom, and the inhabitants thereof as Gomorrah.</VERS>\r\n      <VERS vnumber=\"15\">Therefore thus saith Jehovah 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 ungodliness gone forth into all the land.</VERS>\r\n      <VERS vnumber=\"16\">Thus saith Jehovah of hosts, Hearken not unto the words of the prophets that prophesy unto you: they teach you vanity; they speak a vision of their own heart, and not out of the mouth of Jehovah.</VERS>\r\n      <VERS vnumber=\"17\">They say continually unto them that despise me, Jehovah hath said, Ye shall have peace; and unto every one that walketh in the stubbornness of his own heart they say, No evil shall come upon you.</VERS>\r\n      <VERS vnumber=\"18\">For who hath stood in the council of Jehovah, that he should perceive and hear his word? who hath marked my word, and heard it?</VERS>\r\n      <VERS vnumber=\"19\">Behold, the tempest of Jehovah, [even his] wrath, is gone forth, yea, a whirling tempest: it shall burst upon the head of the wicked.</VERS>\r\n      <VERS vnumber=\"20\">The anger of Jehovah shall not return, until he have executed, and till he have performed the intents of his heart: in the latter days ye shall understand it perfectly.</VERS>\r\n      <VERS vnumber=\"21\">I sent not these prophets, yet they ran: I spake not unto them, yet they prophesied.</VERS>\r\n      <VERS vnumber=\"22\">But if they had stood in my council, then had they caused my people to hear my words, and had turned them from their evil way, and from the evil of their doings.</VERS>\r\n      <VERS vnumber=\"23\">Am I a God at hand, saith Jehovah, and not a God afar off?</VERS>\r\n      <VERS vnumber=\"24\">Can any hide himself in secret places so that I shall not see him? saith Jehovah. Do not I fill heaven and earth? saith Jehovah.</VERS>\r\n      <VERS vnumber=\"25\">I have heard what the prophets have said, that prophesy lies in my name, saying, I have dreamed, I have dreamed.</VERS>\r\n      <VERS vnumber=\"26\">How long shall this be in the heart of the prophets that prophesy lies, even the prophets of the deceit of their own heart?</VERS>\r\n      <VERS vnumber=\"27\">that think to cause my people to forget my name by their dreams which they tell every man to his neighbor, as their fathers forgat my name for Baal.</VERS>\r\n      <VERS vnumber=\"28\">The 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 straw to the wheat? saith Jehovah.</VERS>\r\n      <VERS vnumber=\"29\">Is not my word like fire? saith Jehovah; and like a hammer that breaketh the rock in pieces?</VERS>\r\n      <VERS vnumber=\"30\">Therefore, behold, I am against the prophets, saith Jehovah, that steal my words every one from his neighbor.</VERS>\r\n      <VERS vnumber=\"31\">Behold, I am against the prophets, saith Jehovah, that use their tongues, and say, He saith.</VERS>\r\n      <VERS vnumber=\"32\">Behold, I am against them that prophesy lying dreams, saith Jehovah, and do tell them, and cause my people to err by their lies, and by their vain boasting: yet I sent them not, nor commanded them; neither do they profit this people at all, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"33\">And when this people, or the prophet, or a priest, shall ask thee, saying, What is the burden of Jehovah? then shalt thou say unto them, What burden! I will cast you off, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"34\">And as for the prophet, and the priest, and the people, that shall say, The burden of Jehovah, I will even punish that man and his house.</VERS>\r\n      <VERS vnumber=\"35\">Thus shall ye say every one to his neighbor, and every one to his brother, What hath Jehovah answered? and, What hath Jehovah spoken?</VERS>\r\n      <VERS vnumber=\"36\">And the burden of Jehovah shall ye mention no more: for every man`s own word shall be his burden; for ye have perverted the words of the living God, of Jehovah of hosts our God.</VERS>\r\n      <VERS vnumber=\"37\">Thus shalt thou say to the prophet, What hath Jehovah answered thee? and, What hath Jehovah spoken?</VERS>\r\n      <VERS vnumber=\"38\">But if ye say, The burden of Jehovah; therefore thus saith Jehovah: Because ye say this word, The burden of Jehovah, and I have sent unto you, saying, Ye shall not say, The burden of Jehovah;</VERS>\r\n      <VERS vnumber=\"39\">therefore, behold, I will utterly forget you, and I will cast you off, and the city that I gave unto you and to your fathers, away from my presence:</VERS>\r\n      <VERS vnumber=\"40\">and I will bring an everlasting reproach upon you, and a perpetual shame, which shall not be forgotten.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"24\">\r\n      <VERS vnumber=\"1\">Jehovah showed me, and, behold, two baskets of figs set before the temple of Jehovah, 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 craftsmen and smiths, from Jerusalem, and had brought them to Babylon.</VERS>\r\n      <VERS vnumber=\"2\">One basket had very good figs, like the figs that are first-ripe; and the other basket had very bad figs, which could not be eaten, they were so bad.</VERS>\r\n      <VERS vnumber=\"3\">Then said Jehovah unto me, What seest thou, Jeremiah? And I said, Figs; the good figs, very good; and the bad, very bad, that cannot be eaten, they are so bad.</VERS>\r\n      <VERS vnumber=\"4\">And the word of Jehovah came unto me, saying,</VERS>\r\n      <VERS vnumber=\"5\">Thus saith Jehovah, the God of Israel: Like these good figs, so will I regard the captives of Judah, whom I have sent out of this place into the land of the Chaldeans, for good.</VERS>\r\n      <VERS vnumber=\"6\">For 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.</VERS>\r\n      <VERS vnumber=\"7\">And I will give them a heart to know me, that I am Jehovah: and they shall be my people, and I will be their God; for they shall return unto me with their whole heart.</VERS>\r\n      <VERS vnumber=\"8\">And as the bad figs, which cannot be eaten, they are so bad, surely thus saith Jehovah, So will I give up 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,</VERS>\r\n      <VERS vnumber=\"9\">I will even give them up to be tossed to and fro among all the kingdoms of the earth for evil; to be a reproach and a proverb, a taunt and a curse, in all places whither I shall drive them.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"25\">\r\n      <VERS vnumber=\"1\">The word that came to Jeremiah concerning all the people of Judah, in the fourth year of Jehoiakim the son of Josiah, king of Judah (the same was the first year of Nebuchadrezzar king of Babylon,)</VERS>\r\n      <VERS vnumber=\"2\">which Jeremiah the prophet spake unto all the people of Judah, and to all the inhabitants of Jerusalem, saying:</VERS>\r\n      <VERS vnumber=\"3\">From the thirteenth year of Josiah the son of Amon, king of Judah, even unto this day, these three and twenty years, the word of Jehovah hath come unto me, and I have spoken unto you, rising up early and speaking; but ye have not hearkened.</VERS>\r\n      <VERS vnumber=\"4\">And Jehovah hath sent unto you all his servants the prophets, rising up early and sending them, (but ye have not hearkened, nor inclined your ear to hear,)</VERS>\r\n      <VERS vnumber=\"5\">saying, Return ye now every one from his evil way, and from the evil of your doings, and dwell in the land that Jehovah hath given unto you and to your fathers, from of old and even for evermore;</VERS>\r\n      <VERS vnumber=\"6\">and go not after other gods to serve them, and to worship them, and provoke me not to anger with the work of your hands; and I will do you no hurt.</VERS>\r\n      <VERS vnumber=\"7\">Yet ye have not hearkened unto me, saith Jehovah; that ye may provoke me to anger with the work of your hands to your own hurt.</VERS>\r\n      <VERS vnumber=\"8\">Therefore thus saith Jehovah of hosts: Because ye have not heard my words,</VERS>\r\n      <VERS vnumber=\"9\">behold, I will send and take all the families of the north, saith Jehovah, and [I will send] unto 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 I will utterly destroy them, and make them an astonishment, and a hissing, and perpetual desolations.</VERS>\r\n      <VERS vnumber=\"10\">Moreover 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 lamp.</VERS>\r\n      <VERS vnumber=\"11\">And this whole land shall be a desolation, and an astonishment; and these nations shall serve the king of Babylon seventy years.</VERS>\r\n      <VERS vnumber=\"12\">And it shall come to pass, when seventy years are accomplished, that I will punish the king of Babylon, and that nation, saith Jehovah, for their iniquity, and the land of the Chaldeans; and I will make it desolate for ever.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">For many nations and great kings shall make bondmen of them, even of them; and I will recompense them according to their deeds, and according to the work of their hands.</VERS>\r\n      <VERS vnumber=\"15\">For thus saith Jehovah, the God of Israel, unto me: take this cup of the wine of wrath at my hand, and cause all the nations, to whom I send thee, to drink it.</VERS>\r\n      <VERS vnumber=\"16\">And they shall drink, and reel to and fro, and be mad, because of the sword that I will send among them.</VERS>\r\n      <VERS vnumber=\"17\">Then took I the cup at Jehovah`s hand, and made all the nations to drink, unto whom Jehovah had sent me:</VERS>\r\n      <VERS vnumber=\"18\">[to wit], Jerusalem, and the cities of Judah, and the kings thereof, and the princes thereof, to make them a desolation, an astonishment, a hissing, and a curse, as it is this day;</VERS>\r\n      <VERS vnumber=\"19\">Pharaoh king of Egypt, and his servants, and his princes, and all his people;</VERS>\r\n      <VERS vnumber=\"20\">and all the mingled people, and all the kings of the land of the Uz, and all the kings of the Philistines, and Ashkelon, and Gaza, and Ekron, and the remnant of Ashdod;</VERS>\r\n      <VERS vnumber=\"21\">Edom, and Moab, and the children of Ammon;</VERS>\r\n      <VERS vnumber=\"22\">and all the kings of Tyre, and all the kings of Sidon, and the kings of the isle which is beyond the sea;</VERS>\r\n      <VERS vnumber=\"23\">Dedan, and Tema, and Buz, and all that have the corners [of their hair] cut off;</VERS>\r\n      <VERS vnumber=\"24\">and all the kings of Arabia, and all the kings of the mingled people that dwell in the wilderness;</VERS>\r\n      <VERS vnumber=\"25\">and all the kings of Zimri, and all the kings of Elam, and all the kings of the Medes;</VERS>\r\n      <VERS vnumber=\"26\">and 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.</VERS>\r\n      <VERS vnumber=\"27\">And thou shalt say unto them, Thus saith Jehovah of hosts, the God of Israel: Drink ye, and be drunken, and spew, and fall, and rise no more, because of the sword which I will send among you.</VERS>\r\n      <VERS vnumber=\"28\">And it shall be, if they refuse to take the cup at thy hand to drink, then shalt thou say unto them, Thus saith Jehovah of hosts: Ye shall surely drink.</VERS>\r\n      <VERS vnumber=\"29\">For, lo, I begin to work evil at 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 Jehovah of hosts.</VERS>\r\n      <VERS vnumber=\"30\">Therefore prophesy thou against them all these words, and say unto them, Jehovah will roar from on high, and utter his voice from his holy habitation; he will mightily roar against his fold; he will give a shout, as they that tread [the grapes], against all the inhabitants of the earth.</VERS>\r\n      <VERS vnumber=\"31\">A noise shall come even to the end of the earth; for Jehovah hath a controversy with the nations; he will enter into judgment with all flesh: as for the wicked, he will give them to the sword, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"32\">Thus saith Jehovah of hosts, Behold, evil shall go forth from nation to nation, and a great tempest shall be raised up from the uttermost parts of the earth.</VERS>\r\n      <VERS vnumber=\"33\">And the slain of Jehovah 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 face of the ground.</VERS>\r\n      <VERS vnumber=\"34\">Wail, ye shepherds, and cry; and wallow [in ashes], ye principal of the flock; for the days of your slaughter and of your dispersions are fully come, and ye shall fall like a goodly vessel.</VERS>\r\n      <VERS vnumber=\"35\">And the shepherds shall have no way to flee, nor the principal of the flock to escape.</VERS>\r\n      <VERS vnumber=\"36\">A voice of the cry of the shepherds, and the wailing of the principal of the flock! for Jehovah layeth waste their pasture.</VERS>\r\n      <VERS vnumber=\"37\">And the peaceable folds are brought to silence because of the fierce anger of Jehovah.</VERS>\r\n      <VERS vnumber=\"38\">He hath left his covert, as the lion; for their land is become an astonishment because of the fierceness of the oppressing [sword], and because of his fierce anger.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"26\">\r\n      <VERS vnumber=\"1\">In the beginning of the reign of Jehoiakim the son of Josiah, king of Judah, came this word from Jehovah, saying,</VERS>\r\n      <VERS vnumber=\"2\">Thus saith Jehovah: Stand in the court of Jehovah`s house, and speak unto all the cities of Judah, which come to worship in Jehovah`s house, all the words that I command thee to speak unto them; diminish not a word.</VERS>\r\n      <VERS vnumber=\"3\">It may 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.</VERS>\r\n      <VERS vnumber=\"4\">And thou shalt say unto them, Thus saith Jehovah: If ye will not hearken to me, to walk in my law, which I have set before you,</VERS>\r\n      <VERS vnumber=\"5\">to hearken to the words of my servants the prophets, whom I send unto you, even rising up early and sending them, but ye have not hearkened;</VERS>\r\n      <VERS vnumber=\"6\">then will I make this house like Shiloh, and will make this city a curse to all the nations of the earth.</VERS>\r\n      <VERS vnumber=\"7\">And the priests and the prophets and all the people heard Jeremiah speaking these words in the house of Jehovah.</VERS>\r\n      <VERS vnumber=\"8\">And it came to pass, when Jeremiah had made an end of speaking all that Jehovah had commanded him to speak unto all the people, that the priests and the prophets and all the people laid hold on him, saying, Thou shalt surely die.</VERS>\r\n      <VERS vnumber=\"9\">Why hast thou prophesied in the name of Jehovah, saying, This house shall be like Shiloh, and this city shall be desolate, without inhabitant? And all the people were gathered unto Jeremiah in the house of Jehovah.</VERS>\r\n      <VERS vnumber=\"10\">And when the princes of Judah heard these things, they came up from the king`s house unto the house of Jehovah; and they sat in the entry of the new gate of Jehovah`s [house].</VERS>\r\n      <VERS vnumber=\"11\">Then spake the priests and the prophets unto the princes and to all the people, saying, This man is worthy of death; for he hath prophesied against this city, as ye have heard with your ears.</VERS>\r\n      <VERS vnumber=\"12\">Then spake Jeremiah unto all the princes and to all the people, saying, Jehovah sent me to prophesy against this house and against this city all the words that ye have heard.</VERS>\r\n      <VERS vnumber=\"13\">Now therefore amend your ways and your doings, and obey the voice of Jehovah your God; and Jehovah will repent him of the evil that he hath pronounced against you.</VERS>\r\n      <VERS vnumber=\"14\">But as for me, behold, I am in your hand: do with me as is good and right in your eyes.</VERS>\r\n      <VERS vnumber=\"15\">Only know ye for certain that, if ye put me to death, ye will bring innocent blood upon yourselves, and upon this city, and upon the inhabitants thereof; for of a truth Jehovah hath sent me unto you to speak all these words in your ears.</VERS>\r\n      <VERS vnumber=\"16\">Then said the princes and all the people unto the priests and to the prophets: This man is not worthy of death; for he hath spoken to us in the name of Jehovah our God.</VERS>\r\n      <VERS vnumber=\"17\">Then rose up certain of the elders of the land, and spake to all the assembly of the people, saying,</VERS>\r\n      <VERS vnumber=\"18\">Micah the Morashtite prophesied in the days of Hezekiah king of Judah; and he spake to all the people of Judah, saying, Thus saith Jehovah of hosts: Zion shall be plowed as a field, and Jerusalem shall become heaps, and the mountain of the house as the high places of a forest.</VERS>\r\n      <VERS vnumber=\"19\">Did Hezekiah king of Judah and all Judah put him to death? did he not fear Jehovah, and entreat the favor of Jehovah, and Jehovah repented him of the evil which he had pronounced against them? Thus should we commit great evil against our own souls.</VERS>\r\n      <VERS vnumber=\"20\">And there was also a man that prophesied in the name of Jehovah, Uriah the son of Shemaiah of Kiriath-jearim; and he prophesied against this city and against this land according to all the words of Jeremiah:</VERS>\r\n      <VERS vnumber=\"21\">and 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 Uriah heard it, he was afraid, and fled, and went into Egypt:</VERS>\r\n      <VERS vnumber=\"22\">and Jehoiakim the king sent men into Egypt, [namely], Elnathan the son of Achbor, and certain men with him, into Egypt;</VERS>\r\n      <VERS vnumber=\"23\">and they fetched forth Uriah 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.</VERS>\r\n      <VERS vnumber=\"24\">But 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"27\">\r\n      <VERS vnumber=\"1\">In the beginning of the reign of Jehoiakim the son of Josiah, king of Judah, came this word unto Jeremiah from Jehovah, saying,</VERS>\r\n      <VERS vnumber=\"2\">Thus saith Jehovah to me: Make thee bonds and bars, and put them upon thy neck;</VERS>\r\n      <VERS vnumber=\"3\">and send them to the king of Edom, and to the king of Moab, and to the king of the children of Ammon, and to the king of Tyre, and to the king of Sidon, by the hand of the messengers that come to Jerusalem unto Zedekiah king of Judah;</VERS>\r\n      <VERS vnumber=\"4\">and give them a charge unto their masters, saying, Thus saith Jehovah of hosts, the God of Israel, Thus shall ye say unto your masters:</VERS>\r\n      <VERS vnumber=\"5\">I have made the earth, the men and the beasts that are upon the face of the earth, by my great power and by my outstretched arm; and I give it unto whom it seemeth right unto me.</VERS>\r\n      <VERS vnumber=\"6\">And now have I given all these lands into the hand of Nebuchadnezzar the king of Babylon, my servant; and the beasts of the field also have I given him to serve him.</VERS>\r\n      <VERS vnumber=\"7\">And all the nations shall serve him, and his son, and his son`s son, until the time of his own land come: and then many nations and great kings shall make him their bondman.</VERS>\r\n      <VERS vnumber=\"8\">And it shall come to pass, that the nation and the kingdom which will not serve the same Nebuchadnezzar king of Babylon, and that will not put their neck under the yoke of the king of Babylon, that nation will I punish, saith Jehovah, with the sword, and with the famine, and with the pestilence, until I have consumed them by his hand.</VERS>\r\n      <VERS vnumber=\"9\">But as for you, hearken ye not to your prophets, nor to your diviners, nor to your dreams, nor to your soothsayers, nor to your sorcerers, that speak unto you, saying, Ye shall not serve the king of Babylon:</VERS>\r\n      <VERS vnumber=\"10\">for they prophesy a lie unto you, to remove you far from your land, and that I should drive you out, and ye should perish.</VERS>\r\n      <VERS vnumber=\"11\">But the nation that shall bring their neck under the yoke of the king of Babylon, and serve him, that [nation] will I let remain in their own land, saith Jehovah; and they shall till it, and dwell therein.</VERS>\r\n      <VERS vnumber=\"12\">And I spake 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.</VERS>\r\n      <VERS vnumber=\"13\">Why will ye die, thou and thy people, by the sword, by the famine, and by the pestilence, as Jehovah hath spoken concerning the nation that will not serve the king of Babylon?</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">For I have not sent them, saith Jehovah, but they prophesy falsely in my name; that I may drive you out, and that ye may perish, ye, and the prophets that prophesy unto you.</VERS>\r\n      <VERS vnumber=\"16\">Also I spake to the priests and to all this people, saying, Thus saith Jehovah: Hearken not to the words of your prophets that prophesy unto you, saying, Behold, the vessels of Jehovah`s house shall now shortly be brought again from Babylon; for they prophesy a lie unto you.</VERS>\r\n      <VERS vnumber=\"17\">Hearken not unto them; serve the king of Babylon, and live: wherefore should this city become a desolation?</VERS>\r\n      <VERS vnumber=\"18\">But if they be prophets, and if the word of Jehovah be with them, let them now make intercession to Jehovah of hosts, that the vessels which are left in the house of Jehovah, and in the house of the king of Judah, and at Jerusalem, go not to Babylon.</VERS>\r\n      <VERS vnumber=\"19\">For thus saith Jehovah of hosts concerning the pillars, and concerning the sea, and concerning the bases, and concerning the residue of the vessels that are left in this city,</VERS>\r\n      <VERS vnumber=\"20\">which 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;</VERS>\r\n      <VERS vnumber=\"21\">yea, thus saith Jehovah of hosts, the God of Israel, concerning the vessels that are left in the house of Jehovah, and in the house of the king of Judah, and at Jerusalem:</VERS>\r\n      <VERS vnumber=\"22\">They shall be carried to Babylon, and there shall they be, until the day that I visit them, saith Jehovah; then will I bring them up, and restore them to this place.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"28\">\r\n      <VERS vnumber=\"1\">And it came to pass the same year, in the beginning of the reign of Zedekiah king of Judah, in the fourth year, in the fifth month, that Hananiah the son of Azzur, the prophet, who was of Gibeon, spake unto me in the house of Jehovah, in the presence of the priests and of all the people, saying,</VERS>\r\n      <VERS vnumber=\"2\">Thus speaketh Jehovah of hosts, the God of Israel, saying, I have broken the yoke of the king of Babylon.</VERS>\r\n      <VERS vnumber=\"3\">Within two full years will I bring again into this place all the vessels of Jehovah`s house, that Nebuchadnezzar king of Babylon took away from this place, and carried to Babylon:</VERS>\r\n      <VERS vnumber=\"4\">and I will bring again to this place Jeconiah the son of Jehoiakim, king of Judah, with all the captives of Judah, that went to Babylon, saith Jehovah; for I will break the yoke of the king of Babylon.</VERS>\r\n      <VERS vnumber=\"5\">Then 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 Jehovah,</VERS>\r\n      <VERS vnumber=\"6\">even the prophet Jeremiah said, Amen: Jehovah do so; Jehovah perform thy words which thou hast prophesied, to bring again the vessels of Jehovah`s house, and all them of the captivity, from Babylon unto this place.</VERS>\r\n      <VERS vnumber=\"7\">Nevertheless hear thou now this word that I speak in thine ears, and in the ears of all the people:</VERS>\r\n      <VERS vnumber=\"8\">The prophets that have been before me and before thee of old prophesied against many countries, and against great kingdoms, of war, and of evil, and of pestilence.</VERS>\r\n      <VERS vnumber=\"9\">The prophet that prophesieth of peace, when the word of the prophet shall come to pass, then shall the prophet be known, that Jehovah hath truly sent him.</VERS>\r\n      <VERS vnumber=\"10\">Then Hananiah the prophet took the bar from off the prophet Jeremiah`s neck, and brake it.</VERS>\r\n      <VERS vnumber=\"11\">And Hananiah spake in the presence of all the people, saying, Thus saith Jehovah: Even so will I break the yoke of Nebuchadnezzar king of Babylon within two full years from off the neck of all the nations. And the prophet Jeremiah went his way.</VERS>\r\n      <VERS vnumber=\"12\">Then the word of Jehovah came unto Jeremiah, after that Hananiah the prophet had broken the bar from off the neck of the prophet Jeremiah, saying,</VERS>\r\n      <VERS vnumber=\"13\">Go, and tell Hananiah, saying, Thus saith Jehovah: Thou hast broken the bars of wood; but thou hast made in their stead bars of iron.</VERS>\r\n      <VERS vnumber=\"14\">For thus saith Jehovah of hosts, the God of Israel: I have put a yoke of iron upon the neck of all these nations, that they may served Nebuchadnezzar king of Babylon; and they shall serve him: and I have given him the beasts of the field also.</VERS>\r\n      <VERS vnumber=\"15\">Then said the prophet Jeremiah unto Hananiah the prophet, Hear now, Hananiah: Jehovah hath not sent thee; but thou makest this people to trust in a lie.</VERS>\r\n      <VERS vnumber=\"16\">Therefore thus saith Jehovah, Behold, I will send thee away from off the face of the earth: this year thou shalt die, because thou hast spoken rebellion against Jehovah.</VERS>\r\n      <VERS vnumber=\"17\">So Hananiah the prophet died the same year in the seventh month.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"29\">\r\n      <VERS vnumber=\"1\">Now these are the words of the letter that Jeremiah the prophet sent from Jerusalem unto the residue of the elders of the captivity, and to the priests, and to the prophets, and to all the people, whom Nebuchadnezzar had carried away captive from Jerusalem to Babylon,</VERS>\r\n      <VERS vnumber=\"2\">(after that Jeconiah the king, and the queen-mother, and the eunuchs, [and] the princes of Judah and Jerusalem, and the craftsmen, and the smiths, were departed from Jerusalem,)</VERS>\r\n      <VERS vnumber=\"3\">by 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,</VERS>\r\n      <VERS vnumber=\"4\">Thus saith Jehovah of hosts, the God of Israel, unto all the captivity, whom I have caused to be carried away captive from Jerusalem unto Babylon:</VERS>\r\n      <VERS vnumber=\"5\">Build ye houses, and dwell in them; and plant gardens, and eat the fruit of them.</VERS>\r\n      <VERS vnumber=\"6\">Take 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; and multiply ye there, and be not diminished.</VERS>\r\n      <VERS vnumber=\"7\">And seek the peace of the city whither I have caused you to be carried away captive, and pray unto Jehovah for it; for in the peace thereof shall ye have peace.</VERS>\r\n      <VERS vnumber=\"8\">For thus saith Jehovah of hosts, the God of Israel: Let not your prophets that are in the midst of you, and your diviners, deceive you; neither hearken ye to your dreams which ye cause to be dreamed.</VERS>\r\n      <VERS vnumber=\"9\">For they prophesy falsely unto you in my name: I have not sent them, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"10\">For thus saith Jehovah, After seventy years are accomplished for Babylon, I will visit you, and perform my good word toward you, in causing you to return to this place.</VERS>\r\n      <VERS vnumber=\"11\">For I know the thoughts that I think toward you, saith Jehovah, thoughts of peace, and not of evil, to give you hope in your latter end.</VERS>\r\n      <VERS vnumber=\"12\">And ye shall call upon me, and ye shall go and pray unto me, and I will hearken unto you.</VERS>\r\n      <VERS vnumber=\"13\">And ye shall seek me, and find me, when ye shall search for me with all your heart.</VERS>\r\n      <VERS vnumber=\"14\">And I will be found of you, saith Jehovah, and I will turn again your captivity, and I will gather you from all the nations, and from all the places wither I have driven you, saith Jehovah; and I will bring you again unto the place whence I caused you to be carried away captive.</VERS>\r\n      <VERS vnumber=\"15\">Because ye have said, Jehovah hath raised us up prophets in Babylon;</VERS>\r\n      <VERS vnumber=\"16\">thus saith Jehovah concerning the king that sitteth upon the throne of David, and concerning all the people that dwell in this city, your brethren that are not gone forth with you into captivity;</VERS>\r\n      <VERS vnumber=\"17\">thus saith Jehovah 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 bad.</VERS>\r\n      <VERS vnumber=\"18\">And I will pursue after them with the sword, with the famine, and with the pestilence, and will deliver them to be tossed to and fro among all the kingdoms of the earth, to be an execration, and an astonishment, and a hissing, and a reproach, among all the nations whither I have driven them;</VERS>\r\n      <VERS vnumber=\"19\">because they have not hearkened to my words, saith Jehovah, wherewith I sent unto them my servants the prophets, rising up early and sending them; but ye would not hear, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"20\">Hear ye therefore the word of Jehovah, all ye of the captivity, whom I have sent away from Jerusalem to Babylon.</VERS>\r\n      <VERS vnumber=\"21\">Thus saith Jehovah of hosts, the God of Israel, concerning Ahab the son of Kolaiah, and concerning Zedekiah the son of Maaseiah, who 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;</VERS>\r\n      <VERS vnumber=\"22\">and of them shall be taken up a curse by all the captives of Judah that are in Babylon, saying, Jehovah make thee like Zedekiah and like Ahab, whom the king of Babylon roasted in the fire;</VERS>\r\n      <VERS vnumber=\"23\">because they have wrought folly in Israel, and have committed adultery with their neighbors` wives, and have spoken words in my name falsely, which I commanded them not; and I am he that knoweth, and am witness, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"24\">And concerning Shemaiah the Nehelamite thou shalt speak, saying,</VERS>\r\n      <VERS vnumber=\"25\">Thus speaketh Jehovah of hosts, the God of Israel, saying, Because thou hast sent letters in thine own name unto all the people that are at Jerusalem, and to Zephaniah the son of Maaseiah, the priest, and to all the priests, saying,</VERS>\r\n      <VERS vnumber=\"26\">Jehovah hath made thee priest in the stead of Jehoiada the priest, that there may be officers in the house of Jehovah, for every man that is mad, and maketh himself a prophet, that thou shouldest put him in the stocks and in shackles.</VERS>\r\n      <VERS vnumber=\"27\">Now therefore, why hast thou not rebuked Jeremiah of Anathoth, who maketh himself a prophet to you,</VERS>\r\n      <VERS vnumber=\"28\">forasmuch as he hath sent unto us in Babylon, saying, [The captivity] is long: build ye houses, and dwell in them; and plant gardens, and eat the fruit of them?</VERS>\r\n      <VERS vnumber=\"29\">And Zephaniah the priest read this letter in the ears of Jeremiah the prophet.</VERS>\r\n      <VERS vnumber=\"30\">Then came the word of Jehovah unto Jeremiah, saying,</VERS>\r\n      <VERS vnumber=\"31\">Send to all them of the captivity, saying, Thus saith Jehovah concerning Shemaiah the Nehelamite: Because that Shemaiah hath prophesied unto you, and I sent him not, and he hath caused you to trust in a lie;</VERS>\r\n      <VERS vnumber=\"32\">therefore thus saith Jehovah, 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 unto my people, saith Jehovah, because he hath spoken rebellion against Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"30\">\r\n      <VERS vnumber=\"1\">The word that came to Jeremiah from Jehovah, saying,</VERS>\r\n      <VERS vnumber=\"2\">Thus speaketh Jehovah, the God of Israel, saying, Write thee all the words that I have spoken unto thee in a book.</VERS>\r\n      <VERS vnumber=\"3\">For, lo, the days come, saith Jehovah, that I will turn again the captivity of my people Israel and Judah, saith Jehovah; and I will cause them to return to the land that I gave to their fathers, and they shall possess it.</VERS>\r\n      <VERS vnumber=\"4\">And these are the words that Jehovah spake concerning Israel and concerning Judah.</VERS>\r\n      <VERS vnumber=\"5\">For thus saith Jehovah: We have heard a voice of trembling, of fear, and not of peace.</VERS>\r\n      <VERS vnumber=\"6\">Ask 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?</VERS>\r\n      <VERS vnumber=\"7\">Alas! 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.</VERS>\r\n      <VERS vnumber=\"8\">And it shall come to pass in that day, saith Jehovah of hosts, that I will break his yoke from off thy neck, and will burst thy bonds; and strangers shall no more make him their bondman;</VERS>\r\n      <VERS vnumber=\"9\">but they shall serve Jehovah their God, and David their king, whom I will raise up unto them.</VERS>\r\n      <VERS vnumber=\"10\">Therefore fear thou not, O Jacob my servant, saith Jehovah; 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 quiet and at ease, and none shall make him afraid.</VERS>\r\n      <VERS vnumber=\"11\">For I am with thee, saith Jehovah, to save thee: for I will make a full end of all the nations whither I have scattered thee, but I will not make a full end of thee; but I will correct thee in measure, and will in no wise leave thee unpunished.</VERS>\r\n      <VERS vnumber=\"12\">For thus saith Jehovah, Thy hurt is incurable, and thy wound grievous.</VERS>\r\n      <VERS vnumber=\"13\">There is none to plead thy cause, that thou mayest be bound up: thou hast no healing medicines.</VERS>\r\n      <VERS vnumber=\"14\">All 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 greatness of thine iniquity, because thy sins were increased.</VERS>\r\n      <VERS vnumber=\"15\">Why criest thou for thy hurt? thy pain is incurable: for the greatness of thine iniquity, because thy sins were increased, I have done these things unto thee.</VERS>\r\n      <VERS vnumber=\"16\">Therefore all they that devour thee shall be devoured; and all thine adversaries, every one of them, shall go into captivity; and they that despoil thee shall be a spoil, and all that prey upon thee will I give for a prey.</VERS>\r\n      <VERS vnumber=\"17\">For I will restore health unto thee, and I will heal thee of thy wounds, saith Jehovah; because they have called thee an outcast, [saying], It is Zion, whom no man seeketh after.</VERS>\r\n      <VERS vnumber=\"18\">Thus saith Jehovah: Behold, I will turn again the captivity of Jacob`s tents, and have compassion on his dwelling-places; and the city shall be builded upon its own hill, and the palace shall be inhabited after its own manner.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">Their children also shall be as aforetime, and their congregation shall be established before me; and I will punish all that oppress them.</VERS>\r\n      <VERS vnumber=\"21\">And their prince shall be of themselves, and their ruler shall proceed from the midst of them; and I will cause him to draw near, and he shall approach unto me: for who is he that hath had boldness to approach unto me? saith Jehovah.</VERS>\r\n      <VERS vnumber=\"22\">And ye shall be my people, and I will be your God.</VERS>\r\n      <VERS vnumber=\"23\">Behold, the tempest of Jehovah, [even his] wrath, is gone forth, a sweeping tempest: it shall burst upon the head of the wicked.</VERS>\r\n      <VERS vnumber=\"24\">The fierce anger of Jehovah shall not return, until he have executed, and till he have performed the intents of his heart: in the latter days ye shall understand it.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"31\">\r\n      <VERS vnumber=\"1\">At that time, saith Jehovah, will I be the God of all the families of Israel, and they shall be my people.</VERS>\r\n      <VERS vnumber=\"2\">Thus saith Jehovah, The people that were left of the sword found favor in the wilderness; even Israel, when I went to cause him to rest.</VERS>\r\n      <VERS vnumber=\"3\">Jehovah appeared of old unto me, [saying], Yea, I have loved thee with an everlasting love: therefore with lovingkindness have I drawn thee.</VERS>\r\n      <VERS vnumber=\"4\">Again will I build thee, and thou shalt be built, O virgin of Israel: again shalt thou be adorned with thy tabrets, and shalt go forth in the dances of them that make merry.</VERS>\r\n      <VERS vnumber=\"5\">Again shalt thou plant vineyards upon the mountains of Samaria; the planters shall plant, and shall enjoy [the fruit thereof].</VERS>\r\n      <VERS vnumber=\"6\">For there shall be a day, that the watchmen upon the hills of Ephraim shall cry, Arise ye, and let us go up to Zion unto Jehovah our God.</VERS>\r\n      <VERS vnumber=\"7\">For thus saith Jehovah, Sing with gladness for Jacob, and shout for the chief of the nations: publish ye, praise ye, and say, O Jehovah, save thy people, the remnant of Israel.</VERS>\r\n      <VERS vnumber=\"8\">Behold, I will bring them from the north country, and gather them from the uttermost parts 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 they return hither.</VERS>\r\n      <VERS vnumber=\"9\">They shall come with weeping; and with supplications will I lead them: I will cause them to walk by rivers of waters, in a straight way wherein they shall not stumble; for I am a father to Israel, and Ephraim is my first-born.</VERS>\r\n      <VERS vnumber=\"10\">Hear the word of Jehovah, O ye nations, and declare it in the isles afar off; and say, He that scattered Israel will gather him, and keep him, as shepherd doth his flock.</VERS>\r\n      <VERS vnumber=\"11\">For Jehovah hath ransomed Jacob, and redeemed him from the hand of him that was stronger than he.</VERS>\r\n      <VERS vnumber=\"12\">And they shall come and sing in the height of Zion, and shall flow unto the goodness of Jehovah, to the grain, and to the new wine, and to the oil, and to 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.</VERS>\r\n      <VERS vnumber=\"13\">Then shall the virgin rejoice in the dance, and the young men and the old together; for I will turn their mourning into joy, and will comfort them, and make them rejoice from their sorrow.</VERS>\r\n      <VERS vnumber=\"14\">And I will satiate the soul of the priests with fatness, and my people shall be satisfied with my goodness, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"15\">Thus saith Jehovah: A voice is heard in Ramah, lamentation, and bitter weeping, Rachel weeping for her children; she refuseth to be comforted for her children, because they are not.</VERS>\r\n      <VERS vnumber=\"16\">Thus saith Jehovah: Refrain thy voice from weeping, and thine eyes from tears; for thy work shall be rewarded, saith Jehovah; and they shall come again from the land of the enemy.</VERS>\r\n      <VERS vnumber=\"17\">And there is hope for thy latter end, saith Jehovah; and [thy] children shall come again to their own border.</VERS>\r\n      <VERS vnumber=\"18\">I have surely heard Ephraim bemoaning himself [thus], Thou hast chastised me, and I was chastised, as a calf unaccustomed [to the yoke]: turn thou me, and I shall be turned; for thou art Jehovah my God.</VERS>\r\n      <VERS vnumber=\"19\">Surely 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.</VERS>\r\n      <VERS vnumber=\"20\">Is Ephraim my dear son? is he a darling child? for as often as I speak against him, I do earnestly remember him still: therefore my heart yearneth for him; I will surely have mercy upon him, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"21\">Set thee up waymarks, make thee guide-posts; set thy heart toward the highway, even the way by which thou wentest: turn again, O virgin of Israel, turn again to these thy cities.</VERS>\r\n      <VERS vnumber=\"22\">How long wilt thou go hither and thither, O thou backsliding daughter? for Jehovah hath created a new thing in the earth: a woman shall encompass a man.</VERS>\r\n      <VERS vnumber=\"23\">Thus saith Jehovah of hosts, the God of Israel, Yet again shall they use this speech in the land of Judah and in the cities thereof, when I shall bring again their captivity: Jehovah bless thee, O habitation of righteousness, O mountain of holiness.</VERS>\r\n      <VERS vnumber=\"24\">And Judah and all the cities thereof shall dwell therein together, the husbandmen, and they that go about with flocks.</VERS>\r\n      <VERS vnumber=\"25\">For I have satiated the weary soul, and every sorrowful soul have I replenished.</VERS>\r\n      <VERS vnumber=\"26\">Upon this I awaked, and beheld; and my sleep was sweet unto me.</VERS>\r\n      <VERS vnumber=\"27\">Behold, the days come, saith Jehovah, that I will sow the house of Israel and the house of Judah with the seed of man, and with the seed of beast.</VERS>\r\n      <VERS vnumber=\"28\">And it shall come to pass that, like as I have watched over them to pluck up and to break down and to overthrow and to destroy and to afflict, so will I watch over them to build and to plant, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"29\">In those days they shall say no more, The fathers have eaten sour grapes, and the children`s teeth are set on edge.</VERS>\r\n      <VERS vnumber=\"30\">But every one shall die for his own iniquity: every man that eateth the sour grapes, his teeth shall be set on edge.</VERS>\r\n      <VERS vnumber=\"31\">Behold, the days come, saith Jehovah, that I will make a new covenant with the house of Israel, and with the house of Judah:</VERS>\r\n      <VERS vnumber=\"32\">not 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 a husband unto them, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"33\">But this is the covenant that I will make with the house of Israel after those days, saith Jehovah: I will put my law in their inward parts, and in their heart will I write it; and I will be their God, and they shall be my people:</VERS>\r\n      <VERS vnumber=\"34\">and they shall teach no more every man his neighbor, and every man his brother, saying, Know Jehovah; for they shall all know me, from the least of them unto the greatest of them, saith Jehovah: for I will forgive their iniquity, and their sin will I remember no more.</VERS>\r\n      <VERS vnumber=\"35\">Thus saith Jehovah, who giveth the sun for a light by day, and the ordinances of the moon and of the stars for a light by night, who stirreth up the sea, so that the waves thereof roar; Jehovah of hosts is his name:</VERS>\r\n      <VERS vnumber=\"36\">If these ordinances depart from before me, saith Jehovah, then the seed of Israel also shall cease from being a nation before me for ever.</VERS>\r\n      <VERS vnumber=\"37\">Thus saith Jehovah: If heaven above can be measured, and the foundations of the earth searched out beneath, then will I also cast off all the seed of Israel for all that they have done, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"38\">Behold, the days come, saith Jehovah, that the city shall be built to Jehovah from the tower of Hananel unto the gate of the corner.</VERS>\r\n      <VERS vnumber=\"39\">And the measuring line shall go out further straight onward unto the hill Gareb, and shall turn about unto Goah.</VERS>\r\n      <VERS vnumber=\"40\">And the whole valley of the dead bodies and of the ashes, and all the fields unto the brook Kidron, unto the corner of the horse gate toward the east, shall be holy unto Jehovah; it shall not be plucked up, nor thrown down any more for ever.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"32\">\r\n      <VERS vnumber=\"1\">The word that came to Jeremiah from Jehovah in the tenth year of Zedekiah king of Judah, which was the eighteenth year of Nebuchadrezzar.</VERS>\r\n      <VERS vnumber=\"2\">Now at that time the king of Babylon`s army was besieging Jerusalem; and Jeremiah the prophet was shut up in the court of the guard, which was in the king of Judah`s house.</VERS>\r\n      <VERS vnumber=\"3\">For Zedekiah king of Judah had shut him up, saying, Wherefore dost thou prophesy, and say, Thus saith Jehovah, Behold, I will give this city into the hand of the king of Babylon, and he shall take it;</VERS>\r\n      <VERS vnumber=\"4\">and 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;</VERS>\r\n      <VERS vnumber=\"5\">and he shall bring Zedekiah to Babylon, and there shall he be until I visit him, saith Jehovah: though ye fight with the Chaldeans, ye shall not prosper?</VERS>\r\n      <VERS vnumber=\"6\">And Jeremiah said, The word of Jehovah came unto me, saying,</VERS>\r\n      <VERS vnumber=\"7\">Behold, Hanamel 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.</VERS>\r\n      <VERS vnumber=\"8\">So Hanamel mine uncle`s son came to me in the court of the guard according to the word of Jehovah, and said unto me, Buy my field, I pray thee, that is in Anathoth, which is in the land 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 Jehovah.</VERS>\r\n      <VERS vnumber=\"9\">And I bought the field that was in Anathoth of Hanamel mine uncle`s son, and weighed him the money, even seventeen shekels of silver.</VERS>\r\n      <VERS vnumber=\"10\">And I subscribed the deed, and sealed it, and called witnesses, and weighed him the money in the balances.</VERS>\r\n      <VERS vnumber=\"11\">So I took the deed of the purchase, both that which was sealed, [according to] the law and custom, and that which was open:</VERS>\r\n      <VERS vnumber=\"12\">and I delivered the deed of the purchase unto Baruch the son of Neriah, the son of Mahseiah, in the presence of Hanamel mine uncle`s [son], and in the presence of the witnesses that subscribed the deed of the purchase, before all the Jews that sat in the court of the guard.</VERS>\r\n      <VERS vnumber=\"13\">And I charged Baruch before them, saying,</VERS>\r\n      <VERS vnumber=\"14\">Thus saith Jehovah of hosts, the God of Israel: Take these deeds, this deed of the purchase which is sealed, and this deed which is open, and put them in an earthen vessel; that they may continue many days.</VERS>\r\n      <VERS vnumber=\"15\">For thus saith Jehovah of hosts, the God of Israel: Houses and fields and vineyards shall yet again be bought in this land.</VERS>\r\n      <VERS vnumber=\"16\">Now after I had delivered the deed of the purchase unto Baruch the son of Neriah, I prayed unto Jehovah, saying,</VERS>\r\n      <VERS vnumber=\"17\">Ah Lord Jehovah! behold, thou hast made the heavens and the earth by thy great power and by thine outstretched arm; there is nothing too hard for thee,</VERS>\r\n      <VERS vnumber=\"18\">who showest lovingkindness unto thousands, and recompensest the iniquity of the fathers into the bosom of their children after them; the great, the mighty God, Jehovah of hosts is his name;</VERS>\r\n      <VERS vnumber=\"19\">great in counsel, and mighty in work; whose 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:</VERS>\r\n      <VERS vnumber=\"20\">who didst set signs and wonders in the land of Egypt, even unto this day, both in Israel and among [other] men; and madest thee a name, as at this day;</VERS>\r\n      <VERS vnumber=\"21\">and didst bring forth thy people Israel out of the land of Egypt with signs, and with wonders, and with a strong hand, and with an outstretched arm, and with great terror;</VERS>\r\n      <VERS vnumber=\"22\">and gavest them this land, which thou didst swear to their fathers to give them, a land flowing with milk and honey;</VERS>\r\n      <VERS vnumber=\"23\">and 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.</VERS>\r\n      <VERS vnumber=\"24\">Behold, the mounds, 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.</VERS>\r\n      <VERS vnumber=\"25\">And thou hast said unto me, O Lord Jehovah, Buy thee the field for money, and call witnesses; whereas the city is given into the hand of the Chaldeans.</VERS>\r\n      <VERS vnumber=\"26\">Then came the word of Jehovah unto Jeremiah, saying,</VERS>\r\n      <VERS vnumber=\"27\">Behold, I am Jehovah, the God of all flesh: is there anything too hard for me?</VERS>\r\n      <VERS vnumber=\"28\">Therefore thus saith Jehovah: 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:</VERS>\r\n      <VERS vnumber=\"29\">and the Chaldeans, that fight against this city, shall come and set this city on fire, 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.</VERS>\r\n      <VERS vnumber=\"30\">For the children of Israel and the children of Judah have done only that which was evil in my sight from their youth; for the children of Israel have only provoked me to anger with the work of their hands, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"31\">For this city hath been to me a provocation of mine anger and of my wrath from the day that they built it even unto this day; that I should remove it from before my face,</VERS>\r\n      <VERS vnumber=\"32\">because 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.</VERS>\r\n      <VERS vnumber=\"33\">And they have turned unto me the back, and not the face: and though I taught them, rising up early and teaching them, yet they have not hearkened to receive instruction.</VERS>\r\n      <VERS vnumber=\"34\">But they set their abominations in the house which is called by my name, to defile it.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">And now therefore thus saith Jehovah, the God of Israel, concerning this city, whereof ye say, It is given into the hand of the king of Babylon by the sword, and by the famine, and by the pestilence:</VERS>\r\n      <VERS vnumber=\"37\">Behold, I will gather them out of all the countries, whither I have driven them in mine anger, and in my wrath, and in great indignation; and I will bring them again unto this place, and I will cause them to dwell safely:</VERS>\r\n      <VERS vnumber=\"38\">and they shall be my people, and I will be their God:</VERS>\r\n      <VERS vnumber=\"39\">and 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:</VERS>\r\n      <VERS vnumber=\"40\">and I will make an everlasting covenant with them, that I will not turn away from following them, to do them good; and I will put my fear in their hearts, that they may not depart from me.</VERS>\r\n      <VERS vnumber=\"41\">Yea, 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.</VERS>\r\n      <VERS vnumber=\"42\">For thus saith Jehovah: 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.</VERS>\r\n      <VERS vnumber=\"43\">And 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.</VERS>\r\n      <VERS vnumber=\"44\">Men shall buy fields for money, and subscribe the deeds, and seal them, and call witnesses, in the land of Benjamin, and in the places about Jerusalem, and in the cities of Judah, and in the cities of the hill-country, and in the cities of the lowland, and in the cities of the South: for I will cause their captivity to return, saith Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"33\">\r\n      <VERS vnumber=\"1\">Moreover the word of Jehovah came unto Jeremiah the second time, while he was yet shut up in the court of the guard, saying,</VERS>\r\n      <VERS vnumber=\"2\">Thus saith Jehovah that doeth it, Jehovah that formeth it to establish it; Jehovah is his name:</VERS>\r\n      <VERS vnumber=\"3\">Call unto me, and I will answer thee, and will show thee great things, and difficult, which thou knowest not.</VERS>\r\n      <VERS vnumber=\"4\">For thus saith Jehovah, the God of Israel, concerning the houses of this city, and concerning the houses of the kings of Judah, which are broken down [to make a defence] against the mounds and against the sword;</VERS>\r\n      <VERS vnumber=\"5\">while [men] come to fight with the Chaldeans, and to fill them with the dead bodies of men, whom I have slain in mine anger and in my wrath, and for all whose wickedness I have hid my face from this city:</VERS>\r\n      <VERS vnumber=\"6\">Behold, I will bring it health and cure, and I will cure them; and I will reveal unto them abundance of peace and truth.</VERS>\r\n      <VERS vnumber=\"7\">And I will cause the captivity of Judah and the captivity of Israel to return, and will build them, as at the first.</VERS>\r\n      <VERS vnumber=\"8\">And 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 against me, and whereby they have transgressed against me.</VERS>\r\n      <VERS vnumber=\"9\">And [this city] shall be to me for a name of joy, for a praise and for a glory, before all the nations of the earth, which shall hear all the good that I do unto them, and shall fear and tremble for all the good and for all the peace that I procure unto it.</VERS>\r\n      <VERS vnumber=\"10\">Thus saith Jehovah: Yet again there shall be heard in this place, whereof ye say, It is waste, 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,</VERS>\r\n      <VERS vnumber=\"11\">the voice of joy and the voice of gladness, the voice of the bridegroom and the voice of the bride, the voice of them that say, Give thanks to Jehovah of hosts, for Jehovah is good, for his lovingkindness [endureth] for ever; [and of them] that bring [sacrifices of] thanksgiving into the house of Jehovah. For I will cause the captivity of the land to return as at the first, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"12\">Thus saith Jehovah of hosts: Yet again shall there be in this place, which is waste, without man and without beast, and in all the cities thereof, a habitation of shepherds causing their flocks to lie down.</VERS>\r\n      <VERS vnumber=\"13\">In the cities of the hill-country, in the cities of the lowland, 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 again pass under the hands of him that numbereth them, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"14\">Behold, the days come, saith Jehovah, that I will perform that good word which I have spoken concerning the house of Israel and concerning the house of Judah.</VERS>\r\n      <VERS vnumber=\"15\">In those days, and at that time, will I cause a Branch of righteousness to grow up unto David; and he shall execute justice and righteousness in the land.</VERS>\r\n      <VERS vnumber=\"16\">In those days shall Judah be saved, and Jerusalem shall dwell safely; and this is [the name] whereby she shall be called: Jehovah our righteousness.</VERS>\r\n      <VERS vnumber=\"17\">For thus saith Jehovah: David shall never want a man to sit upon the throne of the house of Israel;</VERS>\r\n      <VERS vnumber=\"18\">neither shall the priests the Levites want a man before me to offer burnt-offerings, and to burn meal-offerings, and to do sacrifice continually.</VERS>\r\n      <VERS vnumber=\"19\">And the word of Jehovah came unto Jeremiah, saying,</VERS>\r\n      <VERS vnumber=\"20\">Thus saith Jehovah: If ye can break my covenant of the day, and my covenant of the night, so that there shall not be day and night in their season;</VERS>\r\n      <VERS vnumber=\"21\">then may also my covenant be broken with David my servant, that he shall not have a son to reign upon his throne; and with the Levites the priests, my ministers.</VERS>\r\n      <VERS vnumber=\"22\">As 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.</VERS>\r\n      <VERS vnumber=\"23\">And the word of Jehovah came to Jeremiah, saying,</VERS>\r\n      <VERS vnumber=\"24\">Considerest thou not what this people have spoken, saying, The two families which Jehovah did choose, he hath cast them off? thus do they despise my people, that they should be no more a nation before them.</VERS>\r\n      <VERS vnumber=\"25\">Thus saith Jehovah: If my covenant of day and night [stand] not, if I have not appointed the ordinances of heaven and earth;</VERS>\r\n      <VERS vnumber=\"26\">then will I also cast away the seed of Jacob, and of David my servant, so that I will not take of his seed to be rulers over the seed of Abraham, Isaac, and Jacob: for I will cause their captivity to return, and will have mercy on them.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"34\">\r\n      <VERS vnumber=\"1\">The word which came unto Jeremiah from Jehovah, when Nebuchadnezzar king of Babylon, and all his army, and all the kingdoms of the earth that were under his dominion, and all the peoples, were fighting against Jerusalem, and against all the cities thereof, saying:</VERS>\r\n      <VERS vnumber=\"2\">Thus saith Jehovah, the God of Israel, Go, and speak to Zedekiah king of Judah, and tell him, Thus saith Jehovah, Behold, I will give this city into the hand of the king of Babylon, and he shall burn it with fire:</VERS>\r\n      <VERS vnumber=\"3\">and 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.</VERS>\r\n      <VERS vnumber=\"4\">Yet hear the word of Jehovah, O Zedekiah king of Judah: thus saith Jehovah concerning thee, Thou shalt not die by the sword;</VERS>\r\n      <VERS vnumber=\"5\">thou shalt die in peace; and with the burnings of thy fathers, the former kings that were before thee, so shall they make a burning for thee; and they shall lament thee, [saying], Ah Lord! for I have spoken the word, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"6\">Then Jeremiah the prophet spake all these words unto Zedekiah king of Judah in Jerusalem,</VERS>\r\n      <VERS vnumber=\"7\">when the king of Babylon`s army was fighting against Jerusalem, and against all the cities of Judah that were left, against Lachish and against Azekah; for these [alone] remained of the cities of Judah [as] fortified cities.</VERS>\r\n      <VERS vnumber=\"8\">The word that came unto Jeremiah from Jehovah, after that the king Zedekiah had made a covenant with all the people that were at Jerusalem, to proclaim liberty unto them;</VERS>\r\n      <VERS vnumber=\"9\">that every man should let his man-servant, and every man his maid-servant, that is a Hebrew or a Hebrewess, go free; that none should make bondmen of them, [to wit], of a Jew his brother.</VERS>\r\n      <VERS vnumber=\"10\">And all the princes and all the people obeyed, that had entered into the covenant, that every one should let his man-servant, and every one his maid-servant, go free, that none should make bondmen of them any more; they obeyed, and let them go:</VERS>\r\n      <VERS vnumber=\"11\">but afterwards 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.</VERS>\r\n      <VERS vnumber=\"12\">Therefore the word of Jehovah came to Jeremiah from Jehovah, saying,</VERS>\r\n      <VERS vnumber=\"13\">Thus saith Jehovah, 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 bondage, saying,</VERS>\r\n      <VERS vnumber=\"14\">At the end of seven years ye shall let go every man his brother that is a Hebrew, that hath been sold unto thee, and hath served thee six years, thou shalt let him go free from thee: but your fathers hearkened not unto me, neither inclined their ear.</VERS>\r\n      <VERS vnumber=\"15\">And ye were now turned, and had done that which is right in mine eyes, in proclaiming liberty every man to his neighbor; and ye had made a covenant before me in the house which is called by my name:</VERS>\r\n      <VERS vnumber=\"16\">but ye turned and profaned my name, and caused every man his servant, and every man his handmaid, whom ye had let go free at their pleasure, to return; and ye brought them into subjection, to be unto you for servants and for handmaids.</VERS>\r\n      <VERS vnumber=\"17\">Therefore thus saith Jehovah: ye have not hearkened unto me, to proclaim liberty, every man to his brother, and every man to his neighbor: behold, I proclaim unto you a liberty, saith Jehovah, to the sword, to the pestilence, and to the famine; and I will make you to be tossed to and fro among all the kingdoms of the earth.</VERS>\r\n      <VERS vnumber=\"18\">And I will give the men that have transgressed my covenant, that have not performed the words of the covenant which they made before me, when they cut the calf in twain and passed between the parts thereof;</VERS>\r\n      <VERS vnumber=\"19\">the princes of Judah, and the princes of Jerusalem, the eunuchs, and the priests, and all the people of the land, that passed between the parts of the calf;</VERS>\r\n      <VERS vnumber=\"20\">I 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 food unto the birds of the heavens, and to the beasts of the earth.</VERS>\r\n      <VERS vnumber=\"21\">And 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, that are gone away from you.</VERS>\r\n      <VERS vnumber=\"22\">Behold, I will command, saith Jehovah, 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 inhabitant.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"35\">\r\n      <VERS vnumber=\"1\">The word which came unto Jeremiah from Jehovah in the days of Jehoiakim the son of Josiah, king of Judah, saying,</VERS>\r\n      <VERS vnumber=\"2\">Go unto the house of the Rechabites, and speak unto them, and bring them into the house of Jehovah, into one of the chambers, and give them wine to drink.</VERS>\r\n      <VERS vnumber=\"3\">Then I took Jaazaniah the son of Jeremiah, the son of Habazziniah, and his brethren, and all his sons, and the whole house of the Rechabites;</VERS>\r\n      <VERS vnumber=\"4\">and I brought them into the house of Jehovah, into the chamber of the sons of Hanan the son of Igdaliah, the 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 threshold.</VERS>\r\n      <VERS vnumber=\"5\">And I set before the sons of the house of the Rechabites bowls full of wine, and cups; and I said unto them, Drink ye wine.</VERS>\r\n      <VERS vnumber=\"6\">But 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:</VERS>\r\n      <VERS vnumber=\"7\">neither 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 wherein ye sojourn.</VERS>\r\n      <VERS vnumber=\"8\">And we have obeyed the voice of Jonadab the son of Rechab, our father, in all that he charged us, to drink no wine all our days, we, our wives, our sons, or our daughters;</VERS>\r\n      <VERS vnumber=\"9\">nor to build houses for us to dwell in; neither have we vineyard, nor field, nor seed:</VERS>\r\n      <VERS vnumber=\"10\">but we have dwelt in tents, and have obeyed, and done according to all that Jonadab our father commanded us.</VERS>\r\n      <VERS vnumber=\"11\">But 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.</VERS>\r\n      <VERS vnumber=\"12\">Then came the word of Jehovah unto Jeremiah, saying,</VERS>\r\n      <VERS vnumber=\"13\">Thus saith Jehovah of hosts, the God of Israel: Go, and say to the men of Judah and the inhabitants of Jerusalem, Will ye not receive instruction to hearken to my words? saith Jehovah.</VERS>\r\n      <VERS vnumber=\"14\">The words of Jonadab the son of Rechab, that he commanded his sons, not to drink wine, are performed; and unto this day they drink none, for they obey their father`s commandment: but I have spoken unto you, rising up early and speaking; and ye have not hearkened unto me.</VERS>\r\n      <VERS vnumber=\"15\">I 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.</VERS>\r\n      <VERS vnumber=\"16\">Forasmuch as 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;</VERS>\r\n      <VERS vnumber=\"17\">therefore thus saith Jehovah, the 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.</VERS>\r\n      <VERS vnumber=\"18\">And Jeremiah said unto the house of the Rechabites, Thus saith Jehovah 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 commanded you;</VERS>\r\n      <VERS vnumber=\"19\">therefore thus saith Jehovah of hosts, the God of Israel: Jonadab the son of Rechab shall not want a man to stand before me for ever.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"36\">\r\n      <VERS vnumber=\"1\">And it came to pass in the fourth year of Jehoiakim the son of Josiah, king of Judah, that this word came unto Jeremiah from Jehovah, saying,</VERS>\r\n      <VERS vnumber=\"2\">Take 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.</VERS>\r\n      <VERS vnumber=\"3\">It 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.</VERS>\r\n      <VERS vnumber=\"4\">Then Jeremiah called Baruch the son of Neriah; and Baruch wrote from the mouth of Jeremiah all the words of Jehovah, which he had spoken unto him, upon a roll of a book.</VERS>\r\n      <VERS vnumber=\"5\">And Jeremiah commanded Baruch, saying, I am shut up; I cannot go into the house of Jehovah:</VERS>\r\n      <VERS vnumber=\"6\">therefore go thou, and read in the roll, which thou hast written from my mouth, the words of Jehovah in the ears of the people in Jehovah`s house upon the fast-day; and also thou shalt read them in the ears of all Judah that come out of their cities.</VERS>\r\n      <VERS vnumber=\"7\">It may be they will present their supplication before Jehovah, and will return every one from his evil way; for great is the anger and the wrath that Jehovah hath pronounced against this people.</VERS>\r\n      <VERS vnumber=\"8\">And Baruch the son of Neriah did according to all that Jeremiah the prophet commanded him, reading in the book the words of Jehovah in Jehovah`s house.</VERS>\r\n      <VERS vnumber=\"9\">Now it came to pass in the fifth year of Jehoiakim the son of Josiah, king of Judah, in the ninth month, that all the people in Jerusalem, and all the people that came from the cities of Judah unto Jerusalem, proclaimed a fast before Jehovah.</VERS>\r\n      <VERS vnumber=\"10\">Then read Baruch in the book the words of Jeremiah in the house of Jehovah, in the chamber of Gemariah the son of Shaphan, the scribe, in the upper court, at the entry of the new gate of Jehovah`s house, in the ears of all the people.</VERS>\r\n      <VERS vnumber=\"11\">And when Micaiah the son of Gemariah, the son of Shaphan, had heard out of the book all the words of Jehovah,</VERS>\r\n      <VERS vnumber=\"12\">he went down into the king`s house, into the scribe`s chamber: and, lo, all the princes were sitting there, [to wit], 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.</VERS>\r\n      <VERS vnumber=\"13\">Then Micaiah declared unto them all the words that he had heard, when Baruch read the book in the ears of the people.</VERS>\r\n      <VERS vnumber=\"14\">Therefore all the princes sent Jehudi the son of Nethaniah, the son of Shelemiah, the son of Cushi, unto Baruch, saying, Take in thy 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.</VERS>\r\n      <VERS vnumber=\"15\">And they said unto him, Sit down now, and read it in our ears. So Baruch read it in their ears.</VERS>\r\n      <VERS vnumber=\"16\">Now it came to pass, when they had heard all the words, they turned in fear one toward another, and said unto Baruch, We will surely tell the king of all these words.</VERS>\r\n      <VERS vnumber=\"17\">And they asked Baruch, saying, Tell us now, How didst thou write all these words at his mouth?</VERS>\r\n      <VERS vnumber=\"18\">Then Baruch answered them, He pronounced all these words unto me with his mouth, and I wrote them with ink in the book.</VERS>\r\n      <VERS vnumber=\"19\">Then said the princes unto Baruch, Go, hide thee, thou and Jeremiah; and let no man know where ye are.</VERS>\r\n      <VERS vnumber=\"20\">And they went in to the king into the court; but they had laid up the roll in the chamber of Elishama the scribe; and they told all the words in the ears of the king.</VERS>\r\n      <VERS vnumber=\"21\">So the king sent Jehudi to fetch the roll; and he took it out of the chamber of Elishama the scribe. And Jehudi read it in the ears of the king, and in the ears of all the princes that stood beside the king.</VERS>\r\n      <VERS vnumber=\"22\">Now the king was sitting in the winter-house in the ninth month: and [there was a fire in] the brazier burning before him.</VERS>\r\n      <VERS vnumber=\"23\">And it came to pass, when Jehudi had read three or four leaves, that [the king] cut it with the penknife, and cast it into the fire that was in the brazier, until all the roll was consumed in the fire that was in the brazier.</VERS>\r\n      <VERS vnumber=\"24\">And they were not afraid, nor rent their garments, neither the king, nor any of his servants that heard all these words.</VERS>\r\n      <VERS vnumber=\"25\">Moreover Elnathan and Delaiah and Gemariah had made intercession to the king that he would not burn the roll; but he would not hear them.</VERS>\r\n      <VERS vnumber=\"26\">And the king commanded Jerahmeel the king`s son, and Seraiah the son of Azriel, and Shelemiah the son of Abdeel, to take Baruch the scribe and Jeremiah the prophet; but Jehovah hid them.</VERS>\r\n      <VERS vnumber=\"27\">Then the word of Jehovah came to Jeremiah, after that the king had burned the roll, and the words which Baruch wrote at the mouth of Jeremiah, saying,</VERS>\r\n      <VERS vnumber=\"28\">Take 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.</VERS>\r\n      <VERS vnumber=\"29\">And concerning Jehoiakim king of Judah thou shalt say, Thus saith Jehovah: 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?</VERS>\r\n      <VERS vnumber=\"30\">Therefore thus saith Jehovah concerning 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.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n      <VERS vnumber=\"32\">Then 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"37\">\r\n      <VERS vnumber=\"1\">And Zedekiah the son of Josiah reigned as king, instead of Coniah the son of Jehoiakim, whom Nebuchadrezzar king of Babylon made king in the land of Judah.</VERS>\r\n      <VERS vnumber=\"2\">But neither he, nor his servants, nor the people of the land, did hearken unto the words of Jehovah, which he spake by the prophet Jeremiah.</VERS>\r\n      <VERS vnumber=\"3\">And 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 Jehovah our God for us.</VERS>\r\n      <VERS vnumber=\"4\">Now Jeremiah came in and went out among the people; for they had not put him into prison.</VERS>\r\n      <VERS vnumber=\"5\">And Pharaoh`s army was come forth out of Egypt; and when the Chaldeans that were besieging Jerusalem heard tidings of them, they brake up from Jerusalem.</VERS>\r\n      <VERS vnumber=\"6\">Then came the word of Jehovah unto the prophet Jeremiah, saying,</VERS>\r\n      <VERS vnumber=\"7\">Thus saith Jehovah, the God of Israel, Thus shall ye say to the king of Judah, that sent you unto me to inquire of me: Behold, Pharaoh`s army, which is come forth to help you, shall return to Egypt into their own land.</VERS>\r\n      <VERS vnumber=\"8\">And the Chaldeans shall come again, and fight against this city; and they shall take it, and burn it with fire.</VERS>\r\n      <VERS vnumber=\"9\">Thus saith Jehovah, Deceive not yourselves, saying, The Chaldeans shall surely depart from us; for they shall not depart.</VERS>\r\n      <VERS vnumber=\"10\">For though ye had smitten the whole army of the Chaldeans that fight against you, and there remained but wounded men among them, yea would they rise up every man in his tent, and burn this city with fire.</VERS>\r\n      <VERS vnumber=\"11\">And it came to pass that, when the army of the Chaldeans was broken up from Jerusalem for fear of Pharaoh`s army,</VERS>\r\n      <VERS vnumber=\"12\">then Jeremiah went forth out of Jerusalem to go into the land of Benjamin, to receive his portion there, in the midst of the people.</VERS>\r\n      <VERS vnumber=\"13\">And 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 laid hold on Jeremiah the prophet, saying, Thou art falling away to the Chaldeans.</VERS>\r\n      <VERS vnumber=\"14\">Then said Jeremiah, It is false; I am not falling away to the Chaldeans. But he hearkened not to him; so Irijah laid hold on Jeremiah, and brought him to the princes.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">When Jeremiah was come into the dungeon-house, and into the cells, and Jeremiah had remained there many days;</VERS>\r\n      <VERS vnumber=\"17\">Then Zedekiah the king sent, and fetched him: and the king asked him secretly in his house, and said, Is there any word from Jehovah? And Jeremiah said, There is. He said also, Thou shalt be delivered into the hand of the king of Babylon.</VERS>\r\n      <VERS vnumber=\"18\">Moreover Jeremiah said unto king Zedekiah, Wherein have I sinned against thee, or against thy servants, or against this people, that ye have put me in prison?</VERS>\r\n      <VERS vnumber=\"19\">Where now are your prophets that prophesied unto you, saying, The king of Babylon shall not come against you, nor against this land?</VERS>\r\n      <VERS vnumber=\"20\">And now hear, I pray thee, O my lord the king: let my supplication, I pray thee, be presented before thee, that thou cause me not to return to the house of Jonathan the scribe, lest I die there.</VERS>\r\n      <VERS vnumber=\"21\">Then Zedekiah the king commanded, and they committed Jeremiah into the court of the guard; and they gave him daily a loaf of bread out of the bakers` street, until all the bread in the city was spent. Thus Jeremiah remained in the court of the guard.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"38\">\r\n      <VERS vnumber=\"1\">And Shephatiah the son of Mattan, and Gedaliah the son of Pashhur, and Jucal the son of Shelemiah, and Pashhur the son of Malchijah, heard the words that Jeremiah spake unto all the people, saying,</VERS>\r\n      <VERS vnumber=\"2\">Thus saith Jehovah, He that abideth 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, and his life shall be unto him for a prey, and he shall live.</VERS>\r\n      <VERS vnumber=\"3\">Thus saith Jehovah, This city shall surely be given into the hand of the army of the king of Babylon, and he shall take it.</VERS>\r\n      <VERS vnumber=\"4\">Then the princes said unto the king, Let this man, we pray thee, be put to death; forasmuch as 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.</VERS>\r\n      <VERS vnumber=\"5\">And Zedekiah the king said, Behold, he is in your hand; for the king is not he that can do anything against you.</VERS>\r\n      <VERS vnumber=\"6\">Then took they Jeremiah, and cast him into the dungeon of Malchijah the king`s son, that was in the court of the guard: and they let down Jeremiah with cords. And in the dungeon there was no water, but mire; and Jeremiah sank in the mire.</VERS>\r\n      <VERS vnumber=\"7\">Now when Ebed-melech the Ethiopian, a eunuch, who was in the king`s house, heard that they had put Jeremiah in the dungeon (the king then sitting in the gate of Benjamin,)</VERS>\r\n      <VERS vnumber=\"8\">Ebed-melech went forth out of the king`s house, and spake to the king, saying,</VERS>\r\n      <VERS vnumber=\"9\">My 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 in the place where he is, because of the famine; for there is no more bread in the city.</VERS>\r\n      <VERS vnumber=\"10\">Then the king commanded Ebed-melech the Ethiopian, saying, Take from hence thirty men with thee, and take up Jeremiah the prophet out of the dungeon, before he die.</VERS>\r\n      <VERS vnumber=\"11\">So Ebed-melech took the men with him, and went into the house of the king under the treasury, and took thence rags and worn-out garments, and let them down by cords into the dungeon to Jeremiah.</VERS>\r\n      <VERS vnumber=\"12\">And Ebed-melech the Ethiopian said unto Jeremiah, Put now these rags and worn-out garments under thine armholes under the cords. And Jeremiah did so.</VERS>\r\n      <VERS vnumber=\"13\">So they drew up Jeremiah with the cords, and took him up out of the dungeon: and Jeremiah remained in the court of the guard.</VERS>\r\n      <VERS vnumber=\"14\">Then Zedekiah the king sent, and took Jeremiah the prophet unto him into the third entry that is in the house of Jehovah: and the king said unto Jeremiah, I will ask thee a thing; hide nothing from me.</VERS>\r\n      <VERS vnumber=\"15\">Then Jeremiah said unto Zedekiah, If I declare it unto thee, wilt thou not surely put me to death? and if I give thee counsel, thou wilt not hearken unto me.</VERS>\r\n      <VERS vnumber=\"16\">So Zedekiah the king sware secretly unto Jeremiah, saying, As Jehovah 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.</VERS>\r\n      <VERS vnumber=\"17\">Then said Jeremiah unto Zedekiah, Thus saith Jehovah, the God of hosts, the God of Israel: If thou wilt 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 thy house.</VERS>\r\n      <VERS vnumber=\"18\">But 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.</VERS>\r\n      <VERS vnumber=\"19\">And Zedekiah the king said unto Jeremiah, I am afraid of the Jews that are fallen away to the Chaldeans, lest they deliver me into their hand, and they mock me.</VERS>\r\n      <VERS vnumber=\"20\">But Jeremiah said, They shall not deliver thee. Obey, I beseech thee, the voice of Jehovah, in that which I speak unto thee: so it shall be well with thee, and thy soul shall live.</VERS>\r\n      <VERS vnumber=\"21\">But if thou refuse to go forth, this is the word that Jehovah hath showed me:</VERS>\r\n      <VERS vnumber=\"22\">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 familiar friends have set thee on, and have prevailed over thee: [now that] thy feet are sunk in the mire, they are turned away back.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">Then said Zedekiah unto Jeremiah, Let no man know of these words, and thou shalt not die.</VERS>\r\n      <VERS vnumber=\"25\">But 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:</VERS>\r\n      <VERS vnumber=\"26\">then 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.</VERS>\r\n      <VERS vnumber=\"27\">Then 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.</VERS>\r\n      <VERS vnumber=\"28\">So Jeremiah abode in the court of the guard until the day that Jerusalem was taken.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"39\">\r\n      <VERS vnumber=\"1\">And it came to pass when Jerusalem was taken, (in the ninth year of Zedekiah king of Judah, in the tenth month, came Nebuchadrezzar king of Babylon and all his army against Jerusalem, and besieged it;</VERS>\r\n      <VERS vnumber=\"2\">in the eleventh year of Zedekiah, in the fourth month, the ninth day of the month, a breach was made in the city,)</VERS>\r\n      <VERS vnumber=\"3\">that all the princes of the king of Babylon came in, and sat in the middle gate, [to wit], Nergal-sharezer, Samgar-nebo, Sarsechim, Rab-saris, Nergal-sharezer, Rab-mag, with all the rest of the princes of the king of Babylon.</VERS>\r\n      <VERS vnumber=\"4\">And it came to pass that, when Zedekiah the king of Judah and all the men of war saw them, then they fled, and went forth out of the city by night, by the way of the king`s garden, through the gate betwixt the two walls; and he went out toward the Arabah.</VERS>\r\n      <VERS vnumber=\"5\">But the army of the Chaldeans pursued after them, and overtook Zedekiah in the plains of Jericho: and when they had taken him, they brought him up to Nebuchadrezzar king of Babylon to Riblah in the land of Hamath; and he gave judgment upon him.</VERS>\r\n      <VERS vnumber=\"6\">Then 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.</VERS>\r\n      <VERS vnumber=\"7\">Moreover he put out Zedekiah`s eyes, and bound him in fetters, to carry him to Babylon.</VERS>\r\n      <VERS vnumber=\"8\">And the Chaldeans burned the king`s house, and the houses of the people, with fire, and brake down the walls of Jerusalem.</VERS>\r\n      <VERS vnumber=\"9\">Then Nebuzaradan the captain of the guard carried away captive into Babylon the residue of the people that remained in the city, the deserters also that fell away to him, and the residue of the people that remained.</VERS>\r\n      <VERS vnumber=\"10\">But Nebuzaradan the captain of the guard left of the poor of the people, that had nothing, in the land of Judah, and gave them vineyards and fields at the same time.</VERS>\r\n      <VERS vnumber=\"11\">Now Nebuchadrezzar king of Babylon gave charge concerning Jeremiah to Nebuzaradan the captain of the guard, saying,</VERS>\r\n      <VERS vnumber=\"12\">Take him, and look well to him, and do him no harm; but do unto him even as he shall say unto thee.</VERS>\r\n      <VERS vnumber=\"13\">So Nebuzaradan the captain of the guard sent, and Nebushazban, Rab-saris, and Nergal-sharezer, Rab-mag, and all the chief officers of the king of Babylon;</VERS>\r\n      <VERS vnumber=\"14\">they sent, and took Jeremiah out of the court of the guard, 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.</VERS>\r\n      <VERS vnumber=\"15\">Now the word of Jehovah came unto Jeremiah, while he was shut up in the court of the guard, saying,</VERS>\r\n      <VERS vnumber=\"16\">Go, and speak to Ebed-melech the Ethiopian, saying, Thus saith Jehovah 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 before thee in that day.</VERS>\r\n      <VERS vnumber=\"17\">But I will deliver thee in that day, saith Jehovah; and thou shalt not be given into the hand of the men of whom thou art afraid.</VERS>\r\n      <VERS vnumber=\"18\">For I will surely save 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 Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"40\">\r\n      <VERS vnumber=\"1\">The word which came to Jeremiah from Jehovah, 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 the captives of Jerusalem and Judah, that were carried away captive unto Babylon.</VERS>\r\n      <VERS vnumber=\"2\">And the captain of the guard took Jeremiah, and said unto him, Jehovah thy God pronounced this evil upon this place;</VERS>\r\n      <VERS vnumber=\"3\">and Jehovah hath brought it, and done according as he spake: because ye have sinned against Jehovah, and have not obeyed his voice, therefore this thing is come upon you.</VERS>\r\n      <VERS vnumber=\"4\">And now, behold, I loose thee this day from the chains which are upon thy 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 right unto thee to go, thither go.</VERS>\r\n      <VERS vnumber=\"5\">Now while he was not yet gone back, Go back then, [said he], 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 right unto thee to go. So the captain of the guard gave him victuals and a present, and let him go.</VERS>\r\n      <VERS vnumber=\"6\">Then went Jeremiah unto Gedaliah the son of Ahikam to Mizpah, and dwelt with him among the people that were left in the land.</VERS>\r\n      <VERS vnumber=\"7\">Now when all the captains of the forces that 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 poorest of the land, of them that were not carried away captive to Babylon;</VERS>\r\n      <VERS vnumber=\"8\">then they came to Gedaliah to Mizpah, [to wit], 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 the Maacathite, they and their men.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">As for me, behold, I will dwell at Mizpah, to stand before the Chaldeans that shall 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.</VERS>\r\n      <VERS vnumber=\"11\">Likewise when all the Jews that were in Moab, and among the children of Ammon, 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;</VERS>\r\n      <VERS vnumber=\"12\">then 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.</VERS>\r\n      <VERS vnumber=\"13\">Moreover Johanan the son of Kareah, and all the captains of the forces that were in the fields, came to Gedaliah to Mizpah,</VERS>\r\n      <VERS vnumber=\"14\">and said unto him, Dost thou know that Baalis the king of the children of Ammon hath sent Ishmael the son of Nethaniah to take thy life? But Gedaliah the son of Ahikam believed them not.</VERS>\r\n      <VERS vnumber=\"15\">Then 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 take thy life, that all the Jews that are gathered unto thee should be scattered, and the remnant of Judah perish?</VERS>\r\n      <VERS vnumber=\"16\">But Gedaliah the son of Ahikam said unto Johanan the son of Kareah, Thou shalt not do this thing; for thou speakest falsely of Ishmael.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"41\">\r\n      <VERS vnumber=\"1\">Now it came to pass in the seventh month, that Ishmael the son of Nethaniah, the son of Elishama, of the seed royal and [one of] the chief officers of the king, and ten men with him, came unto Gedaliah the son of Ahikam to Mizpah; and there they did eat bread together in Mizpah.</VERS>\r\n      <VERS vnumber=\"2\">Then 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.</VERS>\r\n      <VERS vnumber=\"3\">Ishmael also slew all the Jews that were with him, [to wit], with Gedaliah, at Mizpah, and the Chaldeans that were found there, the men of war.</VERS>\r\n      <VERS vnumber=\"4\">And it came to pass the second day after he had slain Gedaliah, and no man knew it,</VERS>\r\n      <VERS vnumber=\"5\">that there came men from Shechem, from Shiloh, and from Samaria, even fourscore men, having their beards shaven and their clothes rent, and having cut themselves, with meal-offerings and frankincense in their hand, to bring them to the house of Jehovah.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">But ten men were found among them that said unto Ishmael, Slay us not; for we have stores hidden in the field, of wheat, and of barley, and of oil, and of honey. So he forbare, and slew them not among their brethren.</VERS>\r\n      <VERS vnumber=\"9\">Now the pit wherein Ishmael cast all the dead bodies of the men whom he had slain, by the side of Gedaliah (the same was that which Asa the king had made for fear of Baasha king of Israel,) Ishmael the son of Nethaniah filled it with them that were slain.</VERS>\r\n      <VERS vnumber=\"10\">Then 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; Ishmael the son of Nethaniah carried them away captive, and departed to go over to the children of Ammon.</VERS>\r\n      <VERS vnumber=\"11\">But 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,</VERS>\r\n      <VERS vnumber=\"12\">then 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.</VERS>\r\n      <VERS vnumber=\"13\">Now it came to pass that, when all the people that were with Ishmael saw Johanan the son of Kareah, and all the captains of the forces that were with him, then they were glad.</VERS>\r\n      <VERS vnumber=\"14\">So all the people that Ishmael had carried away captive from Mizpah turned about and came back, and went unto Johanan the son of Kareah.</VERS>\r\n      <VERS vnumber=\"15\">But Ishmael the son of Nethaniah escaped from Johanan with eight men, and went to the children of Ammon.</VERS>\r\n      <VERS vnumber=\"16\">Then 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, [to wit], the men of war, and the women, and the children, and the eunuchs, whom he had brought back from Gibeon:</VERS>\r\n      <VERS vnumber=\"17\">and they departed, and dwelt in Geruth Chimham, which is by Beth-lehem, to go to enter into Egypt,</VERS>\r\n      <VERS vnumber=\"18\">because 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 over the land.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"42\">\r\n      <VERS vnumber=\"1\">Then 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,</VERS>\r\n      <VERS vnumber=\"2\">and said unto Jeremiah the prophet, Let, we pray thee, our supplication be presented before thee, and pray for us unto Jehovah thy God, even for all this remnant; for we are left but a few of many, as thine eyes do behold us:</VERS>\r\n      <VERS vnumber=\"3\">that Jehovah thy God may show us the way wherein we should walk, and the thing that we should do.</VERS>\r\n      <VERS vnumber=\"4\">Then Jeremiah the prophet said unto them, I have heard you; behold, I will pray unto Jehovah your God according to your words; and it shall come to pass that whatsoever thing Jehovah shall answer you, I will declare it unto you; I will keep nothing back from you.</VERS>\r\n      <VERS vnumber=\"5\">Then they said to Jeremiah, Jehovah be a true and faithful witness amongst us, if we do not according to all the word wherewith Jehovah thy God shall send thee to us.</VERS>\r\n      <VERS vnumber=\"6\">Whether it be good, or whether it be evil, we will obey the voice of Jehovah our God, to whom we send thee; that it may be well with us, when we obey the voice of Jehovah our God.</VERS>\r\n      <VERS vnumber=\"7\">And it came to pass after ten days, that the word of Jehovah came unto Jeremiah.</VERS>\r\n      <VERS vnumber=\"8\">Then called he Johanan the son of Kareah, and all the captains of the forces that were with him, and all the people from the least even to the greatest,</VERS>\r\n      <VERS vnumber=\"9\">and said unto them, Thus saith Jehovah, the God of Israel, unto whom ye sent me to present your supplication before him:</VERS>\r\n      <VERS vnumber=\"10\">If 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.</VERS>\r\n      <VERS vnumber=\"11\">Be not afraid of the king of Babylon, of whom ye are afraid; be not afraid of him, saith Jehovah: for I am with you to save you, and to deliver you from his hand.</VERS>\r\n      <VERS vnumber=\"12\">And I will grant you mercy, that he may have mercy upon you, and cause you to return to your own land.</VERS>\r\n      <VERS vnumber=\"13\">But if ye say, We will not dwell in this land; so that ye obey not the voice of Jehovah your God,</VERS>\r\n      <VERS vnumber=\"14\">saying, 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:</VERS>\r\n      <VERS vnumber=\"15\">now therefore hear ye the word of Jehovah, O remnant of Judah: Thus saith Jehovah of hosts, the God of Israel, If ye indeed set your faces to enter into Egypt, and go to sojourn there;</VERS>\r\n      <VERS vnumber=\"16\">then it shall come to pass, that the sword, which ye fear, shall overtake you there in the land of Egypt; and the famine, whereof ye are afraid, shall follow hard after you there in Egypt; and there ye shall die.</VERS>\r\n      <VERS vnumber=\"17\">So 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.</VERS>\r\n      <VERS vnumber=\"18\">For thus saith Jehovah of hosts, the God of Israel: As mine anger and my wrath hath been poured forth upon the inhabitants of Jerusalem, so shall my wrath 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.</VERS>\r\n      <VERS vnumber=\"19\">Jehovah hath spoken concerning you, O remnant of Judah, Go ye not into Egypt: know certainly that I have testified unto you this day.</VERS>\r\n      <VERS vnumber=\"20\">For ye have dealt deceitfully against your own souls; for ye sent me unto Jehovah your God, saying, Pray for us unto Jehovah our God; and according unto all that Jehovah our God shall say, so declare unto us, and we will do it:</VERS>\r\n      <VERS vnumber=\"21\">and I have this day declared it to you; but ye have not obeyed the voice of Jehovah your God in anything for which he hath sent me unto you.</VERS>\r\n      <VERS vnumber=\"22\">Now 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 to sojourn there.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"43\">\r\n      <VERS vnumber=\"1\">And it came to pass that, when Jeremiah had made an end of speaking unto all the people all the words of Jehovah their God, wherewith Jehovah their God had sent him to them, even all these words,</VERS>\r\n      <VERS vnumber=\"2\">then spake Azariah the son of Hoshaiah, and Johanan the son of Kareah, and all the proud men, saying unto Jeremiah, Thou speakest falsely: Jehovah our God hath not sent thee to say, Ye shall not go into Egypt to sojourn there;</VERS>\r\n      <VERS vnumber=\"3\">but Baruch the son of Neriah setteth thee on against us, to deliver us into the hand of the Chaldeans, that they may put us to death, and carry us away captive to Babylon.</VERS>\r\n      <VERS vnumber=\"4\">So Johanan the son of Kareah, and all the captains of the forces, and all the people, obeyed not the voice of Jehovah, to dwell in the land of Judah.</VERS>\r\n      <VERS vnumber=\"5\">But Johanan the son of Kareah, and all the captains of the forces, took all the remnant of Judah, that were returned from all the nations whither they had been driven, to sojourn in the land of Judah;</VERS>\r\n      <VERS vnumber=\"6\">the men, and the women, and the 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;</VERS>\r\n      <VERS vnumber=\"7\">and they came into the land of Egypt; for they obeyed not the voice of Jehovah: and they came unto Tahpanhes.</VERS>\r\n      <VERS vnumber=\"8\">Then came the word of Jehovah unto Jeremiah in Tahpanhes, saying,</VERS>\r\n      <VERS vnumber=\"9\">Take great stones in thy hand, and hide them in mortar in the brickwork, which is at the entry of Pharaoh`s house in Tahpanhes, in the sight of the men of Judah;</VERS>\r\n      <VERS vnumber=\"10\">and say unto them, Thus saith Jehovah 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.</VERS>\r\n      <VERS vnumber=\"11\">And he shall come, and shall smite the land of Egypt; such as are for death [shall be given] to death, and such as are for captivity to captivity, and such as are for the sword to the sword.</VERS>\r\n      <VERS vnumber=\"12\">And I will kindle a fire in the houses of the gods of Egypt; and he shall burn them, and carry them away captive: 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.</VERS>\r\n      <VERS vnumber=\"13\">He shall also break the pillars of Beth-shemesh, that is in the land of Egypt; and the houses of the gods of Egypt shall he burn with fire.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"44\">\r\n      <VERS vnumber=\"1\">The word that came to Jeremiah concerning all the Jews that dwelt in the land of Egypt, that dwelt at Migdol, and at Tahpanhes, and at Memphis, and in the country of Pathros, saying,</VERS>\r\n      <VERS vnumber=\"2\">Thus saith Jehovah 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,</VERS>\r\n      <VERS vnumber=\"3\">because of their wickedness which they have committed to provoke me to anger, in that they went to burn incense, [and] to serve other gods, that they knew not, neither they, nor ye, nor your fathers.</VERS>\r\n      <VERS vnumber=\"4\">Howbeit I sent unto you all my servants the prophets, rising up early and sending them, saying, Oh, do not this abominable thing that I hate.</VERS>\r\n      <VERS vnumber=\"5\">But they hearkened not, nor inclined their ear to turn from their wickedness, to burn no incense unto other gods.</VERS>\r\n      <VERS vnumber=\"6\">Wherefore my wrath 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 it is this day.</VERS>\r\n      <VERS vnumber=\"7\">Therefore now thus saith Jehovah, the God of hosts, the God of Israel: Wherefore commit ye [this] great evil against your own souls, to cut off from you man and woman, infant and suckling, out of the midst of Judah, to leave you none remaining;</VERS>\r\n      <VERS vnumber=\"8\">in that ye provoke me unto anger with the works of your hands, burning incense unto other gods in the land of Egypt, whither ye are gone to sojourn; that ye may be cut off, and that ye may be a curse and a reproach among all the nations of the earth?</VERS>\r\n      <VERS vnumber=\"9\">Have 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 committed in the land of Judah, and in the streets of Jerusalem?</VERS>\r\n      <VERS vnumber=\"10\">They 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.</VERS>\r\n      <VERS vnumber=\"11\">Therefore thus saith Jehovah of hosts, the God of Israel: Behold, I will set my face against you for evil, even to cut off all Judah.</VERS>\r\n      <VERS vnumber=\"12\">And 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; in the land of Egypt shall they fall; they shall 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.</VERS>\r\n      <VERS vnumber=\"13\">For 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;</VERS>\r\n      <VERS vnumber=\"14\">so that none of the remnant of Judah, that are gone into the land of Egypt to sojourn there, shall escape or be left, to return into the land of Judah, to which they have a desire to return to dwell there: for none shall return save such as shall escape.</VERS>\r\n      <VERS vnumber=\"15\">Then all the men who knew that their wives burned incense unto other gods, and all the women that stood by, a great assembly, even all the people that dwelt in the land of Egypt, in Pathros, answered Jeremiah, saying,</VERS>\r\n      <VERS vnumber=\"16\">As for the word that thou hast spoken unto us in the name of Jehovah, we will not hearken unto thee.</VERS>\r\n      <VERS vnumber=\"17\">But we will certainly perform every word that is gone forth out of our 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.</VERS>\r\n      <VERS vnumber=\"18\">But since we left off burning incense to the queen of heaven, and pouring out drink-offerings unto her, we have wanted all things, and have been consumed by the sword and by the famine.</VERS>\r\n      <VERS vnumber=\"19\">And 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 husbands?</VERS>\r\n      <VERS vnumber=\"20\">Then Jeremiah said unto all the people, to the men, and to the women, even to all the people that had given him that answer, saying,</VERS>\r\n      <VERS vnumber=\"21\">The 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 Jehovah remember them, and came it not into his mind?</VERS>\r\n      <VERS vnumber=\"22\">so that Jehovah could not longer bear, because of the evil of your doings, and because of the abominations which ye have committed; therefore is your land become a desolation, and an astonishment, and a curse, without inhabitant, as it is this day.</VERS>\r\n      <VERS vnumber=\"23\">Because ye have burned incense, and because ye have sinned against Jehovah, and have not obeyed the voice of Jehovah, nor walked in his law, nor in his statutes, nor in his testimonies; therefore this evil is happened unto you, as it is this day.</VERS>\r\n      <VERS vnumber=\"24\">Moreover Jeremiah said unto all the people, and to all the women, Hear the word of Jehovah, all Judah that are in the land of Egypt:</VERS>\r\n      <VERS vnumber=\"25\">Thus saith Jehovah of hosts, the God of Israel, saying, Ye and your wives have both spoken with your mouths, and with your hands have fulfilled it, 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: establish then your vows, and perform your vows.</VERS>\r\n      <VERS vnumber=\"26\">Therefore hear ye the word of Jehovah, all Judah that dwell in the land of Egypt: Behold, I have sworn by my great name, saith Jehovah, that my name shall no more be named in the mouth of any man of Judah in all the land of Egypt, saying, As the Lord Jehovah liveth.</VERS>\r\n      <VERS vnumber=\"27\">Behold, I 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.</VERS>\r\n      <VERS vnumber=\"28\">And they that escape the sword shall return out of the land of Egypt into the land of Judah, few in number; and all the remnant of Judah, that are gone into the land of Egypt to sojourn there, shall know whose word shall stand, mine, or theirs.</VERS>\r\n      <VERS vnumber=\"29\">And this shall be the sign unto you, saith Jehovah, that I will punish you in this place, that ye may know that my words shall surely stand against you for evil:</VERS>\r\n      <VERS vnumber=\"30\">Thus saith Jehovah, Behold, I will give Pharaoh Hophra 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, who was his enemy, and sought his life.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"45\">\r\n      <VERS vnumber=\"1\">The word that Jeremiah the prophet spake unto Baruch the son of Neriah, when he wrote these word in a book at the mouth of Jeremiah, in the fourth year of Jehoiakim the son of Josiah, king of Judah, saying,</VERS>\r\n      <VERS vnumber=\"2\">Thus saith Jehovah, the God of Israel, unto thee, O Baruch:</VERS>\r\n      <VERS vnumber=\"3\">Thou didst say, Woe is me now! for Jehovah hath added sorrow to my pain; I am weary with my groaning, and I find no rest.</VERS>\r\n      <VERS vnumber=\"4\">Thus shalt thou say unto him, Thus saith Jehovah: Behold, that which I have built will I break down, and that which I have planted I will pluck up; and this in the whole land.</VERS>\r\n      <VERS vnumber=\"5\">And seekest thou great things for thyself? seek them not; for, behold, I will bring evil upon all flesh, saith Jehovah; but thy life will I give unto thee for a prey in all places whither thou goest.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"46\">\r\n      <VERS vnumber=\"1\">The word of Jehovah which came to Jeremiah the prophet concerning the nations.</VERS>\r\n      <VERS vnumber=\"2\">Of Egypt: concerning the army of Pharaoh-neco 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.</VERS>\r\n      <VERS vnumber=\"3\">Prepare ye the buckler and shield, and draw near to battle.</VERS>\r\n      <VERS vnumber=\"4\">Harness the horses, and get up, ye horsemen, and stand forth with your helmets; furbish the spears, put on the coats of mail.</VERS>\r\n      <VERS vnumber=\"5\">Wherefore have I seen it? they are dismayed and are turned backward; and their mighty ones are beaten down, and are fled apace, and look not back: terror is on every side, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"6\">Let not the swift flee away, nor the mighty man escape; in the north by the river Euphrates have they stumbled and fallen.</VERS>\r\n      <VERS vnumber=\"7\">Who is this that riseth up like the Nile, whose waters toss themselves like the rivers?</VERS>\r\n      <VERS vnumber=\"8\">Egypt riseth up like the Nile, and his waters toss themselves like the rivers: and he saith, I will rise up, I will cover the earth; I will destroy cities and the inhabitants thereof.</VERS>\r\n      <VERS vnumber=\"9\">Go up, ye horses; and rage, ye chariots; and let the mighty men go forth: Cush and Put, that handle the shield; and the Ludim, that handle and bend the bow.</VERS>\r\n      <VERS vnumber=\"10\">For that day is [a day] of the Lord, Jehovah of hosts, a day of vengeance, that he may avenge him of his adversaries: and the sword shall devour and be satiate, and shall drink its fill of their blood; for the Lord, Jehovah of hosts, hath a sacrifice in the north country by the river Euphrates.</VERS>\r\n      <VERS vnumber=\"11\">Go up into Gilead, and take balm, O virgin daughter of Egypt: in vain dost thou use many medicines; there is no healing for thee.</VERS>\r\n      <VERS vnumber=\"12\">The nations have heard of thy shame, and the earth is full of thy cry; for the mighty man hath stumbled against the mighty, they are fallen both of them together.</VERS>\r\n      <VERS vnumber=\"13\">The word that Jehovah spake to Jeremiah the prophet, how that Nebuchadrezzar king of Babylon should come and smite the land of Egypt.</VERS>\r\n      <VERS vnumber=\"14\">Declare ye in Egypt, and publish in Migdol, and publish in Memphis and in Tahpanhes: say ye, Stand forth, and prepare thee; for the sword hath devoured round about thee.</VERS>\r\n      <VERS vnumber=\"15\">Why are thy strong ones swept away? they stood not, because Jehovah did drive them.</VERS>\r\n      <VERS vnumber=\"16\">He made many to stumble, yea, they fell one 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.</VERS>\r\n      <VERS vnumber=\"17\">They cried there, Pharaoh king of Egypt is but a noise; he hath let the appointed time pass by.</VERS>\r\n      <VERS vnumber=\"18\">As I live, saith the King, whose name is Jehovah of hosts, surely like Tabor among the mountains, and like Carmel by the sea, so shall he come.</VERS>\r\n      <VERS vnumber=\"19\">O thou daughter that dwellest in Egypt, furnish thyself to go into captivity; for Memphis shall become a desolation, and shall be burnt up, without inhabitant.</VERS>\r\n      <VERS vnumber=\"20\">Egypt is a very fair heifer; [but] destruction out of the north is come, it is come.</VERS>\r\n      <VERS vnumber=\"21\">Also her hired men in the midst of her are like calves of the stall; for they also are turned back, they are fled away together, they did not stand: for the day of their calamity is come upon them, the time of their visitation.</VERS>\r\n      <VERS vnumber=\"22\">The sound thereof shall go like the serpent; for they shall march with an army, and come against her with axes, as hewers of wood.</VERS>\r\n      <VERS vnumber=\"23\">They shall cut down her forest, saith Jehovah, though it cannot be searched; because they are more than the locusts, and are innumerable.</VERS>\r\n      <VERS vnumber=\"24\">The daughter of Egypt shall be put to shame; she shall be delivered into the hand of the people of the north.</VERS>\r\n      <VERS vnumber=\"25\">Jehovah of hosts, the God of Israel, saith: Behold, I will punish Amon of No, and Pharaoh, and Egypt, with her gods, and her kings; even Pharaoh, and them that trust in him:</VERS>\r\n      <VERS vnumber=\"26\">and 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 afterwards it shall be inhabited, as in the days of old, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"27\">But fear not thou, O Jacob my servant, 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 quiet and at ease, and none shall make him afraid.</VERS>\r\n      <VERS vnumber=\"28\">Fear not thou, O Jacob my servant, saith Jehovah; 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 I will correct thee in measure, and will in no wise leave thee unpunished.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"47\">\r\n      <VERS vnumber=\"1\">The word of Jehovah that came to Jeremiah the prophet concerning the Philistines, before that Pharaoh smote Gaza.</VERS>\r\n      <VERS vnumber=\"2\">Thus saith Jehovah: Behold, waters rise up out of the north, and shall become an overflowing stream, and shall overflow the land and all that is therein, the city and them that dwell therein; and the men shall cry, and all the inhabitants of the land shall wail.</VERS>\r\n      <VERS vnumber=\"3\">At the noise of the stamping of the hoofs of his strong ones, at the rushing of his chariots, at the rumbling of his wheels, the fathers look not back to their children for feebleness of hands;</VERS>\r\n      <VERS vnumber=\"4\">because of the day that cometh to destroy all the Philistines, to cut off from Tyre and Sidon every helper that remaineth: for Jehovah will destroy the Philistines, the remnant of the isle of Caphtor.</VERS>\r\n      <VERS vnumber=\"5\">Baldness is come upon Gaza; Ashkelon is brought to nought, the remnant of their valley: how long wilt thou cut thyself?</VERS>\r\n      <VERS vnumber=\"6\">O thou sword of Jehovah, how long will it be ere thou be quiet? put up thyself into thy scabbard; rest, and be still.</VERS>\r\n      <VERS vnumber=\"7\">How canst thou be quiet, seeing Jehovah hath given thee a charge? Against Ashkelon, and against the sea-shore, there hath he appointed it.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"48\">\r\n      <VERS vnumber=\"1\">Of Moab. Thus saith Jehovah of hosts, the God of Israel: Woe unto Nebo! for it is laid waste; Kiriathaim is put to shame, it is taken; Misgab is put to shame and broken down.</VERS>\r\n      <VERS vnumber=\"2\">The praise of Moab is no more; in Heshbon they have devised evil against her: Come, and let us cut her off from being a nation. Thou also, O Madmen, shalt be brought to silence: the sword shall pursue thee.</VERS>\r\n      <VERS vnumber=\"3\">The sound of a cry from Horonaim, desolation and great destruction!</VERS>\r\n      <VERS vnumber=\"4\">Moab is destroyed; her little ones have caused a cry to be heard.</VERS>\r\n      <VERS vnumber=\"5\">For by the ascent of Luhith with continual weeping shall they go up; for at the descent of Horonaim they have heard the distress of the cry of destruction.</VERS>\r\n      <VERS vnumber=\"6\">Flee, save your lives, and be like the heath in the wilderness.</VERS>\r\n      <VERS vnumber=\"7\">For, because thou hast trusted in thy works and in thy treasures, thou also shalt be taken: and Chemosh shall go forth into captivity, his priests and his princes together.</VERS>\r\n      <VERS vnumber=\"8\">And the destroyer shall come upon every city, and no city shall escape; the valley also shall perish, and the plain shall be destroyed; as Jehovah hath spoken.</VERS>\r\n      <VERS vnumber=\"9\">Give wings unto Moab, that she may fly and get her away: and her cities shall become a desolation, without any to dwell therein.</VERS>\r\n      <VERS vnumber=\"10\">Cursed be he that doeth the work of Jehovah negligently; and cursed be he that keepeth back his sword from blood.</VERS>\r\n      <VERS vnumber=\"11\">Moab 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 remaineth in him, and his scent is not changed.</VERS>\r\n      <VERS vnumber=\"12\">Therefore, behold, the days come, saith Jehovah, that I will send unto him them that pour off, and they shall pour him off; and they shall empty his vessels, and break their bottles in pieces.</VERS>\r\n      <VERS vnumber=\"13\">And Moab shall be ashamed of Chemosh, as the house of Israel was ashamed of Beth-el their confidence.</VERS>\r\n      <VERS vnumber=\"14\">How say ye, We are mighty men, and valiant men for the war?</VERS>\r\n      <VERS vnumber=\"15\">Moab is laid waste, and they are gone up into his cities, and his chosen young men are gone down to the slaughter, saith the King, whose name is Jehovah of hosts.</VERS>\r\n      <VERS vnumber=\"16\">The calamity of Moab is near to come, and his affliction hasteth fast.</VERS>\r\n      <VERS vnumber=\"17\">All ye that are round about him, bemoan him, and all ye that know his name; say, How is the strong staff broken, the beautiful rod!</VERS>\r\n      <VERS vnumber=\"18\">O thou daughter that dwellest in Dibon, come down from thy glory, and sit in thirst; for the destroyer of Moab is come up against thee, he hath destroyed thy strongholds.</VERS>\r\n      <VERS vnumber=\"19\">O inhabitant of Aroer, stand by the way, and watch: ask him that fleeth, and her that escapeth; say, What hath been done?</VERS>\r\n      <VERS vnumber=\"20\">Moab is put to shame; for it is broken down: wail and cry; tell ye it by the Arnon, that Moab is laid waste.</VERS>\r\n      <VERS vnumber=\"21\">And judgment is come upon the plain country, upon Holon, and upon Jahzah, and upon Mephaath,</VERS>\r\n      <VERS vnumber=\"22\">and upon Dibon, and upon Nebo, and upon Beth-diblathaim,</VERS>\r\n      <VERS vnumber=\"23\">and upon Kiriathaim, and upon Beth-gamul, and upon Beth-meon,</VERS>\r\n      <VERS vnumber=\"24\">and upon Kerioth, and upon Bozrah, and upon all the cities of the land of Moab, far or near.</VERS>\r\n      <VERS vnumber=\"25\">The horn of Moab is cut off, and his arm is broken, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"26\">Make ye him drunken; for he magnified himself against Jehovah: and Moab shall wallow in his vomit, and he also shall be in derision.</VERS>\r\n      <VERS vnumber=\"27\">For was not Israel a derision unto thee? was he found among thieves? for as often as thou speakest of him, thou waggest the head.</VERS>\r\n      <VERS vnumber=\"28\">O ye inhabitants of Moab, leave the cities, and dwell in the rock; and be like the dove that maketh her nest over the mouth of the abyss.</VERS>\r\n      <VERS vnumber=\"29\">We have heard of the pride of Moab, [that] he is very proud; his loftiness, and his pride, and his arrogancy, and the haughtiness of his heart.</VERS>\r\n      <VERS vnumber=\"30\">I know his wrath, saith Jehovah, that it is nought; his boastings have wrought nothing.</VERS>\r\n      <VERS vnumber=\"31\">Therefore will I wail for Moab; yea, I will cry out for all Moab: for the men of Kir-heres shall they mourn.</VERS>\r\n      <VERS vnumber=\"32\">With more than the weeping of Jazer will I weep for thee, O vine of Sibmah: thy branches passed over the sea, they reached even to the sea of Jazer: upon thy summer fruits and upon thy vintage the destroyer is fallen.</VERS>\r\n      <VERS vnumber=\"33\">And gladness and joy is taken away from the fruitful field and from the land of Moab; and I have caused wine to cease from the winepresses: none shall tread with shouting; the shouting shall be no shouting.</VERS>\r\n      <VERS vnumber=\"34\">From the cry of Heshbon even unto Elealeh, even unto Jahaz have they uttered their voice, from Zoar even unto Horonaim, to Eglath-shelishiyah: for the waters of Nimrim also shall become desolate.</VERS>\r\n      <VERS vnumber=\"35\">Moreover I will cause to cease in Moab, saith Jehovah, him that offereth in the high place, and him that burneth incense to his gods.</VERS>\r\n      <VERS vnumber=\"36\">Therefore my heart soundeth for Moab like pipes, and my heart soundeth like pipes for the men of Kir-heres: therefore the abundance that he hath gotten is perished.</VERS>\r\n      <VERS vnumber=\"37\">For every head is bald, and every beard clipped: upon all the hands are cuttings, and upon the loins sackcloth.</VERS>\r\n      <VERS vnumber=\"38\">On all the housetops of Moab and in the streets thereof there is lamentation every where; for I have broken Moab like a vessel wherein none delighteth, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"39\">How is it broken down! [how] do they wail! how hath Moab turned the back with shame! so shall Moab become a derision and a terror to all that are round about him.</VERS>\r\n      <VERS vnumber=\"40\">For thus saith Jehovah: Behold, he shall fly as an eagle, and shall spread out his wings against Moab.</VERS>\r\n      <VERS vnumber=\"41\">Kerioth is taken, and the strongholds are seized, and the heart of the mighty men of Moab at that day shall be as the heart of a woman in her pangs.</VERS>\r\n      <VERS vnumber=\"42\">And Moab shall be destroyed from being a people, because he hath magnified himself against Jehovah.</VERS>\r\n      <VERS vnumber=\"43\">Fear, and the pit, and the snare, are upon thee, O inhabitant of Moab, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"44\">He 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 him, even upon Moab, the year of their visitation, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"45\">They that fled stand without strength under the shadow of Heshbon; for a fire is gone forth out of Heshbon, and a flame from the midst of Sihon, and hath devoured the corner of Moab, and the crown of the head of the tumultuous ones.</VERS>\r\n      <VERS vnumber=\"46\">Woe unto thee, O Moab! the people of Chemosh is undone; for thy sons are taken away captive, and thy daughters into captivity.</VERS>\r\n      <VERS vnumber=\"47\">Yet will I bring back the captivity of Moab in the latter days, saith Jehovah. Thus far is the judgment of Moab.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"49\">\r\n      <VERS vnumber=\"1\">Of the children of Ammon. Thus saith Jehovah: Hath Israel no sons? hath he no heir? why then doth Malcam possess Gad, and his people well in the cities thereof?</VERS>\r\n      <VERS vnumber=\"2\">Therefore, behold, the days come, saith Jehovah, that I will cause an alarm of war to be heard against Rabbah of the children of Ammon; and it shall become a desolate heap, and her daughters shall be burned with fire: then shall Israel possess them that did possess him, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"3\">Wail, O Heshbon, for Ai is laid waste; cry, ye daughters of Rabbah, gird you with sackcloth: lament, and run to and fro among the fences; for Malcam shall go into captivity, his priests and his princes together.</VERS>\r\n      <VERS vnumber=\"4\">Wherefore gloriest thou in the valleys, thy flowing valley, O backsliding daughter? that trusted in her treasures, [saying], Who shall come unto me?</VERS>\r\n      <VERS vnumber=\"5\">Behold, I will bring a fear upon thee, saith the Lord, Jehovah of hosts, from all that are round about thee; and ye shall be driven out every man right forth, and there shall be none to gather together the fugitives.</VERS>\r\n      <VERS vnumber=\"6\">But afterward I will bring back the captivity of the children of Ammon, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"7\">Of Edom. Thus saith Jehovah of hosts: Is wisdom no more in Teman? is counsel perished from the prudent? is their wisdom vanished?</VERS>\r\n      <VERS vnumber=\"8\">Flee ye, turn back, dwell in the depths, O inhabitants of Dedan; for I will bring the calamity of Esau upon him, the time that I shall visit him.</VERS>\r\n      <VERS vnumber=\"9\">If grape-gatherers came to thee, would they not leave some gleaning grapes? if thieves by night, would they not destroy till they had enough?</VERS>\r\n      <VERS vnumber=\"10\">But I have made Esau bare, I have uncovered his secret places, and he shall not be able to hide himself: his seed is destroyed, and his brethren, and his neighbors; and he is not.</VERS>\r\n      <VERS vnumber=\"11\">Leave thy fatherless children, I will preserve them alive; and let thy widows trust in me.</VERS>\r\n      <VERS vnumber=\"12\">For thus saith Jehovah: Behold, they to whom it pertained not to drink of the cup shall assuredly drink; and art thou he that shall altogether go unpunished? thou shalt not go unpunished, but thou shalt surely drink.</VERS>\r\n      <VERS vnumber=\"13\">For I have sworn by myself, saith Jehovah, that Bozrah shall become an astonishment, a reproach, a waste, and a curse; and all the cities thereof shall be perpetual wastes.</VERS>\r\n      <VERS vnumber=\"14\">I have heard tidings from Jehovah, and an ambassador is sent among the nations, [saying], Gather yourselves together, and come against her, and rise up to the battle.</VERS>\r\n      <VERS vnumber=\"15\">For, behold, I have made thee small among the nations, and despised among men.</VERS>\r\n      <VERS vnumber=\"16\">As for thy terribleness, the pride of thy heart hath deceived thee, 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 Jehovah.</VERS>\r\n      <VERS vnumber=\"17\">And Edom shall become an astonishment: every one that passeth by it shall be astonished, and shall hiss at all the plagues thereof.</VERS>\r\n      <VERS vnumber=\"18\">As in the overthrow of Sodom and Gomorrah and the neighbor cities thereof, saith Jehovah, no man shall dwell there, neither shall any son of man sojourn therein.</VERS>\r\n      <VERS vnumber=\"19\">Behold, he shall come up like a lion from the pride of the Jordan against the strong habitation: for I will suddenly make them run away from it; and whoso is chosen, him will I appoint over it: for who is like me? and who will appoint me a time? and who is the shepherd that will stand before me?</VERS>\r\n      <VERS vnumber=\"20\">Therefore hear ye the counsel of Jehovah, that he hath taken against Edom; and his purposes, that he hath purposed against the inhabitants of Teman: Surely they shall drag them away, [even] the little ones of the flock; surely he shall make their habitation desolate over them.</VERS>\r\n      <VERS vnumber=\"21\">The earth trembleth at the noise of their fall; there is a cry, the noise whereof is heard in the Red Sea.</VERS>\r\n      <VERS vnumber=\"22\">Behold, he shall come up and fly as the eagle, and spread out his wings against Bozrah: and the heart of the mighty men of Edom at that day shall be as the heart of a woman in her pangs.</VERS>\r\n      <VERS vnumber=\"23\">Of Damascus. Hamath is confounded, and Arpad; for they have heard evil tidings, they are melted away: there is sorrow on the sea; it cannot be quiet.</VERS>\r\n      <VERS vnumber=\"24\">Damascus is waxed feeble, she turneth herself to flee, and trembling hath seized on her: anguish and sorrows have taken hold of her, as of a woman in travail.</VERS>\r\n      <VERS vnumber=\"25\">How is the city of praise not forsaken, the city of my joy?</VERS>\r\n      <VERS vnumber=\"26\">Therefore her young men shall fall in her streets, and all the men of war shall be brought to silence in that day, saith Jehovah of hosts.</VERS>\r\n      <VERS vnumber=\"27\">And I will kindle a fire in the wall of Damascus, and it shall devour the palaces of Ben-hadad.</VERS>\r\n      <VERS vnumber=\"28\">Of Kedar, and of the kingdoms of Hazor, which Nebuchadrezzar king of Babylon smote. Thus saith Jehovah: Arise ye, go up to Kedar, and destroy the children of the east.</VERS>\r\n      <VERS vnumber=\"29\">Their tents and their flocks shall they take; they shall carry away for themselves their curtains, and all their vessels, and their camels; and they shall cry unto them, Terror on every side!</VERS>\r\n      <VERS vnumber=\"30\">Flee ye, wander far off, dwell in the depths, O ye inhabitants of Hazor, saith Jehovah; for Nebuchadrezzar king of Babylon hath taken counsel against you, and hath conceived a purpose against you.</VERS>\r\n      <VERS vnumber=\"31\">Arise, get you up unto a nation that is at ease, that dwelleth without care, saith Jehovah; that have neither gates nor bars, that dwell alone.</VERS>\r\n      <VERS vnumber=\"32\">And their camels shall be a booty, and the multitude of their cattle a spoil: and I will scatter unto all winds them that have the corners [of their hair] cut off; and I will bring their calamity from every side of them, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"33\">And Hazor shall be a dwelling-place of jackals, a desolation for ever: no man shall dwell there, neither shall any son of man sojourn therein.</VERS>\r\n      <VERS vnumber=\"34\">The word of Jehovah that came to Jeremiah the prophet concerning Elam, in the beginning of the reign of Zedekiah king of Judah, saying,</VERS>\r\n      <VERS vnumber=\"35\">Thus saith Jehovah of hosts: Behold, I will break the bow of Elam, the chief of their might.</VERS>\r\n      <VERS vnumber=\"36\">And 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.</VERS>\r\n      <VERS vnumber=\"37\">And 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 Jehovah; and I will send the sword after them, till I have consumed them;</VERS>\r\n      <VERS vnumber=\"38\">and I will set my throne in Elam, and will destroy from thence king and princes, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"39\">But it shall come to pass in the latter days, that I will bring back the captivity of Elam, saith Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"50\">\r\n      <VERS vnumber=\"1\">The word that Jehovah spake concerning Babylon, concerning the land of the Chaldeans, by Jeremiah the prophet.</VERS>\r\n      <VERS vnumber=\"2\">Declare ye among the nations and publish, and set up a standard; publish, and conceal not: say, Babylon is taken, Bel is put to shame, Merodach is dismayed; her images are put to shame, her idols are dismayed.</VERS>\r\n      <VERS vnumber=\"3\">For out of the north there cometh up a nation against her, which shall make her land desolate, and none shall dwell therein: they are fled, they are gone, both man and beast.</VERS>\r\n      <VERS vnumber=\"4\">In those days, and in that time, saith Jehovah, the children of Israel shall come, they and the children of Judah together; they shall go on their way weeping, and shall seek Jehovah their God.</VERS>\r\n      <VERS vnumber=\"5\">They shall inquire concerning Zion with their faces thitherward, [saying], Come ye, and join yourselves to Jehovah in an everlasting covenant that shall not be forgotten.</VERS>\r\n      <VERS vnumber=\"6\">My people have 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 resting-place.</VERS>\r\n      <VERS vnumber=\"7\">All that found them have devoured them; and their adversaries said, We are not guilty, because they have sinned against Jehovah, the habitation of righteousness, even Jehovah, the hope of their fathers.</VERS>\r\n      <VERS vnumber=\"8\">Flee 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.</VERS>\r\n      <VERS vnumber=\"9\">For, lo, I will stir up and cause to come up against Babylon a company 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 an expert mighty man; none shall return in vain.</VERS>\r\n      <VERS vnumber=\"10\">And Chaldea shall be a prey: all that prey upon her shall be satisfied, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"11\">Because ye are glad, because ye rejoice, O ye that plunder my heritage, because ye are wanton as a heifer that treadeth out [the grain], and neigh as strong horses;</VERS>\r\n      <VERS vnumber=\"12\">your mother shall be utterly put to shame; she that bare you shall be confounded: behold, she shall be the hindermost of the nations, a wilderness, a dry land, and a desert.</VERS>\r\n      <VERS vnumber=\"13\">Because of the wrath of Jehovah she shall not be inhabited, but she shall be wholly desolate: every one that goeth by Babylon shall be astonished, and hiss at all her plagues.</VERS>\r\n      <VERS vnumber=\"14\">Set yourselves in array against Babylon round about, all ye that bend the bow; shoot at her, spare no arrows: for she hath sinned against Jehovah.</VERS>\r\n      <VERS vnumber=\"15\">Shout against her round about: she hath submitted herself; her bulwarks are fallen, her walls are thrown down; for it is the vengeance of Jehovah: take vengeance upon her; as she hath done, do unto her.</VERS>\r\n      <VERS vnumber=\"16\">Cut 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.</VERS>\r\n      <VERS vnumber=\"17\">Israel is a hunted sheep; the lions have driven him away: first, the king of Assyria devoured him; and now at last Nebuchadrezzar king of Babylon hath broken his bones.</VERS>\r\n      <VERS vnumber=\"18\">Therefore thus saith Jehovah 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.</VERS>\r\n      <VERS vnumber=\"19\">And I will bring Israel again to his pasture, and he shall feed on Carmel and Bashan, and his soul shall be satisfied upon the hills of Ephraim and in Gilead.</VERS>\r\n      <VERS vnumber=\"20\">In those days, and in that time, saith Jehovah, 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 leave as a remnant.</VERS>\r\n      <VERS vnumber=\"21\">Go up against the land of Merathaim, even against it, and against the inhabitants of Pekod: slay and utterly destroy after them, saith Jehovah, and do according to all that I have commanded thee.</VERS>\r\n      <VERS vnumber=\"22\">A sound of battle is in the land, and of great destruction.</VERS>\r\n      <VERS vnumber=\"23\">How is the hammer of the whole earth cut asunder and broken! how is Babylon become a desolation among the nations!</VERS>\r\n      <VERS vnumber=\"24\">I 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 Jehovah.</VERS>\r\n      <VERS vnumber=\"25\">Jehovah hath opened his armory, and hath brought forth the weapons of his indignation; for the Lord, Jehovah of hosts, hath a work [to do] in the land of the Chaldeans.</VERS>\r\n      <VERS vnumber=\"26\">Come against her from the utmost border; open her store-houses; cast her up as heaps, and destroy her utterly; let nothing of her be left.</VERS>\r\n      <VERS vnumber=\"27\">Slay all her bullocks; let them go down to the slaughter: woe unto them! for their day is come, the time of their visitation.</VERS>\r\n      <VERS vnumber=\"28\">The voice of them that flee and escape out of the land of Babylon, to declare in Zion the vengeance of Jehovah our God, the vengeance of his temple.</VERS>\r\n      <VERS vnumber=\"29\">Call together the archers against Babylon, all them that bend the bow; encamp against her 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 Jehovah, against the Holy One of Israel.</VERS>\r\n      <VERS vnumber=\"30\">Therefore shall her young men fall in her streets, and all her men of war shall be brought to silence in that day, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"31\">Behold, I am against thee, O thou proud one, saith the Lord, Jehovah of hosts; for thy day is come, the time that I will visit thee.</VERS>\r\n      <VERS vnumber=\"32\">And the proud one shall stumble and fall, and none shall raise him up; and I will kindle a fire in his cities, and it shall devour all that are round about him.</VERS>\r\n      <VERS vnumber=\"33\">Thus saith Jehovah of hosts: The children of Israel and the children of Judah are oppressed together; and all that took them captive hold them fast; they refuse to let them go.</VERS>\r\n      <VERS vnumber=\"34\">Their Redeemer is strong; Jehovah of hosts is his name: he will thoroughly plead their cause, that he may give rest to the earth, and disquiet the inhabitants of Babylon.</VERS>\r\n      <VERS vnumber=\"35\">A sword is upon the Chaldeans, saith Jehovah, and upon the inhabitants of Babylon, and upon her princes, and upon her wise men.</VERS>\r\n      <VERS vnumber=\"36\">A sword is upon the boasters, and they shall become fools; a sword is upon her mighty men, and they shall be dismayed.</VERS>\r\n      <VERS vnumber=\"37\">A 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.</VERS>\r\n      <VERS vnumber=\"38\">A drought is upon her waters, and they shall be dried up; for it is a land of graven images, and they are mad over idols.</VERS>\r\n      <VERS vnumber=\"39\">Therefore the wild beasts of the desert with the wolves shall dwell there, and the ostriches shall dwell therein: and it shall be no more inhabited for ever; neither shall it be dwelt in from generation to generation.</VERS>\r\n      <VERS vnumber=\"40\">As when God overthrew Sodom and Gomorrah and the neighbor cities thereof, saith Jehovah, so shall no man dwell there, neither shall any son of man sojourn therein.</VERS>\r\n      <VERS vnumber=\"41\">Behold, a people cometh from the north; and a great nation and many kings shall be stirred up from the uttermost parts of the earth.</VERS>\r\n      <VERS vnumber=\"42\">They lay hold on bow and spear; they are cruel, and have no mercy; their voice roareth like the sea; and they ride upon horses, every one set in array, as a man to the battle, against thee, O daughter of Babylon.</VERS>\r\n      <VERS vnumber=\"43\">The king of Babylon hath heard the tidings of them, and his hands wax feeble: anguish hath taken hold of him, [and] pangs as of a woman in travail.</VERS>\r\n      <VERS vnumber=\"44\">Behold, [the enemy] shall come up like a lion from the pride of the Jordan against the strong habitation: for I will suddenly make them run away from it; and whoso is chosen, him will I appoint over it: for who is like me? and who will appoint me a time? and who is the shepherd that can stand before me?</VERS>\r\n      <VERS vnumber=\"45\">Therefore hear ye the counsel of Jehovah, that he hath taken against Babylon; and his purposes, that he hath purposed against the land of the Chaldeans: Surely they shall drag them away, [even] the little ones of the flock; surely he shall make their habitation desolate over them.</VERS>\r\n      <VERS vnumber=\"46\">At the noise of the taking of Babylon the earth trembleth, and the cry is heard among the nations.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"51\">\r\n      <VERS vnumber=\"1\">Thus saith Jehovah: Behold, I will raise up against Babylon, and against them that dwell in Leb-kamai, a destroying wind.</VERS>\r\n      <VERS vnumber=\"2\">And I will send unto Babylon strangers, that shall winnow her; and they shall empty her land: for in the day of trouble they shall be against her round about.</VERS>\r\n      <VERS vnumber=\"3\">Against [him that] bendeth let the archer bend his bow, and against [him that] lifteth himself up in his coat of mail: and spare ye not her young men; destroy ye utterly all her host.</VERS>\r\n      <VERS vnumber=\"4\">And they shall fall down slain in the land of the Chaldeans, and thrust through in her streets.</VERS>\r\n      <VERS vnumber=\"5\">For Israel is not forsaken, nor Judah, of his God, of Jehovah of hosts; though their land is full of guilt against the Holy One of Israel.</VERS>\r\n      <VERS vnumber=\"6\">Flee out of the midst of Babylon, and save every man his life; be not cut off in her iniquity: for it is the time of Jehovah`s vengeance; he will render unto her a recompense.</VERS>\r\n      <VERS vnumber=\"7\">Babylon hath been a golden cup in Jehovah`s hand, that made all the earth drunken: the nations have drunk of her wine; therefore the nations are mad.</VERS>\r\n      <VERS vnumber=\"8\">Babylon is suddenly fallen and destroyed: wail for her; take balm for her pain, if so be she may be healed.</VERS>\r\n      <VERS vnumber=\"9\">We 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.</VERS>\r\n      <VERS vnumber=\"10\">Jehovah hath brought forth our righteousness: come, and let us declare in Zion the work of Jehovah our God.</VERS>\r\n      <VERS vnumber=\"11\">Make sharp the arrows; hold firm the shields: Jehovah hath stirred up the spirit of the kings of the Medes; because his purpose is against Babylon, to destroy it: for it is the vengeance of Jehovah, the vengeance of his temple.</VERS>\r\n      <VERS vnumber=\"12\">Set up a standard against the walls of Babylon, make the watch strong, set the watchmen, prepare the ambushes; for Jehovah hath both purposed and done that which he spake concerning the inhabitants of Babylon.</VERS>\r\n      <VERS vnumber=\"13\">O thou that dwellest upon many waters, abundant in treasures, thine end is come, the measure of thy covetousness.</VERS>\r\n      <VERS vnumber=\"14\">Jehovah of hosts hath sworn by himself, [saying], Surely I will fill thee with men, as with the canker-worm; and they shall lift up a shout against thee.</VERS>\r\n      <VERS vnumber=\"15\">He hath made the earth by his power, he hath established the world by his wisdom, and by his understanding hath he stretched out the heavens:</VERS>\r\n      <VERS vnumber=\"16\">when he uttereth his voice, there is a tumult of waters in the heavens, and he causeth the vapors to ascend from the ends of the earth; he maketh lightnings for the rain, and bringeth forth the wind out of his treasuries.</VERS>\r\n      <VERS vnumber=\"17\">Every man is become brutish [and is] without knowledge; every goldsmith is put to shame by his image; for his molten image is falsehood, and there is no breath in them.</VERS>\r\n      <VERS vnumber=\"18\">They are vanity, a work of delusion: in the time of their visitation they shall perish.</VERS>\r\n      <VERS vnumber=\"19\">The portion of Jacob is not like these; for he is the former of all things; and [Israel] is the tribe of his inheritance: Jehovah of hosts is his name.</VERS>\r\n      <VERS vnumber=\"20\">Thou art my battle-axe and weapons of war: and with thee will I break in pieces the nations; and with thee will I destroy kingdoms;</VERS>\r\n      <VERS vnumber=\"21\">and with thee will I break in pieces the horse and his rider;</VERS>\r\n      <VERS vnumber=\"22\">and with thee will I break in pieces the chariot and him that rideth therein; and with thee will I break in pieces man and woman; and with thee will I break in pieces the old man and the youth; and with thee will I break in pieces the young man and the virgin;</VERS>\r\n      <VERS vnumber=\"23\">and with thee will I break in pieces 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 governors and deputies.</VERS>\r\n      <VERS vnumber=\"24\">And 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 Jehovah.</VERS>\r\n      <VERS vnumber=\"25\">Behold, I am against thee, O destroying mountain, saith Jehovah, which destroyest all the earth; and I will stretch out my hand upon thee, and roll thee down from the rocks, and will make thee a burnt mountain.</VERS>\r\n      <VERS vnumber=\"26\">And they shall not take of thee a stone for a corner, nor a stone for foundations; but thou shalt be desolate for ever, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"27\">Set 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 Ashkenaz: appoint a marshal against her; cause the horses to come up as the rough canker-worm.</VERS>\r\n      <VERS vnumber=\"28\">Prepare against her the nations, the kings of the Medes, the governors thereof, and all the deputies thereof, and all the land of their dominion.</VERS>\r\n      <VERS vnumber=\"29\">And the land trembleth and is in pain; for the purposes of Jehovah against Babylon do stand, to make the land of Babylon a desolation, without inhabitant.</VERS>\r\n      <VERS vnumber=\"30\">The mighty men of Babylon have forborne to fight, they remain in their strongholds; their might hath failed; they are become as women: her dwelling-places are set on fire; her bars are broken.</VERS>\r\n      <VERS vnumber=\"31\">One post shall run to meet another, and one messenger to met another, to show the king of Babylon that his city is taken on every quarter:</VERS>\r\n      <VERS vnumber=\"32\">and the passages are seized, and the reeds they have burned with fire, and the men of war are affrighted.</VERS>\r\n      <VERS vnumber=\"33\">For thus saith Jehovah of hosts, the God of Israel: The daughter of Babylon is like a threshing-floor at the time when it is trodden; yet a little while, and the time of harvest shall come for her.</VERS>\r\n      <VERS vnumber=\"34\">Nebuchadrezzar the king of Babylon hath devoured me, he hath crushed me, he hath made me an empty vessel, he hath, like a monster, swallowed me up, he hath filled his maw with my delicacies; he hath cast me out.</VERS>\r\n      <VERS vnumber=\"35\">The violence done to me and to my flesh be upon Babylon, shall the inhabitant of Zion say; and, My blood be upon the inhabitants of Chaldea, shall Jerusalem say.</VERS>\r\n      <VERS vnumber=\"36\">Therefore thus saith Jehovah: Behold, I will plead thy cause, and take vengeance for thee; and I will dry up her sea, and make her fountain dry.</VERS>\r\n      <VERS vnumber=\"37\">And Babylon shall become heaps, a dwelling-place for jackals, an astonishment, and a hissing, without inhabitant.</VERS>\r\n      <VERS vnumber=\"38\">They shall roar together like young lions; they shall growl as lions` whelps.</VERS>\r\n      <VERS vnumber=\"39\">When they are heated, I will make their feast, and I will make them drunken, that they may rejoice, and sleep a perpetual sleep, and not wake, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"40\">I will bring them down like lambs to the slaughter, like rams with he-goats.</VERS>\r\n      <VERS vnumber=\"41\">How is Sheshach taken! and the praise of the whole earth seized! how is Babylon become a desolation among the nations!</VERS>\r\n      <VERS vnumber=\"42\">The sea is come up upon Babylon; she is covered with the multitude of the waves thereof.</VERS>\r\n      <VERS vnumber=\"43\">Her cities are become a desolation, a dry land, and a desert, a land wherein no man dwelleth, neither doth any son of man pass thereby.</VERS>\r\n      <VERS vnumber=\"44\">And I will execute judgment upon Bel in Babylon, and I will bring forth out of his mouth that which he hath swallowed up; and the nations shall not flow any more unto him: yea, the wall of Babylon shall fall.</VERS>\r\n      <VERS vnumber=\"45\">My people, go ye out of the midst of her, and save yourselves every man from the fierce anger of Jehovah.</VERS>\r\n      <VERS vnumber=\"46\">And let not your heart faint, neither fear ye for the tidings that shall be heard in the land; for tidings shall come one year, and after that in another year [shall come] tidings, and violence in the land, ruler against ruler.</VERS>\r\n      <VERS vnumber=\"47\">Therefore, behold, the days come, that I will execute 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.</VERS>\r\n      <VERS vnumber=\"48\">Then the heavens and the earth, and all that is therein, shall sing for joy over Babylon; for the destroyers shall come unto her from the north, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"49\">As Babylon hath caused the slain of Israel to fall, so at Babylon shall fall the slain of all the land.</VERS>\r\n      <VERS vnumber=\"50\">Ye that have escaped the sword, go ye, stand not still; remember Jehovah from afar, and let Jerusalem come into your mind.</VERS>\r\n      <VERS vnumber=\"51\">We are confounded, because we have heard reproach; confusion hath covered our faces: for strangers are come into the sanctuaries of Jehovah`s house.</VERS>\r\n      <VERS vnumber=\"52\">Wherefore, behold, the days come, saith Jehovah, that I will execute judgment upon her graven images; and through all her land the wounded shall groan.</VERS>\r\n      <VERS vnumber=\"53\">Though Babylon should mount up to heaven, and though she should fortify the height of her strength, yet from me shall destroyers come unto her, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"54\">The sound of a cry from Babylon, and of great destruction from the land of the Chaldeans!</VERS>\r\n      <VERS vnumber=\"55\">For Jehovah layeth Babylon waste, and destroyeth out of her the great voice; and their waves roar like many waters; the noise of their voice is uttered:</VERS>\r\n      <VERS vnumber=\"56\">for the destroyer is come upon her, even upon Babylon, and her mighty men are taken, their bows are broken in pieces; for Jehovah is a God of recompenses, he will surely requite.</VERS>\r\n      <VERS vnumber=\"57\">And I will make drunk her princes and her wise men, her governors and her deputies, and her mighty men; and they shall sleep a perpetual sleep, and not wake, saith the King, whose name is Jehovah of hosts.</VERS>\r\n      <VERS vnumber=\"58\">Thus saith Jehovah of hosts: The broad walls of Babylon shall be utterly overthrown, and her high gates shall be burned with fire; and the peoples shall labor for vanity, and the nations for the fire; and they shall be weary.</VERS>\r\n      <VERS vnumber=\"59\">The word which Jeremiah the prophet commanded Seraiah the son of Neriah, the son of Mahseiah, when he went with Zedekiah the king of Judah to Babylon in the fourth year of his reign. Now Seraiah was chief chamberlain.</VERS>\r\n      <VERS vnumber=\"60\">And Jeremiah wrote in a book all the evil that should come upon Babylon, even all these words that are written concerning Babylon.</VERS>\r\n      <VERS vnumber=\"61\">And Jeremiah said to Seraiah, When thou comest to Babylon, then see that thou read all these words,</VERS>\r\n      <VERS vnumber=\"62\">and say, O Jehovah, thou hast spoken concerning this place, to cut it off, that none shall dwell therein, neither man nor beast, but that it shall be desolate for ever.</VERS>\r\n      <VERS vnumber=\"63\">And 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 the Euphrates:</VERS>\r\n      <VERS vnumber=\"64\">and thou shalt say, Thus shall Babylon sink, and shall not rise again because of the evil that I will bring upon her; and they shall be weary. Thus far are the words of Jeremiah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"52\">\r\n      <VERS vnumber=\"1\">Zedekiah 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.</VERS>\r\n      <VERS vnumber=\"2\">And he did that which was evil in the sight of Jehovah, according to all that Jehoiakim had done.</VERS>\r\n      <VERS vnumber=\"3\">For through the anger of Jehovah did it come to pass in Jerusalem and Judah, until he had cast them out from his presence. And Zedekiah rebelled against the king of Babylon.</VERS>\r\n      <VERS vnumber=\"4\">And 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 encamped against it; and they built forts against it round about.</VERS>\r\n      <VERS vnumber=\"5\">So the city was besieged unto the eleventh year of king Zedekiah.</VERS>\r\n      <VERS vnumber=\"6\">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.</VERS>\r\n      <VERS vnumber=\"7\">Then a breach was made in the city, 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 against the city round about;) and they went toward the Arabah.</VERS>\r\n      <VERS vnumber=\"8\">But 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.</VERS>\r\n      <VERS vnumber=\"9\">Then they took the king, and carried him up unto the king of Babylon to Riblah in the land of Hamath; and he gave judgment upon him.</VERS>\r\n      <VERS vnumber=\"10\">And the king of Babylon slew the sons of Zedekiah before his eyes: he slew also all the princes of Judah in Riblah.</VERS>\r\n      <VERS vnumber=\"11\">And he put out the eyes of Zedekiah; and the king of Babylon bound him in fetters, and carried him to Babylon, and put him in prison till the day of his death.</VERS>\r\n      <VERS vnumber=\"12\">Now in the fifth month, in the tenth day of the month, which was the nineteenth year of king Nebuchadrezzar, king of Babylon, came Nebuzaradan the captain of the guard, who stood before the king of Babylon, into Jerusalem:</VERS>\r\n      <VERS vnumber=\"13\">and he burned the house of Jehovah, and the king`s house; and all the houses of Jerusalem, even every great house, burned he with fire.</VERS>\r\n      <VERS vnumber=\"14\">And all the army of the Chaldeans, that were with the captain of the guard, brake down all the walls of Jerusalem round about.</VERS>\r\n      <VERS vnumber=\"15\">Then Nebuzaradan the captain of the guard carried away captive of the poorest of the people, and the residue of the people that were left in the city, and those that fell away, that fell to the king of Babylon, and the residue of the multitude.</VERS>\r\n      <VERS vnumber=\"16\">But Nebuzaradan the captain of the guard left of the poorest of the land to be vinedressers and husbandmen.</VERS>\r\n      <VERS vnumber=\"17\">And the pillars of brass that were in the house of Jehovah, and the bases and the brazen sea that were in the house of Jehovah, did the Chaldeans break in pieces, and carried all the brass of them to Babylon.</VERS>\r\n      <VERS vnumber=\"18\">The pots also, and the shovels, and the snuffers, and the basins, and the spoons, and all the vessels of brass wherewith they ministered, took they away.</VERS>\r\n      <VERS vnumber=\"19\">And the cups, and the firepans, and the basins, and the pots, and the candlesticks, and the spoons, and the bowls-that which was of gold, in gold, and that which was of silver, in silver,- the captain of the guard took away.</VERS>\r\n      <VERS vnumber=\"20\">The two pillars, the one sea, and the twelve brazen bulls that were under the bases, which king Solomon had made for the house of Jehovah-the brass of all these vessels was without weight.</VERS>\r\n      <VERS vnumber=\"21\">And as for the pillars, the height of the one pillar was eighteen cubits; and a line of twelve cubits did compass it; and the thickness thereof was four fingers: it was hollow.</VERS>\r\n      <VERS vnumber=\"22\">And a capital of brass was upon it; and the height of the one capital was five cubits, with network and pomegranates upon the capital round about, all of brass: and the second pillar also had like unto these, and pomegranates.</VERS>\r\n      <VERS vnumber=\"23\">And there were ninety and six pomegranates on the sides; all the pomegranates were a hundred upon the network round about.</VERS>\r\n      <VERS vnumber=\"24\">And the captain of the guard took Seraiah the chief priest, and Zephaniah the second priest, and the three keepers of the threshold:</VERS>\r\n      <VERS vnumber=\"25\">and out of the city he took an officer that was set over the men of war; and seven men of them that saw the king`s face, that were found in the city; and the scribe of the captain 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.</VERS>\r\n      <VERS vnumber=\"26\">And Nebuzaradan the captain of the guard took them, and brought them to the king of Babylon to Riblah.</VERS>\r\n      <VERS vnumber=\"27\">And the king of Babylon smote them, and put them to death at Riblah in the land of Hamath. So Judah was carried away captive out of his land.</VERS>\r\n      <VERS vnumber=\"28\">This is the people whom Nebuchadrezzar carried away captive: in the seventh year three thousand Jews and three and twenty;</VERS>\r\n      <VERS vnumber=\"29\">in the eighteenth year of Nebuchadrezzar he carried away captive from Jerusalem eight hundred thirty and two persons;</VERS>\r\n      <VERS vnumber=\"30\">in 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.</VERS>\r\n      <VERS vnumber=\"31\">And 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 Evil-merodach 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;</VERS>\r\n      <VERS vnumber=\"32\">and he spake kindly to him, and set his throne above the throne of the kings that were with him in Babylon,</VERS>\r\n      <VERS vnumber=\"33\">and changed his prison garments. And [Jehoiachin] did eat bread before him continually all the days of his life:</VERS>\r\n      <VERS vnumber=\"34\">and for his allowance, there was a continual allowance given him by the king of Babylon, every day a portion until the day of his death, all the days of his life.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"25\" bname=\"Lamentations\" bsname=\"Lam\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">How doth the city sit solitary, that was full of people! She is become as a widow, that was great among the nations! She that was a princess among the provinces is become tributary!</VERS>\r\n      <VERS vnumber=\"2\">She 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.</VERS>\r\n      <VERS vnumber=\"3\">Judah is gone into captivity because of affliction, and       because of great servitude; She dwelleth among the nations, she findeth no rest: All her persecutors overtook her within the straits.</VERS>\r\n      <VERS vnumber=\"4\">The ways of Zion do mourn, because none come to the solemn       assembly; All her gates are desolate, her priests do sigh: Her virgins are afflicted, and she herself is in bitterness.</VERS>\r\n      <VERS vnumber=\"5\">Her adversaries are become the head, her enemies prosper; For Jehovah hath afflicted her for the multitude of her       transgressions: Her young children are gone into captivity before the adversary.</VERS>\r\n      <VERS vnumber=\"6\">And from the daughter of Zion all her majesty is departed: Her princes are become like harts that find no pasture, And they are gone without strength before the pursuer.</VERS>\r\n      <VERS vnumber=\"7\">Jerusalem remembereth in the days of her affliction and of       her miseries all her pleasant things that were from the       days of old: When her people fell into the hand of the adversary, and none       did help her, The adversaries saw her, they did mock at her desolations.</VERS>\r\n      <VERS vnumber=\"8\">Jerusalem hath grievously sinned; therefore she is become       as an unclean thing; All that honored her despise her, because they have seen her       nakedness: Yea, she sigheth, and turneth backward.</VERS>\r\n      <VERS vnumber=\"9\">Her filthiness was in her skirts; she remembered not her       latter end; Therefore is she come down wonderfully; she hath no comforter: Behold, O Jehovah, my affliction; for the enemy hath magnified       himself.</VERS>\r\n      <VERS vnumber=\"10\">The adversary hath spread out his hand upon all her       pleasant things: For she hath seen that the nations are entered into her       sanctuary, Concerning whom thou didst command that they should not enter       into thine assembly.</VERS>\r\n      <VERS vnumber=\"11\">All her people sigh, they seek bread; They have given their pleasant things for food to refresh the       soul: See, O Jehovah, and behold; for I am become abject.</VERS>\r\n      <VERS vnumber=\"12\">Is it nothing to you, all ye that pass by? Behold, and see if there be any sorrow like unto my sorrow,       which is brought upon me, Wherewith Jehovah hath afflicted [me] in the day of his fierce       anger.</VERS>\r\n      <VERS vnumber=\"13\">From on high 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.</VERS>\r\n      <VERS vnumber=\"14\">The yoke of my transgressions is bound by his hand; They are knit together, they are come up upon my neck; he hath       made my strength to fail: The Lord hath delivered me into their hands, against whom I am       not able to stand.</VERS>\r\n      <VERS vnumber=\"15\">The Lord hath set at nought all my mighty men in the       midst of me; He hath called a solemn assembly against me to crush my young       men: The Lord hath trodden as in a winepress the virgin daughter of       Judah.</VERS>\r\n      <VERS vnumber=\"16\">For these things I weep; mine eye, mine eye runneth down       with water; Because the comforter that should refresh my soul is far from me: My children are desolate, because the enemy hath prevailed.</VERS>\r\n      <VERS vnumber=\"17\">Zion spreadeth forth her hands; there is none to comfort       her; Jehovah hath commanded concerning Jacob, that they that are       round about him should be his adversaries: Jerusalem is among them as an unclean thing.</VERS>\r\n      <VERS vnumber=\"18\">Jehovah is righteous; for I have rebelled against his       commandment: Hear, I pray you, all ye peoples, and behold my sorrow: My virgins and my young men are gone into captivity.</VERS>\r\n      <VERS vnumber=\"19\">I called for my lovers, [but] they deceived me: My priests and mine elders gave up the ghost in the city, While they sought them food to refresh their souls.</VERS>\r\n      <VERS vnumber=\"20\">Behold, O Jehovah; for I am in distress; my heart is       troubled; My heart is turned within me; for I have grievously rebelled: Abroad the sword bereaveth, at home there is as death.</VERS>\r\n      <VERS vnumber=\"21\">They 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 proclaimed, and they       shall be like unto me.</VERS>\r\n      <VERS vnumber=\"22\">Let 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">How hath the Lord covered the daughter of Zion with a       cloud in his anger! He hath cast down from heaven unto the earth the beauty of       Israel, And hath not remembered his footstool in the day of his anger.</VERS>\r\n      <VERS vnumber=\"2\">The Lord hath swallowed up all the habitations of Jacob,       and hath not pitied: He hath thrown down in his wrath the strongholds of the daughter       of Judah; He hath brought them down to the ground; he hath profaned the       kingdom and the princes thereof.</VERS>\r\n      <VERS vnumber=\"3\">He hath cut off in fierce anger all the horn of Israel; He hath drawn back his right hand from before the enemy: And he hath burned up Jacob like a flaming fire, which devoureth       round about.</VERS>\r\n      <VERS vnumber=\"4\">He hath bent his bow like an enemy, he hath stood with his       right hand as an adversary, And hath slain all that were pleasant to the eye: In the tent of the daughter of Zion he hath poured out his wrath       like fire.</VERS>\r\n      <VERS vnumber=\"5\">The Lord is become as an enemy, he hath swallowed up       Israel; He hath swallowed up all her palaces, he hath destroyed his       strongholds; And he hath multiplied in the daughter of Judah mourning and       lamentation.</VERS>\r\n      <VERS vnumber=\"6\">And he hath violently taken away his tabernacle, as if it       were of a garden; he hath destroyed his place of assembly: Jehovah hath caused solemn assembly and sabbath to be forgotten       in Zion, And hath despised in the indignation of his anger the king and       the priest.</VERS>\r\n      <VERS vnumber=\"7\">The 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 Jehovah, as in the day of       a solemn assembly.</VERS>\r\n      <VERS vnumber=\"8\">Jehovah hath purposed to destroy the wall of the daughter       of Zion; He hath stretched out the line, he hath not withdrawn his hand       from destroying; And he hath made the rampart and wall to lament; they languish       together.</VERS>\r\n      <VERS vnumber=\"9\">Her gates are sunk into the ground; he hath destroyed and       broken her bars: Her king and her princes are among the nations where the law is       not; Yea, her prophets find no vision from Jehovah.</VERS>\r\n      <VERS vnumber=\"10\">The elders of the daughter of Zion sit upon the ground,       they 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.</VERS>\r\n      <VERS vnumber=\"11\">Mine eyes do fail with tears, my heart is troubled; My liver is poured upon the earth, because of the destruction of       the daughter of my people, Because the young children and the sucklings swoon in the       streets of the city.</VERS>\r\n      <VERS vnumber=\"12\">They say to their mothers, Where is grain and wine? When they swoon as the wounded in the streets of the city, When their soul is poured out into their mothers` bosom.</VERS>\r\n      <VERS vnumber=\"13\">What shall I testify unto thee? what shall I liken to       thee, O daughter of Jerusalem? What shall I compare to thee, that I may comfort thee, O virgin       daughter of Zion? For thy breach is great like the sea: who can heal thee?</VERS>\r\n      <VERS vnumber=\"14\">Thy prophets have seen for thee false and foolish visions; And they have not uncovered thine iniquity, to bring back thy       captivity, But have seen for thee false oracles and causes of banishment.</VERS>\r\n      <VERS vnumber=\"15\">All 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 called The perfection of beauty, The       joy of the whole earth?</VERS>\r\n      <VERS vnumber=\"16\">All thine enemies have opened their mouth wide 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.</VERS>\r\n      <VERS vnumber=\"17\">Jehovah hath done that which he purposed; he hath       fulfilled his word that he commanded in the days of old; He hath thrown down, and hath not pitied: And he hath caused the enemy to rejoice over thee; he hath       exalted the horn of thine adversaries.</VERS>\r\n      <VERS vnumber=\"18\">Their 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 respite; let not the apple of thine eye cease.</VERS>\r\n      <VERS vnumber=\"19\">Arise, cry out in the night, at the beginning of the       watches; Pour out thy 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 at the head of every street.</VERS>\r\n      <VERS vnumber=\"20\">See, O Jehovah, and behold to whom thou hast done thus! Shall the women eat their fruit, the children that are dandled       in the hands? Shall the priest and the prophet be slain in the sanctuary of       the Lord?</VERS>\r\n      <VERS vnumber=\"21\">The youth and the old man 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       slaughtered, [and] not pitied.</VERS>\r\n      <VERS vnumber=\"22\">Thou hast called, as in the day of a solemn assembly, my       terrors on every side; And there was none that escaped or remained in the day of       Jehovah`s anger: Those that I have dandled and brought up hath mine enemy       consumed.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">I am the man that hath seen affliction by the rod of his       wrath.</VERS>\r\n      <VERS vnumber=\"2\">He hath led me and caused me to walk in darkness, and not       in light.</VERS>\r\n      <VERS vnumber=\"3\">Surely against me he turneth his hand again and again all       the day.</VERS>\r\n      <VERS vnumber=\"4\">My flesh and my skin hath he made old; he hath broken my       bones.</VERS>\r\n      <VERS vnumber=\"5\">He hath builded against me, and compassed me with gall and       travail.</VERS>\r\n      <VERS vnumber=\"6\">He hath made me to dwell in dark places, as those that       have been long dead.</VERS>\r\n      <VERS vnumber=\"7\">He hath walled me about, that I cannot go forth; he hath       made my chain heavy.</VERS>\r\n      <VERS vnumber=\"8\">Yea, when I cry, and call for help, he shutteth out my       prayer.</VERS>\r\n      <VERS vnumber=\"9\">He hath walled up my ways with hewn stone; he hath made my       paths crooked.</VERS>\r\n      <VERS vnumber=\"10\">He is unto me as a bear lying in wait, as a lion in       secret places.</VERS>\r\n      <VERS vnumber=\"11\">He hath turned aside my ways, and pulled me in pieces; he       hath made me desolate.</VERS>\r\n      <VERS vnumber=\"12\">He hath bent his bow, and set me as a mark for the arrow.</VERS>\r\n      <VERS vnumber=\"13\">He hath caused the shafts of his quiver to enter into my       reins.</VERS>\r\n      <VERS vnumber=\"14\">I am become a derision to all my people, and their song       all the day.</VERS>\r\n      <VERS vnumber=\"15\">He hath filled me with bitterness, he hath sated me with       wormwood.</VERS>\r\n      <VERS vnumber=\"16\">He hath also broken my teeth with gravel stones; he hath       covered me with ashes.</VERS>\r\n      <VERS vnumber=\"17\">And thou hast removed my soul far off from peace; I       forgat prosperity.</VERS>\r\n      <VERS vnumber=\"18\">And I said, My strength is perished, and mine expectation       from Jehovah.</VERS>\r\n      <VERS vnumber=\"19\">Remember mine affliction and my misery, the wormwood and       the gall.</VERS>\r\n      <VERS vnumber=\"20\">My soul hath them still in remembrance, and is bowed down       within me.</VERS>\r\n      <VERS vnumber=\"21\">This I recall to my mind; therefore have I hope.</VERS>\r\n      <VERS vnumber=\"22\">[It is of] Jehovah`s lovingkindnesses that we are not       consumed, because his compassions fail not.</VERS>\r\n      <VERS vnumber=\"23\">They are new every morning; great is thy faithfulness.</VERS>\r\n      <VERS vnumber=\"24\">Jehovah is my portion, saith my soul; therefore will I       hope in him.</VERS>\r\n      <VERS vnumber=\"25\">Jehovah is good unto them that wait for him, to the soul       that seeketh him.</VERS>\r\n      <VERS vnumber=\"26\">It is good that a man should hope and quietly wait for       the salvation of Jehovah.</VERS>\r\n      <VERS vnumber=\"27\">It is good for a man that he bear the yoke in his youth.</VERS>\r\n      <VERS vnumber=\"28\">Let him sit alone and keep silence, because he hath laid       it upon him.</VERS>\r\n      <VERS vnumber=\"29\">Let him put his mouth in the dust, if so be there may be       hope.</VERS>\r\n      <VERS vnumber=\"30\">Let him give his cheek to him that smiteth him; let him       be filled full with reproach.</VERS>\r\n      <VERS vnumber=\"31\">For the Lord will not cast off for ever.</VERS>\r\n      <VERS vnumber=\"32\">For though he cause grief, yet will he have compassion       according to the multitude of his lovingkindnesses.</VERS>\r\n      <VERS vnumber=\"33\">For he doth not afflict willingly, nor grieve the       children of men.</VERS>\r\n      <VERS vnumber=\"34\">To crush under foot all the prisoners of the earth,</VERS>\r\n      <VERS vnumber=\"35\">To turn aside the right of a man before the face of the       Most High,</VERS>\r\n      <VERS vnumber=\"36\">To subvert a man in his cause, the Lord approveth not.</VERS>\r\n      <VERS vnumber=\"37\">Who is he that saith, and it cometh to pass, when the       Lord commandeth it not?</VERS>\r\n      <VERS vnumber=\"38\">Out of the mouth of the Most High cometh there not evil       and good?</VERS>\r\n      <VERS vnumber=\"39\">Wherefore doth a living man complain, a man for the       punishment of his sins?</VERS>\r\n      <VERS vnumber=\"40\">Let us search and try our ways, and turn again to Jehovah.</VERS>\r\n      <VERS vnumber=\"41\">Let us lift up our heart with our hands unto God in the       heavens.</VERS>\r\n      <VERS vnumber=\"42\">We have transgressed and have rebelled; thou hast not       pardoned.</VERS>\r\n      <VERS vnumber=\"43\">Thou hast covered with anger and pursued us; thou hast       slain, thou hast not pitied.</VERS>\r\n      <VERS vnumber=\"44\">Thou hast covered thyself with a cloud, so that no prayer       can pass through.</VERS>\r\n      <VERS vnumber=\"45\">Thou hast made us an off-scouring and refuse in the midst       of the peoples.</VERS>\r\n      <VERS vnumber=\"46\">All our enemies have opened their mouth wide against us.</VERS>\r\n      <VERS vnumber=\"47\">Fear and the pit are come upon us, devastation and       destruction.</VERS>\r\n      <VERS vnumber=\"48\">Mine eye runneth down with streams of water, for the       destruction of the daughter of my people.</VERS>\r\n      <VERS vnumber=\"49\">Mine eye poureth down, and ceaseth not, without any       intermission,</VERS>\r\n      <VERS vnumber=\"50\">Till Jehovah look down, and behold from heaven.</VERS>\r\n      <VERS vnumber=\"51\">Mine eye affecteth my soul, because of all the daughters       of my city.</VERS>\r\n      <VERS vnumber=\"52\">They have chased me sore like a bird, they that are mine       enemies without cause.</VERS>\r\n      <VERS vnumber=\"53\">They have cut off my life in the dungeon, and have cast a       stone upon me.</VERS>\r\n      <VERS vnumber=\"54\">Waters flowed over my head; I said, I am cut off.</VERS>\r\n      <VERS vnumber=\"55\">I called upon thy name, O Jehovah, out of the lowest       dungeon.</VERS>\r\n      <VERS vnumber=\"56\">Thou heardest my voice; hide not thine ear at my       breathing, at my cry.</VERS>\r\n      <VERS vnumber=\"57\">Thou drewest near in the day that I called upon thee;       thou saidst, Fear not.</VERS>\r\n      <VERS vnumber=\"58\">O Lord, thou hast pleaded the causes of my soul; thou       hast redeemed my life.</VERS>\r\n      <VERS vnumber=\"59\">O Jehovah, thou hast seen my wrong; judge thou my cause.</VERS>\r\n      <VERS vnumber=\"60\">Thou hast seen all their vengeance and all their devices       against me.</VERS>\r\n      <VERS vnumber=\"61\">Thou hast heard their reproach, O Jehovah, and all their       devices against me,</VERS>\r\n      <VERS vnumber=\"62\">The lips of those that rose up against me, and their       device against me all the day.</VERS>\r\n      <VERS vnumber=\"63\">Behold thou their sitting down, and their rising up; I am       their song.</VERS>\r\n      <VERS vnumber=\"64\">Thou wilt render unto them a recompense, O Jehovah,       according to the work of their hands.</VERS>\r\n      <VERS vnumber=\"65\">Thou wilt give them hardness of heart, thy curse unto       them.</VERS>\r\n      <VERS vnumber=\"66\">Thou wilt pursue them in anger, and destroy them from       under the heavens of Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">How is the gold become dim! [how] is the most pure gold       changed! The stones of the sanctuary are poured out at the head of every       street.</VERS>\r\n      <VERS vnumber=\"2\">The precious sons of Zion, comparable to fine gold, How are they esteemed as earthen pitchers, the work of the hands       of the potter!</VERS>\r\n      <VERS vnumber=\"3\">Even the jackals 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.</VERS>\r\n      <VERS vnumber=\"4\">The 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.</VERS>\r\n      <VERS vnumber=\"5\">They that did feed delicately are desolate in the streets: They that were brought up in scarlet embrace dunghills.</VERS>\r\n      <VERS vnumber=\"6\">For the iniquity of the daughter of my people is greater       than the sin of Sodom, That was overthrown as in a moment, and no hands were laid upon       her.</VERS>\r\n      <VERS vnumber=\"7\">Her nobles were purer than snow, they were whiter than       milk; They were more ruddy in body than rubies, their polishing was as       of sapphire.</VERS>\r\n      <VERS vnumber=\"8\">Their 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.</VERS>\r\n      <VERS vnumber=\"9\">They that are slain with the sword are better than they       that are slain with hunger; For these pine away, stricken through, for want of the fruits of       the field.</VERS>\r\n      <VERS vnumber=\"10\">The hands of the pitiful women have boiled their own       children; They were their food in the destruction of the daughter of my       people.</VERS>\r\n      <VERS vnumber=\"11\">Jehovah hath accomplished his wrath, he hath poured out       his fierce anger; And he hath kindled a fire in Zion, which hath devoured the       foundations thereof.</VERS>\r\n      <VERS vnumber=\"12\">The kings of the earth believed not, neither all the       inhabitants of the world, That the adversary and the enemy would enter into the gates of       Jerusalem.</VERS>\r\n      <VERS vnumber=\"13\">[It is] because of the sins of her prophets, [and] the       iniquities of her priests, That have shed the blood of the just in the midst of her.</VERS>\r\n      <VERS vnumber=\"14\">They wander as blind men in the streets, they are       polluted with blood, So that men cannot touch their garments.</VERS>\r\n      <VERS vnumber=\"15\">Depart ye, they cried unto them, Unclean! depart, depart,       touch not! When they fled away and wandered, men said among the nations,       They shall no more sojourn [here].</VERS>\r\n      <VERS vnumber=\"16\">The anger of Jehovah hath scattered them; he will no more       regard them: They respected not the persons of the priests, they favored not       the elders.</VERS>\r\n      <VERS vnumber=\"17\">Our eyes do yet fail [in looking] for our vain help: In our watching we have watched for a nation that could not save.</VERS>\r\n      <VERS vnumber=\"18\">They hunt our steps, so that we cannot go in our streets: Our end is near, our days are fulfilled; for our end is come.</VERS>\r\n      <VERS vnumber=\"19\">Our pursuers were swifter than the eagles of the heavens: They chased us upon the mountains, they laid wait for us in the       wilderness.</VERS>\r\n      <VERS vnumber=\"20\">The breath of our nostrils, the anointed of Jehovah, was       taken in their pits; Of whom we said, Under his shadow we shall live among the       nations.</VERS>\r\n      <VERS vnumber=\"21\">Rejoice and be glad, O daughter of Edom, that dwellest in       the land of Uz: The cup shall pass through unto thee also; thou shalt be       drunken, and shalt make thyself naked.</VERS>\r\n      <VERS vnumber=\"22\">The 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       uncover thy sins.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">Remember, O Jehovah, what is come upon us: Behold, and see our reproach.</VERS>\r\n      <VERS vnumber=\"2\">Our inheritance is turned unto strangers, Our houses unto aliens.</VERS>\r\n      <VERS vnumber=\"3\">We are orphans and fatherless; Our mothers are as widows.</VERS>\r\n      <VERS vnumber=\"4\">We have drunken our water for money; Our wood is sold unto us.</VERS>\r\n      <VERS vnumber=\"5\">Our pursuers are upon our necks: We are weary, and have no rest.</VERS>\r\n      <VERS vnumber=\"6\">We have given the hand to the Egyptians, And to the Assyrians, to be satisfied with bread.</VERS>\r\n      <VERS vnumber=\"7\">Our fathers sinned, and are not; And we have borne their iniquities.</VERS>\r\n      <VERS vnumber=\"8\">Servants rule over us: There is none to deliver us out of their hand.</VERS>\r\n      <VERS vnumber=\"9\">We get our bread at the peril of our lives, Because of the sword of the wilderness.</VERS>\r\n      <VERS vnumber=\"10\">Our skin is black like an oven, Because of the burning heat of famine.</VERS>\r\n      <VERS vnumber=\"11\">They ravished the women in Zion, The virgins in the cities of Judah.</VERS>\r\n      <VERS vnumber=\"12\">Princes were hanged up by their hand: The faces of elders were not honored.</VERS>\r\n      <VERS vnumber=\"13\">The young men bare the mill; And the children stumbled under the wood.</VERS>\r\n      <VERS vnumber=\"14\">The elders have ceased from the gate, The young men from their music.</VERS>\r\n      <VERS vnumber=\"15\">The joy of our heart is ceased; Our dance is turned into mourning.</VERS>\r\n      <VERS vnumber=\"16\">The crown is fallen from our head: Woe unto us! for we have sinned.</VERS>\r\n      <VERS vnumber=\"17\">For this our heart is faint; For these things our eyes are dim;</VERS>\r\n      <VERS vnumber=\"18\">For the mountain of Zion, which is desolate: The foxes walk upon it.</VERS>\r\n      <VERS vnumber=\"19\">Thou, O Jehovah, abidest for ever; Thy throne is from generation to generation.</VERS>\r\n      <VERS vnumber=\"20\">Wherefore dost thou forget us for ever, [And] forsake us so long time?</VERS>\r\n      <VERS vnumber=\"21\">Turn thou us unto thee, O Jehovah, and we shall be turned; Renew our days as of old.</VERS>\r\n      <VERS vnumber=\"22\">But thou hast utterly rejected us; Thou art very wroth against us.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"26\" bname=\"Ezekiel\" bsname=\"Ezek\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">Now 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 Chebar, that the heavens were opened, and I saw visions of God.</VERS>\r\n      <VERS vnumber=\"2\">In the fifth [day] of the month, which was the fifth year of king Jehoiachin`s captivity,</VERS>\r\n      <VERS vnumber=\"3\">the word of Jehovah came expressly unto Ezekiel the priest, the son of Buzi, in the land of the Chaldeans by the river Chebar; and the hand of Jehovah was there upon him.</VERS>\r\n      <VERS vnumber=\"4\">And I looked, and, behold, a stormy wind came out of the north, a great cloud, with a fire infolding itself, and a brightness round about it, and out of the midst thereof as it were glowing metal, out of the midst of the fire.</VERS>\r\n      <VERS vnumber=\"5\">And out of the midst thereof came the likeness of four living creatures. And this was their appearance: they had the likeness of a man.</VERS>\r\n      <VERS vnumber=\"6\">And every one had four faces, and every one of them had four wings.</VERS>\r\n      <VERS vnumber=\"7\">And their feet were straight feet; and the sole of their feet was like the sole of a calf`s foot; and they sparkled like burnished brass.</VERS>\r\n      <VERS vnumber=\"8\">And they had the hands of a man under their wings on their four sides; and they four had their faces and their wings [thus]:</VERS>\r\n      <VERS vnumber=\"9\">their wings were joined one to another; they turned not when they went; they went every one straight forward.</VERS>\r\n      <VERS vnumber=\"10\">As for the likeness of their faces, they had the face of a man; and they four had the face of a lion on the right side; and they four had the face of an ox on the left side; they four had also the face of an eagle.</VERS>\r\n      <VERS vnumber=\"11\">And their faces and their wings were separate above; two [wings] of every one were joined one to another, and two covered their bodies.</VERS>\r\n      <VERS vnumber=\"12\">And they went every one straight forward: whither the spirit was to go, they went; they turned not when they went.</VERS>\r\n      <VERS vnumber=\"13\">As for the likeness of the living creatures, their appearance was like burning coals of fire, like the appearance of torches: [the fire] went up and down among the living creatures; and the fire was bright, and out of the fire went forth lightning.</VERS>\r\n      <VERS vnumber=\"14\">And the living creatures ran and returned as the appearance of a flash of lightning.</VERS>\r\n      <VERS vnumber=\"15\">Now as I beheld the living creatures, behold, one wheel upon the earth beside the living creatures, for each of the four faces thereof.</VERS>\r\n      <VERS vnumber=\"16\">The appearance of the wheels and their work was like unto a beryl: and they four had one likeness; and their appearance and their work was as it were a wheel within a wheel.</VERS>\r\n      <VERS vnumber=\"17\">When they went, they went in their four directions: they turned not when they went.</VERS>\r\n      <VERS vnumber=\"18\">As for their rims, they were high and dreadful; and they four had their rims full of eyes round about.</VERS>\r\n      <VERS vnumber=\"19\">And when the living creatures went, the wheels went beside them; and when the living creatures were lifted up from the earth, the wheels were lifted up.</VERS>\r\n      <VERS vnumber=\"20\">Whithersoever the spirit was to go, they went; thither was the spirit to go: and the wheels were lifted up beside them; for the spirit of the living creature was in the wheels.</VERS>\r\n      <VERS vnumber=\"21\">When those went, these went; and when those stood, these stood; and when those were lifted up from the earth, the wheels were lifted up beside them: for the spirit of the living creature was in the wheels.</VERS>\r\n      <VERS vnumber=\"22\">And over the head of the living creature there was the likeness of a firmament, like the terrible crystal to look upon, stretched forth over their heads above.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And when they went, I heard the noise of their wings like the noise of great waters, like the voice of the Almighty, a noise of tumult like the noise of a host: when they stood, they let down their wings.</VERS>\r\n      <VERS vnumber=\"25\">And there was a voice above the firmament that was over their heads: when they stood, they let down their wings.</VERS>\r\n      <VERS vnumber=\"26\">And 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 a likeness as the appearance of a man upon it above.</VERS>\r\n      <VERS vnumber=\"27\">And I saw as it were glowing metal, as the appearance of fire within it round about, from the appearance of his loins and upward; and from the appearance of his loins and downward I saw as it were the appearance of fire, and there was brightness round about him.</VERS>\r\n      <VERS vnumber=\"28\">As 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 Jehovah. And when I saw it, I fell upon my face, and I heard a voice of one that spake.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">And he said unto me, Son of man, stand upon thy feet, and I will speak with thee.</VERS>\r\n      <VERS vnumber=\"2\">And the Spirit entered into me when he spake unto me, and set me upon my feet; and I heard him that spake unto me.</VERS>\r\n      <VERS vnumber=\"3\">And he said unto me, Son of man, I send thee to the children of Israel, to nations that are rebellious, which have rebelled against me: they and their fathers have transgressed against me even unto this very day.</VERS>\r\n      <VERS vnumber=\"4\">And the children are impudent and stiffhearted: I do sent thee unto them; and thou shalt say unto them, Thus saith the Lord Jehovah.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And thou, son of man, be not afraid of them, neither be afraid of their words, though briers and thorns are with thee, and thou dost dwell among scorpions: be not afraid of their words, nor be dismayed at their looks, though they are a rebellious house.</VERS>\r\n      <VERS vnumber=\"7\">And thou shalt speak my words unto them, whether they will hear, or whether they will forbear; for they are most rebellious.</VERS>\r\n      <VERS vnumber=\"8\">But thou, son of man, hear what I say unto thee; be not thou rebellious like that rebellious house: open thy mouth, and eat that which I give thee.</VERS>\r\n      <VERS vnumber=\"9\">And when I looked, behold, a hand was put forth unto me; and, lo, a roll of a book was therein;</VERS>\r\n      <VERS vnumber=\"10\">And he spread it before me: and it was written within and without; and there were written therein lamentations, and mourning, and woe.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">And he said unto me, Son of man, eat that which thou findest; eat this roll, and go, speak unto the house of Israel.</VERS>\r\n      <VERS vnumber=\"2\">So I opened my mouth, and he caused me to eat the roll.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And he said unto me, Son of man, go, get thee unto the house of Israel, and speak with my words unto them.</VERS>\r\n      <VERS vnumber=\"5\">For thou art not sent to a people of a strange speech and of a hard language, but to the house of Israel;</VERS>\r\n      <VERS vnumber=\"6\">not to many peoples of a strange speech and of a hard language, whose words thou canst not understand. Surely, if I sent thee to them, they would hearken unto thee.</VERS>\r\n      <VERS vnumber=\"7\">But the house of Israel will not hearken unto thee; for they will not hearken unto me: for all the house of Israel are of hard forehead and of a stiff heart.</VERS>\r\n      <VERS vnumber=\"8\">Behold, I have made thy face hard against their faces, and thy forehead hard against their foreheads.</VERS>\r\n      <VERS vnumber=\"9\">As an adamant harder than flint have I made thy forehead: fear them not, neither be dismayed at their looks, though they are a rebellious house.</VERS>\r\n      <VERS vnumber=\"10\">Moreover he said unto me, Son of man, all my words that I shall speak unto thee receive in thy heart, and hear with thine ears.</VERS>\r\n      <VERS vnumber=\"11\">And 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 Jehovah; whether they will hear, or whether they will forbear.</VERS>\r\n      <VERS vnumber=\"12\">Then the Spirit lifted me up, and I heard behind me the voice of a great rushing, [saying], Blessed be the glory of Jehovah from his place.</VERS>\r\n      <VERS vnumber=\"13\">And [I heard] the noise of the wings of the living creatures as they touched one another, and the noise of the wheels beside them, even the noise of a great rushing.</VERS>\r\n      <VERS vnumber=\"14\">So the Spirit lifted me up, and took me away; and I went in bitterness, in the heat of my spirit; and the hand of Jehovah was strong upon me.</VERS>\r\n      <VERS vnumber=\"15\">Then I came to them of the captivity at Tel-abib, that dwelt by the river Chebar, and to where they dwelt; and I sat there overwhelmed among them seven days.</VERS>\r\n      <VERS vnumber=\"16\">And it came to pass at the end of seven days, that the word of Jehovah came unto me, saying,</VERS>\r\n      <VERS vnumber=\"17\">Son 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.</VERS>\r\n      <VERS vnumber=\"18\">When 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 thy hand.</VERS>\r\n      <VERS vnumber=\"19\">Yet 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.</VERS>\r\n      <VERS vnumber=\"20\">Again, when a righteous man doth turn from his righteousness, and commit iniquity, and I lay a stumblingblock before him, he shall die: because thou hast not given him warning, he shall die in his sin, and his righteous deeds which he hath done shall not be remembered; but his blood will I require at thy hand.</VERS>\r\n      <VERS vnumber=\"21\">Nevertheless if thou warn the righteous man, that the righteous sin not, and he doth not sin, he shall surely live, because he took warning; and thou hast delivered thy soul.</VERS>\r\n      <VERS vnumber=\"22\">And the hand of Jehovah was there upon me; and he said unto me, Arise, go forth into the plain, and I will there talk with thee.</VERS>\r\n      <VERS vnumber=\"23\">Then I arose, and went forth into the plain: and, behold, the glory of Jehovah stood there, as the glory which I saw by the river Chebar; and I fell on my face.</VERS>\r\n      <VERS vnumber=\"24\">Then the Spirit entered into me, and set me upon my feet; and he spake with me, and said unto me, Go, shut thyself within thy house.</VERS>\r\n      <VERS vnumber=\"25\">But thou, son of man, behold, they shall lay bands upon thee, and shall bind thee with them, and thou shalt not go out among them:</VERS>\r\n      <VERS vnumber=\"26\">and 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.</VERS>\r\n      <VERS vnumber=\"27\">But when I speak with thee, I will open thy mouth, and thou shalt say unto them, Thus saith the Lord Jehovah: He that heareth, let him hear; and he that forbeareth, let him forbear: for they are a rebellious house.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">Thou also, son of man, take thee a tile, and lay it before thee, and portray upon it a city, even Jerusalem:</VERS>\r\n      <VERS vnumber=\"2\">and lay siege against it, and build forts against it, and cast up a mound against it; set camps also against it, and plant battering rams against it round about.</VERS>\r\n      <VERS vnumber=\"3\">And take thou unto thee an iron pan, and set it for a wall of iron between thee and the city: and set thy face toward it, and it shall be besieged, and thou shalt lay siege against it. This shall be a sign to the house of Israel.</VERS>\r\n      <VERS vnumber=\"4\">Moreover lie thou 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.</VERS>\r\n      <VERS vnumber=\"5\">For I have appointed the years of their iniquity to be unto thee a number of days, even three hundred and ninety days: so shalt thou bear the iniquity of the house of Israel.</VERS>\r\n      <VERS vnumber=\"6\">And again, when thou hast accomplished these, thou shalt lie on thy right side, and shalt bear the iniquity of the house of Judah: forty days, each day for a year, have I appointed it unto thee.</VERS>\r\n      <VERS vnumber=\"7\">And thou shalt set thy face toward the siege of Jerusalem, with thine arm uncovered; and thou shalt prophesy against it.</VERS>\r\n      <VERS vnumber=\"8\">And, behold, I lay bands upon thee, and thou shalt not turn thee from one side to the other, till thou hast accomplished the days of thy siege.</VERS>\r\n      <VERS vnumber=\"9\">Take thou also unto thee wheat, and barley, and beans, and lentils, and millet, and spelt, 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, even three hundred and ninety days, shalt thou eat thereof.</VERS>\r\n      <VERS vnumber=\"10\">And thy food which thou shalt eat shall be by weight, twenty shekels a day: from time to time shalt thou eat it.</VERS>\r\n      <VERS vnumber=\"11\">And thou shalt drink water by measure, the sixth part of a hin: from time to time shalt thou drink.</VERS>\r\n      <VERS vnumber=\"12\">And thou shalt eat it as barley cakes, and thou shalt bake it in their sight with dung that cometh out of man.</VERS>\r\n      <VERS vnumber=\"13\">And Jehovah said, Even thus shall the children of Israel eat their bread unclean, among the nations whither I will drive them.</VERS>\r\n      <VERS vnumber=\"14\">Then said I, Ah Lord Jehovah! 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 of beasts; neither came there abominable flesh into my mouth.</VERS>\r\n      <VERS vnumber=\"15\">Then he said unto me, See, I have given thee cow`s dung for man`s dung, and thou shalt prepare thy bread thereon.</VERS>\r\n      <VERS vnumber=\"16\">Moreover 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 fearfulness; and they shall drink water by measure, and in dismay:</VERS>\r\n      <VERS vnumber=\"17\">that they may want bread and water, and be dismayed one with another, and pine away in their iniquity.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">And thou, son of man, take thee a sharp sword; [as] a barber`s razor shalt thou take it unto thee, and shalt cause it to pass upon thy head and upon thy beard: then take thee balances to weigh, and divide the hair.</VERS>\r\n      <VERS vnumber=\"2\">A third part shalt thou burn in the fire in the midst of the city, when the days of the siege are fulfilled; and thou shalt take a third part, and smite with the sword round about it; and a third part thou shalt scatter to the wind, and I will draw out a sword after them.</VERS>\r\n      <VERS vnumber=\"3\">And thou shalt take thereof a few in number, and bind them in thy skirts.</VERS>\r\n      <VERS vnumber=\"4\">And of these again shalt thou take, and cast them into the midst of the fire, and burn them in the fire; therefrom shall a fire come forth into all the house of Israel.</VERS>\r\n      <VERS vnumber=\"5\">Thus saith the Lord Jehovah: This is Jerusalem; I have set her in the midst of the nations, and countries are round about her.</VERS>\r\n      <VERS vnumber=\"6\">And she hath rebelled against mine ordinances in doing wickedness more than the nations, and against my statutes more than the countries that are round about her; for they have rejected mine ordinances, and as for my statutes, they have not walked in them.</VERS>\r\n      <VERS vnumber=\"7\">Therefore thus saith the Lord Jehovah: Because ye are turbulent more than the nations that are round about you, and have not walked in my statutes, neither have kept mine ordinances, neither have done after the ordinances of the nations that are round about you;</VERS>\r\n      <VERS vnumber=\"8\">therefore thus saith the Lord Jehovah: Behold, I, even I, am against thee; and I will execute judgments in the midst of thee in the sight of the nations.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">Therefore the fathers shall eat the sons in the midst of thee, and the sons shall eat their fathers; and I will execute judgments on thee; and the whole remnant of thee will I scatter unto all the winds.</VERS>\r\n      <VERS vnumber=\"11\">Wherefore, as I live, saith the Lord Jehovah, 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, and I also will have no pity.</VERS>\r\n      <VERS vnumber=\"12\">A 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 a third part I will scatter unto all the winds, and will draw out a sword after them.</VERS>\r\n      <VERS vnumber=\"13\">Thus shall mine anger be accomplished, and I will cause my wrath toward them to rest, and I shall be comforted; and they shall know that I, Jehovah, have spoken in my zeal, when I have accomplished my wrath upon them.</VERS>\r\n      <VERS vnumber=\"14\">Moreover I will make thee a desolation and a reproach among the nations that are round about thee, in the sight of all that pass by.</VERS>\r\n      <VERS vnumber=\"15\">So 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 on thee in anger and in wrath, and in wrathful rebukes; (I, Jehovah, have spoken it;)</VERS>\r\n      <VERS vnumber=\"16\">when I shall send upon them the evil arrows of famine, that are for destruction, which I will send to destroy you: and I will increase the famine upon you, and will break your staff of bread;</VERS>\r\n      <VERS vnumber=\"17\">and I will 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, Jehovah, have spoken it.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">And the word of Jehovah came unto me, saying,</VERS>\r\n      <VERS vnumber=\"2\">Son of man, set thy face toward the mountains of Israel, and prophesy unto them,</VERS>\r\n      <VERS vnumber=\"3\">and say, Ye mountains of Israel, hear the word of the Lord Jehovah: Thus saith the Lord Jehovah to the mountains and to the hills, to the watercourses and to the valleys: Behold, I, even I, will bring a sword upon you, and I will destroy your high places.</VERS>\r\n      <VERS vnumber=\"4\">And your altars shall become desolate, and your sun-images shall be broken; and I will cast down your slain men before your idols.</VERS>\r\n      <VERS vnumber=\"5\">And I will lay the dead bodies of the children of Israel before their idols; and I will scatter your bones round about your altars.</VERS>\r\n      <VERS vnumber=\"6\">In all your dwelling-places 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 sun-images may be hewn down, and your works may be abolished.</VERS>\r\n      <VERS vnumber=\"7\">And the slain shall fall in the midst of you, and ye shall know that I am Jehovah.</VERS>\r\n      <VERS vnumber=\"8\">Yet will I leave a remnant, in that ye shall have some that escape the sword among the nations, when ye shall be scattered through the countries.</VERS>\r\n      <VERS vnumber=\"9\">And those of you that escape shall remember me among the nations whither they shall be carried captive, how that I have been broken with their lewd heart, which hath departed from me, and with they eyes, which play the harlot after their idols: and they shall loathe themselves in their own sight for the evils which they have committed in all their abominations.</VERS>\r\n      <VERS vnumber=\"10\">And they shall know that I am Jehovah: I have not said in vain that I would do this evil unto them.</VERS>\r\n      <VERS vnumber=\"11\">Thus saith the Lord Jehovah: Smite with thy hand, and stamp with thy foot, and say, Alas! because of all the evil abominations of the house of Israel; for they shall fall by the sword, by the famine, and by the pestilence.</VERS>\r\n      <VERS vnumber=\"12\">He 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 wrath upon them.</VERS>\r\n      <VERS vnumber=\"13\">And ye shall know that I am Jehovah, when their slain men shall be among their idols round about their altars, upon every high hill, on all the tops of the mountains, and under every green tree, and under every thick oak, the places where they offered sweet savor to all their idols.</VERS>\r\n      <VERS vnumber=\"14\">And I will stretch out my hand upon them, and make the land desolate and waste, from the wilderness toward Diblah, throughout all their habitations: and they shall know that I am Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">Moreover the word of Jehovah came unto me, saying,</VERS>\r\n      <VERS vnumber=\"2\">And thou, son of man, thus saith the Lord Jehovah unto the land of Israel, An end: the end is come upon the four corners of the land.</VERS>\r\n      <VERS vnumber=\"3\">Now is the end upon thee, and I will send mine anger upon thee, and will judge thee according to thy ways; and I will bring upon thee all thine abominations.</VERS>\r\n      <VERS vnumber=\"4\">And mine eye shall not spare thee, neither will I have pity; but I will bring thy ways upon thee, and thine abominations shall be in the midst of thee: and ye shall know that I am Jehovah.</VERS>\r\n      <VERS vnumber=\"5\">Thus saith the Lord Jehovah: An evil, an only evil; behold, it cometh.</VERS>\r\n      <VERS vnumber=\"6\">An end is come, the end is come; it awaketh against thee; behold, it cometh.</VERS>\r\n      <VERS vnumber=\"7\">Thy doom is come unto thee, O inhabitant of the land: the time is come, the day is near, [a day of] tumult, and not [of] joyful shouting, upon the mountains.</VERS>\r\n      <VERS vnumber=\"8\">Now will I shortly pour out my wrath upon thee, and accomplish mine anger against thee, and will judge thee according to thy ways; and I will bring upon thee all thine abominations.</VERS>\r\n      <VERS vnumber=\"9\">And mine eye shall not spare, neither will I have pity: I will bring upon thee according to thy ways; and thine abominations shall be in the midst of thee; and ye shall know that I, Jehovah, do smite.</VERS>\r\n      <VERS vnumber=\"10\">Behold, the day, behold, it cometh: thy doom is gone forth; the rod hath blossomed, pride hath budded.</VERS>\r\n      <VERS vnumber=\"11\">Violence is risen up into a rod of wickedness; none of them [shall remain], nor of their multitude, nor of their wealth: neither shall there be eminency among them.</VERS>\r\n      <VERS vnumber=\"12\">The time is come, the day draweth near: let not the buyer rejoice, nor the seller mourn; for wrath is upon all the multitude thereof.</VERS>\r\n      <VERS vnumber=\"13\">For the seller shall not return to that which is sold, although they be yet alive: for the vision is touching the whole multitude thereof, none shall return; neither shall any strengthen himself in the iniquity of his life.</VERS>\r\n      <VERS vnumber=\"14\">They have blown the trumpet, and have made all ready; but none goeth to the battle; for my wrath is upon all the multitude thereof.</VERS>\r\n      <VERS vnumber=\"15\">The 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.</VERS>\r\n      <VERS vnumber=\"16\">But those of them that escape shall escape, and shall be on the mountains like doves of the valleys, all of them moaning, every one in his iniquity.</VERS>\r\n      <VERS vnumber=\"17\">All hands shall be feeble, and all knees shall be weak as water.</VERS>\r\n      <VERS vnumber=\"18\">They shall also gird themselves with sackcloth, and horror shall cover them; and shame shall be upon all faces, and baldness upon all their heads.</VERS>\r\n      <VERS vnumber=\"19\">They shall cast their silver in the streets, and their gold shall be as an unclean thing; their silver and their gold shall not be able to deliver them in the day of the wrath of Jehovah: they shall not satisfy their souls, neither fill their bowels; because it hath been the stumblingblock of their iniquity.</VERS>\r\n      <VERS vnumber=\"20\">As for the beauty of his ornament, he set it in majesty; but they made the images of their abominations [and] their detestable things therein: therefore have I made it unto them as an unclean thing.</VERS>\r\n      <VERS vnumber=\"21\">And 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 profane it.</VERS>\r\n      <VERS vnumber=\"22\">My face will I turn also from them, and they shall profane my secret [place]; and robbers shall enter into it, and profane it.</VERS>\r\n      <VERS vnumber=\"23\">Make the chain; for the land is full of bloody crimes, and the city is full of violence.</VERS>\r\n      <VERS vnumber=\"24\">Wherefore I will bring the worst of the nations, and they shall possess their houses: I will also make the pride of the strong to cease; and their holy places shall be profaned.</VERS>\r\n      <VERS vnumber=\"25\">Destruction cometh; and they shall seek peace, and there shall be none.</VERS>\r\n      <VERS vnumber=\"26\">Mischief shall come upon mischief, and rumor shall be upon rumor; and they shall seek a vision of the prophet; but the law shall perish from the priest, and counsel from the elders.</VERS>\r\n      <VERS vnumber=\"27\">The 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 Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">And it came to pass in the sixth year, in the sixth [month], in the fifth [day] of the month, as I sat in my house, and the elders of Judah sat before me, that the hand of the Lord Jehovah fell there upon me.</VERS>\r\n      <VERS vnumber=\"2\">Then I beheld, and, lo, a likeness as the appearance of fire; from the appearance of his loins and downward, fire; and from his loins and upward, as the appearance of brightness, as it were glowing metal.</VERS>\r\n      <VERS vnumber=\"3\">And he put forth the form of a hand, and took me by a lock of my head; and the Spirit lifted me up between earth and heaven, and brought me in the visions of God to Jerusalem, to the door of the gate of the inner [court] that looketh toward the north; where was the seat of the image of jealousy, which provoketh to jealousy.</VERS>\r\n      <VERS vnumber=\"4\">And, behold, the glory of the God of Israel was there, according to the appearance that I saw in the plain.</VERS>\r\n      <VERS vnumber=\"5\">Then 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 of the gate of the altar this image of jealousy in the entry.</VERS>\r\n      <VERS vnumber=\"6\">And he said unto me, Son of man, seest thou what they do? even the great abominations that the house of Israel do commit here, that I should go far off from my sanctuary? but thou shalt again see yet other great abominations.</VERS>\r\n      <VERS vnumber=\"7\">And he brought me to the door of the court; and when I looked, behold, a hole in the wall.</VERS>\r\n      <VERS vnumber=\"8\">Then said he unto me, Son of man, dig now in the wall: and when I had digged in the wall, behold, a door.</VERS>\r\n      <VERS vnumber=\"9\">And he said unto me, Go in, and see the wicked abominations that they do here.</VERS>\r\n      <VERS vnumber=\"10\">So I went in and saw; and behold, every form of creeping things, and abominable beasts, and all the idols of the house of Israel, portrayed upon the wall round about.</VERS>\r\n      <VERS vnumber=\"11\">And there stood before them seventy men of the elders of the house of Israel; and in the midst of them stood Jaazaniah the son of Shaphan, every man with his censer in his hand; and the odor of the cloud of incense went up.</VERS>\r\n      <VERS vnumber=\"12\">Then said he unto me, Son of man, hast thou seen what the elders of the house of Israel do in the dark, every man in his chambers of imagery? for they say, Jehovah seeth us not; Jehovah hath forsaken the land.</VERS>\r\n      <VERS vnumber=\"13\">He said also unto me, Thou shalt again see yet other great abominations which they do.</VERS>\r\n      <VERS vnumber=\"14\">Then he brought me to the door of the gate of Jehovah`s house which was toward the north; and behold, there sat the women weeping for Tammuz.</VERS>\r\n      <VERS vnumber=\"15\">Then said he unto me, Hast thou seen [this], O son of man? thou shalt again see yet greater abominations than these.</VERS>\r\n      <VERS vnumber=\"16\">And he brought me into the inner court of Jehovah`s house; and behold, at the door of the temple of Jehovah, between the porch and the altar, were about five and twenty men, with their backs toward the temple of Jehovah, and their faces toward the east; and they were worshipping the sun toward the east.</VERS>\r\n      <VERS vnumber=\"17\">Then 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 turned again to provoke me to anger: and, lo, they put the branch to their nose.</VERS>\r\n      <VERS vnumber=\"18\">Therefore will I also deal in wrath; 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">Then he cried in mine ears with a loud voice, saying, Cause ye them that have charge over the city to draw near, every man with his destroying weapon in his hand.</VERS>\r\n      <VERS vnumber=\"2\">And behold, six men came from the way of the upper gate, which lieth toward the north, every man with his slaughter weapon in his hand; and one man in the midst of them clothed in linen, with a writer`s inkhorn by his side. And they went in, and stood beside the brazen altar.</VERS>\r\n      <VERS vnumber=\"3\">And the glory of the God of Israel was gone up from the cherub, whereupon it was, to the threshold of the house: and he called to the man clothed in linen, who had the writer`s inkhorn by his side.</VERS>\r\n      <VERS vnumber=\"4\">And Jehovah 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 over all the abominations that are done in the midst thereof.</VERS>\r\n      <VERS vnumber=\"5\">And to the others he said in my hearing, Go ye through the city after him, and smite: let not your eye spare, neither have ye pity;</VERS>\r\n      <VERS vnumber=\"6\">slay utterly the old man, the young man and the virgin, 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 old men that were before the house.</VERS>\r\n      <VERS vnumber=\"7\">And he said unto them, Defile the house, and fill the courts with the slain: go ye forth. And they went forth, and smote in the city.</VERS>\r\n      <VERS vnumber=\"8\">And it came to pass, while they were smiting, and I was left, that I fell upon my face, and cried, and said, Ah Lord Jehovah! wilt thou destroy all the residue of Israel in thy pouring out of thy wrath upon Jerusalem?</VERS>\r\n      <VERS vnumber=\"9\">Then 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 wrestling [of judgment]: for they say, Jehovah hath forsaken the land, and Jehovah seeth not.</VERS>\r\n      <VERS vnumber=\"10\">And as for me also, mine eye shall not spare, neither will I have pity, but I will bring their way upon their head.</VERS>\r\n      <VERS vnumber=\"11\">And behold, the man clothed in linen, who had the inkhorn by his side, reported the matter, saying, I have done as thou hast commanded me.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">Then I looked, and behold, in the firmament that was over the head of the cherubim there appeared above them as it were a sapphire stone, as the appearance of the likeness of a throne.</VERS>\r\n      <VERS vnumber=\"2\">And he spake unto the man clothed in linen, and said, Go in between the whirling [wheels], even under the cherub, and fill both thy hands with coals of fire from between the cherubim, and scatter them over the city. And he went in in my sight.</VERS>\r\n      <VERS vnumber=\"3\">Now the cherubim stood on the right side of the house, when the man went in; and the cloud filled the inner court.</VERS>\r\n      <VERS vnumber=\"4\">And the glory of Jehovah mounted 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 Jehovah`s glory.</VERS>\r\n      <VERS vnumber=\"5\">And the sound of the wings of the cherubim was heard even to the outer court, as the voice of God Almighty when he speaketh.</VERS>\r\n      <VERS vnumber=\"6\">And it came to pass, when he commanded the man clothed in linen, saying, Take fire from between the whirling wheels, from between the cherubim, that he went in, and stood beside a wheel.</VERS>\r\n      <VERS vnumber=\"7\">And the cherub stretched forth his hand from between the cherubim unto the fire that was between the cherubim, and took [thereof], and put it into the hands of him that was clothed in linen, who took it and went out.</VERS>\r\n      <VERS vnumber=\"8\">And there appeared in the cherubim the form of a man`s hand under their wings.</VERS>\r\n      <VERS vnumber=\"9\">And I looked, and behold, four wheels beside the cherubim, one wheel beside one cherub, and another wheel beside another cherub; and the appearance of the wheels was like unto a beryl stone.</VERS>\r\n      <VERS vnumber=\"10\">And as for their appearance, they four had one likeness, as if a wheel have been within a wheel.</VERS>\r\n      <VERS vnumber=\"11\">When they went, they went in their four directions: they turned not as they went, but to the place whither the head looked they followed it; they turned not as they went.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">As for the wheels, they were called in my hearing, the whirling [wheels].</VERS>\r\n      <VERS vnumber=\"14\">And every one had four faces: the first face was the face of the cherub, and the second face was the face of a man, and the third face the face of a lion, and the fourth the face of an eagle.</VERS>\r\n      <VERS vnumber=\"15\">And the cherubim mounted up: this is the living creature that I saw by the river Chebar.</VERS>\r\n      <VERS vnumber=\"16\">And when the cherubim went, the wheels went beside them; and when the cherubim lifted up their wings to mount up from the earth, the wheels also turned not from beside them.</VERS>\r\n      <VERS vnumber=\"17\">When they stood, these stood; and when they mounted up, these mounted up with them: for the spirit of the living creature was in them.</VERS>\r\n      <VERS vnumber=\"18\">And the glory of Jehovah went forth from over the threshold of the house, and stood over the cherubim.</VERS>\r\n      <VERS vnumber=\"19\">And the cherubim lifted up their wings, and mounted up from the earth in my sight when they went forth, and the wheels beside them: and they stood at the door of the east gate of Jehovah`s house; and the glory of the God of Israel was over them above.</VERS>\r\n      <VERS vnumber=\"20\">This is the living creature that I saw under the God of Israel by the river Chebar; and I knew that they were cherubim.</VERS>\r\n      <VERS vnumber=\"21\">Every one had four faces, and every one four wings; and the likeness of the hands of a man was under their wings.</VERS>\r\n      <VERS vnumber=\"22\">And as for the likeness of their faces, they were the faces which I saw by the river Chebar, their appearances and themselves; they went every one straight forward.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">Moreover the Spirit lifted me up, and brought me unto the east gate of Jehovah`s house, which looketh eastward: and behold, at the door of the gate five and twenty men; and I saw in the midst of them Jaazaniah the son of Azzur, and Pelatiah the son of Benaiah, princes of the people.</VERS>\r\n      <VERS vnumber=\"2\">And he said unto me, Son of man, these are the men that devise iniquity, and that give wicked counsel in this city;</VERS>\r\n      <VERS vnumber=\"3\">that say, [The time] is not near to build houses: this [city] is the caldron, and we are the flesh.</VERS>\r\n      <VERS vnumber=\"4\">Therefore prophesy against them, prophesy, O son of man.</VERS>\r\n      <VERS vnumber=\"5\">And the Spirit of Jehovah fell upon me, and he said unto me, Speak, Thus saith Jehovah: Thus have ye said, O house of Israel; for I know the things that come into your mind.</VERS>\r\n      <VERS vnumber=\"6\">Ye have multiplied your slain in this city, and ye have filled the streets thereof with the slain.</VERS>\r\n      <VERS vnumber=\"7\">Therefore thus saith the Lord Jehovah: Your slain whom ye have laid in the midst of it, they are the flesh, and this [city] is the caldron; but ye shall be brought forth out of the midst of it.</VERS>\r\n      <VERS vnumber=\"8\">Ye have feared the sword; and I will bring the sword upon you, saith the Lord Jehovah.</VERS>\r\n      <VERS vnumber=\"9\">And I will bring you forth out of the midst thereof, and deliver you into the hands of strangers, and will execute judgments among you.</VERS>\r\n      <VERS vnumber=\"10\">Ye shall fall by the sword; I will judge you in the border of Israel; and ye shall know that I am Jehovah.</VERS>\r\n      <VERS vnumber=\"11\">This [city] shall not be your caldron, neither shall ye be the flesh in the midst thereof; I will judge you in the border of Israel;</VERS>\r\n      <VERS vnumber=\"12\">and ye shall know that I am Jehovah: for ye have not walked in my statutes, neither have ye executed mine ordinances, but have done after the ordinances of the nations that are round about you.</VERS>\r\n      <VERS vnumber=\"13\">And 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 Jehovah! wilt thou make a full end of the remnant of Israel?</VERS>\r\n      <VERS vnumber=\"14\">And the word of Jehovah came unto me, saying,</VERS>\r\n      <VERS vnumber=\"15\">Son of man, thy brethren, even thy brethren, the men of thy kindred, and all the house of Israel, all of them, [are they] unto whom the inhabitants of Jerusalem have said, Get you far from Jehovah; unto us is this land given for a possession.</VERS>\r\n      <VERS vnumber=\"16\">Therefore say, Thus saith the Lord Jehovah: Whereas I have removed them far off among the nations, and whereas I have scattered them among the countries, yet will I be to them a sanctuary for a little while in the countries where they are come.</VERS>\r\n      <VERS vnumber=\"17\">Therefore say, Thus saith the Lord Jehovah: I will gather you from the peoples, and assemble you out of the countries where ye have been scattered, and I will give you the land of Israel.</VERS>\r\n      <VERS vnumber=\"18\">And they shall come thither, and they shall take away all the detestable things thereof and all the abominations thereof from thence.</VERS>\r\n      <VERS vnumber=\"19\">And 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 a heart of flesh;</VERS>\r\n      <VERS vnumber=\"20\">that 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.</VERS>\r\n      <VERS vnumber=\"21\">But as for them whose heart walketh after the heart of their detestable things and their abominations, I will bring their way upon their own heads, saith the Lord Jehovah.</VERS>\r\n      <VERS vnumber=\"22\">Then did the cherubim lift up their wings, and the wheels were beside them; and the glory of the God of Israel was over them above.</VERS>\r\n      <VERS vnumber=\"23\">And the glory of Jehovah went up from the midst of the city, and stood upon the mountain which is on the east side of the city.</VERS>\r\n      <VERS vnumber=\"24\">And the Spirit lifted me up, and brought me in the vision by the Spirit of God into Chaldea, to them of the captivity. So the vision that I had seen went up from me.</VERS>\r\n      <VERS vnumber=\"25\">Then I spake unto them of the captivity all the things that Jehovah had showed me.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">The word of Jehovah also came unto me, saying,</VERS>\r\n      <VERS vnumber=\"2\">Son of man, thou dwellest in the midst of the rebellious house, that have eyes to see, and see not, that have ears to hear, and hear not; for they are a rebellious house.</VERS>\r\n      <VERS vnumber=\"3\">Therefore, 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 are a rebellious house.</VERS>\r\n      <VERS vnumber=\"4\">And thou shalt bring forth thy stuff by day in their sight, as stuff for removing; and thou shalt go forth thyself at even in their sight, as when men go forth into exile.</VERS>\r\n      <VERS vnumber=\"5\">Dig thou through the wall in their sight, and carry out thereby.</VERS>\r\n      <VERS vnumber=\"6\">In their sight shalt thou bear it upon thy shoulder, and carry it forth in the dark; thou shalt cover thy face, that thou see not the land: for I have set thee for a sign unto the house of Israel.</VERS>\r\n      <VERS vnumber=\"7\">And I did so as I was commanded: I brought forth my stuff by day, as stuff for removing, and in the even I digged through the wall with my hand; I brought it forth in the dark, and bare it upon my shoulder in their sight.</VERS>\r\n      <VERS vnumber=\"8\">And in the morning came the word of Jehovah unto me, saying,</VERS>\r\n      <VERS vnumber=\"9\">Son of man, hath not the house of Israel, the rebellious house, said unto thee, What doest thou?</VERS>\r\n      <VERS vnumber=\"10\">Say thou unto them, Thus saith the Lord Jehovah: This burden [concerneth] the prince in Jerusalem, and all the house of Israel among whom they are.</VERS>\r\n      <VERS vnumber=\"11\">Say, I am your sign: like as I have done, so shall it be done unto them; they shall go into exile, into captivity.</VERS>\r\n      <VERS vnumber=\"12\">And the prince that is among them shall bear upon his shoulder in the dark, and shall go forth: they shall dig through the wall to carry out thereby: he shall cover his face, because he shall not see the land with his eyes.</VERS>\r\n      <VERS vnumber=\"13\">My 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.</VERS>\r\n      <VERS vnumber=\"14\">And I will scatter toward every wind all that are round about him to help him, and all his bands; and I will draw out the sword after them.</VERS>\r\n      <VERS vnumber=\"15\">And they shall know that I am Jehovah, when I shall disperse them among the nations, and scatter them through the countries.</VERS>\r\n      <VERS vnumber=\"16\">But 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 nations whither they come; and they shall know that I am Jehovah.</VERS>\r\n      <VERS vnumber=\"17\">Moreover the word of Jehovah came to me, saying,</VERS>\r\n      <VERS vnumber=\"18\">Son of man, eat thy bread with quaking, and drink thy water with trembling and with fearfulness;</VERS>\r\n      <VERS vnumber=\"19\">and say unto the people of the land, Thus saith the Lord Jehovah concerning the inhabitants of Jerusalem, and the land of Israel: They shall eat their bread with fearfulness, and drink their water in dismay, that her land may be desolate, [and despoiled] of all that is therein, because of the violence of all them that dwell therein.</VERS>\r\n      <VERS vnumber=\"20\">And the cities that are inhabited shall be laid waste, and the land shall be a desolation; and ye shall know that I am Jehovah.</VERS>\r\n      <VERS vnumber=\"21\">And the word of Jehovah came unto me, saying,</VERS>\r\n      <VERS vnumber=\"22\">Son of man, what is this proverb that ye have in the land of Israel, saying, The days are prolonged, and every vision faileth?</VERS>\r\n      <VERS vnumber=\"23\">Tell them therefore, Thus saith the Lord Jehovah: 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 fulfilment of every vision.</VERS>\r\n      <VERS vnumber=\"24\">For there shall be no more any false vision nor flattering divination within the house of Israel.</VERS>\r\n      <VERS vnumber=\"25\">For I am Jehovah; I will speak, and the word that I shall speak shall be performed; it shall be no more deferred: for in your days, O rebellious house, will I speak the word, and will perform it, saith the Lord Jehovah.</VERS>\r\n      <VERS vnumber=\"26\">Again the word of Jehovah came to me, saying,</VERS>\r\n      <VERS vnumber=\"27\">Son of man, behold, they of the house of Israel say, The vision that he seeth is for many day to come, and he prophesieth of times that are far off.</VERS>\r\n      <VERS vnumber=\"28\">Therefore say unto them, Thus saith the Lord Jehovah: There shall none of my words be deferred any more, but the word which I shall speak shall be performed, saith the Lord Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">And the word of Jehovah came unto me, saying,</VERS>\r\n      <VERS vnumber=\"2\">Son of man, prophesy against the prophets of Israel that prophesy, and say thou unto them that prophesy out of their own heart, Hear ye the word of Jehovah:</VERS>\r\n      <VERS vnumber=\"3\">Thus saith the Lord Jehovah, Woe unto the foolish prophets, that follow their own spirit, and have seen nothing!</VERS>\r\n      <VERS vnumber=\"4\">O Israel, thy prophets have been like foxes in the waste places.</VERS>\r\n      <VERS vnumber=\"5\">Ye have not gone up into the gaps, neither built up the wall for the house of Israel, to stand in the battle in the day of Jehovah.</VERS>\r\n      <VERS vnumber=\"6\">They have seen falsehood and lying divination, that say, Jehovah saith; but Jehovah hath not sent them: and they have made men to hope that the word would be confirmed.</VERS>\r\n      <VERS vnumber=\"7\">Have ye not seen a false vision, and have ye not spoken a lying divination, in that ye say, Jehovah saith; albeit I have not spoken?</VERS>\r\n      <VERS vnumber=\"8\">Therefore thus saith the Lord Jehovah: Because ye have spoken falsehood, and seen lies, therefore, behold, I am against you, saith the Lord Jehovah.</VERS>\r\n      <VERS vnumber=\"9\">And my hand shall be against the prophets that see false visions, and that divine lies: they shall not be in the council 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 Jehovah.</VERS>\r\n      <VERS vnumber=\"10\">Because, even because they have seduced my people, saying, Peace; and there is no peace; and when one buildeth up a wall, behold, they daub it with untempered [mortar]:</VERS>\r\n      <VERS vnumber=\"11\">say unto them that daub it with untempered [mortar], that it shall fall: there shall be an overflowing shower; and ye, O great hailstones, shall fall; and a stormy wind shall rend it.</VERS>\r\n      <VERS vnumber=\"12\">Lo, when the wall is fallen, shall it not be said unto you, Where is the daubing wherewith ye have daubed it?</VERS>\r\n      <VERS vnumber=\"13\">Therefore thus saith the Lord Jehovah: I will even rend it with a stormy wind in my wrath; and there shall be an overflowing shower in mine anger, and great hailstones in wrath to consume it.</VERS>\r\n      <VERS vnumber=\"14\">So will I break down the wall that ye have daubed with untempered [mortar], and bring it down to the ground, so that the foundation thereof shall be uncovered; and it shall fall, and ye shall be consumed in the midst thereof: and ye shall know that I am Jehovah.</VERS>\r\n      <VERS vnumber=\"15\">Thus will I accomplish my wrath upon the wall, and upon them that have daubed it with untempered [mortar]; and I will say unto you, The wall is no more, neither they that daubed it;</VERS>\r\n      <VERS vnumber=\"16\">[to wit], the prophets of Israel that prophesy concerning Jerusalem, and that see visions of peace for her, and there is no peace, saith the Lord Jehovah.</VERS>\r\n      <VERS vnumber=\"17\">And thou, son of man, set thy face against the daughters of thy people, that prophesy out of their own heart; and prophesy thou against them,</VERS>\r\n      <VERS vnumber=\"18\">and say, Thus saith the Lord Jehovah: Woe to the women that sew pillows upon all elbows, and make kerchiefs for the head of [persons of] every stature to hunt souls! Will ye hunt the souls of my people, and save souls alive for yourselves?</VERS>\r\n      <VERS vnumber=\"19\">And ye have profaned 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 hearken unto lies.</VERS>\r\n      <VERS vnumber=\"20\">Wherefore thus saith the Lord Jehovah: 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 I will let the souls go, even the souls that ye hunt to make [them] fly.</VERS>\r\n      <VERS vnumber=\"21\">Your 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 Jehovah.</VERS>\r\n      <VERS vnumber=\"22\">Because with lies ye have grieved the heart of the righteous, whom I have not made sad; and strengthened the hands of the wicked, that he should not return from his wicked way, and be saved alive:</VERS>\r\n      <VERS vnumber=\"23\">Therefore ye shall no more see false visions, nor divine divinations: and I will deliver my people out of your hand; and ye shall know that I am Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">Then came certain of the elders of Israel unto me, and sat before me.</VERS>\r\n      <VERS vnumber=\"2\">And the word of Jehovah came unto me, saying,</VERS>\r\n      <VERS vnumber=\"3\">Son of man, these men have taken their idols into their heart, and put the stumblingblock of their iniquity before their face: should I be inquired of at all by them?</VERS>\r\n      <VERS vnumber=\"4\">Therefore speak unto them, and say unto them, Thus saith the Lord Jehovah: Every man of the house of Israel that taketh his idols into his heart, and putteth the stumblingblock of his iniquity before his face, and cometh to the prophet; I Jehovah will answer him therein according to the multitude of his idols;</VERS>\r\n      <VERS vnumber=\"5\">that I may take the house of Israel in their own heart, because they are all estranged from me through their idols.</VERS>\r\n      <VERS vnumber=\"6\">Therefore say unto the house of Israel, Thus saith the Lord Jehovah: Return ye, and turn yourselves from your idols; and turn away your faces from all your abominations.</VERS>\r\n      <VERS vnumber=\"7\">For every one of the house of Israel, or of the strangers that sojourn in Israel, that separateth himself from me, and taketh his idols into his heart, and putteth the stumblingblock of his iniquity before his face, and cometh to the prophet to inquire for himself of me; I Jehovah will answer him by myself:</VERS>\r\n      <VERS vnumber=\"8\">and I will set my face against that man, and will make him an astonishment, for a sign and a proverb, and I will cut him off from the midst of my people; and ye shall know that I am Jehovah.</VERS>\r\n      <VERS vnumber=\"9\">And if the prophet be deceived and speak a word, I, Jehovah, have deceived that prophet, and I will stretch out my hand upon him, and will destroy him from the midst of my people Israel.</VERS>\r\n      <VERS vnumber=\"10\">And they shall bear their iniquity: the iniquity of the prophet shall be even as the iniquity of him that seeketh [unto him];</VERS>\r\n      <VERS vnumber=\"11\">that the house of Israel may go no more astray from me, neither defile themselves any more with all their transgressions; but that they may be my people, and I may be their God, saith the Lord Jehovah.</VERS>\r\n      <VERS vnumber=\"12\">And the word of Jehovah came unto me, saying,</VERS>\r\n      <VERS vnumber=\"13\">Son of man, when a land sinneth against me by committing a trespass, and I stretch out my hand upon it, and break the staff of the bread thereof, and send famine upon it, and cut off from it man and beast;</VERS>\r\n      <VERS vnumber=\"14\">though these three men, Noah, Daniel, and Job, were in it, they should deliver but their own souls by their righteousness, saith the Lord Jehovah.</VERS>\r\n      <VERS vnumber=\"15\">If I cause evil beasts to pass through the land, and they ravage it, and it be made desolate, so that no man may pass through because of the beasts;</VERS>\r\n      <VERS vnumber=\"16\">though these three men were in it, as I live, saith the Lord Jehovah, they should deliver neither sons nor daughters; they only should be delivered, but the land should be desolate.</VERS>\r\n      <VERS vnumber=\"17\">Or if I bring a sword upon that land, and say, Sword, go through the land; so that I cut off from it man and beast;</VERS>\r\n      <VERS vnumber=\"18\">though these three men were in it, as I live, saith the Lord Jehovah, they should deliver neither sons nor daughters, but they only should be delivered themselves.</VERS>\r\n      <VERS vnumber=\"19\">Or if I send a pestilence into that land, and pour out my wrath upon it in blood, to cut off from it man and beast;</VERS>\r\n      <VERS vnumber=\"20\">though Noah, Daniel, and Job, were in it, as I live, saith the Lord Jehovah, they should deliver neither son nor daughter; they should but deliver their own souls by their righteousness.</VERS>\r\n      <VERS vnumber=\"21\">For thus saith the Lord Jehovah: How much more when I send my four sore judgments upon Jerusalem, the sword, and the famine, and the evil beasts, and the pestilence, to cut off from it man and beast!</VERS>\r\n      <VERS vnumber=\"22\">Yet, behold, therein shall be left a remnant that shall be carried 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.</VERS>\r\n      <VERS vnumber=\"23\">And they shall comfort you, when ye see their way and their doings; and ye shall know that I have not done without cause all that I have done in it, saith the Lord Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">And the word of Jehovah came unto me, saying,</VERS>\r\n      <VERS vnumber=\"2\">Son of man, what is the vine-tree more than any tree, the vine-branch which is among the trees of the forest?</VERS>\r\n      <VERS vnumber=\"3\">Shall wood be taken thereof to make any work? or will men take a pin of it to hang any vessel thereon?</VERS>\r\n      <VERS vnumber=\"4\">Behold, it is cast into the fire for fuel; the fire hath devoured both the ends of it, and the midst of it is burned: is it profitable for any work?</VERS>\r\n      <VERS vnumber=\"5\">Behold, when it was whole, it was meet for no work: how much less, when the fire hath devoured it, and it is burned, shall it yet be meet for any work!</VERS>\r\n      <VERS vnumber=\"6\">Therefore thus saith the Lord Jehovah: 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.</VERS>\r\n      <VERS vnumber=\"7\">And I will set my face against them; they shall go forth from the fire, but the fire shall devour them; and ye shall know that I am Jehovah, when I set my face against them.</VERS>\r\n      <VERS vnumber=\"8\">And I will make the land desolate, because they have committed a trespass, saith the Lord Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">Again the word of Jehovah came unto me, saying,</VERS>\r\n      <VERS vnumber=\"2\">Son of man, cause Jerusalem to know her abominations;</VERS>\r\n      <VERS vnumber=\"3\">and say, Thus saith the Lord Jehovah unto Jerusalem: Thy birth and thy nativity is of the land of the Canaanite; the Amorite was thy father, and thy mother was a Hittite.</VERS>\r\n      <VERS vnumber=\"4\">And as for thy nativity, in the day thou wast born thy navel was not cut, neither wast thou washed in water to cleanse thee; thou wast not salted at all, nor swaddled at all.</VERS>\r\n      <VERS vnumber=\"5\">No eye pitied thee, to do any of these things unto thee, to have compassion upon thee; but thou wast cast out in the open field, for that thy person was abhorred, in the day that thou wast born.</VERS>\r\n      <VERS vnumber=\"6\">And when I passed by thee, and saw thee weltering in thy blood, I said unto thee, [Though thou art] in thy blood, live; yea, I said unto thee, [Though thou art] in thy blood, live.</VERS>\r\n      <VERS vnumber=\"7\">I caused thee to multiply as that which groweth in the field, and thou didst increase and wax great, and thou attainedst to excellent ornament; thy breasts were fashioned, and thy hair was grown; yet thou wast naked and bare.</VERS>\r\n      <VERS vnumber=\"8\">Now 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 Jehovah, and thou becamest mine.</VERS>\r\n      <VERS vnumber=\"9\">Then washed I thee with water; yea, I thoroughly washed away thy blood from thee, and I anointed thee with oil.</VERS>\r\n      <VERS vnumber=\"10\">I clothed thee also with broidered work, and shod thee with sealskin, and I girded thee about with fine linen, and covered thee with silk.</VERS>\r\n      <VERS vnumber=\"11\">And I decked thee with ornaments, and I put bracelets upon thy hands, and a chain on thy neck.</VERS>\r\n      <VERS vnumber=\"12\">And I put a ring upon thy nose, and ear-rings in thine ears, and a beautiful crown upon thy head.</VERS>\r\n      <VERS vnumber=\"13\">Thus 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 unto royal estate.</VERS>\r\n      <VERS vnumber=\"14\">And thy renown went forth among the nations for thy beauty; for it was perfect, through my majesty which I had put upon thee, saith the Lord Jehovah.</VERS>\r\n      <VERS vnumber=\"15\">But thou didst trust in thy beauty, and playedst the harlot because of thy renown, and pouredst out thy whoredoms on every one that passed by; his it was.</VERS>\r\n      <VERS vnumber=\"16\">And thou didst take of thy garments, and madest for thee high places decked with divers colors, and playedst the harlot upon them: [the like things] shall not come, neither shall it be [so].</VERS>\r\n      <VERS vnumber=\"17\">Thou didst also take thy fair jewels of my gold and of my silver, which I had given thee, and madest for thee images of men, and didst play the harlot with them;</VERS>\r\n      <VERS vnumber=\"18\">and thou tookest thy broidered garments, and coveredst them, and didst set mine oil and mine incense before them.</VERS>\r\n      <VERS vnumber=\"19\">My bread also which I gave thee, fine flour, and oil, and honey, wherewith I fed thee, thou didst even set it before them for a sweet savor; and [thus] it was, saith the Lord Jehovah.</VERS>\r\n      <VERS vnumber=\"20\">Moreover thou hast taken thy sons and thy daughters, whom thou hast borne unto me, and these hast thou sacrificed unto them to be devoured. Were thy whoredoms a small matter,</VERS>\r\n      <VERS vnumber=\"21\">that thou hast slain my children, and delivered them up, in causing them to pass through [the fire] unto them?</VERS>\r\n      <VERS vnumber=\"22\">And in all thine abominations and thy whoredoms thou hast not remembered the days of thy youth, when thou wast naked and bare, and wast weltering in thy blood.</VERS>\r\n      <VERS vnumber=\"23\">And it is come to pass after all thy wickedness, (woe, woe unto thee! saith the Lord Jehovah,)</VERS>\r\n      <VERS vnumber=\"24\">that thou hast built unto thee a vaulted place, and hast made thee a lofty place in every street.</VERS>\r\n      <VERS vnumber=\"25\">Thou hast built thy lofty place at the head of every way, and hast made thy beauty an abomination, and hast opened thy feet to every one that passed by, and multiplied thy whoredom.</VERS>\r\n      <VERS vnumber=\"26\">Thou hast also committed fornication with the Egyptians, thy neighbors, great of flesh; and hast multiplied thy whoredom, to provoke me to anger.</VERS>\r\n      <VERS vnumber=\"27\">Behold 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, that are ashamed of thy lewd way.</VERS>\r\n      <VERS vnumber=\"28\">Thou hast played the harlot also with the Assyrians, because thou wast insatiable; yea, thou hast played the harlot with them, and yet thou wast not satisfied.</VERS>\r\n      <VERS vnumber=\"29\">Thou hast moreover multiplied thy whoredom unto the land of traffic, unto Chaldea; and yet thou wast not satisfied herewith.</VERS>\r\n      <VERS vnumber=\"30\">How weak is thy heart, saith the Lord Jehovah, seeing thou doest all these things, the work of an impudent harlot;</VERS>\r\n      <VERS vnumber=\"31\">in that thou buildest thy vaulted place at the head of every way, and makest thy lofty place in every street, and hast not been as a harlot, in that thou scornest hire.</VERS>\r\n      <VERS vnumber=\"32\">A wife that committeth adultery! that taketh strangers instead of her husband!</VERS>\r\n      <VERS vnumber=\"33\">They give gifts to all harlots; but thou givest thy gifts to all thy lovers, and bribest them, that they may come unto thee on every side for thy whoredoms.</VERS>\r\n      <VERS vnumber=\"34\">And thou art different from [other] women in thy whoredoms, in that none followeth thee to play the harlot; and whereas thou givest hire, and no hire is given unto thee, therefore thou art different.</VERS>\r\n      <VERS vnumber=\"35\">Wherefore, O harlot, hear the word of Jehovah:</VERS>\r\n      <VERS vnumber=\"36\">Thus saith the Lord Jehovah, Because thy filthiness was poured out, and thy nakedness uncovered through thy whoredoms with thy lovers; and because of all the idols of thy abominations, and for the blood of thy children, that thou didst give unto them;</VERS>\r\n      <VERS vnumber=\"37\">therefore behold, 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 against thee on every side, and will uncover thy nakedness unto them, that they may see all thy nakedness.</VERS>\r\n      <VERS vnumber=\"38\">And I will judge thee, as women that break wedlock and shed blood are judged; and I will bring upon thee the blood of wrath and jealousy.</VERS>\r\n      <VERS vnumber=\"39\">I will also give thee into their hand, and they shall throw down thy vaulted place, and break down thy lofty places; and they shall strip thee of thy clothes, and take thy fair jewels; and they shall leave thee naked and bare.</VERS>\r\n      <VERS vnumber=\"40\">They shall also bring up a company against thee, and they shall stone thee with stones, and thrust thee through with their swords.</VERS>\r\n      <VERS vnumber=\"41\">And they shall burn thy 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 shalt also give no hire any more.</VERS>\r\n      <VERS vnumber=\"42\">So will I cause my wrath toward thee to rest, and my jealousy shall depart from thee, and I will be quiet, and will be no more angry.</VERS>\r\n      <VERS vnumber=\"43\">Because thou hast not remembered the days of thy youth, but hast raged against me in all these things; therefore, behold, I also will bring thy way upon thy head, saith the Lord Jehovah: and thou shalt not commit this lewdness with all thine abominations.</VERS>\r\n      <VERS vnumber=\"44\">Behold, every one that useth proverbs shall use [this] proverb against thee, saying, As is the mother, so is her daughter.</VERS>\r\n      <VERS vnumber=\"45\">Thou art the daughter of thy mother, that loatheth her husband and her children; and thou art the sister of thy sisters, who loathed their husbands and their children: your mother was a Hittite, and your father an Amorite.</VERS>\r\n      <VERS vnumber=\"46\">And thine elder sister is Samaria, that dwelleth at thy left hand, she and her daughters; and thy younger sister, that dwelleth at thy right hand, is Sodom and her daughters.</VERS>\r\n      <VERS vnumber=\"47\">Yet hast thou not walked in their ways, nor done after their abominations; but, as [if that were] a very little [thing], thou wast more corrupt than they in all thy ways.</VERS>\r\n      <VERS vnumber=\"48\">As I live, saith the Lord Jehovah, Sodom thy sister hath not done, she nor her daughters, as thou hast done, thou and thy daughters.</VERS>\r\n      <VERS vnumber=\"49\">Behold, this was the iniquity of thy sister Sodom: pride, fulness of bread, and prosperous ease was in her and in her daughters; neither did she strengthen the hand of the poor and needy.</VERS>\r\n      <VERS vnumber=\"50\">And they were haughty, and committed abomination before me: therefore I took them away as I saw [good].</VERS>\r\n      <VERS vnumber=\"51\">Neither hath Samaria committed half of thy sins; but thou hast multiplied thine abominations more than they, and hast justified thy sisters by all thine abominations which thou hast done.</VERS>\r\n      <VERS vnumber=\"52\">Thou also, bear thou thine own shame, in that thou hast given judgment for thy sisters; through thy sins that thou hast committed more abominable than they, they are more righteous that thou: yea, be thou also confounded, and bear thy shame, in that thou hast justified thy sisters.</VERS>\r\n      <VERS vnumber=\"53\">And I will turn again their captivity, the captivity of Sodom and her daughters, and the captivity of Samaria and her daughters, and the captivity of thy captives in the midst of them;</VERS>\r\n      <VERS vnumber=\"54\">that thou mayest bear thine own shame, and mayest be ashamed because of all that thou hast done, in that thou art a comfort unto them.</VERS>\r\n      <VERS vnumber=\"55\">And thy sisters, Sodom and her daughters, shall return to their former estate; and Samaria and her daughters shall return to their former estate; and thou and thy daughters shall return to your former estate.</VERS>\r\n      <VERS vnumber=\"56\">For thy sister Sodom was not mentioned by thy mouth in the day of thy pride,</VERS>\r\n      <VERS vnumber=\"57\">before thy wickedness was uncovered, as at the time of the reproach of the daughters of Syria, and of all that are round about her, the daughters of the Philistines, that do despite unto thee round about.</VERS>\r\n      <VERS vnumber=\"58\">Thou hast borne thy lewdness and thine abominations, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"59\">For thus saith the Lord Jehovah: I will also deal with thee as thou hast done, who hast despised the oath in breaking the covenant.</VERS>\r\n      <VERS vnumber=\"60\">Nevertheless I will remember my covenant with thee in the days of thy youth, and I will establish unto thee an everlasting covenant.</VERS>\r\n      <VERS vnumber=\"61\">Then shalt thou remember thy ways, and be ashamed, when thou shalt receive thy sisters, thine elder [sisters] and thy younger; and I will give them unto thee for daughters, but not by thy covenant.</VERS>\r\n      <VERS vnumber=\"62\">And I will establish my covenant with thee; and thou shalt know that I am Jehovah;</VERS>\r\n      <VERS vnumber=\"63\">that thou mayest remember, and be confounded, and never open thy mouth any more, because of thy shame, when I have forgiven thee all that thou hast done, saith the Lord Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"17\">\r\n      <VERS vnumber=\"1\">And the word of Jehovah came unto me, saying,</VERS>\r\n      <VERS vnumber=\"2\">Son of man, put forth a riddle, and speak a parable unto the house of Israel;</VERS>\r\n      <VERS vnumber=\"3\">and say, Thus saith the Lord Jehovah: A great eagle with great wings and long pinions, full of feathers, which had divers colors, came unto Lebanon, and took the top of the cedar:</VERS>\r\n      <VERS vnumber=\"4\">he cropped off the topmost of the young twigs thereof, and carried it unto a land of traffic; he set it in a city of merchants.</VERS>\r\n      <VERS vnumber=\"5\">He took also of the seed of the land, and planted it in a fruitful soil; he placed it beside many waters; he set it as a willow-tree.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">There was also another great eagle with great wings and many feathers: and, behold, this vine did bend its roots toward him, and shot forth its branches toward him, from the beds of its plantation, that he might water it.</VERS>\r\n      <VERS vnumber=\"8\">It was planted in a good soil by many waters, that it might bring forth branches, and that it might bear fruit, that it might be a goodly vine.</VERS>\r\n      <VERS vnumber=\"9\">Say thou, Thus saith the Lord Jehovah: Shall it prosper? shall he not pull up the roots thereof, and cut off the fruit thereof, that it may wither; that all its fresh springing leaves may wither? and not by a strong arm or much people can it be raised from the roots thereof.</VERS>\r\n      <VERS vnumber=\"10\">Yea, behold, being planted, shall it prosper? shall it not utterly wither, when the east wind toucheth it? it shall wither in the beds where it grew.</VERS>\r\n      <VERS vnumber=\"11\">Moreover the word of Jehovah came unto me, saying,</VERS>\r\n      <VERS vnumber=\"12\">Say now to the rebellious house, Know ye not what these things mean? tell them, Behold, the king of Babylon came to Jerusalem, and took the king thereof, and the princes thereof, and brought them to him to Babylon:</VERS>\r\n      <VERS vnumber=\"13\">and he took of the seed royal, and made a covenant with him; he also brought him under an oath, and took away the mighty of the land;</VERS>\r\n      <VERS vnumber=\"14\">that the kingdom might be base, that it might not lift itself up, but that by keeping his covenant it might stand.</VERS>\r\n      <VERS vnumber=\"15\">But 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? shall he break the covenant, and yet escape?</VERS>\r\n      <VERS vnumber=\"16\">As I live, saith the Lord Jehovah, 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.</VERS>\r\n      <VERS vnumber=\"17\">Neither shall Pharaoh with his mighty army and great company help him in the war, when they cast up mounds and build forts, to cut off many persons.</VERS>\r\n      <VERS vnumber=\"18\">For he hath despised the oath by breaking the covenant; and behold, he had given his hand, and yet hath done all these things; he shall not escape.</VERS>\r\n      <VERS vnumber=\"19\">Therefore thus saith the Lord Jehovah: As I live, surely mine oath that he hath despised, and my covenant that he hath broken, I will even bring it upon his own head.</VERS>\r\n      <VERS vnumber=\"20\">And I will spread my net upon him, and he shall be taken in my snare, and I will bring him to Babylon, and will enter into judgment with him there for his trespass that he hath trespassed against me.</VERS>\r\n      <VERS vnumber=\"21\">And all his fugitives in all his bands shall fall by the sword, and they that remain shall be scattered toward every wind: and ye shall know that I, Jehovah, have spoken it.</VERS>\r\n      <VERS vnumber=\"22\">Thus saith the Lord Jehovah: I will also take of the lofty top of the cedar, and will set it; I will crop off from the topmost of its young twigs a tender one, and I will plant it upon a high and lofty mountain:</VERS>\r\n      <VERS vnumber=\"23\">in 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 birds of every wing; in the shade of the branches thereof shall they dwell.</VERS>\r\n      <VERS vnumber=\"24\">And all the trees of the field shall know that I, Jehovah, 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, Jehovah, have spoken and have done it.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"18\">\r\n      <VERS vnumber=\"1\">The word of Jehovah came unto me again, saying,</VERS>\r\n      <VERS vnumber=\"2\">What 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?</VERS>\r\n      <VERS vnumber=\"3\">As I live, saith the Lord Jehovah, ye shall not have [occasion] any more to use this proverb in Israel.</VERS>\r\n      <VERS vnumber=\"4\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"5\">But if a man be just, and do that which is lawful and right,</VERS>\r\n      <VERS vnumber=\"6\">and hath not eaten upon the mountains, neither hath lifted up his eyes to the idols of the house of Israel, neither hath defiled his neighbor`s wife, neither hath come near to a woman in her impurity,</VERS>\r\n      <VERS vnumber=\"7\">and hath not wronged any, but hath restored to the debtor his pledge, hath taken nought by robbery, hath given his bread to the hungry, and hath covered the naked with a garment;</VERS>\r\n      <VERS vnumber=\"8\">he that hath not given forth upon interest, neither hath taken any increase, that hath withdrawn his hand from iniquity, hath executed true justice between man and man,</VERS>\r\n      <VERS vnumber=\"9\">hath walked in my statutes, and hath kept mine ordinances, to deal truly; he is just, he shall surely live, saith the Lord Jehovah.</VERS>\r\n      <VERS vnumber=\"10\">If he beget a son that is a robber, a shedder of blood, and that doeth any one of these things,</VERS>\r\n      <VERS vnumber=\"11\">and that doeth not any of those [duties], but even hath eaten upon the mountains, and defiled his neighbor`s wife,</VERS>\r\n      <VERS vnumber=\"12\">hath wronged the poor and needy, hath taken by robbery, hath not restored the pledge, and hath lifted up his eyes to the idols, hath committed abomination,</VERS>\r\n      <VERS vnumber=\"13\">hath given forth upon interest, 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.</VERS>\r\n      <VERS vnumber=\"14\">Now, lo, if he beget a son, that seeth all his father`s sins, which he hath done, and feareth, and doeth not such like;</VERS>\r\n      <VERS vnumber=\"15\">that hath not eaten upon the mountains, neither hath lifted up his eyes to the idols of the house of Israel, hath not defiled his neighbor`s wife,</VERS>\r\n      <VERS vnumber=\"16\">neither hath wronged any, hath not taken aught to pledge, neither hath taken by robbery, but hath given his bread to the hungry, and hath covered the naked with a garment;</VERS>\r\n      <VERS vnumber=\"17\">that hath withdrawn his hand from the poor, that hath not received interest nor increase, hath executed mine ordinances, hath walked in my statutes; he shall not die for the iniquity of his father, he shall surely live.</VERS>\r\n      <VERS vnumber=\"18\">As for his father, because he cruelly oppressed, robbed his brother, and did that which is not good among his people, behold, he shall die in his iniquity.</VERS>\r\n      <VERS vnumber=\"19\">Yet say ye, Wherefore 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.</VERS>\r\n      <VERS vnumber=\"20\">The 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.</VERS>\r\n      <VERS vnumber=\"21\">But if the wicked 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.</VERS>\r\n      <VERS vnumber=\"22\">None of his transgressions that he hath committed shall be remembered against him: in his righteousness that he hath done he shall live.</VERS>\r\n      <VERS vnumber=\"23\">Have I any pleasure in the death of the wicked? saith the Lord Jehovah; and not rather that he should return from his way, and live?</VERS>\r\n      <VERS vnumber=\"24\">But 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? None of his righteous deeds that he hath done shall be remembered: in his trespass that he hath trespassed, and in his sin that he hath sinned, in them shall he die.</VERS>\r\n      <VERS vnumber=\"25\">Yet 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?</VERS>\r\n      <VERS vnumber=\"26\">When the righteous man turneth away from his righteousness, and committeth iniquity, and dieth therein; in his iniquity that he hath done shall he die.</VERS>\r\n      <VERS vnumber=\"27\">Again, 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.</VERS>\r\n      <VERS vnumber=\"28\">Because he considereth, and turneth away from all his transgressions that he hath committed, he shall surely live, he shall not die.</VERS>\r\n      <VERS vnumber=\"29\">Yet 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?</VERS>\r\n      <VERS vnumber=\"30\">Therefore I will judge you, O house of Israel, every one according to his ways, saith the Lord Jehovah. Return ye, and turn yourselves from all your transgressions; so iniquity shall not be your ruin.</VERS>\r\n      <VERS vnumber=\"31\">Cast away from you all your transgressions, wherein ye have transgressed; and make you a new heart and a new spirit: for why will ye die, O house of Israel?</VERS>\r\n      <VERS vnumber=\"32\">For I have no pleasure in the death of him that dieth, saith the Lord Jehovah: wherefore turn yourselves, and live.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"19\">\r\n      <VERS vnumber=\"1\">Moreover, take thou up a lamentation for the princes of Israel,</VERS>\r\n      <VERS vnumber=\"2\">and say, What was thy mother? A lioness: she couched among lions, in the midst of the young lions she nourished her whelps.</VERS>\r\n      <VERS vnumber=\"3\">And she brought up one of her whelps: he became a young lion, and he learned to catch the prey; he devoured men.</VERS>\r\n      <VERS vnumber=\"4\">The nations also heard of him; he was taken in their pit; and they brought him with hooks unto the land of Egypt.</VERS>\r\n      <VERS vnumber=\"5\">Now 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.</VERS>\r\n      <VERS vnumber=\"6\">And he went up and down among the lions; he became a young lion, and he learned to catch the prey; he devoured men.</VERS>\r\n      <VERS vnumber=\"7\">And he knew their palaces, and laid waste their cities; and the land was desolate, and the fulness thereof, because of the noise of his roaring.</VERS>\r\n      <VERS vnumber=\"8\">Then the nations set against him on every side from the provinces; and they spread their net over him; he was taken in their pit.</VERS>\r\n      <VERS vnumber=\"9\">And they put him in a cage with hooks, and brought him to the king of Babylon; they brought him into strongholds, that his voice should no more be heard upon the mountains of Israel.</VERS>\r\n      <VERS vnumber=\"10\">Thy mother was like a vine, in thy blood, planted by the waters: it was fruitful and full of branches by reason of many waters.</VERS>\r\n      <VERS vnumber=\"11\">And it had strong rods for the sceptres of them that bare rule, and their stature was exalted among the thick boughs, and they were seen in their height with the multitude of their branches.</VERS>\r\n      <VERS vnumber=\"12\">But it was plucked up in fury, it was cast down to the ground, and the east wind dried up its fruit: its strong rods were broken off and withered; the fire consumed them.</VERS>\r\n      <VERS vnumber=\"13\">And now it is planted in the wilderness, in a dry and thirsty land.</VERS>\r\n      <VERS vnumber=\"14\">And fire is gone out of the rods of its branches, it hath devoured its fruit, so that there is in it no strong rod to be a sceptre to rule. This is a lamentation, and shall be for a lamentation.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"20\">\r\n      <VERS vnumber=\"1\">And 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 inquire of Jehovah, and sat before me.</VERS>\r\n      <VERS vnumber=\"2\">And the word of Jehovah came unto me, saying,</VERS>\r\n      <VERS vnumber=\"3\">Son of man, speak unto the elders of Israel, and say unto them, Thus saith the Lord Jehovah: Is it to inquire of me that ye are come? As I live, saith the Lord Jehovah, I will not be inquired of by you.</VERS>\r\n      <VERS vnumber=\"4\">Wilt thou judge them, son of man, wilt thou judge them? Cause them to know the abominations of their fathers;</VERS>\r\n      <VERS vnumber=\"5\">and say unto them, Thus saith the Lord Jehovah: In the day when I chose Israel, and sware unto the seed of the house of Jacob, and made myself known unto them in the land of Egypt, when I sware unto them, saying, I am Jehovah your God;</VERS>\r\n      <VERS vnumber=\"6\">in that day I sware unto them, to bring them forth out of the land of Egypt into a land that I had searched out for them, flowing with milk and honey, which is the glory of all lands.</VERS>\r\n      <VERS vnumber=\"7\">And I said unto them, Cast ye away every man the abominations of his eyes, and defile not yourselves with the idols of Egypt; I am Jehovah your God.</VERS>\r\n      <VERS vnumber=\"8\">But 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 would pour out my wrath upon them, to accomplish my anger against them in the midst of the land of Egypt.</VERS>\r\n      <VERS vnumber=\"9\">But I wrought for my name`s sake, that it should not be profaned in the sight of the nations, among which they were, in whose sight I made myself known unto them, in bringing them forth out of the land of Egypt.</VERS>\r\n      <VERS vnumber=\"10\">So I caused them to go forth out of the land of Egypt, and brought them into the wilderness.</VERS>\r\n      <VERS vnumber=\"11\">And I gave them my statutes, and showed them mine ordinances, which if a man do, he shall live in them.</VERS>\r\n      <VERS vnumber=\"12\">Moreover also I gave them my sabbaths, to be a sign between me and them, that they might know that I am Jehovah that sanctifieth them.</VERS>\r\n      <VERS vnumber=\"13\">But the house of Israel rebelled against me in the wilderness: they walked not in my statutes, and they rejected mine ordinances, which if a man keep, he shall live in them; and my sabbaths they greatly profaned. Then I said I would pour out my wrath upon them in the wilderness, to consume them.</VERS>\r\n      <VERS vnumber=\"14\">But I wrought for my name`s sake, that it should not be profaned in the sight of the nations, in whose sight I brought them out.</VERS>\r\n      <VERS vnumber=\"15\">Moreover also I sware 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;</VERS>\r\n      <VERS vnumber=\"16\">because they rejected mine ordinances, and walked not in my statutes, and profaned my sabbaths: for their heart went after their idols.</VERS>\r\n      <VERS vnumber=\"17\">Nevertheless mine eye spared them, and I destroyed them not, neither did I make a full end of them in the wilderness.</VERS>\r\n      <VERS vnumber=\"18\">And I said unto their children in the wilderness, Walk ye not in the statutes of your fathers, neither observe their ordinances, nor defile yourselves with their idols.</VERS>\r\n      <VERS vnumber=\"19\">I am Jehovah your God: walk in my statutes, and keep mine ordinances, and do them;</VERS>\r\n      <VERS vnumber=\"20\">and hallow my sabbaths; and they shall be a sign between me and you, that ye may know that I am Jehovah your God.</VERS>\r\n      <VERS vnumber=\"21\">But the children rebelled against me; they walked not in my statutes, neither kept mine ordinances to do them, which if a man do, he shall live in them; they profaned my sabbaths. Then I said I would pour out my wrath upon them, to accomplish my anger against them in the wilderness.</VERS>\r\n      <VERS vnumber=\"22\">Nevertheless I withdrew my hand, and wrought for my name`s sake, that it should not be profaned in the sight of the nations, in whose sight I brought them forth.</VERS>\r\n      <VERS vnumber=\"23\">Moreover I sware unto them in the wilderness, that I would scatter them among the nations, and disperse them through the countries;</VERS>\r\n      <VERS vnumber=\"24\">because they had not executed mine ordinances, but had rejected my statutes, and had profaned my sabbaths, and their eyes were after their fathers` idols.</VERS>\r\n      <VERS vnumber=\"25\">Moreover also I gave them statutes that were not good, and ordinances wherein they should not live;</VERS>\r\n      <VERS vnumber=\"26\">and 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 Jehovah.</VERS>\r\n      <VERS vnumber=\"27\">Therefore, son of man, speak unto the house of Israel, and say unto them, Thus saith the Lord Jehovah: In this moreover have your fathers blasphemed me, in that they have committed a trespass against me.</VERS>\r\n      <VERS vnumber=\"28\">For when I had brought them into the land, which I sware to give unto them, then they saw every high hill, and every thick tree, and they offered there their sacrifices, and there they presented the provocation of their offering; there also they made their sweet savor, and they poured out there their drink-offerings.</VERS>\r\n      <VERS vnumber=\"29\">Then I said unto them, What meaneth the high place whereunto ye go? So the name thereof is called Bamah unto this day.</VERS>\r\n      <VERS vnumber=\"30\">Wherefore say unto the house of Israel, Thus saith the Lord Jehovah: Do ye pollute yourselves after the manner of your fathers? and play ye the harlot after their abominations?</VERS>\r\n      <VERS vnumber=\"31\">and when ye offer your gifts, when ye make your sons to pass through the fire, do ye pollute yourselves with all your idols unto this day? and shall I be inquired of by you, O house of Israel? As I live, saith the Lord Jehovah, I will not be inquired of by you;</VERS>\r\n      <VERS vnumber=\"32\">and that which cometh into your mind shall not be at all, in that ye say, We will be as the nations, as the families of the countries, to serve wood and stone.</VERS>\r\n      <VERS vnumber=\"33\">As I live, saith the Lord Jehovah, surely with a mighty hand, and with an outstretched arm, and with wrath poured out, will I be king over you:</VERS>\r\n      <VERS vnumber=\"34\">and I will bring you out from the peoples, and will gather you out of the countries wherein ye are scattered, with a mighty hand, and with an outstretched arm, and with wrath poured out;</VERS>\r\n      <VERS vnumber=\"35\">and I will bring you into the wilderness of the peoples, and there will I enter into judgment with you face to face.</VERS>\r\n      <VERS vnumber=\"36\">Like as I entered into judgment with your fathers in the wilderness of the land of Egypt, so will I enter into judgment with you, saith the Lord Jehovah.</VERS>\r\n      <VERS vnumber=\"37\">And I will cause you to pass under the rod, and I will bring you into the bond of the covenant;</VERS>\r\n      <VERS vnumber=\"38\">and I will purge out from among you the rebels, and them that transgress against me; I will bring them forth out of the land where they sojourn, but they shall not enter into the land of Israel: and ye shall know that I am Jehovah.</VERS>\r\n      <VERS vnumber=\"39\">As for you, O house of Israel, thus saith the Lord Jehovah: Go ye, serve every one his idols, and hereafter also, if ye will not hearken unto me; but my holy name shall ye no more profane with your gifts, and with your idols.</VERS>\r\n      <VERS vnumber=\"40\">For in my holy mountain, in the mountain of the height of Israel, saith the Lord Jehovah, there shall all the house of Israel, all of them, serve me in the land: there will I accept them, and there will I require your offerings, and the first-fruits of your oblations, with all your holy things.</VERS>\r\n      <VERS vnumber=\"41\">As a sweet savor will I accept you, when I bring you out from the peoples, and gather you out of the countries wherein ye have been scattered; and I will be sanctified in you in the sight of the nations.</VERS>\r\n      <VERS vnumber=\"42\">And ye shall know that I am Jehovah, when I shall bring you into the land of Israel, into the country which I sware to give unto your fathers.</VERS>\r\n      <VERS vnumber=\"43\">And there shall ye remember your ways, and all your doings, wherein ye have polluted yourselves; and ye shall loathe yourselves in your own sight for all your evils that ye have committed.</VERS>\r\n      <VERS vnumber=\"44\">And ye shall know that I am Jehovah, when I have dealt with you for my name`s sake, not according to your evil ways, nor according to your corrupt doings, O ye house of Israel, saith the Lord Jehovah.</VERS>\r\n      <VERS vnumber=\"45\">And the word of Jehovah came unto me, saying,</VERS>\r\n      <VERS vnumber=\"46\">Son of man, set thy face toward the south, and drop [thy word] toward the south, and prophesy against the forest of the field in the South;</VERS>\r\n      <VERS vnumber=\"47\">and say to the forest of the South, Hear the word of Jehovah: Thus saith the Lord Jehovah, 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 burnt thereby.</VERS>\r\n      <VERS vnumber=\"48\">And all flesh shall see that I, Jehovah, have kindled it; it shall not be quenched.</VERS>\r\n      <VERS vnumber=\"49\">Then said I, Ah Lord Jehovah! they say of me, Is he not a speaker of parables?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"21\">\r\n      <VERS vnumber=\"1\">And the word of Jehovah came unto me, saying,</VERS>\r\n      <VERS vnumber=\"2\">Son of man, set thy face toward Jerusalem, and drop [thy word] toward the sanctuaries, and prophesy against the land of Israel;</VERS>\r\n      <VERS vnumber=\"3\">and say to the land of Israel, Thus saith Jehovah: Behold, I am against thee, and will draw forth my sword out of its sheath, and will cut off from thee the righteous and the wicked.</VERS>\r\n      <VERS vnumber=\"4\">Seeing then that I will cut off from thee the righteous and the wicked, therefore shall my sword go forth out of its sheath against all flesh from the south to the north:</VERS>\r\n      <VERS vnumber=\"5\">and all flesh shall know that I, Jehovah, have drawn forth my sword out of its sheath; it shall not return any more.</VERS>\r\n      <VERS vnumber=\"6\">Sigh therefore, thou son of man; with the breaking of thy loins and with bitterness shalt thou sigh before their eyes.</VERS>\r\n      <VERS vnumber=\"7\">And it shall be, when they say unto thee, Wherefore sighest thou? that thou shalt say, Because of the tidings, for 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 it shall be done, saith the Lord Jehovah.</VERS>\r\n      <VERS vnumber=\"8\">And the word of Jehovah came unto me, saying,</VERS>\r\n      <VERS vnumber=\"9\">Son of man, prophesy, and say, Thus saith Jehovah: Say, A sword, a sword, it is sharpened, and also furbished;</VERS>\r\n      <VERS vnumber=\"10\">it is sharpened that it may make a slaughter; it is furbished that it may be as lightning: shall we then make mirth? the rod of my son, it contemneth every tree.</VERS>\r\n      <VERS vnumber=\"11\">And it is given to be furbished, that it may be handled: the sword, it is sharpened, yea, it is furbished, to give it into the hand of the slayer.</VERS>\r\n      <VERS vnumber=\"12\">Cry and wail, son of man; for it is upon my people, it is upon all the princes of Israel: they are delivered over to the sword with my people; smite therefore upon thy thigh.</VERS>\r\n      <VERS vnumber=\"13\">For there is a trial; and what if even the rod that contemneth shall be no more? saith the Lord Jehovah.</VERS>\r\n      <VERS vnumber=\"14\">Thou therefore, son of man, prophesy, and smite thy hands together; and let the sword be doubled the third time, the sword of the deadly wounded: it is the sword of the great one that is deadly wounded, which entereth into their chambers.</VERS>\r\n      <VERS vnumber=\"15\">I have set the threatening sword against all their gates, that their heart may melt, and their stumblings be multiplied: ah! it is made as lightning, it is pointed for slaughter.</VERS>\r\n      <VERS vnumber=\"16\">Gather thee together, go to the right, set thyself in array, go to the left, whithersoever thy face is set.</VERS>\r\n      <VERS vnumber=\"17\">I will also smite my hands together, and I will cause my wrath to rest: I, Jehovah, have spoken it.</VERS>\r\n      <VERS vnumber=\"18\">The word of Jehovah came unto me again, saying,</VERS>\r\n      <VERS vnumber=\"19\">Also, thou son of man, appoint thee two ways, that the sword of the king of Babylon may come; they twain shall come forth out of one land: and mark out a place, mark it out at the head of the way to the city.</VERS>\r\n      <VERS vnumber=\"20\">Thou shalt appoint a way for the sword to come to Rabbah of the children of Ammon, and to Judah in Jerusalem the fortified.</VERS>\r\n      <VERS vnumber=\"21\">For the king of Babylon stood at the parting of the way, at the head of the two ways, to use divination: he shook the arrows to and fro, he consulted the teraphim, he looked in the liver.</VERS>\r\n      <VERS vnumber=\"22\">In his right hand was the divination [for] Jerusalem, to set battering rams, to open the mouth in the slaughter, to lift up the voice with shouting, to set battering rams against the gates, to cast up mounds, to build forts.</VERS>\r\n      <VERS vnumber=\"23\">And it shall be unto them as a false divination in their sight, who have sworn oaths unto them; but he bringeth iniquity to remembrance, that they may be taken.</VERS>\r\n      <VERS vnumber=\"24\">Therefore thus saith the Lord Jehovah: Because ye have made your iniquity to be remembered, in that your transgressions are uncovered, so that in all your doings your sins do appear; because that ye are come to remembrance, ye shall be taken with the hand.</VERS>\r\n      <VERS vnumber=\"25\">And thou, O deadly wounded wicked one, the prince of Israel, whose day is come, in the time of the iniquity of the end,</VERS>\r\n      <VERS vnumber=\"26\">thus saith the Lord Jehovah: Remove the mitre, and take off the crown; this [shall be] no more the same; exalt that which is low, and abase that which is high.</VERS>\r\n      <VERS vnumber=\"27\">I will overturn, overturn, overturn it: this also shall be no more, until he come whose right it is; and I will give it [him].</VERS>\r\n      <VERS vnumber=\"28\">And thou, son of man, prophesy, and say, Thus saith the Lord Jehovah concerning the children of Ammon, and concerning their reproach; and say thou, A sword, a sword is drawn, for the slaughter it is furbished, to cause it to devour, that it may be as lightning;</VERS>\r\n      <VERS vnumber=\"29\">while they see for thee false visions, while they divine lies unto thee, to lay thee upon the necks of the wicked that are deadly wounded, whose day is come in the time of the iniquity of the end.</VERS>\r\n      <VERS vnumber=\"30\">Cause it to return into its sheath. In the place where thou wast created, in the land of thy birth, will I judge thee.</VERS>\r\n      <VERS vnumber=\"31\">And I will pour out mine indignation upon thee; I will blow upon thee with the fire of my wrath; and I will deliver thee into the hand of brutish men, skilful to destroy.</VERS>\r\n      <VERS vnumber=\"32\">Thou 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, Jehovah, have spoken it.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"22\">\r\n      <VERS vnumber=\"1\">Moreover the word of Jehovah came unto me, saying,</VERS>\r\n      <VERS vnumber=\"2\">And thou, son of man, wilt thou judge, wilt thou judge the bloody city? then cause her to know all her abominations.</VERS>\r\n      <VERS vnumber=\"3\">And thou shalt say, Thus saith the Lord Jehovah: A city that sheddeth blood in the midst of her, that her time may come, and that maketh idols against herself to defile her!</VERS>\r\n      <VERS vnumber=\"4\">Thou art become guilty in thy blood that thou hast shed, and art defiled 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 nations, and a mocking to all the countries.</VERS>\r\n      <VERS vnumber=\"5\">Those that are near, and those that are far from thee, shall mock thee, thou infamous one [and] full of tumult.</VERS>\r\n      <VERS vnumber=\"6\">Behold, the princes of Israel, every one according to his power, have been in thee to shed blood.</VERS>\r\n      <VERS vnumber=\"7\">In thee have they set light by father and mother; in the midst of thee have they dealt by oppression with the sojourner; in thee have they wronged the fatherless and the widow.</VERS>\r\n      <VERS vnumber=\"8\">Thou hast despised my holy things, and hast profaned my sabbaths.</VERS>\r\n      <VERS vnumber=\"9\">Slanderous men have been in thee to shed blood; and in thee they have eaten upon the mountains: in the midst of thee they have committed lewdness.</VERS>\r\n      <VERS vnumber=\"10\">In thee have they uncovered their fathers` nakedness; in thee have they humbled her that was unclean in her impurity.</VERS>\r\n      <VERS vnumber=\"11\">And one hath committed abomination with his neighbor`s wife; and another hath lewdly defiled his daughter-in-law; and another in thee hath humbled his sister, his father`s daughter.</VERS>\r\n      <VERS vnumber=\"12\">In thee have they taken bribes to shed blood; thou hast taken interest and increase, and thou hast greedily gained of thy neighbors by oppression, and hast forgotten me, saith the Lord Jehovah.</VERS>\r\n      <VERS vnumber=\"13\">Behold, therefore, I have smitten my hand at thy dishonest gain which thou hast made, and at thy blood which hath been in the midst of thee.</VERS>\r\n      <VERS vnumber=\"14\">Can thy heart endure, or can thy hands be strong, in the days that I shall deal with thee? I, Jehovah, have spoken it, and will do it.</VERS>\r\n      <VERS vnumber=\"15\">And I will scatter thee among the nations, and disperse thee through the countries; and I will consume thy filthiness out of thee.</VERS>\r\n      <VERS vnumber=\"16\">And thou shalt be profaned in thyself, in the sight of the nations; and thou shalt know that I am Jehovah.</VERS>\r\n      <VERS vnumber=\"17\">And the word of Jehovah came unto me, saying,</VERS>\r\n      <VERS vnumber=\"18\">Son of man, the house of Israel is become dross unto me: all of them are brass and tin and iron and lead, in the midst of the furnace; they are the dross of silver.</VERS>\r\n      <VERS vnumber=\"19\">Therefore thus saith the Lord Jehovah: Because ye are all become dross, therefore, behold, I will gather you into the midst of Jerusalem.</VERS>\r\n      <VERS vnumber=\"20\">As 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 wrath, and I will lay you there, and melt you.</VERS>\r\n      <VERS vnumber=\"21\">Yea, I will gather you, and blow upon you with the fire of my wrath, and ye shall be melted in the midst thereof.</VERS>\r\n      <VERS vnumber=\"22\">As silver is melted in the midst of the furnace, so shall ye be melted in the midst thereof; and ye shall know that I, Jehovah, have poured out my wrath upon you.</VERS>\r\n      <VERS vnumber=\"23\">And the word of Jehovah came unto me, saying,</VERS>\r\n      <VERS vnumber=\"24\">Son of man, say unto her, Thou art a land that is not cleansed, nor rained upon in the day of indignation.</VERS>\r\n      <VERS vnumber=\"25\">There is a conspiracy of her prophets in the midst thereof, like a roaring lion ravening the prey: they have devoured souls; they take treasure and precious things; they have made her widows many in the midst thereof.</VERS>\r\n      <VERS vnumber=\"26\">Her priests have done violence to my law, and have profaned my holy things: they have made no distinction between the holy and the common, neither have they caused men to discern between the unclean and the clean, and have hid their eyes from my sabbaths, and I am profaned among them.</VERS>\r\n      <VERS vnumber=\"27\">Her princes in the midst thereof are like wolves ravening the prey, to shed blood, [and] to destroy souls, that they may get dishonest gain.</VERS>\r\n      <VERS vnumber=\"28\">And her prophets have daubed for them with untempered [mortar], seeing false visions, and divining lies unto them, saying, Thus saith the Lord Jehovah, when Jehovah hath not spoken.</VERS>\r\n      <VERS vnumber=\"29\">The people of the land have used oppression, and exercised robbery; yea, they have vexed the poor and needy, and have oppressed the sojourner wrongfully.</VERS>\r\n      <VERS vnumber=\"30\">And I sought for a man among them, that should build up the wall, and stand in the gap before me for the land, that I should not destroy it; but I found none.</VERS>\r\n      <VERS vnumber=\"31\">Therefore have I poured out mine indignation upon them; I have consumed them with the fire of my wrath: their own way have I brought upon their heads, saith the Lord Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"23\">\r\n      <VERS vnumber=\"1\">The word of Jehovah came again unto me, saying,</VERS>\r\n      <VERS vnumber=\"2\">Son of man, there were two women, the daughters of one mother:</VERS>\r\n      <VERS vnumber=\"3\">and they played the harlot in Egypt; they played the harlot in their youth; there were their breasts pressed, and there was handled the bosom of their virginity.</VERS>\r\n      <VERS vnumber=\"4\">And the names of them were Oholah the elder, and Oholibah her sister: and they became mine, and they bare sons and daughters. And as for their names, Samaria is Oholah, and Jerusalem Oholibah.</VERS>\r\n      <VERS vnumber=\"5\">And Oholah played the harlot when she was mine; and she doted on her lovers, on the Assyrians [her] neighbors,</VERS>\r\n      <VERS vnumber=\"6\">who were clothed with blue, governors and rulers, all of them desirable young men, horsemen riding upon horses.</VERS>\r\n      <VERS vnumber=\"7\">And she bestowed her whoredoms upon them, the choicest men of Assyria all of them; and on whomsoever she doted, with all their idols she defiled herself.</VERS>\r\n      <VERS vnumber=\"8\">Neither hath she left her whoredoms since [the days of] Egypt; for in her youth they lay with her, and they handled the bosom of her virginity; and they poured out their whoredom upon her.</VERS>\r\n      <VERS vnumber=\"9\">Wherefore I delivered her into the hand of her lovers, into the hand of the Assyrians, upon whom she doted.</VERS>\r\n      <VERS vnumber=\"10\">These uncovered her nakedness; they took her sons and her daughters; and her they slew with the sword: and she became a byword among women; for they executed judgments upon her.</VERS>\r\n      <VERS vnumber=\"11\">And her sister Oholibah saw this, yet was she more corrupt in her doting than she, and in her whoredoms which were more than the whoredoms of her sister.</VERS>\r\n      <VERS vnumber=\"12\">She doted upon the Assyrians, governors and rulers, [her] neighbors, clothed most gorgeously, horsemen riding upon horses, all of them desirable young men.</VERS>\r\n      <VERS vnumber=\"13\">And I saw that she was defiled; they both took one way.</VERS>\r\n      <VERS vnumber=\"14\">And she increased her whoredoms; for she saw men portrayed upon the wall, the images of the Chaldeans portrayed with vermilion,</VERS>\r\n      <VERS vnumber=\"15\">girded with girdles upon their loins, with flowing turbans upon their heads, all of them princes to look upon, after the likeness of the Babylonians in Chaldea, the land of their nativity.</VERS>\r\n      <VERS vnumber=\"16\">And as soon as she saw them she doted upon them, and sent messengers unto them into Chaldea.</VERS>\r\n      <VERS vnumber=\"17\">And 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 soul was alienated from them.</VERS>\r\n      <VERS vnumber=\"18\">So she uncovered her whoredoms, and uncovered her nakedness: then my soul was alienated from her, like as my soul was alienated from her sister.</VERS>\r\n      <VERS vnumber=\"19\">Yet she multiplied her whoredoms, remembering the days of her youth, wherein she had played the harlot in the land of Egypt.</VERS>\r\n      <VERS vnumber=\"20\">And she doted upon their paramours, whose flesh is as the flesh of asses, and whose issue is like the issue of horses.</VERS>\r\n      <VERS vnumber=\"21\">Thus thou calledst to remembrance the lewdness of thy youth, in the handling of thy bosom by the Egyptians for the breasts of thy youth.</VERS>\r\n      <VERS vnumber=\"22\">Therefore, O Oholibah, thus saith the Lord Jehovah: Behold, I will raise up thy lovers against thee, from whom thy soul is alienated, and I will bring them against thee on every side:</VERS>\r\n      <VERS vnumber=\"23\">the Babylonians and all the Chaldeans, Pekod and Shoa and Koa, [and] all the Assyrians with them; desirable young men, governors and rulers all of them, princes and men of renown, all of them riding upon horses.</VERS>\r\n      <VERS vnumber=\"24\">And they shall come against thee with weapons, chariots, and wagons, and with a company of peoples; they shall set themselves against thee with buckler and shield and helmet round about; and I will commit the judgment unto them, and they shall judge thee according to their judgments.</VERS>\r\n      <VERS vnumber=\"25\">And I will set my jealousy against thee, and they shall deal with thee in fury; they shall take away thy nose and thine ears; and thy residue shall fall by the sword: they shall take thy sons and thy daughters; and thy residue shall be devoured by the fire.</VERS>\r\n      <VERS vnumber=\"26\">They shall also strip thee of thy clothes, and take away thy fair jewels.</VERS>\r\n      <VERS vnumber=\"27\">Thus 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.</VERS>\r\n      <VERS vnumber=\"28\">For thus saith the Lord Jehovah: Behold, I will deliver thee into the hand of them whom thou hatest, into the hand of them from whom thy soul is alienated;</VERS>\r\n      <VERS vnumber=\"29\">and they shall deal with thee in hatred, and shall take away all thy labor, and shall leave thee naked and bare; and the nakedness of thy whoredoms shall be uncovered, both thy lewdness and thy whoredoms.</VERS>\r\n      <VERS vnumber=\"30\">These things shall be done unto thee, for that thou hast played the harlot after the nations, and because thou art polluted with their idols.</VERS>\r\n      <VERS vnumber=\"31\">Thou hast walked in the way of thy sister; therefore will I give her cup into thy hand.</VERS>\r\n      <VERS vnumber=\"32\">Thus saith the Lord Jehovah: Thou shalt drink of thy sister`s cup, which is deep and large; thou shalt be laughed to scorn and had in derision; it containeth much.</VERS>\r\n      <VERS vnumber=\"33\">Thou shalt be filled with drunkenness and sorrow, with the cup of astonishment and desolation, with the cup of thy sister Samaria.</VERS>\r\n      <VERS vnumber=\"34\">Thou shalt even drink it and drain it out, and thou shalt gnaw the sherds thereof, and shalt tear thy breasts; for I have spoken it, saith the Lord Jehovah.</VERS>\r\n      <VERS vnumber=\"35\">Therefore thus saith the Lord Jehovah: Because thou hast forgotten me, and cast me behind thy back, therefore bear thou also thy lewdness and thy whoredoms.</VERS>\r\n      <VERS vnumber=\"36\">Jehovah said moreover unto me: Son of man, wilt thou judge Oholah and Oholibah? then declare unto them their abominations.</VERS>\r\n      <VERS vnumber=\"37\">For they have committed adultery, and blood is in their hands; and with their idols have they committed adultery; and they have also caused their sons, whom they bare unto me, to pass through [the fire] unto them to be devoured.</VERS>\r\n      <VERS vnumber=\"38\">Moreover this they have done unto me: they have defiled my sanctuary in the same day, and have profaned my sabbaths.</VERS>\r\n      <VERS vnumber=\"39\">For 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 my house.</VERS>\r\n      <VERS vnumber=\"40\">And furthermore ye have sent for men that come from far, unto whom a messenger was sent, and, lo, they came; for whom thou didst wash thyself, paint thine eyes, and deck thyself with ornaments,</VERS>\r\n      <VERS vnumber=\"41\">and sit upon a stately bed, with a table prepared before it, whereupon thou didst set mine incense and mine oil.</VERS>\r\n      <VERS vnumber=\"42\">And the voice of a multitude being at ease was with her: and with men of the common sort were brought drunkards from the wilderness; and they put bracelets upon the hands of them [twain], and beautiful crowns upon their heads.</VERS>\r\n      <VERS vnumber=\"43\">Then said I of her that was old in adulteries, Now will they play the harlot with her, and she [with them].</VERS>\r\n      <VERS vnumber=\"44\">And they went in unto her, as they go in unto a harlot: so went they in unto Oholah and unto Oholibah, the lewd women.</VERS>\r\n      <VERS vnumber=\"45\">And righteous men, they shall judge them with the judgment of adulteresses, and with the judgment of women that shed blood; because they are adulteresses, and blood is in their hands.</VERS>\r\n      <VERS vnumber=\"46\">For thus saith the Lord Jehovah: I will bring up a company against them, and will give them to be tossed to and fro and robbed.</VERS>\r\n      <VERS vnumber=\"47\">And the company shall stone them with stones, and despatch them with their swords; they shall slay their sons and their daughters, and burn up their houses with fire.</VERS>\r\n      <VERS vnumber=\"48\">Thus will I cause lewdness to cease out of the land, that all women may be taught not to do after your lewdness.</VERS>\r\n      <VERS vnumber=\"49\">And 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 Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"24\">\r\n      <VERS vnumber=\"1\">Again, in the ninth year, in the tenth month, in the tenth [day] of the month, the word of Jehovah came unto me, saying,</VERS>\r\n      <VERS vnumber=\"2\">Son of man, write thee the name of the day, [even] of this selfsame day: the king of Babylon drew close unto Jerusalem this selfsame day.</VERS>\r\n      <VERS vnumber=\"3\">And utter a parable unto the rebellious house, and say unto them, Thus saith the Lord Jehovah, Set on the caldron, set it on, and also pour water into it:</VERS>\r\n      <VERS vnumber=\"4\">gather the pieces thereof into it, even every good piece, the thigh, and the shoulder; fill it with the choice bones.</VERS>\r\n      <VERS vnumber=\"5\">Take the choice of the flock, and also a pile [of wood] for the bones under [the caldron]; make it boil well; yea, let the bones thereof be boiled in the midst of it.</VERS>\r\n      <VERS vnumber=\"6\">Wherefore thus saith the Lord Jehovah: Woe to the bloody city, to the caldron whose rust is therein, and whose rust is not gone out of it! take out of it piece after piece; No lot is fallen upon it.</VERS>\r\n      <VERS vnumber=\"7\">For her blood is in the midst of her; she set it upon the bare rock; she poured it not upon the ground, to cover it with dust.</VERS>\r\n      <VERS vnumber=\"8\">That it may cause wrath to come up to take vengeance, I have set her blood upon the bare rock, that it should not be covered.</VERS>\r\n      <VERS vnumber=\"9\">Therefore thus saith the Lord Jehovah: Woe to the bloody city! I also will make the pile great.</VERS>\r\n      <VERS vnumber=\"10\">Heap on the wood, make the fire hot, boil well the flesh, and make thick the broth, and let the bones be burned.</VERS>\r\n      <VERS vnumber=\"11\">Then set it empty upon the coals thereof, that it may be hot, and the brass thereof may burn, and that the filthiness of it may be molten in it, that the rust of it may be consumed.</VERS>\r\n      <VERS vnumber=\"12\">She hath wearied [herself] with toil; yet her great rust goeth not forth out of her; her rust [goeth not forth] by fire.</VERS>\r\n      <VERS vnumber=\"13\">In thy filthiness is lewdness: because I have cleansed thee and thou wast not cleansed, thou shalt not be cleansed from thy filthiness any more, till I have caused my wrath toward thee to rest.</VERS>\r\n      <VERS vnumber=\"14\">I, Jehovah, 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 Jehovah.</VERS>\r\n      <VERS vnumber=\"15\">Also the word of Jehovah came unto me, saying,</VERS>\r\n      <VERS vnumber=\"16\">Son of man, behold, I take away from thee the desire of thine eyes with a stroke: yet thou shalt neither mourn nor weep, neither shall thy tears run down.</VERS>\r\n      <VERS vnumber=\"17\">Sigh, but not aloud, make no mourning for the dead; bind thy headtire upon thee, and put thy shoes upon thy feet, and cover not thy lips, and eat not the bread of men.</VERS>\r\n      <VERS vnumber=\"18\">So I spake unto the people in the morning; and at even my wife died; and I did in the morning as I was commanded.</VERS>\r\n      <VERS vnumber=\"19\">And the people said unto me, Wilt thou not tell us what these things are to us, that thou doest so?</VERS>\r\n      <VERS vnumber=\"20\">Then I said unto them, The word of Jehovah came unto me, saying,</VERS>\r\n      <VERS vnumber=\"21\">Speak unto the house of Israel, Thus saith the Lord Jehovah: Behold, I will profane my sanctuary, the pride of your power, the desire of your eyes, and that which your soul pitieth; and your sons and your daughters whom ye have left behind shall fall by the sword.</VERS>\r\n      <VERS vnumber=\"22\">And ye shall do as I have done: ye shall not cover your lips, nor eat the bread of men.</VERS>\r\n      <VERS vnumber=\"23\">And your tires shall be upon your heads, and your shoes upon your feet: ye shall not mourn nor weep; but ye shall pine away in your iniquities, and moan one toward another.</VERS>\r\n      <VERS vnumber=\"24\">Thus shall Ezekiel be unto you a sign; according to all that he hath done shall ye do: when this cometh, then shall ye know that I am the Lord Jehovah.</VERS>\r\n      <VERS vnumber=\"25\">And 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 heart, their sons and their daughters,</VERS>\r\n      <VERS vnumber=\"26\">that in that day he that escapeth shall come unto thee, to cause thee to hear it with thine ears?</VERS>\r\n      <VERS vnumber=\"27\">In that day shall thy mouth be opened to him that is escaped, and thou shalt speak, and be no more dumb: so shalt thou be a sign unto them; and they shall know that I am Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"25\">\r\n      <VERS vnumber=\"1\">And the word of Jehovah came unto me, saying,</VERS>\r\n      <VERS vnumber=\"2\">Son of man, set thy face toward the children of Ammon, and prophesy against them:</VERS>\r\n      <VERS vnumber=\"3\">and say unto the children of Ammon, Hear the word of the Lord Jehovah: Thus saith the Lord Jehovah, Because thou saidst, Aha, against my sanctuary, when it was profaned; and against the land of Israel, when it was made desolate; and against the house of Judah, when they went into captivity:</VERS>\r\n      <VERS vnumber=\"4\">therefore, behold, I will deliver thee to the children of the east for a possession, and they shall set their encampments in thee, and make their dwellings in thee; they shall eat thy fruit, and they shall drink thy milk.</VERS>\r\n      <VERS vnumber=\"5\">And I will make Rabbah a stable for camels, and the children of Ammon a couching-place for flocks: and ye shall know that I am Jehovah.</VERS>\r\n      <VERS vnumber=\"6\">For thus saith the Lord Jehovah: Because thou hast clapped thy hands, and stamped with the feet, and rejoiced with all the despite of thy soul against the land of Israel;</VERS>\r\n      <VERS vnumber=\"7\">therefore, behold, I have stretched out my hand upon thee, and will deliver thee for a spoil to the nations; and I will cut thee off from the peoples, and I will cause thee to perish out of the countries: I will destroy thee; and thou shalt know that I am Jehovah.</VERS>\r\n      <VERS vnumber=\"8\">Thus saith the Lord Jehovah: Because that Moab and Seir do say, Behold, the house of Judah is like unto all the nations;</VERS>\r\n      <VERS vnumber=\"9\">therefore, behold, I will open the side of Moab from the cities, from his cities which are on his frontiers, the glory of the country, Beth-jeshimoth, Baal-meon, and Kiriathaim,</VERS>\r\n      <VERS vnumber=\"10\">unto the children of the east, [to go] against the children of Ammon; and I will give them for a possession, that the children of Ammon may not be remembered among the nations.</VERS>\r\n      <VERS vnumber=\"11\">and I will execute judgments upon Moab; and they shall know that I am Jehovah.</VERS>\r\n      <VERS vnumber=\"12\">Thus saith the Lord Jehovah: Because that Edom hath dealt against the house of Judah by taking vengeance, and hath greatly offended, and revenged himself upon them;</VERS>\r\n      <VERS vnumber=\"13\">therefore thus saith the Lord Jehovah, I will stretch out my hand upon Edom, and will cut off man and beast from it; and I will make it desolate from Teman; even unto Dedan shall they fall by the sword.</VERS>\r\n      <VERS vnumber=\"14\">And 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 wrath; and they shall know my vengeance, saith the Lord Jehovah.</VERS>\r\n      <VERS vnumber=\"15\">Thus saith the Lord Jehovah: Because the Philistines have dealt by revenge, and have taken vengeance with despite of soul to destroy with perpetual enmity;</VERS>\r\n      <VERS vnumber=\"16\">therefore thus saith the Lord Jehovah, Behold, I will stretch out my hand upon the Philistines, and I will cut off the Cherethites, and destroy the remnant of the sea coast.</VERS>\r\n      <VERS vnumber=\"17\">And I will execute great vengeance upon them with wrathful rebukes; and they shall know that I am Jehovah, when I shall lay my vengeance upon them.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"26\">\r\n      <VERS vnumber=\"1\">And it came to pass in the eleventh year, in the first [day] of the month, that the word of Jehovah came unto me, saying,</VERS>\r\n      <VERS vnumber=\"2\">Son of man, because that Tyre hath said against Jerusalem, Aha, she is broken [that was] the gate of the peoples; she is turned unto me; I shall be replenished, now that she is laid waste:</VERS>\r\n      <VERS vnumber=\"3\">therefore thus saith the Lord Jehovah, Behold, I am against thee, O Tyre, and will cause many nations to come up against thee, as the sea causeth its waves to come up.</VERS>\r\n      <VERS vnumber=\"4\">And they shall destroy the walls of Tyre, and break down her towers: I will also scrape her dust from her, and make her a bare rock.</VERS>\r\n      <VERS vnumber=\"5\">She shall be a place for the spreading of nets in the midst of the sea; for I have spoken it, saith the Lord Jehovah; and she shall become a spoil to the nations.</VERS>\r\n      <VERS vnumber=\"6\">And her daughters that are in the field shall be slain with the sword: and they shall know that I am Jehovah.</VERS>\r\n      <VERS vnumber=\"7\">For thus saith the Lord Jehovah: Behold, I will bring upon Tyre Nebuchadrezzar king of Babylon, king of kings, from the north, with horses, and with chariots, and with horsemen, and a company, and much people.</VERS>\r\n      <VERS vnumber=\"8\">He shall slay with the sword thy daughters in the field; and he shall make forts against thee, and cast up a mound against thee, and raise up the buckler against thee.</VERS>\r\n      <VERS vnumber=\"9\">And he shall set his battering engines against thy walls, and with his axes he shall break down thy towers.</VERS>\r\n      <VERS vnumber=\"10\">By 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 wagons, and of the chariots, when he shall enter into thy gates, as men enter into a city wherein is made a breach.</VERS>\r\n      <VERS vnumber=\"11\">With the hoofs of his horses shall he tread down all thy streets; he shall slay thy people with the sword; and the pillars of thy strength shall go down to the ground.</VERS>\r\n      <VERS vnumber=\"12\">And 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 waters.</VERS>\r\n      <VERS vnumber=\"13\">And I will cause the noise of thy songs to cease; and the sound of thy harps shall be no more heard.</VERS>\r\n      <VERS vnumber=\"14\">And I will make thee a bare rock; thou shalt be a place for the spreading of nets; thou shalt be built no more: for I Jehovah have spoken it, saith the Lord Jehovah.</VERS>\r\n      <VERS vnumber=\"15\">Thus saith the Lord Jehovah to Tyre: shall not the isles shake at the sound of thy fall, when the wounded groan, when the slaughter is made in the midst of thee?</VERS>\r\n      <VERS vnumber=\"16\">Then all the princes of the sea shall come down from their thrones, and lay aside their robes, and strip off their broidered garments: they shall clothe themselves with trembling; they shall sit upon the ground, and shall tremble every moment, and be astonished at thee.</VERS>\r\n      <VERS vnumber=\"17\">And they shall take up a lamentation over thee, and say to thee, How art thou destroyed, that wast inhabited by seafaring men, the renowned city, that was strong in the sea, she and her inhabitants, that caused their terror to be on all that dwelt there!</VERS>\r\n      <VERS vnumber=\"18\">Now shall the isles tremble in the day of thy fall; yea, the isles that are in the sea shall be dismayed at thy departure.</VERS>\r\n      <VERS vnumber=\"19\">For thus saith the Lord Jehovah: 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 the great waters shall cover thee;</VERS>\r\n      <VERS vnumber=\"20\">then will I bring thee down with them that descend into the pit, to the people of old time, and will make thee to dwell in the nether parts of the earth, in the places that are desolate of old, with them that go down to the pit, that thou be not inhabited; and I will set glory in the land of the living:</VERS>\r\n      <VERS vnumber=\"21\">I will make thee a terror, and thou shalt no more have any being; though thou be sought for, yet shalt thou never be found again, saith the Lord Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"27\">\r\n      <VERS vnumber=\"1\">The word of Jehovah came again unto me, saying,</VERS>\r\n      <VERS vnumber=\"2\">And thou, son of man, take up a lamentation over Tyre;</VERS>\r\n      <VERS vnumber=\"3\">and say unto Tyre, O thou that dwellest at the entry of the sea, that art the merchant of the peoples unto many isles, thus saith the Lord Jehovah: Thou, O Tyre, hast said, I am perfect in beauty.</VERS>\r\n      <VERS vnumber=\"4\">Thy borders are in the heart of the seas; thy builders have perfected thy beauty.</VERS>\r\n      <VERS vnumber=\"5\">They have made all thy planks of fir-trees from Senir; they have taken a cedar from Lebanon to make a mast for thee.</VERS>\r\n      <VERS vnumber=\"6\">Of the oaks of Bashan have they made thine oars; they have made thy benches of ivory inlaid in boxwood, from the isles of Kittim.</VERS>\r\n      <VERS vnumber=\"7\">Of fine linen with broidered work from Egypt was thy sail, that it might be to thee for an ensign; blue and purple from the isles of Elishah was thine awning.</VERS>\r\n      <VERS vnumber=\"8\">The inhabitants of Sidon and Arvad were thy rowers: thy wise men, O Tyre, were in thee, they were thy pilots.</VERS>\r\n      <VERS vnumber=\"9\">The old men 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 deal in thy merchandise.</VERS>\r\n      <VERS vnumber=\"10\">Persia and Lud and Put were in thine army, thy men of war: they hanged the shield and helmet in thee; they set forth thy comeliness.</VERS>\r\n      <VERS vnumber=\"11\">The men of Arvad with thine army were upon thy walls round about, and valorous men were in thy towers; they hanged their shields upon thy walls round about; they have perfected thy beauty.</VERS>\r\n      <VERS vnumber=\"12\">Tarshish was thy merchant by reason of the multitude of all kinds of riches; with silver, iron, tin, and lead, they traded for thy wares.</VERS>\r\n      <VERS vnumber=\"13\">Javan, Tubal, and Meshech, they were thy traffickers; they traded the persons of men and vessels of brass for thy merchandise.</VERS>\r\n      <VERS vnumber=\"14\">They of the house of Togarmah traded for thy wares with horses and war-horses and mules.</VERS>\r\n      <VERS vnumber=\"15\">The men of Dedan were thy traffickers; many isles were the mart of thy hand: they brought thee in exchange horns of ivory and ebony.</VERS>\r\n      <VERS vnumber=\"16\">Syria was thy merchant by reason of the multitude of thy handiworks: they traded for thy wares with emeralds, purple, and broidered work, and fine linen, and coral, and rubies.</VERS>\r\n      <VERS vnumber=\"17\">Judah, and the land of Israel, they were thy traffickers: they traded for thy merchandise wheat of Minnith, and pannag, and honey, and oil, and balm.</VERS>\r\n      <VERS vnumber=\"18\">Damascus was thy merchant for the multitude of thy handiworks, by reason of the multitude of all kinds of riches, with the wine of Helbon, and white wool.</VERS>\r\n      <VERS vnumber=\"19\">Vedan and Javan traded with yarn for thy wares: bright iron, cassia, and calamus, were among thy merchandise.</VERS>\r\n      <VERS vnumber=\"20\">Dedan was thy trafficker in precious cloths for riding.</VERS>\r\n      <VERS vnumber=\"21\">Arabia, and all the princes of Kedar, they were the merchants of thy hand; in lambs, and rams, and goats, in these were they thy merchants.</VERS>\r\n      <VERS vnumber=\"22\">The traffickers of Sheba and Raamah, they were thy traffickers; they traded for thy wares with the chief of all spices, and with all precious stones, and gold.</VERS>\r\n      <VERS vnumber=\"23\">Haran and Canneh and Eden, the traffickers of Sheba, Asshur [and] Chilmad, were thy traffickers.</VERS>\r\n      <VERS vnumber=\"24\">These were thy traffickers in choice wares, in wrappings of blue and broidered work, and in chests of rich apparel, bound with cords and made of cedar, among thy merchandise.</VERS>\r\n      <VERS vnumber=\"25\">The ships of Tarshish were thy caravans for thy merchandise: and thou wast replenished, and made very glorious in the heart of the seas.</VERS>\r\n      <VERS vnumber=\"26\">Thy rowers have brought thee into great waters: the east wind hath broken thee in the heart of the seas.</VERS>\r\n      <VERS vnumber=\"27\">Thy riches, and thy wares, thy merchandise, thy mariners, and thy pilots, thy calkers, and the dealers in thy merchandise, and all thy men of war, that are in thee, with all thy company which is in the midst of thee, shall fall into the heart of the seas in the day of thy ruin.</VERS>\r\n      <VERS vnumber=\"28\">At the sound of the cry of thy pilots the suburbs shall shake.</VERS>\r\n      <VERS vnumber=\"29\">And all that handled the oar, the mariners, [and] all the pilots of the sea, shall come down from their ships; they shall stand upon the land,</VERS>\r\n      <VERS vnumber=\"30\">and shall cause their voice to be heard over thee, and shall cry bitterly, and shall cast up dust upon their heads, they shall wallow themselves in the ashes:</VERS>\r\n      <VERS vnumber=\"31\">and they shall make themselves bald for thee, and gird them with sackcloth, and they shall weep for thee in bitterness of soul with bitter mourning.</VERS>\r\n      <VERS vnumber=\"32\">And in their wailing they shall take up a lamentation for thee, and lament over thee, [saying], Who is there like Tyre, like her that is brought to silence in the midst of the sea?</VERS>\r\n      <VERS vnumber=\"33\">When thy wares went forth out of the seas, thou filledst many peoples; thou didst enrich the kings of the earth with the multitude of thy riches and of thy merchandise.</VERS>\r\n      <VERS vnumber=\"34\">In the time that thou wast broken by the seas in the depths of the waters, thy merchandise and all thy company did fall in the midst of thee.</VERS>\r\n      <VERS vnumber=\"35\">All the inhabitants of the isles are astonished at thee, and their kings are horribly afraid; they are troubled in their countenance.</VERS>\r\n      <VERS vnumber=\"36\">The merchants among the peoples hiss at thee; thou art become a terror, and thou shalt nevermore have any being.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"28\">\r\n      <VERS vnumber=\"1\">The word of Jehovah came again unto me, saying,</VERS>\r\n      <VERS vnumber=\"2\">Son of man, say unto the prince of Tyre, Thus saith the Lord Jehovah: Because thy 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 man, and not God, though thou didst set thy heart as the heart of God;-</VERS>\r\n      <VERS vnumber=\"3\">behold, thou art wiser than Daniel; there is no secret that is hidden from thee;</VERS>\r\n      <VERS vnumber=\"4\">by thy wisdom and by thine understanding thou hast gotten thee riches, and hast gotten gold and silver into thy treasures;</VERS>\r\n      <VERS vnumber=\"5\">by thy great wisdom [and] by thy traffic hast thou increased thy riches, and thy heart is lifted up because of thy riches;-</VERS>\r\n      <VERS vnumber=\"6\">therefore thus saith the Lord Jehovah: Because thou hast set thy heart as the heart of God,</VERS>\r\n      <VERS vnumber=\"7\">therefore, behold, 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.</VERS>\r\n      <VERS vnumber=\"8\">They shall bring thee down to the pit; and thou shalt die the death of them that are slain, in the heart of the seas.</VERS>\r\n      <VERS vnumber=\"9\">Wilt thou yet say before him that slayeth thee, I am God? but thou art man, and not God, in the hand of him that woundeth thee.</VERS>\r\n      <VERS vnumber=\"10\">Thou shalt die the death of the uncircumcised by the hand of strangers: for I have spoken it, saith the Lord Jehovah.</VERS>\r\n      <VERS vnumber=\"11\">Moreover the word of Jehovah came unto me, saying,</VERS>\r\n      <VERS vnumber=\"12\">Son of man, take up a lamentation over the king of Tyre, and say unto him, Thus saith the Lord Jehovah: Thou sealest up the sum, full of wisdom, and perfect in beauty.</VERS>\r\n      <VERS vnumber=\"13\">Thou wast in Eden, the garden of God; every precious stone was thy covering, the sardius, the 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 in thee; in the day that thou wast created they were prepared.</VERS>\r\n      <VERS vnumber=\"14\">Thou wast the anointed cherub that covereth: and I set thee, [so that] thou wast upon the holy mountain of God; thou hast walked up and down in the midst of the stones of fire.</VERS>\r\n      <VERS vnumber=\"15\">Thou wast perfect in thy ways from the day that thou wast created, till unrighteousness was found in thee.</VERS>\r\n      <VERS vnumber=\"16\">By the abundance of thy traffic they filled the midst of thee with violence, and thou hast sinned: therefore have I cast thee as profane out of the mountain of God; and I have destroyed thee, O covering cherub, from the midst of the stones of fire.</VERS>\r\n      <VERS vnumber=\"17\">Thy heart was lifted up because of thy beauty; thou hast corrupted thy wisdom by reason of thy brightness: I have cast thee to the ground; I have laid thee before kings, that they may behold thee.</VERS>\r\n      <VERS vnumber=\"18\">By the multitude of thine iniquities, in the unrighteousness of thy traffic, thou hast profaned thy sanctuaries; therefore have I brought forth a fire from the midst of thee; it hath devoured thee, and I have turned thee to ashes upon the earth in the sight of all them that behold thee.</VERS>\r\n      <VERS vnumber=\"19\">All they that know thee among the peoples shall be astonished at thee: thou art become a terror, and thou shalt nevermore have any being.</VERS>\r\n      <VERS vnumber=\"20\">And the word of Jehovah came unto me, saying,</VERS>\r\n      <VERS vnumber=\"21\">Son of man, set thy face toward Sidon, and prophesy against it,</VERS>\r\n      <VERS vnumber=\"22\">and say, Thus saith the Lord Jehovah: Behold, I am against thee, O Sidon; and I will be glorified in the midst of thee; and they shall know that I am Jehovah, when I shall have executed judgments in her, and shall be sanctified in her.</VERS>\r\n      <VERS vnumber=\"23\">For I will send pestilence into her, and blood into her streets; and the wounded shall fall in the midst of her, with the sword upon her on every side; and they shall know that I am Jehovah.</VERS>\r\n      <VERS vnumber=\"24\">And there shall be no more a pricking brier unto the house of Israel, nor a hurting thorn of any that are round about them, that did despite unto them; and they shall know that I am the Lord Jehovah.</VERS>\r\n      <VERS vnumber=\"25\">Thus saith the Lord Jehovah: When I shall have gathered the house of Israel from the peoples among whom they are scattered, and shall be sanctified in them in the sight of the nations, then shall they dwell in their own land which I gave to my servant Jacob.</VERS>\r\n      <VERS vnumber=\"26\">And they shall dwell securely therein; yea, they shall build houses, and plant vineyards, and shall dwell securely, when I have executed judgments upon all those that do them despite round about them; and they shall know that I am Jehovah their God.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"29\">\r\n      <VERS vnumber=\"1\">In the tenth year, in the tenth [month], in the twelfth [day] of the month, the word of Jehovah came unto me, saying,</VERS>\r\n      <VERS vnumber=\"2\">Son of man, set thy face against Pharaoh king of Egypt, and prophesy against him, and against all Egypt;</VERS>\r\n      <VERS vnumber=\"3\">speak, and say, Thus saith the Lord Jehovah: Behold, I am against thee, Pharaoh king of Egypt, the great monster that lieth in the midst of his rivers, that hath said, My river is mine own, and I have made it for myself.</VERS>\r\n      <VERS vnumber=\"4\">And 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, with all the fish of thy rivers which stick unto thy scales.</VERS>\r\n      <VERS vnumber=\"5\">And I will cast thee forth into the wilderness, thee and all the fish of thy rivers: thou shalt fall upon the open field; thou shalt not be brought together, nor gathered; I have given thee for food to the beasts of the earth and to the birds of the heavens.</VERS>\r\n      <VERS vnumber=\"6\">And all the inhabitants of Egypt shall know that I am Jehovah, because they have been a staff of reed to the house of Israel.</VERS>\r\n      <VERS vnumber=\"7\">When they took hold of thee by thy hand, thou didst break, and didst rend all their shoulders; and when they leaned upon thee, thou brakest, and madest all their loins to be at a stand.</VERS>\r\n      <VERS vnumber=\"8\">Therefore thus saith the Lord Jehovah: Behold, I will bring a sword upon thee, and will cut off from thee man and beast.</VERS>\r\n      <VERS vnumber=\"9\">And the land of Egypt shall be a desolation and a waste; and they shall know that I am Jehovah. Because he hath said, The river is mine, and I have made it;</VERS>\r\n      <VERS vnumber=\"10\">therefore, behold, I am against thee, and against thy rivers, and I will make the land of Egypt an utter waste and desolation, from the tower of Seveneh even unto the border of Ethiopia.</VERS>\r\n      <VERS vnumber=\"11\">No foot of man shall pass through it, nor foot of beast shall pass through it, neither shall it be inhabited forty years.</VERS>\r\n      <VERS vnumber=\"12\">And I will make the land of Egypt a desolation in the midst of the countries that are desolate; and her cities among the cities that are laid waste shall be a desolation forty years; and I will scatter the Egyptians among the nations, and will disperse them through the countries.</VERS>\r\n      <VERS vnumber=\"13\">For thus saith the Lord Jehovah: At the end of forty years will I gather the Egyptians from the peoples whither they were scattered;</VERS>\r\n      <VERS vnumber=\"14\">and I will bring back the captivity of Egypt, and will cause them to return into the land of Pathros, into the land of their birth; and they shall be there a base kingdom.</VERS>\r\n      <VERS vnumber=\"15\">It shall be the basest of the kingdoms; neither shall it any more lift itself up above the nations: and I will diminish them, that they shall no more rule over the nations.</VERS>\r\n      <VERS vnumber=\"16\">And it shall be no more the confidence of the house of Israel, bringing iniquity to remembrance, when they turn to look after them: and they shall know that I am the Lord Jehovah.</VERS>\r\n      <VERS vnumber=\"17\">And it came to pass in the seven and twentieth year, in the first [month], in the first [day] of the month, the word of Jehovah came unto me, saying,</VERS>\r\n      <VERS vnumber=\"18\">Son of man, Nebuchadrezzar king of Babylon caused his army to serve a great service against Tyre: every head was made bald, and every shoulder was worn; yet had he no wages, nor his army, from Tyre, for the service that he had served against it.</VERS>\r\n      <VERS vnumber=\"19\">Therefore thus saith the Lord Jehovah: Behold, I will give the land of Egypt unto Nebuchadrezzar king of Babylon; and he shall carry off her multitude, and take her spoil, and take her prey; and it shall be the wages for his army.</VERS>\r\n      <VERS vnumber=\"20\">I have given him the land of Egypt as his recompense for which he served, because they wrought for me, saith the Lord Jehovah.</VERS>\r\n      <VERS vnumber=\"21\">In that day will I cause a horn to bud forth unto the house of Israel, and I will give thee the opening of the mouth in the midst of them; and they shall know that I am Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"30\">\r\n      <VERS vnumber=\"1\">The word of Jehovah came again unto me, saying,</VERS>\r\n      <VERS vnumber=\"2\">Son of man, prophesy, and say, Thus saith the Lord Jehovah: Wail ye, Alas for the day!</VERS>\r\n      <VERS vnumber=\"3\">For the day is near, even the day of Jehovah is near; it shall be a day of clouds, a time of the nations.</VERS>\r\n      <VERS vnumber=\"4\">And a sword shall come upon Egypt, and anguish 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.</VERS>\r\n      <VERS vnumber=\"5\">Ethiopia, and Put, and Lud, and all the mingled people, and Cub, and the children of the land that is in league, shall fall with them by the sword.</VERS>\r\n      <VERS vnumber=\"6\">Thus saith Jehovah: They also that uphold Egypt shall fall; and the pride of her power shall come down: from the tower of Seveneh shall they fall in it by the sword, saith the Lord Jehovah.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And they shall know at I am Jehovah, when I have set a fire in Egypt, and all her helpers are destroyed.</VERS>\r\n      <VERS vnumber=\"9\">In that day shall messengers go forth from before me in ships to make the careless Ethiopians afraid; and there shall be anguish upon them, as in the day of Egypt; for, lo, it cometh.</VERS>\r\n      <VERS vnumber=\"10\">Thus saith the Lord Jehovah: I will also make the multitude of Egypt to cease, by the hand of Nebuchadrezzar king of Babylon.</VERS>\r\n      <VERS vnumber=\"11\">He and his people with him, the terrible of the nations, shall be brought in to destroy the land; and they shall draw their swords against Egypt, and fill the land with the slain.</VERS>\r\n      <VERS vnumber=\"12\">And I will make the rivers dry, and will sell the land into the hand of evil men; and I will make the land desolate, and all that is therein, by the hand of strangers: I, Jehovah, have spoken it.</VERS>\r\n      <VERS vnumber=\"13\">Thus saith the Lord Jehovah: I will also destroy the idols, and I will cause the images to cease from Memphis; and there shall be no more a prince from the land of Egypt: and I will put a fear in the land of Egypt.</VERS>\r\n      <VERS vnumber=\"14\">And I will make Pathros desolate, and will set a fire in Zoan, and will execute judgments upon No.</VERS>\r\n      <VERS vnumber=\"15\">And I will pour my wrath upon Sin, the stronghold of Egypt; and I will cut off the multitude of No.</VERS>\r\n      <VERS vnumber=\"16\">And I will set a fire in Egypt: Sin shall be in great anguish, and No shall be broken up; and Memphis [shall have] adversaries in the day-time.</VERS>\r\n      <VERS vnumber=\"17\">The young men of Aven and of Pibeseth shall fall by the sword; and these [cities] shall go into captivity.</VERS>\r\n      <VERS vnumber=\"18\">At Tehaphnehes also the day shall withdraw itself, when I shall break there the yokes of Egypt, and the pride of her power shall cease in her: as for her, a cloud shall cover her, and her daughters shall go into captivity.</VERS>\r\n      <VERS vnumber=\"19\">Thus will I execute judgments upon Egypt; and they shall know that I am Jehovah.</VERS>\r\n      <VERS vnumber=\"20\">And it came to pass in the eleventh year, in the first [month], in the seventh [day] of the month, that the word of Jehovah came unto me, saying,</VERS>\r\n      <VERS vnumber=\"21\">Son of man, I have broken the arm of Pharaoh king of Egypt; and, lo, it hath not been bound up, to apply [healing] medicines, to put a bandage to bind it, that it be strong to hold the sword.</VERS>\r\n      <VERS vnumber=\"22\">Therefore thus saith the Lord Jehovah: Behold, I am against Pharaoh king of Egypt, and will break his arms, the strong [arm], and that which was broken; and I will cause the sword to fall out of his hand.</VERS>\r\n      <VERS vnumber=\"23\">And I will scatter the Egyptians among the nations, and will disperse them through the countries.</VERS>\r\n      <VERS vnumber=\"24\">And I will strengthen the arms of the king of Babylon, and put my sword in his hand: but I will break the arms of Pharaoh, and he shall groan before him with the groanings of a deadly wounded man.</VERS>\r\n      <VERS vnumber=\"25\">And I will hold up the arms of the king of Babylon; and the arms of Pharaoh shall fall down; and they shall know that I am Jehovah, 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.</VERS>\r\n      <VERS vnumber=\"26\">And I will scatter the Egyptians among the nations, and disperse them through the countries; and they shall know that I am Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"31\">\r\n      <VERS vnumber=\"1\">And it came to pass in the eleventh year, in the third [month], in the first [day] of the month, that the word of Jehovah came unto me, saying,</VERS>\r\n      <VERS vnumber=\"2\">Son of man, say unto Pharaoh king of Egypt, and to his multitude: Whom art thou like in thy greatness?</VERS>\r\n      <VERS vnumber=\"3\">Behold, the Assyrian was a cedar in Lebanon with fair branches, and with a forest-like shade, and of high stature; and its top was among the thick boughs.</VERS>\r\n      <VERS vnumber=\"4\">The waters nourished it, the deep made it to grow: the rivers thereof ran round about its plantation; and it sent out its channels unto all the trees of the field.</VERS>\r\n      <VERS vnumber=\"5\">Therefore its stature was exalted above all the trees of the field; and its boughs were multiplied, and its branches became long by reason of many waters, when it shot [them] forth.</VERS>\r\n      <VERS vnumber=\"6\">All the birds of the heavens made their nests in its boughs; and under its branches did all the beasts of the field bring forth their young; and under its shadow dwelt all great nations.</VERS>\r\n      <VERS vnumber=\"7\">Thus was it fair in its greatness, in the length of its branches; for its root was by many waters.</VERS>\r\n      <VERS vnumber=\"8\">The cedars in the garden of God could not hide it; the fir-trees were not like its boughs, and the plane-trees were not as its branches; nor was any tree in the garden of God like unto it in its beauty.</VERS>\r\n      <VERS vnumber=\"9\">I made it fair by the multitude of its branches, so that all the trees of Eden, that were in the garden of God, envied it.</VERS>\r\n      <VERS vnumber=\"10\">Therefore thus said the Lord Jehovah: Because thou art exalted in stature, and he hath set his top among the thick boughs, and his heart is lifted up in his height;</VERS>\r\n      <VERS vnumber=\"11\">I will even deliver him into the hand of the mighty one of the nations; he shall surely deal with him; I have driven him out for his wickedness.</VERS>\r\n      <VERS vnumber=\"12\">And 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 watercourses of the land; and all the peoples of the earth are gone down from his shadow, and have left him.</VERS>\r\n      <VERS vnumber=\"13\">Upon his ruin all the birds of the heavens shall dwell, and all the beasts of the field shall be upon his branches;</VERS>\r\n      <VERS vnumber=\"14\">to the end that none of all the trees by the waters exalt themselves in their stature, neither set their top among the thick boughs, nor that their mighty ones stand up on their height, [even] 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.</VERS>\r\n      <VERS vnumber=\"15\">Thus saith the Lord Jehovah: In the day when he went down to Sheol I caused a mourning: I covered the deep for him, and I restrained the rivers 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.</VERS>\r\n      <VERS vnumber=\"16\">I made the nations to shake at the sound of his fall, when I cast him down to Sheol with them that descend into the pit; and all the trees of Eden, the choice and best of Lebanon, all that drink water, were comforted in the nether parts of the earth.</VERS>\r\n      <VERS vnumber=\"17\">They also went down into Sheol with him unto them that are slain by the sword; yea, they that were his arm, [that] dwelt under his shadow in the midst of the nations.</VERS>\r\n      <VERS vnumber=\"18\">To 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 are slain by the sword. This is Pharaoh and all his multitude, saith the Lord Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"32\">\r\n      <VERS vnumber=\"1\">And it came to pass in the twelfth year, in the twelfth month, in the first [day] of the month, that the word of Jehovah came unto me, saying,</VERS>\r\n      <VERS vnumber=\"2\">Son of man, take up a lamentation over Pharaoh king of Egypt, and say unto him, Thou wast likened unto a young lion of the nations: yet art thou as a monster in the seas; and thou didst break forth with thy rivers, and troubledst the waters with thy feet, and fouledst their rivers.</VERS>\r\n      <VERS vnumber=\"3\">Thus saith the Lord Jehovah: I will spread out my net upon thee with a company of many peoples; and they shall bring thee up in my net.</VERS>\r\n      <VERS vnumber=\"4\">And I will leave thee upon the land, I will cast thee forth upon the open field, and will cause all the birds of the heavens to settle upon thee, and I will satisfy the beasts of the whole earth with thee.</VERS>\r\n      <VERS vnumber=\"5\">And I will lay thy flesh upon the mountains, and fill the valleys with thy height.</VERS>\r\n      <VERS vnumber=\"6\">I will also water with thy blood the land wherein thou swimmest, even to the mountains; and the watercourses shall be full of thee.</VERS>\r\n      <VERS vnumber=\"7\">And when I shall extinguish thee, I will cover the heavens, and make the stars thereof dark; I will cover the sun with a cloud, and the moon shall not give its light.</VERS>\r\n      <VERS vnumber=\"8\">All the bright lights of heaven will I make dark over thee, and set darkness upon thy land, saith the Lord Jehovah.</VERS>\r\n      <VERS vnumber=\"9\">I will also vex the hearts of many peoples, when I shall bring thy destruction among the nations, into the countries which thou hast not known.</VERS>\r\n      <VERS vnumber=\"10\">Yea, I will make many peoples 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.</VERS>\r\n      <VERS vnumber=\"11\">For thus saith the Lord Jehovah: The sword of the king of Babylon shall come upon thee.</VERS>\r\n      <VERS vnumber=\"12\">By the swords of the mighty will I cause thy multitude to fall; the terrible of the nations are they all: and they shall bring to nought the pride of Egypt, and all the multitude thereof shall be destroyed.</VERS>\r\n      <VERS vnumber=\"13\">I will destroy also all the beasts thereof from beside many waters; neither shall the foot of man trouble them any more, nor the hoofs of beasts trouble them.</VERS>\r\n      <VERS vnumber=\"14\">Then will I make their waters clear, and cause their rivers to run like oil, saith the Lord Jehovah.</VERS>\r\n      <VERS vnumber=\"15\">When I shall make the land of Egypt desolate and waste, a land destitute of that whereof it was full, when I shall smite all them that dwell therein, then shall they know that I am Jehovah.</VERS>\r\n      <VERS vnumber=\"16\">This is the lamentation wherewith they shall lament; the daughters of the nations shall lament therewith; over Egypt, and over all her multitude, shall they lament therewith, saith the Lord Jehovah.</VERS>\r\n      <VERS vnumber=\"17\">It came to pass also in the twelfth year, in the fifteenth [day] of the month, that the word of Jehovah came unto me, saying,</VERS>\r\n      <VERS vnumber=\"18\">Son 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.</VERS>\r\n      <VERS vnumber=\"19\">Whom dost thou pass in beauty? go down, and be thou laid with the uncircumcised.</VERS>\r\n      <VERS vnumber=\"20\">They shall fall in the midst of them that are slain by the sword: she is delivered to the sword; draw her away and all her multitudes.</VERS>\r\n      <VERS vnumber=\"21\">The strong among the mighty shall speak to him out of the midst of Sheol with them that help him: they are gone down, they lie still, even the uncircumcised, slain by the sword.</VERS>\r\n      <VERS vnumber=\"22\">Asshur is there and all her company; her graves are round about her; all of them slain, fallen by the sword;</VERS>\r\n      <VERS vnumber=\"23\">whose graves are set in the uttermost parts of the pit, and her company is round about her grave; all of them slain, fallen by the sword, who caused terror in the land of the living.</VERS>\r\n      <VERS vnumber=\"24\">There is Elam and all her multitude round about her grave; all of them slain, fallen by the sword, who are gone down uncircumcised into the nether parts of the earth, who caused their terror in the land of the living, and have borne their shame with them that go down to the pit.</VERS>\r\n      <VERS vnumber=\"25\">They have set her a bed in the midst of the slain with all her multitude; her graves are round about her; all of them uncircumcised, slain by the sword; for their terror was caused in the land of the living, and they have borne their shame with them that go down to the pit: he is put in the midst of them that are slain.</VERS>\r\n      <VERS vnumber=\"26\">There is Meshech, Tubal, and all their multitude; their graves are round about them; all of them uncircumcised, slain by the sword; for they caused their terror in the land of the living.</VERS>\r\n      <VERS vnumber=\"27\">And they shall not lie with the mighty that are fallen of the uncircumcised, that are gone down to Sheol with their weapons of war, and have laid their swords under their heads, and their iniquities are upon their bones; for [they were] the terror of the mighty in the land of the living.</VERS>\r\n      <VERS vnumber=\"28\">But thou shalt be broken in the midst of the uncircumcised, and shalt lie with them that are slain by the sword.</VERS>\r\n      <VERS vnumber=\"29\">There is Edom, her kings and all her princes, who in their might are laid with them that are slain by the sword: they shall lie with the uncircumcised, and with them that go down to the pit.</VERS>\r\n      <VERS vnumber=\"30\">There are the princes of the north, all of them, and all the Sidonians, who are gone down with the slain; in the terror which they caused by their might they are put to shame; and they lie uncircumcised with them that are slain by the sword, and bear their shame with them that go down to the pit.</VERS>\r\n      <VERS vnumber=\"31\">Pharaoh shall see them, and shall be comforted over all his multitude, even Pharaoh and all his army, slain by the sword, saith the Lord Jehovah.</VERS>\r\n      <VERS vnumber=\"32\">For I have put his terror in the land of the living; and he shall be laid in the midst of the uncircumcised, with them that are slain by the sword, even Pharaoh and all his multitude, saith the Lord Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"33\">\r\n      <VERS vnumber=\"1\">And the word of Jehovah came unto me, saying,</VERS>\r\n      <VERS vnumber=\"2\">Son of man, speak to the children of thy people, and say unto them, When I bring the sword upon a land, and the people of the land take a man from among them, and set him for their watchman;</VERS>\r\n      <VERS vnumber=\"3\">if, when he seeth the sword come upon the land, he blow the trumpet, and warn the people;</VERS>\r\n      <VERS vnumber=\"4\">then 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.</VERS>\r\n      <VERS vnumber=\"5\">He heard the sound of the trumpet, and took not warning; his blood shall be upon him; whereas if he had taken warning, he would have delivered his soul.</VERS>\r\n      <VERS vnumber=\"6\">But if the watchman see the sword come, and blow not the trumpet, and the people be not warned, and 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.</VERS>\r\n      <VERS vnumber=\"7\">So thou, son of man, I have set thee a watchman unto the house of Israel; therefore hear the word at my mouth, and give them warning from me.</VERS>\r\n      <VERS vnumber=\"8\">When I say unto the wicked, O wicked man, thou shalt surely die, and 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 thy hand.</VERS>\r\n      <VERS vnumber=\"9\">Nevertheless, if thou warn the wicked of his way to turn from it, and he turn not from his way; he shall die in his iniquity, but thou hast delivered thy soul.</VERS>\r\n      <VERS vnumber=\"10\">And thou, son of man, say unto the house of Israel: Thus ye speak, saying, Our transgressions and our sins are upon us, and we pine away in them; how then can we live?</VERS>\r\n      <VERS vnumber=\"11\">Say unto them, As I live, saith the Lord Jehovah, 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?</VERS>\r\n      <VERS vnumber=\"12\">And 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; and as for the wickedness of the wicked, he shall not fall thereby in the day that he turneth from his wickedness; neither shall he that is righteous be able to live thereby in the day that he sinneth.</VERS>\r\n      <VERS vnumber=\"13\">When I say to the righteous, that he shall surely live; if he trust to his righteousness, and commit iniquity, none of his righteous deeds shall be remembered; but in his iniquity that he hath committed, therein shall he die.</VERS>\r\n      <VERS vnumber=\"14\">Again, when I say unto the wicked, Thou shalt surely die; if he turn from his sin, and do that which is lawful and right;</VERS>\r\n      <VERS vnumber=\"15\">if the wicked restore the pledge, give again that which he had taken by robbery, walk in the statutes of life, committing no iniquity; he shall surely live, he shall not die.</VERS>\r\n      <VERS vnumber=\"16\">None of his sins that he hath committed shall be remembered against him: he hath done that which is lawful and right; he shall surely live.</VERS>\r\n      <VERS vnumber=\"17\">Yet the children of thy people say, The way of the Lord is not equal: but as for them, their way is not equal.</VERS>\r\n      <VERS vnumber=\"18\">When the righteous turneth from his righteousness, and committeth iniquity, he shall even die therein.</VERS>\r\n      <VERS vnumber=\"19\">And when the wicked turneth from his wickedness, and doeth that which is lawful and right, he shall live thereby.</VERS>\r\n      <VERS vnumber=\"20\">Yet ye say, The way of the Lord is not equal. O house of Israel, I will judge you every one after his ways.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">Now the hand of Jehovah had been upon me in the evening, before he that was escaped came; and he had opened my mouth, until he came to me in the morning; and my mouth was opened, and I was no more dumb.</VERS>\r\n      <VERS vnumber=\"23\">And the word of Jehovah came unto me, saying,</VERS>\r\n      <VERS vnumber=\"24\">Son of man, they that inhabit those waste places in 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.</VERS>\r\n      <VERS vnumber=\"25\">Wherefore say unto them, Thus saith the Lord Jehovah: Ye eat with the blood, and lift up your eyes unto your idols, and shed blood: and shall ye possess the land?</VERS>\r\n      <VERS vnumber=\"26\">Ye stand upon your sword, ye work abomination, and ye defile every one his neighbor`s wife: and shall ye possess the land?</VERS>\r\n      <VERS vnumber=\"27\">Thus shalt thou say unto them, Thus saith the Lord Jehovah: As I live, surely they that are in the waste places 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 are in the strongholds and in the caves shall die of the pestilence.</VERS>\r\n      <VERS vnumber=\"28\">And I will make the land a desolation and an astonishment; and the pride of her power shall cease; and the mountains of Israel shall be desolate, so that none shall pass through.</VERS>\r\n      <VERS vnumber=\"29\">Then shall they know that I am Jehovah, when I have made the land a desolation and an astonishment, because of all their abominations which they have committed.</VERS>\r\n      <VERS vnumber=\"30\">And as for thee, son of man, the children of thy people talk of 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 Jehovah.</VERS>\r\n      <VERS vnumber=\"31\">And they come unto thee as the people cometh, and they sit before thee as my people, and they hear thy words, but do them not; for with their mouth they show much love, but their heart goeth after their gain.</VERS>\r\n      <VERS vnumber=\"32\">And, 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.</VERS>\r\n      <VERS vnumber=\"33\">And when this cometh to pass, (behold, it cometh,) then shall they know that a prophet hath been among them.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"34\">\r\n      <VERS vnumber=\"1\">And the word of Jehovah came unto me, saying,</VERS>\r\n      <VERS vnumber=\"2\">Son of man, prophesy against the shepherds of Israel, prophesy, and say unto them, even to the shepherds, Thus saith the Lord Jehovah: Woe unto the shepherds of Israel that do feed themselves! should not the shepherds feed the sheep?</VERS>\r\n      <VERS vnumber=\"3\">Ye eat the fat, and ye clothe you with the wool, ye kill the fatlings; but ye feed not the sheep.</VERS>\r\n      <VERS vnumber=\"4\">The 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 back that which was driven away, neither have ye sought that which was lost; but with force and with rigor have ye ruled over them.</VERS>\r\n      <VERS vnumber=\"5\">And they were scattered, because there was no shepherd; and they became food to all the beasts of the field, and were scattered.</VERS>\r\n      <VERS vnumber=\"6\">My sheep wandered through all the mountains, and upon every high hill: yea, my sheep were scattered upon all the face of the earth; and there was none that did search or seek [after them].</VERS>\r\n      <VERS vnumber=\"7\">Therefore, ye shepherds, hear the word of Jehovah:</VERS>\r\n      <VERS vnumber=\"8\">As I live, saith the Lord Jehovah, surely forasmuch as my sheep became a prey, and my sheep became food to all the beasts of the field, because there was no shepherd, neither did my shepherds search for my sheep, but the shepherds fed themselves, and fed not my sheep;</VERS>\r\n      <VERS vnumber=\"9\">therefore, ye shepherds, hear the word of Jehovah:</VERS>\r\n      <VERS vnumber=\"10\">Thus saith the Lord Jehovah: Behold, I am against the shepherds; and I will require my sheep at their hand, and cause them to cease from feeding the sheep; neither shall the shepherds feed themselves any more; and I will deliver my sheep from their mouth, that they may not be food for them.</VERS>\r\n      <VERS vnumber=\"11\">For thus saith the Lord Jehovah: Behold, I myself, even I, will search for my sheep, and will seek them out.</VERS>\r\n      <VERS vnumber=\"12\">As a shepherd seeketh out his flock in the day that he is among his sheep that are scattered abroad, so will I seek out my sheep; and I will deliver them out of all places whither they have been scattered in the cloudy and dark day.</VERS>\r\n      <VERS vnumber=\"13\">And I will bring them out from the peoples, and gather them from the countries, and will bring them into their own land; and I will feed them upon the mountains of Israel, by the watercourses, and in all the inhabited places of the country.</VERS>\r\n      <VERS vnumber=\"14\">I will feed them with good pasture; and upon the mountains of the height of Israel shall their fold be: there shall they lie down in a good fold; and on fat pasture shall they feed upon the mountains of Israel.</VERS>\r\n      <VERS vnumber=\"15\">I myself will be the shepherd of my sheep, and I will cause them to lie down, saith the Lord Jehovah.</VERS>\r\n      <VERS vnumber=\"16\">I will seek that which was lost, and will bring back that which was driven away, and will bind up that which was broken, and will strengthen that which was sick: but the fat and the strong I will destroy; I will feed them in justice.</VERS>\r\n      <VERS vnumber=\"17\">And as for you, O my flock, thus saith the Lord Jehovah: Behold, I judge between sheep and sheep, the rams and the he-goats.</VERS>\r\n      <VERS vnumber=\"18\">Seemeth it a small thing unto you to have fed upon the good pasture, but ye must tread down with your feet the residue of your pasture? and to have drunk of the clear waters, but ye must foul the residue with your feet?</VERS>\r\n      <VERS vnumber=\"19\">And as for my sheep, they eat that which ye have trodden with your feet, and they drink that which ye have fouled with your feet.</VERS>\r\n      <VERS vnumber=\"20\">Therefore thus saith the Lord Jehovah unto them: Behold, I, even I, will judge between the fat sheep and the lean sheep.</VERS>\r\n      <VERS vnumber=\"21\">Because ye thrust with side and with shoulder, and push all the diseased with your horns, till ye have scattered them abroad;</VERS>\r\n      <VERS vnumber=\"22\">therefore will I save my flock, and they shall no more be a prey; and I will judge between sheep and sheep.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And I, Jehovah, will be their God, and my servant David prince among them; I, Jehovah, have spoken it.</VERS>\r\n      <VERS vnumber=\"25\">And I will make with them a covenant of peace, and will cause evil beasts to cease out of the land; and they shall dwell securely in the wilderness, and sleep in the woods.</VERS>\r\n      <VERS vnumber=\"26\">And I will make them and the places round about my hill a blessing; and I will cause the shower to come down in its season; there shall be showers of blessing.</VERS>\r\n      <VERS vnumber=\"27\">And the tree of the field shall yield its fruit, and the earth shall yield its increase, and they shall be secure in their land; and they shall know that I am Jehovah, when I have broken the bars of their yoke, and have delivered them out of the hand of those that made bondmen of them.</VERS>\r\n      <VERS vnumber=\"28\">And they shall no more be a prey to the nations, neither shall the beasts of the earth devour them; but they shall dwell securely, and none shall make them afraid.</VERS>\r\n      <VERS vnumber=\"29\">And I will raise up unto them a plantation for renown, and they shall be no more consumed with famine in the land, neither bear the shame of the nations any more.</VERS>\r\n      <VERS vnumber=\"30\">And they shall know that I, Jehovah, their God am with them, and that they, the house of Israel, are my people, saith the Lord Jehovah.</VERS>\r\n      <VERS vnumber=\"31\">And ye my sheep, the sheep of my pasture, are men, and I am your God, saith the Lord Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"35\">\r\n      <VERS vnumber=\"1\">Moreover the word of Jehovah came unto me, saying,</VERS>\r\n      <VERS vnumber=\"2\">Son of man, set thy face against mount Seir, and prophesy against it,</VERS>\r\n      <VERS vnumber=\"3\">and say unto it, Thus saith the Lord Jehovah: Behold, I am against thee, O mount Seir, and I will stretch out my hand against thee, and I will make thee a desolation and an astonishment.</VERS>\r\n      <VERS vnumber=\"4\">I will lay thy cities waste, and thou shalt be desolate; and thou shalt know that I am Jehovah.</VERS>\r\n      <VERS vnumber=\"5\">Because thou hast had a perpetual enmity, and hast given over the children of Israel to the power of the sword in the time of their calamity, in the time of the iniquity of the end;</VERS>\r\n      <VERS vnumber=\"6\">therefore, as I live, saith the Lord Jehovah, I will prepare thee unto blood, and blood shall pursue thee: since thou hast not hated blood, therefore blood shall pursue thee.</VERS>\r\n      <VERS vnumber=\"7\">Thus will I make mount Seir an astonishment and a desolation; and I will cut off from it him that passeth through and him that returneth.</VERS>\r\n      <VERS vnumber=\"8\">And I will fill its mountains with its slain: in thy hills and in thy valleys and in all thy watercourses shall they fall that are slain with the sword.</VERS>\r\n      <VERS vnumber=\"9\">I will make thee a perpetual desolation, and thy cities shall not be inhabited; and ye shall know that I am Jehovah.</VERS>\r\n      <VERS vnumber=\"10\">Because thou hast said, These two nations and these two countries shall be mine, and we will possess it; whereas Jehovah was there:</VERS>\r\n      <VERS vnumber=\"11\">therefore, as I live, saith the Lord Jehovah, I will do according to thine anger, and according to thine envy which thou hast showed out of thy hatred against them; and I will make myself known among them, when I shall judge thee.</VERS>\r\n      <VERS vnumber=\"12\">And thou shalt know that I, Jehovah, have heard all thy revilings which thou hast spoken against the mountains of Israel, saying, They are laid desolate, they are given us to devour.</VERS>\r\n      <VERS vnumber=\"13\">And ye have magnified yourselves against me with your mouth, and have multiplied your words against me: I have heard it.</VERS>\r\n      <VERS vnumber=\"14\">Thus saith the Lord Jehovah: When the whole earth rejoiceth, I will make thee desolate.</VERS>\r\n      <VERS vnumber=\"15\">As thou didst rejoice over 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 Edom, even all of it; and they shall know that I am Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"36\">\r\n      <VERS vnumber=\"1\">And thou, son of man, prophesy unto the mountains of Israel, and say, Ye mountains of Israel, hear the word of Jehovah.</VERS>\r\n      <VERS vnumber=\"2\">Thus saith the Lord Jehovah: Because the enemy hath said against you, Aha! and, The ancient high places are ours in possession;</VERS>\r\n      <VERS vnumber=\"3\">therefore prophesy, and say, Thus saith the Lord Jehovah: Because, even because they have made you desolate, and swallowed you up on every side, that ye might be a possession unto the residue of the nations, and ye are taken up in the lips of talkers, and the evil report of the people;</VERS>\r\n      <VERS vnumber=\"4\">therefore, ye mountains of Israel, hear the word of the Lord Jehovah: Thus saith the Lord Jehovah to the mountains and to the hills, to the watercourses and to the valleys, to the desolate wastes and to the cities that are forsaken, which are become a prey and derision to the residue of the nations that are round about;</VERS>\r\n      <VERS vnumber=\"5\">therefore thus saith the Lord Jehovah: Surely in the fire of my jealousy have I spoken against the residue of the nations, and against all Edom, that have appointed my land unto themselves for a possession with the joy of all their heart, with despite of soul, to cast it out for a prey.</VERS>\r\n      <VERS vnumber=\"6\">Therefore prophesy concerning the land of Israel, and say unto the mountains and to the hills, to the watercourses and to the valleys, Thus saith the Lord Jehovah: Behold, I have spoken in my jealousy and in my wrath, because ye have borne the shame of the nations:</VERS>\r\n      <VERS vnumber=\"7\">therefore thus saith the Lord Jehovah: I have sworn, [saying], Surely the nations that are round about you, they shall bear their shame.</VERS>\r\n      <VERS vnumber=\"8\">But ye, O mountains of Israel, ye shall shoot forth your branches, and yield your fruit to my people Israel; for they are at hand to come.</VERS>\r\n      <VERS vnumber=\"9\">For, behold, I am for you, and I will turn into you, and ye shall be tilled and sown;</VERS>\r\n      <VERS vnumber=\"10\">and I will multiply men upon you, all the house of Israel, even all of it; and the cities shall be inhabited, and the waste places shall be builded;</VERS>\r\n      <VERS vnumber=\"11\">and I will multiply upon you man and beast; and they shall increase and be fruitful; and I will cause you to be inhabited after your former estate, and will do better [unto you] than at your beginnings: and ye shall know that I am Jehovah.</VERS>\r\n      <VERS vnumber=\"12\">Yea, 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 children.</VERS>\r\n      <VERS vnumber=\"13\">Thus saith the Lord Jehovah: Because they say unto you, Thou [land] art a devourer of men, and hast been a bereaver of thy nation;</VERS>\r\n      <VERS vnumber=\"14\">therefore thou shalt devour men no more, neither bereave thy nation any more, saith the Lord Jehovah;</VERS>\r\n      <VERS vnumber=\"15\">neither will I let thee hear any more the shame of the nations, neither shalt thou bear the reproach of the peoples any more, neither shalt thou cause thy nation to stumble any more, saith the Lord Jehovah.</VERS>\r\n      <VERS vnumber=\"16\">Moreover the word of Jehovah came unto me, saying,</VERS>\r\n      <VERS vnumber=\"17\">Son of man, when the house of Israel dwelt in their own land, they defiled it by their way and by their doings: their way before me was as the uncleanness of a woman in her impurity.</VERS>\r\n      <VERS vnumber=\"18\">Wherefore I poured out my wrath upon them for the blood which they had poured out upon the land, and because they had defiled it with their idols;</VERS>\r\n      <VERS vnumber=\"19\">and I scattered them among the nations, and they were dispersed through the countries: according to their way and according to their doings I judged them.</VERS>\r\n      <VERS vnumber=\"20\">And when they came unto the nations, whither they went, they profaned my holy name; in that men said of them, These are the people of Jehovah, and are gone forth out of his land.</VERS>\r\n      <VERS vnumber=\"21\">But I had regard for my holy name, which the house of Israel had profaned among the nations, whither they went.</VERS>\r\n      <VERS vnumber=\"22\">Therefore say unto the house of Israel, Thus saith the Lord Jehovah: I do not [this] for your sake, O house of Israel, but for my holy name, which ye have profaned among the nations, whither ye went.</VERS>\r\n      <VERS vnumber=\"23\">And I will sanctify my great name, which hath been profaned among the nations, which ye have profaned in the midst of them; and the nations shall know that I am Jehovah, saith the Lord Jehovah, when I shall be sanctified in you before their eyes.</VERS>\r\n      <VERS vnumber=\"24\">For I will take you from among the nations, and gather you out of all the countries, and will bring you into your own land.</VERS>\r\n      <VERS vnumber=\"25\">And I will sprinkle clean water upon you, and ye shall be clean: from all your filthiness, and from all your idols, will I cleanse you.</VERS>\r\n      <VERS vnumber=\"26\">A 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 a heart of flesh.</VERS>\r\n      <VERS vnumber=\"27\">And I will put my Spirit within you, and cause you to walk in my statutes, and ye shall keep mine ordinances, and do them.</VERS>\r\n      <VERS vnumber=\"28\">And ye shall dwell in the land that I gave to your fathers; and ye shall be my people, and I will be your God.</VERS>\r\n      <VERS vnumber=\"29\">And I will save you from all your uncleannesses: and I will call for the grain, and will multiply it, and lay no famine upon you.</VERS>\r\n      <VERS vnumber=\"30\">And I will multiply the fruit of the tree, and the increase of the field, that ye may receive no more the reproach of famine among the nations.</VERS>\r\n      <VERS vnumber=\"31\">Then shall ye remember your evil ways, and your doings that were not good; and ye shall loathe yourselves in your own sight for your iniquities and for your abominations.</VERS>\r\n      <VERS vnumber=\"32\">Nor for your sake do I [this], saith the Lord Jehovah, be it known unto you: be ashamed and confounded for your ways, O house of Israel.</VERS>\r\n      <VERS vnumber=\"33\">Thus saith the Lord Jehovah: In the day that I cleanse you from all your iniquities, I will cause the cities to be inhabited, and the waste places shall be builded.</VERS>\r\n      <VERS vnumber=\"34\">And the land that was desolate shall be tilled, whereas it was a desolation in the sight of all that passed by.</VERS>\r\n      <VERS vnumber=\"35\">And they shall say, This land that was desolate is become like the garden of Eden; and the waste and desolate and ruined cities are fortified and inhabited.</VERS>\r\n      <VERS vnumber=\"36\">Then the nations that are left round about you shall know that I, Jehovah, have builded the ruined places, and planted that which was desolate: I, Jehovah, have spoken it, and I will do it.</VERS>\r\n      <VERS vnumber=\"37\">Thus saith the Lord Jehovah: For this, moreover, will I be inquired of by the house of Israel, to do it for them: I will increase them with men like a flock.</VERS>\r\n      <VERS vnumber=\"38\">As the flock for sacrifice, as the flock of Jerusalem in her appointed feasts, so shall the waste cities be filled with flocks of men; and they shall know that I am Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"37\">\r\n      <VERS vnumber=\"1\">The hand of Jehovah was upon me, and he brought me out in the Spirit of Jehovah, and set me down in the midst of the valley; and it was full of bones.</VERS>\r\n      <VERS vnumber=\"2\">And he caused me to pass by them round about: and, behold, there were very many in the open valley; and, lo, they were very dry.</VERS>\r\n      <VERS vnumber=\"3\">And he said unto me, Son of man, can these bones live? And I answered, O Lord Jehovah, thou knowest.</VERS>\r\n      <VERS vnumber=\"4\">Again he said unto me, Prophesy over these bones, and say unto them, O ye dry bones, hear the word of Jehovah.</VERS>\r\n      <VERS vnumber=\"5\">Thus saith the Lord Jehovah unto these bones: Behold, I will cause breath to enter into you, and ye shall live.</VERS>\r\n      <VERS vnumber=\"6\">And 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 Jehovah.</VERS>\r\n      <VERS vnumber=\"7\">So I prophesied as I was commanded: and as I prophesied, there was a noise, and, behold, an earthquake; and the bones came together, bone to its bone.</VERS>\r\n      <VERS vnumber=\"8\">And I beheld, and, lo, there were sinews upon them, and flesh came up, and skin covered them above; but there was no breath in them.</VERS>\r\n      <VERS vnumber=\"9\">Then said he unto me, Prophesy unto the wind, prophesy, son of man, and say to the wind, Thus saith the Lord Jehovah: Come from the four winds, O breath, and breathe upon these slain, that they may live.</VERS>\r\n      <VERS vnumber=\"10\">So 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.</VERS>\r\n      <VERS vnumber=\"11\">Then he said unto me, Son of man, these bones are the whole house of Israel: behold, they say, Our bones are dried up, and our hope is lost; we are clean cut off.</VERS>\r\n      <VERS vnumber=\"12\">Therefore prophesy, and say unto them, Thus saith the Lord Jehovah: Behold, I will open your graves, and cause you to come up out of your graves, O my people; and I will bring you into the land of Israel.</VERS>\r\n      <VERS vnumber=\"13\">And ye shall know that I am Jehovah, when I have opened your graves, and caused you to come up out of your graves, O my people.</VERS>\r\n      <VERS vnumber=\"14\">And I will put my Spirit in you, and ye shall live, and I will place you in your own land: and ye shall know that I, Jehovah, have spoken it and performed it, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"15\">The word of Jehovah came again unto me, saying,</VERS>\r\n      <VERS vnumber=\"16\">And 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:</VERS>\r\n      <VERS vnumber=\"17\">and join them for thee one to another into one stick, that they may become one in thy hand.</VERS>\r\n      <VERS vnumber=\"18\">And when the children of thy people shall speak unto thee, saying, Wilt thou not show us what thou meanest by these?</VERS>\r\n      <VERS vnumber=\"19\">say unto them, Thus saith the Lord Jehovah: Behold, I will take the stick of Joseph, which is in the hand of Ephraim, and the tribes of Israel his companions; and I will put them with it, [even] with the stick of Judah, and make them one stick, and they shall be one in my hand.</VERS>\r\n      <VERS vnumber=\"20\">And the sticks whereon thou writest shall be in thy hand before their eyes.</VERS>\r\n      <VERS vnumber=\"21\">And say unto them, Thus saith the Lord Jehovah: Behold, I will take the children of Israel from among the nations, whither they are gone, and will gather them on every side, and bring them into their own land:</VERS>\r\n      <VERS vnumber=\"22\">and 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;</VERS>\r\n      <VERS vnumber=\"23\">neither 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 dwelling-places, wherein they have sinned, and will cleanse them: so shall they be my people, and I will be their God.</VERS>\r\n      <VERS vnumber=\"24\">And my servant David shall be king over them; and they all shall have one shepherd: they shall also walk in mine ordinances, and observe my statutes, and do them.</VERS>\r\n      <VERS vnumber=\"25\">And they shall dwell in the land that I have given unto Jacob my servant, wherein your fathers dwelt; and they shall dwell therein, they, and their children, and their children`s children, for ever: and David my servant shall be their prince for ever.</VERS>\r\n      <VERS vnumber=\"26\">Moreover 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.</VERS>\r\n      <VERS vnumber=\"27\">My tabernacle also shall be with them; and I will be their God, and they shall be my people.</VERS>\r\n      <VERS vnumber=\"28\">And the nations shall know that I am Jehovah that sanctifieth Israel, when my sanctuary shall be in the midst of them for evermore.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"38\">\r\n      <VERS vnumber=\"1\">And the word of Jehovah came unto me, saying,</VERS>\r\n      <VERS vnumber=\"2\">Son of man, set thy face toward Gog, of the land of Magog, the prince of Rosh, Meshech, and Tubal, and prophesy against him,</VERS>\r\n      <VERS vnumber=\"3\">and say, Thus saith the Lord Jehovah: Behold, I am against thee, O Gog, prince of Rosh, Meshech, and Tubal:</VERS>\r\n      <VERS vnumber=\"4\">and I will turn thee about, and put hooks into thy jaws, and I will bring thee forth, and all thine army, horses and horsemen, all of them clothed in full armor, a great company with buckler and shield, all of them handling swords;</VERS>\r\n      <VERS vnumber=\"5\">Persia, Cush, and Put with them, all of them with shield and helmet;</VERS>\r\n      <VERS vnumber=\"6\">Gomer, and all his hordes; the house of Togarmah in the uttermost parts of the north, and all his hordes; even many peoples with thee.</VERS>\r\n      <VERS vnumber=\"7\">Be thou prepared, yea, prepare thyself, thou, and all thy companies that are assembled unto thee, and be thou a guard unto them.</VERS>\r\n      <VERS vnumber=\"8\">After many days thou shalt be visited: in the latter years thou shalt come into the land that is brought back from the sword, that is gathered out of many peoples, upon the mountains of Israel, which have been a continual waste; but it is brought forth out of the peoples, and they shall dwell securely, all of them.</VERS>\r\n      <VERS vnumber=\"9\">And thou shalt ascend, thou shalt come like a storm, thou shalt be like a cloud to cover the land, thou, and all thy hordes, and many peoples with thee.</VERS>\r\n      <VERS vnumber=\"10\">Thus saith the Lord Jehovah: It shall come to pass in that day, that things shall come into thy mind, and thou shalt devise an evil device:</VERS>\r\n      <VERS vnumber=\"11\">and thou shalt say, I will go up to the land of unwalled villages; I will go to them that are at rest, that dwell securely, all of them dwelling without walls, and having neither bars nor gates;</VERS>\r\n      <VERS vnumber=\"12\">to take the spoil and to take the prey; to turn thy hand against the waste places that are [now] inhabited, and against the people that are gathered out of the nations, that have gotten cattle and goods, that dwell in the middle of the earth.</VERS>\r\n      <VERS vnumber=\"13\">Sheba, and Dedan, and the merchants of Tarshish, with all the young lions thereof, shall say unto thee, Art thou come to take the spoil? hast thou assembled thy company to take the prey? to carry away silver and gold, to take away cattle and goods, to take great spoil?</VERS>\r\n      <VERS vnumber=\"14\">Therefore, son of man, prophesy, and say unto Gog, Thus saith the Lord Jehovah: In that day when my people Israel dwelleth securely, shalt thou not know it?</VERS>\r\n      <VERS vnumber=\"15\">And thou shalt come from thy place out of the uttermost parts of the north, thou, and many peoples with thee, all of them riding upon horses, a great company and a mighty army;</VERS>\r\n      <VERS vnumber=\"16\">and thou shalt come up against my people Israel, as a cloud to cover the land: it shall come to pass in the latter days, that I will bring thee against my land, that the nations may know me, when I shall be sanctified in thee, O Gog, before their eyes.</VERS>\r\n      <VERS vnumber=\"17\">Thus saith the Lord Jehovah: Art thou he of whom I spake in old time by my servants the prophets of Israel, that prophesied in those days for [many] years that I would bring thee against them?</VERS>\r\n      <VERS vnumber=\"18\">And it shall come to pass in that day, when Gog shall come against the land of Israel, saith the Lord Jehovah, that my wrath shall come up into my nostrils.</VERS>\r\n      <VERS vnumber=\"19\">For 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;</VERS>\r\n      <VERS vnumber=\"20\">so that the fishes of the sea, and the birds of the heavens, 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.</VERS>\r\n      <VERS vnumber=\"21\">And I will call for a sword against him unto all my mountains, saith the Lord Jehovah: every man`s sword shall be against his brother.</VERS>\r\n      <VERS vnumber=\"22\">And with pestilence and with blood will I enter into judgment with him; and I will rain upon him, and upon his hordes, and upon the many peoples that are with him, an overflowing shower, and great hailstones, fire, and brimstone.</VERS>\r\n      <VERS vnumber=\"23\">And I will magnify myself, and sanctify myself, and I will make myself known in the eyes of many nations; and they shall know that I am Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"39\">\r\n      <VERS vnumber=\"1\">And thou, son of man, prophesy against Gog, and say, Thus saith the Lord Jehovah: Behold, I am against thee, O Gog, prince of Rosh, Meshech, and Tubal:</VERS>\r\n      <VERS vnumber=\"2\">and I will turn thee about, and will lead thee on, and will cause thee to come up from the uttermost parts of the north; and I will bring thee upon the mountains of Israel;</VERS>\r\n      <VERS vnumber=\"3\">and I will smite thy bow out of thy left hand, and will cause thine arrows to fall out of thy right hand.</VERS>\r\n      <VERS vnumber=\"4\">Thou shalt fall upon the mountains of Israel, thou, and all thy hordes, and the peoples that are with thee: I will give thee unto the ravenous birds of every sort, and to the beasts of the field to be devoured.</VERS>\r\n      <VERS vnumber=\"5\">Thou shalt fall upon the open field; for I have spoken it, saith the Lord Jehovah.</VERS>\r\n      <VERS vnumber=\"6\">And I will send a fire on Magog, and on them that dwell securely in the isles; and they shall know that I am Jehovah.</VERS>\r\n      <VERS vnumber=\"7\">And my holy name will I make known in the midst of my people Israel; neither will I suffer my holy name to be profaned any more: and the nations shall know that I am Jehovah, the Holy One in Israel.</VERS>\r\n      <VERS vnumber=\"8\">Behold, it cometh, and it shall be done, saith the Lord Jehovah; this is the day whereof I have spoken.</VERS>\r\n      <VERS vnumber=\"9\">And they that dwell in the cities of Israel shall go forth, and shall make fires of the weapons and burn them, both the shields and the bucklers, the bows and the arrows, and the handstaves, and the spears, and they shall make fires of them seven years;</VERS>\r\n      <VERS vnumber=\"10\">so that they shall take no wood out of the field, neither cut down any out of the forests; for they shall make fires of the weapons; and they shall plunder those that plundered them, and rob those that robbed them, saith the Lord Jehovah.</VERS>\r\n      <VERS vnumber=\"11\">And it shall come to pass in that day, that I will give unto Gog a place for burial in Israel, the valley of them that pass through on the east of the sea; and it shall stop them that pass through: and there shall they bury Gog and all his multitude; and they shall call it The valley of Hamon-gog.</VERS>\r\n      <VERS vnumber=\"12\">And seven months shall the house of Israel be burying them, that they may cleanse the land.</VERS>\r\n      <VERS vnumber=\"13\">Yea, all the people of the land shall bury them; and it shall be to them a renown in the day that I shall be glorified, saith the Lord Jehovah.</VERS>\r\n      <VERS vnumber=\"14\">And they shall set apart men of continual employment, that shall pass through the land, and, with them that pass through, those that bury them that remain upon the face of the land, to cleanse it: after the end of seven months shall they search.</VERS>\r\n      <VERS vnumber=\"15\">And they that pass through the land shall pass through; and 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 Hamon-gog.</VERS>\r\n      <VERS vnumber=\"16\">And Hamonah shall also be the name of a city. Thus shall they cleanse the land.</VERS>\r\n      <VERS vnumber=\"17\">And thou, son of man, thus saith the Lord Jehovah: Speak unto the birds of every sort, 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.</VERS>\r\n      <VERS vnumber=\"18\">Ye 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.</VERS>\r\n      <VERS vnumber=\"19\">And ye shall eat fat till ye be full, and drink blood till ye be drunken, of my sacrifice which I have sacrificed for you.</VERS>\r\n      <VERS vnumber=\"20\">And ye shall be filled at my table with horses and chariots, with mighty men, and with all men of war, saith the Lord Jehovah.</VERS>\r\n      <VERS vnumber=\"21\">And I will set my glory among the nations; and all the nations shall see my judgment that I have executed, and my hand that I have laid upon them.</VERS>\r\n      <VERS vnumber=\"22\">So the house of Israel shall know that I am Jehovah their God, from that day and forward.</VERS>\r\n      <VERS vnumber=\"23\">And the nations shall know that the house of Israel went into captivity for their iniquity; because they trespassed against me, and I hid my face from them: so I gave them into the hand of their adversaries, and they fell all of them by the sword.</VERS>\r\n      <VERS vnumber=\"24\">According to their uncleanness and according to their transgressions did I unto them; and I hid my face from them.</VERS>\r\n      <VERS vnumber=\"25\">Therefore thus saith the Lord Jehovah: Now will I bring back the captivity of Jacob, and have mercy upon the whole house of Israel; and I will be jealous for my holy name.</VERS>\r\n      <VERS vnumber=\"26\">And they shall bear their shame, and all their trespasses whereby they have trespassed against me, when they shall dwell securely in their land, and none shall make them afraid;</VERS>\r\n      <VERS vnumber=\"27\">when I have brought them back from the peoples, and gathered them out of their enemies` lands, and am sanctified in them in the sight of many nations.</VERS>\r\n      <VERS vnumber=\"28\">And they shall know that I am Jehovah their God, in that I caused them to go into captivity among the nations, and have gathered them unto their own land; and I will leave none of them any more there;</VERS>\r\n      <VERS vnumber=\"29\">neither will I hide my face any more from them; for I have poured out my Spirit upon the house of Israel, saith the Lord Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"40\">\r\n      <VERS vnumber=\"1\">In 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 Jehovah was upon me, and he brought me thither.</VERS>\r\n      <VERS vnumber=\"2\">In the visions of God brought he me into the land of Israel, and set me down upon a very high mountain, whereon was as it were the frame of a city on the south.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And the man said unto me, Son of man, behold with thine eyes, and hear with thine ears, and set thy heart upon all that I shall show thee; for, to the intent that I may show them unto thee, art thou brought hither: declare all that thou seest to the house of Israel.</VERS>\r\n      <VERS vnumber=\"5\">And, behold, a wall on the outside of the house round about, and in the man`s hand a measuring reed six cubits long, of a cubit and a handbreadth each: so he measured the thickness of the building, one reed; and the height, one reed.</VERS>\r\n      <VERS vnumber=\"6\">Then came he unto the gate which looketh toward the east, and went up the steps thereof: and he measured the threshold of the gate, one reed broad; and the other threshold, one reed broad.</VERS>\r\n      <VERS vnumber=\"7\">And every lodge was one reed long, and one reed broad; and [the space] between the lodges was five cubits; and the threshold of the gate by the porch of the gate toward the house was one reed.</VERS>\r\n      <VERS vnumber=\"8\">He measured also the porch of the gate toward the house, one reed.</VERS>\r\n      <VERS vnumber=\"9\">Then measured he the porch of the gate, eight cubits; and the posts thereof, two cubits; and the porch of the gate was toward the house.</VERS>\r\n      <VERS vnumber=\"10\">And the lodges 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.</VERS>\r\n      <VERS vnumber=\"11\">And he measured the breadth of the opening of the gate, ten cubits; and the length of the gate, thirteen cubits;</VERS>\r\n      <VERS vnumber=\"12\">and a border before the lodges, one cubit [on this side], and a border, one cubit on that side; and the lodges, six cubits on this side, and six cubits on that side.</VERS>\r\n      <VERS vnumber=\"13\">And he measured the gate from the roof of the one lodge to the roof of the other, a breadth of five and twenty cubits; door against door.</VERS>\r\n      <VERS vnumber=\"14\">He made also posts, threescore cubits; and the court [reached] unto the posts, round about the gate.</VERS>\r\n      <VERS vnumber=\"15\">And [from] the forefront of the gate at the entrance unto the forefront of the inner porch of the gate were fifty cubits.</VERS>\r\n      <VERS vnumber=\"16\">And there were closed windows to the lodges, 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.</VERS>\r\n      <VERS vnumber=\"17\">Then brought he me into the outer court; and, lo, there were chambers and a pavement, made for the court round about: thirty chambers were upon the pavement.</VERS>\r\n      <VERS vnumber=\"18\">And the pavement was by the side of the gates, answerable unto the length of the gates, even the lower pavement.</VERS>\r\n      <VERS vnumber=\"19\">Then he measured the breadth from the forefront of the lower gate unto the forefront of the inner court without, a hundred cubits, [both] on the east and on the north.</VERS>\r\n      <VERS vnumber=\"20\">And the gate of the outer court whose prospect is toward the north, he measured the length thereof and the breadth thereof.</VERS>\r\n      <VERS vnumber=\"21\">And the lodges 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.</VERS>\r\n      <VERS vnumber=\"22\">And the windows thereof, and the arches thereof, and the palm-trees thereof, were after the measure of the gate whose prospect is toward the east; and they went up unto it by seven steps; and the arches thereof were before them.</VERS>\r\n      <VERS vnumber=\"23\">And there was a gate to the inner court over against the [other] gate, [both] on the north and on the east; and he measured from gate to gate a hundred cubits.</VERS>\r\n      <VERS vnumber=\"24\">And he led 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And there was a gate to the inner court toward the south: and he measured from gate to gate toward the south a hundred cubits.</VERS>\r\n      <VERS vnumber=\"28\">Then he brought me to the inner court by the south gate: and he measured the south gate according to these measures;</VERS>\r\n      <VERS vnumber=\"29\">and the lodges 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.</VERS>\r\n      <VERS vnumber=\"30\">And there were arches round about, five and twenty cubits long, and five cubits broad.</VERS>\r\n      <VERS vnumber=\"31\">And the arches thereof were toward the outer court; and palm-trees were upon the posts thereof: and the ascent to it had eight steps.</VERS>\r\n      <VERS vnumber=\"32\">And he brought me into the inner court toward the east: and he measured the gate according to these measures;</VERS>\r\n      <VERS vnumber=\"33\">and the lodges thereof, and the posts thereof, and the arches thereof, 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.</VERS>\r\n      <VERS vnumber=\"34\">And the arches thereof were toward the outer court; and palm-trees were upon the posts thereof, on this side, and on that side: and the ascent to it had eight steps.</VERS>\r\n      <VERS vnumber=\"35\">And he brought me to the north gate: and he measured [it] according to these measures;</VERS>\r\n      <VERS vnumber=\"36\">the lodges thereof, the posts thereof, and the arches thereof: and there were windows therein round about; the length was fifty cubits, and the breadth five and twenty cubits.</VERS>\r\n      <VERS vnumber=\"37\">And the posts thereof were toward the outer court; and palm-trees were upon the posts thereof, on this side, and on that side: and the ascent to it had eight steps.</VERS>\r\n      <VERS vnumber=\"38\">And a chamber with the door thereof was by the posts at the gates; there they washed the burnt-offering.</VERS>\r\n      <VERS vnumber=\"39\">And 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.</VERS>\r\n      <VERS vnumber=\"40\">And on the [one] side without, as one goeth up to the entry of the gate toward the north, were two tables; and on the other side, which belonged to the porch of the gate, were two tables.</VERS>\r\n      <VERS vnumber=\"41\">Four tables were on this side, and four tables on that side, by the side of the gate; eight tables, whereupon they slew [the sacrifices].</VERS>\r\n      <VERS vnumber=\"42\">And there were four tables for the burnt-offering, of hewn stone, a cubit and a half long, and a cubit and a half broad, and one cubit high; whereupon they laid the instruments wherewith they slew the burnt-offering and the sacrifice.</VERS>\r\n      <VERS vnumber=\"43\">And the hooks, a handbreadth long, were fastened within round about: and upon the tables was the flesh of the oblation.</VERS>\r\n      <VERS vnumber=\"44\">And without the inner gate were chambers for 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.</VERS>\r\n      <VERS vnumber=\"45\">And he said unto me, This chamber, whose prospect is toward the south, is for the priests, the keepers of the charge of the house;</VERS>\r\n      <VERS vnumber=\"46\">and 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, who from among the sons of Levi come near to Jehovah to minister unto him.</VERS>\r\n      <VERS vnumber=\"47\">And he measured the court, a hundred cubits long, and a hundred cubits broad, foursquare; and the altar was before the house.</VERS>\r\n      <VERS vnumber=\"48\">Then 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.</VERS>\r\n      <VERS vnumber=\"49\">The length of the porch was twenty cubits, and the breadth eleven cubits; even 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"41\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And the breadth of the entrance was ten cubits; and the sides of the entrance 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.</VERS>\r\n      <VERS vnumber=\"3\">Then went he inward, and measured each post of the entrance, two cubits; and the entrance, six cubits; and the breadth of the entrance, seven cubits.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">Then 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.</VERS>\r\n      <VERS vnumber=\"6\">And the side-chambers were in three stories, one over another, and thirty in order; and they entered into the wall which belonged to the house for the side-chambers round about, that they might have hold [therein], and not have hold in the wall of the house.</VERS>\r\n      <VERS vnumber=\"7\">And the side-chambers were broader as they encompassed [the house] higher and higher; for the encompassing of the house went higher and higher round about the house: therefore the breadth of the house [continued] upward; and so one went up [from] the lowest [chamber] to the highest by the middle [chamber].</VERS>\r\n      <VERS vnumber=\"8\">I saw also that the house had a raised basement round about: the foundations of the side-chambers were a full reed of six great cubits.</VERS>\r\n      <VERS vnumber=\"9\">The thickness of the wall, which was for the side-chambers, on the outside, was five cubits: and that which was left was the place of the side-chambers that belonged to the house.</VERS>\r\n      <VERS vnumber=\"10\">And between the chambers was a breadth of twenty cubits round about the house on every side.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And the building that was before the separate place at the side 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.</VERS>\r\n      <VERS vnumber=\"13\">So he measured the house, a hundred cubits long; and the separate place, and the building, with the walls thereof, a hundred cubits long;</VERS>\r\n      <VERS vnumber=\"14\">also the breadth of the face of the house, and of the separate place toward the east, a hundred cubits.</VERS>\r\n      <VERS vnumber=\"15\">And he measured the length of the building before the separate place which was at the back thereof, and the galleries thereof on the one side and on the other side, a hundred cubits; and the inner temple, and the porches of the court;</VERS>\r\n      <VERS vnumber=\"16\">the thresholds, and the closed windows, and the galleries round about on their three stories, over against the threshold, ceiled with wood round about, and [from] the ground up to the windows, (now the windows were covered),</VERS>\r\n      <VERS vnumber=\"17\">to [the space] above the door, even unto the inner house, and without, and by all the wall round about within and without, by measure.</VERS>\r\n      <VERS vnumber=\"18\">And it was made with cherubim and palm-trees; and a palm-tree was between cherub and cherub, and every cherub had two faces;</VERS>\r\n      <VERS vnumber=\"19\">so that there was the face of a man toward the palm-tree on the one side, and the face of a young lion toward the palm-tree on the other side. [thus was it] made through all the house round about:</VERS>\r\n      <VERS vnumber=\"20\">from the ground unto above the door were cherubim and palm-trees made: thus was the wall of the temple.</VERS>\r\n      <VERS vnumber=\"21\">As for the temple, the door-posts were squared; and as for the face of the sanctuary, the appearance [thereof] was as the appearance [of the temple].</VERS>\r\n      <VERS vnumber=\"22\">The altar was of wood, 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 Jehovah.</VERS>\r\n      <VERS vnumber=\"23\">And the temple and the sanctuary had two doors.</VERS>\r\n      <VERS vnumber=\"24\">And the doors had two leaves [apiece], two turning leaves: two [leaves] for the one door, and two leaves for the other.</VERS>\r\n      <VERS vnumber=\"25\">And there were made on them, on the doors of the temple, cherubim and palm-trees, like as were made upon the walls; and there was a threshold of wood upon the face of the porch without.</VERS>\r\n      <VERS vnumber=\"26\">And there were closed windows and palm-trees on the one side and on the other side, on the sides of the porch: thus were the side-chambers of the house, and the thresholds.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"42\">\r\n      <VERS vnumber=\"1\">Then he brought me forth into the outer court, the way toward the north: and he brought me into the chamber that was over against the separate place, and which was over against the building toward the north.</VERS>\r\n      <VERS vnumber=\"2\">Before the length of a hundred cubits was the north door, and the breadth was fifty cubits.</VERS>\r\n      <VERS vnumber=\"3\">Over against the twenty [cubits] which belonged to the inner court, and over against the pavement which belonged to the outer court, was gallery against gallery in the third story.</VERS>\r\n      <VERS vnumber=\"4\">And before the chambers was a walk of ten cubits` breadth inward, a way of one cubit; and their doors were toward the north.</VERS>\r\n      <VERS vnumber=\"5\">Now the upper chambers were shorter; for the galleries took away from these, more than from the lower and the middlemost, in the building.</VERS>\r\n      <VERS vnumber=\"6\">For they were in three stories, and they had not pillars as the pillars of the courts: therefore [the uppermost] was straitened more than the lowest and the middlemost from the ground.</VERS>\r\n      <VERS vnumber=\"7\">And the wall that was without by the side of the chambers, toward the outer court before the chambers, the length thereof was fifty cubits.</VERS>\r\n      <VERS vnumber=\"8\">For the length of the chambers that were in the outer court was fifty cubits: and, lo, before the temple were a hundred cubits.</VERS>\r\n      <VERS vnumber=\"9\">And from under these chambers was the entry on the east side, as one goeth into them from the outer court.</VERS>\r\n      <VERS vnumber=\"10\">In the thickness of the wall of the court toward the east, before the separate place, and before the building, there were chambers.</VERS>\r\n      <VERS vnumber=\"11\">And the way before them was like the appearance of [the way of] the chambers which were toward the north; according to their length so was their breadth: and all their egresses were both according to their fashions, and according to their doors.</VERS>\r\n      <VERS vnumber=\"12\">And according to the doors of the chambers that were toward the south was a door at the head of the way, even the way directly before the wall toward the east, as one entereth into them.</VERS>\r\n      <VERS vnumber=\"13\">Then said he unto me, The north chambers and the south chambers, which are before the separate place, they are the holy chambers, where the priests that are near unto Jehovah shall eat the most holy things: there shall they lay the most holy things, and the meal-offering, and the sin-offering, and the trespass-offering; for the place is holy.</VERS>\r\n      <VERS vnumber=\"14\">When the priests enter in, then shall they not go out of the holy place into the outer court, but there they shall lay their garments wherein they minister; for they are holy: and they shall put on other garments, and shall approach to that which pertaineth to the people.</VERS>\r\n      <VERS vnumber=\"15\">Now when he had made an end of measuring the inner house, he brought me forth by the way of the gate whose prospect is toward the east, and measured it round about.</VERS>\r\n      <VERS vnumber=\"16\">He measured on the east side with the measuring reed five hundred reeds, with the measuring reed round about.</VERS>\r\n      <VERS vnumber=\"17\">He measured on the north side five hundred reeds with the measuring reed round about.</VERS>\r\n      <VERS vnumber=\"18\">He measured on the south side five hundred reeds with the measuring reed.</VERS>\r\n      <VERS vnumber=\"19\">He turned about to the west side, and measured five hundred reeds with the measuring reed.</VERS>\r\n      <VERS vnumber=\"20\">He measured it on the four sides: it had a wall round about, the length five hundred, and the breadth five hundred, to make a separation between that which was holy and that which was common.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"43\">\r\n      <VERS vnumber=\"1\">Afterward he brought me to the gate, even the gate that looketh toward the east.</VERS>\r\n      <VERS vnumber=\"2\">And, behold, the glory of the God of Israel came from the way of the east: and his voice was like the sound of many waters; and the earth shined with his glory.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And the glory of Jehovah came into the house by the way of the gate whose prospect is toward the east.</VERS>\r\n      <VERS vnumber=\"5\">And the Spirit took me up, and brought me into the inner court; and, behold, the glory of Jehovah filled the house.</VERS>\r\n      <VERS vnumber=\"6\">And I heard one speaking unto me out of the house; and a man stood by me.</VERS>\r\n      <VERS vnumber=\"7\">And he said unto me, Son of man, [this is] 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 the house of Israel shall no more defile my holy name, neither they, nor their kings, by their whoredom, and by the dead bodies of their kings [in] their high places;</VERS>\r\n      <VERS vnumber=\"8\">in their setting of their threshold by my threshold, and their door-post beside my door-post, and there was [but] the wall between me and them; and they have defiled my holy name by their abominations which they have committed: wherefore I have consumed them in mine anger.</VERS>\r\n      <VERS vnumber=\"9\">Now let them put away their whoredom, and the dead bodies of their kings, far from me; and I will dwell in the midst of them for ever.</VERS>\r\n      <VERS vnumber=\"10\">Thou, son of man, show the house to the house of Israel, that they may be ashamed of their iniquities; and let them measure the pattern.</VERS>\r\n      <VERS vnumber=\"11\">And if they be ashamed of all that they have done, make known unto them the form of the house, and the fashion thereof, and the egresses thereof, and the entrances 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.</VERS>\r\n      <VERS vnumber=\"12\">This 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.</VERS>\r\n      <VERS vnumber=\"13\">And these are the measures of the altar by cubits (the cubit is a cubit and a handbreadth): the bottom shall be a cubit, and the breadth a cubit, and the border thereof by the edge thereof round about a span; and this shall be the base of the altar.</VERS>\r\n      <VERS vnumber=\"14\">And from the bottom upon the ground to the lower ledge shall be two cubits, and the breadth one cubit; and from the lesser ledge to the greater ledge shall be four cubits, and the breadth a cubit.</VERS>\r\n      <VERS vnumber=\"15\">And the upper altar shall be four cubits; and from the altar hearth and upward there shall be four horns.</VERS>\r\n      <VERS vnumber=\"16\">And the altar hearth shall be twelve [cubits] long by twelve broad, square in the four sides thereof.</VERS>\r\n      <VERS vnumber=\"17\">And the ledge shall be fourteen [cubits] long by fourteen broad in the four sides thereof; and the border about it shall be half a cubit; and the bottom thereof shall be a cubit round about; and the steps thereof shall look toward the east.</VERS>\r\n      <VERS vnumber=\"18\">And he said unto me, Son of man, thus saith the Lord Jehovah: 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.</VERS>\r\n      <VERS vnumber=\"19\">Thou shalt give to the priests the Levites that are of the seed of Zadok, who are near unto me, to minister unto me, saith the Lord Jehovah, a young bullock for a sin-offering.</VERS>\r\n      <VERS vnumber=\"20\">And thou shalt take of the blood thereof, and put it on the four horns of it, and on the four corners of the ledge, and upon the border round about: thus shalt thou cleanse it and make atonement for it.</VERS>\r\n      <VERS vnumber=\"21\">Thou shalt also take the bullock of the sin-offering, and it shall be burnt in the appointed place of the house, without the sanctuary.</VERS>\r\n      <VERS vnumber=\"22\">And on the second day thou shalt offer a he-goat without blemish for a sin-offering; and they shall cleanse the altar, as they did cleanse it with the bullock.</VERS>\r\n      <VERS vnumber=\"23\">When 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.</VERS>\r\n      <VERS vnumber=\"24\">And thou shalt bring them near before Jehovah, and the priests shall cast salt upon them, and they shall offer them up for a burnt-offering unto Jehovah.</VERS>\r\n      <VERS vnumber=\"25\">Seven 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.</VERS>\r\n      <VERS vnumber=\"26\">Seven days shall they make atonement for the altar and purify it; so shall they consecrate it.</VERS>\r\n      <VERS vnumber=\"27\">And when they have accomplished the days, it shall be that upon the eighth day, and forward, the priests shall make your burnt-offerings upon the altar, and your peace-offerings; and I will accept you, saith the Lord Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"44\">\r\n      <VERS vnumber=\"1\">Then he brought me back by the way of the outer gate of the sanctuary, which looketh toward the east; and it was shut.</VERS>\r\n      <VERS vnumber=\"2\">And Jehovah said unto me, This gate shall be shut; it shall not be opened, neither shall any man enter in by it; for Jehovah, the God of Israel, hath entered in by it; therefore it shall be shut.</VERS>\r\n      <VERS vnumber=\"3\">As for the prince, he shall sit therein as prince to eat bread before Jehovah; he shall enter by the way of the porch of the gate, and shall go out by the way of the same.</VERS>\r\n      <VERS vnumber=\"4\">Then he brought me by the way of the north gate before the house; and I looked, and, behold, the glory of Jehovah filled the house of Jehovah: and I fell upon my face.</VERS>\r\n      <VERS vnumber=\"5\">And Jehovah 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 Jehovah, and all the laws thereof; and mark well the entrance of the house, with every egress of the sanctuary.</VERS>\r\n      <VERS vnumber=\"6\">And thou shalt say to the rebellious, even to the house of Israel, Thus saith the Lord Jehovah: O ye house of Israel, let it suffice you of all your abominations,</VERS>\r\n      <VERS vnumber=\"7\">in that ye have brought in foreigners, uncircumcised in heart and uncircumcised in flesh, to be in my sanctuary, to profane it, even my house, when ye offer my bread, the fat and the blood, and they have broken my covenant, [to add] unto all your abominations.</VERS>\r\n      <VERS vnumber=\"8\">And ye have not kept the charge of my holy things; but ye have set keepers of my charge in my sanctuary for yourselves.</VERS>\r\n      <VERS vnumber=\"9\">Thus saith the Lord Jehovah, No foreigner, uncircumcised in heart and uncircumcised in flesh, shall enter into my sanctuary, of any foreigners that are among the children of Israel.</VERS>\r\n      <VERS vnumber=\"10\">But the Levites that went far from me, when Israel went astray, that went astray from me after their idols, they shall bear their iniquity.</VERS>\r\n      <VERS vnumber=\"11\">Yet they shall be ministers in my sanctuary, having oversight at the gates of the house, and ministering in the house: they shall slay the burnt-offering and the sacrifice for the people, and they shall stand before them to minister unto them.</VERS>\r\n      <VERS vnumber=\"12\">Because they ministered unto them before their idols, and became a stumblingblock of iniquity unto the house of Israel; therefore have I lifted up my hand against them, saith the Lord Jehovah, and they shall bear their iniquity.</VERS>\r\n      <VERS vnumber=\"13\">And they shall not come near unto me, to execute the office of priest unto me, nor to come near to any of my holy things, unto the things that are most holy; but they shall bear their shame, and their abominations which they have committed.</VERS>\r\n      <VERS vnumber=\"14\">Yet will I make them keepers of the charge of the house, for all the service thereof, and for all that shall be done therein.</VERS>\r\n      <VERS vnumber=\"15\">But 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 Jehovah:</VERS>\r\n      <VERS vnumber=\"16\">they shall enter into my sanctuary, and they shall come near to my table, to minister unto me, and they shall keep my charge.</VERS>\r\n      <VERS vnumber=\"17\">And it shall be 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, while they minister in the gates of the inner court, and within.</VERS>\r\n      <VERS vnumber=\"18\">They shall have linen tires upon their heads, and shall have linen breeches upon their loins; they shall not gird themselves with [anything that causeth] sweat.</VERS>\r\n      <VERS vnumber=\"19\">And when they go forth into the outer court, even into the outer court to the people, they shall put off their garments wherein they minister, and lay them in the holy chambers; and they shall put on other garments, that they sanctify not the people with their garments.</VERS>\r\n      <VERS vnumber=\"20\">Neither shall they shave their heads, nor suffer their locks to grow long; they shall only cut off the hair of their heads.</VERS>\r\n      <VERS vnumber=\"21\">Neither shall any of the priests drink wine, when they enter into the inner court.</VERS>\r\n      <VERS vnumber=\"22\">Neither shall they take for their wives a widow, nor her that is put away; but they shall take virgins of the seed of the house of Israel, or a widow that is the widow of a priest.</VERS>\r\n      <VERS vnumber=\"23\">And they shall teach my people the difference between the holy and the common, and cause them to discern between the unclean and the clean.</VERS>\r\n      <VERS vnumber=\"24\">And in a controversy they shall stand to judge; according to mine ordinances shall they judge it: and they shall keep my laws and my statutes in all my appointed feasts; and they shall hallow my sabbaths.</VERS>\r\n      <VERS vnumber=\"25\">And they shall go in to 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.</VERS>\r\n      <VERS vnumber=\"26\">And after he is cleansed, they shall reckon unto him seven days.</VERS>\r\n      <VERS vnumber=\"27\">And in the day that he goeth into the sanctuary, into the inner court, to minister in the sanctuary, he shall offer his sin-offering, saith the Lord Jehovah.</VERS>\r\n      <VERS vnumber=\"28\">And they shall have an inheritance: I am their inheritance; and ye shall give them no possession in Israel; I am their possession.</VERS>\r\n      <VERS vnumber=\"29\">They shall eat the meal-offering, and the sin-offering, and the trespass-offering; and every devoted thing in Israel shall be theirs.</VERS>\r\n      <VERS vnumber=\"30\">And the first of all the first-fruits of every thing, and every oblation of everything, of all your oblations, shall be for the priest: ye shall also give unto the priests the first of your dough, to cause a blessing to rest on thy house.</VERS>\r\n      <VERS vnumber=\"31\">The priests shall not eat of anything that dieth of itself, or is torn, whether it be bird or beast.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"45\">\r\n      <VERS vnumber=\"1\">Moreover, when ye shall divide by lot the land for inheritance, ye shall offer an oblation unto Jehovah, a holy portion of the land; the length shall be the length of five and twenty thousand [reeds], and the breadth shall be ten thousand: it shall be holy in all the border thereof round about.</VERS>\r\n      <VERS vnumber=\"2\">Of this there shall be for the holy place five hundred [in length] by five hundred [in breadth], square round about; and fifty cubits for the suburbs thereof round about.</VERS>\r\n      <VERS vnumber=\"3\">And of this measure shalt thou measure a length of five and twenty thousand, and a breadth of ten thousand: and in it shall be the sanctuary, which is most holy.</VERS>\r\n      <VERS vnumber=\"4\">It is a holy portion of the land; it shall be for the priests, the ministers of the sanctuary, that come near to minister unto Jehovah; and it shall be a place for their houses, and a holy place for the sanctuary.</VERS>\r\n      <VERS vnumber=\"5\">And five and twenty thousand in length, and ten thousand in breadth, shall be unto the Levites, the ministers of the house, for a possession unto themselves, [for] twenty chambers.</VERS>\r\n      <VERS vnumber=\"6\">And ye shall appoint the possession of the city five thousand broad, and five and twenty thousand long, side by side with the oblation of the holy portion: it shall be for the whole house of Israel.</VERS>\r\n      <VERS vnumber=\"7\">And [whatsoever is] for the prince [shall be] on the one side and on the other side of the holy oblation and of the possession of the city, in front of the holy oblation and in front of the possession of the city, on the west side westward, and on the east side eastward; and in length answerable unto one of the portions, from the west border unto the east border.</VERS>\r\n      <VERS vnumber=\"8\">In the land it shall be to him for a possession in Israel: and my princes shall no more oppress my people; but they shall give the land to the house of Israel according to their tribes.</VERS>\r\n      <VERS vnumber=\"9\">Thus saith the Lord Jehovah: Let it suffice you, O princes of Israel: remove violence and spoil, and execute justice and righteousness; take away your exactions from my people, saith the Lord Jehovah.</VERS>\r\n      <VERS vnumber=\"10\">Ye shall have just balances, and a just ephah, and a just bath.</VERS>\r\n      <VERS vnumber=\"11\">The ephah and the bath shall be of one measure, that the bath may contain the tenth part of a homer, and the ephah the tenth part of a homer: the measure thereof shall be after the homer.</VERS>\r\n      <VERS vnumber=\"12\">And the shekel shall be twenty gerahs; twenty shekels, five and twenty shekels, fifteen shekels, shall be your maneh.</VERS>\r\n      <VERS vnumber=\"13\">This is the oblation that ye shall offer: the sixth part of an ephah from a homer of wheat; and ye shall give the sixth part of an ephah from a homer of barley;</VERS>\r\n      <VERS vnumber=\"14\">and the set portion of oil, of the bath of oil, the tenth part of a bath out of the cor, [which is] ten baths, even a homer; (for ten baths are a homer;)</VERS>\r\n      <VERS vnumber=\"15\">and one lamb of the flock, out of two hundred, from the well-watered pastures of Israel; -for a meal-offering, and for a burnt-offering, and for peace-offerings, to make atonement for them, saith the Lord Jehovah.</VERS>\r\n      <VERS vnumber=\"16\">All the people of the land shall give unto this oblation for the prince in Israel.</VERS>\r\n      <VERS vnumber=\"17\">And it shall be the prince`s part to give the burnt-offerings, and the meal-offerings, and the drink-offerings, in the feasts, and on the new moons, and on the sabbaths, in all the appointed feasts of the house of Israel: he shall prepare the sin-offering, and the meal-offering, and the burnt-offering, and the peace-offerings, to make atonement for the house of Israel.</VERS>\r\n      <VERS vnumber=\"18\">Thus saith the Lord Jehovah: In the first [month], in the first [day] of the month, thou shalt take a young bullock without blemish; and thou shalt cleanse the sanctuary.</VERS>\r\n      <VERS vnumber=\"19\">And the priest shall take of the blood of the sin-offering, and put it upon the door-posts of the house, and upon the four corners of the ledge of the altar, and upon the posts of the gate of the inner court.</VERS>\r\n      <VERS vnumber=\"20\">And so thou shalt do on the seventh [day] of the month for every one that erreth, and for him that is simple: so shall ye make atonement for the house.</VERS>\r\n      <VERS vnumber=\"21\">In 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.</VERS>\r\n      <VERS vnumber=\"22\">And upon that day shall the prince prepare for himself and for all the people of the land a bullock for a sin-offering.</VERS>\r\n      <VERS vnumber=\"23\">And the seven days of the feast he shall prepare a burnt-offering to Jehovah, seven bullocks and seven rams without blemish daily the seven days; and a he-goat daily for a sin-offering.</VERS>\r\n      <VERS vnumber=\"24\">And he shall prepare a meal-offering, an ephah for a bullock, and an ephah for a ram, and a hin of oil to an ephah.</VERS>\r\n      <VERS vnumber=\"25\">In the seventh [month], in the fifteenth day of the month, in the feast, shall he do the like the seven days; according to the sin-offering, according to the burnt-offering, and according to the meal-offering, and according to the oil.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"46\">\r\n      <VERS vnumber=\"1\">Thus saith the Lord Jehovah: The gate of the inner court that looketh toward the east shall be shut the six working days; but on the sabbath day it shall be opened, and on the day of the new moon it shall be opened.</VERS>\r\n      <VERS vnumber=\"2\">And the prince shall enter by the way of the porch of the 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.</VERS>\r\n      <VERS vnumber=\"3\">And the people of the land shall worship at the door of that gate before Jehovah on the sabbaths and on the new moons.</VERS>\r\n      <VERS vnumber=\"4\">And the burnt-offering that the prince shall offer unto Jehovah shall be on the sabbath day six lambs without blemish and a ram without blemish;</VERS>\r\n      <VERS vnumber=\"5\">and the meal-offering shall be an ephah for the ram, and the meal-offering for the lambs as he is able to give, and a hin of oil to an ephah.</VERS>\r\n      <VERS vnumber=\"6\">And on 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:</VERS>\r\n      <VERS vnumber=\"7\">and he shall prepare a meal-offering, an ephah for the bullock, and an ephah for the ram, and for the lambs according as he is able, and a hin of oil to an ephah.</VERS>\r\n      <VERS vnumber=\"8\">And when the prince shall enter, he shall go in by the way of the porch of the gate, and he shall go forth by the way thereof.</VERS>\r\n      <VERS vnumber=\"9\">But when the people of the land shall come before Jehovah in the appointed feasts, he that entereth by the way of the north gate to worship shall go forth 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 straight before him.</VERS>\r\n      <VERS vnumber=\"10\">And the prince, when they go in, shall go in in the midst of them; and when they go forth, they shall go forth [together].</VERS>\r\n      <VERS vnumber=\"11\">And in the feasts and in the solemnities the meal-offering shall be an ephah for a bullock, and an ephah for a ram, and for the lambs as he is able to give, and a hin of oil to an ephah.</VERS>\r\n      <VERS vnumber=\"12\">And when the prince shall prepare a freewill-offering, a burnt-offering or peace-offerings as a freewill-offering unto Jehovah, one shall open for him the gate that looketh toward the east; and he shall prepare his burnt-offering and his peace-offerings, as he doth on the sabbath day: then he shall go forth; and after his going forth one shall shut the gate.</VERS>\r\n      <VERS vnumber=\"13\">And thou shalt prepare a lamb a year old without blemish for a burnt-offering unto Jehovah daily: morning by morning shalt thou prepare it.</VERS>\r\n      <VERS vnumber=\"14\">And thou shalt prepare a meal-offering with it morning by morning, the sixth part of an ephah, and the third part of a hin of oil, to moisten the fine flour; a meal-offering unto Jehovah continually by a perpetual ordinance.</VERS>\r\n      <VERS vnumber=\"15\">Thus shall they prepare the lamb, and the meal-offering, and the oil, morning by morning, for a continual burnt-offering.</VERS>\r\n      <VERS vnumber=\"16\">Thus saith the Lord Jehovah: If the prince give a gift unto any of his sons, it is his inheritance, it shall belong to his sons; it is their possession by inheritance.</VERS>\r\n      <VERS vnumber=\"17\">But if he give of his inheritance a gift to one of his servants, it shall be his to the year of liberty; then it shall return to the prince; but as for his inheritance, it shall be for his sons.</VERS>\r\n      <VERS vnumber=\"18\">Moreover the prince shall not take of the people`s inheritance, to thrust them out of their possession; he shall give inheritance to his sons out of his own possession, that my people be not scattered every man from his possession.</VERS>\r\n      <VERS vnumber=\"19\">Then he brought me through the entry, which was at the side of the gate, into the holy chambers for the priests, which looked toward the north: and, behold, there was a place on the hinder part westward.</VERS>\r\n      <VERS vnumber=\"20\">And he said unto me, This is the place where the priests shall boil the trespass-offering and the sin-offering, [and] where they shall bake the meal-offering; that they bring them not forth into the outer court, to sanctify the people.</VERS>\r\n      <VERS vnumber=\"21\">Then he brought me forth into the outer 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.</VERS>\r\n      <VERS vnumber=\"22\">In the four corners of the court there were courts inclosed, forty [cubits] long and thirty broad: these four in the corners were of one measure.</VERS>\r\n      <VERS vnumber=\"23\">And there was a wall round about in them, round about the four, and boiling-places were made under the walls round about.</VERS>\r\n      <VERS vnumber=\"24\">Then said he unto me, These are the boiling-houses, where the ministers of the house shall boil the sacrifice of the people.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"47\">\r\n      <VERS vnumber=\"1\">And he brought me back 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 was toward the east;) and the waters came down from under, from the right side of the house, on the south of the altar.</VERS>\r\n      <VERS vnumber=\"2\">Then he brought me out by the way of the gate northward, and led me round by the way without unto the outer gate, by the way of [the gate] that looketh toward the east; and, behold, there ran out waters on the right side.</VERS>\r\n      <VERS vnumber=\"3\">When the man went forth eastward with the line in his hand, he measured a thousand cubits, and he caused me to pass through the waters, waters that were to the ankles.</VERS>\r\n      <VERS vnumber=\"4\">Again he measured a thousand, and caused me to pass through the waters, waters that were to the knees. Again he measured a thousand, and caused me to pass through [the waters], waters that were to the loins.</VERS>\r\n      <VERS vnumber=\"5\">Afterward he measured a thousand; [and it was] a river that I could not pass through; for the waters were risen, waters to swim in, a river that could not be passed through.</VERS>\r\n      <VERS vnumber=\"6\">And he said unto me, Son of man, hast thou seen [this]? Then he brought me, and caused me to return to the bank of the river.</VERS>\r\n      <VERS vnumber=\"7\">Now when I had returned, behold, upon the bank of the river were very many trees on the one side and on the other.</VERS>\r\n      <VERS vnumber=\"8\">Then said he unto me, These waters issue forth toward the eastern region, and shall go down into the Arabah; and they shall go toward the sea; into the sea [shall the waters go] which were made to issue forth; and the waters shall be healed.</VERS>\r\n      <VERS vnumber=\"9\">And it shall come to pass, that every living creature which swarmeth, in every place whither the rivers come, shall live; and there shall be a very great multitude of fish; for these waters are come thither, and [the waters of the sea] shall be healed, and everything shall live whithersoever the river cometh.</VERS>\r\n      <VERS vnumber=\"10\">And it shall come to pass, that fishers shall stand by it: from En-gedi even unto En-eglaim shall be a place for the spreading of nets; their fish shall be after their kinds, as the fish of the great sea, exceeding many.</VERS>\r\n      <VERS vnumber=\"11\">But the miry places thereof, and the marshes thereof, shall not be healed; they shall be given up to salt.</VERS>\r\n      <VERS vnumber=\"12\">And by the river upon the bank thereof, on this side and on that side, shall grow every tree for food, whose leaf shall not whither, neither shall the fruit thereof fail: it shall bring forth new fruit every month, because the waters thereof issue out of the sanctuary; and the fruit thereof shall be for food, and the leaf thereof for healing.</VERS>\r\n      <VERS vnumber=\"13\">Thus saith the Lord Jehovah: This shall be the border, whereby ye shall divide the land for inheritance according to the twelve tribes of Israel: Joseph [shall have two] portions.</VERS>\r\n      <VERS vnumber=\"14\">And ye shall inherit it, one as well as another; for I sware to give it unto your fathers: and this land shall fall unto you for inheritance.</VERS>\r\n      <VERS vnumber=\"15\">And this shall be the border of the land: On the north side, from the great sea, by the way of Hethlon, unto the entrance of Zedad;</VERS>\r\n      <VERS vnumber=\"16\">Hamath, Berothah, Sibraim, which is between the border of Damascus and the border of Hamath; Hazer-hatticon, which is by the border of Hauran.</VERS>\r\n      <VERS vnumber=\"17\">And the border from the sea, shall be Hazar-enon at the border of Damascus; and on the north northward is the border of Hamath. This is the north side.</VERS>\r\n      <VERS vnumber=\"18\">And the east side, between Hauran and Damascus and Gilead, and the land of Israel, shall be the Jordan; from the [north] border unto the east sea shall ye measure. This is the east side.</VERS>\r\n      <VERS vnumber=\"19\">And the south side southward shall be from Tamar as far as the waters of Meriboth-kadesh, to the brook [of Egypt], unto the great sea. This is the south side southward.</VERS>\r\n      <VERS vnumber=\"20\">And the west side shall be the great sea, from the [south] border as far as over against the entrance of Hamath. This is the west side.</VERS>\r\n      <VERS vnumber=\"21\">So shall ye divide this land unto you according to the tribes of Israel.</VERS>\r\n      <VERS vnumber=\"22\">And 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, who shall beget children among you; and they shall be unto you as the home-born among the children of Israel; they shall have inheritance with you among the tribes of Israel.</VERS>\r\n      <VERS vnumber=\"23\">And it shall come to pass, that in what tribe the stranger sojourneth, there shall ye give him his inheritance, saith the Lord Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"48\">\r\n      <VERS vnumber=\"1\">Now these are the names of the tribes: From the north end, beside the way of Hethlon to the entrance of Hamath, Hazar-enan at the border of Damascus, northward beside Hamath, (and they shall have their sides east [and] west,) Dan, one [portion].</VERS>\r\n      <VERS vnumber=\"2\">And by the border of Dan, from the east side unto the west side, Asher, one [portion].</VERS>\r\n      <VERS vnumber=\"3\">And by the border of Asher, from the east side even unto the west side, Naphtali, one [portion].</VERS>\r\n      <VERS vnumber=\"4\">And by the border of Naphtali, from the east side unto the west side, Manasseh, one [portion].</VERS>\r\n      <VERS vnumber=\"5\">And by the border of Manasseh, from the east side unto the west side, Ephraim, one [portion].</VERS>\r\n      <VERS vnumber=\"6\">And by the border of Ephraim, from the east side even unto the west side, Reuben, one [portion].</VERS>\r\n      <VERS vnumber=\"7\">And by the border of Reuben, from the east side unto the west side, Judah, one [portion].</VERS>\r\n      <VERS vnumber=\"8\">And by the border of Judah, from the east side unto the west side, shall be the oblation which ye shall offer, five and twenty thousand [reeds] in breadth, and in length as one of the portions, from the east side unto the west side: and the sanctuary shall be in the midst of it.</VERS>\r\n      <VERS vnumber=\"9\">The oblation that ye shall offer unto Jehovah shall be five and twenty thousand [reeds] in length, and ten thousand in breadth.</VERS>\r\n      <VERS vnumber=\"10\">And for these, even for the priests, shall be the 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 Jehovah shall be in the midst thereof.</VERS>\r\n      <VERS vnumber=\"11\">[It shall be] for the priests that are sanctified of the sons of Zadok, that have kept my charge, that went not astray when the children of Israel went astray, as the Levites went astray.</VERS>\r\n      <VERS vnumber=\"12\">And it shall be unto them an oblation from the oblation of the land, a thing most holy, by the border of the Levites.</VERS>\r\n      <VERS vnumber=\"13\">And answerable unto 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.</VERS>\r\n      <VERS vnumber=\"14\">And they shall sell none of it, nor exchange it, nor shall the first-fruits of the land be alienated; for it is holy unto Jehovah.</VERS>\r\n      <VERS vnumber=\"15\">And the five thousand that are left in the breadth, in front of the five and twenty thousand, shall be for common use, for the city, for dwelling and for suburbs; and the city shall be in the midst thereof.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And the city shall have suburbs: 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.</VERS>\r\n      <VERS vnumber=\"18\">And the residue in the length, answerable unto the holy oblation, shall be ten thousand eastward, and ten thousand westward; and it shall be answerable unto the holy oblation; and the increase thereof shall be for food unto them that labor in the city.</VERS>\r\n      <VERS vnumber=\"19\">And they that labor in the city, out of all the tribes of Israel, shall till it.</VERS>\r\n      <VERS vnumber=\"20\">All the oblation shall be five and twenty thousand by five and twenty thousand: ye shall offer the holy oblation four-square, with the possession of the city.</VERS>\r\n      <VERS vnumber=\"21\">And 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; in front of the five and twenty thousand of the oblation toward the east border, and westward in front of the five and twenty thousand toward the west border, answerable unto the portions, it shall be for the prince: and the holy oblation and the sanctuary of the house shall be in the midst thereof.</VERS>\r\n      <VERS vnumber=\"22\">Moreover 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, it shall be for the prince.</VERS>\r\n      <VERS vnumber=\"23\">And as for the rest of the tribes: from the east side unto the west side, Benjamin, one [portion].</VERS>\r\n      <VERS vnumber=\"24\">And by the border of Benjamin, from the east side unto the west side, Simeon, one [portion].</VERS>\r\n      <VERS vnumber=\"25\">And by the border of Simeon, from the east side unto the west side, Issachar, one [portion].</VERS>\r\n      <VERS vnumber=\"26\">And by the border of Issachar, from the east side unto the west side, Zebulun, one [portion].</VERS>\r\n      <VERS vnumber=\"27\">And by the border of Zebulun, from the east side unto the west side, Gad, one [portion].</VERS>\r\n      <VERS vnumber=\"28\">And by the border of Gad, at the south side southward, the border shall be even from Tamar unto the waters of Meribath-kadesh, to the brook [of Egypt], unto the great sea.</VERS>\r\n      <VERS vnumber=\"29\">This is the land which ye shall divide by lot unto the tribes of Israel for inheritance, and these are their several portions, saith the Lord Jehovah.</VERS>\r\n      <VERS vnumber=\"30\">And these are the egresses of the city: On the north side four thousand and five hundred [reeds] by measure;</VERS>\r\n      <VERS vnumber=\"31\">and the gates of the city shall be after the names of the tribes of Israel, three gates northward: the gate of Reuben, one; the gate of Judah, one; the gate of Levi, one.</VERS>\r\n      <VERS vnumber=\"32\">And at the east side four thousand and five hundred [reeds], and three gates: even the gate of Joseph, one; the gate of Benjamin, one; the gate of Dan, one.</VERS>\r\n      <VERS vnumber=\"33\">And at the south side four thousand and five hundred [reeds] by measure, and three gates: the gate of Simeon, one; the gate of Issachar, one; the gate of Zebulun, one.</VERS>\r\n      <VERS vnumber=\"34\">At the west side four thousand and five hundred [reeds], with their three gates: the gate of Gad, one; the gate of Asher, one; the gate of Naphtali, one.</VERS>\r\n      <VERS vnumber=\"35\">It shall be eighteen thousand [reeds] round about: and the name of the city from that day shall be, Jehovah is there.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"27\" bname=\"Daniel\" bsname=\"Dan\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">In the third year of the reign of Jehoiakim king of Judah came Nebuchadnezzar king of Babylon unto Jerusalem, and besieged it.</VERS>\r\n      <VERS vnumber=\"2\">And the Lord gave Jehoiakim king of Judah into his hand, with part of the vessels of the house of God; and he carried them into the land of Shinar to the house of his god: and he brought the vessels into the treasure-house of his god.</VERS>\r\n      <VERS vnumber=\"3\">And the king spake unto Ashpenaz the master of his eunuchs, that he should bring in [certain] of the children of Israel, even of the seed royal and of the nobles;</VERS>\r\n      <VERS vnumber=\"4\">youths in whom was no blemish, but well-favored, and skilful in all wisdom, and endued with knowledge, and understanding science, and such as had ability to stand in the king`s palace; and that he should teach them the learning and the tongue of the Chaldeans.</VERS>\r\n      <VERS vnumber=\"5\">And the king appointed for them a daily portion of the king`s dainties, and of the wine which he drank, and that they should be nourished three years; that at the end thereof they should stand before the king.</VERS>\r\n      <VERS vnumber=\"6\">Now among these were, of the children of Judah, Daniel, Hananiah, Mishael, and Azariah.</VERS>\r\n      <VERS vnumber=\"7\">And the prince of the eunuchs gave names unto them: unto Daniel he gave [the name of] Belteshazzar; and to Hananiah, [of] Shadrach; and to Mishael, [of] Meshach; and to Azariah, [of] Abed-nego.</VERS>\r\n      <VERS vnumber=\"8\">But Daniel purposed in his heart that he would not defile himself with the king`s dainties, nor with the wine which he drank: therefore he requested of the prince of the eunuchs that he might not defile himself.</VERS>\r\n      <VERS vnumber=\"9\">Now God made Daniel to find kindness and compassion in the sight of the prince of the eunuchs.</VERS>\r\n      <VERS vnumber=\"10\">And the prince of the eunuchs said unto Daniel, I fear my lord the king, who hath appointed your food and your drink: for why should he see your faces worse looking than the youths that are of your own age? so would ye endanger my head with the king.</VERS>\r\n      <VERS vnumber=\"11\">Then said Daniel to the steward whom the prince of the eunuchs had appointed over Daniel, Hananiah, Mishael, and Azariah:</VERS>\r\n      <VERS vnumber=\"12\">Prove thy servants, I beseech thee, ten days; and let them give us pulse to eat, and water to drink.</VERS>\r\n      <VERS vnumber=\"13\">Then let our countenances be looked upon before thee, and the countenance of the youths that eat of the king`s dainties; and as thou seest, deal with thy servants.</VERS>\r\n      <VERS vnumber=\"14\">So he hearkened unto them in this matter, and proved them ten days.</VERS>\r\n      <VERS vnumber=\"15\">And at the end of ten days their countenances appeared fairer, and they were fatter in flesh, than all the youths that did eat of the king`s dainties.</VERS>\r\n      <VERS vnumber=\"16\">So the steward took away their dainties, and the wine that they should drink, and gave them pulse.</VERS>\r\n      <VERS vnumber=\"17\">Now as for these four youths, God gave them knowledge and skill in all learning and wisdom: and Daniel had understanding in all visions and dreams.</VERS>\r\n      <VERS vnumber=\"18\">And at the end of the days which the king had appointed for bringing them in, the prince of the eunuchs brought them in before Nebuchadnezzar.</VERS>\r\n      <VERS vnumber=\"19\">And the king communed with them; and among them all was found none like Daniel, Hananiah, Mishael, and Azariah: therefore stood they before the king.</VERS>\r\n      <VERS vnumber=\"20\">And in every matter of wisdom and understanding, concerning which the king inquired of them, he found them ten times better than all the magicians and enchanters that were in all his realm.</VERS>\r\n      <VERS vnumber=\"21\">And Daniel continued even unto the first year of king Cyrus.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">And in the second year of the reign of Nebuchadnezzar, Nebuchadnezzar dreamed dreams; and his spirit was troubled, and his sleep went from him.</VERS>\r\n      <VERS vnumber=\"2\">Then the king commanded to call the magicians, and the enchanters, and the sorcerers, and the Chaldeans, to tell the king his dreams. So they came in and stood before the king.</VERS>\r\n      <VERS vnumber=\"3\">And the king said unto them, I have dreamed a dream, and my spirit is troubled to know the dream.</VERS>\r\n      <VERS vnumber=\"4\">Then spake the Chaldeans to the king in the Syrian language, O king, live for ever: tell thy servants the dream, and we will show the interpretation.</VERS>\r\n      <VERS vnumber=\"5\">The king answered and said to the Chaldeans, The thing is gone from me: if ye make not known unto me the dream and the interpretation thereof, ye shall be cut in pieces, and your houses shall be made a dunghill.</VERS>\r\n      <VERS vnumber=\"6\">But if ye show the dream and the interpretation thereof, ye shall receive of me gifts and rewards and great honor: therefore show me the dream and the interpretation thereof.</VERS>\r\n      <VERS vnumber=\"7\">They answered the second time and said, Let the king tell his servants the dream, and we will show the interpretation.</VERS>\r\n      <VERS vnumber=\"8\">The king answered and said, I know of a certainty that ye would gain time, because ye see the thing is gone from me.</VERS>\r\n      <VERS vnumber=\"9\">But if ye make not known unto me the dream, there is but one law 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 show me the interpretation thereof.</VERS>\r\n      <VERS vnumber=\"10\">The Chaldeans answered before the king, and said, There is not a man upon the earth that can show the king`s matter, forasmuch as no king, lord, or ruler, hath asked such a thing of any magician, or enchanter, or Chaldean.</VERS>\r\n      <VERS vnumber=\"11\">And it is a rare thing that the king requireth, and there is no other that can show it before the king, except the gods, whose dwelling is not with flesh.</VERS>\r\n      <VERS vnumber=\"12\">For this cause the king was angry and very furious, and commanded to destroy all the wise men of Babylon.</VERS>\r\n      <VERS vnumber=\"13\">So the decree went forth, and the wise men were to be slain; and they sought Daniel and his companions to be slain.</VERS>\r\n      <VERS vnumber=\"14\">Then Daniel returned answer with counsel and prudence to Arioch the captain of the king`s guard, who was gone forth to slay the wise men of Babylon;</VERS>\r\n      <VERS vnumber=\"15\">he answered and said to Arioch the king`s captain, Wherefore is the decree so urgent from the king? Then Arioch made the thing known to Daniel.</VERS>\r\n      <VERS vnumber=\"16\">And Daniel went in, and desired of the king that he would appoint him a time, and he would show the king the interpretation.</VERS>\r\n      <VERS vnumber=\"17\">Then Daniel went to his house, and made the thing known to Hananiah, Mishael, and Azariah, his companions:</VERS>\r\n      <VERS vnumber=\"18\">that they would desire mercies of the God of heaven concerning this secret; that Daniel and his companions should nor perish with the rest of the wise men of Babylon.</VERS>\r\n      <VERS vnumber=\"19\">Then was the secret revealed unto Daniel in a vision of the night. Then Daniel blessed the God of heaven.</VERS>\r\n      <VERS vnumber=\"20\">Daniel answered and said, Blessed be the name of God for ever and ever; for wisdom and might are his.</VERS>\r\n      <VERS vnumber=\"21\">And 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 have understanding;</VERS>\r\n      <VERS vnumber=\"22\">he revealeth the deep and secret things; he knoweth what is in the darkness, and the light dwelleth with him.</VERS>\r\n      <VERS vnumber=\"23\">I thank thee, and praise thee, O thou God of my fathers, who hast given me wisdom and might, and hast now made known unto me what we desired of thee; for thou hast made known unto us the king`s matter.</VERS>\r\n      <VERS vnumber=\"24\">Therefore Daniel went in unto Arioch, whom the king had appointed 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 show unto the king the interpretation.</VERS>\r\n      <VERS vnumber=\"25\">Then Arioch brought in Daniel before the king in haste, and said thus unto him, I have found a man of the children of the captivity of Judah, that will make known unto the king the interpretation.</VERS>\r\n      <VERS vnumber=\"26\">The 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?</VERS>\r\n      <VERS vnumber=\"27\">Daniel answered before the king, and said, The secret which the king hath demanded can neither wise men, enchanters, magicians, nor soothsayers, show unto the king;</VERS>\r\n      <VERS vnumber=\"28\">but there is a God in heaven that revealeth secrets, and he hath made 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:</VERS>\r\n      <VERS vnumber=\"29\">as for thee, O king, thy thoughts came [into thy mind] upon thy bed, what should come to pass hereafter; and he that revealeth secrets hath made known to thee what shall come to pass.</VERS>\r\n      <VERS vnumber=\"30\">But as for me, this secret is not revealed to me for any wisdom that I have more than any living, but to the intent that the interpretation may be made known to the king, and that thou mayest know the thoughts of thy heart.</VERS>\r\n      <VERS vnumber=\"31\">Thou, O king, sawest, and, behold, a great image. This image, which was mighty, and whose brightness was excellent, stood before thee; and the aspect thereof was terrible.</VERS>\r\n      <VERS vnumber=\"32\">As for this image, its head was of fine gold, its breast and its arms of silver, its belly and its thighs of brass,</VERS>\r\n      <VERS vnumber=\"33\">its legs of iron, its feet part of iron, and part of clay.</VERS>\r\n      <VERS vnumber=\"34\">Thou sawest till that a stone was cut out without hands, which smote the image upon its feet that were of iron and clay, and brake them in pieces.</VERS>\r\n      <VERS vnumber=\"35\">Then was the iron, the clay, the brass, the silver, and the gold, broken in pieces together, and became like the chaff of the summer threshing-floors; and the wind carried them away, so that no place was found for them: and the stone that smote the image became a great mountain, and filled the whole earth.</VERS>\r\n      <VERS vnumber=\"36\">This is the dream; and we will tell the interpretation thereof before the king.</VERS>\r\n      <VERS vnumber=\"37\">Thou, O king, art king of kings, unto whom the God of heaven hath given the kingdom, the power, and the strength, and the glory;</VERS>\r\n      <VERS vnumber=\"38\">and wheresoever the children of men dwell, the beasts of the field and the birds of the heavens hath he given into thy hand, and hath made thee to rule over them all: thou art the head of gold.</VERS>\r\n      <VERS vnumber=\"39\">And after thee shall arise another kingdom inferior to thee; and another third kingdom of brass, which shall bear rule over all the earth.</VERS>\r\n      <VERS vnumber=\"40\">And the fourth kingdom shall be strong as iron, forasmuch as iron breaketh in pieces and subdueth all things; and as iron that crusheth all these, shall it break in pieces and crush.</VERS>\r\n      <VERS vnumber=\"41\">And whereas thou sawest the feet and toes, part of potters` clay, and part of iron, it shall be a divided kingdom; but there shall be in it of the strength of the iron, forasmuch as thou sawest the iron mixed with miry clay.</VERS>\r\n      <VERS vnumber=\"42\">And as the toes of the feet were part of iron, and part of clay, so the kingdom shall be partly strong, and partly broken.</VERS>\r\n      <VERS vnumber=\"43\">And whereas thou sawest the 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 doth not mingle with clay.</VERS>\r\n      <VERS vnumber=\"44\">And in the days of those kings shall the God of heaven set up a kingdom which shall never be destroyed, nor shall the sovereignty thereof be left to another people; but it shall break in pieces and consume all these kingdoms, and it shall stand for ever.</VERS>\r\n      <VERS vnumber=\"45\">Forasmuch as thou sawest that a 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.</VERS>\r\n      <VERS vnumber=\"46\">Then the king Nebuchadnezzar fell upon his face, and worshipped Daniel, and commanded that they should offer an oblation and sweet odors unto him.</VERS>\r\n      <VERS vnumber=\"47\">The king answered unto Daniel, and said, Of a truth your God is the God of gods, and the Lord of kings, and a revealer of secrets, seeing thou hast been able to reveal this secret.</VERS>\r\n      <VERS vnumber=\"48\">Then the king made Daniel great, and gave him many great gifts, and made him to rule over the whole province of Babylon, and to be chief governor over all the wise men of Babylon.</VERS>\r\n      <VERS vnumber=\"49\">And Daniel requested of the king, and he appointed Shadrach, Meshach, and Abed-nego, over the affairs of the province of Babylon: but Daniel was in the gate of the king.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Nebuchadnezzar 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.</VERS>\r\n      <VERS vnumber=\"2\">Then Nebuchadnezzar the king sent to gather together the satraps, the deputies, and the governors, 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.</VERS>\r\n      <VERS vnumber=\"3\">Then the satraps, the deputies, and the governors, 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.</VERS>\r\n      <VERS vnumber=\"4\">Then the herald cried aloud, To you it is commanded, O peoples, nations, and languages,</VERS>\r\n      <VERS vnumber=\"5\">that at what time ye hear the sound of the cornet, flute, harp, sackbut, psaltery, dulcimer, and all kinds of music, ye fall down and worship the golden image that Nebuchadnezzar the king hath set up;</VERS>\r\n      <VERS vnumber=\"6\">and whoso falleth not down and worshippeth shall the same hour be cast into the midst of a burning fiery furnace.</VERS>\r\n      <VERS vnumber=\"7\">Therefore at that time, when all the peoples heard the sound of the cornet, flute, harp, sackbut, psaltery, and all kinds of music, all the peoples, the nations, and the languages, fell down and worshipped the golden image that Nebuchadnezzar the king had set up.</VERS>\r\n      <VERS vnumber=\"8\">Wherefore at that time certain Chaldeans came near, and brought accusation against the Jews.</VERS>\r\n      <VERS vnumber=\"9\">They answered and said to Nebuchadnezzar the king, O king, live for ever.</VERS>\r\n      <VERS vnumber=\"10\">Thou, 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 music, shall fall down and worship the golden image;</VERS>\r\n      <VERS vnumber=\"11\">and whoso falleth not down and worshippeth, shall be cast into the midst of a burning fiery furnace.</VERS>\r\n      <VERS vnumber=\"12\">There are certain Jews whom thou hast appointed over the affairs of the province of Babylon: Shadrach, Meshach, and Abed-nego; these men, O king, have not regarded thee: they serve not thy gods, nor worship the golden image which thou hast set up.</VERS>\r\n      <VERS vnumber=\"13\">Then Nebuchadnezzar in [his] rage and fury commanded to bring Shadrach, Meshach, and Abed-nego. Then they brought these men before the king.</VERS>\r\n      <VERS vnumber=\"14\">Nebuchadnezzar answered and said unto them, Is it of purpose, O Shadrach, Meshach, and Abed-nego, that ye serve not my god, nor worship the golden image which I have set up?</VERS>\r\n      <VERS vnumber=\"15\">Now 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 music, 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?</VERS>\r\n      <VERS vnumber=\"16\">Shadrach, Meshach, and Abed-nego answered and said to the king, O Nebuchadnezzar, we have no need to answer thee in this matter.</VERS>\r\n      <VERS vnumber=\"17\">If 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 thy hand, O king.</VERS>\r\n      <VERS vnumber=\"18\">But 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.</VERS>\r\n      <VERS vnumber=\"19\">Then was Nebuchadnezzar full of fury, and the form of his visage was changed against Shadrach, Meshach, and Abed-nego: [therefore] he spake, and commanded that they should heat the furnace seven times more than it was wont to be heated.</VERS>\r\n      <VERS vnumber=\"20\">And he commanded certain mighty men that were in his army to bind Shadrach, Meshach, and Abed-nego, [and] to cast them into the burning fiery furnace.</VERS>\r\n      <VERS vnumber=\"21\">Then these men were bound in their hosen, their tunics, and their mantles, and their [other] garments, and were cast into the midst of the burning fiery furnace.</VERS>\r\n      <VERS vnumber=\"22\">Therefore because the king`s commandment was urgent, and the furnace exceeding hot, the flame of the fire slew those men that took up Shadrach, Meshach, and Abed-nego.</VERS>\r\n      <VERS vnumber=\"23\">And these three men, Shadrach, Meshach, and Abed-nego, fell down bound into the midst of the burning fiery furnace.</VERS>\r\n      <VERS vnumber=\"24\">Then Nebuchadnezzar the king was astonished, and rose up in haste: he 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.</VERS>\r\n      <VERS vnumber=\"25\">He answered and said, Lo, I see four men loose, walking in the midst of the fire, and they have no hurt; and the aspect of the fourth is like a son of the gods.</VERS>\r\n      <VERS vnumber=\"26\">Then Nebuchadnezzar came near to the mouth of the burning fiery furnace: he spake and said, Shadrach, Meshach, and Abed-nego, ye servants of the Most High God, come forth, and come hither. Then Shadrach, Meshach, and Abed-nego came forth out of the midst of the fire.</VERS>\r\n      <VERS vnumber=\"27\">And the satraps, the deputies, and the governors, and the king`s counsellors, being gathered together, saw these men, that the fire had no power upon their bodies, nor was the hair of their head singed, neither were their hosen changed, nor had the smell of fire passed on them.</VERS>\r\n      <VERS vnumber=\"28\">Nebuchadnezzar spake and said, Blessed be the God of Shadrach, Meshach, and Abed-nego, who hath sent his angel, and delivered his servants that trusted in him, and have changed the king`s word, and have yielded their bodies, that they might not serve nor worship any god, except their own God.</VERS>\r\n      <VERS vnumber=\"29\">Therefore I make a decree, that every people, nation, and language, which speak anything amiss against the God of Shadrach, Meshach, and Abed-nego, shall be cut in pieces, and their houses shall be made a dunghill; because there is no other god that is able to deliver after this sort.</VERS>\r\n      <VERS vnumber=\"30\">Then the king promoted Shadrach, Meshach, and Abed-nego in the province of Babylon.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">Nebuchadnezzar the king, unto all the peoples, nations, and languages, that dwell in all the earth: Peace be multiplied unto you.</VERS>\r\n      <VERS vnumber=\"2\">It hath seemed good unto me to show the signs and wonders that the Most High God hath wrought toward me.</VERS>\r\n      <VERS vnumber=\"3\">How great are his signs! and how mighty are his wonders! his kingdom is an everlasting kingdom, and his dominion is from generation to generation.</VERS>\r\n      <VERS vnumber=\"4\">I, Nebuchadnezzar, was at rest in my house, and flourishing in my palace.</VERS>\r\n      <VERS vnumber=\"5\">I saw a dream which made me afraid; and the thoughts upon my bed and the visions of my head troubled me.</VERS>\r\n      <VERS vnumber=\"6\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"7\">Then came in the magicians, the enchanters, the Chaldeans, and the soothsayers; and I told the dream before them; but they did not make known unto me the interpretation thereof.</VERS>\r\n      <VERS vnumber=\"8\">But 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 I told the dream before him, [saying],</VERS>\r\n      <VERS vnumber=\"9\">O 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.</VERS>\r\n      <VERS vnumber=\"10\">Thus were the visions of my head upon my bed: I saw, and, behold, a tree in the midst of the earth; and the height thereof was great.</VERS>\r\n      <VERS vnumber=\"11\">The tree grew, and was strong, and the height thereof reached unto heaven, and the sight thereof to the end of all the earth.</VERS>\r\n      <VERS vnumber=\"12\">The leaves thereof were fair, and the fruit thereof much, and in it was food for all: the beasts of the field had shadow under it, and the birds of the heavens dwelt in the branches thereof, and all flesh was fed from it.</VERS>\r\n      <VERS vnumber=\"13\">I saw in the visions of my head upon my bed, and, behold, a watcher and a holy one came down from heaven.</VERS>\r\n      <VERS vnumber=\"14\">He cried aloud, and said thus, Hew down the tree, and cut off its branches, shake off its leaves, and scatter its fruit: let the beasts get away from under it, and the fowls from its branches.</VERS>\r\n      <VERS vnumber=\"15\">Nevertheless leave the stump of its 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:</VERS>\r\n      <VERS vnumber=\"16\">let his heart be changed from man`s, and let a beast`s heart be given unto him; and let seven times pass over him.</VERS>\r\n      <VERS vnumber=\"17\">The sentence 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 lowest of men.</VERS>\r\n      <VERS vnumber=\"18\">This dream I, king Nebuchadnezzar, have seen; and thou, O Belteshazzar, declare the interpretation, 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.</VERS>\r\n      <VERS vnumber=\"19\">Then Daniel, whose name was Belteshazzar, was stricken dumb for a while, and his thoughts troubled him. The king answered and said, Belteshazzar, let not the dream, or the interpretation, trouble thee. Belteshazzar answered and said, My lord, the dream be to them that hate thee, and the interpretation thereof to thine adversaries.</VERS>\r\n      <VERS vnumber=\"20\">The tree that thou sawest, which grew, and was strong, whose height reached unto heaven, and the sight thereof to all the earth;</VERS>\r\n      <VERS vnumber=\"21\">whose leaves were fair, and the fruit thereof much, and in it was food for all; under which the beasts of the field dwelt, and upon whose branches the birds of the heavens had their habitation:</VERS>\r\n      <VERS vnumber=\"22\">it 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.</VERS>\r\n      <VERS vnumber=\"23\">And whereas the king saw a watcher and a holy one coming down from heaven, and saying, Hew down the tree, and destroy it; nevertheless 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;</VERS>\r\n      <VERS vnumber=\"24\">this is the interpretation, O king, and it is the decree of the Most High, which is come upon my lord the king:</VERS>\r\n      <VERS vnumber=\"25\">that thou shalt be driven from men, and thy dwelling shall be with the beasts of the field, and thou shalt be made to eat grass as oxen, and shalt be wet 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.</VERS>\r\n      <VERS vnumber=\"26\">And whereas they commanded to leave the stump of the roots of the tree; thy kingdom shall be sure unto thee, after that thou shalt have known that the heavens do rule.</VERS>\r\n      <VERS vnumber=\"27\">Wherefore, O king, let my counsel be acceptable unto thee, and break off thy sins by righteousness, and thine iniquities by showing mercy to the poor; if there may be a lengthening of thy tranquillity.</VERS>\r\n      <VERS vnumber=\"28\">All this came upon the king Nebuchadnezzar.</VERS>\r\n      <VERS vnumber=\"29\">At the end of twelve months he was walking in the royal palace of Babylon.</VERS>\r\n      <VERS vnumber=\"30\">The king spake and said, Is not this great Babylon, which I have built for the royal dwelling-place, by the might of my power and for the glory of my majesty?</VERS>\r\n      <VERS vnumber=\"31\">While 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:</VERS>\r\n      <VERS vnumber=\"32\">and thou shalt be driven from men; and they dwelling shall be with the beasts of the field; thou shalt be made 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.</VERS>\r\n      <VERS vnumber=\"33\">The 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 hair was grown like eagles` [feathers], and his nails like birds` [claws].</VERS>\r\n      <VERS vnumber=\"34\">And 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 honored him that liveth for ever; for his dominion is an everlasting dominion, and his kingdom from generation to generation.</VERS>\r\n      <VERS vnumber=\"35\">And 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?</VERS>\r\n      <VERS vnumber=\"36\">At the same time mine understanding returned unto me; and for the glory of my kingdom, my majesty and brightness returned unto me; and my counsellors and my lords sought unto me; and I was established in my kingdom, and excellent greatness was added unto me.</VERS>\r\n      <VERS vnumber=\"37\">Now I, Nebuchadnezzar, praise and extol and honor the King of heaven; for all his works are truth, and his ways justice; and those that walk in pride he is able to abase.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">Belshazzar the king made a great feast to a thousand of his lords, and drank wine before the thousand.</VERS>\r\n      <VERS vnumber=\"2\">Belshazzar, while he tasted the wine, commanded to bring the golden and silver vessels which Nebuchadnezzar his father had taken out of the temple which was in Jerusalem; that the king and his lords, his wives and his concubines, might drink therefrom.</VERS>\r\n      <VERS vnumber=\"3\">Then 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 lords, his wives and his concubines, drank from them.</VERS>\r\n      <VERS vnumber=\"4\">They drank wine, and praised the gods of gold, and of silver, of brass, of iron, of wood, and of stone.</VERS>\r\n      <VERS vnumber=\"5\">In the same hour came forth the fingers of a man`s hand, and wrote over against the candlestick upon the plaster of the wall of the king`s palace: and the king saw the part of the hand that wrote.</VERS>\r\n      <VERS vnumber=\"6\">Then the king`s countenance was changed in him, and his thoughts troubled him; and the joints of his loins were loosed, and his knees smote one against another.</VERS>\r\n      <VERS vnumber=\"7\">The king cried aloud to bring in the enchanters, the Chaldeans, and the soothsayers. The king spake and said to the wise men of Babylon, Whosoever shall read this writing, and show me the interpretation thereof, shall be clothed with purple, and have a chain of gold about his neck, and shall be the third ruler in the kingdom.</VERS>\r\n      <VERS vnumber=\"8\">Then came in all the king`s wise men; but they could not read the writing, nor make known to the king the interpretation.</VERS>\r\n      <VERS vnumber=\"9\">Then was king Belshazzar greatly troubled, and his countenance was changed in him, and his lords were perplexed.</VERS>\r\n      <VERS vnumber=\"10\">[Now] the queen by reason of the words of the king and his lords came into the banquet house: the queen spake and said, O king, live forever; let not thy thoughts trouble thee, nor let thy countenance be changed.</VERS>\r\n      <VERS vnumber=\"11\">There 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, were found in him; and the king Nebuchadnezzar thy father, the king, [I say], thy father, made him master of the magicians, enchanters, Chaldeans, and soothsayers;</VERS>\r\n      <VERS vnumber=\"12\">forasmuch as an excellent spirit, and knowledge, and understanding, interpreting of dreams, and showing of dark sentences, and dissolving of doubts, were found in the same Daniel, whom the king named Belteshazzar. Now let Daniel be called, and he will show the interpretation.</VERS>\r\n      <VERS vnumber=\"13\">Then was Daniel brought in before the king. The king spake and said unto Daniel, Art thou that Daniel, who art of the children of the captivity of Judah, whom the king my father brought out of Judah?</VERS>\r\n      <VERS vnumber=\"14\">I have heard of thee, that the spirit of the gods is in thee, and that light and understanding and excellent wisdom are found in thee.</VERS>\r\n      <VERS vnumber=\"15\">And now the wise men, the enchanters, have been brought in before me, that they should read this writing, and make known unto me the interpretation thereof; but they could not show the interpretation of the thing.</VERS>\r\n      <VERS vnumber=\"16\">But I have heard of thee, that thou canst give interpretations, and dissolve doubts; now if thou canst read the writing, and make known to me the interpretation thereof, thou shalt be clothed with purple, and have a chain of gold about thy neck, and shalt be the third ruler in the kingdom.</VERS>\r\n      <VERS vnumber=\"17\">Then Daniel answered and said before the king, Let thy gifts be to thyself, and give thy rewards to another; nevertheless I will read the writing unto the king, and make known to him the interpretation.</VERS>\r\n      <VERS vnumber=\"18\">O thou king, the Most High God gave Nebuchadnezzar thy father the kingdom, and greatness, and glory, and majesty:</VERS>\r\n      <VERS vnumber=\"19\">and because of the greatness that he gave him, all the peoples, 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 raised up, and whom he would he put down.</VERS>\r\n      <VERS vnumber=\"20\">But when his heart was lifted up, and his spirit was hardened so that he dealt proudly, he was deposed from his kingly throne, and they took his glory from him:</VERS>\r\n      <VERS vnumber=\"21\">and he was driven from the sons of men, and his heart was made like the beasts`, and his dwelling was with the wild asses; he was fed with grass like oxen, and his body was wet with the dew of heaven; until he knew that the Most High God ruleth in the kingdom of men, and that he setteth up over it whomsoever he will.</VERS>\r\n      <VERS vnumber=\"22\">And thou his son, O Belshazzar, hast not humbled thy heart, though thou knewest all this,</VERS>\r\n      <VERS vnumber=\"23\">but 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 from 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.</VERS>\r\n      <VERS vnumber=\"24\">Then was the part of the hand sent from before him, and this writing was inscribed.</VERS>\r\n      <VERS vnumber=\"25\">And this is the writing that was inscribed: MENE, MENE, TEKEL, UPHARSIN.</VERS>\r\n      <VERS vnumber=\"26\">This is the interpretation of the thing: MENE; God hath numbered thy kingdom, and brought it to an end;</VERS>\r\n      <VERS vnumber=\"27\">TEKEL; thou art weighed in the balances, and art found wanting.</VERS>\r\n      <VERS vnumber=\"28\">PERES; thy kingdom is divided, and given to the Medes and Persians.</VERS>\r\n      <VERS vnumber=\"29\">Then commanded Belshazzar, and they clothed Daniel with purple, and put a chain of gold about his neck, and made proclamation concerning him, that he should be the third ruler in the kingdom.</VERS>\r\n      <VERS vnumber=\"30\">In that night Belshazzar the Chaldean King was slain.</VERS>\r\n      <VERS vnumber=\"31\">And Darius the Mede received the kingdom, being about threescore and two years old.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">It pleased Darius to set over the kingdom a hundred and twenty satraps, who should be throughout the whole kingdom;</VERS>\r\n      <VERS vnumber=\"2\">and over them three presidents, of whom Daniel was one; that these satraps might give account unto them, and that the king should have no damage.</VERS>\r\n      <VERS vnumber=\"3\">Then this Daniel was distinguished above the presidents and the satraps, because an excellent spirit was in him; and the king thought to set him over the whole realm.</VERS>\r\n      <VERS vnumber=\"4\">Then the presidents and the satraps sought to find occasion against Daniel as touching the kingdom; but they could find no occasion nor fault, forasmuch as he was faithful, neither was there any error or fault found in him.</VERS>\r\n      <VERS vnumber=\"5\">Then said these men, We shall not find any occasion against this Daniel, except we find it against him concerning the law of his God.</VERS>\r\n      <VERS vnumber=\"6\">Then these presidents and satraps assembled together to the king, and said thus unto him, King Darius, live for ever.</VERS>\r\n      <VERS vnumber=\"7\">All the presidents of the kingdom, the deputies and the satraps, the counsellors and the governors, have consulted together to establish a royal statute, and to make a strong interdict, 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.</VERS>\r\n      <VERS vnumber=\"8\">Now, O king, establish the interdict, and sign the writing, that it be not changed, according to the law of the Medes and Persians, which altereth not.</VERS>\r\n      <VERS vnumber=\"9\">Wherefore king Darius signed the writing and the interdict.</VERS>\r\n      <VERS vnumber=\"10\">And when Daniel knew that the writing was signed, he went into his house (now his windows were open in his chamber toward Jerusalem) and he kneeled upon his knees three times a day, and prayed, and gave thanks before his God, as he did aforetime.</VERS>\r\n      <VERS vnumber=\"11\">Then these men assembled together, and found Daniel making petition and supplication before his God.</VERS>\r\n      <VERS vnumber=\"12\">Then they came near, and spake before the king concerning the king`s interdict: Hast thou not signed an interdict, that every man that shall make petition unto any god or man within thirty days, save unto 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.</VERS>\r\n      <VERS vnumber=\"13\">Then answered they and said before the king, That Daniel, who is of the children of the captivity of Judah, regardeth not thee, O king, nor the interdict that thou hast signed, but maketh his petition three times a day.</VERS>\r\n      <VERS vnumber=\"14\">Then the king, when he heard these words, was sore displeased, and set his heart on Daniel to deliver him; and he labored till the going down of the sun to rescue him.</VERS>\r\n      <VERS vnumber=\"15\">Then these men assembled together unto the king, and said unto the king, Know, O king, that it is a law of the Medes and Persians, that no interdict nor statute which the king establisheth may be changed.</VERS>\r\n      <VERS vnumber=\"16\">Then 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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 nothing might be changed concerning Daniel.</VERS>\r\n      <VERS vnumber=\"18\">Then the king went to his palace, and passed the night fasting; neither were instruments of music brought before him: and his sleep fled from him.</VERS>\r\n      <VERS vnumber=\"19\">Then the king arose very early in the morning, and went in haste unto the den of lions.</VERS>\r\n      <VERS vnumber=\"20\">And when he came near unto the den to Daniel, he cried with a lamentable voice; 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?</VERS>\r\n      <VERS vnumber=\"21\">Then said Daniel unto the king, O king, live for ever.</VERS>\r\n      <VERS vnumber=\"22\">My God hath sent his angel, and hath shut the lions` mouths, and 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.</VERS>\r\n      <VERS vnumber=\"23\">Then was the king exceeding glad, 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 had trusted in his God.</VERS>\r\n      <VERS vnumber=\"24\">And the king commanded, and they brought those men that 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, before they came to the bottom of the den.</VERS>\r\n      <VERS vnumber=\"25\">Then king Darius wrote unto all the peoples, nations, and languages, that dwell in all the earth: Peace be multiplied unto you.</VERS>\r\n      <VERS vnumber=\"26\">I make a decree, that in all the 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.</VERS>\r\n      <VERS vnumber=\"27\">He delivereth and rescueth, and he worketh signs and wonders in heaven and in earth, who hath delivered Daniel from the power of the lions.</VERS>\r\n      <VERS vnumber=\"28\">So this Daniel prospered in the reign of Darius, and in the reign of Cyrus the Persian.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">In 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.</VERS>\r\n      <VERS vnumber=\"2\">Daniel spake and said, I saw in my vision by night, and, behold, the four winds of heaven brake forth upon the great sea.</VERS>\r\n      <VERS vnumber=\"3\">And four great beasts came up from the sea, diverse one from another.</VERS>\r\n      <VERS vnumber=\"4\">The 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 to stand upon two feet as a man; and a man`s heart was given to it.</VERS>\r\n      <VERS vnumber=\"5\">And, behold, another beast, a second, like to a bear; and it was raised up on one side, and three ribs were in its mouth between its teeth: and they said thus unto it, Arise, devour much flesh.</VERS>\r\n      <VERS vnumber=\"6\">After this I beheld, and, lo, another, like a leopard, which had upon its back four wings of a bird; the beast had also four heads; and dominion was given to it.</VERS>\r\n      <VERS vnumber=\"7\">After this I saw in the night-visions, and, behold, a fourth beast, terrible and powerful, and strong exceedingly; and it had great iron teeth; it devoured and brake in pieces, and stamped the residue with its feet: and it was diverse from all the beasts that were before it; and it had ten horns.</VERS>\r\n      <VERS vnumber=\"8\">I considered the horns, and, behold, there came up among them another horn, a little one, before which three of the first horns were plucked up by the roots: and, behold, in this horn were eyes like the eyes of a man, and a mouth speaking great things.</VERS>\r\n      <VERS vnumber=\"9\">I beheld till thrones were placed, and one that was ancient of days did sit: his raiment was white as snow, and the hair of his head like pure wool; his throne was fiery flames, [and] the wheels thereof burning fire.</VERS>\r\n      <VERS vnumber=\"10\">A fiery stream issued and came forth from before him: thousands of thousands ministered unto him, and ten thousand times ten thousand stood before him: the judgment was set, and the books were opened.</VERS>\r\n      <VERS vnumber=\"11\">I beheld at that time because of the voice of the great words which the horn spake; I beheld even till the beast was slain, and its body destroyed, and it was given to be burned with fire.</VERS>\r\n      <VERS vnumber=\"12\">And as for the rest of the beasts, their dominion was taken away: yet their lives were prolonged for a season and a time.</VERS>\r\n      <VERS vnumber=\"13\">I saw in the night-visions, and, behold, there came with the clouds of heaven one like unto a son of man, and he came even to the ancient of days, and they brought him near before him.</VERS>\r\n      <VERS vnumber=\"14\">And there was given him dominion, and glory, and a kingdom, that all the peoples, 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.</VERS>\r\n      <VERS vnumber=\"15\">As for me, Daniel, my spirit was grieved in the midst of my body, and the visions of my head troubled me.</VERS>\r\n      <VERS vnumber=\"16\">I came near unto one of them that stood by, and asked him the truth concerning all this. So he told me, and made me know the interpretation of the things.</VERS>\r\n      <VERS vnumber=\"17\">These great beasts, which are four, are four kings, that shall arise out of the earth.</VERS>\r\n      <VERS vnumber=\"18\">But the saints of the Most High shall receive the kingdom, and possess the kingdom for ever, even for ever and ever.</VERS>\r\n      <VERS vnumber=\"19\">Then I desired to know the truth concerning the fourth beast, which was diverse from all of them, exceeding terrible, whose teeth were of iron, and its nails of brass; which devoured, brake in pieces, and stamped the residue with its feet;</VERS>\r\n      <VERS vnumber=\"20\">and concerning the ten horns that were on its head, and the other [horn] which came up, and before which three fell, even that horn that had eyes, and a mouth that spake great things, whose look was more stout than its fellows.</VERS>\r\n      <VERS vnumber=\"21\">I beheld, and the same horn made war with the saints, and prevailed against them;</VERS>\r\n      <VERS vnumber=\"22\">until 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.</VERS>\r\n      <VERS vnumber=\"23\">Thus he said, The fourth beast shall be a fourth kingdom upon earth, which shall be diverse from all the kingdoms, and shall devour the whole earth, and shall tread it down, and break it in pieces.</VERS>\r\n      <VERS vnumber=\"24\">And as for the ten horns, out of this kingdom shall ten kings arise: and another shall arise after them; and he shall be diverse from the former, and he shall put down three kings.</VERS>\r\n      <VERS vnumber=\"25\">And he shall speak words against the Most High, and shall wear out the saints of the Most High; and he shall think to change the times and the law; and they shall be given into his hand until a time and times and half a time.</VERS>\r\n      <VERS vnumber=\"26\">But the judgment shall be set, and they shall take away his dominion, to consume and to destroy it unto the end.</VERS>\r\n      <VERS vnumber=\"27\">And the kingdom and the dominion, and the greatness of the kingdoms under the whole heaven, shall be given to the people of the saints of the Most High: his kingdom is an everlasting kingdom, and all dominions shall serve and obey him.</VERS>\r\n      <VERS vnumber=\"28\">Here is the end of the matter. As for me, Daniel, my thoughts much troubled me, and my countenance was changed in me: but I kept the matter in my heart.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">In 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.</VERS>\r\n      <VERS vnumber=\"2\">And I saw in the vision; now it was so, that when I saw, I was in Shushan the palace, which is in the province of Elam; and I saw in the vision, and I was by the river Ulai.</VERS>\r\n      <VERS vnumber=\"3\">Then 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.</VERS>\r\n      <VERS vnumber=\"4\">I saw the ram pushing westward, and northward, and southward; and no beasts could stand before him, neither was there any that could deliver out of his hand; but he did according to his will, and magnified himself.</VERS>\r\n      <VERS vnumber=\"5\">And as I was considering, behold, a he-goat came from the west over the face of the whole earth, and touched not the ground: and the goat had a notable horn between his eyes.</VERS>\r\n      <VERS vnumber=\"6\">And he came to the ram that had the two horns, which I saw standing before the river, and ran upon him in the fury of his power.</VERS>\r\n      <VERS vnumber=\"7\">And I saw him come close unto the ram, and he was moved with anger 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 trampled upon him; and there was none that could deliver the ram out of his hand.</VERS>\r\n      <VERS vnumber=\"8\">And the he-goat magnified himself exceedingly: and when he was strong, the great horn was broken; and instead of it there came up four notable [horns] toward the four winds of heaven.</VERS>\r\n      <VERS vnumber=\"9\">And out of one of them came forth a little horn, which waxed exceeding great, toward the south, and toward the east, and toward the glorious [land].</VERS>\r\n      <VERS vnumber=\"10\">And it waxed great, even to the host of heaven; and some of the host and of the stars it cast down to the ground, and trampled upon them.</VERS>\r\n      <VERS vnumber=\"11\">Yea, it magnified itself, even to the prince of the host; and it took away from him the continual [burnt-offering], and the place of his sanctuary was cast down.</VERS>\r\n      <VERS vnumber=\"12\">And the host was given over [to it] together with the continual [burnt-offering] through transgression; and it cast down truth to the ground, and it did [its pleasure] and prospered.</VERS>\r\n      <VERS vnumber=\"13\">Then I heard a holy one speaking; and another holy one said unto that certain one who spake, How long shall be the vision [concerning] the continual [burnt-offering], and the transgression that maketh desolate, to give both the sanctuary and the host to be trodden under foot?</VERS>\r\n      <VERS vnumber=\"14\">And he said unto me, Unto two thousand and three hundred evenings [and] mornings; then shall the sanctuary be cleansed.</VERS>\r\n      <VERS vnumber=\"15\">And it came to pass, when I, even I Daniel, had seen the vision, that I sought to understand it; and, behold, there stood before me as the appearance of a man.</VERS>\r\n      <VERS vnumber=\"16\">And I heard a man`s voice between [the banks of] the Ulai, which called, and said, Gabriel, make this man to understand the vision.</VERS>\r\n      <VERS vnumber=\"17\">So he came near where I stood; and when he came, I was affrighted, and fell upon my face: but he said unto me, Understand, O son of man; for the vision belongeth to the time of the end.</VERS>\r\n      <VERS vnumber=\"18\">Now as he was speaking with me, I fell into a deep sleep with my face toward the ground; but he touched me, and set me upright.</VERS>\r\n      <VERS vnumber=\"19\">And he said, Behold, I will make thee know what shall be in the latter time of the indignation; for it belongeth to the appointed time of the end.</VERS>\r\n      <VERS vnumber=\"20\">The ram which thou sawest, that had the two horns, they are the kings of Media and Persia.</VERS>\r\n      <VERS vnumber=\"21\">And the rough he-goat is the king of Greece: and the great horn that is between his eyes is the first king.</VERS>\r\n      <VERS vnumber=\"22\">And as for that which was broken, in the place whereof four stood up, four kingdoms shall stand up out of the nation, but not with his power.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And his power shall be mighty, but not by his own power; and he shall destroy wonderfully, and shall prosper and do [his pleasure]; and he shall destroy the mighty ones and the holy people.</VERS>\r\n      <VERS vnumber=\"25\">And through his policy he shall cause craft to prosper in his hand; and he shall magnify himself in his heart, and in [their] security shall he destroy many: he shall also stand up against the prince of princes; but he shall be broken without hand.</VERS>\r\n      <VERS vnumber=\"26\">And the vision of the evenings and mornings which hath been told is true: but shut thou up the vision; for it belongeth to many days [to come].</VERS>\r\n      <VERS vnumber=\"27\">And I, Daniel, fainted, and was sick certain days; then I rose up, and did the king`s business: and I wondered at the vision, but none understood it.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">In the first year of Darius the son of Ahasuerus, of the seed of the Medes, who was made king over the realm of the Chaldeans,</VERS>\r\n      <VERS vnumber=\"2\">in the first year of his reign I, Daniel, understood by the books the number of the years whereof the word of Jehovah came to Jeremiah the prophet, for the accomplishing of the desolations of Jerusalem, even seventy years.</VERS>\r\n      <VERS vnumber=\"3\">And I set my face unto the Lord God, to seek by prayer and supplications, with fasting and sackcloth and ashes.</VERS>\r\n      <VERS vnumber=\"4\">And I prayed unto Jehovah my God, and made confession, and said, Oh, Lord, the great and dreadful God, who keepeth covenant and lovingkindness with them that love him and keep his commandments,</VERS>\r\n      <VERS vnumber=\"5\">we have sinned, and have dealt perversely, and have done wickedly, and have rebelled, even turning aside from thy precepts and from thine ordinances;</VERS>\r\n      <VERS vnumber=\"6\">neither have we hearkened unto thy servants the prophets, that spake in thy name to our kings, our princes, and our fathers, and to all the people of the land.</VERS>\r\n      <VERS vnumber=\"7\">O Lord, righteousness belongeth unto thee, but unto us confusion of face, 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.</VERS>\r\n      <VERS vnumber=\"8\">O Lord, to us belongeth confusion of face, to our kings, to our princes, and to our fathers, because we have sinned against thee.</VERS>\r\n      <VERS vnumber=\"9\">To the Lord our God belong mercies and forgiveness; for we have rebelled against him;</VERS>\r\n      <VERS vnumber=\"10\">neither have we obeyed the voice of Jehovah our God, to walk in his laws, which he set before us by his servants the prophets.</VERS>\r\n      <VERS vnumber=\"11\">Yea, all Israel have transgressed thy law, even turning aside, that they should not obey thy voice: therefore hath the curse been poured out upon us, and the oath that is written in the law of Moses the servant of God; for we have sinned against him.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">As it is written in the law of Moses, all this evil is come upon us: yet have we not entreated the favor of Jehovah our God, that we should turn from our iniquities, and have discernment in thy truth.</VERS>\r\n      <VERS vnumber=\"14\">Therefore hath Jehovah watched over the evil, and brought it upon us; for Jehovah our God is righteous in all his works which he doeth, and we have not obeyed his voice.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">O Lord, according to all thy righteousness, let thine anger and thy wrath, I pray thee, 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 round about us.</VERS>\r\n      <VERS vnumber=\"17\">Now therefore, O our God, hearken unto the prayer of thy servant, and to his supplications, and cause thy face to shine upon thy sanctuary that is desolate, for the Lord`s sake.</VERS>\r\n      <VERS vnumber=\"18\">O 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 righteousness, but for thy great mercies` sake.</VERS>\r\n      <VERS vnumber=\"19\">O Lord, hear; O Lord, forgive; O Lord, hearken and do; defer not, for thine own sake, O my God, because thy city and thy people are called by thy name.</VERS>\r\n      <VERS vnumber=\"20\">And while I was speaking, and praying, and confessing my sin and the sin of my people Israel, and presenting my supplication before Jehovah my God for the holy mountain of my God;</VERS>\r\n      <VERS vnumber=\"21\">yea, while I was speaking in prayer, 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.</VERS>\r\n      <VERS vnumber=\"22\">And he instructed me, and talked with me, and said, O Daniel, I am now come forth to give thee wisdom and understanding.</VERS>\r\n      <VERS vnumber=\"23\">At the beginning of thy supplications the commandment went forth, and I am come to tell thee; for thou art greatly beloved: therefore consider the matter, and understand the vision.</VERS>\r\n      <VERS vnumber=\"24\">Seventy weeks are decreed upon thy people and upon thy holy city, to finish transgression, and to make an end of sins, and to make reconciliation for iniquity, and to bring in everlasting righteousness, and to seal up vision and prophecy, and to anoint the most holy.</VERS>\r\n      <VERS vnumber=\"25\">Know therefore and discern, that from the going forth of the commandment to restore and to build Jerusalem unto the anointed one, the prince, shall be seven weeks, and threescore and two weeks: it shall be built again, with street and moat, even in troublous times.</VERS>\r\n      <VERS vnumber=\"26\">And after the threescore and two weeks shall the anointed one be cut off, and shall have nothing: 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 even unto the end shall be war; desolations are determined.</VERS>\r\n      <VERS vnumber=\"27\">And he shall make a firm covenant with many for one week: and in the midst of the week he shall cause the sacrifice and the oblation to cease; and upon the wing of abominations [shall come] one that maketh desolate; and even unto the full end, and that determined, shall [wrath] be poured out upon the desolate.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">In the third year of Cyrus king of Persia a thing was revealed unto Daniel, whose name was called Belteshazzar; and the thing was true, even a great warfare: and he understood the thing, and had understanding of the vision.</VERS>\r\n      <VERS vnumber=\"2\">In those days I, Daniel, was mourning three whole weeks.</VERS>\r\n      <VERS vnumber=\"3\">I ate no pleasant bread, neither came flesh nor wine into my mouth, neither did I anoint myself at all, till three whole weeks were fulfilled.</VERS>\r\n      <VERS vnumber=\"4\">And in the four and twentieth day of the first month, as I was by the side of the great river, which is Hiddekel,</VERS>\r\n      <VERS vnumber=\"5\">I lifted up mine eyes, and looked, and, behold, a man clothed in linen, whose loins were girded with pure gold of Uphaz:</VERS>\r\n      <VERS vnumber=\"6\">his body also was like the beryl, and his face as the appearance of lightning, and his eyes as flaming torches, and his arms and his feet like unto burnished brass, and the voice of his words like the voice of a multitude.</VERS>\r\n      <VERS vnumber=\"7\">And I, Daniel, alone saw the vision; for the men that were with me saw not the vision; but a great quaking fell upon them, and they fled to hide themselves.</VERS>\r\n      <VERS vnumber=\"8\">So 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.</VERS>\r\n      <VERS vnumber=\"9\">Yet heard I the voice of his words; and when I heard the voice of his words, then was I fallen into a deep sleep on my face, with my face toward the ground.</VERS>\r\n      <VERS vnumber=\"10\">And, behold, a hand touched me, which set me upon my knees and upon the palms of my hands.</VERS>\r\n      <VERS vnumber=\"11\">And he said unto me, O Daniel, thou 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.</VERS>\r\n      <VERS vnumber=\"12\">Then said he unto me, Fear not, Daniel; for from the first day that thou didst set thy heart to understand, and to humble thyself before thy God, thy words were heard: and I am come for thy words` sake.</VERS>\r\n      <VERS vnumber=\"13\">But 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.</VERS>\r\n      <VERS vnumber=\"14\">Now I am come to make thee understand what shall befall thy people in the latter days; for the vision is yet for [many] days:</VERS>\r\n      <VERS vnumber=\"15\">and when he had spoken unto me according to these words, I set my face toward the ground, and was dumb.</VERS>\r\n      <VERS vnumber=\"16\">And, behold, one in the likeness 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 reason of the vision my sorrows are turned upon me, and I retain no strength.</VERS>\r\n      <VERS vnumber=\"17\">For 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 was there breath left in me.</VERS>\r\n      <VERS vnumber=\"18\">Then there touched me again one like the appearance of a man, and he strengthened me.</VERS>\r\n      <VERS vnumber=\"19\">And he said, O man greatly beloved, fear not: peace be unto thee, be strong, yea, be strong. And when he spake unto me, I was strengthened, and said, Let my lord speak; for thou hast strengthened me.</VERS>\r\n      <VERS vnumber=\"20\">Then said he, Knowest thou wherefore I am come unto thee? and now will I return to fight with the prince of Persia: and when I go forth, lo, the prince of Greece shall come.</VERS>\r\n      <VERS vnumber=\"21\">But I will tell thee that which is inscribed in the writing of truth: and there is none that holdeth with me against these, but Michael your prince.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">And as for me, in the first year of Darius the Mede, I stood up to confirm and strengthen him.</VERS>\r\n      <VERS vnumber=\"2\">And now will I show thee the truth. Behold, there shall stand up yet three kings in Persia; and the fourth shall be far richer than they all: and when he is waxed strong through his riches, he shall stir up all against the realm of Greece.</VERS>\r\n      <VERS vnumber=\"3\">And a mighty king shall stand up, that shall rule with great dominion, and do according to his will.</VERS>\r\n      <VERS vnumber=\"4\">And when he shall stand up, his kingdom shall be broken, and shall be divided toward the four winds of heaven, but not to his posterity, nor according to his dominion wherewith he ruled; for his kingdom shall be plucked up, even for others besides these.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And at the end of years they shall join themselves together; and the daughter of the king of the south shall come to the king of the north to make an agreement: but she shall not retain the strength of her 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 those times.</VERS>\r\n      <VERS vnumber=\"7\">But out of a shoot from her roots shall one stand up in his place, who shall come unto the army, and shall enter into the fortress of the king of the north, and shall deal against them, and shall prevail.</VERS>\r\n      <VERS vnumber=\"8\">And also their gods, with their molten images, [and] with their goodly vessels of silver and of gold, shall he carry captive into Egypt; and he shall refrain some years from the king of the north.</VERS>\r\n      <VERS vnumber=\"9\">And he shall come into the realm of the king of the south, but he shall return into his own land.</VERS>\r\n      <VERS vnumber=\"10\">And his sons shall war, and shall assemble a multitude of great forces, which shall come on, and overflow, and pass through; and they shall return and war, even to his fortress.</VERS>\r\n      <VERS vnumber=\"11\">And the king of the south shall be moved with anger, and shall come forth and fight with him, even with the king of the north; and he shall set forth a great multitude, and the multitude shall be given into his hand.</VERS>\r\n      <VERS vnumber=\"12\">And the multitude shall be lifted up, and his heart shall be exalted; and he shall cast down tens of thousands, but he shall not prevail.</VERS>\r\n      <VERS vnumber=\"13\">And the king of the north shall return, and shall set forth a multitude greater than the former; and he shall come on at the end of the times, [even of] years, with a great army and with much substance.</VERS>\r\n      <VERS vnumber=\"14\">And in those times there shall many stand up against the king of the south: also the children of the violent among thy people shall lift themselves up to establish the vision; but they shall fall.</VERS>\r\n      <VERS vnumber=\"15\">So the king of the north shall come, and cast up a mound, and take a well-fortified city: and the forces of the south shall not stand, neither his chosen people, neither shall there be any strength to stand.</VERS>\r\n      <VERS vnumber=\"16\">But 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, and in his hand shall be destruction.</VERS>\r\n      <VERS vnumber=\"17\">And he shall set his face to come with the strength of his whole kingdom, and with him equitable conditions; and he shall perform them: and he shall give him the daughter of women, to corrupt her; but she shall not stand, neither be for him.</VERS>\r\n      <VERS vnumber=\"18\">After this shall he turn his face unto the isles, and shall take many: but a prince shall cause the reproach offered by him to cease; yea, moreover, he shall cause his reproach to turn upon him.</VERS>\r\n      <VERS vnumber=\"19\">Then he shall turn his face toward the fortresses of his own land; but he shall stumble and fall, and shall not be found.</VERS>\r\n      <VERS vnumber=\"20\">Then shall stand up in his place one that shall cause an exactor to pass through the glory of the kingdom; but within few days he shall be destroyed, neither in anger, nor in battle.</VERS>\r\n      <VERS vnumber=\"21\">And in his place shall stand up a contemptible person, to whom they had not given the honor of the kingdom: but he shall come in time of security, and shall obtain the kingdom by flatteries.</VERS>\r\n      <VERS vnumber=\"22\">And the overwhelming forces shall be overwhelmed from before him, and shall be broken; yea, also the prince of the covenant.</VERS>\r\n      <VERS vnumber=\"23\">And after the league made with him he shall work deceitfully; for he shall come up, and shall become strong, with a small people.</VERS>\r\n      <VERS vnumber=\"24\">In time of security shall he come 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 prey, and spoil, and substance: yea, he shall devise his devices against the strongholds, even for a time.</VERS>\r\n      <VERS vnumber=\"25\">And 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 war in battle with an exceeding great and mighty army; but he shall not stand; for they shall devise devices against him.</VERS>\r\n      <VERS vnumber=\"26\">Yea, they that eat of his dainties shall destroy him, and his army shall overflow; and many shall fall down slain.</VERS>\r\n      <VERS vnumber=\"27\">And as for both these kings, their 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.</VERS>\r\n      <VERS vnumber=\"28\">Then shall he return into his land with great substance; and his heart [shall be] against the holy covenant; and he shall do [his pleasure], and return to his own land.</VERS>\r\n      <VERS vnumber=\"29\">At the time appointed he shall return, and come into the south; but it shall not be in the latter time as it was in the former.</VERS>\r\n      <VERS vnumber=\"30\">For ships of Kittim shall come against him; therefore he shall be grieved, and shall return, and have indignation against the holy covenant, and shall do [his pleasure]: he shall even return, and have regard unto them that forsake the holy covenant.</VERS>\r\n      <VERS vnumber=\"31\">And forces shall stand on his part, and they shall profane the sanctuary, even the fortress, and shall take away the continual [burnt-offering], and they shall set up the abomination that maketh desolate.</VERS>\r\n      <VERS vnumber=\"32\">And such as do wickedly against the covenant shall he pervert by flatteries; but the people that know their God shall be strong, and do [exploits].</VERS>\r\n      <VERS vnumber=\"33\">And they that are wise among the people shall instruct many; yet they shall fall by the sword and by flame, by captivity and by spoil, [many] days.</VERS>\r\n      <VERS vnumber=\"34\">Now when they shall fall, they shall be helped with a little help; but many shall join themselves unto them with flatteries.</VERS>\r\n      <VERS vnumber=\"35\">And some of them that are wise shall fall, to refine them, and to purify, and to make them white, even to the time of the end; because it is yet for the time appointed.</VERS>\r\n      <VERS vnumber=\"36\">And 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 he shall prosper till the indignation be accomplished; for that which is determined shall be done.</VERS>\r\n      <VERS vnumber=\"37\">Neither shall he regard the gods of his fathers, nor the desire of women, nor regard any god; for he shall magnify himself above all.</VERS>\r\n      <VERS vnumber=\"38\">But in his place shall he honor the god of fortresses; and a god whom his fathers knew not shall he honor with gold, and silver, and with precious stones, and pleasant things.</VERS>\r\n      <VERS vnumber=\"39\">And he shall deal with the strongest fortresses by the help of a foreign god: whosoever acknowledgeth [him] he will increase with glory; and he shall cause them to rule over many, and shall divide the land for a price.</VERS>\r\n      <VERS vnumber=\"40\">And at the time of the end shall the king of the south contend with 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 through.</VERS>\r\n      <VERS vnumber=\"41\">He shall enter also into the glorious land, and many [countries] shall be overthrown; but these shall be delivered out of his hand: Edom, and Moab, and the chief of the children of Ammon.</VERS>\r\n      <VERS vnumber=\"42\">He shall stretch forth his hand also upon the countries; and the land of Egypt shall not escape.</VERS>\r\n      <VERS vnumber=\"43\">But 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.</VERS>\r\n      <VERS vnumber=\"44\">But tidings out of the east and out of the north shall trouble him; and he shall go forth with great fury to destroy and utterly to sweep away many.</VERS>\r\n      <VERS vnumber=\"45\">And he shall plant the tents of his palace between the sea and the glorious holy mountain; yet he shall come to his end, and none shall help him.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">And at that time shall Michael stand up, the great prince who 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.</VERS>\r\n      <VERS vnumber=\"2\">And many of them that sleep in the dust of the earth shall awake, some to everlasting life, and some to shame and everlasting contempt.</VERS>\r\n      <VERS vnumber=\"3\">And they that are wise shall shine as the brightness of the firmament; and they that turn many to righteousness as the stars for ever and ever.</VERS>\r\n      <VERS vnumber=\"4\">But 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.</VERS>\r\n      <VERS vnumber=\"5\">Then I, Daniel, looked, and, behold, there stood other two, the one on the brink of the river on this side, and the other on the brink of the river on that side.</VERS>\r\n      <VERS vnumber=\"6\">And one said to the man clothed in linen, who was above the waters of the river, How long shall it be to the end of these wonders?</VERS>\r\n      <VERS vnumber=\"7\">And I heard the man clothed in linen, who was above 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 a half; and when they have made an end of breaking in pieces the power of the holy people, all these things shall be finished.</VERS>\r\n      <VERS vnumber=\"8\">And I heard, but I understood not: then said I, O my lord, what shall be the issue of these things?</VERS>\r\n      <VERS vnumber=\"9\">And he said, Go thy way, Daniel; for the words are shut up and sealed till the time of the end.</VERS>\r\n      <VERS vnumber=\"10\">Many shall purify themselves, and make themselves white, and be refined; but the wicked shall do wickedly; and none of the wicked shall understand; but they that are wise shall understand.</VERS>\r\n      <VERS vnumber=\"11\">And from the time that the continual [burnt-offering] shall be taken away, and the abomination that maketh desolate set up, there shall be a thousand and two hundred and ninety days.</VERS>\r\n      <VERS vnumber=\"12\">Blessed is he that waiteth, and cometh to the thousand three hundred and five and thirty days.</VERS>\r\n      <VERS vnumber=\"13\">But go thou thy way till the end be; for thou shalt rest, and shalt stand in thy lot, at the end of the days.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"28\" bname=\"Hosea\" bsname=\"Hos\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">The word of Jehovah 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.</VERS>\r\n      <VERS vnumber=\"2\">When Jehovah spake at the first by Hosea, Jehovah said unto Hosea, Go, take unto thee a wife of whoredom and children of whoredom; for the land doth commit great whoredom, [departing] from Jehovah.</VERS>\r\n      <VERS vnumber=\"3\">So he went and took Gomer the daughter of Diblaim; and she conceived, and bare him a son.</VERS>\r\n      <VERS vnumber=\"4\">And Jehovah 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 the kingdom of the house of Israel to cease.</VERS>\r\n      <VERS vnumber=\"5\">And it shall come to pass at that day, that I will break the bow of Israel in the valley of Jezreel.</VERS>\r\n      <VERS vnumber=\"6\">And she conceived again, and bare a daughter. And [Jehovah] said unto him, Call her name Lo-ruhamah; for I will no more have mercy upon the house of Israel, that I should in any wise pardon them.</VERS>\r\n      <VERS vnumber=\"7\">But I will have mercy upon the house of Judah, and will save them by Jehovah their God, and will not save them by bow, nor by sword, nor by battle, by horses, nor by horsemen.</VERS>\r\n      <VERS vnumber=\"8\">Now when she had weaned Lo-ruhamah, she conceived, and bare a son.</VERS>\r\n      <VERS vnumber=\"9\">And [Jehovah] said, Call his name Lo-ammi; for ye are not my people, and I will not be your [God].</VERS>\r\n      <VERS vnumber=\"10\">Yet 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, it shall be said unto them, [Ye are] the sons of the living God.</VERS>\r\n      <VERS vnumber=\"11\">And the children of Judah and the children of Israel shall be gathered together, and they shall appoint themselves one head, and shall go up from the land; for great shall be the day of Jezreel.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">Say ye unto your brethren, Ammi; and to your sisters, Ruhamah.</VERS>\r\n      <VERS vnumber=\"2\">Contend with your mother, contend; for she is not my wife, neither am I her husband; and let her put away her whoredoms from her face, and her adulteries from between her breasts;</VERS>\r\n      <VERS vnumber=\"3\">lest 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.</VERS>\r\n      <VERS vnumber=\"4\">Yea, upon her children will I have no mercy; for they are children of whoredom;</VERS>\r\n      <VERS vnumber=\"5\">for 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.</VERS>\r\n      <VERS vnumber=\"6\">Therefore, behold, I will hedge up thy way with thorns, and I will build a wall against her, that she shall not find her paths.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">For she did not know that I gave her the grain, and the new wine, and the oil, and multiplied unto her silver and gold, which they used for Baal.</VERS>\r\n      <VERS vnumber=\"9\">Therefore will I take back my grain in the time thereof, and my new wine in the season thereof, and will pluck away my wool and my flax which should have covered her nakedness.</VERS>\r\n      <VERS vnumber=\"10\">And now will I uncover her lewdness in the sight of her lovers, and none shall deliver her out of my hand.</VERS>\r\n      <VERS vnumber=\"11\">I will also cause all her mirth to cease, her feasts, her new moons, and her sabbaths, and all her solemn assemblies.</VERS>\r\n      <VERS vnumber=\"12\">And I will lay waste her vines and her fig-trees, whereof she hath said, These are my hire that my lovers have given me; and I will make them a forest, and the beasts of the field shall eat them.</VERS>\r\n      <VERS vnumber=\"13\">And I will visit upon her the days of the Baalim, unto which she burned incense, when she decked herself with her earrings and her jewels, and went after her lovers, and forgat me, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"14\">Therefore, behold, I will allure her, and bring her into the wilderness, and speak comfortably unto her.</VERS>\r\n      <VERS vnumber=\"15\">And I will give her her vineyards from thence, and the valley of Achor for a door of hope; and she shall make answer there, as in the days of her youth, and as in the day when she came up out of the land of Egypt.</VERS>\r\n      <VERS vnumber=\"16\">And it shall be at that day, saith Jehovah, that thou shalt call me Ishi, and shalt call me no more Baali.</VERS>\r\n      <VERS vnumber=\"17\">For I will take away the names of the Baalim out of her mouth, and they shall no more be mentioned by their name.</VERS>\r\n      <VERS vnumber=\"18\">And in that day will I make a covenant for them with the beasts of the field, and with the birds of the heavens, and with the creeping things of the ground: and I will break the bow and the sword and the battle out of the land, and will make them to lie down safely.</VERS>\r\n      <VERS vnumber=\"19\">And I will betroth thee unto me for ever; yea, I will betroth thee unto me in righteousness, and in justice, and in lovingkindness, and in mercies.</VERS>\r\n      <VERS vnumber=\"20\">I will even betroth thee unto me in faithfulness; and thou shalt know Jehovah.</VERS>\r\n      <VERS vnumber=\"21\">And it shall come to pass in that day, I will answer, saith Jehovah, I will answer the heavens, and they shall answer the earth;</VERS>\r\n      <VERS vnumber=\"22\">and the earth shall answer the grain, and the new wine, and the oil; and they shall answer Jezreel.</VERS>\r\n      <VERS vnumber=\"23\">And 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 that were not my people, Thou art my people; and they shall say, [Thou art] my God.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">And Jehovah said unto me, Go again, love a woman beloved of [her] friend, and an adulteress, even as Jehovah loveth the children of Israel, though they turn unto other gods, and love cakes of raisins.</VERS>\r\n      <VERS vnumber=\"2\">So I bought her to me for fifteen [pieces] of silver, and a homer of barley, and a half-homer of barley;</VERS>\r\n      <VERS vnumber=\"3\">and I said unto her, Thou shalt abide for me many days; thou shalt not play the harlot, and thou shalt not be any man`s wife: so will I also be toward thee.</VERS>\r\n      <VERS vnumber=\"4\">For the children of Israel shall abide many days without king, and without prince, and without sacrifice, and without pillar, and without ephod or teraphim:</VERS>\r\n      <VERS vnumber=\"5\">afterward shall the children of Israel return, and seek Jehovah their God, and David their king, and shall come with fear unto Jehovah and to his goodness in the latter days.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">Hear the word of Jehovah, ye children of Israel; for Jehovah hath a controversy with the inhabitants of the land, because there is no truth, nor goodness, nor knowledge of God in the land.</VERS>\r\n      <VERS vnumber=\"2\">There is nought but swearing and breaking faith, and killing, and stealing, and committing adultery; they break out, and blood toucheth blood.</VERS>\r\n      <VERS vnumber=\"3\">Therefore shall the land mourn, and every one that dwelleth therein shall languish, with the beasts of the field and the birds of the heavens; yea, the fishes of the sea also shall be taken away.</VERS>\r\n      <VERS vnumber=\"4\">Yet let no man strive, neither let any man reprove; for thy people are as they that strive with the priest.</VERS>\r\n      <VERS vnumber=\"5\">And thou shalt stumble in the day, and the prophet also shall stumble with thee in the night; and I will destroy thy mother.</VERS>\r\n      <VERS vnumber=\"6\">My 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 also will forget thy children.</VERS>\r\n      <VERS vnumber=\"7\">As they were multiplied, so they sinned against me: I will change their glory into shame.</VERS>\r\n      <VERS vnumber=\"8\">They feed on the sin of my people, and set their heart on their iniquity.</VERS>\r\n      <VERS vnumber=\"9\">And it shall be, like people, like priest; and I will punish them for their ways, and will requite them their doings.</VERS>\r\n      <VERS vnumber=\"10\">And they shall eat, and not have enough; they shall play the harlot, and shall not increase; because they have left off taking heed to Jehovah.</VERS>\r\n      <VERS vnumber=\"11\">Whoredom and wine and new wine take away the understanding.</VERS>\r\n      <VERS vnumber=\"12\">My people ask counsel at their stock, and their staff declareth unto them; for the spirit of whoredom hath caused them to err, and they have played the harlot, [departing] from under their God.</VERS>\r\n      <VERS vnumber=\"13\">They sacrifice upon the tops of the mountains, and burn incense upon the hills, under oaks and poplars and terebinths, because the shadow thereof is good: therefore your daughters play the harlot, and your brides commit adultery.</VERS>\r\n      <VERS vnumber=\"14\">I will not punish your daughters when they play the harlot, nor your brides when they commit adultery; for [the men] themselves go apart with harlots, and they sacrifice with the prostitutes; and the people that doth not understand shall be overthrown.</VERS>\r\n      <VERS vnumber=\"15\">Though thou, Israel, play the harlot, yet let not Judah offend; and come not ye unto Gilgal, neither go ye up to Beth-aven, nor swear, As Jehovah liveth.</VERS>\r\n      <VERS vnumber=\"16\">For Israel hath behaved himself stubbornly, like a stubborn heifer: now will Jehovah feed them as a lamb in a large place.</VERS>\r\n      <VERS vnumber=\"17\">Ephraim is joined to idols; let him alone.</VERS>\r\n      <VERS vnumber=\"18\">Their drink is become sour; they play the harlot continually; her rulers dearly love shame.</VERS>\r\n      <VERS vnumber=\"19\">The wind hath wrapped her up in its wings; and they shall be put to shame because of their sacrifices.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">Hear this, O ye priests, and hearken, O house of Israel, and give ear, O house of the king; for unto you pertaineth the judgment; for ye have been a snare at Mizpah, and a net spread upon Tabor.</VERS>\r\n      <VERS vnumber=\"2\">And the revolters are gone deep in making slaughter; but I am a rebuker of them all.</VERS>\r\n      <VERS vnumber=\"3\">I know Ephraim, and Israel is not hid from me; for now, O Ephraim, thou hast played the harlot, Israel is defiled.</VERS>\r\n      <VERS vnumber=\"4\">Their doings will not suffer them to turn unto their God; for the spirit of whoredom is within them, and they know not Jehovah.</VERS>\r\n      <VERS vnumber=\"5\">And the pride of Israel doth testify to his face: therefore Israel and Ephraim shall stumble in their iniquity; Judah also shall stumble with them.</VERS>\r\n      <VERS vnumber=\"6\">They shall go with their flocks and with their herds to seek Jehovah; but they shall not find him: he hath withdrawn himself from them.</VERS>\r\n      <VERS vnumber=\"7\">They have dealt treacherously against Jehovah; for they have borne strange children: now shall the new moon devour them with their fields.</VERS>\r\n      <VERS vnumber=\"8\">Blow ye the cornet in Gibeah, and the trumpet in Ramah: sound an alarm at Beth-aven; behind thee, O Benjamin.</VERS>\r\n      <VERS vnumber=\"9\">Ephraim shall become a desolation in the day of rebuke: among the tribes of Israel have I made known that which shall surely be.</VERS>\r\n      <VERS vnumber=\"10\">The princes of Judah are like them that remove the landmark: I will pour out my wrath upon them like water.</VERS>\r\n      <VERS vnumber=\"11\">Ephraim is oppressed, he is crushed in judgment; because he was content to walk after [man`s] command.</VERS>\r\n      <VERS vnumber=\"12\">Therefore am I unto Ephraim as a moth, and to the house of Judah as rottenness.</VERS>\r\n      <VERS vnumber=\"13\">When Ephraim saw his sickness, and Judah [saw] his wound, then went Ephraim to Assyria, and sent to king Jareb: but he is not able to heal you, neither will he cure you of your wound.</VERS>\r\n      <VERS vnumber=\"14\">For 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 carry off, and there shall be none to deliver.</VERS>\r\n      <VERS vnumber=\"15\">I will go and return to my place, till they acknowledge their offence, and seek my face: in their affliction they will seek me earnestly.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">Come, and let us return unto Jehovah; for he hath torn, and he will heal us; he hath smitten, and he will bind us up.</VERS>\r\n      <VERS vnumber=\"2\">After two days will he revive us: on the third day he will raise us up, and we shall live before him.</VERS>\r\n      <VERS vnumber=\"3\">And let us know, let us follow on to know Jehovah: his going forth is sure as the morning; and he will come unto us as the rain, as the latter rain that watereth the earth.</VERS>\r\n      <VERS vnumber=\"4\">O 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 dew that goeth early away.</VERS>\r\n      <VERS vnumber=\"5\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"6\">For I desire goodness, and not sacrifice; and the knowledge of God more than burnt-offerings.</VERS>\r\n      <VERS vnumber=\"7\">But they like Adam have transgressed the covenant: there have they dealt treacherously against me.</VERS>\r\n      <VERS vnumber=\"8\">Gilead is a city of them that work iniquity; it is stained with blood.</VERS>\r\n      <VERS vnumber=\"9\">And as troops of robbers wait for a man, so the company of priests murder in the way toward Shechem; yea, they have committed lewdness.</VERS>\r\n      <VERS vnumber=\"10\">In the house of Israel I have seen a horrible thing: there whoredom is [found] in Ephraim, Israel is defiled.</VERS>\r\n      <VERS vnumber=\"11\">Also, O Judah, there is a harvest appointed for thee, when I bring back the captivity of my people.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">When I would heal Israel, then is the iniquity of Ephraim uncovered, and the wickedness of Samaria; for they commit falsehood, and the thief entereth in, and the troop of robbers ravageth without.</VERS>\r\n      <VERS vnumber=\"2\">And they consider not in their hearts that I remember all their wickedness: now have their own doings beset them about; they are before my face.</VERS>\r\n      <VERS vnumber=\"3\">They make the king glad with their wickedness, and the princes with their lies.</VERS>\r\n      <VERS vnumber=\"4\">They are all adulterers; they are as an oven heated by the baker; he ceaseth to stir [the fire], from the kneading of the dough, until it be leavened.</VERS>\r\n      <VERS vnumber=\"5\">On the day of our king the princes made themselves sick with the heat of wine; he stretched out his hand with scoffers.</VERS>\r\n      <VERS vnumber=\"6\">For they have made ready their heart like an oven, while they lie in wait: their baker sleepeth all the night; in the morning it burneth as a flaming fire.</VERS>\r\n      <VERS vnumber=\"7\">They are all hot as an oven, and devour their judges; all their kings are fallen: there is none among them that calleth unto me.</VERS>\r\n      <VERS vnumber=\"8\">Ephraim, he mixeth himself among the peoples; Ephraim is a cake not turned.</VERS>\r\n      <VERS vnumber=\"9\">Strangers have devoured his strength, and he knoweth [it] not: yea, gray hairs are here and there upon him, and he knoweth [it] not.</VERS>\r\n      <VERS vnumber=\"10\">And the pride of Israel doth testify to his face: yet they have not returned unto Jehovah their God, nor sought him, for all this.</VERS>\r\n      <VERS vnumber=\"11\">And Ephraim is like a silly dove, without understanding: they call unto Egypt, they go to Assyria.</VERS>\r\n      <VERS vnumber=\"12\">When they shall go, I will spread my net upon them; I will bring them down as the birds of the heavens; I will chastise them, as their congregation hath heard.</VERS>\r\n      <VERS vnumber=\"13\">Woe unto them! for they have wandered from me; destruction unto them! for they have trespassed against me: though I would redeem them, yet they have spoken lies against me.</VERS>\r\n      <VERS vnumber=\"14\">And they have not cried unto me with their heart, but they howl upon their beds: they assemble themselves for grain and new wine; they rebel against me.</VERS>\r\n      <VERS vnumber=\"15\">Though I have taught and strengthened their arms, yet do they devise mischief against me.</VERS>\r\n      <VERS vnumber=\"16\">They return, but not to [him that is] on 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">[Set] the trumpet to thy mouth. As an eagle [he cometh] against the house of Jehovah, because they have transgressed my covenant, and trespassed against my law.</VERS>\r\n      <VERS vnumber=\"2\">They shall cry unto me, My God, we Israel know thee.</VERS>\r\n      <VERS vnumber=\"3\">Israel hath cast off that which is good: the enemy shall pursue him.</VERS>\r\n      <VERS vnumber=\"4\">They 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.</VERS>\r\n      <VERS vnumber=\"5\">He hath cast off thy calf, O Samaria; mine anger is kindled against them: how long will it be ere they attain to innocency?</VERS>\r\n      <VERS vnumber=\"6\">For from Israel is even this; the workman made it, and it is no God; yea, the calf of Samaria shall be broken in pieces.</VERS>\r\n      <VERS vnumber=\"7\">For they sow the wind, and they shall reap the whirlwind: he hath no standing grain; the blade shall yield no meal; if so be it yield, strangers shall swallow it up.</VERS>\r\n      <VERS vnumber=\"8\">Israel is swallowed up: now are they among the nations as a vessel wherein none delighteth.</VERS>\r\n      <VERS vnumber=\"9\">For they are gone up to Assyria, [like] a wild ass alone by himself: Ephraim hath hired lovers.</VERS>\r\n      <VERS vnumber=\"10\">Yea, though they hire among the nations, now will I gather them; and they begin to be diminished by reason of the burden of the king of princes.</VERS>\r\n      <VERS vnumber=\"11\">Because Ephraim hath multiplied altars for sinning, altars have been unto him for sinning.</VERS>\r\n      <VERS vnumber=\"12\">I wrote for him the ten thousand things of my law; but they are counted as a strange thing.</VERS>\r\n      <VERS vnumber=\"13\">As for the sacrifices of mine offerings, they sacrifice flesh and eat it; but Jehovah accepteth them not: now will he remember their iniquity, and visit their sins; they shall return to Egypt.</VERS>\r\n      <VERS vnumber=\"14\">For Israel hath forgotten his Maker, and builded palaces; and Judah hath multiplied fortified cities: but I will send a fire upon his cities, and it shall devour the castles thereof.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">Rejoice not, O Israel, for joy, like the peoples; for thou hast played the harlot, [departing] from thy God; thou hast loved hire upon every grain-floor.</VERS>\r\n      <VERS vnumber=\"2\">The threshing-floor and the winepress shall not feed them, and the new wine shall fail her.</VERS>\r\n      <VERS vnumber=\"3\">They shall not dwell in Jehovah`s land; but Ephraim shall return to Egypt, and they shall eat unclean food in Assyria.</VERS>\r\n      <VERS vnumber=\"4\">They shall not pour out wine-offerings to Jehovah, 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 shall be for their appetite; it shall not come into the house of Jehovah.</VERS>\r\n      <VERS vnumber=\"5\">What will ye do in the day of solemn assembly, and in the day of the feast of Jehovah?</VERS>\r\n      <VERS vnumber=\"6\">For, lo, they are gone away from destruction; [yet] Egypt shall gather them up, Memphis shall bury them; their pleasant things of silver, nettles shall possess them; thorns shall be in their tents.</VERS>\r\n      <VERS vnumber=\"7\">The days of visitation are come, the days of recompense are come; Israel shall know it: the prophet is a fool, the man that hath the spirit is mad, for the abundance of thine iniquity, and because the enmity is great.</VERS>\r\n      <VERS vnumber=\"8\">Ephraim [was] a watchman with my God: as for the prophet, a fowler`s snare is in all his ways, [and] enmity in the house of his God.</VERS>\r\n      <VERS vnumber=\"9\">They have deeply corrupted themselves, as in the days of Gibeah: he will remember their iniquity, he will visit their sins.</VERS>\r\n      <VERS vnumber=\"10\">I found Israel like grapes in the wilderness; I saw your fathers as the first-ripe in the fig-tree at its first season: but they came to Baal-peor, and consecrated themselves unto the shameful thing, and became abominable like that which they loved.</VERS>\r\n      <VERS vnumber=\"11\">As for Ephraim, their glory shall fly away like a bird: there shall be no birth, and none with child, and no conception.</VERS>\r\n      <VERS vnumber=\"12\">Though they bring up their children, yet will I bereave them, so that not a man shall be left: yea, woe also to them when I depart from them!</VERS>\r\n      <VERS vnumber=\"13\">Ephraim, like as I have seen Tyre, is planted in a pleasant place: but Ephraim shall bring out his children to the slayer.</VERS>\r\n      <VERS vnumber=\"14\">Give them, O Jehovah-what wilt thou give? give them a miscarrying womb and dry breasts.</VERS>\r\n      <VERS vnumber=\"15\">All their wickedness is in Gilgal; for there I hated them: because of the wickedness of their doings I will drive them out of my house; I will love them no more; all their princes are revolters.</VERS>\r\n      <VERS vnumber=\"16\">Ephraim is smitten, their root is dried up, they shall bear no fruit: yea, though they bring forth, yet will I slay the beloved fruit of their womb.</VERS>\r\n      <VERS vnumber=\"17\">My God will cast them away, because they did not hearken unto him; and they shall be wanderers among the nations.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">Israel is a luxuriant vine, that putteth forth his fruit: according to the abundance of his fruit he hath multiplied his altars; according to the goodness of their land they have made goodly pillars.</VERS>\r\n      <VERS vnumber=\"2\">Their heart is divided; now shall they be found guilty: he will smite their altars, he will destroy their pillars.</VERS>\r\n      <VERS vnumber=\"3\">Surely now shall they say, We have no king; for we fear not Jehovah; and the king, what can he do for us?</VERS>\r\n      <VERS vnumber=\"4\">They speak [vain] words, swearing falsely in making covenants: therefore judgment springeth up as hemlock in the furrows of the field.</VERS>\r\n      <VERS vnumber=\"5\">The inhabitants of Samaria shall be in terror for the calves of Beth-aven; for the people thereof shall mourn over it, and the priests thereof that rejoiced over it, for the glory thereof, because it is departed from it.</VERS>\r\n      <VERS vnumber=\"6\">It also shall be carried unto Assyria for a present to king Jareb: Ephraim shall receive shame, and Israel shall be ashamed of his own counsel.</VERS>\r\n      <VERS vnumber=\"7\">[As for] Samaria, her king is cut off, as foam upon the water.</VERS>\r\n      <VERS vnumber=\"8\">The 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.</VERS>\r\n      <VERS vnumber=\"9\">O Israel, thou hast sinned from the days of Gibeah: there they stood; the battle against the children of iniquity doth not overtake them in Gibeah.</VERS>\r\n      <VERS vnumber=\"10\">When it is my desire, I will chastise them; and the peoples shall be gathered against them, when they are bound to their two transgressions.</VERS>\r\n      <VERS vnumber=\"11\">And Ephraim is a heifer that is taught, that loveth to tread out [the grain]; but I have passed over upon her fair neck: I will set a rider on Ephraim; Judah shall plow, Jacob shall break his clods.</VERS>\r\n      <VERS vnumber=\"12\">Sow to yourselves in righteousness, reap according to kindness; break up your fallow ground; for it is time to seek Jehovah, till he come and rain righteousness upon you.</VERS>\r\n      <VERS vnumber=\"13\">Ye have plowed wickedness, ye have reaped iniquity; ye have eaten the fruit of lies; for thou didst trust in thy way, in the multitude of thy mighty men.</VERS>\r\n      <VERS vnumber=\"14\">Therefore shall a tumult arise among thy people, and all thy fortresses shall be destroyed, as Shalman destroyed Beth-arbel in the day of battle: the mother was dashed in pieces with her children.</VERS>\r\n      <VERS vnumber=\"15\">So shall Beth-el do unto you because of your great wickedness: at daybreak shall the king of Israel be utterly cut off.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">When Israel was a child, then I loved him, and called my son out of Egypt.</VERS>\r\n      <VERS vnumber=\"2\">The more [the prophets] called them, the more they went from them: they sacrificed unto the Baalim, and burned incense to graven images.</VERS>\r\n      <VERS vnumber=\"3\">Yet I taught Ephraim to walk; I took them on my arms; but they knew not that I healed them.</VERS>\r\n      <VERS vnumber=\"4\">I drew them with cords of a man, with bands of love; and I was to them as they that lift up the yoke on their jaws; and I laid food before them.</VERS>\r\n      <VERS vnumber=\"5\">They shall not return into the land of Egypt; but the Assyrian shall be their king, because they refused to return [to me].</VERS>\r\n      <VERS vnumber=\"6\">And the sword shall fall upon their cities, and shall consume their bars, and devour [them], because of their own counsels.</VERS>\r\n      <VERS vnumber=\"7\">And my people are bent on backsliding from me: though they call them to [him that is] on high, none at all will exalt [him].</VERS>\r\n      <VERS vnumber=\"8\">How shall I give thee up, Ephraim? [how] shall I cast thee off, Israel? how shall I make thee as Admah? [how] shall I set thee as Zeboiim? my heart is turned within me, my compassions are kindled together.</VERS>\r\n      <VERS vnumber=\"9\">I 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 come in wrath.</VERS>\r\n      <VERS vnumber=\"10\">They shall walk after Jehovah, who will roar like a lion; for he will roar, and the children shall come trembling from the west.</VERS>\r\n      <VERS vnumber=\"11\">They shall come trembling as a bird out of Egypt, and as a dove out of the land of Assyria; and I will make them to dwell in their houses, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"12\">Ephraim compasseth me about with falsehood, and the house of Israel with deceit; but Judah yet ruleth with God, and is faithful with the Holy One.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">Ephraim feedeth on wind, and followeth after the east wind: he continually multiplieth lies and desolation; and they make a covenant with Assyria, and oil is carried into Egypt.</VERS>\r\n      <VERS vnumber=\"2\">Jehovah hath also a controversy with Judah, and will punish Jacob according to his ways; according to his doings will he recompense him.</VERS>\r\n      <VERS vnumber=\"3\">In the womb he took his brother by the heel; and in his manhood he had power with God:</VERS>\r\n      <VERS vnumber=\"4\">yea, he had power over the angel, and prevailed; he wept, and made supplication unto him: he found him at Beth-el, and there he spake with us,</VERS>\r\n      <VERS vnumber=\"5\">even Jehovah, the God of hosts; Jehovah is his memorial [name].</VERS>\r\n      <VERS vnumber=\"6\">Therefore turn thou to thy God: keep kindness and justice, and wait for thy God continually.</VERS>\r\n      <VERS vnumber=\"7\">[He is] a trafficker, the balances of deceit are in his hand: he loveth to oppress.</VERS>\r\n      <VERS vnumber=\"8\">And Ephraim said, Surely I am become rich, I have found me wealth: in all my labors they shall find in me no iniquity that were sin.</VERS>\r\n      <VERS vnumber=\"9\">But I am Jehovah thy God from the land of Egypt; I will yet again make thee to dwell in tents, as in the days of the solemn feast.</VERS>\r\n      <VERS vnumber=\"10\">I have also spoken unto the prophets, and I have multiplied visions; and by the ministry of the prophets have I used similitudes.</VERS>\r\n      <VERS vnumber=\"11\">Is Gilead iniquity? they are altogether false; in Gilgal they sacrifice bullocks; yea, their altars are as heaps in the furrows of the field.</VERS>\r\n      <VERS vnumber=\"12\">And Jacob fled into the field of Aram, and Israel served for a wife, and for a wife he kept [sheep].</VERS>\r\n      <VERS vnumber=\"13\">And by a prophet Jehovah brought Israel up out of Egypt, and by a prophet was he preserved.</VERS>\r\n      <VERS vnumber=\"14\">Ephraim hath provoked to anger most bitterly: therefore shall his blood be left upon him, and his reproach shall his Lord return unto him.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">When Ephraim spake, there was trembling; he exalted himself in Israel; but when he offended in Baal, he died.</VERS>\r\n      <VERS vnumber=\"2\">And now they sin more and more, and have made them molten images of their silver, even idols according to their own understanding, all of them the work of the craftsmen: they say of them, Let the men that sacrifice kiss the calves.</VERS>\r\n      <VERS vnumber=\"3\">Therefore they shall be as the morning cloud, and as the dew that passeth early away, as the chaff that is driven with the whirlwind out of the threshing-floor, and as the smoke out of the chimney.</VERS>\r\n      <VERS vnumber=\"4\">Yet I am Jehovah thy God from the land of Egypt; and thou shalt know no god but me, and besides me there is no saviour.</VERS>\r\n      <VERS vnumber=\"5\">I did know thee in the wilderness, in the land of great drought.</VERS>\r\n      <VERS vnumber=\"6\">According to their pasture, so were they filled; they were filled, and their heart was exalted: therefore have they forgotten me.</VERS>\r\n      <VERS vnumber=\"7\">Therefore am I unto them as a lion; as a leopard will I watch by the way;</VERS>\r\n      <VERS vnumber=\"8\">I 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 lioness; the wild beast shall tear them.</VERS>\r\n      <VERS vnumber=\"9\">It is thy destruction, O Israel, that [thou art] against me, against thy help.</VERS>\r\n      <VERS vnumber=\"10\">Where now is thy king, that he may save thee in all thy cities? and thy judges, of whom thou saidst, Give me a king and princes?</VERS>\r\n      <VERS vnumber=\"11\">I have given thee a king in mine anger, and have taken him away in my wrath.</VERS>\r\n      <VERS vnumber=\"12\">The iniquity of Ephraim is bound up; his sin is laid up in store.</VERS>\r\n      <VERS vnumber=\"13\">The sorrows of a travailing woman shall come upon him: he is an unwise son; for it is time he should not tarry in the place of the breaking forth of children.</VERS>\r\n      <VERS vnumber=\"14\">I will ransom them from the power of Sheol; I will redeem them from death: O death, where are thy plagues? O Sheol, where is thy destruction? repentance shall be hid from mine eyes.</VERS>\r\n      <VERS vnumber=\"15\">Though he be fruitful among his brethren, an east wind shall come, the breath of Jehovah coming up from the wilderness; and his spring shall become dry, and his fountain shall be dried up: he shall make spoil of the treasure of all goodly vessels.</VERS>\r\n      <VERS vnumber=\"16\">Samaria shall bear her guilt; 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">O Israel, return unto Jehovah thy God; for thou hast fallen by thine iniquity.</VERS>\r\n      <VERS vnumber=\"2\">Take with you words, and return unto Jehovah: say unto him, Take away all iniquity, and accept that which is good: so will we render [as] bullocks [the offering of] our lips.</VERS>\r\n      <VERS vnumber=\"3\">Assyria 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.</VERS>\r\n      <VERS vnumber=\"4\">I will heal their backsliding, I will love them freely; for mine anger is turned away from him.</VERS>\r\n      <VERS vnumber=\"5\">I will be as the dew unto Israel; he shall blossom as the lily, and cast forth his roots as Lebanon.</VERS>\r\n      <VERS vnumber=\"6\">His branches shall spread, and his beauty shall be as the olive-tree, and his smell as Lebanon.</VERS>\r\n      <VERS vnumber=\"7\">They that dwell under his shadow shall return; they shall revive [as] the grain, and blossom as the vine: the scent thereof shall be as the wine of Lebanon.</VERS>\r\n      <VERS vnumber=\"8\">Ephraim [shall say], What have I to do any more with idols? I have answered, and will regard him: I am like a green fir-tree; from me is thy fruit found.</VERS>\r\n      <VERS vnumber=\"9\">Who is wise, that he may understand these things? prudent, that he may know them? for the ways of Jehovah are right, and the just shall walk in them; but transgressors shall fall therein.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"29\" bname=\"Joel\" bsname=\"Joel\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">The word of Jehovah that came to Joel the son of Pethuel.</VERS>\r\n      <VERS vnumber=\"2\">Hear this, ye old men, and give ear, all ye inhabitants of the land. Hath this been in your days, or in the days of your fathers?</VERS>\r\n      <VERS vnumber=\"3\">Tell ye your children of it, and [let] your children [tell] their children, and their children another generation.</VERS>\r\n      <VERS vnumber=\"4\">That which the palmer-worm hath left hath the locust eaten; and that which the locust hath left hath the canker-worm eaten; and that which the canker-worm hath left hath the caterpillar eaten.</VERS>\r\n      <VERS vnumber=\"5\">Awake, ye drunkards, and weep; and wail, all ye drinkers of wine, because of the sweet wine; for it is cut off from your mouth.</VERS>\r\n      <VERS vnumber=\"6\">For a nation is come up upon my land, strong, and without number; his teeth are the teeth of a lion, and he hath the jaw-teeth of a lioness.</VERS>\r\n      <VERS vnumber=\"7\">He 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.</VERS>\r\n      <VERS vnumber=\"8\">Lament like a virgin girded with sackcloth for the husband of her youth.</VERS>\r\n      <VERS vnumber=\"9\">The meal-offering and the drink-offering are cut off from the house of Jehovah; the priests, Jehovah`s ministers, mourn.</VERS>\r\n      <VERS vnumber=\"10\">The field is laid waste, the land mourneth; for the grain is destroyed, the new wine is dried up, the oil languisheth.</VERS>\r\n      <VERS vnumber=\"11\">Be confounded, O ye husbandmen, wail, O ye vinedressers, for the wheat and for the barley; for the harvest of the field is perished.</VERS>\r\n      <VERS vnumber=\"12\">The vine is withered, 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: for joy is withered away from the sons of men.</VERS>\r\n      <VERS vnumber=\"13\">Gird yourselves [with sackcloth], and lament, ye priests; wail, ye ministers of the altar; come, lie all night in sackcloth, ye ministers of my God: for the meal-offering and the drink-offering are withholden from the house of your God.</VERS>\r\n      <VERS vnumber=\"14\">Sanctify a fast, call a solemn assembly, gather the old men [and] all the inhabitants of the land unto the house of Jehovah your God, and cry unto Jehovah.</VERS>\r\n      <VERS vnumber=\"15\">Alas for the day! for the day of Jehovah is at hand, and as destruction from the Almighty shall it come.</VERS>\r\n      <VERS vnumber=\"16\">Is not the food cut off before our eyes, [yea], joy and gladness from the house of our God?</VERS>\r\n      <VERS vnumber=\"17\">The seeds rot under their clods; the garners are laid desolate, the barns are broken down; for the grain is withered.</VERS>\r\n      <VERS vnumber=\"18\">How do the beasts groan! the herds of cattle are perplexed, because they have no pasture; yea, the flocks of sheep are made desolate.</VERS>\r\n      <VERS vnumber=\"19\">O Jehovah, to thee do I cry; for the fire hath devoured the pastures of the wilderness, and the flame hath burned all the trees of the field.</VERS>\r\n      <VERS vnumber=\"20\">Yea, the beasts of the field pant unto thee; for the water brooks are dried up, and the fire hath devoured the pastures of the wilderness.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">Blow 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 Jehovah cometh, for it is nigh at hand;</VERS>\r\n      <VERS vnumber=\"2\">a day of darkness and gloominess, a day of clouds and thick darkness, as the dawn spread upon the mountains; a great people and a strong; there hath not been ever the like, neither shall be any more after them, even to the years of many generations.</VERS>\r\n      <VERS vnumber=\"3\">A 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 none hath escaped them.</VERS>\r\n      <VERS vnumber=\"4\">The appearance of them is as the appearance of horses; and as horsemen, so do they run.</VERS>\r\n      <VERS vnumber=\"5\">Like the noise of chariots on the tops of the mountains do they leap, like the noise of a flame of fire that devoureth the stubble, as a strong people set in battle array.</VERS>\r\n      <VERS vnumber=\"6\">At their presence the peoples are in anguish; all faces are waxed pale.</VERS>\r\n      <VERS vnumber=\"7\">They run like mighty men; they climb the wall like men of war; and they march every one on his ways, and they break not their ranks.</VERS>\r\n      <VERS vnumber=\"8\">Neither doth one thrust another; they march every one in his path; and they burst through the weapons, and break not off [their course].</VERS>\r\n      <VERS vnumber=\"9\">They leap upon the city; they run upon the wall; they climb up into the houses; they enter in at the windows like a thief.</VERS>\r\n      <VERS vnumber=\"10\">The earth quaketh before them; the heavens tremble; the sun and the moon are darkened, and the stars withdraw their shining.</VERS>\r\n      <VERS vnumber=\"11\">And Jehovah uttereth his voice before his army; for his camp is very great; for he is strong that executeth his word; for the day of Jehovah is great and very terrible; and who can abide it?</VERS>\r\n      <VERS vnumber=\"12\">Yet even now, saith Jehovah, turn ye unto me with all your heart, and with fasting, and with weeping, and with mourning:</VERS>\r\n      <VERS vnumber=\"13\">and rend your heart, and not your garments, and turn unto Jehovah your God; for he is gracious and merciful, slow to anger, and abundant in lovingkindness, and repenteth him of the evil.</VERS>\r\n      <VERS vnumber=\"14\">Who knoweth whether he will not turn and repent, and leave a blessing behind him, even a meal-offering and a drink-offering unto Jehovah your God?</VERS>\r\n      <VERS vnumber=\"15\">Blow the trumpet in Zion, sanctify a fast, call a solemn assembly;</VERS>\r\n      <VERS vnumber=\"16\">gather the people, sanctify the assembly, assemble the old men, gather the children, and those that suck the breasts; let the bridegroom go forth from his chamber, and the bride out of her closet.</VERS>\r\n      <VERS vnumber=\"17\">Let the priests, the ministers of Jehovah, weep between the porch and the altar, and let them say, Spare thy people, O Jehovah, and give not thy heritage to reproach, that the nations should rule over them: wherefore should they say among the peoples, Where is their God?</VERS>\r\n      <VERS vnumber=\"18\">Then was Jehovah jealous for his land, and had pity on his people.</VERS>\r\n      <VERS vnumber=\"19\">And Jehovah answered and said unto his people, Behold, I will send you grain, and new wine, and oil, and ye shall be satisfied therewith; and I will no more make you a reproach among the nations;</VERS>\r\n      <VERS vnumber=\"20\">but I will remove far off from you the northern [army], and will drive it into a land barren and desolate, its forepart into the eastern sea, and its hinder part into the western sea; and its stench shall come up, and its ill savor shall come up, because it hath done great things.</VERS>\r\n      <VERS vnumber=\"21\">Fear not, O land, be glad and rejoice; for Jehovah hath done great things.</VERS>\r\n      <VERS vnumber=\"22\">Be not afraid, ye beasts of the field; for the pastures of the wilderness do spring, for the tree beareth its fruit, the fig-tree and the vine do yield their strength.</VERS>\r\n      <VERS vnumber=\"23\">Be glad then, ye children of Zion, and rejoice in Jehovah your God; for he giveth you the former rain in just measure, and he causeth to come down for you the rain, the former rain and the latter rain, in the first [month].</VERS>\r\n      <VERS vnumber=\"24\">And the floors shall be full of wheat, and the vats shall overflow with new wine and oil.</VERS>\r\n      <VERS vnumber=\"25\">And I will restore to you the years that the locust hath eaten, the canker-worm, and the caterpillar, and the palmer-worm, my great army which I sent among you.</VERS>\r\n      <VERS vnumber=\"26\">And ye shall eat in plenty and be satisfied, and shall praise the name of Jehovah your God, that hath dealt wondrously with you; and my people shall never be put to shame.</VERS>\r\n      <VERS vnumber=\"27\">And ye shall know that I am in the midst of Israel, and that I am Jehovah your God, and there is none else; and my people shall never be put to shame.</VERS>\r\n      <VERS vnumber=\"28\">And 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:</VERS>\r\n      <VERS vnumber=\"29\">and also upon the servants and upon the handmaids in those days will I pour out my Spirit.</VERS>\r\n      <VERS vnumber=\"30\">And I will show wonders in the heavens and in the earth: blood, and fire, and pillars of smoke.</VERS>\r\n      <VERS vnumber=\"31\">The sun shall be turned into darkness, and the moon into blood, before the great and terrible day of Jehovah cometh.</VERS>\r\n      <VERS vnumber=\"32\">And it shall come to pass, that whosoever shall call on the name of Jehovah shall be delivered; for in mount Zion and in Jerusalem there shall be those that escape, as Jehovah hath said, and among the remnant those whom Jehovah doth call.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">For, behold, in those days, and in that time, when I shall bring back the captivity of Judah and Jerusalem,</VERS>\r\n      <VERS vnumber=\"2\">I will gather all nations, and will bring them down into the valley of Jehoshaphat; and I will execute judgment upon them there for my people and for my heritage Israel, whom they have scattered among the nations: and they have parted my land,</VERS>\r\n      <VERS vnumber=\"3\">and have cast lots for my people, and have given a boy for a harlot, and sold a girl for wine, that they may drink.</VERS>\r\n      <VERS vnumber=\"4\">Yea, and what are ye to me, O Tyre, and Sidon, and all the regions of Philistia? will ye render me a recompense? and if ye recompense me, swiftly and speedily will I return your recompense upon your own head.</VERS>\r\n      <VERS vnumber=\"5\">Forasmuch as ye have taken my silver and my gold, and have carried into your temples my goodly precious things,</VERS>\r\n      <VERS vnumber=\"6\">and have sold the children of Judah and the children of Jerusalem unto the sons of the Grecians, that ye may remove them far from their border;</VERS>\r\n      <VERS vnumber=\"7\">behold, I will stir them up out of the place whither ye have sold them, and will return your recompense upon your own head;</VERS>\r\n      <VERS vnumber=\"8\">and I will sell your sons and your daughters into the hand of the children of Judah, and they shall sell them to the men of Sheba, to a nation far off: for Jehovah hath spoken it.</VERS>\r\n      <VERS vnumber=\"9\">Proclaim ye this among the nations; prepare war; stir up the mighty men; let all the men of war draw near, let them come up.</VERS>\r\n      <VERS vnumber=\"10\">Beat your plowshares into swords, and your pruning-hooks into spears: let the weak say, I am strong.</VERS>\r\n      <VERS vnumber=\"11\">Haste ye, and come, all ye nations round about, and gather yourselves together: thither cause thy mighty ones to come down, O Jehovah.</VERS>\r\n      <VERS vnumber=\"12\">Let the nations bestir themselves, and come up to the valley of Jehoshaphat; for there will I sit to judge all the nations round about.</VERS>\r\n      <VERS vnumber=\"13\">Put ye in the sickle; for the harvest is ripe: come, tread ye; for the winepress is full, the vats overflow; for their wickedness is great.</VERS>\r\n      <VERS vnumber=\"14\">Multitudes, multitudes in the valley of decision! for the day of Jehovah is near in the valley of decision.</VERS>\r\n      <VERS vnumber=\"15\">The sun and the moon are darkened, and the stars withdraw their shining.</VERS>\r\n      <VERS vnumber=\"16\">And Jehovah will roar from Zion, and utter his voice from Jerusalem; and the heavens and the earth shall shake: but Jehovah will be a refuge unto his people, and a stronghold to the children of Israel.</VERS>\r\n      <VERS vnumber=\"17\">So shall ye know that I am Jehovah your God, dwelling in Zion my holy mountain: then shall Jerusalem be holy, and there shall no strangers pass through her any more.</VERS>\r\n      <VERS vnumber=\"18\">And it shall come to pass in that day, that the mountains shall drop down sweet wine, and the hills shall flow with milk, and all the brooks of Judah shall flow with waters; and a fountain shall come forth from the house of Jehovah, and shall water the valley of Shittim.</VERS>\r\n      <VERS vnumber=\"19\">Egypt shall be a desolation, and Edom shall be a desolate wilderness, for the violence done to the children of Judah, because they have shed innocent blood in their land.</VERS>\r\n      <VERS vnumber=\"20\">But Judah shall abide for ever, and Jerusalem from generation to generation.</VERS>\r\n      <VERS vnumber=\"21\">And I will cleanse their blood, that I have not cleansed: for Jehovah dwelleth in Zion.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"30\" bname=\"Amos\" bsname=\"Amos\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">The words of Amos, who was among the herdsmen 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.</VERS>\r\n      <VERS vnumber=\"2\">And he said, Jehovah will roar from Zion, and utter his voice from Jerusalem; and the pastures of the shepherds shall mourn, and the top of Carmel shall wither.</VERS>\r\n      <VERS vnumber=\"3\">Thus saith Jehovah: For three transgressions of Damascus, yea, for four, I will not turn away the punishment thereof; because they have threshed Gilead with threshing instruments of iron:</VERS>\r\n      <VERS vnumber=\"4\">but I will send a fire into the house of Hazael, and it shall devour the palaces of Ben-hadad.</VERS>\r\n      <VERS vnumber=\"5\">And I will break the bar of Damascus, and cut off the inhabitant from the valley 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 Jehovah.</VERS>\r\n      <VERS vnumber=\"6\">Thus saith Jehovah: For three transgressions of Gaza, yea, for four, I will not turn away the punishment thereof; because they carried away captive the whole people, to deliver them up to Edom:</VERS>\r\n      <VERS vnumber=\"7\">but I will send a fire on the wall of Gaza, and it shall devour the palaces thereof.</VERS>\r\n      <VERS vnumber=\"8\">And I will cut off the inhabitant from Ashdod, and him that holdeth the sceptre from Ashkelon; and I will turn my hand against Ekron; and the remnant of the Philistines shall perish, saith the Lord Jehovah.</VERS>\r\n      <VERS vnumber=\"9\">Thus saith Jehovah: For three transgressions of Tyre, yea, for four, I will not turn away the punishment thereof; because they delivered up the whole people to Edom, and remembered not the brotherly covenant:</VERS>\r\n      <VERS vnumber=\"10\">but I will send a fire on the wall of Tyre, and it shall devour the palaces thereof.</VERS>\r\n      <VERS vnumber=\"11\">Thus saith Jehovah: For three transgressions of Edom, yea, 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:</VERS>\r\n      <VERS vnumber=\"12\">but I will send a fire upon Teman, and it shall devour the palaces of Bozrah.</VERS>\r\n      <VERS vnumber=\"13\">Thus saith Jehovah: For three transgressions of the children of Ammon, yea, for four, I will not turn away the punishment thereof; because they have ripped up the women with child of Gilead, that they may enlarge their border.</VERS>\r\n      <VERS vnumber=\"14\">But 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;</VERS>\r\n      <VERS vnumber=\"15\">and their king shall go into captivity, he and his princes together, saith Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">Thus saith Jehovah: For three transgressions of Moab, yea, for four, I will not turn away the punishment thereof; because he burned the bones of the king of Edom into lime:</VERS>\r\n      <VERS vnumber=\"2\">but I will send a fire upon Moab, and it shall devour the palaces of Kerioth; and Moab shall die with tumult, with shouting, and with the sound of the trumpet;</VERS>\r\n      <VERS vnumber=\"3\">and I will cut off the judge from the midst thereof, and will slay all the princes thereof with him, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"4\">Thus saith Jehovah: For three transgressions of Judah, yea, for four, I will not turn away the punishment thereof; because they have rejected the law of Jehovah, and have not kept his statutes, and their lies have caused them to err, after which their fathers did walk:</VERS>\r\n      <VERS vnumber=\"5\">but I will send a fire upon Judah, and it shall devour the palaces of Jerusalem.</VERS>\r\n      <VERS vnumber=\"6\">Thus saith Jehovah: For three transgressions of Israel, yea, for four, I will not turn away the punishment thereof; because they have sold the righteous for silver, and the needy for a pair of shoes-</VERS>\r\n      <VERS vnumber=\"7\">they that 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 go unto the [same] maiden, to profane my holy name:</VERS>\r\n      <VERS vnumber=\"8\">and they lay themselves down beside every altar upon clothes taken in pledge; and in the house of their God they drink the wine of such as have been fined.</VERS>\r\n      <VERS vnumber=\"9\">Yet 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.</VERS>\r\n      <VERS vnumber=\"10\">Also I brought you up out of the land of Egypt, and led you forty years in the wilderness, to possess the land of the Amorite.</VERS>\r\n      <VERS vnumber=\"11\">And I raised up of your sons for prophets, and of your young men for Nazirites. Is it not even thus, O ye children of Israel? saith Jehovah.</VERS>\r\n      <VERS vnumber=\"12\">But ye gave the Nazirites wine to drink, and commanded the prophets, saying, Prophesy not.</VERS>\r\n      <VERS vnumber=\"13\">Behold, I will press [you] in your place, as a cart presseth that is full of sheaves.</VERS>\r\n      <VERS vnumber=\"14\">And flight shall perish from the swift; and the strong shall not strengthen his force; neither shall the mighty deliver himself;</VERS>\r\n      <VERS vnumber=\"15\">neither 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;</VERS>\r\n      <VERS vnumber=\"16\">and he that is courageous among the mighty shall flee away naked in that day, saith Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Hear this word that Jehovah hath spoken against you, O children of Israel, against the whole family which I brought up out of the land of Egypt, saying,</VERS>\r\n      <VERS vnumber=\"2\">You only have I known of all the families of the earth: therefore I will visit upon you all your iniquities.</VERS>\r\n      <VERS vnumber=\"3\">Shall two walk together, except they have agreed?</VERS>\r\n      <VERS vnumber=\"4\">Will 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?</VERS>\r\n      <VERS vnumber=\"5\">Can a bird fall in a snare upon the earth, where no gin is [set] for him? shall a snare spring up from the ground, and have taken nothing at all?</VERS>\r\n      <VERS vnumber=\"6\">Shall the trumpet be blown in a city, and the people not be afraid? shall evil befall a city, and Jehovah hath not done it?</VERS>\r\n      <VERS vnumber=\"7\">Surely the Lord Jehovah will do nothing, except he reveal his secret unto his servants the prophets.</VERS>\r\n      <VERS vnumber=\"8\">The lion hath roared; who will not fear? The Lord Jehovah hath spoken; who can but prophesy?</VERS>\r\n      <VERS vnumber=\"9\">Publish ye 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 what great tumults are therein, and what oppressions in the midst thereof.</VERS>\r\n      <VERS vnumber=\"10\">For they know not to do right, saith Jehovah, who store up violence and robbery in their palaces.</VERS>\r\n      <VERS vnumber=\"11\">Therefore thus saith the Lord Jehovah: An adversary [there shall be], even round about the land; and he shall bring down thy strength from thee, and thy palaces shall be plundered.</VERS>\r\n      <VERS vnumber=\"12\">Thus saith Jehovah: As the shepherd rescueth out of the mouth of the lion two legs, or a piece of an ear, so shall the children of Israel be rescued that sit in Samaria in the corner of a couch, and on the silken cushions of a bed.</VERS>\r\n      <VERS vnumber=\"13\">Hear ye, and testify against the house of Jacob, saith the Lord Jehovah, the God of hosts.</VERS>\r\n      <VERS vnumber=\"14\">For in the day that I shall visit the transgressions of Israel upon him, I will also visit the altars of Beth-el; and the horns of the altar shall be cut off, and fall to the ground.</VERS>\r\n      <VERS vnumber=\"15\">And 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 Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">Hear this word, ye kine of Bashan, that are in the mountain of Samaria, that oppress the poor, that crush the needy, that say unto their lords, Bring, and let us drink.</VERS>\r\n      <VERS vnumber=\"2\">The Lord Jehovah hath sworn by his holiness, that, lo, the days shall come upon you, that they shall take you away with hooks, and your residue with fish-hooks.</VERS>\r\n      <VERS vnumber=\"3\">And ye shall go out at the breaches, every one straight before her; and ye shall cast [yourselves] into Harmon, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"4\">Come to Beth-el, and transgress; to Gilgal, [and] multiply transgression; and bring your sacrifices every morning, [and] your tithes every three days;</VERS>\r\n      <VERS vnumber=\"5\">and offer a sacrifice of thanksgiving of that which is leavened, and proclaim freewill-offerings and publish them: for this pleaseth you, O ye children of Israel, saith the Lord Jehovah.</VERS>\r\n      <VERS vnumber=\"6\">And 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 Jehovah.</VERS>\r\n      <VERS vnumber=\"7\">And I also 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.</VERS>\r\n      <VERS vnumber=\"8\">So two or three cities wandered unto one city to drink water, and were not satisfied: yet have ye not returned unto me, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"9\">I have smitten you with blasting and mildew: the multitude of your gardens and your vineyards and your fig-trees and your olive-trees hath the palmer-worm devoured: yet have ye not returned unto me, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"10\">I have sent among you the pestilence after the manner of Egypt: your young men have I slain with the sword, and have carried away your horses; and I have made the stench of your camp to come up even into your nostrils: yet have ye not returned unto me, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"11\">I have overthrown [cities] among you, as when God overthrew Sodom and Gomorrah, and ye were as a brand plucked out of the burning: yet have ye not returned unto me, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"12\">Therefore thus will I do unto thee, O Israel; [and] because I will do this unto thee, prepare to meet thy God, O Israel.</VERS>\r\n      <VERS vnumber=\"13\">For, 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-jehovah, the God of hosts, is his name.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">Hear ye this word which I take up for a lamentation over you, O house of Israel.</VERS>\r\n      <VERS vnumber=\"2\">The virgin of Israel is fallen; she shall no more rise: she is cast down upon her land; there is none to raise her up.</VERS>\r\n      <VERS vnumber=\"3\">For thus saith the Lord Jehovah: The city that went forth a thousand shall have a hundred left, and that which went forth a hundred shall have ten left, to the house of Israel.</VERS>\r\n      <VERS vnumber=\"4\">For thus saith Jehovah unto the house of Israel, Seek ye me, and ye shall live;</VERS>\r\n      <VERS vnumber=\"5\">but seek not Beth-el, nor enter into Gilgal, and pass not to Beer-sheba: for Gilgal shall surely go into captivity, and Beth-el shall come to nought.</VERS>\r\n      <VERS vnumber=\"6\">Seek Jehovah, and ye shall live; lest he break out like fire in the house of Joseph, and it devour, and there be none to quench it in Beth-el.</VERS>\r\n      <VERS vnumber=\"7\">Ye who turn justice to wormwood, and cast down righteousness to the earth,</VERS>\r\n      <VERS vnumber=\"8\">[seek him] that maketh the Pleiades 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 (Jehovah is his name);</VERS>\r\n      <VERS vnumber=\"9\">that bringeth sudden destruction upon the strong, so that destruction cometh upon the fortress.</VERS>\r\n      <VERS vnumber=\"10\">They hate him that reproveth in the gate, and they abhor him that speaketh uprightly.</VERS>\r\n      <VERS vnumber=\"11\">Forasmuch therefore as ye trample upon the poor, and take exactions from him 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 the wine thereof.</VERS>\r\n      <VERS vnumber=\"12\">For I know how manifold are your transgressions, and how mighty are your sins-ye that afflict the just, that take a bribe, and that turn aside the needy in the gate [from their right].</VERS>\r\n      <VERS vnumber=\"13\">Therefore he that is prudent shall keep silence in such a time; for it is an evil time.</VERS>\r\n      <VERS vnumber=\"14\">Seek good, and not evil, that ye may live; and so Jehovah, the God of hosts, will be with you, as ye say.</VERS>\r\n      <VERS vnumber=\"15\">Hate the evil, and love the good, and establish justice in the gate: it may be that Jehovah, the God of hosts, will be gracious unto the remnant of Joseph.</VERS>\r\n      <VERS vnumber=\"16\">Therefore thus saith Jehovah, the God of hosts, the Lord: Wailing shall be in all the broad ways; and they shall say in all the streets, Alas! Alas! and they shall call the husbandman to mourning, and such as are skilful in lamentation to wailing.</VERS>\r\n      <VERS vnumber=\"17\">And in all vineyards shall be wailing; for I will pass through the midst of thee, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"18\">Woe unto you that desire the day of Jehovah! Wherefore would ye have the day of Jehovah? It is darkness, and not light.</VERS>\r\n      <VERS vnumber=\"19\">As 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.</VERS>\r\n      <VERS vnumber=\"20\">Shall not the day of Jehovah be darkness, and not light? even very dark, and no brightness in it?</VERS>\r\n      <VERS vnumber=\"21\">I hate, I despise your feasts, and I will take no delight in your solemn assemblies.</VERS>\r\n      <VERS vnumber=\"22\">Yea, though ye offer me your burnt-offerings and meal-offerings, I will not accept them; neither will I regard the peace-offerings of your fat beasts.</VERS>\r\n      <VERS vnumber=\"23\">Take thou away from me the noise of thy songs; for I will not hear the melody of thy viols.</VERS>\r\n      <VERS vnumber=\"24\">But let justice roll down as waters, and righteousness as a mighty stream.</VERS>\r\n      <VERS vnumber=\"25\">Did ye bring unto me sacrifices and offerings in the wilderness forty years, O house of Israel?</VERS>\r\n      <VERS vnumber=\"26\">Yea, ye have borne the tabernacle of your king and the shrine of your images, the star of your god, which ye made to yourselves.</VERS>\r\n      <VERS vnumber=\"27\">Therefore will I cause you to go into captivity beyond Damascus, saith Jehovah, whose name is the God of hosts.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">Woe to them that are at ease in Zion, and to them that are secure in the mountain of Samaria, the notable men of the chief of the nations, to whom the house of Israel come!</VERS>\r\n      <VERS vnumber=\"2\">Pass ye unto Calneh, and see; and from thence go ye to Hamath the great; then go down to Gath of the Philistines: are they better than these kingdoms? or is their border greater than your border?</VERS>\r\n      <VERS vnumber=\"3\">-ye that put far away the evil day, and cause the seat of violence to come near;</VERS>\r\n      <VERS vnumber=\"4\">that 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;</VERS>\r\n      <VERS vnumber=\"5\">that sing idle songs to the sound of the viol; that invent for themselves instruments of music, like David;</VERS>\r\n      <VERS vnumber=\"6\">that drink wine in bowls, and anoint themselves with the chief oils; but they are not grieved for the affliction of Joseph.</VERS>\r\n      <VERS vnumber=\"7\">Therefore shall they now go captive with the first that go captive; and the revelry of them that stretched themselves shall pass away.</VERS>\r\n      <VERS vnumber=\"8\">The Lord Jehovah hath sworn by himself, saith Jehovah, 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.</VERS>\r\n      <VERS vnumber=\"9\">And it shall come to pass, if there remain ten men in one house, that they shall die.</VERS>\r\n      <VERS vnumber=\"10\">And when a man`s uncle shall take him up, even he that burneth him, to bring out the bones out of the house, and shall say unto him that is in the innermost parts of the house, Is there yet any with thee? and he shall say, No; then shall he say, Hold thy peace; for we may not make mention of the name of Jehovah.</VERS>\r\n      <VERS vnumber=\"11\">For, behold, Jehovah commandeth, and the great house shall be smitten with breaches, and the little house with clefts.</VERS>\r\n      <VERS vnumber=\"12\">Shall horses run upon the rock? will one plow [there] with oxen? that ye have turned justice into gall, and the fruit of righteousness into wormwood;</VERS>\r\n      <VERS vnumber=\"13\">ye that rejoice in a thing of nought, that say, Have we not taken to us horns by our own strength?</VERS>\r\n      <VERS vnumber=\"14\">For, behold, I will raise up against you a nation, O house of Israel, saith Jehovah, the God of hosts; and they shall afflict you from the entrance of Hamath unto the brook of the Arabah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">Thus the Lord Jehovah showed me: and, behold, he formed locusts in the beginning of the shooting up of the latter growth; and, lo, it was the latter growth after the king`s mowings.</VERS>\r\n      <VERS vnumber=\"2\">And it came to pass that, when they made an end of eating the grass of the land, then I said, O Lord Jehovah, forgive, I beseech thee: how shall Jacob stand? for he is small.</VERS>\r\n      <VERS vnumber=\"3\">Jehovah repented concerning this: It shall not be, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"4\">Thus the Lord Jehovah showed me: and, behold, the Lord Jehovah called to content by fire; and it devoured the great deep, and would have eaten up the land.</VERS>\r\n      <VERS vnumber=\"5\">Then said I, O Lord Jehovah, cease, I beseech thee: how shall Jacob stand? for he is small.</VERS>\r\n      <VERS vnumber=\"6\">Jehovah repented concerning this: this also shall not be, saith the Lord Jehovah.</VERS>\r\n      <VERS vnumber=\"7\">Thus he showed me: and, behold, the Lord stood beside a wall made by a plumb-line, with a plumb-line in his hand.</VERS>\r\n      <VERS vnumber=\"8\">And Jehovah said unto me, Amos, what seest thou? And I said, A plumb-line. Then said the Lord, Behold, I will set a plumb-line in the midst of my people Israel; I will not again pass by them any more;</VERS>\r\n      <VERS vnumber=\"9\">and 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.</VERS>\r\n      <VERS vnumber=\"10\">Then Amaziah the priest of Beth-el 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.</VERS>\r\n      <VERS vnumber=\"11\">For thus Amos saith, Jeroboam shall die by the sword, and Israel shall surely be led away captive out of his land.</VERS>\r\n      <VERS vnumber=\"12\">Also Amaziah said unto Amos, O thou seer, go, flee thou away into the land of Judah, and there eat bread, and prophesy there:</VERS>\r\n      <VERS vnumber=\"13\">but prophesy not again any more at Beth-el; for it is the king`s sanctuary, and it is a royal house.</VERS>\r\n      <VERS vnumber=\"14\">Then answered Amos, and said to Amaziah, I was no prophet, neither was I a prophet`s son; but I was a herdsman, and a dresser of sycomore-trees:</VERS>\r\n      <VERS vnumber=\"15\">and Jehovah took me from following the flock, and Jehovah said unto me, Go, prophesy unto my people Israel.</VERS>\r\n      <VERS vnumber=\"16\">Now therefore hear thou the word of Jehovah: Thou sayest, Prophesy not against Israel, and drop not [thy word] against the house of Isaac;</VERS>\r\n      <VERS vnumber=\"17\">therefore thus saith Jehovah: Thy wife shall be a 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 thyself shalt die in a land that is unclean, and Israel shall surely be led away captive out of his land.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">Thus the Lord Jehovah showed me: and, behold, a basket of summer fruit.</VERS>\r\n      <VERS vnumber=\"2\">And he said, Amos, what seest thou? And I said, A basket of summer fruit. Then said Jehovah unto me, The end is come upon my people Israel; I will not again pass by them any more.</VERS>\r\n      <VERS vnumber=\"3\">And the songs of the temple shall be wailings in that day, saith the Lord Jehovah: the dead bodies shall be many: in every place shall they cast them forth with silence.</VERS>\r\n      <VERS vnumber=\"4\">Hear this, O ye that would swallow up the needy, and cause the poor of the land to fail,</VERS>\r\n      <VERS vnumber=\"5\">saying, When will the new moon be gone, that we may sell grain? and the sabbath, that we may set forth wheat, making the ephah small, and the shekel great, and dealing falsely with balances of deceit;</VERS>\r\n      <VERS vnumber=\"6\">that we may buy the poor for silver, and the needy for a pair of shoes, and sell the refuse of the wheat?</VERS>\r\n      <VERS vnumber=\"7\">Jehovah hath sworn by the excellency of Jacob, Surely I will never forget any of their works.</VERS>\r\n      <VERS vnumber=\"8\">Shall not the land tremble for this, and every one mourn that dwelleth therein? yea, it shall rise up wholly like the River; and it shall be troubled and sink again, like the River of Egypt.</VERS>\r\n      <VERS vnumber=\"9\">And it shall come to pass in that day, saith the Lord Jehovah, that I will cause the sun to go down at noon, and I will darken the earth in the clear day.</VERS>\r\n      <VERS vnumber=\"10\">And I will turn your feasts into mourning, and all your songs into lamentation; and I will bring sackcloth upon all loins, and baldness upon every head; and I will make it as the mourning for an only son, and the end thereof as a bitter day.</VERS>\r\n      <VERS vnumber=\"11\">Behold, the days come, saith the Lord Jehovah, 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 Jehovah.</VERS>\r\n      <VERS vnumber=\"12\">And 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 Jehovah, and shall not find it.</VERS>\r\n      <VERS vnumber=\"13\">In that day shall the fair virgins and the young men faint for thirst.</VERS>\r\n      <VERS vnumber=\"14\">They that swear by the sin of Samaria, and say, As thy god, O Dan, liveth; and, As the way of Beer-sheba liveth; they shall fall, and never rise up again.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">I saw the Lord standing beside the altar: and he said, Smite the capitals, that the thresholds may shake; and break them in pieces on the head of all of them; and I will slay the last of them with the sword: there shall not one of them flee away, and there shall not one of them escape.</VERS>\r\n      <VERS vnumber=\"2\">Though they dig into Sheol, thence shall my hand take them; and though they climb up to heaven, thence will I bring them down.</VERS>\r\n      <VERS vnumber=\"3\">And 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 it shall bite them.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">For the Lord, Jehovah of hosts, [is] he that toucheth the land and it melteth, and all that dwell therein shall mourn; and it shall rise up wholly like the River, and shall sink again, like the River of Egypt;</VERS>\r\n      <VERS vnumber=\"6\">[it is] he that buildeth his chambers in the heavens, and hath founded his vault upon the earth; he that calleth for the waters of the sea, and poureth them out upon the face of the earth; Jehovah is his name.</VERS>\r\n      <VERS vnumber=\"7\">Are ye not as the children of the Ethiopians unto me, O children of Israel? saith Jehovah. Have not I brought up Israel out of the land of Egypt, and the Philistines from Caphtor, and the Syrians from Kir?</VERS>\r\n      <VERS vnumber=\"8\">Behold, the eyes of the Lord Jehovah are upon the sinful kingdom, and I will destroy it from off the face of the earth; save that I will not utterly destroy the house of Jacob, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"9\">For, lo, I will command, and I will sift the house of Israel among all the nations, like as [grain] is sifted in a sieve, yet shall not the least kernel fall upon the earth.</VERS>\r\n      <VERS vnumber=\"10\">All the sinners of my people shall die by the sword, who say, The evil shall not overtake nor meet us.</VERS>\r\n      <VERS vnumber=\"11\">In that day will I raise up the tabernacle of David that is fallen, and close up the breaches thereof; and I will raise up its ruins, and I will build it as in the days of old;</VERS>\r\n      <VERS vnumber=\"12\">that they may possess the remnant of Edom, and all the nations that are called by my name, saith Jehovah that doeth this.</VERS>\r\n      <VERS vnumber=\"13\">Behold, the days come, saith Jehovah, 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.</VERS>\r\n      <VERS vnumber=\"14\">And I will bring back the captivity of my people 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.</VERS>\r\n      <VERS vnumber=\"15\">And I will plant them upon their land, and they shall no more be plucked up out of their land which I have given them, saith Jehovah thy God.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"31\" bname=\"Obadiah\" bsname=\"Obad\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">The vision of Obadiah. Thus saith the Lord Jehovah concerning Edom: We have heard tidings from Jehovah, and an ambassador is sent among the nations, [saying], Arise ye, and let us rise up against her in battle.</VERS>\r\n      <VERS vnumber=\"2\">Behold, I have made thee small among the nations: thou art greatly despised.</VERS>\r\n      <VERS vnumber=\"3\">The pride of thy heart hath deceived thee, O 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?</VERS>\r\n      <VERS vnumber=\"4\">Though thou mount on high as the eagle, and though thy nest be set among the stars, I will bring thee down from thence, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"5\">If thieves came to thee, if robbers by night (how art thou cut off!), would they not steal [only] till they had enough? if grape-gatherers came to thee, would they not leave some gleaning grapes?</VERS>\r\n      <VERS vnumber=\"6\">How are [the things of] Esau searched! how are his hidden treasures sought out!</VERS>\r\n      <VERS vnumber=\"7\">All the men of thy confederacy have brought thee on thy way, even to the border: the men that were at peace with thee have deceived thee, and prevailed against thee; [they that eat] thy bread lay a snare under thee: there is no understanding in him.</VERS>\r\n      <VERS vnumber=\"8\">Shall I not in that day, saith Jehovah, destroy the wise men out of Edom, and understanding out of the mount of Esau?</VERS>\r\n      <VERS vnumber=\"9\">And thy mighty men, O Teman, shall be dismayed, to the end that every one may be cut off from the mount of Esau by slaughter.</VERS>\r\n      <VERS vnumber=\"10\">For the violence done to thy brother Jacob, shame shall cover thee, and thou shalt be cut off for ever.</VERS>\r\n      <VERS vnumber=\"11\">In the day that thou stoodest on the other side, in the day that strangers carried away his substance, and foreigners entered into his gates, and cast lots upon Jerusalem, even thou wast as one of them.</VERS>\r\n      <VERS vnumber=\"12\">But look not thou on the day of thy brother in the day of his disaster, and rejoice not over the children of Judah in the day of their destruction; neither speak proudly in the day of distress.</VERS>\r\n      <VERS vnumber=\"13\">Enter not into the gate of my people in the day of their calamity; yea, look not thou on their affliction in the day of their calamity, neither lay ye [hands] on their substance in the day of their calamity.</VERS>\r\n      <VERS vnumber=\"14\">And stand thou not in the crossway, to cut off those of his that escape; and deliver not up those of his that remain in the day of distress.</VERS>\r\n      <VERS vnumber=\"15\">For the day of Jehovah is near upon all the nations: as thou hast done, it shall be done unto thee; thy dealing shall return upon thine own head.</VERS>\r\n      <VERS vnumber=\"16\">For as ye have drunk upon my holy mountain, so shall all the nations drink continually; yea, they shall drink, and swallow down, and shall be as though they had not been.</VERS>\r\n      <VERS vnumber=\"17\">But in mount Zion there shall be those that escape, and it shall be holy; and the house of Jacob shall possess their possessions.</VERS>\r\n      <VERS vnumber=\"18\">And 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 burn among them, and devour them; and there shall not be any remaining to the house of Esau; for Jehovah hath spoken it.</VERS>\r\n      <VERS vnumber=\"19\">And they of the South shall possess the mount of Esau, and they of the lowland the Philistines; and they shall possess the field of Ephraim, and the field of Samaria; and Benjamin [shall possess] Gilead.</VERS>\r\n      <VERS vnumber=\"20\">And the captives of this host of the children of Israel, that are [among] the Canaanites, [shall possess] even unto Zarephath; and the captives of Jerusalem, that are in Sepharad, shall possess the cities of the South.</VERS>\r\n      <VERS vnumber=\"21\">And saviours shall come up on mount Zion to judge the mount of Esau; and the kingdom shall be Jehovah`s.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"32\" bname=\"Jonah\" bsname=\"Jonah\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">Now the word of Jehovah came unto Jonah the son of Amittai, saying,</VERS>\r\n      <VERS vnumber=\"2\">Arise, go to Nineveh, that great city, and cry against it; for their wickedness is come up before me.</VERS>\r\n      <VERS vnumber=\"3\">But Jonah rose up to flee unto Tarshish from the presence of Jehovah; and he went down to Joppa, and 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 Jehovah.</VERS>\r\n      <VERS vnumber=\"4\">But Jehovah sent out a great wind upon the sea, and there was a mighty tempest on the sea, so that the ship was like to be broken.</VERS>\r\n      <VERS vnumber=\"5\">Then the mariners were afraid, and cried every man unto his god; and they cast forth the wares that were in the ship into the sea, to lighten it unto them. But Jonah was gone down into the innermost parts of the ship; and he lay, and was fast asleep.</VERS>\r\n      <VERS vnumber=\"6\">So 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">Then 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?</VERS>\r\n      <VERS vnumber=\"9\">And he said unto them, I am a Hebrew; and I fear Jehovah, the God of heaven, who hath made the sea and the dry land.</VERS>\r\n      <VERS vnumber=\"10\">Then were the men exceedingly afraid, and said unto him, What is this that thou hast done? For the men knew that he was fleeing from the presence of Jehovah, because he had told them.</VERS>\r\n      <VERS vnumber=\"11\">Then said they unto him, What shall we do unto thee, that the sea may be calm unto us? for the sea grew more and more tempestuous.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">Nevertheless the men rowed hard to get them back to the land; but they could not: for the sea grew more and more tempestuous against them.</VERS>\r\n      <VERS vnumber=\"14\">Wherefore they cried unto Jehovah, and said, We beseech thee, O Jehovah, we beseech thee, let us not perish for this man`s life, and lay not upon us innocent blood; for thou, O Jehovah, hast done as it pleased thee.</VERS>\r\n      <VERS vnumber=\"15\">So they took up Jonah, and cast him forth into the sea; and the sea ceased from its raging.</VERS>\r\n      <VERS vnumber=\"16\">Then the men feared Jehovah exceedingly; and they offered a sacrifice unto Jehovah, and made vows.</VERS>\r\n      <VERS vnumber=\"17\">And Jehovah prepared a great fish to swallow up Jonah; and Jonah was in the belly of the fish three days and three nights.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">Then Jonah prayed unto Jehovah his God out of the fish`s belly.</VERS>\r\n      <VERS vnumber=\"2\">And he said, I called by reason of mine affliction unto Jehovah, And he answered me; Out of the belly of Sheol cried I, [And] thou heardest my voice.</VERS>\r\n      <VERS vnumber=\"3\">For thou didst cast me into the depth, in the heart of the seas, And the flood was round about me; All thy waves and thy billows passed over me.</VERS>\r\n      <VERS vnumber=\"4\">And I said, I am cast out from before thine eyes; Yet I will look again toward thy holy temple.</VERS>\r\n      <VERS vnumber=\"5\">The waters compassed me about, even to the soul; The deep was round about me; The weeds were wrapped about my head.</VERS>\r\n      <VERS vnumber=\"6\">I went down to the bottoms of the mountains; The earth with its bars [closed] upon me for ever: Yet hast thou brought up my life from the pit, O Jehovah my God.</VERS>\r\n      <VERS vnumber=\"7\">When my soul fainted within me, I remembered Jehovah; And my prayer came in unto thee, into thy holy temple.</VERS>\r\n      <VERS vnumber=\"8\">They that regard lying vanities Forsake their own mercy.</VERS>\r\n      <VERS vnumber=\"9\">But I will sacrifice unto thee with the voice of thanksgiving; I will pay that which I have vowed. Salvation is of Jehovah.</VERS>\r\n      <VERS vnumber=\"10\">And Jehovah spake unto the fish, and it vomited out Jonah upon the dry land.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">And the word of Jehovah came unto Jonah the second time, saying,</VERS>\r\n      <VERS vnumber=\"2\">Arise, go unto Nineveh, that great city, and preach unto it the preaching that I bid thee.</VERS>\r\n      <VERS vnumber=\"3\">So Jonah arose, and went unto Nineveh, according to the word of Jehovah. Now Nineveh was an exceeding great city, of three days` journey.</VERS>\r\n      <VERS vnumber=\"4\">And Jonah began to enter into the city a day`s journey, and he cried, and said, Yet forty days, and Nineveh shall be overthrown.</VERS>\r\n      <VERS vnumber=\"5\">And the people of Nineveh believed God; and they proclaimed a fast, and put on sackcloth, from the greatest of them even to the least of them.</VERS>\r\n      <VERS vnumber=\"6\">And the tidings reached the king of Nineveh, and he arose from his throne, and laid his robe from him, and covered him with sackcloth, and sat in ashes.</VERS>\r\n      <VERS vnumber=\"7\">And he made proclamation and published through Nineveh by the decree of the king and his nobles, saying, Let neither man nor beast, herd nor flock, taste anything; let them not feed, nor drink water;</VERS>\r\n      <VERS vnumber=\"8\">but let them be covered with sackcloth, both man and beast, and let them cry mightily unto God: yea, let them turn every one from his evil way, and from the violence that is in his hands.</VERS>\r\n      <VERS vnumber=\"9\">Who knoweth whether God will not turn and repent, and turn away from his fierce anger, that we perish not?</VERS>\r\n      <VERS vnumber=\"10\">And God saw their works, that they turned from their evil way; and God repented of the evil which he said he would do unto them; and he did it not.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">But it displeased Jonah exceedingly, and he was angry.</VERS>\r\n      <VERS vnumber=\"2\">And he prayed unto Jehovah, and said, I pray thee, O Jehovah, was not this my saying, when I was yet in my country? Therefore I hasted to flee unto Tarshish; for I knew that thou art a gracious God, and merciful, slow to anger, and abundant in lovingkindness, and repentest thee of the evil.</VERS>\r\n      <VERS vnumber=\"3\">Therefore now, O Jehovah, take, I beseech thee, my life from me; for it is better for me to die than to live.</VERS>\r\n      <VERS vnumber=\"4\">And Jehovah said, Doest thou well to be angry?</VERS>\r\n      <VERS vnumber=\"5\">Then 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 shade, till he might see what would become of the city.</VERS>\r\n      <VERS vnumber=\"6\">And Jehovah God prepared a gourd, and made it to come up over Jonah, that it might be a shade over his head, to deliver him from his evil case. So Jonah was exceeding glad because of the gourd.</VERS>\r\n      <VERS vnumber=\"7\">But God prepared a worm when the morning rose the next day, and it smote the gourd, that it withered.</VERS>\r\n      <VERS vnumber=\"8\">And it came to pass, when the sun arose, that God prepared a sultry east wind; and the sun beat upon the head of Jonah, that he fainted, and requested for himself that he might die, and said, It is better for me to die than to live.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And Jehovah said, Thou hast had regard for the gourd, for which thou hast not labored, neither madest it grow; which came up in a night, and perished in a night:</VERS>\r\n      <VERS vnumber=\"11\">and should not I have regard for Nineveh, that great city, wherein are more than sixscore thousand persons that cannot discern between their right hand and their left hand; and also much cattle?</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"33\" bname=\"Micah\" bsname=\"Mic\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">The word of Jehovah that came to Micah the Morashtite in the days of Jotham, Ahaz, and Hezekiah, kings of Judah, which he saw concerning Samaria and Jerusalem.</VERS>\r\n      <VERS vnumber=\"2\">Hear, ye peoples, all of you: hearken, O earth, and all that therein is: and let the Lord Jehovah be witness against you, the Lord from his holy temple.</VERS>\r\n      <VERS vnumber=\"3\">For, behold, Jehovah cometh forth out of his place, and will come down, and tread upon the high places of the earth.</VERS>\r\n      <VERS vnumber=\"4\">And the mountains shall be melted under him, and the valleys shall be cleft, as wax before the fire, as waters that are poured down a steep place.</VERS>\r\n      <VERS vnumber=\"5\">For 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?</VERS>\r\n      <VERS vnumber=\"6\">Therefore I will make Samaria as a heap of the field, [and] as places for planting vineyards; and I will pour down the stones thereof into the valley, and I will uncover the foundations thereof.</VERS>\r\n      <VERS vnumber=\"7\">And all her graven images shall be beaten to pieces, and all her hires shall be burned with fire, and all her idols will I lay desolate; for of the hire of a harlot hath she gathered them, and unto the hire of a harlot shall they return.</VERS>\r\n      <VERS vnumber=\"8\">For this will I lament and wail; I will go stripped and naked; I will make a wailing like the jackals, and a lamentation like the ostriches.</VERS>\r\n      <VERS vnumber=\"9\">For her wounds are incurable; for it is come even unto Judah; it reacheth unto the gate of my people, even to Jerusalem.</VERS>\r\n      <VERS vnumber=\"10\">Tell it not in Gath, weep not at all: at Beth-le-aphrah have I rolled myself in the dust.</VERS>\r\n      <VERS vnumber=\"11\">Pass away, O inhabitant of Shaphir, in nakedness and shame: the inhabitant of Zaanan is not come forth; the wailing of Beth-ezel shall take from you the stay thereof.</VERS>\r\n      <VERS vnumber=\"12\">For the inhabitant of Maroth waiteth anxiously for good, because evil is come down from Jehovah unto the gate of Jerusalem.</VERS>\r\n      <VERS vnumber=\"13\">Bind the chariot to the swift steed, O inhabitant of Lachish: she was the beginning of sin to the daughter of Zion; for the transgressions of Israel were found in thee.</VERS>\r\n      <VERS vnumber=\"14\">Therefore shalt thou give a parting gift to Moresheth-gath: the houses of Achzib shall be a deceitful thing unto the kings of Israel.</VERS>\r\n      <VERS vnumber=\"15\">I will yet bring unto thee, O inhabitant of Mareshah, him that shall possess thee: the glory of Israel shall come even unto Adullam.</VERS>\r\n      <VERS vnumber=\"16\">Make thee bald, and cut off thy hair for the children of thy delight: enlarge thy baldness as the eagle; for they are gone into captivity from thee.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">Woe 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.</VERS>\r\n      <VERS vnumber=\"2\">And they covet fields, and seize them; and houses, and take them away: and they oppress a man and his house, even a man and his heritage.</VERS>\r\n      <VERS vnumber=\"3\">Therefore thus saith Jehovah: Behold, against this family do I devise an evil, from which ye shall not remove your necks, neither shall ye walk haughtily; for it is an evil time.</VERS>\r\n      <VERS vnumber=\"4\">In that day shall they take up a parable against you, and lament with a doleful lamentation, [and] say, We are utterly ruined: he changeth the portion of my people: how doth he remove [it] from me! to the rebellious he divideth our fields.</VERS>\r\n      <VERS vnumber=\"5\">Therefore thou shalt have none that shall cast the line by lot in the assembly of Jehovah.</VERS>\r\n      <VERS vnumber=\"6\">Prophesy ye not, [thus] they prophesy. They shall not prophesy to these: reproaches shall not depart.</VERS>\r\n      <VERS vnumber=\"7\">Shall it be said, O house of Jacob, Is the Spirit of Jehovah straitened? are these his doings? Do not my words do good to him that walketh uprightly?</VERS>\r\n      <VERS vnumber=\"8\">But of late my people is risen up as an enemy: ye strip the robe from off the garment from them that pass by securely [as men] averse from war.</VERS>\r\n      <VERS vnumber=\"9\">The women of my people ye cast out from their pleasant houses; from their young children ye take away my glory for ever.</VERS>\r\n      <VERS vnumber=\"10\">Arise ye, and depart; for this is not your resting-place; because of uncleanness that destroyeth, even with a grievous destruction.</VERS>\r\n      <VERS vnumber=\"11\">If a man walking in a spirit of falsehood do lie, [saying], I will prophesy unto thee of wine and of strong drink; he shall even be the prophet of this people.</VERS>\r\n      <VERS vnumber=\"12\">I 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 a flock in the midst of their pasture; they shall make great noise by reason of [the multitude of] men.</VERS>\r\n      <VERS vnumber=\"13\">The breaker is gone up before them: they have broken forth and passed on to the gate, and are gone out thereat; and their king is passed on before them, and Jehovah at the head of them.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">And I said, Hear, I pray you, ye heads of Jacob, and rulers of the house of Israel: is it not for you to know justice?</VERS>\r\n      <VERS vnumber=\"2\">ye who hate the good, and love the evil; who pluck off their skin from off them, and their flesh from off their bones;</VERS>\r\n      <VERS vnumber=\"3\">who also eat the flesh of my people, and flay their skin from off them, and break their bones, and chop them in pieces, as for the pot, and as flesh within the caldron.</VERS>\r\n      <VERS vnumber=\"4\">Then shall they cry unto Jehovah, but he will not answer them; yea, he will hide his face from them at that time, according as they have wrought evil in their doings.</VERS>\r\n      <VERS vnumber=\"5\">Thus saith Jehovah concerning the prophets that make my people to err; that bite with their teeth, and cry, Peace; and whoso putteth not into their mouths, they even prepare war against him:</VERS>\r\n      <VERS vnumber=\"6\">Therefore it shall be night unto you, that ye shall have no vision; and it shall be dark unto you, that ye shall not divine; and the sun shall go down upon the prophets, and the day shall be black over them.</VERS>\r\n      <VERS vnumber=\"7\">And the seers shall be put to shame, and the diviners confounded; yea, they shall all cover their lips; for there is no answer of God.</VERS>\r\n      <VERS vnumber=\"8\">But as for me, I am full of power by the Spirit of Jehovah, and of judgment, and of might, to declare unto Jacob his transgression, and to Israel his sin.</VERS>\r\n      <VERS vnumber=\"9\">Hear this, I pray you, ye heads of the house of Jacob, and rulers of the house of Israel, that abhor justice, and pervert all equity.</VERS>\r\n      <VERS vnumber=\"10\">They build up Zion with blood, and Jerusalem with iniquity.</VERS>\r\n      <VERS vnumber=\"11\">The heads thereof judge for reward, and the priests thereof teach for hire, and the prophets thereof divine for money: yet they lean upon Jehovah, and say, Is not Jehovah in the midst of us? no evil shall come upon us.</VERS>\r\n      <VERS vnumber=\"12\">Therefore 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 a forest.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">But in the latter days it shall come to pass, that the mountain of Jehovah`s house shall be established on the top of the mountains, and it shall be exalted above the hills; and peoples shall flow unto it.</VERS>\r\n      <VERS vnumber=\"2\">And many nations shall go and say, Come ye, and let us go up to the mountain of Jehovah, 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 out of Zion shall go forth the law, and the word of Jehovah from Jerusalem;</VERS>\r\n      <VERS vnumber=\"3\">and he will judge between many peoples, and will decide concerning strong nations afar off: and they shall beat their swords into plowshares, and their spears into pruning-hooks; nation shall not lift up sword against nation, neither shall they learn war any more.</VERS>\r\n      <VERS vnumber=\"4\">But they shall sit every man under his vine and under his fig-tree; and none shall make them afraid: for the mouth of Jehovah of hosts hath spoken it.</VERS>\r\n      <VERS vnumber=\"5\">For all the peoples walk every one in the name of his god; and we will walk in the name of Jehovah our God for ever and ever.</VERS>\r\n      <VERS vnumber=\"6\">In that day, saith Jehovah, will I assemble that which is lame, and I will gather that which is driven away, and that which I have afflicted;</VERS>\r\n      <VERS vnumber=\"7\">and I will make that which was lame a remnant, and that which was cast far off a strong nation: and Jehovah will reign over them in mount Zion from henceforth even for ever.</VERS>\r\n      <VERS vnumber=\"8\">And thou, O tower of the flock, the hill of the daughter of Zion, unto thee shall it come, yea, the former dominion shall come, the kingdom of the daughter of Jerusalem.</VERS>\r\n      <VERS vnumber=\"9\">Now why dost thou cry out aloud? Is there no king in thee, is thy counsellor perished, that pangs have taken hold of thee as of a woman in travail?</VERS>\r\n      <VERS vnumber=\"10\">Be in pain, and labor to bring forth, O daughter of Zion, like a woman in travail; for now shalt thou go forth out of the city, and shalt dwell in the field, and shalt come even unto Babylon: there shalt thou be rescued; there will Jehovah redeem thee from the hand of thine enemies.</VERS>\r\n      <VERS vnumber=\"11\">And now many nations are assembled against thee, that say, Let her be defiled, and let our eye see [our desire] upon Zion.</VERS>\r\n      <VERS vnumber=\"12\">But they know not the thoughts of Jehovah, neither understand they his counsel; for he hath gathered them as the sheaves to the threshing-floor.</VERS>\r\n      <VERS vnumber=\"13\">Arise and thresh, O daughter of Zion; for I will make thy horn iron, and I will make thy hoofs brass; and thou shalt beat in pieces many peoples: and I will devote their gain unto Jehovah, and their substance unto the Lord of the whole earth.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">Now shalt thou 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.</VERS>\r\n      <VERS vnumber=\"2\">But thou, Beth-lehem Ephrathah, which art little to be among the thousands of Judah, out of thee shall one come forth unto me that is to be ruler in Israel; whose goings forth are from of old, from everlasting.</VERS>\r\n      <VERS vnumber=\"3\">Therefore will he give them up, until the time that she who travaileth hath brought forth: then the residue of his brethren shall return unto the children of Israel.</VERS>\r\n      <VERS vnumber=\"4\">And he shall stand, and shall feed [his flock] in the strength of Jehovah, in the majesty of the name of Jehovah his God: and they shall abide; for now shall he be great unto the ends of the earth.</VERS>\r\n      <VERS vnumber=\"5\">And this [man] shall be [our] 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.</VERS>\r\n      <VERS vnumber=\"6\">And they shall waste the land of Assyria with the sword, and the land of Nimrod in the entrances thereof: and he shall deliver us from the Assyrian, when he cometh into our land, and when he treadeth within our border.</VERS>\r\n      <VERS vnumber=\"7\">And the remnant of Jacob shall be in the midst of many peoples as dew from Jehovah, as showers upon the grass, that tarry not for man, nor wait for the sons of men.</VERS>\r\n      <VERS vnumber=\"8\">And the remnant of Jacob shall be among the nations, in the midst of many peoples, as a lion among the beasts of the forest, as a young lion among the flocks of sheep; who, if he go through, treadeth down and teareth in pieces, and there is none to deliver.</VERS>\r\n      <VERS vnumber=\"9\">Let thy hand be lifted up above thine adversaries, and let all thine enemies be cut off.</VERS>\r\n      <VERS vnumber=\"10\">And it shall come to pass in that day, saith Jehovah, that I will cut off thy horses out of the midst of thee, and will destroy thy chariots:</VERS>\r\n      <VERS vnumber=\"11\">and I will cut off the cities of thy land, and will throw down all thy strongholds.</VERS>\r\n      <VERS vnumber=\"12\">And I will cut off witchcrafts out of thy hand; and thou shalt have no [more] soothsayers:</VERS>\r\n      <VERS vnumber=\"13\">and I will cut off thy graven images and thy pillars out of the midst of thee; and thou shalt no more worship the work of thy hands;</VERS>\r\n      <VERS vnumber=\"14\">and I will pluck up thine Asherim out of the midst of thee; and I will destroy thy cities.</VERS>\r\n      <VERS vnumber=\"15\">And I will execute vengeance in anger and wrath upon the nations which hearkened not.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">Hear ye now what Jehovah saith: Arise, contend thou before the mountains, and let the hills hear thy voice.</VERS>\r\n      <VERS vnumber=\"2\">Hear, O ye mountains, Jehovah`s controversy, and ye enduring foundations of the earth; for Jehovah hath a controversy with his people, and he will contend with Israel.</VERS>\r\n      <VERS vnumber=\"3\">O my people, what have I done unto thee? and wherein have I wearied thee? testify against me.</VERS>\r\n      <VERS vnumber=\"4\">For I brought thee up out of the land of Egypt, and redeemed thee out of the house of bondage; and I sent before thee Moses, Aaron, and Miriam.</VERS>\r\n      <VERS vnumber=\"5\">O my people, remember now what Balak king of Moab devised, and what Balaam the son of Beor answered him; [remember] from Shittim unto Gilgal, that ye may know the righteous acts of Jehovah.</VERS>\r\n      <VERS vnumber=\"6\">Wherewith shall I come before Jehovah, and bow myself before the high God? shall I come before him with burnt-offerings, with calves a year old?</VERS>\r\n      <VERS vnumber=\"7\">will Jehovah be pleased with thousands of rams, [or] with ten thousands of rivers of oil? shall I give my first-born for my transgression, the fruit of my body for the sin of my soul?</VERS>\r\n      <VERS vnumber=\"8\">He hath showed thee, O man, what is good; and what doth Jehovah require of thee, but to do justly, and to love kindness, and to walk humbly with thy God?</VERS>\r\n      <VERS vnumber=\"9\">The voice of Jehovah crieth unto the city, and [the man of] wisdom will see thy name: hear ye the rod, and who hath appointed it.</VERS>\r\n      <VERS vnumber=\"10\">Are there yet treasures of wickedness in the house of the wicked, and a scant measure that is abominable?</VERS>\r\n      <VERS vnumber=\"11\">Shall I be pure with wicked balances, and with a bag of deceitful weights?</VERS>\r\n      <VERS vnumber=\"12\">For the rich men thereof are full of violence, and the inhabitants thereof have spoken lies, and their tongue is deceitful in their mouth.</VERS>\r\n      <VERS vnumber=\"13\">Therefore I also have smitten thee with a grievous wound; I have made thee desolate because of thy sins.</VERS>\r\n      <VERS vnumber=\"14\">Thou shalt eat, but not be satisfied; and thy humiliation shall be in the midst of thee: and thou shalt put away, but shalt not save; and that which thou savest will I give up to the sword.</VERS>\r\n      <VERS vnumber=\"15\">Thou shalt sow, but shalt not reap; thou shalt tread the olives, but shalt not anoint thee with oil; and the vintage, but shalt not drink the wine.</VERS>\r\n      <VERS vnumber=\"16\">For the statutes of Omri are kept, and all the works of the house of Ahab, and ye walk in their counsels; that I may make thee a desolation, and the inhabitants thereof a hissing: and ye shall bear the reproach of my people.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">Woe is me! for I am as when they have gathered the summer fruits, as the grape gleanings of the vintage: there is no cluster to eat; my soul desireth the first-ripe fig.</VERS>\r\n      <VERS vnumber=\"2\">The godly 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.</VERS>\r\n      <VERS vnumber=\"3\">Their hands are upon that which is evil to do it diligently; the prince asketh, and the judge [is ready] for a reward; and the great man, he uttereth the evil desire of his soul: thus they weave it together.</VERS>\r\n      <VERS vnumber=\"4\">The best of them is as a brier; the most upright is [worse] than a thorn hedge: the day of thy watchmen, even thy visitation, is come; now shall be their perplexity.</VERS>\r\n      <VERS vnumber=\"5\">Trust ye not in a neighbor; put ye not confidence in a friend; keep the doors of thy mouth from her that lieth in thy bosom.</VERS>\r\n      <VERS vnumber=\"6\">For the son dishonoreth 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.</VERS>\r\n      <VERS vnumber=\"7\">But as for me, I will look unto Jehovah; I will wait for the God of my salvation: my God will hear me.</VERS>\r\n      <VERS vnumber=\"8\">Rejoice not against me, O mine enemy: when I fall, I shall arise; when I sit in darkness, Jehovah will be a light unto me.</VERS>\r\n      <VERS vnumber=\"9\">I will bear the indignation of Jehovah, 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.</VERS>\r\n      <VERS vnumber=\"10\">Then mine enemy shall see it, and shame shall cover her who said unto me, Where is Jehovah thy God? Mine eyes shall see [my desire] upon her; now shall she be trodden down as the mire of the streets.</VERS>\r\n      <VERS vnumber=\"11\">A day for building thy walls! in that day shall the decree be far removed.</VERS>\r\n      <VERS vnumber=\"12\">In that day shall they come unto thee from Assyria and the cities of Egypt, and from Egypt even to the River, and from sea to sea, and [from] mountain to mountain.</VERS>\r\n      <VERS vnumber=\"13\">Yet shall the land be desolate because of them that dwell therein, for the fruit of their doings.</VERS>\r\n      <VERS vnumber=\"14\">Feed thy people with thy rod, the flock of thy heritage, which dwell solitarily, in the forest in the midst of Carmel: let them feed in Bashan and Gilead, as in the days of old.</VERS>\r\n      <VERS vnumber=\"15\">As in the days of thy coming forth out of the land of Egypt will I show unto them marvellous things.</VERS>\r\n      <VERS vnumber=\"16\">The nations shall see and be ashamed of all their might; they shall lay their hand upon their mouth; their ears shall be deaf.</VERS>\r\n      <VERS vnumber=\"17\">They shall lick the dust like a serpent; like crawling things of the earth they shall come trembling out of their close places; they shall come with fear unto Jehovah our God, and shall be afraid because of thee.</VERS>\r\n      <VERS vnumber=\"18\">Who is a God like unto thee, that pardoneth iniquity, and passeth over the transgression of the remnant of his heritage? he retaineth not his anger for ever, because he delighteth in lovingkindness.</VERS>\r\n      <VERS vnumber=\"19\">He will again have compassion upon us; he will tread our iniquities under foot; and thou wilt cast all their sins into the depths of the sea.</VERS>\r\n      <VERS vnumber=\"20\">Thou wilt perform the truth to Jacob, [and] the lovingkindness to Abraham, which thou hast sworn unto our fathers from the days of old.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"34\" bname=\"Nahum\" bsname=\"Nah\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">The burden of Nineveh. The book of the vision of Nahum the Elkoshite.</VERS>\r\n      <VERS vnumber=\"2\">Jehovah is a jealous God and avengeth; Jehovah avengeth and is full of wrath; Jehovah taketh vengeance on his adversaries, and he reserveth [wrath] for his enemies.</VERS>\r\n      <VERS vnumber=\"3\">Jehovah is slow to anger, and great in power, and will by no means clear [the guilty]: Jehovah hath his way in the whirlwind and in the storm, and the clouds are the dust of his feet.</VERS>\r\n      <VERS vnumber=\"4\">He rebuketh the sea, and maketh it dry, and drieth up all the rivers: Bashan languisheth, and Carmel; and the flower of Lebanon languisheth.</VERS>\r\n      <VERS vnumber=\"5\">The mountains quake at him, and the hills melt; and the earth is upheaved at his presence, yea, the world, and all that dwell therein.</VERS>\r\n      <VERS vnumber=\"6\">Who can stand before his indignation? and who can abide in the fierceness of his anger? his wrath is poured out like fire, and the rocks are broken asunder by him.</VERS>\r\n      <VERS vnumber=\"7\">Jehovah is good, a stronghold in the day of trouble; and he knoweth them that take refuge in him.</VERS>\r\n      <VERS vnumber=\"8\">But with an over-running flood he will make a full end of her place, and will pursue his enemies into darkness.</VERS>\r\n      <VERS vnumber=\"9\">What do ye devise against Jehovah? he will make a full end; affliction shall not rise up the second time.</VERS>\r\n      <VERS vnumber=\"10\">For entangled like thorns, and drunken as with their drink, they are consumed utterly as dry stubble.</VERS>\r\n      <VERS vnumber=\"11\">There is one gone forth out of thee, that deviseth evil against Jehovah, that counselleth wickedness.</VERS>\r\n      <VERS vnumber=\"12\">Thus saith Jehovah: Though they be in full strength, and likewise many, even so shall they be cut down, and he shall pass away. Though I have afflicted thee, I will afflict thee no more.</VERS>\r\n      <VERS vnumber=\"13\">And now will I break his yoke from off thee, and will burst thy bonds in sunder.</VERS>\r\n      <VERS vnumber=\"14\">And Jehovah hath given 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.</VERS>\r\n      <VERS vnumber=\"15\">Behold, upon the mountains the feet of him that bringeth good tidings, that publisheth peace! Keep thy feasts, O Judah, perform thy vows; for the wicked one shall no more pass through thee; he is utterly cut off.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">He that dasheth in pieces is come up against thee: keep the fortress, watch the way, make thy loins strong, fortify thy power mightily.</VERS>\r\n      <VERS vnumber=\"2\">For Jehovah restoreth the excellency of Jacob, as the excellency of Israel; for the emptiers have emptied them out, and destroyed their vine-branches.</VERS>\r\n      <VERS vnumber=\"3\">The shield of his mighty men is made red, the valiant men are in scarlet: the chariots flash with steel in the day of his preparation, and the cypress [spears] are brandished.</VERS>\r\n      <VERS vnumber=\"4\">The chariots rage in the streets; they rush to and fro in the broad ways: the appearance of them is like torches; they run like the lightnings.</VERS>\r\n      <VERS vnumber=\"5\">He remembereth his nobles: they stumble in their march; they make haste to the wall thereof, and the mantelet is prepared.</VERS>\r\n      <VERS vnumber=\"6\">The gates of the rivers are opened, and the palace is dissolved.</VERS>\r\n      <VERS vnumber=\"7\">And it is decreed: she is uncovered, she is carried away; and her handmaids moan as with the voice of doves, beating upon their breasts.</VERS>\r\n      <VERS vnumber=\"8\">But Nineveh hath been from of old like a pool of water: yet they flee away. Stand, stand, [they cry]; but none looketh back.</VERS>\r\n      <VERS vnumber=\"9\">Take ye the spoil of silver, take the spoil of gold; for there is no end of the store, the glory of all goodly furniture.</VERS>\r\n      <VERS vnumber=\"10\">She is empty, and void, and waste; and the heart melteth, and the knees smite together, and anguish is in all loins, and the faces of them all are waxed pale.</VERS>\r\n      <VERS vnumber=\"11\">Where is the den of the lions, and the feeding-place of the young lions, where the lion [and] the lioness walked, the lion`s whelp, and none made them afraid?</VERS>\r\n      <VERS vnumber=\"12\">The lion did tear in pieces enough for his whelps, and strangled for his lionesses, and filled his caves with prey, and his dens with ravin.</VERS>\r\n      <VERS vnumber=\"13\">Behold, I am against thee, saith Jehovah 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Woe to the bloody city! it is all full of lies and rapine; the prey departeth not.</VERS>\r\n      <VERS vnumber=\"2\">The noise of the whip, and the noise of the rattling of wheels, and prancing horses, and bounding chariots,</VERS>\r\n      <VERS vnumber=\"3\">the horseman mounting, and the flashing sword, and the glittering spear, and a multitude of slain, and a great heap of corpses, and there is no end of the bodies; they stumble upon their bodies;-</VERS>\r\n      <VERS vnumber=\"4\">because of the multitude of the whoredoms of the well-favored harlot, the mistress of witchcrafts, that selleth nations through her whoredoms, and families through her witchcrafts.</VERS>\r\n      <VERS vnumber=\"5\">Behold, I am against thee, saith Jehovah of hosts, and I will uncover thy skirts upon thy face; and I will show the nations thy nakedness, and the kingdoms thy shame.</VERS>\r\n      <VERS vnumber=\"6\">And I will cast abominable filth upon thee, and make thee vile, and will set thee as a gazing-stock.</VERS>\r\n      <VERS vnumber=\"7\">And 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?</VERS>\r\n      <VERS vnumber=\"8\">Art thou better than No-amon, that was situate among the rivers, that had the waters round about her; whose rampart was the sea, [and] her wall was of the sea?</VERS>\r\n      <VERS vnumber=\"9\">Ethiopia and Egypt were her strength, and it was infinite; Put and Lubim were thy helpers.</VERS>\r\n      <VERS vnumber=\"10\">Yet was she carried away, she went into captivity; her young children also were dashed in pieces at the head of all the streets; and they cast lots for her honorable men, and all her great men were bound in chains.</VERS>\r\n      <VERS vnumber=\"11\">Thou also shalt be drunken; thou shalt be hid; thou also shalt seek a stronghold because of the enemy.</VERS>\r\n      <VERS vnumber=\"12\">All thy fortresses shall be [like] fig-trees with the first-ripe figs: if they be shaken, they fall into the mouth of the eater.</VERS>\r\n      <VERS vnumber=\"13\">Behold, thy people in the midst of thee are women; the gates of thy land are set wide open unto thine enemies: the fire hath devoured thy bars.</VERS>\r\n      <VERS vnumber=\"14\">Draw thee water for the siege; strengthen thy fortresses; go into the clay, and tread the mortar; make strong the brickkiln.</VERS>\r\n      <VERS vnumber=\"15\">There shall the fire devour thee; the sword shall cut thee off; it shall devour thee like the canker-worm: make thyself many as the canker-worm; make thyself many as the locust.</VERS>\r\n      <VERS vnumber=\"16\">Thou hast multiplied thy merchants above the stars of heaven: the canker-worm ravageth, and fleeth away.</VERS>\r\n      <VERS vnumber=\"17\">Thy princes are as the locusts, and thy marshals as the swarms of grasshoppers, which encamp in the hedges in the cold day, but when the sun ariseth they flee away, and their place is not known where they are.</VERS>\r\n      <VERS vnumber=\"18\">Thy shepherds slumber, O king of Assyria; thy nobles are at rest; thy people are scattered upon the mountains, and there is none to gather them.</VERS>\r\n      <VERS vnumber=\"19\">There is no assuaging of thy hurt: thy wound is grievous: all that hear the report of thee clap their hands over thee; for upon whom hath not thy wickedness passed continually?</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"35\" bname=\"Habakkuk\" bsname=\"Hab\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">The burden which Habakkuk the prophet did see.</VERS>\r\n      <VERS vnumber=\"2\">O Jehovah, how long shall I cry, and thou wilt not hear? I cry out unto thee of violence, and thou wilt not save.</VERS>\r\n      <VERS vnumber=\"3\">Why dost thou show me iniquity, and look upon perverseness? for destruction and violence are before me; and there is strife, and contention riseth up.</VERS>\r\n      <VERS vnumber=\"4\">Therefore the law is slacked, and justice doth never go forth; for the wicked doth compass about the righteous; therefore justice goeth forth perverted.</VERS>\r\n      <VERS vnumber=\"5\">Behold ye among the nations, and look, and wonder marvellously; for I am working a work in your days, which ye will not believe though it be told you.</VERS>\r\n      <VERS vnumber=\"6\">For, lo, I raise up the Chaldeans, that bitter and hasty nation, that march through the breadth of the earth, to possess dwelling-places that are not theirs.</VERS>\r\n      <VERS vnumber=\"7\">They are terrible and dreadful; their judgment and their dignity proceed from themselves.</VERS>\r\n      <VERS vnumber=\"8\">Their horses also are swifter than leopards, and are more fierce than the evening wolves; and their horsemen press proudly on: yea, their horsemen come from far; they fly as an eagle that hasteth to devour.</VERS>\r\n      <VERS vnumber=\"9\">They come all of them for violence; the set of their faces is forwards; and they gather captives as the sand.</VERS>\r\n      <VERS vnumber=\"10\">Yea, he scoffeth at kings, and princes are a derision unto him; he derideth every stronghold; for he heapeth up dust, and taketh it.</VERS>\r\n      <VERS vnumber=\"11\">Then shall he sweep by [as] a wind, and shall pass over, and be guilty, [even] he whose might is his god.</VERS>\r\n      <VERS vnumber=\"12\">Art not thou from everlasting, O Jehovah my God, my Holy One? we shall not die. O Jehovah, thou hast ordained him for judgment; and thou, O Rock, hast established him for correction.</VERS>\r\n      <VERS vnumber=\"13\">Thou that art of purer eyes than to behold evil, and that canst not look on perverseness, wherefore lookest thou upon them that deal treacherously, and holdest thy peace when the wicked swalloweth up the man that is more righteous than he;</VERS>\r\n      <VERS vnumber=\"14\">and makest men as the fishes of the sea, as the creeping things, that have no ruler over them?</VERS>\r\n      <VERS vnumber=\"15\">He taketh up all of them with the angle, he catcheth them in his net, and gathereth them in his drag: therefore he rejoiceth and is glad.</VERS>\r\n      <VERS vnumber=\"16\">Therefore he sacrificeth unto his net, and burneth incense unto his drag; because by them his portion is fat, and his food plenteous.</VERS>\r\n      <VERS vnumber=\"17\">Shall he therefore empty his net, and spare not to slay the nations continually?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">I will stand upon my watch, and set me upon the tower, and will look forth to see what he will speak with me, and what I shall answer concerning my complaint.</VERS>\r\n      <VERS vnumber=\"2\">And Jehovah answered me, and said, Write the vision, and make it plain upon tablets, that he may run that readeth it.</VERS>\r\n      <VERS vnumber=\"3\">For the vision is yet for the appointed time, and it hasteth toward the end, and shall not lie: though it tarry, wait for it; because it will surely come, it will not delay.</VERS>\r\n      <VERS vnumber=\"4\">Behold, his soul is puffed up, it is not upright in him; but the righteous shall live by his faith.</VERS>\r\n      <VERS vnumber=\"5\">Yea, moreover, wine is treacherous, a haughty man, that keepeth not at home; who enlargeth his desire as Sheol, and he is as death, and cannot be satisfied, but gathereth unto him all nations, and heapeth unto him all peoples.</VERS>\r\n      <VERS vnumber=\"6\">Shall 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 that ladeth himself with pledges!</VERS>\r\n      <VERS vnumber=\"7\">Shall they not rise up suddenly that shall bite thee, and awake that shall vex thee, and thou shalt be for booty unto them?</VERS>\r\n      <VERS vnumber=\"8\">Because thou hast plundered many nations, all the remnant of the peoples shall plunder thee, because of men`s blood, and for the violence done to the land, to the city and to all that dwell therein.</VERS>\r\n      <VERS vnumber=\"9\">Woe to him that getteth an evil gain for his house, that he may set his nest on high, that he may be delivered from the hand of evil!</VERS>\r\n      <VERS vnumber=\"10\">Thou hast devised shame to thy house, by cutting off many peoples, and hast sinned against thy soul.</VERS>\r\n      <VERS vnumber=\"11\">For the stone shall cry out of the wall, and the beam out of the timber shall answer it.</VERS>\r\n      <VERS vnumber=\"12\">Woe to him that buildeth a town with blood, and establisheth a city by iniquity!</VERS>\r\n      <VERS vnumber=\"13\">Behold, is it not of Jehovah of hosts that the peoples labor for the fire, and the nations weary themselves for vanity?</VERS>\r\n      <VERS vnumber=\"14\">For the earth shall be filled with the knowledge of the glory of Jehovah, as the waters cover the sea.</VERS>\r\n      <VERS vnumber=\"15\">Woe unto him that giveth his neighbor drink, [to thee] that addest thy venom, and makest him drunken also, that thou mayest look on their nakedness!</VERS>\r\n      <VERS vnumber=\"16\">Thou art filled with shame, and not glory: drink thou also, and be as one uncircumcised; the cup of Jehovah`s right hand shall come round unto thee, and foul shame shall be upon thy glory.</VERS>\r\n      <VERS vnumber=\"17\">For the violence done to Lebanon shall cover thee, and the destruction of the beasts, which made them afraid; because of men`s blood, and for the violence done to the land, to the city and to all that dwell therein.</VERS>\r\n      <VERS vnumber=\"18\">What profiteth the graven image, that the maker thereof hath graven it; the molten image, even the teacher of lies, that he that fashioneth its form trusteth therein, to make dumb idols?</VERS>\r\n      <VERS vnumber=\"19\">Woe unto him that saith to the wood, Awake; to the dumb stone, Arise! Shall this teach? Behold, it is overlaid with gold and silver, and there is no breath at all in the midst of it.</VERS>\r\n      <VERS vnumber=\"20\">But Jehovah is in his holy temple: let all the earth keep silence before him.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">A prayer of Habakkuk the prophet, set to Shigionoth.</VERS>\r\n      <VERS vnumber=\"2\">O Jehovah, I have heard the report of thee, and am afraid: O Jehovah, revive thy work in the midst of the years; In the midst of the years make it known; In wrath remember mercy.</VERS>\r\n      <VERS vnumber=\"3\">God came from Teman, And the Holy One from mount Paran.     Selah. His glory covered the heavens, And the earth was full of his praise.</VERS>\r\n      <VERS vnumber=\"4\">And [his] brightness was as the light; He had rays [coming forth] from his hand; And there was the hiding of his power.</VERS>\r\n      <VERS vnumber=\"5\">Before him went the pestilence, And fiery bolts went forth at his feet.</VERS>\r\n      <VERS vnumber=\"6\">He stood, and measured the earth; He beheld, and drove asunder the nations; And the eternal mountains were scattered; The everlasting hills did bow; His goings were [as] of old.</VERS>\r\n      <VERS vnumber=\"7\">I saw the tents of Cushan in affliction; The curtains of the land of Midian did tremble.</VERS>\r\n      <VERS vnumber=\"8\">Was Jehovah displeased with the rivers? Was thine anger against the rivers, Or thy wrath against the sea, That thou didst ride upon thy horses, Upon thy chariots of salvation?</VERS>\r\n      <VERS vnumber=\"9\">Thy bow was made quite bare; The oaths to the tribes were a [sure] word.     Selah. Thou didst cleave the earth with rivers.</VERS>\r\n      <VERS vnumber=\"10\">The mountains saw thee, and were afraid; The tempest of waters passed by; The deep uttered its voice, And lifted up its hands on high.</VERS>\r\n      <VERS vnumber=\"11\">The sun and moon stood still in their habitation, At the light of thine arrows as they went, At the shining of thy glittering spear.</VERS>\r\n      <VERS vnumber=\"12\">Thou didst march though the land in indignation; Thou didst thresh the nations in anger.</VERS>\r\n      <VERS vnumber=\"13\">Thou wentest forth for the salvation of thy people, For the salvation of thine anointed; Thou woundest the head out of the house of the wicked man, Laying bare the foundation even unto the neck.     Selah.</VERS>\r\n      <VERS vnumber=\"14\">Thou didst pierce with his own staves the head of his       warriors: They came as a whirlwind to scatter me; Their rejoicing was as to devour the poor secretly.</VERS>\r\n      <VERS vnumber=\"15\">Thou didst tread the sea with thy horses, The heap of mighty waters.</VERS>\r\n      <VERS vnumber=\"16\">I heard, and my body trembled, My lips quivered at the voice; Rottenness entereth into my bones, and I tremble in my place; Because I must wait quietly for the day of trouble, For the coming up of the people that invadeth us.</VERS>\r\n      <VERS vnumber=\"17\">For though the fig-tree shall not flourish, Neither shall fruit be in the vines; The labor of the olive shall fail, And the fields shall yield no food; The flock shall be cut off from the fold, And there shall be no herd in the stalls:</VERS>\r\n      <VERS vnumber=\"18\">Yet I will rejoice in Jehovah, I will joy in the God of my salvation.</VERS>\r\n      <VERS vnumber=\"19\">Jehovah, the Lord, is my strength; And he maketh my feet like hinds` [feet], And will make me to walk upon my high places.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"36\" bname=\"Zephaniah\" bsname=\"Zeph\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">The word of Jehovah which came unto Zephaniah the son of Cushi, the son of Gedaliah, the son of Amariah, the son of Hezekiah, in the days of Josiah the son of Amon, king of Judah.</VERS>\r\n      <VERS vnumber=\"2\">I will utterly consume all things from off the face of the ground, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"3\">I will consume man and beast; I will consume the birds of the heavens, and the fishes of the sea, and the stumblingblocks with the wicked; and I will cut off man from off the face of the ground, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"4\">And I will stretch out my 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 Chemarim with the priests;</VERS>\r\n      <VERS vnumber=\"5\">and them that worship the host of heaven upon the housetops; and them that worship, that swear to Jehovah and swear by Malcam;</VERS>\r\n      <VERS vnumber=\"6\">and them that are turned back from following Jehovah; and those that have not sought Jehovah, nor inquired after him.</VERS>\r\n      <VERS vnumber=\"7\">Hold thy peace at the presence of the Lord Jehovah; for the day of Jehovah is at hand: for Jehovah hath prepared a sacrifice, he hath consecrated his guests.</VERS>\r\n      <VERS vnumber=\"8\">And it shall come to pass in the day of Jehovah`s sacrifice, that I will punish the princes, and the king`s sons, and all such as are clothed with foreign apparel.</VERS>\r\n      <VERS vnumber=\"9\">And in that day I will punish all those that leap over the threshold, that fill their master`s house with violence and deceit.</VERS>\r\n      <VERS vnumber=\"10\">And in that day, saith Jehovah, there shall be the noise of a cry from the fish gate, and a wailing from the second quarter, and a great crashing from the hills.</VERS>\r\n      <VERS vnumber=\"11\">Wail, ye inhabitants of Maktesh; for all the people of Canaan are undone; all they that were laden with silver are cut off.</VERS>\r\n      <VERS vnumber=\"12\">And it shall come to pass at that time, that I will search Jerusalem with lamps; and I will punish the men that are settled on their lees, that say in their heart, Jehovah will not do good, neither will he do evil.</VERS>\r\n      <VERS vnumber=\"13\">And their wealth shall become a spoil, and their houses a desolation: yea, they shall build houses, but shall not inhabit them; and they shall plant vineyards, but shall not drink the wine thereof.</VERS>\r\n      <VERS vnumber=\"14\">The great day of Jehovah is near, it is near and hasteth greatly, [even] the voice of the day of Jehovah; the mighty man crieth there bitterly.</VERS>\r\n      <VERS vnumber=\"15\">That 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,</VERS>\r\n      <VERS vnumber=\"16\">a day of the trumpet and alarm, against the fortified cities, and against the high battlements.</VERS>\r\n      <VERS vnumber=\"17\">And I will bring distress upon men, that they shall walk like blind men, because they have sinned against Jehovah; and their blood shall be poured out as dust, and their flesh as dung.</VERS>\r\n      <VERS vnumber=\"18\">Neither their silver nor their gold shall be able to deliver them in the day of Jehovah`s wrath; but the whole land shall be devoured by the fire of his jealousy: for he will make an end, yea, a terrible end, of all them that dwell in the land.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">Gather yourselves together, yea, gather together, O nation that hath no shame;</VERS>\r\n      <VERS vnumber=\"2\">before the decree bring forth, [before] the day pass as the chaff, before the fierce anger of Jehovah come upon you, before the day of Jehovah`s anger come upon you.</VERS>\r\n      <VERS vnumber=\"3\">Seek ye Jehovah, all ye meek of the earth, that have kept his ordinances; seek righteousness, seek meekness: it may be ye will be hid in the day of Jehovah`s anger.</VERS>\r\n      <VERS vnumber=\"4\">For Gaza shall be forsaken, and Ashkelon a desolation; they shall drive out Ashdod at noonday, and Ekron shall be rooted up.</VERS>\r\n      <VERS vnumber=\"5\">Woe unto the inhabitants of the sea-coast, the nation of the Cherethites! The word of Jehovah is against you, O Canaan, the land of the Philistines; I will destroy thee, that there shall be no inhabitant.</VERS>\r\n      <VERS vnumber=\"6\">And the sea-coast shall be pastures, with cottages for shepherds and folds for flocks.</VERS>\r\n      <VERS vnumber=\"7\">And the coast shall be for the remnant of the house of Judah; they shall feed [their flocks] thereupon; in the houses of Ashkelon shall they lie down in the evening; for Jehovah their God will visit them, and bring back their captivity.</VERS>\r\n      <VERS vnumber=\"8\">I have heard the reproach of Moab, and the revilings of the children of Ammon, wherewith they have reproached my people, and magnified themselves against their border.</VERS>\r\n      <VERS vnumber=\"9\">Therefore as I live, saith Jehovah of hosts, the God of Israel, Surely Moab shall be as Sodom, and the children of Ammon as Gomorrah, a possession of nettles, and saltpits, and a perpetual desolation: the residue of my people shall make a prey of them, and the remnant of my nation shall inherit them.</VERS>\r\n      <VERS vnumber=\"10\">This shall they have for their pride, because they have reproached and magnified themselves against the people of Jehovah of hosts.</VERS>\r\n      <VERS vnumber=\"11\">Jehovah 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 nations.</VERS>\r\n      <VERS vnumber=\"12\">Ye Ethiopians also, ye shall be slain by my sword.</VERS>\r\n      <VERS vnumber=\"13\">And he will stretch out his hand against the north, and destroy Assyria, and will make Nineveh a desolation, and dry like the wilderness.</VERS>\r\n      <VERS vnumber=\"14\">And herds shall lie down in the midst of her, all the beasts of the nations: both the pelican and the porcupine shall lodge in the capitals thereof; [their] voice shall sing in the windows; desolation shall be in the thresholds: for he hath laid bare the cedar-work.</VERS>\r\n      <VERS vnumber=\"15\">This is the joyous city that dwelt carelessly, that said in her heart, I am, and there is none besides 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Woe to her that is rebellious and polluted! to the oppressing city!</VERS>\r\n      <VERS vnumber=\"2\">She obeyed not the voice; she received not correction; she trusted not in Jehovah; she drew not near to her God.</VERS>\r\n      <VERS vnumber=\"3\">Her princes in the midst of her are roaring lions; her judges are evening wolves; they leave nothing till the morrow.</VERS>\r\n      <VERS vnumber=\"4\">Her prophets are light and treacherous persons; her priests have profaned the sanctuary, they have done violence to the law.</VERS>\r\n      <VERS vnumber=\"5\">Jehovah in the midst of her is righteous; he will not do iniquity; every morning doth he bring his justice to light, he faileth not; but the unjust knoweth no shame.</VERS>\r\n      <VERS vnumber=\"6\">I have cut off nations; their battlements are desolate; I have made their streets waste, so that none passeth by; their cities are destroyed, so that there is no man, so that there is no inhabitant.</VERS>\r\n      <VERS vnumber=\"7\">I said, Only fear thou me; receive correction; so her dwelling shall not be cut off, [according to] all that I have appointed concerning her: but they rose early and corrupted all their doings.</VERS>\r\n      <VERS vnumber=\"8\">Therefore wait ye for me, saith Jehovah, 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.</VERS>\r\n      <VERS vnumber=\"9\">For then will I turn to the peoples of a pure language, that they may all call upon the name of Jehovah, to serve him with one consent.</VERS>\r\n      <VERS vnumber=\"10\">From beyond the rivers of Ethiopia my suppliants, even the daughter of my dispersed, shall bring mine offering.</VERS>\r\n      <VERS vnumber=\"11\">In that day shalt thou not be put to shame for all thy doings, wherein thou hast transgressed against me; for then I will take away out of the midst of thee thy proudly exulting ones, and thou shalt no more be haughty in my holy mountain.</VERS>\r\n      <VERS vnumber=\"12\">But I will leave in the midst of thee an afflicted and poor people, and they shall take refuge in the name of Jehovah.</VERS>\r\n      <VERS vnumber=\"13\">The 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.</VERS>\r\n      <VERS vnumber=\"14\">Sing, O daughter of Zion; shout, O Israel; be glad and rejoice with all the heart, O daughter of Jerusalem.</VERS>\r\n      <VERS vnumber=\"15\">Jehovah hath taken away thy judgments, he hath cast out thine enemy: the King of Israel, even Jehovah, is in the midst of thee; thou shalt not fear evil any more.</VERS>\r\n      <VERS vnumber=\"16\">In that day it shall be said to Jerusalem, Fear thou not; O Zion, let not thy hands be slack.</VERS>\r\n      <VERS vnumber=\"17\">Jehovah thy God is in the midst of thee, a mighty one who will save; he will rejoice over thee with joy; he will rest in his love; he will joy over thee with singing.</VERS>\r\n      <VERS vnumber=\"18\">I will gather them that sorrow for the solemn assembly, who were of thee; [to whom] the burden upon her was a reproach.</VERS>\r\n      <VERS vnumber=\"19\">Behold, at that time I will deal with all them that afflict thee; and I will save that which is lame, and gather that which was driven away; and I will make them a praise and a name, whose shame hath been in all the earth.</VERS>\r\n      <VERS vnumber=\"20\">At that time will I bring you in, and at that time will I gather you; for I will make you a name and a praise among all the peoples of the earth, when I bring back your captivity before your eyes, saith Jehovah.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"37\" bname=\"Haggai\" bsname=\"Hag\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">In the second year of Darius the king, in the sixth month, in the first day of the month, came the word of Jehovah by Haggai the prophet unto Zerubbabel the son of Shealtiel, governor of Judah, and to Joshua the son of Jehozadak, the high priest, saying,</VERS>\r\n      <VERS vnumber=\"2\">Thus speaketh Jehovah of hosts, saying, This people say, It is not the time [for us] to come, the time for Jehovah`s house to be built.</VERS>\r\n      <VERS vnumber=\"3\">Then came the word of Jehovah by Haggai the prophet, saying,</VERS>\r\n      <VERS vnumber=\"4\">Is it a time for you yourselves to dwell in your ceiled houses, while this house lieth waste?</VERS>\r\n      <VERS vnumber=\"5\">Now therefore thus saith Jehovah of hosts: Consider your ways.</VERS>\r\n      <VERS vnumber=\"6\">Ye 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.</VERS>\r\n      <VERS vnumber=\"7\">Thus saith Jehovah of hosts: Consider your ways.</VERS>\r\n      <VERS vnumber=\"8\">Go up to the mountain, and bring wood, and build the house; and I will take pleasure in it, and I will be glorified, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"9\">Ye looked for much, and, lo, it came to little; and when ye brought it home, I did blow upon it. Why? saith Jehovah of hosts. Because of my house that lieth waste, while ye run every man to his own house.</VERS>\r\n      <VERS vnumber=\"10\">Therefore for your sake the heavens withhold the dew, and the earth withholdeth its fruit.</VERS>\r\n      <VERS vnumber=\"11\">And I called for a drought upon the land, and upon the mountains, and upon the grain, 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 labor of the hands.</VERS>\r\n      <VERS vnumber=\"12\">Then Zerubbabel the son of Shealtiel, and Joshua the son of Jehozadak, the high priest, with all the remnant of the people, obeyed the voice of Jehovah their God, and the words of Haggai the prophet, as Jehovah their God had sent him; and the people did fear before Jehovah.</VERS>\r\n      <VERS vnumber=\"13\">Then spake Haggai Jehovah`s messenger in Jehovah`s message unto the people, saying, I am with you, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"14\">And Jehovah stirred up the spirit of Zerubbabel the son of Shealtiel, governor of Judah, and the spirit of Joshua the son of Jehozadak, the high priest, and the spirit of all the remnant of the people; and they came and did work on the house of Jehovah of hosts, their God,</VERS>\r\n      <VERS vnumber=\"15\">in the four and twentieth day of the month, in the sixth [month], in the second year of Darius the king.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">In the seventh [month], in the one and twentieth [day] of the month, came the word of Jehovah by Haggai the prophet, saying,</VERS>\r\n      <VERS vnumber=\"2\">Speak now to Zerubbabel the son of Shealtiel, governor of Judah, and to Joshua the son of Jehozadak, the high priest, and to the remnant of the people, saying,</VERS>\r\n      <VERS vnumber=\"3\">Who is left among you that saw this house in its former glory? and how do ye see it now? is it not in your eyes as nothing?</VERS>\r\n      <VERS vnumber=\"4\">Yet now be strong, O Zerubbabel, saith Jehovah; and be strong, O Joshua, son of Jehozadak, the high priest; and be strong, all ye people of the land, saith Jehovah, and work: for I am with you, saith Jehovah of hosts,</VERS>\r\n      <VERS vnumber=\"5\">[according to] the word that I covenanted with you when ye came out of Egypt, and my Spirit abode among you: fear ye not.</VERS>\r\n      <VERS vnumber=\"6\">For thus saith Jehovah 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;</VERS>\r\n      <VERS vnumber=\"7\">and I will shake all nations; and the precious things of all nations shall come; and I will fill this house with glory, saith Jehovah of hosts.</VERS>\r\n      <VERS vnumber=\"8\">The silver is mine, and the gold is mine, saith Jehovah of hosts.</VERS>\r\n      <VERS vnumber=\"9\">The latter glory of this house shall be greater than the former, saith Jehovah of hosts; and in this place will I give peace, saith Jehovah of hosts.</VERS>\r\n      <VERS vnumber=\"10\">In the four and twentieth [day] of the ninth [month], in the second year of Darius, came the word of Jehovah by Haggai the prophet, saying,</VERS>\r\n      <VERS vnumber=\"11\">Thus saith Jehovah of hosts: Ask now the priests concerning the law, saying,</VERS>\r\n      <VERS vnumber=\"12\">If 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 food, shall it become holy? And the priests answered and said, No.</VERS>\r\n      <VERS vnumber=\"13\">Then said Haggai, If one that is unclean by reason of a dead body touch any of these, shall it be unclean? And the priests answered and said, It shall be unclean.</VERS>\r\n      <VERS vnumber=\"14\">Then answered Haggai and said, So is this people, and so is this nation before me, saith Jehovah; and so is every work of their hands; and that which they offer there is unclean.</VERS>\r\n      <VERS vnumber=\"15\">And now, I pray you, consider from this day and backward, before a stone was laid upon a stone in the temple of Jehovah.</VERS>\r\n      <VERS vnumber=\"16\">Through all that time, when one came to a heap of twenty [measures], there were but ten; when one came to the winevat to draw out fifty [vessels], there were but twenty.</VERS>\r\n      <VERS vnumber=\"17\">I smote you with blasting and with mildew and with hail in all the work of your hands; yet ye [turned] not to me, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"18\">Consider, I pray you, from this day and backward, from the four and twentieth day of the ninth [month], since the day that the foundation of Jehovah`s temple was laid, consider it.</VERS>\r\n      <VERS vnumber=\"19\">Is the seed yet in the barn? yea, the vine, and the fig-tree, and the pomegranate, and the olive-tree have not brought forth; from this day will I bless [you].</VERS>\r\n      <VERS vnumber=\"20\">And the word of Jehovah came the second time unto Haggai in the four and twentieth [day] of the month, saying,</VERS>\r\n      <VERS vnumber=\"21\">Speak to Zerubbabel, governor of Judah, saying, I will shake the heavens and the earth;</VERS>\r\n      <VERS vnumber=\"22\">and I will overthrow the throne of kingdoms; and I will destroy the strength of the kingdoms of the nations; 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.</VERS>\r\n      <VERS vnumber=\"23\">In that day, saith Jehovah of hosts, will I take thee, O Zerubbabel, my servant, the son of Shealtiel, saith Jehovah, and will make thee as a signet; for I have chosen thee, saith Jehovah of hosts.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"38\" bname=\"Zechariah\" bsname=\"Zech\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">In the eighth month, in the second year of Darius, came the word of Jehovah unto Zechariah the son of Berechiah, the son of Iddo, the prophet, saying,</VERS>\r\n      <VERS vnumber=\"2\">Jehovah was sore displeased with your fathers.</VERS>\r\n      <VERS vnumber=\"3\">Therefore say thou unto them, Thus saith Jehovah of hosts: Return unto me, saith Jehovah of hosts, and I will return unto you, saith Jehovah of hosts.</VERS>\r\n      <VERS vnumber=\"4\">Be ye not as your fathers, unto whom the former prophets cried, saying, Thus saith Jehovah of hosts, Return ye now from your evil ways, and from your evil doings: but they did not hear, nor hearken unto me, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"5\">Your fathers, where are they? and the prophets, do they live for ever?</VERS>\r\n      <VERS vnumber=\"6\">But my words and my statutes, which I commanded my servants the prophets, did they not overtake your fathers? and they turned and said, Like as Jehovah of hosts thought to do unto us, according to our ways, and according to our doings, so hath he dealt with us.</VERS>\r\n      <VERS vnumber=\"7\">Upon the four and twentieth day of the eleventh month, which is the month Shebat, in the second year of Darius, came the word of Jehovah unto Zechariah the son of Berechiah, the son of Iddo, the prophet, saying,</VERS>\r\n      <VERS vnumber=\"8\">I saw in the 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 there were horses, red, sorrel, and white.</VERS>\r\n      <VERS vnumber=\"9\">Then said I, O my lord, what are these? And the angel that talked with me said unto me, I will show thee what these are.</VERS>\r\n      <VERS vnumber=\"10\">And the man that stood among the myrtle-trees answered and said, These are they whom Jehovah hath sent to walk to and fro through the earth.</VERS>\r\n      <VERS vnumber=\"11\">And they answered the angel of Jehovah 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.</VERS>\r\n      <VERS vnumber=\"12\">Then the angel of Jehovah answered and said, O Jehovah 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?</VERS>\r\n      <VERS vnumber=\"13\">And Jehovah answered the angel that talked with me with good words, [even] comfortable words.</VERS>\r\n      <VERS vnumber=\"14\">So the angel that talked with me said unto me, Cry thou, saying, Thus saith Jehovah of hosts: I am jealous for Jerusalem and for Zion with a great jealousy.</VERS>\r\n      <VERS vnumber=\"15\">And I am very sore displeased with the nations that are at ease; for I was but a little displeased, and they helped forward the affliction.</VERS>\r\n      <VERS vnumber=\"16\">Therefore thus saith Jehovah: I am returned to Jerusalem with mercies; my house shall be built in it, saith Jehovah of hosts, and a line shall be stretched forth over Jerusalem.</VERS>\r\n      <VERS vnumber=\"17\">Cry yet again, saying, Thus saith Jehovah of hosts: My cities shall yet overflow with prosperity; and Jehovah shall yet comfort Zion, and shall yet choose Jerusalem.</VERS>\r\n      <VERS vnumber=\"18\">And I lifted up mine eyes, and saw, and, behold, four horns.</VERS>\r\n      <VERS vnumber=\"19\">And I said unto the angel that talked with me, What are these? And he answered me, These are the horns which have scattered Judah, Israel, and Jerusalem.</VERS>\r\n      <VERS vnumber=\"20\">And Jehovah showed me four smiths.</VERS>\r\n      <VERS vnumber=\"21\">Then said I, What come these to do? And he spake, saying, These are the horns which scattered Judah, so that no man did lift up his head; but these are come to terrify them, to cast down the horns of the nations, which lifted up their horn against the land of Judah to scatter it.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">And I lifted up mine eyes, and saw, and, behold, a man with a measuring line in his hand.</VERS>\r\n      <VERS vnumber=\"2\">Then 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.</VERS>\r\n      <VERS vnumber=\"3\">And, behold, the angel that talked with me went forth, and another angel went out to meet him,</VERS>\r\n      <VERS vnumber=\"4\">and said unto him, Run, speak to this young man, saying, Jerusalem shall be inhabited as villages without walls, by reason of the multitude of men and cattle therein.</VERS>\r\n      <VERS vnumber=\"5\">For I, saith Jehovah, will be unto her a wall of fire round about, and I will be the glory in the midst of her.</VERS>\r\n      <VERS vnumber=\"6\">Ho, ho, flee from the land of the north, saith Jehovah; for I have spread you abroad as the four winds of the heavens, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"7\">Ho Zion, escape, thou that dwellest with the daughter of Babylon.</VERS>\r\n      <VERS vnumber=\"8\">For thus saith Jehovah of hosts: After glory hath he sent me unto the nations which plundered you; for he that toucheth you toucheth the apple of his eye.</VERS>\r\n      <VERS vnumber=\"9\">For, behold, I will shake my hand over them, and they shall be a spoil to those that served them; and ye shall know that Jehovah of hosts hath sent me.</VERS>\r\n      <VERS vnumber=\"10\">Sing and rejoice, O daughter of Zion; for, lo, I come, and I will dwell in the midst of thee, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"11\">And many nations shall join themselves to Jehovah in that day, and shall be my people; and I will dwell in the midst of thee, and thou shalt know that Jehovah of hosts has sent me unto thee.</VERS>\r\n      <VERS vnumber=\"12\">And Jehovah shall inherit Judah as his portion in the holy land, and shall yet choose Jerusalem.</VERS>\r\n      <VERS vnumber=\"13\">Be silent, all flesh, before Jehovah; for he is waked up out of his holy habitation.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">And he showed me Joshua the high priest standing before the angel of Jehovah, and Satan standing at his right hand to be his adversary.</VERS>\r\n      <VERS vnumber=\"2\">And Jehovah said unto Satan, Jehovah rebuke thee, O Satan; yea, Jehovah that hath chosen Jerusalem rebuke thee: is not this a brand plucked out of the fire?</VERS>\r\n      <VERS vnumber=\"3\">Now Joshua was clothed with filthy garments, and was standing before the angel.</VERS>\r\n      <VERS vnumber=\"4\">And he answered and spake unto those that stood before him, saying, Take the filthy garments from off him. And unto him he said, Behold, I have caused thine iniquity to pass from thee, and I will clothe thee with rich apparel.</VERS>\r\n      <VERS vnumber=\"5\">And I said, Let them set a clean mitre upon his head. So they set a clean mitre upon his head, and clothed him with garments; and the angel of Jehovah was standing by.</VERS>\r\n      <VERS vnumber=\"6\">And the angel of Jehovah protested unto Joshua, saying,</VERS>\r\n      <VERS vnumber=\"7\">Thus saith Jehovah of hosts: If thou wilt walk in my ways, and if thou wilt keep my charge, then thou also shalt judge my house, and shalt also keep my courts, and I will give thee a place of access among these that stand by.</VERS>\r\n      <VERS vnumber=\"8\">Hear now, O Joshua the high priest, thou and thy fellows that sit before thee; for they are men that are a sign: for, behold, I will bring forth my servant the Branch.</VERS>\r\n      <VERS vnumber=\"9\">For, behold, the stone that I have set before Joshua; upon one stone are seven eyes: behold, I will engrave the graving thereof, saith Jehovah of hosts, and I will remove the iniquity of that land in one day.</VERS>\r\n      <VERS vnumber=\"10\">In that day, saith Jehovah of hosts, shall ye invite every man his neighbor under the vine and under the fig-tree.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">And the angel that talked with me came again, and waked me, as a man that is wakened out of his sleep.</VERS>\r\n      <VERS vnumber=\"2\">And he said unto me, What seest thou? And I said, I have seen, and, behold, a candlestick all of gold, with its bowl upon the top of it, and its seven lamps thereon; there are seven pipes to each of the lamps, which are upon the top thereof;</VERS>\r\n      <VERS vnumber=\"3\">and two olive-trees by it, one upon the right side of the bowl, and the other upon the left side thereof.</VERS>\r\n      <VERS vnumber=\"4\">And I answered and spake to the angel that talked with me, saying, What are these, my lord?</VERS>\r\n      <VERS vnumber=\"5\">Then the angel that talked with me answered and said unto me, Knowest thou not what these are? And I said, No, my lord.</VERS>\r\n      <VERS vnumber=\"6\">Then he answered and spake unto me, saying, This is the word of Jehovah unto Zerubbabel, saying, Not by might, nor by power, but by my Spirit, saith Jehovah of hosts.</VERS>\r\n      <VERS vnumber=\"7\">Who art thou, O great mountain? before Zerubbabel [thou shalt become] a plain; and he shall bring forth the top stone with shoutings of Grace, grace, unto it.</VERS>\r\n      <VERS vnumber=\"8\">Moreover the word of Jehovah came unto me, saying,</VERS>\r\n      <VERS vnumber=\"9\">The hands of Zerubbabel have laid the foundation of this house; his hands shall also finish it; and thou shalt know that Jehovah of hosts hath sent me unto you.</VERS>\r\n      <VERS vnumber=\"10\">For who hath despised the day of small things? for these seven shall rejoice, and shall see the plummet in the hand of Zerubbabel; [these are] the eyes of Jehovah, which run to and fro through the whole earth.</VERS>\r\n      <VERS vnumber=\"11\">Then 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?</VERS>\r\n      <VERS vnumber=\"12\">And I answered the second time, and said unto him, What are these two olive-branches, which are beside the two golden spouts, that empty the golden [oil] out of themselves?</VERS>\r\n      <VERS vnumber=\"13\">And he answered me and said, Knowest thou not what these are? And I said, No, my lord.</VERS>\r\n      <VERS vnumber=\"14\">Then said he, These are the two anointed ones, that stand by the Lord of the whole earth.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">Then again I lifted up mine eyes, and saw, and, behold, a flying roll.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">Then said he unto me, This is the curse that goeth forth over the face of the whole land: for every one that stealeth shall be cut off on the one side according to it; and every one that sweareth shall be cut off on the other side according to it.</VERS>\r\n      <VERS vnumber=\"4\">I will cause it to go forth, saith Jehovah 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 abide in the midst of his house, and shall consume it with the timber thereof and the stones thereof.</VERS>\r\n      <VERS vnumber=\"5\">Then 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.</VERS>\r\n      <VERS vnumber=\"6\">And I said, What is it? And he said, This is the ephah that goeth forth. He said moreover, This is their appearance in all the land</VERS>\r\n      <VERS vnumber=\"7\">(and, behold, there was lifted up a talent of lead); and this is a woman sitting in the midst of the ephah.</VERS>\r\n      <VERS vnumber=\"8\">And he said, This is Wickedness: and he cast her down into the midst of the ephah; and he cast the weight of lead upon the mouth thereof.</VERS>\r\n      <VERS vnumber=\"9\">Then lifted I up mine eyes, and saw, and, behold, there came forth two women, and the wind was in their wings; now they had wings like the wings of a stork; and they lifted up the ephah between earth and heaven.</VERS>\r\n      <VERS vnumber=\"10\">Then said I to the angel that talked with me, Whither do these bear the ephah?</VERS>\r\n      <VERS vnumber=\"11\">And he said unto me, To build her a house in the land of Shinar: and when it is prepared, she shall be set there in her own place.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">And again I lifted up mine eyes, and saw, and, behold, there came four chariots out from between two mountains; and the mountains were mountains of brass.</VERS>\r\n      <VERS vnumber=\"2\">In the first chariot were red horses; and in the second chariot black horses;</VERS>\r\n      <VERS vnumber=\"3\">and in the third chariot white horses; and in the fourth chariot grizzled strong horses.</VERS>\r\n      <VERS vnumber=\"4\">Then I answered and said unto the angel that talked with me, What are these, my lord?</VERS>\r\n      <VERS vnumber=\"5\">And the angel answered and said unto me, These are the four winds of heaven, which go forth from standing before the Lord of all the earth.</VERS>\r\n      <VERS vnumber=\"6\">[The chariot] wherein are the black horses goeth forth toward the north country; and the white went forth after them; and the grizzled went forth toward the south country.</VERS>\r\n      <VERS vnumber=\"7\">And the strong 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.</VERS>\r\n      <VERS vnumber=\"8\">Then cried he to me, and spake unto me, saying, Behold, they that go toward the north country have quieted my spirit in the north country.</VERS>\r\n      <VERS vnumber=\"9\">And the word of Jehovah came unto me, saying,</VERS>\r\n      <VERS vnumber=\"10\">Take of them of the captivity, even of Heldai, of Tobijah, and of Jedaiah; and come thou the same day, and go into the house of Josiah the son of Zephaniah, whither they are come from Babylon;</VERS>\r\n      <VERS vnumber=\"11\">yea, take [of them] silver and gold, and make crowns, and set them upon the head of Joshua the son of Jehozadak, the high priest;</VERS>\r\n      <VERS vnumber=\"12\">and speak unto him, saying, Thus speaketh Jehovah 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 Jehovah;</VERS>\r\n      <VERS vnumber=\"13\">even he shall build the temple of Jehovah; 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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 Jehovah.</VERS>\r\n      <VERS vnumber=\"15\">And they that are far off shall come and build in the temple of Jehovah; and ye shall know that Jehovah of hosts hath sent me unto you. And [this] shall come to pass, if ye will diligently obey the voice of Jehovah your God.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">And it came to pass in the fourth year of king Darius, that the word of Jehovah came unto Zechariah in the fourth [day] of the ninth month, even in Chislev.</VERS>\r\n      <VERS vnumber=\"2\">Now [they of] Beth-el had sent Sharezer and Regem-melech, and their men, to entreat the favor of Jehovah,</VERS>\r\n      <VERS vnumber=\"3\">[and] to speak unto the priests of the house of Jehovah of hosts, and to the prophets, saying, Should I weep in the fifth month, separating myself, as I have done these so many years?</VERS>\r\n      <VERS vnumber=\"4\">Then came the word of Jehovah of hosts unto me, saying,</VERS>\r\n      <VERS vnumber=\"5\">Speak unto all the people of the land, and to the priests, saying, When ye fasted and mourned in the fifth and in the seventh [month], even these seventy years, did ye at all fast unto me, even to me?</VERS>\r\n      <VERS vnumber=\"6\">And when ye eat, and when ye drink, do not ye eat for yourselves, and drink for yourselves?</VERS>\r\n      <VERS vnumber=\"7\">[Should ye] not [hear] the words which Jehovah cried by the former prophets, when Jerusalem was inhabited and in prosperity, and the cities thereof round about her, and the South and the lowland were inhabited?</VERS>\r\n      <VERS vnumber=\"8\">And the word of Jehovah came unto Zechariah, saying,</VERS>\r\n      <VERS vnumber=\"9\">Thus hath Jehovah of hosts spoken, saying, Execute true judgment, and show kindness and compassion every man to his brother;</VERS>\r\n      <VERS vnumber=\"10\">and oppress not the widow, nor the fatherless, the sojourner, nor the poor; and let none of you devise evil against his brother in your heart.</VERS>\r\n      <VERS vnumber=\"11\">But they refused to hearken, and pulled away the shoulder, and stopped their ears, that they might not hear.</VERS>\r\n      <VERS vnumber=\"12\">Yea, they made their hearts as an adamant stone, lest they should hear the law, and the words which Jehovah of hosts had sent by his Spirit by the former prophets: therefore there came great wrath from Jehovah of hosts.</VERS>\r\n      <VERS vnumber=\"13\">And it is come to pass that, as he cried, and they would not hear, so they shall cry, and I will not hear, said Jehovah of hosts;</VERS>\r\n      <VERS vnumber=\"14\">but I will scatter them with a whirlwind among all the nations which they have not known. Thus the land was desolate after them, so that no man passed through nor returned: for they laid the pleasant land desolate.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">And the word of Jehovah of hosts came [to me], saying,</VERS>\r\n      <VERS vnumber=\"2\">Thus saith Jehovah of hosts: I am jealous for Zion with great jealousy, and I am jealous for her with great wrath.</VERS>\r\n      <VERS vnumber=\"3\">Thus saith Jehovah: I am returned unto Zion, and will dwell in the midst of Jerusalem: and Jerusalem shall be called The city of truth; and the mountain of Jehovah of hosts, The holy mountain.</VERS>\r\n      <VERS vnumber=\"4\">Thus saith Jehovah of hosts: There shall yet old men and old women dwell in the streets of Jerusalem, every man with his staff in his hand for very age.</VERS>\r\n      <VERS vnumber=\"5\">And the streets of the city shall be full of boys and girls playing in the streets thereof.</VERS>\r\n      <VERS vnumber=\"6\">Thus saith Jehovah of hosts: If it be marvellous in the eyes of the remnant of this people in those days, should it also be marvellous in mine eyes? saith Jehovah of hosts.</VERS>\r\n      <VERS vnumber=\"7\">Thus saith Jehovah of hosts: Behold, I will save my people from the east country, and from the west country;</VERS>\r\n      <VERS vnumber=\"8\">and 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.</VERS>\r\n      <VERS vnumber=\"9\">Thus saith Jehovah of hosts: Let your hands be strong, ye that hear in these days these words from the mouth of the prophets that were in the day that the foundation of the house of Jehovah of hosts was laid, even the temple, that it might be built.</VERS>\r\n      <VERS vnumber=\"10\">For before those 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 adversary: for I set all men every one against his neighbor.</VERS>\r\n      <VERS vnumber=\"11\">But now I will not be unto the remnant of this people as in the former days, saith Jehovah of hosts.</VERS>\r\n      <VERS vnumber=\"12\">For [there shall be] the seed of peace; the vine shall give its fruit, and the ground shall give its increase, and the heavens shall give their dew; and I will cause the remnant of this people to inherit all these things.</VERS>\r\n      <VERS vnumber=\"13\">And it shall come to pass that, as ye were a curse among the nations, 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.</VERS>\r\n      <VERS vnumber=\"14\">For thus saith Jehovah of hosts: As I thought to do evil unto you, when your fathers provoked me to wrath, saith Jehovah of hosts, and I repented not;</VERS>\r\n      <VERS vnumber=\"15\">so again have I thought in these days to do good unto Jerusalem and to the house of Judah: fear ye not.</VERS>\r\n      <VERS vnumber=\"16\">These are the things that ye shall do: speak ye every man the truth with his neighbor; execute the judgment of truth and peace in your gates;</VERS>\r\n      <VERS vnumber=\"17\">and let none of you devise evil in your hearts against his neighbor; and love no false oath: for all these are things that I hate, saith Jehovah.</VERS>\r\n      <VERS vnumber=\"18\">And the word of Jehovah of hosts came unto me, saying,</VERS>\r\n      <VERS vnumber=\"19\">Thus saith Jehovah 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 truth and peace.</VERS>\r\n      <VERS vnumber=\"20\">Thus saith Jehovah of hosts: [It shall] yet [come to pass], that there shall come peoples, and the inhabitants of many cities;</VERS>\r\n      <VERS vnumber=\"21\">and the inhabitants of one [city] shall go to another, saying, Let us go speedily to entreat the favor of Jehovah, and to seek Jehovah of hosts: I will go also.</VERS>\r\n      <VERS vnumber=\"22\">Yea, many peoples and strong nations shall come to seek Jehovah of hosts in Jerusalem, and to entreat the favor of Jehovah.</VERS>\r\n      <VERS vnumber=\"23\">Thus saith Jehovah of hosts: In those days [it shall come to pass], that ten men shall take hold, out of all the languages of the nations, they 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">The burden of the word of Jehovah upon the land of Hadrach, and Damascus [shall be] its resting-place (for the eye of man and of all the tribes of Israel is toward Jehovah);</VERS>\r\n      <VERS vnumber=\"2\">and Hamath, also, which bordereth thereon; Tyre and Sidon, because they are very wise.</VERS>\r\n      <VERS vnumber=\"3\">And Tyre did build herself a stronghold, and heaped up silver as the dust, and fine gold as the mire of the streets.</VERS>\r\n      <VERS vnumber=\"4\">Behold, the Lord will dispossess her, and he will smite her power in the sea; and she shall be devoured with fire.</VERS>\r\n      <VERS vnumber=\"5\">Ashkelon shall see it, and fear; Gaza also, and shall be sore pained; and Ekron, for her expectation shall be put to shame; and the king shall perish from Gaza, and Ashkelon shall not be inhabited.</VERS>\r\n      <VERS vnumber=\"6\">And a bastard shall dwell in Ashdod, and I will cut off the pride of the Philistines.</VERS>\r\n      <VERS vnumber=\"7\">And I will take away his blood out of his mouth, and his abominations from between his teeth; and he also shall be a remnant for our God; and he shall be as a chieftain in Judah, and Ekron as a Jebusite.</VERS>\r\n      <VERS vnumber=\"8\">And I will encamp about my house against the army, that none pass through or return; and no oppressor shall pass through them any more: for now have I seen with mine eyes.</VERS>\r\n      <VERS vnumber=\"9\">Rejoice 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, even upon a colt the foal of an ass.</VERS>\r\n      <VERS vnumber=\"10\">And 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 nations: and his dominion shall be from sea to sea, and from the River to the ends of the earth.</VERS>\r\n      <VERS vnumber=\"11\">As for thee also, because of the blood of thy covenant I have set free thy prisoners from the pit wherein is no water.</VERS>\r\n      <VERS vnumber=\"12\">Turn you to the stronghold, ye prisoners of hope: even to-day do I declare that I will render double unto thee.</VERS>\r\n      <VERS vnumber=\"13\">For I have bent Judah for me, I have filled the bow with Ephraim; and I will stir up thy sons, O Zion, against thy sons, O Greece, and will make thee as the sword of a mighty man.</VERS>\r\n      <VERS vnumber=\"14\">And Jehovah shall be seen over them; and his arrow shall go forth as the lightning; and the Lord Jehovah will blow the trumpet, and will go with whirlwinds of the south.</VERS>\r\n      <VERS vnumber=\"15\">Jehovah of hosts will defend them; and they shall devour, and shall tread down the sling-stones; and they shall drink, and make a noise as through wine; and they shall be filled like bowls, like the corners of the altar.</VERS>\r\n      <VERS vnumber=\"16\">And Jehovah their God will save them in that day as the flock of his people; for [they shall be as] the stones of a crown, lifted on high over his land.</VERS>\r\n      <VERS vnumber=\"17\">For how great is his goodness, and how great is his beauty! grain shall make the young men flourish, and new wine the virgins.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">Ask ye of Jehovah rain in the time of the latter rain, [even of] Jehovah that maketh lightnings; and he will give them showers of rain, to every one grass in the field.</VERS>\r\n      <VERS vnumber=\"2\">For the teraphim have spoken vanity, and the diviners have seen a lie; and they have told false dreams, they comfort in vain: therefore they go their way like sheep, they are afflicted, because there is no shepherd.</VERS>\r\n      <VERS vnumber=\"3\">Mine anger is kindled against the shepherds, and I will punish the he-goats; for Jehovah of hosts hath visited his flock, the house of Judah, and will make them as his goodly horse in the battle.</VERS>\r\n      <VERS vnumber=\"4\">From him shall come forth the corner-stone, from him the nail, from him the battle bow, from him every ruler together.</VERS>\r\n      <VERS vnumber=\"5\">And they shall be as mighty men, treading down [their enemies] in the mire of the streets in the battle; and they shall fight, because Jehovah is with them; and the riders on horses shall be confounded.</VERS>\r\n      <VERS vnumber=\"6\">And I will strengthen the house of Judah, and I will save the house of Joseph, and I will bring them back; for I have mercy upon them; and they shall be as though I had not cast them off: for I am Jehovah their God, and I will hear them.</VERS>\r\n      <VERS vnumber=\"7\">And [they of] Ephraim shall be like a mighty man, and their heart shall rejoice as through wine; yea, their children shall see it, and rejoice; their heart shall be glad in Jehovah.</VERS>\r\n      <VERS vnumber=\"8\">I will hiss for them, and gather them; for I have redeemed them; and they shall increase as they have increased.</VERS>\r\n      <VERS vnumber=\"9\">And I will sow them among the peoples; and they shall remember me in far countries; and they shall live with their children, and shall return.</VERS>\r\n      <VERS vnumber=\"10\">I 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.</VERS>\r\n      <VERS vnumber=\"11\">And he will pass through the sea of affliction, and will smite the waves in the sea, and all the depths of the Nile shall dry up; and the pride of Assyria shall be brought down, and the sceptre of Egypt shall depart.</VERS>\r\n      <VERS vnumber=\"12\">And I will strengthen them in Jehovah; and they shall walk up and down in his name, saith Jehovah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">Open thy doors, O Lebanon, that the fire may devour thy cedars.</VERS>\r\n      <VERS vnumber=\"2\">Wail, O fir-tree, for the cedar is fallen, because the goodly ones are destroyed: wail, O ye oaks of Bashan, for the strong forest is come down.</VERS>\r\n      <VERS vnumber=\"3\">A voice of the wailing of the shepherds! for their glory is destroyed: a voice of the roaring of young lions! for the pride of the Jordan is laid waste.</VERS>\r\n      <VERS vnumber=\"4\">Thus said Jehovah my God: Feed the flock of slaughter;</VERS>\r\n      <VERS vnumber=\"5\">whose possessors slay them, and hold themselves not guilty; and they that sell them say, Blessed be Jehovah, for I am rich; and their own shepherds pity them not.</VERS>\r\n      <VERS vnumber=\"6\">For I will no more pity the inhabitants of the land, saith Jehovah; but, lo, I will deliver the men every one into his neighbor`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.</VERS>\r\n      <VERS vnumber=\"7\">So I fed the flock of slaughter, verily the 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.</VERS>\r\n      <VERS vnumber=\"8\">And I cut off the three shepherds in one month; for my soul was weary of them, and their soul also loathed me.</VERS>\r\n      <VERS vnumber=\"9\">Then said I, I will not feed you: that which dieth, let it die; and that which is to be cut off, let it be cut off; and let them that are left eat every one the flesh of another.</VERS>\r\n      <VERS vnumber=\"10\">And I took my staff Beauty, and cut it asunder, that I might break my covenant which I had made with all the peoples.</VERS>\r\n      <VERS vnumber=\"11\">And it was broken in that day; and thus the poor of the flock that gave heed unto me knew that it was the word of Jehovah.</VERS>\r\n      <VERS vnumber=\"12\">And I said unto them, If ye think good, give me my hire; and if not, forbear. So they weighed for my hire thirty [pieces] of silver.</VERS>\r\n      <VERS vnumber=\"13\">And Jehovah said unto me, Cast it unto the potter, the goodly price that I was prized at by them. And I took the thirty [pieces] of silver, and cast them unto the potter, in the house of Jehovah.</VERS>\r\n      <VERS vnumber=\"14\">Then I cut asunder mine other staff, even Bands, that I might break the brotherhood between Judah and Israel.</VERS>\r\n      <VERS vnumber=\"15\">And Jehovah said unto me, Take unto thee yet again the instruments of a foolish shepherd.</VERS>\r\n      <VERS vnumber=\"16\">For, lo, I will raise up a shepherd in the land, who will not visit those that are cut off, neither will seek those that are scattered, nor heal that which is broken, nor feed that which is sound; but he will eat the flesh of the fat [sheep], and will tear their hoofs in pieces.</VERS>\r\n      <VERS vnumber=\"17\">Woe to the worthless 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">The burden of the word of Jehovah concerning Israel. [Thus] saith Jehovah, who stretcheth forth the heavens, and layeth the foundation of the earth, and formeth the spirit of man within him:</VERS>\r\n      <VERS vnumber=\"2\">behold, I will make Jerusalem a cup of reeling unto all the peoples round about, and upon Judah also shall it be in the siege against Jerusalem.</VERS>\r\n      <VERS vnumber=\"3\">And it shall come to pass in that day, that I will make Jerusalem a burdensome stone for all the peoples; all that burden themselves with it shall be sore wounded; and all the nations of the earth shall be gathered together against it.</VERS>\r\n      <VERS vnumber=\"4\">In that day, saith Jehovah, I will smite every horse with terror, and his rider with madness; and I will open mine eyes upon the house of Judah, and will smite every horse of the peoples with blindness.</VERS>\r\n      <VERS vnumber=\"5\">And the chieftains of Judah shall say in their heart, The inhabitants of Jerusalem are my strength in Jehovah of hosts their God.</VERS>\r\n      <VERS vnumber=\"6\">In that day will I make the chieftains of Judah like a pan of fire among wood, and like a flaming torch among sheaves; and they shall devour all the peoples round about, on the right hand and on the left; and [they of] Jerusalem shall yet again dwell in their own place, even in Jerusalem.</VERS>\r\n      <VERS vnumber=\"7\">Jehovah also shall save the tents of Judah first, that the glory of the house of David and the glory of the inhabitants of Jerusalem be not magnified above Judah.</VERS>\r\n      <VERS vnumber=\"8\">In that day shall Jehovah 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 Jehovah before them.</VERS>\r\n      <VERS vnumber=\"9\">And it shall come to pass in that day, that I will seek to destroy all the nations that come against Jerusalem.</VERS>\r\n      <VERS vnumber=\"10\">And I will pour upon the house of David, and upon the inhabitants of Jerusalem, the spirit of grace and of supplication; and they shall look unto 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 first-born.</VERS>\r\n      <VERS vnumber=\"11\">In that day shall there be a great mourning in Jerusalem, as the mourning of Hadadrimmon in the valley of Megiddon.</VERS>\r\n      <VERS vnumber=\"12\">And 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;</VERS>\r\n      <VERS vnumber=\"13\">the family of the house of Levi apart, and their wives apart; the family of the Shimeites apart, and their wives apart;</VERS>\r\n      <VERS vnumber=\"14\">all the families that remain, every family apart, and their wives apart.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">In that day there shall be a fountain opened to the house of David and to the inhabitants of Jerusalem, for sin and for uncleanness.</VERS>\r\n      <VERS vnumber=\"2\">And it shall come to pass in that day, saith Jehovah 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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 Jehovah; and his father and his mother that begat him shall thrust him through when he prophesieth.</VERS>\r\n      <VERS vnumber=\"4\">And it shall come to pass in that day, that the prophets shall be ashamed every one of his vision, when he prophesieth; neither shall they wear a hairy mantle to deceive:</VERS>\r\n      <VERS vnumber=\"5\">but he shall say, I am no prophet, I am a tiller of the ground; for I have been made a bondman from my youth.</VERS>\r\n      <VERS vnumber=\"6\">And one shall say unto him, What are these wounds between thine arms? Then he shall answer, Those with which I was wounded in the house of my friends.</VERS>\r\n      <VERS vnumber=\"7\">Awake, O sword, against my shepherd, and against the man that is my fellow, saith Jehovah of hosts: smite the shepherd, and the sheep shall be scattered; and I will turn my hand upon the little ones.</VERS>\r\n      <VERS vnumber=\"8\">And it shall come to pass, that in all the land, saith Jehovah, two parts therein shall be cut off and die; but the third shall be left therein.</VERS>\r\n      <VERS vnumber=\"9\">And I will bring the third part into 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, Jehovah is my God.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">Behold, a day of Jehovah cometh, when thy spoil shall be divided in the midst of thee.</VERS>\r\n      <VERS vnumber=\"2\">For 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.</VERS>\r\n      <VERS vnumber=\"3\">Then shall Jehovah go forth, and fight against those nations, as when he fought in the day of battle.</VERS>\r\n      <VERS vnumber=\"4\">And 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 be cleft 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.</VERS>\r\n      <VERS vnumber=\"5\">And ye shall flee by the valley of my mountains; for the valley of the mountains shall reach unto Azel; yea, ye shall flee, like as ye fled from before the earthquake in the days of Uzziah king of Judah; and Jehovah my God shall come, and all the holy ones with thee.</VERS>\r\n      <VERS vnumber=\"6\">And it shall come to pass in that day, that there shall not be light; the bright ones shall withdraw themselves:</VERS>\r\n      <VERS vnumber=\"7\">but it shall be one day which is known unto Jehovah; not day, and not night; but it shall come to pass, that at evening time there shall be light.</VERS>\r\n      <VERS vnumber=\"8\">And it shall come to pass in that day, that living waters shall go out from Jerusalem; half of them toward the eastern sea, and half of them toward the western sea: in summer and in winter shall it be.</VERS>\r\n      <VERS vnumber=\"9\">And Jehovah shall be King over all the earth: in that day shall Jehovah be one, and his name one.</VERS>\r\n      <VERS vnumber=\"10\">All the land shall be made like the Arabah, from Geba to Rimmon south of Jerusalem; and she shall be lifted up, and shall dwell in her place, from Benjamin`s gate unto the place of the first gate, unto the corner gate, and from the tower of Hananel unto the king`s wine-presses.</VERS>\r\n      <VERS vnumber=\"11\">And men shall dwell therein, and there shall be no more curse; but Jerusalem shall dwell safely.</VERS>\r\n      <VERS vnumber=\"12\">And this shall be the plague wherewith Jehovah will smite all the peoples that have warred against Jerusalem: their flesh shall consume away while they stand upon their feet, and their eyes shall consume away in their sockets, and their tongue shall consume away in their mouth.</VERS>\r\n      <VERS vnumber=\"13\">And it shall come to pass in that day, that a great tumult from Jehovah shall be among them; and they shall lay hold every one on the hand of his neighbor, and his hand shall rise up against the hand of his neighbor.</VERS>\r\n      <VERS vnumber=\"14\">And Judah also shall fight at Jerusalem; and the wealth of all the nations round about shall be gathered together, gold, and silver, and apparel, in great abundance.</VERS>\r\n      <VERS vnumber=\"15\">And 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 those camps, as that plague.</VERS>\r\n      <VERS vnumber=\"16\">And it shall come to pass, that every one that is left of all the nations that came against Jerusalem shall go up from year to year to worship the King, Jehovah of hosts, and to keep the feast of tabernacles.</VERS>\r\n      <VERS vnumber=\"17\">And it shall be, that whoso of [all] the families of the earth goeth not up unto Jerusalem to worship the King, Jehovah of hosts, upon them there shall be no rain.</VERS>\r\n      <VERS vnumber=\"18\">And if the family of Egypt go not up, and come not, neither [shall it be] upon them; there shall be the plague wherewith Jehovah will smite the nations that go not up to keep the feast of tabernacles.</VERS>\r\n      <VERS vnumber=\"19\">This shall be the punishment of Egypt, and the punishment of all the nations that go not up to keep the feast of tabernacles.</VERS>\r\n      <VERS vnumber=\"20\">In that day shall there be upon the bells of the horses, HOLY UNTO JEHOVAH; and the pots in Jehovah`s house shall be like the bowls before the altar.</VERS>\r\n      <VERS vnumber=\"21\">Yea, every pot in Jerusalem and in Judah shall be holy unto Jehovah of hosts; and all they that sacrifice shall come and take of them, and boil therein: and in that day there shall be no more a Canaanite in the house of Jehovah of hosts.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"39\" bname=\"Malachi\" bsname=\"Mal\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">The burden of the word of Jehovah to Israel by Malachi.</VERS>\r\n      <VERS vnumber=\"2\">I have loved you, saith Jehovah. Yet ye say, Wherein hast thou loved us? Was not Esau Jacob`s brother, saith Jehovah: yet I loved Jacob;</VERS>\r\n      <VERS vnumber=\"3\">but Esau I hated, and made his mountains a desolation, and [gave] his heritage to the jackals of the wilderness.</VERS>\r\n      <VERS vnumber=\"4\">Whereas Edom saith, We are beaten down, but we will return and build the waste places; thus saith Jehovah of hosts, They shall build, but I will throw down; and men shall call them The border of wickedness, and The people against whom Jehovah hath indignation for ever.</VERS>\r\n      <VERS vnumber=\"5\">And your eyes shall see, and ye shall say, Jehovah be magnified beyond the border of Israel.</VERS>\r\n      <VERS vnumber=\"6\">A son honoreth his father, and a servant his master: if then I am a father, where is mine honor? and if I am a master, where is my fear? saith Jehovah of hosts unto you, O priests, that despise my name. And ye say, Wherein have we despised thy name?</VERS>\r\n      <VERS vnumber=\"7\">Ye offer polluted bread upon mine altar. And ye say, Wherein have we polluted thee? In that ye say, The table of Jehovah is contemptible.</VERS>\r\n      <VERS vnumber=\"8\">And when ye offer the blind for sacrifice, it is no evil! and when ye offer the lame and sick, it is no evil! Present it now unto thy governor; will he be pleased with thee? or will he accept thy person? saith Jehovah of hosts.</VERS>\r\n      <VERS vnumber=\"9\">And now, I pray you, entreat the favor of God, that he may be gracious unto us: this hath been by your means: will he accept any of your persons? saith Jehovah of hosts.</VERS>\r\n      <VERS vnumber=\"10\">Oh that there were one among you that would shut the doors, that ye might not kindle [fire on] mine altar in vain! I have no pleasure in you, saith Jehovah of hosts, neither will I accept an offering at your hand.</VERS>\r\n      <VERS vnumber=\"11\">For 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 Gentiles, saith Jehovah of hosts.</VERS>\r\n      <VERS vnumber=\"12\">But ye profane it, in that ye say, The table of Jehovah is polluted, and the fruit thereof, even its food, is contemptible.</VERS>\r\n      <VERS vnumber=\"13\">Ye say also, Behold, what a weariness is it! and ye have snuffed at it, saith Jehovah of hosts; and ye have brought that which was taken by violence, and the lame, and the sick; thus ye bring the offering: should I accept this at your hand? saith Jehovah.</VERS>\r\n      <VERS vnumber=\"14\">But cursed be the deceiver, who hath in his flock a male, and voweth, and sacrificeth unto the Lord a blemished thing; for I am a great King, saith Jehovah of hosts, and my name is terrible among the Gentiles.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">And now, O ye priests, this commandment is for you.</VERS>\r\n      <VERS vnumber=\"2\">If ye will not hear, and if ye will not lay it to heart, to give glory unto my name, saith Jehovah of hosts, then will I send the curse upon you, and I will curse your blessings; yea, I have cursed them already, because ye do not lay it to heart.</VERS>\r\n      <VERS vnumber=\"3\">Behold, I will rebuke your seed, and will spread dung upon your faces, even the dung of your feasts; and ye shall be taken away with it.</VERS>\r\n      <VERS vnumber=\"4\">And ye shall know that I have sent this commandment unto you, that my covenant may be with Levi, saith Jehovah of hosts.</VERS>\r\n      <VERS vnumber=\"5\">My covenant was with him of life and peace; and I gave them to him that he might fear; and he feared me, and stood in awe of my name.</VERS>\r\n      <VERS vnumber=\"6\">The law of truth was in his mouth, and unrighteousness was not found in his lips: he walked with me in peace and uprightness, and turned many away from iniquity.</VERS>\r\n      <VERS vnumber=\"7\">For the priest`s lips should keep knowledge, and they should seek the law at his mouth; for he is the messenger of Jehovah of hosts.</VERS>\r\n      <VERS vnumber=\"8\">But ye are turned aside out of the way; ye have caused many to stumble in the law; ye have corrupted the covenant of Levi, saith Jehovah of hosts.</VERS>\r\n      <VERS vnumber=\"9\">Therefore have I also made you contemptible and base before all the people, according as ye have not kept my ways, but have had respect of persons in the law.</VERS>\r\n      <VERS vnumber=\"10\">Have we not all one father? hath not one God created us? why do we deal treacherously every man against his brother, profaning the covenant of our fathers?</VERS>\r\n      <VERS vnumber=\"11\">Judah hath dealt treacherously, and an abomination is committed in Israel and in Jerusalem; for Judah hath profaned the holiness of Jehovah which he loveth, and hath married the daughter of a foreign god.</VERS>\r\n      <VERS vnumber=\"12\">Jehovah will cut off, to the man that doeth this, him that waketh and him that answereth, out of the tents of Jacob, and him that offereth an offering unto Jehovah of hosts.</VERS>\r\n      <VERS vnumber=\"13\">And this again ye do: ye cover the altar of Jehovah with tears, with weeping, and with sighing, insomuch that he regardeth not the offering any more, neither receiveth it with good will at your hand.</VERS>\r\n      <VERS vnumber=\"14\">Yet ye say, Wherefore? Because Jehovah hath been witness between thee and the wife of thy youth, against whom thou hast dealt treacherously, though she is thy companion, and the wife of thy covenant.</VERS>\r\n      <VERS vnumber=\"15\">And did he not make one, although he had the residue of the Spirit? And wherefore one? He sought a godly seed. Therefore take heed to your spirit, and let none deal treacherously against the wife of his youth.</VERS>\r\n      <VERS vnumber=\"16\">For I hate putting away, saith Jehovah, the God of Israel, and him that covereth his garment with violence, saith Jehovah of hosts: therefore take heed to your spirit, that ye deal not treacherously.</VERS>\r\n      <VERS vnumber=\"17\">Ye have wearied Jehovah with your words. Yet ye say, Wherein have we wearied him? In that ye say, Every one that doeth evil is good in the sight of Jehovah, and he delighteth in them; or where is the God of justice?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Behold, I send my messenger, and he shall prepare the way before me: and the Lord, whom ye seek, will suddenly come to his temple; and the messenger of the covenant, whom ye desire, behold, he cometh, saith Jehovah of hosts.</VERS>\r\n      <VERS vnumber=\"2\">But who can abide the day of his coming? and who shall stand when he appeareth? for he is like a refiner`s fire, and like fuller`s soap:</VERS>\r\n      <VERS vnumber=\"3\">and he will sit as a refiner and purifier of silver, and he will purify the sons of Levi, and refine them as gold and silver; and they shall offer unto Jehovah offerings in righteousness.</VERS>\r\n      <VERS vnumber=\"4\">Then shall the offering of Judah and Jerusalem be pleasant unto Jehovah, as in the days of old, and as in ancient years.</VERS>\r\n      <VERS vnumber=\"5\">And I will come near to you to judgment; and I will be a swift witness against the sorcerers, and against the adulterers, and against the false swearers, and against those that oppress the hireling in his wages, the widow, and the fatherless, and that turn aside the sojourner [from his right], and fear not me, saith Jehovah of hosts.</VERS>\r\n      <VERS vnumber=\"6\">For I, Jehovah, change not; therefore ye, O sons of Jacob, are not consumed.</VERS>\r\n      <VERS vnumber=\"7\">From the days of your fathers ye have turned aside from mine ordinances, and have not kept them. Return unto me, and I will return unto you, saith Jehovah of hosts. But ye say, Wherein shall we return?</VERS>\r\n      <VERS vnumber=\"8\">Will a man rob God? yet ye rob me. But ye say, Wherein have we robbed thee? In tithes and offerings.</VERS>\r\n      <VERS vnumber=\"9\">Ye are cursed with the curse; for ye rob me, even this whole nation.</VERS>\r\n      <VERS vnumber=\"10\">Bring ye the whole tithe into the store-house, that there may be food in my house, and prove me now herewith, saith Jehovah 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].</VERS>\r\n      <VERS vnumber=\"11\">And I will rebuke the devourer for your sakes, and he shall not destroy the fruits of your ground; neither shall your vine cast its fruit before the time in the field, saith Jehovah of hosts.</VERS>\r\n      <VERS vnumber=\"12\">And all nations shall call you happy; for ye shall be a delightsome land, saith Jehovah of hosts.</VERS>\r\n      <VERS vnumber=\"13\">Your words have been stout against me, saith Jehovah. Yet ye say, What have we spoken against thee?</VERS>\r\n      <VERS vnumber=\"14\">Ye have said, It is vain to serve God; and what profit is it that we have kept his charge, and that we have walked mournfully before Jehovah of hosts?</VERS>\r\n      <VERS vnumber=\"15\">And now we call the proud happy; yea, they that work wickedness are built up; yea, they tempt God, and escape.</VERS>\r\n      <VERS vnumber=\"16\">Then they that feared Jehovah spake one with another; and Jehovah hearkened, and heard, and a book of remembrance was written before him, for them that feared Jehovah, and that thought upon his name.</VERS>\r\n      <VERS vnumber=\"17\">And they shall be mine, saith Jehovah of hosts, [even] mine own possession, in the day that I make; and I will spare them, as a man spareth his own son that serveth him.</VERS>\r\n      <VERS vnumber=\"18\">Then shall ye return and discern between the righteous and the wicked, between him that serveth God and him that serveth him not.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">For, behold, the day cometh, it burneth as a furnace; and all the proud, and all that work wickedness, shall be stubble; and the day that cometh shall burn them up, saith Jehovah of hosts, that it shall leave them neither root nor branch.</VERS>\r\n      <VERS vnumber=\"2\">But unto you that fear my name shall the sun of righteousness arise with healing in its wings; and ye shall go forth, and gambol as calves of the stall.</VERS>\r\n      <VERS vnumber=\"3\">And ye shall tread down the wicked; for they shall be ashes under the soles of your feet in the day that I make, saith Jehovah of hosts.</VERS>\r\n      <VERS vnumber=\"4\">Remember ye the law of Moses my servant, which I commanded unto him in Horeb for all Israel, even statutes and ordinances.</VERS>\r\n      <VERS vnumber=\"5\">Behold, I will send you Elijah the prophet before the great and terrible day of Jehovah come.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"40\" bname=\"Matthew\" bsname=\"Matt\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">The book of the generation of Jesus Christ, the son of David, the son of Abraham.</VERS>\r\n      <VERS vnumber=\"2\">Abraham begat Isaac; and Isaac begat Jacob; and Jacob begat Judah and his brethren;</VERS>\r\n      <VERS vnumber=\"3\">and Judah begat Perez and Zerah of Tamar; and Perez begat Hezron; and Hezron begat Ram;</VERS>\r\n      <VERS vnumber=\"4\">and Ram begat Amminadab; and Amminadab begat Nahshon; and Nahshon begat Salmon;</VERS>\r\n      <VERS vnumber=\"5\">and Salmon begat Boaz of Rahab; and Boaz begat Obed of Ruth; and Obed begat Jesse;</VERS>\r\n      <VERS vnumber=\"6\">and Jesse begat David the king.     And David begat Solomon of her [that had been the wife] of Uriah;</VERS>\r\n      <VERS vnumber=\"7\">and Solomon begat Rehoboam; and Rehoboam begat Abijah; and Abijah begat Asa;</VERS>\r\n      <VERS vnumber=\"8\">and Asa begat Jehoshaphat; and Jehoshaphat begat Joram; and Joram begat Uzziah;</VERS>\r\n      <VERS vnumber=\"9\">and Uzziah begat Jotham; and Jotham begat Ahaz; and Ahaz begat Hezekiah;</VERS>\r\n      <VERS vnumber=\"10\">and Hezekiah begat Manasseh; and Manasseh begat Amon; and Amon begat Josiah;</VERS>\r\n      <VERS vnumber=\"11\">and Josiah begat Jechoniah and his brethren, at the time of the carrying away to Babylon.</VERS>\r\n      <VERS vnumber=\"12\">And after the carrying away to Babylon, Jechoniah begat Shealtiel; and Shealtiel begat Zerubbabel;</VERS>\r\n      <VERS vnumber=\"13\">and Zerubbabel begat Abiud; and Abiud begat Eliakim; and Eliakim begat Azor;</VERS>\r\n      <VERS vnumber=\"14\">and Azor begat Sadoc; and Sadoc begat Achim; and Achim begat Eliud;</VERS>\r\n      <VERS vnumber=\"15\">and Eliud begat Eleazar; and Eleazar begat Matthan; and Matthan begat Jacob;</VERS>\r\n      <VERS vnumber=\"16\">and Jacob begat Joseph the husband of Mary, of whom was born Jesus, who is called Christ.</VERS>\r\n      <VERS vnumber=\"17\">So all the generations from Abraham unto David are fourteen generations; and from David unto the carrying away to Babylon fourteen generations; and from the carrying away to Babylon unto the Christ fourteen generations.</VERS>\r\n      <VERS vnumber=\"18\">Now the birth of Jesus Christ was on this wise: When his mother Mary had been betrothed to Joseph, before they came together she was found with child of the Holy Spirit.</VERS>\r\n      <VERS vnumber=\"19\">And Joseph her husband, being a righteous man, and not willing to make her a public example, was minded to put her away privily.</VERS>\r\n      <VERS vnumber=\"20\">But when he thought on these things, behold, an 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 Spirit.</VERS>\r\n      <VERS vnumber=\"21\">And she shall bring forth a son; and thou shalt call his name JESUS; for it is he that shall save his people from their sins.</VERS>\r\n      <VERS vnumber=\"22\">Now all this is come to pass, that it might be fulfilled which was spoken by the Lord through the prophet, saying,</VERS>\r\n      <VERS vnumber=\"23\">Behold, the virgin shall be with child, and shall bring       forth a son, And they shall call his name Immanuel;     which is, being interpreted, God with us.</VERS>\r\n      <VERS vnumber=\"24\">And Joseph arose from his sleep, and did as the angel of the Lord commanded him, and took unto him his wife;</VERS>\r\n      <VERS vnumber=\"25\">and knew her not till she had brought forth a son: and he called his name JESUS.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">Now when Jesus was born in Bethlehem of Judaea in the days of Herod the king, behold, Wise-men from the east came to Jerusalem, saying,</VERS>\r\n      <VERS vnumber=\"2\">Where is he that is born King of the Jews? for we saw his star in the east, and are come to worship him.</VERS>\r\n      <VERS vnumber=\"3\">And when Herod the king heard it, he was troubled, and all Jerusalem with him.</VERS>\r\n      <VERS vnumber=\"4\">And gathering together all the chief priests and scribes of the people, he inquired of them where the Christ should be born.</VERS>\r\n      <VERS vnumber=\"5\">And they said unto him, In Bethlehem of Judaea: for thus it is written through the prophet,</VERS>\r\n      <VERS vnumber=\"6\">And thou Bethlehem, land of Judah, Art in no wise least among the princes of Judah: For out of thee shall come forth a governor, Who shall be shepherd of my people Israel.</VERS>\r\n      <VERS vnumber=\"7\">Then Herod privily called the Wise-men, and learned of them exactly what time the star appeared.</VERS>\r\n      <VERS vnumber=\"8\">And he sent them to Bethlehem, and said, Go and search out exactly concerning the young child; and when ye have found [him,] bring me word, that I also may come and worship him.</VERS>\r\n      <VERS vnumber=\"9\">And they, having heard the king, went their way; and lo, the star, which they saw in the east, went before them, till it came and stood over where the young child was.</VERS>\r\n      <VERS vnumber=\"10\">And when they saw the star, they rejoiced with exceeding great joy.</VERS>\r\n      <VERS vnumber=\"11\">And they came into the house and saw the young child with Mary his mother; and they fell down and worshipped him; and opening their treasures they offered unto him gifts, gold and frankincense and myrrh.</VERS>\r\n      <VERS vnumber=\"12\">And being warned [of God] in a dream that they should not  return to Herod, they departed into their own country another way.</VERS>\r\n      <VERS vnumber=\"13\">Now when they were departed, behold, an 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 tell thee: for Herod will seek the young child to destroy him.</VERS>\r\n      <VERS vnumber=\"14\">And he arose and took the young child and his mother by night, and departed into Egypt;</VERS>\r\n      <VERS vnumber=\"15\">and was there until the death of Herod: that it might be fulfilled which was spoken by the Lord through the prophet, saying, Out of Egypt did I call my son.</VERS>\r\n      <VERS vnumber=\"16\">Then Herod, when he saw that he was mocked of the Wise-men, was exceeding wroth, and sent forth, and slew all the male children that were in Bethlehem, and in all the borders thereof, from two years old and under, according to the time which he had exactly learned of the Wise-men.</VERS>\r\n      <VERS vnumber=\"17\">Then was fulfilled that which was spoken through Jeremiah the prophet, saying,</VERS>\r\n      <VERS vnumber=\"18\">A voice was heard in Ramah, Weeping and great mourning, Rachel weeping for her children; And she would not be comforted, because they are not.</VERS>\r\n      <VERS vnumber=\"19\">But when Herod was dead, behold, an angel of the Lord appeareth in a dream to Joseph in Egypt, saying,</VERS>\r\n      <VERS vnumber=\"20\">Arise and take the young child and his mother, and go into the land of Israel: for they are dead that sought the young child`s life.</VERS>\r\n      <VERS vnumber=\"21\">And he arose and took the young child and his mother, and came into the land of Israel.</VERS>\r\n      <VERS vnumber=\"22\">But when he heard that Archelaus was reigning over Judaea in the room of his father Herod, he was afraid to go thither; and being warned [of God] in a dream, he withdrew into the parts of Galilee,</VERS>\r\n      <VERS vnumber=\"23\">and came and dwelt in a city called Nazareth; that it might be fulfilled which was spoken through the prophets, that he should be called a Nazarene.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">And in those days cometh John the Baptist, preaching in the wilderness of Judaea, saying,</VERS>\r\n      <VERS vnumber=\"2\">Repent ye; for the kingdom of heaven is at hand.</VERS>\r\n      <VERS vnumber=\"3\">For this is he that was spoken of through Isaiah the prophet, saying, The voice of one crying in the wilderness, Make ye ready the way of the Lord, Make his paths straight.</VERS>\r\n      <VERS vnumber=\"4\">Now John himself had his raiment of camel`s hair, and a leathern girdle about his loins; and his food was locusts and wild honey.</VERS>\r\n      <VERS vnumber=\"5\">Then went out unto him Jerusalem, and all Judaea, and all the region round about the Jordan;</VERS>\r\n      <VERS vnumber=\"6\">and they were baptized of him in the river Jordan, confessing their sins.</VERS>\r\n      <VERS vnumber=\"7\">But when he saw many of the Pharisees and Sadducees coming to his baptism, he said unto them, Ye offspring of vipers, who warned you to flee from the wrath to come?</VERS>\r\n      <VERS vnumber=\"8\">Bring forth therefore fruit worthy of repentance:</VERS>\r\n      <VERS vnumber=\"9\">and 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.</VERS>\r\n      <VERS vnumber=\"10\">And even now the axe lieth at the root of the trees: every tree therefore that bringeth not forth good fruit is hewn down, and cast into the fire.</VERS>\r\n      <VERS vnumber=\"11\">I indeed baptize you in 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 in the Holy Spirit and [in] fire:</VERS>\r\n      <VERS vnumber=\"12\">whose fan is in his hand, and he will thoroughly cleanse his threshing-floor; and he will gather his wheat into the garner, but the chaff he will burn up with unquenchable fire.</VERS>\r\n      <VERS vnumber=\"13\">Then cometh Jesus from Galilee to the Jordan unto John, to be baptized of him.</VERS>\r\n      <VERS vnumber=\"14\">But John would have hindered him, saying, I have need to be baptized of thee, and comest thou to me?</VERS>\r\n      <VERS vnumber=\"15\">But Jesus answering said unto him, Suffer [it] now: for thus it becometh us to fulfil all righteousness. Then he suffereth him.</VERS>\r\n      <VERS vnumber=\"16\">And Jesus when he was baptized, went up straightway from the water: and lo, the heavens were opened unto him, and he saw the Spirit of God descending as a dove, and coming upon him;</VERS>\r\n      <VERS vnumber=\"17\">and lo, a voice out of the heavens, saying, This is my beloved Son, in whom I am well pleased.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">Then was Jesus led up of the Spirit into the wilderness to be tempted of the devil.</VERS>\r\n      <VERS vnumber=\"2\">And when he had fasted forty days and forty nights, he afterward hungered.</VERS>\r\n      <VERS vnumber=\"3\">And the tempter came and said unto him, If thou art the Son of God, command that these stones become bread.</VERS>\r\n      <VERS vnumber=\"4\">But 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.</VERS>\r\n      <VERS vnumber=\"5\">Then the devil taketh him into the holy city; and he set him on the pinnacle of the temple,</VERS>\r\n      <VERS vnumber=\"6\">and saith unto him, If thou art the Son of God, cast thyself down: for it is written, He shall give his angels charge concerning thee:     and, On their hands they shall bear thee up, Lest haply thou dash thy foot against a stone.</VERS>\r\n      <VERS vnumber=\"7\">Jesus said unto him, Again it is written, Thou shalt not make trial of the Lord thy God.</VERS>\r\n      <VERS vnumber=\"8\">Again, the devil taketh him unto an exceeding high mountain, and showeth him all the kingdoms of the world, and the glory of them;</VERS>\r\n      <VERS vnumber=\"9\">and he said unto him, All these things will I give thee, if thou wilt fall down and worship me.</VERS>\r\n      <VERS vnumber=\"10\">Then 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.</VERS>\r\n      <VERS vnumber=\"11\">Then the devil leaveth him; and behold, angels came and ministered unto him.</VERS>\r\n      <VERS vnumber=\"12\">Now when he heard that John was delivered up, he withdrew into Galilee;</VERS>\r\n      <VERS vnumber=\"13\">and leaving Nazareth, he came and dwelt in Capernaum, which is by the sea, in the borders of Zebulun and Naphtali:</VERS>\r\n      <VERS vnumber=\"14\">that it might be fulfilled which was spoken through Isaiah the prophet, saying,</VERS>\r\n      <VERS vnumber=\"15\">The land of Zebulun and the land of Naphtali, Toward the sea, beyond the Jordan, Galilee of the Gentiles,</VERS>\r\n      <VERS vnumber=\"16\">The people that sat in darkness Saw a great light, And to them that sat in the region and shadow of death, To them did light spring up.</VERS>\r\n      <VERS vnumber=\"17\">From that time began Jesus to preach, and to say, Repent ye; for the kingdom of heaven is at hand.</VERS>\r\n      <VERS vnumber=\"18\">And walking by the sea of Galilee, he saw two brethren, Simon who is called Peter, and Andrew his brother, casting a net into the sea; for they were fishers.</VERS>\r\n      <VERS vnumber=\"19\">And he saith unto them, Come ye after me, and I will make you fishers of men.</VERS>\r\n      <VERS vnumber=\"20\">And they straightway left the nets, and followed him.</VERS>\r\n      <VERS vnumber=\"21\">And going on from thence he saw two other brethren, James the [son] of Zebedee, and John his brother, in the boat with Zebedee their father, mending their nets; and he called them.</VERS>\r\n      <VERS vnumber=\"22\">And they straightway left the boat and their father, and followed him.</VERS>\r\n      <VERS vnumber=\"23\">And Jesus went about in all Galilee, teaching in their synagogues, and preaching the gospel of the kingdom, and healing all manner of disease and all manner of sickness among the people.</VERS>\r\n      <VERS vnumber=\"24\">And the report of him went forth into all Syria: and they brought unto him all that were sick, holden with divers diseases and torments, possessed with demons, and epileptic, and palsied; and he healed them.</VERS>\r\n      <VERS vnumber=\"25\">And there followed him great multitudes from Galilee and Decapolis and Jerusalem and Judaea and [from] beyond the Jordan.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">And seeing the multitudes, he went up into the mountain: and when he had sat down, his disciples came unto him:</VERS>\r\n      <VERS vnumber=\"2\">and he opened his mouth and taught them, saying,</VERS>\r\n      <VERS vnumber=\"3\">Blessed are the poor in spirit: for theirs is the kingdom of heaven.</VERS>\r\n      <VERS vnumber=\"4\">Blessed are they that mourn: for they shall be comforted.</VERS>\r\n      <VERS vnumber=\"5\">Blessed are the meek: for they shall inherit the earth.</VERS>\r\n      <VERS vnumber=\"6\">Blessed are they that hunger and thirst after righteousness: for they shall be filled.</VERS>\r\n      <VERS vnumber=\"7\">Blessed are the merciful: for they shall obtain mercy.</VERS>\r\n      <VERS vnumber=\"8\">Blessed are the pure in heart: for they shall see God.</VERS>\r\n      <VERS vnumber=\"9\">Blessed are the peacemakers: for they shall be called sons of God.</VERS>\r\n      <VERS vnumber=\"10\">Blessed are they that have been persecuted for righteousness` sake: for theirs is the kingdom of heaven.</VERS>\r\n      <VERS vnumber=\"11\">Blessed are ye when [men] shall reproach you, and persecute you, and say all manner of evil against you falsely, for my sake.</VERS>\r\n      <VERS vnumber=\"12\">Rejoice, and be exceeding glad: for great is your reward in heaven: for so persecuted they the prophets that were before you.</VERS>\r\n      <VERS vnumber=\"13\">Ye are the salt of the earth: but if the salt have lost its savor, wherewith shall it be salted? it is thenceforth good for nothing, but to be cast out and trodden under foot of men.</VERS>\r\n      <VERS vnumber=\"14\">Ye are the light of the world. A city set on a hill cannot be hid.</VERS>\r\n      <VERS vnumber=\"15\">Neither do [men] light a lamp, and put it under the bushel, but on the stand; and it shineth unto all that are in the house.</VERS>\r\n      <VERS vnumber=\"16\">Even so let your light shine before men; that they may see your good works, and glorify your Father who is in heaven.</VERS>\r\n      <VERS vnumber=\"17\">Think not that I came to destroy the law or the prophets: I came not to destroy, but to fulfil.</VERS>\r\n      <VERS vnumber=\"18\">For verily I say unto you, Till heaven and earth pass away, one jot or one tittle shall in no wise pass away from the law, till all things be accomplished.</VERS>\r\n      <VERS vnumber=\"19\">Whosoever therefore shall break one of these least commandments, and shall teach men so, shall be called least in the kingdom of heaven: but whosoever shall do and teach them, he shall be called great in the kingdom of heaven.</VERS>\r\n      <VERS vnumber=\"20\">For I say unto you, that except your righteousness shall exceed [the righteousness] of the scribes and Pharisees, ye shall in no wise enter into the kingdom of heaven.</VERS>\r\n      <VERS vnumber=\"21\">Ye have heard that it was said to them of old time, Thou shalt not kill; and whosoever shall kill shall be in danger of the judgment:</VERS>\r\n      <VERS vnumber=\"22\">but I say unto you, that every one who is angry with his brother shall be in danger of the judgment; and whosoever shall say to his brother, Raca, shall be in danger of the council; and whosoever shall say, Thou fool, shall be in danger of the hell of fire.</VERS>\r\n      <VERS vnumber=\"23\">If therefore thou art offering thy gift at the altar, and there rememberest that thy brother hath aught against thee,</VERS>\r\n      <VERS vnumber=\"24\">leave there thy gift before the altar, and go thy way, first be reconciled to thy brother, and then come and offer thy gift.</VERS>\r\n      <VERS vnumber=\"25\">Agree with thine adversary quickly, while thou art with him in the way; lest haply the adversary deliver thee to the judge, and the judge deliver thee to the officer, and thou be cast into prison.</VERS>\r\n      <VERS vnumber=\"26\">Verily I say unto thee, thou shalt by no means come out thence, till thou have paid the last farthing.</VERS>\r\n      <VERS vnumber=\"27\">Ye have heard that it was said, Thou shalt not commit adultery:</VERS>\r\n      <VERS vnumber=\"28\">but I say unto you, that every one that looketh on a woman to lust after her hath committed adultery with her already in his heart.</VERS>\r\n      <VERS vnumber=\"29\">And if thy right eye causeth thee to stumble, pluck it out, and cast it from thee: for it is profitable for thee that one of thy members should perish, and not thy whole body be cast into hell.</VERS>\r\n      <VERS vnumber=\"30\">And if thy right hand causeth thee to stumble, cut it off, and cast it from thee: for it is profitable for thee that one of thy members should perish, and not thy whole body go into hell.</VERS>\r\n      <VERS vnumber=\"31\">It was said also, Whosoever shall put away his wife, let him give her a writing of divorcement:</VERS>\r\n      <VERS vnumber=\"32\">but I say unto you, that every one that putteth away his wife, saving for the cause of fornication, maketh her an adulteress: and whosoever shall marry her when she is put away committeth adultery.</VERS>\r\n      <VERS vnumber=\"33\">Again, ye have heard that it was said to them of old time, Thou shalt not forswear thyself, but shalt perform unto the Lord thine oaths:</VERS>\r\n      <VERS vnumber=\"34\">but I say unto you, swear not at all; neither by the heaven, for it is the throne of God;</VERS>\r\n      <VERS vnumber=\"35\">nor by the earth, for it is the footstool of his feet; nor by Jerusalem, for it is the city of the great King.</VERS>\r\n      <VERS vnumber=\"36\">Neither shalt thou swear by thy head, for thou canst not make one hair white or black.</VERS>\r\n      <VERS vnumber=\"37\">But let your speech be, Yea, yea; Nay, nay: and whatsoever is more than these is of the evil [one].</VERS>\r\n      <VERS vnumber=\"38\">Ye have heard that it was said, An eye for an eye, and a tooth for a tooth:</VERS>\r\n      <VERS vnumber=\"39\">but I say unto you, resist not him that is evil: but whosoever smiteth thee on thy right cheek, turn to him the other also.</VERS>\r\n      <VERS vnumber=\"40\">And if any man would go to law with thee, and take away thy coat, let him have thy cloak also.</VERS>\r\n      <VERS vnumber=\"41\">And whosoever shall compel thee to go one mile, go with him two.</VERS>\r\n      <VERS vnumber=\"42\">Give to him that asketh thee, and from him that would borrow of thee turn not thou away.</VERS>\r\n      <VERS vnumber=\"43\">Ye have heard that it was said, Thou shalt love thy neighbor, and hate thine enemy:</VERS>\r\n      <VERS vnumber=\"44\">but I say unto you, love your enemies, and pray for them that persecute you;</VERS>\r\n      <VERS vnumber=\"45\">that ye may be sons of your Father who is in heaven: for he maketh his sun to rise on the evil and the good, and sendeth rain on the just and the unjust.</VERS>\r\n      <VERS vnumber=\"46\">For if ye love them that love you, what reward have ye? do not even the publicans the same?</VERS>\r\n      <VERS vnumber=\"47\">And if ye salute your brethren only, what do ye more [than others?] do not even the Gentiles the same?</VERS>\r\n      <VERS vnumber=\"48\">Ye therefore shall be perfect, as your heavenly Father is perfect.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">Take heed that ye do not your righteousness before men, to be seen of them: else ye have no reward with your Father who is in heaven.</VERS>\r\n      <VERS vnumber=\"2\">When therefore thou doest alms, sound not 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 received their reward.</VERS>\r\n      <VERS vnumber=\"3\">But when thou doest alms, let not thy left hand know what thy right hand doeth:</VERS>\r\n      <VERS vnumber=\"4\">that thine alms may be in secret: and thy Father who seeth in secret shall recompense thee.</VERS>\r\n      <VERS vnumber=\"5\">And when ye pray, ye shall not be as the hypocrites: for they love to stand and pray in the synagogues and in the corners of the streets, that they may be seen of men. Verily I say unto you, They have received their reward.</VERS>\r\n      <VERS vnumber=\"6\">But thou, when thou prayest, enter into thine inner chamber, and having shut thy door, pray to thy Father who is in secret, and thy Father who seeth in secret shall recompense thee.</VERS>\r\n      <VERS vnumber=\"7\">And in praying use not vain repetitions, as the Gentiles do: for they think that they shall be heard for their much speaking.</VERS>\r\n      <VERS vnumber=\"8\">Be not therefore like unto them: for your Father knoweth what things ye have need of, before ye ask him.</VERS>\r\n      <VERS vnumber=\"9\">After this manner therefore pray ye. Our Father who art in heaven, Hallowed be thy name.</VERS>\r\n      <VERS vnumber=\"10\">Thy kingdom come. Thy will be done, as in heaven, so on earth.</VERS>\r\n      <VERS vnumber=\"11\">Give us this day our daily bread.</VERS>\r\n      <VERS vnumber=\"12\">And forgive us our debts, as we also have forgiven our debtors.</VERS>\r\n      <VERS vnumber=\"13\">And bring us not into temptation, but deliver us from the evil [one.]</VERS>\r\n      <VERS vnumber=\"14\">For if ye forgive men their trespasses, your heavenly Father will also forgive you.</VERS>\r\n      <VERS vnumber=\"15\">But if ye forgive not men their trespasses, neither will your Father forgive your trespasses.</VERS>\r\n      <VERS vnumber=\"16\">Moreover when ye fast, be not, as the hypocrites, of a sad countenance: for they disfigure their faces, that they may be seen of men to fast. Verily I say unto you, They have received their reward.</VERS>\r\n      <VERS vnumber=\"17\">But thou, when thou fastest, anoint thy head, and wash thy face;</VERS>\r\n      <VERS vnumber=\"18\">that thou be not seen of men to fast, but of thy Father who is in secret: and thy Father, who seeth in secret, shall recompense thee.</VERS>\r\n      <VERS vnumber=\"19\">Lay not up for yourselves treasures upon the earth, where moth and rust consume, and where thieves break through and steal:</VERS>\r\n      <VERS vnumber=\"20\">but lay up for yourselves treasures in heaven, where neither moth nor rust doth consume, and where thieves do not break through nor steal:</VERS>\r\n      <VERS vnumber=\"21\">for where thy treasure is, there will thy heart be also.</VERS>\r\n      <VERS vnumber=\"22\">The lamp of the body is the eye: if therefore thine eye be single, thy whole body shall be full of light.</VERS>\r\n      <VERS vnumber=\"23\">But 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 the darkness!</VERS>\r\n      <VERS vnumber=\"24\">No man can serve two masters; for either he will hate the one, and love the other; or else he will hold to one, and despise the other. Ye cannot serve God and mammon.</VERS>\r\n      <VERS vnumber=\"25\">Therefore I say unto you, be not anxious 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 the food, and the body than the raiment?</VERS>\r\n      <VERS vnumber=\"26\">Behold the birds of the heaven, that they sow not, neither do they reap, nor gather into barns; and your heavenly Father feedeth them. Are not ye of much more value then they?</VERS>\r\n      <VERS vnumber=\"27\">And which of you by being anxious can add one cubit unto the measure of his life?</VERS>\r\n      <VERS vnumber=\"28\">And why are ye anxious concerning raiment? Consider the lilies of the field, how they grow; they toil not, neither do they spin:</VERS>\r\n      <VERS vnumber=\"29\">yet I say unto you, that even Solomon in all his glory was not arrayed like one of these.</VERS>\r\n      <VERS vnumber=\"30\">But if God doth 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?</VERS>\r\n      <VERS vnumber=\"31\">Be not therefore anxious, saying, What shall we eat? or, What shall we drink? or, Wherewithal shall we be clothed?</VERS>\r\n      <VERS vnumber=\"32\">For after all these things do the Gentiles seek; for your heavenly Father knoweth that ye have need of all these things.</VERS>\r\n      <VERS vnumber=\"33\">But seek ye first his kingdom, and his righteousness; and all these things shall be added unto you.</VERS>\r\n      <VERS vnumber=\"34\">Be not therefore anxious for the morrow: for the morrow will be anxious for itself. Sufficient unto the day is the evil thereof.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">Judge not, that ye be not judged.</VERS>\r\n      <VERS vnumber=\"2\">For with what judgment ye judge, ye shall be judged: and with what measure ye mete, it shall be measured unto you.</VERS>\r\n      <VERS vnumber=\"3\">And why beholdest thou the mote that is in thy brother`s eye, but considerest not the beam that is in thine own eye?</VERS>\r\n      <VERS vnumber=\"4\">Or how wilt thou say to thy brother, Let me cast out the mote out of thine eye; and lo, the beam is in thine own eye?</VERS>\r\n      <VERS vnumber=\"5\">Thou hypocrite, cast out first the beam out of thine own eye; and then shalt thou see clearly to cast out the mote out of thy brother`s eye.</VERS>\r\n      <VERS vnumber=\"6\">Give not that which is holy unto the dogs, neither cast your pearls before the swine, lest haply they trample them under their feet, and turn and rend you.</VERS>\r\n      <VERS vnumber=\"7\">Ask, and it shall be given you; seek, and ye shall find; knock, and it shall be opened unto you:</VERS>\r\n      <VERS vnumber=\"8\">for every one that asketh receiveth; and he that seeketh findeth; and to him that knocketh it shall be opened.</VERS>\r\n      <VERS vnumber=\"9\">Or what man is there of you, who, if his son shall ask him for a loaf, will give him a stone;</VERS>\r\n      <VERS vnumber=\"10\">or if he shall ask for a fish, will give him a serpent?</VERS>\r\n      <VERS vnumber=\"11\">If ye then, being evil, know how to give good gifts unto your children, how much more shall your Father who is in heaven give good things to them that ask him?</VERS>\r\n      <VERS vnumber=\"12\">All things therefore whatsoever ye would that men should do unto you, even so do ye also unto them: for this is the law and the prophets.</VERS>\r\n      <VERS vnumber=\"13\">Enter ye in by the narrow gate: for wide is the gate, and broad is the way, that leadeth to destruction, and many are they that enter in thereby.</VERS>\r\n      <VERS vnumber=\"14\">For narrow is the gate, and straitened the way, that leadeth unto life, and few are they that find it.</VERS>\r\n      <VERS vnumber=\"15\">Beware of false prophets, who come to you in sheep`s clothing, but inwardly are ravening wolves.</VERS>\r\n      <VERS vnumber=\"16\">By their fruits ye shall know them. Do [men] gather grapes of thorns, or figs of thistles?</VERS>\r\n      <VERS vnumber=\"17\">Even so every good tree bringeth forth good fruit; but the corrupt tree bringeth forth evil fruit.</VERS>\r\n      <VERS vnumber=\"18\">A good tree cannot bring forth evil fruit, neither can a corrupt tree bring forth good fruit.</VERS>\r\n      <VERS vnumber=\"19\">Every tree that bringeth not forth good fruit is hewn down, and cast into the fire.</VERS>\r\n      <VERS vnumber=\"20\">Therefore by their fruits ye shall know them.</VERS>\r\n      <VERS vnumber=\"21\">Not every one that saith unto me, Lord, Lord, shall enter into the kingdom of heaven; but he that doeth the will of my Father who is in heaven.</VERS>\r\n      <VERS vnumber=\"22\">Many will say to me in that day, Lord, Lord, did we not prophesy by thy name, and by thy name cast out demons, and by thy name do many mighty works?</VERS>\r\n      <VERS vnumber=\"23\">And then will I profess unto them, I never knew you: depart from me, ye that work iniquity.</VERS>\r\n      <VERS vnumber=\"24\">Every one therefore that heareth these words of mine, and doeth them, shall be likened unto a wise man, who built his house upon the rock:</VERS>\r\n      <VERS vnumber=\"25\">and the rain descended, and the floods came, and the winds blew, and beat upon that house; and if fell not: for it was founded upon the rock.</VERS>\r\n      <VERS vnumber=\"26\">And every one that heareth these words of mine, and doeth them not, shall be likened unto a foolish man, who built his house upon the sand:</VERS>\r\n      <VERS vnumber=\"27\">and the rain descended, and the floods came, and the winds blew, and smote upon that house; and it fell: and great was the fall thereof.</VERS>\r\n      <VERS vnumber=\"28\">And it came to pass, when Jesus had finished these words, the multitudes were astonished at his teaching:</VERS>\r\n      <VERS vnumber=\"29\">for he taught them as [one] having authority, and not as their scribes.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">And when he was come down from the mountain, great multitudes followed him.</VERS>\r\n      <VERS vnumber=\"2\">And behold, there came to him a leper and worshipped him, saying, Lord, if thou wilt, thou canst make me clean.</VERS>\r\n      <VERS vnumber=\"3\">And he stretched forth his hand, and touched him, saying, I will; be thou made clean. And straightway his leprosy was cleansed.</VERS>\r\n      <VERS vnumber=\"4\">And Jesus saith unto him, See thou tell no man; but go, show thyself to the priest, and offer the gift that Moses commanded, for a testimony unto them.</VERS>\r\n      <VERS vnumber=\"5\">And when he was entered into Capernaum, there came unto him a centurion, beseeching him,</VERS>\r\n      <VERS vnumber=\"6\">and saying, Lord, my servant lieth in the house sick of the palsy, grievously tormented.</VERS>\r\n      <VERS vnumber=\"7\">And he saith unto him, I will come and heal him.</VERS>\r\n      <VERS vnumber=\"8\">And the centurion answered and said, Lord, I am not worthy that thou shouldest come under my roof; but only say the word, and my servant shall be healed.</VERS>\r\n      <VERS vnumber=\"9\">For I also am a man under authority, having under myself soldiers: and I say to this one, Go, and he goeth; and to another, Come, and he cometh; and to my servant, Do this, and he doeth it.</VERS>\r\n      <VERS vnumber=\"10\">And when 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.</VERS>\r\n      <VERS vnumber=\"11\">And I say unto you, that many shall come from the east and the west, and shall sit down with Abraham, and Isaac, and Jacob, in the kingdom of heaven:</VERS>\r\n      <VERS vnumber=\"12\">but the sons of the kingdom shall be cast forth into the outer darkness: there shall be the weeping and the gnashing of teeth.</VERS>\r\n      <VERS vnumber=\"13\">And Jesus said unto the centurion, Go thy way; as thou hast believed, [so] be it done unto thee. And the servant was healed in that hour.</VERS>\r\n      <VERS vnumber=\"14\">And when Jesus was come into Peter`s house, he saw his wife`s mother lying sick of a fever.</VERS>\r\n      <VERS vnumber=\"15\">And he touched her hand, and the fever left her; and she arose, and ministered unto him.</VERS>\r\n      <VERS vnumber=\"16\">And when even was come, they brought unto him many possessed with demons: and he cast out the spirits with a word, and healed all that were sick:</VERS>\r\n      <VERS vnumber=\"17\">that it might be fulfilled which was spoken through Isaiah the prophet, saying: Himself took our infirmities, and bare our diseases.</VERS>\r\n      <VERS vnumber=\"18\">Now when Jesus saw great multitudes about him, he gave commandments to depart unto the other side.</VERS>\r\n      <VERS vnumber=\"19\">And there came a scribe, and said unto him, Teacher, I will follow thee whithersoever thou goest.</VERS>\r\n      <VERS vnumber=\"20\">And Jesus saith unto him, The foxes have holes, and the birds of the heaven [have] nests; but the Son of man hath not where to lay his head.</VERS>\r\n      <VERS vnumber=\"21\">And another of the disciples said unto him, Lord, suffer me first to go and bury my father.</VERS>\r\n      <VERS vnumber=\"22\">But Jesus saith unto him, Follow me; and leave the dead to bury their own dead.</VERS>\r\n      <VERS vnumber=\"23\">And when he was entered into a boat, his disciples followed him.</VERS>\r\n      <VERS vnumber=\"24\">And behold, there arose a great tempest in the sea, insomuch that the boat was covered with the waves: but he was asleep.</VERS>\r\n      <VERS vnumber=\"25\">And they came to him, and awoke him, saying, Save, Lord; we perish.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And the men marvelled, saying, What manner of man is this, that even the winds and the sea obey him?</VERS>\r\n      <VERS vnumber=\"28\">And when he was come to the other side into the country of the Gadarenes, there met him two possessed with demons, coming forth out of the tombs, exceeding fierce, so that no man could pass by that way.</VERS>\r\n      <VERS vnumber=\"29\">And behold, they cried out, saying, What have we to do with thee, thou Son of God? art thou come hither to torment us before the time?</VERS>\r\n      <VERS vnumber=\"30\">Now there was afar off from them a herd of many swine feeding.</VERS>\r\n      <VERS vnumber=\"31\">And the demons besought him, saying, If thou cast us out, send us away into the herd of swine.</VERS>\r\n      <VERS vnumber=\"32\">And he said unto them, Go. And they came out, and went into the swine: and behold, the whole herd rushed down the steep into the sea, and perished in the waters.</VERS>\r\n      <VERS vnumber=\"33\">And they that fed them fled, and went away into the city, and told everything, and what was befallen to them that were possessed with demons.</VERS>\r\n      <VERS vnumber=\"34\">And behold, all the city came out to meet Jesus: and when they saw him, they besought [him] that he would depart from their borders.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">And he entered into a boat, and crossed over, and came into his own city.</VERS>\r\n      <VERS vnumber=\"2\">And 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 are forgiven.</VERS>\r\n      <VERS vnumber=\"3\">And behold, certain of the scribes said within themselves, This man blasphemeth.</VERS>\r\n      <VERS vnumber=\"4\">And Jesus knowing their thoughts said, Wherefore think ye evil in your hearts?</VERS>\r\n      <VERS vnumber=\"5\">For which is easier, to say, Thy sins are forgiven; or to say, Arise, and walk?</VERS>\r\n      <VERS vnumber=\"6\">But that ye may know that the Son of man hath authority on earth to forgive sins (then saith he to the sick of the palsy), Arise, and take up thy bed, and go up unto thy house.</VERS>\r\n      <VERS vnumber=\"7\">And he arose, and departed to his house.</VERS>\r\n      <VERS vnumber=\"8\">But when the multitudes saw it, they were afraid, and glorified God, who had given such authority unto men.</VERS>\r\n      <VERS vnumber=\"9\">And as Jesus passed by from thence, he saw a man, called Matthew, sitting at the place of toll: and he saith unto him, Follow me. And he arose, and followed him.</VERS>\r\n      <VERS vnumber=\"10\">And it came to pass, as he sat at meat in the house, behold, many publicans and sinners came and sat down with Jesus and his disciples.</VERS>\r\n      <VERS vnumber=\"11\">And when the Pharisees saw it, they said unto his disciples, Why eateth your Teacher with the publicans and sinners?</VERS>\r\n      <VERS vnumber=\"12\">But when he heard it, he said, They that are whole have no need of a physician, but they that are sick.</VERS>\r\n      <VERS vnumber=\"13\">But go ye and learn what [this] meaneth, I desire mercy, and not sacrifice, for I came not to call the righteous, but sinners.</VERS>\r\n      <VERS vnumber=\"14\">Then come to him the disciples of John, saying, Why do we and the Pharisees fast oft, but thy disciples fast not?</VERS>\r\n      <VERS vnumber=\"15\">And Jesus said unto them, Can the sons of the bridechamber mourn, as long as the bridegroom is with them? but the days will come, when the bridegroom shall be taken away from them, and then will they fast.</VERS>\r\n      <VERS vnumber=\"16\">And no man putteth a piece of undressed cloth upon an old garment; for that which should fill it up taketh from the garment, and a worse rent is made.</VERS>\r\n      <VERS vnumber=\"17\">Neither do [men] put new wine into old wine-skins: else the skins burst, and the wine is spilled, and the skins perish: but they put new wine into fresh wine-skins, and both are preserved.</VERS>\r\n      <VERS vnumber=\"18\">While he spake these things unto them, behold, there came a ruler, and worshipped him, saying, My daughter is even now dead: but come and lay thy hand upon her, and she shall live.</VERS>\r\n      <VERS vnumber=\"19\">And Jesus arose, and followed him, and [so did] his disciples.</VERS>\r\n      <VERS vnumber=\"20\">And behold, a woman, who had an issue of blood twelve years, came behind him, and touched the border of his garment:</VERS>\r\n      <VERS vnumber=\"21\">for she said within herself, If I do but touch his garment, I shall be made whole.</VERS>\r\n      <VERS vnumber=\"22\">But Jesus turning and seeing her said, Daughter, be of good cheer; thy faith hath made thee whole. And the woman was made whole from that hour.</VERS>\r\n      <VERS vnumber=\"23\">And when Jesus came into the ruler`s house, and saw the flute-players, and the crowd making a tumult,</VERS>\r\n      <VERS vnumber=\"24\">he said, Give place: for the damsel is not dead, but sleepeth. And they laughed him to scorn.</VERS>\r\n      <VERS vnumber=\"25\">But when the crowd was put forth, he entered in, and took her by the hand; and the damsel arose.</VERS>\r\n      <VERS vnumber=\"26\">And the fame hereof went forth into all that land.</VERS>\r\n      <VERS vnumber=\"27\">And as Jesus passed by from thence, two blind men followed him, crying out, and saying, Have mercy on us, thou son of David.</VERS>\r\n      <VERS vnumber=\"28\">And 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 say unto him, Yea, Lord.</VERS>\r\n      <VERS vnumber=\"29\">Then touched he their eyes, saying, According to your faith be it done unto you.</VERS>\r\n      <VERS vnumber=\"30\">And their eyes were opened. And Jesus strictly charged them, saying, See that no man know it.</VERS>\r\n      <VERS vnumber=\"31\">But they went forth, and spread abroad his fame in all that land.</VERS>\r\n      <VERS vnumber=\"32\">And as they went forth, behold, there was brought to him a dumb man possessed with a demon.</VERS>\r\n      <VERS vnumber=\"33\">And when the demon was cast out, the dumb man spake: and the multitudes marvelled, saying, It was never so seen in Israel.</VERS>\r\n      <VERS vnumber=\"34\">But the Pharisees said, By the prince of the demons casteth he out demons.</VERS>\r\n      <VERS vnumber=\"35\">And Jesus went about all the cities and the villages, teaching in their synagogues, and preaching the gospel of the kingdom, and healing all manner of disease and all manner of sickness.</VERS>\r\n      <VERS vnumber=\"36\">But when he saw the multitudes, he was moved with compassion for them, because they were distressed and scattered, as sheep not having a shepherd.</VERS>\r\n      <VERS vnumber=\"37\">Then saith he unto his disciples, The harvest indeed is plenteous, but the laborers are few.</VERS>\r\n      <VERS vnumber=\"38\">Pray ye therefore the Lord of the harvest, that he send forth laborers into his harvest.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">And he called unto him his twelve disciples, and gave them authority over unclean spirits, to cast them out, and to heal all manner of disease and all manner of sickness.</VERS>\r\n      <VERS vnumber=\"2\">Now 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;</VERS>\r\n      <VERS vnumber=\"3\">Philip, and Bartholomew; Thomas, and Matthew the publican; James the [son] of Alphaeus, and Thaddaeus;</VERS>\r\n      <VERS vnumber=\"4\">Simon the Cananaean, and Judas Iscariot, who also betrayed him.</VERS>\r\n      <VERS vnumber=\"5\">These twelve Jesus sent forth, and charged them, saying, Go not into [any] way of the Gentiles, and enter not into any city of the Samaritans:</VERS>\r\n      <VERS vnumber=\"6\">but go rather to the lost sheep of the house of Israel.</VERS>\r\n      <VERS vnumber=\"7\">And as ye go, preach, saying, The kingdom of heaven is at hand.</VERS>\r\n      <VERS vnumber=\"8\">Heal the sick, raise the dead, cleanse the lepers, cast out demons: freely ye received, freely give.</VERS>\r\n      <VERS vnumber=\"9\">Get you no gold, nor silver, nor brass in your purses;</VERS>\r\n      <VERS vnumber=\"10\">no wallet for [your] journey, neither two coats, nor shoes, nor staff: for the laborer is worthy of his food.</VERS>\r\n      <VERS vnumber=\"11\">And into whatsoever city or village ye shall enter, search out who in it is worthy; and there abide till ye go forth.</VERS>\r\n      <VERS vnumber=\"12\">And as ye enter into the house, salute it.</VERS>\r\n      <VERS vnumber=\"13\">And if the house be worthy, let your peace come upon it: but if it be not worthy, let your peace return to you.</VERS>\r\n      <VERS vnumber=\"14\">And whosoever shall not receive you, nor hear your words, as ye go forth out of that house or that city, shake off the dust of your feet.</VERS>\r\n      <VERS vnumber=\"15\">Verily I say unto you, It shall be more tolerable for the land of Sodom and Gomorrah in the day of judgment, than for that city.</VERS>\r\n      <VERS vnumber=\"16\">Behold, I send you forth as sheep in the midst of wolves: be ye therefore wise as serpents, and harmless as doves.</VERS>\r\n      <VERS vnumber=\"17\">But beware of men: for they will deliver you up to councils, and in theirs synagogues they will scourge you;</VERS>\r\n      <VERS vnumber=\"18\">yea and before governors and kings shall ye be brought for my sake, for a testimony to them and to the Gentiles.</VERS>\r\n      <VERS vnumber=\"19\">But when they deliver you up, be not anxious how or what ye shall speak: for it shall be given you in that hour what ye shall speak.</VERS>\r\n      <VERS vnumber=\"20\">For it is not ye that speak, but the Spirit of your Father that speaketh in you.</VERS>\r\n      <VERS vnumber=\"21\">And brother shall deliver up brother to death, and the father his child: and children shall rise up against parents, and cause them to be put to death.</VERS>\r\n      <VERS vnumber=\"22\">And ye shall be hated of all men for my name`s sake: but he that endureth to the end, the same shall be saved.</VERS>\r\n      <VERS vnumber=\"23\">But when they persecute you in this city, flee into the next: for verily I say unto you, Ye shall not have gone through the cities of Israel, till the Son of man be come.</VERS>\r\n      <VERS vnumber=\"24\">A disciple is not above his teacher, nor a servant above his lord.</VERS>\r\n      <VERS vnumber=\"25\">It is enough for the disciple that he be as his teacher, and the servant as his lord. If they have called the master of the house Beelzebub, how much more them of his household!</VERS>\r\n      <VERS vnumber=\"26\">Fear them not therefore: for there is nothing covered, that shall not be revealed; and hid, that shall not be known.</VERS>\r\n      <VERS vnumber=\"27\">What I tell you in the darkness, speak ye in the light; and what ye hear in the ear, proclaim upon the house-tops.</VERS>\r\n      <VERS vnumber=\"28\">And be not afraid of them that kill the body, but are not able to kill the soul: but rather fear him who is able to destroy both soul and body in hell.</VERS>\r\n      <VERS vnumber=\"29\">Are not two sparrows sold for a penny? and not one of them shall fall on the ground without your Father:</VERS>\r\n      <VERS vnumber=\"30\">but the very hairs of your head are all numbered.</VERS>\r\n      <VERS vnumber=\"31\">Fear not therefore: ye are of more value than many sparrows.</VERS>\r\n      <VERS vnumber=\"32\">Every one therefore who shall confess me before men, him will I also confess before my Father who is in heaven.</VERS>\r\n      <VERS vnumber=\"33\">But whosoever shall deny me before men, him will I also deny before my Father who is in heaven.</VERS>\r\n      <VERS vnumber=\"34\">Think not that I came to send peace on the earth: I came not to send peace, but a sword.</VERS>\r\n      <VERS vnumber=\"35\">For I came 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:</VERS>\r\n      <VERS vnumber=\"36\">and a man`s foes [shall be] they of his own household.</VERS>\r\n      <VERS vnumber=\"37\">He 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.</VERS>\r\n      <VERS vnumber=\"38\">And he that doth not take his cross and follow after me, is not worthy of me.</VERS>\r\n      <VERS vnumber=\"39\">He that findeth his life shall lose it; and he that loseth his life for my sake shall find it.</VERS>\r\n      <VERS vnumber=\"40\">He that receiveth you receiveth me, and he that receiveth me receiveth him that sent me.</VERS>\r\n      <VERS vnumber=\"41\">He 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.</VERS>\r\n      <VERS vnumber=\"42\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">And it came to pass when Jesus had finished commanding his twelve disciples, he departed thence to teach and preach in their cities.</VERS>\r\n      <VERS vnumber=\"2\">Now when John heard in the prison the works of the Christ, he sent by his disciples</VERS>\r\n      <VERS vnumber=\"3\">and said unto him, Art thou he that cometh, or look we for another?</VERS>\r\n      <VERS vnumber=\"4\">And Jesus answered and said unto them, Go and tell John the things which ye hear and see:</VERS>\r\n      <VERS vnumber=\"5\">the blind receive their sight, and the lame walk, the lepers are cleansed, and the deaf hear, and the dead are raised up, and the poor have good tidings preached to them.</VERS>\r\n      <VERS vnumber=\"6\">And blessed is he, whosoever shall find no occasion of stumbling in me.</VERS>\r\n      <VERS vnumber=\"7\">And as these went their way, Jesus began to say unto the multitudes concerning John, What went ye out into the wilderness to behold? a reed shaken with the wind?</VERS>\r\n      <VERS vnumber=\"8\">But what went ye out to see? a man clothed in soft [raiment]? Behold, they that wear soft [raiment] are in king`s houses.</VERS>\r\n      <VERS vnumber=\"9\">But wherefore went ye out? to see a prophet? Yea, I say unto you, and much more than a prophet.</VERS>\r\n      <VERS vnumber=\"10\">This is he, of whom it is written, Behold, I send my messenger before thy face, Who shall prepare thy way before thee.</VERS>\r\n      <VERS vnumber=\"11\">Verily I say unto you, Among them that are born of women there hath not arisen a greater than John the Baptist: yet he that is but little in the kingdom of heaven is greater than he.</VERS>\r\n      <VERS vnumber=\"12\">And from the days of John the Baptist until now the kingdom of heaven suffereth violence, and men of violence take it by force.</VERS>\r\n      <VERS vnumber=\"13\">For all the prophets and the law prophesied until John.</VERS>\r\n      <VERS vnumber=\"14\">And if ye are willing to receive [it,] this is Elijah, that is to come.</VERS>\r\n      <VERS vnumber=\"15\">He that hath ears to hear, let him hear.</VERS>\r\n      <VERS vnumber=\"16\">But whereunto shall I liken this generation? It is like unto children sitting in the marketplaces, who call unto their fellows</VERS>\r\n      <VERS vnumber=\"17\">and say, We piped unto you, and ye did not dance; we wailed, and ye did not mourn.</VERS>\r\n      <VERS vnumber=\"18\">For John came neither eating nor drinking, and they say, He hath a demon.</VERS>\r\n      <VERS vnumber=\"19\">The Son of man came eating and drinking, and they say, Behold, a gluttonous man and a winebibber, a friend of publicans and sinners! And wisdom is justified by her works.</VERS>\r\n      <VERS vnumber=\"20\">Then began he to upbraid the cities wherein most of his mighty works were done, because they repented not.</VERS>\r\n      <VERS vnumber=\"21\">Woe unto thee, Chorazin! woe unto thee, Bethsaida! for if the mighty works had been done in Tyre and Sidon which were done in you, they would have repented long ago in sackcloth and ashes.</VERS>\r\n      <VERS vnumber=\"22\">But I say unto you, it shall be more tolerable for Tyre and Sidon in the day of judgment than for you.</VERS>\r\n      <VERS vnumber=\"23\">And thou, Capernaum, shalt thou be exalted unto heaven? thou shalt go down unto Hades: for if the mighty works had been done in Sodom which were done in thee, it would have remained until this day.</VERS>\r\n      <VERS vnumber=\"24\">But I say unto you that it shall be more tolerable for the land of Sodom in the day of judgment, than for thee.</VERS>\r\n      <VERS vnumber=\"25\">At that season Jesus answered and said, I thank thee, O Father, Lord of heaven and earth, that thou didst hide these things from the wise and understanding, and didst reveal them unto babes:</VERS>\r\n      <VERS vnumber=\"26\">yea, Father, for so it was well-pleasing in thy sight.</VERS>\r\n      <VERS vnumber=\"27\">All things have been delivered unto me of my Father: and no one knoweth the Son, save the Father; neither doth any know the Father, save the Son, and he to whomsoever the Son willeth to reveal [him.]</VERS>\r\n      <VERS vnumber=\"28\">Come unto me, all ye that labor and are heavy laden, and I will give you rest.</VERS>\r\n      <VERS vnumber=\"29\">Take my yoke upon you, and learn of me; for I am meek and lowly in heart: and ye shall find rest unto your souls.</VERS>\r\n      <VERS vnumber=\"30\">For my yoke is easy, and my burden is light.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">At that season Jesus went on the sabbath day through the grainfields; and his disciples were hungry and began to pluck ears and to eat.</VERS>\r\n      <VERS vnumber=\"2\">But the Pharisees, when they saw it, said unto him, Behold, thy disciples do that which it is not lawful to do upon the sabbath.</VERS>\r\n      <VERS vnumber=\"3\">But he said unto them, Have ye not read what David did, when he was hungry, and they that were with him;</VERS>\r\n      <VERS vnumber=\"4\">how he entered into the house of God, and ate the showbread, which it was not lawful for him to eat, neither for them that were with him, but only for the priests?</VERS>\r\n      <VERS vnumber=\"5\">Or have ye not read in the law, that on the sabbath day the priests in the temple profane the sabbath, and are guiltless?</VERS>\r\n      <VERS vnumber=\"6\">But I say unto you, that one greater than the temple is here.</VERS>\r\n      <VERS vnumber=\"7\">But if ye had known what this meaneth, I desire mercy, and not sacrifice, ye would not have condemned the guiltless.</VERS>\r\n      <VERS vnumber=\"8\">For the Son of man is lord of the sabbath.</VERS>\r\n      <VERS vnumber=\"9\">And he departed thence, and went into their synagogue:</VERS>\r\n      <VERS vnumber=\"10\">and behold, a man having a withered hand. And they asked him, saying, Is it lawful to heal on the sabbath day? that they might accuse him.</VERS>\r\n      <VERS vnumber=\"11\">And he said unto them, What man shall there be of you, that shall have one sheep, and if this fall into a pit on the sabbath day, will he not lay hold on it, and lift it out?</VERS>\r\n      <VERS vnumber=\"12\">How much then is a man of more value than a sheep! Wherefore it is lawful to do good on the sabbath day.</VERS>\r\n      <VERS vnumber=\"13\">Then saith he to the man, Stretch forth thy hand. And he stretched it forth; and it was restored whole, as the other.</VERS>\r\n      <VERS vnumber=\"14\">But the Pharisees went out, and took counsel against him, how they might destroy him.</VERS>\r\n      <VERS vnumber=\"15\">And Jesus perceiving [it] withdrew from thence: and many followed him; and he healed them all,</VERS>\r\n      <VERS vnumber=\"16\">and charged them that they should not make him known:</VERS>\r\n      <VERS vnumber=\"17\">that it might be fulfilled which was spoken through Isaiah the prophet, saying,</VERS>\r\n      <VERS vnumber=\"18\">Behold, 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 declare judgment to the Gentiles.</VERS>\r\n      <VERS vnumber=\"19\">He shall not strive, nor cry aloud; Neither shall any one hear his voice in the streets.</VERS>\r\n      <VERS vnumber=\"20\">A bruised reed shall he not break, And smoking flax shall he not quench, Till he send forth judgment unto victory.</VERS>\r\n      <VERS vnumber=\"21\">And in his name shall the Gentiles hope.</VERS>\r\n      <VERS vnumber=\"22\">Then was brought unto him one possessed with a demon, blind and dumb: and he healed him, insomuch that the dumb man spake and saw.</VERS>\r\n      <VERS vnumber=\"23\">And all the multitudes were amazed, and said, Can this be the son of David?</VERS>\r\n      <VERS vnumber=\"24\">But when the Pharisees heard it, they said, This man doth not cast out demons, but by Beelzebub the prince of the demons.</VERS>\r\n      <VERS vnumber=\"25\">And knowing their thoughts he said unto them, Every kingdom divided against itself is brought to desolation; and every city or house divided against itself shall not stand:</VERS>\r\n      <VERS vnumber=\"26\">and if Satan casteth out Satan, he is divided against himself; how then shall his kingdom stand?</VERS>\r\n      <VERS vnumber=\"27\">And if I by Beelzebub cast out demons, by whom do your sons cast them out? therefore shall they be your judges.</VERS>\r\n      <VERS vnumber=\"28\">But if I by the Spirit of God cast out demons, then is the kingdom of God come upon you.</VERS>\r\n      <VERS vnumber=\"29\">Or how can one enter into the house of the strong [man,] and spoil his goods, except he first bind the strong [man]? and then he will spoil his house.</VERS>\r\n      <VERS vnumber=\"30\">He that is not with me is against me, and he that gathereth not with me scattereth.</VERS>\r\n      <VERS vnumber=\"31\">Therefore I say unto you, Every sin and blasphemy shall be forgiven unto men; but the blasphemy against the Spirit shall not be forgiven.</VERS>\r\n      <VERS vnumber=\"32\">And whosoever shall speak a word against the Son of man, it shall be forgiven him; but whosoever shall speak against the Holy Spirit, it shall not be forgiven him, neither in this world, nor in that which is to come.</VERS>\r\n      <VERS vnumber=\"33\">Either make the tree good, and its fruit good; or make the tree corrupt, and its fruit corrupt: for the tree is known by its fruit.</VERS>\r\n      <VERS vnumber=\"34\">Ye offspring of vipers, how can ye, being evil, speak good things? for out of the abundance of the heart the mouth speaketh.</VERS>\r\n      <VERS vnumber=\"35\">The good man out of his good treasure bringeth forth good things: and the evil man out of his evil treasure bringeth forth evil things.</VERS>\r\n      <VERS vnumber=\"36\">And I say unto you, that every idle word that men shall speak, they shall give account thereof in the day of judgment.</VERS>\r\n      <VERS vnumber=\"37\">For by thy words thou shalt be justified, and by thy words thou shalt be condemned.</VERS>\r\n      <VERS vnumber=\"38\">Then certain of the scribes and Pharisees answered him, saying, Teacher, we would see a sign from thee.</VERS>\r\n      <VERS vnumber=\"39\">But he answered and said unto them, An evil and adulterous generation seeketh after a sign; and there shall no sign be given it but the sign of Jonah the prophet:</VERS>\r\n      <VERS vnumber=\"40\">for as Jonah was three days and three nights in the belly of the whale; so shall the Son of man be three days and three nights in the heart of the earth.</VERS>\r\n      <VERS vnumber=\"41\">The men of Nineveh shall stand up in the judgment with this generation, and shall condemn it: for they repented at the preaching of Jonah; and behold, a greater than Jonah is here.</VERS>\r\n      <VERS vnumber=\"42\">The queen of the south shall rise up in the judgment with this generation, and shall condemn it: for she came from the ends of the earth to hear the wisdom of Solomon; and behold, a greater than Solomon is here.</VERS>\r\n      <VERS vnumber=\"43\">But the unclean spirit, when he is gone out of the man, passeth through waterless places, seeking rest, and findeth it not.</VERS>\r\n      <VERS vnumber=\"44\">Then he saith, I will return into my house whence I came out; and when he is come, he findeth it empty, swept, and garnished.</VERS>\r\n      <VERS vnumber=\"45\">Then goeth he, and taketh with himself seven other spirits more evil than himself, and they enter in and dwell there: and the last state of that man becometh worse than the first. Even so shall it be also unto this evil generation.</VERS>\r\n      <VERS vnumber=\"46\">While he was yet speaking to the multitudes, behold, his mother and his brethren stood without, seeking to speak to him.</VERS>\r\n      <VERS vnumber=\"47\">And one said unto him, Behold, thy mother and thy brethren stand without, seeking to speak to thee.</VERS>\r\n      <VERS vnumber=\"48\">But he answered and said unto him that told him, Who is my mother? and who are my brethren?</VERS>\r\n      <VERS vnumber=\"49\">And he stretched forth his hand towards his disciples, and said, Behold, my mother and my brethren!</VERS>\r\n      <VERS vnumber=\"50\">For whosoever shall do the will of my Father who is in heaven, he is my brother, and sister, and mother.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">On that day went Jesus out of the house, and sat by the sea side.</VERS>\r\n      <VERS vnumber=\"2\">And there were gathered unto him great multitudes, so that he entered into a boat, and sat; and all the multitude stood on the beach.</VERS>\r\n      <VERS vnumber=\"3\">And he spake to them many things in parables, saying, Behold, the sower went forth to sow;</VERS>\r\n      <VERS vnumber=\"4\">and as he sowed, some [seeds] fell by the way side, and the birds came and devoured them:</VERS>\r\n      <VERS vnumber=\"5\">and others fell upon the rocky places, where they had not much earth: and straightway they sprang up, because they had no deepness of earth:</VERS>\r\n      <VERS vnumber=\"6\">and when the sun was risen, they were scorched; and because they had no root, they withered away.</VERS>\r\n      <VERS vnumber=\"7\">And others fell upon the thorns; and the thorns grew up and choked them:</VERS>\r\n      <VERS vnumber=\"8\">and others fell upon the good ground, and yielded fruit, some a hundredfold, some sixty, some thirty.</VERS>\r\n      <VERS vnumber=\"9\">He that hath ears, let him hear.</VERS>\r\n      <VERS vnumber=\"10\">And the disciples came, and said unto him, Why speakest thou unto them in parables?</VERS>\r\n      <VERS vnumber=\"11\">And he answered and said unto them, Unto you it is given to know the mysteries of the kingdom of heaven, but to them it is not given.</VERS>\r\n      <VERS vnumber=\"12\">For whosoever hath, to him shall be given, and he shall have abundance: but whosoever hath not, from him shall be taken away even that which he hath.</VERS>\r\n      <VERS vnumber=\"13\">Therefore speak I to them in parables; because seeing they see not, and hearing they hear not, neither do they understand.</VERS>\r\n      <VERS vnumber=\"14\">And unto them is fulfilled the prophecy of Isaiah, which saith, By hearing ye shall hear, and shall in no wise understand; And seeing ye shall see, and shall in no wise perceive:</VERS>\r\n      <VERS vnumber=\"15\">For this people`s heart is waxed gross, And their ears are dull of hearing, And their eyes they have closed; Lest haply they should perceive with their eyes, And hear with their ears, And understand with their heart, And should turn again, And I should heal them.</VERS>\r\n      <VERS vnumber=\"16\">But blessed are your eyes, for they see; and your ears, for they hear.</VERS>\r\n      <VERS vnumber=\"17\">For verily I say unto you, that many prophets and righteous men desired to see the things which ye see, and saw them not; and to hear the things which ye hear, and heard them not.</VERS>\r\n      <VERS vnumber=\"18\">Hear then ye the parable of the sower.</VERS>\r\n      <VERS vnumber=\"19\">When any one heareth the word of the kingdom, and understandeth it not, [then] cometh the evil [one], and snatcheth away that which hath been sown in his heart. This is he that was sown by the way side.</VERS>\r\n      <VERS vnumber=\"20\">And he that was sown upon the rocky places, this is he that heareth the word, and straightway with joy receiveth it;</VERS>\r\n      <VERS vnumber=\"21\">yet hath he not root in himself, but endureth for a while; and when tribulation or persecution ariseth because of the word, straightway he stumbleth.</VERS>\r\n      <VERS vnumber=\"22\">And he that was sown among the thorns, this is he that heareth the word; and the care of the world, and the deceitfulness of riches, choke the word, and he becometh unfruitful.</VERS>\r\n      <VERS vnumber=\"23\">And he that was sown upon the good ground, this is he that heareth the word, and understandeth it; who verily beareth fruit, and bringeth forth, some a hundredfold, some sixty, some thirty.</VERS>\r\n      <VERS vnumber=\"24\">Another parable set he before them, saying, The kingdom of heaven is likened unto a man that sowed good seed in his field:</VERS>\r\n      <VERS vnumber=\"25\">but while men slept, his enemy came and sowed tares also among the wheat, and went away.</VERS>\r\n      <VERS vnumber=\"26\">But when the blade sprang up and brought forth fruit, then appeared the tares also.</VERS>\r\n      <VERS vnumber=\"27\">And the servants of the householder came and said unto him, Sir, didst thou not sow good seed in thy field? whence then hath it tares?</VERS>\r\n      <VERS vnumber=\"28\">And he said unto them, An enemy hath done this. And the servants say unto him, Wilt thou then that we go and gather them up?</VERS>\r\n      <VERS vnumber=\"29\">But he saith, Nay; lest haply while ye gather up the tares, ye root up the wheat with them.</VERS>\r\n      <VERS vnumber=\"30\">Let both grow together until the harvest: and in the time of the harvest I will say to the reapers, Gather up first the tares, and bind them in bundles to burn them; but gather the wheat into my barn.</VERS>\r\n      <VERS vnumber=\"31\">Another parable set he before them, saying, The kingdom of heaven is like unto a grain of mustard seed, which a man took, and sowed in his field:</VERS>\r\n      <VERS vnumber=\"32\">which indeed is less than all seeds; but when it is grown, it is greater than the herbs, and becometh a tree, so that the birds of the heaven come and lodge in the branches thereof.</VERS>\r\n      <VERS vnumber=\"33\">Another 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 it was all leavened.</VERS>\r\n      <VERS vnumber=\"34\">All these things spake Jesus in parables unto the multitudes; and without a parable spake he nothing unto them:</VERS>\r\n      <VERS vnumber=\"35\">that it might be fulfilled which was spoken through the prophet, saying, I will open my mouth in parables; I will utter things hidden from the foundation of the world.</VERS>\r\n      <VERS vnumber=\"36\">Then he left the multitudes, and went into the house: and his disciples came unto him, saying, Explain unto us the parable of the tares of the field.</VERS>\r\n      <VERS vnumber=\"37\">And he answered and said, He that soweth the good seed is the Son of man;</VERS>\r\n      <VERS vnumber=\"38\">and the field is the world; and the good seed, these are the sons of the kingdom; and the tares are the sons of the evil [one];</VERS>\r\n      <VERS vnumber=\"39\">and the enemy that sowed them is the devil: and the harvest is the end of the world; and the reapers are angels.</VERS>\r\n      <VERS vnumber=\"40\">As therefore the tares are gathered up and burned with fire; so shall it be in the end of the world.</VERS>\r\n      <VERS vnumber=\"41\">The Son of man shall send forth his angels, and they shall gather out of his kingdom all things that cause stumbling, and them that do iniquity,</VERS>\r\n      <VERS vnumber=\"42\">and shall cast them into the furnace of fire: there shall be the weeping and the gnashing of teeth.</VERS>\r\n      <VERS vnumber=\"43\">Then shall the righteous shine forth as the sun in the kingdom of their Father. He that hath ears, let him hear.</VERS>\r\n      <VERS vnumber=\"44\">The kingdom of heaven is like unto a treasure hidden in the field; which a man found, and hid; and in his joy he goeth and selleth all that he hath, and buyeth that field.</VERS>\r\n      <VERS vnumber=\"45\">Again, the kingdom of heaven is like unto a man that is a merchant seeking goodly pearls:</VERS>\r\n      <VERS vnumber=\"46\">and having found one pearl of great price, he went and sold all that he had, and bought it.</VERS>\r\n      <VERS vnumber=\"47\">Again, the kingdom of heaven is like unto a net, that was cast into the sea, and gathered of every kind:</VERS>\r\n      <VERS vnumber=\"48\">which, when it was filled, they drew up on the beach; and they sat down, and gathered the good into vessels, but the bad they cast away.</VERS>\r\n      <VERS vnumber=\"49\">So shall it be in the end of the world: the angels shall come forth, and sever the wicked from among the righteous,</VERS>\r\n      <VERS vnumber=\"50\">and shall cast them into the furnace of fire: there shall be the weeping and the gnashing of teeth.</VERS>\r\n      <VERS vnumber=\"51\">Have ye understood all these things? They say unto him, Yea.</VERS>\r\n      <VERS vnumber=\"52\">And he said unto them, Therefore every scribe who hath been made a disciple to the kingdom of heaven is like unto a man that is a householder, who bringeth forth out of his treasure things new and old.</VERS>\r\n      <VERS vnumber=\"53\">And it came to pass, when Jesus had finished these parables, he departed thence.</VERS>\r\n      <VERS vnumber=\"54\">And coming 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?</VERS>\r\n      <VERS vnumber=\"55\">Is not this the carpenter`s son? is not his mother called Mary? and his brethren, James, and Joseph, and Simon, and Judas?</VERS>\r\n      <VERS vnumber=\"56\">And his sisters, are they not all with us? Whence then hath this man all these things?</VERS>\r\n      <VERS vnumber=\"57\">And they were offended in him. But Jesus said unto them, A prophet is not without honor, save in his own country, and in his own house.</VERS>\r\n      <VERS vnumber=\"58\">And he did not many mighty works there because of their unbelief.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">At that season Herod the tetrarch heard the report concerning Jesus,</VERS>\r\n      <VERS vnumber=\"2\">and said unto his servants, This is John the Baptist; he is risen from the dead; and therefore do these powers work in him.</VERS>\r\n      <VERS vnumber=\"3\">For Herod had laid hold on John, and bound him, and put him in prison for the sake of Herodias, his brother Philip`s wife.</VERS>\r\n      <VERS vnumber=\"4\">For John said unto him, It is not lawful for thee to have her.</VERS>\r\n      <VERS vnumber=\"5\">And when he would have put him to death, he feared the multitude, because they counted him as a prophet.</VERS>\r\n      <VERS vnumber=\"6\">But when Herod`s birthday came, the daughter of Herodias danced in the midst, and pleased Herod.</VERS>\r\n      <VERS vnumber=\"7\">Whereupon he promised with an oath to give her whatsoever she should ask.</VERS>\r\n      <VERS vnumber=\"8\">And she, being put forward by her mother, saith, Give me here on a platter the head of John the Baptist.</VERS>\r\n      <VERS vnumber=\"9\">And the king was grieved; but for the sake of his oaths, and of them that sat at meat with him, he commanded it to be given;</VERS>\r\n      <VERS vnumber=\"10\">and he sent and beheaded John in the prison.</VERS>\r\n      <VERS vnumber=\"11\">And his head was brought on a platter, and given to the damsel: and she brought it to her mother.</VERS>\r\n      <VERS vnumber=\"12\">And his disciples came, and took up the corpse, and buried him; and they went and told Jesus.</VERS>\r\n      <VERS vnumber=\"13\">Now when Jesus heard [it], he withdrew from thence in a boat, to a desert place apart: and when the multitudes heard [thereof,] they followed him on foot from the cities.</VERS>\r\n      <VERS vnumber=\"14\">And he came forth, and saw a great multitude, and he had compassion on them, and healed their sick.</VERS>\r\n      <VERS vnumber=\"15\">And when even was come, the disciples came to him, saying, The place is desert, and the time is already past; send the multitudes away, that they may go into the villages, and buy themselves food.</VERS>\r\n      <VERS vnumber=\"16\">But Jesus said unto them, They have no need to go away; give ye them to eat.</VERS>\r\n      <VERS vnumber=\"17\">And they say unto him, We have here but five loaves, and two fishes.</VERS>\r\n      <VERS vnumber=\"18\">And he said, Bring them hither to me.</VERS>\r\n      <VERS vnumber=\"19\">And he commanded the multitudes to sit down on the grass; and he took the five loaves, and the two fishes, and looking up to heaven, he blessed, and brake and gave the loaves to the disciples, and the disciples to the multitudes.</VERS>\r\n      <VERS vnumber=\"20\">And they all ate, and were filled: and they took up that which remained over of the broken pieces, twelve baskets full.</VERS>\r\n      <VERS vnumber=\"21\">And they that did eat were about five thousand men, besides women and children.</VERS>\r\n      <VERS vnumber=\"22\">And straightway he constrained the disciples to enter into the boat, and to go before him unto the other side, till he should send the multitudes away.</VERS>\r\n      <VERS vnumber=\"23\">And after he had sent the multitudes away, he went up into the mountain apart to pray: and when even was come, he was there alone.</VERS>\r\n      <VERS vnumber=\"24\">But the boat was now in the midst of the sea, distressed by the waves; for the wind was contrary.</VERS>\r\n      <VERS vnumber=\"25\">And in the fourth watch of the night he came unto them, walking upon the sea.</VERS>\r\n      <VERS vnumber=\"26\">And when the disciples saw him walking on the sea, they were troubled, saying, It is a ghost; and they cried out for fear.</VERS>\r\n      <VERS vnumber=\"27\">But straightway Jesus spake unto them, saying Be of good cheer; it is I; be not afraid.</VERS>\r\n      <VERS vnumber=\"28\">And Peter answered him and said, Lord, if it be thou, bid me come unto the upon the waters.</VERS>\r\n      <VERS vnumber=\"29\">And he said, Come. And Peter went down from the boat, and walked upon the waters to come to Jesus.</VERS>\r\n      <VERS vnumber=\"30\">But when he saw the wind, he was afraid; and beginning to sink, he cried out, saying, Lord, save me.</VERS>\r\n      <VERS vnumber=\"31\">And immediately Jesus stretched forth his hand, and took hold of him, and saith unto him, O thou of little faith, wherefore didst thou doubt?</VERS>\r\n      <VERS vnumber=\"32\">And when they were gone up into the boat, the wind ceased.</VERS>\r\n      <VERS vnumber=\"33\">And they that were in the boat worshipped him, saying, Of a truth thou art the Son of God.</VERS>\r\n      <VERS vnumber=\"34\">And when they had crossed over, they came to the land, unto Gennesaret.</VERS>\r\n      <VERS vnumber=\"35\">And when the men of that place knew him, they sent into all that region round about, and brought unto him all that were sick,</VERS>\r\n      <VERS vnumber=\"36\">and they besought him that they might only touch the border of his garment: and as many as touched were made whole.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">Then there come to Jesus from Jerusalem Pharisees and scribes, saying,</VERS>\r\n      <VERS vnumber=\"2\">Why do thy disciples transgress the tradition of the elders? for they wash not their hands when they eat bread.</VERS>\r\n      <VERS vnumber=\"3\">And he answered and said unto them, Why do ye also transgress the commandment of God because of your tradition?</VERS>\r\n      <VERS vnumber=\"4\">For God said, Honor thy father and thy mother: and, He that speaketh evil of father or mother, let him die the death.</VERS>\r\n      <VERS vnumber=\"5\">But ye say, whosoever shall say to his father or his mother, That wherewith thou mightest have been profited by me is given [to God];</VERS>\r\n      <VERS vnumber=\"6\">he shall not honor his father. And ye have made void the word of God because of your tradition.</VERS>\r\n      <VERS vnumber=\"7\">Ye hypocrites, well did Isaiah prophesy of you, saying,</VERS>\r\n      <VERS vnumber=\"8\">This people honoreth me with their lips; But their heart is far from me.</VERS>\r\n      <VERS vnumber=\"9\">But in vain do they worship me, Teaching [as their] doctrines the precepts of men.</VERS>\r\n      <VERS vnumber=\"10\">And he called to him the multitude, and said unto them, Hear, and understand:</VERS>\r\n      <VERS vnumber=\"11\">Not that which entereth into the mouth defileth the man; but that which proceedeth out of the mouth, this defileth the man.</VERS>\r\n      <VERS vnumber=\"12\">Then came the disciples, and said unto him, Knowest thou that the Pharisees were offended, when they heard this saying?</VERS>\r\n      <VERS vnumber=\"13\">But he answered and said, Every plant which my heavenly Father planted not, shall be rooted up.</VERS>\r\n      <VERS vnumber=\"14\">Let them alone: they are blind guides. And if the blind guide the blind, both shall fall into a pit.</VERS>\r\n      <VERS vnumber=\"15\">And Peter answered and said unto him, Declare unto us the parable.</VERS>\r\n      <VERS vnumber=\"16\">And he said, Are ye also even yet without understanding?</VERS>\r\n      <VERS vnumber=\"17\">Perceive ye not, that whatsoever goeth into the mouth passeth into the belly, and is cast out into the draught?</VERS>\r\n      <VERS vnumber=\"18\">But the things which proceed out of the mouth come forth out of the heart; and they defile the man.</VERS>\r\n      <VERS vnumber=\"19\">For out of the heart come forth evil thoughts, murders, adulteries, fornications, thefts, false witness, railings:</VERS>\r\n      <VERS vnumber=\"20\">these are the things which defile the man; but to eat with unwashen hands defileth not the man.</VERS>\r\n      <VERS vnumber=\"21\">And Jesus went out thence, and withdrew into the parts of Tyre and Sidon.</VERS>\r\n      <VERS vnumber=\"22\">And behold, a Canaanitish woman came out from those borders, and cried, saying, Have mercy on me, O Lord, thou son of David; my daughter is grievously vexed with a demon.</VERS>\r\n      <VERS vnumber=\"23\">But he answered her not a word. And his disciples came and besought him, saying, Send her away; for she crieth after us.</VERS>\r\n      <VERS vnumber=\"24\">But he answered and said, I was not sent but unto the lost sheep of the house of Israel.</VERS>\r\n      <VERS vnumber=\"25\">But she came and worshipped him, saying, Lord, help me.</VERS>\r\n      <VERS vnumber=\"26\">And he answered and said, It is not meet to take the children`s bread and cast it to the dogs.</VERS>\r\n      <VERS vnumber=\"27\">But she said, Yea, Lord: for even the dogs eat of the crumbs which fall from their masters` table.</VERS>\r\n      <VERS vnumber=\"28\">Then Jesus answered and said unto her, O woman, great is thy faith: be it done unto thee even as thou wilt. And her daughter was healed from that hour.</VERS>\r\n      <VERS vnumber=\"29\">And Jesus departed thence, and came nigh unto the sea of Galilee; and he went up into the mountain, and sat there.</VERS>\r\n      <VERS vnumber=\"30\">And there came unto him great multitudes, having with them the lame, blind, dumb, maimed, and many others, and they cast them down at this feet; and he healed them:</VERS>\r\n      <VERS vnumber=\"31\">insomuch that the multitude wondered, when they saw the dumb speaking, the maimed whole, and lame walking, and the blind seeing: and they glorified the God of Israel.</VERS>\r\n      <VERS vnumber=\"32\">And Jesus called unto him his disciples, and said, I have compassion on the multitude, because they continue with me now three days and have nothing to eat: and I would not send them away fasting, lest haply they faint on the way.</VERS>\r\n      <VERS vnumber=\"33\">And the disciples say unto him, Whence should we have so many loaves in a desert place as to fill so great a multitude?</VERS>\r\n      <VERS vnumber=\"34\">And Jesus said unto them, How many loaves have ye? And they said, Seven, and a few small fishes.</VERS>\r\n      <VERS vnumber=\"35\">And he commanded the multitude to sit down on the ground;</VERS>\r\n      <VERS vnumber=\"36\">and he took the seven loaves and the fishes; and he gave thanks and brake, and gave to the disciples, and the disciples to the multitudes.</VERS>\r\n      <VERS vnumber=\"37\">And they all ate, and were filled: and they took up that which remained over of the broken pieces, seven baskets full.</VERS>\r\n      <VERS vnumber=\"38\">And they that did eat were four thousand men, besides women and children.</VERS>\r\n      <VERS vnumber=\"39\">And he sent away the multitudes, and entered into the boat, and came into the borders of Magadan.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">And the Pharisees and Sadducees came, and trying him asked him to show them a sign from heaven.</VERS>\r\n      <VERS vnumber=\"2\">But he answered and said unto them, When it is evening, ye say, [It will be] fair weather: for the heaven is red.</VERS>\r\n      <VERS vnumber=\"3\">And in the morning, [It will be] foul weather to-day: for the heaven is red and lowering. Ye know how to discern the face of the heaven; but ye cannot [discern] the signs of the times.</VERS>\r\n      <VERS vnumber=\"4\">An evil and adulterous generation seeketh after a sign; and there shall no sign be given unto it, but the sign of Jonah. And he left them, and departed.</VERS>\r\n      <VERS vnumber=\"5\">And the disciples came to the other side and forgot to take bread.</VERS>\r\n      <VERS vnumber=\"6\">And Jesus said unto them, Take heed and beware of the leaven of the Pharisees and Sadducees.</VERS>\r\n      <VERS vnumber=\"7\">And they reasoned among themselves, saying, We took no bread.</VERS>\r\n      <VERS vnumber=\"8\">And Jesus perceiving it said, O ye of little faith, why reason ye among yourselves, because ye have no bread?</VERS>\r\n      <VERS vnumber=\"9\">Do ye not yet perceive, neither remember the five loaves of the five thousand, and how many baskets ye took up?</VERS>\r\n      <VERS vnumber=\"10\">Neither the seven loaves of the four thousand, and how many baskets ye took up?</VERS>\r\n      <VERS vnumber=\"11\">How is it that ye do not perceive that I spake not to you concerning bread? But beware of the leaven of the Pharisees and Sadducees.</VERS>\r\n      <VERS vnumber=\"12\">Then understood they that he bade them not beware of the leaven of bread, but of the teaching of the Pharisees and Sadducees.</VERS>\r\n      <VERS vnumber=\"13\">Now when Jesus came into the parts of Caesarea Philippi, he asked his disciples, saying, Who do men say that the Son of man is?</VERS>\r\n      <VERS vnumber=\"14\">And they said, Some [say] John the Baptist; some, Elijah; and others, Jeremiah, or one of the prophets.</VERS>\r\n      <VERS vnumber=\"15\">He saith unto them, But who say ye that I am?</VERS>\r\n      <VERS vnumber=\"16\">And Simon Peter answered and said, Thou art the Christ, the Son of the living God.</VERS>\r\n      <VERS vnumber=\"17\">And Jesus answered and said unto him, Blessed art thou, Simon Bar-jonah: for flesh and blood hath not revealed it unto thee, but my Father who is in heaven.</VERS>\r\n      <VERS vnumber=\"18\">And I also say unto thee, that thou art Peter, and upon this rock I will build my church; and the gates of Hades shall not prevail against it.</VERS>\r\n      <VERS vnumber=\"19\">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.</VERS>\r\n      <VERS vnumber=\"20\">Then charged he the disciples that they should tell no man that he was the Christ.</VERS>\r\n      <VERS vnumber=\"21\">From that time began Jesus to show unto his disciples, that he must go unto Jerusalem, and suffer many things of the elders and chief priests and scribes, and be killed, and the third day be raised up.</VERS>\r\n      <VERS vnumber=\"22\">And Peter took him, and began to rebuke him, saying, Be it far from thee, Lord: this shall never be unto thee.</VERS>\r\n      <VERS vnumber=\"23\">But he turned, and said unto Peter, Get thee behind me, Satan: thou art a stumbling-block unto me: for thou mindest not the things of God, but the things of men.</VERS>\r\n      <VERS vnumber=\"24\">Then said Jesus unto his disciples, If any man would come after me, let him deny himself, and take up his cross, and follow me.</VERS>\r\n      <VERS vnumber=\"25\">For whosoever would save his life shall lose it: and whosoever shall lose his life for my sake shall find it.</VERS>\r\n      <VERS vnumber=\"26\">For what shall a man be profited, if he shall gain the whole world, and forfeit his life? or what shall a man give in exchange for his life?</VERS>\r\n      <VERS vnumber=\"27\">For the Son of man shall come in the glory of his Father with his angels; and then shall he render unto every man according to his deeds.</VERS>\r\n      <VERS vnumber=\"28\">Verily I say unto you, there are some of them that stand here, who shall in no wise taste of death, till they see the Son of man coming in his kingdom.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"17\">\r\n      <VERS vnumber=\"1\">And after six days Jesus taketh with him Peter, and James, and John his brother, and bringeth them up into a high mountain apart:</VERS>\r\n      <VERS vnumber=\"2\">and he was transfigured before them; and his face did shine as the sun, and his garments became white as the light.</VERS>\r\n      <VERS vnumber=\"3\">And behold, there appeared unto them Moses and Elijah talking with him.</VERS>\r\n      <VERS vnumber=\"4\">And Peter answered, and said unto Jesus, Lord, it is good for us to be here: if thou wilt, I will make here three tabernacles; one for thee, and one for Moses, and one for Elijah.</VERS>\r\n      <VERS vnumber=\"5\">While he was yet speaking, behold, a bright cloud overshadowed them: and behold, a voice out of the cloud, saying, This is my beloved Son, in whom I am well pleased; hear ye him.</VERS>\r\n      <VERS vnumber=\"6\">And when the disciples heard it, they fell on their face, and were sore afraid.</VERS>\r\n      <VERS vnumber=\"7\">And Jesus came and touched them and said, Arise, and be not afraid.</VERS>\r\n      <VERS vnumber=\"8\">And lifting up their eyes, they saw no one, save Jesus only.</VERS>\r\n      <VERS vnumber=\"9\">And as they were coming down from the mountain, Jesus commanded them, saying, Tell the vision to no man, until the Son of man be risen from the dead.</VERS>\r\n      <VERS vnumber=\"10\">And his disciples asked him, saying, Why then say the scribes that Elijah must first come?</VERS>\r\n      <VERS vnumber=\"11\">And he answered and said, Elijah indeed cometh, and shall restore all things:</VERS>\r\n      <VERS vnumber=\"12\">but I say into you, that Elijah is come already, and they knew him not, but did unto him whatsoever they would. Even so shall the Son of man also suffer of them.</VERS>\r\n      <VERS vnumber=\"13\">Then understood the disciples that he spake unto them of John the Baptist.</VERS>\r\n      <VERS vnumber=\"14\">And when they were come to the multitude, there came to him a man, kneeling to him, saying,</VERS>\r\n      <VERS vnumber=\"15\">Lord, have mercy on my son: for he is epileptic, and suffereth grievously; for oft-times he falleth into the fire, and off-times into the water.</VERS>\r\n      <VERS vnumber=\"16\">And I brought him to thy disciples, and they could not cure him.</VERS>\r\n      <VERS vnumber=\"17\">And Jesus answered and said, O faithless and perverse generation, how long shall I be with you? how long shall I bear with you? bring him hither to me.</VERS>\r\n      <VERS vnumber=\"18\">And Jesus rebuked him; and the demon went out of him: and the boy was cured from that hour.</VERS>\r\n      <VERS vnumber=\"19\">Then came the disciples to Jesus apart, and said, Why could not we cast it out?</VERS>\r\n      <VERS vnumber=\"20\">And he saith unto them, Because of your little faith: 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.</VERS>\r\n      <VERS vnumber=\"21\">[But this kind goeth not out save by prayer and fasting.]</VERS>\r\n      <VERS vnumber=\"22\">And while they abode in Galilee, Jesus said unto them, The Son of man shall be delivered up into the hands of men;</VERS>\r\n      <VERS vnumber=\"23\">and they shall kill him, and the third day he shall be raised up. And they were exceeding sorry.</VERS>\r\n      <VERS vnumber=\"24\">And when they were come to Capernaum, they that received the half-shekel came to Peter, and said, Doth not your teacher pay the half-shekel?</VERS>\r\n      <VERS vnumber=\"25\">He saith, Yea. And when he came into the house, Jesus spake first to him, saying, What thinkest thou, Simon? the kings of the earth, from whom do they receive toll or tribute? from their sons, or from strangers?</VERS>\r\n      <VERS vnumber=\"26\">And when he said, From strangers, Jesus said unto him, Therefore the sons are free.</VERS>\r\n      <VERS vnumber=\"27\">But, lest we cause them to stumble, go thou to the sea, and cast a hook, and take up the fish that first cometh up; and when thou hast opened his mouth, thou shalt find a shekel: that take, and give unto them for me and thee.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"18\">\r\n      <VERS vnumber=\"1\">In that hour came the disciples unto Jesus, saying, Who then is greatest in the kingdom of heaven?</VERS>\r\n      <VERS vnumber=\"2\">And he called to him a little child, and set him in the midst of them,</VERS>\r\n      <VERS vnumber=\"3\">and said, Verily I say unto you, Except ye turn, and become as little children, ye shall in no wise enter into the kingdom of heaven.</VERS>\r\n      <VERS vnumber=\"4\">Whosoever therefore shall humble himself as this little child, the same is the greatest in the kingdom of heaven.</VERS>\r\n      <VERS vnumber=\"5\">And whoso shall receive one such little child in my name receiveth me:</VERS>\r\n      <VERS vnumber=\"6\">But whoso shall cause one of these little ones that believe on me to stumble, it is profitable for him that a great millstone should be hanged about his neck, and [that] he should be sunk in the depth of the sea.</VERS>\r\n      <VERS vnumber=\"7\">Woe unto the world because of occasions of stumbling! for it must needs be that the occasions come; but woe to that man through whom the occasion cometh!</VERS>\r\n      <VERS vnumber=\"8\">And if thy hand or thy foot causeth thee to stumble, cut it off, and cast it from thee: it is good for thee to enter into life maimed or halt, rather than having two hands or two feet to be cast into the eternal fire.</VERS>\r\n      <VERS vnumber=\"9\">And if thine eye causeth thee to stumble, pluck it out, and cast it from thee: it is good for thee to enter into life with one eye, rather than having two eyes to be cast into the hell of fire.</VERS>\r\n      <VERS vnumber=\"10\">See 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 who is in heaven.</VERS>\r\n      <VERS vnumber=\"11\">[For the Son of man came to save that which was lost.]</VERS>\r\n      <VERS vnumber=\"12\">How think ye? if any man have a hundred sheep, and one of them be gone astray, doth he not leave the ninety and nine, and go unto the mountains, and seek that which goeth astray?</VERS>\r\n      <VERS vnumber=\"13\">And if so be that he find it, verily I say unto you, he rejoiceth over it more than over the ninety and nine which have not gone astray.</VERS>\r\n      <VERS vnumber=\"14\">Even so it is not the will of your Father who is in heaven, that one of these little ones should perish.</VERS>\r\n      <VERS vnumber=\"15\">And if thy brother sin against thee, go, show him his fault between thee and him alone: if he hear thee, thou hast gained thy brother.</VERS>\r\n      <VERS vnumber=\"16\">But if he hear [thee] not, take with thee one or two more, that at the mouth of two witnesses or three every word may be established.</VERS>\r\n      <VERS vnumber=\"17\">And if he refuse to hear them, tell it unto the church: and if he refuse to hear the church also, let him be unto thee as the Gentile and the publican.</VERS>\r\n      <VERS vnumber=\"18\">Verily I say unto you, what things soever ye shall bind on earth shall be bound in heaven; and what things soever ye shall loose on earth shall be loosed in heaven.</VERS>\r\n      <VERS vnumber=\"19\">Again I say unto you, that if two of you shall agree on earth as touching anything that they shall ask, it shall be done for them of my Father who is in heaven.</VERS>\r\n      <VERS vnumber=\"20\">For where two or three are gathered together in my name, there am I in the midst of them.</VERS>\r\n      <VERS vnumber=\"21\">Then came Peter and said to him, Lord, how oft shall my brother sin against me, and I forgive him? until seven times?</VERS>\r\n      <VERS vnumber=\"22\">Jesus saith unto him, I say not unto thee, Until seven times; but, Until seventy times seven.</VERS>\r\n      <VERS vnumber=\"23\">Therefore is the kingdom of heaven likened unto a certain king, who would make a reckoning with his servants.</VERS>\r\n      <VERS vnumber=\"24\">And when he had begun to reckon, one was brought unto him, that owed him ten thousand talents.</VERS>\r\n      <VERS vnumber=\"25\">But forasmuch as he had not [wherewith] to pay, his lord commanded him to be sold, and his wife, and children, and all that he had, and payment to be made.</VERS>\r\n      <VERS vnumber=\"26\">The servant therefore fell down and worshipped him, saying, Lord, have patience with me, and I will pay thee all.</VERS>\r\n      <VERS vnumber=\"27\">And the lord of that servant, being moved with compassion, released him, and forgave him the debt.</VERS>\r\n      <VERS vnumber=\"28\">But that servant went out, and found one of his fellow-servants, who owed him a hundred shillings: and he laid hold on him, and took [him] by the throat, saying, Pay what thou owest.</VERS>\r\n      <VERS vnumber=\"29\">So his fellow-servant fell down and besought him, saying, Have patience with me, and I will pay thee.</VERS>\r\n      <VERS vnumber=\"30\">And he would not: but went and cast him into prison, till he should pay that which was due.</VERS>\r\n      <VERS vnumber=\"31\">So when his fellow-servants saw what was done, they were exceeding sorry, and came and told unto their lord all that was done.</VERS>\r\n      <VERS vnumber=\"32\">Then his lord called him unto him, and saith to him, Thou wicked servant, I forgave thee all that debt, because thou besoughtest me:</VERS>\r\n      <VERS vnumber=\"33\">shouldest not thou also have had mercy on thy fellow-servant, even as I had mercy on thee?</VERS>\r\n      <VERS vnumber=\"34\">And his lord was wroth, and delivered him to the tormentors, till he should pay all that was due.</VERS>\r\n      <VERS vnumber=\"35\">So shall also my heavenly Father do unto you, if ye forgive not every one his brother from your hearts.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"19\">\r\n      <VERS vnumber=\"1\">And it came to pass when Jesus had finished these words, he departed from Galilee, and came into the borders of Judaea beyond the Jordan;</VERS>\r\n      <VERS vnumber=\"2\">and great multitudes followed him; and he healed them there.</VERS>\r\n      <VERS vnumber=\"3\">And there came unto him Pharisees, trying him, and saying, Is it lawful [for a man] to put away his wife for every cause?</VERS>\r\n      <VERS vnumber=\"4\">And he answered and said, Have ye not read, that he who made [them] from the beginning made them male and female,</VERS>\r\n      <VERS vnumber=\"5\">and said, For this cause shall a man leave his father and mother, and shall cleave to his wife; and the two shall become one flesh?</VERS>\r\n      <VERS vnumber=\"6\">So that they are no more two, but one flesh. What therefore God hath joined together, let not man put asunder.</VERS>\r\n      <VERS vnumber=\"7\">They say unto him, Why then did Moses command to give a bill of divorcement, and to put [her] away?</VERS>\r\n      <VERS vnumber=\"8\">He saith unto them, Moses for your hardness of heart suffered you to put away your wives: but from the beginning it hath not been so.</VERS>\r\n      <VERS vnumber=\"9\">And I say unto you, Whosoever shall put away his wife, except for fornication, and shall marry another, committeth adultery: and he that marrieth her when she is put away committeth adultery.</VERS>\r\n      <VERS vnumber=\"10\">The disciples say unto him, If the case of the man is so with his wife, it is not expedient to marry.</VERS>\r\n      <VERS vnumber=\"11\">But he said unto them, Not all men can receive this saying, but they to whom it is given.</VERS>\r\n      <VERS vnumber=\"12\">For there are eunuchs, that were so born from their mother`s womb: and there are eunuchs, that were made eunuchs by men: and there are eunuchs, that made themselves eunuchs for the kingdom of heaven`s sake. He that is able to receive it, let him receive it.</VERS>\r\n      <VERS vnumber=\"13\">Then were there brought unto him little children, that he should lay his hands on them, and pray: and the disciples rebuked them.</VERS>\r\n      <VERS vnumber=\"14\">But Jesus said, Suffer the little children, and forbid them not, to come unto me: for to such belongeth the kingdom of heaven.</VERS>\r\n      <VERS vnumber=\"15\">And he laid his hands on them, and departed thence.</VERS>\r\n      <VERS vnumber=\"16\">And behold, one came to him and said, Teacher, what good thing shall I do, that I may have eternal life?</VERS>\r\n      <VERS vnumber=\"17\">And he said unto him, Why askest thou me concerning that which is good? One there is who is good: but if thou wouldest enter into life, keep the commandments.</VERS>\r\n      <VERS vnumber=\"18\">He saith unto him, Which? And Jesus said, Thou shalt not kill, Thou shalt not commit adultery, Thou shalt not steal, Thou shalt not bear false witness,</VERS>\r\n      <VERS vnumber=\"19\">Honor thy father and mother; and, Thou shalt love thy neighbor as thyself.</VERS>\r\n      <VERS vnumber=\"20\">The young man saith unto him, All these things have I observed: what lack I yet?</VERS>\r\n      <VERS vnumber=\"21\">Jesus said unto him, If thou wouldest be perfect, go, sell that which thou hast, and give to the poor, and thou shalt have treasure in heaven: and come, follow me.</VERS>\r\n      <VERS vnumber=\"22\">But when the young man heard the saying, he went away sorrowful; for he was one that had great possessions.</VERS>\r\n      <VERS vnumber=\"23\">And Jesus said unto his disciples, Verily I say unto you, It is hard for a rich man to enter into the kingdom of heaven.</VERS>\r\n      <VERS vnumber=\"24\">And again I say unto you, 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.</VERS>\r\n      <VERS vnumber=\"25\">And when the disciples heard it, they were astonished exceedingly, saying, Who then can be saved?</VERS>\r\n      <VERS vnumber=\"26\">And Jesus looking upon [them] said to them, With men this is impossible; but with God all things are possible.</VERS>\r\n      <VERS vnumber=\"27\">Then answered Peter and said unto him, Lo, we have left all, and followed thee; what then shall we have?</VERS>\r\n      <VERS vnumber=\"28\">And Jesus said unto them, Verily I say unto you, that ye who have followed me, in the regeneration when the Son of man shall sit on the throne of his glory, ye also shall sit upon twelve thrones, judging the twelve tribes of Israel.</VERS>\r\n      <VERS vnumber=\"29\">And every one that hath left houses, or brethren, or sisters, or father, or mother, or children, or lands, for my name`s sake, shall receive a hundredfold, and shall inherit eternal life.</VERS>\r\n      <VERS vnumber=\"30\">But many shall be last [that are] first; and first [that are] last.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"20\">\r\n      <VERS vnumber=\"1\">For the kingdom of heaven is like unto a man that was a householder, who went out early in the morning to hire laborers into his vineyard.</VERS>\r\n      <VERS vnumber=\"2\">And when he had agreed with the laborers for a shilling a day, he sent them into his vineyard.</VERS>\r\n      <VERS vnumber=\"3\">And he went out about the third hour, and saw others standing in the marketplace idle;</VERS>\r\n      <VERS vnumber=\"4\">and to them he said, Go ye also into the vineyard, and whatsoever is right I will give you. And they went their way.</VERS>\r\n      <VERS vnumber=\"5\">Again he went out about the sixth and the ninth hour, and did likewise.</VERS>\r\n      <VERS vnumber=\"6\">And about the eleventh [hour] he went out, and found others standing; and he saith unto them, Why stand ye here all the day idle?</VERS>\r\n      <VERS vnumber=\"7\">They say unto him, Because no man hath hired us. He saith unto them, Go ye also into the vineyard.</VERS>\r\n      <VERS vnumber=\"8\">And when even was come, the lord of the vineyard saith unto his steward, Call the laborers, and pay them their hire, beginning from the last unto the first.</VERS>\r\n      <VERS vnumber=\"9\">And when they came that [were hired] about the eleventh hour, they received every man a shilling.</VERS>\r\n      <VERS vnumber=\"10\">And when the first came, they supposed that they would receive more; and they likewise received every man a shilling.</VERS>\r\n      <VERS vnumber=\"11\">And when they received it, they murmured against the householder,</VERS>\r\n      <VERS vnumber=\"12\">saying, These last have spent [but] one hour, and thou hast made them equal unto us, who have borne the burden of the day and the scorching heat.</VERS>\r\n      <VERS vnumber=\"13\">But he answered and said to one of them, Friend, I do thee no wrong: didst not thou agree with me for a shilling?</VERS>\r\n      <VERS vnumber=\"14\">Take up that which is thine, and go thy way; it is my will to give unto this last, even as unto thee.</VERS>\r\n      <VERS vnumber=\"15\">Is it not lawful for me to do what I will with mine own? or is thine eye evil, because I am good?</VERS>\r\n      <VERS vnumber=\"16\">So the last shall be first, and the first last.</VERS>\r\n      <VERS vnumber=\"17\">And as Jesus was going up to Jerusalem, he took the twelve disciples apart, and on the way he said unto them,</VERS>\r\n      <VERS vnumber=\"18\">Behold, we go up to Jerusalem; and the Son of man shall be delivered unto the chief priests and scribes; and they shall condemn him to death,</VERS>\r\n      <VERS vnumber=\"19\">and shall deliver him unto the Gentiles to mock, and to scourge, and to crucify: and the third day he shall be raised up.</VERS>\r\n      <VERS vnumber=\"20\">Then came to him the mother of the sons of Zebedee with her sons, worshipping [him], and asking a certain thing of him.</VERS>\r\n      <VERS vnumber=\"21\">And he said unto her, What wouldest thou? She saith unto him, Command that these my two sons may sit, one on thy right hand, and one on thy left hand, in thy kingdom.</VERS>\r\n      <VERS vnumber=\"22\">But Jesus answered and said, Ye know not what ye ask. Are ye able to drink the cup that I am about to drink? They say unto him, We are able.</VERS>\r\n      <VERS vnumber=\"23\">He saith unto them, My cup indeed ye shall drink: but to sit on my right hand, and on [my] left hand, is not mine to give; but [it is for them] for whom it hath been prepared of my Father.</VERS>\r\n      <VERS vnumber=\"24\">And when the ten heard it, they were moved with indignation concerning the two brethren.</VERS>\r\n      <VERS vnumber=\"25\">But Jesus called them unto him, and said, Ye know that the rulers of the Gentiles lord it over them, and their great ones exercise authority over them.</VERS>\r\n      <VERS vnumber=\"26\">Not so shall it be among you: but whosoever would become great among you shall be your minister;</VERS>\r\n      <VERS vnumber=\"27\">and whosoever would be first among you shall be your servant:</VERS>\r\n      <VERS vnumber=\"28\">even as the Son of man came not to be ministered unto, but to minister, and to give his life a ransom for many.</VERS>\r\n      <VERS vnumber=\"29\">And as they went out from Jericho, a great multitude followed him.</VERS>\r\n      <VERS vnumber=\"30\">And behold, two blind men sitting by the way side, when they heard that Jesus was passing by, cried out, saying, Lord, have mercy on us, thou son of David.</VERS>\r\n      <VERS vnumber=\"31\">And the multitude rebuked them, that they should hold their peace: but they cried out the more, saying, Lord, have mercy on us, thou son of David.</VERS>\r\n      <VERS vnumber=\"32\">And Jesus stood still, and called them, and said, What will ye that I should do unto you?</VERS>\r\n      <VERS vnumber=\"33\">They say unto him, Lord, that our eyes may be opened.</VERS>\r\n      <VERS vnumber=\"34\">And Jesus, being moved with compassion, touched their eyes; and straightway they received their sight, and followed him.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"21\">\r\n      <VERS vnumber=\"1\">And when they drew nigh unto Jerusalem, and came unto Bethphage, unto the mount of Olives, then Jesus sent two disciples,</VERS>\r\n      <VERS vnumber=\"2\">saying unto them, Go into the village that is over against you, and straightway ye shall find an ass tied, and a colt with her: loose [them], and bring [them] unto me.</VERS>\r\n      <VERS vnumber=\"3\">And if any one say aught unto you, ye shall say, The Lord hath need of them; and straightway he will send them.</VERS>\r\n      <VERS vnumber=\"4\">Now this is come to pass, that it might be fulfilled which was spoken through the prophet, saying,</VERS>\r\n      <VERS vnumber=\"5\">Tell ye the daughter of Zion, Behold, thy King cometh unto thee, Meek, and riding upon an ass, And upon a colt the foal of an ass.</VERS>\r\n      <VERS vnumber=\"6\">And the disciples went, and did even as Jesus appointed them,</VERS>\r\n      <VERS vnumber=\"7\">and brought the ass, and the colt, and put on them their garments; and he sat thereon.</VERS>\r\n      <VERS vnumber=\"8\">And the most part of the multitude spread their garments in the way; and others cut branches from the trees, and spread them in the way.</VERS>\r\n      <VERS vnumber=\"9\">And the multitudes that went before him, 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.</VERS>\r\n      <VERS vnumber=\"10\">And when he was come into Jerusalem, all the city was stirred, saying, Who is this?</VERS>\r\n      <VERS vnumber=\"11\">And the multitudes said, This is the prophet, Jesus, from Nazareth of Galilee.</VERS>\r\n      <VERS vnumber=\"12\">And Jesus entered into the temple of God, and cast out all them that sold and bought in the temple, and overthrew the tables of he money-changers, and the seats of them that sold the doves;</VERS>\r\n      <VERS vnumber=\"13\">and he saith unto them, It is written, My house shall be called a house of prayer: but ye make it a den of robbers.</VERS>\r\n      <VERS vnumber=\"14\">And the blind and the lame came to him in the temple; and he healed them.</VERS>\r\n      <VERS vnumber=\"15\">But when the chief priests and the scribes saw the wonderful things that he did, and the children that were crying in the temple and saying, Hosanna to the son of David; they were moved with indignation,</VERS>\r\n      <VERS vnumber=\"16\">and said unto him, Hearest thou what these are saying? And Jesus saith unto them, Yea: did ye never read, Out of the mouth of babes and sucklings thou has perfected praise?</VERS>\r\n      <VERS vnumber=\"17\">And he left them, and went forth out of the city to Bethany, and lodged there.</VERS>\r\n      <VERS vnumber=\"18\">Now in the morning as he returned to the city, he hungered.</VERS>\r\n      <VERS vnumber=\"19\">And seeing a fig tree by the way side, he came to it, and found nothing thereon, but leaves only; and he saith unto it, Let there be no fruit from thee henceforward for ever. And immediately the fig tree withered away.</VERS>\r\n      <VERS vnumber=\"20\">And when the disciples saw it, they marvelled, saying, How did the fig tree immediately wither away?</VERS>\r\n      <VERS vnumber=\"21\">And Jesus answered and said unto them, Verily I say unto you, If ye have faith, and doubt not, ye shall not only do what is done to the fig tree, but even if ye shall say unto this mountain, Be thou taken up and cast into the sea, it shall be done.</VERS>\r\n      <VERS vnumber=\"22\">And all things, whatsoever ye shall ask in prayer, believing, ye shall receive.</VERS>\r\n      <VERS vnumber=\"23\">And 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?</VERS>\r\n      <VERS vnumber=\"24\">And Jesus answered and said unto them, I also will ask you one question, which if ye tell me, I likewise will tell you by what authority I do these things.</VERS>\r\n      <VERS vnumber=\"25\">The baptism of John, whence was it? from heaven or from men? And they reasoned with themselves, saying, If we shall say, From heaven; he will say unto us, Why then did ye not believe him?</VERS>\r\n      <VERS vnumber=\"26\">But if we shall say, From men; we fear the multitude; for all hold John as a prophet.</VERS>\r\n      <VERS vnumber=\"27\">And they answered Jesus, and said, We know not. He also said unto them, Neither tell I you by what authority I do these things.</VERS>\r\n      <VERS vnumber=\"28\">But what think ye? A man had two sons; and he came to the first, and said, Son, go work to-day in the vineyard.</VERS>\r\n      <VERS vnumber=\"29\">And he answered and said, I will not: but afterward he repented himself, and went.</VERS>\r\n      <VERS vnumber=\"30\">And he came to the second, and said likewise. And he answered and said, I [go], sir: and went not.</VERS>\r\n      <VERS vnumber=\"31\">Which of the two did the will of his father? They say, 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.</VERS>\r\n      <VERS vnumber=\"32\">For 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 saw it, did not even repent yourselves afterward, that ye might believe him.</VERS>\r\n      <VERS vnumber=\"33\">Hear another parable: There was a man that was a householder, who planted a vineyard, and set a hedge about it, and digged a winepress in it, and built a tower, and let it out to husbandmen, and went into another country.</VERS>\r\n      <VERS vnumber=\"34\">And when the season of the fruits drew near, he sent his servants to the husbandmen, to receive his fruits.</VERS>\r\n      <VERS vnumber=\"35\">And the husbandmen took his servants, and beat one, and killed another, and stoned another.</VERS>\r\n      <VERS vnumber=\"36\">Again, he sent other servants more than the first: and they did unto them in like manner.</VERS>\r\n      <VERS vnumber=\"37\">But afterward he sent unto them his son, saying, They will reverence my son.</VERS>\r\n      <VERS vnumber=\"38\">But the husbandmen, when they saw the son, said among themselves, This is the heir; come, let us kill him, and take his inheritance.</VERS>\r\n      <VERS vnumber=\"39\">And they took him, and cast him forth out of the vineyard, and killed him.</VERS>\r\n      <VERS vnumber=\"40\">When therefore the lord of the vineyard shall come, what will he do unto those husbandmen?</VERS>\r\n      <VERS vnumber=\"41\">They say unto him, He will miserably destroy those miserable men, and will let out the vineyard unto other husbandmen, who shall render him the fruits in their seasons.</VERS>\r\n      <VERS vnumber=\"42\">Jesus saith unto them, Did ye never read in the scriptures, The stone which the builders rejected, The same was made the head of the corner; This was from the Lord, And it is marvelous in our eyes?</VERS>\r\n      <VERS vnumber=\"43\">Therefore say I unto you, The kingdom of God shall be taken away from you, and shall be given to a nation bringing forth the fruits thereof.</VERS>\r\n      <VERS vnumber=\"44\">And he that falleth on this stone shall be broken to pieces: but on whomsoever it shall fall, it will scatter him as dust.</VERS>\r\n      <VERS vnumber=\"45\">And when the chief priests and the Pharisees heard his parables, they perceived that he spake of them.</VERS>\r\n      <VERS vnumber=\"46\">And when they sought to lay hold on him, they feared the multitudes, because they took him for a prophet.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"22\">\r\n      <VERS vnumber=\"1\">And Jesus answered and spake again in parables unto them, saying,</VERS>\r\n      <VERS vnumber=\"2\">The kingdom of heaven is likened unto a certain king, who made a marriage feast for his son,</VERS>\r\n      <VERS vnumber=\"3\">and sent forth his servants to call them that were bidden to the marriage feast: and they would not come.</VERS>\r\n      <VERS vnumber=\"4\">Again he sent forth other servants, saying, Tell them that are bidden, Behold, I have made ready my dinner; my oxen and my fatlings are killed, and all things are ready: come to the marriage feast.</VERS>\r\n      <VERS vnumber=\"5\">But they made light of it, and went their ways, one to his own farm, another to his merchandise;</VERS>\r\n      <VERS vnumber=\"6\">and the rest laid hold on his servants, and treated them shamefully, and killed them.</VERS>\r\n      <VERS vnumber=\"7\">But the king was wroth; and he sent his armies, and destroyed those murderers, and burned their city.</VERS>\r\n      <VERS vnumber=\"8\">Then saith he to his servants, The wedding is ready, but they that were bidden were not worthy.</VERS>\r\n      <VERS vnumber=\"9\">Go ye therefore unto the partings of the highways, and as many as ye shall find, bid to the marriage feast.</VERS>\r\n      <VERS vnumber=\"10\">And those servants went out into the highways, and gathered together all as many as they found, both bad and good: and the wedding was filled with guests.</VERS>\r\n      <VERS vnumber=\"11\">But when the king came in to behold the guests, he saw there a man who had not on a wedding-garment:</VERS>\r\n      <VERS vnumber=\"12\">and he saith unto him, Friend, how camest thou in hither not having a wedding-garment? And he was speechless.</VERS>\r\n      <VERS vnumber=\"13\">Then the king said to the servants, Bind him hand and foot, and cast him out into the outer darkness; there shall be the weeping and the gnashing of teeth.</VERS>\r\n      <VERS vnumber=\"14\">For many are called, but few chosen.</VERS>\r\n      <VERS vnumber=\"15\">Then went the Pharisees, and took counsel how they might ensnare him in [his] talk.</VERS>\r\n      <VERS vnumber=\"16\">And they send to him their disciples, with the Herodians, saying, Teacher, we know that thou art true, and teachest the way of God in truth, and carest not for any one: for thou regardest not the person of men.</VERS>\r\n      <VERS vnumber=\"17\">Tell us therefore, What thinkest thou? Is it lawful to give tribute unto Caesar, or not?</VERS>\r\n      <VERS vnumber=\"18\">But Jesus perceived their wickedness, and said, Why make ye trial of me, ye hypocrites?</VERS>\r\n      <VERS vnumber=\"19\">Show me the tribute money. And they brought unto him a denarius.</VERS>\r\n      <VERS vnumber=\"20\">And he saith unto them, Whose is this image and superscription?</VERS>\r\n      <VERS vnumber=\"21\">They say unto him, Caesar`s. Then saith he unto them, Render therefore unto Caesar the things that are Caesar`s; and unto God the things that are God`s.</VERS>\r\n      <VERS vnumber=\"22\">And when they heard it, they marvelled, and left him, and went away.</VERS>\r\n      <VERS vnumber=\"23\">On that day there came to him Sadducees, they that say that there is no resurrection: and they asked him,</VERS>\r\n      <VERS vnumber=\"24\">saying, Teacher, Moses said, If a man die, having no children, his brother shall marry his wife, and raise up seed unto his brother.</VERS>\r\n      <VERS vnumber=\"25\">Now there were with us seven brethren: and the first married and deceased, and having no seed left his wife unto his brother;</VERS>\r\n      <VERS vnumber=\"26\">in like manner the second also, and the third, unto the seventh.</VERS>\r\n      <VERS vnumber=\"27\">And after them all, the woman died.</VERS>\r\n      <VERS vnumber=\"28\">In the resurrection therefore whose wife shall she be of the seven? for they all had her.</VERS>\r\n      <VERS vnumber=\"29\">But Jesus answered and said unto them, Ye do err, not knowing the scriptures, nor the power of God.</VERS>\r\n      <VERS vnumber=\"30\">For in the resurrection they neither marry, nor are given in marriage, but are as angels in heaven.</VERS>\r\n      <VERS vnumber=\"31\">But as touching the resurrection of the dead, have ye not read that which was spoken unto you by God, saying,</VERS>\r\n      <VERS vnumber=\"32\">I 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.</VERS>\r\n      <VERS vnumber=\"33\">And when the multitudes heard it, they were astonished at his teaching.</VERS>\r\n      <VERS vnumber=\"34\">But the Pharisees, when they heard that he had put the Sadducees to silence, gathered themselves together.</VERS>\r\n      <VERS vnumber=\"35\">And one of them, a lawyer, asked him a question, trying him:</VERS>\r\n      <VERS vnumber=\"36\">Teacher, which is the great commandment in the law?</VERS>\r\n      <VERS vnumber=\"37\">And he said unto him, Thou shalt love the Lord thy God with all thy heart, and with all thy soul, and with all thy mind.</VERS>\r\n      <VERS vnumber=\"38\">This is the great and first commandment.</VERS>\r\n      <VERS vnumber=\"39\">And a second like [unto it] is this, Thou shalt love thy neighbor as thyself.</VERS>\r\n      <VERS vnumber=\"40\">On these two commandments the whole law hangeth, and the prophets.</VERS>\r\n      <VERS vnumber=\"41\">Now while the Pharisees were gathered together, Jesus asked them a question,</VERS>\r\n      <VERS vnumber=\"42\">saying, What think ye of the Christ? whose son is he? They say unto him, [The son] of David.</VERS>\r\n      <VERS vnumber=\"43\">He saith unto them, How then doth David in the Spirit call him Lord, saying,</VERS>\r\n      <VERS vnumber=\"44\">The Lord said unto my Lord, Sit thou on my right hand, Till I put thine enemies underneath thy feet?</VERS>\r\n      <VERS vnumber=\"45\">If David then calleth him Lord, how is he his son?</VERS>\r\n      <VERS vnumber=\"46\">And no one was able to answer him a word, neither durst any man from that day forth ask him any more questions.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"23\">\r\n      <VERS vnumber=\"1\">Then spake Jesus to the multitudes and to his disciples,</VERS>\r\n      <VERS vnumber=\"2\">saying, The scribes and the Pharisees sit on Moses seat:</VERS>\r\n      <VERS vnumber=\"3\">all things therefore whatsoever they bid you, [these] do and observe: but do not ye after their works; for they say, and do not.</VERS>\r\n      <VERS vnumber=\"4\">Yea, they bind heavy burdens and grievous to be borne, and lay them on men`s shoulders; but they themselves will not move them with their finger.</VERS>\r\n      <VERS vnumber=\"5\">But all their works they do to be seen of men: for they make broad their phylacteries, and enlarge the borders [of their garments],</VERS>\r\n      <VERS vnumber=\"6\">and love the chief place at feasts, and the chief seats in the synagogues,</VERS>\r\n      <VERS vnumber=\"7\">and the salutations in the marketplaces, and to be called of men, Rabbi.</VERS>\r\n      <VERS vnumber=\"8\">But be not ye called Rabbi: for one is your teacher, and all ye are brethren.</VERS>\r\n      <VERS vnumber=\"9\">And call no man your father on the earth: for one is your Father, [even] he who is in heaven.</VERS>\r\n      <VERS vnumber=\"10\">Neither be ye called masters: for one is your master, [even] the Christ.</VERS>\r\n      <VERS vnumber=\"11\">But he that is greatest among you shall be your servant.</VERS>\r\n      <VERS vnumber=\"12\">And whosoever shall exalt himself shall be humbled; and whosoever shall humble himself shall be exalted.</VERS>\r\n      <VERS vnumber=\"13\">But woe unto you, scribes and Pharisees, hypocrites! because ye shut the kingdom of heaven against men: for ye enter not in yourselves, neither suffer ye them that are entering in to enter[.]</VERS>\r\n      <VERS vnumber=\"14\">Woe unto you, scribes and Pharisees, hypocrites! for ye devour widows` houses, even while for a pretence ye make long prayers: therefore ye shall receive greater condemnation.</VERS>\r\n      <VERS vnumber=\"15\">Woe unto you, scribes and Pharisees, hypocrites! for ye compass sea and land to make one proselyte; and when he is become so, ye make him twofold more a son of hell than yourselves.</VERS>\r\n      <VERS vnumber=\"16\">Woe unto you, ye blind guides, that say, Whosoever shall swear by the temple, it is nothing; but whosoever shall swear by the gold of the temple, he is a debtor.</VERS>\r\n      <VERS vnumber=\"17\">Ye fools and blind: for which is greater, the gold, or the temple that hath sanctified the gold?</VERS>\r\n      <VERS vnumber=\"18\">And, Whosoever shall swear by the altar, it is nothing; but whosoever shall swear by the gift that is upon it, he is a debtor.</VERS>\r\n      <VERS vnumber=\"19\">Ye blind: for which is greater, the gift, or the altar that sanctifieth the gift?</VERS>\r\n      <VERS vnumber=\"20\">He therefore that sweareth by the altar, sweareth by it, and by all things thereon.</VERS>\r\n      <VERS vnumber=\"21\">And he that sweareth by the temple, sweareth by it, and by him that dwelleth therein.</VERS>\r\n      <VERS vnumber=\"22\">And he that sweareth by the heaven, sweareth by the throne of God, and by him that sitteth thereon.</VERS>\r\n      <VERS vnumber=\"23\">Woe unto you, scribes and Pharisees, hypocrites! for ye tithe mint and anise and cummin, and have left undone the weightier matters of the law, justice, and mercy, and faith: but these ye ought to have done, and not to have left the other undone.</VERS>\r\n      <VERS vnumber=\"24\">Ye blind guides, that strain out the gnat, and swallow the camel!</VERS>\r\n      <VERS vnumber=\"25\">Woe unto you, scribes and Pharisees, hypocrites! for ye cleanse the outside of the cup and of the platter, but within they are full from extortion and excess.</VERS>\r\n      <VERS vnumber=\"26\">Thou blind Pharisee, cleanse first the inside of the cup and of the platter, that the outside thereof may become clean also.</VERS>\r\n      <VERS vnumber=\"27\">Woe unto you, scribes and Pharisees, hypocrites! for ye are like unto whited sepulchres, which outwardly appear beautiful, but inwardly are full of dead men`s bones, and of all uncleanness.</VERS>\r\n      <VERS vnumber=\"28\">Even so ye also outwardly appear righteous unto men, but inwardly ye are full of hypocrisy and iniquity.</VERS>\r\n      <VERS vnumber=\"29\">Woe unto you, scribes and Pharisees, hypocrites! for ye build the sepulchres of the prophets, and garnish the tombs of the righteous,</VERS>\r\n      <VERS vnumber=\"30\">and say, If we had been in the days of our fathers, we should not have been partakers with them in the blood of the prophets.</VERS>\r\n      <VERS vnumber=\"31\">Wherefore ye witness to yourselves, that ye are sons of them that slew the prophets.</VERS>\r\n      <VERS vnumber=\"32\">Fill ye up then the measure of your fathers.</VERS>\r\n      <VERS vnumber=\"33\">Ye serpents, ye offspring of vipers, how shall ye escape the judgment of hell?</VERS>\r\n      <VERS vnumber=\"34\">Therefore, behold, I send unto you prophets, and wise men, and scribes: some of them shall ye kill and crucify; and some of them shall ye scourge in your synagogues, and persecute from city to city:</VERS>\r\n      <VERS vnumber=\"35\">that upon you may come all the righteous blood shed on the earth, from the blood of Abel the righteous unto the blood of Zachariah son of Barachiah, whom ye slew between the sanctuary and the altar.</VERS>\r\n      <VERS vnumber=\"36\">Verily I say unto you, All these things shall come upon this generation.</VERS>\r\n      <VERS vnumber=\"37\">O Jerusalem, Jerusalem, that killeth the prophets, and stoneth them that are sent unto her! how often would I have gathered thy children together, even as a hen gathereth her chickens under her wings, and ye would not!</VERS>\r\n      <VERS vnumber=\"38\">Behold, your house is left unto you desolate.</VERS>\r\n      <VERS vnumber=\"39\">For 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"24\">\r\n      <VERS vnumber=\"1\">And Jesus went out from the temple, and was going on his way; and his disciples came to him to show him the buildings of the temple.</VERS>\r\n      <VERS vnumber=\"2\">But he answered and 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.</VERS>\r\n      <VERS vnumber=\"3\">And as he sat on 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?</VERS>\r\n      <VERS vnumber=\"4\">And Jesus answered and said unto them, Take heed that no man lead you astray.</VERS>\r\n      <VERS vnumber=\"5\">For many shall come in my name, saying, I am the Christ; and shall lead many astray.</VERS>\r\n      <VERS vnumber=\"6\">And ye shall hear of wars and rumors of wars; see that ye be not troubled: for [these things] must needs come to pass; but the end is not yet.</VERS>\r\n      <VERS vnumber=\"7\">For nation shall rise against nation, and kingdom against kingdom; and there shall be famines and earthquakes in divers places.</VERS>\r\n      <VERS vnumber=\"8\">But all these things are the beginning of travail.</VERS>\r\n      <VERS vnumber=\"9\">Then shall they deliver you up unto tribulation, and shall kill you: and ye shall be hated of all the nations for my name`s sake.</VERS>\r\n      <VERS vnumber=\"10\">And then shall many stumble, and shall deliver up one another, and shall hate one another.</VERS>\r\n      <VERS vnumber=\"11\">And many false prophets shall arise, and shall lead many astray.</VERS>\r\n      <VERS vnumber=\"12\">And because iniquity shall be multiplied, the love of the many shall wax cold.</VERS>\r\n      <VERS vnumber=\"13\">But he that endureth to the end, the same shall be saved.</VERS>\r\n      <VERS vnumber=\"14\">And this gospel of the kingdom shall be preached in the whole world for a testimony unto all the nations; and then shall the end come.</VERS>\r\n      <VERS vnumber=\"15\">When therefore ye see the abomination of desolation, which was spoken of through Daniel the prophet, standing in the holy place (let him that readeth understand),</VERS>\r\n      <VERS vnumber=\"16\">then let them that are in Judaea flee unto the mountains:</VERS>\r\n      <VERS vnumber=\"17\">let him that is on the housetop not go down to take out things that are in his house:</VERS>\r\n      <VERS vnumber=\"18\">and let him that is in the field not return back to take his cloak.</VERS>\r\n      <VERS vnumber=\"19\">But woe unto them that are with child and to them that give suck in those days!</VERS>\r\n      <VERS vnumber=\"20\">And pray ye that your flight be not in the winter, neither on a sabbath:</VERS>\r\n      <VERS vnumber=\"21\">for then shall be great tribulation, such as hath not been from the beginning of the world until now, no, nor ever shall be.</VERS>\r\n      <VERS vnumber=\"22\">And except those days had been shortened, no flesh would have been saved: but for the elect`s sake those days shall be shortened.</VERS>\r\n      <VERS vnumber=\"23\">Then if any man shall say unto you, Lo, here is the Christ, or, Here; believe [it] not.</VERS>\r\n      <VERS vnumber=\"24\">For there shall arise false Christs, and false prophets, and shall show great signs and wonders; so as to lead astray, if possible, even the elect.</VERS>\r\n      <VERS vnumber=\"25\">Behold, I have told you beforehand.</VERS>\r\n      <VERS vnumber=\"26\">If therefore they shall say unto you, Behold, he is in the wilderness; go not forth: Behold, he is in the inner chambers; believe [it] not.</VERS>\r\n      <VERS vnumber=\"27\">For as the lightning cometh forth from the east, and is seen even unto the west; so shall be the coming of the Son of man.</VERS>\r\n      <VERS vnumber=\"28\">Wheresoever the carcase is, there will the eagles be gathered together.</VERS>\r\n      <VERS vnumber=\"29\">But immediately after the tribulation of those days the sun shall 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:</VERS>\r\n      <VERS vnumber=\"30\">and 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 on the clouds of heaven with power and great glory.</VERS>\r\n      <VERS vnumber=\"31\">And he shall send forth 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.</VERS>\r\n      <VERS vnumber=\"32\">Now from the fig tree learn her parable: when her branch is now become tender, and putteth forth its leaves, ye know that the summer is nigh;</VERS>\r\n      <VERS vnumber=\"33\">even so ye also, when ye see all these things, know ye that he is nigh, [even] at the doors.</VERS>\r\n      <VERS vnumber=\"34\">Verily I say unto you, This generation shall not pass away, till all these things be accomplished.</VERS>\r\n      <VERS vnumber=\"35\">Heaven and earth shall pass away, but my words shall not pass away.</VERS>\r\n      <VERS vnumber=\"36\">But of that day and hour knoweth no one, not even the angels of heaven, neither the Son, but the Father only.</VERS>\r\n      <VERS vnumber=\"37\">And as [were] the days of Noah, so shall be the coming of the Son of man.</VERS>\r\n      <VERS vnumber=\"38\">For as in those days which were before the flood they were eating and drinking, marrying and giving in marriage, until the day that Noah entered into the ark,</VERS>\r\n      <VERS vnumber=\"39\">and they knew not until the flood came, and took them all away; so shall be the coming of the Son of man.</VERS>\r\n      <VERS vnumber=\"40\">Then shall two man be in the field; one is taken, and one is left:</VERS>\r\n      <VERS vnumber=\"41\">two women [shall be] grinding at the mill; one is taken, and one is left.</VERS>\r\n      <VERS vnumber=\"42\">Watch therefore: for ye know not on what day your Lord cometh.</VERS>\r\n      <VERS vnumber=\"43\">But know this, that if the master of the house had known in what watch the thief was coming, he would have watched, and would not have suffered his house to be broken through.</VERS>\r\n      <VERS vnumber=\"44\">Therefore be ye also ready; for in an hour that ye think not the Son of man cometh.</VERS>\r\n      <VERS vnumber=\"45\">Who then is the faithful and wise servant, whom his lord hath set over his household, to give them their food in due season?</VERS>\r\n      <VERS vnumber=\"46\">Blessed is that servant, whom his lord when he cometh shall find so doing.</VERS>\r\n      <VERS vnumber=\"47\">Verily I say unto you, that he will set him over all that he hath.</VERS>\r\n      <VERS vnumber=\"48\">But if that evil servant shall say in his heart, My lord tarrieth;</VERS>\r\n      <VERS vnumber=\"49\">and shall begin to beat his fellow-servants, and shall eat and drink with the drunken;</VERS>\r\n      <VERS vnumber=\"50\">the lord of that servant shall come in a day when he expecteth not, and in an hour when he knoweth not,</VERS>\r\n      <VERS vnumber=\"51\">and shall cut him asunder, and appoint his portion with the hypocrites: there shall be the weeping and the gnashing of teeth.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"25\">\r\n      <VERS vnumber=\"1\">Then shall the kingdom of heaven be likened unto ten virgins, who took their lamps, and went forth to meet the bridegroom.</VERS>\r\n      <VERS vnumber=\"2\">And five of them were foolish, and five were wise.</VERS>\r\n      <VERS vnumber=\"3\">For the foolish, when they took their lamps, took no oil with them:</VERS>\r\n      <VERS vnumber=\"4\">but the wise took oil in their vessels with their lamps.</VERS>\r\n      <VERS vnumber=\"5\">Now while the bridegroom tarried, they all slumbered and slept.</VERS>\r\n      <VERS vnumber=\"6\">But at midnight there is a cry, Behold, the bridegroom! Come ye forth to meet him.</VERS>\r\n      <VERS vnumber=\"7\">Then all those virgins arose, and trimmed their lamps.</VERS>\r\n      <VERS vnumber=\"8\">And the foolish said unto the wise, Give us of your oil; for our lamps are going out.</VERS>\r\n      <VERS vnumber=\"9\">But the wise answered, saying, Peradventure there will not be enough for us and you: go ye rather to them that sell, and buy for yourselves.</VERS>\r\n      <VERS vnumber=\"10\">And while they went away to buy, the bridegroom came; and they that were ready went in with him to the marriage feast: and the door was shut.</VERS>\r\n      <VERS vnumber=\"11\">Afterward came also the other virgins, saying, Lord, Lord, open to us.</VERS>\r\n      <VERS vnumber=\"12\">But he answered and said, Verily I say unto you, I know you not.</VERS>\r\n      <VERS vnumber=\"13\">Watch therefore, for ye know not the day nor the hour.</VERS>\r\n      <VERS vnumber=\"14\">For [it is] as [when] a man, going into another country, called his own servants, and delivered unto them his goods.</VERS>\r\n      <VERS vnumber=\"15\">And unto one he gave five talents, to another two, to another one; to each according to his several ability; and he went on his journey.</VERS>\r\n      <VERS vnumber=\"16\">Straightway he that received the five talents went and traded with them, and made other five talents.</VERS>\r\n      <VERS vnumber=\"17\">In like manner he also that [received] the two gained other two.</VERS>\r\n      <VERS vnumber=\"18\">But he that received the one went away and digged in the earth, and hid his lord`s money.</VERS>\r\n      <VERS vnumber=\"19\">Now after a long time the lord of those servants cometh, and maketh a reckoning with them.</VERS>\r\n      <VERS vnumber=\"20\">And he that received the five talents came and brought other five talents, saying, Lord, thou deliveredst unto me five talents: lo, I have gained other five talents.</VERS>\r\n      <VERS vnumber=\"21\">His lord said unto him, Well done, good and faithful servant: thou hast been faithful over a few things, I will set thee over many things; enter thou into the joy of thy lord.</VERS>\r\n      <VERS vnumber=\"22\">And he also that [received] the two talents came and said, Lord, thou deliveredst unto me two talents: lo, I have gained other two talents.</VERS>\r\n      <VERS vnumber=\"23\">His lord said unto him, Well done, good and faithful servant: thou hast been faithful over a few things, I will set thee over many things; enter thou into the joy of thy lord.</VERS>\r\n      <VERS vnumber=\"24\">And he also that had received the one talent came and said, Lord, I knew thee that thou art a hard man, reaping where thou didst not sow, and gathering where thou didst not scatter;</VERS>\r\n      <VERS vnumber=\"25\">and I was afraid, and went away and hid thy talent in the earth: lo, thou hast thine own.</VERS>\r\n      <VERS vnumber=\"26\">But his lord answered and said unto him, Thou wicked and slothful servant, thou knewest that I reap where I sowed not, and gather where I did not scatter;</VERS>\r\n      <VERS vnumber=\"27\">thou oughtest therefore to have put my money to the bankers, and at my coming I should have received back mine own with interest.</VERS>\r\n      <VERS vnumber=\"28\">Take ye away therefore the talent from him, and give it unto him that hath the ten talents.</VERS>\r\n      <VERS vnumber=\"29\">For unto every one that hath shall be given, and he shall have abundance: but from him that hath not, even that which he hath shall be taken away.</VERS>\r\n      <VERS vnumber=\"30\">And cast ye out the unprofitable servant into the outer darkness: there shall be the weeping and the gnashing of teeth.</VERS>\r\n      <VERS vnumber=\"31\">But when the Son of man shall come in his glory, and all the angels with him, then shall he sit on the throne of his glory:</VERS>\r\n      <VERS vnumber=\"32\">and before him shall be gathered all the nations: and he shall separate them one from another, as the shepherd separateth the sheep from the goats;</VERS>\r\n      <VERS vnumber=\"33\">and he shall set the sheep on his right hand, but the goats on the left.</VERS>\r\n      <VERS vnumber=\"34\">Then 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:</VERS>\r\n      <VERS vnumber=\"35\">for I was hungry, and ye gave me to eat; I was thirsty, and ye gave me drink; I was a stranger, and ye took me in;</VERS>\r\n      <VERS vnumber=\"36\">naked, and ye clothed me; I was sick, and ye visited me; I was in prison, and ye came unto me.</VERS>\r\n      <VERS vnumber=\"37\">Then shall the righteous answer him, saying, Lord, when saw we thee hungry, and fed thee? or athirst, and gave thee drink?</VERS>\r\n      <VERS vnumber=\"38\">And when saw we thee a stranger, and took thee in? or naked, and clothed thee?</VERS>\r\n      <VERS vnumber=\"39\">And when saw we thee sick, or in prison, and came unto thee?</VERS>\r\n      <VERS vnumber=\"40\">And the King shall answer and say unto them, Verily I say unto you, Inasmuch as ye did it unto one of these my brethren, [even] these least, ye did it unto me.</VERS>\r\n      <VERS vnumber=\"41\">Then shall he say also unto them on the left hand, Depart from me, ye cursed, into the eternal fire which is prepared for the devil and his angels:</VERS>\r\n      <VERS vnumber=\"42\">for I was hungry, and ye did not give me to eat; I was thirsty, and ye gave me no drink;</VERS>\r\n      <VERS vnumber=\"43\">I was a stranger, and ye took me not in; naked, and ye clothed me not; sick, and in prison, and ye visited me not.</VERS>\r\n      <VERS vnumber=\"44\">Then shall they also answer, saying, Lord, when saw we thee hungry, or athirst, or a stranger, or naked, or sick, or in prison, and did not minister unto thee?</VERS>\r\n      <VERS vnumber=\"45\">Then shall he answer them, saying, Verily I say unto you, Inasmuch as ye did it not unto one of these least, ye did it not unto me.</VERS>\r\n      <VERS vnumber=\"46\">And these shall go away into eternal punishment: but the righteous into eternal life.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"26\">\r\n      <VERS vnumber=\"1\">And it came to pass, when Jesus had finished all these words, he said unto his disciples,</VERS>\r\n      <VERS vnumber=\"2\">Ye know that after two days the passover cometh, and the Son of man is delivered up to be crucified.</VERS>\r\n      <VERS vnumber=\"3\">Then were gathered together the chief priests, and the elders of the people, unto the court of the high priest, who was called Caiaphas;</VERS>\r\n      <VERS vnumber=\"4\">and they took counsel together that they might take Jesus by subtlety, and kill him.</VERS>\r\n      <VERS vnumber=\"5\">But they said, Not during the feast, lest a tumult arise among people.</VERS>\r\n      <VERS vnumber=\"6\">Now when Jesus was in Bethany, in the house of Simon the leper,</VERS>\r\n      <VERS vnumber=\"7\">there came unto him a woman having an alabaster cruse of exceeding precious ointment, and she poured it upon his head, as he sat at meat.</VERS>\r\n      <VERS vnumber=\"8\">But when the disciples saw it, they had indignation, saying, To what purpose is this waste?</VERS>\r\n      <VERS vnumber=\"9\">For this [ointment] might have been sold for much, and given to the poor.</VERS>\r\n      <VERS vnumber=\"10\">But Jesus perceiving it said unto them, Why trouble ye the woman? for she hath wrought a good work upon me.</VERS>\r\n      <VERS vnumber=\"11\">For ye have the poor always with you; but me ye have not always.</VERS>\r\n      <VERS vnumber=\"12\">For in that she poured this ointment upon my body, she did it to prepare me for burial.</VERS>\r\n      <VERS vnumber=\"13\">Verily I say unto you, Wheresoever this gospel shall be preached in the whole world, that also which this woman hath done shall be spoken of for a memorial of her.</VERS>\r\n      <VERS vnumber=\"14\">Then one of the twelve, who was called Judas Iscariot, went unto the chief priests,</VERS>\r\n      <VERS vnumber=\"15\">and said, What are ye willing to give me, and I will deliver him unto you? And they weighed unto him thirty pieces of silver.</VERS>\r\n      <VERS vnumber=\"16\">And from that time he sought opportunity to deliver him [unto them.]</VERS>\r\n      <VERS vnumber=\"17\">Now on the first [day] of unleavened bread the disciples came to Jesus, saying, Where wilt thou that we make ready for thee to eat the passover?</VERS>\r\n      <VERS vnumber=\"18\">And he said, Go into the city to such a man, and say unto him, The Teacher saith, My time is at hand; I keep the passover at thy house with my disciples.</VERS>\r\n      <VERS vnumber=\"19\">And the disciples did as Jesus appointed them; and they made ready the passover.</VERS>\r\n      <VERS vnumber=\"20\">Now when even was come, he was sitting at meat with the twelve disciples;</VERS>\r\n      <VERS vnumber=\"21\">and as they were eating, he said, Verily I say unto you, that one of you shall betray me.</VERS>\r\n      <VERS vnumber=\"22\">And they were exceeding sorrowful, and began to say unto him every one, Is it I, Lord?</VERS>\r\n      <VERS vnumber=\"23\">And he answered and said, He that dipped his hand with me in the dish, the same shall betray me.</VERS>\r\n      <VERS vnumber=\"24\">The Son of man goeth, even as it is written of him: but woe unto that man through whom the Son of man is betrayed! good were it for that man if he had not been born.</VERS>\r\n      <VERS vnumber=\"25\">And Judas, who betrayed him, answered and said, Is it I, Rabbi? He saith unto him, Thou hast said.</VERS>\r\n      <VERS vnumber=\"26\">And as they were eating, Jesus took bread, and blessed, and brake it; and he gave to the disciples, and said, Take, eat; this is my body.</VERS>\r\n      <VERS vnumber=\"27\">And he took a cup, and gave thanks, and gave to them, saying, Drink ye all of it;</VERS>\r\n      <VERS vnumber=\"28\">for this is my blood of the covenant, which is poured out for many unto remission of sins.</VERS>\r\n      <VERS vnumber=\"29\">But I say unto you, I shall not drink henceforth of this fruit of the vine, until that day when I drink it new with you in my Father`s kingdom.</VERS>\r\n      <VERS vnumber=\"30\">And when they had sung a hymn, they went out unto the mount of Olives.</VERS>\r\n      <VERS vnumber=\"31\">Then saith Jesus unto them, All ye shall be offended in me this night: for it is written, I will smite the shepherd, and the sheep of the flock shall be scattered abroad.</VERS>\r\n      <VERS vnumber=\"32\">But after I am raised up, I will go before you into Galilee.</VERS>\r\n      <VERS vnumber=\"33\">But Peter answered and said unto him, If all shall be offended in thee, I will never be offended.</VERS>\r\n      <VERS vnumber=\"34\">Jesus said unto him, Verily I say unto thee, that this night, before the cock crow, thou shalt deny me thrice.</VERS>\r\n      <VERS vnumber=\"35\">Peter saith unto him, Even if I must die with thee, [yet] will I not deny thee. Likewise also said all the disciples.</VERS>\r\n      <VERS vnumber=\"36\">Then cometh Jesus with them unto a place called Gethsemane, and saith unto his disciples, Sit ye here, while I go yonder and pray.</VERS>\r\n      <VERS vnumber=\"37\">And he took with him Peter and the two sons of Zebedee, and began to be sorrowful and sore troubled.</VERS>\r\n      <VERS vnumber=\"38\">Then saith he unto them, My soul is exceeding sorrowful, even unto death: abide ye here, and watch with me.</VERS>\r\n      <VERS vnumber=\"39\">And he went forward a little, and fell on his face, and prayed, saying, My Father, if it be possible, let this cup pass away from me: nevertheless, not as I will, but as thou wilt.</VERS>\r\n      <VERS vnumber=\"40\">And he cometh unto the disciples, and findeth them sleeping, and saith unto Peter, What, could ye not watch with me one hour?</VERS>\r\n      <VERS vnumber=\"41\">Watch and pray, that ye enter not into temptation: the spirit indeed is willing, but the flesh is weak.</VERS>\r\n      <VERS vnumber=\"42\">Again a second time he went away, and prayed, saying, My Father, if this cannot pass away, except I drink it, thy will be done.</VERS>\r\n      <VERS vnumber=\"43\">And he came again and found them sleeping, for their eyes were heavy.</VERS>\r\n      <VERS vnumber=\"44\">And he left them again, and went away, and prayed a third time, saying again the same words.</VERS>\r\n      <VERS vnumber=\"45\">Then cometh he to the 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.</VERS>\r\n      <VERS vnumber=\"46\">Arise, let us be going: behold, he is at hand that betrayeth me.</VERS>\r\n      <VERS vnumber=\"47\">And while he yet spake, lo, Judas, one of the twelve, came, and with him a great multitude with swords and staves, from the chief priest and elders of the people.</VERS>\r\n      <VERS vnumber=\"48\">Now he that betrayed him gave them a sign, saying, Whomsoever I shall kiss, that is he: take him.</VERS>\r\n      <VERS vnumber=\"49\">And straightway he came to Jesus, and said, Hail, Rabbi; and kissed him.</VERS>\r\n      <VERS vnumber=\"50\">And Jesus said unto him, Friend, [do] that for which thou art come. Then they came and laid hands on Jesus, and took him.</VERS>\r\n      <VERS vnumber=\"51\">And behold, one of them that were with Jesus stretched out his hand, and drew his sword, and smote the servant of the high priest, and struck off his ear.</VERS>\r\n      <VERS vnumber=\"52\">Then saith Jesus unto him, Put up again thy sword into its place: for all they that take the sword shall perish with the sword.</VERS>\r\n      <VERS vnumber=\"53\">Or thinkest thou that I cannot beseech my Father, and he shall even now send me more than twelve legions of angels?</VERS>\r\n      <VERS vnumber=\"54\">How then should the scriptures be fulfilled that thus it must be?</VERS>\r\n      <VERS vnumber=\"55\">In that hour said Jesus to the multitudes, Are ye come out as against a robber with swords and staves to seize me? I sat daily in the temple teaching, and ye took me not.</VERS>\r\n      <VERS vnumber=\"56\">But all this is come to pass, that the scriptures of the prophets might be fulfilled. Then all the disciples left him, and fled.</VERS>\r\n      <VERS vnumber=\"57\">And they that had taken Jesus led him away to [the house of] Caiaphas the high priest, where the scribes and the elders were gathered together.</VERS>\r\n      <VERS vnumber=\"58\">But Peter followed him afar off, unto the court of the high priest, and entered in, and sat with the officers, to see the end.</VERS>\r\n      <VERS vnumber=\"59\">Now the chief priests and the whole council sought false witness against Jesus, that they might put him to death;</VERS>\r\n      <VERS vnumber=\"60\">and they found it not, though many false witnesses came. But afterward came two,</VERS>\r\n      <VERS vnumber=\"61\">and said, This man said, I am able to destroy the temple of God, and to build it in three days.</VERS>\r\n      <VERS vnumber=\"62\">And the high priest stood up, and said unto him, Answerest thou nothing? what is it which these witness against thee?</VERS>\r\n      <VERS vnumber=\"63\">But Jesus held his peace. And the high priest said unto him, I adjure thee by the living God, that thou tell us whether thou art the Christ, the Son of God.</VERS>\r\n      <VERS vnumber=\"64\">Jesus said unto him, Thou hast said: nevertheless I say unto you, Henceforth ye shall see the Son of man sitting at the right hand of Power, and coming on the clouds of heaven.</VERS>\r\n      <VERS vnumber=\"65\">Then the high priest rent his garments, saying, He hath spoken blasphemy: what further need have we of witnesses? behold, now ye have heard the blasphemy:</VERS>\r\n      <VERS vnumber=\"66\">what think ye? They answered and said, He is worthy of death.</VERS>\r\n      <VERS vnumber=\"67\">Then did they spit in his face and buffet him: and some smote him with the palms of their hands,</VERS>\r\n      <VERS vnumber=\"68\">saying, Prophesy unto us, thou Christ: who is he that struck thee?</VERS>\r\n      <VERS vnumber=\"69\">Now Peter was sitting without in the court: and a maid came unto him, saying, Thou also wast with Jesus the Galilaean.</VERS>\r\n      <VERS vnumber=\"70\">But he denied before them all, saying, I know not what thou sayest.</VERS>\r\n      <VERS vnumber=\"71\">And when he was gone out into the porch, another [maid] saw him, and saith unto them that were there, This man also was with Jesus of Nazareth.</VERS>\r\n      <VERS vnumber=\"72\">And again he denied with an oath, I know not the man.</VERS>\r\n      <VERS vnumber=\"73\">And after a little while they that stood by came and said to Peter, Of a truth thou also art [one] of them; for thy speech maketh thee known.</VERS>\r\n      <VERS vnumber=\"74\">Then began he to curse and to swear, I know not the man. And straightway the cock crew.</VERS>\r\n      <VERS vnumber=\"75\">And Peter remembered the word which Jesus had said, Before the cock crow, thou shalt deny me thrice. And he went out, and wept bitterly.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"27\">\r\n      <VERS vnumber=\"1\">Now when morning was come, all the chief priests and the elders of the people took counsel against Jesus to put him to death:</VERS>\r\n      <VERS vnumber=\"2\">and they bound him, and led him away, and delivered him up to Pilate the governor.</VERS>\r\n      <VERS vnumber=\"3\">Then Judas, who betrayed him, when he saw that he was condemned, repented himself, and brought back the thirty pieces of silver to the chief priests and elders,</VERS>\r\n      <VERS vnumber=\"4\">saying, I have sinned in that I betrayed innocent blood. But they said, What is that to us? see thou [to it].</VERS>\r\n      <VERS vnumber=\"5\">And he cast down the pieces of silver into the sanctuary, and departed; and he went away and hanged himself.</VERS>\r\n      <VERS vnumber=\"6\">And the chief priests took the pieces of silver, and said, It is not lawful to put them into the treasury, since it is the price of blood.</VERS>\r\n      <VERS vnumber=\"7\">And they took counsel, and bought with them the potter`s field, to bury strangers in.</VERS>\r\n      <VERS vnumber=\"8\">Wherefore that field was called, the field of blood, unto this day.</VERS>\r\n      <VERS vnumber=\"9\">Then was fulfilled that which was spoken through Jeremiah the prophet, saying, And they took the thirty pieces of silver, the price of him that was priced, whom [certain] of the children of Israel did price;</VERS>\r\n      <VERS vnumber=\"10\">and they gave them for the potter`s field, as the Lord appointed me.</VERS>\r\n      <VERS vnumber=\"11\">Now 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.</VERS>\r\n      <VERS vnumber=\"12\">And when he was accused by the chief priests and elders, he answered nothing.</VERS>\r\n      <VERS vnumber=\"13\">Then saith Pilate unto him, Hearest thou not how many things they witness against thee?</VERS>\r\n      <VERS vnumber=\"14\">And he gave him no answer, not even to one word: insomuch that the governor marvelled greatly.</VERS>\r\n      <VERS vnumber=\"15\">Now at the feast the governor was wont to release unto the multitude one prisoner, whom they would.</VERS>\r\n      <VERS vnumber=\"16\">And they had then a notable prisoner, called Barabbas.</VERS>\r\n      <VERS vnumber=\"17\">When therefore they were gathered together, Pilate said unto them, Whom will ye that I release unto you? Barabbas, or Jesus who is called Christ?</VERS>\r\n      <VERS vnumber=\"18\">For he knew that for envy they had delivered him up.</VERS>\r\n      <VERS vnumber=\"19\">And while he was sitting on the judgment-seat, his wife sent unto him, saying, Have thou nothing to do with that righteous man; for I have suffered many things this day in a dream because of him.</VERS>\r\n      <VERS vnumber=\"20\">Now the chief priests and the elders persuaded the multitudes that they should ask for Barabbas, and destroy Jesus.</VERS>\r\n      <VERS vnumber=\"21\">But the governor answered and said unto them, Which of the two will ye that I release unto you? And they said, Barabbas.</VERS>\r\n      <VERS vnumber=\"22\">Pilate saith unto them, What then shall I do unto Jesus who is called Christ? They all say, Let him be crucified.</VERS>\r\n      <VERS vnumber=\"23\">And he said, Why, what evil hath he done? But they cried out exceedingly, saying, Let him be crucified.</VERS>\r\n      <VERS vnumber=\"24\">So when Pilate saw that he prevailed nothing, but rather that a tumult was arising, he took water, and washed his hands before the multitude, saying, I am innocent of the blood of this righteous man; see ye [to it].</VERS>\r\n      <VERS vnumber=\"25\">And all the people answered and said, His blood [be] on us, and on our children.</VERS>\r\n      <VERS vnumber=\"26\">Then released he unto them Barabbas; but Jesus he scourged and delivered to be crucified.</VERS>\r\n      <VERS vnumber=\"27\">Then the soldiers of the governor took Jesus into the Praetorium, and gathered unto him the whole band.</VERS>\r\n      <VERS vnumber=\"28\">And they stripped him, and put on him a scarlet robe.</VERS>\r\n      <VERS vnumber=\"29\">And they platted a crown of thorns and put it upon his head, and a reed in his right hand; and they kneeled down before him, and mocked him, saying, Hail, King of the Jews!</VERS>\r\n      <VERS vnumber=\"30\">And they spat upon him, and took the reed and smote him on the head.</VERS>\r\n      <VERS vnumber=\"31\">And when they had mocked him, they took off from him the robe, and put on him his garments, and led him away to crucify him.</VERS>\r\n      <VERS vnumber=\"32\">And as they came out, they found a man of Cyrene, Simon by name: him they compelled to go [with them], that he might bear his cross.</VERS>\r\n      <VERS vnumber=\"33\">And they were come unto a place called Golgotha, that is to say, The place of a skull,</VERS>\r\n      <VERS vnumber=\"34\">they gave him wine to drink mingled with gall: and when he had tasted it, he would not drink.</VERS>\r\n      <VERS vnumber=\"35\">And when they had crucified him, they parted his garments among them, casting lots;</VERS>\r\n      <VERS vnumber=\"36\">and they sat and watched him there.</VERS>\r\n      <VERS vnumber=\"37\">And they set up over his head his accusation written, THIS IS JESUS THE KING OF THE JEWS.</VERS>\r\n      <VERS vnumber=\"38\">Then are there crucified with him two robbers, one on the right hand and one on the left.</VERS>\r\n      <VERS vnumber=\"39\">And they that passed by railed on him, wagging their heads,</VERS>\r\n      <VERS vnumber=\"40\">and saying, Thou that destroyest the temple, and buildest it in three days, save thyself: if thou art the Son of God, come down from the cross.</VERS>\r\n      <VERS vnumber=\"41\">In like manner also the chief priests mocking [him], with the scribes and elders, said,</VERS>\r\n      <VERS vnumber=\"42\">He saved others; himself he cannot save. He is the King of Israel; let him now come down from the cross, and we will believe on him.</VERS>\r\n      <VERS vnumber=\"43\">He trusteth on God; let him deliver him now, if he desireth him: for he said, I am the Son of God.</VERS>\r\n      <VERS vnumber=\"44\">And the robbers also that were crucified with him cast upon him the same reproach.</VERS>\r\n      <VERS vnumber=\"45\">Now from the sixth hour there was darkness over all the land until the ninth hour.</VERS>\r\n      <VERS vnumber=\"46\">And about the ninth hour Jesus cried with a loud voice, saying, Eli, Eli, lama sabachthani? that is, My God, my God, why hast thou forsaken me?</VERS>\r\n      <VERS vnumber=\"47\">And some of them stood there, when they heard it, said, This man calleth Elijah.</VERS>\r\n      <VERS vnumber=\"48\">And straightway one of them ran, and took a sponge, and filled it with vinegar, and put it on a reed, and gave him to drink.</VERS>\r\n      <VERS vnumber=\"49\">And the rest said, Let be; let us see whether Elijah cometh to save him.</VERS>\r\n      <VERS vnumber=\"50\">And Jesus cried again with a loud voice, and yielded up his spirit.</VERS>\r\n      <VERS vnumber=\"51\">And behold, the veil of the temple was rent in two from the top to the bottom; and the earth did quake; and the rocks were rent;</VERS>\r\n      <VERS vnumber=\"52\">and the tombs were opened; and many bodies of the saints that had fallen asleep were raised;</VERS>\r\n      <VERS vnumber=\"53\">and coming forth out of the tombs after his resurrection they entered into the holy city and appeared unto many.</VERS>\r\n      <VERS vnumber=\"54\">Now the centurion, and they that were with him watching Jesus, when they saw the earthquake, and the things that were done, feared exceedingly, saying, Truly this was the Son of God.</VERS>\r\n      <VERS vnumber=\"55\">And many women were there beholding from afar, who had followed Jesus from Galilee, ministering unto him:</VERS>\r\n      <VERS vnumber=\"56\">among whom was Mary Magdalene, and Mary the mother of James and Joses, and the mother of the sons of Zebedee.</VERS>\r\n      <VERS vnumber=\"57\">And when even was come, there came a rich man from Arimathaea, named Joseph, who also himself was Jesus` disciple:</VERS>\r\n      <VERS vnumber=\"58\">this man went to Pilate, and asked for the body of Jesus. Then Pilate commanded it to be given up.</VERS>\r\n      <VERS vnumber=\"59\">And Joseph took the body, and wrapped it in a clean linen cloth,</VERS>\r\n      <VERS vnumber=\"60\">and 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 tomb, and departed.</VERS>\r\n      <VERS vnumber=\"61\">And Mary Magdalene was there, and the other Mary, sitting over against the sepulchre.</VERS>\r\n      <VERS vnumber=\"62\">Now on the morrow, which is [the day] after the Preparation, the chief priests and the Pharisees were gathered together unto Pilate,</VERS>\r\n      <VERS vnumber=\"63\">saying, Sir, we remember that that deceiver said while he was yet alive, After three days I rise again.</VERS>\r\n      <VERS vnumber=\"64\">Command therefore that the sepulchre be made sure until the third day, lest haply his disciples come and steal him away, and say unto the people, He is risen from the dead: and the last error will be worse than the first.</VERS>\r\n      <VERS vnumber=\"65\">Pilate said unto them, Ye have a guard: go, make it [as] sure as ye can.</VERS>\r\n      <VERS vnumber=\"66\">So they went, and made the sepulchre sure, sealing the stone, the guard being with them.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"28\">\r\n      <VERS vnumber=\"1\">Now late on the sabbath day, as it began to dawn toward the first [day] of the week, came Mary Magdalene and the other Mary to see the sepulchre.</VERS>\r\n      <VERS vnumber=\"2\">And behold, there was a great earthquake; for an angel of the Lord descended from heaven, and came and rolled away the stone, and sat upon it.</VERS>\r\n      <VERS vnumber=\"3\">His appearance was as lightning, and his raiment white as snow:</VERS>\r\n      <VERS vnumber=\"4\">and for fear of him the watchers did quake, and became as dead men.</VERS>\r\n      <VERS vnumber=\"5\">And the angel answered and said unto the women, Fear not ye; for I know that ye seek Jesus, who hath been crucified.</VERS>\r\n      <VERS vnumber=\"6\">He is not here; for he is risen, even as he said. Come, see the place where the Lord lay.</VERS>\r\n      <VERS vnumber=\"7\">And go quickly, and tell his disciples, He is risen from the dead; and lo, he goeth before you into Galilee; there shall ye see him: lo, I have told you.</VERS>\r\n      <VERS vnumber=\"8\">And they departed quickly from the tomb with fear and great joy, and ran to bring his disciples word.</VERS>\r\n      <VERS vnumber=\"9\">And behold, Jesus met them, saying, All hail. And they came and took hold of his feet, and worshipped him.</VERS>\r\n      <VERS vnumber=\"10\">Then saith Jesus unto them, Fear not: go tell my brethren that they depart into Galilee, and there shall they see me.</VERS>\r\n      <VERS vnumber=\"11\">Now while they were going, behold, some of the guard came into the city, and told unto the chief priests all the things that were come to pass.</VERS>\r\n      <VERS vnumber=\"12\">And when they were assembled with the elders, and had taken counsel, they gave much money unto the soldiers,</VERS>\r\n      <VERS vnumber=\"13\">saying, Say ye, His disciples came by night, and stole him away while we slept.</VERS>\r\n      <VERS vnumber=\"14\">And if this come to the governor`s ears, we will persuade him, and rid you of care.</VERS>\r\n      <VERS vnumber=\"15\">So they took the money, and did as they were taught: and this saying was spread abroad among the Jews, [and continueth] until this day.</VERS>\r\n      <VERS vnumber=\"16\">But the eleven disciples went into Galilee, unto the mountain where Jesus had appointed them.</VERS>\r\n      <VERS vnumber=\"17\">And when they saw him, they worshipped [him]; but some doubted.</VERS>\r\n      <VERS vnumber=\"18\">And Jesus came to them and spake unto them, saying, All authority hath been given unto me in heaven and on earth.</VERS>\r\n      <VERS vnumber=\"19\">Go ye therefore, and make disciples of all the nations, baptizing them into the name of the Father and of the Son and of the Holy Spirit:</VERS>\r\n      <VERS vnumber=\"20\">teaching them to observe all things whatsoever I commanded you: and lo, I am with you always, even unto the end of the world.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"41\" bname=\"Mark\" bsname=\"Mark\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">The beginning of the gospel of Jesus Christ, the Son of God.</VERS>\r\n      <VERS vnumber=\"2\">Even as it is written in Isaiah the prophet, Behold, I send my messenger before thy face, Who shall prepare thy way.</VERS>\r\n      <VERS vnumber=\"3\">The voice of one crying in the wilderness, Make ye ready the way of the Lord, Make his paths straight;</VERS>\r\n      <VERS vnumber=\"4\">John came, who baptized in the wilderness and preached the baptism of repentance unto remission of sins.</VERS>\r\n      <VERS vnumber=\"5\">And there went out unto him all the country of Judaea, and all they of Jerusalem; And they were baptized of him in the river Jordan, confessing their sins.</VERS>\r\n      <VERS vnumber=\"6\">And John was clothed with camel`s hair, and [had] a leathern girdle about his loins, and did eat locusts and wild honey.</VERS>\r\n      <VERS vnumber=\"7\">And he preached, saying, There cometh after me he that is mightier than I, the latchet of whose shoes I am not worthy to stoop down and unloose.</VERS>\r\n      <VERS vnumber=\"8\">I baptized you in water; But he shall baptize you in the Holy Spirit.</VERS>\r\n      <VERS vnumber=\"9\">And it came to pass in those days, that Jesus came from Nazareth of Galilee, and was baptized of John in the Jordan.</VERS>\r\n      <VERS vnumber=\"10\">And straightway coming up out of the water, he saw the heavens rent asunder, and the Spirit as a dove descending upon him:</VERS>\r\n      <VERS vnumber=\"11\">And a voice came out of the heavens, Thou art my beloved Son, in thee I am well pleased.</VERS>\r\n      <VERS vnumber=\"12\">And straightway the Spirit driveth him forth into the wilderness.</VERS>\r\n      <VERS vnumber=\"13\">And he was in the wilderness forty days tempted of Satan; And he was with the wild beasts; And the angels ministered unto him.</VERS>\r\n      <VERS vnumber=\"14\">Now after John was delivered up, Jesus came into Galilee, preaching the gospel of God,</VERS>\r\n      <VERS vnumber=\"15\">and saying, The time is fulfilled, and the kingdom of God is at hand: repent ye, and believe in the gospel.</VERS>\r\n      <VERS vnumber=\"16\">And passing along by the sea of Galilee, he saw Simon and Andrew the brother of Simon casting a net in the sea; for they were fishers.</VERS>\r\n      <VERS vnumber=\"17\">And Jesus said unto them, Come ye after me, and I will make you to become fishers of men.</VERS>\r\n      <VERS vnumber=\"18\">And straightway they left the nets, and followed him.</VERS>\r\n      <VERS vnumber=\"19\">And going on a little further, he saw James the [son] of Zebedee, and John his brother, who also were in the boat mending the nets.</VERS>\r\n      <VERS vnumber=\"20\">And straightway he called them: and they left their father Zebedee in the boat with the hired servants, and went after him.</VERS>\r\n      <VERS vnumber=\"21\">And they go into Capernaum; and straightway on the sabbath day he entered into the synagogue and taught.</VERS>\r\n      <VERS vnumber=\"22\">And they were astonished at his teaching: For he taught them as having authority, and not as the scribes.</VERS>\r\n      <VERS vnumber=\"23\">And straightway there was in their synagogue a man with an unclean spirit; and he cried out,</VERS>\r\n      <VERS vnumber=\"24\">saying, What have we to do with thee, Jesus thou Nazarene? art thou come to destroy us? I know thee who thou art, the Holy One of God.</VERS>\r\n      <VERS vnumber=\"25\">And Jesus rebuked him, saying, Hold thy peace, and come out of him.</VERS>\r\n      <VERS vnumber=\"26\">And the unclean spirit, tearing him and crying with a loud voice, came out of him.</VERS>\r\n      <VERS vnumber=\"27\">And they were all amazed, insomuch that they questioned among themselves, saying, What is this? a new teaching! with authority he commandeth even the unclean spirits, and they obey him.</VERS>\r\n      <VERS vnumber=\"28\">And the report of him went out straightway everywhere into all the region of Galilee round about.</VERS>\r\n      <VERS vnumber=\"29\">And straightway, when they were come out of the synagogue, they came into the house of Simon and Andrew, with James and John.</VERS>\r\n      <VERS vnumber=\"30\">Now Simon`s wife`s mother lay sick of a fever; and straightway they tell him of her:</VERS>\r\n      <VERS vnumber=\"31\">and he came and took her by the hand, and raised her up; and the fever left her, and she ministered unto them.</VERS>\r\n      <VERS vnumber=\"32\">And at even, when the sun did set, they brought unto him all that were sick, and them that were possessed with demons.</VERS>\r\n      <VERS vnumber=\"33\">And all the city was gathered together at the door.</VERS>\r\n      <VERS vnumber=\"34\">And he healed many that were sick with divers diseases, and cast out many demons; and he suffered not the demons to speak, because they knew him.</VERS>\r\n      <VERS vnumber=\"35\">And in the morning, a great while before day, he rose up and went out, and departed into a desert place, and there prayed.</VERS>\r\n      <VERS vnumber=\"36\">And Simon and they that were with him followed after him;</VERS>\r\n      <VERS vnumber=\"37\">and they found him, and say unto him, All are seeking thee.</VERS>\r\n      <VERS vnumber=\"38\">And he saith unto them, Let us go elsewhere into the next towns, that I may preach there also; for to this end came I forth.</VERS>\r\n      <VERS vnumber=\"39\">And he went into their synagogues throughout all Galilee, preaching and casting out demons.</VERS>\r\n      <VERS vnumber=\"40\">And there cometh to him a leper, beseeching him, and kneeling down to him, and saying unto him, If thou wilt, thou canst make me clean.</VERS>\r\n      <VERS vnumber=\"41\">And being moved with compassion, he stretched forth his hand, and touched him, and saith unto him, I will; be thou made clean.</VERS>\r\n      <VERS vnumber=\"42\">And straightway the leprosy departed from him, and he was made clean.</VERS>\r\n      <VERS vnumber=\"43\">And he strictly charged him, and straightway sent him out,</VERS>\r\n      <VERS vnumber=\"44\">and saith unto him, See thou say nothing to any man: but go show thyself to the priest, and offer for thy cleansing the things which Moses commanded, for a testimony unto them.</VERS>\r\n      <VERS vnumber=\"45\">But he went out, and began to publish it much, and to spread abroad the matter, insomuch that Jesus could no more openly enter into a city, but was without in desert places: and they came to him from every quarter.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">And when he entered again into Capernaum after some days, it was noised that he was in the house.</VERS>\r\n      <VERS vnumber=\"2\">And many were gathered together, so that there was no longer room [for them], no, not even about the door: and he spake the word unto them.</VERS>\r\n      <VERS vnumber=\"3\">And they come, bringing unto him a man sick of the palsy, borne of four.</VERS>\r\n      <VERS vnumber=\"4\">And when they could not come nigh unto him for the crowd, they uncovered the roof where he was: and when they had broken it up, they let down the bed whereon the sick of the palsy lay.</VERS>\r\n      <VERS vnumber=\"5\">And Jesus seeing their faith saith unto the sick of the palsy, Son, thy sins are forgiven.</VERS>\r\n      <VERS vnumber=\"6\">But there were certain of the scribes sitting there, and reasoning in their hearts,</VERS>\r\n      <VERS vnumber=\"7\">Why doth this man thus speak? he blasphemeth: who can forgive sins but one, [even] God?</VERS>\r\n      <VERS vnumber=\"8\">And straightway Jesus, perceiving in his spirit that they so reasoned within themselves, saith unto them, Why reason ye these things in your hearts?</VERS>\r\n      <VERS vnumber=\"9\">Which is easier, to say to the sick of the palsy, Thy sins are forgiven; or to say, Arise, and take up thy bed, and walk?</VERS>\r\n      <VERS vnumber=\"10\">But that ye may know that the Son of man hath authority on earth to forgive sins (he saith to the sick of the palsy),</VERS>\r\n      <VERS vnumber=\"11\">I say unto thee, Arise, take up thy bed, and go unto thy house.</VERS>\r\n      <VERS vnumber=\"12\">And he arose, and straightway 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.</VERS>\r\n      <VERS vnumber=\"13\">And he went forth again by the sea side; and all the multitude resorted unto him, and he taught them.</VERS>\r\n      <VERS vnumber=\"14\">And as he passed by, he saw Levi the [son] of Alphaeus sitting at the place of toll, and he saith unto him, Follow me. And he arose and followed him.</VERS>\r\n      <VERS vnumber=\"15\">And it came to pass, that he was sitting at meat in his house, and many publicans and sinners sat down with Jesus and his disciples: for there were many, and they followed him.</VERS>\r\n      <VERS vnumber=\"16\">And the scribes of the Pharisees, when they saw that he was eating with the sinners and publicans, said unto his disciples, [How is it] that he eateth and drinketh with publicans and sinners?</VERS>\r\n      <VERS vnumber=\"17\">And when Jesus heard it, he saith unto them, They that are whole have no need of a physician, but they that are sick: I came not to call the righteous, but sinners.</VERS>\r\n      <VERS vnumber=\"18\">And John`s disciples and the Pharisees were fasting: and they come and say unto him, Why do John`s disciples and the disciples of the Pharisees fast, but thy disciples fast not?</VERS>\r\n      <VERS vnumber=\"19\">And Jesus said unto them, Can the sons of the bridechamber fast, while the bridegroom is with them? as long as they have the bridegroom with them, they cannot fast.</VERS>\r\n      <VERS vnumber=\"20\">But the days will come, when the bridegroom shall be taken away from them, and then will they fast in that day.</VERS>\r\n      <VERS vnumber=\"21\">No man seweth a piece of undressed cloth on an old garment: else that which should fill it up taketh from it, the new from the old, and a worse rent is made.</VERS>\r\n      <VERS vnumber=\"22\">And no man putteth new wine into old wineskins; else the wine will burst the skins, and the wine perisheth, and the skins: but [they put] new wine into fresh wine-skins.</VERS>\r\n      <VERS vnumber=\"23\">And it came to pass, that he was going on the sabbath day through the grainfields; and his disciples began, as they went, to pluck the ears.</VERS>\r\n      <VERS vnumber=\"24\">And the Pharisees said unto him, Behold, why do they on the sabbath day that which is not lawful?</VERS>\r\n      <VERS vnumber=\"25\">And he said unto them, Did ye never read what David did, when he had need, and was hungry, he, and they that were with him?</VERS>\r\n      <VERS vnumber=\"26\">How he entered into the house of God when Abiathar was high priest, and ate the showbread, which it is not lawful to eat save for the priests, and gave also to them that were with him?</VERS>\r\n      <VERS vnumber=\"27\">And he said unto them, The sabbath was made for man, and not man for the sabbath:</VERS>\r\n      <VERS vnumber=\"28\">so that the Son of man is lord even of the sabbath.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">And he entered again into the synagogue; and there was a man there who had his hand withered.</VERS>\r\n      <VERS vnumber=\"2\">And they watched him, whether he would heal him on the sabbath day; that they might accuse him.</VERS>\r\n      <VERS vnumber=\"3\">And he saith unto the man that had his hand withered, Stand forth.</VERS>\r\n      <VERS vnumber=\"4\">And he saith unto them, Is it lawful on the sabbath day to do good, or to do harm? to save a life, or to kill? But they held their peace.</VERS>\r\n      <VERS vnumber=\"5\">And when he had looked round about on them with anger, being grieved at the hardening of their heart, he saith unto the man, Stretch forth thy hand. And he stretched it forth; and his hand was restored.</VERS>\r\n      <VERS vnumber=\"6\">And the Pharisees went out, and straightway with the Herodians took counsel against him, how they might destroy him.</VERS>\r\n      <VERS vnumber=\"7\">And Jesus with his disciples withdrew to the sea: and a great multitude from Galilee followed; and from Judaea,</VERS>\r\n      <VERS vnumber=\"8\">and from Jerusalem, and from Idumaea, and beyond the Jordan, and about Tyre and Sidon, a great multitude, hearing what great things he did, came unto him.</VERS>\r\n      <VERS vnumber=\"9\">And he spake to his disciples, that a little boat should wait on him because of the crowd, lest they should throng him:</VERS>\r\n      <VERS vnumber=\"10\">for he had healed many; insomuch that as many as had plagues pressed upon him that they might touch him.</VERS>\r\n      <VERS vnumber=\"11\">And the unclean spirits, whensoever they beheld him, fell down before him, and cried, saying, Thou art the Son of God.</VERS>\r\n      <VERS vnumber=\"12\">And he charged them much that they should not make him known.</VERS>\r\n      <VERS vnumber=\"13\">And he goeth up into the mountain, and calleth unto him whom he himself would; and they went unto him.</VERS>\r\n      <VERS vnumber=\"14\">And he appointed twelve, that they might be with him, and that he might send them forth to preach,</VERS>\r\n      <VERS vnumber=\"15\">and to have authority to cast out demons:</VERS>\r\n      <VERS vnumber=\"16\">and Simon he surnamed Peter;</VERS>\r\n      <VERS vnumber=\"17\">and James the [son] of Zebedee, and John the brother of James; and them he surnamed Boanerges, which is, Sons of thunder:</VERS>\r\n      <VERS vnumber=\"18\">and Andrew, and Philip, and Bartholomew, and Matthew, and Thomas, and James the [son] of Alphaeus, and Thaddaeus, and Simon the Cananaean,</VERS>\r\n      <VERS vnumber=\"19\">and Judas Iscariot, who also betrayed him. And he cometh into a house.</VERS>\r\n      <VERS vnumber=\"20\">And the multitude cometh together again, so that they could not so much as eat bread.</VERS>\r\n      <VERS vnumber=\"21\">And when his friends heard it, they went out to lay hold on him: for they said, He is beside himself.</VERS>\r\n      <VERS vnumber=\"22\">And the scribes that came down from Jerusalem said, He hath Beelzebub, and, By the prince of the demons casteth he out the demons.</VERS>\r\n      <VERS vnumber=\"23\">And he called them unto him, and said unto them in parables, How can Satan cast out Satan?</VERS>\r\n      <VERS vnumber=\"24\">And if a kingdom be divided against itself, that kingdom cannot stand.</VERS>\r\n      <VERS vnumber=\"25\">And if a house be divided against itself, that house will not be able to stand.</VERS>\r\n      <VERS vnumber=\"26\">And if Satan hath rise up against himself, and is divided, he cannot stand, but hath an end.</VERS>\r\n      <VERS vnumber=\"27\">But no one can enter into the house of the strong [man], and spoil his goods, except he first bind the strong [man]; and then he will spoil his house.</VERS>\r\n      <VERS vnumber=\"28\">Verily I say unto you, All their sins shall be forgiven unto the sons of men, and their blasphemies wherewith soever they shall blaspheme:</VERS>\r\n      <VERS vnumber=\"29\">but whosoever shall blaspheme against the Holy Spirit hath never forgiveness, but is guilty of an eternal sin:</VERS>\r\n      <VERS vnumber=\"30\">because they said, He hath an unclean spirit.</VERS>\r\n      <VERS vnumber=\"31\">And there come his mother and his brethren; and, standing without, they sent unto him, calling him.</VERS>\r\n      <VERS vnumber=\"32\">And a multitude was sitting about him; and they say unto him, Behold, thy mother and thy brethren without seek for thee.</VERS>\r\n      <VERS vnumber=\"33\">And he answereth them, and saith, Who is my mother and my brethren?</VERS>\r\n      <VERS vnumber=\"34\">And looking round on them that sat round about him, he saith, Behold, my mother and my brethren!</VERS>\r\n      <VERS vnumber=\"35\">For whosoever shall do the will of God, the same is my brother, and sister, and mother.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">And again he began to teach by the sea side. And there is gathered unto him a very great multitude, so that he entered into a boat, and sat in the sea; and all the multitude were by the sea on the land.</VERS>\r\n      <VERS vnumber=\"2\">And he taught them many things in parables, and said unto them in his teaching,</VERS>\r\n      <VERS vnumber=\"3\">Hearken: Behold, the sower went forth to sow:</VERS>\r\n      <VERS vnumber=\"4\">and it came to pass, as he sowed, some [seed] fell by the way side, and the birds came and devoured it.</VERS>\r\n      <VERS vnumber=\"5\">And other fell on the rocky [ground], where it had not much earth; and straightway it sprang up, because it had no deepness of earth:</VERS>\r\n      <VERS vnumber=\"6\">and when the sun was risen, it was scorched; and because it had no root, it withered away.</VERS>\r\n      <VERS vnumber=\"7\">And other fell among the thorns, and the thorns grew up, and choked it, and it yielded no fruit.</VERS>\r\n      <VERS vnumber=\"8\">And others fell into the good ground, and yielded fruit, growing up and increasing; and brought forth, thirtyfold, and sixtyfold, and a hundredfold.</VERS>\r\n      <VERS vnumber=\"9\">And he said, Who hath ears to hear, let him hear.</VERS>\r\n      <VERS vnumber=\"10\">And when he was alone, they that were about him with the twelve asked of him the parables.</VERS>\r\n      <VERS vnumber=\"11\">And he said unto them, Unto you is given the mystery of the kingdom of God: but unto them that are without, all things are done in parables:</VERS>\r\n      <VERS vnumber=\"12\">that seeing they may see, and not perceive; and hearing they may hear, and not understand; lest haply they should turn again, and it should be forgiven them.</VERS>\r\n      <VERS vnumber=\"13\">And he saith unto them, Know ye not this parable? and how shall ye know all the parables?</VERS>\r\n      <VERS vnumber=\"14\">The sower soweth the word.</VERS>\r\n      <VERS vnumber=\"15\">And these are they by the way side, where the word is sown; and when they have heard, straightway cometh Satan, and taketh away the word which hath been sown in them.</VERS>\r\n      <VERS vnumber=\"16\">And these in like manner are they that are sown upon the rocky [places], who, when they have heard the word, straightway receive it with joy;</VERS>\r\n      <VERS vnumber=\"17\">and they have no root in themselves, but endure for a while; then, when tribulation or persecution ariseth because of the word, straightway they stumble.</VERS>\r\n      <VERS vnumber=\"18\">And others are they that are sown among the thorns; these are they that have heard the word,</VERS>\r\n      <VERS vnumber=\"19\">and the cares of the world, and the deceitfulness of riches, and the lusts of other things entering in, choke the word, and it becometh unfruitful.</VERS>\r\n      <VERS vnumber=\"20\">And those are they that were sown upon the good ground; such as hear the word, and accept it, and bear fruit, thirtyfold, and sixtyfold, and a hundredfold.</VERS>\r\n      <VERS vnumber=\"21\">And he said unto them, Is the lamp brought to be put under the bushel, or under the bed, [and] not to be put on the stand?</VERS>\r\n      <VERS vnumber=\"22\">For there is nothing hid, save that it should be manifested; neither was [anything] made secret, but that it should come to light.</VERS>\r\n      <VERS vnumber=\"23\">If any man hath ears to hear, let him hear.</VERS>\r\n      <VERS vnumber=\"24\">And he said unto them, Take heed what ye hear: with what measure ye mete it shall be measured unto you; and more shall be given unto you.</VERS>\r\n      <VERS vnumber=\"25\">For he that hath, to him shall be given: and he that hath not, from him shall be taken away even that which he hath.</VERS>\r\n      <VERS vnumber=\"26\">And he said, So is the kingdom of God, as if a man should cast seed upon the earth;</VERS>\r\n      <VERS vnumber=\"27\">and should sleep and rise night and day, and the seed should spring up and grow, he knoweth not how.</VERS>\r\n      <VERS vnumber=\"28\">The earth beareth fruit of herself; first the blade, then the ear, then the full grain in the ear.</VERS>\r\n      <VERS vnumber=\"29\">But when the fruit is ripe, straightway he putteth forth the sickle, because the harvest is come.</VERS>\r\n      <VERS vnumber=\"30\">And he said, How shall we liken the kingdom of God? or in what parable shall we set it forth?</VERS>\r\n      <VERS vnumber=\"31\">It is like a grain of mustard seed, which, when it is sown upon the earth, though it be less than all the seeds that are upon the earth,</VERS>\r\n      <VERS vnumber=\"32\">yet when it is sown, groweth up, and becometh greater than all the herbs, and putteth out great branches; so that the birds of the heaven can lodge under the shadow thereof.</VERS>\r\n      <VERS vnumber=\"33\">And with many such parables spake he the word unto them, as they were able to hear it;</VERS>\r\n      <VERS vnumber=\"34\">and without a parable spake he not unto them: but privately to his own disciples he expounded all things.</VERS>\r\n      <VERS vnumber=\"35\">And on that day, when even was come, he saith unto them, Let us go over unto the other side.</VERS>\r\n      <VERS vnumber=\"36\">And leaving the multitude, they take him with them, even as he was, in the boat. And other boats were with him.</VERS>\r\n      <VERS vnumber=\"37\">And there ariseth a great storm of wind, and the waves beat into the boat, insomuch that the boat was now filling.</VERS>\r\n      <VERS vnumber=\"38\">And he himself was in the stern, asleep on the cushion: and they awake him, and say unto him, Teacher, carest thou not that we perish?</VERS>\r\n      <VERS vnumber=\"39\">And he awoke, and rebuked the wind, and said unto the sea, Peace, be still. And the wind ceased, and there was a great calm.</VERS>\r\n      <VERS vnumber=\"40\">And he said unto them, Why are ye fearful? have ye not yet faith?</VERS>\r\n      <VERS vnumber=\"41\">And they feared exceedingly, and said one to another, Who then is this, that even the wind and the sea obey him?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">And they came to the other side of the sea, into the country of the Gerasenes.</VERS>\r\n      <VERS vnumber=\"2\">And when he was come out of the boat, straightway there met him out of the tombs a man with an unclean spirit,</VERS>\r\n      <VERS vnumber=\"3\">who had his dwelling in the tombs: and no man could any more bind him, no, not with a chain;</VERS>\r\n      <VERS vnumber=\"4\">because that he had been often bound with fetters and chains, and the chains had been rent asunder by him, and the fetters broken in pieces: and no man had strength to tame him.</VERS>\r\n      <VERS vnumber=\"5\">And always, night and day, in the tombs and in the mountains, he was crying out, and cutting himself with stones.</VERS>\r\n      <VERS vnumber=\"6\">And when he saw Jesus from afar, he ran and worshipped him;</VERS>\r\n      <VERS vnumber=\"7\">and crying out with a loud voice, he saith, What have I to do with thee, Jesus, thou Son of the Most High God? I adjure thee by God, torment me not.</VERS>\r\n      <VERS vnumber=\"8\">For he said unto him, Come forth, thou unclean spirit, out of the man.</VERS>\r\n      <VERS vnumber=\"9\">And he asked him, What is thy name? And he saith unto him, My name is Legion; for we are many.</VERS>\r\n      <VERS vnumber=\"10\">And he besought him much that he would not send them away out of the country.</VERS>\r\n      <VERS vnumber=\"11\">Now there was there on the mountain side a great herd of swine feeding.</VERS>\r\n      <VERS vnumber=\"12\">And they besought him, saying, Send us into the swine, that we may enter into them.</VERS>\r\n      <VERS vnumber=\"13\">And he gave them leave. And the unclean spirits came out, and entered into the swine: and the herd rushed down the steep into the sea, [in number] about two thousand; and they were drowned in the sea.</VERS>\r\n      <VERS vnumber=\"14\">And they that fed them fled, and told it in the city, and in the country. And they came to see what it was that had come to pass.</VERS>\r\n      <VERS vnumber=\"15\">And they come to Jesus, and behold him that was possessed with demons sitting, clothed and in his right mind, [even] him that had the legion: and they were afraid.</VERS>\r\n      <VERS vnumber=\"16\">And they that saw it declared unto them how it befell him that was possessed with demons, and concerning the swine.</VERS>\r\n      <VERS vnumber=\"17\">And they began to beseech him to depart from their borders.</VERS>\r\n      <VERS vnumber=\"18\">And as he was entering into the boat, he that had been possessed with demons besought him that he might be with him.</VERS>\r\n      <VERS vnumber=\"19\">And he suffered him not, but saith unto him, Go to thy house unto thy friends, and tell them how great things the Lord hath done for thee, and [how] he had mercy on thee.</VERS>\r\n      <VERS vnumber=\"20\">And he went his way, and began to publish in Decapolis how great things Jesus had done for him: and all men marvelled.</VERS>\r\n      <VERS vnumber=\"21\">And when Jesus had crossed over again in the boat unto the other side, a great multitude was gathered unto him; and he was by the sea.</VERS>\r\n      <VERS vnumber=\"22\">And there cometh one of the rulers of the synagogue, Jairus by name; and seeing him, he falleth at his feet,</VERS>\r\n      <VERS vnumber=\"23\">and beseecheth him much, saying, My little daughter is at the point of death: [I pray thee], that thou come and lay thy hands on her, that she may be made whole, and live.</VERS>\r\n      <VERS vnumber=\"24\">And he went with him; and a great multitude followed him, and they thronged him.</VERS>\r\n      <VERS vnumber=\"25\">And a woman, who had an issue of blood twelve years,</VERS>\r\n      <VERS vnumber=\"26\">and had suffered many things of many physicians, and had spent all that she had, and was nothing bettered, but rather grew worse,</VERS>\r\n      <VERS vnumber=\"27\">having heard the things concerning Jesus, came in the crowd behind, and touched his garment.</VERS>\r\n      <VERS vnumber=\"28\">For she said, If I touch but his garments, I shall be made whole.</VERS>\r\n      <VERS vnumber=\"29\">And straightway the fountain of her blood was dried up; and she felt in her body that she was healed of her plague.</VERS>\r\n      <VERS vnumber=\"30\">And straightway Jesus, perceiving in himself that the power [proceeding] from him had gone forth, turned him about in the crowd, and said, Who touched my garments?</VERS>\r\n      <VERS vnumber=\"31\">And his disciples said unto him, Thou seest the multitude thronging thee, and sayest thou, Who touched me?</VERS>\r\n      <VERS vnumber=\"32\">And he looked round about to see her that had done this thing.</VERS>\r\n      <VERS vnumber=\"33\">But the woman fearing and trembling, knowing what had been done to her, came and fell down before him, and told him all the truth.</VERS>\r\n      <VERS vnumber=\"34\">And he said unto her, Daughter, thy faith hath made thee whole; go in peace, and be whole of thy plague.</VERS>\r\n      <VERS vnumber=\"35\">While he yet spake, they come from the ruler of the synagogue`s [house] saying, Thy daughter is dead: why troublest thou the Teacher any further?</VERS>\r\n      <VERS vnumber=\"36\">But Jesus, not heeding the word spoken, saith unto the ruler of the synagogue, Fear not, only believe.</VERS>\r\n      <VERS vnumber=\"37\">And he suffered no man to follow with him, save Peter, and James, and John the brother of James.</VERS>\r\n      <VERS vnumber=\"38\">And they come to the house of the ruler of the synagogue; and he beholdeth a tumult, and [many] weeping and wailing greatly.</VERS>\r\n      <VERS vnumber=\"39\">And when he was entered in, he saith unto them, Why make ye a tumult, and weep? the child is not dead, but sleepeth.</VERS>\r\n      <VERS vnumber=\"40\">And they laughed him to scorn. But he, having put them all forth, taketh the father of the child and her mother and them that were with him, and goeth in where the child was.</VERS>\r\n      <VERS vnumber=\"41\">And taking the child by the hand, he saith unto her, Talitha cumi; which is, being interpreted, Damsel, I say unto thee, Arise.</VERS>\r\n      <VERS vnumber=\"42\">And straightway the damsel rose up, and walked; for she was twelve years old. And they were amazed straightway with a great amazement.</VERS>\r\n      <VERS vnumber=\"43\">And he charged them much that no man should know this: and he commanded that [something] should be given her to eat.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">And he went out from thence; and he cometh into his own country; and his disciples follow him.</VERS>\r\n      <VERS vnumber=\"2\">And when the sabbath was come, he began to teach in the synagogue: and many hearing him were astonished, saying, Whence hath this man these things? and, What is the wisdom that is given unto this man, and [what mean] such mighty works wrought by his hands?</VERS>\r\n      <VERS vnumber=\"3\">Is not this the carpenter, the son of Mary, and brother of James, and Joses, and Judas, and Simon? and are not his sisters here with us? And they were offended in him.</VERS>\r\n      <VERS vnumber=\"4\">And Jesus said unto them, A prophet is not without honor, save in his own country, and among his own kin, and in his own house.</VERS>\r\n      <VERS vnumber=\"5\">And he could there do no mighty work, save that he laid his hands upon a few sick folk, and healed them.</VERS>\r\n      <VERS vnumber=\"6\">And he marvelled because of their unbelief. And he went round about the villages teaching.</VERS>\r\n      <VERS vnumber=\"7\">And he calleth unto him the twelve, and began to send them forth by two and two; and he gave them authority over the unclean spirits;</VERS>\r\n      <VERS vnumber=\"8\">and he charged them that they should take nothing for [their] journey, save a staff only; no bread, no wallet, now money in their purse;</VERS>\r\n      <VERS vnumber=\"9\">but [to go] shod with sandals: and, [said he], put not on two coats.</VERS>\r\n      <VERS vnumber=\"10\">And he said unto them, Wheresoever ye enter into a house, there abide till ye depart thence.</VERS>\r\n      <VERS vnumber=\"11\">And whatsoever place shall not receive you, and they hear you not, as ye go forth thence, shake off the dust that is under your feet for a testimony unto them.</VERS>\r\n      <VERS vnumber=\"12\">And they went out, and preached that [men] should repent.</VERS>\r\n      <VERS vnumber=\"13\">And they cast out many demons, and anointed with oil many that were sick, and healed them.</VERS>\r\n      <VERS vnumber=\"14\">And king Herod heard [thereof]; for his name had become known: and he said, John the Baptizer is risen from the dead, and therefore do these powers work in him.</VERS>\r\n      <VERS vnumber=\"15\">But others said, It is Elijah. And others said, [It is] a prophet, [even] as one of the prophets.</VERS>\r\n      <VERS vnumber=\"16\">But Herod, when he heard [thereof], said, John, whom I beheaded, he is risen.</VERS>\r\n      <VERS vnumber=\"17\">For Herod himself had sent forth and laid hold upon John, and bound him in prison for the sake of Herodias, his brother Philip`s wife; for he had married her.</VERS>\r\n      <VERS vnumber=\"18\">For John said unto Herod, It is not lawful for thee to have thy brother`s wife.</VERS>\r\n      <VERS vnumber=\"19\">And Herodias set herself against him, and desired to kill him; and she could not;</VERS>\r\n      <VERS vnumber=\"20\">for Herod feared John, knowing that he was a righteous and holy man, and kept him safe. And when he heard him, he was much perplexed; and he heard him gladly.</VERS>\r\n      <VERS vnumber=\"21\">And when a convenient day was come, that Herod on his birthday made a supper to his lords, and the high captains, and the chief men of Galilee;</VERS>\r\n      <VERS vnumber=\"22\">and when the daughter of Herodias herself came in and danced, she pleased Herod and them that sat at meat with him; and the king said unto the damsel, Ask of me whatsoever thou wilt, and I will give it thee.</VERS>\r\n      <VERS vnumber=\"23\">And he sware unto her, Whatsoever thou shalt ask of me, I will give it thee, unto the half of my kingdom.</VERS>\r\n      <VERS vnumber=\"24\">And she went out, and said unto her mother, What shall I ask? And she said, The head of John the Baptizer.</VERS>\r\n      <VERS vnumber=\"25\">And she came in straightway with haste unto the king, and asked, saying, I will that thou forthwith give me on a platter the head of John the Baptist.</VERS>\r\n      <VERS vnumber=\"26\">And the king was exceeding sorry; but for the sake of his oaths, and of them that sat at meat, he would not reject her.</VERS>\r\n      <VERS vnumber=\"27\">And straightway the king sent forth a soldier of his guard, and commanded to bring his head: and he went and beheaded him in the prison,</VERS>\r\n      <VERS vnumber=\"28\">and brought his head on a platter, and gave it to the damsel; and the damsel gave it to her mother.</VERS>\r\n      <VERS vnumber=\"29\">And when his disciples heard [thereof], they came and took up his corpse, and laid it in a tomb.</VERS>\r\n      <VERS vnumber=\"30\">And the apostles gather themselves together unto Jesus; and they told him all things, whatsoever they had done, and whatsoever they had taught.</VERS>\r\n      <VERS vnumber=\"31\">And he saith 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.</VERS>\r\n      <VERS vnumber=\"32\">And they went away in the boat to a desert place apart.</VERS>\r\n      <VERS vnumber=\"33\">And [the people] saw them going, and many knew [them], and they ran together there on foot from all the cities, and outwent them.</VERS>\r\n      <VERS vnumber=\"34\">And he came forth and saw a great multitude, and he had compassion on them, because they were as sheep not having a shepherd: and he began to teach them many things.</VERS>\r\n      <VERS vnumber=\"35\">And when the day was now far spent, his disciples came unto him, and said, The place is desert, and the day is now far spent;</VERS>\r\n      <VERS vnumber=\"36\">send them away, that they may go into the country and villages round about, and buy themselves somewhat to eat.</VERS>\r\n      <VERS vnumber=\"37\">But he answered and said unto them, Give ye them to eat. And they say unto him, Shall we go and buy two hundred shillings` worth of bread, and give them to eat?</VERS>\r\n      <VERS vnumber=\"38\">And he saith unto them, How many loaves have ye? go [and] see. And when they knew, they say, Five, and two fishes.</VERS>\r\n      <VERS vnumber=\"39\">And he commanded them that all should sit down by companies upon the green grass.</VERS>\r\n      <VERS vnumber=\"40\">And they sat down in ranks, by hundreds, and by fifties.</VERS>\r\n      <VERS vnumber=\"41\">And he took the five loaves and the two fishes, and looking up to heaven, he blessed, and brake the loaves; and he gave to the disciples to set before them; and the two fishes divided he among them all.</VERS>\r\n      <VERS vnumber=\"42\">And they all ate, and were filled.</VERS>\r\n      <VERS vnumber=\"43\">And they took up broken pieces, twelve basketfuls, and also of the fishes.</VERS>\r\n      <VERS vnumber=\"44\">And they that ate the loaves were five thousand men.</VERS>\r\n      <VERS vnumber=\"45\">And straightway he constrained his disciples to enter into the boat, and to go before [him] unto the other side to Bethsaida, while he himself sendeth the multitude away.</VERS>\r\n      <VERS vnumber=\"46\">And after he had taken leave of them, he departed into the mountain to pray.</VERS>\r\n      <VERS vnumber=\"47\">And when even was come, the boat was in the midst of the sea, and he alone on the land.</VERS>\r\n      <VERS vnumber=\"48\">And seeing them distressed in rowing, for the wind was contrary unto them, about the fourth watch of the night he cometh unto them, walking on the sea; and he would have passed by them:</VERS>\r\n      <VERS vnumber=\"49\">but they, when they saw him walking on the sea, supposed that it was a ghost, and cried out;</VERS>\r\n      <VERS vnumber=\"50\">for they all saw him, and were troubled. But he straightway spake with them, and saith unto them, Be of good cheer: it is I; be not afraid.</VERS>\r\n      <VERS vnumber=\"51\">And he went up unto them into the boat; and the wind ceased: and they were sore amazed in themselves;</VERS>\r\n      <VERS vnumber=\"52\">for they understood not concerning the loaves, but their heart was hardened.</VERS>\r\n      <VERS vnumber=\"53\">And when they had crossed over, they came to the land unto Gennesaret, and moored to the shore.</VERS>\r\n      <VERS vnumber=\"54\">And when they were come out of the boat, straightway [the people] knew him,</VERS>\r\n      <VERS vnumber=\"55\">and ran round about that whole region, and began to carry about on their beds those that were sick, where they heard he was.</VERS>\r\n      <VERS vnumber=\"56\">And wheresoever he entered, into villages, or into cities, or into the country, they laid the sick in the marketplaces, 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">And there are gathered together unto him the Pharisees, and certain of the scribes, who had come from Jerusalem,</VERS>\r\n      <VERS vnumber=\"2\">and had seen that some of his disciples ate their bread with defiled, that is, unwashen, hands.</VERS>\r\n      <VERS vnumber=\"3\">(For the Pharisees, and all the Jews, except they wash their hands diligently, eat not, holding the tradition of the elders;</VERS>\r\n      <VERS vnumber=\"4\">and [when they come] from the market-place, except they bathe themselves, they eat not; and many other things there are, which they have received to hold, washings of cups, and pots, and brasen vessels.)</VERS>\r\n      <VERS vnumber=\"5\">And the Pharisees and the scribes ask him, Why walk not thy disciples according to the tradition of the elders, but eat their bread with defiled hands?</VERS>\r\n      <VERS vnumber=\"6\">And he said unto them, Well did Isaiah prophesy of you hypocrites, as it is written, This people honoreth me with their lips, But their heart is far from me.</VERS>\r\n      <VERS vnumber=\"7\">But in vain do they worship me, Teaching [as their] doctrines the precepts of men.</VERS>\r\n      <VERS vnumber=\"8\">Ye leave the commandment of God, and hold fast the tradition of men.</VERS>\r\n      <VERS vnumber=\"9\">And he said unto them, Full well do ye reject the commandment of God, that ye may keep your tradition.</VERS>\r\n      <VERS vnumber=\"10\">For Moses said, Honor thy father and thy mother; and, He that speaketh evil of father or mother, let him die the death:</VERS>\r\n      <VERS vnumber=\"11\">but ye say, If a man shall say to his father or his mother, That wherewith thou mightest have been profited by me is Corban, that is to say, Given [to God];</VERS>\r\n      <VERS vnumber=\"12\">ye no longer suffer him to do aught for his father or his mother;</VERS>\r\n      <VERS vnumber=\"13\">making void the word of God by your tradition, which ye have delivered: and many such like things ye do.</VERS>\r\n      <VERS vnumber=\"14\">And he called to him the multitude again, and said unto them, Hear me all of you, and understand:</VERS>\r\n      <VERS vnumber=\"15\">there is nothing from without the man, that going into him can defile him; but the things which proceed out of the man are those that defile the man.</VERS>\r\n      <VERS vnumber=\"16\">[If any man hath ears to hear, let him hear.]</VERS>\r\n      <VERS vnumber=\"17\">And when he was entered into the house from the multitude, his disciples asked of him the parable.</VERS>\r\n      <VERS vnumber=\"18\">And he saith unto them, Are ye so without understanding also? Perceive ye not, that whatsoever from without goeth into the man, [it] cannot defile him;</VERS>\r\n      <VERS vnumber=\"19\">because it goeth not into his heart, but into his belly, and goeth out into the draught? [This he said], making all meats clean.</VERS>\r\n      <VERS vnumber=\"20\">And he said, That which proceedeth out of the man, that defileth the man.</VERS>\r\n      <VERS vnumber=\"21\">For from within, out of the heart of men, evil thoughts proceed, fornications, thefts, murders, adulteries,</VERS>\r\n      <VERS vnumber=\"22\">covetings, wickednesses, deceit, lasciviousness, an evil eye, railing, pride, foolishness:</VERS>\r\n      <VERS vnumber=\"23\">all these evil things proceed from within, and defile the man.</VERS>\r\n      <VERS vnumber=\"24\">And from thence he arose, and went away into the borders of Tyre and Sidon. And he entered into a house, and would have no man know it; and he could not be hid.</VERS>\r\n      <VERS vnumber=\"25\">But straightway a woman, whose little daughter had an unclean spirit, having heard of him, came and fell down at his feet.</VERS>\r\n      <VERS vnumber=\"26\">Now the woman was a Greek, a Syrophoenician by race. And she besought him that he would cast forth the demon out of her daughter.</VERS>\r\n      <VERS vnumber=\"27\">And he said unto her, Let the children first be filled: for it is not meet to take the children`s bread and cast it to the dogs.</VERS>\r\n      <VERS vnumber=\"28\">But she answered and saith unto him, Yea, Lord; even the dogs under the table eat of the children`s crumbs.</VERS>\r\n      <VERS vnumber=\"29\">And he said unto her, For this saying go thy way; the demon is gone out of thy daughter.</VERS>\r\n      <VERS vnumber=\"30\">And she went away unto her house, and found the child laid upon the bed, and the demon gone out.</VERS>\r\n      <VERS vnumber=\"31\">And again he went out from the borders of Tyre, and came through Sidon unto the sea of Galilee, through the midst of the borders of Decapolis.</VERS>\r\n      <VERS vnumber=\"32\">And they bring unto him one that was deaf, and had an impediment in his speech; and they beseech him to lay his hand upon him.</VERS>\r\n      <VERS vnumber=\"33\">And he took him aside from the multitude privately, and put his fingers into his ears, and he spat, and touched his tongue;</VERS>\r\n      <VERS vnumber=\"34\">and looking up to heaven, he sighed, and saith unto him, Ephphatha, that is, Be opened.</VERS>\r\n      <VERS vnumber=\"35\">And his ears were opened, and the bond of his tongue was loosed, and he spake plain.</VERS>\r\n      <VERS vnumber=\"36\">And 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.</VERS>\r\n      <VERS vnumber=\"37\">And they were beyond measure astonished, saying, He hath done all things well; he maketh even the deaf to hear, and the dumb to speak.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">In those days, when there was again a great multitude, and they had nothing to eat, he called unto him his disciples, and saith unto them,</VERS>\r\n      <VERS vnumber=\"2\">I have compassion on the multitude, because they continue with me now three days, and have nothing to eat:</VERS>\r\n      <VERS vnumber=\"3\">and if I send them away fasting to their home, they will faint on the way; and some of them are come from far.</VERS>\r\n      <VERS vnumber=\"4\">And his disciples answered him, Whence shall one be able to fill these men with bread here in a desert place?</VERS>\r\n      <VERS vnumber=\"5\">And he asked them, How many loaves have ye? And they said, Seven.</VERS>\r\n      <VERS vnumber=\"6\">And he commandeth the multitude to sit down on the ground: and he took the seven loaves, and having given thanks, he brake, and gave to his disciples, to set before them; and they set them before the multitude.</VERS>\r\n      <VERS vnumber=\"7\">And they had a few small fishes: and having blessed them, he commanded to set these also before them.</VERS>\r\n      <VERS vnumber=\"8\">And they ate, and were filled: and they took up, of broken pieces that remained over, seven baskets.</VERS>\r\n      <VERS vnumber=\"9\">And they were about four thousand: and he sent them away.</VERS>\r\n      <VERS vnumber=\"10\">And straightway he entered into the boat with his disciples, and came into the parts of Dalmanutha.</VERS>\r\n      <VERS vnumber=\"11\">And the Pharisees came forth, and began to question with him, seeking of him a sign from heaven, trying him.</VERS>\r\n      <VERS vnumber=\"12\">And he sighed deeply in his spirit, and saith, Why doth this generation seek a sign? verily I say unto you, There shall no sign be given unto this generation.</VERS>\r\n      <VERS vnumber=\"13\">And he left them, and again entering into [the boat] departed to the other side.</VERS>\r\n      <VERS vnumber=\"14\">And they forgot to take bread; and they had not in the boat with them more than one loaf.</VERS>\r\n      <VERS vnumber=\"15\">And he charged them, saying, Take heed, beware of the leaven of the Pharisees and the leaven of Herod.</VERS>\r\n      <VERS vnumber=\"16\">And they reasoned one with another, saying, We have no bread.</VERS>\r\n      <VERS vnumber=\"17\">And Jesus perceiving it saith unto them, Why reason ye, because ye have no bread? do ye not yet perceive, neither understand? have ye your heart hardened?</VERS>\r\n      <VERS vnumber=\"18\">Having eyes, see ye not? and having ears, hear ye not? and do ye not remember?</VERS>\r\n      <VERS vnumber=\"19\">When I brake the five loaves among the five thousand, how many baskets full of broken pieces took ye up? They say unto him, Twelve.</VERS>\r\n      <VERS vnumber=\"20\">And when the seven among the four thousand, how many basketfuls of broken pieces took ye up? And they say unto him, Seven.</VERS>\r\n      <VERS vnumber=\"21\">And he said unto them, Do ye not yet understand?</VERS>\r\n      <VERS vnumber=\"22\">And they come unto Bethsaida. And they bring to him a blind man, and beseech him to touch him.</VERS>\r\n      <VERS vnumber=\"23\">And he took hold of the blind man by the hand, and brought him out of the village; and when he had spit on his eyes, and laid his hands upon him, he asked him, Seest thou aught?</VERS>\r\n      <VERS vnumber=\"24\">And he looked up, and said, I see men; for I behold [them] as trees, walking.</VERS>\r\n      <VERS vnumber=\"25\">Then again he laid his hands upon his eyes; and he looked stedfastly, and was restored, and saw all things clearly.</VERS>\r\n      <VERS vnumber=\"26\">And he sent him away to his home, saying, Do not even enter into the village.</VERS>\r\n      <VERS vnumber=\"27\">And Jesus went forth, and his disciples, into the villages of Caesarea Philippi: and on the way he asked his disciples, saying unto them, Who do men say that I am?</VERS>\r\n      <VERS vnumber=\"28\">And they told him, saying, John the Baptist; and others, Elijah; but others, One of the prophets.</VERS>\r\n      <VERS vnumber=\"29\">And he asked them, But who say ye that I am? Peter answereth and saith unto him, Thou art the Christ.</VERS>\r\n      <VERS vnumber=\"30\">And he charged them that they should tell no man of him.</VERS>\r\n      <VERS vnumber=\"31\">And he began to teach them, that the Son of man must suffer many things, and be rejected by the elders, and the chief priests, and the scribes, and be killed, and after three days rise again.</VERS>\r\n      <VERS vnumber=\"32\">And he spake the saying openly. And Peter took him, and began to rebuke him.</VERS>\r\n      <VERS vnumber=\"33\">But he turning about, and seeing his disciples, rebuked Peter, and saith, Get thee behind me, Satan; for thou mindest not the things of God, but the things of men.</VERS>\r\n      <VERS vnumber=\"34\">And he called unto him the multitude with his disciples, and said unto them, If any man would come after me, let him deny himself, and take up his cross, and follow me.</VERS>\r\n      <VERS vnumber=\"35\">For whosoever would save his life shall lose it; and whosoever shall lose his life for my sake and the gospel`s shall save it.</VERS>\r\n      <VERS vnumber=\"36\">For what doth it profit a man, to gain the whole world, and forfeit his life?</VERS>\r\n      <VERS vnumber=\"37\">For what should a man give in exchange for his life?</VERS>\r\n      <VERS vnumber=\"38\">For whosoever shall be ashamed of me and of my words in this adulterous and sinful generation, the Son of man also shall be ashamed of him, when he cometh in the glory of his Father with the holy angels.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">And he said unto them, Verily I say unto you, There are some here of them that stand [by], who shall in no wise taste of death, till they see the kingdom of God come with power.</VERS>\r\n      <VERS vnumber=\"2\">And after six days Jesus taketh with him Peter, and James, and John, and bringeth them up into a high mountain apart by themselves: and he was transfigured before them;</VERS>\r\n      <VERS vnumber=\"3\">and his garments became glistering, exceeding white, so as no fuller on earth can whiten them.</VERS>\r\n      <VERS vnumber=\"4\">And there appeared unto them Elijah with Moses: and they were talking with Jesus.</VERS>\r\n      <VERS vnumber=\"5\">And Peter answereth and saith to Jesus, Rabbi, it is good for us to be here: and let us make three tabernacles; one for thee, and one for Moses, and one for Elijah.</VERS>\r\n      <VERS vnumber=\"6\">For he knew not what to answer; for they became sore afraid.</VERS>\r\n      <VERS vnumber=\"7\">And there came a cloud overshadowing them: and there came a voice out of the cloud, This is my beloved Son: hear ye him.</VERS>\r\n      <VERS vnumber=\"8\">And suddenly looking round about, they saw no one any more, save Jesus only with themselves.</VERS>\r\n      <VERS vnumber=\"9\">And as they were coming down from the mountain, he charged them that they should tell no man what things they had seen, save when the Son of man should have risen again from the dead.</VERS>\r\n      <VERS vnumber=\"10\">And they kept the saying, questioning among themselves what the rising again from the dead should mean.</VERS>\r\n      <VERS vnumber=\"11\">And they asked him, saying, [How is it] that the scribes say that Elijah must first come?</VERS>\r\n      <VERS vnumber=\"12\">And he said unto them, Elijah indeed cometh first, and restoreth all things: and how is it written of the Son of man, that he should suffer many things and be set at nought?</VERS>\r\n      <VERS vnumber=\"13\">But I say unto you, that Elijah is come, and they have also done unto him whatsoever they would, even as it is written of him.</VERS>\r\n      <VERS vnumber=\"14\">And when they came to the disciples, they saw a great multitude about them, and scribes questioning with them.</VERS>\r\n      <VERS vnumber=\"15\">And straightway all the multitude, when they saw him, were greatly amazed, and running to him saluted him.</VERS>\r\n      <VERS vnumber=\"16\">And he asked them, What question ye with them?</VERS>\r\n      <VERS vnumber=\"17\">And one of the multitude answered him, Teacher, I brought unto thee my son, who hath a dumb spirit;</VERS>\r\n      <VERS vnumber=\"18\">and wheresoever it taketh him, it dasheth him down: and he foameth, and grindeth his teeth, and pineth away: and I spake to thy disciples that they should cast it out; and they were not able.</VERS>\r\n      <VERS vnumber=\"19\">And he answereth them and saith, O faithless generation, how long shall I be with you? how long shall I bear with you? bring him unto me.</VERS>\r\n      <VERS vnumber=\"20\">And they brought him unto him: and when he saw him, straightway the spirit tare him grievously; and he fell on the ground, and wallowed foaming.</VERS>\r\n      <VERS vnumber=\"21\">And he asked his father, How long time is it since this hath come unto him? And he said, From a child.</VERS>\r\n      <VERS vnumber=\"22\">And oft-times it hath cast him both into the fire and into the waters, to destroy him: but if thou canst do anything, have compassion on us, and help us.</VERS>\r\n      <VERS vnumber=\"23\">And Jesus said unto him, If thou canst! All things are possible to him that believeth.</VERS>\r\n      <VERS vnumber=\"24\">Straightway the father of the child cried out, and said, I believe; help thou mine unbelief.</VERS>\r\n      <VERS vnumber=\"25\">And when Jesus saw that a multitude came running together, he rebuked the unclean spirit, saying unto him, Thou dumb and deaf spirit, I command thee, come out of him, and enter no more into him.</VERS>\r\n      <VERS vnumber=\"26\">And having cried out, and torn him much, he came out: and [the boy] became as one dead; insomuch that the more part said, He is dead.</VERS>\r\n      <VERS vnumber=\"27\">But Jesus took him by the hand, and raised him up; and he arose.</VERS>\r\n      <VERS vnumber=\"28\">And when he was come into the house, his disciples asked him privately, [How is it] that we could not cast it out?</VERS>\r\n      <VERS vnumber=\"29\">And he said unto them, This kind can come out by nothing, save by prayer.</VERS>\r\n      <VERS vnumber=\"30\">And they went forth from thence, and passed through Galilee; and he would not that any man should know it.</VERS>\r\n      <VERS vnumber=\"31\">For he taught his disciples, and said unto them, The Son of man is delivered up into the hands of men, and they shall kill him; and when he is killed, after three days he shall rise again.</VERS>\r\n      <VERS vnumber=\"32\">But they understood not the saying, and were afraid to ask him.</VERS>\r\n      <VERS vnumber=\"33\">And they came to Capernaum: and when he was in the house he asked them, What were ye reasoning on the way?</VERS>\r\n      <VERS vnumber=\"34\">But they held their peace: for they had disputed one with another on the way, who [was] the greatest.</VERS>\r\n      <VERS vnumber=\"35\">And he sat down, and called the twelve; and he saith unto them, If any man would be first, he shall be last of all, and servant of all.</VERS>\r\n      <VERS vnumber=\"36\">And he took a little child, and set him in the midst of them: and taking him in his arms, he said unto them,</VERS>\r\n      <VERS vnumber=\"37\">Whosoever shall receive one of such little children in my name, receiveth me: and whosoever receiveth me, receiveth not me, but him that sent me.</VERS>\r\n      <VERS vnumber=\"38\">John said unto him, Teacher, we saw one casting out demons in thy name; and we forbade him, because he followed not us.</VERS>\r\n      <VERS vnumber=\"39\">But Jesus said, Forbid him not: for there is no man who shall do a mighty work in my name, and be able quickly to speak evil of me.</VERS>\r\n      <VERS vnumber=\"40\">For he that is not against us is for us.</VERS>\r\n      <VERS vnumber=\"41\">For whosoever shall give you a cup of water to drink, because ye are Christ`s, verily I say unto you, he shall in no wise lose his reward.</VERS>\r\n      <VERS vnumber=\"42\">And whosoever shall cause one of these little ones that believe on me to stumble, it were better for him if a great millstone were hanged about his neck, and he were cast into the sea.</VERS>\r\n      <VERS vnumber=\"43\">And if thy hand cause thee to stumble, cut it off: it is good for thee to enter into life maimed, rather than having thy two hands to go into hell, into the unquenchable fire.</VERS>\r\n      <VERS vnumber=\"44\">[where their worm dieth not, and the fire is not quenched.]</VERS>\r\n      <VERS vnumber=\"45\">And if thy foot cause thee to stumble, cut it off: it is good for thee to enter into life halt, rather than having thy two feet to be cast into hell.</VERS>\r\n      <VERS vnumber=\"46\">[where their worm dieth not, and the fire is not quenched.]</VERS>\r\n      <VERS vnumber=\"47\">And if thine eye cause thee to stumble, cast it out: it is good for thee to enter into the kingdom of God with one eye, rather than having two eyes to be cast into hell;</VERS>\r\n      <VERS vnumber=\"48\">where their worm dieth not, and the fire is not quenched.</VERS>\r\n      <VERS vnumber=\"49\">For every one shall be salted with fire.</VERS>\r\n      <VERS vnumber=\"50\">Salt is good: but if the salt have lost its saltness, wherewith will ye season it? Have salt in yourselves, and be at peace one with another.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">And he arose from thence and cometh into the borders of Judaea and beyond the Jordan: and multitudes come together unto him again; and, as he was wont, he taught them again.</VERS>\r\n      <VERS vnumber=\"2\">And there came unto him Pharisees, and asked him, Is it lawful for a man to put away [his] wife? trying him.</VERS>\r\n      <VERS vnumber=\"3\">And he answered and said unto them, What did Moses command you?</VERS>\r\n      <VERS vnumber=\"4\">And they said, Moses suffered to write a bill of divorcement, and to put her away.</VERS>\r\n      <VERS vnumber=\"5\">But Jesus said unto them, For your hardness of heart he wrote you this commandment.</VERS>\r\n      <VERS vnumber=\"6\">But from the beginning of the creation, Male and female made he them.</VERS>\r\n      <VERS vnumber=\"7\">For this cause shall a man leave his father and mother, and shall cleave to his wife;</VERS>\r\n      <VERS vnumber=\"8\">and the two shall become one flesh: so that they are no more two, but one flesh.</VERS>\r\n      <VERS vnumber=\"9\">What therefore God hath joined together, let not man put asunder.</VERS>\r\n      <VERS vnumber=\"10\">And in the house the disciples asked him again of this matter.</VERS>\r\n      <VERS vnumber=\"11\">And he saith unto them, Whosoever shall put away his wife, and marry another, committeth adultery against her:</VERS>\r\n      <VERS vnumber=\"12\">and if she herself shall put away her husband, and marry another, she committeth adultery.</VERS>\r\n      <VERS vnumber=\"13\">And they were bringing unto him little children, that he should touch them: and the disciples rebuked them.</VERS>\r\n      <VERS vnumber=\"14\">But when Jesus saw it, he was moved with indignation, and said unto them, Suffer the little children to come unto me; forbid them not: for to such belongeth the kingdom of God.</VERS>\r\n      <VERS vnumber=\"15\">Verily I say unto you, Whosoever shall not receive the kingdom of God as a little child, he shall in no wise enter therein.</VERS>\r\n      <VERS vnumber=\"16\">And he took them in his arms, and blessed them, laying his hands upon them.</VERS>\r\n      <VERS vnumber=\"17\">And as he was going forth into the way, there ran one to him, and kneeled to him, and asked him, Good Teacher, what shall I do that I may inherit eternal life?</VERS>\r\n      <VERS vnumber=\"18\">And Jesus said unto him, Why callest thou me good? none is good save one, [even] God.</VERS>\r\n      <VERS vnumber=\"19\">Thou knowest the commandments, Do not kill, Do not commit adultery, Do not steal, Do not bear false witness, Do not defraud, Honor thy father and mother.</VERS>\r\n      <VERS vnumber=\"20\">And he said unto him, Teacher, all these things have I observed from my youth.</VERS>\r\n      <VERS vnumber=\"21\">And Jesus looking upon him loved him, and said unto him, One thing thou lackest: go, sell whatsoever thou hast, and give to the poor, and thou shalt have treasure in heaven: and come, follow me.</VERS>\r\n      <VERS vnumber=\"22\">But his countenance fell at the saying, and he went away sorrowful: for he was one that had great possessions.</VERS>\r\n      <VERS vnumber=\"23\">And Jesus looked round about, and saith unto his disciples, How hardly shall they that have riches enter into the kingdom of God!</VERS>\r\n      <VERS vnumber=\"24\">And the disciples were amazed 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!</VERS>\r\n      <VERS vnumber=\"25\">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.</VERS>\r\n      <VERS vnumber=\"26\">And they were astonished exceedingly, saying unto him, Then who can be saved?</VERS>\r\n      <VERS vnumber=\"27\">Jesus looking upon them saith, With men it is impossible, but not with God: for all things are possible with God.</VERS>\r\n      <VERS vnumber=\"28\">Peter began to say unto him, Lo, we have left all, and have followed thee.</VERS>\r\n      <VERS vnumber=\"29\">Jesus said, Verily I say unto you, There is no man that hath left house, or brethren, or sisters, or mother, or father, or children, or lands, for my sake, and for the gospel`s sake,</VERS>\r\n      <VERS vnumber=\"30\">but he shall receive a 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.</VERS>\r\n      <VERS vnumber=\"31\">But many [that are] first shall be last; and the last first.</VERS>\r\n      <VERS vnumber=\"32\">And they were on the way, going up to Jerusalem; and Jesus was going before them: and they were amazed; and they that followed were afraid. And he took again the twelve, and began to tell them the things that were to happen unto him,</VERS>\r\n      <VERS vnumber=\"33\">[saying], Behold, we go up to Jerusalem; and the Son of man shall be delivered unto the chief priests and the scribes; and they shall condemn him to death, and shall deliver him unto the Gentiles:</VERS>\r\n      <VERS vnumber=\"34\">and they shall mock him, and shall spit upon him, and shall scourge him, and shall kill him; and after three days he shall rise again.</VERS>\r\n      <VERS vnumber=\"35\">And there come near unto him James and John, the sons of Zebedee, saying unto him, Teacher, we would that thou shouldest do for us whatsoever we shall ask of thee.</VERS>\r\n      <VERS vnumber=\"36\">And he said unto them, What would ye that I should do for you?</VERS>\r\n      <VERS vnumber=\"37\">And they said unto him, Grant unto us that we may sit, one on thy right hand, and one on [thy] left hand, in thy glory.</VERS>\r\n      <VERS vnumber=\"38\">But Jesus said unto them, Ye know not what ye ask. Are ye able to drink the cup that I drink? or to be baptized with the baptism that I am baptized with?</VERS>\r\n      <VERS vnumber=\"39\">And they said unto him, We are able. And Jesus said unto them, The cup that I drink ye shall drink; and with the baptism that I am baptized withal shall ye be baptized:</VERS>\r\n      <VERS vnumber=\"40\">but to sit on my right hand or on [my] left hand is not mine to give; but [it is for them] for whom it hath been prepared.</VERS>\r\n      <VERS vnumber=\"41\">And when the ten heard it, they began to be moved with indignation concerning James and John.</VERS>\r\n      <VERS vnumber=\"42\">And Jesus called them to him, and saith unto them, Ye know that they who are accounted to rule over the Gentiles lord it over them; and their great ones exercise authority over them.</VERS>\r\n      <VERS vnumber=\"43\">But it is not so among you: but whosoever would become great among you, shall be your minister;</VERS>\r\n      <VERS vnumber=\"44\">and whosoever would be first among you, shall be servant of all.</VERS>\r\n      <VERS vnumber=\"45\">For the Son of man also came not to be ministered unto, but to minister, and to give his life a ransom for many.</VERS>\r\n      <VERS vnumber=\"46\">And they come to Jericho: and as he went out from Jericho, with his disciples and a great multitude, the son of Timaeus, Bartimaeus, a blind beggar, was sitting by the way side.</VERS>\r\n      <VERS vnumber=\"47\">And when he heard that it was Jesus the Nazarene, he began to cry out, and say, Jesus, thou son of David, have mercy on me.</VERS>\r\n      <VERS vnumber=\"48\">And many rebuked him, that he should hold his peace: but he cried out the more a great deal, Thou son of David, have mercy on me.</VERS>\r\n      <VERS vnumber=\"49\">And Jesus stood still, and said, Call ye him. And they call the blind man, saying unto him, Be of good cheer: rise, he calleth thee.</VERS>\r\n      <VERS vnumber=\"50\">And he, casting away his garment, sprang up, and came to Jesus.</VERS>\r\n      <VERS vnumber=\"51\">And Jesus answered him, and said, What wilt thou that I should do unto thee? And the blind man said unto him, Rabboni, that I may receive my sight.</VERS>\r\n      <VERS vnumber=\"52\">And Jesus said unto him, Go thy way; thy faith hath made thee whole. And straightway he received his sight, and followed him in the way.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">And when they draw nigh unto Jerusalem, unto Bethphage and Bethany, at the mount of Olives, he sendeth two of his disciples,</VERS>\r\n      <VERS vnumber=\"2\">and saith unto them, Go your way into the village that is over against you: and straightway as ye enter into it, ye shall find a colt tied, whereon no man ever yet sat; loose him, and bring him.</VERS>\r\n      <VERS vnumber=\"3\">And if any one say unto you, Why do ye this? say ye, The Lord hath need of him; and straightway he will send him back hither.</VERS>\r\n      <VERS vnumber=\"4\">And they went away, and found a colt tied at the door without in the open street; and they loose him.</VERS>\r\n      <VERS vnumber=\"5\">And certain of them that stood there said unto them, What do ye, loosing the colt?</VERS>\r\n      <VERS vnumber=\"6\">And they said unto them even as Jesus had said: and they let them go.</VERS>\r\n      <VERS vnumber=\"7\">And they bring the colt unto Jesus, and cast on him their garments; and he sat upon him.</VERS>\r\n      <VERS vnumber=\"8\">And many spread their garments upon the way; and others branches, which they had cut from the fields.</VERS>\r\n      <VERS vnumber=\"9\">And they that went before, and they that followed, cried, Hosanna; Blessed [is] he that cometh in the name of the Lord:</VERS>\r\n      <VERS vnumber=\"10\">Blessed [is] the kingdom that cometh, [the kingdom] of our father David: Hosanna in the highest.</VERS>\r\n      <VERS vnumber=\"11\">And he entered into Jerusalem, into the temple; and when he had looked round about upon all things, it being now eventide, he went out unto Bethany with the twelve.</VERS>\r\n      <VERS vnumber=\"12\">And on the morrow, when they were come out from Bethany, he hungered.</VERS>\r\n      <VERS vnumber=\"13\">And seeing a fig tree afar off having leaves, he came, if haply he might find anything thereon: and when he came to it, he found nothing but leaves; for it was not the season of figs.</VERS>\r\n      <VERS vnumber=\"14\">And he answered and said unto it, No man eat fruit from thee henceforward for ever. And his disciples heard it.</VERS>\r\n      <VERS vnumber=\"15\">And they come to Jerusalem: and he entered into the temple, and began to cast out them that sold and them that bought in the temple, and overthrew the tables of the money-changers, and the seats of them that sold the doves;</VERS>\r\n      <VERS vnumber=\"16\">and he would not suffer that any man should carry a vessel through the temple.</VERS>\r\n      <VERS vnumber=\"17\">And he taught, and said unto them, Is it not written, My house shall be called a house of prayer for all the nations? but ye have made it a den of robbers.</VERS>\r\n      <VERS vnumber=\"18\">And the chief priests and the scribes heard it, and sought how they might destroy him: for they feared him, for all the multitude was astonished at his teaching.</VERS>\r\n      <VERS vnumber=\"19\">And every evening he went forth out of the city.</VERS>\r\n      <VERS vnumber=\"20\">And as they passed by in the morning, they saw the fig tree withered away from the roots.</VERS>\r\n      <VERS vnumber=\"21\">And Peter calling to remembrance saith unto him, Rabbi, behold, the fig tree which thou cursedst is withered away.</VERS>\r\n      <VERS vnumber=\"22\">And Jesus answering saith unto them, Have faith in God.</VERS>\r\n      <VERS vnumber=\"23\">Verily I say unto you, Whosoever shall say unto this mountain, Be thou taken up and cast into the sea; and shall not doubt in his heart, but shall believe that what he saith cometh to pass; he shall have it.</VERS>\r\n      <VERS vnumber=\"24\">Therefore I say unto you, All things whatsoever ye pray and ask for, believe that ye receive them, and ye shall have them.</VERS>\r\n      <VERS vnumber=\"25\">And whensoever ye stand praying, forgive, if ye have aught against any one; that your Father also who is in heaven may forgive you your trespasses.</VERS>\r\n      <VERS vnumber=\"26\">[But if ye do not forgive, neither will your Father who is in heaven forgive your trespasses.]</VERS>\r\n      <VERS vnumber=\"27\">And 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;</VERS>\r\n      <VERS vnumber=\"28\">and they said unto him, By what authority doest thou these things? or who gave thee this authority to do these things?</VERS>\r\n      <VERS vnumber=\"29\">And Jesus said unto them, I will ask of you one question, and answer me, and I will tell you by what authority I do these things.</VERS>\r\n      <VERS vnumber=\"30\">The baptism of John, was it from heaven, or from men? answer me.</VERS>\r\n      <VERS vnumber=\"31\">And they reasoned with themselves, saying, If we shall say, From heaven; He will say, Why then did ye not believe him?</VERS>\r\n      <VERS vnumber=\"32\">But should we say, From men--they feared the people: for all verily held John to be a prophet.</VERS>\r\n      <VERS vnumber=\"33\">And they answered Jesus and say, We know not. And Jesus saith unto them, Neither tell I you by what authority I do these things.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">And he began to speak unto them in parables. A man planted a vineyard, and set a hedge about it, and digged a pit for the winepress, and built a tower, and let it out to husbandmen, and went into another country.</VERS>\r\n      <VERS vnumber=\"2\">And at the season he sent to the husbandmen a servant, that he might receive from the husbandmen of the fruits of the vineyard.</VERS>\r\n      <VERS vnumber=\"3\">And they took him, and beat him, and sent him away empty.</VERS>\r\n      <VERS vnumber=\"4\">And again he sent unto them another servant; and him they wounded in the head, and handled shamefully.</VERS>\r\n      <VERS vnumber=\"5\">And he sent another; and him they killed: and many others; beating some, and killing some.</VERS>\r\n      <VERS vnumber=\"6\">He had yet one, a beloved son: he sent him last unto them, saying, They will reverence my son.</VERS>\r\n      <VERS vnumber=\"7\">But those husbandmen said among themselves, This is the heir; come, let us kill him, and the inheritance shall be ours.</VERS>\r\n      <VERS vnumber=\"8\">And they took him, and killed him, and cast him forth out of the vineyard.</VERS>\r\n      <VERS vnumber=\"9\">What therefore will the lord of the vineyard do? he will come and destroy the husbandmen, and will give the vineyard unto others.</VERS>\r\n      <VERS vnumber=\"10\">Have ye not read even this scripture: The stone which the builders rejected, The same was made the head of the corner;</VERS>\r\n      <VERS vnumber=\"11\">This was from the Lord, And it is marvellous in our eyes?</VERS>\r\n      <VERS vnumber=\"12\">And they sought to lay hold on him; and they feared the multitude; for they perceived that he spake the parable against them: and they left him, and went away.</VERS>\r\n      <VERS vnumber=\"13\">And they send unto him certain of the Pharisees and of the Herodians, that they might catch him in talk.</VERS>\r\n      <VERS vnumber=\"14\">And when they were come, they say unto him, Teacher, we know that thou art true, and carest not for any one; for thou regardest not the person of men, but of a truth teachest the way of God: Is it lawful to give tribute unto Caesar, or not?</VERS>\r\n      <VERS vnumber=\"15\">Shall we give, or shall we not give? But he, knowing their hypocrisy, said unto them, Why make ye trial of me? bring me a denarius, that I may see it.</VERS>\r\n      <VERS vnumber=\"16\">And they brought it. And he saith unto them, Whose is this image and superscription? And they said unto him, Caesar`s.</VERS>\r\n      <VERS vnumber=\"17\">And Jesus said unto them, Render unto Caesar the things that are Caesar`s, and unto God the things that are God`s. And they marvelled greatly at him.</VERS>\r\n      <VERS vnumber=\"18\">And there come unto him Sadducees, who say that there is no resurrection; and they asked him, saying,</VERS>\r\n      <VERS vnumber=\"19\">Teacher, Moses wrote unto us, If a man`s brother die, and leave a wife behind him, and leave no child, that his brother should take his wife, and raise up seed unto his brother.</VERS>\r\n      <VERS vnumber=\"20\">There were seven brethren: and the first took a wife, and dying left no seed;</VERS>\r\n      <VERS vnumber=\"21\">and the second took her, and died, leaving no seed behind him; and the third likewise:</VERS>\r\n      <VERS vnumber=\"22\">and the seven left no seed. Last of all the woman also died.</VERS>\r\n      <VERS vnumber=\"23\">In the resurrection whose wife shall she be of them? for the seven had her to wife.</VERS>\r\n      <VERS vnumber=\"24\">Jesus said unto them, Is it not for this cause that ye err, that ye know not the scriptures, nor the power of God?</VERS>\r\n      <VERS vnumber=\"25\">For when they shall rise from the dead, they neither marry, nor are given in marriage; but are as angels in heaven.</VERS>\r\n      <VERS vnumber=\"26\">But as touching the dead, that they are raised; have ye not read in the book of Moses, in [the place concerning] the Bush, how God spake unto him, saying, I [am] the God of Abraham, and the God of Isaac, and the God of Jacob?</VERS>\r\n      <VERS vnumber=\"27\">He is not the God of the dead, but of the living: ye do greatly err.</VERS>\r\n      <VERS vnumber=\"28\">And one of the scribes came, and heard them questioning together, and knowing that he had answered them well, asked him, What commandment is the first of all?</VERS>\r\n      <VERS vnumber=\"29\">Jesus answered, The first is, Hear, O Israel; The Lord our God, the Lord is one:</VERS>\r\n      <VERS vnumber=\"30\">and 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.</VERS>\r\n      <VERS vnumber=\"31\">The second is this, Thou shalt love thy neighbor as thyself. There is none other commandment greater than these.</VERS>\r\n      <VERS vnumber=\"32\">And the scribe said unto him, Of a truth, Teacher, thou hast well said that he is one; and there is none other but he:</VERS>\r\n      <VERS vnumber=\"33\">and to love him with all the heart, and with all the understanding, and with all the strength, and to love his neighbor as himself, is much more than all whole burnt-offerings and sacrifices.</VERS>\r\n      <VERS vnumber=\"34\">And 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.</VERS>\r\n      <VERS vnumber=\"35\">And Jesus answered and said, as he taught in the temple, How say the scribes that the Christ is the son of David?</VERS>\r\n      <VERS vnumber=\"36\">David himself said in the Holy Spirit, The Lord said unto my Lord, Sit thou on my right hand, Till I make thine enemies the footstool of thy feet.</VERS>\r\n      <VERS vnumber=\"37\">David himself calleth him Lord; and whence is he his son? And the common people heard him gladly.</VERS>\r\n      <VERS vnumber=\"38\">And in his teaching he said, Beware of the scribes, who desire to walk in long robes, and [to have] salutations in the marketplaces,</VERS>\r\n      <VERS vnumber=\"39\">and chief seats in the synagogues, and chief places at feasts:</VERS>\r\n      <VERS vnumber=\"40\">they that devour widows` houses, and for a pretence make long prayers; these shall receive greater condemnation.</VERS>\r\n      <VERS vnumber=\"41\">And he sat down over against the treasury, and beheld how the multitude cast money into the treasury: and many that were rich cast in much.</VERS>\r\n      <VERS vnumber=\"42\">And there came a poor widow, and she cast in two mites, which make a farthing.</VERS>\r\n      <VERS vnumber=\"43\">And he called unto him his disciples, and said unto them, Verily I say unto you, This poor widow cast in more than all they that are casting into the treasury:</VERS>\r\n      <VERS vnumber=\"44\">for they all did cast in of their superfluity; but she of her want did cast in all that she had, [even] all her living.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">And as he went forth out of the temple, one of his disciples saith unto him, Teacher, behold, what manner of stones and what manner of buildings!</VERS>\r\n      <VERS vnumber=\"2\">And Jesus said unto him, Seest thou these great buildings? there shall not be left here one stone upon another, which shall not be thrown down.</VERS>\r\n      <VERS vnumber=\"3\">And as he sat on the mount of Olives over against the temple, Peter and James and John and Andrew asked him privately,</VERS>\r\n      <VERS vnumber=\"4\">Tell us, when shall these things be? and what [shall be] the sign when these things are all about to be accomplished?</VERS>\r\n      <VERS vnumber=\"5\">And Jesus began to say unto them, Take heed that no man lead you astray.</VERS>\r\n      <VERS vnumber=\"6\">Many shall come in my name, saying, I am [he]; and shall lead many astray.</VERS>\r\n      <VERS vnumber=\"7\">And when ye shall hear of wars and rumors of wars, be not troubled: [these things] must needs come to pass; but the end is not yet.</VERS>\r\n      <VERS vnumber=\"8\">For nation shall rise against nation, and kingdom against kingdom; there shall be earthquakes in divers places; there shall be famines: these things are the beginning of travail.</VERS>\r\n      <VERS vnumber=\"9\">But take ye heed to yourselves: for they shall deliver you up to councils; and in synagogues shall ye be beaten; and before governors and kings shall ye stand for my sake, for a testimony unto them.</VERS>\r\n      <VERS vnumber=\"10\">And the gospel must first be preached unto all the nations.</VERS>\r\n      <VERS vnumber=\"11\">And when they lead you [to judgment], and deliver you up, be not anxious beforehand what ye shall speak: but whatsoever shall be given you in that hour, that speak ye; for it is not ye that speak, but the Holy Spirit.</VERS>\r\n      <VERS vnumber=\"12\">And brother shall deliver up brother to death, and the father his child; and children shall rise up against parents, and cause them to be put to death.</VERS>\r\n      <VERS vnumber=\"13\">And ye shall be hated of all men for my name`s sake: but he that endureth to the end, the same shall be saved.</VERS>\r\n      <VERS vnumber=\"14\">But when ye see the abomination of desolation standing where he ought not (let him that readeth understand), then let them that are in Judaea flee unto the mountains:</VERS>\r\n      <VERS vnumber=\"15\">and let him that is on the housetop not go down, nor enter in, to take anything out his house:</VERS>\r\n      <VERS vnumber=\"16\">and let him that is in the field not return back to take his cloak.</VERS>\r\n      <VERS vnumber=\"17\">But woe unto them that are with child and to them that give suck in those days!</VERS>\r\n      <VERS vnumber=\"18\">And pray ye that it be not in the winter.</VERS>\r\n      <VERS vnumber=\"19\">For those days shall be tribulation, such as there hath not been the like from the beginning of the creation which God created until now, and never shall be.</VERS>\r\n      <VERS vnumber=\"20\">And except the Lord had shortened the days, no flesh would have been saved; but for the elect`s sake, whom he chose, he shortened the days.</VERS>\r\n      <VERS vnumber=\"21\">And then if any man shall say unto you, Lo, here is the Christ; or, Lo, there; believe [it] not:</VERS>\r\n      <VERS vnumber=\"22\">for there shall arise false Christs and false prophets, and shall show signs and wonders, that they may lead astray, if possible, the elect.</VERS>\r\n      <VERS vnumber=\"23\">But take ye heed: behold, I have told you all things beforehand.</VERS>\r\n      <VERS vnumber=\"24\">But in those days, after that tribulation, the sun shall be darkened, and the moon shall not give her light,</VERS>\r\n      <VERS vnumber=\"25\">and the stars shall be falling from heaven, and the powers that are in the heavens shall be shaken.</VERS>\r\n      <VERS vnumber=\"26\">And then shall they see the Son of man coming in clouds with great power and glory.</VERS>\r\n      <VERS vnumber=\"27\">And then shall he send forth the angels, and shall gather together his elect from the four winds, from the uttermost part of the earth to the uttermost part of heaven.</VERS>\r\n      <VERS vnumber=\"28\">Now from the fig tree learn her parable: when her branch is now become tender, and putteth forth its leaves, ye know that the summer is nigh;</VERS>\r\n      <VERS vnumber=\"29\">even so ye also, when ye see these things coming to pass, know ye that he is nigh, [even] at the doors.</VERS>\r\n      <VERS vnumber=\"30\">Verily I say unto you, This generation shall not pass away, until all these things be accomplished.</VERS>\r\n      <VERS vnumber=\"31\">Heaven and earth shall pass away: but my words shall not pass away.</VERS>\r\n      <VERS vnumber=\"32\">But of that day or that hour knoweth no one, not even the angels in heaven, neither the Son, but the Father.</VERS>\r\n      <VERS vnumber=\"33\">Take ye heed, watch and pray: for ye know not when the time is.</VERS>\r\n      <VERS vnumber=\"34\">[It is] as [when] a man, sojourning in another country, having left his house, and given authority to his servants, to each one his work, commanded also the porter to watch.</VERS>\r\n      <VERS vnumber=\"35\">Watch therefore: for ye know not when the lord of the house cometh, whether at even, or at midnight, or at cockcrowing, or in the morning;</VERS>\r\n      <VERS vnumber=\"36\">lest coming suddenly he find you sleeping.</VERS>\r\n      <VERS vnumber=\"37\">And what I say unto you I say unto all, Watch.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">Now after two days was [the feast of] the passover and the unleavened bread: and the chief priests and the scribes sought how they might take him with subtlety, and kill him:</VERS>\r\n      <VERS vnumber=\"2\">for they said, Not during the feast, lest haply there shall be a tumult of the people.</VERS>\r\n      <VERS vnumber=\"3\">And while he was in Bethany in the house of Simon the leper, as he sat at meat, there came a woman having an alabaster cruse of ointment of pure nard very costly; [and] she brake the cruse, and poured it over his head.</VERS>\r\n      <VERS vnumber=\"4\">But there were some that had indignation among themselves, [saying], To what purpose hath this waste of the ointment been made?</VERS>\r\n      <VERS vnumber=\"5\">For this ointment might have been sold for above three hundred shillings, and given to the poor. And they murmured against her.</VERS>\r\n      <VERS vnumber=\"6\">But Jesus said, Let her alone; why trouble ye her? she hath wrought a good work on me.</VERS>\r\n      <VERS vnumber=\"7\">For ye have the poor always with you, and whensoever ye will ye can do them good: but me ye have not always.</VERS>\r\n      <VERS vnumber=\"8\">She hath done what she could; she hath anointed my body beforehand for the burying.</VERS>\r\n      <VERS vnumber=\"9\">And verily I say unto you, Wheresoever the gospel shall be preached throughout the whole world, that also which this woman hath done shall be spoken of for a memorial of her.</VERS>\r\n      <VERS vnumber=\"10\">And Judas Iscariot, he that was one of the twelve, went away unto the chief priests, that he might deliver him unto them.</VERS>\r\n      <VERS vnumber=\"11\">And they, when they heard it, were glad, and promised to give him money. And he sought how he might conveniently deliver him [unto them].</VERS>\r\n      <VERS vnumber=\"12\">And on the first day of unleavened bread, when they sacrificed the passover, his disciples say unto him, Where wilt thou that we go and make ready that thou mayest eat the passover?</VERS>\r\n      <VERS vnumber=\"13\">And he sendeth two of his disciples, and saith unto them, Go into the city, and there shall meet you a man bearing a pitcher of water: follow him;</VERS>\r\n      <VERS vnumber=\"14\">and wheresoever he shall enter in, say to the master of the house, The Teacher saith, Where is my guest-chamber, where I shall eat the passover with my disciples?</VERS>\r\n      <VERS vnumber=\"15\">And he will himself show you a large upper room furnished [and] ready: and there make ready for us.</VERS>\r\n      <VERS vnumber=\"16\">And the disciples went forth, and came into the city, and found as he had said unto them: and they made ready the passover.</VERS>\r\n      <VERS vnumber=\"17\">And when it was evening he cometh with the twelve.</VERS>\r\n      <VERS vnumber=\"18\">And as they sat and were eating, Jesus said, Verily I say unto you, One of you shall betray me, [even] he that eateth with me.</VERS>\r\n      <VERS vnumber=\"19\">They began to be sorrowful, and to say unto him one by one, Is it I?</VERS>\r\n      <VERS vnumber=\"20\">And he said unto them, [It is] one of the twelve, he that dippeth with me in the dish.</VERS>\r\n      <VERS vnumber=\"21\">For the Son of man goeth, even as it is written of him: but woe unto that man through whom the Son of man is betrayed! good were it for that man if he had not been born.</VERS>\r\n      <VERS vnumber=\"22\">And as they were eating, he took bread, and when he had blessed, he brake it, and gave to them, and said, Take ye: this is my body.</VERS>\r\n      <VERS vnumber=\"23\">And he took a cup, and when he had given thanks, he gave to them: and they all drank of it.</VERS>\r\n      <VERS vnumber=\"24\">And he said unto them, This is my blood of the covenant, which is poured out for many.</VERS>\r\n      <VERS vnumber=\"25\">Verily I say unto you, I shall no more drink of the fruit of the vine, until that day when I drink it new in the kingdom of God.</VERS>\r\n      <VERS vnumber=\"26\">And when they had sung a hymn, they went out unto the mount of Olives.</VERS>\r\n      <VERS vnumber=\"27\">And Jesus saith unto them, All ye shall be offended: for it is written, I will smite the shepherd, and the sheep shall be scattered abroad.</VERS>\r\n      <VERS vnumber=\"28\">Howbeit, after I am raised up, I will go before you into Galilee.</VERS>\r\n      <VERS vnumber=\"29\">But Peter said unto him, Although all shall be offended, yet will not I.</VERS>\r\n      <VERS vnumber=\"30\">And Jesus saith unto him, Verily I say unto thee, that thou to-day, [even] this night, before the cock crow twice, shalt deny me thrice.</VERS>\r\n      <VERS vnumber=\"31\">But he spake exceedingly vehemently, If I must die with thee, I will not deny thee. And in like manner also said they all.</VERS>\r\n      <VERS vnumber=\"32\">And they come unto a place which was named Gethsemane: and he saith unto his disciples, Sit ye here, while I pray.</VERS>\r\n      <VERS vnumber=\"33\">And he taketh with him Peter and James and John, and began to be greatly amazed, and sore troubled.</VERS>\r\n      <VERS vnumber=\"34\">And he saith unto them, My soul is exceeding sorrowful even unto death: abide ye here, and watch.</VERS>\r\n      <VERS vnumber=\"35\">And he went forward a little, and fell on the ground, and prayed that, if it were possible, the hour might pass away from him.</VERS>\r\n      <VERS vnumber=\"36\">And he said, Abba, Father, all things are possible unto thee; remove this cup from me: howbeit not what I will, but what thou wilt.</VERS>\r\n      <VERS vnumber=\"37\">And he cometh, and findeth them sleeping, and saith unto Peter, Simon, sleepest thou? couldest thou not watch one hour?</VERS>\r\n      <VERS vnumber=\"38\">Watch and pray, that ye enter not into temptation: the spirit indeed is willing, but the flesh is weak.</VERS>\r\n      <VERS vnumber=\"39\">And again he went away, and prayed, saying the same words.</VERS>\r\n      <VERS vnumber=\"40\">And again he came, and found them sleeping, for their eyes were very heavy; and they knew not what to answer him.</VERS>\r\n      <VERS vnumber=\"41\">And 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.</VERS>\r\n      <VERS vnumber=\"42\">Arise, let us be going: behold, he that betrayeth me is at hand.</VERS>\r\n      <VERS vnumber=\"43\">And straightway, while he yet spake, cometh Judas, one of the twelve, and with him a multitude with swords and staves, from the chief priests and the scribes and the elders.</VERS>\r\n      <VERS vnumber=\"44\">Now he that betrayed him had given them a token, saying, Whomsoever I shall kiss, that is he; take him, and lead him away safely.</VERS>\r\n      <VERS vnumber=\"45\">And when he was come, straightway he came to him, and saith, Rabbi; and kissed him.</VERS>\r\n      <VERS vnumber=\"46\">And they laid hands on him, and took him.</VERS>\r\n      <VERS vnumber=\"47\">But a certain one of them that stood by drew his sword, and smote the servant of the high priest, and struck off his ear.</VERS>\r\n      <VERS vnumber=\"48\">And Jesus answered and said unto them, Are ye come out, as against a robber, with swords and staves to seize me?</VERS>\r\n      <VERS vnumber=\"49\">I was daily with you in the temple teaching, and ye took me not: but [this is done] that the scriptures might be fulfilled.</VERS>\r\n      <VERS vnumber=\"50\">And they all left him, and fled.</VERS>\r\n      <VERS vnumber=\"51\">And a certain young man followed with him, having a linen cloth cast about him, over [his] naked [body]: and they lay hold on him;</VERS>\r\n      <VERS vnumber=\"52\">but he left the linen cloth, and fled naked.</VERS>\r\n      <VERS vnumber=\"53\">And they led Jesus away to the high priest: and there come together with him all the chief priests and the elders and the scribes.</VERS>\r\n      <VERS vnumber=\"54\">And Peter had followed him afar off, even within, into the court of the high priest; and he was sitting with the officers, and warming himself in the light [of the fire].</VERS>\r\n      <VERS vnumber=\"55\">Now the chief priests and the whole council sought witness against Jesus to put him to death; and found it not.</VERS>\r\n      <VERS vnumber=\"56\">For many bare false witness against him, and their witness agreed not together.</VERS>\r\n      <VERS vnumber=\"57\">And there stood up certain, and bare false witness against him, saying,</VERS>\r\n      <VERS vnumber=\"58\">We heard him say, I will destroy this temple that is made with hands, and in three days I will build another made without hands.</VERS>\r\n      <VERS vnumber=\"59\">And not even so did their witness agree together.</VERS>\r\n      <VERS vnumber=\"60\">And the high priest stood up in the midst, and asked Jesus, saying, Answerest thou nothing? what is it which these witness against thee?</VERS>\r\n      <VERS vnumber=\"61\">But he held his peace, and answered nothing. Again the high priest asked him, and saith unto him, Art thou the Christ, the Son of the Blessed?</VERS>\r\n      <VERS vnumber=\"62\">And Jesus said, I am: and ye shall see the Son of man sitting at the right hand of Power, and coming with the clouds of heaven.</VERS>\r\n      <VERS vnumber=\"63\">And the high priest rent his clothes, and saith, What further need have we of witnesses?</VERS>\r\n      <VERS vnumber=\"64\">Ye have heard the blasphemy: what think ye? And they all condemned him to be worthy of death.</VERS>\r\n      <VERS vnumber=\"65\">And some began to spit on him, and to cover his face, and to buffet him, and to say unto him, Prophesy: and the officers received him with blows of their hands.</VERS>\r\n      <VERS vnumber=\"66\">And as Peter was beneath in the court, there cometh one of the maids of the high priest;</VERS>\r\n      <VERS vnumber=\"67\">and seeing Peter warming himself, she looked upon him, and saith, Thou also wast with the Nazarene, [even] Jesus.</VERS>\r\n      <VERS vnumber=\"68\">But he denied, saying, I neither know, nor understand what thou sayest: and he went out into the porch; and the cock crew.</VERS>\r\n      <VERS vnumber=\"69\">And the maid saw him, and began again to say to them that stood by, This is [one] of them.</VERS>\r\n      <VERS vnumber=\"70\">But he again denied it. And after a little while again they that stood by said to Peter, of a truth thou art [one] of them; for thou art a Galilaean.</VERS>\r\n      <VERS vnumber=\"71\">But he began to curse, and to swear, I know not this man of whom ye speak.</VERS>\r\n      <VERS vnumber=\"72\">And straightway the second time the cock crew. And Peter called to mind the word, how that Jesus said unto him, Before the cock crow twice, thou shalt deny me thrice. And when he thought thereon, he wept.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">And straightway in the morning the chief priests with the elders and scribes, and the whole council, held a consultation, and bound Jesus, and carried him away, and delivered him up to Pilate.</VERS>\r\n      <VERS vnumber=\"2\">And Pilate asked him, Art thou the King of the Jews? And he answering saith unto him, Thou sayest.</VERS>\r\n      <VERS vnumber=\"3\">And the chief priests accused him of many things.</VERS>\r\n      <VERS vnumber=\"4\">And Pilate again asked him, saying, Answerest thou nothing? behold how many things they accuse thee of.</VERS>\r\n      <VERS vnumber=\"5\">But Jesus no more answered anything; insomuch that Pilate marvelled.</VERS>\r\n      <VERS vnumber=\"6\">Now at the feast he used to release unto them one prisoner, whom they asked of him.</VERS>\r\n      <VERS vnumber=\"7\">And there was one called Barabbas, [lying] bound with them that had made insurrection, men who in the insurrection had committed murder.</VERS>\r\n      <VERS vnumber=\"8\">And the multitude went up and began to ask him [to do] as he was wont to do unto them.</VERS>\r\n      <VERS vnumber=\"9\">And Pilate answered them, saying, Will ye that I release unto you the King of the Jews?</VERS>\r\n      <VERS vnumber=\"10\">For he perceived that for envy the chief priests had delivered him up.</VERS>\r\n      <VERS vnumber=\"11\">But the chief priests stirred up the multitude, that he should rather release Barabbas unto them.</VERS>\r\n      <VERS vnumber=\"12\">And Pilate again answered and said unto them, What then shall I do unto him whom ye call the King of the Jews?</VERS>\r\n      <VERS vnumber=\"13\">And they cried out again, Crucify him.</VERS>\r\n      <VERS vnumber=\"14\">And Pilate said unto them, Why, what evil hath he done? But they cried out exceedingly, Crucify him.</VERS>\r\n      <VERS vnumber=\"15\">And Pilate, wishing to content the multitude, released unto them Barabbas, and delivered Jesus, when he had scourged him, to be crucified.</VERS>\r\n      <VERS vnumber=\"16\">And the soldiers led him away within the court, which is the Praetorium; and they call together the whole band.</VERS>\r\n      <VERS vnumber=\"17\">And they clothe him with purple, and platting a crown of thorns, they put it on him;</VERS>\r\n      <VERS vnumber=\"18\">and they began to salute him, Hail, King of the Jews!</VERS>\r\n      <VERS vnumber=\"19\">And they smote his head with a reed, and spat upon him, and bowing their knees worshipped him.</VERS>\r\n      <VERS vnumber=\"20\">And when they had mocked him, they took off from him the purple, and put on him his garments. And they lead him out to crucify him.</VERS>\r\n      <VERS vnumber=\"21\">And they compel one passing by, Simon of Cyrene, coming from the country, the father of Alexander and Rufus, to go [with them], that he might bear his cross.</VERS>\r\n      <VERS vnumber=\"22\">And they bring him unto the place Golgotha, which is, being interpreted, The place of a skull.</VERS>\r\n      <VERS vnumber=\"23\">And they offered him wine mingled with myrrh: but he received it not.</VERS>\r\n      <VERS vnumber=\"24\">And they crucify him, and part his garments among them, casting lots upon them, what each should take.</VERS>\r\n      <VERS vnumber=\"25\">And it was the third hour, and they crucified him.</VERS>\r\n      <VERS vnumber=\"26\">And the superscription of his accusation was written over, THE KING OF THE JEWS.</VERS>\r\n      <VERS vnumber=\"27\">And with him they crucify two robbers; one on his right hand, and one on his left.</VERS>\r\n      <VERS vnumber=\"28\">[And the scripture was fulfilled, which saith, And he was reckoned with transgressors.]</VERS>\r\n      <VERS vnumber=\"29\">And they that passed by railed on him, wagging their heads, and saying, Ha! Thou that destroyest the temple, and buildest it in three days,</VERS>\r\n      <VERS vnumber=\"30\">save thyself, and come down from the cross.</VERS>\r\n      <VERS vnumber=\"31\">In like manner also the chief priests mocking [him] among themselves with the scribes said, He saved others; himself he cannot save.</VERS>\r\n      <VERS vnumber=\"32\">Let the Christ, the King of Israel, now come down from the cross, that we may see and believe. And they that were crucified with him reproached him.</VERS>\r\n      <VERS vnumber=\"33\">And when the sixth hour was come, there was darkness over the whole land until the ninth hour.</VERS>\r\n      <VERS vnumber=\"34\">And at the ninth hour Jesus cried with a loud voice, Eloi, Eloi, lama sabachthani? which is, being interpreted, My God, my God, why hast thou forsaken me?</VERS>\r\n      <VERS vnumber=\"35\">And some of them that stood by, when they heard it, said, Behold, he calleth Elijah.</VERS>\r\n      <VERS vnumber=\"36\">And one ran, and filling a sponge full of vinegar, put it on a reed, and gave him to drink, saying, Let be; let us see whether Elijah cometh to take him down.</VERS>\r\n      <VERS vnumber=\"37\">And Jesus uttered a loud voice, and gave up the ghost.</VERS>\r\n      <VERS vnumber=\"38\">And the veil of the temple was rent in two from the top to the bottom.</VERS>\r\n      <VERS vnumber=\"39\">And when the centurion, who stood by over against him, saw that he so gave up the ghost, he said, Truly this man was the Son of God.</VERS>\r\n      <VERS vnumber=\"40\">And there were also women beholding from afar: among whom [were] both Mary Magdalene, and Mary the mother of James the less and of Joses, and Salome;</VERS>\r\n      <VERS vnumber=\"41\">who, when he was in Galilee, followed him, and ministered unto him; and many other women that came up with him unto Jerusalem.</VERS>\r\n      <VERS vnumber=\"42\">And when even was now come, because it was the Preparation, that is, the day before the sabbath,</VERS>\r\n      <VERS vnumber=\"43\">there came Joseph of Arimathaea, a councillor of honorable estate, who also himself was looking for the kingdom of God; and he boldly went in unto Pilate, and asked for the body of Jesus.</VERS>\r\n      <VERS vnumber=\"44\">And Pilate marvelled if he were already dead: and calling unto him the centurion, he asked him whether he had been any while dead.</VERS>\r\n      <VERS vnumber=\"45\">And when he learned it of the centurion, he granted the corpse to Joseph.</VERS>\r\n      <VERS vnumber=\"46\">And he bought a linen cloth, and taking him down, wound him in the linen cloth, and laid him in a tomb which had been hewn out of a rock; and he rolled a stone against the door of the tomb.</VERS>\r\n      <VERS vnumber=\"47\">And Mary Magdalene and Mary the [mother] of Joses beheld where he was laid.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">And when the sabbath was past, Mary Magdalene, and Mary the [mother] of James, and Salome, bought spices, that they might come and anoint him.</VERS>\r\n      <VERS vnumber=\"2\">And very early on the first day of the week, they come to the tomb when the sun was risen.</VERS>\r\n      <VERS vnumber=\"3\">And they were saying among themselves, Who shall roll us away the stone from the door of the tomb?</VERS>\r\n      <VERS vnumber=\"4\">and looking up, they see that the stone is rolled back: for it was exceeding great.</VERS>\r\n      <VERS vnumber=\"5\">And entering into the tomb, they saw a young man sitting on the right side, arrayed in a white robe; and they were amazed.</VERS>\r\n      <VERS vnumber=\"6\">And he saith unto them, Be not amazed: ye seek Jesus, the Nazarene, who hath been crucified: he is risen; he is not here: behold, the place where they laid him!</VERS>\r\n      <VERS vnumber=\"7\">But go, tell his disciples and Peter, He goeth before you into Galilee: there shall ye see him, as he said unto you.</VERS>\r\n      <VERS vnumber=\"8\">And they went out, and fled from the tomb; for trembling and astonishment had come upon them: and they said nothing to any one; for they were afraid.</VERS>\r\n      <VERS vnumber=\"9\">Now when he was risen early on the first day of the week, he appeared first to Mary Magdalene, from whom he had cast out seven demons.</VERS>\r\n      <VERS vnumber=\"10\">She went and told them that had been with him, as they mourned and wept.</VERS>\r\n      <VERS vnumber=\"11\">And they, when they heard that he was alive, and had been seen of her, disbelieved.</VERS>\r\n      <VERS vnumber=\"12\">And after these things he was manifested in another form unto two of them, as they walked, on their way into the country.</VERS>\r\n      <VERS vnumber=\"13\">And they went away and told it unto the rest: neither believed they them.</VERS>\r\n      <VERS vnumber=\"14\">And afterward he was manifested unto the eleven themselves as they sat at meat; and he upbraided them with their unbelief and hardness of heart, because they believed not them that had seen him after he was risen.</VERS>\r\n      <VERS vnumber=\"15\">And he said unto them, Go ye into all the world, and preach the gospel to the whole creation.</VERS>\r\n      <VERS vnumber=\"16\">He that believeth and is baptized shall be saved; but he that disbelieveth shall be condemned.</VERS>\r\n      <VERS vnumber=\"17\">And these signs shall accompany them that believe: in my name shall they cast out demons; they shall speak with new tongues;</VERS>\r\n      <VERS vnumber=\"18\">they shall take up serpents, and if they drink any deadly thing, it shall in no wise hurt them; they shall lay hands on the sick, and they shall recover.</VERS>\r\n      <VERS vnumber=\"19\">So then the Lord Jesus, after he had spoken unto them, was received up into heaven, and sat down at the right hand of God.</VERS>\r\n      <VERS vnumber=\"20\">And they went forth, and preached everywhere, the Lord working with them, and confirming the word by the signs that followed. Amen.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"42\" bname=\"Luke\" bsname=\"Luke\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">Forasmuch as many have taken in hand to draw up a narrative concerning those matters which have been fulfilled among us,</VERS>\r\n      <VERS vnumber=\"2\">even as they delivered them unto us, who from the beginning were eyewitnesses and ministers of the word,</VERS>\r\n      <VERS vnumber=\"3\">it seemed good to me also, having traced the course of all things accurately from the first, to write unto thee in order, most excellent Theophilus;</VERS>\r\n      <VERS vnumber=\"4\">that thou mightest know the certainty concerning the things wherein thou wast instructed.</VERS>\r\n      <VERS vnumber=\"5\">There was in the days of Herod, king of Judaea, a certain priest named Zacharias, of the course of Abijah: and he had a wife of the daughters of Aaron, and her name was Elisabeth.</VERS>\r\n      <VERS vnumber=\"6\">And they were both righteous before God, walking in all the commandments and ordinances of the Lord blameless.</VERS>\r\n      <VERS vnumber=\"7\">And they had no child, because that Elisabeth was barren, and they both were [now] well stricken in years.</VERS>\r\n      <VERS vnumber=\"8\">Now it came to pass, while he executed the priest`s office before God in the order of his course,</VERS>\r\n      <VERS vnumber=\"9\">according to the custom of the priest`s office, his lot was to enter into the temple of the Lord and burn incense.</VERS>\r\n      <VERS vnumber=\"10\">And the whole multitude of the people were praying without at the hour of incense.</VERS>\r\n      <VERS vnumber=\"11\">And there appeared unto him an angel of the Lord standing on the right side of altar of incense.</VERS>\r\n      <VERS vnumber=\"12\">And Zacharias was troubled when he saw [him], and fear fell upon him.</VERS>\r\n      <VERS vnumber=\"13\">But the angel said unto him, Fear not, Zacharias: because thy supplication is heard, and thy wife Elisabeth shall bear thee a son, and thou shalt call his name John.</VERS>\r\n      <VERS vnumber=\"14\">And thou shalt have joy and gladness; and many shall rejoice at his birth.</VERS>\r\n      <VERS vnumber=\"15\">For he shall be great in the sight of the Lord, and he shall drink no wine nor strong drink; and he shall be filled with the Holy Spirit, even from his mother`s womb.</VERS>\r\n      <VERS vnumber=\"16\">And many of the children of Israel shall be turn unto the Lord their God.</VERS>\r\n      <VERS vnumber=\"17\">And he shall go before his face in the spirit and power of Elijah, to turn the hearts of the fathers to the children, and the disobedient [to walk] in the wisdom of the just; to make ready for the Lord a people prepared [for him].</VERS>\r\n      <VERS vnumber=\"18\">And Zacharias said unto the angel, Whereby shall I know this? for I am an old man, and my wife well stricken in years.</VERS>\r\n      <VERS vnumber=\"19\">And the angel answering said unto him, I am Gabriel, that stand in the presence of God; and I was sent to speak unto thee, and to bring thee these good tidings.</VERS>\r\n      <VERS vnumber=\"20\">And behold, thou shalt be silent and not able to speak, until the day that these things shall come to pass, because thou believedst not my words, which shall be fulfilled in their season.</VERS>\r\n      <VERS vnumber=\"21\">And the people were waiting for Zacharias, and they marvelled while he tarried in the temple.</VERS>\r\n      <VERS vnumber=\"22\">And when he came out, he could not speak unto them: and they perceived that he had seen a vision in the temple: and he continued making signs unto them, and remained dumb.</VERS>\r\n      <VERS vnumber=\"23\">And it came to pass, when the days of his ministration were fulfilled, he departed unto his house.</VERS>\r\n      <VERS vnumber=\"24\">And after these days Elisabeth his wife conceived; and she hid herself five months, saying,</VERS>\r\n      <VERS vnumber=\"25\">Thus hath the Lord done unto me in the days wherein he looked upon [me], to take away my reproach among men.</VERS>\r\n      <VERS vnumber=\"26\">Now in the sixth month the angel Gabriel was sent from God unto a city of Galilee, named Nazareth,</VERS>\r\n      <VERS vnumber=\"27\">to a virgin betrothed to a man whose name was Joseph, of the house of David; and the virgin`s name was Mary.</VERS>\r\n      <VERS vnumber=\"28\">And he came in unto her, and said, Hail, thou that art highly favored, the Lord [is] with thee.</VERS>\r\n      <VERS vnumber=\"29\">But she was greatly troubled at the saying, and cast in her mind what manner of salutation this might be.</VERS>\r\n      <VERS vnumber=\"30\">And the angel said unto her, Fear not, Mary: for thou hast found favor with God.</VERS>\r\n      <VERS vnumber=\"31\">And behold, thou shalt conceive in thy womb, and bring forth a son, and shalt call his name JESUS.</VERS>\r\n      <VERS vnumber=\"32\">He shall be great, and shall be called the Son of the Most High: and the Lord God shall give unto him the throne of his father David:</VERS>\r\n      <VERS vnumber=\"33\">and he shall reign over the house of Jacob for ever; and of his kingdom there shall be no end.</VERS>\r\n      <VERS vnumber=\"34\">And Mary said unto the angel, How shall this be, seeing I know not a man?</VERS>\r\n      <VERS vnumber=\"35\">And the angel answered and said unto her, The Holy Spirit shall come upon thee, and the power of the Most High shall overshadow thee: wherefore also the holy thing which is begotten shall be called the Son of God.</VERS>\r\n      <VERS vnumber=\"36\">And behold, Elisabeth thy kinswoman, she also hath conceived a son in her old age; and this is the sixth month with her that was called barren.</VERS>\r\n      <VERS vnumber=\"37\">For no word from God shall be void of power.</VERS>\r\n      <VERS vnumber=\"38\">And Mary said, Behold, the handmaid of the Lord; be it unto me according to thy word. And the angel departed from her.</VERS>\r\n      <VERS vnumber=\"39\">And Mary arose in these days and went into the hill country with haste, into a city of Judah;</VERS>\r\n      <VERS vnumber=\"40\">and entered into the house of Zacharias and saluted Elisabeth.</VERS>\r\n      <VERS vnumber=\"41\">And it came to pass, when Elisabeth heard the salutation of Mary, the babe leaped in her womb; and Elisabeth was filled with the Holy Spirit;</VERS>\r\n      <VERS vnumber=\"42\">and she lifted up her voice with a loud cry, and said, Blessed [art] thou among women, and blessed [is] the fruit of thy womb.</VERS>\r\n      <VERS vnumber=\"43\">And whence is this to me, that the mother of my Lord should come unto me?</VERS>\r\n      <VERS vnumber=\"44\">For behold, when the voice of thy salutation came into mine ears, the babe leaped in my womb for joy.</VERS>\r\n      <VERS vnumber=\"45\">And blessed [is] she that believed; for there shall be a fulfilment of the things which have been spoken to her from the Lord.</VERS>\r\n      <VERS vnumber=\"46\">And Mary said, My soul doth magnify the Lord,</VERS>\r\n      <VERS vnumber=\"47\">And my spirit hath rejoiced in God my Saviour.</VERS>\r\n      <VERS vnumber=\"48\">For he hath looked upon the low estate of his handmaid: For behold, from henceforth all generations shall call me       blessed.</VERS>\r\n      <VERS vnumber=\"49\">For he that is mighty hath done to me great things; And holy is his name.</VERS>\r\n      <VERS vnumber=\"50\">And his mercy is unto generations and generations On them that fear him.</VERS>\r\n      <VERS vnumber=\"51\">He hath showed strength with his arm; He hath scattered the proud in the imagination of their heart.</VERS>\r\n      <VERS vnumber=\"52\">He hath put down princes from [their] thrones, And hath exalted them of low degree.</VERS>\r\n      <VERS vnumber=\"53\">The hungry he hath filled with good things; And the rich he hath sent empty away.</VERS>\r\n      <VERS vnumber=\"54\">He hath given help to Israel his servant, That he might remember mercy</VERS>\r\n      <VERS vnumber=\"55\">(As he spake unto our fathers) Toward Abraham and his seed for ever.</VERS>\r\n      <VERS vnumber=\"56\">And Mary abode with her about three months, and returned unto her house.</VERS>\r\n      <VERS vnumber=\"57\">Now Elisabeth`s time was fulfilled that she should be delivered; and she brought forth a son.</VERS>\r\n      <VERS vnumber=\"58\">And her neighbors and her kinsfolk heard that the Lord had magnified his mercy towards her; and they rejoiced with her.</VERS>\r\n      <VERS vnumber=\"59\">And it came to pass on the eighth day, that they came to circumcise the child; and they would have called him Zacharias, after the name of the father.</VERS>\r\n      <VERS vnumber=\"60\">And his mother answered and said, Not so; but he shall be called John.</VERS>\r\n      <VERS vnumber=\"61\">And they said unto her, There is none of thy kindred that is called by this name.</VERS>\r\n      <VERS vnumber=\"62\">And they made signs to his father, what he would have him called.</VERS>\r\n      <VERS vnumber=\"63\">And he asked for a writing tablet, and wrote, saying, His name is John. And they marvelled all.</VERS>\r\n      <VERS vnumber=\"64\">And his mouth was opened immediately, and his tongue [loosed], and he spake, blessing God.</VERS>\r\n      <VERS vnumber=\"65\">And fear came on all that dwelt round about them: and all these sayings were noised abroad throughout all the hill country of Judaea.</VERS>\r\n      <VERS vnumber=\"66\">And all that heard them laid them up in their heart, saying, What then shall this child be? For the hand of the Lord was with him.</VERS>\r\n      <VERS vnumber=\"67\">And his father Zacharias was filled with the Holy Spirit, and prophesied, saying,</VERS>\r\n      <VERS vnumber=\"68\">Blessed [be] the Lord, the God of Israel; For he hath visited and wrought redemption for his people,</VERS>\r\n      <VERS vnumber=\"69\">And hath raised up a horn of salvation for us In the house of his servant David</VERS>\r\n      <VERS vnumber=\"70\">(As he spake by the mouth of his holy prophets that have       been from of old),</VERS>\r\n      <VERS vnumber=\"71\">Salvation from our enemies, and from the hand of all that       hate us;</VERS>\r\n      <VERS vnumber=\"72\">To show mercy towards, our fathers, And to remember his holy covenant;</VERS>\r\n      <VERS vnumber=\"73\">The oath which he spake unto Abraham our father,</VERS>\r\n      <VERS vnumber=\"74\">To grant unto us that we being delivered out of the hand       of our enemies Should serve him without fear,</VERS>\r\n      <VERS vnumber=\"75\">In holiness and righteousness before him all our days.</VERS>\r\n      <VERS vnumber=\"76\">Yea and thou, child, shalt be called the prophet of the       Most High: For thou shalt go before the face of the Lord to make ready his       ways;</VERS>\r\n      <VERS vnumber=\"77\">To give knowledge of salvation unto his people In the remission of their sins,</VERS>\r\n      <VERS vnumber=\"78\">Because of the tender mercy of our God, Whereby the dayspring from on high shall visit us,</VERS>\r\n      <VERS vnumber=\"79\">To shine upon them that sit in darkness and the shadow of       death; To guide our feet into the way of peace.</VERS>\r\n      <VERS vnumber=\"80\">And the child grew, and waxed strong in spirit, and was in the deserts till the day of his showing unto Israel.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">Now it came to pass in those days, there went out a decree from Caesar Augustus, that all the world should be enrolled.</VERS>\r\n      <VERS vnumber=\"2\">This was the first enrolment made when Quirinius was governor of Syria.</VERS>\r\n      <VERS vnumber=\"3\">And all went to enrol themselves, every one to his own city.</VERS>\r\n      <VERS vnumber=\"4\">And Joseph also went up from Galilee, out of the city of Nazareth, into Judaea, to the city of David, which is called Bethlehem, because he was of the house and family of David;</VERS>\r\n      <VERS vnumber=\"5\">to enrol himself with Mary, who was betrothed to him, being great with child.</VERS>\r\n      <VERS vnumber=\"6\">And it came to pass, while they were there, the days were fulfilled that she should be delivered.</VERS>\r\n      <VERS vnumber=\"7\">And she brought forth her firstborn son; and she wrapped him in swaddling clothes, and laid him in a manger, because there was no room for them in the inn.</VERS>\r\n      <VERS vnumber=\"8\">And there were shepherds in the same country abiding in the field, and keeping watch by night over their flock.</VERS>\r\n      <VERS vnumber=\"9\">And an angel of the Lord stood by them, and the glory of the Lord shone round about them: and they were sore afraid.</VERS>\r\n      <VERS vnumber=\"10\">And the angel said unto them, Be not afraid; for behold, I bring you good tidings of great joy which shall be to all the people:</VERS>\r\n      <VERS vnumber=\"11\">for there is born to you this day in the city of David a Saviour, who is Christ the Lord.</VERS>\r\n      <VERS vnumber=\"12\">And this [is] the sign unto you: Ye shall find a babe wrapped in swaddling clothes, and lying in a manger.</VERS>\r\n      <VERS vnumber=\"13\">And suddenly there was with the angel a multitude of the heavenly host praising God, and saying,</VERS>\r\n      <VERS vnumber=\"14\">Glory to God in the highest, And on earth peace among men in whom he is well pleased.</VERS>\r\n      <VERS vnumber=\"15\">And it came to pass, when the angels went away from them into heaven, the shepherds said one to another, Let us now go even unto Bethlehem, and see this thing that is come to pass, which the Lord hath made known unto us.</VERS>\r\n      <VERS vnumber=\"16\">And they came with haste, and found both Mary and Joseph, and the babe lying in the manger.</VERS>\r\n      <VERS vnumber=\"17\">And when they saw it, they made known concerning the saying which was spoken to them about this child.</VERS>\r\n      <VERS vnumber=\"18\">And all that heard it wondered at the things which were spoken unto them by the shepherds.</VERS>\r\n      <VERS vnumber=\"19\">But Mary kept all these sayings, pondering them in her heart.</VERS>\r\n      <VERS vnumber=\"20\">And the shepherds returned, glorifying and praising God for all the things that they had heard and seen, even as it was spoken unto them.</VERS>\r\n      <VERS vnumber=\"21\">And when eight days were fulfilled for circumcising him, his name was called JESUS, which was so called by the angel before he was conceived in the womb.</VERS>\r\n      <VERS vnumber=\"22\">And when the days of their purification according to the law of Moses were fulfilled, they brought him up to Jerusalem, to present him to the Lord</VERS>\r\n      <VERS vnumber=\"23\">(as it is written in the law of the Lord, Every male that openeth the womb shall be called holy to the Lord),</VERS>\r\n      <VERS vnumber=\"24\">and to offer a sacrifice according to that which is said in the law of the Lord, A pair of turtledoves, or two young pigeons.</VERS>\r\n      <VERS vnumber=\"25\">And behold, there was a man in Jerusalem whose name was Simeon; and this man was righteous and devout, looking for the consolation of Israel: and the Holy Spirit was upon him.</VERS>\r\n      <VERS vnumber=\"26\">And it had been revealed unto him by the Holy Spirit, that he should not see death, before he had seen the Lord`s Christ.</VERS>\r\n      <VERS vnumber=\"27\">And he came in the Spirit into the temple: and when the parents brought in the child Jesus, that they might do concerning him after the custom of the law,</VERS>\r\n      <VERS vnumber=\"28\">then he received him into his arms, and blessed God, and said,</VERS>\r\n      <VERS vnumber=\"29\">Now lettest thou thy servant depart, Lord, According to thy word, in peace;</VERS>\r\n      <VERS vnumber=\"30\">For mine eyes have seen thy salvation,</VERS>\r\n      <VERS vnumber=\"31\">Which thou hast prepared before the face of all peoples;</VERS>\r\n      <VERS vnumber=\"32\">A light for revelation to the Gentiles, And the glory of thy people Israel.</VERS>\r\n      <VERS vnumber=\"33\">And his father and his mother were marvelling at the things which were spoken concerning him;</VERS>\r\n      <VERS vnumber=\"34\">and Simeon blessed them, and said unto Mary his mother, Behold, this [child] is set for the falling and the rising of many in Israel; and for a sign which is spoken against;</VERS>\r\n      <VERS vnumber=\"35\">yea and a sword shall pierce through thine own soul; that thoughts out of many hearts may be revealed.</VERS>\r\n      <VERS vnumber=\"36\">And there was one Anna, a prophetess, the daughter of Phanuel, of the tribe of Asher (she was of a great age, having lived with a husband seven years from her virginity,</VERS>\r\n      <VERS vnumber=\"37\">and she had been a widow even unto fourscore and four years), who departed not from the temple, worshipping with fastings and supplications night and day.</VERS>\r\n      <VERS vnumber=\"38\">And coming up at that very hour she gave thanks unto God, and spake of him to all them that were looking for the redemption of Jerusalem.</VERS>\r\n      <VERS vnumber=\"39\">And when they had accomplished all things that were according to the law of the Lord, they returned into Galilee, to their own city Nazareth.</VERS>\r\n      <VERS vnumber=\"40\">And the child grew, and waxed strong, filled with wisdom: and the grace of God was upon him.</VERS>\r\n      <VERS vnumber=\"41\">And his parents went every year to Jerusalem at the feast of the passover.</VERS>\r\n      <VERS vnumber=\"42\">And when he was twelve years old, they went up after the custom of the feast;</VERS>\r\n      <VERS vnumber=\"43\">and when they had fulfilled the days, as they were returning, the boy Jesus tarried behind in Jerusalem; and his parents knew it not;</VERS>\r\n      <VERS vnumber=\"44\">but supposing him to be in the company, they went a day`s journey; and they sought for him among their kinsfolk and acquaintance:</VERS>\r\n      <VERS vnumber=\"45\">and when they found him not, they returned to Jerusalem, seeking for him.</VERS>\r\n      <VERS vnumber=\"46\">And it came to pass, after three days they found him in the temple, sitting in the midst of the teachers, both hearing them, and asking them questions:</VERS>\r\n      <VERS vnumber=\"47\">and all that heard him were amazed at his understanding and his answers.</VERS>\r\n      <VERS vnumber=\"48\">And when they saw him, they were astonished; and his mother said unto him, Son, why hast thou thus dealt with us? behold, thy father and I sought thee sorrowing.</VERS>\r\n      <VERS vnumber=\"49\">And he said unto them, How is it that ye sought me? knew ye not that I must be in my Father`s house?</VERS>\r\n      <VERS vnumber=\"50\">And they understood not the saying which he spake unto them.</VERS>\r\n      <VERS vnumber=\"51\">And he went down with them, and came to Nazareth; and he was subject unto them: and his mother kept all [these] sayings in her heart.</VERS>\r\n      <VERS vnumber=\"52\">And Jesus advanced in wisdom and stature, and in favor with God and men.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Now 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 the region of Ituraea and Trachonitis, and Lysanias tetrarch of Abilene,</VERS>\r\n      <VERS vnumber=\"2\">in the highpriesthood of Annas and Caiaphas, the word of God came unto John the son of Zacharias in the wilderness.</VERS>\r\n      <VERS vnumber=\"3\">And he came into all the region round about the Jordan, preaching the baptism of repentance unto remission of sins;</VERS>\r\n      <VERS vnumber=\"4\">as it is written in the book of the words of Isaiah the prophet, The voice of one crying in the wilderness, Make ye ready the way of the Lord, Make his paths straight.</VERS>\r\n      <VERS vnumber=\"5\">Every valley shall be filled, And every mountain and hill shall be brought low; And the crooked shall become straight, And the rough ways smooth;</VERS>\r\n      <VERS vnumber=\"6\">And all flesh shall see the salvation of God.</VERS>\r\n      <VERS vnumber=\"7\">He said therefore to the multitudes that went out to be baptized of him, Ye offspring of vipers, who warned you to flee from the wrath to come?</VERS>\r\n      <VERS vnumber=\"8\">Bring 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.</VERS>\r\n      <VERS vnumber=\"9\">And even now the axe also lieth at the root of the trees: every tree therefore that bringeth not forth good fruit is hewn down, and cast into the fire.</VERS>\r\n      <VERS vnumber=\"10\">And the multitudes asked him, saying, What then must we do?</VERS>\r\n      <VERS vnumber=\"11\">And he answered and said unto them, He that hath two coats, let him impart to him that hath none; and he that hath food, let him do likewise.</VERS>\r\n      <VERS vnumber=\"12\">And there came also publicans to be baptized, and they said unto him, Teacher, what must we do?</VERS>\r\n      <VERS vnumber=\"13\">And he said unto them, Extort no more than that which is appointed you.</VERS>\r\n      <VERS vnumber=\"14\">And soldiers also asked him, saying, And we, what must we do? And he said unto them, Extort from no man by violence, neither accuse [any one] wrongfully; and be content with your wages.</VERS>\r\n      <VERS vnumber=\"15\">And as the people were in expectation, and all men reasoned in their hearts concerning John, whether haply he were the Christ;</VERS>\r\n      <VERS vnumber=\"16\">John answered, saying unto them all, I indeed baptize you with water; but there cometh he that is mightier than I, the latchet of whose shoes I am not worthy to unloose: he shall baptize you in the Holy Spirit and [in] fire:</VERS>\r\n      <VERS vnumber=\"17\">whose fan is in his hand, thoroughly to cleanse his threshing-floor, and to gather the wheat into his garner; but the chaff he will burn up with unquenchable fire.</VERS>\r\n      <VERS vnumber=\"18\">With many other exhortations therefore preached he good tidings unto the people;</VERS>\r\n      <VERS vnumber=\"19\">but Herod the tetrarch, being reproved by him for Herodias his brother`s wife, and for all the evil things which Herod had done,</VERS>\r\n      <VERS vnumber=\"20\">added this also to them all, that he shut up John in prison.</VERS>\r\n      <VERS vnumber=\"21\">Now it came to pass, when all the people were baptized, that, Jesus also having been baptized, and praying, the heaven was opened,</VERS>\r\n      <VERS vnumber=\"22\">and the Holy Spirit descended in a bodily form, as a dove, upon him, and a voice came out of heaven, Thou art my beloved Son; in thee I am well pleased.</VERS>\r\n      <VERS vnumber=\"23\">And Jesus himself, when he began [to teach], was about thirty years of age, being the son (as was supposed) of Joseph, the [son] of Heli,</VERS>\r\n      <VERS vnumber=\"24\">the [son] of Matthat, the [son] of Levi, the [son] of Melchi, the [son] of Jannai, the [son] of Joseph,</VERS>\r\n      <VERS vnumber=\"25\">the [son] of Mattathias, the [son] of Amos, the [son] of Nahum, the [son] of Esli, the [son] of Naggai,</VERS>\r\n      <VERS vnumber=\"26\">the [son] of Maath, the [son] of Mattathias, the [son] of Semein, the [son] of Josech, the [son] of Joda,</VERS>\r\n      <VERS vnumber=\"27\">the [son] of Joanan, the [son] of Rhesa, the [son] of Zerubbabel, the [son] of Shealtiel, the [son] of Neri,</VERS>\r\n      <VERS vnumber=\"28\">the [son] of Melchi, the [son] of Addi, the [son] of Cosam, the [son] of Elmadam, the [son] of Er,</VERS>\r\n      <VERS vnumber=\"29\">the [son] of Jesus, the [son] of Eliezer, the son of Jorim, the [son] of Matthat, the [son] of Levi,</VERS>\r\n      <VERS vnumber=\"30\">the [son] of Symeon, the [son] of Judas, the [son] of Joseph, the [son] of Jonam, the [son] of Eliakim,</VERS>\r\n      <VERS vnumber=\"31\">the [son] of Melea, the [son] of Menna, the [son] of Mattatha, the [son] of Nathan, the [son] of David,</VERS>\r\n      <VERS vnumber=\"32\">the [son] of Jesse, the [son] of Obed, the [son] of Boaz, the [son] of Salmon, the [son] of Nahshon,</VERS>\r\n      <VERS vnumber=\"33\">the [son] of Amminadab, the [son] of Arni, the [son] of Hezron, the [son] of Perez, the [son] of Judah,</VERS>\r\n      <VERS vnumber=\"34\">the [son] of Jacob, the [son] of Isaac, the [son] of Abraham, the [son] of Terah, the [son] of Nahor,</VERS>\r\n      <VERS vnumber=\"35\">the [son] of Serug, the [son] of Reu, the [son] of Peleg, the [son] of Eber, the [son] of Shelah</VERS>\r\n      <VERS vnumber=\"36\">the [son] of Cainan, the [son] of Arphaxad, the [son] of Shem, the [son] of Noah, the [son] of Lamech,</VERS>\r\n      <VERS vnumber=\"37\">the [son] of Methuselah, the [son] of Enoch, the [son] of Jared, the [son] of Mahalaleel, the [son] of Cainan,</VERS>\r\n      <VERS vnumber=\"38\">the [son] of Enos, the [son] of Seth, the [son] of Adam, the [son] of God.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">And Jesus, full of the Holy Spirit, returned from the Jordan, and was led in the Spirit in the wilderness</VERS>\r\n      <VERS vnumber=\"2\">during forty days, being tempted of the devil. And he did eat nothing in those days: and when they were completed, he hungered.</VERS>\r\n      <VERS vnumber=\"3\">And the devil said unto him, if thou art the Son of God, command this stone that it become bread.</VERS>\r\n      <VERS vnumber=\"4\">And Jesus answered unto him, It is written, Man shall not live by bread alone.</VERS>\r\n      <VERS vnumber=\"5\">And he led him up, and showed him all the kingdoms of the world in a moment of time.</VERS>\r\n      <VERS vnumber=\"6\">And the devil said unto him, To thee will I give all this authority, and the glory of them: for it hath been delivered unto me; and to whomsoever I will I give it.</VERS>\r\n      <VERS vnumber=\"7\">If thou therefore wilt worship before me, it shall all be thine.</VERS>\r\n      <VERS vnumber=\"8\">And Jesus answered and said unto him, It is written, Thou shalt worship the Lord thy God, and him only shalt thou serve.</VERS>\r\n      <VERS vnumber=\"9\">And he led him to Jerusalem, and set him on the pinnacle of the temple, and said unto him, If thou art the Son of God, cast thyself down from hence:</VERS>\r\n      <VERS vnumber=\"10\">for it is written, He shall give his angels charge concerning thee, to guard thee:</VERS>\r\n      <VERS vnumber=\"11\">and, On their hands they shall bear thee up, Lest haply thou dash thy foot against a stone.</VERS>\r\n      <VERS vnumber=\"12\">And Jesus answering said unto him, It is said, Thou shalt not make trial of the Lord thy God.</VERS>\r\n      <VERS vnumber=\"13\">And when the devil had completed every temptation, he departed from him for a season.</VERS>\r\n      <VERS vnumber=\"14\">And Jesus returned in the power of the Spirit into Galilee: and a fame went out concerning him through all the region round about.</VERS>\r\n      <VERS vnumber=\"15\">And he taught in their synagogues, being glorified of all.</VERS>\r\n      <VERS vnumber=\"16\">And he came to Nazareth, where he had been brought up: and he entered, as his custom was, into the synagogue on the sabbath day, and stood up to read.</VERS>\r\n      <VERS vnumber=\"17\">And there was delivered unto him the book of the prophet Isaiah. And he opened the book, and found the place where it was written,</VERS>\r\n      <VERS vnumber=\"18\">The Spirit of the Lord is upon me, Because he anointed me to preach good tidings to the poor: He hath sent me to proclaim release to the captives, And recovering of sight to the blind, To set at liberty them that are bruised,</VERS>\r\n      <VERS vnumber=\"19\">To proclaim the acceptable year of the Lord.</VERS>\r\n      <VERS vnumber=\"20\">And he closed the book, and gave it back to the attendant, and sat down: and the eyes of all in the synagogue were fastened on him.</VERS>\r\n      <VERS vnumber=\"21\">And he began to say unto them, To-day hath this scripture been fulfilled in your ears.</VERS>\r\n      <VERS vnumber=\"22\">And all bare him witness, and wondered at the words of grace which proceeded out of his mouth: and they said, Is not this Joseph`s son?</VERS>\r\n      <VERS vnumber=\"23\">And he said unto them, Doubtless ye will say unto me this parable, Physician, heal thyself: whatsoever we have heard done at Capernaum, do also here in thine own country.</VERS>\r\n      <VERS vnumber=\"24\">And he said, Verily I say unto you, No prophet is acceptable in his own country.</VERS>\r\n      <VERS vnumber=\"25\">But of a truth I say unto you, There were many widows in Israel in the days of Elijah, when the heaven was shut up three years and six months, when there came a great famine over all the land;</VERS>\r\n      <VERS vnumber=\"26\">and unto none of them was Elijah sent, but only to Zarephath, in the land of Sidon, unto a woman that was a widow.</VERS>\r\n      <VERS vnumber=\"27\">And there were many lepers in Israel in the time of Elisha the prophet; and none of them was cleansed, but only Naaman the Syrian.</VERS>\r\n      <VERS vnumber=\"28\">And they were all filled with wrath in the synagogue, as they heard these things;</VERS>\r\n      <VERS vnumber=\"29\">and they rose up, and cast him forth out of the city, and led him unto the brow of the hill whereon their city was built, that they might throw him down headlong.</VERS>\r\n      <VERS vnumber=\"30\">But he passing through the midst of them went his way.</VERS>\r\n      <VERS vnumber=\"31\">And he came down to Capernaum, a city of Galilee. And he was teaching them on the sabbath day:</VERS>\r\n      <VERS vnumber=\"32\">and they were astonished at his teaching; for his word was with authority.</VERS>\r\n      <VERS vnumber=\"33\">And in the synagogue there was a man, that had a spirit of an unclean demon; and he cried out with a loud voice,</VERS>\r\n      <VERS vnumber=\"34\">Ah! what have we to do with thee, Jesus thou Nazarene? art thou come to destroy us? I know thee who thou art, the Holy One of God.</VERS>\r\n      <VERS vnumber=\"35\">And Jesus rebuked him, saying, Hold thy peace, and come out of him. And when the demon had thrown him down in the midst, he came out of him, having done him no hurt.</VERS>\r\n      <VERS vnumber=\"36\">And amazement came upon all, and they spake together, one with another, saying, What is this word? for with authority and power he commandeth the unclean spirits, and they come out.</VERS>\r\n      <VERS vnumber=\"37\">And there went forth a rumor concerning him into every place of the region round about.</VERS>\r\n      <VERS vnumber=\"38\">And he rose up from the synagogue, and entered into the house of Simon. And Simon`s wife`s mother was holden with a great fever; and they besought him for her.</VERS>\r\n      <VERS vnumber=\"39\">And he stood over her, and rebuked the fever; and it left her: and immediately she rose up and ministered unto them.</VERS>\r\n      <VERS vnumber=\"40\">And 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.</VERS>\r\n      <VERS vnumber=\"41\">And demons also came out from many, crying out, and saying, Thou art the Son of God. And rebuking them, he suffered them not to speak, because they knew that he was the Christ.</VERS>\r\n      <VERS vnumber=\"42\">And when it was day, he came out and went into a desert place: and the multitudes sought after him, and came unto him, and would have stayed him, that he should not go from them.</VERS>\r\n      <VERS vnumber=\"43\">But he said unto them, I must preach the good tidings of the kingdom of God to the other cities also: for therefore was I sent.</VERS>\r\n      <VERS vnumber=\"44\">And he was preaching in the synagogues of Galilee.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">Now it came to pass, while the multitude pressed upon him and heard the word of God, that he was standing by the lake of Gennesaret;</VERS>\r\n      <VERS vnumber=\"2\">and he saw two boats standing by the lake: but the fishermen had gone out of them, and were washing their nets.</VERS>\r\n      <VERS vnumber=\"3\">And he entered into one of the boats, which was Simon`s, and asked him to put out a little from the land. And he sat down and taught the multitudes out of the boat.</VERS>\r\n      <VERS vnumber=\"4\">And when he had left speaking, he said unto Simon, Put out into the deep, and let down your nets for a draught.</VERS>\r\n      <VERS vnumber=\"5\">And Simon answered and said, Master, we toiled all night, and took nothing: but at thy word I will let down the nets.</VERS>\r\n      <VERS vnumber=\"6\">And when they had done this, they inclosed a great multitude of fishes; and their nets were breaking;</VERS>\r\n      <VERS vnumber=\"7\">and they beckoned unto their partners in the other boat, that they should come and help them. And they came, and filled both the boats, so that they began to sink.</VERS>\r\n      <VERS vnumber=\"8\">But Simon Peter, when he saw it, fell down at Jesus` knees, saying, Depart from me; for I am a sinful man, O Lord.</VERS>\r\n      <VERS vnumber=\"9\">For he was amazed, and all that were with him, at the draught of the fishes which they had taken;</VERS>\r\n      <VERS vnumber=\"10\">and so were also James and John, sons of Zebedee, who were partners with Simon. And Jesus said unto Simon, Fear not; from henceforth thou shalt catch men.</VERS>\r\n      <VERS vnumber=\"11\">And when they had brought their boats to land, they left all, and followed him.</VERS>\r\n      <VERS vnumber=\"12\">And it came to pass, while he was in one of the cities, behold, a man full of leprosy: and when he saw Jesus, he fell on his face, and besought him, saying, Lord, if thou wilt, thou canst make me clean.</VERS>\r\n      <VERS vnumber=\"13\">And he stretched forth his hand, and touched him, saying, I will; be thou made clean. And straightway the leprosy departed from him.</VERS>\r\n      <VERS vnumber=\"14\">And he charged him to tell no man: but go thy way, and show thyself to the priest, and offer for thy cleansing, according as Moses commanded, for a testimony unto them.</VERS>\r\n      <VERS vnumber=\"15\">But so much the more went abroad the report concerning him: and great multitudes came together to hear, and to be healed of their infirmities.</VERS>\r\n      <VERS vnumber=\"16\">But he withdrew himself in the deserts, and prayed.</VERS>\r\n      <VERS vnumber=\"17\">And it came to pass on one of those days, that he was teaching; and there were Pharisees and doctors of the law sitting by, who were come out of every village of Galilee and Judaea and Jerusalem: and the power of the Lord was with him to heal.</VERS>\r\n      <VERS vnumber=\"18\">And behold, men bring on a bed a man that was palsied: and they sought to bring him in, and to lay him before him.</VERS>\r\n      <VERS vnumber=\"19\">And not finding by what [way] they might bring him in because of the multitude, they went up to the housetop, and let him down through the tiles with his couch into the midst before Jesus.</VERS>\r\n      <VERS vnumber=\"20\">And seeing their faith, he said, Man, thy sins are forgiven thee.</VERS>\r\n      <VERS vnumber=\"21\">And the scribes and the Pharisees began to reason, saying, Who is this that speaketh blasphemies? Who can forgive sins, but God alone?</VERS>\r\n      <VERS vnumber=\"22\">But Jesus perceiving their reasonings, answered and said unto them, Why reason ye in your hearts?</VERS>\r\n      <VERS vnumber=\"23\">Which is easier, to say, Thy sins are forgiven thee; or to say, Arise and walk?</VERS>\r\n      <VERS vnumber=\"24\">But that ye may know that the Son of man hath authority on earth to forgive sins (he said unto him that was palsied), I say unto thee, Arise, and take up thy couch, and go unto thy house.</VERS>\r\n      <VERS vnumber=\"25\">And immediately he rose up before them, and took up that whereon he lay, and departed to his house, glorifying God.</VERS>\r\n      <VERS vnumber=\"26\">And amazement took hold on all, and they glorified God; and they were filled with fear, saying, We have seen strange things to-day.</VERS>\r\n      <VERS vnumber=\"27\">And after these things he went forth, and beheld a publican, named Levi, sitting at the place of toll, and said unto him, Follow me.</VERS>\r\n      <VERS vnumber=\"28\">And he forsook all, and rose up and followed him.</VERS>\r\n      <VERS vnumber=\"29\">And Levi made him a great feast in his house: and there was a great multitude of publicans and of others that were sitting at meat with them.</VERS>\r\n      <VERS vnumber=\"30\">And the Pharisees and their scribes murmured against his disciples, saying, Why do ye eat and drink with the publicans and sinners?</VERS>\r\n      <VERS vnumber=\"31\">And Jesus answering said unto them, They that are in health have no need of a physician; but they that are sick.</VERS>\r\n      <VERS vnumber=\"32\">I am not come to call the righteous but sinners to repentance.</VERS>\r\n      <VERS vnumber=\"33\">And they said unto him, The disciples of John fast often, and make supplications; likewise also the [disciples] of the Pharisees; but thine eat and drink.</VERS>\r\n      <VERS vnumber=\"34\">And Jesus said unto them, Can ye make the sons of the bride-chamber fast, while the bridegroom is with them?</VERS>\r\n      <VERS vnumber=\"35\">But the days will come; and when the bridegroom shall be taken away from them, then will they fast in those days.</VERS>\r\n      <VERS vnumber=\"36\">And he spake also a parable unto them: No man rendeth a piece from a new garment and putteth it upon an old garment; else he will rend the new, and also the piece from the new will not agree with the old.</VERS>\r\n      <VERS vnumber=\"37\">And no man putteth new wine into old wine-skins; else the new wine will burst the skins, and itself will be spilled, and the skins will perish.</VERS>\r\n      <VERS vnumber=\"38\">But new wine must be put into fresh wine-skins.</VERS>\r\n      <VERS vnumber=\"39\">And no man having drunk old [wine] desireth new; for he saith, The old is good.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">Now it came to pass on a sabbath, that he was going through the grainfields; and his disciples plucked the ears, and did eat, rubbing them in their hands.</VERS>\r\n      <VERS vnumber=\"2\">But certain of the Pharisees said, Why do ye that which it is not lawful to do on the sabbath day?</VERS>\r\n      <VERS vnumber=\"3\">And Jesus answering them said, Have ye not read even this, what David did, when he was hungry, he, and they that were with him;</VERS>\r\n      <VERS vnumber=\"4\">how he entered into the house of God, and took and ate the showbread, and gave also to them that were with him; which it is not lawful to eat save for the priests alone?</VERS>\r\n      <VERS vnumber=\"5\">And he said unto them, The Son of man is lord of the sabbath.</VERS>\r\n      <VERS vnumber=\"6\">And it came to pass on another sabbath, that he entered into the synagogue and taught: and there was a man there, and his right hand was withered.</VERS>\r\n      <VERS vnumber=\"7\">And the scribes and the Pharisees watched him, whether he would heal on the sabbath; that they might find how to accuse him.</VERS>\r\n      <VERS vnumber=\"8\">But he knew their thoughts; and he said to the man that had his hand withered, Rise up, and stand forth in the midst. And he arose and stood forth.</VERS>\r\n      <VERS vnumber=\"9\">And Jesus said unto them, I ask you, Is it lawful on the sabbath to do good, or to do harm? to save a life, or to destroy it?</VERS>\r\n      <VERS vnumber=\"10\">And he looked round about on them all, and said unto him, Stretch forth thy hand. And he did [so]: and his hand was restored.</VERS>\r\n      <VERS vnumber=\"11\">But they were filled with madness; and communed one with another what they might do to Jesus.</VERS>\r\n      <VERS vnumber=\"12\">And it came to pass in these days, that he went out into the mountain to pray; and he continued all night in prayer to God.</VERS>\r\n      <VERS vnumber=\"13\">And when it was day, he called his disciples; and he chose from them twelve, whom also he named apostles:</VERS>\r\n      <VERS vnumber=\"14\">Simon, whom he also named Peter, and Andrew his brother, and James and John, and Philip and Bartholomew,</VERS>\r\n      <VERS vnumber=\"15\">and Matthew and Thomas, and James [the son] of Alphaeus, and Simon who was called the Zealot,</VERS>\r\n      <VERS vnumber=\"16\">and Judas [the son] of James, and Judas Iscariot, who became a traitor;</VERS>\r\n      <VERS vnumber=\"17\">and he came down with them, and stood on a level place, and a great multitude of his disciples, and a great number of the people from all Judaea and Jerusalem, and the sea coast of Tyre and Sidon, who came to hear him, and to be healed of their diseases;</VERS>\r\n      <VERS vnumber=\"18\">and they that were troubled with unclean spirits were healed.</VERS>\r\n      <VERS vnumber=\"19\">And all the multitude sought to touch him; for power came forth from him, and healed [them] all.</VERS>\r\n      <VERS vnumber=\"20\">And he lifted up his eyes on his disciples, and said, Blessed [are] ye poor: for yours is the kingdom of God.</VERS>\r\n      <VERS vnumber=\"21\">Blessed [are] ye that hunger now: for ye shall be filled. Blessed [are] ye that weep now: for ye shall laugh.</VERS>\r\n      <VERS vnumber=\"22\">Blessed are ye, when men shall hate you, and when they shall separate you [from their company], and reproach you, and cast out your name as evil, for the Son of man`s sake.</VERS>\r\n      <VERS vnumber=\"23\">Rejoice in that day, and leap [for joy]: for behold, your reward is great in heaven; for in the same manner did their fathers unto the prophets.</VERS>\r\n      <VERS vnumber=\"24\">But woe unto you that are rich! for ye have received your consolation.</VERS>\r\n      <VERS vnumber=\"25\">Woe unto you, ye that are full now! for ye shall hunger. Woe [unto you], ye that laugh now! for ye shall mourn and weep.</VERS>\r\n      <VERS vnumber=\"26\">Woe [unto you], when all men shall speak well of you! for in the same manner did their fathers to the false prophets.</VERS>\r\n      <VERS vnumber=\"27\">But I say unto you that hear, Love your enemies, do good to them that hate you,</VERS>\r\n      <VERS vnumber=\"28\">bless them that curse you, pray for them that despitefully use you.</VERS>\r\n      <VERS vnumber=\"29\">To him that smiteth thee on the [one] cheek offer also the other; and from him that taketh away thy cloak withhold not thy coat also.</VERS>\r\n      <VERS vnumber=\"30\">Give to every one that asketh thee; and of him that taketh away thy goods ask them not again.</VERS>\r\n      <VERS vnumber=\"31\">And as ye would that men should do to you, do ye also to them likewise.</VERS>\r\n      <VERS vnumber=\"32\">And if ye love them that love you, what thank have ye? for even sinners love those that love them.</VERS>\r\n      <VERS vnumber=\"33\">And if ye do good to them that do good to you, what thank have ye? for even sinners do the same.</VERS>\r\n      <VERS vnumber=\"34\">And if ye lend to them of whom ye hope to receive, what thank have ye? even sinners lend to sinners, to receive again as much.</VERS>\r\n      <VERS vnumber=\"35\">But love your enemies, and do [them] good, and lend, never despairing; and your reward shall be great, and ye shall be sons of the Most High: for he is kind toward the unthankful and evil.</VERS>\r\n      <VERS vnumber=\"36\">Be ye merciful, even as your Father is merciful.</VERS>\r\n      <VERS vnumber=\"37\">And judge not, and ye shall not be judged: and condemn not, and ye shall not be condemned: release, and ye shall be released:</VERS>\r\n      <VERS vnumber=\"38\">give, and it shall be given unto you; good measure, pressed down, shaken together, running over, shall they give into your bosom. For with what measure ye mete it shall be measured to you again.</VERS>\r\n      <VERS vnumber=\"39\">And he spake also a parable unto them, Can the blind guide the blind? shall they not both fall into a pit?</VERS>\r\n      <VERS vnumber=\"40\">The disciple is not above his teacher: but every one when he is perfected shall be as his teacher.</VERS>\r\n      <VERS vnumber=\"41\">And why beholdest thou the mote that is in thy brother`s eye, but considerest not the beam that is in thine own eye?</VERS>\r\n      <VERS vnumber=\"42\">Or how canst thou say to thy brother, Brother, let me cast 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 cast out the mote that is in thy brother`s eye.</VERS>\r\n      <VERS vnumber=\"43\">For there is no good tree that bringeth forth corrupt fruit; nor again a corrupt tree that bringeth forth good fruit.</VERS>\r\n      <VERS vnumber=\"44\">For each tree is known by its own fruit. For of thorns men do not gather figs, nor of a bramble bush gather they grapes.</VERS>\r\n      <VERS vnumber=\"45\">The good man out of the good treasure of his heart bringeth forth that which is good; and the evil [man] out of the evil [treasure] bringeth forth that which is evil: for out of the abundance of the heart his mouth speaketh.</VERS>\r\n      <VERS vnumber=\"46\">And why call ye me, Lord, Lord, and do not the things which I say?</VERS>\r\n      <VERS vnumber=\"47\">Every one that cometh unto me, and heareth my words, and doeth them, I will show you to whom he is like:</VERS>\r\n      <VERS vnumber=\"48\">he is like a man building a house, who digged and went deep, and laid a foundation upon the rock: and when a flood arose, the stream brake against that house, and could not shake it: because it had been well builded.</VERS>\r\n      <VERS vnumber=\"49\">But he that heareth, and doeth not, is like a man that built a house upon the earth without a foundation; against which the stream brake, and straightway it fell in; and the ruin of that house was great.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">After he had ended all his sayings in the ears of the people, he entered into Capernaum.</VERS>\r\n      <VERS vnumber=\"2\">And a certain centurion`s servant, who was dear unto him, was sick and at the point of death.</VERS>\r\n      <VERS vnumber=\"3\">And when he heard concerning Jesus, he sent unto him elders of the Jews, asking him that he would come and save his servant.</VERS>\r\n      <VERS vnumber=\"4\">And they, when they came to Jesus, besought him earnestly, saying, He is worthy that thou shouldest do this for him;</VERS>\r\n      <VERS vnumber=\"5\">for he loveth our nation, and himself built us our synagogue.</VERS>\r\n      <VERS vnumber=\"6\">And 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 come under my roof:</VERS>\r\n      <VERS vnumber=\"7\">wherefore neither thought I myself worthy to come unto thee: but say the word, and my servant shall be healed.</VERS>\r\n      <VERS vnumber=\"8\">For I also am a man set under authority, having under myself soldiers: and I say to this one, Go, and he goeth; and to another, Come, and he cometh; and to my servant, Do this, and he doeth it.</VERS>\r\n      <VERS vnumber=\"9\">And when Jesus heard these things, he marvelled at him, and turned and said unto the multitude that followed him, I say unto you, I have not found so great faith, no, not in Israel.</VERS>\r\n      <VERS vnumber=\"10\">And they that were sent, returning to the house, found the servant whole.</VERS>\r\n      <VERS vnumber=\"11\">And it came to pass soon afterwards, that he went to a city called Nain; and his disciples went with him, and a great multitude.</VERS>\r\n      <VERS vnumber=\"12\">Now when he drew near to the gate of the city, behold, there was carried out one that was dead, the only son of his mother, and she was a widow: and much people of the city was with her.</VERS>\r\n      <VERS vnumber=\"13\">And when the Lord saw her, he had compassion on her, and said unto her, Weep not.</VERS>\r\n      <VERS vnumber=\"14\">And he came nigh and touched the bier: and the bearers stood still. And he said, Young man, I say unto thee, Arise.</VERS>\r\n      <VERS vnumber=\"15\">And he that was dead sat up, and began to speak. And he gave him to his mother.</VERS>\r\n      <VERS vnumber=\"16\">And fear took hold on all: and they glorified God, saying, A great prophet is arisen among us: and, God hath visited his people.</VERS>\r\n      <VERS vnumber=\"17\">And this report went forth concerning him in the whole of Judaea, and all the region round about.</VERS>\r\n      <VERS vnumber=\"18\">And the disciples of John told him of all these things.</VERS>\r\n      <VERS vnumber=\"19\">And John calling unto him two of his disciples sent them to the Lord, saying, Art thou he that cometh, or look we for another?</VERS>\r\n      <VERS vnumber=\"20\">And when the men were come unto him, they said, John the Baptist hath sent us unto thee, saying, Art thou he that cometh, or look we for another?</VERS>\r\n      <VERS vnumber=\"21\">In that hour he cured many of diseases and plagues and evil spirits; and on many that were blind he bestowed sight.</VERS>\r\n      <VERS vnumber=\"22\">And he answered and said unto them, Go and tell John the things which ye have seen and heard; the blind receive their sight, the lame walk, the lepers are cleansed, and the deaf hear, the dead are raised up, the poor have good tidings preached to them.</VERS>\r\n      <VERS vnumber=\"23\">And blessed is he, whosoever shall find no occasion of stumbling in me.</VERS>\r\n      <VERS vnumber=\"24\">And when the messengers of John were departed, he began to say unto the multitudes concerning John, What went ye out into the wilderness to behold? a reed shaken with the wind?</VERS>\r\n      <VERS vnumber=\"25\">But what went ye out to see? a man clothed in soft raiment? Behold, they that are gorgeously apparelled, and live delicately, are in kings` courts.</VERS>\r\n      <VERS vnumber=\"26\">But what went ye out to see? a prophet? Yea, I say unto you, and much more than a prophet.</VERS>\r\n      <VERS vnumber=\"27\">This is he of whom it is written, Behold, I send my messenger before thy face, Who shall prepare thy way before thee.</VERS>\r\n      <VERS vnumber=\"28\">I say unto you, Among them that are born of women there is none greater than John: yet he that is but little in the kingdom of God is greater than he.</VERS>\r\n      <VERS vnumber=\"29\">And all the people when they heard, and the publicans, justified God, being baptized with the baptism of John.</VERS>\r\n      <VERS vnumber=\"30\">But the Pharisees and the lawyers rejected for themselves the counsel of God, being not baptized of him.</VERS>\r\n      <VERS vnumber=\"31\">Whereunto then shall I liken the men of this generation, and to what are they like?</VERS>\r\n      <VERS vnumber=\"32\">They are like unto children that sit in the marketplace, and call one to another; who say, We piped unto you, and ye did not dance; we wailed, and ye did not weep.</VERS>\r\n      <VERS vnumber=\"33\">For John the Baptist is come eating no bread nor drinking wine; and ye say, He hath a demon.</VERS>\r\n      <VERS vnumber=\"34\">The Son of man is come eating and drinking; and ye say, Behold, a gluttonous man, and a winebibber, a friend of publicans and sinners!</VERS>\r\n      <VERS vnumber=\"35\">And wisdom is justified of all her children.</VERS>\r\n      <VERS vnumber=\"36\">And one of the Pharisees desired him that he would eat with him. And he entered into the Pharisee`s house, and sat down to meat.</VERS>\r\n      <VERS vnumber=\"37\">And behold, a woman who was in the city, a sinner; and when she knew that he was sitting at meat in the Pharisee`s house, she brought an alabaster cruse of ointment,</VERS>\r\n      <VERS vnumber=\"38\">and standing behind at his feet, weeping, she began to wet his feet with her tears, and wiped them with the hair of her head, and kissed his feet, and anointed them with the ointment.</VERS>\r\n      <VERS vnumber=\"39\">Now when the Pharisee that had bidden him saw it, he spake within himself, saying, This man, if he were a prophet, would have perceived who and what manner of woman this is that toucheth him, that she is a sinner.</VERS>\r\n      <VERS vnumber=\"40\">And Jesus answering said unto him, Simon, I have somewhat to say unto thee. And he saith, Teacher, say on.</VERS>\r\n      <VERS vnumber=\"41\">A certain lender had two debtors: the one owed five hundred shillings, and the other fifty.</VERS>\r\n      <VERS vnumber=\"42\">When they had not [wherewith] to pay, he forgave them both. Which of them therefore will love him most?</VERS>\r\n      <VERS vnumber=\"43\">Simon answered and said, He, I suppose, to whom he forgave the most. And he said unto him, Thou hast rightly judged.</VERS>\r\n      <VERS vnumber=\"44\">And turning to the woman, he said unto Simon, Seest thou this woman? I entered into thy house, thou gavest me no water for my feet: but she hath wetted my feet with her tears, and wiped them with her hair.</VERS>\r\n      <VERS vnumber=\"45\">Thou gavest me no kiss: but she, since the time I came in, hath not ceased to kiss my feet.</VERS>\r\n      <VERS vnumber=\"46\">My head with oil thou didst not anoint: but she hath anointed my feet with ointment.</VERS>\r\n      <VERS vnumber=\"47\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"48\">And he said unto her, Thy sins are forgiven.</VERS>\r\n      <VERS vnumber=\"49\">And they that sat at meat with him began to say within themselves, Who is this that even forgiveth sins?</VERS>\r\n      <VERS vnumber=\"50\">And he said unto the woman, Thy faith hath saved thee; go in peace.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">And it came to pass soon afterwards, that he went about through cities and villages, preaching and bringing the good tidings of the kingdom of God, and with him the twelve,</VERS>\r\n      <VERS vnumber=\"2\">and certain women who had been healed of evil spirits and infirmities: Mary that was called Magdalene, from whom seven demons had gone out,</VERS>\r\n      <VERS vnumber=\"3\">and Joanna the wife of Chuzas Herod`s steward, and Susanna, and many others, who ministered unto them of their substance.</VERS>\r\n      <VERS vnumber=\"4\">And when a great multitude came together, and they of every city resorted unto him, he spake by a parable:</VERS>\r\n      <VERS vnumber=\"5\">The sower went forth to sow his seed: and as he sowed, some fell by the way side; and it was trodden under foot, and the birds of the heaven devoured it.</VERS>\r\n      <VERS vnumber=\"6\">And other fell on the rock; and as soon as it grew, it withered away, because it had no moisture.</VERS>\r\n      <VERS vnumber=\"7\">And other fell amidst the thorns; and the thorns grew with it, and choked it.</VERS>\r\n      <VERS vnumber=\"8\">And other fell into the good ground, and grew, and brought forth fruit a hundredfold. As he said these things, he cried, He that hath ears to hear, let him hear.</VERS>\r\n      <VERS vnumber=\"9\">And his disciples asked him what this parable might be.</VERS>\r\n      <VERS vnumber=\"10\">And he said, Unto you it is given to know the mysteries of the kingdom of God: but to the rest in parables; that seeing they may not see, and hearing they may not understand.</VERS>\r\n      <VERS vnumber=\"11\">Now the parable is this: The seed is the word of God.</VERS>\r\n      <VERS vnumber=\"12\">And those by the way side are they that have heard; then cometh the devil, and taketh away the word from their heart, that they may not believe and be saved.</VERS>\r\n      <VERS vnumber=\"13\">And those on the rock [are] they who, when they have heard, receive the word with joy; and these have no root, who for a while believe, and in time of temptation fall away.</VERS>\r\n      <VERS vnumber=\"14\">And that which fell among the thorns, these are they that have heard, and as they go on their way they are choked with cares and riches and pleasures of [this] life, and bring no fruit to perfection.</VERS>\r\n      <VERS vnumber=\"15\">And that in the good ground, these are such as in an honest and good heart, having heard the word, hold it fast, and bring forth fruit with patience.</VERS>\r\n      <VERS vnumber=\"16\">And no man, when he hath lighted a lamp, covereth it with a vessel, or putteth it under a bed; but putteth it on a stand, that they that enter in may see the light.</VERS>\r\n      <VERS vnumber=\"17\">For nothing is hid, that shall not be made manifest; nor [anything] secret, that shall not be known and come to light.</VERS>\r\n      <VERS vnumber=\"18\">Take heed therefore how ye hear: for whosoever hath, to him shall be given; and whosoever hath not, from him shall be taken away even that which he thinketh he hath.</VERS>\r\n      <VERS vnumber=\"19\">And there came to him his mother and brethren, and they could not come at him for the crowd.</VERS>\r\n      <VERS vnumber=\"20\">And it was told him, Thy mother and thy brethren stand without, desiring to see thee.</VERS>\r\n      <VERS vnumber=\"21\">But he answered and said unto them, My mother and my brethren are these that hear the word of God, and do it.</VERS>\r\n      <VERS vnumber=\"22\">Now it came to pass on one of those days, that he entered into a boat, himself and his disciples; and he said unto them, Let us go over unto the other side of the lake: and they launched forth.</VERS>\r\n      <VERS vnumber=\"23\">But as they sailed he fell asleep: and there came down a storm of wind on the lake; and they were filling [with water], and were in jeopardy.</VERS>\r\n      <VERS vnumber=\"24\">And they came to him, and awoke him, saying, Master, master, we perish. And he awoke, and rebuked the wind and the raging of the water: and they ceased, and there was a calm.</VERS>\r\n      <VERS vnumber=\"25\">And he said unto them, Where is your faith? And being afraid they marvelled, saying one to another, Who then is this, that he commandeth even the winds and the water, and they obey him?</VERS>\r\n      <VERS vnumber=\"26\">And they arrived at the country of the Gerasenes, which is over against Galilee.</VERS>\r\n      <VERS vnumber=\"27\">And when he was come forth upon the land, there met him a certain man out of the city, who had demons; and for a long time he had worn no clothes, and abode not in [any] house, but in the tombs.</VERS>\r\n      <VERS vnumber=\"28\">And when 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 the Most High God? I beseech thee, torment me not.</VERS>\r\n      <VERS vnumber=\"29\">For he was commanding the unclean spirit to come out from the man. For oftentimes it had seized him: and he was kept under guard, and bound with chains and fetters; and breaking the bands asunder, he was driven of the demon into the deserts.</VERS>\r\n      <VERS vnumber=\"30\">And Jesus asked him, What is thy name? And he said, Legion; for many demons were entered into him.</VERS>\r\n      <VERS vnumber=\"31\">And they entreated him that he would not command them to depart into the abyss.</VERS>\r\n      <VERS vnumber=\"32\">Now there was there a herd of many swine feeding on the mountain: and they entreated him that he would give them leave to enter into them. And he gave them leave.</VERS>\r\n      <VERS vnumber=\"33\">And the demons came out from the man, and entered into the swine: and the herd rushed down the steep into the lake, and were drowned.</VERS>\r\n      <VERS vnumber=\"34\">And when they that fed them saw what had come to pass, they fled, and told it in the city and in the country.</VERS>\r\n      <VERS vnumber=\"35\">And they went out to see what had come to pass; and they came to Jesus, and found the man, from whom the demons were gone out, sitting, clothed and in his right mind, at the feet of Jesus: and they were afraid.</VERS>\r\n      <VERS vnumber=\"36\">And they that saw it told them how he that was possessed with demons was made whole.</VERS>\r\n      <VERS vnumber=\"37\">And all the people of the country of the Gerasenes round about asked him to depart from them, for they were holden with great fear: and he entered into a boat, and returned.</VERS>\r\n      <VERS vnumber=\"38\">But the man from whom the demons were gone out prayed him that he might be with him: but he sent him away, saying,</VERS>\r\n      <VERS vnumber=\"39\">Return to thy house, and declare how great things God hath done for thee. And he went his way, publishing throughout the whole city how great things Jesus had done for him.</VERS>\r\n      <VERS vnumber=\"40\">And as Jesus returned, the multitude welcomed him; for they were all waiting for him.</VERS>\r\n      <VERS vnumber=\"41\">And 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 to come into his house;</VERS>\r\n      <VERS vnumber=\"42\">for he had an only daughter, about twelve years of age, and she was dying. But as he went the multitudes thronged him.</VERS>\r\n      <VERS vnumber=\"43\">And a woman having an issue of blood twelve years, who had spent all her living upon physicians, and could not be healed of any,</VERS>\r\n      <VERS vnumber=\"44\">came behind him, and touched the border of his garment: and immediately the issue of her blood stanched.</VERS>\r\n      <VERS vnumber=\"45\">And Jesus said, Who is it that touched me? And when all denied, Peter said, and they that were with him, Master, the multitudes press thee and crush [thee].</VERS>\r\n      <VERS vnumber=\"46\">But Jesus said, Some one did touch me; for I perceived that power had gone forth from me.</VERS>\r\n      <VERS vnumber=\"47\">And when the woman saw that she was not hid, she came trembling, and falling down before him declared in the presence of all the people for what cause she touched him, and how she was healed immediately.</VERS>\r\n      <VERS vnumber=\"48\">And he said unto her, Daughter, thy faith hath made thee whole; go in peace.</VERS>\r\n      <VERS vnumber=\"49\">While he yet spake, there cometh one from the ruler of the synagogue`s [house], saying, Thy daughter is dead; trouble not the Teacher.</VERS>\r\n      <VERS vnumber=\"50\">But Jesus hearing it, answered him, Fear not: only believe, and she shall be made whole.</VERS>\r\n      <VERS vnumber=\"51\">And when he came to the house, he suffered not any man to enter in with him, save Peter, and John, and James, and the father of the maiden and her mother.</VERS>\r\n      <VERS vnumber=\"52\">And all were weeping, and bewailing her: but he said, Weep not; for she is not dead, but sleepeth.</VERS>\r\n      <VERS vnumber=\"53\">And they laughed him to scorn, knowing that she was dead.</VERS>\r\n      <VERS vnumber=\"54\">But he, taking her by the hand, called, saying, Maiden, arise.</VERS>\r\n      <VERS vnumber=\"55\">And her spirit returned, and she rose up immediately: and he commanded that [something] be given her to eat.</VERS>\r\n      <VERS vnumber=\"56\">And her parents were amazed: but he charged them to tell no man what had been done.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">And he called the twelve together, and gave them power and authority over all demons, and to cure diseases.</VERS>\r\n      <VERS vnumber=\"2\">And he sent them forth to preach the kingdom of God, and to heal the sick.</VERS>\r\n      <VERS vnumber=\"3\">And he said unto them, Take nothing for your journey, neither staff, nor wallet, nor bread, nor money; neither have two coats.</VERS>\r\n      <VERS vnumber=\"4\">And into whatsoever house ye enter, there abide, and thence depart.</VERS>\r\n      <VERS vnumber=\"5\">And as many as receive you not, when ye depart from that city, shake off the dust from your feet for a testimony against them.</VERS>\r\n      <VERS vnumber=\"6\">And they departed, and went throughout the villages, preaching the gospel, and healing everywhere.</VERS>\r\n      <VERS vnumber=\"7\">Now Herod the tetrarch heard of all that was done: and he was much perplexed, because that it was said by some, that John was risen from the dead;</VERS>\r\n      <VERS vnumber=\"8\">and by some, that Elijah had appeared; and by others, that one of the old prophets was risen again.</VERS>\r\n      <VERS vnumber=\"9\">And Herod said, John I beheaded: but who is this, about whom I hear such things? And he sought to see him.</VERS>\r\n      <VERS vnumber=\"10\">And the apostles, when they were returned, declared unto him what things they had done. And he took them, and withdrew apart to a city called Bethsaida.</VERS>\r\n      <VERS vnumber=\"11\">But the multitudes perceiving it followed him: and he welcomed them, and spake to them of the kingdom of God, and them that had need of healing he cured.</VERS>\r\n      <VERS vnumber=\"12\">And the day began to wear away; and the twelve came, and said unto him, Send the multitude away, that they may go into the villages and country round about, and lodge, and get provisions: for we are here in a desert place.</VERS>\r\n      <VERS vnumber=\"13\">But he said unto them, Give ye them to eat. And they said, We have no more than five loaves and two fishes; except we should go and buy food for all this people.</VERS>\r\n      <VERS vnumber=\"14\">For they were about five thousand men. And he said unto his disciples, Make them sit down in companies, about fifty each.</VERS>\r\n      <VERS vnumber=\"15\">And they did so, and made them all sit down.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And they ate, and were all filled: and there was taken up that which remained over to them of broken pieces, twelve baskets.</VERS>\r\n      <VERS vnumber=\"18\">And it came to pass, as he was praying apart, the disciples were with him: and he asked them, saying, Who do the multitudes say that I am?</VERS>\r\n      <VERS vnumber=\"19\">And they answering said, John the Baptist; but others [say], Elijah; and others, that one of the old prophets is risen again.</VERS>\r\n      <VERS vnumber=\"20\">And he said unto them, But who say ye that I am? And Peter answering said, The Christ of God.</VERS>\r\n      <VERS vnumber=\"21\">But he charged them, and commanded [them] to tell this to no man;</VERS>\r\n      <VERS vnumber=\"22\">saying, The Son of man must suffer many things, and be rejected of the elders and chief priests and scribes, and be killed, and the third day be raised up.</VERS>\r\n      <VERS vnumber=\"23\">And he said unto all, If any man would come after me, let him deny himself, and take up his cross daily, and follow me.</VERS>\r\n      <VERS vnumber=\"24\">For whosoever would save his life shall lose it; but whosoever shall lose his life for my sake, the same shall save it.</VERS>\r\n      <VERS vnumber=\"25\">For what is a man profited, if he gain the whole world, and lose or forfeit his own self?</VERS>\r\n      <VERS vnumber=\"26\">For whosoever shall be ashamed of me and of my words, of him shall the Son of man be ashamed, when he cometh in his own glory, and [the glory] of the Father, and of the holy angels.</VERS>\r\n      <VERS vnumber=\"27\">But I tell you of a truth, There are some of them that stand here, who shall in no wise taste of death, till they see the kingdom of God.</VERS>\r\n      <VERS vnumber=\"28\">And it came to pass about eight days after these sayings, that he took with him Peter and John and James, and went up into the mountain to pray.</VERS>\r\n      <VERS vnumber=\"29\">And as he was praying, the fashion of his countenance was altered, and his raiment [became] white [and] dazzling.</VERS>\r\n      <VERS vnumber=\"30\">And behold, there talked with him two men, who were Moses and Elijah;</VERS>\r\n      <VERS vnumber=\"31\">who appeared in glory, and spake of his decease which he was about to accomplish at Jerusalem.</VERS>\r\n      <VERS vnumber=\"32\">Now Peter and they that were with him were heavy with sleep: but when they were fully awake, they saw his glory, and the two men that stood with him.</VERS>\r\n      <VERS vnumber=\"33\">And it came to pass, as they were parting 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 Elijah: not knowing what he said.</VERS>\r\n      <VERS vnumber=\"34\">And while he said these things, there came a cloud, and overshadowed them: and they feared as they entered into the cloud.</VERS>\r\n      <VERS vnumber=\"35\">And a voice came out of the cloud, saying, This is my Son, my chosen: hear ye him.</VERS>\r\n      <VERS vnumber=\"36\">And when the voice came, Jesus was found alone. And they held their peace, and told no man in those days any of the things which they had seen.</VERS>\r\n      <VERS vnumber=\"37\">And it came to pass, on the next day, when they were come down from the mountain, a great multitude met him.</VERS>\r\n      <VERS vnumber=\"38\">And behold, a man from the multitude cried, saying, Teacher, I beseech thee to look upon my son; for he is mine only child:</VERS>\r\n      <VERS vnumber=\"39\">and behold, a spirit taketh him, and he suddenly crieth out; and it teareth him that he foameth, and it hardly departeth from him, bruising him sorely.</VERS>\r\n      <VERS vnumber=\"40\">And I besought thy disciples to cast it out; and they could not.</VERS>\r\n      <VERS vnumber=\"41\">And Jesus answered and said, O faithless and perverse generation, how long shall I be with you, and bear with you? bring hither thy son.</VERS>\r\n      <VERS vnumber=\"42\">And as he was yet a coming, the demon dashed him down, and tare [him] grievously. But Jesus rebuked the unclean spirit, and healed the boy, and gave him back to his father.</VERS>\r\n      <VERS vnumber=\"43\">And they were all astonished at the majesty of God. But while all were marvelling at all the things which he did, he said unto his disciples,</VERS>\r\n      <VERS vnumber=\"44\">Let these words sink into your ears: for the Son of man shall be delivered up into the hands of men.</VERS>\r\n      <VERS vnumber=\"45\">But they understood not this saying, and it was concealed from them, that they should not perceive it; and they were afraid to ask him about this saying.</VERS>\r\n      <VERS vnumber=\"46\">And there arose a reasoning among them, which of them was the greatest.</VERS>\r\n      <VERS vnumber=\"47\">But when Jesus saw the reasoning of their heart, he took a little child, and set him by his side,</VERS>\r\n      <VERS vnumber=\"48\">and said unto them, Whosoever shall receive this little 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 is great.</VERS>\r\n      <VERS vnumber=\"49\">And John answered and said, Master, we saw one casting out demons in thy name; and we forbade him, because he followeth not with us.</VERS>\r\n      <VERS vnumber=\"50\">But Jesus said unto him, Forbid [him] not: for he that is not against you is for you.</VERS>\r\n      <VERS vnumber=\"51\">And it came to pass, when the days were well-nigh come that he should be received up, he stedfastly set his face to go to Jerusalem,</VERS>\r\n      <VERS vnumber=\"52\">and sent messengers before his face: and they went, and entered into a village of the Samaritans, to make ready for him.</VERS>\r\n      <VERS vnumber=\"53\">And they did not receive him, because his face was [as though he were] going to Jerusalem.</VERS>\r\n      <VERS vnumber=\"54\">And when his disciples James and John saw [this], they said, Lord, wilt thou that we bid fire to come down from heaven, and consume them?</VERS>\r\n      <VERS vnumber=\"55\">But he turned, and rebuked them.</VERS>\r\n      <VERS vnumber=\"56\">And they went to another village.</VERS>\r\n      <VERS vnumber=\"57\">And as they went on the way, a certain man said unto him, I will follow thee whithersoever thou goest.</VERS>\r\n      <VERS vnumber=\"58\">And Jesus said unto him, The foxes have holes, and the birds of the heaven [have] nests; but the Son of man hath not where to lay his head.</VERS>\r\n      <VERS vnumber=\"59\">And he said unto another, Follow me. But he said, Lord, suffer me first to go and bury my father.</VERS>\r\n      <VERS vnumber=\"60\">But he said unto him, Leave the dead to bury their own dead; but go thou and publish abroad the kingdom of God.</VERS>\r\n      <VERS vnumber=\"61\">And another also said, I will follow thee, Lord; but first suffer me to bid farewell to them that are at my house.</VERS>\r\n      <VERS vnumber=\"62\">But Jesus said unto him, No man, having put his hand to the plow, and looking back, is fit for the kingdom of God.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">Now after these things the Lord appointed seventy others, and sent them two and two before his face into every city and place, whither he himself was about to come.</VERS>\r\n      <VERS vnumber=\"2\">And he said unto them, The harvest indeed is plenteous, but the laborers are few: pray ye therefore the Lord of the harvest, that he send forth laborers into his harvest.</VERS>\r\n      <VERS vnumber=\"3\">Go your ways; behold, I send you forth as lambs in the midst of wolves.</VERS>\r\n      <VERS vnumber=\"4\">Carry no purse, no wallet, no shoes; and salute no man on the way.</VERS>\r\n      <VERS vnumber=\"5\">And into whatsoever house ye shall enter, first say, Peace [be] to this house.</VERS>\r\n      <VERS vnumber=\"6\">And if a son of peace be there, your peace shall rest upon him: but if not, it shall turn to you again.</VERS>\r\n      <VERS vnumber=\"7\">And in that same house remain, eating and drinking such things as they give: for the laborer is worthy of his hire. Go not from house to house.</VERS>\r\n      <VERS vnumber=\"8\">And into whatsoever city ye enter, and they receive you, eat such things as are set before you:</VERS>\r\n      <VERS vnumber=\"9\">and heal the sick that are therein, and say unto them, The kingdom of God is come nigh unto you.</VERS>\r\n      <VERS vnumber=\"10\">But into whatsoever city ye shall enter, and they receive you not, go out into the streets thereof and say,</VERS>\r\n      <VERS vnumber=\"11\">Even the dust from your city, that cleaveth to our feet, we wipe off against you: nevertheless know this, that the kingdom of God is come nigh.</VERS>\r\n      <VERS vnumber=\"12\">I say unto you, it shall be more tolerable in that day for Sodom, than for that city.</VERS>\r\n      <VERS vnumber=\"13\">Woe unto thee, Chorazin! woe unto thee, Bethsaida! for if the mighty works had been done in Tyre and Sidon, which were done in you, they would have repented long ago, sitting in sackcloth and ashes.</VERS>\r\n      <VERS vnumber=\"14\">But it shall be more tolerable for Tyre and Sidon in the judgment, than for you.</VERS>\r\n      <VERS vnumber=\"15\">And thou, Capernaum, shalt thou be exalted unto heaven? thou shalt be brought down unto Hades.</VERS>\r\n      <VERS vnumber=\"16\">He that heareth you heareth me; and he that rejecteth you rejecteth me; and he that rejecteth me rejecteth him that sent me.</VERS>\r\n      <VERS vnumber=\"17\">And the seventy returned with joy, saying, Lord, even the demons are subject unto us in thy name.</VERS>\r\n      <VERS vnumber=\"18\">And he said unto them, I beheld Satan fallen as lightning from heaven.</VERS>\r\n      <VERS vnumber=\"19\">Behold, I have given you authority to tread upon serpents and scorpions, and over all the power of the enemy: and nothing shall in any wise hurt you.</VERS>\r\n      <VERS vnumber=\"20\">Nevertheless in this rejoice not, that the spirits are subject unto you; but rejoice that your names are written in heaven.</VERS>\r\n      <VERS vnumber=\"21\">In that same hour he rejoiced in the Holy Spirit, and said, I thank thee, O Father, Lord of heaven and earth, that thou didst hide these things from the wise and understanding, and didst reveal them unto babes: yea, Father; for so it was well-pleasing in thy sight.</VERS>\r\n      <VERS vnumber=\"22\">All things have been delivered unto me of my Father: and no one knoweth who the Son is, save the Father; and who the Father is, save the Son, and he to whomsoever the Son willeth to reveal [him].</VERS>\r\n      <VERS vnumber=\"23\">And turning to the disciples, he said privately, Blessed [are] the eyes which see the things that ye see:</VERS>\r\n      <VERS vnumber=\"24\">for I say unto you, that many prophets and kings desired to see the things which ye see, and saw them not; and to hear the things which ye hear, and heard them not.</VERS>\r\n      <VERS vnumber=\"25\">And behold, a certain lawyer stood up and made trial of him, saying, Teacher, what shall I do to inherit eternal life?</VERS>\r\n      <VERS vnumber=\"26\">And he said unto him, What is written in the law? how readest thou?</VERS>\r\n      <VERS vnumber=\"27\">And 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 neighbor as thyself.</VERS>\r\n      <VERS vnumber=\"28\">And he said unto him, Thou hast answered right: this do, and thou shalt live.</VERS>\r\n      <VERS vnumber=\"29\">But he, desiring to justify himself, said unto Jesus, And who is my neighbor?</VERS>\r\n      <VERS vnumber=\"30\">Jesus made answer and said, A certain man was going down from Jerusalem to Jericho; and he fell among robbers, who both stripped him and beat him, and departed, leaving him half dead.</VERS>\r\n      <VERS vnumber=\"31\">And by chance a certain priest was going down that way: and when he saw him, he passed by on the other side.</VERS>\r\n      <VERS vnumber=\"32\">And in like manner a Levite also, when he came to the place, and saw him, passed by on the other side.</VERS>\r\n      <VERS vnumber=\"33\">But a certain Samaritan, as he journeyed, came where he was: and when he saw him, he was moved with compassion,</VERS>\r\n      <VERS vnumber=\"34\">and came to him, and bound up his wounds, pouring on [them] oil and wine; and he set him on his own beast, and brought him to an inn, and took care of him.</VERS>\r\n      <VERS vnumber=\"35\">And on the morrow he took out two shillings, and gave them to the host, and said, Take care of him; and whatsoever thou spendest more, I, when I come back again, will repay thee.</VERS>\r\n      <VERS vnumber=\"36\">Which of these three, thinkest thou, proved neighbor unto him that fell among the robbers?</VERS>\r\n      <VERS vnumber=\"37\">And he said, He that showed mercy on him. And Jesus said unto him, Go, and do thou likewise.</VERS>\r\n      <VERS vnumber=\"38\">Now as they went on their way, he entered into a certain village: and a certain woman named Martha received him into her house.</VERS>\r\n      <VERS vnumber=\"39\">And she had a sister called Mary, who also sat at the Lord`s feet, and heard his word.</VERS>\r\n      <VERS vnumber=\"40\">But Martha was cumbered about much serving; and she came up to him, and said, Lord, dost thou not care that my sister did leave me to serve alone? bid her therefore that she help me.</VERS>\r\n      <VERS vnumber=\"41\">But the Lord answered and said unto her, Martha, Martha, thou art anxious and troubled about many things:</VERS>\r\n      <VERS vnumber=\"42\">but one thing is needful: for Mary hath chosen the good part, which shall not be taken away from her.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">And it came to pass, as he was praying in a certain place, that when he ceased, one of his disciples said unto him, Lord, teach us to pray, even as John also taught his disciples.</VERS>\r\n      <VERS vnumber=\"2\">And he said unto them, When ye pray, say, Father, Hallowed be thy name. Thy kingdom come.</VERS>\r\n      <VERS vnumber=\"3\">Give us day by day our daily bread.</VERS>\r\n      <VERS vnumber=\"4\">And forgive us our sins; for we ourselves also forgive every one that is indebted to us. And bring us not into temptation.</VERS>\r\n      <VERS vnumber=\"5\">And he said unto them, Which of you shall have a friend, and shall go unto him at midnight, and say to him, Friend, lend me three loaves;</VERS>\r\n      <VERS vnumber=\"6\">for a friend of mine is come to me from a journey, and I have nothing to set before him;</VERS>\r\n      <VERS vnumber=\"7\">and 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?</VERS>\r\n      <VERS vnumber=\"8\">I say unto you, Though he will not rise and give him because he is his friend, yet because of his importunity he will arise and give him as many as he needeth.</VERS>\r\n      <VERS vnumber=\"9\">And I say unto you, Ask, and it shall be given you; seek, and ye shall find; knock, and it shall be opened unto you.</VERS>\r\n      <VERS vnumber=\"10\">For every one that asketh receiveth; and he that seeketh findeth; and to him that knocketh it shall be opened.</VERS>\r\n      <VERS vnumber=\"11\">And of which of you that is a father shall his son ask a loaf, and he give him a stone? or a fish, and he for a fish give him a serpent?</VERS>\r\n      <VERS vnumber=\"12\">Or [if] he shall ask an egg, will he give him a scorpion?</VERS>\r\n      <VERS vnumber=\"13\">If 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?</VERS>\r\n      <VERS vnumber=\"14\">And he was casting out a demon [that was] dumb. And it came to pass, when the demon was gone out, the dumb man spake; and the multitudes marvelled.</VERS>\r\n      <VERS vnumber=\"15\">But some of them said, By Beelzebub the prince of the demons casteth he out demons.</VERS>\r\n      <VERS vnumber=\"16\">And others, trying [him], sought of him a sign from heaven.</VERS>\r\n      <VERS vnumber=\"17\">But he, knowing their thoughts, said unto them, Every kingdom divided against itself is brought to desolation; and a house [divided] against a house falleth.</VERS>\r\n      <VERS vnumber=\"18\">And if Satan also is divided against himself, how shall his kingdom stand? because ye say that I cast out demons by Beelzebub.</VERS>\r\n      <VERS vnumber=\"19\">And if I by Beelzebub cast out demons, by whom do your sons cast them out? therefore shall they be your judges.</VERS>\r\n      <VERS vnumber=\"20\">But if I by the finger of God cast out demons, then is the kingdom of God come upon you.</VERS>\r\n      <VERS vnumber=\"21\">When the strong [man] fully armed guardeth his own court, his goods are in peace:</VERS>\r\n      <VERS vnumber=\"22\">but when a stronger than he shall come upon him, and overcome him, he taketh from him his whole armor wherein he trusted, and divideth his spoils.</VERS>\r\n      <VERS vnumber=\"23\">He that is not with me is against me; and he that gathereth not with me scattereth.</VERS>\r\n      <VERS vnumber=\"24\">The unclean spirit when he is gone out of the man, passeth through waterless places, seeking rest, and finding none, he saith, I will turn back unto my house whence I came out.</VERS>\r\n      <VERS vnumber=\"25\">And when he is come, he findeth it swept and garnished.</VERS>\r\n      <VERS vnumber=\"26\">Then goeth he, and taketh [to him] seven other spirits more evil than himself; and they enter in and dwell there: and the last state of that man becometh worse than the first.</VERS>\r\n      <VERS vnumber=\"27\">And it came to pass, as he said these things, a certain woman out of the multitude lifted up her voice, and said unto him, Blessed is the womb that bare thee, and the breasts which thou didst suck.</VERS>\r\n      <VERS vnumber=\"28\">But he said, Yea rather, blessed are they that hear the word of God, and keep it.</VERS>\r\n      <VERS vnumber=\"29\">And when the multitudes were gathering together unto him, he began to say, This generation is an evil generation: it seeketh after a sign; and there shall no sign be given to it but the sign of Jonah.</VERS>\r\n      <VERS vnumber=\"30\">For even as Jonah became a sign unto the Ninevites, so shall also the Son of man be to this generation.</VERS>\r\n      <VERS vnumber=\"31\">The queen of the south shall rise up in the judgment with the men of this generation, and shall condemn them: for she came from the ends of the earth to hear the wisdom of Solomon; and behold, a greater than Solomon is here.</VERS>\r\n      <VERS vnumber=\"32\">The men of Nineveh shall stand up in the judgment with this generation, and shall condemn it: for they repented at the preaching of Jonah; and behold, a greater than Jonah is here.</VERS>\r\n      <VERS vnumber=\"33\">No man, when he hath lighted a lamp, putteth it in a cellar, neither under the bushel, but on the stand, that they which enter in may see the light.</VERS>\r\n      <VERS vnumber=\"34\">The lamp of thy body is thine eye: when thine eye is single, thy whole body also is full of light; but when it is evil, thy body also is full of darkness.</VERS>\r\n      <VERS vnumber=\"35\">Look therefore whether the light that is in thee be not darkness.</VERS>\r\n      <VERS vnumber=\"36\">If therefore thy whole body be full of light, having no part dark, it shall be wholly full of light, as when the lamp with its bright shining doth give thee light.</VERS>\r\n      <VERS vnumber=\"37\">Now as he spake, a Pharisee asketh him to dine with him: and he went in, and sat down to meat.</VERS>\r\n      <VERS vnumber=\"38\">And when the Pharisee saw it, he marvelled that he had not first bathed himself before dinner.</VERS>\r\n      <VERS vnumber=\"39\">And the Lord said unto him, Now ye the Pharisees cleanse the outside of the cup and of the platter; but your inward part is full of extortion and wickedness.</VERS>\r\n      <VERS vnumber=\"40\">Ye foolish ones, did not he that made the outside make the inside also?</VERS>\r\n      <VERS vnumber=\"41\">But give for alms those things which are within; and behold, all things are clean unto you.</VERS>\r\n      <VERS vnumber=\"42\">But woe unto you Pharisees! for ye tithe mint and rue and every herb, and pass over justice and the love of God: but these ought ye to have done, and not to leave the other undone.</VERS>\r\n      <VERS vnumber=\"43\">Woe unto you Pharisees! for ye love the chief seats in the synagogues, and the salutations in the marketplaces.</VERS>\r\n      <VERS vnumber=\"44\">Woe unto you! for ye are as the tombs which appear not, and the men that walk over [them] know it not.</VERS>\r\n      <VERS vnumber=\"45\">And one of the lawyers answering saith unto him, Teacher, in saying this thou reproachest us also.</VERS>\r\n      <VERS vnumber=\"46\">And he said, Woe unto you lawyers also! for ye load men with burdens grievous to be borne, and ye yourselves touch not the burdens with one of your fingers.</VERS>\r\n      <VERS vnumber=\"47\">Woe unto you! for ye build the tombs of the prophets, and your fathers killed them.</VERS>\r\n      <VERS vnumber=\"48\">So ye are witnesses and consent unto the works of your fathers: for they killed them, and ye build [their tombs].</VERS>\r\n      <VERS vnumber=\"49\">Therefore also said the wisdom of God, I will send unto them prophets and apostles; and [some] of them they shall kill and persecute;</VERS>\r\n      <VERS vnumber=\"50\">that the blood of all the prophets, which was shed from the foundation of the world, may be required of this generation;</VERS>\r\n      <VERS vnumber=\"51\">from the blood of Abel unto the blood of Zachariah, who perished between the altar and the sanctuary: yea, I say unto you, it shall be required of this generation.</VERS>\r\n      <VERS vnumber=\"52\">Woe unto you lawyers! for ye took away the key of knowledge: ye entered not in yourselves, and them that were entering in ye hindered.</VERS>\r\n      <VERS vnumber=\"53\">And when he was come out from thence, the scribes and the Pharisees began to press upon [him] vehemently, and to provoke him to speak of many things;</VERS>\r\n      <VERS vnumber=\"54\">laying wait for him, to catch something out of his mouth.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">In the mean time, when the many thousands of the multitude were gathered together, insomuch that they trod one upon another, he began to say unto his disciples first of all, Beware ye of the leaven of the Pharisees, which is hypocrisy.</VERS>\r\n      <VERS vnumber=\"2\">But there is nothing covered up, that shall not be revealed; and hid, that shall not be known.</VERS>\r\n      <VERS vnumber=\"3\">Wherefore whatsoever ye have said in the darkness shall be heard in the light; and what ye have spoken in the ear in the inner chambers shall be proclaimed upon the housetops.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">But I will warn you whom ye shall fear: Fear him, who after he hath killed hath power to cast into hell; yea, I say unto you, Fear him.</VERS>\r\n      <VERS vnumber=\"6\">Are not five sparrows sold for two pence? and not one of them is forgotten in the sight of God.</VERS>\r\n      <VERS vnumber=\"7\">But the very hairs of your head are all numbered. Fear not: ye are of more value than many sparrows.</VERS>\r\n      <VERS vnumber=\"8\">And I say unto you, Every one who shall confess me before men, him shall the Son of man also confess before the angels of God:</VERS>\r\n      <VERS vnumber=\"9\">but he that denieth me in the presence of men shall be denied in the presence of the angels of God.</VERS>\r\n      <VERS vnumber=\"10\">And every one who shall speak a word against the Son of man, it shall be forgiven him: but unto him that blasphemeth against the Holy Spirit it shall not be forgiven.</VERS>\r\n      <VERS vnumber=\"11\">And when they bring you before the synagogues, and the rulers, and the authorities, be not anxious how or what ye shall answer, or what ye shall say:</VERS>\r\n      <VERS vnumber=\"12\">for the Holy Spirit shall teach you in that very hour what ye ought to say.</VERS>\r\n      <VERS vnumber=\"13\">And one out of the multitude said unto him, Teacher, bid my brother divide the inheritance with me.</VERS>\r\n      <VERS vnumber=\"14\">But he said unto him, Man, who made me a judge or a divider over you?</VERS>\r\n      <VERS vnumber=\"15\">And he said unto them, Take heed, and keep yourselves from all covetousness: for a man`s life consisteth not in the abundance of the things which he possesseth.</VERS>\r\n      <VERS vnumber=\"16\">And he spake a parable unto them, saying, The ground of a certain rich man brought forth plentifully:</VERS>\r\n      <VERS vnumber=\"17\">and he reasoned within himself, saying, What shall I do, because I have not where to bestow my fruits?</VERS>\r\n      <VERS vnumber=\"18\">And he said, This will I do: I will pull down my barns, and build greater; and there will I bestow all my grain and my goods.</VERS>\r\n      <VERS vnumber=\"19\">And I will say to my soul, Soul, thou hast much goods laid up for many years; take thine ease, eat, drink, be merry.</VERS>\r\n      <VERS vnumber=\"20\">But God said unto him, Thou foolish one, this night is thy soul required of thee; and the things which thou hast prepared, whose shall they be?</VERS>\r\n      <VERS vnumber=\"21\">So is he that layeth up treasure for himself, and is not rich toward God.</VERS>\r\n      <VERS vnumber=\"22\">And he said unto his disciples, Therefore I say unto you, Be not anxious for [your] life, what ye shall eat; nor yet for your body, what ye shall put on.</VERS>\r\n      <VERS vnumber=\"23\">For the life is more than the food, and the body than the raiment.</VERS>\r\n      <VERS vnumber=\"24\">Consider the ravens, that they sow not, neither reap; which have no store-chamber nor barn; and God feedeth them: of how much more value are ye than the birds!</VERS>\r\n      <VERS vnumber=\"25\">And which of you by being anxious can add a cubit unto the measure of his life?</VERS>\r\n      <VERS vnumber=\"26\">If then ye are not able to do even that which is least, why are ye anxious concerning the rest?</VERS>\r\n      <VERS vnumber=\"27\">Consider the lilies, how they grow: they toil not, neither do they spin; yet I say unto you, Even Solomon in all his glory was not arrayed like one of these.</VERS>\r\n      <VERS vnumber=\"28\">But if God doth so clothe the grass in the field, which to-day is, and to-morrow is cast into the oven; how much more [shall he clothe] you, O ye of little faith?</VERS>\r\n      <VERS vnumber=\"29\">And seek not ye what ye shall eat, and what ye shall drink, neither be ye of doubtful mind.</VERS>\r\n      <VERS vnumber=\"30\">For all these things do the nations of the world seek after: but your Father knoweth that ye have need of these things.</VERS>\r\n      <VERS vnumber=\"31\">Yet seek ye his kingdom, and these things shall be added unto you.</VERS>\r\n      <VERS vnumber=\"32\">Fear not, little flock; for it is your Father`s good pleasure to give you the kingdom.</VERS>\r\n      <VERS vnumber=\"33\">Sell that which ye have, and give alms; make for yourselves purses which wax not old, a treasure in the heavens that faileth not, where no thief draweth near, neither moth destroyeth.</VERS>\r\n      <VERS vnumber=\"34\">For where your treasure is, there will your heart be also.</VERS>\r\n      <VERS vnumber=\"35\">Let your loins be girded about, and your lamps burning;</VERS>\r\n      <VERS vnumber=\"36\">and be ye yourselves like unto men looking for their lord, when he shall return from the marriage feast; that, when he cometh and knocketh, they may straightway open unto him.</VERS>\r\n      <VERS vnumber=\"37\">Blessed 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 sit down to meat, and shall come and serve them.</VERS>\r\n      <VERS vnumber=\"38\">And if he shall come in the second watch, and if in the third, and find [them] so blessed are those [servants].</VERS>\r\n      <VERS vnumber=\"39\">But know this, that if the master of the house had known in what hour the thief was coming, he would have watched, and not have left his house to be broken through.</VERS>\r\n      <VERS vnumber=\"40\">Be ye also ready: for in an hour that ye think not the Son of man cometh.</VERS>\r\n      <VERS vnumber=\"41\">And Peter said, Lord, speakest thou this parable unto us, or even unto all?</VERS>\r\n      <VERS vnumber=\"42\">And the Lord said, Who then is the faithful and wise steward, whom his lord shall set over his household, to give them their portion of food in due season?</VERS>\r\n      <VERS vnumber=\"43\">Blessed is that servant, whom his lord when he cometh shall find so doing.</VERS>\r\n      <VERS vnumber=\"44\">Of a truth I say unto you, that he will set him over all that he hath.</VERS>\r\n      <VERS vnumber=\"45\">But if that servant shall say in his heart, My lord delayeth his coming; and shall begin to beat the menservants and the maidservants, and to eat and drink, and to be drunken;</VERS>\r\n      <VERS vnumber=\"46\">the lord of that servant shall come in a day when he expecteth not, and in an hour when he knoweth not, and shall cut him asunder, and appoint his portion with the unfaithful.</VERS>\r\n      <VERS vnumber=\"47\">And that servant, who knew his lord`s will, and made not ready, nor did according to his will, shall be beaten with many [stripes];</VERS>\r\n      <VERS vnumber=\"48\">but he that knew not, and did things worthy of stripes, shall be beaten with few [stripes]. And to whomsoever much is given, of him shall much be required: and to whom they commit much, of him will they ask the more.</VERS>\r\n      <VERS vnumber=\"49\">I came to cast fire upon the earth; and what do I desire, if it is already kindled?</VERS>\r\n      <VERS vnumber=\"50\">But I have a baptism to be baptized with; and how am I straitened till it be accomplished!</VERS>\r\n      <VERS vnumber=\"51\">Think ye that I am come to give peace in the earth? I tell you, Nay; but rather division:</VERS>\r\n      <VERS vnumber=\"52\">for there shall be from henceforth five in one house divided, three against two, and two against three.</VERS>\r\n      <VERS vnumber=\"53\">They shall be divided, father against son, and son against father; mother against daughter, and daughter against her mother; mother in law against her daughter in law, and daughter in law against her mother in law.</VERS>\r\n      <VERS vnumber=\"54\">And he said to the multitudes also, When ye see a cloud rising in the west, straightway ye say, There cometh a shower; and so it cometh to pass.</VERS>\r\n      <VERS vnumber=\"55\">And when [ye see] a south wind blowing, ye say, There will be a scorching heat; and it cometh to pass.</VERS>\r\n      <VERS vnumber=\"56\">Ye hypocrites, ye know how to interpret the face of the earth and the heaven; but how is it that ye know not how to interpret this time?</VERS>\r\n      <VERS vnumber=\"57\">And why even of yourselves judge ye not what is right?</VERS>\r\n      <VERS vnumber=\"58\">For as thou art going with thine adversary before the magistrate, on the way give diligence to be quit of him; lest haply he drag thee unto the judge, and the judge shall deliver thee to the officer, and the officer shall cast thee into prison.</VERS>\r\n      <VERS vnumber=\"59\">I say unto thee, Thou shalt by no means come out thence, till thou have paid the very last mite.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">Now there were some present at that very season who told him of the Galilaeans, whose blood Pilate had mingled with their sacrifices.</VERS>\r\n      <VERS vnumber=\"2\">And he answered and said unto them, Think ye that these Galilaeans were sinners above all the Galilaeans, because they have suffered these things?</VERS>\r\n      <VERS vnumber=\"3\">I tell you, Nay: but, except ye repent, ye shall all in like manner perish.</VERS>\r\n      <VERS vnumber=\"4\">Or those eighteen, upon whom the tower in Siloam fell, and killed them, think ye that they were offenders above all the men that dwell in Jerusalem?</VERS>\r\n      <VERS vnumber=\"5\">I tell you, Nay: but, except ye repent, ye shall all likewise perish.</VERS>\r\n      <VERS vnumber=\"6\">And he spake this parable; A certain man had a fig tree planted in his vineyard; and he came seeking fruit thereon, and found none.</VERS>\r\n      <VERS vnumber=\"7\">And he said unto the vinedresser, Behold, these three years I come seeking fruit on this fig tree, and find none: cut it down; why doth it also cumber the ground?</VERS>\r\n      <VERS vnumber=\"8\">And he answering saith unto him, Lord, let it alone this year also, till I shall dig about it, and dung it:</VERS>\r\n      <VERS vnumber=\"9\">and if it bear fruit thenceforth, [well]; but if not, thou shalt cut it down.</VERS>\r\n      <VERS vnumber=\"10\">And he was teaching in one of the synagogues on the sabbath day.</VERS>\r\n      <VERS vnumber=\"11\">And behold, a woman that had a spirit of infirmity eighteen years; and she was bowed together, and could in no wise lift herself up.</VERS>\r\n      <VERS vnumber=\"12\">And when Jesus saw her, he called her, and said to her, Woman, thou art loosed from thine infirmity.</VERS>\r\n      <VERS vnumber=\"13\">And he laid his hands upon her: and immediately she was made straight, and glorified God.</VERS>\r\n      <VERS vnumber=\"14\">And the ruler of the synagogue, being moved with indignation because Jesus had healed on the sabbath, answered and said to the multitude, There are six days in which men ought to work: in them therefore come and be healed, and not on the day of the sabbath.</VERS>\r\n      <VERS vnumber=\"15\">But the Lord answered him, and said, Ye hypocrites, doth not each one of you on the sabbath loose his ox or his ass from the stall, and lead him away to watering?</VERS>\r\n      <VERS vnumber=\"16\">And ought not this woman, being a daughter of Abraham, whom Satan had bound, lo, [these] eighteen years, to have been loosed from this bond on the day of the sabbath?</VERS>\r\n      <VERS vnumber=\"17\">And as he said these things, all his adversaries were put to shame: and all the multitude rejoiced for all the glorious things that were done by him.</VERS>\r\n      <VERS vnumber=\"18\">He said therefore, Unto what is the kingdom of God like? and whereunto shall I liken it?</VERS>\r\n      <VERS vnumber=\"19\">It is like unto a grain of mustard seed, which a man took, and cast into his own garden; and it grew, and became a tree; and the birds of the heaven lodged in the branches thereof.</VERS>\r\n      <VERS vnumber=\"20\">And again he said, Whereunto shall I liken the kingdom of God?</VERS>\r\n      <VERS vnumber=\"21\">It is like unto leaven, which a woman took and hid in three measures of meal, till it was all leavened.</VERS>\r\n      <VERS vnumber=\"22\">And he went on his way through cities and villages, teaching, and journeying on unto Jerusalem.</VERS>\r\n      <VERS vnumber=\"23\">And one said unto him, Lord, are they few that are saved? And he said unto them,</VERS>\r\n      <VERS vnumber=\"24\">Strive to enter in by the narrow door: for many, I say unto you, shall seek to enter in, and shall not be able.</VERS>\r\n      <VERS vnumber=\"25\">When 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, open to us; and he shall answer and say to you, I know you not whence ye are;</VERS>\r\n      <VERS vnumber=\"26\">then shall ye begin to say, We did eat and drink in thy presence, and thou didst teach in our streets;</VERS>\r\n      <VERS vnumber=\"27\">and he shall say, I tell you, I know not whence ye are; depart from me, all ye workers of iniquity.</VERS>\r\n      <VERS vnumber=\"28\">There shall be the weeping and the gnashing of teeth, when ye shall see Abraham, and Isaac, and Jacob, and all the prophets, in the kingdom of God, and yourselves cast forth without.</VERS>\r\n      <VERS vnumber=\"29\">And they shall come from the east and west, and from the north and south, and shall sit down in the kingdom of God.</VERS>\r\n      <VERS vnumber=\"30\">And behold, there are last who shall be first, and there are first who shall be last.</VERS>\r\n      <VERS vnumber=\"31\">In that very hour there came certain Pharisees, saying to him, Get thee out, and go hence: for Herod would fain kill thee.</VERS>\r\n      <VERS vnumber=\"32\">And he said unto them, Go and say to that fox, Behold, I cast out demons and perform cures to-day and to-morrow, and the third [day] I am perfected.</VERS>\r\n      <VERS vnumber=\"33\">Nevertheless I must go on my way to-day and to-morrow and the [day] following: for it cannot be that a prophet perish out of Jerusalem.</VERS>\r\n      <VERS vnumber=\"34\">O Jerusalem, Jerusalem, that killeth the prophets, and stoneth them that are sent unto her! how often would I have gathered thy children together, even as a hen [gathereth] her own brood under her wings, and ye would not!</VERS>\r\n      <VERS vnumber=\"35\">Behold, your house is left unto you [desolate]: and I say unto you, Ye shall not see me, until ye shall say, Blessed is he that cometh in the name of the Lord.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">And it came to pass, when he went into the house of one of the rulers of the Pharisees on a sabbath to eat bread, that they were watching him.</VERS>\r\n      <VERS vnumber=\"2\">And behold, there was before him a certain man that had the dropsy.</VERS>\r\n      <VERS vnumber=\"3\">And Jesus answering spake unto the lawyers and Pharisees, saying, Is it lawful to heal on the sabbath, or not?</VERS>\r\n      <VERS vnumber=\"4\">But they held their peace. And he took him, and healed him, and let him go.</VERS>\r\n      <VERS vnumber=\"5\">And he said unto them, Which of you shall have an ass or an ox fallen into a well, and will not straightway draw him up on a sabbath day?</VERS>\r\n      <VERS vnumber=\"6\">And they could not answer again unto these things.</VERS>\r\n      <VERS vnumber=\"7\">And he spake a parable unto those that were bidden, when he marked how they chose out the chief seats; saying unto them,</VERS>\r\n      <VERS vnumber=\"8\">When thou art bidden of any man to a marriage feast, sit not down in the chief seat; lest haply a more honorable man than thou be bidden of him,</VERS>\r\n      <VERS vnumber=\"9\">and he that bade thee and him shall come and say to thee, Give this man place; and then thou shalt begin with shame to take the lowest place.</VERS>\r\n      <VERS vnumber=\"10\">But when thou art bidden, go and sit down in the lowest place; that when he that hath bidden thee cometh, he may say to thee, Friend, go up higher: then shalt thou have glory in the presence of all that sit at meat with thee.</VERS>\r\n      <VERS vnumber=\"11\">For everyone that exalteth himself shall be humbled; and he that humbleth himself shall be exalted.</VERS>\r\n      <VERS vnumber=\"12\">And he said to him also that had bidden him, When thou makest a dinner or a supper, call not thy friends, nor thy brethren, nor thy kinsmen, nor rich neighbors; lest haply they also bid thee again, and a recompense be made thee.</VERS>\r\n      <VERS vnumber=\"13\">But when thou makest a feast, bid the poor, the maimed, the lame, the blind:</VERS>\r\n      <VERS vnumber=\"14\">and thou shalt be blessed; because they have not [wherewith] to recompense thee: for thou shalt be recompensed in the resurrection of the just.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">But he said unto him, A certain man made a great supper; and he bade many:</VERS>\r\n      <VERS vnumber=\"17\">and he sent forth his servant at supper time to say to them that were bidden, Come; for [all] things are now ready.</VERS>\r\n      <VERS vnumber=\"18\">And they all with one [consent] began to make excuse. The first said unto him, I have bought a field, and I must needs go out and see it; I pray thee have me excused.</VERS>\r\n      <VERS vnumber=\"19\">And another said, I have bought five yoke of oxen, and I go to prove them; I pray thee have me excused.</VERS>\r\n      <VERS vnumber=\"20\">And another said, I have married a wife, and therefore I cannot come.</VERS>\r\n      <VERS vnumber=\"21\">And the servant came, and told 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 maimed and blind and lame.</VERS>\r\n      <VERS vnumber=\"22\">And the servant said, Lord, what thou didst command is done, and yet there is room.</VERS>\r\n      <VERS vnumber=\"23\">And the lord said unto the servant, Go out into the highways and hedges, and constrain [them] to come in, that my house may be filled.</VERS>\r\n      <VERS vnumber=\"24\">For I say unto you, that none of those men that were bidden shall taste of my supper.</VERS>\r\n      <VERS vnumber=\"25\">Now there went with him great multitudes: and he turned, and said unto them,</VERS>\r\n      <VERS vnumber=\"26\">If any man cometh unto me, and hateth not his own father, and mother, and wife, and children, and brethren, and sisters, yea, and his own life also, he cannot be my disciple.</VERS>\r\n      <VERS vnumber=\"27\">Whosoever doth not bear his own cross, and come after me, cannot be my disciple.</VERS>\r\n      <VERS vnumber=\"28\">For which of you, desiring to build a tower, doth not first sit down and count the cost, whether he have [wherewith] to complete it?</VERS>\r\n      <VERS vnumber=\"29\">Lest haply, when he hath laid a foundation, and is not able to finish, all that behold begin to mock him,</VERS>\r\n      <VERS vnumber=\"30\">saying, This man began to build, and was not able to finish.</VERS>\r\n      <VERS vnumber=\"31\">Or what king, as he goeth to encounter another king in war, will not sit down first and take counsel whether he is able with ten thousand to meet him that cometh against him with twenty thousand?</VERS>\r\n      <VERS vnumber=\"32\">Or else, while the other is yet a great way off, he sendeth an ambassage, and asketh conditions of peace.</VERS>\r\n      <VERS vnumber=\"33\">So therefore whosoever he be of you that renounceth not all that he hath, he cannot be my disciple.</VERS>\r\n      <VERS vnumber=\"34\">Salt therefore is good: but if even the salt have lost its savor, wherewith shall it be seasoned?</VERS>\r\n      <VERS vnumber=\"35\">It is fit neither for the land nor for the dunghill: [men] cast it out. He that hath ears to hear, let him hear.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">Now all the publicans and sinners were drawing near unto him to hear him.</VERS>\r\n      <VERS vnumber=\"2\">And both the Pharisees and the scribes murmured, saying, This man receiveth sinners, and eateth with them.</VERS>\r\n      <VERS vnumber=\"3\">And he spake unto them this parable, saying,</VERS>\r\n      <VERS vnumber=\"4\">What man of you, having a hundred sheep, and having lost one of them, doth not leave the ninety and nine in the wilderness, and go after that which is lost, until he find it?</VERS>\r\n      <VERS vnumber=\"5\">And when he hath found it, he layeth it on his shoulders, rejoicing.</VERS>\r\n      <VERS vnumber=\"6\">And when he cometh home, he calleth together his friends and his neighbors, saying unto them, Rejoice with me, for I have found my sheep which was lost.</VERS>\r\n      <VERS vnumber=\"7\">I say unto you, that even so there shall be joy in heaven over one sinner that repenteth, [more] than over ninety and nine righteous persons, who need no repentance.</VERS>\r\n      <VERS vnumber=\"8\">Or what woman having ten pieces of silver, if she lose one piece, doth not light a lamp, and sweep the house, and seek diligently until she find it?</VERS>\r\n      <VERS vnumber=\"9\">And when she hath found it, she calleth together her friends and neighbors, saying, Rejoice with me, for I have found the piece which I had lost.</VERS>\r\n      <VERS vnumber=\"10\">Even so, I say unto you, there is joy in the presence of the angels of God over one sinner that repenteth.</VERS>\r\n      <VERS vnumber=\"11\">And he said, A certain man had two sons:</VERS>\r\n      <VERS vnumber=\"12\">and the younger of them said to his father, Father, give me the portion of [thy] substance that falleth to me. And he divided unto them his living.</VERS>\r\n      <VERS vnumber=\"13\">And not many days after, the younger son gathered all together and took his journey into a far country; and there he wasted his substance with riotous living.</VERS>\r\n      <VERS vnumber=\"14\">And when he had spent all, there arose a mighty famine in that country; and he began to be in want.</VERS>\r\n      <VERS vnumber=\"15\">And he went and joined himself to one of the citizens of that country; and he sent him into his fields to feed swine.</VERS>\r\n      <VERS vnumber=\"16\">And he would fain have filled his belly with the husks that the swine did eat: and no man gave unto him.</VERS>\r\n      <VERS vnumber=\"17\">But when he came to himself he said, How many hired servants of my father`s have bread enough and to spare, and I perish here with hunger!</VERS>\r\n      <VERS vnumber=\"18\">I will arise and go to my father, and will say unto him, Father, I have sinned against heaven, and in thy sight:</VERS>\r\n      <VERS vnumber=\"19\">I am no more worthy to be called your son: make me as one of thy hired servants.</VERS>\r\n      <VERS vnumber=\"20\">And he arose, and came to his father. But while he was yet afar off, his father saw him, and was moved with compassion, and ran, and fell on his neck, and kissed him.</VERS>\r\n      <VERS vnumber=\"21\">And the son said unto him, Father, I have sinned against heaven, and in thy sight: I am no more worthy to be called thy son.</VERS>\r\n      <VERS vnumber=\"22\">But the father said to his servants, Bring forth quickly the best robe, and put it on him; and put a ring on his hand, and shoes on his feet:</VERS>\r\n      <VERS vnumber=\"23\">and bring the fatted calf, [and] kill it, and let us eat, and make merry:</VERS>\r\n      <VERS vnumber=\"24\">for this my son was dead, and is alive again; he was lost, and is found. And they began to be merry.</VERS>\r\n      <VERS vnumber=\"25\">Now his elder son was in the field: and as he came and drew nigh to the house, he heard music and dancing.</VERS>\r\n      <VERS vnumber=\"26\">And he called to him one of the servants, and inquired what these things might be.</VERS>\r\n      <VERS vnumber=\"27\">And he said unto him, Thy brother is come; and thy father hath killed the fatted calf, because he hath received him safe and sound.</VERS>\r\n      <VERS vnumber=\"28\">But he was angry, and would not go in: and his father came out, and entreated him.</VERS>\r\n      <VERS vnumber=\"29\">But he answered and said to his father, Lo, these many years do I serve thee, and I never transgressed a commandment of thine; and [yet] thou never gavest me a kid, that I might make merry with my friends:</VERS>\r\n      <VERS vnumber=\"30\">but when this thy son came, who hath devoured thy living with harlots, thou killedst for him the fatted calf.</VERS>\r\n      <VERS vnumber=\"31\">And he said unto him, Son, thou art ever with me, and all that is mine is thine.</VERS>\r\n      <VERS vnumber=\"32\">But it was meet to make merry and be glad: for this thy brother was dead, and is alive [again]; and [was] lost, and is found.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">And he said also unto the disciples, There was a certain rich man, who had a steward; and the same was accused unto him that he was wasting his goods.</VERS>\r\n      <VERS vnumber=\"2\">And he called him, and said unto him, What is this that I hear of thee? render the account of thy stewardship; for thou canst be no longer steward.</VERS>\r\n      <VERS vnumber=\"3\">And the steward said within himself, What shall I do, seeing that my lord taketh away the stewardship from me? I have not strength to dig; to beg I am ashamed.</VERS>\r\n      <VERS vnumber=\"4\">I am resolved what to do, that, when I am put out of the stewardship, they may receive me into their houses.</VERS>\r\n      <VERS vnumber=\"5\">And calling to him each one of his lord`s debtors, he said to the first, How much owest thou unto my lord?</VERS>\r\n      <VERS vnumber=\"6\">And he said, A hundred measures of oil. And he said unto him, Take thy bond, and sit down quickly and write fifty.</VERS>\r\n      <VERS vnumber=\"7\">Then said he to another, And how much owest thou? And he said, A hundred measures of wheat. He saith unto him, Take thy bond, and write fourscore.</VERS>\r\n      <VERS vnumber=\"8\">And his lord commended the unrighteous steward because he had done wisely: for the sons of this world are for their own generation wiser than the sons of the light.</VERS>\r\n      <VERS vnumber=\"9\">And I say unto you, Make to yourselves friends by means of the mammon of unrighteousness; that, when it shall fail, they may receive you into the eternal tabernacles.</VERS>\r\n      <VERS vnumber=\"10\">He that is faithful in a very little is faithful also in much: and he that is unrighteous in a very little is unrighteous also in much.</VERS>\r\n      <VERS vnumber=\"11\">If therefore ye have not been faithful in the unrighteous mammon, who will commit to your trust the true [riches]?</VERS>\r\n      <VERS vnumber=\"12\">And if ye have not been faithful in that which is another`s, who will give you that which is your own?</VERS>\r\n      <VERS vnumber=\"13\">No servant can serve two masters: for either he will hate the one, and love the other; or else he will hold to one, and despise the other. Ye cannot serve God and mammon.</VERS>\r\n      <VERS vnumber=\"14\">And the Pharisees, who were lovers of money, heard all these things; and they scoffed at him.</VERS>\r\n      <VERS vnumber=\"15\">And he said unto them, Ye are they that justify yourselves in the sight of men; but God knoweth your hearts: for that which is exalted among men is an abomination in the sight of God.</VERS>\r\n      <VERS vnumber=\"16\">The law and the prophets [were] until John: from that time the gospel of the kingdom of God is preached, and every man entereth violently into it.</VERS>\r\n      <VERS vnumber=\"17\">But it is easier for heaven and earth to pass away, than for one tittle of the law to fall.</VERS>\r\n      <VERS vnumber=\"18\">Every one that putteth away his wife, and marrieth another, committeth adultery: and he that marrieth one that is put away from a husband committeth adultery.</VERS>\r\n      <VERS vnumber=\"19\">Now there was a certain rich man, and he was clothed in purple and fine linen, faring sumptuously every day:</VERS>\r\n      <VERS vnumber=\"20\">and a certain beggar named Lazarus was laid at his gate, full of sores,</VERS>\r\n      <VERS vnumber=\"21\">and desiring to be fed with the [crumbs] that fell from the rich man`s table; yea, even the dogs come and licked his sores.</VERS>\r\n      <VERS vnumber=\"22\">And it came to pass, that the beggar died, and that he was carried away by the angels into Abraham`s bosom: and the rich man also died, and was buried.</VERS>\r\n      <VERS vnumber=\"23\">And in Hades he lifted up his eyes, being in torments, and seeth Abraham afar off, and Lazarus in his bosom.</VERS>\r\n      <VERS vnumber=\"24\">And 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 in anguish in this flame.</VERS>\r\n      <VERS vnumber=\"25\">But Abraham said, Son, remember that thou in thy lifetime receivedst thy good things, and Lazarus in like manner evil things: but now here he is comforted and thou art in anguish.</VERS>\r\n      <VERS vnumber=\"26\">And besides all this, between us and you there is a great gulf fixed, that they that would pass from hence to you may not be able, and that none may cross over from thence to us.</VERS>\r\n      <VERS vnumber=\"27\">And he said, I pray thee therefore, father, that thou wouldest send him to my father`s house;</VERS>\r\n      <VERS vnumber=\"28\">for I have five brethren; that he may testify unto them, lest they also come into this place of torment.</VERS>\r\n      <VERS vnumber=\"29\">But Abraham saith, They have Moses and the prophets; let them hear them.</VERS>\r\n      <VERS vnumber=\"30\">And he said, Nay, father Abraham: but if one go to them from the dead, they will repent.</VERS>\r\n      <VERS vnumber=\"31\">And he said unto him, If they hear not Moses and the prophets, neither will they be persuaded, if one rise from the dead.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"17\">\r\n      <VERS vnumber=\"1\">And he said unto his disciples, It is impossible but that occasions of stumbling should come; but woe unto him, through whom they come!</VERS>\r\n      <VERS vnumber=\"2\">It were well for him if a millstone were hanged about his neck, and he were thrown into the sea, rather than that he should cause one of these little ones to stumble.</VERS>\r\n      <VERS vnumber=\"3\">Take heed to yourselves: if thy brother sin, rebuke him; and if he repent, forgive him.</VERS>\r\n      <VERS vnumber=\"4\">And if he sin against thee seven times in the day, and seven times turn again to thee, saying, I repent; thou shalt forgive him.</VERS>\r\n      <VERS vnumber=\"5\">And the apostles said unto the Lord, Increase our faith.</VERS>\r\n      <VERS vnumber=\"6\">And the Lord said, If ye had faith as a grain of mustard seed, ye would say unto this sycamine tree, Be thou rooted up, and be thou planted in the sea; and it would obey you.</VERS>\r\n      <VERS vnumber=\"7\">But who is there of you, having a servant plowing or keeping sheep, that will say unto him, when he is come in from the field, Come straightway and sit down to meat;</VERS>\r\n      <VERS vnumber=\"8\">and 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?</VERS>\r\n      <VERS vnumber=\"9\">Doth he thank the servant because he did the things that were commanded?</VERS>\r\n      <VERS vnumber=\"10\">Even so ye also, when ye shall have done all the things that are commanded you, say, We are unprofitable servants; we have done that which it was our duty to do.</VERS>\r\n      <VERS vnumber=\"11\">And it came to pass, as they were on their way to Jerusalem, that he was passing along the borders of Samaria and Galilee.</VERS>\r\n      <VERS vnumber=\"12\">And as he entered into a certain village, there met him ten men that were lepers, who stood afar off:</VERS>\r\n      <VERS vnumber=\"13\">and they lifted up their voices, saying, Jesus, Master, have mercy on us.</VERS>\r\n      <VERS vnumber=\"14\">And when he saw them, he said unto them, Go and show yourselves unto the priests. And it came to pass, as they went, they were cleansed.</VERS>\r\n      <VERS vnumber=\"15\">And one of them, when he saw that he was healed, turned back, with a loud voice glorifying God;</VERS>\r\n      <VERS vnumber=\"16\">and he fell upon his face at his feet, giving him thanks: and he was a Samaritan.</VERS>\r\n      <VERS vnumber=\"17\">And Jesus answering said, Were not the ten cleansed? but where are the nine?</VERS>\r\n      <VERS vnumber=\"18\">Were there none found that returned to give glory to God, save this stranger?</VERS>\r\n      <VERS vnumber=\"19\">And he said unto him, Arise, and go thy way: thy faith hath made thee whole.</VERS>\r\n      <VERS vnumber=\"20\">And being asked by the Pharisees, when the kingdom of God cometh, he answered them and said, The kingdom of God cometh not with observation:</VERS>\r\n      <VERS vnumber=\"21\">neither shall they say, Lo, here! or, There! for lo, the kingdom of God is within you.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And they shall say to you, Lo, there! Lo, here! go not away, nor follow after [them]:</VERS>\r\n      <VERS vnumber=\"24\">for as the lightning, when it lighteneth out of the one part under the heaven, shineth unto the other part under heaven; so shall the Son of man be in his day.</VERS>\r\n      <VERS vnumber=\"25\">But first must he suffer many things and be rejected of this generation.</VERS>\r\n      <VERS vnumber=\"26\">And as it came to pass in the days of Noah, even so shall it be also in the days of the Son of man.</VERS>\r\n      <VERS vnumber=\"27\">They ate, they drank, they married, they were given in marriage, until the day that Noah entered into the ark, and the flood came, and destroyed them all.</VERS>\r\n      <VERS vnumber=\"28\">Likewise even as it came to pass in the days of Lot; they ate, they drank, they bought, they sold, they planted, they builded;</VERS>\r\n      <VERS vnumber=\"29\">but in the day that Lot went out from Sodom it rained fire and brimstone from heaven, and destroyed them all:</VERS>\r\n      <VERS vnumber=\"30\">after the same manner shall it be in the day that the Son of man is revealed.</VERS>\r\n      <VERS vnumber=\"31\">In that day, he that shall be on the housetop, and his goods in the house, let him not go down to take them away: and let him that is in the field likewise not return back.</VERS>\r\n      <VERS vnumber=\"32\">Remember Lot`s wife.</VERS>\r\n      <VERS vnumber=\"33\">Whosoever shall seek to gain his life shall lose it: but whosoever shall lose [his life] shall preserve it.</VERS>\r\n      <VERS vnumber=\"34\">I say unto you, In that night there shall be two men on one bed; the one shall be taken, and the other shall be left.</VERS>\r\n      <VERS vnumber=\"35\">There shall be two women grinding together; the one shall be taken, and the other shall be left.</VERS>\r\n      <VERS vnumber=\"36\">[There shall be two men in the field; the one shall be taken, and the other shall be left.]</VERS>\r\n      <VERS vnumber=\"37\">And they answering say unto him, Where, Lord? And he said unto them, Where the body [is], thither will the eagles also be gathered together.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"18\">\r\n      <VERS vnumber=\"1\">And he spake a parable unto them to the end that they ought always to pray, and not to faint;</VERS>\r\n      <VERS vnumber=\"2\">saying, There was in a city a judge, who feared not God, and regarded not man:</VERS>\r\n      <VERS vnumber=\"3\">and there was a widow in that city; and she came oft unto him, saying, Avenge me of mine adversary.</VERS>\r\n      <VERS vnumber=\"4\">And he would not for a while: but afterward he said within himself, Though I fear not God, nor regard man;</VERS>\r\n      <VERS vnumber=\"5\">yet because this widow troubleth me, I will avenge her, lest she wear me out by her continual coming.</VERS>\r\n      <VERS vnumber=\"6\">And the Lord said, Hear what the unrighteous judge saith.</VERS>\r\n      <VERS vnumber=\"7\">And shall not God avenge his elect, that cry to him day and night, and [yet] he is longsuffering over them?</VERS>\r\n      <VERS vnumber=\"8\">I say unto you, that he will avenge them speedily. Nevertheless, when the Son of man cometh, shall he find faith on the earth?</VERS>\r\n      <VERS vnumber=\"9\">And he spake also this parable unto certain who trusted in themselves that they were righteous, and set all others at nought:</VERS>\r\n      <VERS vnumber=\"10\">Two men went up into the temple to pray; the one a Pharisee, and the other a publican.</VERS>\r\n      <VERS vnumber=\"11\">The Pharisee stood and prayed thus with himself, God, I thank thee, that I am not as the rest of men, extortioners, unjust, adulterers, or even as this publican.</VERS>\r\n      <VERS vnumber=\"12\">I fast twice in the week; I give tithes of all that I get.</VERS>\r\n      <VERS vnumber=\"13\">But the publican, standing afar off, would not lift up so much as his eyes unto heaven, but smote his breast, saying, God, be thou merciful to me a sinner.</VERS>\r\n      <VERS vnumber=\"14\">I say unto you, This man went down to his house justified rather than the other: for every one that exalteth himself shall be humbled; but he that humbleth himself shall be exalted.</VERS>\r\n      <VERS vnumber=\"15\">And they were bringing unto him also their babes, that he should touch them: but when the disciples saw it, they rebuked them.</VERS>\r\n      <VERS vnumber=\"16\">But Jesus called them unto him, saying, Suffer the little children to come unto me, and forbid them not: for to such belongeth the kingdom of God.</VERS>\r\n      <VERS vnumber=\"17\">Verily I say unto you, Whosoever shall not receive the kingdom of God as a little child, he shall in no wise enter therein.</VERS>\r\n      <VERS vnumber=\"18\">And a certain ruler asked him, saying, Good Teacher, what shall I do to inherit eternal life?</VERS>\r\n      <VERS vnumber=\"19\">And Jesus said unto him, Why callest thou me good? none is good, save one, [even] God.</VERS>\r\n      <VERS vnumber=\"20\">Thou knowest the commandments, Do not commit adultery, Do not kill, Do not steal, Do not bear false witness, Honor thy father and mother.</VERS>\r\n      <VERS vnumber=\"21\">And he said, All these things have I observed from my youth up.</VERS>\r\n      <VERS vnumber=\"22\">And when Jesus heard it, he said unto him, One thing thou lackest yet: sell all that thou hast, and distribute unto the poor, and thou shalt have treasure in heaven: and come, follow me.</VERS>\r\n      <VERS vnumber=\"23\">But when he heard these things, he became exceeding sorrowful; for he was very rich.</VERS>\r\n      <VERS vnumber=\"24\">And Jesus seeing him said, How hardly shall they that have riches enter into the kingdom of God!</VERS>\r\n      <VERS vnumber=\"25\">For it is easier for a camel to enter in through a needle`s eye, than for a rich man to enter into the kingdom of God.</VERS>\r\n      <VERS vnumber=\"26\">And they that heard it said, Then who can be saved?</VERS>\r\n      <VERS vnumber=\"27\">But he said, The things which are impossible with men are possible with God.</VERS>\r\n      <VERS vnumber=\"28\">And Peter said, Lo, we have left our own, and followed thee.</VERS>\r\n      <VERS vnumber=\"29\">And he said unto them, Verily I say unto you, There is no man that hath left house, or wife, or brethren, or parents, or children, for the kingdom of God`s sake,</VERS>\r\n      <VERS vnumber=\"30\">who shall not receive manifold more in this time, and in the world to come eternal life.</VERS>\r\n      <VERS vnumber=\"31\">And he took unto him the twelve, and said unto them, Behold, we go up to Jerusalem, and all the things that are written through the prophets shall be accomplished unto the Son of man.</VERS>\r\n      <VERS vnumber=\"32\">For he shall be delivered up unto the Gentiles, and shall be mocked, and shamefully treated, and spit upon:</VERS>\r\n      <VERS vnumber=\"33\">and they shall scourge and kill him: and the third day he shall rise again.</VERS>\r\n      <VERS vnumber=\"34\">And they understood none of these things; and this saying was hid from them, and they perceived not the things that were said.</VERS>\r\n      <VERS vnumber=\"35\">And it came to pass, as he drew nigh unto Jericho, a certain blind man sat by the way side begging:</VERS>\r\n      <VERS vnumber=\"36\">and hearing a multitude going by, he inquired what this meant.</VERS>\r\n      <VERS vnumber=\"37\">And they told him that Jesus of Nazareth passeth by.</VERS>\r\n      <VERS vnumber=\"38\">And he cried, saying, Jesus, thou son of David, have mercy on me.</VERS>\r\n      <VERS vnumber=\"39\">And they that went before rebuked him, that he should hold his peace: but he cried out the more a great deal, Thou son of David, have mercy on me.</VERS>\r\n      <VERS vnumber=\"40\">And Jesus stood, and commanded him to be brought unto him: and when he was come near, he asked him,</VERS>\r\n      <VERS vnumber=\"41\">What wilt thou that I should do unto thee? And he said, Lord, that I may receive my sight.</VERS>\r\n      <VERS vnumber=\"42\">And Jesus said unto him, Receive thy sight; thy faith hath made thee whole.</VERS>\r\n      <VERS vnumber=\"43\">And immediately he received his sight, and followed him, glorifying God: and all the people, when they saw it, gave praise unto God.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"19\">\r\n      <VERS vnumber=\"1\">And he entered and was passing through Jericho.</VERS>\r\n      <VERS vnumber=\"2\">And behold, a man called by name Zacchaeus; and he was a chief publican, and he was rich.</VERS>\r\n      <VERS vnumber=\"3\">And he sought to see Jesus who he was; and could not for the crowd, because he was little of stature.</VERS>\r\n      <VERS vnumber=\"4\">And he ran on before, and climbed up into a sycomore tree to see him: for he was to pass that way.</VERS>\r\n      <VERS vnumber=\"5\">And when Jesus came to the place, he looked up, and said unto him, Zacchaeus, make haste, and come down; for to-day I must abide at thy house.</VERS>\r\n      <VERS vnumber=\"6\">And he made haste, and came down, and received him joyfully.</VERS>\r\n      <VERS vnumber=\"7\">And when they saw it, they all murmured, saying, He is gone in to lodge with a man that is a sinner.</VERS>\r\n      <VERS vnumber=\"8\">And Zacchaeus stood, and said unto the Lord, Behold, Lord, the half of my goods I give to the poor; and if I have wrongfully exacted aught of any man, I restore fourfold.</VERS>\r\n      <VERS vnumber=\"9\">And Jesus said unto him, To-day is salvation come to this house, forasmuch as he also is a son of Abraham.</VERS>\r\n      <VERS vnumber=\"10\">For the Son of man came to seek and to save that which was lost.</VERS>\r\n      <VERS vnumber=\"11\">And as they heard these things, he added and spake a parable, because he was nigh to Jerusalem, and [because] they supposed that the kingdom of God was immediately to appear.</VERS>\r\n      <VERS vnumber=\"12\">He said therefore, A certain nobleman went into a far country, to receive for himself a kingdom, and to return.</VERS>\r\n      <VERS vnumber=\"13\">And he called ten servants of his, and gave them ten pounds, and said unto them, Trade ye [herewith] till I come.</VERS>\r\n      <VERS vnumber=\"14\">But his citizens hated him, and sent an ambassage after him, saying, We will not that this man reign over us.</VERS>\r\n      <VERS vnumber=\"15\">And it came to pass, when he was come back again, having received the kingdom, that he commanded these servants, unto whom he had given the money, to be called to him, that he might know what they had gained by trading.</VERS>\r\n      <VERS vnumber=\"16\">And the first came before him, saying, Lord, thy pound hath made ten pounds more.</VERS>\r\n      <VERS vnumber=\"17\">And he said unto him, Well done, thou good servant: because thou wast found faithful in a very little, have thou authority over ten cities.</VERS>\r\n      <VERS vnumber=\"18\">And the second came, saying, Thy pound, Lord, hath made five pounds.</VERS>\r\n      <VERS vnumber=\"19\">And he said unto him also, Be thou also over five cities.</VERS>\r\n      <VERS vnumber=\"20\">And another came, saying, Lord, behold, [here is] thy pound, which I kept laid up in a napkin:</VERS>\r\n      <VERS vnumber=\"21\">for I feared thee, because thou art an austere man: thou takest up that which thou layedst not down, and reapest that which thou didst not sow.</VERS>\r\n      <VERS vnumber=\"22\">He saith unto him, Out of thine own mouth will I judge thee, thou wicked servant. Thou knewest that I am an austere man, taking up that which I laid not down, and reaping that which I did not sow;</VERS>\r\n      <VERS vnumber=\"23\">then wherefore gavest thou not my money into the bank, and I at my coming should have required it with interest?</VERS>\r\n      <VERS vnumber=\"24\">And he said unto them that stood by, Take away from him the pound, and give it unto him that hath the ten pounds.</VERS>\r\n      <VERS vnumber=\"25\">And they said unto him, Lord, he hath ten pounds.</VERS>\r\n      <VERS vnumber=\"26\">I say unto you, that unto every one that hath shall be given; but from him that hath not, even that which he hath shall be taken away from him.</VERS>\r\n      <VERS vnumber=\"27\">But these mine enemies, that would not that I should reign over them, bring hither, and slay them before me.</VERS>\r\n      <VERS vnumber=\"28\">And when he had thus spoken, he went on before, going up to Jerusalem.</VERS>\r\n      <VERS vnumber=\"29\">And it came to pass, when he drew nigh unto Bethphage and Bethany, at the mount that is called Olivet, he sent two of the disciples,</VERS>\r\n      <VERS vnumber=\"30\">saying, Go your way into the village over against [you]; in which as ye enter ye shall find a colt tied, whereon no man ever yet sat: loose him, and bring him.</VERS>\r\n      <VERS vnumber=\"31\">And if any one ask you, Why do ye loose him? thus shall ye say, The Lord hath need of him.</VERS>\r\n      <VERS vnumber=\"32\">And they that were sent went away, and found even as he had said unto them.</VERS>\r\n      <VERS vnumber=\"33\">And as they were loosing the colt, the owners thereof said unto them, Why loose ye the colt?</VERS>\r\n      <VERS vnumber=\"34\">And they said, The Lord hath need of him.</VERS>\r\n      <VERS vnumber=\"35\">And they brought him to Jesus: and they threw their garments upon the colt, and set Jesus thereon.</VERS>\r\n      <VERS vnumber=\"36\">And as he went, they spread their garments in the way.</VERS>\r\n      <VERS vnumber=\"37\">And as he was now drawing nigh, [even] 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 which they had seen;</VERS>\r\n      <VERS vnumber=\"38\">saying, Blessed [is] the King that cometh in the name of the Lord: peace in heaven, and glory in the highest.</VERS>\r\n      <VERS vnumber=\"39\">And some of the Pharisees from the multitude said unto him, Teacher, rebuke thy disciples.</VERS>\r\n      <VERS vnumber=\"40\">And he answered and said, I tell you that, if these shall hold their peace, the stones will cry out.</VERS>\r\n      <VERS vnumber=\"41\">And when he drew nigh, he saw the city and wept over it,</VERS>\r\n      <VERS vnumber=\"42\">saying, If thou hadst known in this day, even thou, the things which belong unto peace! but now they are hid from thine eyes.</VERS>\r\n      <VERS vnumber=\"43\">For the days shall come upon thee, when thine enemies shall cast up a bank about thee, and compass thee round, and keep thee in on every side,</VERS>\r\n      <VERS vnumber=\"44\">and shall dash thee to 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.</VERS>\r\n      <VERS vnumber=\"45\">And he entered into the temple, and began to cast out them that sold,</VERS>\r\n      <VERS vnumber=\"46\">saying unto them, It is written, And my house shall be a house of prayer: but ye have made it a den of robbers.</VERS>\r\n      <VERS vnumber=\"47\">And he was teaching daily in the temple. But the chief priests and the scribes and the principal men of the people sought to destroy him:</VERS>\r\n      <VERS vnumber=\"48\">and they could not find what they might do; for the people all hung upon him, listening.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"20\">\r\n      <VERS vnumber=\"1\">And it came to pass, on one of the days, as he was teaching the people in the temple, and preaching the gospel, there came upon him the chief priests and the scribes with the elders;</VERS>\r\n      <VERS vnumber=\"2\">and they spake, saying unto him, Tell us: By what authority doest thou these things? or who is he that gave thee this authority?</VERS>\r\n      <VERS vnumber=\"3\">And he answered and said unto them, I also will ask you a question; and tell me:</VERS>\r\n      <VERS vnumber=\"4\">The baptism of John, was it from heaven, or from men?</VERS>\r\n      <VERS vnumber=\"5\">And they reasoned with themselves, saying, If we shall say, From heaven; he will say, Why did ye not believe him?</VERS>\r\n      <VERS vnumber=\"6\">But if we shall say, From men; all the people will stone us: for they are persuaded that John was a prophet.</VERS>\r\n      <VERS vnumber=\"7\">And they answered, that they knew not whence [it was].</VERS>\r\n      <VERS vnumber=\"8\">And Jesus said unto them, Neither tell I you by what authority I do these things.</VERS>\r\n      <VERS vnumber=\"9\">And he began to speak unto the people this parable: A man planted a vineyard, and let it out to husbandmen, and went into another country for a long time.</VERS>\r\n      <VERS vnumber=\"10\">And at the season he sent unto the husbandmen a servant, that they should give him of the fruit of the vineyard: but the husbandmen beat him, and sent him away empty.</VERS>\r\n      <VERS vnumber=\"11\">And he sent yet another servant: and him also they beat, and handled him shamefully, and sent him away empty.</VERS>\r\n      <VERS vnumber=\"12\">And he sent yet a third: and him also they wounded, and cast him forth.</VERS>\r\n      <VERS vnumber=\"13\">And the lord of the vineyard said, What shall I do? I will send my beloved son; it may be they will reverence him.</VERS>\r\n      <VERS vnumber=\"14\">But when the husbandmen saw him, they reasoned one with another, saying, This is the heir; let us kill him, that the inheritance may be ours.</VERS>\r\n      <VERS vnumber=\"15\">And they cast him forth out of the vineyard, and killed him. What therefore will the lord of the vineyard do unto them?</VERS>\r\n      <VERS vnumber=\"16\">He will come and destroy these husbandmen, and will give the vineyard unto others. And when they heard it, they said, God forbid.</VERS>\r\n      <VERS vnumber=\"17\">But he looked upon them, and said, What then is this that is written, The stone which the builders rejected, The same was made the head of the corner?</VERS>\r\n      <VERS vnumber=\"18\">Every one that falleth on that stone shall be broken to pieces; but on whomsoever it shall fall, it will scatter him as dust.</VERS>\r\n      <VERS vnumber=\"19\">And the scribes and the chief priests sought to lay hands on him in that very hour; and they feared the people: for they perceived that he spake this parable against them.</VERS>\r\n      <VERS vnumber=\"20\">And they watched him, and sent forth spies, who feigned themselves to be righteous, that they might take hold of his speech, so as to deliver him up to the rule and to the authority of the governor.</VERS>\r\n      <VERS vnumber=\"21\">And they asked him, saying, Teacher, we know that thou sayest and teachest rightly, and acceptest not the person [of any], but of a truth teachest the way of God:</VERS>\r\n      <VERS vnumber=\"22\">Is it lawful for us to give tribute unto Caesar, or not?</VERS>\r\n      <VERS vnumber=\"23\">But he perceived their craftiness, and said unto them,</VERS>\r\n      <VERS vnumber=\"24\">Show me a denarius. Whose image and superscription hath it? And they said, Caesar`s.</VERS>\r\n      <VERS vnumber=\"25\">And he said unto them, Then render unto Caesar the things that are Caesar`s, and unto God the things that are God`s.</VERS>\r\n      <VERS vnumber=\"26\">And they were not able to take hold of the saying before the people: and they marvelled at his answer, and held their peace.</VERS>\r\n      <VERS vnumber=\"27\">And there came to him certain of the Sadducees, they that say that there is no resurrection;</VERS>\r\n      <VERS vnumber=\"28\">and they asked him, saying, Teacher, Moses wrote unto us, that if a man`s brother die, having a wife, and he be childless, his brother should take the wife, and raise up seed unto his brother.</VERS>\r\n      <VERS vnumber=\"29\">There were therefore seven brethren: and the first took a wife, and died childless;</VERS>\r\n      <VERS vnumber=\"30\">and the second:</VERS>\r\n      <VERS vnumber=\"31\">and the third took her; and likewise the seven also left no children, and died.</VERS>\r\n      <VERS vnumber=\"32\">Afterward the woman also died.</VERS>\r\n      <VERS vnumber=\"33\">In the resurrection therefore whose wife of them shall she be? for the seven had her to wife.</VERS>\r\n      <VERS vnumber=\"34\">And Jesus said unto them, The sons of this world marry, and are given in marriage:</VERS>\r\n      <VERS vnumber=\"35\">but they that are accounted worthy to attain to that world, and the resurrection from the dead, neither marry, nor are given in marriage:</VERS>\r\n      <VERS vnumber=\"36\">for neither can they die any more: for they are equal unto the angels; and are sons of God, being sons of the resurrection.</VERS>\r\n      <VERS vnumber=\"37\">But that the dead are raised, even Moses showed, in [the place concerning] the Bush, when he calleth the Lord the God of Abraham, and the God of Isaac, and the God of Jacob.</VERS>\r\n      <VERS vnumber=\"38\">Now he is not the God of the dead, but of the living: for all live unto him.</VERS>\r\n      <VERS vnumber=\"39\">And certain of the scribes answering said, Teacher, thou hast well said.</VERS>\r\n      <VERS vnumber=\"40\">For they durst not any more ask him any question.</VERS>\r\n      <VERS vnumber=\"41\">And he said unto them, How say they that the Christ is David`s son?</VERS>\r\n      <VERS vnumber=\"42\">For David himself saith in the book of Psalms, The Lord said unto my Lord, Sit thou on my right hand,</VERS>\r\n      <VERS vnumber=\"43\">Till I make thine enemies the footstool of thy feet.</VERS>\r\n      <VERS vnumber=\"44\">David therefore calleth him Lord, and how is he his son?</VERS>\r\n      <VERS vnumber=\"45\">And in the hearing of all the people he said unto his disciples,</VERS>\r\n      <VERS vnumber=\"46\">Beware of the scribes, who desire to walk in long robes, and love salutations in the marketplaces, and chief seats in the synagogues, and chief places at feasts;</VERS>\r\n      <VERS vnumber=\"47\">who devour widows` houses, and for a pretence make long prayers: these shall receive greater condemnation.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"21\">\r\n      <VERS vnumber=\"1\">And he looked up, and saw the rich men that were casting their gifts into the treasury.</VERS>\r\n      <VERS vnumber=\"2\">And he saw a certain poor widow casting in thither two mites.</VERS>\r\n      <VERS vnumber=\"3\">And he said, Of a truth I say unto you, This poor widow cast in more than they all:</VERS>\r\n      <VERS vnumber=\"4\">for all these did of their superfluity cast in unto the gifts; but she of her want did cast in all the living that she had.</VERS>\r\n      <VERS vnumber=\"5\">And as some spake of the temple, how it was adorned with goodly stones and offerings, he said,</VERS>\r\n      <VERS vnumber=\"6\">As for these things which ye behold, the days will come, in which there shall not be left here one stone upon another, that shall not be thrown down.</VERS>\r\n      <VERS vnumber=\"7\">And they asked him, saying, Teacher, when therefore shall these things be? and what [shall be] the sign when these things are about to come to pass?</VERS>\r\n      <VERS vnumber=\"8\">And he said, Take heed that ye be not led astray: for many shall come in my name, saying, I am [he]; and, The time is at hand: go ye not after them.</VERS>\r\n      <VERS vnumber=\"9\">And when ye shall hear of wars and tumults, be not terrified: for these things must needs come to pass first; but the end is not immediately.</VERS>\r\n      <VERS vnumber=\"10\">Then said he unto them, Nation shall rise against nation, and kingdom against kingdom;</VERS>\r\n      <VERS vnumber=\"11\">and there shall be great earthquakes, and in divers places famines and pestilences; and there shall be terrors and great signs from heaven.</VERS>\r\n      <VERS vnumber=\"12\">But before all these things, they shall lay their hands on you, and shall persecute you, delivering you up to the synagogues and prisons, bringing you before kings and governors for my name`s sake.</VERS>\r\n      <VERS vnumber=\"13\">It shall turn out unto you for a testimony.</VERS>\r\n      <VERS vnumber=\"14\">Settle it therefore in your hearts, not to meditate beforehand how to answer:</VERS>\r\n      <VERS vnumber=\"15\">for I will give you a mouth and wisdom, which all your adversaries shall not be able to withstand or to gainsay.</VERS>\r\n      <VERS vnumber=\"16\">But ye shall be delivered up even by parents, and brethren, and kinsfolk, and friends; and [some] of you shall they cause to be put to death.</VERS>\r\n      <VERS vnumber=\"17\">And ye shall be hated of all men for my name`s sake.</VERS>\r\n      <VERS vnumber=\"18\">And not a hair of your head shall perish.</VERS>\r\n      <VERS vnumber=\"19\">In your patience ye shall win your souls.</VERS>\r\n      <VERS vnumber=\"20\">But when ye see Jerusalem compassed with armies, then know that her desolation is at hand.</VERS>\r\n      <VERS vnumber=\"21\">Then let them that are in Judaea flee unto the mountains; and let them that are in the midst of her depart out; and let not them that are in the country enter therein.</VERS>\r\n      <VERS vnumber=\"22\">For these are days of vengeance, that all things which are written may be fulfilled.</VERS>\r\n      <VERS vnumber=\"23\">Woe unto them that are with child and to them that give suck in those days! for there shall be great distress upon the land, and wrath unto this people.</VERS>\r\n      <VERS vnumber=\"24\">And they shall fall by the edge of the sword, and shall be led captive into all the nations: and Jerusalem shall be trodden down of the Gentiles, until the times of the Gentiles be fulfilled.</VERS>\r\n      <VERS vnumber=\"25\">And there shall be signs in sun and moon and stars; and upon the earth distress of nations, in perplexity for the roaring of the sea and the billows;</VERS>\r\n      <VERS vnumber=\"26\">men fainting for fear, and for expectation of the things which are coming on the world: for the powers of the heavens shall be shaken.</VERS>\r\n      <VERS vnumber=\"27\">And then shall they see the Son of man coming in a cloud with power and great glory.</VERS>\r\n      <VERS vnumber=\"28\">But when these things begin to come to pass, look up, and lift up your heads; because your redemption draweth nigh.</VERS>\r\n      <VERS vnumber=\"29\">And he spake to them a parable: Behold the fig tree, and all the trees:</VERS>\r\n      <VERS vnumber=\"30\">when they now shoot forth, ye see it and know of your own selves that the summer is now nigh.</VERS>\r\n      <VERS vnumber=\"31\">Even so ye also, when ye see these things coming to pass, know ye that the kingdom of God is nigh.</VERS>\r\n      <VERS vnumber=\"32\">Verily I say unto you, This generation shall not pass away, till all things be accomplished.</VERS>\r\n      <VERS vnumber=\"33\">Heaven and earth shall pass away: but my words shall not pass away.</VERS>\r\n      <VERS vnumber=\"34\">But take heed to yourselves, lest haply your hearts be overcharged with surfeiting, and drunkenness, and cares of this life, and that day come on you suddenly as a snare:</VERS>\r\n      <VERS vnumber=\"35\">for [so] shall it come upon all them that dwell on the face of all the earth.</VERS>\r\n      <VERS vnumber=\"36\">But watch ye at every season, making supplication, that ye may prevail to escape all these things that shall come to pass, and to stand before the Son of man.</VERS>\r\n      <VERS vnumber=\"37\">And every day he was teaching in the temple; and every night he went out, and lodged in the mount that is called Olivet.</VERS>\r\n      <VERS vnumber=\"38\">And all the people came early in the morning to him in the temple, to hear him.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"22\">\r\n      <VERS vnumber=\"1\">Now the feast of unleavened bread drew nigh, which is called the Passover.</VERS>\r\n      <VERS vnumber=\"2\">And the chief priests and the scribes sought how they might put him to death; for they feared the people.</VERS>\r\n      <VERS vnumber=\"3\">And Satan entered into Judas who was called Iscariot, being of the number of the twelve.</VERS>\r\n      <VERS vnumber=\"4\">And he went away, and communed with the chief priests and captains, how he might deliver him unto them.</VERS>\r\n      <VERS vnumber=\"5\">And they were glad, and covenanted to give him money.</VERS>\r\n      <VERS vnumber=\"6\">And he consented, and sought opportunity to deliver him unto them in the absence of the multitude.</VERS>\r\n      <VERS vnumber=\"7\">And the day of unleavened bread came, on which the passover must be sacrificed.</VERS>\r\n      <VERS vnumber=\"8\">And he sent Peter and John, saying, Go and make ready for us the passover, that we may eat.</VERS>\r\n      <VERS vnumber=\"9\">And they said unto him, Where wilt thou that we make ready?</VERS>\r\n      <VERS vnumber=\"10\">And he said unto them, Behold, when ye are entered into the city, there shall meet you a man bearing a pitcher of water; follow him into the house whereinto he goeth.</VERS>\r\n      <VERS vnumber=\"11\">And ye shall say unto the master of the house, The Teacher saith unto thee, Where is the guestchamber, where I shall eat the passover with my disciples?</VERS>\r\n      <VERS vnumber=\"12\">And he will show you a large upper room furnished: there make ready.</VERS>\r\n      <VERS vnumber=\"13\">And they went, and found as he had said unto them: and they made ready the passover.</VERS>\r\n      <VERS vnumber=\"14\">And when the hour was come, he sat down, and the apostles with him.</VERS>\r\n      <VERS vnumber=\"15\">And he said unto them, With desire I have desired to eat this passover with you before I suffer:</VERS>\r\n      <VERS vnumber=\"16\">for I say unto you, I shall not eat it, until it be fulfilled in the kingdom of God.</VERS>\r\n      <VERS vnumber=\"17\">And he received a cup, and when he had given thanks, he said, Take this, and divide it among yourselves:</VERS>\r\n      <VERS vnumber=\"18\">for I say unto you, I shall not drink from henceforth of the fruit of the vine, until the kingdom of God shall come.</VERS>\r\n      <VERS vnumber=\"19\">And he took bread, and when he had given thanks, he brake it, and gave to them, saying, This is my body which is given for you: this do in remembrance of me.</VERS>\r\n      <VERS vnumber=\"20\">And the cup in like manner after supper, saying, This cup is the new covenant in my blood, [even] that which is poured out for you.</VERS>\r\n      <VERS vnumber=\"21\">But behold, the hand of him that betrayeth me is with me on the table.</VERS>\r\n      <VERS vnumber=\"22\">For the Son of man indeed goeth, as it hath been determined: but woe unto that man through whom he is betrayed!</VERS>\r\n      <VERS vnumber=\"23\">And they began to question among themselves, which of them it was that should do this thing.</VERS>\r\n      <VERS vnumber=\"24\">And there arose also a contention among them, which of them was accounted to be greatest.</VERS>\r\n      <VERS vnumber=\"25\">And he said unto them, The kings of the Gentiles have lordship over them; and they that have authority over them are called Benefactors.</VERS>\r\n      <VERS vnumber=\"26\">But ye [shall] not [be] so: but he that is the greater among you, let him become as the younger; and he that is chief, as he that doth serve.</VERS>\r\n      <VERS vnumber=\"27\">For which is greater, he that sitteth at meat, or he that serveth? is not he that sitteth at meat? but I am in the midst of you as he that serveth.</VERS>\r\n      <VERS vnumber=\"28\">But ye are they that have continued with me in my temptations;</VERS>\r\n      <VERS vnumber=\"29\">and I appoint unto you a kingdom, even as my Father appointed unto me,</VERS>\r\n      <VERS vnumber=\"30\">that ye may eat and drink at my table in my kingdom; and ye shall sit on thrones judging the twelve tribes of Israel.</VERS>\r\n      <VERS vnumber=\"31\">Simon, Simon, behold, Satan asked to have you, that he might sift you as wheat:</VERS>\r\n      <VERS vnumber=\"32\">but I made supplication for thee, that thy faith fail not; and do thou, when once thou hast turned again, establish thy brethren.</VERS>\r\n      <VERS vnumber=\"33\">And he said unto him, Lord, with thee I am ready to go both to prison and to death.</VERS>\r\n      <VERS vnumber=\"34\">And he said, I tell thee, Peter, the cock shall not crow this day, until thou shalt thrice deny that thou knowest me.</VERS>\r\n      <VERS vnumber=\"35\">And he said unto them, When I sent you forth without purse, and wallet, and shoes, lacked ye anything? And they said, Nothing.</VERS>\r\n      <VERS vnumber=\"36\">And he said unto them, But now, he that hath a purse, let him take it, and likewise a wallet; and he that hath none, let him sell his cloak, and buy a sword.</VERS>\r\n      <VERS vnumber=\"37\">For I say unto you, that this which is written must be fulfilled in me, And he was reckoned with transgressors: for that which concerneth me hath fulfilment.</VERS>\r\n      <VERS vnumber=\"38\">And they said, Lord, behold, here are two swords. And he said unto them, It is enough.</VERS>\r\n      <VERS vnumber=\"39\">And he came out, and went, as his custom was, unto the mount of Olives; and the disciples also followed him.</VERS>\r\n      <VERS vnumber=\"40\">And when he was at the place, he said unto them, Pray that ye enter not into temptation.</VERS>\r\n      <VERS vnumber=\"41\">And he was parted from them about a stone`s cast; and he kneeled down and prayed,</VERS>\r\n      <VERS vnumber=\"42\">saying, Father, if thou be willing, remove this cup from me: nevertheless not my will, but thine, be done.</VERS>\r\n      <VERS vnumber=\"43\">And there appeared unto him an angel from heaven, strengthening him.</VERS>\r\n      <VERS vnumber=\"44\">And being in an agony he prayed more earnestly; and his sweat became as it were great drops of blood falling down upon the ground.</VERS>\r\n      <VERS vnumber=\"45\">And when he rose up from his prayer, he came unto the disciples, and found them sleeping for sorrow,</VERS>\r\n      <VERS vnumber=\"46\">and said unto them, Why sleep ye? rise and pray, that ye enter not into temptation.</VERS>\r\n      <VERS vnumber=\"47\">While he yet spake, behold, a multitude, and he that was called Judas, one of the twelve, went before them; and he drew near unto Jesus to kiss him.</VERS>\r\n      <VERS vnumber=\"48\">But Jesus said unto him, Judas, betrayest thou the Son of man with a kiss?</VERS>\r\n      <VERS vnumber=\"49\">And when they that were about him saw what would follow, they said, Lord, shall we smite with the sword?</VERS>\r\n      <VERS vnumber=\"50\">And a certain one of them smote the servant of the high priest, and struck off his right ear.</VERS>\r\n      <VERS vnumber=\"51\">But Jesus answered and said, Suffer ye [them] thus far. And he touched his ear, and healed him.</VERS>\r\n      <VERS vnumber=\"52\">And Jesus said unto the chief priests, and captains of the temple, and elders, that were come against him, Are ye come out, as against a robber, with swords and staves?</VERS>\r\n      <VERS vnumber=\"53\">When I was daily with you in the temple, ye stretched not forth your hands against me: but this is your hour, and the power of darkness.</VERS>\r\n      <VERS vnumber=\"54\">And they seized him, and led him [away], and brought him into the high priest`s house. But Peter followed afar off.</VERS>\r\n      <VERS vnumber=\"55\">And when they had kindled a fire in the midst of the court, and had sat down together, Peter sat in the midst of them.</VERS>\r\n      <VERS vnumber=\"56\">And a certain maid seeing him as he sat in the light [of the fire], and looking stedfastly upon him, said, This man also was with him.</VERS>\r\n      <VERS vnumber=\"57\">But he denied, saying, Woman, I know him not.</VERS>\r\n      <VERS vnumber=\"58\">And after a little while another saw him, and said, Thou also art [one] of them. But Peter said, Man, I am not.</VERS>\r\n      <VERS vnumber=\"59\">And after the space of about one hour another confidently affirmed, saying, Of a truth this man also was with him; for he is a Galilaean.</VERS>\r\n      <VERS vnumber=\"60\">But Peter said, Man, I know not what thou sayest. And immediately, while he yet spake, the cock crew.</VERS>\r\n      <VERS vnumber=\"61\">And the Lord turned, and looked upon Peter. And Peter remembered the word of the Lord, how that he said unto him, Before the cock crow this day thou shalt deny me thrice.</VERS>\r\n      <VERS vnumber=\"62\">And he went out, and wept bitterly.</VERS>\r\n      <VERS vnumber=\"63\">And the men that held [Jesus] mocked him, and beat him.</VERS>\r\n      <VERS vnumber=\"64\">And they blindfolded him, and asked him, saying, Prophesy: who is he that struck thee?</VERS>\r\n      <VERS vnumber=\"65\">And many other things spake they against him, reviling him.</VERS>\r\n      <VERS vnumber=\"66\">And as soon as it was day, the assembly of the elders of the people was gathered together, both chief priests and scribes; and they led him away into their council, saying,</VERS>\r\n      <VERS vnumber=\"67\">If thou art the Christ, tell us. But he said unto them, If I tell you, ye will not believe:</VERS>\r\n      <VERS vnumber=\"68\">and if I ask [you], ye will not answer.</VERS>\r\n      <VERS vnumber=\"69\">But from henceforth shall the Son of man be seated at the right hand of the power of God.</VERS>\r\n      <VERS vnumber=\"70\">And they all said, Art thou then the Son of God? And he said unto them, Ye say that I am.</VERS>\r\n      <VERS vnumber=\"71\">And they said, What further need have we of witness? for we ourselves have heard from his own mouth.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"23\">\r\n      <VERS vnumber=\"1\">And the whole company of them rose up, and brought him before Pilate.</VERS>\r\n      <VERS vnumber=\"2\">And they began to accuse him, saying, We found this man perverting our nation, and forbidding to give tribute to Caesar, and saying that he himself is Christ a king.</VERS>\r\n      <VERS vnumber=\"3\">And Pilate asked him, saying, Art thou the King of the Jews? And he answered him and said, Thou sayest.</VERS>\r\n      <VERS vnumber=\"4\">And Pilate said unto the chief priests and the multitudes, I find no fault in this man.</VERS>\r\n      <VERS vnumber=\"5\">But they were the more urgent, saying, He stirreth up the people, teaching throughout all Judaea, and beginning from Galilee even unto this place.</VERS>\r\n      <VERS vnumber=\"6\">But when Pilate heard it, he asked whether the man were a Galilaean.</VERS>\r\n      <VERS vnumber=\"7\">And when he knew that he was of Herod`s jurisdiction, he sent him unto Herod, who himself also was at Jerusalem in these days.</VERS>\r\n      <VERS vnumber=\"8\">Now when Herod saw Jesus, he was exceeding glad: for he was of a long time desirous to see him, because he had heard concerning him; and he hoped to see some miracle done by him.</VERS>\r\n      <VERS vnumber=\"9\">And he questioned him in many words; but he answered him nothing.</VERS>\r\n      <VERS vnumber=\"10\">And the chief priests and the scribes stood, vehemently accusing him.</VERS>\r\n      <VERS vnumber=\"11\">And Herod with his soldiers set him at nought, and mocked him, and arraying him in gorgeous apparel sent him back to Pilate.</VERS>\r\n      <VERS vnumber=\"12\">And Herod and Pilate became friends with each other that very day: for before they were at enmity between themselves.</VERS>\r\n      <VERS vnumber=\"13\">And Pilate called together the chief priests and the rulers and the people,</VERS>\r\n      <VERS vnumber=\"14\">and said unto them, Ye brought unto me this man, as one that perverteth the people: and behold, I having examined him before you, found no fault in this man touching those things whereof ye accuse him:</VERS>\r\n      <VERS vnumber=\"15\">no, nor yet Herod: for he sent him back unto us; and behold, nothing worthy of death hath been done by him.</VERS>\r\n      <VERS vnumber=\"16\">I will therefore chastise him, and release him.</VERS>\r\n      <VERS vnumber=\"17\">[Now he must needs release unto them at the feast one prisoner.]</VERS>\r\n      <VERS vnumber=\"18\">But they cried out all together, saying, Away with this man, and release unto us Barabbas: --</VERS>\r\n      <VERS vnumber=\"19\">one who for a certain insurrection made in the city, and for murder, was cast into prison.</VERS>\r\n      <VERS vnumber=\"20\">And Pilate spake unto them again, desiring to release Jesus;</VERS>\r\n      <VERS vnumber=\"21\">but they shouted, saying, Crucify, crucify him.</VERS>\r\n      <VERS vnumber=\"22\">And he said unto them the third time, Why, what evil hath this man done? I have found no cause of death in him: I will therefore chastise him and release him.</VERS>\r\n      <VERS vnumber=\"23\">But they were urgent with loud voices, asking that he might be crucified. And their voices prevailed.</VERS>\r\n      <VERS vnumber=\"24\">And Pilate gave sentence that what they asked for should be done.</VERS>\r\n      <VERS vnumber=\"25\">And he released him that for insurrection and murder had been cast into prison, whom they asked for; but Jesus he delivered up to their will.</VERS>\r\n      <VERS vnumber=\"26\">And when they led him away, they laid hold upon one Simon of Cyrene, coming from the country, and laid on him the cross, to bear it after Jesus.</VERS>\r\n      <VERS vnumber=\"27\">And there followed him a great multitude of the people, and of women who bewailed and lamented him.</VERS>\r\n      <VERS vnumber=\"28\">But Jesus turning unto them said, Daughters of Jerusalem, weep not for me, but weep for yourselves, and for your children.</VERS>\r\n      <VERS vnumber=\"29\">For behold, the days are coming, in which they shall say, Blessed are the barren, and the wombs that never bare, and the breasts that never gave suck.</VERS>\r\n      <VERS vnumber=\"30\">Then shall they begin to say to the mountains, Fall on us; and to the hills, Cover us.</VERS>\r\n      <VERS vnumber=\"31\">For if they do these things in the green tree, what shall be done in the dry?</VERS>\r\n      <VERS vnumber=\"32\">And there were also two others, malefactors, led with him to be put to death.</VERS>\r\n      <VERS vnumber=\"33\">And when they came unto the place which is called The skull, there they crucified him, and the malefactors, one on the right hand and the other on the left.</VERS>\r\n      <VERS vnumber=\"34\">And Jesus said, Father, forgive them; for they know not what they do. And parting his garments among them, they cast lots.</VERS>\r\n      <VERS vnumber=\"35\">And the people stood beholding. And the rulers also scoffed at him, saying, He saved others; let him save himself, if this is the Christ of God, his chosen.</VERS>\r\n      <VERS vnumber=\"36\">And the soldiers also mocked him, coming to him, offering him vinegar,</VERS>\r\n      <VERS vnumber=\"37\">and saying, If thou art the King of the Jews, save thyself.</VERS>\r\n      <VERS vnumber=\"38\">And there was also a superscription over him, THIS IS THE KING OF THE JEWS.</VERS>\r\n      <VERS vnumber=\"39\">And one of the malefactors that were hanged railed on him, saying, Art not thou the Christ? save thyself and us.</VERS>\r\n      <VERS vnumber=\"40\">But the other answered, and rebuking him said, Dost thou not even fear God, seeing thou art in the same condemnation?</VERS>\r\n      <VERS vnumber=\"41\">And we indeed justly; for we receive the due reward of our deeds: but this man hath done nothing amiss.</VERS>\r\n      <VERS vnumber=\"42\">And he said, Jesus, remember me when thou comest in thy kingdom.</VERS>\r\n      <VERS vnumber=\"43\">And he said unto him, Verily I say unto thee, To-day shalt thou be with me in Paradise.</VERS>\r\n      <VERS vnumber=\"44\">And it was now about the sixth hour, and a darkness came over the whole land until the ninth hour,</VERS>\r\n      <VERS vnumber=\"45\">the sun`s light failing: and the veil of the temple was rent in the midst.</VERS>\r\n      <VERS vnumber=\"46\">And Jesus, crying with a loud voice, said, Father, into thy hands I commend my spirit: and having said this, he gave up the ghost.</VERS>\r\n      <VERS vnumber=\"47\">And when the centurion saw what was done, he glorified God, saying, Certainly this was a righteous man.</VERS>\r\n      <VERS vnumber=\"48\">And all the multitudes that came together to this sight, when they beheld the things that were done, returned smiting their breasts.</VERS>\r\n      <VERS vnumber=\"49\">And all his acquaintance, and the women that followed with him from Galilee, stood afar off, seeing these things.</VERS>\r\n      <VERS vnumber=\"50\">And behold, a man named Joseph, who was a councillor, a good and righteous man</VERS>\r\n      <VERS vnumber=\"51\">(he had not consented to their counsel and deed), [a man] of Arimathaea, a city of the Jews, who was looking for the kingdom of God:</VERS>\r\n      <VERS vnumber=\"52\">this man went to Pilate, and asked for the body of Jesus.</VERS>\r\n      <VERS vnumber=\"53\">And he took it down, and wrapped it in a linen cloth, and laid him in a tomb that was hewn in stone, where never man had yet lain.</VERS>\r\n      <VERS vnumber=\"54\">And it was the day of the Preparation, and the sabbath drew on.</VERS>\r\n      <VERS vnumber=\"55\">And the women, who had come with him out of Galilee, followed after, and beheld the tomb, and how his body was laid.</VERS>\r\n      <VERS vnumber=\"56\">And they returned, and prepared spices and ointments. And on the sabbath they rested according to the commandment.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"24\">\r\n      <VERS vnumber=\"1\">But on the first day of the week, at early dawn, they came unto the tomb, bringing the spices which they had prepared.</VERS>\r\n      <VERS vnumber=\"2\">And they found the stone rolled away from the tomb.</VERS>\r\n      <VERS vnumber=\"3\">And they entered in, and found not the body of the Lord Jesus.</VERS>\r\n      <VERS vnumber=\"4\">And it came to pass, while they were perplexed thereabout, behold, two men stood by them in dazzling apparel:</VERS>\r\n      <VERS vnumber=\"5\">and as they were affrighted and bowed down their faces to the earth, they said unto them, Why seek ye the living among the dead?</VERS>\r\n      <VERS vnumber=\"6\">He is not here, but is risen: remember how he spake unto you when he was yet in Galilee,</VERS>\r\n      <VERS vnumber=\"7\">saying that the Son of man must be delivered up into the hands of sinful men, and be crucified, and the third day rise again.</VERS>\r\n      <VERS vnumber=\"8\">And they remembered his words,</VERS>\r\n      <VERS vnumber=\"9\">and returned from the tomb, and told all these things to the eleven, and to all the rest.</VERS>\r\n      <VERS vnumber=\"10\">Now they were Mary Magdalene, and Joanna, and Mary the [mother] of James: and the other women with them told these things unto the apostles.</VERS>\r\n      <VERS vnumber=\"11\">And these words appeared in their sight as idle talk; and they disbelieved them.</VERS>\r\n      <VERS vnumber=\"12\">But Peter arose, and ran unto the tomb; and stooping and looking in, he seeth the linen cloths by themselves; and he departed to his home, wondering at that which was come to pass.</VERS>\r\n      <VERS vnumber=\"13\">And behold, two of them were going that very day to a village named Emmaus, which was threescore furlongs from Jerusalem.</VERS>\r\n      <VERS vnumber=\"14\">And they communed with each other of all these things which had happened.</VERS>\r\n      <VERS vnumber=\"15\">And it came to pass, while they communed and questioned together, that Jesus himself drew near, and went with them.</VERS>\r\n      <VERS vnumber=\"16\">But their eyes were holden that they should not know him.</VERS>\r\n      <VERS vnumber=\"17\">And he said unto them, What communications are these that ye have one with another, as ye walk? And they stood still, looking sad.</VERS>\r\n      <VERS vnumber=\"18\">And one of them, named Cleopas, answering said unto him, Dost thou alone sojourn in Jerusalem and not know the things which are come to pass there in these days?</VERS>\r\n      <VERS vnumber=\"19\">And he said unto them, What things? And they said unto him, The things concerning Jesus the Nazarene, who was a prophet mighty in deed and word before God and all the people:</VERS>\r\n      <VERS vnumber=\"20\">and how the chief priests and our rulers delivered him up to be condemned to death, and crucified him.</VERS>\r\n      <VERS vnumber=\"21\">But we hoped that it was he who should redeem Israel. Yea and besides all this, it is now the third day since these things came to pass.</VERS>\r\n      <VERS vnumber=\"22\">Moreover certain women of our company amazed us, having been early at the tomb;</VERS>\r\n      <VERS vnumber=\"23\">and when they found not his body, they came, saying, that they had also seen a vision of angels, who said that he was alive.</VERS>\r\n      <VERS vnumber=\"24\">And certain of them that were with us went to the tomb, and found it even so as the women had said: but him they saw not.</VERS>\r\n      <VERS vnumber=\"25\">And he said unto them, O foolish men, and slow of heart to believe in all that the prophets have spoken!</VERS>\r\n      <VERS vnumber=\"26\">Behooved it not the Christ to suffer these things, and to enter into his glory?</VERS>\r\n      <VERS vnumber=\"27\">And beginning from Moses and from all the prophets, he interpreted to them in all the scriptures the things concerning himself.</VERS>\r\n      <VERS vnumber=\"28\">And they drew nigh unto the village, whither they were going: and he made as though he would go further.</VERS>\r\n      <VERS vnumber=\"29\">And they constrained him, saying, Abide with us; for it is toward evening, and the day is now far spent. And he went in to abide with them.</VERS>\r\n      <VERS vnumber=\"30\">And it came to pass, when he had sat down with them to meat, he took the bread and blessed; and breaking [it] he gave to them.</VERS>\r\n      <VERS vnumber=\"31\">And their eyes were opened, and they knew him; and he vanished out of their sight.</VERS>\r\n      <VERS vnumber=\"32\">And they said one to another, Was not our heart burning within us, while he spake to us in the way, while he opened to us the scriptures?</VERS>\r\n      <VERS vnumber=\"33\">And they rose up that very hour, and returned to Jerusalem, and found the eleven gathered together, and them that were with them,</VERS>\r\n      <VERS vnumber=\"34\">saying, The Lord is risen indeed, and hath appeared to Simon.</VERS>\r\n      <VERS vnumber=\"35\">And they rehearsed the things [that happened] in the way, and how he was known of them in the breaking of the bread.</VERS>\r\n      <VERS vnumber=\"36\">And as they spake these things, he himself stood in the midst of them, and saith unto them, Peace [be] unto you.</VERS>\r\n      <VERS vnumber=\"37\">But they were terrified and affrighted, and supposed that they beheld a spirit.</VERS>\r\n      <VERS vnumber=\"38\">And he said unto them, Why are ye troubled? and wherefore do questionings arise in your heart?</VERS>\r\n      <VERS vnumber=\"39\">See my hands and my feet, that it is I myself: handle me, and see; for a spirit hath not flesh and bones, as ye behold me having.</VERS>\r\n      <VERS vnumber=\"40\">And when he had said this, he showed them his hands and his feet.</VERS>\r\n      <VERS vnumber=\"41\">And while they still disbelieved for joy, and wondered, he said unto them, Have ye here anything to eat?</VERS>\r\n      <VERS vnumber=\"42\">And they gave him a piece of a broiled fish.</VERS>\r\n      <VERS vnumber=\"43\">And he took it, and ate before them.</VERS>\r\n      <VERS vnumber=\"44\">And he said unto them, These are my words which I spake unto you, while I was yet with you, that all things must needs be fulfilled, which are written in the law of Moses, and the prophets, and the psalms, concerning me.</VERS>\r\n      <VERS vnumber=\"45\">Then opened he their mind, that they might understand the scriptures;</VERS>\r\n      <VERS vnumber=\"46\">and he said unto them, Thus it is written, that the Christ should suffer, and rise again from the dead the third day;</VERS>\r\n      <VERS vnumber=\"47\">and that repentance and remission of sins should be preached in his name unto all the nations, beginning from Jerusalem.</VERS>\r\n      <VERS vnumber=\"48\">Ye are witnesses of these things.</VERS>\r\n      <VERS vnumber=\"49\">And behold, I send forth the promise of my Father upon you: but tarry ye in the city, until ye be clothed with power from on high.</VERS>\r\n      <VERS vnumber=\"50\">And he led them out until [they were] over against Bethany: and he lifted up his hands, and blessed them.</VERS>\r\n      <VERS vnumber=\"51\">And it came to pass, while he blessed them, he parted from them, and was carried up into heaven.</VERS>\r\n      <VERS vnumber=\"52\">And they worshipped him, and returned to Jerusalem with great joy:</VERS>\r\n      <VERS vnumber=\"53\">and were continually in the temple, blessing God.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"43\" bname=\"John\" bsname=\"John\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">In the beginning was the Word, and the Word was with God, and the Word was God.</VERS>\r\n      <VERS vnumber=\"2\">The same was in the beginning with God.</VERS>\r\n      <VERS vnumber=\"3\">All things were made through him; and without him was not anything made that hath been made.</VERS>\r\n      <VERS vnumber=\"4\">In him was life; and the life was the light of men.</VERS>\r\n      <VERS vnumber=\"5\">And the light shineth in the darkness; and the darkness apprehended it not.</VERS>\r\n      <VERS vnumber=\"6\">There came a man, sent from God, whose name was John.</VERS>\r\n      <VERS vnumber=\"7\">The same came for witness, that he might bear witness of the light, that all might believe through him.</VERS>\r\n      <VERS vnumber=\"8\">He was not the light, but [came] that he might bear witness of the light.</VERS>\r\n      <VERS vnumber=\"9\">There was the true light, [even the light] which lighteth every man, coming into the world.</VERS>\r\n      <VERS vnumber=\"10\">He was in the world, and the world was made through him, and the world knew him not.</VERS>\r\n      <VERS vnumber=\"11\">He came unto his own, and they that were his own received him not.</VERS>\r\n      <VERS vnumber=\"12\">But as many as received him, to them gave he the right to become children of God, [even] to them that believe on his name:</VERS>\r\n      <VERS vnumber=\"13\">who were born, not of blood, nor of the will of the flesh, nor of the will of man, but of God.</VERS>\r\n      <VERS vnumber=\"14\">And the Word became flesh, and dwelt among us (and we beheld his glory, glory as of the only begotten from the Father), full of grace and truth.</VERS>\r\n      <VERS vnumber=\"15\">John beareth witness of him, and crieth, saying, This was he of whom I said, He that cometh after me is become before me: for he was before me.</VERS>\r\n      <VERS vnumber=\"16\">For of his fulness we all received, and grace for grace.</VERS>\r\n      <VERS vnumber=\"17\">For the law was given through Moses; grace and truth came through Jesus Christ.</VERS>\r\n      <VERS vnumber=\"18\">No man hath seen God at any time; the only begotten Son, who is in the bosom of the Father, he hath declared [him].</VERS>\r\n      <VERS vnumber=\"19\">And this is the witness of John, when the Jews sent unto him from Jerusalem priests and Levites to ask him, Who art thou?</VERS>\r\n      <VERS vnumber=\"20\">And he confessed, and denied not; and he confessed, I am not the Christ.</VERS>\r\n      <VERS vnumber=\"21\">And they asked him, What then? Art thou Elijah? And he saith, I am not. Art thou the prophet? And he answered, No.</VERS>\r\n      <VERS vnumber=\"22\">They said therefore unto him, Who art thou? that we may give an answer to them that sent us. What sayest thou of thyself?</VERS>\r\n      <VERS vnumber=\"23\">He said, I am the voice of one crying in the wilderness, Make straight the way of the Lord, as said Isaiah the prophet.</VERS>\r\n      <VERS vnumber=\"24\">And they had been sent from the Pharisees.</VERS>\r\n      <VERS vnumber=\"25\">And they asked him, and said unto him, Why then baptizest thou, if thou art not the Christ, neither Elijah, neither the prophet?</VERS>\r\n      <VERS vnumber=\"26\">John answered them, saying, I baptize in water: in the midst of you standeth one whom ye know not,</VERS>\r\n      <VERS vnumber=\"27\">[even] he that cometh after me, the latchet of whose shoe I am not worthy to unloose.</VERS>\r\n      <VERS vnumber=\"28\">These things were done in Bethany beyond the Jordan, where John was baptizing.</VERS>\r\n      <VERS vnumber=\"29\">On the morrow he seeth Jesus coming unto him, and saith, Behold, the Lamb of God, that taketh away the sin of the world!</VERS>\r\n      <VERS vnumber=\"30\">This is he of whom I said, After me cometh a man who is become before me: for he was before me.</VERS>\r\n      <VERS vnumber=\"31\">And I knew him not; but that he should be made manifest to Israel, for this cause came I baptizing in water.</VERS>\r\n      <VERS vnumber=\"32\">And John bare witness, saying, I have beheld the Spirit descending as a dove out of heaven; and it abode upon him.</VERS>\r\n      <VERS vnumber=\"33\">And I knew him not: but he that sent me to baptize in water, he said unto me, Upon whomsoever thou shalt see the Spirit descending, and abiding upon him, the same is he that baptizeth in the Holy Spirit.</VERS>\r\n      <VERS vnumber=\"34\">And I have seen, and have borne witness that this is the Son of God.</VERS>\r\n      <VERS vnumber=\"35\">Again on the morrow John was standing, and two of his disciples;</VERS>\r\n      <VERS vnumber=\"36\">and he looked upon Jesus as he walked, and saith, Behold, the Lamb of God!</VERS>\r\n      <VERS vnumber=\"37\">And the two disciples heard him speak, and they followed Jesus.</VERS>\r\n      <VERS vnumber=\"38\">And Jesus turned, and beheld them following, and saith unto them, What seek ye? And they said unto him, Rabbi (which is to say, being interpreted, Teacher), where abideth thou?</VERS>\r\n      <VERS vnumber=\"39\">He saith unto them, Come, and ye shall see. They came therefore and saw where he abode; and they abode with him that day: it was about the tenth hour.</VERS>\r\n      <VERS vnumber=\"40\">One of the two that heard John [speak], and followed him, was Andrew, Simon Peter`s brother.</VERS>\r\n      <VERS vnumber=\"41\">He findeth first his own brother Simon, and saith unto him, We have found the Messiah (which is, being interpreted, Christ).</VERS>\r\n      <VERS vnumber=\"42\">He brought him unto Jesus. Jesus looked upon him, and said, Thou art Simon the son of John: thou shalt be called Cephas (which is by interpretation, Peter).</VERS>\r\n      <VERS vnumber=\"43\">On the morrow he was minded to go forth into Galilee, and he findeth Philip: and Jesus saith unto him, Follow me.</VERS>\r\n      <VERS vnumber=\"44\">Now Philip was from Bethsaida, of the city of Andrew and Peter.</VERS>\r\n      <VERS vnumber=\"45\">Philip findeth Nathanael, and saith unto him, We have found him, of whom Moses in the law, and the prophets, wrote, Jesus of Nazareth, the son of Joseph.</VERS>\r\n      <VERS vnumber=\"46\">And Nathanael said unto him, Can any good thing come out of Nazareth? Philip saith unto him, Come and see.</VERS>\r\n      <VERS vnumber=\"47\">Jesus saw Nathanael coming to him, and saith of him, Behold, an Israelite indeed, in whom is no guile!</VERS>\r\n      <VERS vnumber=\"48\">Nathanael saith unto him, Whence knowest thou me? Jesus answered and said unto him, Before Philip called thee, when thou wast under the fig tree, I saw thee.</VERS>\r\n      <VERS vnumber=\"49\">Nathanael answered him, Rabbi, thou art the Son of God; thou art King of Israel.</VERS>\r\n      <VERS vnumber=\"50\">Jesus answered and said unto him, Because I said unto thee, I saw thee underneath the fig tree, believest thou? thou shalt see greater things than these.</VERS>\r\n      <VERS vnumber=\"51\">And he saith unto him, Verily, verily, I say unto you, Ye shall see the heaven opened, and the angels of God ascending and descending upon the Son of man.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">And the third day there was a marriage in Cana of Galilee; and the mother of Jesus was there:</VERS>\r\n      <VERS vnumber=\"2\">and Jesus also was bidden, and his disciples, to the marriage.</VERS>\r\n      <VERS vnumber=\"3\">And when the wine failed, the mother of Jesus saith unto him, They have no wine.</VERS>\r\n      <VERS vnumber=\"4\">And Jesus saith unto her, Woman, what have I to do with thee? mine hour is not yet come.</VERS>\r\n      <VERS vnumber=\"5\">His mother saith unto the servants, Whatsoever he saith unto you, do it.</VERS>\r\n      <VERS vnumber=\"6\">Now there were six waterpots of stone set there after the Jews` manner of purifying, containing two or three firkins apiece.</VERS>\r\n      <VERS vnumber=\"7\">Jesus saith unto them, Fill the waterpots with water. And they filled them up to the brim.</VERS>\r\n      <VERS vnumber=\"8\">And he saith unto them, Draw out now, and bear unto the ruler of the feast. And they bare it.</VERS>\r\n      <VERS vnumber=\"9\">And when the ruler of the feast tasted the water now become wine, and knew not whence it was (but the servants that had drawn the water knew), the ruler of the feast calleth the bridegroom,</VERS>\r\n      <VERS vnumber=\"10\">and saith unto him, Every man setteth on first the good wine; and when [men] have drunk freely, [then] that which is worse: thou hast kept the good wine until now.</VERS>\r\n      <VERS vnumber=\"11\">This beginning of his signs did Jesus in Cana of Galilee, and manifested his glory; and his disciples believed on him.</VERS>\r\n      <VERS vnumber=\"12\">After this he went down to Capernaum, he, and his mother, and [his] brethren, and his disciples; and there they abode not many days.</VERS>\r\n      <VERS vnumber=\"13\">And the passover of the Jews was at hand, and Jesus went up to Jerusalem.</VERS>\r\n      <VERS vnumber=\"14\">And he found in the temple those that sold oxen and sheep and doves, and the changers of money sitting:</VERS>\r\n      <VERS vnumber=\"15\">and he made a scourge of cords, and cast all out of the temple, both the sheep and the oxen; and he poured out the changers` money, and overthrew their tables;</VERS>\r\n      <VERS vnumber=\"16\">and to them that sold the doves he said, Take these things hence; make not my Father`s house a house of merchandise.</VERS>\r\n      <VERS vnumber=\"17\">His disciples remembered that it was written, Zeal for thy house shall eat me up.</VERS>\r\n      <VERS vnumber=\"18\">The Jews therefore answered and said unto him, What sign showest thou unto us, seeing that thou doest these things?</VERS>\r\n      <VERS vnumber=\"19\">Jesus answered and said unto them, Destroy this temple, and in three days I will raise it up.</VERS>\r\n      <VERS vnumber=\"20\">The Jews therefore said, Forty and six years was this temple in building, and wilt thou raise it up in three days?</VERS>\r\n      <VERS vnumber=\"21\">But he spake of the temple of his body.</VERS>\r\n      <VERS vnumber=\"22\">When therefore he was raised from the dead, his disciples remembered that he spake this; and they believed the scripture, and the word which Jesus had said.</VERS>\r\n      <VERS vnumber=\"23\">Now when he was in Jerusalem at the passover, during the feast, many believed on his name, beholding his signs which he did.</VERS>\r\n      <VERS vnumber=\"24\">But Jesus did not trust himself unto them, for that he knew all men,</VERS>\r\n      <VERS vnumber=\"25\">and because he needed not that any one should bear witness concerning man; for he himself knew what was in man.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Now there was a man of the Pharisees, named Nicodemus, a ruler of the Jews:</VERS>\r\n      <VERS vnumber=\"2\">the same came unto him by night, and said to him, Rabbi, we know that thou art a teacher come from God; for no one can do these signs that thou doest, except God be with him.</VERS>\r\n      <VERS vnumber=\"3\">Jesus answered and said unto him, Verily, verily, I say unto thee, Except one be born anew, he cannot see the kingdom of God.</VERS>\r\n      <VERS vnumber=\"4\">Nicodemus saith unto him, How can a man be born when he is old? can he enter a second time into his mother`s womb, and be born?</VERS>\r\n      <VERS vnumber=\"5\">Jesus answered, Verily, verily, I say unto thee, Except one be born of water and the Spirit, he cannot enter into the kingdom of God!</VERS>\r\n      <VERS vnumber=\"6\">That which is born of the flesh is flesh; and that which is born of the Spirit is spirit.</VERS>\r\n      <VERS vnumber=\"7\">Marvel not that I said unto thee, Ye must be born anew.</VERS>\r\n      <VERS vnumber=\"8\">The wind bloweth where it will, and thou hearest the voice thereof, but knowest not whence it cometh, and whither it goeth: so is every one that is born of the Spirit.</VERS>\r\n      <VERS vnumber=\"9\">Nicodemus answered and said unto him, How can these things be?</VERS>\r\n      <VERS vnumber=\"10\">Jesus answered and said unto him, Art thou the teacher of Israel, and understandest not these things?</VERS>\r\n      <VERS vnumber=\"11\">Verily, verily, I say unto thee, We speak that which we know, and bear witness of that which we have seen; and ye receive not our witness.</VERS>\r\n      <VERS vnumber=\"12\">If I told you earthly things and ye believe not, how shall ye believe if I tell you heavenly things?</VERS>\r\n      <VERS vnumber=\"13\">And no one hath ascended into heaven, but he that descended out of heaven, [even] the Son of man, who is in heaven.</VERS>\r\n      <VERS vnumber=\"14\">And as Moses lifted up the serpent in the wilderness, even so must the Son of man be lifted up;</VERS>\r\n      <VERS vnumber=\"15\">that whosoever believeth may in him have eternal life.</VERS>\r\n      <VERS vnumber=\"16\">For God so loved the world, that he gave his only begotten Son, that whosoever believeth on him should not perish, but have eternal life.</VERS>\r\n      <VERS vnumber=\"17\">For God sent not the Son into the world to judge the world; but that the world should be saved through him.</VERS>\r\n      <VERS vnumber=\"18\">He that believeth on him is not judged: he that believeth not hath been judged already, because he hath not believed on the name of the only begotten Son of God.</VERS>\r\n      <VERS vnumber=\"19\">And this is the judgment, that the light is come into the world, and men loved the darkness rather than the light; for their works were evil.</VERS>\r\n      <VERS vnumber=\"20\">For every one that doeth evil hateth the light, and cometh not to the light, lest his works should be reproved.</VERS>\r\n      <VERS vnumber=\"21\">But he that doeth the truth cometh to the light, that his works may be made manifest, that they have been wrought in God.</VERS>\r\n      <VERS vnumber=\"22\">After these things came Jesus and his disciples into the land of Judea; and there he tarried with them, and baptized.</VERS>\r\n      <VERS vnumber=\"23\">And John also was baptizing in Enon near to Salim, because there was much water there: and they came, and were baptized.</VERS>\r\n      <VERS vnumber=\"24\">For John was not yet cast into prison.</VERS>\r\n      <VERS vnumber=\"25\">There arose therefore a questioning on the part of John`s disciples with a Jew about purifying.</VERS>\r\n      <VERS vnumber=\"26\">And they came unto John, and said to him, Rabbi, he that was with thee beyond the Jordan, to whom thou hast borne witness, behold, the same baptizeth, and all men come to him.</VERS>\r\n      <VERS vnumber=\"27\">John answered and said, A man can receive nothing, except it have been given him from heaven.</VERS>\r\n      <VERS vnumber=\"28\">Ye yourselves bear me witness, that I said, I am not the Christ, but, that I am sent before him.</VERS>\r\n      <VERS vnumber=\"29\">He that hath the bride is the bridegroom: but the friend of the bridegroom, that standeth and heareth him, rejoiceth greatly because of the bridegroom`s voice: this my joy therefore is made full.</VERS>\r\n      <VERS vnumber=\"30\">He must increase, but I must decrease.</VERS>\r\n      <VERS vnumber=\"31\">He that cometh from above is above all: he that is of the earth is of the earth, and of the earth he speaketh: he that cometh from heaven is above all.</VERS>\r\n      <VERS vnumber=\"32\">What he hath seen and heard, of that he beareth witness; and no man receiveth his witness.</VERS>\r\n      <VERS vnumber=\"33\">He that hath received his witness hath set his seal to [this], that God is true.</VERS>\r\n      <VERS vnumber=\"34\">For he whom God hath sent speaketh the words of God: for he giveth not the Spirit by measure.</VERS>\r\n      <VERS vnumber=\"35\">The Father loveth the Son, and hath given all things into his hand.</VERS>\r\n      <VERS vnumber=\"36\">He that believeth on the Son hath eternal life; but he that obeyeth not the Son shall not see life, but the wrath of God abideth on him.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">When therefore the Lord knew that the Pharisees had heard that Jesus was making and baptizing more disciples than John</VERS>\r\n      <VERS vnumber=\"2\">(although Jesus himself baptized not, but his disciples),</VERS>\r\n      <VERS vnumber=\"3\">he left Judea, and departed again into Galilee.</VERS>\r\n      <VERS vnumber=\"4\">And he must needs pass through Samaria.</VERS>\r\n      <VERS vnumber=\"5\">So he cometh to a city of Samaria, called Sychar, near to the parcel of ground that Jacob gave to his son Joseph:</VERS>\r\n      <VERS vnumber=\"6\">and Jacob`s well was there. Jesus therefore, being wearied with his journey, sat thus by the well. It was about the sixth hour.</VERS>\r\n      <VERS vnumber=\"7\">There cometh a woman of Samaria to draw water: Jesus saith unto her, Give me to drink.</VERS>\r\n      <VERS vnumber=\"8\">For his disciples were gone away into the city to buy food.</VERS>\r\n      <VERS vnumber=\"9\">The Samaritan woman therefore saith unto him, How is it that thou, being a Jew, askest drink of me, who am a Samaritan woman? (For Jews have no dealings with Samaritans.)</VERS>\r\n      <VERS vnumber=\"10\">Jesus answered and said unto 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.</VERS>\r\n      <VERS vnumber=\"11\">The woman saith unto him, Sir, thou hast nothing to draw with, and the well is deep: whence then hast thou that living water?</VERS>\r\n      <VERS vnumber=\"12\">Art thou greater than our father Jacob, who gave us the well, and drank thereof himself, and his sons, and his cattle?</VERS>\r\n      <VERS vnumber=\"13\">Jesus answered and said unto her, Every one that drinketh of this water shall thirst again:</VERS>\r\n      <VERS vnumber=\"14\">but whosoever drinketh of the water that I shall give him shall never thirst; but the water that I shall give him shall become in him a well of water springing up unto eternal life.</VERS>\r\n      <VERS vnumber=\"15\">The woman saith unto him, Sir, give me this water, that I thirst not, neither come all the way hither to draw.</VERS>\r\n      <VERS vnumber=\"16\">Jesus saith unto her, Go, call thy husband, and come hither.</VERS>\r\n      <VERS vnumber=\"17\">The woman answered and said unto him, I have no husband. Jesus saith unto her, Thou saidst well, I have no husband:</VERS>\r\n      <VERS vnumber=\"18\">for thou hast had five husbands; and he whom thou now hast is not thy husband: this hast thou said truly.</VERS>\r\n      <VERS vnumber=\"19\">The woman saith unto him, Sir, I perceive that thou art a prophet.</VERS>\r\n      <VERS vnumber=\"20\">Our fathers worshipped in this mountain; and ye say, that in Jerusalem is the place where men ought to worship.</VERS>\r\n      <VERS vnumber=\"21\">Jesus saith unto her, Woman, believe me, the hour cometh, when neither in this mountain, nor in Jerusalem, shall ye worship the Father.</VERS>\r\n      <VERS vnumber=\"22\">Ye worship that which ye know not: we worship that which we know; for salvation is from the Jews.</VERS>\r\n      <VERS vnumber=\"23\">But the hour cometh, and now is, when the true worshippers shall worship the Father in spirit and truth: for such doth the Father seek to be his worshippers.</VERS>\r\n      <VERS vnumber=\"24\">God is a Spirit: and they that worship him must worship in spirit and truth.</VERS>\r\n      <VERS vnumber=\"25\">The woman saith unto him, I know that Messiah cometh (he that is called Christ): when he is come, he will declare unto us all things.</VERS>\r\n      <VERS vnumber=\"26\">Jesus saith unto her, I that speak unto thee am [he].</VERS>\r\n      <VERS vnumber=\"27\">And upon this came his disciples; and they marvelled that he was speaking with a woman; yet no man said, What seekest thou? or, Why speakest thou with her?</VERS>\r\n      <VERS vnumber=\"28\">So the woman left her waterpot, and went away into the city, and saith to the people,</VERS>\r\n      <VERS vnumber=\"29\">Come, see a man, who told me all things that [ever] I did: can this be the Christ?</VERS>\r\n      <VERS vnumber=\"30\">They went out of the city, and were coming to him.</VERS>\r\n      <VERS vnumber=\"31\">In the mean while the disciples prayed him, saying, Rabbi, eat.</VERS>\r\n      <VERS vnumber=\"32\">But he said unto them, I have meat to eat that ye know not.</VERS>\r\n      <VERS vnumber=\"33\">The disciples therefore said one to another, Hath any man brought him [aught] to eat?</VERS>\r\n      <VERS vnumber=\"34\">Jesus saith unto them, My meat is to do the will of him that sent me, and to accomplish his work.</VERS>\r\n      <VERS vnumber=\"35\">Say not ye, There are yet four months, and [then] cometh the harvest? behold, I say unto you, Lift up your eyes, and look on the fields, that they are white already unto harvest.</VERS>\r\n      <VERS vnumber=\"36\">He that reapeth receiveth wages, and gathereth fruit unto life eternal; that he that soweth and he that reapeth may rejoice together.</VERS>\r\n      <VERS vnumber=\"37\">For herein is the saying true, One soweth, and another reapeth.</VERS>\r\n      <VERS vnumber=\"38\">I sent you to reap that whereon ye have not labored: others have labored, and ye are entered into their labor.</VERS>\r\n      <VERS vnumber=\"39\">And from that city many of the Samaritans believed on him because of the word of the woman, who testified, He told me all things that [ever] I did.</VERS>\r\n      <VERS vnumber=\"40\">So when the Samaritans came unto him, they besought him to abide with them: and he abode there two days.</VERS>\r\n      <VERS vnumber=\"41\">And many more believed because of his word;</VERS>\r\n      <VERS vnumber=\"42\">and they said to the woman, Now we believe, not because of thy speaking: for we have heard for ourselves, and know that this is indeed the Saviour of the world.</VERS>\r\n      <VERS vnumber=\"43\">And after the two days he went forth from thence into Galilee.</VERS>\r\n      <VERS vnumber=\"44\">For Jesus himself testified, that a prophet hath no honor in his own country.</VERS>\r\n      <VERS vnumber=\"45\">So when he came into Galilee, the Galilaeans received him, having seen all the things that he did in Jerusalem at the feast: for they also went unto the feast.</VERS>\r\n      <VERS vnumber=\"46\">He came therefore again unto Cana of Galilee, where he made the water wine. And there was a certain nobleman, whose son was sick at Capernaum.</VERS>\r\n      <VERS vnumber=\"47\">When 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.</VERS>\r\n      <VERS vnumber=\"48\">Jesus therefore said unto him, Except ye see signs and wonders, ye will in no wise believe.</VERS>\r\n      <VERS vnumber=\"49\">The nobleman saith unto him, Sir, come down ere my child die.</VERS>\r\n      <VERS vnumber=\"50\">Jesus saith unto him, Go thy way; thy son liveth. The man believed the word that Jesus spake unto him, and he went his way.</VERS>\r\n      <VERS vnumber=\"51\">And as he was now going down, his servants met him, saying, that his son lived.</VERS>\r\n      <VERS vnumber=\"52\">So he inquired of them the hour when he began to amend. They said therefore unto him, Yesterday at the seventh hour the fever left him.</VERS>\r\n      <VERS vnumber=\"53\">So the father knew that [it was] at that hour in which Jesus said unto him, Thy son liveth: and himself believed, and his whole house.</VERS>\r\n      <VERS vnumber=\"54\">This is again the second sign that Jesus did, having come out of Judaea into Galilee.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">After these things there was a feast of the Jews; and Jesus went up to Jerusalem.</VERS>\r\n      <VERS vnumber=\"2\">Now there is in Jerusalem by the sheep [gate] a pool, which is called in Hebrew Bethesda, having five porches.</VERS>\r\n      <VERS vnumber=\"3\">In these lay a multitude of them that were sick, blind, halt, withered, [waiting for the moving of the water.]</VERS>\r\n      <VERS vnumber=\"4\">[for an angel of the Lord went down at certain seasons into the pool, and troubled the water: whosoever then first after the troubling of the waters stepped in was made whole, with whatsoever disease he was holden.]</VERS>\r\n      <VERS vnumber=\"5\">And a certain man was there, who had been thirty and eight years in his infirmity.</VERS>\r\n      <VERS vnumber=\"6\">When Jesus saw him lying, and knew that he had been now a long time [in that case], he saith unto him, Wouldest thou be made whole?</VERS>\r\n      <VERS vnumber=\"7\">The sick 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.</VERS>\r\n      <VERS vnumber=\"8\">Jesus saith unto him, Arise, take up thy bed, and walk.</VERS>\r\n      <VERS vnumber=\"9\">And straightway the man was made whole, and took up his bed and walked. Now it was the sabbath on that day.</VERS>\r\n      <VERS vnumber=\"10\">So the Jews said unto him that was cured, It is the sabbath, and it is not lawful for thee to take up thy bed.</VERS>\r\n      <VERS vnumber=\"11\">But he answered them, He that made me whole, the same said unto me, Take up thy bed, and walk.</VERS>\r\n      <VERS vnumber=\"12\">They asked him, Who is the man that said unto thee, Take up [thy bed], and walk?</VERS>\r\n      <VERS vnumber=\"13\">But he that was healed knew not who it was; for Jesus had conveyed himself away, a multitude being in the place.</VERS>\r\n      <VERS vnumber=\"14\">Afterward Jesus findeth him in the temple, and said unto him, Behold, thou art made whole: sin no more, lest a worse thing befall thee.</VERS>\r\n      <VERS vnumber=\"15\">The man went away, and told the Jews that it was Jesus who had made him whole.</VERS>\r\n      <VERS vnumber=\"16\">And for this cause the Jews persecuted Jesus, because he did these things on the sabbath.</VERS>\r\n      <VERS vnumber=\"17\">But Jesus answered them, My Father worketh even until now, and I work.</VERS>\r\n      <VERS vnumber=\"18\">For this cause therefore the Jews sought the more to kill him, because he not only brake the sabbath, but also called God his own Father, making himself equal with God.</VERS>\r\n      <VERS vnumber=\"19\">Jesus therefore answered and said unto them, Verily, verily, I say unto you, The Son can do nothing of himself, but what he seeth the Father doing: for what things soever he doeth, these the Son also doeth in like manner.</VERS>\r\n      <VERS vnumber=\"20\">For the Father loveth the Son, and showeth him all things that himself doeth: and greater works than these will he show him, that ye may marvel.</VERS>\r\n      <VERS vnumber=\"21\">For as the Father raiseth the dead and giveth them life, even so the Son also giveth life to whom he will.</VERS>\r\n      <VERS vnumber=\"22\">For neither doth the Father judge any man, but he hath given all judgment unto the Son;</VERS>\r\n      <VERS vnumber=\"23\">that all may honor the Son, even as they honor the Father. He that honoreth not the Son honoreth not the Father that sent him.</VERS>\r\n      <VERS vnumber=\"24\">Verily, verily, I say unto you, He that heareth my word, and believeth him that sent me, hath eternal life, and cometh not into judgment, but hath passed out of death into life.</VERS>\r\n      <VERS vnumber=\"25\">Verily, verily, I say unto you, The hour cometh, and now is, when the dead shall hear the voice of the Son of God; and they that hear shall live.</VERS>\r\n      <VERS vnumber=\"26\">For as the Father hath life in himself, even so gave he to the Son also to have life in himself:</VERS>\r\n      <VERS vnumber=\"27\">and he gave him authority to execute judgment, because he is a son of man.</VERS>\r\n      <VERS vnumber=\"28\">Marvel not at this: for the hour cometh, in which all that are in the tombs shall hear his voice,</VERS>\r\n      <VERS vnumber=\"29\">and shall come forth; they that have done good, unto the resurrection of life; and they that have done evil, unto the resurrection of judgment.</VERS>\r\n      <VERS vnumber=\"30\">I can of myself do nothing: as I hear, I judge: and my judgment is righteous; because I seek not mine own will, but the will of him that sent me.</VERS>\r\n      <VERS vnumber=\"31\">If I bear witness of myself, my witness is not true.</VERS>\r\n      <VERS vnumber=\"32\">It is another that beareth witness of me; and I know that the witness which he witnesseth of me is true.</VERS>\r\n      <VERS vnumber=\"33\">Ye have sent unto John, and he hath borne witness unto the truth.</VERS>\r\n      <VERS vnumber=\"34\">But the witness which I receive is not from man: howbeit I say these things, that ye may be saved.</VERS>\r\n      <VERS vnumber=\"35\">He was the lamp that burneth and shineth; and ye were willing to rejoice for a season in his light.</VERS>\r\n      <VERS vnumber=\"36\">But the witness which I have is greater than [that of] John; for the works which the Father hath given me to accomplish, the very works that I do, bear witness of me, that the Father hath sent me.</VERS>\r\n      <VERS vnumber=\"37\">And the Father that sent me, he hath borne witness of me. Ye have neither heard his voice at any time, nor seen his form.</VERS>\r\n      <VERS vnumber=\"38\">And ye have not his word abiding in you: for whom he sent, him ye believe not.</VERS>\r\n      <VERS vnumber=\"39\">Ye search the scriptures, because ye think that in them ye have eternal life; and these are they which bear witness of me;</VERS>\r\n      <VERS vnumber=\"40\">and ye will not come to me, that ye may have life.</VERS>\r\n      <VERS vnumber=\"41\">I receive not glory from men.</VERS>\r\n      <VERS vnumber=\"42\">But I know you, that ye have not the love of God in yourselves.</VERS>\r\n      <VERS vnumber=\"43\">I am come in my Father`s name, and ye receive me not: if another shall come in his own name, him ye will receive.</VERS>\r\n      <VERS vnumber=\"44\">How can ye believe, who receive glory one of another, and the glory that [cometh] from the only God ye seek not?</VERS>\r\n      <VERS vnumber=\"45\">Think not that I will accuse you to the Father: there is one that accuseth you, [even] Moses, on whom ye have set your hope.</VERS>\r\n      <VERS vnumber=\"46\">For if ye believed Moses, ye would believe me; for he wrote of me.</VERS>\r\n      <VERS vnumber=\"47\">But if ye believe not his writings, how shall ye believe my words?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">After these things Jesus went away to the other side of the sea of Galilee, which is [the sea] of Tiberias.</VERS>\r\n      <VERS vnumber=\"2\">And a great multitude followed him, because they beheld the signs which he did on them that were sick.</VERS>\r\n      <VERS vnumber=\"3\">And Jesus went up into the mountain, and there he sat with his disciples.</VERS>\r\n      <VERS vnumber=\"4\">Now the passover, the feast of the Jews, was at hand.</VERS>\r\n      <VERS vnumber=\"5\">Jesus therefore lifting up his eyes, and seeing that a great multitude cometh unto him, saith unto Philip, Whence are we to buy bread, that these may eat?</VERS>\r\n      <VERS vnumber=\"6\">And this he said to prove him: for he himself knew what he would do.</VERS>\r\n      <VERS vnumber=\"7\">Philip answered him, Two hundred shillings` worth of bread is not sufficient for them, that every one may take a little.</VERS>\r\n      <VERS vnumber=\"8\">One of his disciples, Andrew, Simon Peter`s brother, saith unto him,</VERS>\r\n      <VERS vnumber=\"9\">There is a lad here, who hath five barley loaves, and two fishes: but what are these among so many?</VERS>\r\n      <VERS vnumber=\"10\">Jesus said, Make the people sit down. Now there was much grass in the place. So the men sat down, in number about five thousand.</VERS>\r\n      <VERS vnumber=\"11\">Jesus therefore took the loaves; and having given thanks, he distributed to them that were set down; likewise also of the fishes as much as they would.</VERS>\r\n      <VERS vnumber=\"12\">And when they were filled, he saith unto his disciples, Gather up the broken pieces which remain over, that nothing be lost.</VERS>\r\n      <VERS vnumber=\"13\">So they gathered them up, and filled twelve baskets with broken pieces from the five barley loaves, which remained over unto them that had eaten.</VERS>\r\n      <VERS vnumber=\"14\">When therefore the people saw the sign which he did, they said, This is of a truth the prophet that cometh into the world.</VERS>\r\n      <VERS vnumber=\"15\">Jesus therefore perceiving that they were about to come and take him by force, to make him king, withdrew again into the mountain himself alone.</VERS>\r\n      <VERS vnumber=\"16\">And when evening came, his disciples went down unto the sea;</VERS>\r\n      <VERS vnumber=\"17\">and they entered into a boat, and were going over the sea unto Capernaum. And it was now dark, and Jesus had not yet come to them.</VERS>\r\n      <VERS vnumber=\"18\">And the sea was rising by reason of a great wind that blew.</VERS>\r\n      <VERS vnumber=\"19\">When therefore they had rowed about five and twenty or thirty furlongs, they behold Jesus walking on the sea, and drawing nigh unto the boat: and they were afraid.</VERS>\r\n      <VERS vnumber=\"20\">But he saith unto them, It is I; be not afraid.</VERS>\r\n      <VERS vnumber=\"21\">They were willing therefore to receive him into the boat: and straightway the boat was at the land whither they were going.</VERS>\r\n      <VERS vnumber=\"22\">On the morrow the multitude that stood on the other side of the sea saw that there was no other boat there, save one, and that Jesus entered not with his disciples into the boat, but [that] his disciples went away alone</VERS>\r\n      <VERS vnumber=\"23\">(howbeit there came boats from Tiberias nigh unto the place where they ate the bread after the Lord had given thanks):</VERS>\r\n      <VERS vnumber=\"24\">when the multitude therefore saw that Jesus was not there, neither his disciples, they themselves got into the boats, and came to Capernaum, seeking Jesus.</VERS>\r\n      <VERS vnumber=\"25\">And when they found him on the other side of the sea, they said unto him, Rabbi, when camest thou hither?</VERS>\r\n      <VERS vnumber=\"26\">Jesus answered them and said, Verily, verily, I say unto you, Ye seek me, not because ye saw signs, but because ye ate of the loaves, and were filled.</VERS>\r\n      <VERS vnumber=\"27\">Work not for the food which perisheth, but for the food which abideth unto eternal life, which the Son of man shall give unto you: for him the Father, even God, hath sealed.</VERS>\r\n      <VERS vnumber=\"28\">They said therefore unto him, What must we do, that we may work the works of God?</VERS>\r\n      <VERS vnumber=\"29\">Jesus answered and said unto them, This is the work of God, that ye believe on him whom he hath sent.</VERS>\r\n      <VERS vnumber=\"30\">They said therefore unto him, What then doest thou for a sign, that we may see, and believe thee? what workest thou?</VERS>\r\n      <VERS vnumber=\"31\">Our fathers ate the manna in the wilderness; as it is written, He gave them bread out of heaven to eat.</VERS>\r\n      <VERS vnumber=\"32\">Jesus therefore said unto them, Verily, verily, I say unto you, It was not Moses that gave you the bread out of heaven; but my Father giveth you the true bread out of heaven.</VERS>\r\n      <VERS vnumber=\"33\">For the bread of God is that which cometh down out of heaven, and giveth life unto the world.</VERS>\r\n      <VERS vnumber=\"34\">They said therefore unto him, Lord, evermore give us this bread.</VERS>\r\n      <VERS vnumber=\"35\">Jesus said unto them. I am the bread of life: he that cometh to me shall not hunger, and he that believeth on me shall never thirst.</VERS>\r\n      <VERS vnumber=\"36\">But I said unto you, that ye have seen me, and yet believe not.</VERS>\r\n      <VERS vnumber=\"37\">All that which the Father giveth me shall come unto me; and him that cometh to me I will in no wise cast out.</VERS>\r\n      <VERS vnumber=\"38\">For I am come down from heaven, not to do mine own will, but the will of him that sent me.</VERS>\r\n      <VERS vnumber=\"39\">And this is the will of him that sent me, that of all that which he hath given me I should lose nothing, but should raise it up at the last day.</VERS>\r\n      <VERS vnumber=\"40\">For this is the will of my Father, that every one that beholdeth the Son, and believeth on him, should have eternal life; and I will raise him up at the last day.</VERS>\r\n      <VERS vnumber=\"41\">The Jews therefore murmured concerning him, because he said, I am the bread which came down out of heaven.</VERS>\r\n      <VERS vnumber=\"42\">And they said, Is not this Jesus, the son of Joseph, whose father and mother we know? how doth he now say, I am come down out of heaven?</VERS>\r\n      <VERS vnumber=\"43\">Jesus answered and said unto them, Murmur not among yourselves.</VERS>\r\n      <VERS vnumber=\"44\">No man can come to me, except the Father that sent me draw him: and I will raise him up in the last day.</VERS>\r\n      <VERS vnumber=\"45\">It is written in the prophets, And they shall all be taught of God. Every one that hath heard from the Father, and hath learned, cometh unto me.</VERS>\r\n      <VERS vnumber=\"46\">Not that any man hath seen the Father, save he that is from God, he hath seen the Father.</VERS>\r\n      <VERS vnumber=\"47\">Verily, verily, I say unto you, He that believeth hath eternal life.</VERS>\r\n      <VERS vnumber=\"48\">I am the bread of life.</VERS>\r\n      <VERS vnumber=\"49\">Your fathers ate the manna in the wilderness, and they died.</VERS>\r\n      <VERS vnumber=\"50\">This is the bread which cometh down out of heaven, that a man may eat thereof, and not die.</VERS>\r\n      <VERS vnumber=\"51\">I am the living bread which came down out of heaven: if any man eat of this bread, he shall live for ever: yea and the bread which I will give is my flesh, for the life of the world.</VERS>\r\n      <VERS vnumber=\"52\">The Jews therefore strove one with another, saying, How can this man give us his flesh to eat?</VERS>\r\n      <VERS vnumber=\"53\">Jesus therefore 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 not life in yourselves.</VERS>\r\n      <VERS vnumber=\"54\">He that eateth my flesh and drinketh my blood hath eternal life: and I will raise him up at the last day.</VERS>\r\n      <VERS vnumber=\"55\">For my flesh is meat indeed, and my blood is drink indeed.</VERS>\r\n      <VERS vnumber=\"56\">He that eateth my flesh and drinketh my blood abideth in me, and I in him.</VERS>\r\n      <VERS vnumber=\"57\">As the living Father sent me, and I live because of the Father; so he that eateth me, he also shall live because of me.</VERS>\r\n      <VERS vnumber=\"58\">This is the bread which came down out of heaven: not as the fathers ate, and died; he that eateth this bread shall live for ever.</VERS>\r\n      <VERS vnumber=\"59\">These things said he in the synagogue, as he taught in Capernaum.</VERS>\r\n      <VERS vnumber=\"60\">Many therefore of his disciples, when the heard [this], said, This is a hard saying; who can hear it?</VERS>\r\n      <VERS vnumber=\"61\">But Jesus knowing in himself that his disciples murmured at this, said unto them, Doth this cause you to stumble?</VERS>\r\n      <VERS vnumber=\"62\">[What] then if ye should behold the Son of man ascending where he was before?</VERS>\r\n      <VERS vnumber=\"63\">It is the spirit that giveth life; the flesh profiteth nothing: the words that I have spoken unto you are spirit, are are life.</VERS>\r\n      <VERS vnumber=\"64\">But there are some of you that believe not. For Jesus knew from the beginning who they were that believed not, and who it was that should betray him.</VERS>\r\n      <VERS vnumber=\"65\">And he said, For this cause have I said unto you, that no man can come unto me, except it be given unto him of the Father.</VERS>\r\n      <VERS vnumber=\"66\">Upon this many of his disciples went back, and walked no more with him.</VERS>\r\n      <VERS vnumber=\"67\">Jesus said therefore unto the twelve, Would ye also go away?</VERS>\r\n      <VERS vnumber=\"68\">Simon Peter answered him, Lord, to whom shall we go? thou hast the words of eternal life.</VERS>\r\n      <VERS vnumber=\"69\">And we have believed and know that thou art the Holy One of God.</VERS>\r\n      <VERS vnumber=\"70\">Jesus answered them, Did not I choose you the twelve, and one of you is a devil?</VERS>\r\n      <VERS vnumber=\"71\">Now he spake of Judas [the son] of Simon Iscariot, for he it was that should betray him, [being] one of the twelve.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">And after these things Jesus walked in Galilee: for he would not walk in Judaea, because the Jews sought to kill him.</VERS>\r\n      <VERS vnumber=\"2\">Now the feast of the Jews, the feast of tabernacles, was at hand.</VERS>\r\n      <VERS vnumber=\"3\">His brethren therefore said unto him, Depart hence, and go into Judaea, that thy disciples also may behold thy works which thou doest.</VERS>\r\n      <VERS vnumber=\"4\">For no man doeth anything in secret, and himself seeketh to be known openly. If thou doest these things, manifest thyself to the world.</VERS>\r\n      <VERS vnumber=\"5\">For even his brethren did not believe on him.</VERS>\r\n      <VERS vnumber=\"6\">Jesus therefore saith unto them, My time is not yet come; but your time is always ready.</VERS>\r\n      <VERS vnumber=\"7\">The world cannot hate you; but me it hateth, because I testify of it, that its works are evil.</VERS>\r\n      <VERS vnumber=\"8\">Go ye up unto the feast: I go not up unto this feast; because my time is not yet fulfilled.</VERS>\r\n      <VERS vnumber=\"9\">And having said these things unto them, he abode [still] in Galilee.</VERS>\r\n      <VERS vnumber=\"10\">But when his brethren were gone up unto the feast, then went he also up, not publicly, but as it were in secret.</VERS>\r\n      <VERS vnumber=\"11\">The Jews therefore sought him at the feast, and said, Where is he?</VERS>\r\n      <VERS vnumber=\"12\">And there was much murmuring among the multitudes concerning him: some said, He is a good man; others said, Not so, but he leadeth the multitude astray.</VERS>\r\n      <VERS vnumber=\"13\">Yet no man spake openly of him for fear of the Jews.</VERS>\r\n      <VERS vnumber=\"14\">But when it was now the midst of the feast Jesus went up into the temple, and taught.</VERS>\r\n      <VERS vnumber=\"15\">The Jews therefore marvelled, saying, How knoweth this man letters, having never learned?</VERS>\r\n      <VERS vnumber=\"16\">Jesus therefore answered them and said, My teaching is not mine, but his that sent me.</VERS>\r\n      <VERS vnumber=\"17\">If any man willeth to do his will, he shall know of the teaching, whether it is of God, or [whether] I speak from myself.</VERS>\r\n      <VERS vnumber=\"18\">He that speaketh from himself seeketh his own glory: but he that seeketh the glory of him that sent him, the same is true, and no unrighteousness is in him.</VERS>\r\n      <VERS vnumber=\"19\">Did not Moses give you the law, and [yet] none of you doeth the law? Why seek ye to kill me?</VERS>\r\n      <VERS vnumber=\"20\">The multitude answered, Thou hast a demon: who seeketh to kill thee?</VERS>\r\n      <VERS vnumber=\"21\">Jesus answered and said unto them, I did one work, and ye all marvel because thereof.</VERS>\r\n      <VERS vnumber=\"22\">Moses hath given you circumcision (not that it is of Moses, but of the fathers); and on the sabbath ye circumcise a man.</VERS>\r\n      <VERS vnumber=\"23\">If a man receiveth circumcision on the sabbath, that the law of Moses may not be broken; are ye wroth with me, because I made a man every whit whole on the sabbath?</VERS>\r\n      <VERS vnumber=\"24\">Judge not according to appearance, but judge righteous judgment.</VERS>\r\n      <VERS vnumber=\"25\">Some therefore of them of Jerusalem said, Is not this he whom they seek to kill?</VERS>\r\n      <VERS vnumber=\"26\">And lo, he speaketh openly, and they say nothing unto him. Can it be that the rulers indeed know that this is the Christ?</VERS>\r\n      <VERS vnumber=\"27\">Howbeit we know this man whence he is: but when the Christ cometh, no one knoweth whence he is.</VERS>\r\n      <VERS vnumber=\"28\">Jesus therefore cried in the temple, teaching and saying, Ye both know me, and know whence I am; and I am not come of myself, but he that sent me is true, whom ye know not.</VERS>\r\n      <VERS vnumber=\"29\">I know him; because I am from him, and he sent me.</VERS>\r\n      <VERS vnumber=\"30\">They sought therefore to take him: and no man laid his hand on him, because his hour was not yet come.</VERS>\r\n      <VERS vnumber=\"31\">But of the multitude many believed on him; and they said, When the Christ shall come, will he do more signs than those which this man hath done?</VERS>\r\n      <VERS vnumber=\"32\">The Pharisees heard the multitude murmuring these things concerning him; and the chief priests and the Pharisees sent officers to take him.</VERS>\r\n      <VERS vnumber=\"33\">Jesus therefore said, Yet a little while am I with you, and I go unto him that sent me.</VERS>\r\n      <VERS vnumber=\"34\">Ye shall seek me, and shall not find me: and where I am, ye cannot come.</VERS>\r\n      <VERS vnumber=\"35\">The Jews therefore said among themselves, Whither will this man go that we shall not find him? will he go unto the Dispersion among the Greeks, and teach the Greeks?</VERS>\r\n      <VERS vnumber=\"36\">What is this word that he said, Ye shall seek me, and shall not find me; and where I am, ye cannot come?</VERS>\r\n      <VERS vnumber=\"37\">Now on the last day, the great [day] of the feast, Jesus stood and cried, saying, If any man thirst, let him come unto me and drink.</VERS>\r\n      <VERS vnumber=\"38\">He that believeth on me, as the scripture hath said, from within him shall flow rivers of living water.</VERS>\r\n      <VERS vnumber=\"39\">But this spake he of the Spirit, which they that believed on him were to receive: for the Spirit was not yet [given]; because Jesus was not yet glorified.</VERS>\r\n      <VERS vnumber=\"40\">[Some] of the multitude therefore, when they heard these words, said, This is of a truth the prophet.</VERS>\r\n      <VERS vnumber=\"41\">Others said, This is the Christ. But some said, What, doth the Christ come out of Galilee?</VERS>\r\n      <VERS vnumber=\"42\">Hath not the scripture said that the Christ cometh of the seed of David, and from Bethlehem, the village where David was?</VERS>\r\n      <VERS vnumber=\"43\">So there arose a division in the multitude because of him.</VERS>\r\n      <VERS vnumber=\"44\">And some of them would have taken him; but no man laid hands on him.</VERS>\r\n      <VERS vnumber=\"45\">The officers therefore came to the chief priests and Pharisees; and they said unto them, Why did ye not bring him?</VERS>\r\n      <VERS vnumber=\"46\">The officers answered, Never man so spake.</VERS>\r\n      <VERS vnumber=\"47\">The Pharisees therefore answered them, Are ye also led astray?</VERS>\r\n      <VERS vnumber=\"48\">Hath any of the rulers believed on him, or of the Pharisees?</VERS>\r\n      <VERS vnumber=\"49\">But this multitude that knoweth not the law are accursed.</VERS>\r\n      <VERS vnumber=\"50\">Nicodemus saith unto them (he that came to him before, being one of them),</VERS>\r\n      <VERS vnumber=\"51\">Doth our law judge a man, except it first hear from himself and know what he doeth?</VERS>\r\n      <VERS vnumber=\"52\">They answered and said unto him, Art thou also of Galilee? Search, and see that out of Galilee ariseth no prophet.</VERS>\r\n      <VERS vnumber=\"53\">And they went every man unto his own house:</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">but Jesus went unto the mount of Olives.</VERS>\r\n      <VERS vnumber=\"2\">And early in the morning he came again into the temple, and all the people came unto him; and he sat down, and taught them.</VERS>\r\n      <VERS vnumber=\"3\">And the scribes and the Pharisees bring a woman taken in adultery; and having set her in the midst,</VERS>\r\n      <VERS vnumber=\"4\">they say unto him, Teacher, this woman hath been taken in adultery, in the very act.</VERS>\r\n      <VERS vnumber=\"5\">Now in the law Moses commanded us to stone such: what then sayest thou of her?</VERS>\r\n      <VERS vnumber=\"6\">And this they said, trying him, that they might have [whereof] to accuse him. But Jesus stooped down, and with his finger wrote on the ground.</VERS>\r\n      <VERS vnumber=\"7\">But 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.</VERS>\r\n      <VERS vnumber=\"8\">And again he stooped down, and with his finger wrote on the ground.</VERS>\r\n      <VERS vnumber=\"9\">And they, when they heard it, went out one by one, beginning from the eldest, [even] unto the last: and Jesus was left alone, and the woman, where she was, in the midst.</VERS>\r\n      <VERS vnumber=\"10\">And Jesus lifted up himself, and said unto her, Woman, where are they? did no man condemn thee?</VERS>\r\n      <VERS vnumber=\"11\">And she said, No man, Lord. And Jesus said, Neither do I condemn thee: go thy way; from henceforth sin no more.</VERS>\r\n      <VERS vnumber=\"12\">Again therefore Jesus spake unto them, saying, I am the light of the world: he that followeth me shall not walk in the darkness, but shall have the light of life.</VERS>\r\n      <VERS vnumber=\"13\">The Pharisees therefore said unto him, Thou bearest witness of thyself; thy witness is not true.</VERS>\r\n      <VERS vnumber=\"14\">Jesus answered and said unto them, Even if I bear witness of myself, my witness is true; for I know whence I came, and whither I go; but ye know not whence I come, or whither I go.</VERS>\r\n      <VERS vnumber=\"15\">Ye judge after the flesh; I judge no man.</VERS>\r\n      <VERS vnumber=\"16\">Yea and if I judge, my judgment is true; for I am not alone, but I and the Father that sent me.</VERS>\r\n      <VERS vnumber=\"17\">Yea and in your law it is written, that the witness of two men is true.</VERS>\r\n      <VERS vnumber=\"18\">I am he that beareth witness of myself, and the Father that sent me beareth witness of me.</VERS>\r\n      <VERS vnumber=\"19\">They said therefore unto him, Where is thy Father? Jesus answered, Ye know neither me, nor my Father: if ye knew me, ye would know my Father also.</VERS>\r\n      <VERS vnumber=\"20\">These words spake he in the treasury, as he taught in the temple: and no man took him; because his hour was not yet come.</VERS>\r\n      <VERS vnumber=\"21\">He said therefore again unto them, I go away, and ye shall seek me, and shall die in your sin: whither I go, ye cannot come.</VERS>\r\n      <VERS vnumber=\"22\">The Jews therefore said, Will he kill himself, that he saith, Whither I go, ye cannot come?</VERS>\r\n      <VERS vnumber=\"23\">And he said unto them, Ye are from beneath; I am from above: ye are of this world; I am not of this world.</VERS>\r\n      <VERS vnumber=\"24\">I said therefore unto you, that ye shall die in your sins: for except ye believe that I am [he], ye shall die in your sins.</VERS>\r\n      <VERS vnumber=\"25\">They said therefore unto him, Who art thou? Jesus said unto them, Even that which I have also spoken unto you from the beginning.</VERS>\r\n      <VERS vnumber=\"26\">I have many things to speak and to judge concerning you: howbeit he that sent me is true; and the things which I heard from him, these speak I unto the world.</VERS>\r\n      <VERS vnumber=\"27\">They perceived not that he spake to them of the Father.</VERS>\r\n      <VERS vnumber=\"28\">Jesus therefore said, 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 the Father taught me, I speak these things.</VERS>\r\n      <VERS vnumber=\"29\">And he that sent me is with me; he hath not left me alone; for I do always the things that are pleasing to him.</VERS>\r\n      <VERS vnumber=\"30\">As he spake these things, many believed on him.</VERS>\r\n      <VERS vnumber=\"31\">Jesus therefore said to those Jews that had believed him, If ye abide in my word, [then] are ye truly my disciples;</VERS>\r\n      <VERS vnumber=\"32\">and ye shall know the truth, and the truth shall make you free.</VERS>\r\n      <VERS vnumber=\"33\">They answered unto him, We are Abraham`s seed, and have never yet been in bondage to any man: how sayest thou, Ye shall be made free?</VERS>\r\n      <VERS vnumber=\"34\">Jesus answered them, Verily, verily, I say unto you, Every one that committeth sin is the bondservant of sin.</VERS>\r\n      <VERS vnumber=\"35\">And the bondservant abideth not in the house for ever: the son abideth for ever.</VERS>\r\n      <VERS vnumber=\"36\">If therefore the Son shall make you free, ye shall be free indeed.</VERS>\r\n      <VERS vnumber=\"37\">I know that ye are Abraham`s seed: yet ye seek to kill me, because my word hath not free course in you.</VERS>\r\n      <VERS vnumber=\"38\">I speak the things which I have seen with [my] Father: and ye also do the things which ye heard from [your] father.</VERS>\r\n      <VERS vnumber=\"39\">They answered and said unto him, Our father is Abraham. Jesus saith unto them, If ye were Abraham`s children, ye would do the works of Abraham.</VERS>\r\n      <VERS vnumber=\"40\">But now ye seek to kill me, a man that hath told you the truth, which I heard from God: this did not Abraham.</VERS>\r\n      <VERS vnumber=\"41\">Ye do the works of your father. They said unto him, We were not born of fornication; we have one Father, [even] God.</VERS>\r\n      <VERS vnumber=\"42\">Jesus said unto them, If God were your Father, ye would love me: for I came forth and am come from God; for neither have I come of myself, but he sent me.</VERS>\r\n      <VERS vnumber=\"43\">Why do ye not understand my speech? [Even] because ye cannot hear my word.</VERS>\r\n      <VERS vnumber=\"44\">Ye are of [your] father the devil, and the lusts of your father it is your will to do. He was a murderer from the beginning, and standeth 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 thereof.</VERS>\r\n      <VERS vnumber=\"45\">But because I say the truth, ye believe me not.</VERS>\r\n      <VERS vnumber=\"46\">Which of you convicteth me of sin? If I say truth, why do ye not believe me?</VERS>\r\n      <VERS vnumber=\"47\">He that is of God heareth the words of God: for this cause ye hear [them] not, because ye are not of God.</VERS>\r\n      <VERS vnumber=\"48\">The Jews answered and said unto him, Say we not well that thou art a Samaritan, and hast a demon?</VERS>\r\n      <VERS vnumber=\"49\">Jesus answered, I have not a demon; but I honor my Father, and ye dishonor me.</VERS>\r\n      <VERS vnumber=\"50\">But I seek not mine own glory: there is one that seeketh and judgeth.</VERS>\r\n      <VERS vnumber=\"51\">Verily, verily, I say unto you, If a man keep my word, he shall never see death.</VERS>\r\n      <VERS vnumber=\"52\">The Jews said unto him, Now we know that thou hast a demon. Abraham died, and the prophets; and thou sayest, If a man keep my word, he shall never taste of death.</VERS>\r\n      <VERS vnumber=\"53\">Art thou greater than our father Abraham, who died? and the prophets died: whom makest thou thyself?</VERS>\r\n      <VERS vnumber=\"54\">Jesus answered, If I glorify myself, my glory is nothing: it is my Father that glorifieth me; of whom ye say, that he is your God;</VERS>\r\n      <VERS vnumber=\"55\">and ye have not known him: but I know him; and if I should say, I know him not, I shall be like unto you, a liar: but I know him, and keep his word.</VERS>\r\n      <VERS vnumber=\"56\">Your father Abraham rejoiced to see my day; and he saw it, and was glad.</VERS>\r\n      <VERS vnumber=\"57\">The Jews therefore said unto him, Thou art not yet fifty years old, and hast thou seen Abraham?</VERS>\r\n      <VERS vnumber=\"58\">Jesus said unto them, Verily, verily, I say unto you, Before Abraham was born, I am.</VERS>\r\n      <VERS vnumber=\"59\">They took up stones therefore to cast at him: but Jesus hid himself, and went out of the temple.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">And as he passed by, he saw a man blind from his birth.</VERS>\r\n      <VERS vnumber=\"2\">And his disciples asked him, saying, Rabbi, who sinned, this man, or his parents, that he should be born blind?</VERS>\r\n      <VERS vnumber=\"3\">Jesus answered, Neither did this man sin, nor his parents: but that the works of God should be made manifest in him.</VERS>\r\n      <VERS vnumber=\"4\">We must work the works of him that sent me, while it is day: the night cometh, when no man can work.</VERS>\r\n      <VERS vnumber=\"5\">When I am in the world, I am the light of the world.</VERS>\r\n      <VERS vnumber=\"6\">When he had thus spoken, he spat on the ground, and made clay of the spittle, and anointed his eyes with the clay,</VERS>\r\n      <VERS vnumber=\"7\">and said unto him, Go, wash in the pool of Siloam (which is by interpretation, Sent). He went away therefore, and washed, and came seeing.</VERS>\r\n      <VERS vnumber=\"8\">The neighbors therefore, and they that saw him aforetime, that he was a beggar, said, Is not this he that sat and begged?</VERS>\r\n      <VERS vnumber=\"9\">Others said, It is he: others said, No, but he is like him. He said, I am [he].</VERS>\r\n      <VERS vnumber=\"10\">They said therefore unto him, How then were thine eyes opened?</VERS>\r\n      <VERS vnumber=\"11\">He answered, The man that is called Jesus made clay, and anointed mine eyes, and said unto me, Go to Siloam, and wash: so I went away and washed, and I received sight.</VERS>\r\n      <VERS vnumber=\"12\">And they said unto him, Where is he? He saith, I know not.</VERS>\r\n      <VERS vnumber=\"13\">They bring to the Pharisees him that aforetime was blind.</VERS>\r\n      <VERS vnumber=\"14\">Now it was the sabbath on the day when Jesus made the clay, and opened his eyes.</VERS>\r\n      <VERS vnumber=\"15\">Again therefore the Pharisees also asked him how he received his sight. And he said unto them, He put clay upon mine eyes, and I washed, and I see.</VERS>\r\n      <VERS vnumber=\"16\">Some therefore of the Pharisees said, This man is not from God, because he keepeth not the sabbath. But others said, How can a man that is a sinner do such signs? And there was division among them.</VERS>\r\n      <VERS vnumber=\"17\">They say therefore unto the blind man again, What sayest thou of him, in that he opened thine eyes? And he said, He is a prophet.</VERS>\r\n      <VERS vnumber=\"18\">The Jews therefore did not believe concerning him, that he had been blind, and had received his sight, until they called the parents of him that had received his sight,</VERS>\r\n      <VERS vnumber=\"19\">and asked them, saying, Is this your son, who ye say was born blind? How then doth he now see?</VERS>\r\n      <VERS vnumber=\"20\">His parents answered and said, We know that this is our son, and that he was born blind:</VERS>\r\n      <VERS vnumber=\"21\">but how he now seeth, we know not; or who opened his eyes, we know not: ask him; he is of age; he shall speak for himself.</VERS>\r\n      <VERS vnumber=\"22\">These things said his parents, because they feared the Jews: for the Jews had agreed already, that if any man should confess him [to be] Christ, he should be put out of the synagogue.</VERS>\r\n      <VERS vnumber=\"23\">Therefore said his parents, He is of age; ask him.</VERS>\r\n      <VERS vnumber=\"24\">So they called a second time the man that was blind, and said unto him, Give glory to God: we know that this man is a sinner.</VERS>\r\n      <VERS vnumber=\"25\">He therefore answered, Whether he is a sinner, I know not: one thing I know, that, whereas I was blind, now I see.</VERS>\r\n      <VERS vnumber=\"26\">They said therefore unto him, What did he to thee? How opened he thine eyes?</VERS>\r\n      <VERS vnumber=\"27\">He answered them, I told you even now, and ye did not hear; wherefore would ye hear it again? would ye also become his disciples?</VERS>\r\n      <VERS vnumber=\"28\">And they reviled him, and said, Thou art his disciple; but we are disciples of Moses.</VERS>\r\n      <VERS vnumber=\"29\">We know that God hath spoken unto Moses: but as for this man, we know not whence he is.</VERS>\r\n      <VERS vnumber=\"30\">The man answered and said unto them, Why, herein is the marvel, that ye know not whence he is, and [yet] he opened mine eyes.</VERS>\r\n      <VERS vnumber=\"31\">We know that God heareth not sinners: but if any man be a worshipper of God, and do his will, him he heareth.</VERS>\r\n      <VERS vnumber=\"32\">Since the world began it was never heard that any one opened the eyes of a man born blind.</VERS>\r\n      <VERS vnumber=\"33\">If this man were not from God, he could do nothing.</VERS>\r\n      <VERS vnumber=\"34\">They answered and said unto him, Thou wast altogether born in sins, and dost thou teach us? And they cast him out.</VERS>\r\n      <VERS vnumber=\"35\">Jesus heard that they had cast him out; and finding him, he said, Dost thou believe on the Son of God?</VERS>\r\n      <VERS vnumber=\"36\">He answered and said, And who is he, Lord, that I may believe on him?</VERS>\r\n      <VERS vnumber=\"37\">Jesus said unto him, Thou hast both seen him, and he it is that speaketh with thee.</VERS>\r\n      <VERS vnumber=\"38\">And he said, Lord, I believe. And he worshipped him.</VERS>\r\n      <VERS vnumber=\"39\">And Jesus said, For judgment came I into this world, that they that see not may see; and that they that see may become blind.</VERS>\r\n      <VERS vnumber=\"40\">Those of the Pharisees who were with him heard these things, and said unto him, Are we also blind?</VERS>\r\n      <VERS vnumber=\"41\">Jesus said unto them, If ye were blind, ye would have no sin: but now ye say, We see: your sin remaineth.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">Verily, verily, I say unto you, He that entereth not by the door into the fold of the sheep, but climbeth up some other way, the same is a thief and a robber.</VERS>\r\n      <VERS vnumber=\"2\">But he that entereth in by the door is the shepherd of the sheep.</VERS>\r\n      <VERS vnumber=\"3\">To him the porter openeth; and the sheep hear his voice: and he calleth his own sheep by name, and leadeth them out.</VERS>\r\n      <VERS vnumber=\"4\">When he hath put forth all his own, he goeth before them, and the sheep follow him: for they know his voice.</VERS>\r\n      <VERS vnumber=\"5\">And a stranger will they not follow, but will flee from him: for they know not the voice of strangers.</VERS>\r\n      <VERS vnumber=\"6\">This parable spake Jesus unto them: but they understood not what things they were which he spake unto them.</VERS>\r\n      <VERS vnumber=\"7\">Jesus therefore said unto them again, Verily, verily, I say unto you, I am the door of the sheep.</VERS>\r\n      <VERS vnumber=\"8\">All that came before me are thieves and robbers: but the sheep did not hear them.</VERS>\r\n      <VERS vnumber=\"9\">I am the door; by me if any man enter in, he shall be saved, and shall go in and go out, and shall find pasture.</VERS>\r\n      <VERS vnumber=\"10\">The thief cometh not, but that he may steal, and kill, and destroy: I came that they may have life, and may have [it] abundantly.</VERS>\r\n      <VERS vnumber=\"11\">I am the good shepherd: the good shepherd layeth down his life for the sheep.</VERS>\r\n      <VERS vnumber=\"12\">He that is a hireling, and not a shepherd, whose own the sheep are not, beholdeth the wolf coming, and leaveth the sheep, and fleeth, and the wolf snatcheth them, and scattereth [them]:</VERS>\r\n      <VERS vnumber=\"13\">[he fleeth] because he is a hireling, and careth not for the sheep.</VERS>\r\n      <VERS vnumber=\"14\">I am the good shepherd; and I know mine own, and mine own know me,</VERS>\r\n      <VERS vnumber=\"15\">even as the Father knoweth me, and I know the Father; and I lay down my life for the sheep.</VERS>\r\n      <VERS vnumber=\"16\">And other sheep I have, which are not of this fold: them also I must bring, and they shall hear my voice: and they shall become one flock, one shepherd.</VERS>\r\n      <VERS vnumber=\"17\">Therefore doth the Father love me, because I lay down my life, that I may take it again.</VERS>\r\n      <VERS vnumber=\"18\">No one taketh it away 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 received I from my Father.</VERS>\r\n      <VERS vnumber=\"19\">There arose a division again among the Jews because of these words.</VERS>\r\n      <VERS vnumber=\"20\">And many of them said, He hath a demon, and is mad; why hear ye him?</VERS>\r\n      <VERS vnumber=\"21\">Others said, These are not the sayings of one possessed with a demon. Can a demon open the eyes of the blind?</VERS>\r\n      <VERS vnumber=\"22\">And it was the feast of the dedication at Jerusalem:</VERS>\r\n      <VERS vnumber=\"23\">it was winter; and Jesus was walking in the temple in Solomon`s porch.</VERS>\r\n      <VERS vnumber=\"24\">The Jews therefore came round about him, and said unto him, How long dost thou hold us in suspense? If thou art the Christ, tell us plainly.</VERS>\r\n      <VERS vnumber=\"25\">Jesus answered them, I told you, and ye believe not: the works that I do in my Father`s name, these bear witness of me.</VERS>\r\n      <VERS vnumber=\"26\">But ye believe not, because ye are not of my sheep.</VERS>\r\n      <VERS vnumber=\"27\">My sheep hear my voice, and I know them, and they follow me:</VERS>\r\n      <VERS vnumber=\"28\">and I give unto them eternal life; and they shall never perish, and no one shall snatch them out of my hand.</VERS>\r\n      <VERS vnumber=\"29\">My Father, who hath given [them] unto me, is greater than all; and no one is able to snatch [them] out of the Father`s hand.</VERS>\r\n      <VERS vnumber=\"30\">I and the Father are one.</VERS>\r\n      <VERS vnumber=\"31\">The Jews took up stones again to stone him.</VERS>\r\n      <VERS vnumber=\"32\">Jesus answered them, Many good works have I showed you from the Father; for which of those works do ye stone me?</VERS>\r\n      <VERS vnumber=\"33\">The Jews answered him, For a good work we stone thee not, but for blasphemy; and because that thou, being a man, makest thyself God.</VERS>\r\n      <VERS vnumber=\"34\">Jesus answered them, Is it not written in your law, I said, ye are gods?</VERS>\r\n      <VERS vnumber=\"35\">If he called them gods, unto whom the word of God came (and the scripture cannot be broken),</VERS>\r\n      <VERS vnumber=\"36\">say ye of him, whom the Father sanctified and sent into the world, Thou blasphemest; because I said, I am [the] Son of God?</VERS>\r\n      <VERS vnumber=\"37\">If I do not the works of my Father, believe me not.</VERS>\r\n      <VERS vnumber=\"38\">But if I do them, though ye believe not me, believe the works: that ye may know and understand that the Father is in me, and I in the Father.</VERS>\r\n      <VERS vnumber=\"39\">They sought again to take him: and he went forth out of their hand.</VERS>\r\n      <VERS vnumber=\"40\">And he went away again beyond the Jordan into the place where John was at the first baptizing; and there be abode.</VERS>\r\n      <VERS vnumber=\"41\">And many came unto him; and they said, John indeed did no sign: but all things whatsoever John spake of this man were true.</VERS>\r\n      <VERS vnumber=\"42\">And many believed on him there.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">Now a certain man was sick, Lazarus of Bethany, of the village of Mary and her sister Martha.</VERS>\r\n      <VERS vnumber=\"2\">And it was that Mary who anointed the Lord with ointment, and wiped his feet with her hair, whose brother Lazarus was sick.</VERS>\r\n      <VERS vnumber=\"3\">The sisters therefore sent unto him, saying, Lord, behold, he whom thou lovest is sick.</VERS>\r\n      <VERS vnumber=\"4\">But when Jesus heard it, he said, This sickness is not unto death, but for the glory of God, that the Son of God may be glorified thereby.</VERS>\r\n      <VERS vnumber=\"5\">Now Jesus loved Martha, and her sister, and Lazarus.</VERS>\r\n      <VERS vnumber=\"6\">When therefore he heard that he was sick, he abode at that time two days in the place where he was.</VERS>\r\n      <VERS vnumber=\"7\">Then after this he saith to the disciples, Let us go into Judaea again.</VERS>\r\n      <VERS vnumber=\"8\">The disciples say unto him, Rabbi, the Jews were but now seeking to stone thee; and goest thou thither again?</VERS>\r\n      <VERS vnumber=\"9\">Jesus answered, Are there not twelve hours in the day? If a man walk in the day, he stumbleth not, because he seeth the light of this world.</VERS>\r\n      <VERS vnumber=\"10\">But if a man walk in the night, he stumbleth, because the light is not in him.</VERS>\r\n      <VERS vnumber=\"11\">These things spake he: and after this he saith unto them, Our friend Lazarus is fallen asleep; but I go, that I may awake him out of sleep.</VERS>\r\n      <VERS vnumber=\"12\">The disciples therefore said unto him, Lord, if he is fallen asleep, he will recover.</VERS>\r\n      <VERS vnumber=\"13\">Now Jesus had spoken of his death: but they thought that he spake of taking rest in sleep.</VERS>\r\n      <VERS vnumber=\"14\">Then Jesus therefore said unto them plainly, Lazarus is dead.</VERS>\r\n      <VERS vnumber=\"15\">And I am glad for your sakes that I was not there, to the intent ye may believe; nevertheless let us go unto him.</VERS>\r\n      <VERS vnumber=\"16\">Thomas therefore, who is called Didymus, said unto his fellow-disciples, Let us also go, that we may die with him.</VERS>\r\n      <VERS vnumber=\"17\">So when Jesus came, he found that he had been in the tomb four days already.</VERS>\r\n      <VERS vnumber=\"18\">Now Bethany was nigh unto Jerusalem, about fifteen furlongs off;</VERS>\r\n      <VERS vnumber=\"19\">and many of the Jews had come to Martha and Mary, to console them concerning their brother.</VERS>\r\n      <VERS vnumber=\"20\">Martha therefore, when she heard that Jesus was coming, went and met him: but Mary still sat in the house.</VERS>\r\n      <VERS vnumber=\"21\">Martha therefore said unto Jesus, Lord, if thou hadst been here, my brother had not died.</VERS>\r\n      <VERS vnumber=\"22\">And even now I know that, whatsoever thou shalt ask of God, God will give thee.</VERS>\r\n      <VERS vnumber=\"23\">Jesus saith unto her, Thy brother shall rise again.</VERS>\r\n      <VERS vnumber=\"24\">Martha saith unto him, I know that he shall rise again in the resurrection at the last day.</VERS>\r\n      <VERS vnumber=\"25\">Jesus said unto her, I am the resurrection, and the life: he that believeth on me, though he die, yet shall he live;</VERS>\r\n      <VERS vnumber=\"26\">and whosoever liveth and believeth on me shall never die. Believest thou this?</VERS>\r\n      <VERS vnumber=\"27\">She saith unto him, Yea, Lord: I have believed that thou art the Christ, the Son of God, [even] he that cometh into the world.</VERS>\r\n      <VERS vnumber=\"28\">And when she had said this, she went away, and called Mary her sister secretly, saying, The Teacher is her, and calleth thee.</VERS>\r\n      <VERS vnumber=\"29\">And she, when she heard it, arose quickly, and went unto him.</VERS>\r\n      <VERS vnumber=\"30\">(Now Jesus was not yet come into the village, but was still in the place where Martha met him.)</VERS>\r\n      <VERS vnumber=\"31\">The Jews then who were with her in the house, and were consoling her, when they saw Mary, that she rose up quickly and went out, followed her, supposing that she was going unto the tomb to weep there.</VERS>\r\n      <VERS vnumber=\"32\">Mary therefore, when she came where Jesus was, and saw him, fell down at his feet, saying unto him, Lord, if thou hadst been here, my brother had not died.</VERS>\r\n      <VERS vnumber=\"33\">When Jesus therefore saw her weeping, and the Jews [also] weeping who came with her, he groaned in the spirit, and was troubled,</VERS>\r\n      <VERS vnumber=\"34\">and said, Where have ye laid him? They say unto him, Lord, come and see.</VERS>\r\n      <VERS vnumber=\"35\">Jesus wept.</VERS>\r\n      <VERS vnumber=\"36\">The Jews therefore said, Behold how he loved him!</VERS>\r\n      <VERS vnumber=\"37\">But some of them said, Could not this man, who opened the eyes of him that was blind, have caused that this man also should not die?</VERS>\r\n      <VERS vnumber=\"38\">Jesus therefore again groaning in himself cometh to the tomb. Now it was a cave, and a stone lay against it.</VERS>\r\n      <VERS vnumber=\"39\">Jesus saith, Take ye away the stone. Martha, the sister of him that was dead, saith unto him, Lord, by this time the body decayeth; for he hath been [dead] four days.</VERS>\r\n      <VERS vnumber=\"40\">Jesus saith unto her, Said I not unto thee, that, if thou believedst, thou shouldest see the glory of God?</VERS>\r\n      <VERS vnumber=\"41\">So they took away the stone. And Jesus lifted up his eyes, and said, Father, I thank thee that thou heardest me.</VERS>\r\n      <VERS vnumber=\"42\">And I knew that thou hearest me always: but because of the multitude that standeth around I said it, that they may believe that thou didst send me.</VERS>\r\n      <VERS vnumber=\"43\">And when he had thus spoken, he cried with a loud voice, Lazarus, come forth.</VERS>\r\n      <VERS vnumber=\"44\">He that was dead came forth, bound hand and foot with grave-clothes; and his face was bound about with a napkin. Jesus saith unto them, Loose him, and let him go.</VERS>\r\n      <VERS vnumber=\"45\">Many therefore of the Jews, who came to Mary and beheld that which he did, believed on him.</VERS>\r\n      <VERS vnumber=\"46\">But some of them went away to the Pharisees, and told them the things which Jesus had done.</VERS>\r\n      <VERS vnumber=\"47\">The chief priests therefore and the Pharisees gathered a council, and said, What do we? for this man doeth many signs.</VERS>\r\n      <VERS vnumber=\"48\">If we let him thus alone, all men will believe on him: and the Romans will come and take away both our place and our nation.</VERS>\r\n      <VERS vnumber=\"49\">But a certain one of them, Caiaphas, being high priest that year, said unto them, Ye know nothing at all,</VERS>\r\n      <VERS vnumber=\"50\">nor do ye take account that it is expedient for you that one man should die for the people, and that the whole nation perish not.</VERS>\r\n      <VERS vnumber=\"51\">Now this he said not of himself: but, being high priest that year, he prophesied that Jesus should die for the nation;</VERS>\r\n      <VERS vnumber=\"52\">and not for the nation only, but that he might also gather together into one the children of God that are scattered abroad.</VERS>\r\n      <VERS vnumber=\"53\">So from that day forth they took counsel that they might put him to death.</VERS>\r\n      <VERS vnumber=\"54\">Jesus therefore walked no more openly among the Jews, but departed thence into the country near to the wilderness, into a city called Ephraim; and there he tarried with the disciples.</VERS>\r\n      <VERS vnumber=\"55\">Now the passover of the Jews was at hand: and many went up to Jerusalem out of the country before the passover, to purify themselves.</VERS>\r\n      <VERS vnumber=\"56\">They sought therefore for Jesus, and spake one with another, as they stood in the temple, What think ye? That he will not come to the feast?</VERS>\r\n      <VERS vnumber=\"57\">Now the chief priests and the Pharisees had given commandment, that, if any man knew where he was, he should show it, that they might take him.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">Jesus therefore six days before the passover came to Bethany, where Lazarus was, whom Jesus raised from the dead.</VERS>\r\n      <VERS vnumber=\"2\">So they made him a supper there: and Martha served; but Lazarus was one of them that sat at meat with him.</VERS>\r\n      <VERS vnumber=\"3\">Mary therefore took a pound of ointment of pure nard, very precious, and anointed the feet of Jesus, and wiped his feet with her hair: and the house was filled with the odor of the ointment.</VERS>\r\n      <VERS vnumber=\"4\">But Judas Iscariot, one of his disciples, that should betray him, saith,</VERS>\r\n      <VERS vnumber=\"5\">Why was not this ointment sold for three hundred shillings, and given to the poor?</VERS>\r\n      <VERS vnumber=\"6\">Now this he said, not because he cared for the poor; but because he was a thief, and having the bag took away what was put therein.</VERS>\r\n      <VERS vnumber=\"7\">Jesus therefore said, Suffer her to keep it against the day of my burying.</VERS>\r\n      <VERS vnumber=\"8\">For the poor ye have always with you; but me ye have not always.</VERS>\r\n      <VERS vnumber=\"9\">The common people therefore of the Jews learned 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.</VERS>\r\n      <VERS vnumber=\"10\">But the chief priests took counsel that they might put Lazarus also to death;</VERS>\r\n      <VERS vnumber=\"11\">because that by reason of him many of the Jews went away, and believed on Jesus.</VERS>\r\n      <VERS vnumber=\"12\">On the morrow a great multitude that had come to the feast, when they heard that Jesus was coming to Jerusalem,</VERS>\r\n      <VERS vnumber=\"13\">took the branches of the palm trees, and went forth to meet him, and cried out, Hosanna: Blessed [is] he that cometh in the name of the Lord, even the King of Israel.</VERS>\r\n      <VERS vnumber=\"14\">And Jesus, having found a young ass, sat thereon; as it is written,</VERS>\r\n      <VERS vnumber=\"15\">Fear not, daughter of Zion: behold, thy King cometh, sitting on an ass`s colt.</VERS>\r\n      <VERS vnumber=\"16\">These 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.</VERS>\r\n      <VERS vnumber=\"17\">The multitude therefore that was with him when he called Lazarus out of the tomb, and raised him from the dead, bare witness.</VERS>\r\n      <VERS vnumber=\"18\">For this cause also the multitude went and met him, for that they heard that he had done this sign.</VERS>\r\n      <VERS vnumber=\"19\">The Pharisees therefore said among themselves, Behold how ye prevail nothing: lo, the world is gone after him.</VERS>\r\n      <VERS vnumber=\"20\">Now there were certain Greeks among those that went up to worship at the feast:</VERS>\r\n      <VERS vnumber=\"21\">these therefore came to Philip, who was of Bethsaida of Galilee, and asked him, saying, Sir, we would see Jesus.</VERS>\r\n      <VERS vnumber=\"22\">Philip cometh and telleth Andrew: Andrew cometh, and Philip, and they tell Jesus.</VERS>\r\n      <VERS vnumber=\"23\">And Jesus answereth them, saying, The hour is come, that the Son of man should be glorified.</VERS>\r\n      <VERS vnumber=\"24\">Verily, verily, I say unto you, Except a grain of wheat fall into the earth and die, it abideth by itself alone; but if it die, it beareth much fruit.</VERS>\r\n      <VERS vnumber=\"25\">He that loveth his life loseth it; and he that hateth his life in this world shall keep it unto life eternal.</VERS>\r\n      <VERS vnumber=\"26\">If 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 the Father honor.</VERS>\r\n      <VERS vnumber=\"27\">Now is my soul troubled; and what shall I say? Father, save me from this hour. But for this cause came I unto this hour.</VERS>\r\n      <VERS vnumber=\"28\">Father, glorify thy name. There came therefore a voice out of heaven, [saying], I have both glorified it, and will glorify it again.</VERS>\r\n      <VERS vnumber=\"29\">The multitude therefore, that stood by, and heard it, said that it had thundered: others said, An angel hath spoken to him.</VERS>\r\n      <VERS vnumber=\"30\">Jesus answered and said, This voice hath not come for my sake, but for your sakes.</VERS>\r\n      <VERS vnumber=\"31\">Now is the judgment of this world: now shall the prince of this world be cast out.</VERS>\r\n      <VERS vnumber=\"32\">And I, if I be lifted up from the earth, will draw all men unto myself.</VERS>\r\n      <VERS vnumber=\"33\">But this he said, signifying by what manner of death he should die.</VERS>\r\n      <VERS vnumber=\"34\">The multitude therefore answered him, We have heard out of the law that the Christ abideth for ever: and how sayest thou, The Son of man must be lifted up? who is this Son of man?</VERS>\r\n      <VERS vnumber=\"35\">Jesus therefore said unto them, Yet a little while is the light among you. Walk while ye have the light, that darkness overtake you not: and he that walketh in the darkness knoweth not whither he goeth.</VERS>\r\n      <VERS vnumber=\"36\">While ye have the light, believe on the light, that ye may become sons of light. These things spake Jesus, and he departed and hid himself from them.</VERS>\r\n      <VERS vnumber=\"37\">But though he had done so many signs before them, yet they believed not on him:</VERS>\r\n      <VERS vnumber=\"38\">that the word of Isaiah 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?</VERS>\r\n      <VERS vnumber=\"39\">For this cause they could not believe, for that Isaiah said again,</VERS>\r\n      <VERS vnumber=\"40\">He hath blinded their eyes, and he hardened their heart; Lest they should see with their eyes, and perceive with their       heart, And should turn, And I should heal them.</VERS>\r\n      <VERS vnumber=\"41\">These things said Isaiah, because he saw his glory; and he spake of him.</VERS>\r\n      <VERS vnumber=\"42\">Nevertheless even of the rulers many believed on him; but because of the Pharisees they did not confess [it], lest they should be put out of the synagogue:</VERS>\r\n      <VERS vnumber=\"43\">for they loved the glory [that is] of men more than the glory [that is] of God.</VERS>\r\n      <VERS vnumber=\"44\">And Jesus cried and said, He that believeth on me, believeth not on me, but on him that sent me.</VERS>\r\n      <VERS vnumber=\"45\">And he that beholdeth me beholdeth him that sent me.</VERS>\r\n      <VERS vnumber=\"46\">I am come a light into the world, that whosoever believeth on me may not abide in the darkness.</VERS>\r\n      <VERS vnumber=\"47\">And if any man hear my sayings, and keep them not, I judge him not: for I came not to judge the world, but to save the world.</VERS>\r\n      <VERS vnumber=\"48\">He that rejecteth me, and receiveth not my sayings, hath one that judgeth him: the word that I spake, the same shall judge him in the last day.</VERS>\r\n      <VERS vnumber=\"49\">For I spake not from myself; but the Father that sent me, he hath given me a commandment, what I should say, and what I should speak.</VERS>\r\n      <VERS vnumber=\"50\">And I know that his commandment is life eternal: the things therefore which I speak, even as the Father hath said unto me, so I speak.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">Now before the feast of the passover, Jesus knowing that his hour was come that he should depart out of this world unto his Father, having loved his own that were in the world, he loved them unto the end.</VERS>\r\n      <VERS vnumber=\"2\">And during supper, the devil having already put into the heart of Judas Iscariot, Simon`s [son], to betray him,</VERS>\r\n      <VERS vnumber=\"3\">[Jesus], knowing that the Father had given all the things into his hands, and that he came forth from God, and goeth unto God,</VERS>\r\n      <VERS vnumber=\"4\">riseth from supper, and layeth aside his garments; and he took a towel, and girded himself.</VERS>\r\n      <VERS vnumber=\"5\">Then he poureth water into the basin, and began to wash the disciples` feet, and to wipe them with the towel wherewith he was girded.</VERS>\r\n      <VERS vnumber=\"6\">So he cometh to Simon Peter. He saith unto him, Lord, dost thou wash my feet?</VERS>\r\n      <VERS vnumber=\"7\">Jesus answered and said unto him, What I do thou knowest not now; but thou shalt understand hereafter.</VERS>\r\n      <VERS vnumber=\"8\">Peter saith unto him, Thou shalt never wash my feet. Jesus answered him, If I wash thee not, thou hast no part with me.</VERS>\r\n      <VERS vnumber=\"9\">Simon Peter saith unto him, Lord, not my feet only, but also my hands and my head.</VERS>\r\n      <VERS vnumber=\"10\">Jesus saith to him, He that is bathed needeth not save to wash his feet, but is clean every whit: and ye are clean, but not all.</VERS>\r\n      <VERS vnumber=\"11\">For he knew him that should betray him; therefore said he, Ye are not all clean.</VERS>\r\n      <VERS vnumber=\"12\">So when he had washed their feet, and taken his garments, and sat down again, he said unto them, Know ye what I have done to you?</VERS>\r\n      <VERS vnumber=\"13\">Ye call me, Teacher, and, Lord: and ye say well; for so I am.</VERS>\r\n      <VERS vnumber=\"14\">If I then, the Lord and the Teacher, have washed your feet, ye also ought to wash one another`s feet.</VERS>\r\n      <VERS vnumber=\"15\">For I have given you an example, that ye also should do as I have done to you.</VERS>\r\n      <VERS vnumber=\"16\">Verily, verily, I say unto you, a servant is not greater than his lord; neither one that is sent greater than he that sent him.</VERS>\r\n      <VERS vnumber=\"17\">If ye know these things, blessed are ye if ye do them.</VERS>\r\n      <VERS vnumber=\"18\">I speak not of you all: I know whom I have chosen: but that the scripture may be fulfilled: He that eateth my bread lifted up his heel against me.</VERS>\r\n      <VERS vnumber=\"19\">From henceforth I tell you before it come to pass, that, when it is come to pass, ye may believe that I am [he].</VERS>\r\n      <VERS vnumber=\"20\">Verily, verily, I say unto you, he that receiveth whomsoever I send receiveth me; and he that receiveth me receiveth him that sent me.</VERS>\r\n      <VERS vnumber=\"21\">When Jesus had thus said, he was troubled in the spirit, and testified, and said, Verily, verily, I say unto you, that one of you shall betray me.</VERS>\r\n      <VERS vnumber=\"22\">The disciples looked one on another, doubting of whom he spake.</VERS>\r\n      <VERS vnumber=\"23\">There was at the table reclining in Jesus` bosom one of his disciples, whom Jesus loved.</VERS>\r\n      <VERS vnumber=\"24\">Simon Peter therefore beckoneth to him, and saith unto him, Tell [us] who it is of whom he speaketh.</VERS>\r\n      <VERS vnumber=\"25\">He leaning back, as he was, on Jesus` breast saith unto him, Lord, who is it?</VERS>\r\n      <VERS vnumber=\"26\">Jesus therefore answereth, He it is, for whom I shall dip the sop, and give it him. So when he had dipped the sop, he taketh and giveth it to Judas, [the son] of Simon Iscariot.</VERS>\r\n      <VERS vnumber=\"27\">And after the sop, then entered Satan into him. Jesus therefore saith unto him, What thou doest, do quickly.</VERS>\r\n      <VERS vnumber=\"28\">Now no man at the table knew for what intent he spake this unto him.</VERS>\r\n      <VERS vnumber=\"29\">For some thought, because Judas had the bag, that Jesus said unto him, Buy what things we have need of for the feast; or, that he should give something to the poor.</VERS>\r\n      <VERS vnumber=\"30\">He then having received the sop went out straightway: and it was night.</VERS>\r\n      <VERS vnumber=\"31\">When therefore he was gone out, Jesus saith, Now is the Son of man glorified, and God is glorified in him;</VERS>\r\n      <VERS vnumber=\"32\">and God shall glorify him in himself, and straightway shall he glorify him.</VERS>\r\n      <VERS vnumber=\"33\">Little 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 unto you.</VERS>\r\n      <VERS vnumber=\"34\">A new commandment I give unto you, that ye love one another; even as I have loved you, that ye also love one another.</VERS>\r\n      <VERS vnumber=\"35\">By this shall all men know that ye are my disciples, if ye have love one to another.</VERS>\r\n      <VERS vnumber=\"36\">Simon Peter saith unto him, Lord, whither goest thou? Jesus answered, Whither I go, thou canst not follow now; but thou shalt follow afterwards.</VERS>\r\n      <VERS vnumber=\"37\">Peter saith unto him, Lord, why cannot I follow thee even now? I will lay down my life for thee.</VERS>\r\n      <VERS vnumber=\"38\">Jesus answereth, Wilt thou lay down thy life for me? Verily, verily, I say unto thee, The cock shall not crow, till thou hast denied me thrice.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">Let not your heart be troubled: believe in God, believe also in me.</VERS>\r\n      <VERS vnumber=\"2\">In my Father`s house are many mansions; if it were not so, I would have told you; for I go to prepare a place for you.</VERS>\r\n      <VERS vnumber=\"3\">And if I go and prepare a place for you, I come again, and will receive you unto myself; that where I am, [there] ye may be also.</VERS>\r\n      <VERS vnumber=\"4\">And whither I go, ye know the way.</VERS>\r\n      <VERS vnumber=\"5\">Thomas saith unto him, Lord, we know not whither thou goest; how know we the way?</VERS>\r\n      <VERS vnumber=\"6\">Jesus saith unto him, I am the way, and the truth, and the life: no one cometh unto the Father, but by me.</VERS>\r\n      <VERS vnumber=\"7\">If ye had known me, ye would have known my Father also: from henceforth ye know him, and have seen him.</VERS>\r\n      <VERS vnumber=\"8\">Philip saith unto him, Lord, show us the Father, and it sufficeth us.</VERS>\r\n      <VERS vnumber=\"9\">Jesus saith unto him, Have I been so long time with you, and dost thou not know me, Philip? he that hath seen me hath seen the Father; how sayest thou, Show us the Father?</VERS>\r\n      <VERS vnumber=\"10\">Believest thou not that I am in the Father, and the Father in me? the words that I say unto you I speak not from myself: but the Father abiding in me doeth his works.</VERS>\r\n      <VERS vnumber=\"11\">Believe me that I am in the Father, and the Father in me: or else believe me for the very works` sake.</VERS>\r\n      <VERS vnumber=\"12\">Verily, 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 the Father.</VERS>\r\n      <VERS vnumber=\"13\">And whatsoever ye shall ask in my name, that will I do, that the Father may be glorified in the Son.</VERS>\r\n      <VERS vnumber=\"14\">If ye shall ask anything in my name, that will I do.</VERS>\r\n      <VERS vnumber=\"15\">If ye love me, ye will keep my commandments.</VERS>\r\n      <VERS vnumber=\"16\">And I will pray the Father, and he shall give you another Comforter, that he may be with you for ever,</VERS>\r\n      <VERS vnumber=\"17\">[even] the Spirit of truth: whom the world cannot receive; for it beholdeth him not, neither knoweth him: ye know him; for he abideth with you, and shall be in you.</VERS>\r\n      <VERS vnumber=\"18\">I will not leave you desolate: I come unto you.</VERS>\r\n      <VERS vnumber=\"19\">Yet a little while, and the world beholdeth me no more; but ye behold me: because I live, ye shall live also.</VERS>\r\n      <VERS vnumber=\"20\">In that day ye shall know that I am in my Father, and ye in me, and I in you.</VERS>\r\n      <VERS vnumber=\"21\">He 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 unto him.</VERS>\r\n      <VERS vnumber=\"22\">Judas (not Iscariot) saith unto him, Lord, what is come to pass that thou wilt manifest thyself unto us, and not unto the world?</VERS>\r\n      <VERS vnumber=\"23\">Jesus answered and said unto him, If a man love me, he will keep my word: and my Father will love him, and we will come unto him, and make our abode with him.</VERS>\r\n      <VERS vnumber=\"24\">He that loveth me not keepeth not my words: and the word which ye hear is not mine, but the Father`s who sent me.</VERS>\r\n      <VERS vnumber=\"25\">These things have I spoken unto you, while [yet] abiding with you.</VERS>\r\n      <VERS vnumber=\"26\">But the Comforter, [even] the Holy Spirit, whom the Father will send in my name, he shall teach you all things, and bring to your remembrance all that I said unto you.</VERS>\r\n      <VERS vnumber=\"27\">Peace 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 fearful.</VERS>\r\n      <VERS vnumber=\"28\">Ye heard how I said to you, I go away, and I come unto you. If ye loved me, ye would have rejoiced, because I go unto the Father: for the Father is greater than I.</VERS>\r\n      <VERS vnumber=\"29\">And now I have told you before it come to pass, that, when it is come to pass, ye may believe.</VERS>\r\n      <VERS vnumber=\"30\">I will no more speak much with you, for the prince of the world cometh: and he hath nothing in me;</VERS>\r\n      <VERS vnumber=\"31\">but 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">I am the true vine, and my Father is the husbandman.</VERS>\r\n      <VERS vnumber=\"2\">Every branch in me that beareth not fruit, he taketh it away: and every [branch] that beareth fruit, he cleanseth it, that it may bear more fruit.</VERS>\r\n      <VERS vnumber=\"3\">Already ye are clean because of the word which I have spoken unto you.</VERS>\r\n      <VERS vnumber=\"4\">Abide in me, and I in you. As the branch cannot bear fruit of itself, except it abide in the vine; so neither can ye, except ye abide in me.</VERS>\r\n      <VERS vnumber=\"5\">I am the vine, ye are the branches: He that abideth in me, and I in him, the same beareth much fruit: for apart from me ye can do nothing.</VERS>\r\n      <VERS vnumber=\"6\">If a man abide not in me, he is cast forth as a branch, and is withered; and they gather them, and cast them into the fire, and they are burned.</VERS>\r\n      <VERS vnumber=\"7\">If ye abide in me, and my words abide in you, ask whatsoever ye will, and it shall be done unto you.</VERS>\r\n      <VERS vnumber=\"8\">Herein is my Father glorified, that ye bear much fruit; and [so] shall ye be my disciples.</VERS>\r\n      <VERS vnumber=\"9\">Even as the Father hath loved me, I also have loved you: abide ye in my love.</VERS>\r\n      <VERS vnumber=\"10\">If ye keep my commandments, ye shall abide in my love; even as I have kept my Father`s commandments, and abide in his love.</VERS>\r\n      <VERS vnumber=\"11\">These things have I spoken unto you, that my joy may be in you, and [that] your joy may be made full.</VERS>\r\n      <VERS vnumber=\"12\">This is my commandment, that ye love one another, even as I have loved you.</VERS>\r\n      <VERS vnumber=\"13\">Greater love hath no man than this, that a man lay down his life for his friends.</VERS>\r\n      <VERS vnumber=\"14\">Ye are my friends, if ye do the things which I command you.</VERS>\r\n      <VERS vnumber=\"15\">No longer do I call you servants; for the servant knoweth not what his lord doeth: but I have called you friends; for all things that I heard from my Father, I have made known unto you.</VERS>\r\n      <VERS vnumber=\"16\">Ye did not choose me, but I chose you, and appointed you, that ye should go and bear fruit, and [that] your fruit should abide: that whatsoever ye shall ask of the Father in my name, he may give it you.</VERS>\r\n      <VERS vnumber=\"17\">These things I command you, that ye may love one another.</VERS>\r\n      <VERS vnumber=\"18\">If the world hateth you, ye know that it hath hated me before [it hated] you.</VERS>\r\n      <VERS vnumber=\"19\">If ye were of the world, the world would love its own: but because ye are not of the world, but I chose you out of the world, therefore the world hateth you.</VERS>\r\n      <VERS vnumber=\"20\">Remember the word that I said unto you, A servant is not greater than his lord. If they persecuted me, they will also persecute you; if they kept my word, they will keep yours also.</VERS>\r\n      <VERS vnumber=\"21\">But all these things will they do unto you for my name`s sake, because they know not him that sent me.</VERS>\r\n      <VERS vnumber=\"22\">If I had not come and spoken unto them, they had not had sin: but now they have no excuse for their sin.</VERS>\r\n      <VERS vnumber=\"23\">He that hateth me hateth my Father also.</VERS>\r\n      <VERS vnumber=\"24\">If I had not done among them the works which none other did, they had not had sin: but now have they both seen and hated both me and my Father.</VERS>\r\n      <VERS vnumber=\"25\">But [this cometh to pass], that the word may be fulfilled that is written in their law, They hated me without a cause.</VERS>\r\n      <VERS vnumber=\"26\">But 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 bear witness of me:</VERS>\r\n      <VERS vnumber=\"27\">and ye also bear witness, because ye have been with me from the beginning.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">These things have I spoken unto you, that ye should not be caused to stumble.</VERS>\r\n      <VERS vnumber=\"2\">They shall put you out of the synagogues: yea, the hour cometh, that whosoever killeth you shall think that he offereth service unto God.</VERS>\r\n      <VERS vnumber=\"3\">And these things will they do, because they have not known the Father, nor me.</VERS>\r\n      <VERS vnumber=\"4\">But these things have I spoken unto you, that when their hour is come, ye may remember them, how that I told you. And these things I said not unto you from the beginning, because I was with you.</VERS>\r\n      <VERS vnumber=\"5\">But now I go unto him that sent me; and none of you asketh me, Whither goest thou?</VERS>\r\n      <VERS vnumber=\"6\">But because I have spoken these things unto you, sorrow hath filled your heart.</VERS>\r\n      <VERS vnumber=\"7\">Nevertheless 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 go, I will send him unto you.</VERS>\r\n      <VERS vnumber=\"8\">And he, when he is come, will convict the world in respect of sin, and of righteousness, and of judgment:</VERS>\r\n      <VERS vnumber=\"9\">of sin, because they believe not on me;</VERS>\r\n      <VERS vnumber=\"10\">of righteousness, because I go to the Father, and ye behold me no more;</VERS>\r\n      <VERS vnumber=\"11\">of judgment, because the prince of this world hath been judged.</VERS>\r\n      <VERS vnumber=\"12\">I have yet many things to say unto you, but ye cannot bear them now.</VERS>\r\n      <VERS vnumber=\"13\">Howbeit when he, the Spirit of truth, is come, he shall guide you into all the truth: for he shall not speak from himself; but what things soever he shall hear, [these] shall he speak: and he shall declare unto you the things that are to come.</VERS>\r\n      <VERS vnumber=\"14\">He shall glorify me: for he shall take of mine, and shall declare [it] unto you.</VERS>\r\n      <VERS vnumber=\"15\">All things whatsoever the Father hath are mine: therefore said I, that he taketh of mine, and shall declare [it] unto you.</VERS>\r\n      <VERS vnumber=\"16\">A little while, and ye behold me no more; and again a little while, and ye shall see me.</VERS>\r\n      <VERS vnumber=\"17\">[Some] of his disciples therefore said one to another, What is this that he saith unto us, A little while, and ye behold me not; and again a little while, and ye shall see me: and, Because I go to the Father?</VERS>\r\n      <VERS vnumber=\"18\">They said therefore, What is this that he saith, A little while? We know not what he saith.</VERS>\r\n      <VERS vnumber=\"19\">Jesus perceived that they were desirous to ask him, and he said unto them, Do ye inquire among yourselves concerning this, that I said, A little while, and ye behold me not, and again a little while, and ye shall see me?</VERS>\r\n      <VERS vnumber=\"20\">Verily, verily, I say unto you, that ye shall weep and lament, but the world shall rejoice: ye shall be sorrowful, but your sorrow shall be turned into joy.</VERS>\r\n      <VERS vnumber=\"21\">A woman when she is in travail hath sorrow, because her hour is come: but when she is delivered of the child, she remembereth no more the anguish, for the joy that a man is born into the world.</VERS>\r\n      <VERS vnumber=\"22\">And ye therefore now have sorrow: but I will see you again, and your heart shall rejoice, and your joy no one taketh away from you.</VERS>\r\n      <VERS vnumber=\"23\">And in that day ye shall ask me no question. Verily, verily, I say unto you, if ye shall ask anything of the Father, he will give it you in my name.</VERS>\r\n      <VERS vnumber=\"24\">Hitherto have ye asked nothing in my name: ask, and ye shall receive, that your joy may be made full.</VERS>\r\n      <VERS vnumber=\"25\">These things have I spoken unto you in dark sayings: the hour cometh, when I shall no more speak unto you in dark sayings, but shall tell you plainly of the Father.</VERS>\r\n      <VERS vnumber=\"26\">In that day ye shall ask in my name: and I say not unto you, that I will pray the Father for you;</VERS>\r\n      <VERS vnumber=\"27\">for the Father himself loveth you, because ye have loved me, and have believed that I came forth from the Father.</VERS>\r\n      <VERS vnumber=\"28\">I came out from the Father, and am come into the world: again, I leave the world, and go unto the Father.</VERS>\r\n      <VERS vnumber=\"29\">His disciples say, Lo, now speakest thou plainly, and speakest no dark saying.</VERS>\r\n      <VERS vnumber=\"30\">Now know we that thou knowest all things, and needest not that any man should ask thee: by this we believe that thou camest forth from God.</VERS>\r\n      <VERS vnumber=\"31\">Jesus answered them, Do ye now believe?</VERS>\r\n      <VERS vnumber=\"32\">Behold, the hour cometh, yea, is 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.</VERS>\r\n      <VERS vnumber=\"33\">These things have I spoken unto you, that in me ye may have peace. In the world ye have tribulation: but be of good cheer; I have overcome the world.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"17\">\r\n      <VERS vnumber=\"1\">These things spake Jesus; and lifting up his eyes to heaven, he said, Father, the hour is come; glorify thy Son, that the son may glorify thee:</VERS>\r\n      <VERS vnumber=\"2\">even as thou gavest him authority over all flesh, that to all whom thou hast given him, he should give eternal life.</VERS>\r\n      <VERS vnumber=\"3\">And this is life eternal, that they should know thee the only true God, and him whom thou didst send, [even] Jesus Christ.</VERS>\r\n      <VERS vnumber=\"4\">I glorified thee on the earth, having accomplished the work which thou hast given me to do.</VERS>\r\n      <VERS vnumber=\"5\">And now, Father, glorify thou me with thine own self with the glory which I had with thee before the world was.</VERS>\r\n      <VERS vnumber=\"6\">I manifested thy name unto the men whom thou gavest me out of the world: thine they were, and thou gavest them to me; and they have kept thy word.</VERS>\r\n      <VERS vnumber=\"7\">Now they know that all things whatsoever thou hast given me are from thee:</VERS>\r\n      <VERS vnumber=\"8\">for the words which thou gavest me I have given unto them; and they received [them], and knew of a truth that I came forth from thee, and they believed that thou didst send me.</VERS>\r\n      <VERS vnumber=\"9\">I pray for them: I pray not for the world, but for those whom thou hast given me; for they are thine:</VERS>\r\n      <VERS vnumber=\"10\">and all things that are mine are thine, and thine are mine: and I am glorified in them.</VERS>\r\n      <VERS vnumber=\"11\">And I am no more in the world, and these are in the world, and I come to thee. Holy Father, keep them in thy name which thou hast given me, that they may be one, even as we [are].</VERS>\r\n      <VERS vnumber=\"12\">While I was with them, I kept them in thy name which thou hast given me: and I guarded them, and not one of them perished, but the son of perdition; that the scripture might be fulfilled.</VERS>\r\n      <VERS vnumber=\"13\">But now I come to thee; and these things I speak in the world, that they may have my joy made full in themselves.</VERS>\r\n      <VERS vnumber=\"14\">I have given them thy word; and the world hated them, because they are not of the world, even as I am not of the world.</VERS>\r\n      <VERS vnumber=\"15\">I pray not that thou shouldest take them from the world, but that thou shouldest keep them from the evil [one].</VERS>\r\n      <VERS vnumber=\"16\">They are not of the world even as I am not of the world.</VERS>\r\n      <VERS vnumber=\"17\">Sanctify them in the truth: thy word is truth.</VERS>\r\n      <VERS vnumber=\"18\">As thou didst send me into the world, even so sent I them into the world.</VERS>\r\n      <VERS vnumber=\"19\">And for their sakes I sanctify myself, that they themselves also may be sanctified in truth.</VERS>\r\n      <VERS vnumber=\"20\">Neither for these only do I pray, but for them also that believe on me through their word;</VERS>\r\n      <VERS vnumber=\"21\">that they may all be one; even as thou, Father, [art] in me, and I in thee, that they also may be in us: that the world may believe that thou didst send me.</VERS>\r\n      <VERS vnumber=\"22\">And the glory which thou hast given me I have given unto them; that they may be one, even as we [are] one;</VERS>\r\n      <VERS vnumber=\"23\">I in them, and thou in me, that they may be perfected into one; that the world may know that thou didst send me, and lovedst them, even as thou lovedst me.</VERS>\r\n      <VERS vnumber=\"24\">Father, I desire 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.</VERS>\r\n      <VERS vnumber=\"25\">O righteous Father, the world knew thee not, but I knew thee; and these knew that thou didst send me;</VERS>\r\n      <VERS vnumber=\"26\">and I made known unto them thy name, and will make it known; that the love wherewith thou lovedst me may be in them, and I in them.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"18\">\r\n      <VERS vnumber=\"1\">When Jesus had spoken these words, he went forth with his disciples over the brook Kidron, where was a garden, into which he entered, himself and his disciples.</VERS>\r\n      <VERS vnumber=\"2\">Now Judas also, who betrayed him, knew the place: for Jesus oft-times resorted thither with his disciples.</VERS>\r\n      <VERS vnumber=\"3\">Judas then, having received the band [of soldiers], and officers from the chief priests and the Pharisees, cometh thither with lanterns and torches and weapons.</VERS>\r\n      <VERS vnumber=\"4\">Jesus therefore, knowing all the things that were coming upon him, went forth, and saith unto them, Whom seek ye?</VERS>\r\n      <VERS vnumber=\"5\">They answered him, Jesus of Nazareth. Jesus saith unto them, I am [he]. And Judas also, who betrayed him, was standing with them.</VERS>\r\n      <VERS vnumber=\"6\">When therefore he said unto them, I am [he], they went backward, and fell to the ground.</VERS>\r\n      <VERS vnumber=\"7\">Again therefore he asked them, Whom seek ye? And they said, Jesus of Nazareth.</VERS>\r\n      <VERS vnumber=\"8\">Jesus answered, I told you that I am [he]; if therefore ye seek me, let these go their way:</VERS>\r\n      <VERS vnumber=\"9\">that the word might be fulfilled which he spake, Of those whom thou hast given me I lost not one.</VERS>\r\n      <VERS vnumber=\"10\">Simon Peter therefore having a sword drew it, and struck the high priest`s servant, and cut off his right ear. Now the servant`s name was Malchus.</VERS>\r\n      <VERS vnumber=\"11\">Jesus therefore said unto Peter, Put up the sword into the sheath: the cup which the Father hath given me, shall I not drink it?</VERS>\r\n      <VERS vnumber=\"12\">So the band and the chief captain, and the officers of the Jews, seized Jesus and bound him,</VERS>\r\n      <VERS vnumber=\"13\">and led him to Annas first; for he was father in law to Caiaphas, who was high priest that year.</VERS>\r\n      <VERS vnumber=\"14\">Now Caiaphas was he that gave counsel to the Jews, that it was expedient that one man should die for the people.</VERS>\r\n      <VERS vnumber=\"15\">And Simon Peter followed Jesus, and [so did] another disciple. Now that disciple was known unto the high priest, and entered in with Jesus into the court of the high priest;</VERS>\r\n      <VERS vnumber=\"16\">but Peter was standing at the door without. So the other disciple, who was known unto the high priest, went out and spake unto her that kept the door, and brought in Peter.</VERS>\r\n      <VERS vnumber=\"17\">The maid therefore that kept the door saith unto Peter, Art thou also [one] of this man`s disciples? He saith, I am not.</VERS>\r\n      <VERS vnumber=\"18\">Now the servants and the officers were standing [there], having made a fire of coals; for it was cold; and they were warming themselves: and Peter also was with them, standing and warming himself.</VERS>\r\n      <VERS vnumber=\"19\">The high priest therefore asked Jesus of his disciples, and of his teaching.</VERS>\r\n      <VERS vnumber=\"20\">Jesus answered him, I have spoken openly to the world; I ever taught in synagogues, and in the temple, where all the Jews come together; and in secret spake I nothing.</VERS>\r\n      <VERS vnumber=\"21\">Why askest thou me? Ask them that have heard [me], what I spake unto them: behold, these know the things which I said.</VERS>\r\n      <VERS vnumber=\"22\">And when he had said this, one of the officers standing by struck Jesus with his hand, saying, Answerest thou the high priest so?</VERS>\r\n      <VERS vnumber=\"23\">Jesus answered him, If I have spoken evil, bear witness of the evil: but if well, why smitest thou me?</VERS>\r\n      <VERS vnumber=\"24\">Annas therefore sent him bound unto Caiaphas the high priest.</VERS>\r\n      <VERS vnumber=\"25\">Now Simon Peter was standing and warming himself. They said therefore unto him, Art thou also [one] of his disciples? He denied, and said, I am not.</VERS>\r\n      <VERS vnumber=\"26\">One of the servants of the high priest, being a kinsman of him whose ear Peter cut off, saith, Did not I see thee in the garden with him?</VERS>\r\n      <VERS vnumber=\"27\">Peter therefore denied again: and straightway the cock crew.</VERS>\r\n      <VERS vnumber=\"28\">They lead Jesus therefore from Caiaphas into the Praetorium: and it was early; and they themselves entered not into the Praetorium, that they might not be defiled, but might eat the passover.</VERS>\r\n      <VERS vnumber=\"29\">Pilate therefore went out unto them, and saith, What accusation bring ye against this man?</VERS>\r\n      <VERS vnumber=\"30\">They answered and said unto him, If this man were not an evildoer, we should not have delivered him up unto thee.</VERS>\r\n      <VERS vnumber=\"31\">Pilate therefore said unto them, Take him yourselves, and judge him according to your law. The Jews said unto him, It is not lawful for us to put any man to death:</VERS>\r\n      <VERS vnumber=\"32\">that the word of Jesus might be fulfilled, which he spake, signifying by what manner of death he should die.</VERS>\r\n      <VERS vnumber=\"33\">Pilate therefore entered again into the Praetorium, and called Jesus, and said unto him, Art thou the King of the Jews?</VERS>\r\n      <VERS vnumber=\"34\">Jesus answered, Sayest thou this of thyself, or did others tell it thee concerning me?</VERS>\r\n      <VERS vnumber=\"35\">Pilate answered, Am I a Jew? Thine own nation and the chief priests delivered thee unto me: what hast thou done?</VERS>\r\n      <VERS vnumber=\"36\">Jesus 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.</VERS>\r\n      <VERS vnumber=\"37\">Pilate therefore said unto him, Art thou a king then? Jesus answered, Thou sayest that I am a king. To this end have I been born, and to this end am I come into the world, that I should bear witness unto the truth. Every one that is of the truth heareth my voice.</VERS>\r\n      <VERS vnumber=\"38\">Pilate 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 no crime in him.</VERS>\r\n      <VERS vnumber=\"39\">But 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?</VERS>\r\n      <VERS vnumber=\"40\">They cried out therefore again, saying, Not this man, but Barabbas. Now Barabbas was a robber.)</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"19\">\r\n      <VERS vnumber=\"1\">Then Pilate therefore took Jesus, and scourged him.</VERS>\r\n      <VERS vnumber=\"2\">And the soldiers platted a crown of thorns, and put it on his head, and arrayed him in a purple garment;</VERS>\r\n      <VERS vnumber=\"3\">and they came unto him, and said, Hail, King of the Jews! and they struck him with their hands.</VERS>\r\n      <VERS vnumber=\"4\">And Pilate went out again, and saith unto them, Behold, I bring him out to you, that ye may know that I find no crime in him.</VERS>\r\n      <VERS vnumber=\"5\">Jesus therefore came out, wearing the crown of thorns and the purple garment. And [Pilate] saith unto them, Behold, the man!</VERS>\r\n      <VERS vnumber=\"6\">When therefore the chief priests and the officers saw him, they cried out, saying, Crucify [him], crucify [him]! Pilate saith unto them, Take him yourselves, and crucify him: for I find no crime in him.</VERS>\r\n      <VERS vnumber=\"7\">The Jews answered him, We have a law, and by that law he ought to die, because he made himself the Son of God.</VERS>\r\n      <VERS vnumber=\"8\">When Pilate therefore heard this saying, he was the more afraid;</VERS>\r\n      <VERS vnumber=\"9\">and he entered into the Praetorium again, and saith unto Jesus, Whence art thou? But Jesus gave him no answer.</VERS>\r\n      <VERS vnumber=\"10\">Pilate therefore saith unto him, Speakest thou not unto me? Knowest thou not that I have power to release thee, and have power to crucify thee?</VERS>\r\n      <VERS vnumber=\"11\">Jesus answered him, Thou wouldest have no power against me, except it were given thee from above: therefore he that delivered me unto thee hath greater sin.</VERS>\r\n      <VERS vnumber=\"12\">Upon this Pilate sought to release him: but the Jews cried out, saying, If thou release this man, thou art not Caesar`s friend: every one that maketh himself a king speaketh against Caesar.</VERS>\r\n      <VERS vnumber=\"13\">When Pilate therefore heard these words, he brought Jesus out, and sat down on the judgment-seat at a place called The Pavement, but in Hebrew, Gabbatha.</VERS>\r\n      <VERS vnumber=\"14\">Now it was the Preparation of the passover: it was about the sixth hour. And he saith unto the Jews, Behold, your King!</VERS>\r\n      <VERS vnumber=\"15\">They therefore 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.</VERS>\r\n      <VERS vnumber=\"16\">Then therefore he delivered him unto them to be crucified.</VERS>\r\n      <VERS vnumber=\"17\">They took Jesus therefore: and he went out, bearing the cross for himself, unto the place called The place of a skull, which is called in Hebrew, Golgotha:</VERS>\r\n      <VERS vnumber=\"18\">where they crucified him, and with him two others, on either side one, and Jesus in the midst.</VERS>\r\n      <VERS vnumber=\"19\">And Pilate wrote a title also, and put it on the cross. And there was written, JESUS OF NAZARETH, THE KING OF THE JEWS.</VERS>\r\n      <VERS vnumber=\"20\">This title therefore read many of the Jews, for the place where Jesus was crucified was nigh to the city; and it was written in Hebrew, [and] in Latin, [and] in Greek.</VERS>\r\n      <VERS vnumber=\"21\">The chief priests of the Jews therefore said to Pilate, Write not, The King of the Jews; but that he said, I am King of the Jews.</VERS>\r\n      <VERS vnumber=\"22\">Pilate answered, What I have written I have written.</VERS>\r\n      <VERS vnumber=\"23\">The soldiers therefore, when they had crucified Jesus, took his garments and made four parts, to every soldier a part; and also the coat: now the coat was without seam, woven from the top throughout.</VERS>\r\n      <VERS vnumber=\"24\">They said therefore one to another, 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 garments among them, And upon my vesture did they cast lots.</VERS>\r\n      <VERS vnumber=\"25\">These things therefore the soldiers did. But there were standing by the cross of Jesus his mother, and his mother`s sister, Mary the [wife] of Clopas, and Mary Magdalene.</VERS>\r\n      <VERS vnumber=\"26\">When Jesus therefore saw his mother, and the disciple standing by whom he loved, he saith unto his mother, Woman, behold thy son!</VERS>\r\n      <VERS vnumber=\"27\">Then saith he to the disciple, Behold, thy mother! And from that hour the disciple took her unto his own [home].</VERS>\r\n      <VERS vnumber=\"28\">After this Jesus, knowing that all things are now finished, that the scripture might be accomplished, saith, I thirst.</VERS>\r\n      <VERS vnumber=\"29\">There was set there a vessel full of vinegar: so they put a sponge full of the vinegar upon hyssop, and brought it to his mouth.</VERS>\r\n      <VERS vnumber=\"30\">When Jesus therefore had received the vinegar, he said, It is finished: and he bowed his head, and gave up his spirit.</VERS>\r\n      <VERS vnumber=\"31\">The Jews therefore, because it was the Preparation, that the bodies should not remain on the cross upon the sabbath (for the day of that sabbath was a high [day]), asked of Pilate that their legs might be broken, and [that] they might be taken away.</VERS>\r\n      <VERS vnumber=\"32\">The soldiers therefore came, and brake the legs of the first, and of the other that was crucified with him:</VERS>\r\n      <VERS vnumber=\"33\">but when they came to Jesus, and saw that he was dead already, they brake not his legs:</VERS>\r\n      <VERS vnumber=\"34\">howbeit one of the soldiers with a spear pierced his side, and straightway there came out blood and water.</VERS>\r\n      <VERS vnumber=\"35\">And he that hath seen hath borne witness, and his witness is true: and he knoweth that he saith true, that ye also may believe.</VERS>\r\n      <VERS vnumber=\"36\">For these things came to pass, that the scripture might be fulfilled, A bone of him shall not be broken.</VERS>\r\n      <VERS vnumber=\"37\">And again another scripture saith, They shall look on him whom they pierced.</VERS>\r\n      <VERS vnumber=\"38\">And after these things Joseph of Arimathaea, being a disciple of Jesus, but secretly for fear of the Jews, asked of Pilate that he might take away the body of Jesus: and Pilate gave [him] leave. He came therefore, and took away his body.</VERS>\r\n      <VERS vnumber=\"39\">And there came also Nicodemus, he who at the first came to him by night, bringing a mixture of myrrh and aloes, about a hundred pounds.</VERS>\r\n      <VERS vnumber=\"40\">So they took the body of Jesus, and bound it in linen cloths with the spices, as the custom of the Jews is to bury.</VERS>\r\n      <VERS vnumber=\"41\">Now in the place where he was crucified there was a garden; and in the garden a new tomb wherein was never man yet laid.</VERS>\r\n      <VERS vnumber=\"42\">There then because of the Jews` Preparation (for the tomb was nigh at hand) they laid Jesus.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"20\">\r\n      <VERS vnumber=\"1\">Now on the first [day] of the week cometh Mary Magdalene early, while it was yet dark, unto the tomb, and seeth the stone taken away from the tomb.</VERS>\r\n      <VERS vnumber=\"2\">She runneth therefore, 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 tomb, and we know not where they have laid him.</VERS>\r\n      <VERS vnumber=\"3\">Peter therefore went forth, and the other disciple, and they went toward the tomb.</VERS>\r\n      <VERS vnumber=\"4\">And they ran both together: and the other disciple outran Peter, and came first to the tomb;</VERS>\r\n      <VERS vnumber=\"5\">and stooping and looking in, he seeth the linen cloths lying; yet entered he not in.</VERS>\r\n      <VERS vnumber=\"6\">Simon Peter therefore also cometh, following him, and entered into the tomb; and he beholdeth the linen cloths lying,</VERS>\r\n      <VERS vnumber=\"7\">and the napkin, that was upon his head, not lying with the linen cloths, but rolled up in a place by itself.</VERS>\r\n      <VERS vnumber=\"8\">Then entered in therefore the other disciple also, who came first to the tomb, and he saw, and believed.</VERS>\r\n      <VERS vnumber=\"9\">For as yet they knew not the scripture, that he must rise from the dead.</VERS>\r\n      <VERS vnumber=\"10\">So the disciples went away again unto their own home.</VERS>\r\n      <VERS vnumber=\"11\">But Mary was standing without at the tomb weeping: so, as she wept, she stooped and looked into the tomb;</VERS>\r\n      <VERS vnumber=\"12\">and she beholdeth two angels in white sitting, one at the head, and one at the feet, where the body of Jesus had lain.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">When she had thus said, she turned herself back, and beholdeth Jesus standing, and knew not that it was Jesus.</VERS>\r\n      <VERS vnumber=\"15\">Jesus saith unto her, Woman, why weepest thou? whom seekest thou? She, supposing him to be the gardener, saith unto him, Sir, if thou hast borne him hence, tell me where thou hast laid him, and I will take him away.</VERS>\r\n      <VERS vnumber=\"16\">Jesus saith unto her, Mary. She turneth herself, and saith unto him in Hebrew, Rabboni; which is to say, Teacher.</VERS>\r\n      <VERS vnumber=\"17\">Jesus saith to her, Touch me not; for I am not yet ascended unto the Father: but go unto my brethren, and say to them, I ascend unto my Father and your Father, and my God and your God.</VERS>\r\n      <VERS vnumber=\"18\">Mary Magdalene cometh and telleth the disciples, I have seen the Lord; and [that] he had said these things unto her.</VERS>\r\n      <VERS vnumber=\"19\">When therefore it was evening, on that day, the first [day] of the week, and when the doors were shut where the disciples were, for fear of the Jews, Jesus came and stood in the midst, and saith unto them, Peace [be] unto you.</VERS>\r\n      <VERS vnumber=\"20\">And when he had said this, he showed unto them his hands and his side. The disciples therefore were glad, when they saw the Lord.</VERS>\r\n      <VERS vnumber=\"21\">Jesus therefore said to them again, Peace [be] unto you: as the Father hath sent me, even so send I you.</VERS>\r\n      <VERS vnumber=\"22\">And when he had said this, he breathed on them, and saith unto them, Receive ye the Holy Spirit:</VERS>\r\n      <VERS vnumber=\"23\">whose soever sins ye forgive, they are forgiven unto them; whose soever [sins] ye retain, they are retained.</VERS>\r\n      <VERS vnumber=\"24\">But Thomas, one of the twelve, called Didymus, was not with them when Jesus came.</VERS>\r\n      <VERS vnumber=\"25\">The 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 hand into his side, I will not believe.</VERS>\r\n      <VERS vnumber=\"26\">And after eight days again his disciples were within, and Thomas with them. Jesus cometh, the doors being shut, and stood in the midst, and said, Peace [be] unto you.</VERS>\r\n      <VERS vnumber=\"27\">Then saith he to Thomas, Reach hither thy finger, and see my hands; and reach [hither] thy hand, and put it into my side: and be not faithless, but believing.</VERS>\r\n      <VERS vnumber=\"28\">Thomas answered and said unto him, My Lord and my God.</VERS>\r\n      <VERS vnumber=\"29\">Jesus saith unto him, Because thou hast seen me, thou hast believed: blessed [are] they that have not seen, and [yet] have believed.</VERS>\r\n      <VERS vnumber=\"30\">Many other signs therefore did Jesus in the presence of the disciples, which are not written in this book:</VERS>\r\n      <VERS vnumber=\"31\">but these are written, that ye may believe that Jesus is the Christ, the Son of God; and that believing ye may have life in his name.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"21\">\r\n      <VERS vnumber=\"1\">After these things Jesus manifested himself again to the disciples at the sea of Tiberias; and he manifested [himself] on this wise.</VERS>\r\n      <VERS vnumber=\"2\">There was together Simon Peter, and Thomas called Didymus, and Nathanael of Cana in Galilee, and the [sons] of Zebedee, and two other of his disciples.</VERS>\r\n      <VERS vnumber=\"3\">Simon Peter saith unto them, I go a fishing. They say unto him, We also come with thee. They went forth, and entered into the boat; and that night they took nothing.</VERS>\r\n      <VERS vnumber=\"4\">But when day was now breaking, Jesus stood on the beach: yet the disciples knew not that it was Jesus.</VERS>\r\n      <VERS vnumber=\"5\">Jesus therefore saith unto them, Children, have ye aught to eat? They answered him, No.</VERS>\r\n      <VERS vnumber=\"6\">And he said unto them, Cast the net on the right side of the boat, and ye shall find. They cast therefore, and now they were not able to draw it for the multitude of fishes.</VERS>\r\n      <VERS vnumber=\"7\">That disciple therefore whom Jesus loved saith unto Peter, It is the Lord. So when Simon Peter heard that it was the Lord, he girt his coat about him (for he was naked), and cast himself into the sea.</VERS>\r\n      <VERS vnumber=\"8\">But the other disciples came in the little boat (for they were not far from the land, but about two hundred cubits off), dragging the net [full] of fishes.</VERS>\r\n      <VERS vnumber=\"9\">So when they got out upon the land, they see a fire of coals there, and fish laid thereon, and bread.</VERS>\r\n      <VERS vnumber=\"10\">Jesus saith unto them, Bring of the fish which ye have now taken.</VERS>\r\n      <VERS vnumber=\"11\">Simon Peter therefore went up, and drew the net to land, full of great fishes, a hundred and fifty and three: and for all there were so many, the net was not rent.</VERS>\r\n      <VERS vnumber=\"12\">Jesus saith unto them, Come [and] break your fast. And none of the disciples durst inquire of him, Who art thou? knowing that it was the Lord.</VERS>\r\n      <VERS vnumber=\"13\">Jesus cometh, and taketh the bread, and giveth them, and the fish likewise.</VERS>\r\n      <VERS vnumber=\"14\">This is now the third time that Jesus was manifested to the disciples, after that he was risen from the dead.</VERS>\r\n      <VERS vnumber=\"15\">So when they had broken their fast, Jesus saith to Simon Peter, Simon, [son] of John, 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.</VERS>\r\n      <VERS vnumber=\"16\">He saith to him again a second time, Simon, [son] of John, lovest thou me? He saith unto him, Yea, Lord; thou knowest that I love thee. He saith unto him, Tend my sheep.</VERS>\r\n      <VERS vnumber=\"17\">He saith unto him the third time, Simon, [son] of John, 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.</VERS>\r\n      <VERS vnumber=\"18\">Verily, verily, I say unto thee, When thou wast young, thou girdedst 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.</VERS>\r\n      <VERS vnumber=\"19\">Now this he spake, signifying by what manner of death he should glorify God. And when he had spoken this, he saith unto him, Follow me.</VERS>\r\n      <VERS vnumber=\"20\">Peter, turning about, seeth the disciple whom Jesus loved following; who also leaned back on his breast at the supper, and said, Lord, who is he that betrayeth thee?</VERS>\r\n      <VERS vnumber=\"21\">Peter therefore seeing him saith to Jesus, Lord, and what shall this man do?</VERS>\r\n      <VERS vnumber=\"22\">Jesus saith unto him, If I will that he tarry till I come, what [is that] to thee? Follow thou me.</VERS>\r\n      <VERS vnumber=\"23\">This saying therefore went forth among the brethren, that that disciple should not die: yet Jesus said not unto him, that he should not die; but, If I will that he tarry till I come, what [is that] to thee?</VERS>\r\n      <VERS vnumber=\"24\">This is the disciple that beareth witness of these things, and wrote these things: and we know that his witness is true.</VERS>\r\n      <VERS vnumber=\"25\">And 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 would not contain the books that should be written.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"44\" bname=\"Acts\" bsname=\"Acts\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">The former treatise I made, O Theophilus, concerning all that Jesus began both to do and to teach,</VERS>\r\n      <VERS vnumber=\"2\">until the day in which he was received up, after that he had given commandment through the Holy Spirit unto the apostles whom he had chosen:</VERS>\r\n      <VERS vnumber=\"3\">To whom he also showed himself alive after his passion by many proofs, appearing unto them by the space of forty days, and speaking the things concerning the kingdom of God:</VERS>\r\n      <VERS vnumber=\"4\">and, being assembled together with them, he charged them not to depart from Jerusalem, but to wait for the promise of the Father, which, [said he], ye heard from me:</VERS>\r\n      <VERS vnumber=\"5\">For John indeed baptized with water; but ye shall be baptized in the Holy Spirit not many days hence.</VERS>\r\n      <VERS vnumber=\"6\">They therefore, when they were come together, asked him, saying, Lord, dost thou at this time restore the kingdom to Israel?</VERS>\r\n      <VERS vnumber=\"7\">And he said unto them, It is not for you to know times or seasons, which the Father hath set within His own authority.</VERS>\r\n      <VERS vnumber=\"8\">But ye shall receive power, when the Holy Spirit is come upon you: and ye shall be my witnesses both in Jerusalem, and in all Judaea and Samaria, and unto the uttermost part of the earth.</VERS>\r\n      <VERS vnumber=\"9\">And when he had said these things, as they were looking, he was taken up; and a cloud received him out of their sight.</VERS>\r\n      <VERS vnumber=\"10\">And while they were looking stedfastly into heaven as he went, behold, two men stood by them in white apparel;</VERS>\r\n      <VERS vnumber=\"11\">who also said, Ye men of Galilee, why stand ye looking into heaven? this Jesus, who was received up from you into heaven shall so come in like manner as ye beheld him going into heaven.</VERS>\r\n      <VERS vnumber=\"12\">Then returned they unto Jerusalem from the mount called Olivet, which is nigh unto Jerusalem, a Sabbath day`s journey off.</VERS>\r\n      <VERS vnumber=\"13\">And when they were come in, they went up into the upper chamber, where they were abiding; both Peter and John and James and Andrew, Philip and Thomas, Bartholomew and Matthew, James [the son] of Alphaeus, and Simon the Zealot, and Judas [the son] of James.</VERS>\r\n      <VERS vnumber=\"14\">These all with one accord continued stedfastly in prayer, with the women, and Mary the mother of Jesus, and with his brethren.</VERS>\r\n      <VERS vnumber=\"15\">And in these days Peter stood up in the midst of the brethren, and said (and there was a multitude of persons [gathered] together, about a hundred and twenty),</VERS>\r\n      <VERS vnumber=\"16\">Brethren, it was needful that the Scripture should be fulfilled, which the Holy Spirit spake before by the mouth of David concerning Judas, who was guide to them that took Jesus.</VERS>\r\n      <VERS vnumber=\"17\">For he was numbered among us, and received his portion in this ministry.</VERS>\r\n      <VERS vnumber=\"18\">(Now this man obtained a field with the reward of his iniquity; and falling headlong, he burst asunder in the midst, and all his bowels gushed out.</VERS>\r\n      <VERS vnumber=\"19\">And it became known to all the dwellers at Jerusalem; insomuch that in their language that field was called Akeldama, that is, The field of blood.)</VERS>\r\n      <VERS vnumber=\"20\">For it is written in the book of Psalms, Let his habitation be made desolate, And let no man dwell therein:     and, His office let another take.</VERS>\r\n      <VERS vnumber=\"21\">Of the men therefore that have companied with us all the time that the Lord Jesus went in and went out among us,</VERS>\r\n      <VERS vnumber=\"22\">beginning from the baptism of John, unto the day that he was received up from us, of these must one become a witness with us of his resurrection.</VERS>\r\n      <VERS vnumber=\"23\">And they put forward two, Joseph called Barsabbas, who was surnamed Justus, and Matthias.</VERS>\r\n      <VERS vnumber=\"24\">And they prayed, and said, Thou, Lord, who knowest the hearts of all men, show of these two the one whom thou hast chosen,</VERS>\r\n      <VERS vnumber=\"25\">to take the place in this ministry and apostleship from which Judas fell away, that he might go to his own place.</VERS>\r\n      <VERS vnumber=\"26\">And they gave lots for them; and the lot fell upon Matthias; and he was numbered with the eleven apostles.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">And when the day of Pentecost was now come, they were all together in one place.</VERS>\r\n      <VERS vnumber=\"2\">And suddenly there came from heaven a sound as of the rushing of a mighty wind, and it filled all the house where they were sitting.</VERS>\r\n      <VERS vnumber=\"3\">And there appeared unto them tongues parting asunder, like as of fire; and it sat upon each one of them.</VERS>\r\n      <VERS vnumber=\"4\">And they were all filled with the Holy Spirit, and began to speak with other tongues, as the Spirit gave them utterance.</VERS>\r\n      <VERS vnumber=\"5\">Now there were dwelling at Jerusalem Jews, devout men, from every nation under heaven.</VERS>\r\n      <VERS vnumber=\"6\">And when this sound was heard, the multitude came together, and were confounded, because that every man heard them speaking in his own language.</VERS>\r\n      <VERS vnumber=\"7\">And they were all amazed and marvelled, saying, Behold, are not all these that speak Galilaeans?</VERS>\r\n      <VERS vnumber=\"8\">And how hear we, every man in our own language wherein we were born?</VERS>\r\n      <VERS vnumber=\"9\">Parthians and Medes and Elamites, and the dwellers in Mesopotamia, in Judaea and Cappadocia, in Pontus and Asia,</VERS>\r\n      <VERS vnumber=\"10\">in Phrygia and Pamphylia, in Egypt and the parts of Libya about Cyrene, and sojourners from Rome, both Jews and proselytes,</VERS>\r\n      <VERS vnumber=\"11\">Cretans and Arabians, we hear them speaking in our tongues the mighty works of God.</VERS>\r\n      <VERS vnumber=\"12\">And they were all amazed, and were perplexed, saying one to another, What meaneth this?</VERS>\r\n      <VERS vnumber=\"13\">But others mocking said, They are filled with new wine.</VERS>\r\n      <VERS vnumber=\"14\">But Peter, standing up with the eleven, lifted up his voice, and spake forth unto them, [saying], Ye men of Judaea, and all ye that dwell at Jerusalem, be this known unto you, and give ear unto my words.</VERS>\r\n      <VERS vnumber=\"15\">For these are not drunken, as ye suppose; seeing it is [but] the third hour of the day.</VERS>\r\n      <VERS vnumber=\"16\">but this is that which hath been spoken through the prophet Joel:</VERS>\r\n      <VERS vnumber=\"17\">And it shall be in the last days, saith God, I will pour forth 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:</VERS>\r\n      <VERS vnumber=\"18\">Yea and on my servants and on my handmaidens in those days Will I pour forth of my Spirit; and they shall prophesy.</VERS>\r\n      <VERS vnumber=\"19\">And I will show wonders in the heaven above, And signs on the earth beneath; Blood, and fire, and vapor of smoke:</VERS>\r\n      <VERS vnumber=\"20\">The sun shall be turned into darkness, And the moon into blood, Before the day of the Lord come, That great and notable [day].</VERS>\r\n      <VERS vnumber=\"21\">And it shall be, that whosoever shall call on the name of       the Lord shall be saved.</VERS>\r\n      <VERS vnumber=\"22\">Ye men of Israel, hear these words: Jesus of Nazareth, a man approved of God unto you by mighty works and wonders and signs which God did by him in the midst of you, even as ye yourselves know;</VERS>\r\n      <VERS vnumber=\"23\">him, being delivered up by the determinate counsel and foreknowledge of God, ye by the hand of lawless men did crucify and slay:</VERS>\r\n      <VERS vnumber=\"24\">whom God raised up, having loosed the pangs of death: because it was not possible that he should be holden of it.</VERS>\r\n      <VERS vnumber=\"25\">For David saith concerning him, I beheld the Lord always before my face; For he is on my right hand, that I should not be moved:</VERS>\r\n      <VERS vnumber=\"26\">Therefore my heart was glad, and my tongue rejoiced; Moreover my flesh also shall dwell in hope:</VERS>\r\n      <VERS vnumber=\"27\">Because thou wilt not leave my soul unto Hades, Neither wilt thou give thy Holy One to see corruption.</VERS>\r\n      <VERS vnumber=\"28\">Thou madest known unto me the ways of life; Thou shalt make me full of gladness with thy countenance.</VERS>\r\n      <VERS vnumber=\"29\">Brethren, I may say unto you freely of the patriarch David, that he both died and was buried, and his tomb is with us unto this day.</VERS>\r\n      <VERS vnumber=\"30\">Being therefore a prophet, and knowing that God had sworn with an oath to him, that of the fruit of his loins he would set [one] upon his throne;</VERS>\r\n      <VERS vnumber=\"31\">he foreseeing [this] spake of the resurrection of the Christ, that neither was he left unto Hades, nor did his flesh see corruption.</VERS>\r\n      <VERS vnumber=\"32\">This Jesus did God raise up, whereof we all are witnesses.</VERS>\r\n      <VERS vnumber=\"33\">Being therefore by the right hand of God exalted, and having received of the Father the promise of the Holy Spirit, he hath poured forth this, which ye see and hear.</VERS>\r\n      <VERS vnumber=\"34\">For David ascended not into the heavens: but he saith himself, The Lord said unto my Lord, Sit thou on my right hand,</VERS>\r\n      <VERS vnumber=\"35\">Till I make thine enemies the footstool of thy feet.</VERS>\r\n      <VERS vnumber=\"36\">Let all the house of Israel therefore know assuredly, that God hath made him both Lord and Christ, this Jesus whom ye crucified.</VERS>\r\n      <VERS vnumber=\"37\">Now when they heard [this,] they were pricked in their heart, and said unto Peter and the rest of the apostles, Brethren, what shall we do?</VERS>\r\n      <VERS vnumber=\"38\">And Peter [said] unto them, Repent ye, and be baptized every one of you in the name of Jesus Christ unto the remission of your sins; and ye shall receive the gift of the Holy Spirit.</VERS>\r\n      <VERS vnumber=\"39\">For to you is the promise, and to your children, and to all that are afar off, [even] as many as the Lord our God shall call unto him.</VERS>\r\n      <VERS vnumber=\"40\">And with many other words he testified, and exhorted them, saying, Save yourselves from this crooked generation.</VERS>\r\n      <VERS vnumber=\"41\">They then that received his word were baptized: and there were added [unto them] in that day about three thousand souls.</VERS>\r\n      <VERS vnumber=\"42\">And they continued stedfastly in the apostles` teaching and fellowship, in the breaking of bread and the prayers.</VERS>\r\n      <VERS vnumber=\"43\">And fear came upon every soul: and many wonders and signs were done through the apostles.</VERS>\r\n      <VERS vnumber=\"44\">And all that believed were together, and had all things common;</VERS>\r\n      <VERS vnumber=\"45\">and they sold their possessions and goods, and parted them to all, according as any man had need.</VERS>\r\n      <VERS vnumber=\"46\">And day by day, continuing stedfastly with one accord in the temple, and breaking bread at home, they took their food with gladness and singleness of heart,</VERS>\r\n      <VERS vnumber=\"47\">praising God, and having favor with all the people. And the Lord added to them day by day those that were saved.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Now Peter and John were going up into the temple at the hour of prayer, [being] the ninth [hour].</VERS>\r\n      <VERS vnumber=\"2\">And a certain man that was lame from his mother`s womb was carried, whom they laid daily at the door of the temple which is called Beautiful, to ask alms of them that entered into the temple;</VERS>\r\n      <VERS vnumber=\"3\">who seeing Peter and John about to go into the temple, asked to receive an alms.</VERS>\r\n      <VERS vnumber=\"4\">And Peter, fastening his eyes upon him, with John, said, Look on us.</VERS>\r\n      <VERS vnumber=\"5\">And he gave heed unto them, expecting to receive something from them.</VERS>\r\n      <VERS vnumber=\"6\">But Peter said, Silver and gold have I none; but what I have, that give I thee. In the name of Jesus Christ of Nazareth, walk.</VERS>\r\n      <VERS vnumber=\"7\">And he took him by the right hand, and raised him up: and immediately his feet and his ankle-bones received strength.</VERS>\r\n      <VERS vnumber=\"8\">And leaping up, he stood, and began to walk; and he entered with them into the temple, walking, and leaping, and praising God.</VERS>\r\n      <VERS vnumber=\"9\">And all the people saw him walking and praising God:</VERS>\r\n      <VERS vnumber=\"10\">and they took knowledge of him, that it was he that 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.</VERS>\r\n      <VERS vnumber=\"11\">And as he held Peter and John, all the people ran together unto them in the porch that is called Solomon`s, greatly wondering.</VERS>\r\n      <VERS vnumber=\"12\">And when Peter saw it, he answered unto the people, Ye men of Israel, why marvel ye at this man? or why fasten ye your eyes on us, as though by our own power or godliness we had made him to walk?</VERS>\r\n      <VERS vnumber=\"13\">The God of Abraham, and of Isaac, and of Jacob, the God of our fathers, hath glorified his Servant Jesus; whom ye delivered up, and denied before the face of Pilate, when he had determined to release him.</VERS>\r\n      <VERS vnumber=\"14\">But ye denied the Holy and Righteous One, and asked for a murderer to be granted unto you,</VERS>\r\n      <VERS vnumber=\"15\">and killed the Prince of life; whom God raised from the dead; whereof we are witnesses.</VERS>\r\n      <VERS vnumber=\"16\">And by faith in his name hath his name made this man strong, whom ye behold and know: yea, the faith which is through him hath given him this perfect soundness in the presence of you all.</VERS>\r\n      <VERS vnumber=\"17\">And now, brethren, I know that in ignorance ye did it, as did also your rulers.</VERS>\r\n      <VERS vnumber=\"18\">But the things which God foreshowed by the mouth of all the prophets, that his Christ should suffer, he thus fulfilled.</VERS>\r\n      <VERS vnumber=\"19\">Repent ye therefore, and turn again, that your sins may be blotted out, that so there may come seasons of refreshing from the presence of the Lord;</VERS>\r\n      <VERS vnumber=\"20\">and that he may send the Christ who hath been appointed for you, [even] Jesus:</VERS>\r\n      <VERS vnumber=\"21\">whom the heaven must receive until the times of restoration of all things, whereof God spake by the mouth of His holy prophets that have been from of old.</VERS>\r\n      <VERS vnumber=\"22\">Moses indeed said, A prophet shall the Lord God raise up unto you from among your brethren, like unto me. To him shall ye hearken in all things whatsoever he shall speak unto you.</VERS>\r\n      <VERS vnumber=\"23\">And it shall be, that every soul that shall not hearken to that prophet, shall be utterly destroyed from among the people.</VERS>\r\n      <VERS vnumber=\"24\">Yea and all the prophets from Samuel and them that followed after, as many as have spoken, they also told of these days.</VERS>\r\n      <VERS vnumber=\"25\">Ye are the sons of the prophets, and of the covenant which God made with your fathers, saying unto Abraham, And in thy seed shall all the families of the earth be blessed.</VERS>\r\n      <VERS vnumber=\"26\">Unto you first God, having raised up his Servant, sent him to bless you, in turning away every one of you from your iniquities.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">And as they spake unto the people, the priests and the captain of the temple and the Sadducees came upon them,</VERS>\r\n      <VERS vnumber=\"2\">being sore troubled because they taught the people, and proclaimed in Jesus the resurrection from the dead.</VERS>\r\n      <VERS vnumber=\"3\">And they laid hands on them, and put them in ward unto the morrow: for it was now eventide.</VERS>\r\n      <VERS vnumber=\"4\">But many of them that heard the word believed; and the number of the men came to be about five thousand.</VERS>\r\n      <VERS vnumber=\"5\">And it came to pass on the morrow, that their rulers and elders and scribes were gathered together in Jerusalem;</VERS>\r\n      <VERS vnumber=\"6\">and Annas the high priest [was there], and Caiaphas, and John, and Alexander, and as many as were of the kindred of the high priest.</VERS>\r\n      <VERS vnumber=\"7\">And when they had set them in the midst, they inquired, By what power, or in what name, have ye done this?</VERS>\r\n      <VERS vnumber=\"8\">Then Peter, filled with the Holy Spirit, said unto them, Ye rulers of the people, and elders,</VERS>\r\n      <VERS vnumber=\"9\">if we this day are examined concerning a good deed done to an impotent man, by what means this man is made whole;</VERS>\r\n      <VERS vnumber=\"10\">be it known unto you all, and to all the people of Israel, that in the name of Jesus Christ of Nazareth, whom ye crucified, whom God raised from the dead, [even] in him doth this man stand here before you whole.</VERS>\r\n      <VERS vnumber=\"11\">He is the stone which was set at nought of you the builders, which was made the head of the corner.</VERS>\r\n      <VERS vnumber=\"12\">And in none other is there salvation: for neither is there any other name under heaven, that is given among men, wherein we must be saved.</VERS>\r\n      <VERS vnumber=\"13\">Now when they beheld the boldness of Peter and John, and had perceived that they were unlearned and ignorant men, they marvelled; and they took knowledge of them, that they had been with Jesus.</VERS>\r\n      <VERS vnumber=\"14\">And seeing the man that was healed standing with them, they could say nothing against it.</VERS>\r\n      <VERS vnumber=\"15\">But when they had commanded them to go aside out of the council, they conferred among themselves,</VERS>\r\n      <VERS vnumber=\"16\">saying, What shall we do to these men? for that indeed a notable miracle hath been wrought through them, is manifest to all that dwell in Jerusalem; and we cannot deny it.</VERS>\r\n      <VERS vnumber=\"17\">But that it spread no further among the people, let us threaten them, that they speak henceforth to no man in this name.</VERS>\r\n      <VERS vnumber=\"18\">And they called them, and charged them not to speak at all nor teach in the name of Jesus.</VERS>\r\n      <VERS vnumber=\"19\">But Peter and John answered and said unto them, Whether it is right in the sight of God to hearken unto you rather than unto God, judge ye:</VERS>\r\n      <VERS vnumber=\"20\">for we cannot but speak the things which we saw and heard.</VERS>\r\n      <VERS vnumber=\"21\">And they, when they had further threatened them, let them go, finding nothing how they might punish them, because of the people; for all men glorified God for that which was done.</VERS>\r\n      <VERS vnumber=\"22\">For the man was more than forty years old, on whom this miracle of healing was wrought.</VERS>\r\n      <VERS vnumber=\"23\">And being let go, they came to their own company, and reported all that the chief priests and the elders had said unto them.</VERS>\r\n      <VERS vnumber=\"24\">And they, when they heard it, lifted up their voice to God with one accord, and said, O Lord, thou that didst make the heaven and the earth and the sea, and all that in them is:</VERS>\r\n      <VERS vnumber=\"25\">who by the Holy Spirit, [by] the mouth of our father David thy servant, didst say, Why did the Gentiles rage, And the peoples imagine vain things?</VERS>\r\n      <VERS vnumber=\"26\">The kings of the earth set themselves in array, And the rulers were gathered together, Against the Lord, and against his Anointed:</VERS>\r\n      <VERS vnumber=\"27\">for of a truth in this city against thy holy Servant Jesus, whom thou didst anoint, both Herod and Pontius Pilate, with the Gentiles and the peoples of Israel, were gathered together,</VERS>\r\n      <VERS vnumber=\"28\">to do whatsoever thy hand and thy council foreordained to come to pass.</VERS>\r\n      <VERS vnumber=\"29\">And now, Lord, look upon their threatenings: and grant unto thy servants to speak thy word with all boldness,</VERS>\r\n      <VERS vnumber=\"30\">while thy stretchest forth thy hand to heal; and that signs and wonders may be done through the name of thy holy Servant Jesus.</VERS>\r\n      <VERS vnumber=\"31\">And when they had prayed, the place was shaken wherein they were gathered together; and they were all filled with the Holy Spirit, and they spake the word of God with boldness.</VERS>\r\n      <VERS vnumber=\"32\">And the multitude of them that believed were of one heart and soul: and not one [of them] said that aught of the things which he possessed was his own; but they had all things common.</VERS>\r\n      <VERS vnumber=\"33\">And with great power gave the apostles their witness of the resurrection of the Lord Jesus: and great grace was upon them all.</VERS>\r\n      <VERS vnumber=\"34\">For neither was there among them any that lacked: for as many as were possessors of lands or houses sold them, and brought the prices of the things that were sold,</VERS>\r\n      <VERS vnumber=\"35\">and laid them at the apostles` feet: and distribution was made unto each, according as any one had need.</VERS>\r\n      <VERS vnumber=\"36\">And Joseph, who by the apostles was surnamed Barnabas (which is, being interpreted, Son of exhortation), a Levite, a man of Cyprus by race,</VERS>\r\n      <VERS vnumber=\"37\">having a field, sold it, and brought the money and laid it at the apostles` feet.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">But a certain man named Ananias, with Sapphira his wife, sold a possession,</VERS>\r\n      <VERS vnumber=\"2\">and 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.</VERS>\r\n      <VERS vnumber=\"3\">But Peter said, Ananias, why hath Satan filled thy heart to lie to the Holy Spirit, and to keep back [part] of the price of the land?</VERS>\r\n      <VERS vnumber=\"4\">While it remained, did it not remain thine own? and after it was sold, was it not in thy power? How is it that thou hast conceived this thing in thy heart? thou has not lied unto men, but unto God.</VERS>\r\n      <VERS vnumber=\"5\">And Ananias hearing these words fell down and gave up the ghost: and great fear came upon all that heard it.</VERS>\r\n      <VERS vnumber=\"6\">And the young men arose and wrapped him round, and they carried him out and buried him.</VERS>\r\n      <VERS vnumber=\"7\">And it was about the space of three hours after, when his wife, not knowing what was done, came in.</VERS>\r\n      <VERS vnumber=\"8\">And Peter answered unto her, Tell me whether ye sold the land for so much. And she said, Yea, for so much.</VERS>\r\n      <VERS vnumber=\"9\">But Peter [said] unto her, How is it that ye have agreed together to try the Spirit of the Lord? behold, the feet of them that have buried thy husband are at the door, and they shall carry thee out.</VERS>\r\n      <VERS vnumber=\"10\">And she fell down immediately at his feet, and gave up the ghost: and the young men came in and found her dead, and they carried her out and buried her by her husband.</VERS>\r\n      <VERS vnumber=\"11\">And great fear came upon the whole church, and upon all that heard these things.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">But of the rest durst no man join himself to them: howbeit the people magnified them;</VERS>\r\n      <VERS vnumber=\"14\">and believers were the more added to the Lord, multitudes both of them and women;</VERS>\r\n      <VERS vnumber=\"15\">insomuch that they even carried out the sick into the streets, and laid them on beds and couches, that, as Peter came by, at the least his shadow might overshadow some one of them.</VERS>\r\n      <VERS vnumber=\"16\">And there also came together the multitudes from the cities round about Jerusalem, bring sick folk, and them that were vexed with unclean spirits: and they were healed every one.</VERS>\r\n      <VERS vnumber=\"17\">But the high priest rose up, and all they that were with him (which is the sect of the Sadducees), and they were filled with jealousy,</VERS>\r\n      <VERS vnumber=\"18\">and laid hands on the apostles, and put them in public ward.</VERS>\r\n      <VERS vnumber=\"19\">But an angel of the Lord by night opened the prison doors, and brought them out, and said,</VERS>\r\n      <VERS vnumber=\"20\">Go ye, and stand and speak in the temple to the people all the words of this Life.</VERS>\r\n      <VERS vnumber=\"21\">And when they heard [this], they entered into the temple about daybreak, 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-house to have them brought.</VERS>\r\n      <VERS vnumber=\"22\">But the officers that came found them not in the prison; and they returned, and told,</VERS>\r\n      <VERS vnumber=\"23\">saying, The prison-house we found shut in all safety, and the keepers standing at the doors: but when we had opened, we found no man within.</VERS>\r\n      <VERS vnumber=\"24\">Now when the captain of the temple and the chief priests heard these words, they were much perplexed concerning them whereunto this would grow.</VERS>\r\n      <VERS vnumber=\"25\">And there came one and told them, Behold, the men whom ye put in the prison are in the temple standing and teaching the people.</VERS>\r\n      <VERS vnumber=\"26\">Then went the captain with the officers, and brought them, [but] without violence; for they feared the people, lest they should be stoned.</VERS>\r\n      <VERS vnumber=\"27\">And when they had brought them, they set them before the council. And the high priest asked them,</VERS>\r\n      <VERS vnumber=\"28\">saying, We strictly charged you not to teach in this name: and behold, ye have filled Jerusalem with your teaching, and intend to bring this man`s blood upon us.</VERS>\r\n      <VERS vnumber=\"29\">But Peter and the apostles answered and said, We must obey God rather than men.</VERS>\r\n      <VERS vnumber=\"30\">The God of our fathers raised up Jesus, whom ye slew, hanging him on a tree.</VERS>\r\n      <VERS vnumber=\"31\">Him did God exalt with his right hand [to be] a Prince and a Saviour, to give repentance to Israel, and remission of sins.</VERS>\r\n      <VERS vnumber=\"32\">And we are witnesses of these things; and [so is] the Holy Spirit, whom God hath given to them that obey him.</VERS>\r\n      <VERS vnumber=\"33\">But they, when they heard this, were cut to the heart, and minded to slay them.</VERS>\r\n      <VERS vnumber=\"34\">But there stood up one in the council, a Pharisee, named Gamaliel, a doctor of the law, had in honor of all the people, and commanded to put the men forth a little while.</VERS>\r\n      <VERS vnumber=\"35\">And he said unto them, Ye men of Israel, take heed to yourselves as touching these men, what ye are about to do.</VERS>\r\n      <VERS vnumber=\"36\">For before these days rose up Theudas, giving himself out 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 dispersed, and came to nought.</VERS>\r\n      <VERS vnumber=\"37\">After this man rose up Judas of Galilee in the days of the enrolment, and drew away [some of the] people after him: he also perished; and all, as many as obeyed him, were scattered abroad.</VERS>\r\n      <VERS vnumber=\"38\">And 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 be overthrown:</VERS>\r\n      <VERS vnumber=\"39\">but if it is of God, ye will not be able to overthrow them; lest haply ye be found even to be fighting against God.</VERS>\r\n      <VERS vnumber=\"40\">And to him they agreed: and when they had called the apostles unto them, they beat them and charged them not to speak in the name of Jesus, and let them go.</VERS>\r\n      <VERS vnumber=\"41\">They therefore departed from the presence of the council, rejoicing that they were counted worthy to suffer dishonor for the Name.</VERS>\r\n      <VERS vnumber=\"42\">And every day, in the temple and at home, they ceased not to teach and to preach Jesus [as] the Christ.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">Now in these days, when the number of the disciples was multiplying, there arose a murmuring of the Grecian Jews against the Hebrews, because their widows were neglected in the daily ministration.</VERS>\r\n      <VERS vnumber=\"2\">And the twelve called the multitude of the disciples unto them, and said, It is not fit that we should forsake the word of God, and serve tables.</VERS>\r\n      <VERS vnumber=\"3\">Look ye out therefore, brethren, from among you seven men of good report, full of the Spirit and of wisdom, whom we may appoint over this business.</VERS>\r\n      <VERS vnumber=\"4\">But we will continue stedfastly in prayer, and in the ministry of the word.</VERS>\r\n      <VERS vnumber=\"5\">And the saying pleased the whole multitude: and they chose Stephen, a man full of faith and of the Holy Spirit, and Philip, and Prochorus, and Nicanor, and Timon, and Parmenas, and Nicolaus a proselyte of Antioch;</VERS>\r\n      <VERS vnumber=\"6\">whom they set before the apostles: and when they had prayed, they laid their hands upon them.</VERS>\r\n      <VERS vnumber=\"7\">And the word of God increased; and the number of the disciples multiplied in Jerusalem exceedingly; and a great company of the priests were obedient to the faith.</VERS>\r\n      <VERS vnumber=\"8\">And Stephen, full of grace and power, wrought great wonders and signs among the people.</VERS>\r\n      <VERS vnumber=\"9\">But there arose certain of them that were of the synagogue called [the synagogue] of the Libertines, and of the Cyrenians, and of the Alexandrians, and of them of Cilicia and Asia, disputing with Stephen.</VERS>\r\n      <VERS vnumber=\"10\">And they were not able to withstand the wisdom and the Spirit by which he spake.</VERS>\r\n      <VERS vnumber=\"11\">Then they suborned men, who said, We have heard him speak blasphemous words against Moses, and [against] God.</VERS>\r\n      <VERS vnumber=\"12\">And they stirred up the people, and the elders, and the scribes, and came upon him, and seized him, and brought him into the council,</VERS>\r\n      <VERS vnumber=\"13\">and set up false witnesses, who said, This man ceaseth not to speak words against this holy place, and the law:</VERS>\r\n      <VERS vnumber=\"14\">for we have heard him say, that this Jesus of Nazareth shall destroy this place, and shall change the customs which Moses delivered unto us.</VERS>\r\n      <VERS vnumber=\"15\">And all that sat in the council, fastening their eyes on him, saw his face as it had been the face of an angel.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">And the high priest said, Are these things so?</VERS>\r\n      <VERS vnumber=\"2\">And he said, Brethren and fathers, hearken: The God of glory appeared unto our father Abraham, when he was in Mesopotamia, before he dwelt in Haran,</VERS>\r\n      <VERS vnumber=\"3\">and said unto him, Get thee out of thy land, and from thy kindred, and come into the land which I shall show thee.</VERS>\r\n      <VERS vnumber=\"4\">Then came he out of the land of the Chaldaeans, and dwelt in Haran: and from thence, when his father was dead, [God] removed him into this land, wherein ye now dwell:</VERS>\r\n      <VERS vnumber=\"5\">and he gave him none inheritance in it, no, not so much as to set his foot on: and he promised that he would give it to him in possession, and to his seed after him, when [as yet] he had no child.</VERS>\r\n      <VERS vnumber=\"6\">And God spake on this wise, that his seed should sojourn in a strange land, and that they should bring them into bondage, and treat them ill, four hundred years.</VERS>\r\n      <VERS vnumber=\"7\">And the nation to which they shall be in bondage will I judge, said God: and after that shall they come forth, and serve me in this place.</VERS>\r\n      <VERS vnumber=\"8\">And he gave him the covenant of circumcision: and so [Abraham] begat Isaac, and circumcised him the eighth day; and Isaac [begat] Jacob, and Jacob the twelve patriarchs.</VERS>\r\n      <VERS vnumber=\"9\">And the patriarchs, moved with jealousy against Joseph, sold him into Egypt: and God was with him,</VERS>\r\n      <VERS vnumber=\"10\">and delivered him out of all his afflictions, and gave him favor and wisdom before Pharaoh king of Egypt; and he made him governor over Egypt and all his house.</VERS>\r\n      <VERS vnumber=\"11\">Now there came a famine over all Egypt and Canaan, and great affliction: and our fathers found no sustenance.</VERS>\r\n      <VERS vnumber=\"12\">But when Jacob heard that there was grain in Egypt, he sent forth our fathers the first time.</VERS>\r\n      <VERS vnumber=\"13\">And at the second time Joseph was made known to his brethren; and Joseph`s race became manifest unto Pharaoh.</VERS>\r\n      <VERS vnumber=\"14\">And Joseph sent, and called to him Jacob his father, and all his kindred, threescore and fifteen souls.</VERS>\r\n      <VERS vnumber=\"15\">And Jacob went down into Egypt; and he died, himself and our fathers;</VERS>\r\n      <VERS vnumber=\"16\">and they were carried over unto Shechem, and laid in the tomb that Abraham bought for a price in silver of the sons of Hamor in Shechem.</VERS>\r\n      <VERS vnumber=\"17\">But as the time of the promise drew nigh which God vouchsafed unto Abraham, the people grew and multiplied in Egypt,</VERS>\r\n      <VERS vnumber=\"18\">till there arose another king over Egypt, who knew not Joseph.</VERS>\r\n      <VERS vnumber=\"19\">The same dealt craftily with our race, and ill-treated our fathers, that they should cast out their babes to the end they might not live.</VERS>\r\n      <VERS vnumber=\"20\">At which season Moses was born, and was exceeding fair; and he was nourished three months in his father`s house.</VERS>\r\n      <VERS vnumber=\"21\">and when he was cast out, Pharaoh`s daughter took him up, and nourished him for her own son.</VERS>\r\n      <VERS vnumber=\"22\">And Moses was instructed in all the wisdom of the Egyptians; and he was mighty in his words and works.</VERS>\r\n      <VERS vnumber=\"23\">But when he was well-nigh forty years old, it came into his heart to visit his brethren the children of Israel.</VERS>\r\n      <VERS vnumber=\"24\">And seeing one [of them] suffer wrong, he defended him, and avenged him that was oppressed, smiting the Egyptian:</VERS>\r\n      <VERS vnumber=\"25\">and he supposed that his brethren understood that God by his hand was giving them deliverance; but they understood not.</VERS>\r\n      <VERS vnumber=\"26\">And the day following he appeared 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?</VERS>\r\n      <VERS vnumber=\"27\">But he that did his neighbor wrong thrust him away, saying, Who made thee a ruler and a judge over us?</VERS>\r\n      <VERS vnumber=\"28\">Wouldest thou kill me, as thou killedst the Egyptian yesterday?</VERS>\r\n      <VERS vnumber=\"29\">And Moses fled at this saying, and became a sojourner in the land of Midian, where he begat two sons.</VERS>\r\n      <VERS vnumber=\"30\">And when forty years were fulfilled, an angel appeared to him in the wilderness of Mount Sinai, in a flame of fire in a bush.</VERS>\r\n      <VERS vnumber=\"31\">And when Moses saw it, he wondered at the sight: and as he drew near to behold, there came a voice of the Lord,</VERS>\r\n      <VERS vnumber=\"32\">I am the God of thy fathers, the God of Abraham, and of Isaac, and of Jacob. And Moses trembled, and durst not behold.</VERS>\r\n      <VERS vnumber=\"33\">And the Lord said unto him, Loose the shoes from thy feet: for the place whereon thou standest is holy ground.</VERS>\r\n      <VERS vnumber=\"34\">I have surely seen the affliction of my people that is in Egypt, and have heard their groaning, and I am come down to deliver them: and now come, I will send thee into Egypt.</VERS>\r\n      <VERS vnumber=\"35\">This Moses whom they refused, saying, Who made thee a ruler and a judge? him hath God sent [to be] both a ruler and a deliverer with the hand of the angel that appeared to him in the bush.</VERS>\r\n      <VERS vnumber=\"36\">This man led them forth, having wrought wonders and signs in Egypt, and in the Red Sea, and in the wilderness forty years.</VERS>\r\n      <VERS vnumber=\"37\">This is that Moses, who said unto the children of Israel, A prophet shall God raise up unto you from among your brethren, like unto me.</VERS>\r\n      <VERS vnumber=\"38\">This is he that was in the church in the wilderness with the angel that spake to him in the Mount Sinai, and with our fathers: who received living oracles to give unto us:</VERS>\r\n      <VERS vnumber=\"39\">to whom our fathers would not be obedient, but thrust him from them, and turned back in their hearts unto Egypt,</VERS>\r\n      <VERS vnumber=\"40\">saying unto Aaron, Make us gods that shall go before us: for as for this Moses, who led us forth out of the land of Egypt, we know not what is become of him.</VERS>\r\n      <VERS vnumber=\"41\">And they made a calf in those days, and brought a sacrifice unto the idol, and rejoiced in the works of their hands.</VERS>\r\n      <VERS vnumber=\"42\">But God turned, and gave them up to serve the host of heaven; as it is written in the book of the prophets, Did ye offer unto me slain beasts and sacrifices Forty years in the wilderness, O house of Israel?</VERS>\r\n      <VERS vnumber=\"43\">And ye took up the tabernacle of Moloch, And the star of the god Rephan, The figures which ye made to worship them: And I will carry you away beyond Babylon.</VERS>\r\n      <VERS vnumber=\"44\">Our fathers had the tabernacle of the testimony in the wilderness, even as he appointed who spake unto Moses, that he should make it according to the figure that he had seen.</VERS>\r\n      <VERS vnumber=\"45\">Which also our fathers, in their turn, brought in with Joshua when they entered on the possession of the nations, that God thrust out before the face of our fathers, unto the days of David;</VERS>\r\n      <VERS vnumber=\"46\">who found favor in the sight of God, and asked to find a habitation for the God of Jacob.</VERS>\r\n      <VERS vnumber=\"47\">But Solomon built him a house.</VERS>\r\n      <VERS vnumber=\"48\">Howbeit the Most High dwelleth not in [houses] made with hands; as saith the prophet,</VERS>\r\n      <VERS vnumber=\"49\">The heaven is my throne, And the earth the footstool of my feet: What manner of house will ye build me? saith the Lord: Or what is the place of my rest?</VERS>\r\n      <VERS vnumber=\"50\">Did not my hand make all these things?</VERS>\r\n      <VERS vnumber=\"51\">Ye stiffnecked and uncircumcised in heart and ears, ye do always resist the Holy Spirit: as your fathers did, so do ye.</VERS>\r\n      <VERS vnumber=\"52\">Which of the prophets did not your fathers persecute? and they killed them that showed before of the coming of the Righteous One; of whom ye have now become betrayers and murderers;</VERS>\r\n      <VERS vnumber=\"53\">ye who received the law as it was ordained by angels, and kept it not.</VERS>\r\n      <VERS vnumber=\"54\">Now when they heard these things, they were cut to the heart, and they gnashed on him with their teeth.</VERS>\r\n      <VERS vnumber=\"55\">But he, being full of the Holy Spirit, looked up stedfastly into heaven, and saw the glory of God, and Jesus standing on the right hand of God,</VERS>\r\n      <VERS vnumber=\"56\">and said, Behold, I see the heavens opened, and the Son of Man standing on the right hand of God.</VERS>\r\n      <VERS vnumber=\"57\">But they cried out with a loud voice, and stopped their ears, and rushed upon him with one accord;</VERS>\r\n      <VERS vnumber=\"58\">and they cast him out of the city, and stoned him: and the witnesses laid down their garments at the feet of a young man named Saul.</VERS>\r\n      <VERS vnumber=\"59\">And they stoned Stephen, calling upon [the Lord], and saying, Lord Jesus, receive my spirit.</VERS>\r\n      <VERS vnumber=\"60\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">And Saul was consenting unto his death. And there arose on that day a great persecution against the church which was in Jerusalem; and they were all scattered abroad throughout the regions of Judaea and Samaria, except the apostles.</VERS>\r\n      <VERS vnumber=\"2\">And devout men buried Stephen, and made great lamentation over him.</VERS>\r\n      <VERS vnumber=\"3\">But Saul laid waste the church, entering into every house, and dragging men and women committed them to prison.</VERS>\r\n      <VERS vnumber=\"4\">They therefore that were scattered abroad, went about preaching the word.</VERS>\r\n      <VERS vnumber=\"5\">And Philip went down to the city of Samaria, and proclaimed unto them the Christ.</VERS>\r\n      <VERS vnumber=\"6\">And the multitudes gave heed with one accord unto the things that were spoken by Philip, when they heard, and saw the signs which he did.</VERS>\r\n      <VERS vnumber=\"7\">For [from] many of those that had unclean spirits, they came out, crying with a loud voice: and many that were palsied, and that were lame, were healed.</VERS>\r\n      <VERS vnumber=\"8\">And there was much joy in that city.</VERS>\r\n      <VERS vnumber=\"9\">But there was a certain man, Simon by name, who beforetime in the city used sorcery, and amazed the people of Samaria, giving out that himself was some great one:</VERS>\r\n      <VERS vnumber=\"10\">to whom they all gave heed, from the least to the greatest, saying, This man is that power of God which is called Great.</VERS>\r\n      <VERS vnumber=\"11\">And they gave heed to him, because that of long time he had amazed them with his sorceries.</VERS>\r\n      <VERS vnumber=\"12\">But when they believed Philip preaching good tidings concerning the kingdom of God and the name of Jesus Christ, they were baptized, both men and women.</VERS>\r\n      <VERS vnumber=\"13\">And Simon also himself believed: and being baptized, he continued with Philip; and beholding signs and great miracles wrought, he was amazed.</VERS>\r\n      <VERS vnumber=\"14\">Now when the apostles that were at Jerusalem heard that Samaria had received the word of God, they sent unto them Peter and John:</VERS>\r\n      <VERS vnumber=\"15\">who, when they were come down, prayed for them, that they might receive the Holy Spirit:</VERS>\r\n      <VERS vnumber=\"16\">for as yet it was fallen upon none of them: only they had been baptized into the name of the Lord Jesus.</VERS>\r\n      <VERS vnumber=\"17\">Then laid they their hands on them, and they received the Holy Spirit.</VERS>\r\n      <VERS vnumber=\"18\">Now when Simon saw that through the laying on of the apostles` hands the Holy Spirit was given, he offered them money,</VERS>\r\n      <VERS vnumber=\"19\">saying, Give me also this power, that on whomsoever I lay my hands, he may receive the Holy Spirit.</VERS>\r\n      <VERS vnumber=\"20\">But Peter said unto him, Thy silver perish with thee, because thou hast thought to obtain the gift of God with money.</VERS>\r\n      <VERS vnumber=\"21\">Thou hast neither part nor lot in this matter: for thy heart is not right before God.</VERS>\r\n      <VERS vnumber=\"22\">Repent therefore of this thy wickedness, and pray the Lord, if perhaps the thought of thy heart shall be forgiven thee.</VERS>\r\n      <VERS vnumber=\"23\">For I see that thou art in the gall of bitterness and in the bond of iniquity.</VERS>\r\n      <VERS vnumber=\"24\">And Simon answered and said, Pray ye for me to the Lord, that none of the things which ye have spoken come upon me.</VERS>\r\n      <VERS vnumber=\"25\">They therefore, when they had testified and spoken the word of the Lord, returned to Jerusalem, and preached the gospel to many villages of the Samaritans.</VERS>\r\n      <VERS vnumber=\"26\">But an angel of the Lord spake unto Philip, saying, Arise, and go toward the south unto the way that goeth down from Jerusalem unto Gaza: the same is desert.</VERS>\r\n      <VERS vnumber=\"27\">And he arose and went: and behold, a man of Ethiopia, a eunuch of great authority under Candace, queen of the Ethiopians, who was over all her treasure, who had come to Jerusalem to worship;</VERS>\r\n      <VERS vnumber=\"28\">and he was returning and sitting in his chariot, and was reading the prophet Isaiah.</VERS>\r\n      <VERS vnumber=\"29\">And the Spirit said unto Philip, Go near, and join thyself to this chariot.</VERS>\r\n      <VERS vnumber=\"30\">And Philip ran to him, and heard him reading Isaiah the prophet, and said, Understandest thou what thou readest?</VERS>\r\n      <VERS vnumber=\"31\">And he said, How can I, except some one shall guide me? And he besought Philip to come up and sit with him.</VERS>\r\n      <VERS vnumber=\"32\">Now the passage of the Scripture which he was reading was this, He was led as a sheep to the slaughter; And as a lamb before his shearer is dumb, So he openeth not his mouth:</VERS>\r\n      <VERS vnumber=\"33\">In his humiliation his judgment was taken away: His generation who shall declare? For his life is taken from the earth.</VERS>\r\n      <VERS vnumber=\"34\">And the eunuch answered Philip, and said, I pray thee, of whom speaketh the prophet this? of himself, or of some other?</VERS>\r\n      <VERS vnumber=\"35\">And Philip opened his mouth, and beginning from this Scripture, preached unto him Jesus.</VERS>\r\n      <VERS vnumber=\"36\">And as they went on the way, they came unto a certain water; and the eunuch saith, Behold, [here is] water; what doth hinder me to be baptized?</VERS>\r\n      <VERS vnumber=\"37\">[And Philip said, If thou believest with all thy heart, thou mayest. And he answered and said, I believe that Jesus Christ is the Son of God.]</VERS>\r\n      <VERS vnumber=\"38\">And he commanded the chariot to stand still: and they both went down into the water, both Philip and the eunuch, and he baptized him.</VERS>\r\n      <VERS vnumber=\"39\">And when they came up out of the water, the Spirit of the Lord caught away Philip; and the eunuch saw him no more, for he went on his way rejoicing.</VERS>\r\n      <VERS vnumber=\"40\">But Philip was found at Azotus: and passing through he preached the gospel to all the cities, till he came to Caesarea.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">But Saul, yet breathing threatening and slaughter against the disciples of the Lord, went unto the high priest,</VERS>\r\n      <VERS vnumber=\"2\">and asked of him letters to Damascus unto the synagogues, that if he found any that were of the Way, whether men or women, he might bring them bound to Jerusalem.</VERS>\r\n      <VERS vnumber=\"3\">And as he journeyed, it came to pass that he drew nigh unto Damascus: and suddenly there shone round about him a light out of heaven:</VERS>\r\n      <VERS vnumber=\"4\">and he fell upon the earth, and heard a voice saying unto him, Saul, Saul, why persecutest thou me?</VERS>\r\n      <VERS vnumber=\"5\">And he said, Who art thou, Lord? And he [said], I am Jesus whom thou persecutest:</VERS>\r\n      <VERS vnumber=\"6\">but rise, and enter into the city, and it shall be told thee what thou must do.</VERS>\r\n      <VERS vnumber=\"7\">And the men that journeyed with him stood speechless, hearing the voice, but beholding no man.</VERS>\r\n      <VERS vnumber=\"8\">And Saul arose from the earth; and when his eyes were opened, he saw nothing; and they led him by the hand, and brought him into Damascus.</VERS>\r\n      <VERS vnumber=\"9\">And he was three days without sight, and did neither eat nor drink.</VERS>\r\n      <VERS vnumber=\"10\">Now there was a certain disciple at Damascus, named Ananias; and the Lord said unto him in a vision, Ananias. And he said, Behold, I [am here], Lord.</VERS>\r\n      <VERS vnumber=\"11\">And the Lord [said] unto him, Arise, and go to the street which is called Straight, and inquire in the house of Judas for one named Saul, a man of Tarsus: for behold, he prayeth;</VERS>\r\n      <VERS vnumber=\"12\">and he hath seen a man named Ananias coming in, and laying his hands on him, that he might receive his sight.</VERS>\r\n      <VERS vnumber=\"13\">But Ananias answered, Lord, I have heard from many of this man, how much evil he did to thy saints at Jerusalem:</VERS>\r\n      <VERS vnumber=\"14\">and here he hath authority from the chief priests to bind all that call upon thy name.</VERS>\r\n      <VERS vnumber=\"15\">But 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:</VERS>\r\n      <VERS vnumber=\"16\">for I will show him how many things he must suffer for my name`s sake.</VERS>\r\n      <VERS vnumber=\"17\">And Ananias departed, and entered into the house; and laying his hands on him said, Brother Saul, the Lord, [even] Jesus, who appeared unto thee in the way which thou camest, hath sent me, that thou mayest receive thy sight, and be filled with the Holy Spirit.</VERS>\r\n      <VERS vnumber=\"18\">And straightway there fell from his eyes as it were scales, and he received his sight; and he arose and was baptized;</VERS>\r\n      <VERS vnumber=\"19\">and he took food and was strengthened. And he was certain days with the disciples that were at Damascus.</VERS>\r\n      <VERS vnumber=\"20\">And straightway in the synagogues he proclaimed Jesus, that he is the Son of God.</VERS>\r\n      <VERS vnumber=\"21\">And all that heard him were amazed, and said, Is not this he that in Jerusalem made havoc of them that called on this name? and he had come hither for this intent, that he might bring them bound before the chief priests.</VERS>\r\n      <VERS vnumber=\"22\">But Saul increased the more in strength, and confounded the Jews that dwelt at Damascus, proving that this is the Christ.</VERS>\r\n      <VERS vnumber=\"23\">And when many days were fulfilled, the Jews took counsel together to kill him:</VERS>\r\n      <VERS vnumber=\"24\">but their plot became known to Saul. And they watched the gates also day and night that they might kill him:</VERS>\r\n      <VERS vnumber=\"25\">but his disciples took him by night, and let him down through the wall, lowering him in a basket.</VERS>\r\n      <VERS vnumber=\"26\">And when he was come to Jerusalem, he assayed to join himself to the disciples: and they were all afraid of him, not believing that he was a disciple.</VERS>\r\n      <VERS vnumber=\"27\">But 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 at Damascus he had preached boldly in the name of Jesus.</VERS>\r\n      <VERS vnumber=\"28\">And he was with them going in and going out at Jerusalem,</VERS>\r\n      <VERS vnumber=\"29\">preaching boldly in the name of the Lord: and he spake and disputed against the Grecian Jews; but they were seeking to kill him.</VERS>\r\n      <VERS vnumber=\"30\">And when the brethren knew it, they brought him down to Caesarea, and sent him forth to Tarsus.</VERS>\r\n      <VERS vnumber=\"31\">So the church throughout all Judaea and Galilee and Samaria had peace, being edified; and, walking in the fear of the Lord and in the comfort of the Holy Spirit, was multiplied.</VERS>\r\n      <VERS vnumber=\"32\">And it came to pass, as Peter went throughout all parts, he came down also to the saints that dwelt at Lydda.</VERS>\r\n      <VERS vnumber=\"33\">And there he found a certain man named Aeneas, who had kept his bed eight years; for he was palsied.</VERS>\r\n      <VERS vnumber=\"34\">And Peter said unto him, Aeneas, Jesus Christ healeth thee: arise and make thy bed. And straightway he arose.</VERS>\r\n      <VERS vnumber=\"35\">And all that dwelt at Lydda and in Sharon saw him, and they turned to the Lord.</VERS>\r\n      <VERS vnumber=\"36\">Now 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.</VERS>\r\n      <VERS vnumber=\"37\">And it came to pass in those days, that she fell sick, and died: and when they had washed her, they laid her in an upper chamber.</VERS>\r\n      <VERS vnumber=\"38\">And as Lydda was nigh unto Joppa, the disciples, hearing that Peter was there, sent two men unto him, entreating him, Delay not to come on unto us.</VERS>\r\n      <VERS vnumber=\"39\">And Peter arose and went with them. And when he was come, they brought him into the upper chamber: and all the widows stood by him weeping, and showing the coats and garments which Dorcas made, while she was with them.</VERS>\r\n      <VERS vnumber=\"40\">But Peter put them all forth, and kneeled down and prayed; and turning to the body, he said, Tabitha, arise. And she opened her eyes; and when she saw Peter, she sat up.</VERS>\r\n      <VERS vnumber=\"41\">And he gave her his hand, and raised her up; and calling the saints and widows, he presented her alive.</VERS>\r\n      <VERS vnumber=\"42\">And it became known throughout all Joppa: and many believed on the Lord.</VERS>\r\n      <VERS vnumber=\"43\">And it came to pass, that he abode many days in Joppa with one Simon a tanner.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">Now [there was] a certain man in Caesarea, Cornelius by name, a centurion of the band called the Italian [band],</VERS>\r\n      <VERS vnumber=\"2\">a devout man, and one that feared God with all his house, who gave much alms to the people, and prayed to God always.</VERS>\r\n      <VERS vnumber=\"3\">He saw in a vision openly, as it were about the ninth hour of the day, an angel of God coming in unto him, and saying to him, Cornelius.</VERS>\r\n      <VERS vnumber=\"4\">And he, fastening his eyes upon him, and being affrighted, said, What is it, Lord? And he said unto him, Thy prayers and thine alms are gone up for a memorial before God.</VERS>\r\n      <VERS vnumber=\"5\">And now send men to Joppa, and fetch one Simon, who is surnamed Peter:</VERS>\r\n      <VERS vnumber=\"6\">he lodgeth with one Simon a tanner, whose house is by the sea side.</VERS>\r\n      <VERS vnumber=\"7\">And when the angel that spake unto him was departed, he called two of his household-servants, and a devout soldier of them that waited on him continually;</VERS>\r\n      <VERS vnumber=\"8\">and having rehearsed all things unto them, he sent them to Joppa.</VERS>\r\n      <VERS vnumber=\"9\">Now on the morrow, as they were on their journey, and drew nigh unto the city, Peter went up upon the housetop to pray, about the sixth hour:</VERS>\r\n      <VERS vnumber=\"10\">and he became hungry, and desired to eat: but while they made ready, he fell into a trance;</VERS>\r\n      <VERS vnumber=\"11\">and he beholdeth the heaven opened, and a certain vessel descending, as it were a great sheet, let down by four corners upon the earth:</VERS>\r\n      <VERS vnumber=\"12\">wherein were all manner of fourfooted beasts and creeping things of the earth and birds of the heaven.</VERS>\r\n      <VERS vnumber=\"13\">And there came a voice to him, Rise, Peter; kill and eat.</VERS>\r\n      <VERS vnumber=\"14\">But Peter said, Not so, Lord; for I have never eaten anything that is common and unclean.</VERS>\r\n      <VERS vnumber=\"15\">And a voice [came] unto him again the second time, What God hath cleansed, make not thou common.</VERS>\r\n      <VERS vnumber=\"16\">And this was done thrice: and straightway the vessel was received up into heaven.</VERS>\r\n      <VERS vnumber=\"17\">Now while Peter was much perplexed in himself what the vision which he had seen might mean, behold, the men that were sent by Cornelius, having made inquiry for Simon`s house, stood before the gate,</VERS>\r\n      <VERS vnumber=\"18\">and called and asked whether Simon, who was surnamed Peter, were lodging there.</VERS>\r\n      <VERS vnumber=\"19\">And while Peter thought on the vision, the Spirit said unto him, Behold, three men seek thee.</VERS>\r\n      <VERS vnumber=\"20\">But arise, and get thee down, and go with them, nothing doubting: for I have sent them.</VERS>\r\n      <VERS vnumber=\"21\">And Peter went down to the men, and said, Behold, I am he whom ye seek: what is the cause wherefore ye are come?</VERS>\r\n      <VERS vnumber=\"22\">And they said, Cornelius a centurion, a righteous man and one that feareth God, and well reported of by all the nation of the Jews, was warned [of God] by a holy angel to send for thee into his house, and to hear words from thee.</VERS>\r\n      <VERS vnumber=\"23\">So he called them in and lodged them. And on the morrow he arose and went forth with them, and certain of the brethren from Joppa accompanied him.</VERS>\r\n      <VERS vnumber=\"24\">And on the morrow they entered into Caesarea. And Cornelius was waiting for them, having called together his kinsmen and his near friends.</VERS>\r\n      <VERS vnumber=\"25\">And when it came to pass that Peter entered, Cornelius met him, and fell down at his feet, and worshipped him.</VERS>\r\n      <VERS vnumber=\"26\">But Peter raised him up, saying, Stand up; I myself also am a man.</VERS>\r\n      <VERS vnumber=\"27\">And as he talked with him, he went in, and findeth many come together:</VERS>\r\n      <VERS vnumber=\"28\">and he said unto them, Ye yourselves know how it is an unlawful thing for a man that is a Jew to join himself or come unto one of another nation; and [yet] unto me hath God showed that I should not call any man common or unclean:</VERS>\r\n      <VERS vnumber=\"29\">wherefore also I came without gainsaying, when I was sent for. I ask therefore with what intent ye sent for me.</VERS>\r\n      <VERS vnumber=\"30\">And Cornelius said, Four days ago, until this hour, I was keeping the ninth hour of prayer in my house; and behold, a man stood before me in bright apparel,</VERS>\r\n      <VERS vnumber=\"31\">and saith, Cornelius, thy prayer is heard, and thine alms are had in remembrance in the sight of God.</VERS>\r\n      <VERS vnumber=\"32\">Send therefore to Joppa, and call unto thee Simon, who is surnamed Peter; he lodgeth in the house of Simon a tanner, by the sea side.</VERS>\r\n      <VERS vnumber=\"33\">Forthwith therefore I sent to thee; and thou hast well done that thou art come. Now therefore we are all here present in the sight of God, to hear all things that have been commanded thee of the Lord.</VERS>\r\n      <VERS vnumber=\"34\">And Peter opened his mouth and said, Of a truth I perceive that God is no respecter of persons:</VERS>\r\n      <VERS vnumber=\"35\">but in every nation he that feareth him, and worketh righteousness, is acceptable to him.</VERS>\r\n      <VERS vnumber=\"36\">The word which he sent unto the children of Israel, preaching good tidings of peace by Jesus Christ (He is Lord of all.) --</VERS>\r\n      <VERS vnumber=\"37\">that saying ye yourselves know, which was published throughout all Judaea, beginning from Galilee, after the baptism which John preached;</VERS>\r\n      <VERS vnumber=\"38\">[even] Jesus of Nazareth, how God anointed him with the Holy Spirit and with power: who went about doing good, and healing all that were oppressed of the devil; for God was with him.</VERS>\r\n      <VERS vnumber=\"39\">And we are witnesses of all things which he did both in the country of the Jews, and in Jerusalem; whom also they slew, hanging him on a tree.</VERS>\r\n      <VERS vnumber=\"40\">Him God raised up the third day, and gave him to be made manifest,</VERS>\r\n      <VERS vnumber=\"41\">not to all the people, but unto witnesses that were chosen before of God, [even] to us, who ate and drank with him after he rose from the dead.</VERS>\r\n      <VERS vnumber=\"42\">And he charged us to preach unto the people, and to testify that this is he who is ordained of God [to be] the Judge of the living and the dead.</VERS>\r\n      <VERS vnumber=\"43\">To him bear all the prophets witness, that through his name every one that believeth on him shall receive remission of sins.</VERS>\r\n      <VERS vnumber=\"44\">While Peter yet spake these words, the Holy Spirit fell on all them that heard the word.</VERS>\r\n      <VERS vnumber=\"45\">And they of the circumcision that believed were amazed, as many as came with Peter, because that on the Gentiles also was poured out the gift of the Holy Spirit.</VERS>\r\n      <VERS vnumber=\"46\">For they heard them speak with tongues, and magnify God. Then answered Peter,</VERS>\r\n      <VERS vnumber=\"47\">Can any man forbid the water, that these should not be baptized, who have received the Holy Spirit as well as we?</VERS>\r\n      <VERS vnumber=\"48\">And he commanded them to be baptized in the name of Jesus Christ. Then prayed they him to tarry certain days.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">Now the apostles and the brethren that were in Judaea heard that the Gentiles also had received the word of God.</VERS>\r\n      <VERS vnumber=\"2\">And when Peter was come up to Jerusalem, they that were of the circumcision contended with him,</VERS>\r\n      <VERS vnumber=\"3\">saying, Thou wentest in to men uncircumcised, and didst eat with them.</VERS>\r\n      <VERS vnumber=\"4\">But Peter began, and expounded [the matter] unto them in order, saying,</VERS>\r\n      <VERS vnumber=\"5\">I was in the city of Joppa praying: and in a trance I saw a vision, a certain vessel descending, as it were a great sheet let down from heaven by four corners; and it came even unto me:</VERS>\r\n      <VERS vnumber=\"6\">upon which when I had fastened mine eyes, I considered, and saw the fourfooted beasts of the earth and wild beasts and creeping things and birds of the heaven.</VERS>\r\n      <VERS vnumber=\"7\">And I heard also a voice saying unto me, Rise, Peter; kill and eat.</VERS>\r\n      <VERS vnumber=\"8\">But I said, Not so, Lord: for nothing common or unclean hath ever entered into my mouth.</VERS>\r\n      <VERS vnumber=\"9\">But a voice answered the second time out of heaven, What God hath cleansed, make not thou common.</VERS>\r\n      <VERS vnumber=\"10\">And this was done thrice: and all were drawn up again into heaven.</VERS>\r\n      <VERS vnumber=\"11\">And behold, forthwith three men stood before the house in which we were, having been sent from Caesarea unto me.</VERS>\r\n      <VERS vnumber=\"12\">And the Spirit bade me go with them, making no distinction. And these six brethren also accompanied me; and we entered into the man`s house:</VERS>\r\n      <VERS vnumber=\"13\">and he told us how he had seen the angel standing in his house, and saying, Send to Joppa, and fetch Simon, whose surname is Peter;</VERS>\r\n      <VERS vnumber=\"14\">who shall speak unto thee words, whereby thou shalt be saved, thou and all thy house.</VERS>\r\n      <VERS vnumber=\"15\">And as I began to speak, the Holy Spirit fell on them, even as on us at the beginning.</VERS>\r\n      <VERS vnumber=\"16\">And I remembered the word of the Lord, how he said, John indeed baptized with water; but ye shall be baptized in the Holy Spirit.</VERS>\r\n      <VERS vnumber=\"17\">If then God gave unto them the like gift as [he did] also unto us, when we believed on the Lord Jesus Christ, who was I, that I could withstand God?</VERS>\r\n      <VERS vnumber=\"18\">And when they heard these things, they held their peace, and glorified God, saying, Then to the Gentiles also hath God granted repentance unto life.</VERS>\r\n      <VERS vnumber=\"19\">They therefore that were scattered abroad upon the tribulation that arose about Stephen travelled as far as Phoenicia, and Cyprus, and Antioch, speaking the word to none save only to Jews.</VERS>\r\n      <VERS vnumber=\"20\">But there were some of them, men of Cyprus and Cyrene, who, when they were come to Antioch, spake unto the Greeks also, preaching the Lord Jesus.</VERS>\r\n      <VERS vnumber=\"21\">And the hand of the Lord was with them: and a great number that believed turned unto the Lord.</VERS>\r\n      <VERS vnumber=\"22\">And the report concerning them came to the ears of the church which was in Jerusalem: and they sent forth Barnabas as far as Antioch:</VERS>\r\n      <VERS vnumber=\"23\">who, when he was come, and had seen the grace of God, was glad; and he exhorted them all, that with purpose of heart they would cleave unto the Lord:</VERS>\r\n      <VERS vnumber=\"24\">for he was a good man, and full of the Holy Spirit and of faith: and much people was added unto the Lord.</VERS>\r\n      <VERS vnumber=\"25\">And he went forth to Tarsus to seek for Saul;</VERS>\r\n      <VERS vnumber=\"26\">and when he had found him, he brought him unto Antioch. And it came to pass, that even for a whole year they were gathered together with the church, and taught much people, and that the disciples were called Christians first in Antioch.</VERS>\r\n      <VERS vnumber=\"27\">Now in these days there came down prophets from Jerusalem unto Antioch.</VERS>\r\n      <VERS vnumber=\"28\">And there stood up one of them named Agabus, and signified by the Spirit that there should be a great famine over all the world: which came to pass in the days of Claudius.</VERS>\r\n      <VERS vnumber=\"29\">And the disciples, every man according to his ability, determined to send relief unto the brethren that dwelt in Judea:</VERS>\r\n      <VERS vnumber=\"30\">which also they did, sending it to the elders by the hand of Barnabas and Saul.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">Now about that time Herod the king put forth his hands to afflict certain of the church.</VERS>\r\n      <VERS vnumber=\"2\">And he killed James the brother of John with the sword.</VERS>\r\n      <VERS vnumber=\"3\">And when he saw that it pleased the Jews, he proceeded to seize Peter also. And [those] were the days of unleavened bread.</VERS>\r\n      <VERS vnumber=\"4\">And when he had taken him, he put him in prison, and delivered him to four quaternions of soldiers to guard him; intending after the Passover to bring him forth to the people.</VERS>\r\n      <VERS vnumber=\"5\">Peter therefore was kept in the prison: but prayer was made earnestly of the church unto God for him.</VERS>\r\n      <VERS vnumber=\"6\">And when Herod was about to bring him forth, the same night Peter was sleeping between two soldiers, bound with two chains: and guards before the door kept the prison.</VERS>\r\n      <VERS vnumber=\"7\">And behold, an angel of the Lord stood by him, and a light shined in the cell: and he smote Peter on the side, and awoke him, saying, Rise up quickly. And his chains fell off from his hands.</VERS>\r\n      <VERS vnumber=\"8\">And the angel said unto him, Gird thyself, and bind on thy sandals. And he did so. And he saith unto him, Cast thy garment about thee, and follow me.</VERS>\r\n      <VERS vnumber=\"9\">And he went out, and followed; and he knew not that it was true which was done by the angel, but thought he saw a vision.</VERS>\r\n      <VERS vnumber=\"10\">And when they were past the first and the second guard, they came unto the iron gate that leadeth into the city; which opened to them of its own accord: and they went out, and passed on through one street; and straightway the angel departed from him.</VERS>\r\n      <VERS vnumber=\"11\">And when Peter was come to himself, he said, Now I know of a truth, that the Lord hath sent forth his angel and delivered me out of the hand of Herod, and from all the expectation of the people of the Jews.</VERS>\r\n      <VERS vnumber=\"12\">And 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 and were praying.</VERS>\r\n      <VERS vnumber=\"13\">And when he knocked at the door of the gate, a maid came to answer, named Rhoda.</VERS>\r\n      <VERS vnumber=\"14\">And when she knew Peter`s voice, she opened not the gate for joy, but ran in, and told that Peter stood before the gate.</VERS>\r\n      <VERS vnumber=\"15\">And they said unto her, Thou art mad. But she confidently affirmed that it was even so. And they said, It is his angel.</VERS>\r\n      <VERS vnumber=\"16\">But Peter continued knocking: and when they had opened, they saw him, and were amazed.</VERS>\r\n      <VERS vnumber=\"17\">But he, beckoning unto them with the hand to hold their peace, declared unto them how the Lord had brought him forth out of the prison. And he said, Tell these things unto James, and to the brethren. And he departed, and went to another place.</VERS>\r\n      <VERS vnumber=\"18\">Now as soon as it was day, there was no small stir among the soldiers, what was become of Peter.</VERS>\r\n      <VERS vnumber=\"19\">And when Herod had sought for him, and found him not, he examined the guards, and commanded that they should be put to death. And he went down from Judaea to Caesarea, and tarried there.</VERS>\r\n      <VERS vnumber=\"20\">Now he was highly displeased with them of Tyre and Sidon: and they came with one accord to him, and, having made Blastus the king`s chamberlain their friend, they asked for peace, because their country was fed from the king`s country.</VERS>\r\n      <VERS vnumber=\"21\">And upon a set day Herod arrayed himself in royal apparel, and sat on the throne, and made an oration unto them.</VERS>\r\n      <VERS vnumber=\"22\">And the people shouted, [saying], The voice of a god, and not of a man.</VERS>\r\n      <VERS vnumber=\"23\">And immediately an angel of the Lord smote him, because he gave not God the glory: and he was eaten of worms, and gave up the ghost.</VERS>\r\n      <VERS vnumber=\"24\">But the word of God grew and multiplied.</VERS>\r\n      <VERS vnumber=\"25\">And Barnabas and Saul returned from Jerusalem, when they had fulfilled their ministration, taking with them John whose surname was Mark.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">Now there were at Antioch, in the church that was [there], prophets and teachers, Barnabas, and Symeon that was called Niger, and Lucius of Cyrene, and Manaen the foster-brother of Herod the tetrarch, and Saul.</VERS>\r\n      <VERS vnumber=\"2\">And as they ministered to the Lord, and fasted, the Holy Spirit said, Separate me Barnabas and Saul for the work whereunto I have called them.</VERS>\r\n      <VERS vnumber=\"3\">Then, when they had fasted and prayed and laid their hands on them, they sent them away.</VERS>\r\n      <VERS vnumber=\"4\">So they, being sent forth by the Holy Spirit, went down to Seleucia; and from thence they sailed to Cyprus.</VERS>\r\n      <VERS vnumber=\"5\">And when they were at Salamis, they proclaimed the word of God in the synagogues of the Jews: and they had also John as their attendant.</VERS>\r\n      <VERS vnumber=\"6\">And when they had gone through the whole island unto Paphos, they found a certain sorcerer, a false prophet, a Jew, whose name was Bar-jesus;</VERS>\r\n      <VERS vnumber=\"7\">who was with the proconsul, Sergius Paulus, a man of understanding. The same called unto him Barnabas and Saul, and sought to hear the word of God.</VERS>\r\n      <VERS vnumber=\"8\">But Elymas the sorcerer (for so is his name by interpretation) withstood them, seeking to turn aside the proconsul from the faith.</VERS>\r\n      <VERS vnumber=\"9\">But Saul, who is also [called] Paul, filled with the Holy Spirit, fastened his eyes on him,</VERS>\r\n      <VERS vnumber=\"10\">and said, O full of all guile and all villany, thou son of the devil, thou enemy of all righteousness, wilt thou not cease to pervert the right ways of the Lord?</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">Then the proconsul, when he saw what was done, believed, being astonished at the teaching of the Lord.</VERS>\r\n      <VERS vnumber=\"13\">Now Paul and his company set sail from Paphos, and came to Perga in Pamphylia: and John departed from them and returned to Jerusalem.</VERS>\r\n      <VERS vnumber=\"14\">But they, passing through from Perga, came to Antioch of Pisidia; and they went into the synagogue on the sabbath day, and sat down.</VERS>\r\n      <VERS vnumber=\"15\">And after the reading of the law and the prophets the rulers of the synagogue sent unto them, saying, Brethren, if ye have any word of exhortation for the people, say on.</VERS>\r\n      <VERS vnumber=\"16\">And Paul stood up, and beckoning with the hand said, Men of Israel, and ye that fear God, hearken:</VERS>\r\n      <VERS vnumber=\"17\">The God of this people Israel chose our fathers, and exalted the people when they sojourned in the land of Egypt, and with a high arm led he them forth out of it.</VERS>\r\n      <VERS vnumber=\"18\">And for about the time of forty years as a nursing-father bare he them in the wilderness.</VERS>\r\n      <VERS vnumber=\"19\">And when he had destroyed seven nations in the land of Canaan, he gave [them] their land for an inheritance, for about four hundred and fifty years:</VERS>\r\n      <VERS vnumber=\"20\">and after these things he gave [them] judges until Samuel the prophet.</VERS>\r\n      <VERS vnumber=\"21\">And afterward they asked for a king: and God gave unto them Saul the son of Kish, a man of the tribe of Benjamin, for the space of forty years.</VERS>\r\n      <VERS vnumber=\"22\">And when he had removed him, he raised up David to be their king; to whom also he bare witness and said, I have found David the son of Jesse, a man after My heart, who shall do all My will.</VERS>\r\n      <VERS vnumber=\"23\">Of this man`s seed hath God according to promise brought unto Israel a Saviour, Jesus;</VERS>\r\n      <VERS vnumber=\"24\">when John had first preached before his coming the baptism of repentance to all the people of Israel.</VERS>\r\n      <VERS vnumber=\"25\">And as John was fulfilling his course, he said, What suppose ye that I am? I am not [he]. But behold, there cometh one after me the shoes of whose feet I am not worthy to unloose.</VERS>\r\n      <VERS vnumber=\"26\">Brethren, children of the stock of Abraham, and those among you that fear God, to us is the word of this salvation sent forth.</VERS>\r\n      <VERS vnumber=\"27\">For they that dwell in Jerusalem, and their rulers, because they knew him not, nor the voices of the prophets which are read every sabbath, fulfilled [them] by condemning [him].</VERS>\r\n      <VERS vnumber=\"28\">And though they found no cause of death [in him], yet asked they of Pilate that he should be slain.</VERS>\r\n      <VERS vnumber=\"29\">And when they had fulfilled all things that were written of him, they took him down from the tree, and laid him in a tomb.</VERS>\r\n      <VERS vnumber=\"30\">But God raised him from the dead:</VERS>\r\n      <VERS vnumber=\"31\">and he was seen for many days of them that came up with him from Galilee to Jerusalem, who are now his witnesses unto the people.</VERS>\r\n      <VERS vnumber=\"32\">And we bring you good tidings of the promise made unto the fathers,</VERS>\r\n      <VERS vnumber=\"33\">that God hath fulfilled the same unto our children, in that he raised up Jesus; as also it is written in the second psalm, Thou art my Son, this day have I begotten thee.</VERS>\r\n      <VERS vnumber=\"34\">And as concerning that he raised him up from the dead, now no more to return to corruption, he hath spoken on this wise, I will give you the holy and sure [blessings] of David.</VERS>\r\n      <VERS vnumber=\"35\">Because he saith also in another [psalm], Thou wilt not give Thy Holy One to see corruption.</VERS>\r\n      <VERS vnumber=\"36\">For David, after he had in his own generation served the counsel of God, fell asleep, and was laid unto his fathers, and saw corruption:</VERS>\r\n      <VERS vnumber=\"37\">but he whom God raised up saw no corruption.</VERS>\r\n      <VERS vnumber=\"38\">Be it known unto you therefore, brethren, that through this man is proclaimed unto you remission of sins:</VERS>\r\n      <VERS vnumber=\"39\">and by him every one that believeth is justified from all things, from which ye could not be justified by the law of Moses.</VERS>\r\n      <VERS vnumber=\"40\">Beware therefore, lest that come upon [you] which is spoken in the prophets:</VERS>\r\n      <VERS vnumber=\"41\">Behold, ye despisers, and wonder, and perish; For I work a work in your days, A work which ye shall in no wise believe, if one declare it unto       you.</VERS>\r\n      <VERS vnumber=\"42\">And as they went out, they besought that these words might be spoken to them the next sabbath.</VERS>\r\n      <VERS vnumber=\"43\">Now when the synagogue broke up, many of the Jews and of the devout proselytes followed Paul and Barnabas; who, speaking to them, urged them to continue in the grace of God.</VERS>\r\n      <VERS vnumber=\"44\">And the next sabbath almost the whole city was gathered together to hear the word of God.</VERS>\r\n      <VERS vnumber=\"45\">But when the Jews saw the multitudes, they were filled with jealousy, and contradicted the things which were spoken by Paul, and blasphemed.</VERS>\r\n      <VERS vnumber=\"46\">And Paul and Barnabas spake out boldly, and said, It was necessary that the word of God should first be spoken to you. Seeing ye thrust it from you, and judge yourselves unworthy of eternal life, lo, we turn to the Gentiles.</VERS>\r\n      <VERS vnumber=\"47\">For so hath the Lord commanded us, [saying], I have set thee for a light of the Gentiles, That thou shouldest be for salvation unto the uttermost part of       the earth.</VERS>\r\n      <VERS vnumber=\"48\">And as the Gentiles heard this, they were glad, and glorified the word of God: and as many as were ordained to eternal life believed.</VERS>\r\n      <VERS vnumber=\"49\">And the word of the Lord was spread abroad throughout all the region.</VERS>\r\n      <VERS vnumber=\"50\">But the Jews urged on the devout women of honorable estate, and the chief men of the city, and stirred up a persecution against Paul and Barnabas, and cast them out of their borders.</VERS>\r\n      <VERS vnumber=\"51\">But they shook off the dust of their feet against them, and came unto Iconium.</VERS>\r\n      <VERS vnumber=\"52\">And the disciples were filled with joy with the Holy Spirit.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">And it came to pass in Iconium that they entered together into the synagogue of the Jews, and so spake that a great multitude both of Jews and of Greeks believed.</VERS>\r\n      <VERS vnumber=\"2\">But the Jews that were disobedient stirred up the souls of the Gentiles, and made them evil affected against the brethren.</VERS>\r\n      <VERS vnumber=\"3\">Long time therefore they tarried [there] speaking boldly in the Lord, who bare witness unto the word of his grace, granting signs and wonders to be done by their hands.</VERS>\r\n      <VERS vnumber=\"4\">But the multitude of the city was divided; and part held with the Jews, and part with the apostles.</VERS>\r\n      <VERS vnumber=\"5\">And when there was made an onset both of the Gentiles and of the Jews with their rulers, to treat them shamefully and to stone them,</VERS>\r\n      <VERS vnumber=\"6\">they became aware of it, and fled unto the cities of Lycaonia, Lystra and Derbe, and the region round about:</VERS>\r\n      <VERS vnumber=\"7\">and there they preached the gospel.</VERS>\r\n      <VERS vnumber=\"8\">And at Lystra there sat a certain man, impotent in his feet, a cripple from his mother`s womb, who never had walked.</VERS>\r\n      <VERS vnumber=\"9\">The same heard Paul speaking, who, fastening eyes upon him, and seeing that he had faith to be made whole,</VERS>\r\n      <VERS vnumber=\"10\">said with a loud voice, Stand upright on thy feet. And he leaped up and walked.</VERS>\r\n      <VERS vnumber=\"11\">And when the multitude saw what Paul had done, they lifted up their voice, saying in the speech of Lycaonia, The gods are come down to us in the likeness of men.</VERS>\r\n      <VERS vnumber=\"12\">And they called Barnabas, Jupiter; and Paul, Mercury, because he was the chief speaker.</VERS>\r\n      <VERS vnumber=\"13\">And the priest of Jupiter whose [temple] was before the city, brought oxen and garlands unto the gates, and would have done sacrifice with the multitudes.</VERS>\r\n      <VERS vnumber=\"14\">But when the apostles, Barnabas and Paul, heard of it, they rent their garments, and sprang forth among the multitude, crying out</VERS>\r\n      <VERS vnumber=\"15\">and saying, Sirs, why do ye these things? We also are men of like passions with you, and bring you good tidings, that ye should turn from these vain things unto a living God, who made the heaven and the earth and the sea, and all that in them is:</VERS>\r\n      <VERS vnumber=\"16\">who in the generations gone by suffered all the nations to walk in their own ways.</VERS>\r\n      <VERS vnumber=\"17\">And yet He left not himself without witness, in that he did good and gave you from heaven rains and fruitful seasons, filling your hearts with food and gladness.</VERS>\r\n      <VERS vnumber=\"18\">And with these sayings scarce restrained they the multitudes from doing sacrifice unto them.</VERS>\r\n      <VERS vnumber=\"19\">But there came Jews thither from Antioch and Iconium: and having persuaded the multitudes, they stoned Paul, and dragged him out of the city, supposing that he was dead.</VERS>\r\n      <VERS vnumber=\"20\">But as the disciples stood round about him, he rose up, and entered into the city: and on the morrow he went forth with Barnabas to Derbe.</VERS>\r\n      <VERS vnumber=\"21\">And when they had preached the gospel to that city, and had made many disciples, they returned to Lystra, and to Iconium, and to Antioch,</VERS>\r\n      <VERS vnumber=\"22\">confirming the souls of the disciples, exhorting them to continue in the faith, and that through many tribulations we must enter into the kingdom of God.</VERS>\r\n      <VERS vnumber=\"23\">And when they had appointed for them elders in every church, and had prayed with fasting, they commended them to the Lord, on whom they had believed.</VERS>\r\n      <VERS vnumber=\"24\">And they passed through Pisidia, and came to Pamphylia.</VERS>\r\n      <VERS vnumber=\"25\">And when they had spoken the word in Perga, they went down to Attalia;</VERS>\r\n      <VERS vnumber=\"26\">and thence they sailed to Antioch, from whence they had been committed to the grace of God for the work which they had fulfilled.</VERS>\r\n      <VERS vnumber=\"27\">And when they were come, and had gathered the church together, they rehearsed all things that God had done with them, and that he had opened a door of faith unto the Gentiles.</VERS>\r\n      <VERS vnumber=\"28\">And they tarried no little time with the disciples.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">And certain men came down from Judaea and taught the brethren, [saying], Except ye be circumcised after the custom of Moses, ye cannot be saved.</VERS>\r\n      <VERS vnumber=\"2\">And when Paul and Barnabas had no small dissension and questioning with them, [the brethren] appointed that Paul and Barnabas, and certain other of them, should go up to Jerusalem unto the apostles and elders about this question.</VERS>\r\n      <VERS vnumber=\"3\">They therefore, being brought on their way by the church, passed through both Phoenicia and Samaria, declaring the conversion of the Gentiles: and they caused great joy unto all the brethren.</VERS>\r\n      <VERS vnumber=\"4\">And when they were come to Jerusalem, they were received of the church and the apostles and the elders, and they rehearsed all things that God had done with them.</VERS>\r\n      <VERS vnumber=\"5\">But there rose up certain of the sect of the Pharisees who believed, saying, It is needful to circumcise them, and to charge them to keep the law of Moses.</VERS>\r\n      <VERS vnumber=\"6\">And the apostles and the elders were gathered together to consider of this matter.</VERS>\r\n      <VERS vnumber=\"7\">And when there had been much questioning, Peter rose up, and said unto them, Brethren, ye know that a good while ago God made choice among you, that by my mouth the Gentiles should hear the word of the gospel, and believe.</VERS>\r\n      <VERS vnumber=\"8\">And God, who knoweth the heart, bare them witness, giving them the Holy Spirit, even as he did unto us;</VERS>\r\n      <VERS vnumber=\"9\">and he made no distinction between us and them, cleansing their hearts by faith.</VERS>\r\n      <VERS vnumber=\"10\">Now therefore why make ye trial of God, that ye should put a yoke upon the neck of the disciples which neither our fathers nor we were able to bear?</VERS>\r\n      <VERS vnumber=\"11\">But we believe that we shall be saved through the grace of the Lord Jesus, in like manner as they.</VERS>\r\n      <VERS vnumber=\"12\">And all the multitude kept silence; and they hearkened unto Barnabas and Paul rehearsing what signs and wonders God had wrought among the Gentiles through them.</VERS>\r\n      <VERS vnumber=\"13\">And after they had held their peace, James answered, saying, Brethren, hearken unto me:</VERS>\r\n      <VERS vnumber=\"14\">Symeon hath rehearsed how first God visited the Gentiles, to take out of them a people for his name.</VERS>\r\n      <VERS vnumber=\"15\">And to this agree the words of the prophets; as it is written,</VERS>\r\n      <VERS vnumber=\"16\">After these things I will return, And I will build again the tabernacle of David, which is fallen; And I will build again the ruins thereof, And I will set it up:</VERS>\r\n      <VERS vnumber=\"17\">That the residue of men may seek after the Lord, And all the Gentiles, upon whom my name is called,</VERS>\r\n      <VERS vnumber=\"18\">Saith the Lord, who maketh these things known from of       old.</VERS>\r\n      <VERS vnumber=\"19\">Wherefore my judgment is, that we trouble not them that from among the Gentiles turn to God;</VERS>\r\n      <VERS vnumber=\"20\">but that we write unto them, that they abstain from the pollutions of idols, and from fornication, and from what is strangled, and from blood.</VERS>\r\n      <VERS vnumber=\"21\">For Moses from generations of old hath in every city them that preach him, being read in the synagogues every sabbath.</VERS>\r\n      <VERS vnumber=\"22\">Then it seemed good to the apostles and the elders, with the whole church, to choose men out of their company, and send them to Antioch with Paul and Barnabas; [namely], Judas called Barsabbas, and Silas, chief men among the brethren:</VERS>\r\n      <VERS vnumber=\"23\">and they wrote [thus] by them, The apostles and the elders, brethren, unto the brethren who are of the Gentiles in Antioch and Syria and Cilicia, greeting:</VERS>\r\n      <VERS vnumber=\"24\">Forasmuch as we have heard that certain who went out from us have troubled you with words, subverting your souls; to whom we gave no commandment;</VERS>\r\n      <VERS vnumber=\"25\">it seemed good unto us, having come to one accord, to choose out men and send them unto you with our beloved Barnabas and Paul,</VERS>\r\n      <VERS vnumber=\"26\">men that have hazarded their lives for the name of our Lord Jesus Christ.</VERS>\r\n      <VERS vnumber=\"27\">We have sent therefore Judas and Silas, who themselves also shall tell you the same things by word of mouth.</VERS>\r\n      <VERS vnumber=\"28\">For it seemed good to the Holy Spirit, and to us, to lay upon you no greater burden than these necessary things:</VERS>\r\n      <VERS vnumber=\"29\">that ye abstain from things sacrificed to idols, and from blood, and from things strangled, and from fornication; from which if ye keep yourselves, it shall be well with you. Fare ye well.</VERS>\r\n      <VERS vnumber=\"30\">So they, when they were dismissed, came down to Antioch; and having gathered the multitude together, they delivered the epistle.</VERS>\r\n      <VERS vnumber=\"31\">And when they had read it, they rejoiced for the consolation.</VERS>\r\n      <VERS vnumber=\"32\">And Judas and Silas, being themselves also prophets, exhorted the brethren with many words, and confirmed them.</VERS>\r\n      <VERS vnumber=\"33\">And after they had spent some time [there], they were dismissed in peace from the brethren unto those that had sent them forth.</VERS>\r\n      <VERS vnumber=\"34\">[But it seemed good unto Silas to abide there.]</VERS>\r\n      <VERS vnumber=\"35\">But Paul and Barnabas tarried in Antioch, teaching and preaching the word of the Lord, with many others also.</VERS>\r\n      <VERS vnumber=\"36\">And after some days Paul said unto Barnabas, Let us return now and visit the brethren in every city wherein we proclaimed the word of the Lord, [and see] how they fare.</VERS>\r\n      <VERS vnumber=\"37\">And Barnabas was minded to take with them John also, who was called Mark.</VERS>\r\n      <VERS vnumber=\"38\">But Paul thought not good to take with them him who withdrew from them from Pamphylia, and went not with them to the work.</VERS>\r\n      <VERS vnumber=\"39\">And there arose a sharp contention, so that they parted asunder one from the other, and Barnabas took Mark with him, and sailed away unto Cyprus;</VERS>\r\n      <VERS vnumber=\"40\">but Paul choose Silas, and went forth, being commended by the brethren to the grace of the Lord.</VERS>\r\n      <VERS vnumber=\"41\">And he went through Syria and Cilicia, confirming the churches.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">And he came also to Derbe and to Lystra: and behold, a certain disciple was there, named Timothy, the son of a Jewess that believed; but his father was a Greek.</VERS>\r\n      <VERS vnumber=\"2\">The same was well reported of by the brethren that were at Lystra and Iconium.</VERS>\r\n      <VERS vnumber=\"3\">Him would Paul have to go forth with him; and he took and circumcised him because of the Jews that were in those parts: for they all knew that his father was a Greek.</VERS>\r\n      <VERS vnumber=\"4\">And as they went on their way through the cities, they delivered them the decrees to keep which had been ordained of the apostles and elders that were at Jerusalem.</VERS>\r\n      <VERS vnumber=\"5\">So the churches were strengthened in the faith, and increased in number daily.</VERS>\r\n      <VERS vnumber=\"6\">And they went through the region of Phrygia and Galatia, having been forbidden of the Holy Spirit to speak the word in Asia;</VERS>\r\n      <VERS vnumber=\"7\">and when they were come over against Mysia, they assayed to go into Bithynia; and the Spirit of Jesus suffered them not;</VERS>\r\n      <VERS vnumber=\"8\">and passing by Mysia, they came down to Troas.</VERS>\r\n      <VERS vnumber=\"9\">And a vision appeared to Paul in the night: There was a man of Macedonia standing, beseeching him, and saying, Come over into Macedonia, and help us.</VERS>\r\n      <VERS vnumber=\"10\">And when he had seen the vision, straightway we sought to go forth into Macedonia, concluding that God had called us to preach the gospel to them.</VERS>\r\n      <VERS vnumber=\"11\">Setting sail therefore from Troas, we made a straight course to Samothrace, and the day following to Neapolis;</VERS>\r\n      <VERS vnumber=\"12\">and from thence to Philippi, which is a city of Macedonia, the first of the district, a [Roman] colony: and we were in this city tarrying certain days.</VERS>\r\n      <VERS vnumber=\"13\">And on the sabbath day we went forth without the gate by a river side, where we supposed there was a place of prayer; and we sat down, and spake unto the women that were come together.</VERS>\r\n      <VERS vnumber=\"14\">And a certain woman named Lydia, a seller of purple of the city of Thyatira, one that worshipped God, heard us: whose heart the Lord opened to give heed unto the things which were spoken by Paul.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And it came to pass, as we were going to the place of prayer, that a certain maid having a spirit of divination met us, who brought her masters much gain by soothsaying.</VERS>\r\n      <VERS vnumber=\"17\">The same following after Paul and us cried out, saying, These men are servants of the Most High God, who proclaim unto you the way of salvation.</VERS>\r\n      <VERS vnumber=\"18\">And this she did for many days. But Paul, being sore troubled, turned and said to the spirit, I charge thee in the name of Jesus Christ to come out of her. And it came out that very hour.</VERS>\r\n      <VERS vnumber=\"19\">But when her masters saw that the hope of their gain was gone, they laid hold on Paul and Silas, and dragged them into the marketplace before the rulers,</VERS>\r\n      <VERS vnumber=\"20\">and when they had brought them unto the magistrates, they said, These men, being Jews, do exceedingly trouble our city,</VERS>\r\n      <VERS vnumber=\"21\">and set forth customs which it is not lawful for us to receive, or to observe, being Romans.</VERS>\r\n      <VERS vnumber=\"22\">And the multitude rose up together against them: and the magistrates rent their garments off them, and commanded to beat them with rods.</VERS>\r\n      <VERS vnumber=\"23\">And when they had laid many stripes upon them, they cast them into prison, charging the jailor to keep them safely:</VERS>\r\n      <VERS vnumber=\"24\">who, having received such a charge, cast them into the inner prison, and made their feet fast in the stocks.</VERS>\r\n      <VERS vnumber=\"25\">But about midnight Paul and Silas were praying and singing hymns unto God, and the prisoners were listening to them;</VERS>\r\n      <VERS vnumber=\"26\">and suddenly there was a great earthquake, so that the foundations of the prison-house were shaken: and immediately all the doors were opened, and every one`s bands were loosed.</VERS>\r\n      <VERS vnumber=\"27\">And the jailor, being roused out of sleep and seeing the prison doors open, drew his sword and was about to kill himself, supposing that the prisoners had escaped.</VERS>\r\n      <VERS vnumber=\"28\">But Paul cried with a loud voice, saying, Do thyself no harm: for we are all here.</VERS>\r\n      <VERS vnumber=\"29\">And he called for lights and sprang in, and, trembling for fear, fell down before Paul and Silas,</VERS>\r\n      <VERS vnumber=\"30\">and brought them out and said, Sirs, what must I do to be saved?</VERS>\r\n      <VERS vnumber=\"31\">And they said, Believe on the Lord Jesus, and thou shalt be saved, thou and thy house.</VERS>\r\n      <VERS vnumber=\"32\">And they spake the word of the Lord unto him, with all that were in his house.</VERS>\r\n      <VERS vnumber=\"33\">And he took them the same hour of the night, and washed their stripes; and was baptized, he and all his, immediately.</VERS>\r\n      <VERS vnumber=\"34\">And he brought them up into his house, and set food before them, and rejoiced greatly, with all his house, having believed in God.</VERS>\r\n      <VERS vnumber=\"35\">But when it was day, the magistrates sent the sergeants, saying, Let those men go.</VERS>\r\n      <VERS vnumber=\"36\">And the jailor reported the words to Paul, [saying], The magistrates have sent to let you go: now therefore come forth, and go in peace.</VERS>\r\n      <VERS vnumber=\"37\">But Paul said unto them, They have beaten us publicly, uncondemned, men that are Romans, and have cast us into prison; and do they now cast us out privily? Nay verily; but let them come themselves and bring us out.</VERS>\r\n      <VERS vnumber=\"38\">And the sergeants reported these words unto the magistrates: and they feared when they heard that they were Romans;</VERS>\r\n      <VERS vnumber=\"39\">and they came and besought them; and when they had brought them out, they asked them to go away from the city.</VERS>\r\n      <VERS vnumber=\"40\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"17\">\r\n      <VERS vnumber=\"1\">Now when they had passed through Amphipolis and Apollonia, they came to Thessalonica, where was a synagogue of the Jews:</VERS>\r\n      <VERS vnumber=\"2\">and Paul, as his custom was, went in unto them, and for three sabbath days reasoned with them from the Scriptures,</VERS>\r\n      <VERS vnumber=\"3\">opening and alleging that it behooved the Christ to suffer, and to rise again from the dead; and that this Jesus, whom, [said he,] I proclaim unto you, is the Christ.</VERS>\r\n      <VERS vnumber=\"4\">And some of them were persuaded, and consorted with Paul and Silas, and of the devout Greeks a great multitude, and of the chief women not a few.</VERS>\r\n      <VERS vnumber=\"5\">But the Jews, being moved with jealousy, took unto them certain vile fellows of the rabble, and gathering a crowd, set the city on an uproar; and assaulting the house of Jason, they sought to bring them forth to the people.</VERS>\r\n      <VERS vnumber=\"6\">And when they found them not, they dragged Jason and certain brethren before the rulers of the city, crying, These that have turned the world upside down are come hither also;</VERS>\r\n      <VERS vnumber=\"7\">whom Jason hath received: and these all act contrary to the decrees of Caesar, saying that there is another king, [one] Jesus.</VERS>\r\n      <VERS vnumber=\"8\">And they troubled the multitude and the rulers of the city, when they heard these things.</VERS>\r\n      <VERS vnumber=\"9\">And when they had taken security from Jason and the rest, they let them go.</VERS>\r\n      <VERS vnumber=\"10\">And the brethren immediately sent away Paul and Silas by night unto Beroea: who when they were come thither went into the synagogue of the Jews.</VERS>\r\n      <VERS vnumber=\"11\">Now these were more noble than those in Thessalonica, in that they received the word with all readiness of the mind, examining the Scriptures daily, whether these things were so.</VERS>\r\n      <VERS vnumber=\"12\">Many of them therefore believed; also of the Greek women of honorable estate, and of men, not a few.</VERS>\r\n      <VERS vnumber=\"13\">But when the Jews of Thessalonica had knowledge that the word of God was proclaimed of Paul at Beroea also, they came thither likewise, stirring up and troubling the multitudes.</VERS>\r\n      <VERS vnumber=\"14\">And then immediately the brethren sent forth Paul to go as far as to the sea: and Silas and Timothy abode there still.</VERS>\r\n      <VERS vnumber=\"15\">But they that conducted Paul brought him as far as Athens: and receiving a commandment unto Silas and Timothy that they should come to him with all speed, they departed.</VERS>\r\n      <VERS vnumber=\"16\">Now while Paul waited for them at Athens, his spirit was provoked within him as he beheld the city full of idols.</VERS>\r\n      <VERS vnumber=\"17\">So he reasoned in the synagogue with Jews and the devout persons, and in the marketplace every day with them that met him.</VERS>\r\n      <VERS vnumber=\"18\">And certain also of the Epicurean and Stoic philosophers encountered him. And some said, What would this babbler say? others, He seemeth to be a setter forth of strange gods: because he preached Jesus and the resurrection.</VERS>\r\n      <VERS vnumber=\"19\">And they took hold of him, and brought him unto the Areopagus, saying, May we know what this new teaching is, which is spoken by thee?</VERS>\r\n      <VERS vnumber=\"20\">For thou bringest certain strange things to our ears: we would know therefore what these things mean.</VERS>\r\n      <VERS vnumber=\"21\">(Now all the Athenians and the strangers sojourning there spent their time in nothing else, but either to tell or to hear some new thing.)</VERS>\r\n      <VERS vnumber=\"22\">And Paul stood in the midst of the Areopagus, and said, Ye men of Athens, in all things, I perceive that ye are very religious.</VERS>\r\n      <VERS vnumber=\"23\">For as I passed along, and observed the objects of your worship, I found also an altar with this inscription, TO AN UNKNOWN GOD. What therefore ye worship in ignorance, this I set forth unto you.</VERS>\r\n      <VERS vnumber=\"24\">The God that made the world and all things therein, he, being Lord of heaven and earth, dwelleth not in temples made with hands;</VERS>\r\n      <VERS vnumber=\"25\">neither is he served by men`s hands, as though he needed anything, seeing he himself giveth to all life, and breath, and all things;</VERS>\r\n      <VERS vnumber=\"26\">and he made of one every nation of men to dwell on all the face of the earth, having determined [their] appointed seasons, and the bounds of their habitation;</VERS>\r\n      <VERS vnumber=\"27\">that they should seek God, if haply they might feel after him and find him, though he is not far from each one of us:</VERS>\r\n      <VERS vnumber=\"28\">for in him we live, and move, and have our being; as certain even of your own poets have said, For we are also his offspring.</VERS>\r\n      <VERS vnumber=\"29\">Being then the offspring of God, we ought not to think that the Godhead is like unto gold, or silver, or stone, graven by art and device of man.</VERS>\r\n      <VERS vnumber=\"30\">The times of ignorance therefore God overlooked; but now he commandeth men that they should all everywhere repent:</VERS>\r\n      <VERS vnumber=\"31\">inasmuch as he hath appointed a day in which he will judge the world in righteousness by the man whom he hath ordained; whereof he hath given assurance unto all men, in that he hath raised him from the dead.</VERS>\r\n      <VERS vnumber=\"32\">Now when they heard of the resurrection of the dead, some mocked; but others said, We will hear thee concerning this yet again.</VERS>\r\n      <VERS vnumber=\"33\">Thus Paul went out from among them.</VERS>\r\n      <VERS vnumber=\"34\">But certain men clave unto him, and believed: among whom also was Dionysius the Areopagite, and a woman named Damaris, and others with them.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"18\">\r\n      <VERS vnumber=\"1\">After these things he departed from Athens, and came to Corinth.</VERS>\r\n      <VERS vnumber=\"2\">And he found a certain Jew named Aquila, a man of Pontus by race, lately come from Italy, with his wife Priscilla, because Claudius had commanded all the Jews to depart from Rome: and he came unto them;</VERS>\r\n      <VERS vnumber=\"3\">and because he was of the same trade, he abode with them, and they wrought, for by their trade they were tentmakers.</VERS>\r\n      <VERS vnumber=\"4\">And he reasoned in the synagogue every sabbath, and persuaded Jews and Greeks.</VERS>\r\n      <VERS vnumber=\"5\">But when Silas and Timothy came down from Macedonia, Paul was constrained by the word, testifying to the Jews that Jesus was the Christ.</VERS>\r\n      <VERS vnumber=\"6\">And when they opposed themselves and blasphemed, he shook out his raiment and said unto them, Your blood [be] upon your own heads; I am clean: from henceforth I will go unto the Gentiles.</VERS>\r\n      <VERS vnumber=\"7\">And he departed thence, and went into the house of a certain man named Titus Justus, one that worshipped God, whose house joined hard to the synagogue.</VERS>\r\n      <VERS vnumber=\"8\">And Crispus, the ruler of the synagogue, believed in the Lord with all his house; and many of the Corinthians hearing believed, and were baptized.</VERS>\r\n      <VERS vnumber=\"9\">And the Lord said unto Paul in the night by a vision, Be not afraid, but speak and hold not thy peace:</VERS>\r\n      <VERS vnumber=\"10\">for I am with thee, and no man shall set on thee to harm thee: for I have much people in this city.</VERS>\r\n      <VERS vnumber=\"11\">And he dwelt [there] a year and six months, teaching the word of God among them.</VERS>\r\n      <VERS vnumber=\"12\">But when Gallio was proconsul of Achaia, the Jews with one accord rose up against Paul and brought him before the judgment-seat,</VERS>\r\n      <VERS vnumber=\"13\">saying, This man persuadeth men to worship God contrary to the law.</VERS>\r\n      <VERS vnumber=\"14\">But when Paul was about to open his mouth, Gallio said unto the Jews, If indeed it were a matter of wrong or of wicked villany, O ye Jews, reason would that I should bear with you:</VERS>\r\n      <VERS vnumber=\"15\">but if they are questions about words and names and your own law, look to it yourselves; I am not minded to be a judge of these matters.</VERS>\r\n      <VERS vnumber=\"16\">And he drove them from the judgment-seat.</VERS>\r\n      <VERS vnumber=\"17\">And they all laid hold on Sosthenes, the ruler of the synagogue, and beat him before the judgment-seat. And Gallio cared for none of these things.</VERS>\r\n      <VERS vnumber=\"18\">And Paul, having tarried after this yet many days, took his leave of the brethren, and sailed thence for Syria, and with him Priscilla and Aquila: having shorn his head in Cenchreae; for he had a vow.</VERS>\r\n      <VERS vnumber=\"19\">And they came to Ephesus, and he left them there: but he himself entered into the synagogue, and reasoned with the Jews.</VERS>\r\n      <VERS vnumber=\"20\">And when they asked him to abide a longer time, he consented not;</VERS>\r\n      <VERS vnumber=\"21\">but taking his leave of them, and saying, I will return again unto you if God will, he set sail from Ephesus.</VERS>\r\n      <VERS vnumber=\"22\">And when he had landed at Caesarea, he went up and saluted the church, and went down to Antioch.</VERS>\r\n      <VERS vnumber=\"23\">And having spent some time [there], he departed, and went through the region of Galatia, and Phrygia, in order, establishing all the disciples.</VERS>\r\n      <VERS vnumber=\"24\">Now a certain Jew named Apollos, an Alexandrian by race, an eloquent man, came to Ephesus; and he was mighty in the scriptures.</VERS>\r\n      <VERS vnumber=\"25\">This man had been instructed in the way of the Lord; and being fervent in spirit, he spake and taught accurately the things concerning Jesus, knowing only the baptism of John:</VERS>\r\n      <VERS vnumber=\"26\">and he began to speak boldly in the synagogue. But when Priscilla and Aquila heard him, they took him unto them, and expounded unto him the way of God more accurately.</VERS>\r\n      <VERS vnumber=\"27\">And when he was minded to pass over into Achaia, the brethren encouraged him, and wrote to the disciples to receive him: and when he was come, he helped them much that had believed through grace;</VERS>\r\n      <VERS vnumber=\"28\">for he powerfully confuted the Jews, [and that] publicly, showing by the scriptures that Jesus was the Christ.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"19\">\r\n      <VERS vnumber=\"1\">And it came to pass, that, while Apollos was at Corinth, Paul having passed through the upper country came to Ephesus, and found certain disciples:</VERS>\r\n      <VERS vnumber=\"2\">and he said unto them, Did ye receive the Holy Spirit when ye believed? And they [said] unto him, Nay, we did not so much as hear whether the Holy Spirit was [given].</VERS>\r\n      <VERS vnumber=\"3\">And he said, Into what then were ye baptized? And they said, Into John`s baptism.</VERS>\r\n      <VERS vnumber=\"4\">And Paul said, John baptized with the baptism of repentance, saying unto the people that they should believe on him that should come after him, that is, on Jesus.</VERS>\r\n      <VERS vnumber=\"5\">And when they heard this, they were baptized into the name of the Lord Jesus.</VERS>\r\n      <VERS vnumber=\"6\">And when Paul had laid his hands upon them, the Holy Spirit came on them; and they spake with tongues, and prophesied.</VERS>\r\n      <VERS vnumber=\"7\">And they were in all about twelve men.</VERS>\r\n      <VERS vnumber=\"8\">And he entered into the synagogue, and spake boldly for the space of three months, reasoning and persuading [as to] the things concerning the kingdom of God.</VERS>\r\n      <VERS vnumber=\"9\">But when some were hardened and disobedient, speaking evil of the Way before the multitude, he departed from them, and separated the disciples, reasoning daily in the school of Tyrannus.</VERS>\r\n      <VERS vnumber=\"10\">And this continued for the space of two years; so that all they that dwelt in Asia heard the word of the Lord, both Jews and Greeks.</VERS>\r\n      <VERS vnumber=\"11\">And God wrought special miracles by the hands of Paul:</VERS>\r\n      <VERS vnumber=\"12\">insomuch that unto the sick were carried away from his body handkerchiefs or aprons, and the evil spirits went out.</VERS>\r\n      <VERS vnumber=\"13\">But certain also of the strolling Jews, exorcists, took upon them to name over them that had the evil spirits the name of the Lord Jesus, saying, I adjure you by Jesus whom Paul preacheth.</VERS>\r\n      <VERS vnumber=\"14\">And there were seven sons of one Sceva, a Jew, a chief priest, who did this.</VERS>\r\n      <VERS vnumber=\"15\">And the evil spirit answered and said unto them, Jesus I know, and Paul I know, but who are ye?</VERS>\r\n      <VERS vnumber=\"16\">And the man in whom the evil spirit was leaped on them, and mastered both of them, and prevailed against them, so that they fled out of that house naked and wounded.</VERS>\r\n      <VERS vnumber=\"17\">And this became known to all, both Jews and Greeks, that dwelt at Ephesus; and fear fell upon them all, and the name of the Lord Jesus was magnified.</VERS>\r\n      <VERS vnumber=\"18\">Many also of them that had believed came, confessing, and declaring their deeds.</VERS>\r\n      <VERS vnumber=\"19\">And not a few of them that practised magical arts brought their books together and burned them in the sight of all; and they counted the price of them, and found it fifty thousand pieces of silver.</VERS>\r\n      <VERS vnumber=\"20\">So mightily grew the word of the Lord and prevailed.</VERS>\r\n      <VERS vnumber=\"21\">Now after 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.</VERS>\r\n      <VERS vnumber=\"22\">And having sent into Macedonia two of them that ministered unto him, Timothy and Erastus, he himself stayed in Asia for a while.</VERS>\r\n      <VERS vnumber=\"23\">And about that time there arose no small stir concerning the Way.</VERS>\r\n      <VERS vnumber=\"24\">For a certain man named Demetrius, a silversmith, who made silver shrines of Diana, brought no little business unto the craftsmen;</VERS>\r\n      <VERS vnumber=\"25\">whom he gathered together, with the workmen of like occupation, and said, Sirs, ye know that by this business we have our wealth.</VERS>\r\n      <VERS vnumber=\"26\">And 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 are no gods, that are made with hands:</VERS>\r\n      <VERS vnumber=\"27\">and not only is there danger that this our trade come into disrepute; but also that the temple of the great goddess Diana be made of no account, and that she should even be deposed from her magnificence whom all Asia and the world worshippeth.</VERS>\r\n      <VERS vnumber=\"28\">And when they heard this they were filled with wrath, and cried out, saying, Great is Diana of the Ephesus.</VERS>\r\n      <VERS vnumber=\"29\">And the city was filled with the confusion: and they rushed with one accord into the theatre, having seized Gaius and Aristarchus, men of Macedonia, Paul`s companions in travel.</VERS>\r\n      <VERS vnumber=\"30\">And when Paul was minded to enter in unto the people, the disciples suffered him not.</VERS>\r\n      <VERS vnumber=\"31\">And certain also of the Asiarchs, being his friends, sent unto him and besought him not to adventure himself into the theatre.</VERS>\r\n      <VERS vnumber=\"32\">Some therefore cried one thing, and some another: for the assembly was in confusion; and the more part knew not wherefore they were come together.</VERS>\r\n      <VERS vnumber=\"33\">And they brought Alexander out of the multitude, the Jews putting him forward. And Alexander beckoned with the hand, and would have made a defense unto the people.</VERS>\r\n      <VERS vnumber=\"34\">But when they perceived that he was a Jew, all with one voice about the space of two hours cried out, Great is Diana of the Ephesians.</VERS>\r\n      <VERS vnumber=\"35\">And when the townclerk had quieted the multitude, he saith, Ye men of Ephesus, what man is there who knoweth not that the city of the Ephesians is temple-keeper of the great Diana, and of the [image] which fell down from Jupiter?</VERS>\r\n      <VERS vnumber=\"36\">Seeing then that these things cannot be gainsaid, ye ought to be quiet, and to do nothing rash.</VERS>\r\n      <VERS vnumber=\"37\">For ye have brought [hither] these men, who are neither robbers of temples nor blasphemers of our goddess.</VERS>\r\n      <VERS vnumber=\"38\">If therefore Demetrius, and the craftsmen that are with him, have a matter against any man, the courts are open, and there are proconsuls: let them accuse one another.</VERS>\r\n      <VERS vnumber=\"39\">But if ye seek anything about other matters, it shall be settled in the regular assembly.</VERS>\r\n      <VERS vnumber=\"40\">For indeed we are in danger to be accused concerning this day`s riot, there being no cause [for it]: and as touching it we shall not be able to give account of this concourse.</VERS>\r\n      <VERS vnumber=\"41\">And when he had thus spoken, he dismissed the assembly.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"20\">\r\n      <VERS vnumber=\"1\">And after the uproar ceased, Paul having sent for the disciples and exhorted them, took leave of them, and departed to go into Macedonia.</VERS>\r\n      <VERS vnumber=\"2\">And when he had gone through those parts, and had given them much exhortation, he came into Greece.</VERS>\r\n      <VERS vnumber=\"3\">And when he had spent three months [there,] and a plot was laid against him by Jews as he was about to set sail for Syria, he determined to return through Macedonia.</VERS>\r\n      <VERS vnumber=\"4\">And there accompanied him as far as Asia, Sopater of Beroea, [the son] of Pyrrhus; and of the Thessalonians, Aristarchus and Secundus; and Gaius of Derbe, and Timothy; and of Asia, Tychicus and Trophimus.</VERS>\r\n      <VERS vnumber=\"5\">But these had gone before, and were waiting for us at Troas.</VERS>\r\n      <VERS vnumber=\"6\">And we sailed away from Philippi after the days of unleavened bread, and came unto them to Troas in five days, where we tarried seven days.</VERS>\r\n      <VERS vnumber=\"7\">And upon the first day of the week, when we were gathered together to break bread, Paul discoursed with them, intending to depart on the morrow; and prolonged his speech until midnight.</VERS>\r\n      <VERS vnumber=\"8\">And there were many lights in the upper chamber where we were gathered together.</VERS>\r\n      <VERS vnumber=\"9\">And there sat in the window a certain young man named Eutychus, borne down with deep sleep; and as Paul discoursed yet longer, being borne down by his sleep he fell down from the third story, and was taken up dead.</VERS>\r\n      <VERS vnumber=\"10\">And Paul went down, and fell on him, and embracing him said, Make ye no ado; for his life is in him.</VERS>\r\n      <VERS vnumber=\"11\">And when he was gone up, and had broken the bread, and eaten, and had talked with them a long while, even till break of day, so he departed.</VERS>\r\n      <VERS vnumber=\"12\">And they brought the lad alive, and were not a little comforted.</VERS>\r\n      <VERS vnumber=\"13\">But we going before to the ship set sail for Assos, there intending to take in Paul: for so had he appointed, intending himself to go by land.</VERS>\r\n      <VERS vnumber=\"14\">And when he met us at Assos, we took him in, and came to Mitylene.</VERS>\r\n      <VERS vnumber=\"15\">And sailing from thence, we came the following day over against Chios; and the next day we touched at Samos; and the day after we came to Miletus.</VERS>\r\n      <VERS vnumber=\"16\">For Paul had determined to sail past Ephesus, that he might not have to spend time in Asia; for he was hastening, if it were possible for him, to be at Jerusalem the day of Pentecost.</VERS>\r\n      <VERS vnumber=\"17\">And from Miletus he sent to Ephesus, and called to him the elders of the church.</VERS>\r\n      <VERS vnumber=\"18\">And when they were come to him, he said unto them, Ye yourselves know, from the first day that I set foot in Asia, after what manner I was with you all the time,</VERS>\r\n      <VERS vnumber=\"19\">serving the Lord with all lowliness of mind, and with tears, and with trials which befell me by the plots of the Jews;</VERS>\r\n      <VERS vnumber=\"20\">how I shrank not from declaring unto you anything that was profitable, and teaching you publicly, and from house to house,</VERS>\r\n      <VERS vnumber=\"21\">testifying both to Jews and to Greeks repentance toward God, and faith toward our Lord Jesus Christ.</VERS>\r\n      <VERS vnumber=\"22\">And now, behold, I go bound in the spirit unto Jerusalem, not knowing the things that shall befall me there:</VERS>\r\n      <VERS vnumber=\"23\">save that the Holy Spirit testifieth unto me in every city, saying that bonds and afflictions abide me.</VERS>\r\n      <VERS vnumber=\"24\">But I hold not my life of any account as dear unto myself, so that I may accomplish my course, and the ministry which I received from the Lord Jesus, to testify the gospel of the grace of God.</VERS>\r\n      <VERS vnumber=\"25\">And now, behold, I know that ye all, among whom I went about preaching the kingdom, shall see my face no more.</VERS>\r\n      <VERS vnumber=\"26\">Wherefore I testify unto you this day, that I am pure from the blood of all men.</VERS>\r\n      <VERS vnumber=\"27\">For I shrank not from declaring unto you the whole counsel of God.</VERS>\r\n      <VERS vnumber=\"28\">Take heed unto yourselves, and to all the flock, in which the Holy Spirit hath made you bishops, to feed the church of the Lord which he purchased with his own blood.</VERS>\r\n      <VERS vnumber=\"29\">I know that after my departing grievous wolves shall enter in among you, not sparing the flock;</VERS>\r\n      <VERS vnumber=\"30\">and from among your own selves shall men arise, speaking perverse things, to draw away the disciples after them.</VERS>\r\n      <VERS vnumber=\"31\">Wherefore watch ye, remembering that by the space of three years I ceased not to admonish every one night and day with tears.</VERS>\r\n      <VERS vnumber=\"32\">And now I commend you to God, and to the word of his grace, which is able to build [you] up, and to give [you] the inheritance among all them that are sanctified.</VERS>\r\n      <VERS vnumber=\"33\">I coveted no man`s silver, or gold, or apparel.</VERS>\r\n      <VERS vnumber=\"34\">Ye yourselves know that these hands ministered unto my necessities, and to them that were with me.</VERS>\r\n      <VERS vnumber=\"35\">In all things I gave you an example, that so laboring ye ought to help the weak, and to remember the words of the Lord Jesus, that he himself said, It is more blessed to give than to receive.</VERS>\r\n      <VERS vnumber=\"36\">And when he had thus spoken, he kneeled down and prayed with them all.</VERS>\r\n      <VERS vnumber=\"37\">And they all wept sore, and fell on Paul`s neck and kissed him,</VERS>\r\n      <VERS vnumber=\"38\">sorrowing most of all for the word which he had spoken, that they should behold his face no more. And they brought him on his way unto the ship.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"21\">\r\n      <VERS vnumber=\"1\">And when it came to pass that were parted from them and had set sail, we came with a straight course unto Cos, and the next day unto Rhodes, and from thence unto Patara:</VERS>\r\n      <VERS vnumber=\"2\">and having found a ship crossing over unto Phoenicia, we went aboard, and set sail.</VERS>\r\n      <VERS vnumber=\"3\">And when we had come in sight of Cyprus, leaving it on the left hand, we sailed unto Syria, and landed at Tyre; for there the ship was to unlade her burden.</VERS>\r\n      <VERS vnumber=\"4\">And having found the disciples, we tarried there seven days: and these said to Paul through the Spirit, that he should not set foot in Jerusalem.</VERS>\r\n      <VERS vnumber=\"5\">And when it came to pass that we had accomplished the days, we departed and went on our journey; and they all, with wives and children, brought us on our way till we were out of the city: and kneeling down on the beach, we prayed, and bade each other farewell;</VERS>\r\n      <VERS vnumber=\"6\">and we went on board the ship, but they returned home again.</VERS>\r\n      <VERS vnumber=\"7\">And when we had finished the voyage from Tyre, we arrived at Ptolemais; and we saluted the brethren, and abode with them one day.</VERS>\r\n      <VERS vnumber=\"8\">And on the morrow we departed, and came unto Caesarea: and entering into the house of Philip the evangelist, who was one of the seven, we abode with him.</VERS>\r\n      <VERS vnumber=\"9\">Now this man had four virgin daughters, who prophesied.</VERS>\r\n      <VERS vnumber=\"10\">And as we tarried there some days, there came down from Judaea a certain prophet, named Agabus.</VERS>\r\n      <VERS vnumber=\"11\">And coming to us, and taking Paul`s girdle, he bound his own feet and hands, and said, Thus saith the Holy Spirit, So shall the Jews at Jerusalem bind the man that owneth this girdle, and shall deliver him into the hands of the Gentiles.</VERS>\r\n      <VERS vnumber=\"12\">And when we heard these things, both we and they of that place besought him not to go up to Jerusalem.</VERS>\r\n      <VERS vnumber=\"13\">Then Paul answered, What do ye, weeping and breaking my heart? for I am ready not to be bound only, but also to die at Jerusalem for the name of the Lord Jesus.</VERS>\r\n      <VERS vnumber=\"14\">And when he would not be persuaded, we ceased, saying, The will of the Lord be done.</VERS>\r\n      <VERS vnumber=\"15\">And after these days we took up our baggage and went up to Jerusalem.</VERS>\r\n      <VERS vnumber=\"16\">And there went with us also [certain] of the disciples from Caesarea, bringing [with them] one Mnason of Cyprus, an early disciple, with whom we should lodge.</VERS>\r\n      <VERS vnumber=\"17\">And when we were come to Jerusalem, the brethren received us gladly.</VERS>\r\n      <VERS vnumber=\"18\">And the day following Paul went in with us unto James; and all the elders were present.</VERS>\r\n      <VERS vnumber=\"19\">And when he had saluted them, he rehearsed one by one the things which God had wrought among the Gentiles through his ministry.</VERS>\r\n      <VERS vnumber=\"20\">And they, when they heard it, glorified God; and they said unto him, Thou seest, brother, how many thousands there are among the Jews of them that have believed; and they are all zealous for the law:</VERS>\r\n      <VERS vnumber=\"21\">and they have been informed concerning thee, that thou teachest all the Jews who are among the Gentiles to forsake Moses, telling them not to circumcise their children neither to walk after the customs.</VERS>\r\n      <VERS vnumber=\"22\">What is it therefore? They will certainly hear that thou art come.</VERS>\r\n      <VERS vnumber=\"23\">Do therefore this that we say to thee: We have four men that have a vow on them;</VERS>\r\n      <VERS vnumber=\"24\">these take, and purify thyself with them, and be at charges for them, that they may shave their heads: and all shall know that there is no truth in the things whereof they have been informed concerning thee; but that thou thyself also walkest orderly, keeping the law.</VERS>\r\n      <VERS vnumber=\"25\">But as touching the Gentiles that have believed, we wrote, giving judgment that they should keep themselves from things sacrificed to idols, and from blood, and from what is strangled, and from fornication.</VERS>\r\n      <VERS vnumber=\"26\">Then Paul took the men, and the next day purifying himself with them went into the temple, declaring the fulfilment of the days of purification, until the offering was offered for every one of them.</VERS>\r\n      <VERS vnumber=\"27\">And when the seven days were almost completed, the Jews from Asia, when they saw him in the temple, stirred up all the multitude and laid hands on him,</VERS>\r\n      <VERS vnumber=\"28\">crying out, Men of Israel, help: This is the man that teacheth all men everywhere against the people, and the law, and this place; and moreover he brought Greeks also into the temple, and hath defiled this holy place.</VERS>\r\n      <VERS vnumber=\"29\">For they had before seen with him in the city Trophimus the Ephesian, whom they supposed that Paul had brought into the temple.</VERS>\r\n      <VERS vnumber=\"30\">And all the city was moved, and the people ran together; and they laid hold on Paul, and dragged him out of the temple: and straightway the doors were shut.</VERS>\r\n      <VERS vnumber=\"31\">And as they were seeking to kill him, tidings came up to the chief captain of the band, that all Jerusalem was in confusion.</VERS>\r\n      <VERS vnumber=\"32\">And forthwith he took soldiers and centurions, and ran down upon them: and they, when they saw the chief captain and the soldiers, left off beating Paul.</VERS>\r\n      <VERS vnumber=\"33\">Then the chief captain came near, and laid hold on him, and commanded him to be bound with two chains; and inquired who he was, and what he had done.</VERS>\r\n      <VERS vnumber=\"34\">And some shouted one thing, some another, among the crowd: and when he could not know the certainty for the uproar, he commanded him to be brought into the castle.</VERS>\r\n      <VERS vnumber=\"35\">And when he came upon the stairs, so it was that he was borne of the soldiers for the violence of the crowd;</VERS>\r\n      <VERS vnumber=\"36\">for the multitude of the people followed after, crying out, Away with him.</VERS>\r\n      <VERS vnumber=\"37\">And as Paul was about to be brought into the castle, he saith unto the chief captain, May I say something unto thee? And he said, Dost thou know Greek?</VERS>\r\n      <VERS vnumber=\"38\">Art thou not then the Egyptian, who before these days stirred up to sedition and led out into the wilderness the four thousand men of the Assassins?</VERS>\r\n      <VERS vnumber=\"39\">But Paul said, I am a Jew, of Tarsus in Cilicia, a citizen of no mean city: and I beseech thee, give me leave to speak unto the people.</VERS>\r\n      <VERS vnumber=\"40\">And when he had given him leave, Paul, standing on the stairs, beckoned with the hand unto the people; and when there was made a great silence, he spake unto them in the Hebrew language, saying,</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"22\">\r\n      <VERS vnumber=\"1\">Brethren and fathers, hear ye the defence which I now make unto you.</VERS>\r\n      <VERS vnumber=\"2\">And when they heard that he spake unto them in the Hebrew language, they were the more quiet: and he saith,</VERS>\r\n      <VERS vnumber=\"3\">I am a Jew, born in Tarsus of Cilicia, but brought up in this city, at the feet of Gamaliel, instructed according to the strict manner of the law of our fathers, being zealous for God, even as ye all are this day:</VERS>\r\n      <VERS vnumber=\"4\">and I persecuted this Way unto the death, binding and delivering into prisons both men and women.</VERS>\r\n      <VERS vnumber=\"5\">As 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 journeyed to Damascus to bring them also that were there unto Jerusalem in bonds to be punished.</VERS>\r\n      <VERS vnumber=\"6\">And it came to pass, that, as I made my journey, and drew nigh unto Damascus, about noon, suddenly there shone from heaven a great light round about me.</VERS>\r\n      <VERS vnumber=\"7\">And I fell unto the ground, and heard a voice saying unto me, Saul, Saul, why persecutest thou me?</VERS>\r\n      <VERS vnumber=\"8\">And I answered, Who art thou, Lord? And he said unto me, I am Jesus of Nazareth, whom thou persecutest.</VERS>\r\n      <VERS vnumber=\"9\">And they that were with me beheld indeed the light, but they heard not the voice of him that spake to me.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And one Ananias, a devout man according to the law, well reported of by all the Jews that dwelt there,</VERS>\r\n      <VERS vnumber=\"13\">came unto me, and standing by me said unto me, Brother Saul, receive thy sight. And in that very hour I looked up on him.</VERS>\r\n      <VERS vnumber=\"14\">And he said, The God of our fathers hath appointed thee to know his will, and to see the Righteous One, and to hear a voice from his mouth.</VERS>\r\n      <VERS vnumber=\"15\">For thou shalt be a witness for him unto all men of what thou hast seen and heard.</VERS>\r\n      <VERS vnumber=\"16\">And now why tarriest thou? arise, and be baptized, and wash away thy sins, calling on his name.</VERS>\r\n      <VERS vnumber=\"17\">And it came to pass, that, when I had returned to Jerusalem, and while I prayed in the temple, I fell into a trance,</VERS>\r\n      <VERS vnumber=\"18\">and saw him saying unto me, Make haste, and get thee quickly out of Jerusalem; because they will not receive of thee testimony concerning me.</VERS>\r\n      <VERS vnumber=\"19\">And I said, Lord, they themselves know that I imprisoned and beat in every synagogue them that believed on thee:</VERS>\r\n      <VERS vnumber=\"20\">and when the blood of Stephen thy witness was shed, I also was standing by, and consenting, and keeping the garments of them that slew him.</VERS>\r\n      <VERS vnumber=\"21\">And he said unto me, Depart: for I will send thee forth far hence unto the Gentiles.</VERS>\r\n      <VERS vnumber=\"22\">And they gave him audience unto this word; and they lifted up their voice, and said, Away with such a fellow from the earth: for it is not fit that he should live.</VERS>\r\n      <VERS vnumber=\"23\">And as they cried out, and threw off their garments, and cast dust into the air,</VERS>\r\n      <VERS vnumber=\"24\">the chief captain commanded him be brought into the castle, bidding that he should be examined by scourging, that he might know for what cause they so shouted against him.</VERS>\r\n      <VERS vnumber=\"25\">And when they had tied him up with the thongs, Paul said unto the centurion that stood by, Is it lawful for you to scourge a man that is a Roman, and uncondemned?</VERS>\r\n      <VERS vnumber=\"26\">And when the centurion heard it, he went to the chief captain and told him, saying, What art thou about to do? for this man is a Roman.</VERS>\r\n      <VERS vnumber=\"27\">And the chief captain came and said unto him, Tell me, art thou a Roman? And he said, Yea.</VERS>\r\n      <VERS vnumber=\"28\">And the chief captain answered, With a great sum obtained I this citizenship. And Paul said, But I am [a Roman] born.</VERS>\r\n      <VERS vnumber=\"29\">They then that were about to examine him straightway departed from him: and the chief captain also was afraid when he knew that he was a Roman, and because he had bound him.</VERS>\r\n      <VERS vnumber=\"30\">But on the morrow, desiring to know the certainty wherefore he was accused of the Jews, he loosed him, and commanded the chief priests and all the council to come together, and brought Paul down and set him before them.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"23\">\r\n      <VERS vnumber=\"1\">And Paul, looking stedfastly on the council, said, Brethren, I have lived before God in all good conscience until this day.</VERS>\r\n      <VERS vnumber=\"2\">And the high priest Ananias commanded them that stood by him to smite him on the mouth.</VERS>\r\n      <VERS vnumber=\"3\">Then said Paul unto him, God shall smite thee, thou whited wall: and sittest thou to judge me according to the law, and commandest me to be smitten contrary to the law?</VERS>\r\n      <VERS vnumber=\"4\">And they that stood by said, Revilest thou God`s high priest?</VERS>\r\n      <VERS vnumber=\"5\">And Paul said, I knew not, brethren, that he was high priest: for it is written, Thou shalt not speak evil of a ruler of thy people.</VERS>\r\n      <VERS vnumber=\"6\">But when Paul perceived that the one part were Sadducees and the other Pharisees, he cried out in the council, Brethren, I am a Pharisee, a son of Pharisees: touching the hope and resurrection of the dead I am called in question.</VERS>\r\n      <VERS vnumber=\"7\">And when he had so said, there arose a dissension between the Pharisees and Sadducees; and the assembly was divided.</VERS>\r\n      <VERS vnumber=\"8\">For the Sadducees say that there is no resurrection, neither angel, nor spirit; but the Pharisees confess both.</VERS>\r\n      <VERS vnumber=\"9\">And there arose a great clamor: and some of the scribes of the Pharisees part stood up, and strove, saying, We find no evil in this man: and what if a spirit hath spoken to him, or an angel?</VERS>\r\n      <VERS vnumber=\"10\">And when there arose a great dissension, the chief captain, fearing lest Paul should be torn in pieces by them, commanded the soldiers to go down and take him by force from among them, and bring him into the castle.</VERS>\r\n      <VERS vnumber=\"11\">And the night following the Lord stood by him, and said, Be of good cheer: for as thou hast testified concerning me at Jerusalem, so must thou bear witness also at Rome.</VERS>\r\n      <VERS vnumber=\"12\">And when it was day, the Jews banded together, and bound themselves under a curse, saying that they would neither eat nor drink till they had killed Paul.</VERS>\r\n      <VERS vnumber=\"13\">And they were more than forty that made this conspiracy.</VERS>\r\n      <VERS vnumber=\"14\">And they came to the chief priests and the elders, and said, We have bound ourselves under a great curse, to taste nothing until we have killed Paul.</VERS>\r\n      <VERS vnumber=\"15\">Now therefore do ye with the council signify to the chief captain that he bring him down unto you, as though ye would judge of his case more exactly: and we, before he comes near, are ready to slay him.</VERS>\r\n      <VERS vnumber=\"16\">But Paul`s sister`s son heard of their lying in wait, and he came and entered into the castle and told Paul.</VERS>\r\n      <VERS vnumber=\"17\">And Paul called unto him one of the centurions, and said, Bring this young man unto the chief captain; for he hath something to tell him.</VERS>\r\n      <VERS vnumber=\"18\">So he took him, and brought him to the chief captain, and saith, Paul the prisoner called me unto him, and asked me to bring this young man unto thee, who hath something to say to thee.</VERS>\r\n      <VERS vnumber=\"19\">And the chief captain took him by the hand, and going aside asked him privately, What is it that thou hast to tell me?</VERS>\r\n      <VERS vnumber=\"20\">And he said, The Jews have agreed to ask thee to bring down Paul tomorrow unto the council, as though thou wouldest inquire somewhat more exactly concerning him.</VERS>\r\n      <VERS vnumber=\"21\">Do not thou therefore yield unto them: for there lie in wait for him of them more than forty men, who have bound themselves under a curse, neither to eat nor to drink till they have slain him: and now are they ready, looking for the promise from thee.</VERS>\r\n      <VERS vnumber=\"22\">So the chief captain let the young man go, charging him, Tell no man that thou hast signified these things to me.</VERS>\r\n      <VERS vnumber=\"23\">And he called unto him two of the centurions, and said, Make ready two hundred soldiers to go as far as Caesarea, and horsemen threescore and ten, and spearmen two hundred, at the third hour of the night:</VERS>\r\n      <VERS vnumber=\"24\">and [he bade them] provide beasts, that they might set Paul thereon, and bring him safe unto Felix the governor.</VERS>\r\n      <VERS vnumber=\"25\">And he wrote a letter after this form:</VERS>\r\n      <VERS vnumber=\"26\">Claudius Lysias unto the most excellent governor Felix, greeting.</VERS>\r\n      <VERS vnumber=\"27\">This man was seized by the Jews, and was about to be slain of them, when I came upon them with the soldiers and rescued him, having learned that he was a Roman.</VERS>\r\n      <VERS vnumber=\"28\">And desiring to know the cause wherefore they accused him, I brought him down unto their council:</VERS>\r\n      <VERS vnumber=\"29\">whom I found to be accused about questions of their law, but to have nothing laid to his charge worthy of death or of bonds.</VERS>\r\n      <VERS vnumber=\"30\">And when it was shown to me that there would be a plot against the man, I sent him to thee forthwith, charging his accusers also to speak against him before thee.</VERS>\r\n      <VERS vnumber=\"31\">So the soldiers, as it was commanded them, took Paul and brought him by night to Antipatris.</VERS>\r\n      <VERS vnumber=\"32\">But on the morrow they left the horsemen to go with him, and returned to the castle:</VERS>\r\n      <VERS vnumber=\"33\">and they, when they came to Caesarea and delivered the letter to the governor, presented Paul also before him.</VERS>\r\n      <VERS vnumber=\"34\">And when he had read it, he asked of what province he was; and when he understood that he was of Cilicia,</VERS>\r\n      <VERS vnumber=\"35\">I will hear thee fully, said he, when thine accusers also are come: and he commanded him to be kept in Herod`s palace.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"24\">\r\n      <VERS vnumber=\"1\">And after five days the high priest Ananias came down with certain elders, and [with] an orator, one Tertullus; and they informed the governor against Paul.</VERS>\r\n      <VERS vnumber=\"2\">And when he was called, Tertullus began to accuse him, saying, Seeing that by thee we enjoy much peace, and that by the providence evils are corrected for this nation,</VERS>\r\n      <VERS vnumber=\"3\">we accept it in all ways and in all places, most excellent Felix, with all thankfulness.</VERS>\r\n      <VERS vnumber=\"4\">But, that I be not further tedious unto thee, I entreat thee to hear us of thy clemency a few words.</VERS>\r\n      <VERS vnumber=\"5\">For we have found this man a pestilent fellow, and a mover of insurrections among all the Jews throughout the world, and a ringleader of the sect of the Nazarenes:</VERS>\r\n      <VERS vnumber=\"6\">who moreover assayed to profane the temple: on whom also we laid hold: [and we would have judged him according to our law.]</VERS>\r\n      <VERS vnumber=\"7\">[But the chief captain Lysias came, and with great violence took him away out of our hands,]</VERS>\r\n      <VERS vnumber=\"8\">[commanding his accusers to come before thee.] from whom thou wilt be able, by examining him thyself, to take knowledge of all these things whereof we accuse him.</VERS>\r\n      <VERS vnumber=\"9\">And the Jews also joined in the charge, affirming that these things were so.</VERS>\r\n      <VERS vnumber=\"10\">And when the governor had beckoned unto him to speak, Paul answered, Forasmuch as I know that thou hast been of many years a judge unto this nation, I cheerfully make my defense:</VERS>\r\n      <VERS vnumber=\"11\">Seeing that thou canst take knowledge that it is not more than twelve days since I went up to worship at Jerusalem:</VERS>\r\n      <VERS vnumber=\"12\">and neither in the temple did they find me disputing with any man or stirring up a crowd, nor in the synagogues, nor in the city.</VERS>\r\n      <VERS vnumber=\"13\">Neither can they prove to thee the things whereof they now accuse me.</VERS>\r\n      <VERS vnumber=\"14\">But this I confess unto thee, that after the Way which they call a sect, so serve I the God of our fathers, believing all things which are according to the law, and which are written in the prophets;</VERS>\r\n      <VERS vnumber=\"15\">having hope toward God, which these also themselves look for, that there shall be a resurrection both of the just and unjust.</VERS>\r\n      <VERS vnumber=\"16\">Herein I also exercise myself to have a conscience void of offence toward God and men always.</VERS>\r\n      <VERS vnumber=\"17\">Now after some years I came to bring alms to my nation, and offerings:</VERS>\r\n      <VERS vnumber=\"18\">amidst which they found me purified in the temple, with no crowd, nor yet with tumult: but [there were] certain Jews from Asia--</VERS>\r\n      <VERS vnumber=\"19\">who ought to have been here before thee, and to make accusation, if they had aught against me.</VERS>\r\n      <VERS vnumber=\"20\">Or else let these men themselves say what wrong-doing they found when I stood before the council,</VERS>\r\n      <VERS vnumber=\"21\">except it be for this one voice, that I cried standing among them, Touching the resurrection of the dead I am called in question before you this day.</VERS>\r\n      <VERS vnumber=\"22\">But Felix, having more exact knowledge concerning the Way, deferred them, saying, When Lysias the chief captain shall come down, I will determine your matter.</VERS>\r\n      <VERS vnumber=\"23\">And he gave order to the centurion that he should be kept in charge, and should have indulgence; and not to forbid any of his friends to minister unto him.</VERS>\r\n      <VERS vnumber=\"24\">But after certain days, Felix came with Drusilla, his wife, who was a Jewess, and sent for Paul, and heard him concerning the faith in Christ Jesus.</VERS>\r\n      <VERS vnumber=\"25\">And as he reasoned of righteousness, and self-control, and the judgment to come, Felix was terrified, and answered, Go thy way for this time; and when I have a convenient season, I will call thee unto me.</VERS>\r\n      <VERS vnumber=\"26\">He hoped withal that money would be given him of Paul: wherefore also he sent for him the oftener, and communed with him.</VERS>\r\n      <VERS vnumber=\"27\">But when two years were fulfilled, Felix was succeeded by Porcius Festus; and desiring to gain favor with the Jews, Felix left Paul in bonds.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"25\">\r\n      <VERS vnumber=\"1\">Festus therefore, having come into the province, after three days went up to Jerusalem from Caesarea.</VERS>\r\n      <VERS vnumber=\"2\">And the chief priests and the principal men of the Jews informed him against Paul; and they besought him,</VERS>\r\n      <VERS vnumber=\"3\">asking a favor against him, that he would send for him to Jerusalem; laying a plot to kill him on the way.</VERS>\r\n      <VERS vnumber=\"4\">Howbeit Festus answered, that Paul was kept in charge at Caesarea, and that he himself was about to depart [thither] shortly.</VERS>\r\n      <VERS vnumber=\"5\">Let them therefore, saith he, that are of power among you go down with me, and if there is anything amiss in the man, let them accuse him.</VERS>\r\n      <VERS vnumber=\"6\">And when he had tarried among them not more than eight or ten days, he went down unto Caesarea; and on the morrow he sat on the judgment-seat, and commanded Paul to be brought.</VERS>\r\n      <VERS vnumber=\"7\">And when he was come, the Jews that had come down from Jerusalem stood round about him, bringing against him many and grievous charges which they could not prove;</VERS>\r\n      <VERS vnumber=\"8\">while Paul said in his defense, Neither against the law of the Jews, nor against the temple, nor against Caesar, have I sinned at all.</VERS>\r\n      <VERS vnumber=\"9\">But Festus, desiring to gain favor with the Jews, answered Paul and said, Wilt thou go up to Jerusalem, and there be judged of these things before me?</VERS>\r\n      <VERS vnumber=\"10\">But Paul said, I am standing before Caesar`s judgment-seat, where I ought to be judged: to the Jews have I done no wrong, as thou also very well knowest.</VERS>\r\n      <VERS vnumber=\"11\">If then I am a wrong-doer, and have committed anything worthy of death, I refuse not to die; but if none of those things is [true] whereof these accuse me, no man can give me up unto them. I appeal unto Caesar.</VERS>\r\n      <VERS vnumber=\"12\">Then Festus, when he had conferred with the council, answered, Thou hast appealed unto Caesar: unto Caesar shalt thou go.</VERS>\r\n      <VERS vnumber=\"13\">Now when certain days were passed, Agrippa the King and Bernice arrived at Caesarea, and saluted Festus.</VERS>\r\n      <VERS vnumber=\"14\">And as they tarried there many days, Festus laid Paul`s case before the King, saying, There is a certain man left a prisoner by Felix;</VERS>\r\n      <VERS vnumber=\"15\">about whom, when I was at Jerusalem, the chief priests and the elders of the Jews informed [me], asking for sentence against him.</VERS>\r\n      <VERS vnumber=\"16\">To whom I answered, that it is not the custom of the Romans to give up any man, before that the accused have the accusers face to face, and have had opportunity to make his defense concerning the matter laid against him.</VERS>\r\n      <VERS vnumber=\"17\">When therefore they were come together here, I made no delay, but on the next day sat on the judgment-seat, and commanded the man to be brought.</VERS>\r\n      <VERS vnumber=\"18\">Concerning whom, when the accusers stood up, they brought no charge of such evil things as I supposed;</VERS>\r\n      <VERS vnumber=\"19\">but had certain questions against him of their own religion, and of one Jesus, who was dead, whom Paul affirmed to be alive.</VERS>\r\n      <VERS vnumber=\"20\">And I, being perplexed how to inquire concerning these things, asked whether he would go to Jerusalem and there be judged of these matters.</VERS>\r\n      <VERS vnumber=\"21\">But when Paul had appealed to be kept for the decision of the emperor, I commanded him to be kept till I should send him to Caesar.</VERS>\r\n      <VERS vnumber=\"22\">And Agrippa [said] unto Festus, I also could wish to hear the man myself. To-morrow, saith he, thou shalt hear him.</VERS>\r\n      <VERS vnumber=\"23\">So on the morrow, when Agrippa was come, and Bernice, with great pomp, and they were entered into the place of hearing with the chief captains and principal men of the city, at the command of Festus Paul was brought in.</VERS>\r\n      <VERS vnumber=\"24\">And Festus saith, King Agrippa, and all men who are here present with us, ye behold this man, about whom all the multitude of the Jews made suit to me, both at Jerusalem and here, crying that he ought not to live any longer.</VERS>\r\n      <VERS vnumber=\"25\">But I found that he had committed nothing worthy of death: and as he himself appealed to the emperor I determined to send him.</VERS>\r\n      <VERS vnumber=\"26\">Of whom I have no certain thing to write unto my lord. Wherefore I have brought him forth before you, and specially before thee, king Agrippa, that, after examination had, I may have somewhat to write.</VERS>\r\n      <VERS vnumber=\"27\">For it seemeth to me unreasonable, in sending a prisoner, not withal to signify the charges against him.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"26\">\r\n      <VERS vnumber=\"1\">And Agrippa said unto Paul, Thou art permitted to speak for thyself. Then Paul stretched forth his hand, and made his defence:</VERS>\r\n      <VERS vnumber=\"2\">I think myself happy, king Agrippa, that I am to make my defense before thee this day touching all the things whereof I am accused by the Jews:</VERS>\r\n      <VERS vnumber=\"3\">especially because thou art expert in all customs and questions which are among the Jews: wherefore I beseech thee to hear me patiently.</VERS>\r\n      <VERS vnumber=\"4\">My manner of life then from my youth up, which was from the beginning among mine own nation and at Jerusalem, know all the Jews;</VERS>\r\n      <VERS vnumber=\"5\">having knowledge of me from the first, if they be willing to testify, that after the straitest sect of our religion I lived a Pharisee.</VERS>\r\n      <VERS vnumber=\"6\">And now I stand [here] to be judged for the hope of the promise made of God unto our fathers;</VERS>\r\n      <VERS vnumber=\"7\">unto which [promise] our twelve tribes, earnestly serving [God] night and day, hope to attain. And concerning this hope I am accused by the Jews, O king!</VERS>\r\n      <VERS vnumber=\"8\">Why is it judged incredible with you, if God doth raise the dead?</VERS>\r\n      <VERS vnumber=\"9\">I verily thought with myself that I ought to do many things contrary to the name of Jesus of Nazareth.</VERS>\r\n      <VERS vnumber=\"10\">And this I also did in Jerusalem: and I both shut up many of the saints in prisons, having received authority from the chief priests, and when they were put to death I gave my vote against them.</VERS>\r\n      <VERS vnumber=\"11\">And punishing them oftentimes in all the synagogues, I strove to make them blaspheme; and being exceedingly mad against them, I persecuted them even unto foreign cities.</VERS>\r\n      <VERS vnumber=\"12\">Whereupon as I journeyed to Damascus with the authority and commission of the chief priests,</VERS>\r\n      <VERS vnumber=\"13\">at midday, O king, I saw on the way a light from heaven, above the brightness of the sun, shining round about me and them that journeyed with me.</VERS>\r\n      <VERS vnumber=\"14\">And when we were all fallen to the earth, I heard a voice saying unto me in the Hebrew language, Saul, Saul, why persecutest thou me? it is hard for thee to kick against the goad.</VERS>\r\n      <VERS vnumber=\"15\">And I said, Who art thou, Lord? And the Lord said, I am Jesus whom thou persecutest.</VERS>\r\n      <VERS vnumber=\"16\">But arise, and stand upon thy feet: for to this end have I appeared unto thee, to appoint thee a minister and a witness both of the things wherein thou hast seen me, and of the things wherein I will appear unto thee;</VERS>\r\n      <VERS vnumber=\"17\">delivering thee from the people, and from the Gentiles, unto whom I send thee,</VERS>\r\n      <VERS vnumber=\"18\">to open their eyes, that they may turn from darkness to light and from the power of Satan unto God, that they may receive remission of sins and an inheritance among them that are sanctified by faith in me.</VERS>\r\n      <VERS vnumber=\"19\">Wherefore, O king Agrippa, I was not disobedient unto the heavenly vision:</VERS>\r\n      <VERS vnumber=\"20\">but declared both to them of Damascus first and at Jerusalem, and throughout all the country of Judaea, and also to the Gentiles, that they should repent and turn to God, doing works worthy of repentance.</VERS>\r\n      <VERS vnumber=\"21\">For this cause the Jews seized me in the temple, and assayed to kill me.</VERS>\r\n      <VERS vnumber=\"22\">Having therefore obtained the help that is from God, I stand unto this day testifying both to small and great, saying nothing but what the prophets and Moses did say should come;</VERS>\r\n      <VERS vnumber=\"23\">how that the Christ must suffer, [and] how that he first by the resurrection of the dead should proclaim light both to the people and to the Gentiles.</VERS>\r\n      <VERS vnumber=\"24\">And as he thus made his defense, Festus saith with a loud voice, Paul, thou art mad; thy much learning is turning thee mad.</VERS>\r\n      <VERS vnumber=\"25\">But Paul saith, I am not mad, most excellent Festus; but speak forth words of truth and soberness.</VERS>\r\n      <VERS vnumber=\"26\">For the king knoweth of these things, unto whom also I speak freely: for I am persuaded that none of these things is hidden from him; for this hath not been done in a corner.</VERS>\r\n      <VERS vnumber=\"27\">King Agrippa, believest thou the prophets? I know that thou believest.</VERS>\r\n      <VERS vnumber=\"28\">And Agrippa [said] unto Paul, With but little persuasion thou wouldest fain make me a Christian.</VERS>\r\n      <VERS vnumber=\"29\">And Paul [said], I would to God, that whether with little or with much, not thou only, but also all that hear me this day, might become such as I am, except these bonds.</VERS>\r\n      <VERS vnumber=\"30\">And the king rose up, and the governor, and Bernice, and they that sat with them:</VERS>\r\n      <VERS vnumber=\"31\">and when they had withdrawn, they spake one to another, saying, This man doeth nothing worthy of death or of bonds.</VERS>\r\n      <VERS vnumber=\"32\">And Agrippa said unto Festus, This man might have been set at liberty, if he had not appealed unto Caesar.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"27\">\r\n      <VERS vnumber=\"1\">And when it was determined that we should sail for Italy, they delivered Paul and certain other prisoners to a centurion named Julius, of the Augustan band.</VERS>\r\n      <VERS vnumber=\"2\">And embarking in a ship of Adramyttium, which was about to sail unto the places on the coast of Asia, we put to sea, Aristarchus, a Macedonian of Thessalonica, being with us.</VERS>\r\n      <VERS vnumber=\"3\">And the next day we touched at Sidon: and Julius treated Paul kindly, and gave him leave to go unto his friends and refresh himself.</VERS>\r\n      <VERS vnumber=\"4\">And putting to sea from thence, we sailed under the lee of Cyprus, because the winds were contrary.</VERS>\r\n      <VERS vnumber=\"5\">And when we had sailed across the sea which is off Cilicia and Pamphylia, we came to Myra, [a city] of Lycia.</VERS>\r\n      <VERS vnumber=\"6\">And there the centurion found a ship of Alexandria sailing for Italy; and he put us therein.</VERS>\r\n      <VERS vnumber=\"7\">And when we had sailed slowly many days, and were come with difficulty over against Cnidus, the wind not further suffering us, we sailed under the lee of Crete, over against Salmone;</VERS>\r\n      <VERS vnumber=\"8\">and with difficulty coasting along it we came unto a certain place called Fair Havens; nigh whereunto was the city of Lasea.</VERS>\r\n      <VERS vnumber=\"9\">And when much time was spent, and the voyage was now dangerous, because the Fast was now already gone by, Paul admonished them,</VERS>\r\n      <VERS vnumber=\"10\">and said unto them, Sirs, I perceive that the voyage will be with injury and much loss, not only of the lading and the ship, but also of our lives.</VERS>\r\n      <VERS vnumber=\"11\">But the centurion gave more heed to the master and to the owner of the ship, than to those things which were spoken by Paul.</VERS>\r\n      <VERS vnumber=\"12\">And because the haven was not commodious to winter in, the more part advised to put to sea from thence, if by any means they could reach Phoenix, and winter [there; which is] a haven of Crete, looking northeast and south-east.</VERS>\r\n      <VERS vnumber=\"13\">And when the south wind blew softly, supposing that they had obtained their purpose, they weighed anchor and sailed along Crete, close in shore.</VERS>\r\n      <VERS vnumber=\"14\">But after no long time there beat down from it a tempestuous wind, which is called Euraquilo:</VERS>\r\n      <VERS vnumber=\"15\">and when the ship was caught, and could not face the wind, we gave way [to it,] and were driven.</VERS>\r\n      <VERS vnumber=\"16\">And running under the lee of a small island called Cauda, we were able, with difficulty, to secure the boat:</VERS>\r\n      <VERS vnumber=\"17\">and when they had hoisted it up, they used helps, under-girding the ship; and, fearing lest they should be cast upon the Syrtis, they lowered the gear, and so were driven.</VERS>\r\n      <VERS vnumber=\"18\">And as we labored exceedingly with the storm, the next day they began to throw the [the freight] overboard;</VERS>\r\n      <VERS vnumber=\"19\">and the third day they cast out with their own hands the tackling of the ship.</VERS>\r\n      <VERS vnumber=\"20\">And when neither sun nor stars shone upon [us] for many days, and no small tempest lay on [us,] all hope that we should be saved was now taken away.</VERS>\r\n      <VERS vnumber=\"21\">And when they had been long without food, then Paul stood forth in the midst of them, and said, Sirs, ye should have hearkened unto me, and not have set sail from Crete, and have gotten this injury and loss.</VERS>\r\n      <VERS vnumber=\"22\">And now I exhort you to be of good cheer; for there shall be no loss of life among you, but [only] of the ship.</VERS>\r\n      <VERS vnumber=\"23\">For there stood by me this night an angel of the God whose I am, whom also I serve,</VERS>\r\n      <VERS vnumber=\"24\">saying, Fear not, Paul; thou must stand before Caesar: and lo, God hath granted thee all them that sail with thee.</VERS>\r\n      <VERS vnumber=\"25\">Wherefore, sirs, be of good cheer: for I believe God, that it shall be even so as it hath been spoken unto me.</VERS>\r\n      <VERS vnumber=\"26\">But we must be cast upon a certain island.</VERS>\r\n      <VERS vnumber=\"27\">But when the fourteenth night was come, as we were driven to and fro in the [sea of] Adria, about midnight the sailors surmised that they were drawing near to some country:</VERS>\r\n      <VERS vnumber=\"28\">and they sounded, and found twenty fathoms; and after a little space, they sounded again, and found fifteen fathoms.</VERS>\r\n      <VERS vnumber=\"29\">And fearing lest haply we should be cast ashore on rocky ground, they let go four anchors from the stern, and wished for the day.</VERS>\r\n      <VERS vnumber=\"30\">And as the sailors were seeking to flee out of the ship, and had lowered the boat into the sea, under color as though they would lay out anchors from the foreship,</VERS>\r\n      <VERS vnumber=\"31\">Paul said to the centurion and to the soldiers, Except these abide in the ship, ye cannot be saved.</VERS>\r\n      <VERS vnumber=\"32\">Then the soldiers cut away the ropes of the boat, and let her fall off.</VERS>\r\n      <VERS vnumber=\"33\">And while the day was coming on, Paul besought them all to take some food, saying, This day is the fourteenth day that ye wait and continue fasting, having taken nothing.</VERS>\r\n      <VERS vnumber=\"34\">Wherefore I beseech you to take some food: for this is for your safety: for there shall not a hair perish from the head of any of you.</VERS>\r\n      <VERS vnumber=\"35\">And when he had said this, and had taken bread, he gave thanks to God in the presence of all; and he brake it, and began to eat.</VERS>\r\n      <VERS vnumber=\"36\">Then were they all of good cheer, and themselves also took food.</VERS>\r\n      <VERS vnumber=\"37\">And we were in all in the ship two hundred threescore and sixteen souls.</VERS>\r\n      <VERS vnumber=\"38\">And when they had eaten enough, they lightened the ship, throwing out the wheat into the sea.</VERS>\r\n      <VERS vnumber=\"39\">And when it was day, they knew not the land: but they perceived a certain bay with a beach, and they took counsel whether they could drive the ship upon it.</VERS>\r\n      <VERS vnumber=\"40\">And casting off the anchors, they left them in the sea, at the same time loosing the bands of the rudders; and hoisting up the foresail to the wind, they made for the beach.</VERS>\r\n      <VERS vnumber=\"41\">But lighting upon a place where two seas met, they ran the vessel aground; and the foreship struck and remained unmoveable, but the stern began to break up by the violence [of the waves].</VERS>\r\n      <VERS vnumber=\"42\">And the soldiers` counsel was to kill the prisoners, lest any [of them] should swim out, and escape.</VERS>\r\n      <VERS vnumber=\"43\">But the centurion, desiring to save Paul, stayed them from their purpose; and commanded that they who could swim should cast themselves overboard, and get first to the land;</VERS>\r\n      <VERS vnumber=\"44\">and the rest, some on planks, and some on [other] things from the ship. And so it came to pass, that they all escaped safe to the land.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"28\">\r\n      <VERS vnumber=\"1\">And when we were escaped, then we knew that the island was called Melita.</VERS>\r\n      <VERS vnumber=\"2\">And the barbarians showed us no common kindness; for they kindled a fire, and received us all, because of the present rain, and because of the cold.</VERS>\r\n      <VERS vnumber=\"3\">But when Paul had gathered a bundle of sticks and laid them on the fire, a viper came out by reason of the heat, and fastened on his hand.</VERS>\r\n      <VERS vnumber=\"4\">And when the barbarians saw the [venomous] creature hanging from his hand, they said one to another, No doubt this man is a murderer, whom, though he hath escaped from the sea, yet Justice hath not suffered to live.</VERS>\r\n      <VERS vnumber=\"5\">Howbeit he shook off the creature into the fire, and took no harm.</VERS>\r\n      <VERS vnumber=\"6\">But they expected that he would have swollen, or fallen down dead suddenly: but when they were long in expectation and beheld nothing amiss came to him, they changed their minds, and said that he was a god.</VERS>\r\n      <VERS vnumber=\"7\">Now in the neighborhood of that place were lands belonging to the chief man of the island, named Publius, who received us, and entertained us three days courteously.</VERS>\r\n      <VERS vnumber=\"8\">And it was so, that the father of Publius lay sick of fever and dysentery: unto whom Paul entered in, and prayed, and laying his hands on him healed him.</VERS>\r\n      <VERS vnumber=\"9\">And when this was done, the rest also that had diseases in the island came, and were cured:</VERS>\r\n      <VERS vnumber=\"10\">who also honored us with many honors; and when we sailed, they put on board such things as we needed.</VERS>\r\n      <VERS vnumber=\"11\">And after three months we set sail in a ship of Alexandria which had wintered in the island, whose sign was The Twin Brothers.</VERS>\r\n      <VERS vnumber=\"12\">And touching at Syracuse, we tarried there three days.</VERS>\r\n      <VERS vnumber=\"13\">And from thence we made a circuit, and arrived at Rhegium: and after one day a south wind sprang up, and on the second day we came to Puteoli;</VERS>\r\n      <VERS vnumber=\"14\">where we found brethren, and were entreated to tarry with them seven days: and so we came to Rome.</VERS>\r\n      <VERS vnumber=\"15\">And from thence the brethren, when they heard of us, came to meet us as far as The Market of Appius and The Three Taverns; whom when Paul saw, he thanked God, and took courage.</VERS>\r\n      <VERS vnumber=\"16\">And when we entered into Rome, Paul was suffered to abide by himself with the soldier that guarded him.</VERS>\r\n      <VERS vnumber=\"17\">And it came to pass, that after three days he called together those that were the chief of the Jews: and when they were come together, he said unto them, I, brethren, though I had done nothing against the people, or the customs of our fathers, yet was delivered prisoner from Jerusalem into the hands of the Romans:</VERS>\r\n      <VERS vnumber=\"18\">who, when they had examined me, desired to set me at liberty, because there was no cause of death in me.</VERS>\r\n      <VERS vnumber=\"19\">But when the Jews spake against it, I was constrained to appeal unto Caesar; not that I had aught whereof to accuse my nation.</VERS>\r\n      <VERS vnumber=\"20\">For this cause therefore did I entreat you to see and to speak with [me]: for because of the hope of Israel I am bound with this chain.</VERS>\r\n      <VERS vnumber=\"21\">And they said unto him, We neither received letters from Judaea concerning thee, nor did any of the brethren come hither and report or speak any harm of thee.</VERS>\r\n      <VERS vnumber=\"22\">But we desire to hear of thee what thou thinkest: for as concerning this sect, it is known to us that everywhere it is spoken against.</VERS>\r\n      <VERS vnumber=\"23\">And when they had appointed him a day, they came to him into his lodging in great number; to whom he expounded [the matter,] testifying the kingdom of God, and persuading them concerning Jesus, both from the law of Moses and from the prophets, from morning till evening.</VERS>\r\n      <VERS vnumber=\"24\">And some believed the things which were spoken, and some disbelieved.</VERS>\r\n      <VERS vnumber=\"25\">And when they agreed not among themselves, they departed after that Paul had spoken one word, Well spake the Holy Spirit through Isaiah the prophet unto your fathers,</VERS>\r\n      <VERS vnumber=\"26\">saying, Go thou unto this people, and say, By hearing ye shall hear, and shall in no wise understand; And seeing ye shall see, and shall in no wise perceive:</VERS>\r\n      <VERS vnumber=\"27\">For this people`s heart is waxed gross, And their ears are dull of hearing, And their eyes they have closed; Lest, haply they should perceive with their eyes, And hear with their ears, And understand with their heart, And should turn again, And I should heal them.</VERS>\r\n      <VERS vnumber=\"28\">Be it known therefore unto you, that this salvation of God is sent unto the Gentiles: they will also hear.</VERS>\r\n      <VERS vnumber=\"29\">[And when he had said these words, the Jews departed, having much disputing among themselves.]</VERS>\r\n      <VERS vnumber=\"30\">And he abode two whole years in his own hired dwelling, and received all that went in unto him,</VERS>\r\n      <VERS vnumber=\"31\">preaching the kingdom of God, and teaching the things concerning the Lord Jesus Christ with all boldness, none forbidding him.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"45\" bname=\"Romans\" bsname=\"Rom\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">Paul, a servant of Jesus Christ, called [to be] an apostle, separated unto the gospel of God,</VERS>\r\n      <VERS vnumber=\"2\">which he promised afore through his prophets in the holy scriptures,</VERS>\r\n      <VERS vnumber=\"3\">concerning his Son, who was born of the seed of David according to the flesh,</VERS>\r\n      <VERS vnumber=\"4\">who was declared [to be] the Son of God with power, according to the spirit of holiness, by the resurrection from the dead; [even] Jesus Christ our Lord,</VERS>\r\n      <VERS vnumber=\"5\">through whom we received grace and apostleship, unto obedience of faith among all the nations, for his name`s sake;</VERS>\r\n      <VERS vnumber=\"6\">among whom are ye also called [to be] Jesus Christ`s:</VERS>\r\n      <VERS vnumber=\"7\">To all that are in Rome, beloved of God, called [to be] saints: Grace to you and peace from God our Father and the Lord Jesus Christ.</VERS>\r\n      <VERS vnumber=\"8\">First, I thank my God through Jesus Christ for you all, that your faith is proclaimed throughout the whole world.</VERS>\r\n      <VERS vnumber=\"9\">For God is my witness, whom I serve in my spirit in the gospel of his Son, how unceasingly I make mention of you, always in my prayers</VERS>\r\n      <VERS vnumber=\"10\">making request, if by any means now at length I may be prospered by the will of God to come unto you.</VERS>\r\n      <VERS vnumber=\"11\">For I long to see you, that I may impart unto you some spiritual gift, to the end ye may be established;</VERS>\r\n      <VERS vnumber=\"12\">that is, that I with you may be comforted in you, each of us by the other`s faith, both yours and mine.</VERS>\r\n      <VERS vnumber=\"13\">And I would not have you ignorant, brethren, that oftentimes I purposed to come unto you (and was hindered hitherto), that I might have some fruit in you also, even as in the rest of the Gentiles.</VERS>\r\n      <VERS vnumber=\"14\">I am debtor both to Greeks and to Barbarians, both to the wise and to the foolish.</VERS>\r\n      <VERS vnumber=\"15\">So, as much as in me is, I am ready to preach the gospel to you also that are in Rome.</VERS>\r\n      <VERS vnumber=\"16\">For I am not ashamed of the gospel: for it is the power of God unto salvation to every one that believeth; to the Jew first, and also to the Greek.</VERS>\r\n      <VERS vnumber=\"17\">For therein is revealed a righteousness of God from faith unto faith: as it is written, But the righteous shall live by faith.</VERS>\r\n      <VERS vnumber=\"18\">For the wrath of God is revealed from heaven against all ungodliness and unrighteousness of men, who hinder the truth in unrighteousness;</VERS>\r\n      <VERS vnumber=\"19\">because that which is known of God is manifest in them; for God manifested it unto them.</VERS>\r\n      <VERS vnumber=\"20\">For the invisible things of him since the creation of the world are clearly seen, being perceived through the things that are made, [even] his everlasting power and divinity; that they may be without excuse:</VERS>\r\n      <VERS vnumber=\"21\">because that, knowing God, they glorified him not as God, neither gave thanks; but became vain in their reasonings, and their senseless heart was darkened.</VERS>\r\n      <VERS vnumber=\"22\">Professing themselves to be wise, they became fools,</VERS>\r\n      <VERS vnumber=\"23\">and changed the glory of the incorruptible God for the likeness of an image of corruptible man, and of birds, and four-footed beasts, and creeping things.</VERS>\r\n      <VERS vnumber=\"24\">Wherefore God gave them up in the lusts of their hearts unto uncleanness, that their bodies should be dishonored among themselves:</VERS>\r\n      <VERS vnumber=\"25\">for that they exchanged the truth of God for a lie, and worshipped and served the creature rather than the Creator, who is blessed for ever. Amen.</VERS>\r\n      <VERS vnumber=\"26\">For this cause God gave them up unto vile passions: for their women changed the natural use into that which is against nature:</VERS>\r\n      <VERS vnumber=\"27\">and likewise also the men, leaving the natural use of the woman, burned in their lust one toward another, men with men working unseemliness, and receiving in themselves that recompense of their error which was due.</VERS>\r\n      <VERS vnumber=\"28\">And even as they refused to have God in [their] knowledge, God gave them up unto a reprobate mind, to do those things which are not fitting;</VERS>\r\n      <VERS vnumber=\"29\">being filled with all unrighteousness, wickedness, covetousness, maliciousness; full of envy, murder, strife, deceit, malignity; whisperers,</VERS>\r\n      <VERS vnumber=\"30\">backbiters, hateful to God, insolent, haughty, boastful, inventors of evil things, disobedient to parents,</VERS>\r\n      <VERS vnumber=\"31\">without understanding, covenant-breakers, without natural affection, unmerciful:</VERS>\r\n      <VERS vnumber=\"32\">who, knowing the ordinance of God, that they that practise such things are worthy of death, not only do the same, but also consent with them that practise them.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">Wherefore thou art without excuse, O man, whosoever thou art that judgest: for wherein thou judges another, thou condemnest thyself; for thou that judgest dost practise the same things.</VERS>\r\n      <VERS vnumber=\"2\">And we know that the judgment of God is according to truth against them that practise such things.</VERS>\r\n      <VERS vnumber=\"3\">And reckonest thou this, O man, who judgest them that practise such things, and doest the same, that thou shalt escape the judgment of God?</VERS>\r\n      <VERS vnumber=\"4\">Or despisest thou the riches of his goodness and forbearance and longsuffering, not knowing that the goodness of God leadeth thee to repentance?</VERS>\r\n      <VERS vnumber=\"5\">but after thy hardness and impenitent heart treasurest up for thyself wrath in the day of wrath and revelation of the righteous judgment of God;</VERS>\r\n      <VERS vnumber=\"6\">who will render to every man according to his works:</VERS>\r\n      <VERS vnumber=\"7\">to them that by patience in well-doing seek for glory and honor and incorruption, eternal life:</VERS>\r\n      <VERS vnumber=\"8\">but unto them that are factious, and obey not the truth, but obey unrighteousness, [shall be] wrath and indignation,</VERS>\r\n      <VERS vnumber=\"9\">tribulation and anguish, upon every soul of man that worketh evil, of the Jew first, and also of the Greek;</VERS>\r\n      <VERS vnumber=\"10\">but glory and honor and peace to every man that worketh good, to the Jew first, and also to the Greek:</VERS>\r\n      <VERS vnumber=\"11\">for there is no respect of persons with God.</VERS>\r\n      <VERS vnumber=\"12\">For as many as have sinned without law shall also perish without the law: and as many as have sinned under the law shall be judged by the law;</VERS>\r\n      <VERS vnumber=\"13\">for not the hearers of the law are just before God, but the doers of the law shall be justified:</VERS>\r\n      <VERS vnumber=\"14\">(for when Gentiles that have not the law do by nature the things of the law, these, not having the law, are the law unto themselves;</VERS>\r\n      <VERS vnumber=\"15\">in that they show the work of the law written in their hearts, their conscience bearing witness therewith, and their thoughts one with another accusing or else excusing [them]);</VERS>\r\n      <VERS vnumber=\"16\">in the day when God shall judge the secrets of men, according to my gospel, by Jesus Christ.</VERS>\r\n      <VERS vnumber=\"17\">But if thou bearest the name of a Jew, and restest upon the law, and gloriest in God,</VERS>\r\n      <VERS vnumber=\"18\">and knowest his will, and approvest the things that are excellent, being instructed out of the law,</VERS>\r\n      <VERS vnumber=\"19\">and art confident that thou thyself art a guide of the blind, a light of them that are in darkness,</VERS>\r\n      <VERS vnumber=\"20\">a corrector of the foolish, a teacher of babes, having in the law the form of knowledge and of the truth;</VERS>\r\n      <VERS vnumber=\"21\">thou therefore that teachest another, teachest thou not thyself? thou that preachest a man should not steal, dost thou steal?</VERS>\r\n      <VERS vnumber=\"22\">thou that sayest a man should not commit adultery, dost thou commit adultery? thou that abhorrest idols, dost thou rob temples?</VERS>\r\n      <VERS vnumber=\"23\">thou who gloriest in the law, through thy transgression of the law dishonorest thou God?</VERS>\r\n      <VERS vnumber=\"24\">For the name of God is blasphemed among the Gentiles because of you, even as it is written.</VERS>\r\n      <VERS vnumber=\"25\">For circumcision indeed profiteth, if thou be a doer of the law: but if thou be a transgressor of the law, thy circumcision is become uncircumcision.</VERS>\r\n      <VERS vnumber=\"26\">If therefore the uncircumcision keep the ordinances of the law, shall not his uncircumcision be reckoned for circumcision?</VERS>\r\n      <VERS vnumber=\"27\">and shall not the uncircumcision which is by nature, if it fulfil the law, judge thee, who with the letter and circumcision art a transgressor of the law?</VERS>\r\n      <VERS vnumber=\"28\">For he is not a Jew who is one outwardly; neither is that circumcision which is outward in the flesh:</VERS>\r\n      <VERS vnumber=\"29\">but he is a Jew who is one inwardly; and circumcision is that of the heart, in the spirit not in the letter; whose praise is not of men, but of God.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">What advantage then hath the Jew? or what is the profit of circumcision?</VERS>\r\n      <VERS vnumber=\"2\">Much every way: first of all, that they were intrusted with the oracles of God.</VERS>\r\n      <VERS vnumber=\"3\">For what if some were without faith? shall their want of faith make of none effect the faithfulness of God?</VERS>\r\n      <VERS vnumber=\"4\">God forbid: yea, let God be found true, but every man a liar; as it is written, That thou mightest be justified in thy words, And mightest prevail when thou comest into judgment.</VERS>\r\n      <VERS vnumber=\"5\">But if our righteousness commendeth the righteousness of God, what shall we say? Is God unrighteous who visiteth with wrath? (I speak after the manner of men.)</VERS>\r\n      <VERS vnumber=\"6\">God forbid: for then how shall God judge the world?</VERS>\r\n      <VERS vnumber=\"7\">But if the truth of God through my lie abounded unto his glory, why am I also still judged as a sinner?</VERS>\r\n      <VERS vnumber=\"8\">and why not (as we are slanderously reported, and as some affirm that we say), Let us do evil, that good may come? whose condemnation is just.</VERS>\r\n      <VERS vnumber=\"9\">What then? are we better than they? No, in no wise: for we before laid to the charge both of Jews and Greeks, that they are all under sin;</VERS>\r\n      <VERS vnumber=\"10\">as it is written, There is none righteous, no, not one;</VERS>\r\n      <VERS vnumber=\"11\">There is none that understandeth, There is none that seeketh after God;</VERS>\r\n      <VERS vnumber=\"12\">They have all turned aside, they are together become       unprofitable; There is none that doeth good, no, not, so much as one:</VERS>\r\n      <VERS vnumber=\"13\">Their throat is an open sepulchre; With their tongues they have used deceit: The poison of asps is under their lips:</VERS>\r\n      <VERS vnumber=\"14\">Whose mouth is full of cursing and bitterness:</VERS>\r\n      <VERS vnumber=\"15\">Their feet are swift to shed blood;</VERS>\r\n      <VERS vnumber=\"16\">Destruction and misery are in their ways;</VERS>\r\n      <VERS vnumber=\"17\">And the way of peace have they not known:</VERS>\r\n      <VERS vnumber=\"18\">There is no fear of God before their eyes.</VERS>\r\n      <VERS vnumber=\"19\">Now we know that what things soever the law saith, it speaketh to them that are under the law; that every mouth may be stopped, and all the world may be brought under the judgment of God:</VERS>\r\n      <VERS vnumber=\"20\">because by the works of the law shall no flesh be justified in his sight; for through the law [cometh] the knowledge of sin.</VERS>\r\n      <VERS vnumber=\"21\">But now apart from the law a righteousness of God hath been manifested, being witnessed by the law and the prophets, being witnessed by the law and the prophets;</VERS>\r\n      <VERS vnumber=\"22\">even the righteousness of God through faith in Jesus Christ unto all them that believe; for there is no distinction;</VERS>\r\n      <VERS vnumber=\"23\">for all have sinned, and fall short of the glory of God;</VERS>\r\n      <VERS vnumber=\"24\">being justified freely by his grace through the redemption that is in Christ Jesus:</VERS>\r\n      <VERS vnumber=\"25\">whom God set forth [to be] a propitiation, through faith, in his blood, to show his righteousness because of the passing over of the sins done aforetime, in the forbearance of God;</VERS>\r\n      <VERS vnumber=\"26\">for the showing, [I say], of his righteousness at this present season: that he might himself be just, and the justifier of him that hath faith in Jesus.</VERS>\r\n      <VERS vnumber=\"27\">Where then is the glorying? It is excluded. By what manner of law? of works? Nay: but by a law of faith.</VERS>\r\n      <VERS vnumber=\"28\">We reckon therefore that a man is justified by faith apart from the works of the law.</VERS>\r\n      <VERS vnumber=\"29\">Or is God [the God] of Jews only? is he not [the God] of Gentiles also? Yea, of Gentiles also:</VERS>\r\n      <VERS vnumber=\"30\">if so be that God is one, and he shall justify the circumcision by faith, and the uncircumcision through faith.</VERS>\r\n      <VERS vnumber=\"31\">Do we then make the law of none effect through faith? God forbid: nay, we establish the law.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">What then shall we say that Abraham, our forefather, hath found according to the flesh?</VERS>\r\n      <VERS vnumber=\"2\">For if Abraham was justified by works, he hath whereof to glory; but not toward God.</VERS>\r\n      <VERS vnumber=\"3\">For what saith the scripture? And Abraham believed God, and it was reckoned unto him for righteousness.</VERS>\r\n      <VERS vnumber=\"4\">Now to him that worketh, the reward is not reckoned as of grace, but as of debt.</VERS>\r\n      <VERS vnumber=\"5\">But to him that worketh not, but believeth on him that justifieth the ungodly, his faith is reckoned for righteousness.</VERS>\r\n      <VERS vnumber=\"6\">Even as David also pronounceth blessing upon the man, unto whom God reckoneth righteousness apart from works,</VERS>\r\n      <VERS vnumber=\"7\">[saying], Blessed are they whose iniquities are forgiven, And whose sins are covered.</VERS>\r\n      <VERS vnumber=\"8\">Blessed is the man to whom, the Lord will not reckon sin.</VERS>\r\n      <VERS vnumber=\"9\">Is this blessing then pronounced upon the circumcision, or upon the uncircumcision also? for we say, To Abraham his faith was reckoned for righteousness.</VERS>\r\n      <VERS vnumber=\"10\">How then was it reckoned? when he was in circumcision, or in uncircumcision? Not in circumcision, but in uncircumcision:</VERS>\r\n      <VERS vnumber=\"11\">and he received the sign of circumcision, a seal of the righteousness of the faith which he had while he was in uncircumcision; that he might be the father of all them that believe, though they be in uncircumcision, that righteousness might be reckoned unto them;</VERS>\r\n      <VERS vnumber=\"12\">and the father of circumcision to them who not only are of the circumcision, but who also walk in the steps of that faith of our father Abraham which he had in uncircumcision.</VERS>\r\n      <VERS vnumber=\"13\">For not through the law was the promise to Abraham or to his seed that he should be heir of the world, but through the righteousness of faith.</VERS>\r\n      <VERS vnumber=\"14\">For if they that are of the law are heirs, faith is made void, and the promise is made of none effect:</VERS>\r\n      <VERS vnumber=\"15\">for the law worketh wrath; but where there is no law, neither is there transgression.</VERS>\r\n      <VERS vnumber=\"16\">For this cause [it is] of faith, that [it may be] according to grace; to the end that the promise may 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</VERS>\r\n      <VERS vnumber=\"17\">(as it is written, A father of many nations have I made thee) before him whom he believed, [even] God, who giveth life to the dead, and calleth the things that are not, as though they were.</VERS>\r\n      <VERS vnumber=\"18\">Who in hope believed against hope, to the end that he might become a father of many nations, according to that which had been spoken, So shall thy seed be.</VERS>\r\n      <VERS vnumber=\"19\">And without being weakened in faith he considered his own body now as good as dead (he being about a hundred years old), and the deadness of Sarah`s womb;</VERS>\r\n      <VERS vnumber=\"20\">yet, looking unto the promise of God, he wavered not through unbelief, but waxed strong through faith, giving glory to God,</VERS>\r\n      <VERS vnumber=\"21\">and being fully assured that what he had promised, he was able also to perform.</VERS>\r\n      <VERS vnumber=\"22\">Wherefore also it was reckoned unto him for righteousness.</VERS>\r\n      <VERS vnumber=\"23\">Now it was not written for his sake alone, that it was reckoned unto him;</VERS>\r\n      <VERS vnumber=\"24\">but for our sake also, unto whom it shall be reckoned, who believe on him that raised Jesus our Lord from the dead,</VERS>\r\n      <VERS vnumber=\"25\">who was delivered up for our trespasses, and was raised for our justification.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">Being therefore justified by faith, we have peace with God through our Lord Jesus Christ;</VERS>\r\n      <VERS vnumber=\"2\">through whom also we have had our access by faith into this grace wherein we stand; and we rejoice in hope of the glory of God.</VERS>\r\n      <VERS vnumber=\"3\">And not only so, but we also rejoice in our tribulations: knowing that tribulation worketh stedfastness;</VERS>\r\n      <VERS vnumber=\"4\">and stedfastness, approvedness; and approvedness, hope:</VERS>\r\n      <VERS vnumber=\"5\">and hope putteth not to shame; because the love of God hath been shed abroad in our hearts through the Holy Spirit which was given unto us.</VERS>\r\n      <VERS vnumber=\"6\">For while we were yet weak, in due season Christ died for the ungodly.</VERS>\r\n      <VERS vnumber=\"7\">For scarcely for a righteous man will one die: for peradventure for the good man some one would even dare to die.</VERS>\r\n      <VERS vnumber=\"8\">But God commendeth his own love toward us, in that, while we were yet sinners, Christ died for us.</VERS>\r\n      <VERS vnumber=\"9\">Much more then, being now justified by his blood, shall we be saved from the wrath [of God] through him.</VERS>\r\n      <VERS vnumber=\"10\">For if, while we were enemies, we were reconciled to God through the death of his Son, much more, being reconciled, shall we be saved by his life;</VERS>\r\n      <VERS vnumber=\"11\">and not only so, but we also rejoice in God through our Lord Jesus Christ, through whom we have now received the reconciliation.</VERS>\r\n      <VERS vnumber=\"12\">Therefore, as through one man sin entered into the world, and death through sin; and so death passed unto all men, for that all sinned:--</VERS>\r\n      <VERS vnumber=\"13\">for until the law sin was in the world; but sin is not imputed when there is no law.</VERS>\r\n      <VERS vnumber=\"14\">Nevertheless death reigned from Adam until Moses, even over them that had not sinned after the likeness of Adam`s transgression, who is a figure of him that was to come.</VERS>\r\n      <VERS vnumber=\"15\">But not as the trespass, so also [is] the free gift. For if by the trespass of the one the many died, much more did the grace of God, and the gift by the grace of the one man, Jesus Christ, abound unto the many.</VERS>\r\n      <VERS vnumber=\"16\">And not as through one that sinned, [so] is the gift: for the judgment [came] of one unto condemnation, but the free gift [came] of many trespasses unto justification.</VERS>\r\n      <VERS vnumber=\"17\">For if, by the trespass of the one, death reigned through the one; much more shall they that receive the abundance of grace and of the gift of righteousness reign in life through the one, [even] Jesus Christ.</VERS>\r\n      <VERS vnumber=\"18\">So then as through one trespass [the judgment came] unto all men to condemnation; even so through one act of righteousness [the free gift came] unto all men to justification of life.</VERS>\r\n      <VERS vnumber=\"19\">For as through the one man`s disobedience the many were made sinners, even so through the obedience of the one shall the many be made righteous.</VERS>\r\n      <VERS vnumber=\"20\">And the law came in besides, that the trespass might abound; but where sin abounded, grace did abound more exceedingly:</VERS>\r\n      <VERS vnumber=\"21\">that, as sin reigned in death, even so might grace reign through righteousness unto eternal life through Jesus Christ our Lord.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">What shall we say then? Shall we continue in sin, that grace may abound?</VERS>\r\n      <VERS vnumber=\"2\">God forbid. We who died to sin, how shall we any longer live therein?</VERS>\r\n      <VERS vnumber=\"3\">Or are ye ignorant that all we who were baptized into Christ Jesus were baptized into his death?</VERS>\r\n      <VERS vnumber=\"4\">We were buried therefore with him through baptism unto death: that like as Christ was raised from the dead through the glory of the Father, so we also might walk in newness of life.</VERS>\r\n      <VERS vnumber=\"5\">For if we have become united with [him] in the likeness of his death, we shall be also [in the likeness] of his resurrection;</VERS>\r\n      <VERS vnumber=\"6\">knowing this, that our old man was crucified with [him], that the body of sin might be done away, that so we should no longer be in bondage to sin;</VERS>\r\n      <VERS vnumber=\"7\">for he that hath died is justified from sin.</VERS>\r\n      <VERS vnumber=\"8\">But if we died with Christ, we believe that we shall also live with him;</VERS>\r\n      <VERS vnumber=\"9\">knowing that Christ being raised from the dead dieth no more; death no more hath dominion over him.</VERS>\r\n      <VERS vnumber=\"10\">For the death that he died, he died unto sin once: but the life that he liveth, he liveth unto God.</VERS>\r\n      <VERS vnumber=\"11\">Even so reckon ye also yourselves to be dead unto sin, but alive unto God in Christ Jesus.</VERS>\r\n      <VERS vnumber=\"12\">Let not sin therefore reign in your mortal body, that ye should obey the lusts thereof:</VERS>\r\n      <VERS vnumber=\"13\">neither present your members unto sin [as] instruments of unrighteousness; but present yourselves unto God, as alive from the dead, and your members [as] instruments of righteousness unto God.</VERS>\r\n      <VERS vnumber=\"14\">For sin shall not have dominion over you: for ye are not under law, but under grace.</VERS>\r\n      <VERS vnumber=\"15\">What then? shall we sin, because we are not under law, but under grace? God forbid.</VERS>\r\n      <VERS vnumber=\"16\">Know ye not, that to whom ye present yourselves [as] servants unto obedience, his servants ye are whom ye obey; whether of sin unto death, or of obedience unto righteousness?</VERS>\r\n      <VERS vnumber=\"17\">But thanks be to God, that, whereas ye were servants of sin, ye became obedient from the heart to that form of teaching whereunto ye were delivered;</VERS>\r\n      <VERS vnumber=\"18\">and being made free from sin, ye became servants of righteousness.</VERS>\r\n      <VERS vnumber=\"19\">I speak after the manner of men because of the infirmity of your flesh: for as ye presented your members [as] servants to uncleanness and to iniquity unto iniquity, even so now present your members [as] servants to righteousness unto sanctification.</VERS>\r\n      <VERS vnumber=\"20\">For when ye were servants of sin, ye were free in regard of righteousness.</VERS>\r\n      <VERS vnumber=\"21\">What fruit then had ye at that time in the things whereof ye are now ashamed? for the end of those things is death.</VERS>\r\n      <VERS vnumber=\"22\">But now being made free from sin and become servants to God, ye have your fruit unto sanctification, and the end eternal life.</VERS>\r\n      <VERS vnumber=\"23\">For the wages of sin is death; but the free gift of God is eternal life in Christ Jesus our Lord.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">Or are ye ignorant, brethren (for I speak to men who know the law), that the law hath dominion over a man for so long time as he liveth?</VERS>\r\n      <VERS vnumber=\"2\">For the woman that hath a husband is bound by law to the husband while he liveth; but if the husband die, she is discharged from the law of the husband.</VERS>\r\n      <VERS vnumber=\"3\">So then if, while the husband liveth, she be joined to another man, she shall be called an adulteress: but if the husband die, she is free from the law, so that she is no adulteress, though she be joined to another man.</VERS>\r\n      <VERS vnumber=\"4\">Wherefore, my brethren, ye also were made dead to the law through the body of Christ; that ye should be joined to another, [even] to him who was raised from the dead, that we might bring forth fruit unto God.</VERS>\r\n      <VERS vnumber=\"5\">For when we were in the flesh, the sinful passions, which were through the law, wrought in our members to bring forth fruit unto death.</VERS>\r\n      <VERS vnumber=\"6\">But now we have been discharged from the law, having died to that wherein we were held; so that we serve in newness of the spirit, and not in oldness of the letter.</VERS>\r\n      <VERS vnumber=\"7\">What shall we say then? Is the law sin? God forbid. Howbeit, I had not known sin, except through the law: for I had not known coveting, except the law had said, Thou shalt not covet:</VERS>\r\n      <VERS vnumber=\"8\">but sin, finding occasion, wrought in me through the commandment all manner of coveting: for apart from the law sin [is] dead.</VERS>\r\n      <VERS vnumber=\"9\">And I was alive apart from the law once: but when the commandment came, sin revived, and I died;</VERS>\r\n      <VERS vnumber=\"10\">and the commandment, which [was] unto life, this I found [to be] unto death:</VERS>\r\n      <VERS vnumber=\"11\">for sin, finding occasion, through the commandment beguiled me, and through it slew me.</VERS>\r\n      <VERS vnumber=\"12\">So that the law is holy, and the commandment holy, and righteous, and good.</VERS>\r\n      <VERS vnumber=\"13\">Did then that which is good become death unto me? God forbid. But sin, that it might be shown to be sin, by working death to me through that which is good; --that through the commandment sin might become exceeding sinful.</VERS>\r\n      <VERS vnumber=\"14\">For we know that the law is spiritual: but I am carnal, sold under sin.</VERS>\r\n      <VERS vnumber=\"15\">For that which I do I know not: for not what I would, that do I practise; but what I hate, that I do.</VERS>\r\n      <VERS vnumber=\"16\">But if what I would not, that I do, I consent unto the law that it is good.</VERS>\r\n      <VERS vnumber=\"17\">So now it is no more I that do it, but sin which dwelleth in me.</VERS>\r\n      <VERS vnumber=\"18\">For I know that in me, that is, in my flesh, dwelleth no good thing: for to will is present with me, but to do that which is good [is] not.</VERS>\r\n      <VERS vnumber=\"19\">For the good which I would I do not: but the evil which I would not, that I practise.</VERS>\r\n      <VERS vnumber=\"20\">But if what I would not, that I do, it is no more I that do it, but sin which dwelleth in me.</VERS>\r\n      <VERS vnumber=\"21\">I find then the law, that, to me who would do good, evil is present.</VERS>\r\n      <VERS vnumber=\"22\">For I delight in the law of God after the inward man:</VERS>\r\n      <VERS vnumber=\"23\">but I see a different law in my members, warring against the law of my mind, and bringing me into captivity under the law of sin which is in my members.</VERS>\r\n      <VERS vnumber=\"24\">Wretched man that I am! who shall deliver me out of the body of this death?</VERS>\r\n      <VERS vnumber=\"25\">I thank God through Jesus Christ our Lord. So then I of myself with the mind, indeed, serve the law of God; but with the flesh the law of sin.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">There is therefore now no condemnation to them that are in Christ Jesus.</VERS>\r\n      <VERS vnumber=\"2\">For the law of the Spirit of life in Christ Jesus made me free from the law of sin and of death.</VERS>\r\n      <VERS vnumber=\"3\">For 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:</VERS>\r\n      <VERS vnumber=\"4\">that the ordinance of the law might be fulfilled in us, who walk not after the flesh, but after the Spirit.</VERS>\r\n      <VERS vnumber=\"5\">For they that are after the flesh mind the things of the flesh; but they that are after the Spirit the things of the Spirit.</VERS>\r\n      <VERS vnumber=\"6\">For the mind of the flesh is death; but the mind of the Spirit is life and peace:</VERS>\r\n      <VERS vnumber=\"7\">because the mind of the flesh is enmity against God; for it is not subject to the law of God, neither indeed can it be:</VERS>\r\n      <VERS vnumber=\"8\">and they that are in the flesh cannot please God.</VERS>\r\n      <VERS vnumber=\"9\">But ye are not in the flesh but in the Spirit, if so be that the Spirit of God dwelleth in you. But if any man hath not the Spirit of Christ, he is none of his.</VERS>\r\n      <VERS vnumber=\"10\">And if Christ is in you, the body is dead because of sin; but the spirit is life because of righteousness.</VERS>\r\n      <VERS vnumber=\"11\">But if the Spirit of him that raised up Jesus from the dead dwelleth in you, he that raised up Christ Jesus from the dead shall give life also to your mortal bodies through his Spirit that dwelleth in you.</VERS>\r\n      <VERS vnumber=\"12\">So then, brethren, we are debtors, not to the flesh, to live after the flesh:</VERS>\r\n      <VERS vnumber=\"13\">for if ye live after the flesh, ye must die; but if by the Spirit ye put to death the deeds of the body, ye shall live.</VERS>\r\n      <VERS vnumber=\"14\">For as many as are led by the Spirit of God, these are sons of God.</VERS>\r\n      <VERS vnumber=\"15\">For ye received not the spirit of bondage again unto fear; but ye received the spirit of adoption, whereby we cry, Abba, Father.</VERS>\r\n      <VERS vnumber=\"16\">The Spirit himself beareth witness with our spirit, that we are children of God:</VERS>\r\n      <VERS vnumber=\"17\">and 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 with [him].</VERS>\r\n      <VERS vnumber=\"18\">For I reckon that the sufferings of this present time are not worthy to be compared with the glory which shall be revealed to us-ward.</VERS>\r\n      <VERS vnumber=\"19\">For the earnest expectation of the creation waiteth for the revealing of the sons of God.</VERS>\r\n      <VERS vnumber=\"20\">For the creation was subjected to vanity, not of its own will, but by reason of him who subjected it, in hope</VERS>\r\n      <VERS vnumber=\"21\">that the creation itself also shall be delivered from the bondage of corruption into the liberty of the glory of the children of God.</VERS>\r\n      <VERS vnumber=\"22\">For we know that the whole creation groaneth and travaileth in pain together until now.</VERS>\r\n      <VERS vnumber=\"23\">And not only so, but ourselves also, who have the first-fruits of the Spirit, even we ourselves groan within ourselves, waiting for [our] adoption, [to wit], the redemption of our body.</VERS>\r\n      <VERS vnumber=\"24\">For in hope were we saved: but hope that is seen is not hope: for who hopeth for that which he seeth?</VERS>\r\n      <VERS vnumber=\"25\">But if we hope for that which we see not, [then] do we with patience wait for it.</VERS>\r\n      <VERS vnumber=\"26\">And in like manner the Spirit also helpeth our infirmity: for we know not how to pray as we ought; but the Spirit himself maketh intercession for [us] with groanings which cannot be uttered;</VERS>\r\n      <VERS vnumber=\"27\">and 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.</VERS>\r\n      <VERS vnumber=\"28\">And we know that to them that love God all things work together for good, [even] to them that are called according to [his] purpose.</VERS>\r\n      <VERS vnumber=\"29\">For whom he foreknew, he also foreordained [to be] conformed to the image of his Son, that he might be the firstborn among many brethren:</VERS>\r\n      <VERS vnumber=\"30\">and whom he foreordained, them he also called: and whom he called, them he also justified: and whom he justified, them he also glorified.</VERS>\r\n      <VERS vnumber=\"31\">What then shall we say to these things? If God [is] for us, who [is] against us?</VERS>\r\n      <VERS vnumber=\"32\">He that spared not his own Son, but delivered him up for us all, how shall he not also with him freely give us all things?</VERS>\r\n      <VERS vnumber=\"33\">Who shall lay anything to the charge of God`s elect? It is God that justifieth;</VERS>\r\n      <VERS vnumber=\"34\">who is he that condemneth? It is Christ Jesus that died, yea rather, that was raised from the dead, who is at the right hand of God, who also maketh intercession for us.</VERS>\r\n      <VERS vnumber=\"35\">Who shall separate us from the love of Christ? shall tribulation, or anguish, or persecution, or famine, or nakedness, or peril, or sword?</VERS>\r\n      <VERS vnumber=\"36\">Even as it is written, For thy sake we are killed all the day long; We were accounted as sheep for the slaughter.</VERS>\r\n      <VERS vnumber=\"37\">Nay, in all these things we are more than conquerors through him that loved us.</VERS>\r\n      <VERS vnumber=\"38\">For I am persuaded, that neither death, nor life, nor angels, nor principalities, nor things present, nor things to come, nor powers,</VERS>\r\n      <VERS vnumber=\"39\">nor 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">I say the truth in Christ, I lie not, my conscience bearing witness with me in the Holy Spirit,</VERS>\r\n      <VERS vnumber=\"2\">that I have great sorrow and unceasing pain in my heart.</VERS>\r\n      <VERS vnumber=\"3\">For I could wish that I myself were anathema from Christ for my brethren`s sake, my kinsmen according to the flesh:</VERS>\r\n      <VERS vnumber=\"4\">who are Israelites; whose is the adoption, and the glory, and the covenants, and the giving of the law, and the service [of God], and the promises;</VERS>\r\n      <VERS vnumber=\"5\">whose are the fathers, and of whom is Christ as concerning the flesh, who is over all, God blessed for ever. Amen.</VERS>\r\n      <VERS vnumber=\"6\">But [it is] not as though the word of God hath come to nought. For they are not all Israel, that are of Israel:</VERS>\r\n      <VERS vnumber=\"7\">neither, because they are Abraham`s seed, are they all children: but, In Isaac shall thy seed be called.</VERS>\r\n      <VERS vnumber=\"8\">That is, it is not the children of the flesh that are children of God; but the children of the promise are reckoned for a seed.</VERS>\r\n      <VERS vnumber=\"9\">For this is a word of promise, According to this season will I come, and Sarah shall have a son.</VERS>\r\n      <VERS vnumber=\"10\">And not only so; but Rebecca also having conceived by one, [even] by our father Isaac--</VERS>\r\n      <VERS vnumber=\"11\">for [the children] being not yet born, neither having done anything good or bad, that the purpose of God according to election might stand, not of works, but of him that calleth,</VERS>\r\n      <VERS vnumber=\"12\">it was said unto her, The elder shall serve the younger.</VERS>\r\n      <VERS vnumber=\"13\">Even as it is written, Jacob I loved, but Esau I hated.</VERS>\r\n      <VERS vnumber=\"14\">What shall we say then? Is there unrighteousness with God? God forbid.</VERS>\r\n      <VERS vnumber=\"15\">For he saith to Moses, I will have mercy on whom I have mercy, and I will have compassion on whom I have compassion.</VERS>\r\n      <VERS vnumber=\"16\">So then it is not of him that willeth, nor of him that runneth, but of God that hath mercy.</VERS>\r\n      <VERS vnumber=\"17\">For the scripture saith unto Pharaoh, For this very purpose did I raise thee up, that I might show in thee my power, and that my name might be published abroad in all the earth.</VERS>\r\n      <VERS vnumber=\"18\">So then he hath mercy on whom he will, and whom he will be hardeneth.</VERS>\r\n      <VERS vnumber=\"19\">Thou wilt say then unto me, Why doth he still find fault? For who withstandeth his will?</VERS>\r\n      <VERS vnumber=\"20\">Nay but, O man, who art thou that repliest against God? Shall the thing formed say to him that formed it, Why didst thou make me thus?</VERS>\r\n      <VERS vnumber=\"21\">Or hath not the potter a right over the clay, from the same lump to make one part a vessel unto honor, and another unto dishonor?</VERS>\r\n      <VERS vnumber=\"22\">What if God, willing to show his wrath, and to make his power known, endured with much longsuffering vessels of wrath fitted unto destruction:</VERS>\r\n      <VERS vnumber=\"23\">and that he might make known the riches of his glory upon vessels of mercy, which he afore prepared unto glory,</VERS>\r\n      <VERS vnumber=\"24\">[even] us, whom he also called, not from the Jews only, but also from the Gentiles?</VERS>\r\n      <VERS vnumber=\"25\">As he saith also in Hosea, I will call that my people, which was not my people; And her beloved, that was not beloved.</VERS>\r\n      <VERS vnumber=\"26\">And it shall be, [that] in the place where it was said       unto them, Ye are not my people, There shall they be called sons of the living God.</VERS>\r\n      <VERS vnumber=\"27\">And Isaiah crieth concerning Israel, If the number of the children of Israel be as the sand of the sea, it is the remnant that shall be saved:</VERS>\r\n      <VERS vnumber=\"28\">for the Lord will execute [his] word upon the earth, finishing it and cutting it short.</VERS>\r\n      <VERS vnumber=\"29\">And, as Isaiah hath said before, Except the Lord of Sabaoth had left us a seed, We had become as Sodom, and had been made like unto Gomorrah.</VERS>\r\n      <VERS vnumber=\"30\">What shall we say then? That the Gentiles, who followed not after righteousness, attained to righteousness, even the righteousness which is of faith:</VERS>\r\n      <VERS vnumber=\"31\">but Israel, following after a law of righteousness, did not arrive at [that] law.</VERS>\r\n      <VERS vnumber=\"32\">Wherefore? Because [they sought it] not by faith, but as it were by works. They stumbled at the stone of stumbling;</VERS>\r\n      <VERS vnumber=\"33\">even as it is written, Behold, I lay in Zion a stone of stumbling and a rock of offence: And he that believeth on him shall not be put to shame.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">Brethren, my heart`s desire and my supplication to God is for them, that they may be saved.</VERS>\r\n      <VERS vnumber=\"2\">For I bear them witness that they have a zeal for God, but not according to knowledge.</VERS>\r\n      <VERS vnumber=\"3\">For being ignorant of God`s righteousness, and seeking to establish their own, they did not subject themselves to the righteousness of God.</VERS>\r\n      <VERS vnumber=\"4\">For Christ is the end of the law unto righteousness to every one that believeth.</VERS>\r\n      <VERS vnumber=\"5\">For Moses writeth that the man that doeth the righteousness which is of the law shall live thereby.</VERS>\r\n      <VERS vnumber=\"6\">But the righteousness which is of faith saith thus, Say not in thy heart, Who shall ascend into heaven? (that is, to bring Christ down:)</VERS>\r\n      <VERS vnumber=\"7\">or, Who shall descend into the abyss? (That is, to bring Christ up from the dead.)</VERS>\r\n      <VERS vnumber=\"8\">But what saith it? The word is nigh thee, in thy mouth, and in thy heart: that is, the word of faith, which we preach:</VERS>\r\n      <VERS vnumber=\"9\">because if thou shalt confess with thy mouth Jesus [as] Lord, and shalt believe in thy heart that God raised him from the dead, thou shalt be saved:</VERS>\r\n      <VERS vnumber=\"10\">for with the heart man believeth unto righteousness; and with the mouth confession is made unto salvation.</VERS>\r\n      <VERS vnumber=\"11\">For the scripture saith, Whosoever believeth on him shall not be put to shame.</VERS>\r\n      <VERS vnumber=\"12\">For there is no distinction between Jew and Greek: for the same [Lord] is Lord of all, and is rich unto all that call upon him:</VERS>\r\n      <VERS vnumber=\"13\">for, Whosoever shall call upon the name of the Lord shall be saved.</VERS>\r\n      <VERS vnumber=\"14\">How then shall they call on him in whom they have not believed? and how shall they believe in him whom they have not heard? and how shall they hear without a preacher?</VERS>\r\n      <VERS vnumber=\"15\">and how shall they preach, except they be sent? even as it is written, How beautiful are the feet of them that bring glad tidings of good things!</VERS>\r\n      <VERS vnumber=\"16\">But they did not all hearken to the glad tidings. For Isaiah saith, Lord, who hath believed our report?</VERS>\r\n      <VERS vnumber=\"17\">So belief [cometh] of hearing, and hearing by the word of Christ.</VERS>\r\n      <VERS vnumber=\"18\">But I say, Did they not hear? Yea, verily, Their sound went out into all the earth, And their words unto the ends of the world.</VERS>\r\n      <VERS vnumber=\"19\">But I say, Did Israel not know? First Moses saith, I will provoke you to jealousy with that which is no nation, With a nation void of understanding will I anger you.</VERS>\r\n      <VERS vnumber=\"20\">And Isaiah is very bold, and saith, I was found of them that sought me not; I became manifest unto them that asked not of me.</VERS>\r\n      <VERS vnumber=\"21\">But as to Israel he saith, All the day long did I spread out my hands unto a disobedient and gainsaying people.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">I say then, Did God cast off his people? God forbid. For I also am an Israelite, of the seed of Abraham, of the tribe of Benjamin.</VERS>\r\n      <VERS vnumber=\"2\">God did not cast off his people which he foreknew. Or know ye not what the scripture saith of Elijah? how he pleadeth with God against Israel:</VERS>\r\n      <VERS vnumber=\"3\">Lord, they have killed thy prophets, they have digged down thine altars; and I am left alone, and they seek my life.</VERS>\r\n      <VERS vnumber=\"4\">But what saith the answer of God unto him? I have left for myself seven thousand men, who have not bowed the knee to Baal.</VERS>\r\n      <VERS vnumber=\"5\">Even so then at this present time also there is a remnant according to the election of grace.</VERS>\r\n      <VERS vnumber=\"6\">But if it is by grace, it is no more of works: otherwise grace is no more grace.</VERS>\r\n      <VERS vnumber=\"7\">What then? that which Israel seeketh for, that he obtained not; but the election obtained it, and the rest were hardened:</VERS>\r\n      <VERS vnumber=\"8\">according as it is written, God gave them a spirit of stupor, eyes that they should not see, and ears that they should not hear, unto this very day.</VERS>\r\n      <VERS vnumber=\"9\">And David saith, Let their table be made a snare, and a trap, And a stumblingblock, and a recompense unto them:</VERS>\r\n      <VERS vnumber=\"10\">Let their eyes be darkened, that they may not see, And bow thou down their back always.</VERS>\r\n      <VERS vnumber=\"11\">I say then, Did they stumble that they might fall? God forbid: but by their fall salvation [is come] unto the Gentiles, to provoke them to jealousy.</VERS>\r\n      <VERS vnumber=\"12\">Now if their fall, is the riches of the world, and their loss the riches of the Gentiles; how much more their fulness?</VERS>\r\n      <VERS vnumber=\"13\">But I speak to you that are Gentiles. Inasmuch then as I am an apostle of Gentiles, I glorify my ministry;</VERS>\r\n      <VERS vnumber=\"14\">if by any means I may provoke to jealousy [them that are] my flesh, and may save some of them.</VERS>\r\n      <VERS vnumber=\"15\">For if the casting away of them [is] the reconciling of the world, what [shall] the receiving [of them be], but life from the dead?</VERS>\r\n      <VERS vnumber=\"16\">And if the firstfruit is holy, so is the lump: and if the root is holy, so are the branches.</VERS>\r\n      <VERS vnumber=\"17\">But if some of the branches were broken off, and thou, being a wild olive, wast grafted in among them, and didst become partaker with them of the root of the fatness of the olive tree;</VERS>\r\n      <VERS vnumber=\"18\">glory not over the branches: but if thou gloriest, it is not thou that bearest the root, but the root thee.</VERS>\r\n      <VERS vnumber=\"19\">Thou wilt say then, Branches were broken off, that I might be grafted in.</VERS>\r\n      <VERS vnumber=\"20\">Well; by their unbelief they were broken off, and thou standest by thy faith. Be not highminded, but fear:</VERS>\r\n      <VERS vnumber=\"21\">for if God spared not the natural branches, neither will he spare thee.</VERS>\r\n      <VERS vnumber=\"22\">Behold then the goodness and severity of God: toward them that fell, severity; but toward thee, God`s goodness, if thou continue in his goodness: otherwise thou also shalt be cut off.</VERS>\r\n      <VERS vnumber=\"23\">And they also, if they continue not in their unbelief, shall be grafted in: for God is able to graft them in again.</VERS>\r\n      <VERS vnumber=\"24\">For if thou wast cut out of that which is by nature a wild olive tree, and wast grafted contrary to nature into a good olive tree; how much more shall these, which are the natural [branches], be grafted into their own olive tree?</VERS>\r\n      <VERS vnumber=\"25\">For I would not, brethren, have you ignorant of this mystery, lest ye be wise in your own conceits, that a hardening in part hath befallen Israel, until the fulness of the Gentiles be come in;</VERS>\r\n      <VERS vnumber=\"26\">and so all Israel shall be saved: even as it is written, There shall come out of Zion the Deliverer; He shall turn away ungodliness from Jacob:</VERS>\r\n      <VERS vnumber=\"27\">And this is my covenant unto them, When I shall take away their sins.</VERS>\r\n      <VERS vnumber=\"28\">As touching the gospel, they are enemies for your sake: but as touching the election, they are beloved for the fathers` sake.</VERS>\r\n      <VERS vnumber=\"29\">For the gifts and the calling of God are not repented of.</VERS>\r\n      <VERS vnumber=\"30\">For as ye in time past were disobedient to God, but now have obtained mercy by their disobedience,</VERS>\r\n      <VERS vnumber=\"31\">even so have these also now been disobedient, that by the mercy shown to you they also may now obtain mercy.</VERS>\r\n      <VERS vnumber=\"32\">For God hath shut up all unto disobedience, that he might have mercy upon all.</VERS>\r\n      <VERS vnumber=\"33\">O the depth of the riches both of the wisdom and the knowledge of God! how unsearchable are his judgments, and his ways past tracing out!</VERS>\r\n      <VERS vnumber=\"34\">For who hath known the mind of the Lord? or who hath been his counsellor?</VERS>\r\n      <VERS vnumber=\"35\">or who hath first given to him, and it shall be recompensed unto him again?</VERS>\r\n      <VERS vnumber=\"36\">For of him, and through him, and unto him, are all things. To him [be] the glory for ever. Amen.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">I beseech you therefore, brethren, by the mercies of God, to present your bodies a living sacrifice, holy, acceptable to God, [which is] your spiritual service.</VERS>\r\n      <VERS vnumber=\"2\">And be not fashioned according to this world: but be ye transformed by the renewing of your mind, and ye may prove what is the good and acceptable and perfect will of God.</VERS>\r\n      <VERS vnumber=\"3\">For I say, through the grace that was given me, to every man that is among you, not to think of himself more highly than he ought to think; but to think as to think soberly, according as God hath dealt to each man a measure of faith.</VERS>\r\n      <VERS vnumber=\"4\">For even as we have many members in one body, and all the members have not the same office:</VERS>\r\n      <VERS vnumber=\"5\">so we, who are many, are one body in Christ, and severally members one of another.</VERS>\r\n      <VERS vnumber=\"6\">And having gifts differing according to the grace that was given to us, whether prophecy, [let us prophesy] according to the proportion of our faith;</VERS>\r\n      <VERS vnumber=\"7\">or ministry, [let us give ourselves] to our ministry; or he that teacheth, to his teaching;</VERS>\r\n      <VERS vnumber=\"8\">or he that exhorteth, to his exhorting: he that giveth, [let him do it] with liberality; he that ruleth, with diligence; he that showeth mercy, with cheerfulness.</VERS>\r\n      <VERS vnumber=\"9\">Let love be without hypocrisy. Abhor that which is evil; cleave to that which is good.</VERS>\r\n      <VERS vnumber=\"10\">In love of the brethren be tenderly affectioned one to another; in honor preferring one another;</VERS>\r\n      <VERS vnumber=\"11\">in diligence not slothful; fervent in spirit; serving the Lord;</VERS>\r\n      <VERS vnumber=\"12\">rejoicing in hope; patient in tribulation; continuing stedfastly in prayer;</VERS>\r\n      <VERS vnumber=\"13\">communicating to the necessities of the saints; given to hospitality.</VERS>\r\n      <VERS vnumber=\"14\">Bless them that persecute you; bless, and curse not.</VERS>\r\n      <VERS vnumber=\"15\">Rejoice with them that rejoice; weep with them that weep.</VERS>\r\n      <VERS vnumber=\"16\">Be of the same mind one toward another. Set not your mind on high things, but condescend to things that are lowly. Be not wise in your own conceits.</VERS>\r\n      <VERS vnumber=\"17\">Render to no man evil for evil. Take thought for things honorable in the sight of all men.</VERS>\r\n      <VERS vnumber=\"18\">If it be possible, as much as in you lieth, be at peace with all men.</VERS>\r\n      <VERS vnumber=\"19\">Avenge not yourselves, beloved, but give place unto the wrath [of God]: for it is written, Vengeance belongeth unto me; I will recompense, saith the Lord.</VERS>\r\n      <VERS vnumber=\"20\">But if thine enemy hunger, feed him; if he thirst, give him to drink: for in so doing thou shalt heap coals of fire upon his head.</VERS>\r\n      <VERS vnumber=\"21\">Be not overcome of evil, but overcome evil with good.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">Let every soul be in subjection to the higher powers: for there is no power but of God; and the [powers] that be are ordained of God.</VERS>\r\n      <VERS vnumber=\"2\">Therefore he that resisteth the power, withstandeth the ordinance of God: and they that withstand shall receive to themselves judgment.</VERS>\r\n      <VERS vnumber=\"3\">For rulers are not a terror to the good work, but to the evil. And wouldest thou have no fear of the power? do that which is good, and thou shalt have praise from the same:</VERS>\r\n      <VERS vnumber=\"4\">for he is a 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 a minister of God, an avenger for wrath to him that doeth evil.</VERS>\r\n      <VERS vnumber=\"5\">Wherefore [ye] must needs be in subjection, not only because of the wrath, but also for conscience` sake.</VERS>\r\n      <VERS vnumber=\"6\">For this cause ye pay tribute also; for they are ministers of God`s service, attending continually upon this very thing.</VERS>\r\n      <VERS vnumber=\"7\">Render to all their dues: tribute to whom tribute [is due]; custom to whom custom; fear to whom fear; honor to whom honor.</VERS>\r\n      <VERS vnumber=\"8\">Owe no man anything, save to love one another: for he that loveth his neighbor hath fulfilled the law.</VERS>\r\n      <VERS vnumber=\"9\">For this, Thou shalt not commit adultery, Thou shalt not kill, Thou shalt not steal, Thou shalt not covet, and if there be any other commandment, it is summed up in this word, namely, Thou shalt love thy neighbor as thyself.</VERS>\r\n      <VERS vnumber=\"10\">Love worketh no ill to his neighbor: love therefore is the fulfilment of the law.</VERS>\r\n      <VERS vnumber=\"11\">And this, knowing the season, that already it is time for you to awake out of sleep: for now is salvation nearer to us than when we [first] believed.</VERS>\r\n      <VERS vnumber=\"12\">The night is far spent, and the day is at hand: let us therefore cast off the works of darkness, and let us put on the armor of light.</VERS>\r\n      <VERS vnumber=\"13\">Let us walk becomingly, as in the day; not in revelling and drunkenness, not in chambering and wantonness, not in strife and jealousy.</VERS>\r\n      <VERS vnumber=\"14\">But put ye on the Lord Jesus Christ, and make not provision for the flesh, to [fulfil] the lusts [thereof].</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">But him that is weak in faith receive ye, [yet] not for decision of scruples.</VERS>\r\n      <VERS vnumber=\"2\">One man hath faith to eat all things: but he that is weak eateth herbs.</VERS>\r\n      <VERS vnumber=\"3\">Let not him that eateth set at nought him that eateth not; and let not him that eateth not judge him that eateth: for God hath received him.</VERS>\r\n      <VERS vnumber=\"4\">Who art thou that judgest the servant of another? to his own lord he standeth or falleth. Yea, he shall be made to stand; for the Lord hath power to make him stand.</VERS>\r\n      <VERS vnumber=\"5\">One man esteemeth one day above another: another esteemeth every day [alike]. Let each man be fully assured in his own mind.</VERS>\r\n      <VERS vnumber=\"6\">He that regardeth the day, regardeth it unto the Lord: and he that eateth, eateth unto the Lord, for he giveth God thanks; and he that eateth not, unto the Lord he eateth not, and giveth God thanks.</VERS>\r\n      <VERS vnumber=\"7\">For none of us liveth to himself, and none dieth to himself.</VERS>\r\n      <VERS vnumber=\"8\">For whether we live, we live unto the Lord; or whether we die, we die unto the Lord: whether we live therefore, or die, we are the Lord`s.</VERS>\r\n      <VERS vnumber=\"9\">For to this end Christ died and lived [again], that he might be Lord of both the dead and the living.</VERS>\r\n      <VERS vnumber=\"10\">But thou, why dost thou judge thy brother? or thou again, why dost thou set at nought thy brother? for we shall all stand before the judgment-seat of God.</VERS>\r\n      <VERS vnumber=\"11\">For it is written, As I live, saith the Lord, to me every knee shall bow, And every tongue shall confess to God.</VERS>\r\n      <VERS vnumber=\"12\">So then each one of us shall give account of himself to God.</VERS>\r\n      <VERS vnumber=\"13\">Let us not therefore judge one another any more: but judge ye this rather, that no man put a stumblingblock in his brother`s way, or an occasion of falling.</VERS>\r\n      <VERS vnumber=\"14\">I know, and am persuaded in the Lord Jesus, that nothing is unclean of itself: save that to him who accounteth anything to be unclean, to him it is unclean.</VERS>\r\n      <VERS vnumber=\"15\">For if because of meat thy brother is grieved, thou walkest no longer in love. Destroy not with thy meat him for whom Christ died.</VERS>\r\n      <VERS vnumber=\"16\">Let not then your good be evil spoken of:</VERS>\r\n      <VERS vnumber=\"17\">for the kingdom of God is not eating and drinking, but righteousness and peace and joy in the Holy Spirit.</VERS>\r\n      <VERS vnumber=\"18\">For he that herein serveth Christ is well-pleasing to God, and approved of men.</VERS>\r\n      <VERS vnumber=\"19\">So then let us follow after things which make for peace, and things whereby we may edify one another.</VERS>\r\n      <VERS vnumber=\"20\">Overthrow not for meat`s sake the work of God. All things indeed are clean; howbeit it is evil for that man who eateth with offence.</VERS>\r\n      <VERS vnumber=\"21\">It is good not to eat flesh, nor to drink wine, nor [to do anything] whereby thy brother stumbleth.</VERS>\r\n      <VERS vnumber=\"22\">The faith which thou hast, have thou to thyself before God. Happy is he that judgeth not himself in that which he approveth.</VERS>\r\n      <VERS vnumber=\"23\">But he that doubteth is condemned if he eat, because [he eateth] not of faith; and whatsoever is not of faith is sin.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">Now we that are strong ought to bear the infirmities of the weak, and not to please ourselves.</VERS>\r\n      <VERS vnumber=\"2\">Let each one of us please his neighbor for that which is good, unto edifying.</VERS>\r\n      <VERS vnumber=\"3\">For Christ also pleased not himself; but, as it is written, The reproaches of them that reproached thee fell upon me.</VERS>\r\n      <VERS vnumber=\"4\">For whatsoever things were written aforetime were written for our learning, that through patience and through comfort of the scriptures we might have hope.</VERS>\r\n      <VERS vnumber=\"5\">Now the God of patience and of comfort grant you to be of the same mind one with another according to Christ Jesus:</VERS>\r\n      <VERS vnumber=\"6\">that with one accord ye may with one mouth glorify the God and Father of our Lord Jesus Christ.</VERS>\r\n      <VERS vnumber=\"7\">Wherefore receive ye one another, even as Christ also received you, to the glory of God.</VERS>\r\n      <VERS vnumber=\"8\">For I say that Christ hath been made a minister of the circumcision for the truth of God, that he might confirm the promises [given] unto the fathers,</VERS>\r\n      <VERS vnumber=\"9\">and that the Gentiles might glorify God for his mercy; as it is written, Therefore will I give praise unto thee among the Gentiles, And sing unto thy name.</VERS>\r\n      <VERS vnumber=\"10\">And again he saith, Rejoice, ye Gentiles, with his people.</VERS>\r\n      <VERS vnumber=\"11\">And again, Praise the Lord, all ye Gentiles; And let all the peoples praise him.</VERS>\r\n      <VERS vnumber=\"12\">And again, Isaiah saith, There shall be the root of Jesse, And he that ariseth to rule over the Gentiles; On him shall the Gentiles hope.</VERS>\r\n      <VERS vnumber=\"13\">Now the God of hope fill you with all joy and peace in believing, that ye may abound in hope, in the power of the Holy Spirit.</VERS>\r\n      <VERS vnumber=\"14\">And I myself also am persuaded of you, my brethren, that ye yourselves are full of goodness, filled with all knowledge, able also to admonish one another.</VERS>\r\n      <VERS vnumber=\"15\">But I write the more boldly unto you in some measure, as putting you again in remembrance, because of the grace that was given me of God,</VERS>\r\n      <VERS vnumber=\"16\">that I should be a minister of Christ Jesus unto the Gentiles, ministering the gospel of God, that the offering up of the Gentiles might be made acceptable, being sanctified by the Holy Spirit.</VERS>\r\n      <VERS vnumber=\"17\">I have therefore my glorifying in Christ Jesus in things pertaining to God.</VERS>\r\n      <VERS vnumber=\"18\">For I will not dare to speak of any things save those which Christ wrought through me, for the obedience of the Gentiles, by word and deed,</VERS>\r\n      <VERS vnumber=\"19\">in the power of signs and wonders, in the power of the Holy Spirit; so that from Jerusalem, and round about even unto Illyricum, I have fully preached the gospel of Christ;</VERS>\r\n      <VERS vnumber=\"20\">yea, making it my aim so to preach the gospel, not where Christ was [already] named, that I might not build upon another man`s foundation;</VERS>\r\n      <VERS vnumber=\"21\">but, as it is written, They shall see, to whom no tidings of him came, And they who have not heard shall understand.</VERS>\r\n      <VERS vnumber=\"22\">Wherefore also I was hindered these many times from coming to you:</VERS>\r\n      <VERS vnumber=\"23\">but now, having no more any place in these regions, and having these many years a longing to come unto you,</VERS>\r\n      <VERS vnumber=\"24\">whensoever I go unto Spain (for I hope to see you in my journey, and to be brought on my way thitherward by you, if first in some measure I shall have been satisfied with your company)--</VERS>\r\n      <VERS vnumber=\"25\">but now, I [say], I go unto Jerusalem, ministering unto the saints.</VERS>\r\n      <VERS vnumber=\"26\">For it hath been the good pleasure of Macedonia and Achaia to make a certain contribution for the poor among the saints that are at Jerusalem.</VERS>\r\n      <VERS vnumber=\"27\">Yea, it hath been their good pleasure; and their debtors they are. For if the Gentiles have been made partakers of their spiritual things, they owe it [to them] also to minister unto them in carnal things.</VERS>\r\n      <VERS vnumber=\"28\">When therefore I have accomplished this, and have sealed to them this fruit, I will go on by you unto Spain.</VERS>\r\n      <VERS vnumber=\"29\">And I know that, when I come unto you, I shall come in the fulness of the blessing of Christ.</VERS>\r\n      <VERS vnumber=\"30\">Now I beseech you, brethren, by our Lord Jesus Christ, and by the love of the Spirit, that ye strive together with me in your prayers to God for me;</VERS>\r\n      <VERS vnumber=\"31\">that I may be delivered from them that are disobedient in Judaea, and [that] my ministration which [I have] for Jerusalem may be acceptable to the saints;</VERS>\r\n      <VERS vnumber=\"32\">that I may come unto you in joy through the will of God, and together with you find rest.</VERS>\r\n      <VERS vnumber=\"33\">Now the God of peace be with you all. Amen.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">I commend unto you Phoebe our sister, who is a servant of the church that is at Cenchreae:</VERS>\r\n      <VERS vnumber=\"2\">that ye receive her in the Lord, worthily of the saints, and that ye assist her in whatsoever matter she may have need of you: for she herself also hath been a helper of many, and of mine own self.</VERS>\r\n      <VERS vnumber=\"3\">Salute Prisca and Aquila my fellow-workers in Christ Jesus,</VERS>\r\n      <VERS vnumber=\"4\">who for my life laid down their own necks; unto whom not only I give thanks, but also all the churches of the Gentiles:</VERS>\r\n      <VERS vnumber=\"5\">and [salute] the church that is in their house. Salute Epaenetus my beloved, who is the first-fruits of Asia unto Christ.</VERS>\r\n      <VERS vnumber=\"6\">Salute Mary, who bestowed much labor on you.</VERS>\r\n      <VERS vnumber=\"7\">Salute Andronicus and Junias, my kinsmen, and my fellow-prisoners, who are of note among the apostles, who also have been in Christ before me.</VERS>\r\n      <VERS vnumber=\"8\">Salute Ampliatus my beloved in the Lord.</VERS>\r\n      <VERS vnumber=\"9\">Salute Urbanus our fellow-worker in Christ, and Stachys my beloved.</VERS>\r\n      <VERS vnumber=\"10\">Salute Apelles the approved in Christ. Salute them that are of the [household] of Aristobulus.</VERS>\r\n      <VERS vnumber=\"11\">Salute Herodion my kinsman. Salute them of the [household] of Narcissus, that are in the Lord.</VERS>\r\n      <VERS vnumber=\"12\">Salute Tryphaena and Tryphosa, who labor in the Lord. Salute Persis the beloved, who labored much in the Lord.</VERS>\r\n      <VERS vnumber=\"13\">Salute Rufus the chosen in the Lord, and his mother and mine.</VERS>\r\n      <VERS vnumber=\"14\">Salute Asyncritus, Phlegon, Hermes, Patrobas, Hermas, and the brethren that are with them.</VERS>\r\n      <VERS vnumber=\"15\">Salute Philologus and Julia, Nereus and his sister, and Olympas, and all the saints that are with them.</VERS>\r\n      <VERS vnumber=\"16\">Salute one another with a holy kiss. All the churches of Christ salute you.</VERS>\r\n      <VERS vnumber=\"17\">Now I beseech you, brethren, mark them that are causing the divisions and occasions of stumbling, contrary to the doctrine which ye learned: and turn away from them.</VERS>\r\n      <VERS vnumber=\"18\">For they that are such serve not our Lord Christ, but their own belly; and by their smooth and fair speech they beguile the hearts of the innocent.</VERS>\r\n      <VERS vnumber=\"19\">For your obedience is come abroad unto all men. I rejoice therefore over you: but I would have you wise unto that which is good, and simple unto that which is evil.</VERS>\r\n      <VERS vnumber=\"20\">And the God of peace shall bruise Satan under your feet shortly. The grace of our Lord Jesus Christ be with you.</VERS>\r\n      <VERS vnumber=\"21\">Timothy my fellow-worker saluteth you; and Lucius and Jason and Sosipater, my kinsmen.</VERS>\r\n      <VERS vnumber=\"22\">I Tertius, who write the epistle, salute you in the Lord.</VERS>\r\n      <VERS vnumber=\"23\">Gaius my host, and of the whole church, saluteth you. Erastus the treasurer of the city saluteth you, and Quartus the brother.</VERS>\r\n      <VERS vnumber=\"24\">[The grace of our Lord Jesus Christ be with you all. Amen.]</VERS>\r\n      <VERS vnumber=\"25\">Now to him that is able to establish you according to my gospel and the preaching of Jesus Christ, according to the revelation of the mystery which hath been kept in silence through times eternal,</VERS>\r\n      <VERS vnumber=\"26\">but now is manifested, and by the scriptures of the prophets, according to the commandment of the eternal God, is made known unto all the nations unto obedience of faith:</VERS>\r\n      <VERS vnumber=\"27\">to the only wise God, through Jesus Christ, to whom be the glory for ever. Amen.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"46\" bname=\"1 Corinthians\" bsname=\"1Cor\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">Paul, called [to be] an apostle of Jesus Christ through the will of God, and Sosthenes our brother,</VERS>\r\n      <VERS vnumber=\"2\">unto the church of God which is at Corinth, [even] them that are sanctified in Christ Jesus, called [to be] saints, with all that call upon the name of our Lord Jesus Christ in every place, their [Lord] and ours:</VERS>\r\n      <VERS vnumber=\"3\">Grace to you and peace from God our Father and the Lord Jesus Christ.</VERS>\r\n      <VERS vnumber=\"4\">I thank my God always concerning you, for the grace of God which was given you in Christ Jesus;</VERS>\r\n      <VERS vnumber=\"5\">that in everything ye were enriched in him, in all utterance and all knowledge;</VERS>\r\n      <VERS vnumber=\"6\">even as the testimony of Christ was confirmed in you:</VERS>\r\n      <VERS vnumber=\"7\">so that ye come behind in no gift; waiting for the revelation of our Lord Jesus Christ;</VERS>\r\n      <VERS vnumber=\"8\">who shall also confirm you unto the end, [that ye be] unreproveable in the day of our Lord Jesus Christ.</VERS>\r\n      <VERS vnumber=\"9\">God is faithful, through whom ye were called into the fellowship of his Son Jesus Christ our Lord.</VERS>\r\n      <VERS vnumber=\"10\">Now I beseech you, brethren, through 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 perfected together in the same mind and in the same judgment.</VERS>\r\n      <VERS vnumber=\"11\">For it hath been signified unto me concerning you, my brethren, by them [that are of the household] of Chloe, that there are contentions among you.</VERS>\r\n      <VERS vnumber=\"12\">Now this I mean, that each one of you saith, I am of Paul; and I of Apollos: and I of Cephas; and I of Christ.</VERS>\r\n      <VERS vnumber=\"13\">Is Christ divided? was Paul crucified for you? or were ye baptized into the name of Paul?</VERS>\r\n      <VERS vnumber=\"14\">I thank God that I baptized none of you, save Crispus and Gaius;</VERS>\r\n      <VERS vnumber=\"15\">lest any man should say that ye were baptized into my name.</VERS>\r\n      <VERS vnumber=\"16\">And I baptized also the household of Stephanas: besides, I know not whether I baptized any other.</VERS>\r\n      <VERS vnumber=\"17\">For Christ sent me not to baptize, but to preach the gospel: not in wisdom of words, lest the cross of Christ should be made void.</VERS>\r\n      <VERS vnumber=\"18\">For the word of the cross is to them that perish foolishness; but unto us who are saved it is the power of God.</VERS>\r\n      <VERS vnumber=\"19\">For it is written, I will destroy the wisdom of the wise, And the discernment of the discerning will I bring to nought.</VERS>\r\n      <VERS vnumber=\"20\">Where is the wise? where is the scribe? where is the disputer of this world? hath not God made foolish the wisdom of the world?</VERS>\r\n      <VERS vnumber=\"21\">For seeing that in the wisdom of God the world through its wisdom knew not God, it was God`s good pleasure through the foolishness of the preaching to save them that believe.</VERS>\r\n      <VERS vnumber=\"22\">Seeing that Jews ask for signs, and Greeks seek after wisdom:</VERS>\r\n      <VERS vnumber=\"23\">but we preach Christ crucified, unto Jews a stumblingblock, and unto Gentiles foolishness;</VERS>\r\n      <VERS vnumber=\"24\">but unto them that are called, both Jews and Greeks, Christ the power of God, and the wisdom of God.</VERS>\r\n      <VERS vnumber=\"25\">Because the foolishness of God is wiser than men; and the weakness of God is stronger than men.</VERS>\r\n      <VERS vnumber=\"26\">For behold your calling, brethren, that not many wise after the flesh, not many mighty, not many noble, [are called]:</VERS>\r\n      <VERS vnumber=\"27\">but God chose the foolish things of the world, that he might put to shame them that are wise; and God chose the weak things of the world, that he might put to shame the things that are strong;</VERS>\r\n      <VERS vnumber=\"28\">and the base things of the world, and the things that are despised, did God choose, [yea] and the things that are not, that he might bring to nought the things that are:</VERS>\r\n      <VERS vnumber=\"29\">that no flesh should glory before God.</VERS>\r\n      <VERS vnumber=\"30\">But of him are ye in Christ Jesus, who was made unto us wisdom from God, and righteousness and sanctification, and redemption:</VERS>\r\n      <VERS vnumber=\"31\">that, according as it is written, He that glorieth, let him glory in the Lord.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">And I, brethren, when I came unto you, came not with excellency of speech or of wisdom, proclaiming to you the testimony of God.</VERS>\r\n      <VERS vnumber=\"2\">For I determined not to know anything among you, save Jesus Christ, and him crucified.</VERS>\r\n      <VERS vnumber=\"3\">And I was with you in weakness, and in fear, and in much trembling.</VERS>\r\n      <VERS vnumber=\"4\">And my speech and my preaching were not in persuasive words of wisdom, but in demonstration of the Spirit and of power:</VERS>\r\n      <VERS vnumber=\"5\">that your faith should not stand in the wisdom of men, but in the power of God.</VERS>\r\n      <VERS vnumber=\"6\">We speak wisdom, however, among them that are fullgrown: yet a wisdom not of this world, nor of the rulers of this world, who are coming to nought:</VERS>\r\n      <VERS vnumber=\"7\">but we speak God`s wisdom in a mystery, [even] the [wisdom] that hath been hidden, which God foreordained before the worlds unto our glory:</VERS>\r\n      <VERS vnumber=\"8\">which none of the rulers of this world hath known: for had they known it, they would not have crucified the Lord of glory:</VERS>\r\n      <VERS vnumber=\"9\">but as it is written, Things which eye saw not, and ear heard not, And [which] entered not into the heart of man, Whatsoever things God prepared for them that love him.</VERS>\r\n      <VERS vnumber=\"10\">But unto us God revealed [them] through the Spirit: for the Spirit searcheth all things, yea, the deep things of God.</VERS>\r\n      <VERS vnumber=\"11\">For who among men knoweth the things of a man, save the spirit of the man, which is in him? even so the things of God none knoweth, save the Spirit of God.</VERS>\r\n      <VERS vnumber=\"12\">But we received, not the spirit of the world, but the spirit which is from God; that we might know the things that were freely given to us of God.</VERS>\r\n      <VERS vnumber=\"13\">Which things also we speak, not in words which man`s wisdom teacheth, but which the Spirit teacheth; combining spiritual things with spiritual [words].</VERS>\r\n      <VERS vnumber=\"14\">Now the natural man receiveth not the things of the Spirit of God: for they are foolishness unto him; and he cannot know them, because they are spiritually judged.</VERS>\r\n      <VERS vnumber=\"15\">But he that is spiritual judgeth all things, and he himself is judged of no man.</VERS>\r\n      <VERS vnumber=\"16\">For who hath known the mind of the Lord, that he should instruct him? But we have the mind of Christ.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">And I, brethren, could not speak unto you as unto spiritual, but as unto carnal, as unto babes in Christ.</VERS>\r\n      <VERS vnumber=\"2\">I fed you with milk, not with meat; for ye were not yet able [to bear it]: nay, not even now are ye able;</VERS>\r\n      <VERS vnumber=\"3\">for ye are yet carnal: for whereas there is among you jealousy and strife, are ye not carnal, and do ye not walk after the manner of men?</VERS>\r\n      <VERS vnumber=\"4\">For when one saith, I am of Paul; and another, I am of Apollos; are ye not men?</VERS>\r\n      <VERS vnumber=\"5\">What then is Apollos? and what is Paul? Ministers through whom ye believed; and each as the Lord gave to him.</VERS>\r\n      <VERS vnumber=\"6\">I planted, Apollos watered; but God gave the increase.</VERS>\r\n      <VERS vnumber=\"7\">So then neither is he that planteth anything, neither he that watereth; but God that giveth the increase.</VERS>\r\n      <VERS vnumber=\"8\">Now he that planteth and he that watereth are one: but each shall receive his own reward according to his own labor.</VERS>\r\n      <VERS vnumber=\"9\">For we are God`s fellow-workers: ye are God`s husbandry, God`s building.</VERS>\r\n      <VERS vnumber=\"10\">According to the grace of God which was given unto me, as a wise masterbuilder I laid a foundation; and another buildeth thereon. But let each man take heed how he buildeth thereon.</VERS>\r\n      <VERS vnumber=\"11\">For other foundation can no man lay than that which is laid, which is Jesus Christ.</VERS>\r\n      <VERS vnumber=\"12\">But if any man buildeth on the foundation gold, silver, costly stones, wood, hay, stubble;</VERS>\r\n      <VERS vnumber=\"13\">each man`s work shall be made manifest: for the day shall declare it, because it is revealed in fire; and the fire itself shall prove each man`s work of what sort it is.</VERS>\r\n      <VERS vnumber=\"14\">If any man`s work shall abide which he built thereon, he shall receive a reward.</VERS>\r\n      <VERS vnumber=\"15\">If any man`s work shall be burned, he shall suffer loss: but he himself shall be saved; yet so as through fire.</VERS>\r\n      <VERS vnumber=\"16\">Know ye not that ye are a temple of God, and [that] the Spirit of God dwelleth in you?</VERS>\r\n      <VERS vnumber=\"17\">If any man destroyeth the temple of God, him shall God destroy; for the temple of God is holy, and such are ye.</VERS>\r\n      <VERS vnumber=\"18\">Let no man deceive himself. If any man thinketh that he is wise among you in this world, let him become a fool, that he may become wise.</VERS>\r\n      <VERS vnumber=\"19\">For the wisdom of this world is foolishness with God. For it is written, He that taketh the wise in their craftiness:</VERS>\r\n      <VERS vnumber=\"20\">and again, The Lord knoweth the reasonings of the wise that they are vain.</VERS>\r\n      <VERS vnumber=\"21\">Wherefore let no one glory in men. For all things are yours;</VERS>\r\n      <VERS vnumber=\"22\">whether Paul, or Apollos, or Cephas, or the world, or life, or death, or things present, or things to come; all are yours;</VERS>\r\n      <VERS vnumber=\"23\">and ye are Christ`s; and Christ is God`s.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">Let a man so account of us, as of ministers of Christ, and stewards of the mysteries of God.</VERS>\r\n      <VERS vnumber=\"2\">Here, moreover, it is required in stewards, that a man be found faithful.</VERS>\r\n      <VERS vnumber=\"3\">But 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.</VERS>\r\n      <VERS vnumber=\"4\">For I know nothing against myself; yet am I not hereby justified: but he that judgeth me is the Lord.</VERS>\r\n      <VERS vnumber=\"5\">Wherefore judge nothing before the time, until the Lord come, who will both bring to light the hidden things of darkness, and make manifest the counsels of the hearts; and then shall each man have his praise from God.</VERS>\r\n      <VERS vnumber=\"6\">Now these things, brethren, I have in a figure transferred to myself and Apollos for your sakes; that in us ye might learn not [to go] beyond the things which are written; that no one of you be puffed up for the one against the other.</VERS>\r\n      <VERS vnumber=\"7\">For who maketh thee to differ? and what hast thou that thou didst not receive? but if thou didst receive it, why dost thou glory as if thou hadst not received it?</VERS>\r\n      <VERS vnumber=\"8\">Already are ye filled, already ye are become rich, ye have come to reign without us: yea and I would that ye did reign, that we also might reign with you.</VERS>\r\n      <VERS vnumber=\"9\">For, I think, God hath set forth us the apostles last of all, as men doomed to death: for we are made a spectacle unto the world, both to angels and men.</VERS>\r\n      <VERS vnumber=\"10\">We are fools for Christ`s sake, but ye are wise in Christ; we are weak, but ye are strong; ye have glory, but we have dishonor.</VERS>\r\n      <VERS vnumber=\"11\">Even unto this present hour we both hunger, and thirst, and are naked, and are buffeted, and have no certain dwelling-place;</VERS>\r\n      <VERS vnumber=\"12\">and we toil, working with our own hands: being reviled, we bless; being persecuted, we endure;</VERS>\r\n      <VERS vnumber=\"13\">being defamed, we entreat: we are made as the filth of the world, the offscouring of all things, even until now.</VERS>\r\n      <VERS vnumber=\"14\">I write not these things to shame you, but to admonish you as my beloved children.</VERS>\r\n      <VERS vnumber=\"15\">For though ye have ten thousand tutors in Christ, yet [have ye] not many fathers; for in Christ Jesus I begat you through the gospel.</VERS>\r\n      <VERS vnumber=\"16\">I beseech you therefore, be ye imitators of me.</VERS>\r\n      <VERS vnumber=\"17\">For this cause have I sent unto you Timothy, who is my beloved and faithful child in the Lord, who shall put you in remembrance of my ways which are in Christ, even as I teach everywhere in every church.</VERS>\r\n      <VERS vnumber=\"18\">Now some are puffed up, as though I were not coming to you.</VERS>\r\n      <VERS vnumber=\"19\">But I will come to you shortly, if the Lord will; and I will know, not the word of them that are puffed up, but the power.</VERS>\r\n      <VERS vnumber=\"20\">For the kingdom of God is not in word, but in power.</VERS>\r\n      <VERS vnumber=\"21\">What will ye? shall I come unto you with a rod, or in love and a spirit of gentleness?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">It is actually reported that there is fornication among you, and such fornication as is not even among the Gentiles, that one [of you] hath his father`s wife.</VERS>\r\n      <VERS vnumber=\"2\">And ye are puffed up, and did not rather mourn, that he that had done this deed might be taken away from among you.</VERS>\r\n      <VERS vnumber=\"3\">For I verily, being absent in body but present in spirit, have already as though I were present judged him that hath so wrought this thing,</VERS>\r\n      <VERS vnumber=\"4\">in the name of our Lord Jesus, ye being gathered together, and my spirit, with the power of our Lord Jesus,</VERS>\r\n      <VERS vnumber=\"5\">to deliver such a one unto Satan for the destruction of the flesh, that the spirit may be saved in the day of the Lord Jesus.</VERS>\r\n      <VERS vnumber=\"6\">Your glorying is not good. Know ye not that a little leaven leaveneth the whole lump?</VERS>\r\n      <VERS vnumber=\"7\">Purge out the old leaven, that ye may be a new lump, even as ye are unleavened. For our passover also hath been sacrificed, [even] Christ:</VERS>\r\n      <VERS vnumber=\"8\">wherefore 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.</VERS>\r\n      <VERS vnumber=\"9\">I wrote unto you in my epistle to have no company with fornicators;</VERS>\r\n      <VERS vnumber=\"10\">not at all [meaning] with the fornicators of this world, or with the covetous and extortioners, or with idolaters; for then must ye needs go out of the world:</VERS>\r\n      <VERS vnumber=\"11\">but as it is, I wrote unto you not to keep company, if any man that is named a brother be a fornicator, or covetous, or an idolater, or a reviler, or a drunkard, or an extortioner; with such a one no, not to eat.</VERS>\r\n      <VERS vnumber=\"12\">For what have I to do with judging them that are without? Do not ye judge them that are within?</VERS>\r\n      <VERS vnumber=\"13\">But them that are without God judgeth. Put away the wicked man from among yourselves.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">Dare any of you, having a matter against his neighbor, go to law before the unrighteous, and not before the saints?</VERS>\r\n      <VERS vnumber=\"2\">Or know ye not that the saints shall judge the world? and if the world is judged by you, are ye unworthy to judge the smallest matters?</VERS>\r\n      <VERS vnumber=\"3\">Know ye not that we shall judge angels? how much more, things that pertain to this life?</VERS>\r\n      <VERS vnumber=\"4\">If then ye have to judge things pertaining to this life, do ye set them to judge who are of no account in the church?</VERS>\r\n      <VERS vnumber=\"5\">I say [this] to move you to shame. What, cannot there be [found] among you one wise man who shall be able to decide between his brethren,</VERS>\r\n      <VERS vnumber=\"6\">but brother goeth to law with brother, and that before unbelievers?</VERS>\r\n      <VERS vnumber=\"7\">Nay, already it is altogether a defect in you, that ye have lawsuits one with another. Why not rather take wrong? why not rather be defrauded?</VERS>\r\n      <VERS vnumber=\"8\">Nay, but ye yourselves do wrong, and defraud, and that [your] brethren.</VERS>\r\n      <VERS vnumber=\"9\">Or know 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 men,</VERS>\r\n      <VERS vnumber=\"10\">nor thieves, nor covetous, nor drunkards, nor revilers, nor extortioners, shall inherit the kingdom of God.</VERS>\r\n      <VERS vnumber=\"11\">And such were some of you: but ye were washed, but ye were sanctified, but ye were justified in the name of the Lord Jesus Christ, and in the Spirit of our God.</VERS>\r\n      <VERS vnumber=\"12\">All things are lawful for me; but not all things are expedient. All things are lawful for me; but I will not be brought under the power of any.</VERS>\r\n      <VERS vnumber=\"13\">Meats for the belly, and the belly for meats: but God shall bring to nought both it and them. But the body is not for fornication, but for the Lord; and the Lord for the body:</VERS>\r\n      <VERS vnumber=\"14\">and God both raised the Lord, and will raise up as through his power.</VERS>\r\n      <VERS vnumber=\"15\">Know ye not that your bodies are members of Christ? shall I then take away the members of Christ, and make them members of a harlot? God forbid.</VERS>\r\n      <VERS vnumber=\"16\">Or know ye not that he that is joined to a harlot is one body? for, The twain, saith he, shall become one flesh.</VERS>\r\n      <VERS vnumber=\"17\">But he that is joined unto the Lord is one spirit.</VERS>\r\n      <VERS vnumber=\"18\">Flee fornication. Every sin that a man doeth is without the body; but he that committeth fornication sinneth against his own body.</VERS>\r\n      <VERS vnumber=\"19\">Or know ye not that your body is a temple of the Holy Spirit which is in you, which ye have from God? and ye are not your own;</VERS>\r\n      <VERS vnumber=\"20\">for ye were bought with a price: glorify God therefore in your body.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">Now concerning the things whereof ye wrote: It is good for a man not to touch a woman.</VERS>\r\n      <VERS vnumber=\"2\">But, because of fornications, let each man have his own wife, and let each woman have her own husband.</VERS>\r\n      <VERS vnumber=\"3\">Let the husband render unto the wife her due: and likewise also the wife unto the husband.</VERS>\r\n      <VERS vnumber=\"4\">The wife hath not power over her own body, but the husband: and likewise also the husband hath not power over his own body, but the wife.</VERS>\r\n      <VERS vnumber=\"5\">Defraud ye not one the other, except it be by consent for a season, that ye may give yourselves unto prayer, and may be together again, that Satan tempt you not because of your incontinency.</VERS>\r\n      <VERS vnumber=\"6\">But this I say by way of concession, not of commandment.</VERS>\r\n      <VERS vnumber=\"7\">Yet I would that all men were even as I myself. Howbeit each man hath his own gift from God, one after this manner, and another after that.</VERS>\r\n      <VERS vnumber=\"8\">But I say to the unmarried and to widows, It is good for them if they abide even as I.</VERS>\r\n      <VERS vnumber=\"9\">But if they have not continency, let them marry: for it is better to marry than to burn.</VERS>\r\n      <VERS vnumber=\"10\">But unto the married I give charge, [yea] not I, but the Lord, That the wife depart not from her husband</VERS>\r\n      <VERS vnumber=\"11\">(but should she depart, let her remain unmarried, or else be reconciled to her husband); and that the husband leave not his wife.</VERS>\r\n      <VERS vnumber=\"12\">But to the rest say I, not the Lord: If any brother hath an unbelieving wife, and she is content to dwell with him, let him not leave her.</VERS>\r\n      <VERS vnumber=\"13\">And the woman that hath an unbelieving husband, and he is content to dwell with her, let her not leave her husband.</VERS>\r\n      <VERS vnumber=\"14\">For the unbelieving husband is sanctified in the wife, and the unbelieving wife is sanctified in the brother: else were your children unclean; but now are they holy.</VERS>\r\n      <VERS vnumber=\"15\">Yet if the unbelieving departeth, let him depart: the brother or the sister is not under bondage in such [cases]: but God hath called us in peace.</VERS>\r\n      <VERS vnumber=\"16\">For how knowest thou, O wife, whether thou shalt save thy husband? Or how knowest thou, O husband, whether thou shalt save thy wife?</VERS>\r\n      <VERS vnumber=\"17\">Only, as the Lord hath distributed to each man, as God hath called each, so let him walk. And so ordain I in all the churches.</VERS>\r\n      <VERS vnumber=\"18\">Was any man called being circumcised? Let him not become uncircumcised. Hath any been called in uncircumcision? Let him not be circumcised.</VERS>\r\n      <VERS vnumber=\"19\">Circumcision is nothing, and uncircumcision is nothing; but the keeping of the commandments of God.</VERS>\r\n      <VERS vnumber=\"20\">Let each man abide in that calling wherein he was called.</VERS>\r\n      <VERS vnumber=\"21\">Wast thou called being a bondservant? Care not for it: nay, even if thou canst become free, use [it] rather.</VERS>\r\n      <VERS vnumber=\"22\">For he that was called in the Lord being a bondservant, is the Lord`s freedman: likewise he that was called being free, is Christ`s bondservant.</VERS>\r\n      <VERS vnumber=\"23\">Ye were bought with a price; become not bondservants of men.</VERS>\r\n      <VERS vnumber=\"24\">Brethren, let each man, wherein he was called, therein abide with God.</VERS>\r\n      <VERS vnumber=\"25\">Now concerning virgins I have no commandment of the Lord: but I give my judgment, as one that hath obtained mercy of the Lord to be trustworthy.</VERS>\r\n      <VERS vnumber=\"26\">I think therefore that this is good by reason of the distress that is upon us, [namely,] that it is good for a man to be as he is.</VERS>\r\n      <VERS vnumber=\"27\">Art thou bound unto a wife? Seek not to be loosed. Art thou loosed from a wife? Seek not a wife.</VERS>\r\n      <VERS vnumber=\"28\">But shouldest thou marry, thou hast not sinned; and if a virgin marry, she hath not sinned. Yet such shall have tribulation in the flesh: and I would spare you.</VERS>\r\n      <VERS vnumber=\"29\">But this I say, brethren, the time is shortened, that henceforth both those that have wives may be as though they had none;</VERS>\r\n      <VERS vnumber=\"30\">and those that weep, as though they wept not; and those that rejoice, as though they rejoiced not; and those that buy, as though they possessed not;</VERS>\r\n      <VERS vnumber=\"31\">and those that use the world, as not using it to the full: for the fashion of this world passeth away.</VERS>\r\n      <VERS vnumber=\"32\">But I would have you to be free from cares. He that is unmarried is careful for the things of the Lord, how he may please the Lord:</VERS>\r\n      <VERS vnumber=\"33\">but he that is married is careful for the things of the world, how he may please his wife,</VERS>\r\n      <VERS vnumber=\"34\">and is divided. [So] also the woman that is unmarried and the virgin is careful for the things of the Lord, that she may be holy both in body and in spirit: but she that is married is careful for the things of the world, how she may please her husband.</VERS>\r\n      <VERS vnumber=\"35\">And this I say for your own profit; not that I may cast a snare upon you, but for that which is seemly, and that ye may attend upon the Lord without distraction.</VERS>\r\n      <VERS vnumber=\"36\">But if any man thinketh that he behaveth himself unseemly toward his virgin [daughter], if she be past the flower of her age, and if need so requireth, let him do what he will; he sinneth not; let them marry.</VERS>\r\n      <VERS vnumber=\"37\">But he that standeth stedfast in his heart, having no necessity, but hath power as touching in his own heart, to keep his own virgin [daughter], shall do well.</VERS>\r\n      <VERS vnumber=\"38\">So then both he that giveth his own virgin [daughter] in marriage doeth well; and he that giveth her not in marriage shall do better.</VERS>\r\n      <VERS vnumber=\"39\">A wife is bound for so long time as her husband liveth; but if the husband be dead, she is free to be married to whom she will; only in the Lord.</VERS>\r\n      <VERS vnumber=\"40\">But she is happier if she abide as she is, after my judgment: and I think that I also have the Spirit of God.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">Now concerning things sacrificed to idols: We know that we all have knowledge. Knowledge puffeth up, but love edifieth.</VERS>\r\n      <VERS vnumber=\"2\">If any man thinketh that he knoweth anything, he knoweth not yet as he ought to know;</VERS>\r\n      <VERS vnumber=\"3\">but if any man loveth God, the same is known by him.</VERS>\r\n      <VERS vnumber=\"4\">Concerning therefore the eating of things sacrificed to idols, we know that no idol is [anything] in the world, and that there is no God but one.</VERS>\r\n      <VERS vnumber=\"5\">For though there be that are called gods, whether in heaven or on earth; as there are gods many, and lords many;</VERS>\r\n      <VERS vnumber=\"6\">yet to us there is one God, the Father, of whom are all things, and we unto him; and one Lord, Jesus Christ, through whom are all things, and we through him.</VERS>\r\n      <VERS vnumber=\"7\">Howbeit there is not in all men that knowledge: but some, being used until now to the idol, eat as [of] a thing sacrificed to an idol; and their conscience being weak is defiled.</VERS>\r\n      <VERS vnumber=\"8\">But food will not commend us to God: neither, if we eat not, are we the worse; nor, if we eat, are we the better.</VERS>\r\n      <VERS vnumber=\"9\">But take heed lest by any means this liberty of yours become a stumblingblock to the weak.</VERS>\r\n      <VERS vnumber=\"10\">For if a man see thee who hast knowledge sitting at meat in an idol`s temple, will not his conscience, if he is weak, be emboldened to eat things sacrificed to idols?</VERS>\r\n      <VERS vnumber=\"11\">For through thy knowledge he that is weak perisheth, the brother for whose sake Christ died.</VERS>\r\n      <VERS vnumber=\"12\">And thus, sinning against the brethren, and wounding their conscience when it is weak, ye sin against Christ.</VERS>\r\n      <VERS vnumber=\"13\">Wherefore, if meat causeth my brother to stumble, I will eat no flesh for evermore, that I cause not my brother to stumble.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">Am I not free? Am I not an apostle? Have I not seen Jesus our Lord? Are not ye my work in the Lord?</VERS>\r\n      <VERS vnumber=\"2\">If to others I am not an apostle, yet at least I am to you; for the seal of mine apostleship are ye in the Lord.</VERS>\r\n      <VERS vnumber=\"3\">My defence to them that examine me is this.</VERS>\r\n      <VERS vnumber=\"4\">Have we no right to eat and to drink?</VERS>\r\n      <VERS vnumber=\"5\">Have we no right to lead about a wife that is a believer, even as the rest of the apostles, and the brethren of the Lord, and Cephas?</VERS>\r\n      <VERS vnumber=\"6\">Or I only and Barnabas, have we not a right to forbear working?</VERS>\r\n      <VERS vnumber=\"7\">What soldier ever serveth at his own charges? who planteth a vineyard, and eateth not the fruit thereof? Or who feedeth a flock, and eateth not of the milk of the flock?</VERS>\r\n      <VERS vnumber=\"8\">Do I speak these things after the manner of men? or saith not the law also the same?</VERS>\r\n      <VERS vnumber=\"9\">For it is written in the law of Moses, Thou shalt not muzzle the ox when he treadeth out the corn. Is it for the oxen that God careth,</VERS>\r\n      <VERS vnumber=\"10\">or saith he it assuredly for our sake? Yea, for our sake it was written: because he that ploweth ought to plow in hope, and he that thresheth, [to thresh] in hope of partaking.</VERS>\r\n      <VERS vnumber=\"11\">If we sowed unto you spiritual things, is it a great matter if we shall reap your carnal things?</VERS>\r\n      <VERS vnumber=\"12\">If others partake of [this] right over you, do not we yet more? Nevertheless we did not use this right; but we bear all things, that we may cause no hindrance to the gospel of Christ.</VERS>\r\n      <VERS vnumber=\"13\">Know ye not that they that minister about sacred things eat [of] the things of the temple, [and] they that wait upon the altar have their portion with the altar?</VERS>\r\n      <VERS vnumber=\"14\">Even so did the Lord ordain that they that proclaim the gospel should live of the gospel.</VERS>\r\n      <VERS vnumber=\"15\">But I have used none of these things: and I write not these things that it may be so done in my case; for [it were] good for me rather to die, than that any man should make my glorifying void.</VERS>\r\n      <VERS vnumber=\"16\">For if I preach the gospel, I have nothing to glory of; for necessity is laid upon me; for woe is unto me, if I preach not the gospel.</VERS>\r\n      <VERS vnumber=\"17\">For if I do this of mine own will, I have a reward: but if not of mine own will, I have a stewardship intrusted to me.</VERS>\r\n      <VERS vnumber=\"18\">What then is my reward? That, when I preach the gospel, I may make the gospel without charge, so as not to use to the full my right in the gospel.</VERS>\r\n      <VERS vnumber=\"19\">For though I was free from all [men,] I brought myself under bondage to all, that I might gain the more.</VERS>\r\n      <VERS vnumber=\"20\">And to the Jews I became as a Jew, that I might gain Jews; to them that are under the law, as under the law, not being myself under the law, that I might gain them that are under the law;</VERS>\r\n      <VERS vnumber=\"21\">to them that are without law, as without law, not being without law to God, but under law to Christ, that I might gain them that are without law.</VERS>\r\n      <VERS vnumber=\"22\">To the weak I became weak, that I might gain the weak: I am become all things to all men, that I may by all means save some.</VERS>\r\n      <VERS vnumber=\"23\">And I do all things for the gospel`s sake, that I may be a joint partaker thereof.</VERS>\r\n      <VERS vnumber=\"24\">Know ye not that they that run in a race run all, but one receiveth the prize? Even so run; that ye may attain.</VERS>\r\n      <VERS vnumber=\"25\">And every man that striveth in the games exerciseth self-control in all things. Now they [do it] to receive a corruptible crown; but we an incorruptible.</VERS>\r\n      <VERS vnumber=\"26\">I therefore so run, as not uncertainly; so fight I, as not beating the air:</VERS>\r\n      <VERS vnumber=\"27\">but I buffet my body, and bring it into bondage: lest by any means, after that I have preached to others, I myself should be rejected.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">For I would not, brethren, have you ignorant, that our fathers were all under the cloud, and all passed through the sea;</VERS>\r\n      <VERS vnumber=\"2\">and were all baptized unto Moses in the cloud and in the sea;</VERS>\r\n      <VERS vnumber=\"3\">and did all eat the same spiritual food;</VERS>\r\n      <VERS vnumber=\"4\">and did all drink the same spiritual drink: for they drank of a spiritual rock that followed them: and the rock was Christ.</VERS>\r\n      <VERS vnumber=\"5\">Howbeit with most of them God was not well pleased: for they were overthrown in the wilderness.</VERS>\r\n      <VERS vnumber=\"6\">Now these things were our examples, to the intent we should not lust after evil things, as they also lusted.</VERS>\r\n      <VERS vnumber=\"7\">Neither 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.</VERS>\r\n      <VERS vnumber=\"8\">Neither let us commit fornication, as some of them committed, and fell in one day three and twenty thousand.</VERS>\r\n      <VERS vnumber=\"9\">Neither let us make trial of the Lord, as some of them made trial, and perished by the serpents.</VERS>\r\n      <VERS vnumber=\"10\">Neither murmur ye, as some of them murmured, and perished by the destroyer.</VERS>\r\n      <VERS vnumber=\"11\">Now these things happened unto them by way of example; and they were written for our admonition, upon whom the ends of the ages are come.</VERS>\r\n      <VERS vnumber=\"12\">Wherefore let him that thinketh he standeth take heed lest he fall.</VERS>\r\n      <VERS vnumber=\"13\">There hath no temptation taken you but such as man can bear: but God is faithful, who will not suffer you to be tempted above that ye are able; but will with the temptation make also the way of escape, that ye may be able to endure it.</VERS>\r\n      <VERS vnumber=\"14\">Wherefore, my beloved, flee from idolatry.</VERS>\r\n      <VERS vnumber=\"15\">I speak as to wise men; judge ye what I say.</VERS>\r\n      <VERS vnumber=\"16\">The cup of blessing which we bless, is it not a communion of the blood of Christ? The bread which we break, is it not a communion of the body of Christ?</VERS>\r\n      <VERS vnumber=\"17\">seeing that we, who are many, are one bread, one body: for we are all partake of the one bread.</VERS>\r\n      <VERS vnumber=\"18\">Behold Israel after the flesh: have not they that eat the sacrifices communion with the altar?</VERS>\r\n      <VERS vnumber=\"19\">What say I then? that a thing sacrificed to idols is anything, or that an idol is anything?</VERS>\r\n      <VERS vnumber=\"20\">But [I say], that the things which the Gentiles sacrifice, they sacrifice to demons, and not to God: and I would not that ye should have communion with demons.</VERS>\r\n      <VERS vnumber=\"21\">Ye cannot drink the cup of the Lord, and the cup of demons: ye cannot partake of the table of the Lord, and of the table of demons.</VERS>\r\n      <VERS vnumber=\"22\">Or do we provoke the Lord to jealousy? are we stronger than he?</VERS>\r\n      <VERS vnumber=\"23\">All things are lawful; but not all things are expedient. All things are lawful; but not all things edify.</VERS>\r\n      <VERS vnumber=\"24\">Let no man seek his own, but [each] his neighbor`s [good].</VERS>\r\n      <VERS vnumber=\"25\">Whatsoever is sold in the shambles, eat, asking no question for conscience` sake,</VERS>\r\n      <VERS vnumber=\"26\">for the earth is the Lord`s, and the fulness thereof.</VERS>\r\n      <VERS vnumber=\"27\">If one of them that believe not biddeth you [to a feast], and ye are disposed to go; whatsoever is set before you, eat, asking no question for conscience` sake.</VERS>\r\n      <VERS vnumber=\"28\">But if any man say unto you, This hath been offered in sacrifice, eat not, for his sake that showed it, and for conscience sake:</VERS>\r\n      <VERS vnumber=\"29\">conscience, I say, not thine own, but the other`s; for why is my liberty judged by another conscience?</VERS>\r\n      <VERS vnumber=\"30\">If I partake with thankfulness, why am I evil spoken of for that for which I give thanks?</VERS>\r\n      <VERS vnumber=\"31\">Whether therefore ye eat, or drink, or whatsoever ye do, do all to the glory of God.</VERS>\r\n      <VERS vnumber=\"32\">Give no occasions of stumbling, either to Jews, or to Greeks, or to the church of God:</VERS>\r\n      <VERS vnumber=\"33\">even as I also please all men in all things, not seeking mine own profit, but the [profit] of the many, that they may be saved.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">Be ye imitators of me, even as I also am of Christ.</VERS>\r\n      <VERS vnumber=\"2\">Now I praise you that ye remember me in all things, and hold fast the traditions, even as I delivered them to you.</VERS>\r\n      <VERS vnumber=\"3\">But 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.</VERS>\r\n      <VERS vnumber=\"4\">Every man praying or prophesying, having his head covered, dishonoreth his head.</VERS>\r\n      <VERS vnumber=\"5\">But every woman praying or prophesying with her head unveiled dishonoreth her head; for it is one and the same thing as if she were shaven.</VERS>\r\n      <VERS vnumber=\"6\">For if a woman is not veiled, let her also be shorn: but if it is a shame to a woman to be shorn or shaven, let her be veiled.</VERS>\r\n      <VERS vnumber=\"7\">For a man indeed ought not to have his head veiled, forasmuch as he is the image and glory of God: but the woman is the glory of the man.</VERS>\r\n      <VERS vnumber=\"8\">For the man is not of the woman; but the woman of the man:</VERS>\r\n      <VERS vnumber=\"9\">for neither was the man created for the woman; but the woman for the man:</VERS>\r\n      <VERS vnumber=\"10\">for this cause ought the woman to have [a sign of] authority on her head, because of the angels.</VERS>\r\n      <VERS vnumber=\"11\">Nevertheless, neither is the woman without the man, nor the man without the woman, in the Lord.</VERS>\r\n      <VERS vnumber=\"12\">For as the woman is of the man, so is the man also by the woman; but all things are of God.</VERS>\r\n      <VERS vnumber=\"13\">Judge ye in yourselves: is it seemly that a woman pray unto God unveiled?</VERS>\r\n      <VERS vnumber=\"14\">Doth not even nature itself teach you, that, if a man have long hair, it is a dishonor to him?</VERS>\r\n      <VERS vnumber=\"15\">But if a woman have long hair, it is a glory to her: for her hair is given her for a covering.</VERS>\r\n      <VERS vnumber=\"16\">But if any man seemeth to be contentious, we have no such custom, neither the churches of God.</VERS>\r\n      <VERS vnumber=\"17\">But in giving you this charge, I praise you not, that ye come together not for the better but for the worse.</VERS>\r\n      <VERS vnumber=\"18\">For first of all, when ye come together in the church, I hear that divisions exist among you; and I partly believe it.</VERS>\r\n      <VERS vnumber=\"19\">For there must be also factions among you, that they that are approved may be made manifest among you.</VERS>\r\n      <VERS vnumber=\"20\">When therefore ye assemble yourselves together, it is not possible to eat the Lord`s supper:</VERS>\r\n      <VERS vnumber=\"21\">for in your eating each one taketh before [other] his own supper; and one is hungry, and another is drunken.</VERS>\r\n      <VERS vnumber=\"22\">What, have ye not houses to eat and to drink in? or despise ye the church of God, and put them to shame that have not? What shall I say to you? shall I praise you? In this I praise you not.</VERS>\r\n      <VERS vnumber=\"23\">For I received of the Lord that which also I delivered unto you, that the Lord Jesus in the night in which he was betrayed took bread;</VERS>\r\n      <VERS vnumber=\"24\">and when he had given thanks, he brake it, and said, This is my body, which is for you: this do in remembrance of me.</VERS>\r\n      <VERS vnumber=\"25\">In like manner also the cup, after supper, saying, This cup is the new covenant in my blood: this do, as often as ye drink [it], in remembrance of me.</VERS>\r\n      <VERS vnumber=\"26\">For as often as ye eat this bread, and drink the cup, ye proclaim the Lord`s death till he come.</VERS>\r\n      <VERS vnumber=\"27\">Wherefore whosoever shall eat the bread or drink the cup of the Lord in an unworthy manner, shall be guilty of the body and the blood of the Lord.</VERS>\r\n      <VERS vnumber=\"28\">But let a man prove himself, and so let him eat of the bread, and drink of the cup.</VERS>\r\n      <VERS vnumber=\"29\">For he that eateth and drinketh, eateth and drinketh judgment unto himself, if he discern not the body.</VERS>\r\n      <VERS vnumber=\"30\">For this cause many among you are weak and sickly, and not a few sleep.</VERS>\r\n      <VERS vnumber=\"31\">But if we discerned ourselves, we should not be judged.</VERS>\r\n      <VERS vnumber=\"32\">But when we are judged, we are chastened of the Lord, that we may not be condemned with the world.</VERS>\r\n      <VERS vnumber=\"33\">Wherefore, my brethren, when ye come together to eat, wait one for another.</VERS>\r\n      <VERS vnumber=\"34\">If any man is hungry, let him eat at home; that your coming together be not unto judgment. And the rest will I set in order whensoever I come.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">Now concerning spiritual [gifts], brethren, I would not have you ignorant.</VERS>\r\n      <VERS vnumber=\"2\">Ye know that when ye were Gentiles [ye were] led away unto those dumb idols, howsoever ye might led.</VERS>\r\n      <VERS vnumber=\"3\">Wherefore I make known unto you, that no man speaking in the Spirit of God saith, Jesus is anathema; and no man can say, Jesus is Lord, but in the Holy Spirit.</VERS>\r\n      <VERS vnumber=\"4\">Now there are diversities of gifts, but the same Spirit.</VERS>\r\n      <VERS vnumber=\"5\">And there are diversities of ministrations, and the same Lord.</VERS>\r\n      <VERS vnumber=\"6\">And there are diversities of workings, but the same God, who worketh all things in all.</VERS>\r\n      <VERS vnumber=\"7\">But to each one is given the manifestation of the Spirit to profit withal.</VERS>\r\n      <VERS vnumber=\"8\">For to one is given through the Spirit the word of wisdom; and to another the word of knowledge, according to the same Spirit:</VERS>\r\n      <VERS vnumber=\"9\">to another faith, in the same Spirit; and to another gifts of healings, in the one Spirit;</VERS>\r\n      <VERS vnumber=\"10\">and to another workings of miracles; and to another prophecy; and to another discernings of spirits; to another [divers] kinds of tongues; and to another the interpretation of tongues:</VERS>\r\n      <VERS vnumber=\"11\">but all these worketh the one and the same Spirit, dividing to each one severally even as he will.</VERS>\r\n      <VERS vnumber=\"12\">For as the body is one, and hath many members, and all the members of the body, being many, are one body; so also is Christ.</VERS>\r\n      <VERS vnumber=\"13\">For in one Spirit were we all baptized into one body, whether Jews or Greeks, whether bond or free; and were all made to drink of one Spirit.</VERS>\r\n      <VERS vnumber=\"14\">For the body is not one member, but many.</VERS>\r\n      <VERS vnumber=\"15\">If the foot shall say, Because I am not the hand, I am not of the body; it is not therefore not of the body.</VERS>\r\n      <VERS vnumber=\"16\">And if the ear shall say, Because I am not the eye, I am not of the body; it is not therefore not of the body.</VERS>\r\n      <VERS vnumber=\"17\">If the whole body were an eye, where were the hearing? If the whole were hearing, where were the smelling?</VERS>\r\n      <VERS vnumber=\"18\">But now hath God set the members each one of them in the body, even as it pleased him.</VERS>\r\n      <VERS vnumber=\"19\">And if they were all one member, where were the body?</VERS>\r\n      <VERS vnumber=\"20\">But now they are many members, but one body.</VERS>\r\n      <VERS vnumber=\"21\">And the eye cannot say to the hand, I have no need of thee: or again the head to the feet, I have no need of you.</VERS>\r\n      <VERS vnumber=\"22\">Nay, much rather, those members of the body which seem to be more feeble are necessary:</VERS>\r\n      <VERS vnumber=\"23\">and those [parts] of the body, which we think to be less honorable, upon these we bestow more abundant honor; and our uncomely [parts] have more abundant comeliness;</VERS>\r\n      <VERS vnumber=\"24\">whereas our comely [parts] have no need: but God tempered the body together, giving more abundant honor to that [part] which lacked;</VERS>\r\n      <VERS vnumber=\"25\">that there should be no schism in the body; but [that] the members should have the same care one for another.</VERS>\r\n      <VERS vnumber=\"26\">And whether one member suffereth, all the members suffer with it; or [one] member is honored, all the members rejoice with it.</VERS>\r\n      <VERS vnumber=\"27\">Now ye are the body of Christ, and severally members thereof.</VERS>\r\n      <VERS vnumber=\"28\">And God hath set some in the church, first apostles, secondly prophets, thirdly teachers, then miracles, then gifts of healings, helps, governments, [divers] kinds of tongues.</VERS>\r\n      <VERS vnumber=\"29\">Are all apostles? are all prophets? are all teachers? are all [workers of] miracles?</VERS>\r\n      <VERS vnumber=\"30\">have all gifts of healings? do all speak with tongues? do all interpret?</VERS>\r\n      <VERS vnumber=\"31\">But desire earnestly the greater gifts. And moreover a most excellent way show I unto you.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">If I speak with the tongues of men and of angels, but have not love, I am become sounding brass, or a clanging cymbal.</VERS>\r\n      <VERS vnumber=\"2\">And if I have [the gift of] prophecy, and know all mysteries and all knowledge; and if I have all faith, so as to remove mountains, but have not love, I am nothing.</VERS>\r\n      <VERS vnumber=\"3\">And if I bestow all my goods to feed [the poor], and if I give my body to be burned, but have not love, it profiteth me nothing.</VERS>\r\n      <VERS vnumber=\"4\">Love suffereth long, [and] is kind; love envieth not; love vaunteth not itself, is not puffed up,</VERS>\r\n      <VERS vnumber=\"5\">doth not behave itself unseemly, seeketh not its own, is not provoked, taketh not account of evil;</VERS>\r\n      <VERS vnumber=\"6\">rejoiceth not in unrighteousness, but rejoiceth with the truth;</VERS>\r\n      <VERS vnumber=\"7\">beareth all things, believeth all things, hopeth all things, endureth all things.</VERS>\r\n      <VERS vnumber=\"8\">Love never faileth: but whether [there be] prophecies, they shall be done away; whether [there be] tongues, they shall cease; whether [there be] knowledge, it shall be done away.</VERS>\r\n      <VERS vnumber=\"9\">For we know in part, and we prophesy in part;</VERS>\r\n      <VERS vnumber=\"10\">but when that which is perfect is come, that which is in part shall be done away.</VERS>\r\n      <VERS vnumber=\"11\">When I was a child, I spake as a child, I felt as a child, I thought as a child: now that I am become a man, I have put away childish things.</VERS>\r\n      <VERS vnumber=\"12\">For now we see in a mirror, darkly; but then face to face: now I know in part; but then shall I know fully even as also I was fully known.</VERS>\r\n      <VERS vnumber=\"13\">But now abideth faith, hope, love, these three; and the greatest of these is love.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">Follow after love; yet desire earnestly spiritual [gifts], but rather that ye may prophesy.</VERS>\r\n      <VERS vnumber=\"2\">For he that speaketh in a tongue speaketh not unto men, but unto God; for no man understandeth; but in the spirit he speaketh mysteries.</VERS>\r\n      <VERS vnumber=\"3\">But he that prophesieth speaketh unto men edification, and exhortation, and consolation.</VERS>\r\n      <VERS vnumber=\"4\">He that speaketh in a tongue edifieth himself; but he that prophesieth edifieth the church.</VERS>\r\n      <VERS vnumber=\"5\">Now I would have you all speak with tongues, but rather that ye should prophesy: and greater is he that prophesieth than he that speaketh with tongues, except he interpret, that the church may receive edifying.</VERS>\r\n      <VERS vnumber=\"6\">But now, brethren, if I come unto you speaking with tongues, what shall I profit you, unless I speak to you either by way of revelation, or of knowledge, or of prophesying, or of teaching?</VERS>\r\n      <VERS vnumber=\"7\">Even things without life, giving a voice, whether pipe or harp, if they give not a distinction in the sounds, how shall it be known what is piped or harped?</VERS>\r\n      <VERS vnumber=\"8\">For if the trumpet give an uncertain voice, who shall prepare himself for war?</VERS>\r\n      <VERS vnumber=\"9\">So also ye, unless ye utter by the tongue speech easy to understood, how shall it be known what is spoken? for ye will be speaking into the air.</VERS>\r\n      <VERS vnumber=\"10\">There are, it may be, so many kinds of voices in the world, and no [kind] is without signification.</VERS>\r\n      <VERS vnumber=\"11\">If then I know not the meaning of the voice, I shall be to him that speaketh a barbarian, and he that speaketh will be a barbarian unto me.</VERS>\r\n      <VERS vnumber=\"12\">So also ye, since ye are zealous of spiritual [gifts], seek that ye may abound unto the edifying of the church.</VERS>\r\n      <VERS vnumber=\"13\">Wherefore let him that speaketh in a tongue pray that he may interpret.</VERS>\r\n      <VERS vnumber=\"14\">For if I pray in a tongue, my spirit prayeth, but my understanding is unfruitful.</VERS>\r\n      <VERS vnumber=\"15\">What 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.</VERS>\r\n      <VERS vnumber=\"16\">Else if thou bless with the spirit, how shall he that filleth the place of the unlearned say the Amen at thy giving of thanks, seeing he knoweth not what thou sayest?</VERS>\r\n      <VERS vnumber=\"17\">For thou verily givest thanks well, but the other is not edified.</VERS>\r\n      <VERS vnumber=\"18\">I thank God, I speak with tongues more than you all:</VERS>\r\n      <VERS vnumber=\"19\">howbeit in the church I had rather speak five words with my understanding, that I might instruct others also, than ten thousand words in a tongue.</VERS>\r\n      <VERS vnumber=\"20\">Brethren, be not children in mind: yet in malice be ye babes, but in mind be men.</VERS>\r\n      <VERS vnumber=\"21\">In the law it is written, By men of strange tongues and by the lips of strangers will I speak unto this people; and not even thus will they hear me, saith the Lord.</VERS>\r\n      <VERS vnumber=\"22\">Wherefore tongues are for a sign, not to them that believe, but to the unbelieving: but prophesying [is for a sign], not to the unbelieving, but to them that believe.</VERS>\r\n      <VERS vnumber=\"23\">If therefore the whole church be assembled together and all speak with tongues, and there come in men unlearned or unbelieving, will they not say that ye are mad?</VERS>\r\n      <VERS vnumber=\"24\">But if all prophesy, and there come in one unbelieving or unlearned, he is reproved by all, he is judged by all;</VERS>\r\n      <VERS vnumber=\"25\">the secrets of his heart are made manifest; and so he will fall down on his face and worship God, declaring that God is among you indeed.</VERS>\r\n      <VERS vnumber=\"26\">What is it then, brethren? When ye come together, each one hath a psalm, hath a teaching, hath a revelation, hath a tongue, hath an interpretation. Let all things be done unto edifying.</VERS>\r\n      <VERS vnumber=\"27\">If any man speaketh in a tongue, [let it be] by two, or at the most three, and [that] in turn; and let one interpret:</VERS>\r\n      <VERS vnumber=\"28\">but if there be no interpreter, let him keep silence in the church; and let him speak to himself, and to God.</VERS>\r\n      <VERS vnumber=\"29\">And let the prophets speak [by] two or three, and let the others discern.</VERS>\r\n      <VERS vnumber=\"30\">But if a revelation be made to another sitting by, let the first keep silence.</VERS>\r\n      <VERS vnumber=\"31\">For ye all can prophesy one by one, that all may learn, and all may be exhorted;</VERS>\r\n      <VERS vnumber=\"32\">and the spirits of the prophets are subject to the prophets;</VERS>\r\n      <VERS vnumber=\"33\">for God is not [a God] of confusion, but of peace. As in all the churches of the saints,</VERS>\r\n      <VERS vnumber=\"34\">let the women keep silence in the churches: for it is not permitted unto them to speak; but let them be in subjection, as also saith the law.</VERS>\r\n      <VERS vnumber=\"35\">And if they would learn anything, let them ask their own husbands at home: for it is shameful for a woman to speak in the church.</VERS>\r\n      <VERS vnumber=\"36\">What? was it from you that the word of God went forth? or came it unto you alone?</VERS>\r\n      <VERS vnumber=\"37\">If any man thinketh himself to be a prophet, or spiritual, let him take knowledge of the things which I write unto you, that they are the commandment of the Lord.</VERS>\r\n      <VERS vnumber=\"38\">But if any man is ignorant, let him be ignorant.</VERS>\r\n      <VERS vnumber=\"39\">Wherefore, my brethren, desire earnestly to prophesy, and forbid not to speak with tongues.</VERS>\r\n      <VERS vnumber=\"40\">But let all things be done decently and in order.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">Now I make known unto you brethren, the gospel which I preached unto you, which also ye received, wherein also ye stand,</VERS>\r\n      <VERS vnumber=\"2\">by which also ye are saved, if ye hold fast the word which I preached unto you, except ye believed in vain.</VERS>\r\n      <VERS vnumber=\"3\">For I delivered unto you first of all that which also I received: that Christ died for our sins according to the scriptures;</VERS>\r\n      <VERS vnumber=\"4\">and that he was buried; and that he hath been raised on the third day according to the scriptures;</VERS>\r\n      <VERS vnumber=\"5\">and that he appeared to Cephas; then to the twelve;</VERS>\r\n      <VERS vnumber=\"6\">then he appeared to above five hundred brethren at once, of whom the greater part remain until now, but some are fallen asleep;</VERS>\r\n      <VERS vnumber=\"7\">then he appeared to James; then to all the apostles;</VERS>\r\n      <VERS vnumber=\"8\">and last of all, as to the [child] untimely born, he appeared to me also.</VERS>\r\n      <VERS vnumber=\"9\">For I am the least of the apostles, that am not meet to be called an apostle, because I persecuted the church of God.</VERS>\r\n      <VERS vnumber=\"10\">But by the grace of God I am what I am: and his grace which was bestowed upon me was not found vain; but I labored more abundantly than they all: yet not I, but the grace of God which was with me.</VERS>\r\n      <VERS vnumber=\"11\">Whether then [it be] I or they, so we preach, and so ye believed.</VERS>\r\n      <VERS vnumber=\"12\">Now if Christ is preached that he hath been raised from the dead, how say some among you that there is no resurrection of the dead?</VERS>\r\n      <VERS vnumber=\"13\">But if there is no resurrection of the dead, neither hath Christ been raised:</VERS>\r\n      <VERS vnumber=\"14\">and if Christ hath not been raised, then is our preaching vain, your faith also is vain.</VERS>\r\n      <VERS vnumber=\"15\">Yea, we are found false witnesses of God; because we witnessed of God that he raised up Christ: whom he raised not up, if so be that the dead are not raised.</VERS>\r\n      <VERS vnumber=\"16\">For if the dead are not raised, neither hath Christ been raised:</VERS>\r\n      <VERS vnumber=\"17\">and if Christ hath not been raised, your faith is vain; ye are yet in your sins.</VERS>\r\n      <VERS vnumber=\"18\">Then they also that are fallen asleep in Christ have perished.</VERS>\r\n      <VERS vnumber=\"19\">If we have only hoped in Christ in this life, we are of all men most pitiable.</VERS>\r\n      <VERS vnumber=\"20\">But now hath Christ been raised from the dead, the firstfruits of them that are asleep.</VERS>\r\n      <VERS vnumber=\"21\">For since by man [came] death, by man [came] also the resurrection of the dead.</VERS>\r\n      <VERS vnumber=\"22\">For as in Adam all die, so also in Christ shall all be made alive.</VERS>\r\n      <VERS vnumber=\"23\">But each in his own order: Christ the firstfruits; then they that are Christ`s, at his coming.</VERS>\r\n      <VERS vnumber=\"24\">Then [cometh] the end, when he shall deliver up the kingdom to God, even the Father; when he shall have abolished all rule and all authority and power.</VERS>\r\n      <VERS vnumber=\"25\">For he must reign, till he hath put all his enemies under his feet.</VERS>\r\n      <VERS vnumber=\"26\">The last enemy that shall be abolished is death.</VERS>\r\n      <VERS vnumber=\"27\">For, He put all things in subjection under his feet. But when he saith, All things are put in subjection, it is evident that he is excepted who did subject all things unto him.</VERS>\r\n      <VERS vnumber=\"28\">And when all things have been subjected unto him, then shall the Son also himself be subjected to him that did subject all things unto him, that God may be all in all.</VERS>\r\n      <VERS vnumber=\"29\">Else what shall they do that are baptized for the dead? If the dead are not raised at all, why then are they baptized for them?</VERS>\r\n      <VERS vnumber=\"30\">Why do we also stand in jeopardy every hour?</VERS>\r\n      <VERS vnumber=\"31\">I protest by that glorifying in you, brethren, which I have in Christ Jesus our Lord, I die daily.</VERS>\r\n      <VERS vnumber=\"32\">If after the manner of men I fought with beasts at Ephesus, what doth it profit me? If the dead are not raised, let us eat and drink, for to-morrow we die.</VERS>\r\n      <VERS vnumber=\"33\">Be not deceived: Evil companionships corrupt good morals.</VERS>\r\n      <VERS vnumber=\"34\">Awake to soberness righteously, and sin not; for some have no knowledge of God: I speak [this] to move you to shame.</VERS>\r\n      <VERS vnumber=\"35\">But some one will say, How are the dead raised? and with what manner of body do they come?</VERS>\r\n      <VERS vnumber=\"36\">Thou foolish one, that which thou thyself sowest is not quickened except it die:</VERS>\r\n      <VERS vnumber=\"37\">and that which thou sowest, thou sowest not the body that shall be, but a bare grain, it may chance of wheat, or of some other kind;</VERS>\r\n      <VERS vnumber=\"38\">but God giveth it a body even as it pleased him, and to each seed a body of its own.</VERS>\r\n      <VERS vnumber=\"39\">All flesh is not the same flesh: but there is one [flesh] of men, and another flesh of beasts, and another flesh of birds, and another of fishes.</VERS>\r\n      <VERS vnumber=\"40\">There are also celestial bodies, and bodies terrestrial: but the glory of the celestial is one, and the [glory] of the terrestrial is another.</VERS>\r\n      <VERS vnumber=\"41\">There 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.</VERS>\r\n      <VERS vnumber=\"42\">So also is the resurrection of the dead. It is sown in corruption; it is raised in incorruption:</VERS>\r\n      <VERS vnumber=\"43\">it is sown in dishonor; it is raised in glory: it is sown in weakness; it is raised in power:</VERS>\r\n      <VERS vnumber=\"44\">it is sown a natural body; it is raised a spiritual body. If there is a natural body, there is also a spiritual [body].</VERS>\r\n      <VERS vnumber=\"45\">So also it is written, The first man Adam became a living soul. The last Adam [became] a life-giving spirit.</VERS>\r\n      <VERS vnumber=\"46\">Howbeit that is not first which is spiritual, but that which is natural; then that which is spiritual.</VERS>\r\n      <VERS vnumber=\"47\">The first man is of the earth, earthy: the second man is of heaven.</VERS>\r\n      <VERS vnumber=\"48\">As is the earthy, such are they also that are earthy: and as is the heavenly, such are they also that are heavenly.</VERS>\r\n      <VERS vnumber=\"49\">And as we have borne the image of the earthy, we shall also bear the image of the heavenly.</VERS>\r\n      <VERS vnumber=\"50\">Now this I say, brethren, that flesh and blood cannot inherit the kingdom of God; neither doth corruption inherit incorruption.</VERS>\r\n      <VERS vnumber=\"51\">Behold, I tell you a mystery: We all shall not sleep, but we shall all be changed,</VERS>\r\n      <VERS vnumber=\"52\">in 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.</VERS>\r\n      <VERS vnumber=\"53\">For this corruptible must put on incorruption, and this mortal must put on immortality.</VERS>\r\n      <VERS vnumber=\"54\">But when this corruptible shall have put on incorruption, and this mortal shall have put on immortality, then shall come to pass the saying that is written, Death is swallowed up in victory.</VERS>\r\n      <VERS vnumber=\"55\">O death, where is thy victory? O death, where is thy sting?</VERS>\r\n      <VERS vnumber=\"56\">The sting of death is sin; and the power of sin is the law:</VERS>\r\n      <VERS vnumber=\"57\">but thanks be to God, who giveth us the victory through our Lord Jesus Christ.</VERS>\r\n      <VERS vnumber=\"58\">Wherefore, my beloved brethren, be ye stedfast, unmoveable, always abounding in the work of the Lord, forasmuch as ye know that your labor is not vain in the Lord.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">Now concerning the collection for the saints, as I gave order to the churches of Galatia, so also do ye.</VERS>\r\n      <VERS vnumber=\"2\">Upon the first day of the week let each one of you lay by him in store, as he may prosper, that no collections be made when I come.</VERS>\r\n      <VERS vnumber=\"3\">And when I arrive, whomsoever ye shall approve, them will I send with letters to carry your bounty unto Jerusalem:</VERS>\r\n      <VERS vnumber=\"4\">and if it be meet for me to go also, they shall go with me.</VERS>\r\n      <VERS vnumber=\"5\">But I will come unto you, when I shall have passed through Macedonia; for I pass through Macedonia;</VERS>\r\n      <VERS vnumber=\"6\">but with you it may be that I shall abide, or even winter, that ye may set me forward on my journey whithersoever I go.</VERS>\r\n      <VERS vnumber=\"7\">For I do not wish to see you now by the way; for I hope to tarry a while with you, if the Lord permit.</VERS>\r\n      <VERS vnumber=\"8\">But I will tarry at Ephesus until Pentecost;</VERS>\r\n      <VERS vnumber=\"9\">for a great door and effectual is opened unto me, and there are many adversaries.</VERS>\r\n      <VERS vnumber=\"10\">Now if Timothy come, see that he be with you without fear; for he worketh the work of the Lord, as I also do:</VERS>\r\n      <VERS vnumber=\"11\">let no man therefore despise him. But set him forward on his journey in peace, that he may come unto me: for I expect him with the brethren.</VERS>\r\n      <VERS vnumber=\"12\">But as touching Apollos the brother, I besought him much to come unto you with the brethren: and it was not all [his] will to come now; but he will come when he shall have opportunity.</VERS>\r\n      <VERS vnumber=\"13\">Watch ye, stand fast in the faith, quit you like men, be strong.</VERS>\r\n      <VERS vnumber=\"14\">Let all that ye do be done in love.</VERS>\r\n      <VERS vnumber=\"15\">Now I beseech you, brethren (ye know the house of Stephanas, that it is the firstfruits of Achaia, and that they have set themselves to minister unto the saints),</VERS>\r\n      <VERS vnumber=\"16\">that ye also be in subjection unto such, and to every one that helpeth in the work and laboreth.</VERS>\r\n      <VERS vnumber=\"17\">And I rejoice at the coming of Stephanas and Fortunatus and Achaicus: for that which was lacking on your part they supplied.</VERS>\r\n      <VERS vnumber=\"18\">For they refreshed my spirit and yours: acknowledge ye therefore them that are such.</VERS>\r\n      <VERS vnumber=\"19\">The churches of Asia salute you. Aquila and Prisca salute you much in the Lord, with the church that is in their house.</VERS>\r\n      <VERS vnumber=\"20\">All the brethren salute you. Salute one another with a holy kiss.</VERS>\r\n      <VERS vnumber=\"21\">The salutation of me Paul with mine own hand.</VERS>\r\n      <VERS vnumber=\"22\">If any man loveth not the Lord, let him be anathema. Maranatha.</VERS>\r\n      <VERS vnumber=\"23\">The grace of the Lord Jesus Christ be with you.</VERS>\r\n      <VERS vnumber=\"24\">My love be with you all in Christ Jesus. Amen.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"47\" bname=\"2 Corinthians\" bsname=\"2Cor\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">Paul, an apostle of Christ Jesus through the will of God, and Timothy our brother, unto the church of God which is at Corinth, with all the saints that are in the whole of Achaia:</VERS>\r\n      <VERS vnumber=\"2\">Grace to you and peace from God our Father and the Lord Jesus Christ.</VERS>\r\n      <VERS vnumber=\"3\">Blessed [be] the God and Father of our Lord Jesus Christ, the Father of mercies and God of all comfort;</VERS>\r\n      <VERS vnumber=\"4\">who comforteth us in all our affliction, that we may be able to comfort them that are in any affliction, through the comfort wherewith we ourselves are comforted of God.</VERS>\r\n      <VERS vnumber=\"5\">For as the sufferings of Christ abound unto us, even so our comfort also aboundeth through Christ.</VERS>\r\n      <VERS vnumber=\"6\">But whether we are afflicted, it is for your comfort and salvation; or whether we are comforted, it is for your comfort, which worketh in the patient enduring of the same sufferings which we also suffer:</VERS>\r\n      <VERS vnumber=\"7\">and our hope for you is stedfast; knowing that, as ye are partakers of the sufferings, so also are ye of the comfort.</VERS>\r\n      <VERS vnumber=\"8\">For we would not have you ignorant, brethren, concerning our affliction which befell [us] in Asia, that we were weighed down exceedingly, beyond our power, insomuch that we despaired even of life:</VERS>\r\n      <VERS vnumber=\"9\">yea, we ourselves have had the sentence of death within ourselves, that we should not trust in ourselves, but in God who raiseth the dead:</VERS>\r\n      <VERS vnumber=\"10\">who delivered us out of so great a death, and will deliver: on whom we have set our hope that he will also still deliver us;</VERS>\r\n      <VERS vnumber=\"11\">ye also helping together on our behalf by your supplication; that, for the gift bestowed upon us by means of many, thanks may be given by many persons on our behalf.</VERS>\r\n      <VERS vnumber=\"12\">For our glorifying is this, the testimony of our conscience, that in holiness and sincerity of God, not in fleshly wisdom but in the grace of God, we behaved ourselves in the world, and more abundantly to you-ward.</VERS>\r\n      <VERS vnumber=\"13\">For we write no other things unto you, than what ye read or even acknowledge, and I hope ye will acknowledge unto the end:</VERS>\r\n      <VERS vnumber=\"14\">as also ye did acknowledge us in part, that we are your glorying, even as ye also are ours, in the day of our Lord Jesus.</VERS>\r\n      <VERS vnumber=\"15\">And in this confidence I was minded to come first unto you, that ye might have a second benefit;</VERS>\r\n      <VERS vnumber=\"16\">and by you to pass into Macedonia, and again from Macedonia to come unto you, and of you to be set forward on my journey unto Judaea.</VERS>\r\n      <VERS vnumber=\"17\">When I therefore was thus minded, did I show fickleness? or the things that I purpose, do I purpose according to the flesh, that with me there should be the yea yea and the nay nay?</VERS>\r\n      <VERS vnumber=\"18\">But as God is faithful, our word toward you is not yea and nay.</VERS>\r\n      <VERS vnumber=\"19\">For the Son of God, Jesus Christ, who was preached among you by us, [even] by me and Silvanus and Timothy, was not yea and nay, but in him is yea.</VERS>\r\n      <VERS vnumber=\"20\">For how many soever be the promises of God, in him is the yea: wherefore also through him is the Amen, unto the glory of God through us.</VERS>\r\n      <VERS vnumber=\"21\">Now he that establisheth us with you in Christ, and anointed us, is God;</VERS>\r\n      <VERS vnumber=\"22\">who also sealed us, and gave [us] the earnest of the Spirit in our hearts.</VERS>\r\n      <VERS vnumber=\"23\">But I call God for a witness upon my soul, that to spare you I forbare to come unto Corinth.</VERS>\r\n      <VERS vnumber=\"24\">Not that we have lordship over your faith, but are helpers of your joy: for in faith ye stand fast.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">But I determined this for myself, that I would not come again to you with sorrow.</VERS>\r\n      <VERS vnumber=\"2\">For if I make you sorry, who then is he that maketh me glad but he that is made sorry by me?</VERS>\r\n      <VERS vnumber=\"3\">And I wrote this very thing, 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.</VERS>\r\n      <VERS vnumber=\"4\">For out of much affliction and anguish of heart I wrote unto you with many tears; not that ye should be made sorry, but that ye might know the love that I have more abundantly unto you.</VERS>\r\n      <VERS vnumber=\"5\">But if any hath caused sorrow, he hath caused sorrow, not to me, but in part (that I press not too heavily) to you all.</VERS>\r\n      <VERS vnumber=\"6\">Sufficient to such a one is this punishment which was [inflicted] by the many;</VERS>\r\n      <VERS vnumber=\"7\">so that contrariwise ye should rather forgive him and comfort him, lest by any means such a one should be swallowed up with his overmuch sorrow.</VERS>\r\n      <VERS vnumber=\"8\">Wherefore I beseech you to confirm [your] love toward him.</VERS>\r\n      <VERS vnumber=\"9\">For to this end also did I write, that I might know the proof of you, whether ye are obedient in all things.</VERS>\r\n      <VERS vnumber=\"10\">But to whom ye forgive anything, I [forgive] also: for what I also have forgiven, if I have forgiven anything, for your sakes [have I forgiven it] in the presence of Christ;</VERS>\r\n      <VERS vnumber=\"11\">that no advantage may be gained over us by Satan: for we are not ignorant of his devices.</VERS>\r\n      <VERS vnumber=\"12\">Now when I came to Troas for the gospel of Christ, and when a door was opened unto me in the Lord,</VERS>\r\n      <VERS vnumber=\"13\">I had no relief for my spirit, because I found not Titus my brother: but taking my leave of them, I went forth into Macedonia.</VERS>\r\n      <VERS vnumber=\"14\">But thanks be unto God, who always leadeth us in triumph in Christ, and maketh manifest through us the savor of his knowledge in every place.</VERS>\r\n      <VERS vnumber=\"15\">For we are a sweet savor of Christ unto God, in them that are saved, and in them that perish;</VERS>\r\n      <VERS vnumber=\"16\">to the one a savor from death unto death; to the other a savor from life unto life. And who is sufficient for these things?</VERS>\r\n      <VERS vnumber=\"17\">For we are not as the many, corrupting the word of God: but as of sincerity, but as of God, in the sight of God, speak we in Christ.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Are we beginning again to commend ourselves? or need we, as do some, epistles of commendation to you or from you?</VERS>\r\n      <VERS vnumber=\"2\">Ye are our epistle, written in our hearts, known and read of all men;</VERS>\r\n      <VERS vnumber=\"3\">being made manifest that ye are an 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 tables [that are] hearts of flesh.</VERS>\r\n      <VERS vnumber=\"4\">And such confidence have we through Christ to God-ward:</VERS>\r\n      <VERS vnumber=\"5\">not that we are sufficient of ourselves, to account anything as from ourselves; but our sufficiency is from God;</VERS>\r\n      <VERS vnumber=\"6\">who also made us sufficient as ministers of a new covenant; not of the letter, but of the spirit: for the letter killeth, but the spirit giveth life.</VERS>\r\n      <VERS vnumber=\"7\">But if the ministration of death, written, [and] engraven on stones, came with glory, so that the children of Israel could not look stedfastly upon the face of Moses for the glory of his face; which [glory] was passing away:</VERS>\r\n      <VERS vnumber=\"8\">how shall not rather the ministration of the spirit be with glory?</VERS>\r\n      <VERS vnumber=\"9\">For if the ministration of condemnation hath glory, much rather doth the ministration of righteousness exceed in glory.</VERS>\r\n      <VERS vnumber=\"10\">For verily that which hath been made glorious hath not been made glorious in this respect, by reason of the glory that surpasseth.</VERS>\r\n      <VERS vnumber=\"11\">For if that which passeth away [was] with glory, much more that which remaineth [is] in glory.</VERS>\r\n      <VERS vnumber=\"12\">Having therefore such a hope, we use great boldness of speech,</VERS>\r\n      <VERS vnumber=\"13\">and [are] not as Moses, [who] put a veil upon his face, that the children of Israel should not look stedfastly on the end of that which was passing away:</VERS>\r\n      <VERS vnumber=\"14\">but their minds were hardened: for until this very day at the reading of the old covenant the same veil remaineth, it not being revealed [to them] that it is done away in Christ.</VERS>\r\n      <VERS vnumber=\"15\">But unto this day, whensoever Moses is read, a veil lieth upon their heart.</VERS>\r\n      <VERS vnumber=\"16\">But whensoever it shall turn to the Lord, the veil is taken away.</VERS>\r\n      <VERS vnumber=\"17\">Now the Lord is the Spirit: and where the Spirit of the Lord is, [there] is liberty.</VERS>\r\n      <VERS vnumber=\"18\">But we all, with unveiled face beholding as in a mirror the glory of the Lord, are transformed into the same image from glory to glory, even as from the Lord the Spirit.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">Therefore seeing we have this ministry, even as we obtained mercy, we faint not:</VERS>\r\n      <VERS vnumber=\"2\">but we have renounced the hidden things of shame, not walking in craftiness, nor handling the word of God deceitfully; but by the manifestation of the truth commending ourselves to every man`s conscience in the sight of God.</VERS>\r\n      <VERS vnumber=\"3\">And even if our gospel is veiled, it is veiled in them that perish:</VERS>\r\n      <VERS vnumber=\"4\">in whom the god of this world hath blinded the minds of the unbelieving, that the light of the gospel of the glory of Christ, who is the image of God, should not dawn [upon them].</VERS>\r\n      <VERS vnumber=\"5\">For we preach not ourselves, but Christ Jesus as Lord, and ourselves as your servants for Jesus` sake.</VERS>\r\n      <VERS vnumber=\"6\">Seeing it is God, that said, Light shall shine out of darkness, who shined in our hearts, to give the light of the knowledge of the glory of God in the face of Jesus Christ.</VERS>\r\n      <VERS vnumber=\"7\">But we have this treasure in earthen vessels, that the exceeding greatness of the power may be of God, and not from ourselves;</VERS>\r\n      <VERS vnumber=\"8\">[we are] pressed on every side, yet not straitened; perplexed, yet not unto despair;</VERS>\r\n      <VERS vnumber=\"9\">pursued, yet not forsaken; smitten down, yet not destroyed;</VERS>\r\n      <VERS vnumber=\"10\">always bearing about in the body the dying of Jesus, that the life also of Jesus may be manifested in our body.</VERS>\r\n      <VERS vnumber=\"11\">For we who live are always delivered unto death for Jesus` sake, that the life also of Jesus may be manifested in our mortal flesh.</VERS>\r\n      <VERS vnumber=\"12\">So then death worketh in us, but life in you.</VERS>\r\n      <VERS vnumber=\"13\">But having the same spirit of faith, according to that which is written, I believed, and therefore did I speak; we also believe, and therefore also we speak;</VERS>\r\n      <VERS vnumber=\"14\">knowing that he that raised up the Lord Jesus shall raise up us also with Jesus, and shall present us with you.</VERS>\r\n      <VERS vnumber=\"15\">For all things [are] for your sakes, that the grace, being multiplied through the many, may cause the thanksgiving to abound unto the glory of God.</VERS>\r\n      <VERS vnumber=\"16\">Wherefore we faint not; but though our outward man is decaying, yet our inward man is renewed day by day.</VERS>\r\n      <VERS vnumber=\"17\">For our light affliction, which is for the moment, worketh for us more and more exceedingly an eternal weight of glory;</VERS>\r\n      <VERS vnumber=\"18\">while 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">For we know that if the earthly house of our tabernacle be dissolved, we have a building from God, a house not made with hands, eternal, in the heavens.</VERS>\r\n      <VERS vnumber=\"2\">For verily in this we groan, longing to be clothed upon with our habitation which is from heaven:</VERS>\r\n      <VERS vnumber=\"3\">if so be that being clothed we shall not be found naked.</VERS>\r\n      <VERS vnumber=\"4\">For indeed we that are in this tabernacle do groan, being burdened; not for that we would be unclothed, but that we would be clothed upon, that what is mortal may be swallowed up of life.</VERS>\r\n      <VERS vnumber=\"5\">Now he that wrought us for this very thing is God, who gave unto us the earnest of the Spirit.</VERS>\r\n      <VERS vnumber=\"6\">Being therefore always of good courage, and knowing that, whilst we are at home in the body, we are absent from the Lord</VERS>\r\n      <VERS vnumber=\"7\">(for we walk by faith, not by sight);</VERS>\r\n      <VERS vnumber=\"8\">we are of good courage, I say, and are willing rather to be absent from the body, and to be at home with the Lord.</VERS>\r\n      <VERS vnumber=\"9\">Wherefore also we make it our aim, whether at home or absent, to be well-pleasing unto him.</VERS>\r\n      <VERS vnumber=\"10\">For we must all be made manifest before the judgment-seat of Christ; that each one may receive the things [done] in the body, according to what he hath done, whether [it be] good or bad.</VERS>\r\n      <VERS vnumber=\"11\">Knowing therefore the fear of the Lord, we persuade men, but we are made manifest unto God; and I hope that we are made manifest also in your consciences.</VERS>\r\n      <VERS vnumber=\"12\">We are not again commending ourselves unto you, but [speak] as giving you occasion of glorying on our behalf, that ye may have wherewith to answer them that glory in appearance, and not in heart.</VERS>\r\n      <VERS vnumber=\"13\">For whether we are beside ourselves, it is unto God; or whether we are of sober mind, it is unto you.</VERS>\r\n      <VERS vnumber=\"14\">For the love of Christ constraineth us; because we thus judge, that one died for all, therefore all died;</VERS>\r\n      <VERS vnumber=\"15\">and he died for all, that they that live should no longer live unto themselves, but unto him who for their sakes died and rose again.</VERS>\r\n      <VERS vnumber=\"16\">Wherefore we henceforth know no man after the flesh: even though we have known Christ after the flesh, yet now we know [him so] no more.</VERS>\r\n      <VERS vnumber=\"17\">Wherefore if any man is in Christ, [he is] a new creature: the old things are passed away; behold, they are become new.</VERS>\r\n      <VERS vnumber=\"18\">But all things are of God, who reconciled us to himself through Christ, and gave unto us the ministry of reconciliation;</VERS>\r\n      <VERS vnumber=\"19\">to wit, that God was in Christ reconciling the world unto himself, not reckoning unto them their trespasses, and having committed unto us the word of reconciliation.</VERS>\r\n      <VERS vnumber=\"20\">We are ambassadors therefore on behalf of Christ, as though God were entreating by us: we beseech [you] on behalf of Christ, be ye reconciled to God.</VERS>\r\n      <VERS vnumber=\"21\">Him who knew no sin he made [to be] sin on our behalf; that we might become the righteousness of God in him.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">And working together [with him] we entreat also that ye receive not the grace of God in vain</VERS>\r\n      <VERS vnumber=\"2\">(for he saith, At an acceptable time I hearkened unto thee, And in a day of salvation did I succor thee:     behold, now is the acceptable time; behold, now is the day of salvation):</VERS>\r\n      <VERS vnumber=\"3\">giving no occasion of stumbling in anything, that our ministration be not blamed;</VERS>\r\n      <VERS vnumber=\"4\">but in everything commending ourselves, as ministers of God, in much patience, in afflictions, in necessities, in distresses,</VERS>\r\n      <VERS vnumber=\"5\">in stripes, in imprisonments, in tumults, in labors, in watchings, in fastings;</VERS>\r\n      <VERS vnumber=\"6\">in pureness, in knowledge, in long suffering, in kindness, in the Holy Spirit, in love unfeigned,</VERS>\r\n      <VERS vnumber=\"7\">in the word of truth, in the power of God; by the armor of righteousness on the right hand and on the left,</VERS>\r\n      <VERS vnumber=\"8\">by glory and dishonor, by evil report and good report; as deceivers, and [yet] true;</VERS>\r\n      <VERS vnumber=\"9\">as unknown, and [yet] well known; as dying, and behold, we live; as chastened, and not killed;</VERS>\r\n      <VERS vnumber=\"10\">as sorrowful, yet always rejoicing; as poor, yet making many rich; as having nothing, and [yet] possessing all things.</VERS>\r\n      <VERS vnumber=\"11\">Our mouth is open unto you, O Corinthians, our heart is enlarged.</VERS>\r\n      <VERS vnumber=\"12\">Ye are not straitened in us, but ye are straitened in your own affections.</VERS>\r\n      <VERS vnumber=\"13\">Now for a recompense in like kind (I speak as unto [my] children), be ye also enlarged.</VERS>\r\n      <VERS vnumber=\"14\">Be not unequally yoked with unbelievers: for what fellowship have righteousness and iniquity? or what communion hath light with darkness?</VERS>\r\n      <VERS vnumber=\"15\">And what concord hath Christ with Belial? or what portion hath a believer with an unbeliever?</VERS>\r\n      <VERS vnumber=\"16\">And what agreement hath a temple of God with idols? for we are a temple of the living God; even as God said, I will dwell in them, and walk in them; and I will be their God, and they shall be my people.</VERS>\r\n      <VERS vnumber=\"17\">Wherefore Come ye out from among them, and be ye separate,     saith the Lord, And touch no unclean thing; And I will receive you,</VERS>\r\n      <VERS vnumber=\"18\">And will be to you a Father, And ye shall be to me sons and daughters,     saith the Lord Almighty.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">Having therefore these promises, beloved, let us cleanse ourselves from all defilement of flesh and spirit, perfecting holiness in the fear of God.</VERS>\r\n      <VERS vnumber=\"2\">Open your hearts to us: we wronged no man, we corrupted no man, we took advantage of no man.</VERS>\r\n      <VERS vnumber=\"3\">I say it not to condemn [you]: for I have said before, that ye are in our hearts to die together and live together.</VERS>\r\n      <VERS vnumber=\"4\">Great is my boldness of speech toward you, great is my glorying on your behalf: I am filled with comfort, I overflow with joy in all our affliction.</VERS>\r\n      <VERS vnumber=\"5\">For even when we were come into Macedonia our flesh had no relief, but [we were] afflicted on every side; without [were] fightings, within [were] fears.</VERS>\r\n      <VERS vnumber=\"6\">Nevertheless he that comforteth the lowly, [even] God, comforted us by the coming of Titus;</VERS>\r\n      <VERS vnumber=\"7\">and not by his coming only, but also by the comfort wherewith he was comforted in you, while he told us your longing, your mourning, your zeal for me; so that I rejoiced yet more.</VERS>\r\n      <VERS vnumber=\"8\">For though I made you sorry with my epistle, I do not regret it: though I did regret [it] (for I see that that epistle made you sorry, though but for a season),</VERS>\r\n      <VERS vnumber=\"9\">I now rejoice, not that ye were made sorry, but that ye were made sorry unto repentance; for ye were made sorry after a godly sort, that ye might suffer loss by us in nothing.</VERS>\r\n      <VERS vnumber=\"10\">For godly sorrow worketh repentance unto salvation, [a repentance] which bringeth no regret: but the sorrow of the world worketh death.</VERS>\r\n      <VERS vnumber=\"11\">For behold, this selfsame thing, that ye were made sorry after a godly sort, what earnest care it wrought in you, yea what clearing of yourselves, yea what indignation, yea what fear, yea what longing, yea what zeal, yea what avenging! In everything ye approved yourselves to be pure in the matter.</VERS>\r\n      <VERS vnumber=\"12\">So although I wrote unto you, I [wrote] not for his cause that did the wrong, nor for his cause that suffered the wrong, but that your earnest care for us might be made manifest unto you in the sight of God.</VERS>\r\n      <VERS vnumber=\"13\">Therefore we have been comforted: And in our comfort we joyed the more exceedingly for the joy of Titus, because his spirit hath been refreshed by you all.</VERS>\r\n      <VERS vnumber=\"14\">For if in anything I have gloried to him on your behalf, I was not put to shame; but as we spake all things to you in truth, so our glorying also which I made before Titus was found to be truth.</VERS>\r\n      <VERS vnumber=\"15\">And his affection is more abundantly toward you, while he remembereth the obedience of you all, how with fear and trembling ye received him.</VERS>\r\n      <VERS vnumber=\"16\">I rejoice that in everything I am of good courage concerning you.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">Moreover, brethren, we make known to you the grace of God which hath been given in the churches of Macedonia;</VERS>\r\n      <VERS vnumber=\"2\">how that in much proof of affliction the abundance of their joy and their deep poverty abounded unto the riches of their liberality.</VERS>\r\n      <VERS vnumber=\"3\">For according to their power, I bear witness, yea and beyond their power, [they gave] of their own accord,</VERS>\r\n      <VERS vnumber=\"4\">beseeching us with much entreaty in regard of this grace and the fellowship in the ministering to the saints:</VERS>\r\n      <VERS vnumber=\"5\">and [this], not as we had hoped, but first they gave their own selves to the Lord, and to us through the will of God.</VERS>\r\n      <VERS vnumber=\"6\">Insomuch that we exhorted Titus, that as he made a beginning before, so he would also complete in you this grace also.</VERS>\r\n      <VERS vnumber=\"7\">But as ye abound in everything, [in] faith, and utterance, and knowledge, and [in] all earnestness, and [in] your love to us, [see] that ye abound in this grace also.</VERS>\r\n      <VERS vnumber=\"8\">I speak not by way of commandment, but as proving through the earnestness of others the sincerity also of your love.</VERS>\r\n      <VERS vnumber=\"9\">For 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 become rich.</VERS>\r\n      <VERS vnumber=\"10\">And herein I give [my] judgment: for this is expedient for you, who were the first to make a beginning a year ago, not only to do, but also to will.</VERS>\r\n      <VERS vnumber=\"11\">But now complete the doing also; that as [there was] the readiness to will, so [there may be] the completion also out of your ability.</VERS>\r\n      <VERS vnumber=\"12\">For if the readiness is there, [it is] acceptable according as [a man] hath, not according as [he] hath not.</VERS>\r\n      <VERS vnumber=\"13\">For [I say] not [this] that others may be eased [and] ye distressed;</VERS>\r\n      <VERS vnumber=\"14\">but by equality: your abundance [being a supply] at this present time for their want, that their abundance also may become [a supply] for your want; that there may be equality:</VERS>\r\n      <VERS vnumber=\"15\">as it is written, He that [gathered] much had nothing over; and he that [gathered] little had no lack.</VERS>\r\n      <VERS vnumber=\"16\">But thanks be to God, who putteth the same earnest care for you into the heart of Titus.</VERS>\r\n      <VERS vnumber=\"17\">For he accepted indeed our exhortation; but being himself very earnest, he went forth unto you of his own accord.</VERS>\r\n      <VERS vnumber=\"18\">And we have sent together with him the brother whose praise in the gospel [is spread] through all the churches;</VERS>\r\n      <VERS vnumber=\"19\">and not only so, but who was also appointed by the churches to travel with us in [the matter of] this grace, which is ministered by us to the glory of the Lord, and [to show] our readiness:</VERS>\r\n      <VERS vnumber=\"20\">Avoiding this, that any man should blame us in [the matter of] this bounty which is ministered by us:</VERS>\r\n      <VERS vnumber=\"21\">for we take thought for things honorable, not only in the sight of the Lord, but also in the sight of men.</VERS>\r\n      <VERS vnumber=\"22\">and we have sent with them our brother, whom we have many times proved earnest in many things, but now much more earnest, by reason of the great confidence which [he hath] in you.</VERS>\r\n      <VERS vnumber=\"23\">Whether [any inquire] about Titus, [he is] my partner and [my] fellow-worker to you-ward, or our brethren, [they are] the messengers of the churches, [they are] the glory of Christ.</VERS>\r\n      <VERS vnumber=\"24\">Show ye therefore unto them in the face of the churches the proof of your love, and of our glorying on your behalf.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">For as touching the ministering to the saints, it is superfluous for me to write to you:</VERS>\r\n      <VERS vnumber=\"2\">for I know your readiness, of which I glory on your behalf to them of Macedonia, that Achaia hath been prepared for a year past; and your zeal hath stirred up very many of them.</VERS>\r\n      <VERS vnumber=\"3\">But I have sent the brethren, that our glorying on your behalf may not be made void in this respect; that, even as I said, ye may be prepared:</VERS>\r\n      <VERS vnumber=\"4\">lest by any means, if there come with me any of Macedonia and find you unprepared, we (that we say not, ye) should be put to shame in this confidence.</VERS>\r\n      <VERS vnumber=\"5\">I thought it necessary therefore to entreat the brethren, that they would go before unto you, and make up beforehand your aforepromised bounty, that the same might be ready as a matter of bounty, and not of extortion.</VERS>\r\n      <VERS vnumber=\"6\">But this [I say,] He that soweth sparingly shall reap also sparingly; and he that soweth bountifully shall reap also bountifully.</VERS>\r\n      <VERS vnumber=\"7\">[Let] each man [do] according as he hath purposed in his heart: not grudgingly, or of necessity: for God loveth a cheerful giver.</VERS>\r\n      <VERS vnumber=\"8\">And God is able to make all grace abound unto you; that ye, having always all sufficiency in everything, may abound unto every good work:</VERS>\r\n      <VERS vnumber=\"9\">as it is written, He hath scattered abroad, he hath given to the poor; His righteousness abideth for ever.</VERS>\r\n      <VERS vnumber=\"10\">And he that supplieth seed to the sower and bread for food, shall supply and multiply your seed for sowing, and increase the fruits of your righteousness:</VERS>\r\n      <VERS vnumber=\"11\">ye being enriched in everything unto all liberality, which worketh through us thanksgiving to God.</VERS>\r\n      <VERS vnumber=\"12\">For the ministration of this service not only filleth up the measure of the wants of the saints, but aboundeth also through many thanksgivings unto God;</VERS>\r\n      <VERS vnumber=\"13\">seeing that through the proving [of you] by this ministration they glorify God for the obedience of your confession unto the gospel of Christ, and for the liberality of [your] contribution unto them and unto all;</VERS>\r\n      <VERS vnumber=\"14\">while they themselves also, with supplication on your behalf, long after you by reason of the exceeding grace of God in you.</VERS>\r\n      <VERS vnumber=\"15\">Thanks be to God for his unspeakable gift.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">Now I Paul myself entreat you by the meekness and gentleness of Christ, I who in your presence am lowly among you, but being absent am of good courage toward you:</VERS>\r\n      <VERS vnumber=\"2\">yea, I beseech you, that I may not when present show courage with the confidence wherewith I count to be bold against some, who count of us as if we walked according to the flesh.</VERS>\r\n      <VERS vnumber=\"3\">For though we walk in the flesh, we do not war according to the flesh</VERS>\r\n      <VERS vnumber=\"4\">(for the weapons of our warfare are not of the flesh, but mighty before God to the casting down of strongholds),</VERS>\r\n      <VERS vnumber=\"5\">casting down imaginations, and every high thing that is exalted against the knowledge of God, and bringing every thought into captivity to the obedience of Christ;</VERS>\r\n      <VERS vnumber=\"6\">and being in readiness to avenge all disobedience, when your obedience shall be made full.</VERS>\r\n      <VERS vnumber=\"7\">Ye look at the things that are before your face. If any man trusteth in himself that he is Christ`s, let him consider this again with himself, that, even as he is Christ`s, so also are we.</VERS>\r\n      <VERS vnumber=\"8\">For though I should glory somewhat abundantly concerning our authority (which the Lord gave for building you up, and not for casting you down), I shall not be put to shame:</VERS>\r\n      <VERS vnumber=\"9\">that I may not seem as if I would terrify you by my letters.</VERS>\r\n      <VERS vnumber=\"10\">For, His letters, they say, are weighty and strong; but his bodily presence is weak, and his speech of no account.</VERS>\r\n      <VERS vnumber=\"11\">Let such a one reckon this, that, what we are in word by letters when we are absent, such [are we] also in deed when we are present.</VERS>\r\n      <VERS vnumber=\"12\">For we are not bold to number or compare ourselves with certain of them that commend themselves: but they themselves, measuring themselves by themselves, and comparing themselves with themselves, are without understanding.</VERS>\r\n      <VERS vnumber=\"13\">But we will not glory beyond [our] measure, but according to the measure of the province which God apportioned to us as a measure, to reach even unto you.</VERS>\r\n      <VERS vnumber=\"14\">For we stretch not ourselves overmuch, as though we reached not unto you: for we came even as far as unto you in the gospel of Christ:</VERS>\r\n      <VERS vnumber=\"15\">not glorying beyond [our] measure, [that is,] in other men`s labors; but having hope that, as your faith groweth, we shall be magnified in you according to our province unto [further] abundance,</VERS>\r\n      <VERS vnumber=\"16\">so as to preach the gospel even unto the parts beyond you, [and] not to glory in another`s province in regard of things ready to our hand.</VERS>\r\n      <VERS vnumber=\"17\">But he that glorieth, let him glory in the Lord.</VERS>\r\n      <VERS vnumber=\"18\">For not he that commendeth himself is approved, but whom the Lord commendeth.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">Would that ye could bear with me in a little foolishness: but indeed ye do bear with me.</VERS>\r\n      <VERS vnumber=\"2\">For I am jealous over you with a godly jealousy: for I espoused you to one husband, that I might present you [as] a pure virgin to Christ.</VERS>\r\n      <VERS vnumber=\"3\">But I fear, lest by any means, as the serpent beguiled Eve in his craftiness, your minds should be corrupted from the simplicity and the purity that is toward Christ.</VERS>\r\n      <VERS vnumber=\"4\">For if he that cometh preacheth another Jesus, whom we did not preach, or [if] ye receive a different spirit, which ye did not receive, or a different gospel, which ye did not accept, ye do well to bear with [him].</VERS>\r\n      <VERS vnumber=\"5\">For I reckon that I am not a whit behind the very chiefest apostles.</VERS>\r\n      <VERS vnumber=\"6\">But though [I be] rude in speech, yet [am I] not in knowledge; nay, in every way have we made [this] manifest unto you in all things.</VERS>\r\n      <VERS vnumber=\"7\">Or did I commit a sin in abasing myself that ye might be exalted, because I preached to you the gospel of God for nought?</VERS>\r\n      <VERS vnumber=\"8\">I robbed other churches, taking wages [of them] that I might minister unto you;</VERS>\r\n      <VERS vnumber=\"9\">and when I was present with you and was in want, I was not a burden on any man; for the brethren, when they came from Macedonia, supplied the measure of my want; and in everything I kept myself from being burdensome unto you, and [so] will I keep [myself].</VERS>\r\n      <VERS vnumber=\"10\">As the truth of Christ is in me, no man shall stop me of this glorying in the regions of Achaia.</VERS>\r\n      <VERS vnumber=\"11\">Wherefore? because I love you not? God knoweth.</VERS>\r\n      <VERS vnumber=\"12\">But what I do, that I will do, that I may cut off occasion from them that desire an occasion; that wherein they glory, they may be found even as we.</VERS>\r\n      <VERS vnumber=\"13\">For such men are false apostles, deceitful workers, fashioning themselves into apostles of Christ.</VERS>\r\n      <VERS vnumber=\"14\">And no marvel; for even Satan fashioneth himself into an angel of light.</VERS>\r\n      <VERS vnumber=\"15\">It is no great thing therefore if his ministers also fashion themselves as ministers of righteousness, whose end shall be according to their works.</VERS>\r\n      <VERS vnumber=\"16\">I say again, let no man think me foolish; but if [ye do], yet as foolish receive me, that I also may glory a little.</VERS>\r\n      <VERS vnumber=\"17\">That which I speak, I speak not after the Lord, but as in foolishness, in this confidence of glorying.</VERS>\r\n      <VERS vnumber=\"18\">Seeing that many glory after the flesh, I will glory also.</VERS>\r\n      <VERS vnumber=\"19\">For ye bear with the foolish gladly, being wise [yourselves].</VERS>\r\n      <VERS vnumber=\"20\">For ye bear with a man, if he bringeth you into bondage, if he devoureth you, if he taketh you [captive], if he exalteth himself, if he smiteth you on the face.</VERS>\r\n      <VERS vnumber=\"21\">I speak by way of disparagement, as though we had been weak. Yet whereinsoever any is bold (I speak in foolishness), I am bold also.</VERS>\r\n      <VERS vnumber=\"22\">Are they Hebrews? so am I. Are they Israelites? so am I. Are they the seed of Abraham? so am I.</VERS>\r\n      <VERS vnumber=\"23\">Are they ministers of Christ? (I speak as one beside himself) I more; in labors more abundantly, in prisons more abundantly, in stripes above measure, in deaths oft.</VERS>\r\n      <VERS vnumber=\"24\">Of the Jews five times received I forty [stripes] save one.</VERS>\r\n      <VERS vnumber=\"25\">Thrice was I beaten with rods, once was I stoned, thrice I suffered shipwreck, a night and a day have I been in the deep;</VERS>\r\n      <VERS vnumber=\"26\">[in] journeyings often, [in] perils of rivers, [in] perils of robbers, [in] perils from [my] countrymen, [in] perils from the Gentiles, [in] perils in the city, [in] perils in the wilderness, [in] perils in the sea, [in] perils among false brethren;</VERS>\r\n      <VERS vnumber=\"27\">[in] labor and travail, in watchings often, in hunger and thirst, in fastings often, in cold and nakedness.</VERS>\r\n      <VERS vnumber=\"28\">Besides those things that are without, there is that which presseth upon me daily, anxiety for all the churches.</VERS>\r\n      <VERS vnumber=\"29\">Who is weak, and I am not weak? who is caused to stumble, and I burn not?</VERS>\r\n      <VERS vnumber=\"30\">If I must needs glory, I will glory of the things that concern my weakness.</VERS>\r\n      <VERS vnumber=\"31\">The God and Father of the Lord Jesus, he who is blessed for evermore knoweth that I lie not.</VERS>\r\n      <VERS vnumber=\"32\">In Damascus the governor under Aretas the king guarded the city of the Damascenes in order to take me:</VERS>\r\n      <VERS vnumber=\"33\">and through a window was I let down in a basket by the wall, and escaped his hands.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">I must needs glory, though it is not expedient; but I will come to visions and revelations of the Lord.</VERS>\r\n      <VERS vnumber=\"2\">I know a man in Christ, fourteen years ago (whether in the body, I know not; or whether out of the body, I know not; God knoweth), such a one caught up even to the third heaven.</VERS>\r\n      <VERS vnumber=\"3\">And I know such a man (whether in the body, or apart from the body, I know not; God knoweth),</VERS>\r\n      <VERS vnumber=\"4\">how that he was caught up into Paradise, and heard unspeakable words, which it is not lawful for a man to utter.</VERS>\r\n      <VERS vnumber=\"5\">On behalf of such a one will I glory: but on mine own behalf I will not glory, save in [my] weaknesses.</VERS>\r\n      <VERS vnumber=\"6\">For if I should desire to glory, I shall not be foolish; for I shall speak the truth: but I forbear, lest any man should account of me above that which he seeth me [to be], or heareth from me.</VERS>\r\n      <VERS vnumber=\"7\">And by reason of the exceeding greatness of the revelations, that I should not be exalted overmuch, there was given to me a thorn in the flesh, a messenger of Satan to buffet me, that I should not be exalted overmuch.</VERS>\r\n      <VERS vnumber=\"8\">Concerning this thing I besought the Lord thrice, that it might depart from me.</VERS>\r\n      <VERS vnumber=\"9\">And he hath said unto me, My grace is sufficient for thee: for [my] power is made perfect in weakness. Most gladly therefore will I rather glory in my weaknesses, that the power of Christ may rest upon me.</VERS>\r\n      <VERS vnumber=\"10\">Wherefore I take pleasure in weaknesses, in injuries, in necessities, in persecutions, in distresses, for Christ`s sake: for when I am weak, then am I strong.</VERS>\r\n      <VERS vnumber=\"11\">I am become foolish: ye compelled me; for I ought to have been commended of you: for in nothing was I behind the very chiefest apostles, though I am nothing.</VERS>\r\n      <VERS vnumber=\"12\">Truly the signs of an apostle were wrought among you in all patience, by signs and wonders and mighty works.</VERS>\r\n      <VERS vnumber=\"13\">For what is there wherein ye were made inferior to the rest of the churches, except [it be] that I myself was not a burden to you? forgive me this wrong.</VERS>\r\n      <VERS vnumber=\"14\">Behold, this is the third time I am ready to come to you; and I will not be a burden to you: for I seek not yours, but you: for the children ought not to lay up for the parents, but the parents for the children.</VERS>\r\n      <VERS vnumber=\"15\">And I will most gladly spend and be spent for your souls. If I love you more abundantly, am I loved the less?</VERS>\r\n      <VERS vnumber=\"16\">But be it so, I did not myself burden you; but, being crafty, I caught you with guile.</VERS>\r\n      <VERS vnumber=\"17\">Did I take advantage of you by any one of them whom I have sent unto you?</VERS>\r\n      <VERS vnumber=\"18\">I exhorted Titus, and I sent the brother with him. Did Titus take any advantage of you? walked we not in the same spirit? [walked we] not in the same steps?</VERS>\r\n      <VERS vnumber=\"19\">Ye think all this time that we are excusing ourselves unto you. In the sight of God speak we in Christ. But all things, beloved, [are] for your edifying.</VERS>\r\n      <VERS vnumber=\"20\">For I fear, lest by any means, when I come, I should find you not such as I would, and should myself be found of you such as ye would not; lest by any means [there should be] strife, jealousy, wraths, factions, backbitings, whisperings, swellings, tumults;</VERS>\r\n      <VERS vnumber=\"21\">lest again when I come my God should humble me before you, and I should mourn for many of them that have sinned heretofore, and repented not of the uncleanness and fornication and lasciviousness which they committed.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">This is the third time I am coming to you. At the mouth of two witnesses or three shall every word established.</VERS>\r\n      <VERS vnumber=\"2\">I have said beforehand, and I do say beforehand, as when I was present the second time, so now, being absent, to them that have sinned heretofore, and to all the rest, that, if I come again, I will not spare;</VERS>\r\n      <VERS vnumber=\"3\">seeing that ye seek a proof of Christ that speaketh in me; who to you-ward is not weak, but is powerful in you:</VERS>\r\n      <VERS vnumber=\"4\">for he was crucified through weakness, yet he liveth through the power of God. For we also are weak in him, but we shall live with him through the power of God toward you.</VERS>\r\n      <VERS vnumber=\"5\">Try your own selves, whether ye are in the faith; prove your own selves. Or know ye not as to your own selves, that Jesus Christ is in you? unless indeed ye be reprobate.</VERS>\r\n      <VERS vnumber=\"6\">But I hope that ye shall know that we are not reprobate.</VERS>\r\n      <VERS vnumber=\"7\">Now we pray to God that ye do no evil; not that we may appear approved, but that ye may do that which is honorable, though we be as reprobate.</VERS>\r\n      <VERS vnumber=\"8\">For we can do nothing against the truth, but for the truth.</VERS>\r\n      <VERS vnumber=\"9\">For we rejoice, when we are weak, and ye are strong: this we also pray for, even your perfecting.</VERS>\r\n      <VERS vnumber=\"10\">For this cause I write these things while absent, that I may not when present deal sharply, according to the authority which the Lord gave me for building up, and not for casting down.</VERS>\r\n      <VERS vnumber=\"11\">Finally, brethren, farewell. Be perfected; be comforted; be of the same mind; live in peace: and the God of love and peace shall be with you.</VERS>\r\n      <VERS vnumber=\"12\">Salute one another with a holy kiss.</VERS>\r\n      <VERS vnumber=\"13\">All the saints salute you.</VERS>\r\n      <VERS vnumber=\"14\">The grace of the Lord Jesus Christ, and the love of God, and the communion of the Holy Spirit, be with you all.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"48\" bname=\"Galatians\" bsname=\"Gal\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">Paul, an apostle (not from men, neither through man, but through Jesus Christ, and God the Father, who raised him from the dead),</VERS>\r\n      <VERS vnumber=\"2\">and all the brethren that are with me, unto the churches of Galatia:</VERS>\r\n      <VERS vnumber=\"3\">Grace to you and peace from God the Father, and our Lord Jesus Christ,</VERS>\r\n      <VERS vnumber=\"4\">who gave himself for our sins, that he might deliver us out of this present evil world, according to the will of our God and Father:</VERS>\r\n      <VERS vnumber=\"5\">to whom [be] the glory for ever and ever. Amen.</VERS>\r\n      <VERS vnumber=\"6\">I marvel that ye are so quickly removing from him that called you in the grace of Christ unto a different gospel;</VERS>\r\n      <VERS vnumber=\"7\">which is not another [gospel] only there are some that trouble you, and would pervert the gospel of Christ.</VERS>\r\n      <VERS vnumber=\"8\">But though we, or an angel from heaven, should preach unto you any gospel other than that which we preached unto you, let him be anathema.</VERS>\r\n      <VERS vnumber=\"9\">As we have said before, so say I now again, if any man preacheth unto you any gospel other than that which ye received, let him be anathema.</VERS>\r\n      <VERS vnumber=\"10\">For am I now seeking the favor of men, or of God? or am I striving to please men? if I were still pleasing men, I should not be a servant of Christ.</VERS>\r\n      <VERS vnumber=\"11\">For I make known to you, brethren, as touching the gospel which was preached by me, that it is not after man.</VERS>\r\n      <VERS vnumber=\"12\">For neither did I receive it from man, nor was I taught it, but [it came to me] through revelation of Jesus Christ.</VERS>\r\n      <VERS vnumber=\"13\">For ye have heard of my manner of life in time past in the Jews` religion, how that beyond measure I persecuted the church of God, and made havoc of it:</VERS>\r\n      <VERS vnumber=\"14\">and I advanced in the Jews` religion beyond many of mine own age among my countrymen, being more exceedingly zealous for the traditions of my fathers.</VERS>\r\n      <VERS vnumber=\"15\">But when it was the good pleasure of God, who separated me, [even] from my mother`s womb, and called me through his grace,</VERS>\r\n      <VERS vnumber=\"16\">to reveal his Son in me, that I might preach him among the Gentiles; straightway I conferred not with flesh and blood:</VERS>\r\n      <VERS vnumber=\"17\">neither went I up to Jerusalem to them that were apostles before me: but I went away into Arabia; and again I returned unto Damascus.</VERS>\r\n      <VERS vnumber=\"18\">Then after three years I went up to Jerusalem to visit Cephas, and tarried with him fifteen days.</VERS>\r\n      <VERS vnumber=\"19\">But other of the apostles saw I none, save James the Lord`s brother.</VERS>\r\n      <VERS vnumber=\"20\">Now touching the things which I write unto you, behold, before God, I lie not.</VERS>\r\n      <VERS vnumber=\"21\">Then I came unto the regions of Syria and Cilicia.</VERS>\r\n      <VERS vnumber=\"22\">And I was still unknown by face unto the churches of Judaea which were in Christ:</VERS>\r\n      <VERS vnumber=\"23\">but they only heard say, He that once persecuted us now preacheth the faith of which he once made havoc;</VERS>\r\n      <VERS vnumber=\"24\">and they glorified God in me.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">Then after the space of fourteen years I went up again to Jerusalem with Barnabas, taking Titus also with me.</VERS>\r\n      <VERS vnumber=\"2\">And I went up by revelation; and I laid before them the gospel which I preach among the Gentiles but privately before them who were of repute, lest by any means I should be running, or had run, in vain.</VERS>\r\n      <VERS vnumber=\"3\">But not even Titus who was with me, being a Greek, was compelled to be circumcised:</VERS>\r\n      <VERS vnumber=\"4\">and that because of the false brethren privily brought in, who came in privily to spy out our liberty which we have in Christ Jesus, that they might bring us into bondage:</VERS>\r\n      <VERS vnumber=\"5\">to whom we gave place in the way of subjection, no, not for an hour; that the truth of the gospel might continue with you.</VERS>\r\n      <VERS vnumber=\"6\">But from those who were reputed to be somewhat (whatsoever they were, it maketh no matter to me: God accepteth not man`s person)-- they, I say, who were of repute imparted nothing to me:</VERS>\r\n      <VERS vnumber=\"7\">but contrariwise, when they saw that I had been intrusted with the gospel of the uncircumcision, even as Peter with [the gospel] of the circumcision</VERS>\r\n      <VERS vnumber=\"8\">(for he that wrought for Peter unto the apostleship of the circumcision wrought for me also unto the Gentiles);</VERS>\r\n      <VERS vnumber=\"9\">and when they perceived the grace that was given unto me, James and Cephas and John, they who were reputed to be pillars, gave to me and Barnabas the right hands of fellowship, that we should go unto the Gentiles, and they unto the circumcision;</VERS>\r\n      <VERS vnumber=\"10\">only [they would] that we should remember the poor; which very thing I was also zealous to do.</VERS>\r\n      <VERS vnumber=\"11\">But when Cephas came to Antioch, I resisted him to the face, because he stood condemned.</VERS>\r\n      <VERS vnumber=\"12\">For before that certain came from James, he ate with the Gentiles; but when they came, he drew back and separated himself, fearing them that were of the circumcision.</VERS>\r\n      <VERS vnumber=\"13\">And the rest of the Jews dissembled likewise with him; insomuch that even Barnabas was carried away with their dissimulation.</VERS>\r\n      <VERS vnumber=\"14\">But when I saw that they walked not uprightly according to the truth of the gospel, I said unto Cephas before [them] all, If thou, being a Jew, livest as do the Gentiles, and not as do the Jews, how compellest thou the Gentiles to live as do the Jews?</VERS>\r\n      <VERS vnumber=\"15\">We being Jews by nature, and not sinners of the Gentiles,</VERS>\r\n      <VERS vnumber=\"16\">yet knowing that a man is not justified by the works of the law but through faith in Jesus Christ, even we believed on Christ Jesus, that we might be justified by faith in Christ, and not by the works of the law: because by the works of the law shall no flesh be justified.</VERS>\r\n      <VERS vnumber=\"17\">But if, while we sought to be justified in Christ, we ourselves also were found sinners, is Christ a minister of sin? God forbid.</VERS>\r\n      <VERS vnumber=\"18\">For if I build up again those things which I destroyed, I prove myself a transgressor.</VERS>\r\n      <VERS vnumber=\"19\">For I through the law died unto the law, that I might live unto God.</VERS>\r\n      <VERS vnumber=\"20\">I have been crucified with Christ; and it is no longer I that live, but Christ living in me: and that [life] which I now live in the flesh I live in faith, [the faith] which is in the Son of God, who loved me, and gave himself up for me.</VERS>\r\n      <VERS vnumber=\"21\">I do not make void the grace of God: for if righteousness is through the law, then Christ died for nought.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">O foolish Galatians, who did bewitch you, before whose eyes Jesus Christ was openly set forth crucified?</VERS>\r\n      <VERS vnumber=\"2\">This only would I learn from you. Received ye the Spirit by the works of the law, or by the hearing of faith?</VERS>\r\n      <VERS vnumber=\"3\">Are ye so foolish? having begun in the Spirit, are ye now perfected in the flesh?</VERS>\r\n      <VERS vnumber=\"4\">Did ye suffer so many things in vain? if it be indeed in vain.</VERS>\r\n      <VERS vnumber=\"5\">He therefore that supplieth to you the Spirit, and worketh miracles among you, [doeth he it] by the works of the law, or by the hearing of faith?</VERS>\r\n      <VERS vnumber=\"6\">Even as Abraham believed God, and it was reckoned unto him for righteousness.</VERS>\r\n      <VERS vnumber=\"7\">Know therefore that they that are of faith, the same are sons of Abraham.</VERS>\r\n      <VERS vnumber=\"8\">And the scripture, foreseeing that God would justify the Gentiles by faith, preached the gospel beforehand unto Abraham, [saying,] In thee shall all the nations be blessed.</VERS>\r\n      <VERS vnumber=\"9\">So then they that are of faith are blessed with the faithful Abraham.</VERS>\r\n      <VERS vnumber=\"10\">For as many as are of the works of the law are under a curse: for it is written, Cursed is every one who continueth not in all things that are written in the book of the law, to do them.</VERS>\r\n      <VERS vnumber=\"11\">Now that no man is justified by the law before God, is evident: for, The righteous shall live by faith;</VERS>\r\n      <VERS vnumber=\"12\">and the law is not of faith; but, He that doeth them shall live in them.</VERS>\r\n      <VERS vnumber=\"13\">Christ redeemed us from the curse of the law, having become a curse for us; for it is written, Cursed is every one that hangeth on a tree:</VERS>\r\n      <VERS vnumber=\"14\">that upon the Gentiles might come the blessing of Abraham in Christ Jesus; that we might receive the promise of the Spirit through faith.</VERS>\r\n      <VERS vnumber=\"15\">Brethren, I speak after the manner of men: Though it be but a man`s covenant, yet when it hath been confirmed, no one maketh it void, or addeth thereto.</VERS>\r\n      <VERS vnumber=\"16\">Now to Abraham were the promises spoken, and to his seed. He saith not, And to seeds, as of many; but as of one, And to thy seed, which is Christ.</VERS>\r\n      <VERS vnumber=\"17\">Now this I say: A covenant confirmed beforehand by God, the law, which came four hundred and thirty years after, doth not disannul, so as to make the promise of none effect.</VERS>\r\n      <VERS vnumber=\"18\">For if the inheritance is of the law, it is no more of promise: but God hath granted it to Abraham by promise.</VERS>\r\n      <VERS vnumber=\"19\">What then is the law? It was added because of transgressions, till the seed should come to whom the promise hath been made; [and it was] ordained through angels by the hand of a mediator.</VERS>\r\n      <VERS vnumber=\"20\">Now a mediator is not [a mediator] of one; but God is one.</VERS>\r\n      <VERS vnumber=\"21\">Is the law then against the promises of God? God forbid: for if there had been a law given which could make alive, verily righteousness would have been of the law.</VERS>\r\n      <VERS vnumber=\"22\">But the scriptures shut up all things under sin, that the promise by faith in Jesus Christ might be given to them that believe.</VERS>\r\n      <VERS vnumber=\"23\">But before faith came, we were kept in ward under the law, shut up unto the faith which should afterwards be revealed.</VERS>\r\n      <VERS vnumber=\"24\">So that the law is become our tutor [to bring us] unto Christ, that we might be justified by faith.</VERS>\r\n      <VERS vnumber=\"25\">But now faith that is come, we are no longer under a tutor.</VERS>\r\n      <VERS vnumber=\"26\">For ye are all sons of God, through faith, in Christ Jesus.</VERS>\r\n      <VERS vnumber=\"27\">For as many of you as were baptized into Christ did put on Christ.</VERS>\r\n      <VERS vnumber=\"28\">There can be neither Jew nor Greek, there can be neither bond nor free, there can be no male and female; for ye all are one [man] in Christ Jesus.</VERS>\r\n      <VERS vnumber=\"29\">And if ye are Christ`s, then are ye Abraham`s seed, heirs according to promise.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">But I say that so long as the heir is a child, he differeth nothing from a bondservant though he is lord of all;</VERS>\r\n      <VERS vnumber=\"2\">but is under guardians and stewards until the day appointed of the father.</VERS>\r\n      <VERS vnumber=\"3\">So we also, when we were children, were held in bondage under the rudiments of the world:</VERS>\r\n      <VERS vnumber=\"4\">but when the fulness of the time came, God sent forth his Son, born of a woman, born under the law,</VERS>\r\n      <VERS vnumber=\"5\">that he might redeem them that were under the law, that we might receive the adoption of sons.</VERS>\r\n      <VERS vnumber=\"6\">And because ye are sons, God sent forth the Spirit of his Son into our hearts, crying, Abba, Father.</VERS>\r\n      <VERS vnumber=\"7\">So that thou art no longer a bondservant, but a son; and if a son, then an heir through God.</VERS>\r\n      <VERS vnumber=\"8\">Howbeit at that time, not knowing God, ye were in bondage to them that by nature are no gods:</VERS>\r\n      <VERS vnumber=\"9\">but now that ye have come to know God, or rather to be known by God, how turn ye back again to the weak and beggarly rudiments, whereunto ye desire to be in bondage over again?</VERS>\r\n      <VERS vnumber=\"10\">Ye observe days, and months, and seasons, and years.</VERS>\r\n      <VERS vnumber=\"11\">I am afraid of you, lest by any means I have bestowed labor upon you in vain.</VERS>\r\n      <VERS vnumber=\"12\">I beseech you, brethren, become as I [am], for I also [am become] as ye [are]. Ye did me no wrong:</VERS>\r\n      <VERS vnumber=\"13\">but ye know that because of an infirmity of the flesh I preached the gospel unto you the first time:</VERS>\r\n      <VERS vnumber=\"14\">and that which was a temptation to you in my flesh ye despised not, nor rejected; but ye received me as an angel of God, [even] as Christ Jesus.</VERS>\r\n      <VERS vnumber=\"15\">Where then is that gratulation of yourselves? for I bear you witness, that, if possible, ye would have plucked out your eyes and given them to me.</VERS>\r\n      <VERS vnumber=\"16\">So then am I become your enemy, by telling you the truth?</VERS>\r\n      <VERS vnumber=\"17\">They zealously seek you in no good way; nay, they desire to shut you out, that ye may seek them.</VERS>\r\n      <VERS vnumber=\"18\">But it is good to be zealously sought in a good matter at all times, and not only when I am present with you.</VERS>\r\n      <VERS vnumber=\"19\">My little children, of whom I am again in travail until Christ be formed in you--</VERS>\r\n      <VERS vnumber=\"20\">but I could wish to be present with you now, and to change my tone; for I am perplexed about you.</VERS>\r\n      <VERS vnumber=\"21\">Tell me, ye that desire to be under the law, do ye not hear the law?</VERS>\r\n      <VERS vnumber=\"22\">For it is written, that Abraham had two sons, one by the handmaid, and one by the freewoman.</VERS>\r\n      <VERS vnumber=\"23\">Howbeit the [son] by the handmaid is born after the flesh; but the [son] by the freewoman [is born] through promise.</VERS>\r\n      <VERS vnumber=\"24\">Which things contain an allegory: for these [women] are two covenants; one from mount Sinai, bearing children unto bondage, which is Hagar.</VERS>\r\n      <VERS vnumber=\"25\">Now this Hagar is mount Sinai in Arabia and answereth to the Jerusalem that now is: for she is in bondage with her children.</VERS>\r\n      <VERS vnumber=\"26\">But the Jerusalem that is above is free, which is our mother.</VERS>\r\n      <VERS vnumber=\"27\">For it is written, Rejoice, thou barren that bearest not; Break forth and cry, thou that travailest not: For more are the children of the desolate than of her that hath       the husband.</VERS>\r\n      <VERS vnumber=\"28\">Now we, brethren, as Isaac was, are children of promise.</VERS>\r\n      <VERS vnumber=\"29\">But as then he that was born after the flesh persecuted him [that was born] after the Spirit, so also it is now.</VERS>\r\n      <VERS vnumber=\"30\">Howbeit what saith the scripture? Cast out the handmaid and her son: for the son of the handmaid shall not inherit with the son of the freewoman.</VERS>\r\n      <VERS vnumber=\"31\">Wherefore, brethren, we are not children of a handmaid, but of the freewoman.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">For freedom did Christ set us free: stand fast therefore, and be not entangled again in a yoke of bondage.</VERS>\r\n      <VERS vnumber=\"2\">Behold, I Paul say unto you, that, if ye receive circumcision, Christ will profit you nothing.</VERS>\r\n      <VERS vnumber=\"3\">Yea, I testify again to every man that receiveth circumcision, that he is a debtor to do the whole law.</VERS>\r\n      <VERS vnumber=\"4\">Ye are severed from Christ, ye would be justified by the law; ye are fallen away from grace.</VERS>\r\n      <VERS vnumber=\"5\">For we through the Spirit by faith wait for the hope of righteousness.</VERS>\r\n      <VERS vnumber=\"6\">For in Christ Jesus neither circumcision availeth anything, nor uncircumcision; but faith working through love.</VERS>\r\n      <VERS vnumber=\"7\">Ye were running well; who hindered you that ye should not obey the truth?</VERS>\r\n      <VERS vnumber=\"8\">This persuasion [came] not of him that calleth you.</VERS>\r\n      <VERS vnumber=\"9\">A little leaven leaveneth the whole lump.</VERS>\r\n      <VERS vnumber=\"10\">I have confidence to you-ward in the Lord, that ye will be none otherwise minded: but he that troubleth you shall bear his judgment, whosoever he be.</VERS>\r\n      <VERS vnumber=\"11\">But I, brethren, if I still preach circumcision, why am I still persecuted? then hath the stumbling-block of the cross been done away.</VERS>\r\n      <VERS vnumber=\"12\">I would that they that unsettle you would even go beyond circumcision.</VERS>\r\n      <VERS vnumber=\"13\">For ye, brethren, were called for freedom; only [use] not your freedom for an occasion to the flesh, but through love be servants one to another.</VERS>\r\n      <VERS vnumber=\"14\">For the whole law is fulfilled in one word, [even] in this: Thou shalt love thy neighbor as thyself.</VERS>\r\n      <VERS vnumber=\"15\">But if ye bite and devour one another, take heed that ye be not consumed one of another.</VERS>\r\n      <VERS vnumber=\"16\">But I say, walk by the Spirit, and ye shall not fulfil the lust of the flesh.</VERS>\r\n      <VERS vnumber=\"17\">For the flesh lusteth against the Spirit, and the Spirit against the flesh; for these are contrary the one to the other; that ye may not do the things that ye would.</VERS>\r\n      <VERS vnumber=\"18\">But if ye are led by the Spirit, ye are not under the law.</VERS>\r\n      <VERS vnumber=\"19\">Now the works of the flesh are manifest, which are [these]: fornication, uncleanness, lasciviousness,</VERS>\r\n      <VERS vnumber=\"20\">idolatry, sorcery, enmities, strife, jealousies, wraths, factions, divisions, parties,</VERS>\r\n      <VERS vnumber=\"21\">envyings, drunkenness, revellings, and such like; of which I forewarn you, even as I did forewarn you, that they who practise such things shall not inherit the kingdom of God.</VERS>\r\n      <VERS vnumber=\"22\">But the fruit of the Spirit is love, joy, peace, longsuffering, kindness, goodness, faithfulness,</VERS>\r\n      <VERS vnumber=\"23\">meekness, self-control; against such there is no law.</VERS>\r\n      <VERS vnumber=\"24\">And they that are of Christ Jesus have crucified the flesh with the passions and the lusts thereof.</VERS>\r\n      <VERS vnumber=\"25\">If we live by the Spirit, by the Spirit let us also walk.</VERS>\r\n      <VERS vnumber=\"26\">Let us not become vainglorious, provoking one another, envying one another.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">Brethren, even if a man be overtaken in any trespass, ye who are spiritual, restore such a one in a spirit of gentleness; looking to thyself, lest thou also be tempted.</VERS>\r\n      <VERS vnumber=\"2\">Bear ye one another`s burdens, and so fulfil the law of Christ.</VERS>\r\n      <VERS vnumber=\"3\">For if a man thinketh himself to be something when he is nothing, he deceiveth himself.</VERS>\r\n      <VERS vnumber=\"4\">But let each man prove his own work, and then shall he have his glorying in regard of himself alone, and not of his neighbor.</VERS>\r\n      <VERS vnumber=\"5\">For each man shall bear his own burden.</VERS>\r\n      <VERS vnumber=\"6\">But let him that is taught in the word communicate unto him that teacheth in all good things.</VERS>\r\n      <VERS vnumber=\"7\">Be not deceived; God is not mocked: for whatsoever a man soweth, that shall he also reap.</VERS>\r\n      <VERS vnumber=\"8\">For he that soweth unto his own flesh shall of the flesh reap corruption; but he that soweth unto the Spirit shall of the Spirit reap eternal life.</VERS>\r\n      <VERS vnumber=\"9\">And let us not be weary in well-doing: for in due season we shall reap, if we faint not.</VERS>\r\n      <VERS vnumber=\"10\">So then, as we have opportunity, let us work that which is good toward all men, and especially toward them that are of the household of the faith.</VERS>\r\n      <VERS vnumber=\"11\">See with how large letters I write unto you with mine own hand.</VERS>\r\n      <VERS vnumber=\"12\">As many as desire to make a fair show in the flesh, they compel you to be circumcised; only that they may not be persecuted for the cross of Christ.</VERS>\r\n      <VERS vnumber=\"13\">For not even they who receive circumcision do themselves keep the law; but they desire to have you circumcised, that they may glory in your flesh.</VERS>\r\n      <VERS vnumber=\"14\">But far be it from me to glory, save in the cross of our Lord Jesus Christ, through which the world hath been crucified unto me, and I unto the world.</VERS>\r\n      <VERS vnumber=\"15\">For neither is circumcision anything, nor uncircumcision, but a new creature.</VERS>\r\n      <VERS vnumber=\"16\">And as many as shall walk by this rule, peace [be] upon them, and mercy, and upon the Israel of God.</VERS>\r\n      <VERS vnumber=\"17\">Henceforth, let no man trouble me; for I bear branded on my body the marks of Jesus.</VERS>\r\n      <VERS vnumber=\"18\">The grace of our Lord Jesus Christ be with your spirit, brethren. Amen.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"49\" bname=\"Ephesians\" bsname=\"Eph\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">Paul, an apostle of Christ Jesus through the will of God, to the saints that are at Ephesus, and the faithful in Christ Jesus:</VERS>\r\n      <VERS vnumber=\"2\">Grace to you and peace from God our Father and the Lord Jesus Christ.</VERS>\r\n      <VERS vnumber=\"3\">Blessed [be] the God and Father of our Lord Jesus Christ, who hath blessed us with every spiritual blessing in the heavenly [places] in Christ:</VERS>\r\n      <VERS vnumber=\"4\">even as he chose us in him before the foundation of the world, that we should be holy and without blemish before him in love:</VERS>\r\n      <VERS vnumber=\"5\">having foreordained us unto adoption as sons through Jesus Christ unto himself, according to the good pleasure of his will,</VERS>\r\n      <VERS vnumber=\"6\">to the praise of the glory of his grace, which he freely bestowed on us in the Beloved:</VERS>\r\n      <VERS vnumber=\"7\">in whom we have our redemption through his blood, the forgiveness of our trespasses, according to the riches of his grace,</VERS>\r\n      <VERS vnumber=\"8\">which he made to abound toward us in all wisdom and prudence,</VERS>\r\n      <VERS vnumber=\"9\">making known unto us the mystery of his will, according to his good pleasure which he purposed in him</VERS>\r\n      <VERS vnumber=\"10\">unto a dispensation of the fulness of the times, to sum up all things in Christ, the things in the heavens, and the things upon the earth; in him, [I say,]</VERS>\r\n      <VERS vnumber=\"11\">in whom also we were made a heritage, having been foreordained according to the purpose of him who worketh all things after the counsel of his will;</VERS>\r\n      <VERS vnumber=\"12\">to the end that we should be unto the praise of his glory, we who had before hoped in Christ:</VERS>\r\n      <VERS vnumber=\"13\">in whom ye also, having heard the word of the truth, the gospel of your salvation,-- in whom, having also believed, ye were sealed with the Holy Spirit of promise,</VERS>\r\n      <VERS vnumber=\"14\">which is an earnest of our inheritance, unto the redemption of [God`s] own possession, unto the praise of his glory.</VERS>\r\n      <VERS vnumber=\"15\">For this cause I also, having heard of the faith in the Lord Jesus which is among you, and the love which [ye show] toward all the saints,</VERS>\r\n      <VERS vnumber=\"16\">cease not to give thanks for you, making mention [of you] in my prayers;</VERS>\r\n      <VERS vnumber=\"17\">that the God of our Lord Jesus Christ, the Father of glory, may give unto you a spirit of wisdom and revelation in the knowledge of him;</VERS>\r\n      <VERS vnumber=\"18\">having the eyes of your heart enlightened, that ye may know what is the hope of his calling, what the riches of the glory of his inheritance in the saints,</VERS>\r\n      <VERS vnumber=\"19\">and what the exceeding greatness of his power to us-ward who believe, according to that working of the strength of his might</VERS>\r\n      <VERS vnumber=\"20\">which he wrought in Christ, when he raised him from the dead, and made him to sit at his right hand in the heavenly [places],</VERS>\r\n      <VERS vnumber=\"21\">far above all rule, and authority, and power, and dominion, and every name that is named, not only in this world, but also in that which is to come:</VERS>\r\n      <VERS vnumber=\"22\">and he put all things in subjection under his feet, and gave him to be head over all things to the church,</VERS>\r\n      <VERS vnumber=\"23\">which is his body, the fulness of him that filleth all in all.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">And you [did he make alive,] when ye were dead through your trespasses and sins,</VERS>\r\n      <VERS vnumber=\"2\">wherein ye once walked according to the course of this world, according to the prince of the powers of the air, of the spirit that now worketh in the sons of disobedience;</VERS>\r\n      <VERS vnumber=\"3\">among whom we also all once lived in the lust of our flesh, doing the desires of the flesh and of the mind, and were by nature children of wrath, even as the rest:--</VERS>\r\n      <VERS vnumber=\"4\">but God, being rich in mercy, for his great love wherewith he loved us,</VERS>\r\n      <VERS vnumber=\"5\">even when we were dead through our trespasses, made us alive together with Christ (by grace have ye been saved),</VERS>\r\n      <VERS vnumber=\"6\">and raised us up with him, and made us to sit with him in the heavenly [places], in Christ Jesus:</VERS>\r\n      <VERS vnumber=\"7\">that in the ages to come he might show the exceeding riches of his grace in kindness toward us in Christ Jesus:</VERS>\r\n      <VERS vnumber=\"8\">for by grace have ye been saved through faith; and that not of yourselves, [it is] the gift of God;</VERS>\r\n      <VERS vnumber=\"9\">not of works, that no man should glory.</VERS>\r\n      <VERS vnumber=\"10\">For we are his workmanship, created in Christ Jesus for good works, which God afore prepared that we should walk in them.</VERS>\r\n      <VERS vnumber=\"11\">Wherefore remember, that once ye, the Gentiles in the flesh, who are called Uncircumcision by that which is called Circumcision, in the flesh, made by hands;</VERS>\r\n      <VERS vnumber=\"12\">that ye were at that time separate from Christ, alienated from the commonwealth of Israel, and strangers from the covenants of the promise, having no hope and without God in the world.</VERS>\r\n      <VERS vnumber=\"13\">But now in Christ Jesus ye that once were far off are made nigh in the blood of Christ.</VERS>\r\n      <VERS vnumber=\"14\">For he is our peace, who made both one, and brake down the middle wall of partition,</VERS>\r\n      <VERS vnumber=\"15\">having abolished in the flesh the enmity, [even] the law of commandments [contained] in ordinances; that he might create in himself of the two one new man, [so] making peace;</VERS>\r\n      <VERS vnumber=\"16\">and might reconcile them both in one body unto God through the cross, having slain the enmity thereby:</VERS>\r\n      <VERS vnumber=\"17\">and he came and preached peace to you that were far off, and peace to them that were nigh:</VERS>\r\n      <VERS vnumber=\"18\">for through him we both have our access in one Spirit unto the Father.</VERS>\r\n      <VERS vnumber=\"19\">So then ye are no more strangers and sojourners, but ye are fellow-citizens with the saints, and of the household of God,</VERS>\r\n      <VERS vnumber=\"20\">being built upon the foundation of the apostles and prophets, Christ Jesus himself being the chief corner stone;</VERS>\r\n      <VERS vnumber=\"21\">in whom each several building, fitly framed together, groweth into a holy temple in the Lord;</VERS>\r\n      <VERS vnumber=\"22\">in whom ye also are builded together for a habitation of God in the Spirit.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">For this cause I Paul, the prisoner of Christ Jesus in behalf of you Gentiles,--</VERS>\r\n      <VERS vnumber=\"2\">if so be that ye have heard of the dispensation of that grace of God which was given me to you-ward;</VERS>\r\n      <VERS vnumber=\"3\">how that by revelation was made known unto me the mystery, as I wrote before in few words,</VERS>\r\n      <VERS vnumber=\"4\">whereby, when ye read, ye can perceive my understanding in the mystery of Christ;</VERS>\r\n      <VERS vnumber=\"5\">which in other generation was not made known unto the sons of men, as it hath now been revealed unto his holy apostles and prophets in the Spirit;</VERS>\r\n      <VERS vnumber=\"6\">[to wit], that the Gentiles are fellow-heirs, and fellow-members of the body, and fellow-partakers of the promise in Christ Jesus through the gospel,</VERS>\r\n      <VERS vnumber=\"7\">whereof I was made a minister, according to the gift of that grace of God which was given me according to the working of his power.</VERS>\r\n      <VERS vnumber=\"8\">Unto me, who am less than the least of all saints, was this grace given, to preach unto the Gentiles the unsearchable riches of Christ;</VERS>\r\n      <VERS vnumber=\"9\">and to make all men see what is the dispensation of the mystery which for ages hath been hid in God who created all things;</VERS>\r\n      <VERS vnumber=\"10\">to the intent that now unto the principalities and the powers in the heavenly [places] might be made known through the church the manifold wisdom of God,</VERS>\r\n      <VERS vnumber=\"11\">according to the eternal purpose which he purposed in Christ Jesus our Lord:</VERS>\r\n      <VERS vnumber=\"12\">in whom we have boldness and access in confidence through our faith in him.</VERS>\r\n      <VERS vnumber=\"13\">Wherefore I ask that ye may not faint at my tribulations for you, which are your glory.</VERS>\r\n      <VERS vnumber=\"14\">For this cause I bow my knees unto the Father,</VERS>\r\n      <VERS vnumber=\"15\">from whom every family in heaven and on earth is named,</VERS>\r\n      <VERS vnumber=\"16\">that he would grant you, according to the riches of his glory, that ye may be strengthened with power through his Spirit in the inward man;</VERS>\r\n      <VERS vnumber=\"17\">that Christ may dwell in your hearts through faith; to the end that ye, being rooted and grounded in love,</VERS>\r\n      <VERS vnumber=\"18\">may be strong to apprehend with all the saints what is the breadth and length and height and depth,</VERS>\r\n      <VERS vnumber=\"19\">and to know the love of Christ which passeth knowledge, that ye may be filled unto all the fulness of God.</VERS>\r\n      <VERS vnumber=\"20\">Now unto him that is able to do exceeding abundantly above all that we ask or think, according to the power that worketh in us,</VERS>\r\n      <VERS vnumber=\"21\">unto him [be] the glory in the church and in Christ Jesus unto all generations for ever and ever. Amen.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">I therefore, the prisoner in the Lord, beseech you to walk worthily of the calling wherewith ye were called,</VERS>\r\n      <VERS vnumber=\"2\">with all lowliness and meekness, with longsuffering, forbearing one another in love;</VERS>\r\n      <VERS vnumber=\"3\">giving diligence to keep the unity of the Spirit in the bond of peace.</VERS>\r\n      <VERS vnumber=\"4\">[There is] one body, and one Spirit, even as also ye were called in one hope of your calling;</VERS>\r\n      <VERS vnumber=\"5\">one Lord, one faith, one baptism,</VERS>\r\n      <VERS vnumber=\"6\">one God and Father of all, who is over all, and through all, and in all.</VERS>\r\n      <VERS vnumber=\"7\">But unto each one of us was the grace given according to the measure of the gift of Christ.</VERS>\r\n      <VERS vnumber=\"8\">Wherefore he saith, When he ascended on high, he led captivity captive, And gave gifts unto men.</VERS>\r\n      <VERS vnumber=\"9\">(Now this, He ascended, what is it but that he also descended into the lower parts of the earth?</VERS>\r\n      <VERS vnumber=\"10\">He that descended is the same also that ascended far above all the heavens, that he might fill all things.)</VERS>\r\n      <VERS vnumber=\"11\">And he gave some [to be] apostles; and some, prophets; and some, evangelists; and some, pastors and teachers;</VERS>\r\n      <VERS vnumber=\"12\">for the perfecting of the saints, unto the work of ministering, unto the building up of the body of Christ:</VERS>\r\n      <VERS vnumber=\"13\">till we all attain unto the unity of the faith, and of the knowledge of the Son of God, unto a fullgrown man, unto the measure of the stature of the fulness of Christ:</VERS>\r\n      <VERS vnumber=\"14\">that we may be no longer children, tossed to and fro and carried about with every wind of doctrine, by the sleight of men, in craftiness, after the wiles of error;</VERS>\r\n      <VERS vnumber=\"15\">but speaking truth in love, we may grow up in all things into him, who is the head, [even] Christ;</VERS>\r\n      <VERS vnumber=\"16\">from whom all the body fitly framed and knit together through that which every joint supplieth, according to the working in [due] measure of each several part, maketh the increase of the body unto the building up of itself in love.</VERS>\r\n      <VERS vnumber=\"17\">This I say therefore, and testify in the Lord, that ye no longer walk as the Gentiles also walk, in the vanity of their mind,</VERS>\r\n      <VERS vnumber=\"18\">being darkened in their understanding, alienated from the life of God, because of the ignorance that is in them, because of the hardening of their heart;</VERS>\r\n      <VERS vnumber=\"19\">who being past feeling gave themselves up to lasciviousness, to work all uncleanness with greediness.</VERS>\r\n      <VERS vnumber=\"20\">But ye did not so learn Christ;</VERS>\r\n      <VERS vnumber=\"21\">if so be that ye heard him, and were taught in him, even as truth is in Jesus:</VERS>\r\n      <VERS vnumber=\"22\">that ye put away, as concerning your former manner of life, the old man, that waxeth corrupt after the lusts of deceit;</VERS>\r\n      <VERS vnumber=\"23\">and that ye be renewed in the spirit of your mind,</VERS>\r\n      <VERS vnumber=\"24\">and put on the new man, that after God hath been created in righteousness and holiness of truth.</VERS>\r\n      <VERS vnumber=\"25\">Wherefore, putting away falsehood, speak ye truth each one with his neighbor: for we are members one of another.</VERS>\r\n      <VERS vnumber=\"26\">Be ye angry, and sin not: let not the sun go down upon your wrath:</VERS>\r\n      <VERS vnumber=\"27\">neither give place to the devil.</VERS>\r\n      <VERS vnumber=\"28\">Let him that stole steal no more: but rather let him labor, working with his hands the thing that is good, that he may have whereof to give to him that hath need.</VERS>\r\n      <VERS vnumber=\"29\">Let no corrupt speech proceed out of your mouth, but such as is good for edifying as the need may be, that it may give grace to them that hear.</VERS>\r\n      <VERS vnumber=\"30\">And grieve not the Holy Spirit of God, in whom ye were sealed unto the day of redemption.</VERS>\r\n      <VERS vnumber=\"31\">Let all bitterness, and wrath, and anger, and clamor, and railing, be put away from you, with all malice:</VERS>\r\n      <VERS vnumber=\"32\">and be ye kind one to another, tenderhearted, forgiving each other, even as God also in Christ forgave you.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">Be ye therefore imitators of God, as beloved children;</VERS>\r\n      <VERS vnumber=\"2\">and walk in love, even as Christ also loved you, and gave himself up for us, an offering and a sacrifice to God for an odor of a sweet smell.</VERS>\r\n      <VERS vnumber=\"3\">But fornication, and all uncleanness, or covetousness, let it not even be named among you, as becometh saints;</VERS>\r\n      <VERS vnumber=\"4\">nor filthiness, nor foolish talking, or jesting, which are not befitting: but rather giving of thanks.</VERS>\r\n      <VERS vnumber=\"5\">For this ye know of a surety, that no fornicator, nor unclean person, nor covetous man, who is an idolater, hath any inheritance in the kingdom of Christ and God.</VERS>\r\n      <VERS vnumber=\"6\">Let no man deceive you with empty words: for because of these things cometh the wrath of God upon the sons of disobedience.</VERS>\r\n      <VERS vnumber=\"7\">Be not ye therefore partakers with them;</VERS>\r\n      <VERS vnumber=\"8\">For ye were once darkness, but are now light in the Lord: walk as children of light</VERS>\r\n      <VERS vnumber=\"9\">(for the fruit of the light is in all goodness and righteousness and truth),</VERS>\r\n      <VERS vnumber=\"10\">proving what is well-pleasing unto the Lord;</VERS>\r\n      <VERS vnumber=\"11\">and have no fellowship with the unfruitful works of darkness, but rather even reprove them;</VERS>\r\n      <VERS vnumber=\"12\">for the things which are done by them in secret it is a shame even to speak of.</VERS>\r\n      <VERS vnumber=\"13\">But all things when they are reproved are made manifest by the light: for everything that is made manifest is light.</VERS>\r\n      <VERS vnumber=\"14\">Wherefore [he] saith, Awake, thou that sleepest, and arise from the dead, and Christ shall shine upon thee.</VERS>\r\n      <VERS vnumber=\"15\">Look therefore carefully how ye walk, not as unwise, but as wise;</VERS>\r\n      <VERS vnumber=\"16\">redeeming the time, because the days are evil.</VERS>\r\n      <VERS vnumber=\"17\">Wherefore be ye not foolish, but understand what the will of the Lord is.</VERS>\r\n      <VERS vnumber=\"18\">And be not drunken with wine, wherein is riot, but be filled with the Spirit;</VERS>\r\n      <VERS vnumber=\"19\">speaking one to another in psalms and hymns and spiritual songs, singing and making melody with your heart to the Lord;</VERS>\r\n      <VERS vnumber=\"20\">giving thanks always for all things in the name of our Lord Jesus Christ to God, even the Father;</VERS>\r\n      <VERS vnumber=\"21\">subjecting yourselves one to another in the fear of Christ.</VERS>\r\n      <VERS vnumber=\"22\">Wives, [be in subjection] unto your own husbands, as unto the Lord.</VERS>\r\n      <VERS vnumber=\"23\">For the husband is the head of the wife, and Christ also is the head of the church, [being] himself the saviour of the body.</VERS>\r\n      <VERS vnumber=\"24\">But as the church is subject to Christ, so [let] the wives also [be] to their husbands in everything.</VERS>\r\n      <VERS vnumber=\"25\">Husbands, love your wives, even as Christ also loved the church, and gave himself up for it;</VERS>\r\n      <VERS vnumber=\"26\">that he might sanctify it, having cleansed it by the washing of water with the word,</VERS>\r\n      <VERS vnumber=\"27\">that he might present the church to himself a glorious [church], not having spot or wrinkle or any such thing; but that it should be holy and without blemish.</VERS>\r\n      <VERS vnumber=\"28\">Even so ought husbands also to love their own wives as their own bodies. He that loveth his own wife loveth himself:</VERS>\r\n      <VERS vnumber=\"29\">for no man ever hated his own flesh; but nourisheth and cherisheth it, even as Christ also the church;</VERS>\r\n      <VERS vnumber=\"30\">because we are members of his body.</VERS>\r\n      <VERS vnumber=\"31\">For this cause shall a man leave his father and mother, and shall cleave to his wife; and the two shall become one flesh.</VERS>\r\n      <VERS vnumber=\"32\">This mystery is great: but I speak in regard of Christ and of the church.</VERS>\r\n      <VERS vnumber=\"33\">Nevertheless do ye also severally love each one his own wife even as himself; and [let] the wife [see] that she fear her husband.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">Children, obey your parents in the Lord: for this is right.</VERS>\r\n      <VERS vnumber=\"2\">Honor thy father and mother (which is the first commandment with promise),</VERS>\r\n      <VERS vnumber=\"3\">that it may be well with thee, and thou mayest live long on the earth.</VERS>\r\n      <VERS vnumber=\"4\">And, ye fathers, provoke not your children to wrath: but nurture them in the chastening and admonition of the Lord.</VERS>\r\n      <VERS vnumber=\"5\">Servants, be obedient unto them that according to the flesh are your masters, with fear and trembling, in singleness of your heart, as unto Christ;</VERS>\r\n      <VERS vnumber=\"6\">not in the way of eyeservice, as men-pleasers; but as servants of Christ, doing the will of God from the heart;</VERS>\r\n      <VERS vnumber=\"7\">with good will doing service, as unto the Lord, and not unto men:</VERS>\r\n      <VERS vnumber=\"8\">knowing that whatsoever good thing each one doeth, the same shall he receive again from the Lord, whether [he be] bond or free.</VERS>\r\n      <VERS vnumber=\"9\">And, ye masters, do the same things unto them, and forbear threatening: knowing that he who is both their Master and yours is in heaven, and there is no respect of persons with him.</VERS>\r\n      <VERS vnumber=\"10\">Finally, be strong in the Lord, and in the strength of his might.</VERS>\r\n      <VERS vnumber=\"11\">Put on the whole armor of God, that ye may be able to stand against the wiles of the devil.</VERS>\r\n      <VERS vnumber=\"12\">For our wrestling is not against flesh and blood, but against the principalities, against the powers, against the world-rulers of this darkness, against the spiritual [hosts] of wickedness in the heavenly [places].</VERS>\r\n      <VERS vnumber=\"13\">Wherefore take up the whole armor of God, that ye may be able to withstand in the evil day, and, having done all, to stand.</VERS>\r\n      <VERS vnumber=\"14\">Stand therefore, having girded your loins with truth, and having put on the breastplate of righteousness,</VERS>\r\n      <VERS vnumber=\"15\">and having shod your feet with the preparation of the gospel of peace;</VERS>\r\n      <VERS vnumber=\"16\">withal taking up the shield of faith, wherewith ye shall be able to quench all the fiery darts of the evil [one].</VERS>\r\n      <VERS vnumber=\"17\">And take the helmet of salvation, and the sword of the Spirit, which is the word of God:</VERS>\r\n      <VERS vnumber=\"18\">with all prayer and supplication praying at all seasons in the Spirit, and watching thereunto in all perseverance and supplication for all the saints,</VERS>\r\n      <VERS vnumber=\"19\">And on my behalf, that utterance may be given unto me in opening my mouth, to make known with boldness the mystery of the gospel,</VERS>\r\n      <VERS vnumber=\"20\">for which I am an ambassador in chains; that in it I may speak boldly, as I ought to speak.</VERS>\r\n      <VERS vnumber=\"21\">But that ye also may know my affairs, how I do, Tychicus, the beloved brother and faithful minister in the Lord, shall make known to you all things:</VERS>\r\n      <VERS vnumber=\"22\">whom I have sent unto you for this very purpose, that ye may know our state, and that he may comfort your hearts.</VERS>\r\n      <VERS vnumber=\"23\">Peace be to the brethren, and love with faith, from God the Father and the Lord Jesus Christ.</VERS>\r\n      <VERS vnumber=\"24\">Grace be with all them that love our Lord Jesus Christ with [a love] incorruptible.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"50\" bname=\"Philippians\" bsname=\"Phil\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">Paul and Timothy, servants of Christ Jesus, to all the saints in Christ Jesus that are at Philippi, with the bishops and deacons:</VERS>\r\n      <VERS vnumber=\"2\">Grace to you and peace from God our Father and the Lord Jesus Christ.</VERS>\r\n      <VERS vnumber=\"3\">I thank my God upon all my remembrance of you,</VERS>\r\n      <VERS vnumber=\"4\">always in every supplication of mine on behalf of you all making my supplication with joy,</VERS>\r\n      <VERS vnumber=\"5\">for your fellowship in furtherance of the gospel from the first day until now;</VERS>\r\n      <VERS vnumber=\"6\">being confident of this very thing, that he who began a good work in you will perfect it until the day of Jesus Christ:</VERS>\r\n      <VERS vnumber=\"7\">even as it is right for me to be thus minded on behalf 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 with me of grace.</VERS>\r\n      <VERS vnumber=\"8\">For God is my witness, how I long after you all in the tender mercies of Christ Jesus.</VERS>\r\n      <VERS vnumber=\"9\">And this I pray, that your love may abound yet more and more in knowledge and all discernment;</VERS>\r\n      <VERS vnumber=\"10\">so that ye may approve the things that are excellent; that ye may be sincere and void of offence unto the day of Christ;</VERS>\r\n      <VERS vnumber=\"11\">being filled with the fruits of righteousness, which are through Jesus Christ, unto the glory and praise of God.</VERS>\r\n      <VERS vnumber=\"12\">Now I would have you know, brethren, that the things [which happened] unto me have fallen out rather unto the progress of the gospel;</VERS>\r\n      <VERS vnumber=\"13\">so that my bonds became manifest in Christ throughout the whole praetorian guard, and to all the rest;</VERS>\r\n      <VERS vnumber=\"14\">and that most of the brethren in the Lord, being confident through my bonds, are more abundantly bold to speak the word of God without fear.</VERS>\r\n      <VERS vnumber=\"15\">Some indeed preach Christ even of envy and strife; and some also of good will:</VERS>\r\n      <VERS vnumber=\"16\">the one [do it] of love, knowing that I am set for the defence of the gospel;</VERS>\r\n      <VERS vnumber=\"17\">but the other proclaim Christ of faction, not sincerely, thinking to raise up affliction for me in my bonds.</VERS>\r\n      <VERS vnumber=\"18\">What then? only that in every way, whether in pretence or in truth, Christ is proclaimed; and therein I rejoice, yea, and will rejoice.</VERS>\r\n      <VERS vnumber=\"19\">For I know that this shall turn out to my salvation, through your supplication and the supply of the Spirit of Jesus Christ,</VERS>\r\n      <VERS vnumber=\"20\">according to my earnest expectation and hope, that in nothing shall I be put to shame, but [that] with all boldness, as always, [so] now also Christ shall be magnified in my body, whether by life, or by death.</VERS>\r\n      <VERS vnumber=\"21\">For to me to live is Christ, and to die is gain.</VERS>\r\n      <VERS vnumber=\"22\">But if to live in the flesh, --[if] this shall bring fruit from my work, then what I shall choose I know not.</VERS>\r\n      <VERS vnumber=\"23\">But I am in a strait betwixt the two, having the desire to depart and be with Christ; for it is very far better:</VERS>\r\n      <VERS vnumber=\"24\">yet to abide in the flesh is more needful for your sake.</VERS>\r\n      <VERS vnumber=\"25\">And having this confidence, I know that I shall abide, yea, and abide with you all, for your progress and joy in the faith;</VERS>\r\n      <VERS vnumber=\"26\">that your glorying may abound in Christ Jesus in me through my presence with you again.</VERS>\r\n      <VERS vnumber=\"27\">Only let your manner of life be worthy of the gospel of Christ: that, whether I come and see you and be absent, I may hear of your state, that ye stand fast in one spirit, with one soul striving for the faith of the gospel;</VERS>\r\n      <VERS vnumber=\"28\">and in nothing affrighted by the adversaries: which is for them an evident token of perdition, but of your salvation, and that from God;</VERS>\r\n      <VERS vnumber=\"29\">because to you it hath been granted in the behalf of Christ, not only to believe on him, but also to suffer in his behalf:</VERS>\r\n      <VERS vnumber=\"30\">having the same conflict which ye saw in me, and now hear to be in me.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">If there is therefore any exhortation in Christ, if any consolation of love, if any fellowship of the Spirit, if any tender mercies and compassions,</VERS>\r\n      <VERS vnumber=\"2\">make full my joy, that ye be of the same mind, having the same love, being of one accord, of one mind;</VERS>\r\n      <VERS vnumber=\"3\">[doing] nothing through faction or through vainglory, but in lowliness of mind each counting other better than himself;</VERS>\r\n      <VERS vnumber=\"4\">not looking each of you to his own things, but each of you also to the things of others.</VERS>\r\n      <VERS vnumber=\"5\">Have this mind in you, which was also in Christ Jesus:</VERS>\r\n      <VERS vnumber=\"6\">who, existing in the form of God, counted not the being on an equality with God a thing to be grasped,</VERS>\r\n      <VERS vnumber=\"7\">but emptied himself, taking the form of a servant, being made in the likeness of men;</VERS>\r\n      <VERS vnumber=\"8\">and being found in fashion as a man, he humbled himself, becoming obedient [even] unto death, yea, the death of the cross.</VERS>\r\n      <VERS vnumber=\"9\">Wherefore also God highly exalted him, and gave unto him the name which is above every name;</VERS>\r\n      <VERS vnumber=\"10\">that in the name of Jesus every knee should bow, of [things] in heaven and [things] on earth and [things] under the earth,</VERS>\r\n      <VERS vnumber=\"11\">and that every tongue should confess that Jesus Christ is Lord, to the glory of God the Father.</VERS>\r\n      <VERS vnumber=\"12\">So then, my beloved, even 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;</VERS>\r\n      <VERS vnumber=\"13\">for it is God who worketh in you both to will and to work, for his good pleasure.</VERS>\r\n      <VERS vnumber=\"14\">Do all things without murmurings and questionings:</VERS>\r\n      <VERS vnumber=\"15\">that ye may become blameless and harmless, children of God without blemish in the midst of a crooked and perverse generation, among whom ye are seen as lights in the world,</VERS>\r\n      <VERS vnumber=\"16\">holding forth the word of life; that I may have whereof to glory in the day of Christ, that I did not run in vain neither labor in vain.</VERS>\r\n      <VERS vnumber=\"17\">Yea, and if I am offered upon the sacrifice and service of your faith, I joy, and rejoice with you all:</VERS>\r\n      <VERS vnumber=\"18\">and in the same manner do ye also joy, and rejoice with me.</VERS>\r\n      <VERS vnumber=\"19\">But I hope in the Lord Jesus to send Timothy shortly unto you, that I also may be of good comfort, when I know your state.</VERS>\r\n      <VERS vnumber=\"20\">For I have no man likeminded, who will care truly for your state.</VERS>\r\n      <VERS vnumber=\"21\">For they all seek their own, not the things of Jesus Christ.</VERS>\r\n      <VERS vnumber=\"22\">But ye know the proof of him, that, as a child [serveth] a father, [so] he served with me in furtherance of the gospel.</VERS>\r\n      <VERS vnumber=\"23\">Him therefore I hope to send forthwith, so soon as I shall see how it will go with me:</VERS>\r\n      <VERS vnumber=\"24\">but I trust in the Lord that I myself also shall come shortly.</VERS>\r\n      <VERS vnumber=\"25\">But I counted it necessary to send to you Epaphroditus, my brother and fellow-worker and fellow-soldier, and your messenger and minister to my need;</VERS>\r\n      <VERS vnumber=\"26\">since he longed after you all, and was sore troubled, because ye had heard that he was sick:</VERS>\r\n      <VERS vnumber=\"27\">for indeed he was sick nigh unto death: but God had mercy on him; and not on him only, but on me also, that I might not have sorrow upon sorrow.</VERS>\r\n      <VERS vnumber=\"28\">I have sent him therefore the more diligently, that, when ye see him again, ye may rejoice, and that I may be the less sorrowful.</VERS>\r\n      <VERS vnumber=\"29\">Receive him therefore in the Lord with all joy; and hold such in honor:</VERS>\r\n      <VERS vnumber=\"30\">because for the work of Christ he came nigh unto death, hazarding his life to supply that which was lacking in your service toward me.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Finally, my brethren, rejoice in the Lord. To write the same things to you, to me indeed is not irksome, but for you it is safe.</VERS>\r\n      <VERS vnumber=\"2\">Beware of the dogs, beware of the evil workers, beware of the concision:</VERS>\r\n      <VERS vnumber=\"3\">for we are the circumcision, who worship by the Spirit of God, and glory in Christ Jesus, and have no confidence in the flesh:</VERS>\r\n      <VERS vnumber=\"4\">though I myself might have confidence even in the flesh: if any other man thinketh to have confidence in the flesh, I yet more:</VERS>\r\n      <VERS vnumber=\"5\">circumcised the eighth day, of the stock of Israel, of the tribe of Benjamin, a Hebrew of Hebrews; as touching the law, a Pharisee;</VERS>\r\n      <VERS vnumber=\"6\">as touching zeal, persecuting the church; as touching the righteousness which is in the law, found blameless.</VERS>\r\n      <VERS vnumber=\"7\">Howbeit what things were gain to me, these have I counted loss for Christ.</VERS>\r\n      <VERS vnumber=\"8\">Yea verily, and I count all things to be loss for the excellency of the knowledge of Christ Jesus my Lord: for whom I suffered the loss of all things, and do count them but refuse, that I may gain Christ,</VERS>\r\n      <VERS vnumber=\"9\">and be found in him, not having a righteousness of mine own, [even] that which is of the law, but that which is through faith in Christ, the righteousness which is from God by faith:</VERS>\r\n      <VERS vnumber=\"10\">that I may know him, and the power of his resurrection, and the fellowship of his sufferings, becoming conformed unto his death;</VERS>\r\n      <VERS vnumber=\"11\">if by any means I may attain unto the resurrection from the dead.</VERS>\r\n      <VERS vnumber=\"12\">Not that I have already obtained, or am already made perfect: but I press on, if so be that I may lay hold on that for which also I was laid hold on by Christ Jesus.</VERS>\r\n      <VERS vnumber=\"13\">Brethren, I could not myself yet to have laid hold: but one thing [I do], forgetting the things which are behind, and stretching forward to the things which are before,</VERS>\r\n      <VERS vnumber=\"14\">I press on toward the goal unto the prize of the high calling of God in Christ Jesus.</VERS>\r\n      <VERS vnumber=\"15\">Let us therefore, as many as are perfect, be thus minded: and if in anything ye are otherwise minded, this also shall God reveal unto you:</VERS>\r\n      <VERS vnumber=\"16\">only, whereunto we have attained, by that same [rule] let us walk.</VERS>\r\n      <VERS vnumber=\"17\">Brethren, be ye imitators together of me, and mark them that so walk even as ye have us for an ensample.</VERS>\r\n      <VERS vnumber=\"18\">For many walk, of whom I told you often, and now tell you even weeping, [that they are] the enemies of the cross of Christ:</VERS>\r\n      <VERS vnumber=\"19\">whose end is perdition, whose god is the belly, and [whose] glory is in their shame, who mind earthly things.</VERS>\r\n      <VERS vnumber=\"20\">For our citizenship is in heaven; whence also we wait for a Saviour, the Lord Jesus Christ:</VERS>\r\n      <VERS vnumber=\"21\">who shall fashion anew the body of our humiliation, [that it may be] conformed to the body of his glory, according to the working whereby he is able even to subject all things unto himself.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">Wherefore, my brethren beloved and longed for, my joy and crown, so stand fast in the Lord, my beloved.</VERS>\r\n      <VERS vnumber=\"2\">I exhort Euodia, and I exhort Syntyche, to be of the same mind in the Lord.</VERS>\r\n      <VERS vnumber=\"3\">Yea, I beseech thee also, true yokefellow, help these women, for they labored with me in the gospel, with Clement also, and the rest of my fellow-workers, whose names are in the book of life.</VERS>\r\n      <VERS vnumber=\"4\">Rejoice in the Lord always: again I will say, Rejoice.</VERS>\r\n      <VERS vnumber=\"5\">Let your forbearance be known unto all men. The Lord is at hand.</VERS>\r\n      <VERS vnumber=\"6\">In nothing be anxious; but in everything by prayer and supplication with thanksgiving let your requests be made known unto God.</VERS>\r\n      <VERS vnumber=\"7\">And the peace of God, which passeth all understanding, shall guard your hearts and your thoughts in Christ Jesus.</VERS>\r\n      <VERS vnumber=\"8\">Finally, brethren, whatsoever things are true, whatsoever things are honorable, 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.</VERS>\r\n      <VERS vnumber=\"9\">The things which ye both learned and received and heard and saw in me, these things do: and the God of peace shall be with you.</VERS>\r\n      <VERS vnumber=\"10\">But I rejoice in the Lord greatly, that now at length ye have revived your thought for me; wherein ye did indeed take thought, but ye lacked opportunity.</VERS>\r\n      <VERS vnumber=\"11\">Not that I speak in respect of want: for I have learned, in whatsoever state I am, therein to be content.</VERS>\r\n      <VERS vnumber=\"12\">I know how to be abased, and I know also how to abound: in everything and in all things have I learned the secret both to be filled and to be hungry, both to abound and to be in want.</VERS>\r\n      <VERS vnumber=\"13\">I can do all things in him that strengtheneth me.</VERS>\r\n      <VERS vnumber=\"14\">Howbeit ye did well that ye had fellowship with my affliction.</VERS>\r\n      <VERS vnumber=\"15\">And ye yourselves also know, ye Philippians, that in the beginning of the gospel, when I departed from Macedonia, no church had fellowship with me in the matter of giving and receiving but ye only;</VERS>\r\n      <VERS vnumber=\"16\">for even in Thessalonica ye sent once and again unto my need.</VERS>\r\n      <VERS vnumber=\"17\">Not that I seek for the gift; but I seek for the fruit that increaseth to your account.</VERS>\r\n      <VERS vnumber=\"18\">But I have all things, and abound: I am filled, having received from Epaphroditus the things [that came] from you, and odor of a sweet smell, a sacrifice acceptable, well-pleasing to God.</VERS>\r\n      <VERS vnumber=\"19\">And my God shall supply every need of yours according to his riches in glory in Christ Jesus.</VERS>\r\n      <VERS vnumber=\"20\">Now unto our God and Father [be] the glory for ever and ever. Amen.</VERS>\r\n      <VERS vnumber=\"21\">Salute every saint in Christ Jesus. The brethren that are with me salute you.</VERS>\r\n      <VERS vnumber=\"22\">All the saints salute you, especially they that are of Caesar`s household.</VERS>\r\n      <VERS vnumber=\"23\">The grace of the Lord Jesus Christ be with your spirit.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"51\" bname=\"Colossians\" bsname=\"Col\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">Paul, an apostle of Christ Jesus through the will of God, and Timothy our brother,</VERS>\r\n      <VERS vnumber=\"2\">To the saints and faithful brethren in Christ [that are] at Colossae: Grace to you and peace from God our Father.</VERS>\r\n      <VERS vnumber=\"3\">We give thanks to God the Father of our Lord Jesus Christ, praying always for you,</VERS>\r\n      <VERS vnumber=\"4\">having heard of your faith in Christ Jesus, and of the love which ye have toward all the saints,</VERS>\r\n      <VERS vnumber=\"5\">because of the hope which is laid up for you in the heavens, whereof ye heard before in the word of the truth of the gospel,</VERS>\r\n      <VERS vnumber=\"6\">which is come unto you; even as it is also in all the world bearing fruit and increasing, as [it doth] in you also, since the day ye heard and knew the grace of God in truth;</VERS>\r\n      <VERS vnumber=\"7\">even as ye learned of Epaphras our beloved fellow-servant, who is a faithful minister of Christ on our behalf,</VERS>\r\n      <VERS vnumber=\"8\">who also declared unto us your love in the Spirit.</VERS>\r\n      <VERS vnumber=\"9\">For this cause we also, since the day we heard [it], do not cease to pray and make request for you, that ye may be filled with the knowledge of his will in all spiritual wisdom and understanding,</VERS>\r\n      <VERS vnumber=\"10\">to walk worthily of the Lord unto all pleasing, bearing fruit in every good work, and increasing in the knowledge of God;</VERS>\r\n      <VERS vnumber=\"11\">strengthened with all power, according to the might of his glory, unto all patience and longsuffering with joy;</VERS>\r\n      <VERS vnumber=\"12\">giving thanks unto the Father, who made us meet to be partakers of the inheritance of the saints in light;</VERS>\r\n      <VERS vnumber=\"13\">who delivered us out of the power of darkness, and translated us into the kingdom of the Son of his love;</VERS>\r\n      <VERS vnumber=\"14\">in whom we have our redemption, the forgiveness of our sins:</VERS>\r\n      <VERS vnumber=\"15\">who is the image of the invisible God, the firstborn of all creation;</VERS>\r\n      <VERS vnumber=\"16\">for in him were all things created, in the heavens and upon the earth, things visible and things invisible, whether thrones or dominions or principalities or powers; all things have been created through him, and unto him;</VERS>\r\n      <VERS vnumber=\"17\">and he is before all things, and in him all things consist.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">For it was the good pleasure [of the Father] that in him should all the fulness dwell;</VERS>\r\n      <VERS vnumber=\"20\">and through him to reconcile all things unto himself, having made peace through the blood of his cross; through him, [I say], whether things upon the earth, or things in the heavens.</VERS>\r\n      <VERS vnumber=\"21\">And you, being in time past alienated and enemies in your mind in your evil works,</VERS>\r\n      <VERS vnumber=\"22\">yet now hath he reconciled in the body of his flesh through death, to present you holy and without blemish and unreproveable before him:</VERS>\r\n      <VERS vnumber=\"23\">if so be that ye continue in the faith, grounded and stedfast, and not moved away from the hope of the gospel which ye heard, which was preached in all creation under heaven; whereof I Paul was made a minister.</VERS>\r\n      <VERS vnumber=\"24\">Now I rejoice in my sufferings for your sake, and fill up on my part that which is lacking of the afflictions of Christ in my flesh for his body`s sake, which is the church;</VERS>\r\n      <VERS vnumber=\"25\">whereof I was made a minister, according to the dispensation of God which was given me to you-ward, to fulfil the word of God,</VERS>\r\n      <VERS vnumber=\"26\">[even] the mystery which hath been hid for ages and generations: but now hath it been manifested to his saints,</VERS>\r\n      <VERS vnumber=\"27\">to whom God was pleased to make known what is the riches of the glory of this mystery among the Gentiles, which is Christ in you, the hope of glory:</VERS>\r\n      <VERS vnumber=\"28\">whom we proclaim, admonishing every man and teaching every man in all wisdom, that we may present every man perfect in Christ;</VERS>\r\n      <VERS vnumber=\"29\">whereunto I labor also, striving according to his working, which worketh in me mightily.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">For I would have you know how greatly I strive for you, and for them at Laodicea, and for as many as have not seen my face in the flesh;</VERS>\r\n      <VERS vnumber=\"2\">that their hearts may be comforted, they being knit together in love, and unto all riches of the full assurance of understanding, that they may know the mystery of God, [even] Christ,</VERS>\r\n      <VERS vnumber=\"3\">in whom are all the treasures of wisdom and knowledge hidden.</VERS>\r\n      <VERS vnumber=\"4\">This I say, that no one may delude you with persuasiveness of speech.</VERS>\r\n      <VERS vnumber=\"5\">For though I am 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.</VERS>\r\n      <VERS vnumber=\"6\">As therefore ye received Christ Jesus the Lord, [so] walk in him,</VERS>\r\n      <VERS vnumber=\"7\">rooted and builded up in him, and established in your faith, even as ye were taught, abounding in thanksgiving.</VERS>\r\n      <VERS vnumber=\"8\">Take heed lest there shall be any one that maketh spoil of you through his philosophy and vain deceit, after the tradition of men, after the rudiments of the world, and not after Christ:</VERS>\r\n      <VERS vnumber=\"9\">for in him dwelleth all the fulness of the Godhead bodily,</VERS>\r\n      <VERS vnumber=\"10\">and in him ye are made full, who is the head of all principality and power:</VERS>\r\n      <VERS vnumber=\"11\">in whom ye were also circumcised with a circumcision not made with hands, in the putting off of the body of the flesh, in the circumcision of Christ;</VERS>\r\n      <VERS vnumber=\"12\">having been buried with him in baptism, wherein ye were also raised with him through faith in the working of God, who raised him from the dead.</VERS>\r\n      <VERS vnumber=\"13\">And you, being dead through your trespasses and the uncircumcision of your flesh, you, [I say], did he make alive together with him, having forgiven us all our trespasses;</VERS>\r\n      <VERS vnumber=\"14\">having blotted out the bond written in ordinances that was against us, which was contrary to us: and he hath taken it out that way, nailing it to the cross;</VERS>\r\n      <VERS vnumber=\"15\">having despoiled the principalities and the powers, he made a show of them openly, triumphing over them in it.</VERS>\r\n      <VERS vnumber=\"16\">Let no man therefore judge you in meat, or in drink, or in respect of a feast day or a new moon or a sabbath day:</VERS>\r\n      <VERS vnumber=\"17\">which are a shadow of the things to come; but the body is Christ`s.</VERS>\r\n      <VERS vnumber=\"18\">Let no man rob you of your prize by a voluntary humility and worshipping of the angels, dwelling in the things which he hath seen, vainly puffed up by his fleshly mind,</VERS>\r\n      <VERS vnumber=\"19\">and not holding fast the Head, from whom all the body, being supplied and knit together through the joints and bands, increasing with the increase of God.</VERS>\r\n      <VERS vnumber=\"20\">If ye died with Christ from the rudiments of the world, why, as though living in the world, do ye subject yourselves to ordinances,</VERS>\r\n      <VERS vnumber=\"21\">Handle not, nor taste, nor touch</VERS>\r\n      <VERS vnumber=\"22\">(all which things are to perish with the using), after the precepts and doctrines of men?</VERS>\r\n      <VERS vnumber=\"23\">Which things have indeed a show of wisdom in will-worship, and humility, and severity to the body; [but are] not of any value against the indulgence of the flesh.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">If then ye were raised together with Christ, seek the things that are above, where Christ is, seated on the right hand of God.</VERS>\r\n      <VERS vnumber=\"2\">Set your mind on the things that are above, not on the things that are upon the earth.</VERS>\r\n      <VERS vnumber=\"3\">For ye died, and your life is hid with Christ in God.</VERS>\r\n      <VERS vnumber=\"4\">When Christ, [who is] our life, shall be manifested, then shall ye also with him be manifested in glory.</VERS>\r\n      <VERS vnumber=\"5\">Put to death therefore your members which are upon the earth: fornication, uncleanness, passion, evil desire, and covetousness, which is idolatry;</VERS>\r\n      <VERS vnumber=\"6\">for which things` sake cometh the wrath of God upon the sons of disobedience:</VERS>\r\n      <VERS vnumber=\"7\">wherein ye also once walked, when ye lived in these things;</VERS>\r\n      <VERS vnumber=\"8\">but now do ye also put them all away: anger, wrath, malice, railing, shameful speaking out of your mouth:</VERS>\r\n      <VERS vnumber=\"9\">lie not one to another; seeing that ye have put off the old man with his doings,</VERS>\r\n      <VERS vnumber=\"10\">and have put on the new man, that is being renewed unto knowledge after the image of him that created him:</VERS>\r\n      <VERS vnumber=\"11\">where there cannot be Greek and Jew, circumcision and uncircumcision, barbarian, Scythian, bondman, freeman; but Christ is all, and in all.</VERS>\r\n      <VERS vnumber=\"12\">Put on therefore, as God`s elect, holy and beloved, a heart of compassion, kindness, lowliness, meekness, longsuffering;</VERS>\r\n      <VERS vnumber=\"13\">forbearing one another, and forgiving each other, if any man have a complaint against any; even as the Lord forgave you, so also do ye:</VERS>\r\n      <VERS vnumber=\"14\">and above all these things [put on] love, which is the bond of perfectness.</VERS>\r\n      <VERS vnumber=\"15\">And let the peace of Christ rule in your hearts, to the which also ye were called in one body; and be ye thankful.</VERS>\r\n      <VERS vnumber=\"16\">Let the word of Christ dwell in you richly; in all wisdom teaching and admonishing one another with psalms [and] hymns [and] spiritual songs, singing with grace in your hearts unto God.</VERS>\r\n      <VERS vnumber=\"17\">And whatsoever ye do, in word or in deed, [do] all in the name of the Lord Jesus, giving thanks to God the Father through him.</VERS>\r\n      <VERS vnumber=\"18\">Wives, be in subjection to your husbands, as is fitting in the Lord.</VERS>\r\n      <VERS vnumber=\"19\">Husbands, love your wives, and be not bitter against them.</VERS>\r\n      <VERS vnumber=\"20\">Children, obey your parents in all things, for this is well-pleasing in the Lord.</VERS>\r\n      <VERS vnumber=\"21\">Fathers, provoke not your children, that they be not discouraged.</VERS>\r\n      <VERS vnumber=\"22\">Servants, obey in all things them that are your masters according to the flesh; not with eye-service, as men-pleasers, but in singleness of heart, fearing the Lord:</VERS>\r\n      <VERS vnumber=\"23\">whatsoever ye do, work heartily, as unto the Lord, and not unto men;</VERS>\r\n      <VERS vnumber=\"24\">knowing that from the Lord ye shall receive the recompense of the inheritance: ye serve the Lord Christ.</VERS>\r\n      <VERS vnumber=\"25\">For he that doeth wrong shall receive again for the wrong that he hath done: and there is no respect of persons.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">Masters, render unto your servants that which is just and equal; knowing that ye also have a Master in heaven.</VERS>\r\n      <VERS vnumber=\"2\">Continue stedfastly in prayer, watching therein with thanksgiving;</VERS>\r\n      <VERS vnumber=\"3\">withal praying for us also, that God may open unto us a door for the word, to speak the mystery of Christ, for which I am also in bonds;</VERS>\r\n      <VERS vnumber=\"4\">that I may make it manifest, as I ought to speak.</VERS>\r\n      <VERS vnumber=\"5\">Walk in wisdom toward them that are without, redeeming the time.</VERS>\r\n      <VERS vnumber=\"6\">Let your speech be always with grace, seasoned with salt, that ye may know how ye ought to answer each one.</VERS>\r\n      <VERS vnumber=\"7\">All my affairs shall Tychicus make known unto you, the beloved brother and faithful minister and fellow-servant in the Lord:</VERS>\r\n      <VERS vnumber=\"8\">whom I have sent you for this very purpose, that ye may know our state, and that he may comfort your hearts;</VERS>\r\n      <VERS vnumber=\"9\">together with Onesimus, the faithful and beloved brother, who is one of you. They shall make known unto you all things that [are done] here.</VERS>\r\n      <VERS vnumber=\"10\">Aristarchus my fellow-prisoner saluteth you, and Mark, the cousin of Barnabas (touching whom ye received commandments; if he come unto you, receive him),</VERS>\r\n      <VERS vnumber=\"11\">and Jesus that is called Justus, who are of the circumcision: these only [are my] fellow-workers unto the kingdom of God, men that have been a comfort unto me.</VERS>\r\n      <VERS vnumber=\"12\">Epaphras, who is one of you, a servant of Christ Jesus, saluteth you, always striving for you in his prayers, that ye may stand perfect and fully assured in all the will of God.</VERS>\r\n      <VERS vnumber=\"13\">For I bear him witness, that he hath much labor for you, and for them in Laodicea, and for them in Hierapolis.</VERS>\r\n      <VERS vnumber=\"14\">Luke, the beloved physician, and Demas salute you.</VERS>\r\n      <VERS vnumber=\"15\">Salute the brethren that are in Laodicea, and Nymphas, and the church that is in their house.</VERS>\r\n      <VERS vnumber=\"16\">And when this epistle hath been read among you, cause that it be read also in the church of the Laodiceans; and that ye also read the epistle from Laodicea.</VERS>\r\n      <VERS vnumber=\"17\">And say to Archippus, Take heed to the ministry which thou hast received in the Lord, that thou fulfil it.</VERS>\r\n      <VERS vnumber=\"18\">The salutation of me Paul with mine own hand. Remember my bonds. Grace be with you.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"52\" bname=\"1 Thessalonians\" bsname=\"1Thess\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">Paul, and Silvanus, and Timothy, unto the church of the Thessalonians in God the Father and the Lord Jesus Christ: Grace to you and peace.</VERS>\r\n      <VERS vnumber=\"2\">We give thanks to God always for you all, making mention [of you] in our prayers;</VERS>\r\n      <VERS vnumber=\"3\">remembering without ceasing your work of faith and labor of love and patience of hope in our Lord Jesus Christ, before our God and Father;</VERS>\r\n      <VERS vnumber=\"4\">knowing, brethren beloved of God, your election,</VERS>\r\n      <VERS vnumber=\"5\">how that our gospel came not unto you in word only, but also in power, and in the Holy Spirit, and [in] much assurance; even as ye know what manner of men we showed ourselves toward you for your sake.</VERS>\r\n      <VERS vnumber=\"6\">And ye became imitators of us, and of the Lord, having received the word in much affliction, with joy of the Holy Spirit;</VERS>\r\n      <VERS vnumber=\"7\">so that ye became an ensample to all that believe in Macedonia and in Achaia.</VERS>\r\n      <VERS vnumber=\"8\">For from you hath sounded forth the word of the Lord, not only in Macedonia and Achaia, but in every place your faith to God-ward is gone forth; so that we need not to speak anything.</VERS>\r\n      <VERS vnumber=\"9\">For they themselves report concerning us what manner of entering in we had unto you; and how ye turned unto God from idols, to serve a living and true God,</VERS>\r\n      <VERS vnumber=\"10\">and to wait for his Son from heaven, whom he raised from the dead, [even] Jesus, who delivereth us from the wrath to come.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">For yourselves, brethren, know our entering in unto you, that it hath not been found vain:</VERS>\r\n      <VERS vnumber=\"2\">but having suffered before and been shamefully treated, as ye know, at Philippi, we waxed bold in our God to speak unto you the gospel of God in much conflict.</VERS>\r\n      <VERS vnumber=\"3\">For our exhortation [is] not of error, nor of uncleanness, nor in guile:</VERS>\r\n      <VERS vnumber=\"4\">but even as we have been approved of God to be intrusted with the gospel, so we speak; not as pleasing men, but God who proveth our hearts.</VERS>\r\n      <VERS vnumber=\"5\">For neither at any time were we found using words of flattery, as ye know, nor a cloak of covetousness, God is witness;</VERS>\r\n      <VERS vnumber=\"6\">nor seeking glory of men, neither from you nor from others, when we might have claimed authority as apostles of Christ.</VERS>\r\n      <VERS vnumber=\"7\">But we were gentle in the midst of you, as when a nurse cherisheth her own children:</VERS>\r\n      <VERS vnumber=\"8\">even so, being affectionately desirous of you, we were well pleased to impart unto you, not the gospel of God only, but also our own souls, because ye were become very dear to us.</VERS>\r\n      <VERS vnumber=\"9\">For ye remember, brethren, our labor and travail: working night and day, that we might not burden any of you, we preached unto you the gospel of God.</VERS>\r\n      <VERS vnumber=\"10\">Ye are witnesses, and God [also], how holily and righteously and unblameably we behaved ourselves toward you that believe:</VERS>\r\n      <VERS vnumber=\"11\">as ye know how we [dealt with] each one of you, as a father with his own children, exhorting you, and encouraging [you], and testifying,</VERS>\r\n      <VERS vnumber=\"12\">to the end that ye should walk worthily of God, who calleth you into his own kingdom and glory.</VERS>\r\n      <VERS vnumber=\"13\">And for this cause we also thank God without ceasing, that, when ye received from us the word of the message, [even the word] of God, ye accepted [it] not [as] the word of men, but, as it is in truth, the word of God, which also worketh in you that believe.</VERS>\r\n      <VERS vnumber=\"14\">For ye, brethren, became imitators of the churches of God which are in Judaea in Christ Jesus: for ye also suffered the same things of your own countrymen, even as they did of the Jews;</VERS>\r\n      <VERS vnumber=\"15\">who both killed the Lord Jesus and the prophets, and drove out us, and pleased not God, and are contrary to all men;</VERS>\r\n      <VERS vnumber=\"16\">forbidding us to speak to the Gentiles that they may be saved; to fill up their sins always: but the wrath is come upon them to the uttermost.</VERS>\r\n      <VERS vnumber=\"17\">But we, brethren, being bereaved of you for a short season, in presence not in heart, endeavored the more exceedingly to see your face with great desire:</VERS>\r\n      <VERS vnumber=\"18\">because we would fain have come unto you, I Paul once and again; and Satan hindered us.</VERS>\r\n      <VERS vnumber=\"19\">For what is our hope, or joy, or crown of glorying? Are not even ye, before our Lord Jesus at his coming?</VERS>\r\n      <VERS vnumber=\"20\">For ye are our glory and our joy.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Wherefore when we could no longer forbear, we thought it good to be left behind at Athens alone;</VERS>\r\n      <VERS vnumber=\"2\">and sent Timothy, our brother and God`s minister in the gospel of Christ, to establish you, and to comfort [you] concerning your faith;</VERS>\r\n      <VERS vnumber=\"3\">that no man be moved by these afflictions; for yourselves know that hereunto we are appointed.</VERS>\r\n      <VERS vnumber=\"4\">For verily, when we were with you, we told you beforehand that we are to suffer affliction; even as it came to pass, and ye know.</VERS>\r\n      <VERS vnumber=\"5\">For this cause I also, when I could no longer forbear, sent that I might know your faith, lest by any means the tempter had tempted you, and our labor should be in vain.</VERS>\r\n      <VERS vnumber=\"6\">But when Timothy came even now unto us from you, and brought us glad tidings of your faith and love, and that ye have good remembrance of us always, longing to see us, even as we also [to see] you;</VERS>\r\n      <VERS vnumber=\"7\">for this cause, brethren, we were comforted over you in all our distress and affliction through your faith:</VERS>\r\n      <VERS vnumber=\"8\">for now we live, if ye stand fast in the Lord.</VERS>\r\n      <VERS vnumber=\"9\">For what thanksgiving can we render again unto God for you, for all the joy wherewith we joy for your sakes before our God;</VERS>\r\n      <VERS vnumber=\"10\">night and day praying exceedingly that we may see your face, and may perfect that which is lacking in your faith?</VERS>\r\n      <VERS vnumber=\"11\">Now may our God and Father himself, and our Lord Jesus, direct our way unto you:</VERS>\r\n      <VERS vnumber=\"12\">and the Lord make you to increase and abound in love one toward another, and toward all men, even as we also [do] toward you;</VERS>\r\n      <VERS vnumber=\"13\">to the end he may establish your hearts unblameable in holiness before our God and Father, at the coming of our Lord Jesus with all his saints.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">Finally then, brethren, we beseech and exhort you in the Lord Jesus, that, as ye received of us how ye ought to walk and to please God, even as ye do walk, --that ye abound more and more.</VERS>\r\n      <VERS vnumber=\"2\">For ye know what charge we gave you through the Lord Jesus.</VERS>\r\n      <VERS vnumber=\"3\">For this is the will of God, [even] your sanctification, that ye abstain from fornication;</VERS>\r\n      <VERS vnumber=\"4\">that each one of you know how to possess himself of his own vessel in sanctification and honor,</VERS>\r\n      <VERS vnumber=\"5\">not in the passion of lust, even as the Gentiles who know not God;</VERS>\r\n      <VERS vnumber=\"6\">that no man transgress, and wrong his brother in the matter: because the Lord is an avenger in all these things, as also we forewarned you and testified.</VERS>\r\n      <VERS vnumber=\"7\">For God called us not for uncleanness, but in sanctification.</VERS>\r\n      <VERS vnumber=\"8\">Therefore he that rejecteth, rejecteth not man, but God, who giveth his Holy Spirit unto you.</VERS>\r\n      <VERS vnumber=\"9\">But concerning love of the brethren ye have no need that one write unto you: for ye yourselves are taught of God to love one another;</VERS>\r\n      <VERS vnumber=\"10\">for indeed ye do it toward all the brethren that are in all Macedonia. But we exhort you, brethren, that ye abound more and more;</VERS>\r\n      <VERS vnumber=\"11\">and that ye study to be quiet, and to do your own business, and to work with your hands, even as we charged you;</VERS>\r\n      <VERS vnumber=\"12\">that ye may walk becomingly toward them that are without, and may have need of nothing.</VERS>\r\n      <VERS vnumber=\"13\">But we would not have you ignorant, brethren, concerning them that fall asleep; that ye sorrow not, even as the rest, who have no hope.</VERS>\r\n      <VERS vnumber=\"14\">For if we believe that Jesus died and rose again, even so them also that are fallen asleep in Jesus will God bring with him.</VERS>\r\n      <VERS vnumber=\"15\">For this we say unto you by the word of the Lord, that we that are alive, that are left unto the coming of the Lord, shall in no wise precede them that are fallen asleep.</VERS>\r\n      <VERS vnumber=\"16\">For 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;</VERS>\r\n      <VERS vnumber=\"17\">then we that are alive, that are left, shall together with them be caught up in the clouds, to meet the Lord in the air: and so shall we ever be with the Lord.</VERS>\r\n      <VERS vnumber=\"18\">Wherefore comfort one another with these words.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">But concerning the times and the seasons, brethren, ye have no need that aught be written unto you.</VERS>\r\n      <VERS vnumber=\"2\">For yourselves know perfectly that the day of the Lord so cometh as a thief in the night.</VERS>\r\n      <VERS vnumber=\"3\">When they are saying, Peace and safety, then sudden destruction cometh upon them, as travail upon a woman with child; and they shall in no wise escape.</VERS>\r\n      <VERS vnumber=\"4\">But ye, brethren, are not in darkness, that that day should overtake you as a thief:</VERS>\r\n      <VERS vnumber=\"5\">for ye are all sons of light, and sons of the day: we are not of the night, nor of darkness;</VERS>\r\n      <VERS vnumber=\"6\">so then let us not sleep, as do the rest, but let us watch and be sober.</VERS>\r\n      <VERS vnumber=\"7\">For they that sleep sleep in the night: and they that are drunken are drunken in the night.</VERS>\r\n      <VERS vnumber=\"8\">But let us, since we are of the day, be sober, putting on the breastplate of faith and love; and for a helmet, the hope of salvation.</VERS>\r\n      <VERS vnumber=\"9\">For God appointed us not into wrath, but unto the obtaining of salvation through our Lord Jesus Christ,</VERS>\r\n      <VERS vnumber=\"10\">who died for us, that, whether we wake or sleep, we should live together with him.</VERS>\r\n      <VERS vnumber=\"11\">Wherefore exhort one another, and build each other up, even as also ye do.</VERS>\r\n      <VERS vnumber=\"12\">But we beseech you, brethren, to know them that labor among you, and are over you in the Lord, and admonish you;</VERS>\r\n      <VERS vnumber=\"13\">and to esteem them exceeding highly in love for their work`s sake. Be at peace among yourselves.</VERS>\r\n      <VERS vnumber=\"14\">And we exhort you, brethren, admonish the disorderly, encourage the fainthearted, support the weak, be longsuffering toward all.</VERS>\r\n      <VERS vnumber=\"15\">See that none render unto any one evil for evil; but always follow after that which is good, one toward another, and toward all.</VERS>\r\n      <VERS vnumber=\"16\">Rejoice always;</VERS>\r\n      <VERS vnumber=\"17\">pray without ceasing;</VERS>\r\n      <VERS vnumber=\"18\">in everything give thanks: for this is the will of God in Christ Jesus to you-ward.</VERS>\r\n      <VERS vnumber=\"19\">Quench not the Spirit;</VERS>\r\n      <VERS vnumber=\"20\">despise not prophesyings;</VERS>\r\n      <VERS vnumber=\"21\">prove all things; hold fast that which is good;</VERS>\r\n      <VERS vnumber=\"22\">abstain from every form of evil.</VERS>\r\n      <VERS vnumber=\"23\">And the God of peace himself sanctify you wholly; and may your spirit and soul and body be preserved entire, without blame at the coming of our Lord Jesus Christ.</VERS>\r\n      <VERS vnumber=\"24\">Faithful is he that calleth you, who will also do it.</VERS>\r\n      <VERS vnumber=\"25\">Brethren, pray for us.</VERS>\r\n      <VERS vnumber=\"26\">Salute all the brethren with a holy kiss.</VERS>\r\n      <VERS vnumber=\"27\">I adjure you by the Lord that this epistle be read unto all the brethren.</VERS>\r\n      <VERS vnumber=\"28\">The grace of our Lord Jesus Christ be with you.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"53\" bname=\"2 Thessalonians\" bsname=\"2Thess\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">Paul, and Silvanus, and Timothy, unto the church of the Thessalonians in God our Father and the Lord Jesus Christ;</VERS>\r\n      <VERS vnumber=\"2\">Grace to you and peace from God the Father and the Lord Jesus Christ.</VERS>\r\n      <VERS vnumber=\"3\">We are bound to give thanks to God always to you, brethren, even as it is meet, for that your faith growth exceedingly, and the love of each one of you all toward one another aboundeth;</VERS>\r\n      <VERS vnumber=\"4\">so that we ourselves glory in you in the churches of God for your patience and faith in all your persecutions and in the afflictions which ye endure;</VERS>\r\n      <VERS vnumber=\"5\">[which is] a manifest token of the righteous judgment of God; to the end that ye may be counted worthy of the kingdom of God, for which ye also suffer:</VERS>\r\n      <VERS vnumber=\"6\">if so be that it is righteous thing with God to recompense affliction to them that afflict you,</VERS>\r\n      <VERS vnumber=\"7\">and to you that are afflicted rest with us, at the revelation of the Lord Jesus from heaven with the angels of his power in flaming fire,</VERS>\r\n      <VERS vnumber=\"8\">rendering vengeance to them that know not God, and to them that obey not the gospel of our Lord Jesus:</VERS>\r\n      <VERS vnumber=\"9\">who shall suffer punishment, [even] eternal destruction from the face of the Lord and from the glory of his might,</VERS>\r\n      <VERS vnumber=\"10\">when he shall come to be glorified in his saints, and to be marvelled at in all them that believed (because our testimony unto you was believed) in that day.</VERS>\r\n      <VERS vnumber=\"11\">To which end we also pray always for you, that our God may count you worthy of your calling, and fulfil every desire of goodness and [every] work of faith, with power;</VERS>\r\n      <VERS vnumber=\"12\">that the name of our Lord Jesus may be glorified in you, and ye in him, according to the grace of our God and the Lord Jesus Christ.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">Now we beseech you, brethren, touching the coming of our Lord Jesus Christ, and our gathering together unto him;</VERS>\r\n      <VERS vnumber=\"2\">to the end that ye be not quickly shaken from your mind, nor yet be troubled, either by spirit, or by word, or by epistle as from us, as that the day of the Lord is just at hand;</VERS>\r\n      <VERS vnumber=\"3\">let no man beguile you in any wise: for [it will not be,] except the falling away come first, and the man of sin be revealed, the son of perdition,</VERS>\r\n      <VERS vnumber=\"4\">he that opposeth and exalteth himself against all that is called God or that is worshipped; so that he sitteth in the temple of God, setting himself forth as God.</VERS>\r\n      <VERS vnumber=\"5\">Remember ye not, that, when I was yet with you, I told you these things?</VERS>\r\n      <VERS vnumber=\"6\">And now ye know that which restraineth, to the end that he may be revealed in his own season.</VERS>\r\n      <VERS vnumber=\"7\">For the mystery of lawlessness doth already work: only [there is] one that restraineth now, until he be taken out of the way.</VERS>\r\n      <VERS vnumber=\"8\">And then shall be revealed the lawless one, whom the Lord Jesus shall slay with the breath of his mouth, and bring to nought by the manifestation of his coming;</VERS>\r\n      <VERS vnumber=\"9\">[even he], whose coming is according to the working of Satan with all power and signs and lying wonders,</VERS>\r\n      <VERS vnumber=\"10\">and with all deceit of unrighteousness for them that perish; because they received not the love of the truth, that they might be saved.</VERS>\r\n      <VERS vnumber=\"11\">And for this cause God sendeth them a working of error, that they should believe a lie:</VERS>\r\n      <VERS vnumber=\"12\">that they all might be judged who believed not the truth, but had pleasure in unrighteousness.</VERS>\r\n      <VERS vnumber=\"13\">But we are bound to give thanks to God always for you, brethren beloved of the Lord, for that God chose you from the beginning unto salvation in sanctification of the Spirit and belief of the truth:</VERS>\r\n      <VERS vnumber=\"14\">whereunto he called you through our gospel, to the obtaining of the glory of our Lord Jesus Christ.</VERS>\r\n      <VERS vnumber=\"15\">So then, brethren, stand fast, and hold the traditions which ye were taught, whether by word, or by epistle of ours.</VERS>\r\n      <VERS vnumber=\"16\">Now our Lord Jesus Christ himself, and God our Father who loved us and gave us eternal comfort and good hope through grace,</VERS>\r\n      <VERS vnumber=\"17\">comfort your hearts and establish them in every good work and word.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Finally, brethren, pray for us, that the word of the Lord may run and be glorified, even as also [it is] with you;</VERS>\r\n      <VERS vnumber=\"2\">and that we may be delivered from unreasonable and evil men; for all have not faith.</VERS>\r\n      <VERS vnumber=\"3\">But the Lord is faithful, who shall establish you, and guard you from the evil [one].</VERS>\r\n      <VERS vnumber=\"4\">And we have confidence in the Lord touching you, that ye both do and will do the things which we command.</VERS>\r\n      <VERS vnumber=\"5\">And the Lord direct your hearts into the love of God, and into the patience of Christ.</VERS>\r\n      <VERS vnumber=\"6\">Now 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 they received of us.</VERS>\r\n      <VERS vnumber=\"7\">For yourselves know how ye ought to imitate us: for we behaved not ourselves disorderly among you;</VERS>\r\n      <VERS vnumber=\"8\">neither did we eat bread for nought at any man`s hand, but in labor and travail, working night and day, that we might not burden any of you:</VERS>\r\n      <VERS vnumber=\"9\">not because we have not the right, but to make ourselves and ensample unto you, that ye should imitate us.</VERS>\r\n      <VERS vnumber=\"10\">For even when we were with you, this we commanded you, If any will not work, neither let him eat.</VERS>\r\n      <VERS vnumber=\"11\">For we hear of some that walk among you disorderly, that work not at all, but are busybodies.</VERS>\r\n      <VERS vnumber=\"12\">Now them that are such we command and exhort in the Lord Jesus Christ, that with quietness they work, and eat their own bread.</VERS>\r\n      <VERS vnumber=\"13\">But ye, brethren, be not weary in well-doing.</VERS>\r\n      <VERS vnumber=\"14\">And if any man obeyeth not our word by this epistle, note that man, that ye have no company with him, to the end that he may be ashamed.</VERS>\r\n      <VERS vnumber=\"15\">And [yet] count him not as an enemy, but admonish him as a brother.</VERS>\r\n      <VERS vnumber=\"16\">Now the Lord of peace himself give you peace at all times in all ways. The Lord be with you all.</VERS>\r\n      <VERS vnumber=\"17\">The salutation of me Paul with mine own hand, which is the token in every epistle: so I write.</VERS>\r\n      <VERS vnumber=\"18\">The grace of our Lord Jesus Christ be with you all.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"54\" bname=\"1 Timothy\" bsname=\"1Tim\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">Paul, an apostle of Christ Jesus according to the commandment of God our Saviour, and Christ Jesus our hope;</VERS>\r\n      <VERS vnumber=\"2\">unto Timothy, my true child in faith: Grace, mercy, peace, from God the Father and Christ Jesus our Lord.</VERS>\r\n      <VERS vnumber=\"3\">As I exhorted thee to tarry at Ephesus, when I was going into Macedonia, that thou mightest charge certain men not to teach a different doctrine,</VERS>\r\n      <VERS vnumber=\"4\">neither to give heed to fables and endless genealogies, which minister questionings, rather than a dispensation of God which is in faith; [so do I now].</VERS>\r\n      <VERS vnumber=\"5\">But the end of the charge is love out of a pure heart and a good conscience and faith unfeigned:</VERS>\r\n      <VERS vnumber=\"6\">from which things some having swerved have turned aside unto vain talking;</VERS>\r\n      <VERS vnumber=\"7\">desiring to be teachers of the law, though they understand neither what they say, nor whereof they confidently affirm.</VERS>\r\n      <VERS vnumber=\"8\">But we know that the law is good, if a man use it lawfully,</VERS>\r\n      <VERS vnumber=\"9\">as knowing this, that law is not made for a righteous man, but for the lawless and unruly, for the ungodly and sinners, for the unholy and profane, for murderers of fathers and murderers of mothers, for manslayers,</VERS>\r\n      <VERS vnumber=\"10\">for fornicators, for abusers of themselves with men, for menstealers, for liars, for false swearers, and if there be any other thing contrary to the sound doctrine;</VERS>\r\n      <VERS vnumber=\"11\">according to the gospel of the glory of the blessed God, which was committed to my trust.</VERS>\r\n      <VERS vnumber=\"12\">I thank him that enabled me, [even] Christ Jesus our Lord, for that he counted me faithful, appointing me to [his] service;</VERS>\r\n      <VERS vnumber=\"13\">though I was before a blasphemer, and a persecutor, and injurious: howbeit I obtained mercy, because I did it ignorantly in unbelief;</VERS>\r\n      <VERS vnumber=\"14\">and the grace of our Lord abounded exceedingly with faith and love which is in Christ Jesus.</VERS>\r\n      <VERS vnumber=\"15\">Faithful is the saying, and worthy of all acceptation, that Christ Jesus came into the world to save sinners; of whom I am chief:</VERS>\r\n      <VERS vnumber=\"16\">howbeit for this cause I obtained mercy, that in me as chief might Jesus Christ show forth all his longsuffering, for an ensample of them that should thereafter believe on him unto eternal life.</VERS>\r\n      <VERS vnumber=\"17\">Now unto the King eternal, immortal, invisible, the only God, [be] honor and glory forever and ever. Amen.</VERS>\r\n      <VERS vnumber=\"18\">This charge I commit unto thee, my child Timothy, according to the prophecies which led the way to thee, that by them thou mayest war the good warfare;</VERS>\r\n      <VERS vnumber=\"19\">holding faith and a good conscience; which some having thrust from them made shipwreck concerning the faith:</VERS>\r\n      <VERS vnumber=\"20\">of whom is Hymenaeus and Alexander; whom I delivered unto Satan, that they might be taught not to blaspheme.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">I exhort therefore, first of all, that supplications, prayers, intercessions, thanksgivings, be made for all men;</VERS>\r\n      <VERS vnumber=\"2\">for kings and all that are in high place; that we may lead a tranquil and quiet life in all godliness and gravity.</VERS>\r\n      <VERS vnumber=\"3\">This is good and acceptable in the sight of God our Saviour;</VERS>\r\n      <VERS vnumber=\"4\">who would have all men to be saved, and come to the knowledge of the truth.</VERS>\r\n      <VERS vnumber=\"5\">For there is one God, one mediator also between God and men, [himself] man, Christ Jesus,</VERS>\r\n      <VERS vnumber=\"6\">who gave himself a ransom for all; the testimony [to be borne] in its own times;</VERS>\r\n      <VERS vnumber=\"7\">whereunto I was appointed a preacher and an apostle (I speak the truth, I lie not), a teacher of the Gentiles in faith and truth.</VERS>\r\n      <VERS vnumber=\"8\">I desire therefore that the men pray in every place, lifting up holy hands, without wrath and disputing.</VERS>\r\n      <VERS vnumber=\"9\">In like manner, that women adorn themselves in modest apparel, with shamefastness and sobriety; not with braided hair, and gold or pearls or costly raiment;</VERS>\r\n      <VERS vnumber=\"10\">but (which becometh women professing godliness) through good works.</VERS>\r\n      <VERS vnumber=\"11\">Let a woman learn in quietness with all subjection.</VERS>\r\n      <VERS vnumber=\"12\">But I permit not a woman to teach, nor to have dominion over a man, but to be in quietness.</VERS>\r\n      <VERS vnumber=\"13\">For Adam was first formed, then Eve;</VERS>\r\n      <VERS vnumber=\"14\">and Adam was not beguiled, but the woman being beguiled hath fallen into transgression:</VERS>\r\n      <VERS vnumber=\"15\">but she shall be saved through her child-bearing, if they continue in faith and love and sanctification with sobriety.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Faithful is the saying, If a man seeketh the office of a bishop, he desireth a good work.</VERS>\r\n      <VERS vnumber=\"2\">The bishop therefore must be without reproach, the husband of one wife, temperate, sober-minded, orderly, given to hospitality, apt to teach;</VERS>\r\n      <VERS vnumber=\"3\">no brawler, no striker; but gentle, not contentious, no lover of money;</VERS>\r\n      <VERS vnumber=\"4\">one that ruleth well his own house, having [his] children in subjection with all gravity;</VERS>\r\n      <VERS vnumber=\"5\">(but if a man knoweth not how to rule his own house, how shall he take care of the church of God?)</VERS>\r\n      <VERS vnumber=\"6\">not a novice, lest being puffed up he fall into the condemnation of the devil.</VERS>\r\n      <VERS vnumber=\"7\">Moreover he must have good testimony from them that are without; lest he fall into reproach and the snare of the devil.</VERS>\r\n      <VERS vnumber=\"8\">Deacons in like manner [must be] grave, not double-tongued, not given to much wine, not greedy of filthy lucre;</VERS>\r\n      <VERS vnumber=\"9\">holding the mystery of the faith in a pure conscience.</VERS>\r\n      <VERS vnumber=\"10\">And let these also first be proved; then let them serve as deacons, if they be blameless.</VERS>\r\n      <VERS vnumber=\"11\">Women in like manner [must be] grave, not slanderers, temperate, faithful in all things.</VERS>\r\n      <VERS vnumber=\"12\">Let deacons be husbands of one wife, ruling [their] children and their own houses well.</VERS>\r\n      <VERS vnumber=\"13\">For they that have served well as deacons gain to themselves a good standing, and great boldness in the faith which is in Christ Jesus.</VERS>\r\n      <VERS vnumber=\"14\">These things write I unto thee, hoping to come unto thee shortly;</VERS>\r\n      <VERS vnumber=\"15\">but if I tarry long, that thou mayest know how men ought to behave themselves in the house of God, which is the church of the living God, the pillar and ground of the truth.</VERS>\r\n      <VERS vnumber=\"16\">And without controversy great is the mystery of godliness; He who was manifested in the flesh, Justified in the spirit, Seen of angels, Preached among the nations, Believed on in the world, Received up in glory.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">But the Spirit saith expressly, that in later times some shall fall away from the faith, giving heed to seducing spirits and doctrines of demons,</VERS>\r\n      <VERS vnumber=\"2\">through the hypocrisy of men that speak lies, branded in their own conscience as with a hot iron;</VERS>\r\n      <VERS vnumber=\"3\">forbidding to marry, [and commanding] to abstain from meats, which God created to be received with thanksgiving by them that believe and know the truth.</VERS>\r\n      <VERS vnumber=\"4\">For every creature of God is good, and nothing is to be rejected, if it be received with thanksgiving:</VERS>\r\n      <VERS vnumber=\"5\">for it is sanctified through the word of God and prayer.</VERS>\r\n      <VERS vnumber=\"6\">If thou put the brethren in mind of these things, thou shalt be a good minister of Christ Jesus, nourished in the words of the faith, and of the good doctrine which thou hast followed [until now]:</VERS>\r\n      <VERS vnumber=\"7\">but refuse profane and old wives` fables. And exercise thyself unto godliness:</VERS>\r\n      <VERS vnumber=\"8\">for bodily exercise is profitable for a little; but godliness is profitable for all things, having promise of the life which now is, and of that which is to come.</VERS>\r\n      <VERS vnumber=\"9\">Faithful is the saying, and worthy of all acceptation.</VERS>\r\n      <VERS vnumber=\"10\">For to this end we labor and strive, because we have our hope set on the living God, who is the Saviour of all men, specially of them that believe.</VERS>\r\n      <VERS vnumber=\"11\">These things command and teach.</VERS>\r\n      <VERS vnumber=\"12\">Let no man despise thy youth; but be thou an ensample to them that believe, in word, in manner of life, in love, in faith, in purity.</VERS>\r\n      <VERS vnumber=\"13\">Till I come, give heed to reading, to exhortation, to teaching.</VERS>\r\n      <VERS vnumber=\"14\">Neglect not the gift that is in thee, which was given thee by prophecy, with the laying on of the hands of the presbytery.</VERS>\r\n      <VERS vnumber=\"15\">Be diligent in these things; give thyself wholly to them; that thy progress may be manifest unto all.</VERS>\r\n      <VERS vnumber=\"16\">Take heed to thyself, and to thy teaching. Continue in these things; for in doing this thou shalt save both thyself and them that hear thee.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">Rebuke not an elder, but exhort him as a father; the younger men as brethren:</VERS>\r\n      <VERS vnumber=\"2\">the elder women as mothers; the younger as sisters, in all purity.</VERS>\r\n      <VERS vnumber=\"3\">Honor widows that are widows indeed.</VERS>\r\n      <VERS vnumber=\"4\">But if any widow hath children or grandchildren, let them learn first to show piety towards their own family, and to requite their parents: for this is acceptable in the sight of God.</VERS>\r\n      <VERS vnumber=\"5\">Now she that is a widow indeed, and desolate, hath her hope set on God, and continueth in supplications and prayers night and day.</VERS>\r\n      <VERS vnumber=\"6\">But she that giveth herself to pleasure is dead while she liveth.</VERS>\r\n      <VERS vnumber=\"7\">These things also command, that they may be without reproach.</VERS>\r\n      <VERS vnumber=\"8\">But if any provideth not for his own, and specially his own household, he hath denied the faith, and is worse than an unbeliever.</VERS>\r\n      <VERS vnumber=\"9\">Let none be enrolled as a widow under threescore years old, [having been] the wife of one man,</VERS>\r\n      <VERS vnumber=\"10\">well reported of for good works; if she hath brought up children, if she hath used hospitality to strangers, if she hath washed the saints` feet, if she hath relieved the afflicted, if she hath diligently followed every good work.</VERS>\r\n      <VERS vnumber=\"11\">But younger widows refuse: for when they have waxed wanton against Christ, they desire to marry;</VERS>\r\n      <VERS vnumber=\"12\">having condemnation, because they have rejected their first pledge.</VERS>\r\n      <VERS vnumber=\"13\">And withal they learn also [to be] idle, going about from house to house; and not only idle, but tattlers also and busybodies, speaking things which they ought not.</VERS>\r\n      <VERS vnumber=\"14\">I desire therefore that the younger [widows] marry, bear children, rule the household, give no occasion to the adversary for reviling:</VERS>\r\n      <VERS vnumber=\"15\">for already some are turned aside after Satan.</VERS>\r\n      <VERS vnumber=\"16\">If any woman that believeth hath widows, let her relieve them, and let not the church be burdened; that it mat relieve them that are widows indeed.</VERS>\r\n      <VERS vnumber=\"17\">Let the elders that rule well be counted worthy of double honor, especially those who labor in the word and in teaching.</VERS>\r\n      <VERS vnumber=\"18\">For the scripture saith, Thou shalt not muzzle the ox when he treadeth out the corn. And, The laborer is worthy of his hire.</VERS>\r\n      <VERS vnumber=\"19\">Against an elder receive not an accusation, except at [the mouth of] two or three witnesses.</VERS>\r\n      <VERS vnumber=\"20\">Them that sin reprove in the sight of all, that the rest also may be in fear.</VERS>\r\n      <VERS vnumber=\"21\">I charge [thee] in the sight of God, and Christ Jesus, and the elect angels, that thou observe these things without prejudice, doing nothing by partiality.</VERS>\r\n      <VERS vnumber=\"22\">Lay hands hastily on no man, neither be partaker of other men`s sins: keep thyself pure.</VERS>\r\n      <VERS vnumber=\"23\">Be no longer a drinker of water, but use a little wine for thy stomach`s sake and thine often infirmities.</VERS>\r\n      <VERS vnumber=\"24\">Some men`s sins are evident, going before unto judgment; and some men also they follow after.</VERS>\r\n      <VERS vnumber=\"25\">In like manner also there are good works that are evident; and such as are otherwise cannot be hid.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">Let as many as are servants under the yoke count their own masters worthy of all honor, that the name of God and the doctrine be not blasphemed.</VERS>\r\n      <VERS vnumber=\"2\">And they that have believing masters, let them not despise them, because they are brethren; but let them serve them the rather, because they that partake of the benefit are believing and beloved. These things teach and exhort.</VERS>\r\n      <VERS vnumber=\"3\">If any man teacheth a different doctrine, and consenteth not to sound words, [even] the words of our Lord Jesus Christ, and to the doctrine which is according to godliness;</VERS>\r\n      <VERS vnumber=\"4\">he is puffed up, knowing nothing, but doting about questionings and disputes of words, whereof cometh envy, strife, railings, evil surmisings,</VERS>\r\n      <VERS vnumber=\"5\">wranglings of men corrupted in mind and bereft of the truth, supposing that godliness is a way of gain.</VERS>\r\n      <VERS vnumber=\"6\">But godliness with contentment is great gain:</VERS>\r\n      <VERS vnumber=\"7\">for we brought nothing into the world, for neither can we carry anything out;</VERS>\r\n      <VERS vnumber=\"8\">but having food and covering we shall be therewith content.</VERS>\r\n      <VERS vnumber=\"9\">But they that are minded to be rich fall into a temptation and a snare and many foolish and hurtful lusts, such as drown men in destruction and perdition.</VERS>\r\n      <VERS vnumber=\"10\">For the love of money is a root of all kinds of evil: which some reaching after have been led astray from the faith, and have pierced themselves through with many sorrows.</VERS>\r\n      <VERS vnumber=\"11\">But thou, O man of God, flee these things; and follow after righteousness, godliness, faith, love, patience, meekness.</VERS>\r\n      <VERS vnumber=\"12\">Fight the good fight of the faith, lay hold on the life eternal, whereunto thou wast called, and didst confess the good confession in the sight of many witnesses.</VERS>\r\n      <VERS vnumber=\"13\">I charge thee in the sight of God, who giveth life to all things, and of Christ Jesus, who before Pontius Pilate witnessed the good confession;</VERS>\r\n      <VERS vnumber=\"14\">that thou keep the commandment, without spot, without reproach, until the appearing of our Lord Jesus Christ:</VERS>\r\n      <VERS vnumber=\"15\">which in its own times he shall show, who is the blessed and only Potentate, the King of kings, and Lord of lords;</VERS>\r\n      <VERS vnumber=\"16\">who only hath immortality, dwelling in light unapproachable; whom no man hath seen, nor can see: to whom [be] honor and power eternal. Amen.</VERS>\r\n      <VERS vnumber=\"17\">Charge them that are rich in this present world, that they be not highminded, nor have their hope set on the uncertainty of riches, but on God, who giveth us richly all things to enjoy;</VERS>\r\n      <VERS vnumber=\"18\">that they do good, that they be rich in good works, that they be ready to distribute, willing to communicate;</VERS>\r\n      <VERS vnumber=\"19\">laying up in store for themselves a good foundation against the time to come, that they may lay hold on the life which is [life] indeed.</VERS>\r\n      <VERS vnumber=\"20\">O Timothy, guard that which is committed unto [thee], turning away from the profane babblings and oppositions of the knowledge which is falsely so called;</VERS>\r\n      <VERS vnumber=\"21\">which some professing have erred concerning the faith. Grace be with you.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"55\" bname=\"2 Timothy\" bsname=\"2Tim\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">Paul, an apostle of Christ Jesus through the will of God, according to the promise of the life which is in Christ Jesus,</VERS>\r\n      <VERS vnumber=\"2\">to Timothy, my beloved child: Grace, mercy, peace, from God the Father and Christ Jesus our Lord.</VERS>\r\n      <VERS vnumber=\"3\">I thank God, whom I serve from my forefathers in a pure conscience, how unceasing is my remembrance of thee in my supplications, night and day</VERS>\r\n      <VERS vnumber=\"4\">longing to see thee, remembering thy tears, that I may be filled with joy;</VERS>\r\n      <VERS vnumber=\"5\">having been reminded of the unfeigned faith that is in thee; which dwelt first in thy grandmother Lois, and thy mother Eunice; and, I am persuaded, in thee also.</VERS>\r\n      <VERS vnumber=\"6\">For which cause I put thee in remembrance that thou stir up the gift of God, which is in thee through the laying on of my hands.</VERS>\r\n      <VERS vnumber=\"7\">For God gave us not a spirit of fearfulness; but of power and love and discipline.</VERS>\r\n      <VERS vnumber=\"8\">Be not ashamed therefore of the testimony of our Lord, nor of me his prisoner: but suffer hardship with the gospel according to the power of God;</VERS>\r\n      <VERS vnumber=\"9\">who saved us, and called us with a holy calling, not according to our works, but according to his own purpose and grace, which was given us in Christ Jesus before times eternal,</VERS>\r\n      <VERS vnumber=\"10\">but hath now been manifested by the appearing of our Saviour Christ Jesus, who abolished death, and brought life and immortality to light through the gospel,</VERS>\r\n      <VERS vnumber=\"11\">whereunto I was appointed a preacher, and an apostle, and a teacher.</VERS>\r\n      <VERS vnumber=\"12\">For which cause I suffer also these things: yet I am not ashamed; for I know him whom I have believed, and I am persuaded that he is able to guard that which I have committed unto him against that day.</VERS>\r\n      <VERS vnumber=\"13\">Hold the pattern of sound words which thou hast heard from me, in faith and love which is in Christ Jesus.</VERS>\r\n      <VERS vnumber=\"14\">That good thing which was committed unto [thee] guard through the Holy Spirit which dwelleth in us.</VERS>\r\n      <VERS vnumber=\"15\">This thou knowest, that all that are in Asia turned away from me; of whom are Phygelus and Hermogenes.</VERS>\r\n      <VERS vnumber=\"16\">The Lord grant mercy unto the house of Onesiphorus: for he oft refreshed me, and was not ashamed of my chain;</VERS>\r\n      <VERS vnumber=\"17\">but, when he was in Rome, he sought me diligently, and found me</VERS>\r\n      <VERS vnumber=\"18\">(the Lord grant unto him to find mercy of the Lord in that day); and in how many things he ministered at Ephesus, thou knowest very well.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">Thou therefore, my child, be strengthened in the grace that is in Christ Jesus.</VERS>\r\n      <VERS vnumber=\"2\">And the things which thou hast heard from me among many witnesses, the same commit thou to faithful men, who shall be able to teach others also.</VERS>\r\n      <VERS vnumber=\"3\">Suffer hardship with [me], as a good soldier of Christ Jesus.</VERS>\r\n      <VERS vnumber=\"4\">No soldier on service entangleth himself in the affairs of [this] life; that he may please him who enrolled him as a soldier.</VERS>\r\n      <VERS vnumber=\"5\">And if also a man contend in the games, he is not crowded, except he have contended lawfully.</VERS>\r\n      <VERS vnumber=\"6\">The husbandmen that laboreth must be the first to partake of the fruits.</VERS>\r\n      <VERS vnumber=\"7\">Consider what I say; for the Lord shall give thee understanding in all things.</VERS>\r\n      <VERS vnumber=\"8\">Remember Jesus Christ, risen from the dead, of the seed of David, according to my gospel:</VERS>\r\n      <VERS vnumber=\"9\">wherein I suffer hardship unto bonds, as a malefactor; but the word of God is not bound.</VERS>\r\n      <VERS vnumber=\"10\">Therefore I endure all things for the elect`s sake, that they also may obtain the salvation which is in Christ Jesus with eternal glory.</VERS>\r\n      <VERS vnumber=\"11\">Faithful is the saying: For if we died with him, we shall also live with him:</VERS>\r\n      <VERS vnumber=\"12\">if we endure, we shall also reign with him: if we shall deny him, he also will deny us:</VERS>\r\n      <VERS vnumber=\"13\">if we are faithless, he abideth faithful; for he cannot deny himself.</VERS>\r\n      <VERS vnumber=\"14\">Of these things put them in remembrance, charging [them] in the sight of the Lord, that they strive not about words, to no profit, to the subverting of them that hear.</VERS>\r\n      <VERS vnumber=\"15\">Give diligence to present thyself approved unto God, a workman that needeth not to be ashamed, handling aright the word of truth.</VERS>\r\n      <VERS vnumber=\"16\">But shun profane babblings: for they will proceed further in ungodliness,</VERS>\r\n      <VERS vnumber=\"17\">and their word will eat as doth a gangrene: or whom is Hymenaeus an Philetus;</VERS>\r\n      <VERS vnumber=\"18\">men who concerning the truth have erred, saying that the resurrection is past already, and overthrow the faith of some.</VERS>\r\n      <VERS vnumber=\"19\">Howbeit the firm foundation of God standeth, having this seal, The Lord knoweth them that are his: and, Let every one that nameth the name of the Lord depart from unrighteousness.</VERS>\r\n      <VERS vnumber=\"20\">Now in a great house there are not only vessels of gold and of silver, but also of wood and of earth; and some unto honor, and some unto dishonor.</VERS>\r\n      <VERS vnumber=\"21\">If a man therefore purge himself from these, he shall be a vessel unto honor, sanctified, meet for the master`s use, prepared unto every good work.</VERS>\r\n      <VERS vnumber=\"22\">after righteousness, faith, love, pace, with them that call on the Lord out of a pure heart.</VERS>\r\n      <VERS vnumber=\"23\">But foolish and ignorant questionings refuse, knowing that they gender strifes.</VERS>\r\n      <VERS vnumber=\"24\">And the Lord`s servant must not strive, but be gentle towards all, apt to teach, forbearing,</VERS>\r\n      <VERS vnumber=\"25\">in meekness correcting them that oppose themselves; if peradventure God may give them repentance unto the knowledge of the truth,</VERS>\r\n      <VERS vnumber=\"26\">and they may recover themselves out of the snare of the devil, having been taken captive by him unto his will.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">But know this, that in the last days grievous times shall come.</VERS>\r\n      <VERS vnumber=\"2\">For men shall be lovers of self, lovers of money, boastful, haughty, railers, disobedient to parents, unthankful, unholy,</VERS>\r\n      <VERS vnumber=\"3\">without natural affection, implacable, slanderers, without self-control, fierce, no lovers of good,</VERS>\r\n      <VERS vnumber=\"4\">traitors, headstrong, puffed up, lovers of pleasure rather than lovers of God;</VERS>\r\n      <VERS vnumber=\"5\">holding a form of godliness, but having denied the power therefore. From these also turn away.</VERS>\r\n      <VERS vnumber=\"6\">For of these are they that creep into houses, and take captive silly women laden with sins, led away by divers lusts,</VERS>\r\n      <VERS vnumber=\"7\">ever learning, and never able to come to the knowledge of the truth.</VERS>\r\n      <VERS vnumber=\"8\">And even as Jannes and Jambres withstood Moses, so do these also withstand the truth. Men corrupted in mind, reprobate concerning the faith.</VERS>\r\n      <VERS vnumber=\"9\">But they shall proceed no further. For their folly shall be evident unto all men, as theirs also came to be.</VERS>\r\n      <VERS vnumber=\"10\">But thou didst follow my teaching, conduct, purpose, faith, longsuffering, love, patience,</VERS>\r\n      <VERS vnumber=\"11\">persecutions, sufferings. What things befell me at Antioch, at Iconium, at Lystra; what persecutions I endured. And out of them all the Lord delivered me.</VERS>\r\n      <VERS vnumber=\"12\">Yea, and all that would live godly in Christ Jesus shall suffer persecution.</VERS>\r\n      <VERS vnumber=\"13\">But evil men and impostors shall wax worse and worse, deceiving and being deceived.</VERS>\r\n      <VERS vnumber=\"14\">But abide thou in the things which thou hast learned and hast been assured of, knowing of whom thou hast learned them.</VERS>\r\n      <VERS vnumber=\"15\">And that from a babe thou hast known the sacred writings which are able to make thee wise unto salvation through faith which is in Christ Jesus.</VERS>\r\n      <VERS vnumber=\"16\">Every scripture inspired of God [is] also profitable for teaching, for reproof, for correction, for instruction which is in righteousness.</VERS>\r\n      <VERS vnumber=\"17\">That the man of God may be complete, furnished completely unto every good work.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">I charge [thee] in the sight of God, and of Christ Jesus, who shall judge the living and the dead, and by his appearing and his kingdom:</VERS>\r\n      <VERS vnumber=\"2\">preach the word; be urgent in season, out of season; reprove, rebuke, exhort, with all longsuffering and teaching.</VERS>\r\n      <VERS vnumber=\"3\">For the time will come when they will not endure the sound doctrine; but, having itching ears, will heap to themselves teachers after their own lusts;</VERS>\r\n      <VERS vnumber=\"4\">and will turn away their ears from the truth, and turn aside unto fables.</VERS>\r\n      <VERS vnumber=\"5\">But be thou sober in all things, suffer hardship, do the work of an evangelist, fulfil thy ministry.</VERS>\r\n      <VERS vnumber=\"6\">For I am already being offered, and the time of my departure is come.</VERS>\r\n      <VERS vnumber=\"7\">I have fought the good fight, I have finished the course, I have kept the faith:</VERS>\r\n      <VERS vnumber=\"8\">henceforth there is laid up for me the crown of righteousness, which the Lord, the righteous judge, shall give to me at that day; and not to me only, but also to all them that have loved his appearing.</VERS>\r\n      <VERS vnumber=\"9\">Give diligence to come shortly unto me:</VERS>\r\n      <VERS vnumber=\"10\">for Demas forsook me, having loved this present world, and went to Thessalonica; Crescens to Galatia, Titus to Dalmatia.</VERS>\r\n      <VERS vnumber=\"11\">Only Luke is with me. Take Mark, and bring him with thee; for he is useful to me for ministering.</VERS>\r\n      <VERS vnumber=\"12\">But Tychicus I sent to Ephesus.</VERS>\r\n      <VERS vnumber=\"13\">The cloak that I left at Troas with Carpus, bring when thou comest, and the books, especially the parchments.</VERS>\r\n      <VERS vnumber=\"14\">Alexander the coppersmith did me much evil: the Lord will render to him according to his works:</VERS>\r\n      <VERS vnumber=\"15\">of whom do thou also beware; for he greatly withstood our words.</VERS>\r\n      <VERS vnumber=\"16\">At my first defence no one took my part, but all forsook me: may it not be laid to their account.</VERS>\r\n      <VERS vnumber=\"17\">But the Lord stood by me, and strengthened me; that through me the message might me fully proclaimed, and that all the Gentiles might hear: and I was delivered out of the mouth of the lion.</VERS>\r\n      <VERS vnumber=\"18\">The Lord will deliver me from every evil work, and will save me unto his heavenly kingdom: to whom [be] the glory forever and ever. Amen.</VERS>\r\n      <VERS vnumber=\"19\">Salute Prisca and Aquila, and the house of Onesiphorus.</VERS>\r\n      <VERS vnumber=\"20\">Erastus remained at Corinth: but Trophimus I left at Miletus sick.</VERS>\r\n      <VERS vnumber=\"21\">Give diligence to come before winter. Eubulus saluteth thee, and Pudens, and Linus, and Claudia, and all the brethren.</VERS>\r\n      <VERS vnumber=\"22\">The Lord be with thy spirit. Grace be with you.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"56\" bname=\"Titus\" bsname=\"Titus\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">Paul, a servant of God, and an apostle of Jesus Christ, according to the faith of God`s elect, and the knowledge of the truth which is according to godliness,</VERS>\r\n      <VERS vnumber=\"2\">in hope of eternal life, which God, who cannot lie, promised before times eternal;</VERS>\r\n      <VERS vnumber=\"3\">but in his own seasons manifested his word in the message, wherewith I was intrusted according to the commandment of God our Saviour;</VERS>\r\n      <VERS vnumber=\"4\">to Titus, my true child after a common faith: Grace and peace from God the Father and Christ Jesus our Saviour.</VERS>\r\n      <VERS vnumber=\"5\">For this cause left I thee in Crete, that thou shouldest set in order the things that were wanting, and appoint elders in every city, as I gave thee charge;</VERS>\r\n      <VERS vnumber=\"6\">if any man is blameless, the husband of one wife, having children that believe, who are not accused of riot or unruly.</VERS>\r\n      <VERS vnumber=\"7\">For the bishop must be blameless, as God`s steward; not self-willed, not soon angry, no brawler, no striker, not greedy of filthy lucre;</VERS>\r\n      <VERS vnumber=\"8\">but given to hospitality, as lover of good, sober-minded, just, holy, self-controlled;</VERS>\r\n      <VERS vnumber=\"9\">holding to the faithful word which is according to the teaching, that he may be able to exhort in the sound doctrine, and to convict the gainsayers.</VERS>\r\n      <VERS vnumber=\"10\">For there are many unruly men, vain talkers and deceivers, specially they of the circumcision,</VERS>\r\n      <VERS vnumber=\"11\">whose mouths must be stopped; men who overthrow whole houses, teaching things which they ought not, for filthy lucre`s sake.</VERS>\r\n      <VERS vnumber=\"12\">One of themselves, a prophet of their own, said, Cretans are always liars, evil beasts, idle gluttons.</VERS>\r\n      <VERS vnumber=\"13\">This testimony is true. For which cause reprove them sharply, that they may be sound in the faith,</VERS>\r\n      <VERS vnumber=\"14\">not giving heed to Jewish fables, and commandments of men who turn away from the truth.</VERS>\r\n      <VERS vnumber=\"15\">To the pure all things are pure: but to them that are defiled and unbelieving nothing is pure; but both their mind and their conscience are defiled.</VERS>\r\n      <VERS vnumber=\"16\">They profess that they know God; but by their works they deny him, being abominable, and disobedient, and unto every good work reprobate.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">But speak thou the things which befit the sound doctrine:</VERS>\r\n      <VERS vnumber=\"2\">that aged men be temperate, grave, sober-minded, sound in faith, in love, in patience:</VERS>\r\n      <VERS vnumber=\"3\">that aged women likewise be reverent in demeanor, not slanderers nor enslaved to much wine, teachers of that which is good;</VERS>\r\n      <VERS vnumber=\"4\">that they may train the young women to love their husbands, to love their children,</VERS>\r\n      <VERS vnumber=\"5\">[to be] sober-minded, chaste, workers at home, kind, being in subjection to their own husbands, that the word of God be not blasphemed:</VERS>\r\n      <VERS vnumber=\"6\">the younger men likewise exhort to be sober-minded:</VERS>\r\n      <VERS vnumber=\"7\">in all things showing thyself an ensample of good works; in thy doctrine [showing] uncorruptness, gravity,</VERS>\r\n      <VERS vnumber=\"8\">sound speech, that cannot be condemned; that he that is of the contrary part may be ashamed, having no evil thing to say of us.</VERS>\r\n      <VERS vnumber=\"9\">[Exhort] servants to be in subjection to their own masters, [and] to be well-pleasing [to them] in all things; not gainsaying;</VERS>\r\n      <VERS vnumber=\"10\">not purloining, but showing all good fidelity; that they may adorn the doctrine of God our Saviour in all things.</VERS>\r\n      <VERS vnumber=\"11\">For the grace of God hath appeared, bringing salvation to all men,</VERS>\r\n      <VERS vnumber=\"12\">instructing us, to the intent that, denying ungodliness and worldly lusts, we should live soberly and righteously and godly in this present world;</VERS>\r\n      <VERS vnumber=\"13\">looking for the blessed hope and appearing of the glory of the great God and our Saviour Jesus Christ;</VERS>\r\n      <VERS vnumber=\"14\">who gave himself for us, that he might redeem us from all iniquity, and purify unto himself a people for his own possession, zealous of good works.</VERS>\r\n      <VERS vnumber=\"15\">These things speak and exhort and reprove with all authority. Let no man despise thee.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Put them in mind to be in subjection to rulers, to authorities, to be obedient, to be ready unto every good work,</VERS>\r\n      <VERS vnumber=\"2\">to speak evil of no man, not to be contentious, to be gentle, showing all meekness toward all men.</VERS>\r\n      <VERS vnumber=\"3\">For we also once were foolish, disobedient, deceived, serving divers lusts and pleasures, living in malice and envy, hateful, hating one another.</VERS>\r\n      <VERS vnumber=\"4\">But when the kindness of God our Saviour, and his love toward man, appeared,</VERS>\r\n      <VERS vnumber=\"5\">not by works [done] in righteousness, which we did ourselves, but according to his mercy he saved us, through the washing of regeneration and renewing of the Holy Spirit,</VERS>\r\n      <VERS vnumber=\"6\">which he poured out upon us richly, through Jesus Christ our Saviour;</VERS>\r\n      <VERS vnumber=\"7\">that, being justified by his grace, we might be made heirs according to the hope of eternal life.</VERS>\r\n      <VERS vnumber=\"8\">Faithful is the saying, and concerning these things I desire that thou affirm confidently, to the end that they who have believed God may be careful to maintain good works. These things are good and profitable unto men:</VERS>\r\n      <VERS vnumber=\"9\">but shun foolish questionings, and genealogies, and strifes, and fightings about law; for they are unprofitable and vain.</VERS>\r\n      <VERS vnumber=\"10\">A factious man after a first and second admonition refuse;</VERS>\r\n      <VERS vnumber=\"11\">knowing that such a one is perverted, and sinneth, being self-condemned.</VERS>\r\n      <VERS vnumber=\"12\">When I shall send Artemas unto thee, or Tychicus, give diligence to come unto me to Nicopolis: for there I have determined to winter.</VERS>\r\n      <VERS vnumber=\"13\">Set forward Zenas the lawyer and Apollos on their journey diligently, that nothing be wanting unto them.</VERS>\r\n      <VERS vnumber=\"14\">And let our [people] also learn to maintain good works for necessary uses, that they be not unfruitful.</VERS>\r\n      <VERS vnumber=\"15\">All that are with me salute thee. Salute them that love us in faith. Grace be with you all.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"57\" bname=\"Philemon\" bsname=\"Phlm\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">Paul, a prisoner of Christ Jesus, and Timothy our brother, to Philemon our beloved and fellow-worker,</VERS>\r\n      <VERS vnumber=\"2\">and to Apphia our sister, and to Archippus our fellow-soldier, and to the church in thy house:</VERS>\r\n      <VERS vnumber=\"3\">Grace to you and peace from God our Father and the Lord Jesus Christ.</VERS>\r\n      <VERS vnumber=\"4\">I thank my God always, making mention of thee in my prayers,</VERS>\r\n      <VERS vnumber=\"5\">hearing of thy love, and of the faith which thou hast toward the Lord Jesus, and toward all the saints;</VERS>\r\n      <VERS vnumber=\"6\">that the fellowship of thy faith may become effectual, in the knowledge of every good thing which is in you, unto Christ.</VERS>\r\n      <VERS vnumber=\"7\">For I had much joy and comfort in thy love, because the hearts of the saints have been refreshed through thee, brother.</VERS>\r\n      <VERS vnumber=\"8\">Wherefore, though I have all boldness in Christ to enjoin thee that which is befitting,</VERS>\r\n      <VERS vnumber=\"9\">yet for love`s sake I rather beseech, being such a one as Paul the aged, and now a prisoner also of Christ Jesus:</VERS>\r\n      <VERS vnumber=\"10\">I beseech thee for my child, whom I have begotten in my bonds, Onesimus,</VERS>\r\n      <VERS vnumber=\"11\">who once was unprofitable to thee, but now is profitable to thee and to me:</VERS>\r\n      <VERS vnumber=\"12\">whom I have sent back to thee in his own person, that is, my very heart:</VERS>\r\n      <VERS vnumber=\"13\">whom I would fain have kept with me, that in thy behalf he might minister unto me in the bonds of the gospel:</VERS>\r\n      <VERS vnumber=\"14\">but without thy mind I would do nothing; that thy goodness should not be as of necessity, but of free will.</VERS>\r\n      <VERS vnumber=\"15\">For perhaps he was therefore parted [from thee] for a season, that thou shouldest have him for ever;</VERS>\r\n      <VERS vnumber=\"16\">no longer as a servant, but more than a servant, a brother beloved, specially to me, but how much rather to thee, both in the flesh and in the Lord.</VERS>\r\n      <VERS vnumber=\"17\">If then thou countest me a partner, receive him as myself.</VERS>\r\n      <VERS vnumber=\"18\">But if he hath wronged the at all, or oweth [thee] aught, put that to mine account;</VERS>\r\n      <VERS vnumber=\"19\">I Paul write it with mine own hand, I will repay it: that I say not unto thee that thou owest to me even thine own self besides.</VERS>\r\n      <VERS vnumber=\"20\">Yea, brother, let me have joy of thee in the Lord: refresh my heart in Christ.</VERS>\r\n      <VERS vnumber=\"21\">Having confidence in thine obedience I write unto thee, knowing that thou wilt do even beyond what I say.</VERS>\r\n      <VERS vnumber=\"22\">But withal prepare me also a lodging: for I hope that through your prayers I shall be granted unto you.</VERS>\r\n      <VERS vnumber=\"23\">Epaphras, my fellow-prisoner in Christ Jesus, saluteth thee;</VERS>\r\n      <VERS vnumber=\"24\">[and so do] Mark, Aristarchus, Demas, Luke, my fellow-workers.</VERS>\r\n      <VERS vnumber=\"25\">The grace of our Lord Jesus Christ be with your spirit. Amen.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"58\" bname=\"Hebrews\" bsname=\"Heb\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">God, having of old time spoken unto the fathers in the prophets by divers portions and in divers manners,</VERS>\r\n      <VERS vnumber=\"2\">hath at the end of these days spoken unto us in [his] Son, whom he appointed heir of all things, through whom also he made the worlds;</VERS>\r\n      <VERS vnumber=\"3\">who being the effulgence of his glory, and the very image of his substance, and upholding all things by the word of his power, when he had made purification of sins, sat down on the right hand of the Majesty on high;</VERS>\r\n      <VERS vnumber=\"4\">having become by so much better than the angels, as he hath inherited a more excellent name than they.</VERS>\r\n      <VERS vnumber=\"5\">For 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?</VERS>\r\n      <VERS vnumber=\"6\">And when he again bringeth in the firstborn into the world he saith, And let all the angels of God worship him.</VERS>\r\n      <VERS vnumber=\"7\">And of the angels he saith, Who maketh his angels winds, And his ministers a flame a fire:</VERS>\r\n      <VERS vnumber=\"8\">but of the Son [he saith,] Thy throne, O God, is for ever and ever; And the sceptre of uprightness is the sceptre of thy kingdom.</VERS>\r\n      <VERS vnumber=\"9\">Thou hast loved righteousness, and hated iniquity; Therefore God, thy God, hath anointed thee With the oil of gladness above thy fellows.</VERS>\r\n      <VERS vnumber=\"10\">And, Thou, Lord, in the beginning didst lay the foundation of the       earth, And the heavens are the works of thy hands:</VERS>\r\n      <VERS vnumber=\"11\">They shall perish; but thou continuest: And they all shall wax old as doth a garment;</VERS>\r\n      <VERS vnumber=\"12\">And as a mantle shalt thou roll them up, As a garment, and they shall be changed: But thou art the same, And thy years shall not fail.</VERS>\r\n      <VERS vnumber=\"13\">But of which of the angels hath he said at any time, Sit thou on my right hand, Till I make thine enemies the footstool of thy feet?</VERS>\r\n      <VERS vnumber=\"14\">Are they not all ministering spirits, sent forth to do service for the sake of them that shall inherit salvation?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">Therefore we ought to give the more earnest heed to the things that were heard, lest haply we drift away [from them].</VERS>\r\n      <VERS vnumber=\"2\">For if the word spoken through angels proved stedfast, and every transgression and disobedience received a just recompense of reward;</VERS>\r\n      <VERS vnumber=\"3\">how shall we escape, if we neglect so great a salvation? which having at the first been spoken through the Lord, was confirmed unto us by them that heard;</VERS>\r\n      <VERS vnumber=\"4\">God also bearing witness with them, both by signs and wonders, and by manifold powers, and by gifts of the Holy Spirit, according to his own will.</VERS>\r\n      <VERS vnumber=\"5\">For not unto angels did he subject the world to come, whereof we speak.</VERS>\r\n      <VERS vnumber=\"6\">But one hath somewhere testified, saying, What is man, that thou art mindful of him? Or the son of man, that thou visitest him?</VERS>\r\n      <VERS vnumber=\"7\">Thou madest him a little lower than the angels; Thou crownedst him with glory and honor, And didst set him over the works of thy hands:</VERS>\r\n      <VERS vnumber=\"8\">Thou didst put all things in subjection under his feet.     For in that he subjected all things unto him, he left nothing that is not subject to him. But now we see not yet all things subjected to him.</VERS>\r\n      <VERS vnumber=\"9\">But we behold him who hath been made a little lower than the angels, [even] Jesus, because of the suffering of death crowned with glory and honor, that by the grace of God he should taste of death for every [man].</VERS>\r\n      <VERS vnumber=\"10\">For it became him, for whom are all things, and through whom are all things, in bringing many sons unto glory, to make the author of their salvation perfect through sufferings.</VERS>\r\n      <VERS vnumber=\"11\">For both he that sanctifieth and they that are sanctified are all of one: for which cause he is not ashamed to call them brethren,</VERS>\r\n      <VERS vnumber=\"12\">saying, I will declare thy name unto my brethren, In the midst of the congregation will I sing thy praise.</VERS>\r\n      <VERS vnumber=\"13\">And again, I will put my trust in him. And again, Behold, I and the children whom God hath given me.</VERS>\r\n      <VERS vnumber=\"14\">Since then the children are sharers in flesh and blood, he also himself in like manner partook of the same; that through death he might bring to nought him that had the power of death, that is, the devil;</VERS>\r\n      <VERS vnumber=\"15\">and might deliver all them who through fear of death were all their lifetime subject to bondage.</VERS>\r\n      <VERS vnumber=\"16\">For verily not to angels doth he give help, but he giveth help to the seed of Abraham.</VERS>\r\n      <VERS vnumber=\"17\">Wherefore it behooved him in all things to be made like unto his brethren, that he might become a merciful and faithful high priest in things pertaining to God, to make propitiation for the sins of the people.</VERS>\r\n      <VERS vnumber=\"18\">For in that he himself hath suffered being tempted, he is able to succor them that are tempted.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Wherefore, holy brethren, partakers of a heavenly calling, consider the Apostle and High Priest of our confession, [even] Jesus;</VERS>\r\n      <VERS vnumber=\"2\">who was faithful to him that appointed him, as also was Moses in all his house.</VERS>\r\n      <VERS vnumber=\"3\">For he hath been counted worthy of more glory than Moses, by so much as he that built the house hath more honor than the house.</VERS>\r\n      <VERS vnumber=\"4\">For every house is builded by some one; but he that built all things is God.</VERS>\r\n      <VERS vnumber=\"5\">And Moses indeed was faithful in all his house as a servant, for a testimony of those things which were afterward to be spoken;</VERS>\r\n      <VERS vnumber=\"6\">but Christ as a son, over his house; whose house are we, if we hold fast our boldness and the glorying of our hope firm unto the end.</VERS>\r\n      <VERS vnumber=\"7\">Wherefore, even as the Holy Spirit saith, To-day if ye shall hear his voice,</VERS>\r\n      <VERS vnumber=\"8\">Harden not your hearts, as in the provocation, Like as in the day of the trial in the wilderness,</VERS>\r\n      <VERS vnumber=\"9\">Where your fathers tried [me] by proving [me,] And saw my works forty years.</VERS>\r\n      <VERS vnumber=\"10\">Wherefore I was displeased with this generation, And said, They do always err in their heart: But they did not know my ways;</VERS>\r\n      <VERS vnumber=\"11\">As I sware in my wrath, They shall not enter into my rest.</VERS>\r\n      <VERS vnumber=\"12\">Take heed, brethren, lest haply there shall be in any one of you an evil heart of unbelief, in falling away from the living God:</VERS>\r\n      <VERS vnumber=\"13\">but exhort one another day by day, so long as it is called To-day; lest any one of you be hardened by the deceitfulness of sin:</VERS>\r\n      <VERS vnumber=\"14\">for we are become partakers of Christ, if we hold fast the beginning of our confidence firm unto the end:</VERS>\r\n      <VERS vnumber=\"15\">while it is said, To-day if ye shall hear his voice, Harden not your hearts, as in the provocation.</VERS>\r\n      <VERS vnumber=\"16\">For who, when they heard, did provoke? nay, did not all they that came out of Egypt by Moses?</VERS>\r\n      <VERS vnumber=\"17\">And with whom was he displeased forty years? was it not with them that sinned, whose bodies fell in the wilderness?</VERS>\r\n      <VERS vnumber=\"18\">And to whom sware he that they should not enter into his rest, but to them that were disobedient?</VERS>\r\n      <VERS vnumber=\"19\">And we see that they were not able to enter in because of unbelief.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">Let us fear therefore, lest haply, a promise being left of entering into his rest, any one of you should seem to have come short of it.</VERS>\r\n      <VERS vnumber=\"2\">For indeed we have had good tidings preached unto us, even as also they: but the word of hearing did not profit them, because it was not united by faith with them that heard.</VERS>\r\n      <VERS vnumber=\"3\">For we who have believed do enter into that rest; even as he hath said, As I sware in my wrath, They shall not enter into my rest:     although the works were finished from the foundation of the world.</VERS>\r\n      <VERS vnumber=\"4\">For he hath said somewhere of the seventh [day] on this wise, And God rested on the seventh day from all his works;</VERS>\r\n      <VERS vnumber=\"5\">and in this [place] again, They shall not enter into my rest.</VERS>\r\n      <VERS vnumber=\"6\">Seeing therefore it remaineth that some should enter thereinto, and they to whom the good tidings were before preached failed to enter in because of disobedience,</VERS>\r\n      <VERS vnumber=\"7\">he again defineth a certain day, To-day, saying in David so long a time afterward (even as hath been said before), To-day if ye shall hear his voice, Harden not your hearts.</VERS>\r\n      <VERS vnumber=\"8\">For if Joshua had given them rest, he would not have spoken afterward of another day.</VERS>\r\n      <VERS vnumber=\"9\">There remaineth therefore a sabbath rest for the people of God.</VERS>\r\n      <VERS vnumber=\"10\">For he that is entered into his rest hath himself also rested from his works, as God did from his.</VERS>\r\n      <VERS vnumber=\"11\">Let us therefore give diligence to enter into that rest, that no man fall after the same example of disobedience.</VERS>\r\n      <VERS vnumber=\"12\">For the word of God is living, and active, and sharper than any two-edged sword, and piercing even to the dividing of soul and spirit, of both joints and marrow, and quick to discern the thoughts and intents of the heart.</VERS>\r\n      <VERS vnumber=\"13\">And there is no creature that is not manifest in his sight: but all things are naked and laid open before the eyes of him with whom we have to do.</VERS>\r\n      <VERS vnumber=\"14\">Having then a great high priest, who hath passed through the heavens, Jesus the Son of God, let us hold fast our confession.</VERS>\r\n      <VERS vnumber=\"15\">For we have not a high priest that cannot be touched with the feeling of our infirmities; but one that hath been in all points tempted like as [we are, yet] without sin.</VERS>\r\n      <VERS vnumber=\"16\">Let us therefore draw near with boldness unto the throne of grace, that we may receive mercy, and may find grace to help [us] in time of need.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">For every high priest, being taken from among men, is appointed for men in things pertaining to God, that he may offer both gifts and sacrifices for sins:</VERS>\r\n      <VERS vnumber=\"2\">who can bear gently with the ignorant and erring, for that he himself also is compassed with infirmity;</VERS>\r\n      <VERS vnumber=\"3\">and by reason thereof is bound, as for the people, so also for himself, to offer for sins.</VERS>\r\n      <VERS vnumber=\"4\">And no man taketh the honor unto himself, but when he is called of God, even as was Aaron.</VERS>\r\n      <VERS vnumber=\"5\">So Christ also glorified not himself to be made a high priest, but he that spake unto him, Thou art my Son, This day have I begotten thee:</VERS>\r\n      <VERS vnumber=\"6\">as he saith also in another [place,] Thou art a priest for ever After the order of Melchizedek.</VERS>\r\n      <VERS vnumber=\"7\">Who in the days of his flesh, having offered up prayers and supplications with strong crying and tears unto him that was able to save him from death, and having been heard for his godly fear,</VERS>\r\n      <VERS vnumber=\"8\">though he was a Son, yet learned obedience by the things which he suffered;</VERS>\r\n      <VERS vnumber=\"9\">and having been made perfect, he became unto all them that obey him the author of eternal salvation;</VERS>\r\n      <VERS vnumber=\"10\">named of God a high priest after the order of Melchizedek.</VERS>\r\n      <VERS vnumber=\"11\">Of whom we have many things to say, and hard of interpretation, seeing ye are become dull of hearing.</VERS>\r\n      <VERS vnumber=\"12\">For when by reason of the time ye ought to be teachers, ye have need again that some one teach you the rudiments of the first principles of the oracles of God; and are become such as have need of milk, and not of solid food.</VERS>\r\n      <VERS vnumber=\"13\">For every one that partaketh of milk is without experience of the word of righteousness; for he is a babe.</VERS>\r\n      <VERS vnumber=\"14\">But solid food is for fullgrown men, [even] those who by reason of use have their senses exercised to discern good and evil.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">Wherefore leaving the doctrine of the first principles of Christ, let us press on unto perfection; not laying again a foundation of repentance from dead works, and of faith toward God,</VERS>\r\n      <VERS vnumber=\"2\">of the teaching of baptisms, and of laying on of hands, and of resurrection of the dead, and of eternal judgment.</VERS>\r\n      <VERS vnumber=\"3\">And this will we do, if God permit.</VERS>\r\n      <VERS vnumber=\"4\">For as touching those who were once enlightened and tasted of the heavenly gift, and were made partakers of the Holy Spirit,</VERS>\r\n      <VERS vnumber=\"5\">and tasted the good word of God, and the powers of the age to come,</VERS>\r\n      <VERS vnumber=\"6\">and [then] fell away, it is impossible to renew them again unto repentance; seeing they crucify to themselves the Son of God afresh, and put him to an open shame.</VERS>\r\n      <VERS vnumber=\"7\">For the land which hath drunk the rain that cometh oft upon it, and bringeth forth herbs meet for them for whose sake it is also tilled, receiveth blessing from God:</VERS>\r\n      <VERS vnumber=\"8\">but if it beareth thorns and thistles, it is rejected and nigh unto a curse; whose end is to be burned.</VERS>\r\n      <VERS vnumber=\"9\">But, beloved, we are persuaded better things of you, and things that accompany salvation, though we thus speak:</VERS>\r\n      <VERS vnumber=\"10\">for God is not unrighteous to forget your work and the love which ye showed toward his name, in that ye ministered unto the saints, and still do minister.</VERS>\r\n      <VERS vnumber=\"11\">And we desire that each one of you may show the same diligence unto the fulness of hope even to the end:</VERS>\r\n      <VERS vnumber=\"12\">that ye be not sluggish, but imitators of them who through faith and patience inherit the promises.</VERS>\r\n      <VERS vnumber=\"13\">For when God made promise to Abraham, since he could swear by none greater, he sware by himself,</VERS>\r\n      <VERS vnumber=\"14\">saying, Surely blessing I will bless thee, and multiplying I will multiply thee.</VERS>\r\n      <VERS vnumber=\"15\">And thus, having patiently endured, he obtained the promise.</VERS>\r\n      <VERS vnumber=\"16\">For men swear by the greater: and in every dispute of theirs the oath is final for confirmation.</VERS>\r\n      <VERS vnumber=\"17\">Wherein God, being minded to show more abundantly unto the heirs of the promise the immutability of his counsel, interposed with an oath;</VERS>\r\n      <VERS vnumber=\"18\">that by two immutable things, in which it is impossible for God to lie, we may have a strong encouragement, who have fled for refuge to lay hold of the hope set before us:</VERS>\r\n      <VERS vnumber=\"19\">which we have as an anchor of the soul, [a hope] both sure and stedfast and entering into that which is within the veil;</VERS>\r\n      <VERS vnumber=\"20\">whither as a forerunner Jesus entered for us, having become a high priest for ever after the order of Melchizedek.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">For this Melchizedek, king of Salem, priest of God Most High, who met Abraham returning from the slaughter of the kings and blessed him,</VERS>\r\n      <VERS vnumber=\"2\">to whom also Abraham divided a tenth part of all (being first, by interpretation, King of righteousness, and then also King of Salem, which is King of peace;</VERS>\r\n      <VERS vnumber=\"3\">without father, without mother, without genealogy, having neither beginning of days nor end of life, but made like unto the Son of God), abideth a priest continually.</VERS>\r\n      <VERS vnumber=\"4\">Now consider how great this man was, unto whom Abraham, the patriarch, gave a tenth out of the chief spoils.</VERS>\r\n      <VERS vnumber=\"5\">And they indeed of the sons of Levi that receive the priest`s office have commandment to take tithes of the people according to the law, that is, of their brethren, though these have come out of the loins of Abraham:</VERS>\r\n      <VERS vnumber=\"6\">but he whose genealogy is not counted from them hath taken tithes of Abraham, and hath blessed him that hath the promises.</VERS>\r\n      <VERS vnumber=\"7\">But without any dispute the less is blessed of the better.</VERS>\r\n      <VERS vnumber=\"8\">And here men that die receive tithes; but there one, of whom it is witnessed that he liveth.</VERS>\r\n      <VERS vnumber=\"9\">And, so to say, through Abraham even Levi, who receiveth tithes, hath paid tithes;</VERS>\r\n      <VERS vnumber=\"10\">for he was yet in the loins of his father, when Melchizedek met him.</VERS>\r\n      <VERS vnumber=\"11\">Now if there was perfection through the Levitical priesthood (for under it hath the people received the law), what further need [was there] that another priest should arise after the order of Melchizedek, and not be reckoned after the order of Aaron?</VERS>\r\n      <VERS vnumber=\"12\">For the priesthood being changed, there is made of necessity a change also of the law.</VERS>\r\n      <VERS vnumber=\"13\">For he of whom these things are said belongeth to another tribe, from which no man hath given attendance at the altar.</VERS>\r\n      <VERS vnumber=\"14\">For it is evident that our Lord hath sprung out of Judah; as to which tribe Moses spake nothing concerning priests.</VERS>\r\n      <VERS vnumber=\"15\">And [what we say] is yet more abundantly evident, if after the likeness of Melchizedek there ariseth another priest,</VERS>\r\n      <VERS vnumber=\"16\">who hath been made, not after the law of a carnal commandment, but after the power of an endless life:</VERS>\r\n      <VERS vnumber=\"17\">for it is witnessed [of him,] Thou art a priest for ever After the order of Melchizedek.</VERS>\r\n      <VERS vnumber=\"18\">For there is a disannulling of a foregoing commandment because of its weakness and unprofitableness</VERS>\r\n      <VERS vnumber=\"19\">(for the law made nothing perfect), and a bringing in thereupon of a better hope, through which we draw nigh unto God.</VERS>\r\n      <VERS vnumber=\"20\">And inasmuch as [it is] not without the taking of an oath</VERS>\r\n      <VERS vnumber=\"21\">(for they indeed have been made priests without an oath; but he with an oath by him that saith of him, The Lord sware and will not repent himself, Thou art a priest for ever);</VERS>\r\n      <VERS vnumber=\"22\">by so much also hath Jesus become the surety of a better covenant.</VERS>\r\n      <VERS vnumber=\"23\">And they indeed have been made priests many in number, because that by death they are hindered from continuing:</VERS>\r\n      <VERS vnumber=\"24\">but he, because he abideth for ever, hath his priesthood unchangeable.</VERS>\r\n      <VERS vnumber=\"25\">Wherefore also he is able to save to the uttermost them that draw near unto God through him, seeing he ever liveth to make intercession for them.</VERS>\r\n      <VERS vnumber=\"26\">For such a high priest became us, holy, guileless, undefiled, separated from sinners, and made higher than the heavens;</VERS>\r\n      <VERS vnumber=\"27\">who needeth not daily, like those high priests, to offer up sacrifices, first for his own sins, and then for the [sins] of the people: for this he did once for all, when he offered up himself.</VERS>\r\n      <VERS vnumber=\"28\">For the law appointeth men high priests, having infirmity; but the word of the oath, which was after the law, [appointeth] a Son, perfected for evermore.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">Now in the things which we are saying the chief point [is this]: We have such a high priest, who sat down on the right hand of the throne of the Majesty in the heavens,</VERS>\r\n      <VERS vnumber=\"2\">a minister of the sanctuary, and of the true tabernacle, which the Lord pitched, not man.</VERS>\r\n      <VERS vnumber=\"3\">For every high priest is appointed to offer both gifts and sacrifices: wherefore it is necessary that this [high priest] also have somewhat to offer.</VERS>\r\n      <VERS vnumber=\"4\">Now if he were on earth, he would not be a priest at all, seeing there are those who offer the gifts according to the law;</VERS>\r\n      <VERS vnumber=\"5\">who serve [that which is] a copy and shadow of the heavenly things, even as Moses is warned [of God] when he is about to make the tabernacle: for, See, saith he, that thou make all things according to the pattern that was showed thee in the mount.</VERS>\r\n      <VERS vnumber=\"6\">But now hath he obtained a ministry the more excellent, by so much as he is also the mediator of a better covenant, which hath been enacted upon better promises.</VERS>\r\n      <VERS vnumber=\"7\">For if that first [covenant] had been faultless, then would no place have been sought for a second.</VERS>\r\n      <VERS vnumber=\"8\">For finding fault with them, he saith, Behold, the days come, saith the Lord, That I will make a new covenant with the house of Israel and       with the house of Judah;</VERS>\r\n      <VERS vnumber=\"9\">Not according to the covenant that I made with their       fathers In the day that I took them by the hand to lead them forth out       of the land of Egypt; For they continued not in my covenant, And I regarded them not, saith the Lord.</VERS>\r\n      <VERS vnumber=\"10\">For 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 on their heart also will I write them: And I will be to them a God, And they shall be to me a people:</VERS>\r\n      <VERS vnumber=\"11\">And they shall not teach every man his fellow-citizen, And every man his brother, saying, Know the Lord: For all shall know me, From the least to the greatest of them.</VERS>\r\n      <VERS vnumber=\"12\">For I will be merciful to their iniquities, And their sins will I remember no more.</VERS>\r\n      <VERS vnumber=\"13\">In that he saith, A new [covenant] he hath made the first old. But that which is becoming old and waxeth aged is nigh unto vanishing away.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">Now even a first [covenant] had ordinances of divine service, and its sanctuary, [a sanctuary] of this world.</VERS>\r\n      <VERS vnumber=\"2\">For there was a tabernacle prepared, the first, wherein [were] the candlestick, and the table, and the showbread; which is called the Holy place.</VERS>\r\n      <VERS vnumber=\"3\">And after the second veil, the tabernacle which is called the Holy of holies;</VERS>\r\n      <VERS vnumber=\"4\">having a golden altar of incense, and the ark of the covenant overlaid round about with gold, wherein [was] a golden pot holding the manna, and Aaron`s rod that budded, and the tables of the covenant;</VERS>\r\n      <VERS vnumber=\"5\">and above it cherubim of glory overshadowing the mercy-seat; of which things we cannot now speak severally.</VERS>\r\n      <VERS vnumber=\"6\">Now these things having been thus prepared, the priests go in continually into the first tabernacle, accomplishing the services;</VERS>\r\n      <VERS vnumber=\"7\">but into the second the high priest alone, once in the year, not without blood, which he offereth for himself, and for the errors of the people:</VERS>\r\n      <VERS vnumber=\"8\">the Holy Spirit this signifying, that the way into the holy place hath not yet been made manifest, while the first tabernacle is yet standing;</VERS>\r\n      <VERS vnumber=\"9\">which [is] a figure for the time present; according to which are offered both gifts and sacrifices that cannot, as touching the conscience, make the worshipper perfect,</VERS>\r\n      <VERS vnumber=\"10\">[being] only (with meats and drinks and divers washings) carnal ordinances, imposed until a time of reformation.</VERS>\r\n      <VERS vnumber=\"11\">But Christ having come a high priest of the good things to come, through the greater and more perfect tabernacle, not made with hands, that is to say, not of this creation,</VERS>\r\n      <VERS vnumber=\"12\">nor yet through the blood of goats and calves, but through his own blood, entered in once for all into the holy place, having obtained eternal redemption.</VERS>\r\n      <VERS vnumber=\"13\">For if the blood of goats and bulls, and the ashes of a heifer sprinkling them that have been defiled, sanctify unto the cleanness of the flesh:</VERS>\r\n      <VERS vnumber=\"14\">how much more shall the blood of Christ, who through the eternal Spirit offered himself without blemish unto God, cleanse your conscience from dead works to serve the living God?</VERS>\r\n      <VERS vnumber=\"15\">And for this cause he is the mediator of a new covenant, that a death having taken place for the redemption of the transgressions that were under the first covenant, they that have been called may receive the promise of the eternal inheritance.</VERS>\r\n      <VERS vnumber=\"16\">For where a testament is, there must of necessity be the death of him that made it.</VERS>\r\n      <VERS vnumber=\"17\">For a testament is of force where there hath been death: for it doth never avail while he that made it liveth.</VERS>\r\n      <VERS vnumber=\"18\">Wherefore even the first [covenant] hath not been dedicated without blood.</VERS>\r\n      <VERS vnumber=\"19\">For when every commandment had been spoken by Moses unto all the people according to the law, he took the blood of the calves and the goats, with water and scarlet wool and hyssop, and sprinkled both the book itself and all the people,</VERS>\r\n      <VERS vnumber=\"20\">saying, This is the blood of the covenant which God commanded to you-ward.</VERS>\r\n      <VERS vnumber=\"21\">Moreover the tabernacle and all the vessels of the ministry he sprinkled in like manner with the blood.</VERS>\r\n      <VERS vnumber=\"22\">And according to the law, I may almost say, all things are cleansed with blood, and apart from shedding of blood there is no remission.</VERS>\r\n      <VERS vnumber=\"23\">It was necessary therefore that the copies of the things in the heavens should be cleansed with these; but the heavenly things themselves with better sacrifices than these.</VERS>\r\n      <VERS vnumber=\"24\">For Christ entered not into a holy place made with hands, like in pattern to the true; but into heaven itself, now to appear before the face of God for us:</VERS>\r\n      <VERS vnumber=\"25\">nor yet that he should offer himself often, as the high priest entereth into the holy place year by year with blood not his own;</VERS>\r\n      <VERS vnumber=\"26\">else must he often have suffered since the foundation of the world: but now once at the end of the ages hath he been manifested to put away sin by the sacrifice of himself.</VERS>\r\n      <VERS vnumber=\"27\">And inasmuch as it is appointed unto men once to die, and after this [cometh] judgment;</VERS>\r\n      <VERS vnumber=\"28\">so Christ also, having been once offered to bear the sins of many, shall appear a second time, apart from sin, to them that wait for him, unto salvation.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">For the law having a shadow of the good [things] to come, not the very image of the things, can never with the same sacrifices year by year, which they offer continually, make perfect them that draw nigh.</VERS>\r\n      <VERS vnumber=\"2\">Else would they not have ceased to be offered? because the worshippers, having been once cleansed, would have had no more consciousness of sins.</VERS>\r\n      <VERS vnumber=\"3\">But in those [sacrifices] there is a remembrance made of sins year by year.</VERS>\r\n      <VERS vnumber=\"4\">For it is impossible that the blood of bulls and goats should take away sins.</VERS>\r\n      <VERS vnumber=\"5\">Wherefore when he cometh into the world, he saith, Sacrifice and offering thou wouldest not, But a body didst thou prepare for me;</VERS>\r\n      <VERS vnumber=\"6\">In whole burnt offerings and [sacrifices] for sin thou       hadst no pleasure:</VERS>\r\n      <VERS vnumber=\"7\">Then said I, Lo, I am come (In the roll of the book it is       written of me) To do thy will, O God.</VERS>\r\n      <VERS vnumber=\"8\">Saying above, Sacrifices and offerings and whole burnt offerings and [sacrifices] for sin thou wouldest not, neither hadst pleasure therein (the which are offered according to the law),</VERS>\r\n      <VERS vnumber=\"9\">then hath he said, Lo, I am come to do thy will. He taketh away the first, that he may establish the second.</VERS>\r\n      <VERS vnumber=\"10\">By which will we have been sanctified through the offering of the body of Jesus Christ once for all.</VERS>\r\n      <VERS vnumber=\"11\">And every priest indeed standeth day by day ministering and offering oftentimes the same sacrifices, the which can never take away sins:</VERS>\r\n      <VERS vnumber=\"12\">but he, when he had offered one sacrifice for sins for ever, sat down on the right hand of God;</VERS>\r\n      <VERS vnumber=\"13\">henceforth expecting till his enemies be made the footstool of his feet.</VERS>\r\n      <VERS vnumber=\"14\">For by one offering he hath perfected for ever them that are sanctified.</VERS>\r\n      <VERS vnumber=\"15\">And the Holy Spirit also beareth witness to us; for after he hath said,</VERS>\r\n      <VERS vnumber=\"16\">This is the covenant that I will make with them After those days, saith the Lord: I will put my laws on their heart, And upon their mind also will I write them;     [then saith he,]</VERS>\r\n      <VERS vnumber=\"17\">And their sins and their iniquities will I remember no       more.</VERS>\r\n      <VERS vnumber=\"18\">Now where remission of these is, there is no more offering for sin.</VERS>\r\n      <VERS vnumber=\"19\">Having therefore, brethren, boldness to enter into the holy place by the blood of Jesus,</VERS>\r\n      <VERS vnumber=\"20\">by the way which he dedicated for us, a new and living way, through the veil, that is to say, his flesh;</VERS>\r\n      <VERS vnumber=\"21\">and [having] a great priest over the house of God;</VERS>\r\n      <VERS vnumber=\"22\">let us draw near with a true heart in fulness of faith, having our hearts sprinkled from an evil conscience: and having our body washed with pure water,</VERS>\r\n      <VERS vnumber=\"23\">let us hold fast the confession of our hope that it waver not; for he is faithful that promised:</VERS>\r\n      <VERS vnumber=\"24\">and let us consider one another to provoke unto love and good works;</VERS>\r\n      <VERS vnumber=\"25\">not forsaking our own assembling together, as the custom of some is, but exhorting [one another]; and so much the more, as ye see the day drawing nigh.</VERS>\r\n      <VERS vnumber=\"26\">For if we sin wilfully after that we have received the knowledge of the truth, there remaineth no more a sacrifice for sins,</VERS>\r\n      <VERS vnumber=\"27\">but a certain fearful expectation of judgment, and a fierceness of fire which shall devour the adversaries.</VERS>\r\n      <VERS vnumber=\"28\">A man that hath set at nought Moses law dieth without compassion on [the word of] two or three witnesses:</VERS>\r\n      <VERS vnumber=\"29\">of how much sorer punishment, think ye, shall he be judged 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?</VERS>\r\n      <VERS vnumber=\"30\">For we know him that said, Vengeance belongeth unto me, I will recompense. And again, The Lord shall judge his people.</VERS>\r\n      <VERS vnumber=\"31\">It is a fearful thing to fall into the hands of the living God.</VERS>\r\n      <VERS vnumber=\"32\">But call to remembrance the former days, in which, after ye were enlightened, ye endured a great conflict of sufferings;</VERS>\r\n      <VERS vnumber=\"33\">partly, being made a gazingstock both by reproaches and afflictions; and partly, becoming partakers with them that were so used.</VERS>\r\n      <VERS vnumber=\"34\">For ye both had compassion on them that were in bonds, and took joyfully the spoiling of you possessions, knowing that ye have for yourselves a better possession and an abiding one.</VERS>\r\n      <VERS vnumber=\"35\">Cast not away therefore your boldness, which hath great recompense of reward.</VERS>\r\n      <VERS vnumber=\"36\">For ye have need of patience, that, having done the will of God, ye may receive the promise.</VERS>\r\n      <VERS vnumber=\"37\">For yet a very little while, He that cometh shall come, and shall not tarry.</VERS>\r\n      <VERS vnumber=\"38\">But my righteous one shall live by faith: And if he shrink back, my soul hath no pleasure in him.</VERS>\r\n      <VERS vnumber=\"39\">But we are not of them that shrink back unto perdition; but of them that have faith unto the saving of the soul.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">Now faith is assurance of [things] hoped for, a conviction of things not seen.</VERS>\r\n      <VERS vnumber=\"2\">For therein the elders had witness borne to them.</VERS>\r\n      <VERS vnumber=\"3\">By faith we understand that the worlds have been framed by the word of God, so that what is seen hath not been made out of things which appear.</VERS>\r\n      <VERS vnumber=\"4\">By faith Abel offered unto God a more excellent sacrifice than Cain, through which he had witness borne to him that he was righteous, God bearing witness in respect of his gifts: and through it he being dead yet speaketh.</VERS>\r\n      <VERS vnumber=\"5\">By faith Enoch was translated that he should not see death; and he was not found, because God translated him: for he hath had witness borne to him that before his translation he had been well-pleasing unto God:</VERS>\r\n      <VERS vnumber=\"6\">And without faith it is impossible to be well-pleasing [unto him]; for he that cometh to God must believe that he is, and [that] he is a rewarder of them that seek after him.</VERS>\r\n      <VERS vnumber=\"7\">By faith Noah, being warned [of God] concerning things not seen as yet, moved with godly fear, prepared an ark to the saving of his house; through which he condemned the world, and became heir of the righteousness which is according to faith.</VERS>\r\n      <VERS vnumber=\"8\">By faith Abraham, when he was called, obeyed to go out unto a place which he was to receive for an inheritance; and he went out, not knowing whither he went.</VERS>\r\n      <VERS vnumber=\"9\">By faith he became a sojourner in the land of promise, as in a [land] not his own, dwelling in tents, with Isaac and Jacob, the heirs with him of the same promise:</VERS>\r\n      <VERS vnumber=\"10\">for he looked for the city which hath the foundations, whose builder and maker is God.</VERS>\r\n      <VERS vnumber=\"11\">By faith even Sarah herself received power to conceive seed when she was past age, since she counted him faithful who had promised:</VERS>\r\n      <VERS vnumber=\"12\">wherefore also there sprang of one, and him as good as dead, [so many] as the stars of heaven in multitude, and as the sand, which is by the sea-shore, innumerable.</VERS>\r\n      <VERS vnumber=\"13\">These all died in faith, not having received the promises, but having seen them and greeted them from afar, and having confessed that they were strangers and pilgrims on the earth.</VERS>\r\n      <VERS vnumber=\"14\">For they that say such things make it manifest that they are seeking after a country of their own.</VERS>\r\n      <VERS vnumber=\"15\">And if indeed they had been mindful of that [country] from which they went out, they would have had opportunity to return.</VERS>\r\n      <VERS vnumber=\"16\">But now they desire a better [country], that is, a heavenly: wherefore God is not ashamed of them, to be called their God; for he hath prepared for them a city.</VERS>\r\n      <VERS vnumber=\"17\">By faith Abraham, being tried, offered up Isaac: yea, he that had gladly received the promises was offering up his only begotten [son];</VERS>\r\n      <VERS vnumber=\"18\">even he to whom it was said, In Isaac shall thy seed be called:</VERS>\r\n      <VERS vnumber=\"19\">accounting that God [is] able to raise up, even from the dead; from whence he did also in a figure receive him back.</VERS>\r\n      <VERS vnumber=\"20\">By faith Isaac blessed Jacob and Esau, even concerning things to come.</VERS>\r\n      <VERS vnumber=\"21\">By faith Jacob, when he was dying, blessed each of the sons of Joseph; and worshipped, [leaning] upon the top of his staff.</VERS>\r\n      <VERS vnumber=\"22\">By faith Joseph, when his end was nigh, made mention of the departure of the children of Israel; and gave commandment concerning his bones.</VERS>\r\n      <VERS vnumber=\"23\">By faith Moses, when he was born, was hid three months by his parents, because they saw he was a goodly child; and they were not afraid of the king`s commandment.</VERS>\r\n      <VERS vnumber=\"24\">By faith Moses, when he was grown up, refused to be called the son of Pharaoh`s daughter;</VERS>\r\n      <VERS vnumber=\"25\">choosing rather to share ill treatment with the people of God, than to enjoy the pleasures of sin for a season;</VERS>\r\n      <VERS vnumber=\"26\">accounting the reproach of Christ greater riches than the treasures of Egypt: for he looked unto the recompense of reward.</VERS>\r\n      <VERS vnumber=\"27\">By faith he forsook Egypt, not fearing the wrath of the king: for he endured, as seeing him who is invisible.</VERS>\r\n      <VERS vnumber=\"28\">By faith he kept the passover, and the sprinkling of the blood, that the destroyer of the firstborn should not touch them.</VERS>\r\n      <VERS vnumber=\"29\">By faith they passed through the Red sea as by dry land: which the Egyptians assaying to do were swallowed up.</VERS>\r\n      <VERS vnumber=\"30\">By faith the walls of Jericho fell down, after they had been compassed about for seven days.</VERS>\r\n      <VERS vnumber=\"31\">By faith Rahab the harlot perished not with them that were disobedient, having received the spies with peace.</VERS>\r\n      <VERS vnumber=\"32\">And what shall I more say? for the time will fail me if I tell of Gideon, Barak, Samson, Jephthah; of David and Samuel and the prophets:</VERS>\r\n      <VERS vnumber=\"33\">who through faith subdued kingdoms, wrought righteousness, obtained promises, stopped the mouths of lions,</VERS>\r\n      <VERS vnumber=\"34\">quenched the power of fire, escaped the edge of the sword, from weakness were made strong, waxed mighty in war, turned to flight armies of aliens.</VERS>\r\n      <VERS vnumber=\"35\">Women received their dead by a resurrection: and others were tortured, not accepting their deliverance; that they might obtain a better resurrection:</VERS>\r\n      <VERS vnumber=\"36\">and others had trial of mockings and scourgings, yea, moreover of bonds and imprisonment:</VERS>\r\n      <VERS vnumber=\"37\">they were stoned, they were sawn asunder, they were tempted, they were slain with the sword: they went about in sheepskins, in goatskins; being destitute, afflicted, ill-treated</VERS>\r\n      <VERS vnumber=\"38\">(of whom the world was not worthy), wandering in deserts and mountains and caves, and the holes of the earth.</VERS>\r\n      <VERS vnumber=\"39\">And these all, having had witness borne to them through their faith, received not the promise,</VERS>\r\n      <VERS vnumber=\"40\">God having provided some better thing concerning us, that apart from us they should not be made perfect.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">Therefore let us also, seeing we are compassed about with so great a cloud of witnesses, 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,</VERS>\r\n      <VERS vnumber=\"2\">looking unto Jesus the author and perfecter of [our] faith, who for the joy that was set before him endured the cross, despising shame, and hath sat down at the right hand of the throne of God.</VERS>\r\n      <VERS vnumber=\"3\">For consider him that hath endured such gainsaying of sinners against himself, that ye wax not weary, fainting in your souls.</VERS>\r\n      <VERS vnumber=\"4\">Ye have not yet resisted unto blood, striving against sin:</VERS>\r\n      <VERS vnumber=\"5\">and ye have forgotten the exhortation which reasoneth with you as with sons, My son, regard not lightly the chastening of the Lord, Nor faint when thou art reproved of him;</VERS>\r\n      <VERS vnumber=\"6\">For whom the Lord loveth he chasteneth, And scourgeth every son whom he receiveth.</VERS>\r\n      <VERS vnumber=\"7\">It is for chastening that ye endure; God dealeth with you as with sons; for what son is there whom [his] father chasteneth not?</VERS>\r\n      <VERS vnumber=\"8\">But if ye are without chastening, whereof all have been made partakers, then are ye bastards, and not sons.</VERS>\r\n      <VERS vnumber=\"9\">Furthermore, we had the fathers of our flesh to chasten us, and we gave them reverence: shall we not much rather be in subjection unto the Father of spirits, and live?</VERS>\r\n      <VERS vnumber=\"10\">For they indeed for a few days chastened [us] as seemed good to them; but he for [our] profit, that [we] may be partakers of his holiness.</VERS>\r\n      <VERS vnumber=\"11\">All chastening seemeth for the present to be not joyous but grievous; yet afterward it yieldeth peaceable fruit unto them that have been exercised thereby, [even the fruit] of righteousness.</VERS>\r\n      <VERS vnumber=\"12\">Wherefore lift up the hands that hang down, and the palsied knees;</VERS>\r\n      <VERS vnumber=\"13\">and make straight paths for your feet, that that which is lame be not turned out of the way, but rather be healed.</VERS>\r\n      <VERS vnumber=\"14\">Follow after peace with all men, and the sanctification without which no man shall see the Lord:</VERS>\r\n      <VERS vnumber=\"15\">looking carefully lest [there be] any man that falleth short of the grace of God; lest any root of bitterness springing up trouble [you], and thereby the many be defiled;</VERS>\r\n      <VERS vnumber=\"16\">lest [there be] any fornication, or profane person, as Esau, who for one mess of meat sold his own birthright.</VERS>\r\n      <VERS vnumber=\"17\">For ye know that even when he afterward desired to inherit the blessing, he was rejected; for he found no place for a change of mind [in his father,] though he sought is diligently with tears.</VERS>\r\n      <VERS vnumber=\"18\">For ye are not come unto [a mount] that might be touched, and that burned with fire, and unto blackness, and darkness, and tempest,</VERS>\r\n      <VERS vnumber=\"19\">and the sound of a trumpet, and the voice of words; which [voice] they that heard entreated that no word more should be spoken unto them;</VERS>\r\n      <VERS vnumber=\"20\">for they could not endure that which was enjoined, If even a beast touch the mountain, it shall be stoned;</VERS>\r\n      <VERS vnumber=\"21\">and so fearful was the appearance, [that] Moses said, I exceedingly fear and quake:</VERS>\r\n      <VERS vnumber=\"22\">but ye are come unto mount Zion, and unto the city of the living God, the heavenly Jerusalem, and to innumerable hosts of angels,</VERS>\r\n      <VERS vnumber=\"23\">to the general assembly and church of the firstborn who are enrolled in heaven, and to God the Judge of all, and to the spirits of just men made perfect,</VERS>\r\n      <VERS vnumber=\"24\">and to Jesus the mediator of a new covenant, and to the blood of sprinkling that speaketh better than [that of] Abel.</VERS>\r\n      <VERS vnumber=\"25\">See that ye refuse not him that speaketh. For if they escaped not when they refused him that warned [them] on earth, much more [shall not] we [escape] who turn away from him that [warneth] from heaven:</VERS>\r\n      <VERS vnumber=\"26\">whose voice then shook the earth: but now he hath promised, saying, Yet once more will I make to tremble not the earth only, but also the heaven.</VERS>\r\n      <VERS vnumber=\"27\">And this [word], Yet once more, signifieth the removing of those things that are shaken, as of things that have been made, that those things which are not shaken may remain.</VERS>\r\n      <VERS vnumber=\"28\">Wherefore, receiving a kingdom that cannot be shaken, let us have grace, whereby we may offer service well-pleasing to God with reverence and awe:</VERS>\r\n      <VERS vnumber=\"29\">for our God is a consuming fire.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">Let love of the brethren continue.</VERS>\r\n      <VERS vnumber=\"2\">Forget not to show love unto strangers: for thereby some have entertained angels unawares.</VERS>\r\n      <VERS vnumber=\"3\">Remember them that are in bonds, as bound with them; them that are illtreated, as being yourselves also in the body.</VERS>\r\n      <VERS vnumber=\"4\">[Let] marriage [be] had in honor among all, and [let] the bed [be] undefiled: for fornicators and adulterers God will judge.</VERS>\r\n      <VERS vnumber=\"5\">Be ye free from the love of money; content with such things as ye have: for himself hath said, I will in no wise fail thee, neither will I in any wise forsake thee.</VERS>\r\n      <VERS vnumber=\"6\">So that with good courage we say, The Lord is my helper; I will not fear: What shall man do unto me?</VERS>\r\n      <VERS vnumber=\"7\">Remember them that had the rule over you, men that spake unto you the word of God; and considering the issue of their life, imitate their faith.</VERS>\r\n      <VERS vnumber=\"8\">Jesus Christ [is] the same yesterday and to-day, [yea] and for ever.</VERS>\r\n      <VERS vnumber=\"9\">Be not carried away by divers and strange teachings: for it is good that the heart be established by grace; not by meats, wherein they that occupied themselves were not profited.</VERS>\r\n      <VERS vnumber=\"10\">We have an altar, whereof they have no right to eat that serve the tabernacle.</VERS>\r\n      <VERS vnumber=\"11\">For the bodies of those beasts whose blood is brought into the holy place by the high priest [as an offering] for sin, are burned without the camp.</VERS>\r\n      <VERS vnumber=\"12\">Wherefore Jesus also, that he might sanctify the people through his own blood, suffered without the gate.</VERS>\r\n      <VERS vnumber=\"13\">Let us therefore go forth unto him without the camp, bearing his reproach.</VERS>\r\n      <VERS vnumber=\"14\">For we have not here an abiding city, but we seek after [the city] which is to come.</VERS>\r\n      <VERS vnumber=\"15\">Through him then let us offer up a sacrifice of praise to God continually, that is, the fruit of lips which make confession to his name.</VERS>\r\n      <VERS vnumber=\"16\">But to do good and to communicate forget not: for with such sacrifices God is well pleased.</VERS>\r\n      <VERS vnumber=\"17\">Obey them that have the rule over you, and submit [to them]: for they watch in behalf of your souls, as they that shall give account; that they may do this with joy, and not with grief: for this [were] unprofitable for you.</VERS>\r\n      <VERS vnumber=\"18\">Pray for us: for we are persuaded that we have a good conscience, desiring to live honorably in all things.</VERS>\r\n      <VERS vnumber=\"19\">And I exhort [you] the more exceedingly to do this, that I may be restored to you the sooner.</VERS>\r\n      <VERS vnumber=\"20\">Now the God of peace, who brought again from the dead the great shepherd of the sheep with the blood of an eternal covenant, [even] our Lord Jesus,</VERS>\r\n      <VERS vnumber=\"21\">make you perfect in every good thing to do his will, working in us that which is well-pleasing in his sight, through Jesus Christ; to whom [be] the glory for ever and ever. Amen.</VERS>\r\n      <VERS vnumber=\"22\">But I exhort you, brethren, bear with the word of exhortation, for I have written unto you in few words.</VERS>\r\n      <VERS vnumber=\"23\">Know ye that our brother Timothy hath been set at liberty; with whom, if he come shortly, I will see you.</VERS>\r\n      <VERS vnumber=\"24\">Salute all them that have the rule over you, and all the saints. They of Italy salute you.</VERS>\r\n      <VERS vnumber=\"25\">Grace be with you all. Amen.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"59\" bname=\"James\" bsname=\"Jas\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">James, a servant of God and of the Lord Jesus Christ, to the twelve tribes which are of the Dispersion, greeting.</VERS>\r\n      <VERS vnumber=\"2\">Count it all joy, my brethren, when ye fall into manifold temptations;</VERS>\r\n      <VERS vnumber=\"3\">Knowing that the proving of your faith worketh patience.</VERS>\r\n      <VERS vnumber=\"4\">And let patience have [its] perfect work, that ye may be perfect and entire, lacking in nothing.</VERS>\r\n      <VERS vnumber=\"5\">But if any of you lacketh wisdom, let him ask of God, who giveth to all liberally and upbraideth not; and it shall be given him.</VERS>\r\n      <VERS vnumber=\"6\">But let him ask in faith, nothing doubting: for he that doubteth is like the surge of the sea driven by the wind and tossed.</VERS>\r\n      <VERS vnumber=\"7\">For let not that man think that he shall receive anything of the Lord;</VERS>\r\n      <VERS vnumber=\"8\">a doubleminded man, unstable in all his ways.</VERS>\r\n      <VERS vnumber=\"9\">But let the brother of low degree glory in his high estate:</VERS>\r\n      <VERS vnumber=\"10\">and the rich, in that he is made low: because as the flower of the grass he shall pass away.</VERS>\r\n      <VERS vnumber=\"11\">For the sun ariseth with the scorching wind, and 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 goings.</VERS>\r\n      <VERS vnumber=\"12\">Blessed is the man that endureth temptation; for when he hath been approved, he shall receive the crown of life, which [the Lord] promised to them that love him.</VERS>\r\n      <VERS vnumber=\"13\">Let no man say when he is tempted, I am tempted of God; for God cannot be tempted with evil, and he himself tempteth no man:</VERS>\r\n      <VERS vnumber=\"14\">but each man is tempted, when he is drawn away by his own lust, and enticed.</VERS>\r\n      <VERS vnumber=\"15\">Then the lust, when it hath conceived, beareth sin: and the sin, when it is fullgrown, bringeth forth death.</VERS>\r\n      <VERS vnumber=\"16\">Be not deceived, my beloved brethren.</VERS>\r\n      <VERS vnumber=\"17\">Every good gift and every perfect gift is from above, coming down from the Father of lights, with whom can be no variation, neither shadow that is cast by turning.</VERS>\r\n      <VERS vnumber=\"18\">Of his own will he brought us forth by the word of truth, that we should be a kind of firstfruits of his creatures.</VERS>\r\n      <VERS vnumber=\"19\">Ye know [this], my beloved brethren. But let every man be swift to hear, slow to speak, slow to wrath:</VERS>\r\n      <VERS vnumber=\"20\">for the wrath of man worketh not the righteousness of God.</VERS>\r\n      <VERS vnumber=\"21\">Wherefore putting away all filthiness and overflowing of wickedness, receive with meekness the implanted word, which is able to save your souls.</VERS>\r\n      <VERS vnumber=\"22\">But be ye doers of the word, and not hearers only, deluding your own selves.</VERS>\r\n      <VERS vnumber=\"23\">For if any one is a hearer of the word and not a doer, he is like unto a man beholding his natural face in a mirror:</VERS>\r\n      <VERS vnumber=\"24\">for he beholdeth himself, and goeth away, and straightway forgetteth what manner of man he was.</VERS>\r\n      <VERS vnumber=\"25\">But he that looketh into the perfect law, the [law] of liberty, and [so] continueth, being not a hearer that forgetteth but a doer that worketh, this man shall be blessed in his doing.</VERS>\r\n      <VERS vnumber=\"26\">If any man thinketh himself to be religious, while he bridleth not his tongue but deceiveth his heart, this man`s religion is vain.</VERS>\r\n      <VERS vnumber=\"27\">Pure religion and undefiled before our God and Father is this, to visit the fatherless and widows in their affliction, [and] to keep oneself unspotted from the world.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">My brethren, hold not the faith of our Lord Jesus Christ, [the Lord] of glory, with respect of persons.</VERS>\r\n      <VERS vnumber=\"2\">For if there come into your synagogue a man with a gold ring, in fine clothing, and there come in also a poor man in vile clothing;</VERS>\r\n      <VERS vnumber=\"3\">and ye have regard to him that weareth the fine clothing, and say, Sit thou here in a good place; and ye say to the poor man, Stand thou there, or sit under my footstool;</VERS>\r\n      <VERS vnumber=\"4\">Do ye not make distinctions among yourselves, and become judges with evil thoughts?</VERS>\r\n      <VERS vnumber=\"5\">Hearken, my beloved brethren; did not God choose them that are poor as to the world [to be] rich in faith, and heirs of the kingdom which he promised to them that love him?</VERS>\r\n      <VERS vnumber=\"6\">But ye have dishonored the poor man. Do not the rich oppress you, and themselves drag you before the judgment-seats?</VERS>\r\n      <VERS vnumber=\"7\">Do not they blaspheme the honorable name by which ye are called?</VERS>\r\n      <VERS vnumber=\"8\">Howbeit if ye fulfil the royal law, according to the scripture, Thou shalt love thy neighbor as thyself, ye do well:</VERS>\r\n      <VERS vnumber=\"9\">but if ye have respect of persons, ye commit sin, being convicted by the law as transgressors.</VERS>\r\n      <VERS vnumber=\"10\">For whosoever shall keep the whole law, and yet stumble in one [point], he is become guilty of all.</VERS>\r\n      <VERS vnumber=\"11\">For he that said, Do not commit adultery, said also, Do not kill. Now if thou dost not commit adultery, but killest, thou art become a transgressor of the law.</VERS>\r\n      <VERS vnumber=\"12\">So speak ye, and so do, as men that are to be judged by a law of liberty.</VERS>\r\n      <VERS vnumber=\"13\">For judgment [is] without mercy to him that hath showed no mercy: mercy glorieth against judgment.</VERS>\r\n      <VERS vnumber=\"14\">What doth it profit, my brethren, if a man say he hath faith, but have not works? can that faith save him?</VERS>\r\n      <VERS vnumber=\"15\">If a brother or sister be naked and in lack of daily food,</VERS>\r\n      <VERS vnumber=\"16\">and one of you say unto them, Go in peace, be ye warmed and filled; and yet ye give them not the things needful to the body; what doth it profit?</VERS>\r\n      <VERS vnumber=\"17\">Even so faith, if it have not works, is dead in itself.</VERS>\r\n      <VERS vnumber=\"18\">Yea, a man will say, Thou hast faith, and I have works: show me thy faith apart from [thy] works, and I by my works will show thee [my] faith.</VERS>\r\n      <VERS vnumber=\"19\">Thou believest that God is one; thou doest well: the demons also believe, and shudder.</VERS>\r\n      <VERS vnumber=\"20\">But wilt thou know, O vain man, that faith apart from works is barren?</VERS>\r\n      <VERS vnumber=\"21\">Was not Abraham our father justified by works, in that he offered up Isaac his son upon the altar?</VERS>\r\n      <VERS vnumber=\"22\">Thou seest that faith wrought with his works, and by works was faith made perfect;</VERS>\r\n      <VERS vnumber=\"23\">and the scripture was fulfilled which saith, And Abraham believed God, and it was reckoned unto him for righteousness; and he was called the friend of God.</VERS>\r\n      <VERS vnumber=\"24\">Ye see that by works a man is justified, and not only by faith.</VERS>\r\n      <VERS vnumber=\"25\">And in like manner was not also Rahab the harlot justified by works, in that she received the messengers, and sent them out another way?</VERS>\r\n      <VERS vnumber=\"26\">For as the body apart from the spirit is dead, even so faith apart from works is dead.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Be not many [of you] teachers, my brethren, knowing that we shall receive heavier judgment.</VERS>\r\n      <VERS vnumber=\"2\">For in many things we all stumble. If any stumbleth not in word, the same is a perfect man, able to bridle the whole body also.</VERS>\r\n      <VERS vnumber=\"3\">Now if we put the horses` bridles into their mouths that they may obey us, we turn about their whole body also.</VERS>\r\n      <VERS vnumber=\"4\">Behold, the ships also, though they are so great and are driven by rough winds, are yet turned about by a very small rudder, whither the impulse of the steersman willeth.</VERS>\r\n      <VERS vnumber=\"5\">So the tongue also is a little member, and boasteth great things. Behold, how much wood is kindled by how small a fire!</VERS>\r\n      <VERS vnumber=\"6\">And the tongue is a fire: the world of iniquity among our members is the tongue, which defileth the whole body, and setteth on fire the wheel of nature, and is set on fire by hell.</VERS>\r\n      <VERS vnumber=\"7\">For every kind of beasts and birds, of creeping things and things in the sea, is tamed, and hath been tamed by mankind.</VERS>\r\n      <VERS vnumber=\"8\">But the tongue can no man tame; [it is] a restless evil, [it is] full of deadly poison.</VERS>\r\n      <VERS vnumber=\"9\">Therewith bless we the Lord and Father; and therewith curse we men, who are made after the likeness of God:</VERS>\r\n      <VERS vnumber=\"10\">out of the same mouth cometh forth blessing and cursing. My brethren, these things ought not so to be.</VERS>\r\n      <VERS vnumber=\"11\">Doth the fountain send forth from the same opening sweet [water] and bitter?</VERS>\r\n      <VERS vnumber=\"12\">Can a fig tree, my brethren, yield olives, or a vine figs? Neither [can] salt water yield sweet.</VERS>\r\n      <VERS vnumber=\"13\">Who is wise and understanding among you? let him show by his good life his works in meekness of wisdom.</VERS>\r\n      <VERS vnumber=\"14\">But if ye have bitter jealousy and faction in your heart, glory not and lie not against the truth.</VERS>\r\n      <VERS vnumber=\"15\">This wisdom is not [a wisdom] that cometh down from above, but is earthly, sensual, devilish.</VERS>\r\n      <VERS vnumber=\"16\">For where jealousy and faction are, there is confusion and every vile deed.</VERS>\r\n      <VERS vnumber=\"17\">But the wisdom that is from above is first pure, then peaceable, gentle, easy to be entreated, full of mercy and good fruits, without variance, without hypocrisy.</VERS>\r\n      <VERS vnumber=\"18\">And the fruit of righteousness is sown in peace for them that make peace.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">Whence [come] wars and whence [come] fightings among you? [come they] not hence, [even] of your pleasures that war in your members?</VERS>\r\n      <VERS vnumber=\"2\">Ye lust, and have not: ye kill, and covet, and cannot obtain: ye fight and war; ye have not, because ye ask not.</VERS>\r\n      <VERS vnumber=\"3\">Ye ask, and receive not, because ye ask amiss, that ye may spend [it] in your pleasures.</VERS>\r\n      <VERS vnumber=\"4\">Ye adulteresses, know ye not that the friendship of the world is enmity with God? Whosoever therefore would be a friend of the world maketh himself an enemy of God.</VERS>\r\n      <VERS vnumber=\"5\">Or think ye that the scripture speaketh in vain? Doth the spirit which he made to dwell in us long unto envying?</VERS>\r\n      <VERS vnumber=\"6\">But he giveth more grace. Wherefore [the scripture] saith, God resisteth the proud, but giveth grace to the humble.</VERS>\r\n      <VERS vnumber=\"7\">Be subject therefore unto God; but resist the devil, and he will flee from you.</VERS>\r\n      <VERS vnumber=\"8\">Draw nigh to God, and he will draw nigh to you. Cleanse your hands, ye sinners; and purify your hearts, ye doubleminded.</VERS>\r\n      <VERS vnumber=\"9\">Be afflicted, and mourn, and weep: let your laughter be turned to mourning, and your joy to heaviness.</VERS>\r\n      <VERS vnumber=\"10\">Humble yourselves in the sight of the Lord, and he shall exalt you.</VERS>\r\n      <VERS vnumber=\"11\">Speak not one against another, brethren. He that speaketh against a brother, or judgeth his brother, speaketh against the law, and judgeth the law: but if thou judgest the law, thou art not a doer of the law, but a judge.</VERS>\r\n      <VERS vnumber=\"12\">One [only] is the lawgiver and judge, [even] he who is able to save and to destroy: but who art thou that judgest thy neighbor?</VERS>\r\n      <VERS vnumber=\"13\">Come now, ye that say, To-day or to-morrow we will go into this city, and spend a year there, and trade, and get gain:</VERS>\r\n      <VERS vnumber=\"14\">whereas ye know not what shall be on the morrow. What is your life? For ye are a vapor, that appeareth for a little time, and then vanisheth away.</VERS>\r\n      <VERS vnumber=\"15\">For that ye ought to say, If the Lord will, we shall both live, and do this or that.</VERS>\r\n      <VERS vnumber=\"16\">But now ye glory in your vauntings: all such glorying is evil.</VERS>\r\n      <VERS vnumber=\"17\">To him therefore that knoweth to do good, and doeth it not, to him it is sin.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">Come now, ye rich, weep and howl for your miseries that are coming upon you.</VERS>\r\n      <VERS vnumber=\"2\">Your riches are corrupted, and your garments are moth-eaten.</VERS>\r\n      <VERS vnumber=\"3\">Your gold and your silver are rusted; and their rust shall be for a testimony against you, and shall eat your flesh as fire. Ye have laid up your treasure in the last days.</VERS>\r\n      <VERS vnumber=\"4\">Behold, the hire of the laborers who mowed your fields, which is of you kept back by fraud, crieth out: and the cries of them that reaped have entered into the ears of the Lord of Sabaoth.</VERS>\r\n      <VERS vnumber=\"5\">Ye have lived delicately on the earth, and taken your pleasure; ye have nourished your hearts in a day of slaughter.</VERS>\r\n      <VERS vnumber=\"6\">Ye have condemned, ye have killed the righteous [one]; he doth not resist you.</VERS>\r\n      <VERS vnumber=\"7\">Be patient therefore, brethren, until the coming of the Lord. Behold, the husbandman waiteth for the precious fruit of the earth, being patient over it, until it receive the early and latter rain.</VERS>\r\n      <VERS vnumber=\"8\">Be ye also patient; establish your hearts: for the coming of the Lord is at hand.</VERS>\r\n      <VERS vnumber=\"9\">Murmur not, brethren, one against another, that ye be not judged: behold, the judge standeth before the doors.</VERS>\r\n      <VERS vnumber=\"10\">Take, brethren, for an example of suffering and of patience, the prophets who spake in the name of the Lord.</VERS>\r\n      <VERS vnumber=\"11\">Behold, we call them blessed that endured: ye have heard of the patience of Job, and have seen the end of the Lord, how that the Lord is full of pity, and merciful.</VERS>\r\n      <VERS vnumber=\"12\">But above all things, my brethren, swear not, neither by the heaven, nor by the earth, nor by any other oath: but let your yea be yea, and your nay, nay; that ye fall not under judgment.</VERS>\r\n      <VERS vnumber=\"13\">Is any among you suffering? Let him pray. Is any cheerful? Let him sing praise.</VERS>\r\n      <VERS vnumber=\"14\">Is any among you sick? 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:</VERS>\r\n      <VERS vnumber=\"15\">and the prayer of faith shall save him that is sick, and the Lord shall raise him up; and if he have committed sins, it shall be forgiven him.</VERS>\r\n      <VERS vnumber=\"16\">Confess therefore your sins one to another, and pray one for another, that ye may be healed. The supplication of a righteous man availeth much in its working.</VERS>\r\n      <VERS vnumber=\"17\">Elijah was a man of like passions with us, and he prayed fervently that it might not rain; and it rained not on the earth for three years and six months.</VERS>\r\n      <VERS vnumber=\"18\">And he prayed again; and the heaven gave rain, and the earth brought forth her fruit.</VERS>\r\n      <VERS vnumber=\"19\">My brethren, if any among you err from the truth, and one convert him;</VERS>\r\n      <VERS vnumber=\"20\">let him know, that he who converteth a sinner from the error of his way shall save a soul from death, and shall cover a multitude of sins.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"60\" bname=\"1 Peter\" bsname=\"1Pet\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">Peter, an apostle of Jesus Christ, to the elect who are sojourners of the Dispersion in Pontus, Galatia, Cappadocia, Asia, and Bithynia,</VERS>\r\n      <VERS vnumber=\"2\">according to the foreknowledge of God the Father, in sanctification of the Spirit, unto obedience and sprinkling of the blood of Jesus Christ: Grace to you and peace be multiplied.</VERS>\r\n      <VERS vnumber=\"3\">Blessed [be] the God and Father of our Lord Jesus Christ, who according to his great mercy begat us again unto a living hope by the resurrection of Jesus Christ from the dead,</VERS>\r\n      <VERS vnumber=\"4\">unto an inheritance incorruptible, and undefiled, and that fadeth not away, reserved in heaven for you,</VERS>\r\n      <VERS vnumber=\"5\">who by the power of God are guarded through faith unto a salvation ready to be revealed in the last time.</VERS>\r\n      <VERS vnumber=\"6\">Wherein ye greatly rejoice, though now for a little while, if need be, ye have been put to grief in manifold trials,</VERS>\r\n      <VERS vnumber=\"7\">that the proof of your faith, [being] more precious than gold that perisheth though it is proved by fire, may be found unto praise and glory and honor at the revelation of Jesus Christ:</VERS>\r\n      <VERS vnumber=\"8\">whom not having seen ye love; on whom, though now ye see him not, yet believing, ye rejoice greatly with joy unspeakable and full of glory:</VERS>\r\n      <VERS vnumber=\"9\">receiving the end of your faith, [even] the salvation of [your] souls.</VERS>\r\n      <VERS vnumber=\"10\">Concerning which salvation the prophets sought and searched diligently, who prophesied of the grace that [should come] unto you:</VERS>\r\n      <VERS vnumber=\"11\">searching what [time] or what manner of time the Spirit of Christ which was in them did point unto, when it testified beforehand the sufferings of Christ, and the glories that should follow them.</VERS>\r\n      <VERS vnumber=\"12\">To whom it was revealed, that not unto themselves, but unto you, did they minister these things, which now have been announced unto you through them that preached the gospel unto you by the Holy Spirit sent forth from heaven; which things angel desire to look into.</VERS>\r\n      <VERS vnumber=\"13\">Wherefore girding up the loins of your mind, be sober and set your hope perfectly on the grace that is to be brought unto you at the revelation of Jesus Christ;</VERS>\r\n      <VERS vnumber=\"14\">as children of obedience, not fashioning yourselves according to your former lusts in [the time of] your ignorance:</VERS>\r\n      <VERS vnumber=\"15\">but like as he who called you is holy, be ye yourselves also holy in all manner of living;</VERS>\r\n      <VERS vnumber=\"16\">because it is written, Ye shall be holy; for I am holy.</VERS>\r\n      <VERS vnumber=\"17\">And if ye call on him as Father, who without respect of persons judgeth according to each man`s work, pass the time of your sojourning in fear:</VERS>\r\n      <VERS vnumber=\"18\">knowing that ye were redeemed, not with corruptible things, with silver or gold, from your vain manner of life handed down from your fathers;</VERS>\r\n      <VERS vnumber=\"19\">but with precious blood, as of a lamb without spot, [even the blood] of Christ:</VERS>\r\n      <VERS vnumber=\"20\">who was foreknown indeed before the foundation of the world, but was manifested at the end of times for your sake,</VERS>\r\n      <VERS vnumber=\"21\">who through him are believers in God, that raised him from the dead, and gave him glory; so that your faith and hope might be in God.</VERS>\r\n      <VERS vnumber=\"22\">Seeing ye have purified your souls in your obedience to the truth unto unfeigned love of the brethren, love one another from the heart fervently:</VERS>\r\n      <VERS vnumber=\"23\">having been begotten again, not of corruptible seed, but of incorruptible, through the word of God, which liveth and abideth.</VERS>\r\n      <VERS vnumber=\"24\">For, All flesh is as grass, And all the glory thereof as the flower of grass. The grass withereth, and the flower falleth:</VERS>\r\n      <VERS vnumber=\"25\">But the word of the Lord abideth for ever. And this is the word of good tidings which was preached unto you.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">Putting away therefore all wickedness, and all guile, and hypocrisies, and envies, and all evil speakings,</VERS>\r\n      <VERS vnumber=\"2\">as newborn babes, long for the spiritual milk which is without guile, that ye may grow thereby unto salvation;</VERS>\r\n      <VERS vnumber=\"3\">if ye have tasted that the Lord is gracious:</VERS>\r\n      <VERS vnumber=\"4\">unto whom coming, a living stone, rejected indeed of men, but with God elect, precious,</VERS>\r\n      <VERS vnumber=\"5\">ye also, as living stones, are built up a spiritual house, to be a holy priesthood, to offer up spiritual sacrifices, acceptable to God through Jesus Christ.</VERS>\r\n      <VERS vnumber=\"6\">Because it is contained in scripture, Behold, I lay in Zion a chief corner stone, elect, precious: And he that believeth on him shall not be put to shame.</VERS>\r\n      <VERS vnumber=\"7\">For you therefore that believe is the preciousness: but for such as disbelieve, The stone which the builders rejected, The same was made the head of the corner;</VERS>\r\n      <VERS vnumber=\"8\">and, A stone of stumbling, and a rock of offence;     for they stumble at the word, being disobedient: whereunto also they were appointed.</VERS>\r\n      <VERS vnumber=\"9\">But ye are a elect race, a royal priesthood, a holy nation, a people for [God`s] own possession, that ye may show forth the excellencies of him who called you out of darkness into his marvellous light:</VERS>\r\n      <VERS vnumber=\"10\">who in time past were no people, but now are the people of God: who had not obtained mercy, but now have obtained mercy.</VERS>\r\n      <VERS vnumber=\"11\">Beloved, I beseech you as sojourners and pilgrims, to abstain from fleshly lust, which war against the soul;</VERS>\r\n      <VERS vnumber=\"12\">having your behavior seemly among the Gentiles; that, wherein they speak against you as evil-doers, they may by your good works, which they behold, glorify God in the day of visitation.</VERS>\r\n      <VERS vnumber=\"13\">Be subject to every ordinance of man for the Lord`s sake: whether to the king, as supreme;</VERS>\r\n      <VERS vnumber=\"14\">or unto governors, as sent by him for vengeance on evil-doers and for praise to them that do well.</VERS>\r\n      <VERS vnumber=\"15\">For so is the will of God, that by well-doing ye should put to silence the ignorance of foolish men:</VERS>\r\n      <VERS vnumber=\"16\">as free, and not using your freedom for a cloak of wickedness, but as bondservants of God.</VERS>\r\n      <VERS vnumber=\"17\">Honor all men. Love the brotherhood. Fear God. Honor the king.</VERS>\r\n      <VERS vnumber=\"18\">Servants, [be] in subjection to your masters with all fear; not only to the good and gentle, but also to the froward.</VERS>\r\n      <VERS vnumber=\"19\">For this is acceptable, if for conscience toward God a man endureth griefs, suffering wrongfully.</VERS>\r\n      <VERS vnumber=\"20\">For what glory is it, if, when ye sin, and are buffeted [for it], ye shall take it patiently? but if, when ye do well, and suffer [for it], ye shall take it patiently, this is acceptable with God.</VERS>\r\n      <VERS vnumber=\"21\">For hereunto were ye called: because Christ also suffered for you, leaving you an example, that ye should follow his steps:</VERS>\r\n      <VERS vnumber=\"22\">who did no sin, neither was guile found in his mouth:</VERS>\r\n      <VERS vnumber=\"23\">who, when he was reviled, reviled not again; when he suffered threatened not; but committed [himself] to him that judgeth righteously:</VERS>\r\n      <VERS vnumber=\"24\">who his own self bare our sins in his body upon the tree, that we, having died unto sins, might live unto righteousness; by whose stripes ye were healed.</VERS>\r\n      <VERS vnumber=\"25\">For ye were going astray like sheep; but are now returned unto the Shepherd and Bishop of your souls.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">In like manner, ye wives, [be] in subjection to your won husbands; that, even if any obey not the word, they may without the word be gained by the behavior of their wives;</VERS>\r\n      <VERS vnumber=\"2\">beholding your chaste behavior [coupled] with fear.</VERS>\r\n      <VERS vnumber=\"3\">Whose [adorning] let it not be the outward adorning of braiding the hair, and of wearing jewels of gold, or of putting on apparel;</VERS>\r\n      <VERS vnumber=\"4\">but [let it be] the hidden man of the heart, in the incorruptible [apparel] of a meek and quiet spirit, which is in the sight of God of great price.</VERS>\r\n      <VERS vnumber=\"5\">For after this manner aforetime the holy women also, who hoped in God, adorned themselves, being in subjection to their own husbands:</VERS>\r\n      <VERS vnumber=\"6\">as Sarah obeyed Abraham, calling him lord: whose children ye now are, if ye do well, and are not put in fear by any terror.</VERS>\r\n      <VERS vnumber=\"7\">Ye husbands, in like manner, dwell with [your wives] according to knowledge, giving honor unto the woman, as unto the weaker vessel, as being also joint-heirs of the grace of life; to the end that your prayers be not hindered.</VERS>\r\n      <VERS vnumber=\"8\">Finally, [be] ye all likeminded, compassionate, loving as brethren, tenderhearted, humbleminded:</VERS>\r\n      <VERS vnumber=\"9\">not rendering evil for evil, or reviling for reviling; but contrariwise blessing; for hereunto were ye called, that ye should inherit a blessing.</VERS>\r\n      <VERS vnumber=\"10\">For, He that would love life, And see good days, Let him refrain his tongue from evil, And his lips that they speak no guile:</VERS>\r\n      <VERS vnumber=\"11\">And let him turn away from evil, and do good; Let him seek peace, and pursue it.</VERS>\r\n      <VERS vnumber=\"12\">For the eyes of the Lord are upon the righteous, And his ears unto their supplication: But the face of the Lord is upon them that do evil.</VERS>\r\n      <VERS vnumber=\"13\">And who is he that will harm you, if ye be zealous of that which is good?</VERS>\r\n      <VERS vnumber=\"14\">But even if ye should suffer for righteousness` sake, blessed [are ye:] and fear not their fear, neither be troubled;</VERS>\r\n      <VERS vnumber=\"15\">but sanctify in your hearts Christ as Lord: [being] ready always to give answer to every man that asketh you a reason concerning the hope that is in you, yet with meekness and fear:</VERS>\r\n      <VERS vnumber=\"16\">having a good conscience; that, wherein ye are spoken against, they may be put to shame who revile your good manner of life in Christ.</VERS>\r\n      <VERS vnumber=\"17\">For it is better, if the will of God should so will, that ye suffer for well-doing than for evil-doing.</VERS>\r\n      <VERS vnumber=\"18\">Because Christ also suffered for sins once, the righteous for the unrighteous, that he might bring us to God; being put to death in the flesh, but made alive in the spirit;</VERS>\r\n      <VERS vnumber=\"19\">in which also he went and preached unto the spirits in prison,</VERS>\r\n      <VERS vnumber=\"20\">that aforetime were disobedient, when the longsuffering of God waited in the days of Noah, while the ark was a preparing, wherein few, that is, eight souls, were saved through water:</VERS>\r\n      <VERS vnumber=\"21\">which also after a true likeness doth now save you, [even] baptism, not the putting away of the filth of the flesh, but the interrogation of a good conscience toward God, through the resurrection of Jesus Christ;</VERS>\r\n      <VERS vnumber=\"22\">who is one the right hand of God, having gone into heaven; angels and authorities and powers being made subject unto him.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">Forasmuch then as Christ suffered in the flesh, arm ye yourselves also with the same mind; for he that hath suffered in the flesh hath ceased from sin;</VERS>\r\n      <VERS vnumber=\"2\">that ye no longer should live the rest of your time in flesh to the lusts of men, but to the will of God.</VERS>\r\n      <VERS vnumber=\"3\">For the time past may suffice to have wrought the desire of the Gentiles, and to have walked in lasciviousness, lusts, winebibbings, revellings, carousings, and abominable idolatries:</VERS>\r\n      <VERS vnumber=\"4\">wherein they think strange that ye run not with [them] into the same excess of riot, speaking evil of [of]:</VERS>\r\n      <VERS vnumber=\"5\">who shall give account to him that is ready to judge the living and the dead.</VERS>\r\n      <VERS vnumber=\"6\">For unto this end was the gospel preached even to the dead, that they might be judged indeed according to men in the flesh, but live according to God in the spirit.</VERS>\r\n      <VERS vnumber=\"7\">But the end of all things is at hand: be ye therefore of sound mind, and be sober unto prayer:</VERS>\r\n      <VERS vnumber=\"8\">above all things being fervent in your love among yourselves; for love covereth a multitude of sins:</VERS>\r\n      <VERS vnumber=\"9\">using hospitality one to another without murmuring:</VERS>\r\n      <VERS vnumber=\"10\">according as each hath received a gift, ministering it among yourselves, as good stewards of the manifold grace of God;</VERS>\r\n      <VERS vnumber=\"11\">if any man speaketh, [speaking] as it were oracles of God; is any man ministereth, [ministering] as of the strength which God supplieth: that in all things God may be glorified through Jesus Christ, whose is the glory and the dominion for ever and ever. Amen.</VERS>\r\n      <VERS vnumber=\"12\">Beloved, think it not strange concerning the fiery trial among you, which cometh upon you to prove you, as though a strange thing happened unto you:</VERS>\r\n      <VERS vnumber=\"13\">but insomuch as ye are partakers of Christ`s sufferings, rejoice; that at the revelation of his glory also ye may rejoice with exceeding joy.</VERS>\r\n      <VERS vnumber=\"14\">If ye are reproached for the name of Christ, blessed [are ye]; because the [Spirit] of glory and the Spirit of God resteth upon you.</VERS>\r\n      <VERS vnumber=\"15\">For let none of you suffer as a murderer, or a thief, or an evil-doer, or as a meddler in other men`s matters:</VERS>\r\n      <VERS vnumber=\"16\">but if [a man suffer] as a Christian, let him not be ashamed; but let him glorify God in this name.</VERS>\r\n      <VERS vnumber=\"17\">For the time [is come] for judgment to begin at the house of God: and if [it begin] first at us, what [shall be] the end of them that obey not the gospel of God?</VERS>\r\n      <VERS vnumber=\"18\">And if the righteous is scarcely saved, where shall the ungodly and sinner appear?</VERS>\r\n      <VERS vnumber=\"19\">Wherefore let them also that suffer according to the will of God commit their souls in well-doing unto a faithful Creator.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">The elders among you I exhort, who am a fellow-elder, and a witness of the sufferings of Christ, who am also a partaker of the glory that shall be revealed:</VERS>\r\n      <VERS vnumber=\"2\">Tend the flock of God which is among you, exercising the oversight, not of constraint, but willingly, according to [the will of] God; nor yet for filthy lucre, but of a ready mind;</VERS>\r\n      <VERS vnumber=\"3\">neither as lording it over the charge allotted to you, but making yourselves ensamples to the flock.</VERS>\r\n      <VERS vnumber=\"4\">And when the chief Shepherd shall be manifested, ye shall receive the crown of glory that fadeth not away.</VERS>\r\n      <VERS vnumber=\"5\">Likewise, ye younger, be subject unto the elder. Yea, all of you gird yourselves with humility, to serve one another: for God resisteth the proud, but giveth grace to the humble.</VERS>\r\n      <VERS vnumber=\"6\">Humble yourselves therefore under the mighty hand of God, that he may exalt you in due time;</VERS>\r\n      <VERS vnumber=\"7\">casting all your anxiety upon him, because he careth for you.</VERS>\r\n      <VERS vnumber=\"8\">Be sober, be watchful: your adversary the devil, as a roaring lion, walketh about, seeking whom he may devour,</VERS>\r\n      <VERS vnumber=\"9\">whom withstand stedfast in your faith, knowing that the same sufferings are accomplished in your brethren who are in the world.</VERS>\r\n      <VERS vnumber=\"10\">And the God of all grace, who called you unto his eternal glory in Christ, after that ye have suffered a little while, shall himself perfect, establish, strengthen you.</VERS>\r\n      <VERS vnumber=\"11\">To him [be] the dominion for ever and ever. Amen.</VERS>\r\n      <VERS vnumber=\"12\">By Silvanus, our faithful brother, as I account [him], I have written unto you briefly, exhorting, and testifying that this is the true grace of God. Stand ye fast therein.</VERS>\r\n      <VERS vnumber=\"13\">She that is in Babylon, elect together with [you], saluteth you; and [so doth] Mark my son.</VERS>\r\n      <VERS vnumber=\"14\">Salute one another with a kiss of love. Peace be unto you all that are in Christ.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"61\" bname=\"2 Peter\" bsname=\"2Pet\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">Simon Peter, a servant and apostle of Jesus Christ, to them that have obtained a like precious faith with us in the righteousness of our God and [the] Saviour Jesus Christ:</VERS>\r\n      <VERS vnumber=\"2\">Grace to you and peace be multiplied in the knowledge of God and of Jesus our Lord;</VERS>\r\n      <VERS vnumber=\"3\">seeing that his divine power hath granted unto us all things that pertain unto life and godliness, through the knowledge of him that called us by his own glory and virtue;</VERS>\r\n      <VERS vnumber=\"4\">whereby he hath granted unto us his precious and exceeding great promises; that through these ye may become partakers of the divine nature, having escaped from the corruption that is in that world by lust.</VERS>\r\n      <VERS vnumber=\"5\">Yea, and for this very cause adding on your part all diligence, in your faith supply virtue; and in [your] virtue knowledge;</VERS>\r\n      <VERS vnumber=\"6\">and in [your] knowledge self-control; and in [your] self-control patience; and in [your] patience godliness;</VERS>\r\n      <VERS vnumber=\"7\">and in [your] godliness brotherly kindness; and in [your] brotherly kindness love.</VERS>\r\n      <VERS vnumber=\"8\">For if these things are yours and abound, they make you to be not idle nor unfruitful unto the knowledge of our Lord Jesus Christ.</VERS>\r\n      <VERS vnumber=\"9\">For he that lacketh these things is blind, seeing only what is near, having forgotten the cleansing from his old sins.</VERS>\r\n      <VERS vnumber=\"10\">Wherefore, brethren, give the more diligence to make your calling and election sure: for if ye do these things, ye shall never stumble:</VERS>\r\n      <VERS vnumber=\"11\">for thus shall be richly supplied unto you the entrance into the eternal kingdom of our Lord and Saviour Jesus Christ.</VERS>\r\n      <VERS vnumber=\"12\">Wherefore I shall be ready always to put you in remembrance of these things, though ye know them, and are established in the truth which is with [you].</VERS>\r\n      <VERS vnumber=\"13\">And I think it right, as long as I am in this tabernacle, to stir you up by putting you in remembrance;</VERS>\r\n      <VERS vnumber=\"14\">knowing that the putting off of my tabernacle cometh swiftly, even as our Lord Jesus Christ signified unto me.</VERS>\r\n      <VERS vnumber=\"15\">Yea, I will give diligence that at every time ye may be able after my decease to call these things to remembrance.</VERS>\r\n      <VERS vnumber=\"16\">For we did not follow cunningly devised fables, when we made known unto you the power and coming of our Lord Jesus Christ, but we were eyewitnesses of his majesty.</VERS>\r\n      <VERS vnumber=\"17\">For he received from God the Father honor and glory, when there was borne such a voice to him by the Majestic Glory, This is my beloved Son, in whom I am well pleased:</VERS>\r\n      <VERS vnumber=\"18\">and this voice we [ourselves] heard borne out of heaven, when we were with him in the holy mount.</VERS>\r\n      <VERS vnumber=\"19\">And we have the word of prophecy [made] more sure; whereunto ye do well that ye take heed, as unto a lamp shining in a dark place, until the day dawn, and the day-star arise in your hearts:</VERS>\r\n      <VERS vnumber=\"20\">knowing this first, that no prophecy of scripture is of private interpretation.</VERS>\r\n      <VERS vnumber=\"21\">For no prophecy ever came by the will of man: but men spake from God, being moved by the Holy Spirit.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">But there arose false prophets also among the people, as among you also there shall be false teachers, who shall privily bring in destructive heresies, denying even the Master that bought them, bringing upon themselves swift destruction.</VERS>\r\n      <VERS vnumber=\"2\">And many shall follow their lascivious doings; by reason of whom the way of the truth shall be evil spoken of.</VERS>\r\n      <VERS vnumber=\"3\">And in covetousness shall they with feigned words make merchandise of you: whose sentence now from of old lingereth not, and their destruction slumbereth not.</VERS>\r\n      <VERS vnumber=\"4\">For if God spared not angels when they sinned, but cast them down to hell, and committed them to pits of darkness, to be reserved unto judgment;</VERS>\r\n      <VERS vnumber=\"5\">and spared not the ancient world, but preserved Noah with seven others, a preacher of righteousness, when he brought a flood upon the world of the ungodly;</VERS>\r\n      <VERS vnumber=\"6\">and turning the cities of Sodom and Gomorrah into ashes condemned them with an overthrow, having made them an example unto those that should live ungodly;</VERS>\r\n      <VERS vnumber=\"7\">and delivered righteous Lot, sore distressed by the lascivious life of the wicked</VERS>\r\n      <VERS vnumber=\"8\">(for that righteous man dwelling among them, in seeing and hearing, vexed [his] righteous soul from day to day with [their] lawless deeds):</VERS>\r\n      <VERS vnumber=\"9\">the Lord knoweth how to deliver the godly out of temptation, and to keep the unrighteous under punishment unto the day of judgment;</VERS>\r\n      <VERS vnumber=\"10\">but chiefly them that walk after the flesh in the lust of defilement, and despise dominion. Daring, self-willed, they tremble not to rail at dignities:</VERS>\r\n      <VERS vnumber=\"11\">whereas angels, though greater in might and power, bring not a railing judgment against them before the Lord.</VERS>\r\n      <VERS vnumber=\"12\">But these, as creatures without reason, born mere animals to be taken and destroyed, railing in matters whereof they are ignorant, shall in their destroying surely be destroyed,</VERS>\r\n      <VERS vnumber=\"13\">suffering wrong as the hire of wrong-doing; [men] that count it pleasure to revel in the day-time, spots and blemishes, revelling in their deceivings while they feast with you;</VERS>\r\n      <VERS vnumber=\"14\">having eyes full of adultery, and that cannot cease from sin; enticing unstedfast souls; having a heart exercised in covetousness; children of cursing;</VERS>\r\n      <VERS vnumber=\"15\">forsaking the right way, they went astray, having followed the way of Balaam the [son] of Beor, who loved the hire of wrong-doing;</VERS>\r\n      <VERS vnumber=\"16\">but he was rebuked for his own transgression: a dumb ass spake with man`s voice and stayed the madness of the prophet.</VERS>\r\n      <VERS vnumber=\"17\">These are springs without water, and mists driven by a storm; for whom the blackness of darkness hath been reserved.</VERS>\r\n      <VERS vnumber=\"18\">For, uttering great swelling [words] of vanity, they entice in the lusts of the flesh, by lasciviousness, those who are just escaping from them that live in error;</VERS>\r\n      <VERS vnumber=\"19\">promising them liberty, while they themselves are bondservants of corruption; for of whom a man is overcome, of the same is he also brought into bondage.</VERS>\r\n      <VERS vnumber=\"20\">For if, after they have escaped the defilements of the world through the knowledge of the Lord and Saviour Jesus Christ, they are again entangled therein and overcome, the last state is become worse with them than the first.</VERS>\r\n      <VERS vnumber=\"21\">For it were better for them not to have known the way of righteousness, than, after knowing it, to turn back from the holy commandment delivered unto them.</VERS>\r\n      <VERS vnumber=\"22\">It has happened unto them according to the true proverb, The dog turning to his own vomit again, and the sow that had washed to wallowing in the mire.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">This is now, beloved, the second epistle that I write unto you; and in both of them I stir up your sincere mind by putting you in remembrance;</VERS>\r\n      <VERS vnumber=\"2\">that ye should remember the words which were spoken before by the holy prophets, and the commandments of the Lord and Saviour through your apostles:</VERS>\r\n      <VERS vnumber=\"3\">knowing this first, that in the last days mockers shall come with mockery, walking after their own lusts,</VERS>\r\n      <VERS vnumber=\"4\">and saying, Where is the promise of his coming? for, from the day that the fathers fell asleep, all things continue as they were from the beginning of the creation.</VERS>\r\n      <VERS vnumber=\"5\">For this they willfully forget, that there were heavens from of old, and an earth compacted out of water and amidst water, by the word of God;</VERS>\r\n      <VERS vnumber=\"6\">by which means the world that then was, being overflowed with water, perished:</VERS>\r\n      <VERS vnumber=\"7\">but the heavens that now are, and the earth, by the same word have been stored up for fire, being reserved against the day of judgment and destruction of ungodly men.</VERS>\r\n      <VERS vnumber=\"8\">But forget not this one thing, beloved, that one day is with the Lord as a thousand years, and a thousand years as one day.</VERS>\r\n      <VERS vnumber=\"9\">The Lord is not slack concerning his promise, as some count slackness; but is longsuffering to you-ward, not wishing that any should perish, but that all should come to repentance.</VERS>\r\n      <VERS vnumber=\"10\">But the day of the Lord will come as a thief; in the which the heavens shall pass away with a great noise, and the elements shall be dissolved with fervent heat, and the earth and the works that are therein shall be burned up.</VERS>\r\n      <VERS vnumber=\"11\">Seeing that these things are thus all to be dissolved, what manner of persons ought ye to be in [all] holy living and godliness,</VERS>\r\n      <VERS vnumber=\"12\">looking for and earnestly desiring the coming of the day of God, by reason of which the heavens being on fire shall be dissolved, and the elements shall melt with fervent heat?</VERS>\r\n      <VERS vnumber=\"13\">But, according to his promise, we look for new heavens and a new earth, wherein dwelleth righteousness.</VERS>\r\n      <VERS vnumber=\"14\">Wherefore, beloved, seeing that ye look for these things, give diligence that ye may be found in peace, without spot and blameless in his sight.</VERS>\r\n      <VERS vnumber=\"15\">And account that the longsuffering of our Lord is salvation; even as our beloved brother Paul also, according to the wisdom given to him, wrote unto you;</VERS>\r\n      <VERS vnumber=\"16\">as also in all [his] epistles, speaking in them of these things; wherein are some things hard to be understood, which the ignorant and unstedfast wrest, as [they do] also the other scriptures, unto their own destruction.</VERS>\r\n      <VERS vnumber=\"17\">Ye therefore, beloved, knowing [these things] beforehand, beware lest, being carried away with the error of the wicked, ye fall from your own stedfastness.</VERS>\r\n      <VERS vnumber=\"18\">But grow in the grace and knowledge of our Lord and Saviour Jesus Christ. To him [be] the glory both now and for ever. Amen.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"62\" bname=\"1 John\" bsname=\"1John\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">That which was from the beginning, that which we have heard, that which we have seen with our eyes, that which we beheld, and our hands handled, concerning the Word of life</VERS>\r\n      <VERS vnumber=\"2\">(and the life was manifested, and we have seen, and bear witness, and declare unto you the life, the eternal [life], which was with the Father, and was manifested unto us);</VERS>\r\n      <VERS vnumber=\"3\">that which we have seen and heard declare we unto you also, that ye also may have fellowship with us: yea, and our fellowship is with the Father, and with his Son Jesus Christ:</VERS>\r\n      <VERS vnumber=\"4\">and these things we write, that our joy may be made full.</VERS>\r\n      <VERS vnumber=\"5\">And this is the message which we have heard from him and announce unto you, that God is light, and in him is no darkness at all.</VERS>\r\n      <VERS vnumber=\"6\">If we say that we have fellowship with him and walk in the darkness, we lie, and do not the truth:</VERS>\r\n      <VERS vnumber=\"7\">but if we walk in the light, as he is in the light, we have fellowship one with another, and the blood of Jesus his Son cleanseth us from all sin.</VERS>\r\n      <VERS vnumber=\"8\">If we say that we have no sin, we deceive ourselves, and the truth is not in us.</VERS>\r\n      <VERS vnumber=\"9\">If we confess our sins, he is faithful and righteous to forgive us our sins, and to cleanse us from all unrighteousness.</VERS>\r\n      <VERS vnumber=\"10\">If we say that we have not sinned, we make him a liar, and his word is not in us.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">My little children, these things write I unto you that ye may not sin. And if any man sin, we have an Advocate with the Father, Jesus Christ the righteous:</VERS>\r\n      <VERS vnumber=\"2\">and he is the propitiation for our sins; and not for ours only, but also for the whole world.</VERS>\r\n      <VERS vnumber=\"3\">And hereby we know that we know him, if we keep his commandments.</VERS>\r\n      <VERS vnumber=\"4\">He that saith, I know him, and keepeth not his commandments, is a liar, and the truth is not in him;</VERS>\r\n      <VERS vnumber=\"5\">but whoso keepeth his word, in him verily hath the love of God been perfected. Hereby we know that we are in him:</VERS>\r\n      <VERS vnumber=\"6\">he that saith he abideth in him ought himself also to walk even as he walked.</VERS>\r\n      <VERS vnumber=\"7\">Beloved, no new commandment write I unto you, but an old commandment which ye had from the beginning: the old commandment is the word which ye heard.</VERS>\r\n      <VERS vnumber=\"8\">Again, a new commandment write I unto you, which thing is true in him and in you; because the darkness is passing away, and the true light already shineth.</VERS>\r\n      <VERS vnumber=\"9\">He that saith he is in the light and hateth his brother, is in the darkness even until now.</VERS>\r\n      <VERS vnumber=\"10\">He that loveth his brother abideth in the light, and there is no occasion of stumbling in him.</VERS>\r\n      <VERS vnumber=\"11\">But he that hateth his brother is in the darkness, and walketh in the darkness, and knoweth not whither he goeth, because the darkness hath blinded his eyes.</VERS>\r\n      <VERS vnumber=\"12\">I write unto you, [my] little children, because your sins are forgiven you for his name`s sake.</VERS>\r\n      <VERS vnumber=\"13\">I write unto you, fathers, because ye know him who is from the beginning. I write unto you, young men, because ye have overcome the evil one. I have written unto you, little children, because ye know the Father.</VERS>\r\n      <VERS vnumber=\"14\">I have written unto you, fathers, because ye know him who 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 evil one.</VERS>\r\n      <VERS vnumber=\"15\">Love 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.</VERS>\r\n      <VERS vnumber=\"16\">For all that is in the world, the lust of the flesh and the lust of the eyes and the vain glory of life, is not of the Father, but is of the world.</VERS>\r\n      <VERS vnumber=\"17\">And the world passeth away, and the lust thereof: but he that doeth the will of God abideth for ever.</VERS>\r\n      <VERS vnumber=\"18\">Little children, it is the last hour: and as ye heard that antichrist cometh, even now have there arisen many antichrists; whereby we know that it is the last hour.</VERS>\r\n      <VERS vnumber=\"19\">They went out from us, but they were not of us; for if they had been of us, they would have continued with us: but [they went out], that they might be made manifest that they all are not of us.</VERS>\r\n      <VERS vnumber=\"20\">And ye have an anointing from the Holy One, and ye know all the things.</VERS>\r\n      <VERS vnumber=\"21\">I have not written unto you because ye know not the truth, but because ye know it, and because no lie is of the truth.</VERS>\r\n      <VERS vnumber=\"22\">Who is the liar but he that denieth that Jesus is the Christ? This is the antichrist, [even] he that denieth the Father and the Son.</VERS>\r\n      <VERS vnumber=\"23\">Whosoever denieth the Son, the same hath not the Father: he that confesseth the Son hath the Father also.</VERS>\r\n      <VERS vnumber=\"24\">As for you, let that abide in you which ye heard from the beginning. If that which ye heard from the beginning abide in you, ye also shall abide in the Son, and in the Father.</VERS>\r\n      <VERS vnumber=\"25\">And this is the promise which he promised us, [even] the life eternal.</VERS>\r\n      <VERS vnumber=\"26\">These things have I written unto you concerning them that would lead you astray.</VERS>\r\n      <VERS vnumber=\"27\">And as for you, the anointing which ye received of him abideth in you, and ye need not that any one teach you; but as his anointing teacheth you; concerning all things, and is true, and is no lie, and even as it taught you, ye abide in him.</VERS>\r\n      <VERS vnumber=\"28\">And now, [my] little children, abide in him; that, if he shall be manifested, we may have boldness, and not be ashamed before him at his coming.</VERS>\r\n      <VERS vnumber=\"29\">If ye know that he is righteous, ye know that every one also that doeth righteousness is begotten of him.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Behold what manner of love the Father hath bestowed upon us, that we should be called children of God; and [such] we are. For this cause the world knoweth us not, because it knew him not.</VERS>\r\n      <VERS vnumber=\"2\">Beloved, now are we children of God, and it is not yet made manifest what we shall be. We know that, if he shall be manifested, we shall be like him; for we shall see him even as he is.</VERS>\r\n      <VERS vnumber=\"3\">And every one that hath this hope [set] on him purifieth himself, even as he is pure.</VERS>\r\n      <VERS vnumber=\"4\">Every one that doeth sin doeth also lawlessness; and sin is lawlessness.</VERS>\r\n      <VERS vnumber=\"5\">And ye know that he was manifested to take away sins; and in him is no sin.</VERS>\r\n      <VERS vnumber=\"6\">Whosoever abideth in him sinneth not: whosoever sinneth hath not seen him, neither knoweth him.</VERS>\r\n      <VERS vnumber=\"7\">[My] little children, let no man lead you astray: he that doeth righteousness is righteous, even as he is righteous:</VERS>\r\n      <VERS vnumber=\"8\">he that doeth sin is of the devil; for the devil sinneth from the beginning. To this end was the Son of God manifested, that he might destroy the works of the devil.</VERS>\r\n      <VERS vnumber=\"9\">Whosoever is begotten of God doeth no sin, because his seed abideth in him: and he cannot sin, because he is begotten of God.</VERS>\r\n      <VERS vnumber=\"10\">In 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.</VERS>\r\n      <VERS vnumber=\"11\">For this is the message which ye heard from the beginning, that we should love one another:</VERS>\r\n      <VERS vnumber=\"12\">not as Cain was of the evil one, and slew his brother. And wherefore slew he him? Because his works were evil, and his brother`s righteous.</VERS>\r\n      <VERS vnumber=\"13\">Marvel not, brethren, if the world hateth you.</VERS>\r\n      <VERS vnumber=\"14\">We know that we have passed out of death into life, because we love the brethren. He that loveth not abideth in death.</VERS>\r\n      <VERS vnumber=\"15\">Whosoever hateth his brother is a murderer: and ye know that no murderer hath eternal life abiding in him.</VERS>\r\n      <VERS vnumber=\"16\">Hereby know we love, because he laid down his life for us: and we ought to lay down our lives for the brethren.</VERS>\r\n      <VERS vnumber=\"17\">But whoso hath the world`s goods, and beholdeth his brother in need, and shutteth up his compassion from him, how doth the love of God abide in him?</VERS>\r\n      <VERS vnumber=\"18\">[My] Little children, let us not love in word, neither with the tongue; but in deed and truth.</VERS>\r\n      <VERS vnumber=\"19\">Hereby shall we know that we are of the truth, and shall assure our heart before him:</VERS>\r\n      <VERS vnumber=\"20\">because if our heart condemn us, God is greater than our heart, and knoweth all things.</VERS>\r\n      <VERS vnumber=\"21\">Beloved, if our heart condemn us not, we have boldness toward God;</VERS>\r\n      <VERS vnumber=\"22\">and whatsoever we ask we receive of him, because we keep his commandments and do the things that are pleasing in his sight.</VERS>\r\n      <VERS vnumber=\"23\">And this is his commandment, that we should believe in the name of his Son Jesus Christ, and love one another, even as he gave us commandment.</VERS>\r\n      <VERS vnumber=\"24\">And he that keepeth his commandments abideth in him, and he in him. And hereby we know that he abideth in us, by the Spirit which he gave us.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">Beloved, believe not every spirit, but prove the spirits, whether they are of God; because many false prophets are gone out into the world.</VERS>\r\n      <VERS vnumber=\"2\">Hereby know ye the Spirit of God: every spirit that confesseth that Jesus Christ is come in the flesh is of God:</VERS>\r\n      <VERS vnumber=\"3\">and every spirit that confesseth not Jesus is not of God: and this is the [spirit] of the antichrist, whereof ye have heard that it cometh; and now it is in the world already.</VERS>\r\n      <VERS vnumber=\"4\">Ye are of God, [my] little children, and have overcome them: because greater is he that is in you than he that is in the world.</VERS>\r\n      <VERS vnumber=\"5\">They are of the world: therefore speak they [as] of the world, and the world heareth them.</VERS>\r\n      <VERS vnumber=\"6\">We are of God: he that knoweth God heareth us; he who is not of God heareth us not. By this we know the spirit of truth, and the spirit of error.</VERS>\r\n      <VERS vnumber=\"7\">Beloved, let us love one another: for love is of God; and every one that loveth is begotten of God, and knoweth God.</VERS>\r\n      <VERS vnumber=\"8\">He that loveth not knoweth not God; for God is love.</VERS>\r\n      <VERS vnumber=\"9\">Herein was the love of God manifested in us, that God hath sent his only begotten Son into the world that we might live through him.</VERS>\r\n      <VERS vnumber=\"10\">Herein is love, not that we loved God, but that he loved us, and sent his Son [to be] the propitiation for our sins.</VERS>\r\n      <VERS vnumber=\"11\">Beloved, if God so loved us, we also ought to love one another.</VERS>\r\n      <VERS vnumber=\"12\">No man hath beheld God at any time: if we love one another, God abideth in us, and his love is perfected in us:</VERS>\r\n      <VERS vnumber=\"13\">hereby we know that we abide in him and he in us, because he hath given us of his Spirit.</VERS>\r\n      <VERS vnumber=\"14\">And we have beheld and bear witness that the Father hath sent the Son [to be] the Saviour of the world.</VERS>\r\n      <VERS vnumber=\"15\">Whosoever shall confess that Jesus is the Son of God, God abideth in him, and he in God.</VERS>\r\n      <VERS vnumber=\"16\">And we know and have believed the love which God hath in us. God is love; and he that abideth in love abideth in God, and God abideth in him.</VERS>\r\n      <VERS vnumber=\"17\">Herein is love made perfect with us, that we may have boldness in the day of judgment; because as he is, even so are we in this world.</VERS>\r\n      <VERS vnumber=\"18\">There is no fear in love: but perfect love casteth out fear, because fear hath punishment; and he that feareth is not made perfect in love.</VERS>\r\n      <VERS vnumber=\"19\">We love, because he first loved us.</VERS>\r\n      <VERS vnumber=\"20\">If 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, cannot love God whom he hath not seen.</VERS>\r\n      <VERS vnumber=\"21\">And this commandment have we from him, that he who loveth God love his brother also.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">Whosoever believeth that Jesus is the Christ is begotten of God: and whosoever loveth him that begat loveth him also that is begotten of him.</VERS>\r\n      <VERS vnumber=\"2\">Hereby we know that we love the children of God, when we love God and do his commandments.</VERS>\r\n      <VERS vnumber=\"3\">For this is the love of God, that we keep his commandments: and his commandments are not grievous.</VERS>\r\n      <VERS vnumber=\"4\">For whatsoever is begotten of God overcometh the world: and this is the victory that hath overcome the world, [even] our faith.</VERS>\r\n      <VERS vnumber=\"5\">And who is he that overcometh the world, but he that believeth that Jesus is the Son of God?</VERS>\r\n      <VERS vnumber=\"6\">This is he that came by water and blood, [even] Jesus Christ; not with the water only, but with the water and with the blood.</VERS>\r\n      <VERS vnumber=\"7\">And it is the Spirit that beareth witness, because the Spirit is the truth.</VERS>\r\n      <VERS vnumber=\"8\">For there are three who bear witness, the Spirit, and the water, and the blood: and the three agree in one.</VERS>\r\n      <VERS vnumber=\"9\">If we receive the witness of men, the witness of God is greater: for the witness of God is this, that he hath borne witness concerning his Son.</VERS>\r\n      <VERS vnumber=\"10\">He that believeth on the Son of God hath the witness in him: he that believeth not God hath made him a liar; because he hath not believed in the witness that God hath borne concerning his Son.</VERS>\r\n      <VERS vnumber=\"11\">And the witness is this, that God gave unto us eternal life, and this life is in his Son.</VERS>\r\n      <VERS vnumber=\"12\">He that hath the Son hath the life; he that hath not the Son of God hath not the life.</VERS>\r\n      <VERS vnumber=\"13\">These things have I written unto you, that ye may know that ye have eternal life, [even] unto you that believe on the name of the Son of God.</VERS>\r\n      <VERS vnumber=\"14\">And this is the boldness which we have toward him, that, if we ask anything according to his will, he heareth us:</VERS>\r\n      <VERS vnumber=\"15\">and if we know that he heareth us whatsoever we ask, we know that we have the petitions which we have asked of him.</VERS>\r\n      <VERS vnumber=\"16\">If any man see his brother sinning a sin not unto death, he shall ask, and [God] will give him life for them that sin not unto death. There is a sin unto death: not concerning this do I say that he should make request.</VERS>\r\n      <VERS vnumber=\"17\">All unrighteousness is sin: and there is a sin not unto death.</VERS>\r\n      <VERS vnumber=\"18\">We know that whosoever is begotten of God sinneth not; but he that was begotten of God keepeth himself, and the evil one toucheth him not.</VERS>\r\n      <VERS vnumber=\"19\">We know that we are of God, and the whole world lieth in the evil one.</VERS>\r\n      <VERS vnumber=\"20\">And we know that the Son of God is come, and hath given us an understanding, that we 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.</VERS>\r\n      <VERS vnumber=\"21\">[My] little children, guard yourselves from idols.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"63\" bname=\"2 John\" bsname=\"2John\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">The elder unto the elect lady and her children, whom I love in truth; and not I only, but also all they that know the truth;</VERS>\r\n      <VERS vnumber=\"2\">for the truth`s sake which abideth in us, and it shall be with us for ever:</VERS>\r\n      <VERS vnumber=\"3\">Grace, mercy, peace shall be with us, from God the Father, and from Jesus Christ, the Son of the Father, in truth and love.</VERS>\r\n      <VERS vnumber=\"4\">I rejoice greatly that I have found [certain] of thy children walking in truth, even as we received commandment from the Father.</VERS>\r\n      <VERS vnumber=\"5\">And now I beseech thee, lady, not as though I wrote to thee a new commandment, but that which we had from the beginning, that we love one another.</VERS>\r\n      <VERS vnumber=\"6\">And this is love, that we should walk after his commandments. This is the commandment, even as ye heard from the beginning, that ye should walk in it.</VERS>\r\n      <VERS vnumber=\"7\">For many deceivers are gone forth into the world, [even] they that confess not that Jesus Christ cometh in the flesh. This is the deceiver and the antichrist.</VERS>\r\n      <VERS vnumber=\"8\">Look to yourselves, that ye lose not the things which we have wrought, but that ye receive a full reward.</VERS>\r\n      <VERS vnumber=\"9\">Whosoever goeth onward and abideth not in the teaching of Christ, hath not God: he that abideth in the teaching, the same hath both the Father and the Son.</VERS>\r\n      <VERS vnumber=\"10\">If any one cometh unto you, and bringeth not this teaching, receive him not into [your] house, and give him no greeting:</VERS>\r\n      <VERS vnumber=\"11\">for he that giveth him greeting partaketh in his evil works.</VERS>\r\n      <VERS vnumber=\"12\">Having many things to write unto you, I would not [write them] with paper and ink: but I hope to come unto you, and to speak face to face, that your joy may be made full.</VERS>\r\n      <VERS vnumber=\"13\">The children of thine elect sister salute thee.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"64\" bname=\"3 John\" bsname=\"3John\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">The elder unto Gaius the beloved, whom I love in truth.</VERS>\r\n      <VERS vnumber=\"2\">Beloved, I pray that in all things thou mayest prosper and be in health, even as thy soul prospereth.</VERS>\r\n      <VERS vnumber=\"3\">For I rejoiced greatly, when brethren came and bare witness unto thy truth, even as thou walkest in truth.</VERS>\r\n      <VERS vnumber=\"4\">Greater joy have I none than this, to hear of my children walking in the truth.</VERS>\r\n      <VERS vnumber=\"5\">Beloved, thou doest a faithful work in whatsoever thou doest toward them that are brethren and strangers withal;</VERS>\r\n      <VERS vnumber=\"6\">who bare witness to thy love before the church: whom thou wilt do well to set forward on their journey worthily of God:</VERS>\r\n      <VERS vnumber=\"7\">because that for the sake of the Name they went forth, taking nothing of the Gentiles.</VERS>\r\n      <VERS vnumber=\"8\">We therefore ought to welcome such, that we may be fellow-workers for the truth.</VERS>\r\n      <VERS vnumber=\"9\">I wrote somewhat unto the church: but Diotrephes, who loveth to have the preeminence among them, receiveth us not.</VERS>\r\n      <VERS vnumber=\"10\">Therefore, if I come, I will bring to remembrance his works which he doeth, prating against us with wicked words: and not content therewith, neither doth he himself receive the brethren, and them that would he forbiddeth and casteth [them] out of the church.</VERS>\r\n      <VERS vnumber=\"11\">Beloved, imitate not that which is evil, but that which is good. He that doeth good is of God: he that doeth evil hath not seen God.</VERS>\r\n      <VERS vnumber=\"12\">Demetrius hath the witness of all [men], and of the truth itself: yea, we also bear witness: and thou knowest that our witness is true.</VERS>\r\n      <VERS vnumber=\"13\">I had many things to write unto thee, but I am unwilling to write [them] to thee with ink and pen:</VERS>\r\n      <VERS vnumber=\"14\">but I hope shortly to see thee, and we shall speak face to face. Peace [be] unto thee. The friends salute thee. Salute the friends by name.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"65\" bname=\"Jude\" bsname=\"Jude\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">Jude, a servant of Jesus Christ, and brother of James, to them that are called, beloved in God the Father, and kept for Jesus Christ:</VERS>\r\n      <VERS vnumber=\"2\">Mercy unto you and peace and love be multiplied.</VERS>\r\n      <VERS vnumber=\"3\">Beloved, while I was giving all diligence to write unto you of our common salvation, I was constrained to write unto you exhorting you to contend earnestly for the faith which was once for all delivered unto the saints.</VERS>\r\n      <VERS vnumber=\"4\">For there are certain men crept in privily, [even] they who were of old written of beforehand unto this condemnation, ungodly men, turning the grace of our God into lasciviousness, and denying our only Master and Lord, Jesus Christ.</VERS>\r\n      <VERS vnumber=\"5\">Now I desire to put you in remembrance, though ye know all things once for all, that the Lord, having saved a people out of the land of Egypt, afterward destroyed them that believed not.</VERS>\r\n      <VERS vnumber=\"6\">And angels that kept not their own principality, but left their proper habitation, he hath kept in everlasting bonds under darkness unto the judgment of the great day.</VERS>\r\n      <VERS vnumber=\"7\">Even as Sodom and Gomorrah, and the cities about them, having in like manner with these given themselves over to fornication and gone after strange flesh, are set forth as an example, suffering the punishment of eternal fire.</VERS>\r\n      <VERS vnumber=\"8\">Yet in like manner these also in their dreamings defile the flesh, and set at nought dominion, and rail at dignities.</VERS>\r\n      <VERS vnumber=\"9\">But Michael the archangel, when contending with the devil he disputed about the body of Moses, durst not bring against him a railing judgment, but said, The Lord rebuke thee.</VERS>\r\n      <VERS vnumber=\"10\">But these rail at whatsoever things they know not: and what they understand naturally, like the creatures without reason, in these things are they destroyed.</VERS>\r\n      <VERS vnumber=\"11\">Woe unto them! For they went in the way of Cain, and ran riotously in the error of Balaam for hire, and perished in the gainsaying of Korah.</VERS>\r\n      <VERS vnumber=\"12\">These are they who are hidden rocks in your love-feasts when they feast with you, shepherds that without fear feed themselves; clouds without water, carried along by winds; autumn leaves without fruit, twice dead, plucked up by the roots;</VERS>\r\n      <VERS vnumber=\"13\">Wild waves of the sea, foaming out their own shame; wandering stars, for whom the blackness of darkness hath been reserved forever.</VERS>\r\n      <VERS vnumber=\"14\">And to these also Enoch, the seventh from Adam, prophesied, saying, Behold, the Lord came with ten thousands of his holy ones,</VERS>\r\n      <VERS vnumber=\"15\">to execute judgment upon all, and to convict all the ungodly of all their works of ungodliness which they have ungodly wrought, and of all the hard things which ungodly sinners have spoken against him.</VERS>\r\n      <VERS vnumber=\"16\">These are murmurers, complainers, walking after their lusts (and their mouth speaketh great swelling [words]), showing respect of persons for the sake of advantage.</VERS>\r\n      <VERS vnumber=\"17\">But ye, beloved, remember ye the words which have been spoken before by the apostles of our Lord Jesus Christ;</VERS>\r\n      <VERS vnumber=\"18\">That they said to you, In the last time there shall be mockers, walking after their own ungodly lusts.</VERS>\r\n      <VERS vnumber=\"19\">These are they who make separations, sensual, having not the Spirit.</VERS>\r\n      <VERS vnumber=\"20\">But ye, beloved, building up yourselves on your most holy faith, praying in the Holy Spirit,</VERS>\r\n      <VERS vnumber=\"21\">keep yourselves in the love of God, looking for the mercy of our Lord Jesus Christ unto eternal life.</VERS>\r\n      <VERS vnumber=\"22\">And on some have mercy, who are in doubt;</VERS>\r\n      <VERS vnumber=\"23\">and some save, snatching them out of the fire; and on some have mercy with fear; hating even the garment spotted by the flesh.</VERS>\r\n      <VERS vnumber=\"24\">Now unto him that is able to guard you from stumbling, and to set you before the presence of his glory without blemish in exceeding joy,</VERS>\r\n      <VERS vnumber=\"25\">to the only God our Saviour, through Jesus Christ our Lord, [be] glory, majesty, dominion and power, before all time, and now, and for evermore. Amen.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"66\" bname=\"Revelation\" bsname=\"Rev\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">The Revelation of Jesus Christ, which God gave him to show unto his servants, [even] the things which must shortly come to pass: and he sent and signified [it] by his angel unto his servant John;</VERS>\r\n      <VERS vnumber=\"2\">who bare witness of the word of God, and of the testimony of Jesus Christ, [even] of all things that he saw.</VERS>\r\n      <VERS vnumber=\"3\">Blessed is he that readeth, and they that hear the words of the prophecy, and keep the things that are written therein: for the time is at hand.</VERS>\r\n      <VERS vnumber=\"4\">John to the seven churches that are in Asia: Grace to you and peace, from him who is and who was and who is to come; and from the seven Spirits that are before his throne;</VERS>\r\n      <VERS vnumber=\"5\">and from Jesus Christ, [who is] the faithful witness, the firstborn of the dead, and the ruler of the kings of the earth. Unto him that loveth us, and loosed us from our sins by his blood;</VERS>\r\n      <VERS vnumber=\"6\">and he made us [to be] a kingdom, [to be] priests unto his God and Father; to him [be] the glory and the dominion for ever and ever. Amen.</VERS>\r\n      <VERS vnumber=\"7\">Behold, he cometh with the clouds; and every eye shall see him, and they that pierced him; and all the tribes of the earth shall mourn over him. Even so, Amen.</VERS>\r\n      <VERS vnumber=\"8\">I am the Alpha and the Omega, saith the Lord God, who is and who was and who is to come, the Almighty.</VERS>\r\n      <VERS vnumber=\"9\">I John, your brother and partaker with you in tribulation and kingdom and patience [which are] in Jesus, was in the isle that is called Patmos, for the word of God and the testimony of Jesus.</VERS>\r\n      <VERS vnumber=\"10\">I was in the Spirit on the Lord`s day, and I heard behind me a great voice, as of a trumpet</VERS>\r\n      <VERS vnumber=\"11\">saying, What thou seest, write in a book and send [it] to the seven churches: unto Ephesus, and unto Smyrna, and unto Pergamum, and unto Thyatira, and unto Sardis, and unto Philadelphia, and unto Laodicea.</VERS>\r\n      <VERS vnumber=\"12\">And I turned to see the voice that spake with me. And having turned I saw seven golden candlesticks;</VERS>\r\n      <VERS vnumber=\"13\">and in the midst of the candlesticks one like unto a son of man, clothed with a garment down to the foot, and girt about at the breasts with a golden girdle.</VERS>\r\n      <VERS vnumber=\"14\">And his head and his hair were white as white wool, [white] as snow; and his eyes were as a flame of fire;</VERS>\r\n      <VERS vnumber=\"15\">and his feet like unto burnished brass, as if it had been refined in a furnace; and his voice as the voice of many waters.</VERS>\r\n      <VERS vnumber=\"16\">And he had in his right hand seven stars: and out of his mouth proceeded a sharp two-edged sword: and his countenance was as the sun shineth in his strength.</VERS>\r\n      <VERS vnumber=\"17\">And when I saw him, I fell at his feet as one dead. And he laid his right hand upon me, saying, Fear not; I am the first and the last,</VERS>\r\n      <VERS vnumber=\"18\">and the Living one; and I was dead, and behold, I am alive for evermore, and I have the keys of death and of Hades.</VERS>\r\n      <VERS vnumber=\"19\">Write therefore the things which thou sawest, and the things which are, and the things which shall come to pass hereafter;</VERS>\r\n      <VERS vnumber=\"20\">the 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 are seven churches.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">To the angel of the church in Ephesus write: These things saith he that holdeth the seven stars in his right hand, he that walketh in the midst of the seven golden candlesticks:</VERS>\r\n      <VERS vnumber=\"2\">I know thy works, and thy toil and patience, and that thou canst not bear evil men, and didst try them that call themselves apostles, and they are not, and didst find them false;</VERS>\r\n      <VERS vnumber=\"3\">and thou hast patience and didst bear for my name`s sake, and hast not grown weary.</VERS>\r\n      <VERS vnumber=\"4\">But I have [this] against thee, that thou didst leave thy first love.</VERS>\r\n      <VERS vnumber=\"5\">Remember therefore whence thou art fallen, and repent and do the first works; or else I come to thee, and will move thy candlestick out of its place, except thou repent.</VERS>\r\n      <VERS vnumber=\"6\">But this thou hast, that thou hatest the works of the Nicolaitans, which I also hate.</VERS>\r\n      <VERS vnumber=\"7\">He that hath an ear, let him hear what the Spirit saith to the churches. To him that overcometh, to him will I give to eat of the tree of life, which is in the Paradise of God.</VERS>\r\n      <VERS vnumber=\"8\">And to the angel of the church in Smyrna write: These things saith the first and the last, who was dead, and lived [again]:</VERS>\r\n      <VERS vnumber=\"9\">I know thy tribulation, and thy poverty (but thou art rich), and the blasphemy of them that say they are Jews, and they art not, but are a synagogue of Satan.</VERS>\r\n      <VERS vnumber=\"10\">Fear not the things which thou art about to suffer: behold, the devil is about to 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 the crown of life.</VERS>\r\n      <VERS vnumber=\"11\">He that hath an ear, let him hear what the Spirit saith to the churches. He that overcometh shall not be hurt of the second death.</VERS>\r\n      <VERS vnumber=\"12\">and to the angel of the church in Pergamum write: These things saith he that hath the sharp two-edged sword:</VERS>\r\n      <VERS vnumber=\"13\">I know where thou dwellest, [even] where Satan`s throne is; and thou holdest fast my name, and didst not deny my faith, even in the days of Antipas my witness, my faithful one, who was killed among you, where Satan dwelleth.</VERS>\r\n      <VERS vnumber=\"14\">But I have a few things against thee, because thou hast there some that hold the teaching of Balaam, who taught Balak to cast a stumblingblock before the children of Israel, to eat things sacrificed to idols, and to commit fornication.</VERS>\r\n      <VERS vnumber=\"15\">So hast thou also some that hold the teaching of the Nicolaitans in like manner.</VERS>\r\n      <VERS vnumber=\"16\">Repent therefore; or else I come to thee quickly, and I will make war against them with the sword of my mouth.</VERS>\r\n      <VERS vnumber=\"17\">He that hath an ear, let him hear what the Spirit saith to the churches. To him that overcometh, to him will I give of the hidden manna, and I will give him a white stone, and upon the stone a new name written, which no one knoweth but he that receiveth it.</VERS>\r\n      <VERS vnumber=\"18\">And to the angel of the church in Thyatira write: These things saith the Son of God, who hath his eyes like a flame of fire, and his feet are like unto burnished brass:</VERS>\r\n      <VERS vnumber=\"19\">I know thy works, and thy love and faith and ministry and patience, and that thy last works are more than the first.</VERS>\r\n      <VERS vnumber=\"20\">But I have [this] against thee, that thou sufferest the woman Jezebel, who calleth herself a prophetess; and she teacheth and seduceth my servants to commit fornication, and to eat things sacrificed to idols.</VERS>\r\n      <VERS vnumber=\"21\">And I gave her time that she should repent; and she willeth not to repent of her fornication.</VERS>\r\n      <VERS vnumber=\"22\">Behold, I cast her into a bed, and them that commit adultery with her into great tribulation, except they repent of her works.</VERS>\r\n      <VERS vnumber=\"23\">And I will kill her children with death; and all the churches shall know that I am he that searcheth the reins and hearts: and I will give unto each one of you according to your works.</VERS>\r\n      <VERS vnumber=\"24\">But to you I say, to the rest that are in Thyatira, as many as have not this teaching, who know not the deep things of Satan, as they are wont to say; I cast upon you none other burden.</VERS>\r\n      <VERS vnumber=\"25\">Nevertheless that which ye have, hold fast till I come.</VERS>\r\n      <VERS vnumber=\"26\">And he that overcometh, and he that keepeth my works unto the end, to him will I give authority over the nations:</VERS>\r\n      <VERS vnumber=\"27\">and he shall rule them with a rod of iron, as the vessels of the potter are broken to shivers; as I also have received of my Father:</VERS>\r\n      <VERS vnumber=\"28\">and I will give him the morning star.</VERS>\r\n      <VERS vnumber=\"29\">He that hath an ear, let him hear what the Spirit saith to the churches.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">And to 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 thou art dead.</VERS>\r\n      <VERS vnumber=\"2\">Be thou watchful, and establish the things that remain, which were ready to die: for I have found no works of thine perfected before my God.</VERS>\r\n      <VERS vnumber=\"3\">Remember therefore how thou hast received and didst hear; and keep [it], and repent. If therefore thou shalt not watch, I will come as a thief, and thou shalt not know what hour I will come upon thee.</VERS>\r\n      <VERS vnumber=\"4\">But thou hast a few names in Sardis that did not defile their garments: and they shall walk with me in white; for they are worthy.</VERS>\r\n      <VERS vnumber=\"5\">He that overcometh shall thus be arrayed in white garments; and I will in no wise blot his name out of the book of life, and I will confess his name before my Father, and before his angels.</VERS>\r\n      <VERS vnumber=\"6\">He that hath an ear, let him hear what the Spirit saith to the churches.</VERS>\r\n      <VERS vnumber=\"7\">And 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 none shall shut, and that shutteth and none openeth:</VERS>\r\n      <VERS vnumber=\"8\">I know thy works (behold, I have set before thee a door opened, which none can shut), that thou hast a little power, and didst keep my word, and didst not deny my name.</VERS>\r\n      <VERS vnumber=\"9\">Behold, I give of the synagogue of Satan, of them that say they are Jews, and they 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.</VERS>\r\n      <VERS vnumber=\"10\">Because thou didst keep the word of my patience, I also will keep thee from the hour of trial, that [hour] which is to come upon the whole world, to try them that dwell upon the earth.</VERS>\r\n      <VERS vnumber=\"11\">I come quickly: hold fast that which thou hast, that no one take thy crown.</VERS>\r\n      <VERS vnumber=\"12\">He that overcometh, I will make him a pillar in the temple of my God, and he shall go out thence no more: and I will write upon him the name of my God, and the name of the city of my God, the new Jerusalem, which cometh down out of heaven from my God, and mine own new name.</VERS>\r\n      <VERS vnumber=\"13\">He that hath an ear, let him hear what the Spirit saith to the churches.</VERS>\r\n      <VERS vnumber=\"14\">And to the angel of the church in Laodicea write: These things saith the Amen, the faithful and true witness, the beginning of the creation of God:</VERS>\r\n      <VERS vnumber=\"15\">I know thy works, that thou art neither cold nor hot: I would thou wert cold or hot.</VERS>\r\n      <VERS vnumber=\"16\">So because thou art lukewarm, and neither hot nor cold, I will spew thee out of my mouth.</VERS>\r\n      <VERS vnumber=\"17\">Because thou sayest, I am rich, and have gotten riches, and have need of nothing; and knowest not that thou art the wretched one and miserable and poor and blind and naked:</VERS>\r\n      <VERS vnumber=\"18\">I counsel thee to buy of me gold refined by fire, that thou mayest become rich; and white garments, that thou mayest clothe thyself, and [that] the shame of thy nakedness be not made manifest; and eyesalve to anoint thine eyes, that thou mayest see.</VERS>\r\n      <VERS vnumber=\"19\">As many as I love, I reprove and chasten: be zealous therefore, and repent.</VERS>\r\n      <VERS vnumber=\"20\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"21\">He that overcometh, I will give to him to sit down with me in my throne, as I also overcame, and sat down with my Father in his throne.</VERS>\r\n      <VERS vnumber=\"22\">He that hath an ear, let him hear what the Spirit saith to the churches.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">After these things I saw, and behold, a door opened in heaven, and the first voice that I heard, [a voice] as of a trumpet speaking with me, one saying, Come up hither, and I will show thee the things which must come to pass hereafter.</VERS>\r\n      <VERS vnumber=\"2\">Straightway I was in the Spirit: and behold, there was a throne set in heaven, and one sitting upon the throne;</VERS>\r\n      <VERS vnumber=\"3\">and he that sat [was] to look upon like a jasper stone and a sardius: and [there was] a rainbow round about the throne, like an emerald to look upon.</VERS>\r\n      <VERS vnumber=\"4\">And round about the throne [were] four and twenty thrones: and upon the thrones [I saw] four and twenty elders sitting, arrayed in white garments; and on their heads crowns of gold.</VERS>\r\n      <VERS vnumber=\"5\">And out of the throne proceed lightnings and voices and thunders. And [there was] seven lamps of fire burning before the throne, which are the seven Spirits of God;</VERS>\r\n      <VERS vnumber=\"6\">and before the throne, as it were a sea of glass like a crystal; and in the midst of the throne, and round about the throne, four living creatures full of eyes before and behind.</VERS>\r\n      <VERS vnumber=\"7\">And the first creature [was] like a lion, and the second creature like a calf, and the third creature had a face as of a man, and the fourth creature [was] like a flying eagle.</VERS>\r\n      <VERS vnumber=\"8\">and the four living creatures, having each one of them six wings, are full of eyes round about and within: and they have no rest day and night, saying,     Holy, holy, holy, [is] the Lord God, the Almighty, who was and who is and who is to come.</VERS>\r\n      <VERS vnumber=\"9\">And when the living creatures shall give glory and honor and thanks to him that sitteth on the throne, to him that liveth for ever and ever,</VERS>\r\n      <VERS vnumber=\"10\">the four and twenty elders shall fall down before him that sitteth on the throne, and shall worship him that liveth for ever and ever, and shall cast their crowns before the throne, saying,</VERS>\r\n      <VERS vnumber=\"11\">Worthy art thou, our Lord and our God, to receive the glory and the honor and the power: for thou didst create all things, and because of thy will they were, and were created.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">And I saw in the right hand of him that sat on the throne a book written within and on the back, close sealed with seven seals.</VERS>\r\n      <VERS vnumber=\"2\">And I saw a strong angel proclaiming with a great voice, Who is worthy to open the book, and to loose the seals thereof?</VERS>\r\n      <VERS vnumber=\"3\">And no one in the heaven, or on the earth, or under the earth, was able to open the book, or to look thereon.</VERS>\r\n      <VERS vnumber=\"4\">And I wept much, because no one was found worthy to open the book, or to look thereon:</VERS>\r\n      <VERS vnumber=\"5\">and one of the elders saith unto me, Weep not; behold, the Lion that is of the tribe of Judah, the Root of David, hath overcome to open the book and the seven seals thereof.</VERS>\r\n      <VERS vnumber=\"6\">And I saw in the midst of the throne and of the four living creatures, and in the midst of the elders, a Lamb standing, as though it had been slain, having seven horns, and seven eyes, which are the seven Spirits of God, sent forth into all the earth.</VERS>\r\n      <VERS vnumber=\"7\">And he came, and he taketh [it] out of the right hand of him that sat on the throne.</VERS>\r\n      <VERS vnumber=\"8\">And when he had taken the book, the four living creatures and the four and twenty elders fell down before the Lamb, having each one a harp, and golden bowls full of incense, which are the prayers of the saints.</VERS>\r\n      <VERS vnumber=\"9\">And they sing a new song, saying,     Worthy art thou to take the book, and to open the seals thereof: for thou was slain, and didst purchase unto God with thy blood [men] of every tribe, and tongue, and people, and nation,</VERS>\r\n      <VERS vnumber=\"10\">and madest them [to be] unto our God a kingdom and priests; and they reign upon earth.</VERS>\r\n      <VERS vnumber=\"11\">And I saw, and I heard a voice of many angels round about the throne and the living creatures and the elders; and the number of them was ten thousand times ten thousand, and thousands of thousands;</VERS>\r\n      <VERS vnumber=\"12\">saying with a great voice,     Worthy is the Lamb that hath been slain to receive the power, and riches, and wisdom, and might and honor, and glory, and blessing.</VERS>\r\n      <VERS vnumber=\"13\">And every created thing which is in the heaven, and on the earth, and under the earth, and on the sea, and all things are in them, heard I saying,     Unto him that sitteth on the throne, and unto the Lamb, [be] the blessing, and the honor, and the glory, and the dominion, for ever and ever.</VERS>\r\n      <VERS vnumber=\"14\">And the four living creatures said, Amen. And the elders fell down and worshipped.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">And I saw when the Lamb opened one of the seven seals, and I heard one of the four living creatures saying as with a voice of thunder, Come.</VERS>\r\n      <VERS vnumber=\"2\">And I saw, and behold, a white horse, and he that sat thereon had a bow; and there was given unto him a crown: and he came forth conquering, and to conquer.</VERS>\r\n      <VERS vnumber=\"3\">And when he opened the second seal, I heard the second living creature saying, Come.</VERS>\r\n      <VERS vnumber=\"4\">And another [horse] came forth, a red horse: and to him that sat thereon it was given to take peace from the earth, and that they should slay one another: and there was given unto him a great sword.</VERS>\r\n      <VERS vnumber=\"5\">And when he opened the third seal, I heard the third living creature saying, Come. And I saw, and behold, a black horse; and he that sat thereon had a balance in his hand.</VERS>\r\n      <VERS vnumber=\"6\">And I heard as it were a voice in the midst of the four living creatures saying, A measure of wheat for a shilling, and three measures of barley for a shilling; and the oil and the wine hurt thou not.</VERS>\r\n      <VERS vnumber=\"7\">And when he opened the fourth seal, I heard the voice of the fourth living creature saying, Come.</VERS>\r\n      <VERS vnumber=\"8\">And I saw, and behold, a pale horse: and he that sat upon him, his name was Death; and Hades followed with him. And there was given unto them authority over the fourth part of the earth, to kill with sword, and with famine, and with death, and by the wild beasts of the earth.</VERS>\r\n      <VERS vnumber=\"9\">And when he opened the fifth seal, I saw underneath the altar the souls of them that had been slain for the word of God, and for the testimony which they held:</VERS>\r\n      <VERS vnumber=\"10\">and they cried with a great voice, saying, How long, O Master, the holy and true, dost thou not judge and avenge our blood on them that dwell on the earth?</VERS>\r\n      <VERS vnumber=\"11\">And there was given them to each one a white robe; and it was said unto them, that they should rest yet for a little time, until their fellow-servants also and their brethren, who should be killed even as they were, should have fulfilled [their course].</VERS>\r\n      <VERS vnumber=\"12\">And I saw when he opened the sixth seal, and there was a great earthquake; and the sun became black as sackcloth of hair, and the whole moon became as blood;</VERS>\r\n      <VERS vnumber=\"13\">and the stars of the heaven fell unto the earth, as a fig tree casteth her unripe figs when she is shaken of a great wind.</VERS>\r\n      <VERS vnumber=\"14\">And the heaven was removed as a scroll when it is rolled up; and every mountain and island were moved out of their places.</VERS>\r\n      <VERS vnumber=\"15\">And the kings of the earth, and the princes, and the chief captains, and the rich, and the strong, and every bondman and freeman, hid themselves in the caves and in the rocks of the mountains;</VERS>\r\n      <VERS vnumber=\"16\">and they say to the mountains and to the rocks, Fall on us, and hide us from the face of him that sitteth on the throne, and from the wrath of the Lamb:</VERS>\r\n      <VERS vnumber=\"17\">for the great day of their wrath is come; and who is able to stand?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">After his I saw four angels standing at the four corners of the earth, holding the four winds of the earth, that no wind should blow on the earth, or on the sea, or upon any tree.</VERS>\r\n      <VERS vnumber=\"2\">And I saw another angel ascend from the sunrising, having the seal of the living God: and he cried with a great voice to the four angels to whom it was given to hurt the earth and the sea,</VERS>\r\n      <VERS vnumber=\"3\">saying, Hurt not the earth, neither the sea, nor the trees, till we shall have sealed the servants of our God on their foreheads.</VERS>\r\n      <VERS vnumber=\"4\">And I heard the number of them that were sealed, a hundred and forty and four thousand, sealed out of every tribe of the children of Israel:</VERS>\r\n      <VERS vnumber=\"5\">Of the tribe of Judah [were] sealed twelve thousand: Of the tribe of Reuben twelve thousand; Of the tribe of Gad twelve thousand;</VERS>\r\n      <VERS vnumber=\"6\">Of the tribe of Asher twelve thousand; Of the tribe of Naphtali twelve thousand; Of the tribe of Manasseh twelve thousand;</VERS>\r\n      <VERS vnumber=\"7\">Of the tribe of Simeon twelve thousand; Of the tribe of Levi twelve thousand; Of the tribe of Issachar twelve thousand;</VERS>\r\n      <VERS vnumber=\"8\">Of the tribe of Zebulun twelve thousand; Of the tribe of Joseph twelve thousand; Of the tribe of Benjamin [were] sealed twelve thousand.</VERS>\r\n      <VERS vnumber=\"9\">After these things I saw, and behold, a great multitude, which no man could number, out of every nation and of [all] tribes and peoples and tongues, standing before the throne and before the Lamb, arrayed in white robes, and palms in their hands;</VERS>\r\n      <VERS vnumber=\"10\">and they cry with a great voice, saying,     Salvation unto our God who sitteth on the throne, and unto the Lamb.</VERS>\r\n      <VERS vnumber=\"11\">And all the angels were standing round about the throne, and [about] the elders and the four living creatures; and they fell before the throne on their faces, and worshipped God,</VERS>\r\n      <VERS vnumber=\"12\">saying,     Amen: Blessing, and glory, and wisdom, and thanksgiving, and honor, and power, and might, [be] unto our God for ever and ever. Amen.</VERS>\r\n      <VERS vnumber=\"13\">And one of the elders answered, saying unto me, These that are arrayed in white robes, who are they, and whence came they?</VERS>\r\n      <VERS vnumber=\"14\">And I say unto him, My lord, thou knowest. And he said to me, These are they that come of the great tribulation, and they washed their robes, and made them white in the blood of the Lamb.</VERS>\r\n      <VERS vnumber=\"15\">Therefore are they before the throne of God; and they serve him day and night in his temple: and he that sitteth on the throne shall spread his tabernacle over them.</VERS>\r\n      <VERS vnumber=\"16\">They shall hunger no more, neither thirst any more; neither shall the sun strike upon them, nor any heat:</VERS>\r\n      <VERS vnumber=\"17\">for the Lamb that is in the midst of the throne shall be their shepherd, and shall guide them unto fountains of waters of life: and God shall wipe away every tear from their eyes.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">And when he opened the seventh seal, there followed a silence in heaven about the space of half an hour.</VERS>\r\n      <VERS vnumber=\"2\">And I saw the seven angels that stand before God; and there were given unto them seven trumpets.</VERS>\r\n      <VERS vnumber=\"3\">And another angel came and stood over the altar, having a golden censer; and there was given unto him much incense, that he should add it unto the prayers of all the saints upon the golden altar which was before the throne.</VERS>\r\n      <VERS vnumber=\"4\">And the smoke of the incense, with the prayers of the saints, went up before God out of the angel`s hand.</VERS>\r\n      <VERS vnumber=\"5\">And the angel taketh the censer; and he filled it with the fire of the altar, and cast it upon the earth: and there followed thunders, and voices, and lightnings, and an earthquake.</VERS>\r\n      <VERS vnumber=\"6\">And the seven angels that had the seven trumpets prepared themselves to sound.</VERS>\r\n      <VERS vnumber=\"7\">And the first sounded, and there followed hail and fire, mingled with blood, and they were cast upon the earth: and the third part of the earth was burnt up, and the third part of the trees was burnt up, and all green grass was burnt up.</VERS>\r\n      <VERS vnumber=\"8\">And 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;</VERS>\r\n      <VERS vnumber=\"9\">and there died the third part of the creatures which were in the sea, [even] they that had life; and the third part of the ships was destroyed.</VERS>\r\n      <VERS vnumber=\"10\">And the third angel sounded, and there fell from heaven a great star, burning as a torch, and it fell upon the third part of the rivers, and upon the fountains of the waters;</VERS>\r\n      <VERS vnumber=\"11\">and 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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; that the third part of them should be darkened, and the day should not shine for the third part of it, and the night in like manner.</VERS>\r\n      <VERS vnumber=\"13\">And I saw, and I heard an eagle, flying in mid heaven, saying with a great voice, Woe, woe, woe, for them that dwell on the earth, by reason of the other voices of the trumpet of the three angels, who are yet to sound.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">And the fifth angel sounded, and I saw a star from heaven fallen unto the earth: and there was given to him the key of the pit of the abyss.</VERS>\r\n      <VERS vnumber=\"2\">And he opened the pit of the abyss; and there went up 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.</VERS>\r\n      <VERS vnumber=\"3\">And out of the smoke came forth locusts upon the earth; and power was given them, as the scorpions of the earth have power.</VERS>\r\n      <VERS vnumber=\"4\">And it was said unto them that they should not hurt the grass of the earth, neither any green thing, neither any tree, but only such men as have not the seal of God on their foreheads.</VERS>\r\n      <VERS vnumber=\"5\">And it was given them 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 it striketh a man.</VERS>\r\n      <VERS vnumber=\"6\">And in those days men shall seek death, and shall in no wise find it; and they shall desire to die, and death fleeth from them.</VERS>\r\n      <VERS vnumber=\"7\">And the shapes of the locusts were like unto horses prepared for war; and upon their heads as it were crowns like unto gold, and their faces were as men`s faces.</VERS>\r\n      <VERS vnumber=\"8\">And they had hair as the hair of women, and their teeth were as [teeth] of lions.</VERS>\r\n      <VERS vnumber=\"9\">And they had breastplates, as it were breastplates of iron; and the sound of their wings was as the sound of chariots, of many horses rushing to war.</VERS>\r\n      <VERS vnumber=\"10\">And they have tails like unto scorpions, and stings; and in their tails is their power to hurt men five months.</VERS>\r\n      <VERS vnumber=\"11\">They have over them as king the angel of the abyss: his name in Hebrew is Abaddon, and in the Greek [tongue] he hath the name Apollyon.</VERS>\r\n      <VERS vnumber=\"12\">The first Woe is past: behold, there come yet two Woes hereafter.</VERS>\r\n      <VERS vnumber=\"13\">And the sixth angel sounded, and I heard a voice from the horns of the golden altar which is before God,</VERS>\r\n      <VERS vnumber=\"14\">one saying to the sixth angel that had one trumpet, Loose the four angels that are bound at the great river Euphrates.</VERS>\r\n      <VERS vnumber=\"15\">And the four angels were loosed, that had been prepared for the hour and day and month and year, that they should kill the third part of men.</VERS>\r\n      <VERS vnumber=\"16\">And the number of the armies of the horsemen was twice ten thousand times ten thousand: I heard the number of them.</VERS>\r\n      <VERS vnumber=\"17\">And thus I saw the horses in the vision, and them that sat on them, having breastplates [as] of fire and of hyacinth and of brimstone: and the heads of lions; and out of their mouths proceedeth fire and smoke and brimstone.</VERS>\r\n      <VERS vnumber=\"18\">By these three plagues was the third part of men killed, by the fire and the smoke and the brimstone, which proceeded out of their mouths.</VERS>\r\n      <VERS vnumber=\"19\">For the power of the horses is in their mouth, and in their tails: for their tails are like unto serpents, and have heads; and with them they hurt.</VERS>\r\n      <VERS vnumber=\"20\">And the rest of mankind, who were not killed with these plagues, repented not of the works of their hands, that they should not worship demons, and the idols of gold, and of silver, and of brass, and of stone, and of wood; which can neither see, nor hear, nor walk:</VERS>\r\n      <VERS vnumber=\"21\">and they repented not of their murders, nor of their sorceries, nor of their fornication, nor of their thefts.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">And I saw another strong angel coming down out of heaven, arrayed with a cloud; and the rainbow was upon his head, and his face was as the sun, and his feet as pillars of fire;</VERS>\r\n      <VERS vnumber=\"2\">and he had in his hand a little book open: and he set his right foot upon the sea, and his left upon the earth;</VERS>\r\n      <VERS vnumber=\"3\">and he cried with a great voice, as a lion roareth: and when he cried, the seven thunders uttered their voices.</VERS>\r\n      <VERS vnumber=\"4\">And when the seven thunders uttered [their voices], I was about to write: and I heard a voice from heaven saying, Seal up the things which the seven thunders uttered, and write them not.</VERS>\r\n      <VERS vnumber=\"5\">And the angel that I saw standing upon the sea and upon the earth lifted up his right hand to heaven,</VERS>\r\n      <VERS vnumber=\"6\">and sware by him that liveth for ever and ever, who created the heaven and the things that are therein, and the earth and the things that are therein, and the sea and the things that are therein, that there shall be delay no longer:</VERS>\r\n      <VERS vnumber=\"7\">but in the days of the voice of the seventh angel, when he is about to sound, then is finished they mystery of God, according to the good tidings which he declared to his servants the prophets.</VERS>\r\n      <VERS vnumber=\"8\">And the voice which I heard from heaven, [I heard it] again speaking with me, and saying, Go, take the book which is open in the hand of the angel that standeth upon the sea and upon the earth.</VERS>\r\n      <VERS vnumber=\"9\">And I went unto the angel, saying unto him that he should give me the little book. And he saith unto me, Take it, and eat it up; and it shall make thy belly bitter, but in thy mouth it shall be sweet as honey.</VERS>\r\n      <VERS vnumber=\"10\">And 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 when I had eaten it, my belly was made bitter.</VERS>\r\n      <VERS vnumber=\"11\">And they say unto me, Thou must prophesy again over many peoples and nations and tongues and kings.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">And there was given me a reed like unto a rod: and one said, Rise, and measure the temple of God, and the altar, and them that worship therein.</VERS>\r\n      <VERS vnumber=\"2\">And the court which is without the temple leave without, and measure it not; for it hath been given unto the nations: and the holy city shall they tread under foot forty and two months.</VERS>\r\n      <VERS vnumber=\"3\">And I will give unto my two witnesses, and they shall prophesy a thousand two hundred and threescore days, clothed in sackcloth.</VERS>\r\n      <VERS vnumber=\"4\">These are the two olive trees and the two candlesticks, standing before the Lord of the earth.</VERS>\r\n      <VERS vnumber=\"5\">And if any man desireth to hurt them, fire proceedeth out of their mouth and devoureth their enemies; and if any man shall desire to hurt them, in this manner must he be killed.</VERS>\r\n      <VERS vnumber=\"6\">These have the power to shut the heaven, that it rain not during the days of their prophecy: and they have power over the waters to turn them into blood, and to smite the earth with every plague, as often as they shall desire.</VERS>\r\n      <VERS vnumber=\"7\">And when they shall have finished their testimony, the beast that cometh up out of the abyss shall make war with them, and overcome them, and kill them.</VERS>\r\n      <VERS vnumber=\"8\">And their dead bodies [lie] in the street of the great city, which spiritually is called Sodom and Egypt, where also their Lord was crucified.</VERS>\r\n      <VERS vnumber=\"9\">And from among the peoples and tribes and tongues and nations do [men] look upon their dead bodies three days and a half, and suffer not their dead bodies to be laid in a tomb.</VERS>\r\n      <VERS vnumber=\"10\">And they that dwell on the earth rejoice over them, and make merry; and they shall send gifts one to another; because these two prophets tormented them that dwell on the earth.</VERS>\r\n      <VERS vnumber=\"11\">And after the three days and a half the breath of life from God entered into them, and they stood upon their feet; and great fear fell upon them that beheld them.</VERS>\r\n      <VERS vnumber=\"12\">And they heard a great voice from heaven saying unto them, Come up hither. And they went up into heaven in the cloud; and their enemies beheld them.</VERS>\r\n      <VERS vnumber=\"13\">And in that hour there was a great earthquake, and the tenth part of the city fell; and there were killed in the earthquake seven thousand persons: and the rest were affrighted, and gave glory to the God of heaven.</VERS>\r\n      <VERS vnumber=\"14\">The second Woe is past: behold, the third Woe cometh quickly.</VERS>\r\n      <VERS vnumber=\"15\">And the seventh angel sounded; and there followed great voices in heaven, and they said,     The kingdom of the world is become [the kingdom] of our Lord, and of his Christ: and he shall reign for ever and ever.</VERS>\r\n      <VERS vnumber=\"16\">And the four and twenty elders, who sit before God on their thrones, fell upon their faces and worshipped God,</VERS>\r\n      <VERS vnumber=\"17\">saying,     We give thee thanks, O Lord God, the Almighty, who art and who wast; because thou hast taken thy great power, and didst reign.</VERS>\r\n      <VERS vnumber=\"18\">And the nations were wroth, and thy wrath came, and the time of the dead to be judged, and [the time] to give their reward to thy servants the prophets, and to the saints, and to them that fear thy name, the small and the great; and to destroy them that destroy the earth.</VERS>\r\n      <VERS vnumber=\"19\">And there was opened the temple of God that is in heaven; and there was seen in his temple the ark of his covenant; and there followed lightnings, and voices, and thunders, and an earthquake, and great hail.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">And a great sign was seen in heaven: a woman arrayed with the sun, and the moon under her feet, and upon her head a crown of twelve stars;</VERS>\r\n      <VERS vnumber=\"2\">and she was the child; and she crieth out, travailing in birth, and in pain to be delivered.</VERS>\r\n      <VERS vnumber=\"3\">And there was seen another sign in heaven: and behold, a great red dragon, having seven heads and ten horns, and upon his heads seven diadems.</VERS>\r\n      <VERS vnumber=\"4\">And his tail draweth the third part of the stars of heaven, and did cast them to the earth: and the dragon standeth before the woman that is about to be delivered, that when she is delivered he may devour her child.</VERS>\r\n      <VERS vnumber=\"5\">And she was delivered of a son, a man child, who is to rule all the nations with a rod of iron: and her child was caught up unto God, and unto his throne.</VERS>\r\n      <VERS vnumber=\"6\">And the woman fled into the wilderness, where she hath a place prepared of God, that there they may nourish her a thousand two hundred and threescore days.</VERS>\r\n      <VERS vnumber=\"7\">And there was war in heaven: Michael and his angels [going forth] to war with the dragon; and the dragon warred and his angels;</VERS>\r\n      <VERS vnumber=\"8\">And they prevailed not, neither was their place found any more in heaven.</VERS>\r\n      <VERS vnumber=\"9\">And the great dragon was cast down, the old serpent, he that is called the Devil and Satan, the deceiver of the whole world; he was cast down to the earth, and his angels were cast down with him.</VERS>\r\n      <VERS vnumber=\"10\">And I heard a great voice in heaven, saying,     Now is come the salvation, and the power, and the kingdom of our God, and the authority of his Christ: for the accuser of our brethren is cast down, who accuseth them before our God day and night.</VERS>\r\n      <VERS vnumber=\"11\">And they overcame him because of the blood of the Lamb, and because of the word of their testimony; and they loved not their life even unto death.</VERS>\r\n      <VERS vnumber=\"12\">Therefore rejoice, O heavens, and ye that dwell in them. Woe for the earth and for the sea: because the devil is gone down unto you, having great wrath, knowing that he hath but a short time.</VERS>\r\n      <VERS vnumber=\"13\">And when the dragon saw that he was cast down to the earth, he persecuted the woman that brought forth the man [child].</VERS>\r\n      <VERS vnumber=\"14\">And there were given to the woman the two wings of the great eagle, that she might fly into the wilderness unto her place, where she is nourished for a time, and times, and half a time, from the face of the serpent.</VERS>\r\n      <VERS vnumber=\"15\">And the serpent cast out of his mouth after the woman water as a river, that he might cause her to be carried away by the stream.</VERS>\r\n      <VERS vnumber=\"16\">And the earth helped the woman, and the earth opened her mouth and swallowed up the river which the dragon cast out of his mouth.</VERS>\r\n      <VERS vnumber=\"17\">And the dragon waxed wroth with the woman, and went away to make war with the rest of her seed, that keep the commandments of God, and hold the testimony of Jesus:</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">and he stood upon the sand of the sea. And I saw a beast coming up out of the sea, having ten horns, and seven heads, and on his horns ten diadems, and upon his heads names of blasphemy.</VERS>\r\n      <VERS vnumber=\"2\">And 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 throne, and great authority.</VERS>\r\n      <VERS vnumber=\"3\">And [I saw] one of his heads as though it had been smitten unto death; and his death-stroke was healed: and the whole earth wondered after the beast;</VERS>\r\n      <VERS vnumber=\"4\">and they worshipped the dragon, because he gave his authority unto the beast; and they worshipped the beast, saying, Who is like unto the beast? And who is able to war with him?</VERS>\r\n      <VERS vnumber=\"5\">and there was given to him a mouth speaking great things and blasphemies; and there was given to him authority to continue forty and two months.</VERS>\r\n      <VERS vnumber=\"6\">And he opened his mouth for blasphemies against God, to blaspheme his name, and his tabernacle, [even] them that dwell in the heaven.</VERS>\r\n      <VERS vnumber=\"7\">And it was given unto him to make war with the saints, and to overcome them: and there was given to him authority over every tribe and people and tongue and nation.</VERS>\r\n      <VERS vnumber=\"8\">And all that dwell on the earth shall worship him, [every one] whose name hath not been written from the foundation of the world in the book of life of the Lamb that hath been slain.</VERS>\r\n      <VERS vnumber=\"9\">If any man hath an ear, let him hear.</VERS>\r\n      <VERS vnumber=\"10\">If any man [is] for captivity, into captivity he goeth: if any man shall kill with the sword, with the sword must he be killed. Here is the patience and the faith of the saints.</VERS>\r\n      <VERS vnumber=\"11\">And I saw another beast coming up out of the earth; and he had two horns like unto lamb, and he spake as a dragon.</VERS>\r\n      <VERS vnumber=\"12\">And he exerciseth all the authority of the first beast in his sight. And he maketh the earth and them dwell therein to worship the first beast, whose death-stroke was healed.</VERS>\r\n      <VERS vnumber=\"13\">And he doeth great signs, that he should even make fire to come down out of heaven upon the earth in the sight of men.</VERS>\r\n      <VERS vnumber=\"14\">And he deceiveth them that dwell on the earth by reason of the signs which it was given him 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 who hath the stroke of the sword and lived.</VERS>\r\n      <VERS vnumber=\"15\">And it was given [unto him] to give breath to it, [even] to the image to the breast, that the image of the beast should both speak, and cause that as many as should not worship the image of the beast should be killed.</VERS>\r\n      <VERS vnumber=\"16\">And he causeth all, the small and the great, and the rich and the poor, and the free and the bond, that there be given them a mark on their right hand, or upon their forehead;</VERS>\r\n      <VERS vnumber=\"17\">and that no man should be able to buy or to sell, save he that hath the mark, [even] the name of the beast or the number of his name.</VERS>\r\n      <VERS vnumber=\"18\">Here is wisdom. He that hath understanding, let him count the number of the beast; for it is the number of a man: and his number is Six hundred and sixty and six.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">And I saw, and behold, the Lamb standing on the mount Zion, and with him a hundred and forty and four thousand, having his name, and the name of his Father, written on their foreheads.</VERS>\r\n      <VERS vnumber=\"2\">And I heard a voice from heaven, as the voice of many waters, and as the voice of a great thunder: and the voice which I heard [was] as [the voice] of harpers harping with their harps:</VERS>\r\n      <VERS vnumber=\"3\">and they sing as it were a new song before the throne, and before the four living creatures and the elders: and no man could learn the song save the hundred and forty and four thousand, [even] they that had been purchased out of the earth.</VERS>\r\n      <VERS vnumber=\"4\">These are they that were not defiled with women; for they are virgins. These [are] they that follow the Lamb whithersoever he goeth. These were purchased from among men, [to be] the firstfruits unto God and unto the Lamb.</VERS>\r\n      <VERS vnumber=\"5\">And in their mouth was found no lie: they are without blemish.</VERS>\r\n      <VERS vnumber=\"6\">And I saw another angel flying in mid heaven, having eternal good tidings to proclaim unto them that dwell on the earth, and unto every nation and tribe and tongue and people;</VERS>\r\n      <VERS vnumber=\"7\">and he saith with a great voice, Fear God, and give him glory; for the hour of his judgment is come: and worship him that made the heaven and the earth and sea and fountains of waters.</VERS>\r\n      <VERS vnumber=\"8\">And another, a second angel, followed, saying, Fallen, fallen is Babylon the great, that hath made all the nations to drink of the wine of the wrath of her fornication.</VERS>\r\n      <VERS vnumber=\"9\">And another angel, a third, followed them, saying with a great voice, If any man worshippeth the beast and his image, and receiveth a mark on his forehead, or upon his hand,</VERS>\r\n      <VERS vnumber=\"10\">he also shall drink of the wine of the wrath of God, which is prepared unmixed in the cup of his anger; and he shall be tormented with fire and brimstone in the presence of the holy angels, and in the presence of the Lamb:</VERS>\r\n      <VERS vnumber=\"11\">and the smoke of their torment goeth up for ever and ever; and they have no rest day and night, they that worship the beast and his image, and whoso receiveth the mark of his name.</VERS>\r\n      <VERS vnumber=\"12\">Here is the patience of the saints, they that keep the commandments of God, and the faith of Jesus.</VERS>\r\n      <VERS vnumber=\"13\">And I heard the voice from heaven saying, Write, Blessed are the dead who die in the Lord from henceforth: yea, saith the Spirit, that they may rest from their labors; for their works follow with them.</VERS>\r\n      <VERS vnumber=\"14\">And I saw, and behold, a white cloud; and on the cloud [I saw] one sitting like unto a son of man, having on his head a golden crown, and in his hand sharp sickle.</VERS>\r\n      <VERS vnumber=\"15\">And another angel came out from the temple, crying with a great voice to him that sat on the cloud, Send forth thy sickle, and reap: for the hour to reap is come; for the harvest of the earth is ripe.</VERS>\r\n      <VERS vnumber=\"16\">And he that sat on the cloud cast his sickle upon the earth; and the earth was reaped.</VERS>\r\n      <VERS vnumber=\"17\">Another angel came out from the temple which is in heaven, he also having a sharp sickle.</VERS>\r\n      <VERS vnumber=\"18\">And another angel came out from the altar, he that hath power over fire; and he called with a great voice to him that had the sharp sickle, saying, Send forth thy sharp sickle, and gather the clusters of the vine of the earth; for her grapes are fully ripe.</VERS>\r\n      <VERS vnumber=\"19\">And the angel cast his sickle into the earth, and gathered the vintage of the earth, and cast it into the winepress, the great [winepress], of the wrath of God.</VERS>\r\n      <VERS vnumber=\"20\">And the winepress are trodden without the city, and there came out blood from the winepress, even unto the bridles of the horses, as far as a thousand and six hundred furlongs.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">And I saw another sign in heaven, great and marvellous, seven angels having seven plagues, [which are] the last, for in them is finished the wrath of God.</VERS>\r\n      <VERS vnumber=\"2\">And I saw as it were a sea of glass mingled with fire; and them that come off victorious from the beast, and from his image, and from the number of his name, standing by the sea of glass, having harps of God.</VERS>\r\n      <VERS vnumber=\"3\">And they sing the song of Moses the servant of God, and the song of the Lamb, saying,     Great and marvellous are thy works, O Lord God, the Almighty; righteous and true are thy ways, thou King of the ages.</VERS>\r\n      <VERS vnumber=\"4\">Who shall not fear, O Lord, and glorify thy name? for thou only art holy; for all the nations shall come and worship before thee; for thy righteous acts have been made manifest.</VERS>\r\n      <VERS vnumber=\"5\">And after these things I saw, and the temple of the tabernacle of the testimony in heaven was opened:</VERS>\r\n      <VERS vnumber=\"6\">and there came out from the temple the seven angels that had the seven plagues, arrayed with [precious] stone, pure [and] bright, and girt about their breasts with golden girdles.</VERS>\r\n      <VERS vnumber=\"7\">And one of the four living creatures gave unto the seven angels seven golden bowls full of the wrath of God, who liveth for ever and ever.</VERS>\r\n      <VERS vnumber=\"8\">And the temple was filled with smoke from the glory of God, and from his power; and none was able to enter into the temple, till the seven plagues of the seven angels should be finished.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">And I heard a great voice out of the temple, saying to the seven angels, Go ye, and pour out the seven bowls of the wrath of God into the earth.</VERS>\r\n      <VERS vnumber=\"2\">And the first went, and poured out his bowl into the earth; and it became a noisome and grievous sore upon the men that had the mark of the beast, and that worshipped his image.</VERS>\r\n      <VERS vnumber=\"3\">And the second poured out his bowl into the sea; and it became blood as of a dead man; and every living soul died, [even] the things that were in the sea.</VERS>\r\n      <VERS vnumber=\"4\">And the third poured out his bowl into the rivers and the fountains of the waters; and it became blood.</VERS>\r\n      <VERS vnumber=\"5\">And I heard the angel of the waters saying, Righteous art thou, who art and who wast, thou Holy One, because thou didst thus judge:</VERS>\r\n      <VERS vnumber=\"6\">for they poured out the blood of the saints and the prophets, and blood hast thou given them to drink: they are worthy.</VERS>\r\n      <VERS vnumber=\"7\">And I heard the altar saying, Yea, O Lord God, the Almighty, true and righteous are thy judgments.</VERS>\r\n      <VERS vnumber=\"8\">And the fourth poured out his bowl upon the sun; and it was given unto it to scorch men with fire.</VERS>\r\n      <VERS vnumber=\"9\">And men were scorched men with great heat: and they blasphemed the name of God who hath the power over these plagues; and they repented not to give him glory.</VERS>\r\n      <VERS vnumber=\"10\">And the fifth poured out his bowl upon the throne of the beast; and his kingdom was darkened; and they gnawed their tongues for pain,</VERS>\r\n      <VERS vnumber=\"11\">and they blasphemed the God of heaven because of their pains and their sores; and they repented not of their works.</VERS>\r\n      <VERS vnumber=\"12\">And the sixth poured out his bowl upon the great river, the [river] Euphrates; and the water thereof was dried up, that the way might by made ready for the kings that [come] from the sunrising.</VERS>\r\n      <VERS vnumber=\"13\">And I saw [coming] out of the mouth of the dragon, and out of the mouth of the beast, and out of the mouth of the false prophet, three unclean spirits, as it were frogs:</VERS>\r\n      <VERS vnumber=\"14\">for they are spirits of demons, working signs; which go forth unto the kings of the whole world, to gather them together unto the war of the great day of God, the Almighty.</VERS>\r\n      <VERS vnumber=\"15\">(Behold, I come as a thief. Blessed is he that watcheth, and keepeth his garments, lest he walked naked, and they see his shame.)</VERS>\r\n      <VERS vnumber=\"16\">And they gathered them together into the place which is called in Hebrew Har-magedon.</VERS>\r\n      <VERS vnumber=\"17\">And the seventh poured out his bowl upon the air; and there came forth a great voice out of the temple, from the throne, saying, It is done:</VERS>\r\n      <VERS vnumber=\"18\">and there were lightnings, and voices, and thunders; and there was a great earthquake, such as was not since there were men upon the earth, so great an earthquake, so mighty.</VERS>\r\n      <VERS vnumber=\"19\">And the great city was divided into three parts, and the cities of the nations fell: and Babylon the great was remembered in the sight of God, to give unto her the cup of the wine of the fierceness of his wrath.</VERS>\r\n      <VERS vnumber=\"20\">And every island fled away, and the mountains were not found.</VERS>\r\n      <VERS vnumber=\"21\">And great hail, [every stone] about the weight of a talent, cometh down out of heaven upon men: and men blasphemed God because of the plague of the hail; for the plague thereof is exceeding great.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"17\">\r\n      <VERS vnumber=\"1\">And there came one of the seven angels that had the seven bowls, and spake with me, saying, Come hither, I will show thee the judgment of the great harlot that sitteth upon many waters;</VERS>\r\n      <VERS vnumber=\"2\">with whom the kings of the earth committed fornication, and they that dwell in the earth were made drunken with the wine of her fornication.</VERS>\r\n      <VERS vnumber=\"3\">And he carried me away in the Spirit into a wilderness: and I saw a woman sitting upon a scarlet-colored beast, full of names of blasphemy, having seven heads and ten horns.</VERS>\r\n      <VERS vnumber=\"4\">And the woman was arrayed in purple and scarlet, and decked with gold and precious stone and pearls, having in her hand a golden cup full of abominations, even the unclean things of her fornication,</VERS>\r\n      <VERS vnumber=\"5\">and upon her forehead a name written, MYSTERY, BABYLON THE GREAT, THE MOTHER OF THE HARLOTS AND OF THE ABOMINATIONS OF THE EARTH.</VERS>\r\n      <VERS vnumber=\"6\">And 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 a great wonder.</VERS>\r\n      <VERS vnumber=\"7\">And the angel said unto me, Wherefore didst thou wonder? I will tell thee the mystery of the woman, and of the beast that carrieth her, which hath the seven heads and the ten horns.</VERS>\r\n      <VERS vnumber=\"8\">The beast that thou sawest was, and is not; and is about to come up out of the abyss, and to go into perdition. And they that dwell on the earth shall wonder, [they] whose name hath not been written in the book of life from the foundation of the world, when they behold the beast, how that he was, and is not, and shall come.</VERS>\r\n      <VERS vnumber=\"9\">Here is the mind that hath wisdom. The seven heads are seven mountains, on which the woman sitteth:</VERS>\r\n      <VERS vnumber=\"10\">and they are seven kings; the five are fallen, the one is, the other is not yet come; and when he cometh, he must continue a little while.</VERS>\r\n      <VERS vnumber=\"11\">And the beast that was, and is not, is himself also an eighth, and is of the seven; and he goeth into perdition.</VERS>\r\n      <VERS vnumber=\"12\">And the ten horns that thou sawest are ten kings, who have received no kingdom as yet; but they receive authority as kings, with the beast, for one hour.</VERS>\r\n      <VERS vnumber=\"13\">These have one mind, and they give their power and authority unto the beast.</VERS>\r\n      <VERS vnumber=\"14\">These shall war against the Lamb, and the Lamb shall overcome them, for he is Lord of lords, and King of kings; and they [also shall overcome] that are with him, called and chosen and faithful.</VERS>\r\n      <VERS vnumber=\"15\">And he saith unto me, The waters which thou sawest, where the harlot sitteth, are peoples, and multitudes, and nations, and tongues.</VERS>\r\n      <VERS vnumber=\"16\">And the ten horns which thou sawest, and the beast, these shall hate the harlot, and shall make her desolate and naked, and shall eat her flesh, and shall burn her utterly with fire.</VERS>\r\n      <VERS vnumber=\"17\">For God did put in their hearts to do his mind, and to come to one mind, and to give their kingdom unto the beast, until the words of God should be accomplished.</VERS>\r\n      <VERS vnumber=\"18\">And the woman whom thou sawest is the great city, which reigneth over the kings of the earth.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"18\">\r\n      <VERS vnumber=\"1\">After these things I saw another angel coming down out of heaven, having great authority; and the earth was lightened with his glory.</VERS>\r\n      <VERS vnumber=\"2\">And he cried with a mighty voice, saying, Fallen, fallen is Babylon the great, and is become a habitation of demons, and a hold of every unclean spirit, and a hold of every unclean and hateful bird.</VERS>\r\n      <VERS vnumber=\"3\">For by the wine of the wrath of her fornication all the nations are fallen; and the kings of the earth committed fornication with her, and the merchants of the earth waxed rich by the power of her wantonness.</VERS>\r\n      <VERS vnumber=\"4\">And I heard another voice from heaven, saying, Come forth, my people, out of her, that ye have no fellowship with her sins, and that ye receive not of her plagues:</VERS>\r\n      <VERS vnumber=\"5\">for her sins have reached even unto heaven, and God hath remembered her iniquities.</VERS>\r\n      <VERS vnumber=\"6\">Render unto her even as she rendered, and double [unto her] the double according to her works: in the cup which she mingled, mingle unto her double.</VERS>\r\n      <VERS vnumber=\"7\">How much soever she glorified herself, and waxed wanton, so much give her of torment and mourning: for she saith in her heart, I sit a queen, and am no widow, and shall in no wise see mourning.</VERS>\r\n      <VERS vnumber=\"8\">Therefore in one day shall her plagues come, death, and mourning, and famine; and she shall be utterly burned with fire; for strong is the Lord God who judged her.</VERS>\r\n      <VERS vnumber=\"9\">And the kings of the earth, who committed fornication and lived wantonly with her, shall weep and wail over her, when they look upon the smoke of her burning,</VERS>\r\n      <VERS vnumber=\"10\">standing afar off for the fear of her torment, saying, Woe, woe, the great city, Babylon, the strong city! for in one hour is thy judgment come.</VERS>\r\n      <VERS vnumber=\"11\">And the merchants of the earth weep and mourn over her, for no man buyeth their merchandise any more;</VERS>\r\n      <VERS vnumber=\"12\">merchandise of gold, and silver, and precious stone, and pearls, and fine linen, and purple, and silk, and scarlet; and all thyine wood, and every vessel of ivory, and every vessel made of most precious wood, and of brass, and iron, and marble;</VERS>\r\n      <VERS vnumber=\"13\">and cinnamon, and spice, and incense, and ointment, and frankincense, and wine, and oil, and fine flour, and wheat, and cattle, and sheep; and [merchandise] of horses and chariots and slaves; and souls of men.</VERS>\r\n      <VERS vnumber=\"14\">And the fruits which thy soul lusted after are gone from thee, and all things that were dainty and sumptuous are perished from thee, and [men] shall find them no more at all.</VERS>\r\n      <VERS vnumber=\"15\">The merchants of these things, who were made rich by her, shall stand afar off for the fear of her torment, weeping and mourning;</VERS>\r\n      <VERS vnumber=\"16\">saying, Woe, woe, the great city, she that was arrayed in fine linen and purple and scarlet, and decked with gold and precious stone and pearl!</VERS>\r\n      <VERS vnumber=\"17\">for in an hour so great riches is made desolate. And every shipmaster, and every one that saileth any wither, and mariners, and as many as gain their living by sea, stood afar off,</VERS>\r\n      <VERS vnumber=\"18\">and cried out as they looked upon the smoke of her burning, saying, What [city] is like the great city?</VERS>\r\n      <VERS vnumber=\"19\">And they cast dust on their heads, and cried, weeping and mourning, saying, Woe, woe, the great city, wherein all that had their ships in the sea were made rich by reason of her costliness! for in one hour is she made desolate.</VERS>\r\n      <VERS vnumber=\"20\">Rejoice over her, thou heaven, and ye saints, and ye apostles, and ye prophets; for God hath judged your judgment on her.</VERS>\r\n      <VERS vnumber=\"21\">And a strong angel took up a stone as it were a great millstone and cast it into the sea, saying, Thus with a mighty fall shall Babylon, the great city, be cast down, and shall be found no more at all.</VERS>\r\n      <VERS vnumber=\"22\">And the voice of harpers and minstrels and flute-players and trumpeters shall be heard no more at all in thee; and no craftsman, of whatsoever craft, shall be found any more at all in thee; and the voice of a mill shall be heard no more at all in thee;</VERS>\r\n      <VERS vnumber=\"23\">and the light of a lamp 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 princes of the earth; for with thy sorcery were all the nations deceived.</VERS>\r\n      <VERS vnumber=\"24\">And in her was found the blood of prophets and of saints, and of all that have been slain upon the earth.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"19\">\r\n      <VERS vnumber=\"1\">After these things I heard as it were a great voice of a great multitude in heaven, saying,     Hallelujah; Salvation, and glory, and power, belong to our God:</VERS>\r\n      <VERS vnumber=\"2\">for true and righteous are his judgments; for he hath judged the great harlot, her that corrupted the earth with her fornication, and he hath avenged the blood of his servants at her hand.</VERS>\r\n      <VERS vnumber=\"3\">And a second time they say, Hallelujah. And her smoke goeth up for ever and ever.</VERS>\r\n      <VERS vnumber=\"4\">And the four and twenty elders and the four living creatures fell down and worshipped God that sitteth on the throne, saying, Amen; Hallelujah.</VERS>\r\n      <VERS vnumber=\"5\">And a voice came forth from the throne, saying,     Give praise to our God, all ye his servants, ye that fear him, the small and the great.</VERS>\r\n      <VERS vnumber=\"6\">And I heard as it were the voice of a great multitude, and as the voice of many waters, and as the voice of mighty thunders, saying,     Hallelujah: for the Lord our God, the Almighty, reigneth.</VERS>\r\n      <VERS vnumber=\"7\">Let us rejoice and be exceeding glad, and let us give the glory unto him: for the marriage of the Lamb is come, and his wife hath made herself ready.</VERS>\r\n      <VERS vnumber=\"8\">And it was given unto her that she should array herself in fine linen, bright [and] pure: for the fine linen is the righteous acts of the saints.</VERS>\r\n      <VERS vnumber=\"9\">And he saith unto me, Write, Blessed are they that are bidden to the marriage supper of the Lamb. And he saith unto me, These are true words of God.</VERS>\r\n      <VERS vnumber=\"10\">And I fell down before his feet to worship him. And he saith unto me, See thou do it not: I am a fellow-servant with thee and with thy brethren that hold the testimony of Jesus: worship God; for the testimony of Jesus is the spirit of prophecy.</VERS>\r\n      <VERS vnumber=\"11\">And I saw the heaven opened; and behold, a white horse, and he that sat thereon called Faithful and True; and in righteous he doth judge and make war.</VERS>\r\n      <VERS vnumber=\"12\">And his eyes [are] a flame of fire, and upon his head [are] many diadems; and he hath a name written which no one knoweth but he himself.</VERS>\r\n      <VERS vnumber=\"13\">And he [is] arrayed in a garment sprinkled with blood: and his name is called The Word of God.</VERS>\r\n      <VERS vnumber=\"14\">And the armies which are in heaven followed him upon white horses, clothed in fine linen, white [and] pure.</VERS>\r\n      <VERS vnumber=\"15\">And out of his mouth proceedeth 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 of the wrath of God, the Almighty.</VERS>\r\n      <VERS vnumber=\"16\">And he hath on his garment and on his thigh a name written, KINGS OF KINGS, AND LORD OF LORDS.</VERS>\r\n      <VERS vnumber=\"17\">And I saw an angel standing in the sun; and he cried with a loud voice, saying to all the birds that fly in mid heaven, Come [and] be gathered together unto the great supper of God;</VERS>\r\n      <VERS vnumber=\"18\">that 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 thereon, and the flesh of all men, both free and bond, and small and great.</VERS>\r\n      <VERS vnumber=\"19\">And I saw the beast, and the kings of the earth, and their armies, gathered together to make war against him that sat upon the horse, and against his army.</VERS>\r\n      <VERS vnumber=\"20\">And the beast was taken, and with him the false prophet that wrought the signs in his sight, wherewith he deceived them that had received the mark of the beast and them that worshipped his image: they two were cast alive into the lake of fire that burneth with brimstone:</VERS>\r\n      <VERS vnumber=\"21\">and the rest were killed with the sword of him that sat upon the horse, [even the sword] which came forth out of his mouth: and all the birds were filled with their flesh.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"20\">\r\n      <VERS vnumber=\"1\">And I saw an angel coming down out of heaven, having the key of the abyss and a great chain in his hand.</VERS>\r\n      <VERS vnumber=\"2\">And he laid hold on the dragon, the old serpent, which is the Devil and Satan, and bound him for a thousand years,</VERS>\r\n      <VERS vnumber=\"3\">and cast him into the abyss, and shut [it], and sealed [it] over him, that he should deceive the nations no more, until the thousand years should be finished: after this he must be loosed for a little time.</VERS>\r\n      <VERS vnumber=\"4\">And I saw thrones, and they sat upon them, and judgment was given unto them: and [I saw] the souls of them that had been beheaded for the testimony of Jesus, and for the word of God, and such as worshipped not the beast, neither his image, and received not the mark upon their forehead and upon their hand; and they lived, and reigned with Christ a thousand years.</VERS>\r\n      <VERS vnumber=\"5\">The rest of the dead lived not until the thousand years should be finished. This is the first resurrection.</VERS>\r\n      <VERS vnumber=\"6\">Blessed and holy is he that hath part in the first resurrection: over these the second death hath no power; but they shall be priests of God and of Christ, and shall reign with him a thousand years.</VERS>\r\n      <VERS vnumber=\"7\">And when the thousand years are finished, Satan shall be loosed out of his prison,</VERS>\r\n      <VERS vnumber=\"8\">and shall come forth to deceive the nations which are in the four corners of the earth, Gog and Magog, to gather them together to the war: the number of whom is as the sand of the sea.</VERS>\r\n      <VERS vnumber=\"9\">And they went up over the breadth of the earth, and compassed the camp of the saints about, and the beloved city: and fire came down out of heaven, and devoured them.</VERS>\r\n      <VERS vnumber=\"10\">And the devil that deceived them was cast into the lake of fire and brimstone, where are also the beast and the false prophet; and they shall be tormented day and night for ever and ever.</VERS>\r\n      <VERS vnumber=\"11\">And I saw a great white throne, and him that sat upon it, from whose face the earth and the heaven fled away; and there was found no place for them.</VERS>\r\n      <VERS vnumber=\"12\">And I saw the dead, the great and the small, standing before the throne; and books were opened: and another book was opened, which is [the book] of life: and the dead were judged out of the things which were written in the books, according to their works.</VERS>\r\n      <VERS vnumber=\"13\">And the sea gave up the dead that were in it; and death and Hades gave up the dead that were in them: and they were judged every man according to their works.</VERS>\r\n      <VERS vnumber=\"14\">And death and Hades were cast into the lake of fire. This is the second death, [even] the lake of fire.</VERS>\r\n      <VERS vnumber=\"15\">And if any was not found written in the book of life, he was cast into the lake of fire.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"21\">\r\n      <VERS vnumber=\"1\">And I saw a new heaven and a new earth: for the first heaven and the first earth are passed away; and the sea is no more.</VERS>\r\n      <VERS vnumber=\"2\">And I saw the holy city, new Jerusalem, coming down out of heaven of God, made ready as a bride adorned for her husband.</VERS>\r\n      <VERS vnumber=\"3\">And I heard a great voice out of the throne saying, Behold, the tabernacle of God is with men, and he shall dwell with them, and they shall be his peoples, and God himself shall be with them, [and be] their God:</VERS>\r\n      <VERS vnumber=\"4\">and he shall wipe away every tear from their eyes; and death shall be no more; neither shall there be mourning, nor crying, nor pain, any more: the first things are passed away.</VERS>\r\n      <VERS vnumber=\"5\">And he that sitteth on the throne said, Behold, I make all things new. And he saith, Write: for these words are faithful and true.</VERS>\r\n      <VERS vnumber=\"6\">And he said unto me, They are come to pass. I am the Alpha and the Omega, the beginning and the end. I will give unto him that is athirst of the fountain of the water of life freely.</VERS>\r\n      <VERS vnumber=\"7\">He that overcometh shall inherit these things; and I will be his God, and he shall be my son.</VERS>\r\n      <VERS vnumber=\"8\">But for the fearful, and unbelieving, and abominable, and murderers, and fornicators, and sorcerers, and idolaters, and all liars, their part [shall be] in the lake that burneth with fire and brimstone; which is the second death.</VERS>\r\n      <VERS vnumber=\"9\">And there came one of the seven angels who had the seven bowls, who were laden with the seven last plagues; and he spake with me, saying, Come hither, I will show thee the bride, the wife of the Lamb.</VERS>\r\n      <VERS vnumber=\"10\">And he carried me away in the Spirit to a mountain great and high, and showed me the holy city Jerusalem, coming down out of heaven from God,</VERS>\r\n      <VERS vnumber=\"11\">having the glory of God: her light was like unto a stone most precious, as it were a jasper stone, clear as crystal:</VERS>\r\n      <VERS vnumber=\"12\">having a wall great and high; having 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:</VERS>\r\n      <VERS vnumber=\"13\">on the east were three gates; and on the north three gates; and on the south three gates; and on the west three gates.</VERS>\r\n      <VERS vnumber=\"14\">And the wall of the city had twelve foundations, and on them twelve names of the twelve apostles of the Lamb.</VERS>\r\n      <VERS vnumber=\"15\">And he that spake with me had for a measure a golden reed to measure the city, and the gates thereof, and the wall thereof.</VERS>\r\n      <VERS vnumber=\"16\">And the city lieth foursquare, and the length thereof is as great as the breadth: and he measured the city with the reed, twelve thousand furlongs: the length and the breadth and the height thereof are equal.</VERS>\r\n      <VERS vnumber=\"17\">And he measured the wall thereof, a hundred and forty and four cubits, [according to] the measure of a man, that is, of an angel.</VERS>\r\n      <VERS vnumber=\"18\">And the building of the wall thereof was jasper: and the city was pure gold, like unto pure glass.</VERS>\r\n      <VERS vnumber=\"19\">The foundations of the wall of the city were adorned with all manner of precious stones. The first foundation was jasper; the second, sapphire; the third, chalcedony; the fourth, emerald;</VERS>\r\n      <VERS vnumber=\"20\">the fifth, sardonyx; the sixth, sardius; the seventh, chrysolite; the eighth, beryl; the ninth, topaz; the tenth, chrysoprase; the eleventh, jacinth; the twelfth, amethyst.</VERS>\r\n      <VERS vnumber=\"21\">And the twelve gates were twelve pearls; each one of the several gates was of one pearl: and the street of the city was pure gold, as it were transparent glass.</VERS>\r\n      <VERS vnumber=\"22\">And I saw no temple therein: for the Lord God the Almighty, and the Lamb, are the temple thereof.</VERS>\r\n      <VERS vnumber=\"23\">And the city hath no need of the sun, neither of the moon, to shine upon it: for the glory of God did lighten it, and the lamp thereof [is] the Lamb.</VERS>\r\n      <VERS vnumber=\"24\">And the nations shall walk amidst the light thereof: and the kings of the earth bring their glory into it.</VERS>\r\n      <VERS vnumber=\"25\">And the gates thereof shall in no wise be shut by day (for there shall be no night there):</VERS>\r\n      <VERS vnumber=\"26\">and they shall bring the glory and the honor of the nations into it:</VERS>\r\n      <VERS vnumber=\"27\">and there shall in no wise enter into it anything unclean, or he that maketh an abomination and a lie: but only they that are written in the Lamb`s book of life.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"22\">\r\n      <VERS vnumber=\"1\">And he showed me a river of water of life, bright as crystal, proceeding out of the throne of God and of the Lamb,</VERS>\r\n      <VERS vnumber=\"2\">in the midst of the street thereof. And on this side of the river and on that was the tree of life, bearing twelve [manner of] fruits, yielding its fruit every month: and the leaves of the tree were for the healing of the nations.</VERS>\r\n      <VERS vnumber=\"3\">And there shall be no curse any more: and the throne of God and of the Lamb shall be therein: and his servants shall serve him;</VERS>\r\n      <VERS vnumber=\"4\">and they shall see his face; and his name [shall be] on their foreheads.</VERS>\r\n      <VERS vnumber=\"5\">And there shall be night no more; and they need no light of lamp, neither light of sun; for the Lord God shall give them light: and they shall reign for ever and ever.</VERS>\r\n      <VERS vnumber=\"6\">And he said unto me, These words are faithful and true: and the Lord, the God of the spirits of the prophets, sent his angels to show unto his servants the things which must shortly come to pass.</VERS>\r\n      <VERS vnumber=\"7\">And behold, I come quickly. Blessed is he that keepeth the words of the prophecy of this book.</VERS>\r\n      <VERS vnumber=\"8\">And I John am he that heard and saw these things. And when I heard and saw, I fell down to worship before the feet of the angel that showed me these things.</VERS>\r\n      <VERS vnumber=\"9\">And he saith unto me, See thou do it not: I am a fellow-servant with thee and with thy brethren the prophets, and with them that keep the words of this book: worship God.</VERS>\r\n      <VERS vnumber=\"10\">And he saith unto me, Seal not up the words of the prophecy of this book; for the time is at hand.</VERS>\r\n      <VERS vnumber=\"11\">He that is unrighteous, let him do unrighteousness still: and he that is filthy, let him be made filthy still: and he that is righteous, let him do righteousness still: and he that is holy, let him be made holy still.</VERS>\r\n      <VERS vnumber=\"12\">Behold, I come quickly; and my reward is with me, to render to each man according as his work is.</VERS>\r\n      <VERS vnumber=\"13\">I am the Alpha and the Omega, the first and the last, the beginning and the end.</VERS>\r\n      <VERS vnumber=\"14\">Blessed are they that wash their robes, that they may have the right [to come] to the tree of life, and my enter in by the gates into the city.</VERS>\r\n      <VERS vnumber=\"15\">Without are the dogs, and the sorcerers, and the fornicators, and the murderers, and the idolaters, and every one that loveth and maketh a lie.</VERS>\r\n      <VERS vnumber=\"16\">I Jesus have sent mine angel to testify unto you these things for the churches. I am the root and the offspring of David, the bright, the morning star.</VERS>\r\n      <VERS vnumber=\"17\">And the Spirit and the bride say, Come. And he that heareth, let him say, Come. And he that is athirst, let him come: he that will, let him take the water of life freely.</VERS>\r\n      <VERS vnumber=\"18\">I testify unto every man that heareth the words of the prophecy of this book, if any man shall add unto them, God shall add unto him the plagues which are written in this book:</VERS>\r\n      <VERS vnumber=\"19\">and if any man shall take away from the words of the book of this prophecy, God shall take away his part from the tree of life, and out of the holy city, which are written in this book.</VERS>\r\n      <VERS vnumber=\"20\">He who testifieth these things saith, Yea: I come quickly. Amen: come, Lord Jesus.</VERS>\r\n      <VERS vnumber=\"21\">The grace of the Lord Jesus be with the saints. Amen.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n</XMLBIBLE>"
  },
  {
    "path": "Quelea/bibles/kjv.xml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<XMLBIBLE xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:noNamespaceSchemaLocation=\"zef2005.xsd\" version=\"2.0.1.18\" status=\"v\" biblename=\"King James Version\" type=\"x-bible\" revision=\"0\">\r\n  <BIBLEBOOK bnumber=\"1\" bname=\"Genesis\" bsname=\"Gen\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">In the beginning God created the heaven and the earth.</VERS>\r\n      <VERS vnumber=\"2\">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.</VERS>\r\n      <VERS vnumber=\"3\">And God said, Let there be light: and there was light.</VERS>\r\n      <VERS vnumber=\"4\">And God saw the light, that it was good: and God divided the light from the darkness.</VERS>\r\n      <VERS vnumber=\"5\">And God called the light Day, and the darkness he called Night. And the evening and the morning were the first day.</VERS>\r\n      <VERS vnumber=\"6\">And God said, Let there be a firmament in the midst of the waters, and let it divide the waters from the waters.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And God called the firmament Heaven. And the evening and the morning were the second day.</VERS>\r\n      <VERS vnumber=\"9\">And God said, Let the waters under the heaven be gathered together unto one place, and let the dry land appear: and it was so.</VERS>\r\n      <VERS vnumber=\"10\">And God called the dry land Earth; and the gathering together of the waters called he Seas: and God saw that it was good.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And the evening and the morning were the third day.</VERS>\r\n      <VERS vnumber=\"14\">And 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:</VERS>\r\n      <VERS vnumber=\"15\">And let them be for lights in the firmament of the heaven to give light upon the earth: and it was so.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And God set them in the firmament of the heaven to give light upon the earth,</VERS>\r\n      <VERS vnumber=\"18\">And to rule over the day and over the night, and to divide the light from the darkness: and God saw that it was good.</VERS>\r\n      <VERS vnumber=\"19\">And the evening and the morning were the fourth day.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And God blessed them, saying, Be fruitful, and multiply, and fill the waters in the seas, and let fowl multiply in the earth.</VERS>\r\n      <VERS vnumber=\"23\">And the evening and the morning were the fifth day.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">So God created man in his own image, in the image of God created he him; male and female created he them.</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">And God saw every thing that he had made, and, behold, it was very good. And the evening and the morning were the sixth day.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">Thus the heavens and the earth were finished, and all the host of them.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And God blessed the seventh day, and sanctified it: because that in it he had rested from all his work which God created and made.</VERS>\r\n      <VERS vnumber=\"4\">These 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,</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">But there went up a mist from the earth, and watered the whole face of the ground.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And the LORD God planted a garden eastward in Eden; and there he put the man whom he had formed.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And a river went out of Eden to water the garden; and from thence it was parted, and became into four heads.</VERS>\r\n      <VERS vnumber=\"11\">The name of the first is Pison: that is it which compasseth the whole land of Havilah, where there is gold;</VERS>\r\n      <VERS vnumber=\"12\">And the gold of that land is good: there is bdellium and the onyx stone.</VERS>\r\n      <VERS vnumber=\"13\">And the name of the second river is Gihon: the same is it that compasseth the whole land of Ethiopia.</VERS>\r\n      <VERS vnumber=\"14\">And the name of the third river is Hiddekel: that is it which goeth toward the east of Assyria. And the fourth river is Euphrates.</VERS>\r\n      <VERS vnumber=\"15\">And the LORD God took the man, and put him into the garden of Eden to dress it and to keep it.</VERS>\r\n      <VERS vnumber=\"16\">And the LORD God commanded the man, saying, Of every tree of the garden thou mayest freely eat:</VERS>\r\n      <VERS vnumber=\"17\">But 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.</VERS>\r\n      <VERS vnumber=\"18\">And the LORD God said, It is not good that the man should be alone; I will make him an help meet for him.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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;</VERS>\r\n      <VERS vnumber=\"22\">And the rib, which the LORD God had taken from man, made he a woman, and brought her unto the man.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">Therefore shall a man leave his father and his mother, and shall cleave unto his wife: and they shall be one flesh.</VERS>\r\n      <VERS vnumber=\"25\">And they were both naked, the man and his wife, and were not ashamed.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Now 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?</VERS>\r\n      <VERS vnumber=\"2\">And the woman said unto the serpent, We may eat of the fruit of the trees of the garden:</VERS>\r\n      <VERS vnumber=\"3\">But 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.</VERS>\r\n      <VERS vnumber=\"4\">And the serpent said unto the woman, Ye shall not surely die:</VERS>\r\n      <VERS vnumber=\"5\">For 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And the eyes of them both were opened, and they knew that they were naked; and they sewed fig leaves together, and made themselves aprons.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And the LORD God called unto Adam, and said unto him, Where art thou?</VERS>\r\n      <VERS vnumber=\"10\">And he said, I heard thy voice in the garden, and I was afraid, because I was naked; and I hid myself.</VERS>\r\n      <VERS vnumber=\"11\">And he said, Who told thee that thou wast naked? Hast thou eaten of the tree, whereof I commanded thee that thou shouldest not eat?</VERS>\r\n      <VERS vnumber=\"12\">And the man said, The woman whom thou gavest to be with me, she gave me of the tree, and I did eat.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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:</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">Unto 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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;</VERS>\r\n      <VERS vnumber=\"18\">Thorns also and thistles shall it bring forth to thee; and thou shalt eat the herb of the field;</VERS>\r\n      <VERS vnumber=\"19\">In 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.</VERS>\r\n      <VERS vnumber=\"20\">And Adam called his wife's name Eve; because she was the mother of all living.</VERS>\r\n      <VERS vnumber=\"21\">Unto Adam also and to his wife did the LORD God make coats of skins, and clothed them.</VERS>\r\n      <VERS vnumber=\"22\">And 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:</VERS>\r\n      <VERS vnumber=\"23\">Therefore the LORD God sent him forth from the garden of Eden, to till the ground from whence he was taken.</VERS>\r\n      <VERS vnumber=\"24\">So 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">And Adam knew Eve his wife; and she conceived, and bare Cain, and said, I have gotten a man from the LORD.</VERS>\r\n      <VERS vnumber=\"2\">And she again bare his brother Abel. And Abel was a keeper of sheep, but Cain was a tiller of the ground.</VERS>\r\n      <VERS vnumber=\"3\">And in process of time it came to pass, that Cain brought of the fruit of the ground an offering unto the LORD.</VERS>\r\n      <VERS vnumber=\"4\">And 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:</VERS>\r\n      <VERS vnumber=\"5\">But unto Cain and to his offering he had not respect. And Cain was very wroth, and his countenance fell.</VERS>\r\n      <VERS vnumber=\"6\">And the LORD said unto Cain, Why art thou wroth? and why is thy countenance fallen?</VERS>\r\n      <VERS vnumber=\"7\">If 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And the LORD said unto Cain, Where is Abel thy brother? And he said, I know not: Am I my brother's keeper?</VERS>\r\n      <VERS vnumber=\"10\">And he said, What hast thou done? the voice of thy brother's blood crieth unto me from the ground.</VERS>\r\n      <VERS vnumber=\"11\">And now art thou cursed from the earth, which hath opened her mouth to receive thy brother's blood from thy hand;</VERS>\r\n      <VERS vnumber=\"12\">When thou tillest the ground, it shall not henceforth yield unto thee her strength; a fugitive and a vagabond shalt thou be in the earth.</VERS>\r\n      <VERS vnumber=\"13\">And Cain said unto the LORD, My punishment is greater than I can bear.</VERS>\r\n      <VERS vnumber=\"14\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And Cain went out from the presence of the LORD, and dwelt in the land of Nod, on the east of Eden.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And unto Enoch was born Irad: and Irad begat Mehujael: and Mehujael begat Methusael: and Methusael begat Lamech.</VERS>\r\n      <VERS vnumber=\"19\">And Lamech took unto him two wives: the name of the one was Adah, and the name of the other Zillah.</VERS>\r\n      <VERS vnumber=\"20\">And Adah bare Jabal: he was the father of such as dwell in tents, and of such as have cattle.</VERS>\r\n      <VERS vnumber=\"21\">And his brother's name was Jubal: he was the father of all such as handle the harp and organ.</VERS>\r\n      <VERS vnumber=\"22\">And Zillah, she also bare Tubalcain, an instructer of every artificer in brass and iron: and the sister of Tubalcain was Naamah.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">If Cain shall be avenged sevenfold, truly Lamech seventy and sevenfold.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">This is the book of the generations of Adam. In the day that God created man, in the likeness of God made he him;</VERS>\r\n      <VERS vnumber=\"2\">Male and female created he them; and blessed them, and called their name Adam, in the day when they were created.</VERS>\r\n      <VERS vnumber=\"3\">And Adam lived an hundred and thirty years, and begat a son in his own likeness, after his image; and called his name Seth:</VERS>\r\n      <VERS vnumber=\"4\">And the days of Adam after he had begotten Seth were eight hundred years: and he begat sons and daughters:</VERS>\r\n      <VERS vnumber=\"5\">And all the days that Adam lived were nine hundred and thirty years: and he died.</VERS>\r\n      <VERS vnumber=\"6\">And Seth lived an hundred and five years, and begat Enos:</VERS>\r\n      <VERS vnumber=\"7\">And Seth lived after he begat Enos eight hundred and seven years, and begat sons and daughters:</VERS>\r\n      <VERS vnumber=\"8\">And all the days of Seth were nine hundred and twelve years: and he died.</VERS>\r\n      <VERS vnumber=\"9\">And Enos lived ninety years, and begat Cainan:</VERS>\r\n      <VERS vnumber=\"10\">And Enos lived after he begat Cainan eight hundred and fifteen years, and begat sons and daughters:</VERS>\r\n      <VERS vnumber=\"11\">And all the days of Enos were nine hundred and five years: and he died.</VERS>\r\n      <VERS vnumber=\"12\">And Cainan lived seventy years, and begat Mahalaleel:</VERS>\r\n      <VERS vnumber=\"13\">And Cainan lived after he begat Mahalaleel eight hundred and forty years, and begat sons and daughters:</VERS>\r\n      <VERS vnumber=\"14\">And all the days of Cainan were nine hundred and ten years: and he died.</VERS>\r\n      <VERS vnumber=\"15\">And Mahalaleel lived sixty and five years, and begat Jared:</VERS>\r\n      <VERS vnumber=\"16\">And Mahalaleel lived after he begat Jared eight hundred and thirty years, and begat sons and daughters:</VERS>\r\n      <VERS vnumber=\"17\">And all the days of Mahalaleel were eight hundred ninety and five years: and he died.</VERS>\r\n      <VERS vnumber=\"18\">And Jared lived an hundred sixty and two years, and he begat Enoch:</VERS>\r\n      <VERS vnumber=\"19\">And Jared lived after he begat Enoch eight hundred years, and begat sons and daughters:</VERS>\r\n      <VERS vnumber=\"20\">And all the days of Jared were nine hundred sixty and two years: and he died.</VERS>\r\n      <VERS vnumber=\"21\">And Enoch lived sixty and five years, and begat Methuselah:</VERS>\r\n      <VERS vnumber=\"22\">And Enoch walked with God after he begat Methuselah three hundred years, and begat sons and daughters:</VERS>\r\n      <VERS vnumber=\"23\">And all the days of Enoch were three hundred sixty and five years:</VERS>\r\n      <VERS vnumber=\"24\">And Enoch walked with God: and he was not; for God took him.</VERS>\r\n      <VERS vnumber=\"25\">And Methuselah lived an hundred eighty and seven years, and begat Lamech:</VERS>\r\n      <VERS vnumber=\"26\">And Methuselah lived after he begat Lamech seven hundred eighty and two years, and begat sons and daughters:</VERS>\r\n      <VERS vnumber=\"27\">And all the days of Methuselah were nine hundred sixty and nine years: and he died.</VERS>\r\n      <VERS vnumber=\"28\">And Lamech lived an hundred eighty and two years, and begat a son:</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">And Lamech lived after he begat Noah five hundred ninety and five years, and begat sons and daughters:</VERS>\r\n      <VERS vnumber=\"31\">And all the days of Lamech were seven hundred seventy and seven years: and he died.</VERS>\r\n      <VERS vnumber=\"32\">And Noah was five hundred years old: and Noah begat Shem, Ham, and Japheth.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">And it came to pass, when men began to multiply on the face of the earth, and daughters were born unto them,</VERS>\r\n      <VERS vnumber=\"2\">That the sons of God saw the daughters of men that they were fair; and they took them wives of all which they chose.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">There 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And it repented the LORD that he had made man on the earth, and it grieved him at his heart.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">But Noah found grace in the eyes of the LORD.</VERS>\r\n      <VERS vnumber=\"9\">These are the generations of Noah: Noah was a just man and perfect in his generations, and Noah walked with God.</VERS>\r\n      <VERS vnumber=\"10\">And Noah begat three sons, Shem, Ham, and Japheth.</VERS>\r\n      <VERS vnumber=\"11\">The earth also was corrupt before God, and the earth was filled with violence.</VERS>\r\n      <VERS vnumber=\"12\">And God looked upon the earth, and, behold, it was corrupt; for all flesh had corrupted his way upon the earth.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">Make thee an ark of gopher wood; rooms shalt thou make in the ark, and shalt pitch it within and without with pitch.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">A 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.</VERS>\r\n      <VERS vnumber=\"17\">And, 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.</VERS>\r\n      <VERS vnumber=\"18\">But 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">Of 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">Thus did Noah; according to all that God commanded him, so did he.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">Of 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.</VERS>\r\n      <VERS vnumber=\"3\">Of fowls also of the air by sevens, the male and the female; to keep seed alive upon the face of all the earth.</VERS>\r\n      <VERS vnumber=\"4\">For 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.</VERS>\r\n      <VERS vnumber=\"5\">And Noah did according unto all that the LORD commanded him.</VERS>\r\n      <VERS vnumber=\"6\">And Noah was six hundred years old when the flood of waters was upon the earth.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">Of clean beasts, and of beasts that are not clean, and of fowls, and of every thing that creepeth upon the earth,</VERS>\r\n      <VERS vnumber=\"9\">There went in two and two unto Noah into the ark, the male and the female, as God had commanded Noah.</VERS>\r\n      <VERS vnumber=\"10\">And it came to pass after seven days, that the waters of the flood were upon the earth.</VERS>\r\n      <VERS vnumber=\"11\">In 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.</VERS>\r\n      <VERS vnumber=\"12\">And the rain was upon the earth forty days and forty nights.</VERS>\r\n      <VERS vnumber=\"13\">In 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;</VERS>\r\n      <VERS vnumber=\"14\">They, 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.</VERS>\r\n      <VERS vnumber=\"15\">And they went in unto Noah into the ark, two and two of all flesh, wherein is the breath of life.</VERS>\r\n      <VERS vnumber=\"16\">And they that went in, went in male and female of all flesh, as God had commanded him: and the LORD shut him in.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And the waters prevailed, and were increased greatly upon the earth; and the ark went upon the face of the waters.</VERS>\r\n      <VERS vnumber=\"19\">And the waters prevailed exceedingly upon the earth; and all the high hills, that were under the whole heaven, were covered.</VERS>\r\n      <VERS vnumber=\"20\">Fifteen cubits upward did the waters prevail; and the mountains were covered.</VERS>\r\n      <VERS vnumber=\"21\">And 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:</VERS>\r\n      <VERS vnumber=\"22\">All in whose nostrils was the breath of life, of all that was in the dry land, died.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And the waters prevailed upon the earth an hundred and fifty days.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">And 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;</VERS>\r\n      <VERS vnumber=\"2\">The fountains also of the deep and the windows of heaven were stopped, and the rain from heaven was restrained;</VERS>\r\n      <VERS vnumber=\"3\">And the waters returned from off the earth continually: and after the end of the hundred and fifty days the waters were abated.</VERS>\r\n      <VERS vnumber=\"4\">And the ark rested in the seventh month, on the seventeenth day of the month, upon the mountains of Ararat.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And it came to pass at the end of forty days, that Noah opened the window of the ark which he had made:</VERS>\r\n      <VERS vnumber=\"7\">And he sent forth a raven, which went forth to and fro, until the waters were dried up from off the earth.</VERS>\r\n      <VERS vnumber=\"8\">Also he sent forth a dove from him, to see if the waters were abated from off the face of the ground;</VERS>\r\n      <VERS vnumber=\"9\">But 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.</VERS>\r\n      <VERS vnumber=\"10\">And he stayed yet other seven days; and again he sent forth the dove out of the ark;</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And he stayed yet other seven days; and sent forth the dove; which returned not again unto him any more.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And in the second month, on the seven and twentieth day of the month, was the earth dried.</VERS>\r\n      <VERS vnumber=\"15\">And God spake unto Noah, saying,</VERS>\r\n      <VERS vnumber=\"16\">Go forth of the ark, thou, and thy wife, and thy sons, and thy sons' wives with thee.</VERS>\r\n      <VERS vnumber=\"17\">Bring 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.</VERS>\r\n      <VERS vnumber=\"18\">And Noah went forth, and his sons, and his wife, and his sons' wives with him:</VERS>\r\n      <VERS vnumber=\"19\">Every beast, every creeping thing, and every fowl, and whatsoever creepeth upon the earth, after their kinds, went forth out of the ark.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">While the earth remaineth, seedtime and harvest, and cold and heat, and summer and winter, and day and night shall not cease.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">And God blessed Noah and his sons, and said unto them, Be fruitful, and multiply, and replenish the earth.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">Every moving thing that liveth shall be meat for you; even as the green herb have I given you all things.</VERS>\r\n      <VERS vnumber=\"4\">But flesh with the life thereof, which is the blood thereof, shall ye not eat.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">Whoso sheddeth man's blood, by man shall his blood be shed: for in the image of God made he man.</VERS>\r\n      <VERS vnumber=\"7\">And you, be ye fruitful, and multiply; bring forth abundantly in the earth, and multiply therein.</VERS>\r\n      <VERS vnumber=\"8\">And God spake unto Noah, and to his sons with him, saying,</VERS>\r\n      <VERS vnumber=\"9\">And I, behold, I establish my covenant with you, and with your seed after you;</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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:</VERS>\r\n      <VERS vnumber=\"13\">I do set my bow in the cloud, and it shall be for a token of a covenant between me and the earth.</VERS>\r\n      <VERS vnumber=\"14\">And it shall come to pass, when I bring a cloud over the earth, that the bow shall be seen in the cloud:</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And the sons of Noah, that went forth of the ark, were Shem, and Ham, and Japheth: and Ham is the father of Canaan.</VERS>\r\n      <VERS vnumber=\"19\">These are the three sons of Noah: and of them was the whole earth overspread.</VERS>\r\n      <VERS vnumber=\"20\">And Noah began to be an husbandman, and he planted a vineyard:</VERS>\r\n      <VERS vnumber=\"21\">And he drank of the wine, and was drunken; and he was uncovered within his tent.</VERS>\r\n      <VERS vnumber=\"22\">And Ham, the father of Canaan, saw the nakedness of his father, and told his two brethren without.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And Noah awoke from his wine, and knew what his younger son had done unto him.</VERS>\r\n      <VERS vnumber=\"25\">And he said, Cursed be Canaan; a servant of servants shall he be unto his brethren.</VERS>\r\n      <VERS vnumber=\"26\">And he said, Blessed be the LORD God of Shem; and Canaan shall be his servant.</VERS>\r\n      <VERS vnumber=\"27\">God shall enlarge Japheth, and he shall dwell in the tents of Shem; and Canaan shall be his servant.</VERS>\r\n      <VERS vnumber=\"28\">And Noah lived after the flood three hundred and fifty years.</VERS>\r\n      <VERS vnumber=\"29\">And all the days of Noah were nine hundred and fifty years: and he died.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">Now these are the generations of the sons of Noah, Shem, Ham, and Japheth: and unto them were sons born after the flood.</VERS>\r\n      <VERS vnumber=\"2\">The sons of Japheth; Gomer, and Magog, and Madai, and Javan, and Tubal, and Meshech, and Tiras.</VERS>\r\n      <VERS vnumber=\"3\">And the sons of Gomer; Ashkenaz, and Riphath, and Togarmah.</VERS>\r\n      <VERS vnumber=\"4\">And the sons of Javan; Elishah, and Tarshish, Kittim, and Dodanim.</VERS>\r\n      <VERS vnumber=\"5\">By these were the isles of the Gentiles divided in their lands; every one after his tongue, after their families, in their nations.</VERS>\r\n      <VERS vnumber=\"6\">And the sons of Ham; Cush, and Mizraim, and Phut, and Canaan.</VERS>\r\n      <VERS vnumber=\"7\">And the sons of Cush; Seba, and Havilah, and Sabtah, and Raamah, and Sabtecha: and the sons of Raamah; Sheba, and Dedan.</VERS>\r\n      <VERS vnumber=\"8\">And Cush begat Nimrod: he began to be a mighty one in the earth.</VERS>\r\n      <VERS vnumber=\"9\">He was a mighty hunter before the LORD: wherefore it is said, Even as Nimrod the mighty hunter before the LORD.</VERS>\r\n      <VERS vnumber=\"10\">And the beginning of his kingdom was Babel, and Erech, and Accad, and Calneh, in the land of Shinar.</VERS>\r\n      <VERS vnumber=\"11\">Out of that land went forth Asshur, and builded Nineveh, and the city Rehoboth, and Calah,</VERS>\r\n      <VERS vnumber=\"12\">And Resen between Nineveh and Calah: the same is a great city.</VERS>\r\n      <VERS vnumber=\"13\">And Mizraim begat Ludim, and Anamim, and Lehabim, and Naphtuhim,</VERS>\r\n      <VERS vnumber=\"14\">And Pathrusim, and Casluhim, (out of whom came Philistim,) and Caphtorim.</VERS>\r\n      <VERS vnumber=\"15\">And Canaan begat Sidon his firstborn, and Heth,</VERS>\r\n      <VERS vnumber=\"16\">And the Jebusite, and the Amorite, and the Girgasite,</VERS>\r\n      <VERS vnumber=\"17\">And the Hivite, and the Arkite, and the Sinite,</VERS>\r\n      <VERS vnumber=\"18\">And the Arvadite, and the Zemarite, and the Hamathite: and afterward were the families of the Canaanites spread abroad.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">These are the sons of Ham, after their families, after their tongues, in their countries, and in their nations.</VERS>\r\n      <VERS vnumber=\"21\">Unto Shem also, the father of all the children of Eber, the brother of Japheth the elder, even to him were children born.</VERS>\r\n      <VERS vnumber=\"22\">The children of Shem; Elam, and Asshur, and Arphaxad, and Lud, and Aram.</VERS>\r\n      <VERS vnumber=\"23\">And the children of Aram; Uz, and Hul, and Gether, and Mash.</VERS>\r\n      <VERS vnumber=\"24\">And Arphaxad begat Salah; and Salah begat Eber.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And Joktan begat Almodad, and Sheleph, and Hazarmaveth, and Jerah,</VERS>\r\n      <VERS vnumber=\"27\">And Hadoram, and Uzal, and Diklah,</VERS>\r\n      <VERS vnumber=\"28\">And Obal, and Abimael, and Sheba,</VERS>\r\n      <VERS vnumber=\"29\">And Ophir, and Havilah, and Jobab: all these were the sons of Joktan.</VERS>\r\n      <VERS vnumber=\"30\">And their dwelling was from Mesha, as thou goest unto Sephar a mount of the east.</VERS>\r\n      <VERS vnumber=\"31\">These are the sons of Shem, after their families, after their tongues, in their lands, after their nations.</VERS>\r\n      <VERS vnumber=\"32\">These 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">And the whole earth was of one language, and of one speech.</VERS>\r\n      <VERS vnumber=\"2\">And it came to pass, as they journeyed from the east, that they found a plain in the land of Shinar; and they dwelt there.</VERS>\r\n      <VERS vnumber=\"3\">And they said one to another, Go to, let us make brick, and burn them throughly. And they had brick for stone, and slime had they for morter.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And the LORD came down to see the city and the tower, which the children of men builded.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">Go to, let us go down, and there confound their language, that they may not understand one another's speech.</VERS>\r\n      <VERS vnumber=\"8\">So the LORD scattered them abroad from thence upon the face of all the earth: and they left off to build the city.</VERS>\r\n      <VERS vnumber=\"9\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"10\">These are the generations of Shem: Shem was an hundred years old, and begat Arphaxad two years after the flood:</VERS>\r\n      <VERS vnumber=\"11\">And Shem lived after he begat Arphaxad five hundred years, and begat sons and daughters.</VERS>\r\n      <VERS vnumber=\"12\">And Arphaxad lived five and thirty years, and begat Salah:</VERS>\r\n      <VERS vnumber=\"13\">And Arphaxad lived after he begat Salah four hundred and three years, and begat sons and daughters.</VERS>\r\n      <VERS vnumber=\"14\">And Salah lived thirty years, and begat Eber:</VERS>\r\n      <VERS vnumber=\"15\">And Salah lived after he begat Eber four hundred and three years, and begat sons and daughters.</VERS>\r\n      <VERS vnumber=\"16\">And Eber lived four and thirty years, and begat Peleg:</VERS>\r\n      <VERS vnumber=\"17\">And Eber lived after he begat Peleg four hundred and thirty years, and begat sons and daughters.</VERS>\r\n      <VERS vnumber=\"18\">And Peleg lived thirty years, and begat Reu:</VERS>\r\n      <VERS vnumber=\"19\">And Peleg lived after he begat Reu two hundred and nine years, and begat sons and daughters.</VERS>\r\n      <VERS vnumber=\"20\">And Reu lived two and thirty years, and begat Serug:</VERS>\r\n      <VERS vnumber=\"21\">And Reu lived after he begat Serug two hundred and seven years, and begat sons and daughters.</VERS>\r\n      <VERS vnumber=\"22\">And Serug lived thirty years, and begat Nahor:</VERS>\r\n      <VERS vnumber=\"23\">And Serug lived after he begat Nahor two hundred years, and begat sons and daughters.</VERS>\r\n      <VERS vnumber=\"24\">And Nahor lived nine and twenty years, and begat Terah:</VERS>\r\n      <VERS vnumber=\"25\">And Nahor lived after he begat Terah an hundred and nineteen years, and begat sons and daughters.</VERS>\r\n      <VERS vnumber=\"26\">And Terah lived seventy years, and begat Abram, Nahor, and Haran.</VERS>\r\n      <VERS vnumber=\"27\">Now these are the generations of Terah: Terah begat Abram, Nahor, and Haran; and Haran begat Lot.</VERS>\r\n      <VERS vnumber=\"28\">And Haran died before his father Terah in the land of his nativity, in Ur of the Chaldees.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">But Sarai was barren; she had no child.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n      <VERS vnumber=\"32\">And the days of Terah were two hundred and five years: and Terah died in Haran.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">Now 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:</VERS>\r\n      <VERS vnumber=\"2\">And I will make of thee a great nation, and I will bless thee, and make thy name great; and thou shalt be a blessing:</VERS>\r\n      <VERS vnumber=\"3\">And I will bless them that bless thee, and curse him that curseth thee: and in thee shall all families of the earth be blessed.</VERS>\r\n      <VERS vnumber=\"4\">So 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And Abram passed through the land unto the place of Sichem, unto the plain of Moreh. And the Canaanite was then in the land.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And Abram journeyed, going on still toward the south.</VERS>\r\n      <VERS vnumber=\"10\">And there was a famine in the land: and Abram went down into Egypt to sojourn there; for the famine was grievous in the land.</VERS>\r\n      <VERS vnumber=\"11\">And 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:</VERS>\r\n      <VERS vnumber=\"12\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"13\">Say, 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.</VERS>\r\n      <VERS vnumber=\"14\">And it came to pass, that, when Abram was come into Egypt, the Egyptians beheld the woman that she was very fair.</VERS>\r\n      <VERS vnumber=\"15\">The princes also of Pharaoh saw her, and commended her before Pharaoh: and the woman was taken into Pharaoh's house.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And the LORD plagued Pharaoh and his house with great plagues because of Sarai Abram's wife.</VERS>\r\n      <VERS vnumber=\"18\">And 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?</VERS>\r\n      <VERS vnumber=\"19\">Why 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.</VERS>\r\n      <VERS vnumber=\"20\">And Pharaoh commanded his men concerning him: and they sent him away, and his wife, and all that he had.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">And Abram went up out of Egypt, he, and his wife, and all that he had, and Lot with him, into the south.</VERS>\r\n      <VERS vnumber=\"2\">And Abram was very rich in cattle, in silver, and in gold.</VERS>\r\n      <VERS vnumber=\"3\">And 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;</VERS>\r\n      <VERS vnumber=\"4\">Unto the place of the altar, which he had made there at the first: and there Abram called on the name of the LORD.</VERS>\r\n      <VERS vnumber=\"5\">And Lot also, which went with Abram, had flocks, and herds, and tents.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">Is 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">Then Lot chose him all the plain of Jordan; and Lot journeyed east: and they separated themselves the one from the other.</VERS>\r\n      <VERS vnumber=\"12\">Abram dwelled in the land of Canaan, and Lot dwelled in the cities of the plain, and pitched his tent toward Sodom.</VERS>\r\n      <VERS vnumber=\"13\">But the men of Sodom were wicked and sinners before the LORD exceedingly.</VERS>\r\n      <VERS vnumber=\"14\">And 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:</VERS>\r\n      <VERS vnumber=\"15\">For all the land which thou seest, to thee will I give it, and to thy seed for ever.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">Arise, walk through the land in the length of it and in the breadth of it; for I will give it unto thee.</VERS>\r\n      <VERS vnumber=\"18\">Then 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">And 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;</VERS>\r\n      <VERS vnumber=\"2\">That 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.</VERS>\r\n      <VERS vnumber=\"3\">All these were joined together in the vale of Siddim, which is the salt sea.</VERS>\r\n      <VERS vnumber=\"4\">Twelve years they served Chedorlaomer, and in the thirteenth year they rebelled.</VERS>\r\n      <VERS vnumber=\"5\">And 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 Emims in Shaveh Kiriathaim,</VERS>\r\n      <VERS vnumber=\"6\">And the Horites in their mount Seir, unto Elparan, which is by the wilderness.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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;</VERS>\r\n      <VERS vnumber=\"9\">With 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And they took all the goods of Sodom and Gomorrah, and all their victuals, and went their way.</VERS>\r\n      <VERS vnumber=\"12\">And they took Lot, Abram's brother's son, who dwelt in Sodom, and his goods, and departed.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And he brought back all the goods, and also brought again his brother Lot, and his goods, and the women also, and the people.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And Melchizedek king of Salem brought forth bread and wine: and he was the priest of the most high God.</VERS>\r\n      <VERS vnumber=\"19\">And he blessed him, and said, Blessed be Abram of the most high God, possessor of heaven and earth:</VERS>\r\n      <VERS vnumber=\"20\">And blessed be the most high God, which hath delivered thine enemies into thy hand. And he gave him tithes of all.</VERS>\r\n      <VERS vnumber=\"21\">And the king of Sodom said unto Abram, Give me the persons, and take the goods to thyself.</VERS>\r\n      <VERS vnumber=\"22\">And 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,</VERS>\r\n      <VERS vnumber=\"23\">That 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:</VERS>\r\n      <VERS vnumber=\"24\">Save 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">After 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.</VERS>\r\n      <VERS vnumber=\"2\">And Abram said, Lord GOD, what wilt thou give me, seeing I go childless, and the steward of my house is this Eliezer of Damascus?</VERS>\r\n      <VERS vnumber=\"3\">And Abram said, Behold, to me thou hast given no seed: and, lo, one born in my house is mine heir.</VERS>\r\n      <VERS vnumber=\"4\">And, 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And he believed in the LORD; and he counted it to him for righteousness.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And he said, Lord GOD, whereby shall I know that I shall inherit it?</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And when the fowls came down upon the carcases, Abram drove them away.</VERS>\r\n      <VERS vnumber=\"12\">And when the sun was going down, a deep sleep fell upon Abram; and, lo, an horror of great darkness fell upon him.</VERS>\r\n      <VERS vnumber=\"13\">And he said unto Abram, Know of a surety that thy seed shall be a stranger in a land that is not theirs, and shall serve them; and they shall afflict them four hundred years;</VERS>\r\n      <VERS vnumber=\"14\">And also that nation, whom they shall serve, will I judge: and afterward shall they come out with great substance.</VERS>\r\n      <VERS vnumber=\"15\">And thou shalt go to thy fathers in peace; thou shalt be buried in a good old age.</VERS>\r\n      <VERS vnumber=\"16\">But in the fourth generation they shall come hither again: for the iniquity of the Amorites is not yet full.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">In 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:</VERS>\r\n      <VERS vnumber=\"19\">The Kenites, and the Kenizzites, and the Kadmonites,</VERS>\r\n      <VERS vnumber=\"20\">And the Hittites, and the Perizzites, and the Rephaims,</VERS>\r\n      <VERS vnumber=\"21\">And the Amorites, and the Canaanites, and the Girgashites, and the Jebusites.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">Now Sarai Abram's wife bare him no children: and she had an handmaid, an Egyptian, whose name was Hagar.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And he went in unto Hagar, and she conceived: and when she saw that she had conceived, her mistress was despised in her eyes.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">But Abram said unto Sarai, Behold, thy maid is in thy hand; do to her as it pleaseth thee. And when Sarai dealt hardly with her, she fled from her face.</VERS>\r\n      <VERS vnumber=\"7\">And the angel of the LORD found her by a fountain of water in the wilderness, by the fountain in the way to Shur.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And the angel of the LORD said unto her, Return to thy mistress, and submit thyself under her hands.</VERS>\r\n      <VERS vnumber=\"10\">And the angel of the LORD said unto her, I will multiply thy seed exceedingly, that it shall not be numbered for multitude.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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?</VERS>\r\n      <VERS vnumber=\"14\">Wherefore the well was called Beerlahairoi; behold, it is between Kadesh and Bered.</VERS>\r\n      <VERS vnumber=\"15\">And Hagar bare Abram a son: and Abram called his son's name, which Hagar bare, Ishmael.</VERS>\r\n      <VERS vnumber=\"16\">And Abram was fourscore and six years old, when Hagar bare Ishmael to Abram.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"17\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And I will make my covenant between me and thee, and will multiply thee exceedingly.</VERS>\r\n      <VERS vnumber=\"3\">And Abram fell on his face: and God talked with him, saying,</VERS>\r\n      <VERS vnumber=\"4\">As for me, behold, my covenant is with thee, and thou shalt be a father of many nations.</VERS>\r\n      <VERS vnumber=\"5\">Neither shall thy name any more be called Abram, but thy name shall be Abraham; for a father of many nations have I made thee.</VERS>\r\n      <VERS vnumber=\"6\">And I will make thee exceeding fruitful, and I will make nations of thee, and kings shall come out of thee.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And God said unto Abraham, Thou shalt keep my covenant therefore, thou, and thy seed after thee in their generations.</VERS>\r\n      <VERS vnumber=\"10\">This is my covenant, which ye shall keep, between me and you and thy seed after thee; Every man child among you shall be circumcised.</VERS>\r\n      <VERS vnumber=\"11\">And ye shall circumcise the flesh of your foreskin; and it shall be a token of the covenant betwixt me and you.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">He 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And God said unto Abraham, As for Sarai thy wife, thou shalt not call her name Sarai, but Sarah shall her name be.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">Then 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?</VERS>\r\n      <VERS vnumber=\"18\">And Abraham said unto God, O that Ishmael might live before thee!</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">But my covenant will I establish with Isaac, which Sarah shall bear unto thee at this set time in the next year.</VERS>\r\n      <VERS vnumber=\"22\">And he left off talking with him, and God went up from Abraham.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And Abraham was ninety years old and nine, when he was circumcised in the flesh of his foreskin.</VERS>\r\n      <VERS vnumber=\"25\">And Ishmael his son was thirteen years old, when he was circumcised in the flesh of his foreskin.</VERS>\r\n      <VERS vnumber=\"26\">In the selfsame day was Abraham circumcised, and Ishmael his son.</VERS>\r\n      <VERS vnumber=\"27\">And all the men of his house, born in the house, and bought with money of the stranger, were circumcised with him.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"18\">\r\n      <VERS vnumber=\"1\">And the LORD appeared unto him in the plains of Mamre: and he sat in the tent door in the heat of the day;</VERS>\r\n      <VERS vnumber=\"2\">And 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,</VERS>\r\n      <VERS vnumber=\"3\">And said, My Lord, if now I have found favour in thy sight, pass not away, I pray thee, from thy servant:</VERS>\r\n      <VERS vnumber=\"4\">Let a little water, I pray you, be fetched, and wash your feet, and rest yourselves under the tree:</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And they said unto him, Where is Sarah thy wife? And he said, Behold, in the tent.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">Now Abraham and Sarah were old and well stricken in age; and it ceased to be with Sarah after the manner of women.</VERS>\r\n      <VERS vnumber=\"12\">Therefore Sarah laughed within herself, saying, After I am waxed old shall I have pleasure, my lord being old also?</VERS>\r\n      <VERS vnumber=\"13\">And the LORD said unto Abraham, Wherefore did Sarah laugh, saying, Shall I of a surety bear a child, which am old?</VERS>\r\n      <VERS vnumber=\"14\">Is 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.</VERS>\r\n      <VERS vnumber=\"15\">Then Sarah denied, saying, I laughed not; for she was afraid. And he said, Nay; but thou didst laugh.</VERS>\r\n      <VERS vnumber=\"16\">And the men rose up from thence, and looked toward Sodom: and Abraham went with them to bring them on the way.</VERS>\r\n      <VERS vnumber=\"17\">And the LORD said, Shall I hide from Abraham that thing which I do;</VERS>\r\n      <VERS vnumber=\"18\">Seeing that Abraham shall surely become a great and mighty nation, and all the nations of the earth shall be blessed in him?</VERS>\r\n      <VERS vnumber=\"19\">For 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.</VERS>\r\n      <VERS vnumber=\"20\">And the LORD said, Because the cry of Sodom and Gomorrah is great, and because their sin is very grievous;</VERS>\r\n      <VERS vnumber=\"21\">I 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.</VERS>\r\n      <VERS vnumber=\"22\">And the men turned their faces from thence, and went toward Sodom: but Abraham stood yet before the LORD.</VERS>\r\n      <VERS vnumber=\"23\">And Abraham drew near, and said, Wilt thou also destroy the righteous with the wicked?</VERS>\r\n      <VERS vnumber=\"24\">Peradventure there be fifty righteous within the city: wilt thou also destroy and not spare the place for the fifty righteous that are therein?</VERS>\r\n      <VERS vnumber=\"25\">That 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?</VERS>\r\n      <VERS vnumber=\"26\">And the LORD said, If I find in Sodom fifty righteous within the city, then I will spare all the place for their sakes.</VERS>\r\n      <VERS vnumber=\"27\">And Abraham answered and said, Behold now, I have taken upon me to speak unto the Lord, which am but dust and ashes:</VERS>\r\n      <VERS vnumber=\"28\">Peradventure 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.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">And the LORD went his way, as soon as he had left communing with Abraham: and Abraham returned unto his place.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"19\">\r\n      <VERS vnumber=\"1\">And 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;</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">But 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:</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And Lot went out at the door unto them, and shut the door after him,</VERS>\r\n      <VERS vnumber=\"7\">And said, I pray you, brethren, do not so wickedly.</VERS>\r\n      <VERS vnumber=\"8\">Behold 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">But the men put forth their hand, and pulled Lot into the house to them, and shut to the door.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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:</VERS>\r\n      <VERS vnumber=\"13\">For 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And Lot said unto them, Oh, not so, my Lord:</VERS>\r\n      <VERS vnumber=\"19\">Behold 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:</VERS>\r\n      <VERS vnumber=\"20\">Behold 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">Haste thee, escape thither; for I cannot do any thing till thou be come thither. Therefore the name of the city was called Zoar.</VERS>\r\n      <VERS vnumber=\"23\">The sun was risen upon the earth when Lot entered into Zoar.</VERS>\r\n      <VERS vnumber=\"24\">Then the LORD rained upon Sodom and upon Gomorrah brimstone and fire from the LORD out of heaven;</VERS>\r\n      <VERS vnumber=\"25\">And he overthrew those cities, and all the plain, and all the inhabitants of the cities, and that which grew upon the ground.</VERS>\r\n      <VERS vnumber=\"26\">But his wife looked back from behind him, and she became a pillar of salt.</VERS>\r\n      <VERS vnumber=\"27\">And Abraham gat up early in the morning to the place where he stood before the LORD:</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">And 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:</VERS>\r\n      <VERS vnumber=\"32\">Come, let us make our father drink wine, and we will lie with him, that we may preserve seed of our father.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">And 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.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">Thus were both the daughters of Lot with child by their father.</VERS>\r\n      <VERS vnumber=\"37\">And the firstborn bare a son, and called his name Moab: the same is the father of the Moabites unto this day.</VERS>\r\n      <VERS vnumber=\"38\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"20\">\r\n      <VERS vnumber=\"1\">And Abraham journeyed from thence toward the south country, and dwelled between Kadesh and Shur, and sojourned in Gerar.</VERS>\r\n      <VERS vnumber=\"2\">And Abraham said of Sarah his wife, She is my sister: and Abimelech king of Gerar sent, and took Sarah.</VERS>\r\n      <VERS vnumber=\"3\">But 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.</VERS>\r\n      <VERS vnumber=\"4\">But Abimelech had not come near her: and he said, Lord, wilt thou slay also a righteous nation?</VERS>\r\n      <VERS vnumber=\"5\">Said 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">Now 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.</VERS>\r\n      <VERS vnumber=\"8\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"9\">Then 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.</VERS>\r\n      <VERS vnumber=\"10\">And Abimelech said unto Abraham, What sawest thou, that thou hast done this thing?</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And Abimelech took sheep, and oxen, and menservants, and womenservants, and gave them unto Abraham, and restored him Sarah his wife.</VERS>\r\n      <VERS vnumber=\"15\">And Abimelech said, Behold, my land is before thee: dwell where it pleaseth thee.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">So Abraham prayed unto God: and God healed Abimelech, and his wife, and his maidservants; and they bare children.</VERS>\r\n      <VERS vnumber=\"18\">For the LORD had fast closed up all the wombs of the house of Abimelech, because of Sarah Abraham's wife.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"21\">\r\n      <VERS vnumber=\"1\">And the LORD visited Sarah as he had said, and the LORD did unto Sarah as he had spoken.</VERS>\r\n      <VERS vnumber=\"2\">For Sarah conceived, and bare Abraham a son in his old age, at the set time of which God had spoken to him.</VERS>\r\n      <VERS vnumber=\"3\">And Abraham called the name of his son that was born unto him, whom Sarah bare to him, Isaac.</VERS>\r\n      <VERS vnumber=\"4\">And Abraham circumcised his son Isaac being eight days old, as God had commanded him.</VERS>\r\n      <VERS vnumber=\"5\">And Abraham was an hundred years old, when his son Isaac was born unto him.</VERS>\r\n      <VERS vnumber=\"6\">And Sarah said, God hath made me to laugh, so that all that hear will laugh with me.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And the child grew, and was weaned: and Abraham made a great feast the same day that Isaac was weaned.</VERS>\r\n      <VERS vnumber=\"9\">And Sarah saw the son of Hagar the Egyptian, which she had born unto Abraham, mocking.</VERS>\r\n      <VERS vnumber=\"10\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"11\">And the thing was very grievous in Abraham's sight because of his son.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And also of the son of the bondwoman will I make a nation, because he is thy seed.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And the water was spent in the bottle, and she cast the child under one of the shrubs.</VERS>\r\n      <VERS vnumber=\"16\">And she went, and sat her down over against him a good way off, as it were a bowshot: 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">Arise, lift up the lad, and hold him in thine hand; for I will make him a great nation.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And God was with the lad; and he grew, and dwelt in the wilderness, and became an archer.</VERS>\r\n      <VERS vnumber=\"21\">And he dwelt in the wilderness of Paran: and his mother took him a wife out of the land of Egypt.</VERS>\r\n      <VERS vnumber=\"22\">And 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:</VERS>\r\n      <VERS vnumber=\"23\">Now 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.</VERS>\r\n      <VERS vnumber=\"24\">And Abraham said, I will swear.</VERS>\r\n      <VERS vnumber=\"25\">And Abraham reproved Abimelech because of a well of water, which Abimelech's servants had violently taken away.</VERS>\r\n      <VERS vnumber=\"26\">And Abimelech said, I wot not who hath done this thing: neither didst thou tell me, neither yet heard I of it, but to day.</VERS>\r\n      <VERS vnumber=\"27\">And Abraham took sheep and oxen, and gave them unto Abimelech; and both of them made a covenant.</VERS>\r\n      <VERS vnumber=\"28\">And Abraham set seven ewe lambs of the flock by themselves.</VERS>\r\n      <VERS vnumber=\"29\">And Abimelech said unto Abraham, What mean these seven ewe lambs which thou hast set by themselves?</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">Wherefore he called that place Beersheba; because there they sware both of them.</VERS>\r\n      <VERS vnumber=\"32\">Thus 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.</VERS>\r\n      <VERS vnumber=\"33\">And Abraham planted a grove in Beersheba, and called there on the name of the LORD, the everlasting God.</VERS>\r\n      <VERS vnumber=\"34\">And Abraham sojourned in the Philistines' land many days.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"22\">\r\n      <VERS vnumber=\"1\">And it came to pass after these things, that God did tempt Abraham, and said unto him, Abraham: and he said, Behold, here I am.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">Then on the third day Abraham lifted up his eyes, and saw the place afar off.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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?</VERS>\r\n      <VERS vnumber=\"8\">And Abraham said, My son, God will provide himself a lamb for a burnt offering: so they went both of them together.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And Abraham stretched forth his hand, and took the knife to slay his son.</VERS>\r\n      <VERS vnumber=\"11\">And the angel of the LORD called unto him out of heaven, and said, Abraham, Abraham: and he said, Here am I.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And the angel of the LORD called unto Abraham out of heaven the second time,</VERS>\r\n      <VERS vnumber=\"16\">And 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:</VERS>\r\n      <VERS vnumber=\"17\">That 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;</VERS>\r\n      <VERS vnumber=\"18\">And in thy seed shall all the nations of the earth be blessed; because thou hast obeyed my voice.</VERS>\r\n      <VERS vnumber=\"19\">So Abraham returned unto his young men, and they rose up and went together to Beersheba; and Abraham dwelt at Beersheba.</VERS>\r\n      <VERS vnumber=\"20\">And it came to pass after these things, that it was told Abraham, saying, Behold, Milcah, she hath also born children unto thy brother Nahor;</VERS>\r\n      <VERS vnumber=\"21\">Huz his firstborn, and Buz his brother, and Kemuel the father of Aram,</VERS>\r\n      <VERS vnumber=\"22\">And Chesed, and Hazo, and Pildash, and Jidlaph, and Bethuel.</VERS>\r\n      <VERS vnumber=\"23\">And Bethuel begat Rebekah: these eight Milcah did bear to Nahor, Abraham's brother.</VERS>\r\n      <VERS vnumber=\"24\">And his concubine, whose name was Reumah, she bare also Tebah, and Gaham, and Thahash, and Maachah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"23\">\r\n      <VERS vnumber=\"1\">And Sarah was an hundred and seven and twenty years old: these were the years of the life of Sarah.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And Abraham stood up from before his dead, and spake unto the sons of Heth, saying,</VERS>\r\n      <VERS vnumber=\"4\">I 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.</VERS>\r\n      <VERS vnumber=\"5\">And the children of Heth answered Abraham, saying unto him,</VERS>\r\n      <VERS vnumber=\"6\">Hear 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.</VERS>\r\n      <VERS vnumber=\"7\">And Abraham stood up, and bowed himself to the people of the land, even to the children of Heth.</VERS>\r\n      <VERS vnumber=\"8\">And 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,</VERS>\r\n      <VERS vnumber=\"9\">That 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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,</VERS>\r\n      <VERS vnumber=\"11\">Nay, 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.</VERS>\r\n      <VERS vnumber=\"12\">And Abraham bowed down himself before the people of the land.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And Ephron answered Abraham, saying unto him,</VERS>\r\n      <VERS vnumber=\"15\">My lord, hearken unto me: the land is worth four hundred shekels of silver; what is that betwixt me and thee? bury therefore thy dead.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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</VERS>\r\n      <VERS vnumber=\"18\">Unto Abraham for a possession in the presence of the children of Heth, before all that went in at the gate of his city.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And the field, and the cave that is therein, were made sure unto Abraham for a possession of a buryingplace by the sons of Heth.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"24\">\r\n      <VERS vnumber=\"1\">And Abraham was old, and well stricken in age: and the LORD had blessed Abraham in all things.</VERS>\r\n      <VERS vnumber=\"2\">And 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:</VERS>\r\n      <VERS vnumber=\"3\">And 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:</VERS>\r\n      <VERS vnumber=\"4\">But thou shalt go unto my country, and to my kindred, and take a wife unto my son Isaac.</VERS>\r\n      <VERS vnumber=\"5\">And 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?</VERS>\r\n      <VERS vnumber=\"6\">And Abraham said unto him, Beware thou that thou bring not my son thither again.</VERS>\r\n      <VERS vnumber=\"7\">The 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And the servant put his hand under the thigh of Abraham his master, and sware to him concerning that matter.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">Behold, I stand here by the well of water; and the daughters of the men of the city come out to draw water:</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And the servant ran to meet her, and said, Let me, I pray thee, drink a little water of thy pitcher.</VERS>\r\n      <VERS vnumber=\"18\">And she said, Drink, my lord: and she hasted, and let down her pitcher upon her hand, and gave him drink.</VERS>\r\n      <VERS vnumber=\"19\">And when she had done giving him drink, she said, I will draw water for thy camels also, until they have done drinking.</VERS>\r\n      <VERS vnumber=\"20\">And she hasted, and emptied her pitcher into the trough, and ran again unto the well to draw water, and drew for all his camels.</VERS>\r\n      <VERS vnumber=\"21\">And the man wondering at her held his peace, to wit whether the LORD had made his journey prosperous or not.</VERS>\r\n      <VERS vnumber=\"22\">And 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;</VERS>\r\n      <VERS vnumber=\"23\">And said, Whose daughter art thou? tell me, I pray thee: is there room in thy father's house for us to lodge in?</VERS>\r\n      <VERS vnumber=\"24\">And she said unto him, I am the daughter of Bethuel the son of Milcah, which she bare unto Nahor.</VERS>\r\n      <VERS vnumber=\"25\">She said moreover unto him, We have both straw and provender enough, and room to lodge in.</VERS>\r\n      <VERS vnumber=\"26\">And the man bowed down his head, and worshipped the LORD.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And the damsel ran, and told them of her mother's house these things.</VERS>\r\n      <VERS vnumber=\"29\">And Rebekah had a brother, and his name was Laban: and Laban ran out unto the man, unto the well.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">And he said, Come in, thou blessed of the LORD; wherefore standest thou without? for I have prepared the house, and room for the camels.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">And he said, I am Abraham's servant.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">And 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.</VERS>\r\n      <VERS vnumber=\"37\">And 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:</VERS>\r\n      <VERS vnumber=\"38\">But thou shalt go unto my father's house, and to my kindred, and take a wife unto my son.</VERS>\r\n      <VERS vnumber=\"39\">And I said unto my master, Peradventure the woman will not follow me.</VERS>\r\n      <VERS vnumber=\"40\">And 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:</VERS>\r\n      <VERS vnumber=\"41\">Then 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.</VERS>\r\n      <VERS vnumber=\"42\">And 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:</VERS>\r\n      <VERS vnumber=\"43\">Behold, 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;</VERS>\r\n      <VERS vnumber=\"44\">And 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.</VERS>\r\n      <VERS vnumber=\"45\">And 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.</VERS>\r\n      <VERS vnumber=\"46\">And 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.</VERS>\r\n      <VERS vnumber=\"47\">And 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.</VERS>\r\n      <VERS vnumber=\"48\">And 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.</VERS>\r\n      <VERS vnumber=\"49\">And 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.</VERS>\r\n      <VERS vnumber=\"50\">Then Laban and Bethuel answered and said, The thing proceedeth from the LORD: we cannot speak unto thee bad or good.</VERS>\r\n      <VERS vnumber=\"51\">Behold, Rebekah is before thee, take her, and go, and let her be thy master's son's wife, as the LORD hath spoken.</VERS>\r\n      <VERS vnumber=\"52\">And it came to pass, that, when Abraham's servant heard their words, he worshipped the LORD, bowing himself to the earth.</VERS>\r\n      <VERS vnumber=\"53\">And 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.</VERS>\r\n      <VERS vnumber=\"54\">And 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.</VERS>\r\n      <VERS vnumber=\"55\">And her brother and her mother said, Let the damsel abide with us a few days, at the least ten; after that she shall go.</VERS>\r\n      <VERS vnumber=\"56\">And he said unto them, Hinder me not, seeing the LORD hath prospered my way; send me away that I may go to my master.</VERS>\r\n      <VERS vnumber=\"57\">And they said, We will call the damsel, and enquire at her mouth.</VERS>\r\n      <VERS vnumber=\"58\">And they called Rebekah, and said unto her, Wilt thou go with this man? And she said, I will go.</VERS>\r\n      <VERS vnumber=\"59\">And they sent away Rebekah their sister, and her nurse, and Abraham's servant, and his men.</VERS>\r\n      <VERS vnumber=\"60\">And 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.</VERS>\r\n      <VERS vnumber=\"61\">And Rebekah arose, and her damsels, and they rode upon the camels, and followed the man: and the servant took Rebekah, and went his way.</VERS>\r\n      <VERS vnumber=\"62\">And Isaac came from the way of the well Lahairoi; for he dwelt in the south country.</VERS>\r\n      <VERS vnumber=\"63\">And 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.</VERS>\r\n      <VERS vnumber=\"64\">And Rebekah lifted up her eyes, and when she saw Isaac, she lighted off the camel.</VERS>\r\n      <VERS vnumber=\"65\">For 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.</VERS>\r\n      <VERS vnumber=\"66\">And the servant told Isaac all things that he had done.</VERS>\r\n      <VERS vnumber=\"67\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"25\">\r\n      <VERS vnumber=\"1\">Then again Abraham took a wife, and her name was Keturah.</VERS>\r\n      <VERS vnumber=\"2\">And she bare him Zimran, and Jokshan, and Medan, and Midian, and Ishbak, and Shuah.</VERS>\r\n      <VERS vnumber=\"3\">And Jokshan begat Sheba, and Dedan. And the sons of Dedan were Asshurim, and Letushim, and Leummim.</VERS>\r\n      <VERS vnumber=\"4\">And the sons of Midian; Ephah, and Epher, and Hanoch, and Abida, and Eldaah. All these were the children of Keturah.</VERS>\r\n      <VERS vnumber=\"5\">And Abraham gave all that he had unto Isaac.</VERS>\r\n      <VERS vnumber=\"6\">But 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.</VERS>\r\n      <VERS vnumber=\"7\">And these are the days of the years of Abraham's life which he lived, an hundred threescore and fifteen years.</VERS>\r\n      <VERS vnumber=\"8\">Then 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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;</VERS>\r\n      <VERS vnumber=\"10\">The field which Abraham purchased of the sons of Heth: there was Abraham buried, and Sarah his wife.</VERS>\r\n      <VERS vnumber=\"11\">And it came to pass after the death of Abraham, that God blessed his son Isaac; and Isaac dwelt by the well Lahairoi.</VERS>\r\n      <VERS vnumber=\"12\">Now these are the generations of Ishmael, Abraham's son, whom Hagar the Egyptian, Sarah's handmaid, bare unto Abraham:</VERS>\r\n      <VERS vnumber=\"13\">And 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,</VERS>\r\n      <VERS vnumber=\"14\">And Mishma, and Dumah, and Massa,</VERS>\r\n      <VERS vnumber=\"15\">Hadar, and Tema, Jetur, Naphish, and Kedemah:</VERS>\r\n      <VERS vnumber=\"16\">These are the sons of Ishmael, and these are their names, by their towns, and by their castles; twelve princes according to their nations.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And these are the generations of Isaac, Abraham's son: Abraham begat Isaac:</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And Isaac intreated the LORD for his wife, because she was barren: and the LORD was intreated of him, and Rebekah his wife conceived.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And when her days to be delivered were fulfilled, behold, there were twins in her womb.</VERS>\r\n      <VERS vnumber=\"25\">And the first came out red, all over like an hairy garment; and they called his name Esau.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And the boys grew: and Esau was a cunning hunter, a man of the field; and Jacob was a plain man, dwelling in tents.</VERS>\r\n      <VERS vnumber=\"28\">And Isaac loved Esau, because he did eat of his venison: but Rebekah loved Jacob.</VERS>\r\n      <VERS vnumber=\"29\">And Jacob sod pottage: and Esau came from the field, and he was faint:</VERS>\r\n      <VERS vnumber=\"30\">And Esau said to Jacob, Feed me, I pray thee, with that same red pottage; for I am faint: therefore was his name called Edom.</VERS>\r\n      <VERS vnumber=\"31\">And Jacob said, Sell me this day thy birthright.</VERS>\r\n      <VERS vnumber=\"32\">And Esau said, Behold, I am at the point to die: and what profit shall this birthright do to me?</VERS>\r\n      <VERS vnumber=\"33\">And Jacob said, Swear to me this day; and he sware unto him: and he sold his birthright unto Jacob.</VERS>\r\n      <VERS vnumber=\"34\">Then 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"26\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And the LORD appeared unto him, and said, Go not down into Egypt; dwell in the land which I shall tell thee of:</VERS>\r\n      <VERS vnumber=\"3\">Sojourn 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;</VERS>\r\n      <VERS vnumber=\"4\">And 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;</VERS>\r\n      <VERS vnumber=\"5\">Because that Abraham obeyed my voice, and kept my charge, my commandments, my statutes, and my laws.</VERS>\r\n      <VERS vnumber=\"6\">And Isaac dwelt in Gerar:</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And Abimelech charged all his people, saying, He that toucheth this man or his wife shall surely be put to death.</VERS>\r\n      <VERS vnumber=\"12\">Then Isaac sowed in that land, and received in the same year an hundredfold: and the LORD blessed him.</VERS>\r\n      <VERS vnumber=\"13\">And the man waxed great, and went forward, and grew until he became very great:</VERS>\r\n      <VERS vnumber=\"14\">For he had possession of flocks, and possession of herds, and great store of servants: and the Philistines envied him.</VERS>\r\n      <VERS vnumber=\"15\">For 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.</VERS>\r\n      <VERS vnumber=\"16\">And Abimelech said unto Isaac, Go from us; for thou art much mightier than we.</VERS>\r\n      <VERS vnumber=\"17\">And Isaac departed thence, and pitched his tent in the valley of Gerar, and dwelt there.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And Isaac's servants digged in the valley, and found there a well of springing water.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And they digged another well, and strove for that also: and he called the name of it Sitnah.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And he went up from thence to Beersheba.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">Then Abimelech went to him from Gerar, and Ahuzzath one of his friends, and Phichol the chief captain of his army.</VERS>\r\n      <VERS vnumber=\"27\">And Isaac said unto them, Wherefore come ye to me, seeing ye hate me, and have sent me away from you?</VERS>\r\n      <VERS vnumber=\"28\">And 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;</VERS>\r\n      <VERS vnumber=\"29\">That 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.</VERS>\r\n      <VERS vnumber=\"30\">And he made them a feast, and they did eat and drink.</VERS>\r\n      <VERS vnumber=\"31\">And they rose up betimes in the morning, and sware one to another: and Isaac sent them away, and they departed from him in peace.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">And he called it Shebah: therefore the name of the city is Beersheba unto this day.</VERS>\r\n      <VERS vnumber=\"34\">And 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:</VERS>\r\n      <VERS vnumber=\"35\">Which were a grief of mind unto Isaac and to Rebekah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"27\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And he said, Behold now, I am old, I know not the day of my death:</VERS>\r\n      <VERS vnumber=\"3\">Now therefore take, I pray thee, thy weapons, thy quiver and thy bow, and go out to the field, and take me some venison;</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And Rebekah heard when Isaac spake to Esau his son. And Esau went to the field to hunt for venison, and to bring it.</VERS>\r\n      <VERS vnumber=\"6\">And Rebekah spake unto Jacob her son, saying, Behold, I heard thy father speak unto Esau thy brother, saying,</VERS>\r\n      <VERS vnumber=\"7\">Bring me venison, and make me savoury meat, that I may eat, and bless thee before the LORD before my death.</VERS>\r\n      <VERS vnumber=\"8\">Now therefore, my son, obey my voice according to that which I command thee.</VERS>\r\n      <VERS vnumber=\"9\">Go 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:</VERS>\r\n      <VERS vnumber=\"10\">And thou shalt bring it to thy father, that he may eat, and that he may bless thee before his death.</VERS>\r\n      <VERS vnumber=\"11\">And Jacob said to Rebekah his mother, Behold, Esau my brother is a hairy man, and I am a smooth man:</VERS>\r\n      <VERS vnumber=\"12\">My 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.</VERS>\r\n      <VERS vnumber=\"13\">And his mother said unto him, Upon me be thy curse, my son: only obey my voice, and go fetch me them.</VERS>\r\n      <VERS vnumber=\"14\">And he went, and fetched, and brought them to his mother: and his mother made savoury meat, such as his father loved.</VERS>\r\n      <VERS vnumber=\"15\">And Rebekah took goodly raiment of her eldest son Esau, which were with her in the house, and put them upon Jacob her younger son:</VERS>\r\n      <VERS vnumber=\"16\">And she put the skins of the kids of the goats upon his hands, and upon the smooth of his neck:</VERS>\r\n      <VERS vnumber=\"17\">And she gave the savoury meat and the bread, which she had prepared, into the hand of her son Jacob.</VERS>\r\n      <VERS vnumber=\"18\">And he came unto his father, and said, My father: and he said, Here am I; who art thou, my son?</VERS>\r\n      <VERS vnumber=\"19\">And Jacob said unto his father, I am Esau thy firstborn; I have done according as thou badest me: arise, I pray thee, sit and eat of my venison, that thy soul may bless me.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And he discerned him not, because his hands were hairy, as his brother Esau's hands: so he blessed him.</VERS>\r\n      <VERS vnumber=\"24\">And he said, Art thou my very son Esau? And he said, I am.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And his father Isaac said unto him, Come near now, and kiss me, my son.</VERS>\r\n      <VERS vnumber=\"27\">And 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:</VERS>\r\n      <VERS vnumber=\"28\">Therefore God give thee of the dew of heaven, and the fatness of the earth, and plenty of corn and wine:</VERS>\r\n      <VERS vnumber=\"29\">Let 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.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n      <VERS vnumber=\"32\">And Isaac his father said unto him, Who art thou? And he said, I am thy son, thy firstborn Esau.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">And 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.</VERS>\r\n      <VERS vnumber=\"35\">And he said, Thy brother came with subtilty, and hath taken away thy blessing.</VERS>\r\n      <VERS vnumber=\"36\">And 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?</VERS>\r\n      <VERS vnumber=\"37\">And 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?</VERS>\r\n      <VERS vnumber=\"38\">And 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.</VERS>\r\n      <VERS vnumber=\"39\">And 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;</VERS>\r\n      <VERS vnumber=\"40\">And 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.</VERS>\r\n      <VERS vnumber=\"41\">And 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.</VERS>\r\n      <VERS vnumber=\"42\">And 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.</VERS>\r\n      <VERS vnumber=\"43\">Now therefore, my son, obey my voice; and arise, flee thou to Laban my brother to Haran;</VERS>\r\n      <VERS vnumber=\"44\">And tarry with him a few days, until thy brother's fury turn away;</VERS>\r\n      <VERS vnumber=\"45\">Until 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?</VERS>\r\n      <VERS vnumber=\"46\">And 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?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"28\">\r\n      <VERS vnumber=\"1\">And Isaac called Jacob, and blessed him, and charged him, and said unto him, Thou shalt not take a wife of the daughters of Canaan.</VERS>\r\n      <VERS vnumber=\"2\">Arise, go to Padanaram, to the house of Bethuel thy mother's father; and take thee a wife from thence of the daughters of Laban thy mother's brother.</VERS>\r\n      <VERS vnumber=\"3\">And God Almighty bless thee, and make thee fruitful, and multiply thee, that thou mayest be a multitude of people;</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">When 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 daughters of Canaan;</VERS>\r\n      <VERS vnumber=\"7\">And that Jacob obeyed his father and his mother, and was gone to Padanaram;</VERS>\r\n      <VERS vnumber=\"8\">And Esau seeing that the daughters of Canaan pleased not Isaac his father;</VERS>\r\n      <VERS vnumber=\"9\">Then 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.</VERS>\r\n      <VERS vnumber=\"10\">And Jacob went out from Beersheba, and went toward Haran.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And, 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;</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And, 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.</VERS>\r\n      <VERS vnumber=\"16\">And Jacob awaked out of his sleep, and he said, Surely the LORD is in this place; and I knew it not.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And he called the name of that place Bethel: but the name of that city was called Luz at the first.</VERS>\r\n      <VERS vnumber=\"20\">And 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,</VERS>\r\n      <VERS vnumber=\"21\">So that I come again to my father's house in peace; then shall the LORD be my God:</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"29\">\r\n      <VERS vnumber=\"1\">Then Jacob went on his journey, and came into the land of the people of the east.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And Jacob said unto them, My brethren, whence be ye? And they said, Of Haran are we.</VERS>\r\n      <VERS vnumber=\"5\">And he said unto them, Know ye Laban the son of Nahor? And they said, We know him.</VERS>\r\n      <VERS vnumber=\"6\">And he said unto them, Is he well? And they said, He is well: and, behold, Rachel his daughter cometh with the sheep.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And while he yet spake with them, Rachel came with her father's sheep: for she kept them.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And Jacob kissed Rachel, and lifted up his voice, and wept.</VERS>\r\n      <VERS vnumber=\"12\">And Jacob told Rachel that he was her father's brother, and that he was Rebekah's son: and she ran and told her father.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And Laban said to him, Surely thou art my bone and my flesh. And he abode with him the space of a month.</VERS>\r\n      <VERS vnumber=\"15\">And Laban said unto Jacob, Because thou art my brother, shouldest thou therefore serve me for nought? tell me, what shall thy wages be?</VERS>\r\n      <VERS vnumber=\"16\">And Laban had two daughters: the name of the elder was Leah, and the name of the younger was Rachel.</VERS>\r\n      <VERS vnumber=\"17\">Leah was tender eyed; but Rachel was beautiful and well favoured.</VERS>\r\n      <VERS vnumber=\"18\">And Jacob loved Rachel; and said, I will serve thee seven years for Rachel thy younger daughter.</VERS>\r\n      <VERS vnumber=\"19\">And Laban said, It is better that I give her to thee, than that I should give her to another man: abide with me.</VERS>\r\n      <VERS vnumber=\"20\">And Jacob served seven years for Rachel; and they seemed unto him but a few days, for the love he had to her.</VERS>\r\n      <VERS vnumber=\"21\">And Jacob said unto Laban, Give me my wife, for my days are fulfilled, that I may go in unto her.</VERS>\r\n      <VERS vnumber=\"22\">And Laban gathered together all the men of the place, and made a feast.</VERS>\r\n      <VERS vnumber=\"23\">And it came to pass in the evening, that he took Leah his daughter, and brought her to him; and he went in unto her.</VERS>\r\n      <VERS vnumber=\"24\">And Laban gave unto his daughter Leah Zilpah his maid for an handmaid.</VERS>\r\n      <VERS vnumber=\"25\">And 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?</VERS>\r\n      <VERS vnumber=\"26\">And Laban said, It must not be so done in our country, to give the younger before the firstborn.</VERS>\r\n      <VERS vnumber=\"27\">Fulfil her week, and we will give thee this also for the service which thou shalt serve with me yet seven other years.</VERS>\r\n      <VERS vnumber=\"28\">And Jacob did so, and fulfilled her week: and he gave him Rachel his daughter to wife also.</VERS>\r\n      <VERS vnumber=\"29\">And Laban gave to Rachel his daughter Bilhah his handmaid to be her maid.</VERS>\r\n      <VERS vnumber=\"30\">And he went in also unto Rachel, and he loved also Rachel more than Leah, and served with him yet seven other years.</VERS>\r\n      <VERS vnumber=\"31\">And when the LORD saw that Leah was hated, he opened her womb: but Rachel was barren.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">And she conceived again, and bare a son; and said, Because the LORD hath heard that I was hated, he hath therefore given me this son also: and she called his name Simeon.</VERS>\r\n      <VERS vnumber=\"34\">And 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.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"30\">\r\n      <VERS vnumber=\"1\">And when Rachel saw that she bare Jacob no children, Rachel envied her sister; and said unto Jacob, Give me children, or else I die.</VERS>\r\n      <VERS vnumber=\"2\">And 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?</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And she gave him Bilhah her handmaid to wife: and Jacob went in unto her.</VERS>\r\n      <VERS vnumber=\"5\">And Bilhah conceived, and bare Jacob a son.</VERS>\r\n      <VERS vnumber=\"6\">And Rachel said, God hath judged me, and hath also heard my voice, and hath given me a son: therefore called she his name Dan.</VERS>\r\n      <VERS vnumber=\"7\">And Bilhah Rachel's maid conceived again, and bare Jacob a second son.</VERS>\r\n      <VERS vnumber=\"8\">And Rachel said, With great wrestlings have I wrestled with my sister, and I have prevailed: and she called his name Naphtali.</VERS>\r\n      <VERS vnumber=\"9\">When Leah saw that she had left bearing, she took Zilpah her maid, and gave her Jacob to wife.</VERS>\r\n      <VERS vnumber=\"10\">And Zilpah Leah's maid bare Jacob a son.</VERS>\r\n      <VERS vnumber=\"11\">And Leah said, A troop cometh: and she called his name Gad.</VERS>\r\n      <VERS vnumber=\"12\">And Zilpah Leah's maid bare Jacob a second son.</VERS>\r\n      <VERS vnumber=\"13\">And Leah said, Happy am I, for the daughters will call me blessed: and she called his name Asher.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And God hearkened unto Leah, and she conceived, and bare Jacob the fifth son.</VERS>\r\n      <VERS vnumber=\"18\">And Leah said, God hath given me my hire, because I have given my maiden to my husband: and she called his name Issachar.</VERS>\r\n      <VERS vnumber=\"19\">And Leah conceived again, and bare Jacob the sixth son.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And afterwards she bare a daughter, and called her name Dinah.</VERS>\r\n      <VERS vnumber=\"22\">And God remembered Rachel, and God hearkened to her, and opened her womb.</VERS>\r\n      <VERS vnumber=\"23\">And she conceived, and bare a son; and said, God hath taken away my reproach:</VERS>\r\n      <VERS vnumber=\"24\">And she called his name Joseph; and said, The LORD shall add to me another son.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">Give 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And he said, Appoint me thy wages, and I will give it.</VERS>\r\n      <VERS vnumber=\"29\">And he said unto him, Thou knowest how I have served thee, and how thy cattle was with me.</VERS>\r\n      <VERS vnumber=\"30\">For 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?</VERS>\r\n      <VERS vnumber=\"31\">And 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:</VERS>\r\n      <VERS vnumber=\"32\">I 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.</VERS>\r\n      <VERS vnumber=\"33\">So 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.</VERS>\r\n      <VERS vnumber=\"34\">And Laban said, Behold, I would it might be according to thy word.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">And he set three days' journey betwixt himself and Jacob: and Jacob fed the rest of Laban's flocks.</VERS>\r\n      <VERS vnumber=\"37\">And 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.</VERS>\r\n      <VERS vnumber=\"38\">And 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.</VERS>\r\n      <VERS vnumber=\"39\">And the flocks conceived before the rods, and brought forth cattle ringstraked, speckled, and spotted.</VERS>\r\n      <VERS vnumber=\"40\">And 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.</VERS>\r\n      <VERS vnumber=\"41\">And 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.</VERS>\r\n      <VERS vnumber=\"42\">But when the cattle were feeble, he put them not in: so the feebler were Laban's, and the stronger Jacob's.</VERS>\r\n      <VERS vnumber=\"43\">And the man increased exceedingly, and had much cattle, and maidservants, and menservants, and camels, and asses.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"31\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And Jacob beheld the countenance of Laban, and, behold, it was not toward him as before.</VERS>\r\n      <VERS vnumber=\"3\">And the LORD said unto Jacob, Return unto the land of thy fathers, and to thy kindred; and I will be with thee.</VERS>\r\n      <VERS vnumber=\"4\">And Jacob sent and called Rachel and Leah to the field unto his flock,</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And ye know that with all my power I have served your father.</VERS>\r\n      <VERS vnumber=\"7\">And your father hath deceived me, and changed my wages ten times; but God suffered him not to hurt me.</VERS>\r\n      <VERS vnumber=\"8\">If 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.</VERS>\r\n      <VERS vnumber=\"9\">Thus God hath taken away the cattle of your father, and given them to me.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And the angel of God spake unto me in a dream, saying, Jacob: And I said, Here am I.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">I 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.</VERS>\r\n      <VERS vnumber=\"14\">And Rachel and Leah answered and said unto him, Is there yet any portion or inheritance for us in our father's house?</VERS>\r\n      <VERS vnumber=\"15\">Are we not counted of him strangers? for he hath sold us, and hath quite devoured also our money.</VERS>\r\n      <VERS vnumber=\"16\">For 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.</VERS>\r\n      <VERS vnumber=\"17\">Then Jacob rose up, and set his sons and his wives upon camels;</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And Laban went to shear his sheep: and Rachel had stolen the images that were her father's.</VERS>\r\n      <VERS vnumber=\"20\">And Jacob stole away unawares to Laban the Syrian, in that he told him not that he fled.</VERS>\r\n      <VERS vnumber=\"21\">So he fled with all that he had; and he rose up, and passed over the river, and set his face toward the mount Gilead.</VERS>\r\n      <VERS vnumber=\"22\">And it was told Laban on the third day that Jacob was fled.</VERS>\r\n      <VERS vnumber=\"23\">And he took his brethren with him, and pursued after him seven days' journey; and they overtook him in the mount Gilead.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">Then Laban overtook Jacob. Now Jacob had pitched his tent in the mount: and Laban with his brethren pitched in the mount of Gilead.</VERS>\r\n      <VERS vnumber=\"26\">And 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?</VERS>\r\n      <VERS vnumber=\"27\">Wherefore 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?</VERS>\r\n      <VERS vnumber=\"28\">And hast not suffered me to kiss my sons and my daughters? thou hast now done foolishly in so doing.</VERS>\r\n      <VERS vnumber=\"29\">It 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.</VERS>\r\n      <VERS vnumber=\"30\">And now, though thou wouldest needs be gone, because thou sore longedst after thy father's house, yet wherefore hast thou stolen my gods?</VERS>\r\n      <VERS vnumber=\"31\">And Jacob answered and said to Laban, Because I was afraid: for I said, Peradventure thou wouldest take by force thy daughters from me.</VERS>\r\n      <VERS vnumber=\"32\">With 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.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">Now 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.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">And 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?</VERS>\r\n      <VERS vnumber=\"37\">Whereas 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.</VERS>\r\n      <VERS vnumber=\"38\">This 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.</VERS>\r\n      <VERS vnumber=\"39\">That 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.</VERS>\r\n      <VERS vnumber=\"40\">Thus I was; in the day the drought consumed me, and the frost by night; and my sleep departed from mine eyes.</VERS>\r\n      <VERS vnumber=\"41\">Thus 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.</VERS>\r\n      <VERS vnumber=\"42\">Except 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.</VERS>\r\n      <VERS vnumber=\"43\">And 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?</VERS>\r\n      <VERS vnumber=\"44\">Now therefore come thou, let us make a covenant, I and thou; and let it be for a witness between me and thee.</VERS>\r\n      <VERS vnumber=\"45\">And Jacob took a stone, and set it up for a pillar.</VERS>\r\n      <VERS vnumber=\"46\">And Jacob said unto his brethren, Gather stones; and they took stones, and made an heap: and they did eat there upon the heap.</VERS>\r\n      <VERS vnumber=\"47\">And Laban called it Jegarsahadutha: but Jacob called it Galeed.</VERS>\r\n      <VERS vnumber=\"48\">And Laban said, This heap is a witness between me and thee this day. Therefore was the name of it called Galeed;</VERS>\r\n      <VERS vnumber=\"49\">And Mizpah; for he said, The LORD watch between me and thee, when we are absent one from another.</VERS>\r\n      <VERS vnumber=\"50\">If 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.</VERS>\r\n      <VERS vnumber=\"51\">And Laban said to Jacob, Behold this heap, and behold this pillar, which I have cast betwixt me and thee;</VERS>\r\n      <VERS vnumber=\"52\">This 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.</VERS>\r\n      <VERS vnumber=\"53\">The 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.</VERS>\r\n      <VERS vnumber=\"54\">Then 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.</VERS>\r\n      <VERS vnumber=\"55\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"32\">\r\n      <VERS vnumber=\"1\">And Jacob went on his way, and the angels of God met him.</VERS>\r\n      <VERS vnumber=\"2\">And when Jacob saw them, he said, This is God's host: and he called the name of that place Mahanaim.</VERS>\r\n      <VERS vnumber=\"3\">And Jacob sent messengers before him to Esau his brother unto the land of Seir, the country of Edom.</VERS>\r\n      <VERS vnumber=\"4\">And 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:</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">Then 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;</VERS>\r\n      <VERS vnumber=\"8\">And said, If Esau come to the one company, and smite it, then the other company which is left shall escape.</VERS>\r\n      <VERS vnumber=\"9\">And 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:</VERS>\r\n      <VERS vnumber=\"10\">I 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.</VERS>\r\n      <VERS vnumber=\"11\">Deliver 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.</VERS>\r\n      <VERS vnumber=\"12\">And thou saidst, I will surely do thee good, and make thy seed as the sand of the sea, which cannot be numbered for multitude.</VERS>\r\n      <VERS vnumber=\"13\">And he lodged there that same night; and took of that which came to his hand a present for Esau his brother;</VERS>\r\n      <VERS vnumber=\"14\">Two hundred she goats, and twenty he goats, two hundred ewes, and twenty rams,</VERS>\r\n      <VERS vnumber=\"15\">Thirty milch camels with their colts, forty kine, and ten bulls, twenty she asses, and ten foals.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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?</VERS>\r\n      <VERS vnumber=\"18\">Then 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">So went the present over before him: and himself lodged that night in the company.</VERS>\r\n      <VERS vnumber=\"22\">And he rose up that night, and took his two wives, and his two womenservants, and his eleven sons, and passed over the ford Jabbok.</VERS>\r\n      <VERS vnumber=\"23\">And he took them, and sent them over the brook, and sent over that he had.</VERS>\r\n      <VERS vnumber=\"24\">And Jacob was left alone; and there wrestled a man with him until the breaking of the day.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And he said, Let me go, for the day breaketh. And he said, I will not let thee go, except thou bless me.</VERS>\r\n      <VERS vnumber=\"27\">And he said unto him, What is thy name? And he said, Jacob.</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">And Jacob called the name of the place Peniel: for I have seen God face to face, and my life is preserved.</VERS>\r\n      <VERS vnumber=\"31\">And as he passed over Penuel the sun rose upon him, and he halted upon his thigh.</VERS>\r\n      <VERS vnumber=\"32\">Therefore 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"33\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And he put the handmaids and their children foremost, and Leah and her children after, and Rachel and Joseph hindermost.</VERS>\r\n      <VERS vnumber=\"3\">And he passed over before them, and bowed himself to the ground seven times, until he came near to his brother.</VERS>\r\n      <VERS vnumber=\"4\">And Esau ran to meet him, and embraced him, and fell on his neck, and kissed him: and they wept.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">Then the handmaidens came near, they and their children, and they bowed themselves.</VERS>\r\n      <VERS vnumber=\"7\">And Leah also with her children came near, and bowed themselves: and after came Joseph near and Rachel, and they bowed themselves.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And Esau said, I have enough, my brother; keep that thou hast unto thyself.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">Take, 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.</VERS>\r\n      <VERS vnumber=\"12\">And he said, Let us take our journey, and let us go, and I will go before thee.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">Let 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">So Esau returned that day on his way unto Seir.</VERS>\r\n      <VERS vnumber=\"17\">And Jacob journeyed to Succoth, and built him an house, and made booths for his cattle: therefore the name of the place is called Succoth.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And he erected there an altar, and called it Elelohe-Israel.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"34\">\r\n      <VERS vnumber=\"1\">And Dinah the daughter of Leah, which she bare unto Jacob, went out to see the daughters of the land.</VERS>\r\n      <VERS vnumber=\"2\">And when Shechem the son of Hamor the Hivite, prince of the country, saw her, he took her, and lay with her, and defiled her.</VERS>\r\n      <VERS vnumber=\"3\">And his soul clave unto Dinah the daughter of Jacob, and he loved the damsel, and spake kindly unto the damsel.</VERS>\r\n      <VERS vnumber=\"4\">And Shechem spake unto his father Hamor, saying, Get me this damsel to wife.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And Hamor the father of Shechem went out unto Jacob to commune with him.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And Hamor communed with them, saying, The soul of my son Shechem longeth for your daughter: I pray you give her him to wife.</VERS>\r\n      <VERS vnumber=\"9\">And make ye marriages with us, and give your daughters unto us, and take our daughters unto you.</VERS>\r\n      <VERS vnumber=\"10\">And ye shall dwell with us: and the land shall be before you; dwell and trade ye therein, and get you possessions therein.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">Ask 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.</VERS>\r\n      <VERS vnumber=\"13\">And the sons of Jacob answered Shechem and Hamor his father deceitfully, and said, because he had defiled Dinah their sister:</VERS>\r\n      <VERS vnumber=\"14\">And 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:</VERS>\r\n      <VERS vnumber=\"15\">But in this will we consent unto you: If ye will be as we be, that every male of you be circumcised;</VERS>\r\n      <VERS vnumber=\"16\">Then 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.</VERS>\r\n      <VERS vnumber=\"17\">But if ye will not hearken unto us, to be circumcised; then will we take our daughter, and we will be gone.</VERS>\r\n      <VERS vnumber=\"18\">And their words pleased Hamor, and Shechem Hamor's son.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And Hamor and Shechem his son came unto the gate of their city, and communed with the men of their city, saying,</VERS>\r\n      <VERS vnumber=\"21\">These 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.</VERS>\r\n      <VERS vnumber=\"22\">Only 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.</VERS>\r\n      <VERS vnumber=\"23\">Shall not their cattle and their substance and every beast of theirs be ours? only let us consent unto them, and they will dwell with us.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And they slew Hamor and Shechem his son with the edge of the sword, and took Dinah out of Shechem's house, and went out.</VERS>\r\n      <VERS vnumber=\"27\">The sons of Jacob came upon the slain, and spoiled the city, because they had defiled their sister.</VERS>\r\n      <VERS vnumber=\"28\">They took their sheep, and their oxen, and their asses, and that which was in the city, and that which was in the field,</VERS>\r\n      <VERS vnumber=\"29\">And all their wealth, and all their little ones, and their wives took they captive, and spoiled even all that was in the house.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">And they said, Should he deal with our sister as with an harlot?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"35\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">Then 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:</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">So Jacob came to Luz, which is in the land of Canaan, that is, Bethel, he and all the people that were with him.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">But Deborah Rebekah's nurse died, and she was buried beneath Bethel under an oak: and the name of it was called Allonbachuth.</VERS>\r\n      <VERS vnumber=\"9\">And God appeared unto Jacob again, when he came out of Padanaram, and blessed him.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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;</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And God went up from him in the place where he talked with him.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And Jacob called the name of the place where God spake with him, Bethel.</VERS>\r\n      <VERS vnumber=\"16\">And they journeyed from Bethel; and there was but a little way to come to Ephrath: and Rachel travailed, and she had hard labour.</VERS>\r\n      <VERS vnumber=\"17\">And it came to pass, when she was in hard labour, that the midwife said unto her, Fear not; thou shalt have this son also.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And Rachel died, and was buried in the way to Ephrath, which is Bethlehem.</VERS>\r\n      <VERS vnumber=\"20\">And Jacob set a pillar upon her grave: that is the pillar of Rachel's grave unto this day.</VERS>\r\n      <VERS vnumber=\"21\">And Israel journeyed, and spread his tent beyond the tower of Edar.</VERS>\r\n      <VERS vnumber=\"22\">And 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:</VERS>\r\n      <VERS vnumber=\"23\">The sons of Leah; Reuben, Jacob's firstborn, and Simeon, and Levi, and Judah, and Issachar, and Zebulun:</VERS>\r\n      <VERS vnumber=\"24\">The sons of Rachel; Joseph, and Benjamin:</VERS>\r\n      <VERS vnumber=\"25\">And the sons of Bilhah, Rachel's handmaid; Dan, and Naphtali:</VERS>\r\n      <VERS vnumber=\"26\">And the sons of Zilpah, Leah's handmaid; Gad, and Asher: these are the sons of Jacob, which were born to him in Padanaram.</VERS>\r\n      <VERS vnumber=\"27\">And Jacob came unto Isaac his father unto Mamre, unto the city of Arbah, which is Hebron, where Abraham and Isaac sojourned.</VERS>\r\n      <VERS vnumber=\"28\">And the days of Isaac were an hundred and fourscore years.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"36\">\r\n      <VERS vnumber=\"1\">Now these are the generations of Esau, who is Edom.</VERS>\r\n      <VERS vnumber=\"2\">Esau 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;</VERS>\r\n      <VERS vnumber=\"3\">And Bashemath Ishmael's daughter, sister of Nebajoth.</VERS>\r\n      <VERS vnumber=\"4\">And Adah bare to Esau Eliphaz; and Bashemath bare Reuel;</VERS>\r\n      <VERS vnumber=\"5\">And Aholibamah bare Jeush, and Jaalam, and Korah: these are the sons of Esau, which were born unto him in the land of Canaan.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">For 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.</VERS>\r\n      <VERS vnumber=\"8\">Thus dwelt Esau in mount Seir: Esau is Edom.</VERS>\r\n      <VERS vnumber=\"9\">And these are the generations of Esau the father of the Edomites in mount Seir:</VERS>\r\n      <VERS vnumber=\"10\">These 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.</VERS>\r\n      <VERS vnumber=\"11\">And the sons of Eliphaz were Teman, Omar, Zepho, and Gatam, and Kenaz.</VERS>\r\n      <VERS vnumber=\"12\">And Timna was concubine to Eliphaz Esau's son; and she bare to Eliphaz Amalek: these were the sons of Adah Esau's wife.</VERS>\r\n      <VERS vnumber=\"13\">And these are the sons of Reuel; Nahath, and Zerah, Shammah, and Mizzah: these were the sons of Bashemath Esau's wife.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">These were dukes of the sons of Esau: the sons of Eliphaz the firstborn son of Esau; duke Teman, duke Omar, duke Zepho, duke Kenaz,</VERS>\r\n      <VERS vnumber=\"16\">Duke 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">These are the sons of Esau, who is Edom, and these are their dukes.</VERS>\r\n      <VERS vnumber=\"20\">These are the sons of Seir the Horite, who inhabited the land; Lotan, and Shobal, and Zibeon, and Anah,</VERS>\r\n      <VERS vnumber=\"21\">And Dishon, and Ezer, and Dishan: these are the dukes of the Horites, the children of Seir in the land of Edom.</VERS>\r\n      <VERS vnumber=\"22\">And the children of Lotan were Hori and Hemam; and Lotan's sister was Timna.</VERS>\r\n      <VERS vnumber=\"23\">And the children of Shobal were these; Alvan, and Manahath, and Ebal, Shepho, and Onam.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And the children of Anah were these; Dishon, and Aholibamah the daughter of Anah.</VERS>\r\n      <VERS vnumber=\"26\">And these are the children of Dishon; Hemdan, and Eshban, and Ithran, and Cheran.</VERS>\r\n      <VERS vnumber=\"27\">The children of Ezer are these; Bilhan, and Zaavan, and Akan.</VERS>\r\n      <VERS vnumber=\"28\">The children of Dishan are these; Uz, and Aran.</VERS>\r\n      <VERS vnumber=\"29\">These are the dukes that came of the Horites; duke Lotan, duke Shobal, duke Zibeon, duke Anah,</VERS>\r\n      <VERS vnumber=\"30\">Duke Dishon, duke Ezer, duke Dishan: these are the dukes that came of Hori, among their dukes in the land of Seir.</VERS>\r\n      <VERS vnumber=\"31\">And these are the kings that reigned in the land of Edom, before there reigned any king over the children of Israel.</VERS>\r\n      <VERS vnumber=\"32\">And Bela the son of Beor reigned in Edom: and the name of his city was Dinhabah.</VERS>\r\n      <VERS vnumber=\"33\">And Bela died, and Jobab the son of Zerah of Bozrah reigned in his stead.</VERS>\r\n      <VERS vnumber=\"34\">And Jobab died, and Husham of the land of Temani reigned in his stead.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">And Hadad died, and Samlah of Masrekah reigned in his stead.</VERS>\r\n      <VERS vnumber=\"37\">And Samlah died, and Saul of Rehoboth by the river reigned in his stead.</VERS>\r\n      <VERS vnumber=\"38\">And Saul died, and Baalhanan the son of Achbor reigned in his stead.</VERS>\r\n      <VERS vnumber=\"39\">And 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.</VERS>\r\n      <VERS vnumber=\"40\">And 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,</VERS>\r\n      <VERS vnumber=\"41\">Duke Aholibamah, duke Elah, duke Pinon,</VERS>\r\n      <VERS vnumber=\"42\">Duke Kenaz, duke Teman, duke Mibzar,</VERS>\r\n      <VERS vnumber=\"43\">Duke 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"37\">\r\n      <VERS vnumber=\"1\">And Jacob dwelt in the land wherein his father was a stranger, in the land of Canaan.</VERS>\r\n      <VERS vnumber=\"2\">These 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.</VERS>\r\n      <VERS vnumber=\"3\">Now 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.</VERS>\r\n      <VERS vnumber=\"4\">And when his brethren saw that their father loved him more than all his brethren, they hated him, and could not speak peaceably unto him.</VERS>\r\n      <VERS vnumber=\"5\">And Joseph dreamed a dream, and he told it his brethren: and they hated him yet the more.</VERS>\r\n      <VERS vnumber=\"6\">And he said unto them, Hear, I pray you, this dream which I have dreamed:</VERS>\r\n      <VERS vnumber=\"7\">For, 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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?</VERS>\r\n      <VERS vnumber=\"11\">And his brethren envied him; but his father observed the saying.</VERS>\r\n      <VERS vnumber=\"12\">And his brethren went to feed their father's flock in Shechem.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And a certain man found him, and, behold, he was wandering in the field: and the man asked him, saying, What seekest thou?</VERS>\r\n      <VERS vnumber=\"16\">And he said, I seek my brethren: tell me, I pray thee, where they feed their flocks.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And when they saw him afar off, even before he came near unto them, they conspired against him to slay him.</VERS>\r\n      <VERS vnumber=\"19\">And they said one to another, Behold, this dreamer cometh.</VERS>\r\n      <VERS vnumber=\"20\">Come 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.</VERS>\r\n      <VERS vnumber=\"21\">And Reuben heard it, and he delivered him out of their hands; and said, Let us not kill him.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And 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;</VERS>\r\n      <VERS vnumber=\"24\">And they took him, and cast him into a pit: and the pit was empty, there was no water in it.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And Judah said unto his brethren, What profit is it if we slay our brother, and conceal his blood?</VERS>\r\n      <VERS vnumber=\"27\">Come, 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.</VERS>\r\n      <VERS vnumber=\"28\">Then 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.</VERS>\r\n      <VERS vnumber=\"29\">And Reuben returned unto the pit; and, behold, Joseph was not in the pit; and he rent his clothes.</VERS>\r\n      <VERS vnumber=\"30\">And he returned unto his brethren, and said, The child is not; and I, whither shall I go?</VERS>\r\n      <VERS vnumber=\"31\">And they took Joseph's coat, and killed a kid of the goats, and dipped the coat in the blood;</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">And he knew it, and said, It is my son's coat; an evil beast hath devoured him; Joseph is without doubt rent in pieces.</VERS>\r\n      <VERS vnumber=\"34\">And Jacob rent his clothes, and put sackcloth upon his loins, and mourned for his son many days.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">And the Midianites sold him into Egypt unto Potiphar, an officer of Pharaoh's, and captain of the guard.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"38\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And Judah saw there a daughter of a certain Canaanite, whose name was Shuah; and he took her, and went in unto her.</VERS>\r\n      <VERS vnumber=\"3\">And she conceived, and bare a son; and he called his name Er.</VERS>\r\n      <VERS vnumber=\"4\">And she conceived again, and bare a son; and she called his name Onan.</VERS>\r\n      <VERS vnumber=\"5\">And she yet again conceived, and bare a son; and called his name Shelah: and he was at Chezib, when she bare him.</VERS>\r\n      <VERS vnumber=\"6\">And Judah took a wife for Er his firstborn, whose name was Tamar.</VERS>\r\n      <VERS vnumber=\"7\">And Er, Judah's firstborn, was wicked in the sight of the LORD; and the LORD slew him.</VERS>\r\n      <VERS vnumber=\"8\">And Judah said unto Onan, Go in unto thy brother's wife, and marry her, and raise up seed to thy brother.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And the thing which he did displeased the LORD: wherefore he slew him also.</VERS>\r\n      <VERS vnumber=\"11\">Then 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And it was told Tamar, saying, Behold thy father in law goeth up to Timnath to shear his sheep.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">When Judah saw her, he thought her to be an harlot; because she had covered her face.</VERS>\r\n      <VERS vnumber=\"16\">And 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?</VERS>\r\n      <VERS vnumber=\"17\">And he said, I will send thee a kid from the flock. And she said, Wilt thou give me a pledge, till thou send it?</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And she arose, and went away, and laid by her vail from her, and put on the garments of her widowhood.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">Then 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.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And Judah said, Let her take it to her, lest we be shamed: behold, I sent this kid, and thou hast not found her.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">When 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And it came to pass in the time of her travail, that, behold, twins were in her womb.</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">And afterward came out his brother, that had the scarlet thread upon his hand: and his name was called Zarah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"39\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And the LORD was with Joseph, and he was a prosperous man; and he was in the house of his master the Egyptian.</VERS>\r\n      <VERS vnumber=\"3\">And his master saw that the LORD was with him, and that the LORD made all that he did to prosper in his hand.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And it came to pass after these things, that his master's wife cast her eyes upon Joseph; and she said, Lie with me.</VERS>\r\n      <VERS vnumber=\"8\">But 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;</VERS>\r\n      <VERS vnumber=\"9\">There 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?</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And she caught him by his garment, saying, Lie with me: and he left his garment in her hand, and fled, and got him out.</VERS>\r\n      <VERS vnumber=\"13\">And it came to pass, when she saw that he had left his garment in her hand, and was fled forth,</VERS>\r\n      <VERS vnumber=\"14\">That 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:</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And she laid up his garment by her, until his lord came home.</VERS>\r\n      <VERS vnumber=\"17\">And 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:</VERS>\r\n      <VERS vnumber=\"18\">And it came to pass, as I lifted up my voice and cried, that he left his garment with me, and fled out.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">But the LORD was with Joseph, and shewed him mercy, and gave him favour in the sight of the keeper of the prison.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">The 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"40\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And Pharaoh was wroth against two of his officers, against the chief of the butlers, and against the chief of the bakers.</VERS>\r\n      <VERS vnumber=\"3\">And he put them in ward in the house of the captain of the guard, into the prison, the place where Joseph was bound.</VERS>\r\n      <VERS vnumber=\"4\">And the captain of the guard charged Joseph with them, and he served them: and they continued a season in ward.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And Joseph came in unto them in the morning, and looked upon them, and, behold, they were sad.</VERS>\r\n      <VERS vnumber=\"7\">And 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?</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And the chief butler told his dream to Joseph, and said to him, In my dream, behold, a vine was before me;</VERS>\r\n      <VERS vnumber=\"10\">And 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:</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And Joseph said unto him, This is the interpretation of it: The three branches are three days:</VERS>\r\n      <VERS vnumber=\"13\">Yet 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.</VERS>\r\n      <VERS vnumber=\"14\">But 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:</VERS>\r\n      <VERS vnumber=\"15\">For 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.</VERS>\r\n      <VERS vnumber=\"16\">When 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:</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And Joseph answered and said, This is the interpretation thereof: The three baskets are three days:</VERS>\r\n      <VERS vnumber=\"19\">Yet 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And he restored the chief butler unto his butlership again; and he gave the cup into Pharaoh's hand:</VERS>\r\n      <VERS vnumber=\"22\">But he hanged the chief baker: as Joseph had interpreted to them.</VERS>\r\n      <VERS vnumber=\"23\">Yet did not the chief butler remember Joseph, but forgat him.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"41\">\r\n      <VERS vnumber=\"1\">And it came to pass at the end of two full years, that Pharaoh dreamed: and, behold, he stood by the river.</VERS>\r\n      <VERS vnumber=\"2\">And, behold, there came up out of the river seven well favoured kine and fatfleshed; and they fed in a meadow.</VERS>\r\n      <VERS vnumber=\"3\">And, 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.</VERS>\r\n      <VERS vnumber=\"4\">And the ill favoured and leanfleshed kine did eat up the seven well favoured and fat kine. So Pharaoh awoke.</VERS>\r\n      <VERS vnumber=\"5\">And he slept and dreamed the second time: and, behold, seven ears of corn came up upon one stalk, rank and good.</VERS>\r\n      <VERS vnumber=\"6\">And, behold, seven thin ears and blasted with the east wind sprung up after them.</VERS>\r\n      <VERS vnumber=\"7\">And the seven thin ears devoured the seven rank and full ears. And Pharaoh awoke, and, behold, it was a dream.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">Then spake the chief butler unto Pharaoh, saying, I do remember my faults this day:</VERS>\r\n      <VERS vnumber=\"10\">Pharaoh was wroth with his servants, and put me in ward in the captain of the guard's house, both me and the chief baker:</VERS>\r\n      <VERS vnumber=\"11\">And we dreamed a dream in one night, I and he; we dreamed each man according to the interpretation of his dream.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And it came to pass, as he interpreted to us, so it was; me he restored unto mine office, and him he hanged.</VERS>\r\n      <VERS vnumber=\"14\">Then 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And Joseph answered Pharaoh, saying, It is not in me: God shall give Pharaoh an answer of peace.</VERS>\r\n      <VERS vnumber=\"17\">And Pharaoh said unto Joseph, In my dream, behold, I stood upon the bank of the river:</VERS>\r\n      <VERS vnumber=\"18\">And, behold, there came up out of the river seven kine, fatfleshed and well favoured; and they fed in a meadow:</VERS>\r\n      <VERS vnumber=\"19\">And, 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:</VERS>\r\n      <VERS vnumber=\"20\">And the lean and the ill favoured kine did eat up the first seven fat kine:</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And I saw in my dream, and, behold, seven ears came up in one stalk, full and good:</VERS>\r\n      <VERS vnumber=\"23\">And, behold, seven ears, withered, thin, and blasted with the east wind, sprung up after them:</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And Joseph said unto Pharaoh, The dream of Pharaoh is one: God hath shewed Pharaoh what he is about to do.</VERS>\r\n      <VERS vnumber=\"26\">The seven good kine are seven years; and the seven good ears are seven years: the dream is one.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">This is the thing which I have spoken unto Pharaoh: What God is about to do he sheweth unto Pharaoh.</VERS>\r\n      <VERS vnumber=\"29\">Behold, there come seven years of great plenty throughout all the land of Egypt:</VERS>\r\n      <VERS vnumber=\"30\">And 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;</VERS>\r\n      <VERS vnumber=\"31\">And the plenty shall not be known in the land by reason of that famine following; for it shall be very grievous.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">Now therefore let Pharaoh look out a man discreet and wise, and set him over the land of Egypt.</VERS>\r\n      <VERS vnumber=\"34\">Let 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.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">And 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.</VERS>\r\n      <VERS vnumber=\"37\">And the thing was good in the eyes of Pharaoh, and in the eyes of all his servants.</VERS>\r\n      <VERS vnumber=\"38\">And Pharaoh said unto his servants, Can we find such a one as this is, a man in whom the Spirit of God is?</VERS>\r\n      <VERS vnumber=\"39\">And Pharaoh said unto Joseph, Forasmuch as God hath shewed thee all this, there is none so discreet and wise as thou art:</VERS>\r\n      <VERS vnumber=\"40\">Thou 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.</VERS>\r\n      <VERS vnumber=\"41\">And Pharaoh said unto Joseph, See, I have set thee over all the land of Egypt.</VERS>\r\n      <VERS vnumber=\"42\">And 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;</VERS>\r\n      <VERS vnumber=\"43\">And 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.</VERS>\r\n      <VERS vnumber=\"44\">And 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.</VERS>\r\n      <VERS vnumber=\"45\">And 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.</VERS>\r\n      <VERS vnumber=\"46\">And 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.</VERS>\r\n      <VERS vnumber=\"47\">And in the seven plenteous years the earth brought forth by handfuls.</VERS>\r\n      <VERS vnumber=\"48\">And 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.</VERS>\r\n      <VERS vnumber=\"49\">And Joseph gathered corn as the sand of the sea, very much, until he left numbering; for it was without number.</VERS>\r\n      <VERS vnumber=\"50\">And unto Joseph were born two sons before the years of famine came, which Asenath the daughter of Potipherah priest of On bare unto him.</VERS>\r\n      <VERS vnumber=\"51\">And 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.</VERS>\r\n      <VERS vnumber=\"52\">And the name of the second called he Ephraim: For God hath caused me to be fruitful in the land of my affliction.</VERS>\r\n      <VERS vnumber=\"53\">And the seven years of plenteousness, that was in the land of Egypt, were ended.</VERS>\r\n      <VERS vnumber=\"54\">And 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.</VERS>\r\n      <VERS vnumber=\"55\">And 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.</VERS>\r\n      <VERS vnumber=\"56\">And 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.</VERS>\r\n      <VERS vnumber=\"57\">And all countries came into Egypt to Joseph for to buy corn; because that the famine was so sore in all lands.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"42\">\r\n      <VERS vnumber=\"1\">Now when Jacob saw that there was corn in Egypt, Jacob said unto his sons, Why do ye look one upon another?</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And Joseph's ten brethren went down to buy corn in Egypt.</VERS>\r\n      <VERS vnumber=\"4\">But Benjamin, Joseph's brother, Jacob sent not with his brethren; for he said, Lest peradventure mischief befall him.</VERS>\r\n      <VERS vnumber=\"5\">And the sons of Israel came to buy corn among those that came: for the famine was in the land of Canaan.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And Joseph knew his brethren, but they knew not him.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And they said unto him, Nay, my lord, but to buy food are thy servants come.</VERS>\r\n      <VERS vnumber=\"11\">We are all one man's sons; we are true men, thy servants are no spies.</VERS>\r\n      <VERS vnumber=\"12\">And he said unto them, Nay, but to see the nakedness of the land ye are come.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And Joseph said unto them, That is it that I spake unto you, saying, Ye are spies:</VERS>\r\n      <VERS vnumber=\"15\">Hereby ye shall be proved: By the life of Pharaoh ye shall not go forth hence, except your youngest brother come hither.</VERS>\r\n      <VERS vnumber=\"16\">Send 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.</VERS>\r\n      <VERS vnumber=\"17\">And he put them all together into ward three days.</VERS>\r\n      <VERS vnumber=\"18\">And Joseph said unto them the third day, This do, and live; for I fear God:</VERS>\r\n      <VERS vnumber=\"19\">If 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:</VERS>\r\n      <VERS vnumber=\"20\">But bring your youngest brother unto me; so shall your words be verified, and ye shall not die. And they did so.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And they knew not that Joseph understood them; for he spake unto them by an interpreter.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">Then 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.</VERS>\r\n      <VERS vnumber=\"26\">And they laded their asses with the corn, and departed thence.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And 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?</VERS>\r\n      <VERS vnumber=\"29\">And they came unto Jacob their father unto the land of Canaan, and told him all that befell unto them; saying,</VERS>\r\n      <VERS vnumber=\"30\">The man, who is the lord of the land, spake roughly to us, and took us for spies of the country.</VERS>\r\n      <VERS vnumber=\"31\">And we said unto him, We are true men; we are no spies:</VERS>\r\n      <VERS vnumber=\"32\">We be twelve brethren, sons of our father; one is not, and the youngest is this day with our father in the land of Canaan.</VERS>\r\n      <VERS vnumber=\"33\">And 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:</VERS>\r\n      <VERS vnumber=\"34\">And 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.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">And 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.</VERS>\r\n      <VERS vnumber=\"37\">And 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.</VERS>\r\n      <VERS vnumber=\"38\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"43\">\r\n      <VERS vnumber=\"1\">And the famine was sore in the land.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">If thou wilt send our brother with us, we will go down and buy thee food:</VERS>\r\n      <VERS vnumber=\"5\">But 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.</VERS>\r\n      <VERS vnumber=\"6\">And Israel said, Wherefore dealt ye so ill with me, as to tell the man whether ye had yet a brother?</VERS>\r\n      <VERS vnumber=\"7\">And 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?</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">I 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:</VERS>\r\n      <VERS vnumber=\"10\">For except we had lingered, surely now we had returned this second time.</VERS>\r\n      <VERS vnumber=\"11\">And 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:</VERS>\r\n      <VERS vnumber=\"12\">And 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:</VERS>\r\n      <VERS vnumber=\"13\">Take also your brother, and arise, go again unto the man:</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And the man did as Joseph bade; and the man brought the men into Joseph's house.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And they came near to the steward of Joseph's house, and they communed with him at the door of the house,</VERS>\r\n      <VERS vnumber=\"20\">And said, O sir, we came indeed down at the first time to buy food:</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And other money have we brought down in our hands to buy food: we cannot tell who put our money in our sacks.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And the man brought the men into Joseph's house, and gave them water, and they washed their feet; and he gave their asses provender.</VERS>\r\n      <VERS vnumber=\"25\">And they made ready the present against Joseph came at noon: for they heard that they should eat bread there.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And he asked them of their welfare, and said, Is your father well, the old man of whom ye spake? Is he yet alive?</VERS>\r\n      <VERS vnumber=\"28\">And they answered, Thy servant our father is in good health, he is yet alive. And they bowed down their heads, and made obeisance.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">And he washed his face, and went out, and refrained himself, and said, Set on bread.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">And they sat before him, the firstborn according to his birthright, and the youngest according to his youth: and the men marvelled one at another.</VERS>\r\n      <VERS vnumber=\"34\">And he took and sent messes unto them from before him: but Benjamin's mess was five times so much as any of theirs. And they drank, and were merry with him.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"44\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">As soon as the morning was light, the men were sent away, they and their asses.</VERS>\r\n      <VERS vnumber=\"4\">And 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?</VERS>\r\n      <VERS vnumber=\"5\">Is not this it in which my lord drinketh, and whereby indeed he divineth? ye have done evil in so doing.</VERS>\r\n      <VERS vnumber=\"6\">And he overtook them, and he spake unto them these same words.</VERS>\r\n      <VERS vnumber=\"7\">And they said unto him, Wherefore saith my lord these words? God forbid that thy servants should do according to this thing:</VERS>\r\n      <VERS vnumber=\"8\">Behold, 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?</VERS>\r\n      <VERS vnumber=\"9\">With whomsoever of thy servants it be found, both let him die, and we also will be my lord's bondmen.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">Then they speedily took down every man his sack to the ground, and opened every man his sack.</VERS>\r\n      <VERS vnumber=\"12\">And he searched, and began at the eldest, and left at the youngest: and the cup was found in Benjamin's sack.</VERS>\r\n      <VERS vnumber=\"13\">Then they rent their clothes, and laded every man his ass, and returned to the city.</VERS>\r\n      <VERS vnumber=\"14\">And Judah and his brethren came to Joseph's house; for he was yet there: and they fell before him on the ground.</VERS>\r\n      <VERS vnumber=\"15\">And Joseph said unto them, What deed is this that ye have done? wot ye not that such a man as I can certainly divine?</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">Then 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.</VERS>\r\n      <VERS vnumber=\"19\">My lord asked his servants, saying, Have ye a father, or a brother?</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And thou saidst unto thy servants, Bring him down unto me, that I may set mine eyes upon him.</VERS>\r\n      <VERS vnumber=\"22\">And we said unto my lord, The lad cannot leave his father: for if he should leave his father, his father would die.</VERS>\r\n      <VERS vnumber=\"23\">And thou saidst unto thy servants, Except your youngest brother come down with you, ye shall see my face no more.</VERS>\r\n      <VERS vnumber=\"24\">And it came to pass when we came up unto thy servant my father, we told him the words of my lord.</VERS>\r\n      <VERS vnumber=\"25\">And our father said, Go again, and buy us a little food.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And thy servant my father said unto us, Ye know that my wife bare me two sons:</VERS>\r\n      <VERS vnumber=\"28\">And the one went out from me, and I said, Surely he is torn in pieces; and I saw him not since:</VERS>\r\n      <VERS vnumber=\"29\">And if ye take this also from me, and mischief befall him, ye shall bring down my gray hairs with sorrow to the grave.</VERS>\r\n      <VERS vnumber=\"30\">Now 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;</VERS>\r\n      <VERS vnumber=\"31\">It 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.</VERS>\r\n      <VERS vnumber=\"32\">For 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.</VERS>\r\n      <VERS vnumber=\"33\">Now 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.</VERS>\r\n      <VERS vnumber=\"34\">For 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"45\">\r\n      <VERS vnumber=\"1\">Then 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.</VERS>\r\n      <VERS vnumber=\"2\">And he wept aloud: and the Egyptians and the house of Pharaoh heard.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">Now therefore be not grieved, nor angry with yourselves, that ye sold me hither: for God did send me before you to preserve life.</VERS>\r\n      <VERS vnumber=\"6\">For 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.</VERS>\r\n      <VERS vnumber=\"7\">And God sent me before you to preserve you a posterity in the earth, and to save your lives by a great deliverance.</VERS>\r\n      <VERS vnumber=\"8\">So 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.</VERS>\r\n      <VERS vnumber=\"9\">Haste 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:</VERS>\r\n      <VERS vnumber=\"10\">And 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:</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And, behold, your eyes see, and the eyes of my brother Benjamin, that it is my mouth that speaketh unto you.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And he fell upon his brother Benjamin's neck, and wept; and Benjamin wept upon his neck.</VERS>\r\n      <VERS vnumber=\"15\">Moreover he kissed all his brethren, and wept upon them: and after that his brethren talked with him.</VERS>\r\n      <VERS vnumber=\"16\">And the fame thereof was heard in Pharaoh's house, saying, Joseph's brethren are come: and it pleased Pharaoh well, and his servants.</VERS>\r\n      <VERS vnumber=\"17\">And Pharaoh said unto Joseph, Say unto thy brethren, This do ye; lade your beasts, and go, get you unto the land of Canaan;</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">Now 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.</VERS>\r\n      <VERS vnumber=\"20\">Also regard not your stuff; for the good of all the land of Egypt is yours.</VERS>\r\n      <VERS vnumber=\"21\">And the children of Israel did so: and Joseph gave them wagons, according to the commandment of Pharaoh, and gave them provision for the way.</VERS>\r\n      <VERS vnumber=\"22\">To 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.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">So he sent his brethren away, and they departed: and he said unto them, See that ye fall not out by the way.</VERS>\r\n      <VERS vnumber=\"25\">And they went up out of Egypt, and came into the land of Canaan unto Jacob their father,</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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:</VERS>\r\n      <VERS vnumber=\"28\">And Israel said, It is enough; Joseph my son is yet alive: I will go and see him before I die.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"46\">\r\n      <VERS vnumber=\"1\">And Israel took his journey with all that he had, and came to Beersheba, and offered sacrifices unto the God of his father Isaac.</VERS>\r\n      <VERS vnumber=\"2\">And God spake unto Israel in the visions of the night, and said, Jacob, Jacob. And he said, Here am I.</VERS>\r\n      <VERS vnumber=\"3\">And 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:</VERS>\r\n      <VERS vnumber=\"4\">I 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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:</VERS>\r\n      <VERS vnumber=\"7\">His sons, and his sons' sons with him, his daughters, and his sons' daughters, and all his seed brought he with him into Egypt.</VERS>\r\n      <VERS vnumber=\"8\">And these are the names of the children of Israel, which came into Egypt, Jacob and his sons: Reuben, Jacob's firstborn.</VERS>\r\n      <VERS vnumber=\"9\">And the sons of Reuben; Hanoch, and Phallu, and Hezron, and Carmi.</VERS>\r\n      <VERS vnumber=\"10\">And the sons of Simeon; Jemuel, and Jamin, and Ohad, and Jachin, and Zohar, and Shaul the son of a Canaanitish woman.</VERS>\r\n      <VERS vnumber=\"11\">And the sons of Levi; Gershon, Kohath, and Merari.</VERS>\r\n      <VERS vnumber=\"12\">And the sons of Judah; Er, and Onan, and Shelah, and Pharez, and Zerah: but Er and Onan died in the land of Canaan. And the sons of Pharez were Hezron and Hamul.</VERS>\r\n      <VERS vnumber=\"13\">And the sons of Issachar; Tola, and Phuvah, and Job, and Shimron.</VERS>\r\n      <VERS vnumber=\"14\">And the sons of Zebulun; Sered, and Elon, and Jahleel.</VERS>\r\n      <VERS vnumber=\"15\">These 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.</VERS>\r\n      <VERS vnumber=\"16\">And the sons of Gad; Ziphion, and Haggi, Shuni, and Ezbon, Eri, and Arodi, and Areli.</VERS>\r\n      <VERS vnumber=\"17\">And the sons of Asher; Jimnah, and Ishuah, and Isui, and Beriah, and Serah their sister: and the sons of Beriah; Heber, and Malchiel.</VERS>\r\n      <VERS vnumber=\"18\">These are the sons of Zilpah, whom Laban gave to Leah his daughter, and these she bare unto Jacob, even sixteen souls.</VERS>\r\n      <VERS vnumber=\"19\">The sons of Rachel Jacob's wife; Joseph, and Benjamin.</VERS>\r\n      <VERS vnumber=\"20\">And unto Joseph in the land of Egypt were born Manasseh and Ephraim, which Asenath the daughter of Potipherah priest of On bare unto him.</VERS>\r\n      <VERS vnumber=\"21\">And the sons of Benjamin were Belah, and Becher, and Ashbel, Gera, and Naaman, Ehi, and Rosh, Muppim, and Huppim, and Ard.</VERS>\r\n      <VERS vnumber=\"22\">These are the sons of Rachel, which were born to Jacob: all the souls were fourteen.</VERS>\r\n      <VERS vnumber=\"23\">And the sons of Dan; Hushim.</VERS>\r\n      <VERS vnumber=\"24\">And the sons of Naphtali; Jahzeel, and Guni, and Jezer, and Shillem.</VERS>\r\n      <VERS vnumber=\"25\">These are the sons of Bilhah, which Laban gave unto Rachel his daughter, and she bare these unto Jacob: all the souls were seven.</VERS>\r\n      <VERS vnumber=\"26\">All 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;</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And he sent Judah before him unto Joseph, to direct his face unto Goshen; and they came into the land of Goshen.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">And Israel said unto Joseph, Now let me die, since I have seen thy face, because thou art yet alive.</VERS>\r\n      <VERS vnumber=\"31\">And 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;</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">And it shall come to pass, when Pharaoh shall call you, and shall say, What is your occupation?</VERS>\r\n      <VERS vnumber=\"34\">That 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"47\">\r\n      <VERS vnumber=\"1\">Then 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.</VERS>\r\n      <VERS vnumber=\"2\">And he took some of his brethren, even five men, and presented them unto Pharaoh.</VERS>\r\n      <VERS vnumber=\"3\">And Pharaoh said unto his brethren, What is your occupation? And they said unto Pharaoh, Thy servants are shepherds, both we, and also our fathers.</VERS>\r\n      <VERS vnumber=\"4\">They said moreover 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.</VERS>\r\n      <VERS vnumber=\"5\">And Pharaoh spake unto Joseph, saying, Thy father and thy brethren are come unto thee:</VERS>\r\n      <VERS vnumber=\"6\">The 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.</VERS>\r\n      <VERS vnumber=\"7\">And Joseph brought in Jacob his father, and set him before Pharaoh: and Jacob blessed Pharaoh.</VERS>\r\n      <VERS vnumber=\"8\">And Pharaoh said unto Jacob, How old art thou?</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And Jacob blessed Pharaoh, and went out from before Pharaoh.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And Joseph nourished his father, and his brethren, and all his father's household, with bread, according to their families.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And Joseph said, Give your cattle; and I will give you for your cattle, if money fail.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">When 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:</VERS>\r\n      <VERS vnumber=\"19\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And as for the people, he removed them to cities from one end of the borders of Egypt even to the other end thereof.</VERS>\r\n      <VERS vnumber=\"22\">Only 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.</VERS>\r\n      <VERS vnumber=\"23\">Then 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And they said, Thou hast saved our lives: let us find grace in the sight of my lord, and we will be Pharaoh's servants.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And Israel dwelt in the land of Egypt, in the country of Goshen; and they had possessions therein, and grew, and multiplied exceedingly.</VERS>\r\n      <VERS vnumber=\"28\">And Jacob lived in the land of Egypt seventeen years: so the whole age of Jacob was an hundred forty and seven years.</VERS>\r\n      <VERS vnumber=\"29\">And 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:</VERS>\r\n      <VERS vnumber=\"30\">But 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.</VERS>\r\n      <VERS vnumber=\"31\">And he said, Swear unto me. And he sware unto him. And Israel bowed himself upon the bed's head.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"48\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And one told Jacob, and said, Behold, thy son Joseph cometh unto thee: and Israel strengthened himself, and sat upon the bed.</VERS>\r\n      <VERS vnumber=\"3\">And Jacob said unto Joseph, God Almighty appeared unto me at Luz in the land of Canaan, and blessed me,</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And thy issue, which thou begettest after them, shall be thine, and shall be called after the name of their brethren in their inheritance.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And Israel beheld Joseph's sons, and said, Who are these?</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">Now 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.</VERS>\r\n      <VERS vnumber=\"11\">And Israel said unto Joseph, I had not thought to see thy face: and, lo, God hath shewed me also thy seed.</VERS>\r\n      <VERS vnumber=\"12\">And Joseph brought them out from between his knees, and he bowed himself with his face to the earth.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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,</VERS>\r\n      <VERS vnumber=\"16\">The 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And Joseph said unto his father, Not so, my father: for this is the firstborn; put thy right hand upon his head.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And Israel said unto Joseph, Behold, I die: but God shall be with you, and bring you again unto the land of your fathers.</VERS>\r\n      <VERS vnumber=\"22\">Moreover 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"49\">\r\n      <VERS vnumber=\"1\">And Jacob called unto his sons, and said, Gather yourselves together, that I may tell you that which shall befall you in the last days.</VERS>\r\n      <VERS vnumber=\"2\">Gather yourselves together, and hear, ye sons of Jacob; and hearken unto Israel your father.</VERS>\r\n      <VERS vnumber=\"3\">Reuben, thou art my firstborn, my might, and the beginning of my strength, the excellency of dignity, and the excellency of power:</VERS>\r\n      <VERS vnumber=\"4\">Unstable 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.</VERS>\r\n      <VERS vnumber=\"5\">Simeon and Levi are brethren; instruments of cruelty are in their habitations.</VERS>\r\n      <VERS vnumber=\"6\">O 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.</VERS>\r\n      <VERS vnumber=\"7\">Cursed 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.</VERS>\r\n      <VERS vnumber=\"8\">Judah, 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.</VERS>\r\n      <VERS vnumber=\"9\">Judah 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?</VERS>\r\n      <VERS vnumber=\"10\">The 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.</VERS>\r\n      <VERS vnumber=\"11\">Binding 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:</VERS>\r\n      <VERS vnumber=\"12\">His eyes shall be red with wine, and his teeth white with milk.</VERS>\r\n      <VERS vnumber=\"13\">Zebulun shall dwell at the haven of the sea; and he shall be for an haven of ships; and his border shall be unto Zidon.</VERS>\r\n      <VERS vnumber=\"14\">Issachar is a strong ass couching down between two burdens:</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">Dan shall judge his people, as one of the tribes of Israel.</VERS>\r\n      <VERS vnumber=\"17\">Dan shall be a serpent by the way, an adder in the path, that biteth the horse heels, so that his rider shall fall backward.</VERS>\r\n      <VERS vnumber=\"18\">I have waited for thy salvation, O LORD.</VERS>\r\n      <VERS vnumber=\"19\">Gad, a troop shall overcome him: but he shall overcome at the last.</VERS>\r\n      <VERS vnumber=\"20\">Out of Asher his bread shall be fat, and he shall yield royal dainties.</VERS>\r\n      <VERS vnumber=\"21\">Naphtali is a hind let loose: he giveth goodly words.</VERS>\r\n      <VERS vnumber=\"22\">Joseph is a fruitful bough, even a fruitful bough by a well; whose branches run over the wall:</VERS>\r\n      <VERS vnumber=\"23\">The archers have sorely grieved him, and shot at him, and hated him:</VERS>\r\n      <VERS vnumber=\"24\">But 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:)</VERS>\r\n      <VERS vnumber=\"25\">Even 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:</VERS>\r\n      <VERS vnumber=\"26\">The 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.</VERS>\r\n      <VERS vnumber=\"27\">Benjamin shall ravin as a wolf: in the morning he shall devour the prey, and at night he shall divide the spoil.</VERS>\r\n      <VERS vnumber=\"28\">All 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.</VERS>\r\n      <VERS vnumber=\"29\">And 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,</VERS>\r\n      <VERS vnumber=\"30\">In 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.</VERS>\r\n      <VERS vnumber=\"31\">There they buried Abraham and Sarah his wife; there they buried Isaac and Rebekah his wife; and there I buried Leah.</VERS>\r\n      <VERS vnumber=\"32\">The purchase of the field and of the cave that is therein was from the children of Heth.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"50\">\r\n      <VERS vnumber=\"1\">And Joseph fell upon his father's face, and wept upon him, and kissed him.</VERS>\r\n      <VERS vnumber=\"2\">And Joseph commanded his servants the physicians to embalm his father: and the physicians embalmed Israel.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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,</VERS>\r\n      <VERS vnumber=\"5\">My 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.</VERS>\r\n      <VERS vnumber=\"6\">And Pharaoh said, Go up, and bury thy father, according as he made thee swear.</VERS>\r\n      <VERS vnumber=\"7\">And 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,</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And there went up with him both chariots and horsemen: and it was a very great company.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And his sons did unto him according as he commanded them:</VERS>\r\n      <VERS vnumber=\"13\">For 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And they sent a messenger unto Joseph, saying, Thy father did command before he died, saying,</VERS>\r\n      <VERS vnumber=\"17\">So 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.</VERS>\r\n      <VERS vnumber=\"18\">And his brethren also went and fell down before his face; and they said, Behold, we be thy servants.</VERS>\r\n      <VERS vnumber=\"19\">And Joseph said unto them, Fear not: for am I in the place of God?</VERS>\r\n      <VERS vnumber=\"20\">But 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.</VERS>\r\n      <VERS vnumber=\"21\">Now therefore fear ye not: I will nourish you, and your little ones. And he comforted them, and spake kindly unto them.</VERS>\r\n      <VERS vnumber=\"22\">And Joseph dwelt in Egypt, he, and his father's house: and Joseph lived an hundred and ten years.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And Joseph took an oath of the children of Israel, saying, God will surely visit you, and ye shall carry up my bones from hence.</VERS>\r\n      <VERS vnumber=\"26\">So Joseph died, being an hundred and ten years old: and they embalmed him, and he was put in a coffin in Egypt.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"2\" bname=\"Exodus\" bsname=\"Exod\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">Now these are the names of the children of Israel, which came into Egypt; every man and his household came with Jacob.</VERS>\r\n      <VERS vnumber=\"2\">Reuben, Simeon, Levi, and Judah,</VERS>\r\n      <VERS vnumber=\"3\">Issachar, Zebulun, and Benjamin,</VERS>\r\n      <VERS vnumber=\"4\">Dan, and Naphtali, Gad, and Asher.</VERS>\r\n      <VERS vnumber=\"5\">And all the souls that came out of the loins of Jacob were seventy souls: for Joseph was in Egypt already.</VERS>\r\n      <VERS vnumber=\"6\">And Joseph died, and all his brethren, and all that generation.</VERS>\r\n      <VERS vnumber=\"7\">And the children of Israel were fruitful, and increased abundantly, and multiplied, and waxed exceeding mighty; and the land was filled with them.</VERS>\r\n      <VERS vnumber=\"8\">Now there arose up a new king over Egypt, which knew not Joseph.</VERS>\r\n      <VERS vnumber=\"9\">And he said unto his people, Behold, the people of the children of Israel are more and mightier than we:</VERS>\r\n      <VERS vnumber=\"10\">Come 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.</VERS>\r\n      <VERS vnumber=\"11\">Therefore they did set over them taskmasters to afflict them with their burdens. And they built for Pharaoh treasure cities, Pithom and Raamses.</VERS>\r\n      <VERS vnumber=\"12\">But the more they afflicted them, the more they multiplied and grew. And they were grieved because of the children of Israel.</VERS>\r\n      <VERS vnumber=\"13\">And the Egyptians made the children of Israel to serve with rigour:</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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:</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">But the midwives feared God, and did not as the king of Egypt commanded them, but saved the men children alive.</VERS>\r\n      <VERS vnumber=\"18\">And 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?</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">Therefore God dealt well with the midwives: and the people multiplied, and waxed very mighty.</VERS>\r\n      <VERS vnumber=\"21\">And it came to pass, because the midwives feared God, that he made them houses.</VERS>\r\n      <VERS vnumber=\"22\">And Pharaoh charged all his people, saying, Every son that is born ye shall cast into the river, and every daughter ye shall save alive.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">And there went a man of the house of Levi, and took to wife a daughter of Levi.</VERS>\r\n      <VERS vnumber=\"2\">And the woman conceived, and bare a son: and when she saw him that he was a goodly child, she hid him three months.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And his sister stood afar off, to wit what would be done to him.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">Then 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?</VERS>\r\n      <VERS vnumber=\"8\">And Pharaoh's daughter said to her, Go. And the maid went and called the child's mother.</VERS>\r\n      <VERS vnumber=\"9\">And Pharaoh's daughter said unto her, Take this child away, and nurse it for me, and I will give thee thy wages. And the woman took the child, and nursed it.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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?</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">Now 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.</VERS>\r\n      <VERS vnumber=\"16\">Now the priest of Midian had seven daughters: and they came and drew water, and filled the troughs to water their father's flock.</VERS>\r\n      <VERS vnumber=\"17\">And the shepherds came and drove them away: but Moses stood up and helped them, and watered their flock.</VERS>\r\n      <VERS vnumber=\"18\">And when they came to Reuel their father, he said, How is it that ye are come so soon to day?</VERS>\r\n      <VERS vnumber=\"19\">And they said, An Egyptian delivered us out of the hand of the shepherds, and also drew water enough for us, and watered the flock.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And Moses was content to dwell with the man: and he gave Moses Zipporah his daughter.</VERS>\r\n      <VERS vnumber=\"22\">And she bare him a son, and he called his name Gershom: for he said, I have been a stranger in a strange land.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And God heard their groaning, and God remembered his covenant with Abraham, with Isaac, and with Jacob.</VERS>\r\n      <VERS vnumber=\"25\">And God looked upon the children of Israel, and God had respect unto them.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Now 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And Moses said, I will now turn aside, and see this great sight, why the bush is not burnt.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And he said, Draw not nigh hither: put off thy shoes from off thy feet, for the place whereon thou standest is holy ground.</VERS>\r\n      <VERS vnumber=\"6\">Moreover 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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;</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">Now 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.</VERS>\r\n      <VERS vnumber=\"10\">Come now therefore, and I will send thee unto Pharaoh, that thou mayest bring forth my people the children of Israel out of Egypt.</VERS>\r\n      <VERS vnumber=\"11\">And 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?</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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?</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">Go, 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:</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And I am sure that the king of Egypt will not let you go, no, not by a mighty hand.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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:</VERS>\r\n      <VERS vnumber=\"22\">But 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And the LORD said unto him, What is that in thine hand? And he said, A rod.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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:</VERS>\r\n      <VERS vnumber=\"5\">That 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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?</VERS>\r\n      <VERS vnumber=\"12\">Now therefore go, and I will be with thy mouth, and teach thee what thou shalt say.</VERS>\r\n      <VERS vnumber=\"13\">And he said, O my Lord, send, I pray thee, by the hand of him whom thou wilt send.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And thou shalt take this rod in thine hand, wherewith thou shalt do signs.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And the LORD said unto Moses in Midian, Go, return into Egypt: for all the men are dead which sought thy life.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And thou shalt say unto Pharaoh, Thus saith the LORD, Israel is my son, even my firstborn:</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And it came to pass by the way in the inn, that the LORD met him, and sought to kill him.</VERS>\r\n      <VERS vnumber=\"25\">Then 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.</VERS>\r\n      <VERS vnumber=\"26\">So he let him go: then she said, A bloody husband thou art, because of the circumcision.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And Moses told Aaron all the words of the LORD who had sent him, and all the signs which he had commanded him.</VERS>\r\n      <VERS vnumber=\"29\">And Moses and Aaron went and gathered together all the elders of the children of Israel:</VERS>\r\n      <VERS vnumber=\"30\">And Aaron spake all the words which the LORD had spoken unto Moses, and did the signs in the sight of the people.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And the king of Egypt said unto them, Wherefore do ye, Moses and Aaron, let the people from their works? get you unto your burdens.</VERS>\r\n      <VERS vnumber=\"5\">And Pharaoh said, Behold, the people of the land now are many, and ye make them rest from their burdens.</VERS>\r\n      <VERS vnumber=\"6\">And Pharaoh commanded the same day the taskmasters of the people, and their officers, saying,</VERS>\r\n      <VERS vnumber=\"7\">Ye shall no more give the people straw to make brick, as heretofore: let them go and gather straw for themselves.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">Let there more work be laid upon the men, that they may labour therein; and let them not regard vain words.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">Go ye, get you straw where ye can find it: yet not ought of your work shall be diminished.</VERS>\r\n      <VERS vnumber=\"12\">So the people were scattered abroad throughout all the land of Egypt to gather stubble instead of straw.</VERS>\r\n      <VERS vnumber=\"13\">And the taskmasters hasted them, saying, Fulfil your works, your daily tasks, as when there was straw.</VERS>\r\n      <VERS vnumber=\"14\">And 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?</VERS>\r\n      <VERS vnumber=\"15\">Then the officers of the children of Israel came and cried unto Pharaoh, saying, Wherefore dealest thou thus with thy servants?</VERS>\r\n      <VERS vnumber=\"16\">There 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.</VERS>\r\n      <VERS vnumber=\"17\">But he said, Ye are idle, ye are idle: therefore ye say, Let us go and do sacrifice to the LORD.</VERS>\r\n      <VERS vnumber=\"18\">Go therefore now, and work; for there shall no straw be given you, yet shall ye deliver the tale of bricks.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And they met Moses and Aaron, who stood in the way, as they came forth from Pharaoh:</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And Moses returned unto the LORD, and said, Lord, wherefore hast thou so evil entreated this people? why is it that thou hast sent me?</VERS>\r\n      <VERS vnumber=\"23\">For 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">Then 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.</VERS>\r\n      <VERS vnumber=\"2\">And God spake unto Moses, and said unto him, I am the LORD:</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And I have also established my covenant with them, to give them the land of Canaan, the land of their pilgrimage, wherein they were strangers.</VERS>\r\n      <VERS vnumber=\"5\">And I have also heard the groaning of the children of Israel, whom the Egyptians keep in bondage; and I have remembered my covenant.</VERS>\r\n      <VERS vnumber=\"6\">Wherefore 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:</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And Moses spake so unto the children of Israel: but they hearkened not unto Moses for anguish of spirit, and for cruel bondage.</VERS>\r\n      <VERS vnumber=\"10\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"11\">Go in, speak unto Pharaoh king of Egypt, that he let the children of Israel go out of his land.</VERS>\r\n      <VERS vnumber=\"12\">And 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?</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">These 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">The sons of Gershon; Libni, and Shimi, according to their families.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And the sons of Merari; Mahali and Mushi: these are the families of Levi according to their generations.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And the sons of Izhar; Korah, and Nepheg, and Zichri.</VERS>\r\n      <VERS vnumber=\"22\">And the sons of Uzziel; Mishael, and Elzaphan, and Zithri.</VERS>\r\n      <VERS vnumber=\"23\">And Aaron took him Elisheba, daughter of Amminadab, sister of Naashon, to wife; and she bare him Nadab, and Abihu, Eleazar, and Ithamar.</VERS>\r\n      <VERS vnumber=\"24\">And the sons of Korah; Assir, and Elkanah, and Abiasaph: these are the families of the Korhites.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">These 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.</VERS>\r\n      <VERS vnumber=\"27\">These are they which spake to Pharaoh king of Egypt, to bring out the children of Israel from Egypt: these are that Moses and Aaron.</VERS>\r\n      <VERS vnumber=\"28\">And it came to pass on the day when the LORD spake unto Moses in the land of Egypt,</VERS>\r\n      <VERS vnumber=\"29\">That the LORD spake unto Moses, saying, I am the LORD: speak thou unto Pharaoh king of Egypt all that I say unto thee.</VERS>\r\n      <VERS vnumber=\"30\">And Moses said before the LORD, Behold, I am of uncircumcised lips, and how shall Pharaoh hearken unto me?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">And the LORD said unto Moses, See, I have made thee a god to Pharaoh: and Aaron thy brother shall be thy prophet.</VERS>\r\n      <VERS vnumber=\"2\">Thou 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.</VERS>\r\n      <VERS vnumber=\"3\">And I will harden Pharaoh's heart, and multiply my signs and my wonders in the land of Egypt.</VERS>\r\n      <VERS vnumber=\"4\">But 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And Moses and Aaron did as the LORD commanded them, so did they.</VERS>\r\n      <VERS vnumber=\"7\">And Moses was fourscore years old, and Aaron fourscore and three years old, when they spake unto Pharaoh.</VERS>\r\n      <VERS vnumber=\"8\">And the LORD spake unto Moses and unto Aaron, saying,</VERS>\r\n      <VERS vnumber=\"9\">When 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">Then Pharaoh also called the wise men and the sorcerers: now the magicians of Egypt, they also did in like manner with their enchantments.</VERS>\r\n      <VERS vnumber=\"12\">For they cast down every man his rod, and they became serpents: but Aaron's rod swallowed up their rods.</VERS>\r\n      <VERS vnumber=\"13\">And he hardened Pharaoh's heart, that he hearkened not unto them; as the LORD had said.</VERS>\r\n      <VERS vnumber=\"14\">And the LORD said unto Moses, Pharaoh's heart is hardened, he refuseth to let the people go.</VERS>\r\n      <VERS vnumber=\"15\">Get 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">Thus 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And Pharaoh turned and went into his house, neither did he set his heart to this also.</VERS>\r\n      <VERS vnumber=\"24\">And all the Egyptians digged round about the river for water to drink; for they could not drink of the water of the river.</VERS>\r\n      <VERS vnumber=\"25\">And seven days were fulfilled, after that the LORD had smitten the river.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And if thou refuse to let them go, behold, I will smite all thy borders with frogs:</VERS>\r\n      <VERS vnumber=\"3\">And 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:</VERS>\r\n      <VERS vnumber=\"4\">And the frogs shall come up both on thee, and upon thy people, and upon all thy servants.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And Aaron stretched out his hand over the waters of Egypt; and the frogs came up, and covered the land of Egypt.</VERS>\r\n      <VERS vnumber=\"7\">And the magicians did so with their enchantments, and brought up frogs upon the land of Egypt.</VERS>\r\n      <VERS vnumber=\"8\">Then 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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?</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And Moses and Aaron went out from Pharaoh: and Moses cried unto the LORD because of the frogs which he had brought against Pharaoh.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And they gathered them together upon heaps: and the land stank.</VERS>\r\n      <VERS vnumber=\"15\">But when Pharaoh saw that there was respite, he hardened his heart, and hearkened not unto them; as the LORD had said.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And the magicians did so with their enchantments to bring forth lice, but they could not: so there were lice upon man, and upon beast.</VERS>\r\n      <VERS vnumber=\"19\">Then 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">Else, 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.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And I will put a division between my people and thy people: to morrow shall this sign be.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And Pharaoh called for Moses and for Aaron, and said, Go ye, sacrifice to your God in the land.</VERS>\r\n      <VERS vnumber=\"26\">And 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?</VERS>\r\n      <VERS vnumber=\"27\">We will go three days' journey into the wilderness, and sacrifice to the LORD our God, as he shall command us.</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">And Moses went out from Pharaoh, and intreated the LORD.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n      <VERS vnumber=\"32\">And Pharaoh hardened his heart at this time also, neither would he let the people go.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">Then 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.</VERS>\r\n      <VERS vnumber=\"2\">For if thou refuse to let them go, and wilt hold them still,</VERS>\r\n      <VERS vnumber=\"3\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And the LORD appointed a set time, saying, To morrow the LORD shall do this thing in the land.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And the magicians could not stand before Moses because of the boils; for the boil was upon the magicians, and upon all the Egyptians.</VERS>\r\n      <VERS vnumber=\"12\">And the LORD hardened the heart of Pharaoh, and he hearkened not unto them; as the LORD had spoken unto Moses.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">For 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.</VERS>\r\n      <VERS vnumber=\"15\">For 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">As yet exaltest thou thyself against my people, that thou wilt not let them go?</VERS>\r\n      <VERS vnumber=\"18\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"19\">Send 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.</VERS>\r\n      <VERS vnumber=\"20\">He that feared the word of the LORD among the servants of Pharaoh made his servants and his cattle flee into the houses:</VERS>\r\n      <VERS vnumber=\"21\">And he that regarded not the word of the LORD left his servants and his cattle in the field.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">So 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">Only in the land of Goshen, where the children of Israel were, was there no hail.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">Intreat 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.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">But as for thee and thy servants, I know that ye will not yet fear the LORD God.</VERS>\r\n      <VERS vnumber=\"31\">And the flax and the barley was smitten: for the barley was in the ear, and the flax was bolled.</VERS>\r\n      <VERS vnumber=\"32\">But the wheat and the rie were not smitten: for they were not grown up.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">And 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.</VERS>\r\n      <VERS vnumber=\"35\">And the heart of Pharaoh was hardened, neither would he let the children of Israel go; as the LORD had spoken by Moses.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">And 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:</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">Else, if thou refuse to let my people go, behold, to morrow will I bring the locusts into thy coast:</VERS>\r\n      <VERS vnumber=\"5\">And 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:</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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?</VERS>\r\n      <VERS vnumber=\"8\">And 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?</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">Not 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And the locusts 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.</VERS>\r\n      <VERS vnumber=\"15\">For 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.</VERS>\r\n      <VERS vnumber=\"16\">Then Pharaoh called for Moses and Aaron in haste; and he said, I have sinned against the LORD your God, and against you.</VERS>\r\n      <VERS vnumber=\"17\">Now 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.</VERS>\r\n      <VERS vnumber=\"18\">And he went out from Pharaoh, and intreated the LORD.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">But the LORD hardened Pharaoh's heart, so that he would not let the children of Israel go.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And Moses stretched forth his hand toward heaven; and there was a thick darkness in all the land of Egypt three days:</VERS>\r\n      <VERS vnumber=\"23\">They saw not one another, neither rose any from his place for three days: but all the children of Israel had light in their dwellings.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And Moses said, Thou must give us also sacrifices and burnt offerings, that we may sacrifice unto the LORD our God.</VERS>\r\n      <VERS vnumber=\"26\">Our 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.</VERS>\r\n      <VERS vnumber=\"27\">But the LORD hardened Pharaoh's heart, and he would not let them go.</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">And Moses said, Thou hast spoken well, I will see thy face again no more.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">Speak 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And Moses said, Thus saith the LORD, About midnight will I go out into the midst of Egypt:</VERS>\r\n      <VERS vnumber=\"5\">And all the firstborn in the land of Egypt shall die, from the firstborn 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">But 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And the LORD said unto Moses, Pharaoh shall not hearken unto you; that my wonders may be multiplied in the land of Egypt.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">And the LORD spake unto Moses and Aaron in the land of Egypt, saying,</VERS>\r\n      <VERS vnumber=\"2\">This month shall be unto you the beginning of months: it shall be the first month of the year to you.</VERS>\r\n      <VERS vnumber=\"3\">Speak 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:</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">Your lamb shall be without blemish, a male of the first year: ye shall take it out from the sheep, or from the goats:</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And they shall eat the flesh in that night, roast with fire, and unleavened bread; and with bitter herbs they shall eat it.</VERS>\r\n      <VERS vnumber=\"9\">Eat not of it raw, nor sodden at all with water, but roast with fire; his head with his legs, and with the purtenance thereof.</VERS>\r\n      <VERS vnumber=\"10\">And ye shall let nothing of it remain until the morning; and that which remaineth of it until the morning ye shall burn with fire.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">For 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">Seven 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">In 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.</VERS>\r\n      <VERS vnumber=\"19\">Seven 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.</VERS>\r\n      <VERS vnumber=\"20\">Ye shall eat nothing leavened; in all your habitations shall ye eat unleavened bread.</VERS>\r\n      <VERS vnumber=\"21\">Then 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.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">For 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.</VERS>\r\n      <VERS vnumber=\"24\">And ye shall observe this thing for an ordinance to thee and to thy sons for ever.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And it shall come to pass, when your children shall say unto you, What mean ye by this service?</VERS>\r\n      <VERS vnumber=\"27\">That 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.</VERS>\r\n      <VERS vnumber=\"28\">And the children of Israel went away, and did as the LORD had commanded Moses and Aaron, so did they.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n      <VERS vnumber=\"32\">Also take your flocks and your herds, as ye have said, and be gone; and bless me also.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">And the people took their dough before it was leavened, their kneadingtroughs being bound up in their clothes upon their shoulders.</VERS>\r\n      <VERS vnumber=\"35\">And 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:</VERS>\r\n      <VERS vnumber=\"36\">And 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.</VERS>\r\n      <VERS vnumber=\"37\">And the children of Israel journeyed from Rameses to Succoth, about six hundred thousand on foot that were men, beside children.</VERS>\r\n      <VERS vnumber=\"38\">And a mixed multitude went up also with them; and flocks, and herds, even very much cattle.</VERS>\r\n      <VERS vnumber=\"39\">And 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.</VERS>\r\n      <VERS vnumber=\"40\">Now the sojourning of the children of Israel, who dwelt in Egypt, was four hundred and thirty years.</VERS>\r\n      <VERS vnumber=\"41\">And 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.</VERS>\r\n      <VERS vnumber=\"42\">It 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.</VERS>\r\n      <VERS vnumber=\"43\">And the LORD said unto Moses and Aaron, This is the ordinance of the passover: There shall no stranger eat thereof:</VERS>\r\n      <VERS vnumber=\"44\">But every man's servant that is bought for money, when thou hast circumcised him, then shall he eat thereof.</VERS>\r\n      <VERS vnumber=\"45\">A foreigner and an hired servant shall not eat thereof.</VERS>\r\n      <VERS vnumber=\"46\">In 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.</VERS>\r\n      <VERS vnumber=\"47\">All the congregation of Israel shall keep it.</VERS>\r\n      <VERS vnumber=\"48\">And 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.</VERS>\r\n      <VERS vnumber=\"49\">One law shall be to him that is homeborn, and unto the stranger that sojourneth among you.</VERS>\r\n      <VERS vnumber=\"50\">Thus did all the children of Israel; as the LORD commanded Moses and Aaron, so did they.</VERS>\r\n      <VERS vnumber=\"51\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">Sanctify unto me all the firstborn, whatsoever openeth the womb among the children of Israel, both of man and of beast: it is mine.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">This day came ye out in the month Abib.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">Seven days thou shalt eat unleavened bread, and in the seventh day shall be a feast to the LORD.</VERS>\r\n      <VERS vnumber=\"7\">Unleavened 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">Thou shalt therefore keep this ordinance in his season from year to year.</VERS>\r\n      <VERS vnumber=\"11\">And 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,</VERS>\r\n      <VERS vnumber=\"12\">That 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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:</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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:</VERS>\r\n      <VERS vnumber=\"18\">But 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And they took their journey from Succoth, and encamped in Etham, in the edge of the wilderness.</VERS>\r\n      <VERS vnumber=\"21\">And 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:</VERS>\r\n      <VERS vnumber=\"22\">He took not away the pillar of the cloud by day, nor the pillar of fire by night, from before the people.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">Speak 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.</VERS>\r\n      <VERS vnumber=\"3\">For Pharaoh will say of the children of Israel, They are entangled in the land, the wilderness hath shut them in.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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?</VERS>\r\n      <VERS vnumber=\"6\">And he made ready his chariot, and took his people with him:</VERS>\r\n      <VERS vnumber=\"7\">And he took six hundred chosen chariots, and all the chariots of Egypt, and captains over every one of them.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">But 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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?</VERS>\r\n      <VERS vnumber=\"12\">Is 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">The LORD shall fight for you, and ye shall hold your peace.</VERS>\r\n      <VERS vnumber=\"15\">And the LORD said unto Moses, Wherefore criest thou unto me? speak unto the children of Israel, that they go forward:</VERS>\r\n      <VERS vnumber=\"16\">But 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And the Egyptians shall know that I am the LORD, when I have gotten me honour upon Pharaoh, upon his chariots, and upon his horsemen.</VERS>\r\n      <VERS vnumber=\"19\">And 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:</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And the Egyptians pursued, and went in after them to the midst of the sea, even all Pharaoh's horses, his chariots, and his horsemen.</VERS>\r\n      <VERS vnumber=\"24\">And 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,</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">But 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.</VERS>\r\n      <VERS vnumber=\"30\">Thus the LORD saved Israel that day out of the hand of the Egyptians; and Israel saw the Egyptians dead upon the sea shore.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">Then 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.</VERS>\r\n      <VERS vnumber=\"2\">The 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.</VERS>\r\n      <VERS vnumber=\"3\">The LORD is a man of war: the LORD is his name.</VERS>\r\n      <VERS vnumber=\"4\">Pharaoh's chariots and his host hath he cast into the sea: his chosen captains also are drowned in the Red sea.</VERS>\r\n      <VERS vnumber=\"5\">The depths have covered them: they sank into the bottom as a stone.</VERS>\r\n      <VERS vnumber=\"6\">Thy right hand, O LORD, is become glorious in power: thy right hand, O LORD, hath dashed in pieces the enemy.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">The 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.</VERS>\r\n      <VERS vnumber=\"10\">Thou didst blow with thy wind, the sea covered them: they sank as lead in the mighty waters.</VERS>\r\n      <VERS vnumber=\"11\">Who is like unto thee, O LORD, among the gods? who is like thee, glorious in holiness, fearful in praises, doing wonders?</VERS>\r\n      <VERS vnumber=\"12\">Thou stretchedst out thy right hand, the earth swallowed them.</VERS>\r\n      <VERS vnumber=\"13\">Thou in thy mercy hast led forth the people which thou hast redeemed: thou hast guided them in thy strength unto thy holy habitation.</VERS>\r\n      <VERS vnumber=\"14\">The people shall hear, and be afraid: sorrow shall take hold on the inhabitants of Palestina.</VERS>\r\n      <VERS vnumber=\"15\">Then 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.</VERS>\r\n      <VERS vnumber=\"16\">Fear 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.</VERS>\r\n      <VERS vnumber=\"17\">Thou 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.</VERS>\r\n      <VERS vnumber=\"18\">The LORD shall reign for ever and ever.</VERS>\r\n      <VERS vnumber=\"19\">For 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And Miriam answered them, Sing ye to the LORD, for he hath triumphed gloriously; the horse and his rider hath he thrown into the sea.</VERS>\r\n      <VERS vnumber=\"22\">So 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.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And the people murmured against Moses, saying, What shall we drink?</VERS>\r\n      <VERS vnumber=\"25\">And 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,</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And they came to Elim, where were twelve wells of water, and threescore and ten palm trees: and they encamped there by the waters.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And the whole congregation of the children of Israel murmured against Moses and Aaron in the wilderness:</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">Then 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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:</VERS>\r\n      <VERS vnumber=\"7\">And 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?</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"12\">I 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">This 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.</VERS>\r\n      <VERS vnumber=\"17\">And the children of Israel did so, and gathered, some more, some less.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And Moses said, Let no man leave of it till the morning.</VERS>\r\n      <VERS vnumber=\"20\">Notwithstanding 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.</VERS>\r\n      <VERS vnumber=\"21\">And they gathered it every morning, every man according to his eating: and when the sun waxed hot, it melted.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And they laid it up till the morning, as Moses bade: and it did not stink, neither was there any worm therein.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">Six days ye shall gather it; but on the seventh day, which is the sabbath, in it there shall be none.</VERS>\r\n      <VERS vnumber=\"27\">And it came to pass, that there went out some of the people on the seventh day for to gather, and they found none.</VERS>\r\n      <VERS vnumber=\"28\">And the LORD said unto Moses, How long refuse ye to keep my commandments and my laws?</VERS>\r\n      <VERS vnumber=\"29\">See, 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.</VERS>\r\n      <VERS vnumber=\"30\">So the people rested on the seventh day.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">As the LORD commanded Moses, so Aaron laid it up before the Testimony, to be kept.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">Now an omer is the tenth part of an ephah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"17\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">Wherefore 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?</VERS>\r\n      <VERS vnumber=\"3\">And 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?</VERS>\r\n      <VERS vnumber=\"4\">And Moses cried unto the LORD, saying, What shall I do unto this people? they be almost ready to stone me.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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?</VERS>\r\n      <VERS vnumber=\"8\">Then came Amalek, and fought with Israel in Rephidim.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">So 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.</VERS>\r\n      <VERS vnumber=\"11\">And it came to pass, when Moses held up his hand, that Israel prevailed: and when he let down his hand, Amalek prevailed.</VERS>\r\n      <VERS vnumber=\"12\">But 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.</VERS>\r\n      <VERS vnumber=\"13\">And Joshua discomfited Amalek and his people with the edge of the sword.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And Moses built an altar, and called the name of it Jehovahnissi:</VERS>\r\n      <VERS vnumber=\"16\">For he said, Because the LORD hath sworn that the LORD will have war with Amalek from generation to generation.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"18\">\r\n      <VERS vnumber=\"1\">When 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;</VERS>\r\n      <VERS vnumber=\"2\">Then Jethro, Moses' father in law, took Zipporah, Moses' wife, after he had sent her back,</VERS>\r\n      <VERS vnumber=\"3\">And her two sons; of which the name of the one was Gershom; for he said, I have been an alien in a strange land:</VERS>\r\n      <VERS vnumber=\"4\">And 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:</VERS>\r\n      <VERS vnumber=\"5\">And 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:</VERS>\r\n      <VERS vnumber=\"6\">And he said unto Moses, I thy father in law Jethro am come unto thee, and thy wife, and her two sons with her.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And Jethro rejoiced for all the goodness which the LORD had done to Israel, whom he had delivered out of the hand of the Egyptians.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">Now I know that the LORD is greater than all gods: for in the thing wherein they dealt proudly he was above them.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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?</VERS>\r\n      <VERS vnumber=\"15\">And Moses said unto his father in law, Because the people come unto me to enquire of God:</VERS>\r\n      <VERS vnumber=\"16\">When 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.</VERS>\r\n      <VERS vnumber=\"17\">And Moses' father in law said unto him, The thing that thou doest is not good.</VERS>\r\n      <VERS vnumber=\"18\">Thou 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.</VERS>\r\n      <VERS vnumber=\"19\">Hearken 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:</VERS>\r\n      <VERS vnumber=\"20\">And thou shalt teach them ordinances and laws, and shalt shew them the way wherein they must walk, and the work that they must do.</VERS>\r\n      <VERS vnumber=\"21\">Moreover 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:</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">If 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.</VERS>\r\n      <VERS vnumber=\"24\">So Moses hearkened to the voice of his father in law, and did all that he had said.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And they judged the people at all seasons: the hard causes they brought unto Moses, but every small matter they judged themselves.</VERS>\r\n      <VERS vnumber=\"27\">And Moses let his father in law depart; and he went his way into his own land.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"19\">\r\n      <VERS vnumber=\"1\">In 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.</VERS>\r\n      <VERS vnumber=\"2\">For 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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;</VERS>\r\n      <VERS vnumber=\"4\">Ye have seen what I did unto the Egyptians, and how I bare you on eagles' wings, and brought you unto myself.</VERS>\r\n      <VERS vnumber=\"5\">Now 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:</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And Moses came and called for the elders of the people, and laid before their faces all these words which the LORD commanded him.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And the LORD said unto Moses, Go unto the people, and sanctify them to day and to morrow, and let them wash their clothes,</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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:</VERS>\r\n      <VERS vnumber=\"13\">There 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.</VERS>\r\n      <VERS vnumber=\"14\">And Moses went down from the mount unto the people, and sanctified the people; and they washed their clothes.</VERS>\r\n      <VERS vnumber=\"15\">And he said unto the people, Be ready against the third day: come not at your wives.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And Moses brought forth the people out of the camp to meet with God; and they stood at the nether part of the mount.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And when the voice of the trumpet sounded long, and waxed louder and louder, Moses spake, and God answered him by a voice.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And the LORD said unto Moses, Go down, charge the people, lest they break through unto the LORD to gaze, and many of them perish.</VERS>\r\n      <VERS vnumber=\"22\">And let the priests also, which come near to the LORD, sanctify themselves, lest the LORD break forth upon them.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">So Moses went down unto the people, and spake unto them.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"20\">\r\n      <VERS vnumber=\"1\">And God spake all these words, saying,</VERS>\r\n      <VERS vnumber=\"2\">I am the LORD thy God, which have brought thee out of the land of Egypt, out of the house of bondage.</VERS>\r\n      <VERS vnumber=\"3\">Thou shalt have no other gods before me.</VERS>\r\n      <VERS vnumber=\"4\">Thou 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:</VERS>\r\n      <VERS vnumber=\"5\">Thou 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;</VERS>\r\n      <VERS vnumber=\"6\">And shewing mercy unto thousands of them that love me, and keep my commandments.</VERS>\r\n      <VERS vnumber=\"7\">Thou 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.</VERS>\r\n      <VERS vnumber=\"8\">Remember the sabbath day, to keep it holy.</VERS>\r\n      <VERS vnumber=\"9\">Six days shalt thou labour, and do all thy work:</VERS>\r\n      <VERS vnumber=\"10\">But 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:</VERS>\r\n      <VERS vnumber=\"11\">For 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.</VERS>\r\n      <VERS vnumber=\"12\">Honour thy father and thy mother: that thy days may be long upon the land which the LORD thy God giveth thee.</VERS>\r\n      <VERS vnumber=\"13\">Thou shalt not kill.</VERS>\r\n      <VERS vnumber=\"14\">Thou shalt not commit adultery.</VERS>\r\n      <VERS vnumber=\"15\">Thou shalt not steal.</VERS>\r\n      <VERS vnumber=\"16\">Thou shalt not bear false witness against thy neighbour.</VERS>\r\n      <VERS vnumber=\"17\">Thou 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And they said unto Moses, Speak thou with us, and we will hear: but let not God speak with us, lest we die.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And the people stood afar off, and Moses drew near unto the thick darkness where God was.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">Ye shall not make with me gods of silver, neither shall ye make unto you gods of gold.</VERS>\r\n      <VERS vnumber=\"24\">An 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">Neither shalt thou go up by steps unto mine altar, that thy nakedness be not discovered thereon.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"21\">\r\n      <VERS vnumber=\"1\">Now these are the judgments which thou shalt set before them.</VERS>\r\n      <VERS vnumber=\"2\">If thou buy an Hebrew servant, six years he shall serve: and in the seventh he shall go out free for nothing.</VERS>\r\n      <VERS vnumber=\"3\">If he came in by himself, he shall go out by himself: if he were married, then his wife shall go out with him.</VERS>\r\n      <VERS vnumber=\"4\">If 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.</VERS>\r\n      <VERS vnumber=\"5\">And if the servant shall plainly say, I love my master, my wife, and my children; I will not go out free:</VERS>\r\n      <VERS vnumber=\"6\">Then 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.</VERS>\r\n      <VERS vnumber=\"7\">And if a man sell his daughter to be a maidservant, she shall not go out as the menservants do.</VERS>\r\n      <VERS vnumber=\"8\">If 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.</VERS>\r\n      <VERS vnumber=\"9\">And if he have betrothed her unto his son, he shall deal with her after the manner of daughters.</VERS>\r\n      <VERS vnumber=\"10\">If he take him another wife; her food, her raiment, and her duty of marriage, shall he not diminish.</VERS>\r\n      <VERS vnumber=\"11\">And if he do not these three unto her, then shall she go out free without money.</VERS>\r\n      <VERS vnumber=\"12\">He that smiteth a man, so that he die, shall be surely put to death.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">But if a man come presumptuously upon his neighbour, to slay him with guile; thou shalt take him from mine altar, that he may die.</VERS>\r\n      <VERS vnumber=\"15\">And he that smiteth his father, or his mother, shall be surely put to death.</VERS>\r\n      <VERS vnumber=\"16\">And he that stealeth a man, and selleth him, or if he be found in his hand, he shall surely be put to death.</VERS>\r\n      <VERS vnumber=\"17\">And he that curseth his father, or his mother, shall surely be put to death.</VERS>\r\n      <VERS vnumber=\"18\">And if men strive together, and one smite another with a stone, or with his fist, and he die not, but keepeth his bed:</VERS>\r\n      <VERS vnumber=\"19\">If 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.</VERS>\r\n      <VERS vnumber=\"20\">And if a man smite his servant, or his maid, with a rod, and he die under his hand; he shall be surely punished.</VERS>\r\n      <VERS vnumber=\"21\">Notwithstanding, if he continue a day or two, he shall not be punished: for he is his money.</VERS>\r\n      <VERS vnumber=\"22\">If 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.</VERS>\r\n      <VERS vnumber=\"23\">And if any mischief follow, then thou shalt give life for life,</VERS>\r\n      <VERS vnumber=\"24\">Eye for eye, tooth for tooth, hand for hand, foot for foot,</VERS>\r\n      <VERS vnumber=\"25\">Burning for burning, wound for wound, stripe for stripe.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And if he smite out his manservant's tooth, or his maidservant's tooth; he shall let him go free for his tooth's sake.</VERS>\r\n      <VERS vnumber=\"28\">If 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.</VERS>\r\n      <VERS vnumber=\"29\">But 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.</VERS>\r\n      <VERS vnumber=\"30\">If there be laid on him a sum of money, then he shall give for the ransom of his life whatsoever is laid upon him.</VERS>\r\n      <VERS vnumber=\"31\">Whether he have gored a son, or have gored a daughter, according to this judgment shall it be done unto him.</VERS>\r\n      <VERS vnumber=\"32\">If 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.</VERS>\r\n      <VERS vnumber=\"33\">And 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;</VERS>\r\n      <VERS vnumber=\"34\">The owner of the pit shall make it good, and give money unto the owner of them; and the dead beast shall be his.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">Or 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"22\">\r\n      <VERS vnumber=\"1\">If 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.</VERS>\r\n      <VERS vnumber=\"2\">If a thief be found breaking up, and be smitten that he die, there shall no blood be shed for him.</VERS>\r\n      <VERS vnumber=\"3\">If 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.</VERS>\r\n      <VERS vnumber=\"4\">If the theft be certainly found in his hand alive, whether it be ox, or ass, or sheep; he shall restore double.</VERS>\r\n      <VERS vnumber=\"5\">If 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.</VERS>\r\n      <VERS vnumber=\"6\">If 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.</VERS>\r\n      <VERS vnumber=\"7\">If 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.</VERS>\r\n      <VERS vnumber=\"8\">If 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.</VERS>\r\n      <VERS vnumber=\"9\">For 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.</VERS>\r\n      <VERS vnumber=\"10\">If 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:</VERS>\r\n      <VERS vnumber=\"11\">Then 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.</VERS>\r\n      <VERS vnumber=\"12\">And if it be stolen from him, he shall make restitution unto the owner thereof.</VERS>\r\n      <VERS vnumber=\"13\">If it be torn in pieces, then let him bring it for witness, and he shall not make good that which was torn.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">But if the owner thereof be with it, he shall not make it good: if it be an hired thing, it came for his hire.</VERS>\r\n      <VERS vnumber=\"16\">And if a man entice a maid that is not betrothed, and lie with her, he shall surely endow her to be his wife.</VERS>\r\n      <VERS vnumber=\"17\">If her father utterly refuse to give her unto him, he shall pay money according to the dowry of virgins.</VERS>\r\n      <VERS vnumber=\"18\">Thou shalt not suffer a witch to live.</VERS>\r\n      <VERS vnumber=\"19\">Whosoever lieth with a beast shall surely be put to death.</VERS>\r\n      <VERS vnumber=\"20\">He that sacrificeth unto any god, save unto the LORD only, he shall be utterly destroyed.</VERS>\r\n      <VERS vnumber=\"21\">Thou shalt neither vex a stranger, nor oppress him: for ye were strangers in the land of Egypt.</VERS>\r\n      <VERS vnumber=\"22\">Ye shall not afflict any widow, or fatherless child.</VERS>\r\n      <VERS vnumber=\"23\">If thou afflict them in any wise, and they cry at all unto me, I will surely hear their cry;</VERS>\r\n      <VERS vnumber=\"24\">And my wrath shall wax hot, and I will kill you with the sword; and your wives shall be widows, and your children fatherless.</VERS>\r\n      <VERS vnumber=\"25\">If 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.</VERS>\r\n      <VERS vnumber=\"26\">If thou at all take thy neighbour's raiment to pledge, thou shalt deliver it unto him by that the sun goeth down:</VERS>\r\n      <VERS vnumber=\"27\">For 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.</VERS>\r\n      <VERS vnumber=\"28\">Thou shalt not revile the gods, nor curse the ruler of thy people.</VERS>\r\n      <VERS vnumber=\"29\">Thou 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.</VERS>\r\n      <VERS vnumber=\"30\">Likewise 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.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"23\">\r\n      <VERS vnumber=\"1\">Thou shalt not raise a false report: put not thine hand with the wicked to be an unrighteous witness.</VERS>\r\n      <VERS vnumber=\"2\">Thou shalt not follow a multitude to do evil; neither shalt thou speak in a cause to decline after many to wrest judgment:</VERS>\r\n      <VERS vnumber=\"3\">Neither shalt thou countenance a poor man in his cause.</VERS>\r\n      <VERS vnumber=\"4\">If thou meet thine enemy's ox or his ass going astray, thou shalt surely bring it back to him again.</VERS>\r\n      <VERS vnumber=\"5\">If 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.</VERS>\r\n      <VERS vnumber=\"6\">Thou shalt not wrest the judgment of thy poor in his cause.</VERS>\r\n      <VERS vnumber=\"7\">Keep thee far from a false matter; and the innocent and righteous slay thou not: for I will not justify the wicked.</VERS>\r\n      <VERS vnumber=\"8\">And thou shalt take no gift: for the gift blindeth the wise, and perverteth the words of the righteous.</VERS>\r\n      <VERS vnumber=\"9\">Also thou shalt not oppress a stranger: for ye know the heart of a stranger, seeing ye were strangers in the land of Egypt.</VERS>\r\n      <VERS vnumber=\"10\">And six years thou shalt sow thy land, and shalt gather in the fruits thereof:</VERS>\r\n      <VERS vnumber=\"11\">But 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.</VERS>\r\n      <VERS vnumber=\"12\">Six 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">Three times thou shalt keep a feast unto me in the year.</VERS>\r\n      <VERS vnumber=\"15\">Thou 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:)</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">Three times in the year all thy males shall appear before the Lord GOD.</VERS>\r\n      <VERS vnumber=\"18\">Thou shalt not offer the blood of my sacrifice with leavened bread; neither shall the fat of my sacrifice remain until the morning.</VERS>\r\n      <VERS vnumber=\"19\">The 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.</VERS>\r\n      <VERS vnumber=\"20\">Behold, I send an Angel before thee, to keep thee in the way, and to bring thee into the place which I have prepared.</VERS>\r\n      <VERS vnumber=\"21\">Beware of him, and obey his voice, provoke him not; for he will not pardon your transgressions: for my name is in him.</VERS>\r\n      <VERS vnumber=\"22\">But 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.</VERS>\r\n      <VERS vnumber=\"23\">For 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.</VERS>\r\n      <VERS vnumber=\"24\">Thou 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">There shall nothing cast their young, nor be barren, in thy land: the number of thy days I will fulfil.</VERS>\r\n      <VERS vnumber=\"27\">I 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.</VERS>\r\n      <VERS vnumber=\"28\">And I will send hornets before thee, which shall drive out the Hivite, the Canaanite, and the Hittite, from before thee.</VERS>\r\n      <VERS vnumber=\"29\">I 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.</VERS>\r\n      <VERS vnumber=\"30\">By little and little I will drive them out from before thee, until thou be increased, and inherit the land.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n      <VERS vnumber=\"32\">Thou shalt make no covenant with them, nor with their gods.</VERS>\r\n      <VERS vnumber=\"33\">They 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"24\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And Moses alone shall come near the LORD: but they shall not come nigh; neither shall the people go up with him.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And he sent young men of the children of Israel, which offered burnt offerings, and sacrificed peace offerings of oxen unto the LORD.</VERS>\r\n      <VERS vnumber=\"6\">And Moses took half of the blood, and put it in basons; and half of the blood he sprinkled on the altar.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">Then went up Moses, and Aaron, Nadab, and Abihu, and seventy of the elders of Israel:</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And upon the nobles of the children of Israel he laid not his hand: also they saw God, and did eat and drink.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And Moses rose up, and his minister Joshua: and Moses went up into the mount of God.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And Moses went up into the mount, and a cloud covered the mount.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"25\">\r\n      <VERS vnumber=\"1\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">Speak 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.</VERS>\r\n      <VERS vnumber=\"3\">And this is the offering which ye shall take of them; gold, and silver, and brass,</VERS>\r\n      <VERS vnumber=\"4\">And blue, and purple, and scarlet, and fine linen, and goats' hair,</VERS>\r\n      <VERS vnumber=\"5\">And rams' skins dyed red, and badgers' skins, and shittim wood,</VERS>\r\n      <VERS vnumber=\"6\">Oil for the light, spices for anointing oil, and for sweet incense,</VERS>\r\n      <VERS vnumber=\"7\">Onyx stones, and stones to be set in the ephod, and in the breastplate.</VERS>\r\n      <VERS vnumber=\"8\">And let them make me a sanctuary; that I may dwell among them.</VERS>\r\n      <VERS vnumber=\"9\">According 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And thou shalt make staves of shittim wood, and overlay them with gold.</VERS>\r\n      <VERS vnumber=\"14\">And thou shalt put the staves into the rings by the sides of the ark, that the ark may be borne with them.</VERS>\r\n      <VERS vnumber=\"15\">The staves shall be in the rings of the ark: they shall not be taken from it.</VERS>\r\n      <VERS vnumber=\"16\">And thou shalt put into the ark the testimony which I shall give thee.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And thou shalt make two cherubims of gold, of beaten work shalt thou make them, in the two ends of the mercy seat.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And thou shalt put the mercy seat above upon the ark; and in the ark thou shalt put the testimony that I shall give thee.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">Thou 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.</VERS>\r\n      <VERS vnumber=\"24\">And thou shalt overlay it with pure gold, and make thereto a crown of gold round about.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And thou shalt make for it four rings of gold, and put the rings in the four corners that are on the four feet thereof.</VERS>\r\n      <VERS vnumber=\"27\">Over against the border shall the rings be for places of the staves to bear the table.</VERS>\r\n      <VERS vnumber=\"28\">And thou shalt make the staves of shittim wood, and overlay them with gold, that the table may be borne with them.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">And thou shalt set upon the table shewbread before me alway.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n      <VERS vnumber=\"32\">And 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:</VERS>\r\n      <VERS vnumber=\"33\">Three 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.</VERS>\r\n      <VERS vnumber=\"34\">And in the candlestick shall be four bowls made like unto almonds, with their knops and their flowers.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">Their knops and their branches shall be of the same: all it shall be one beaten work of pure gold.</VERS>\r\n      <VERS vnumber=\"37\">And thou shalt make the seven lamps thereof: and they shall light the lamps thereof, that they may give light over against it.</VERS>\r\n      <VERS vnumber=\"38\">And the tongs thereof, and the snuffdishes thereof, shall be of pure gold.</VERS>\r\n      <VERS vnumber=\"39\">Of a talent of pure gold shall he make it, with all these vessels.</VERS>\r\n      <VERS vnumber=\"40\">And look that thou make them after their pattern, which was shewed thee in the mount.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"26\">\r\n      <VERS vnumber=\"1\">Moreover 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.</VERS>\r\n      <VERS vnumber=\"2\">The 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.</VERS>\r\n      <VERS vnumber=\"3\">The five curtains shall be coupled together one to another; and other five curtains shall be coupled one to another.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">Fifty 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.</VERS>\r\n      <VERS vnumber=\"6\">And thou shalt make fifty taches of gold, and couple the curtains together with the taches: and it shall be one tabernacle.</VERS>\r\n      <VERS vnumber=\"7\">And thou shalt make curtains of goats' hair to be a covering upon the tabernacle: eleven curtains shalt thou make.</VERS>\r\n      <VERS vnumber=\"8\">The 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.</VERS>\r\n      <VERS vnumber=\"9\">And thou shalt couple five curtains by themselves, and six curtains by themselves, and shalt double the sixth curtain in the forefront of the tabernacle.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And thou shalt make fifty taches of brass, and put the taches into the loops, and couple the tent together, that it may be one.</VERS>\r\n      <VERS vnumber=\"12\">And the remnant that remaineth of the curtains of the tent, the half curtain that remaineth, shall hang over the backside of the tabernacle.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And thou shalt make a covering for the tent of rams' skins dyed red, and a covering above of badgers' skins.</VERS>\r\n      <VERS vnumber=\"15\">And thou shalt make boards for the tabernacle of shittim wood standing up.</VERS>\r\n      <VERS vnumber=\"16\">Ten cubits shall be the length of a board, and a cubit and a half shall be the breadth of one board.</VERS>\r\n      <VERS vnumber=\"17\">Two tenons shall there be in one board, set in order one against another: thus shalt thou make for all the boards of the tabernacle.</VERS>\r\n      <VERS vnumber=\"18\">And thou shalt make the boards for the tabernacle, twenty boards on the south side southward.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And for the second side of the tabernacle on the north side there shall be twenty boards:</VERS>\r\n      <VERS vnumber=\"21\">And their forty sockets of silver; two sockets under one board, and two sockets under another board.</VERS>\r\n      <VERS vnumber=\"22\">And for the sides of the tabernacle westward thou shalt make six boards.</VERS>\r\n      <VERS vnumber=\"23\">And two boards shalt thou make for the corners of the tabernacle in the two sides.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And they shall be eight boards, and their sockets of silver, sixteen sockets; two sockets under one board, and two sockets under another board.</VERS>\r\n      <VERS vnumber=\"26\">And thou shalt make bars of shittim wood; five for the boards of the one side of the tabernacle,</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And the middle bar in the midst of the boards shall reach from end to end.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">And thou shalt rear up the tabernacle according to the fashion thereof which was shewed thee in the mount.</VERS>\r\n      <VERS vnumber=\"31\">And thou shalt make a vail of blue, and purple, and scarlet, and fine twined linen of cunning work: with cherubims shall it be made:</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">And thou shalt put the mercy seat upon the ark of the testimony in the most holy place.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">And thou shalt make an hanging for the door of the tent, of blue, and purple, and scarlet, and fine twined linen, wrought with needlework.</VERS>\r\n      <VERS vnumber=\"37\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"27\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And thou shalt put it under the compass of the altar beneath, that the net may be even to the midst of the altar.</VERS>\r\n      <VERS vnumber=\"6\">And thou shalt make staves for the altar, staves of shittim wood, and overlay them with brass.</VERS>\r\n      <VERS vnumber=\"7\">And the staves shall be put into the rings, and the staves shall be upon the two sides of the altar, to bear it.</VERS>\r\n      <VERS vnumber=\"8\">Hollow with boards shalt thou make it: as it was shewed thee in the mount, so shall they make it.</VERS>\r\n      <VERS vnumber=\"9\">And 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:</VERS>\r\n      <VERS vnumber=\"10\">And the twenty pillars thereof and their twenty sockets shall be of brass; the hooks of the pillars and their fillets shall be of silver.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And for the breadth of the court on the west side shall be hangings of fifty cubits: their pillars ten, and their sockets ten.</VERS>\r\n      <VERS vnumber=\"13\">And the breadth of the court on the east side eastward shall be fifty cubits.</VERS>\r\n      <VERS vnumber=\"14\">The hangings of one side of the gate shall be fifteen cubits: their pillars three, and their sockets three.</VERS>\r\n      <VERS vnumber=\"15\">And on the other side shall be hangings fifteen cubits: their pillars three, and their sockets three.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">All the pillars round about the court shall be filleted with silver; their hooks shall be of silver, and their sockets of brass.</VERS>\r\n      <VERS vnumber=\"18\">The 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.</VERS>\r\n      <VERS vnumber=\"19\">All 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">In 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"28\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And thou shalt make holy garments for Aaron thy brother for glory and for beauty.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And they shall take gold, and blue, and purple, and scarlet, and fine linen.</VERS>\r\n      <VERS vnumber=\"6\">And they shall make the ephod of gold, of blue, and of purple, of scarlet, and fine twined linen, with cunning work.</VERS>\r\n      <VERS vnumber=\"7\">It shall have the two shoulderpieces thereof joined at the two edges thereof; and so it shall be joined together.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And thou shalt take two onyx stones, and grave on them the names of the children of Israel:</VERS>\r\n      <VERS vnumber=\"10\">Six of their names on one stone, and the other six names of the rest on the other stone, according to their birth.</VERS>\r\n      <VERS vnumber=\"11\">With 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And thou shalt make ouches of gold;</VERS>\r\n      <VERS vnumber=\"14\">And two chains of pure gold at the ends; of wreathen work shalt thou make them, and fasten the wreathen chains to the ouches.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">Foursquare it shall be being doubled; a span shall be the length thereof, and a span shall be the breadth thereof.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And the second row shall be an emerald, a sapphire, and a diamond.</VERS>\r\n      <VERS vnumber=\"19\">And the third row a ligure, an agate, and an amethyst.</VERS>\r\n      <VERS vnumber=\"20\">And the fourth row a beryl, and an onyx, and a jasper: they shall be set in gold in their inclosings.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And thou shalt make upon the breastplate chains at the ends of wreathen work of pure gold.</VERS>\r\n      <VERS vnumber=\"23\">And thou shalt make upon the breastplate two rings of gold, and shalt put the two rings on the two ends of the breastplate.</VERS>\r\n      <VERS vnumber=\"24\">And thou shalt put the two wreathen chains of gold in the two rings which are on the ends of the breastplate.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">And thou shalt make the robe of the ephod all of blue.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">And 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:</VERS>\r\n      <VERS vnumber=\"34\">A golden bell and a pomegranate, a golden bell and a pomegranate, upon the hem of the robe round about.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">And thou shalt make a plate of pure gold, and grave upon it, like the engravings of a signet, HOLINESS TO THE LORD.</VERS>\r\n      <VERS vnumber=\"37\">And thou shalt put it on a blue lace, that it may be upon the mitre; upon the forefront of the mitre it shall be.</VERS>\r\n      <VERS vnumber=\"38\">And 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.</VERS>\r\n      <VERS vnumber=\"39\">And 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.</VERS>\r\n      <VERS vnumber=\"40\">And 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.</VERS>\r\n      <VERS vnumber=\"41\">And 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.</VERS>\r\n      <VERS vnumber=\"42\">And thou shalt make them linen breeches to cover their nakedness; from the loins even unto the thighs they shall reach:</VERS>\r\n      <VERS vnumber=\"43\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"29\">\r\n      <VERS vnumber=\"1\">And 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,</VERS>\r\n      <VERS vnumber=\"2\">And unleavened bread, and cakes unleavened tempered with oil, and wafers unleavened anointed with oil: of wheaten flour shalt thou make them.</VERS>\r\n      <VERS vnumber=\"3\">And thou shalt put them into one basket, and bring them in the basket, with the bullock and the two rams.</VERS>\r\n      <VERS vnumber=\"4\">And Aaron and his sons thou shalt bring unto the door of the tabernacle of the congregation, and shalt wash them with water.</VERS>\r\n      <VERS vnumber=\"5\">And 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:</VERS>\r\n      <VERS vnumber=\"6\">And thou shalt put the mitre upon his head, and put the holy crown upon the mitre.</VERS>\r\n      <VERS vnumber=\"7\">Then shalt thou take the anointing oil, and pour it upon his head, and anoint him.</VERS>\r\n      <VERS vnumber=\"8\">And thou shalt bring his sons, and put coats upon them.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And thou shalt kill the bullock before the LORD, by the door of the tabernacle of the congregation.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">But the flesh of the bullock, and his skin, and his dung, shalt thou burn with fire without the camp: it is a sin offering.</VERS>\r\n      <VERS vnumber=\"15\">Thou shalt also take one ram; and Aaron and his sons shall put their hands upon the head of the ram.</VERS>\r\n      <VERS vnumber=\"16\">And thou shalt slay the ram, and thou shalt take his blood, and sprinkle it round about upon the altar.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And thou shalt take the other ram; and Aaron and his sons shall put their hands upon the head of the ram.</VERS>\r\n      <VERS vnumber=\"20\">Then 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">Also 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:</VERS>\r\n      <VERS vnumber=\"23\">And 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:</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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:</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">And the holy garments of Aaron shall be his sons' after him, to be anointed therein, and to be consecrated in them.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">And thou shalt take the ram of the consecration, and seethe his flesh in the holy place.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">And 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.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">And 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.</VERS>\r\n      <VERS vnumber=\"37\">Seven 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.</VERS>\r\n      <VERS vnumber=\"38\">Now this is that which thou shalt offer upon the altar; two lambs of the first year day by day continually.</VERS>\r\n      <VERS vnumber=\"39\">The one lamb thou shalt offer in the morning; and the other lamb thou shalt offer at even:</VERS>\r\n      <VERS vnumber=\"40\">And 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.</VERS>\r\n      <VERS vnumber=\"41\">And 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.</VERS>\r\n      <VERS vnumber=\"42\">This 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.</VERS>\r\n      <VERS vnumber=\"43\">And there I will meet with the children of Israel, and the tabernacle shall be sanctified by my glory.</VERS>\r\n      <VERS vnumber=\"44\">And 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.</VERS>\r\n      <VERS vnumber=\"45\">And I will dwell among the children of Israel, and will be their God.</VERS>\r\n      <VERS vnumber=\"46\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"30\">\r\n      <VERS vnumber=\"1\">And thou shalt make an altar to burn incense upon: of shittim wood shalt thou make it.</VERS>\r\n      <VERS vnumber=\"2\">A 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And thou shalt make the staves of shittim wood, and overlay them with gold.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And Aaron shall burn thereon sweet incense every morning: when he dresseth the lamps, he shall burn incense upon it.</VERS>\r\n      <VERS vnumber=\"8\">And when Aaron lighteth the lamps at even, he shall burn incense upon it, a perpetual incense before the LORD throughout your generations.</VERS>\r\n      <VERS vnumber=\"9\">Ye shall offer no strange incense thereon, nor burnt sacrifice, nor meat offering; neither shall ye pour drink offering thereon.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"12\">When 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.</VERS>\r\n      <VERS vnumber=\"13\">This 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.</VERS>\r\n      <VERS vnumber=\"14\">Every one that passeth among them that are numbered, from twenty years old and above, shall give an offering unto the LORD.</VERS>\r\n      <VERS vnumber=\"15\">The 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"18\">Thou 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.</VERS>\r\n      <VERS vnumber=\"19\">For Aaron and his sons shall wash their hands and their feet thereat:</VERS>\r\n      <VERS vnumber=\"20\">When 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:</VERS>\r\n      <VERS vnumber=\"21\">So 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.</VERS>\r\n      <VERS vnumber=\"22\">Moreover the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"23\">Take 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,</VERS>\r\n      <VERS vnumber=\"24\">And of cassia five hundred shekels, after the shekel of the sanctuary, and of oil olive an hin:</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And thou shalt anoint the tabernacle of the congregation therewith, and the ark of the testimony,</VERS>\r\n      <VERS vnumber=\"27\">And the table and all his vessels, and the candlestick and his vessels, and the altar of incense,</VERS>\r\n      <VERS vnumber=\"28\">And the altar of burnt offering with all his vessels, and the laver and his foot.</VERS>\r\n      <VERS vnumber=\"29\">And thou shalt sanctify them, that they may be most holy: whatsoever toucheth them shall be holy.</VERS>\r\n      <VERS vnumber=\"30\">And thou shalt anoint Aaron and his sons, and consecrate them, that they may minister unto me in the priest's office.</VERS>\r\n      <VERS vnumber=\"31\">And thou shalt speak unto the children of Israel, saying, This shall be an holy anointing oil unto me throughout your generations.</VERS>\r\n      <VERS vnumber=\"32\">Upon 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.</VERS>\r\n      <VERS vnumber=\"33\">Whosoever compoundeth any like it, or whosoever putteth any of it upon a stranger, shall even be cut off from his people.</VERS>\r\n      <VERS vnumber=\"34\">And 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:</VERS>\r\n      <VERS vnumber=\"35\">And thou shalt make it a perfume, a confection after the art of the apothecary, tempered together, pure and holy:</VERS>\r\n      <VERS vnumber=\"36\">And 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.</VERS>\r\n      <VERS vnumber=\"37\">And 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.</VERS>\r\n      <VERS vnumber=\"38\">Whosoever shall make like unto that, to smell thereto, shall even be cut off from his people.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"31\">\r\n      <VERS vnumber=\"1\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">See, I have called by name Bezaleel the son of Uri, the son of Hur, of the tribe of Judah:</VERS>\r\n      <VERS vnumber=\"3\">And I have filled him with the spirit of God, in wisdom, and in understanding, and in knowledge, and in all manner of workmanship,</VERS>\r\n      <VERS vnumber=\"4\">To devise cunning works, to work in gold, and in silver, and in brass,</VERS>\r\n      <VERS vnumber=\"5\">And in cutting of stones, to set them, and in carving of timber, to work in all manner of workmanship.</VERS>\r\n      <VERS vnumber=\"6\">And 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;</VERS>\r\n      <VERS vnumber=\"7\">The tabernacle of the congregation, and the ark of the testimony, and the mercy seat that is thereupon, and all the furniture of the tabernacle,</VERS>\r\n      <VERS vnumber=\"8\">And the table and his furniture, and the pure candlestick with all his furniture, and the altar of incense,</VERS>\r\n      <VERS vnumber=\"9\">And the altar of burnt offering with all his furniture, and the laver and his foot,</VERS>\r\n      <VERS vnumber=\"10\">And 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,</VERS>\r\n      <VERS vnumber=\"11\">And the anointing oil, and sweet incense for the holy place: according to all that I have commanded thee shall they do.</VERS>\r\n      <VERS vnumber=\"12\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"13\">Speak 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.</VERS>\r\n      <VERS vnumber=\"14\">Ye 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.</VERS>\r\n      <VERS vnumber=\"15\">Six 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.</VERS>\r\n      <VERS vnumber=\"16\">Wherefore the children of Israel shall keep the sabbath, to observe the sabbath throughout their generations, for a perpetual covenant.</VERS>\r\n      <VERS vnumber=\"17\">It 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"32\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And all the people brake off the golden earrings which were in their ears, and brought them unto Aaron.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And when Aaron saw it, he built an altar before it; and Aaron made proclamation, and said, To morrow is a feast to the LORD.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And the LORD said unto Moses, Go, get thee down; for thy people, which thou broughtest out of the land of Egypt, have corrupted themselves:</VERS>\r\n      <VERS vnumber=\"8\">They 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.</VERS>\r\n      <VERS vnumber=\"9\">And the LORD said unto Moses, I have seen this people, and, behold, it is a stiffnecked people:</VERS>\r\n      <VERS vnumber=\"10\">Now 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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?</VERS>\r\n      <VERS vnumber=\"12\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"13\">Remember 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.</VERS>\r\n      <VERS vnumber=\"14\">And the LORD repented of the evil which he thought to do unto his people.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And the tables were the work of God, and the writing was the writing of God, graven upon the tables.</VERS>\r\n      <VERS vnumber=\"17\">And when Joshua heard the noise of the people as they shouted, he said unto Moses, There is a noise of war in the camp.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And Moses said unto Aaron, What did this people unto thee, that thou hast brought so great a sin upon them?</VERS>\r\n      <VERS vnumber=\"22\">And Aaron said, Let not the anger of my lord wax hot: thou knowest the people, that they are set on mischief.</VERS>\r\n      <VERS vnumber=\"23\">For 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And when Moses saw that the people were naked; (for Aaron had made them naked unto their shame among their enemies:)</VERS>\r\n      <VERS vnumber=\"26\">Then 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And the children of Levi did according to the word of Moses: and there fell of the people that day about three thousand men.</VERS>\r\n      <VERS vnumber=\"29\">For Moses had said, Consecrate yourselves to day to the LORD, even every man upon his son, and upon his brother; that he may bestow upon you a blessing this day.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">And Moses returned unto the LORD, and said, Oh, this people have sinned a great sin, and have made them gods of gold.</VERS>\r\n      <VERS vnumber=\"32\">Yet now, if thou wilt forgive their sin--; and if not, blot me, I pray thee, out of thy book which thou hast written.</VERS>\r\n      <VERS vnumber=\"33\">And the LORD said unto Moses, Whosoever hath sinned against me, him will I blot out of my book.</VERS>\r\n      <VERS vnumber=\"34\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"35\">And the LORD plagued the people, because they made the calf, which Aaron made.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"33\">\r\n      <VERS vnumber=\"1\">And 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:</VERS>\r\n      <VERS vnumber=\"2\">And 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:</VERS>\r\n      <VERS vnumber=\"3\">Unto 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.</VERS>\r\n      <VERS vnumber=\"4\">And when the people heard these evil tidings, they mourned: and no man did put on him his ornaments.</VERS>\r\n      <VERS vnumber=\"5\">For 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.</VERS>\r\n      <VERS vnumber=\"6\">And the children of Israel stripped themselves of their ornaments by the mount Horeb.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">Now 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.</VERS>\r\n      <VERS vnumber=\"14\">And he said, My presence shall go with thee, and I will give thee rest.</VERS>\r\n      <VERS vnumber=\"15\">And he said unto him, If thy presence go not with me, carry us not up hence.</VERS>\r\n      <VERS vnumber=\"16\">For 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And he said, I beseech thee, shew me thy glory.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And he said, Thou canst not see my face: for there shall no man see me, and live.</VERS>\r\n      <VERS vnumber=\"21\">And the LORD said, Behold, there is a place by me, and thou shalt stand upon a rock:</VERS>\r\n      <VERS vnumber=\"22\">And 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:</VERS>\r\n      <VERS vnumber=\"23\">And I will take away mine hand, and thou shalt see my back parts: but my face shall not be seen.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"34\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And the LORD descended in the cloud, and stood with him there, and proclaimed the name of the LORD.</VERS>\r\n      <VERS vnumber=\"6\">And the LORD passed by before him, and proclaimed, The LORD, The LORD God, merciful and gracious, longsuffering, and abundant in goodness and truth,</VERS>\r\n      <VERS vnumber=\"7\">Keeping 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.</VERS>\r\n      <VERS vnumber=\"8\">And Moses made haste, and bowed his head toward the earth, and worshipped.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">Observe 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.</VERS>\r\n      <VERS vnumber=\"12\">Take 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:</VERS>\r\n      <VERS vnumber=\"13\">But ye shall destroy their altars, break their images, and cut down their groves:</VERS>\r\n      <VERS vnumber=\"14\">For thou shalt worship no other god: for the LORD, whose name is Jealous, is a jealous God:</VERS>\r\n      <VERS vnumber=\"15\">Lest 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;</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">Thou shalt make thee no molten gods.</VERS>\r\n      <VERS vnumber=\"18\">The 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.</VERS>\r\n      <VERS vnumber=\"19\">All that openeth the matrix is mine; and every firstling among thy cattle, whether ox or sheep, that is male.</VERS>\r\n      <VERS vnumber=\"20\">But 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.</VERS>\r\n      <VERS vnumber=\"21\">Six days thou shalt work, but on the seventh day thou shalt rest: in earing time and in harvest thou shalt rest.</VERS>\r\n      <VERS vnumber=\"22\">And thou shalt observe the feast of weeks, of the firstfruits of wheat harvest, and the feast of ingathering at the year's end.</VERS>\r\n      <VERS vnumber=\"23\">Thrice in the year shall all your men children appear before the Lord GOD, the God of Israel.</VERS>\r\n      <VERS vnumber=\"24\">For 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.</VERS>\r\n      <VERS vnumber=\"25\">Thou 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.</VERS>\r\n      <VERS vnumber=\"26\">The 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">And Moses called unto them; and Aaron and all the rulers of the congregation returned unto him: and Moses talked with them.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">And till Moses had done speaking with them, he put a vail on his face.</VERS>\r\n      <VERS vnumber=\"34\">But 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.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"35\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">Six 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.</VERS>\r\n      <VERS vnumber=\"3\">Ye shall kindle no fire throughout your habitations upon the sabbath day.</VERS>\r\n      <VERS vnumber=\"4\">And Moses spake unto all the congregation of the children of Israel, saying, This is the thing which the LORD commanded, saying,</VERS>\r\n      <VERS vnumber=\"5\">Take 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,</VERS>\r\n      <VERS vnumber=\"6\">And blue, and purple, and scarlet, and fine linen, and goats' hair,</VERS>\r\n      <VERS vnumber=\"7\">And rams' skins dyed red, and badgers' skins, and shittim wood,</VERS>\r\n      <VERS vnumber=\"8\">And oil for the light, and spices for anointing oil, and for the sweet incense,</VERS>\r\n      <VERS vnumber=\"9\">And onyx stones, and stones to be set for the ephod, and for the breastplate.</VERS>\r\n      <VERS vnumber=\"10\">And every wise hearted among you shall come, and make all that the LORD hath commanded;</VERS>\r\n      <VERS vnumber=\"11\">The tabernacle, his tent, and his covering, his taches, and his boards, his bars, his pillars, and his sockets,</VERS>\r\n      <VERS vnumber=\"12\">The ark, and the staves thereof, with the mercy seat, and the vail of the covering,</VERS>\r\n      <VERS vnumber=\"13\">The table, and his staves, and all his vessels, and the shewbread,</VERS>\r\n      <VERS vnumber=\"14\">The candlestick also for the light, and his furniture, and his lamps, with the oil for the light,</VERS>\r\n      <VERS vnumber=\"15\">And 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,</VERS>\r\n      <VERS vnumber=\"16\">The altar of burnt offering, with his brasen grate, his staves, and all his vessels, the laver and his foot,</VERS>\r\n      <VERS vnumber=\"17\">The hangings of the court, his pillars, and their sockets, and the hanging for the door of the court,</VERS>\r\n      <VERS vnumber=\"18\">The pins of the tabernacle, and the pins of the court, and their cords,</VERS>\r\n      <VERS vnumber=\"19\">The 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.</VERS>\r\n      <VERS vnumber=\"20\">And all the congregation of the children of Israel departed from the presence of Moses.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">Every 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And all the women whose heart stirred them up in wisdom spun goats' hair.</VERS>\r\n      <VERS vnumber=\"27\">And the rulers brought onyx stones, and stones to be set, for the ephod, and for the breastplate;</VERS>\r\n      <VERS vnumber=\"28\">And spice, and oil for the light, and for the anointing oil, and for the sweet incense.</VERS>\r\n      <VERS vnumber=\"29\">The 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.</VERS>\r\n      <VERS vnumber=\"30\">And 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;</VERS>\r\n      <VERS vnumber=\"31\">And he hath filled him with the spirit of God, in wisdom, in understanding, and in knowledge, and in all manner of workmanship;</VERS>\r\n      <VERS vnumber=\"32\">And to devise curious works, to work in gold, and in silver, and in brass,</VERS>\r\n      <VERS vnumber=\"33\">And in the cutting of stones, to set them, and in carving of wood, to make any manner of cunning work.</VERS>\r\n      <VERS vnumber=\"34\">And he hath put in his heart that he may teach, both he, and Aholiab, the son of Ahisamach, of the tribe of Dan.</VERS>\r\n      <VERS vnumber=\"35\">Them 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"36\">\r\n      <VERS vnumber=\"1\">Then 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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:</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And all the wise men, that wrought all the work of the sanctuary, came every man from his work which they made;</VERS>\r\n      <VERS vnumber=\"5\">And they spake unto Moses, saying, The people bring much more than enough for the service of the work, which the LORD commanded to make.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">For the stuff they had was sufficient for all the work to make it, and too much.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">The length of one curtain was twenty and eight cubits, and the breadth of one curtain four cubits: the curtains were all of one size.</VERS>\r\n      <VERS vnumber=\"10\">And he coupled the five curtains one unto another: and the other five curtains he coupled one unto another.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">Fifty 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.</VERS>\r\n      <VERS vnumber=\"13\">And he made fifty taches of gold, and coupled the curtains one unto another with the taches: so it became one tabernacle.</VERS>\r\n      <VERS vnumber=\"14\">And he made curtains of goats' hair for the tent over the tabernacle: eleven curtains he made them.</VERS>\r\n      <VERS vnumber=\"15\">The length of one curtain was thirty cubits, and four cubits was the breadth of one curtain: the eleven curtains were of one size.</VERS>\r\n      <VERS vnumber=\"16\">And he coupled five curtains by themselves, and six curtains by themselves.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And he made fifty taches of brass to couple the tent together, that it might be one.</VERS>\r\n      <VERS vnumber=\"19\">And he made a covering for the tent of rams' skins dyed red, and a covering of badgers' skins above that.</VERS>\r\n      <VERS vnumber=\"20\">And he made boards for the tabernacle of shittim wood, standing up.</VERS>\r\n      <VERS vnumber=\"21\">The length of a board was ten cubits, and the breadth of a board one cubit and a half.</VERS>\r\n      <VERS vnumber=\"22\">One board had two tenons, equally distant one from another: thus did he make for all the boards of the tabernacle.</VERS>\r\n      <VERS vnumber=\"23\">And he made boards for the tabernacle; twenty boards for the south side southward:</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And for the other side of the tabernacle, which is toward the north corner, he made twenty boards,</VERS>\r\n      <VERS vnumber=\"26\">And their forty sockets of silver; two sockets under one board, and two sockets under another board.</VERS>\r\n      <VERS vnumber=\"27\">And for the sides of the tabernacle westward he made six boards.</VERS>\r\n      <VERS vnumber=\"28\">And two boards made he for the corners of the tabernacle in the two sides.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">And there were eight boards; and their sockets were sixteen sockets of silver, under every board two sockets.</VERS>\r\n      <VERS vnumber=\"31\">And he made bars of shittim wood; five for the boards of the one side of the tabernacle,</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">And he made the middle bar to shoot through the boards from the one end to the other.</VERS>\r\n      <VERS vnumber=\"34\">And he overlaid the boards with gold, and made their rings of gold to be places for the bars, and overlaid the bars with gold.</VERS>\r\n      <VERS vnumber=\"35\">And he made a vail of blue, and purple, and scarlet, and fine twined linen: with cherubims made he it of cunning work.</VERS>\r\n      <VERS vnumber=\"36\">And 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.</VERS>\r\n      <VERS vnumber=\"37\">And he made an hanging for the tabernacle door of blue, and purple, and scarlet, and fine twined linen, of needlework;</VERS>\r\n      <VERS vnumber=\"38\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"37\">\r\n      <VERS vnumber=\"1\">And 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:</VERS>\r\n      <VERS vnumber=\"2\">And he overlaid it with pure gold within and without, and made a crown of gold to it round about.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And he made staves of shittim wood, and overlaid them with gold.</VERS>\r\n      <VERS vnumber=\"5\">And he put the staves into the rings by the sides of the ark, to bear the ark.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And he made two cherubims of gold, beaten out of one piece made he them, on the two ends of the mercy seat;</VERS>\r\n      <VERS vnumber=\"8\">One 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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:</VERS>\r\n      <VERS vnumber=\"11\">And he overlaid it with pure gold, and made thereunto a crown of gold round about.</VERS>\r\n      <VERS vnumber=\"12\">Also he made thereunto a border of an handbreadth round about; and made a crown of gold for the border thereof round about.</VERS>\r\n      <VERS vnumber=\"13\">And he cast for it four rings of gold, and put the rings upon the four corners that were in the four feet thereof.</VERS>\r\n      <VERS vnumber=\"14\">Over against the border were the rings, the places for the staves to bear the table.</VERS>\r\n      <VERS vnumber=\"15\">And he made the staves of shittim wood, and overlaid them with gold, to bear the table.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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:</VERS>\r\n      <VERS vnumber=\"18\">And 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:</VERS>\r\n      <VERS vnumber=\"19\">Three 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.</VERS>\r\n      <VERS vnumber=\"20\">And in the candlestick were four bowls made like almonds, his knops, and his flowers:</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">Their knops and their branches were of the same: all of it was one beaten work of pure gold.</VERS>\r\n      <VERS vnumber=\"23\">And he made his seven lamps, and his snuffers, and his snuffdishes, of pure gold.</VERS>\r\n      <VERS vnumber=\"24\">Of a talent of pure gold made he it, and all the vessels thereof.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And he made the staves of shittim wood, and overlaid them with gold.</VERS>\r\n      <VERS vnumber=\"29\">And he made the holy anointing oil, and the pure incense of sweet spices, according to the work of the apothecary.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"38\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And he made the horns thereof on the four corners of it; the horns thereof were of the same: and he overlaid it with brass.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And he made for the altar a brasen grate of network under the compass thereof beneath unto the midst of it.</VERS>\r\n      <VERS vnumber=\"5\">And he cast four rings for the four ends of the grate of brass, to be places for the staves.</VERS>\r\n      <VERS vnumber=\"6\">And he made the staves of shittim wood, and overlaid them with brass.</VERS>\r\n      <VERS vnumber=\"7\">And he put the staves into the rings on the sides of the altar, to bear it withal; he made the altar hollow with boards.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And he made the court: on the south side southward the hangings of the court were of fine twined linen, an hundred cubits:</VERS>\r\n      <VERS vnumber=\"10\">Their pillars were twenty, and their brasen sockets twenty; the hooks of the pillars and their fillets were of silver.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And for the east side eastward fifty cubits.</VERS>\r\n      <VERS vnumber=\"14\">The hangings of the one side of the gate were fifteen cubits; their pillars three, and their sockets three.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">All the hangings of the court round about were of fine twined linen.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And all the pins of the tabernacle, and of the court round about, were of brass.</VERS>\r\n      <VERS vnumber=\"21\">This 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.</VERS>\r\n      <VERS vnumber=\"22\">And Bezaleel the son of Uri, the son of Hur, of the tribe of Judah, made all that the LORD commanded Moses.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">All 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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:</VERS>\r\n      <VERS vnumber=\"26\">A 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And of the thousand seven hundred seventy and five shekels he made hooks for the pillars, and overlaid their chapiters, and filleted them.</VERS>\r\n      <VERS vnumber=\"29\">And the brass of the offering was seventy talents, and two thousand and four hundred shekels.</VERS>\r\n      <VERS vnumber=\"30\">And 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,</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"39\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And he made the ephod of gold, blue, and purple, and scarlet, and fine twined linen.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">They made shoulderpieces for it, to couple it together: by the two edges was it coupled together.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And they wrought onyx stones inclosed in ouches of gold, graven, as signets are graven, with the names of the children of Israel.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And he made the breastplate of cunning work, like the work of the ephod; of gold, blue, and purple, and scarlet, and fine twined linen.</VERS>\r\n      <VERS vnumber=\"9\">It was foursquare; they made the breastplate double: a span was the length thereof, and a span the breadth thereof, being doubled.</VERS>\r\n      <VERS vnumber=\"10\">And they set in it four rows of stones: the first row was a sardius, a topaz, and a carbuncle: this was the first row.</VERS>\r\n      <VERS vnumber=\"11\">And the second row, an emerald, a sapphire, and a diamond.</VERS>\r\n      <VERS vnumber=\"12\">And the third row, a ligure, an agate, and an amethyst.</VERS>\r\n      <VERS vnumber=\"13\">And the fourth row, a beryl, an onyx, and a jasper: they were inclosed in ouches of gold in their inclosings.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And they made upon the breastplate chains at the ends, of wreathen work of pure gold.</VERS>\r\n      <VERS vnumber=\"16\">And they made two ouches of gold, and two gold rings; and put the two rings in the two ends of the breastplate.</VERS>\r\n      <VERS vnumber=\"17\">And they put the two wreathen chains of gold in the two rings on the ends of the breastplate.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And he made the robe of the ephod of woven work, all of blue.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And they made upon the hems of the robe pomegranates of blue, and purple, and scarlet, and twined linen.</VERS>\r\n      <VERS vnumber=\"25\">And they made bells of pure gold, and put the bells between the pomegranates upon the hem of the robe, round about between the pomegranates;</VERS>\r\n      <VERS vnumber=\"26\">A bell and a pomegranate, a bell and a pomegranate, round about the hem of the robe to minister in; as the LORD commanded Moses.</VERS>\r\n      <VERS vnumber=\"27\">And they made coats of fine linen of woven work for Aaron, and for his sons,</VERS>\r\n      <VERS vnumber=\"28\">And a mitre of fine linen, and goodly bonnets of fine linen, and linen breeches of fine twined linen,</VERS>\r\n      <VERS vnumber=\"29\">And a girdle of fine twined linen, and blue, and purple, and scarlet, of needlework; as the LORD commanded Moses.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">And they tied unto it a lace of blue, to fasten it on high upon the mitre; as the LORD commanded Moses.</VERS>\r\n      <VERS vnumber=\"32\">Thus 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.</VERS>\r\n      <VERS vnumber=\"33\">And they brought the tabernacle unto Moses, the tent, and all his furniture, his taches, his boards, his bars, and his pillars, and his sockets,</VERS>\r\n      <VERS vnumber=\"34\">And the covering of rams' skins dyed red, and the covering of badgers' skins, and the vail of the covering,</VERS>\r\n      <VERS vnumber=\"35\">The ark of the testimony, and the staves thereof, and the mercy seat,</VERS>\r\n      <VERS vnumber=\"36\">The table, and all the vessels thereof, and the shewbread,</VERS>\r\n      <VERS vnumber=\"37\">The 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,</VERS>\r\n      <VERS vnumber=\"38\">And the golden altar, and the anointing oil, and the sweet incense, and the hanging for the tabernacle door,</VERS>\r\n      <VERS vnumber=\"39\">The brasen altar, and his grate of brass, his staves, and all his vessels, the laver and his foot,</VERS>\r\n      <VERS vnumber=\"40\">The 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,</VERS>\r\n      <VERS vnumber=\"41\">The 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.</VERS>\r\n      <VERS vnumber=\"42\">According to all that the LORD commanded Moses, so the children of Israel made all the work.</VERS>\r\n      <VERS vnumber=\"43\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"40\">\r\n      <VERS vnumber=\"1\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">On the first day of the first month shalt thou set up the tabernacle of the tent of the congregation.</VERS>\r\n      <VERS vnumber=\"3\">And thou shalt put therein the ark of the testimony, and cover the ark with the vail.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And thou shalt set the altar of the burnt offering before the door of the tabernacle of the tent of the congregation.</VERS>\r\n      <VERS vnumber=\"7\">And thou shalt set the laver between the tent of the congregation and the altar, and shalt put water therein.</VERS>\r\n      <VERS vnumber=\"8\">And thou shalt set up the court round about, and hang up the hanging at the court gate.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And thou shalt anoint the laver and his foot, and sanctify it.</VERS>\r\n      <VERS vnumber=\"12\">And thou shalt bring Aaron and his sons unto the door of the tabernacle of the congregation, and wash them with water.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And thou shalt bring his sons, and clothe them with coats:</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">Thus did Moses: according to all that the LORD commanded him, so did he.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And he spread abroad the tent over the tabernacle, and put the covering of the tent above upon it; as the LORD commanded Moses.</VERS>\r\n      <VERS vnumber=\"20\">And 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:</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And he put the table in the tent of the congregation, upon the side of the tabernacle northward, without the vail.</VERS>\r\n      <VERS vnumber=\"23\">And he set the bread in order upon it before the LORD; as the LORD had commanded Moses.</VERS>\r\n      <VERS vnumber=\"24\">And he put the candlestick in the tent of the congregation, over against the table, on the side of the tabernacle southward.</VERS>\r\n      <VERS vnumber=\"25\">And he lighted the lamps before the LORD; as the LORD commanded Moses.</VERS>\r\n      <VERS vnumber=\"26\">And he put the golden altar in the tent of the congregation before the vail:</VERS>\r\n      <VERS vnumber=\"27\">And he burnt sweet incense thereon; as the LORD commanded Moses.</VERS>\r\n      <VERS vnumber=\"28\">And he set up the hanging at the door of the tabernacle.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">And he set the laver between the tent of the congregation and the altar, and put water there, to wash withal.</VERS>\r\n      <VERS vnumber=\"31\">And Moses and Aaron and his sons washed their hands and their feet thereat:</VERS>\r\n      <VERS vnumber=\"32\">When they went into the tent of the congregation, and when they came near unto the altar, they washed; as the LORD commanded Moses.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">Then a cloud covered the tent of the congregation, and the glory of the LORD filled the tabernacle.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">And when the cloud was taken up from over the tabernacle, the children of Israel went onward in all their journeys:</VERS>\r\n      <VERS vnumber=\"37\">But if the cloud were not taken up, then they journeyed not till the day that it was taken up.</VERS>\r\n      <VERS vnumber=\"38\">For 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.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"3\" bname=\"Leviticus\" bsname=\"Lev\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">And the LORD called unto Moses, and spake unto him out of the tabernacle of the congregation, saying,</VERS>\r\n      <VERS vnumber=\"2\">Speak 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.</VERS>\r\n      <VERS vnumber=\"3\">If 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.</VERS>\r\n      <VERS vnumber=\"4\">And he shall put his hand upon the head of the burnt offering; and it shall be accepted for him to make atonement for him.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And he shall flay the burnt offering, and cut it into his pieces.</VERS>\r\n      <VERS vnumber=\"7\">And the sons of Aaron the priest shall put fire upon the altar, and lay the wood in order upon the fire:</VERS>\r\n      <VERS vnumber=\"8\">And 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:</VERS>\r\n      <VERS vnumber=\"9\">But 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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:</VERS>\r\n      <VERS vnumber=\"13\">But 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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:</VERS>\r\n      <VERS vnumber=\"16\">And 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:</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">And 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:</VERS>\r\n      <VERS vnumber=\"2\">And 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:</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And if thy oblation be a meat offering baken in a pan, it shall be of fine flour unleavened, mingled with oil.</VERS>\r\n      <VERS vnumber=\"6\">Thou shalt part it in pieces, and pour oil thereon: it is a meat offering.</VERS>\r\n      <VERS vnumber=\"7\">And if thy oblation be a meat offering baken in the fryingpan, it shall be made of fine flour with oil.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">No 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.</VERS>\r\n      <VERS vnumber=\"12\">As 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And thou shalt put oil upon it, and lay frankincense thereon: it is a meat offering.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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,</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">If he offer a lamb for his offering, then shall he offer it before the LORD.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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,</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And the priest shall burn it upon the altar: it is the food of the offering made by fire unto the LORD.</VERS>\r\n      <VERS vnumber=\"12\">And if his offering be a goat, then he shall offer it before the LORD.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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,</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">It shall be a perpetual statute for your generations throughout all your dwellings, that ye eat neither fat nor blood.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">Speak 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:</VERS>\r\n      <VERS vnumber=\"3\">If 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And the priest that is anointed shall take of the bullock's blood, and bring it to the tabernacle of the congregation:</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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,</VERS>\r\n      <VERS vnumber=\"9\">And 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,</VERS>\r\n      <VERS vnumber=\"10\">As 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.</VERS>\r\n      <VERS vnumber=\"11\">And the skin of the bullock, and all his flesh, with his head, and with his legs, and his inwards, and his dung,</VERS>\r\n      <VERS vnumber=\"12\">Even 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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;</VERS>\r\n      <VERS vnumber=\"14\">When 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And the priest that is anointed shall bring of the bullock's blood to the tabernacle of the congregation:</VERS>\r\n      <VERS vnumber=\"17\">And the priest shall dip his finger in some of the blood, and sprinkle it seven times before the LORD, even before the vail.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And he shall take all his fat from him, and burn it upon the altar.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">When 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;</VERS>\r\n      <VERS vnumber=\"23\">Or 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:</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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;</VERS>\r\n      <VERS vnumber=\"28\">Or 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.</VERS>\r\n      <VERS vnumber=\"29\">And he shall lay his hand upon the head of the sin offering, and slay the sin offering in the place of the burnt offering.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n      <VERS vnumber=\"32\">And if he bring a lamb for a sin offering, he shall bring it a female without blemish.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">And 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:</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">Or 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.</VERS>\r\n      <VERS vnumber=\"3\">Or 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.</VERS>\r\n      <VERS vnumber=\"4\">Or 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.</VERS>\r\n      <VERS vnumber=\"5\">And it shall be, when he shall be guilty in one of these things, that he shall confess that he hath sinned in that thing:</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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:</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">But 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.</VERS>\r\n      <VERS vnumber=\"12\">Then 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"15\">If 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:</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">It is a trespass offering: he hath certainly trespassed against the LORD.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">If 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;</VERS>\r\n      <VERS vnumber=\"3\">Or have found that which was lost, and lieth concerning it, and sweareth falsely; in any of all these that a man doeth, sinning therein:</VERS>\r\n      <VERS vnumber=\"4\">Then 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,</VERS>\r\n      <VERS vnumber=\"5\">Or 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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:</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"9\">Command 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And he shall put off his garments, and put on other garments, and carry forth the ashes without the camp unto a clean place.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">The fire shall ever be burning upon the altar; it shall never go out.</VERS>\r\n      <VERS vnumber=\"14\">And this is the law of the meat offering: the sons of Aaron shall offer it before the LORD, before the altar.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">It 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.</VERS>\r\n      <VERS vnumber=\"18\">All 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.</VERS>\r\n      <VERS vnumber=\"19\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"20\">This 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.</VERS>\r\n      <VERS vnumber=\"21\">In 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.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">For every meat offering for the priest shall be wholly burnt: it shall not be eaten.</VERS>\r\n      <VERS vnumber=\"24\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"25\">Speak 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.</VERS>\r\n      <VERS vnumber=\"26\">The 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.</VERS>\r\n      <VERS vnumber=\"27\">Whatsoever 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.</VERS>\r\n      <VERS vnumber=\"28\">But 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.</VERS>\r\n      <VERS vnumber=\"29\">All the males among the priests shall eat thereof: it is most holy.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">Likewise this is the law of the trespass offering: it is most holy.</VERS>\r\n      <VERS vnumber=\"2\">In 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.</VERS>\r\n      <VERS vnumber=\"3\">And he shall offer of it all the fat thereof; the rump, and the fat that covereth the inwards,</VERS>\r\n      <VERS vnumber=\"4\">And 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:</VERS>\r\n      <VERS vnumber=\"5\">And the priest shall burn them upon the altar for an offering made by fire unto the LORD: it is a trespass offering.</VERS>\r\n      <VERS vnumber=\"6\">Every male among the priests shall eat thereof: it shall be eaten in the holy place: it is most holy.</VERS>\r\n      <VERS vnumber=\"7\">As the sin offering is, so is the trespass offering: there is one law for them: the priest that maketh atonement therewith shall have it.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And every meat offering, mingled with oil, and dry, shall all the sons of Aaron have, one as much as another.</VERS>\r\n      <VERS vnumber=\"11\">And this is the law of the sacrifice of peace offerings, which he shall offer unto the LORD.</VERS>\r\n      <VERS vnumber=\"12\">If 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.</VERS>\r\n      <VERS vnumber=\"13\">Besides the cakes, he shall offer for his offering leavened bread with the sacrifice of thanksgiving of his peace offerings.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">But 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:</VERS>\r\n      <VERS vnumber=\"17\">But the remainder of the flesh of the sacrifice on the third day shall be burnt with fire.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">But 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.</VERS>\r\n      <VERS vnumber=\"21\">Moreover 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.</VERS>\r\n      <VERS vnumber=\"22\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"23\">Speak unto the children of Israel, saying, Ye shall eat no manner of fat, of ox, or of sheep, or of goat.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">For 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.</VERS>\r\n      <VERS vnumber=\"26\">Moreover ye shall eat no manner of blood, whether it be of fowl or of beast, in any of your dwellings.</VERS>\r\n      <VERS vnumber=\"27\">Whatsoever soul it be that eateth any manner of blood, even that soul shall be cut off from his people.</VERS>\r\n      <VERS vnumber=\"28\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"29\">Speak 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.</VERS>\r\n      <VERS vnumber=\"30\">His 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.</VERS>\r\n      <VERS vnumber=\"31\">And the priest shall burn the fat upon the altar: but the breast shall be Aaron's and his sons'.</VERS>\r\n      <VERS vnumber=\"32\">And the right shoulder shall ye give unto the priest for an heave offering of the sacrifices of your peace offerings.</VERS>\r\n      <VERS vnumber=\"33\">He among the sons of Aaron, that offereth the blood of the peace offerings, and the fat, shall have the right shoulder for his part.</VERS>\r\n      <VERS vnumber=\"34\">For 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.</VERS>\r\n      <VERS vnumber=\"35\">This 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;</VERS>\r\n      <VERS vnumber=\"36\">Which 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.</VERS>\r\n      <VERS vnumber=\"37\">This 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;</VERS>\r\n      <VERS vnumber=\"38\">Which 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">Take 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;</VERS>\r\n      <VERS vnumber=\"3\">And gather thou all the congregation together unto the door of the tabernacle of the congregation.</VERS>\r\n      <VERS vnumber=\"4\">And Moses did as the LORD commanded him; and the assembly was gathered together unto the door of the tabernacle of the congregation.</VERS>\r\n      <VERS vnumber=\"5\">And Moses said unto the congregation, This is the thing which the LORD commanded to be done.</VERS>\r\n      <VERS vnumber=\"6\">And Moses brought Aaron and his sons, and washed them with water.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And he put the breastplate upon him: also he put in the breastplate the Urim and the Thummim.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And Moses took the anointing oil, and anointed the tabernacle and all that was therein, and sanctified them.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And he poured of the anointing oil upon Aaron's head, and anointed him, to sanctify him.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">But the bullock, and his hide, his flesh, and his dung, he burnt with fire without the camp; as the LORD commanded Moses.</VERS>\r\n      <VERS vnumber=\"18\">And he brought the ram for the burnt offering: and Aaron and his sons laid their hands upon the head of the ram.</VERS>\r\n      <VERS vnumber=\"19\">And he killed it; and Moses sprinkled the blood upon the altar round about.</VERS>\r\n      <VERS vnumber=\"20\">And he cut the ram into pieces; and Moses burnt the head, and the pieces, and the fat.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And he brought the other ram, the ram of consecration: and Aaron and his sons laid their hands upon the head of the ram.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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:</VERS>\r\n      <VERS vnumber=\"26\">And 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:</VERS>\r\n      <VERS vnumber=\"27\">And he put all upon Aaron's hands, and upon his sons' hands, and waved them for a wave offering before the LORD.</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n      <VERS vnumber=\"32\">And that which remaineth of the flesh and of the bread shall ye burn with fire.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">As he hath done this day, so the LORD hath commanded to do, to make an atonement for you.</VERS>\r\n      <VERS vnumber=\"35\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"36\">So Aaron and his sons did all things which the LORD commanded by the hand of Moses.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">And it came to pass on the eighth day, that Moses called Aaron and his sons, and the elders of Israel;</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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;</VERS>\r\n      <VERS vnumber=\"4\">Also 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.</VERS>\r\n      <VERS vnumber=\"5\">And they brought that which Moses commanded before the tabernacle of the congregation: and all the congregation drew near and stood before the LORD.</VERS>\r\n      <VERS vnumber=\"6\">And Moses said, This is the thing which the LORD commanded that ye should do: and the glory of the LORD shall appear unto you.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">Aaron therefore went unto the altar, and slew the calf of the sin offering, which was for himself.</VERS>\r\n      <VERS vnumber=\"9\">And 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:</VERS>\r\n      <VERS vnumber=\"10\">But 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.</VERS>\r\n      <VERS vnumber=\"11\">And the flesh and the hide he burnt with fire without the camp.</VERS>\r\n      <VERS vnumber=\"12\">And he slew the burnt offering; and Aaron's sons presented unto him the blood, which he sprinkled round about upon the altar.</VERS>\r\n      <VERS vnumber=\"13\">And they presented the burnt offering unto him, with the pieces thereof, and the head: and he burnt them upon the altar.</VERS>\r\n      <VERS vnumber=\"14\">And he did wash the inwards and the legs, and burnt them upon the burnt offering on the altar.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And he brought the burnt offering, and offered it according to the manner.</VERS>\r\n      <VERS vnumber=\"17\">And he brought the meat offering, and took an handful thereof, and burnt it upon the altar, beside the burnt sacrifice of the morning.</VERS>\r\n      <VERS vnumber=\"18\">He 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,</VERS>\r\n      <VERS vnumber=\"19\">And 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:</VERS>\r\n      <VERS vnumber=\"20\">And they put the fat upon the breasts, and he burnt the fat upon the altar:</VERS>\r\n      <VERS vnumber=\"21\">And the breasts and the right shoulder Aaron waved for a wave offering before the LORD; as Moses commanded.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And there went out fire from the LORD, and devoured them, and they died before the LORD.</VERS>\r\n      <VERS vnumber=\"3\">Then 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">So they went near, and carried them in their coats out of the camp; as Moses had said.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And the LORD spake unto Aaron, saying,</VERS>\r\n      <VERS vnumber=\"9\">Do 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:</VERS>\r\n      <VERS vnumber=\"10\">And that ye may put difference between holy and unholy, and between unclean and clean;</VERS>\r\n      <VERS vnumber=\"11\">And that ye may teach the children of Israel all the statutes which the LORD hath spoken unto them by the hand of Moses.</VERS>\r\n      <VERS vnumber=\"12\">And 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:</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">The 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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,</VERS>\r\n      <VERS vnumber=\"17\">Wherefore 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?</VERS>\r\n      <VERS vnumber=\"18\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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?</VERS>\r\n      <VERS vnumber=\"20\">And when Moses heard that, he was content.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">And the LORD spake unto Moses and to Aaron, saying unto them,</VERS>\r\n      <VERS vnumber=\"2\">Speak unto the children of Israel, saying, These are the beasts which ye shall eat among all the beasts that are on the earth.</VERS>\r\n      <VERS vnumber=\"3\">Whatsoever parteth the hoof, and is clovenfooted, and cheweth the cud, among the beasts, that shall ye eat.</VERS>\r\n      <VERS vnumber=\"4\">Nevertheless 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.</VERS>\r\n      <VERS vnumber=\"5\">And the coney, because he cheweth the cud, but divideth not the hoof; he is unclean unto you.</VERS>\r\n      <VERS vnumber=\"6\">And the hare, because he cheweth the cud, but divideth not the hoof; he is unclean unto you.</VERS>\r\n      <VERS vnumber=\"7\">And the swine, though he divide the hoof, and be clovenfooted, yet he cheweth not the cud; he is unclean to you.</VERS>\r\n      <VERS vnumber=\"8\">Of their flesh shall ye not eat, and their carcase shall ye not touch; they are unclean to you.</VERS>\r\n      <VERS vnumber=\"9\">These 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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:</VERS>\r\n      <VERS vnumber=\"11\">They shall be even an abomination unto you; ye shall not eat of their flesh, but ye shall have their carcases in abomination.</VERS>\r\n      <VERS vnumber=\"12\">Whatsoever hath no fins nor scales in the waters, that shall be an abomination unto you.</VERS>\r\n      <VERS vnumber=\"13\">And 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,</VERS>\r\n      <VERS vnumber=\"14\">And the vulture, and the kite after his kind;</VERS>\r\n      <VERS vnumber=\"15\">Every raven after his kind;</VERS>\r\n      <VERS vnumber=\"16\">And the owl, and the night hawk, and the cuckow, and the hawk after his kind,</VERS>\r\n      <VERS vnumber=\"17\">And the little owl, and the cormorant, and the great owl,</VERS>\r\n      <VERS vnumber=\"18\">And the swan, and the pelican, and the gier eagle,</VERS>\r\n      <VERS vnumber=\"19\">And the stork, the heron after her kind, and the lapwing, and the bat.</VERS>\r\n      <VERS vnumber=\"20\">All fowls that creep, going upon all four, shall be an abomination unto you.</VERS>\r\n      <VERS vnumber=\"21\">Yet 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;</VERS>\r\n      <VERS vnumber=\"22\">Even 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.</VERS>\r\n      <VERS vnumber=\"23\">But all other flying creeping things, which have four feet, shall be an abomination unto you.</VERS>\r\n      <VERS vnumber=\"24\">And for these ye shall be unclean: whosoever toucheth the carcase of them shall be unclean until the even.</VERS>\r\n      <VERS vnumber=\"25\">And whosoever beareth ought of the carcase of them shall wash his clothes, and be unclean until the even.</VERS>\r\n      <VERS vnumber=\"26\">The 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And he that beareth the carcase of them shall wash his clothes, and be unclean until the even: they are unclean unto you.</VERS>\r\n      <VERS vnumber=\"29\">These 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,</VERS>\r\n      <VERS vnumber=\"30\">And the ferret, and the chameleon, and the lizard, and the snail, and the mole.</VERS>\r\n      <VERS vnumber=\"31\">These are unclean to you among all that creep: whosoever doth touch them, when they be dead, shall be unclean until the even.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">And every earthen vessel, whereinto any of them falleth, whatsoever is in it shall be unclean; and ye shall break it.</VERS>\r\n      <VERS vnumber=\"34\">Of 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.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">Nevertheless a fountain or pit, wherein there is plenty of water, shall be clean: but that which toucheth their carcase shall be unclean.</VERS>\r\n      <VERS vnumber=\"37\">And if any part of their carcase fall upon any sowing seed which is to be sown, it shall be clean.</VERS>\r\n      <VERS vnumber=\"38\">But if any water be put upon the seed, and any part of their carcase fall thereon, it shall be unclean unto you.</VERS>\r\n      <VERS vnumber=\"39\">And if any beast, of which ye may eat, die; he that toucheth the carcase thereof shall be unclean until the even.</VERS>\r\n      <VERS vnumber=\"40\">And 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.</VERS>\r\n      <VERS vnumber=\"41\">And every creeping thing that creepeth upon the earth shall be an abomination; it shall not be eaten.</VERS>\r\n      <VERS vnumber=\"42\">Whatsoever 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.</VERS>\r\n      <VERS vnumber=\"43\">Ye 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.</VERS>\r\n      <VERS vnumber=\"44\">For 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.</VERS>\r\n      <VERS vnumber=\"45\">For 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.</VERS>\r\n      <VERS vnumber=\"46\">This 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:</VERS>\r\n      <VERS vnumber=\"47\">To 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">Speak 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.</VERS>\r\n      <VERS vnumber=\"3\">And in the eighth day the flesh of his foreskin shall be circumcised.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">But 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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:</VERS>\r\n      <VERS vnumber=\"7\">Who 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">And the LORD spake unto Moses and Aaron, saying,</VERS>\r\n      <VERS vnumber=\"2\">When 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:</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">If 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:</VERS>\r\n      <VERS vnumber=\"5\">And 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:</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">But 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:</VERS>\r\n      <VERS vnumber=\"8\">And if the priest see that, behold, the scab spreadeth in the skin, then the priest shall pronounce him unclean: it is a leprosy.</VERS>\r\n      <VERS vnumber=\"9\">When the plague of leprosy is in a man, then he shall be brought unto the priest;</VERS>\r\n      <VERS vnumber=\"10\">And 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;</VERS>\r\n      <VERS vnumber=\"11\">It 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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;</VERS>\r\n      <VERS vnumber=\"13\">Then 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.</VERS>\r\n      <VERS vnumber=\"14\">But when raw flesh appeareth in him, he shall be unclean.</VERS>\r\n      <VERS vnumber=\"15\">And the priest shall see the raw flesh, and pronounce him to be unclean: for the raw flesh is unclean: it is a leprosy.</VERS>\r\n      <VERS vnumber=\"16\">Or if the raw flesh turn again, and be changed unto white, he shall come unto the priest;</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">The flesh also, in which, even in the skin thereof, was a boil, and is healed,</VERS>\r\n      <VERS vnumber=\"19\">And 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;</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">But 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:</VERS>\r\n      <VERS vnumber=\"22\">And if it spread much abroad in the skin, then the priest shall pronounce him unclean: it is a plague.</VERS>\r\n      <VERS vnumber=\"23\">But if the bright spot stay in his place, and spread not, it is a burning boil; and the priest shall pronounce him clean.</VERS>\r\n      <VERS vnumber=\"24\">Or 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;</VERS>\r\n      <VERS vnumber=\"25\">Then 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.</VERS>\r\n      <VERS vnumber=\"26\">But 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:</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">If a man or woman have a plague upon the head or the beard;</VERS>\r\n      <VERS vnumber=\"30\">Then 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.</VERS>\r\n      <VERS vnumber=\"31\">And 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:</VERS>\r\n      <VERS vnumber=\"32\">And 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;</VERS>\r\n      <VERS vnumber=\"33\">He shall be shaven, but the scall shall he not shave; and the priest shall shut up him that hath the scall seven days more:</VERS>\r\n      <VERS vnumber=\"34\">And 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.</VERS>\r\n      <VERS vnumber=\"35\">But if the scall spread much in the skin after his cleansing;</VERS>\r\n      <VERS vnumber=\"36\">Then 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.</VERS>\r\n      <VERS vnumber=\"37\">But 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.</VERS>\r\n      <VERS vnumber=\"38\">If a man also or a woman have in the skin of their flesh bright spots, even white bright spots;</VERS>\r\n      <VERS vnumber=\"39\">Then 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.</VERS>\r\n      <VERS vnumber=\"40\">And the man whose hair is fallen off his head, he is bald; yet is he clean.</VERS>\r\n      <VERS vnumber=\"41\">And he that hath his hair fallen off from the part of his head toward his face, he is forehead bald: yet is he clean.</VERS>\r\n      <VERS vnumber=\"42\">And 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.</VERS>\r\n      <VERS vnumber=\"43\">Then 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;</VERS>\r\n      <VERS vnumber=\"44\">He is a leprous man, he is unclean: the priest shall pronounce him utterly unclean; his plague is in his head.</VERS>\r\n      <VERS vnumber=\"45\">And 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.</VERS>\r\n      <VERS vnumber=\"46\">All 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.</VERS>\r\n      <VERS vnumber=\"47\">The garment also that the plague of leprosy is in, whether it be a woollen garment, or a linen garment;</VERS>\r\n      <VERS vnumber=\"48\">Whether it be in the warp, or woof; of linen, or of woollen; whether in a skin, or in any thing made of skin;</VERS>\r\n      <VERS vnumber=\"49\">And 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:</VERS>\r\n      <VERS vnumber=\"50\">And the priest shall look upon the plague, and shut up it that hath the plague seven days:</VERS>\r\n      <VERS vnumber=\"51\">And 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.</VERS>\r\n      <VERS vnumber=\"52\">He 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.</VERS>\r\n      <VERS vnumber=\"53\">And 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;</VERS>\r\n      <VERS vnumber=\"54\">Then the priest shall command that they wash the thing wherein the plague is, and he shall shut it up seven days more:</VERS>\r\n      <VERS vnumber=\"55\">And 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.</VERS>\r\n      <VERS vnumber=\"56\">And 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:</VERS>\r\n      <VERS vnumber=\"57\">And 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.</VERS>\r\n      <VERS vnumber=\"58\">And 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.</VERS>\r\n      <VERS vnumber=\"59\">This 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">This shall be the law of the leper in the day of his cleansing: He shall be brought unto the priest:</VERS>\r\n      <VERS vnumber=\"3\">And 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;</VERS>\r\n      <VERS vnumber=\"4\">Then 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:</VERS>\r\n      <VERS vnumber=\"5\">And the priest shall command that one of the birds be killed in an earthen vessel over running water:</VERS>\r\n      <VERS vnumber=\"6\">As 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:</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">But 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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:</VERS>\r\n      <VERS vnumber=\"12\">And 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:</VERS>\r\n      <VERS vnumber=\"13\">And 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:</VERS>\r\n      <VERS vnumber=\"14\">And 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:</VERS>\r\n      <VERS vnumber=\"15\">And the priest shall take some of the log of oil, and pour it into the palm of his own left hand:</VERS>\r\n      <VERS vnumber=\"16\">And 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:</VERS>\r\n      <VERS vnumber=\"17\">And 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:</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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:</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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;</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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:</VERS>\r\n      <VERS vnumber=\"25\">And 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:</VERS>\r\n      <VERS vnumber=\"26\">And the priest shall pour of the oil into the palm of his own left hand:</VERS>\r\n      <VERS vnumber=\"27\">And the priest shall sprinkle with his right finger some of the oil that is in his left hand seven times before the LORD:</VERS>\r\n      <VERS vnumber=\"28\">And 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:</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">And he shall offer the one of the turtledoves, or of the young pigeons, such as he can get;</VERS>\r\n      <VERS vnumber=\"31\">Even 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.</VERS>\r\n      <VERS vnumber=\"32\">This 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.</VERS>\r\n      <VERS vnumber=\"33\">And the LORD spake unto Moses and unto Aaron, saying,</VERS>\r\n      <VERS vnumber=\"34\">When 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;</VERS>\r\n      <VERS vnumber=\"35\">And 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:</VERS>\r\n      <VERS vnumber=\"36\">Then 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:</VERS>\r\n      <VERS vnumber=\"37\">And 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;</VERS>\r\n      <VERS vnumber=\"38\">Then the priest shall go out of the house to the door of the house, and shut up the house seven days:</VERS>\r\n      <VERS vnumber=\"39\">And the priest shall come again the seventh day, and shall look: and, behold, if the plague be spread in the walls of the house;</VERS>\r\n      <VERS vnumber=\"40\">Then 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:</VERS>\r\n      <VERS vnumber=\"41\">And 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:</VERS>\r\n      <VERS vnumber=\"42\">And 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.</VERS>\r\n      <VERS vnumber=\"43\">And 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;</VERS>\r\n      <VERS vnumber=\"44\">Then 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.</VERS>\r\n      <VERS vnumber=\"45\">And 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.</VERS>\r\n      <VERS vnumber=\"46\">Moreover he that goeth into the house all the while that it is shut up shall be unclean until the even.</VERS>\r\n      <VERS vnumber=\"47\">And he that lieth in the house shall wash his clothes; and he that eateth in the house shall wash his clothes.</VERS>\r\n      <VERS vnumber=\"48\">And 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.</VERS>\r\n      <VERS vnumber=\"49\">And he shall take to cleanse the house two birds, and cedar wood, and scarlet, and hyssop:</VERS>\r\n      <VERS vnumber=\"50\">And he shall kill the one of the birds in an earthen vessel over running water:</VERS>\r\n      <VERS vnumber=\"51\">And 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:</VERS>\r\n      <VERS vnumber=\"52\">And 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:</VERS>\r\n      <VERS vnumber=\"53\">But 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.</VERS>\r\n      <VERS vnumber=\"54\">This is the law for all manner of plague of leprosy, and scall,</VERS>\r\n      <VERS vnumber=\"55\">And for the leprosy of a garment, and of a house,</VERS>\r\n      <VERS vnumber=\"56\">And for a rising, and for a scab, and for a bright spot:</VERS>\r\n      <VERS vnumber=\"57\">To teach when it is unclean, and when it is clean: this is the law of leprosy.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">And the LORD spake unto Moses and to Aaron, saying,</VERS>\r\n      <VERS vnumber=\"2\">Speak 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">Every bed, whereon he lieth that hath the issue, is unclean: and every thing, whereon he sitteth, shall be unclean.</VERS>\r\n      <VERS vnumber=\"5\">And whosoever toucheth his bed shall wash his clothes, and bathe himself in water, and be unclean until the even.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And what saddle soever he rideth upon that hath the issue shall be unclean.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And the vessel of earth, that he toucheth which hath the issue, shall be broken: and every vessel of wood shall be rinsed in water.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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:</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And every garment, and every skin, whereon is the seed of copulation, shall be washed with water, and be unclean until the even.</VERS>\r\n      <VERS vnumber=\"18\">The woman also with whom man shall lie with seed of copulation, they shall both bathe themselves in water, and be unclean until the even.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And every thing that she lieth upon in her separation shall be unclean: every thing also that she sitteth upon shall be unclean.</VERS>\r\n      <VERS vnumber=\"21\">And whosoever toucheth her bed shall wash his clothes, and bathe himself in water, and be unclean until the even.</VERS>\r\n      <VERS vnumber=\"22\">And whosoever toucheth any thing that she sat upon shall wash his clothes, and bathe himself in water, and be unclean until the even.</VERS>\r\n      <VERS vnumber=\"23\">And if it be on her bed, or on any thing whereon she sitteth, when he toucheth it, he shall be unclean until the even.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">Every 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.</VERS>\r\n      <VERS vnumber=\"27\">And whosoever toucheth those things shall be unclean, and shall wash his clothes, and bathe himself in water, and be unclean until the even.</VERS>\r\n      <VERS vnumber=\"28\">But if she be cleansed of her issue, then she shall number to herself seven days, and after that she shall be clean.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">Thus 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.</VERS>\r\n      <VERS vnumber=\"32\">This is the law of him that hath an issue, and of him whose seed goeth from him, and is defiled therewith;</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">And the LORD spake unto Moses after the death of the two sons of Aaron, when they offered before the LORD, and died;</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">Thus shall Aaron come into the holy place: with a young bullock for a sin offering, and a ram for a burnt offering.</VERS>\r\n      <VERS vnumber=\"4\">He 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And Aaron shall offer his bullock of the sin offering, which is for himself, and make an atonement for himself, and for his house.</VERS>\r\n      <VERS vnumber=\"7\">And he shall take the two goats, and present them before the LORD at the door of the tabernacle of the congregation.</VERS>\r\n      <VERS vnumber=\"8\">And Aaron shall cast lots upon the two goats; one lot for the LORD, and the other lot for the scapegoat.</VERS>\r\n      <VERS vnumber=\"9\">And Aaron shall bring the goat upon which the LORD'S lot fell, and offer him for a sin offering.</VERS>\r\n      <VERS vnumber=\"10\">But 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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:</VERS>\r\n      <VERS vnumber=\"12\">And 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:</VERS>\r\n      <VERS vnumber=\"13\">And 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:</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">Then 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:</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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:</VERS>\r\n      <VERS vnumber=\"21\">And 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:</VERS>\r\n      <VERS vnumber=\"22\">And the goat shall bear upon him all their iniquities unto a land not inhabited: and he shall let go the goat in the wilderness.</VERS>\r\n      <VERS vnumber=\"23\">And 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:</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And the fat of the sin offering shall he burn upon the altar.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And he that burneth them shall wash his clothes, and bathe his flesh in water, and afterward he shall come into the camp.</VERS>\r\n      <VERS vnumber=\"29\">And 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:</VERS>\r\n      <VERS vnumber=\"30\">For 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.</VERS>\r\n      <VERS vnumber=\"31\">It shall be a sabbath of rest unto you, and ye shall afflict your souls, by a statute for ever.</VERS>\r\n      <VERS vnumber=\"32\">And 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:</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"17\">\r\n      <VERS vnumber=\"1\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">Speak 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,</VERS>\r\n      <VERS vnumber=\"3\">What 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,</VERS>\r\n      <VERS vnumber=\"4\">And 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:</VERS>\r\n      <VERS vnumber=\"5\">To 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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,</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">For 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.</VERS>\r\n      <VERS vnumber=\"12\">Therefore I said unto the children of Israel, No soul of you shall eat blood, neither shall any stranger that sojourneth among you eat blood.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">For 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">But if he wash them not, nor bathe his flesh; then he shall bear his iniquity.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"18\">\r\n      <VERS vnumber=\"1\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">Speak unto the children of Israel, and say unto them, I am the LORD your God.</VERS>\r\n      <VERS vnumber=\"3\">After 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.</VERS>\r\n      <VERS vnumber=\"4\">Ye shall do my judgments, and keep mine ordinances, to walk therein: I am the LORD your God.</VERS>\r\n      <VERS vnumber=\"5\">Ye shall therefore keep my statutes, and my judgments: which if a man do, he shall live in them: I am the LORD.</VERS>\r\n      <VERS vnumber=\"6\">None of you shall approach to any that is near of kin to him, to uncover their nakedness: I am the LORD.</VERS>\r\n      <VERS vnumber=\"7\">The nakedness of thy father, or the nakedness of thy mother, shalt thou not uncover: she is thy mother; thou shalt not uncover her nakedness.</VERS>\r\n      <VERS vnumber=\"8\">The nakedness of thy father's wife shalt thou not uncover: it is thy father's nakedness.</VERS>\r\n      <VERS vnumber=\"9\">The 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.</VERS>\r\n      <VERS vnumber=\"10\">The 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.</VERS>\r\n      <VERS vnumber=\"11\">The nakedness of thy father's wife's daughter, begotten of thy father, she is thy sister, thou shalt not uncover her nakedness.</VERS>\r\n      <VERS vnumber=\"12\">Thou shalt not uncover the nakedness of thy father's sister: she is thy father's near kinswoman.</VERS>\r\n      <VERS vnumber=\"13\">Thou shalt not uncover the nakedness of thy mother's sister: for she is thy mother's near kinswoman.</VERS>\r\n      <VERS vnumber=\"14\">Thou shalt not uncover the nakedness of thy father's brother, thou shalt not approach to his wife: she is thine aunt.</VERS>\r\n      <VERS vnumber=\"15\">Thou shalt not uncover the nakedness of thy daughter in law: she is thy son's wife; thou shalt not uncover her nakedness.</VERS>\r\n      <VERS vnumber=\"16\">Thou shalt not uncover the nakedness of thy brother's wife: it is thy brother's nakedness.</VERS>\r\n      <VERS vnumber=\"17\">Thou 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.</VERS>\r\n      <VERS vnumber=\"18\">Neither shalt thou take a wife to her sister, to vex her, to uncover her nakedness, beside the other in her life time.</VERS>\r\n      <VERS vnumber=\"19\">Also thou shalt not approach unto a woman to uncover her nakedness, as long as she is put apart for her uncleanness.</VERS>\r\n      <VERS vnumber=\"20\">Moreover thou shalt not lie carnally with thy neighbour's wife, to defile thyself with her.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">Thou shalt not lie with mankind, as with womankind: it is abomination.</VERS>\r\n      <VERS vnumber=\"23\">Neither 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.</VERS>\r\n      <VERS vnumber=\"24\">Defile not ye yourselves in any of these things: for in all these the nations are defiled which I cast out before you:</VERS>\r\n      <VERS vnumber=\"25\">And the land is defiled: therefore I do visit the iniquity thereof upon it, and the land itself vomiteth out her inhabitants.</VERS>\r\n      <VERS vnumber=\"26\">Ye 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:</VERS>\r\n      <VERS vnumber=\"27\">For all these abominations have the men of the land done, which were before you, and the land is defiled;)</VERS>\r\n      <VERS vnumber=\"28\">That the land spue not you out also, when ye defile it, as it spued out the nations that were before you.</VERS>\r\n      <VERS vnumber=\"29\">For whosoever shall commit any of these abominations, even the souls that commit them shall be cut off from among their people.</VERS>\r\n      <VERS vnumber=\"30\">Therefore 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"19\">\r\n      <VERS vnumber=\"1\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">Speak 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.</VERS>\r\n      <VERS vnumber=\"3\">Ye shall fear every man his mother, and his father, and keep my sabbaths: I am the LORD your God.</VERS>\r\n      <VERS vnumber=\"4\">Turn ye not unto idols, nor make to yourselves molten gods: I am the LORD your God.</VERS>\r\n      <VERS vnumber=\"5\">And if ye offer a sacrifice of peace offerings unto the LORD, ye shall offer it at your own will.</VERS>\r\n      <VERS vnumber=\"6\">It 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.</VERS>\r\n      <VERS vnumber=\"7\">And if it be eaten at all on the third day, it is abominable; it shall not be accepted.</VERS>\r\n      <VERS vnumber=\"8\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">Ye shall not steal, neither deal falsely, neither lie one to another.</VERS>\r\n      <VERS vnumber=\"12\">And ye shall not swear by my name falsely, neither shalt thou profane the name of thy God: I am the LORD.</VERS>\r\n      <VERS vnumber=\"13\">Thou 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.</VERS>\r\n      <VERS vnumber=\"14\">Thou shalt not curse the deaf, nor put a stumblingblock before the blind, but shalt fear thy God: I am the LORD.</VERS>\r\n      <VERS vnumber=\"15\">Ye shall do no unrighteousness in judgment: thou shalt not respect the person of the poor, nor honour the person of the mighty: but in righteousness shalt thou judge thy neighbour.</VERS>\r\n      <VERS vnumber=\"16\">Thou 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.</VERS>\r\n      <VERS vnumber=\"17\">Thou shalt not hate thy brother in thine heart: thou shalt in any wise rebuke thy neighbour, and not suffer sin upon him.</VERS>\r\n      <VERS vnumber=\"18\">Thou 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.</VERS>\r\n      <VERS vnumber=\"19\">Ye 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">But in the fourth year all the fruit thereof shall be holy to praise the LORD withal.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">Ye shall not eat any thing with the blood: neither shall ye use enchantment, nor observe times.</VERS>\r\n      <VERS vnumber=\"27\">Ye shall not round the corners of your heads, neither shalt thou mar the corners of thy beard.</VERS>\r\n      <VERS vnumber=\"28\">Ye shall not make any cuttings in your flesh for the dead, nor print any marks upon you: I am the LORD.</VERS>\r\n      <VERS vnumber=\"29\">Do not prostitute thy daughter, to cause her to be a whore; lest the land fall to whoredom, and the land become full of wickedness.</VERS>\r\n      <VERS vnumber=\"30\">Ye shall keep my sabbaths, and reverence my sanctuary: I am the LORD.</VERS>\r\n      <VERS vnumber=\"31\">Regard not them that have familiar spirits, neither seek after wizards, to be defiled by them: I am the LORD your God.</VERS>\r\n      <VERS vnumber=\"32\">Thou shalt rise up before the hoary head, and honour the face of the old man, and fear thy God: I am the LORD.</VERS>\r\n      <VERS vnumber=\"33\">And if a stranger sojourn with thee in your land, ye shall not vex him.</VERS>\r\n      <VERS vnumber=\"34\">But 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.</VERS>\r\n      <VERS vnumber=\"35\">Ye shall do no unrighteousness in judgment, in meteyard, in weight, or in measure.</VERS>\r\n      <VERS vnumber=\"36\">Just 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.</VERS>\r\n      <VERS vnumber=\"37\">Therefore shall ye observe all my statutes, and all my judgments, and do them: I am the LORD.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"20\">\r\n      <VERS vnumber=\"1\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">Again, 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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:</VERS>\r\n      <VERS vnumber=\"5\">Then 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">Sanctify yourselves therefore, and be ye holy: for I am the LORD your God.</VERS>\r\n      <VERS vnumber=\"8\">And ye shall keep my statutes, and do them: I am the LORD which sanctify you.</VERS>\r\n      <VERS vnumber=\"9\">For 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">If 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And if a man lie with a beast, he shall surely be put to death: and ye shall slay the beast.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">Ye 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.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">But 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.</VERS>\r\n      <VERS vnumber=\"25\">Ye 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.</VERS>\r\n      <VERS vnumber=\"26\">And ye shall be holy unto me: for I the LORD am holy, and have severed you from other people, that ye should be mine.</VERS>\r\n      <VERS vnumber=\"27\">A 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"21\">\r\n      <VERS vnumber=\"1\">And 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:</VERS>\r\n      <VERS vnumber=\"2\">But 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,</VERS>\r\n      <VERS vnumber=\"3\">And for his sister a virgin, that is nigh unto him, which hath had no husband; for her may he be defiled.</VERS>\r\n      <VERS vnumber=\"4\">But he shall not defile himself, being a chief man among his people, to profane himself.</VERS>\r\n      <VERS vnumber=\"5\">They shall not make baldness upon their head, neither shall they shave off the corner of their beard, nor make any cuttings in their flesh.</VERS>\r\n      <VERS vnumber=\"6\">They 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.</VERS>\r\n      <VERS vnumber=\"7\">They 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.</VERS>\r\n      <VERS vnumber=\"8\">Thou 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.</VERS>\r\n      <VERS vnumber=\"9\">And the daughter of any priest, if she profane herself by playing the whore, she profaneth her father: she shall be burnt with fire.</VERS>\r\n      <VERS vnumber=\"10\">And 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;</VERS>\r\n      <VERS vnumber=\"11\">Neither shall he go in to any dead body, nor defile himself for his father, or for his mother;</VERS>\r\n      <VERS vnumber=\"12\">Neither 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.</VERS>\r\n      <VERS vnumber=\"13\">And he shall take a wife in her virginity.</VERS>\r\n      <VERS vnumber=\"14\">A 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.</VERS>\r\n      <VERS vnumber=\"15\">Neither shall he profane his seed among his people: for I the LORD do sanctify him.</VERS>\r\n      <VERS vnumber=\"16\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"17\">Speak 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.</VERS>\r\n      <VERS vnumber=\"18\">For 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,</VERS>\r\n      <VERS vnumber=\"19\">Or a man that is brokenfooted, or brokenhanded,</VERS>\r\n      <VERS vnumber=\"20\">Or crookbackt, or a dwarf, or that hath a blemish in his eye, or be scurvy, or scabbed, or hath his stones broken;</VERS>\r\n      <VERS vnumber=\"21\">No 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.</VERS>\r\n      <VERS vnumber=\"22\">He shall eat the bread of his God, both of the most holy, and of the holy.</VERS>\r\n      <VERS vnumber=\"23\">Only 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.</VERS>\r\n      <VERS vnumber=\"24\">And Moses told it unto Aaron, and to his sons, and unto all the children of Israel.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"22\">\r\n      <VERS vnumber=\"1\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">Speak 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.</VERS>\r\n      <VERS vnumber=\"3\">Say 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.</VERS>\r\n      <VERS vnumber=\"4\">What 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;</VERS>\r\n      <VERS vnumber=\"5\">Or whosoever toucheth any creeping thing, whereby he may be made unclean, or a man of whom he may take uncleanness, whatsoever uncleanness he hath;</VERS>\r\n      <VERS vnumber=\"6\">The 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.</VERS>\r\n      <VERS vnumber=\"7\">And when the sun is down, he shall be clean, and shall afterward eat of the holy things; because it is his food.</VERS>\r\n      <VERS vnumber=\"8\">That which dieth of itself, or is torn with beasts, he shall not eat to defile himself therewith: I am the LORD.</VERS>\r\n      <VERS vnumber=\"9\">They shall therefore keep mine ordinance, lest they bear sin for it, and die therefore, if they profane it: I the LORD do sanctify them.</VERS>\r\n      <VERS vnumber=\"10\">There shall no stranger eat of the holy thing: a sojourner of the priest, or an hired servant, shall not eat of the holy thing.</VERS>\r\n      <VERS vnumber=\"11\">But 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.</VERS>\r\n      <VERS vnumber=\"12\">If the priest's daughter also be married unto a stranger, she may not eat of an offering of the holy things.</VERS>\r\n      <VERS vnumber=\"13\">But 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 no stranger eat thereof.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And they shall not profane the holy things of the children of Israel, which they offer unto the LORD;</VERS>\r\n      <VERS vnumber=\"16\">Or suffer them to bear the iniquity of trespass, when they eat their holy things: for I the LORD do sanctify them.</VERS>\r\n      <VERS vnumber=\"17\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"18\">Speak 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;</VERS>\r\n      <VERS vnumber=\"19\">Ye shall offer at your own will a male without blemish, of the beeves, of the sheep, or of the goats.</VERS>\r\n      <VERS vnumber=\"20\">But whatsoever hath a blemish, that shall ye not offer: for it shall not be acceptable for you.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">Blind, 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.</VERS>\r\n      <VERS vnumber=\"23\">Either 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.</VERS>\r\n      <VERS vnumber=\"24\">Ye 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.</VERS>\r\n      <VERS vnumber=\"25\">Neither 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.</VERS>\r\n      <VERS vnumber=\"26\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"27\">When 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.</VERS>\r\n      <VERS vnumber=\"28\">And whether it be cow or ewe, ye shall not kill it and her young both in one day.</VERS>\r\n      <VERS vnumber=\"29\">And when ye will offer a sacrifice of thanksgiving unto the LORD, offer it at your own will.</VERS>\r\n      <VERS vnumber=\"30\">On the same day it shall be eaten up; ye shall leave none of it until the morrow: I am the LORD.</VERS>\r\n      <VERS vnumber=\"31\">Therefore shall ye keep my commandments, and do them: I am the LORD.</VERS>\r\n      <VERS vnumber=\"32\">Neither shall ye profane my holy name; but I will be hallowed among the children of Israel: I am the LORD which hallow you,</VERS>\r\n      <VERS vnumber=\"33\">That brought you out of the land of Egypt, to be your God: I am the LORD.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"23\">\r\n      <VERS vnumber=\"1\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">Speak 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.</VERS>\r\n      <VERS vnumber=\"3\">Six 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.</VERS>\r\n      <VERS vnumber=\"4\">These are the feasts of the LORD, even holy convocations, which ye shall proclaim in their seasons.</VERS>\r\n      <VERS vnumber=\"5\">In the fourteenth day of the first month at even is the LORD'S passover.</VERS>\r\n      <VERS vnumber=\"6\">And on the fifteenth day of the same month is the feast of unleavened bread unto the LORD: seven days ye must eat unleavened bread.</VERS>\r\n      <VERS vnumber=\"7\">In the first day ye shall have an holy convocation: ye shall do no servile work therein.</VERS>\r\n      <VERS vnumber=\"8\">But 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.</VERS>\r\n      <VERS vnumber=\"9\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"10\">Speak 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:</VERS>\r\n      <VERS vnumber=\"11\">And he shall wave the sheaf before the LORD, to be accepted for you: on the morrow after the sabbath the priest shall wave it.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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:</VERS>\r\n      <VERS vnumber=\"16\">Even unto the morrow after the seventh sabbath shall ye number fifty days; and ye shall offer a new meat offering unto the LORD.</VERS>\r\n      <VERS vnumber=\"17\">Ye 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">Then 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"24\">Speak 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.</VERS>\r\n      <VERS vnumber=\"25\">Ye shall do no servile work therein: but ye shall offer an offering made by fire unto the LORD.</VERS>\r\n      <VERS vnumber=\"26\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"27\">Also 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.</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">For whatsoever soul it be that shall not be afflicted in that same day, he shall be cut off from among his people.</VERS>\r\n      <VERS vnumber=\"30\">And whatsoever soul it be that doeth any work in that same day, the same soul will I destroy from among his people.</VERS>\r\n      <VERS vnumber=\"31\">Ye shall do no manner of work: it shall be a statute for ever throughout your generations in all your dwellings.</VERS>\r\n      <VERS vnumber=\"32\">It 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.</VERS>\r\n      <VERS vnumber=\"33\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"34\">Speak 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.</VERS>\r\n      <VERS vnumber=\"35\">On the first day shall be an holy convocation: ye shall do no servile work therein.</VERS>\r\n      <VERS vnumber=\"36\">Seven 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.</VERS>\r\n      <VERS vnumber=\"37\">These 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:</VERS>\r\n      <VERS vnumber=\"38\">Beside 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.</VERS>\r\n      <VERS vnumber=\"39\">Also 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.</VERS>\r\n      <VERS vnumber=\"40\">And 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.</VERS>\r\n      <VERS vnumber=\"41\">And 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.</VERS>\r\n      <VERS vnumber=\"42\">Ye shall dwell in booths seven days; all that are Israelites born shall dwell in booths:</VERS>\r\n      <VERS vnumber=\"43\">That 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.</VERS>\r\n      <VERS vnumber=\"44\">And Moses declared unto the children of Israel the feasts of the LORD.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"24\">\r\n      <VERS vnumber=\"1\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">Command the children of Israel, that they bring unto thee pure oil olive beaten for the light, to cause the lamps to burn continually.</VERS>\r\n      <VERS vnumber=\"3\">Without 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.</VERS>\r\n      <VERS vnumber=\"4\">He shall order the lamps upon the pure candlestick before the LORD continually.</VERS>\r\n      <VERS vnumber=\"5\">And thou shalt take fine flour, and bake twelve cakes thereof: two tenth deals shall be in one cake.</VERS>\r\n      <VERS vnumber=\"6\">And thou shalt set them in two rows, six on a row, upon the pure table before the LORD.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">Every sabbath he shall set it in order before the LORD continually, being taken from the children of Israel by an everlasting covenant.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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;</VERS>\r\n      <VERS vnumber=\"11\">And 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:)</VERS>\r\n      <VERS vnumber=\"12\">And they put him in ward, that the mind of the LORD might be shewed them.</VERS>\r\n      <VERS vnumber=\"13\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"14\">Bring 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.</VERS>\r\n      <VERS vnumber=\"15\">And thou shalt speak unto the children of Israel, saying, Whosoever curseth his God shall bear his sin.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And he that killeth any man shall surely be put to death.</VERS>\r\n      <VERS vnumber=\"18\">And he that killeth a beast shall make it good; beast for beast.</VERS>\r\n      <VERS vnumber=\"19\">And if a man cause a blemish in his neighbour; as he hath done, so shall it be done to him;</VERS>\r\n      <VERS vnumber=\"20\">Breach 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.</VERS>\r\n      <VERS vnumber=\"21\">And he that killeth a beast, he shall restore it: and he that killeth a man, he shall be put to death.</VERS>\r\n      <VERS vnumber=\"22\">Ye 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.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"25\">\r\n      <VERS vnumber=\"1\">And the LORD spake unto Moses in mount Sinai, saying,</VERS>\r\n      <VERS vnumber=\"2\">Speak 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.</VERS>\r\n      <VERS vnumber=\"3\">Six years thou shalt sow thy field, and six years thou shalt prune thy vineyard, and gather in the fruit thereof;</VERS>\r\n      <VERS vnumber=\"4\">But 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.</VERS>\r\n      <VERS vnumber=\"5\">That 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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,</VERS>\r\n      <VERS vnumber=\"7\">And for thy cattle, and for the beast that are in thy land, shall all the increase thereof be meat.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">Then 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">A 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.</VERS>\r\n      <VERS vnumber=\"12\">For it is the jubile; it shall be holy unto you: ye shall eat the increase thereof out of the field.</VERS>\r\n      <VERS vnumber=\"13\">In the year of this jubile ye shall return every man unto his possession.</VERS>\r\n      <VERS vnumber=\"14\">And if thou sell ought unto thy neighbour, or buyest ought of thy neighbour's hand, ye shall not oppress one another:</VERS>\r\n      <VERS vnumber=\"15\">According 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:</VERS>\r\n      <VERS vnumber=\"16\">According 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.</VERS>\r\n      <VERS vnumber=\"17\">Ye shall not therefore oppress one another; but thou shalt fear thy God: for I am the LORD your God.</VERS>\r\n      <VERS vnumber=\"18\">Wherefore ye shall do my statutes, and keep my judgments, and do them; and ye shall dwell in the land in safety.</VERS>\r\n      <VERS vnumber=\"19\">And the land shall yield her fruit, and ye shall eat your fill, and dwell therein in safety.</VERS>\r\n      <VERS vnumber=\"20\">And if ye shall say, What shall we eat the seventh year? behold, we shall not sow, nor gather in our increase:</VERS>\r\n      <VERS vnumber=\"21\">Then I will command my blessing upon you in the sixth year, and it shall bring forth fruit for three years.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">The land shall not be sold for ever: for the land is mine; for ye are strangers and sojourners with me.</VERS>\r\n      <VERS vnumber=\"24\">And in all the land of your possession ye shall grant a redemption for the land.</VERS>\r\n      <VERS vnumber=\"25\">If 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.</VERS>\r\n      <VERS vnumber=\"26\">And if the man have none to redeem it, and himself be able to redeem it;</VERS>\r\n      <VERS vnumber=\"27\">Then 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.</VERS>\r\n      <VERS vnumber=\"28\">But 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.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">But 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.</VERS>\r\n      <VERS vnumber=\"32\">Notwithstanding the cities of the Levites, and the houses of the cities of their possession, may the Levites redeem at any time.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">But the field of the suburbs of their cities may not be sold; for it is their perpetual possession.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">Take thou no usury of him, or increase: but fear thy God; that thy brother may live with thee.</VERS>\r\n      <VERS vnumber=\"37\">Thou shalt not give him thy money upon usury, nor lend him thy victuals for increase.</VERS>\r\n      <VERS vnumber=\"38\">I 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.</VERS>\r\n      <VERS vnumber=\"39\">And 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:</VERS>\r\n      <VERS vnumber=\"40\">But as an hired servant, and as a sojourner, he shall be with thee, and shall serve thee unto the year of jubile:</VERS>\r\n      <VERS vnumber=\"41\">And 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.</VERS>\r\n      <VERS vnumber=\"42\">For they are my servants, which I brought forth out of the land of Egypt: they shall not be sold as bondmen.</VERS>\r\n      <VERS vnumber=\"43\">Thou shalt not rule over him with rigour; but shalt fear thy God.</VERS>\r\n      <VERS vnumber=\"44\">Both 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.</VERS>\r\n      <VERS vnumber=\"45\">Moreover 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.</VERS>\r\n      <VERS vnumber=\"46\">And 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.</VERS>\r\n      <VERS vnumber=\"47\">And 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:</VERS>\r\n      <VERS vnumber=\"48\">After that he is sold he may be redeemed again; one of his brethren may redeem him:</VERS>\r\n      <VERS vnumber=\"49\">Either 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.</VERS>\r\n      <VERS vnumber=\"50\">And 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.</VERS>\r\n      <VERS vnumber=\"51\">If 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.</VERS>\r\n      <VERS vnumber=\"52\">And 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.</VERS>\r\n      <VERS vnumber=\"53\">And as a yearly hired servant shall he be with him: and the other shall not rule with rigour over him in thy sight.</VERS>\r\n      <VERS vnumber=\"54\">And 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.</VERS>\r\n      <VERS vnumber=\"55\">For 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"26\">\r\n      <VERS vnumber=\"1\">Ye 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.</VERS>\r\n      <VERS vnumber=\"2\">Ye shall keep my sabbaths, and reverence my sanctuary: I am the LORD.</VERS>\r\n      <VERS vnumber=\"3\">If ye walk in my statutes, and keep my commandments, and do them;</VERS>\r\n      <VERS vnumber=\"4\">Then 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And ye shall chase your enemies, and they shall fall before you by the sword.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">For I will have respect unto you, and make you fruitful, and multiply you, and establish my covenant with you.</VERS>\r\n      <VERS vnumber=\"10\">And ye shall eat old store, and bring forth the old because of the new.</VERS>\r\n      <VERS vnumber=\"11\">And I will set my tabernacle among you: and my soul shall not abhor you.</VERS>\r\n      <VERS vnumber=\"12\">And I will walk among you, and will be your God, and ye shall be my people.</VERS>\r\n      <VERS vnumber=\"13\">I 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.</VERS>\r\n      <VERS vnumber=\"14\">But if ye will not hearken unto me, and will not do all these commandments;</VERS>\r\n      <VERS vnumber=\"15\">And 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:</VERS>\r\n      <VERS vnumber=\"16\">I 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And if ye will not yet for all this hearken unto me, then I will punish you seven times more for your sins.</VERS>\r\n      <VERS vnumber=\"19\">And I will break the pride of your power; and I will make your heaven as iron, and your earth as brass:</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">I 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.</VERS>\r\n      <VERS vnumber=\"23\">And if ye will not be reformed by me by these things, but will walk contrary unto me;</VERS>\r\n      <VERS vnumber=\"24\">Then will I also walk contrary unto you, and will punish you yet seven times for your sins.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And if ye will not for all this hearken unto me, but walk contrary unto me;</VERS>\r\n      <VERS vnumber=\"28\">Then I will walk contrary unto you also in fury; and I, even I, will chastise you seven times for your sins.</VERS>\r\n      <VERS vnumber=\"29\">And ye shall eat the flesh of your sons, and the flesh of your daughters shall ye eat.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">And I will make your cities waste, and bring your sanctuaries unto desolation, and I will not smell the savour of your sweet odours.</VERS>\r\n      <VERS vnumber=\"32\">And I will bring the land into desolation: and your enemies which dwell therein shall be astonished at it.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">Then 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.</VERS>\r\n      <VERS vnumber=\"35\">As long as it lieth desolate it shall rest; because it did not rest in your sabbaths, when ye dwelt upon it.</VERS>\r\n      <VERS vnumber=\"36\">And 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.</VERS>\r\n      <VERS vnumber=\"37\">And 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.</VERS>\r\n      <VERS vnumber=\"38\">And ye shall perish among the heathen, and the land of your enemies shall eat you up.</VERS>\r\n      <VERS vnumber=\"39\">And 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.</VERS>\r\n      <VERS vnumber=\"40\">If 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;</VERS>\r\n      <VERS vnumber=\"41\">And 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:</VERS>\r\n      <VERS vnumber=\"42\">Then 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.</VERS>\r\n      <VERS vnumber=\"43\">The 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.</VERS>\r\n      <VERS vnumber=\"44\">And 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.</VERS>\r\n      <VERS vnumber=\"45\">But 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.</VERS>\r\n      <VERS vnumber=\"46\">These 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"27\">\r\n      <VERS vnumber=\"1\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">Speak 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And if it be a female, then thy estimation shall be thirty shekels.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">But 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">He 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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:</VERS>\r\n      <VERS vnumber=\"12\">And the priest shall value it, whether it be good or bad: as thou valuest it, who art the priest, so shall it be.</VERS>\r\n      <VERS vnumber=\"13\">But if he will at all redeem it, then he shall add a fifth part thereof unto thy estimation.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">If he sanctify his field from the year of jubile, according to thy estimation it shall stand.</VERS>\r\n      <VERS vnumber=\"18\">But 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And if he will not redeem the field, or if he have sold the field to another man, it shall not be redeemed any more.</VERS>\r\n      <VERS vnumber=\"21\">But 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.</VERS>\r\n      <VERS vnumber=\"22\">And if a man sanctify unto the LORD a field which he hath bought, which is not of the fields of his possession;</VERS>\r\n      <VERS vnumber=\"23\">Then 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.</VERS>\r\n      <VERS vnumber=\"24\">In 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.</VERS>\r\n      <VERS vnumber=\"25\">And all thy estimations shall be according to the shekel of the sanctuary: twenty gerahs shall be the shekel.</VERS>\r\n      <VERS vnumber=\"26\">Only 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">Notwithstanding 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.</VERS>\r\n      <VERS vnumber=\"29\">None devoted, which shall be devoted of men, shall be redeemed; but shall surely be put to death.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">And if a man will at all redeem ought of his tithes, he shall add thereto the fifth part thereof.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">He 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.</VERS>\r\n      <VERS vnumber=\"34\">These are the commandments, which the LORD commanded Moses for the children of Israel in mount Sinai.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"4\" bname=\"Numbers\" bsname=\"Num\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">And 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,</VERS>\r\n      <VERS vnumber=\"2\">Take 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;</VERS>\r\n      <VERS vnumber=\"3\">From 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.</VERS>\r\n      <VERS vnumber=\"4\">And with you there shall be a man of every tribe; every one head of the house of his fathers.</VERS>\r\n      <VERS vnumber=\"5\">And these are the names of the men that shall stand with you: of the tribe of Reuben; Elizur the son of Shedeur.</VERS>\r\n      <VERS vnumber=\"6\">Of Simeon; Shelumiel the son of Zurishaddai.</VERS>\r\n      <VERS vnumber=\"7\">Of Judah; Nahshon the son of Amminadab.</VERS>\r\n      <VERS vnumber=\"8\">Of Issachar; Nethaneel the son of Zuar.</VERS>\r\n      <VERS vnumber=\"9\">Of Zebulun; Eliab the son of Helon.</VERS>\r\n      <VERS vnumber=\"10\">Of the children of Joseph: of Ephraim; Elishama the son of Ammihud: of Manasseh; Gamaliel the son of Pedahzur.</VERS>\r\n      <VERS vnumber=\"11\">Of Benjamin; Abidan the son of Gideoni.</VERS>\r\n      <VERS vnumber=\"12\">Of Dan; Ahiezer the son of Ammishaddai.</VERS>\r\n      <VERS vnumber=\"13\">Of Asher; Pagiel the son of Ocran.</VERS>\r\n      <VERS vnumber=\"14\">Of Gad; Eliasaph the son of Deuel.</VERS>\r\n      <VERS vnumber=\"15\">Of Naphtali; Ahira the son of Enan.</VERS>\r\n      <VERS vnumber=\"16\">These were the renowned of the congregation, princes of the tribes of their fathers, heads of thousands in Israel.</VERS>\r\n      <VERS vnumber=\"17\">And Moses and Aaron took these men which are expressed by their names:</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">As the LORD commanded Moses, so he numbered them in the wilderness of Sinai.</VERS>\r\n      <VERS vnumber=\"20\">And 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;</VERS>\r\n      <VERS vnumber=\"21\">Those that were numbered of them, even of the tribe of Reuben, were forty and six thousand and five hundred.</VERS>\r\n      <VERS vnumber=\"22\">Of 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;</VERS>\r\n      <VERS vnumber=\"23\">Those that were numbered of them, even of the tribe of Simeon, were fifty and nine thousand and three hundred.</VERS>\r\n      <VERS vnumber=\"24\">Of 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;</VERS>\r\n      <VERS vnumber=\"25\">Those that were numbered of them, even of the tribe of Gad, were forty and five thousand six hundred and fifty.</VERS>\r\n      <VERS vnumber=\"26\">Of 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;</VERS>\r\n      <VERS vnumber=\"27\">Those that were numbered of them, even of the tribe of Judah, were threescore and fourteen thousand and six hundred.</VERS>\r\n      <VERS vnumber=\"28\">Of 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;</VERS>\r\n      <VERS vnumber=\"29\">Those that were numbered of them, even of the tribe of Issachar, were fifty and four thousand and four hundred.</VERS>\r\n      <VERS vnumber=\"30\">Of 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;</VERS>\r\n      <VERS vnumber=\"31\">Those that were numbered of them, even of the tribe of Zebulun, were fifty and seven thousand and four hundred.</VERS>\r\n      <VERS vnumber=\"32\">Of 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;</VERS>\r\n      <VERS vnumber=\"33\">Those that were numbered of them, even of the tribe of Ephraim, were forty thousand and five hundred.</VERS>\r\n      <VERS vnumber=\"34\">Of 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;</VERS>\r\n      <VERS vnumber=\"35\">Those that were numbered of them, even of the tribe of Manasseh, were thirty and two thousand and two hundred.</VERS>\r\n      <VERS vnumber=\"36\">Of 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;</VERS>\r\n      <VERS vnumber=\"37\">Those that were numbered of them, even of the tribe of Benjamin, were thirty and five thousand and four hundred.</VERS>\r\n      <VERS vnumber=\"38\">Of 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;</VERS>\r\n      <VERS vnumber=\"39\">Those that were numbered of them, even of the tribe of Dan, were threescore and two thousand and seven hundred.</VERS>\r\n      <VERS vnumber=\"40\">Of 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;</VERS>\r\n      <VERS vnumber=\"41\">Those that were numbered of them, even of the tribe of Asher, were forty and one thousand and five hundred.</VERS>\r\n      <VERS vnumber=\"42\">Of 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;</VERS>\r\n      <VERS vnumber=\"43\">Those that were numbered of them, even of the tribe of Naphtali, were fifty and three thousand and four hundred.</VERS>\r\n      <VERS vnumber=\"44\">These 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.</VERS>\r\n      <VERS vnumber=\"45\">So 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;</VERS>\r\n      <VERS vnumber=\"46\">Even all they that were numbered were six hundred thousand and three thousand and five hundred and fifty.</VERS>\r\n      <VERS vnumber=\"47\">But the Levites after the tribe of their fathers were not numbered among them.</VERS>\r\n      <VERS vnumber=\"48\">For the LORD had spoken unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"49\">Only thou shalt not number the tribe of Levi, neither take the sum of them among the children of Israel:</VERS>\r\n      <VERS vnumber=\"50\">But 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.</VERS>\r\n      <VERS vnumber=\"51\">And 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.</VERS>\r\n      <VERS vnumber=\"52\">And the children of Israel shall pitch their tents, every man by his own camp, and every man by his own standard, throughout their hosts.</VERS>\r\n      <VERS vnumber=\"53\">But 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.</VERS>\r\n      <VERS vnumber=\"54\">And the children of Israel did according to all that the LORD commanded Moses, so did they.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">And the LORD spake unto Moses and unto Aaron, saying,</VERS>\r\n      <VERS vnumber=\"2\">Every 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And his host, and those that were numbered of them, were threescore and fourteen thousand and six hundred.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And his host, and those that were numbered thereof, were fifty and four thousand and four hundred.</VERS>\r\n      <VERS vnumber=\"7\">Then the tribe of Zebulun: and Eliab the son of Helon shall be captain of the children of Zebulun.</VERS>\r\n      <VERS vnumber=\"8\">And his host, and those that were numbered thereof, were fifty and seven thousand and four hundred.</VERS>\r\n      <VERS vnumber=\"9\">All 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.</VERS>\r\n      <VERS vnumber=\"10\">On 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.</VERS>\r\n      <VERS vnumber=\"11\">And his host, and those that were numbered thereof, were forty and six thousand and five hundred.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And his host, and those that were numbered of them, were fifty and nine thousand and three hundred.</VERS>\r\n      <VERS vnumber=\"14\">Then the tribe of Gad: and the captain of the sons of Gad shall be Eliasaph the son of Reuel.</VERS>\r\n      <VERS vnumber=\"15\">And his host, and those that were numbered of them, were forty and five thousand and six hundred and fifty.</VERS>\r\n      <VERS vnumber=\"16\">All 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.</VERS>\r\n      <VERS vnumber=\"17\">Then 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.</VERS>\r\n      <VERS vnumber=\"18\">On 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.</VERS>\r\n      <VERS vnumber=\"19\">And his host, and those that were numbered of them, were forty thousand and five hundred.</VERS>\r\n      <VERS vnumber=\"20\">And by him shall be the tribe of Manasseh: and the captain of the children of Manasseh shall be Gamaliel the son of Pedahzur.</VERS>\r\n      <VERS vnumber=\"21\">And his host, and those that were numbered of them, were thirty and two thousand and two hundred.</VERS>\r\n      <VERS vnumber=\"22\">Then the tribe of Benjamin: and the captain of the sons of Benjamin shall be Abidan the son of Gideoni.</VERS>\r\n      <VERS vnumber=\"23\">And his host, and those that were numbered of them, were thirty and five thousand and four hundred.</VERS>\r\n      <VERS vnumber=\"24\">All 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.</VERS>\r\n      <VERS vnumber=\"25\">The 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.</VERS>\r\n      <VERS vnumber=\"26\">And his host, and those that were numbered of them, were threescore and two thousand and seven hundred.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And his host, and those that were numbered of them, were forty and one thousand and five hundred.</VERS>\r\n      <VERS vnumber=\"29\">Then the tribe of Naphtali: and the captain of the children of Naphtali shall be Ahira the son of Enan.</VERS>\r\n      <VERS vnumber=\"30\">And his host, and those that were numbered of them, were fifty and three thousand and four hundred.</VERS>\r\n      <VERS vnumber=\"31\">All 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.</VERS>\r\n      <VERS vnumber=\"32\">These 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.</VERS>\r\n      <VERS vnumber=\"33\">But the Levites were not numbered among the children of Israel; as the LORD commanded Moses.</VERS>\r\n      <VERS vnumber=\"34\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">These also are the generations of Aaron and Moses in the day that the LORD spake with Moses in mount Sinai.</VERS>\r\n      <VERS vnumber=\"2\">And these are the names of the sons of Aaron; Nadab the firstborn, and Abihu, Eleazar, and Ithamar.</VERS>\r\n      <VERS vnumber=\"3\">These are the names of the sons of Aaron, the priests which were anointed, whom he consecrated to minister in the priest's office.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"6\">Bring the tribe of Levi near, and present them before Aaron the priest, that they may minister unto him.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And thou shalt give the Levites unto Aaron and to his sons: they are wholly given unto him out of the children of Israel.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"12\">And 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;</VERS>\r\n      <VERS vnumber=\"13\">Because 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.</VERS>\r\n      <VERS vnumber=\"14\">And the LORD spake unto Moses in the wilderness of Sinai, saying,</VERS>\r\n      <VERS vnumber=\"15\">Number 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.</VERS>\r\n      <VERS vnumber=\"16\">And Moses numbered them according to the word of the LORD, as he was commanded.</VERS>\r\n      <VERS vnumber=\"17\">And these were the sons of Levi by their names; Gershon, and Kohath, and Merari.</VERS>\r\n      <VERS vnumber=\"18\">And these are the names of the sons of Gershon by their families; Libni, and Shimei.</VERS>\r\n      <VERS vnumber=\"19\">And the sons of Kohath by their families; Amram, and Izehar, Hebron, and Uzziel.</VERS>\r\n      <VERS vnumber=\"20\">And the sons of Merari by their families; Mahli, and Mushi. These are the families of the Levites according to the house of their fathers.</VERS>\r\n      <VERS vnumber=\"21\">Of Gershon was the family of the Libnites, and the family of the Shimites: these are the families of the Gershonites.</VERS>\r\n      <VERS vnumber=\"22\">Those 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.</VERS>\r\n      <VERS vnumber=\"23\">The families of the Gershonites shall pitch behind the tabernacle westward.</VERS>\r\n      <VERS vnumber=\"24\">And the chief of the house of the father of the Gershonites shall be Eliasaph the son of Lael.</VERS>\r\n      <VERS vnumber=\"25\">And 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,</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">In the number of all the males, from a month old and upward, were eight thousand and six hundred, keeping the charge of the sanctuary.</VERS>\r\n      <VERS vnumber=\"29\">The families of the sons of Kohath shall pitch on the side of the tabernacle southward.</VERS>\r\n      <VERS vnumber=\"30\">And the chief of the house of the father of the families of the Kohathites shall be Elizaphan the son of Uzziel.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">Of Merari was the family of the Mahlites, and the family of the Mushites: these are the families of Merari.</VERS>\r\n      <VERS vnumber=\"34\">And 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.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">And 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,</VERS>\r\n      <VERS vnumber=\"37\">And the pillars of the court round about, and their sockets, and their pins, and their cords.</VERS>\r\n      <VERS vnumber=\"38\">But 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.</VERS>\r\n      <VERS vnumber=\"39\">All 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.</VERS>\r\n      <VERS vnumber=\"40\">And 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.</VERS>\r\n      <VERS vnumber=\"41\">And 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.</VERS>\r\n      <VERS vnumber=\"42\">And Moses numbered, as the LORD commanded him, all the firstborn among the children of Israel.</VERS>\r\n      <VERS vnumber=\"43\">And 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.</VERS>\r\n      <VERS vnumber=\"44\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"45\">Take 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.</VERS>\r\n      <VERS vnumber=\"46\">And 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;</VERS>\r\n      <VERS vnumber=\"47\">Thou shalt even take five shekels apiece by the poll, after the shekel of the sanctuary shalt thou take them: (the shekel is twenty gerahs:)</VERS>\r\n      <VERS vnumber=\"48\">And thou shalt give the money, wherewith the odd number of them is to be redeemed, unto Aaron and to his sons.</VERS>\r\n      <VERS vnumber=\"49\">And Moses took the redemption money of them that were over and above them that were redeemed by the Levites:</VERS>\r\n      <VERS vnumber=\"50\">Of 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:</VERS>\r\n      <VERS vnumber=\"51\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">And the LORD spake unto Moses and unto Aaron, saying,</VERS>\r\n      <VERS vnumber=\"2\">Take the sum of the sons of Kohath from among the sons of Levi, after their families, by the house of their fathers,</VERS>\r\n      <VERS vnumber=\"3\">From 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.</VERS>\r\n      <VERS vnumber=\"4\">This shall be the service of the sons of Kohath in the tabernacle of the congregation, about the most holy things:</VERS>\r\n      <VERS vnumber=\"5\">And 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:</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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:</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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:</VERS>\r\n      <VERS vnumber=\"10\">And they shall put it and all the vessels thereof within a covering of badgers' skins, and shall put it upon a bar.</VERS>\r\n      <VERS vnumber=\"11\">And 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:</VERS>\r\n      <VERS vnumber=\"12\">And 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:</VERS>\r\n      <VERS vnumber=\"13\">And they shall take away the ashes from the altar, and spread a purple cloth thereon:</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And the LORD spake unto Moses and unto Aaron, saying,</VERS>\r\n      <VERS vnumber=\"18\">Cut ye not off the tribe of the families of the Kohathites from among the Levites:</VERS>\r\n      <VERS vnumber=\"19\">But 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:</VERS>\r\n      <VERS vnumber=\"20\">But they shall not go in to see when the holy things are covered, lest they die.</VERS>\r\n      <VERS vnumber=\"21\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"22\">Take also the sum of the sons of Gershon, throughout the houses of their fathers, by their families;</VERS>\r\n      <VERS vnumber=\"23\">From 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.</VERS>\r\n      <VERS vnumber=\"24\">This is the service of the families of the Gershonites, to serve, and for burdens:</VERS>\r\n      <VERS vnumber=\"25\">And 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,</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">At 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.</VERS>\r\n      <VERS vnumber=\"28\">This 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.</VERS>\r\n      <VERS vnumber=\"29\">As for the sons of Merari, thou shalt number them after their families, by the house of their fathers;</VERS>\r\n      <VERS vnumber=\"30\">From 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.</VERS>\r\n      <VERS vnumber=\"31\">And 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,</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">This 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.</VERS>\r\n      <VERS vnumber=\"34\">And 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,</VERS>\r\n      <VERS vnumber=\"35\">From 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:</VERS>\r\n      <VERS vnumber=\"36\">And those that were numbered of them by their families were two thousand seven hundred and fifty.</VERS>\r\n      <VERS vnumber=\"37\">These 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.</VERS>\r\n      <VERS vnumber=\"38\">And those that were numbered of the sons of Gershon, throughout their families, and by the house of their fathers,</VERS>\r\n      <VERS vnumber=\"39\">From 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,</VERS>\r\n      <VERS vnumber=\"40\">Even those that were numbered of them, throughout their families, by the house of their fathers, were two thousand and six hundred and thirty.</VERS>\r\n      <VERS vnumber=\"41\">These 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.</VERS>\r\n      <VERS vnumber=\"42\">And those that were numbered of the families of the sons of Merari, throughout their families, by the house of their fathers,</VERS>\r\n      <VERS vnumber=\"43\">From 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,</VERS>\r\n      <VERS vnumber=\"44\">Even those that were numbered of them after their families, were three thousand and two hundred.</VERS>\r\n      <VERS vnumber=\"45\">These 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.</VERS>\r\n      <VERS vnumber=\"46\">All 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,</VERS>\r\n      <VERS vnumber=\"47\">From 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,</VERS>\r\n      <VERS vnumber=\"48\">Even those that were numbered of them, were eight thousand and five hundred and fourscore.</VERS>\r\n      <VERS vnumber=\"49\">According 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">Command 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:</VERS>\r\n      <VERS vnumber=\"3\">Both 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"6\">Speak 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;</VERS>\r\n      <VERS vnumber=\"7\">Then 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.</VERS>\r\n      <VERS vnumber=\"8\">But 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.</VERS>\r\n      <VERS vnumber=\"9\">And every offering of all the holy things of the children of Israel, which they bring unto the priest, shall be his.</VERS>\r\n      <VERS vnumber=\"10\">And every man's hallowed things shall be his: whatsoever any man giveth the priest, it shall be his.</VERS>\r\n      <VERS vnumber=\"11\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"12\">Speak unto the children of Israel, and say unto them, If any man's wife go aside, and commit a trespass against him,</VERS>\r\n      <VERS vnumber=\"13\">And 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;</VERS>\r\n      <VERS vnumber=\"14\">And 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:</VERS>\r\n      <VERS vnumber=\"15\">Then 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.</VERS>\r\n      <VERS vnumber=\"16\">And the priest shall bring her near, and set her before the LORD:</VERS>\r\n      <VERS vnumber=\"17\">And 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:</VERS>\r\n      <VERS vnumber=\"18\">And 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:</VERS>\r\n      <VERS vnumber=\"19\">And 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:</VERS>\r\n      <VERS vnumber=\"20\">But 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:</VERS>\r\n      <VERS vnumber=\"21\">Then 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;</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And the priest shall write these curses in a book, and he shall blot them out with the bitter water:</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">Then 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:</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And if the woman be not defiled, but be clean; then she shall be free, and shall conceive seed.</VERS>\r\n      <VERS vnumber=\"29\">This is the law of jealousies, when a wife goeth aside to another instead of her husband, and is defiled;</VERS>\r\n      <VERS vnumber=\"30\">Or 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.</VERS>\r\n      <VERS vnumber=\"31\">Then shall the man be guiltless from iniquity, and this woman shall bear her iniquity.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">Speak 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:</VERS>\r\n      <VERS vnumber=\"3\">He 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.</VERS>\r\n      <VERS vnumber=\"4\">All the days of his separation shall he eat nothing that is made of the vine tree, from the kernels even to the husk.</VERS>\r\n      <VERS vnumber=\"5\">All 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.</VERS>\r\n      <VERS vnumber=\"6\">All the days that he separateth himself unto the LORD he shall come at no dead body.</VERS>\r\n      <VERS vnumber=\"7\">He 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.</VERS>\r\n      <VERS vnumber=\"8\">All the days of his separation he is holy unto the LORD.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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:</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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:</VERS>\r\n      <VERS vnumber=\"14\">And 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,</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And the priest shall bring them before the LORD, and shall offer his sin offering, and his burnt offering:</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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:</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">This 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.</VERS>\r\n      <VERS vnumber=\"22\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"23\">Speak unto Aaron and unto his sons, saying, On this wise ye shall bless the children of Israel, saying unto them,</VERS>\r\n      <VERS vnumber=\"24\">The LORD bless thee, and keep thee:</VERS>\r\n      <VERS vnumber=\"25\">The LORD make his face shine upon thee, and be gracious unto thee:</VERS>\r\n      <VERS vnumber=\"26\">The LORD lift up his countenance upon thee, and give thee peace.</VERS>\r\n      <VERS vnumber=\"27\">And they shall put my name upon the children of Israel; and I will bless them.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">And 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;</VERS>\r\n      <VERS vnumber=\"2\">That 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:</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"5\">Take 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.</VERS>\r\n      <VERS vnumber=\"6\">And Moses took the wagons and the oxen, and gave them unto the Levites.</VERS>\r\n      <VERS vnumber=\"7\">Two wagons and four oxen he gave unto the sons of Gershon, according to their service:</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">But 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.</VERS>\r\n      <VERS vnumber=\"10\">And the princes offered for dedicating of the altar in the day that it was anointed, even the princes offered their offering before the altar.</VERS>\r\n      <VERS vnumber=\"11\">And the LORD said unto Moses, They shall offer their offering, each prince on his day, for the dedicating of the altar.</VERS>\r\n      <VERS vnumber=\"12\">And he that offered his offering the first day was Nahshon the son of Amminadab, of the tribe of Judah:</VERS>\r\n      <VERS vnumber=\"13\">And 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:</VERS>\r\n      <VERS vnumber=\"14\">One spoon of ten shekels of gold, full of incense:</VERS>\r\n      <VERS vnumber=\"15\">One young bullock, one ram, one lamb of the first year, for a burnt offering:</VERS>\r\n      <VERS vnumber=\"16\">One kid of the goats for a sin offering:</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">On the second day Nethaneel the son of Zuar, prince of Issachar, did offer:</VERS>\r\n      <VERS vnumber=\"19\">He 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:</VERS>\r\n      <VERS vnumber=\"20\">One spoon of gold of ten shekels, full of incense:</VERS>\r\n      <VERS vnumber=\"21\">One young bullock, one ram, one lamb of the first year, for a burnt offering:</VERS>\r\n      <VERS vnumber=\"22\">One kid of the goats for a sin offering:</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">On the third day Eliab the son of Helon, prince of the children of Zebulun, did offer:</VERS>\r\n      <VERS vnumber=\"25\">His 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:</VERS>\r\n      <VERS vnumber=\"26\">One golden spoon of ten shekels, full of incense:</VERS>\r\n      <VERS vnumber=\"27\">One young bullock, one ram, one lamb of the first year, for a burnt offering:</VERS>\r\n      <VERS vnumber=\"28\">One kid of the goats for a sin offering:</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">On the fourth day Elizur the son of Shedeur, prince of the children of Reuben, did offer:</VERS>\r\n      <VERS vnumber=\"31\">His 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:</VERS>\r\n      <VERS vnumber=\"32\">One golden spoon of ten shekels, full of incense:</VERS>\r\n      <VERS vnumber=\"33\">One young bullock, one ram, one lamb of the first year, for a burnt offering:</VERS>\r\n      <VERS vnumber=\"34\">One kid of the goats for a sin offering:</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">On the fifth day Shelumiel the son of Zurishaddai, prince of the children of Simeon, did offer:</VERS>\r\n      <VERS vnumber=\"37\">His 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:</VERS>\r\n      <VERS vnumber=\"38\">One golden spoon of ten shekels, full of incense:</VERS>\r\n      <VERS vnumber=\"39\">One young bullock, one ram, one lamb of the first year, for a burnt offering:</VERS>\r\n      <VERS vnumber=\"40\">One kid of the goats for a sin offering:</VERS>\r\n      <VERS vnumber=\"41\">And 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.</VERS>\r\n      <VERS vnumber=\"42\">On the sixth day Eliasaph the son of Deuel, prince of the children of Gad, offered:</VERS>\r\n      <VERS vnumber=\"43\">His 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:</VERS>\r\n      <VERS vnumber=\"44\">One golden spoon of ten shekels, full of incense:</VERS>\r\n      <VERS vnumber=\"45\">One young bullock, one ram, one lamb of the first year, for a burnt offering:</VERS>\r\n      <VERS vnumber=\"46\">One kid of the goats for a sin offering:</VERS>\r\n      <VERS vnumber=\"47\">And 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.</VERS>\r\n      <VERS vnumber=\"48\">On the seventh day Elishama the son of Ammihud, prince of the children of Ephraim, offered:</VERS>\r\n      <VERS vnumber=\"49\">His 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:</VERS>\r\n      <VERS vnumber=\"50\">One golden spoon of ten shekels, full of incense:</VERS>\r\n      <VERS vnumber=\"51\">One young bullock, one ram, one lamb of the first year, for a burnt offering:</VERS>\r\n      <VERS vnumber=\"52\">One kid of the goats for a sin offering:</VERS>\r\n      <VERS vnumber=\"53\">And 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.</VERS>\r\n      <VERS vnumber=\"54\">On the eighth day offered Gamaliel the son of Pedahzur, prince of the children of Manasseh:</VERS>\r\n      <VERS vnumber=\"55\">His 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:</VERS>\r\n      <VERS vnumber=\"56\">One golden spoon of ten shekels, full of incense:</VERS>\r\n      <VERS vnumber=\"57\">One young bullock, one ram, one lamb of the first year, for a burnt offering:</VERS>\r\n      <VERS vnumber=\"58\">One kid of the goats for a sin offering:</VERS>\r\n      <VERS vnumber=\"59\">And 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.</VERS>\r\n      <VERS vnumber=\"60\">On the ninth day Abidan the son of Gideoni, prince of the children of Benjamin, offered:</VERS>\r\n      <VERS vnumber=\"61\">His 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:</VERS>\r\n      <VERS vnumber=\"62\">One golden spoon of ten shekels, full of incense:</VERS>\r\n      <VERS vnumber=\"63\">One young bullock, one ram, one lamb of the first year, for a burnt offering:</VERS>\r\n      <VERS vnumber=\"64\">One kid of the goats for a sin offering:</VERS>\r\n      <VERS vnumber=\"65\">And 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.</VERS>\r\n      <VERS vnumber=\"66\">On the tenth day Ahiezer the son of Ammishaddai, prince of the children of Dan, offered:</VERS>\r\n      <VERS vnumber=\"67\">His 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:</VERS>\r\n      <VERS vnumber=\"68\">One golden spoon of ten shekels, full of incense:</VERS>\r\n      <VERS vnumber=\"69\">One young bullock, one ram, one lamb of the first year, for a burnt offering:</VERS>\r\n      <VERS vnumber=\"70\">One kid of the goats for a sin offering:</VERS>\r\n      <VERS vnumber=\"71\">And 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.</VERS>\r\n      <VERS vnumber=\"72\">On the eleventh day Pagiel the son of Ocran, prince of the children of Asher, offered:</VERS>\r\n      <VERS vnumber=\"73\">His 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:</VERS>\r\n      <VERS vnumber=\"74\">One golden spoon of ten shekels, full of incense:</VERS>\r\n      <VERS vnumber=\"75\">One young bullock, one ram, one lamb of the first year, for a burnt offering:</VERS>\r\n      <VERS vnumber=\"76\">One kid of the goats for a sin offering:</VERS>\r\n      <VERS vnumber=\"77\">And 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.</VERS>\r\n      <VERS vnumber=\"78\">On the twelfth day Ahira the son of Enan, prince of the children of Naphtali, offered:</VERS>\r\n      <VERS vnumber=\"79\">His 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:</VERS>\r\n      <VERS vnumber=\"80\">One golden spoon of ten shekels, full of incense:</VERS>\r\n      <VERS vnumber=\"81\">One young bullock, one ram, one lamb of the first year, for a burnt offering:</VERS>\r\n      <VERS vnumber=\"82\">One kid of the goats for a sin offering:</VERS>\r\n      <VERS vnumber=\"83\">And 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.</VERS>\r\n      <VERS vnumber=\"84\">This 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:</VERS>\r\n      <VERS vnumber=\"85\">Each 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:</VERS>\r\n      <VERS vnumber=\"86\">The 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.</VERS>\r\n      <VERS vnumber=\"87\">All 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.</VERS>\r\n      <VERS vnumber=\"88\">And 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.</VERS>\r\n      <VERS vnumber=\"89\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">Speak unto Aaron, and say unto him, When thou lightest the lamps, the seven lamps shall give light over against the candlestick.</VERS>\r\n      <VERS vnumber=\"3\">And Aaron did so; he lighted the lamps thereof over against the candlestick, as the LORD commanded Moses.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"6\">Take the Levites from among the children of Israel, and cleanse them.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">Then 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.</VERS>\r\n      <VERS vnumber=\"9\">And thou shalt bring the Levites before the tabernacle of the congregation: and thou shalt gather the whole assembly of the children of Israel together:</VERS>\r\n      <VERS vnumber=\"10\">And thou shalt bring the Levites before the LORD: and the children of Israel shall put their hands upon the Levites:</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And thou shalt set the Levites before Aaron, and before his sons, and offer them for an offering unto the LORD.</VERS>\r\n      <VERS vnumber=\"14\">Thus shalt thou separate the Levites from among the children of Israel: and the Levites shall be mine.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">For 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.</VERS>\r\n      <VERS vnumber=\"17\">For 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.</VERS>\r\n      <VERS vnumber=\"18\">And I have taken the Levites for all the firstborn of the children of Israel.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"24\">This 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:</VERS>\r\n      <VERS vnumber=\"25\">And from the age of fifty years they shall cease waiting upon the service thereof, and shall serve no more:</VERS>\r\n      <VERS vnumber=\"26\">But 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">And 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,</VERS>\r\n      <VERS vnumber=\"2\">Let the children of Israel also keep the passover at his appointed season.</VERS>\r\n      <VERS vnumber=\"3\">In 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.</VERS>\r\n      <VERS vnumber=\"4\">And Moses spake unto the children of Israel, that they should keep the passover.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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:</VERS>\r\n      <VERS vnumber=\"7\">And 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?</VERS>\r\n      <VERS vnumber=\"8\">And Moses said unto them, Stand still, and I will hear what the LORD will command concerning you.</VERS>\r\n      <VERS vnumber=\"9\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"10\">Speak 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.</VERS>\r\n      <VERS vnumber=\"11\">The fourteenth day of the second month at even they shall keep it, and eat it with unleavened bread and bitter herbs.</VERS>\r\n      <VERS vnumber=\"12\">They 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.</VERS>\r\n      <VERS vnumber=\"13\">But 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">So it was alway: the cloud covered it by day, and the appearance of fire by night.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">At 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.</VERS>\r\n      <VERS vnumber=\"19\">And when the cloud tarried long upon the tabernacle many days, then the children of Israel kept the charge of the LORD, and journeyed not.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">Or 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.</VERS>\r\n      <VERS vnumber=\"23\">At 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">Make 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.</VERS>\r\n      <VERS vnumber=\"3\">And when they shall blow with them, all the assembly shall assemble themselves to thee at the door of the tabernacle of the congregation.</VERS>\r\n      <VERS vnumber=\"4\">And if they blow but with one trumpet, then the princes, which are heads of the thousands of Israel, shall gather themselves unto thee.</VERS>\r\n      <VERS vnumber=\"5\">When ye blow an alarm, then the camps that lie on the east parts shall go forward.</VERS>\r\n      <VERS vnumber=\"6\">When 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.</VERS>\r\n      <VERS vnumber=\"7\">But when the congregation is to be gathered together, ye shall blow, but ye shall not sound an alarm.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">Also 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And the children of Israel took their journeys out of the wilderness of Sinai; and the cloud rested in the wilderness of Paran.</VERS>\r\n      <VERS vnumber=\"13\">And they first took their journey according to the commandment of the LORD by the hand of Moses.</VERS>\r\n      <VERS vnumber=\"14\">In 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.</VERS>\r\n      <VERS vnumber=\"15\">And over the host of the tribe of the children of Issachar was Nethaneel the son of Zuar.</VERS>\r\n      <VERS vnumber=\"16\">And over the host of the tribe of the children of Zebulun was Eliab the son of Helon.</VERS>\r\n      <VERS vnumber=\"17\">And the tabernacle was taken down; and the sons of Gershon and the sons of Merari set forward, bearing the tabernacle.</VERS>\r\n      <VERS vnumber=\"18\">And the standard of the camp of Reuben set forward according to their armies: and over his host was Elizur the son of Shedeur.</VERS>\r\n      <VERS vnumber=\"19\">And over the host of the tribe of the children of Simeon was Shelumiel the son of Zurishaddai.</VERS>\r\n      <VERS vnumber=\"20\">And over the host of the tribe of the children of Gad was Eliasaph the son of Deuel.</VERS>\r\n      <VERS vnumber=\"21\">And the Kohathites set forward, bearing the sanctuary: and the other did set up the tabernacle against they came.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And over the host of the tribe of the children of Manasseh was Gamaliel the son of Pedahzur.</VERS>\r\n      <VERS vnumber=\"24\">And over the host of the tribe of the children of Benjamin was Abidan the son of Gideoni.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And over the host of the tribe of the children of Asher was Pagiel the son of Ocran.</VERS>\r\n      <VERS vnumber=\"27\">And over the host of the tribe of the children of Naphtali was Ahira the son of Enan.</VERS>\r\n      <VERS vnumber=\"28\">Thus were the journeyings of the children of Israel according to their armies, when they set forward.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">And he said unto him, I will not go; but I will depart to mine own land, and to my kindred.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">And the cloud of the LORD was upon them by day, when they went out of the camp.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">And when it rested, he said, Return, O LORD, unto the many thousands of Israel.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And the people cried unto Moses; and when Moses prayed unto the LORD, the fire was quenched.</VERS>\r\n      <VERS vnumber=\"3\">And he called the name of the place Taberah: because the fire of the LORD burnt among them.</VERS>\r\n      <VERS vnumber=\"4\">And 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?</VERS>\r\n      <VERS vnumber=\"5\">We remember the fish, which we did eat in Egypt freely; the cucumbers, and the melons, and the leeks, and the onions, and the garlick:</VERS>\r\n      <VERS vnumber=\"6\">But now our soul is dried away: there is nothing at all, beside this manna, before our eyes.</VERS>\r\n      <VERS vnumber=\"7\">And the manna was as coriander seed, and the colour thereof as the colour of bdellium.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And when the dew fell upon the camp in the night, the manna fell upon it.</VERS>\r\n      <VERS vnumber=\"10\">Then 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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?</VERS>\r\n      <VERS vnumber=\"12\">Have 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?</VERS>\r\n      <VERS vnumber=\"13\">Whence should I have flesh to give unto all this people? for they weep unto me, saying, Give us flesh, that we may eat.</VERS>\r\n      <VERS vnumber=\"14\">I am not able to bear all this people alone, because it is too heavy for me.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">Ye shall not eat one day, nor two days, nor five days, neither ten days, nor twenty days;</VERS>\r\n      <VERS vnumber=\"20\">But 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?</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">Shall 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?</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">But 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.</VERS>\r\n      <VERS vnumber=\"27\">And there ran a young man, and told Moses, and said, Eldad and Medad do prophesy in the camp.</VERS>\r\n      <VERS vnumber=\"28\">And Joshua the son of Nun, the servant of Moses, one of his young men, answered and said, My lord Moses, forbid them.</VERS>\r\n      <VERS vnumber=\"29\">And 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!</VERS>\r\n      <VERS vnumber=\"30\">And Moses gat him into the camp, he and the elders of Israel.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">And he called the name of that place Kibrothhattaavah: because there they buried the people that lusted.</VERS>\r\n      <VERS vnumber=\"35\">And the people journeyed from Kibrothhattaavah unto Hazeroth; and abode at Hazeroth.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">And Miriam and Aaron spake against Moses because of the Ethiopian woman whom he had married: for he had married an Ethiopian woman.</VERS>\r\n      <VERS vnumber=\"2\">And they said, Hath the LORD indeed spoken only by Moses? hath he not spoken also by us? And the LORD heard it.</VERS>\r\n      <VERS vnumber=\"3\">(Now the man Moses was very meek, above all the men which were upon the face of the earth.)</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">My servant Moses is not so, who is faithful in all mine house.</VERS>\r\n      <VERS vnumber=\"8\">With 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?</VERS>\r\n      <VERS vnumber=\"9\">And the anger of the LORD was kindled against them; and he departed.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">Let her not be as one dead, of whom the flesh is half consumed when he cometh out of his mother's womb.</VERS>\r\n      <VERS vnumber=\"13\">And Moses cried unto the LORD, saying, Heal her now, O God, I beseech thee.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And Miriam was shut out from the camp seven days: and the people journeyed not till Miriam was brought in again.</VERS>\r\n      <VERS vnumber=\"16\">And afterward the people removed from Hazeroth, and pitched in the wilderness of Paran.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">Send 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.</VERS>\r\n      <VERS vnumber=\"3\">And Moses by the commandment of the LORD sent them from the wilderness of Paran: all those men were heads of the children of Israel.</VERS>\r\n      <VERS vnumber=\"4\">And these were their names: of the tribe of Reuben, Shammua the son of Zaccur.</VERS>\r\n      <VERS vnumber=\"5\">Of the tribe of Simeon, Shaphat the son of Hori.</VERS>\r\n      <VERS vnumber=\"6\">Of the tribe of Judah, Caleb the son of Jephunneh.</VERS>\r\n      <VERS vnumber=\"7\">Of the tribe of Issachar, Igal the son of Joseph.</VERS>\r\n      <VERS vnumber=\"8\">Of the tribe of Ephraim, Oshea the son of Nun.</VERS>\r\n      <VERS vnumber=\"9\">Of the tribe of Benjamin, Palti the son of Raphu.</VERS>\r\n      <VERS vnumber=\"10\">Of the tribe of Zebulun, Gaddiel the son of Sodi.</VERS>\r\n      <VERS vnumber=\"11\">Of the tribe of Joseph, namely, of the tribe of Manasseh, Gaddi the son of Susi.</VERS>\r\n      <VERS vnumber=\"12\">Of the tribe of Dan, Ammiel the son of Gemalli.</VERS>\r\n      <VERS vnumber=\"13\">Of the tribe of Asher, Sethur the son of Michael.</VERS>\r\n      <VERS vnumber=\"14\">Of the tribe of Naphtali, Nahbi the son of Vophsi.</VERS>\r\n      <VERS vnumber=\"15\">Of the tribe of Gad, Geuel the son of Machi.</VERS>\r\n      <VERS vnumber=\"16\">These are the names of the men which Moses sent to spy out the land. And Moses called Oshea the son of Nun Jehoshua.</VERS>\r\n      <VERS vnumber=\"17\">And 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:</VERS>\r\n      <VERS vnumber=\"18\">And see the land, what it is; and the people that dwelleth therein, whether they be strong or weak, few or many;</VERS>\r\n      <VERS vnumber=\"19\">And 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;</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">So they went up, and searched the land from the wilderness of Zin unto Rehob, as men come to Hamath.</VERS>\r\n      <VERS vnumber=\"22\">And 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.)</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">The place was called the brook Eshcol, because of the cluster of grapes which the children of Israel cut down from thence.</VERS>\r\n      <VERS vnumber=\"25\">And they returned from searching of the land after forty days.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">Nevertheless 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.</VERS>\r\n      <VERS vnumber=\"29\">The 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.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">But the men that went up with him said, We be not able to go up against the people; for they are stronger than we.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">And all the congregation lifted up their voice, and cried; and the people wept that night.</VERS>\r\n      <VERS vnumber=\"2\">And 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!</VERS>\r\n      <VERS vnumber=\"3\">And 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?</VERS>\r\n      <VERS vnumber=\"4\">And they said one to another, Let us make a captain, and let us return into Egypt.</VERS>\r\n      <VERS vnumber=\"5\">Then Moses and Aaron fell on their faces before all the assembly of the congregation of the children of Israel.</VERS>\r\n      <VERS vnumber=\"6\">And Joshua the son of Nun, and Caleb the son of Jephunneh, which were of them that searched the land, rent their clothes:</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">If 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.</VERS>\r\n      <VERS vnumber=\"9\">Only 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.</VERS>\r\n      <VERS vnumber=\"10\">But 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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?</VERS>\r\n      <VERS vnumber=\"12\">I will smite them with the pestilence, and disinherit them, and will make of thee a greater nation and mightier than they.</VERS>\r\n      <VERS vnumber=\"13\">And Moses said unto the LORD, Then the Egyptians shall hear it, (for thou broughtest up this people in thy might from among them;)</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">Now if thou shalt kill all this people as one man, then the nations which have heard the fame of thee will speak, saying,</VERS>\r\n      <VERS vnumber=\"16\">Because 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.</VERS>\r\n      <VERS vnumber=\"17\">And now, I beseech thee, let the power of my Lord be great, according as thou hast spoken, saying,</VERS>\r\n      <VERS vnumber=\"18\">The 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.</VERS>\r\n      <VERS vnumber=\"19\">Pardon, 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.</VERS>\r\n      <VERS vnumber=\"20\">And the LORD said, I have pardoned according to thy word:</VERS>\r\n      <VERS vnumber=\"21\">But as truly as I live, all the earth shall be filled with the glory of the LORD.</VERS>\r\n      <VERS vnumber=\"22\">Because 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;</VERS>\r\n      <VERS vnumber=\"23\">Surely they shall not see the land which I sware unto their fathers, neither shall any of them that provoked me see it:</VERS>\r\n      <VERS vnumber=\"24\">But 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.</VERS>\r\n      <VERS vnumber=\"25\">(Now the Amalekites and the Canaanites dwelt in the valley.) To morrow turn you, and get you into the wilderness by the way of the Red sea.</VERS>\r\n      <VERS vnumber=\"26\">And the LORD spake unto Moses and unto Aaron, saying,</VERS>\r\n      <VERS vnumber=\"27\">How 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.</VERS>\r\n      <VERS vnumber=\"28\">Say unto them, As truly as I live, saith the LORD, as ye have spoken in mine ears, so will I do to you:</VERS>\r\n      <VERS vnumber=\"29\">Your 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,</VERS>\r\n      <VERS vnumber=\"30\">Doubtless 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.</VERS>\r\n      <VERS vnumber=\"31\">But 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.</VERS>\r\n      <VERS vnumber=\"32\">But as for you, your carcases, they shall fall in this wilderness.</VERS>\r\n      <VERS vnumber=\"33\">And your children shall wander in the wilderness forty years, and bear your whoredoms, until your carcases be wasted in the wilderness.</VERS>\r\n      <VERS vnumber=\"34\">After 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.</VERS>\r\n      <VERS vnumber=\"35\">I 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.</VERS>\r\n      <VERS vnumber=\"36\">And 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,</VERS>\r\n      <VERS vnumber=\"37\">Even those men that did bring up the evil report upon the land, died by the plague before the LORD.</VERS>\r\n      <VERS vnumber=\"38\">But Joshua the son of Nun, and Caleb the son of Jephunneh, which were of the men that went to search the land, lived still.</VERS>\r\n      <VERS vnumber=\"39\">And Moses told these sayings unto all the children of Israel: and the people mourned greatly.</VERS>\r\n      <VERS vnumber=\"40\">And 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.</VERS>\r\n      <VERS vnumber=\"41\">And Moses said, Wherefore now do ye transgress the commandment of the LORD? but it shall not prosper.</VERS>\r\n      <VERS vnumber=\"42\">Go not up, for the LORD is not among you; that ye be not smitten before your enemies.</VERS>\r\n      <VERS vnumber=\"43\">For 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.</VERS>\r\n      <VERS vnumber=\"44\">But 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.</VERS>\r\n      <VERS vnumber=\"45\">Then the Amalekites came down, and the Canaanites which dwelt in that hill, and smote them, and discomfited them, even unto Hormah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">Speak unto the children of Israel, and say unto them, When ye be come into the land of your habitations, which I give unto you,</VERS>\r\n      <VERS vnumber=\"3\">And 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:</VERS>\r\n      <VERS vnumber=\"4\">Then 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.</VERS>\r\n      <VERS vnumber=\"5\">And the fourth part of an hin of wine for a drink offering shalt thou prepare with the burnt offering or sacrifice, for one lamb.</VERS>\r\n      <VERS vnumber=\"6\">Or 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.</VERS>\r\n      <VERS vnumber=\"7\">And for a drink offering thou shalt offer the third part of an hin of wine, for a sweet savour unto the LORD.</VERS>\r\n      <VERS vnumber=\"8\">And when thou preparest a bullock for a burnt offering, or for a sacrifice in performing a vow, or peace offerings unto the LORD:</VERS>\r\n      <VERS vnumber=\"9\">Then shall he bring with a bullock a meat offering of three tenth deals of flour mingled with half an hin of oil.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">Thus shall it be done for one bullock, or for one ram, or for a lamb, or a kid.</VERS>\r\n      <VERS vnumber=\"12\">According to the number that ye shall prepare, so shall ye do to every one according to their number.</VERS>\r\n      <VERS vnumber=\"13\">All 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">One 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.</VERS>\r\n      <VERS vnumber=\"16\">One law and one manner shall be for you, and for the stranger that sojourneth with you.</VERS>\r\n      <VERS vnumber=\"17\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"18\">Speak unto the children of Israel, and say unto them, When ye come into the land whither I bring you,</VERS>\r\n      <VERS vnumber=\"19\">Then it shall be, that, when ye eat of the bread of the land, ye shall offer up an heave offering unto the LORD.</VERS>\r\n      <VERS vnumber=\"20\">Ye 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.</VERS>\r\n      <VERS vnumber=\"21\">Of the first of your dough ye shall give unto the LORD an heave offering in your generations.</VERS>\r\n      <VERS vnumber=\"22\">And if ye have erred, and not observed all these commandments, which the LORD hath spoken unto Moses,</VERS>\r\n      <VERS vnumber=\"23\">Even 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;</VERS>\r\n      <VERS vnumber=\"24\">Then 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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:</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And if any soul sin through ignorance, then he shall bring a she goat of the first year for a sin offering.</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">Ye 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.</VERS>\r\n      <VERS vnumber=\"30\">But 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.</VERS>\r\n      <VERS vnumber=\"31\">Because 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.</VERS>\r\n      <VERS vnumber=\"32\">And while the children of Israel were in the wilderness, they found a man that gathered sticks upon the sabbath day.</VERS>\r\n      <VERS vnumber=\"33\">And they that found him gathering sticks brought him unto Moses and Aaron, and unto all the congregation.</VERS>\r\n      <VERS vnumber=\"34\">And they put him in ward, because it was not declared what should be done to him.</VERS>\r\n      <VERS vnumber=\"35\">And the LORD said unto Moses, The man shall be surely put to death: all the congregation shall stone him with stones without the camp.</VERS>\r\n      <VERS vnumber=\"36\">And all the congregation brought him without the camp, and stoned him with stones, and he died; as the LORD commanded Moses.</VERS>\r\n      <VERS vnumber=\"37\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"38\">Speak 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:</VERS>\r\n      <VERS vnumber=\"39\">And 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:</VERS>\r\n      <VERS vnumber=\"40\">That ye may remember, and do all my commandments, and be holy unto your God.</VERS>\r\n      <VERS vnumber=\"41\">I am the LORD your God, which brought you out of the land of Egypt, to be your God: I am the LORD your God.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">Now 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:</VERS>\r\n      <VERS vnumber=\"2\">And 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:</VERS>\r\n      <VERS vnumber=\"3\">And 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?</VERS>\r\n      <VERS vnumber=\"4\">And when Moses heard it, he fell upon his face:</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">This do; Take you censers, Korah, and all his company;</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And Moses said unto Korah, Hear, I pray you, ye sons of Levi:</VERS>\r\n      <VERS vnumber=\"9\">Seemeth 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?</VERS>\r\n      <VERS vnumber=\"10\">And he hath brought thee near to him, and all thy brethren the sons of Levi with thee: and seek ye the priesthood also?</VERS>\r\n      <VERS vnumber=\"11\">For which cause both thou and all thy company are gathered together against the LORD: and what is Aaron, that ye murmur against him?</VERS>\r\n      <VERS vnumber=\"12\">And Moses sent to call Dathan and Abiram, the sons of Eliab: which said, We will not come up:</VERS>\r\n      <VERS vnumber=\"13\">Is 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?</VERS>\r\n      <VERS vnumber=\"14\">Moreover 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And Moses said unto Korah, Be thou and all thy company before the LORD, thou, and they, and Aaron, to morrow:</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And the LORD spake unto Moses and unto Aaron, saying,</VERS>\r\n      <VERS vnumber=\"21\">Separate yourselves from among this congregation, that I may consume them in a moment.</VERS>\r\n      <VERS vnumber=\"22\">And 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?</VERS>\r\n      <VERS vnumber=\"23\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"24\">Speak unto the congregation, saying, Get you up from about the tabernacle of Korah, Dathan, and Abiram.</VERS>\r\n      <VERS vnumber=\"25\">And Moses rose up and went unto Dathan and Abiram; and the elders of Israel followed him.</VERS>\r\n      <VERS vnumber=\"26\">And he spake unto the congregation, saying, Depart, I pray you, from the tents of these wicked men, and touch nothing of theirs, lest ye be consumed in all their sins.</VERS>\r\n      <VERS vnumber=\"27\">So 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.</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">If 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.</VERS>\r\n      <VERS vnumber=\"30\">But 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.</VERS>\r\n      <VERS vnumber=\"31\">And it came to pass, as he had made an end of speaking all these words, that the ground clave asunder that was under them:</VERS>\r\n      <VERS vnumber=\"32\">And the earth opened her mouth, and swallowed them up, and their houses, and all the men that appertained unto Korah, and all their goods.</VERS>\r\n      <VERS vnumber=\"33\">They, 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.</VERS>\r\n      <VERS vnumber=\"34\">And all Israel that were round about them fled at the cry of them: for they said, Lest the earth swallow us up also.</VERS>\r\n      <VERS vnumber=\"35\">And there came out a fire from the LORD, and consumed the two hundred and fifty men that offered incense.</VERS>\r\n      <VERS vnumber=\"36\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"37\">Speak 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.</VERS>\r\n      <VERS vnumber=\"38\">The 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.</VERS>\r\n      <VERS vnumber=\"39\">And 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:</VERS>\r\n      <VERS vnumber=\"40\">To 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.</VERS>\r\n      <VERS vnumber=\"41\">But 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.</VERS>\r\n      <VERS vnumber=\"42\">And 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.</VERS>\r\n      <VERS vnumber=\"43\">And Moses and Aaron came before the tabernacle of the congregation.</VERS>\r\n      <VERS vnumber=\"44\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"45\">Get you up from among this congregation, that I may consume them as in a moment. And they fell upon their faces.</VERS>\r\n      <VERS vnumber=\"46\">And 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.</VERS>\r\n      <VERS vnumber=\"47\">And 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.</VERS>\r\n      <VERS vnumber=\"48\">And he stood between the dead and the living; and the plague was stayed.</VERS>\r\n      <VERS vnumber=\"49\">Now they that died in the plague were fourteen thousand and seven hundred, beside them that died about the matter of Korah.</VERS>\r\n      <VERS vnumber=\"50\">And Aaron returned unto Moses unto the door of the tabernacle of the congregation: and the plague was stayed.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"17\">\r\n      <VERS vnumber=\"1\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">Speak 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And thou shalt lay them up in the tabernacle of the congregation before the testimony, where I will meet with you.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And Moses laid up the rods before the LORD in the tabernacle of witness.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And Moses did so: as the LORD commanded him, so did he.</VERS>\r\n      <VERS vnumber=\"12\">And the children of Israel spake unto Moses, saying, Behold, we die, we perish, we all perish.</VERS>\r\n      <VERS vnumber=\"13\">Whosoever cometh any thing near unto the tabernacle of the LORD shall die: shall we be consumed with dying?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"18\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">Therefore thou and thy sons with thee shall keep your priest's office for every thing 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">This shall be thine of the most holy things, reserved from the fire: every oblation of theirs, every meat offering of theirs, and every sin offering of theirs, and every trespass offering of theirs, which they shall render unto me, shall be most holy for thee and for thy sons.</VERS>\r\n      <VERS vnumber=\"10\">In the most holy place shalt thou eat it; every male shall eat it: it shall be holy unto thee.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">All 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">Every thing devoted in Israel shall be thine.</VERS>\r\n      <VERS vnumber=\"15\">Every 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">But 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.</VERS>\r\n      <VERS vnumber=\"18\">And the flesh of them shall be thine, as the wave breast and as the right shoulder are thine.</VERS>\r\n      <VERS vnumber=\"19\">All 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And, 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.</VERS>\r\n      <VERS vnumber=\"22\">Neither must the children of Israel henceforth come nigh the tabernacle of the congregation, lest they bear sin, and die.</VERS>\r\n      <VERS vnumber=\"23\">But 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.</VERS>\r\n      <VERS vnumber=\"24\">But 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.</VERS>\r\n      <VERS vnumber=\"25\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"26\">Thus 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">Thus 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.</VERS>\r\n      <VERS vnumber=\"29\">Out 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.</VERS>\r\n      <VERS vnumber=\"30\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"19\">\r\n      <VERS vnumber=\"1\">And the LORD spake unto Moses and unto Aaron, saying,</VERS>\r\n      <VERS vnumber=\"2\">This 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:</VERS>\r\n      <VERS vnumber=\"3\">And 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:</VERS>\r\n      <VERS vnumber=\"4\">And 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:</VERS>\r\n      <VERS vnumber=\"5\">And one shall burn the heifer in his sight; her skin, and her flesh, and her blood, with her dung, shall he burn:</VERS>\r\n      <VERS vnumber=\"6\">And the priest shall take cedar wood, and hyssop, and scarlet, and cast it into the midst of the burning of the heifer.</VERS>\r\n      <VERS vnumber=\"7\">Then 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.</VERS>\r\n      <VERS vnumber=\"8\">And he that burneth her shall wash his clothes in water, and bathe his flesh in water, and shall be unclean until the even.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">He that toucheth the dead body of any man shall be unclean seven days.</VERS>\r\n      <VERS vnumber=\"12\">He 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.</VERS>\r\n      <VERS vnumber=\"13\">Whosoever 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.</VERS>\r\n      <VERS vnumber=\"14\">This 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.</VERS>\r\n      <VERS vnumber=\"15\">And every open vessel, which hath no covering bound upon it, is unclean.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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:</VERS>\r\n      <VERS vnumber=\"18\">And 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:</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">But 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And whatsoever the unclean person toucheth shall be unclean; and the soul that toucheth it shall be unclean until even.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"20\">\r\n      <VERS vnumber=\"1\">Then 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.</VERS>\r\n      <VERS vnumber=\"2\">And there was no water for the congregation: and they gathered themselves together against Moses and against Aaron.</VERS>\r\n      <VERS vnumber=\"3\">And the people chode with Moses, and spake, saying, Would God that we had died when our brethren died before the LORD!</VERS>\r\n      <VERS vnumber=\"4\">And why have ye brought up the congregation of the LORD into this wilderness, that we and our cattle should die there?</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"8\">Take 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.</VERS>\r\n      <VERS vnumber=\"9\">And Moses took the rod from before the LORD, as he commanded him.</VERS>\r\n      <VERS vnumber=\"10\">And 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?</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">This is the water of Meribah; because the children of Israel strove with the LORD, and he was sanctified in them.</VERS>\r\n      <VERS vnumber=\"14\">And Moses sent messengers from Kadesh unto the king of Edom, Thus saith thy brother Israel, Thou knowest all the travail that hath befallen us:</VERS>\r\n      <VERS vnumber=\"15\">How our fathers went down into Egypt, and we have dwelt in Egypt a long time; and the Egyptians vexed us, and our fathers:</VERS>\r\n      <VERS vnumber=\"16\">And 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:</VERS>\r\n      <VERS vnumber=\"17\">Let 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.</VERS>\r\n      <VERS vnumber=\"18\">And Edom said unto him, Thou shalt not pass by me, lest I come out against thee with the sword.</VERS>\r\n      <VERS vnumber=\"19\">And 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 any thing else, go through on my feet.</VERS>\r\n      <VERS vnumber=\"20\">And he said, Thou shalt not go through. And Edom came out against him with much people, and with a strong hand.</VERS>\r\n      <VERS vnumber=\"21\">Thus Edom refused to give Israel passage through his border: wherefore Israel turned away from him.</VERS>\r\n      <VERS vnumber=\"22\">And the children of Israel, even the whole congregation, journeyed from Kadesh, and came unto mount Hor.</VERS>\r\n      <VERS vnumber=\"23\">And the LORD spake unto Moses and Aaron in mount Hor, by the coast of the land of Edom, saying,</VERS>\r\n      <VERS vnumber=\"24\">Aaron 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.</VERS>\r\n      <VERS vnumber=\"25\">Take Aaron and Eleazar his son, and bring them up unto mount Hor:</VERS>\r\n      <VERS vnumber=\"26\">And strip Aaron of his garments, and put them upon Eleazar his son: and Aaron shall be gathered unto his people, and shall die there.</VERS>\r\n      <VERS vnumber=\"27\">And Moses did as the LORD commanded: and they went up into mount Hor in the sight of all the congregation.</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">And when all the congregation saw that Aaron was dead, they mourned for Aaron thirty days, even all the house of Israel.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"21\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And the LORD sent fiery serpents among the people, and they bit the people; and much people of Israel died.</VERS>\r\n      <VERS vnumber=\"7\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And the children of Israel set forward, and pitched in Oboth.</VERS>\r\n      <VERS vnumber=\"11\">And they journeyed from Oboth, and pitched at Ijeabarim, in the wilderness which is before Moab, toward the sunrising.</VERS>\r\n      <VERS vnumber=\"12\">From thence they removed, and pitched in the valley of Zared.</VERS>\r\n      <VERS vnumber=\"13\">From 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.</VERS>\r\n      <VERS vnumber=\"14\">Wherefore 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,</VERS>\r\n      <VERS vnumber=\"15\">And at the stream of the brooks that goeth down to the dwelling of Ar, and lieth upon the border of Moab.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">Then Israel sang this song, Spring up, O well; sing ye unto it:</VERS>\r\n      <VERS vnumber=\"18\">The 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:</VERS>\r\n      <VERS vnumber=\"19\">And from Mattanah to Nahaliel: and from Nahaliel to Bamoth:</VERS>\r\n      <VERS vnumber=\"20\">And from Bamoth in the valley, that is in the country of Moab, to the top of Pisgah, which looketh toward Jeshimon.</VERS>\r\n      <VERS vnumber=\"21\">And Israel sent messengers unto Sihon king of the Amorites, saying,</VERS>\r\n      <VERS vnumber=\"22\">Let 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.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And Israel took all these cities: and Israel dwelt in all the cities of the Amorites, in Heshbon, and in all the villages thereof.</VERS>\r\n      <VERS vnumber=\"26\">For 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.</VERS>\r\n      <VERS vnumber=\"27\">Wherefore they that speak in proverbs say, Come into Heshbon, let the city of Sihon be built and prepared:</VERS>\r\n      <VERS vnumber=\"28\">For 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.</VERS>\r\n      <VERS vnumber=\"29\">Woe 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.</VERS>\r\n      <VERS vnumber=\"30\">We have shot at them; Heshbon is perished even unto Dibon, and we have laid them waste even unto Nophah, which reacheth unto Medeba.</VERS>\r\n      <VERS vnumber=\"31\">Thus Israel dwelt in the land of the Amorites.</VERS>\r\n      <VERS vnumber=\"32\">And Moses sent to spy out Jaazer, and they took the villages thereof, and drove out the Amorites that were there.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">And 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.</VERS>\r\n      <VERS vnumber=\"35\">So they smote him, and his sons, and all his people, until there was none left him alive: and they possessed his land.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"22\">\r\n      <VERS vnumber=\"1\">And the children of Israel set forward, and pitched in the plains of Moab on this side Jordan by Jericho.</VERS>\r\n      <VERS vnumber=\"2\">And Balak the son of Zippor saw all that Israel had done to the Amorites.</VERS>\r\n      <VERS vnumber=\"3\">And Moab was sore afraid of the people, because they were many: and Moab was distressed because of the children of Israel.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">He 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:</VERS>\r\n      <VERS vnumber=\"6\">Come 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And God came unto Balaam, and said, What men are these with thee?</VERS>\r\n      <VERS vnumber=\"10\">And Balaam said unto God, Balak the son of Zippor, king of Moab, hath sent unto me, saying,</VERS>\r\n      <VERS vnumber=\"11\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"12\">And God said unto Balaam, Thou shalt not go with them; thou shalt not curse the people: for they are blessed.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And the princes of Moab rose up, and they went unto Balak, and said, Balaam refuseth to come with us.</VERS>\r\n      <VERS vnumber=\"15\">And Balak sent yet again princes, more, and more honourable than they.</VERS>\r\n      <VERS vnumber=\"16\">And 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:</VERS>\r\n      <VERS vnumber=\"17\">For 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">Now therefore, I pray you, tarry ye also here this night, that I may know what the LORD will say unto me more.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And Balaam rose up in the morning, and saddled his ass, and went with the princes of Moab.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">But the angel of the LORD stood in a path of the vineyards, a wall being on this side, and a wall on that side.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And 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?</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">Then 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.</VERS>\r\n      <VERS vnumber=\"32\">And 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:</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">And 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.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">And 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.</VERS>\r\n      <VERS vnumber=\"37\">And 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?</VERS>\r\n      <VERS vnumber=\"38\">And 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.</VERS>\r\n      <VERS vnumber=\"39\">And Balaam went with Balak, and they came unto Kirjathhuzoth.</VERS>\r\n      <VERS vnumber=\"40\">And Balak offered oxen and sheep, and sent to Balaam, and to the princes that were with him.</VERS>\r\n      <VERS vnumber=\"41\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"23\">\r\n      <VERS vnumber=\"1\">And Balaam said unto Balak, Build me here seven altars, and prepare me here seven oxen and seven rams.</VERS>\r\n      <VERS vnumber=\"2\">And Balak did as Balaam had spoken; and Balak and Balaam offered on every altar a bullock and a ram.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And the LORD put a word in Balaam's mouth, and said, Return unto Balak, and thus thou shalt speak.</VERS>\r\n      <VERS vnumber=\"6\">And he returned unto him, and, lo, he stood by his burnt sacrifice, he, and all the princes of Moab.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">How shall I curse, whom God hath not cursed? or how shall I defy, whom the LORD hath not defied?</VERS>\r\n      <VERS vnumber=\"9\">For 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.</VERS>\r\n      <VERS vnumber=\"10\">Who 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!</VERS>\r\n      <VERS vnumber=\"11\">And Balak said unto Balaam, What hast thou done unto me? I took thee to curse mine enemies, and, behold, thou hast blessed them altogether.</VERS>\r\n      <VERS vnumber=\"12\">And he answered and said, Must I not take heed to speak that which the LORD hath put in my mouth?</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And he said unto Balak, Stand here by thy burnt offering, while I meet the LORD yonder.</VERS>\r\n      <VERS vnumber=\"16\">And the LORD met Balaam, and put a word in his mouth, and said, Go again unto Balak, and say thus.</VERS>\r\n      <VERS vnumber=\"17\">And 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?</VERS>\r\n      <VERS vnumber=\"18\">And he took up his parable, and said, Rise up, Balak, and hear; hearken unto me, thou son of Zippor:</VERS>\r\n      <VERS vnumber=\"19\">God 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?</VERS>\r\n      <VERS vnumber=\"20\">Behold, I have received commandment to bless: and he hath blessed; and I cannot reverse it.</VERS>\r\n      <VERS vnumber=\"21\">He 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.</VERS>\r\n      <VERS vnumber=\"22\">God brought them out of Egypt; he hath as it were the strength of an unicorn.</VERS>\r\n      <VERS vnumber=\"23\">Surely 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!</VERS>\r\n      <VERS vnumber=\"24\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"25\">And Balak said unto Balaam, Neither curse them at all, nor bless them at all.</VERS>\r\n      <VERS vnumber=\"26\">But Balaam answered and said unto Balak, Told not I thee, saying, All that the LORD speaketh, that I must do?</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And Balak brought Balaam unto the top of Peor, that looketh toward Jeshimon.</VERS>\r\n      <VERS vnumber=\"29\">And Balaam said unto Balak, Build me here seven altars, and prepare me here seven bullocks and seven rams.</VERS>\r\n      <VERS vnumber=\"30\">And Balak did as Balaam had said, and offered a bullock and a ram on every altar.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"24\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And he took up his parable, and said, Balaam the son of Beor hath said, and the man whose eyes are open hath said:</VERS>\r\n      <VERS vnumber=\"4\">He hath said, which heard the words of God, which saw the vision of the Almighty, falling into a trance, but having his eyes open:</VERS>\r\n      <VERS vnumber=\"5\">How goodly are thy tents, O Jacob, and thy tabernacles, O Israel!</VERS>\r\n      <VERS vnumber=\"6\">As 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.</VERS>\r\n      <VERS vnumber=\"7\">He 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.</VERS>\r\n      <VERS vnumber=\"8\">God 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.</VERS>\r\n      <VERS vnumber=\"9\">He 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">Therefore now flee thou to thy place: I thought to promote thee unto great honour; but, lo, the LORD hath kept thee back from honour.</VERS>\r\n      <VERS vnumber=\"12\">And Balaam said unto Balak, Spake I not also to thy messengers which thou sentest unto me, saying,</VERS>\r\n      <VERS vnumber=\"13\">If 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?</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And he took up his parable, and said, Balaam the son of Beor hath said, and the man whose eyes are open hath said:</VERS>\r\n      <VERS vnumber=\"16\">He 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:</VERS>\r\n      <VERS vnumber=\"17\">I 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.</VERS>\r\n      <VERS vnumber=\"18\">And Edom shall be a possession, Seir also shall be a possession for his enemies; and Israel shall do valiantly.</VERS>\r\n      <VERS vnumber=\"19\">Out of Jacob shall come he that shall have dominion, and shall destroy him that remaineth of the city.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And he looked on the Kenites, and took up his parable, and said, Strong is thy dwellingplace, and thou puttest thy nest in a rock.</VERS>\r\n      <VERS vnumber=\"22\">Nevertheless the Kenite shall be wasted, until Asshur shall carry thee away captive.</VERS>\r\n      <VERS vnumber=\"23\">And he took up his parable, and said, Alas, who shall live when God doeth this!</VERS>\r\n      <VERS vnumber=\"24\">And ships shall come from the coast of Chittim, and shall afflict Asshur, and shall afflict Eber, and he also shall perish for ever.</VERS>\r\n      <VERS vnumber=\"25\">And Balaam rose up, and went and returned to his place: and Balak also went his way.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"25\">\r\n      <VERS vnumber=\"1\">And Israel abode in Shittim, and the people began to commit whoredom with the daughters of Moab.</VERS>\r\n      <VERS vnumber=\"2\">And they called the people unto the sacrifices of their gods: and the people did eat, and bowed down to their gods.</VERS>\r\n      <VERS vnumber=\"3\">And Israel joined himself unto Baalpeor: and the anger of the LORD was kindled against Israel.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And Moses said unto the judges of Israel, Slay ye every one his men that were joined unto Baalpeor.</VERS>\r\n      <VERS vnumber=\"6\">And, 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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;</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And those that died in the plague were twenty and four thousand.</VERS>\r\n      <VERS vnumber=\"10\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"11\">Phinehas, 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.</VERS>\r\n      <VERS vnumber=\"12\">Wherefore say, Behold, I give unto him my covenant of peace:</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">Now 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"17\">Vex the Midianites, and smite them:</VERS>\r\n      <VERS vnumber=\"18\">For 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"26\">\r\n      <VERS vnumber=\"1\">And it came to pass after the plague, that the LORD spake unto Moses and unto Eleazar the son of Aaron the priest, saying,</VERS>\r\n      <VERS vnumber=\"2\">Take 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.</VERS>\r\n      <VERS vnumber=\"3\">And Moses and Eleazar the priest spake with them in the plains of Moab by Jordan near Jericho, saying,</VERS>\r\n      <VERS vnumber=\"4\">Take 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.</VERS>\r\n      <VERS vnumber=\"5\">Reuben, 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:</VERS>\r\n      <VERS vnumber=\"6\">Of Hezron, the family of the Hezronites: of Carmi, the family of the Carmites.</VERS>\r\n      <VERS vnumber=\"7\">These are the families of the Reubenites: and they that were numbered of them were forty and three thousand and seven hundred and thirty.</VERS>\r\n      <VERS vnumber=\"8\">And the sons of Pallu; Eliab.</VERS>\r\n      <VERS vnumber=\"9\">And 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:</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">Notwithstanding the children of Korah died not.</VERS>\r\n      <VERS vnumber=\"12\">The 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:</VERS>\r\n      <VERS vnumber=\"13\">Of Zerah, the family of the Zarhites: of Shaul, the family of the Shaulites.</VERS>\r\n      <VERS vnumber=\"14\">These are the families of the Simeonites, twenty and two thousand and two hundred.</VERS>\r\n      <VERS vnumber=\"15\">The 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:</VERS>\r\n      <VERS vnumber=\"16\">Of Ozni, the family of the Oznites: of Eri, the family of the Erites:</VERS>\r\n      <VERS vnumber=\"17\">Of Arod, the family of the Arodites: of Areli, the family of the Arelites.</VERS>\r\n      <VERS vnumber=\"18\">These are the families of the children of Gad according to those that were numbered of them, forty thousand and five hundred.</VERS>\r\n      <VERS vnumber=\"19\">The sons of Judah were Er and Onan: and Er and Onan died in the land of Canaan.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And the sons of Pharez were; of Hezron, the family of the Hezronites: of Hamul, the family of the Hamulites.</VERS>\r\n      <VERS vnumber=\"22\">These are the families of Judah according to those that were numbered of them, threescore and sixteen thousand and five hundred.</VERS>\r\n      <VERS vnumber=\"23\">Of the sons of Issachar after their families: of Tola, the family of the Tolaites: of Pua, the family of the Punites:</VERS>\r\n      <VERS vnumber=\"24\">Of Jashub, the family of the Jashubites: of Shimron, the family of the Shimronites.</VERS>\r\n      <VERS vnumber=\"25\">These are the families of Issachar according to those that were numbered of them, threescore and four thousand and three hundred.</VERS>\r\n      <VERS vnumber=\"26\">Of 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.</VERS>\r\n      <VERS vnumber=\"27\">These are the families of the Zebulunites according to those that were numbered of them, threescore thousand and five hundred.</VERS>\r\n      <VERS vnumber=\"28\">The sons of Joseph after their families were Manasseh and Ephraim.</VERS>\r\n      <VERS vnumber=\"29\">Of the sons of Manasseh: of Machir, the family of the Machirites: and Machir begat Gilead: of Gilead come the family of the Gileadites.</VERS>\r\n      <VERS vnumber=\"30\">These are the sons of Gilead: of Jeezer, the family of the Jeezerites: of Helek, the family of the Helekites:</VERS>\r\n      <VERS vnumber=\"31\">And of Asriel, the family of the Asrielites: and of Shechem, the family of the Shechemites:</VERS>\r\n      <VERS vnumber=\"32\">And of Shemida, the family of the Shemidaites: and of Hepher, the family of the Hepherites.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">These are the families of Manasseh, and those that were numbered of them, fifty and two thousand and seven hundred.</VERS>\r\n      <VERS vnumber=\"35\">These 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.</VERS>\r\n      <VERS vnumber=\"36\">And these are the sons of Shuthelah: of Eran, the family of the Eranites.</VERS>\r\n      <VERS vnumber=\"37\">These 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.</VERS>\r\n      <VERS vnumber=\"38\">The 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:</VERS>\r\n      <VERS vnumber=\"39\">Of Shupham, the family of the Shuphamites: of Hupham, the family of the Huphamites.</VERS>\r\n      <VERS vnumber=\"40\">And the sons of Bela were Ard and Naaman: of Ard, the family of the Ardites: and of Naaman, the family of the Naamites.</VERS>\r\n      <VERS vnumber=\"41\">These are the sons of Benjamin after their families: and they that were numbered of them were forty and five thousand and six hundred.</VERS>\r\n      <VERS vnumber=\"42\">These are the sons of Dan after their families: of Shuham, the family of the Shuhamites. These are the families of Dan after their families.</VERS>\r\n      <VERS vnumber=\"43\">All the families of the Shuhamites, according to those that were numbered of them, were threescore and four thousand and four hundred.</VERS>\r\n      <VERS vnumber=\"44\">Of 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.</VERS>\r\n      <VERS vnumber=\"45\">Of the sons of Beriah: of Heber, the family of the Heberites: of Malchiel, the family of the Malchielites.</VERS>\r\n      <VERS vnumber=\"46\">And the name of the daughter of Asher was Sarah.</VERS>\r\n      <VERS vnumber=\"47\">These 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.</VERS>\r\n      <VERS vnumber=\"48\">Of the sons of Naphtali after their families: of Jahzeel, the family of the Jahzeelites: of Guni, the family of the Gunites:</VERS>\r\n      <VERS vnumber=\"49\">Of Jezer, the family of the Jezerites: of Shillem, the family of the Shillemites.</VERS>\r\n      <VERS vnumber=\"50\">These are the families of Naphtali according to their families: and they that were numbered of them were forty and five thousand and four hundred.</VERS>\r\n      <VERS vnumber=\"51\">These were the numbered of the children of Israel, six hundred thousand and a thousand seven hundred and thirty.</VERS>\r\n      <VERS vnumber=\"52\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"53\">Unto these the land shall be divided for an inheritance according to the number of names.</VERS>\r\n      <VERS vnumber=\"54\">To 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.</VERS>\r\n      <VERS vnumber=\"55\">Notwithstanding the land shall be divided by lot: according to the names of the tribes of their fathers they shall inherit.</VERS>\r\n      <VERS vnumber=\"56\">According to the lot shall the possession thereof be divided between many and few.</VERS>\r\n      <VERS vnumber=\"57\">And 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.</VERS>\r\n      <VERS vnumber=\"58\">These 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.</VERS>\r\n      <VERS vnumber=\"59\">And 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.</VERS>\r\n      <VERS vnumber=\"60\">And unto Aaron was born Nadab, and Abihu, Eleazar, and Ithamar.</VERS>\r\n      <VERS vnumber=\"61\">And Nadab and Abihu died, when they offered strange fire before the LORD.</VERS>\r\n      <VERS vnumber=\"62\">And 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.</VERS>\r\n      <VERS vnumber=\"63\">These 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.</VERS>\r\n      <VERS vnumber=\"64\">But 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.</VERS>\r\n      <VERS vnumber=\"65\">For 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"27\">\r\n      <VERS vnumber=\"1\">Then 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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,</VERS>\r\n      <VERS vnumber=\"3\">Our 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.</VERS>\r\n      <VERS vnumber=\"4\">Why 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.</VERS>\r\n      <VERS vnumber=\"5\">And Moses brought their cause before the LORD.</VERS>\r\n      <VERS vnumber=\"6\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"7\">The 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And if he have no daughter, then ye shall give his inheritance unto his brethren.</VERS>\r\n      <VERS vnumber=\"10\">And if he have no brethren, then ye shall give his inheritance unto his father's brethren.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And when thou hast seen it, thou also shalt be gathered unto thy people, as Aaron thy brother was gathered.</VERS>\r\n      <VERS vnumber=\"14\">For 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.</VERS>\r\n      <VERS vnumber=\"15\">And Moses spake unto the LORD, saying,</VERS>\r\n      <VERS vnumber=\"16\">Let the LORD, the God of the spirits of all flesh, set a man over the congregation,</VERS>\r\n      <VERS vnumber=\"17\">Which 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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;</VERS>\r\n      <VERS vnumber=\"19\">And set him before Eleazar the priest, and before all the congregation; and give him a charge in their sight.</VERS>\r\n      <VERS vnumber=\"20\">And thou shalt put some of thine honour upon him, that all the congregation of the children of Israel may be obedient.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And Moses did as the LORD commanded him: and he took Joshua, and set him before Eleazar the priest, and before all the congregation:</VERS>\r\n      <VERS vnumber=\"23\">And he laid his hands upon him, and gave him a charge, as the LORD commanded by the hand of Moses.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"28\">\r\n      <VERS vnumber=\"1\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">Command 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">The one lamb shalt thou offer in the morning, and the other lamb shalt thou offer at even;</VERS>\r\n      <VERS vnumber=\"5\">And a tenth part of an ephah of flour for a meat offering, mingled with the fourth part of an hin of beaten oil.</VERS>\r\n      <VERS vnumber=\"6\">It is a continual burnt offering, which was ordained in mount Sinai for a sweet savour, a sacrifice made by fire unto the LORD.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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:</VERS>\r\n      <VERS vnumber=\"10\">This is the burnt offering of every sabbath, beside the continual burnt offering, and his drink offering.</VERS>\r\n      <VERS vnumber=\"11\">And 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;</VERS>\r\n      <VERS vnumber=\"12\">And 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;</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And one kid of the goats for a sin offering unto the LORD shall be offered, beside the continual burnt offering, and his drink offering.</VERS>\r\n      <VERS vnumber=\"16\">And in the fourteenth day of the first month is the passover of the LORD.</VERS>\r\n      <VERS vnumber=\"17\">And in the fifteenth day of this month is the feast: seven days shall unleavened bread be eaten.</VERS>\r\n      <VERS vnumber=\"18\">In the first day shall be an holy convocation; ye shall do no manner of servile work therein:</VERS>\r\n      <VERS vnumber=\"19\">But 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:</VERS>\r\n      <VERS vnumber=\"20\">And 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;</VERS>\r\n      <VERS vnumber=\"21\">A several tenth deal shalt thou offer for every lamb, throughout the seven lambs:</VERS>\r\n      <VERS vnumber=\"22\">And one goat for a sin offering, to make an atonement for you.</VERS>\r\n      <VERS vnumber=\"23\">Ye shall offer these beside the burnt offering in the morning, which is for a continual burnt offering.</VERS>\r\n      <VERS vnumber=\"24\">After 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.</VERS>\r\n      <VERS vnumber=\"25\">And on the seventh day ye shall have an holy convocation; ye shall do no servile work.</VERS>\r\n      <VERS vnumber=\"26\">Also 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:</VERS>\r\n      <VERS vnumber=\"27\">But ye shall offer the burnt offering for a sweet savour unto the LORD; two young bullocks, one ram, seven lambs of the first year;</VERS>\r\n      <VERS vnumber=\"28\">And their meat offering of flour mingled with oil, three tenth deals unto one bullock, two tenth deals unto one ram,</VERS>\r\n      <VERS vnumber=\"29\">A several tenth deal unto one lamb, throughout the seven lambs;</VERS>\r\n      <VERS vnumber=\"30\">And one kid of the goats, to make an atonement for you.</VERS>\r\n      <VERS vnumber=\"31\">Ye shall offer them beside the continual burnt offering, and his meat offering, (they shall be unto you without blemish) and their drink offerings.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"29\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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:</VERS>\r\n      <VERS vnumber=\"3\">And their meat offering shall be of flour mingled with oil, three tenth deals for a bullock, and two tenth deals for a ram,</VERS>\r\n      <VERS vnumber=\"4\">And one tenth deal for one lamb, throughout the seven lambs:</VERS>\r\n      <VERS vnumber=\"5\">And one kid of the goats for a sin offering, to make an atonement for you:</VERS>\r\n      <VERS vnumber=\"6\">Beside 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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:</VERS>\r\n      <VERS vnumber=\"8\">But 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:</VERS>\r\n      <VERS vnumber=\"9\">And their meat offering shall be of flour mingled with oil, three tenth deals to a bullock, and two tenth deals to one ram,</VERS>\r\n      <VERS vnumber=\"10\">A several tenth deal for one lamb, throughout the seven lambs:</VERS>\r\n      <VERS vnumber=\"11\">One 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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:</VERS>\r\n      <VERS vnumber=\"13\">And 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:</VERS>\r\n      <VERS vnumber=\"14\">And 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,</VERS>\r\n      <VERS vnumber=\"15\">And a several tenth deal to each lamb of the fourteen lambs:</VERS>\r\n      <VERS vnumber=\"16\">And one kid of the goats for a sin offering; beside the continual burnt offering, his meat offering, and his drink offering.</VERS>\r\n      <VERS vnumber=\"17\">And on the second day ye shall offer twelve young bullocks, two rams, fourteen lambs of the first year without spot:</VERS>\r\n      <VERS vnumber=\"18\">And 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:</VERS>\r\n      <VERS vnumber=\"19\">And one kid of the goats for a sin offering; beside the continual burnt offering, and the meat offering thereof, and their drink offerings.</VERS>\r\n      <VERS vnumber=\"20\">And on the third day eleven bullocks, two rams, fourteen lambs of the first year without blemish;</VERS>\r\n      <VERS vnumber=\"21\">And 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:</VERS>\r\n      <VERS vnumber=\"22\">And one goat for a sin offering; beside the continual burnt offering, and his meat offering, and his drink offering.</VERS>\r\n      <VERS vnumber=\"23\">And on the fourth day ten bullocks, two rams, and fourteen lambs of the first year without blemish:</VERS>\r\n      <VERS vnumber=\"24\">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:</VERS>\r\n      <VERS vnumber=\"25\">And one kid of the goats for a sin offering; beside the continual burnt offering, his meat offering, and his drink offering.</VERS>\r\n      <VERS vnumber=\"26\">And on the fifth day nine bullocks, two rams, and fourteen lambs of the first year without spot:</VERS>\r\n      <VERS vnumber=\"27\">And 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:</VERS>\r\n      <VERS vnumber=\"28\">And one goat for a sin offering; beside the continual burnt offering, and his meat offering, and his drink offering.</VERS>\r\n      <VERS vnumber=\"29\">And on the sixth day eight bullocks, two rams, and fourteen lambs of the first year without blemish:</VERS>\r\n      <VERS vnumber=\"30\">And 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:</VERS>\r\n      <VERS vnumber=\"31\">And one goat for a sin offering; beside the continual burnt offering, his meat offering, and his drink offering.</VERS>\r\n      <VERS vnumber=\"32\">And on the seventh day seven bullocks, two rams, and fourteen lambs of the first year without blemish:</VERS>\r\n      <VERS vnumber=\"33\">And 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:</VERS>\r\n      <VERS vnumber=\"34\">And one goat for a sin offering; beside the continual burnt offering, his meat offering, and his drink offering.</VERS>\r\n      <VERS vnumber=\"35\">On the eighth day ye shall have a solemn assembly: ye shall do no servile work therein:</VERS>\r\n      <VERS vnumber=\"36\">But 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:</VERS>\r\n      <VERS vnumber=\"37\">Their 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:</VERS>\r\n      <VERS vnumber=\"38\">And one goat for a sin offering; beside the continual burnt offering, and his meat offering, and his drink offering.</VERS>\r\n      <VERS vnumber=\"39\">These 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.</VERS>\r\n      <VERS vnumber=\"40\">And Moses told the children of Israel according to all that the LORD commanded Moses.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"30\">\r\n      <VERS vnumber=\"1\">And Moses spake unto the heads of the tribes concerning the children of Israel, saying, This is the thing which the LORD hath commanded.</VERS>\r\n      <VERS vnumber=\"2\">If 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.</VERS>\r\n      <VERS vnumber=\"3\">If a woman also vow a vow unto the LORD, and bind herself by a bond, being in her father's house in her youth;</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">But 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.</VERS>\r\n      <VERS vnumber=\"6\">And if she had at all an husband, when she vowed, or uttered ought out of her lips, wherewith she bound her soul;</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">But 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.</VERS>\r\n      <VERS vnumber=\"9\">But every vow of a widow, and of her that is divorced, wherewith they have bound their souls, shall stand against her.</VERS>\r\n      <VERS vnumber=\"10\">And if she vowed in her husband's house, or bound her soul by a bond with an oath;</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">But 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.</VERS>\r\n      <VERS vnumber=\"13\">Every vow, and every binding oath to afflict the soul, her husband may establish it, or her husband may make it void.</VERS>\r\n      <VERS vnumber=\"14\">But 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.</VERS>\r\n      <VERS vnumber=\"15\">But if he shall any ways make them void after that he hath heard them; then he shall bear her iniquity.</VERS>\r\n      <VERS vnumber=\"16\">These 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"31\">\r\n      <VERS vnumber=\"1\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">Avenge the children of Israel of the Midianites: afterward shalt thou be gathered unto thy people.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">Of every tribe a thousand, throughout all the tribes of Israel, shall ye send to the war.</VERS>\r\n      <VERS vnumber=\"5\">So there were delivered out of the thousands of Israel, a thousand of every tribe, twelve thousand armed for war.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And they warred against the Midianites, as the LORD commanded Moses; and they slew all the males.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And they burnt all their cities wherein they dwelt, and all their goodly castles, with fire.</VERS>\r\n      <VERS vnumber=\"11\">And they took all the spoil, and all the prey, both of men and of beasts.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And Moses, and Eleazar the priest, and all the princes of the congregation, went forth to meet them without the camp.</VERS>\r\n      <VERS vnumber=\"14\">And Moses was wroth with the officers of the host, with the captains over thousands, and captains over hundreds, which came from the battle.</VERS>\r\n      <VERS vnumber=\"15\">And Moses said unto them, Have ye saved all the women alive?</VERS>\r\n      <VERS vnumber=\"16\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"17\">Now therefore kill every male among the little ones, and kill every woman that hath known man by lying with him.</VERS>\r\n      <VERS vnumber=\"18\">But all the women children, that have not known a man by lying with him, keep alive for yourselves.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And purify all your raiment, and all that is made of skins, and all work of goats' hair, and all things made of wood.</VERS>\r\n      <VERS vnumber=\"21\">And 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;</VERS>\r\n      <VERS vnumber=\"22\">Only the gold, and the silver, the brass, the iron, the tin, and the lead,</VERS>\r\n      <VERS vnumber=\"23\">Every 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.</VERS>\r\n      <VERS vnumber=\"24\">And ye shall wash your clothes on the seventh day, and ye shall be clean, and afterward ye shall come into the camp.</VERS>\r\n      <VERS vnumber=\"25\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"26\">Take 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:</VERS>\r\n      <VERS vnumber=\"27\">And divide the prey into two parts; between them that took the war upon them, who went out to battle, and between all the congregation:</VERS>\r\n      <VERS vnumber=\"28\">And 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:</VERS>\r\n      <VERS vnumber=\"29\">Take it of their half, and give it unto Eleazar the priest, for an heave offering of the LORD.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">And Moses and Eleazar the priest did as the LORD commanded Moses.</VERS>\r\n      <VERS vnumber=\"32\">And 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,</VERS>\r\n      <VERS vnumber=\"33\">And threescore and twelve thousand beeves,</VERS>\r\n      <VERS vnumber=\"34\">And threescore and one thousand asses,</VERS>\r\n      <VERS vnumber=\"35\">And thirty and two thousand persons in all, of women that had not known man by lying with him.</VERS>\r\n      <VERS vnumber=\"36\">And 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:</VERS>\r\n      <VERS vnumber=\"37\">And the LORD'S tribute of the sheep was six hundred and threescore and fifteen.</VERS>\r\n      <VERS vnumber=\"38\">And the beeves were thirty and six thousand; of which the LORD'S tribute was threescore and twelve.</VERS>\r\n      <VERS vnumber=\"39\">And the asses were thirty thousand and five hundred; of which the LORD'S tribute was threescore and one.</VERS>\r\n      <VERS vnumber=\"40\">And the persons were sixteen thousand; of which the LORD'S tribute was thirty and two persons.</VERS>\r\n      <VERS vnumber=\"41\">And Moses gave the tribute, which was the LORD'S heave offering, unto Eleazar the priest, as the LORD commanded Moses.</VERS>\r\n      <VERS vnumber=\"42\">And of the children of Israel's half, which Moses divided from the men that warred,</VERS>\r\n      <VERS vnumber=\"43\">(Now the half that pertained unto the congregation was three hundred thousand and thirty thousand and seven thousand and five hundred sheep,</VERS>\r\n      <VERS vnumber=\"44\">And thirty and six thousand beeves,</VERS>\r\n      <VERS vnumber=\"45\">And thirty thousand asses and five hundred,</VERS>\r\n      <VERS vnumber=\"46\">And sixteen thousand persons;)</VERS>\r\n      <VERS vnumber=\"47\">Even 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.</VERS>\r\n      <VERS vnumber=\"48\">And the officers which were over thousands of the host, the captains of thousands, and captains of hundreds, came near unto Moses:</VERS>\r\n      <VERS vnumber=\"49\">And 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.</VERS>\r\n      <VERS vnumber=\"50\">We 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.</VERS>\r\n      <VERS vnumber=\"51\">And Moses and Eleazar the priest took the gold of them, even all wrought jewels.</VERS>\r\n      <VERS vnumber=\"52\">And 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.</VERS>\r\n      <VERS vnumber=\"53\">(For the men of war had taken spoil, every man for himself.)</VERS>\r\n      <VERS vnumber=\"54\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"32\">\r\n      <VERS vnumber=\"1\">Now 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;</VERS>\r\n      <VERS vnumber=\"2\">The 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,</VERS>\r\n      <VERS vnumber=\"3\">Ataroth, and Dibon, and Jazer, and Nimrah, and Heshbon, and Elealeh, and Shebam, and Nebo, and Beon,</VERS>\r\n      <VERS vnumber=\"4\">Even the country which the LORD smote before the congregation of Israel, is a land for cattle, and thy servants have cattle:</VERS>\r\n      <VERS vnumber=\"5\">Wherefore, 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.</VERS>\r\n      <VERS vnumber=\"6\">And Moses said unto the children of Gad and to the children of Reuben, Shall your brethren go to war, and shall ye sit here?</VERS>\r\n      <VERS vnumber=\"7\">And wherefore discourage ye the heart of the children of Israel from going over into the land which the LORD hath given them?</VERS>\r\n      <VERS vnumber=\"8\">Thus did your fathers, when I sent them from Kadeshbarnea to see the land.</VERS>\r\n      <VERS vnumber=\"9\">For 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.</VERS>\r\n      <VERS vnumber=\"10\">And the LORD'S anger was kindled the same time, and he sware, saying,</VERS>\r\n      <VERS vnumber=\"11\">Surely 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:</VERS>\r\n      <VERS vnumber=\"12\">Save Caleb the son of Jephunneh the Kenezite, and Joshua the son of Nun: for they have wholly followed the LORD.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And, 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.</VERS>\r\n      <VERS vnumber=\"15\">For if ye turn away from after him, he will yet again leave them in the wilderness; and ye shall destroy all this people.</VERS>\r\n      <VERS vnumber=\"16\">And they came near unto him, and said, We will build sheepfolds here for our cattle, and cities for our little ones:</VERS>\r\n      <VERS vnumber=\"17\">But 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.</VERS>\r\n      <VERS vnumber=\"18\">We will not return unto our houses, until the children of Israel have inherited every man his inheritance.</VERS>\r\n      <VERS vnumber=\"19\">For we will not inherit with them on yonder side Jordan, or forward; because our inheritance is fallen to us on this side Jordan eastward.</VERS>\r\n      <VERS vnumber=\"20\">And Moses said unto them, If ye will do this thing, if ye will go armed before the LORD to war,</VERS>\r\n      <VERS vnumber=\"21\">And will go all of you armed over Jordan before the LORD, until he hath driven out his enemies from before him,</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">But if ye will not do so, behold, ye have sinned against the LORD: and be sure your sin will find you out.</VERS>\r\n      <VERS vnumber=\"24\">Build you cities for your little ones, and folds for your sheep; and do that which hath proceeded out of your mouth.</VERS>\r\n      <VERS vnumber=\"25\">And the children of Gad and the children of Reuben spake unto Moses, saying, Thy servants will do as my lord commandeth.</VERS>\r\n      <VERS vnumber=\"26\">Our little ones, our wives, our flocks, and all our cattle, shall be there in the cities of Gilead:</VERS>\r\n      <VERS vnumber=\"27\">But thy servants will pass over, every man armed for war, before the LORD to battle, as my lord saith.</VERS>\r\n      <VERS vnumber=\"28\">So 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:</VERS>\r\n      <VERS vnumber=\"29\">And 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:</VERS>\r\n      <VERS vnumber=\"30\">But if they will not pass over with you armed, they shall have possessions among you in the land of Canaan.</VERS>\r\n      <VERS vnumber=\"31\">And the children of Gad and the children of Reuben answered, saying, As the LORD hath said unto thy servants, so will we do.</VERS>\r\n      <VERS vnumber=\"32\">We will pass over armed before the LORD into the land of Canaan, that the possession of our inheritance on this side Jordan may be ours.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">And the children of Gad built Dibon, and Ataroth, and Aroer,</VERS>\r\n      <VERS vnumber=\"35\">And Atroth, Shophan, and Jaazer, and Jogbehah,</VERS>\r\n      <VERS vnumber=\"36\">And Bethnimrah, and Bethharan, fenced cities: and folds for sheep.</VERS>\r\n      <VERS vnumber=\"37\">And the children of Reuben built Heshbon, and Elealeh, and Kirjathaim,</VERS>\r\n      <VERS vnumber=\"38\">And Nebo, and Baalmeon, (their names being changed,) and Shibmah: and gave other names unto the cities which they builded.</VERS>\r\n      <VERS vnumber=\"39\">And the children of Machir the son of Manasseh went to Gilead, and took it, and dispossessed the Amorite which was in it.</VERS>\r\n      <VERS vnumber=\"40\">And Moses gave Gilead unto Machir the son of Manasseh; and he dwelt therein.</VERS>\r\n      <VERS vnumber=\"41\">And Jair the son of Manasseh went and took the small towns thereof, and called them Havothjair.</VERS>\r\n      <VERS vnumber=\"42\">And Nobah went and took Kenath, and the villages thereof, and called it Nobah, after his own name.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"33\">\r\n      <VERS vnumber=\"1\">These 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">For the Egyptians buried all their firstborn, which the LORD had smitten among them: upon their gods also the LORD executed judgments.</VERS>\r\n      <VERS vnumber=\"5\">And the children of Israel removed from Rameses, and pitched in Succoth.</VERS>\r\n      <VERS vnumber=\"6\">And they departed from Succoth, and pitched in Etham, which is in the edge of the wilderness.</VERS>\r\n      <VERS vnumber=\"7\">And they removed from Etham, and turned again unto Pihahiroth, which is before Baalzephon: and they pitched before Migdol.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And they removed from Elim, and encamped by the Red sea.</VERS>\r\n      <VERS vnumber=\"11\">And they removed from the Red sea, and encamped in the wilderness of Sin.</VERS>\r\n      <VERS vnumber=\"12\">And they took their journey out of the wilderness of Sin, and encamped in Dophkah.</VERS>\r\n      <VERS vnumber=\"13\">And they departed from Dophkah, and encamped in Alush.</VERS>\r\n      <VERS vnumber=\"14\">And they removed from Alush, and encamped at Rephidim, where was no water for the people to drink.</VERS>\r\n      <VERS vnumber=\"15\">And they departed from Rephidim, and pitched in the wilderness of Sinai.</VERS>\r\n      <VERS vnumber=\"16\">And they removed from the desert of Sinai, and pitched at Kibrothhattaavah.</VERS>\r\n      <VERS vnumber=\"17\">And they departed from Kibrothhattaavah, and encamped at Hazeroth.</VERS>\r\n      <VERS vnumber=\"18\">And they departed from Hazeroth, and pitched in Rithmah.</VERS>\r\n      <VERS vnumber=\"19\">And they departed from Rithmah, and pitched at Rimmonparez.</VERS>\r\n      <VERS vnumber=\"20\">And they departed from Rimmonparez, and pitched in Libnah.</VERS>\r\n      <VERS vnumber=\"21\">And they removed from Libnah, and pitched at Rissah.</VERS>\r\n      <VERS vnumber=\"22\">And they journeyed from Rissah, and pitched in Kehelathah.</VERS>\r\n      <VERS vnumber=\"23\">And they went from Kehelathah, and pitched in mount Shapher.</VERS>\r\n      <VERS vnumber=\"24\">And they removed from mount Shapher, and encamped in Haradah.</VERS>\r\n      <VERS vnumber=\"25\">And they removed from Haradah, and pitched in Makheloth.</VERS>\r\n      <VERS vnumber=\"26\">And they removed from Makheloth, and encamped at Tahath.</VERS>\r\n      <VERS vnumber=\"27\">And they departed from Tahath, and pitched at Tarah.</VERS>\r\n      <VERS vnumber=\"28\">And they removed from Tarah, and pitched in Mithcah.</VERS>\r\n      <VERS vnumber=\"29\">And they went from Mithcah, and pitched in Hashmonah.</VERS>\r\n      <VERS vnumber=\"30\">And they departed from Hashmonah, and encamped at Moseroth.</VERS>\r\n      <VERS vnumber=\"31\">And they departed from Moseroth, and pitched in Benejaakan.</VERS>\r\n      <VERS vnumber=\"32\">And they removed from Benejaakan, and encamped at Horhagidgad.</VERS>\r\n      <VERS vnumber=\"33\">And they went from Horhagidgad, and pitched in Jotbathah.</VERS>\r\n      <VERS vnumber=\"34\">And they removed from Jotbathah, and encamped at Ebronah.</VERS>\r\n      <VERS vnumber=\"35\">And they departed from Ebronah, and encamped at Eziongaber.</VERS>\r\n      <VERS vnumber=\"36\">And they removed from Eziongaber, and pitched in the wilderness of Zin, which is Kadesh.</VERS>\r\n      <VERS vnumber=\"37\">And they removed from Kadesh, and pitched in mount Hor, in the edge of the land of Edom.</VERS>\r\n      <VERS vnumber=\"38\">And 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.</VERS>\r\n      <VERS vnumber=\"39\">And Aaron was an hundred and twenty and three years old when he died in mount Hor.</VERS>\r\n      <VERS vnumber=\"40\">And king Arad the Canaanite, which dwelt in the south in the land of Canaan, heard of the coming of the children of Israel.</VERS>\r\n      <VERS vnumber=\"41\">And they departed from mount Hor, and pitched in Zalmonah.</VERS>\r\n      <VERS vnumber=\"42\">And they departed from Zalmonah, and pitched in Punon.</VERS>\r\n      <VERS vnumber=\"43\">And they departed from Punon, and pitched in Oboth.</VERS>\r\n      <VERS vnumber=\"44\">And they departed from Oboth, and pitched in Ijeabarim, in the border of Moab.</VERS>\r\n      <VERS vnumber=\"45\">And they departed from Iim, and pitched in Dibongad.</VERS>\r\n      <VERS vnumber=\"46\">And they removed from Dibongad, and encamped in Almondiblathaim.</VERS>\r\n      <VERS vnumber=\"47\">And they removed from Almondiblathaim, and pitched in the mountains of Abarim, before Nebo.</VERS>\r\n      <VERS vnumber=\"48\">And they departed from the mountains of Abarim, and pitched in the plains of Moab by Jordan near Jericho.</VERS>\r\n      <VERS vnumber=\"49\">And they pitched by Jordan, from Bethjesimoth even unto Abelshittim in the plains of Moab.</VERS>\r\n      <VERS vnumber=\"50\">And the LORD spake unto Moses in the plains of Moab by Jordan near Jericho, saying,</VERS>\r\n      <VERS vnumber=\"51\">Speak unto the children of Israel, and say unto them, When ye are passed over Jordan into the land of Canaan;</VERS>\r\n      <VERS vnumber=\"52\">Then 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:</VERS>\r\n      <VERS vnumber=\"53\">And ye shall dispossess the inhabitants of the land, and dwell therein: for I have given you the land to possess it.</VERS>\r\n      <VERS vnumber=\"54\">And 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.</VERS>\r\n      <VERS vnumber=\"55\">But 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.</VERS>\r\n      <VERS vnumber=\"56\">Moreover it shall come to pass, that I shall do unto you, as I thought to do unto them.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"34\">\r\n      <VERS vnumber=\"1\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"2\">Command 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:)</VERS>\r\n      <VERS vnumber=\"3\">Then 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:</VERS>\r\n      <VERS vnumber=\"4\">And 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:</VERS>\r\n      <VERS vnumber=\"5\">And the border shall fetch a compass from Azmon unto the river of Egypt, and the goings out of it shall be at the sea.</VERS>\r\n      <VERS vnumber=\"6\">And as for the western border, ye shall even have the great sea for a border: this shall be your west border.</VERS>\r\n      <VERS vnumber=\"7\">And this shall be your north border: from the great sea ye shall point out for you mount Hor:</VERS>\r\n      <VERS vnumber=\"8\">From mount Hor ye shall point out your border unto the entrance of Hamath; and the goings forth of the border shall be to Zedad:</VERS>\r\n      <VERS vnumber=\"9\">And the border shall go on to Ziphron, and the goings out of it shall be at Hazarenan: this shall be your north border.</VERS>\r\n      <VERS vnumber=\"10\">And ye shall point out your east border from Hazarenan to Shepham:</VERS>\r\n      <VERS vnumber=\"11\">And 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:</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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:</VERS>\r\n      <VERS vnumber=\"14\">For 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:</VERS>\r\n      <VERS vnumber=\"15\">The two tribes and the half tribe have received their inheritance on this side Jordan near Jericho eastward, toward the sunrising.</VERS>\r\n      <VERS vnumber=\"16\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"17\">These are the names of the men which shall divide the land unto you: Eleazar the priest, and Joshua the son of Nun.</VERS>\r\n      <VERS vnumber=\"18\">And ye shall take one prince of every tribe, to divide the land by inheritance.</VERS>\r\n      <VERS vnumber=\"19\">And the names of the men are these: Of the tribe of Judah, Caleb the son of Jephunneh.</VERS>\r\n      <VERS vnumber=\"20\">And of the tribe of the children of Simeon, Shemuel the son of Ammihud.</VERS>\r\n      <VERS vnumber=\"21\">Of the tribe of Benjamin, Elidad the son of Chislon.</VERS>\r\n      <VERS vnumber=\"22\">And the prince of the tribe of the children of Dan, Bukki the son of Jogli.</VERS>\r\n      <VERS vnumber=\"23\">The prince of the children of Joseph, for the tribe of the children of Manasseh, Hanniel the son of Ephod.</VERS>\r\n      <VERS vnumber=\"24\">And the prince of the tribe of the children of Ephraim, Kemuel the son of Shiphtan.</VERS>\r\n      <VERS vnumber=\"25\">And the prince of the tribe of the children of Zebulun, Elizaphan the son of Parnach.</VERS>\r\n      <VERS vnumber=\"26\">And the prince of the tribe of the children of Issachar, Paltiel the son of Azzan.</VERS>\r\n      <VERS vnumber=\"27\">And the prince of the tribe of the children of Asher, Ahihud the son of Shelomi.</VERS>\r\n      <VERS vnumber=\"28\">And the prince of the tribe of the children of Naphtali, Pedahel the son of Ammihud.</VERS>\r\n      <VERS vnumber=\"29\">These are they whom the LORD commanded to divide the inheritance unto the children of Israel in the land of Canaan.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"35\">\r\n      <VERS vnumber=\"1\">And the LORD spake unto Moses in the plains of Moab by Jordan near Jericho, saying,</VERS>\r\n      <VERS vnumber=\"2\">Command 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">So all the cities which ye shall give to the Levites shall be forty and eight cities: them shall ye give with their suburbs.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And the LORD spake unto Moses, saying,</VERS>\r\n      <VERS vnumber=\"10\">Speak unto the children of Israel, and say unto them, When ye be come over Jordan into the land of Canaan;</VERS>\r\n      <VERS vnumber=\"11\">Then ye shall appoint you cities to be cities of refuge for you; that the slayer may flee thither, which killeth any person at unawares.</VERS>\r\n      <VERS vnumber=\"12\">And they shall be unto you cities for refuge from the avenger; that the manslayer die not, until he stand before the congregation in judgment.</VERS>\r\n      <VERS vnumber=\"13\">And of these cities which ye shall give six cities shall ye have for refuge.</VERS>\r\n      <VERS vnumber=\"14\">Ye 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.</VERS>\r\n      <VERS vnumber=\"15\">These 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">Or 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.</VERS>\r\n      <VERS vnumber=\"19\">The revenger of blood himself shall slay the murderer: when he meeteth him, he shall slay him.</VERS>\r\n      <VERS vnumber=\"20\">But if he thrust him of hatred, or hurl at him by laying of wait, that he die;</VERS>\r\n      <VERS vnumber=\"21\">Or 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.</VERS>\r\n      <VERS vnumber=\"22\">But if he thrust him suddenly without enmity, or have cast upon him any thing without laying of wait,</VERS>\r\n      <VERS vnumber=\"23\">Or 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:</VERS>\r\n      <VERS vnumber=\"24\">Then the congregation shall judge between the slayer and the revenger of blood according to these judgments:</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">But if the slayer shall at any time come without the border of the city of his refuge, whither he was fled;</VERS>\r\n      <VERS vnumber=\"27\">And 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:</VERS>\r\n      <VERS vnumber=\"28\">Because 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.</VERS>\r\n      <VERS vnumber=\"29\">So these things shall be for a statute of judgment unto you throughout your generations in all your dwellings.</VERS>\r\n      <VERS vnumber=\"30\">Whoso 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.</VERS>\r\n      <VERS vnumber=\"31\">Moreover ye shall take no satisfaction for the life of a murderer, which is guilty of death: but he shall be surely put to death.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">So 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.</VERS>\r\n      <VERS vnumber=\"34\">Defile not therefore the land which ye shall inhabit, wherein I dwell: for I the LORD dwell among the children of Israel.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"36\">\r\n      <VERS vnumber=\"1\">And 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:</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And Moses commanded the children of Israel according to the word of the LORD, saying, The tribe of the sons of Joseph hath said well.</VERS>\r\n      <VERS vnumber=\"6\">This 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.</VERS>\r\n      <VERS vnumber=\"7\">So 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">Neither 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.</VERS>\r\n      <VERS vnumber=\"10\">Even as the LORD commanded Moses, so did the daughters of Zelophehad:</VERS>\r\n      <VERS vnumber=\"11\">For Mahlah, Tirzah, and Hoglah, and Milcah, and Noah, the daughters of Zelophehad, were married unto their father's brothers' sons:</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">These 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.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"5\" bname=\"Deuteronomy\" bsname=\"Deut\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">These 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.</VERS>\r\n      <VERS vnumber=\"2\">(There are eleven days' journey from Horeb by the way of mount Seir unto Kadeshbarnea.)</VERS>\r\n      <VERS vnumber=\"3\">And 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;</VERS>\r\n      <VERS vnumber=\"4\">After 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:</VERS>\r\n      <VERS vnumber=\"5\">On this side Jordan, in the land of Moab, began Moses to declare this law, saying,</VERS>\r\n      <VERS vnumber=\"6\">The LORD our God spake unto us in Horeb, saying, Ye have dwelt long enough in this mount:</VERS>\r\n      <VERS vnumber=\"7\">Turn 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.</VERS>\r\n      <VERS vnumber=\"8\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"9\">And I spake unto you at that time, saying, I am not able to bear you myself alone:</VERS>\r\n      <VERS vnumber=\"10\">The LORD your God hath multiplied you, and, behold, ye are this day as the stars of heaven for multitude.</VERS>\r\n      <VERS vnumber=\"11\">(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!)</VERS>\r\n      <VERS vnumber=\"12\">How can I myself alone bear your cumbrance, and your burden, and your strife?</VERS>\r\n      <VERS vnumber=\"13\">Take you wise men, and understanding, and known among your tribes, and I will make them rulers over you.</VERS>\r\n      <VERS vnumber=\"14\">And ye answered me, and said, The thing which thou hast spoken is good for us to do.</VERS>\r\n      <VERS vnumber=\"15\">So 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">Ye 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.</VERS>\r\n      <VERS vnumber=\"18\">And I commanded you at that time all the things which ye should do.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And I said unto you, Ye are come unto the mountain of the Amorites, which the LORD our God doth give unto us.</VERS>\r\n      <VERS vnumber=\"21\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And the saying pleased me well: and I took twelve men of you, one of a tribe:</VERS>\r\n      <VERS vnumber=\"24\">And they turned and went up into the mountain, and came unto the valley of Eshcol, and searched it out.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">Notwithstanding ye would not go up, but rebelled against the commandment of the LORD your God:</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">Whither 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.</VERS>\r\n      <VERS vnumber=\"29\">Then I said unto you, Dread not, neither be afraid of them.</VERS>\r\n      <VERS vnumber=\"30\">The 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;</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n      <VERS vnumber=\"32\">Yet in this thing ye did not believe the LORD your God,</VERS>\r\n      <VERS vnumber=\"33\">Who 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.</VERS>\r\n      <VERS vnumber=\"34\">And the LORD heard the voice of your words, and was wroth, and sware, saying,</VERS>\r\n      <VERS vnumber=\"35\">Surely there shall not one of these men of this evil generation see that good land, which I sware to give unto your fathers,</VERS>\r\n      <VERS vnumber=\"36\">Save 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.</VERS>\r\n      <VERS vnumber=\"37\">Also the LORD was angry with me for your sakes, saying, Thou also shalt not go in thither.</VERS>\r\n      <VERS vnumber=\"38\">But Joshua the son of Nun, which standeth before thee, he shall go in thither: encourage him: for he shall cause Israel to inherit it.</VERS>\r\n      <VERS vnumber=\"39\">Moreover 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.</VERS>\r\n      <VERS vnumber=\"40\">But as for you, turn you, and take your journey into the wilderness by the way of the Red sea.</VERS>\r\n      <VERS vnumber=\"41\">Then 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.</VERS>\r\n      <VERS vnumber=\"42\">And 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.</VERS>\r\n      <VERS vnumber=\"43\">So I spake unto you; and ye would not hear, but rebelled against the commandment of the LORD, and went presumptuously up into the hill.</VERS>\r\n      <VERS vnumber=\"44\">And 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.</VERS>\r\n      <VERS vnumber=\"45\">And ye returned and wept before the LORD; but the LORD would not hearken to your voice, nor give ear unto you.</VERS>\r\n      <VERS vnumber=\"46\">So ye abode in Kadesh many days, according unto the days that ye abode there.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">Then 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.</VERS>\r\n      <VERS vnumber=\"2\">And the LORD spake unto me, saying,</VERS>\r\n      <VERS vnumber=\"3\">Ye have compassed this mountain long enough: turn you northward.</VERS>\r\n      <VERS vnumber=\"4\">And 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:</VERS>\r\n      <VERS vnumber=\"5\">Meddle 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.</VERS>\r\n      <VERS vnumber=\"6\">Ye 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.</VERS>\r\n      <VERS vnumber=\"7\">For 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">The Emims dwelt therein in times past, a people great, and many, and tall, as the Anakims;</VERS>\r\n      <VERS vnumber=\"11\">Which also were accounted giants, as the Anakims; but the Moabites call them Emims.</VERS>\r\n      <VERS vnumber=\"12\">The 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.</VERS>\r\n      <VERS vnumber=\"13\">Now rise up, said I, and get you over the brook Zered. And we went over the brook Zered.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">For indeed the hand of the LORD was against them, to destroy them from among the host, until they were consumed.</VERS>\r\n      <VERS vnumber=\"16\">So it came to pass, when all the men of war were consumed and dead from among the people,</VERS>\r\n      <VERS vnumber=\"17\">That the LORD spake unto me, saying,</VERS>\r\n      <VERS vnumber=\"18\">Thou art to pass over through Ar, the coast of Moab, this day:</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">(That also was accounted a land of giants: giants dwelt therein in old time; and the Ammonites call them Zamzummims;</VERS>\r\n      <VERS vnumber=\"21\">A 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:</VERS>\r\n      <VERS vnumber=\"22\">As 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:</VERS>\r\n      <VERS vnumber=\"23\">And the Avims which dwelt in Hazerim, even unto Azzah, the Caphtorims, which came forth out of Caphtor, destroyed them, and dwelt in their stead.)</VERS>\r\n      <VERS vnumber=\"24\">Rise 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.</VERS>\r\n      <VERS vnumber=\"25\">This 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.</VERS>\r\n      <VERS vnumber=\"26\">And I sent messengers out of the wilderness of Kedemoth unto Sihon king of Heshbon with words of peace, saying,</VERS>\r\n      <VERS vnumber=\"27\">Let 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.</VERS>\r\n      <VERS vnumber=\"28\">Thou 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;</VERS>\r\n      <VERS vnumber=\"29\">(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.</VERS>\r\n      <VERS vnumber=\"30\">But 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.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n      <VERS vnumber=\"32\">Then Sihon came out against us, he and all his people, to fight at Jahaz.</VERS>\r\n      <VERS vnumber=\"33\">And the LORD our God delivered him before us; and we smote him, and his sons, and all his people.</VERS>\r\n      <VERS vnumber=\"34\">And 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:</VERS>\r\n      <VERS vnumber=\"35\">Only the cattle we took for a prey unto ourselves, and the spoil of the cities which we took.</VERS>\r\n      <VERS vnumber=\"36\">From 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:</VERS>\r\n      <VERS vnumber=\"37\">Only 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Then 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">So 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">All these cities were fenced with high walls, gates, and bars; beside unwalled towns a great many.</VERS>\r\n      <VERS vnumber=\"6\">And we utterly destroyed them, as we did unto Sihon king of Heshbon, utterly destroying the men, women, and children, of every city.</VERS>\r\n      <VERS vnumber=\"7\">But all the cattle, and the spoil of the cities, we took for a prey to ourselves.</VERS>\r\n      <VERS vnumber=\"8\">And 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;</VERS>\r\n      <VERS vnumber=\"9\">(Which Hermon the Sidonians call Sirion; and the Amorites call it Shenir;)</VERS>\r\n      <VERS vnumber=\"10\">All the cities of the plain, and all Gilead, and all Bashan, unto Salchah and Edrei, cities of the kingdom of Og in Bashan.</VERS>\r\n      <VERS vnumber=\"11\">For 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">Jair 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.</VERS>\r\n      <VERS vnumber=\"15\">And I gave Gilead unto Machir.</VERS>\r\n      <VERS vnumber=\"16\">And 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;</VERS>\r\n      <VERS vnumber=\"17\">The plain also, and Jordan, and the coast thereof, from Chinnereth even unto the sea of the plain, even the salt sea, under Ashdothpisgah eastward.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">But 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;</VERS>\r\n      <VERS vnumber=\"20\">Until 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">Ye shall not fear them: for the LORD your God he shall fight for you.</VERS>\r\n      <VERS vnumber=\"23\">And I besought the LORD at that time, saying,</VERS>\r\n      <VERS vnumber=\"24\">O 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?</VERS>\r\n      <VERS vnumber=\"25\">I pray thee, let me go over, and see the good land that is beyond Jordan, that goodly mountain, and Lebanon.</VERS>\r\n      <VERS vnumber=\"26\">But 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.</VERS>\r\n      <VERS vnumber=\"27\">Get 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.</VERS>\r\n      <VERS vnumber=\"28\">But 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.</VERS>\r\n      <VERS vnumber=\"29\">So we abode in the valley over against Bethpeor.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">Now 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.</VERS>\r\n      <VERS vnumber=\"2\">Ye 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.</VERS>\r\n      <VERS vnumber=\"3\">Your 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.</VERS>\r\n      <VERS vnumber=\"4\">But ye that did cleave unto the LORD your God are alive every one of you this day.</VERS>\r\n      <VERS vnumber=\"5\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"6\">Keep 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.</VERS>\r\n      <VERS vnumber=\"7\">For 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?</VERS>\r\n      <VERS vnumber=\"8\">And what nation is there so great, that hath statutes and judgments so righteous as all this law, which I set before you this day?</VERS>\r\n      <VERS vnumber=\"9\">Only 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;</VERS>\r\n      <VERS vnumber=\"10\">Specially 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And he declared unto you his covenant, which he commanded you to perform, even ten commandments; and he wrote them upon two tables of stone.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">Take 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:</VERS>\r\n      <VERS vnumber=\"16\">Lest ye corrupt yourselves, and make you a graven image, the similitude of any figure, the likeness of male or female,</VERS>\r\n      <VERS vnumber=\"17\">The likeness of any beast that is on the earth, the likeness of any winged fowl that flieth in the air,</VERS>\r\n      <VERS vnumber=\"18\">The likeness of any thing that creepeth on the ground, the likeness of any fish that is in the waters beneath the earth:</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">But 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.</VERS>\r\n      <VERS vnumber=\"21\">Furthermore 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:</VERS>\r\n      <VERS vnumber=\"22\">But I must die in this land, I must not go over Jordan: but ye shall go over, and possess that good land.</VERS>\r\n      <VERS vnumber=\"23\">Take 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.</VERS>\r\n      <VERS vnumber=\"24\">For the LORD thy God is a consuming fire, even a jealous God.</VERS>\r\n      <VERS vnumber=\"25\">When 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:</VERS>\r\n      <VERS vnumber=\"26\">I 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And there ye shall serve gods, the work of men's hands, wood and stone, which neither see, nor hear, nor eat, nor smell.</VERS>\r\n      <VERS vnumber=\"29\">But 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.</VERS>\r\n      <VERS vnumber=\"30\">When 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;</VERS>\r\n      <VERS vnumber=\"31\">(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.</VERS>\r\n      <VERS vnumber=\"32\">For 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?</VERS>\r\n      <VERS vnumber=\"33\">Did ever people hear the voice of God speaking out of the midst of the fire, as thou hast heard, and live?</VERS>\r\n      <VERS vnumber=\"34\">Or 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?</VERS>\r\n      <VERS vnumber=\"35\">Unto thee it was shewed, that thou mightest know that the LORD he is God; there is none else beside him.</VERS>\r\n      <VERS vnumber=\"36\">Out 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.</VERS>\r\n      <VERS vnumber=\"37\">And 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;</VERS>\r\n      <VERS vnumber=\"38\">To 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.</VERS>\r\n      <VERS vnumber=\"39\">Know 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.</VERS>\r\n      <VERS vnumber=\"40\">Thou 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.</VERS>\r\n      <VERS vnumber=\"41\">Then Moses severed three cities on this side Jordan toward the sunrising;</VERS>\r\n      <VERS vnumber=\"42\">That 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:</VERS>\r\n      <VERS vnumber=\"43\">Namely, 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.</VERS>\r\n      <VERS vnumber=\"44\">And this is the law which Moses set before the children of Israel:</VERS>\r\n      <VERS vnumber=\"45\">These are the testimonies, and the statutes, and the judgments, which Moses spake unto the children of Israel, after they came forth out of Egypt,</VERS>\r\n      <VERS vnumber=\"46\">On 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:</VERS>\r\n      <VERS vnumber=\"47\">And 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;</VERS>\r\n      <VERS vnumber=\"48\">From Aroer, which is by the bank of the river Arnon, even unto mount Sion, which is Hermon,</VERS>\r\n      <VERS vnumber=\"49\">And all the plain on this side Jordan eastward, even unto the sea of the plain, under the springs of Pisgah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">The LORD our God made a covenant with us in Horeb.</VERS>\r\n      <VERS vnumber=\"3\">The LORD made not this covenant with our fathers, but with us, even us, who are all of us here alive this day.</VERS>\r\n      <VERS vnumber=\"4\">The LORD talked with you face to face in the mount out of the midst of the fire,</VERS>\r\n      <VERS vnumber=\"5\">(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,</VERS>\r\n      <VERS vnumber=\"6\">I am the LORD thy God, which brought thee out of the land of Egypt, from the house of bondage.</VERS>\r\n      <VERS vnumber=\"7\">Thou shalt have none other gods before me.</VERS>\r\n      <VERS vnumber=\"8\">Thou 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:</VERS>\r\n      <VERS vnumber=\"9\">Thou 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,</VERS>\r\n      <VERS vnumber=\"10\">And shewing mercy unto thousands of them that love me and keep my commandments.</VERS>\r\n      <VERS vnumber=\"11\">Thou 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.</VERS>\r\n      <VERS vnumber=\"12\">Keep the sabbath day to sanctify it, as the LORD thy God hath commanded thee.</VERS>\r\n      <VERS vnumber=\"13\">Six days thou shalt labour, and do all thy work:</VERS>\r\n      <VERS vnumber=\"14\">But 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">Honour 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.</VERS>\r\n      <VERS vnumber=\"17\">Thou shalt not kill.</VERS>\r\n      <VERS vnumber=\"18\">Neither shalt thou commit adultery.</VERS>\r\n      <VERS vnumber=\"19\">Neither shalt thou steal.</VERS>\r\n      <VERS vnumber=\"20\">Neither shalt thou bear false witness against thy neighbour.</VERS>\r\n      <VERS vnumber=\"21\">Neither 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.</VERS>\r\n      <VERS vnumber=\"22\">These 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.</VERS>\r\n      <VERS vnumber=\"23\">And 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;</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">Now 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.</VERS>\r\n      <VERS vnumber=\"26\">For 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?</VERS>\r\n      <VERS vnumber=\"27\">Go 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.</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">O 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!</VERS>\r\n      <VERS vnumber=\"30\">Go say to them, Get you into your tents again.</VERS>\r\n      <VERS vnumber=\"31\">But 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.</VERS>\r\n      <VERS vnumber=\"32\">Ye 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.</VERS>\r\n      <VERS vnumber=\"33\">Ye 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">Now 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:</VERS>\r\n      <VERS vnumber=\"2\">That 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.</VERS>\r\n      <VERS vnumber=\"3\">Hear 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.</VERS>\r\n      <VERS vnumber=\"4\">Hear, O Israel: The LORD our God is one LORD:</VERS>\r\n      <VERS vnumber=\"5\">And thou shalt love the LORD thy God with all thine heart, and with all thy soul, and with all thy might.</VERS>\r\n      <VERS vnumber=\"6\">And these words, which I command thee this day, shall be in thine heart:</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And thou shalt bind them for a sign upon thine hand, and they shall be as frontlets between thine eyes.</VERS>\r\n      <VERS vnumber=\"9\">And thou shalt write them upon the posts of thy house, and on thy gates.</VERS>\r\n      <VERS vnumber=\"10\">And 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,</VERS>\r\n      <VERS vnumber=\"11\">And 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;</VERS>\r\n      <VERS vnumber=\"12\">Then beware lest thou forget the LORD, which brought thee forth out of the land of Egypt, from the house of bondage.</VERS>\r\n      <VERS vnumber=\"13\">Thou shalt fear the LORD thy God, and serve him, and shalt swear by his name.</VERS>\r\n      <VERS vnumber=\"14\">Ye shall not go after other gods, of the gods of the people which are round about you;</VERS>\r\n      <VERS vnumber=\"15\">(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.</VERS>\r\n      <VERS vnumber=\"16\">Ye shall not tempt the LORD your God, as ye tempted him in Massah.</VERS>\r\n      <VERS vnumber=\"17\">Ye shall diligently keep the commandments of the LORD your God, and his testimonies, and his statutes, which he hath commanded thee.</VERS>\r\n      <VERS vnumber=\"18\">And 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,</VERS>\r\n      <VERS vnumber=\"19\">To cast out all thine enemies from before thee, as the LORD hath spoken.</VERS>\r\n      <VERS vnumber=\"20\">And 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?</VERS>\r\n      <VERS vnumber=\"21\">Then 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:</VERS>\r\n      <VERS vnumber=\"22\">And the LORD shewed signs and wonders, great and sore, upon Egypt, upon Pharaoh, and upon all his household, before our eyes:</VERS>\r\n      <VERS vnumber=\"23\">And he brought us out from thence, that he might bring us in, to give us the land which he sware unto our fathers.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And it shall be our righteousness, if we observe to do all these commandments before the LORD our God, as he hath commanded us.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">When 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;</VERS>\r\n      <VERS vnumber=\"2\">And 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:</VERS>\r\n      <VERS vnumber=\"3\">Neither shalt thou make marriages with them; thy daughter thou shalt not give unto his son, nor his daughter shalt thou take unto thy son.</VERS>\r\n      <VERS vnumber=\"4\">For 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.</VERS>\r\n      <VERS vnumber=\"5\">But 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.</VERS>\r\n      <VERS vnumber=\"6\">For 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.</VERS>\r\n      <VERS vnumber=\"7\">The 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:</VERS>\r\n      <VERS vnumber=\"8\">But 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.</VERS>\r\n      <VERS vnumber=\"9\">Know 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;</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">Thou shalt therefore keep the commandments, and the statutes, and the judgments, which I command thee this day, to do them.</VERS>\r\n      <VERS vnumber=\"12\">Wherefore 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:</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">Thou shalt be blessed above all people: there shall not be male or female barren among you, or among your cattle.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">If thou shalt say in thine heart, These nations are more than I; how can I dispossess them?</VERS>\r\n      <VERS vnumber=\"18\">Thou shalt not be afraid of them: but shalt well remember what the LORD thy God did unto Pharaoh, and unto all Egypt;</VERS>\r\n      <VERS vnumber=\"19\">The 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.</VERS>\r\n      <VERS vnumber=\"20\">Moreover the LORD thy God will send the hornet among them, until they that are left, and hide themselves from thee, be destroyed.</VERS>\r\n      <VERS vnumber=\"21\">Thou shalt not be affrighted at them: for the LORD thy God is among you, a mighty God and terrible.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">But the LORD thy God shall deliver them unto thee, and shall destroy them with a mighty destruction, until they be destroyed.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">The 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 therein: for it is an abomination to the LORD thy God.</VERS>\r\n      <VERS vnumber=\"26\">Neither 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">All 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">Thy raiment waxed not old upon thee, neither did thy foot swell, these forty years.</VERS>\r\n      <VERS vnumber=\"5\">Thou shalt also consider in thine heart, that, as a man chasteneth his son, so the LORD thy God chasteneth thee.</VERS>\r\n      <VERS vnumber=\"6\">Therefore thou shalt keep the commandments of the LORD thy God, to walk in his ways, and to fear him.</VERS>\r\n      <VERS vnumber=\"7\">For 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;</VERS>\r\n      <VERS vnumber=\"8\">A land of wheat, and barley, and vines, and fig trees, and pomegranates; a land of oil olive, and honey;</VERS>\r\n      <VERS vnumber=\"9\">A 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.</VERS>\r\n      <VERS vnumber=\"10\">When thou hast eaten and art full, then thou shalt bless the LORD thy God for the good land which he hath given thee.</VERS>\r\n      <VERS vnumber=\"11\">Beware 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:</VERS>\r\n      <VERS vnumber=\"12\">Lest when thou hast eaten and art full, and hast built goodly houses, and dwelt therein;</VERS>\r\n      <VERS vnumber=\"13\">And when thy herds and thy flocks multiply, and thy silver and thy gold is multiplied, and all that thou hast is multiplied;</VERS>\r\n      <VERS vnumber=\"14\">Then 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;</VERS>\r\n      <VERS vnumber=\"15\">Who 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;</VERS>\r\n      <VERS vnumber=\"16\">Who 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;</VERS>\r\n      <VERS vnumber=\"17\">And thou say in thine heart, My power and the might of mine hand hath gotten me this wealth.</VERS>\r\n      <VERS vnumber=\"18\">But 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">As 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">Hear, 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,</VERS>\r\n      <VERS vnumber=\"2\">A 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!</VERS>\r\n      <VERS vnumber=\"3\">Understand 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.</VERS>\r\n      <VERS vnumber=\"4\">Speak 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.</VERS>\r\n      <VERS vnumber=\"5\">Not 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.</VERS>\r\n      <VERS vnumber=\"6\">Understand therefore, that the LORD thy God giveth thee not this good land to possess it for thy righteousness; for thou art a stiffnecked people.</VERS>\r\n      <VERS vnumber=\"7\">Remember, 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.</VERS>\r\n      <VERS vnumber=\"8\">Also in Horeb ye provoked the LORD to wrath, so that the LORD was angry with you to have destroyed you.</VERS>\r\n      <VERS vnumber=\"9\">When 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:</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">Furthermore the LORD spake unto me, saying, I have seen this people, and, behold, it is a stiffnecked people:</VERS>\r\n      <VERS vnumber=\"14\">Let 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.</VERS>\r\n      <VERS vnumber=\"15\">So 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And I took the two tables, and cast them out of my two hands, and brake them before your eyes.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">For 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.</VERS>\r\n      <VERS vnumber=\"20\">And the LORD was very angry with Aaron to have destroyed him: and I prayed for Aaron also the same time.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And at Taberah, and at Massah, and at Kibrothhattaavah, ye provoked the LORD to wrath.</VERS>\r\n      <VERS vnumber=\"23\">Likewise 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.</VERS>\r\n      <VERS vnumber=\"24\">Ye have been rebellious against the LORD from the day that I knew you.</VERS>\r\n      <VERS vnumber=\"25\">Thus 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.</VERS>\r\n      <VERS vnumber=\"26\">I 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.</VERS>\r\n      <VERS vnumber=\"27\">Remember thy servants, Abraham, Isaac, and Jacob; look not unto the stubbornness of this people, nor to their wickedness, nor to their sin:</VERS>\r\n      <VERS vnumber=\"28\">Lest 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.</VERS>\r\n      <VERS vnumber=\"29\">Yet they are thy people and thine inheritance, which thou broughtest out by thy mighty power and by thy stretched out arm.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">At 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">From thence they journeyed unto Gudgodah; and from Gudgodah to Jotbath, a land of rivers of waters.</VERS>\r\n      <VERS vnumber=\"8\">At 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.</VERS>\r\n      <VERS vnumber=\"9\">Wherefore Levi hath no part nor inheritance with his brethren; the LORD is his inheritance, according as the LORD thy God promised him.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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,</VERS>\r\n      <VERS vnumber=\"13\">To keep the commandments of the LORD, and his statutes, which I command thee this day for thy good?</VERS>\r\n      <VERS vnumber=\"14\">Behold, the heaven and the heaven of heavens is the LORD'S thy God, the earth also, with all that therein is.</VERS>\r\n      <VERS vnumber=\"15\">Only 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.</VERS>\r\n      <VERS vnumber=\"16\">Circumcise therefore the foreskin of your heart, and be no more stiffnecked.</VERS>\r\n      <VERS vnumber=\"17\">For 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:</VERS>\r\n      <VERS vnumber=\"18\">He doth execute the judgment of the fatherless and widow, and loveth the stranger, in giving him food and raiment.</VERS>\r\n      <VERS vnumber=\"19\">Love ye therefore the stranger: for ye were strangers in the land of Egypt.</VERS>\r\n      <VERS vnumber=\"20\">Thou shalt fear the LORD thy God; him shalt thou serve, and to him shalt thou cleave, and swear by his name.</VERS>\r\n      <VERS vnumber=\"21\">He is thy praise, and he is thy God, that hath done for thee these great and terrible things, which thine eyes have seen.</VERS>\r\n      <VERS vnumber=\"22\">Thy 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">Therefore thou shalt love the LORD thy God, and keep his charge, and his statutes, and his judgments, and his commandments, alway.</VERS>\r\n      <VERS vnumber=\"2\">And 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,</VERS>\r\n      <VERS vnumber=\"3\">And his miracles, and his acts, which he did in the midst of Egypt unto Pharaoh the king of Egypt, and unto all his land;</VERS>\r\n      <VERS vnumber=\"4\">And 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;</VERS>\r\n      <VERS vnumber=\"5\">And what he did unto you in the wilderness, until ye came into this place;</VERS>\r\n      <VERS vnumber=\"6\">And 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:</VERS>\r\n      <VERS vnumber=\"7\">But your eyes have seen all the great acts of the LORD which he did.</VERS>\r\n      <VERS vnumber=\"8\">Therefore 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;</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">For 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:</VERS>\r\n      <VERS vnumber=\"11\">But the land, whither ye go to possess it, is a land of hills and valleys, and drinketh water of the rain of heaven:</VERS>\r\n      <VERS vnumber=\"12\">A 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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,</VERS>\r\n      <VERS vnumber=\"14\">That 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.</VERS>\r\n      <VERS vnumber=\"15\">And I will send grass in thy fields for thy cattle, that thou mayest eat and be full.</VERS>\r\n      <VERS vnumber=\"16\">Take heed to yourselves, that your heart be not deceived, and ye turn aside, and serve other gods, and worship them;</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And thou shalt write them upon the door posts of thine house, and upon thy gates:</VERS>\r\n      <VERS vnumber=\"21\">That 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.</VERS>\r\n      <VERS vnumber=\"22\">For 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;</VERS>\r\n      <VERS vnumber=\"23\">Then will the LORD drive out all these nations from before you, and ye shall possess greater nations and mightier than yourselves.</VERS>\r\n      <VERS vnumber=\"24\">Every 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.</VERS>\r\n      <VERS vnumber=\"25\">There 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.</VERS>\r\n      <VERS vnumber=\"26\">Behold, I set before you this day a blessing and a curse;</VERS>\r\n      <VERS vnumber=\"27\">A blessing, if ye obey the commandments of the LORD your God, which I command you this day:</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">Are 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?</VERS>\r\n      <VERS vnumber=\"31\">For 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.</VERS>\r\n      <VERS vnumber=\"32\">And ye shall observe to do all the statutes and judgments which I set before you this day.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">These 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.</VERS>\r\n      <VERS vnumber=\"2\">Ye 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:</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">Ye shall not do so unto the LORD your God.</VERS>\r\n      <VERS vnumber=\"5\">But 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:</VERS>\r\n      <VERS vnumber=\"6\">And 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:</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">Ye shall not do after all the things that we do here this day, every man whatsoever is right in his own eyes.</VERS>\r\n      <VERS vnumber=\"9\">For ye are not as yet come to the rest and to the inheritance, which the LORD your God giveth you.</VERS>\r\n      <VERS vnumber=\"10\">But 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;</VERS>\r\n      <VERS vnumber=\"11\">Then 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:</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">Take heed to thyself that thou offer not thy burnt offerings in every place that thou seest:</VERS>\r\n      <VERS vnumber=\"14\">But 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.</VERS>\r\n      <VERS vnumber=\"15\">Notwithstanding 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.</VERS>\r\n      <VERS vnumber=\"16\">Only ye shall not eat the blood; ye shall pour it upon the earth as water.</VERS>\r\n      <VERS vnumber=\"17\">Thou 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:</VERS>\r\n      <VERS vnumber=\"18\">But 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.</VERS>\r\n      <VERS vnumber=\"19\">Take heed to thyself that thou forsake not the Levite as long as thou livest upon the earth.</VERS>\r\n      <VERS vnumber=\"20\">When 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.</VERS>\r\n      <VERS vnumber=\"21\">If 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.</VERS>\r\n      <VERS vnumber=\"22\">Even as the roebuck and the hart is eaten, so thou shalt eat them: the unclean and the clean shall eat of them alike.</VERS>\r\n      <VERS vnumber=\"23\">Only be sure that thou eat not the blood: for the blood is the life; and thou mayest not eat the life with the flesh.</VERS>\r\n      <VERS vnumber=\"24\">Thou shalt not eat it; thou shalt pour it upon the earth as water.</VERS>\r\n      <VERS vnumber=\"25\">Thou 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.</VERS>\r\n      <VERS vnumber=\"26\">Only thy holy things which thou hast, and thy vows, thou shalt take, and go unto the place which the LORD shall choose:</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">Observe 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.</VERS>\r\n      <VERS vnumber=\"29\">When 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;</VERS>\r\n      <VERS vnumber=\"30\">Take 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.</VERS>\r\n      <VERS vnumber=\"31\">Thou 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.</VERS>\r\n      <VERS vnumber=\"32\">What thing soever I command you, observe to do it: thou shalt not add thereto, nor diminish from it.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">If there arise among you a prophet, or a dreamer of dreams, and giveth thee a sign or a wonder,</VERS>\r\n      <VERS vnumber=\"2\">And 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;</VERS>\r\n      <VERS vnumber=\"3\">Thou 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.</VERS>\r\n      <VERS vnumber=\"4\">Ye 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">If 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;</VERS>\r\n      <VERS vnumber=\"7\">Namely, 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;</VERS>\r\n      <VERS vnumber=\"8\">Thou shalt not consent unto him, nor hearken unto him; neither shall thine eye pity him, neither shalt thou spare, neither shalt thou conceal him:</VERS>\r\n      <VERS vnumber=\"9\">But 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And all Israel shall hear, and fear, and shall do no more any such wickedness as this is among you.</VERS>\r\n      <VERS vnumber=\"12\">If thou shalt hear say in one of thy cities, which the LORD thy God hath given thee to dwell there, saying,</VERS>\r\n      <VERS vnumber=\"13\">Certain 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;</VERS>\r\n      <VERS vnumber=\"14\">Then 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;</VERS>\r\n      <VERS vnumber=\"15\">Thou 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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;</VERS>\r\n      <VERS vnumber=\"18\">When 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">Ye are the children of the LORD your God: ye shall not cut yourselves, nor make any baldness between your eyes for the dead.</VERS>\r\n      <VERS vnumber=\"2\">For 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.</VERS>\r\n      <VERS vnumber=\"3\">Thou shalt not eat any abominable thing.</VERS>\r\n      <VERS vnumber=\"4\">These are the beasts which ye shall eat: the ox, the sheep, and the goat,</VERS>\r\n      <VERS vnumber=\"5\">The hart, and the roebuck, and the fallow deer, and the wild goat, and the pygarg, and the wild ox, and the chamois.</VERS>\r\n      <VERS vnumber=\"6\">And every beast that parteth the hoof, and cleaveth the cleft into two claws, and cheweth the cud among the beasts, that ye shall eat.</VERS>\r\n      <VERS vnumber=\"7\">Nevertheless 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">These ye shall eat of all that are in the waters: all that have fins and scales shall ye eat:</VERS>\r\n      <VERS vnumber=\"10\">And whatsoever hath not fins and scales ye may not eat; it is unclean unto you.</VERS>\r\n      <VERS vnumber=\"11\">Of all clean birds ye shall eat.</VERS>\r\n      <VERS vnumber=\"12\">But these are they of which ye shall not eat: the eagle, and the ossifrage, and the ospray,</VERS>\r\n      <VERS vnumber=\"13\">And the glede, and the kite, and the vulture after his kind,</VERS>\r\n      <VERS vnumber=\"14\">And every raven after his kind,</VERS>\r\n      <VERS vnumber=\"15\">And the owl, and the night hawk, and the cuckow, and the hawk after his kind,</VERS>\r\n      <VERS vnumber=\"16\">The little owl, and the great owl, and the swan,</VERS>\r\n      <VERS vnumber=\"17\">And the pelican, and the gier eagle, and the cormorant,</VERS>\r\n      <VERS vnumber=\"18\">And the stork, and the heron after her kind, and the lapwing, and the bat.</VERS>\r\n      <VERS vnumber=\"19\">And every creeping thing that flieth is unclean unto you: they shall not be eaten.</VERS>\r\n      <VERS vnumber=\"20\">But of all clean fowls ye may eat.</VERS>\r\n      <VERS vnumber=\"21\">Ye shall not eat of any thing 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.</VERS>\r\n      <VERS vnumber=\"22\">Thou shalt truly tithe all the increase of thy seed, that the field bringeth forth year by year.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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:</VERS>\r\n      <VERS vnumber=\"25\">Then 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:</VERS>\r\n      <VERS vnumber=\"26\">And 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,</VERS>\r\n      <VERS vnumber=\"27\">And the Levite that is within thy gates; thou shalt not forsake him; for he hath no part nor inheritance with thee.</VERS>\r\n      <VERS vnumber=\"28\">At 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:</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">At the end of every seven years thou shalt make a release.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">Of a foreigner thou mayest exact it again: but that which is thine with thy brother thine hand shall release;</VERS>\r\n      <VERS vnumber=\"4\">Save 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:</VERS>\r\n      <VERS vnumber=\"5\">Only 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.</VERS>\r\n      <VERS vnumber=\"6\">For 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.</VERS>\r\n      <VERS vnumber=\"7\">If 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:</VERS>\r\n      <VERS vnumber=\"8\">But thou shalt open thine hand wide unto him, and shalt surely lend him sufficient for his need, in that which he wanteth.</VERS>\r\n      <VERS vnumber=\"9\">Beware 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.</VERS>\r\n      <VERS vnumber=\"10\">Thou 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.</VERS>\r\n      <VERS vnumber=\"11\">For 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And when thou sendest him out free from thee, thou shalt not let him go away empty:</VERS>\r\n      <VERS vnumber=\"14\">Thou 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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;</VERS>\r\n      <VERS vnumber=\"17\">Then 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.</VERS>\r\n      <VERS vnumber=\"18\">It 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.</VERS>\r\n      <VERS vnumber=\"19\">All 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.</VERS>\r\n      <VERS vnumber=\"20\">Thou shalt eat it before the LORD thy God year by year in the place which the LORD shall choose, thou and thy household.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">Thou shalt eat it within thy gates: the unclean and the clean person shall eat it alike, as the roebuck, and as the hart.</VERS>\r\n      <VERS vnumber=\"23\">Only thou shalt not eat the blood thereof; thou shalt pour it upon the ground as water.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">Observe 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.</VERS>\r\n      <VERS vnumber=\"2\">Thou 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.</VERS>\r\n      <VERS vnumber=\"3\">Thou 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">Thou mayest not sacrifice the passover within any of thy gates, which the LORD thy God giveth thee:</VERS>\r\n      <VERS vnumber=\"6\">But 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">Six 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.</VERS>\r\n      <VERS vnumber=\"9\">Seven 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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:</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And thou shalt remember that thou wast a bondman in Egypt: and thou shalt observe and do these statutes.</VERS>\r\n      <VERS vnumber=\"13\">Thou shalt observe the feast of tabernacles seven days, after that thou hast gathered in thy corn and thy wine:</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">Seven 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.</VERS>\r\n      <VERS vnumber=\"16\">Three 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:</VERS>\r\n      <VERS vnumber=\"17\">Every man shall give as he is able, according to the blessing of the LORD thy God which he hath given thee.</VERS>\r\n      <VERS vnumber=\"18\">Judges 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.</VERS>\r\n      <VERS vnumber=\"19\">Thou 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.</VERS>\r\n      <VERS vnumber=\"20\">That which is altogether just shalt thou follow, that thou mayest live, and inherit the land which the LORD thy God giveth thee.</VERS>\r\n      <VERS vnumber=\"21\">Thou shalt not plant thee a grove of any trees near unto the altar of the LORD thy God, which thou shalt make thee.</VERS>\r\n      <VERS vnumber=\"22\">Neither shalt thou set thee up any image; which the LORD thy God hateth.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"17\">\r\n      <VERS vnumber=\"1\">Thou 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.</VERS>\r\n      <VERS vnumber=\"2\">If 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,</VERS>\r\n      <VERS vnumber=\"3\">And 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;</VERS>\r\n      <VERS vnumber=\"4\">And 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:</VERS>\r\n      <VERS vnumber=\"5\">Then 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.</VERS>\r\n      <VERS vnumber=\"6\">At 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.</VERS>\r\n      <VERS vnumber=\"7\">The 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.</VERS>\r\n      <VERS vnumber=\"8\">If 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;</VERS>\r\n      <VERS vnumber=\"9\">And 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:</VERS>\r\n      <VERS vnumber=\"10\">And 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:</VERS>\r\n      <VERS vnumber=\"11\">According 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And all the people shall hear, and fear, and do no more presumptuously.</VERS>\r\n      <VERS vnumber=\"14\">When 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;</VERS>\r\n      <VERS vnumber=\"15\">Thou 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.</VERS>\r\n      <VERS vnumber=\"16\">But 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.</VERS>\r\n      <VERS vnumber=\"17\">Neither shall he multiply wives to himself, that his heart turn not away: neither shall he greatly multiply to himself silver and gold.</VERS>\r\n      <VERS vnumber=\"18\">And 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:</VERS>\r\n      <VERS vnumber=\"19\">And 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:</VERS>\r\n      <VERS vnumber=\"20\">That 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"18\">\r\n      <VERS vnumber=\"1\">The 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.</VERS>\r\n      <VERS vnumber=\"2\">Therefore shall they have no inheritance among their brethren: the LORD is their inheritance, as he hath said unto them.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">The 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.</VERS>\r\n      <VERS vnumber=\"5\">For 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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;</VERS>\r\n      <VERS vnumber=\"7\">Then he shall minister in the name of the LORD his God, as all his brethren the Levites do, which stand there before the LORD.</VERS>\r\n      <VERS vnumber=\"8\">They shall have like portions to eat, beside that which cometh of the sale of his patrimony.</VERS>\r\n      <VERS vnumber=\"9\">When 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.</VERS>\r\n      <VERS vnumber=\"10\">There 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,</VERS>\r\n      <VERS vnumber=\"11\">Or a charmer, or a consulter with familiar spirits, or a wizard, or a necromancer.</VERS>\r\n      <VERS vnumber=\"12\">For 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.</VERS>\r\n      <VERS vnumber=\"13\">Thou shalt be perfect with the LORD thy God.</VERS>\r\n      <VERS vnumber=\"14\">For 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.</VERS>\r\n      <VERS vnumber=\"15\">The 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;</VERS>\r\n      <VERS vnumber=\"16\">According 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.</VERS>\r\n      <VERS vnumber=\"17\">And the LORD said unto me, They have well spoken that which they have spoken.</VERS>\r\n      <VERS vnumber=\"18\">I 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">But 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.</VERS>\r\n      <VERS vnumber=\"21\">And if thou say in thine heart, How shall we know the word which the LORD hath not spoken?</VERS>\r\n      <VERS vnumber=\"22\">When 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"19\">\r\n      <VERS vnumber=\"1\">When 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;</VERS>\r\n      <VERS vnumber=\"2\">Thou shalt separate three cities for thee in the midst of thy land, which the LORD thy God giveth thee to possess it.</VERS>\r\n      <VERS vnumber=\"3\">Thou 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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;</VERS>\r\n      <VERS vnumber=\"5\">As 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:</VERS>\r\n      <VERS vnumber=\"6\">Lest 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.</VERS>\r\n      <VERS vnumber=\"7\">Wherefore I command thee, saying, Thou shalt separate three cities for thee.</VERS>\r\n      <VERS vnumber=\"8\">And 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;</VERS>\r\n      <VERS vnumber=\"9\">If 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:</VERS>\r\n      <VERS vnumber=\"10\">That innocent blood be not shed in thy land, which the LORD thy God giveth thee for an inheritance, and so blood be upon thee.</VERS>\r\n      <VERS vnumber=\"11\">But 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:</VERS>\r\n      <VERS vnumber=\"12\">Then 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.</VERS>\r\n      <VERS vnumber=\"13\">Thine eye shall not pity him, but thou shalt put away the guilt of innocent blood from Israel, that it may go well with thee.</VERS>\r\n      <VERS vnumber=\"14\">Thou 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.</VERS>\r\n      <VERS vnumber=\"15\">One 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.</VERS>\r\n      <VERS vnumber=\"16\">If a false witness rise up against any man to testify against him that which is wrong;</VERS>\r\n      <VERS vnumber=\"17\">Then 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;</VERS>\r\n      <VERS vnumber=\"18\">And the judges shall make diligent inquisition: and, behold, if the witness be a false witness, and hath testified falsely against his brother;</VERS>\r\n      <VERS vnumber=\"19\">Then 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.</VERS>\r\n      <VERS vnumber=\"20\">And those which remain shall hear, and fear, and shall henceforth commit no more any such evil among you.</VERS>\r\n      <VERS vnumber=\"21\">And thine eye shall not pity; but life shall go for life, eye for eye, tooth for tooth, hand for hand, foot for foot.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"20\">\r\n      <VERS vnumber=\"1\">When 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.</VERS>\r\n      <VERS vnumber=\"2\">And it shall be, when ye are come nigh unto the battle, that the priest shall approach and speak unto the people,</VERS>\r\n      <VERS vnumber=\"3\">And 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;</VERS>\r\n      <VERS vnumber=\"4\">For the LORD your God is he that goeth with you, to fight for you against your enemies, to save you.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">When thou comest nigh unto a city to fight against it, then proclaim peace unto it.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And if it will make no peace with thee, but will make war against thee, then thou shalt besiege it:</VERS>\r\n      <VERS vnumber=\"13\">And when the LORD thy God hath delivered it into thine hands, thou shalt smite every male thereof with the edge of the sword:</VERS>\r\n      <VERS vnumber=\"14\">But 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.</VERS>\r\n      <VERS vnumber=\"15\">Thus shalt thou do unto all the cities which are very far off from thee, which are not of the cities of these nations.</VERS>\r\n      <VERS vnumber=\"16\">But of the cities of these people, which the LORD thy God doth give thee for an inheritance, thou shalt save alive nothing that breatheth:</VERS>\r\n      <VERS vnumber=\"17\">But 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:</VERS>\r\n      <VERS vnumber=\"18\">That 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.</VERS>\r\n      <VERS vnumber=\"19\">When 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:</VERS>\r\n      <VERS vnumber=\"20\">Only 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"21\">\r\n      <VERS vnumber=\"1\">If 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:</VERS>\r\n      <VERS vnumber=\"2\">Then thy elders and thy judges shall come forth, and they shall measure unto the cities which are round about him that is slain:</VERS>\r\n      <VERS vnumber=\"3\">And 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;</VERS>\r\n      <VERS vnumber=\"4\">And 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:</VERS>\r\n      <VERS vnumber=\"5\">And 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:</VERS>\r\n      <VERS vnumber=\"6\">And 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:</VERS>\r\n      <VERS vnumber=\"7\">And they shall answer and say, Our hands have not shed this blood, neither have our eyes seen it.</VERS>\r\n      <VERS vnumber=\"8\">Be 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.</VERS>\r\n      <VERS vnumber=\"9\">So 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.</VERS>\r\n      <VERS vnumber=\"10\">When 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,</VERS>\r\n      <VERS vnumber=\"11\">And seest among the captives a beautiful woman, and hast a desire unto her, that thou wouldest have her to thy wife;</VERS>\r\n      <VERS vnumber=\"12\">Then thou shalt bring her home to thine house; and she shall shave her head, and pare her nails;</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">If 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:</VERS>\r\n      <VERS vnumber=\"16\">Then 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:</VERS>\r\n      <VERS vnumber=\"17\">But 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.</VERS>\r\n      <VERS vnumber=\"18\">If 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:</VERS>\r\n      <VERS vnumber=\"19\">Then 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;</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And 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:</VERS>\r\n      <VERS vnumber=\"23\">His 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"22\">\r\n      <VERS vnumber=\"1\">Thou 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">In 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.</VERS>\r\n      <VERS vnumber=\"4\">Thou 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.</VERS>\r\n      <VERS vnumber=\"5\">The 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.</VERS>\r\n      <VERS vnumber=\"6\">If 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:</VERS>\r\n      <VERS vnumber=\"7\">But 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.</VERS>\r\n      <VERS vnumber=\"8\">When 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.</VERS>\r\n      <VERS vnumber=\"9\">Thou 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.</VERS>\r\n      <VERS vnumber=\"10\">Thou shalt not plow with an ox and an ass together.</VERS>\r\n      <VERS vnumber=\"11\">Thou shalt not wear a garment of divers sorts, as of woollen and linen together.</VERS>\r\n      <VERS vnumber=\"12\">Thou shalt make thee fringes upon the four quarters of thy vesture, wherewith thou coverest thyself.</VERS>\r\n      <VERS vnumber=\"13\">If any man take a wife, and go in unto her, and hate her,</VERS>\r\n      <VERS vnumber=\"14\">And 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:</VERS>\r\n      <VERS vnumber=\"15\">Then 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:</VERS>\r\n      <VERS vnumber=\"16\">And the damsel's father shall say unto the elders, I gave my daughter unto this man to wife, and he hateth her;</VERS>\r\n      <VERS vnumber=\"17\">And, 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.</VERS>\r\n      <VERS vnumber=\"18\">And the elders of that city shall take that man and chastise him;</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">But if this thing be true, and the tokens of virginity be not found for the damsel:</VERS>\r\n      <VERS vnumber=\"21\">Then 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.</VERS>\r\n      <VERS vnumber=\"22\">If 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.</VERS>\r\n      <VERS vnumber=\"23\">If a damsel that is a virgin be betrothed unto an husband, and a man find her in the city, and lie with her;</VERS>\r\n      <VERS vnumber=\"24\">Then 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.</VERS>\r\n      <VERS vnumber=\"25\">But 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:</VERS>\r\n      <VERS vnumber=\"26\">But 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:</VERS>\r\n      <VERS vnumber=\"27\">For he found her in the field, and the betrothed damsel cried, and there was none to save her.</VERS>\r\n      <VERS vnumber=\"28\">If 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;</VERS>\r\n      <VERS vnumber=\"29\">Then 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.</VERS>\r\n      <VERS vnumber=\"30\">A man shall not take his father's wife, nor discover his father's skirt.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"23\">\r\n      <VERS vnumber=\"1\">He that is wounded in the stones, or hath his privy member cut off, shall not enter into the congregation of the LORD.</VERS>\r\n      <VERS vnumber=\"2\">A 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.</VERS>\r\n      <VERS vnumber=\"3\">An 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:</VERS>\r\n      <VERS vnumber=\"4\">Because 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.</VERS>\r\n      <VERS vnumber=\"5\">Nevertheless 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.</VERS>\r\n      <VERS vnumber=\"6\">Thou shalt not seek their peace nor their prosperity all thy days for ever.</VERS>\r\n      <VERS vnumber=\"7\">Thou shalt not abhor an Edomite; for he is thy brother: thou shalt not abhor an Egyptian; because thou wast a stranger in his land.</VERS>\r\n      <VERS vnumber=\"8\">The children that are begotten of them shall enter into the congregation of the LORD in their third generation.</VERS>\r\n      <VERS vnumber=\"9\">When the host goeth forth against thine enemies, then keep thee from every wicked thing.</VERS>\r\n      <VERS vnumber=\"10\">If 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:</VERS>\r\n      <VERS vnumber=\"11\">But 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.</VERS>\r\n      <VERS vnumber=\"12\">Thou shalt have a place also without the camp, whither thou shalt go forth abroad:</VERS>\r\n      <VERS vnumber=\"13\">And 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:</VERS>\r\n      <VERS vnumber=\"14\">For 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.</VERS>\r\n      <VERS vnumber=\"15\">Thou shalt not deliver unto his master the servant which is escaped from his master unto thee:</VERS>\r\n      <VERS vnumber=\"16\">He 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.</VERS>\r\n      <VERS vnumber=\"17\">There shall be no whore of the daughters of Israel, nor a sodomite of the sons of Israel.</VERS>\r\n      <VERS vnumber=\"18\">Thou 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.</VERS>\r\n      <VERS vnumber=\"19\">Thou shalt not lend upon usury to thy brother; usury of money, usury of victuals, usury of any thing that is lent upon usury:</VERS>\r\n      <VERS vnumber=\"20\">Unto 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.</VERS>\r\n      <VERS vnumber=\"21\">When 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.</VERS>\r\n      <VERS vnumber=\"22\">But if thou shalt forbear to vow, it shall be no sin in thee.</VERS>\r\n      <VERS vnumber=\"23\">That 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.</VERS>\r\n      <VERS vnumber=\"24\">When 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.</VERS>\r\n      <VERS vnumber=\"25\">When 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"24\">\r\n      <VERS vnumber=\"1\">When 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.</VERS>\r\n      <VERS vnumber=\"2\">And when she is departed out of his house, she may go and be another man's wife.</VERS>\r\n      <VERS vnumber=\"3\">And 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;</VERS>\r\n      <VERS vnumber=\"4\">Her 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.</VERS>\r\n      <VERS vnumber=\"5\">When 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.</VERS>\r\n      <VERS vnumber=\"6\">No man shall take the nether or the upper millstone to pledge: for he taketh a man's life to pledge.</VERS>\r\n      <VERS vnumber=\"7\">If 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.</VERS>\r\n      <VERS vnumber=\"8\">Take 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.</VERS>\r\n      <VERS vnumber=\"9\">Remember what the LORD thy God did unto Miriam by the way, after that ye were come forth out of Egypt.</VERS>\r\n      <VERS vnumber=\"10\">When thou dost lend thy brother any thing, thou shalt not go into his house to fetch his pledge.</VERS>\r\n      <VERS vnumber=\"11\">Thou shalt stand abroad, and the man to whom thou dost lend shall bring out the pledge abroad unto thee.</VERS>\r\n      <VERS vnumber=\"12\">And if the man be poor, thou shalt not sleep with his pledge:</VERS>\r\n      <VERS vnumber=\"13\">In 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.</VERS>\r\n      <VERS vnumber=\"14\">Thou 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:</VERS>\r\n      <VERS vnumber=\"15\">At 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.</VERS>\r\n      <VERS vnumber=\"16\">The 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.</VERS>\r\n      <VERS vnumber=\"17\">Thou shalt not pervert the judgment of the stranger, nor of the fatherless; nor take a widow's raiment to pledge:</VERS>\r\n      <VERS vnumber=\"18\">But 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.</VERS>\r\n      <VERS vnumber=\"19\">When 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.</VERS>\r\n      <VERS vnumber=\"20\">When 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.</VERS>\r\n      <VERS vnumber=\"21\">When 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.</VERS>\r\n      <VERS vnumber=\"22\">And thou shalt remember that thou wast a bondman in the land of Egypt: therefore I command thee to do this thing.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"25\">\r\n      <VERS vnumber=\"1\">If 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">Forty 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.</VERS>\r\n      <VERS vnumber=\"4\">Thou shalt not muzzle the ox when he treadeth out the corn.</VERS>\r\n      <VERS vnumber=\"5\">If 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">Then 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;</VERS>\r\n      <VERS vnumber=\"9\">Then 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.</VERS>\r\n      <VERS vnumber=\"10\">And his name shall be called in Israel, The house of him that hath his shoe loosed.</VERS>\r\n      <VERS vnumber=\"11\">When 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:</VERS>\r\n      <VERS vnumber=\"12\">Then thou shalt cut off her hand, thine eye shall not pity her.</VERS>\r\n      <VERS vnumber=\"13\">Thou shalt not have in thy bag divers weights, a great and a small.</VERS>\r\n      <VERS vnumber=\"14\">Thou shalt not have in thine house divers measures, a great and a small.</VERS>\r\n      <VERS vnumber=\"15\">But 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.</VERS>\r\n      <VERS vnumber=\"16\">For all that do such things, and all that do unrighteously, are an abomination unto the LORD thy God.</VERS>\r\n      <VERS vnumber=\"17\">Remember what Amalek did unto thee by the way, when ye were come forth out of Egypt;</VERS>\r\n      <VERS vnumber=\"18\">How 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.</VERS>\r\n      <VERS vnumber=\"19\">Therefore 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"26\">\r\n      <VERS vnumber=\"1\">And 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;</VERS>\r\n      <VERS vnumber=\"2\">That 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And the priest shall take the basket out of thine hand, and set it down before the altar of the LORD thy God.</VERS>\r\n      <VERS vnumber=\"5\">And 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:</VERS>\r\n      <VERS vnumber=\"6\">And the Egyptians evil entreated us, and afflicted us, and laid upon us hard bondage:</VERS>\r\n      <VERS vnumber=\"7\">And 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:</VERS>\r\n      <VERS vnumber=\"8\">And 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:</VERS>\r\n      <VERS vnumber=\"9\">And he hath brought us into this place, and hath given us this land, even a land that floweth with milk and honey.</VERS>\r\n      <VERS vnumber=\"10\">And 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:</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">When 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;</VERS>\r\n      <VERS vnumber=\"13\">Then 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:</VERS>\r\n      <VERS vnumber=\"14\">I 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.</VERS>\r\n      <VERS vnumber=\"15\">Look 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.</VERS>\r\n      <VERS vnumber=\"16\">This 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.</VERS>\r\n      <VERS vnumber=\"17\">Thou 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:</VERS>\r\n      <VERS vnumber=\"18\">And 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;</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"27\">\r\n      <VERS vnumber=\"1\">And Moses with the elders of Israel commanded the people, saying, Keep all the commandments which I command you this day.</VERS>\r\n      <VERS vnumber=\"2\">And 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:</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">Thou shalt build the altar of the LORD thy God of whole stones: and thou shalt offer burnt offerings thereon unto the LORD thy God:</VERS>\r\n      <VERS vnumber=\"7\">And thou shalt offer peace offerings, and shalt eat there, and rejoice before the LORD thy God.</VERS>\r\n      <VERS vnumber=\"8\">And thou shalt write upon the stones all the words of this law very plainly.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">Thou shalt therefore obey the voice of the LORD thy God, and do his commandments and his statutes, which I command thee this day.</VERS>\r\n      <VERS vnumber=\"11\">And Moses charged the people the same day, saying,</VERS>\r\n      <VERS vnumber=\"12\">These 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:</VERS>\r\n      <VERS vnumber=\"13\">And these shall stand upon mount Ebal to curse; Reuben, Gad, and Asher, and Zebulun, Dan, and Naphtali.</VERS>\r\n      <VERS vnumber=\"14\">And the Levites shall speak, and say unto all the men of Israel with a loud voice,</VERS>\r\n      <VERS vnumber=\"15\">Cursed 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.</VERS>\r\n      <VERS vnumber=\"16\">Cursed be he that setteth light by his father or his mother. And all the people shall say, Amen.</VERS>\r\n      <VERS vnumber=\"17\">Cursed be he that removeth his neighbour's landmark. And all the people shall say, Amen.</VERS>\r\n      <VERS vnumber=\"18\">Cursed be he that maketh the blind to wander out of the way. And all the people shall say, Amen.</VERS>\r\n      <VERS vnumber=\"19\">Cursed be he that perverteth the judgment of the stranger, fatherless, and widow. And all the people shall say, Amen.</VERS>\r\n      <VERS vnumber=\"20\">Cursed be he that lieth with his father's wife; because he uncovereth his father's skirt. And all the people shall say, Amen.</VERS>\r\n      <VERS vnumber=\"21\">Cursed be he that lieth with any manner of beast. And all the people shall say, Amen.</VERS>\r\n      <VERS vnumber=\"22\">Cursed 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.</VERS>\r\n      <VERS vnumber=\"23\">Cursed be he that lieth with his mother in law. And all the people shall say, Amen.</VERS>\r\n      <VERS vnumber=\"24\">Cursed be he that smiteth his neighbour secretly. And all the people shall say, Amen.</VERS>\r\n      <VERS vnumber=\"25\">Cursed be he that taketh reward to slay an innocent person. And all the people shall say, Amen.</VERS>\r\n      <VERS vnumber=\"26\">Cursed be he that confirmeth not all the words of this law to do them. And all the people shall say, Amen.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"28\">\r\n      <VERS vnumber=\"1\">And 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:</VERS>\r\n      <VERS vnumber=\"2\">And all these blessings shall come on thee, and overtake thee, if thou shalt hearken unto the voice of the LORD thy God.</VERS>\r\n      <VERS vnumber=\"3\">Blessed shalt thou be in the city, and blessed shalt thou be in the field.</VERS>\r\n      <VERS vnumber=\"4\">Blessed 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.</VERS>\r\n      <VERS vnumber=\"5\">Blessed shall be thy basket and thy store.</VERS>\r\n      <VERS vnumber=\"6\">Blessed shalt thou be when thou comest in, and blessed shalt thou be when thou goest out.</VERS>\r\n      <VERS vnumber=\"7\">The 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.</VERS>\r\n      <VERS vnumber=\"8\">The 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.</VERS>\r\n      <VERS vnumber=\"9\">The 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.</VERS>\r\n      <VERS vnumber=\"10\">And all people of the earth shall see that thou art called by the name of the LORD; and they shall be afraid of thee.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">The 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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:</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">But 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:</VERS>\r\n      <VERS vnumber=\"16\">Cursed shalt thou be in the city, and cursed shalt thou be in the field.</VERS>\r\n      <VERS vnumber=\"17\">Cursed shall be thy basket and thy store.</VERS>\r\n      <VERS vnumber=\"18\">Cursed shall be the fruit of thy body, and the fruit of thy land, the increase of thy kine, and the flocks of thy sheep.</VERS>\r\n      <VERS vnumber=\"19\">Cursed shalt thou be when thou comest in, and cursed shalt thou be when thou goest out.</VERS>\r\n      <VERS vnumber=\"20\">The 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.</VERS>\r\n      <VERS vnumber=\"21\">The LORD shall make the pestilence cleave unto thee, until he have consumed thee from off the land, whither thou goest to possess it.</VERS>\r\n      <VERS vnumber=\"22\">The 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.</VERS>\r\n      <VERS vnumber=\"23\">And thy heaven that is over thy head shall be brass, and the earth that is under thee shall be iron.</VERS>\r\n      <VERS vnumber=\"24\">The LORD shall make the rain of thy land powder and dust: from heaven shall it come down upon thee, until thou be destroyed.</VERS>\r\n      <VERS vnumber=\"25\">The 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">The 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.</VERS>\r\n      <VERS vnumber=\"28\">The LORD shall smite thee with madness, and blindness, and astonishment of heart:</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">Thou 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.</VERS>\r\n      <VERS vnumber=\"31\">Thine 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.</VERS>\r\n      <VERS vnumber=\"32\">Thy 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.</VERS>\r\n      <VERS vnumber=\"33\">The 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:</VERS>\r\n      <VERS vnumber=\"34\">So that thou shalt be mad for the sight of thine eyes which thou shalt see.</VERS>\r\n      <VERS vnumber=\"35\">The 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.</VERS>\r\n      <VERS vnumber=\"36\">The 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.</VERS>\r\n      <VERS vnumber=\"37\">And thou shalt become an astonishment, a proverb, and a byword, among all nations whither the LORD shall lead thee.</VERS>\r\n      <VERS vnumber=\"38\">Thou shalt carry much seed out into the field, and shalt gather but little in; for the locust shall consume it.</VERS>\r\n      <VERS vnumber=\"39\">Thou shalt plant vineyards, and dress them, but shalt neither drink of the wine, nor gather the grapes; for the worms shall eat them.</VERS>\r\n      <VERS vnumber=\"40\">Thou shalt have olive trees throughout all thy coasts, but thou shalt not anoint thyself with the oil; for thine olive shall cast his fruit.</VERS>\r\n      <VERS vnumber=\"41\">Thou shalt beget sons and daughters, but thou shalt not enjoy them; for they shall go into captivity.</VERS>\r\n      <VERS vnumber=\"42\">All thy trees and fruit of thy land shall the locust consume.</VERS>\r\n      <VERS vnumber=\"43\">The stranger that is within thee shall get up above thee very high; and thou shalt come down very low.</VERS>\r\n      <VERS vnumber=\"44\">He shall lend to thee, and thou shalt not lend to him: he shall be the head, and thou shalt be the tail.</VERS>\r\n      <VERS vnumber=\"45\">Moreover 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:</VERS>\r\n      <VERS vnumber=\"46\">And they shall be upon thee for a sign and for a wonder, and upon thy seed for ever.</VERS>\r\n      <VERS vnumber=\"47\">Because thou servedst not the LORD thy God with joyfulness, and with gladness of heart, for the abundance of all things;</VERS>\r\n      <VERS vnumber=\"48\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"49\">The 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;</VERS>\r\n      <VERS vnumber=\"50\">A nation of fierce countenance, which shall not regard the person of the old, nor shew favour to the young:</VERS>\r\n      <VERS vnumber=\"51\">And 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.</VERS>\r\n      <VERS vnumber=\"52\">And 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.</VERS>\r\n      <VERS vnumber=\"53\">And 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:</VERS>\r\n      <VERS vnumber=\"54\">So 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:</VERS>\r\n      <VERS vnumber=\"55\">So 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.</VERS>\r\n      <VERS vnumber=\"56\">The 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,</VERS>\r\n      <VERS vnumber=\"57\">And 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.</VERS>\r\n      <VERS vnumber=\"58\">If 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;</VERS>\r\n      <VERS vnumber=\"59\">Then 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.</VERS>\r\n      <VERS vnumber=\"60\">Moreover he will bring upon thee all the diseases of Egypt, which thou wast afraid of; and they shall cleave unto thee.</VERS>\r\n      <VERS vnumber=\"61\">Also 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.</VERS>\r\n      <VERS vnumber=\"62\">And 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.</VERS>\r\n      <VERS vnumber=\"63\">And 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.</VERS>\r\n      <VERS vnumber=\"64\">And 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.</VERS>\r\n      <VERS vnumber=\"65\">And 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:</VERS>\r\n      <VERS vnumber=\"66\">And thy life shall hang in doubt before thee; and thou shalt fear day and night, and shalt have none assurance of thy life:</VERS>\r\n      <VERS vnumber=\"67\">In 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.</VERS>\r\n      <VERS vnumber=\"68\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"29\">\r\n      <VERS vnumber=\"1\">These 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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;</VERS>\r\n      <VERS vnumber=\"3\">The great temptations which thine eyes have seen, the signs, and those great miracles:</VERS>\r\n      <VERS vnumber=\"4\">Yet the LORD hath not given you an heart to perceive, and eyes to see, and ears to hear, unto this day.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">Ye have not eaten bread, neither have ye drunk wine or strong drink: that ye might know that I am the LORD your God.</VERS>\r\n      <VERS vnumber=\"7\">And 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:</VERS>\r\n      <VERS vnumber=\"8\">And we took their land, and gave it for an inheritance unto the Reubenites, and to the Gadites, and to the half tribe of Manasseh.</VERS>\r\n      <VERS vnumber=\"9\">Keep therefore the words of this covenant, and do them, that ye may prosper in all that ye do.</VERS>\r\n      <VERS vnumber=\"10\">Ye 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,</VERS>\r\n      <VERS vnumber=\"11\">Your little ones, your wives, and thy stranger that is in thy camp, from the hewer of thy wood unto the drawer of thy water:</VERS>\r\n      <VERS vnumber=\"12\">That thou shouldest enter into covenant with the LORD thy God, and into his oath, which the LORD thy God maketh with thee this day:</VERS>\r\n      <VERS vnumber=\"13\">That 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.</VERS>\r\n      <VERS vnumber=\"14\">Neither with you only do I make this covenant and this oath;</VERS>\r\n      <VERS vnumber=\"15\">But 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:</VERS>\r\n      <VERS vnumber=\"16\">(For ye know how we have dwelt in the land of Egypt; and how we came through the nations which ye passed by;</VERS>\r\n      <VERS vnumber=\"17\">And ye have seen their abominations, and their idols, wood and stone, silver and gold, which were among them:)</VERS>\r\n      <VERS vnumber=\"18\">Lest 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;</VERS>\r\n      <VERS vnumber=\"19\">And 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:</VERS>\r\n      <VERS vnumber=\"20\">The 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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:</VERS>\r\n      <VERS vnumber=\"22\">So 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;</VERS>\r\n      <VERS vnumber=\"23\">And 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:</VERS>\r\n      <VERS vnumber=\"24\">Even all nations shall say, Wherefore hath the LORD done thus unto this land? what meaneth the heat of this great anger?</VERS>\r\n      <VERS vnumber=\"25\">Then 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:</VERS>\r\n      <VERS vnumber=\"26\">For they went and served other gods, and worshipped them, gods whom they knew not, and whom he had not given unto them:</VERS>\r\n      <VERS vnumber=\"27\">And the anger of the LORD was kindled against this land, to bring upon it all the curses that are written in this book:</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">The 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"30\">\r\n      <VERS vnumber=\"1\">And 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,</VERS>\r\n      <VERS vnumber=\"2\">And 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;</VERS>\r\n      <VERS vnumber=\"3\">That 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.</VERS>\r\n      <VERS vnumber=\"4\">If 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:</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And the LORD thy God will put all these curses upon thine enemies, and on them that hate thee, which persecuted thee.</VERS>\r\n      <VERS vnumber=\"8\">And thou shalt return and obey the voice of the LORD, and do all his commandments which I command thee this day.</VERS>\r\n      <VERS vnumber=\"9\">And 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:</VERS>\r\n      <VERS vnumber=\"10\">If 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.</VERS>\r\n      <VERS vnumber=\"11\">For this commandment which I command thee this day, it is not hidden from thee, neither is it far off.</VERS>\r\n      <VERS vnumber=\"12\">It 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?</VERS>\r\n      <VERS vnumber=\"13\">Neither 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?</VERS>\r\n      <VERS vnumber=\"14\">But the word is very nigh unto thee, in thy mouth, and in thy heart, that thou mayest do it.</VERS>\r\n      <VERS vnumber=\"15\">See, I have set before thee this day life and good, and death and evil;</VERS>\r\n      <VERS vnumber=\"16\">In 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.</VERS>\r\n      <VERS vnumber=\"17\">But if thine heart turn away, so that thou wilt not hear, but shalt be drawn away, and worship other gods, and serve them;</VERS>\r\n      <VERS vnumber=\"18\">I 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.</VERS>\r\n      <VERS vnumber=\"19\">I 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:</VERS>\r\n      <VERS vnumber=\"20\">That 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"31\">\r\n      <VERS vnumber=\"1\">And Moses went and spake these words unto all Israel.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">The 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">Be 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And Moses commanded them, saying, At the end of every seven years, in the solemnity of the year of release, in the feast of tabernacles,</VERS>\r\n      <VERS vnumber=\"11\">When 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.</VERS>\r\n      <VERS vnumber=\"12\">Gather 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:</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">Then 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?</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">Now 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.</VERS>\r\n      <VERS vnumber=\"20\">For 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">Moses therefore wrote this song the same day, and taught it the children of Israel.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And it came to pass, when Moses had made an end of writing the words of this law in a book, until they were finished,</VERS>\r\n      <VERS vnumber=\"25\">That Moses commanded the Levites, which bare the ark of the covenant of the LORD, saying,</VERS>\r\n      <VERS vnumber=\"26\">Take 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.</VERS>\r\n      <VERS vnumber=\"27\">For 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?</VERS>\r\n      <VERS vnumber=\"28\">Gather 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.</VERS>\r\n      <VERS vnumber=\"29\">For 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.</VERS>\r\n      <VERS vnumber=\"30\">And Moses spake in the ears of all the congregation of Israel the words of this song, until they were ended.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"32\">\r\n      <VERS vnumber=\"1\">Give ear, O ye heavens, and I will speak; and hear, O earth, the words of my mouth.</VERS>\r\n      <VERS vnumber=\"2\">My 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:</VERS>\r\n      <VERS vnumber=\"3\">Because I will publish the name of the LORD: ascribe ye greatness unto our God.</VERS>\r\n      <VERS vnumber=\"4\">He 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.</VERS>\r\n      <VERS vnumber=\"5\">They have corrupted themselves, their spot is not the spot of his children: they are a perverse and crooked generation.</VERS>\r\n      <VERS vnumber=\"6\">Do 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?</VERS>\r\n      <VERS vnumber=\"7\">Remember 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.</VERS>\r\n      <VERS vnumber=\"8\">When 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.</VERS>\r\n      <VERS vnumber=\"9\">For the LORD'S portion is his people; Jacob is the lot of his inheritance.</VERS>\r\n      <VERS vnumber=\"10\">He 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.</VERS>\r\n      <VERS vnumber=\"11\">As an eagle stirreth up her nest, fluttereth over her young, spreadeth abroad her wings, taketh them, beareth them on her wings:</VERS>\r\n      <VERS vnumber=\"12\">So the LORD alone did lead him, and there was no strange god with him.</VERS>\r\n      <VERS vnumber=\"13\">He 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;</VERS>\r\n      <VERS vnumber=\"14\">Butter 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.</VERS>\r\n      <VERS vnumber=\"15\">But 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.</VERS>\r\n      <VERS vnumber=\"16\">They provoked him to jealousy with strange gods, with abominations provoked they him to anger.</VERS>\r\n      <VERS vnumber=\"17\">They sacrificed unto devils, not to God; to gods whom they knew not, to new gods that came newly up, whom your fathers feared not.</VERS>\r\n      <VERS vnumber=\"18\">Of the Rock that begat thee thou art unmindful, and hast forgotten God that formed thee.</VERS>\r\n      <VERS vnumber=\"19\">And when the LORD saw it, he abhorred them, because of the provoking of his sons, and of his daughters.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">They 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.</VERS>\r\n      <VERS vnumber=\"22\">For 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.</VERS>\r\n      <VERS vnumber=\"23\">I will heap mischiefs upon them; I will spend mine arrows upon them.</VERS>\r\n      <VERS vnumber=\"24\">They 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.</VERS>\r\n      <VERS vnumber=\"25\">The sword without, and terror within, shall destroy both the young man and the virgin, the suckling also with the man of gray hairs.</VERS>\r\n      <VERS vnumber=\"26\">I said, I would scatter them into corners, I would make the remembrance of them to cease from among men:</VERS>\r\n      <VERS vnumber=\"27\">Were 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.</VERS>\r\n      <VERS vnumber=\"28\">For they are a nation void of counsel, neither is there any understanding in them.</VERS>\r\n      <VERS vnumber=\"29\">O that they were wise, that they understood this, that they would consider their latter end!</VERS>\r\n      <VERS vnumber=\"30\">How 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?</VERS>\r\n      <VERS vnumber=\"31\">For their rock is not as our Rock, even our enemies themselves being judges.</VERS>\r\n      <VERS vnumber=\"32\">For their vine is of the vine of Sodom, and of the fields of Gomorrah: their grapes are grapes of gall, their clusters are bitter:</VERS>\r\n      <VERS vnumber=\"33\">Their wine is the poison of dragons, and the cruel venom of asps.</VERS>\r\n      <VERS vnumber=\"34\">Is not this laid up in store with me, and sealed up among my treasures?</VERS>\r\n      <VERS vnumber=\"35\">To 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.</VERS>\r\n      <VERS vnumber=\"36\">For 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.</VERS>\r\n      <VERS vnumber=\"37\">And he shall say, Where are their gods, their rock in whom they trusted,</VERS>\r\n      <VERS vnumber=\"38\">Which 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.</VERS>\r\n      <VERS vnumber=\"39\">See 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.</VERS>\r\n      <VERS vnumber=\"40\">For I lift up my hand to heaven, and say, I live for ever.</VERS>\r\n      <VERS vnumber=\"41\">If 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.</VERS>\r\n      <VERS vnumber=\"42\">I 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.</VERS>\r\n      <VERS vnumber=\"43\">Rejoice, 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.</VERS>\r\n      <VERS vnumber=\"44\">And Moses came and spake all the words of this song in the ears of the people, he, and Hoshea the son of Nun.</VERS>\r\n      <VERS vnumber=\"45\">And Moses made an end of speaking all these words to all Israel:</VERS>\r\n      <VERS vnumber=\"46\">And 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.</VERS>\r\n      <VERS vnumber=\"47\">For 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.</VERS>\r\n      <VERS vnumber=\"48\">And the LORD spake unto Moses that selfsame day, saying,</VERS>\r\n      <VERS vnumber=\"49\">Get 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:</VERS>\r\n      <VERS vnumber=\"50\">And 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:</VERS>\r\n      <VERS vnumber=\"51\">Because ye trespassed against me among the children of Israel at the waters of Meribah-Kadesh, in the wilderness of Zin; because ye sanctified me not in the midst of the children of Israel.</VERS>\r\n      <VERS vnumber=\"52\">Yet thou shalt see the land before thee; but thou shalt not go thither unto the land which I give the children of Israel.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"33\">\r\n      <VERS vnumber=\"1\">And this is the blessing, wherewith Moses the man of God blessed the children of Israel before his death.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">Yea, 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.</VERS>\r\n      <VERS vnumber=\"4\">Moses commanded us a law, even the inheritance of the congregation of Jacob.</VERS>\r\n      <VERS vnumber=\"5\">And he was king in Jeshurun, when the heads of the people and the tribes of Israel were gathered together.</VERS>\r\n      <VERS vnumber=\"6\">Let Reuben live, and not die; and let not his men be few.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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;</VERS>\r\n      <VERS vnumber=\"9\">Who 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.</VERS>\r\n      <VERS vnumber=\"10\">They shall teach Jacob thy judgments, and Israel thy law: they shall put incense before thee, and whole burnt sacrifice upon thine altar.</VERS>\r\n      <VERS vnumber=\"11\">Bless, 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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,</VERS>\r\n      <VERS vnumber=\"14\">And for the precious fruits brought forth by the sun, and for the precious things put forth by the moon,</VERS>\r\n      <VERS vnumber=\"15\">And for the chief things of the ancient mountains, and for the precious things of the lasting hills,</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">His 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.</VERS>\r\n      <VERS vnumber=\"18\">And of Zebulun he said, Rejoice, Zebulun, in thy going out; and, Issachar, in thy tents.</VERS>\r\n      <VERS vnumber=\"19\">They 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And of Dan he said, Dan is a lion's whelp: he shall leap from Bashan.</VERS>\r\n      <VERS vnumber=\"23\">And of Naphtali he said, O Naphtali, satisfied with favour, and full with the blessing of the LORD: possess thou the west and the south.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">Thy shoes shall be iron and brass; and as thy days, so shall thy strength be.</VERS>\r\n      <VERS vnumber=\"26\">There is none like unto the God of Jeshurun, who rideth upon the heaven in thy help, and in his excellency on the sky.</VERS>\r\n      <VERS vnumber=\"27\">The 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.</VERS>\r\n      <VERS vnumber=\"28\">Israel 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.</VERS>\r\n      <VERS vnumber=\"29\">Happy 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"34\">\r\n      <VERS vnumber=\"1\">And 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,</VERS>\r\n      <VERS vnumber=\"2\">And all Naphtali, and the land of Ephraim, and Manasseh, and all the land of Judah, unto the utmost sea,</VERS>\r\n      <VERS vnumber=\"3\">And the south, and the plain of the valley of Jericho, the city of palm trees, unto Zoar.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">So Moses the servant of the LORD died there in the land of Moab, according to the word of the LORD.</VERS>\r\n      <VERS vnumber=\"6\">And he buried him in a valley in the land of Moab, over against Bethpeor: but no man knoweth of his sepulchre unto this day.</VERS>\r\n      <VERS vnumber=\"7\">And Moses was an hundred and twenty years old when he died: his eye was not dim, nor his natural force abated.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And there arose not a prophet since in Israel like unto Moses, whom the LORD knew face to face,</VERS>\r\n      <VERS vnumber=\"11\">In 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,</VERS>\r\n      <VERS vnumber=\"12\">And in all that mighty hand, and in all the great terror which Moses shewed in the sight of all Israel.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"6\" bname=\"Joshua\" bsname=\"Josh\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">Now 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,</VERS>\r\n      <VERS vnumber=\"2\">Moses 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.</VERS>\r\n      <VERS vnumber=\"3\">Every place that the sole of your foot shall tread upon, that have I given unto you, as I said unto Moses.</VERS>\r\n      <VERS vnumber=\"4\">From 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.</VERS>\r\n      <VERS vnumber=\"5\">There 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.</VERS>\r\n      <VERS vnumber=\"6\">Be 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.</VERS>\r\n      <VERS vnumber=\"7\">Only 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 whithersoever thou goest.</VERS>\r\n      <VERS vnumber=\"8\">This 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.</VERS>\r\n      <VERS vnumber=\"9\">Have 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.</VERS>\r\n      <VERS vnumber=\"10\">Then Joshua commanded the officers of the people, saying,</VERS>\r\n      <VERS vnumber=\"11\">Pass 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.</VERS>\r\n      <VERS vnumber=\"12\">And to the Reubenites, and to the Gadites, and to half the tribe of Manasseh, spake Joshua, saying,</VERS>\r\n      <VERS vnumber=\"13\">Remember 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.</VERS>\r\n      <VERS vnumber=\"14\">Your 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;</VERS>\r\n      <VERS vnumber=\"15\">Until 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.</VERS>\r\n      <VERS vnumber=\"16\">And they answered Joshua, saying, All that thou commandest us we will do, and whithersoever thou sendest us, we will go.</VERS>\r\n      <VERS vnumber=\"17\">According 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.</VERS>\r\n      <VERS vnumber=\"18\">Whosoever 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And the woman took the two men, and hid them, and said thus, There came men unto me, but I wist not whence they were:</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">But 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And before they were laid down, she came up unto them upon the roof;</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">For 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">Now 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:</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">Then she let them down by a cord through the window: for her house was upon the town wall, and she dwelt upon the wall.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And the men said unto her, We will be blameless of this thine oath which thou hast made us swear.</VERS>\r\n      <VERS vnumber=\"18\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And if thou utter this our business, then we will be quit of thine oath which thou hast made us to swear.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">So 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:</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And it came to pass after three days, that the officers went through the host;</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">Yet 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.</VERS>\r\n      <VERS vnumber=\"5\">And Joshua said unto the people, Sanctify yourselves: for to morrow the LORD will do wonders among you.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And Joshua said unto the children of Israel, Come hither, and hear the words of the LORD your God.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">Behold, the ark of the covenant of the Lord of all the earth passeth over before you into Jordan.</VERS>\r\n      <VERS vnumber=\"12\">Now therefore take you twelve men out of the tribes of Israel, out of every tribe a man.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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;</VERS>\r\n      <VERS vnumber=\"15\">And 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,)</VERS>\r\n      <VERS vnumber=\"16\">That 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">And it came to pass, when all the people were clean passed over Jordan, that the LORD spake unto Joshua, saying,</VERS>\r\n      <VERS vnumber=\"2\">Take you twelve men out of the people, out of every tribe a man,</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">Then Joshua called the twelve men, whom he had prepared of the children of Israel, out of every tribe a man:</VERS>\r\n      <VERS vnumber=\"5\">And Joshua said unto them, Pass over before the ark of the LORD your God into the midst of Jordan, and take ye up every man of you a stone upon his shoulder, according unto the number of the tribes of the children of Israel:</VERS>\r\n      <VERS vnumber=\"6\">That 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?</VERS>\r\n      <VERS vnumber=\"7\">Then 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">For the priests which bare the ark stood in the midst of Jordan, until every thing 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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:</VERS>\r\n      <VERS vnumber=\"13\">About forty thousand prepared for war passed over before the LORD unto battle, to the plains of Jericho.</VERS>\r\n      <VERS vnumber=\"14\">On 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.</VERS>\r\n      <VERS vnumber=\"15\">And the LORD spake unto Joshua, saying,</VERS>\r\n      <VERS vnumber=\"16\">Command the priests that bear the ark of the testimony, that they come up out of Jordan.</VERS>\r\n      <VERS vnumber=\"17\">Joshua therefore commanded the priests, saying, Come ye up out of Jordan.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And those twelve stones, which they took out of Jordan, did Joshua pitch in Gilgal.</VERS>\r\n      <VERS vnumber=\"21\">And he spake unto the children of Israel, saying, When your children shall ask their fathers in time to come, saying, What mean these stones?</VERS>\r\n      <VERS vnumber=\"22\">Then ye shall let your children know, saying, Israel came over this Jordan on dry land.</VERS>\r\n      <VERS vnumber=\"23\">For 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:</VERS>\r\n      <VERS vnumber=\"24\">That 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">At that time the LORD said unto Joshua, Make thee sharp knives, and circumcise again the children of Israel the second time.</VERS>\r\n      <VERS vnumber=\"3\">And Joshua made him sharp knives, and circumcised the children of Israel at the hill of the foreskins.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">Now 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.</VERS>\r\n      <VERS vnumber=\"6\">For 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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?</VERS>\r\n      <VERS vnumber=\"14\">And 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?</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">Now Jericho was straitly shut up because of the children of Israel: none went out, and none came in.</VERS>\r\n      <VERS vnumber=\"2\">And the LORD said unto Joshua, See, I have given into thine hand Jericho, and the king thereof, and the mighty men of valour.</VERS>\r\n      <VERS vnumber=\"3\">And ye shall compass the city, all ye men of war, and go round about the city once. Thus shalt thou do six days.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">So the ark of the LORD compassed the city, going about it once: and they came into the camp, and lodged in the camp.</VERS>\r\n      <VERS vnumber=\"12\">And Joshua rose early in the morning, and the priests took up the ark of the LORD.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And the second day they compassed the city once, and returned into the camp: so they did six days.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">But 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.</VERS>\r\n      <VERS vnumber=\"20\">So 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">But 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.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">So the LORD was with Joshua; and his fame was noised throughout all the country.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">But 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.</VERS>\r\n      <VERS vnumber=\"2\">And Joshua sent men from Jericho to Ai, which is beside Bethaven, on the east side of Bethel, and spake unto them, saying, Go up and view the country. And the men went up and viewed Ai.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">So there went up thither of the people about three thousand men: and they fled before the men of Ai.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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!</VERS>\r\n      <VERS vnumber=\"8\">O Lord, what shall I say, when Israel turneth their backs before their enemies!</VERS>\r\n      <VERS vnumber=\"9\">For 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?</VERS>\r\n      <VERS vnumber=\"10\">And the LORD said unto Joshua, Get thee up; wherefore liest thou thus upon thy face?</VERS>\r\n      <VERS vnumber=\"11\">Israel 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.</VERS>\r\n      <VERS vnumber=\"12\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"13\">Up, 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.</VERS>\r\n      <VERS vnumber=\"14\">In 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">So Joshua rose up early in the morning, and brought Israel by their tribes; and the tribe of Judah was taken:</VERS>\r\n      <VERS vnumber=\"17\">And 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:</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And Achan answered Joshua, and said, Indeed I have sinned against the LORD God of Israel, and thus and thus have I done:</VERS>\r\n      <VERS vnumber=\"21\">When 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.</VERS>\r\n      <VERS vnumber=\"22\">So Joshua sent messengers, and they ran unto the tent; and, behold, it was hid in his tent, and the silver under it.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">And 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:</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">So 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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:</VERS>\r\n      <VERS vnumber=\"5\">And 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,</VERS>\r\n      <VERS vnumber=\"6\">(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.</VERS>\r\n      <VERS vnumber=\"7\">Then ye shall rise up from the ambush, and seize upon the city: for the LORD your God will deliver it into your hand.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">Joshua 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And he took about five thousand men, and set them to lie in ambush between Bethel and Ai, on the west side of the city.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And Joshua and all Israel made as if they were beaten before them, and fled by the way of the wilderness.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And the king of Ai they took alive, and brought him to Joshua.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And so it was, that all that fell that day, both of men and women, were twelve thousand, even all the men of Ai.</VERS>\r\n      <VERS vnumber=\"26\">For Joshua drew not his hand back, wherewith he stretched out the spear, until he had utterly destroyed all the inhabitants of Ai.</VERS>\r\n      <VERS vnumber=\"27\">Only 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.</VERS>\r\n      <VERS vnumber=\"28\">And Joshua burnt Ai, and made it an heap for ever, even a desolation unto this day.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">Then Joshua built an altar unto the LORD God of Israel in mount Ebal,</VERS>\r\n      <VERS vnumber=\"31\">As 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.</VERS>\r\n      <VERS vnumber=\"32\">And he wrote there upon the stones a copy of the law of Moses, which he wrote in the presence of the children of Israel.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">And 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.</VERS>\r\n      <VERS vnumber=\"35\">There 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">And 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;</VERS>\r\n      <VERS vnumber=\"2\">That they gathered themselves together, to fight with Joshua and with Israel, with one accord.</VERS>\r\n      <VERS vnumber=\"3\">And when the inhabitants of Gibeon heard what Joshua had done unto Jericho and to Ai,</VERS>\r\n      <VERS vnumber=\"4\">They 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;</VERS>\r\n      <VERS vnumber=\"5\">And old shoes and clouted upon their feet, and old garments upon them; and all the bread of their provision was dry and mouldy.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And the men of Israel said unto the Hivites, Peradventure ye dwell among us; and how shall we make a league with you?</VERS>\r\n      <VERS vnumber=\"8\">And they said unto Joshua, We are thy servants. And Joshua said unto them, Who are ye? and from whence come ye?</VERS>\r\n      <VERS vnumber=\"9\">And 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,</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"12\">This 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:</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And the men took of their victuals, and asked not counsel at the mouth of the LORD.</VERS>\r\n      <VERS vnumber=\"15\">And Joshua made peace with them, and made a league with them, to let them live: and the princes of the congregation sware unto them.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">But 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.</VERS>\r\n      <VERS vnumber=\"20\">This 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And 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?</VERS>\r\n      <VERS vnumber=\"23\">Now 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And now, behold, we are in thine hand: as it seemeth good and right unto thee to do unto us, do.</VERS>\r\n      <VERS vnumber=\"26\">And so did he unto them, and delivered them out of the hand of the children of Israel, that they slew them not.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">Now it came to pass, when Adonizedek 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;</VERS>\r\n      <VERS vnumber=\"2\">That 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.</VERS>\r\n      <VERS vnumber=\"3\">Wherefore Adonizedek 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,</VERS>\r\n      <VERS vnumber=\"4\">Come up unto me, and help me, that we may smite Gibeon: for it hath made peace with Joshua and with the children of Israel.</VERS>\r\n      <VERS vnumber=\"5\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">So Joshua ascended from Gilgal, he, and all the people of war with him, and all the mighty men of valour.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">Joshua therefore came unto them suddenly, and went up from Gilgal all night.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">Then 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And Joshua returned, and all Israel with him, unto the camp to Gilgal.</VERS>\r\n      <VERS vnumber=\"16\">But these five kings fled, and hid themselves in a cave at Makkedah.</VERS>\r\n      <VERS vnumber=\"17\">And it was told Joshua, saying, The five kings are found hid in a cave at Makkedah.</VERS>\r\n      <VERS vnumber=\"18\">And Joshua said, Roll great stones upon the mouth of the cave, and set men by it for to keep them:</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And all the people returned to the camp to Joshua at Makkedah in peace: none moved his tongue against any of the children of Israel.</VERS>\r\n      <VERS vnumber=\"22\">Then said Joshua, Open the mouth of the cave, and bring out those five kings unto me out of the cave.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And afterward Joshua smote them, and slew them, and hanged them on five trees: and they were hanging upon the trees until the evening.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">Then Joshua passed from Makkedah, and all Israel with him, unto Libnah, and fought against Libnah:</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">And Joshua passed from Libnah, and all Israel with him, unto Lachish, and encamped against it, and fought against it:</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">Then Horam king of Gezer came up to help Lachish; and Joshua smote him and his people, until he had left him none remaining.</VERS>\r\n      <VERS vnumber=\"34\">And from Lachish Joshua passed unto Eglon, and all Israel with him; and they encamped against it, and fought against it:</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">And Joshua went up from Eglon, and all Israel with him, unto Hebron; and they fought against it:</VERS>\r\n      <VERS vnumber=\"37\">And 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.</VERS>\r\n      <VERS vnumber=\"38\">And Joshua returned, and all Israel with him, to Debir; and fought against it:</VERS>\r\n      <VERS vnumber=\"39\">And 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.</VERS>\r\n      <VERS vnumber=\"40\">So 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.</VERS>\r\n      <VERS vnumber=\"41\">And Joshua smote them from Kadeshbarnea even unto Gaza, and all the country of Goshen, even unto Gibeon.</VERS>\r\n      <VERS vnumber=\"42\">And all these kings and their land did Joshua take at one time, because the LORD God of Israel fought for Israel.</VERS>\r\n      <VERS vnumber=\"43\">And Joshua returned, and all Israel with him, unto the camp to Gilgal.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">And 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,</VERS>\r\n      <VERS vnumber=\"2\">And 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,</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And when all these kings were met together, they came and pitched together at the waters of Merom, to fight against Israel.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">So Joshua came, and all the people of war with him, against them by the waters of Merom suddenly; and they fell upon them.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And Joshua did unto them as the LORD bade him: he houghed their horses, and burnt their chariots with fire.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">But as for the cities that stood still in their strength, Israel burned none of them, save Hazor only; that did Joshua burn.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">As 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.</VERS>\r\n      <VERS vnumber=\"16\">So 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;</VERS>\r\n      <VERS vnumber=\"17\">Even 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.</VERS>\r\n      <VERS vnumber=\"18\">Joshua made war a long time with all those kings.</VERS>\r\n      <VERS vnumber=\"19\">There 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.</VERS>\r\n      <VERS vnumber=\"20\">For 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">There was none of the Anakims left in the land of the children of Israel: only in Gaza, in Gath, and in Ashdod, there remained.</VERS>\r\n      <VERS vnumber=\"23\">So 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">Now 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:</VERS>\r\n      <VERS vnumber=\"2\">Sihon 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;</VERS>\r\n      <VERS vnumber=\"3\">And 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:</VERS>\r\n      <VERS vnumber=\"4\">And the coast of Og king of Bashan, which was of the remnant of the giants, that dwelt at Ashtaroth and at Edrei,</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">Them 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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;</VERS>\r\n      <VERS vnumber=\"8\">In 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:</VERS>\r\n      <VERS vnumber=\"9\">The king of Jericho, one; the king of Ai, which is beside Bethel, one;</VERS>\r\n      <VERS vnumber=\"10\">The king of Jerusalem, one; the king of Hebron, one;</VERS>\r\n      <VERS vnumber=\"11\">The king of Jarmuth, one; the king of Lachish, one;</VERS>\r\n      <VERS vnumber=\"12\">The king of Eglon, one; the king of Gezer, one;</VERS>\r\n      <VERS vnumber=\"13\">The king of Debir, one; the king of Geder, one;</VERS>\r\n      <VERS vnumber=\"14\">The king of Hormah, one; the king of Arad, one;</VERS>\r\n      <VERS vnumber=\"15\">The king of Libnah, one; the king of Adullam, one;</VERS>\r\n      <VERS vnumber=\"16\">The king of Makkedah, one; the king of Bethel, one;</VERS>\r\n      <VERS vnumber=\"17\">The king of Tappuah, one; the king of Hepher, one;</VERS>\r\n      <VERS vnumber=\"18\">The king of Aphek, one; the king of Lasharon, one;</VERS>\r\n      <VERS vnumber=\"19\">The king of Madon, one; the king of Hazor, one;</VERS>\r\n      <VERS vnumber=\"20\">The king of Shimronmeron, one; the king of Achshaph, one;</VERS>\r\n      <VERS vnumber=\"21\">The king of Taanach, one; the king of Megiddo, one;</VERS>\r\n      <VERS vnumber=\"22\">The king of Kedesh, one; the king of Jokneam of Carmel, one;</VERS>\r\n      <VERS vnumber=\"23\">The king of Dor in the coast of Dor, one; the king of the nations of Gilgal, one;</VERS>\r\n      <VERS vnumber=\"24\">The king of Tirzah, one: all the kings thirty and one.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">Now 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.</VERS>\r\n      <VERS vnumber=\"2\">This is the land that yet remaineth: all the borders of the Philistines, and all Geshuri,</VERS>\r\n      <VERS vnumber=\"3\">From 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:</VERS>\r\n      <VERS vnumber=\"4\">From the south, all the land of the Canaanites, and Mearah that is beside the Sidonians, unto Aphek, to the borders of the Amorites:</VERS>\r\n      <VERS vnumber=\"5\">And the land of the Giblites, and all Lebanon, toward the sunrising, from Baalgad under mount Hermon unto the entering into Hamath.</VERS>\r\n      <VERS vnumber=\"6\">All 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.</VERS>\r\n      <VERS vnumber=\"7\">Now therefore divide this land for an inheritance unto the nine tribes, and the half tribe of Manasseh,</VERS>\r\n      <VERS vnumber=\"8\">With 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;</VERS>\r\n      <VERS vnumber=\"9\">From 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;</VERS>\r\n      <VERS vnumber=\"10\">And all the cities of Sihon king of the Amorites, which reigned in Heshbon, unto the border of the children of Ammon;</VERS>\r\n      <VERS vnumber=\"11\">And Gilead, and the border of the Geshurites and Maachathites, and all mount Hermon, and all Bashan unto Salcah;</VERS>\r\n      <VERS vnumber=\"12\">All 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.</VERS>\r\n      <VERS vnumber=\"13\">Nevertheless the children of Israel expelled not the Geshurites, nor the Maachathites: but the Geshurites and the Maachathites dwell among the Israelites until this day.</VERS>\r\n      <VERS vnumber=\"14\">Only unto the tribe 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.</VERS>\r\n      <VERS vnumber=\"15\">And Moses gave unto the tribe of the children of Reuben inheritance according to their families.</VERS>\r\n      <VERS vnumber=\"16\">And 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;</VERS>\r\n      <VERS vnumber=\"17\">Heshbon, and all her cities that are in the plain; Dibon, and Bamothbaal, and Bethbaalmeon,</VERS>\r\n      <VERS vnumber=\"18\">And Jahazah, and Kedemoth, and Mephaath,</VERS>\r\n      <VERS vnumber=\"19\">And Kirjathaim, and Sibmah, and Zarethshahar in the mount of the valley,</VERS>\r\n      <VERS vnumber=\"20\">And Bethpeor, and Ashdothpisgah, and Bethjeshimoth,</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">Balaam also the son of Beor, the soothsayer, did the children of Israel slay with the sword among them that were slain by them.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And Moses gave inheritance unto the tribe of Gad, even unto the children of Gad according to their families.</VERS>\r\n      <VERS vnumber=\"25\">And 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;</VERS>\r\n      <VERS vnumber=\"26\">And from Heshbon unto Ramathmizpeh, and Betonim; and from Mahanaim unto the border of Debir;</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">This is the inheritance of the children of Gad after their families, the cities, and their villages.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">And 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:</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n      <VERS vnumber=\"32\">These are the countries which Moses did distribute for inheritance in the plains of Moab, on the other side Jordan, by Jericho, eastward.</VERS>\r\n      <VERS vnumber=\"33\">But unto the tribe of Levi Moses gave not any inheritance: the LORD God of Israel was their inheritance, as he said unto them.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">By lot was their inheritance, as the LORD commanded by the hand of Moses, for the nine tribes, and for the half tribe.</VERS>\r\n      <VERS vnumber=\"3\">For 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.</VERS>\r\n      <VERS vnumber=\"4\">For 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.</VERS>\r\n      <VERS vnumber=\"5\">As the LORD commanded Moses, so the children of Israel did, and they divided the land.</VERS>\r\n      <VERS vnumber=\"6\">Then 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.</VERS>\r\n      <VERS vnumber=\"7\">Forty 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.</VERS>\r\n      <VERS vnumber=\"8\">Nevertheless my brethren that went up with me made the heart of the people melt: but I wholly followed the LORD my God.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">As 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.</VERS>\r\n      <VERS vnumber=\"12\">Now 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.</VERS>\r\n      <VERS vnumber=\"13\">And Joshua blessed him, and gave unto Caleb the son of Jephunneh Hebron for an inheritance.</VERS>\r\n      <VERS vnumber=\"14\">Hebron 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.</VERS>\r\n      <VERS vnumber=\"15\">And the name of Hebron before was Kirjatharba; which Arba was a great man among the Anakims. And the land had rest from war.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">This 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.</VERS>\r\n      <VERS vnumber=\"2\">And their south border was from the shore of the salt sea, from the bay that looketh southward:</VERS>\r\n      <VERS vnumber=\"3\">And 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:</VERS>\r\n      <VERS vnumber=\"4\">From 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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:</VERS>\r\n      <VERS vnumber=\"6\">And 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:</VERS>\r\n      <VERS vnumber=\"7\">And 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:</VERS>\r\n      <VERS vnumber=\"8\">And 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:</VERS>\r\n      <VERS vnumber=\"9\">And 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:</VERS>\r\n      <VERS vnumber=\"10\">And 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:</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And Caleb drove thence the three sons of Anak, Sheshai, and Ahiman, and Talmai, the children of Anak.</VERS>\r\n      <VERS vnumber=\"15\">And he went up thence to the inhabitants of Debir: and the name of Debir before was Kirjathsepher.</VERS>\r\n      <VERS vnumber=\"16\">And Caleb said, He that smiteth Kirjathsepher, and taketh it, to him will I give Achsah my daughter to wife.</VERS>\r\n      <VERS vnumber=\"17\">And Othniel the son of Kenaz, the brother of Caleb, took it: and he gave him Achsah his daughter to wife.</VERS>\r\n      <VERS vnumber=\"18\">And 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?</VERS>\r\n      <VERS vnumber=\"19\">Who 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.</VERS>\r\n      <VERS vnumber=\"20\">This is the inheritance of the tribe of the children of Judah according to their families.</VERS>\r\n      <VERS vnumber=\"21\">And the uttermost cities of the tribe of the children of Judah toward the coast of Edom southward were Kabzeel, and Eder, and Jagur,</VERS>\r\n      <VERS vnumber=\"22\">And Kinah, and Dimonah, and Adadah,</VERS>\r\n      <VERS vnumber=\"23\">And Kedesh, and Hazor, and Ithnan,</VERS>\r\n      <VERS vnumber=\"24\">Ziph, and Telem, and Bealoth,</VERS>\r\n      <VERS vnumber=\"25\">And Hazor, Hadattah, and Kerioth, and Hezron, which is Hazor,</VERS>\r\n      <VERS vnumber=\"26\">Amam, and Shema, and Moladah,</VERS>\r\n      <VERS vnumber=\"27\">And Hazargaddah, and Heshmon, and Bethpalet,</VERS>\r\n      <VERS vnumber=\"28\">And Hazarshual, and Beersheba, and Bizjothjah,</VERS>\r\n      <VERS vnumber=\"29\">Baalah, and Iim, and Azem,</VERS>\r\n      <VERS vnumber=\"30\">And Eltolad, and Chesil, and Hormah,</VERS>\r\n      <VERS vnumber=\"31\">And Ziklag, and Madmannah, and Sansannah,</VERS>\r\n      <VERS vnumber=\"32\">And Lebaoth, and Shilhim, and Ain, and Rimmon: all the cities are twenty and nine, with their villages:</VERS>\r\n      <VERS vnumber=\"33\">And in the valley, Eshtaol, and Zoreah, and Ashnah,</VERS>\r\n      <VERS vnumber=\"34\">And Zanoah, and Engannim, Tappuah, and Enam,</VERS>\r\n      <VERS vnumber=\"35\">Jarmuth, and Adullam, Socoh, and Azekah,</VERS>\r\n      <VERS vnumber=\"36\">And Sharaim, and Adithaim, and Gederah, and Gederothaim; fourteen cities with their villages:</VERS>\r\n      <VERS vnumber=\"37\">Zenan, and Hadashah, and Migdalgad,</VERS>\r\n      <VERS vnumber=\"38\">And Dilean, and Mizpeh, and Joktheel,</VERS>\r\n      <VERS vnumber=\"39\">Lachish, and Bozkath, and Eglon,</VERS>\r\n      <VERS vnumber=\"40\">And Cabbon, and Lahmam, and Kithlish,</VERS>\r\n      <VERS vnumber=\"41\">And Gederoth, Bethdagon, and Naamah, and Makkedah; sixteen cities with their villages:</VERS>\r\n      <VERS vnumber=\"42\">Libnah, and Ether, and Ashan,</VERS>\r\n      <VERS vnumber=\"43\">And Jiphtah, and Ashnah, and Nezib,</VERS>\r\n      <VERS vnumber=\"44\">And Keilah, and Achzib, and Mareshah; nine cities with their villages:</VERS>\r\n      <VERS vnumber=\"45\">Ekron, with her towns and her villages:</VERS>\r\n      <VERS vnumber=\"46\">From Ekron even unto the sea, all that lay near Ashdod, with their villages:</VERS>\r\n      <VERS vnumber=\"47\">Ashdod 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:</VERS>\r\n      <VERS vnumber=\"48\">And in the mountains, Shamir, and Jattir, and Socoh,</VERS>\r\n      <VERS vnumber=\"49\">And Dannah, and Kirjathsannah, which is Debir,</VERS>\r\n      <VERS vnumber=\"50\">And Anab, and Eshtemoh, and Anim,</VERS>\r\n      <VERS vnumber=\"51\">And Goshen, and Holon, and Giloh; eleven cities with their villages:</VERS>\r\n      <VERS vnumber=\"52\">Arab, and Dumah, and Eshean,</VERS>\r\n      <VERS vnumber=\"53\">And Janum, and Bethtappuah, and Aphekah,</VERS>\r\n      <VERS vnumber=\"54\">And Humtah, and Kirjatharba, which is Hebron, and Zior; nine cities with their villages:</VERS>\r\n      <VERS vnumber=\"55\">Maon, Carmel, and Ziph, and Juttah,</VERS>\r\n      <VERS vnumber=\"56\">And Jezreel, and Jokdeam, and Zanoah,</VERS>\r\n      <VERS vnumber=\"57\">Cain, Gibeah, and Timnah; ten cities with their villages:</VERS>\r\n      <VERS vnumber=\"58\">Halhul, Bethzur, and Gedor,</VERS>\r\n      <VERS vnumber=\"59\">And Maarath, and Bethanoth, and Eltekon; six cities with their villages:</VERS>\r\n      <VERS vnumber=\"60\">Kirjathbaal, which is Kirjathjearim, and Rabbah; two cities with their villages:</VERS>\r\n      <VERS vnumber=\"61\">In the wilderness, Betharabah, Middin, and Secacah,</VERS>\r\n      <VERS vnumber=\"62\">And Nibshan, and the city of Salt, and Engedi; six cities with their villages.</VERS>\r\n      <VERS vnumber=\"63\">As 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">And 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,</VERS>\r\n      <VERS vnumber=\"2\">And goeth out from Bethel to Luz, and passeth along unto the borders of Archi to Ataroth,</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">So the children of Joseph, Manasseh and Ephraim, took their inheritance.</VERS>\r\n      <VERS vnumber=\"5\">And 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;</VERS>\r\n      <VERS vnumber=\"6\">And 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;</VERS>\r\n      <VERS vnumber=\"7\">And it went down from Janohah to Ataroth, and to Naarath, and came to Jericho, and went out at Jordan.</VERS>\r\n      <VERS vnumber=\"8\">The 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.</VERS>\r\n      <VERS vnumber=\"9\">And the separate cities for the children of Ephraim were among the inheritance of the children of Manasseh, all the cities with their villages.</VERS>\r\n      <VERS vnumber=\"10\">And they drave not out the Canaanites that dwelt in Gezer: but the Canaanites dwell among the Ephraimites unto this day, and serve under tribute.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"17\">\r\n      <VERS vnumber=\"1\">There 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.</VERS>\r\n      <VERS vnumber=\"2\">There 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.</VERS>\r\n      <VERS vnumber=\"3\">But 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And there fell ten portions to Manasseh, beside the land of Gilead and Bashan, which were on the other side Jordan;</VERS>\r\n      <VERS vnumber=\"6\">Because the daughters of Manasseh had an inheritance among his sons: and the rest of Manasseh's sons had the land of Gilead.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">Now Manasseh had the land of Tappuah: but Tappuah on the border of Manasseh belonged to the children of Ephraim;</VERS>\r\n      <VERS vnumber=\"9\">And 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:</VERS>\r\n      <VERS vnumber=\"10\">Southward 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">Yet the children of Manasseh could not drive out the inhabitants of those cities; but the Canaanites would dwell in that land.</VERS>\r\n      <VERS vnumber=\"13\">Yet 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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?</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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:</VERS>\r\n      <VERS vnumber=\"18\">But 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"18\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And there remained among the children of Israel seven tribes, which had not yet received their inheritance.</VERS>\r\n      <VERS vnumber=\"3\">And 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?</VERS>\r\n      <VERS vnumber=\"4\">Give 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">Ye 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.</VERS>\r\n      <VERS vnumber=\"7\">But 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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:</VERS>\r\n      <VERS vnumber=\"16\">And 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,</VERS>\r\n      <VERS vnumber=\"17\">And 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,</VERS>\r\n      <VERS vnumber=\"18\">And passed along toward the side over against Arabah northward, and went down unto Arabah:</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">Now the cities of the tribe of the children of Benjamin according to their families were Jericho, and Bethhoglah, and the valley of Keziz,</VERS>\r\n      <VERS vnumber=\"22\">And Betharabah, and Zemaraim, and Bethel,</VERS>\r\n      <VERS vnumber=\"23\">And Avim, and Parah, and Ophrah,</VERS>\r\n      <VERS vnumber=\"24\">And Chepharhaammonai, and Ophni, and Gaba; twelve cities with their villages:</VERS>\r\n      <VERS vnumber=\"25\">Gibeon, and Ramah, and Beeroth,</VERS>\r\n      <VERS vnumber=\"26\">And Mizpeh, and Chephirah, and Mozah,</VERS>\r\n      <VERS vnumber=\"27\">And Rekem, and Irpeel, and Taralah,</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"19\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And they had in their inheritance Beersheba, or Sheba, and Moladah,</VERS>\r\n      <VERS vnumber=\"3\">And Hazarshual, and Balah, and Azem,</VERS>\r\n      <VERS vnumber=\"4\">And Eltolad, and Bethul, and Hormah,</VERS>\r\n      <VERS vnumber=\"5\">And Ziklag, and Bethmarcaboth, and Hazarsusah,</VERS>\r\n      <VERS vnumber=\"6\">And Bethlebaoth, and Sharuhen; thirteen cities and their villages:</VERS>\r\n      <VERS vnumber=\"7\">Ain, Remmon, and Ether, and Ashan; four cities and their villages:</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">Out 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.</VERS>\r\n      <VERS vnumber=\"10\">And the third lot came up for the children of Zebulun according to their families: and the border of their inheritance was unto Sarid:</VERS>\r\n      <VERS vnumber=\"11\">And their border went up toward the sea, and Maralah, and reached to Dabbasheth, and reached to the river that is before Jokneam;</VERS>\r\n      <VERS vnumber=\"12\">And turned from Sarid eastward toward the sunrising unto the border of Chislothtabor, and then goeth out to Daberath, and goeth up to Japhia,</VERS>\r\n      <VERS vnumber=\"13\">And from thence passeth on along on the east to Gittahhepher, to Ittahkazin, and goeth out to Remmonmethoar to Neah;</VERS>\r\n      <VERS vnumber=\"14\">And the border compasseth it on the north side to Hannathon: and the outgoings thereof are in the valley of Jiphthahel:</VERS>\r\n      <VERS vnumber=\"15\">And Kattath, and Nahallal, and Shimron, and Idalah, and Bethlehem: twelve cities with their villages.</VERS>\r\n      <VERS vnumber=\"16\">This is the inheritance of the children of Zebulun according to their families, these cities with their villages.</VERS>\r\n      <VERS vnumber=\"17\">And the fourth lot came out to Issachar, for the children of Issachar according to their families.</VERS>\r\n      <VERS vnumber=\"18\">And their border was toward Jezreel, and Chesulloth, and Shunem,</VERS>\r\n      <VERS vnumber=\"19\">And Hapharaim, and Shion, and Anaharath,</VERS>\r\n      <VERS vnumber=\"20\">And Rabbith, and Kishion, and Abez,</VERS>\r\n      <VERS vnumber=\"21\">And Remeth, and Engannim, and Enhaddah, and Bethpazzez;</VERS>\r\n      <VERS vnumber=\"22\">And the coast reacheth to Tabor, and Shahazimah, and Bethshemesh; and the outgoings of their border were at Jordan: sixteen cities with their villages.</VERS>\r\n      <VERS vnumber=\"23\">This is the inheritance of the tribe of the children of Issachar according to their families, the cities and their villages.</VERS>\r\n      <VERS vnumber=\"24\">And the fifth lot came out for the tribe of the children of Asher according to their families.</VERS>\r\n      <VERS vnumber=\"25\">And their border was Helkath, and Hali, and Beten, and Achshaph,</VERS>\r\n      <VERS vnumber=\"26\">And Alammelech, and Amad, and Misheal; and reacheth to Carmel westward, and to Shihorlibnath;</VERS>\r\n      <VERS vnumber=\"27\">And 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,</VERS>\r\n      <VERS vnumber=\"28\">And Hebron, and Rehob, and Hammon, and Kanah, even unto great Zidon;</VERS>\r\n      <VERS vnumber=\"29\">And 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:</VERS>\r\n      <VERS vnumber=\"30\">Ummah also, and Aphek, and Rehob: twenty and two cities with their villages.</VERS>\r\n      <VERS vnumber=\"31\">This is the inheritance of the tribe of the children of Asher according to their families, these cities with their villages.</VERS>\r\n      <VERS vnumber=\"32\">The sixth lot came out to the children of Naphtali, even for the children of Naphtali according to their families.</VERS>\r\n      <VERS vnumber=\"33\">And their coast was from Heleph, from Allon to Zaanannim, and Adami, Nekeb, and Jabneel, unto Lakum; and the outgoings thereof were at Jordan:</VERS>\r\n      <VERS vnumber=\"34\">And 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.</VERS>\r\n      <VERS vnumber=\"35\">And the fenced cities are Ziddim, Zer, and Hammath, Rakkath, and Chinnereth,</VERS>\r\n      <VERS vnumber=\"36\">And Adamah, and Ramah, and Hazor,</VERS>\r\n      <VERS vnumber=\"37\">And Kedesh, and Edrei, and Enhazor,</VERS>\r\n      <VERS vnumber=\"38\">And Iron, and Migdalel, Horem, and Bethanath, and Bethshemesh; nineteen cities with their villages.</VERS>\r\n      <VERS vnumber=\"39\">This is the inheritance of the tribe of the children of Naphtali according to their families, the cities and their villages.</VERS>\r\n      <VERS vnumber=\"40\">And the seventh lot came out for the tribe of the children of Dan according to their families.</VERS>\r\n      <VERS vnumber=\"41\">And the coast of their inheritance was Zorah, and Eshtaol, and Irshemesh,</VERS>\r\n      <VERS vnumber=\"42\">And Shaalabbin, and Ajalon, and Jethlah,</VERS>\r\n      <VERS vnumber=\"43\">And Elon, and Thimnathah, and Ekron,</VERS>\r\n      <VERS vnumber=\"44\">And Eltekeh, and Gibbethon, and Baalath,</VERS>\r\n      <VERS vnumber=\"45\">And Jehud, and Beneberak, and Gathrimmon,</VERS>\r\n      <VERS vnumber=\"46\">And Mejarkon, and Rakkon, with the border before Japho.</VERS>\r\n      <VERS vnumber=\"47\">And 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.</VERS>\r\n      <VERS vnumber=\"48\">This is the inheritance of the tribe of the children of Dan according to their families, these cities with their villages.</VERS>\r\n      <VERS vnumber=\"49\">When 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:</VERS>\r\n      <VERS vnumber=\"50\">According 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.</VERS>\r\n      <VERS vnumber=\"51\">These 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"20\">\r\n      <VERS vnumber=\"1\">The LORD also spake unto Joshua, saying,</VERS>\r\n      <VERS vnumber=\"2\">Speak to the children of Israel, saying, Appoint out for you cities of refuge, whereof I spake unto you by the hand of Moses:</VERS>\r\n      <VERS vnumber=\"3\">That the slayer that killeth any person unawares and unwittingly may flee thither: and they shall be your refuge from the avenger of blood.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And they appointed Kedesh in Galilee in mount Naphtali, and Shechem in mount Ephraim, and Kirjatharba, which is Hebron, in the mountain of Judah.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">These 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"21\">\r\n      <VERS vnumber=\"1\">Then 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;</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And the children of Israel gave unto the Levites out of their inheritance, at the commandment of the LORD, these cities and their suburbs.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">The 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.</VERS>\r\n      <VERS vnumber=\"8\">And the children of Israel gave by lot unto the Levites these cities with their suburbs, as the LORD commanded by the hand of Moses.</VERS>\r\n      <VERS vnumber=\"9\">And 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,</VERS>\r\n      <VERS vnumber=\"10\">Which 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">But the fields of the city, and the villages thereof, gave they to Caleb the son of Jephunneh for his possession.</VERS>\r\n      <VERS vnumber=\"13\">Thus 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,</VERS>\r\n      <VERS vnumber=\"14\">And Jattir with her suburbs, and Eshtemoa with her suburbs,</VERS>\r\n      <VERS vnumber=\"15\">And Holon with her suburbs, and Debir with her suburbs,</VERS>\r\n      <VERS vnumber=\"16\">And Ain with her suburbs, and Juttah with her suburbs, and Bethshemesh with her suburbs; nine cities out of those two tribes.</VERS>\r\n      <VERS vnumber=\"17\">And out of the tribe of Benjamin, Gibeon with her suburbs, Geba with her suburbs,</VERS>\r\n      <VERS vnumber=\"18\">Anathoth with her suburbs, and Almon with her suburbs; four cities.</VERS>\r\n      <VERS vnumber=\"19\">All the cities of the children of Aaron, the priests, were thirteen cities with their suburbs.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">For they gave them Shechem with her suburbs in mount Ephraim, to be a city of refuge for the slayer; and Gezer with her suburbs,</VERS>\r\n      <VERS vnumber=\"22\">And Kibzaim with her suburbs, and Bethhoron with her suburbs; four cities.</VERS>\r\n      <VERS vnumber=\"23\">And out of the tribe of Dan, Eltekeh with her suburbs, Gibbethon with her suburbs,</VERS>\r\n      <VERS vnumber=\"24\">Aijalon with her suburbs, Gathrimmon with her suburbs; four cities.</VERS>\r\n      <VERS vnumber=\"25\">And out of the half tribe of Manasseh, Tanach with her suburbs, and Gathrimmon with her suburbs; two cities.</VERS>\r\n      <VERS vnumber=\"26\">All the cities were ten with their suburbs for the families of the children of Kohath that remained.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And out of the tribe of Issachar, Kishon with her suburbs, Dabareh with her suburbs,</VERS>\r\n      <VERS vnumber=\"29\">Jarmuth with her suburbs, Engannim with her suburbs; four cities.</VERS>\r\n      <VERS vnumber=\"30\">And out of the tribe of Asher, Mishal with her suburbs, Abdon with her suburbs,</VERS>\r\n      <VERS vnumber=\"31\">Helkath with her suburbs, and Rehob with her suburbs; four cities.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">All the cities of the Gershonites according to their families were thirteen cities with their suburbs.</VERS>\r\n      <VERS vnumber=\"34\">And 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,</VERS>\r\n      <VERS vnumber=\"35\">Dimnah with her suburbs, Nahalal with her suburbs; four cities.</VERS>\r\n      <VERS vnumber=\"36\">And out of the tribe of Reuben, Bezer with her suburbs, and Jahazah with her suburbs,</VERS>\r\n      <VERS vnumber=\"37\">Kedemoth with her suburbs, and Mephaath with her suburbs; four cities.</VERS>\r\n      <VERS vnumber=\"38\">And 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,</VERS>\r\n      <VERS vnumber=\"39\">Heshbon with her suburbs, Jazer with her suburbs; four cities in all.</VERS>\r\n      <VERS vnumber=\"40\">So 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.</VERS>\r\n      <VERS vnumber=\"41\">All the cities of the Levites within the possession of the children of Israel were forty and eight cities with their suburbs.</VERS>\r\n      <VERS vnumber=\"42\">These cities were every one with their suburbs round about them: thus were all these cities.</VERS>\r\n      <VERS vnumber=\"43\">And the LORD gave unto Israel all the land which he sware to give unto their fathers; and they possessed it, and dwelt therein.</VERS>\r\n      <VERS vnumber=\"44\">And 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.</VERS>\r\n      <VERS vnumber=\"45\">There failed not ought of any good thing which the LORD had spoken unto the house of Israel; all came to pass.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"22\">\r\n      <VERS vnumber=\"1\">Then Joshua called the Reubenites, and the Gadites, and the half tribe of Manasseh,</VERS>\r\n      <VERS vnumber=\"2\">And 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:</VERS>\r\n      <VERS vnumber=\"3\">Ye have not left your brethren these many days unto this day, but have kept the charge of the commandment of the LORD your God.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">But 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.</VERS>\r\n      <VERS vnumber=\"6\">So Joshua blessed them, and sent them away: and they went unto their tents.</VERS>\r\n      <VERS vnumber=\"7\">Now 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,</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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,</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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,</VERS>\r\n      <VERS vnumber=\"16\">Thus 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?</VERS>\r\n      <VERS vnumber=\"17\">Is 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,</VERS>\r\n      <VERS vnumber=\"18\">But 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.</VERS>\r\n      <VERS vnumber=\"19\">Notwithstanding, 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.</VERS>\r\n      <VERS vnumber=\"20\">Did 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.</VERS>\r\n      <VERS vnumber=\"21\">Then 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,</VERS>\r\n      <VERS vnumber=\"22\">The 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,)</VERS>\r\n      <VERS vnumber=\"23\">That 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;</VERS>\r\n      <VERS vnumber=\"24\">And 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?</VERS>\r\n      <VERS vnumber=\"25\">For 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.</VERS>\r\n      <VERS vnumber=\"26\">Therefore we said, Let us now prepare to build us an altar, not for burnt offering, nor for sacrifice:</VERS>\r\n      <VERS vnumber=\"27\">But 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.</VERS>\r\n      <VERS vnumber=\"28\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"29\">God 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.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"23\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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:</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">Be 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;</VERS>\r\n      <VERS vnumber=\"7\">That 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:</VERS>\r\n      <VERS vnumber=\"8\">But cleave unto the LORD your God, as ye have done unto this day.</VERS>\r\n      <VERS vnumber=\"9\">For 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.</VERS>\r\n      <VERS vnumber=\"10\">One man of you shall chase a thousand: for the LORD your God, he it is that fighteth for you, as he hath promised you.</VERS>\r\n      <VERS vnumber=\"11\">Take good heed therefore unto yourselves, that ye love the LORD your God.</VERS>\r\n      <VERS vnumber=\"12\">Else 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:</VERS>\r\n      <VERS vnumber=\"13\">Know 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.</VERS>\r\n      <VERS vnumber=\"14\">And, 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.</VERS>\r\n      <VERS vnumber=\"15\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"16\">When 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"24\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">I sent Moses also and Aaron, and I plagued Egypt, according to that which I did among them: and afterward I brought you out.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">Then 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:</VERS>\r\n      <VERS vnumber=\"10\">But I would not hearken unto Balaam; therefore he blessed you still: so I delivered you out of his hand.</VERS>\r\n      <VERS vnumber=\"11\">And ye 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">Now 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And the people answered and said, God forbid that we should forsake the LORD, to serve other gods;</VERS>\r\n      <VERS vnumber=\"17\">For 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:</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">If 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.</VERS>\r\n      <VERS vnumber=\"21\">And the people said unto Joshua, Nay; but we will serve the LORD.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">Now therefore put away, said he, the strange gods which are among you, and incline your heart unto the LORD God of Israel.</VERS>\r\n      <VERS vnumber=\"24\">And the people said unto Joshua, The LORD our God will we serve, and his voice will we obey.</VERS>\r\n      <VERS vnumber=\"25\">So Joshua made a covenant with the people that day, and set them a statute and an ordinance in Shechem.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">So Joshua let the people depart, every man unto his inheritance.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"7\" bname=\"Judges\" bsname=\"Judg\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">Now 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?</VERS>\r\n      <VERS vnumber=\"2\">And the LORD said, Judah shall go up: behold, I have delivered the land into his hand.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And they found Adonibezek in Bezek: and they fought against him, and they slew the Canaanites and the Perizzites.</VERS>\r\n      <VERS vnumber=\"6\">But Adonibezek fled; and they pursued after him, and caught him, and cut off his thumbs and his great toes.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">Now 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And from thence he went against the inhabitants of Debir: and the name of Debir before was Kirjathsepher:</VERS>\r\n      <VERS vnumber=\"12\">And Caleb said, He that smiteth Kirjathsepher, and taketh it, to him will I give Achsah my daughter to wife.</VERS>\r\n      <VERS vnumber=\"13\">And Othniel the son of Kenaz, Caleb's younger brother, took it: and he gave him Achsah his daughter to wife.</VERS>\r\n      <VERS vnumber=\"14\">And 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?</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">Also Judah took Gaza with the coast thereof, and Askelon with the coast thereof, and Ekron with the coast thereof.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And they gave Hebron unto Caleb, as Moses said: and he expelled thence the three sons of Anak.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And the house of Joseph, they also went up against Bethel: and the LORD was with them.</VERS>\r\n      <VERS vnumber=\"23\">And the house of Joseph sent to descry Bethel. (Now the name of the city before was Luz.)</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">Neither 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.</VERS>\r\n      <VERS vnumber=\"28\">And it came to pass, when Israel was strong, that they put the Canaanites to tribute, and did not utterly drive them out.</VERS>\r\n      <VERS vnumber=\"29\">Neither did Ephraim drive out the Canaanites that dwelt in Gezer; but the Canaanites dwelt in Gezer among them.</VERS>\r\n      <VERS vnumber=\"30\">Neither did Zebulun drive out the inhabitants of Kitron, nor the inhabitants of Nahalol; but the Canaanites dwelt among them, and became tributaries.</VERS>\r\n      <VERS vnumber=\"31\">Neither 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:</VERS>\r\n      <VERS vnumber=\"32\">But the Asherites dwelt among the Canaanites, the inhabitants of the land: for they did not drive them out.</VERS>\r\n      <VERS vnumber=\"33\">Neither 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.</VERS>\r\n      <VERS vnumber=\"34\">And the Amorites forced the children of Dan into the mountain: for they would not suffer them to come down to the valley:</VERS>\r\n      <VERS vnumber=\"35\">But 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.</VERS>\r\n      <VERS vnumber=\"36\">And the coast of the Amorites was from the going up to Akrabbim, from the rock, and upward.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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?</VERS>\r\n      <VERS vnumber=\"3\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And they called the name of that place Bochim: and they sacrificed there unto the LORD.</VERS>\r\n      <VERS vnumber=\"6\">And when Joshua had let the people go, the children of Israel went every man unto his inheritance to possess the land.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And Joshua the son of Nun, the servant of the LORD, died, being an hundred and ten years old.</VERS>\r\n      <VERS vnumber=\"9\">And they buried him in the border of his inheritance in Timnathheres, in the mount of Ephraim, on the north side of the hill Gaash.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And the children of Israel did evil in the sight of the LORD, and served Baalim:</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And they forsook the LORD, and served Baal and Ashtaroth.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">Whithersoever 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.</VERS>\r\n      <VERS vnumber=\"16\">Nevertheless the LORD raised up judges, which delivered them out of the hand of those that spoiled them.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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;</VERS>\r\n      <VERS vnumber=\"21\">I also will not henceforth drive out any from before them of the nations which Joshua left when he died:</VERS>\r\n      <VERS vnumber=\"22\">That 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.</VERS>\r\n      <VERS vnumber=\"23\">Therefore the LORD left those nations, without driving them out hastily; neither delivered he them into the hand of Joshua.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Now 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;</VERS>\r\n      <VERS vnumber=\"2\">Only that the generations of the children of Israel might know, to teach them war, at the least such as before knew nothing thereof;</VERS>\r\n      <VERS vnumber=\"3\">Namely, 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And the children of Israel dwelt among the Canaanites, Hittites, and Amorites, and Perizzites, and Hivites, and Jebusites:</VERS>\r\n      <VERS vnumber=\"6\">And they took their daughters to be their wives, and gave their daughters to their sons, and served their gods.</VERS>\r\n      <VERS vnumber=\"7\">And the children of Israel did evil in the sight of the LORD, and forgat the LORD their God, and served Baalim and the groves.</VERS>\r\n      <VERS vnumber=\"8\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And the land had rest forty years. And Othniel the son of Kenaz died.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And he gathered unto him the children of Ammon and Amalek, and went and smote Israel, and possessed the city of palm trees.</VERS>\r\n      <VERS vnumber=\"14\">So the children of Israel served Eglon the king of Moab eighteen years.</VERS>\r\n      <VERS vnumber=\"15\">But 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.</VERS>\r\n      <VERS vnumber=\"16\">But 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.</VERS>\r\n      <VERS vnumber=\"17\">And he brought the present unto Eglon king of Moab: and Eglon was a very fat man.</VERS>\r\n      <VERS vnumber=\"18\">And when he had made an end to offer the present, he sent away the people that bare the present.</VERS>\r\n      <VERS vnumber=\"19\">But 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And Ehud put forth his left hand, and took the dagger from his right thigh, and thrust it into his belly:</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">Then Ehud went forth through the porch, and shut the doors of the parlour upon him, and locked them.</VERS>\r\n      <VERS vnumber=\"24\">When 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And Ehud escaped while they tarried, and passed beyond the quarries, and escaped unto Seirath.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">And they slew of Moab at that time about ten thousand men, all lusty, and all men of valour; and there escaped not a man.</VERS>\r\n      <VERS vnumber=\"30\">So Moab was subdued that day under the hand of Israel. And the land had rest fourscore years.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">And the children of Israel again did evil in the sight of the LORD, when Ehud was dead.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And Deborah, a prophetess, the wife of Lapidoth, she judged Israel at that time.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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?</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And Barak called Zebulun and Naphtali to Kedesh; and he went up with ten thousand men at his feet: and Deborah went up with him.</VERS>\r\n      <VERS vnumber=\"11\">Now 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.</VERS>\r\n      <VERS vnumber=\"12\">And they shewed Sisera that Barak the son of Abinoam was gone up to mount Tabor.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">But 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.</VERS>\r\n      <VERS vnumber=\"17\">Howbeit 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">Again 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.</VERS>\r\n      <VERS vnumber=\"21\">Then 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.</VERS>\r\n      <VERS vnumber=\"22\">And, 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.</VERS>\r\n      <VERS vnumber=\"23\">So God subdued on that day Jabin the king of Canaan before the children of Israel.</VERS>\r\n      <VERS vnumber=\"24\">And the hand of the children of Israel prospered, and prevailed against Jabin the king of Canaan, until they had destroyed Jabin king of Canaan.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">Then sang Deborah and Barak the son of Abinoam on that day, saying,</VERS>\r\n      <VERS vnumber=\"2\">Praise ye the LORD for the avenging of Israel, when the people willingly offered themselves.</VERS>\r\n      <VERS vnumber=\"3\">Hear, 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.</VERS>\r\n      <VERS vnumber=\"4\">LORD, 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.</VERS>\r\n      <VERS vnumber=\"5\">The mountains melted from before the LORD, even that Sinai from before the LORD God of Israel.</VERS>\r\n      <VERS vnumber=\"6\">In the days of Shamgar the son of Anath, in the days of Jael, the highways were unoccupied, and the travellers walked through byways.</VERS>\r\n      <VERS vnumber=\"7\">The inhabitants of the villages ceased, they ceased in Israel, until that I Deborah arose, that I arose a mother in Israel.</VERS>\r\n      <VERS vnumber=\"8\">They chose new gods; then was war in the gates: was there a shield or spear seen among forty thousand in Israel?</VERS>\r\n      <VERS vnumber=\"9\">My heart is toward the governors of Israel, that offered themselves willingly among the people. Bless ye the LORD.</VERS>\r\n      <VERS vnumber=\"10\">Speak, ye that ride on white asses, ye that sit in judgment, and walk by the way.</VERS>\r\n      <VERS vnumber=\"11\">They 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.</VERS>\r\n      <VERS vnumber=\"12\">Awake, awake, Deborah: awake, awake, utter a song: arise, Barak, and lead thy captivity captive, thou son of Abinoam.</VERS>\r\n      <VERS vnumber=\"13\">Then he made him that remaineth have dominion over the nobles among the people: the LORD made me have dominion over the mighty.</VERS>\r\n      <VERS vnumber=\"14\">Out 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">Why abodest thou among the sheepfolds, to hear the bleatings of the flocks? For the divisions of Reuben there were great searchings of heart.</VERS>\r\n      <VERS vnumber=\"17\">Gilead abode beyond Jordan: and why did Dan remain in ships? Asher continued on the sea shore, and abode in his breaches.</VERS>\r\n      <VERS vnumber=\"18\">Zebulun and Naphtali were a people that jeoparded their lives unto the death in the high places of the field.</VERS>\r\n      <VERS vnumber=\"19\">The kings came and fought, then fought the kings of Canaan in Taanach by the waters of Megiddo; they took no gain of money.</VERS>\r\n      <VERS vnumber=\"20\">They fought from heaven; the stars in their courses fought against Sisera.</VERS>\r\n      <VERS vnumber=\"21\">The river of Kishon swept them away, that ancient river, the river Kishon. O my soul, thou hast trodden down strength.</VERS>\r\n      <VERS vnumber=\"22\">Then were the horsehoofs broken by the means of the pransings, the pransings of their mighty ones.</VERS>\r\n      <VERS vnumber=\"23\">Curse 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.</VERS>\r\n      <VERS vnumber=\"24\">Blessed above women shall Jael the wife of Heber the Kenite be, blessed shall she be above women in the tent.</VERS>\r\n      <VERS vnumber=\"25\">He asked water, and she gave him milk; she brought forth butter in a lordly dish.</VERS>\r\n      <VERS vnumber=\"26\">She 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.</VERS>\r\n      <VERS vnumber=\"27\">At her feet he bowed, he fell, he lay down: at her feet he bowed, he fell: where he bowed, there he fell down dead.</VERS>\r\n      <VERS vnumber=\"28\">The 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?</VERS>\r\n      <VERS vnumber=\"29\">Her wise ladies answered her, yea, she returned answer to herself,</VERS>\r\n      <VERS vnumber=\"30\">Have 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?</VERS>\r\n      <VERS vnumber=\"31\">So 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">And the children of Israel did evil in the sight of the LORD: and the LORD delivered them into the hand of Midian seven years.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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;</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">For 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.</VERS>\r\n      <VERS vnumber=\"6\">And Israel was greatly impoverished because of the Midianites; and the children of Israel cried unto the LORD.</VERS>\r\n      <VERS vnumber=\"7\">And it came to pass, when the children of Israel cried unto the LORD because of the Midianites,</VERS>\r\n      <VERS vnumber=\"8\">That 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;</VERS>\r\n      <VERS vnumber=\"9\">And 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;</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And the angel of the LORD appeared unto him, and said unto him, The LORD is with thee, thou mighty man of valour.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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?</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And the LORD said unto him, Surely I will be with thee, and thou shalt smite the Midianites as one man.</VERS>\r\n      <VERS vnumber=\"17\">And he said unto him, If now I have found grace in thy sight, then shew me a sign that thou talkest with me.</VERS>\r\n      <VERS vnumber=\"18\">Depart 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">Then 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.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And the LORD said unto him, Peace be unto thee; fear not: thou shalt not die.</VERS>\r\n      <VERS vnumber=\"24\">Then Gideon built an altar there unto the LORD, and called it Jehovahshalom: unto this day it is yet in Ophrah of the Abiezrites.</VERS>\r\n      <VERS vnumber=\"25\">And 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:</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">Then 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.</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">Then 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.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n      <VERS vnumber=\"32\">Therefore on that day he called him Jerubbaal, saying, Let Baal plead against him, because he hath thrown down his altar.</VERS>\r\n      <VERS vnumber=\"33\">Then 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.</VERS>\r\n      <VERS vnumber=\"34\">But the Spirit of the LORD came upon Gideon, and he blew a trumpet; and Abiezer was gathered after him.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">And Gideon said unto God, If thou wilt save Israel by mine hand, as thou hast said,</VERS>\r\n      <VERS vnumber=\"37\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"38\">And 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.</VERS>\r\n      <VERS vnumber=\"39\">And 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.</VERS>\r\n      <VERS vnumber=\"40\">And God did so that night: for it was dry upon the fleece only, and there was dew on all the ground.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">Then 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">Now 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">So 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">So 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">But if thou fear to go down, go thou with Phurah thy servant down to the host:</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">When 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.</VERS>\r\n      <VERS vnumber=\"19\">So 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And they stood every man in his place round about the camp: and all the host ran, and cried, and fled.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And the men of Israel gathered themselves together out of Naphtali, and out of Asher, and out of all Manasseh, and pursued after the Midianites.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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?</VERS>\r\n      <VERS vnumber=\"3\">God 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.</VERS>\r\n      <VERS vnumber=\"4\">And Gideon came to Jordan, and passed over, he, and the three hundred men that were with him, faint, yet pursuing them.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And the princes of Succoth said, Are the hands of Zebah and Zalmunna now in thine hand, that we should give bread unto thine army?</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And he spake also unto the men of Penuel, saying, When I come again in peace, I will break down this tower.</VERS>\r\n      <VERS vnumber=\"10\">Now 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And when Zebah and Zalmunna fled, he pursued after them, and took the two kings of Midian, Zebah and Zalmunna, and discomfited all the host.</VERS>\r\n      <VERS vnumber=\"13\">And Gideon the son of Joash returned from battle before the sun was up,</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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?</VERS>\r\n      <VERS vnumber=\"16\">And he took the elders of the city, and thorns of the wilderness and briers, and with them he taught the men of Succoth.</VERS>\r\n      <VERS vnumber=\"17\">And he beat down the tower of Penuel, and slew the men of the city.</VERS>\r\n      <VERS vnumber=\"18\">Then 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">Then 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.</VERS>\r\n      <VERS vnumber=\"22\">Then 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.</VERS>\r\n      <VERS vnumber=\"23\">And Gideon said unto them, I will not rule over you, neither shall my son rule over you: the LORD shall rule over you.</VERS>\r\n      <VERS vnumber=\"24\">And 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.)</VERS>\r\n      <VERS vnumber=\"25\">And they answered, We will willingly give them. And they spread a garment, and did cast therein every man the earrings of his prey.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">Thus 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.</VERS>\r\n      <VERS vnumber=\"29\">And Jerubbaal the son of Joash went and dwelt in his own house.</VERS>\r\n      <VERS vnumber=\"30\">And Gideon had threescore and ten sons of his body begotten: for he had many wives.</VERS>\r\n      <VERS vnumber=\"31\">And his concubine that was in Shechem, she also bare him a son, whose name he called Abimelech.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">And 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:</VERS>\r\n      <VERS vnumber=\"35\">Neither shewed they kindness to the house of Jerubbaal, namely, Gideon, according to all the goodness which he had shewed unto Israel.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">And 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,</VERS>\r\n      <VERS vnumber=\"2\">Speak, 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">The trees went forth on a time to anoint a king over them; and they said unto the olive tree, Reign thou over us.</VERS>\r\n      <VERS vnumber=\"9\">But 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?</VERS>\r\n      <VERS vnumber=\"10\">And the trees said to the fig tree, Come thou, and reign over us.</VERS>\r\n      <VERS vnumber=\"11\">But the fig tree said unto them, Should I forsake my sweetness, and my good fruit, and go to be promoted over the trees?</VERS>\r\n      <VERS vnumber=\"12\">Then said the trees unto the vine, Come thou, and reign over us.</VERS>\r\n      <VERS vnumber=\"13\">And the vine said unto them, Should I leave my wine, which cheereth God and man, and go to be promoted over the trees?</VERS>\r\n      <VERS vnumber=\"14\">Then said all the trees unto the bramble, Come thou, and reign over us.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">Now 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;</VERS>\r\n      <VERS vnumber=\"17\">(For my father fought for you, and adventured his life far, and delivered you out of the hand of Midian:</VERS>\r\n      <VERS vnumber=\"18\">And 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;)</VERS>\r\n      <VERS vnumber=\"19\">If 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:</VERS>\r\n      <VERS vnumber=\"20\">But 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.</VERS>\r\n      <VERS vnumber=\"21\">And Jotham ran away, and fled, and went to Beer, and dwelt there, for fear of Abimelech his brother.</VERS>\r\n      <VERS vnumber=\"22\">When Abimelech had reigned three years over Israel,</VERS>\r\n      <VERS vnumber=\"23\">Then God sent an evil spirit between Abimelech and the men of Shechem; and the men of Shechem dealt treacherously with Abimelech:</VERS>\r\n      <VERS vnumber=\"24\">That 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And Gaal the son of Ebed came with his brethren, and went over to Shechem: and the men of Shechem put their confidence in him.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And 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?</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">And when Zebul the ruler of the city heard the words of Gaal the son of Ebed, his anger was kindled.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n      <VERS vnumber=\"32\">Now therefore up by night, thou and the people that is with thee, and lie in wait in the field:</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">And Abimelech rose up, and all the people that were with him, by night, and they laid wait against Shechem in four companies.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">And 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.</VERS>\r\n      <VERS vnumber=\"37\">And 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.</VERS>\r\n      <VERS vnumber=\"38\">Then 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.</VERS>\r\n      <VERS vnumber=\"39\">And Gaal went out before the men of Shechem, and fought with Abimelech.</VERS>\r\n      <VERS vnumber=\"40\">And Abimelech chased him, and he fled before him, and many were overthrown and wounded, even unto the entering of the gate.</VERS>\r\n      <VERS vnumber=\"41\">And Abimelech dwelt at Arumah: and Zebul thrust out Gaal and his brethren, that they should not dwell in Shechem.</VERS>\r\n      <VERS vnumber=\"42\">And it came to pass on the morrow, that the people went out into the field; and they told Abimelech.</VERS>\r\n      <VERS vnumber=\"43\">And 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.</VERS>\r\n      <VERS vnumber=\"44\">And 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.</VERS>\r\n      <VERS vnumber=\"45\">And 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.</VERS>\r\n      <VERS vnumber=\"46\">And when all the men of the tower of Shechem heard that, they entered into an hold of the house of the god Berith.</VERS>\r\n      <VERS vnumber=\"47\">And it was told Abimelech, that all the men of the tower of Shechem were gathered together.</VERS>\r\n      <VERS vnumber=\"48\">And 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.</VERS>\r\n      <VERS vnumber=\"49\">And 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.</VERS>\r\n      <VERS vnumber=\"50\">Then went Abimelech to Thebez, and encamped against Thebez, and took it.</VERS>\r\n      <VERS vnumber=\"51\">But 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.</VERS>\r\n      <VERS vnumber=\"52\">And Abimelech came unto the tower, and fought against it, and went hard unto the door of the tower to burn it with fire.</VERS>\r\n      <VERS vnumber=\"53\">And a certain woman cast a piece of a millstone upon Abimelech's head, and all to brake his skull.</VERS>\r\n      <VERS vnumber=\"54\">Then 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 woman slew him. And his young man thrust him through, and he died.</VERS>\r\n      <VERS vnumber=\"55\">And when the men of Israel saw that Abimelech was dead, they departed every man unto his place.</VERS>\r\n      <VERS vnumber=\"56\">Thus God rendered the wickedness of Abimelech, which he did unto his father, in slaying his seventy brethren:</VERS>\r\n      <VERS vnumber=\"57\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And he judged Israel twenty and three years, and died, and was buried in Shamir.</VERS>\r\n      <VERS vnumber=\"3\">And after him arose Jair, a Gileadite, and judged Israel twenty and two years.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And Jair died, and was buried in Camon.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">Moreover 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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?</VERS>\r\n      <VERS vnumber=\"12\">The Zidonians also, and the Amalekites, and the Maonites, did oppress you; and ye cried to me, and I delivered you out of their hand.</VERS>\r\n      <VERS vnumber=\"13\">Yet ye have forsaken me, and served other gods: wherefore I will deliver you no more.</VERS>\r\n      <VERS vnumber=\"14\">Go and cry unto the gods which ye have chosen; let them deliver you in the time of your tribulation.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And they put away the strange gods from among them, and served the LORD: and his soul was grieved for the misery of Israel.</VERS>\r\n      <VERS vnumber=\"17\">Then the children of Ammon were gathered together, and encamped in Gilead. And the children of Israel assembled themselves together, and encamped in Mizpeh.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">Now Jephthah the Gileadite was a mighty man of valour, and he was the son of an harlot: and Gilead begat Jephthah.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">Then 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.</VERS>\r\n      <VERS vnumber=\"4\">And it came to pass in process of time, that the children of Ammon made war against Israel.</VERS>\r\n      <VERS vnumber=\"5\">And 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:</VERS>\r\n      <VERS vnumber=\"6\">And they said unto Jephthah, Come, and be our captain, that we may fight with the children of Ammon.</VERS>\r\n      <VERS vnumber=\"7\">And 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?</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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?</VERS>\r\n      <VERS vnumber=\"10\">And the elders of Gilead said unto Jephthah, The LORD be witness between us, if we do not so according to thy words.</VERS>\r\n      <VERS vnumber=\"11\">Then 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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?</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And Jephthah sent messengers again unto the king of the children of Ammon:</VERS>\r\n      <VERS vnumber=\"15\">And said unto him, Thus saith Jephthah, Israel took not away the land of Moab, nor the land of the children of Ammon:</VERS>\r\n      <VERS vnumber=\"16\">But when Israel came up from Egypt, and walked through the wilderness unto the Red sea, and came to Kadesh;</VERS>\r\n      <VERS vnumber=\"17\">Then 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.</VERS>\r\n      <VERS vnumber=\"18\">Then 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">But Sihon trusted not Israel to pass through his coast: but Sihon gathered all his people together, and pitched in Jahaz, and fought against Israel.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And they possessed all the coasts of the Amorites, from Arnon even unto Jabbok, and from the wilderness even unto Jordan.</VERS>\r\n      <VERS vnumber=\"23\">So now the LORD God of Israel hath dispossessed the Amorites from before his people Israel, and shouldest thou possess it?</VERS>\r\n      <VERS vnumber=\"24\">Wilt 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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,</VERS>\r\n      <VERS vnumber=\"26\">While 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?</VERS>\r\n      <VERS vnumber=\"27\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"28\">Howbeit the king of the children of Ammon hearkened not unto the words of Jephthah which he sent him.</VERS>\r\n      <VERS vnumber=\"29\">Then 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.</VERS>\r\n      <VERS vnumber=\"30\">And Jephthah vowed a vow unto the LORD, and said, If thou shalt without fail deliver the children of Ammon into mine hands,</VERS>\r\n      <VERS vnumber=\"31\">Then 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.</VERS>\r\n      <VERS vnumber=\"32\">So Jephthah passed over unto the children of Ammon to fight against them; and the LORD delivered them into his hands.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">And 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.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">And 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.</VERS>\r\n      <VERS vnumber=\"37\">And 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.</VERS>\r\n      <VERS vnumber=\"38\">And he said, Go. And he sent her away for two months: and she went with her companions, and bewailed her virginity upon the mountains.</VERS>\r\n      <VERS vnumber=\"39\">And 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,</VERS>\r\n      <VERS vnumber=\"40\">That the daughters of Israel went yearly to lament the daughter of Jephthah the Gileadite four days in a year.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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?</VERS>\r\n      <VERS vnumber=\"4\">Then 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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;</VERS>\r\n      <VERS vnumber=\"6\">Then 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.</VERS>\r\n      <VERS vnumber=\"7\">And Jephthah judged Israel six years. Then died Jephthah the Gileadite, and was buried in one of the cities of Gilead.</VERS>\r\n      <VERS vnumber=\"8\">And after him Ibzan of Bethlehem judged Israel.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">Then died Ibzan, and was buried at Bethlehem.</VERS>\r\n      <VERS vnumber=\"11\">And after him Elon, a Zebulonite, judged Israel; and he judged Israel ten years.</VERS>\r\n      <VERS vnumber=\"12\">And Elon the Zebulonite died, and was buried in Aijalon in the country of Zebulun.</VERS>\r\n      <VERS vnumber=\"13\">And after him Abdon the son of Hillel, a Pirathonite, judged Israel.</VERS>\r\n      <VERS vnumber=\"14\">And he had forty sons and thirty nephews, that rode on threescore and ten ass colts: and he judged Israel eight years.</VERS>\r\n      <VERS vnumber=\"15\">And Abdon the son of Hillel the Pirathonite died, and was buried in Pirathon in the land of Ephraim, in the mount of the Amalekites.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">Now therefore beware, I pray thee, and drink not wine nor strong drink, and eat not any unclean thing:</VERS>\r\n      <VERS vnumber=\"5\">For, 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.</VERS>\r\n      <VERS vnumber=\"6\">Then 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:</VERS>\r\n      <VERS vnumber=\"7\">But 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.</VERS>\r\n      <VERS vnumber=\"8\">Then 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And Manoah said, Now let thy words come to pass. How shall we order the child, and how shall we do unto him?</VERS>\r\n      <VERS vnumber=\"13\">And the angel of the LORD said unto Manoah, Of all that I said unto the woman let her beware.</VERS>\r\n      <VERS vnumber=\"14\">She 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And Manoah said unto the angel of the LORD, What is thy name, that when thy sayings come to pass we may do thee honour?</VERS>\r\n      <VERS vnumber=\"18\">And the angel of the LORD said unto him, Why askest thou thus after my name, seeing it is secret?</VERS>\r\n      <VERS vnumber=\"19\">So Manoah took a kid with a meat offering, and offered it upon a rock unto the LORD: and the angel did wondrously; and Manoah and his wife looked on.</VERS>\r\n      <VERS vnumber=\"20\">For 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.</VERS>\r\n      <VERS vnumber=\"21\">But 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.</VERS>\r\n      <VERS vnumber=\"22\">And Manoah said unto his wife, We shall surely die, because we have seen God.</VERS>\r\n      <VERS vnumber=\"23\">But 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.</VERS>\r\n      <VERS vnumber=\"24\">And the woman bare a son, and called his name Samson: and the child grew, and the LORD blessed him.</VERS>\r\n      <VERS vnumber=\"25\">And the Spirit of the LORD began to move him at times in the camp of Dan between Zorah and Eshtaol.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">And Samson went down to Timnath, and saw a woman in Timnath of the daughters of the Philistines.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">Then 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.</VERS>\r\n      <VERS vnumber=\"4\">But 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.</VERS>\r\n      <VERS vnumber=\"5\">Then 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And he went down, and talked with the woman; and she pleased Samson well.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">So his father went down unto the woman: and Samson made there a feast; for so used the young men to do.</VERS>\r\n      <VERS vnumber=\"11\">And it came to pass, when they saw him, that they brought thirty companions to be with him.</VERS>\r\n      <VERS vnumber=\"12\">And 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:</VERS>\r\n      <VERS vnumber=\"13\">But 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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?</VERS>\r\n      <VERS vnumber=\"16\">And 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?</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">But Samson's wife was given to his companion, whom he had used as his friend.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">But 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And Samson said concerning them, Now shall I be more blameless than the Philistines, though I do them a displeasure.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">Then 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.</VERS>\r\n      <VERS vnumber=\"7\">And Samson said unto them, Though ye have done this, yet will I be avenged of you, and after that I will cease.</VERS>\r\n      <VERS vnumber=\"8\">And he smote them hip and thigh with a great slaughter: and he went down and dwelt in the top of the rock Etam.</VERS>\r\n      <VERS vnumber=\"9\">Then the Philistines went up, and pitched in Judah, and spread themselves in Lehi.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">Then 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And he found a new jawbone of an ass, and put forth his hand, and took it, and slew a thousand men therewith.</VERS>\r\n      <VERS vnumber=\"16\">And Samson said, With the jawbone of an ass, heaps upon heaps, with the jaw of an ass have I slain a thousand men.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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?</VERS>\r\n      <VERS vnumber=\"19\">But 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.</VERS>\r\n      <VERS vnumber=\"20\">And he judged Israel in the days of the Philistines twenty years.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">Then went Samson to Gaza, and saw there an harlot, and went in unto her.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And it came to pass afterward, that he loved a woman in the valley of Sorek, whose name was Delilah.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And Delilah said to Samson, Tell me, I pray thee, wherein thy great strength lieth, and wherewith thou mightest be bound to afflict thee.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">Then the lords of the Philistines brought up to her seven green withs which had not been dried, and she bound him with them.</VERS>\r\n      <VERS vnumber=\"9\">Now 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.</VERS>\r\n      <VERS vnumber=\"10\">And Delilah said unto Samson, Behold, thou hast mocked me, and told me lies: now tell me, I pray thee, wherewith thou mightest be bound.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">Delilah 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And it came to pass, when she pressed him daily with her words, and urged him, so that his soul was vexed unto death;</VERS>\r\n      <VERS vnumber=\"17\">That 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">But 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.</VERS>\r\n      <VERS vnumber=\"22\">Howbeit the hair of his head began to grow again after he was shaven.</VERS>\r\n      <VERS vnumber=\"23\">Then 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">Now 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.</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">Then 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"17\">\r\n      <VERS vnumber=\"1\">And there was a man of mount Ephraim, whose name was Micah.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">Yet 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.</VERS>\r\n      <VERS vnumber=\"5\">And the man Micah had an house of gods, and made an ephod, and teraphim, and consecrated one of his sons, who became his priest.</VERS>\r\n      <VERS vnumber=\"6\">In those days there was no king in Israel, but every man did that which was right in his own eyes.</VERS>\r\n      <VERS vnumber=\"7\">And there was a young man out of Bethlehemjudah of the family of Judah, who was a Levite, and he sojourned there.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And the Levite was content to dwell with the man; and the young man was unto him as one of his sons.</VERS>\r\n      <VERS vnumber=\"12\">And Micah consecrated the Levite; and the young man became his priest, and was in the house of Micah.</VERS>\r\n      <VERS vnumber=\"13\">Then said Micah, Now know I that the LORD will do me good, seeing I have a Levite to my priest.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"18\">\r\n      <VERS vnumber=\"1\">In 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">When 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?</VERS>\r\n      <VERS vnumber=\"4\">And he said unto them, Thus and thus dealeth Micah with me, and hath hired me, and I am his priest.</VERS>\r\n      <VERS vnumber=\"5\">And they said unto him, Ask counsel, we pray thee, of God, that we may know whether our way which we go shall be prosperous.</VERS>\r\n      <VERS vnumber=\"6\">And the priest said unto them, Go in peace: before the LORD is your way wherein ye go.</VERS>\r\n      <VERS vnumber=\"7\">Then 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.</VERS>\r\n      <VERS vnumber=\"8\">And they came unto their brethren to Zorah and Eshtaol: and their brethren said unto them, What say ye?</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">When 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And they went up, and pitched in Kirjathjearim, in Judah: wherefore they called that place Mahanehdan unto this day: behold, it is behind Kirjathjearim.</VERS>\r\n      <VERS vnumber=\"13\">And they passed thence unto mount Ephraim, and came unto the house of Micah.</VERS>\r\n      <VERS vnumber=\"14\">Then 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.</VERS>\r\n      <VERS vnumber=\"15\">And they turned thitherward, and came to the house of the young man the Levite, even unto the house of Micah, and saluted him.</VERS>\r\n      <VERS vnumber=\"16\">And the six hundred men appointed with their weapons of war, which were of the children of Dan, stood by the entering of the gate.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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?</VERS>\r\n      <VERS vnumber=\"19\">And 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?</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">So they turned and departed, and put the little ones and the cattle and the carriage before them.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And 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?</VERS>\r\n      <VERS vnumber=\"24\">And 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?</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">And they set them up Micah's graven image, which he made, all the time that the house of God was in Shiloh.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"19\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And when the man rose up to depart, his father in law urged him: therefore he lodged there again.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">But 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And they passed on and went their way; and the sun went down upon them when they were by Gibeah, which belongeth to Benjamin.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And, 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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?</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">Yet 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.</VERS>\r\n      <VERS vnumber=\"20\">And the old man said, Peace be with thee; howsoever let all thy wants lie upon me; only lodge not in the street.</VERS>\r\n      <VERS vnumber=\"21\">So he brought him into his house, and gave provender unto the asses: and they washed their feet, and did eat and drink.</VERS>\r\n      <VERS vnumber=\"22\">Now 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.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"25\">But 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.</VERS>\r\n      <VERS vnumber=\"26\">Then 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"20\">\r\n      <VERS vnumber=\"1\">Then 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">(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?</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">Behold, ye are all children of Israel; give here your advice and counsel.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">But now this shall be the thing which we will do to Gibeah; we will go up by lot against it;</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">So all the men of Israel were gathered against the city, knit together as one man.</VERS>\r\n      <VERS vnumber=\"12\">And the tribes of Israel sent men through all the tribe of Benjamin, saying, What wickedness is this that is done among you?</VERS>\r\n      <VERS vnumber=\"13\">Now 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:</VERS>\r\n      <VERS vnumber=\"14\">But the children of Benjamin gathered themselves together out of the cities unto Gibeah, to go out to battle against the children of Israel.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">Among all this people there were seven hundred chosen men lefthanded; every one could sling stones at an hair breadth, and not miss.</VERS>\r\n      <VERS vnumber=\"17\">And the men of Israel, beside Benjamin, were numbered four hundred thousand men that drew sword: all these were men of war.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And the children of Israel rose up in the morning, and encamped against Gibeah.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">(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.)</VERS>\r\n      <VERS vnumber=\"24\">And the children of Israel came near against the children of Benjamin the second day.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">Then 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.</VERS>\r\n      <VERS vnumber=\"27\">And the children of Israel enquired of the LORD, (for the ark of the covenant of God was there in those days,</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">And Israel set liers in wait round about Gibeah.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">And 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.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">So 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.</VERS>\r\n      <VERS vnumber=\"37\">And 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.</VERS>\r\n      <VERS vnumber=\"38\">Now 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.</VERS>\r\n      <VERS vnumber=\"39\">And 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.</VERS>\r\n      <VERS vnumber=\"40\">But 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.</VERS>\r\n      <VERS vnumber=\"41\">And when the men of Israel turned again, the men of Benjamin were amazed: for they saw that evil was come upon them.</VERS>\r\n      <VERS vnumber=\"42\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"43\">Thus they inclosed the Benjamites round about, and chased them, and trode them down with ease over against Gibeah toward the sunrising.</VERS>\r\n      <VERS vnumber=\"44\">And there fell of Benjamin eighteen thousand men; all these were men of valour.</VERS>\r\n      <VERS vnumber=\"45\">And 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.</VERS>\r\n      <VERS vnumber=\"46\">So that all which fell that day of Benjamin were twenty and five thousand men that drew the sword; all these were men of valour.</VERS>\r\n      <VERS vnumber=\"47\">But six hundred men turned and fled to the wilderness unto the rock Rimmon, and abode in the rock Rimmon four months.</VERS>\r\n      <VERS vnumber=\"48\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"21\">\r\n      <VERS vnumber=\"1\">Now the men of Israel had sworn in Mizpeh, saying, There shall not any of us give his daughter unto Benjamin to wife.</VERS>\r\n      <VERS vnumber=\"2\">And the people came to the house of God, and abode there till even before God, and lifted up their voices, and wept sore;</VERS>\r\n      <VERS vnumber=\"3\">And 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?</VERS>\r\n      <VERS vnumber=\"4\">And it came to pass on the morrow, that the people rose early, and built there an altar, and offered burnt offerings and peace offerings.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And the children of Israel repented them for Benjamin their brother, and said, There is one tribe cut off from Israel this day.</VERS>\r\n      <VERS vnumber=\"7\">How 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?</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">For the people were numbered, and, behold, there were none of the inhabitants of Jabeshgilead there.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And this is the thing that ye shall do, Ye shall utterly destroy every male, and every woman that hath lain by man.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And the whole congregation sent some to speak to the children of Benjamin that were in the rock Rimmon, and to call peaceably unto them.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And the people repented them for Benjamin, because that the LORD had made a breach in the tribes of Israel.</VERS>\r\n      <VERS vnumber=\"16\">Then the elders of the congregation said, How shall we do for wives for them that remain, seeing the women are destroyed out of Benjamin?</VERS>\r\n      <VERS vnumber=\"17\">And they said, There must be an inheritance for them that be escaped of Benjamin, that a tribe be not destroyed out of Israel.</VERS>\r\n      <VERS vnumber=\"18\">Howbeit 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.</VERS>\r\n      <VERS vnumber=\"19\">Then 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.</VERS>\r\n      <VERS vnumber=\"20\">Therefore they commanded the children of Benjamin, saying, Go and lie in wait in the vineyards;</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">In those days there was no king in Israel: every man did that which was right in his own eyes.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"8\" bname=\"Ruth\" bsname=\"Ruth\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">Now 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And Elimelech Naomi's husband died; and she was left, and her two sons.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And Mahlon and Chilion died also both of them; and the woman was left of her two sons and her husband.</VERS>\r\n      <VERS vnumber=\"6\">Then 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.</VERS>\r\n      <VERS vnumber=\"7\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">The 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.</VERS>\r\n      <VERS vnumber=\"10\">And they said unto her, Surely we will return with thee unto thy people.</VERS>\r\n      <VERS vnumber=\"11\">And 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?</VERS>\r\n      <VERS vnumber=\"12\">Turn 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;</VERS>\r\n      <VERS vnumber=\"13\">Would 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.</VERS>\r\n      <VERS vnumber=\"14\">And they lifted up their voice, and wept again: and Orpah kissed her mother in law; but Ruth clave unto her.</VERS>\r\n      <VERS vnumber=\"15\">And she said, Behold, thy sister in law is gone back unto her people, and unto her gods: return thou after thy sister in law.</VERS>\r\n      <VERS vnumber=\"16\">And 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:</VERS>\r\n      <VERS vnumber=\"17\">Where 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.</VERS>\r\n      <VERS vnumber=\"18\">When she saw that she was stedfastly minded to go with her, then she left speaking unto her.</VERS>\r\n      <VERS vnumber=\"19\">So 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?</VERS>\r\n      <VERS vnumber=\"20\">And she said unto them, Call me not Naomi, call me Mara: for the Almighty hath dealt very bitterly with me.</VERS>\r\n      <VERS vnumber=\"21\">I 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?</VERS>\r\n      <VERS vnumber=\"22\">So 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">And Naomi had a kinsman of her husband's, a mighty man of wealth, of the family of Elimelech; and his name was Boaz.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And, behold, Boaz came from Bethlehem, and said unto the reapers, The LORD be with you. And they answered him, The LORD bless thee.</VERS>\r\n      <VERS vnumber=\"5\">Then said Boaz unto his servant that was set over the reapers, Whose damsel is this?</VERS>\r\n      <VERS vnumber=\"6\">And 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:</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">Then 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:</VERS>\r\n      <VERS vnumber=\"9\">Let 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.</VERS>\r\n      <VERS vnumber=\"10\">Then 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?</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">The 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.</VERS>\r\n      <VERS vnumber=\"13\">Then 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And when she was risen up to glean, Boaz commanded his young men, saying, Let her glean even among the sheaves, and reproach her not:</VERS>\r\n      <VERS vnumber=\"16\">And let fall also some of the handfuls of purpose for her, and leave them, that she may glean them, and rebuke her not.</VERS>\r\n      <VERS vnumber=\"17\">So she gleaned in the field until even, and beat out that she had gleaned: and it was about an ephah of barley.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And Ruth the Moabitess said, He said unto me also, Thou shalt keep fast by my young men, until they have ended all my harvest.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">So 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Then Naomi her mother in law said unto her, My daughter, shall I not seek rest for thee, that it may be well with thee?</VERS>\r\n      <VERS vnumber=\"2\">And now is not Boaz of our kindred, with whose maidens thou wast? Behold, he winnoweth barley to night in the threshingfloor.</VERS>\r\n      <VERS vnumber=\"3\">Wash 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And she said unto her, All that thou sayest unto me I will do.</VERS>\r\n      <VERS vnumber=\"6\">And she went down unto the floor, and did according to all that her mother in law bade her.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And it came to pass at midnight, that the man was afraid, and turned himself: and, behold, a woman lay at his feet.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And now it is true that I am thy near kinsman: howbeit there is a kinsman nearer than I.</VERS>\r\n      <VERS vnumber=\"13\">Tarry 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">Also 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And she said, These six measures of barley gave he me; for he said to me, Go not empty unto thy mother in law.</VERS>\r\n      <VERS vnumber=\"18\">Then 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">Then 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.</VERS>\r\n      <VERS vnumber=\"2\">And he took ten men of the elders of the city, and said, Sit ye down here. And they sat down.</VERS>\r\n      <VERS vnumber=\"3\">And 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:</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">Then 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">Now 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.</VERS>\r\n      <VERS vnumber=\"8\">Therefore the kinsman said unto Boaz, Buy it for thee. So he drew off his shoe.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">Moreover 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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:</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">So 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And Naomi took the child, and laid it in her bosom, and became nurse unto it.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">Now these are the generations of Pharez: Pharez begat Hezron,</VERS>\r\n      <VERS vnumber=\"19\">And Hezron begat Ram, and Ram begat Amminadab,</VERS>\r\n      <VERS vnumber=\"20\">And Amminadab begat Nahshon, and Nahshon begat Salmon,</VERS>\r\n      <VERS vnumber=\"21\">And Salmon begat Boaz, and Boaz begat Obed,</VERS>\r\n      <VERS vnumber=\"22\">And Obed begat Jesse, and Jesse begat David.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"9\" bname=\"1 Samuel\" bsname=\"1Sam\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">Now 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:</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And when the time was that Elkanah offered, he gave to Peninnah his wife, and to all her sons and her daughters, portions:</VERS>\r\n      <VERS vnumber=\"5\">But unto Hannah he gave a worthy portion; for he loved Hannah: but the LORD had shut up her womb.</VERS>\r\n      <VERS vnumber=\"6\">And her adversary also provoked her sore, for to make her fret, because the LORD had shut up her womb.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">Then 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?</VERS>\r\n      <VERS vnumber=\"9\">So 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.</VERS>\r\n      <VERS vnumber=\"10\">And she was in bitterness of soul, and prayed unto the LORD, and wept sore.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And it came to pass, as she continued praying before the LORD, that Eli marked her mouth.</VERS>\r\n      <VERS vnumber=\"13\">Now Hannah, she spake in her heart; only her lips moved, but her voice was not heard: therefore Eli thought she had been drunken.</VERS>\r\n      <VERS vnumber=\"14\">And Eli said unto her, How long wilt thou be drunken? put away thy wine from thee.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">Count not thine handmaid for a daughter of Belial: for out of the abundance of my complaint and grief have I spoken hitherto.</VERS>\r\n      <VERS vnumber=\"17\">Then Eli answered and said, Go in peace: and the God of Israel grant thee thy petition that thou hast asked of him.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"21\">And the man Elkanah, and all his house, went up to offer unto the LORD the yearly sacrifice, and his vow.</VERS>\r\n      <VERS vnumber=\"22\">But 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.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And they slew a bullock, and brought the child to Eli.</VERS>\r\n      <VERS vnumber=\"26\">And she said, Oh my lord, as thy soul liveth, my lord, I am the woman that stood by thee here, praying unto the LORD.</VERS>\r\n      <VERS vnumber=\"27\">For this child I prayed; and the LORD hath given me my petition which I asked of him:</VERS>\r\n      <VERS vnumber=\"28\">Therefore 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">There is none holy as the LORD: for there is none beside thee: neither is there any rock like our God.</VERS>\r\n      <VERS vnumber=\"3\">Talk 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.</VERS>\r\n      <VERS vnumber=\"4\">The bows of the mighty men are broken, and they that stumbled are girded with strength.</VERS>\r\n      <VERS vnumber=\"5\">They 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.</VERS>\r\n      <VERS vnumber=\"6\">The LORD killeth, and maketh alive: he bringeth down to the grave, and bringeth up.</VERS>\r\n      <VERS vnumber=\"7\">The LORD maketh poor, and maketh rich: he bringeth low, and lifteth up.</VERS>\r\n      <VERS vnumber=\"8\">He 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.</VERS>\r\n      <VERS vnumber=\"9\">He will keep the feet of his saints, and the wicked shall be silent in darkness; for by strength shall no man prevail.</VERS>\r\n      <VERS vnumber=\"10\">The 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.</VERS>\r\n      <VERS vnumber=\"11\">And Elkanah went to Ramah to his house. And the child did minister unto the LORD before Eli the priest.</VERS>\r\n      <VERS vnumber=\"12\">Now the sons of Eli were sons of Belial; they knew not the LORD.</VERS>\r\n      <VERS vnumber=\"13\">And the priests' 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;</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">Also 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">Wherefore the sin of the young men was very great before the LORD: for men abhorred the offering of the LORD.</VERS>\r\n      <VERS vnumber=\"18\">But Samuel ministered before the LORD, being a child, girded with a linen ephod.</VERS>\r\n      <VERS vnumber=\"19\">Moreover 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And the LORD visited Hannah, so that she conceived, and bare three sons and two daughters. And the child Samuel grew before the LORD.</VERS>\r\n      <VERS vnumber=\"22\">Now 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.</VERS>\r\n      <VERS vnumber=\"23\">And he said unto them, Why do ye such things? for I hear of your evil dealings by all this people.</VERS>\r\n      <VERS vnumber=\"24\">Nay, my sons; for it is no good report that I hear: ye make the LORD'S people to transgress.</VERS>\r\n      <VERS vnumber=\"25\">If 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.</VERS>\r\n      <VERS vnumber=\"26\">And the child Samuel grew on, and was in favour both with the LORD, and also with men.</VERS>\r\n      <VERS vnumber=\"27\">And 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?</VERS>\r\n      <VERS vnumber=\"28\">And 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?</VERS>\r\n      <VERS vnumber=\"29\">Wherefore 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?</VERS>\r\n      <VERS vnumber=\"30\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"31\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">And 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.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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;</VERS>\r\n      <VERS vnumber=\"3\">And 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;</VERS>\r\n      <VERS vnumber=\"4\">That the LORD called Samuel: and he answered, Here am I.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">Now Samuel did not yet know the LORD, neither was the word of the LORD yet revealed unto him.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"10\">And the LORD came, and stood, and called as at other times, Samuel, Samuel. Then Samuel answered, Speak; for thy servant heareth.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">In 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.</VERS>\r\n      <VERS vnumber=\"13\">For 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And Samuel lay until the morning, and opened the doors of the house of the LORD. And Samuel feared to shew Eli the vision.</VERS>\r\n      <VERS vnumber=\"16\">Then Eli called Samuel, and said, Samuel, my son. And he answered, Here am I.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And Samuel told him every whit, and hid nothing from him. And he said, It is the LORD: let him do what seemeth him good.</VERS>\r\n      <VERS vnumber=\"19\">And Samuel grew, and the LORD was with him, and did let none of his words fall to the ground.</VERS>\r\n      <VERS vnumber=\"20\">And all Israel from Dan even to Beersheba knew that Samuel was established to be a prophet of the LORD.</VERS>\r\n      <VERS vnumber=\"21\">And the LORD appeared again in Shiloh: for the LORD revealed himself to Samuel in Shiloh by the word of the LORD.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">So 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">Woe 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.</VERS>\r\n      <VERS vnumber=\"9\">Be 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And the ark of God was taken; and the two sons of Eli, Hophni and Phinehas, were slain.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">Now Eli was ninety and eight years old; and his eyes were dim, that he could not see.</VERS>\r\n      <VERS vnumber=\"16\">And 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?</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And she said, The glory is departed from Israel: for the ark of God is taken.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">And the Philistines took the ark of God, and brought it from Ebenezer unto Ashdod.</VERS>\r\n      <VERS vnumber=\"2\">When the Philistines took the ark of God, they brought it into the house of Dagon, and set it by Dagon.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">Therefore neither the priests of Dagon, nor any that come into Dagon's house, tread on the threshold of Dagon in Ashdod unto this day.</VERS>\r\n      <VERS vnumber=\"6\">But 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">They 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"11\">So 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.</VERS>\r\n      <VERS vnumber=\"12\">And the men that died not were smitten with the emerods: and the cry of the city went up to heaven.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">And the ark of the LORD was in the country of the Philistines seven months.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">Then 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.</VERS>\r\n      <VERS vnumber=\"5\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"6\">Wherefore 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?</VERS>\r\n      <VERS vnumber=\"7\">Now 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:</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And the men did so; and took two milch kine, and tied them to the cart, and shut up their calves at home:</VERS>\r\n      <VERS vnumber=\"11\">And they laid the ark of the LORD upon the cart, and the coffer with the mice of gold and the images of their emerods.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And when the five lords of the Philistines had seen it, they returned to Ekron the same day.</VERS>\r\n      <VERS vnumber=\"17\">And 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;</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And the men of Bethshemesh said, Who is able to stand before this holy LORD God? and to whom shall he go up from us?</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">Then the children of Israel did put away Baalim and Ashtaroth, and served the LORD only.</VERS>\r\n      <VERS vnumber=\"5\">And Samuel said, Gather all Israel to Mizpeh, and I will pray for you unto the LORD.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And the men of Israel went out of Mizpeh, and pursued the Philistines, and smote them, until they came under Bethcar.</VERS>\r\n      <VERS vnumber=\"12\">Then 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.</VERS>\r\n      <VERS vnumber=\"13\">So 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And Samuel judged Israel all the days of his life.</VERS>\r\n      <VERS vnumber=\"16\">And he went from year to year in circuit to Bethel, and Gilgal, and Mizpeh, and judged Israel in all those places.</VERS>\r\n      <VERS vnumber=\"17\">And his return was to Ramah; for there was his house; and there he judged Israel; and there he built an altar unto the LORD.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">And it came to pass, when Samuel was old, that he made his sons judges over Israel.</VERS>\r\n      <VERS vnumber=\"2\">Now the name of his firstborn was Joel; and the name of his second, Abiah: they were judges in Beersheba.</VERS>\r\n      <VERS vnumber=\"3\">And his sons walked not in his ways, but turned aside after lucre, and took bribes, and perverted judgment.</VERS>\r\n      <VERS vnumber=\"4\">Then all the elders of Israel gathered themselves together, and came to Samuel unto Ramah,</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">But the thing displeased Samuel, when they said, Give us a king to judge us. And Samuel prayed unto the LORD.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">According 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.</VERS>\r\n      <VERS vnumber=\"9\">Now therefore hearken unto their voice: howbeit yet protest solemnly unto them, and shew them the manner of the king that shall reign over them.</VERS>\r\n      <VERS vnumber=\"10\">And Samuel told all the words of the LORD unto the people that asked of him a king.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And he will take your daughters to be confectionaries, and to be cooks, and to be bakers.</VERS>\r\n      <VERS vnumber=\"14\">And he will take your fields, and your vineyards, and your oliveyards, even the best of them, and give them to his servants.</VERS>\r\n      <VERS vnumber=\"15\">And he will take the tenth of your seed, and of your vineyards, and give to his officers, and to his servants.</VERS>\r\n      <VERS vnumber=\"16\">And he will take your menservants, and your maidservants, and your goodliest young men, and your asses, and put them to his work.</VERS>\r\n      <VERS vnumber=\"17\">He will take the tenth of your sheep: and ye shall be his servants.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">Nevertheless the people refused to obey the voice of Samuel; and they said, Nay; but we will have a king over us;</VERS>\r\n      <VERS vnumber=\"20\">That we also may be like all the nations; and that our king may judge us, and go out before us, and fight our battles.</VERS>\r\n      <VERS vnumber=\"21\">And Samuel heard all the words of the people, and he rehearsed them in the ears of the LORD.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">Now 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">Then 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?</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">(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.)</VERS>\r\n      <VERS vnumber=\"10\">Then said Saul to his servant, Well said; come, let us go. So they went unto the city where the man of God was.</VERS>\r\n      <VERS vnumber=\"11\">And 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?</VERS>\r\n      <VERS vnumber=\"12\">And 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:</VERS>\r\n      <VERS vnumber=\"13\">As 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">Now the LORD had told Samuel in his ear a day before Saul came, saying,</VERS>\r\n      <VERS vnumber=\"16\">To 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">Then Saul drew near to Samuel in the gate, and said, Tell me, I pray thee, where the seer's house is.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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?</VERS>\r\n      <VERS vnumber=\"21\">And 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?</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And Samuel said unto the cook, Bring the portion which I gave thee, of which I said unto thee, Set it by thee.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And when they were come down from the high place into the city, Samuel communed with Saul upon the top of the house.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">Then 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?</VERS>\r\n      <VERS vnumber=\"2\">When 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?</VERS>\r\n      <VERS vnumber=\"3\">Then 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:</VERS>\r\n      <VERS vnumber=\"4\">And they will salute thee, and give thee two loaves of bread; which thou shalt receive of their hands.</VERS>\r\n      <VERS vnumber=\"5\">After 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:</VERS>\r\n      <VERS vnumber=\"6\">And the Spirit of the LORD will come upon thee, and thou shalt prophesy with them, and shalt be turned into another man.</VERS>\r\n      <VERS vnumber=\"7\">And let it be, when these signs are come unto thee, that thou do as occasion serve thee; for God is with thee.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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?</VERS>\r\n      <VERS vnumber=\"12\">And one of the same place answered and said, But who is their father? Therefore it became a proverb, Is Saul also among the prophets?</VERS>\r\n      <VERS vnumber=\"13\">And when he had made an end of prophesying, he came to the high place.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And Saul's uncle said, Tell me, I pray thee, what Samuel said unto you.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And Samuel called the people together unto the LORD to Mizpeh;</VERS>\r\n      <VERS vnumber=\"18\">And 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:</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And when Samuel had caused all the tribes of Israel to come near, the tribe of Benjamin was taken.</VERS>\r\n      <VERS vnumber=\"21\">When 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.</VERS>\r\n      <VERS vnumber=\"22\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">Then 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.</VERS>\r\n      <VERS vnumber=\"26\">And Saul also went home to Gibeah; and there went with him a band of men, whose hearts God had touched.</VERS>\r\n      <VERS vnumber=\"27\">But the children of Belial said, How shall this man save us? And they despised him, and brought him no presents. But he held his peace.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">Then 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">Then 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.</VERS>\r\n      <VERS vnumber=\"5\">And, 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.</VERS>\r\n      <VERS vnumber=\"6\">And the Spirit of God came upon Saul when he heard those tidings, and his anger was kindled greatly.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And when he numbered them in Bezek, the children of Israel were three hundred thousand, and the men of Judah thirty thousand.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And Saul said, There shall not a man be put to death this day: for to day the LORD hath wrought salvation in Israel.</VERS>\r\n      <VERS vnumber=\"14\">Then said Samuel to the people, Come, and let us go to Gilgal, and renew the kingdom there.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"4\">And they said, Thou hast not defrauded us, nor oppressed us, neither hast thou taken ought of any man's hand.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">Now 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.</VERS>\r\n      <VERS vnumber=\"8\">When 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">Now therefore behold the king whom ye have chosen, and whom ye have desired! and, behold, the LORD hath set a king over you.</VERS>\r\n      <VERS vnumber=\"14\">If 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:</VERS>\r\n      <VERS vnumber=\"15\">But 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.</VERS>\r\n      <VERS vnumber=\"16\">Now therefore stand and see this great thing, which the LORD will do before your eyes.</VERS>\r\n      <VERS vnumber=\"17\">Is 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.</VERS>\r\n      <VERS vnumber=\"18\">So Samuel called unto the LORD; and the LORD sent thunder and rain that day: and all the people greatly feared the LORD and Samuel.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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;</VERS>\r\n      <VERS vnumber=\"21\">And turn ye not aside: for then should ye go after vain things, which cannot profit nor deliver; for they are vain.</VERS>\r\n      <VERS vnumber=\"22\">For the LORD will not forsake his people for his great name's sake: because it hath pleased the LORD to make you his people.</VERS>\r\n      <VERS vnumber=\"23\">Moreover 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:</VERS>\r\n      <VERS vnumber=\"24\">Only fear the LORD, and serve him in truth with all your heart: for consider how great things he hath done for you.</VERS>\r\n      <VERS vnumber=\"25\">But if ye shall still do wickedly, ye shall be consumed, both ye and your king.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">Saul reigned one year; and when he had reigned two years over Israel,</VERS>\r\n      <VERS vnumber=\"2\">Saul 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">When 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And Saul said, Bring hither a burnt offering to me, and peace offerings. And he offered the burnt offering.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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;</VERS>\r\n      <VERS vnumber=\"12\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">But 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And Saul, and Jonathan his son, and the people that were present with them, abode in Gibeah of Benjamin: but the Philistines encamped in Michmash.</VERS>\r\n      <VERS vnumber=\"17\">And 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:</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">Now there was no smith found throughout all the land of Israel: for the Philistines said, Lest the Hebrews make them swords or spears:</VERS>\r\n      <VERS vnumber=\"20\">But all the Israelites went down to the Philistines, to sharpen every man his share, and his coulter, and his axe, and his mattock.</VERS>\r\n      <VERS vnumber=\"21\">Yet they had a file for the mattocks, and for the coulters, and for the forks, and for the axes, and to sharpen the goads.</VERS>\r\n      <VERS vnumber=\"22\">So 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.</VERS>\r\n      <VERS vnumber=\"23\">And the garrison of the Philistines went out to the passage of Michmash.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">Now 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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;</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">The forefront of the one was situate northward over against Michmash, and the other southward over against Gibeah.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And his armourbearer said unto him, Do all that is in thine heart: turn thee; behold, I am with thee according to thy heart.</VERS>\r\n      <VERS vnumber=\"8\">Then said Jonathan, Behold, we will pass over unto these men, and we will discover ourselves unto them.</VERS>\r\n      <VERS vnumber=\"9\">If 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.</VERS>\r\n      <VERS vnumber=\"10\">But 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And the watchmen of Saul in Gibeah of Benjamin looked; and, behold, the multitude melted away, and they went on beating down one another.</VERS>\r\n      <VERS vnumber=\"17\">Then 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.</VERS>\r\n      <VERS vnumber=\"18\">And Saul said unto Ahiah, Bring hither the ark of God. For the ark of God was at that time with the children of Israel.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">Moreover 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.</VERS>\r\n      <VERS vnumber=\"22\">Likewise 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.</VERS>\r\n      <VERS vnumber=\"23\">So the LORD saved Israel that day: and the battle passed over unto Bethaven.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And all they of the land came to a wood; and there was honey upon the ground.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">But 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.</VERS>\r\n      <VERS vnumber=\"28\">Then 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.</VERS>\r\n      <VERS vnumber=\"29\">Then 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.</VERS>\r\n      <VERS vnumber=\"30\">How 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?</VERS>\r\n      <VERS vnumber=\"31\">And they smote the Philistines that day from Michmash to Aijalon: and the people were very faint.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">Then 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.</VERS>\r\n      <VERS vnumber=\"34\">And 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.</VERS>\r\n      <VERS vnumber=\"35\">And Saul built an altar unto the LORD: the same was the first altar that he built unto the LORD.</VERS>\r\n      <VERS vnumber=\"36\">And 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.</VERS>\r\n      <VERS vnumber=\"37\">And 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.</VERS>\r\n      <VERS vnumber=\"38\">And Saul said, Draw ye near hither, all the chief of the people: and know and see wherein this sin hath been this day.</VERS>\r\n      <VERS vnumber=\"39\">For, 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.</VERS>\r\n      <VERS vnumber=\"40\">Then 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.</VERS>\r\n      <VERS vnumber=\"41\">Therefore Saul said unto the LORD God of Israel, Give a perfect lot. And Saul and Jonathan were taken: but the people escaped.</VERS>\r\n      <VERS vnumber=\"42\">And Saul said, Cast lots between me and Jonathan my son. And Jonathan was taken.</VERS>\r\n      <VERS vnumber=\"43\">Then 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.</VERS>\r\n      <VERS vnumber=\"44\">And Saul answered, God do so and more also: for thou shalt surely die, Jonathan.</VERS>\r\n      <VERS vnumber=\"45\">And 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.</VERS>\r\n      <VERS vnumber=\"46\">Then Saul went up from following the Philistines: and the Philistines went to their own place.</VERS>\r\n      <VERS vnumber=\"47\">So 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.</VERS>\r\n      <VERS vnumber=\"48\">And he gathered an host, and smote the Amalekites, and delivered Israel out of the hands of them that spoiled them.</VERS>\r\n      <VERS vnumber=\"49\">Now 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:</VERS>\r\n      <VERS vnumber=\"50\">And 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.</VERS>\r\n      <VERS vnumber=\"51\">And Kish was the father of Saul; and Ner the father of Abner was the son of Abiel.</VERS>\r\n      <VERS vnumber=\"52\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">Samuel 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.</VERS>\r\n      <VERS vnumber=\"2\">Thus 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.</VERS>\r\n      <VERS vnumber=\"3\">Now 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.</VERS>\r\n      <VERS vnumber=\"4\">And Saul gathered the people together, and numbered them in Telaim, two hundred thousand footmen, and ten thousand men of Judah.</VERS>\r\n      <VERS vnumber=\"5\">And Saul came to a city of Amalek, and laid wait in the valley.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And Saul smote the Amalekites from Havilah until thou comest to Shur, that is over against Egypt.</VERS>\r\n      <VERS vnumber=\"8\">And he took Agag the king of the Amalekites alive, and utterly destroyed all the people with the edge of the sword.</VERS>\r\n      <VERS vnumber=\"9\">But 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.</VERS>\r\n      <VERS vnumber=\"10\">Then came the word of the LORD unto Samuel, saying,</VERS>\r\n      <VERS vnumber=\"11\">It 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And Samuel came to Saul: and Saul said unto him, Blessed be thou of the LORD: I have performed the commandment of the LORD.</VERS>\r\n      <VERS vnumber=\"14\">And Samuel said, What meaneth then this bleating of the sheep in mine ears, and the lowing of the oxen which I hear?</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">Then 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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?</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">Wherefore 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?</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">But 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.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">For 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">Now therefore, I pray thee, pardon my sin, and turn again with me, that I may worship the LORD.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And as Samuel turned about to go away, he laid hold upon the skirt of his mantle, and it rent.</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">And also the Strength of Israel will not lie nor repent: for he is not a man, that he should repent.</VERS>\r\n      <VERS vnumber=\"30\">Then 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.</VERS>\r\n      <VERS vnumber=\"31\">So Samuel turned again after Saul; and Saul worshipped the LORD.</VERS>\r\n      <VERS vnumber=\"32\">Then 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.</VERS>\r\n      <VERS vnumber=\"33\">And Samuel said, As thy sword hath made women childless, so shall thy mother be childless among women. And Samuel hewed Agag in pieces before the LORD in Gilgal.</VERS>\r\n      <VERS vnumber=\"34\">Then Samuel went to Ramah; and Saul went up to his house to Gibeah of Saul.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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?</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And it came to pass, when they were come, that he looked on Eliab, and said, Surely the LORD'S anointed is before him.</VERS>\r\n      <VERS vnumber=\"7\">But 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.</VERS>\r\n      <VERS vnumber=\"8\">Then Jesse called Abinadab, and made him pass before Samuel. And he said, Neither hath the LORD chosen this.</VERS>\r\n      <VERS vnumber=\"9\">Then Jesse made Shammah to pass by. And he said, Neither hath the LORD chosen this.</VERS>\r\n      <VERS vnumber=\"10\">Again, Jesse made seven of his sons to pass before Samuel. And Samuel said unto Jesse, The LORD hath not chosen these.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">Then 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.</VERS>\r\n      <VERS vnumber=\"14\">But the Spirit of the LORD departed from Saul, and an evil spirit from the LORD troubled him.</VERS>\r\n      <VERS vnumber=\"15\">And Saul's servants said unto him, Behold now, an evil spirit from God troubleth thee.</VERS>\r\n      <VERS vnumber=\"16\">Let 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.</VERS>\r\n      <VERS vnumber=\"17\">And Saul said unto his servants, Provide me now a man that can play well, and bring him to me.</VERS>\r\n      <VERS vnumber=\"18\">Then 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.</VERS>\r\n      <VERS vnumber=\"19\">Wherefore Saul sent messengers unto Jesse, and said, Send me David thy son, which is with the sheep.</VERS>\r\n      <VERS vnumber=\"20\">And Jesse took an ass laden with bread, and a bottle of wine, and a kid, and sent them by David his son unto Saul.</VERS>\r\n      <VERS vnumber=\"21\">And David came to Saul, and stood before him: and he loved him greatly; and he became his armourbearer.</VERS>\r\n      <VERS vnumber=\"22\">And Saul sent to Jesse, saying, Let David, I pray thee, stand before me; for he hath found favour in my sight.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"17\">\r\n      <VERS vnumber=\"1\">Now 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And there went out a champion out of the camp of the Philistines, named Goliath, of Gath, whose height was six cubits and a span.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And he had greaves of brass upon his legs, and a target of brass between his shoulders.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">If 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.</VERS>\r\n      <VERS vnumber=\"10\">And the Philistine said, I defy the armies of Israel this day; give me a man, that we may fight together.</VERS>\r\n      <VERS vnumber=\"11\">When Saul and all Israel heard those words of the Philistine, they were dismayed, and greatly afraid.</VERS>\r\n      <VERS vnumber=\"12\">Now 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And David was the youngest: and the three eldest followed Saul.</VERS>\r\n      <VERS vnumber=\"15\">But David went and returned from Saul to feed his father's sheep at Bethlehem.</VERS>\r\n      <VERS vnumber=\"16\">And the Philistine drew near morning and evening, and presented himself forty days.</VERS>\r\n      <VERS vnumber=\"17\">And 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 to thy brethren;</VERS>\r\n      <VERS vnumber=\"18\">And carry these ten cheeses unto the captain of their thousand, and look how thy brethren fare, and take their pledge.</VERS>\r\n      <VERS vnumber=\"19\">Now Saul, and they, and all the men of Israel, were in the valley of Elah, fighting with the Philistines.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">For Israel and the Philistines had put the battle in array, army against army.</VERS>\r\n      <VERS vnumber=\"22\">And David left his carriage in the hand of the keeper of the carriage, and ran into the army, and came and saluted his brethren.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And all the men of Israel, when they saw the man, fled from him, and were sore afraid.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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?</VERS>\r\n      <VERS vnumber=\"27\">And the people answered him after this manner, saying, So shall it be done to the man that killeth him.</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">And David said, What have I now done? Is there not a cause?</VERS>\r\n      <VERS vnumber=\"30\">And he turned from him toward another, and spake after the same manner: and the people answered him again after the former manner.</VERS>\r\n      <VERS vnumber=\"31\">And when the words were heard which David spake, they rehearsed them before Saul: and he sent for him.</VERS>\r\n      <VERS vnumber=\"32\">And David said to Saul, Let no man's heart fail because of him; thy servant will go and fight with this Philistine.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">And 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:</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">Thy 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.</VERS>\r\n      <VERS vnumber=\"37\">David 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.</VERS>\r\n      <VERS vnumber=\"38\">And 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.</VERS>\r\n      <VERS vnumber=\"39\">And 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.</VERS>\r\n      <VERS vnumber=\"40\">And 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.</VERS>\r\n      <VERS vnumber=\"41\">And the Philistine came on and drew near unto David; and the man that bare the shield went before him.</VERS>\r\n      <VERS vnumber=\"42\">And when the Philistine looked about, and saw David, he disdained him: for he was but a youth, and ruddy, and of a fair countenance.</VERS>\r\n      <VERS vnumber=\"43\">And the Philistine said unto David, Am I a dog, that thou comest to me with staves? And the Philistine cursed David by his gods.</VERS>\r\n      <VERS vnumber=\"44\">And 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.</VERS>\r\n      <VERS vnumber=\"45\">Then 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.</VERS>\r\n      <VERS vnumber=\"46\">This 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.</VERS>\r\n      <VERS vnumber=\"47\">And 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.</VERS>\r\n      <VERS vnumber=\"48\">And it came to pass, when the Philistine arose, and came and drew nigh to meet David, that David hasted, and ran toward the army to meet the Philistine.</VERS>\r\n      <VERS vnumber=\"49\">And 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.</VERS>\r\n      <VERS vnumber=\"50\">So 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.</VERS>\r\n      <VERS vnumber=\"51\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"52\">And 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.</VERS>\r\n      <VERS vnumber=\"53\">And the children of Israel returned from chasing after the Philistines, and they spoiled their tents.</VERS>\r\n      <VERS vnumber=\"54\">And David took the head of the Philistine, and brought it to Jerusalem; but he put his armour in his tent.</VERS>\r\n      <VERS vnumber=\"55\">And 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.</VERS>\r\n      <VERS vnumber=\"56\">And the king said, Enquire thou whose son the stripling is.</VERS>\r\n      <VERS vnumber=\"57\">And 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.</VERS>\r\n      <VERS vnumber=\"58\">And Saul said to him, Whose son art thou, thou young man? And David answered, I am the son of thy servant Jesse the Bethlehemite.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"18\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And Saul took him that day, and would let him go no more home to his father's house.</VERS>\r\n      <VERS vnumber=\"3\">Then Jonathan and David made a covenant, because he loved him as his own soul.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And the women answered one another as they played, and said, Saul hath slain his thousands, and David his ten thousands.</VERS>\r\n      <VERS vnumber=\"8\">And 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?</VERS>\r\n      <VERS vnumber=\"9\">And Saul eyed David from that day and forward.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And Saul was afraid of David, because the LORD was with him, and was departed from Saul.</VERS>\r\n      <VERS vnumber=\"13\">Therefore Saul removed him from him, and made him his captain over a thousand; and he went out and came in before the people.</VERS>\r\n      <VERS vnumber=\"14\">And David behaved himself wisely in all his ways; and the LORD was with him.</VERS>\r\n      <VERS vnumber=\"15\">Wherefore when Saul saw that he behaved himself very wisely, he was afraid of him.</VERS>\r\n      <VERS vnumber=\"16\">But all Israel and Judah loved David, because he went out and came in before them.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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?</VERS>\r\n      <VERS vnumber=\"19\">But 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.</VERS>\r\n      <VERS vnumber=\"20\">And Michal Saul's daughter loved David: and they told Saul, and the thing pleased him.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And 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?</VERS>\r\n      <VERS vnumber=\"24\">And the servants of Saul told him, saying, On this manner spake David.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"28\">And Saul saw and knew that the LORD was with David, and that Michal Saul's daughter loved him.</VERS>\r\n      <VERS vnumber=\"29\">And Saul was yet the more afraid of David; and Saul became David's enemy continually.</VERS>\r\n      <VERS vnumber=\"30\">Then 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"19\">\r\n      <VERS vnumber=\"1\">And Saul spake to Jonathan his son, and to all his servants, that they should kill David.</VERS>\r\n      <VERS vnumber=\"2\">But 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:</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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:</VERS>\r\n      <VERS vnumber=\"5\">For 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?</VERS>\r\n      <VERS vnumber=\"6\">And Saul hearkened unto the voice of Jonathan: and Saul sware, As the LORD liveth, he shall not be slain.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">Saul 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.</VERS>\r\n      <VERS vnumber=\"12\">So Michal let David down through a window: and he went, and fled, and escaped.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And when Saul sent messengers to take David, she said, He is sick.</VERS>\r\n      <VERS vnumber=\"15\">And Saul sent the messengers again to see David, saying, Bring him up to me in the bed, that I may slay him.</VERS>\r\n      <VERS vnumber=\"16\">And when the messengers were come in, behold, there was an image in the bed, with a pillow of goats' hair for his bolster.</VERS>\r\n      <VERS vnumber=\"17\">And 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?</VERS>\r\n      <VERS vnumber=\"18\">So 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.</VERS>\r\n      <VERS vnumber=\"19\">And it was told Saul, saying, Behold, David is at Naioth in Ramah.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">Then 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.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"20\">\r\n      <VERS vnumber=\"1\">And 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?</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">Then said Jonathan unto David, Whatsoever thy soul desireth, I will even do it for thee.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">If 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.</VERS>\r\n      <VERS vnumber=\"7\">If 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.</VERS>\r\n      <VERS vnumber=\"8\">Therefore 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?</VERS>\r\n      <VERS vnumber=\"9\">And 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?</VERS>\r\n      <VERS vnumber=\"10\">Then said David to Jonathan, Who shall tell me? or what if thy father answer thee roughly?</VERS>\r\n      <VERS vnumber=\"11\">And Jonathan said unto David, Come, and let us go out into the field. And they went out both of them into the field.</VERS>\r\n      <VERS vnumber=\"12\">And 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;</VERS>\r\n      <VERS vnumber=\"13\">The 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.</VERS>\r\n      <VERS vnumber=\"14\">And thou shalt not only while yet I live shew me the kindness of the LORD, that I die not:</VERS>\r\n      <VERS vnumber=\"15\">But 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.</VERS>\r\n      <VERS vnumber=\"16\">So Jonathan made a covenant with the house of David, saying, Let the LORD even require it at the hand of David's enemies.</VERS>\r\n      <VERS vnumber=\"17\">And Jonathan caused David to swear again, because he loved him: for he loved him as he loved his own soul.</VERS>\r\n      <VERS vnumber=\"18\">Then Jonathan said to David, To morrow is the new moon: and thou shalt be missed, because thy seat will be empty.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And I will shoot three arrows on the side thereof, as though I shot at a mark.</VERS>\r\n      <VERS vnumber=\"21\">And, 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.</VERS>\r\n      <VERS vnumber=\"22\">But if I say thus unto the young man, Behold, the arrows are beyond thee; go thy way: for the LORD hath sent thee away.</VERS>\r\n      <VERS vnumber=\"23\">And as touching the matter which thou and I have spoken of, behold, the LORD be between thee and me for ever.</VERS>\r\n      <VERS vnumber=\"24\">So David hid himself in the field: and when the new moon was come, the king sat him down to eat meat.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">Nevertheless Saul spake not any thing that day: for he thought, Something hath befallen him, he is not clean; surely he is not clean.</VERS>\r\n      <VERS vnumber=\"27\">And 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?</VERS>\r\n      <VERS vnumber=\"28\">And Jonathan answered Saul, David earnestly asked leave of me to go to Bethlehem:</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">Then 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?</VERS>\r\n      <VERS vnumber=\"31\">For 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.</VERS>\r\n      <VERS vnumber=\"32\">And Jonathan answered Saul his father, and said unto him, Wherefore shall he be slain? what hath he done?</VERS>\r\n      <VERS vnumber=\"33\">And Saul cast a javelin at him to smite him: whereby Jonathan knew that it was determined of his father to slay David.</VERS>\r\n      <VERS vnumber=\"34\">So 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.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">And 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.</VERS>\r\n      <VERS vnumber=\"37\">And 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?</VERS>\r\n      <VERS vnumber=\"38\">And Jonathan cried after the lad, Make speed, haste, stay not. And Jonathan's lad gathered up the arrows, and came to his master.</VERS>\r\n      <VERS vnumber=\"39\">But the lad knew not any thing: only Jonathan and David knew the matter.</VERS>\r\n      <VERS vnumber=\"40\">And Jonathan gave his artillery unto his lad, and said unto him, Go, carry them to the city.</VERS>\r\n      <VERS vnumber=\"41\">And 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.</VERS>\r\n      <VERS vnumber=\"42\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"21\">\r\n      <VERS vnumber=\"1\">Then 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?</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">Now therefore what is under thine hand? give me five loaves of bread in mine hand, or what there is present.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">So 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.</VERS>\r\n      <VERS vnumber=\"7\">Now 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And David arose, and fled that day for fear of Saul, and went to Achish the king of Gath.</VERS>\r\n      <VERS vnumber=\"11\">And 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?</VERS>\r\n      <VERS vnumber=\"12\">And David laid up these words in his heart, and was sore afraid of Achish the king of Gath.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">Then said Achish unto his servants, Lo, ye see the man is mad: wherefore then have ye brought him to me?</VERS>\r\n      <VERS vnumber=\"15\">Have 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?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"22\">\r\n      <VERS vnumber=\"1\">David 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And he brought them before the king of Moab: and they dwelt with him all the while that David was in the hold.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">When 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;)</VERS>\r\n      <VERS vnumber=\"7\">Then 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;</VERS>\r\n      <VERS vnumber=\"8\">That 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?</VERS>\r\n      <VERS vnumber=\"9\">Then 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.</VERS>\r\n      <VERS vnumber=\"10\">And he enquired of the LORD for him, and gave him victuals, and gave him the sword of Goliath the Philistine.</VERS>\r\n      <VERS vnumber=\"11\">Then 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.</VERS>\r\n      <VERS vnumber=\"12\">And Saul said, Hear now, thou son of Ahitub. And he answered, Here I am, my lord.</VERS>\r\n      <VERS vnumber=\"13\">And 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?</VERS>\r\n      <VERS vnumber=\"14\">Then 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?</VERS>\r\n      <VERS vnumber=\"15\">Did 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.</VERS>\r\n      <VERS vnumber=\"16\">And the king said, Thou shalt surely die, Ahimelech, thou, and all thy father's house.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And one of the sons of Ahimelech the son of Ahitub, named Abiathar, escaped, and fled after David.</VERS>\r\n      <VERS vnumber=\"21\">And Abiathar shewed David that Saul had slain the LORD'S priests.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">Abide thou with me, fear not: for he that seeketh my life seeketh thy life: but with me thou shalt be in safeguard.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"23\">\r\n      <VERS vnumber=\"1\">Then they told David, saying, Behold, the Philistines fight against Keilah, and they rob the threshingfloors.</VERS>\r\n      <VERS vnumber=\"2\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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?</VERS>\r\n      <VERS vnumber=\"4\">Then 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.</VERS>\r\n      <VERS vnumber=\"5\">So 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And Saul called all the people together to war, to go down to Keilah, to besiege David and his men.</VERS>\r\n      <VERS vnumber=\"9\">And David knew that Saul secretly practised mischief against him; and he said to Abiathar the priest, Bring hither the ephod.</VERS>\r\n      <VERS vnumber=\"10\">Then 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.</VERS>\r\n      <VERS vnumber=\"11\">Will 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.</VERS>\r\n      <VERS vnumber=\"12\">Then 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.</VERS>\r\n      <VERS vnumber=\"13\">Then 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And David saw that Saul was come out to seek his life: and David was in the wilderness of Ziph in a wood.</VERS>\r\n      <VERS vnumber=\"16\">And Jonathan Saul's son arose, and went to David into the wood, and strengthened his hand in God.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And they two made a covenant before the LORD: and David abode in the wood, and Jonathan went to his house.</VERS>\r\n      <VERS vnumber=\"19\">Then 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?</VERS>\r\n      <VERS vnumber=\"20\">Now 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.</VERS>\r\n      <VERS vnumber=\"21\">And Saul said, Blessed be ye of the LORD; for ye have compassion on me.</VERS>\r\n      <VERS vnumber=\"22\">Go, 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.</VERS>\r\n      <VERS vnumber=\"23\">See 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">Saul 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">But there came a messenger unto Saul, saying, Haste thee, and come; for the Philistines have invaded the land.</VERS>\r\n      <VERS vnumber=\"28\">Wherefore Saul returned from pursuing after David, and went against the Philistines: therefore they called that place Selahammahlekoth.</VERS>\r\n      <VERS vnumber=\"29\">And David went up from thence, and dwelt in strong holds at Engedi.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"24\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">Then 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And it came to pass afterward, that David's heart smote him, because he had cut off Saul's skirt.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">So 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.</VERS>\r\n      <VERS vnumber=\"8\">David 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.</VERS>\r\n      <VERS vnumber=\"9\">And David said to Saul, Wherefore hearest thou men's words, saying, Behold, David seeketh thy hurt?</VERS>\r\n      <VERS vnumber=\"10\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"11\">Moreover, 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.</VERS>\r\n      <VERS vnumber=\"12\">The LORD judge between me and thee, and the LORD avenge me of thee: but mine hand shall not be upon thee.</VERS>\r\n      <VERS vnumber=\"13\">As saith the proverb of the ancients, Wickedness proceedeth from the wicked: but mine hand shall not be upon thee.</VERS>\r\n      <VERS vnumber=\"14\">After whom is the king of Israel come out? after whom dost thou pursue? after a dead dog, after a flea.</VERS>\r\n      <VERS vnumber=\"15\">The LORD therefore be judge, and judge between me and thee, and see, and plead my cause, and deliver me out of thine hand.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And he said to David, Thou art more righteous than I: for thou hast rewarded me good, whereas I have rewarded thee evil.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">For 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.</VERS>\r\n      <VERS vnumber=\"20\">And now, behold, I know well that thou shalt surely be king, and that the kingdom of Israel shall be established in thine hand.</VERS>\r\n      <VERS vnumber=\"21\">Swear 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.</VERS>\r\n      <VERS vnumber=\"22\">And David sware unto Saul. And Saul went home; but David and his men gat them up unto the hold.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"25\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">Now 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.</VERS>\r\n      <VERS vnumber=\"4\">And David heard in the wilderness that Nabal did shear his sheep.</VERS>\r\n      <VERS vnumber=\"5\">And 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:</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">Ask 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.</VERS>\r\n      <VERS vnumber=\"9\">And when David's young men came, they spake to Nabal according to all those words in the name of David, and ceased.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">Shall 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?</VERS>\r\n      <VERS vnumber=\"12\">So David's young men turned their way, and went again, and came and told him all those sayings.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">But 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.</VERS>\r\n      <VERS vnumber=\"15\">But 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:</VERS>\r\n      <VERS vnumber=\"16\">They were a wall unto us both by night and day, all the while we were with them keeping the sheep.</VERS>\r\n      <VERS vnumber=\"17\">Now 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.</VERS>\r\n      <VERS vnumber=\"18\">Then 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.</VERS>\r\n      <VERS vnumber=\"19\">And she said unto her servants, Go on before me; behold, I come after you. But she told not her husband Nabal.</VERS>\r\n      <VERS vnumber=\"20\">And it was so, as she rode on the ass, that she came down by the covert of the hill, and, behold, David and his men came down against her; and she met them.</VERS>\r\n      <VERS vnumber=\"21\">Now 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.</VERS>\r\n      <VERS vnumber=\"22\">So 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.</VERS>\r\n      <VERS vnumber=\"23\">And when Abigail saw David, she hasted, and lighted off the ass, and fell before David on her face, and bowed herself to the ground,</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">Let 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.</VERS>\r\n      <VERS vnumber=\"26\">Now 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.</VERS>\r\n      <VERS vnumber=\"27\">And now this blessing which thine handmaid hath brought unto my lord, let it even be given unto the young men that follow my lord.</VERS>\r\n      <VERS vnumber=\"28\">I 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.</VERS>\r\n      <VERS vnumber=\"29\">Yet 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.</VERS>\r\n      <VERS vnumber=\"30\">And 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;</VERS>\r\n      <VERS vnumber=\"31\">That 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.</VERS>\r\n      <VERS vnumber=\"32\">And David said to Abigail, Blessed be the LORD God of Israel, which sent thee this day to meet me:</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">For 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.</VERS>\r\n      <VERS vnumber=\"35\">So 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.</VERS>\r\n      <VERS vnumber=\"36\">And 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.</VERS>\r\n      <VERS vnumber=\"37\">But 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.</VERS>\r\n      <VERS vnumber=\"38\">And it came to pass about ten days after, that the LORD smote Nabal, that he died.</VERS>\r\n      <VERS vnumber=\"39\">And 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.</VERS>\r\n      <VERS vnumber=\"40\">And 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.</VERS>\r\n      <VERS vnumber=\"41\">And 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.</VERS>\r\n      <VERS vnumber=\"42\">And 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.</VERS>\r\n      <VERS vnumber=\"43\">David also took Ahinoam of Jezreel; and they were also both of them his wives.</VERS>\r\n      <VERS vnumber=\"44\">But Saul had given Michal his daughter, David's wife, to Phalti the son of Laish, which was of Gallim.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"26\">\r\n      <VERS vnumber=\"1\">And the Ziphites came unto Saul to Gibeah, saying, Doth not David hide himself in the hill of Hachilah, which is before Jeshimon?</VERS>\r\n      <VERS vnumber=\"2\">Then 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">David therefore sent out spies, and understood that Saul was come in very deed.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">Then 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.</VERS>\r\n      <VERS vnumber=\"7\">So 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.</VERS>\r\n      <VERS vnumber=\"8\">Then 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.</VERS>\r\n      <VERS vnumber=\"9\">And David said to Abishai, Destroy him not: for who can stretch forth his hand against the LORD'S anointed, and be guiltless?</VERS>\r\n      <VERS vnumber=\"10\">David 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.</VERS>\r\n      <VERS vnumber=\"11\">The 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.</VERS>\r\n      <VERS vnumber=\"12\">So 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.</VERS>\r\n      <VERS vnumber=\"13\">Then David went over to the other side, and stood on the top of an hill afar off; a great space being between them:</VERS>\r\n      <VERS vnumber=\"14\">And 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?</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">This 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And he said, Wherefore doth my lord thus pursue after his servant? for what have I done? or what evil is in mine hand?</VERS>\r\n      <VERS vnumber=\"19\">Now 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.</VERS>\r\n      <VERS vnumber=\"20\">Now 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.</VERS>\r\n      <VERS vnumber=\"21\">Then 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.</VERS>\r\n      <VERS vnumber=\"22\">And David answered and said, Behold the king's spear! and let one of the young men come over and fetch it.</VERS>\r\n      <VERS vnumber=\"23\">The 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.</VERS>\r\n      <VERS vnumber=\"24\">And, 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.</VERS>\r\n      <VERS vnumber=\"25\">Then 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"27\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And David arose, and he passed over with the six hundred men that were with him unto Achish, the son of Maoch, king of Gath.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And it was told Saul that David was fled to Gath: and he sought no more again for him.</VERS>\r\n      <VERS vnumber=\"5\">And 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?</VERS>\r\n      <VERS vnumber=\"6\">Then Achish gave him Ziklag that day: wherefore Ziklag pertaineth unto the kings of Judah unto this day.</VERS>\r\n      <VERS vnumber=\"7\">And the time that David dwelt in the country of the Philistines was a full year and four months.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And Achish believed David, saying, He hath made his people Israel utterly to abhor him; therefore he shall be my servant for ever.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"28\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">Now 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.</VERS>\r\n      <VERS vnumber=\"4\">And the Philistines gathered themselves together, and came and pitched in Shunem: and Saul gathered all Israel together, and they pitched in Gilboa.</VERS>\r\n      <VERS vnumber=\"5\">And when Saul saw the host of the Philistines, he was afraid, and his heart greatly trembled.</VERS>\r\n      <VERS vnumber=\"6\">And when Saul enquired of the LORD, the LORD answered him not, neither by dreams, nor by Urim, nor by prophets.</VERS>\r\n      <VERS vnumber=\"7\">Then 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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?</VERS>\r\n      <VERS vnumber=\"10\">And Saul sware to her by the LORD, saying, As the LORD liveth, there shall no punishment happen to thee for this thing.</VERS>\r\n      <VERS vnumber=\"11\">Then said the woman, Whom shall I bring up unto thee? And he said, Bring me up Samuel.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">Then said Samuel, Wherefore then dost thou ask of me, seeing the LORD is departed from thee, and is become thine enemy?</VERS>\r\n      <VERS vnumber=\"17\">And 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:</VERS>\r\n      <VERS vnumber=\"18\">Because 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.</VERS>\r\n      <VERS vnumber=\"19\">Moreover 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.</VERS>\r\n      <VERS vnumber=\"20\">Then 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">Now 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.</VERS>\r\n      <VERS vnumber=\"23\">But 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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:</VERS>\r\n      <VERS vnumber=\"25\">And she brought it before Saul, and before his servants; and they did eat. Then they rose up, and went away that night.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"29\">\r\n      <VERS vnumber=\"1\">Now the Philistines gathered together all their armies to Aphek: and the Israelites pitched by a fountain which is in Jezreel.</VERS>\r\n      <VERS vnumber=\"2\">And the lords of the Philistines passed on by hundreds, and by thousands: but David and his men passed on in the rereward with Achish.</VERS>\r\n      <VERS vnumber=\"3\">Then 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?</VERS>\r\n      <VERS vnumber=\"4\">And 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?</VERS>\r\n      <VERS vnumber=\"5\">Is not this David, of whom they sang one to another in dances, saying, Saul slew his thousands, and David his ten thousands?</VERS>\r\n      <VERS vnumber=\"6\">Then 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.</VERS>\r\n      <VERS vnumber=\"7\">Wherefore now return, and go in peace, that thou displease not the lords of the Philistines.</VERS>\r\n      <VERS vnumber=\"8\">And 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?</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"11\">So 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"30\">\r\n      <VERS vnumber=\"1\">And 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;</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">So 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.</VERS>\r\n      <VERS vnumber=\"4\">Then David and the people that were with him lifted up their voice and wept, until they had no more power to weep.</VERS>\r\n      <VERS vnumber=\"5\">And David's two wives were taken captives, Ahinoam the Jezreelitess, and Abigail the wife of Nabal the Carmelite.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">So 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.</VERS>\r\n      <VERS vnumber=\"10\">But 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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;</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">We 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And David recovered all that the Amalekites had carried away: and David rescued his two wives.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And David took all the flocks and the herds, which they drave before those other cattle, and said, This is David's spoil.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">Then 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.</VERS>\r\n      <VERS vnumber=\"23\">Then 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.</VERS>\r\n      <VERS vnumber=\"24\">For 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.</VERS>\r\n      <VERS vnumber=\"25\">And it was so from that day forward, that he made it a statute and an ordinance for Israel unto this day.</VERS>\r\n      <VERS vnumber=\"26\">And 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;</VERS>\r\n      <VERS vnumber=\"27\">To them which were in Bethel, and to them which were in south Ramoth, and to them which were in Jattir,</VERS>\r\n      <VERS vnumber=\"28\">And to them which were in Aroer, and to them which were in Siphmoth, and to them which were in Eshtemoa,</VERS>\r\n      <VERS vnumber=\"29\">And 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,</VERS>\r\n      <VERS vnumber=\"30\">And to them which were in Hormah, and to them which were in Chorashan, and to them which were in Athach,</VERS>\r\n      <VERS vnumber=\"31\">And to them which were in Hebron, and to all the places where David himself and his men were wont to haunt.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"31\">\r\n      <VERS vnumber=\"1\">Now the Philistines fought against Israel: and the men of Israel fled from before the Philistines, and fell down slain in mount Gilboa.</VERS>\r\n      <VERS vnumber=\"2\">And the Philistines followed hard upon Saul and upon his sons; and the Philistines slew Jonathan, and Abinadab, and Malchishua, Saul's sons.</VERS>\r\n      <VERS vnumber=\"3\">And the battle went sore against Saul, and the archers hit him; and he was sore wounded of the archers.</VERS>\r\n      <VERS vnumber=\"4\">Then 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.</VERS>\r\n      <VERS vnumber=\"5\">And when his armourbearer saw that Saul was dead, he fell likewise upon his sword, and died with him.</VERS>\r\n      <VERS vnumber=\"6\">So Saul died, and his three sons, and his armourbearer, and all his men, that same day together.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And they put his armour in the house of Ashtaroth: and they fastened his body to the wall of Bethshan.</VERS>\r\n      <VERS vnumber=\"11\">And when the inhabitants of Jabeshgilead heard of that which the Philistines had done to Saul;</VERS>\r\n      <VERS vnumber=\"12\">All 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.</VERS>\r\n      <VERS vnumber=\"13\">And they took their bones, and buried them under a tree at Jabesh, and fasted seven days.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"10\" bname=\"2 Samuel\" bsname=\"2Sam\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">Now 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;</VERS>\r\n      <VERS vnumber=\"2\">It 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.</VERS>\r\n      <VERS vnumber=\"3\">And David said unto him, From whence comest thou? And he said unto him, Out of the camp of Israel am I escaped.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And David said unto the young man that told him, How knowest thou that Saul and Jonathan his son be dead?</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And when he looked behind him, he saw me, and called unto me. And I answered, Here am I.</VERS>\r\n      <VERS vnumber=\"8\">And he said unto me, Who art thou? And I answered him, I am an Amalekite.</VERS>\r\n      <VERS vnumber=\"9\">He 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.</VERS>\r\n      <VERS vnumber=\"10\">So 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.</VERS>\r\n      <VERS vnumber=\"11\">Then David took hold on his clothes, and rent them; and likewise all the men that were with him:</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And David said unto the young man that told him, Whence art thou? And he answered, I am the son of a stranger, an Amalekite.</VERS>\r\n      <VERS vnumber=\"14\">And David said unto him, How wast thou not afraid to stretch forth thine hand to destroy the LORD'S anointed?</VERS>\r\n      <VERS vnumber=\"15\">And David called one of the young men, and said, Go near, and fall upon him. And he smote him that he died.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And David lamented with this lamentation over Saul and over Jonathan his son:</VERS>\r\n      <VERS vnumber=\"18\">(Also he bade them teach the children of Judah the use of the bow: behold, it is written in the book of Jasher.)</VERS>\r\n      <VERS vnumber=\"19\">The beauty of Israel is slain upon thy high places: how are the mighty fallen!</VERS>\r\n      <VERS vnumber=\"20\">Tell 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.</VERS>\r\n      <VERS vnumber=\"21\">Ye 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.</VERS>\r\n      <VERS vnumber=\"22\">From 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.</VERS>\r\n      <VERS vnumber=\"23\">Saul 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.</VERS>\r\n      <VERS vnumber=\"24\">Ye daughters of Israel, weep over Saul, who clothed you in scarlet, with other delights, who put on ornaments of gold upon your apparel.</VERS>\r\n      <VERS vnumber=\"25\">How are the mighty fallen in the midst of the battle! O Jonathan, thou wast slain in thine high places.</VERS>\r\n      <VERS vnumber=\"26\">I 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.</VERS>\r\n      <VERS vnumber=\"27\">How are the mighty fallen, and the weapons of war perished!</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">So David went up thither, and his two wives also, Ahinoam the Jezreelitess, and Abigail Nabal's wife the Carmelite.</VERS>\r\n      <VERS vnumber=\"3\">And his men that were with him did David bring up, every man with his household: and they dwelt in the cities of Hebron.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And now the LORD shew kindness and truth unto you: and I also will requite you this kindness, because ye have done this thing.</VERS>\r\n      <VERS vnumber=\"7\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"8\">But Abner the son of Ner, captain of Saul's host, took Ishbosheth the son of Saul, and brought him over to Mahanaim;</VERS>\r\n      <VERS vnumber=\"9\">And made him king over Gilead, and over the Ashurites, and over Jezreel, and over Ephraim, and over Benjamin, and over all Israel.</VERS>\r\n      <VERS vnumber=\"10\">Ishbosheth 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.</VERS>\r\n      <VERS vnumber=\"11\">And the time that David was king in Hebron over the house of Judah was seven years and six months.</VERS>\r\n      <VERS vnumber=\"12\">And Abner the son of Ner, and the servants of Ishbosheth the son of Saul, went out from Mahanaim to Gibeon.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And Abner said to Joab, Let the young men now arise, and play before us. And Joab said, Let them arise.</VERS>\r\n      <VERS vnumber=\"15\">Then 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And there was a very sore battle that day; and Abner was beaten, and the men of Israel, before the servants of David.</VERS>\r\n      <VERS vnumber=\"18\">And there were three sons of Zeruiah there, Joab, and Abishai, and Asahel: and Asahel was as light of foot as a wild roe.</VERS>\r\n      <VERS vnumber=\"19\">And Asahel pursued after Abner; and in going he turned not to the right hand nor to the left from following Abner.</VERS>\r\n      <VERS vnumber=\"20\">Then Abner looked behind him, and said, Art thou Asahel? And he answered, I am.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And 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?</VERS>\r\n      <VERS vnumber=\"23\">Howbeit 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.</VERS>\r\n      <VERS vnumber=\"24\">Joab 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.</VERS>\r\n      <VERS vnumber=\"25\">And the children of Benjamin gathered themselves together after Abner, and became one troop, and stood on the top of an hill.</VERS>\r\n      <VERS vnumber=\"26\">Then 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?</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">So Joab blew a trumpet, and all the people stood still, and pursued after Israel no more, neither fought they any more.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">And Joab returned from following Abner: and when he had gathered all the people together, there lacked of David's servants nineteen men and Asahel.</VERS>\r\n      <VERS vnumber=\"31\">But the servants of David had smitten of Benjamin, and of Abner's men, so that three hundred and threescore men died.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Now 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.</VERS>\r\n      <VERS vnumber=\"2\">And unto David were sons born in Hebron: and his firstborn was Amnon, of Ahinoam the Jezreelitess;</VERS>\r\n      <VERS vnumber=\"3\">And 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;</VERS>\r\n      <VERS vnumber=\"4\">And the fourth, Adonijah the son of Haggith; and the fifth, Shephatiah the son of Abital;</VERS>\r\n      <VERS vnumber=\"5\">And the sixth, Ithream, by Eglah David's wife. These were born to David in Hebron.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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?</VERS>\r\n      <VERS vnumber=\"8\">Then 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?</VERS>\r\n      <VERS vnumber=\"9\">So do God to Abner, and more also, except, as the LORD hath sworn to David, even so I do to him;</VERS>\r\n      <VERS vnumber=\"10\">To 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.</VERS>\r\n      <VERS vnumber=\"11\">And he could not answer Abner a word again, because he feared him.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And Ishbosheth sent, and took her from her husband, even from Phaltiel the son of Laish.</VERS>\r\n      <VERS vnumber=\"16\">And her husband went with her along weeping behind her to Bahurim. Then said Abner unto him, Go, return. And he returned.</VERS>\r\n      <VERS vnumber=\"17\">And Abner had communication with the elders of Israel, saying, Ye sought for David in times past to be king over you:</VERS>\r\n      <VERS vnumber=\"18\">Now 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">So Abner came to David to Hebron, and twenty men with him. And David made Abner and the men that were with him a feast.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And, 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.</VERS>\r\n      <VERS vnumber=\"23\">When 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.</VERS>\r\n      <VERS vnumber=\"24\">Then 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?</VERS>\r\n      <VERS vnumber=\"25\">Thou 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And 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:</VERS>\r\n      <VERS vnumber=\"29\">Let 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.</VERS>\r\n      <VERS vnumber=\"30\">So Joab and Abishai his brother slew Abner, because he had slain their brother Asahel at Gibeon in the battle.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n      <VERS vnumber=\"32\">And they buried Abner in Hebron: and the king lifted up his voice, and wept at the grave of Abner; and all the people wept.</VERS>\r\n      <VERS vnumber=\"33\">And the king lamented over Abner, and said, Died Abner as a fool dieth?</VERS>\r\n      <VERS vnumber=\"34\">Thy 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.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">And all the people took notice of it, and it pleased them: as whatsoever the king did pleased all the people.</VERS>\r\n      <VERS vnumber=\"37\">For all the people and all Israel understood that day that it was not of the king to slay Abner the son of Ner.</VERS>\r\n      <VERS vnumber=\"38\">And the king said unto his servants, Know ye not that there is a prince and a great man fallen this day in Israel?</VERS>\r\n      <VERS vnumber=\"39\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">And when Saul's son heard that Abner was dead in Hebron, his hands were feeble, and all the Israelites were troubled.</VERS>\r\n      <VERS vnumber=\"2\">And 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:</VERS>\r\n      <VERS vnumber=\"3\">And the Beerothites fled to Gittaim, and were sojourners there until this day.)</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">For 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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,</VERS>\r\n      <VERS vnumber=\"10\">When 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:</VERS>\r\n      <VERS vnumber=\"11\">How 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?</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">Then came all the tribes of Israel to David unto Hebron, and spake, saying, Behold, we are thy bone and thy flesh.</VERS>\r\n      <VERS vnumber=\"2\">Also 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.</VERS>\r\n      <VERS vnumber=\"3\">So 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.</VERS>\r\n      <VERS vnumber=\"4\">David was thirty years old when he began to reign, and he reigned forty years.</VERS>\r\n      <VERS vnumber=\"5\">In Hebron he reigned over Judah seven years and six months: and in Jerusalem he reigned thirty and three years over all Israel and Judah.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">Nevertheless David took the strong hold of Zion: the same is the city of David.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">So David dwelt in the fort, and called it the city of David. And David built round about from Millo and inward.</VERS>\r\n      <VERS vnumber=\"10\">And David went on, and grew great, and the LORD God of hosts was with him.</VERS>\r\n      <VERS vnumber=\"11\">And Hiram king of Tyre sent messengers to David, and cedar trees, and carpenters, and masons: and they built David an house.</VERS>\r\n      <VERS vnumber=\"12\">And David perceived that the LORD had established him king over Israel, and that he had exalted his kingdom for his people Israel's sake.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And these be the names of those that were born unto him in Jerusalem; Shammua, and Shobab, and Nathan, and Solomon,</VERS>\r\n      <VERS vnumber=\"15\">Ibhar also, and Elishua, and Nepheg, and Japhia,</VERS>\r\n      <VERS vnumber=\"16\">And Elishama, and Eliada, and Eliphalet.</VERS>\r\n      <VERS vnumber=\"17\">But 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.</VERS>\r\n      <VERS vnumber=\"18\">The Philistines also came and spread themselves in the valley of Rephaim.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And there they left their images, and David and his men burned them.</VERS>\r\n      <VERS vnumber=\"22\">And the Philistines came up yet again, and spread themselves in the valley of Rephaim.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And David did so, as the LORD had commanded him; and smote the Philistines from Geba until thou come to Gazer.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">Again, David gathered together all the chosen men of Israel, thirty thousand.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And they brought it out of the house of Abinadab which was at Gibeah, accompanying the ark of God: and Ahio went before the ark.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And David was displeased, because the LORD had made a breach upon Uzzah: and he called the name of the place Perezuzzah to this day.</VERS>\r\n      <VERS vnumber=\"9\">And David was afraid of the LORD that day, and said, How shall the ark of the LORD come to me?</VERS>\r\n      <VERS vnumber=\"10\">So 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.</VERS>\r\n      <VERS vnumber=\"11\">And the ark of the LORD continued in the house of Obededom the Gittite three months: and the LORD blessed Obededom, and all his household.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And it was so, that when they that bare the ark of the LORD had gone six paces, he sacrificed oxen and fatlings.</VERS>\r\n      <VERS vnumber=\"14\">And David danced before the LORD with all his might; and David was girded with a linen ephod.</VERS>\r\n      <VERS vnumber=\"15\">So David and all the house of Israel brought up the ark of the LORD with shouting, and with the sound of the trumpet.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">Then 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!</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">Therefore Michal the daughter of Saul had no child unto the day of her death.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">And it came to pass, when the king sat in his house, and the LORD had given him rest round about from all his enemies;</VERS>\r\n      <VERS vnumber=\"2\">That the king said unto Nathan the prophet, See now, I dwell in an house of cedar, but the ark of God dwelleth within curtains.</VERS>\r\n      <VERS vnumber=\"3\">And Nathan said to the king, Go, do all that is in thine heart; for the LORD is with thee.</VERS>\r\n      <VERS vnumber=\"4\">And it came to pass that night, that the word of the LORD came unto Nathan, saying,</VERS>\r\n      <VERS vnumber=\"5\">Go and tell my servant David, Thus saith the LORD, Shalt thou build me an house for me to dwell in?</VERS>\r\n      <VERS vnumber=\"6\">Whereas 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.</VERS>\r\n      <VERS vnumber=\"7\">In 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?</VERS>\r\n      <VERS vnumber=\"8\">Now 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:</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">Moreover 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,</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">He shall build an house for my name, and I will stablish the throne of his kingdom for ever.</VERS>\r\n      <VERS vnumber=\"14\">I 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:</VERS>\r\n      <VERS vnumber=\"15\">But my mercy shall not depart away from him, as I took it from Saul, whom I put away before thee.</VERS>\r\n      <VERS vnumber=\"16\">And thine house and thy kingdom shall be established for ever before thee: thy throne shall be established for ever.</VERS>\r\n      <VERS vnumber=\"17\">According to all these words, and according to all this vision, so did Nathan speak unto David.</VERS>\r\n      <VERS vnumber=\"18\">Then 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?</VERS>\r\n      <VERS vnumber=\"19\">And 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?</VERS>\r\n      <VERS vnumber=\"20\">And what can David say more unto thee? for thou, Lord GOD, knowest thy servant.</VERS>\r\n      <VERS vnumber=\"21\">For thy word's sake, and according to thine own heart, hast thou done all these great things, to make thy servant know them.</VERS>\r\n      <VERS vnumber=\"22\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"23\">And 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?</VERS>\r\n      <VERS vnumber=\"24\">For thou hast confirmed to thyself thy people Israel to be a people unto thee for ever: and thou, LORD, art become their God.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">For 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.</VERS>\r\n      <VERS vnumber=\"28\">And now, O Lord GOD, thou art that God, and thy words be true, and thou hast promised this goodness unto thy servant:</VERS>\r\n      <VERS vnumber=\"29\">Therefore 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">David smote also Hadadezer, the son of Rehob, king of Zobah, as he went to recover his border at the river Euphrates.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And when the Syrians of Damascus came to succour Hadadezer king of Zobah, David slew of the Syrians two and twenty thousand men.</VERS>\r\n      <VERS vnumber=\"6\">Then 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.</VERS>\r\n      <VERS vnumber=\"7\">And David took the shields of gold that were on the servants of Hadadezer, and brought them to Jerusalem.</VERS>\r\n      <VERS vnumber=\"8\">And from Betah, and from Berothai, cities of Hadadezer, king David took exceeding much brass.</VERS>\r\n      <VERS vnumber=\"9\">When Toi king of Hamath heard that David had smitten all the host of Hadadezer,</VERS>\r\n      <VERS vnumber=\"10\">Then 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:</VERS>\r\n      <VERS vnumber=\"11\">Which also king David did dedicate unto the LORD, with the silver and gold that he had dedicated of all nations which he subdued;</VERS>\r\n      <VERS vnumber=\"12\">Of 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.</VERS>\r\n      <VERS vnumber=\"13\">And David gat him a name when he returned from smiting of the Syrians in the valley of salt, being eighteen thousand men.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And David reigned over all Israel; and David executed judgment and justice unto all his people.</VERS>\r\n      <VERS vnumber=\"16\">And Joab the son of Zeruiah was over the host; and Jehoshaphat the son of Ahilud was recorder;</VERS>\r\n      <VERS vnumber=\"17\">And Zadok the son of Ahitub, and Ahimelech the son of Abiathar, were the priests; and Seraiah was the scribe;</VERS>\r\n      <VERS vnumber=\"18\">And Benaiah the son of Jehoiada was over both the Cherethites and the Pelethites; and David's sons were chief rulers.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">And David said, Is there yet any that is left of the house of Saul, that I may shew him kindness for Jonathan's sake?</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">Then king David sent, and fetched him out of the house of Machir, the son of Ammiel, from Lodebar.</VERS>\r\n      <VERS vnumber=\"6\">Now 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!</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And he bowed himself, and said, What is thy servant, that thou shouldest look upon such a dead dog as I am?</VERS>\r\n      <VERS vnumber=\"9\">Then 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.</VERS>\r\n      <VERS vnumber=\"10\">Thou 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.</VERS>\r\n      <VERS vnumber=\"11\">Then 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.</VERS>\r\n      <VERS vnumber=\"12\">And Mephibosheth had a young son, whose name was Micha. And all that dwelt in the house of Ziba were servants unto Mephibosheth.</VERS>\r\n      <VERS vnumber=\"13\">So Mephibosheth dwelt in Jerusalem: for he did eat continually at the king's table; and was lame on both his feet.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">And it came to pass after this, that the king of the children of Ammon died, and Hanun his son reigned in his stead.</VERS>\r\n      <VERS vnumber=\"2\">Then 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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?</VERS>\r\n      <VERS vnumber=\"4\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"5\">When 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And when David heard of it, he sent Joab, and all the host of the mighty men.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">When 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:</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">Be 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.</VERS>\r\n      <VERS vnumber=\"13\">And Joab drew nigh, and the people that were with him, unto the battle against the Syrians: and they fled before him.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And when the Syrians saw that they were smitten before Israel, they gathered themselves together.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And David sent and enquired after the woman. And one said, Is not this Bathsheba, the daughter of Eliam, the wife of Uriah the Hittite?</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And the woman conceived, and sent and told David, and said, I am with child.</VERS>\r\n      <VERS vnumber=\"6\">And David sent to Joab, saying, Send me Uriah the Hittite. And Joab sent Uriah to David.</VERS>\r\n      <VERS vnumber=\"7\">And when Uriah was come unto him, David demanded of him how Joab did, and how the people did, and how the war prospered.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">But Uriah slept at the door of the king's house with all the servants of his lord, and went not down to his house.</VERS>\r\n      <VERS vnumber=\"10\">And 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?</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And it came to pass in the morning, that David wrote a letter to Joab, and sent it by the hand of Uriah.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And it came to pass, when Joab observed the city, that he assigned Uriah unto a place where he knew that valiant men were.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">Then Joab sent and told David all the things concerning the war;</VERS>\r\n      <VERS vnumber=\"19\">And charged the messenger, saying, When thou hast made an end of telling the matters of the war unto the king,</VERS>\r\n      <VERS vnumber=\"20\">And 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?</VERS>\r\n      <VERS vnumber=\"21\">Who 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.</VERS>\r\n      <VERS vnumber=\"22\">So the messenger went, and came and shewed David all that Joab had sent him for.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">Then 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.</VERS>\r\n      <VERS vnumber=\"26\">And when the wife of Uriah heard that Uriah her husband was dead, she mourned for her husband.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">The rich man had exceeding many flocks and herds:</VERS>\r\n      <VERS vnumber=\"3\">But 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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:</VERS>\r\n      <VERS vnumber=\"6\">And he shall restore the lamb fourfold, because he did this thing, and because he had no pity.</VERS>\r\n      <VERS vnumber=\"7\">And 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;</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"10\">Now 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.</VERS>\r\n      <VERS vnumber=\"11\">Thus 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.</VERS>\r\n      <VERS vnumber=\"12\">For thou didst it secretly: but I will do this thing before all Israel, and before the sun.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">Howbeit, 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.</VERS>\r\n      <VERS vnumber=\"15\">And Nathan departed unto his house. And the LORD struck the child that Uriah's wife bare unto David, and it was very sick.</VERS>\r\n      <VERS vnumber=\"16\">David therefore besought God for the child; and David fasted, and went in, and lay all night upon the earth.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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?</VERS>\r\n      <VERS vnumber=\"19\">But 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.</VERS>\r\n      <VERS vnumber=\"20\">Then 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.</VERS>\r\n      <VERS vnumber=\"21\">Then 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.</VERS>\r\n      <VERS vnumber=\"22\">And 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?</VERS>\r\n      <VERS vnumber=\"23\">But 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And he sent by the hand of Nathan the prophet; and he called his name Jedidiah, because of the LORD.</VERS>\r\n      <VERS vnumber=\"26\">And Joab fought against Rabbah of the children of Ammon, and took the royal city.</VERS>\r\n      <VERS vnumber=\"27\">And Joab sent messengers to David, and said, I have fought against Rabbah, and have taken the city of waters.</VERS>\r\n      <VERS vnumber=\"28\">Now 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.</VERS>\r\n      <VERS vnumber=\"29\">And David gathered all the people together, and went to Rabbah, and fought against it, and took it.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">And 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 brickkiln: and thus did he unto all the cities of the children of Ammon. So David and all the people returned unto Jerusalem.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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 any thing to her.</VERS>\r\n      <VERS vnumber=\"3\">But Amnon had a friend, whose name was Jonadab, the son of Shimeah David's brother: and Jonadab was a very subtil man.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">So 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.</VERS>\r\n      <VERS vnumber=\"7\">Then David sent home to Tamar, saying, Go now to thy brother Amnon's house, and dress him meat.</VERS>\r\n      <VERS vnumber=\"8\">So 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And when she had brought them unto him to eat, he took hold of her, and said unto her, Come lie with me, my sister.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">Howbeit he would not hearken unto her voice: but, being stronger than she, forced her, and lay with her.</VERS>\r\n      <VERS vnumber=\"15\">Then 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">Then he called his servant that ministered unto him, and said, Put now this woman out from me, and bolt the door after her.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">But when king David heard of all these things, he was very wroth.</VERS>\r\n      <VERS vnumber=\"22\">And Absalom spake unto his brother Amnon neither good nor bad: for Absalom hated Amnon, because he had forced his sister Tamar.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">Then 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?</VERS>\r\n      <VERS vnumber=\"27\">But Absalom pressed him, that he let Amnon and all the king's sons go with him.</VERS>\r\n      <VERS vnumber=\"28\">Now 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.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">Then the king arose, and tare his garments, and lay on the earth; and all his servants stood by with their clothes rent.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">Now 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.</VERS>\r\n      <VERS vnumber=\"34\">But 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.</VERS>\r\n      <VERS vnumber=\"35\">And Jonadab said unto the king, Behold, the king's sons come: as thy servant said, so it is.</VERS>\r\n      <VERS vnumber=\"36\">And 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.</VERS>\r\n      <VERS vnumber=\"37\">But Absalom fled, and went to Talmai, the son of Ammihud, king of Geshur. And David mourned for his son every day.</VERS>\r\n      <VERS vnumber=\"38\">So Absalom fled, and went to Geshur, and was there three years.</VERS>\r\n      <VERS vnumber=\"39\">And the soul of king David longed to go forth unto Absalom: for he was comforted concerning Amnon, seeing he was dead.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">Now Joab the son of Zeruiah perceived that the king's heart was toward Absalom.</VERS>\r\n      <VERS vnumber=\"2\">And 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:</VERS>\r\n      <VERS vnumber=\"3\">And come to the king, and speak on this manner unto him. So Joab put the words in her mouth.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And the king said unto her, What aileth thee? And she answered, I am indeed a widow woman, and mine husband is dead.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And, 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.</VERS>\r\n      <VERS vnumber=\"8\">And the king said unto the woman, Go to thine house, and I will give charge concerning thee.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And the king said, Whosoever saith ought unto thee, bring him to me, and he shall not touch thee any more.</VERS>\r\n      <VERS vnumber=\"11\">Then 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.</VERS>\r\n      <VERS vnumber=\"12\">Then the woman said, Let thine handmaid, I pray thee, speak one word unto my lord the king. And he said, Say on.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">For 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.</VERS>\r\n      <VERS vnumber=\"15\">Now 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.</VERS>\r\n      <VERS vnumber=\"16\">For 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.</VERS>\r\n      <VERS vnumber=\"17\">Then 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.</VERS>\r\n      <VERS vnumber=\"18\">Then 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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:</VERS>\r\n      <VERS vnumber=\"20\">To 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.</VERS>\r\n      <VERS vnumber=\"21\">And the king said unto Joab, Behold now, I have done this thing: go therefore, bring the young man Absalom again.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">So Joab arose and went to Geshur, and brought Absalom to Jerusalem.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">But 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And unto Absalom there were born three sons, and one daughter, whose name was Tamar: she was a woman of a fair countenance.</VERS>\r\n      <VERS vnumber=\"28\">So Absalom dwelt two full years in Jerusalem, and saw not the king's face.</VERS>\r\n      <VERS vnumber=\"29\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"30\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"31\">Then Joab arose, and came to Absalom unto his house, and said unto him, Wherefore have thy servants set my field on fire?</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">So 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">And it came to pass after this, that Absalom prepared him chariots and horses, and fifty men to run before him.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And Absalom said unto him, See, thy matters are good and right; but there is no man deputed of the king to hear thee.</VERS>\r\n      <VERS vnumber=\"4\">Absalom 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!</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">For 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.</VERS>\r\n      <VERS vnumber=\"9\">And the king said unto him, Go in peace. So he arose, and went to Hebron.</VERS>\r\n      <VERS vnumber=\"10\">But 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.</VERS>\r\n      <VERS vnumber=\"11\">And with Absalom went two hundred men out of Jerusalem, that were called; and they went in their simplicity, and they knew not any thing.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And there came a messenger to David, saying, The hearts of the men of Israel are after Absalom.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And the king's servants said unto the king, Behold, thy servants are ready to do whatsoever my lord the king shall appoint.</VERS>\r\n      <VERS vnumber=\"16\">And the king went forth, and all his household after him. And the king left ten women, which were concubines, to keep the house.</VERS>\r\n      <VERS vnumber=\"17\">And the king went forth, and all the people after him, and tarried in a place that was far off.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">Then 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.</VERS>\r\n      <VERS vnumber=\"20\">Whereas 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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:</VERS>\r\n      <VERS vnumber=\"26\">But if he thus say, I have no delight in thee; behold, here am I, let him do to me as seemeth good unto him.</VERS>\r\n      <VERS vnumber=\"27\">The 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.</VERS>\r\n      <VERS vnumber=\"28\">See, I will tarry in the plain of the wilderness, until there come word from you to certify me.</VERS>\r\n      <VERS vnumber=\"29\">Zadok therefore and Abiathar carried the ark of God again to Jerusalem: and they tarried there.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n      <VERS vnumber=\"32\">And 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:</VERS>\r\n      <VERS vnumber=\"33\">Unto whom David said, If thou passest on with me, then thou shalt be a burden unto me:</VERS>\r\n      <VERS vnumber=\"34\">But 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.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"37\">So Hushai David's friend came into the city, and Absalom came into Jerusalem.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">Then 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And thus said Shimei when he cursed, Come out, come out, thou bloody man, and thou man of Belial:</VERS>\r\n      <VERS vnumber=\"8\">The 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.</VERS>\r\n      <VERS vnumber=\"9\">Then 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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?</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">It may be that the LORD will look on mine affliction, and that the LORD will requite me good for his cursing this day.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And the king, and all the people that were with him, came weary, and refreshed themselves there.</VERS>\r\n      <VERS vnumber=\"15\">And Absalom, and all the people the men of Israel, came to Jerusalem, and Ahithophel with him.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And Absalom said to Hushai, Is this thy kindness to thy friend? why wentest thou not with thy friend?</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">Then said Absalom to Ahithophel, Give counsel among you what we shall do.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">So 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.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"17\">\r\n      <VERS vnumber=\"1\">Moreover Ahithophel said unto Absalom, Let me now choose out twelve thousand men, and I will arise and pursue after David this night:</VERS>\r\n      <VERS vnumber=\"2\">And 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:</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And the saying pleased Absalom well, and all the elders of Israel.</VERS>\r\n      <VERS vnumber=\"5\">Then said Absalom, Call now Hushai the Archite also, and let us hear likewise what he saith.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And Hushai said unto Absalom, The counsel that Ahithophel hath given is not good at this time.</VERS>\r\n      <VERS vnumber=\"8\">For, 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.</VERS>\r\n      <VERS vnumber=\"9\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"12\">So 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.</VERS>\r\n      <VERS vnumber=\"13\">Moreover, 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">Then 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.</VERS>\r\n      <VERS vnumber=\"16\">Now 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.</VERS>\r\n      <VERS vnumber=\"17\">Now 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.</VERS>\r\n      <VERS vnumber=\"18\">Nevertheless 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.</VERS>\r\n      <VERS vnumber=\"19\">And the woman took and spread a covering over the well's mouth, and spread ground corn thereon; and the thing was not known.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">Then 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.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">Then David came to Mahanaim. And Absalom passed over Jordan, he and all the men of Israel with him.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">So Israel and Absalom pitched in the land of Gilead.</VERS>\r\n      <VERS vnumber=\"27\">And 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,</VERS>\r\n      <VERS vnumber=\"28\">Brought beds, and basons, and earthen vessels, and wheat, and barley, and flour, and parched corn, and beans, and lentiles, and parched pulse,</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"18\">\r\n      <VERS vnumber=\"1\">And David numbered the people that were with him, and set captains of thousands and captains of hundreds over them.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">But 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">So the people went out into the field against Israel: and the battle was in the wood of Ephraim;</VERS>\r\n      <VERS vnumber=\"7\">Where the people of Israel were slain before the servants of David, and there was there a great slaughter that day of twenty thousand men.</VERS>\r\n      <VERS vnumber=\"8\">For the battle was there scattered over the face of all the country: and the wood devoured more people that day than the sword devoured.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And a certain man saw it, and told Joab, and said, Behold, I saw Absalom hanged in an oak.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">Otherwise 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.</VERS>\r\n      <VERS vnumber=\"14\">Then 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.</VERS>\r\n      <VERS vnumber=\"15\">And ten young men that bare Joab's armour compassed about and smote Absalom, and slew him.</VERS>\r\n      <VERS vnumber=\"16\">And Joab blew the trumpet, and the people returned from pursuing after Israel: for Joab held back the people.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">Now 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.</VERS>\r\n      <VERS vnumber=\"19\">Then 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">Then said Joab to Cushi, Go tell the king what thou hast seen. And Cushi bowed himself unto Joab, and ran.</VERS>\r\n      <VERS vnumber=\"22\">Then 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?</VERS>\r\n      <VERS vnumber=\"23\">But howsoever, said he, let me run. And he said unto him, Run. Then Ahimaaz ran by the way of the plain, and overran Cushi.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">And the king said unto him, Turn aside, and stand here. And he turned aside, and stood still.</VERS>\r\n      <VERS vnumber=\"31\">And, 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.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">And 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!</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"19\">\r\n      <VERS vnumber=\"1\">And it was told Joab, Behold, the king weepeth and mourneth for Absalom.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And the people gat them by stealth that day into the city, as people being ashamed steal away when they flee in battle.</VERS>\r\n      <VERS vnumber=\"4\">But the king covered his face, and the king cried with a loud voice, O my son Absalom, O Absalom, my son, my son!</VERS>\r\n      <VERS vnumber=\"5\">And 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;</VERS>\r\n      <VERS vnumber=\"6\">In 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.</VERS>\r\n      <VERS vnumber=\"7\">Now 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.</VERS>\r\n      <VERS vnumber=\"8\">Then 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And Absalom, whom we anointed over us, is dead in battle. Now therefore why speak ye not a word of bringing the king back?</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">Ye are my brethren, ye are my bones and my flesh: wherefore then are ye the last to bring back the king?</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">So the king returned, and came to Jordan. And Judah came to Gilgal, to go to meet the king, to conduct the king over Jordan.</VERS>\r\n      <VERS vnumber=\"16\">And Shimei the son of Gera, a Benjamite, which was of Bahurim, hasted and came down with the men of Judah to meet king David.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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;</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">For 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.</VERS>\r\n      <VERS vnumber=\"21\">But Abishai the son of Zeruiah answered and said, Shall not Shimei be put to death for this, because he cursed the LORD'S anointed?</VERS>\r\n      <VERS vnumber=\"22\">And 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?</VERS>\r\n      <VERS vnumber=\"23\">Therefore the king said unto Shimei, Thou shalt not die. And the king sware unto him.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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?</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">For 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?</VERS>\r\n      <VERS vnumber=\"29\">And the king said unto him, Why speakest thou any more of thy matters? I have said, Thou and Ziba divide the land.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">And Barzillai the Gileadite came down from Rogelim, and went over Jordan with the king, to conduct him over Jordan.</VERS>\r\n      <VERS vnumber=\"32\">Now 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.</VERS>\r\n      <VERS vnumber=\"33\">And the king said unto Barzillai, Come thou over with me, and I will feed thee with me in Jerusalem.</VERS>\r\n      <VERS vnumber=\"34\">And Barzillai said unto the king, How long have I to live, that I should go up with the king unto Jerusalem?</VERS>\r\n      <VERS vnumber=\"35\">I 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?</VERS>\r\n      <VERS vnumber=\"36\">Thy servant will go a little way over Jordan with the king: and why should the king recompense it me with such a reward?</VERS>\r\n      <VERS vnumber=\"37\">Let 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.</VERS>\r\n      <VERS vnumber=\"38\">And 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.</VERS>\r\n      <VERS vnumber=\"39\">And 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.</VERS>\r\n      <VERS vnumber=\"40\">Then 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.</VERS>\r\n      <VERS vnumber=\"41\">And, 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?</VERS>\r\n      <VERS vnumber=\"42\">And 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?</VERS>\r\n      <VERS vnumber=\"43\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"20\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">So 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">Then said the king to Amasa, Assemble me the men of Judah within three days, and be thou here present.</VERS>\r\n      <VERS vnumber=\"5\">So Amasa went to assemble the men of Judah: but he tarried longer than the set time which he had appointed him.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">When 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.</VERS>\r\n      <VERS vnumber=\"9\">And Joab said to Amasa, Art thou in health, my brother? And Joab took Amasa by the beard with the right hand to kiss him.</VERS>\r\n      <VERS vnumber=\"10\">But 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">When he was removed out of the highway, all the people went on after Joab, to pursue after Sheba the son of Bichri.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">Then 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">Then 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.</VERS>\r\n      <VERS vnumber=\"19\">I 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?</VERS>\r\n      <VERS vnumber=\"20\">And Joab answered and said, Far be it, far be it from me, that I should swallow up or destroy.</VERS>\r\n      <VERS vnumber=\"21\">The 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.</VERS>\r\n      <VERS vnumber=\"22\">Then 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.</VERS>\r\n      <VERS vnumber=\"23\">Now Joab was over all the host of Israel: and Benaiah the son of Jehoiada was over the Cherethites and over the Pelethites:</VERS>\r\n      <VERS vnumber=\"24\">And Adoram was over the tribute: and Jehoshaphat the son of Ahilud was recorder:</VERS>\r\n      <VERS vnumber=\"25\">And Sheva was scribe: and Zadok and Abiathar were the priests:</VERS>\r\n      <VERS vnumber=\"26\">And Ira also the Jairite was a chief ruler about David.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"21\">\r\n      <VERS vnumber=\"1\">Then 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.)</VERS>\r\n      <VERS vnumber=\"3\">Wherefore 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?</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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,</VERS>\r\n      <VERS vnumber=\"6\">Let 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.</VERS>\r\n      <VERS vnumber=\"7\">But 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.</VERS>\r\n      <VERS vnumber=\"8\">But 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:</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And it was told David what Rizpah the daughter of Aiah, the concubine of Saul, had done.</VERS>\r\n      <VERS vnumber=\"12\">And 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:</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">Moreover 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">But 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And when he defied Israel, Jonathan the son of Shimea the brother of David slew him.</VERS>\r\n      <VERS vnumber=\"22\">These four were born to the giant in Gath, and fell by the hand of David, and by the hand of his servants.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"22\">\r\n      <VERS vnumber=\"1\">And 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:</VERS>\r\n      <VERS vnumber=\"2\">And he said, The LORD is my rock, and my fortress, and my deliverer;</VERS>\r\n      <VERS vnumber=\"3\">The 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.</VERS>\r\n      <VERS vnumber=\"4\">I will call on the LORD, who is worthy to be praised: so shall I be saved from mine enemies.</VERS>\r\n      <VERS vnumber=\"5\">When the waves of death compassed me, the floods of ungodly men made me afraid;</VERS>\r\n      <VERS vnumber=\"6\">The sorrows of hell compassed me about; the snares of death prevented me;</VERS>\r\n      <VERS vnumber=\"7\">In 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.</VERS>\r\n      <VERS vnumber=\"8\">Then the earth shook and trembled; the foundations of heaven moved and shook, because he was wroth.</VERS>\r\n      <VERS vnumber=\"9\">There went up a smoke out of his nostrils, and fire out of his mouth devoured: coals were kindled by it.</VERS>\r\n      <VERS vnumber=\"10\">He bowed the heavens also, and came down; and darkness was under his feet.</VERS>\r\n      <VERS vnumber=\"11\">And he rode upon a cherub, and did fly: and he was seen upon the wings of the wind.</VERS>\r\n      <VERS vnumber=\"12\">And he made darkness pavilions round about him, dark waters, and thick clouds of the skies.</VERS>\r\n      <VERS vnumber=\"13\">Through the brightness before him were coals of fire kindled.</VERS>\r\n      <VERS vnumber=\"14\">The LORD thundered from heaven, and the most High uttered his voice.</VERS>\r\n      <VERS vnumber=\"15\">And he sent out arrows, and scattered them; lightning, and discomfited them.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">He sent from above, he took me; he drew me out of many waters;</VERS>\r\n      <VERS vnumber=\"18\">He delivered me from my strong enemy, and from them that hated me: for they were too strong for me.</VERS>\r\n      <VERS vnumber=\"19\">They prevented me in the day of my calamity: but the LORD was my stay.</VERS>\r\n      <VERS vnumber=\"20\">He brought me forth also into a large place: he delivered me, because he delighted in me.</VERS>\r\n      <VERS vnumber=\"21\">The LORD rewarded me according to my righteousness: according to the cleanness of my hands hath he recompensed me.</VERS>\r\n      <VERS vnumber=\"22\">For I have kept the ways of the LORD, and have not wickedly departed from my God.</VERS>\r\n      <VERS vnumber=\"23\">For all his judgments were before me: and as for his statutes, I did not depart from them.</VERS>\r\n      <VERS vnumber=\"24\">I was also upright before him, and have kept myself from mine iniquity.</VERS>\r\n      <VERS vnumber=\"25\">Therefore the LORD hath recompensed me according to my righteousness; according to my cleanness in his eye sight.</VERS>\r\n      <VERS vnumber=\"26\">With the merciful thou wilt shew thyself merciful, and with the upright man thou wilt shew thyself upright.</VERS>\r\n      <VERS vnumber=\"27\">With the pure thou wilt shew thyself pure; and with the froward thou wilt shew thyself unsavoury.</VERS>\r\n      <VERS vnumber=\"28\">And the afflicted people thou wilt save: but thine eyes are upon the haughty, that thou mayest bring them down.</VERS>\r\n      <VERS vnumber=\"29\">For thou art my lamp, O LORD: and the LORD will lighten my darkness.</VERS>\r\n      <VERS vnumber=\"30\">For by thee I have run through a troop: by my God have I leaped over a wall.</VERS>\r\n      <VERS vnumber=\"31\">As for God, his way is perfect; the word of the LORD is tried: he is a buckler to all them that trust in him.</VERS>\r\n      <VERS vnumber=\"32\">For who is God, save the LORD? and who is a rock, save our God?</VERS>\r\n      <VERS vnumber=\"33\">God is my strength and power: and he maketh my way perfect.</VERS>\r\n      <VERS vnumber=\"34\">He maketh my feet like hinds' feet: and setteth me upon my high places.</VERS>\r\n      <VERS vnumber=\"35\">He teacheth my hands to war; so that a bow of steel is broken by mine arms.</VERS>\r\n      <VERS vnumber=\"36\">Thou hast also given me the shield of thy salvation: and thy gentleness hath made me great.</VERS>\r\n      <VERS vnumber=\"37\">Thou hast enlarged my steps under me; so that my feet did not slip.</VERS>\r\n      <VERS vnumber=\"38\">I have pursued mine enemies, and destroyed them; and turned not again until I had consumed them.</VERS>\r\n      <VERS vnumber=\"39\">And I have consumed them, and wounded them, that they could not arise: yea, they are fallen under my feet.</VERS>\r\n      <VERS vnumber=\"40\">For thou hast girded me with strength to battle: them that rose up against me hast thou subdued under me.</VERS>\r\n      <VERS vnumber=\"41\">Thou hast also given me the necks of mine enemies, that I might destroy them that hate me.</VERS>\r\n      <VERS vnumber=\"42\">They looked, but there was none to save; even unto the LORD, but he answered them not.</VERS>\r\n      <VERS vnumber=\"43\">Then 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.</VERS>\r\n      <VERS vnumber=\"44\">Thou 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.</VERS>\r\n      <VERS vnumber=\"45\">Strangers shall submit themselves unto me: as soon as they hear, they shall be obedient unto me.</VERS>\r\n      <VERS vnumber=\"46\">Strangers shall fade away, and they shall be afraid out of their close places.</VERS>\r\n      <VERS vnumber=\"47\">The LORD liveth; and blessed be my rock; and exalted be the God of the rock of my salvation.</VERS>\r\n      <VERS vnumber=\"48\">It is God that avengeth me, and that bringeth down the people under me,</VERS>\r\n      <VERS vnumber=\"49\">And 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.</VERS>\r\n      <VERS vnumber=\"50\">Therefore I will give thanks unto thee, O LORD, among the heathen, and I will sing praises unto thy name.</VERS>\r\n      <VERS vnumber=\"51\">He is the tower of salvation for his king: and sheweth mercy to his anointed, unto David, and to his seed for evermore.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"23\">\r\n      <VERS vnumber=\"1\">Now 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,</VERS>\r\n      <VERS vnumber=\"2\">The Spirit of the LORD spake by me, and his word was in my tongue.</VERS>\r\n      <VERS vnumber=\"3\">The 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">Although 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.</VERS>\r\n      <VERS vnumber=\"6\">But the sons of Belial shall be all of them as thorns thrust away, because they cannot be taken with hands:</VERS>\r\n      <VERS vnumber=\"7\">But 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.</VERS>\r\n      <VERS vnumber=\"8\">These 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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:</VERS>\r\n      <VERS vnumber=\"10\">He 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">But he stood in the midst of the ground, and defended it, and slew the Philistines: and the LORD wrought a great victory.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And David was then in an hold, and the garrison of the Philistines was then in Bethlehem.</VERS>\r\n      <VERS vnumber=\"15\">And David longed, and said, Oh that one would give me drink of the water of the well of Bethlehem, which is by the gate!</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">Was he not most honourable of three? therefore he was their captain: howbeit he attained not unto the first three.</VERS>\r\n      <VERS vnumber=\"20\">And 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:</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">These things did Benaiah the son of Jehoiada, and had the name among three mighty men.</VERS>\r\n      <VERS vnumber=\"23\">He was more honourable than the thirty, but he attained not to the first three. And David set him over his guard.</VERS>\r\n      <VERS vnumber=\"24\">Asahel the brother of Joab was one of the thirty; Elhanan the son of Dodo of Bethlehem,</VERS>\r\n      <VERS vnumber=\"25\">Shammah the Harodite, Elika the Harodite,</VERS>\r\n      <VERS vnumber=\"26\">Helez the Paltite, Ira the son of Ikkesh the Tekoite,</VERS>\r\n      <VERS vnumber=\"27\">Abiezer the Anethothite, Mebunnai the Hushathite,</VERS>\r\n      <VERS vnumber=\"28\">Zalmon the Ahohite, Maharai the Netophathite,</VERS>\r\n      <VERS vnumber=\"29\">Heleb the son of Baanah, a Netophathite, Ittai the son of Ribai out of Gibeah of the children of Benjamin,</VERS>\r\n      <VERS vnumber=\"30\">Benaiah the Pirathonite, Hiddai of the brooks of Gaash,</VERS>\r\n      <VERS vnumber=\"31\">Abialbon the Arbathite, Azmaveth the Barhumite,</VERS>\r\n      <VERS vnumber=\"32\">Eliahba the Shaalbonite, of the sons of Jashen, Jonathan,</VERS>\r\n      <VERS vnumber=\"33\">Shammah the Hararite, Ahiam the son of Sharar the Hararite,</VERS>\r\n      <VERS vnumber=\"34\">Eliphelet the son of Ahasbai, the son of the Maachathite, Eliam the son of Ahithophel the Gilonite,</VERS>\r\n      <VERS vnumber=\"35\">Hezrai the Carmelite, Paarai the Arbite,</VERS>\r\n      <VERS vnumber=\"36\">Igal the son of Nathan of Zobah, Bani the Gadite,</VERS>\r\n      <VERS vnumber=\"37\">Zelek the Ammonite, Naharai the Beerothite, armourbearer to Joab the son of Zeruiah,</VERS>\r\n      <VERS vnumber=\"38\">Ira an Ithrite, Gareb an Ithrite,</VERS>\r\n      <VERS vnumber=\"39\">Uriah the Hittite: thirty and seven in all.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"24\">\r\n      <VERS vnumber=\"1\">And again the anger of the LORD was kindled against Israel, and he moved David against them to say, Go, number Israel and Judah.</VERS>\r\n      <VERS vnumber=\"2\">For 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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?</VERS>\r\n      <VERS vnumber=\"4\">Notwithstanding 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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:</VERS>\r\n      <VERS vnumber=\"6\">Then they came to Gilead, and to the land of Tahtimhodshi; and they came to Danjaan, and about to Zidon,</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">So when they had gone through all the land, they came to Jerusalem at the end of nine months and twenty days.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">For when David was up in the morning, the word of the LORD came unto the prophet Gad, David's seer, saying,</VERS>\r\n      <VERS vnumber=\"12\">Go 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.</VERS>\r\n      <VERS vnumber=\"13\">So 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">So 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And David, according to the saying of Gad, went up as the LORD commanded.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">All these things did Araunah, as a king, give unto the king. And Araunah said unto the king, The LORD thy God accept thee.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"11\" bname=\"1 Kings\" bsname=\"1Kgs\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">Now king David was old and stricken in years; and they covered him with clothes, but he gat no heat.</VERS>\r\n      <VERS vnumber=\"2\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"3\">So they sought for a fair damsel throughout all the coasts of Israel, and found Abishag a Shunammite, and brought her to the king.</VERS>\r\n      <VERS vnumber=\"4\">And the damsel was very fair, and cherished the king, and ministered to him: but the king knew her not.</VERS>\r\n      <VERS vnumber=\"5\">Then 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And he conferred with Joab the son of Zeruiah, and with Abiathar the priest: and they following Adonijah helped him.</VERS>\r\n      <VERS vnumber=\"8\">But 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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:</VERS>\r\n      <VERS vnumber=\"10\">But Nathan the prophet, and Benaiah, and the mighty men, and Solomon his brother, he called not.</VERS>\r\n      <VERS vnumber=\"11\">Wherefore 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?</VERS>\r\n      <VERS vnumber=\"12\">Now therefore come, let me, I pray thee, give thee counsel, that thou mayest save thine own life, and the life of thy son Solomon.</VERS>\r\n      <VERS vnumber=\"13\">Go 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?</VERS>\r\n      <VERS vnumber=\"14\">Behold, while thou yet talkest there with the king, I also will come in after thee, and confirm thy words.</VERS>\r\n      <VERS vnumber=\"15\">And Bathsheba went in unto the king into the chamber: and the king was very old; and Abishag the Shunammite ministered unto the king.</VERS>\r\n      <VERS vnumber=\"16\">And Bathsheba bowed, and did obeisance unto the king. And the king said, What wouldest thou?</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And now, behold, Adonijah reigneth; and now, my lord the king, thou knowest it not:</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">Otherwise 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.</VERS>\r\n      <VERS vnumber=\"22\">And, lo, while she yet talked with the king, Nathan the prophet also came in.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And Nathan said, My lord, O king, hast thou said, Adonijah shall reign after me, and he shall sit upon my throne?</VERS>\r\n      <VERS vnumber=\"25\">For 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.</VERS>\r\n      <VERS vnumber=\"26\">But me, even me thy servant, and Zadok the priest, and Benaiah the son of Jehoiada, and thy servant Solomon, hath he not called.</VERS>\r\n      <VERS vnumber=\"27\">Is 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?</VERS>\r\n      <VERS vnumber=\"28\">Then king David answered and said, Call me Bathsheba. And she came into the king's presence, and stood before the king.</VERS>\r\n      <VERS vnumber=\"29\">And the king sware, and said, As the LORD liveth, that hath redeemed my soul out of all distress,</VERS>\r\n      <VERS vnumber=\"30\">Even 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.</VERS>\r\n      <VERS vnumber=\"31\">Then Bathsheba bowed with her face to the earth, and did reverence to the king, and said, Let my lord king David live for ever.</VERS>\r\n      <VERS vnumber=\"32\">And king David said, Call me Zadok the priest, and Nathan the prophet, and Benaiah the son of Jehoiada. And they came before the king.</VERS>\r\n      <VERS vnumber=\"33\">The 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:</VERS>\r\n      <VERS vnumber=\"34\">And 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.</VERS>\r\n      <VERS vnumber=\"35\">Then 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.</VERS>\r\n      <VERS vnumber=\"36\">And Benaiah the son of Jehoiada answered the king, and said, Amen: the LORD God of my lord the king say so too.</VERS>\r\n      <VERS vnumber=\"37\">As 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.</VERS>\r\n      <VERS vnumber=\"38\">So 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.</VERS>\r\n      <VERS vnumber=\"39\">And 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.</VERS>\r\n      <VERS vnumber=\"40\">And 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.</VERS>\r\n      <VERS vnumber=\"41\">And 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?</VERS>\r\n      <VERS vnumber=\"42\">And 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.</VERS>\r\n      <VERS vnumber=\"43\">And Jonathan answered and said to Adonijah, Verily our lord king David hath made Solomon king.</VERS>\r\n      <VERS vnumber=\"44\">And 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:</VERS>\r\n      <VERS vnumber=\"45\">And 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.</VERS>\r\n      <VERS vnumber=\"46\">And also Solomon sitteth on the throne of the kingdom.</VERS>\r\n      <VERS vnumber=\"47\">And 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.</VERS>\r\n      <VERS vnumber=\"48\">And 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.</VERS>\r\n      <VERS vnumber=\"49\">And all the guests that were with Adonijah were afraid, and rose up, and went every man his way.</VERS>\r\n      <VERS vnumber=\"50\">And Adonijah feared because of Solomon, and arose, and went, and caught hold on the horns of the altar.</VERS>\r\n      <VERS vnumber=\"51\">And 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 to day that he will not slay his servant with the sword.</VERS>\r\n      <VERS vnumber=\"52\">And 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.</VERS>\r\n      <VERS vnumber=\"53\">So 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">Now the days of David drew nigh that he should die; and he charged Solomon his son, saying,</VERS>\r\n      <VERS vnumber=\"2\">I go the way of all the earth: be thou strong therefore, and shew thyself a man;</VERS>\r\n      <VERS vnumber=\"3\">And 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:</VERS>\r\n      <VERS vnumber=\"4\">That 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.</VERS>\r\n      <VERS vnumber=\"5\">Moreover 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.</VERS>\r\n      <VERS vnumber=\"6\">Do therefore according to thy wisdom, and let not his hoar head go down to the grave in peace.</VERS>\r\n      <VERS vnumber=\"7\">But 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.</VERS>\r\n      <VERS vnumber=\"8\">And, 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.</VERS>\r\n      <VERS vnumber=\"9\">Now 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.</VERS>\r\n      <VERS vnumber=\"10\">So David slept with his fathers, and was buried in the city of David.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">Then sat Solomon upon the throne of David his father; and his kingdom was established greatly.</VERS>\r\n      <VERS vnumber=\"13\">And Adonijah the son of Haggith came to Bathsheba the mother of Solomon. And she said, Comest thou peaceably? And he said, Peaceably.</VERS>\r\n      <VERS vnumber=\"14\">He said moreover, I have somewhat to say unto thee. And she said, Say on.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And now I ask one petition of thee, deny me not. And she said unto him, Say on.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And Bathsheba said, Well; I will speak for thee unto the king.</VERS>\r\n      <VERS vnumber=\"19\">Bathsheba 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.</VERS>\r\n      <VERS vnumber=\"20\">Then 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.</VERS>\r\n      <VERS vnumber=\"21\">And she said, Let Abishag the Shunammite be given to Adonijah thy brother to wife.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">Then 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.</VERS>\r\n      <VERS vnumber=\"24\">Now 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.</VERS>\r\n      <VERS vnumber=\"25\">And king Solomon sent by the hand of Benaiah the son of Jehoiada; and he fell upon him that he died.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">So 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.</VERS>\r\n      <VERS vnumber=\"28\">Then 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.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">Their 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.</VERS>\r\n      <VERS vnumber=\"34\">So 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.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">And 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.</VERS>\r\n      <VERS vnumber=\"37\">For 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.</VERS>\r\n      <VERS vnumber=\"38\">And 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.</VERS>\r\n      <VERS vnumber=\"39\">And 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.</VERS>\r\n      <VERS vnumber=\"40\">And 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.</VERS>\r\n      <VERS vnumber=\"41\">And it was told Solomon that Shimei had gone from Jerusalem to Gath, and was come again.</VERS>\r\n      <VERS vnumber=\"42\">And 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.</VERS>\r\n      <VERS vnumber=\"43\">Why then hast thou not kept the oath of the LORD, and the commandment that I have charged thee with?</VERS>\r\n      <VERS vnumber=\"44\">The 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;</VERS>\r\n      <VERS vnumber=\"45\">And king Solomon shall be blessed, and the throne of David shall be established before the LORD for ever.</VERS>\r\n      <VERS vnumber=\"46\">So 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">Only the people sacrificed in high places, because there was no house built unto the name of the LORD, until those days.</VERS>\r\n      <VERS vnumber=\"3\">And Solomon loved the LORD, walking in the statutes of David his father: only he sacrificed and burnt incense in high places.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">In Gibeon the LORD appeared to Solomon in a dream by night: and God said, Ask what I shall give thee.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And thy servant is in the midst of thy people which thou hast chosen, a great people, that cannot be numbered nor counted for multitude.</VERS>\r\n      <VERS vnumber=\"9\">Give 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?</VERS>\r\n      <VERS vnumber=\"10\">And the speech pleased the Lord, that Solomon had asked this thing.</VERS>\r\n      <VERS vnumber=\"11\">And 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;</VERS>\r\n      <VERS vnumber=\"12\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">Then came there two women, that were harlots, unto the king, and stood before him.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And this woman's child died in the night; because she overlaid it.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">Then 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.</VERS>\r\n      <VERS vnumber=\"24\">And the king said, Bring me a sword. And they brought a sword before the king.</VERS>\r\n      <VERS vnumber=\"25\">And the king said, Divide the living child in two, and give half to the one, and half to the other.</VERS>\r\n      <VERS vnumber=\"26\">Then 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.</VERS>\r\n      <VERS vnumber=\"27\">Then the king answered and said, Give her the living child, and in no wise slay it: she is the mother thereof.</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">So king Solomon was king over all Israel.</VERS>\r\n      <VERS vnumber=\"2\">And these were the princes which he had; Azariah the son of Zadok the priest,</VERS>\r\n      <VERS vnumber=\"3\">Elihoreph and Ahiah, the sons of Shisha, scribes; Jehoshaphat the son of Ahilud, the recorder.</VERS>\r\n      <VERS vnumber=\"4\">And Benaiah the son of Jehoiada was over the host: and Zadok and Abiathar were the priests:</VERS>\r\n      <VERS vnumber=\"5\">And Azariah the son of Nathan was over the officers: and Zabud the son of Nathan was principal officer, and the king's friend:</VERS>\r\n      <VERS vnumber=\"6\">And Ahishar was over the household: and Adoniram the son of Abda was over the tribute.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And these are their names: The son of Hur, in mount Ephraim:</VERS>\r\n      <VERS vnumber=\"9\">The son of Dekar, in Makaz, and in Shaalbim, and Bethshemesh, and Elonbethhanan:</VERS>\r\n      <VERS vnumber=\"10\">The son of Hesed, in Aruboth; to him pertained Sochoh, and all the land of Hepher:</VERS>\r\n      <VERS vnumber=\"11\">The son of Abinadab, in all the region of Dor; which had Taphath the daughter of Solomon to wife:</VERS>\r\n      <VERS vnumber=\"12\">Baana 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:</VERS>\r\n      <VERS vnumber=\"13\">The 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:</VERS>\r\n      <VERS vnumber=\"14\">Ahinadab the son of Iddo had Mahanaim:</VERS>\r\n      <VERS vnumber=\"15\">Ahimaaz was in Naphtali; he also took Basmath the daughter of Solomon to wife:</VERS>\r\n      <VERS vnumber=\"16\">Baanah the son of Hushai was in Asher and in Aloth:</VERS>\r\n      <VERS vnumber=\"17\">Jehoshaphat the son of Paruah, in Issachar:</VERS>\r\n      <VERS vnumber=\"18\">Shimei the son of Elah, in Benjamin:</VERS>\r\n      <VERS vnumber=\"19\">Geber 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.</VERS>\r\n      <VERS vnumber=\"20\">Judah and Israel were many, as the sand which is by the sea in multitude, eating and drinking, and making merry.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And Solomon's provision for one day was thirty measures of fine flour, and threescore measures of meal,</VERS>\r\n      <VERS vnumber=\"23\">Ten fat oxen, and twenty oxen out of the pastures, and an hundred sheep, beside harts, and roebucks, and fallowdeer, and fatted fowl.</VERS>\r\n      <VERS vnumber=\"24\">For 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And Solomon had forty thousand stalls of horses for his chariots, and twelve thousand horsemen.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">Barley also and straw for the horses and dromedaries brought they unto the place where the officers were, every man according to his charge.</VERS>\r\n      <VERS vnumber=\"29\">And God gave Solomon wisdom and understanding exceeding much, and largeness of heart, even as the sand that is on the sea shore.</VERS>\r\n      <VERS vnumber=\"30\">And Solomon's wisdom excelled the wisdom of all the children of the east country, and all the wisdom of Egypt.</VERS>\r\n      <VERS vnumber=\"31\">For 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.</VERS>\r\n      <VERS vnumber=\"32\">And he spake three thousand proverbs: and his songs were a thousand and five.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">And there came of all people to hear the wisdom of Solomon, from all kings of the earth, which had heard of his wisdom.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And Solomon sent to Hiram, saying,</VERS>\r\n      <VERS vnumber=\"3\">Thou 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.</VERS>\r\n      <VERS vnumber=\"4\">But now the LORD my God hath given me rest on every side, so that there is neither adversary nor evil occurrent.</VERS>\r\n      <VERS vnumber=\"5\">And, 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.</VERS>\r\n      <VERS vnumber=\"6\">Now 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">My 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.</VERS>\r\n      <VERS vnumber=\"10\">So Hiram gave Solomon cedar trees and fir trees according to all his desire.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And the LORD gave Solomon wisdom, as he promised him: and there was peace between Hiram and Solomon; and they two made a league together.</VERS>\r\n      <VERS vnumber=\"13\">And king Solomon raised a levy out of all Israel; and the levy was thirty thousand men.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And Solomon had threescore and ten thousand that bare burdens, and fourscore thousand hewers in the mountains;</VERS>\r\n      <VERS vnumber=\"16\">Beside 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.</VERS>\r\n      <VERS vnumber=\"17\">And the king commanded, and they brought great stones, costly stones, and hewed stones, to lay the foundation of the house.</VERS>\r\n      <VERS vnumber=\"18\">And Solomon's builders and Hiram's builders did hew them, and the stonesquarers: so they prepared timber and stones to build the house.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And for the house he made windows of narrow lights.</VERS>\r\n      <VERS vnumber=\"5\">And 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:</VERS>\r\n      <VERS vnumber=\"6\">The 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">The 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.</VERS>\r\n      <VERS vnumber=\"9\">So he built the house, and finished it; and covered the house with beams and boards of cedar.</VERS>\r\n      <VERS vnumber=\"10\">And then he built chambers against all the house, five cubits high: and they rested on the house with timber of cedar.</VERS>\r\n      <VERS vnumber=\"11\">And the word of the LORD came to Solomon, saying,</VERS>\r\n      <VERS vnumber=\"12\">Concerning 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:</VERS>\r\n      <VERS vnumber=\"13\">And I will dwell among the children of Israel, and will not forsake my people Israel.</VERS>\r\n      <VERS vnumber=\"14\">So Solomon built the house, and finished it.</VERS>\r\n      <VERS vnumber=\"15\">And he built the walls of the house within with boards of cedar, both the floor of the house, and the walls of the cieling: and he covered them on the inside with wood, and covered the floor of the house with planks of fir.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And the house, that is, the temple before it, was forty cubits long.</VERS>\r\n      <VERS vnumber=\"18\">And the cedar of the house within was carved with knops and open flowers: all was cedar; there was no stone seen.</VERS>\r\n      <VERS vnumber=\"19\">And the oracle he prepared in the house within, to set there the ark of the covenant of the LORD.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">So 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.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And within the oracle he made two cherubims of olive tree, each ten cubits high.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And the other cherub was ten cubits: both the cherubims were of one measure and one size.</VERS>\r\n      <VERS vnumber=\"26\">The height of the one cherub was ten cubits, and so was it of the other cherub.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And he overlaid the cherubims with gold.</VERS>\r\n      <VERS vnumber=\"29\">And he carved all the walls of the house round about with carved figures of cherubims and palm trees and open flowers, within and without.</VERS>\r\n      <VERS vnumber=\"30\">And the floor of the house he overlaid with gold, within and without.</VERS>\r\n      <VERS vnumber=\"31\">And for the entering of the oracle he made doors of olive tree: the lintel and side posts were a fifth part of the wall.</VERS>\r\n      <VERS vnumber=\"32\">The 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.</VERS>\r\n      <VERS vnumber=\"33\">So also made he for the door of the temple posts of olive tree, a fourth part of the wall.</VERS>\r\n      <VERS vnumber=\"34\">And 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.</VERS>\r\n      <VERS vnumber=\"35\">And he carved thereon cherubims and palm trees and open flowers: and covered them with gold fitted upon the carved work.</VERS>\r\n      <VERS vnumber=\"36\">And he built the inner court with three rows of hewed stone, and a row of cedar beams.</VERS>\r\n      <VERS vnumber=\"37\">In the fourth year was the foundation of the house of the LORD laid, in the month Zif:</VERS>\r\n      <VERS vnumber=\"38\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">But Solomon was building his own house thirteen years, and he finished all his house.</VERS>\r\n      <VERS vnumber=\"2\">He 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.</VERS>\r\n      <VERS vnumber=\"3\">And it was covered with cedar above upon the beams, that lay on forty five pillars, fifteen in a row.</VERS>\r\n      <VERS vnumber=\"4\">And there were windows in three rows, and light was against light in three ranks.</VERS>\r\n      <VERS vnumber=\"5\">And all the doors and posts were square, with the windows: and light was against light in three ranks.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">Then 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">All 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.</VERS>\r\n      <VERS vnumber=\"10\">And the foundation was of costly stones, even great stones, stones of ten cubits, and stones of eight cubits.</VERS>\r\n      <VERS vnumber=\"11\">And above were costly stones, after the measures of hewed stones, and cedars.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And king Solomon sent and fetched Hiram out of Tyre.</VERS>\r\n      <VERS vnumber=\"14\">He 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.</VERS>\r\n      <VERS vnumber=\"15\">For he cast two pillars of brass, of eighteen cubits high apiece: and a line of twelve cubits did compass either of them about.</VERS>\r\n      <VERS vnumber=\"16\">And 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:</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And the chapiters that were upon the top of the pillars were of lily work in the porch, four cubits.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And upon the top of the pillars was lily work: so was the work of the pillars finished.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">It 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And the work of the bases was on this manner: they had borders, and the borders were between the ledges:</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">And there were four undersetters to the four corners of one base: and the undersetters were of the very base itself.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">For 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.</VERS>\r\n      <VERS vnumber=\"37\">After this manner he made the ten bases: all of them had one casting, one measure, and one size.</VERS>\r\n      <VERS vnumber=\"38\">Then 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.</VERS>\r\n      <VERS vnumber=\"39\">And 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.</VERS>\r\n      <VERS vnumber=\"40\">And 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:</VERS>\r\n      <VERS vnumber=\"41\">The 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;</VERS>\r\n      <VERS vnumber=\"42\">And 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;</VERS>\r\n      <VERS vnumber=\"43\">And the ten bases, and ten lavers on the bases;</VERS>\r\n      <VERS vnumber=\"44\">And one sea, and twelve oxen under the sea;</VERS>\r\n      <VERS vnumber=\"45\">And 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.</VERS>\r\n      <VERS vnumber=\"46\">In the plain of Jordan did the king cast them, in the clay ground between Succoth and Zarthan.</VERS>\r\n      <VERS vnumber=\"47\">And Solomon left all the vessels unweighed, because they were exceeding many: neither was the weight of the brass found out.</VERS>\r\n      <VERS vnumber=\"48\">And 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,</VERS>\r\n      <VERS vnumber=\"49\">And 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,</VERS>\r\n      <VERS vnumber=\"50\">And 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.</VERS>\r\n      <VERS vnumber=\"51\">So 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">Then 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.</VERS>\r\n      <VERS vnumber=\"2\">And all the men of Israel assembled themselves unto king Solomon at the feast in the month Ethanim, which is the seventh month.</VERS>\r\n      <VERS vnumber=\"3\">And all the elders of Israel came, and the priests took up the ark.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">For the cherubims spread forth their two wings over the place of the ark, and the cherubims covered the ark and the staves thereof above.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">There 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.</VERS>\r\n      <VERS vnumber=\"10\">And it came to pass, when the priests were come out of the holy place, that the cloud filled the house of the LORD,</VERS>\r\n      <VERS vnumber=\"11\">So 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.</VERS>\r\n      <VERS vnumber=\"12\">Then spake Solomon, The LORD said that he would dwell in the thick darkness.</VERS>\r\n      <VERS vnumber=\"13\">I have surely built thee an house to dwell in, a settled place for thee to abide in for ever.</VERS>\r\n      <VERS vnumber=\"14\">And the king turned his face about, and blessed all the congregation of Israel: (and all the congregation of Israel stood;)</VERS>\r\n      <VERS vnumber=\"15\">And 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,</VERS>\r\n      <VERS vnumber=\"16\">Since 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.</VERS>\r\n      <VERS vnumber=\"17\">And it was in the heart of David my father to build an house for the name of the LORD God of Israel.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">Nevertheless 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And Solomon stood before the altar of the LORD in the presence of all the congregation of Israel, and spread forth his hands toward heaven:</VERS>\r\n      <VERS vnumber=\"23\">And 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:</VERS>\r\n      <VERS vnumber=\"24\">Who 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.</VERS>\r\n      <VERS vnumber=\"25\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"26\">And now, O God of Israel, let thy word, I pray thee, be verified, which thou spakest unto thy servant David my father.</VERS>\r\n      <VERS vnumber=\"27\">But 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?</VERS>\r\n      <VERS vnumber=\"28\">Yet 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:</VERS>\r\n      <VERS vnumber=\"29\">That 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.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">If 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:</VERS>\r\n      <VERS vnumber=\"32\">Then 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.</VERS>\r\n      <VERS vnumber=\"33\">When 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:</VERS>\r\n      <VERS vnumber=\"34\">Then 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.</VERS>\r\n      <VERS vnumber=\"35\">When 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:</VERS>\r\n      <VERS vnumber=\"36\">Then 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.</VERS>\r\n      <VERS vnumber=\"37\">If 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;</VERS>\r\n      <VERS vnumber=\"38\">What 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:</VERS>\r\n      <VERS vnumber=\"39\">Then 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;)</VERS>\r\n      <VERS vnumber=\"40\">That they may fear thee all the days that they live in the land which thou gavest unto our fathers.</VERS>\r\n      <VERS vnumber=\"41\">Moreover concerning a stranger, that is not of thy people Israel, but cometh out of a far country for thy name's sake;</VERS>\r\n      <VERS vnumber=\"42\">(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;</VERS>\r\n      <VERS vnumber=\"43\">Hear 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.</VERS>\r\n      <VERS vnumber=\"44\">If 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:</VERS>\r\n      <VERS vnumber=\"45\">Then hear thou in heaven their prayer and their supplication, and maintain their cause.</VERS>\r\n      <VERS vnumber=\"46\">If 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;</VERS>\r\n      <VERS vnumber=\"47\">Yet 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;</VERS>\r\n      <VERS vnumber=\"48\">And 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:</VERS>\r\n      <VERS vnumber=\"49\">Then hear thou their prayer and their supplication in heaven thy dwelling place, and maintain their cause,</VERS>\r\n      <VERS vnumber=\"50\">And 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:</VERS>\r\n      <VERS vnumber=\"51\">For they be thy people, and thine inheritance, which thou broughtest forth out of Egypt, from the midst of the furnace of iron:</VERS>\r\n      <VERS vnumber=\"52\">That 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.</VERS>\r\n      <VERS vnumber=\"53\">For 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.</VERS>\r\n      <VERS vnumber=\"54\">And 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.</VERS>\r\n      <VERS vnumber=\"55\">And he stood, and blessed all the congregation of Israel with a loud voice, saying,</VERS>\r\n      <VERS vnumber=\"56\">Blessed 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.</VERS>\r\n      <VERS vnumber=\"57\">The LORD our God be with us, as he was with our fathers: let him not leave us, nor forsake us:</VERS>\r\n      <VERS vnumber=\"58\">That 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.</VERS>\r\n      <VERS vnumber=\"59\">And 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:</VERS>\r\n      <VERS vnumber=\"60\">That all the people of the earth may know that the LORD is God, and that there is none else.</VERS>\r\n      <VERS vnumber=\"61\">Let your heart therefore be perfect with the LORD our God, to walk in his statutes, and to keep his commandments, as at this day.</VERS>\r\n      <VERS vnumber=\"62\">And the king, and all Israel with him, offered sacrifice before the LORD.</VERS>\r\n      <VERS vnumber=\"63\">And 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.</VERS>\r\n      <VERS vnumber=\"64\">The 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.</VERS>\r\n      <VERS vnumber=\"65\">And 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.</VERS>\r\n      <VERS vnumber=\"66\">On 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">And 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,</VERS>\r\n      <VERS vnumber=\"2\">That the LORD appeared to Solomon the second time, as he had appeared unto him at Gibeon.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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:</VERS>\r\n      <VERS vnumber=\"5\">Then 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.</VERS>\r\n      <VERS vnumber=\"6\">But 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:</VERS>\r\n      <VERS vnumber=\"7\">Then 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:</VERS>\r\n      <VERS vnumber=\"8\">And 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?</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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,</VERS>\r\n      <VERS vnumber=\"11\">(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.</VERS>\r\n      <VERS vnumber=\"12\">And Hiram came out from Tyre to see the cities which Solomon had given him; and they pleased him not.</VERS>\r\n      <VERS vnumber=\"13\">And he said, What cities are these which thou hast given me, my brother? And he called them the land of Cabul unto this day.</VERS>\r\n      <VERS vnumber=\"14\">And Hiram sent to the king sixscore talents of gold.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">For 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.</VERS>\r\n      <VERS vnumber=\"17\">And Solomon built Gezer, and Bethhoron the nether,</VERS>\r\n      <VERS vnumber=\"18\">And Baalath, and Tadmor in the wilderness, in the land,</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And all the people that were left of the Amorites, Hittites, Perizzites, Hivites, and Jebusites, which were not of the children of Israel,</VERS>\r\n      <VERS vnumber=\"21\">Their 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.</VERS>\r\n      <VERS vnumber=\"22\">But 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.</VERS>\r\n      <VERS vnumber=\"23\">These 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.</VERS>\r\n      <VERS vnumber=\"24\">But 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And Hiram sent in the navy his servants, shipmen that had knowledge of the sea, with the servants of Solomon.</VERS>\r\n      <VERS vnumber=\"28\">And they came to Ophir, and fetched from thence gold, four hundred and twenty talents, and brought it to king Solomon.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And Solomon told her all her questions: there was not any thing hid from the king, which he told her not.</VERS>\r\n      <VERS vnumber=\"4\">And when the queen of Sheba had seen all Solomon's wisdom, and the house that he had built,</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And she said to the king, It was a true report that I heard in mine own land of thy acts and of thy wisdom.</VERS>\r\n      <VERS vnumber=\"7\">Howbeit 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.</VERS>\r\n      <VERS vnumber=\"8\">Happy are thy men, happy are these thy servants, which stand continually before thee, and that hear thy wisdom.</VERS>\r\n      <VERS vnumber=\"9\">Blessed 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And the navy also of Hiram, that brought gold from Ophir, brought in from Ophir great plenty of almug trees, and precious stones.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">Now the weight of gold that came to Solomon in one year was six hundred threescore and six talents of gold,</VERS>\r\n      <VERS vnumber=\"15\">Beside 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.</VERS>\r\n      <VERS vnumber=\"16\">And king Solomon made two hundred targets of beaten gold: six hundred shekels of gold went to one target.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">Moreover the king made a great throne of ivory, and overlaid it with the best gold.</VERS>\r\n      <VERS vnumber=\"19\">The 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">For 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.</VERS>\r\n      <VERS vnumber=\"23\">So king Solomon exceeded all the kings of the earth for riches and for wisdom.</VERS>\r\n      <VERS vnumber=\"24\">And all the earth sought to Solomon, to hear his wisdom, which God had put in his heart.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And Solomon had horses brought out of Egypt, and linen yarn: the king's merchants received the linen yarn at a price.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">But king Solomon loved many strange women, together with the daughter of Pharaoh, women of the Moabites, Ammonites, Edomites, Zidonians, and Hittites;</VERS>\r\n      <VERS vnumber=\"2\">Of 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.</VERS>\r\n      <VERS vnumber=\"3\">And he had seven hundred wives, princesses, and three hundred concubines: and his wives turned away his heart.</VERS>\r\n      <VERS vnumber=\"4\">For 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.</VERS>\r\n      <VERS vnumber=\"5\">For Solomon went after Ashtoreth the goddess of the Zidonians, and after Milcom the abomination of the Ammonites.</VERS>\r\n      <VERS vnumber=\"6\">And Solomon did evil in the sight of the LORD, and went not fully after the LORD, as did David his father.</VERS>\r\n      <VERS vnumber=\"7\">Then 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.</VERS>\r\n      <VERS vnumber=\"8\">And likewise did he for all his strange wives, which burnt incense and sacrificed unto their gods.</VERS>\r\n      <VERS vnumber=\"9\">And the LORD was angry with Solomon, because his heart was turned from the LORD God of Israel, which had appeared unto him twice,</VERS>\r\n      <VERS vnumber=\"10\">And had commanded him concerning this thing, that he should not go after other gods: but he kept not that which the LORD commanded.</VERS>\r\n      <VERS vnumber=\"11\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"12\">Notwithstanding 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.</VERS>\r\n      <VERS vnumber=\"13\">Howbeit 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.</VERS>\r\n      <VERS vnumber=\"14\">And the LORD stirred up an adversary unto Solomon, Hadad the Edomite: he was of the king's seed in Edom.</VERS>\r\n      <VERS vnumber=\"15\">For 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;</VERS>\r\n      <VERS vnumber=\"16\">(For six months did Joab remain there with all Israel, until he had cut off every male in Edom:)</VERS>\r\n      <VERS vnumber=\"17\">That Hadad fled, he and certain Edomites of his father's servants with him, to go into Egypt; Hadad being yet a little child.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">Then 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.</VERS>\r\n      <VERS vnumber=\"23\">And God stirred him up another adversary, Rezon the son of Eliadah, which fled from his lord Hadadezer king of Zobah:</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">And 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:</VERS>\r\n      <VERS vnumber=\"30\">And Ahijah caught the new garment that was on him, and rent it in twelve pieces:</VERS>\r\n      <VERS vnumber=\"31\">And 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:</VERS>\r\n      <VERS vnumber=\"32\">(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:)</VERS>\r\n      <VERS vnumber=\"33\">Because 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.</VERS>\r\n      <VERS vnumber=\"34\">Howbeit 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:</VERS>\r\n      <VERS vnumber=\"35\">But I will take the kingdom out of his son's hand, and will give it unto thee, even ten tribes.</VERS>\r\n      <VERS vnumber=\"36\">And 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.</VERS>\r\n      <VERS vnumber=\"37\">And I will take thee, and thou shalt reign according to all that thy soul desireth, and shalt be king over Israel.</VERS>\r\n      <VERS vnumber=\"38\">And 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.</VERS>\r\n      <VERS vnumber=\"39\">And I will for this afflict the seed of David, but not for ever.</VERS>\r\n      <VERS vnumber=\"40\">Solomon 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.</VERS>\r\n      <VERS vnumber=\"41\">And 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?</VERS>\r\n      <VERS vnumber=\"42\">And the time that Solomon reigned in Jerusalem over all Israel was forty years.</VERS>\r\n      <VERS vnumber=\"43\">And Solomon slept with his fathers, and was buried in the city of David his father: and Rehoboam his son reigned in his stead.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">And Rehoboam went to Shechem: for all Israel were come to Shechem to make him king.</VERS>\r\n      <VERS vnumber=\"2\">And 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;)</VERS>\r\n      <VERS vnumber=\"3\">That they sent and called him. And Jeroboam and all the congregation of Israel came, and spake unto Rehoboam, saying,</VERS>\r\n      <VERS vnumber=\"4\">Thy 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.</VERS>\r\n      <VERS vnumber=\"5\">And he said unto them, Depart yet for three days, then come again to me. And the people departed.</VERS>\r\n      <VERS vnumber=\"6\">And 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?</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">But 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:</VERS>\r\n      <VERS vnumber=\"9\">And 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?</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">So Jeroboam and all the people came to Rehoboam the third day, as the king had appointed, saying, Come to me again the third day.</VERS>\r\n      <VERS vnumber=\"13\">And the king answered the people roughly, and forsook the old men's counsel that they gave him;</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"16\">So 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.</VERS>\r\n      <VERS vnumber=\"17\">But as for the children of Israel which dwelt in the cities of Judah, Rehoboam reigned over them.</VERS>\r\n      <VERS vnumber=\"18\">Then 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.</VERS>\r\n      <VERS vnumber=\"19\">So Israel rebelled against the house of David unto this day.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">But the word of God came unto Shemaiah the man of God, saying,</VERS>\r\n      <VERS vnumber=\"23\">Speak 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,</VERS>\r\n      <VERS vnumber=\"24\">Thus 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.</VERS>\r\n      <VERS vnumber=\"25\">Then Jeroboam built Shechem in mount Ephraim, and dwelt therein; and went out from thence, and built Penuel.</VERS>\r\n      <VERS vnumber=\"26\">And Jeroboam said in his heart, Now shall the kingdom return to the house of David:</VERS>\r\n      <VERS vnumber=\"27\">If 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.</VERS>\r\n      <VERS vnumber=\"28\">Whereupon 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.</VERS>\r\n      <VERS vnumber=\"29\">And he set the one in Bethel, and the other put he in Dan.</VERS>\r\n      <VERS vnumber=\"30\">And this thing became a sin: for the people went to worship before the one, even unto Dan.</VERS>\r\n      <VERS vnumber=\"31\">And he made an house of high places, and made priests of the lowest of the people, which were not of the sons of Levi.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">So 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">And, 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">The 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And the king said unto the man of God, Come home with me, and refresh thyself, and I will give thee a reward.</VERS>\r\n      <VERS vnumber=\"8\">And 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:</VERS>\r\n      <VERS vnumber=\"9\">For 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.</VERS>\r\n      <VERS vnumber=\"10\">So he went another way, and returned not by the way that he came to Bethel.</VERS>\r\n      <VERS vnumber=\"11\">Now 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And he said unto his sons, Saddle me the ass. So they saddled him the ass: and he rode thereon,</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">Then he said unto him, Come home with me, and eat bread.</VERS>\r\n      <VERS vnumber=\"16\">And 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:</VERS>\r\n      <VERS vnumber=\"17\">For 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.</VERS>\r\n      <VERS vnumber=\"18\">He 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.</VERS>\r\n      <VERS vnumber=\"19\">So he went back with him, and did eat bread in his house, and drank water.</VERS>\r\n      <VERS vnumber=\"20\">And it came to pass, as they sat at the table, that the word of the LORD came unto the prophet that brought him back:</VERS>\r\n      <VERS vnumber=\"21\">And 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,</VERS>\r\n      <VERS vnumber=\"22\">But 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.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And, 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And he spake to his sons, saying, Saddle me the ass. And they saddled him.</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">And he laid his carcase in his own grave; and they mourned over him, saying, Alas, my brother!</VERS>\r\n      <VERS vnumber=\"31\">And 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:</VERS>\r\n      <VERS vnumber=\"32\">For 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.</VERS>\r\n      <VERS vnumber=\"33\">After 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.</VERS>\r\n      <VERS vnumber=\"34\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">At that time Abijah the son of Jeroboam fell sick.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">Go, 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,</VERS>\r\n      <VERS vnumber=\"8\">And 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;</VERS>\r\n      <VERS vnumber=\"9\">But 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:</VERS>\r\n      <VERS vnumber=\"10\">Therefore, 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.</VERS>\r\n      <VERS vnumber=\"11\">Him 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.</VERS>\r\n      <VERS vnumber=\"12\">Arise thou therefore, get thee to thine own house: and when thy feet enter into the city, the child shall die.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">Moreover the LORD shall raise him up a king over Israel, who shall cut off the house of Jeroboam that day: but what? even now.</VERS>\r\n      <VERS vnumber=\"15\">For 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.</VERS>\r\n      <VERS vnumber=\"16\">And he shall give Israel up because of the sins of Jeroboam, who did sin, and who made Israel to sin.</VERS>\r\n      <VERS vnumber=\"17\">And Jeroboam's wife arose, and departed, and came to Tirzah: and when she came to the threshold of the door, the child died;</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And the days which Jeroboam reigned were two and twenty years: and he slept with his fathers, and Nadab his son reigned in his stead.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">For they also built them high places, and images, and groves, on every high hill, and under every green tree.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And it came to pass in the fifth year of king Rehoboam, that Shishak king of Egypt came up against Jerusalem:</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">Now 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?</VERS>\r\n      <VERS vnumber=\"30\">And there was war between Rehoboam and Jeroboam all their days.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">Now in the eighteenth year of king Jeroboam the son of Nebat reigned Abijam over Judah.</VERS>\r\n      <VERS vnumber=\"2\">Three years reigned he in Jerusalem. And his mother's name was Maachah, the daughter of Abishalom.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">Nevertheless 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:</VERS>\r\n      <VERS vnumber=\"5\">Because 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.</VERS>\r\n      <VERS vnumber=\"6\">And there was war between Rehoboam and Jeroboam all the days of his life.</VERS>\r\n      <VERS vnumber=\"7\">Now 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.</VERS>\r\n      <VERS vnumber=\"8\">And Abijam slept with his fathers; and they buried him in the city of David: and Asa his son reigned in his stead.</VERS>\r\n      <VERS vnumber=\"9\">And in the twentieth year of Jeroboam king of Israel reigned Asa over Judah.</VERS>\r\n      <VERS vnumber=\"10\">And forty and one years reigned he in Jerusalem. And his mother's name was Maachah, the daughter of Abishalom.</VERS>\r\n      <VERS vnumber=\"11\">And Asa did that which was right in the eyes of the LORD, as did David his father.</VERS>\r\n      <VERS vnumber=\"12\">And he took away the sodomites out of the land, and removed all the idols that his fathers had made.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">But the high places were not removed: nevertheless Asa's heart was perfect with the LORD all his days.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And there was war between Asa and Baasha king of Israel all their days.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">Then 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,</VERS>\r\n      <VERS vnumber=\"19\">There 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.</VERS>\r\n      <VERS vnumber=\"20\">So 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.</VERS>\r\n      <VERS vnumber=\"21\">And it came to pass, when Baasha heard thereof, that he left off building of Ramah, and dwelt in Tirzah.</VERS>\r\n      <VERS vnumber=\"22\">Then 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.</VERS>\r\n      <VERS vnumber=\"23\">The 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">Even in the third year of Asa king of Judah did Baasha slay him, and reigned in his stead.</VERS>\r\n      <VERS vnumber=\"29\">And 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:</VERS>\r\n      <VERS vnumber=\"30\">Because 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.</VERS>\r\n      <VERS vnumber=\"31\">Now 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?</VERS>\r\n      <VERS vnumber=\"32\">And there was war between Asa and Baasha king of Israel all their days.</VERS>\r\n      <VERS vnumber=\"33\">In 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.</VERS>\r\n      <VERS vnumber=\"34\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">Then the word of the LORD came to Jehu the son of Hanani against Baasha, saying,</VERS>\r\n      <VERS vnumber=\"2\">Forasmuch 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;</VERS>\r\n      <VERS vnumber=\"3\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"4\">Him 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.</VERS>\r\n      <VERS vnumber=\"5\">Now 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?</VERS>\r\n      <VERS vnumber=\"6\">So Baasha slept with his fathers, and was buried in Tirzah: and Elah his son reigned in his stead.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">In the twenty and sixth year of Asa king of Judah began Elah the son of Baasha to reign over Israel in Tirzah, two years.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">Thus did Zimri destroy all the house of Baasha, according to the word of the LORD, which he spake against Baasha by Jehu the prophet,</VERS>\r\n      <VERS vnumber=\"13\">For 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.</VERS>\r\n      <VERS vnumber=\"14\">Now 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?</VERS>\r\n      <VERS vnumber=\"15\">In 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And Omri went up from Gibbethon, and all Israel with him, and they besieged Tirzah.</VERS>\r\n      <VERS vnumber=\"18\">And 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,</VERS>\r\n      <VERS vnumber=\"19\">For 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.</VERS>\r\n      <VERS vnumber=\"20\">Now 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?</VERS>\r\n      <VERS vnumber=\"21\">Then 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.</VERS>\r\n      <VERS vnumber=\"22\">But the people that followed Omri prevailed against the people that followed Tibni the son of Ginath: so Tibni died, and Omri reigned.</VERS>\r\n      <VERS vnumber=\"23\">In the thirty and first year of Asa king of Judah began Omri to reign over Israel, twelve years: six years reigned he in Tirzah.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">But Omri wrought evil in the eyes of the LORD, and did worse than all that were before him.</VERS>\r\n      <VERS vnumber=\"26\">For 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.</VERS>\r\n      <VERS vnumber=\"27\">Now 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?</VERS>\r\n      <VERS vnumber=\"28\">So Omri slept with his fathers, and was buried in Samaria: and Ahab his son reigned in his stead.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">And Ahab the son of Omri did evil in the sight of the LORD above all that were before him.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n      <VERS vnumber=\"32\">And he reared up an altar for Baal in the house of Baal, which he had built in Samaria.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">In 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"17\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And the word of the LORD came unto him, saying,</VERS>\r\n      <VERS vnumber=\"3\">Get thee hence, and turn thee eastward, and hide thyself by the brook Cherith, that is before Jordan.</VERS>\r\n      <VERS vnumber=\"4\">And it shall be, that thou shalt drink of the brook; and I have commanded the ravens to feed thee there.</VERS>\r\n      <VERS vnumber=\"5\">So he went and did according unto the word of the LORD: for he went and dwelt by the brook Cherith, that is before Jordan.</VERS>\r\n      <VERS vnumber=\"6\">And the ravens brought him bread and flesh in the morning, and bread and flesh in the evening; and he drank of the brook.</VERS>\r\n      <VERS vnumber=\"7\">And it came to pass after a while, that the brook dried up, because there had been no rain in the land.</VERS>\r\n      <VERS vnumber=\"8\">And the word of the LORD came unto him, saying,</VERS>\r\n      <VERS vnumber=\"9\">Arise, get thee to Zarephath, which belongeth to Zidon, and dwell there: behold, I have commanded a widow woman there to sustain thee.</VERS>\r\n      <VERS vnumber=\"10\">So 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">For 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.</VERS>\r\n      <VERS vnumber=\"15\">And she went and did according to the saying of Elijah: and she, and he, and her house, did eat many days.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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?</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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?</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And the LORD heard the voice of Elijah; and the soul of the child came into him again, and he revived.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"18\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And Elijah went to shew himself unto Ahab. And there was a sore famine in Samaria.</VERS>\r\n      <VERS vnumber=\"3\">And Ahab called Obadiah, which was the governor of his house. (Now Obadiah feared the LORD greatly:</VERS>\r\n      <VERS vnumber=\"4\">For 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.)</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">So they divided the land between them to pass throughout it: Ahab went one way by himself, and Obadiah went another way by himself.</VERS>\r\n      <VERS vnumber=\"7\">And 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?</VERS>\r\n      <VERS vnumber=\"8\">And he answered him, I am: go, tell thy lord, Behold, Elijah is here.</VERS>\r\n      <VERS vnumber=\"9\">And he said, What have I sinned, that thou wouldest deliver thy servant into the hand of Ahab, to slay me?</VERS>\r\n      <VERS vnumber=\"10\">As 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.</VERS>\r\n      <VERS vnumber=\"11\">And now thou sayest, Go, tell thy lord, Behold, Elijah is here.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">Was 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?</VERS>\r\n      <VERS vnumber=\"14\">And now thou sayest, Go, tell thy lord, Behold, Elijah is here: and he shall slay me.</VERS>\r\n      <VERS vnumber=\"15\">And Elijah said, As the LORD of hosts liveth, before whom I stand, I will surely shew myself unto him to day.</VERS>\r\n      <VERS vnumber=\"16\">So Obadiah went to meet Ahab, and told him: and Ahab went to meet Elijah.</VERS>\r\n      <VERS vnumber=\"17\">And it came to pass, when Ahab saw Elijah, that Ahab said unto him, Art thou he that troubleth Israel?</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">Now 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.</VERS>\r\n      <VERS vnumber=\"20\">So Ahab sent unto all the children of Israel, and gathered the prophets together unto mount Carmel.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">Then 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.</VERS>\r\n      <VERS vnumber=\"23\">Let 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:</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And they cried aloud, and cut themselves after their manner with knives and lancets, till the blood gushed out upon them.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">And 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:</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">And 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.</VERS>\r\n      <VERS vnumber=\"35\">And the water ran round about the altar; and he filled the trench also with water.</VERS>\r\n      <VERS vnumber=\"36\">And 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.</VERS>\r\n      <VERS vnumber=\"37\">Hear 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.</VERS>\r\n      <VERS vnumber=\"38\">Then 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.</VERS>\r\n      <VERS vnumber=\"39\">And 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.</VERS>\r\n      <VERS vnumber=\"40\">And 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.</VERS>\r\n      <VERS vnumber=\"41\">And Elijah said unto Ahab, Get thee up, eat and drink; for there is a sound of abundance of rain.</VERS>\r\n      <VERS vnumber=\"42\">So 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,</VERS>\r\n      <VERS vnumber=\"43\">And 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.</VERS>\r\n      <VERS vnumber=\"44\">And 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.</VERS>\r\n      <VERS vnumber=\"45\">And 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.</VERS>\r\n      <VERS vnumber=\"46\">And the hand of the LORD was on Elijah; and he girded up his loins, and ran before Ahab to the entrance of Jezreel.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"19\">\r\n      <VERS vnumber=\"1\">And Ahab told Jezebel all that Elijah had done, and withal how he had slain all the prophets with the sword.</VERS>\r\n      <VERS vnumber=\"2\">Then 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.</VERS>\r\n      <VERS vnumber=\"3\">And when he saw that, he arose, and went for his life, and came to Beersheba, which belongeth to Judah, and left his servant there.</VERS>\r\n      <VERS vnumber=\"4\">But 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.</VERS>\r\n      <VERS vnumber=\"5\">And as he lay and slept under a juniper tree, behold, then an angel touched him, and said unto him, Arise and eat.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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?</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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:</VERS>\r\n      <VERS vnumber=\"12\">And after the earthquake a fire; but the LORD was not in the fire: and after the fire a still small voice.</VERS>\r\n      <VERS vnumber=\"13\">And 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?</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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:</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">Yet 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.</VERS>\r\n      <VERS vnumber=\"19\">So 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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?</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"20\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And he sent messengers to Ahab king of Israel into the city, and said unto him, Thus saith Benhadad,</VERS>\r\n      <VERS vnumber=\"3\">Thy silver and thy gold is mine; thy wives also and thy children, even the goodliest, are mine.</VERS>\r\n      <VERS vnumber=\"4\">And the king of Israel answered and said, My lord, O king, according to thy saying, I am thine, and all that I have.</VERS>\r\n      <VERS vnumber=\"5\">And 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;</VERS>\r\n      <VERS vnumber=\"6\">Yet 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.</VERS>\r\n      <VERS vnumber=\"7\">Then 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.</VERS>\r\n      <VERS vnumber=\"8\">And all the elders and all the people said unto him, Hearken not unto him, nor consent.</VERS>\r\n      <VERS vnumber=\"9\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And it came to pass, when Benhadad 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.</VERS>\r\n      <VERS vnumber=\"13\">And, 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">Then 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And he said, Whether they be come out for peace, take them alive; or whether they be come out for war, take them alive.</VERS>\r\n      <VERS vnumber=\"19\">So these young men of the princes of the provinces came out of the city, and the army which followed them.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And the king of Israel went out, and smote the horses and chariots, and slew the Syrians with a great slaughter.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And do this thing, Take the kings away, every man out of his place, and put captains in their rooms:</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And it came to pass at the return of the year, that Benhadad numbered the Syrians, and went up to Aphek, to fight against Israel.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">But 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.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n      <VERS vnumber=\"32\">So 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.</VERS>\r\n      <VERS vnumber=\"33\">Now 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.</VERS>\r\n      <VERS vnumber=\"34\">And Benhadad 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.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">Then 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.</VERS>\r\n      <VERS vnumber=\"37\">Then he found another man, and said, Smite me, I pray thee. And the man smote him, so that in smiting he wounded him.</VERS>\r\n      <VERS vnumber=\"38\">So the prophet departed, and waited for the king by the way, and disguised himself with ashes upon his face.</VERS>\r\n      <VERS vnumber=\"39\">And 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.</VERS>\r\n      <VERS vnumber=\"40\">And 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.</VERS>\r\n      <VERS vnumber=\"41\">And he hasted, and took the ashes away from his face; and the king of Israel discerned him that he was of the prophets.</VERS>\r\n      <VERS vnumber=\"42\">And 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.</VERS>\r\n      <VERS vnumber=\"43\">And the king of Israel went to his house heavy and displeased, and came to Samaria.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"21\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And Naboth said to Ahab, The LORD forbid it me, that I should give the inheritance of my fathers unto thee.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">But Jezebel his wife came to him, and said unto him, Why is thy spirit so sad, that thou eatest no bread?</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">So 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.</VERS>\r\n      <VERS vnumber=\"9\">And she wrote in the letters, saying, Proclaim a fast, and set Naboth on high among the people:</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">They proclaimed a fast, and set Naboth on high among the people.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">Then they sent to Jezebel, saying, Naboth is stoned, and is dead.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And the word of the LORD came to Elijah the Tishbite, saying,</VERS>\r\n      <VERS vnumber=\"18\">Arise, 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">Behold, 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,</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And of Jezebel also spake the LORD, saying, The dogs shall eat Jezebel by the wall of Jezreel.</VERS>\r\n      <VERS vnumber=\"24\">Him 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.</VERS>\r\n      <VERS vnumber=\"25\">But 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And the word of the LORD came to Elijah the Tishbite, saying,</VERS>\r\n      <VERS vnumber=\"29\">Seest 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"22\">\r\n      <VERS vnumber=\"1\">And they continued three years without war between Syria and Israel.</VERS>\r\n      <VERS vnumber=\"2\">And it came to pass in the third year, that Jehoshaphat the king of Judah came down to the king of Israel.</VERS>\r\n      <VERS vnumber=\"3\">And 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?</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And Jehoshaphat said unto the king of Israel, Enquire, I pray thee, at the word of the LORD to day.</VERS>\r\n      <VERS vnumber=\"6\">Then 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.</VERS>\r\n      <VERS vnumber=\"7\">And Jehoshaphat said, Is there not here a prophet of the LORD besides, that we might enquire of him?</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">Then the king of Israel called an officer, and said, Hasten hither Micaiah the son of Imlah.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And all the prophets prophesied so, saying, Go up to Ramothgilead, and prosper: for the LORD shall deliver it into the king's hand.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And Micaiah said, As the LORD liveth, what the LORD saith unto me, that will I speak.</VERS>\r\n      <VERS vnumber=\"15\">So 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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?</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And the king of Israel said unto Jehoshaphat, Did I not tell thee that he would prophesy no good concerning me, but evil?</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And there came forth a spirit, and stood before the LORD, and said, I will persuade him.</VERS>\r\n      <VERS vnumber=\"22\">And 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 persuade him, and prevail also: go forth, and do so.</VERS>\r\n      <VERS vnumber=\"23\">Now 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.</VERS>\r\n      <VERS vnumber=\"24\">But 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?</VERS>\r\n      <VERS vnumber=\"25\">And Micaiah said, Behold, thou shalt see in that day, when thou shalt go into an inner chamber to hide thyself.</VERS>\r\n      <VERS vnumber=\"26\">And 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;</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">So the king of Israel and Jehoshaphat the king of Judah went up to Ramothgilead.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">But 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.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">And 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.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">And 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.</VERS>\r\n      <VERS vnumber=\"37\">So the king died, and was brought to Samaria; and they buried the king in Samaria.</VERS>\r\n      <VERS vnumber=\"38\">And 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.</VERS>\r\n      <VERS vnumber=\"39\">Now 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?</VERS>\r\n      <VERS vnumber=\"40\">So Ahab slept with his fathers; and Ahaziah his son reigned in his stead.</VERS>\r\n      <VERS vnumber=\"41\">And Jehoshaphat the son of Asa began to reign over Judah in the fourth year of Ahab king of Israel.</VERS>\r\n      <VERS vnumber=\"42\">Jehoshaphat 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.</VERS>\r\n      <VERS vnumber=\"43\">And 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.</VERS>\r\n      <VERS vnumber=\"44\">And Jehoshaphat made peace with the king of Israel.</VERS>\r\n      <VERS vnumber=\"45\">Now 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?</VERS>\r\n      <VERS vnumber=\"46\">And the remnant of the sodomites, which remained in the days of his father Asa, he took out of the land.</VERS>\r\n      <VERS vnumber=\"47\">There was then no king in Edom: a deputy was king.</VERS>\r\n      <VERS vnumber=\"48\">Jehoshaphat made ships of Tharshish to go to Ophir for gold: but they went not; for the ships were broken at Eziongeber.</VERS>\r\n      <VERS vnumber=\"49\">Then said Ahaziah the son of Ahab unto Jehoshaphat, Let my servants go with thy servants in the ships. But Jehoshaphat would not.</VERS>\r\n      <VERS vnumber=\"50\">And 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.</VERS>\r\n      <VERS vnumber=\"51\">Ahaziah 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.</VERS>\r\n      <VERS vnumber=\"52\">And 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:</VERS>\r\n      <VERS vnumber=\"53\">For he served Baal, and worshipped him, and provoked to anger the LORD God of Israel, according to all that his father had done.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"12\" bname=\"2 Kings\" bsname=\"2Kgs\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">Then Moab rebelled against Israel after the death of Ahab.</VERS>\r\n      <VERS vnumber=\"2\">And Ahaziah fell down through a lattice in his upper chamber that was in Samaria, and was sick: and he sent messengers, and said unto them, Go, enquire of Baalzebub the god of Ekron whether I shall recover of this disease.</VERS>\r\n      <VERS vnumber=\"3\">But the angel of the LORD said to Elijah the Tishbite, Arise, go up to meet the messengers of the king of Samaria, and say unto them, Is it not because there is not a God in Israel, that ye go to enquire of Baalzebub the god of Ekron?</VERS>\r\n      <VERS vnumber=\"4\">Now therefore thus saith the LORD, Thou shalt not come down from that bed on which thou art gone up, but shalt surely die. And Elijah departed.</VERS>\r\n      <VERS vnumber=\"5\">And when the messengers turned back unto him, he said unto them, Why are ye now turned back?</VERS>\r\n      <VERS vnumber=\"6\">And they said unto him, There came a man up to meet us, and said unto us, Go, turn again unto the king that sent you, and say unto him, Thus saith the LORD, Is it not because there is not a God in Israel, that thou sendest to enquire of Baalzebub the god of Ekron? therefore thou shalt not come down from that bed on which thou art gone up, but shalt surely die.</VERS>\r\n      <VERS vnumber=\"7\">And he said unto them, What manner of man was he which came up to meet you, and told you these words?</VERS>\r\n      <VERS vnumber=\"8\">And they answered him, He was an hairy man, and girt with a girdle of leather about his loins. And he said, It is Elijah the Tishbite.</VERS>\r\n      <VERS vnumber=\"9\">Then the king sent unto him a captain of fifty with his fifty. And he went up to him: and, behold, he sat on the top of an hill. And he spake unto him, Thou man of God, the king hath said, Come down.</VERS>\r\n      <VERS vnumber=\"10\">And Elijah answered and said to the captain of fifty, If I be a man of God, then let fire come down from heaven, and consume thee and thy fifty. And there came down fire from heaven, and consumed him and his fifty.</VERS>\r\n      <VERS vnumber=\"11\">Again also he sent unto him another captain of fifty with his fifty. And he answered and said unto him, O man of God, thus hath the king said, Come down quickly.</VERS>\r\n      <VERS vnumber=\"12\">And Elijah answered and said unto them, If I be a man of God, let fire come down from heaven, and consume thee and thy fifty. And the fire of God came down from heaven, and consumed him and his fifty.</VERS>\r\n      <VERS vnumber=\"13\">And he sent again a captain of the third fifty with his fifty. And the third captain of fifty went up, and came and fell on his knees before Elijah, and besought him, and said unto him, O man of God, I pray thee, let my life, and the life of these fifty thy servants, be precious in thy sight.</VERS>\r\n      <VERS vnumber=\"14\">Behold, there came fire down from heaven, and burnt up the two captains of the former fifties with their fifties: therefore let my life now be precious in thy sight.</VERS>\r\n      <VERS vnumber=\"15\">And the angel of the LORD said unto Elijah, Go down with him: be not afraid of him. And he arose, and went down with him unto the king.</VERS>\r\n      <VERS vnumber=\"16\">And he said unto him, Thus saith the LORD, Forasmuch as thou hast sent messengers to enquire of Baalzebub the god of Ekron, is it not because there is no God in Israel to enquire of his word? therefore thou shalt not come down off that bed on which thou art gone up, but shalt surely die.</VERS>\r\n      <VERS vnumber=\"17\">So he died according to the word of the LORD which Elijah had spoken. And Jehoram reigned in his stead in the second year of Jehoram the son of Jehoshaphat king of Judah; because he had no son.</VERS>\r\n      <VERS vnumber=\"18\">Now the rest of the acts of Ahaziah which he did, are they not written in the book of the chronicles of the kings of Israel?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">And it came to pass, when the LORD would take up Elijah into heaven by a whirlwind, that Elijah went with Elisha from Gilgal.</VERS>\r\n      <VERS vnumber=\"2\">And Elijah said unto Elisha, Tarry here, I pray thee; for the LORD hath sent me to Bethel. And Elisha said unto him, As the LORD liveth, and as thy soul liveth, I will not leave thee. So they went down to Bethel.</VERS>\r\n      <VERS vnumber=\"3\">And the sons of the prophets that were at Bethel came forth to Elisha, and said unto him, Knowest thou that the LORD will take away thy master from thy head to day? And he said, Yea, I know it; hold ye your peace.</VERS>\r\n      <VERS vnumber=\"4\">And Elijah said unto him, Elisha, tarry here, I pray thee; for the LORD hath sent me to Jericho. And he said, As the LORD liveth, and as thy soul liveth, I will not leave thee. So they came to Jericho.</VERS>\r\n      <VERS vnumber=\"5\">And the sons of the prophets that were at Jericho came to Elisha, and said unto him, Knowest thou that the LORD will take away thy master from thy head to day? And he answered, Yea, I know it; hold ye your peace.</VERS>\r\n      <VERS vnumber=\"6\">And Elijah said unto him, Tarry, I pray thee, here; for the LORD hath sent me to Jordan. And he said, As the LORD liveth, and as thy soul liveth, I will not leave thee. And they two went on.</VERS>\r\n      <VERS vnumber=\"7\">And fifty men of the sons of the prophets went, and stood to view afar off: and they two stood by Jordan.</VERS>\r\n      <VERS vnumber=\"8\">And Elijah took his mantle, and wrapped it together, and smote the waters, and they were divided hither and thither, so that they two went over on dry ground.</VERS>\r\n      <VERS vnumber=\"9\">And it came to pass, when they were gone over, that Elijah said unto Elisha, Ask what I shall do for thee, before I be taken away from thee. And Elisha said, I pray thee, let a double portion of thy spirit be upon me.</VERS>\r\n      <VERS vnumber=\"10\">And he said, Thou hast asked a hard thing: nevertheless, if thou see me when I am taken from thee, it shall be so unto thee; but if not, it shall not be so.</VERS>\r\n      <VERS vnumber=\"11\">And it came to pass, as they still went on, and talked, that, behold, there appeared a chariot of fire, and horses of fire, and parted them both asunder; and Elijah went up by a whirlwind into heaven.</VERS>\r\n      <VERS vnumber=\"12\">And Elisha saw it, and he cried, My father, my father, the chariot of Israel, and the horsemen thereof. And he saw him no more: and he took hold of his own clothes, and rent them in two pieces.</VERS>\r\n      <VERS vnumber=\"13\">He took up also the mantle of Elijah that fell from him, and went back, and stood by the bank of Jordan;</VERS>\r\n      <VERS vnumber=\"14\">And he took the mantle of Elijah that fell from him, and smote the waters, and said, Where is the LORD God of Elijah? and when he also had smitten the waters, they parted hither and thither: and Elisha went over.</VERS>\r\n      <VERS vnumber=\"15\">And when the sons of the prophets which were to view at Jericho saw him, they said, The spirit of Elijah doth rest on Elisha. And they came to meet him, and bowed themselves to the ground before him.</VERS>\r\n      <VERS vnumber=\"16\">And they said unto him, Behold now, there be with thy servants fifty strong men; let them go, we pray thee, and seek thy master: lest peradventure the Spirit of the LORD hath taken him up, and cast him upon some mountain, or into some valley. And he said, Ye shall not send.</VERS>\r\n      <VERS vnumber=\"17\">And when they urged him till he was ashamed, he said, Send. They sent therefore fifty men; and they sought three days, but found him not.</VERS>\r\n      <VERS vnumber=\"18\">And when they came again to him, (for he tarried at Jericho,) he said unto them, Did I not say unto you, Go not?</VERS>\r\n      <VERS vnumber=\"19\">And the men of the city said unto Elisha, Behold, I pray thee, the situation of this city is pleasant, as my lord seeth: but the water is naught, and the ground barren.</VERS>\r\n      <VERS vnumber=\"20\">And he said, Bring me a new cruse, and put salt therein. And they brought it to him.</VERS>\r\n      <VERS vnumber=\"21\">And he went forth unto the spring of the waters, and cast the salt in there, and said, Thus saith the LORD, I have healed these waters; there shall not be from thence any more death or barren land.</VERS>\r\n      <VERS vnumber=\"22\">So the waters were healed unto this day, according to the saying of Elisha which he spake.</VERS>\r\n      <VERS vnumber=\"23\">And he went up from thence unto Bethel: and as he was going up by the way, there came forth little children out of the city, and mocked him, and said unto him, Go up, thou bald head; go up, thou bald head.</VERS>\r\n      <VERS vnumber=\"24\">And he turned back, and looked on them, and cursed them in the name of the LORD. And there came forth two she bears out of the wood, and tare forty and two children of them.</VERS>\r\n      <VERS vnumber=\"25\">And he went from thence to mount Carmel, and from thence he returned to Samaria.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Now Jehoram the son of Ahab began to reign over Israel in Samaria the eighteenth year of Jehoshaphat king of Judah, and reigned twelve years.</VERS>\r\n      <VERS vnumber=\"2\">And he wrought evil in the sight of the LORD; but not like his father, and like his mother: for he put away the image of Baal that his father had made.</VERS>\r\n      <VERS vnumber=\"3\">Nevertheless he cleaved unto the sins of Jeroboam the son of Nebat, which made Israel to sin; he departed not therefrom.</VERS>\r\n      <VERS vnumber=\"4\">And Mesha king of Moab was a sheepmaster, and rendered unto the king of Israel an hundred thousand lambs, and an hundred thousand rams, with the wool.</VERS>\r\n      <VERS vnumber=\"5\">But it came to pass, when Ahab was dead, that the king of Moab rebelled against the king of Israel.</VERS>\r\n      <VERS vnumber=\"6\">And king Jehoram went out of Samaria the same time, and numbered all Israel.</VERS>\r\n      <VERS vnumber=\"7\">And he went and sent to Jehoshaphat the king of Judah, saying, The king of Moab hath rebelled against me: wilt thou go with me against Moab to battle? And he said, I will go up: I am as thou art, my people as thy people, and my horses as thy horses.</VERS>\r\n      <VERS vnumber=\"8\">And he said, Which way shall we go up? And he answered, The way through the wilderness of Edom.</VERS>\r\n      <VERS vnumber=\"9\">So the king of Israel went, and the king of Judah, and the king of Edom: and they fetched a compass of seven days' journey: and there was no water for the host, and for the cattle that followed them.</VERS>\r\n      <VERS vnumber=\"10\">And the king of Israel said, Alas! that the LORD hath called these three kings together, to deliver them into the hand of Moab!</VERS>\r\n      <VERS vnumber=\"11\">But Jehoshaphat said, Is there not here a prophet of the LORD, that we may enquire of the LORD by him? And one of the king of Israel's servants answered and said, Here is Elisha the son of Shaphat, which poured water on the hands of Elijah.</VERS>\r\n      <VERS vnumber=\"12\">And Jehoshaphat said, The word of the LORD is with him. So the king of Israel and Jehoshaphat and the king of Edom went down to him.</VERS>\r\n      <VERS vnumber=\"13\">And Elisha said unto the king of Israel, What have I to do with thee? get thee to the prophets of thy father, and to the prophets of thy mother. And the king of Israel said unto him, Nay: for the LORD hath called these three kings together, to deliver them into the hand of Moab.</VERS>\r\n      <VERS vnumber=\"14\">And Elisha said, As the LORD of hosts liveth, before whom I stand, surely, were it not that I regard the presence of Jehoshaphat the king of Judah, I would not look toward thee, nor see thee.</VERS>\r\n      <VERS vnumber=\"15\">But now bring me a minstrel. And it came to pass, when the minstrel played, that the hand of the LORD came upon him.</VERS>\r\n      <VERS vnumber=\"16\">And he said, Thus saith the LORD, Make this valley full of ditches.</VERS>\r\n      <VERS vnumber=\"17\">For thus saith the LORD, Ye shall not see wind, neither shall ye see rain; yet that valley shall be filled with water, that ye may drink, both ye, and your cattle, and your beasts.</VERS>\r\n      <VERS vnumber=\"18\">And this is but a light thing in the sight of the LORD: he will deliver the Moabites also into your hand.</VERS>\r\n      <VERS vnumber=\"19\">And ye shall smite every fenced city, and every choice city, and shall fell every good tree, and stop all wells of water, and mar every good piece of land with stones.</VERS>\r\n      <VERS vnumber=\"20\">And it came to pass in the morning, when the meat offering was offered, that, behold, there came water by the way of Edom, and the country was filled with water.</VERS>\r\n      <VERS vnumber=\"21\">And when all the Moabites heard that the kings were come up to fight against them, they gathered all that were able to put on armour, and upward, and stood in the border.</VERS>\r\n      <VERS vnumber=\"22\">And they rose up early in the morning, and the sun shone upon the water, and the Moabites saw the water on the other side as red as blood:</VERS>\r\n      <VERS vnumber=\"23\">And they said, This is blood: the kings are surely slain, and they have smitten one another: now therefore, Moab, to the spoil.</VERS>\r\n      <VERS vnumber=\"24\">And when they came to the camp of Israel, the Israelites rose up and smote the Moabites, so that they fled before them: but they went forward smiting the Moabites, even in their country.</VERS>\r\n      <VERS vnumber=\"25\">And they beat down the cities, and on every good piece of land cast every man his stone, and filled it; and they stopped all the wells of water, and felled all the good trees: only in Kirharaseth left they the stones thereof; howbeit the slingers went about it, and smote it.</VERS>\r\n      <VERS vnumber=\"26\">And when the king of Moab saw that the battle was too sore for him, he took with him seven hundred men that drew swords, to break through even unto the king of Edom: but they could not.</VERS>\r\n      <VERS vnumber=\"27\">Then he took his eldest son that should have reigned in his stead, and offered him for a burnt offering upon the wall. And there was great indignation against Israel: and they departed from him, and returned to their own land.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">Now there cried a certain woman of the wives of the sons of the prophets unto Elisha, saying, Thy servant my husband is dead; and thou knowest that thy servant did fear the LORD: and the creditor is come to take unto him my two sons to be bondmen.</VERS>\r\n      <VERS vnumber=\"2\">And Elisha said unto her, What shall I do for thee? tell me, what hast thou in the house? And she said, Thine handmaid hath not any thing in the house, save a pot of oil.</VERS>\r\n      <VERS vnumber=\"3\">Then he said, Go, borrow thee vessels abroad of all thy neighbours, even empty vessels; borrow not a few.</VERS>\r\n      <VERS vnumber=\"4\">And when thou art come in, thou shalt shut the door upon thee and upon thy sons, and shalt pour out into all those vessels, and thou shalt set aside that which is full.</VERS>\r\n      <VERS vnumber=\"5\">So she went from him, and shut the door upon her and upon her sons, who brought the vessels to her; and she poured out.</VERS>\r\n      <VERS vnumber=\"6\">And it came to pass, when the vessels were full, that she said unto her son, Bring me yet a vessel. And he said unto her, There is not a vessel more. And the oil stayed.</VERS>\r\n      <VERS vnumber=\"7\">Then she came and told the man of God. And he said, Go, sell the oil, and pay thy debt, and live thou and thy children of the rest.</VERS>\r\n      <VERS vnumber=\"8\">And it fell on a day, that Elisha passed to Shunem, where was a great woman; and she constrained him to eat bread. And so it was, that as oft as he passed by, he turned in thither to eat bread.</VERS>\r\n      <VERS vnumber=\"9\">And she said unto her husband, Behold now, I perceive that this is an holy man of God, which passeth by us continually.</VERS>\r\n      <VERS vnumber=\"10\">Let us make a little chamber, I pray thee, on the wall; and let us set for him there a bed, and a table, and a stool, and a candlestick: and it shall be, when he cometh to us, that he shall turn in thither.</VERS>\r\n      <VERS vnumber=\"11\">And it fell on a day, that he came thither, and he turned into the chamber, and lay there.</VERS>\r\n      <VERS vnumber=\"12\">And he said to Gehazi his servant, Call this Shunammite. And when he had called her, she stood before him.</VERS>\r\n      <VERS vnumber=\"13\">And he said unto him, Say now unto her, Behold, thou hast been careful for us with all this care; what is to be done for thee? wouldest thou be spoken for to the king, or to the captain of the host? And she answered, I dwell among mine own people.</VERS>\r\n      <VERS vnumber=\"14\">And he said, What then is to be done for her? And Gehazi answered, Verily she hath no child, and her husband is old.</VERS>\r\n      <VERS vnumber=\"15\">And he said, Call her. And when he had called her, she stood in the door.</VERS>\r\n      <VERS vnumber=\"16\">And he said, About this season, according to the time of life, thou shalt embrace a son. And she said, Nay, my lord, thou man of God, do not lie unto thine handmaid.</VERS>\r\n      <VERS vnumber=\"17\">And the woman conceived, and bare a son at that season that Elisha had said unto her, according to the time of life.</VERS>\r\n      <VERS vnumber=\"18\">And when the child was grown, it fell on a day, that he went out to his father to the reapers.</VERS>\r\n      <VERS vnumber=\"19\">And he said unto his father, My head, my head. And he said to a lad, Carry him to his mother.</VERS>\r\n      <VERS vnumber=\"20\">And when he had taken him, and brought him to his mother, he sat on her knees till noon, and then died.</VERS>\r\n      <VERS vnumber=\"21\">And she went up, and laid him on the bed of the man of God, and shut the door upon him, and went out.</VERS>\r\n      <VERS vnumber=\"22\">And she called unto her husband, and said, Send me, I pray thee, one of the young men, and one of the asses, that I may run to the man of God, and come again.</VERS>\r\n      <VERS vnumber=\"23\">And he said, Wherefore wilt thou go to him to day? it is neither new moon, nor sabbath. And she said, It shall be well.</VERS>\r\n      <VERS vnumber=\"24\">Then she saddled an ass, and said to her servant, Drive, and go forward; slack not thy riding for me, except I bid thee.</VERS>\r\n      <VERS vnumber=\"25\">So she went and came unto the man of God to mount Carmel. And it came to pass, when the man of God saw her afar off, that he said to Gehazi his servant, Behold, yonder is that Shunammite:</VERS>\r\n      <VERS vnumber=\"26\">Run now, I pray thee, to meet her, and say unto her, Is it well with thee? is it well with thy husband? is it well with the child? And she answered, It is well.</VERS>\r\n      <VERS vnumber=\"27\">And when she came to the man of God to the hill, she caught him by the feet: but Gehazi came near to thrust her away. And the man of God said, Let her alone; for her soul is vexed within her: and the LORD hath hid it from me, and hath not told me.</VERS>\r\n      <VERS vnumber=\"28\">Then she said, Did I desire a son of my lord? did I not say, Do not deceive me?</VERS>\r\n      <VERS vnumber=\"29\">Then he said to Gehazi, Gird up thy loins, and take my staff in thine hand, and go thy way: if thou meet any man, salute him not; and if any salute thee, answer him not again: and lay my staff upon the face of the child.</VERS>\r\n      <VERS vnumber=\"30\">And the mother of the child said, As the LORD liveth, and as thy soul liveth, I will not leave thee. And he arose, and followed her.</VERS>\r\n      <VERS vnumber=\"31\">And Gehazi passed on before them, and laid the staff upon the face of the child; but there was neither voice, nor hearing. Wherefore he went again to meet him, and told him, saying, The child is not awaked.</VERS>\r\n      <VERS vnumber=\"32\">And when Elisha was come into the house, behold, the child was dead, and laid upon his bed.</VERS>\r\n      <VERS vnumber=\"33\">He went in therefore, and shut the door upon them twain, and prayed unto the LORD.</VERS>\r\n      <VERS vnumber=\"34\">And he went up, and lay upon the child, and put his mouth upon his mouth, and his eyes upon his eyes, and his hands upon his hands: and he stretched himself upon the child; and the flesh of the child waxed warm.</VERS>\r\n      <VERS vnumber=\"35\">Then he returned, and walked in the house to and fro; and went up, and stretched himself upon him: and the child sneezed seven times, and the child opened his eyes.</VERS>\r\n      <VERS vnumber=\"36\">And he called Gehazi, and said, Call this Shunammite. So he called her. And when she was come in unto him, he said, Take up thy son.</VERS>\r\n      <VERS vnumber=\"37\">Then she went in, and fell at his feet, and bowed herself to the ground, and took up her son, and went out.</VERS>\r\n      <VERS vnumber=\"38\">And Elisha came again to Gilgal: and there was a dearth in the land; and the sons of the prophets were sitting before him: and he said unto his servant, Set on the great pot, and seethe pottage for the sons of the prophets.</VERS>\r\n      <VERS vnumber=\"39\">And one went out into the field to gather herbs, and found a wild vine, and gathered thereof wild gourds his lap full, and came and shred them into the pot of pottage: for they knew them not.</VERS>\r\n      <VERS vnumber=\"40\">So they poured out for the men to eat. And it came to pass, as they were eating of the pottage, that they cried out, and said, O thou man of God, there is death in the pot. And they could not eat thereof.</VERS>\r\n      <VERS vnumber=\"41\">But he said, Then bring meal. And he cast it into the pot; and he said, Pour out for the people, that they may eat. And there was no harm in the pot.</VERS>\r\n      <VERS vnumber=\"42\">And there came a man from Baalshalisha, and brought the man of God bread of the firstfruits, twenty loaves of barley, and full ears of corn in the husk thereof. And he said, Give unto the people, that they may eat.</VERS>\r\n      <VERS vnumber=\"43\">And his servitor said, What, should I set this before an hundred men? He said again, Give the people, that they may eat: for thus saith the LORD, They shall eat, and shall leave thereof.</VERS>\r\n      <VERS vnumber=\"44\">So he set it before them, and they did eat, and left thereof, according to the word of the LORD.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">Now Naaman, captain of the host of the king of Syria, was a great man with his master, and honourable, because by him the LORD had given deliverance unto Syria: he was also a mighty man in valour, but he was a leper.</VERS>\r\n      <VERS vnumber=\"2\">And the Syrians had gone out by companies, and had brought away captive out of the land of Israel a little maid; and she waited on Naaman's wife.</VERS>\r\n      <VERS vnumber=\"3\">And she said unto her mistress, Would God my lord were with the prophet that is in Samaria! for he would recover him of his leprosy.</VERS>\r\n      <VERS vnumber=\"4\">And one went in, and told his lord, saying, Thus and thus said the maid that is of the land of Israel.</VERS>\r\n      <VERS vnumber=\"5\">And the king of Syria said, Go to, go, and I will send a letter unto the king of Israel. And he departed, and took with him ten talents of silver, and six thousand pieces of gold, and ten changes of raiment.</VERS>\r\n      <VERS vnumber=\"6\">And he brought the letter to the king of Israel, saying, Now when this letter is come unto thee, behold, I have therewith sent Naaman my servant to thee, that thou mayest recover him of his leprosy.</VERS>\r\n      <VERS vnumber=\"7\">And it came to pass, when the king of Israel had read the letter, that he rent his clothes, and said, Am I God, to kill and to make alive, that this man doth send unto me to recover a man of his leprosy? wherefore consider, I pray you, and see how he seeketh a quarrel against me.</VERS>\r\n      <VERS vnumber=\"8\">And it was so, when Elisha the man of God had heard that the king of Israel had rent his clothes, that he sent to the king, saying, Wherefore hast thou rent thy clothes? let him come now to me, and he shall know that there is a prophet in Israel.</VERS>\r\n      <VERS vnumber=\"9\">So Naaman came with his horses and with his chariot, and stood at the door of the house of Elisha.</VERS>\r\n      <VERS vnumber=\"10\">And Elisha sent a messenger unto him, saying, Go and wash in Jordan seven times, and thy flesh shall come again to thee, and thou shalt be clean.</VERS>\r\n      <VERS vnumber=\"11\">But Naaman was wroth, and went away, and said, Behold, I thought, He will surely come out to me, and stand, and call on the name of the LORD his God, and strike his hand over the place, and recover the leper.</VERS>\r\n      <VERS vnumber=\"12\">Are not Abana and Pharpar, rivers of Damascus, better than all the waters of Israel? may I not wash in them, and be clean? So he turned and went away in a rage.</VERS>\r\n      <VERS vnumber=\"13\">And his servants came near, and spake unto him, and said, My father, if the prophet had bid thee do some great thing, wouldest thou not have done it? how much rather then, when he saith to thee, Wash, and be clean?</VERS>\r\n      <VERS vnumber=\"14\">Then went he down, and dipped himself seven times in Jordan, according to the saying of the man of God: and his flesh came again like unto the flesh of a little child, and he was clean.</VERS>\r\n      <VERS vnumber=\"15\">And he returned to the man of God, he and all his company, and came, and stood before him: and he said, Behold, now I know that there is no God in all the earth, but in Israel: now therefore, I pray thee, take a blessing of thy servant.</VERS>\r\n      <VERS vnumber=\"16\">But he said, As the LORD liveth, before whom I stand, I will receive none. And he urged him to take it; but he refused.</VERS>\r\n      <VERS vnumber=\"17\">And Naaman said, Shall there not then, I pray thee, be given to thy servant two mules' burden of earth? for thy servant will henceforth offer neither burnt offering nor sacrifice unto other gods, but unto the LORD.</VERS>\r\n      <VERS vnumber=\"18\">In this thing the LORD pardon thy servant, that when my master goeth into the house of Rimmon to worship there, and he leaneth on my hand, and I bow myself in the house of Rimmon: when I bow down myself in the house of Rimmon, the LORD pardon thy servant in this thing.</VERS>\r\n      <VERS vnumber=\"19\">And he said unto him, Go in peace. So he departed from him a little way.</VERS>\r\n      <VERS vnumber=\"20\">But Gehazi, the servant of Elisha the man of God, said, Behold, my master hath spared Naaman this Syrian, in not receiving at his hands that which he brought: but, as the LORD liveth, I will run after him, and take somewhat of him.</VERS>\r\n      <VERS vnumber=\"21\">So Gehazi followed after Naaman. And when Naaman saw him running after him, he lighted down from the chariot to meet him, and said, Is all well?</VERS>\r\n      <VERS vnumber=\"22\">And he said, All is well. My master hath sent me, saying, Behold, even now there be come to me from mount Ephraim two young men of the sons of the prophets: give them, I pray thee, a talent of silver, and two changes of garments.</VERS>\r\n      <VERS vnumber=\"23\">And Naaman said, Be content, take two talents. And he urged him, and bound two talents of silver in two bags, with two changes of garments, and laid them upon two of his servants; and they bare them before him.</VERS>\r\n      <VERS vnumber=\"24\">And when he came to the tower, he took them from their hand, and bestowed them in the house: and he let the men go, and they departed.</VERS>\r\n      <VERS vnumber=\"25\">But he went in, and stood before his master. And Elisha said unto him, Whence comest thou, Gehazi? And he said, Thy servant went no whither.</VERS>\r\n      <VERS vnumber=\"26\">And he said unto him, Went not mine heart with thee, when the man turned again from his chariot to meet thee? Is it a time to receive money, and to receive garments, and oliveyards, and vineyards, and sheep, and oxen, and menservants, and maidservants?</VERS>\r\n      <VERS vnumber=\"27\">The leprosy therefore of Naaman shall cleave unto thee, and unto thy seed for ever. And he went out from his presence a leper as white as snow.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">And the sons of the prophets said unto Elisha, Behold now, the place where we dwell with thee is too strait for us.</VERS>\r\n      <VERS vnumber=\"2\">Let us go, we pray thee, unto Jordan, and take thence every man a beam, and let us make us a place there, where we may dwell. And he answered, Go ye.</VERS>\r\n      <VERS vnumber=\"3\">And one said, Be content, I pray thee, and go with thy servants. And he answered, I will go.</VERS>\r\n      <VERS vnumber=\"4\">So he went with them. And when they came to Jordan, they cut down wood.</VERS>\r\n      <VERS vnumber=\"5\">But as one was felling a beam, the axe head fell into the water: and he cried, and said, Alas, master! for it was borrowed.</VERS>\r\n      <VERS vnumber=\"6\">And the man of God said, Where fell it? And he shewed him the place. And he cut down a stick, and cast it in thither; and the iron did swim.</VERS>\r\n      <VERS vnumber=\"7\">Therefore said he, Take it up to thee. And he put out his hand, and took it.</VERS>\r\n      <VERS vnumber=\"8\">Then the king of Syria warred against Israel, and took counsel with his servants, saying, In such and such a place shall be my camp.</VERS>\r\n      <VERS vnumber=\"9\">And the man of God sent unto the king of Israel, saying, Beware that thou pass not such a place; for thither the Syrians are come down.</VERS>\r\n      <VERS vnumber=\"10\">And the king of Israel sent to the place which the man of God told him and warned him of, and saved himself there, not once nor twice.</VERS>\r\n      <VERS vnumber=\"11\">Therefore the heart of the king of Syria was sore troubled for this thing; and he called his servants, and said unto them, Will ye not shew me which of us is for the king of Israel?</VERS>\r\n      <VERS vnumber=\"12\">And one of his servants said, None, my lord, O king: but Elisha, the prophet that is in Israel, telleth the king of Israel the words that thou speakest in thy bedchamber.</VERS>\r\n      <VERS vnumber=\"13\">And he said, Go and spy where he is, that I may send and fetch him. And it was told him, saying, Behold, he is in Dothan.</VERS>\r\n      <VERS vnumber=\"14\">Therefore sent he thither horses, and chariots, and a great host: and they came by night, and compassed the city about.</VERS>\r\n      <VERS vnumber=\"15\">And when the servant of the man of God was risen early, and gone forth, behold, an host compassed the city both with horses and chariots. And his servant said unto him, Alas, my master! how shall we do?</VERS>\r\n      <VERS vnumber=\"16\">And he answered, Fear not: for they that be with us are more than they that be with them.</VERS>\r\n      <VERS vnumber=\"17\">And Elisha prayed, and said, LORD, I pray thee, open his eyes, that he may see. And the LORD opened the eyes of the young man; and he saw: and, behold, the mountain was full of horses and chariots of fire round about Elisha.</VERS>\r\n      <VERS vnumber=\"18\">And when they came down to him, Elisha prayed unto the LORD, and said, Smite this people, I pray thee, with blindness. And he smote them with blindness according to the word of Elisha.</VERS>\r\n      <VERS vnumber=\"19\">And Elisha said unto them, This is not the way, neither is this the city: follow me, and I will bring you to the man whom ye seek. But he led them to Samaria.</VERS>\r\n      <VERS vnumber=\"20\">And it came to pass, when they were come into Samaria, that Elisha said, LORD, open the eyes of these men, that they may see. And the LORD opened their eyes, and they saw; and, behold, they were in the midst of Samaria.</VERS>\r\n      <VERS vnumber=\"21\">And the king of Israel said unto Elisha, when he saw them, My father, shall I smite them? shall I smite them?</VERS>\r\n      <VERS vnumber=\"22\">And he answered, Thou shalt not smite them: wouldest thou smite those whom thou hast taken captive with thy sword and with thy bow? set bread and water before them, that they may eat and drink, and go to their master.</VERS>\r\n      <VERS vnumber=\"23\">And he prepared great provision for them: and when they had eaten and drunk, he sent them away, and they went to their master. So the bands of Syria came no more into the land of Israel.</VERS>\r\n      <VERS vnumber=\"24\">And it came to pass after this, that Benhadad king of Syria gathered all his host, and went up, and besieged Samaria.</VERS>\r\n      <VERS vnumber=\"25\">And there was a great famine in Samaria: and, behold, they besieged it, until an ass's head was sold for fourscore pieces of silver, and the fourth part of a cab of dove's dung for five pieces of silver.</VERS>\r\n      <VERS vnumber=\"26\">And as the king of Israel was passing by upon the wall, there cried a woman unto him, saying, Help, my lord, O king.</VERS>\r\n      <VERS vnumber=\"27\">And he said, If the LORD do not help thee, whence shall I help thee? out of the barnfloor, or out of the winepress?</VERS>\r\n      <VERS vnumber=\"28\">And the king said unto her, What aileth thee? And she answered, This woman said unto me, Give thy son, that we may eat him to day, and we will eat my son to morrow.</VERS>\r\n      <VERS vnumber=\"29\">So we boiled my son, and did eat him: and I said unto her on the next day, Give thy son, that we may eat him: and she hath hid her son.</VERS>\r\n      <VERS vnumber=\"30\">And it came to pass, when the king heard the words of the woman, that he rent his clothes; and he passed by upon the wall, and the people looked, and, behold, he had sackcloth within upon his flesh.</VERS>\r\n      <VERS vnumber=\"31\">Then he said, God do so and more also to me, if the head of Elisha the son of Shaphat shall stand on him this day.</VERS>\r\n      <VERS vnumber=\"32\">But Elisha sat in his house, and the elders sat with him; and the king sent a man from before him: but ere the messenger came to him, he said to the elders, See ye how this son of a murderer hath sent to take away mine head? look, when the messenger cometh, shut the door, and hold him fast at the door: is not the sound of his master's feet behind him?</VERS>\r\n      <VERS vnumber=\"33\">And while he yet talked with them, behold, the messenger came down unto him: and he said, Behold, this evil is of the LORD; what should I wait for the LORD any longer?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">Then Elisha said, Hear ye the word of the LORD; Thus saith the LORD, To morrow about this time shall a measure of fine flour be sold for a shekel, and two measures of barley for a shekel, in the gate of Samaria.</VERS>\r\n      <VERS vnumber=\"2\">Then a lord on whose hand the king leaned answered the man of God, and said, Behold, if the LORD would make windows in heaven, might this thing be? And he said, Behold, thou shalt see it with thine eyes, but shalt not eat thereof.</VERS>\r\n      <VERS vnumber=\"3\">And there were four leprous men at the entering in of the gate: and they said one to another, Why sit we here until we die?</VERS>\r\n      <VERS vnumber=\"4\">If we say, We will enter into the city, then the famine is in the city, and we shall die there: and if we sit still here, we die also. Now therefore come, and let us fall unto the host of the Syrians: if they save us alive, we shall live; and if they kill us, we shall but die.</VERS>\r\n      <VERS vnumber=\"5\">And they rose up in the twilight, to go unto the camp of the Syrians: and when they were come to the uttermost part of the camp of Syria, behold, there was no man there.</VERS>\r\n      <VERS vnumber=\"6\">For the Lord had made the host of the Syrians to hear a noise of chariots, and a noise of horses, even the noise of a great host: and they said one to another, Lo, the king of Israel hath hired against us the kings of the Hittites, and the kings of the Egyptians, to come upon us.</VERS>\r\n      <VERS vnumber=\"7\">Wherefore they arose and fled in the twilight, and left their tents, and their horses, and their asses, even the camp as it was, and fled for their life.</VERS>\r\n      <VERS vnumber=\"8\">And when these lepers came to the uttermost part of the camp, they went into one tent, and did eat and drink, and carried thence silver, and gold, and raiment, and went and hid it; and came again, and entered into another tent, and carried thence also, and went and hid it.</VERS>\r\n      <VERS vnumber=\"9\">Then they said one to another, We do not well: this day is a day of good tidings, and we hold our peace: if we tarry till the morning light, some mischief will come upon us: now therefore come, that we may go and tell the king's household.</VERS>\r\n      <VERS vnumber=\"10\">So they came and called unto the porter of the city: and they told them, saying, We came to the camp of the Syrians, and, behold, there was no man there, neither voice of man, but horses tied, and asses tied, and the tents as they were.</VERS>\r\n      <VERS vnumber=\"11\">And he called the porters; and they told it to the king's house within.</VERS>\r\n      <VERS vnumber=\"12\">And the king arose in the night, and said unto his servants, I will now shew you what the Syrians have done to us. They know that we be hungry; therefore are they gone out of the camp to hide themselves in the field, saying, When they come out of the city, we shall catch them alive, and get into the city.</VERS>\r\n      <VERS vnumber=\"13\">And one of his servants answered and said, Let some take, I pray thee, five of the horses that remain, which are left in the city, (behold, they are as all the multitude of Israel that are left in it: behold, I say, they are even as all the multitude of the Israelites that are consumed:) and let us send and see.</VERS>\r\n      <VERS vnumber=\"14\">They took therefore two chariot horses; and the king sent after the host of the Syrians, saying, Go and see.</VERS>\r\n      <VERS vnumber=\"15\">And they went after them unto Jordan: and, lo, all the way was full of garments and vessels, which the Syrians had cast away in their haste. And the messengers returned, and told the king.</VERS>\r\n      <VERS vnumber=\"16\">And the people went out, and spoiled the tents of the Syrians. So a measure of fine flour was sold for a shekel, and two measures of barley for a shekel, according to the word of the LORD.</VERS>\r\n      <VERS vnumber=\"17\">And the king appointed the lord on whose hand he leaned to have the charge of the gate: and the people trode upon him in the gate, and he died, as the man of God had said, who spake when the king came down to him.</VERS>\r\n      <VERS vnumber=\"18\">And it came to pass as the man of God had spoken to the king, saying, Two measures of barley for a shekel, and a measure of fine flour for a shekel, shall be to morrow about this time in the gate of Samaria:</VERS>\r\n      <VERS vnumber=\"19\">And that lord answered the man of God, and said, Now, behold, if the LORD should make windows in heaven, might such a thing be? And he said, Behold, thou shalt see it with thine eyes, but shalt not eat thereof.</VERS>\r\n      <VERS vnumber=\"20\">And so it fell out unto him: for the people trode upon him in the gate, and he died.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">Then spake Elisha unto the woman, whose son he had restored to life, saying, Arise, and go thou and thine household, and sojourn wheresoever thou canst sojourn: for the LORD hath called for a famine; and it shall also come upon the land seven years.</VERS>\r\n      <VERS vnumber=\"2\">And the woman arose, and did after the saying of the man of God: and she went with her household, and sojourned in the land of the Philistines seven years.</VERS>\r\n      <VERS vnumber=\"3\">And it came to pass at the seven years' end, that the woman returned out of the land of the Philistines: and she went forth to cry unto the king for her house and for her land.</VERS>\r\n      <VERS vnumber=\"4\">And the king talked with Gehazi the servant of the man of God, saying, Tell me, I pray thee, all the great things that Elisha hath done.</VERS>\r\n      <VERS vnumber=\"5\">And it came to pass, as he was telling the king how he had restored a dead body to life, that, behold, the woman, whose son he had restored to life, cried to the king for her house and for her land. And Gehazi said, My lord, O king, this is the woman, and this is her son, whom Elisha restored to life.</VERS>\r\n      <VERS vnumber=\"6\">And when the king asked the woman, she told him. So the king appointed unto her a certain officer, saying, Restore all that was hers, and all the fruits of the field since the day that she left the land, even until now.</VERS>\r\n      <VERS vnumber=\"7\">And Elisha came to Damascus; and Benhadad the king of Syria was sick; and it was told him, saying, The man of God is come hither.</VERS>\r\n      <VERS vnumber=\"8\">And the king said unto Hazael, Take a present in thine hand, and go, meet the man of God, and enquire of the LORD by him, saying, Shall I recover of this disease?</VERS>\r\n      <VERS vnumber=\"9\">So Hazael went to meet him, and took a present with him, even of every good thing of Damascus, forty camels' burden, and came and stood before him, and said, Thy son Benhadad king of Syria hath sent me to thee, saying, Shall I recover of this disease?</VERS>\r\n      <VERS vnumber=\"10\">And Elisha said unto him, Go, say unto him, Thou mayest certainly recover: howbeit the LORD hath shewed me that he shall surely die.</VERS>\r\n      <VERS vnumber=\"11\">And he settled his countenance stedfastly, until he was ashamed: and the man of God wept.</VERS>\r\n      <VERS vnumber=\"12\">And Hazael said, Why weepeth my lord? And he answered, Because I know the evil that thou wilt do unto the children of Israel: their strong holds wilt thou set on fire, and their young men wilt thou slay with the sword, and wilt dash their children, and rip up their women with child.</VERS>\r\n      <VERS vnumber=\"13\">And Hazael said, But what, is thy servant a dog, that he should do this great thing? And Elisha answered, The LORD hath shewed me that thou shalt be king over Syria.</VERS>\r\n      <VERS vnumber=\"14\">So he departed from Elisha, and came to his master; who said to him, What said Elisha to thee? And he answered, He told me that thou shouldest surely recover.</VERS>\r\n      <VERS vnumber=\"15\">And it came to pass on the morrow, that he took a thick cloth, and dipped it in water, and spread it on his face, so that he died: and Hazael reigned in his stead.</VERS>\r\n      <VERS vnumber=\"16\">And in the fifth year of Joram the son of Ahab king of Israel, Jehoshaphat being then king of Judah, Jehoram the son of Jehoshaphat king of Judah began to reign.</VERS>\r\n      <VERS vnumber=\"17\">Thirty and two years old was he when he began to reign; and he reigned eight years in Jerusalem.</VERS>\r\n      <VERS vnumber=\"18\">And he walked in the way of the kings of Israel, as did the house of Ahab: for the daughter of Ahab was his wife: and he did evil in the sight of the LORD.</VERS>\r\n      <VERS vnumber=\"19\">Yet the LORD would not destroy Judah for David his servant's sake, as he promised him to give him alway a light, and to his children.</VERS>\r\n      <VERS vnumber=\"20\">In his days Edom revolted from under the hand of Judah, and made a king over themselves.</VERS>\r\n      <VERS vnumber=\"21\">So Joram went over to Zair, and all the chariots with him: and he rose by night, and smote the Edomites which compassed him about, and the captains of the chariots: and the people fled into their tents.</VERS>\r\n      <VERS vnumber=\"22\">Yet Edom revolted from under the hand of Judah unto this day. Then Libnah revolted at the same time.</VERS>\r\n      <VERS vnumber=\"23\">And the rest of the acts of Joram, and all that he did, are they not written in the book of the chronicles of the kings of Judah?</VERS>\r\n      <VERS vnumber=\"24\">And Joram slept with his fathers, and was buried with his fathers in the city of David: and Ahaziah his son reigned in his stead.</VERS>\r\n      <VERS vnumber=\"25\">In the twelfth year of Joram the son of Ahab king of Israel did Ahaziah the son of Jehoram king of Judah begin to reign.</VERS>\r\n      <VERS vnumber=\"26\">Two and twenty years old was Ahaziah when he began to reign; and he reigned one year in Jerusalem. And his mother's name was Athaliah, the daughter of Omri king of Israel.</VERS>\r\n      <VERS vnumber=\"27\">And he walked in the way of the house of Ahab, and did evil in the sight of the LORD, as did the house of Ahab: for he was the son in law of the house of Ahab.</VERS>\r\n      <VERS vnumber=\"28\">And he went with Joram the son of Ahab to the war against Hazael king of Syria in Ramothgilead; and the Syrians wounded Joram.</VERS>\r\n      <VERS vnumber=\"29\">And king Joram went back to be healed in Jezreel of the wounds which the Syrians had given him at Ramah, when he fought against Hazael king of Syria. And Ahaziah the son of Jehoram king of Judah went down to see Joram the son of Ahab in Jezreel, because he was sick.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">And Elisha the prophet called one of the children of the prophets, and said unto him, Gird up thy loins, and take this box of oil in thine hand, and go to Ramothgilead:</VERS>\r\n      <VERS vnumber=\"2\">And when thou comest thither, look out there Jehu the son of Jehoshaphat the son of Nimshi, and go in, and make him arise up from among his brethren, and carry him to an inner chamber;</VERS>\r\n      <VERS vnumber=\"3\">Then take the box of oil, and pour it on his head, and say, Thus saith the LORD, I have anointed thee king over Israel. Then open the door, and flee, and tarry not.</VERS>\r\n      <VERS vnumber=\"4\">So the young man, even the young man the prophet, went to Ramothgilead.</VERS>\r\n      <VERS vnumber=\"5\">And when he came, behold, the captains of the host were sitting; and he said, I have an errand to thee, O captain. And Jehu said, Unto which of all us? And he said, To thee, O captain.</VERS>\r\n      <VERS vnumber=\"6\">And he arose, and went into the house; and he poured the oil on his head, and said unto him, Thus saith the LORD God of Israel, I have anointed thee king over the people of the LORD, even over Israel.</VERS>\r\n      <VERS vnumber=\"7\">And thou shalt smite the house of Ahab thy master, that I may avenge the blood of my servants the prophets, and the blood of all the servants of the LORD, at the hand of Jezebel.</VERS>\r\n      <VERS vnumber=\"8\">For the whole house of Ahab shall perish: and I will cut off from Ahab him that pisseth against the wall, and him that is shut up and left in Israel:</VERS>\r\n      <VERS vnumber=\"9\">And I will make the house of Ahab like the house of Jeroboam the son of Nebat, and like the house of Baasha the son of Ahijah:</VERS>\r\n      <VERS vnumber=\"10\">And the dogs shall eat Jezebel in the portion of Jezreel, and there shall be none to bury her. And he opened the door, and fled.</VERS>\r\n      <VERS vnumber=\"11\">Then Jehu came forth to the servants of his lord: and one said unto him, Is all well? wherefore came this mad fellow to thee? And he said unto them, Ye know the man, and his communication.</VERS>\r\n      <VERS vnumber=\"12\">And they said, It is false; tell us now. And he said, Thus and thus spake he to me, saying, Thus saith the LORD, I have anointed thee king over Israel.</VERS>\r\n      <VERS vnumber=\"13\">Then they hasted, and took every man his garment, and put it under him on the top of the stairs, and blew with trumpets, saying, Jehu is king.</VERS>\r\n      <VERS vnumber=\"14\">So Jehu the son of Jehoshaphat the son of Nimshi conspired against Joram. (Now Joram had kept Ramothgilead, he and all Israel, because of Hazael king of Syria.</VERS>\r\n      <VERS vnumber=\"15\">But king Joram was returned to be healed in Jezreel of the wounds which the Syrians had given him, when he fought with Hazael king of Syria.) And Jehu said, If it be your minds, then let none go forth nor escape out of the city to go to tell it in Jezreel.</VERS>\r\n      <VERS vnumber=\"16\">So Jehu rode in a chariot, and went to Jezreel; for Joram lay there. And Ahaziah king of Judah was come down to see Joram.</VERS>\r\n      <VERS vnumber=\"17\">And there stood a watchman on the tower in Jezreel, and he spied the company of Jehu as he came, and said, I see a company. And Joram said, Take an horseman, and send to meet them, and let him say, Is it peace?</VERS>\r\n      <VERS vnumber=\"18\">So there went one on horseback to meet him, and said, Thus saith the king, Is it peace? And Jehu said, What hast thou to do with peace? turn thee behind me. And the watchman told, saying, The messenger came to them, but he cometh not again.</VERS>\r\n      <VERS vnumber=\"19\">Then he sent out a second on horseback, which came to them, and said, Thus saith the king, Is it peace? And Jehu answered, What hast thou to do with peace? turn thee behind me.</VERS>\r\n      <VERS vnumber=\"20\">And the watchman told, saying, He came even unto them, and cometh not again: and the driving is like the driving of Jehu the son of Nimshi; for he driveth furiously.</VERS>\r\n      <VERS vnumber=\"21\">And Joram said, Make ready. And his chariot was made ready. And Joram king of Israel and Ahaziah king of Judah went out, each in his chariot, and they went out against Jehu, and met him in the portion of Naboth the Jezreelite.</VERS>\r\n      <VERS vnumber=\"22\">And it came to pass, when Joram saw Jehu, that he said, Is it peace, Jehu? And he answered, What peace, so long as the whoredoms of thy mother Jezebel and her witchcrafts are so many?</VERS>\r\n      <VERS vnumber=\"23\">And Joram turned his hands, and fled, and said to Ahaziah, There is treachery, O Ahaziah.</VERS>\r\n      <VERS vnumber=\"24\">And Jehu drew a bow with his full strength, and smote Jehoram between his arms, and the arrow went out at his heart, and he sunk down in his chariot.</VERS>\r\n      <VERS vnumber=\"25\">Then said Jehu to Bidkar his captain, Take up, and cast him in the portion of the field of Naboth the Jezreelite: for remember how that, when I and thou rode together after Ahab his father, the LORD laid this burden upon him;</VERS>\r\n      <VERS vnumber=\"26\">Surely I have seen yesterday the blood of Naboth, and the blood of his sons, saith the LORD; and I will requite thee in this plat, saith the LORD. Now therefore take and cast him into the plat of ground, according to the word of the LORD.</VERS>\r\n      <VERS vnumber=\"27\">But when Ahaziah the king of Judah saw this, he fled by the way of the garden house. And Jehu followed after him, and said, Smite him also in the chariot. And they did so at the going up to Gur, which is by Ibleam. And he fled to Megiddo, and died there.</VERS>\r\n      <VERS vnumber=\"28\">And his servants carried him in a chariot to Jerusalem, and buried him in his sepulchre with his fathers in the city of David.</VERS>\r\n      <VERS vnumber=\"29\">And in the eleventh year of Joram the son of Ahab began Ahaziah to reign over Judah.</VERS>\r\n      <VERS vnumber=\"30\">And when Jehu was come to Jezreel, Jezebel heard of it; and she painted her face, and tired her head, and looked out at a window.</VERS>\r\n      <VERS vnumber=\"31\">And as Jehu entered in at the gate, she said, Had Zimri peace, who slew his master?</VERS>\r\n      <VERS vnumber=\"32\">And he lifted up his face to the window, and said, Who is on my side? who? And there looked out to him two or three eunuchs.</VERS>\r\n      <VERS vnumber=\"33\">And he said, Throw her down. So they threw her down: and some of her blood was sprinkled on the wall, and on the horses: and he trode her under foot.</VERS>\r\n      <VERS vnumber=\"34\">And when he was come in, he did eat and drink, and said, Go, see now this cursed woman, and bury her: for she is a king's daughter.</VERS>\r\n      <VERS vnumber=\"35\">And they went to bury her: but they found no more of her than the skull, and the feet, and the palms of her hands.</VERS>\r\n      <VERS vnumber=\"36\">Wherefore they came again, and told him. And he said, This is the word of the LORD, which he spake by his servant Elijah the Tishbite, saying, In the portion of Jezreel shall dogs eat the flesh of Jezebel:</VERS>\r\n      <VERS vnumber=\"37\">And the carcase of Jezebel shall be as dung upon the face of the field in the portion of Jezreel; so that they shall not say, This is Jezebel.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">And Ahab had seventy sons in Samaria. And Jehu wrote letters, and sent to Samaria, unto the rulers of Jezreel, to the elders, and to them that brought up Ahab's children, saying,</VERS>\r\n      <VERS vnumber=\"2\">Now as soon as this letter cometh to you, seeing your master's sons are with you, and there are with you chariots and horses, a fenced city also, and armour;</VERS>\r\n      <VERS vnumber=\"3\">Look even out the best and meetest of your master's sons, and set him on his father's throne, and fight for your master's house.</VERS>\r\n      <VERS vnumber=\"4\">But they were exceedingly afraid, and said, Behold, two kings stood not before him: how then shall we stand?</VERS>\r\n      <VERS vnumber=\"5\">And he that was over the house, and he that was over the city, the elders also, and the bringers up of the children, sent to Jehu, saying, We are thy servants, and will do all that thou shalt bid us; we will not make any king: do thou that which is good in thine eyes.</VERS>\r\n      <VERS vnumber=\"6\">Then he wrote a letter the second time to them, saying, If ye be mine, and if ye will hearken unto my voice, take ye the heads of the men your master's sons, and come to me to Jezreel by to morrow this time. Now the king's sons, being seventy persons, were with the great men of the city, which brought them up.</VERS>\r\n      <VERS vnumber=\"7\">And it came to pass, when the letter came to them, that they took the king's sons, and slew seventy persons, and put their heads in baskets, and sent him them to Jezreel.</VERS>\r\n      <VERS vnumber=\"8\">And there came a messenger, and told him, saying, They have brought the heads of the king's sons. And he said, Lay ye them in two heaps at the entering in of the gate until the morning.</VERS>\r\n      <VERS vnumber=\"9\">And it came to pass in the morning, that he went out, and stood, and said to all the people, Ye be righteous: behold, I conspired against my master, and slew him: but who slew all these?</VERS>\r\n      <VERS vnumber=\"10\">Know now that there shall fall unto the earth nothing of the word of the LORD, which the LORD spake concerning the house of Ahab: for the LORD hath done that which he spake by his servant Elijah.</VERS>\r\n      <VERS vnumber=\"11\">So Jehu slew all that remained of the house of Ahab in Jezreel, and all his great men, and his kinsfolks, and his priests, until he left him none remaining.</VERS>\r\n      <VERS vnumber=\"12\">And he arose and departed, and came to Samaria. And as he was at the shearing house in the way,</VERS>\r\n      <VERS vnumber=\"13\">Jehu met with the brethren of Ahaziah king of Judah, and said, Who are ye? And they answered, We are the brethren of Ahaziah; and we go down to salute the children of the king and the children of the queen.</VERS>\r\n      <VERS vnumber=\"14\">And he said, Take them alive. And they took them alive, and slew them at the pit of the shearing house, even two and forty men; neither left he any of them.</VERS>\r\n      <VERS vnumber=\"15\">And when he was departed thence, he lighted on Jehonadab the son of Rechab coming to meet him: and he saluted him, and said to him, Is thine heart right, as my heart is with thy heart? And Jehonadab answered, It is. If it be, give me thine hand. And he gave him his hand; and he took him up to him into the chariot.</VERS>\r\n      <VERS vnumber=\"16\">And he said, Come with me, and see my zeal for the LORD. So they made him ride in his chariot.</VERS>\r\n      <VERS vnumber=\"17\">And when he came to Samaria, he slew all that remained unto Ahab in Samaria, till he had destroyed him, according to the saying of the LORD, which he spake to Elijah.</VERS>\r\n      <VERS vnumber=\"18\">And Jehu gathered all the people together, and said unto them, Ahab served Baal a little; but Jehu shall serve him much.</VERS>\r\n      <VERS vnumber=\"19\">Now therefore call unto me all the prophets of Baal, all his servants, and all his priests; let none be wanting: for I have a great sacrifice to do to Baal; whosoever shall be wanting, he shall not live. But Jehu did it in subtilty, to the intent that he might destroy the worshippers of Baal.</VERS>\r\n      <VERS vnumber=\"20\">And Jehu said, Proclaim a solemn assembly for Baal. And they proclaimed it.</VERS>\r\n      <VERS vnumber=\"21\">And Jehu sent through all Israel: and all the worshippers of Baal came, so that there was not a man left that came not. And they came into the house of Baal; and the house of Baal was full from one end to another.</VERS>\r\n      <VERS vnumber=\"22\">And he said unto him that was over the vestry, Bring forth vestments for all the worshippers of Baal. And he brought them forth vestments.</VERS>\r\n      <VERS vnumber=\"23\">And Jehu went, and Jehonadab the son of Rechab, into the house of Baal, and said unto the worshippers of Baal, Search, and look that there be here with you none of the servants of the LORD, but the worshippers of Baal only.</VERS>\r\n      <VERS vnumber=\"24\">And when they went in to offer sacrifices and burnt offerings, Jehu appointed fourscore men without, and said, If any of the men whom I have brought into your hands escape, he that letteth him go, his life shall be for the life of him.</VERS>\r\n      <VERS vnumber=\"25\">And it came to pass, as soon as he had made an end of offering the burnt offering, that Jehu said to the guard and to the captains, Go in, and slay them; let none come forth. And they smote them with the edge of the sword; and the guard and the captains cast them out, and went to the city of the house of Baal.</VERS>\r\n      <VERS vnumber=\"26\">And they brought forth the images out of the house of Baal, and burned them.</VERS>\r\n      <VERS vnumber=\"27\">And they brake down the image of Baal, and brake down the house of Baal, and made it a draught house unto this day.</VERS>\r\n      <VERS vnumber=\"28\">Thus Jehu destroyed Baal out of Israel.</VERS>\r\n      <VERS vnumber=\"29\">Howbeit from the sins of Jeroboam the son of Nebat, who made Israel to sin, Jehu departed not from after them, to wit, the golden calves that were in Bethel, and that were in Dan.</VERS>\r\n      <VERS vnumber=\"30\">And the LORD said unto Jehu, Because thou hast done well in executing that which is right in mine eyes, and hast done unto the house of Ahab according to all that was in mine heart, thy children of the fourth generation shall sit on the throne of Israel.</VERS>\r\n      <VERS vnumber=\"31\">But Jehu took no heed to walk in the law of the LORD God of Israel with all his heart: for he departed not from the sins of Jeroboam, which made Israel to sin.</VERS>\r\n      <VERS vnumber=\"32\">In those days the LORD began to cut Israel short: and Hazael smote them in all the coasts of Israel;</VERS>\r\n      <VERS vnumber=\"33\">From Jordan eastward, all the land of Gilead, the Gadites, and the Reubenites, and the Manassites, from Aroer, which is by the river Arnon, even Gilead and Bashan.</VERS>\r\n      <VERS vnumber=\"34\">Now the rest of the acts of Jehu, and all that he did, and all his might, are they not written in the book of the chronicles of the kings of Israel?</VERS>\r\n      <VERS vnumber=\"35\">And Jehu slept with his fathers: and they buried him in Samaria. And Jehoahaz his son reigned in his stead.</VERS>\r\n      <VERS vnumber=\"36\">And the time that Jehu reigned over Israel in Samaria was twenty and eight years.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">And when Athaliah the mother of Ahaziah saw that her son was dead, she arose and destroyed all the seed royal.</VERS>\r\n      <VERS vnumber=\"2\">But Jehosheba, the daughter of king Joram, sister of Ahaziah, took Joash the son of Ahaziah, and stole him from among the king's sons which were slain; and they hid him, even him and his nurse, in the bedchamber from Athaliah, so that he was not slain.</VERS>\r\n      <VERS vnumber=\"3\">And he was with her hid in the house of the LORD six years. And Athaliah did reign over the land.</VERS>\r\n      <VERS vnumber=\"4\">And the seventh year Jehoiada sent and fetched the rulers over hundreds, with the captains and the guard, and brought them to him into the house of the LORD, and made a covenant with them, and took an oath of them in the house of the LORD, and shewed them the king's son.</VERS>\r\n      <VERS vnumber=\"5\">And he commanded them, saying, This is the thing that ye shall do; A third part of you that enter in on the sabbath shall even be keepers of the watch of the king's house;</VERS>\r\n      <VERS vnumber=\"6\">And a third part shall be at the gate of Sur; and a third part at the gate behind the guard: so shall ye keep the watch of the house, that it be not broken down.</VERS>\r\n      <VERS vnumber=\"7\">And two parts of all you that go forth on the sabbath, even they shall keep the watch of the house of the LORD about the king.</VERS>\r\n      <VERS vnumber=\"8\">And ye shall compass the king round about, every man with his weapons in his hand: and he that cometh within the ranges, let him be slain: and be ye with the king as he goeth out and as he cometh in.</VERS>\r\n      <VERS vnumber=\"9\">And the captains over the hundreds did according to all things that Jehoiada the priest commanded: and they took every man his men that were to come in on the sabbath, with them that should go out on the sabbath, and came to Jehoiada the priest.</VERS>\r\n      <VERS vnumber=\"10\">And to the captains over hundreds did the priest give king David's spears and shields, that were in the temple of the LORD.</VERS>\r\n      <VERS vnumber=\"11\">And the guard stood, every man with his weapons in his hand, round about the king, from the right corner of the temple to the left corner of the temple, along by the altar and the temple.</VERS>\r\n      <VERS vnumber=\"12\">And he brought forth the king's son, and put the crown upon him, and gave him the testimony; and they made him king, and anointed him; and they clapped their hands, and said, God save the king.</VERS>\r\n      <VERS vnumber=\"13\">And when Athaliah heard the noise of the guard and of the people, she came to the people into the temple of the LORD.</VERS>\r\n      <VERS vnumber=\"14\">And when she looked, behold, the king stood by a pillar, as the manner was, and the princes and the trumpeters by the king, and all the people of the land rejoiced, and blew with trumpets: and Athaliah rent her clothes, and cried, Treason, Treason.</VERS>\r\n      <VERS vnumber=\"15\">But Jehoiada the priest commanded the captains of the hundreds, the officers of the host, and said unto them, Have her forth without the ranges: and him that followeth her kill with the sword. For the priest had said, Let her not be slain in the house of the LORD.</VERS>\r\n      <VERS vnumber=\"16\">And they laid hands on her; and she went by the way by the which the horses came into the king's house: and there was she slain.</VERS>\r\n      <VERS vnumber=\"17\">And Jehoiada made a covenant between the LORD and the king and the people, that they should be the LORD'S people; between the king also and the people.</VERS>\r\n      <VERS vnumber=\"18\">And all the people of the land went into the house of Baal, and brake it down; his altars and his images brake they in pieces thoroughly, and slew Mattan the priest of Baal before the altars. And the priest appointed officers over the house of the LORD.</VERS>\r\n      <VERS vnumber=\"19\">And he took the rulers over hundreds, and the captains, and the guard, and all the people of the land; and they brought down the king from the house of the LORD, and came by the way of the gate of the guard to the king's house. And he sat on the throne of the kings.</VERS>\r\n      <VERS vnumber=\"20\">And all the people of the land rejoiced, and the city was in quiet: and they slew Athaliah with the sword beside the king's house.</VERS>\r\n      <VERS vnumber=\"21\">Seven years old was Jehoash when he began to reign.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">In the seventh year of Jehu Jehoash began to reign; and forty years reigned he in Jerusalem. And his mother's name was Zibiah of Beersheba.</VERS>\r\n      <VERS vnumber=\"2\">And Jehoash did that which was right in the sight of the LORD all his days wherein Jehoiada the priest instructed him.</VERS>\r\n      <VERS vnumber=\"3\">But the high places were not taken away: the people still sacrificed and burnt incense in the high places.</VERS>\r\n      <VERS vnumber=\"4\">And Jehoash said to the priests, All the money of the dedicated things that is brought into the house of the LORD, even the money of every one that passeth the account, the money that every man is set at, and all the money that cometh into any man's heart to bring into the house of the LORD,</VERS>\r\n      <VERS vnumber=\"5\">Let the priests take it to them, every man of his acquaintance: and let them repair the breaches of the house, wheresoever any breach shall be found.</VERS>\r\n      <VERS vnumber=\"6\">But it was so, that in the three and twentieth year of king Jehoash the priests had not repaired the breaches of the house.</VERS>\r\n      <VERS vnumber=\"7\">Then king Jehoash called for Jehoiada the priest, and the other priests, and said unto them, Why repair ye not the breaches of the house? now therefore receive no more money of your acquaintance, but deliver it for the breaches of the house.</VERS>\r\n      <VERS vnumber=\"8\">And the priests consented to receive no more money of the people, neither to repair the breaches of the house.</VERS>\r\n      <VERS vnumber=\"9\">But Jehoiada the priest took a chest, and bored a hole in the lid of it, and set it beside the altar, on the right side as one cometh into the house of the LORD: and the priests that kept the door put therein all the money that was brought into the house of the LORD.</VERS>\r\n      <VERS vnumber=\"10\">And it was so, when they saw that there was much money in the chest, that the king's scribe and the high priest came up, and they put up in bags, and told the money that was found in the house of the LORD.</VERS>\r\n      <VERS vnumber=\"11\">And they gave the money, being told, into the hands of them that did the work, that had the oversight of the house of the LORD: and they laid it out to the carpenters and builders, that wrought upon the house of the LORD,</VERS>\r\n      <VERS vnumber=\"12\">And to masons, and hewers of stone, and to buy timber and hewed stone to repair the breaches of the house of the LORD, and for all that was laid out for the house to repair it.</VERS>\r\n      <VERS vnumber=\"13\">Howbeit there were not made for the house of the LORD bowls of silver, snuffers, basons, trumpets, any vessels of gold, or vessels of silver, of the money that was brought into the house of the LORD:</VERS>\r\n      <VERS vnumber=\"14\">But they gave that to the workmen, and repaired therewith the house of the LORD.</VERS>\r\n      <VERS vnumber=\"15\">Moreover they reckoned not with the men, into whose hand they delivered the money to be bestowed on workmen: for they dealt faithfully.</VERS>\r\n      <VERS vnumber=\"16\">The trespass money and sin money was not brought into the house of the LORD: it was the priests'.</VERS>\r\n      <VERS vnumber=\"17\">Then Hazael king of Syria went up, and fought against Gath, and took it: and Hazael set his face to go up to Jerusalem.</VERS>\r\n      <VERS vnumber=\"18\">And Jehoash king of Judah took all the hallowed things that Jehoshaphat, and Jehoram, and Ahaziah, his fathers, kings of Judah, had dedicated, and his own hallowed things, and all the gold that was found in the treasures of the house of the LORD, and in the king's house, and sent it to Hazael king of Syria: and he went away from Jerusalem.</VERS>\r\n      <VERS vnumber=\"19\">And the rest of the acts of Joash, and all that he did, are they not written in the book of the chronicles of the kings of Judah?</VERS>\r\n      <VERS vnumber=\"20\">And his servants arose, and made a conspiracy, and slew Joash in the house of Millo, which goeth down to Silla.</VERS>\r\n      <VERS vnumber=\"21\">For Jozachar the son of Shimeath, and Jehozabad the son of Shomer, his servants, smote him, and he died; and they buried him with his fathers in the city of David: and Amaziah his son reigned in his stead.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">In the three and twentieth year of Joash the son of Ahaziah king of Judah Jehoahaz the son of Jehu began to reign over Israel in Samaria, and reigned seventeen years.</VERS>\r\n      <VERS vnumber=\"2\">And he did that which was evil in the sight of the LORD, and followed the sins of Jeroboam the son of Nebat, which made Israel to sin; he departed not therefrom.</VERS>\r\n      <VERS vnumber=\"3\">And the anger of the LORD was kindled against Israel, and he delivered them into the hand of Hazael king of Syria, and into the hand of Benhadad the son of Hazael, all their days.</VERS>\r\n      <VERS vnumber=\"4\">And Jehoahaz besought the LORD, and the LORD hearkened unto him: for he saw the oppression of Israel, because the king of Syria oppressed them.</VERS>\r\n      <VERS vnumber=\"5\">(And the LORD gave Israel a saviour, so that they went out from under the hand of the Syrians: and the children of Israel dwelt in their tents, as beforetime.</VERS>\r\n      <VERS vnumber=\"6\">Nevertheless they departed not from the sins of the house of Jeroboam, who made Israel sin, but walked therein: and there remained the grove also in Samaria.)</VERS>\r\n      <VERS vnumber=\"7\">Neither did he leave of the people to Jehoahaz but fifty horsemen, and ten chariots, and ten thousand footmen; for the king of Syria had destroyed them, and had made them like the dust by threshing.</VERS>\r\n      <VERS vnumber=\"8\">Now the rest of the acts of Jehoahaz, and all that he did, and his might, are they not written in the book of the chronicles of the kings of Israel?</VERS>\r\n      <VERS vnumber=\"9\">And Jehoahaz slept with his fathers; and they buried him in Samaria: and Joash his son reigned in his stead.</VERS>\r\n      <VERS vnumber=\"10\">In the thirty and seventh year of Joash king of Judah began Jehoash the son of Jehoahaz to reign over Israel in Samaria, and reigned sixteen years.</VERS>\r\n      <VERS vnumber=\"11\">And he did that which was evil in the sight of the LORD; he departed not from all the sins of Jeroboam the son of Nebat, who made Israel sin: but he walked therein.</VERS>\r\n      <VERS vnumber=\"12\">And the rest of the acts of Joash, and all that he did, and his might wherewith he fought against Amaziah king of Judah, are they not written in the book of the chronicles of the kings of Israel?</VERS>\r\n      <VERS vnumber=\"13\">And Joash slept with his fathers; and Jeroboam sat upon his throne: and Joash was buried in Samaria with the kings of Israel.</VERS>\r\n      <VERS vnumber=\"14\">Now Elisha was fallen sick of his sickness whereof he died. And Joash the king of Israel came down unto him, and wept over his face, and said, O my father, my father, the chariot of Israel, and the horsemen thereof.</VERS>\r\n      <VERS vnumber=\"15\">And Elisha said unto him, Take bow and arrows. And he took unto him bow and arrows.</VERS>\r\n      <VERS vnumber=\"16\">And he said to the king of Israel, Put thine hand upon the bow. And he put his hand upon it: and Elisha put his hands upon the king's hands.</VERS>\r\n      <VERS vnumber=\"17\">And he said, Open the window eastward. And he opened it. Then Elisha said, Shoot. And he shot. And he said, The arrow of the LORD'S deliverance, and the arrow of deliverance from Syria: for thou shalt smite the Syrians in Aphek, till thou have consumed them.</VERS>\r\n      <VERS vnumber=\"18\">And he said, Take the arrows. And he took them. And he said unto the king of Israel, Smite upon the ground. And he smote thrice, and stayed.</VERS>\r\n      <VERS vnumber=\"19\">And the man of God was wroth with him, and said, Thou shouldest have smitten five or six times; then hadst thou smitten Syria till thou hadst consumed it: whereas now thou shalt smite Syria but thrice.</VERS>\r\n      <VERS vnumber=\"20\">And Elisha died, and they buried him. And the bands of the Moabites invaded the land at the coming in of the year.</VERS>\r\n      <VERS vnumber=\"21\">And it came to pass, as they were burying a man, that, behold, they spied a band of men; and they cast the man into the sepulchre of Elisha: and when the man was let down, and touched the bones of Elisha, he revived, and stood up on his feet.</VERS>\r\n      <VERS vnumber=\"22\">But Hazael king of Syria oppressed Israel all the days of Jehoahaz.</VERS>\r\n      <VERS vnumber=\"23\">And the LORD was gracious unto them, and had compassion on them, and had respect unto them, because of his covenant with Abraham, Isaac, and Jacob, and would not destroy them, neither cast he them from his presence as yet.</VERS>\r\n      <VERS vnumber=\"24\">So Hazael king of Syria died; and Benhadad his son reigned in his stead.</VERS>\r\n      <VERS vnumber=\"25\">And Jehoash the son of Jehoahaz took again out of the hand of Benhadad the son of Hazael the cities, which he had taken out of the hand of Jehoahaz his father by war. Three times did Joash beat him, and recovered the cities of Israel.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">In the second year of Joash son of Jehoahaz king of Israel reigned Amaziah the son of Joash king of Judah.</VERS>\r\n      <VERS vnumber=\"2\">He was twenty and five years old when he began to reign, and reigned twenty and nine years in Jerusalem. And his mother's name was Jehoaddan of Jerusalem.</VERS>\r\n      <VERS vnumber=\"3\">And he did that which was right in the sight of the LORD, yet not like David his father: he did according to all things as Joash his father did.</VERS>\r\n      <VERS vnumber=\"4\">Howbeit the high places were not taken away: as yet the people did sacrifice and burnt incense on the high places.</VERS>\r\n      <VERS vnumber=\"5\">And it came to pass, as soon as the kingdom was confirmed in his hand, that he slew his servants which had slain the king his father.</VERS>\r\n      <VERS vnumber=\"6\">But the children of the murderers he slew not: according unto that which is written in the book of the law of Moses, wherein the LORD commanded, saying, The fathers shall not be put to death for the children, nor the children be put to death for the fathers; but every man shall be put to death for his own sin.</VERS>\r\n      <VERS vnumber=\"7\">He slew of Edom in the valley of salt ten thousand, and took Selah by war, and called the name of it Joktheel unto this day.</VERS>\r\n      <VERS vnumber=\"8\">Then Amaziah sent messengers to Jehoash, the son of Jehoahaz son of Jehu, king of Israel, saying, Come, let us look one another in the face.</VERS>\r\n      <VERS vnumber=\"9\">And Jehoash the 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.</VERS>\r\n      <VERS vnumber=\"10\">Thou hast indeed smitten Edom, and thine heart hath lifted thee up: glory of this, and tarry at home: for why shouldest thou meddle to thy hurt, that thou shouldest fall, even thou, and Judah with thee?</VERS>\r\n      <VERS vnumber=\"11\">But Amaziah would not hear. Therefore Jehoash king of Israel went up; and he and Amaziah king of Judah looked one another in the face at Bethshemesh, which belongeth to Judah.</VERS>\r\n      <VERS vnumber=\"12\">And Judah was put to the worse before Israel; and they fled every man to their tents.</VERS>\r\n      <VERS vnumber=\"13\">And Jehoash king of Israel took Amaziah king of Judah, the son of Jehoash the son of Ahaziah, at Bethshemesh, and came to Jerusalem, and brake down the wall of Jerusalem from the gate of Ephraim unto the corner gate, four hundred cubits.</VERS>\r\n      <VERS vnumber=\"14\">And he took all the gold and silver, and all the vessels that were found in the house of the LORD, and in the treasures of the king's house, and hostages, and returned to Samaria.</VERS>\r\n      <VERS vnumber=\"15\">Now the rest of the acts of Jehoash which he did, and his might, and how he fought with Amaziah king of Judah, are they not written in the book of the chronicles of the kings of Israel?</VERS>\r\n      <VERS vnumber=\"16\">And Jehoash slept with his fathers, and was buried in Samaria with the kings of Israel; and Jeroboam his son reigned in his stead.</VERS>\r\n      <VERS vnumber=\"17\">And Amaziah the son of Joash king of Judah lived after the death of Jehoash son of Jehoahaz king of Israel fifteen years.</VERS>\r\n      <VERS vnumber=\"18\">And the rest of the acts of Amaziah, are they not written in the book of the chronicles of the kings of Judah?</VERS>\r\n      <VERS vnumber=\"19\">Now they made a conspiracy against him in Jerusalem: and he fled to Lachish; but they sent after him to Lachish, and slew him there.</VERS>\r\n      <VERS vnumber=\"20\">And they brought him on horses: and he was buried at Jerusalem with his fathers in the city of David.</VERS>\r\n      <VERS vnumber=\"21\">And all the people of Judah took Azariah, which was sixteen years old, and made him king instead of his father Amaziah.</VERS>\r\n      <VERS vnumber=\"22\">He built Elath, and restored it to Judah, after that the king slept with his fathers.</VERS>\r\n      <VERS vnumber=\"23\">In the fifteenth year of Amaziah the son of Joash king of Judah Jeroboam the son of Joash king of Israel began to reign in Samaria, and reigned forty and one years.</VERS>\r\n      <VERS vnumber=\"24\">And he did that which was evil in the sight of the LORD: he departed not from all the sins of Jeroboam the son of Nebat, who made Israel to sin.</VERS>\r\n      <VERS vnumber=\"25\">He restored the coast of Israel from the entering of Hamath unto the sea of the plain, according to the word of the LORD God of Israel, which he spake by the hand of his servant Jonah, the son of Amittai, the prophet, which was of Gathhepher.</VERS>\r\n      <VERS vnumber=\"26\">For the LORD saw the affliction of Israel, that it was very bitter: for there was not any shut up, nor any left, nor any helper for Israel.</VERS>\r\n      <VERS vnumber=\"27\">And the LORD said not that he would blot out the name of Israel from under heaven: but he saved them by the hand of Jeroboam the son of Joash.</VERS>\r\n      <VERS vnumber=\"28\">Now the rest of the acts of Jeroboam, and all that he did, and his might, how he warred, and how he recovered Damascus, and Hamath, which belonged to Judah, for Israel, are they not written in the book of the chronicles of the kings of Israel?</VERS>\r\n      <VERS vnumber=\"29\">And Jeroboam slept with his fathers, even with the kings of Israel; and Zachariah his son reigned in his stead.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">In the twenty and seventh year of Jeroboam king of Israel began Azariah son of Amaziah king of Judah to reign.</VERS>\r\n      <VERS vnumber=\"2\">Sixteen years old was he when he began to reign, and he reigned two and fifty years in Jerusalem. And his mother's name was Jecholiah of Jerusalem.</VERS>\r\n      <VERS vnumber=\"3\">And he did that which was right in the sight of the LORD, according to all that his father Amaziah had done;</VERS>\r\n      <VERS vnumber=\"4\">Save that the high places were not removed: the people sacrificed and burnt incense still on the high places.</VERS>\r\n      <VERS vnumber=\"5\">And the LORD smote the king, so that he was a leper unto the day of his death, and dwelt in a several house. And Jotham the king's son was over the house, judging the people of the land.</VERS>\r\n      <VERS vnumber=\"6\">And the rest of the acts of Azariah, and all that he did, are they not written in the book of the chronicles of the kings of Judah?</VERS>\r\n      <VERS vnumber=\"7\">So Azariah slept with his fathers; and they buried him with his fathers in the city of David: and Jotham his son reigned in his stead.</VERS>\r\n      <VERS vnumber=\"8\">In the thirty and eighth year of Azariah king of Judah did Zachariah the son of Jeroboam reign over Israel in Samaria six months.</VERS>\r\n      <VERS vnumber=\"9\">And he did that which was evil in the sight of the LORD, as his fathers had done: he departed not from the sins of Jeroboam the son of Nebat, who made Israel to sin.</VERS>\r\n      <VERS vnumber=\"10\">And Shallum the son of Jabesh conspired against him, and smote him before the people, and slew him, and reigned in his stead.</VERS>\r\n      <VERS vnumber=\"11\">And the rest of the acts of Zachariah, behold, they are written in the book of the chronicles of the kings of Israel.</VERS>\r\n      <VERS vnumber=\"12\">This was the word of the LORD which he spake unto Jehu, saying, Thy sons shall sit on the throne of Israel unto the fourth generation. And so it came to pass.</VERS>\r\n      <VERS vnumber=\"13\">Shallum the son of Jabesh began to reign in the nine and thirtieth year of Uzziah king of Judah; and he reigned a full month in Samaria.</VERS>\r\n      <VERS vnumber=\"14\">For Menahem the son of Gadi went up from Tirzah, and came to Samaria, and smote Shallum the son of Jabesh in Samaria, and slew him, and reigned in his stead.</VERS>\r\n      <VERS vnumber=\"15\">And the rest of the acts of Shallum, and his conspiracy which he made, behold, they are written in the book of the chronicles of the kings of Israel.</VERS>\r\n      <VERS vnumber=\"16\">Then Menahem smote Tiphsah, and all that were therein, and the coasts thereof from Tirzah: because they opened not to him, therefore he smote it; and all the women therein that were with child he ripped up.</VERS>\r\n      <VERS vnumber=\"17\">In the nine and thirtieth year of Azariah king of Judah began Menahem the son of Gadi to reign over Israel, and reigned ten years in Samaria.</VERS>\r\n      <VERS vnumber=\"18\">And he did that which was evil in the sight of the LORD: he departed not all his days from the sins of Jeroboam the son of Nebat, who made Israel to sin.</VERS>\r\n      <VERS vnumber=\"19\">And Pul the king of Assyria came against the land: and Menahem gave Pul a thousand talents of silver, that his hand might be with him to confirm the kingdom in his hand.</VERS>\r\n      <VERS vnumber=\"20\">And Menahem exacted the money of Israel, even of all the mighty men of wealth, of each man fifty shekels of silver, to give to the king of Assyria. So the king of Assyria turned back, and stayed not there in the land.</VERS>\r\n      <VERS vnumber=\"21\">And the rest of the acts of Menahem, and all that he did, are they not written in the book of the chronicles of the kings of Israel?</VERS>\r\n      <VERS vnumber=\"22\">And Menahem slept with his fathers; and Pekahiah his son reigned in his stead.</VERS>\r\n      <VERS vnumber=\"23\">In the fiftieth year of Azariah king of Judah Pekahiah the son of Menahem began to reign over Israel in Samaria, and reigned two years.</VERS>\r\n      <VERS vnumber=\"24\">And he did that which was evil in the sight of the LORD: he departed not from the sins of Jeroboam the son of Nebat, who made Israel to sin.</VERS>\r\n      <VERS vnumber=\"25\">But Pekah the son of Remaliah, a captain of his, conspired against him, and smote him in Samaria, in the palace of the king's house, with Argob and Arieh, and with him fifty men of the Gileadites: and he killed him, and reigned in his room.</VERS>\r\n      <VERS vnumber=\"26\">And the rest of the acts of Pekahiah, and all that he did, behold, they are written in the book of the chronicles of the kings of Israel.</VERS>\r\n      <VERS vnumber=\"27\">In the two and fiftieth year of Azariah king of Judah Pekah the son of Remaliah began to reign over Israel in Samaria, and reigned twenty years.</VERS>\r\n      <VERS vnumber=\"28\">And he did that which was evil in the sight of the LORD: he departed not from the sins of Jeroboam the son of Nebat, who made Israel to sin.</VERS>\r\n      <VERS vnumber=\"29\">In the days of Pekah king of Israel came Tiglathpileser king of Assyria, and took Ijon, and Abelbethmaachah, and Janoah, and Kedesh, and Hazor, and Gilead, and Galilee, all the land of Naphtali, and carried them captive to Assyria.</VERS>\r\n      <VERS vnumber=\"30\">And Hoshea the son of Elah made a conspiracy against Pekah the son of Remaliah, and smote him, and slew him, and reigned in his stead, in the twentieth year of Jotham the son of Uzziah.</VERS>\r\n      <VERS vnumber=\"31\">And the rest of the acts of Pekah, and all that he did, behold, they are written in the book of the chronicles of the kings of Israel.</VERS>\r\n      <VERS vnumber=\"32\">In the second year of Pekah the son of Remaliah king of Israel began Jotham the son of Uzziah king of Judah to reign.</VERS>\r\n      <VERS vnumber=\"33\">Five and twenty years old was he when he began to reign, and he reigned sixteen years in Jerusalem. And his mother's name was Jerusha, the daughter of Zadok.</VERS>\r\n      <VERS vnumber=\"34\">And he did that which was right in the sight of the LORD: he did according to all that his father Uzziah had done.</VERS>\r\n      <VERS vnumber=\"35\">Howbeit the high places were not removed: the people sacrificed and burned incense still in the high places. He built the higher gate of the house of the LORD.</VERS>\r\n      <VERS vnumber=\"36\">Now the rest of the acts of Jotham, and all that he did, are they not written in the book of the chronicles of the kings of Judah?</VERS>\r\n      <VERS vnumber=\"37\">In those days the LORD began to send against Judah Rezin the king of Syria, and Pekah the son of Remaliah.</VERS>\r\n      <VERS vnumber=\"38\">And Jotham slept with his fathers, and was buried with his fathers in the city of David his father: and Ahaz his son reigned in his stead.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">In the seventeenth year of Pekah the son of Remaliah Ahaz the son of Jotham king of Judah began to reign.</VERS>\r\n      <VERS vnumber=\"2\">Twenty years old was Ahaz when he began to reign, and reigned sixteen years in Jerusalem, and did not that which was right in the sight of the LORD his God, like David his father.</VERS>\r\n      <VERS vnumber=\"3\">But he walked in the way of the kings of Israel, yea, and made his son to pass through the fire, according to the abominations of the heathen, whom the LORD cast out from before the children of Israel.</VERS>\r\n      <VERS vnumber=\"4\">And he sacrificed and burnt incense in the high places, and on the hills, and under every green tree.</VERS>\r\n      <VERS vnumber=\"5\">Then Rezin king of Syria and Pekah son of Remaliah king of Israel came up to Jerusalem to war: and they besieged Ahaz, but could not overcome him.</VERS>\r\n      <VERS vnumber=\"6\">At that time Rezin king of Syria recovered Elath to Syria, and drave the Jews from Elath: and the Syrians came to Elath, and dwelt there unto this day.</VERS>\r\n      <VERS vnumber=\"7\">So Ahaz sent messengers to Tiglathpileser king of Assyria, saying, I am thy servant and thy son: come up, and save me out of the hand of the king of Syria, and out of the hand of the king of Israel, which rise up against me.</VERS>\r\n      <VERS vnumber=\"8\">And Ahaz took the silver and gold that was found in the house of the LORD, and in the treasures of the king's house, and sent it for a present to the king of Assyria.</VERS>\r\n      <VERS vnumber=\"9\">And the king of Assyria hearkened unto him: for the king of Assyria went up against Damascus, and took it, and carried the people of it captive to Kir, and slew Rezin.</VERS>\r\n      <VERS vnumber=\"10\">And king Ahaz went to Damascus to meet Tiglathpileser king of Assyria, and saw an altar that was at Damascus: and king Ahaz sent to Urijah the priest the fashion of the altar, and the pattern of it, according to all the workmanship thereof.</VERS>\r\n      <VERS vnumber=\"11\">And Urijah the priest built an altar according to all that king Ahaz had sent from Damascus: so Urijah the priest made it against king Ahaz came from Damascus.</VERS>\r\n      <VERS vnumber=\"12\">And when the king was come from Damascus, the king saw the altar: and the king approached to the altar, and offered thereon.</VERS>\r\n      <VERS vnumber=\"13\">And he burnt his burnt offering and his meat offering, and poured his drink offering, and sprinkled the blood of his peace offerings, upon the altar.</VERS>\r\n      <VERS vnumber=\"14\">And he brought also the brasen altar, which was before the LORD, from the forefront of the house, from between the altar and the house of the LORD, and put it on the north side of the altar.</VERS>\r\n      <VERS vnumber=\"15\">And king Ahaz commanded Urijah the priest, saying, Upon the great altar burn the morning burnt offering, and the evening meat offering, and the king's burnt sacrifice, and his meat offering, with the burnt offering of all the people of the land, and their meat offering, and their drink offerings; and sprinkle upon it all the blood of the burnt offering, and all the blood of the sacrifice: and the brasen altar shall be for me to enquire by.</VERS>\r\n      <VERS vnumber=\"16\">Thus did Urijah the priest, according to all that king Ahaz commanded.</VERS>\r\n      <VERS vnumber=\"17\">And king Ahaz cut off the borders of the bases, and removed the laver from off them; and took down the sea from off the brasen oxen that were under it, and put it upon a pavement of stones.</VERS>\r\n      <VERS vnumber=\"18\">And the covert for the sabbath that they had built in the house, and the king's entry without, turned he from the house of the LORD for the king of Assyria.</VERS>\r\n      <VERS vnumber=\"19\">Now the rest of the acts of Ahaz which he did, are they not written in the book of the chronicles of the kings of Judah?</VERS>\r\n      <VERS vnumber=\"20\">And Ahaz slept with his fathers, and was buried with his fathers in the city of David: and Hezekiah his son reigned in his stead.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"17\">\r\n      <VERS vnumber=\"1\">In the twelfth year of Ahaz king of Judah began Hoshea the son of Elah to reign in Samaria over Israel nine years.</VERS>\r\n      <VERS vnumber=\"2\">And he did that which was evil in the sight of the LORD, but not as the kings of Israel that were before him.</VERS>\r\n      <VERS vnumber=\"3\">Against him came up Shalmaneser king of Assyria; and Hoshea became his servant, and gave him presents.</VERS>\r\n      <VERS vnumber=\"4\">And the king of Assyria found conspiracy in Hoshea: for he had sent messengers to So king of Egypt, and brought no present to the king of Assyria, as he had done year by year: therefore the king of Assyria shut him up, and bound him in prison.</VERS>\r\n      <VERS vnumber=\"5\">Then the king of Assyria came up throughout all the land, and went up to Samaria, and besieged it three years.</VERS>\r\n      <VERS vnumber=\"6\">In the ninth year of Hoshea the king of Assyria took Samaria, and carried Israel away into Assyria, and placed them in Halah and in Habor by the river of Gozan, and in the cities of the Medes.</VERS>\r\n      <VERS vnumber=\"7\">For so it was, that the children of Israel had sinned against the LORD their God, which had brought them up out of the land of Egypt, from under the hand of Pharaoh king of Egypt, and had feared other gods,</VERS>\r\n      <VERS vnumber=\"8\">And walked in the statutes of the heathen, whom the LORD cast out from before the children of Israel, and of the kings of Israel, which they had made.</VERS>\r\n      <VERS vnumber=\"9\">And the children of Israel did secretly those things that were not right against the LORD their God, and they built them high places in all their cities, from the tower of the watchmen to the fenced city.</VERS>\r\n      <VERS vnumber=\"10\">And they set them up images and groves in every high hill, and under every green tree:</VERS>\r\n      <VERS vnumber=\"11\">And there they burnt incense in all the high places, as did the heathen whom the LORD carried away before them; and wrought wicked things to provoke the LORD to anger:</VERS>\r\n      <VERS vnumber=\"12\">For they served idols, whereof the LORD had said unto them, Ye shall not do this thing.</VERS>\r\n      <VERS vnumber=\"13\">Yet the LORD testified against Israel, and against Judah, by all the prophets, and by all the seers, saying, Turn ye from your evil ways, and keep my commandments and my statutes, according to all the law which I commanded your fathers, and which I sent to you by my servants the prophets.</VERS>\r\n      <VERS vnumber=\"14\">Notwithstanding they would not hear, but hardened their necks, like to the neck of their fathers, that did not believe in the LORD their God.</VERS>\r\n      <VERS vnumber=\"15\">And they rejected his statutes, and his covenant that he made with their fathers, and his testimonies which he testified against them; and they followed vanity, and became vain, and went after the heathen that were round about them, concerning whom the LORD had charged them, that they should not do like them.</VERS>\r\n      <VERS vnumber=\"16\">And they left all the commandments of the LORD their God, and made them molten images, even two calves, and made a grove, and worshipped all the host of heaven, and served Baal.</VERS>\r\n      <VERS vnumber=\"17\">And they caused their sons and their daughters to pass through the fire, and used divination and enchantments, and sold themselves to do evil in the sight of the LORD, to provoke him to anger.</VERS>\r\n      <VERS vnumber=\"18\">Therefore the LORD was very angry with Israel, and removed them out of his sight: there was none left but the tribe of Judah only.</VERS>\r\n      <VERS vnumber=\"19\">Also Judah kept not the commandments of the LORD their God, but walked in the statutes of Israel which they made.</VERS>\r\n      <VERS vnumber=\"20\">And the LORD rejected all the seed of Israel, and afflicted them, and delivered them into the hand of spoilers, until he had cast them out of his sight.</VERS>\r\n      <VERS vnumber=\"21\">For he rent Israel from the house of David; and they made Jeroboam the son of Nebat king: and Jeroboam drave Israel from following the LORD, and made them sin a great sin.</VERS>\r\n      <VERS vnumber=\"22\">For the children of Israel walked in all the sins of Jeroboam which he did; they departed not from them;</VERS>\r\n      <VERS vnumber=\"23\">Until the LORD removed Israel out of his sight, as he had said by all his servants the prophets. So was Israel carried away out of their own land to Assyria unto this day.</VERS>\r\n      <VERS vnumber=\"24\">And the king of Assyria brought men from Babylon, and from Cuthah, and from Ava, and from Hamath, and from Sepharvaim, and placed them in the cities of Samaria instead of the children of Israel: and they possessed Samaria, and dwelt in the cities thereof.</VERS>\r\n      <VERS vnumber=\"25\">And so it was at the beginning of their dwelling there, that they feared not the LORD: therefore the LORD sent lions among them, which slew some of them.</VERS>\r\n      <VERS vnumber=\"26\">Wherefore they spake to the king of Assyria, saying, The nations which thou hast removed, and placed in the cities of Samaria, know not the manner of the God of the land: therefore he hath sent lions among them, and, behold, they slay them, because they know not the manner of the God of the land.</VERS>\r\n      <VERS vnumber=\"27\">Then the king of Assyria commanded, saying, Carry thither one of the priests whom ye brought from thence; and let them go and dwell there, and let him teach them the manner of the God of the land.</VERS>\r\n      <VERS vnumber=\"28\">Then one of the priests whom they had carried away from Samaria came and dwelt in Bethel, and taught them how they should fear the LORD.</VERS>\r\n      <VERS vnumber=\"29\">Howbeit every nation made gods of their own, and put them in the houses of the high places which the Samaritans had made, every nation in their cities wherein they dwelt.</VERS>\r\n      <VERS vnumber=\"30\">And the men of Babylon made Succothbenoth, and the men of Cuth made Nergal, and the men of Hamath made Ashima,</VERS>\r\n      <VERS vnumber=\"31\">And the Avites made Nibhaz and Tartak, and the Sepharvites burnt their children in fire to Adrammelech and Anammelech, the gods of Sepharvaim.</VERS>\r\n      <VERS vnumber=\"32\">So they feared the LORD, and made unto themselves of the lowest of them priests of the high places, which sacrificed for them in the houses of the high places.</VERS>\r\n      <VERS vnumber=\"33\">They feared the LORD, and served their own gods, after the manner of the nations whom they carried away from thence.</VERS>\r\n      <VERS vnumber=\"34\">Unto this day they do after the former manners: they fear not the LORD, neither do they after their statutes, or after their ordinances, or after the law and commandment which the LORD commanded the children of Jacob, whom he named Israel;</VERS>\r\n      <VERS vnumber=\"35\">With whom the LORD had made a covenant, and charged them, saying, Ye shall not fear other gods, nor bow yourselves to them, nor serve them, nor sacrifice to them:</VERS>\r\n      <VERS vnumber=\"36\">But the LORD, who brought you up out of the land of Egypt with great power and a stretched out arm, him shall ye fear, and him shall ye worship, and to him shall ye do sacrifice.</VERS>\r\n      <VERS vnumber=\"37\">And the statutes, and the ordinances, and the law, and the commandment, which he wrote for you, ye shall observe to do for evermore; and ye shall not fear other gods.</VERS>\r\n      <VERS vnumber=\"38\">And the covenant that I have made with you ye shall not forget; neither shall ye fear other gods.</VERS>\r\n      <VERS vnumber=\"39\">But the LORD your God ye shall fear; and he shall deliver you out of the hand of all your enemies.</VERS>\r\n      <VERS vnumber=\"40\">Howbeit they did not hearken, but they did after their former manner.</VERS>\r\n      <VERS vnumber=\"41\">So these nations feared the LORD, and served their graven images, both their children, and their children's children: as did their fathers, so do they unto this day.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"18\">\r\n      <VERS vnumber=\"1\">Now it came to pass in the third year of Hoshea son of Elah king of Israel, that Hezekiah the son of Ahaz king of Judah began to reign.</VERS>\r\n      <VERS vnumber=\"2\">Twenty and five years old was he when he began to reign; and he reigned twenty and nine years in Jerusalem. His mother's name also was Abi, the daughter of Zachariah.</VERS>\r\n      <VERS vnumber=\"3\">And he did that which was right in the sight of the LORD, according to all that David his father did.</VERS>\r\n      <VERS vnumber=\"4\">He removed the high places, and brake the images, and cut down the groves, and brake in pieces the brasen serpent that Moses had made: for unto those days the children of Israel did burn incense to it: and he called it Nehushtan.</VERS>\r\n      <VERS vnumber=\"5\">He trusted in the LORD God of Israel; so that after him was none like him among all the kings of Judah, nor any that were before him.</VERS>\r\n      <VERS vnumber=\"6\">For he clave to the LORD, and departed not from following him, but kept his commandments, which the LORD commanded Moses.</VERS>\r\n      <VERS vnumber=\"7\">And the LORD was with him; and he prospered whithersoever he went forth: and he rebelled against the king of Assyria, and served him not.</VERS>\r\n      <VERS vnumber=\"8\">He smote the Philistines, even unto Gaza, and the borders thereof, from the tower of the watchmen to the fenced city.</VERS>\r\n      <VERS vnumber=\"9\">And it came to pass in the fourth year of king Hezekiah, which was the seventh year of Hoshea son of Elah king of Israel, that Shalmaneser king of Assyria came up against Samaria, and besieged it.</VERS>\r\n      <VERS vnumber=\"10\">And at the end of three years they took it: even in the sixth year of Hezekiah, that is the ninth year of Hoshea king of Israel, Samaria was taken.</VERS>\r\n      <VERS vnumber=\"11\">And the king of Assyria did carry away Israel unto Assyria, and put them in Halah and in Habor by the river of Gozan, and in the cities of the Medes:</VERS>\r\n      <VERS vnumber=\"12\">Because they obeyed not the voice of the LORD their God, but transgressed his covenant, and all that Moses the servant of the LORD commanded, and would not hear them, nor do them.</VERS>\r\n      <VERS vnumber=\"13\">Now in the fourteenth year of king Hezekiah did Sennacherib king of Assyria come up against all the fenced cities of Judah, and took them.</VERS>\r\n      <VERS vnumber=\"14\">And Hezekiah king of Judah sent to the king of Assyria to Lachish, saying, I have offended; return from me: that which thou puttest on me will I bear. And the king of Assyria appointed unto Hezekiah king of Judah three hundred talents of silver and thirty talents of gold.</VERS>\r\n      <VERS vnumber=\"15\">And Hezekiah gave him all the silver that was found in the house of the LORD, and in the treasures of the king's house.</VERS>\r\n      <VERS vnumber=\"16\">At that time did Hezekiah cut off the gold from the doors of the temple of the LORD, and from the pillars which Hezekiah king of Judah had overlaid, and gave it to the king of Assyria.</VERS>\r\n      <VERS vnumber=\"17\">And the king of Assyria sent Tartan and Rabsaris and Rabshakeh from Lachish to king Hezekiah with a great host against Jerusalem. And they went up and came to Jerusalem. And when they were come up, they came and stood by the conduit of the upper pool, which is in the highway of the fuller's field.</VERS>\r\n      <VERS vnumber=\"18\">And when they had called to the king, there came out to them Eliakim the son of Hilkiah, which was over the household, and Shebna the scribe, and Joah the son of Asaph the recorder.</VERS>\r\n      <VERS vnumber=\"19\">And Rabshakeh said unto them, Speak ye now to Hezekiah, Thus saith the great king, the king of Assyria, What confidence is this wherein thou trustest?</VERS>\r\n      <VERS vnumber=\"20\">Thou sayest, (but they are but vain words,) I have counsel and strength for the war. Now on whom dost thou trust, that thou rebellest against me?</VERS>\r\n      <VERS vnumber=\"21\">Now, behold, thou trustest upon the staff of this bruised reed, even upon Egypt, on which if a man lean, it will go into his hand, and pierce it: so is Pharaoh king of Egypt unto all that trust on him.</VERS>\r\n      <VERS vnumber=\"22\">But if ye say unto me, We trust in the LORD our God: is not that he, whose high places and whose altars Hezekiah hath taken away, and hath said to Judah and Jerusalem, Ye shall worship before this altar in Jerusalem?</VERS>\r\n      <VERS vnumber=\"23\">Now therefore, I pray thee, give pledges to my lord the king of Assyria, and I will deliver thee two thousand horses, if thou be able on thy part to set riders upon them.</VERS>\r\n      <VERS vnumber=\"24\">How 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?</VERS>\r\n      <VERS vnumber=\"25\">Am I now come up without the LORD against this place to destroy it? The LORD said to me, Go up against this land, and destroy it.</VERS>\r\n      <VERS vnumber=\"26\">Then said Eliakim the son of Hilkiah, and Shebna, and Joah, unto Rabshakeh, Speak, I pray thee, to thy servants in the Syrian language; for we understand it: and talk not with us in the Jews' language in the ears of the people that are on the wall.</VERS>\r\n      <VERS vnumber=\"27\">But Rabshakeh said unto them, Hath my master sent me to thy master, and to thee, to speak these words? hath he not sent me to the men which sit on the wall, that they may eat their own dung, and drink their own piss with you?</VERS>\r\n      <VERS vnumber=\"28\">Then Rabshakeh stood and cried with a loud voice in the Jews' language, and spake, saying, Hear the word of the great king, the king of Assyria:</VERS>\r\n      <VERS vnumber=\"29\">Thus saith the king, Let not Hezekiah deceive you: for he shall not be able to deliver you out of his hand:</VERS>\r\n      <VERS vnumber=\"30\">Neither let Hezekiah make you trust in the LORD, saying, The LORD will surely deliver us, and this city shall not be delivered into the hand of the king of Assyria.</VERS>\r\n      <VERS vnumber=\"31\">Hearken not to Hezekiah: for thus saith the king of Assyria, Make an agreement with me by a present, and come out to me, and then eat ye every man of his own vine, and every one of his fig tree, and drink ye every one the waters of his cistern:</VERS>\r\n      <VERS vnumber=\"32\">Until 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, a land of oil olive and of honey, that ye may live, and not die: and hearken not unto Hezekiah, when he persuadeth you, saying, The LORD will deliver us.</VERS>\r\n      <VERS vnumber=\"33\">Hath any of the gods of the nations delivered at all his land out of the hand of the king of Assyria?</VERS>\r\n      <VERS vnumber=\"34\">Where are the gods of Hamath, and of Arpad? where are the gods of Sepharvaim, Hena, and Ivah? have they delivered Samaria out of mine hand?</VERS>\r\n      <VERS vnumber=\"35\">Who are they among all the gods of the countries, that have delivered their country out of mine hand, that the LORD should deliver Jerusalem out of mine hand?</VERS>\r\n      <VERS vnumber=\"36\">But the people held their peace, and answered him not a word: for the king's commandment was, saying, Answer him not.</VERS>\r\n      <VERS vnumber=\"37\">Then came Eliakim the son of Hilkiah, which 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"19\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And he sent Eliakim, which was over the household, and Shebna the scribe, and the elders of the priests, covered with sackcloth, to Isaiah the prophet the son of Amoz.</VERS>\r\n      <VERS vnumber=\"3\">And they said unto him, Thus saith Hezekiah, This day is a day of trouble, and of rebuke, and blasphemy: for the children are come to the birth, and there is not strength to bring forth.</VERS>\r\n      <VERS vnumber=\"4\">It may be the LORD thy God will hear all 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 are left.</VERS>\r\n      <VERS vnumber=\"5\">So the servants of king Hezekiah came to Isaiah.</VERS>\r\n      <VERS vnumber=\"6\">And Isaiah said unto them, Thus shall ye say to your master, Thus saith the LORD, Be not afraid of the words which thou hast heard, with which the servants of the king of Assyria have blasphemed me.</VERS>\r\n      <VERS vnumber=\"7\">Behold, I will send a blast upon him, and he shall hear a rumour, and shall return to his own land; and I will cause him to fall by the sword in his own land.</VERS>\r\n      <VERS vnumber=\"8\">So Rabshakeh returned, and found the king of Assyria warring against Libnah: for he had heard that he was departed from Lachish.</VERS>\r\n      <VERS vnumber=\"9\">And when he heard say of Tirhakah king of Ethiopia, Behold, he is come out to fight against thee: he sent messengers again unto Hezekiah, saying,</VERS>\r\n      <VERS vnumber=\"10\">Thus shall ye speak to Hezekiah king of Judah, saying, Let not thy God in whom thou trustest deceive thee, saying, Jerusalem shall not be delivered into the hand of the king of Assyria.</VERS>\r\n      <VERS vnumber=\"11\">Behold, thou hast heard what the kings of Assyria have done to all lands, by destroying them utterly: and shalt thou be delivered?</VERS>\r\n      <VERS vnumber=\"12\">Have 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 Thelasar?</VERS>\r\n      <VERS vnumber=\"13\">Where is the king of Hamath, and the king of Arpad, and the king of the city of Sepharvaim, of Hena, and Ivah?</VERS>\r\n      <VERS vnumber=\"14\">And Hezekiah received the letter of the hand of the messengers, and read it: and Hezekiah went up into the house of the LORD, and spread it before the LORD.</VERS>\r\n      <VERS vnumber=\"15\">And Hezekiah prayed before the LORD, and said, O LORD God of Israel, which dwellest between the cherubims, thou art the God, even thou alone, of all the kingdoms of the earth; thou hast made heaven and earth.</VERS>\r\n      <VERS vnumber=\"16\">LORD, bow down thine ear, and hear: open, LORD, thine eyes, and see: and hear the words of Sennacherib, which hath sent him to reproach the living God.</VERS>\r\n      <VERS vnumber=\"17\">Of a truth, LORD, the kings of Assyria have destroyed the nations and their lands,</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">Now therefore, O LORD our God, I beseech thee, save thou us out of his hand, that all the kingdoms of the earth may know that thou art the LORD God, even thou only.</VERS>\r\n      <VERS vnumber=\"20\">Then Isaiah the son of Amoz sent to Hezekiah, saying, Thus saith the LORD God of Israel, That which thou hast prayed to me against Sennacherib king of Assyria I have heard.</VERS>\r\n      <VERS vnumber=\"21\">This is the word that 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.</VERS>\r\n      <VERS vnumber=\"22\">Whom 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.</VERS>\r\n      <VERS vnumber=\"23\">By thy messengers thou hast reproached the Lord, and hast said, With the multitude of my chariots I am come up to the height of the mountains, to the sides of Lebanon, and will cut down the tall cedar trees thereof, and the choice fir trees thereof: and I will enter into the lodgings of his borders, and into the forest of his Carmel.</VERS>\r\n      <VERS vnumber=\"24\">I have digged and drunk strange waters, and with the sole of my feet have I dried up all the rivers of besieged places.</VERS>\r\n      <VERS vnumber=\"25\">Hast 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 fenced cities into ruinous heaps.</VERS>\r\n      <VERS vnumber=\"26\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"27\">But I know thy abode, and thy going out, and thy coming in, and thy rage against me.</VERS>\r\n      <VERS vnumber=\"28\">Because thy rage against me and thy tumult is come up into mine ears, therefore I will 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.</VERS>\r\n      <VERS vnumber=\"29\">And this shall be a sign unto thee, Ye shall eat this year such things as grow of themselves, and in the second year that which springeth of the same; and in the third year sow ye, and reap, and plant vineyards, and eat the fruits thereof.</VERS>\r\n      <VERS vnumber=\"30\">And the remnant that is escaped of the house of Judah shall yet again take root downward, and bear fruit upward.</VERS>\r\n      <VERS vnumber=\"31\">For 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.</VERS>\r\n      <VERS vnumber=\"32\">Therefore 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 shield, nor cast a bank against it.</VERS>\r\n      <VERS vnumber=\"33\">By the way that he came, by the same shall he return, and shall not come into this city, saith the LORD.</VERS>\r\n      <VERS vnumber=\"34\">For I will defend this city, to save it, for mine own sake, and for my servant David's sake.</VERS>\r\n      <VERS vnumber=\"35\">And it came to pass that night, that the angel of the LORD went out, and smote in the camp of the Assyrians an hundred fourscore and five thousand: and when they arose early in the morning, behold, they were all dead corpses.</VERS>\r\n      <VERS vnumber=\"36\">So Sennacherib king of Assyria departed, and went and returned, and dwelt at Nineveh.</VERS>\r\n      <VERS vnumber=\"37\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"20\">\r\n      <VERS vnumber=\"1\">In those days was Hezekiah sick unto death. And the prophet Isaiah the son of Amoz came to him, and said unto him, Thus saith the LORD, Set thine house in order; for thou shalt die, and not live.</VERS>\r\n      <VERS vnumber=\"2\">Then he turned his face to the wall, and prayed unto the LORD, saying,</VERS>\r\n      <VERS vnumber=\"3\">I beseech thee, O LORD, remember now 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.</VERS>\r\n      <VERS vnumber=\"4\">And it came to pass, afore Isaiah was gone out into the middle court, that the word of the LORD came to him, saying,</VERS>\r\n      <VERS vnumber=\"5\">Turn again, and tell Hezekiah the captain of my people, Thus saith the LORD, the God of David thy father, I have heard thy prayer, I have seen thy tears: behold, I will heal thee: on the third day thou shalt go up unto the house of the LORD.</VERS>\r\n      <VERS vnumber=\"6\">And I will add unto thy days fifteen years; and I will deliver thee and this city out of the hand of the king of Assyria; and I will defend this city for mine own sake, and for my servant David's sake.</VERS>\r\n      <VERS vnumber=\"7\">And Isaiah said, Take a lump of figs. And they took and laid it on the boil, and he recovered.</VERS>\r\n      <VERS vnumber=\"8\">And Hezekiah said unto Isaiah, What shall be the sign that the LORD will heal me, and that I shall go up into the house of the LORD the third day?</VERS>\r\n      <VERS vnumber=\"9\">And Isaiah said, This sign shalt thou have of the LORD, that the LORD will do the thing that he hath spoken: shall the shadow go forward ten degrees, or go back ten degrees?</VERS>\r\n      <VERS vnumber=\"10\">And Hezekiah answered, It is a light thing for the shadow to go down ten degrees: nay, but let the shadow return backward ten degrees.</VERS>\r\n      <VERS vnumber=\"11\">And Isaiah the prophet cried unto the LORD: and he brought the shadow ten degrees backward, by which it had gone down in the dial of Ahaz.</VERS>\r\n      <VERS vnumber=\"12\">At that time Berodachbaladan, the son of Baladan, king of Babylon, sent letters and a present unto Hezekiah: for he had heard that Hezekiah had been sick.</VERS>\r\n      <VERS vnumber=\"13\">And Hezekiah hearkened unto them, and shewed them all 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.</VERS>\r\n      <VERS vnumber=\"14\">Then 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, even from Babylon.</VERS>\r\n      <VERS vnumber=\"15\">And he said, What have they seen in thine house? And Hezekiah answered, All the things that are in mine house have they seen: there is nothing among my treasures that I have not shewed them.</VERS>\r\n      <VERS vnumber=\"16\">And Isaiah said unto Hezekiah, Hear the word of the LORD.</VERS>\r\n      <VERS vnumber=\"17\">Behold, the days come, that all that is in thine house, and that which thy fathers have laid up in store unto this day, shall be carried into Babylon: nothing shall be left, saith the LORD.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">Then said Hezekiah unto Isaiah, Good is the word of the LORD which thou hast spoken. And he said, Is it not good, if peace and truth be in my days?</VERS>\r\n      <VERS vnumber=\"20\">And the rest of the acts of Hezekiah, and all his might, and how he made a pool, and a conduit, and brought water into the city, are they not written in the book of the chronicles of the kings of Judah?</VERS>\r\n      <VERS vnumber=\"21\">And Hezekiah slept with his fathers: and Manasseh his son reigned in his stead.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"21\">\r\n      <VERS vnumber=\"1\">Manasseh was twelve years old when he began to reign, and reigned fifty and five years in Jerusalem. And his mother's name was Hephzibah.</VERS>\r\n      <VERS vnumber=\"2\">And he did that which was evil in the sight of the LORD, after the abominations of the heathen, whom the LORD cast out before the children of Israel.</VERS>\r\n      <VERS vnumber=\"3\">For he built up again the high places which Hezekiah his father had destroyed; and he reared up altars for Baal, and made a grove, as did Ahab king of Israel; and worshipped all the host of heaven, and served them.</VERS>\r\n      <VERS vnumber=\"4\">And he built altars in the house of the LORD, of which the LORD said, In Jerusalem will I put my name.</VERS>\r\n      <VERS vnumber=\"5\">And he built altars for all the host of heaven in the two courts of the house of the LORD.</VERS>\r\n      <VERS vnumber=\"6\">And he made his son pass through the fire, and observed times, and used enchantments, and dealt with familiar spirits and wizards: he wrought much wickedness in the sight of the LORD, to provoke him to anger.</VERS>\r\n      <VERS vnumber=\"7\">And he set a graven image of the grove that he had made in the house, of which the LORD said to David, and to Solomon his son, In this house, and in Jerusalem, which I have chosen out of all tribes of Israel, will I put my name for ever:</VERS>\r\n      <VERS vnumber=\"8\">Neither will I make the feet of Israel move any more out of the land which I gave their fathers; only if they will observe to do according to all that I have commanded them, and according to all the law that my servant Moses commanded them.</VERS>\r\n      <VERS vnumber=\"9\">But they hearkened not: and Manasseh seduced them to do more evil than did the nations whom the LORD destroyed before the children of Israel.</VERS>\r\n      <VERS vnumber=\"10\">And the LORD spake by his servants the prophets, saying,</VERS>\r\n      <VERS vnumber=\"11\">Because Manasseh king of Judah hath done these abominations, and hath done wickedly above all that the Amorites did, which were before him, and hath made Judah also to sin with his idols:</VERS>\r\n      <VERS vnumber=\"12\">Therefore thus saith the LORD God of Israel, Behold, I am bringing such evil upon Jerusalem and Judah, that whosoever heareth of it, both his ears shall tingle.</VERS>\r\n      <VERS vnumber=\"13\">And I will stretch over Jerusalem the line of Samaria, and the plummet of the house of Ahab: and I will wipe Jerusalem as a man wipeth a dish, wiping it, and turning it upside down.</VERS>\r\n      <VERS vnumber=\"14\">And I will forsake the remnant of mine inheritance, and deliver them into the hand of their enemies; and they shall become a prey and a spoil to all their enemies;</VERS>\r\n      <VERS vnumber=\"15\">Because they have done that which was evil in my sight, and have provoked me to anger, since the day their fathers came forth out of Egypt, even unto this day.</VERS>\r\n      <VERS vnumber=\"16\">Moreover Manasseh shed innocent blood very much, till he had filled Jerusalem from one end to another; beside his sin wherewith he made Judah to sin, in doing that which was evil in the sight of the LORD.</VERS>\r\n      <VERS vnumber=\"17\">Now the rest of the acts of Manasseh, and all that he did, and his sin that he sinned, are they not written in the book of the chronicles of the kings of Judah?</VERS>\r\n      <VERS vnumber=\"18\">And Manasseh slept with his fathers, and was buried in the garden of his own house, in the garden of Uzza: and Amon his son reigned in his stead.</VERS>\r\n      <VERS vnumber=\"19\">Amon was twenty and two years old when he began to reign, and he reigned two years in Jerusalem. And his mother's name was Meshullemeth, the daughter of Haruz of Jotbah.</VERS>\r\n      <VERS vnumber=\"20\">And he did that which was evil in the sight of the LORD, as his father Manasseh did.</VERS>\r\n      <VERS vnumber=\"21\">And he walked in all the way that his father walked in, and served the idols that his father served, and worshipped them:</VERS>\r\n      <VERS vnumber=\"22\">And he forsook the LORD God of his fathers, and walked not in the way of the LORD.</VERS>\r\n      <VERS vnumber=\"23\">And the servants of Amon conspired against him, and slew the king in his own house.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">Now the rest of the acts of Amon which he did, are they not written in the book of the chronicles of the kings of Judah?</VERS>\r\n      <VERS vnumber=\"26\">And he was buried in his sepulchre in the garden of Uzza: and Josiah his son reigned in his stead.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"22\">\r\n      <VERS vnumber=\"1\">Josiah was eight years old when he began to reign, and he reigned thirty and one years in Jerusalem. And his mother's name was Jedidah, the daughter of Adaiah of Boscath.</VERS>\r\n      <VERS vnumber=\"2\">And he did that which was right in the sight of the LORD, and walked in all the way of David his father, and turned not aside to the right hand or to the left.</VERS>\r\n      <VERS vnumber=\"3\">And it came to pass in the eighteenth year of king Josiah, that the king sent Shaphan the son of Azaliah, the son of Meshullam, the scribe, to the house of the LORD, saying,</VERS>\r\n      <VERS vnumber=\"4\">Go up to Hilkiah the high priest, that he may sum the silver which is brought into the house of the LORD, which the keepers of the door have gathered of the people:</VERS>\r\n      <VERS vnumber=\"5\">And let them deliver it into the hand of the doers of the work, that have the oversight of the house of the LORD: and let them give it to the doers of the work which is in the house of the LORD, to repair the breaches of the house,</VERS>\r\n      <VERS vnumber=\"6\">Unto carpenters, and builders, and masons, and to buy timber and hewn stone to repair the house.</VERS>\r\n      <VERS vnumber=\"7\">Howbeit there was no reckoning made with them of the money that was delivered into their hand, because they dealt faithfully.</VERS>\r\n      <VERS vnumber=\"8\">And Hilkiah the high priest said unto Shaphan the scribe, I have found the book of the law in the house of the LORD. And Hilkiah gave the book to Shaphan, and he read it.</VERS>\r\n      <VERS vnumber=\"9\">And Shaphan the scribe came to the king, and brought the king word again, and said, Thy servants have gathered the money that was found in the house, and have delivered it into the hand of them that do the work, that have the oversight of the house of the LORD.</VERS>\r\n      <VERS vnumber=\"10\">And Shaphan the scribe shewed the king, saying, Hilkiah the priest hath delivered me a book. And Shaphan read it before the king.</VERS>\r\n      <VERS vnumber=\"11\">And it came to pass, when the king had heard the words of the book of the law, that he rent his clothes.</VERS>\r\n      <VERS vnumber=\"12\">And the king commanded Hilkiah the priest, and Ahikam the son of Shaphan, and Achbor the son of Michaiah, and Shaphan the scribe, and Asahiah a servant of the king's, saying,</VERS>\r\n      <VERS vnumber=\"13\">Go ye, enquire of the LORD for me, and for the people, and for all Judah, concerning the words of this book that is found: for great is the wrath of the LORD that is kindled against us, because our fathers have not hearkened unto the words of this book, to do according unto all that which is written concerning us.</VERS>\r\n      <VERS vnumber=\"14\">So Hilkiah the priest, and Ahikam, and Achbor, and Shaphan, and Asahiah, went unto Huldah the prophetess, the wife of Shallum the son of Tikvah, the son of Harhas, keeper of the wardrobe; (now she dwelt in Jerusalem in the college;) and they communed with her.</VERS>\r\n      <VERS vnumber=\"15\">And she said unto them, Thus saith the LORD God of Israel, Tell the man that sent you to me,</VERS>\r\n      <VERS vnumber=\"16\">Thus saith the LORD, Behold, I will bring evil upon this place, and upon the inhabitants thereof, even all the words of the book which the king of Judah hath read:</VERS>\r\n      <VERS vnumber=\"17\">Because 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 kindled against this place, and shall not be quenched.</VERS>\r\n      <VERS vnumber=\"18\">But to the king of Judah which sent you to enquire of the LORD, thus shall ye say to him, Thus saith the LORD God of Israel, As touching the words which thou hast heard;</VERS>\r\n      <VERS vnumber=\"19\">Because thine heart was tender, and thou hast humbled thyself before the LORD, when thou heardest what I spake against this place, and against the inhabitants thereof, that they should become a desolation and a curse, and hast rent thy clothes, and wept before me; I also have heard thee, saith the LORD.</VERS>\r\n      <VERS vnumber=\"20\">Behold therefore, I will gather thee unto thy fathers, and thou shalt be gathered into thy grave in peace; and thine eyes shall not see all the evil which I will bring upon this place. And they brought the king word again.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"23\">\r\n      <VERS vnumber=\"1\">And the king sent, and they gathered unto him all the elders of Judah and of Jerusalem.</VERS>\r\n      <VERS vnumber=\"2\">And the king went up into the house of the LORD, and all the men of Judah and all the inhabitants of Jerusalem with him, and the priests, and the prophets, and all the people, both small and great: and he read in their ears all the words of the book of the covenant which was found in the house of the LORD.</VERS>\r\n      <VERS vnumber=\"3\">And the king stood by a pillar, 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 their heart and all their soul, to perform the words of this covenant that were written in this book. And all the people stood to the covenant.</VERS>\r\n      <VERS vnumber=\"4\">And the king commanded Hilkiah the high priest, and the priests of the second order, and the keepers of the door, to bring forth out of the temple of the LORD all the vessels that were made for Baal, and for the grove, and for all the host of heaven: and he burned them without Jerusalem in the fields of Kidron, and carried the ashes of them unto Bethel.</VERS>\r\n      <VERS vnumber=\"5\">And he put down the idolatrous priests, whom the kings of Judah had ordained to burn incense in the high places in the cities of Judah, and in the places round about Jerusalem; them also that burned incense unto Baal, to the sun, and to the moon, and to the planets, and to all the host of heaven.</VERS>\r\n      <VERS vnumber=\"6\">And he brought out the grove from the house of the LORD, without Jerusalem, unto the brook Kidron, and burned it at the brook Kidron, and stamped it small to powder, and cast the powder thereof upon the graves of the children of the people.</VERS>\r\n      <VERS vnumber=\"7\">And he brake down the houses of the sodomites, that were by the house of the LORD, where the women wove hangings for the grove.</VERS>\r\n      <VERS vnumber=\"8\">And he brought all the priests out of the cities of Judah, and defiled the high places where the priests had burned incense, from Geba to Beersheba, and brake down the high places of the gates that were in the entering in of the gate of Joshua the governor of the city, which were on a man's left hand at the gate of the city.</VERS>\r\n      <VERS vnumber=\"9\">Nevertheless the priests of the high places came not up to the altar of the LORD in Jerusalem, but they did eat of the unleavened bread among their brethren.</VERS>\r\n      <VERS vnumber=\"10\">And he defiled Topheth, which is in the valley of the children of Hinnom, that no man might make his son or his daughter to pass through the fire to Molech.</VERS>\r\n      <VERS vnumber=\"11\">And he took away the horses that the kings of Judah had given to the sun, at the entering in of the house of the LORD, by the chamber of Nathanmelech the chamberlain, which was in the suburbs, and burned the chariots of the sun with fire.</VERS>\r\n      <VERS vnumber=\"12\">And the altars that were on the top of the upper chamber of Ahaz, which the kings of Judah had made, and the altars which Manasseh had made in the two courts of the house of the LORD, did the king beat down, and brake them down from thence, and cast the dust of them into the brook Kidron.</VERS>\r\n      <VERS vnumber=\"13\">And the high places that were before Jerusalem, which were on the right hand of the mount of corruption, which Solomon the king of Israel had builded for Ashtoreth the abomination of the Zidonians, and for Chemosh the abomination of the Moabites, and for Milcom the abomination of the children of Ammon, did the king defile.</VERS>\r\n      <VERS vnumber=\"14\">And he brake in pieces the images, and cut down the groves, and filled their places with the bones of men.</VERS>\r\n      <VERS vnumber=\"15\">Moreover the altar that was at Bethel, and the high place which Jeroboam the son of Nebat, who made Israel to sin, had made, both that altar and the high place he brake down, and burned the high place, and stamped it small to powder, and burned the grove.</VERS>\r\n      <VERS vnumber=\"16\">And as Josiah turned himself, he spied the sepulchres that were there in the mount, and sent, and took the bones out of the sepulchres, and burned them upon the altar, and polluted it, according to the word of the LORD which the man of God proclaimed, who proclaimed these words.</VERS>\r\n      <VERS vnumber=\"17\">Then he said, What title is that that I see? And the men of the city told him, It is the sepulchre of the man of God, which came from Judah, and proclaimed these things that thou hast done against the altar of Bethel.</VERS>\r\n      <VERS vnumber=\"18\">And he said, Let him alone; let no man move his bones. So they let his bones alone, with the bones of the prophet that came out of Samaria.</VERS>\r\n      <VERS vnumber=\"19\">And all the houses also of the high places that were in the cities of Samaria, which the kings of Israel had made to provoke the LORD to anger, Josiah took away, and did to them according to all the acts that he had done in Bethel.</VERS>\r\n      <VERS vnumber=\"20\">And he slew all the priests of the high places that were there upon the altars, and burned men's bones upon them, and returned to Jerusalem.</VERS>\r\n      <VERS vnumber=\"21\">And the king commanded all the people, saying, Keep the passover unto the LORD your God, as it is written in the book of this covenant.</VERS>\r\n      <VERS vnumber=\"22\">Surely there was not holden such a passover from the days of the judges that judged Israel, nor in all the days of the kings of Israel, nor of the kings of Judah;</VERS>\r\n      <VERS vnumber=\"23\">But in the eighteenth year of king Josiah, wherein this passover was holden to the LORD in Jerusalem.</VERS>\r\n      <VERS vnumber=\"24\">Moreover the workers with familiar spirits, and the wizards, and the images, and the idols, and all the abominations that were spied in the land of Judah and in Jerusalem, did Josiah put away, that he might perform the words of the law which were written in the book that Hilkiah the priest found in the house of the LORD.</VERS>\r\n      <VERS vnumber=\"25\">And like unto him was there no king before him, that turned to the LORD with all his heart, and with all his soul, and with all his might, according to all the law of Moses; neither after him arose there any like him.</VERS>\r\n      <VERS vnumber=\"26\">Notwithstanding the LORD turned not from the fierceness of his great wrath, wherewith his anger was kindled against Judah, because of all the provocations that Manasseh had provoked him withal.</VERS>\r\n      <VERS vnumber=\"27\">And the LORD said, I will remove Judah also out of my sight, as I have removed Israel, and will cast off this city Jerusalem which I have chosen, and the house of which I said, My name shall be there.</VERS>\r\n      <VERS vnumber=\"28\">Now the rest of the acts of Josiah, and all that he did, are they not written in the book of the chronicles of the kings of Judah?</VERS>\r\n      <VERS vnumber=\"29\">In his days Pharaohnechoh king of Egypt went up against the king of Assyria to the river Euphrates: and king Josiah went against him; and he slew him at Megiddo, when he had seen him.</VERS>\r\n      <VERS vnumber=\"30\">And his servants carried him in a chariot dead from Megiddo, and brought him to Jerusalem, and buried him in his own sepulchre. And the people of the land took Jehoahaz the son of Josiah, and anointed him, and made him king in his father's stead.</VERS>\r\n      <VERS vnumber=\"31\">Jehoahaz was twenty and three years old when he began to reign; and he reigned three months in Jerusalem. And his mother's name was Hamutal, the daughter of Jeremiah of Libnah.</VERS>\r\n      <VERS vnumber=\"32\">And he did that which was evil in the sight of the LORD, according to all that his fathers had done.</VERS>\r\n      <VERS vnumber=\"33\">And Pharaohnechoh put him in bands at Riblah in the land of Hamath, that he might not reign in Jerusalem; and put the land to a tribute of an hundred talents of silver, and a talent of gold.</VERS>\r\n      <VERS vnumber=\"34\">And Pharaohnechoh made Eliakim the son of Josiah king in the room of Josiah his father, and turned his name to Jehoiakim, and took Jehoahaz away: and he came to Egypt, and died there.</VERS>\r\n      <VERS vnumber=\"35\">And Jehoiakim gave the silver and the gold to Pharaoh; but he taxed the land to give the money according to the commandment of Pharaoh: he exacted the silver and the gold of the people of the land, of every one according to his taxation, to give it unto Pharaohnechoh.</VERS>\r\n      <VERS vnumber=\"36\">Jehoiakim was twenty and five years old when he began to reign; and he reigned eleven years in Jerusalem. And his mother's name was Zebudah, the daughter of Pedaiah of Rumah.</VERS>\r\n      <VERS vnumber=\"37\">And he did that which was evil in the sight of the LORD, according to all that his fathers had done.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"24\">\r\n      <VERS vnumber=\"1\">In his days Nebuchadnezzar king of Babylon came up, and Jehoiakim became his servant three years: then he turned and rebelled against him.</VERS>\r\n      <VERS vnumber=\"2\">And the LORD sent against him bands of the Chaldees, and bands of the Syrians, and bands of the Moabites, and bands of the children of Ammon, and sent them against Judah to destroy it, according to the word of the LORD, which he spake by his servants the prophets.</VERS>\r\n      <VERS vnumber=\"3\">Surely at the commandment of the LORD came this upon Judah, to remove them out of his sight, for the sins of Manasseh, according to all that he did;</VERS>\r\n      <VERS vnumber=\"4\">And also for the innocent blood that he shed: for he filled Jerusalem with innocent blood; which the LORD would not pardon.</VERS>\r\n      <VERS vnumber=\"5\">Now the rest of the acts of Jehoiakim, and all that he did, are they not written in the book of the chronicles of the kings of Judah?</VERS>\r\n      <VERS vnumber=\"6\">So Jehoiakim slept with his fathers: and Jehoiachin his son reigned in his stead.</VERS>\r\n      <VERS vnumber=\"7\">And the king of Egypt came not again any more out of his land: for the king of Babylon had taken from the river of Egypt unto the river Euphrates all that pertained to the king of Egypt.</VERS>\r\n      <VERS vnumber=\"8\">Jehoiachin was eighteen years old when he began to reign, and he reigned in Jerusalem three months. And his mother's name was Nehushta, the daughter of Elnathan of Jerusalem.</VERS>\r\n      <VERS vnumber=\"9\">And he did that which was evil in the sight of the LORD, according to all that his father had done.</VERS>\r\n      <VERS vnumber=\"10\">At that time the servants of Nebuchadnezzar king of Babylon came up against Jerusalem, and the city was besieged.</VERS>\r\n      <VERS vnumber=\"11\">And Nebuchadnezzar king of Babylon came against the city, and his servants did besiege it.</VERS>\r\n      <VERS vnumber=\"12\">And Jehoiachin the king of Judah went out to the king of Babylon, he, and his mother, and his servants, and his princes, and his officers: and the king of Babylon took him in the eighth year of his reign.</VERS>\r\n      <VERS vnumber=\"13\">And he carried out thence all the treasures of the house of the LORD, and the treasures of the king's house, and cut in pieces all the vessels of gold which Solomon king of Israel had made in the temple of the LORD, as the LORD had said.</VERS>\r\n      <VERS vnumber=\"14\">And he carried away all Jerusalem, and all the princes, and all the mighty men of valour, even ten thousand captives, and all the craftsmen and smiths: none remained, save the poorest sort of the people of the land.</VERS>\r\n      <VERS vnumber=\"15\">And he carried away Jehoiachin to Babylon, and the king's mother, and the king's wives, and his officers, and the mighty of the land, those carried he into captivity from Jerusalem to Babylon.</VERS>\r\n      <VERS vnumber=\"16\">And all the men of might, even seven thousand, and craftsmen and smiths a thousand, all that were strong and apt for war, even them the king of Babylon brought captive to Babylon.</VERS>\r\n      <VERS vnumber=\"17\">And the king of Babylon made Mattaniah his father's brother king in his stead, and changed his name to Zedekiah.</VERS>\r\n      <VERS vnumber=\"18\">Zedekiah was twenty and one 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.</VERS>\r\n      <VERS vnumber=\"19\">And he did that which was evil in the sight of the LORD, according to all that Jehoiakim had done.</VERS>\r\n      <VERS vnumber=\"20\">For through the anger of the LORD it came to pass in Jerusalem and Judah, until he had cast them out from his presence, that Zedekiah rebelled against the king of Babylon.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"25\">\r\n      <VERS vnumber=\"1\">And it came to pass in the ninth year of his reign, in the tenth month, in the tenth day of the month, that Nebuchadnezzar king of Babylon came, he, and all his host, against Jerusalem, and pitched against it; and they built forts against it round about.</VERS>\r\n      <VERS vnumber=\"2\">And the city was besieged unto the eleventh year of king Zedekiah.</VERS>\r\n      <VERS vnumber=\"3\">And on the ninth day of the fourth month the famine prevailed in the city, and there was no bread for the people of the land.</VERS>\r\n      <VERS vnumber=\"4\">And the city was broken up, and all the men of war fled by night by the way of the gate between two walls, which is by the king's garden: (now the Chaldees were against the city round about:) and the king went the way toward the plain.</VERS>\r\n      <VERS vnumber=\"5\">And the army of the Chaldees pursued after the king, and overtook him in the plains of Jericho: and all his army were scattered from him.</VERS>\r\n      <VERS vnumber=\"6\">So they took the king, and brought him up to the king of Babylon to Riblah; and they gave judgment upon him.</VERS>\r\n      <VERS vnumber=\"7\">And they slew the sons of Zedekiah before his eyes, and put out the eyes of Zedekiah, and bound him with fetters of brass, and carried him to Babylon.</VERS>\r\n      <VERS vnumber=\"8\">And in the fifth month, on the seventh day of the month, which is the nineteenth year of king Nebuchadnezzar king of Babylon, came Nebuzaradan, captain of the guard, a servant of the king of Babylon, unto Jerusalem:</VERS>\r\n      <VERS vnumber=\"9\">And he burnt the house of the LORD, and the king's house, and all the houses of Jerusalem, and every great man's house burnt he with fire.</VERS>\r\n      <VERS vnumber=\"10\">And all the army of the Chaldees, that were with the captain of the guard, brake down the walls of Jerusalem round about.</VERS>\r\n      <VERS vnumber=\"11\">Now the rest of the people that were left in the city, and the fugitives that fell away to the king of Babylon, with the remnant of the multitude, did Nebuzaradan the captain of the guard carry away.</VERS>\r\n      <VERS vnumber=\"12\">But the captain of the guard left of the poor of the land to be vinedressers and husbandmen.</VERS>\r\n      <VERS vnumber=\"13\">And 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, did the Chaldees break in pieces, and carried the brass of them to Babylon.</VERS>\r\n      <VERS vnumber=\"14\">And the pots, and the shovels, and the snuffers, and the spoons, and all the vessels of brass wherewith they ministered, took they away.</VERS>\r\n      <VERS vnumber=\"15\">And the firepans, and the bowls, and such things as were of gold, in gold, and of silver, in silver, the captain of the guard took away.</VERS>\r\n      <VERS vnumber=\"16\">The two pillars, one sea, and the bases which Solomon had made for the house of the LORD; the brass of all these vessels was without weight.</VERS>\r\n      <VERS vnumber=\"17\">The height of the one pillar was eighteen cubits, and the chapiter upon it was brass: and the height of the chapiter three cubits; and the wreathen work, and pomegranates upon the chapiter round about, all of brass: and like unto these had the second pillar with wreathen work.</VERS>\r\n      <VERS vnumber=\"18\">And the captain of the guard took Seraiah the chief priest, and Zephaniah the second priest, and the three keepers of the door:</VERS>\r\n      <VERS vnumber=\"19\">And out of the city he took an officer that was set over the men of war, and five men of them that were in the king's presence, which were found in the city, and the principal scribe of the host, which mustered the people of the land, and threescore men of the people of the land that were found in the city:</VERS>\r\n      <VERS vnumber=\"20\">And Nebuzaradan captain of the guard took these, and brought them to the king of Babylon to Riblah:</VERS>\r\n      <VERS vnumber=\"21\">And the king of Babylon smote them, and slew them at Riblah in the land of Hamath. So Judah was carried away out of their land.</VERS>\r\n      <VERS vnumber=\"22\">And as for the people that remained in the land of Judah, whom Nebuchadnezzar king of Babylon had left, even over them he made Gedaliah the son of Ahikam, the son of Shaphan, ruler.</VERS>\r\n      <VERS vnumber=\"23\">And when all the captains of the armies, they and their men, heard that the king of Babylon had made Gedaliah governor, there came to Gedaliah to Mizpah, even Ishmael the son of Nethaniah, and Johanan the son of Careah, and Seraiah the son of Tanhumeth the Netophathite, and Jaazaniah the son of a Maachathite, they and their men.</VERS>\r\n      <VERS vnumber=\"24\">And Gedaliah sware to them, and to their men, and said unto them, Fear not to be the servants of the Chaldees: dwell in the land, and serve the king of Babylon; and it shall be well with you.</VERS>\r\n      <VERS vnumber=\"25\">But it came to pass in the seventh month, that Ishmael the son of Nethaniah, the son of Elishama, of the seed royal, came, and ten men with him, and smote Gedaliah, that he died, and the Jews and the Chaldees that were with him at Mizpah.</VERS>\r\n      <VERS vnumber=\"26\">And all the people, both small and great, and the captains of the armies, arose, and came to Egypt: for they were afraid of the Chaldees.</VERS>\r\n      <VERS vnumber=\"27\">And it came to pass in the seven and thirtieth year of the captivity of Jehoiachin king of Judah, in the twelfth month, on the seven and twentieth day of the month, that Evilmerodach king of Babylon in the year that he began to reign did lift up the head of Jehoiachin king of Judah out of prison;</VERS>\r\n      <VERS vnumber=\"28\">And he spake kindly to him, and set his throne above the throne of the kings that were with him in Babylon;</VERS>\r\n      <VERS vnumber=\"29\">And changed his prison garments: and he did eat bread continually before him all the days of his life.</VERS>\r\n      <VERS vnumber=\"30\">And his allowance was a continual allowance given him of the king, a daily rate for every day, all the days of his life.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"13\" bname=\"1 Chronicles\" bsname=\"1Chr\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">Adam, Sheth, Enosh,</VERS>\r\n      <VERS vnumber=\"2\">Kenan, Mahalaleel, Jered,</VERS>\r\n      <VERS vnumber=\"3\">Henoch, Methuselah, Lamech,</VERS>\r\n      <VERS vnumber=\"4\">Noah, Shem, Ham, and Japheth.</VERS>\r\n      <VERS vnumber=\"5\">The sons of Japheth; Gomer, and Magog, and Madai, and Javan, and Tubal, and Meshech, and Tiras.</VERS>\r\n      <VERS vnumber=\"6\">And the sons of Gomer; Ashchenaz, and Riphath, and Togarmah.</VERS>\r\n      <VERS vnumber=\"7\">And the sons of Javan; Elishah, and Tarshish, Kittim, and Dodanim.</VERS>\r\n      <VERS vnumber=\"8\">The sons of Ham; Cush, and Mizraim, Put, and Canaan.</VERS>\r\n      <VERS vnumber=\"9\">And the sons of Cush; Seba, and Havilah, and Sabta, and Raamah, and Sabtecha. And the sons of Raamah; Sheba, and Dedan.</VERS>\r\n      <VERS vnumber=\"10\">And Cush begat Nimrod: he began to be mighty upon the earth.</VERS>\r\n      <VERS vnumber=\"11\">And Mizraim begat Ludim, and Anamim, and Lehabim, and Naphtuhim,</VERS>\r\n      <VERS vnumber=\"12\">And Pathrusim, and Casluhim, (of whom came the Philistines,) and Caphthorim.</VERS>\r\n      <VERS vnumber=\"13\">And Canaan begat Zidon his firstborn, and Heth,</VERS>\r\n      <VERS vnumber=\"14\">The Jebusite also, and the Amorite, and the Girgashite,</VERS>\r\n      <VERS vnumber=\"15\">And the Hivite, and the Arkite, and the Sinite,</VERS>\r\n      <VERS vnumber=\"16\">And the Arvadite, and the Zemarite, and the Hamathite.</VERS>\r\n      <VERS vnumber=\"17\">The sons of Shem; Elam, and Asshur, and Arphaxad, and Lud, and Aram, and Uz, and Hul, and Gether, and Meshech.</VERS>\r\n      <VERS vnumber=\"18\">And Arphaxad begat Shelah, and Shelah begat Eber.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And Joktan begat Almodad, and Sheleph, and Hazarmaveth, and Jerah,</VERS>\r\n      <VERS vnumber=\"21\">Hadoram also, and Uzal, and Diklah,</VERS>\r\n      <VERS vnumber=\"22\">And Ebal, and Abimael, and Sheba,</VERS>\r\n      <VERS vnumber=\"23\">And Ophir, and Havilah, and Jobab. All these were the sons of Joktan.</VERS>\r\n      <VERS vnumber=\"24\">Shem, Arphaxad, Shelah,</VERS>\r\n      <VERS vnumber=\"25\">Eber, Peleg, Reu,</VERS>\r\n      <VERS vnumber=\"26\">Serug, Nahor, Terah,</VERS>\r\n      <VERS vnumber=\"27\">Abram; the same is Abraham.</VERS>\r\n      <VERS vnumber=\"28\">The sons of Abraham; Isaac, and Ishmael.</VERS>\r\n      <VERS vnumber=\"29\">These are their generations: The firstborn of Ishmael, Nebaioth; then Kedar, and Adbeel, and Mibsam,</VERS>\r\n      <VERS vnumber=\"30\">Mishma, and Dumah, Massa, Hadad, and Tema,</VERS>\r\n      <VERS vnumber=\"31\">Jetur, Naphish, and Kedemah. These are the sons of Ishmael.</VERS>\r\n      <VERS vnumber=\"32\">Now 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.</VERS>\r\n      <VERS vnumber=\"33\">And the sons of Midian; Ephah, and Epher, and Henoch, and Abida, and Eldaah. All these are the sons of Keturah.</VERS>\r\n      <VERS vnumber=\"34\">And Abraham begat Isaac. The sons of Isaac; Esau and Israel.</VERS>\r\n      <VERS vnumber=\"35\">The sons of Esau; Eliphaz, Reuel, and Jeush, and Jaalam, and Korah.</VERS>\r\n      <VERS vnumber=\"36\">The sons of Eliphaz; Teman, and Omar, Zephi, and Gatam, Kenaz, and Timna, and Amalek.</VERS>\r\n      <VERS vnumber=\"37\">The sons of Reuel; Nahath, Zerah, Shammah, and Mizzah.</VERS>\r\n      <VERS vnumber=\"38\">And the sons of Seir; Lotan, and Shobal, and Zibeon, and Anah, and Dishon, and Ezer, and Dishan.</VERS>\r\n      <VERS vnumber=\"39\">And the sons of Lotan; Hori, and Homam: and Timna was Lotan's sister.</VERS>\r\n      <VERS vnumber=\"40\">The sons of Shobal; Alian, and Manahath, and Ebal, Shephi, and Onam. And the sons of Zibeon; Aiah, and Anah.</VERS>\r\n      <VERS vnumber=\"41\">The sons of Anah; Dishon. And the sons of Dishon; Amram, and Eshban, and Ithran, and Cheran.</VERS>\r\n      <VERS vnumber=\"42\">The sons of Ezer; Bilhan, and Zavan, and Jakan. The sons of Dishan; Uz, and Aran.</VERS>\r\n      <VERS vnumber=\"43\">Now 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.</VERS>\r\n      <VERS vnumber=\"44\">And when Bela was dead, Jobab the son of Zerah of Bozrah reigned in his stead.</VERS>\r\n      <VERS vnumber=\"45\">And when Jobab was dead, Husham of the land of the Temanites reigned in his stead.</VERS>\r\n      <VERS vnumber=\"46\">And 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.</VERS>\r\n      <VERS vnumber=\"47\">And when Hadad was dead, Samlah of Masrekah reigned in his stead.</VERS>\r\n      <VERS vnumber=\"48\">And when Samlah was dead, Shaul of Rehoboth by the river reigned in his stead.</VERS>\r\n      <VERS vnumber=\"49\">And when Shaul was dead, Baalhanan the son of Achbor reigned in his stead.</VERS>\r\n      <VERS vnumber=\"50\">And 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.</VERS>\r\n      <VERS vnumber=\"51\">Hadad died also. And the dukes of Edom were; duke Timnah, duke Aliah, duke Jetheth,</VERS>\r\n      <VERS vnumber=\"52\">Duke Aholibamah, duke Elah, duke Pinon,</VERS>\r\n      <VERS vnumber=\"53\">Duke Kenaz, duke Teman, duke Mibzar,</VERS>\r\n      <VERS vnumber=\"54\">Duke Magdiel, duke Iram. These are the dukes of Edom.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">These are the sons of Israel; Reuben, Simeon, Levi, and Judah, Issachar, and Zebulun,</VERS>\r\n      <VERS vnumber=\"2\">Dan, Joseph, and Benjamin, Naphtali, Gad, and Asher.</VERS>\r\n      <VERS vnumber=\"3\">The 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.</VERS>\r\n      <VERS vnumber=\"4\">And Tamar his daughter in law bare him Pharez and Zerah. All the sons of Judah were five.</VERS>\r\n      <VERS vnumber=\"5\">The sons of Pharez; Hezron, and Hamul.</VERS>\r\n      <VERS vnumber=\"6\">And the sons of Zerah; Zimri, and Ethan, and Heman, and Calcol, and Dara: five of them in all.</VERS>\r\n      <VERS vnumber=\"7\">And the sons of Carmi; Achar, the troubler of Israel, who transgressed in the thing accursed.</VERS>\r\n      <VERS vnumber=\"8\">And the sons of Ethan; Azariah.</VERS>\r\n      <VERS vnumber=\"9\">The sons also of Hezron, that were born unto him; Jerahmeel, and Ram, and Chelubai.</VERS>\r\n      <VERS vnumber=\"10\">And Ram begat Amminadab; and Amminadab begat Nahshon, prince of the children of Judah;</VERS>\r\n      <VERS vnumber=\"11\">And Nahshon begat Salma, and Salma begat Boaz,</VERS>\r\n      <VERS vnumber=\"12\">And Boaz begat Obed, and Obed begat Jesse,</VERS>\r\n      <VERS vnumber=\"13\">And Jesse begat his firstborn Eliab, and Abinadab the second, and Shimma the third,</VERS>\r\n      <VERS vnumber=\"14\">Nethaneel the fourth, Raddai the fifth,</VERS>\r\n      <VERS vnumber=\"15\">Ozem the sixth, David the seventh:</VERS>\r\n      <VERS vnumber=\"16\">Whose sisters were Zeruiah, and Abigail. And the sons of Zeruiah; Abishai, and Joab, and Asahel, three.</VERS>\r\n      <VERS vnumber=\"17\">And Abigail bare Amasa: and the father of Amasa was Jether the Ishmeelite.</VERS>\r\n      <VERS vnumber=\"18\">And Caleb the son of Hezron begat children of Azubah his wife, and of Jerioth: her sons are these; Jesher, and Shobab, and Ardon.</VERS>\r\n      <VERS vnumber=\"19\">And when Azubah was dead, Caleb took unto him Ephrath, which bare him Hur.</VERS>\r\n      <VERS vnumber=\"20\">And Hur begat Uri, and Uri begat Bezaleel.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And Segub begat Jair, who had three and twenty cities in the land of Gilead.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And after that Hezron was dead in Calebephratah, then Abiah Hezron's wife bare him Ashur the father of Tekoa.</VERS>\r\n      <VERS vnumber=\"25\">And the sons of Jerahmeel the firstborn of Hezron were, Ram the firstborn, and Bunah, and Oren, and Ozem, and Ahijah.</VERS>\r\n      <VERS vnumber=\"26\">Jerahmeel had also another wife, whose name was Atarah; she was the mother of Onam.</VERS>\r\n      <VERS vnumber=\"27\">And the sons of Ram the firstborn of Jerahmeel were, Maaz, and Jamin, and Eker.</VERS>\r\n      <VERS vnumber=\"28\">And the sons of Onam were, Shammai, and Jada. And the sons of Shammai; Nadab, and Abishur.</VERS>\r\n      <VERS vnumber=\"29\">And the name of the wife of Abishur was Abihail, and she bare him Ahban, and Molid.</VERS>\r\n      <VERS vnumber=\"30\">And the sons of Nadab; Seled, and Appaim: but Seled died without children.</VERS>\r\n      <VERS vnumber=\"31\">And the sons of Appaim; Ishi. And the sons of Ishi; Sheshan. And the children of Sheshan; Ahlai.</VERS>\r\n      <VERS vnumber=\"32\">And the sons of Jada the brother of Shammai; Jether, and Jonathan: and Jether died without children.</VERS>\r\n      <VERS vnumber=\"33\">And the sons of Jonathan; Peleth, and Zaza. These were the sons of Jerahmeel.</VERS>\r\n      <VERS vnumber=\"34\">Now Sheshan had no sons, but daughters. And Sheshan had a servant, an Egyptian, whose name was Jarha.</VERS>\r\n      <VERS vnumber=\"35\">And Sheshan gave his daughter to Jarha his servant to wife; and she bare him Attai.</VERS>\r\n      <VERS vnumber=\"36\">And Attai begat Nathan, and Nathan begat Zabad,</VERS>\r\n      <VERS vnumber=\"37\">And Zabad begat Ephlal, and Ephlal begat Obed,</VERS>\r\n      <VERS vnumber=\"38\">And Obed begat Jehu, and Jehu begat Azariah,</VERS>\r\n      <VERS vnumber=\"39\">And Azariah begat Helez, and Helez begat Eleasah,</VERS>\r\n      <VERS vnumber=\"40\">And Eleasah begat Sisamai, and Sisamai begat Shallum,</VERS>\r\n      <VERS vnumber=\"41\">And Shallum begat Jekamiah, and Jekamiah begat Elishama.</VERS>\r\n      <VERS vnumber=\"42\">Now 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.</VERS>\r\n      <VERS vnumber=\"43\">And the sons of Hebron; Korah, and Tappuah, and Rekem, and Shema.</VERS>\r\n      <VERS vnumber=\"44\">And Shema begat Raham, the father of Jorkoam: and Rekem begat Shammai.</VERS>\r\n      <VERS vnumber=\"45\">And the son of Shammai was Maon: and Maon was the father of Bethzur.</VERS>\r\n      <VERS vnumber=\"46\">And Ephah, Caleb's concubine, bare Haran, and Moza, and Gazez: and Haran begat Gazez.</VERS>\r\n      <VERS vnumber=\"47\">And the sons of Jahdai; Regem, and Jotham, and Geshan, and Pelet, and Ephah, and Shaaph.</VERS>\r\n      <VERS vnumber=\"48\">Maachah, Caleb's concubine, bare Sheber, and Tirhanah.</VERS>\r\n      <VERS vnumber=\"49\">She bare also Shaaph the father of Madmannah, Sheva the father of Machbenah, and the father of Gibea: and the daughter of Caleb was Achsah.</VERS>\r\n      <VERS vnumber=\"50\">These were the sons of Caleb the son of Hur, the firstborn of Ephratah; Shobal the father of Kirjathjearim,</VERS>\r\n      <VERS vnumber=\"51\">Salma the father of Bethlehem, Hareph the father of Bethgader.</VERS>\r\n      <VERS vnumber=\"52\">And Shobal the father of Kirjathjearim had sons; Haroeh, and half of the Manahethites.</VERS>\r\n      <VERS vnumber=\"53\">And the families of Kirjathjearim; the Ithrites, and the Puhites, and the Shumathites, and the Mishraites; of them came the Zareathites, and the Eshtaulites.</VERS>\r\n      <VERS vnumber=\"54\">The sons of Salma; Bethlehem, and the Netophathites, Ataroth, the house of Joab, and half of the Manahethites, the Zorites.</VERS>\r\n      <VERS vnumber=\"55\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Now 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:</VERS>\r\n      <VERS vnumber=\"2\">The third, Absalom the son of Maachah the daughter of Talmai king of Geshur: the fourth, Adonijah the son of Haggith:</VERS>\r\n      <VERS vnumber=\"3\">The fifth, Shephatiah of Abital: the sixth, Ithream by Eglah his wife.</VERS>\r\n      <VERS vnumber=\"4\">These 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.</VERS>\r\n      <VERS vnumber=\"5\">And these were born unto him in Jerusalem; Shimea, and Shobab, and Nathan, and Solomon, four, of Bathshua the daughter of Ammiel:</VERS>\r\n      <VERS vnumber=\"6\">Ibhar also, and Elishama, and Eliphelet,</VERS>\r\n      <VERS vnumber=\"7\">And Nogah, and Nepheg, and Japhia,</VERS>\r\n      <VERS vnumber=\"8\">And Elishama, and Eliada, and Eliphelet, nine.</VERS>\r\n      <VERS vnumber=\"9\">These were all the sons of David, beside the sons of the concubines, and Tamar their sister.</VERS>\r\n      <VERS vnumber=\"10\">And Solomon's son was Rehoboam, Abia his son, Asa his son, Jehoshaphat his son,</VERS>\r\n      <VERS vnumber=\"11\">Joram his son, Ahaziah his son, Joash his son,</VERS>\r\n      <VERS vnumber=\"12\">Amaziah his son, Azariah his son, Jotham his son,</VERS>\r\n      <VERS vnumber=\"13\">Ahaz his son, Hezekiah his son, Manasseh his son,</VERS>\r\n      <VERS vnumber=\"14\">Amon his son, Josiah his son.</VERS>\r\n      <VERS vnumber=\"15\">And the sons of Josiah were, the firstborn Johanan, the second Jehoiakim, the third Zedekiah, the fourth Shallum.</VERS>\r\n      <VERS vnumber=\"16\">And the sons of Jehoiakim: Jeconiah his son, Zedekiah his son.</VERS>\r\n      <VERS vnumber=\"17\">And the sons of Jeconiah; Assir, Salathiel his son,</VERS>\r\n      <VERS vnumber=\"18\">Malchiram also, and Pedaiah, and Shenazar, Jecamiah, Hoshama, and Nedabiah.</VERS>\r\n      <VERS vnumber=\"19\">And the sons of Pedaiah were, Zerubbabel, and Shimei: and the sons of Zerubbabel; Meshullam, and Hananiah, and Shelomith their sister:</VERS>\r\n      <VERS vnumber=\"20\">And Hashubah, and Ohel, and Berechiah, and Hasadiah, Jushabhesed, five.</VERS>\r\n      <VERS vnumber=\"21\">And the sons of Hananiah; Pelatiah, and Jesaiah: the sons of Rephaiah, the sons of Arnan, the sons of Obadiah, the sons of Shechaniah.</VERS>\r\n      <VERS vnumber=\"22\">And the sons of Shechaniah; Shemaiah: and the sons of Shemaiah; Hattush, and Igeal, and Bariah, and Neariah, and Shaphat, six.</VERS>\r\n      <VERS vnumber=\"23\">And the sons of Neariah; Elioenai, and Hezekiah, and Azrikam, three.</VERS>\r\n      <VERS vnumber=\"24\">And the sons of Elioenai were, Hodaiah, and Eliashib, and Pelaiah, and Akkub, and Johanan, and Dalaiah, and Anani, seven.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">The sons of Judah; Pharez, Hezron, and Carmi, and Hur, and Shobal.</VERS>\r\n      <VERS vnumber=\"2\">And Reaiah the son of Shobal begat Jahath; and Jahath begat Ahumai, and Lahad. These are the families of the Zorathites.</VERS>\r\n      <VERS vnumber=\"3\">And these were of the father of Etam; Jezreel, and Ishma, and Idbash: and the name of their sister was Hazelelponi:</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And Ashur the father of Tekoa had two wives, Helah and Naarah.</VERS>\r\n      <VERS vnumber=\"6\">And Naarah bare him Ahuzam, and Hepher, and Temeni, and Haahashtari. These were the sons of Naarah.</VERS>\r\n      <VERS vnumber=\"7\">And the sons of Helah were, Zereth, and Jezoar, and Ethnan.</VERS>\r\n      <VERS vnumber=\"8\">And Coz begat Anub, and Zobebah, and the families of Aharhel the son of Harum.</VERS>\r\n      <VERS vnumber=\"9\">And Jabez was more honourable than his brethren: and his mother called his name Jabez, saying, Because I bare him with sorrow.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And Chelub the brother of Shuah begat Mehir, which was the father of Eshton.</VERS>\r\n      <VERS vnumber=\"12\">And Eshton begat Bethrapha, and Paseah, and Tehinnah the father of Irnahash. These are the men of Rechah.</VERS>\r\n      <VERS vnumber=\"13\">And the sons of Kenaz; Othniel, and Seraiah: and the sons of Othniel; Hathath.</VERS>\r\n      <VERS vnumber=\"14\">And Meonothai begat Ophrah: and Seraiah begat Joab, the father of the valley of Charashim; for they were craftsmen.</VERS>\r\n      <VERS vnumber=\"15\">And the sons of Caleb the son of Jephunneh; Iru, Elah, and Naam: and the sons of Elah, even Kenaz.</VERS>\r\n      <VERS vnumber=\"16\">And the sons of Jehaleleel; Ziph, and Ziphah, Tiria, and Asareel.</VERS>\r\n      <VERS vnumber=\"17\">And the sons of Ezra were, Jether, and Mered, and Epher, and Jalon: and she bare Miriam, and Shammai, and Ishbah the father of Eshtemoa.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And the sons of his wife Hodiah the sister of Naham, the father of Keilah the Garmite, and Eshtemoa the Maachathite.</VERS>\r\n      <VERS vnumber=\"20\">And the sons of Shimon were, Amnon, and Rinnah, Benhanan, and Tilon. And the sons of Ishi were, Zoheth, and Benzoheth.</VERS>\r\n      <VERS vnumber=\"21\">The 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,</VERS>\r\n      <VERS vnumber=\"22\">And Jokim, and the men of Chozeba, and Joash, and Saraph, who had the dominion in Moab, and Jashubilehem. And these are ancient things.</VERS>\r\n      <VERS vnumber=\"23\">These were the potters, and those that dwelt among plants and hedges: there they dwelt with the king for his work.</VERS>\r\n      <VERS vnumber=\"24\">The sons of Simeon were, Nemuel, and Jamin, Jarib, Zerah, and Shaul:</VERS>\r\n      <VERS vnumber=\"25\">Shallum his son, Mibsam his son, Mishma his son.</VERS>\r\n      <VERS vnumber=\"26\">And the sons of Mishma; Hamuel his son, Zacchur his son, Shimei his son.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And they dwelt at Beersheba, and Moladah, and Hazarshual,</VERS>\r\n      <VERS vnumber=\"29\">And at Bilhah, and at Ezem, and at Tolad,</VERS>\r\n      <VERS vnumber=\"30\">And at Bethuel, and at Hormah, and at Ziklag,</VERS>\r\n      <VERS vnumber=\"31\">And at Bethmarcaboth, and Hazarsusim, and at Bethbirei, and at Shaaraim. These were their cities unto the reign of David.</VERS>\r\n      <VERS vnumber=\"32\">And their villages were, Etam, and Ain, Rimmon, and Tochen, and Ashan, five cities:</VERS>\r\n      <VERS vnumber=\"33\">And all their villages that were round about the same cities, unto Baal. These were their habitations, and their genealogy.</VERS>\r\n      <VERS vnumber=\"34\">And Meshobab, and Jamlech, and Joshah the son of Amaziah,</VERS>\r\n      <VERS vnumber=\"35\">And Joel, and Jehu the son of Josibiah, the son of Seraiah, the son of Asiel,</VERS>\r\n      <VERS vnumber=\"36\">And Elioenai, and Jaakobah, and Jeshohaiah, and Asaiah, and Adiel, and Jesimiel, and Benaiah,</VERS>\r\n      <VERS vnumber=\"37\">And Ziza the son of Shiphi, the son of Allon, the son of Jedaiah, the son of Shimri, the son of Shemaiah;</VERS>\r\n      <VERS vnumber=\"38\">These mentioned by their names were princes in their families: and the house of their fathers increased greatly.</VERS>\r\n      <VERS vnumber=\"39\">And they went to the entrance of Gedor, even unto the east side of the valley, to seek pasture for their flocks.</VERS>\r\n      <VERS vnumber=\"40\">And they found fat pasture and good, and the land was wide, and quiet, and peaceable; for they of Ham had dwelt there of old.</VERS>\r\n      <VERS vnumber=\"41\">And 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.</VERS>\r\n      <VERS vnumber=\"42\">And 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.</VERS>\r\n      <VERS vnumber=\"43\">And they smote the rest of the Amalekites that were escaped, and dwelt there unto this day.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">Now 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.</VERS>\r\n      <VERS vnumber=\"2\">For Judah prevailed above his brethren, and of him came the chief ruler; but the birthright was Joseph's:)</VERS>\r\n      <VERS vnumber=\"3\">The sons, I say, of Reuben the firstborn of Israel were, Hanoch, and Pallu, Hezron, and Carmi.</VERS>\r\n      <VERS vnumber=\"4\">The sons of Joel; Shemaiah his son, Gog his son, Shimei his son,</VERS>\r\n      <VERS vnumber=\"5\">Micah his son, Reaia his son, Baal his son,</VERS>\r\n      <VERS vnumber=\"6\">Beerah his son, whom Tilgathpilneser king of Assyria carried away captive: he was prince of the Reubenites.</VERS>\r\n      <VERS vnumber=\"7\">And his brethren by their families, when the genealogy of their generations was reckoned, were the chief, Jeiel, and Zechariah,</VERS>\r\n      <VERS vnumber=\"8\">And Bela the son of Azaz, the son of Shema, the son of Joel, who dwelt in Aroer, even unto Nebo and Baalmeon:</VERS>\r\n      <VERS vnumber=\"9\">And eastward he inhabited unto the entering in of the wilderness from the river Euphrates: because their cattle were multiplied in the land of Gilead.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And the children of Gad dwelt over against them, in the land of Bashan unto Salchah:</VERS>\r\n      <VERS vnumber=\"12\">Joel the chief, and Shapham the next, and Jaanai, and Shaphat in Bashan.</VERS>\r\n      <VERS vnumber=\"13\">And their brethren of the house of their fathers were, Michael, and Meshullam, and Sheba, and Jorai, and Jachan, and Zia, and Heber, seven.</VERS>\r\n      <VERS vnumber=\"14\">These 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;</VERS>\r\n      <VERS vnumber=\"15\">Ahi the son of Abdiel, the son of Guni, chief of the house of their fathers.</VERS>\r\n      <VERS vnumber=\"16\">And they dwelt in Gilead in Bashan, and in her towns, and in all the suburbs of Sharon, upon their borders.</VERS>\r\n      <VERS vnumber=\"17\">All these were reckoned by genealogies in the days of Jotham king of Judah, and in the days of Jeroboam king of Israel.</VERS>\r\n      <VERS vnumber=\"18\">The 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.</VERS>\r\n      <VERS vnumber=\"19\">And they made war with the Hagarites, with Jetur, and Nephish, and Nodab.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">For there fell down many slain, because the war was of God. And they dwelt in their steads until the captivity.</VERS>\r\n      <VERS vnumber=\"23\">And the children of the half tribe of Manasseh dwelt in the land: they increased from Bashan unto Baalhermon and Senir, and unto mount Hermon.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">The sons of Levi; Gershon, Kohath, and Merari.</VERS>\r\n      <VERS vnumber=\"2\">And the sons of Kohath; Amram, Izhar, and Hebron, and Uzziel.</VERS>\r\n      <VERS vnumber=\"3\">And the children of Amram; Aaron, and Moses, and Miriam. The sons also of Aaron; Nadab, and Abihu, Eleazar, and Ithamar.</VERS>\r\n      <VERS vnumber=\"4\">Eleazar begat Phinehas, Phinehas begat Abishua,</VERS>\r\n      <VERS vnumber=\"5\">And Abishua begat Bukki, and Bukki begat Uzzi,</VERS>\r\n      <VERS vnumber=\"6\">And Uzzi begat Zerahiah, and Zerahiah begat Meraioth,</VERS>\r\n      <VERS vnumber=\"7\">Meraioth begat Amariah, and Amariah begat Ahitub,</VERS>\r\n      <VERS vnumber=\"8\">And Ahitub begat Zadok, and Zadok begat Ahimaaz,</VERS>\r\n      <VERS vnumber=\"9\">And Ahimaaz begat Azariah, and Azariah begat Johanan,</VERS>\r\n      <VERS vnumber=\"10\">And Johanan begat Azariah, (he it is that executed the priest's office in the temple that Solomon built in Jerusalem:)</VERS>\r\n      <VERS vnumber=\"11\">And Azariah begat Amariah, and Amariah begat Ahitub,</VERS>\r\n      <VERS vnumber=\"12\">And Ahitub begat Zadok, and Zadok begat Shallum,</VERS>\r\n      <VERS vnumber=\"13\">And Shallum begat Hilkiah, and Hilkiah begat Azariah,</VERS>\r\n      <VERS vnumber=\"14\">And Azariah begat Seraiah, and Seraiah begat Jehozadak,</VERS>\r\n      <VERS vnumber=\"15\">And Jehozadak went into captivity, when the LORD carried away Judah and Jerusalem by the hand of Nebuchadnezzar.</VERS>\r\n      <VERS vnumber=\"16\">The sons of Levi; Gershom, Kohath, and Merari.</VERS>\r\n      <VERS vnumber=\"17\">And these be the names of the sons of Gershom; Libni, and Shimei.</VERS>\r\n      <VERS vnumber=\"18\">And the sons of Kohath were, Amram, and Izhar, and Hebron, and Uzziel.</VERS>\r\n      <VERS vnumber=\"19\">The sons of Merari; Mahli, and Mushi. And these are the families of the Levites according to their fathers.</VERS>\r\n      <VERS vnumber=\"20\">Of Gershom; Libni his son, Jahath his son, Zimmah his son,</VERS>\r\n      <VERS vnumber=\"21\">Joah his son, Iddo his son, Zerah his son, Jeaterai his son.</VERS>\r\n      <VERS vnumber=\"22\">The sons of Kohath; Amminadab his son, Korah his son, Assir his son,</VERS>\r\n      <VERS vnumber=\"23\">Elkanah his son, and Ebiasaph his son, and Assir his son,</VERS>\r\n      <VERS vnumber=\"24\">Tahath his son, Uriel his son, Uzziah his son, and Shaul his son.</VERS>\r\n      <VERS vnumber=\"25\">And the sons of Elkanah; Amasai, and Ahimoth.</VERS>\r\n      <VERS vnumber=\"26\">As for Elkanah: the sons of Elkanah; Zophai his son, and Nahath his son,</VERS>\r\n      <VERS vnumber=\"27\">Eliab his son, Jeroham his son, Elkanah his son.</VERS>\r\n      <VERS vnumber=\"28\">And the sons of Samuel; the firstborn Vashni, and Abiah.</VERS>\r\n      <VERS vnumber=\"29\">The sons of Merari; Mahli, Libni his son, Shimei his son, Uzza his son,</VERS>\r\n      <VERS vnumber=\"30\">Shimea his son, Haggiah his son, Asaiah his son.</VERS>\r\n      <VERS vnumber=\"31\">And these are they whom David set over the service of song in the house of the LORD, after that the ark had rest.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">And 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,</VERS>\r\n      <VERS vnumber=\"34\">The son of Elkanah, the son of Jeroham, the son of Eliel, the son of Toah,</VERS>\r\n      <VERS vnumber=\"35\">The son of Zuph, the son of Elkanah, the son of Mahath, the son of Amasai,</VERS>\r\n      <VERS vnumber=\"36\">The son of Elkanah, the son of Joel, the son of Azariah, the son of Zephaniah,</VERS>\r\n      <VERS vnumber=\"37\">The son of Tahath, the son of Assir, the son of Ebiasaph, the son of Korah,</VERS>\r\n      <VERS vnumber=\"38\">The son of Izhar, the son of Kohath, the son of Levi, the son of Israel.</VERS>\r\n      <VERS vnumber=\"39\">And his brother Asaph, who stood on his right hand, even Asaph the son of Berachiah, the son of Shimea,</VERS>\r\n      <VERS vnumber=\"40\">The son of Michael, the son of Baaseiah, the son of Malchiah,</VERS>\r\n      <VERS vnumber=\"41\">The son of Ethni, the son of Zerah, the son of Adaiah,</VERS>\r\n      <VERS vnumber=\"42\">The son of Ethan, the son of Zimmah, the son of Shimei,</VERS>\r\n      <VERS vnumber=\"43\">The son of Jahath, the son of Gershom, the son of Levi.</VERS>\r\n      <VERS vnumber=\"44\">And their brethren the sons of Merari stood on the left hand: Ethan the son of Kishi, the son of Abdi, the son of Malluch,</VERS>\r\n      <VERS vnumber=\"45\">The son of Hashabiah, the son of Amaziah, the son of Hilkiah,</VERS>\r\n      <VERS vnumber=\"46\">The son of Amzi, the son of Bani, the son of Shamer,</VERS>\r\n      <VERS vnumber=\"47\">The son of Mahli, the son of Mushi, the son of Merari, the son of Levi.</VERS>\r\n      <VERS vnumber=\"48\">Their brethren also the Levites were appointed unto all manner of service of the tabernacle of the house of God.</VERS>\r\n      <VERS vnumber=\"49\">But 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.</VERS>\r\n      <VERS vnumber=\"50\">And these are the sons of Aaron; Eleazar his son, Phinehas his son, Abishua his son,</VERS>\r\n      <VERS vnumber=\"51\">Bukki his son, Uzzi his son, Zerahiah his son,</VERS>\r\n      <VERS vnumber=\"52\">Meraioth his son, Amariah his son, Ahitub his son,</VERS>\r\n      <VERS vnumber=\"53\">Zadok his son, Ahimaaz his son.</VERS>\r\n      <VERS vnumber=\"54\">Now 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.</VERS>\r\n      <VERS vnumber=\"55\">And they gave them Hebron in the land of Judah, and the suburbs thereof round about it.</VERS>\r\n      <VERS vnumber=\"56\">But the fields of the city, and the villages thereof, they gave to Caleb the son of Jephunneh.</VERS>\r\n      <VERS vnumber=\"57\">And 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,</VERS>\r\n      <VERS vnumber=\"58\">And Hilen with her suburbs, Debir with her suburbs,</VERS>\r\n      <VERS vnumber=\"59\">And Ashan with her suburbs, and Bethshemesh with her suburbs:</VERS>\r\n      <VERS vnumber=\"60\">And 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.</VERS>\r\n      <VERS vnumber=\"61\">And 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.</VERS>\r\n      <VERS vnumber=\"62\">And 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.</VERS>\r\n      <VERS vnumber=\"63\">Unto 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.</VERS>\r\n      <VERS vnumber=\"64\">And the children of Israel gave to the Levites these cities with their suburbs.</VERS>\r\n      <VERS vnumber=\"65\">And 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.</VERS>\r\n      <VERS vnumber=\"66\">And the residue of the families of the sons of Kohath had cities of their coasts out of the tribe of Ephraim.</VERS>\r\n      <VERS vnumber=\"67\">And they gave unto them, of the cities of refuge, Shechem in mount Ephraim with her suburbs; they gave also Gezer with her suburbs,</VERS>\r\n      <VERS vnumber=\"68\">And Jokmeam with her suburbs, and Bethhoron with her suburbs,</VERS>\r\n      <VERS vnumber=\"69\">And Aijalon with her suburbs, and Gathrimmon with her suburbs:</VERS>\r\n      <VERS vnumber=\"70\">And 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.</VERS>\r\n      <VERS vnumber=\"71\">Unto 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:</VERS>\r\n      <VERS vnumber=\"72\">And out of the tribe of Issachar; Kedesh with her suburbs, Daberath with her suburbs,</VERS>\r\n      <VERS vnumber=\"73\">And Ramoth with her suburbs, and Anem with her suburbs:</VERS>\r\n      <VERS vnumber=\"74\">And out of the tribe of Asher; Mashal with her suburbs, and Abdon with her suburbs,</VERS>\r\n      <VERS vnumber=\"75\">And Hukok with her suburbs, and Rehob with her suburbs:</VERS>\r\n      <VERS vnumber=\"76\">And out of the tribe of Naphtali; Kedesh in Galilee with her suburbs, and Hammon with her suburbs, and Kirjathaim with her suburbs.</VERS>\r\n      <VERS vnumber=\"77\">Unto the rest of the children of Merari were given out of the tribe of Zebulun, Rimmon with her suburbs, Tabor with her suburbs:</VERS>\r\n      <VERS vnumber=\"78\">And 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,</VERS>\r\n      <VERS vnumber=\"79\">Kedemoth also with her suburbs, and Mephaath with her suburbs:</VERS>\r\n      <VERS vnumber=\"80\">And out of the tribe of Gad; Ramoth in Gilead with her suburbs, and Mahanaim with her suburbs,</VERS>\r\n      <VERS vnumber=\"81\">And Heshbon with her suburbs, and Jazer with her suburbs.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">Now the sons of Issachar were, Tola, and Puah, Jashub, and Shimron, four.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And the sons of Uzzi; Izrahiah: and the sons of Izrahiah; Michael, and Obadiah, and Joel, Ishiah, five: all of them chief men.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And their brethren among all the families of Issachar were valiant men of might, reckoned in all by their genealogies fourscore and seven thousand.</VERS>\r\n      <VERS vnumber=\"6\">The sons of Benjamin; Bela, and Becher, and Jediael, three.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">The sons also of Jediael; Bilhan: and the sons of Bilhan; Jeush, and Benjamin, and Ehud, and Chenaanah, and Zethan, and Tharshish, and Ahishahar.</VERS>\r\n      <VERS vnumber=\"11\">All 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.</VERS>\r\n      <VERS vnumber=\"12\">Shuppim also, and Huppim, the children of Ir, and Hushim, the sons of Aher.</VERS>\r\n      <VERS vnumber=\"13\">The sons of Naphtali; Jahziel, and Guni, and Jezer, and Shallum, the sons of Bilhah.</VERS>\r\n      <VERS vnumber=\"14\">The sons of Manasseh; Ashriel, whom she bare: (but his concubine the Aramitess bare Machir the father of Gilead:</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And the sons of Ulam; Bedan. These were the sons of Gilead, the son of Machir, the son of Manasseh.</VERS>\r\n      <VERS vnumber=\"18\">And his sister Hammoleketh bare Ishod, and Abiezer, and Mahalah.</VERS>\r\n      <VERS vnumber=\"19\">And the sons of Shemida were, Ahian, and Shechem, and Likhi, and Aniam.</VERS>\r\n      <VERS vnumber=\"20\">And the sons of Ephraim; Shuthelah, and Bered his son, and Tahath his son, and Eladah his son, and Tahath his son,</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And Ephraim their father mourned many days, and his brethren came to comfort him.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">(And his daughter was Sherah, who built Bethhoron the nether, and the upper, and Uzzensherah.)</VERS>\r\n      <VERS vnumber=\"25\">And Rephah was his son, also Resheph, and Telah his son, and Tahan his son,</VERS>\r\n      <VERS vnumber=\"26\">Laadan his son, Ammihud his son, Elishama his son,</VERS>\r\n      <VERS vnumber=\"27\">Non his son, Jehoshua his son.</VERS>\r\n      <VERS vnumber=\"28\">And 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:</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">The sons of Asher; Imnah, and Isuah, and Ishuai, and Beriah, and Serah their sister.</VERS>\r\n      <VERS vnumber=\"31\">And the sons of Beriah; Heber, and Malchiel, who is the father of Birzavith.</VERS>\r\n      <VERS vnumber=\"32\">And Heber begat Japhlet, and Shomer, and Hotham, and Shua their sister.</VERS>\r\n      <VERS vnumber=\"33\">And the sons of Japhlet; Pasach, and Bimhal, and Ashvath. These are the children of Japhlet.</VERS>\r\n      <VERS vnumber=\"34\">And the sons of Shamer; Ahi, and Rohgah, Jehubbah, and Aram.</VERS>\r\n      <VERS vnumber=\"35\">And the sons of his brother Helem; Zophah, and Imna, and Shelesh, and Amal.</VERS>\r\n      <VERS vnumber=\"36\">The sons of Zophah; Suah, and Harnepher, and Shual, and Beri, and Imrah,</VERS>\r\n      <VERS vnumber=\"37\">Bezer, and Hod, and Shamma, and Shilshah, and Ithran, and Beera.</VERS>\r\n      <VERS vnumber=\"38\">And the sons of Jether; Jephunneh, and Pispah, and Ara.</VERS>\r\n      <VERS vnumber=\"39\">And the sons of Ulla; Arah, and Haniel, and Rezia.</VERS>\r\n      <VERS vnumber=\"40\">All 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">Now Benjamin begat Bela his firstborn, Ashbel the second, and Aharah the third,</VERS>\r\n      <VERS vnumber=\"2\">Nohah the fourth, and Rapha the fifth.</VERS>\r\n      <VERS vnumber=\"3\">And the sons of Bela were, Addar, and Gera, and Abihud,</VERS>\r\n      <VERS vnumber=\"4\">And Abishua, and Naaman, and Ahoah,</VERS>\r\n      <VERS vnumber=\"5\">And Gera, and Shephuphan, and Huram.</VERS>\r\n      <VERS vnumber=\"6\">And these are the sons of Ehud: these are the heads of the fathers of the inhabitants of Geba, and they removed them to Manahath:</VERS>\r\n      <VERS vnumber=\"7\">And Naaman, and Ahiah, and Gera, he removed them, and begat Uzza, and Ahihud.</VERS>\r\n      <VERS vnumber=\"8\">And Shaharaim begat children in the country of Moab, after he had sent them away; Hushim and Baara were his wives.</VERS>\r\n      <VERS vnumber=\"9\">And he begat of Hodesh his wife, Jobab, and Zibia, and Mesha, and Malcham,</VERS>\r\n      <VERS vnumber=\"10\">And Jeuz, and Shachia, and Mirma. These were his sons, heads of the fathers.</VERS>\r\n      <VERS vnumber=\"11\">And of Hushim he begat Abitub, and Elpaal.</VERS>\r\n      <VERS vnumber=\"12\">The sons of Elpaal; Eber, and Misham, and Shamed, who built Ono, and Lod, with the towns thereof:</VERS>\r\n      <VERS vnumber=\"13\">Beriah also, and Shema, who were heads of the fathers of the inhabitants of Aijalon, who drove away the inhabitants of Gath:</VERS>\r\n      <VERS vnumber=\"14\">And Ahio, Shashak, and Jeremoth,</VERS>\r\n      <VERS vnumber=\"15\">And Zebadiah, and Arad, and Ader,</VERS>\r\n      <VERS vnumber=\"16\">And Michael, and Ispah, and Joha, the sons of Beriah;</VERS>\r\n      <VERS vnumber=\"17\">And Zebadiah, and Meshullam, and Hezeki, and Heber,</VERS>\r\n      <VERS vnumber=\"18\">Ishmerai also, and Jezliah, and Jobab, the sons of Elpaal;</VERS>\r\n      <VERS vnumber=\"19\">And Jakim, and Zichri, and Zabdi,</VERS>\r\n      <VERS vnumber=\"20\">And Elienai, and Zilthai, and Eliel,</VERS>\r\n      <VERS vnumber=\"21\">And Adaiah, and Beraiah, and Shimrath, the sons of Shimhi;</VERS>\r\n      <VERS vnumber=\"22\">And Ishpan, and Heber, and Eliel,</VERS>\r\n      <VERS vnumber=\"23\">And Abdon, and Zichri, and Hanan,</VERS>\r\n      <VERS vnumber=\"24\">And Hananiah, and Elam, and Antothijah,</VERS>\r\n      <VERS vnumber=\"25\">And Iphedeiah, and Penuel, the sons of Shashak;</VERS>\r\n      <VERS vnumber=\"26\">And Shamsherai, and Shehariah, and Athaliah,</VERS>\r\n      <VERS vnumber=\"27\">And Jaresiah, and Eliah, and Zichri, the sons of Jeroham.</VERS>\r\n      <VERS vnumber=\"28\">These were heads of the fathers, by their generations, chief men. These dwelt in Jerusalem.</VERS>\r\n      <VERS vnumber=\"29\">And at Gibeon dwelt the father of Gibeon; whose wife's name was Maachah:</VERS>\r\n      <VERS vnumber=\"30\">And his firstborn son Abdon, and Zur, and Kish, and Baal, and Nadab,</VERS>\r\n      <VERS vnumber=\"31\">And Gedor, and Ahio, and Zacher.</VERS>\r\n      <VERS vnumber=\"32\">And Mikloth begat Shimeah. And these also dwelt with their brethren in Jerusalem, over against them.</VERS>\r\n      <VERS vnumber=\"33\">And Ner begat Kish, and Kish begat Saul, and Saul begat Jonathan, and Malchishua, and Abinadab, and Eshbaal.</VERS>\r\n      <VERS vnumber=\"34\">And the son of Jonathan was Meribbaal; and Meribbaal begat Micah.</VERS>\r\n      <VERS vnumber=\"35\">And the sons of Micah were, Pithon, and Melech, and Tarea, and Ahaz.</VERS>\r\n      <VERS vnumber=\"36\">And Ahaz begat Jehoadah; and Jehoadah begat Alemeth, and Azmaveth, and Zimri; and Zimri begat Moza,</VERS>\r\n      <VERS vnumber=\"37\">And Moza begat Binea: Rapha was his son, Eleasah his son, Azel his son:</VERS>\r\n      <VERS vnumber=\"38\">And 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.</VERS>\r\n      <VERS vnumber=\"39\">And the sons of Eshek his brother were, Ulam his firstborn, Jehush the second, and Eliphelet the third.</VERS>\r\n      <VERS vnumber=\"40\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">So 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.</VERS>\r\n      <VERS vnumber=\"2\">Now the first inhabitants that dwelt in their possessions in their cities were, the Israelites, the priests, Levites, and the Nethinims.</VERS>\r\n      <VERS vnumber=\"3\">And in Jerusalem dwelt of the children of Judah, and of the children of Benjamin, and of the children of Ephraim, and Manasseh;</VERS>\r\n      <VERS vnumber=\"4\">Uthai 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.</VERS>\r\n      <VERS vnumber=\"5\">And of the Shilonites; Asaiah the firstborn, and his sons.</VERS>\r\n      <VERS vnumber=\"6\">And of the sons of Zerah; Jeuel, and their brethren, six hundred and ninety.</VERS>\r\n      <VERS vnumber=\"7\">And of the sons of Benjamin; Sallu the son of Meshullam, the son of Hodaviah, the son of Hasenuah,</VERS>\r\n      <VERS vnumber=\"8\">And 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;</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And of the priests; Jedaiah, and Jehoiarib, and Jachin,</VERS>\r\n      <VERS vnumber=\"11\">And 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;</VERS>\r\n      <VERS vnumber=\"12\">And 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;</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And of the Levites; Shemaiah the son of Hasshub, the son of Azrikam, the son of Hashabiah, of the sons of Merari;</VERS>\r\n      <VERS vnumber=\"15\">And Bakbakkar, Heresh, and Galal, and Mattaniah the son of Micah, the son of Zichri, the son of Asaph;</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And the porters were, Shallum, and Akkub, and Talmon, and Ahiman, and their brethren: Shallum was the chief;</VERS>\r\n      <VERS vnumber=\"18\">Who hitherto waited in the king's gate eastward: they were porters in the companies of the children of Levi.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And Phinehas the son of Eleazar was the ruler over them in time past, and the LORD was with him.</VERS>\r\n      <VERS vnumber=\"21\">And Zechariah the son of Meshelemiah was porter of the door of the tabernacle of the congregation.</VERS>\r\n      <VERS vnumber=\"22\">All 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.</VERS>\r\n      <VERS vnumber=\"23\">So they and their children had the oversight of the gates of the house of the LORD, namely, the house of the tabernacle, by wards.</VERS>\r\n      <VERS vnumber=\"24\">In four quarters were the porters, toward the east, west, north, and south.</VERS>\r\n      <VERS vnumber=\"25\">And their brethren, which were in their villages, were to come after seven days from time to time with them.</VERS>\r\n      <VERS vnumber=\"26\">For these Levites, the four chief porters, were in their set office, and were over the chambers and treasuries of the house of God.</VERS>\r\n      <VERS vnumber=\"27\">And they lodged round about the house of God, because the charge was upon them, and the opening thereof every morning pertained to them.</VERS>\r\n      <VERS vnumber=\"28\">And certain of them had the charge of the ministering vessels, that they should bring them in and out by tale.</VERS>\r\n      <VERS vnumber=\"29\">Some 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.</VERS>\r\n      <VERS vnumber=\"30\">And some of the sons of the priests made the ointment of the spices.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n      <VERS vnumber=\"32\">And other of their brethren, of the sons of the Kohathites, were over the shewbread, to prepare it every sabbath.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">These chief fathers of the Levites were chief throughout their generations; these dwelt at Jerusalem.</VERS>\r\n      <VERS vnumber=\"35\">And in Gibeon dwelt the father of Gibeon, Jehiel, whose wife's name was Maachah:</VERS>\r\n      <VERS vnumber=\"36\">And his firstborn son Abdon, then Zur, and Kish, and Baal, and Ner, and Nadab,</VERS>\r\n      <VERS vnumber=\"37\">And Gedor, and Ahio, and Zechariah, and Mikloth.</VERS>\r\n      <VERS vnumber=\"38\">And Mikloth begat Shimeam. And they also dwelt with their brethren at Jerusalem, over against their brethren.</VERS>\r\n      <VERS vnumber=\"39\">And Ner begat Kish; and Kish begat Saul; and Saul begat Jonathan, and Malchishua, and Abinadab, and Eshbaal.</VERS>\r\n      <VERS vnumber=\"40\">And the son of Jonathan was Meribbaal: and Meribbaal begat Micah.</VERS>\r\n      <VERS vnumber=\"41\">And the sons of Micah were, Pithon, and Melech, and Tahrea, and Ahaz.</VERS>\r\n      <VERS vnumber=\"42\">And Ahaz begat Jarah; and Jarah begat Alemeth, and Azmaveth, and Zimri; and Zimri begat Moza;</VERS>\r\n      <VERS vnumber=\"43\">And Moza begat Binea; and Rephaiah his son, Eleasah his son, Azel his son.</VERS>\r\n      <VERS vnumber=\"44\">And Azel had six sons, whose names are these, Azrikam, Bocheru, and Ishmael, and Sheariah, and Obadiah, and Hanan: these were the sons of Azel.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">Now the Philistines fought against Israel; and the men of Israel fled from before the Philistines, and fell down slain in mount Gilboa.</VERS>\r\n      <VERS vnumber=\"2\">And the Philistines followed hard after Saul, and after his sons; and the Philistines slew Jonathan, and Abinadab, and Malchishua, the sons of Saul.</VERS>\r\n      <VERS vnumber=\"3\">And the battle went sore against Saul, and the archers hit him, and he was wounded of the archers.</VERS>\r\n      <VERS vnumber=\"4\">Then 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.</VERS>\r\n      <VERS vnumber=\"5\">And when his armourbearer saw that Saul was dead, he fell likewise on the sword, and died.</VERS>\r\n      <VERS vnumber=\"6\">So Saul died, and his three sons, and all his house died together.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And they put his armour in the house of their gods, and fastened his head in the temple of Dagon.</VERS>\r\n      <VERS vnumber=\"11\">And when all Jabeshgilead heard all that the Philistines had done to Saul,</VERS>\r\n      <VERS vnumber=\"12\">They 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.</VERS>\r\n      <VERS vnumber=\"13\">So 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;</VERS>\r\n      <VERS vnumber=\"14\">And enquired not of the LORD: therefore he slew him, and turned the kingdom unto David the son of Jesse.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">Then all Israel gathered themselves to David unto Hebron, saying, Behold, we are thy bone and thy flesh.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"4\">And David and all Israel went to Jerusalem, which is Jebus; where the Jebusites were, the inhabitants of the land.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And David said, Whosoever smiteth the Jebusites first shall be chief and captain. So Joab the son of Zeruiah went first up, and was chief.</VERS>\r\n      <VERS vnumber=\"7\">And David dwelt in the castle; therefore they called it the city of David.</VERS>\r\n      <VERS vnumber=\"8\">And he built the city round about, even from Millo round about: and Joab repaired the rest of the city.</VERS>\r\n      <VERS vnumber=\"9\">So David waxed greater and greater: for the LORD of hosts was with him.</VERS>\r\n      <VERS vnumber=\"10\">These 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And after him was Eleazar the son of Dodo, the Ahohite, who was one of the three mighties.</VERS>\r\n      <VERS vnumber=\"13\">He 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">Now 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.</VERS>\r\n      <VERS vnumber=\"16\">And David was then in the hold, and the Philistines' garrison was then at Bethlehem.</VERS>\r\n      <VERS vnumber=\"17\">And David longed, and said, Oh that one would give me drink of the water of the well of Bethlehem, that is at the gate!</VERS>\r\n      <VERS vnumber=\"18\">And 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,</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">Of the three, he was more honourable than the two; for he was their captain: howbeit he attained not to the first three.</VERS>\r\n      <VERS vnumber=\"22\">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: also he went down and slew a lion in a pit in a snowy day.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">These things did Benaiah the son of Jehoiada, and had the name among the three mighties.</VERS>\r\n      <VERS vnumber=\"25\">Behold, he was honourable among the thirty, but attained not to the first three: and David set him over his guard.</VERS>\r\n      <VERS vnumber=\"26\">Also the valiant men of the armies were, Asahel the brother of Joab, Elhanan the son of Dodo of Bethlehem,</VERS>\r\n      <VERS vnumber=\"27\">Shammoth the Harorite, Helez the Pelonite,</VERS>\r\n      <VERS vnumber=\"28\">Ira the son of Ikkesh the Tekoite, Abiezer the Antothite,</VERS>\r\n      <VERS vnumber=\"29\">Sibbecai the Hushathite, Ilai the Ahohite,</VERS>\r\n      <VERS vnumber=\"30\">Maharai the Netophathite, Heled the son of Baanah the Netophathite,</VERS>\r\n      <VERS vnumber=\"31\">Ithai the son of Ribai of Gibeah, that pertained to the children of Benjamin, Benaiah the Pirathonite,</VERS>\r\n      <VERS vnumber=\"32\">Hurai of the brooks of Gaash, Abiel the Arbathite,</VERS>\r\n      <VERS vnumber=\"33\">Azmaveth the Baharumite, Eliahba the Shaalbonite,</VERS>\r\n      <VERS vnumber=\"34\">The sons of Hashem the Gizonite, Jonathan the son of Shage the Hararite,</VERS>\r\n      <VERS vnumber=\"35\">Ahiam the son of Sacar the Hararite, Eliphal the son of Ur,</VERS>\r\n      <VERS vnumber=\"36\">Hepher the Mecherathite, Ahijah the Pelonite,</VERS>\r\n      <VERS vnumber=\"37\">Hezro the Carmelite, Naarai the son of Ezbai,</VERS>\r\n      <VERS vnumber=\"38\">Joel the brother of Nathan, Mibhar the son of Haggeri,</VERS>\r\n      <VERS vnumber=\"39\">Zelek the Ammonite, Naharai the Berothite, the armourbearer of Joab the son of Zeruiah,</VERS>\r\n      <VERS vnumber=\"40\">Ira the Ithrite, Gareb the Ithrite,</VERS>\r\n      <VERS vnumber=\"41\">Uriah the Hittite, Zabad the son of Ahlai,</VERS>\r\n      <VERS vnumber=\"42\">Adina the son of Shiza the Reubenite, a captain of the Reubenites, and thirty with him,</VERS>\r\n      <VERS vnumber=\"43\">Hanan the son of Maachah, and Joshaphat the Mithnite,</VERS>\r\n      <VERS vnumber=\"44\">Uzzia the Ashterathite, Shama and Jehiel the sons of Hothan the Aroerite,</VERS>\r\n      <VERS vnumber=\"45\">Jediael the son of Shimri, and Joha his brother, the Tizite,</VERS>\r\n      <VERS vnumber=\"46\">Eliel the Mahavite, and Jeribai, and Joshaviah, the sons of Elnaam, and Ithmah the Moabite,</VERS>\r\n      <VERS vnumber=\"47\">Eliel, and Obed, and Jasiel the Mesobaite.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">Now 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.</VERS>\r\n      <VERS vnumber=\"2\">They 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.</VERS>\r\n      <VERS vnumber=\"3\">The 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,</VERS>\r\n      <VERS vnumber=\"4\">And Ismaiah the Gibeonite, a mighty man among the thirty, and over the thirty; and Jeremiah, and Jahaziel, and Johanan, and Josabad the Gederathite,</VERS>\r\n      <VERS vnumber=\"5\">Eluzai, and Jerimoth, and Bealiah, and Shemariah, and Shephatiah the Haruphite,</VERS>\r\n      <VERS vnumber=\"6\">Elkanah, and Jesiah, and Azareel, and Joezer, and Jashobeam, the Korhites,</VERS>\r\n      <VERS vnumber=\"7\">And Joelah, and Zebadiah, the sons of Jeroham of Gedor.</VERS>\r\n      <VERS vnumber=\"8\">And 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;</VERS>\r\n      <VERS vnumber=\"9\">Ezer the first, Obadiah the second, Eliab the third,</VERS>\r\n      <VERS vnumber=\"10\">Mishmannah the fourth, Jeremiah the fifth,</VERS>\r\n      <VERS vnumber=\"11\">Attai the sixth, Eliel the seventh,</VERS>\r\n      <VERS vnumber=\"12\">Johanan the eighth, Elzabad the ninth,</VERS>\r\n      <VERS vnumber=\"13\">Jeremiah the tenth, Machbanai the eleventh.</VERS>\r\n      <VERS vnumber=\"14\">These were of the sons of Gad, captains of the host: one of the least was over an hundred, and the greatest over a thousand.</VERS>\r\n      <VERS vnumber=\"15\">These 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.</VERS>\r\n      <VERS vnumber=\"16\">And there came of the children of Benjamin and Judah to the hold unto David.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">Then 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">As 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.</VERS>\r\n      <VERS vnumber=\"21\">And they helped David against the band of the rovers: for they were all mighty men of valour, and were captains in the host.</VERS>\r\n      <VERS vnumber=\"22\">For at that time day by day there came to David to help him, until it was a great host, like the host of God.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">The children of Judah that bare shield and spear were six thousand and eight hundred, ready armed to the war.</VERS>\r\n      <VERS vnumber=\"25\">Of the children of Simeon, mighty men of valour for the war, seven thousand and one hundred.</VERS>\r\n      <VERS vnumber=\"26\">Of the children of Levi four thousand and six hundred.</VERS>\r\n      <VERS vnumber=\"27\">And Jehoiada was the leader of the Aaronites, and with him were three thousand and seven hundred;</VERS>\r\n      <VERS vnumber=\"28\">And Zadok, a young man mighty of valour, and of his father's house twenty and two captains.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">And of the children of Ephraim twenty thousand and eight hundred, mighty men of valour, famous throughout the house of their fathers.</VERS>\r\n      <VERS vnumber=\"31\">And of the half tribe of Manasseh eighteen thousand, which were expressed by name, to come and make David king.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">Of 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.</VERS>\r\n      <VERS vnumber=\"34\">And of Naphtali a thousand captains, and with them with shield and spear thirty and seven thousand.</VERS>\r\n      <VERS vnumber=\"35\">And of the Danites expert in war twenty and eight thousand and six hundred.</VERS>\r\n      <VERS vnumber=\"36\">And of Asher, such as went forth to battle, expert in war, forty thousand.</VERS>\r\n      <VERS vnumber=\"37\">And 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.</VERS>\r\n      <VERS vnumber=\"38\">All 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.</VERS>\r\n      <VERS vnumber=\"39\">And there they were with David three days, eating and drinking: for their brethren had prepared for them.</VERS>\r\n      <VERS vnumber=\"40\">Moreover 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">And David consulted with the captains of thousands and hundreds, and with every leader.</VERS>\r\n      <VERS vnumber=\"2\">And 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:</VERS>\r\n      <VERS vnumber=\"3\">And let us bring again the ark of our God to us: for we enquired not at it in the days of Saul.</VERS>\r\n      <VERS vnumber=\"4\">And all the congregation said that they would do so: for the thing was right in the eyes of all the people.</VERS>\r\n      <VERS vnumber=\"5\">So David gathered all Israel together, from Shihor of Egypt even unto the entering of Hemath, to bring the ark of God from Kirjathjearim.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And they carried the ark of God in a new cart out of the house of Abinadab: and Uzza and Ahio drave the cart.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And when they came unto the threshingfloor of Chidon, Uzza put forth his hand to hold the ark; for the oxen stumbled.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And David was displeased, because the LORD had made a breach upon Uzza: wherefore that place is called Perezuzza to this day.</VERS>\r\n      <VERS vnumber=\"12\">And David was afraid of God that day, saying, How shall I bring the ark of God home to me?</VERS>\r\n      <VERS vnumber=\"13\">So David brought not the ark home to himself to the city of David, but carried it aside into the house of Obededom the Gittite.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">Now Hiram king of Tyre sent messengers to David, and timber of cedars, with masons and carpenters, to build him an house.</VERS>\r\n      <VERS vnumber=\"2\">And David perceived that the LORD had confirmed him king over Israel, for his kingdom was lifted up on high, because of his people Israel.</VERS>\r\n      <VERS vnumber=\"3\">And David took more wives at Jerusalem: and David begat more sons and daughters.</VERS>\r\n      <VERS vnumber=\"4\">Now these are the names of his children which he had in Jerusalem; Shammua, and Shobab, Nathan, and Solomon,</VERS>\r\n      <VERS vnumber=\"5\">And Ibhar, and Elishua, and Elpalet,</VERS>\r\n      <VERS vnumber=\"6\">And Nogah, and Nepheg, and Japhia,</VERS>\r\n      <VERS vnumber=\"7\">And Elishama, and Beeliada, and Eliphalet.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And the Philistines came and spread themselves in the valley of Rephaim.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">So 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.</VERS>\r\n      <VERS vnumber=\"12\">And when they had left their gods there, David gave a commandment, and they were burned with fire.</VERS>\r\n      <VERS vnumber=\"13\">And the Philistines yet again spread themselves abroad in the valley.</VERS>\r\n      <VERS vnumber=\"14\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">David therefore did as God commanded him: and they smote the host of the Philistines from Gibeon even to Gazer.</VERS>\r\n      <VERS vnumber=\"17\">And the fame of David went out into all lands; and the LORD brought the fear of him upon all nations.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">And David made him houses in the city of David, and prepared a place for the ark of God, and pitched for it a tent.</VERS>\r\n      <VERS vnumber=\"2\">Then 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.</VERS>\r\n      <VERS vnumber=\"3\">And David gathered all Israel together to Jerusalem, to bring up the ark of the LORD unto his place, which he had prepared for it.</VERS>\r\n      <VERS vnumber=\"4\">And David assembled the children of Aaron, and the Levites:</VERS>\r\n      <VERS vnumber=\"5\">Of the sons of Kohath; Uriel the chief, and his brethren an hundred and twenty:</VERS>\r\n      <VERS vnumber=\"6\">Of the sons of Merari; Asaiah the chief, and his brethren two hundred and twenty:</VERS>\r\n      <VERS vnumber=\"7\">Of the sons of Gershom; Joel the chief, and his brethren an hundred and thirty:</VERS>\r\n      <VERS vnumber=\"8\">Of the sons of Elizaphan; Shemaiah the chief, and his brethren two hundred:</VERS>\r\n      <VERS vnumber=\"9\">Of the sons of Hebron; Eliel the chief, and his brethren fourscore:</VERS>\r\n      <VERS vnumber=\"10\">Of the sons of Uzziel; Amminadab the chief, and his brethren an hundred and twelve.</VERS>\r\n      <VERS vnumber=\"11\">And David called for Zadok and Abiathar the priests, and for the Levites, for Uriel, Asaiah, and Joel, Shemaiah, and Eliel, and Amminadab,</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">For 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.</VERS>\r\n      <VERS vnumber=\"14\">So the priests and the Levites sanctified themselves to bring up the ark of the LORD God of Israel.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">So 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;</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">So the singers, Heman, Asaph, and Ethan, were appointed to sound with cymbals of brass;</VERS>\r\n      <VERS vnumber=\"20\">And Zechariah, and Aziel, and Shemiramoth, and Jehiel, and Unni, and Eliab, and Maaseiah, and Benaiah, with psalteries on Alamoth;</VERS>\r\n      <VERS vnumber=\"21\">And Mattithiah, and Elipheleh, and Mikneiah, and Obededom, and Jeiel, and Azaziah, with harps on the Sheminith to excel.</VERS>\r\n      <VERS vnumber=\"22\">And Chenaniah, chief of the Levites, was for song: he instructed about the song, because he was skilful.</VERS>\r\n      <VERS vnumber=\"23\">And Berechiah and Elkanah were doorkeepers for the ark.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">So 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">Thus 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.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">So 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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:</VERS>\r\n      <VERS vnumber=\"5\">Asaph 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;</VERS>\r\n      <VERS vnumber=\"6\">Benaiah also and Jahaziel the priests with trumpets continually before the ark of the covenant of God.</VERS>\r\n      <VERS vnumber=\"7\">Then on that day David delivered first this psalm to thank the LORD into the hand of Asaph and his brethren.</VERS>\r\n      <VERS vnumber=\"8\">Give thanks unto the LORD, call upon his name, make known his deeds among the people.</VERS>\r\n      <VERS vnumber=\"9\">Sing unto him, sing psalms unto him, talk ye of all his wondrous works.</VERS>\r\n      <VERS vnumber=\"10\">Glory ye in his holy name: let the heart of them rejoice that seek the LORD.</VERS>\r\n      <VERS vnumber=\"11\">Seek the LORD and his strength, seek his face continually.</VERS>\r\n      <VERS vnumber=\"12\">Remember his marvellous works that he hath done, his wonders, and the judgments of his mouth;</VERS>\r\n      <VERS vnumber=\"13\">O ye seed of Israel his servant, ye children of Jacob, his chosen ones.</VERS>\r\n      <VERS vnumber=\"14\">He is the LORD our God; his judgments are in all the earth.</VERS>\r\n      <VERS vnumber=\"15\">Be ye mindful always of his covenant; the word which he commanded to a thousand generations;</VERS>\r\n      <VERS vnumber=\"16\">Even of the covenant which he made with Abraham, and of his oath unto Isaac;</VERS>\r\n      <VERS vnumber=\"17\">And hath confirmed the same to Jacob for a law, and to Israel for an everlasting covenant,</VERS>\r\n      <VERS vnumber=\"18\">Saying, Unto thee will I give the land of Canaan, the lot of your inheritance;</VERS>\r\n      <VERS vnumber=\"19\">When ye were but few, even a few, and strangers in it.</VERS>\r\n      <VERS vnumber=\"20\">And when they went from nation to nation, and from one kingdom to another people;</VERS>\r\n      <VERS vnumber=\"21\">He suffered no man to do them wrong: yea, he reproved kings for their sakes,</VERS>\r\n      <VERS vnumber=\"22\">Saying, Touch not mine anointed, and do my prophets no harm.</VERS>\r\n      <VERS vnumber=\"23\">Sing unto the LORD, all the earth; shew forth from day to day his salvation.</VERS>\r\n      <VERS vnumber=\"24\">Declare his glory among the heathen; his marvellous works among all nations.</VERS>\r\n      <VERS vnumber=\"25\">For great is the LORD, and greatly to be praised: he also is to be feared above all gods.</VERS>\r\n      <VERS vnumber=\"26\">For all the gods of the people are idols: but the LORD made the heavens.</VERS>\r\n      <VERS vnumber=\"27\">Glory and honour are in his presence; strength and gladness are in his place.</VERS>\r\n      <VERS vnumber=\"28\">Give unto the LORD, ye kindreds of the people, give unto the LORD glory and strength.</VERS>\r\n      <VERS vnumber=\"29\">Give unto the LORD the glory due unto his name: bring an offering, and come before him: worship the LORD in the beauty of holiness.</VERS>\r\n      <VERS vnumber=\"30\">Fear before him, all the earth: the world also shall be stable, that it be not moved.</VERS>\r\n      <VERS vnumber=\"31\">Let the heavens be glad, and let the earth rejoice: and let men say among the nations, The LORD reigneth.</VERS>\r\n      <VERS vnumber=\"32\">Let the sea roar, and the fulness thereof: let the fields rejoice, and all that is therein.</VERS>\r\n      <VERS vnumber=\"33\">Then shall the trees of the wood sing out at the presence of the LORD, because he cometh to judge the earth.</VERS>\r\n      <VERS vnumber=\"34\">O give thanks unto the LORD; for he is good; for his mercy endureth for ever.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">Blessed be the LORD God of Israel for ever and ever. And all the people said, Amen, and praised the LORD.</VERS>\r\n      <VERS vnumber=\"37\">So 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:</VERS>\r\n      <VERS vnumber=\"38\">And Obededom with their brethren, threescore and eight; Obededom also the son of Jeduthun and Hosah to be porters:</VERS>\r\n      <VERS vnumber=\"39\">And Zadok the priest, and his brethren the priests, before the tabernacle of the LORD in the high place that was at Gibeon,</VERS>\r\n      <VERS vnumber=\"40\">To 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;</VERS>\r\n      <VERS vnumber=\"41\">And 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;</VERS>\r\n      <VERS vnumber=\"42\">And 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.</VERS>\r\n      <VERS vnumber=\"43\">And all the people departed every man to his house: and David returned to bless his house.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"17\">\r\n      <VERS vnumber=\"1\">Now 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.</VERS>\r\n      <VERS vnumber=\"2\">Then Nathan said unto David, Do all that is in thine heart; for God is with thee.</VERS>\r\n      <VERS vnumber=\"3\">And it came to pass the same night, that the word of God came to Nathan, saying,</VERS>\r\n      <VERS vnumber=\"4\">Go and tell David my servant, Thus saith the LORD, Thou shalt not build me an house to dwell in:</VERS>\r\n      <VERS vnumber=\"5\">For 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.</VERS>\r\n      <VERS vnumber=\"6\">Wheresoever 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?</VERS>\r\n      <VERS vnumber=\"7\">Now 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:</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">Also 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,</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">He shall build me an house, and I will stablish his throne for ever.</VERS>\r\n      <VERS vnumber=\"13\">I 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:</VERS>\r\n      <VERS vnumber=\"14\">But I will settle him in mine house and in my kingdom for ever: and his throne shall be established for evermore.</VERS>\r\n      <VERS vnumber=\"15\">According to all these words, and according to all this vision, so did Nathan speak unto David.</VERS>\r\n      <VERS vnumber=\"16\">And 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?</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">What can David speak more to thee for the honour of thy servant? for thou knowest thy servant.</VERS>\r\n      <VERS vnumber=\"19\">O 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.</VERS>\r\n      <VERS vnumber=\"20\">O LORD, there is none like thee, neither is there any God beside thee, according to all that we have heard with our ears.</VERS>\r\n      <VERS vnumber=\"21\">And 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?</VERS>\r\n      <VERS vnumber=\"22\">For thy people Israel didst thou make thine own people for ever; and thou, LORD, becamest their God.</VERS>\r\n      <VERS vnumber=\"23\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"24\">Let 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.</VERS>\r\n      <VERS vnumber=\"25\">For 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.</VERS>\r\n      <VERS vnumber=\"26\">And now, LORD, thou art God, and hast promised this goodness unto thy servant:</VERS>\r\n      <VERS vnumber=\"27\">Now 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"18\">\r\n      <VERS vnumber=\"1\">Now 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.</VERS>\r\n      <VERS vnumber=\"2\">And he smote Moab; and the Moabites became David's servants, and brought gifts.</VERS>\r\n      <VERS vnumber=\"3\">And David smote Hadarezer king of Zobah unto Hamath, as he went to stablish his dominion by the river Euphrates.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And when the Syrians of Damascus came to help Hadarezer king of Zobah, David slew of the Syrians two and twenty thousand men.</VERS>\r\n      <VERS vnumber=\"6\">Then David put garrisons in Syriadamascus; and the Syrians became David's servants, and brought gifts. Thus the LORD preserved David whithersoever he went.</VERS>\r\n      <VERS vnumber=\"7\">And David took the shields of gold that were on the servants of Hadarezer, and brought them to Jerusalem.</VERS>\r\n      <VERS vnumber=\"8\">Likewise 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.</VERS>\r\n      <VERS vnumber=\"9\">Now when Tou king of Hamath heard how David had smitten all the host of Hadarezer king of Zobah;</VERS>\r\n      <VERS vnumber=\"10\">He 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.</VERS>\r\n      <VERS vnumber=\"11\">Them 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.</VERS>\r\n      <VERS vnumber=\"12\">Moreover Abishai the son of Zeruiah slew of the Edomites in the valley of salt eighteen thousand.</VERS>\r\n      <VERS vnumber=\"13\">And he put garrisons in Edom; and all the Edomites became David's servants. Thus the LORD preserved David whithersoever he went.</VERS>\r\n      <VERS vnumber=\"14\">So David reigned over all Israel, and executed judgment and justice among all his people.</VERS>\r\n      <VERS vnumber=\"15\">And Joab the son of Zeruiah was over the host; and Jehoshaphat the son of Ahilud, recorder.</VERS>\r\n      <VERS vnumber=\"16\">And Zadok the son of Ahitub, and Abimelech the son of Abiathar, were the priests; and Shavsha was scribe;</VERS>\r\n      <VERS vnumber=\"17\">And Benaiah the son of Jehoiada was over the Cherethites and the Pelethites; and the sons of David were chief about the king.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"19\">\r\n      <VERS vnumber=\"1\">Now it came to pass after this, that Nahash the king of the children of Ammon died, and his son reigned in his stead.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">But 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?</VERS>\r\n      <VERS vnumber=\"4\">Wherefore Hanun took David's servants, and shaved them, and cut off their garments in the midst hard by their buttocks, and sent them away.</VERS>\r\n      <VERS vnumber=\"5\">Then 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">So 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.</VERS>\r\n      <VERS vnumber=\"8\">And when David heard of it, he sent Joab, and all the host of the mighty men.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">Now 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">Be 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.</VERS>\r\n      <VERS vnumber=\"14\">So Joab and the people that were with him drew nigh before the Syrians unto the battle; and they fled before him.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">But 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"20\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">But when he defied Israel, Jonathan the son of Shimea David's brother slew him.</VERS>\r\n      <VERS vnumber=\"8\">These were born unto the giant in Gath; and they fell by the hand of David, and by the hand of his servants.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"21\">\r\n      <VERS vnumber=\"1\">And Satan stood up against Israel, and provoked David to number Israel.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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?</VERS>\r\n      <VERS vnumber=\"4\">Nevertheless the king's word prevailed against Joab. Wherefore Joab departed, and went throughout all Israel, and came to Jerusalem.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">But Levi and Benjamin counted he not among them: for the king's word was abominable to Joab.</VERS>\r\n      <VERS vnumber=\"7\">And God was displeased with this thing; therefore he smote Israel.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And the LORD spake unto Gad, David's seer, saying,</VERS>\r\n      <VERS vnumber=\"10\">Go 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.</VERS>\r\n      <VERS vnumber=\"11\">So Gad came to David, and said unto him, Thus saith the LORD, Choose thee</VERS>\r\n      <VERS vnumber=\"12\">Either 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">So the LORD sent pestilence upon Israel: and there fell of Israel seventy thousand men.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">Then 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.</VERS>\r\n      <VERS vnumber=\"19\">And David went up at the saying of Gad, which he spake in the name of the LORD.</VERS>\r\n      <VERS vnumber=\"20\">And Ornan turned back, and saw the angel; and his four sons with him hid themselves. Now Ornan was threshing wheat.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">Then 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.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">So David gave to Ornan for the place six hundred shekels of gold by weight.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And the LORD commanded the angel; and he put up his sword again into the sheath thereof.</VERS>\r\n      <VERS vnumber=\"28\">At that time when David saw that the LORD had answered him in the threshingfloor of Ornan the Jebusite, then he sacrificed there.</VERS>\r\n      <VERS vnumber=\"29\">For 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.</VERS>\r\n      <VERS vnumber=\"30\">But David could not go before it to enquire of God: for he was afraid because of the sword of the angel of the LORD.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"22\">\r\n      <VERS vnumber=\"1\">Then David said, This is the house of the LORD God, and this is the altar of the burnt offering for Israel.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And David prepared iron in abundance for the nails for the doors of the gates, and for the joinings; and brass in abundance without weight;</VERS>\r\n      <VERS vnumber=\"4\">Also cedar trees in abundance: for the Zidonians and they of Tyre brought much cedar wood to David.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">Then he called for Solomon his son, and charged him to build an house for the LORD God of Israel.</VERS>\r\n      <VERS vnumber=\"7\">And 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:</VERS>\r\n      <VERS vnumber=\"8\">But 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.</VERS>\r\n      <VERS vnumber=\"9\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"10\">He 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.</VERS>\r\n      <VERS vnumber=\"11\">Now, 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.</VERS>\r\n      <VERS vnumber=\"12\">Only the LORD give thee wisdom and understanding, and give thee charge concerning Israel, that thou mayest keep the law of the LORD thy God.</VERS>\r\n      <VERS vnumber=\"13\">Then 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.</VERS>\r\n      <VERS vnumber=\"14\">Now, 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.</VERS>\r\n      <VERS vnumber=\"15\">Moreover 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.</VERS>\r\n      <VERS vnumber=\"16\">Of 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.</VERS>\r\n      <VERS vnumber=\"17\">David also commanded all the princes of Israel to help Solomon his son, saying,</VERS>\r\n      <VERS vnumber=\"18\">Is 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.</VERS>\r\n      <VERS vnumber=\"19\">Now 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"23\">\r\n      <VERS vnumber=\"1\">So when David was old and full of days, he made Solomon his son king over Israel.</VERS>\r\n      <VERS vnumber=\"2\">And he gathered together all the princes of Israel, with the priests and the Levites.</VERS>\r\n      <VERS vnumber=\"3\">Now 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.</VERS>\r\n      <VERS vnumber=\"4\">Of which, twenty and four thousand were to set forward the work of the house of the LORD; and six thousand were officers and judges:</VERS>\r\n      <VERS vnumber=\"5\">Moreover four thousand were porters; and four thousand praised the LORD with the instruments which I made, said David, to praise therewith.</VERS>\r\n      <VERS vnumber=\"6\">And David divided them into courses among the sons of Levi, namely, Gershon, Kohath, and Merari.</VERS>\r\n      <VERS vnumber=\"7\">Of the Gershonites were, Laadan, and Shimei.</VERS>\r\n      <VERS vnumber=\"8\">The sons of Laadan; the chief was Jehiel, and Zetham, and Joel, three.</VERS>\r\n      <VERS vnumber=\"9\">The sons of Shimei; Shelomith, and Haziel, and Haran, three. These were the chief of the fathers of Laadan.</VERS>\r\n      <VERS vnumber=\"10\">And the sons of Shimei were, Jahath, Zina, and Jeush, and Beriah. These four were the sons of Shimei.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">The sons of Kohath; Amram, Izhar, Hebron, and Uzziel, four.</VERS>\r\n      <VERS vnumber=\"13\">The 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.</VERS>\r\n      <VERS vnumber=\"14\">Now concerning Moses the man of God, his sons were named of the tribe of Levi.</VERS>\r\n      <VERS vnumber=\"15\">The sons of Moses were, Gershom, and Eliezer.</VERS>\r\n      <VERS vnumber=\"16\">Of the sons of Gershom, Shebuel was the chief.</VERS>\r\n      <VERS vnumber=\"17\">And the sons of Eliezer were, Rehabiah the chief. And Eliezer had none other sons; but the sons of Rehabiah were very many.</VERS>\r\n      <VERS vnumber=\"18\">Of the sons of Izhar; Shelomith the chief.</VERS>\r\n      <VERS vnumber=\"19\">Of the sons of Hebron; Jeriah the first, Amariah the second, Jahaziel the third, and Jekameam the fourth.</VERS>\r\n      <VERS vnumber=\"20\">Of the sons of Uzziel; Michah the first, and Jesiah the second.</VERS>\r\n      <VERS vnumber=\"21\">The sons of Merari; Mahli, and Mushi. The sons of Mahli; Eleazar, and Kish.</VERS>\r\n      <VERS vnumber=\"22\">And Eleazar died, and had no sons, but daughters: and their brethren the sons of Kish took them.</VERS>\r\n      <VERS vnumber=\"23\">The sons of Mushi; Mahli, and Eder, and Jeremoth, three.</VERS>\r\n      <VERS vnumber=\"24\">These 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.</VERS>\r\n      <VERS vnumber=\"25\">For David said, The LORD God of Israel hath given rest unto his people, that they may dwell in Jerusalem for ever:</VERS>\r\n      <VERS vnumber=\"26\">And also unto the Levites; they shall no more carry the tabernacle, nor any vessels of it for the service thereof.</VERS>\r\n      <VERS vnumber=\"27\">For by the last words of David the Levites were numbered from twenty years old and above:</VERS>\r\n      <VERS vnumber=\"28\">Because 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;</VERS>\r\n      <VERS vnumber=\"29\">Both 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;</VERS>\r\n      <VERS vnumber=\"30\">And to stand every morning to thank and praise the LORD, and likewise at even;</VERS>\r\n      <VERS vnumber=\"31\">And 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:</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"24\">\r\n      <VERS vnumber=\"1\">Now these are the divisions of the sons of Aaron. The sons of Aaron; Nadab, and Abihu, Eleazar, and Ithamar.</VERS>\r\n      <VERS vnumber=\"2\">But Nadab and Abihu died before their father, and had no children: therefore Eleazar and Ithamar executed the priest's office.</VERS>\r\n      <VERS vnumber=\"3\">And David distributed them, both Zadok of the sons of Eleazar, and Ahimelech of the sons of Ithamar, according to their offices in their service.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">Thus 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">Now the first lot came forth to Jehoiarib, the second to Jedaiah,</VERS>\r\n      <VERS vnumber=\"8\">The third to Harim, the fourth to Seorim,</VERS>\r\n      <VERS vnumber=\"9\">The fifth to Malchijah, the sixth to Mijamin,</VERS>\r\n      <VERS vnumber=\"10\">The seventh to Hakkoz, the eighth to Abijah,</VERS>\r\n      <VERS vnumber=\"11\">The ninth to Jeshua, the tenth to Shecaniah,</VERS>\r\n      <VERS vnumber=\"12\">The eleventh to Eliashib, the twelfth to Jakim,</VERS>\r\n      <VERS vnumber=\"13\">The thirteenth to Huppah, the fourteenth to Jeshebeab,</VERS>\r\n      <VERS vnumber=\"14\">The fifteenth to Bilgah, the sixteenth to Immer,</VERS>\r\n      <VERS vnumber=\"15\">The seventeenth to Hezir, the eighteenth to Aphses,</VERS>\r\n      <VERS vnumber=\"16\">The nineteenth to Pethahiah, the twentieth to Jehezekel,</VERS>\r\n      <VERS vnumber=\"17\">The one and twentieth to Jachin, the two and twentieth to Gamul,</VERS>\r\n      <VERS vnumber=\"18\">The three and twentieth to Delaiah, the four and twentieth to Maaziah.</VERS>\r\n      <VERS vnumber=\"19\">These 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.</VERS>\r\n      <VERS vnumber=\"20\">And the rest of the sons of Levi were these: Of the sons of Amram; Shubael: of the sons of Shubael; Jehdeiah.</VERS>\r\n      <VERS vnumber=\"21\">Concerning Rehabiah: of the sons of Rehabiah, the first was Isshiah.</VERS>\r\n      <VERS vnumber=\"22\">Of the Izharites; Shelomoth: of the sons of Shelomoth; Jahath.</VERS>\r\n      <VERS vnumber=\"23\">And the sons of Hebron; Jeriah the first, Amariah the second, Jahaziel the third, Jekameam the fourth.</VERS>\r\n      <VERS vnumber=\"24\">Of the sons of Uzziel; Michah: of the sons of Michah; Shamir.</VERS>\r\n      <VERS vnumber=\"25\">The brother of Michah was Isshiah: of the sons of Isshiah; Zechariah.</VERS>\r\n      <VERS vnumber=\"26\">The sons of Merari were Mahli and Mushi: the sons of Jaaziah; Beno.</VERS>\r\n      <VERS vnumber=\"27\">The sons of Merari by Jaaziah; Beno, and Shoham, and Zaccur, and Ibri.</VERS>\r\n      <VERS vnumber=\"28\">Of Mahli came Eleazar, who had no sons.</VERS>\r\n      <VERS vnumber=\"29\">Concerning Kish: the son of Kish was Jerahmeel.</VERS>\r\n      <VERS vnumber=\"30\">The sons also of Mushi; Mahli, and Eder, and Jerimoth. These were the sons of the Levites after the house of their fathers.</VERS>\r\n      <VERS vnumber=\"31\">These 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"25\">\r\n      <VERS vnumber=\"1\">Moreover 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:</VERS>\r\n      <VERS vnumber=\"2\">Of 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.</VERS>\r\n      <VERS vnumber=\"3\">Of 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.</VERS>\r\n      <VERS vnumber=\"4\">Of Heman: the sons of Heman; Bukkiah, Mattaniah, Uzziel, Shebuel, and Jerimoth, Hananiah, Hanani, Eliathah, Giddalti, and Romamtiezer, Joshbekashah, Mallothi, Hothir, and Mahazioth:</VERS>\r\n      <VERS vnumber=\"5\">All 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.</VERS>\r\n      <VERS vnumber=\"6\">All 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.</VERS>\r\n      <VERS vnumber=\"7\">So 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.</VERS>\r\n      <VERS vnumber=\"8\">And they cast lots, ward against ward, as well the small as the great, the teacher as the scholar.</VERS>\r\n      <VERS vnumber=\"9\">Now the first lot came forth for Asaph to Joseph: the second to Gedaliah, who with his brethren and sons were twelve:</VERS>\r\n      <VERS vnumber=\"10\">The third to Zaccur, he, his sons, and his brethren, were twelve:</VERS>\r\n      <VERS vnumber=\"11\">The fourth to Izri, he, his sons, and his brethren, were twelve:</VERS>\r\n      <VERS vnumber=\"12\">The fifth to Nethaniah, he, his sons, and his brethren, were twelve:</VERS>\r\n      <VERS vnumber=\"13\">The sixth to Bukkiah, he, his sons, and his brethren, were twelve:</VERS>\r\n      <VERS vnumber=\"14\">The seventh to Jesharelah, he, his sons, and his brethren, were twelve:</VERS>\r\n      <VERS vnumber=\"15\">The eighth to Jeshaiah, he, his sons, and his brethren, were twelve:</VERS>\r\n      <VERS vnumber=\"16\">The ninth to Mattaniah, he, his sons, and his brethren, were twelve:</VERS>\r\n      <VERS vnumber=\"17\">The tenth to Shimei, he, his sons, and his brethren, were twelve:</VERS>\r\n      <VERS vnumber=\"18\">The eleventh to Azareel, he, his sons, and his brethren, were twelve:</VERS>\r\n      <VERS vnumber=\"19\">The twelfth to Hashabiah, he, his sons, and his brethren, were twelve:</VERS>\r\n      <VERS vnumber=\"20\">The thirteenth to Shubael, he, his sons, and his brethren, were twelve:</VERS>\r\n      <VERS vnumber=\"21\">The fourteenth to Mattithiah, he, his sons, and his brethren, were twelve:</VERS>\r\n      <VERS vnumber=\"22\">The fifteenth to Jeremoth, he, his sons, and his brethren, were twelve:</VERS>\r\n      <VERS vnumber=\"23\">The sixteenth to Hananiah, he, his sons, and his brethren, were twelve:</VERS>\r\n      <VERS vnumber=\"24\">The seventeenth to Joshbekashah, he, his sons, and his brethren, were twelve:</VERS>\r\n      <VERS vnumber=\"25\">The eighteenth to Hanani, he, his sons, and his brethren, were twelve:</VERS>\r\n      <VERS vnumber=\"26\">The nineteenth to Mallothi, he, his sons, and his brethren, were twelve:</VERS>\r\n      <VERS vnumber=\"27\">The twentieth to Eliathah, he, his sons, and his brethren, were twelve:</VERS>\r\n      <VERS vnumber=\"28\">The one and twentieth to Hothir, he, his sons, and his brethren, were twelve:</VERS>\r\n      <VERS vnumber=\"29\">The two and twentieth to Giddalti, he, his sons, and his brethren, were twelve:</VERS>\r\n      <VERS vnumber=\"30\">The three and twentieth to Mahazioth, he, his sons, and his brethren, were twelve:</VERS>\r\n      <VERS vnumber=\"31\">The four and twentieth to Romamtiezer, he, his sons, and his brethren, were twelve.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"26\">\r\n      <VERS vnumber=\"1\">Concerning the divisions of the porters: Of the Korhites was Meshelemiah the son of Kore, of the sons of Asaph.</VERS>\r\n      <VERS vnumber=\"2\">And the sons of Meshelemiah were, Zechariah the firstborn, Jediael the second, Zebadiah the third, Jathniel the fourth,</VERS>\r\n      <VERS vnumber=\"3\">Elam the fifth, Jehohanan the sixth, Elioenai the seventh.</VERS>\r\n      <VERS vnumber=\"4\">Moreover the sons of Obededom were, Shemaiah the firstborn, Jehozabad the second, Joah the third, and Sacar the fourth, and Nethaneel the fifth,</VERS>\r\n      <VERS vnumber=\"5\">Ammiel the sixth, Issachar the seventh, Peulthai the eighth: for God blessed him.</VERS>\r\n      <VERS vnumber=\"6\">Also unto Shemaiah his son were sons born, that ruled throughout the house of their father: for they were mighty men of valour.</VERS>\r\n      <VERS vnumber=\"7\">The sons of Shemaiah; Othni, and Rephael, and Obed, Elzabad, whose brethren were strong men, Elihu, and Semachiah.</VERS>\r\n      <VERS vnumber=\"8\">All 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.</VERS>\r\n      <VERS vnumber=\"9\">And Meshelemiah had sons and brethren, strong men, eighteen.</VERS>\r\n      <VERS vnumber=\"10\">Also 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;)</VERS>\r\n      <VERS vnumber=\"11\">Hilkiah the second, Tebaliah the third, Zechariah the fourth: all the sons and brethren of Hosah were thirteen.</VERS>\r\n      <VERS vnumber=\"12\">Among 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.</VERS>\r\n      <VERS vnumber=\"13\">And they cast lots, as well the small as the great, according to the house of their fathers, for every gate.</VERS>\r\n      <VERS vnumber=\"14\">And the lot eastward fell to Shelemiah. Then for Zechariah his son, a wise counsellor, they cast lots; and his lot came out northward.</VERS>\r\n      <VERS vnumber=\"15\">To Obededom southward; and to his sons the house of Asuppim.</VERS>\r\n      <VERS vnumber=\"16\">To Shuppim and Hosah the lot came forth westward, with the gate Shallecheth, by the causeway of the going up, ward against ward.</VERS>\r\n      <VERS vnumber=\"17\">Eastward were six Levites, northward four a day, southward four a day, and toward Asuppim two and two.</VERS>\r\n      <VERS vnumber=\"18\">At Parbar westward, four at the causeway, and two at Parbar.</VERS>\r\n      <VERS vnumber=\"19\">These are the divisions of the porters among the sons of Kore, and among the sons of Merari.</VERS>\r\n      <VERS vnumber=\"20\">And of the Levites, Ahijah was over the treasures of the house of God, and over the treasures of the dedicated things.</VERS>\r\n      <VERS vnumber=\"21\">As concerning the sons of Laadan; the sons of the Gershonite Laadan, chief fathers, even of Laadan the Gershonite, were Jehieli.</VERS>\r\n      <VERS vnumber=\"22\">The sons of Jehieli; Zetham, and Joel his brother, which were over the treasures of the house of the LORD.</VERS>\r\n      <VERS vnumber=\"23\">Of the Amramites, and the Izharites, the Hebronites, and the Uzzielites:</VERS>\r\n      <VERS vnumber=\"24\">And Shebuel the son of Gershom, the son of Moses, was ruler of the treasures.</VERS>\r\n      <VERS vnumber=\"25\">And his brethren by Eliezer; Rehabiah his son, and Jeshaiah his son, and Joram his son, and Zichri his son, and Shelomith his son.</VERS>\r\n      <VERS vnumber=\"26\">Which 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.</VERS>\r\n      <VERS vnumber=\"27\">Out of the spoils won in battles did they dedicate to maintain the house of the LORD.</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">Of the Izharites, Chenaniah and his sons were for the outward business over Israel, for officers and judges.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">Among 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.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"27\">\r\n      <VERS vnumber=\"1\">Now 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.</VERS>\r\n      <VERS vnumber=\"2\">Over the first course for the first month was Jashobeam the son of Zabdiel: and in his course were twenty and four thousand.</VERS>\r\n      <VERS vnumber=\"3\">Of the children of Perez was the chief of all the captains of the host for the first month.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">The 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.</VERS>\r\n      <VERS vnumber=\"6\">This is that Benaiah, who was mighty among the thirty, and above the thirty: and in his course was Ammizabad his son.</VERS>\r\n      <VERS vnumber=\"7\">The 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.</VERS>\r\n      <VERS vnumber=\"8\">The fifth captain for the fifth month was Shamhuth the Izrahite: and in his course were twenty and four thousand.</VERS>\r\n      <VERS vnumber=\"9\">The sixth captain for the sixth month was Ira the son of Ikkesh the Tekoite: and in his course were twenty and four thousand.</VERS>\r\n      <VERS vnumber=\"10\">The seventh captain for the seventh month was Helez the Pelonite, of the children of Ephraim: and in his course were twenty and four thousand.</VERS>\r\n      <VERS vnumber=\"11\">The eighth captain for the eighth month was Sibbecai the Hushathite, of the Zarhites: and in his course were twenty and four thousand.</VERS>\r\n      <VERS vnumber=\"12\">The ninth captain for the ninth month was Abiezer the Anetothite, of the Benjamites: and in his course were twenty and four thousand.</VERS>\r\n      <VERS vnumber=\"13\">The tenth captain for the tenth month was Maharai the Netophathite, of the Zarhites: and in his course were twenty and four thousand.</VERS>\r\n      <VERS vnumber=\"14\">The eleventh captain for the eleventh month was Benaiah the Pirathonite, of the children of Ephraim: and in his course were twenty and four thousand.</VERS>\r\n      <VERS vnumber=\"15\">The twelfth captain for the twelfth month was Heldai the Netophathite, of Othniel: and in his course were twenty and four thousand.</VERS>\r\n      <VERS vnumber=\"16\">Furthermore over the tribes of Israel: the ruler of the Reubenites was Eliezer the son of Zichri: of the Simeonites, Shephatiah the son of Maachah:</VERS>\r\n      <VERS vnumber=\"17\">Of the Levites, Hashabiah the son of Kemuel: of the Aaronites, Zadok:</VERS>\r\n      <VERS vnumber=\"18\">Of Judah, Elihu, one of the brethren of David: of Issachar, Omri the son of Michael:</VERS>\r\n      <VERS vnumber=\"19\">Of Zebulun, Ishmaiah the son of Obadiah: of Naphtali, Jerimoth the son of Azriel:</VERS>\r\n      <VERS vnumber=\"20\">Of the children of Ephraim, Hoshea the son of Azaziah: of the half tribe of Manasseh, Joel the son of Pedaiah:</VERS>\r\n      <VERS vnumber=\"21\">Of the half tribe of Manasseh in Gilead, Iddo the son of Zechariah: of Benjamin, Jaasiel the son of Abner:</VERS>\r\n      <VERS vnumber=\"22\">Of Dan, Azareel the son of Jeroham. These were the princes of the tribes of Israel.</VERS>\r\n      <VERS vnumber=\"23\">But 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.</VERS>\r\n      <VERS vnumber=\"24\">Joab 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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:</VERS>\r\n      <VERS vnumber=\"26\">And over them that did the work of the field for tillage of the ground was Ezri the son of Chelub:</VERS>\r\n      <VERS vnumber=\"27\">And over the vineyards was Shimei the Ramathite: over the increase of the vineyards for the wine cellars was Zabdi the Shiphmite:</VERS>\r\n      <VERS vnumber=\"28\">And 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:</VERS>\r\n      <VERS vnumber=\"29\">And 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:</VERS>\r\n      <VERS vnumber=\"30\">Over the camels also was Obil the Ishmaelite: and over the asses was Jehdeiah the Meronothite:</VERS>\r\n      <VERS vnumber=\"31\">And over the flocks was Jaziz the Hagerite. All these were the rulers of the substance which was king David's.</VERS>\r\n      <VERS vnumber=\"32\">Also 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:</VERS>\r\n      <VERS vnumber=\"33\">And Ahithophel was the king's counsellor: and Hushai the Archite was the king's companion:</VERS>\r\n      <VERS vnumber=\"34\">And after Ahithophel was Jehoiada the son of Benaiah, and Abiathar: and the general of the king's army was Joab.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"28\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">Then 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:</VERS>\r\n      <VERS vnumber=\"3\">But 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.</VERS>\r\n      <VERS vnumber=\"4\">Howbeit 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:</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">Moreover I will establish his kingdom for ever, if he be constant to do my commandments and my judgments, as at this day.</VERS>\r\n      <VERS vnumber=\"8\">Now 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">Take heed now; for the LORD hath chosen thee to build an house for the sanctuary: be strong, and do it.</VERS>\r\n      <VERS vnumber=\"11\">Then 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,</VERS>\r\n      <VERS vnumber=\"12\">And 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:</VERS>\r\n      <VERS vnumber=\"13\">Also 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.</VERS>\r\n      <VERS vnumber=\"14\">He 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:</VERS>\r\n      <VERS vnumber=\"15\">Even 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.</VERS>\r\n      <VERS vnumber=\"16\">And by weight he gave gold for the tables of shewbread, for every table; and likewise silver for the tables of silver:</VERS>\r\n      <VERS vnumber=\"17\">Also 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:</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">All this, said David, the LORD made me understand in writing by his hand upon me, even all the works of this pattern.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And, 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"29\">\r\n      <VERS vnumber=\"1\">Furthermore 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.</VERS>\r\n      <VERS vnumber=\"2\">Now 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.</VERS>\r\n      <VERS vnumber=\"3\">Moreover, 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,</VERS>\r\n      <VERS vnumber=\"4\">Even 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:</VERS>\r\n      <VERS vnumber=\"5\">The 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?</VERS>\r\n      <VERS vnumber=\"6\">Then 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,</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">Then 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.</VERS>\r\n      <VERS vnumber=\"10\">Wherefore David blessed the LORD before all the congregation: and David said, Blessed be thou, LORD God of Israel our father, for ever and ever.</VERS>\r\n      <VERS vnumber=\"11\">Thine, 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.</VERS>\r\n      <VERS vnumber=\"12\">Both 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.</VERS>\r\n      <VERS vnumber=\"13\">Now therefore, our God, we thank thee, and praise thy glorious name.</VERS>\r\n      <VERS vnumber=\"14\">But 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.</VERS>\r\n      <VERS vnumber=\"15\">For 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.</VERS>\r\n      <VERS vnumber=\"16\">O 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.</VERS>\r\n      <VERS vnumber=\"17\">I 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.</VERS>\r\n      <VERS vnumber=\"18\">O 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:</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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:</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">Then Solomon sat on the throne of the LORD as king instead of David his father, and prospered; and all Israel obeyed him.</VERS>\r\n      <VERS vnumber=\"24\">And all the princes, and the mighty men, and all the sons likewise of king David, submitted themselves unto Solomon the king.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">Thus David the son of Jesse reigned over all Israel.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And he died in a good old age, full of days, riches, and honour: and Solomon his son reigned in his stead.</VERS>\r\n      <VERS vnumber=\"29\">Now 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,</VERS>\r\n      <VERS vnumber=\"30\">With all his reign and his might, and the times that went over him, and over Israel, and over all the kingdoms of the countries.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"14\" bname=\"2 Chronicles\" bsname=\"1Chr\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">And Solomon the son of David was strengthened in his kingdom, and the LORD his God was with him, and magnified him exceedingly.</VERS>\r\n      <VERS vnumber=\"2\">Then 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.</VERS>\r\n      <VERS vnumber=\"3\">So 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.</VERS>\r\n      <VERS vnumber=\"4\">But 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.</VERS>\r\n      <VERS vnumber=\"5\">Moreover 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">In that night did God appear unto Solomon, and said unto him, Ask what I shall give thee.</VERS>\r\n      <VERS vnumber=\"8\">And Solomon said unto God, Thou hast shewed great mercy unto David my father, and hast made me to reign in his stead.</VERS>\r\n      <VERS vnumber=\"9\">Now, 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.</VERS>\r\n      <VERS vnumber=\"10\">Give 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?</VERS>\r\n      <VERS vnumber=\"11\">And 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:</VERS>\r\n      <VERS vnumber=\"12\">Wisdom 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.</VERS>\r\n      <VERS vnumber=\"13\">Then 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And Solomon had horses brought out of Egypt, and linen yarn: the king's merchants received the linen yarn at a price.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">And Solomon determined to build an house for the name of the LORD, and an house for his kingdom.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"5\">And the house which I build is great: for great is our God above all gods.</VERS>\r\n      <VERS vnumber=\"6\">But 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?</VERS>\r\n      <VERS vnumber=\"7\">Send 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.</VERS>\r\n      <VERS vnumber=\"8\">Send 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,</VERS>\r\n      <VERS vnumber=\"9\">Even to prepare me timber in abundance: for the house which I am about to build shall be wonderful great.</VERS>\r\n      <VERS vnumber=\"10\">And, 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.</VERS>\r\n      <VERS vnumber=\"11\">Then 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.</VERS>\r\n      <VERS vnumber=\"12\">Huram 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.</VERS>\r\n      <VERS vnumber=\"13\">And now I have sent a cunning man, endued with understanding, of Huram my father's,</VERS>\r\n      <VERS vnumber=\"14\">The 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.</VERS>\r\n      <VERS vnumber=\"15\">Now therefore the wheat, and the barley, the oil, and the wine, which my lord hath spoken of, let him send unto his servants:</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Then 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.</VERS>\r\n      <VERS vnumber=\"2\">And he began to build in the second day of the second month, in the fourth year of his reign.</VERS>\r\n      <VERS vnumber=\"3\">Now 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And the greater house he cieled with fir tree, which he overlaid with fine gold, and set thereon palm trees and chains.</VERS>\r\n      <VERS vnumber=\"6\">And he garnished the house with precious stones for beauty: and the gold was gold of Parvaim.</VERS>\r\n      <VERS vnumber=\"7\">He overlaid also the house, the beams, the posts, and the walls thereof, and the doors thereof, with gold; and graved cherubims on the walls.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And the weight of the nails was fifty shekels of gold. And he overlaid the upper chambers with gold.</VERS>\r\n      <VERS vnumber=\"10\">And in the most holy house he made two cherubims of image work, and overlaid them with gold.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">The wings of these cherubims spread themselves forth twenty cubits: and they stood on their feet, and their faces were inward.</VERS>\r\n      <VERS vnumber=\"14\">And he made the vail of blue, and purple, and crimson, and fine linen, and wrought cherubims thereon.</VERS>\r\n      <VERS vnumber=\"15\">Also 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">Moreover he made an altar of brass, twenty cubits the length thereof, and twenty cubits the breadth thereof, and ten cubits the height thereof.</VERS>\r\n      <VERS vnumber=\"2\">Also 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">It 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">He 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">He 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.</VERS>\r\n      <VERS vnumber=\"9\">Furthermore he made the court of the priests, and the great court, and doors for the court, and overlaid the doors of them with brass.</VERS>\r\n      <VERS vnumber=\"10\">And he set the sea on the right side of the east end, over against the south.</VERS>\r\n      <VERS vnumber=\"11\">And 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;</VERS>\r\n      <VERS vnumber=\"12\">To 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;</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">He made also bases, and lavers made he upon the bases;</VERS>\r\n      <VERS vnumber=\"15\">One sea, and twelve oxen under it.</VERS>\r\n      <VERS vnumber=\"16\">The 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.</VERS>\r\n      <VERS vnumber=\"17\">In the plain of Jordan did the king cast them, in the clay ground between Succoth and Zeredathah.</VERS>\r\n      <VERS vnumber=\"18\">Thus Solomon made all these vessels in great abundance: for the weight of the brass could not be found out.</VERS>\r\n      <VERS vnumber=\"19\">And Solomon made all the vessels that were for the house of God, the golden altar also, and the tables whereon the shewbread was set;</VERS>\r\n      <VERS vnumber=\"20\">Moreover the candlesticks with their lamps, that they should burn after the manner before the oracle, of pure gold;</VERS>\r\n      <VERS vnumber=\"21\">And the flowers, and the lamps, and the tongs, made he of gold, and that perfect gold;</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">Thus 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.</VERS>\r\n      <VERS vnumber=\"2\">Then 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.</VERS>\r\n      <VERS vnumber=\"3\">Wherefore all the men of Israel assembled themselves unto the king in the feast which was in the seventh month.</VERS>\r\n      <VERS vnumber=\"4\">And all the elders of Israel came; and the Levites took up the ark.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">Also 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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:</VERS>\r\n      <VERS vnumber=\"8\">For the cherubims spread forth their wings over the place of the ark, and the cherubims covered the ark and the staves thereof above.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">There 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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:</VERS>\r\n      <VERS vnumber=\"12\">Also 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:)</VERS>\r\n      <VERS vnumber=\"13\">It 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;</VERS>\r\n      <VERS vnumber=\"14\">So 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">Then said Solomon, The LORD hath said that he would dwell in the thick darkness.</VERS>\r\n      <VERS vnumber=\"2\">But I have built an house of habitation for thee, and a place for thy dwelling for ever.</VERS>\r\n      <VERS vnumber=\"3\">And the king turned his face, and blessed the whole congregation of Israel: and all the congregation of Israel stood.</VERS>\r\n      <VERS vnumber=\"4\">And 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,</VERS>\r\n      <VERS vnumber=\"5\">Since 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:</VERS>\r\n      <VERS vnumber=\"6\">But I have chosen Jerusalem, that my name might be there; and have chosen David to be over my people Israel.</VERS>\r\n      <VERS vnumber=\"7\">Now it was in the heart of David my father to build an house for the name of the LORD God of Israel.</VERS>\r\n      <VERS vnumber=\"8\">But 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:</VERS>\r\n      <VERS vnumber=\"9\">Notwithstanding 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.</VERS>\r\n      <VERS vnumber=\"10\">The 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.</VERS>\r\n      <VERS vnumber=\"11\">And in it have I put the ark, wherein is the covenant of the LORD, that he made with the children of Israel.</VERS>\r\n      <VERS vnumber=\"12\">And he stood before the altar of the LORD in the presence of all the congregation of Israel, and spread forth his hands:</VERS>\r\n      <VERS vnumber=\"13\">For 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,</VERS>\r\n      <VERS vnumber=\"14\">And 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:</VERS>\r\n      <VERS vnumber=\"15\">Thou 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.</VERS>\r\n      <VERS vnumber=\"16\">Now 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.</VERS>\r\n      <VERS vnumber=\"17\">Now then, O LORD God of Israel, let thy word be verified, which thou hast spoken unto thy servant David.</VERS>\r\n      <VERS vnumber=\"18\">But 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!</VERS>\r\n      <VERS vnumber=\"19\">Have 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:</VERS>\r\n      <VERS vnumber=\"20\">That 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.</VERS>\r\n      <VERS vnumber=\"21\">Hearken 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.</VERS>\r\n      <VERS vnumber=\"22\">If 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;</VERS>\r\n      <VERS vnumber=\"23\">Then 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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;</VERS>\r\n      <VERS vnumber=\"25\">Then 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.</VERS>\r\n      <VERS vnumber=\"26\">When 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;</VERS>\r\n      <VERS vnumber=\"27\">Then 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.</VERS>\r\n      <VERS vnumber=\"28\">If 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:</VERS>\r\n      <VERS vnumber=\"29\">Then 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:</VERS>\r\n      <VERS vnumber=\"30\">Then 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:)</VERS>\r\n      <VERS vnumber=\"31\">That they may fear thee, to walk in thy ways, so long as they live in the land which thou gavest unto our fathers.</VERS>\r\n      <VERS vnumber=\"32\">Moreover 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;</VERS>\r\n      <VERS vnumber=\"33\">Then 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.</VERS>\r\n      <VERS vnumber=\"34\">If 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;</VERS>\r\n      <VERS vnumber=\"35\">Then hear thou from the heavens their prayer and their supplication, and maintain their cause.</VERS>\r\n      <VERS vnumber=\"36\">If 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;</VERS>\r\n      <VERS vnumber=\"37\">Yet 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;</VERS>\r\n      <VERS vnumber=\"38\">If 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:</VERS>\r\n      <VERS vnumber=\"39\">Then 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.</VERS>\r\n      <VERS vnumber=\"40\">Now, 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.</VERS>\r\n      <VERS vnumber=\"41\">Now 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.</VERS>\r\n      <VERS vnumber=\"42\">O LORD God, turn not away the face of thine anointed: remember the mercies of David thy servant.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">Now 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.</VERS>\r\n      <VERS vnumber=\"2\">And the priests could not enter into the house of the LORD, because the glory of the LORD had filled the LORD'S house.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">Then the king and all the people offered sacrifices before the LORD.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">Moreover 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.</VERS>\r\n      <VERS vnumber=\"8\">Also 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.</VERS>\r\n      <VERS vnumber=\"9\">And in the eighth day they made a solemn assembly: for they kept the dedication of the altar seven days, and the feast seven days.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">Thus 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">If 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;</VERS>\r\n      <VERS vnumber=\"14\">If 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.</VERS>\r\n      <VERS vnumber=\"15\">Now mine eyes shall be open, and mine ears attent unto the prayer that is made in this place.</VERS>\r\n      <VERS vnumber=\"16\">For 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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;</VERS>\r\n      <VERS vnumber=\"18\">Then 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.</VERS>\r\n      <VERS vnumber=\"19\">But 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;</VERS>\r\n      <VERS vnumber=\"20\">Then 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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?</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">And it came to pass at the end of twenty years, wherein Solomon had built the house of the LORD, and his own house,</VERS>\r\n      <VERS vnumber=\"2\">That the cities which Huram had restored to Solomon, Solomon built them, and caused the children of Israel to dwell there.</VERS>\r\n      <VERS vnumber=\"3\">And Solomon went to Hamathzobah, and prevailed against it.</VERS>\r\n      <VERS vnumber=\"4\">And he built Tadmor in the wilderness, and all the store cities, which he built in Hamath.</VERS>\r\n      <VERS vnumber=\"5\">Also he built Bethhoron the upper, and Bethhoron the nether, fenced cities, with walls, gates, and bars;</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">As 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,</VERS>\r\n      <VERS vnumber=\"8\">But 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.</VERS>\r\n      <VERS vnumber=\"9\">But 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.</VERS>\r\n      <VERS vnumber=\"10\">And these were the chief of king Solomon's officers, even two hundred and fifty, that bare rule over the people.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">Then Solomon offered burnt offerings unto the LORD on the altar of the LORD, which he had built before the porch,</VERS>\r\n      <VERS vnumber=\"13\">Even 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And they departed not from the commandment of the king unto the priests and Levites concerning any matter, or concerning the treasures.</VERS>\r\n      <VERS vnumber=\"16\">Now 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.</VERS>\r\n      <VERS vnumber=\"17\">Then went Solomon to Eziongeber, and to Eloth, at the sea side in the land of Edom.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And Solomon told her all her questions: and there was nothing hid from Solomon which he told her not.</VERS>\r\n      <VERS vnumber=\"3\">And when the queen of Sheba had seen the wisdom of Solomon, and the house that he had built,</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And she said to the king, It was a true report which I heard in mine own land of thine acts, and of thy wisdom:</VERS>\r\n      <VERS vnumber=\"6\">Howbeit 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.</VERS>\r\n      <VERS vnumber=\"7\">Happy are thy men, and happy are these thy servants, which stand continually before thee, and hear thy wisdom.</VERS>\r\n      <VERS vnumber=\"8\">Blessed 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And the servants also of Huram, and the servants of Solomon, which brought gold from Ophir, brought algum trees and precious stones.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">Now the weight of gold that came to Solomon in one year was six hundred and threescore and six talents of gold;</VERS>\r\n      <VERS vnumber=\"14\">Beside that which chapmen and merchants brought. And all the kings of Arabia and governors of the country brought gold and silver to Solomon.</VERS>\r\n      <VERS vnumber=\"15\">And king Solomon made two hundred targets of beaten gold: six hundred shekels of beaten gold went to one target.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">Moreover the king made a great throne of ivory, and overlaid it with pure gold.</VERS>\r\n      <VERS vnumber=\"18\">And 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:</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">For 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.</VERS>\r\n      <VERS vnumber=\"22\">And king Solomon passed all the kings of the earth in riches and wisdom.</VERS>\r\n      <VERS vnumber=\"23\">And all the kings of the earth sought the presence of Solomon, to hear his wisdom, that God had put in his heart.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And he reigned over all the kings from the river even unto the land of the Philistines, and to the border of Egypt.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And they brought unto Solomon horses out of Egypt, and out of all lands.</VERS>\r\n      <VERS vnumber=\"29\">Now 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?</VERS>\r\n      <VERS vnumber=\"30\">And Solomon reigned in Jerusalem over all Israel forty years.</VERS>\r\n      <VERS vnumber=\"31\">And Solomon slept with his fathers, and he was buried in the city of David his father: and Rehoboam his son reigned in his stead.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">And Rehoboam went to Shechem: for to Shechem were all Israel come to make him king.</VERS>\r\n      <VERS vnumber=\"2\">And it came to pass, when Jeroboam the son of Nebat, who was in Egypt, whither he had fled from the presence of Solomon the king, heard it, that Jeroboam returned out of Egypt.</VERS>\r\n      <VERS vnumber=\"3\">And they sent and called him. So Jeroboam and all Israel came and spake to Rehoboam, saying,</VERS>\r\n      <VERS vnumber=\"4\">Thy 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.</VERS>\r\n      <VERS vnumber=\"5\">And he said unto them, Come again unto me after three days. And the people departed.</VERS>\r\n      <VERS vnumber=\"6\">And 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?</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">But 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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?</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">For 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.</VERS>\r\n      <VERS vnumber=\"12\">So 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.</VERS>\r\n      <VERS vnumber=\"13\">And the king answered them roughly; and king Rehoboam forsook the counsel of the old men,</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">So 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">But as for the children of Israel that dwelt in the cities of Judah, Rehoboam reigned over them.</VERS>\r\n      <VERS vnumber=\"18\">Then 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.</VERS>\r\n      <VERS vnumber=\"19\">And Israel rebelled against the house of David unto this day.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">But the word of the LORD came to Shemaiah the man of God, saying,</VERS>\r\n      <VERS vnumber=\"3\">Speak unto Rehoboam the son of Solomon, king of Judah, and to all Israel in Judah and Benjamin, saying,</VERS>\r\n      <VERS vnumber=\"4\">Thus 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.</VERS>\r\n      <VERS vnumber=\"5\">And Rehoboam dwelt in Jerusalem, and built cities for defence in Judah.</VERS>\r\n      <VERS vnumber=\"6\">He built even Bethlehem, and Etam, and Tekoa,</VERS>\r\n      <VERS vnumber=\"7\">And Bethzur, and Shoco, and Adullam,</VERS>\r\n      <VERS vnumber=\"8\">And Gath, and Mareshah, and Ziph,</VERS>\r\n      <VERS vnumber=\"9\">And Adoraim, and Lachish, and Azekah,</VERS>\r\n      <VERS vnumber=\"10\">And Zorah, and Aijalon, and Hebron, which are in Judah and in Benjamin fenced cities.</VERS>\r\n      <VERS vnumber=\"11\">And he fortified the strong holds, and put captains in them, and store of victual, and of oil and wine.</VERS>\r\n      <VERS vnumber=\"12\">And in every several city he put shields and spears, and made them exceeding strong, having Judah and Benjamin on his side.</VERS>\r\n      <VERS vnumber=\"13\">And the priests and the Levites that were in all Israel resorted to him out of all their coasts.</VERS>\r\n      <VERS vnumber=\"14\">For 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:</VERS>\r\n      <VERS vnumber=\"15\">And he ordained him priests for the high places, and for the devils, and for the calves which he had made.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">So 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.</VERS>\r\n      <VERS vnumber=\"18\">And Rehoboam took him Mahalath the daughter of Jerimoth the son of David to wife, and Abihail the daughter of Eliab the son of Jesse;</VERS>\r\n      <VERS vnumber=\"19\">Which bare him children; Jeush, and Shamariah, and Zaham.</VERS>\r\n      <VERS vnumber=\"20\">And after her he took Maachah the daughter of Absalom; which bare him Abijah, and Attai, and Ziza, and Shelomith.</VERS>\r\n      <VERS vnumber=\"21\">And 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.)</VERS>\r\n      <VERS vnumber=\"22\">And Rehoboam made Abijah the son of Maachah the chief, to be ruler among his brethren: for he thought to make him king.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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,</VERS>\r\n      <VERS vnumber=\"3\">With 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.</VERS>\r\n      <VERS vnumber=\"4\">And he took the fenced cities which pertained to Judah, and came to Jerusalem.</VERS>\r\n      <VERS vnumber=\"5\">Then 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.</VERS>\r\n      <VERS vnumber=\"6\">Whereupon the princes of Israel and the king humbled themselves; and they said, The LORD is righteous.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">Nevertheless they shall be his servants; that they may know my service, and the service of the kingdoms of the countries.</VERS>\r\n      <VERS vnumber=\"9\">So 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.</VERS>\r\n      <VERS vnumber=\"10\">Instead 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.</VERS>\r\n      <VERS vnumber=\"11\">And when the king entered into the house of the LORD, the guard came and fetched them, and brought them again into the guard chamber.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">So 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.</VERS>\r\n      <VERS vnumber=\"14\">And he did evil, because he prepared not his heart to seek the LORD.</VERS>\r\n      <VERS vnumber=\"15\">Now 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.</VERS>\r\n      <VERS vnumber=\"16\">And Rehoboam slept with his fathers, and was buried in the city of David: and Abijah his son reigned in his stead.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">Now in the eighteenth year of king Jeroboam began Abijah to reign over Judah.</VERS>\r\n      <VERS vnumber=\"2\">He 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And Abijah stood up upon mount Zemaraim, which is in mount Ephraim, and said, Hear me, thou Jeroboam, and all Israel;</VERS>\r\n      <VERS vnumber=\"5\">Ought 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?</VERS>\r\n      <VERS vnumber=\"6\">Yet Jeroboam the son of Nebat, the servant of Solomon the son of David, is risen up, and hath rebelled against his lord.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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 you golden calves, which Jeroboam made you for gods.</VERS>\r\n      <VERS vnumber=\"9\">Have 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.</VERS>\r\n      <VERS vnumber=\"10\">But 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:</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And, 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.</VERS>\r\n      <VERS vnumber=\"13\">But Jeroboam caused an ambushment to come about behind them: so they were before Judah, and the ambushment was behind them.</VERS>\r\n      <VERS vnumber=\"14\">And when Judah looked back, behold, the battle was before and behind: and they cried unto the LORD, and the priests sounded with the trumpets.</VERS>\r\n      <VERS vnumber=\"15\">Then 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.</VERS>\r\n      <VERS vnumber=\"16\">And the children of Israel fled before Judah: and God delivered them into their hand.</VERS>\r\n      <VERS vnumber=\"17\">And Abijah and his people slew them with a great slaughter: so there fell down slain of Israel five hundred thousand chosen men.</VERS>\r\n      <VERS vnumber=\"18\">Thus 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.</VERS>\r\n      <VERS vnumber=\"19\">And Abijah pursued after Jeroboam, and took cities from him, Bethel with the towns thereof, and Jeshanah with the towns thereof, and Ephrain with the towns thereof.</VERS>\r\n      <VERS vnumber=\"20\">Neither did Jeroboam recover strength again in the days of Abijah: and the LORD struck him, and he died.</VERS>\r\n      <VERS vnumber=\"21\">But Abijah waxed mighty, and married fourteen wives, and begat twenty and two sons, and sixteen daughters.</VERS>\r\n      <VERS vnumber=\"22\">And the rest of the acts of Abijah, and his ways, and his sayings, are written in the story of the prophet Iddo.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">So 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.</VERS>\r\n      <VERS vnumber=\"2\">And Asa did that which was good and right in the eyes of the LORD his God:</VERS>\r\n      <VERS vnumber=\"3\">For he took away the altars of the strange gods, and the high places, and brake down the images, and cut down the groves:</VERS>\r\n      <VERS vnumber=\"4\">And commanded Judah to seek the LORD God of their fathers, and to do the law and the commandment.</VERS>\r\n      <VERS vnumber=\"5\">Also he took away out of all the cities of Judah the high places and the images: and the kingdom was quiet before him.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And there came out against them Zerah the Ethiopian with an host of a thousand thousand, and three hundred chariots; and came unto Mareshah.</VERS>\r\n      <VERS vnumber=\"10\">Then Asa went out against him, and they set the battle in array in the valley of Zephathah at Mareshah.</VERS>\r\n      <VERS vnumber=\"11\">And 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 not man prevail against thee.</VERS>\r\n      <VERS vnumber=\"12\">So the LORD smote the Ethiopians before Asa, and before Judah; and the Ethiopians fled.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">They smote also the tents of cattle, and carried away sheep and camels in abundance, and returned to Jerusalem.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">And the Spirit of God came upon Azariah the son of Oded:</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">Now for a long season Israel hath been without the true God, and without a teaching priest, and without law.</VERS>\r\n      <VERS vnumber=\"4\">But when they in their trouble did turn unto the LORD God of Israel, and sought him, he was found of them.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And nation was destroyed of nation, and city of city: for God did vex them with all adversity.</VERS>\r\n      <VERS vnumber=\"7\">Be ye strong therefore, and let not your hands be weak: for your work shall be rewarded.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">So they gathered themselves together at Jerusalem in the third month, in the fifteenth year of the reign of Asa.</VERS>\r\n      <VERS vnumber=\"11\">And they offered unto the LORD the same time, of the spoil which they had brought, seven hundred oxen and seven thousand sheep.</VERS>\r\n      <VERS vnumber=\"12\">And they entered into a covenant to seek the LORD God of their fathers with all their heart and with all their soul;</VERS>\r\n      <VERS vnumber=\"13\">That whosoever would not seek the LORD God of Israel should be put to death, whether small or great, whether man or woman.</VERS>\r\n      <VERS vnumber=\"14\">And they sware unto the LORD with a loud voice, and with shouting, and with trumpets, and with cornets.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">But the high places were not taken away out of Israel: nevertheless the heart of Asa was perfect all his days.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And there was no more war unto the five and thirtieth year of the reign of Asa.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">In 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.</VERS>\r\n      <VERS vnumber=\"2\">Then 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,</VERS>\r\n      <VERS vnumber=\"3\">There 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And it came to pass, when Baasha heard it, that he left off building of Ramah, and let his work cease.</VERS>\r\n      <VERS vnumber=\"6\">Then 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">Were 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.</VERS>\r\n      <VERS vnumber=\"9\">For 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.</VERS>\r\n      <VERS vnumber=\"10\">Then 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.</VERS>\r\n      <VERS vnumber=\"11\">And, behold, the acts of Asa, first and last, lo, they are written in the book of the kings of Judah and Israel.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And Asa slept with his fathers, and died in the one and fortieth year of his reign.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"17\">\r\n      <VERS vnumber=\"1\">And Jehoshaphat his son reigned in his stead, and strengthened himself against Israel.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And the LORD was with Jehoshaphat, because he walked in the first ways of his father David, and sought not unto Baalim;</VERS>\r\n      <VERS vnumber=\"4\">But sought to the LORD God of his father, and walked in his commandments, and not after the doings of Israel.</VERS>\r\n      <VERS vnumber=\"5\">Therefore the LORD stablished the kingdom in his hand; and all Judah brought to Jehoshaphat presents; and he had riches and honour in abundance.</VERS>\r\n      <VERS vnumber=\"6\">And his heart was lifted up in the ways of the LORD: moreover he took away the high places and groves out of Judah.</VERS>\r\n      <VERS vnumber=\"7\">Also 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">Also 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.</VERS>\r\n      <VERS vnumber=\"12\">And Jehoshaphat waxed great exceedingly; and he built in Judah castles, and cities of store.</VERS>\r\n      <VERS vnumber=\"13\">And he had much business in the cities of Judah: and the men of war, mighty men of valour, were in Jerusalem.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And next to him was Jehohanan the captain, and with him two hundred and fourscore thousand.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And of Benjamin; Eliada a mighty man of valour, and with him armed men with bow and shield two hundred thousand.</VERS>\r\n      <VERS vnumber=\"18\">And next him was Jehozabad, and with him an hundred and fourscore thousand ready prepared for the war.</VERS>\r\n      <VERS vnumber=\"19\">These waited on the king, beside those whom the king put in the fenced cities throughout all Judah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"18\">\r\n      <VERS vnumber=\"1\">Now Jehoshaphat had riches and honour in abundance, and joined affinity with Ahab.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And Jehoshaphat said unto the king of Israel, Enquire, I pray thee, at the word of the LORD to day.</VERS>\r\n      <VERS vnumber=\"5\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"6\">But Jehoshaphat said, Is there not here a prophet of the LORD besides, that we might enquire of him?</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And the king of Israel called for one of his officers, and said, Fetch quickly Micaiah the son of Imla.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And all the prophets prophesied so, saying, Go up to Ramothgilead, and prosper: for the LORD shall deliver it into the hand of the king.</VERS>\r\n      <VERS vnumber=\"12\">And 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 theirs, and speak thou good.</VERS>\r\n      <VERS vnumber=\"13\">And Micaiah said, As the LORD liveth, even what my God saith, that will I speak.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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?</VERS>\r\n      <VERS vnumber=\"16\">Then 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.</VERS>\r\n      <VERS vnumber=\"17\">And the king of Israel said to Jehoshaphat, Did I not tell thee that he would not prophesy good unto me, but evil?</VERS>\r\n      <VERS vnumber=\"18\">Again 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">Then there came out a spirit, and stood before the LORD, and said, I will entice him. And the LORD said unto him, Wherewith?</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">Now therefore, behold, the LORD hath put a lying spirit in the mouth of these thy prophets, and the LORD hath spoken evil against thee.</VERS>\r\n      <VERS vnumber=\"23\">Then 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?</VERS>\r\n      <VERS vnumber=\"24\">And Micaiah said, Behold, thou shalt see on that day when thou shalt go into an inner chamber to hide thyself.</VERS>\r\n      <VERS vnumber=\"25\">Then 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;</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And Micaiah said, If thou certainly return in peace, then hath not the LORD spoken by me. And he said, Hearken, all ye people.</VERS>\r\n      <VERS vnumber=\"28\">So the king of Israel and Jehoshaphat the king of Judah went up to Ramothgilead.</VERS>\r\n      <VERS vnumber=\"29\">And the king of Israel said unto Jehoshaphat, I will disguise myself, and will go to the battle; but put thou on thy robes. So the king of Israel disguised himself; and they went to the battle.</VERS>\r\n      <VERS vnumber=\"30\">Now 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.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n      <VERS vnumber=\"32\">For 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.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"19\">\r\n      <VERS vnumber=\"1\">And Jehoshaphat the king of Judah returned to his house in peace to Jerusalem.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">Nevertheless 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And he set judges in the land throughout all the fenced cities of Judah, city by city,</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"8\">Moreover 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.</VERS>\r\n      <VERS vnumber=\"9\">And he charged them, saying, Thus shall ye do in the fear of the LORD, faithfully, and with a perfect heart.</VERS>\r\n      <VERS vnumber=\"10\">And what cause soever shall come to you of your brethren that dwell in their 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.</VERS>\r\n      <VERS vnumber=\"11\">And, 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"20\">\r\n      <VERS vnumber=\"1\">It 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.</VERS>\r\n      <VERS vnumber=\"2\">Then 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.</VERS>\r\n      <VERS vnumber=\"3\">And Jehoshaphat feared, and set himself to seek the LORD, and proclaimed a fast throughout all Judah.</VERS>\r\n      <VERS vnumber=\"4\">And Judah gathered themselves together, to ask help of the LORD: even out of all the cities of Judah they came to seek the LORD.</VERS>\r\n      <VERS vnumber=\"5\">And Jehoshaphat stood in the congregation of Judah and Jerusalem, in the house of the LORD, before the new court,</VERS>\r\n      <VERS vnumber=\"6\">And 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?</VERS>\r\n      <VERS vnumber=\"7\">Art 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?</VERS>\r\n      <VERS vnumber=\"8\">And they dwelt therein, and have built thee a sanctuary therein for thy name, saying,</VERS>\r\n      <VERS vnumber=\"9\">If, 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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;</VERS>\r\n      <VERS vnumber=\"11\">Behold, I say, how they reward us, to come to cast us out of thy possession, which thou hast given us to inherit.</VERS>\r\n      <VERS vnumber=\"12\">O 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.</VERS>\r\n      <VERS vnumber=\"13\">And all Judah stood before the LORD, with their little ones, their wives, and their children.</VERS>\r\n      <VERS vnumber=\"14\">Then 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;</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">To 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.</VERS>\r\n      <VERS vnumber=\"17\">Ye 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">For 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">Then 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.</VERS>\r\n      <VERS vnumber=\"28\">And they came to Jerusalem with psalteries and harps and trumpets unto the house of the LORD.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">So the realm of Jehoshaphat was quiet: for his God gave him rest round about.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">Howbeit the high places were not taken away: for as yet the people had not prepared their hearts unto the God of their fathers.</VERS>\r\n      <VERS vnumber=\"34\">Now 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.</VERS>\r\n      <VERS vnumber=\"35\">And after this did Jehoshaphat king of Judah join himself with Ahaziah king of Israel, who did very wickedly:</VERS>\r\n      <VERS vnumber=\"36\">And he joined himself with him to make ships to go to Tarshish: and they made the ships in Eziongeber.</VERS>\r\n      <VERS vnumber=\"37\">Then 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"21\">\r\n      <VERS vnumber=\"1\">Now Jehoshaphat slept with his fathers, and was buried with his fathers in the city of David. And Jehoram his son reigned in his stead.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">Now 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.</VERS>\r\n      <VERS vnumber=\"5\">Jehoram was thirty and two years old when he began to reign, and he reigned eight years in Jerusalem.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">Howbeit 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.</VERS>\r\n      <VERS vnumber=\"8\">In his days the Edomites revolted from under the dominion of Judah, and made themselves a king.</VERS>\r\n      <VERS vnumber=\"9\">Then 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.</VERS>\r\n      <VERS vnumber=\"10\">So 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.</VERS>\r\n      <VERS vnumber=\"11\">Moreover he made high places in the mountains of Judah, and caused the inhabitants of Jerusalem to commit fornication, and compelled Judah thereto.</VERS>\r\n      <VERS vnumber=\"12\">And 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,</VERS>\r\n      <VERS vnumber=\"13\">But 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:</VERS>\r\n      <VERS vnumber=\"14\">Behold, with a great plague will the LORD smite thy people, and thy children, and thy wives, and all thy goods:</VERS>\r\n      <VERS vnumber=\"15\">And thou shalt have great sickness by disease of thy bowels, until thy bowels fall out by reason of the sickness day by day.</VERS>\r\n      <VERS vnumber=\"16\">Moreover the LORD stirred up against Jehoram the spirit of the Philistines, and of the Arabians, that were near the Ethiopians:</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And after all this the LORD smote him in his bowels with an incurable disease.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">Thirty 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"22\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">Forty 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.</VERS>\r\n      <VERS vnumber=\"3\">He also walked in the ways of the house of Ahab: for his mother was his counsellor to do wickedly.</VERS>\r\n      <VERS vnumber=\"4\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"5\">He 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">But 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.</VERS>\r\n      <VERS vnumber=\"11\">But 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.</VERS>\r\n      <VERS vnumber=\"12\">And he was with them hid in the house of God six years: and Athaliah reigned over the land.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"23\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">This 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;</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">But 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">So 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.</VERS>\r\n      <VERS vnumber=\"9\">Moreover 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">Then 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.</VERS>\r\n      <VERS vnumber=\"12\">Now when Athaliah heard the noise of the people running and praising the king, she came to the people into the house of the LORD:</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">Then 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.</VERS>\r\n      <VERS vnumber=\"15\">So 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.</VERS>\r\n      <VERS vnumber=\"16\">And Jehoiada made a covenant between him, and between all the people, and between the king, that they should be the LORD'S people.</VERS>\r\n      <VERS vnumber=\"17\">Then 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.</VERS>\r\n      <VERS vnumber=\"18\">Also 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.</VERS>\r\n      <VERS vnumber=\"19\">And he set the porters at the gates of the house of the LORD, that none which was unclean in any thing should enter in.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And all the people of the land rejoiced: and the city was quiet, after that they had slain Athaliah with the sword.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"24\">\r\n      <VERS vnumber=\"1\">Joash 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.</VERS>\r\n      <VERS vnumber=\"2\">And Joash did that which was right in the sight of the LORD all the days of Jehoiada the priest.</VERS>\r\n      <VERS vnumber=\"3\">And Jehoiada took for him two wives; and he begat sons and daughters.</VERS>\r\n      <VERS vnumber=\"4\">And it came to pass after this, that Joash was minded to repair the house of the LORD.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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?</VERS>\r\n      <VERS vnumber=\"7\">For 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.</VERS>\r\n      <VERS vnumber=\"8\">And at the king's commandment they made a chest, and set it without at the gate of the house of the LORD.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And all the princes and all the people rejoiced, and brought in, and cast into the chest, until they had made an end.</VERS>\r\n      <VERS vnumber=\"11\">Now 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">So the workmen wrought, and the work was perfected by them, and they set the house of God in his state, and strengthened it.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">But Jehoiada waxed old, and was full of days when he died; an hundred and thirty years old was he when he died.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">Now after the death of Jehoiada came the princes of Judah, and made obeisance to the king. Then the king hearkened unto them.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">Yet he sent prophets to them, to bring them again unto the LORD; and they testified against them: but they would not give ear.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And they conspired against him, and stoned him with stones at the commandment of the king in the court of the house of the LORD.</VERS>\r\n      <VERS vnumber=\"22\">Thus 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.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">For 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And these are they that conspired against him; Zabad the son of Shimeath an Ammonitess, and Jehozabad the son of Shimrith a Moabitess.</VERS>\r\n      <VERS vnumber=\"27\">Now 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"25\">\r\n      <VERS vnumber=\"1\">Amaziah 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.</VERS>\r\n      <VERS vnumber=\"2\">And he did that which was right in the sight of the LORD, but not with a perfect heart.</VERS>\r\n      <VERS vnumber=\"3\">Now it came to pass, when the kingdom was established to him, that he slew his servants that had killed the king his father.</VERS>\r\n      <VERS vnumber=\"4\">But 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.</VERS>\r\n      <VERS vnumber=\"5\">Moreover 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.</VERS>\r\n      <VERS vnumber=\"6\">He hired also an hundred thousand mighty men of valour out of Israel for an hundred talents of silver.</VERS>\r\n      <VERS vnumber=\"7\">But 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.</VERS>\r\n      <VERS vnumber=\"8\">But 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">Then 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.</VERS>\r\n      <VERS vnumber=\"11\">And Amaziah strengthened himself, and led forth his people, and went to the valley of salt, and smote of the children of Seir ten thousand.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">But 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.</VERS>\r\n      <VERS vnumber=\"14\">Now 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.</VERS>\r\n      <VERS vnumber=\"15\">Wherefore 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?</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">Then 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">Thou 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?</VERS>\r\n      <VERS vnumber=\"20\">But 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.</VERS>\r\n      <VERS vnumber=\"21\">So 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.</VERS>\r\n      <VERS vnumber=\"22\">And Judah was put to the worse before Israel, and they fled every man to his tent.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And Amaziah the son of Joash king of Judah lived after the death of Joash son of Jehoahaz king of Israel fifteen years.</VERS>\r\n      <VERS vnumber=\"26\">Now 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?</VERS>\r\n      <VERS vnumber=\"27\">Now 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.</VERS>\r\n      <VERS vnumber=\"28\">And they brought him upon horses, and buried him with his fathers in the city of Judah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"26\">\r\n      <VERS vnumber=\"1\">Then all the people of Judah took Uzziah, who was sixteen years old, and made him king in the room of his father Amaziah.</VERS>\r\n      <VERS vnumber=\"2\">He built Eloth, and restored it to Judah, after that the king slept with his fathers.</VERS>\r\n      <VERS vnumber=\"3\">Sixteen 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.</VERS>\r\n      <VERS vnumber=\"4\">And he did that which was right in the sight of the LORD, according to all that his father Amaziah did.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And God helped him against the Philistines, and against the Arabians that dwelt in Gurbaal, and the Mehunims.</VERS>\r\n      <VERS vnumber=\"8\">And the Ammonites gave gifts to Uzziah: and his name spread abroad even to the entering in of Egypt; for he strengthened himself exceedingly.</VERS>\r\n      <VERS vnumber=\"9\">Moreover Uzziah built towers in Jerusalem at the corner gate, and at the valley gate, and at the turning of the wall, and fortified them.</VERS>\r\n      <VERS vnumber=\"10\">Also 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.</VERS>\r\n      <VERS vnumber=\"11\">Moreover 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.</VERS>\r\n      <VERS vnumber=\"12\">The whole number of the chief of the fathers of the mighty men of valour were two thousand and six hundred.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And Uzziah prepared for them throughout all the host shields, and spears, and helmets, and habergeons, and bows, and slings to cast stones.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">But 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.</VERS>\r\n      <VERS vnumber=\"17\">And Azariah the priest went in after him, and with him fourscore priests of the LORD, that were valiant men:</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">Then 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">Now the rest of the acts of Uzziah, first and last, did Isaiah the prophet, the son of Amoz, write.</VERS>\r\n      <VERS vnumber=\"23\">So 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"27\">\r\n      <VERS vnumber=\"1\">Jotham 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">He built the high gate of the house of the LORD, and on the wall of Ophel he built much.</VERS>\r\n      <VERS vnumber=\"4\">Moreover he built cities in the mountains of Judah, and in the forests he built castles and towers.</VERS>\r\n      <VERS vnumber=\"5\">He 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.</VERS>\r\n      <VERS vnumber=\"6\">So Jotham became mighty, because he prepared his ways before the LORD his God.</VERS>\r\n      <VERS vnumber=\"7\">Now 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.</VERS>\r\n      <VERS vnumber=\"8\">He was five and twenty years old when he began to reign, and reigned sixteen years in Jerusalem.</VERS>\r\n      <VERS vnumber=\"9\">And Jotham slept with his fathers, and they buried him in the city of David: and Ahaz his son reigned in his stead.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"28\">\r\n      <VERS vnumber=\"1\">Ahaz 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:</VERS>\r\n      <VERS vnumber=\"2\">For he walked in the ways of the kings of Israel, and made also molten images for Baalim.</VERS>\r\n      <VERS vnumber=\"3\">Moreover 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.</VERS>\r\n      <VERS vnumber=\"4\">He sacrificed also and burnt incense in the high places, and on the hills, and under every green tree.</VERS>\r\n      <VERS vnumber=\"5\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"6\">For 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">But 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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?</VERS>\r\n      <VERS vnumber=\"11\">Now 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.</VERS>\r\n      <VERS vnumber=\"12\">Then 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,</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">So the armed men left the captives and the spoil before the princes and all the congregation.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">At that time did king Ahaz send unto the kings of Assyria to help him.</VERS>\r\n      <VERS vnumber=\"17\">For again the Edomites had come and smitten Judah, and carried away captives.</VERS>\r\n      <VERS vnumber=\"18\">The 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.</VERS>\r\n      <VERS vnumber=\"19\">For the LORD brought Judah low because of Ahaz king of Israel; for he made Judah naked, and transgressed sore against the LORD.</VERS>\r\n      <VERS vnumber=\"20\">And Tilgathpilneser king of Assyria came unto him, and distressed him, but strengthened him not.</VERS>\r\n      <VERS vnumber=\"21\">For 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.</VERS>\r\n      <VERS vnumber=\"22\">And in the time of his distress did he trespass yet more against the LORD: this is that king Ahaz.</VERS>\r\n      <VERS vnumber=\"23\">For 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">Now 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"29\">\r\n      <VERS vnumber=\"1\">Hezekiah 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.</VERS>\r\n      <VERS vnumber=\"2\">And he did that which was right in the sight of the LORD, according to all that David his father had done.</VERS>\r\n      <VERS vnumber=\"3\">He in the first year of his reign, in the first month, opened the doors of the house of the LORD, and repaired them.</VERS>\r\n      <VERS vnumber=\"4\">And he brought in the priests and the Levites, and gathered them together into the east street,</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">For 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.</VERS>\r\n      <VERS vnumber=\"7\">Also 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.</VERS>\r\n      <VERS vnumber=\"8\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"9\">For, lo, our fathers have fallen by the sword, and our sons and our daughters and our wives are in captivity for this.</VERS>\r\n      <VERS vnumber=\"10\">Now it is in mine heart to make a covenant with the LORD God of Israel, that his fierce wrath may turn away from us.</VERS>\r\n      <VERS vnumber=\"11\">My 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.</VERS>\r\n      <VERS vnumber=\"12\">Then 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:</VERS>\r\n      <VERS vnumber=\"13\">And of the sons of Elizaphan; Shimri, and Jeiel: and of the sons of Asaph; Zechariah, and Mattaniah:</VERS>\r\n      <VERS vnumber=\"14\">And of the sons of Heman; Jehiel, and Shimei: and of the sons of Jeduthun; Shemaiah, and Uzziel.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">Now 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.</VERS>\r\n      <VERS vnumber=\"18\">Then 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.</VERS>\r\n      <VERS vnumber=\"19\">Moreover 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.</VERS>\r\n      <VERS vnumber=\"20\">Then Hezekiah the king rose early, and gathered the rulers of the city, and went up to the house of the LORD.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">So 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.</VERS>\r\n      <VERS vnumber=\"23\">And they brought forth the he goats for the sin offering before the king and the congregation; and they laid their hands upon them:</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And the Levites stood with the instruments of David, and the priests with the trumpets.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And all the congregation worshipped, and the singers sang, and the trumpeters sounded: and all this continued until the burnt offering was finished.</VERS>\r\n      <VERS vnumber=\"29\">And when they had made an end of offering, the king and all that were present with him bowed themselves, and worshipped.</VERS>\r\n      <VERS vnumber=\"30\">Moreover 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.</VERS>\r\n      <VERS vnumber=\"31\">Then 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.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">And the consecrated things were six hundred oxen and three thousand sheep.</VERS>\r\n      <VERS vnumber=\"34\">But 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.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">And Hezekiah rejoiced, and all the people, that God had prepared the people: for the thing was done suddenly.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"30\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">For the king had taken counsel, and his princes, and all the congregation in Jerusalem, to keep the passover in the second month.</VERS>\r\n      <VERS vnumber=\"3\">For 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.</VERS>\r\n      <VERS vnumber=\"4\">And the thing pleased the king and all the congregation.</VERS>\r\n      <VERS vnumber=\"5\">So 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.</VERS>\r\n      <VERS vnumber=\"6\">So 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">Now 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.</VERS>\r\n      <VERS vnumber=\"9\">For 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.</VERS>\r\n      <VERS vnumber=\"10\">So 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.</VERS>\r\n      <VERS vnumber=\"11\">Nevertheless divers of Asher and Manasseh and of Zebulun humbled themselves, and came to Jerusalem.</VERS>\r\n      <VERS vnumber=\"12\">Also 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.</VERS>\r\n      <VERS vnumber=\"13\">And there assembled at Jerusalem much people to keep the feast of unleavened bread in the second month, a very great congregation.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">Then 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">For 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.</VERS>\r\n      <VERS vnumber=\"18\">For 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</VERS>\r\n      <VERS vnumber=\"19\">That prepareth his heart to seek God, the LORD God of his fathers, though he be not cleansed according to the purification of the sanctuary.</VERS>\r\n      <VERS vnumber=\"20\">And the LORD hearkened to Hezekiah, and healed the people.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And the whole assembly took counsel to keep other seven days: and they kept other seven days with gladness.</VERS>\r\n      <VERS vnumber=\"24\">For 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">So 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.</VERS>\r\n      <VERS vnumber=\"27\">Then 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"31\">\r\n      <VERS vnumber=\"1\">Now 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">He 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.</VERS>\r\n      <VERS vnumber=\"4\">Moreover 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">In the third month they began to lay the foundation of the heaps, and finished them in the seventh month.</VERS>\r\n      <VERS vnumber=\"8\">And when Hezekiah and the princes came and saw the heaps, they blessed the LORD, and his people Israel.</VERS>\r\n      <VERS vnumber=\"9\">Then Hezekiah questioned with the priests and the Levites concerning the heaps.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">Then Hezekiah commanded to prepare chambers in the house of the LORD; and they prepared them,</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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:</VERS>\r\n      <VERS vnumber=\"16\">Beside 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;</VERS>\r\n      <VERS vnumber=\"17\">Both 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;</VERS>\r\n      <VERS vnumber=\"18\">And 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:</VERS>\r\n      <VERS vnumber=\"19\">Also 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.</VERS>\r\n      <VERS vnumber=\"20\">And thus did Hezekiah throughout all Judah, and wrought that which was good and right and truth before the LORD his God.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"32\">\r\n      <VERS vnumber=\"1\">After 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.</VERS>\r\n      <VERS vnumber=\"2\">And when Hezekiah saw that Sennacherib was come, and that he was purposed to fight against Jerusalem,</VERS>\r\n      <VERS vnumber=\"3\">He 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.</VERS>\r\n      <VERS vnumber=\"4\">So 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?</VERS>\r\n      <VERS vnumber=\"5\">Also 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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,</VERS>\r\n      <VERS vnumber=\"7\">Be 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:</VERS>\r\n      <VERS vnumber=\"8\">With 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.</VERS>\r\n      <VERS vnumber=\"9\">After 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,</VERS>\r\n      <VERS vnumber=\"10\">Thus saith Sennacherib king of Assyria, Whereon do ye trust, that ye abide in the siege in Jerusalem?</VERS>\r\n      <VERS vnumber=\"11\">Doth 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?</VERS>\r\n      <VERS vnumber=\"12\">Hath 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?</VERS>\r\n      <VERS vnumber=\"13\">Know 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?</VERS>\r\n      <VERS vnumber=\"14\">Who 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?</VERS>\r\n      <VERS vnumber=\"15\">Now 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?</VERS>\r\n      <VERS vnumber=\"16\">And his servants spake yet more against the LORD God, and against his servant Hezekiah.</VERS>\r\n      <VERS vnumber=\"17\">He 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.</VERS>\r\n      <VERS vnumber=\"18\">Then 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And for this cause Hezekiah the king, and the prophet Isaiah the son of Amoz, prayed and cried to heaven.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">Thus 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.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">In those days Hezekiah was sick to the death, and prayed unto the LORD: and he spake unto him, and he gave him a sign.</VERS>\r\n      <VERS vnumber=\"25\">But 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.</VERS>\r\n      <VERS vnumber=\"26\">Notwithstanding 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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;</VERS>\r\n      <VERS vnumber=\"28\">Storehouses also for the increase of corn, and wine, and oil; and stalls for all manner of beasts, and cotes for flocks.</VERS>\r\n      <VERS vnumber=\"29\">Moreover he provided him cities, and possessions of flocks and herds in abundance: for God had given him substance very much.</VERS>\r\n      <VERS vnumber=\"30\">This 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.</VERS>\r\n      <VERS vnumber=\"31\">Howbeit 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.</VERS>\r\n      <VERS vnumber=\"32\">Now 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.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"33\">\r\n      <VERS vnumber=\"1\">Manasseh was twelve years old when he began to reign, and he reigned fifty and five years in Jerusalem:</VERS>\r\n      <VERS vnumber=\"2\">But 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.</VERS>\r\n      <VERS vnumber=\"3\">For 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.</VERS>\r\n      <VERS vnumber=\"4\">Also he built altars in the house of the LORD, whereof the LORD had said, In Jerusalem shall my name be for ever.</VERS>\r\n      <VERS vnumber=\"5\">And he built altars for all the host of heaven in the two courts of the house of the LORD.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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:</VERS>\r\n      <VERS vnumber=\"8\">Neither 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.</VERS>\r\n      <VERS vnumber=\"9\">So 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.</VERS>\r\n      <VERS vnumber=\"10\">And the LORD spake to Manasseh, and to his people: but they would not hearken.</VERS>\r\n      <VERS vnumber=\"11\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"12\">And when he was in affliction, he besought the LORD his God, and humbled himself greatly before the God of his fathers,</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">Now 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">Nevertheless the people did sacrifice still in the high places, yet unto the LORD their God only.</VERS>\r\n      <VERS vnumber=\"18\">Now 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.</VERS>\r\n      <VERS vnumber=\"19\">His prayer also, and how God was intreated of him, and all his sin, 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.</VERS>\r\n      <VERS vnumber=\"20\">So Manasseh slept with his fathers, and they buried him in his own house: and Amon his son reigned in his stead.</VERS>\r\n      <VERS vnumber=\"21\">Amon was two and twenty years old when he began to reign, and reigned two years in Jerusalem.</VERS>\r\n      <VERS vnumber=\"22\">But 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;</VERS>\r\n      <VERS vnumber=\"23\">And humbled not himself before the LORD, as Manasseh his father had humbled himself; but Amon trespassed more and more.</VERS>\r\n      <VERS vnumber=\"24\">And his servants conspired against him, and slew him in his own house.</VERS>\r\n      <VERS vnumber=\"25\">But 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"34\">\r\n      <VERS vnumber=\"1\">Josiah was eight years old when he began to reign, and he reigned in Jerusalem one and thirty years.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">For 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And he burnt the bones of the priests upon their altars, and cleansed Judah and Jerusalem.</VERS>\r\n      <VERS vnumber=\"6\">And so did he in the cities of Manasseh, and Ephraim, and Simeon, even unto Naphtali, with their mattocks round about.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">Now 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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:</VERS>\r\n      <VERS vnumber=\"11\">Even 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">Also 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">Then Shaphan the scribe told the king, saying, Hilkiah the priest hath given me a book. And Shaphan read it before the king.</VERS>\r\n      <VERS vnumber=\"19\">And it came to pass, when the king had heard the words of the law, that he rent his clothes.</VERS>\r\n      <VERS vnumber=\"20\">And 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,</VERS>\r\n      <VERS vnumber=\"21\">Go, 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.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And she answered them, Thus saith the LORD God of Israel, Tell ye the man that sent you to me,</VERS>\r\n      <VERS vnumber=\"24\">Thus 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:</VERS>\r\n      <VERS vnumber=\"25\">Because 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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;</VERS>\r\n      <VERS vnumber=\"27\">Because 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.</VERS>\r\n      <VERS vnumber=\"28\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"29\">Then the king sent and gathered together all the elders of Judah and Jerusalem.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"35\">\r\n      <VERS vnumber=\"1\">Moreover Josiah kept a passover unto the LORD in Jerusalem: and they killed the passover on the fourteenth day of the first month.</VERS>\r\n      <VERS vnumber=\"2\">And he set the priests in their charges, and encouraged them to the service of the house of the LORD,</VERS>\r\n      <VERS vnumber=\"3\">And 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,</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">So 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">Conaniah 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.</VERS>\r\n      <VERS vnumber=\"10\">So the service was prepared, and the priests stood in their place, and the Levites in their courses, according to the king's commandment.</VERS>\r\n      <VERS vnumber=\"11\">And they killed the passover, and the priests sprinkled the blood from their hands, and the Levites flayed them.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">So 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.</VERS>\r\n      <VERS vnumber=\"17\">And the children of Israel that were present kept the passover at that time, and the feast of unleavened bread seven days.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">In the eighteenth year of the reign of Josiah was this passover kept.</VERS>\r\n      <VERS vnumber=\"20\">After all this, when Josiah had prepared the temple, Necho king of Egypt came up to fight against Carchemish by Euphrates: and Josiah went out against him.</VERS>\r\n      <VERS vnumber=\"21\">But 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.</VERS>\r\n      <VERS vnumber=\"22\">Nevertheless 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.</VERS>\r\n      <VERS vnumber=\"23\">And the archers shot at king Josiah; and the king said to his servants, Have me away; for I am sore wounded.</VERS>\r\n      <VERS vnumber=\"24\">His 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">Now the rest of the acts of Josiah, and his goodness, according to that which was written in the law of the LORD,</VERS>\r\n      <VERS vnumber=\"27\">And his deeds, first and last, behold, they are written in the book of the kings of Israel and Judah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"36\">\r\n      <VERS vnumber=\"1\">Then the people of the land took Jehoahaz the son of Josiah, and made him king in his father's stead in Jerusalem.</VERS>\r\n      <VERS vnumber=\"2\">Jehoahaz was twenty and three years old when he began to reign, and he reigned three months in Jerusalem.</VERS>\r\n      <VERS vnumber=\"3\">And the king of Egypt put him down at Jerusalem, and condemned the land in an hundred talents of silver and a talent of gold.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">Jehoiakim 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.</VERS>\r\n      <VERS vnumber=\"6\">Against him came up Nebuchadnezzar king of Babylon, and bound him in fetters, to carry him to Babylon.</VERS>\r\n      <VERS vnumber=\"7\">Nebuchadnezzar also carried of the vessels of the house of the LORD to Babylon, and put them in his temple at Babylon.</VERS>\r\n      <VERS vnumber=\"8\">Now 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.</VERS>\r\n      <VERS vnumber=\"9\">Jehoiachin 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">Zedekiah was one and twenty years old when he began to reign, and reigned eleven years in Jerusalem.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">Moreover 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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:</VERS>\r\n      <VERS vnumber=\"16\">But 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.</VERS>\r\n      <VERS vnumber=\"17\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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:</VERS>\r\n      <VERS vnumber=\"21\">To 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.</VERS>\r\n      <VERS vnumber=\"22\">Now 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,</VERS>\r\n      <VERS vnumber=\"23\">Thus 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.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"15\" bname=\"Ezra\" bsname=\"Ezra\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">Now 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,</VERS>\r\n      <VERS vnumber=\"2\">Thus 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.</VERS>\r\n      <VERS vnumber=\"3\">Who 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">Then 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">Also 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;</VERS>\r\n      <VERS vnumber=\"8\">Even those did Cyrus king of Persia bring forth by the hand of Mithredath the treasurer, and numbered them unto Sheshbazzar, the prince of Judah.</VERS>\r\n      <VERS vnumber=\"9\">And this is the number of them: thirty chargers of gold, a thousand chargers of silver, nine and twenty knives,</VERS>\r\n      <VERS vnumber=\"10\">Thirty basons of gold, silver basons of a second sort four hundred and ten, and other vessels a thousand.</VERS>\r\n      <VERS vnumber=\"11\">All 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">Now 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;</VERS>\r\n      <VERS vnumber=\"2\">Which came with Zerubbabel: Jeshua, Nehemiah, Seraiah, Reelaiah, Mordecai, Bilshan, Mispar, Bigvai, Rehum, Baanah. The number of the men of the people of Israel:</VERS>\r\n      <VERS vnumber=\"3\">The children of Parosh, two thousand an hundred seventy and two.</VERS>\r\n      <VERS vnumber=\"4\">The children of Shephatiah, three hundred seventy and two.</VERS>\r\n      <VERS vnumber=\"5\">The children of Arah, seven hundred seventy and five.</VERS>\r\n      <VERS vnumber=\"6\">The children of Pahathmoab, of the children of Jeshua and Joab, two thousand eight hundred and twelve.</VERS>\r\n      <VERS vnumber=\"7\">The children of Elam, a thousand two hundred fifty and four.</VERS>\r\n      <VERS vnumber=\"8\">The children of Zattu, nine hundred forty and five.</VERS>\r\n      <VERS vnumber=\"9\">The children of Zaccai, seven hundred and threescore.</VERS>\r\n      <VERS vnumber=\"10\">The children of Bani, six hundred forty and two.</VERS>\r\n      <VERS vnumber=\"11\">The children of Bebai, six hundred twenty and three.</VERS>\r\n      <VERS vnumber=\"12\">The children of Azgad, a thousand two hundred twenty and two.</VERS>\r\n      <VERS vnumber=\"13\">The children of Adonikam, six hundred sixty and six.</VERS>\r\n      <VERS vnumber=\"14\">The children of Bigvai, two thousand fifty and six.</VERS>\r\n      <VERS vnumber=\"15\">The children of Adin, four hundred fifty and four.</VERS>\r\n      <VERS vnumber=\"16\">The children of Ater of Hezekiah, ninety and eight.</VERS>\r\n      <VERS vnumber=\"17\">The children of Bezai, three hundred twenty and three.</VERS>\r\n      <VERS vnumber=\"18\">The children of Jorah, an hundred and twelve.</VERS>\r\n      <VERS vnumber=\"19\">The children of Hashum, two hundred twenty and three.</VERS>\r\n      <VERS vnumber=\"20\">The children of Gibbar, ninety and five.</VERS>\r\n      <VERS vnumber=\"21\">The children of Bethlehem, an hundred twenty and three.</VERS>\r\n      <VERS vnumber=\"22\">The men of Netophah, fifty and six.</VERS>\r\n      <VERS vnumber=\"23\">The men of Anathoth, an hundred twenty and eight.</VERS>\r\n      <VERS vnumber=\"24\">The children of Azmaveth, forty and two.</VERS>\r\n      <VERS vnumber=\"25\">The children of Kirjatharim, Chephirah, and Beeroth, seven hundred and forty and three.</VERS>\r\n      <VERS vnumber=\"26\">The children of Ramah and Gaba, six hundred twenty and one.</VERS>\r\n      <VERS vnumber=\"27\">The men of Michmas, an hundred twenty and two.</VERS>\r\n      <VERS vnumber=\"28\">The men of Bethel and Ai, two hundred twenty and three.</VERS>\r\n      <VERS vnumber=\"29\">The children of Nebo, fifty and two.</VERS>\r\n      <VERS vnumber=\"30\">The children of Magbish, an hundred fifty and six.</VERS>\r\n      <VERS vnumber=\"31\">The children of the other Elam, a thousand two hundred fifty and four.</VERS>\r\n      <VERS vnumber=\"32\">The children of Harim, three hundred and twenty.</VERS>\r\n      <VERS vnumber=\"33\">The children of Lod, Hadid, and Ono, seven hundred twenty and five.</VERS>\r\n      <VERS vnumber=\"34\">The children of Jericho, three hundred forty and five.</VERS>\r\n      <VERS vnumber=\"35\">The children of Senaah, three thousand and six hundred and thirty.</VERS>\r\n      <VERS vnumber=\"36\">The priests: the children of Jedaiah, of the house of Jeshua, nine hundred seventy and three.</VERS>\r\n      <VERS vnumber=\"37\">The children of Immer, a thousand fifty and two.</VERS>\r\n      <VERS vnumber=\"38\">The children of Pashur, a thousand two hundred forty and seven.</VERS>\r\n      <VERS vnumber=\"39\">The children of Harim, a thousand and seventeen.</VERS>\r\n      <VERS vnumber=\"40\">The Levites: the children of Jeshua and Kadmiel, of the children of Hodaviah, seventy and four.</VERS>\r\n      <VERS vnumber=\"41\">The singers: the children of Asaph, an hundred twenty and eight.</VERS>\r\n      <VERS vnumber=\"42\">The 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.</VERS>\r\n      <VERS vnumber=\"43\">The Nethinims: the children of Ziha, the children of Hasupha, the children of Tabbaoth,</VERS>\r\n      <VERS vnumber=\"44\">The children of Keros, the children of Siaha, the children of Padon,</VERS>\r\n      <VERS vnumber=\"45\">The children of Lebanah, the children of Hagabah, the children of Akkub,</VERS>\r\n      <VERS vnumber=\"46\">The children of Hagab, the children of Shalmai, the children of Hanan,</VERS>\r\n      <VERS vnumber=\"47\">The children of Giddel, the children of Gahar, the children of Reaiah,</VERS>\r\n      <VERS vnumber=\"48\">The children of Rezin, the children of Nekoda, the children of Gazzam,</VERS>\r\n      <VERS vnumber=\"49\">The children of Uzza, the children of Paseah, the children of Besai,</VERS>\r\n      <VERS vnumber=\"50\">The children of Asnah, the children of Mehunim, the children of Nephusim,</VERS>\r\n      <VERS vnumber=\"51\">The children of Bakbuk, the children of Hakupha, the children of Harhur,</VERS>\r\n      <VERS vnumber=\"52\">The children of Bazluth, the children of Mehida, the children of Harsha,</VERS>\r\n      <VERS vnumber=\"53\">The children of Barkos, the children of Sisera, the children of Thamah,</VERS>\r\n      <VERS vnumber=\"54\">The children of Neziah, the children of Hatipha.</VERS>\r\n      <VERS vnumber=\"55\">The children of Solomon's servants: the children of Sotai, the children of Sophereth, the children of Peruda,</VERS>\r\n      <VERS vnumber=\"56\">The children of Jaalah, the children of Darkon, the children of Giddel,</VERS>\r\n      <VERS vnumber=\"57\">The children of Shephatiah, the children of Hattil, the children of Pochereth of Zebaim, the children of Ami.</VERS>\r\n      <VERS vnumber=\"58\">All the Nethinims, and the children of Solomon's servants, were three hundred ninety and two.</VERS>\r\n      <VERS vnumber=\"59\">And 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:</VERS>\r\n      <VERS vnumber=\"60\">The children of Delaiah, the children of Tobiah, the children of Nekoda, six hundred fifty and two.</VERS>\r\n      <VERS vnumber=\"61\">And 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:</VERS>\r\n      <VERS vnumber=\"62\">These sought their register among those that were reckoned by genealogy, but they were not found: therefore were they, as polluted, put from the priesthood.</VERS>\r\n      <VERS vnumber=\"63\">And 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.</VERS>\r\n      <VERS vnumber=\"64\">The whole congregation together was forty and two thousand three hundred and threescore,</VERS>\r\n      <VERS vnumber=\"65\">Beside 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.</VERS>\r\n      <VERS vnumber=\"66\">Their horses were seven hundred thirty and six; their mules, two hundred forty and five;</VERS>\r\n      <VERS vnumber=\"67\">Their camels, four hundred thirty and five; their asses, six thousand seven hundred and twenty.</VERS>\r\n      <VERS vnumber=\"68\">And 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:</VERS>\r\n      <VERS vnumber=\"69\">They 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.</VERS>\r\n      <VERS vnumber=\"70\">So 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">Then 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">They 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;</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">From 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.</VERS>\r\n      <VERS vnumber=\"7\">They 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.</VERS>\r\n      <VERS vnumber=\"8\">Now 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.</VERS>\r\n      <VERS vnumber=\"9\">Then 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">But 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:</VERS>\r\n      <VERS vnumber=\"13\">So 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">Now when the adversaries of Judah and Benjamin heard that the children of the captivity builded the temple unto the LORD God of Israel;</VERS>\r\n      <VERS vnumber=\"2\">Then 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.</VERS>\r\n      <VERS vnumber=\"3\">But 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.</VERS>\r\n      <VERS vnumber=\"4\">Then the people of the land weakened the hands of the people of Judah, and troubled them in building,</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And in the reign of Ahasuerus, in the beginning of his reign, wrote they unto him an accusation against the inhabitants of Judah and Jerusalem.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">Rehum the chancellor and Shimshai the scribe wrote a letter against Jerusalem to Artaxerxes the king in this sort:</VERS>\r\n      <VERS vnumber=\"9\">Then 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,</VERS>\r\n      <VERS vnumber=\"10\">And the rest of the nations whom the great and noble Asnappar brought over, and set in the cities of Samaria, and the rest that are on this side the river, and at such a time.</VERS>\r\n      <VERS vnumber=\"11\">This 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.</VERS>\r\n      <VERS vnumber=\"12\">Be 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.</VERS>\r\n      <VERS vnumber=\"13\">Be 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.</VERS>\r\n      <VERS vnumber=\"14\">Now 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;</VERS>\r\n      <VERS vnumber=\"15\">That 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.</VERS>\r\n      <VERS vnumber=\"16\">We 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.</VERS>\r\n      <VERS vnumber=\"17\">Then 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.</VERS>\r\n      <VERS vnumber=\"18\">The letter which ye sent unto us hath been plainly read before me.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">There 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.</VERS>\r\n      <VERS vnumber=\"21\">Give ye now commandment to cause these men to cease, and that this city be not builded, until another commandment shall be given from me.</VERS>\r\n      <VERS vnumber=\"22\">Take heed now that ye fail not to do this: why should damage grow to the hurt of the kings?</VERS>\r\n      <VERS vnumber=\"23\">Now 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.</VERS>\r\n      <VERS vnumber=\"24\">Then 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">Then 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.</VERS>\r\n      <VERS vnumber=\"2\">Then 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.</VERS>\r\n      <VERS vnumber=\"3\">At 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?</VERS>\r\n      <VERS vnumber=\"4\">Then said we unto them after this manner, What are the names of the men that make this building?</VERS>\r\n      <VERS vnumber=\"5\">But 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.</VERS>\r\n      <VERS vnumber=\"6\">The 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:</VERS>\r\n      <VERS vnumber=\"7\">They sent a letter unto him, wherein was written thus; Unto Darius the king, all peace.</VERS>\r\n      <VERS vnumber=\"8\">Be 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.</VERS>\r\n      <VERS vnumber=\"9\">Then asked we those elders, and said unto them thus, Who commanded you to build this house, and to make up these walls?</VERS>\r\n      <VERS vnumber=\"10\">We asked their names also, to certify thee, that we might write the names of the men that were the chief of them.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">But 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.</VERS>\r\n      <VERS vnumber=\"13\">But in the first year of Cyrus the king of Babylon the same king Cyrus made a decree to build this house of God.</VERS>\r\n      <VERS vnumber=\"14\">And 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;</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">Then 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.</VERS>\r\n      <VERS vnumber=\"17\">Now 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">Then Darius the king made a decree, and search was made in the house of the rolls, where the treasures were laid up in Babylon.</VERS>\r\n      <VERS vnumber=\"2\">And 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:</VERS>\r\n      <VERS vnumber=\"3\">In 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;</VERS>\r\n      <VERS vnumber=\"4\">With three rows of great stones, and a row of new timber: and let the expenses be given out of the king's house:</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">Now therefore, Tatnai, governor beyond the river, Shetharboznai, and your companions the Apharsachites, which are beyond the river, be ye far from thence:</VERS>\r\n      <VERS vnumber=\"7\">Let 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.</VERS>\r\n      <VERS vnumber=\"8\">Moreover 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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:</VERS>\r\n      <VERS vnumber=\"10\">That they may offer sacrifices of sweet savours unto the God of heaven, and pray for the life of the king, and of his sons.</VERS>\r\n      <VERS vnumber=\"11\">Also 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">Then Tatnai, governor on this side the river, Shetharboznai, and their companions, according to that which Darius the king had sent, so they did speedily.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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,</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And the children of the captivity kept the passover upon the fourteenth day of the first month.</VERS>\r\n      <VERS vnumber=\"20\">For 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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,</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">Now after these things, in the reign of Artaxerxes king of Persia, Ezra the son of Seraiah, the son of Azariah, the son of Hilkiah,</VERS>\r\n      <VERS vnumber=\"2\">The son of Shallum, the son of Zadok, the son of Ahitub,</VERS>\r\n      <VERS vnumber=\"3\">The son of Amariah, the son of Azariah, the son of Meraioth,</VERS>\r\n      <VERS vnumber=\"4\">The son of Zerahiah, the son of Uzzi, the son of Bukki,</VERS>\r\n      <VERS vnumber=\"5\">The son of Abishua, the son of Phinehas, the son of Eleazar, the son of Aaron the chief priest:</VERS>\r\n      <VERS vnumber=\"6\">This 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And he came to Jerusalem in the fifth month, which was in the seventh year of the king.</VERS>\r\n      <VERS vnumber=\"9\">For 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.</VERS>\r\n      <VERS vnumber=\"10\">For Ezra had prepared his heart to seek the law of the LORD, and to do it, and to teach in Israel statutes and judgments.</VERS>\r\n      <VERS vnumber=\"11\">Now 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.</VERS>\r\n      <VERS vnumber=\"12\">Artaxerxes, king of kings, unto Ezra the priest, a scribe of the law of the God of heaven, perfect peace, and at such a time.</VERS>\r\n      <VERS vnumber=\"13\">I 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.</VERS>\r\n      <VERS vnumber=\"14\">Forasmuch 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;</VERS>\r\n      <VERS vnumber=\"15\">And 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,</VERS>\r\n      <VERS vnumber=\"16\">And 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:</VERS>\r\n      <VERS vnumber=\"17\">That 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">The vessels also that are given thee for the service of the house of thy God, those deliver thou before the God of Jerusalem.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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,</VERS>\r\n      <VERS vnumber=\"22\">Unto 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.</VERS>\r\n      <VERS vnumber=\"23\">Whatsoever 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?</VERS>\r\n      <VERS vnumber=\"24\">Also 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">Blessed 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:</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">These 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.</VERS>\r\n      <VERS vnumber=\"2\">Of the sons of Phinehas; Gershom: of the sons of Ithamar; Daniel: of the sons of David; Hattush.</VERS>\r\n      <VERS vnumber=\"3\">Of the sons of Shechaniah, of the sons of Pharosh; Zechariah: and with him were reckoned by genealogy of the males an hundred and fifty.</VERS>\r\n      <VERS vnumber=\"4\">Of the sons of Pahathmoab; Elihoenai the son of Zerahiah, and with him two hundred males.</VERS>\r\n      <VERS vnumber=\"5\">Of the sons of Shechaniah; the son of Jahaziel, and with him three hundred males.</VERS>\r\n      <VERS vnumber=\"6\">Of the sons also of Adin; Ebed the son of Jonathan, and with him fifty males.</VERS>\r\n      <VERS vnumber=\"7\">And of the sons of Elam; Jeshaiah the son of Athaliah, and with him seventy males.</VERS>\r\n      <VERS vnumber=\"8\">And of the sons of Shephatiah; Zebadiah the son of Michael, and with him fourscore males.</VERS>\r\n      <VERS vnumber=\"9\">Of the sons of Joab; Obadiah the son of Jehiel, and with him two hundred and eighteen males.</VERS>\r\n      <VERS vnumber=\"10\">And of the sons of Shelomith; the son of Josiphiah, and with him an hundred and threescore males.</VERS>\r\n      <VERS vnumber=\"11\">And of the sons of Bebai; Zechariah the son of Bebai, and with him twenty and eight males.</VERS>\r\n      <VERS vnumber=\"12\">And of the sons of Azgad; Johanan the son of Hakkatan, and with him an hundred and ten males.</VERS>\r\n      <VERS vnumber=\"13\">And of the last sons of Adonikam, whose names are these, Eliphelet, Jeiel, and Shemaiah, and with them threescore males.</VERS>\r\n      <VERS vnumber=\"14\">Of the sons also of Bigvai; Uthai, and Zabbud, and with them seventy males.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">Then 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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;</VERS>\r\n      <VERS vnumber=\"19\">And Hashabiah, and with him Jeshaiah of the sons of Merari, his brethren and their sons, twenty;</VERS>\r\n      <VERS vnumber=\"20\">Also 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.</VERS>\r\n      <VERS vnumber=\"21\">Then 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.</VERS>\r\n      <VERS vnumber=\"22\">For 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.</VERS>\r\n      <VERS vnumber=\"23\">So we fasted and besought our God for this: and he was intreated of us.</VERS>\r\n      <VERS vnumber=\"24\">Then I separated twelve of the chief of the priests, Sherebiah, Hashabiah, and ten of their brethren with them,</VERS>\r\n      <VERS vnumber=\"25\">And 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:</VERS>\r\n      <VERS vnumber=\"26\">I even weighed unto their hand six hundred and fifty talents of silver, and silver vessels an hundred talents, and of gold an hundred talents;</VERS>\r\n      <VERS vnumber=\"27\">Also twenty basons of gold, of a thousand drams; and two vessels of fine copper, precious as gold.</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">Watch 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.</VERS>\r\n      <VERS vnumber=\"30\">So 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.</VERS>\r\n      <VERS vnumber=\"31\">Then 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.</VERS>\r\n      <VERS vnumber=\"32\">And we came to Jerusalem, and abode there three days.</VERS>\r\n      <VERS vnumber=\"33\">Now 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;</VERS>\r\n      <VERS vnumber=\"34\">By number and by weight of every one: and all the weight was written at that time.</VERS>\r\n      <VERS vnumber=\"35\">Also 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.</VERS>\r\n      <VERS vnumber=\"36\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">Now 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.</VERS>\r\n      <VERS vnumber=\"2\">For 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">Then 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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,</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">Since 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">For 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.</VERS>\r\n      <VERS vnumber=\"10\">And now, O our God, what shall we say after this? for we have forsaken thy commandments,</VERS>\r\n      <VERS vnumber=\"11\">Which 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.</VERS>\r\n      <VERS vnumber=\"12\">Now 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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;</VERS>\r\n      <VERS vnumber=\"14\">Should 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?</VERS>\r\n      <VERS vnumber=\"15\">O 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">Now 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">Now 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.</VERS>\r\n      <VERS vnumber=\"4\">Arise; for this matter belongeth unto thee: we also will be with thee: be of good courage, and do it.</VERS>\r\n      <VERS vnumber=\"5\">Then 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.</VERS>\r\n      <VERS vnumber=\"6\">Then 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.</VERS>\r\n      <VERS vnumber=\"7\">And they made proclamation throughout Judah and Jerusalem unto all the children of the captivity, that they should gather themselves together unto Jerusalem;</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">Then 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.</VERS>\r\n      <VERS vnumber=\"10\">And Ezra the priest stood up, and said unto them, Ye have transgressed, and have taken strange wives, to increase the trespass of Israel.</VERS>\r\n      <VERS vnumber=\"11\">Now 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.</VERS>\r\n      <VERS vnumber=\"12\">Then all the congregation answered and said with a loud voice, As thou hast said, so must we do.</VERS>\r\n      <VERS vnumber=\"13\">But 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.</VERS>\r\n      <VERS vnumber=\"14\">Let 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.</VERS>\r\n      <VERS vnumber=\"15\">Only Jonathan the son of Asahel and Jahaziah the son of Tikvah were employed about this matter: and Meshullam and Shabbethai the Levite helped them.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And they made an end with all the men that had taken strange wives by the first day of the first month.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And they gave their hands that they would put away their wives; and being guilty, they offered a ram of the flock for their trespass.</VERS>\r\n      <VERS vnumber=\"20\">And of the sons of Immer; Hanani, and Zebadiah.</VERS>\r\n      <VERS vnumber=\"21\">And of the sons of Harim; Maaseiah, and Elijah, and Shemaiah, and Jehiel, and Uzziah.</VERS>\r\n      <VERS vnumber=\"22\">And of the sons of Pashur; Elioenai, Maaseiah, Ishmael, Nethaneel, Jozabad, and Elasah.</VERS>\r\n      <VERS vnumber=\"23\">Also of the Levites; Jozabad, and Shimei, and Kelaiah, (the same is Kelita,) Pethahiah, Judah, and Eliezer.</VERS>\r\n      <VERS vnumber=\"24\">Of the singers also; Eliashib: and of the porters; Shallum, and Telem, and Uri.</VERS>\r\n      <VERS vnumber=\"25\">Moreover of Israel: of the sons of Parosh; Ramiah, and Jeziah, and Malchiah, and Miamin, and Eleazar, and Malchijah, and Benaiah.</VERS>\r\n      <VERS vnumber=\"26\">And of the sons of Elam; Mattaniah, Zechariah, and Jehiel, and Abdi, and Jeremoth, and Eliah.</VERS>\r\n      <VERS vnumber=\"27\">And of the sons of Zattu; Elioenai, Eliashib, Mattaniah, and Jeremoth, and Zabad, and Aziza.</VERS>\r\n      <VERS vnumber=\"28\">Of the sons also of Bebai; Jehohanan, Hananiah, Zabbai, and Athlai.</VERS>\r\n      <VERS vnumber=\"29\">And of the sons of Bani; Meshullam, Malluch, and Adaiah, Jashub, and Sheal, and Ramoth.</VERS>\r\n      <VERS vnumber=\"30\">And of the sons of Pahathmoab; Adna, and Chelal, Benaiah, Maaseiah, Mattaniah, Bezaleel, and Binnui, and Manasseh.</VERS>\r\n      <VERS vnumber=\"31\">And of the sons of Harim; Eliezer, Ishijah, Malchiah, Shemaiah, Shimeon,</VERS>\r\n      <VERS vnumber=\"32\">Benjamin, Malluch, and Shemariah.</VERS>\r\n      <VERS vnumber=\"33\">Of the sons of Hashum; Mattenai, Mattathah, Zabad, Eliphelet, Jeremai, Manasseh, and Shimei.</VERS>\r\n      <VERS vnumber=\"34\">Of the sons of Bani; Maadai, Amram, and Uel,</VERS>\r\n      <VERS vnumber=\"35\">Benaiah, Bedeiah, Chelluh,</VERS>\r\n      <VERS vnumber=\"36\">Vaniah, Meremoth, Eliashib,</VERS>\r\n      <VERS vnumber=\"37\">Mattaniah, Mattenai, and Jaasau,</VERS>\r\n      <VERS vnumber=\"38\">And Bani, and Binnui, Shimei,</VERS>\r\n      <VERS vnumber=\"39\">And Shelemiah, and Nathan, and Adaiah,</VERS>\r\n      <VERS vnumber=\"40\">Machnadebai, Shashai, Sharai,</VERS>\r\n      <VERS vnumber=\"41\">Azareel, and Shelemiah, Shemariah,</VERS>\r\n      <VERS vnumber=\"42\">Shallum, Amariah, and Joseph.</VERS>\r\n      <VERS vnumber=\"43\">Of the sons of Nebo; Jeiel, Mattithiah, Zabad, Zebina, Jadau, and Joel, Benaiah.</VERS>\r\n      <VERS vnumber=\"44\">All these had taken strange wives: and some of them had wives by whom they had children.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"16\" bname=\"Nehemiah\" bsname=\"Neh\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">The 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,</VERS>\r\n      <VERS vnumber=\"2\">That 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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,</VERS>\r\n      <VERS vnumber=\"5\">And 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:</VERS>\r\n      <VERS vnumber=\"6\">Let 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.</VERS>\r\n      <VERS vnumber=\"7\">We have dealt very corruptly against thee, and have not kept the commandments, nor the statutes, nor the judgments, which thou commandedst thy servant Moses.</VERS>\r\n      <VERS vnumber=\"8\">Remember, I beseech thee, the word that thou commandedst thy servant Moses, saying, If ye transgress, I will scatter you abroad among the nations:</VERS>\r\n      <VERS vnumber=\"9\">But 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.</VERS>\r\n      <VERS vnumber=\"10\">Now these are thy servants and thy people, whom thou hast redeemed by thy great power, and by thy strong hand.</VERS>\r\n      <VERS vnumber=\"11\">O 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">Wherefore 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,</VERS>\r\n      <VERS vnumber=\"3\">And 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?</VERS>\r\n      <VERS vnumber=\"4\">Then the king said unto me, For what dost thou make request? So I prayed to the God of heaven.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">Moreover 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;</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">Then 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.</VERS>\r\n      <VERS vnumber=\"10\">When 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.</VERS>\r\n      <VERS vnumber=\"11\">So I came to Jerusalem, and was there three days.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">Then 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.</VERS>\r\n      <VERS vnumber=\"15\">Then 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">Then 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.</VERS>\r\n      <VERS vnumber=\"18\">Then 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.</VERS>\r\n      <VERS vnumber=\"19\">But 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?</VERS>\r\n      <VERS vnumber=\"20\">Then 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Then 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.</VERS>\r\n      <VERS vnumber=\"2\">And next unto him builded the men of Jericho. And next to them builded Zaccur the son of Imri.</VERS>\r\n      <VERS vnumber=\"3\">But 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And next unto them the Tekoites repaired; but their nobles put not their necks to the work of their Lord.</VERS>\r\n      <VERS vnumber=\"6\">Moreover 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">Next 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.</VERS>\r\n      <VERS vnumber=\"9\">And next unto them repaired Rephaiah the son of Hur, the ruler of the half part of Jerusalem.</VERS>\r\n      <VERS vnumber=\"10\">And next unto them repaired Jedaiah the son of Harumaph, even over against his house. And next unto him repaired Hattush the son of Hashabniah.</VERS>\r\n      <VERS vnumber=\"11\">Malchijah the son of Harim, and Hashub the son of Pahathmoab, repaired the other piece, and the tower of the furnaces.</VERS>\r\n      <VERS vnumber=\"12\">And next unto him repaired Shallum the son of Halohesh, the ruler of the half part of Jerusalem, he and his daughters.</VERS>\r\n      <VERS vnumber=\"13\">The 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.</VERS>\r\n      <VERS vnumber=\"14\">But 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.</VERS>\r\n      <VERS vnumber=\"15\">But 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.</VERS>\r\n      <VERS vnumber=\"16\">After 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.</VERS>\r\n      <VERS vnumber=\"17\">After 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.</VERS>\r\n      <VERS vnumber=\"18\">After him repaired their brethren, Bavai the son of Henadad, the ruler of the half part of Keilah.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">After 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.</VERS>\r\n      <VERS vnumber=\"21\">After 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.</VERS>\r\n      <VERS vnumber=\"22\">And after him repaired the priests, the men of the plain.</VERS>\r\n      <VERS vnumber=\"23\">After him repaired Benjamin and Hashub over against their house. After him repaired Azariah the son of Maaseiah the son of Ananiah by his house.</VERS>\r\n      <VERS vnumber=\"24\">After him repaired Binnui the son of Henadad another piece, from the house of Azariah unto the turning of the wall, even unto the corner.</VERS>\r\n      <VERS vnumber=\"25\">Palal 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.</VERS>\r\n      <VERS vnumber=\"26\">Moreover the Nethinims dwelt in Ophel, unto the place over against the water gate toward the east, and the tower that lieth out.</VERS>\r\n      <VERS vnumber=\"27\">After them the Tekoites repaired another piece, over against the great tower that lieth out, even unto the wall of Ophel.</VERS>\r\n      <VERS vnumber=\"28\">From above the horse gate repaired the priests, every one over against his house.</VERS>\r\n      <VERS vnumber=\"29\">After 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.</VERS>\r\n      <VERS vnumber=\"30\">After 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.</VERS>\r\n      <VERS vnumber=\"31\">After 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.</VERS>\r\n      <VERS vnumber=\"32\">And between the going up of the corner unto the sheep gate repaired the goldsmiths and the merchants.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">But it came to pass, that when Sanballat heard that we builded the wall, he was wroth, and took great indignation, and mocked the Jews.</VERS>\r\n      <VERS vnumber=\"2\">And 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?</VERS>\r\n      <VERS vnumber=\"3\">Now 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.</VERS>\r\n      <VERS vnumber=\"4\">Hear, 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:</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">So built we the wall; and all the wall was joined together unto the half thereof: for the people had a mind to work.</VERS>\r\n      <VERS vnumber=\"7\">But 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,</VERS>\r\n      <VERS vnumber=\"8\">And conspired all of them together to come and to fight against Jerusalem, and to hinder it.</VERS>\r\n      <VERS vnumber=\"9\">Nevertheless we made our prayer unto our God, and set a watch against them day and night, because of them.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">They 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.</VERS>\r\n      <VERS vnumber=\"18\">For the builders, every one had his sword girded by his side, and so builded. And he that sounded the trumpet was by me.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">In what place therefore ye hear the sound of the trumpet, resort ye thither unto us: our God shall fight for us.</VERS>\r\n      <VERS vnumber=\"21\">So we laboured in the work: and half of them held the spears from the rising of the morning till the stars appeared.</VERS>\r\n      <VERS vnumber=\"22\">Likewise 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.</VERS>\r\n      <VERS vnumber=\"23\">So 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">And there was a great cry of the people and of their wives against their brethren the Jews.</VERS>\r\n      <VERS vnumber=\"2\">For 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.</VERS>\r\n      <VERS vnumber=\"3\">Some also there were that said, We have mortgaged our lands, vineyards, and houses, that we might buy corn, because of the dearth.</VERS>\r\n      <VERS vnumber=\"4\">There were also that said, We have borrowed money for the king's tribute, and that upon our lands and vineyards.</VERS>\r\n      <VERS vnumber=\"5\">Yet 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.</VERS>\r\n      <VERS vnumber=\"6\">And I was very angry when I heard their cry and these words.</VERS>\r\n      <VERS vnumber=\"7\">Then 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">Also 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?</VERS>\r\n      <VERS vnumber=\"10\">I likewise, and my brethren, and my servants, might exact of them money and corn: I pray you, let us leave off this usury.</VERS>\r\n      <VERS vnumber=\"11\">Restore, 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.</VERS>\r\n      <VERS vnumber=\"12\">Then 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.</VERS>\r\n      <VERS vnumber=\"13\">Also 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.</VERS>\r\n      <VERS vnumber=\"14\">Moreover 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.</VERS>\r\n      <VERS vnumber=\"15\">But 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.</VERS>\r\n      <VERS vnumber=\"16\">Yea, also I continued in the work of this wall, neither bought we any land: and all my servants were gathered thither unto the work.</VERS>\r\n      <VERS vnumber=\"17\">Moreover 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.</VERS>\r\n      <VERS vnumber=\"18\">Now 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.</VERS>\r\n      <VERS vnumber=\"19\">Think upon me, my God, for good, according to all that I have done for this people.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">Now 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;)</VERS>\r\n      <VERS vnumber=\"2\">That 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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?</VERS>\r\n      <VERS vnumber=\"4\">Yet they sent unto me four times after this sort; and I answered them after the same manner.</VERS>\r\n      <VERS vnumber=\"5\">Then sent Sanballat his servant unto me in like manner the fifth time with an open letter in his hand;</VERS>\r\n      <VERS vnumber=\"6\">Wherein 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">Then I sent unto him, saying, There are no such things done as thou sayest, but thou feignest them out of thine own heart.</VERS>\r\n      <VERS vnumber=\"9\">For 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.</VERS>\r\n      <VERS vnumber=\"10\">Afterward 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And, lo, I perceived that God had not sent him; but that he pronounced this prophecy against me: for Tobiah and Sanballat had hired him.</VERS>\r\n      <VERS vnumber=\"13\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"14\">My 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.</VERS>\r\n      <VERS vnumber=\"15\">So the wall was finished in the twenty and fifth day of the month Elul, in fifty and two days.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">Moreover in those days the nobles of Judah sent many letters unto Tobiah, and the letters of Tobiah came unto them.</VERS>\r\n      <VERS vnumber=\"18\">For 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.</VERS>\r\n      <VERS vnumber=\"19\">Also they reported his good deeds before me, and uttered my words to him. And Tobiah sent letters to put me in fear.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">Now 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,</VERS>\r\n      <VERS vnumber=\"2\">That 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">Now the city was large and great: but the people were few therein, and the houses were not builded.</VERS>\r\n      <VERS vnumber=\"5\">And 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,</VERS>\r\n      <VERS vnumber=\"6\">These 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;</VERS>\r\n      <VERS vnumber=\"7\">Who 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;</VERS>\r\n      <VERS vnumber=\"8\">The children of Parosh, two thousand an hundred seventy and two.</VERS>\r\n      <VERS vnumber=\"9\">The children of Shephatiah, three hundred seventy and two.</VERS>\r\n      <VERS vnumber=\"10\">The children of Arah, six hundred fifty and two.</VERS>\r\n      <VERS vnumber=\"11\">The children of Pahathmoab, of the children of Jeshua and Joab, two thousand and eight hundred and eighteen.</VERS>\r\n      <VERS vnumber=\"12\">The children of Elam, a thousand two hundred fifty and four.</VERS>\r\n      <VERS vnumber=\"13\">The children of Zattu, eight hundred forty and five.</VERS>\r\n      <VERS vnumber=\"14\">The children of Zaccai, seven hundred and threescore.</VERS>\r\n      <VERS vnumber=\"15\">The children of Binnui, six hundred forty and eight.</VERS>\r\n      <VERS vnumber=\"16\">The children of Bebai, six hundred twenty and eight.</VERS>\r\n      <VERS vnumber=\"17\">The children of Azgad, two thousand three hundred twenty and two.</VERS>\r\n      <VERS vnumber=\"18\">The children of Adonikam, six hundred threescore and seven.</VERS>\r\n      <VERS vnumber=\"19\">The children of Bigvai, two thousand threescore and seven.</VERS>\r\n      <VERS vnumber=\"20\">The children of Adin, six hundred fifty and five.</VERS>\r\n      <VERS vnumber=\"21\">The children of Ater of Hezekiah, ninety and eight.</VERS>\r\n      <VERS vnumber=\"22\">The children of Hashum, three hundred twenty and eight.</VERS>\r\n      <VERS vnumber=\"23\">The children of Bezai, three hundred twenty and four.</VERS>\r\n      <VERS vnumber=\"24\">The children of Hariph, an hundred and twelve.</VERS>\r\n      <VERS vnumber=\"25\">The children of Gibeon, ninety and five.</VERS>\r\n      <VERS vnumber=\"26\">The men of Bethlehem and Netophah, an hundred fourscore and eight.</VERS>\r\n      <VERS vnumber=\"27\">The men of Anathoth, an hundred twenty and eight.</VERS>\r\n      <VERS vnumber=\"28\">The men of Bethazmaveth, forty and two.</VERS>\r\n      <VERS vnumber=\"29\">The men of Kirjathjearim, Chephirah, and Beeroth, seven hundred forty and three.</VERS>\r\n      <VERS vnumber=\"30\">The men of Ramah and Geba, six hundred twenty and one.</VERS>\r\n      <VERS vnumber=\"31\">The men of Michmas, an hundred and twenty and two.</VERS>\r\n      <VERS vnumber=\"32\">The men of Bethel and Ai, an hundred twenty and three.</VERS>\r\n      <VERS vnumber=\"33\">The men of the other Nebo, fifty and two.</VERS>\r\n      <VERS vnumber=\"34\">The children of the other Elam, a thousand two hundred fifty and four.</VERS>\r\n      <VERS vnumber=\"35\">The children of Harim, three hundred and twenty.</VERS>\r\n      <VERS vnumber=\"36\">The children of Jericho, three hundred forty and five.</VERS>\r\n      <VERS vnumber=\"37\">The children of Lod, Hadid, and Ono, seven hundred twenty and one.</VERS>\r\n      <VERS vnumber=\"38\">The children of Senaah, three thousand nine hundred and thirty.</VERS>\r\n      <VERS vnumber=\"39\">The priests: the children of Jedaiah, of the house of Jeshua, nine hundred seventy and three.</VERS>\r\n      <VERS vnumber=\"40\">The children of Immer, a thousand fifty and two.</VERS>\r\n      <VERS vnumber=\"41\">The children of Pashur, a thousand two hundred forty and seven.</VERS>\r\n      <VERS vnumber=\"42\">The children of Harim, a thousand and seventeen.</VERS>\r\n      <VERS vnumber=\"43\">The Levites: the children of Jeshua, of Kadmiel, and of the children of Hodevah, seventy and four.</VERS>\r\n      <VERS vnumber=\"44\">The singers: the children of Asaph, an hundred forty and eight.</VERS>\r\n      <VERS vnumber=\"45\">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, an hundred thirty and eight.</VERS>\r\n      <VERS vnumber=\"46\">The Nethinims: the children of Ziha, the children of Hashupha, the children of Tabbaoth,</VERS>\r\n      <VERS vnumber=\"47\">The children of Keros, the children of Sia, the children of Padon,</VERS>\r\n      <VERS vnumber=\"48\">The children of Lebana, the children of Hagaba, the children of Shalmai,</VERS>\r\n      <VERS vnumber=\"49\">The children of Hanan, the children of Giddel, the children of Gahar,</VERS>\r\n      <VERS vnumber=\"50\">The children of Reaiah, the children of Rezin, the children of Nekoda,</VERS>\r\n      <VERS vnumber=\"51\">The children of Gazzam, the children of Uzza, the children of Phaseah,</VERS>\r\n      <VERS vnumber=\"52\">The children of Besai, the children of Meunim, the children of Nephishesim,</VERS>\r\n      <VERS vnumber=\"53\">The children of Bakbuk, the children of Hakupha, the children of Harhur,</VERS>\r\n      <VERS vnumber=\"54\">The children of Bazlith, the children of Mehida, the children of Harsha,</VERS>\r\n      <VERS vnumber=\"55\">The children of Barkos, the children of Sisera, the children of Tamah,</VERS>\r\n      <VERS vnumber=\"56\">The children of Neziah, the children of Hatipha.</VERS>\r\n      <VERS vnumber=\"57\">The children of Solomon's servants: the children of Sotai, the children of Sophereth, the children of Perida,</VERS>\r\n      <VERS vnumber=\"58\">The children of Jaala, the children of Darkon, the children of Giddel,</VERS>\r\n      <VERS vnumber=\"59\">The children of Shephatiah, the children of Hattil, the children of Pochereth of Zebaim, the children of Amon.</VERS>\r\n      <VERS vnumber=\"60\">All the Nethinims, and the children of Solomon's servants, were three hundred ninety and two.</VERS>\r\n      <VERS vnumber=\"61\">And 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.</VERS>\r\n      <VERS vnumber=\"62\">The children of Delaiah, the children of Tobiah, the children of Nekoda, six hundred forty and two.</VERS>\r\n      <VERS vnumber=\"63\">And 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.</VERS>\r\n      <VERS vnumber=\"64\">These sought their register among those that were reckoned by genealogy, but it was not found: therefore were they, as polluted, put from the priesthood.</VERS>\r\n      <VERS vnumber=\"65\">And 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.</VERS>\r\n      <VERS vnumber=\"66\">The whole congregation together was forty and two thousand three hundred and threescore,</VERS>\r\n      <VERS vnumber=\"67\">Beside 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.</VERS>\r\n      <VERS vnumber=\"68\">Their horses, seven hundred thirty and six: their mules, two hundred forty and five:</VERS>\r\n      <VERS vnumber=\"69\">Their camels, four hundred thirty and five: six thousand seven hundred and twenty asses.</VERS>\r\n      <VERS vnumber=\"70\">And 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.</VERS>\r\n      <VERS vnumber=\"71\">And 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.</VERS>\r\n      <VERS vnumber=\"72\">And 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.</VERS>\r\n      <VERS vnumber=\"73\">So 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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:</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">Also 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.</VERS>\r\n      <VERS vnumber=\"8\">So they read in the book in the law of God distinctly, and gave the sense, and caused them to understand the reading.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">Then 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.</VERS>\r\n      <VERS vnumber=\"11\">So the Levites stilled all the people, saying, Hold your peace, for the day is holy; neither be ye grieved.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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:</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">So 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">Also 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">Now in the twenty and fourth day of this month the children of Israel were assembled with fasting, and with sackclothes, and earth upon them.</VERS>\r\n      <VERS vnumber=\"2\">And the seed of Israel separated themselves from all strangers, and stood and confessed their sins, and the iniquities of their fathers.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">Then 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.</VERS>\r\n      <VERS vnumber=\"5\">Then 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.</VERS>\r\n      <VERS vnumber=\"6\">Thou, 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.</VERS>\r\n      <VERS vnumber=\"7\">Thou 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;</VERS>\r\n      <VERS vnumber=\"8\">And 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:</VERS>\r\n      <VERS vnumber=\"9\">And didst see the affliction of our fathers in Egypt, and heardest their cry by the Red sea;</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">Moreover 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.</VERS>\r\n      <VERS vnumber=\"13\">Thou camest down also upon mount Sinai, and spakest with them from heaven, and gavest them right judgments, and true laws, good statutes and commandments:</VERS>\r\n      <VERS vnumber=\"14\">And madest known unto them thy holy sabbath, and commandedst them precepts, statutes, and laws, by the hand of Moses thy servant:</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">But they and our fathers dealt proudly, and hardened their necks, and hearkened not to thy commandments,</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">Yea, 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;</VERS>\r\n      <VERS vnumber=\"19\">Yet 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.</VERS>\r\n      <VERS vnumber=\"20\">Thou gavest also thy good spirit to instruct them, and withheldest not thy manna from their mouth, and gavest them water for their thirst.</VERS>\r\n      <VERS vnumber=\"21\">Yea, forty years didst thou sustain them in the wilderness, so that they lacked nothing; their clothes waxed not old, and their feet swelled not.</VERS>\r\n      <VERS vnumber=\"22\">Moreover 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.</VERS>\r\n      <VERS vnumber=\"23\">Their 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.</VERS>\r\n      <VERS vnumber=\"24\">So 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">Nevertheless 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.</VERS>\r\n      <VERS vnumber=\"27\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"28\">But after they had rest, they did evil again before thee: therefore leftest thou them in the hand 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;</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">Yet 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.</VERS>\r\n      <VERS vnumber=\"31\">Nevertheless for thy great mercies' sake thou didst not utterly consume them, nor forsake them; for thou art a gracious and merciful God.</VERS>\r\n      <VERS vnumber=\"32\">Now 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.</VERS>\r\n      <VERS vnumber=\"33\">Howbeit thou art just in all that is brought upon us; for thou hast done right, but we have done wickedly:</VERS>\r\n      <VERS vnumber=\"34\">Neither 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.</VERS>\r\n      <VERS vnumber=\"35\">For 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.</VERS>\r\n      <VERS vnumber=\"36\">Behold, 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:</VERS>\r\n      <VERS vnumber=\"37\">And 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.</VERS>\r\n      <VERS vnumber=\"38\">And because of all this we make a sure covenant, and write it; and our princes, Levites, and priests, seal unto it.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">Now those that sealed were, Nehemiah, the Tirshatha, the son of Hachaliah, and Zidkijah,</VERS>\r\n      <VERS vnumber=\"2\">Seraiah, Azariah, Jeremiah,</VERS>\r\n      <VERS vnumber=\"3\">Pashur, Amariah, Malchijah,</VERS>\r\n      <VERS vnumber=\"4\">Hattush, Shebaniah, Malluch,</VERS>\r\n      <VERS vnumber=\"5\">Harim, Meremoth, Obadiah,</VERS>\r\n      <VERS vnumber=\"6\">Daniel, Ginnethon, Baruch,</VERS>\r\n      <VERS vnumber=\"7\">Meshullam, Abijah, Mijamin,</VERS>\r\n      <VERS vnumber=\"8\">Maaziah, Bilgai, Shemaiah: these were the priests.</VERS>\r\n      <VERS vnumber=\"9\">And the Levites: both Jeshua the son of Azaniah, Binnui of the sons of Henadad, Kadmiel;</VERS>\r\n      <VERS vnumber=\"10\">And their brethren, Shebaniah, Hodijah, Kelita, Pelaiah, Hanan,</VERS>\r\n      <VERS vnumber=\"11\">Micha, Rehob, Hashabiah,</VERS>\r\n      <VERS vnumber=\"12\">Zaccur, Sherebiah, Shebaniah,</VERS>\r\n      <VERS vnumber=\"13\">Hodijah, Bani, Beninu.</VERS>\r\n      <VERS vnumber=\"14\">The chief of the people; Parosh, Pahathmoab, Elam, Zatthu, Bani,</VERS>\r\n      <VERS vnumber=\"15\">Bunni, Azgad, Bebai,</VERS>\r\n      <VERS vnumber=\"16\">Adonijah, Bigvai, Adin,</VERS>\r\n      <VERS vnumber=\"17\">Ater, Hizkijah, Azzur,</VERS>\r\n      <VERS vnumber=\"18\">Hodijah, Hashum, Bezai,</VERS>\r\n      <VERS vnumber=\"19\">Hariph, Anathoth, Nebai,</VERS>\r\n      <VERS vnumber=\"20\">Magpiash, Meshullam, Hezir,</VERS>\r\n      <VERS vnumber=\"21\">Meshezabeel, Zadok, Jaddua,</VERS>\r\n      <VERS vnumber=\"22\">Pelatiah, Hanan, Anaiah,</VERS>\r\n      <VERS vnumber=\"23\">Hoshea, Hananiah, Hashub,</VERS>\r\n      <VERS vnumber=\"24\">Hallohesh, Pileha, Shobek,</VERS>\r\n      <VERS vnumber=\"25\">Rehum, Hashabnah, Maaseiah,</VERS>\r\n      <VERS vnumber=\"26\">And Ahijah, Hanan, Anan,</VERS>\r\n      <VERS vnumber=\"27\">Malluch, Harim, Baanah.</VERS>\r\n      <VERS vnumber=\"28\">And 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;</VERS>\r\n      <VERS vnumber=\"29\">They 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;</VERS>\r\n      <VERS vnumber=\"30\">And that we would not give our daughters unto the people of the land, nor take their daughters for our sons:</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n      <VERS vnumber=\"32\">Also 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;</VERS>\r\n      <VERS vnumber=\"33\">For 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.</VERS>\r\n      <VERS vnumber=\"34\">And 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:</VERS>\r\n      <VERS vnumber=\"35\">And 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:</VERS>\r\n      <VERS vnumber=\"36\">Also 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:</VERS>\r\n      <VERS vnumber=\"37\">And 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.</VERS>\r\n      <VERS vnumber=\"38\">And 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.</VERS>\r\n      <VERS vnumber=\"39\">For 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And the people blessed all the men, that willingly offered themselves to dwell at Jerusalem.</VERS>\r\n      <VERS vnumber=\"3\">Now 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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;</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">All the sons of Perez that dwelt at Jerusalem were four hundred threescore and eight valiant men.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And after him Gabbai, Sallai, nine hundred twenty and eight.</VERS>\r\n      <VERS vnumber=\"9\">And Joel the son of Zichri was their overseer: and Judah the son of Senuah was second over the city.</VERS>\r\n      <VERS vnumber=\"10\">Of the priests: Jedaiah the son of Joiarib, Jachin.</VERS>\r\n      <VERS vnumber=\"11\">Seraiah 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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,</VERS>\r\n      <VERS vnumber=\"13\">And 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,</VERS>\r\n      <VERS vnumber=\"14\">And their brethren, mighty men of valour, an hundred twenty and eight: and their overseer was Zabdiel, the son of one of the great men.</VERS>\r\n      <VERS vnumber=\"15\">Also of the Levites: Shemaiah the son of Hashub, the son of Azrikam, the son of Hashabiah, the son of Bunni;</VERS>\r\n      <VERS vnumber=\"16\">And Shabbethai and Jozabad, of the chief of the Levites, had the oversight of the outward business of the house of God.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">All the Levites in the holy city were two hundred fourscore and four.</VERS>\r\n      <VERS vnumber=\"19\">Moreover the porters, Akkub, Talmon, and their brethren that kept the gates, were an hundred seventy and two.</VERS>\r\n      <VERS vnumber=\"20\">And the residue of Israel, of the priests, and the Levites, were in all the cities of Judah, every one in his inheritance.</VERS>\r\n      <VERS vnumber=\"21\">But the Nethinims dwelt in Ophel: and Ziha and Gispa were over the Nethinims.</VERS>\r\n      <VERS vnumber=\"22\">The 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.</VERS>\r\n      <VERS vnumber=\"23\">For it was the king's commandment concerning them, that a certain portion should be for the singers, due for every day.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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,</VERS>\r\n      <VERS vnumber=\"26\">And at Jeshua, and at Moladah, and at Bethphelet,</VERS>\r\n      <VERS vnumber=\"27\">And at Hazarshual, and at Beersheba, and in the villages thereof,</VERS>\r\n      <VERS vnumber=\"28\">And at Ziklag, and at Mekonah, and in the villages thereof,</VERS>\r\n      <VERS vnumber=\"29\">And at Enrimmon, and at Zareah, and at Jarmuth,</VERS>\r\n      <VERS vnumber=\"30\">Zanoah, 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.</VERS>\r\n      <VERS vnumber=\"31\">The children also of Benjamin from Geba dwelt at Michmash, and Aija, and Bethel, and in their villages,</VERS>\r\n      <VERS vnumber=\"32\">And at Anathoth, Nob, Ananiah,</VERS>\r\n      <VERS vnumber=\"33\">Hazor, Ramah, Gittaim,</VERS>\r\n      <VERS vnumber=\"34\">Hadid, Zeboim, Neballat,</VERS>\r\n      <VERS vnumber=\"35\">Lod, and Ono, the valley of craftsmen.</VERS>\r\n      <VERS vnumber=\"36\">And of the Levites were divisions in Judah, and in Benjamin.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">Now these are the priests and the Levites that went up with Zerubbabel the son of Shealtiel, and Jeshua: Seraiah, Jeremiah, Ezra,</VERS>\r\n      <VERS vnumber=\"2\">Amariah, Malluch, Hattush,</VERS>\r\n      <VERS vnumber=\"3\">Shechaniah, Rehum, Meremoth,</VERS>\r\n      <VERS vnumber=\"4\">Iddo, Ginnetho, Abijah,</VERS>\r\n      <VERS vnumber=\"5\">Miamin, Maadiah, Bilgah,</VERS>\r\n      <VERS vnumber=\"6\">Shemaiah, and Joiarib, Jedaiah,</VERS>\r\n      <VERS vnumber=\"7\">Sallu, Amok, Hilkiah, Jedaiah. These were the chief of the priests and of their brethren in the days of Jeshua.</VERS>\r\n      <VERS vnumber=\"8\">Moreover the Levites: Jeshua, Binnui, Kadmiel, Sherebiah, Judah, and Mattaniah, which was over the thanksgiving, he and his brethren.</VERS>\r\n      <VERS vnumber=\"9\">Also Bakbukiah and Unni, their brethren, were over against them in the watches.</VERS>\r\n      <VERS vnumber=\"10\">And Jeshua begat Joiakim, Joiakim also begat Eliashib, and Eliashib begat Joiada,</VERS>\r\n      <VERS vnumber=\"11\">And Joiada begat Jonathan, and Jonathan begat Jaddua.</VERS>\r\n      <VERS vnumber=\"12\">And in the days of Joiakim were priests, the chief of the fathers: of Seraiah, Meraiah; of Jeremiah, Hananiah;</VERS>\r\n      <VERS vnumber=\"13\">Of Ezra, Meshullam; of Amariah, Jehohanan;</VERS>\r\n      <VERS vnumber=\"14\">Of Melicu, Jonathan; of Shebaniah, Joseph;</VERS>\r\n      <VERS vnumber=\"15\">Of Harim, Adna; of Meraioth, Helkai;</VERS>\r\n      <VERS vnumber=\"16\">Of Iddo, Zechariah; of Ginnethon, Meshullam;</VERS>\r\n      <VERS vnumber=\"17\">Of Abijah, Zichri; of Miniamin, of Moadiah, Piltai;</VERS>\r\n      <VERS vnumber=\"18\">Of Bilgah, Shammua; of Shemaiah, Jehonathan;</VERS>\r\n      <VERS vnumber=\"19\">And of Joiarib, Mattenai; of Jedaiah, Uzzi;</VERS>\r\n      <VERS vnumber=\"20\">Of Sallai, Kallai; of Amok, Eber;</VERS>\r\n      <VERS vnumber=\"21\">Of Hilkiah, Hashabiah; of Jedaiah, Nethaneel.</VERS>\r\n      <VERS vnumber=\"22\">The 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.</VERS>\r\n      <VERS vnumber=\"23\">The 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">Mattaniah, and Bakbukiah, Obadiah, Meshullam, Talmon, Akkub, were porters keeping the ward at the thresholds of the gates.</VERS>\r\n      <VERS vnumber=\"26\">These 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And the sons of the singers gathered themselves together, both out of the plain country round about Jerusalem, and from the villages of Netophathi;</VERS>\r\n      <VERS vnumber=\"29\">Also from the house of Gilgal, and out of the fields of Geba and Azmaveth: for the singers had builded them villages round about Jerusalem.</VERS>\r\n      <VERS vnumber=\"30\">And the priests and the Levites purified themselves, and purified the people, and the gates, and the wall.</VERS>\r\n      <VERS vnumber=\"31\">Then 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:</VERS>\r\n      <VERS vnumber=\"32\">And after them went Hoshaiah, and half of the princes of Judah,</VERS>\r\n      <VERS vnumber=\"33\">And Azariah, Ezra, and Meshullam,</VERS>\r\n      <VERS vnumber=\"34\">Judah, and Benjamin, and Shemaiah, and Jeremiah,</VERS>\r\n      <VERS vnumber=\"35\">And 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:</VERS>\r\n      <VERS vnumber=\"36\">And 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.</VERS>\r\n      <VERS vnumber=\"37\">And 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.</VERS>\r\n      <VERS vnumber=\"38\">And 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;</VERS>\r\n      <VERS vnumber=\"39\">And 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.</VERS>\r\n      <VERS vnumber=\"40\">So stood the two companies of them that gave thanks in the house of God, and I, and the half of the rulers with me:</VERS>\r\n      <VERS vnumber=\"41\">And the priests; Eliakim, Maaseiah, Miniamin, Michaiah, Elioenai, Zechariah, and Hananiah, with trumpets;</VERS>\r\n      <VERS vnumber=\"42\">And Maaseiah, and Shemaiah, and Eleazar, and Uzzi, and Jehohanan, and Malchijah, and Elam, and Ezer. And the singers sang loud, with Jezrahiah their overseer.</VERS>\r\n      <VERS vnumber=\"43\">Also 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.</VERS>\r\n      <VERS vnumber=\"44\">And 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.</VERS>\r\n      <VERS vnumber=\"45\">And 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.</VERS>\r\n      <VERS vnumber=\"46\">For in the days of David and Asaph of old there were chief of the singers, and songs of praise and thanksgiving unto God.</VERS>\r\n      <VERS vnumber=\"47\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">On 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;</VERS>\r\n      <VERS vnumber=\"2\">Because 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.</VERS>\r\n      <VERS vnumber=\"3\">Now it came to pass, when they had heard the law, that they separated from Israel all the mixed multitude.</VERS>\r\n      <VERS vnumber=\"4\">And before this, Eliashib the priest, having the oversight of the chamber of the house of our God, was allied unto Tobiah:</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">But 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:</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And it grieved me sore: therefore I cast forth all the household stuff of Tobiah out of the chamber.</VERS>\r\n      <VERS vnumber=\"9\">Then 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">Then 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.</VERS>\r\n      <VERS vnumber=\"12\">Then brought all Judah the tithe of the corn and the new wine and the oil unto the treasuries.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">Remember 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.</VERS>\r\n      <VERS vnumber=\"15\">In 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.</VERS>\r\n      <VERS vnumber=\"16\">There 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.</VERS>\r\n      <VERS vnumber=\"17\">Then I contended with the nobles of Judah, and said unto them, What evil thing is this that ye do, and profane the sabbath day?</VERS>\r\n      <VERS vnumber=\"18\">Did 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">So the merchants and sellers of all kind of ware lodged without Jerusalem once or twice.</VERS>\r\n      <VERS vnumber=\"21\">Then 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.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">In those days also saw I Jews that had married wives of Ashdod, of Ammon, and of Moab:</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">Did 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.</VERS>\r\n      <VERS vnumber=\"27\">Shall we then hearken unto you to do all this great evil, to transgress against our God in marrying strange wives?</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">Remember them, O my God, because they have defiled the priesthood, and the covenant of the priesthood, and of the Levites.</VERS>\r\n      <VERS vnumber=\"30\">Thus cleansed I them from all strangers, and appointed the wards of the priests and the Levites, every one in his business;</VERS>\r\n      <VERS vnumber=\"31\">And for the wood offering, at times appointed, and for the firstfruits. Remember me, O my God, for good.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"17\" bname=\"Esther\" bsname=\"Esth\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">Now 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:)</VERS>\r\n      <VERS vnumber=\"2\">That in those days, when the king Ahasuerus sat on the throne of his kingdom, which was in Shushan the palace,</VERS>\r\n      <VERS vnumber=\"3\">In 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:</VERS>\r\n      <VERS vnumber=\"4\">When he shewed the riches of his glorious kingdom and the honour of his excellent majesty many days, even an hundred and fourscore days.</VERS>\r\n      <VERS vnumber=\"5\">And 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;</VERS>\r\n      <VERS vnumber=\"6\">Where 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">Also Vashti the queen made a feast for the women in the royal house which belonged to king Ahasuerus.</VERS>\r\n      <VERS vnumber=\"10\">On 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,</VERS>\r\n      <VERS vnumber=\"11\">To 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.</VERS>\r\n      <VERS vnumber=\"12\">But 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.</VERS>\r\n      <VERS vnumber=\"13\">Then 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:</VERS>\r\n      <VERS vnumber=\"14\">And 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;)</VERS>\r\n      <VERS vnumber=\"15\">What shall we do unto the queen Vashti according to law, because she hath not performed the commandment of the king Ahasuerus by the chamberlains?</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">For 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.</VERS>\r\n      <VERS vnumber=\"18\">Likewise 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.</VERS>\r\n      <VERS vnumber=\"19\">If 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And the saying pleased the king and the princes; and the king did according to the word of Memucan:</VERS>\r\n      <VERS vnumber=\"22\">For 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">After these things, when the wrath of king Ahasuerus was appeased, he remembered Vashti, and what she had done, and what was decreed against her.</VERS>\r\n      <VERS vnumber=\"2\">Then said the king's servants that ministered unto him, Let there be fair young virgins sought for the king:</VERS>\r\n      <VERS vnumber=\"3\">And 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:</VERS>\r\n      <VERS vnumber=\"4\">And let the maiden which pleaseth the king be queen instead of Vashti. And the thing pleased the king; and he did so.</VERS>\r\n      <VERS vnumber=\"5\">Now 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;</VERS>\r\n      <VERS vnumber=\"6\">Who 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">So 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">Esther had not shewed her people nor her kindred: for Mordecai had charged her that she should not shew it.</VERS>\r\n      <VERS vnumber=\"11\">And Mordecai walked every day before the court of the women's house, to know how Esther did, and what should become of her.</VERS>\r\n      <VERS vnumber=\"12\">Now 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;)</VERS>\r\n      <VERS vnumber=\"13\">Then 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.</VERS>\r\n      <VERS vnumber=\"14\">In 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.</VERS>\r\n      <VERS vnumber=\"15\">Now 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.</VERS>\r\n      <VERS vnumber=\"16\">So 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">Then 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.</VERS>\r\n      <VERS vnumber=\"19\">And when the virgins were gathered together the second time, then Mordecai sat in the king's gate.</VERS>\r\n      <VERS vnumber=\"20\">Esther 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.</VERS>\r\n      <VERS vnumber=\"21\">In 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 hand on the king Ahasuerus.</VERS>\r\n      <VERS vnumber=\"22\">And the thing was known to Mordecai, who told it unto Esther the queen; and Esther certified the king thereof in Mordecai's name.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">After 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">Then the king's servants, which were in the king's gate, said unto Mordecai, Why transgressest thou the king's commandment?</VERS>\r\n      <VERS vnumber=\"4\">Now 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.</VERS>\r\n      <VERS vnumber=\"5\">And when Haman saw that Mordecai bowed not, nor did him reverence, then was Haman full of wrath.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">In 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">If 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.</VERS>\r\n      <VERS vnumber=\"10\">And the king took his ring from his hand, and gave it unto Haman the son of Hammedatha the Agagite, the Jews' enemy.</VERS>\r\n      <VERS vnumber=\"11\">And the king said unto Haman, The silver is given to thee, the people also, to do with them as it seemeth good to thee.</VERS>\r\n      <VERS vnumber=\"12\">Then 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">The 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.</VERS>\r\n      <VERS vnumber=\"15\">The 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">When 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;</VERS>\r\n      <VERS vnumber=\"2\">And came even before the king's gate: for none might enter into the king's gate clothed with sackcloth.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">So 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.</VERS>\r\n      <VERS vnumber=\"5\">Then 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.</VERS>\r\n      <VERS vnumber=\"6\">So Hatach went forth to Mordecai unto the street of the city, which was before the king's gate.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">Also 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.</VERS>\r\n      <VERS vnumber=\"9\">And Hatach came and told Esther the words of Mordecai.</VERS>\r\n      <VERS vnumber=\"10\">Again Esther spake unto Hatach, and gave him commandment unto Mordecai;</VERS>\r\n      <VERS vnumber=\"11\">All the king's servants, and the people of the king's provinces, do know, that whosoever, whether man or woman, 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.</VERS>\r\n      <VERS vnumber=\"12\">And they told to Mordecai Esther's words.</VERS>\r\n      <VERS vnumber=\"13\">Then Mordecai commanded to answer Esther, Think not with thyself that thou shalt escape in the king's house, more than all the Jews.</VERS>\r\n      <VERS vnumber=\"14\">For 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?</VERS>\r\n      <VERS vnumber=\"15\">Then Esther bade them return Mordecai this answer,</VERS>\r\n      <VERS vnumber=\"16\">Go, 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.</VERS>\r\n      <VERS vnumber=\"17\">So Mordecai went his way, and did according to all that Esther had commanded him.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">Now 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">Then 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">Then 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">Then answered Esther, and said, My petition and my request is;</VERS>\r\n      <VERS vnumber=\"8\">If 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.</VERS>\r\n      <VERS vnumber=\"9\">Then 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.</VERS>\r\n      <VERS vnumber=\"10\">Nevertheless Haman refrained himself: and when he came home, he sent and called for his friends, and Zeresh his wife.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">Haman 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.</VERS>\r\n      <VERS vnumber=\"13\">Yet all this availeth me nothing, so long as I see Mordecai the Jew sitting at the king's gate.</VERS>\r\n      <VERS vnumber=\"14\">Then 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">On 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And the king's servants said unto him, Behold, Haman standeth in the court. And the king said, Let him come in.</VERS>\r\n      <VERS vnumber=\"6\">So 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?</VERS>\r\n      <VERS vnumber=\"7\">And Haman answered the king, For the man whom the king delighteth to honour,</VERS>\r\n      <VERS vnumber=\"8\">Let 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:</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">Then 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.</VERS>\r\n      <VERS vnumber=\"11\">Then 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.</VERS>\r\n      <VERS vnumber=\"12\">And Mordecai came again to the king's gate. But Haman hasted to his house mourning, and having his head covered.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And while they were yet talking with him, came the king's chamberlains, and hasted to bring Haman unto the banquet that Esther had prepared.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">So the king and Haman came to banquet with Esther the queen.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">Then 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:</VERS>\r\n      <VERS vnumber=\"4\">For 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.</VERS>\r\n      <VERS vnumber=\"5\">Then 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?</VERS>\r\n      <VERS vnumber=\"6\">And Esther said, The adversary and enemy is this wicked Haman. Then Haman was afraid before the king and the queen.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">Then 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 the king's mouth, they covered Haman's face.</VERS>\r\n      <VERS vnumber=\"9\">And Harbonah, one of the chamberlains, said before the king, Behold also, the gallows fifty cubits high, which Haman had made for Mordecai, who had spoken good for the king, standeth in the house of Haman. Then the king said, Hang him thereon.</VERS>\r\n      <VERS vnumber=\"10\">So they hanged Haman on the gallows that he had prepared for Mordecai. Then was the king's wrath pacified.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">On 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">Then the king held out the golden sceptre toward Esther. So Esther arose, and stood before the king,</VERS>\r\n      <VERS vnumber=\"5\">And said, If it please the king, and if I have found 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:</VERS>\r\n      <VERS vnumber=\"6\">For 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?</VERS>\r\n      <VERS vnumber=\"7\">Then 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.</VERS>\r\n      <VERS vnumber=\"8\">Write 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.</VERS>\r\n      <VERS vnumber=\"9\">Then 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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:</VERS>\r\n      <VERS vnumber=\"11\">Wherein 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,</VERS>\r\n      <VERS vnumber=\"12\">Upon one day in all the provinces of king Ahasuerus, namely, upon the thirteenth day of the twelfth month, which is the month Adar.</VERS>\r\n      <VERS vnumber=\"13\">The 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.</VERS>\r\n      <VERS vnumber=\"14\">So 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">The Jews had light, and gladness, and joy, and honour.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">Now 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;)</VERS>\r\n      <VERS vnumber=\"2\">The 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">For 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.</VERS>\r\n      <VERS vnumber=\"5\">Thus 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.</VERS>\r\n      <VERS vnumber=\"6\">And in Shushan the palace the Jews slew and destroyed five hundred men.</VERS>\r\n      <VERS vnumber=\"7\">And Parshandatha, and Dalphon, and Aspatha,</VERS>\r\n      <VERS vnumber=\"8\">And Poratha, and Adalia, and Aridatha,</VERS>\r\n      <VERS vnumber=\"9\">And Parmashta, and Arisai, and Aridai, and Vajezatha,</VERS>\r\n      <VERS vnumber=\"10\">The ten sons of Haman the son of Hammedatha, the enemy of the Jews, slew they; but on the spoil laid they not their hand.</VERS>\r\n      <VERS vnumber=\"11\">On that day the number of those that were slain in Shushan the palace was brought before the king.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">Then 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.</VERS>\r\n      <VERS vnumber=\"14\">And the king commanded it so to be done: and the decree was given at Shushan; and they hanged Haman's ten sons.</VERS>\r\n      <VERS vnumber=\"15\">For 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.</VERS>\r\n      <VERS vnumber=\"16\">But 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,</VERS>\r\n      <VERS vnumber=\"17\">On 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.</VERS>\r\n      <VERS vnumber=\"18\">But 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.</VERS>\r\n      <VERS vnumber=\"19\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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,</VERS>\r\n      <VERS vnumber=\"21\">To stablish this among them, that they should keep the fourteenth day of the month Adar, and the fifteenth day of the same, yearly,</VERS>\r\n      <VERS vnumber=\"22\">As 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.</VERS>\r\n      <VERS vnumber=\"23\">And the Jews undertook to do as they had begun, and as Mordecai had written unto them;</VERS>\r\n      <VERS vnumber=\"24\">Because 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;</VERS>\r\n      <VERS vnumber=\"25\">But 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.</VERS>\r\n      <VERS vnumber=\"26\">Wherefore 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,</VERS>\r\n      <VERS vnumber=\"27\">The 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;</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">Then Esther the queen, the daughter of Abihail, and Mordecai the Jew, wrote with all authority, to confirm this second letter of Purim.</VERS>\r\n      <VERS vnumber=\"30\">And 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,</VERS>\r\n      <VERS vnumber=\"31\">To 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.</VERS>\r\n      <VERS vnumber=\"32\">And the decree of Esther confirmed these matters of Purim; and it was written in the book.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">And the king Ahasuerus laid a tribute upon the land, and upon the isles of the sea.</VERS>\r\n      <VERS vnumber=\"2\">And 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?</VERS>\r\n      <VERS vnumber=\"3\">For 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.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"18\" bname=\"Job\" bsname=\"Job\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">There 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.</VERS>\r\n      <VERS vnumber=\"2\">And there were born unto him seven sons and three daughters.</VERS>\r\n      <VERS vnumber=\"3\">His 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">Now there was a day when the sons of God came to present themselves before the LORD, and Satan came also among them.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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?</VERS>\r\n      <VERS vnumber=\"9\">Then Satan answered the LORD, and said, Doth Job fear God for nought?</VERS>\r\n      <VERS vnumber=\"10\">Hast 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.</VERS>\r\n      <VERS vnumber=\"11\">But put forth thine hand now, and touch all that he hath, and he will curse thee to thy face.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And there was a day when his sons and his daughters were eating and drinking wine in their eldest brother's house:</VERS>\r\n      <VERS vnumber=\"14\">And there came a messenger unto Job, and said, The oxen were plowing, and the asses feeding beside them:</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">While 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.</VERS>\r\n      <VERS vnumber=\"17\">While 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.</VERS>\r\n      <VERS vnumber=\"18\">While 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:</VERS>\r\n      <VERS vnumber=\"19\">And, 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.</VERS>\r\n      <VERS vnumber=\"20\">Then Job arose, and rent his mantle, and shaved his head, and fell down upon the ground, and worshipped,</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">In all this Job sinned not, nor charged God foolishly.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">Again 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And Satan answered the LORD, and said, Skin for skin, yea, all that a man hath will he give for his life.</VERS>\r\n      <VERS vnumber=\"5\">But put forth thine hand now, and touch his bone and his flesh, and he will curse thee to thy face.</VERS>\r\n      <VERS vnumber=\"6\">And the LORD said unto Satan, Behold, he is in thine hand; but save his life.</VERS>\r\n      <VERS vnumber=\"7\">So went Satan forth from the presence of the LORD, and smote Job with sore boils from the sole of his foot unto his crown.</VERS>\r\n      <VERS vnumber=\"8\">And he took him a potsherd to scrape himself withal; and he sat down among the ashes.</VERS>\r\n      <VERS vnumber=\"9\">Then said his wife unto him, Dost thou still retain thine integrity? curse God, and die.</VERS>\r\n      <VERS vnumber=\"10\">But 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.</VERS>\r\n      <VERS vnumber=\"11\">Now 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">So 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">After this opened Job his mouth, and cursed his day.</VERS>\r\n      <VERS vnumber=\"2\">And Job spake, and said,</VERS>\r\n      <VERS vnumber=\"3\">Let the day perish wherein I was born, and the night in which it was said, There is a man child conceived.</VERS>\r\n      <VERS vnumber=\"4\">Let that day be darkness; let not God regard it from above, neither let the light shine upon it.</VERS>\r\n      <VERS vnumber=\"5\">Let darkness and the shadow of death stain it; let a cloud dwell upon it; let the blackness of the day terrify it.</VERS>\r\n      <VERS vnumber=\"6\">As 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.</VERS>\r\n      <VERS vnumber=\"7\">Lo, let that night be solitary, let no joyful voice come therein.</VERS>\r\n      <VERS vnumber=\"8\">Let them curse it that curse the day, who are ready to raise up their mourning.</VERS>\r\n      <VERS vnumber=\"9\">Let 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:</VERS>\r\n      <VERS vnumber=\"10\">Because it shut not up the doors of my mother's womb, nor hid sorrow from mine eyes.</VERS>\r\n      <VERS vnumber=\"11\">Why died I not from the womb? why did I not give up the ghost when I came out of the belly?</VERS>\r\n      <VERS vnumber=\"12\">Why did the knees prevent me? or why the breasts that I should suck?</VERS>\r\n      <VERS vnumber=\"13\">For now should I have lain still and been quiet, I should have slept: then had I been at rest,</VERS>\r\n      <VERS vnumber=\"14\">With kings and counsellors of the earth, which built desolate places for themselves;</VERS>\r\n      <VERS vnumber=\"15\">Or with princes that had gold, who filled their houses with silver:</VERS>\r\n      <VERS vnumber=\"16\">Or as an hidden untimely birth I had not been; as infants which never saw light.</VERS>\r\n      <VERS vnumber=\"17\">There the wicked cease from troubling; and there the weary be at rest.</VERS>\r\n      <VERS vnumber=\"18\">There the prisoners rest together; they hear not the voice of the oppressor.</VERS>\r\n      <VERS vnumber=\"19\">The small and great are there; and the servant is free from his master.</VERS>\r\n      <VERS vnumber=\"20\">Wherefore is light given to him that is in misery, and life unto the bitter in soul;</VERS>\r\n      <VERS vnumber=\"21\">Which long for death, but it cometh not; and dig for it more than for hid treasures;</VERS>\r\n      <VERS vnumber=\"22\">Which rejoice exceedingly, and are glad, when they can find the grave?</VERS>\r\n      <VERS vnumber=\"23\">Why is light given to a man whose way is hid, and whom God hath hedged in?</VERS>\r\n      <VERS vnumber=\"24\">For my sighing cometh before I eat, and my roarings are poured out like the waters.</VERS>\r\n      <VERS vnumber=\"25\">For the thing which I greatly feared is come upon me, and that which I was afraid of is come unto me.</VERS>\r\n      <VERS vnumber=\"26\">I was not in safety, neither had I rest, neither was I quiet; yet trouble came.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">Then Eliphaz the Temanite answered and said,</VERS>\r\n      <VERS vnumber=\"2\">If we assay to commune with thee, wilt thou be grieved? but who can withhold himself from speaking?</VERS>\r\n      <VERS vnumber=\"3\">Behold, thou hast instructed many, and thou hast strengthened the weak hands.</VERS>\r\n      <VERS vnumber=\"4\">Thy words have upholden him that was falling, and thou hast strengthened the feeble knees.</VERS>\r\n      <VERS vnumber=\"5\">But now it is come upon thee, and thou faintest; it toucheth thee, and thou art troubled.</VERS>\r\n      <VERS vnumber=\"6\">Is not this thy fear, thy confidence, thy hope, and the uprightness of thy ways?</VERS>\r\n      <VERS vnumber=\"7\">Remember, I pray thee, who ever perished, being innocent? or where were the righteous cut off?</VERS>\r\n      <VERS vnumber=\"8\">Even as I have seen, they that plow iniquity, and sow wickedness, reap the same.</VERS>\r\n      <VERS vnumber=\"9\">By the blast of God they perish, and by the breath of his nostrils are they consumed.</VERS>\r\n      <VERS vnumber=\"10\">The roaring of the lion, and the voice of the fierce lion, and the teeth of the young lions, are broken.</VERS>\r\n      <VERS vnumber=\"11\">The old lion perisheth for lack of prey, and the stout lion's whelps are scattered abroad.</VERS>\r\n      <VERS vnumber=\"12\">Now a thing was secretly brought to me, and mine ear received a little thereof.</VERS>\r\n      <VERS vnumber=\"13\">In thoughts from the visions of the night, when deep sleep falleth on men,</VERS>\r\n      <VERS vnumber=\"14\">Fear came upon me, and trembling, which made all my bones to shake.</VERS>\r\n      <VERS vnumber=\"15\">Then a spirit passed before my face; the hair of my flesh stood up:</VERS>\r\n      <VERS vnumber=\"16\">It 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,</VERS>\r\n      <VERS vnumber=\"17\">Shall mortal man be more just than God? shall a man be more pure than his maker?</VERS>\r\n      <VERS vnumber=\"18\">Behold, he put no trust in his servants; and his angels he charged with folly:</VERS>\r\n      <VERS vnumber=\"19\">How much less in them that dwell in houses of clay, whose foundation is in the dust, which are crushed before the moth?</VERS>\r\n      <VERS vnumber=\"20\">They are destroyed from morning to evening: they perish for ever without any regarding it.</VERS>\r\n      <VERS vnumber=\"21\">Doth not their excellency which is in them go away? they die, even without wisdom.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">Call now, if there be any that will answer thee; and to which of the saints wilt thou turn?</VERS>\r\n      <VERS vnumber=\"2\">For wrath killeth the foolish man, and envy slayeth the silly one.</VERS>\r\n      <VERS vnumber=\"3\">I have seen the foolish taking root: but suddenly I cursed his habitation.</VERS>\r\n      <VERS vnumber=\"4\">His children are far from safety, and they are crushed in the gate, neither is there any to deliver them.</VERS>\r\n      <VERS vnumber=\"5\">Whose harvest the hungry eateth up, and taketh it even out of the thorns, and the robber swalloweth up their substance.</VERS>\r\n      <VERS vnumber=\"6\">Although affliction cometh not forth of the dust, neither doth trouble spring out of the ground;</VERS>\r\n      <VERS vnumber=\"7\">Yet man is born unto trouble, as the sparks fly upward.</VERS>\r\n      <VERS vnumber=\"8\">I would seek unto God, and unto God would I commit my cause:</VERS>\r\n      <VERS vnumber=\"9\">Which doeth great things and unsearchable; marvellous things without number:</VERS>\r\n      <VERS vnumber=\"10\">Who giveth rain upon the earth, and sendeth waters upon the fields:</VERS>\r\n      <VERS vnumber=\"11\">To set up on high those that be low; that those which mourn may be exalted to safety.</VERS>\r\n      <VERS vnumber=\"12\">He disappointeth the devices of the crafty, so that their hands cannot perform their enterprise.</VERS>\r\n      <VERS vnumber=\"13\">He taketh the wise in their own craftiness: and the counsel of the froward is carried headlong.</VERS>\r\n      <VERS vnumber=\"14\">They meet with darkness in the daytime, and grope in the noonday as in the night.</VERS>\r\n      <VERS vnumber=\"15\">But he saveth the poor from the sword, from their mouth, and from the hand of the mighty.</VERS>\r\n      <VERS vnumber=\"16\">So the poor hath hope, and iniquity stoppeth her mouth.</VERS>\r\n      <VERS vnumber=\"17\">Behold, happy is the man whom God correcteth: therefore despise not thou the chastening of the Almighty:</VERS>\r\n      <VERS vnumber=\"18\">For he maketh sore, and bindeth up: he woundeth, and his hands make whole.</VERS>\r\n      <VERS vnumber=\"19\">He shall deliver thee in six troubles: yea, in seven there shall no evil touch thee.</VERS>\r\n      <VERS vnumber=\"20\">In famine he shall redeem thee from death: and in war from the power of the sword.</VERS>\r\n      <VERS vnumber=\"21\">Thou shalt be hid from the scourge of the tongue: neither shalt thou be afraid of destruction when it cometh.</VERS>\r\n      <VERS vnumber=\"22\">At destruction and famine thou shalt laugh: neither shalt thou be afraid of the beasts of the earth.</VERS>\r\n      <VERS vnumber=\"23\">For thou shalt be in league with the stones of the field: and the beasts of the field shall be at peace with thee.</VERS>\r\n      <VERS vnumber=\"24\">And thou shalt know that thy tabernacle shall be in peace; and thou shalt visit thy habitation, and shalt not sin.</VERS>\r\n      <VERS vnumber=\"25\">Thou shalt know also that thy seed shall be great, and thine offspring as the grass of the earth.</VERS>\r\n      <VERS vnumber=\"26\">Thou shalt come to thy grave in a full age, like as a shock of corn cometh in in his season.</VERS>\r\n      <VERS vnumber=\"27\">Lo this, we have searched it, so it is; hear it, and know thou it for thy good.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">But Job answered and said,</VERS>\r\n      <VERS vnumber=\"2\">Oh that my grief were throughly weighed, and my calamity laid in the balances together!</VERS>\r\n      <VERS vnumber=\"3\">For now it would be heavier than the sand of the sea: therefore my words are swallowed up.</VERS>\r\n      <VERS vnumber=\"4\">For 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.</VERS>\r\n      <VERS vnumber=\"5\">Doth the wild ass bray when he hath grass? or loweth the ox over his fodder?</VERS>\r\n      <VERS vnumber=\"6\">Can that which is unsavoury be eaten without salt? or is there any taste in the white of an egg?</VERS>\r\n      <VERS vnumber=\"7\">The things that my soul refused to touch are as my sorrowful meat.</VERS>\r\n      <VERS vnumber=\"8\">Oh that I might have my request; and that God would grant me the thing that I long for!</VERS>\r\n      <VERS vnumber=\"9\">Even that it would please God to destroy me; that he would let loose his hand, and cut me off!</VERS>\r\n      <VERS vnumber=\"10\">Then 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.</VERS>\r\n      <VERS vnumber=\"11\">What is my strength, that I should hope? and what is mine end, that I should prolong my life?</VERS>\r\n      <VERS vnumber=\"12\">Is my strength the strength of stones? or is my flesh of brass?</VERS>\r\n      <VERS vnumber=\"13\">Is not my help in me? and is wisdom driven quite from me?</VERS>\r\n      <VERS vnumber=\"14\">To him that is afflicted pity should be shewed from his friend; but he forsaketh the fear of the Almighty.</VERS>\r\n      <VERS vnumber=\"15\">My brethren have dealt deceitfully as a brook, and as the stream of brooks they pass away;</VERS>\r\n      <VERS vnumber=\"16\">Which are blackish by reason of the ice, and wherein the snow is hid:</VERS>\r\n      <VERS vnumber=\"17\">What time they wax warm, they vanish: when it is hot, they are consumed out of their place.</VERS>\r\n      <VERS vnumber=\"18\">The paths of their way are turned aside; they go to nothing, and perish.</VERS>\r\n      <VERS vnumber=\"19\">The troops of Tema looked, the companies of Sheba waited for them.</VERS>\r\n      <VERS vnumber=\"20\">They were confounded because they had hoped; they came thither, and were ashamed.</VERS>\r\n      <VERS vnumber=\"21\">For now ye are nothing; ye see my casting down, and are afraid.</VERS>\r\n      <VERS vnumber=\"22\">Did I say, Bring unto me? or, Give a reward for me of your substance?</VERS>\r\n      <VERS vnumber=\"23\">Or, Deliver me from the enemy's hand? or, Redeem me from the hand of the mighty?</VERS>\r\n      <VERS vnumber=\"24\">Teach me, and I will hold my tongue: and cause me to understand wherein I have erred.</VERS>\r\n      <VERS vnumber=\"25\">How forcible are right words! but what doth your arguing reprove?</VERS>\r\n      <VERS vnumber=\"26\">Do ye imagine to reprove words, and the speeches of one that is desperate, which are as wind?</VERS>\r\n      <VERS vnumber=\"27\">Yea, ye overwhelm the fatherless, and ye dig a pit for your friend.</VERS>\r\n      <VERS vnumber=\"28\">Now therefore be content, look upon me; for it is evident unto you if I lie.</VERS>\r\n      <VERS vnumber=\"29\">Return, I pray you, let it not be iniquity; yea, return again, my righteousness is in it.</VERS>\r\n      <VERS vnumber=\"30\">Is there iniquity in my tongue? cannot my taste discern perverse things?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">Is there not an appointed time to man upon earth? are not his days also like the days of an hireling?</VERS>\r\n      <VERS vnumber=\"2\">As a servant earnestly desireth the shadow, and as an hireling looketh for the reward of his work:</VERS>\r\n      <VERS vnumber=\"3\">So am I made to possess months of vanity, and wearisome nights are appointed to me.</VERS>\r\n      <VERS vnumber=\"4\">When 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.</VERS>\r\n      <VERS vnumber=\"5\">My flesh is clothed with worms and clods of dust; my skin is broken, and become loathsome.</VERS>\r\n      <VERS vnumber=\"6\">My days are swifter than a weaver's shuttle, and are spent without hope.</VERS>\r\n      <VERS vnumber=\"7\">O remember that my life is wind: mine eye shall no more see good.</VERS>\r\n      <VERS vnumber=\"8\">The eye of him that hath seen me shall see me no more: thine eyes are upon me, and I am not.</VERS>\r\n      <VERS vnumber=\"9\">As the cloud is consumed and vanisheth away: so he that goeth down to the grave shall come up no more.</VERS>\r\n      <VERS vnumber=\"10\">He shall return no more to his house, neither shall his place know him any more.</VERS>\r\n      <VERS vnumber=\"11\">Therefore I will not refrain my mouth; I will speak in the anguish of my spirit; I will complain in the bitterness of my soul.</VERS>\r\n      <VERS vnumber=\"12\">Am I a sea, or a whale, that thou settest a watch over me?</VERS>\r\n      <VERS vnumber=\"13\">When I say, My bed shall comfort me, my couch shall ease my complaint;</VERS>\r\n      <VERS vnumber=\"14\">Then thou scarest me with dreams, and terrifiest me through visions:</VERS>\r\n      <VERS vnumber=\"15\">So that my soul chooseth strangling, and death rather than my life.</VERS>\r\n      <VERS vnumber=\"16\">I loathe it; I would not live alway: let me alone; for my days are vanity.</VERS>\r\n      <VERS vnumber=\"17\">What is man, that thou shouldest magnify him? and that thou shouldest set thine heart upon him?</VERS>\r\n      <VERS vnumber=\"18\">And that thou shouldest visit him every morning, and try him every moment?</VERS>\r\n      <VERS vnumber=\"19\">How long wilt thou not depart from me, nor let me alone till I swallow down my spittle?</VERS>\r\n      <VERS vnumber=\"20\">I 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?</VERS>\r\n      <VERS vnumber=\"21\">And why dost thou not pardon my transgression, and take away mine iniquity? for now shall I sleep in the dust; and thou shalt seek me in the morning, but I shall not be.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">Then answered Bildad the Shuhite, and said,</VERS>\r\n      <VERS vnumber=\"2\">How long wilt thou speak these things? and how long shall the words of thy mouth be like a strong wind?</VERS>\r\n      <VERS vnumber=\"3\">Doth God pervert judgment? or doth the Almighty pervert justice?</VERS>\r\n      <VERS vnumber=\"4\">If thy children have sinned against him, and he have cast them away for their transgression;</VERS>\r\n      <VERS vnumber=\"5\">If thou wouldest seek unto God betimes, and make thy supplication to the Almighty;</VERS>\r\n      <VERS vnumber=\"6\">If thou wert pure and upright; surely now he would awake for thee, and make the habitation of thy righteousness prosperous.</VERS>\r\n      <VERS vnumber=\"7\">Though thy beginning was small, yet thy latter end should greatly increase.</VERS>\r\n      <VERS vnumber=\"8\">For enquire, I pray thee, of the former age, and prepare thyself to the search of their fathers:</VERS>\r\n      <VERS vnumber=\"9\">(For we are but of yesterday, and know nothing, because our days upon earth are a shadow:)</VERS>\r\n      <VERS vnumber=\"10\">Shall not they teach thee, and tell thee, and utter words out of their heart?</VERS>\r\n      <VERS vnumber=\"11\">Can the rush grow up without mire? can the flag grow without water?</VERS>\r\n      <VERS vnumber=\"12\">Whilst it is yet in his greenness, and not cut down, it withereth before any other herb.</VERS>\r\n      <VERS vnumber=\"13\">So are the paths of all that forget God; and the hypocrite's hope shall perish:</VERS>\r\n      <VERS vnumber=\"14\">Whose hope shall be cut off, and whose trust shall be a spider's web.</VERS>\r\n      <VERS vnumber=\"15\">He shall lean upon his house, but it shall not stand: he shall hold it fast, but it shall not endure.</VERS>\r\n      <VERS vnumber=\"16\">He is green before the sun, and his branch shooteth forth in his garden.</VERS>\r\n      <VERS vnumber=\"17\">His roots are wrapped about the heap, and seeth the place of stones.</VERS>\r\n      <VERS vnumber=\"18\">If he destroy him from his place, then it shall deny him, saying, I have not seen thee.</VERS>\r\n      <VERS vnumber=\"19\">Behold, this is the joy of his way, and out of the earth shall others grow.</VERS>\r\n      <VERS vnumber=\"20\">Behold, God will not cast away a perfect man, neither will he help the evil doers:</VERS>\r\n      <VERS vnumber=\"21\">Till he fill thy mouth with laughing, and thy lips with rejoicing.</VERS>\r\n      <VERS vnumber=\"22\">They that hate thee shall be clothed with shame; and the dwelling place of the wicked shall come to nought.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">Then Job answered and said,</VERS>\r\n      <VERS vnumber=\"2\">I know it is so of a truth: but how should man be just with God?</VERS>\r\n      <VERS vnumber=\"3\">If he will contend with him, he cannot answer him one of a thousand.</VERS>\r\n      <VERS vnumber=\"4\">He is wise in heart, and mighty in strength: who hath hardened himself against him, and hath prospered?</VERS>\r\n      <VERS vnumber=\"5\">Which removeth the mountains, and they know not: which overturneth them in his anger.</VERS>\r\n      <VERS vnumber=\"6\">Which shaketh the earth out of her place, and the pillars thereof tremble.</VERS>\r\n      <VERS vnumber=\"7\">Which commandeth the sun, and it riseth not; and sealeth up the stars.</VERS>\r\n      <VERS vnumber=\"8\">Which alone spreadeth out the heavens, and treadeth upon the waves of the sea.</VERS>\r\n      <VERS vnumber=\"9\">Which maketh Arcturus, Orion, and Pleiades, and the chambers of the south.</VERS>\r\n      <VERS vnumber=\"10\">Which doeth great things past finding out; yea, and wonders without number.</VERS>\r\n      <VERS vnumber=\"11\">Lo, he goeth by me, and I see him not: he passeth on also, but I perceive him not.</VERS>\r\n      <VERS vnumber=\"12\">Behold, he taketh away, who can hinder him? who will say unto him, What doest thou?</VERS>\r\n      <VERS vnumber=\"13\">If God will not withdraw his anger, the proud helpers do stoop under him.</VERS>\r\n      <VERS vnumber=\"14\">How much less shall I answer him, and choose out my words to reason with him?</VERS>\r\n      <VERS vnumber=\"15\">Whom, though I were righteous, yet would I not answer, but I would make supplication to my judge.</VERS>\r\n      <VERS vnumber=\"16\">If I had called, and he had answered me; yet would I not believe that he had hearkened unto my voice.</VERS>\r\n      <VERS vnumber=\"17\">For he breaketh me with a tempest, and multiplieth my wounds without cause.</VERS>\r\n      <VERS vnumber=\"18\">He will not suffer me to take my breath, but filleth me with bitterness.</VERS>\r\n      <VERS vnumber=\"19\">If I speak of strength, lo, he is strong: and if of judgment, who shall set me a time to plead?</VERS>\r\n      <VERS vnumber=\"20\">If I justify myself, mine own mouth shall condemn me: if I say, I am perfect, it shall also prove me perverse.</VERS>\r\n      <VERS vnumber=\"21\">Though I were perfect, yet would I not know my soul: I would despise my life.</VERS>\r\n      <VERS vnumber=\"22\">This is one thing, therefore I said it, He destroyeth the perfect and the wicked.</VERS>\r\n      <VERS vnumber=\"23\">If the scourge slay suddenly, he will laugh at the trial of the innocent.</VERS>\r\n      <VERS vnumber=\"24\">The earth is given into the hand of the wicked: he covereth the faces of the judges thereof; if not, where, and who is he?</VERS>\r\n      <VERS vnumber=\"25\">Now my days are swifter than a post: they flee away, they see no good.</VERS>\r\n      <VERS vnumber=\"26\">They are passed away as the swift ships: as the eagle that hasteth to the prey.</VERS>\r\n      <VERS vnumber=\"27\">If I say, I will forget my complaint, I will leave off my heaviness, and comfort myself:</VERS>\r\n      <VERS vnumber=\"28\">I am afraid of all my sorrows, I know that thou wilt not hold me innocent.</VERS>\r\n      <VERS vnumber=\"29\">If I be wicked, why then labour I in vain?</VERS>\r\n      <VERS vnumber=\"30\">If I wash myself with snow water, and make my hands never so clean;</VERS>\r\n      <VERS vnumber=\"31\">Yet shalt thou plunge me in the ditch, and mine own clothes shall abhor me.</VERS>\r\n      <VERS vnumber=\"32\">For he is not a man, as I am, that I should answer him, and we should come together in judgment.</VERS>\r\n      <VERS vnumber=\"33\">Neither is there any daysman betwixt us, that might lay his hand upon us both.</VERS>\r\n      <VERS vnumber=\"34\">Let him take his rod away from me, and let not his fear terrify me:</VERS>\r\n      <VERS vnumber=\"35\">Then would I speak, and not fear him; but it is not so with me.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">My soul is weary of my life; I will leave my complaint upon myself; I will speak in the bitterness of my soul.</VERS>\r\n      <VERS vnumber=\"2\">I will say unto God, Do not condemn me; shew me wherefore thou contendest with me.</VERS>\r\n      <VERS vnumber=\"3\">Is 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?</VERS>\r\n      <VERS vnumber=\"4\">Hast thou eyes of flesh? or seest thou as man seeth?</VERS>\r\n      <VERS vnumber=\"5\">Are thy days as the days of man? are thy years as man's days,</VERS>\r\n      <VERS vnumber=\"6\">That thou enquirest after mine iniquity, and searchest after my sin?</VERS>\r\n      <VERS vnumber=\"7\">Thou knowest that I am not wicked; and there is none that can deliver out of thine hand.</VERS>\r\n      <VERS vnumber=\"8\">Thine hands have made me and fashioned me together round about; yet thou dost destroy me.</VERS>\r\n      <VERS vnumber=\"9\">Remember, I beseech thee, that thou hast made me as the clay; and wilt thou bring me into dust again?</VERS>\r\n      <VERS vnumber=\"10\">Hast thou not poured me out as milk, and curdled me like cheese?</VERS>\r\n      <VERS vnumber=\"11\">Thou hast clothed me with skin and flesh, and hast fenced me with bones and sinews.</VERS>\r\n      <VERS vnumber=\"12\">Thou hast granted me life and favour, and thy visitation hath preserved my spirit.</VERS>\r\n      <VERS vnumber=\"13\">And these things hast thou hid in thine heart: I know that this is with thee.</VERS>\r\n      <VERS vnumber=\"14\">If I sin, then thou markest me, and thou wilt not acquit me from mine iniquity.</VERS>\r\n      <VERS vnumber=\"15\">If 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;</VERS>\r\n      <VERS vnumber=\"16\">For it increaseth. Thou huntest me as a fierce lion: and again thou shewest thyself marvellous upon me.</VERS>\r\n      <VERS vnumber=\"17\">Thou renewest thy witnesses against me, and increasest thine indignation upon me; changes and war are against me.</VERS>\r\n      <VERS vnumber=\"18\">Wherefore then hast thou brought me forth out of the womb? Oh that I had given up the ghost, and no eye had seen me!</VERS>\r\n      <VERS vnumber=\"19\">I should have been as though I had not been; I should have been carried from the womb to the grave.</VERS>\r\n      <VERS vnumber=\"20\">Are not my days few? cease then, and let me alone, that I may take comfort a little,</VERS>\r\n      <VERS vnumber=\"21\">Before I go whence I shall not return, even to the land of darkness and the shadow of death;</VERS>\r\n      <VERS vnumber=\"22\">A land of darkness, as darkness itself; and of the shadow of death, without any order, and where the light is as darkness.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">Then answered Zophar the Naamathite, and said,</VERS>\r\n      <VERS vnumber=\"2\">Should not the multitude of words be answered? and should a man full of talk be justified?</VERS>\r\n      <VERS vnumber=\"3\">Should thy lies make men hold their peace? and when thou mockest, shall no man make thee ashamed?</VERS>\r\n      <VERS vnumber=\"4\">For thou hast said, My doctrine is pure, and I am clean in thine eyes.</VERS>\r\n      <VERS vnumber=\"5\">But oh that God would speak, and open his lips against thee;</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">Canst thou by searching find out God? canst thou find out the Almighty unto perfection?</VERS>\r\n      <VERS vnumber=\"8\">It is as high as heaven; what canst thou do? deeper than hell; what canst thou know?</VERS>\r\n      <VERS vnumber=\"9\">The measure thereof is longer than the earth, and broader than the sea.</VERS>\r\n      <VERS vnumber=\"10\">If he cut off, and shut up, or gather together, then who can hinder him?</VERS>\r\n      <VERS vnumber=\"11\">For he knoweth vain men: he seeth wickedness also; will he not then consider it?</VERS>\r\n      <VERS vnumber=\"12\">For vain man would be wise, though man be born like a wild ass's colt.</VERS>\r\n      <VERS vnumber=\"13\">If thou prepare thine heart, and stretch out thine hands toward him;</VERS>\r\n      <VERS vnumber=\"14\">If iniquity be in thine hand, put it far away, and let not wickedness dwell in thy tabernacles.</VERS>\r\n      <VERS vnumber=\"15\">For then shalt thou lift up thy face without spot; yea, thou shalt be stedfast, and shalt not fear:</VERS>\r\n      <VERS vnumber=\"16\">Because thou shalt forget thy misery, and remember it as waters that pass away:</VERS>\r\n      <VERS vnumber=\"17\">And thine age shall be clearer than the noonday; thou shalt shine forth, thou shalt be as the morning.</VERS>\r\n      <VERS vnumber=\"18\">And thou shalt be secure, because there is hope; yea, thou shalt dig about thee, and thou shalt take thy rest in safety.</VERS>\r\n      <VERS vnumber=\"19\">Also thou shalt lie down, and none shall make thee afraid; yea, many shall make suit unto thee.</VERS>\r\n      <VERS vnumber=\"20\">But the eyes of the wicked shall fail, and they shall not escape, and their hope shall be as the giving up of the ghost.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">And Job answered and said,</VERS>\r\n      <VERS vnumber=\"2\">No doubt but ye are the people, and wisdom shall die with you.</VERS>\r\n      <VERS vnumber=\"3\">But I have understanding as well as you; I am not inferior to you: yea, who knoweth not such things as these?</VERS>\r\n      <VERS vnumber=\"4\">I am as one mocked of his neighbour, who calleth upon God, and he answereth him: the just upright man is laughed to scorn.</VERS>\r\n      <VERS vnumber=\"5\">He that is ready to slip with his feet is as a lamp despised in the thought of him that is at ease.</VERS>\r\n      <VERS vnumber=\"6\">The tabernacles of robbers prosper, and they that provoke God are secure; into whose hand God bringeth abundantly.</VERS>\r\n      <VERS vnumber=\"7\">But ask now the beasts, and they shall teach thee; and the fowls of the air, and they shall tell thee:</VERS>\r\n      <VERS vnumber=\"8\">Or speak to the earth, and it shall teach thee: and the fishes of the sea shall declare unto thee.</VERS>\r\n      <VERS vnumber=\"9\">Who knoweth not in all these that the hand of the LORD hath wrought this?</VERS>\r\n      <VERS vnumber=\"10\">In whose hand is the soul of every living thing, and the breath of all mankind.</VERS>\r\n      <VERS vnumber=\"11\">Doth not the ear try words? and the mouth taste his meat?</VERS>\r\n      <VERS vnumber=\"12\">With the ancient is wisdom; and in length of days understanding.</VERS>\r\n      <VERS vnumber=\"13\">With him is wisdom and strength, he hath counsel and understanding.</VERS>\r\n      <VERS vnumber=\"14\">Behold, he breaketh down, and it cannot be built again: he shutteth up a man, and there can be no opening.</VERS>\r\n      <VERS vnumber=\"15\">Behold, he withholdeth the waters, and they dry up: also he sendeth them out, and they overturn the earth.</VERS>\r\n      <VERS vnumber=\"16\">With him is strength and wisdom: the deceived and the deceiver are his.</VERS>\r\n      <VERS vnumber=\"17\">He leadeth counsellors away spoiled, and maketh the judges fools.</VERS>\r\n      <VERS vnumber=\"18\">He looseth the bond of kings, and girdeth their loins with a girdle.</VERS>\r\n      <VERS vnumber=\"19\">He leadeth princes away spoiled, and overthroweth the mighty.</VERS>\r\n      <VERS vnumber=\"20\">He removeth away the speech of the trusty, and taketh away the understanding of the aged.</VERS>\r\n      <VERS vnumber=\"21\">He poureth contempt upon princes, and weakeneth the strength of the mighty.</VERS>\r\n      <VERS vnumber=\"22\">He discovereth deep things out of darkness, and bringeth out to light the shadow of death.</VERS>\r\n      <VERS vnumber=\"23\">He increaseth the nations, and destroyeth them: he enlargeth the nations, and straiteneth them again.</VERS>\r\n      <VERS vnumber=\"24\">He 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.</VERS>\r\n      <VERS vnumber=\"25\">They grope in the dark without light, and he maketh them to stagger like a drunken man.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">Lo, mine eye hath seen all this, mine ear hath heard and understood it.</VERS>\r\n      <VERS vnumber=\"2\">What ye know, the same do I know also: I am not inferior unto you.</VERS>\r\n      <VERS vnumber=\"3\">Surely I would speak to the Almighty, and I desire to reason with God.</VERS>\r\n      <VERS vnumber=\"4\">But ye are forgers of lies, ye are all physicians of no value.</VERS>\r\n      <VERS vnumber=\"5\">O that ye would altogether hold your peace! and it should be your wisdom.</VERS>\r\n      <VERS vnumber=\"6\">Hear now my reasoning, and hearken to the pleadings of my lips.</VERS>\r\n      <VERS vnumber=\"7\">Will ye speak wickedly for God? and talk deceitfully for him?</VERS>\r\n      <VERS vnumber=\"8\">Will ye accept his person? will ye contend for God?</VERS>\r\n      <VERS vnumber=\"9\">Is it good that he should search you out? or as one man mocketh another, do ye so mock him?</VERS>\r\n      <VERS vnumber=\"10\">He will surely reprove you, if ye do secretly accept persons.</VERS>\r\n      <VERS vnumber=\"11\">Shall not his excellency make you afraid? and his dread fall upon you?</VERS>\r\n      <VERS vnumber=\"12\">Your remembrances are like unto ashes, your bodies to bodies of clay.</VERS>\r\n      <VERS vnumber=\"13\">Hold your peace, let me alone, that I may speak, and let come on me what will.</VERS>\r\n      <VERS vnumber=\"14\">Wherefore do I take my flesh in my teeth, and put my life in mine hand?</VERS>\r\n      <VERS vnumber=\"15\">Though he slay me, yet will I trust in him: but I will maintain mine own ways before him.</VERS>\r\n      <VERS vnumber=\"16\">He also shall be my salvation: for an hypocrite shall not come before him.</VERS>\r\n      <VERS vnumber=\"17\">Hear diligently my speech, and my declaration with your ears.</VERS>\r\n      <VERS vnumber=\"18\">Behold now, I have ordered my cause; I know that I shall be justified.</VERS>\r\n      <VERS vnumber=\"19\">Who is he that will plead with me? for now, if I hold my tongue, I shall give up the ghost.</VERS>\r\n      <VERS vnumber=\"20\">Only do not two things unto me: then will I not hide myself from thee.</VERS>\r\n      <VERS vnumber=\"21\">Withdraw thine hand far from me: and let not thy dread make me afraid.</VERS>\r\n      <VERS vnumber=\"22\">Then call thou, and I will answer: or let me speak, and answer thou me.</VERS>\r\n      <VERS vnumber=\"23\">How many are mine iniquities and sins? make me to know my transgression and my sin.</VERS>\r\n      <VERS vnumber=\"24\">Wherefore hidest thou thy face, and holdest me for thine enemy?</VERS>\r\n      <VERS vnumber=\"25\">Wilt thou break a leaf driven to and fro? and wilt thou pursue the dry stubble?</VERS>\r\n      <VERS vnumber=\"26\">For thou writest bitter things against me, and makest me to possess the iniquities of my youth.</VERS>\r\n      <VERS vnumber=\"27\">Thou puttest my feet also in the stocks, and lookest narrowly unto all my paths; thou settest a print upon the heels of my feet.</VERS>\r\n      <VERS vnumber=\"28\">And he, as a rotten thing, consumeth, as a garment that is moth eaten.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">Man that is born of a woman is of few days, and full of trouble.</VERS>\r\n      <VERS vnumber=\"2\">He cometh forth like a flower, and is cut down: he fleeth also as a shadow, and continueth not.</VERS>\r\n      <VERS vnumber=\"3\">And dost thou open thine eyes upon such an one, and bringest me into judgment with thee?</VERS>\r\n      <VERS vnumber=\"4\">Who can bring a clean thing out of an unclean? not one.</VERS>\r\n      <VERS vnumber=\"5\">Seeing his days are determined, the number of his months are with thee, thou hast appointed his bounds that he cannot pass;</VERS>\r\n      <VERS vnumber=\"6\">Turn from him, that he may rest, till he shall accomplish, as an hireling, his day.</VERS>\r\n      <VERS vnumber=\"7\">For 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.</VERS>\r\n      <VERS vnumber=\"8\">Though the root thereof wax old in the earth, and the stock thereof die in the ground;</VERS>\r\n      <VERS vnumber=\"9\">Yet through the scent of water it will bud, and bring forth boughs like a plant.</VERS>\r\n      <VERS vnumber=\"10\">But man dieth, and wasteth away: yea, man giveth up the ghost, and where is he?</VERS>\r\n      <VERS vnumber=\"11\">As the waters fail from the sea, and the flood decayeth and drieth up:</VERS>\r\n      <VERS vnumber=\"12\">So man lieth down, and riseth not: till the heavens be no more, they shall not awake, nor be raised out of their sleep.</VERS>\r\n      <VERS vnumber=\"13\">O 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!</VERS>\r\n      <VERS vnumber=\"14\">If a man die, shall he live again? all the days of my appointed time will I wait, till my change come.</VERS>\r\n      <VERS vnumber=\"15\">Thou shalt call, and I will answer thee: thou wilt have a desire to the work of thine hands.</VERS>\r\n      <VERS vnumber=\"16\">For now thou numberest my steps: dost thou not watch over my sin?</VERS>\r\n      <VERS vnumber=\"17\">My transgression is sealed up in a bag, and thou sewest up mine iniquity.</VERS>\r\n      <VERS vnumber=\"18\">And surely the mountain falling cometh to nought, and the rock is removed out of his place.</VERS>\r\n      <VERS vnumber=\"19\">The 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.</VERS>\r\n      <VERS vnumber=\"20\">Thou prevailest for ever against him, and he passeth: thou changest his countenance, and sendest him away.</VERS>\r\n      <VERS vnumber=\"21\">His sons come to honour, and he knoweth it not; and they are brought low, but he perceiveth it not of them.</VERS>\r\n      <VERS vnumber=\"22\">But his flesh upon him shall have pain, and his soul within him shall mourn.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">Then answered Eliphaz the Temanite, and said,</VERS>\r\n      <VERS vnumber=\"2\">Should a wise man utter vain knowledge, and fill his belly with the east wind?</VERS>\r\n      <VERS vnumber=\"3\">Should he reason with unprofitable talk? or with speeches wherewith he can do no good?</VERS>\r\n      <VERS vnumber=\"4\">Yea, thou castest off fear, and restrainest prayer before God.</VERS>\r\n      <VERS vnumber=\"5\">For thy mouth uttereth thine iniquity, and thou choosest the tongue of the crafty.</VERS>\r\n      <VERS vnumber=\"6\">Thine own mouth condemneth thee, and not I: yea, thine own lips testify against thee.</VERS>\r\n      <VERS vnumber=\"7\">Art thou the first man that was born? or wast thou made before the hills?</VERS>\r\n      <VERS vnumber=\"8\">Hast thou heard the secret of God? and dost thou restrain wisdom to thyself?</VERS>\r\n      <VERS vnumber=\"9\">What knowest thou, that we know not? what understandest thou, which is not in us?</VERS>\r\n      <VERS vnumber=\"10\">With us are both the grayheaded and very aged men, much elder than thy father.</VERS>\r\n      <VERS vnumber=\"11\">Are the consolations of God small with thee? is there any secret thing with thee?</VERS>\r\n      <VERS vnumber=\"12\">Why doth thine heart carry thee away? and what do thy eyes wink at,</VERS>\r\n      <VERS vnumber=\"13\">That thou turnest thy spirit against God, and lettest such words go out of thy mouth?</VERS>\r\n      <VERS vnumber=\"14\">What is man, that he should be clean? and he which is born of a woman, that he should be righteous?</VERS>\r\n      <VERS vnumber=\"15\">Behold, he putteth no trust in his saints; yea, the heavens are not clean in his sight.</VERS>\r\n      <VERS vnumber=\"16\">How much more abominable and filthy is man, which drinketh iniquity like water?</VERS>\r\n      <VERS vnumber=\"17\">I will shew thee, hear me; and that which I have seen I will declare;</VERS>\r\n      <VERS vnumber=\"18\">Which wise men have told from their fathers, and have not hid it:</VERS>\r\n      <VERS vnumber=\"19\">Unto whom alone the earth was given, and no stranger passed among them.</VERS>\r\n      <VERS vnumber=\"20\">The wicked man travaileth with pain all his days, and the number of years is hidden to the oppressor.</VERS>\r\n      <VERS vnumber=\"21\">A dreadful sound is in his ears: in prosperity the destroyer shall come upon him.</VERS>\r\n      <VERS vnumber=\"22\">He believeth not that he shall return out of darkness, and he is waited for of the sword.</VERS>\r\n      <VERS vnumber=\"23\">He wandereth abroad for bread, saying, Where is it? he knoweth that the day of darkness is ready at his hand.</VERS>\r\n      <VERS vnumber=\"24\">Trouble and anguish shall make him afraid; they shall prevail against him, as a king ready to the battle.</VERS>\r\n      <VERS vnumber=\"25\">For he stretcheth out his hand against God, and strengtheneth himself against the Almighty.</VERS>\r\n      <VERS vnumber=\"26\">He runneth upon him, even on his neck, upon the thick bosses of his bucklers:</VERS>\r\n      <VERS vnumber=\"27\">Because he covereth his face with his fatness, and maketh collops of fat on his flanks.</VERS>\r\n      <VERS vnumber=\"28\">And he dwelleth in desolate cities, and in houses which no man inhabiteth, which are ready to become heaps.</VERS>\r\n      <VERS vnumber=\"29\">He shall not be rich, neither shall his substance continue, neither shall he prolong the perfection thereof upon the earth.</VERS>\r\n      <VERS vnumber=\"30\">He shall not depart out of darkness; the flame shall dry up his branches, and by the breath of his mouth shall he go away.</VERS>\r\n      <VERS vnumber=\"31\">Let not him that is deceived trust in vanity: for vanity shall be his recompence.</VERS>\r\n      <VERS vnumber=\"32\">It shall be accomplished before his time, and his branch shall not be green.</VERS>\r\n      <VERS vnumber=\"33\">He shall shake off his unripe grape as the vine, and shall cast off his flower as the olive.</VERS>\r\n      <VERS vnumber=\"34\">For the congregation of hypocrites shall be desolate, and fire shall consume the tabernacles of bribery.</VERS>\r\n      <VERS vnumber=\"35\">They conceive mischief, and bring forth vanity, and their belly prepareth deceit.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">Then Job answered and said,</VERS>\r\n      <VERS vnumber=\"2\">I have heard many such things: miserable comforters are ye all.</VERS>\r\n      <VERS vnumber=\"3\">Shall vain words have an end? or what emboldeneth thee that thou answerest?</VERS>\r\n      <VERS vnumber=\"4\">I 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.</VERS>\r\n      <VERS vnumber=\"5\">But I would strengthen you with my mouth, and the moving of my lips should asswage your grief.</VERS>\r\n      <VERS vnumber=\"6\">Though I speak, my grief is not asswaged: and though I forbear, what am I eased?</VERS>\r\n      <VERS vnumber=\"7\">But now he hath made me weary: thou hast made desolate all my company.</VERS>\r\n      <VERS vnumber=\"8\">And thou hast filled me with wrinkles, which is a witness against me: and my leanness rising up in me beareth witness to my face.</VERS>\r\n      <VERS vnumber=\"9\">He teareth me in his wrath, who hateth me: he gnasheth upon me with his teeth; mine enemy sharpeneth his eyes upon me.</VERS>\r\n      <VERS vnumber=\"10\">They have gaped upon me with their mouth; they have smitten me upon the cheek reproachfully; they have gathered themselves together against me.</VERS>\r\n      <VERS vnumber=\"11\">God hath delivered me to the ungodly, and turned me over into the hands of the wicked.</VERS>\r\n      <VERS vnumber=\"12\">I 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.</VERS>\r\n      <VERS vnumber=\"13\">His archers compass me round about, he cleaveth my reins asunder, and doth not spare; he poureth out my gall upon the ground.</VERS>\r\n      <VERS vnumber=\"14\">He breaketh me with breach upon breach, he runneth upon me like a giant.</VERS>\r\n      <VERS vnumber=\"15\">I have sewed sackcloth upon my skin, and defiled my horn in the dust.</VERS>\r\n      <VERS vnumber=\"16\">My face is foul with weeping, and on my eyelids is the shadow of death;</VERS>\r\n      <VERS vnumber=\"17\">Not for any injustice in mine hands: also my prayer is pure.</VERS>\r\n      <VERS vnumber=\"18\">O earth, cover not thou my blood, and let my cry have no place.</VERS>\r\n      <VERS vnumber=\"19\">Also now, behold, my witness is in heaven, and my record is on high.</VERS>\r\n      <VERS vnumber=\"20\">My friends scorn me: but mine eye poureth out tears unto God.</VERS>\r\n      <VERS vnumber=\"21\">O that one might plead for a man with God, as a man pleadeth for his neighbour!</VERS>\r\n      <VERS vnumber=\"22\">When a few years are come, then I shall go the way whence I shall not return.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"17\">\r\n      <VERS vnumber=\"1\">My breath is corrupt, my days are extinct, the graves are ready for me.</VERS>\r\n      <VERS vnumber=\"2\">Are there not mockers with me? and doth not mine eye continue in their provocation?</VERS>\r\n      <VERS vnumber=\"3\">Lay down now, put me in a surety with thee; who is he that will strike hands with me?</VERS>\r\n      <VERS vnumber=\"4\">For thou hast hid their heart from understanding: therefore shalt thou not exalt them.</VERS>\r\n      <VERS vnumber=\"5\">He that speaketh flattery to his friends, even the eyes of his children shall fail.</VERS>\r\n      <VERS vnumber=\"6\">He hath made me also a byword of the people; and aforetime I was as a tabret.</VERS>\r\n      <VERS vnumber=\"7\">Mine eye also is dim by reason of sorrow, and all my members are as a shadow.</VERS>\r\n      <VERS vnumber=\"8\">Upright men shall be astonied at this, and the innocent shall stir up himself against the hypocrite.</VERS>\r\n      <VERS vnumber=\"9\">The righteous also shall hold on his way, and he that hath clean hands shall be stronger and stronger.</VERS>\r\n      <VERS vnumber=\"10\">But as for you all, do ye return, and come now: for I cannot find one wise man among you.</VERS>\r\n      <VERS vnumber=\"11\">My days are past, my purposes are broken off, even the thoughts of my heart.</VERS>\r\n      <VERS vnumber=\"12\">They change the night into day: the light is short because of darkness.</VERS>\r\n      <VERS vnumber=\"13\">If I wait, the grave is mine house: I have made my bed in the darkness.</VERS>\r\n      <VERS vnumber=\"14\">I have said to corruption, Thou art my father: to the worm, Thou art my mother, and my sister.</VERS>\r\n      <VERS vnumber=\"15\">And where is now my hope? as for my hope, who shall see it?</VERS>\r\n      <VERS vnumber=\"16\">They shall go down to the bars of the pit, when our rest together is in the dust.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"18\">\r\n      <VERS vnumber=\"1\">Then answered Bildad the Shuhite, and said,</VERS>\r\n      <VERS vnumber=\"2\">How long will it be ere ye make an end of words? mark, and afterwards we will speak.</VERS>\r\n      <VERS vnumber=\"3\">Wherefore are we counted as beasts, and reputed vile in your sight?</VERS>\r\n      <VERS vnumber=\"4\">He teareth himself in his anger: shall the earth be forsaken for thee? and shall the rock be removed out of his place?</VERS>\r\n      <VERS vnumber=\"5\">Yea, the light of the wicked shall be put out, and the spark of his fire shall not shine.</VERS>\r\n      <VERS vnumber=\"6\">The light shall be dark in his tabernacle, and his candle shall be put out with him.</VERS>\r\n      <VERS vnumber=\"7\">The steps of his strength shall be straitened, and his own counsel shall cast him down.</VERS>\r\n      <VERS vnumber=\"8\">For he is cast into a net by his own feet, and he walketh upon a snare.</VERS>\r\n      <VERS vnumber=\"9\">The gin shall take him by the heel, and the robber shall prevail against him.</VERS>\r\n      <VERS vnumber=\"10\">The snare is laid for him in the ground, and a trap for him in the way.</VERS>\r\n      <VERS vnumber=\"11\">Terrors shall make him afraid on every side, and shall drive him to his feet.</VERS>\r\n      <VERS vnumber=\"12\">His strength shall be hungerbitten, and destruction shall be ready at his side.</VERS>\r\n      <VERS vnumber=\"13\">It shall devour the strength of his skin: even the firstborn of death shall devour his strength.</VERS>\r\n      <VERS vnumber=\"14\">His confidence shall be rooted out of his tabernacle, and it shall bring him to the king of terrors.</VERS>\r\n      <VERS vnumber=\"15\">It shall dwell in his tabernacle, because it is none of his: brimstone shall be scattered upon his habitation.</VERS>\r\n      <VERS vnumber=\"16\">His roots shall be dried up beneath, and above shall his branch be cut off.</VERS>\r\n      <VERS vnumber=\"17\">His remembrance shall perish from the earth, and he shall have no name in the street.</VERS>\r\n      <VERS vnumber=\"18\">He shall be driven from light into darkness, and chased out of the world.</VERS>\r\n      <VERS vnumber=\"19\">He shall neither have son nor nephew among his people, nor any remaining in his dwellings.</VERS>\r\n      <VERS vnumber=\"20\">They that come after him shall be astonied at his day, as they that went before were affrighted.</VERS>\r\n      <VERS vnumber=\"21\">Surely such are the dwellings of the wicked, and this is the place of him that knoweth not God.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"19\">\r\n      <VERS vnumber=\"1\">Then Job answered and said,</VERS>\r\n      <VERS vnumber=\"2\">How long will ye vex my soul, and break me in pieces with words?</VERS>\r\n      <VERS vnumber=\"3\">These ten times have ye reproached me: ye are not ashamed that ye make yourselves strange to me.</VERS>\r\n      <VERS vnumber=\"4\">And be it indeed that I have erred, mine error remaineth with myself.</VERS>\r\n      <VERS vnumber=\"5\">If indeed ye will magnify yourselves against me, and plead against me my reproach:</VERS>\r\n      <VERS vnumber=\"6\">Know now that God hath overthrown me, and hath compassed me with his net.</VERS>\r\n      <VERS vnumber=\"7\">Behold, I cry out of wrong, but I am not heard: I cry aloud, but there is no judgment.</VERS>\r\n      <VERS vnumber=\"8\">He hath fenced up my way that I cannot pass, and he hath set darkness in my paths.</VERS>\r\n      <VERS vnumber=\"9\">He hath stripped me of my glory, and taken the crown from my head.</VERS>\r\n      <VERS vnumber=\"10\">He hath destroyed me on every side, and I am gone: and mine hope hath he removed like a tree.</VERS>\r\n      <VERS vnumber=\"11\">He hath also kindled his wrath against me, and he counteth me unto him as one of his enemies.</VERS>\r\n      <VERS vnumber=\"12\">His troops come together, and raise up their way against me, and encamp round about my tabernacle.</VERS>\r\n      <VERS vnumber=\"13\">He hath put my brethren far from me, and mine acquaintance are verily estranged from me.</VERS>\r\n      <VERS vnumber=\"14\">My kinsfolk have failed, and my familiar friends have forgotten me.</VERS>\r\n      <VERS vnumber=\"15\">They that dwell in mine house, and my maids, count me for a stranger: I am an alien in their sight.</VERS>\r\n      <VERS vnumber=\"16\">I called my servant, and he gave me no answer; I intreated him with my mouth.</VERS>\r\n      <VERS vnumber=\"17\">My breath is strange to my wife, though I intreated for the children's sake of mine own body.</VERS>\r\n      <VERS vnumber=\"18\">Yea, young children despised me; I arose, and they spake against me.</VERS>\r\n      <VERS vnumber=\"19\">All my inward friends abhorred me: and they whom I loved are turned against me.</VERS>\r\n      <VERS vnumber=\"20\">My bone cleaveth to my skin and to my flesh, and I am escaped with the skin of my teeth.</VERS>\r\n      <VERS vnumber=\"21\">Have pity upon me, have pity upon me, O ye my friends; for the hand of God hath touched me.</VERS>\r\n      <VERS vnumber=\"22\">Why do ye persecute me as God, and are not satisfied with my flesh?</VERS>\r\n      <VERS vnumber=\"23\">Oh that my words were now written! oh that they were printed in a book!</VERS>\r\n      <VERS vnumber=\"24\">That they were graven with an iron pen and lead in the rock for ever!</VERS>\r\n      <VERS vnumber=\"25\">For I know that my redeemer liveth, and that he shall stand at the latter day upon the earth:</VERS>\r\n      <VERS vnumber=\"26\">And though after my skin worms destroy this body, yet in my flesh shall I see God:</VERS>\r\n      <VERS vnumber=\"27\">Whom I shall see for myself, and mine eyes shall behold, and not another; though my reins be consumed within me.</VERS>\r\n      <VERS vnumber=\"28\">But ye should say, Why persecute we him, seeing the root of the matter is found in me?</VERS>\r\n      <VERS vnumber=\"29\">Be ye afraid of the sword: for wrath bringeth the punishments of the sword, that ye may know there is a judgment.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"20\">\r\n      <VERS vnumber=\"1\">Then answered Zophar the Naamathite, and said,</VERS>\r\n      <VERS vnumber=\"2\">Therefore do my thoughts cause me to answer, and for this I make haste.</VERS>\r\n      <VERS vnumber=\"3\">I have heard the check of my reproach, and the spirit of my understanding causeth me to answer.</VERS>\r\n      <VERS vnumber=\"4\">Knowest thou not this of old, since man was placed upon earth,</VERS>\r\n      <VERS vnumber=\"5\">That the triumphing of the wicked is short, and the joy of the hypocrite but for a moment?</VERS>\r\n      <VERS vnumber=\"6\">Though his excellency mount up to the heavens, and his head reach unto the clouds;</VERS>\r\n      <VERS vnumber=\"7\">Yet he shall perish for ever like his own dung: they which have seen him shall say, Where is he?</VERS>\r\n      <VERS vnumber=\"8\">He shall fly away as a dream, and shall not be found: yea, he shall be chased away as a vision of the night.</VERS>\r\n      <VERS vnumber=\"9\">The eye also which saw him shall see him no more; neither shall his place any more behold him.</VERS>\r\n      <VERS vnumber=\"10\">His children shall seek to please the poor, and his hands shall restore their goods.</VERS>\r\n      <VERS vnumber=\"11\">His bones are full of the sin of his youth, which shall lie down with him in the dust.</VERS>\r\n      <VERS vnumber=\"12\">Though wickedness be sweet in his mouth, though he hide it under his tongue;</VERS>\r\n      <VERS vnumber=\"13\">Though he spare it, and forsake it not; but keep it still within his mouth:</VERS>\r\n      <VERS vnumber=\"14\">Yet his meat in his bowels is turned, it is the gall of asps within him.</VERS>\r\n      <VERS vnumber=\"15\">He hath swallowed down riches, and he shall vomit them up again: God shall cast them out of his belly.</VERS>\r\n      <VERS vnumber=\"16\">He shall suck the poison of asps: the viper's tongue shall slay him.</VERS>\r\n      <VERS vnumber=\"17\">He shall not see the rivers, the floods, the brooks of honey and butter.</VERS>\r\n      <VERS vnumber=\"18\">That 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.</VERS>\r\n      <VERS vnumber=\"19\">Because he hath oppressed and hath forsaken the poor; because he hath violently taken away an house which he builded not;</VERS>\r\n      <VERS vnumber=\"20\">Surely he shall not feel quietness in his belly, he shall not save of that which he desired.</VERS>\r\n      <VERS vnumber=\"21\">There shall none of his meat be left; therefore shall no man look for his goods.</VERS>\r\n      <VERS vnumber=\"22\">In the fulness of his sufficiency he shall be in straits: every hand of the wicked shall come upon him.</VERS>\r\n      <VERS vnumber=\"23\">When 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.</VERS>\r\n      <VERS vnumber=\"24\">He shall flee from the iron weapon, and the bow of steel shall strike him through.</VERS>\r\n      <VERS vnumber=\"25\">It is drawn, and cometh out of the body; yea, the glittering sword cometh out of his gall: terrors are upon him.</VERS>\r\n      <VERS vnumber=\"26\">All 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.</VERS>\r\n      <VERS vnumber=\"27\">The heaven shall reveal his iniquity; and the earth shall rise up against him.</VERS>\r\n      <VERS vnumber=\"28\">The increase of his house shall depart, and his goods shall flow away in the day of his wrath.</VERS>\r\n      <VERS vnumber=\"29\">This is the portion of a wicked man from God, and the heritage appointed unto him by God.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"21\">\r\n      <VERS vnumber=\"1\">But Job answered and said,</VERS>\r\n      <VERS vnumber=\"2\">Hear diligently my speech, and let this be your consolations.</VERS>\r\n      <VERS vnumber=\"3\">Suffer me that I may speak; and after that I have spoken, mock on.</VERS>\r\n      <VERS vnumber=\"4\">As for me, is my complaint to man? and if it were so, why should not my spirit be troubled?</VERS>\r\n      <VERS vnumber=\"5\">Mark me, and be astonished, and lay your hand upon your mouth.</VERS>\r\n      <VERS vnumber=\"6\">Even when I remember I am afraid, and trembling taketh hold on my flesh.</VERS>\r\n      <VERS vnumber=\"7\">Wherefore do the wicked live, become old, yea, are mighty in power?</VERS>\r\n      <VERS vnumber=\"8\">Their seed is established in their sight with them, and their offspring before their eyes.</VERS>\r\n      <VERS vnumber=\"9\">Their houses are safe from fear, neither is the rod of God upon them.</VERS>\r\n      <VERS vnumber=\"10\">Their bull gendereth, and faileth not; their cow calveth, and casteth not her calf.</VERS>\r\n      <VERS vnumber=\"11\">They send forth their little ones like a flock, and their children dance.</VERS>\r\n      <VERS vnumber=\"12\">They take the timbrel and harp, and rejoice at the sound of the organ.</VERS>\r\n      <VERS vnumber=\"13\">They spend their days in wealth, and in a moment go down to the grave.</VERS>\r\n      <VERS vnumber=\"14\">Therefore they say unto God, Depart from us; for we desire not the knowledge of thy ways.</VERS>\r\n      <VERS vnumber=\"15\">What is the Almighty, that we should serve him? and what profit should we have, if we pray unto him?</VERS>\r\n      <VERS vnumber=\"16\">Lo, their good is not in their hand: the counsel of the wicked is far from me.</VERS>\r\n      <VERS vnumber=\"17\">How oft is the candle of the wicked put out! and how oft cometh their destruction upon them! God distributeth sorrows in his anger.</VERS>\r\n      <VERS vnumber=\"18\">They are as stubble before the wind, and as chaff that the storm carrieth away.</VERS>\r\n      <VERS vnumber=\"19\">God layeth up his iniquity for his children: he rewardeth him, and he shall know it.</VERS>\r\n      <VERS vnumber=\"20\">His eyes shall see his destruction, and he shall drink of the wrath of the Almighty.</VERS>\r\n      <VERS vnumber=\"21\">For what pleasure hath he in his house after him, when the number of his months is cut off in the midst?</VERS>\r\n      <VERS vnumber=\"22\">Shall any teach God knowledge? seeing he judgeth those that are high.</VERS>\r\n      <VERS vnumber=\"23\">One dieth in his full strength, being wholly at ease and quiet.</VERS>\r\n      <VERS vnumber=\"24\">His breasts are full of milk, and his bones are moistened with marrow.</VERS>\r\n      <VERS vnumber=\"25\">And another dieth in the bitterness of his soul, and never eateth with pleasure.</VERS>\r\n      <VERS vnumber=\"26\">They shall lie down alike in the dust, and the worms shall cover them.</VERS>\r\n      <VERS vnumber=\"27\">Behold, I know your thoughts, and the devices which ye wrongfully imagine against me.</VERS>\r\n      <VERS vnumber=\"28\">For ye say, Where is the house of the prince? and where are the dwelling places of the wicked?</VERS>\r\n      <VERS vnumber=\"29\">Have ye not asked them that go by the way? and do ye not know their tokens,</VERS>\r\n      <VERS vnumber=\"30\">That the wicked is reserved to the day of destruction? they shall be brought forth to the day of wrath.</VERS>\r\n      <VERS vnumber=\"31\">Who shall declare his way to his face? and who shall repay him what he hath done?</VERS>\r\n      <VERS vnumber=\"32\">Yet shall he be brought to the grave, and shall remain in the tomb.</VERS>\r\n      <VERS vnumber=\"33\">The clods of the valley shall be sweet unto him, and every man shall draw after him, as there are innumerable before him.</VERS>\r\n      <VERS vnumber=\"34\">How then comfort ye me in vain, seeing in your answers there remaineth falsehood?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"22\">\r\n      <VERS vnumber=\"1\">Then Eliphaz the Temanite answered and said,</VERS>\r\n      <VERS vnumber=\"2\">Can a man be profitable unto God, as he that is wise may be profitable unto himself?</VERS>\r\n      <VERS vnumber=\"3\">Is it any pleasure to the Almighty, that thou art righteous? or is it gain to him, that thou makest thy ways perfect?</VERS>\r\n      <VERS vnumber=\"4\">Will he reprove thee for fear of thee? will he enter with thee into judgment?</VERS>\r\n      <VERS vnumber=\"5\">Is not thy wickedness great? and thine iniquities infinite?</VERS>\r\n      <VERS vnumber=\"6\">For thou hast taken a pledge from thy brother for nought, and stripped the naked of their clothing.</VERS>\r\n      <VERS vnumber=\"7\">Thou hast not given water to the weary to drink, and thou hast withholden bread from the hungry.</VERS>\r\n      <VERS vnumber=\"8\">But as for the mighty man, he had the earth; and the honourable man dwelt in it.</VERS>\r\n      <VERS vnumber=\"9\">Thou hast sent widows away empty, and the arms of the fatherless have been broken.</VERS>\r\n      <VERS vnumber=\"10\">Therefore snares are round about thee, and sudden fear troubleth thee;</VERS>\r\n      <VERS vnumber=\"11\">Or darkness, that thou canst not see; and abundance of waters cover thee.</VERS>\r\n      <VERS vnumber=\"12\">Is not God in the height of heaven? and behold the height of the stars, how high they are!</VERS>\r\n      <VERS vnumber=\"13\">And thou sayest, How doth God know? can he judge through the dark cloud?</VERS>\r\n      <VERS vnumber=\"14\">Thick clouds are a covering to him, that he seeth not; and he walketh in the circuit of heaven.</VERS>\r\n      <VERS vnumber=\"15\">Hast thou marked the old way which wicked men have trodden?</VERS>\r\n      <VERS vnumber=\"16\">Which were cut down out of time, whose foundation was overflown with a flood:</VERS>\r\n      <VERS vnumber=\"17\">Which said unto God, Depart from us: and what can the Almighty do for them?</VERS>\r\n      <VERS vnumber=\"18\">Yet he filled their houses with good things: but the counsel of the wicked is far from me.</VERS>\r\n      <VERS vnumber=\"19\">The righteous see it, and are glad: and the innocent laugh them to scorn.</VERS>\r\n      <VERS vnumber=\"20\">Whereas our substance is not cut down, but the remnant of them the fire consumeth.</VERS>\r\n      <VERS vnumber=\"21\">Acquaint now thyself with him, and be at peace: thereby good shall come unto thee.</VERS>\r\n      <VERS vnumber=\"22\">Receive, I pray thee, the law from his mouth, and lay up his words in thine heart.</VERS>\r\n      <VERS vnumber=\"23\">If thou return to the Almighty, thou shalt be built up, thou shalt put away iniquity far from thy tabernacles.</VERS>\r\n      <VERS vnumber=\"24\">Then shalt thou lay up gold as dust, and the gold of Ophir as the stones of the brooks.</VERS>\r\n      <VERS vnumber=\"25\">Yea, the Almighty shall be thy defence, and thou shalt have plenty of silver.</VERS>\r\n      <VERS vnumber=\"26\">For then shalt thou have thy delight in the Almighty, and shalt lift up thy face unto God.</VERS>\r\n      <VERS vnumber=\"27\">Thou shalt make thy prayer unto him, and he shall hear thee, and thou shalt pay thy vows.</VERS>\r\n      <VERS vnumber=\"28\">Thou shalt also decree a thing, and it shall be established unto thee: and the light shall shine upon thy ways.</VERS>\r\n      <VERS vnumber=\"29\">When men are cast down, then thou shalt say, There is lifting up; and he shall save the humble person.</VERS>\r\n      <VERS vnumber=\"30\">He shall deliver the island of the innocent: and it is delivered by the pureness of thine hands.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"23\">\r\n      <VERS vnumber=\"1\">Then Job answered and said,</VERS>\r\n      <VERS vnumber=\"2\">Even to day is my complaint bitter: my stroke is heavier than my groaning.</VERS>\r\n      <VERS vnumber=\"3\">Oh that I knew where I might find him! that I might come even to his seat!</VERS>\r\n      <VERS vnumber=\"4\">I would order my cause before him, and fill my mouth with arguments.</VERS>\r\n      <VERS vnumber=\"5\">I would know the words which he would answer me, and understand what he would say unto me.</VERS>\r\n      <VERS vnumber=\"6\">Will he plead against me with his great power? No; but he would put strength in me.</VERS>\r\n      <VERS vnumber=\"7\">There the righteous might dispute with him; so should I be delivered for ever from my judge.</VERS>\r\n      <VERS vnumber=\"8\">Behold, I go forward, but he is not there; and backward, but I cannot perceive him:</VERS>\r\n      <VERS vnumber=\"9\">On the left hand, where he doth work, but I cannot behold him: he hideth himself on the right hand, that I cannot see him:</VERS>\r\n      <VERS vnumber=\"10\">But he knoweth the way that I take: when he hath tried me, I shall come forth as gold.</VERS>\r\n      <VERS vnumber=\"11\">My foot hath held his steps, his way have I kept, and not declined.</VERS>\r\n      <VERS vnumber=\"12\">Neither have I gone back from the commandment of his lips; I have esteemed the words of his mouth more than my necessary food.</VERS>\r\n      <VERS vnumber=\"13\">But he is in one mind, and who can turn him? and what his soul desireth, even that he doeth.</VERS>\r\n      <VERS vnumber=\"14\">For he performeth the thing that is appointed for me: and many such things are with him.</VERS>\r\n      <VERS vnumber=\"15\">Therefore am I troubled at his presence: when I consider, I am afraid of him.</VERS>\r\n      <VERS vnumber=\"16\">For God maketh my heart soft, and the Almighty troubleth me:</VERS>\r\n      <VERS vnumber=\"17\">Because I was not cut off before the darkness, neither hath he covered the darkness from my face.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"24\">\r\n      <VERS vnumber=\"1\">Why, seeing times are not hidden from the Almighty, do they that know him not see his days?</VERS>\r\n      <VERS vnumber=\"2\">Some remove the landmarks; they violently take away flocks, and feed thereof.</VERS>\r\n      <VERS vnumber=\"3\">They drive away the ass of the fatherless, they take the widow's ox for a pledge.</VERS>\r\n      <VERS vnumber=\"4\">They turn the needy out of the way: the poor of the earth hide themselves together.</VERS>\r\n      <VERS vnumber=\"5\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"6\">They reap every one his corn in the field: and they gather the vintage of the wicked.</VERS>\r\n      <VERS vnumber=\"7\">They cause the naked to lodge without clothing, that they have no covering in the cold.</VERS>\r\n      <VERS vnumber=\"8\">They are wet with the showers of the mountains, and embrace the rock for want of a shelter.</VERS>\r\n      <VERS vnumber=\"9\">They pluck the fatherless from the breast, and take a pledge of the poor.</VERS>\r\n      <VERS vnumber=\"10\">They cause him to go naked without clothing, and they take away the sheaf from the hungry;</VERS>\r\n      <VERS vnumber=\"11\">Which make oil within their walls, and tread their winepresses, and suffer thirst.</VERS>\r\n      <VERS vnumber=\"12\">Men groan from out of the city, and the soul of the wounded crieth out: yet God layeth not folly to them.</VERS>\r\n      <VERS vnumber=\"13\">They are of those that rebel against the light; they know not the ways thereof, nor abide in the paths thereof.</VERS>\r\n      <VERS vnumber=\"14\">The murderer rising with the light killeth the poor and needy, and in the night is as a thief.</VERS>\r\n      <VERS vnumber=\"15\">The eye also of the adulterer waiteth for the twilight, saying, No eye shall see me: and disguiseth his face.</VERS>\r\n      <VERS vnumber=\"16\">In the dark they dig through houses, which they had marked for themselves in the daytime: they know not the light.</VERS>\r\n      <VERS vnumber=\"17\">For 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.</VERS>\r\n      <VERS vnumber=\"18\">He is swift as the waters; their portion is cursed in the earth: he beholdeth not the way of the vineyards.</VERS>\r\n      <VERS vnumber=\"19\">Drought and heat consume the snow waters: so doth the grave those which have sinned.</VERS>\r\n      <VERS vnumber=\"20\">The 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.</VERS>\r\n      <VERS vnumber=\"21\">He evil entreateth the barren that beareth not: and doeth not good to the widow.</VERS>\r\n      <VERS vnumber=\"22\">He draweth also the mighty with his power: he riseth up, and no man is sure of life.</VERS>\r\n      <VERS vnumber=\"23\">Though it be given him to be in safety, whereon he resteth; yet his eyes are upon their ways.</VERS>\r\n      <VERS vnumber=\"24\">They 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.</VERS>\r\n      <VERS vnumber=\"25\">And if it be not so now, who will make me a liar, and make my speech nothing worth?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"25\">\r\n      <VERS vnumber=\"1\">Then answered Bildad the Shuhite, and said,</VERS>\r\n      <VERS vnumber=\"2\">Dominion and fear are with him, he maketh peace in his high places.</VERS>\r\n      <VERS vnumber=\"3\">Is there any number of his armies? and upon whom doth not his light arise?</VERS>\r\n      <VERS vnumber=\"4\">How then can man be justified with God? or how can he be clean that is born of a woman?</VERS>\r\n      <VERS vnumber=\"5\">Behold even to the moon, and it shineth not; yea, the stars are not pure in his sight.</VERS>\r\n      <VERS vnumber=\"6\">How much less man, that is a worm? and the son of man, which is a worm?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"26\">\r\n      <VERS vnumber=\"1\">But Job answered and said,</VERS>\r\n      <VERS vnumber=\"2\">How hast thou helped him that is without power? how savest thou the arm that hath no strength?</VERS>\r\n      <VERS vnumber=\"3\">How hast thou counselled him that hath no wisdom? and how hast thou plentifully declared the thing as it is?</VERS>\r\n      <VERS vnumber=\"4\">To whom hast thou uttered words? and whose spirit came from thee?</VERS>\r\n      <VERS vnumber=\"5\">Dead things are formed from under the waters, and the inhabitants thereof.</VERS>\r\n      <VERS vnumber=\"6\">Hell is naked before him, and destruction hath no covering.</VERS>\r\n      <VERS vnumber=\"7\">He stretcheth out the north over the empty place, and hangeth the earth upon nothing.</VERS>\r\n      <VERS vnumber=\"8\">He bindeth up the waters in his thick clouds; and the cloud is not rent under them.</VERS>\r\n      <VERS vnumber=\"9\">He holdeth back the face of his throne, and spreadeth his cloud upon it.</VERS>\r\n      <VERS vnumber=\"10\">He hath compassed the waters with bounds, until the day and night come to an end.</VERS>\r\n      <VERS vnumber=\"11\">The pillars of heaven tremble and are astonished at his reproof.</VERS>\r\n      <VERS vnumber=\"12\">He divideth the sea with his power, and by his understanding he smiteth through the proud.</VERS>\r\n      <VERS vnumber=\"13\">By his spirit he hath garnished the heavens; his hand hath formed the crooked serpent.</VERS>\r\n      <VERS vnumber=\"14\">Lo, these are parts of his ways: but how little a portion is heard of him? but the thunder of his power who can understand?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"27\">\r\n      <VERS vnumber=\"1\">Moreover Job continued his parable, and said,</VERS>\r\n      <VERS vnumber=\"2\">As God liveth, who hath taken away my judgment; and the Almighty, who hath vexed my soul;</VERS>\r\n      <VERS vnumber=\"3\">All the while my breath is in me, and the spirit of God is in my nostrils;</VERS>\r\n      <VERS vnumber=\"4\">My lips shall not speak wickedness, nor my tongue utter deceit.</VERS>\r\n      <VERS vnumber=\"5\">God forbid that I should justify you: till I die I will not remove mine integrity from me.</VERS>\r\n      <VERS vnumber=\"6\">My righteousness I hold fast, and will not let it go: my heart shall not reproach me so long as I live.</VERS>\r\n      <VERS vnumber=\"7\">Let mine enemy be as the wicked, and he that riseth up against me as the unrighteous.</VERS>\r\n      <VERS vnumber=\"8\">For what is the hope of the hypocrite, though he hath gained, when God taketh away his soul?</VERS>\r\n      <VERS vnumber=\"9\">Will God hear his cry when trouble cometh upon him?</VERS>\r\n      <VERS vnumber=\"10\">Will he delight himself in the Almighty? will he always call upon God?</VERS>\r\n      <VERS vnumber=\"11\">I will teach you by the hand of God: that which is with the Almighty will I not conceal.</VERS>\r\n      <VERS vnumber=\"12\">Behold, all ye yourselves have seen it; why then are ye thus altogether vain?</VERS>\r\n      <VERS vnumber=\"13\">This is the portion of a wicked man with God, and the heritage of oppressors, which they shall receive of the Almighty.</VERS>\r\n      <VERS vnumber=\"14\">If his children be multiplied, it is for the sword: and his offspring shall not be satisfied with bread.</VERS>\r\n      <VERS vnumber=\"15\">Those that remain of him shall be buried in death: and his widows shall not weep.</VERS>\r\n      <VERS vnumber=\"16\">Though he heap up silver as the dust, and prepare raiment as the clay;</VERS>\r\n      <VERS vnumber=\"17\">He may prepare it, but the just shall put it on, and the innocent shall divide the silver.</VERS>\r\n      <VERS vnumber=\"18\">He buildeth his house as a moth, and as a booth that the keeper maketh.</VERS>\r\n      <VERS vnumber=\"19\">The rich man shall lie down, but he shall not be gathered: he openeth his eyes, and he is not.</VERS>\r\n      <VERS vnumber=\"20\">Terrors take hold on him as waters, a tempest stealeth him away in the night.</VERS>\r\n      <VERS vnumber=\"21\">The east wind carrieth him away, and he departeth: and as a storm hurleth him out of his place.</VERS>\r\n      <VERS vnumber=\"22\">For God shall cast upon him, and not spare: he would fain flee out of his hand.</VERS>\r\n      <VERS vnumber=\"23\">Men shall clap their hands at him, and shall hiss him out of his place.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"28\">\r\n      <VERS vnumber=\"1\">Surely there is a vein for the silver, and a place for gold where they fine it.</VERS>\r\n      <VERS vnumber=\"2\">Iron is taken out of the earth, and brass is molten out of the stone.</VERS>\r\n      <VERS vnumber=\"3\">He setteth an end to darkness, and searcheth out all perfection: the stones of darkness, and the shadow of death.</VERS>\r\n      <VERS vnumber=\"4\">The flood breaketh out from the inhabitant; even the waters forgotten of the foot: they are dried up, they are gone away from men.</VERS>\r\n      <VERS vnumber=\"5\">As for the earth, out of it cometh bread: and under it is turned up as it were fire.</VERS>\r\n      <VERS vnumber=\"6\">The stones of it are the place of sapphires: and it hath dust of gold.</VERS>\r\n      <VERS vnumber=\"7\">There is a path which no fowl knoweth, and which the vulture's eye hath not seen:</VERS>\r\n      <VERS vnumber=\"8\">The lion's whelps have not trodden it, nor the fierce lion passed by it.</VERS>\r\n      <VERS vnumber=\"9\">He putteth forth his hand upon the rock; he overturneth the mountains by the roots.</VERS>\r\n      <VERS vnumber=\"10\">He cutteth out rivers among the rocks; and his eye seeth every precious thing.</VERS>\r\n      <VERS vnumber=\"11\">He bindeth the floods from overflowing; and the thing that is hid bringeth he forth to light.</VERS>\r\n      <VERS vnumber=\"12\">But where shall wisdom be found? and where is the place of understanding?</VERS>\r\n      <VERS vnumber=\"13\">Man knoweth not the price thereof; neither is it found in the land of the living.</VERS>\r\n      <VERS vnumber=\"14\">The depth saith, It is not in me: and the sea saith, It is not with me.</VERS>\r\n      <VERS vnumber=\"15\">It cannot be gotten for gold, neither shall silver be weighed for the price thereof.</VERS>\r\n      <VERS vnumber=\"16\">It cannot be valued with the gold of Ophir, with the precious onyx, or the sapphire.</VERS>\r\n      <VERS vnumber=\"17\">The gold and the crystal cannot equal it: and the exchange of it shall not be for jewels of fine gold.</VERS>\r\n      <VERS vnumber=\"18\">No mention shall be made of coral, or of pearls: for the price of wisdom is above rubies.</VERS>\r\n      <VERS vnumber=\"19\">The topaz of Ethiopia shall not equal it, neither shall it be valued with pure gold.</VERS>\r\n      <VERS vnumber=\"20\">Whence then cometh wisdom? and where is the place of understanding?</VERS>\r\n      <VERS vnumber=\"21\">Seeing it is hid from the eyes of all living, and kept close from the fowls of the air.</VERS>\r\n      <VERS vnumber=\"22\">Destruction and death say, We have heard the fame thereof with our ears.</VERS>\r\n      <VERS vnumber=\"23\">God understandeth the way thereof, and he knoweth the place thereof.</VERS>\r\n      <VERS vnumber=\"24\">For he looketh to the ends of the earth, and seeth under the whole heaven;</VERS>\r\n      <VERS vnumber=\"25\">To make the weight for the winds; and he weigheth the waters by measure.</VERS>\r\n      <VERS vnumber=\"26\">When he made a decree for the rain, and a way for the lightning of the thunder:</VERS>\r\n      <VERS vnumber=\"27\">Then did he see it, and declare it; he prepared it, yea, and searched it out.</VERS>\r\n      <VERS vnumber=\"28\">And unto man he said, Behold, the fear of the Lord, that is wisdom; and to depart from evil is understanding.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"29\">\r\n      <VERS vnumber=\"1\">Moreover Job continued his parable, and said,</VERS>\r\n      <VERS vnumber=\"2\">Oh that I were as in months past, as in the days when God preserved me;</VERS>\r\n      <VERS vnumber=\"3\">When his candle shined upon my head, and when by his light I walked through darkness;</VERS>\r\n      <VERS vnumber=\"4\">As I was in the days of my youth, when the secret of God was upon my tabernacle;</VERS>\r\n      <VERS vnumber=\"5\">When the Almighty was yet with me, when my children were about me;</VERS>\r\n      <VERS vnumber=\"6\">When I washed my steps with butter, and the rock poured me out rivers of oil;</VERS>\r\n      <VERS vnumber=\"7\">When I went out to the gate through the city, when I prepared my seat in the street!</VERS>\r\n      <VERS vnumber=\"8\">The young men saw me, and hid themselves: and the aged arose, and stood up.</VERS>\r\n      <VERS vnumber=\"9\">The princes refrained talking, and laid their hand on their mouth.</VERS>\r\n      <VERS vnumber=\"10\">The nobles held their peace, and their tongue cleaved to the roof of their mouth.</VERS>\r\n      <VERS vnumber=\"11\">When the ear heard me, then it blessed me; and when the eye saw me, it gave witness to me:</VERS>\r\n      <VERS vnumber=\"12\">Because I delivered the poor that cried, and the fatherless, and him that had none to help him.</VERS>\r\n      <VERS vnumber=\"13\">The blessing of him that was ready to perish came upon me: and I caused the widow's heart to sing for joy.</VERS>\r\n      <VERS vnumber=\"14\">I put on righteousness, and it clothed me: my judgment was as a robe and a diadem.</VERS>\r\n      <VERS vnumber=\"15\">I was eyes to the blind, and feet was I to the lame.</VERS>\r\n      <VERS vnumber=\"16\">I was a father to the poor: and the cause which I knew not I searched out.</VERS>\r\n      <VERS vnumber=\"17\">And I brake the jaws of the wicked, and plucked the spoil out of his teeth.</VERS>\r\n      <VERS vnumber=\"18\">Then I said, I shall die in my nest, and I shall multiply my days as the sand.</VERS>\r\n      <VERS vnumber=\"19\">My root was spread out by the waters, and the dew lay all night upon my branch.</VERS>\r\n      <VERS vnumber=\"20\">My glory was fresh in me, and my bow was renewed in my hand.</VERS>\r\n      <VERS vnumber=\"21\">Unto me men gave ear, and waited, and kept silence at my counsel.</VERS>\r\n      <VERS vnumber=\"22\">After my words they spake not again; and my speech dropped upon them.</VERS>\r\n      <VERS vnumber=\"23\">And they waited for me as for the rain; and they opened their mouth wide as for the latter rain.</VERS>\r\n      <VERS vnumber=\"24\">If I laughed on them, they believed it not; and the light of my countenance they cast not down.</VERS>\r\n      <VERS vnumber=\"25\">I chose out their way, and sat chief, and dwelt as a king in the army, as one that comforteth the mourners.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"30\">\r\n      <VERS vnumber=\"1\">But 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.</VERS>\r\n      <VERS vnumber=\"2\">Yea, whereto might the strength of their hands profit me, in whom old age was perished?</VERS>\r\n      <VERS vnumber=\"3\">For want and famine they were solitary; fleeing into the wilderness in former time desolate and waste.</VERS>\r\n      <VERS vnumber=\"4\">Who cut up mallows by the bushes, and juniper roots for their meat.</VERS>\r\n      <VERS vnumber=\"5\">They were driven forth from among men, (they cried after them as after a thief;)</VERS>\r\n      <VERS vnumber=\"6\">To dwell in the clifts of the valleys, in caves of the earth, and in the rocks.</VERS>\r\n      <VERS vnumber=\"7\">Among the bushes they brayed; under the nettles they were gathered together.</VERS>\r\n      <VERS vnumber=\"8\">They were children of fools, yea, children of base men: they were viler than the earth.</VERS>\r\n      <VERS vnumber=\"9\">And now am I their song, yea, I am their byword.</VERS>\r\n      <VERS vnumber=\"10\">They abhor me, they flee far from me, and spare not to spit in my face.</VERS>\r\n      <VERS vnumber=\"11\">Because he hath loosed my cord, and afflicted me, they have also let loose the bridle before me.</VERS>\r\n      <VERS vnumber=\"12\">Upon my right hand rise the youth; they push away my feet, and they raise up against me the ways of their destruction.</VERS>\r\n      <VERS vnumber=\"13\">They mar my path, they set forward my calamity, they have no helper.</VERS>\r\n      <VERS vnumber=\"14\">They came upon me as a wide breaking in of waters: in the desolation they rolled themselves upon me.</VERS>\r\n      <VERS vnumber=\"15\">Terrors are turned upon me: they pursue my soul as the wind: and my welfare passeth away as a cloud.</VERS>\r\n      <VERS vnumber=\"16\">And now my soul is poured out upon me; the days of affliction have taken hold upon me.</VERS>\r\n      <VERS vnumber=\"17\">My bones are pierced in me in the night season: and my sinews take no rest.</VERS>\r\n      <VERS vnumber=\"18\">By the great force of my disease is my garment changed: it bindeth me about as the collar of my coat.</VERS>\r\n      <VERS vnumber=\"19\">He hath cast me into the mire, and I am become like dust and ashes.</VERS>\r\n      <VERS vnumber=\"20\">I cry unto thee, and thou dost not hear me: I stand up, and thou regardest me not.</VERS>\r\n      <VERS vnumber=\"21\">Thou art become cruel to me: with thy strong hand thou opposest thyself against me.</VERS>\r\n      <VERS vnumber=\"22\">Thou liftest me up to the wind; thou causest me to ride upon it, and dissolvest my substance.</VERS>\r\n      <VERS vnumber=\"23\">For I know that thou wilt bring me to death, and to the house appointed for all living.</VERS>\r\n      <VERS vnumber=\"24\">Howbeit he will not stretch out his hand to the grave, though they cry in his destruction.</VERS>\r\n      <VERS vnumber=\"25\">Did not I weep for him that was in trouble? was not my soul grieved for the poor?</VERS>\r\n      <VERS vnumber=\"26\">When I looked for good, then evil came unto me: and when I waited for light, there came darkness.</VERS>\r\n      <VERS vnumber=\"27\">My bowels boiled, and rested not: the days of affliction prevented me.</VERS>\r\n      <VERS vnumber=\"28\">I went mourning without the sun: I stood up, and I cried in the congregation.</VERS>\r\n      <VERS vnumber=\"29\">I am a brother to dragons, and a companion to owls.</VERS>\r\n      <VERS vnumber=\"30\">My skin is black upon me, and my bones are burned with heat.</VERS>\r\n      <VERS vnumber=\"31\">My harp also is turned to mourning, and my organ into the voice of them that weep.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"31\">\r\n      <VERS vnumber=\"1\">I made a covenant with mine eyes; why then should I think upon a maid?</VERS>\r\n      <VERS vnumber=\"2\">For what portion of God is there from above? and what inheritance of the Almighty from on high?</VERS>\r\n      <VERS vnumber=\"3\">Is not destruction to the wicked? and a strange punishment to the workers of iniquity?</VERS>\r\n      <VERS vnumber=\"4\">Doth not he see my ways, and count all my steps?</VERS>\r\n      <VERS vnumber=\"5\">If I have walked with vanity, or if my foot hath hasted to deceit;</VERS>\r\n      <VERS vnumber=\"6\">Let me be weighed in an even balance, that God may know mine integrity.</VERS>\r\n      <VERS vnumber=\"7\">If my step hath turned out of the way, and mine heart walked after mine eyes, and if any blot hath cleaved to mine hands;</VERS>\r\n      <VERS vnumber=\"8\">Then let me sow, and let another eat; yea, let my offspring be rooted out.</VERS>\r\n      <VERS vnumber=\"9\">If mine heart have been deceived by a woman, or if I have laid wait at my neighbour's door;</VERS>\r\n      <VERS vnumber=\"10\">Then let my wife grind unto another, and let others bow down upon her.</VERS>\r\n      <VERS vnumber=\"11\">For this is an heinous crime; yea, it is an iniquity to be punished by the judges.</VERS>\r\n      <VERS vnumber=\"12\">For it is a fire that consumeth to destruction, and would root out all mine increase.</VERS>\r\n      <VERS vnumber=\"13\">If I did despise the cause of my manservant or of my maidservant, when they contended with me;</VERS>\r\n      <VERS vnumber=\"14\">What then shall I do when God riseth up? and when he visiteth, what shall I answer him?</VERS>\r\n      <VERS vnumber=\"15\">Did not he that made me in the womb make him? and did not one fashion us in the womb?</VERS>\r\n      <VERS vnumber=\"16\">If I have withheld the poor from their desire, or have caused the eyes of the widow to fail;</VERS>\r\n      <VERS vnumber=\"17\">Or have eaten my morsel myself alone, and the fatherless hath not eaten thereof;</VERS>\r\n      <VERS vnumber=\"18\">(For from my youth he was brought up with me, as with a father, and I have guided her from my mother's womb;)</VERS>\r\n      <VERS vnumber=\"19\">If I have seen any perish for want of clothing, or any poor without covering;</VERS>\r\n      <VERS vnumber=\"20\">If his loins have not blessed me, and if he were not warmed with the fleece of my sheep;</VERS>\r\n      <VERS vnumber=\"21\">If I have lifted up my hand against the fatherless, when I saw my help in the gate:</VERS>\r\n      <VERS vnumber=\"22\">Then let mine arm fall from my shoulder blade, and mine arm be broken from the bone.</VERS>\r\n      <VERS vnumber=\"23\">For destruction from God was a terror to me, and by reason of his highness I could not endure.</VERS>\r\n      <VERS vnumber=\"24\">If I have made gold my hope, or have said to the fine gold, Thou art my confidence;</VERS>\r\n      <VERS vnumber=\"25\">If I rejoiced because my wealth was great, and because mine hand had gotten much;</VERS>\r\n      <VERS vnumber=\"26\">If I beheld the sun when it shined, or the moon walking in brightness;</VERS>\r\n      <VERS vnumber=\"27\">And my heart hath been secretly enticed, or my mouth hath kissed my hand:</VERS>\r\n      <VERS vnumber=\"28\">This also were an iniquity to be punished by the judge: for I should have denied the God that is above.</VERS>\r\n      <VERS vnumber=\"29\">If I rejoiced at the destruction of him that hated me, or lifted up myself when evil found him:</VERS>\r\n      <VERS vnumber=\"30\">Neither have I suffered my mouth to sin by wishing a curse to his soul.</VERS>\r\n      <VERS vnumber=\"31\">If the men of my tabernacle said not, Oh that we had of his flesh! we cannot be satisfied.</VERS>\r\n      <VERS vnumber=\"32\">The stranger did not lodge in the street: but I opened my doors to the traveller.</VERS>\r\n      <VERS vnumber=\"33\">If I covered my transgressions as Adam, by hiding mine iniquity in my bosom:</VERS>\r\n      <VERS vnumber=\"34\">Did I fear a great multitude, or did the contempt of families terrify me, that I kept silence, and went not out of the door?</VERS>\r\n      <VERS vnumber=\"35\">Oh that one would hear me! behold, my desire is, that the Almighty would answer me, and that mine adversary had written a book.</VERS>\r\n      <VERS vnumber=\"36\">Surely I would take it upon my shoulder, and bind it as a crown to me.</VERS>\r\n      <VERS vnumber=\"37\">I would declare unto him the number of my steps; as a prince would I go near unto him.</VERS>\r\n      <VERS vnumber=\"38\">If my land cry against me, or that the furrows likewise thereof complain;</VERS>\r\n      <VERS vnumber=\"39\">If I have eaten the fruits thereof without money, or have caused the owners thereof to lose their life:</VERS>\r\n      <VERS vnumber=\"40\">Let thistles grow instead of wheat, and cockle instead of barley. The words of Job are ended.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"32\">\r\n      <VERS vnumber=\"1\">So these three men ceased to answer Job, because he was righteous in his own eyes.</VERS>\r\n      <VERS vnumber=\"2\">Then 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.</VERS>\r\n      <VERS vnumber=\"3\">Also against his three friends was his wrath kindled, because they had found no answer, and yet had condemned Job.</VERS>\r\n      <VERS vnumber=\"4\">Now Elihu had waited till Job had spoken, because they were elder than he.</VERS>\r\n      <VERS vnumber=\"5\">When Elihu saw that there was no answer in the mouth of these three men, then his wrath was kindled.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">I said, Days should speak, and multitude of years should teach wisdom.</VERS>\r\n      <VERS vnumber=\"8\">But there is a spirit in man: and the inspiration of the Almighty giveth them understanding.</VERS>\r\n      <VERS vnumber=\"9\">Great men are not always wise: neither do the aged understand judgment.</VERS>\r\n      <VERS vnumber=\"10\">Therefore I said, Hearken to me; I also will shew mine opinion.</VERS>\r\n      <VERS vnumber=\"11\">Behold, I waited for your words; I gave ear to your reasons, whilst ye searched out what to say.</VERS>\r\n      <VERS vnumber=\"12\">Yea, I attended unto you, and, behold, there was none of you that convinced Job, or that answered his words:</VERS>\r\n      <VERS vnumber=\"13\">Lest ye should say, We have found out wisdom: God thrusteth him down, not man.</VERS>\r\n      <VERS vnumber=\"14\">Now he hath not directed his words against me: neither will I answer him with your speeches.</VERS>\r\n      <VERS vnumber=\"15\">They were amazed, they answered no more: they left off speaking.</VERS>\r\n      <VERS vnumber=\"16\">When I had waited, (for they spake not, but stood still, and answered no more;)</VERS>\r\n      <VERS vnumber=\"17\">I said, I will answer also my part, I also will shew mine opinion.</VERS>\r\n      <VERS vnumber=\"18\">For I am full of matter, the spirit within me constraineth me.</VERS>\r\n      <VERS vnumber=\"19\">Behold, my belly is as wine which hath no vent; it is ready to burst like new bottles.</VERS>\r\n      <VERS vnumber=\"20\">I will speak, that I may be refreshed: I will open my lips and answer.</VERS>\r\n      <VERS vnumber=\"21\">Let me not, I pray you, accept any man's person, neither let me give flattering titles unto man.</VERS>\r\n      <VERS vnumber=\"22\">For I know not to give flattering titles; in so doing my maker would soon take me away.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"33\">\r\n      <VERS vnumber=\"1\">Wherefore, Job, I pray thee, hear my speeches, and hearken to all my words.</VERS>\r\n      <VERS vnumber=\"2\">Behold, now I have opened my mouth, my tongue hath spoken in my mouth.</VERS>\r\n      <VERS vnumber=\"3\">My words shall be of the uprightness of my heart: and my lips shall utter knowledge clearly.</VERS>\r\n      <VERS vnumber=\"4\">The Spirit of God hath made me, and the breath of the Almighty hath given me life.</VERS>\r\n      <VERS vnumber=\"5\">If thou canst answer me, set thy words in order before me, stand up.</VERS>\r\n      <VERS vnumber=\"6\">Behold, I am according to thy wish in God's stead: I also am formed out of the clay.</VERS>\r\n      <VERS vnumber=\"7\">Behold, my terror shall not make thee afraid, neither shall my hand be heavy upon thee.</VERS>\r\n      <VERS vnumber=\"8\">Surely thou hast spoken in mine hearing, and I have heard the voice of thy words, saying,</VERS>\r\n      <VERS vnumber=\"9\">I am clean without transgression, I am innocent; neither is there iniquity in me.</VERS>\r\n      <VERS vnumber=\"10\">Behold, he findeth occasions against me, he counteth me for his enemy,</VERS>\r\n      <VERS vnumber=\"11\">He putteth my feet in the stocks, he marketh all my paths.</VERS>\r\n      <VERS vnumber=\"12\">Behold, in this thou art not just: I will answer thee, that God is greater than man.</VERS>\r\n      <VERS vnumber=\"13\">Why dost thou strive against him? for he giveth not account of any of his matters.</VERS>\r\n      <VERS vnumber=\"14\">For God speaketh once, yea twice, yet man perceiveth it not.</VERS>\r\n      <VERS vnumber=\"15\">In a dream, in a vision of the night, when deep sleep falleth upon men, in slumberings upon the bed;</VERS>\r\n      <VERS vnumber=\"16\">Then he openeth the ears of men, and sealeth their instruction,</VERS>\r\n      <VERS vnumber=\"17\">That he may withdraw man from his purpose, and hide pride from man.</VERS>\r\n      <VERS vnumber=\"18\">He keepeth back his soul from the pit, and his life from perishing by the sword.</VERS>\r\n      <VERS vnumber=\"19\">He is chastened also with pain upon his bed, and the multitude of his bones with strong pain:</VERS>\r\n      <VERS vnumber=\"20\">So that his life abhorreth bread, and his soul dainty meat.</VERS>\r\n      <VERS vnumber=\"21\">His flesh is consumed away, that it cannot be seen; and his bones that were not seen stick out.</VERS>\r\n      <VERS vnumber=\"22\">Yea, his soul draweth near unto the grave, and his life to the destroyers.</VERS>\r\n      <VERS vnumber=\"23\">If there be a messenger with him, an interpreter, one among a thousand, to shew unto man his uprightness:</VERS>\r\n      <VERS vnumber=\"24\">Then he is gracious unto him, and saith, Deliver him from going down to the pit: I have found a ransom.</VERS>\r\n      <VERS vnumber=\"25\">His flesh shall be fresher than a child's: he shall return to the days of his youth:</VERS>\r\n      <VERS vnumber=\"26\">He 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.</VERS>\r\n      <VERS vnumber=\"27\">He looketh upon men, and if any say, I have sinned, and perverted that which was right, and it profited me not;</VERS>\r\n      <VERS vnumber=\"28\">He will deliver his soul from going into the pit, and his life shall see the light.</VERS>\r\n      <VERS vnumber=\"29\">Lo, all these things worketh God oftentimes with man,</VERS>\r\n      <VERS vnumber=\"30\">To bring back his soul from the pit, to be enlightened with the light of the living.</VERS>\r\n      <VERS vnumber=\"31\">Mark well, O Job, hearken unto me: hold thy peace, and I will speak.</VERS>\r\n      <VERS vnumber=\"32\">If thou hast any thing to say, answer me: speak, for I desire to justify thee.</VERS>\r\n      <VERS vnumber=\"33\">If not, hearken unto me: hold thy peace, and I shall teach thee wisdom.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"34\">\r\n      <VERS vnumber=\"1\">Furthermore Elihu answered and said,</VERS>\r\n      <VERS vnumber=\"2\">Hear my words, O ye wise men; and give ear unto me, ye that have knowledge.</VERS>\r\n      <VERS vnumber=\"3\">For the ear trieth words, as the mouth tasteth meat.</VERS>\r\n      <VERS vnumber=\"4\">Let us choose to us judgment: let us know among ourselves what is good.</VERS>\r\n      <VERS vnumber=\"5\">For Job hath said, I am righteous: and God hath taken away my judgment.</VERS>\r\n      <VERS vnumber=\"6\">Should I lie against my right? my wound is incurable without transgression.</VERS>\r\n      <VERS vnumber=\"7\">What man is like Job, who drinketh up scorning like water?</VERS>\r\n      <VERS vnumber=\"8\">Which goeth in company with the workers of iniquity, and walketh with wicked men.</VERS>\r\n      <VERS vnumber=\"9\">For he hath said, It profiteth a man nothing that he should delight himself with God.</VERS>\r\n      <VERS vnumber=\"10\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"11\">For the work of a man shall he render unto him, and cause every man to find according to his ways.</VERS>\r\n      <VERS vnumber=\"12\">Yea, surely God will not do wickedly, neither will the Almighty pervert judgment.</VERS>\r\n      <VERS vnumber=\"13\">Who hath given him a charge over the earth? or who hath disposed the whole world?</VERS>\r\n      <VERS vnumber=\"14\">If he set his heart upon man, if he gather unto himself his spirit and his breath;</VERS>\r\n      <VERS vnumber=\"15\">All flesh shall perish together, and man shall turn again unto dust.</VERS>\r\n      <VERS vnumber=\"16\">If now thou hast understanding, hear this: hearken to the voice of my words.</VERS>\r\n      <VERS vnumber=\"17\">Shall even he that hateth right govern? and wilt thou condemn him that is most just?</VERS>\r\n      <VERS vnumber=\"18\">Is it fit to say to a king, Thou art wicked? and to princes, Ye are ungodly?</VERS>\r\n      <VERS vnumber=\"19\">How 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.</VERS>\r\n      <VERS vnumber=\"20\">In 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.</VERS>\r\n      <VERS vnumber=\"21\">For his eyes are upon the ways of man, and he seeth all his goings.</VERS>\r\n      <VERS vnumber=\"22\">There is no darkness, nor shadow of death, where the workers of iniquity may hide themselves.</VERS>\r\n      <VERS vnumber=\"23\">For he will not lay upon man more than right; that he should enter into judgment with God.</VERS>\r\n      <VERS vnumber=\"24\">He shall break in pieces mighty men without number, and set others in their stead.</VERS>\r\n      <VERS vnumber=\"25\">Therefore he knoweth their works, and he overturneth them in the night, so that they are destroyed.</VERS>\r\n      <VERS vnumber=\"26\">He striketh them as wicked men in the open sight of others;</VERS>\r\n      <VERS vnumber=\"27\">Because they turned back from him, and would not consider any of his ways:</VERS>\r\n      <VERS vnumber=\"28\">So that they cause the cry of the poor to come unto him, and he heareth the cry of the afflicted.</VERS>\r\n      <VERS vnumber=\"29\">When 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:</VERS>\r\n      <VERS vnumber=\"30\">That the hypocrite reign not, lest the people be ensnared.</VERS>\r\n      <VERS vnumber=\"31\">Surely it is meet to be said unto God, I have borne chastisement, I will not offend any more:</VERS>\r\n      <VERS vnumber=\"32\">That which I see not teach thou me: if I have done iniquity, I will do no more.</VERS>\r\n      <VERS vnumber=\"33\">Should 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.</VERS>\r\n      <VERS vnumber=\"34\">Let men of understanding tell me, and let a wise man hearken unto me.</VERS>\r\n      <VERS vnumber=\"35\">Job hath spoken without knowledge, and his words were without wisdom.</VERS>\r\n      <VERS vnumber=\"36\">My desire is that Job may be tried unto the end because of his answers for wicked men.</VERS>\r\n      <VERS vnumber=\"37\">For he addeth rebellion unto his sin, he clappeth his hands among us, and multiplieth his words against God.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"35\">\r\n      <VERS vnumber=\"1\">Elihu spake moreover, and said,</VERS>\r\n      <VERS vnumber=\"2\">Thinkest thou this to be right, that thou saidst, My righteousness is more than God's?</VERS>\r\n      <VERS vnumber=\"3\">For thou saidst, What advantage will it be unto thee? and, What profit shall I have, if I be cleansed from my sin?</VERS>\r\n      <VERS vnumber=\"4\">I will answer thee, and thy companions with thee.</VERS>\r\n      <VERS vnumber=\"5\">Look unto the heavens, and see; and behold the clouds which are higher than thou.</VERS>\r\n      <VERS vnumber=\"6\">If thou sinnest, what doest thou against him? or if thy transgressions be multiplied, what doest thou unto him?</VERS>\r\n      <VERS vnumber=\"7\">If thou be righteous, what givest thou him? or what receiveth he of thine hand?</VERS>\r\n      <VERS vnumber=\"8\">Thy wickedness may hurt a man as thou art; and thy righteousness may profit the son of man.</VERS>\r\n      <VERS vnumber=\"9\">By reason of the multitude of oppressions they make the oppressed to cry: they cry out by reason of the arm of the mighty.</VERS>\r\n      <VERS vnumber=\"10\">But none saith, Where is God my maker, who giveth songs in the night;</VERS>\r\n      <VERS vnumber=\"11\">Who teacheth us more than the beasts of the earth, and maketh us wiser than the fowls of heaven?</VERS>\r\n      <VERS vnumber=\"12\">There they cry, but none giveth answer, because of the pride of evil men.</VERS>\r\n      <VERS vnumber=\"13\">Surely God will not hear vanity, neither will the Almighty regard it.</VERS>\r\n      <VERS vnumber=\"14\">Although thou sayest thou shalt not see him, yet judgment is before him; therefore trust thou in him.</VERS>\r\n      <VERS vnumber=\"15\">But now, because it is not so, he hath visited in his anger; yet he knoweth it not in great extremity:</VERS>\r\n      <VERS vnumber=\"16\">Therefore doth Job open his mouth in vain; he multiplieth words without knowledge.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"36\">\r\n      <VERS vnumber=\"1\">Elihu also proceeded, and said,</VERS>\r\n      <VERS vnumber=\"2\">Suffer me a little, and I will shew thee that I have yet to speak on God's behalf.</VERS>\r\n      <VERS vnumber=\"3\">I will fetch my knowledge from afar, and will ascribe righteousness to my Maker.</VERS>\r\n      <VERS vnumber=\"4\">For truly my words shall not be false: he that is perfect in knowledge is with thee.</VERS>\r\n      <VERS vnumber=\"5\">Behold, God is mighty, and despiseth not any: he is mighty in strength and wisdom.</VERS>\r\n      <VERS vnumber=\"6\">He preserveth not the life of the wicked: but giveth right to the poor.</VERS>\r\n      <VERS vnumber=\"7\">He 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.</VERS>\r\n      <VERS vnumber=\"8\">And if they be bound in fetters, and be holden in cords of affliction;</VERS>\r\n      <VERS vnumber=\"9\">Then he sheweth them their work, and their transgressions that they have exceeded.</VERS>\r\n      <VERS vnumber=\"10\">He openeth also their ear to discipline, and commandeth that they return from iniquity.</VERS>\r\n      <VERS vnumber=\"11\">If they obey and serve him, they shall spend their days in prosperity, and their years in pleasures.</VERS>\r\n      <VERS vnumber=\"12\">But if they obey not, they shall perish by the sword, and they shall die without knowledge.</VERS>\r\n      <VERS vnumber=\"13\">But the hypocrites in heart heap up wrath: they cry not when he bindeth them.</VERS>\r\n      <VERS vnumber=\"14\">They die in youth, and their life is among the unclean.</VERS>\r\n      <VERS vnumber=\"15\">He delivereth the poor in his affliction, and openeth their ears in oppression.</VERS>\r\n      <VERS vnumber=\"16\">Even 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.</VERS>\r\n      <VERS vnumber=\"17\">But thou hast fulfilled the judgment of the wicked: judgment and justice take hold on thee.</VERS>\r\n      <VERS vnumber=\"18\">Because there is wrath, beware lest he take thee away with his stroke: then a great ransom cannot deliver thee.</VERS>\r\n      <VERS vnumber=\"19\">Will he esteem thy riches? no, not gold, nor all the forces of strength.</VERS>\r\n      <VERS vnumber=\"20\">Desire not the night, when people are cut off in their place.</VERS>\r\n      <VERS vnumber=\"21\">Take heed, regard not iniquity: for this hast thou chosen rather than affliction.</VERS>\r\n      <VERS vnumber=\"22\">Behold, God exalteth by his power: who teacheth like him?</VERS>\r\n      <VERS vnumber=\"23\">Who hath enjoined him his way? or who can say, Thou hast wrought iniquity?</VERS>\r\n      <VERS vnumber=\"24\">Remember that thou magnify his work, which men behold.</VERS>\r\n      <VERS vnumber=\"25\">Every man may see it; man may behold it afar off.</VERS>\r\n      <VERS vnumber=\"26\">Behold, God is great, and we know him not, neither can the number of his years be searched out.</VERS>\r\n      <VERS vnumber=\"27\">For he maketh small the drops of water: they pour down rain according to the vapour thereof:</VERS>\r\n      <VERS vnumber=\"28\">Which the clouds do drop and distil upon man abundantly.</VERS>\r\n      <VERS vnumber=\"29\">Also can any understand the spreadings of the clouds, or the noise of his tabernacle?</VERS>\r\n      <VERS vnumber=\"30\">Behold, he spreadeth his light upon it, and covereth the bottom of the sea.</VERS>\r\n      <VERS vnumber=\"31\">For by them judgeth he the people; he giveth meat in abundance.</VERS>\r\n      <VERS vnumber=\"32\">With clouds he covereth the light; and commandeth it not to shine by the cloud that cometh betwixt.</VERS>\r\n      <VERS vnumber=\"33\">The noise thereof sheweth concerning it, the cattle also concerning the vapour.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"37\">\r\n      <VERS vnumber=\"1\">At this also my heart trembleth, and is moved out of his place.</VERS>\r\n      <VERS vnumber=\"2\">Hear attentively the noise of his voice, and the sound that goeth out of his mouth.</VERS>\r\n      <VERS vnumber=\"3\">He directeth it under the whole heaven, and his lightning unto the ends of the earth.</VERS>\r\n      <VERS vnumber=\"4\">After it a voice roareth: he thundereth with the voice of his excellency; and he will not stay them when his voice is heard.</VERS>\r\n      <VERS vnumber=\"5\">God thundereth marvellously with his voice; great things doeth he, which we cannot comprehend.</VERS>\r\n      <VERS vnumber=\"6\">For he saith to the snow, Be thou on the earth; likewise to the small rain, and to the great rain of his strength.</VERS>\r\n      <VERS vnumber=\"7\">He sealeth up the hand of every man; that all men may know his work.</VERS>\r\n      <VERS vnumber=\"8\">Then the beasts go into dens, and remain in their places.</VERS>\r\n      <VERS vnumber=\"9\">Out of the south cometh the whirlwind: and cold out of the north.</VERS>\r\n      <VERS vnumber=\"10\">By the breath of God frost is given: and the breadth of the waters is straitened.</VERS>\r\n      <VERS vnumber=\"11\">Also by watering he wearieth the thick cloud: he scattereth his bright cloud:</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">He causeth it to come, whether for correction, or for his land, or for mercy.</VERS>\r\n      <VERS vnumber=\"14\">Hearken unto this, O Job: stand still, and consider the wondrous works of God.</VERS>\r\n      <VERS vnumber=\"15\">Dost thou know when God disposed them, and caused the light of his cloud to shine?</VERS>\r\n      <VERS vnumber=\"16\">Dost thou know the balancings of the clouds, the wondrous works of him which is perfect in knowledge?</VERS>\r\n      <VERS vnumber=\"17\">How thy garments are warm, when he quieteth the earth by the south wind?</VERS>\r\n      <VERS vnumber=\"18\">Hast thou with him spread out the sky, which is strong, and as a molten looking glass?</VERS>\r\n      <VERS vnumber=\"19\">Teach us what we shall say unto him; for we cannot order our speech by reason of darkness.</VERS>\r\n      <VERS vnumber=\"20\">Shall it be told him that I speak? if a man speak, surely he shall be swallowed up.</VERS>\r\n      <VERS vnumber=\"21\">And now men see not the bright light which is in the clouds: but the wind passeth, and cleanseth them.</VERS>\r\n      <VERS vnumber=\"22\">Fair weather cometh out of the north: with God is terrible majesty.</VERS>\r\n      <VERS vnumber=\"23\">Touching the Almighty, we cannot find him out: he is excellent in power, and in judgment, and in plenty of justice: he will not afflict.</VERS>\r\n      <VERS vnumber=\"24\">Men do therefore fear him: he respecteth not any that are wise of heart.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"38\">\r\n      <VERS vnumber=\"1\">Then the LORD answered Job out of the whirlwind, and said,</VERS>\r\n      <VERS vnumber=\"2\">Who is this that darkeneth counsel by words without knowledge?</VERS>\r\n      <VERS vnumber=\"3\">Gird up now thy loins like a man; for I will demand of thee, and answer thou me.</VERS>\r\n      <VERS vnumber=\"4\">Where wast thou when I laid the foundations of the earth? declare, if thou hast understanding.</VERS>\r\n      <VERS vnumber=\"5\">Who hath laid the measures thereof, if thou knowest? or who hath stretched the line upon it?</VERS>\r\n      <VERS vnumber=\"6\">Whereupon are the foundations thereof fastened? or who laid the corner stone thereof;</VERS>\r\n      <VERS vnumber=\"7\">When the morning stars sang together, and all the sons of God shouted for joy?</VERS>\r\n      <VERS vnumber=\"8\">Or who shut up the sea with doors, when it brake forth, as if it had issued out of the womb?</VERS>\r\n      <VERS vnumber=\"9\">When I made the cloud the garment thereof, and thick darkness a swaddlingband for it,</VERS>\r\n      <VERS vnumber=\"10\">And brake up for it my decreed place, and set bars and doors,</VERS>\r\n      <VERS vnumber=\"11\">And said, Hitherto shalt thou come, but no further: and here shall thy proud waves be stayed?</VERS>\r\n      <VERS vnumber=\"12\">Hast thou commanded the morning since thy days; and caused the dayspring to know his place;</VERS>\r\n      <VERS vnumber=\"13\">That it might take hold of the ends of the earth, that the wicked might be shaken out of it?</VERS>\r\n      <VERS vnumber=\"14\">It is turned as clay to the seal; and they stand as a garment.</VERS>\r\n      <VERS vnumber=\"15\">And from the wicked their light is withholden, and the high arm shall be broken.</VERS>\r\n      <VERS vnumber=\"16\">Hast thou entered into the springs of the sea? or hast thou walked in the search of the depth?</VERS>\r\n      <VERS vnumber=\"17\">Have the gates of death been opened unto thee? or hast thou seen the doors of the shadow of death?</VERS>\r\n      <VERS vnumber=\"18\">Hast thou perceived the breadth of the earth? declare if thou knowest it all.</VERS>\r\n      <VERS vnumber=\"19\">Where is the way where light dwelleth? and as for darkness, where is the place thereof,</VERS>\r\n      <VERS vnumber=\"20\">That thou shouldest take it to the bound thereof, and that thou shouldest know the paths to the house thereof?</VERS>\r\n      <VERS vnumber=\"21\">Knowest thou it, because thou wast then born? or because the number of thy days is great?</VERS>\r\n      <VERS vnumber=\"22\">Hast thou entered into the treasures of the snow? or hast thou seen the treasures of the hail,</VERS>\r\n      <VERS vnumber=\"23\">Which I have reserved against the time of trouble, against the day of battle and war?</VERS>\r\n      <VERS vnumber=\"24\">By what way is the light parted, which scattereth the east wind upon the earth?</VERS>\r\n      <VERS vnumber=\"25\">Who hath divided a watercourse for the overflowing of waters, or a way for the lightning of thunder;</VERS>\r\n      <VERS vnumber=\"26\">To cause it to rain on the earth, where no man is; on the wilderness, wherein there is no man;</VERS>\r\n      <VERS vnumber=\"27\">To satisfy the desolate and waste ground; and to cause the bud of the tender herb to spring forth?</VERS>\r\n      <VERS vnumber=\"28\">Hath the rain a father? or who hath begotten the drops of dew?</VERS>\r\n      <VERS vnumber=\"29\">Out of whose womb came the ice? and the hoary frost of heaven, who hath gendered it?</VERS>\r\n      <VERS vnumber=\"30\">The waters are hid as with a stone, and the face of the deep is frozen.</VERS>\r\n      <VERS vnumber=\"31\">Canst thou bind the sweet influences of Pleiades, or loose the bands of Orion?</VERS>\r\n      <VERS vnumber=\"32\">Canst thou bring forth Mazzaroth in his season? or canst thou guide Arcturus with his sons?</VERS>\r\n      <VERS vnumber=\"33\">Knowest thou the ordinances of heaven? canst thou set the dominion thereof in the earth?</VERS>\r\n      <VERS vnumber=\"34\">Canst thou lift up thy voice to the clouds, that abundance of waters may cover thee?</VERS>\r\n      <VERS vnumber=\"35\">Canst thou send lightnings, that they may go, and say unto thee, Here we are?</VERS>\r\n      <VERS vnumber=\"36\">Who hath put wisdom in the inward parts? or who hath given understanding to the heart?</VERS>\r\n      <VERS vnumber=\"37\">Who can number the clouds in wisdom? or who can stay the bottles of heaven,</VERS>\r\n      <VERS vnumber=\"38\">When the dust groweth into hardness, and the clods cleave fast together?</VERS>\r\n      <VERS vnumber=\"39\">Wilt thou hunt the prey for the lion? or fill the appetite of the young lions,</VERS>\r\n      <VERS vnumber=\"40\">When they couch in their dens, and abide in the covert to lie in wait?</VERS>\r\n      <VERS vnumber=\"41\">Who provideth for the raven his food? when his young ones cry unto God, they wander for lack of meat.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"39\">\r\n      <VERS vnumber=\"1\">Knowest thou the time when the wild goats of the rock bring forth? or canst thou mark when the hinds do calve?</VERS>\r\n      <VERS vnumber=\"2\">Canst thou number the months that they fulfil? or knowest thou the time when they bring forth?</VERS>\r\n      <VERS vnumber=\"3\">They bow themselves, they bring forth their young ones, they cast out their sorrows.</VERS>\r\n      <VERS vnumber=\"4\">Their young ones are in good liking, they grow up with corn; they go forth, and return not unto them.</VERS>\r\n      <VERS vnumber=\"5\">Who hath sent out the wild ass free? or who hath loosed the bands of the wild ass?</VERS>\r\n      <VERS vnumber=\"6\">Whose house I have made the wilderness, and the barren land his dwellings.</VERS>\r\n      <VERS vnumber=\"7\">He scorneth the multitude of the city, neither regardeth he the crying of the driver.</VERS>\r\n      <VERS vnumber=\"8\">The range of the mountains is his pasture, and he searcheth after every green thing.</VERS>\r\n      <VERS vnumber=\"9\">Will the unicorn be willing to serve thee, or abide by thy crib?</VERS>\r\n      <VERS vnumber=\"10\">Canst thou bind the unicorn with his band in the furrow? or will he harrow the valleys after thee?</VERS>\r\n      <VERS vnumber=\"11\">Wilt thou trust him, because his strength is great? or wilt thou leave thy labour to him?</VERS>\r\n      <VERS vnumber=\"12\">Wilt thou believe him, that he will bring home thy seed, and gather it into thy barn?</VERS>\r\n      <VERS vnumber=\"13\">Gavest thou the goodly wings unto the peacocks? or wings and feathers unto the ostrich?</VERS>\r\n      <VERS vnumber=\"14\">Which leaveth her eggs in the earth, and warmeth them in dust,</VERS>\r\n      <VERS vnumber=\"15\">And forgetteth that the foot may crush them, or that the wild beast may break them.</VERS>\r\n      <VERS vnumber=\"16\">She is hardened against her young ones, as though they were not hers: her labour is in vain without fear;</VERS>\r\n      <VERS vnumber=\"17\">Because God hath deprived her of wisdom, neither hath he imparted to her understanding.</VERS>\r\n      <VERS vnumber=\"18\">What time she lifteth up herself on high, she scorneth the horse and his rider.</VERS>\r\n      <VERS vnumber=\"19\">Hast thou given the horse strength? hast thou clothed his neck with thunder?</VERS>\r\n      <VERS vnumber=\"20\">Canst thou make him afraid as a grasshopper? the glory of his nostrils is terrible.</VERS>\r\n      <VERS vnumber=\"21\">He paweth in the valley, and rejoiceth in his strength: he goeth on to meet the armed men.</VERS>\r\n      <VERS vnumber=\"22\">He mocketh at fear, and is not affrighted; neither turneth he back from the sword.</VERS>\r\n      <VERS vnumber=\"23\">The quiver rattleth against him, the glittering spear and the shield.</VERS>\r\n      <VERS vnumber=\"24\">He swalloweth the ground with fierceness and rage: neither believeth he that it is the sound of the trumpet.</VERS>\r\n      <VERS vnumber=\"25\">He saith among the trumpets, Ha, ha; and he smelleth the battle afar off, the thunder of the captains, and the shouting.</VERS>\r\n      <VERS vnumber=\"26\">Doth the hawk fly by thy wisdom, and stretch her wings toward the south?</VERS>\r\n      <VERS vnumber=\"27\">Doth the eagle mount up at thy command, and make her nest on high?</VERS>\r\n      <VERS vnumber=\"28\">She dwelleth and abideth on the rock, upon the crag of the rock, and the strong place.</VERS>\r\n      <VERS vnumber=\"29\">From thence she seeketh the prey, and her eyes behold afar off.</VERS>\r\n      <VERS vnumber=\"30\">Her young ones also suck up blood: and where the slain are, there is she.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"40\">\r\n      <VERS vnumber=\"1\">Moreover the LORD answered Job, and said,</VERS>\r\n      <VERS vnumber=\"2\">Shall he that contendeth with the Almighty instruct him? he that reproveth God, let him answer it.</VERS>\r\n      <VERS vnumber=\"3\">Then Job answered the LORD, and said,</VERS>\r\n      <VERS vnumber=\"4\">Behold, I am vile; what shall I answer thee? I will lay mine hand upon my mouth.</VERS>\r\n      <VERS vnumber=\"5\">Once have I spoken; but I will not answer: yea, twice; but I will proceed no further.</VERS>\r\n      <VERS vnumber=\"6\">Then answered the LORD unto Job out of the whirlwind, and said,</VERS>\r\n      <VERS vnumber=\"7\">Gird up thy loins now like a man: I will demand of thee, and declare thou unto me.</VERS>\r\n      <VERS vnumber=\"8\">Wilt thou also disannul my judgment? wilt thou condemn me, that thou mayest be righteous?</VERS>\r\n      <VERS vnumber=\"9\">Hast thou an arm like God? or canst thou thunder with a voice like him?</VERS>\r\n      <VERS vnumber=\"10\">Deck thyself now with majesty and excellency; and array thyself with glory and beauty.</VERS>\r\n      <VERS vnumber=\"11\">Cast abroad the rage of thy wrath: and behold every one that is proud, and abase him.</VERS>\r\n      <VERS vnumber=\"12\">Look on every one that is proud, and bring him low; and tread down the wicked in their place.</VERS>\r\n      <VERS vnumber=\"13\">Hide them in the dust together; and bind their faces in secret.</VERS>\r\n      <VERS vnumber=\"14\">Then will I also confess unto thee that thine own right hand can save thee.</VERS>\r\n      <VERS vnumber=\"15\">Behold now behemoth, which I made with thee; he eateth grass as an ox.</VERS>\r\n      <VERS vnumber=\"16\">Lo now, his strength is in his loins, and his force is in the navel of his belly.</VERS>\r\n      <VERS vnumber=\"17\">He moveth his tail like a cedar: the sinews of his stones are wrapped together.</VERS>\r\n      <VERS vnumber=\"18\">His bones are as strong pieces of brass; his bones are like bars of iron.</VERS>\r\n      <VERS vnumber=\"19\">He is the chief of the ways of God: he that made him can make his sword to approach unto him.</VERS>\r\n      <VERS vnumber=\"20\">Surely the mountains bring him forth food, where all the beasts of the field play.</VERS>\r\n      <VERS vnumber=\"21\">He lieth under the shady trees, in the covert of the reed, and fens.</VERS>\r\n      <VERS vnumber=\"22\">The shady trees cover him with their shadow; the willows of the brook compass him about.</VERS>\r\n      <VERS vnumber=\"23\">Behold, he drinketh up a river, and hasteth not: he trusteth that he can draw up Jordan into his mouth.</VERS>\r\n      <VERS vnumber=\"24\">He taketh it with his eyes: his nose pierceth through snares.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"41\">\r\n      <VERS vnumber=\"1\">Canst thou draw out leviathan with an hook? or his tongue with a cord which thou lettest down?</VERS>\r\n      <VERS vnumber=\"2\">Canst thou put an hook into his nose? or bore his jaw through with a thorn?</VERS>\r\n      <VERS vnumber=\"3\">Will he make many supplications unto thee? will he speak soft words unto thee?</VERS>\r\n      <VERS vnumber=\"4\">Will he make a covenant with thee? wilt thou take him for a servant for ever?</VERS>\r\n      <VERS vnumber=\"5\">Wilt thou play with him as with a bird? or wilt thou bind him for thy maidens?</VERS>\r\n      <VERS vnumber=\"6\">Shall the companions make a banquet of him? shall they part him among the merchants?</VERS>\r\n      <VERS vnumber=\"7\">Canst thou fill his skin with barbed irons? or his head with fish spears?</VERS>\r\n      <VERS vnumber=\"8\">Lay thine hand upon him, remember the battle, do no more.</VERS>\r\n      <VERS vnumber=\"9\">Behold, the hope of him is in vain: shall not one be cast down even at the sight of him?</VERS>\r\n      <VERS vnumber=\"10\">None is so fierce that dare stir him up: who then is able to stand before me?</VERS>\r\n      <VERS vnumber=\"11\">Who hath prevented me, that I should repay him? whatsoever is under the whole heaven is mine.</VERS>\r\n      <VERS vnumber=\"12\">I will not conceal his parts, nor his power, nor his comely proportion.</VERS>\r\n      <VERS vnumber=\"13\">Who can discover the face of his garment? or who can come to him with his double bridle?</VERS>\r\n      <VERS vnumber=\"14\">Who can open the doors of his face? his teeth are terrible round about.</VERS>\r\n      <VERS vnumber=\"15\">His scales are his pride, shut up together as with a close seal.</VERS>\r\n      <VERS vnumber=\"16\">One is so near to another, that no air can come between them.</VERS>\r\n      <VERS vnumber=\"17\">They are joined one to another, they stick together, that they cannot be sundered.</VERS>\r\n      <VERS vnumber=\"18\">By his neesings a light doth shine, and his eyes are like the eyelids of the morning.</VERS>\r\n      <VERS vnumber=\"19\">Out of his mouth go burning lamps, and sparks of fire leap out.</VERS>\r\n      <VERS vnumber=\"20\">Out of his nostrils goeth smoke, as out of a seething pot or caldron.</VERS>\r\n      <VERS vnumber=\"21\">His breath kindleth coals, and a flame goeth out of his mouth.</VERS>\r\n      <VERS vnumber=\"22\">In his neck remaineth strength, and sorrow is turned into joy before him.</VERS>\r\n      <VERS vnumber=\"23\">The flakes of his flesh are joined together: they are firm in themselves; they cannot be moved.</VERS>\r\n      <VERS vnumber=\"24\">His heart is as firm as a stone; yea, as hard as a piece of the nether millstone.</VERS>\r\n      <VERS vnumber=\"25\">When he raiseth up himself, the mighty are afraid: by reason of breakings they purify themselves.</VERS>\r\n      <VERS vnumber=\"26\">The sword of him that layeth at him cannot hold: the spear, the dart, nor the habergeon.</VERS>\r\n      <VERS vnumber=\"27\">He esteemeth iron as straw, and brass as rotten wood.</VERS>\r\n      <VERS vnumber=\"28\">The arrow cannot make him flee: slingstones are turned with him into stubble.</VERS>\r\n      <VERS vnumber=\"29\">Darts are counted as stubble: he laugheth at the shaking of a spear.</VERS>\r\n      <VERS vnumber=\"30\">Sharp stones are under him: he spreadeth sharp pointed things upon the mire.</VERS>\r\n      <VERS vnumber=\"31\">He maketh the deep to boil like a pot: he maketh the sea like a pot of ointment.</VERS>\r\n      <VERS vnumber=\"32\">He maketh a path to shine after him; one would think the deep to be hoary.</VERS>\r\n      <VERS vnumber=\"33\">Upon earth there is not his like, who is made without fear.</VERS>\r\n      <VERS vnumber=\"34\">He beholdeth all high things: he is a king over all the children of pride.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"42\">\r\n      <VERS vnumber=\"1\">Then Job answered the LORD, and said,</VERS>\r\n      <VERS vnumber=\"2\">I know that thou canst do every thing, and that no thought can be withholden from thee.</VERS>\r\n      <VERS vnumber=\"3\">Who is he that hideth counsel without knowledge? therefore have I uttered that I understood not; things too wonderful for me, which I knew not.</VERS>\r\n      <VERS vnumber=\"4\">Hear, I beseech thee, and I will speak: I will demand of thee, and declare thou unto me.</VERS>\r\n      <VERS vnumber=\"5\">I have heard of thee by the hearing of the ear: but now mine eye seeth thee.</VERS>\r\n      <VERS vnumber=\"6\">Wherefore I abhor myself, and repent in dust and ashes.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"9\">So 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">Then 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.</VERS>\r\n      <VERS vnumber=\"12\">So 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.</VERS>\r\n      <VERS vnumber=\"13\">He had also seven sons and three daughters.</VERS>\r\n      <VERS vnumber=\"14\">And he called the name of the first, Jemima; and the name of the second, Kezia; and the name of the third, Kerenhappuch.</VERS>\r\n      <VERS vnumber=\"15\">And in all the land were no women found so fair as the daughters of Job: and their father gave them inheritance among their brethren.</VERS>\r\n      <VERS vnumber=\"16\">After this lived Job an hundred and forty years, and saw his sons, and his sons' sons, even four generations.</VERS>\r\n      <VERS vnumber=\"17\">So Job died, being old and full of days.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"19\" bname=\"Psalm\" bsname=\"Ps\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">Blessed 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.</VERS>\r\n      <VERS vnumber=\"2\">But his delight is in the law of the LORD; and in his law doth he meditate day and night.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">The ungodly are not so: but are like the chaff which the wind driveth away.</VERS>\r\n      <VERS vnumber=\"5\">Therefore the ungodly shall not stand in the judgment, nor sinners in the congregation of the righteous.</VERS>\r\n      <VERS vnumber=\"6\">For the LORD knoweth the way of the righteous: but the way of the ungodly shall perish.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">Why do the heathen rage, and the people imagine a vain thing?</VERS>\r\n      <VERS vnumber=\"2\">The kings of the earth set themselves, and the rulers take counsel together, against the LORD, and against his anointed, saying,</VERS>\r\n      <VERS vnumber=\"3\">Let us break their bands asunder, and cast away their cords from us.</VERS>\r\n      <VERS vnumber=\"4\">He that sitteth in the heavens shall laugh: the Lord shall have them in derision.</VERS>\r\n      <VERS vnumber=\"5\">Then shall he speak unto them in his wrath, and vex them in his sore displeasure.</VERS>\r\n      <VERS vnumber=\"6\">Yet have I set my king upon my holy hill of Zion.</VERS>\r\n      <VERS vnumber=\"7\">I will declare the decree: the LORD hath said unto me, Thou art my Son; this day have I begotten thee.</VERS>\r\n      <VERS vnumber=\"8\">Ask of me, and I shall give thee the heathen for thine inheritance, and the uttermost parts of the earth for thy possession.</VERS>\r\n      <VERS vnumber=\"9\">Thou shalt break them with a rod of iron; thou shalt dash them in pieces like a potter's vessel.</VERS>\r\n      <VERS vnumber=\"10\">Be wise now therefore, O ye kings: be instructed, ye judges of the earth.</VERS>\r\n      <VERS vnumber=\"11\">Serve the LORD with fear, and rejoice with trembling.</VERS>\r\n      <VERS vnumber=\"12\">Kiss 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <CAPTION vref=\"1\">A Psalm of David, when he fled from Absalom his son.</CAPTION>\r\n      <VERS vnumber=\"1\">LORD, how are they increased that trouble me! many are they that rise up against me.</VERS>\r\n      <VERS vnumber=\"2\">Many there be which say of my soul, There is no help for him in God. Selah.</VERS>\r\n      <VERS vnumber=\"3\">But thou, O LORD, art a shield for me; my glory, and the lifter up of mine head.</VERS>\r\n      <VERS vnumber=\"4\">I cried unto the LORD with my voice, and he heard me out of his holy hill. Selah.</VERS>\r\n      <VERS vnumber=\"5\">I laid me down and slept; I awaked; for the LORD sustained me.</VERS>\r\n      <VERS vnumber=\"6\">I will not be afraid of ten thousands of people, that have set themselves against me round about.</VERS>\r\n      <VERS vnumber=\"7\">Arise, 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.</VERS>\r\n      <VERS vnumber=\"8\">Salvation belongeth unto the LORD: thy blessing is upon thy people. Selah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <CAPTION vref=\"1\">To the chief Musician on Neginoth, A Psalm of David.</CAPTION>\r\n      <VERS vnumber=\"1\">Hear 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.</VERS>\r\n      <VERS vnumber=\"2\">O ye sons of men, how long will ye turn my glory into shame? how long will ye love vanity, and seek after leasing? Selah.</VERS>\r\n      <VERS vnumber=\"3\">But know that the LORD hath set apart him that is godly for himself: the LORD will hear when I call unto him.</VERS>\r\n      <VERS vnumber=\"4\">Stand in awe, and sin not: commune with your own heart upon your bed, and be still. Selah.</VERS>\r\n      <VERS vnumber=\"5\">Offer the sacrifices of righteousness, and put your trust in the LORD.</VERS>\r\n      <VERS vnumber=\"6\">There be many that say, Who will shew us any good? LORD, lift thou up the light of thy countenance upon us.</VERS>\r\n      <VERS vnumber=\"7\">Thou hast put gladness in my heart, more than in the time that their corn and their wine increased.</VERS>\r\n      <VERS vnumber=\"8\">I will both lay me down in peace, and sleep: for thou, LORD, only makest me dwell in safety.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <CAPTION vref=\"1\">To the chief Musician upon Nehiloth, A Psalm of David.</CAPTION>\r\n      <VERS vnumber=\"1\">Give ear to my words, O LORD, consider my meditation.</VERS>\r\n      <VERS vnumber=\"2\">Hearken unto the voice of my cry, my King, and my God: for unto thee will I pray.</VERS>\r\n      <VERS vnumber=\"3\">My voice shalt thou hear in the morning, O LORD; in the morning will I direct my prayer unto thee, and will look up.</VERS>\r\n      <VERS vnumber=\"4\">For thou art not a God that hath pleasure in wickedness: neither shall evil dwell with thee.</VERS>\r\n      <VERS vnumber=\"5\">The foolish shall not stand in thy sight: thou hatest all workers of iniquity.</VERS>\r\n      <VERS vnumber=\"6\">Thou shalt destroy them that speak leasing: the LORD will abhor the bloody and deceitful man.</VERS>\r\n      <VERS vnumber=\"7\">But 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.</VERS>\r\n      <VERS vnumber=\"8\">Lead me, O LORD, in thy righteousness because of mine enemies; make thy way straight before my face.</VERS>\r\n      <VERS vnumber=\"9\">For there is no faithfulness in their mouth; their inward part is very wickedness; their throat is an open sepulchre; they flatter with their tongue.</VERS>\r\n      <VERS vnumber=\"10\">Destroy 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.</VERS>\r\n      <VERS vnumber=\"11\">But 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.</VERS>\r\n      <VERS vnumber=\"12\">For thou, LORD, wilt bless the righteous; with favour wilt thou compass him as with a shield.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <CAPTION vref=\"1\">To the chief Musician on Neginoth upon Sheminith, A Psalm of David.</CAPTION>\r\n      <VERS vnumber=\"1\">O LORD, rebuke me not in thine anger, neither chasten me in thy hot displeasure.</VERS>\r\n      <VERS vnumber=\"2\">Have mercy upon me, O LORD; for I am weak: O LORD, heal me; for my bones are vexed.</VERS>\r\n      <VERS vnumber=\"3\">My soul is also sore vexed: but thou, O LORD, how long?</VERS>\r\n      <VERS vnumber=\"4\">Return, O LORD, deliver my soul: oh save me for thy mercies' sake.</VERS>\r\n      <VERS vnumber=\"5\">For in death there is no remembrance of thee: in the grave who shall give thee thanks?</VERS>\r\n      <VERS vnumber=\"6\">I am weary with my groaning; all the night make I my bed to swim; I water my couch with my tears.</VERS>\r\n      <VERS vnumber=\"7\">Mine eye is consumed because of grief; it waxeth old because of all mine enemies.</VERS>\r\n      <VERS vnumber=\"8\">Depart from me, all ye workers of iniquity; for the LORD hath heard the voice of my weeping.</VERS>\r\n      <VERS vnumber=\"9\">The LORD hath heard my supplication; the LORD will receive my prayer.</VERS>\r\n      <VERS vnumber=\"10\">Let all mine enemies be ashamed and sore vexed: let them return and be ashamed suddenly.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <CAPTION vref=\"1\">Shiggaion of David, which he sang unto the LORD, concerning the words of Cush the Benjamite.</CAPTION>\r\n      <VERS vnumber=\"1\">O LORD my God, in thee do I put my trust: save me from all them that persecute me, and deliver me:</VERS>\r\n      <VERS vnumber=\"2\">Lest he tear my soul like a lion, rending it in pieces, while there is none to deliver.</VERS>\r\n      <VERS vnumber=\"3\">O LORD my God, if I have done this; if there be iniquity in my hands;</VERS>\r\n      <VERS vnumber=\"4\">If I have rewarded evil unto him that was at peace with me; (yea, I have delivered him that without cause is mine enemy:)</VERS>\r\n      <VERS vnumber=\"5\">Let 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.</VERS>\r\n      <VERS vnumber=\"6\">Arise, 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.</VERS>\r\n      <VERS vnumber=\"7\">So shall the congregation of the people compass thee about: for their sakes therefore return thou on high.</VERS>\r\n      <VERS vnumber=\"8\">The LORD shall judge the people: judge me, O LORD, according to my righteousness, and according to mine integrity that is in me.</VERS>\r\n      <VERS vnumber=\"9\">Oh let the wickedness of the wicked come to an end; but establish the just: for the righteous God trieth the hearts and reins.</VERS>\r\n      <VERS vnumber=\"10\">My defence is of God, which saveth the upright in heart.</VERS>\r\n      <VERS vnumber=\"11\">God judgeth the righteous, and God is angry with the wicked every day.</VERS>\r\n      <VERS vnumber=\"12\">If he turn not, he will whet his sword; he hath bent his bow, and made it ready.</VERS>\r\n      <VERS vnumber=\"13\">He hath also prepared for him the instruments of death; he ordaineth his arrows against the persecutors.</VERS>\r\n      <VERS vnumber=\"14\">Behold, he travaileth with iniquity, and hath conceived mischief, and brought forth falsehood.</VERS>\r\n      <VERS vnumber=\"15\">He made a pit, and digged it, and is fallen into the ditch which he made.</VERS>\r\n      <VERS vnumber=\"16\">His mischief shall return upon his own head, and his violent dealing shall come down upon his own pate.</VERS>\r\n      <VERS vnumber=\"17\">I will praise the LORD according to his righteousness: and will sing praise to the name of the LORD most high.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <CAPTION vref=\"1\">To the chief Musician upon Gittith, A Psalm of David.</CAPTION>\r\n      <VERS vnumber=\"1\">O LORD our Lord, how excellent is thy name in all the earth! who hast set thy glory above the heavens.</VERS>\r\n      <VERS vnumber=\"2\">Out of the mouth of babes and sucklings hast thou ordained strength because of thine enemies, that thou mightest still the enemy and the avenger.</VERS>\r\n      <VERS vnumber=\"3\">When I consider thy heavens, the work of thy fingers, the moon and the stars, which thou hast ordained;</VERS>\r\n      <VERS vnumber=\"4\">What is man, that thou art mindful of him? and the son of man, that thou visitest him?</VERS>\r\n      <VERS vnumber=\"5\">For thou hast made him a little lower than the angels, and hast crowned him with glory and honour.</VERS>\r\n      <VERS vnumber=\"6\">Thou madest him to have dominion over the works of thy hands; thou hast put all things under his feet:</VERS>\r\n      <VERS vnumber=\"7\">All sheep and oxen, yea, and the beasts of the field;</VERS>\r\n      <VERS vnumber=\"8\">The fowl of the air, and the fish of the sea, and whatsoever passeth through the paths of the seas.</VERS>\r\n      <VERS vnumber=\"9\">O LORD our Lord, how excellent is thy name in all the earth!</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <CAPTION vref=\"1\">To the chief Musician upon Muthlabben, A Psalm of David. </CAPTION>\r\n      <VERS vnumber=\"1\">I will praise thee, O LORD, with my whole heart; I will shew forth all thy marvellous works.</VERS>\r\n      <VERS vnumber=\"2\">I will be glad and rejoice in thee: I will sing praise to thy name, O thou most High.</VERS>\r\n      <VERS vnumber=\"3\">When mine enemies are turned back, they shall fall and perish at thy presence.</VERS>\r\n      <VERS vnumber=\"4\">For thou hast maintained my right and my cause; thou satest in the throne judging right.</VERS>\r\n      <VERS vnumber=\"5\">Thou hast rebuked the heathen, thou hast destroyed the wicked, thou hast put out their name for ever and ever.</VERS>\r\n      <VERS vnumber=\"6\">O thou enemy, destructions are come to a perpetual end: and thou hast destroyed cities; their memorial is perished with them.</VERS>\r\n      <VERS vnumber=\"7\">But the LORD shall endure for ever: he hath prepared his throne for judgment.</VERS>\r\n      <VERS vnumber=\"8\">And he shall judge the world in righteousness, he shall minister judgment to the people in uprightness.</VERS>\r\n      <VERS vnumber=\"9\">The LORD also will be a refuge for the oppressed, a refuge in times of trouble.</VERS>\r\n      <VERS vnumber=\"10\">And they that know thy name will put their trust in thee: for thou, LORD, hast not forsaken them that seek thee.</VERS>\r\n      <VERS vnumber=\"11\">Sing praises to the LORD, which dwelleth in Zion: declare among the people his doings.</VERS>\r\n      <VERS vnumber=\"12\">When he maketh inquisition for blood, he remembereth them: he forgetteth not the cry of the humble.</VERS>\r\n      <VERS vnumber=\"13\">Have 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:</VERS>\r\n      <VERS vnumber=\"14\">That I may shew forth all thy praise in the gates of the daughter of Zion: I will rejoice in thy salvation.</VERS>\r\n      <VERS vnumber=\"15\">The heathen are sunk down in the pit that they made: in the net which they hid is their own foot taken.</VERS>\r\n      <VERS vnumber=\"16\">The LORD is known by the judgment which he executeth: the wicked is snared in the work of his own hands. Higgaion. Selah.</VERS>\r\n      <VERS vnumber=\"17\">The wicked shall be turned into hell, and all the nations that forget God.</VERS>\r\n      <VERS vnumber=\"18\">For the needy shall not alway be forgotten: the expectation of the poor shall not perish for ever.</VERS>\r\n      <VERS vnumber=\"19\">Arise, O LORD; let not man prevail: let the heathen be judged in thy sight.</VERS>\r\n      <VERS vnumber=\"20\">Put them in fear, O LORD: that the nations may know themselves to be but men. Selah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">Why standest thou afar off, O LORD? why hidest thou thyself in times of trouble?</VERS>\r\n      <VERS vnumber=\"2\">The wicked in his pride doth persecute the poor: let them be taken in the devices that they have imagined.</VERS>\r\n      <VERS vnumber=\"3\">For the wicked boasteth of his heart's desire, and blesseth the covetous, whom the LORD abhorreth.</VERS>\r\n      <VERS vnumber=\"4\">The wicked, through the pride of his countenance, will not seek after God: God is not in all his thoughts.</VERS>\r\n      <VERS vnumber=\"5\">His ways are always grievous; thy judgments are far above out of his sight: as for all his enemies, he puffeth at them.</VERS>\r\n      <VERS vnumber=\"6\">He hath said in his heart, I shall not be moved: for I shall never be in adversity.</VERS>\r\n      <VERS vnumber=\"7\">His mouth is full of cursing and deceit and fraud: under his tongue is mischief and vanity.</VERS>\r\n      <VERS vnumber=\"8\">He 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.</VERS>\r\n      <VERS vnumber=\"9\">He 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.</VERS>\r\n      <VERS vnumber=\"10\">He croucheth, and humbleth himself, that the poor may fall by his strong ones.</VERS>\r\n      <VERS vnumber=\"11\">He hath said in his heart, God hath forgotten: he hideth his face; he will never see it.</VERS>\r\n      <VERS vnumber=\"12\">Arise, O LORD; O God, lift up thine hand: forget not the humble.</VERS>\r\n      <VERS vnumber=\"13\">Wherefore doth the wicked contemn God? he hath said in his heart, Thou wilt not require it.</VERS>\r\n      <VERS vnumber=\"14\">Thou 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.</VERS>\r\n      <VERS vnumber=\"15\">Break thou the arm of the wicked and the evil man: seek out his wickedness till thou find none.</VERS>\r\n      <VERS vnumber=\"16\">The LORD is King for ever and ever: the heathen are perished out of his land.</VERS>\r\n      <VERS vnumber=\"17\">LORD, thou hast heard the desire of the humble: thou wilt prepare their heart, thou wilt cause thine ear to hear:</VERS>\r\n      <VERS vnumber=\"18\">To judge the fatherless and the oppressed, that the man of the earth may no more oppress.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <CAPTION vref=\"1\"> To the chief Musician, A Psalm of David.</CAPTION>\r\n      <VERS vnumber=\"1\">In the LORD put I my trust: how say ye to my soul, Flee as a bird to your mountain?</VERS>\r\n      <VERS vnumber=\"2\">For, lo, the wicked bend their bow, they make ready their arrow upon the string, that they may privily shoot at the upright in heart.</VERS>\r\n      <VERS vnumber=\"3\">If the foundations be destroyed, what can the righteous do?</VERS>\r\n      <VERS vnumber=\"4\">The LORD is in his holy temple, the LORD'S throne is in heaven: his eyes behold, his eyelids try, the children of men.</VERS>\r\n      <VERS vnumber=\"5\">The LORD trieth the righteous: but the wicked and him that loveth violence his soul hateth.</VERS>\r\n      <VERS vnumber=\"6\">Upon the wicked he shall rain snares, fire and brimstone, and an horrible tempest: this shall be the portion of their cup.</VERS>\r\n      <VERS vnumber=\"7\">For the righteous LORD loveth righteousness; his countenance doth behold the upright.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <CAPTION vref=\"1\">To the chief Musician upon Sheminith, A Psalm of David. </CAPTION>\r\n      <VERS vnumber=\"1\">Help, LORD; for the godly man ceaseth; for the faithful fail from among the children of men.</VERS>\r\n      <VERS vnumber=\"2\">They speak vanity every one with his neighbour: with flattering lips and with a double heart do they speak.</VERS>\r\n      <VERS vnumber=\"3\">The LORD shall cut off all flattering lips, and the tongue that speaketh proud things:</VERS>\r\n      <VERS vnumber=\"4\">Who have said, With our tongue will we prevail; our lips are our own: who is lord over us?</VERS>\r\n      <VERS vnumber=\"5\">For 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.</VERS>\r\n      <VERS vnumber=\"6\">The words of the LORD are pure words: as silver tried in a furnace of earth, purified seven times.</VERS>\r\n      <VERS vnumber=\"7\">Thou shalt keep them, O LORD, thou shalt preserve them from this generation for ever.</VERS>\r\n      <VERS vnumber=\"8\">The wicked walk on every side, when the vilest men are exalted.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <CAPTION vref=\"1\">To the chief Musician, A Psalm of David. </CAPTION>\r\n      <VERS vnumber=\"1\">How long wilt thou forget me, O LORD? for ever? how long wilt thou hide thy face from me?</VERS>\r\n      <VERS vnumber=\"2\">How long shall I take counsel in my soul, having sorrow in my heart daily? how long shall mine enemy be exalted over me?</VERS>\r\n      <VERS vnumber=\"3\">Consider and hear me, O LORD my God: lighten mine eyes, lest I sleep the sleep of death;</VERS>\r\n      <VERS vnumber=\"4\">Lest mine enemy say, I have prevailed against him; and those that trouble me rejoice when I am moved.</VERS>\r\n      <VERS vnumber=\"5\">But I have trusted in thy mercy; my heart shall rejoice in thy salvation.</VERS>\r\n      <VERS vnumber=\"6\">I will sing unto the LORD, because he hath dealt bountifully with me.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <CAPTION vref=\"1\">To the chief Musician, A Psalm of David. </CAPTION>\r\n      <VERS vnumber=\"1\">The fool hath said in his heart, There is no God. They are corrupt, they have done abominable works, there is none that doeth good.</VERS>\r\n      <VERS vnumber=\"2\">The LORD looked down from heaven upon the children of men, to see if there were any that did understand, and seek God.</VERS>\r\n      <VERS vnumber=\"3\">They are all gone aside, they are all together become filthy: there is none that doeth good, no, not one.</VERS>\r\n      <VERS vnumber=\"4\">Have all the workers of iniquity no knowledge? who eat up my people as they eat bread, and call not upon the LORD.</VERS>\r\n      <VERS vnumber=\"5\">There were they in great fear: for God is in the generation of the righteous.</VERS>\r\n      <VERS vnumber=\"6\">Ye have shamed the counsel of the poor, because the LORD is his refuge.</VERS>\r\n      <VERS vnumber=\"7\">Oh 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <CAPTION vref=\"1\">A Psalm of David.</CAPTION>\r\n      <VERS vnumber=\"1\">LORD, who shall abide in thy tabernacle? who shall dwell in thy holy hill?</VERS>\r\n      <VERS vnumber=\"2\">He that walketh uprightly, and worketh righteousness, and speaketh the truth in his heart.</VERS>\r\n      <VERS vnumber=\"3\">He that backbiteth not with his tongue, nor doeth evil to his neighbour, nor taketh up a reproach against his neighbour.</VERS>\r\n      <VERS vnumber=\"4\">In 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.</VERS>\r\n      <VERS vnumber=\"5\">He that putteth not out his money to usury, nor taketh reward against the innocent. He that doeth these things shall never be moved.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <CAPTION vref=\"1\">Michtam of David. </CAPTION>\r\n      <VERS vnumber=\"1\">Preserve me, O God: for in thee do I put my trust.</VERS>\r\n      <VERS vnumber=\"2\">O my soul, thou hast said unto the LORD, Thou art my Lord: my goodness extendeth not to thee;</VERS>\r\n      <VERS vnumber=\"3\">But to the saints that are in the earth, and to the excellent, in whom is all my delight.</VERS>\r\n      <VERS vnumber=\"4\">Their 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.</VERS>\r\n      <VERS vnumber=\"5\">The LORD is the portion of mine inheritance and of my cup: thou maintainest my lot.</VERS>\r\n      <VERS vnumber=\"6\">The lines are fallen unto me in pleasant places; yea, I have a goodly heritage.</VERS>\r\n      <VERS vnumber=\"7\">I will bless the LORD, who hath given me counsel: my reins also instruct me in the night seasons.</VERS>\r\n      <VERS vnumber=\"8\">I have set the LORD always before me: because he is at my right hand, I shall not be moved.</VERS>\r\n      <VERS vnumber=\"9\">Therefore my heart is glad, and my glory rejoiceth: my flesh also shall rest in hope.</VERS>\r\n      <VERS vnumber=\"10\">For thou wilt not leave my soul in hell; neither wilt thou suffer thine Holy One to see corruption.</VERS>\r\n      <VERS vnumber=\"11\">Thou wilt shew me the path of life: in thy presence is fulness of joy; at thy right hand there are pleasures for evermore.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"17\">\r\n      <CAPTION vref=\"1\">A Prayer of David.</CAPTION>\r\n      <VERS vnumber=\"1\">Hear the right, O LORD, attend unto my cry, give ear unto my prayer, that goeth not out of feigned lips.</VERS>\r\n      <VERS vnumber=\"2\">Let my sentence come forth from thy presence; let thine eyes behold the things that are equal.</VERS>\r\n      <VERS vnumber=\"3\">Thou 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.</VERS>\r\n      <VERS vnumber=\"4\">Concerning the works of men, by the word of thy lips I have kept me from the paths of the destroyer.</VERS>\r\n      <VERS vnumber=\"5\">Hold up my goings in thy paths, that my footsteps slip not.</VERS>\r\n      <VERS vnumber=\"6\">I have called upon thee, for thou wilt hear me, O God: incline thine ear unto me, and hear my speech.</VERS>\r\n      <VERS vnumber=\"7\">Shew 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.</VERS>\r\n      <VERS vnumber=\"8\">Keep me as the apple of the eye, hide me under the shadow of thy wings,</VERS>\r\n      <VERS vnumber=\"9\">From the wicked that oppress me, from my deadly enemies, who compass me about.</VERS>\r\n      <VERS vnumber=\"10\">They are inclosed in their own fat: with their mouth they speak proudly.</VERS>\r\n      <VERS vnumber=\"11\">They have now compassed us in our steps: they have set their eyes bowing down to the earth;</VERS>\r\n      <VERS vnumber=\"12\">Like as a lion that is greedy of his prey, and as it were a young lion lurking in secret places.</VERS>\r\n      <VERS vnumber=\"13\">Arise, O LORD, disappoint him, cast him down: deliver my soul from the wicked, which is thy sword:</VERS>\r\n      <VERS vnumber=\"14\">From 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.</VERS>\r\n      <VERS vnumber=\"15\">As for me, I will behold thy face in righteousness: I shall be satisfied, when I awake, with thy likeness.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"18\">\r\n      <CAPTION vref=\"1\">To the chief Musician, A Psalm of David, the servant of the LORD, who spake unto the LORD the words of this song in the day that the LORD delivered him from the hand of all his enemies, and from the hand of Saul: And he said, </CAPTION>\r\n      <VERS vnumber=\"1\">I will love thee, O LORD, my strength.</VERS>\r\n      <VERS vnumber=\"2\">The 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.</VERS>\r\n      <VERS vnumber=\"3\">I will call upon the LORD, who is worthy to be praised: so shall I be saved from mine enemies.</VERS>\r\n      <VERS vnumber=\"4\">The sorrows of death compassed me, and the floods of ungodly men made me afraid.</VERS>\r\n      <VERS vnumber=\"5\">The sorrows of hell compassed me about: the snares of death prevented me.</VERS>\r\n      <VERS vnumber=\"6\">In 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.</VERS>\r\n      <VERS vnumber=\"7\">Then the earth shook and trembled; the foundations also of the hills moved and were shaken, because he was wroth.</VERS>\r\n      <VERS vnumber=\"8\">There went up a smoke out of his nostrils, and fire out of his mouth devoured: coals were kindled by it.</VERS>\r\n      <VERS vnumber=\"9\">He bowed the heavens also, and came down: and darkness was under his feet.</VERS>\r\n      <VERS vnumber=\"10\">And he rode upon a cherub, and did fly: yea, he did fly upon the wings of the wind.</VERS>\r\n      <VERS vnumber=\"11\">He made darkness his secret place; his pavilion round about him were dark waters and thick clouds of the skies.</VERS>\r\n      <VERS vnumber=\"12\">At the brightness that was before him his thick clouds passed, hail stones and coals of fire.</VERS>\r\n      <VERS vnumber=\"13\">The LORD also thundered in the heavens, and the Highest gave his voice; hail stones and coals of fire.</VERS>\r\n      <VERS vnumber=\"14\">Yea, he sent out his arrows, and scattered them; and he shot out lightnings, and discomfited them.</VERS>\r\n      <VERS vnumber=\"15\">Then 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.</VERS>\r\n      <VERS vnumber=\"16\">He sent from above, he took me, he drew me out of many waters.</VERS>\r\n      <VERS vnumber=\"17\">He delivered me from my strong enemy, and from them which hated me: for they were too strong for me.</VERS>\r\n      <VERS vnumber=\"18\">They prevented me in the day of my calamity: but the LORD was my stay.</VERS>\r\n      <VERS vnumber=\"19\">He brought me forth also into a large place; he delivered me, because he delighted in me.</VERS>\r\n      <VERS vnumber=\"20\">The LORD rewarded me according to my righteousness; according to the cleanness of my hands hath he recompensed me.</VERS>\r\n      <VERS vnumber=\"21\">For I have kept the ways of the LORD, and have not wickedly departed from my God.</VERS>\r\n      <VERS vnumber=\"22\">For all his judgments were before me, and I did not put away his statutes from me.</VERS>\r\n      <VERS vnumber=\"23\">I was also upright before him, and I kept myself from mine iniquity.</VERS>\r\n      <VERS vnumber=\"24\">Therefore hath the LORD recompensed me according to my righteousness, according to the cleanness of my hands in his eyesight.</VERS>\r\n      <VERS vnumber=\"25\">With the merciful thou wilt shew thyself merciful; with an upright man thou wilt shew thyself upright;</VERS>\r\n      <VERS vnumber=\"26\">With the pure thou wilt shew thyself pure; and with the froward thou wilt shew thyself froward.</VERS>\r\n      <VERS vnumber=\"27\">For thou wilt save the afflicted people; but wilt bring down high looks.</VERS>\r\n      <VERS vnumber=\"28\">For thou wilt light my candle: the LORD my God will enlighten my darkness.</VERS>\r\n      <VERS vnumber=\"29\">For by thee I have run through a troop; and by my God have I leaped over a wall.</VERS>\r\n      <VERS vnumber=\"30\">As for God, his way is perfect: the word of the LORD is tried: he is a buckler to all those that trust in him.</VERS>\r\n      <VERS vnumber=\"31\">For who is God save the LORD? or who is a rock save our God?</VERS>\r\n      <VERS vnumber=\"32\">It is God that girdeth me with strength, and maketh my way perfect.</VERS>\r\n      <VERS vnumber=\"33\">He maketh my feet like hinds' feet, and setteth me upon my high places.</VERS>\r\n      <VERS vnumber=\"34\">He teacheth my hands to war, so that a bow of steel is broken by mine arms.</VERS>\r\n      <VERS vnumber=\"35\">Thou hast also given me the shield of thy salvation: and thy right hand hath holden me up, and thy gentleness hath made me great.</VERS>\r\n      <VERS vnumber=\"36\">Thou hast enlarged my steps under me, that my feet did not slip.</VERS>\r\n      <VERS vnumber=\"37\">I have pursued mine enemies, and overtaken them: neither did I turn again till they were consumed.</VERS>\r\n      <VERS vnumber=\"38\">I have wounded them that they were not able to rise: they are fallen under my feet.</VERS>\r\n      <VERS vnumber=\"39\">For thou hast girded me with strength unto the battle: thou hast subdued under me those that rose up against me.</VERS>\r\n      <VERS vnumber=\"40\">Thou hast also given me the necks of mine enemies; that I might destroy them that hate me.</VERS>\r\n      <VERS vnumber=\"41\">They cried, but there was none to save them: even unto the LORD, but he answered them not.</VERS>\r\n      <VERS vnumber=\"42\">Then did I beat them small as the dust before the wind: I did cast them out as the dirt in the streets.</VERS>\r\n      <VERS vnumber=\"43\">Thou 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.</VERS>\r\n      <VERS vnumber=\"44\">As soon as they hear of me, they shall obey me: the strangers shall submit themselves unto me.</VERS>\r\n      <VERS vnumber=\"45\">The strangers shall fade away, and be afraid out of their close places.</VERS>\r\n      <VERS vnumber=\"46\">The LORD liveth; and blessed be my rock; and let the God of my salvation be exalted.</VERS>\r\n      <VERS vnumber=\"47\">It is God that avengeth me, and subdueth the people under me.</VERS>\r\n      <VERS vnumber=\"48\">He 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.</VERS>\r\n      <VERS vnumber=\"49\">Therefore will I give thanks unto thee, O LORD, among the heathen, and sing praises unto thy name.</VERS>\r\n      <VERS vnumber=\"50\">Great deliverance giveth he to his king; and sheweth mercy to his anointed, to David, and to his seed for evermore.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"19\">\r\n      <CAPTION vref=\"1\">To the chief Musician, A Psalm of David. </CAPTION>\r\n      <VERS vnumber=\"1\">The heavens declare the glory of God; and the firmament sheweth his handywork.</VERS>\r\n      <VERS vnumber=\"2\">Day unto day uttereth speech, and night unto night sheweth knowledge.</VERS>\r\n      <VERS vnumber=\"3\">There is no speech nor language, where their voice is not heard.</VERS>\r\n      <VERS vnumber=\"4\">Their 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,</VERS>\r\n      <VERS vnumber=\"5\">Which is as a bridegroom coming out of his chamber, and rejoiceth as a strong man to run a race.</VERS>\r\n      <VERS vnumber=\"6\">His 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.</VERS>\r\n      <VERS vnumber=\"7\">The law of the LORD is perfect, converting the soul: the testimony of the LORD is sure, making wise the simple.</VERS>\r\n      <VERS vnumber=\"8\">The statutes of the LORD are right, rejoicing the heart: the commandment of the LORD is pure, enlightening the eyes.</VERS>\r\n      <VERS vnumber=\"9\">The fear of the LORD is clean, enduring for ever: the judgments of the LORD are true and righteous altogether.</VERS>\r\n      <VERS vnumber=\"10\">More to be desired are they than gold, yea, than much fine gold: sweeter also than honey and the honeycomb.</VERS>\r\n      <VERS vnumber=\"11\">Moreover by them is thy servant warned: and in keeping of them there is great reward.</VERS>\r\n      <VERS vnumber=\"12\">Who can understand his errors? cleanse thou me from secret faults.</VERS>\r\n      <VERS vnumber=\"13\">Keep 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.</VERS>\r\n      <VERS vnumber=\"14\">Let the words of my mouth, and the meditation of my heart, be acceptable in thy sight, O LORD, my strength, and my redeemer.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"20\">\r\n      <CAPTION vref=\"1\">To the chief Musician, A Psalm of David. </CAPTION>\r\n      <VERS vnumber=\"1\">The LORD hear thee in the day of trouble; the name of the God of Jacob defend thee;</VERS>\r\n      <VERS vnumber=\"2\">Send thee help from the sanctuary, and strengthen thee out of Zion;</VERS>\r\n      <VERS vnumber=\"3\">Remember all thy offerings, and accept thy burnt sacrifice; Selah.</VERS>\r\n      <VERS vnumber=\"4\">Grant thee according to thine own heart, and fulfil all thy counsel.</VERS>\r\n      <VERS vnumber=\"5\">We will rejoice in thy salvation, and in the name of our God we will set up our banners: the LORD fulfil all thy petitions.</VERS>\r\n      <VERS vnumber=\"6\">Now know I that the LORD saveth his anointed; he will hear him from his holy heaven with the saving strength of his right hand.</VERS>\r\n      <VERS vnumber=\"7\">Some trust in chariots, and some in horses: but we will remember the name of the LORD our God.</VERS>\r\n      <VERS vnumber=\"8\">They are brought down and fallen: but we are risen, and stand upright.</VERS>\r\n      <VERS vnumber=\"9\">Save, LORD: let the king hear us when we call.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"21\">\r\n      <CAPTION vref=\"1\">To the chief Musician, A Psalm of David. </CAPTION>\r\n      <VERS vnumber=\"1\">The king shall joy in thy strength, O LORD; and in thy salvation how greatly shall he rejoice!</VERS>\r\n      <VERS vnumber=\"2\">Thou hast given him his heart's desire, and hast not withholden the request of his lips. Selah.</VERS>\r\n      <VERS vnumber=\"3\">For thou preventest him with the blessings of goodness: thou settest a crown of pure gold on his head.</VERS>\r\n      <VERS vnumber=\"4\">He asked life of thee, and thou gavest it him, even length of days for ever and ever.</VERS>\r\n      <VERS vnumber=\"5\">His glory is great in thy salvation: honour and majesty hast thou laid upon him.</VERS>\r\n      <VERS vnumber=\"6\">For thou hast made him most blessed for ever: thou hast made him exceeding glad with thy countenance.</VERS>\r\n      <VERS vnumber=\"7\">For the king trusteth in the LORD, and through the mercy of the most High he shall not be moved.</VERS>\r\n      <VERS vnumber=\"8\">Thine hand shall find out all thine enemies: thy right hand shall find out those that hate thee.</VERS>\r\n      <VERS vnumber=\"9\">Thou 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.</VERS>\r\n      <VERS vnumber=\"10\">Their fruit shalt thou destroy from the earth, and their seed from among the children of men.</VERS>\r\n      <VERS vnumber=\"11\">For they intended evil against thee: they imagined a mischievous device, which they are not able to perform.</VERS>\r\n      <VERS vnumber=\"12\">Therefore shalt thou make them turn their back, when thou shalt make ready thine arrows upon thy strings against the face of them.</VERS>\r\n      <VERS vnumber=\"13\">Be thou exalted, LORD, in thine own strength: so will we sing and praise thy power.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"22\">\r\n      <CAPTION vref=\"1\">To the chief Musician upon Aijeleth Shahar, A Psalm of David. </CAPTION>\r\n      <VERS vnumber=\"1\">My God, my God, why hast thou forsaken me? why art thou so far from helping me, and from the words of my roaring?</VERS>\r\n      <VERS vnumber=\"2\">O my God, I cry in the daytime, but thou hearest not; and in the night season, and am not silent.</VERS>\r\n      <VERS vnumber=\"3\">But thou art holy, O thou that inhabitest the praises of Israel.</VERS>\r\n      <VERS vnumber=\"4\">Our fathers trusted in thee: they trusted, and thou didst deliver them.</VERS>\r\n      <VERS vnumber=\"5\">They cried unto thee, and were delivered: they trusted in thee, and were not confounded.</VERS>\r\n      <VERS vnumber=\"6\">But I am a worm, and no man; a reproach of men, and despised of the people.</VERS>\r\n      <VERS vnumber=\"7\">All they that see me laugh me to scorn: they shoot out the lip, they shake the head, saying,</VERS>\r\n      <VERS vnumber=\"8\">He trusted on the LORD that he would deliver him: let him deliver him, seeing he delighted in him.</VERS>\r\n      <VERS vnumber=\"9\">But thou art he that took me out of the womb: thou didst make me hope when I was upon my mother's breasts.</VERS>\r\n      <VERS vnumber=\"10\">I was cast upon thee from the womb: thou art my God from my mother's belly.</VERS>\r\n      <VERS vnumber=\"11\">Be not far from me; for trouble is near; for there is none to help.</VERS>\r\n      <VERS vnumber=\"12\">Many bulls have compassed me: strong bulls of Bashan have beset me round.</VERS>\r\n      <VERS vnumber=\"13\">They gaped upon me with their mouths, as a ravening and a roaring lion.</VERS>\r\n      <VERS vnumber=\"14\">I 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.</VERS>\r\n      <VERS vnumber=\"15\">My strength is dried up like a potsherd; and my tongue cleaveth to my jaws; and thou hast brought me into the dust of death.</VERS>\r\n      <VERS vnumber=\"16\">For dogs have compassed me: the assembly of the wicked have inclosed me: they pierced my hands and my feet.</VERS>\r\n      <VERS vnumber=\"17\">I may tell all my bones: they look and stare upon me.</VERS>\r\n      <VERS vnumber=\"18\">They part my garments among them, and cast lots upon my vesture.</VERS>\r\n      <VERS vnumber=\"19\">But be not thou far from me, O LORD: O my strength, haste thee to help me.</VERS>\r\n      <VERS vnumber=\"20\">Deliver my soul from the sword; my darling from the power of the dog.</VERS>\r\n      <VERS vnumber=\"21\">Save me from the lion's mouth: for thou hast heard me from the horns of the unicorns.</VERS>\r\n      <VERS vnumber=\"22\">I will declare thy name unto my brethren: in the midst of the congregation will I praise thee.</VERS>\r\n      <VERS vnumber=\"23\">Ye that fear the LORD, praise him; all ye the seed of Jacob, glorify him; and fear him, all ye the seed of Israel.</VERS>\r\n      <VERS vnumber=\"24\">For 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.</VERS>\r\n      <VERS vnumber=\"25\">My praise shall be of thee in the great congregation: I will pay my vows before them that fear him.</VERS>\r\n      <VERS vnumber=\"26\">The meek shall eat and be satisfied: they shall praise the LORD that seek him: your heart shall live for ever.</VERS>\r\n      <VERS vnumber=\"27\">All the ends of the world shall remember and turn unto the LORD: and all the kindreds of the nations shall worship before thee.</VERS>\r\n      <VERS vnumber=\"28\">For the kingdom is the LORD'S: and he is the governor among the nations.</VERS>\r\n      <VERS vnumber=\"29\">All 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.</VERS>\r\n      <VERS vnumber=\"30\">A seed shall serve him; it shall be accounted to the Lord for a generation.</VERS>\r\n      <VERS vnumber=\"31\">They shall come, and shall declare his righteousness unto a people that shall be born, that he hath done this.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"23\">\r\n      <CAPTION vref=\"1\">A Psalm of David. </CAPTION>\r\n      <VERS vnumber=\"1\">The LORD is my shepherd; I shall not want.</VERS>\r\n      <VERS vnumber=\"2\">He maketh me to lie down in green pastures: he leadeth me beside the still waters.</VERS>\r\n      <VERS vnumber=\"3\">He restoreth my soul: he leadeth me in the paths of righteousness for his name's sake.</VERS>\r\n      <VERS vnumber=\"4\">Yea, 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.</VERS>\r\n      <VERS vnumber=\"5\">Thou preparest a table before me in the presence of mine enemies: thou anointest my head with oil; my cup runneth over.</VERS>\r\n      <VERS vnumber=\"6\">Surely goodness and mercy shall follow me all the days of my life: and I will dwell in the house of the LORD for ever.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"24\">\r\n      <CAPTION vref=\"1\">A Psalm of David.</CAPTION>\r\n      <VERS vnumber=\"1\">The earth is the LORD'S, and the fulness thereof; the world, and they that dwell therein.</VERS>\r\n      <VERS vnumber=\"2\">For he hath founded it upon the seas, and established it upon the floods.</VERS>\r\n      <VERS vnumber=\"3\">Who shall ascend into the hill of the LORD? or who shall stand in his holy place?</VERS>\r\n      <VERS vnumber=\"4\">He that hath clean hands, and a pure heart; who hath not lifted up his soul unto vanity, nor sworn deceitfully.</VERS>\r\n      <VERS vnumber=\"5\">He shall receive the blessing from the LORD, and righteousness from the God of his salvation.</VERS>\r\n      <VERS vnumber=\"6\">This is the generation of them that seek him, that seek thy face, O Jacob. Selah.</VERS>\r\n      <VERS vnumber=\"7\">Lift up your heads, O ye gates; and be ye lift up, ye everlasting doors; and the King of glory shall come in.</VERS>\r\n      <VERS vnumber=\"8\">Who is this King of glory? The LORD strong and mighty, the LORD mighty in battle.</VERS>\r\n      <VERS vnumber=\"9\">Lift up your heads, O ye gates; even lift them up, ye everlasting doors; and the King of glory shall come in.</VERS>\r\n      <VERS vnumber=\"10\">Who is this King of glory? The LORD of hosts, he is the King of glory. Selah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"25\">\r\n      <CAPTION vref=\"1\">A Psalm of David. </CAPTION>\r\n      <VERS vnumber=\"1\">Unto thee, O LORD, do I lift up my soul.</VERS>\r\n      <VERS vnumber=\"2\">O my God, I trust in thee: let me not be ashamed, let not mine enemies triumph over me.</VERS>\r\n      <VERS vnumber=\"3\">Yea, let none that wait on thee be ashamed: let them be ashamed which transgress without cause.</VERS>\r\n      <VERS vnumber=\"4\">Shew me thy ways, O LORD; teach me thy paths.</VERS>\r\n      <VERS vnumber=\"5\">Lead me in thy truth, and teach me: for thou art the God of my salvation; on thee do I wait all the day.</VERS>\r\n      <VERS vnumber=\"6\">Remember, O LORD, thy tender mercies and thy lovingkindnesses; for they have been ever of old.</VERS>\r\n      <VERS vnumber=\"7\">Remember not the sins of my youth, nor my transgressions: according to thy mercy remember thou me for thy goodness' sake, O LORD.</VERS>\r\n      <VERS vnumber=\"8\">Good and upright is the LORD: therefore will he teach sinners in the way.</VERS>\r\n      <VERS vnumber=\"9\">The meek will he guide in judgment: and the meek will he teach his way.</VERS>\r\n      <VERS vnumber=\"10\">All the paths of the LORD are mercy and truth unto such as keep his covenant and his testimonies.</VERS>\r\n      <VERS vnumber=\"11\">For thy name's sake, O LORD, pardon mine iniquity; for it is great.</VERS>\r\n      <VERS vnumber=\"12\">What man is he that feareth the LORD? him shall he teach in the way that he shall choose.</VERS>\r\n      <VERS vnumber=\"13\">His soul shall dwell at ease; and his seed shall inherit the earth.</VERS>\r\n      <VERS vnumber=\"14\">The secret of the LORD is with them that fear him; and he will shew them his covenant.</VERS>\r\n      <VERS vnumber=\"15\">Mine eyes are ever toward the LORD; for he shall pluck my feet out of the net.</VERS>\r\n      <VERS vnumber=\"16\">Turn thee unto me, and have mercy upon me; for I am desolate and afflicted.</VERS>\r\n      <VERS vnumber=\"17\">The troubles of my heart are enlarged: O bring thou me out of my distresses.</VERS>\r\n      <VERS vnumber=\"18\">Look upon mine affliction and my pain; and forgive all my sins.</VERS>\r\n      <VERS vnumber=\"19\">Consider mine enemies; for they are many; and they hate me with cruel hatred.</VERS>\r\n      <VERS vnumber=\"20\">O keep my soul, and deliver me: let me not be ashamed; for I put my trust in thee.</VERS>\r\n      <VERS vnumber=\"21\">Let integrity and uprightness preserve me; for I wait on thee.</VERS>\r\n      <VERS vnumber=\"22\">Redeem Israel, O God, out of all his troubles.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"26\">\r\n      <CAPTION vref=\"1\">A Psalm of David. </CAPTION>\r\n      <VERS vnumber=\"1\">Judge me, O LORD; for I have walked in mine integrity: I have trusted also in the LORD; therefore I shall not slide.</VERS>\r\n      <VERS vnumber=\"2\">Examine me, O LORD, and prove me; try my reins and my heart.</VERS>\r\n      <VERS vnumber=\"3\">For thy lovingkindness is before mine eyes: and I have walked in thy truth.</VERS>\r\n      <VERS vnumber=\"4\">I have not sat with vain persons, neither will I go in with dissemblers.</VERS>\r\n      <VERS vnumber=\"5\">I have hated the congregation of evil doers; and will not sit with the wicked.</VERS>\r\n      <VERS vnumber=\"6\">I will wash mine hands in innocency: so will I compass thine altar, O LORD:</VERS>\r\n      <VERS vnumber=\"7\">That I may publish with the voice of thanksgiving, and tell of all thy wondrous works.</VERS>\r\n      <VERS vnumber=\"8\">LORD, I have loved the habitation of thy house, and the place where thine honour dwelleth.</VERS>\r\n      <VERS vnumber=\"9\">Gather not my soul with sinners, nor my life with bloody men:</VERS>\r\n      <VERS vnumber=\"10\">In whose hands is mischief, and their right hand is full of bribes.</VERS>\r\n      <VERS vnumber=\"11\">But as for me, I will walk in mine integrity: redeem me, and be merciful unto me.</VERS>\r\n      <VERS vnumber=\"12\">My foot standeth in an even place: in the congregations will I bless the LORD.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"27\">\r\n      <CAPTION vref=\"1\">A Psalm of David. </CAPTION>\r\n      <VERS vnumber=\"1\">The 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?</VERS>\r\n      <VERS vnumber=\"2\">When the wicked, even mine enemies and my foes, came upon me to eat up my flesh, they stumbled and fell.</VERS>\r\n      <VERS vnumber=\"3\">Though an host should encamp against me, my heart shall not fear: though war should rise against me, in this will I be confident.</VERS>\r\n      <VERS vnumber=\"4\">One 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.</VERS>\r\n      <VERS vnumber=\"5\">For 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">Hear, O LORD, when I cry with my voice: have mercy also upon me, and answer me.</VERS>\r\n      <VERS vnumber=\"8\">When thou saidst, Seek ye my face; my heart said unto thee, Thy face, LORD, will I seek.</VERS>\r\n      <VERS vnumber=\"9\">Hide 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.</VERS>\r\n      <VERS vnumber=\"10\">When my father and my mother forsake me, then the LORD will take me up.</VERS>\r\n      <VERS vnumber=\"11\">Teach me thy way, O LORD, and lead me in a plain path, because of mine enemies.</VERS>\r\n      <VERS vnumber=\"12\">Deliver me not over unto the will of mine enemies: for false witnesses are risen up against me, and such as breathe out cruelty.</VERS>\r\n      <VERS vnumber=\"13\">I had fainted, unless I had believed to see the goodness of the LORD in the land of the living.</VERS>\r\n      <VERS vnumber=\"14\">Wait on the LORD: be of good courage, and he shall strengthen thine heart: wait, I say, on the LORD.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"28\">\r\n      <CAPTION vref=\"1\">A Psalm of David.</CAPTION>\r\n      <VERS vnumber=\"1\">Unto 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.</VERS>\r\n      <VERS vnumber=\"2\">Hear the voice of my supplications, when I cry unto thee, when I lift up my hands toward thy holy oracle.</VERS>\r\n      <VERS vnumber=\"3\">Draw me not away with the wicked, and with the workers of iniquity, which speak peace to their neighbours, but mischief is in their hearts.</VERS>\r\n      <VERS vnumber=\"4\">Give 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.</VERS>\r\n      <VERS vnumber=\"5\">Because they regard not the works of the LORD, nor the operation of his hands, he shall destroy them, and not build them up.</VERS>\r\n      <VERS vnumber=\"6\">Blessed be the LORD, because he hath heard the voice of my supplications.</VERS>\r\n      <VERS vnumber=\"7\">The 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.</VERS>\r\n      <VERS vnumber=\"8\">The LORD is their strength, and he is the saving strength of his anointed.</VERS>\r\n      <VERS vnumber=\"9\">Save thy people, and bless thine inheritance: feed them also, and lift them up for ever.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"29\">\r\n      <CAPTION vref=\"1\">A Psalm of David. </CAPTION>\r\n      <VERS vnumber=\"1\">Give unto the LORD, O ye mighty, give unto the LORD glory and strength.</VERS>\r\n      <VERS vnumber=\"2\">Give unto the LORD the glory due unto his name; worship the LORD in the beauty of holiness.</VERS>\r\n      <VERS vnumber=\"3\">The voice of the LORD is upon the waters: the God of glory thundereth: the LORD is upon many waters.</VERS>\r\n      <VERS vnumber=\"4\">The voice of the LORD is powerful; the voice of the LORD is full of majesty.</VERS>\r\n      <VERS vnumber=\"5\">The voice of the LORD breaketh the cedars; yea, the LORD breaketh the cedars of Lebanon.</VERS>\r\n      <VERS vnumber=\"6\">He maketh them also to skip like a calf; Lebanon and Sirion like a young unicorn.</VERS>\r\n      <VERS vnumber=\"7\">The voice of the LORD divideth the flames of fire.</VERS>\r\n      <VERS vnumber=\"8\">The voice of the LORD shaketh the wilderness; the LORD shaketh the wilderness of Kadesh.</VERS>\r\n      <VERS vnumber=\"9\">The voice of the LORD maketh the hinds to calve, and discovereth the forests: and in his temple doth every one speak of his glory.</VERS>\r\n      <VERS vnumber=\"10\">The LORD sitteth upon the flood; yea, the LORD sitteth King for ever.</VERS>\r\n      <VERS vnumber=\"11\">The LORD will give strength unto his people; the LORD will bless his people with peace.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"30\">\r\n      <CAPTION vref=\"1\">A Psalm and Song at the dedication of the house of David. </CAPTION>\r\n      <VERS vnumber=\"1\">I will extol thee, O LORD; for thou hast lifted me up, and hast not made my foes to rejoice over me.</VERS>\r\n      <VERS vnumber=\"2\">O LORD my God, I cried unto thee, and thou hast healed me.</VERS>\r\n      <VERS vnumber=\"3\">O LORD, thou hast brought up my soul from the grave: thou hast kept me alive, that I should not go down to the pit.</VERS>\r\n      <VERS vnumber=\"4\">Sing unto the LORD, O ye saints of his, and give thanks at the remembrance of his holiness.</VERS>\r\n      <VERS vnumber=\"5\">For his anger endureth but a moment; in his favour is life: weeping may endure for a night, but joy cometh in the morning.</VERS>\r\n      <VERS vnumber=\"6\">And in my prosperity I said, I shall never be moved.</VERS>\r\n      <VERS vnumber=\"7\">LORD, by thy favour thou hast made my mountain to stand strong: thou didst hide thy face, and I was troubled.</VERS>\r\n      <VERS vnumber=\"8\">I cried to thee, O LORD; and unto the LORD I made supplication.</VERS>\r\n      <VERS vnumber=\"9\">What profit is there in my blood, when I go down to the pit? Shall the dust praise thee? shall it declare thy truth?</VERS>\r\n      <VERS vnumber=\"10\">Hear, O LORD, and have mercy upon me: LORD, be thou my helper.</VERS>\r\n      <VERS vnumber=\"11\">Thou hast turned for me my mourning into dancing: thou hast put off my sackcloth, and girded me with gladness;</VERS>\r\n      <VERS vnumber=\"12\">To 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"31\">\r\n      <CAPTION vref=\"1\">To the chief Musician, A Psalm of David. </CAPTION>\r\n      <VERS vnumber=\"1\">In thee, O LORD, do I put my trust; let me never be ashamed: deliver me in thy righteousness.</VERS>\r\n      <VERS vnumber=\"2\">Bow down thine ear to me; deliver me speedily: be thou my strong rock, for an house of defence to save me.</VERS>\r\n      <VERS vnumber=\"3\">For thou art my rock and my fortress; therefore for thy name's sake lead me, and guide me.</VERS>\r\n      <VERS vnumber=\"4\">Pull me out of the net that they have laid privily for me: for thou art my strength.</VERS>\r\n      <VERS vnumber=\"5\">Into thine hand I commit my spirit: thou hast redeemed me, O LORD God of truth.</VERS>\r\n      <VERS vnumber=\"6\">I have hated them that regard lying vanities: but I trust in the LORD.</VERS>\r\n      <VERS vnumber=\"7\">I will be glad and rejoice in thy mercy: for thou hast considered my trouble; thou hast known my soul in adversities;</VERS>\r\n      <VERS vnumber=\"8\">And hast not shut me up into the hand of the enemy: thou hast set my feet in a large room.</VERS>\r\n      <VERS vnumber=\"9\">Have mercy upon me, O LORD, for I am in trouble: mine eye is consumed with grief, yea, my soul and my belly.</VERS>\r\n      <VERS vnumber=\"10\">For my life is spent with grief, and my years with sighing: my strength faileth because of mine iniquity, and my bones are consumed.</VERS>\r\n      <VERS vnumber=\"11\">I 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.</VERS>\r\n      <VERS vnumber=\"12\">I am forgotten as a dead man out of mind: I am like a broken vessel.</VERS>\r\n      <VERS vnumber=\"13\">For 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.</VERS>\r\n      <VERS vnumber=\"14\">But I trusted in thee, O LORD: I said, Thou art my God.</VERS>\r\n      <VERS vnumber=\"15\">My times are in thy hand: deliver me from the hand of mine enemies, and from them that persecute me.</VERS>\r\n      <VERS vnumber=\"16\">Make thy face to shine upon thy servant: save me for thy mercies' sake.</VERS>\r\n      <VERS vnumber=\"17\">Let 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.</VERS>\r\n      <VERS vnumber=\"18\">Let the lying lips be put to silence; which speak grievous things proudly and contemptuously against the righteous.</VERS>\r\n      <VERS vnumber=\"19\">Oh 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!</VERS>\r\n      <VERS vnumber=\"20\">Thou 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.</VERS>\r\n      <VERS vnumber=\"21\">Blessed be the LORD: for he hath shewed me his marvellous kindness in a strong city.</VERS>\r\n      <VERS vnumber=\"22\">For 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.</VERS>\r\n      <VERS vnumber=\"23\">O love the LORD, all ye his saints: for the LORD preserveth the faithful, and plentifully rewardeth the proud doer.</VERS>\r\n      <VERS vnumber=\"24\">Be of good courage, and he shall strengthen your heart, all ye that hope in the LORD.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"32\">\r\n      <CAPTION vref=\"1\">A Psalm of David, Maschil. </CAPTION>\r\n      <VERS vnumber=\"1\">Blessed is he whose transgression is forgiven, whose sin is covered.</VERS>\r\n      <VERS vnumber=\"2\">Blessed is the man unto whom the LORD imputeth not iniquity, and in whose spirit there is no guile.</VERS>\r\n      <VERS vnumber=\"3\">When I kept silence, my bones waxed old through my roaring all the day long.</VERS>\r\n      <VERS vnumber=\"4\">For day and night thy hand was heavy upon me: my moisture is turned into the drought of summer. Selah.</VERS>\r\n      <VERS vnumber=\"5\">I acknowledged 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.</VERS>\r\n      <VERS vnumber=\"6\">For 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.</VERS>\r\n      <VERS vnumber=\"7\">Thou art my hiding place; thou shalt preserve me from trouble; thou shalt compass me about with songs of deliverance. Selah.</VERS>\r\n      <VERS vnumber=\"8\">I will instruct thee and teach thee in the way which thou shalt go: I will guide thee with mine eye.</VERS>\r\n      <VERS vnumber=\"9\">Be 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.</VERS>\r\n      <VERS vnumber=\"10\">Many sorrows shall be to the wicked: but he that trusteth in the LORD, mercy shall compass him about.</VERS>\r\n      <VERS vnumber=\"11\">Be glad in the LORD, and rejoice, ye righteous: and shout for joy, all ye that are upright in heart.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"33\">\r\n      <VERS vnumber=\"1\">Rejoice in the LORD, O ye righteous: for praise is comely for the upright.</VERS>\r\n      <VERS vnumber=\"2\">Praise the LORD with harp: sing unto him with the psaltery and an instrument of ten strings.</VERS>\r\n      <VERS vnumber=\"3\">Sing unto him a new song; play skilfully with a loud noise.</VERS>\r\n      <VERS vnumber=\"4\">For the word of the LORD is right; and all his works are done in truth.</VERS>\r\n      <VERS vnumber=\"5\">He loveth righteousness and judgment: the earth is full of the goodness of the LORD.</VERS>\r\n      <VERS vnumber=\"6\">By the word of the LORD were the heavens made; and all the host of them by the breath of his mouth.</VERS>\r\n      <VERS vnumber=\"7\">He gathereth the waters of the sea together as an heap: he layeth up the depth in storehouses.</VERS>\r\n      <VERS vnumber=\"8\">Let all the earth fear the LORD: let all the inhabitants of the world stand in awe of him.</VERS>\r\n      <VERS vnumber=\"9\">For he spake, and it was done; he commanded, and it stood fast.</VERS>\r\n      <VERS vnumber=\"10\">The LORD bringeth the counsel of the heathen to nought: he maketh the devices of the people of none effect.</VERS>\r\n      <VERS vnumber=\"11\">The counsel of the LORD standeth for ever, the thoughts of his heart to all generations.</VERS>\r\n      <VERS vnumber=\"12\">Blessed is the nation whose God is the LORD; and the people whom he hath chosen for his own inheritance.</VERS>\r\n      <VERS vnumber=\"13\">The LORD looketh from heaven; he beholdeth all the sons of men.</VERS>\r\n      <VERS vnumber=\"14\">From the place of his habitation he looketh upon all the inhabitants of the earth.</VERS>\r\n      <VERS vnumber=\"15\">He fashioneth their hearts alike; he considereth all their works.</VERS>\r\n      <VERS vnumber=\"16\">There is no king saved by the multitude of an host: a mighty man is not delivered by much strength.</VERS>\r\n      <VERS vnumber=\"17\">An horse is a vain thing for safety: neither shall he deliver any by his great strength.</VERS>\r\n      <VERS vnumber=\"18\">Behold, the eye of the LORD is upon them that fear him, upon them that hope in his mercy;</VERS>\r\n      <VERS vnumber=\"19\">To deliver their soul from death, and to keep them alive in famine.</VERS>\r\n      <VERS vnumber=\"20\">Our soul waiteth for the LORD: he is our help and our shield.</VERS>\r\n      <VERS vnumber=\"21\">For our heart shall rejoice in him, because we have trusted in his holy name.</VERS>\r\n      <VERS vnumber=\"22\">Let thy mercy, O LORD, be upon us, according as we hope in thee.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"34\">\r\n      <CAPTION vref=\"1\">A Psalm of David, when he changed his behaviour before Abimelech; who drove him away, and he departed. </CAPTION>\r\n      <VERS vnumber=\"1\">I will bless the LORD at all times: his praise shall continually be in my mouth.</VERS>\r\n      <VERS vnumber=\"2\">My soul shall make her boast in the LORD: the humble shall hear thereof, and be glad.</VERS>\r\n      <VERS vnumber=\"3\">O magnify the LORD with me, and let us exalt his name together.</VERS>\r\n      <VERS vnumber=\"4\">I sought the LORD, and he heard me, and delivered me from all my fears.</VERS>\r\n      <VERS vnumber=\"5\">They looked unto him, and were lightened: and their faces were not ashamed.</VERS>\r\n      <VERS vnumber=\"6\">This poor man cried, and the LORD heard him, and saved him out of all his troubles.</VERS>\r\n      <VERS vnumber=\"7\">The angel of the LORD encampeth round about them that fear him, and delivereth them.</VERS>\r\n      <VERS vnumber=\"8\">O taste and see that the LORD is good: blessed is the man that trusteth in him.</VERS>\r\n      <VERS vnumber=\"9\">O fear the LORD, ye his saints: for there is no want to them that fear him.</VERS>\r\n      <VERS vnumber=\"10\">The young lions do lack, and suffer hunger: but they that seek the LORD shall not want any good thing.</VERS>\r\n      <VERS vnumber=\"11\">Come, ye children, hearken unto me: I will teach you the fear of the LORD.</VERS>\r\n      <VERS vnumber=\"12\">What man is he that desireth life, and loveth many days, that he may see good?</VERS>\r\n      <VERS vnumber=\"13\">Keep thy tongue from evil, and thy lips from speaking guile.</VERS>\r\n      <VERS vnumber=\"14\">Depart from evil, and do good; seek peace, and pursue it.</VERS>\r\n      <VERS vnumber=\"15\">The eyes of the LORD are upon the righteous, and his ears are open unto their cry.</VERS>\r\n      <VERS vnumber=\"16\">The face of the LORD is against them that do evil, to cut off the remembrance of them from the earth.</VERS>\r\n      <VERS vnumber=\"17\">The righteous cry, and the LORD heareth, and delivereth them out of all their troubles.</VERS>\r\n      <VERS vnumber=\"18\">The LORD is nigh unto them that are of a broken heart; and saveth such as be of a contrite spirit.</VERS>\r\n      <VERS vnumber=\"19\">Many are the afflictions of the righteous: but the LORD delivereth him out of them all.</VERS>\r\n      <VERS vnumber=\"20\">He keepeth all his bones: not one of them is broken.</VERS>\r\n      <VERS vnumber=\"21\">Evil shall slay the wicked: and they that hate the righteous shall be desolate.</VERS>\r\n      <VERS vnumber=\"22\">The LORD redeemeth the soul of his servants: and none of them that trust in him shall be desolate.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"35\">\r\n      <CAPTION vref=\"1\">Psalm of David.</CAPTION>\r\n      <VERS vnumber=\"1\">Plead my cause, O LORD, with them that strive with me: fight against them that fight against me.</VERS>\r\n      <VERS vnumber=\"2\">Take hold of shield and buckler, and stand up for mine help.</VERS>\r\n      <VERS vnumber=\"3\">Draw out also the spear, and stop the way against them that persecute me: say unto my soul, I am thy salvation.</VERS>\r\n      <VERS vnumber=\"4\">Let 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.</VERS>\r\n      <VERS vnumber=\"5\">Let them be as chaff before the wind: and let the angel of the LORD chase them.</VERS>\r\n      <VERS vnumber=\"6\">Let their way be dark and slippery: and let the angel of the LORD persecute them.</VERS>\r\n      <VERS vnumber=\"7\">For without cause have they hid for me their net in a pit, which without cause they have digged for my soul.</VERS>\r\n      <VERS vnumber=\"8\">Let destruction come upon him at unawares; and let his net that he hath hid catch himself: into that very destruction let him fall.</VERS>\r\n      <VERS vnumber=\"9\">And my soul shall be joyful in the LORD: it shall rejoice in his salvation.</VERS>\r\n      <VERS vnumber=\"10\">All 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?</VERS>\r\n      <VERS vnumber=\"11\">False witnesses did rise up; they laid to my charge things that I knew not.</VERS>\r\n      <VERS vnumber=\"12\">They rewarded me evil for good to the spoiling of my soul.</VERS>\r\n      <VERS vnumber=\"13\">But 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.</VERS>\r\n      <VERS vnumber=\"14\">I behaved myself as though he had been my friend or brother: I bowed down heavily, as one that mourneth for his mother.</VERS>\r\n      <VERS vnumber=\"15\">But 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:</VERS>\r\n      <VERS vnumber=\"16\">With hypocritical mockers in feasts, they gnashed upon me with their teeth.</VERS>\r\n      <VERS vnumber=\"17\">Lord, how long wilt thou look on? rescue my soul from their destructions, my darling from the lions.</VERS>\r\n      <VERS vnumber=\"18\">I will give thee thanks in the great congregation: I will praise thee among much people.</VERS>\r\n      <VERS vnumber=\"19\">Let not them that are mine enemies wrongfully rejoice over me: neither let them wink with the eye that hate me without a cause.</VERS>\r\n      <VERS vnumber=\"20\">For they speak not peace: but they devise deceitful matters against them that are quiet in the land.</VERS>\r\n      <VERS vnumber=\"21\">Yea, they opened their mouth wide against me, and said, Aha, aha, our eye hath seen it.</VERS>\r\n      <VERS vnumber=\"22\">This thou hast seen, O LORD: keep not silence: O Lord, be not far from me.</VERS>\r\n      <VERS vnumber=\"23\">Stir up thyself, and awake to my judgment, even unto my cause, my God and my Lord.</VERS>\r\n      <VERS vnumber=\"24\">Judge me, O LORD my God, according to thy righteousness; and let them not rejoice over me.</VERS>\r\n      <VERS vnumber=\"25\">Let them not say in their hearts, Ah, so would we have it: let them not say, We have swallowed him up.</VERS>\r\n      <VERS vnumber=\"26\">Let 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.</VERS>\r\n      <VERS vnumber=\"27\">Let 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.</VERS>\r\n      <VERS vnumber=\"28\">And my tongue shall speak of thy righteousness and of thy praise all the day long.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"36\">\r\n      <CAPTION vref=\"1\">To the chief Musician, A Psalm of David the servant of the LORD. </CAPTION>\r\n      <VERS vnumber=\"1\">The transgression of the wicked saith within my heart, that there is no fear of God before his eyes.</VERS>\r\n      <VERS vnumber=\"2\">For he flattereth himself in his own eyes, until his iniquity be found to be hateful.</VERS>\r\n      <VERS vnumber=\"3\">The words of his mouth are iniquity and deceit: he hath left off to be wise, and to do good.</VERS>\r\n      <VERS vnumber=\"4\">He deviseth mischief upon his bed; he setteth himself in a way that is not good; he abhorreth not evil.</VERS>\r\n      <VERS vnumber=\"5\">Thy mercy, O LORD, is in the heavens; and thy faithfulness reacheth unto the clouds.</VERS>\r\n      <VERS vnumber=\"6\">Thy righteousness is like the great mountains; thy judgments are a great deep: O LORD, thou preservest man and beast.</VERS>\r\n      <VERS vnumber=\"7\">How excellent is thy lovingkindness, O God! therefore the children of men put their trust under the shadow of thy wings.</VERS>\r\n      <VERS vnumber=\"8\">They shall be abundantly satisfied with the fatness of thy house; and thou shalt make them drink of the river of thy pleasures.</VERS>\r\n      <VERS vnumber=\"9\">For with thee is the fountain of life: in thy light shall we see light.</VERS>\r\n      <VERS vnumber=\"10\">O continue thy lovingkindness unto them that know thee; and thy righteousness to the upright in heart.</VERS>\r\n      <VERS vnumber=\"11\">Let not the foot of pride come against me, and let not the hand of the wicked remove me.</VERS>\r\n      <VERS vnumber=\"12\">There are the workers of iniquity fallen: they are cast down, and shall not be able to rise.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"37\">\r\n      <CAPTION vref=\"1\">A Psalm of David. </CAPTION>\r\n      <VERS vnumber=\"1\">Fret not thyself because of evildoers, neither be thou envious against the workers of iniquity.</VERS>\r\n      <VERS vnumber=\"2\">For they shall soon be cut down like the grass, and wither as the green herb.</VERS>\r\n      <VERS vnumber=\"3\">Trust in the LORD, and do good; so shalt thou dwell in the land, and verily thou shalt be fed.</VERS>\r\n      <VERS vnumber=\"4\">Delight thyself also in the LORD; and he shall give thee the desires of thine heart.</VERS>\r\n      <VERS vnumber=\"5\">Commit thy way unto the LORD; trust also in him; and he shall bring it to pass.</VERS>\r\n      <VERS vnumber=\"6\">And he shall bring forth thy righteousness as the light, and thy judgment as the noonday.</VERS>\r\n      <VERS vnumber=\"7\">Rest 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.</VERS>\r\n      <VERS vnumber=\"8\">Cease from anger, and forsake wrath: fret not thyself in any wise to do evil.</VERS>\r\n      <VERS vnumber=\"9\">For evildoers shall be cut off: but those that wait upon the LORD, they shall inherit the earth.</VERS>\r\n      <VERS vnumber=\"10\">For yet a little while, and the wicked shall not be: yea, thou shalt diligently consider his place, and it shall not be.</VERS>\r\n      <VERS vnumber=\"11\">But the meek shall inherit the earth; and shall delight themselves in the abundance of peace.</VERS>\r\n      <VERS vnumber=\"12\">The wicked plotteth against the just, and gnasheth upon him with his teeth.</VERS>\r\n      <VERS vnumber=\"13\">The Lord shall laugh at him: for he seeth that his day is coming.</VERS>\r\n      <VERS vnumber=\"14\">The 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.</VERS>\r\n      <VERS vnumber=\"15\">Their sword shall enter into their own heart, and their bows shall be broken.</VERS>\r\n      <VERS vnumber=\"16\">A little that a righteous man hath is better than the riches of many wicked.</VERS>\r\n      <VERS vnumber=\"17\">For the arms of the wicked shall be broken: but the LORD upholdeth the righteous.</VERS>\r\n      <VERS vnumber=\"18\">The LORD knoweth the days of the upright: and their inheritance shall be for ever.</VERS>\r\n      <VERS vnumber=\"19\">They shall not be ashamed in the evil time: and in the days of famine they shall be satisfied.</VERS>\r\n      <VERS vnumber=\"20\">But 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.</VERS>\r\n      <VERS vnumber=\"21\">The wicked borroweth, and payeth not again: but the righteous sheweth mercy, and giveth.</VERS>\r\n      <VERS vnumber=\"22\">For such as be blessed of him shall inherit the earth; and they that be cursed of him shall be cut off.</VERS>\r\n      <VERS vnumber=\"23\">The steps of a good man are ordered by the LORD: and he delighteth in his way.</VERS>\r\n      <VERS vnumber=\"24\">Though he fall, he shall not be utterly cast down: for the LORD upholdeth him with his hand.</VERS>\r\n      <VERS vnumber=\"25\">I have been young, and now am old; yet have I not seen the righteous forsaken, nor his seed begging bread.</VERS>\r\n      <VERS vnumber=\"26\">He is ever merciful, and lendeth; and his seed is blessed.</VERS>\r\n      <VERS vnumber=\"27\">Depart from evil, and do good; and dwell for evermore.</VERS>\r\n      <VERS vnumber=\"28\">For the LORD loveth judgment, and forsaketh not his saints; they are preserved for ever: but the seed of the wicked shall be cut off.</VERS>\r\n      <VERS vnumber=\"29\">The righteous shall inherit the land, and dwell therein for ever.</VERS>\r\n      <VERS vnumber=\"30\">The mouth of the righteous speaketh wisdom, and his tongue talketh of judgment.</VERS>\r\n      <VERS vnumber=\"31\">The law of his God is in his heart; none of his steps shall slide.</VERS>\r\n      <VERS vnumber=\"32\">The wicked watcheth the righteous, and seeketh to slay him.</VERS>\r\n      <VERS vnumber=\"33\">The LORD will not leave him in his hand, nor condemn him when he is judged.</VERS>\r\n      <VERS vnumber=\"34\">Wait 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.</VERS>\r\n      <VERS vnumber=\"35\">I have seen the wicked in great power, and spreading himself like a green bay tree.</VERS>\r\n      <VERS vnumber=\"36\">Yet he passed away, and, lo, he was not: yea, I sought him, but he could not be found.</VERS>\r\n      <VERS vnumber=\"37\">Mark the perfect man, and behold the upright: for the end of that man is peace.</VERS>\r\n      <VERS vnumber=\"38\">But the transgressors shall be destroyed together: the end of the wicked shall be cut off.</VERS>\r\n      <VERS vnumber=\"39\">But the salvation of the righteous is of the LORD: he is their strength in the time of trouble.</VERS>\r\n      <VERS vnumber=\"40\">And the LORD shall help them, and deliver them: he shall deliver them from the wicked, and save them, because they trust in him.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"38\">\r\n      <CAPTION vref=\"1\">A Psalm of David, to bring to remembrance. </CAPTION>\r\n      <VERS vnumber=\"1\">O LORD, rebuke me not in thy wrath: neither chasten me in thy hot displeasure.</VERS>\r\n      <VERS vnumber=\"2\">For thine arrows stick fast in me, and thy hand presseth me sore.</VERS>\r\n      <VERS vnumber=\"3\">There is no soundness in my flesh because of thine anger; neither is there any rest in my bones because of my sin.</VERS>\r\n      <VERS vnumber=\"4\">For mine iniquities are gone over mine head: as an heavy burden they are too heavy for me.</VERS>\r\n      <VERS vnumber=\"5\">My wounds stink and are corrupt because of my foolishness.</VERS>\r\n      <VERS vnumber=\"6\">I am troubled; I am bowed down greatly; I go mourning all the day long.</VERS>\r\n      <VERS vnumber=\"7\">For my loins are filled with a loathsome disease: and there is no soundness in my flesh.</VERS>\r\n      <VERS vnumber=\"8\">I am feeble and sore broken: I have roared by reason of the disquietness of my heart.</VERS>\r\n      <VERS vnumber=\"9\">Lord, all my desire is before thee; and my groaning is not hid from thee.</VERS>\r\n      <VERS vnumber=\"10\">My heart panteth, my strength faileth me: as for the light of mine eyes, it also is gone from me.</VERS>\r\n      <VERS vnumber=\"11\">My lovers and my friends stand aloof from my sore; and my kinsmen stand afar off.</VERS>\r\n      <VERS vnumber=\"12\">They 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.</VERS>\r\n      <VERS vnumber=\"13\">But I, as a deaf man, heard not; and I was as a dumb man that openeth not his mouth.</VERS>\r\n      <VERS vnumber=\"14\">Thus I was as a man that heareth not, and in whose mouth are no reproofs.</VERS>\r\n      <VERS vnumber=\"15\">For in thee, O LORD, do I hope: thou wilt hear, O Lord my God.</VERS>\r\n      <VERS vnumber=\"16\">For I said, Hear me, lest otherwise they should rejoice over me: when my foot slippeth, they magnify themselves against me.</VERS>\r\n      <VERS vnumber=\"17\">For I am ready to halt, and my sorrow is continually before me.</VERS>\r\n      <VERS vnumber=\"18\">For I will declare mine iniquity; I will be sorry for my sin.</VERS>\r\n      <VERS vnumber=\"19\">But mine enemies are lively, and they are strong: and they that hate me wrongfully are multiplied.</VERS>\r\n      <VERS vnumber=\"20\">They also that render evil for good are mine adversaries; because I follow the thing that good is.</VERS>\r\n      <VERS vnumber=\"21\">Forsake me not, O LORD: O my God, be not far from me.</VERS>\r\n      <VERS vnumber=\"22\">Make haste to help me, O Lord my salvation.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"39\">\r\n      <CAPTION vref=\"1\">To the chief Musician, even to Jeduthun, A Psalm of David. </CAPTION>\r\n      <VERS vnumber=\"1\">I 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.</VERS>\r\n      <VERS vnumber=\"2\">I was dumb with silence, I held my peace, even from good; and my sorrow was stirred.</VERS>\r\n      <VERS vnumber=\"3\">My heart was hot within me, while I was musing the fire burned: then spake I with my tongue,</VERS>\r\n      <VERS vnumber=\"4\">LORD, make me to know mine end, and the measure of my days, what it is; that I may know how frail I am.</VERS>\r\n      <VERS vnumber=\"5\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"6\">Surely every man walketh in a vain shew: surely they are disquieted in vain: he heapeth up riches, and knoweth not who shall gather them.</VERS>\r\n      <VERS vnumber=\"7\">And now, Lord, what wait I for? my hope is in thee.</VERS>\r\n      <VERS vnumber=\"8\">Deliver me from all my transgressions: make me not the reproach of the foolish.</VERS>\r\n      <VERS vnumber=\"9\">I was dumb, I opened not my mouth; because thou didst it.</VERS>\r\n      <VERS vnumber=\"10\">Remove thy stroke away from me: I am consumed by the blow of thine hand.</VERS>\r\n      <VERS vnumber=\"11\">When thou with rebukes dost correct man for iniquity, thou makest his beauty to consume away like a moth: surely every man is vanity. Selah.</VERS>\r\n      <VERS vnumber=\"12\">Hear 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.</VERS>\r\n      <VERS vnumber=\"13\">O spare me, that I may recover strength, before I go hence, and be no more.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"40\">\r\n      <CAPTION vref=\"1\">To the chief Musician, A Psalm of David. </CAPTION>\r\n      <VERS vnumber=\"1\">I waited patiently for the LORD; and he inclined unto me, and heard my cry.</VERS>\r\n      <VERS vnumber=\"2\">He 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">Blessed is that man that maketh the LORD his trust, and respecteth not the proud, nor such as turn aside to lies.</VERS>\r\n      <VERS vnumber=\"5\">Many, 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.</VERS>\r\n      <VERS vnumber=\"6\">Sacrifice and offering thou didst not desire; mine ears hast thou opened: burnt offering and sin offering hast thou not required.</VERS>\r\n      <VERS vnumber=\"7\">Then said I, Lo, I come: in the volume of the book it is written of me,</VERS>\r\n      <VERS vnumber=\"8\">I delight to do thy will, O my God: yea, thy law is within my heart.</VERS>\r\n      <VERS vnumber=\"9\">I have preached righteousness in the great congregation: lo, I have not refrained my lips, O LORD, thou knowest.</VERS>\r\n      <VERS vnumber=\"10\">I 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.</VERS>\r\n      <VERS vnumber=\"11\">Withhold not thou thy tender mercies from me, O LORD: let thy lovingkindness and thy truth continually preserve me.</VERS>\r\n      <VERS vnumber=\"12\">For 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.</VERS>\r\n      <VERS vnumber=\"13\">Be pleased, O LORD, to deliver me: O LORD, make haste to help me.</VERS>\r\n      <VERS vnumber=\"14\">Let 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.</VERS>\r\n      <VERS vnumber=\"15\">Let them be desolate for a reward of their shame that say unto me, Aha, aha.</VERS>\r\n      <VERS vnumber=\"16\">Let all those that seek thee rejoice and be glad in thee: let such as love thy salvation say continually, The LORD be magnified.</VERS>\r\n      <VERS vnumber=\"17\">But I am poor and needy; yet the Lord thinketh upon me: thou art my help and my deliverer; make no tarrying, O my God.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"41\">\r\n      <CAPTION vref=\"1\">To the chief Musician, A Psalm of David. </CAPTION>\r\n      <VERS vnumber=\"1\">Blessed is he that considereth the poor: the LORD will deliver him in time of trouble.</VERS>\r\n      <VERS vnumber=\"2\">The 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.</VERS>\r\n      <VERS vnumber=\"3\">The LORD will strengthen him upon the bed of languishing: thou wilt make all his bed in his sickness.</VERS>\r\n      <VERS vnumber=\"4\">I said, LORD, be merciful unto me: heal my soul; for I have sinned against thee.</VERS>\r\n      <VERS vnumber=\"5\">Mine enemies speak evil of me, When shall he die, and his name perish?</VERS>\r\n      <VERS vnumber=\"6\">And if he come to see me, he speaketh vanity: his heart gathereth iniquity to itself; when he goeth abroad, he telleth it.</VERS>\r\n      <VERS vnumber=\"7\">All that hate me whisper together against me: against me do they devise my hurt.</VERS>\r\n      <VERS vnumber=\"8\">An evil disease, say they, cleaveth fast unto him: and now that he lieth he shall rise up no more.</VERS>\r\n      <VERS vnumber=\"9\">Yea, mine own familiar friend, in whom I trusted, which did eat of my bread, hath lifted up his heel against me.</VERS>\r\n      <VERS vnumber=\"10\">But thou, O LORD, be merciful unto me, and raise me up, that I may requite them.</VERS>\r\n      <VERS vnumber=\"11\">By this I know that thou favourest me, because mine enemy doth not triumph over me.</VERS>\r\n      <VERS vnumber=\"12\">And as for me, thou upholdest me in mine integrity, and settest me before thy face for ever.</VERS>\r\n      <VERS vnumber=\"13\">Blessed be the LORD God of Israel from everlasting, and to everlasting. Amen, and Amen.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"42\">\r\n      <CAPTION vref=\"1\">To the chief Musician, Maschil, for the sons of Korah. </CAPTION>\r\n      <VERS vnumber=\"1\">As the hart panteth after the water brooks, so panteth my soul after thee, O God.</VERS>\r\n      <VERS vnumber=\"2\">My soul thirsteth for God, for the living God: when shall I come and appear before God?</VERS>\r\n      <VERS vnumber=\"3\">My tears have been my meat day and night, while they continually say unto me, Where is thy God?</VERS>\r\n      <VERS vnumber=\"4\">When 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.</VERS>\r\n      <VERS vnumber=\"5\">Why 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.</VERS>\r\n      <VERS vnumber=\"6\">O 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.</VERS>\r\n      <VERS vnumber=\"7\">Deep calleth unto deep at the noise of thy waterspouts: all thy waves and thy billows are gone over me.</VERS>\r\n      <VERS vnumber=\"8\">Yet the LORD will command his lovingkindness in the daytime, and in the night his song shall be with me, and my prayer unto the God of my life.</VERS>\r\n      <VERS vnumber=\"9\">I will say unto God my rock, Why hast thou forgotten me? why go I mourning because of the oppression of the enemy?</VERS>\r\n      <VERS vnumber=\"10\">As with a sword in my bones, mine enemies reproach me; while they say daily unto me, Where is thy God?</VERS>\r\n      <VERS vnumber=\"11\">Why 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"43\">\r\n      <VERS vnumber=\"1\">Judge me, O God, and plead my cause against an ungodly nation: O deliver me from the deceitful and unjust man.</VERS>\r\n      <VERS vnumber=\"2\">For thou art the God of my strength: why dost thou cast me off? why go I mourning because of the oppression of the enemy?</VERS>\r\n      <VERS vnumber=\"3\">O send out thy light and thy truth: let them lead me; let them bring me unto thy holy hill, and to thy tabernacles.</VERS>\r\n      <VERS vnumber=\"4\">Then 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.</VERS>\r\n      <VERS vnumber=\"5\">Why 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"44\">\r\n      <CAPTION vref=\"1\">To the chief Musician for the sons of Korah, Maschil. </CAPTION>\r\n      <VERS vnumber=\"1\">We have heard with our ears, O God, our fathers have told us, what work thou didst in their days, in the times of old.</VERS>\r\n      <VERS vnumber=\"2\">How thou didst drive out the heathen with thy hand, and plantedst them; how thou didst afflict the people, and cast them out.</VERS>\r\n      <VERS vnumber=\"3\">For 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.</VERS>\r\n      <VERS vnumber=\"4\">Thou art my King, O God: command deliverances for Jacob.</VERS>\r\n      <VERS vnumber=\"5\">Through thee will we push down our enemies: through thy name will we tread them under that rise up against us.</VERS>\r\n      <VERS vnumber=\"6\">For I will not trust in my bow, neither shall my sword save me.</VERS>\r\n      <VERS vnumber=\"7\">But thou hast saved us from our enemies, and hast put them to shame that hated us.</VERS>\r\n      <VERS vnumber=\"8\">In God we boast all the day long, and praise thy name for ever. Selah.</VERS>\r\n      <VERS vnumber=\"9\">But thou hast cast off, and put us to shame; and goest not forth with our armies.</VERS>\r\n      <VERS vnumber=\"10\">Thou makest us to turn back from the enemy: and they which hate us spoil for themselves.</VERS>\r\n      <VERS vnumber=\"11\">Thou hast given us like sheep appointed for meat; and hast scattered us among the heathen.</VERS>\r\n      <VERS vnumber=\"12\">Thou sellest thy people for nought, and dost not increase thy wealth by their price.</VERS>\r\n      <VERS vnumber=\"13\">Thou makest us a reproach to our neighbours, a scorn and a derision to them that are round about us.</VERS>\r\n      <VERS vnumber=\"14\">Thou makest us a byword among the heathen, a shaking of the head among the people.</VERS>\r\n      <VERS vnumber=\"15\">My confusion is continually before me, and the shame of my face hath covered me,</VERS>\r\n      <VERS vnumber=\"16\">For the voice of him that reproacheth and blasphemeth; by reason of the enemy and avenger.</VERS>\r\n      <VERS vnumber=\"17\">All this is come upon us; yet have we not forgotten thee, neither have we dealt falsely in thy covenant.</VERS>\r\n      <VERS vnumber=\"18\">Our heart is not turned back, neither have our steps declined from thy way;</VERS>\r\n      <VERS vnumber=\"19\">Though thou hast sore broken us in the place of dragons, and covered us with the shadow of death.</VERS>\r\n      <VERS vnumber=\"20\">If we have forgotten the name of our God, or stretched out our hands to a strange god;</VERS>\r\n      <VERS vnumber=\"21\">Shall not God search this out? for he knoweth the secrets of the heart.</VERS>\r\n      <VERS vnumber=\"22\">Yea, for thy sake are we killed all the day long; we are counted as sheep for the slaughter.</VERS>\r\n      <VERS vnumber=\"23\">Awake, why sleepest thou, O Lord? arise, cast us not off for ever.</VERS>\r\n      <VERS vnumber=\"24\">Wherefore hidest thou thy face, and forgettest our affliction and our oppression?</VERS>\r\n      <VERS vnumber=\"25\">For our soul is bowed down to the dust: our belly cleaveth unto the earth.</VERS>\r\n      <VERS vnumber=\"26\">Arise for our help, and redeem us for thy mercies' sake.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"45\">\r\n      <CAPTION vref=\"1\">To the chief Musician upon Shoshannim, for the sons of Korah, Maschil, A Song of loves. </CAPTION>\r\n      <VERS vnumber=\"1\">My 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.</VERS>\r\n      <VERS vnumber=\"2\">Thou art fairer than the children of men: grace is poured into thy lips: therefore God hath blessed thee for ever.</VERS>\r\n      <VERS vnumber=\"3\">Gird thy sword upon thy thigh, O most mighty, with thy glory and thy majesty.</VERS>\r\n      <VERS vnumber=\"4\">And in thy majesty ride prosperously because of truth and meekness and righteousness; and thy right hand shall teach thee terrible things.</VERS>\r\n      <VERS vnumber=\"5\">Thine arrows are sharp in the heart of the king's enemies; whereby the people fall under thee.</VERS>\r\n      <VERS vnumber=\"6\">Thy throne, O God, is for ever and ever: the sceptre of thy kingdom is a right sceptre.</VERS>\r\n      <VERS vnumber=\"7\">Thou lovest righteousness, and hatest wickedness: therefore God, thy God, hath anointed thee with the oil of gladness above thy fellows.</VERS>\r\n      <VERS vnumber=\"8\">All thy garments smell of myrrh, and aloes, and cassia, out of the ivory palaces, whereby they have made thee glad.</VERS>\r\n      <VERS vnumber=\"9\">Kings' daughters were among thy honourable women: upon thy right hand did stand the queen in gold of Ophir.</VERS>\r\n      <VERS vnumber=\"10\">Hearken, O daughter, and consider, and incline thine ear; forget also thine own people, and thy father's house;</VERS>\r\n      <VERS vnumber=\"11\">So shall the king greatly desire thy beauty: for he is thy Lord; and worship thou him.</VERS>\r\n      <VERS vnumber=\"12\">And the daughter of Tyre shall be there with a gift; even the rich among the people shall intreat thy favour.</VERS>\r\n      <VERS vnumber=\"13\">The king's daughter is all glorious within: her clothing is of wrought gold.</VERS>\r\n      <VERS vnumber=\"14\">She shall be brought unto the king in raiment of needlework: the virgins her companions that follow her shall be brought unto thee.</VERS>\r\n      <VERS vnumber=\"15\">With gladness and rejoicing shall they be brought: they shall enter into the king's palace.</VERS>\r\n      <VERS vnumber=\"16\">Instead of thy fathers shall be thy children, whom thou mayest make princes in all the earth.</VERS>\r\n      <VERS vnumber=\"17\">I will make thy name to be remembered in all generations: therefore shall the people praise thee for ever and ever.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"46\">\r\n      <CAPTION vref=\"1\">To the chief Musician for the sons of Korah, A Song upon Alamoth. </CAPTION>\r\n      <VERS vnumber=\"1\">God is our refuge and strength, a very present help in trouble.</VERS>\r\n      <VERS vnumber=\"2\">Therefore will not we fear, though the earth be removed, and though the mountains be carried into the midst of the sea;</VERS>\r\n      <VERS vnumber=\"3\">Though the waters thereof roar and be troubled, though the mountains shake with the swelling thereof. Selah.</VERS>\r\n      <VERS vnumber=\"4\">There is a river, the streams whereof shall make glad the city of God, the holy place of the tabernacles of the most High.</VERS>\r\n      <VERS vnumber=\"5\">God is in the midst of her; she shall not be moved: God shall help her, and that right early.</VERS>\r\n      <VERS vnumber=\"6\">The heathen raged, the kingdoms were moved: he uttered his voice, the earth melted.</VERS>\r\n      <VERS vnumber=\"7\">The LORD of hosts is with us; the God of Jacob is our refuge. Selah.</VERS>\r\n      <VERS vnumber=\"8\">Come, behold the works of the LORD, what desolations he hath made in the earth.</VERS>\r\n      <VERS vnumber=\"9\">He 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.</VERS>\r\n      <VERS vnumber=\"10\">Be still, and know that I am God: I will be exalted among the heathen, I will be exalted in the earth.</VERS>\r\n      <VERS vnumber=\"11\">The LORD of hosts is with us; the God of Jacob is our refuge. Selah.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"47\">\r\n      <CAPTION vref=\"1\">To the chief Musician, A Psalm for the sons of Korah.</CAPTION>\r\n      <VERS vnumber=\"1\">O clap your hands, all ye people; shout unto God with the voice of triumph.</VERS>\r\n      <VERS vnumber=\"2\">For the LORD most high is terrible; he is a great King over all the earth.</VERS>\r\n      <VERS vnumber=\"3\">He shall subdue the people under us, and the nations under our feet.</VERS>\r\n      <VERS vnumber=\"4\">He shall choose our inheritance for us, the excellency of Jacob whom he loved. Selah.</VERS>\r\n      <VERS vnumber=\"5\">God is gone up with a shout, the LORD with the sound of a trumpet.</VERS>\r\n      <VERS vnumber=\"6\">Sing praises to God, sing praises: sing praises unto our King, sing praises.</VERS>\r\n      <VERS vnumber=\"7\">For God is the King of all the earth: sing ye praises with understanding.</VERS>\r\n      <VERS vnumber=\"8\">God reigneth over the heathen: God sitteth upon the throne of his holiness.</VERS>\r\n      <VERS vnumber=\"9\">The 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"48\">\r\n      <CAPTION vref=\"1\">A Song and Psalm for the sons of Korah.</CAPTION>\r\n      <VERS vnumber=\"1\">Great is the LORD, and greatly to be praised in the city of our God, in the mountain of his holiness.</VERS>\r\n      <VERS vnumber=\"2\">Beautiful for situation, the joy of the whole earth, is mount Zion, on the sides of the north, the city of the great King.</VERS>\r\n      <VERS vnumber=\"3\">God is known in her palaces for a refuge.</VERS>\r\n      <VERS vnumber=\"4\">For, lo, the kings were assembled, they passed by together.</VERS>\r\n      <VERS vnumber=\"5\">They saw it, and so they marvelled; they were troubled, and hasted away.</VERS>\r\n      <VERS vnumber=\"6\">Fear took hold upon them there, and pain, as of a woman in travail.</VERS>\r\n      <VERS vnumber=\"7\">Thou breakest the ships of Tarshish with an east wind.</VERS>\r\n      <VERS vnumber=\"8\">As 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.</VERS>\r\n      <VERS vnumber=\"9\">We have thought of thy lovingkindness, O God, in the midst of thy temple.</VERS>\r\n      <VERS vnumber=\"10\">According to thy name, O God, so is thy praise unto the ends of the earth: thy right hand is full of righteousness.</VERS>\r\n      <VERS vnumber=\"11\">Let mount Zion rejoice, let the daughters of Judah be glad, because of thy judgments.</VERS>\r\n      <VERS vnumber=\"12\">Walk about Zion, and go round about her: tell the towers thereof.</VERS>\r\n      <VERS vnumber=\"13\">Mark ye well her bulwarks, consider her palaces; that ye may tell it to the generation following.</VERS>\r\n      <VERS vnumber=\"14\">For this God is our God for ever and ever: he will be our guide even unto death.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"49\">\r\n      <CAPTION vref=\"1\">To the chief Musician, A Psalm for the sons of Korah. </CAPTION>\r\n      <VERS vnumber=\"1\">Hear this, all ye people; give ear, all ye inhabitants of the world:</VERS>\r\n      <VERS vnumber=\"2\">Both low and high, rich and poor, together.</VERS>\r\n      <VERS vnumber=\"3\">My mouth shall speak of wisdom; and the meditation of my heart shall be of understanding.</VERS>\r\n      <VERS vnumber=\"4\">I will incline mine ear to a parable: I will open my dark saying upon the harp.</VERS>\r\n      <VERS vnumber=\"5\">Wherefore should I fear in the days of evil, when the iniquity of my heels shall compass me about?</VERS>\r\n      <VERS vnumber=\"6\">They that trust in their wealth, and boast themselves in the multitude of their riches;</VERS>\r\n      <VERS vnumber=\"7\">None of them can by any means redeem his brother, nor give to God a ransom for him:</VERS>\r\n      <VERS vnumber=\"8\">For the redemption of their soul is precious, and it ceaseth for ever:)</VERS>\r\n      <VERS vnumber=\"9\">That he should still live for ever, and not see corruption.</VERS>\r\n      <VERS vnumber=\"10\">For he seeth that wise men die, likewise the fool and the brutish person perish, and leave their wealth to others.</VERS>\r\n      <VERS vnumber=\"11\">Their 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.</VERS>\r\n      <VERS vnumber=\"12\">Nevertheless man being in honour abideth not: he is like the beasts that perish.</VERS>\r\n      <VERS vnumber=\"13\">This their way is their folly: yet their posterity approve their sayings. Selah.</VERS>\r\n      <VERS vnumber=\"14\">Like 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.</VERS>\r\n      <VERS vnumber=\"15\">But God will redeem my soul from the power of the grave: for he shall receive me. Selah.</VERS>\r\n      <VERS vnumber=\"16\">Be not thou afraid when one is made rich, when the glory of his house is increased;</VERS>\r\n      <VERS vnumber=\"17\">For when he dieth he shall carry nothing away: his glory shall not descend after him.</VERS>\r\n      <VERS vnumber=\"18\">Though while he lived he blessed his soul: and men will praise thee, when thou doest well to thyself.</VERS>\r\n      <VERS vnumber=\"19\">He shall go to the generation of his fathers; they shall never see light.</VERS>\r\n      <VERS vnumber=\"20\">Man that is in honour, and understandeth not, is like the beasts that perish.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"50\">\r\n      <CAPTION vref=\"1\">A Psalm of Asaph. </CAPTION>\r\n      <VERS vnumber=\"1\">The mighty God, even the LORD, hath spoken, and called the earth from the rising of the sun unto the going down thereof.</VERS>\r\n      <VERS vnumber=\"2\">Out of Zion, the perfection of beauty, God hath shined.</VERS>\r\n      <VERS vnumber=\"3\">Our God shall come, and shall not keep silence: a fire shall devour before him, and it shall be very tempestuous round about him.</VERS>\r\n      <VERS vnumber=\"4\">He shall call to the heavens from above, and to the earth, that he may judge his people.</VERS>\r\n      <VERS vnumber=\"5\">Gather my saints together unto me; those that have made a covenant with me by sacrifice.</VERS>\r\n      <VERS vnumber=\"6\">And the heavens shall declare his righteousness: for God is judge himself. Selah.</VERS>\r\n      <VERS vnumber=\"7\">Hear, O my people, and I will speak; O Israel, and I will testify against thee: I am God, even thy God.</VERS>\r\n      <VERS vnumber=\"8\">I will not reprove thee for thy sacrifices or thy burnt offerings, to have been continually before me.</VERS>\r\n      <VERS vnumber=\"9\">I will take no bullock out of thy house, nor he goats out of thy folds.</VERS>\r\n      <VERS vnumber=\"10\">For every beast of the forest is mine, and the cattle upon a thousand hills.</VERS>\r\n      <VERS vnumber=\"11\">I know all the fowls of the mountains: and the wild beasts of the field are mine.</VERS>\r\n      <VERS vnumber=\"12\">If I were hungry, I would not tell thee: for the world is mine, and the fulness thereof.</VERS>\r\n      <VERS vnumber=\"13\">Will I eat the flesh of bulls, or drink the blood of goats?</VERS>\r\n      <VERS vnumber=\"14\">Offer unto God thanksgiving; and pay thy vows unto the most High:</VERS>\r\n      <VERS vnumber=\"15\">And call upon me in the day of trouble: I will deliver thee, and thou shalt glorify me.</VERS>\r\n      <VERS vnumber=\"16\">But unto the wicked God saith, What hast thou to do to declare my statutes, or that thou shouldest take my covenant in thy mouth?</VERS>\r\n      <VERS vnumber=\"17\">Seeing thou hatest instruction, and castest my words behind thee.</VERS>\r\n      <VERS vnumber=\"18\">When thou sawest a thief, then thou consentedst with him, and hast been partaker with adulterers.</VERS>\r\n      <VERS vnumber=\"19\">Thou givest thy mouth to evil, and thy tongue frameth deceit.</VERS>\r\n      <VERS vnumber=\"20\">Thou sittest and speakest against thy brother; thou slanderest thine own mother's son.</VERS>\r\n      <VERS vnumber=\"21\">These 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.</VERS>\r\n      <VERS vnumber=\"22\">Now consider this, ye that forget God, lest I tear you in pieces, and there be none to deliver.</VERS>\r\n      <VERS vnumber=\"23\">Whoso offereth praise glorifieth me: and to him that ordereth his conversation aright will I shew the salvation of God.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"51\">\r\n      <CAPTION vref=\"1\">To the chief Musician, A Psalm of David, when Nathan the prophet came unto him, after he had gone in to Bathsheba. </CAPTION>\r\n      <VERS vnumber=\"1\">Have mercy upon me, O God, according to thy lovingkindness: according unto the multitude of thy tender mercies blot out my transgressions.</VERS>\r\n      <VERS vnumber=\"2\">Wash me throughly from mine iniquity, and cleanse me from my sin.</VERS>\r\n      <VERS vnumber=\"3\">For I acknowledge my transgressions: and my sin is ever before me.</VERS>\r\n      <VERS vnumber=\"4\">Against 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.</VERS>\r\n      <VERS vnumber=\"5\">Behold, I was shapen in iniquity; and in sin did my mother conceive me.</VERS>\r\n      <VERS vnumber=\"6\">Behold, thou desirest truth in the inward parts: and in the hidden part thou shalt make me to know wisdom.</VERS>\r\n      <VERS vnumber=\"7\">Purge me with hyssop, and I shall be clean: wash me, and I shall be whiter than snow.</VERS>\r\n      <VERS vnumber=\"8\">Make me to hear joy and gladness; that the bones which thou hast broken may rejoice.</VERS>\r\n      <VERS vnumber=\"9\">Hide thy face from my sins, and blot out all mine iniquities.</VERS>\r\n      <VERS vnumber=\"10\">Create in me a clean heart, O God; and renew a right spirit within me.</VERS>\r\n      <VERS vnumber=\"11\">Cast me not away from thy presence; and take not thy holy spirit from me.</VERS>\r\n      <VERS vnumber=\"12\">Restore unto me the joy of thy salvation; and uphold me with thy free spirit.</VERS>\r\n      <VERS vnumber=\"13\">Then will I teach transgressors thy ways; and sinners shall be converted unto thee.</VERS>\r\n      <VERS vnumber=\"14\">Deliver me from bloodguiltiness, O God, thou God of my salvation: and my tongue shall sing aloud of thy righteousness.</VERS>\r\n      <VERS vnumber=\"15\">O Lord, open thou my lips; and my mouth shall shew forth thy praise.</VERS>\r\n      <VERS vnumber=\"16\">For thou desirest not sacrifice; else would I give it: thou delightest not in burnt offering.</VERS>\r\n      <VERS vnumber=\"17\">The sacrifices of God are a broken spirit: a broken and a contrite heart, O God, thou wilt not despise.</VERS>\r\n      <VERS vnumber=\"18\">Do good in thy good pleasure unto Zion: build thou the walls of Jerusalem.</VERS>\r\n      <VERS vnumber=\"19\">Then shalt thou be pleased with the sacrifices of righteousness, with burnt offering and whole burnt offering: then shall they offer bullocks upon thine altar.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"52\">\r\n      <CAPTION vref=\"1\">To the chief Musician, Maschil, A Psalm of David, when Doeg the Edomite came and told Saul, and said unto him, David is come to the house of Ahimelech. </CAPTION>\r\n      <VERS vnumber=\"1\">Why boastest thou thyself in mischief, O mighty man? the goodness of God endureth continually.</VERS>\r\n      <VERS vnumber=\"2\">Thy tongue deviseth mischiefs; like a sharp razor, working deceitfully.</VERS>\r\n      <VERS vnumber=\"3\">Thou lovest evil more than good; and lying rather than to speak righteousness. Selah.</VERS>\r\n      <VERS vnumber=\"4\">Thou lovest all devouring words, O thou deceitful tongue.</VERS>\r\n      <VERS vnumber=\"5\">God 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.</VERS>\r\n      <VERS vnumber=\"6\">The righteous also shall see, and fear, and shall laugh at him:</VERS>\r\n      <VERS vnumber=\"7\">Lo, this is the man that made not God his strength; but trusted in the abundance of his riches, and strengthened himself in his wickedness.</VERS>\r\n      <VERS vnumber=\"8\">But I am like a green olive tree in the house of God: I trust in the mercy of God for ever and ever.</VERS>\r\n      <VERS vnumber=\"9\">I will praise thee for ever, because thou hast done it: and I will wait on thy name; for it is good before thy saints.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"53\">\r\n      <CAPTION vref=\"1\">To the chief Musician upon Mahalath, Maschil, A Psalm of David. </CAPTION>\r\n      <VERS vnumber=\"1\">The fool hath said in his heart, There is no God. Corrupt are they, and have done abominable iniquity: there is none that doeth good.</VERS>\r\n      <VERS vnumber=\"2\">God looked down from heaven upon the children of men, to see if there were any that did understand, that did seek God.</VERS>\r\n      <VERS vnumber=\"3\">Every one of them is gone back: they are altogether become filthy; there is none that doeth good, no, not one.</VERS>\r\n      <VERS vnumber=\"4\">Have the workers of iniquity no knowledge? who eat up my people as they eat bread: they have not called upon God.</VERS>\r\n      <VERS vnumber=\"5\">There 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.</VERS>\r\n      <VERS vnumber=\"6\">Oh 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"54\">\r\n      <CAPTION vref=\"1\">To the chief Musician on Neginoth, Maschil, A Psalm of David, when the Ziphims came and said to Saul, Doth not David hide himself with us? </CAPTION>\r\n      <VERS vnumber=\"1\">Save me, O God, by thy name, and judge me by thy strength.</VERS>\r\n      <VERS vnumber=\"2\">Hear my prayer, O God; give ear to the words of my mouth.</VERS>\r\n      <VERS vnumber=\"3\">For strangers are risen up against me, and oppressors seek after my soul: they have not set God before them. Selah.</VERS>\r\n      <VERS vnumber=\"4\">Behold, God is mine helper: the Lord is with them that uphold my soul.</VERS>\r\n      <VERS vnumber=\"5\">He shall reward evil unto mine enemies: cut them off in thy truth.</VERS>\r\n      <VERS vnumber=\"6\">I will freely sacrifice unto thee: I will praise thy name, O LORD; for it is good.</VERS>\r\n      <VERS vnumber=\"7\">For he hath delivered me out of all trouble: and mine eye hath seen his desire upon mine enemies.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"55\">\r\n      <CAPTION vref=\"1\">To the chief Musician on Neginoth, Maschil, A Psalm of David. </CAPTION>\r\n      <VERS vnumber=\"1\">Give ear to my prayer, O God; and hide not thyself from my supplication.</VERS>\r\n      <VERS vnumber=\"2\">Attend unto me, and hear me: I mourn in my complaint, and make a noise;</VERS>\r\n      <VERS vnumber=\"3\">Because 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.</VERS>\r\n      <VERS vnumber=\"4\">My heart is sore pained within me: and the terrors of death are fallen upon me.</VERS>\r\n      <VERS vnumber=\"5\">Fearfulness and trembling are come upon me, and horror hath overwhelmed me.</VERS>\r\n      <VERS vnumber=\"6\">And I said, Oh that I had wings like a dove! for then would I fly away, and be at rest.</VERS>\r\n      <VERS vnumber=\"7\">Lo, then would I wander far off, and remain in the wilderness. Selah.</VERS>\r\n      <VERS vnumber=\"8\">I would hasten my escape from the windy storm and tempest.</VERS>\r\n      <VERS vnumber=\"9\">Destroy, O Lord, and divide their tongues: for I have seen violence and strife in the city.</VERS>\r\n      <VERS vnumber=\"10\">Day and night they go about it upon the walls thereof: mischief also and sorrow are in the midst of it.</VERS>\r\n      <VERS vnumber=\"11\">Wickedness is in the midst thereof: deceit and guile depart not from her streets.</VERS>\r\n      <VERS vnumber=\"12\">For 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:</VERS>\r\n      <VERS vnumber=\"13\">But it was thou, a man mine equal, my guide, and mine acquaintance.</VERS>\r\n      <VERS vnumber=\"14\">We took sweet counsel together, and walked unto the house of God in company.</VERS>\r\n      <VERS vnumber=\"15\">Let death seize upon them, and let them go down quick into hell: for wickedness is in their dwellings, and among them.</VERS>\r\n      <VERS vnumber=\"16\">As for me, I will call upon God; and the LORD shall save me.</VERS>\r\n      <VERS vnumber=\"17\">Evening, and morning, and at noon, will I pray, and cry aloud: and he shall hear my voice.</VERS>\r\n      <VERS vnumber=\"18\">He hath delivered my soul in peace from the battle that was against me: for there were many with me.</VERS>\r\n      <VERS vnumber=\"19\">God shall hear, and afflict them, even he that abideth of old. Selah. Because they have no changes, therefore they fear not God.</VERS>\r\n      <VERS vnumber=\"20\">He hath put forth his hands against such as be at peace with him: he hath broken his covenant.</VERS>\r\n      <VERS vnumber=\"21\">The 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.</VERS>\r\n      <VERS vnumber=\"22\">Cast thy burden upon the LORD, and he shall sustain thee: he shall never suffer the righteous to be moved.</VERS>\r\n      <VERS vnumber=\"23\">But 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"56\">\r\n      <CAPTION vref=\"1\">To the chief Musician upon Jonathelemrechokim, Michtam of David, when the Philistines took him in Gath. </CAPTION>\r\n      <VERS vnumber=\"1\">Be merciful unto me, O God: for man would swallow me up; he fighting daily oppresseth me.</VERS>\r\n      <VERS vnumber=\"2\">Mine enemies would daily swallow me up: for they be many that fight against me, O thou most High.</VERS>\r\n      <VERS vnumber=\"3\">What time I am afraid, I will trust in thee.</VERS>\r\n      <VERS vnumber=\"4\">In God I will praise his word, in God I have put my trust; I will not fear what flesh can do unto me.</VERS>\r\n      <VERS vnumber=\"5\">Every day they wrest my words: all their thoughts are against me for evil.</VERS>\r\n      <VERS vnumber=\"6\">They gather themselves together, they hide themselves, they mark my steps, when they wait for my soul.</VERS>\r\n      <VERS vnumber=\"7\">Shall they escape by iniquity? in thine anger cast down the people, O God.</VERS>\r\n      <VERS vnumber=\"8\">Thou tellest my wanderings: put thou my tears into thy bottle: are they not in thy book?</VERS>\r\n      <VERS vnumber=\"9\">When I cry unto thee, then shall mine enemies turn back: this I know; for God is for me.</VERS>\r\n      <VERS vnumber=\"10\">In God will I praise his word: in the LORD will I praise his word.</VERS>\r\n      <VERS vnumber=\"11\">In God have I put my trust: I will not be afraid what man can do unto me.</VERS>\r\n      <VERS vnumber=\"12\">Thy vows are upon me, O God: I will render praises unto thee.</VERS>\r\n      <VERS vnumber=\"13\">For 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?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"57\">\r\n      <CAPTION vref=\"1\">To the chief Musician, Altaschith, Michtam of David, when he fled from Saul in the cave. </CAPTION>\r\n      <VERS vnumber=\"1\">Be 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.</VERS>\r\n      <VERS vnumber=\"2\">I will cry unto God most high; unto God that performeth all things for me.</VERS>\r\n      <VERS vnumber=\"3\">He 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.</VERS>\r\n      <VERS vnumber=\"4\">My 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.</VERS>\r\n      <VERS vnumber=\"5\">Be thou exalted, O God, above the heavens; let thy glory be above all the earth.</VERS>\r\n      <VERS vnumber=\"6\">They 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.</VERS>\r\n      <VERS vnumber=\"7\">My heart is fixed, O God, my heart is fixed: I will sing and give praise.</VERS>\r\n      <VERS vnumber=\"8\">Awake up, my glory; awake, psaltery and harp: I myself will awake early.</VERS>\r\n      <VERS vnumber=\"9\">I will praise thee, O Lord, among the people: I will sing unto thee among the nations.</VERS>\r\n      <VERS vnumber=\"10\">For thy mercy is great unto the heavens, and thy truth unto the clouds.</VERS>\r\n      <VERS vnumber=\"11\">Be thou exalted, O God, above the heavens: let thy glory be above all the earth.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"58\">\r\n      <CAPTION vref=\"1\">To the chief Musician, Altaschith, Michtam of David. </CAPTION>\r\n      <VERS vnumber=\"1\">Do ye indeed speak righteousness, O congregation? do ye judge uprightly, O ye sons of men?</VERS>\r\n      <VERS vnumber=\"2\">Yea, in heart ye work wickedness; ye weigh the violence of your hands in the earth.</VERS>\r\n      <VERS vnumber=\"3\">The wicked are estranged from the womb: they go astray as soon as they be born, speaking lies.</VERS>\r\n      <VERS vnumber=\"4\">Their poison is like the poison of a serpent: they are like the deaf adder that stoppeth her ear;</VERS>\r\n      <VERS vnumber=\"5\">Which will not hearken to the voice of charmers, charming never so wisely.</VERS>\r\n      <VERS vnumber=\"6\">Break their teeth, O God, in their mouth: break out the great teeth of the young lions, O LORD.</VERS>\r\n      <VERS vnumber=\"7\">Let them melt away as waters which run continually: when he bendeth his bow to shoot his arrows, let them be as cut in pieces.</VERS>\r\n      <VERS vnumber=\"8\">As 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.</VERS>\r\n      <VERS vnumber=\"9\">Before your pots can feel the thorns, he shall take them away as with a whirlwind, both living, and in his wrath.</VERS>\r\n      <VERS vnumber=\"10\">The righteous shall rejoice when he seeth the vengeance: he shall wash his feet in the blood of the wicked.</VERS>\r\n      <VERS vnumber=\"11\">So that a man shall say, Verily there is a reward for the righteous: verily he is a God that judgeth in the earth.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"59\">\r\n      <CAPTION vref=\"1\">To the chief Musician, Altaschith, Michtam of David; when Saul sent, and they watched the house to kill him. </CAPTION>\r\n      <VERS vnumber=\"1\">Deliver me from mine enemies, O my God: defend me from them that rise up against me.</VERS>\r\n      <VERS vnumber=\"2\">Deliver me from the workers of iniquity, and save me from bloody men.</VERS>\r\n      <VERS vnumber=\"3\">For, lo, they lie in wait for my soul: the mighty are gathered against me; not for my transgression, nor for my sin, O LORD.</VERS>\r\n      <VERS vnumber=\"4\">They run and prepare themselves without my fault: awake to help me, and behold.</VERS>\r\n      <VERS vnumber=\"5\">Thou therefore, O LORD God of hosts, the God of Israel, awake to visit all the heathen: be not merciful to any wicked transgressors. Selah.</VERS>\r\n      <VERS vnumber=\"6\">They return at evening: they make a noise like a dog, and go round about the city.</VERS>\r\n      <VERS vnumber=\"7\">Behold, they belch out with their mouth: swords are in their lips: for who, say they, doth hear?</VERS>\r\n      <VERS vnumber=\"8\">But thou, O LORD, shalt laugh at them; thou shalt have all the heathen in derision.</VERS>\r\n      <VERS vnumber=\"9\">Because of his strength will I wait upon thee: for God is my defence.</VERS>\r\n      <VERS vnumber=\"10\">The God of my mercy shall prevent me: God shall let me see my desire upon mine enemies.</VERS>\r\n      <VERS vnumber=\"11\">Slay them not, lest my people forget: scatter them by thy power; and bring them down, O Lord our shield.</VERS>\r\n      <VERS vnumber=\"12\">For 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.</VERS>\r\n      <VERS vnumber=\"13\">Consume 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.</VERS>\r\n      <VERS vnumber=\"14\">And at evening let them return; and let them make a noise like a dog, and go round about the city.</VERS>\r\n      <VERS vnumber=\"15\">Let them wander up and down for meat, and grudge if they be not satisfied.</VERS>\r\n      <VERS vnumber=\"16\">But 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.</VERS>\r\n      <VERS vnumber=\"17\">Unto thee, O my strength, will I sing: for God is my defence, and the God of my mercy.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"60\">\r\n      <CAPTION vref=\"1\">To the chief Musician upon Shushaneduth, Michtam of David, to teach; when he strove with Aramnaharaim and with Aramzobah, when Joab returned, and smote of Edom in the valley of salt twelve thousand. </CAPTION>\r\n      <VERS vnumber=\"1\">O God, thou hast cast us off, thou hast scattered us, thou hast been displeased; O turn thyself to us again.</VERS>\r\n      <VERS vnumber=\"2\">Thou hast made the earth to tremble; thou hast broken it: heal the breaches thereof; for it shaketh.</VERS>\r\n      <VERS vnumber=\"3\">Thou hast shewed thy people hard things: thou hast made us to drink the wine of astonishment.</VERS>\r\n      <VERS vnumber=\"4\">Thou hast given a banner to them that fear thee, that it may be displayed because of the truth. Selah.</VERS>\r\n      <VERS vnumber=\"5\">That thy beloved may be delivered; save with thy right hand, and hear me.</VERS>\r\n      <VERS vnumber=\"6\">God hath spoken in his holiness; I will rejoice, I will divide Shechem, and mete out the valley of Succoth.</VERS>\r\n      <VERS vnumber=\"7\">Gilead is mine, and Manasseh is mine; Ephraim also is the strength of mine head; Judah is my lawgiver;</VERS>\r\n      <VERS vnumber=\"8\">Moab is my washpot; over Edom will I cast out my shoe: Philistia, triumph thou because of me.</VERS>\r\n      <VERS vnumber=\"9\">Who will bring me into the strong city? who will lead me into Edom?</VERS>\r\n      <VERS vnumber=\"10\">Wilt not thou, O God, which hadst cast us off? and thou, O God, which didst not go out with our armies?</VERS>\r\n      <VERS vnumber=\"11\">Give us help from trouble: for vain is the help of man.</VERS>\r\n      <VERS vnumber=\"12\">Through God we shall do valiantly: for he it is that shall tread down our enemies.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"61\">\r\n      <CAPTION vref=\"1\">To the chief Musician upon Neginah, A Psalm of David. </CAPTION>\r\n      <VERS vnumber=\"1\">Hear my cry, O God; attend unto my prayer.</VERS>\r\n      <VERS vnumber=\"2\">From 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.</VERS>\r\n      <VERS vnumber=\"3\">For thou hast been a shelter for me, and a strong tower from the enemy.</VERS>\r\n      <VERS vnumber=\"4\">I will abide in thy tabernacle for ever: I will trust in the covert of thy wings. Selah.</VERS>\r\n      <VERS vnumber=\"5\">For thou, O God, hast heard my vows: thou hast given me the heritage of those that fear thy name.</VERS>\r\n      <VERS vnumber=\"6\">Thou wilt prolong the king's life: and his years as many generations.</VERS>\r\n      <VERS vnumber=\"7\">He shall abide before God for ever: O prepare mercy and truth, which may preserve him.</VERS>\r\n      <VERS vnumber=\"8\">So will I sing praise unto thy name for ever, that I may daily perform my vows.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"62\">\r\n      <CAPTION vref=\"1\">To the chief Musician, to Jeduthun, A Psalm of David. </CAPTION>\r\n      <VERS vnumber=\"1\">Truly my soul waiteth upon God: from him cometh my salvation.</VERS>\r\n      <VERS vnumber=\"2\">He only is my rock and my salvation; he is my defence; I shall not be greatly moved.</VERS>\r\n      <VERS vnumber=\"3\">How 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.</VERS>\r\n      <VERS vnumber=\"4\">They only consult to cast him down from his excellency: they delight in lies: they bless with their mouth, but they curse inwardly. Selah.</VERS>\r\n      <VERS vnumber=\"5\">My soul, wait thou only upon God; for my expectation is from him.</VERS>\r\n      <VERS vnumber=\"6\">He only is my rock and my salvation: he is my defence; I shall not be moved.</VERS>\r\n      <VERS vnumber=\"7\">In God is my salvation and my glory: the rock of my strength, and my refuge, is in God.</VERS>\r\n      <VERS vnumber=\"8\">Trust in him at all times; ye people, pour out your heart before him: God is a refuge for us. Selah.</VERS>\r\n      <VERS vnumber=\"9\">Surely 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.</VERS>\r\n      <VERS vnumber=\"10\">Trust not in oppression, and become not vain in robbery: if riches increase, set not your heart upon them.</VERS>\r\n      <VERS vnumber=\"11\">God hath spoken once; twice have I heard this; that power belongeth unto God.</VERS>\r\n      <VERS vnumber=\"12\">Also unto thee, O Lord, belongeth mercy: for thou renderest to every man according to his work.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"63\">\r\n      <CAPTION vref=\"1\">A Psalm of David, when he was in the wilderness of Judah. </CAPTION>\r\n      <VERS vnumber=\"1\">O 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;</VERS>\r\n      <VERS vnumber=\"2\">To see thy power and thy glory, so as I have seen thee in the sanctuary.</VERS>\r\n      <VERS vnumber=\"3\">Because thy lovingkindness is better than life, my lips shall praise thee.</VERS>\r\n      <VERS vnumber=\"4\">Thus will I bless thee while I live: I will lift up my hands in thy name.</VERS>\r\n      <VERS vnumber=\"5\">My soul shall be satisfied as with marrow and fatness; and my mouth shall praise thee with joyful lips:</VERS>\r\n      <VERS vnumber=\"6\">When I remember thee upon my bed, and meditate on thee in the night watches.</VERS>\r\n      <VERS vnumber=\"7\">Because thou hast been my help, therefore in the shadow of thy wings will I rejoice.</VERS>\r\n      <VERS vnumber=\"8\">My soul followeth hard after thee: thy right hand upholdeth me.</VERS>\r\n      <VERS vnumber=\"9\">But those that seek my soul, to destroy it, shall go into the lower parts of the earth.</VERS>\r\n      <VERS vnumber=\"10\">They shall fall by the sword: they shall be a portion for foxes.</VERS>\r\n      <VERS vnumber=\"11\">But 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"64\">\r\n      <CAPTION vref=\"1\">To the chief Musician, A Psalm of David. </CAPTION>\r\n      <VERS vnumber=\"1\">Hear my voice, O God, in my prayer: preserve my life from fear of the enemy.</VERS>\r\n      <VERS vnumber=\"2\">Hide me from the secret counsel of the wicked; from the insurrection of the workers of iniquity:</VERS>\r\n      <VERS vnumber=\"3\">Who whet their tongue like a sword, and bend their bows to shoot their arrows, even bitter words:</VERS>\r\n      <VERS vnumber=\"4\">That they may shoot in secret at the perfect: suddenly do they shoot at him, and fear not.</VERS>\r\n      <VERS vnumber=\"5\">They encourage themselves in an evil matter: they commune of laying snares privily; they say, Who shall see them?</VERS>\r\n      <VERS vnumber=\"6\">They search out iniquities; they accomplish a diligent search: both the inward thought of every one of them, and the heart, is deep.</VERS>\r\n      <VERS vnumber=\"7\">But God shall shoot at them with an arrow; suddenly shall they be wounded.</VERS>\r\n      <VERS vnumber=\"8\">So they shall make their own tongue to fall upon themselves: all that see them shall flee away.</VERS>\r\n      <VERS vnumber=\"9\">And all men shall fear, and shall declare the work of God; for they shall wisely consider of his doing.</VERS>\r\n      <VERS vnumber=\"10\">The righteous shall be glad in the LORD, and shall trust in him; and all the upright in heart shall glory.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"65\">\r\n      <CAPTION vref=\"1\">To the chief Musician, A Psalm and Song of David. </CAPTION>\r\n      <VERS vnumber=\"1\">Praise waiteth for thee, O God, in Sion: and unto thee shall the vow be performed.</VERS>\r\n      <VERS vnumber=\"2\">O thou that hearest prayer, unto thee shall all flesh come.</VERS>\r\n      <VERS vnumber=\"3\">Iniquities prevail against me: as for our transgressions, thou shalt purge them away.</VERS>\r\n      <VERS vnumber=\"4\">Blessed 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.</VERS>\r\n      <VERS vnumber=\"5\">By 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:</VERS>\r\n      <VERS vnumber=\"6\">Which by his strength setteth fast the mountains; being girded with power:</VERS>\r\n      <VERS vnumber=\"7\">Which stilleth the noise of the seas, the noise of their waves, and the tumult of the people.</VERS>\r\n      <VERS vnumber=\"8\">They also that dwell in the uttermost parts are afraid at thy tokens: thou makest the outgoings of the morning and evening to rejoice.</VERS>\r\n      <VERS vnumber=\"9\">Thou 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.</VERS>\r\n      <VERS vnumber=\"10\">Thou waterest the ridges thereof abundantly: thou settlest the furrows thereof: thou makest it soft with showers: thou blessest the springing thereof.</VERS>\r\n      <VERS vnumber=\"11\">Thou crownest the year with thy goodness; and thy paths drop fatness.</VERS>\r\n      <VERS vnumber=\"12\">They drop upon the pastures of the wilderness: and the little hills rejoice on every side.</VERS>\r\n      <VERS vnumber=\"13\">The pastures are clothed with flocks; the valleys also are covered over with corn; they shout for joy, they also sing.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"66\">\r\n      <CAPTION vref=\"1\">To the chief Musician, A Song or Psalm. </CAPTION>\r\n      <VERS vnumber=\"1\">Make a joyful noise unto God, all ye lands:</VERS>\r\n      <VERS vnumber=\"2\">Sing forth the honour of his name: make his praise glorious.</VERS>\r\n      <VERS vnumber=\"3\">Say unto God, How terrible art thou in thy works! through the greatness of thy power shall thine enemies submit themselves unto thee.</VERS>\r\n      <VERS vnumber=\"4\">All the earth shall worship thee, and shall sing unto thee; they shall sing to thy name. Selah.</VERS>\r\n      <VERS vnumber=\"5\">Come and see the works of God: he is terrible in his doing toward the children of men.</VERS>\r\n      <VERS vnumber=\"6\">He turned the sea into dry land: they went through the flood on foot: there did we rejoice in him.</VERS>\r\n      <VERS vnumber=\"7\">He ruleth by his power for ever; his eyes behold the nations: let not the rebellious exalt themselves. Selah.</VERS>\r\n      <VERS vnumber=\"8\">O bless our God, ye people, and make the voice of his praise to be heard:</VERS>\r\n      <VERS vnumber=\"9\">Which holdeth our soul in life, and suffereth not our feet to be moved.</VERS>\r\n      <VERS vnumber=\"10\">For thou, O God, hast proved us: thou hast tried us, as silver is tried.</VERS>\r\n      <VERS vnumber=\"11\">Thou broughtest us into the net; thou laidst affliction upon our loins.</VERS>\r\n      <VERS vnumber=\"12\">Thou hast caused men to ride over our heads; we went through fire and through water: but thou broughtest us out into a wealthy place.</VERS>\r\n      <VERS vnumber=\"13\">I will go into thy house with burnt offerings: I will pay thee my vows,</VERS>\r\n      <VERS vnumber=\"14\">Which my lips have uttered, and my mouth hath spoken, when I was in trouble.</VERS>\r\n      <VERS vnumber=\"15\">I will offer unto thee burnt sacrifices of fatlings, with the incense of rams; I will offer bullocks with goats. Selah.</VERS>\r\n      <VERS vnumber=\"16\">Come and hear, all ye that fear God, and I will declare what he hath done for my soul.</VERS>\r\n      <VERS vnumber=\"17\">I cried unto him with my mouth, and he was extolled with my tongue.</VERS>\r\n      <VERS vnumber=\"18\">If I regard iniquity in my heart, the Lord will not hear me:</VERS>\r\n      <VERS vnumber=\"19\">But verily God hath heard me; he hath attended to the voice of my prayer.</VERS>\r\n      <VERS vnumber=\"20\">Blessed be God, which hath not turned away my prayer, nor his mercy from me.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"67\">\r\n      <CAPTION vref=\"1\">To the chief Musician on Neginoth, A Psalm or Song. </CAPTION>\r\n      <VERS vnumber=\"1\">God be merciful unto us, and bless us; and cause his face to shine upon us; Selah.</VERS>\r\n      <VERS vnumber=\"2\">That thy way may be known upon earth, thy saving health among all nations.</VERS>\r\n      <VERS vnumber=\"3\">Let the people praise thee, O God; let all the people praise thee.</VERS>\r\n      <VERS vnumber=\"4\">O let the nations be glad and sing for joy: for thou shalt judge the people righteously, and govern the nations upon earth. Selah.</VERS>\r\n      <VERS vnumber=\"5\">Let the people praise thee, O God; let all the people praise thee.</VERS>\r\n      <VERS vnumber=\"6\">Then shall the earth yield her increase; and God, even our own God, shall bless us.</VERS>\r\n      <VERS vnumber=\"7\">God shall bless us; and all the ends of the earth shall fear him.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"68\">\r\n      <CAPTION vref=\"1\">To the chief Musician, A Psalm or Song of David. </CAPTION>\r\n      <VERS vnumber=\"1\">Let God arise, let his enemies be scattered: let them also that hate him flee before him.</VERS>\r\n      <VERS vnumber=\"2\">As smoke is driven away, so drive them away: as wax melteth before the fire, so let the wicked perish at the presence of God.</VERS>\r\n      <VERS vnumber=\"3\">But let the righteous be glad; let them rejoice before God: yea, let them exceedingly rejoice.</VERS>\r\n      <VERS vnumber=\"4\">Sing unto God, sing praises to his name: extol him that rideth upon the heavens by his name JAH, and rejoice before him.</VERS>\r\n      <VERS vnumber=\"5\">A father of the fatherless, and a judge of the widows, is God in his holy habitation.</VERS>\r\n      <VERS vnumber=\"6\">God setteth the solitary in families: he bringeth out those which are bound with chains: but the rebellious dwell in a dry land.</VERS>\r\n      <VERS vnumber=\"7\">O God, when thou wentest forth before thy people, when thou didst march through the wilderness; Selah:</VERS>\r\n      <VERS vnumber=\"8\">The 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.</VERS>\r\n      <VERS vnumber=\"9\">Thou, O God, didst send a plentiful rain, whereby thou didst confirm thine inheritance, when it was weary.</VERS>\r\n      <VERS vnumber=\"10\">Thy congregation hath dwelt therein: thou, O God, hast prepared of thy goodness for the poor.</VERS>\r\n      <VERS vnumber=\"11\">The Lord gave the word: great was the company of those that published it.</VERS>\r\n      <VERS vnumber=\"12\">Kings of armies did flee apace: and she that tarried at home divided the spoil.</VERS>\r\n      <VERS vnumber=\"13\">Though 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.</VERS>\r\n      <VERS vnumber=\"14\">When the Almighty scattered kings in it, it was white as snow in Salmon.</VERS>\r\n      <VERS vnumber=\"15\">The hill of God is as the hill of Bashan; an high hill as the hill of Bashan.</VERS>\r\n      <VERS vnumber=\"16\">Why leap ye, ye high hills? this is the hill which God desireth to dwell in; yea, the LORD will dwell in it for ever.</VERS>\r\n      <VERS vnumber=\"17\">The chariots of God are twenty thousand, even thousands of angels: the Lord is among them, as in Sinai, in the holy place.</VERS>\r\n      <VERS vnumber=\"18\">Thou 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.</VERS>\r\n      <VERS vnumber=\"19\">Blessed be the Lord, who daily loadeth us with benefits, even the God of our salvation. Selah.</VERS>\r\n      <VERS vnumber=\"20\">He that is our God is the God of salvation; and unto GOD the Lord belong the issues from death.</VERS>\r\n      <VERS vnumber=\"21\">But God shall wound the head of his enemies, and the hairy scalp of such an one as goeth on still in his trespasses.</VERS>\r\n      <VERS vnumber=\"22\">The Lord said, I will bring again from Bashan, I will bring my people again from the depths of the sea:</VERS>\r\n      <VERS vnumber=\"23\">That thy foot may be dipped in the blood of thine enemies, and the tongue of thy dogs in the same.</VERS>\r\n      <VERS vnumber=\"24\">They have seen thy goings, O God; even the goings of my God, my King, in the sanctuary.</VERS>\r\n      <VERS vnumber=\"25\">The singers went before, the players on instruments followed after; among them were the damsels playing with timbrels.</VERS>\r\n      <VERS vnumber=\"26\">Bless ye God in the congregations, even the Lord, from the fountain of Israel.</VERS>\r\n      <VERS vnumber=\"27\">There is little Benjamin with their ruler, the princes of Judah and their council, the princes of Zebulun, and the princes of Naphtali.</VERS>\r\n      <VERS vnumber=\"28\">Thy God hath commanded thy strength: strengthen, O God, that which thou hast wrought for us.</VERS>\r\n      <VERS vnumber=\"29\">Because of thy temple at Jerusalem shall kings bring presents unto thee.</VERS>\r\n      <VERS vnumber=\"30\">Rebuke 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.</VERS>\r\n      <VERS vnumber=\"31\">Princes shall come out of Egypt; Ethiopia shall soon stretch out her hands unto God.</VERS>\r\n      <VERS vnumber=\"32\">Sing unto God, ye kingdoms of the earth; O sing praises unto the Lord; Selah:</VERS>\r\n      <VERS vnumber=\"33\">To him that rideth upon the heavens of heavens, which were of old; lo, he doth send out his voice, and that a mighty voice.</VERS>\r\n      <VERS vnumber=\"34\">Ascribe ye strength unto God: his excellency is over Israel, and his strength is in the clouds.</VERS>\r\n      <VERS vnumber=\"35\">O 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"69\">\r\n      <CAPTION vref=\"1\">To the chief Musician upon Shoshannim, A Psalm of David. </CAPTION>\r\n      <VERS vnumber=\"1\">Save me, O God; for the waters are come in unto my soul.</VERS>\r\n      <VERS vnumber=\"2\">I sink in deep mire, where there is no standing: I am come into deep waters, where the floods overflow me.</VERS>\r\n      <VERS vnumber=\"3\">I am weary of my crying: my throat is dried: mine eyes fail while I wait for my God.</VERS>\r\n      <VERS vnumber=\"4\">They 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.</VERS>\r\n      <VERS vnumber=\"5\">O God, thou knowest my foolishness; and my sins are not hid from thee.</VERS>\r\n      <VERS vnumber=\"6\">Let 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.</VERS>\r\n      <VERS vnumber=\"7\">Because for thy sake I have borne reproach; shame hath covered my face.</VERS>\r\n      <VERS vnumber=\"8\">I am become a stranger unto my brethren, and an alien unto my mother's children.</VERS>\r\n      <VERS vnumber=\"9\">For the zeal of thine house hath eaten me up; and the reproaches of them that reproached thee are fallen upon me.</VERS>\r\n      <VERS vnumber=\"10\">When I wept, and chastened my soul with fasting, that was to my reproach.</VERS>\r\n      <VERS vnumber=\"11\">I made sackcloth also my garment; and I became a proverb to them.</VERS>\r\n      <VERS vnumber=\"12\">They that sit in the gate speak against me; and I was the song of the drunkards.</VERS>\r\n      <VERS vnumber=\"13\">But 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.</VERS>\r\n      <VERS vnumber=\"14\">Deliver 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.</VERS>\r\n      <VERS vnumber=\"15\">Let not the waterflood overflow me, neither let the deep swallow me up, and let not the pit shut her mouth upon me.</VERS>\r\n      <VERS vnumber=\"16\">Hear me, O LORD; for thy lovingkindness is good: turn unto me according to the multitude of thy tender mercies.</VERS>\r\n      <VERS vnumber=\"17\">And hide not thy face from thy servant; for I am in trouble: hear me speedily.</VERS>\r\n      <VERS vnumber=\"18\">Draw nigh unto my soul, and redeem it: deliver me because of mine enemies.</VERS>\r\n      <VERS vnumber=\"19\">Thou hast known my reproach, and my shame, and my dishonour: mine adversaries are all before thee.</VERS>\r\n      <VERS vnumber=\"20\">Reproach 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.</VERS>\r\n      <VERS vnumber=\"21\">They gave me also gall for my meat; and in my thirst they gave me vinegar to drink.</VERS>\r\n      <VERS vnumber=\"22\">Let their table become a snare before them: and that which should have been for their welfare, let it become a trap.</VERS>\r\n      <VERS vnumber=\"23\">Let their eyes be darkened, that they see not; and make their loins continually to shake.</VERS>\r\n      <VERS vnumber=\"24\">Pour out thine indignation upon them, and let thy wrathful anger take hold of them.</VERS>\r\n      <VERS vnumber=\"25\">Let their habitation be desolate; and let none dwell in their tents.</VERS>\r\n      <VERS vnumber=\"26\">For they persecute him whom thou hast smitten; and they talk to the grief of those whom thou hast wounded.</VERS>\r\n      <VERS vnumber=\"27\">Add iniquity unto their iniquity: and let them not come into thy righteousness.</VERS>\r\n      <VERS vnumber=\"28\">Let them be blotted out of the book of the living, and not be written with the righteous.</VERS>\r\n      <VERS vnumber=\"29\">But I am poor and sorrowful: let thy salvation, O God, set me up on high.</VERS>\r\n      <VERS vnumber=\"30\">I will praise the name of God with a song, and will magnify him with thanksgiving.</VERS>\r\n      <VERS vnumber=\"31\">This also shall please the LORD better than an ox or bullock that hath horns and hoofs.</VERS>\r\n      <VERS vnumber=\"32\">The humble shall see this, and be glad: and your heart shall live that seek God.</VERS>\r\n      <VERS vnumber=\"33\">For the LORD heareth the poor, and despiseth not his prisoners.</VERS>\r\n      <VERS vnumber=\"34\">Let the heaven and earth praise him, the seas, and every thing that moveth therein.</VERS>\r\n      <VERS vnumber=\"35\">For God will save Zion, and will build the cities of Judah: that they may dwell there, and have it in possession.</VERS>\r\n      <VERS vnumber=\"36\">The seed also of his servants shall inherit it: and they that love his name shall dwell therein.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"70\">\r\n      <CAPTION vref=\"1\">To the chief Musician, A Psalm of David, to bring to remembrance. </CAPTION>\r\n      <VERS vnumber=\"1\">Make haste, O God, to deliver me; make haste to help me, O LORD.</VERS>\r\n      <VERS vnumber=\"2\">Let them be ashamed and confounded that seek after my soul: let them be turned backward, and put to confusion, that desire my hurt.</VERS>\r\n      <VERS vnumber=\"3\">Let them be turned back for a reward of their shame that say, Aha, aha.</VERS>\r\n      <VERS vnumber=\"4\">Let all those that seek thee rejoice and be glad in thee: and let such as love thy salvation say continually, Let God be magnified.</VERS>\r\n      <VERS vnumber=\"5\">But I am poor and needy: make haste unto me, O God: thou art my help and my deliverer; O LORD, make no tarrying.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"71\">\r\n      <VERS vnumber=\"1\">In thee, O LORD, do I put my trust: let me never be put to confusion.</VERS>\r\n      <VERS vnumber=\"2\">Deliver me in thy righteousness, and cause me to escape: incline thine ear unto me, and save me.</VERS>\r\n      <VERS vnumber=\"3\">Be thou my strong habitation, whereunto I may continually resort: thou hast given commandment to save me; for thou art my rock and my fortress.</VERS>\r\n      <VERS vnumber=\"4\">Deliver me, O my God, out of the hand of the wicked, out of the hand of the unrighteous and cruel man.</VERS>\r\n      <VERS vnumber=\"5\">For thou art my hope, O Lord GOD: thou art my trust from my youth.</VERS>\r\n      <VERS vnumber=\"6\">By 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.</VERS>\r\n      <VERS vnumber=\"7\">I am as a wonder unto many; but thou art my strong refuge.</VERS>\r\n      <VERS vnumber=\"8\">Let my mouth be filled with thy praise and with thy honour all the day.</VERS>\r\n      <VERS vnumber=\"9\">Cast me not off in the time of old age; forsake me not when my strength faileth.</VERS>\r\n      <VERS vnumber=\"10\">For mine enemies speak against me; and they that lay wait for my soul take counsel together,</VERS>\r\n      <VERS vnumber=\"11\">Saying, God hath forsaken him: persecute and take him; for there is none to deliver him.</VERS>\r\n      <VERS vnumber=\"12\">O God, be not far from me: O my God, make haste for my help.</VERS>\r\n      <VERS vnumber=\"13\">Let them be confounded and consumed that are adversaries to my soul; let them be covered with reproach and dishonour that seek my hurt.</VERS>\r\n      <VERS vnumber=\"14\">But I will hope continually, and will yet praise thee more and more.</VERS>\r\n      <VERS vnumber=\"15\">My mouth shall shew forth thy righteousness and thy salvation all the day; for I know not the numbers thereof.</VERS>\r\n      <VERS vnumber=\"16\">I will go in the strength of the Lord GOD: I will make mention of thy righteousness, even of thine only.</VERS>\r\n      <VERS vnumber=\"17\">O God, thou hast taught me from my youth: and hitherto have I declared thy wondrous works.</VERS>\r\n      <VERS vnumber=\"18\">Now also when I am old and grayheaded, O God, forsake me not; until I have shewed thy strength unto this generation, and thy power to every one that is to come.</VERS>\r\n      <VERS vnumber=\"19\">Thy righteousness also, O God, is very high, who hast done great things: O God, who is like unto thee!</VERS>\r\n      <VERS vnumber=\"20\">Thou, which hast shewed me great and sore troubles, shalt quicken me again, and shalt bring me up again from the depths of the earth.</VERS>\r\n      <VERS vnumber=\"21\">Thou shalt increase my greatness, and comfort me on every side.</VERS>\r\n      <VERS vnumber=\"22\">I 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.</VERS>\r\n      <VERS vnumber=\"23\">My lips shall greatly rejoice when I sing unto thee; and my soul, which thou hast redeemed.</VERS>\r\n      <VERS vnumber=\"24\">My 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"72\">\r\n      <CAPTION vref=\"1\">A Psalm for Solomon. </CAPTION>\r\n      <VERS vnumber=\"1\">Give the king thy judgments, O God, and thy righteousness unto the king's son.</VERS>\r\n      <VERS vnumber=\"2\">He shall judge thy people with righteousness, and thy poor with judgment.</VERS>\r\n      <VERS vnumber=\"3\">The mountains shall bring peace to the people, and the little hills, by righteousness.</VERS>\r\n      <VERS vnumber=\"4\">He shall judge the poor of the people, he shall save the children of the needy, and shall break in pieces the oppressor.</VERS>\r\n      <VERS vnumber=\"5\">They shall fear thee as long as the sun and moon endure, throughout all generations.</VERS>\r\n      <VERS vnumber=\"6\">He shall come down like rain upon the mown grass: as showers that water the earth.</VERS>\r\n      <VERS vnumber=\"7\">In his days shall the righteous flourish; and abundance of peace so long as the moon endureth.</VERS>\r\n      <VERS vnumber=\"8\">He shall have dominion also from sea to sea, and from the river unto the ends of the earth.</VERS>\r\n      <VERS vnumber=\"9\">They that dwell in the wilderness shall bow before him; and his enemies shall lick the dust.</VERS>\r\n      <VERS vnumber=\"10\">The kings of Tarshish and of the isles shall bring presents: the kings of Sheba and Seba shall offer gifts.</VERS>\r\n      <VERS vnumber=\"11\">Yea, all kings shall fall down before him: all nations shall serve him.</VERS>\r\n      <VERS vnumber=\"12\">For he shall deliver the needy when he crieth; the poor also, and him that hath no helper.</VERS>\r\n      <VERS vnumber=\"13\">He shall spare the poor and needy, and shall save the souls of the needy.</VERS>\r\n      <VERS vnumber=\"14\">He shall redeem their soul from deceit and violence: and precious shall their blood be in his sight.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">There 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.</VERS>\r\n      <VERS vnumber=\"17\">His 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.</VERS>\r\n      <VERS vnumber=\"18\">Blessed be the LORD God, the God of Israel, who only doeth wondrous things.</VERS>\r\n      <VERS vnumber=\"19\">And blessed be his glorious name for ever: and let the whole earth be filled with his glory; Amen, and Amen.</VERS>\r\n      <VERS vnumber=\"20\">The prayers of David the son of Jesse are ended.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"73\">\r\n      <CAPTION vref=\"1\">A Psalm of Asaph. </CAPTION>\r\n      <VERS vnumber=\"1\">Truly God is good to Israel, even to such as are of a clean heart.</VERS>\r\n      <VERS vnumber=\"2\">But as for me, my feet were almost gone; my steps had well nigh slipped.</VERS>\r\n      <VERS vnumber=\"3\">For I was envious at the foolish, when I saw the prosperity of the wicked.</VERS>\r\n      <VERS vnumber=\"4\">For there are no bands in their death: but their strength is firm.</VERS>\r\n      <VERS vnumber=\"5\">They are not in trouble as other men; neither are they plagued like other men.</VERS>\r\n      <VERS vnumber=\"6\">Therefore pride compasseth them about as a chain; violence covereth them as a garment.</VERS>\r\n      <VERS vnumber=\"7\">Their eyes stand out with fatness: they have more than heart could wish.</VERS>\r\n      <VERS vnumber=\"8\">They are corrupt, and speak wickedly concerning oppression: they speak loftily.</VERS>\r\n      <VERS vnumber=\"9\">They set their mouth against the heavens, and their tongue walketh through the earth.</VERS>\r\n      <VERS vnumber=\"10\">Therefore his people return hither: and waters of a full cup are wrung out to them.</VERS>\r\n      <VERS vnumber=\"11\">And they say, How doth God know? and is there knowledge in the most High?</VERS>\r\n      <VERS vnumber=\"12\">Behold, these are the ungodly, who prosper in the world; they increase in riches.</VERS>\r\n      <VERS vnumber=\"13\">Verily I have cleansed my heart in vain, and washed my hands in innocency.</VERS>\r\n      <VERS vnumber=\"14\">For all the day long have I been plagued, and chastened every morning.</VERS>\r\n      <VERS vnumber=\"15\">If I say, I will speak thus; behold, I should offend against the generation of thy children.</VERS>\r\n      <VERS vnumber=\"16\">When I thought to know this, it was too painful for me;</VERS>\r\n      <VERS vnumber=\"17\">Until I went into the sanctuary of God; then understood I their end.</VERS>\r\n      <VERS vnumber=\"18\">Surely thou didst set them in slippery places: thou castedst them down into destruction.</VERS>\r\n      <VERS vnumber=\"19\">How are they brought into desolation, as in a moment! they are utterly consumed with terrors.</VERS>\r\n      <VERS vnumber=\"20\">As a dream when one awaketh; so, O Lord, when thou awakest, thou shalt despise their image.</VERS>\r\n      <VERS vnumber=\"21\">Thus my heart was grieved, and I was pricked in my reins.</VERS>\r\n      <VERS vnumber=\"22\">So foolish was I, and ignorant: I was as a beast before thee.</VERS>\r\n      <VERS vnumber=\"23\">Nevertheless I am continually with thee: thou hast holden me by my right hand.</VERS>\r\n      <VERS vnumber=\"24\">Thou shalt guide me with thy counsel, and afterward receive me to glory.</VERS>\r\n      <VERS vnumber=\"25\">Whom have I in heaven but thee? and there is none upon earth that I desire beside thee.</VERS>\r\n      <VERS vnumber=\"26\">My flesh and my heart faileth: but God is the strength of my heart, and my portion for ever.</VERS>\r\n      <VERS vnumber=\"27\">For, lo, they that are far from thee shall perish: thou hast destroyed all them that go a whoring from thee.</VERS>\r\n      <VERS vnumber=\"28\">But 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"74\">\r\n      <CAPTION vref=\"1\">Maschil of Asaph. </CAPTION>\r\n      <VERS vnumber=\"1\">O God, why hast thou cast us off for ever? why doth thine anger smoke against the sheep of thy pasture?</VERS>\r\n      <VERS vnumber=\"2\">Remember thy congregation, which thou hast purchased of old; the rod of thine inheritance, which thou hast redeemed; this mount Zion, wherein thou hast dwelt.</VERS>\r\n      <VERS vnumber=\"3\">Lift up thy feet unto the perpetual desolations; even all that the enemy hath done wickedly in the sanctuary.</VERS>\r\n      <VERS vnumber=\"4\">Thine enemies roar in the midst of thy congregations; they set up their ensigns for signs.</VERS>\r\n      <VERS vnumber=\"5\">A man was famous according as he had lifted up axes upon the thick trees.</VERS>\r\n      <VERS vnumber=\"6\">But now they break down the carved work thereof at once with axes and hammers.</VERS>\r\n      <VERS vnumber=\"7\">They have cast fire into thy sanctuary, they have defiled by casting down the dwelling place of thy name to the ground.</VERS>\r\n      <VERS vnumber=\"8\">They said in their hearts, Let us destroy them together: they have burned up all the synagogues of God in the land.</VERS>\r\n      <VERS vnumber=\"9\">We see not our signs: there is no more any prophet: neither is there among us any that knoweth how long.</VERS>\r\n      <VERS vnumber=\"10\">O God, how long shall the adversary reproach? shall the enemy blaspheme thy name for ever?</VERS>\r\n      <VERS vnumber=\"11\">Why withdrawest thou thy hand, even thy right hand? pluck it out of thy bosom.</VERS>\r\n      <VERS vnumber=\"12\">For God is my King of old, working salvation in the midst of the earth.</VERS>\r\n      <VERS vnumber=\"13\">Thou didst divide the sea by thy strength: thou brakest the heads of the dragons in the waters.</VERS>\r\n      <VERS vnumber=\"14\">Thou brakest the heads of leviathan in pieces, and gavest him to be meat to the people inhabiting the wilderness.</VERS>\r\n      <VERS vnumber=\"15\">Thou didst cleave the fountain and the flood: thou driedst up mighty rivers.</VERS>\r\n      <VERS vnumber=\"16\">The day is thine, the night also is thine: thou hast prepared the light and the sun.</VERS>\r\n      <VERS vnumber=\"17\">Thou hast set all the borders of the earth: thou hast made summer and winter.</VERS>\r\n      <VERS vnumber=\"18\">Remember this, that the enemy hath reproached, O LORD, and that the foolish people have blasphemed thy name.</VERS>\r\n      <VERS vnumber=\"19\">O deliver not the soul of thy turtledove unto the multitude of the wicked: forget not the congregation of thy poor for ever.</VERS>\r\n      <VERS vnumber=\"20\">Have respect unto the covenant: for the dark places of the earth are full of the habitations of cruelty.</VERS>\r\n      <VERS vnumber=\"21\">O let not the oppressed return ashamed: let the poor and needy praise thy name.</VERS>\r\n      <VERS vnumber=\"22\">Arise, O God, plead thine own cause: remember how the foolish man reproacheth thee daily.</VERS>\r\n      <VERS vnumber=\"23\">Forget not the voice of thine enemies: the tumult of those that rise up against thee increaseth continually.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"75\">\r\n      <CAPTION vref=\"1\">To the chief Musician, Altaschith, A Psalm or Song of Asaph. </CAPTION>\r\n      <VERS vnumber=\"1\">Unto thee, O God, do we give thanks, unto thee do we give thanks: for that thy name is near thy wondrous works declare.</VERS>\r\n      <VERS vnumber=\"2\">When I shall receive the congregation I will judge uprightly.</VERS>\r\n      <VERS vnumber=\"3\">The earth and all the inhabitants thereof are dissolved: I bear up the pillars of it. Selah.</VERS>\r\n      <VERS vnumber=\"4\">I said unto the fools, Deal not foolishly: and to the wicked, Lift not up the horn:</VERS>\r\n      <VERS vnumber=\"5\">Lift not up your horn on high: speak not with a stiff neck.</VERS>\r\n      <VERS vnumber=\"6\">For promotion cometh neither from the east, nor from the west, nor from the south.</VERS>\r\n      <VERS vnumber=\"7\">But God is the judge: he putteth down one, and setteth up another.</VERS>\r\n      <VERS vnumber=\"8\">For 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.</VERS>\r\n      <VERS vnumber=\"9\">But I will declare for ever; I will sing praises to the God of Jacob.</VERS>\r\n      <VERS vnumber=\"10\">All the horns of the wicked also will I cut off; but the horns of the righteous shall be exalted.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"76\">\r\n      <CAPTION vref=\"1\">To the chief Musician on Neginoth, A Psalm or Song of Asaph. </CAPTION>\r\n      <VERS vnumber=\"1\">In Judah is God known: his name is great in Israel.</VERS>\r\n      <VERS vnumber=\"2\">In Salem also is his tabernacle, and his dwelling place in Zion.</VERS>\r\n      <VERS vnumber=\"3\">There brake he the arrows of the bow, the shield, and the sword, and the battle. Selah.</VERS>\r\n      <VERS vnumber=\"4\">Thou art more glorious and excellent than the mountains of prey.</VERS>\r\n      <VERS vnumber=\"5\">The stouthearted are spoiled, they have slept their sleep: and none of the men of might have found their hands.</VERS>\r\n      <VERS vnumber=\"6\">At thy rebuke, O God of Jacob, both the chariot and horse are cast into a dead sleep.</VERS>\r\n      <VERS vnumber=\"7\">Thou, even thou, art to be feared: and who may stand in thy sight when once thou art angry?</VERS>\r\n      <VERS vnumber=\"8\">Thou didst cause judgment to be heard from heaven; the earth feared, and was still,</VERS>\r\n      <VERS vnumber=\"9\">When God arose to judgment, to save all the meek of the earth. Selah.</VERS>\r\n      <VERS vnumber=\"10\">Surely the wrath of man shall praise thee: the remainder of wrath shalt thou restrain.</VERS>\r\n      <VERS vnumber=\"11\">Vow, and pay unto the LORD your God: let all that be round about him bring presents unto him that ought to be feared.</VERS>\r\n      <VERS vnumber=\"12\">He shall cut off the spirit of princes: he is terrible to the kings of the earth.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"77\">\r\n      <CAPTION vref=\"1\">To the chief Musician, to Jeduthun, A Psalm of Asaph. </CAPTION>\r\n      <VERS vnumber=\"1\">I cried unto God with my voice, even unto God with my voice; and he gave ear unto me.</VERS>\r\n      <VERS vnumber=\"2\">In the day of my trouble I sought the Lord: my sore ran in the night, and ceased not: my soul refused to be comforted.</VERS>\r\n      <VERS vnumber=\"3\">I remembered God, and was troubled: I complained, and my spirit was overwhelmed. Selah.</VERS>\r\n      <VERS vnumber=\"4\">Thou holdest mine eyes waking: I am so troubled that I cannot speak.</VERS>\r\n      <VERS vnumber=\"5\">I have considered the days of old, the years of ancient times.</VERS>\r\n      <VERS vnumber=\"6\">I call to remembrance my song in the night: I commune with mine own heart: and my spirit made diligent search.</VERS>\r\n      <VERS vnumber=\"7\">Will the Lord cast off for ever? and will he be favourable no more?</VERS>\r\n      <VERS vnumber=\"8\">Is his mercy clean gone for ever? doth his promise fail for evermore?</VERS>\r\n      <VERS vnumber=\"9\">Hath God forgotten to be gracious? hath he in anger shut up his tender mercies? Selah.</VERS>\r\n      <VERS vnumber=\"10\">And I said, This is my infirmity: but I will remember the years of the right hand of the most High.</VERS>\r\n      <VERS vnumber=\"11\">I will remember the works of the LORD: surely I will remember thy wonders of old.</VERS>\r\n      <VERS vnumber=\"12\">I will meditate also of all thy work, and talk of thy doings.</VERS>\r\n      <VERS vnumber=\"13\">Thy way, O God, is in the sanctuary: who is so great a God as our God?</VERS>\r\n      <VERS vnumber=\"14\">Thou art the God that doest wonders: thou hast declared thy strength among the people.</VERS>\r\n      <VERS vnumber=\"15\">Thou hast with thine arm redeemed thy people, the sons of Jacob and Joseph. Selah.</VERS>\r\n      <VERS vnumber=\"16\">The waters saw thee, O God, the waters saw thee; they were afraid: the depths also were troubled.</VERS>\r\n      <VERS vnumber=\"17\">The clouds poured out water: the skies sent out a sound: thine arrows also went abroad.</VERS>\r\n      <VERS vnumber=\"18\">The voice of thy thunder was in the heaven: the lightnings lightened the world: the earth trembled and shook.</VERS>\r\n      <VERS vnumber=\"19\">Thy way is in the sea, and thy path in the great waters, and thy footsteps are not known.</VERS>\r\n      <VERS vnumber=\"20\">Thou leddest thy people like a flock by the hand of Moses and Aaron.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"78\">\r\n      <CAPTION vref=\"1\">Maschil of Asaph. </CAPTION>\r\n      <VERS vnumber=\"1\">Give ear, O my people, to my law: incline your ears to the words of my mouth.</VERS>\r\n      <VERS vnumber=\"2\">I will open my mouth in a parable: I will utter dark sayings of old:</VERS>\r\n      <VERS vnumber=\"3\">Which we have heard and known, and our fathers have told us.</VERS>\r\n      <VERS vnumber=\"4\">We 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.</VERS>\r\n      <VERS vnumber=\"5\">For 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:</VERS>\r\n      <VERS vnumber=\"6\">That the generation to come might know them, even the children which should be born; who should arise and declare them to their children:</VERS>\r\n      <VERS vnumber=\"7\">That they might set their hope in God, and not forget the works of God, but keep his commandments:</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">The children of Ephraim, being armed, and carrying bows, turned back in the day of battle.</VERS>\r\n      <VERS vnumber=\"10\">They kept not the covenant of God, and refused to walk in his law;</VERS>\r\n      <VERS vnumber=\"11\">And forgat his works, and his wonders that he had shewed them.</VERS>\r\n      <VERS vnumber=\"12\">Marvellous things did he in the sight of their fathers, in the land of Egypt, in the field of Zoan.</VERS>\r\n      <VERS vnumber=\"13\">He divided the sea, and caused them to pass through; and he made the waters to stand as an heap.</VERS>\r\n      <VERS vnumber=\"14\">In the daytime also he led them with a cloud, and all the night with a light of fire.</VERS>\r\n      <VERS vnumber=\"15\">He clave the rocks in the wilderness, and gave them drink as out of the great depths.</VERS>\r\n      <VERS vnumber=\"16\">He brought streams also out of the rock, and caused waters to run down like rivers.</VERS>\r\n      <VERS vnumber=\"17\">And they sinned yet more against him by provoking the most High in the wilderness.</VERS>\r\n      <VERS vnumber=\"18\">And they tempted God in their heart by asking meat for their lust.</VERS>\r\n      <VERS vnumber=\"19\">Yea, they spake against God; they said, Can God furnish a table in the wilderness?</VERS>\r\n      <VERS vnumber=\"20\">Behold, 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?</VERS>\r\n      <VERS vnumber=\"21\">Therefore the LORD heard this, and was wroth: so a fire was kindled against Jacob, and anger also came up against Israel;</VERS>\r\n      <VERS vnumber=\"22\">Because they believed not in God, and trusted not in his salvation:</VERS>\r\n      <VERS vnumber=\"23\">Though he had commanded the clouds from above, and opened the doors of heaven,</VERS>\r\n      <VERS vnumber=\"24\">And had rained down manna upon them to eat, and had given them of the corn of heaven.</VERS>\r\n      <VERS vnumber=\"25\">Man did eat angels' food: he sent them meat to the full.</VERS>\r\n      <VERS vnumber=\"26\">He caused an east wind to blow in the heaven: and by his power he brought in the south wind.</VERS>\r\n      <VERS vnumber=\"27\">He rained flesh also upon them as dust, and feathered fowls like as the sand of the sea:</VERS>\r\n      <VERS vnumber=\"28\">And he let it fall in the midst of their camp, round about their habitations.</VERS>\r\n      <VERS vnumber=\"29\">So they did eat, and were well filled: for he gave them their own desire;</VERS>\r\n      <VERS vnumber=\"30\">They were not estranged from their lust. But while their meat was yet in their mouths,</VERS>\r\n      <VERS vnumber=\"31\">The wrath of God came upon them, and slew the fattest of them, and smote down the chosen men of Israel.</VERS>\r\n      <VERS vnumber=\"32\">For all this they sinned still, and believed not for his wondrous works.</VERS>\r\n      <VERS vnumber=\"33\">Therefore their days did he consume in vanity, and their years in trouble.</VERS>\r\n      <VERS vnumber=\"34\">When he slew them, then they sought him: and they returned and enquired early after God.</VERS>\r\n      <VERS vnumber=\"35\">And they remembered that God was their rock, and the high God their redeemer.</VERS>\r\n      <VERS vnumber=\"36\">Nevertheless they did flatter him with their mouth, and they lied unto him with their tongues.</VERS>\r\n      <VERS vnumber=\"37\">For their heart was not right with him, neither were they stedfast in his covenant.</VERS>\r\n      <VERS vnumber=\"38\">But 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.</VERS>\r\n      <VERS vnumber=\"39\">For he remembered that they were but flesh; a wind that passeth away, and cometh not again.</VERS>\r\n      <VERS vnumber=\"40\">How oft did they provoke him in the wilderness, and grieve him in the desert!</VERS>\r\n      <VERS vnumber=\"41\">Yea, they turned back and tempted God, and limited the Holy One of Israel.</VERS>\r\n      <VERS vnumber=\"42\">They remembered not his hand, nor the day when he delivered them from the enemy.</VERS>\r\n      <VERS vnumber=\"43\">How he had wrought his signs in Egypt, and his wonders in the field of Zoan:</VERS>\r\n      <VERS vnumber=\"44\">And had turned their rivers into blood; and their floods, that they could not drink.</VERS>\r\n      <VERS vnumber=\"45\">He sent divers sorts of flies among them, which devoured them; and frogs, which destroyed them.</VERS>\r\n      <VERS vnumber=\"46\">He gave also their increase unto the caterpiller, and their labour unto the locust.</VERS>\r\n      <VERS vnumber=\"47\">He destroyed their vines with hail, and their sycomore trees with frost.</VERS>\r\n      <VERS vnumber=\"48\">He gave up their cattle also to the hail, and their flocks to hot thunderbolts.</VERS>\r\n      <VERS vnumber=\"49\">He cast upon them the fierceness of his anger, wrath, and indignation, and trouble, by sending evil angels among them.</VERS>\r\n      <VERS vnumber=\"50\">He made a way to his anger; he spared not their soul from death, but gave their life over to the pestilence;</VERS>\r\n      <VERS vnumber=\"51\">And smote all the firstborn in Egypt; the chief of their strength in the tabernacles of Ham:</VERS>\r\n      <VERS vnumber=\"52\">But made his own people to go forth like sheep, and guided them in the wilderness like a flock.</VERS>\r\n      <VERS vnumber=\"53\">And he led them on safely, so that they feared not: but the sea overwhelmed their enemies.</VERS>\r\n      <VERS vnumber=\"54\">And he brought them to the border of his sanctuary, even to this mountain, which his right hand had purchased.</VERS>\r\n      <VERS vnumber=\"55\">He 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.</VERS>\r\n      <VERS vnumber=\"56\">Yet they tempted and provoked the most high God, and kept not his testimonies:</VERS>\r\n      <VERS vnumber=\"57\">But turned back, and dealt unfaithfully like their fathers: they were turned aside like a deceitful bow.</VERS>\r\n      <VERS vnumber=\"58\">For they provoked him to anger with their high places, and moved him to jealousy with their graven images.</VERS>\r\n      <VERS vnumber=\"59\">When God heard this, he was wroth, and greatly abhorred Israel:</VERS>\r\n      <VERS vnumber=\"60\">So that he forsook the tabernacle of Shiloh, the tent which he placed among men;</VERS>\r\n      <VERS vnumber=\"61\">And delivered his strength into captivity, and his glory into the enemy's hand.</VERS>\r\n      <VERS vnumber=\"62\">He gave his people over also unto the sword; and was wroth with his inheritance.</VERS>\r\n      <VERS vnumber=\"63\">The fire consumed their young men; and their maidens were not given to marriage.</VERS>\r\n      <VERS vnumber=\"64\">Their priests fell by the sword; and their widows made no lamentation.</VERS>\r\n      <VERS vnumber=\"65\">Then the Lord awaked as one out of sleep, and like a mighty man that shouteth by reason of wine.</VERS>\r\n      <VERS vnumber=\"66\">And he smote his enemies in the hinder parts: he put them to a perpetual reproach.</VERS>\r\n      <VERS vnumber=\"67\">Moreover he refused the tabernacle of Joseph, and chose not the tribe of Ephraim:</VERS>\r\n      <VERS vnumber=\"68\">But chose the tribe of Judah, the mount Zion which he loved.</VERS>\r\n      <VERS vnumber=\"69\">And he built his sanctuary like high palaces, like the earth which he hath established for ever.</VERS>\r\n      <VERS vnumber=\"70\">He chose David also his servant, and took him from the sheepfolds:</VERS>\r\n      <VERS vnumber=\"71\">From following the ewes great with young he brought him to feed Jacob his people, and Israel his inheritance.</VERS>\r\n      <VERS vnumber=\"72\">So he fed them according to the integrity of his heart; and guided them by the skilfulness of his hands.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"79\">\r\n      <CAPTION vref=\"1\">A Psalm of Asaph. </CAPTION>\r\n      <VERS vnumber=\"1\">O God, the heathen are come into thine inheritance; thy holy temple have they defiled; they have laid Jerusalem on heaps.</VERS>\r\n      <VERS vnumber=\"2\">The 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.</VERS>\r\n      <VERS vnumber=\"3\">Their blood have they shed like water round about Jerusalem; and there was none to bury them.</VERS>\r\n      <VERS vnumber=\"4\">We are become a reproach to our neighbours, a scorn and derision to them that are round about us.</VERS>\r\n      <VERS vnumber=\"5\">How long, LORD? wilt thou be angry for ever? shall thy jealousy burn like fire?</VERS>\r\n      <VERS vnumber=\"6\">Pour out thy wrath upon the heathen that have not known thee, and upon the kingdoms that have not called upon thy name.</VERS>\r\n      <VERS vnumber=\"7\">For they have devoured Jacob, and laid waste his dwelling place.</VERS>\r\n      <VERS vnumber=\"8\">O remember not against us former iniquities: let thy tender mercies speedily prevent us: for we are brought very low.</VERS>\r\n      <VERS vnumber=\"9\">Help 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.</VERS>\r\n      <VERS vnumber=\"10\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"11\">Let the sighing of the prisoner come before thee; according to the greatness of thy power preserve thou those that are appointed to die;</VERS>\r\n      <VERS vnumber=\"12\">And render unto our neighbours sevenfold into their bosom their reproach, wherewith they have reproached thee, O Lord.</VERS>\r\n      <VERS vnumber=\"13\">So we thy people and sheep of thy pasture will give thee thanks for ever: we will shew forth thy praise to all generations.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"80\">\r\n      <CAPTION vref=\"1\">To the chief Musician upon Shoshannimeduth, A Psalm of Asaph. </CAPTION>\r\n      <VERS vnumber=\"1\">Give ear, O Shepherd of Israel, thou that leadest Joseph like a flock; thou that dwellest between the cherubims, shine forth.</VERS>\r\n      <VERS vnumber=\"2\">Before Ephraim and Benjamin and Manasseh stir up thy strength, and come and save us.</VERS>\r\n      <VERS vnumber=\"3\">Turn us again, O God, and cause thy face to shine; and we shall be saved.</VERS>\r\n      <VERS vnumber=\"4\">O LORD God of hosts, how long wilt thou be angry against the prayer of thy people?</VERS>\r\n      <VERS vnumber=\"5\">Thou feedest them with the bread of tears; and givest them tears to drink in great measure.</VERS>\r\n      <VERS vnumber=\"6\">Thou makest us a strife unto our neighbours: and our enemies laugh among themselves.</VERS>\r\n      <VERS vnumber=\"7\">Turn us again, O God of hosts, and cause thy face to shine; and we shall be saved.</VERS>\r\n      <VERS vnumber=\"8\">Thou hast brought a vine out of Egypt: thou hast cast out the heathen, and planted it.</VERS>\r\n      <VERS vnumber=\"9\">Thou preparedst room before it, and didst cause it to take deep root, and it filled the land.</VERS>\r\n      <VERS vnumber=\"10\">The hills were covered with the shadow of it, and the boughs thereof were like the goodly cedars.</VERS>\r\n      <VERS vnumber=\"11\">She sent out her boughs unto the sea, and her branches unto the river.</VERS>\r\n      <VERS vnumber=\"12\">Why hast thou then broken down her hedges, so that all they which pass by the way do pluck her?</VERS>\r\n      <VERS vnumber=\"13\">The boar out of the wood doth waste it, and the wild beast of the field doth devour it.</VERS>\r\n      <VERS vnumber=\"14\">Return, we beseech thee, O God of hosts: look down from heaven, and behold, and visit this vine;</VERS>\r\n      <VERS vnumber=\"15\">And the vineyard which thy right hand hath planted, and the branch that thou madest strong for thyself.</VERS>\r\n      <VERS vnumber=\"16\">It is burned with fire, it is cut down: they perish at the rebuke of thy countenance.</VERS>\r\n      <VERS vnumber=\"17\">Let thy hand be upon the man of thy right hand, upon the son of man whom thou madest strong for thyself.</VERS>\r\n      <VERS vnumber=\"18\">So will not we go back from thee: quicken us, and we will call upon thy name.</VERS>\r\n      <VERS vnumber=\"19\">Turn us again, O LORD God of hosts, cause thy face to shine; and we shall be saved.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"81\">\r\n      <CAPTION vref=\"1\">To the chief Musician upon Gittith, A Psalm of Asaph. </CAPTION>\r\n      <VERS vnumber=\"1\">Sing aloud unto God our strength: make a joyful noise unto the God of Jacob.</VERS>\r\n      <VERS vnumber=\"2\">Take a psalm, and bring hither the timbrel, the pleasant harp with the psaltery.</VERS>\r\n      <VERS vnumber=\"3\">Blow up the trumpet in the new moon, in the time appointed, on our solemn feast day.</VERS>\r\n      <VERS vnumber=\"4\">For this was a statute for Israel, and a law of the God of Jacob.</VERS>\r\n      <VERS vnumber=\"5\">This 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.</VERS>\r\n      <VERS vnumber=\"6\">I removed his shoulder from the burden: his hands were delivered from the pots.</VERS>\r\n      <VERS vnumber=\"7\">Thou 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.</VERS>\r\n      <VERS vnumber=\"8\">Hear, O my people, and I will testify unto thee: O Israel, if thou wilt hearken unto me;</VERS>\r\n      <VERS vnumber=\"9\">There shall no strange god be in thee; neither shalt thou worship any strange god.</VERS>\r\n      <VERS vnumber=\"10\">I am the LORD thy God, which brought thee out of the land of Egypt: open thy mouth wide, and I will fill it.</VERS>\r\n      <VERS vnumber=\"11\">But my people would not hearken to my voice; and Israel would none of me.</VERS>\r\n      <VERS vnumber=\"12\">So I gave them up unto their own hearts' lust: and they walked in their own counsels.</VERS>\r\n      <VERS vnumber=\"13\">Oh that my people had hearkened unto me, and Israel had walked in my ways!</VERS>\r\n      <VERS vnumber=\"14\">I should soon have subdued their enemies, and turned my hand against their adversaries.</VERS>\r\n      <VERS vnumber=\"15\">The haters of the LORD should have submitted themselves unto him: but their time should have endured for ever.</VERS>\r\n      <VERS vnumber=\"16\">He should have fed them also with the finest of the wheat: and with honey out of the rock should I have satisfied thee.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"82\">\r\n      <CAPTION vref=\"1\">A Psalm of Asaph. </CAPTION>\r\n      <VERS vnumber=\"1\">God standeth in the congregation of the mighty; he judgeth among the gods.</VERS>\r\n      <VERS vnumber=\"2\">How long will ye judge unjustly, and accept the persons of the wicked? Selah.</VERS>\r\n      <VERS vnumber=\"3\">Defend the poor and fatherless: do justice to the afflicted and needy.</VERS>\r\n      <VERS vnumber=\"4\">Deliver the poor and needy: rid them out of the hand of the wicked.</VERS>\r\n      <VERS vnumber=\"5\">They know not, neither will they understand; they walk on in darkness: all the foundations of the earth are out of course.</VERS>\r\n      <VERS vnumber=\"6\">I have said, Ye are gods; and all of you are children of the most High.</VERS>\r\n      <VERS vnumber=\"7\">But ye shall die like men, and fall like one of the princes.</VERS>\r\n      <VERS vnumber=\"8\">Arise, O God, judge the earth: for thou shalt inherit all nations.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"83\">\r\n      <CAPTION vref=\"1\">A Song or Psalm of Asaph. </CAPTION>\r\n      <VERS vnumber=\"1\">Keep not thou silence, O God: hold not thy peace, and be not still, O God.</VERS>\r\n      <VERS vnumber=\"2\">For, lo, thine enemies make a tumult: and they that hate thee have lifted up the head.</VERS>\r\n      <VERS vnumber=\"3\">They have taken crafty counsel against thy people, and consulted against thy hidden ones.</VERS>\r\n      <VERS vnumber=\"4\">They have said, Come, and let us cut them off from being a nation; that the name of Israel may be no more in remembrance.</VERS>\r\n      <VERS vnumber=\"5\">For they have consulted together with one consent: they are confederate against thee:</VERS>\r\n      <VERS vnumber=\"6\">The tabernacles of Edom, and the Ishmaelites; of Moab, and the Hagarenes;</VERS>\r\n      <VERS vnumber=\"7\">Gebal, and Ammon, and Amalek; the Philistines with the inhabitants of Tyre;</VERS>\r\n      <VERS vnumber=\"8\">Assur also is joined with them: they have holpen the children of Lot. Selah.</VERS>\r\n      <VERS vnumber=\"9\">Do unto them as unto the Midianites; as to Sisera, as to Jabin, at the brook of Kison:</VERS>\r\n      <VERS vnumber=\"10\">Which perished at Endor: they became as dung for the earth.</VERS>\r\n      <VERS vnumber=\"11\">Make their nobles like Oreb, and like Zeeb: yea, all their princes as Zebah, and as Zalmunna:</VERS>\r\n      <VERS vnumber=\"12\">Who said, Let us take to ourselves the houses of God in possession.</VERS>\r\n      <VERS vnumber=\"13\">O my God, make them like a wheel; as the stubble before the wind.</VERS>\r\n      <VERS vnumber=\"14\">As the fire burneth a wood, and as the flame setteth the mountains on fire;</VERS>\r\n      <VERS vnumber=\"15\">So persecute them with thy tempest, and make them afraid with thy storm.</VERS>\r\n      <VERS vnumber=\"16\">Fill their faces with shame; that they may seek thy name, O LORD.</VERS>\r\n      <VERS vnumber=\"17\">Let them be confounded and troubled for ever; yea, let them be put to shame, and perish:</VERS>\r\n      <VERS vnumber=\"18\">That men may know that thou, whose name alone is JEHOVAH, art the most high over all the earth.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"84\">\r\n      <CAPTION vref=\"1\">To the chief Musician upon Gittith, A Psalm for the sons of Korah. </CAPTION>\r\n      <VERS vnumber=\"1\">How amiable are thy tabernacles, O LORD of hosts!</VERS>\r\n      <VERS vnumber=\"2\">My soul longeth, yea, even fainteth for the courts of the LORD: my heart and my flesh crieth out for the living God.</VERS>\r\n      <VERS vnumber=\"3\">Yea, 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.</VERS>\r\n      <VERS vnumber=\"4\">Blessed are they that dwell in thy house: they will be still praising thee. Selah.</VERS>\r\n      <VERS vnumber=\"5\">Blessed is the man whose strength is in thee; in whose heart are the ways of them.</VERS>\r\n      <VERS vnumber=\"6\">Who passing through the valley of Baca make it a well; the rain also filleth the pools.</VERS>\r\n      <VERS vnumber=\"7\">They go from strength to strength, every one of them in Zion appeareth before God.</VERS>\r\n      <VERS vnumber=\"8\">O LORD God of hosts, hear my prayer: give ear, O God of Jacob. Selah.</VERS>\r\n      <VERS vnumber=\"9\">Behold, O God our shield, and look upon the face of thine anointed.</VERS>\r\n      <VERS vnumber=\"10\">For 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.</VERS>\r\n      <VERS vnumber=\"11\">For 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.</VERS>\r\n      <VERS vnumber=\"12\">O LORD of hosts, blessed is the man that trusteth in thee.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"85\">\r\n      <CAPTION vref=\"1\">To the chief Musician, A Psalm for the sons of Korah. </CAPTION>\r\n      <VERS vnumber=\"1\">LORD, thou hast been favourable unto thy land: thou hast brought back the captivity of Jacob.</VERS>\r\n      <VERS vnumber=\"2\">Thou hast forgiven the iniquity of thy people, thou hast covered all their sin. Selah.</VERS>\r\n      <VERS vnumber=\"3\">Thou hast taken away all thy wrath: thou hast turned thyself from the fierceness of thine anger.</VERS>\r\n      <VERS vnumber=\"4\">Turn us, O God of our salvation, and cause thine anger toward us to cease.</VERS>\r\n      <VERS vnumber=\"5\">Wilt thou be angry with us for ever? wilt thou draw out thine anger to all generations?</VERS>\r\n      <VERS vnumber=\"6\">Wilt thou not revive us again: that thy people may rejoice in thee?</VERS>\r\n      <VERS vnumber=\"7\">Shew us thy mercy, O LORD, and grant us thy salvation.</VERS>\r\n      <VERS vnumber=\"8\">I 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.</VERS>\r\n      <VERS vnumber=\"9\">Surely his salvation is nigh them that fear him; that glory may dwell in our land.</VERS>\r\n      <VERS vnumber=\"10\">Mercy and truth are met together; righteousness and peace have kissed each other.</VERS>\r\n      <VERS vnumber=\"11\">Truth shall spring out of the earth; and righteousness shall look down from heaven.</VERS>\r\n      <VERS vnumber=\"12\">Yea, the LORD shall give that which is good; and our land shall yield her increase.</VERS>\r\n      <VERS vnumber=\"13\">Righteousness shall go before him; and shall set us in the way of his steps.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"86\">\r\n      <CAPTION vref=\"1\">A Prayer of David. </CAPTION>\r\n      <VERS vnumber=\"1\">Bow down thine ear, O LORD, hear me: for I am poor and needy.</VERS>\r\n      <VERS vnumber=\"2\">Preserve my soul; for I am holy: O thou my God, save thy servant that trusteth in thee.</VERS>\r\n      <VERS vnumber=\"3\">Be merciful unto me, O Lord: for I cry unto thee daily.</VERS>\r\n      <VERS vnumber=\"4\">Rejoice the soul of thy servant: for unto thee, O Lord, do I lift up my soul.</VERS>\r\n      <VERS vnumber=\"5\">For thou, Lord, art good, and ready to forgive; and plenteous in mercy unto all them that call upon thee.</VERS>\r\n      <VERS vnumber=\"6\">Give ear, O LORD, unto my prayer; and attend to the voice of my supplications.</VERS>\r\n      <VERS vnumber=\"7\">In the day of my trouble I will call upon thee: for thou wilt answer me.</VERS>\r\n      <VERS vnumber=\"8\">Among the gods there is none like unto thee, O Lord; neither are there any works like unto thy works.</VERS>\r\n      <VERS vnumber=\"9\">All nations whom thou hast made shall come and worship before thee, O Lord; and shall glorify thy name.</VERS>\r\n      <VERS vnumber=\"10\">For thou art great, and doest wondrous things: thou art God alone.</VERS>\r\n      <VERS vnumber=\"11\">Teach me thy way, O LORD; I will walk in thy truth: unite my heart to fear thy name.</VERS>\r\n      <VERS vnumber=\"12\">I will praise thee, O Lord my God, with all my heart: and I will glorify thy name for evermore.</VERS>\r\n      <VERS vnumber=\"13\">For great is thy mercy toward me: and thou hast delivered my soul from the lowest hell.</VERS>\r\n      <VERS vnumber=\"14\">O 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.</VERS>\r\n      <VERS vnumber=\"15\">But thou, O Lord, art a God full of compassion, and gracious, longsuffering, and plenteous in mercy and truth.</VERS>\r\n      <VERS vnumber=\"16\">O turn unto me, and have mercy upon me; give thy strength unto thy servant, and save the son of thine handmaid.</VERS>\r\n      <VERS vnumber=\"17\">Shew 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"87\">\r\n      <CAPTION vref=\"1\">A Psalm or Song for the sons of Korah. </CAPTION>\r\n      <VERS vnumber=\"1\">His foundation is in the holy mountains.</VERS>\r\n      <VERS vnumber=\"2\">The LORD loveth the gates of Zion more than all the dwellings of Jacob.</VERS>\r\n      <VERS vnumber=\"3\">Glorious things are spoken of thee, O city of God. Selah.</VERS>\r\n      <VERS vnumber=\"4\">I will make mention of Rahab and Babylon to them that know me: behold Philistia, and Tyre, with Ethiopia; this man was born there.</VERS>\r\n      <VERS vnumber=\"5\">And of Zion it shall be said, This and that man was born in her: and the highest himself shall establish her.</VERS>\r\n      <VERS vnumber=\"6\">The LORD shall count, when he writeth up the people, that this man was born there. Selah.</VERS>\r\n      <VERS vnumber=\"7\">As well the singers as the players on instruments shall be there: all my springs are in thee.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"88\">\r\n      <CAPTION vref=\"1\">A Song or Psalm for the sons of Korah, to the chief Musician upon Mahalath Leannoth, Maschil of Heman the Ezrahite. </CAPTION>\r\n      <VERS vnumber=\"1\">O LORD God of my salvation, I have cried day and night before thee:</VERS>\r\n      <VERS vnumber=\"2\">Let my prayer come before thee: incline thine ear unto my cry;</VERS>\r\n      <VERS vnumber=\"3\">For my soul is full of troubles: and my life draweth nigh unto the grave.</VERS>\r\n      <VERS vnumber=\"4\">I am counted with them that go down into the pit: I am as a man that hath no strength:</VERS>\r\n      <VERS vnumber=\"5\">Free among the dead, like the slain that lie in the grave, whom thou rememberest no more: and they are cut off from thy hand.</VERS>\r\n      <VERS vnumber=\"6\">Thou hast laid me in the lowest pit, in darkness, in the deeps.</VERS>\r\n      <VERS vnumber=\"7\">Thy wrath lieth hard upon me, and thou hast afflicted me with all thy waves. Selah.</VERS>\r\n      <VERS vnumber=\"8\">Thou 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.</VERS>\r\n      <VERS vnumber=\"9\">Mine eye mourneth by reason of affliction: LORD, I have called daily upon thee, I have stretched out my hands unto thee.</VERS>\r\n      <VERS vnumber=\"10\">Wilt thou shew wonders to the dead? shall the dead arise and praise thee? Selah.</VERS>\r\n      <VERS vnumber=\"11\">Shall thy lovingkindness be declared in the grave? or thy faithfulness in destruction?</VERS>\r\n      <VERS vnumber=\"12\">Shall thy wonders be known in the dark? and thy righteousness in the land of forgetfulness?</VERS>\r\n      <VERS vnumber=\"13\">But unto thee have I cried, O LORD; and in the morning shall my prayer prevent thee.</VERS>\r\n      <VERS vnumber=\"14\">LORD, why castest thou off my soul? why hidest thou thy face from me?</VERS>\r\n      <VERS vnumber=\"15\">I am afflicted and ready to die from my youth up: while I suffer thy terrors I am distracted.</VERS>\r\n      <VERS vnumber=\"16\">Thy fierce wrath goeth over me; thy terrors have cut me off.</VERS>\r\n      <VERS vnumber=\"17\">They came round about me daily like water; they compassed me about together.</VERS>\r\n      <VERS vnumber=\"18\">Lover and friend hast thou put far from me, and mine acquaintance into darkness.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"89\">\r\n      <CAPTION vref=\"1\">Maschil of Ethan the Ezrahite. </CAPTION>\r\n      <VERS vnumber=\"1\">I will sing of the mercies of the LORD for ever: with my mouth will I make known thy faithfulness to all generations.</VERS>\r\n      <VERS vnumber=\"2\">For I have said, Mercy shall be built up for ever: thy faithfulness shalt thou establish in the very heavens.</VERS>\r\n      <VERS vnumber=\"3\">I have made a covenant with my chosen, I have sworn unto David my servant,</VERS>\r\n      <VERS vnumber=\"4\">Thy seed will I establish for ever, and build up thy throne to all generations. Selah.</VERS>\r\n      <VERS vnumber=\"5\">And the heavens shall praise thy wonders, O LORD: thy faithfulness also in the congregation of the saints.</VERS>\r\n      <VERS vnumber=\"6\">For who in the heaven can be compared unto the LORD? who among the sons of the mighty can be likened unto the LORD?</VERS>\r\n      <VERS vnumber=\"7\">God is greatly to be feared in the assembly of the saints, and to be had in reverence of all them that are about him.</VERS>\r\n      <VERS vnumber=\"8\">O LORD God of hosts, who is a strong LORD like unto thee? or to thy faithfulness round about thee?</VERS>\r\n      <VERS vnumber=\"9\">Thou rulest the raging of the sea: when the waves thereof arise, thou stillest them.</VERS>\r\n      <VERS vnumber=\"10\">Thou hast broken Rahab in pieces, as one that is slain; thou hast scattered thine enemies with thy strong arm.</VERS>\r\n      <VERS vnumber=\"11\">The heavens are thine, the earth also is thine: as for the world and the fulness thereof, thou hast founded them.</VERS>\r\n      <VERS vnumber=\"12\">The north and the south thou hast created them: Tabor and Hermon shall rejoice in thy name.</VERS>\r\n      <VERS vnumber=\"13\">Thou hast a mighty arm: strong is thy hand, and high is thy right hand.</VERS>\r\n      <VERS vnumber=\"14\">Justice and judgment are the habitation of thy throne: mercy and truth shall go before thy face.</VERS>\r\n      <VERS vnumber=\"15\">Blessed is the people that know the joyful sound: they shall walk, O LORD, in the light of thy countenance.</VERS>\r\n      <VERS vnumber=\"16\">In thy name shall they rejoice all the day: and in thy righteousness shall they be exalted.</VERS>\r\n      <VERS vnumber=\"17\">For thou art the glory of their strength: and in thy favour our horn shall be exalted.</VERS>\r\n      <VERS vnumber=\"18\">For the LORD is our defence; and the Holy One of Israel is our king.</VERS>\r\n      <VERS vnumber=\"19\">Then 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.</VERS>\r\n      <VERS vnumber=\"20\">I have found David my servant; with my holy oil have I anointed him:</VERS>\r\n      <VERS vnumber=\"21\">With whom my hand shall be established: mine arm also shall strengthen him.</VERS>\r\n      <VERS vnumber=\"22\">The enemy shall not exact upon him; nor the son of wickedness afflict him.</VERS>\r\n      <VERS vnumber=\"23\">And I will beat down his foes before his face, and plague them that hate him.</VERS>\r\n      <VERS vnumber=\"24\">But my faithfulness and my mercy shall be with him: and in my name shall his horn be exalted.</VERS>\r\n      <VERS vnumber=\"25\">I will set his hand also in the sea, and his right hand in the rivers.</VERS>\r\n      <VERS vnumber=\"26\">He shall cry unto me, Thou art my father, my God, and the rock of my salvation.</VERS>\r\n      <VERS vnumber=\"27\">Also I will make him my firstborn, higher than the kings of the earth.</VERS>\r\n      <VERS vnumber=\"28\">My mercy will I keep for him for evermore, and my covenant shall stand fast with him.</VERS>\r\n      <VERS vnumber=\"29\">His seed also will I make to endure for ever, and his throne as the days of heaven.</VERS>\r\n      <VERS vnumber=\"30\">If his children forsake my law, and walk not in my judgments;</VERS>\r\n      <VERS vnumber=\"31\">If they break my statutes, and keep not my commandments;</VERS>\r\n      <VERS vnumber=\"32\">Then will I visit their transgression with the rod, and their iniquity with stripes.</VERS>\r\n      <VERS vnumber=\"33\">Nevertheless my lovingkindness will I not utterly take from him, nor suffer my faithfulness to fail.</VERS>\r\n      <VERS vnumber=\"34\">My covenant will I not break, nor alter the thing that is gone out of my lips.</VERS>\r\n      <VERS vnumber=\"35\">Once have I sworn by my holiness that I will not lie unto David.</VERS>\r\n      <VERS vnumber=\"36\">His seed shall endure for ever, and his throne as the sun before me.</VERS>\r\n      <VERS vnumber=\"37\">It shall be established for ever as the moon, and as a faithful witness in heaven. Selah.</VERS>\r\n      <VERS vnumber=\"38\">But thou hast cast off and abhorred, thou hast been wroth with thine anointed.</VERS>\r\n      <VERS vnumber=\"39\">Thou hast made void the covenant of thy servant: thou hast profaned his crown by casting it to the ground.</VERS>\r\n      <VERS vnumber=\"40\">Thou hast broken down all his hedges; thou hast brought his strong holds to ruin.</VERS>\r\n      <VERS vnumber=\"41\">All that pass by the way spoil him: he is a reproach to his neighbours.</VERS>\r\n      <VERS vnumber=\"42\">Thou hast set up the right hand of his adversaries; thou hast made all his enemies to rejoice.</VERS>\r\n      <VERS vnumber=\"43\">Thou hast also turned the edge of his sword, and hast not made him to stand in the battle.</VERS>\r\n      <VERS vnumber=\"44\">Thou hast made his glory to cease, and cast his throne down to the ground.</VERS>\r\n      <VERS vnumber=\"45\">The days of his youth hast thou shortened: thou hast covered him with shame. Selah.</VERS>\r\n      <VERS vnumber=\"46\">How long, LORD? wilt thou hide thyself for ever? shall thy wrath burn like fire?</VERS>\r\n      <VERS vnumber=\"47\">Remember how short my time is: wherefore hast thou made all men in vain?</VERS>\r\n      <VERS vnumber=\"48\">What man is he that liveth, and shall not see death? shall he deliver his soul from the hand of the grave? Selah.</VERS>\r\n      <VERS vnumber=\"49\">Lord, where are thy former lovingkindnesses, which thou swarest unto David in thy truth?</VERS>\r\n      <VERS vnumber=\"50\">Remember, Lord, the reproach of thy servants; how I do bear in my bosom the reproach of all the mighty people;</VERS>\r\n      <VERS vnumber=\"51\">Wherewith thine enemies have reproached, O LORD; wherewith they have reproached the footsteps of thine anointed.</VERS>\r\n      <VERS vnumber=\"52\">Blessed be the LORD for evermore. Amen, and Amen.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"90\">\r\n      <CAPTION vref=\"1\"> A Prayer of Moses the man of God.</CAPTION>\r\n      <VERS vnumber=\"1\">Lord, thou hast been our dwelling place in all generations.</VERS>\r\n      <VERS vnumber=\"2\">Before the mountains were brought forth, or ever thou hadst formed the earth and the world, even from everlasting to everlasting, thou art God.</VERS>\r\n      <VERS vnumber=\"3\">Thou turnest man to destruction; and sayest, Return, ye children of men.</VERS>\r\n      <VERS vnumber=\"4\">For a thousand years in thy sight are but as yesterday when it is past, and as a watch in the night.</VERS>\r\n      <VERS vnumber=\"5\">Thou carriest them away as with a flood; they are as a sleep: in the morning they are like grass which groweth up.</VERS>\r\n      <VERS vnumber=\"6\">In the morning it flourisheth, and groweth up; in the evening it is cut down, and withereth.</VERS>\r\n      <VERS vnumber=\"7\">For we are consumed by thine anger, and by thy wrath are we troubled.</VERS>\r\n      <VERS vnumber=\"8\">Thou hast set our iniquities before thee, our secret sins in the light of thy countenance.</VERS>\r\n      <VERS vnumber=\"9\">For all our days are passed away in thy wrath: we spend our years as a tale that is told.</VERS>\r\n      <VERS vnumber=\"10\">The 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.</VERS>\r\n      <VERS vnumber=\"11\">Who knoweth the power of thine anger? even according to thy fear, so is thy wrath.</VERS>\r\n      <VERS vnumber=\"12\">So teach us to number our days, that we may apply our hearts unto wisdom.</VERS>\r\n      <VERS vnumber=\"13\">Return, O LORD, how long? and let it repent thee concerning thy servants.</VERS>\r\n      <VERS vnumber=\"14\">O satisfy us early with thy mercy; that we may rejoice and be glad all our days.</VERS>\r\n      <VERS vnumber=\"15\">Make us glad according to the days wherein thou hast afflicted us, and the years wherein we have seen evil.</VERS>\r\n      <VERS vnumber=\"16\">Let thy work appear unto thy servants, and thy glory unto their children.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"91\">\r\n      <VERS vnumber=\"1\">He that dwelleth in the secret place of the most High shall abide under the shadow of the Almighty.</VERS>\r\n      <VERS vnumber=\"2\">I will say of the LORD, He is my refuge and my fortress: my God; in him will I trust.</VERS>\r\n      <VERS vnumber=\"3\">Surely he shall deliver thee from the snare of the fowler, and from the noisome pestilence.</VERS>\r\n      <VERS vnumber=\"4\">He shall cover thee with his feathers, and under his wings shalt thou trust: his truth shall be thy shield and buckler.</VERS>\r\n      <VERS vnumber=\"5\">Thou shalt not be afraid for the terror by night; nor for the arrow that flieth by day;</VERS>\r\n      <VERS vnumber=\"6\">Nor for the pestilence that walketh in darkness; nor for the destruction that wasteth at noonday.</VERS>\r\n      <VERS vnumber=\"7\">A thousand shall fall at thy side, and ten thousand at thy right hand; but it shall not come nigh thee.</VERS>\r\n      <VERS vnumber=\"8\">Only with thine eyes shalt thou behold and see the reward of the wicked.</VERS>\r\n      <VERS vnumber=\"9\">Because thou hast made the LORD, which is my refuge, even the most High, thy habitation;</VERS>\r\n      <VERS vnumber=\"10\">There shall no evil befall thee, neither shall any plague come nigh thy dwelling.</VERS>\r\n      <VERS vnumber=\"11\">For he shall give his angels charge over thee, to keep thee in all thy ways.</VERS>\r\n      <VERS vnumber=\"12\">They shall bear thee up in their hands, lest thou dash thy foot against a stone.</VERS>\r\n      <VERS vnumber=\"13\">Thou shalt tread upon the lion and adder: the young lion and the dragon shalt thou trample under feet.</VERS>\r\n      <VERS vnumber=\"14\">Because he hath set his love upon me, therefore will I deliver him: I will set him on high, because he hath known my name.</VERS>\r\n      <VERS vnumber=\"15\">He shall call upon me, and I will answer him: I will be with him in trouble; I will deliver him, and honour him.</VERS>\r\n      <VERS vnumber=\"16\">With long life will I satisfy him, and shew him my salvation.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"92\">\r\n      <CAPTION vref=\"1\">A Psalm or Song for the sabbath day. </CAPTION>\r\n      <VERS vnumber=\"1\">It is a good thing to give thanks unto the LORD, and to sing praises unto thy name, O most High:</VERS>\r\n      <VERS vnumber=\"2\">To shew forth thy lovingkindness in the morning, and thy faithfulness every night,</VERS>\r\n      <VERS vnumber=\"3\">Upon an instrument of ten strings, and upon the psaltery; upon the harp with a solemn sound.</VERS>\r\n      <VERS vnumber=\"4\">For thou, LORD, hast made me glad through thy work: I will triumph in the works of thy hands.</VERS>\r\n      <VERS vnumber=\"5\">O LORD, how great are thy works! and thy thoughts are very deep.</VERS>\r\n      <VERS vnumber=\"6\">A brutish man knoweth not; neither doth a fool understand this.</VERS>\r\n      <VERS vnumber=\"7\">When the wicked spring as the grass, and when all the workers of iniquity do flourish; it is that they shall be destroyed for ever:</VERS>\r\n      <VERS vnumber=\"8\">But thou, LORD, art most high for evermore.</VERS>\r\n      <VERS vnumber=\"9\">For, lo, thine enemies, O LORD, for, lo, thine enemies shall perish; all the workers of iniquity shall be scattered.</VERS>\r\n      <VERS vnumber=\"10\">But my horn shalt thou exalt like the horn of an unicorn: I shall be anointed with fresh oil.</VERS>\r\n      <VERS vnumber=\"11\">Mine eye also shall see my desire on mine enemies, and mine ears shall hear my desire of the wicked that rise up against me.</VERS>\r\n      <VERS vnumber=\"12\">The righteous shall flourish like the palm tree: he shall grow like a cedar in Lebanon.</VERS>\r\n      <VERS vnumber=\"13\">Those that be planted in the house of the LORD shall flourish in the courts of our God.</VERS>\r\n      <VERS vnumber=\"14\">They shall still bring forth fruit in old age; they shall be fat and flourishing;</VERS>\r\n      <VERS vnumber=\"15\">To shew that the LORD is upright: he is my rock, and there is no unrighteousness in him.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"93\">\r\n      <VERS vnumber=\"1\">The 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.</VERS>\r\n      <VERS vnumber=\"2\">Thy throne is established of old: thou art from everlasting.</VERS>\r\n      <VERS vnumber=\"3\">The floods have lifted up, O LORD, the floods have lifted up their voice; the floods lift up their waves.</VERS>\r\n      <VERS vnumber=\"4\">The LORD on high is mightier than the noise of many waters, yea, than the mighty waves of the sea.</VERS>\r\n      <VERS vnumber=\"5\">Thy testimonies are very sure: holiness becometh thine house, O LORD, for ever.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"94\">\r\n      <VERS vnumber=\"1\">O LORD God, to whom vengeance belongeth; O God, to whom vengeance belongeth, shew thyself.</VERS>\r\n      <VERS vnumber=\"2\">Lift up thyself, thou judge of the earth: render a reward to the proud.</VERS>\r\n      <VERS vnumber=\"3\">LORD, how long shall the wicked, how long shall the wicked triumph?</VERS>\r\n      <VERS vnumber=\"4\">How long shall they utter and speak hard things? and all the workers of iniquity boast themselves?</VERS>\r\n      <VERS vnumber=\"5\">They break in pieces thy people, O LORD, and afflict thine heritage.</VERS>\r\n      <VERS vnumber=\"6\">They slay the widow and the stranger, and murder the fatherless.</VERS>\r\n      <VERS vnumber=\"7\">Yet they say, The LORD shall not see, neither shall the God of Jacob regard it.</VERS>\r\n      <VERS vnumber=\"8\">Understand, ye brutish among the people: and ye fools, when will ye be wise?</VERS>\r\n      <VERS vnumber=\"9\">He that planted the ear, shall he not hear? he that formed the eye, shall he not see?</VERS>\r\n      <VERS vnumber=\"10\">He that chastiseth the heathen, shall not he correct? he that teacheth man knowledge, shall not he know?</VERS>\r\n      <VERS vnumber=\"11\">The LORD knoweth the thoughts of man, that they are vanity.</VERS>\r\n      <VERS vnumber=\"12\">Blessed is the man whom thou chastenest, O LORD, and teachest him out of thy law;</VERS>\r\n      <VERS vnumber=\"13\">That thou mayest give him rest from the days of adversity, until the pit be digged for the wicked.</VERS>\r\n      <VERS vnumber=\"14\">For the LORD will not cast off his people, neither will he forsake his inheritance.</VERS>\r\n      <VERS vnumber=\"15\">But judgment shall return unto righteousness: and all the upright in heart shall follow it.</VERS>\r\n      <VERS vnumber=\"16\">Who will rise up for me against the evildoers? or who will stand up for me against the workers of iniquity?</VERS>\r\n      <VERS vnumber=\"17\">Unless the LORD had been my help, my soul had almost dwelt in silence.</VERS>\r\n      <VERS vnumber=\"18\">When I said, My foot slippeth; thy mercy, O LORD, held me up.</VERS>\r\n      <VERS vnumber=\"19\">In the multitude of my thoughts within me thy comforts delight my soul.</VERS>\r\n      <VERS vnumber=\"20\">Shall the throne of iniquity have fellowship with thee, which frameth mischief by a law?</VERS>\r\n      <VERS vnumber=\"21\">They gather themselves together against the soul of the righteous, and condemn the innocent blood.</VERS>\r\n      <VERS vnumber=\"22\">But the LORD is my defence; and my God is the rock of my refuge.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"95\">\r\n      <VERS vnumber=\"1\">O come, let us sing unto the LORD: let us make a joyful noise to the rock of our salvation.</VERS>\r\n      <VERS vnumber=\"2\">Let us come before his presence with thanksgiving, and make a joyful noise unto him with psalms.</VERS>\r\n      <VERS vnumber=\"3\">For the LORD is a great God, and a great King above all gods.</VERS>\r\n      <VERS vnumber=\"4\">In his hand are the deep places of the earth: the strength of the hills is his also.</VERS>\r\n      <VERS vnumber=\"5\">The sea is his, and he made it: and his hands formed the dry land.</VERS>\r\n      <VERS vnumber=\"6\">O come, let us worship and bow down: let us kneel before the LORD our maker.</VERS>\r\n      <VERS vnumber=\"7\">For 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,</VERS>\r\n      <VERS vnumber=\"8\">Harden not your heart, as in the provocation, and as in the day of temptation in the wilderness:</VERS>\r\n      <VERS vnumber=\"9\">When your fathers tempted me, proved me, and saw my work.</VERS>\r\n      <VERS vnumber=\"10\">Forty 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:</VERS>\r\n      <VERS vnumber=\"11\">Unto whom I sware in my wrath that they should not enter into my rest.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"96\">\r\n      <VERS vnumber=\"1\">O sing unto the LORD a new song: sing unto the LORD, all the earth.</VERS>\r\n      <VERS vnumber=\"2\">Sing unto the LORD, bless his name; shew forth his salvation from day to day.</VERS>\r\n      <VERS vnumber=\"3\">Declare his glory among the heathen, his wonders among all people.</VERS>\r\n      <VERS vnumber=\"4\">For the LORD is great, and greatly to be praised: he is to be feared above all gods.</VERS>\r\n      <VERS vnumber=\"5\">For all the gods of the nations are idols: but the LORD made the heavens.</VERS>\r\n      <VERS vnumber=\"6\">Honour and majesty are before him: strength and beauty are in his sanctuary.</VERS>\r\n      <VERS vnumber=\"7\">Give unto the LORD, O ye kindreds of the people, give unto the LORD glory and strength.</VERS>\r\n      <VERS vnumber=\"8\">Give unto the LORD the glory due unto his name: bring an offering, and come into his courts.</VERS>\r\n      <VERS vnumber=\"9\">O worship the LORD in the beauty of holiness: fear before him, all the earth.</VERS>\r\n      <VERS vnumber=\"10\">Say 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.</VERS>\r\n      <VERS vnumber=\"11\">Let the heavens rejoice, and let the earth be glad; let the sea roar, and the fulness thereof.</VERS>\r\n      <VERS vnumber=\"12\">Let the field be joyful, and all that is therein: then shall all the trees of the wood rejoice</VERS>\r\n      <VERS vnumber=\"13\">Before 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"97\">\r\n      <VERS vnumber=\"1\">The LORD reigneth; let the earth rejoice; let the multitude of isles be glad thereof.</VERS>\r\n      <VERS vnumber=\"2\">Clouds and darkness are round about him: righteousness and judgment are the habitation of his throne.</VERS>\r\n      <VERS vnumber=\"3\">A fire goeth before him, and burneth up his enemies round about.</VERS>\r\n      <VERS vnumber=\"4\">His lightnings enlightened the world: the earth saw, and trembled.</VERS>\r\n      <VERS vnumber=\"5\">The hills melted like wax at the presence of the LORD, at the presence of the Lord of the whole earth.</VERS>\r\n      <VERS vnumber=\"6\">The heavens declare his righteousness, and all the people see his glory.</VERS>\r\n      <VERS vnumber=\"7\">Confounded be all they that serve graven images, that boast themselves of idols: worship him, all ye gods.</VERS>\r\n      <VERS vnumber=\"8\">Zion heard, and was glad; and the daughters of Judah rejoiced because of thy judgments, O LORD.</VERS>\r\n      <VERS vnumber=\"9\">For thou, LORD, art high above all the earth: thou art exalted far above all gods.</VERS>\r\n      <VERS vnumber=\"10\">Ye that love the LORD, hate evil: he preserveth the souls of his saints; he delivereth them out of the hand of the wicked.</VERS>\r\n      <VERS vnumber=\"11\">Light is sown for the righteous, and gladness for the upright in heart.</VERS>\r\n      <VERS vnumber=\"12\">Rejoice in the LORD, ye righteous; and give thanks at the remembrance of his holiness.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"98\">\r\n      <CAPTION vref=\"1\">A Psalm. </CAPTION>\r\n      <VERS vnumber=\"1\">O 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.</VERS>\r\n      <VERS vnumber=\"2\">The LORD hath made known his salvation: his righteousness hath he openly shewed in the sight of the heathen.</VERS>\r\n      <VERS vnumber=\"3\">He 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.</VERS>\r\n      <VERS vnumber=\"4\">Make a joyful noise unto the LORD, all the earth: make a loud noise, and rejoice, and sing praise.</VERS>\r\n      <VERS vnumber=\"5\">Sing unto the LORD with the harp; with the harp, and the voice of a psalm.</VERS>\r\n      <VERS vnumber=\"6\">With trumpets and sound of cornet make a joyful noise before the LORD, the King.</VERS>\r\n      <VERS vnumber=\"7\">Let the sea roar, and the fulness thereof; the world, and they that dwell therein.</VERS>\r\n      <VERS vnumber=\"8\">Let the floods clap their hands: let the hills be joyful together</VERS>\r\n      <VERS vnumber=\"9\">Before the LORD; for he cometh to judge the earth: with righteousness shall he judge the world, and the people with equity.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"99\">\r\n      <VERS vnumber=\"1\">The LORD reigneth; let the people tremble: he sitteth between the cherubims; let the earth be moved.</VERS>\r\n      <VERS vnumber=\"2\">The LORD is great in Zion; and he is high above all the people.</VERS>\r\n      <VERS vnumber=\"3\">Let them praise thy great and terrible name; for it is holy.</VERS>\r\n      <VERS vnumber=\"4\">The king's strength also loveth judgment; thou dost establish equity, thou executest judgment and righteousness in Jacob.</VERS>\r\n      <VERS vnumber=\"5\">Exalt ye the LORD our God, and worship at his footstool; for he is holy.</VERS>\r\n      <VERS vnumber=\"6\">Moses and Aaron among his priests, and Samuel among them that call upon his name; they called upon the LORD, and he answered them.</VERS>\r\n      <VERS vnumber=\"7\">He spake unto them in the cloudy pillar: they kept his testimonies, and the ordinance that he gave them.</VERS>\r\n      <VERS vnumber=\"8\">Thou answeredst them, O LORD our God: thou wast a God that forgavest them, though thou tookest vengeance of their inventions.</VERS>\r\n      <VERS vnumber=\"9\">Exalt the LORD our God, and worship at his holy hill; for the LORD our God is holy.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"100\">\r\n      <CAPTION vref=\"1\">A Psalm of praise. </CAPTION>\r\n      <VERS vnumber=\"1\">Make a joyful noise unto the LORD, all ye lands.</VERS>\r\n      <VERS vnumber=\"2\">Serve the LORD with gladness: come before his presence with singing.</VERS>\r\n      <VERS vnumber=\"3\">Know 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.</VERS>\r\n      <VERS vnumber=\"4\">Enter into his gates with thanksgiving, and into his courts with praise: be thankful unto him, and bless his name.</VERS>\r\n      <VERS vnumber=\"5\">For the LORD is good; his mercy is everlasting; and his truth endureth to all generations.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"101\">\r\n      <CAPTION vref=\"1\">A Psalm of David. </CAPTION>\r\n      <VERS vnumber=\"1\">I will sing of mercy and judgment: unto thee, O LORD, will I sing.</VERS>\r\n      <VERS vnumber=\"2\">I 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.</VERS>\r\n      <VERS vnumber=\"3\">I will set no wicked thing before mine eyes: I hate the work of them that turn aside; it shall not cleave to me.</VERS>\r\n      <VERS vnumber=\"4\">A froward heart shall depart from me: I will not know a wicked person.</VERS>\r\n      <VERS vnumber=\"5\">Whoso privily slandereth his neighbour, him will I cut off: him that hath an high look and a proud heart will not I suffer.</VERS>\r\n      <VERS vnumber=\"6\">Mine 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.</VERS>\r\n      <VERS vnumber=\"7\">He that worketh deceit shall not dwell within my house: he that telleth lies shall not tarry in my sight.</VERS>\r\n      <VERS vnumber=\"8\">I will early destroy all the wicked of the land; that I may cut off all wicked doers from the city of the LORD.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"102\">\r\n      <CAPTION vref=\"1\">A Prayer of the afflicted, when he is overwhelmed, and poureth out his complaint before the LORD. </CAPTION>\r\n      <VERS vnumber=\"1\">Hear my prayer, O LORD, and let my cry come unto thee.</VERS>\r\n      <VERS vnumber=\"2\">Hide 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.</VERS>\r\n      <VERS vnumber=\"3\">For my days are consumed like smoke, and my bones are burned as an hearth.</VERS>\r\n      <VERS vnumber=\"4\">My heart is smitten, and withered like grass; so that I forget to eat my bread.</VERS>\r\n      <VERS vnumber=\"5\">By reason of the voice of my groaning my bones cleave to my skin.</VERS>\r\n      <VERS vnumber=\"6\">I am like a pelican of the wilderness: I am like an owl of the desert.</VERS>\r\n      <VERS vnumber=\"7\">I watch, and am as a sparrow alone upon the house top.</VERS>\r\n      <VERS vnumber=\"8\">Mine enemies reproach me all the day; and they that are mad against me are sworn against me.</VERS>\r\n      <VERS vnumber=\"9\">For I have eaten ashes like bread, and mingled my drink with weeping,</VERS>\r\n      <VERS vnumber=\"10\">Because of thine indignation and thy wrath: for thou hast lifted me up, and cast me down.</VERS>\r\n      <VERS vnumber=\"11\">My days are like a shadow that declineth; and I am withered like grass.</VERS>\r\n      <VERS vnumber=\"12\">But thou, O LORD, shalt endure for ever; and thy remembrance unto all generations.</VERS>\r\n      <VERS vnumber=\"13\">Thou shalt arise, and have mercy upon Zion: for the time to favour her, yea, the set time, is come.</VERS>\r\n      <VERS vnumber=\"14\">For thy servants take pleasure in her stones, and favour the dust thereof.</VERS>\r\n      <VERS vnumber=\"15\">So the heathen shall fear the name of the LORD, and all the kings of the earth thy glory.</VERS>\r\n      <VERS vnumber=\"16\">When the LORD shall build up Zion, he shall appear in his glory.</VERS>\r\n      <VERS vnumber=\"17\">He will regard the prayer of the destitute, and not despise their prayer.</VERS>\r\n      <VERS vnumber=\"18\">This shall be written for the generation to come: and the people which shall be created shall praise the LORD.</VERS>\r\n      <VERS vnumber=\"19\">For he hath looked down from the height of his sanctuary; from heaven did the LORD behold the earth;</VERS>\r\n      <VERS vnumber=\"20\">To hear the groaning of the prisoner; to loose those that are appointed to death;</VERS>\r\n      <VERS vnumber=\"21\">To declare the name of the LORD in Zion, and his praise in Jerusalem;</VERS>\r\n      <VERS vnumber=\"22\">When the people are gathered together, and the kingdoms, to serve the LORD.</VERS>\r\n      <VERS vnumber=\"23\">He weakened my strength in the way; he shortened my days.</VERS>\r\n      <VERS vnumber=\"24\">I said, O my God, take me not away in the midst of my days: thy years are throughout all generations.</VERS>\r\n      <VERS vnumber=\"25\">Of old hast thou laid the foundation of the earth: and the heavens are the work of thy hands.</VERS>\r\n      <VERS vnumber=\"26\">They 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:</VERS>\r\n      <VERS vnumber=\"27\">But thou art the same, and thy years shall have no end.</VERS>\r\n      <VERS vnumber=\"28\">The children of thy servants shall continue, and their seed shall be established before thee.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"103\">\r\n      <CAPTION vref=\"1\">A Psalm of David. </CAPTION>\r\n      <VERS vnumber=\"1\">Bless the LORD, O my soul: and all that is within me, bless his holy name.</VERS>\r\n      <VERS vnumber=\"2\">Bless the LORD, O my soul, and forget not all his benefits:</VERS>\r\n      <VERS vnumber=\"3\">Who forgiveth all thine iniquities; who healeth all thy diseases;</VERS>\r\n      <VERS vnumber=\"4\">Who redeemeth thy life from destruction; who crowneth thee with lovingkindness and tender mercies;</VERS>\r\n      <VERS vnumber=\"5\">Who satisfieth thy mouth with good things; so that thy youth is renewed like the eagle's.</VERS>\r\n      <VERS vnumber=\"6\">The LORD executeth righteousness and judgment for all that are oppressed.</VERS>\r\n      <VERS vnumber=\"7\">He made known his ways unto Moses, his acts unto the children of Israel.</VERS>\r\n      <VERS vnumber=\"8\">The LORD is merciful and gracious, slow to anger, and plenteous in mercy.</VERS>\r\n      <VERS vnumber=\"9\">He will not always chide: neither will he keep his anger for ever.</VERS>\r\n      <VERS vnumber=\"10\">He hath not dealt with us after our sins; nor rewarded us according to our iniquities.</VERS>\r\n      <VERS vnumber=\"11\">For as the heaven is high above the earth, so great is his mercy toward them that fear him.</VERS>\r\n      <VERS vnumber=\"12\">As far as the east is from the west, so far hath he removed our transgressions from us.</VERS>\r\n      <VERS vnumber=\"13\">Like as a father pitieth his children, so the LORD pitieth them that fear him.</VERS>\r\n      <VERS vnumber=\"14\">For he knoweth our frame; he remembereth that we are dust.</VERS>\r\n      <VERS vnumber=\"15\">As for man, his days are as grass: as a flower of the field, so he flourisheth.</VERS>\r\n      <VERS vnumber=\"16\">For the wind passeth over it, and it is gone; and the place thereof shall know it no more.</VERS>\r\n      <VERS vnumber=\"17\">But the mercy of the LORD is from everlasting to everlasting upon them that fear him, and his righteousness unto children's children;</VERS>\r\n      <VERS vnumber=\"18\">To such as keep his covenant, and to those that remember his commandments to do them.</VERS>\r\n      <VERS vnumber=\"19\">The LORD hath prepared his throne in the heavens; and his kingdom ruleth over all.</VERS>\r\n      <VERS vnumber=\"20\">Bless the LORD, ye his angels, that excel in strength, that do his commandments, hearkening unto the voice of his word.</VERS>\r\n      <VERS vnumber=\"21\">Bless ye the LORD, all ye his hosts; ye ministers of his, that do his pleasure.</VERS>\r\n      <VERS vnumber=\"22\">Bless the LORD, all his works in all places of his dominion: bless the LORD, O my soul.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"104\">\r\n      <VERS vnumber=\"1\">Bless the LORD, O my soul. O LORD my God, thou art very great; thou art clothed with honour and majesty.</VERS>\r\n      <VERS vnumber=\"2\">Who coverest thyself with light as with a garment: who stretchest out the heavens like a curtain:</VERS>\r\n      <VERS vnumber=\"3\">Who layeth the beams of his chambers in the waters: who maketh the clouds his chariot: who walketh upon the wings of the wind:</VERS>\r\n      <VERS vnumber=\"4\">Who maketh his angels spirits; his ministers a flaming fire:</VERS>\r\n      <VERS vnumber=\"5\">Who laid the foundations of the earth, that it should not be removed for ever.</VERS>\r\n      <VERS vnumber=\"6\">Thou coveredst it with the deep as with a garment: the waters stood above the mountains.</VERS>\r\n      <VERS vnumber=\"7\">At thy rebuke they fled; at the voice of thy thunder they hasted away.</VERS>\r\n      <VERS vnumber=\"8\">They go up by the mountains; they go down by the valleys unto the place which thou hast founded for them.</VERS>\r\n      <VERS vnumber=\"9\">Thou hast set a bound that they may not pass over; that they turn not again to cover the earth.</VERS>\r\n      <VERS vnumber=\"10\">He sendeth the springs into the valleys, which run among the hills.</VERS>\r\n      <VERS vnumber=\"11\">They give drink to every beast of the field: the wild asses quench their thirst.</VERS>\r\n      <VERS vnumber=\"12\">By them shall the fowls of the heaven have their habitation, which sing among the branches.</VERS>\r\n      <VERS vnumber=\"13\">He watereth the hills from his chambers: the earth is satisfied with the fruit of thy works.</VERS>\r\n      <VERS vnumber=\"14\">He 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;</VERS>\r\n      <VERS vnumber=\"15\">And wine that maketh glad the heart of man, and oil to make his face to shine, and bread which strengtheneth man's heart.</VERS>\r\n      <VERS vnumber=\"16\">The trees of the LORD are full of sap; the cedars of Lebanon, which he hath planted;</VERS>\r\n      <VERS vnumber=\"17\">Where the birds make their nests: as for the stork, the fir trees are her house.</VERS>\r\n      <VERS vnumber=\"18\">The high hills are a refuge for the wild goats; and the rocks for the conies.</VERS>\r\n      <VERS vnumber=\"19\">He appointed the moon for seasons: the sun knoweth his going down.</VERS>\r\n      <VERS vnumber=\"20\">Thou makest darkness, and it is night: wherein all the beasts of the forest do creep forth.</VERS>\r\n      <VERS vnumber=\"21\">The young lions roar after their prey, and seek their meat from God.</VERS>\r\n      <VERS vnumber=\"22\">The sun ariseth, they gather themselves together, and lay them down in their dens.</VERS>\r\n      <VERS vnumber=\"23\">Man goeth forth unto his work and to his labour until the evening.</VERS>\r\n      <VERS vnumber=\"24\">O LORD, how manifold are thy works! in wisdom hast thou made them all: the earth is full of thy riches.</VERS>\r\n      <VERS vnumber=\"25\">So is this great and wide sea, wherein are things creeping innumerable, both small and great beasts.</VERS>\r\n      <VERS vnumber=\"26\">There go the ships: there is that leviathan, whom thou hast made to play therein.</VERS>\r\n      <VERS vnumber=\"27\">These wait all upon thee; that thou mayest give them their meat in due season.</VERS>\r\n      <VERS vnumber=\"28\">That thou givest them they gather: thou openest thine hand, they are filled with good.</VERS>\r\n      <VERS vnumber=\"29\">Thou hidest thy face, they are troubled: thou takest away their breath, they die, and return to their dust.</VERS>\r\n      <VERS vnumber=\"30\">Thou sendest forth thy spirit, they are created: and thou renewest the face of the earth.</VERS>\r\n      <VERS vnumber=\"31\">The glory of the LORD shall endure for ever: the LORD shall rejoice in his works.</VERS>\r\n      <VERS vnumber=\"32\">He looketh on the earth, and it trembleth: he toucheth the hills, and they smoke.</VERS>\r\n      <VERS vnumber=\"33\">I will sing unto the LORD as long as I live: I will sing praise to my God while I have my being.</VERS>\r\n      <VERS vnumber=\"34\">My meditation of him shall be sweet: I will be glad in the LORD.</VERS>\r\n      <VERS vnumber=\"35\">Let 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"105\">\r\n      <VERS vnumber=\"1\">O give thanks unto the LORD; call upon his name: make known his deeds among the people.</VERS>\r\n      <VERS vnumber=\"2\">Sing unto him, sing psalms unto him: talk ye of all his wondrous works.</VERS>\r\n      <VERS vnumber=\"3\">Glory ye in his holy name: let the heart of them rejoice that seek the LORD.</VERS>\r\n      <VERS vnumber=\"4\">Seek the LORD, and his strength: seek his face evermore.</VERS>\r\n      <VERS vnumber=\"5\">Remember his marvellous works that he hath done; his wonders, and the judgments of his mouth;</VERS>\r\n      <VERS vnumber=\"6\">O ye seed of Abraham his servant, ye children of Jacob his chosen.</VERS>\r\n      <VERS vnumber=\"7\">He is the LORD our God: his judgments are in all the earth.</VERS>\r\n      <VERS vnumber=\"8\">He hath remembered his covenant for ever, the word which he commanded to a thousand generations.</VERS>\r\n      <VERS vnumber=\"9\">Which covenant he made with Abraham, and his oath unto Isaac;</VERS>\r\n      <VERS vnumber=\"10\">And confirmed the same unto Jacob for a law, and to Israel for an everlasting covenant:</VERS>\r\n      <VERS vnumber=\"11\">Saying, Unto thee will I give the land of Canaan, the lot of your inheritance:</VERS>\r\n      <VERS vnumber=\"12\">When they were but a few men in number; yea, very few, and strangers in it.</VERS>\r\n      <VERS vnumber=\"13\">When they went from one nation to another, from one kingdom to another people;</VERS>\r\n      <VERS vnumber=\"14\">He suffered no man to do them wrong: yea, he reproved kings for their sakes;</VERS>\r\n      <VERS vnumber=\"15\">Saying, Touch not mine anointed, and do my prophets no harm.</VERS>\r\n      <VERS vnumber=\"16\">Moreover he called for a famine upon the land: he brake the whole staff of bread.</VERS>\r\n      <VERS vnumber=\"17\">He sent a man before them, even Joseph, who was sold for a servant:</VERS>\r\n      <VERS vnumber=\"18\">Whose feet they hurt with fetters: he was laid in iron:</VERS>\r\n      <VERS vnumber=\"19\">Until the time that his word came: the word of the LORD tried him.</VERS>\r\n      <VERS vnumber=\"20\">The king sent and loosed him; even the ruler of the people, and let him go free.</VERS>\r\n      <VERS vnumber=\"21\">He made him lord of his house, and ruler of all his substance:</VERS>\r\n      <VERS vnumber=\"22\">To bind his princes at his pleasure; and teach his senators wisdom.</VERS>\r\n      <VERS vnumber=\"23\">Israel also came into Egypt; and Jacob sojourned in the land of Ham.</VERS>\r\n      <VERS vnumber=\"24\">And he increased his people greatly; and made them stronger than their enemies.</VERS>\r\n      <VERS vnumber=\"25\">He turned their heart to hate his people, to deal subtilly with his servants.</VERS>\r\n      <VERS vnumber=\"26\">He sent Moses his servant; and Aaron whom he had chosen.</VERS>\r\n      <VERS vnumber=\"27\">They shewed his signs among them, and wonders in the land of Ham.</VERS>\r\n      <VERS vnumber=\"28\">He sent darkness, and made it dark; and they rebelled not against his word.</VERS>\r\n      <VERS vnumber=\"29\">He turned their waters into blood, and slew their fish.</VERS>\r\n      <VERS vnumber=\"30\">Their land brought forth frogs in abundance, in the chambers of their kings.</VERS>\r\n      <VERS vnumber=\"31\">He spake, and there came divers sorts of flies, and lice in all their coasts.</VERS>\r\n      <VERS vnumber=\"32\">He gave them hail for rain, and flaming fire in their land.</VERS>\r\n      <VERS vnumber=\"33\">He smote their vines also and their fig trees; and brake the trees of their coasts.</VERS>\r\n      <VERS vnumber=\"34\">He spake, and the locusts came, and caterpillers, and that without number,</VERS>\r\n      <VERS vnumber=\"35\">And did eat up all the herbs in their land, and devoured the fruit of their ground.</VERS>\r\n      <VERS vnumber=\"36\">He smote also all the firstborn in their land, the chief of all their strength.</VERS>\r\n      <VERS vnumber=\"37\">He brought them forth also with silver and gold: and there was not one feeble person among their tribes.</VERS>\r\n      <VERS vnumber=\"38\">Egypt was glad when they departed: for the fear of them fell upon them.</VERS>\r\n      <VERS vnumber=\"39\">He spread a cloud for a covering; and fire to give light in the night.</VERS>\r\n      <VERS vnumber=\"40\">The people asked, and he brought quails, and satisfied them with the bread of heaven.</VERS>\r\n      <VERS vnumber=\"41\">He opened the rock, and the waters gushed out; they ran in the dry places like a river.</VERS>\r\n      <VERS vnumber=\"42\">For he remembered his holy promise, and Abraham his servant.</VERS>\r\n      <VERS vnumber=\"43\">And he brought forth his people with joy, and his chosen with gladness:</VERS>\r\n      <VERS vnumber=\"44\">And gave them the lands of the heathen: and they inherited the labour of the people;</VERS>\r\n      <VERS vnumber=\"45\">That they might observe his statutes, and keep his laws. Praise ye the LORD.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"106\">\r\n      <VERS vnumber=\"1\">Praise ye the LORD. O give thanks unto the LORD; for he is good: for his mercy endureth for ever.</VERS>\r\n      <VERS vnumber=\"2\">Who can utter the mighty acts of the LORD? who can shew forth all his praise?</VERS>\r\n      <VERS vnumber=\"3\">Blessed are they that keep judgment, and he that doeth righteousness at all times.</VERS>\r\n      <VERS vnumber=\"4\">Remember me, O LORD, with the favour that thou bearest unto thy people: O visit me with thy salvation;</VERS>\r\n      <VERS vnumber=\"5\">That 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.</VERS>\r\n      <VERS vnumber=\"6\">We have sinned with our fathers, we have committed iniquity, we have done wickedly.</VERS>\r\n      <VERS vnumber=\"7\">Our 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.</VERS>\r\n      <VERS vnumber=\"8\">Nevertheless he saved them for his name's sake, that he might make his mighty power to be known.</VERS>\r\n      <VERS vnumber=\"9\">He rebuked the Red sea also, and it was dried up: so he led them through the depths, as through the wilderness.</VERS>\r\n      <VERS vnumber=\"10\">And he saved them from the hand of him that hated them, and redeemed them from the hand of the enemy.</VERS>\r\n      <VERS vnumber=\"11\">And the waters covered their enemies: there was not one of them left.</VERS>\r\n      <VERS vnumber=\"12\">Then believed they his words; they sang his praise.</VERS>\r\n      <VERS vnumber=\"13\">They soon forgat his works; they waited not for his counsel:</VERS>\r\n      <VERS vnumber=\"14\">But lusted exceedingly in the wilderness, and tempted God in the desert.</VERS>\r\n      <VERS vnumber=\"15\">And he gave them their request; but sent leanness into their soul.</VERS>\r\n      <VERS vnumber=\"16\">They envied Moses also in the camp, and Aaron the saint of the LORD.</VERS>\r\n      <VERS vnumber=\"17\">The earth opened and swallowed up Dathan, and covered the company of Abiram.</VERS>\r\n      <VERS vnumber=\"18\">And a fire was kindled in their company; the flame burned up the wicked.</VERS>\r\n      <VERS vnumber=\"19\">They made a calf in Horeb, and worshipped the molten image.</VERS>\r\n      <VERS vnumber=\"20\">Thus they changed their glory into the similitude of an ox that eateth grass.</VERS>\r\n      <VERS vnumber=\"21\">They forgat God their saviour, which had done great things in Egypt;</VERS>\r\n      <VERS vnumber=\"22\">Wondrous works in the land of Ham, and terrible things by the Red sea.</VERS>\r\n      <VERS vnumber=\"23\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"24\">Yea, they despised the pleasant land, they believed not his word:</VERS>\r\n      <VERS vnumber=\"25\">But murmured in their tents, and hearkened not unto the voice of the LORD.</VERS>\r\n      <VERS vnumber=\"26\">Therefore he lifted up his hand against them, to overthrow them in the wilderness:</VERS>\r\n      <VERS vnumber=\"27\">To overthrow their seed also among the nations, and to scatter them in the lands.</VERS>\r\n      <VERS vnumber=\"28\">They joined themselves also unto Baalpeor, and ate the sacrifices of the dead.</VERS>\r\n      <VERS vnumber=\"29\">Thus they provoked him to anger with their inventions: and the plague brake in upon them.</VERS>\r\n      <VERS vnumber=\"30\">Then stood up Phinehas, and executed judgment: and so the plague was stayed.</VERS>\r\n      <VERS vnumber=\"31\">And that was counted unto him for righteousness unto all generations for evermore.</VERS>\r\n      <VERS vnumber=\"32\">They angered him also at the waters of strife, so that it went ill with Moses for their sakes:</VERS>\r\n      <VERS vnumber=\"33\">Because they provoked his spirit, so that he spake unadvisedly with his lips.</VERS>\r\n      <VERS vnumber=\"34\">They did not destroy the nations, concerning whom the LORD commanded them:</VERS>\r\n      <VERS vnumber=\"35\">But were mingled among the heathen, and learned their works.</VERS>\r\n      <VERS vnumber=\"36\">And they served their idols: which were a snare unto them.</VERS>\r\n      <VERS vnumber=\"37\">Yea, they sacrificed their sons and their daughters unto devils,</VERS>\r\n      <VERS vnumber=\"38\">And 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.</VERS>\r\n      <VERS vnumber=\"39\">Thus were they defiled with their own works, and went a whoring with their own inventions.</VERS>\r\n      <VERS vnumber=\"40\">Therefore was the wrath of the LORD kindled against his people, insomuch that he abhorred his own inheritance.</VERS>\r\n      <VERS vnumber=\"41\">And he gave them into the hand of the heathen; and they that hated them ruled over them.</VERS>\r\n      <VERS vnumber=\"42\">Their enemies also oppressed them, and they were brought into subjection under their hand.</VERS>\r\n      <VERS vnumber=\"43\">Many times did he deliver them; but they provoked him with their counsel, and were brought low for their iniquity.</VERS>\r\n      <VERS vnumber=\"44\">Nevertheless he regarded their affliction, when he heard their cry:</VERS>\r\n      <VERS vnumber=\"45\">And he remembered for them his covenant, and repented according to the multitude of his mercies.</VERS>\r\n      <VERS vnumber=\"46\">He made them also to be pitied of all those that carried them captives.</VERS>\r\n      <VERS vnumber=\"47\">Save 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.</VERS>\r\n      <VERS vnumber=\"48\">Blessed be the LORD God of Israel from everlasting to everlasting: and let all the people say, Amen. Praise ye the LORD.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"107\">\r\n      <VERS vnumber=\"1\">O give thanks unto the LORD, for he is good: for his mercy endureth for ever.</VERS>\r\n      <VERS vnumber=\"2\">Let the redeemed of the LORD say so, whom he hath redeemed from the hand of the enemy;</VERS>\r\n      <VERS vnumber=\"3\">And gathered them out of the lands, from the east, and from the west, from the north, and from the south.</VERS>\r\n      <VERS vnumber=\"4\">They wandered in the wilderness in a solitary way; they found no city to dwell in.</VERS>\r\n      <VERS vnumber=\"5\">Hungry and thirsty, their soul fainted in them.</VERS>\r\n      <VERS vnumber=\"6\">Then they cried unto the LORD in their trouble, and he delivered them out of their distresses.</VERS>\r\n      <VERS vnumber=\"7\">And he led them forth by the right way, that they might go to a city of habitation.</VERS>\r\n      <VERS vnumber=\"8\">Oh that men would praise the LORD for his goodness, and for his wonderful works to the children of men!</VERS>\r\n      <VERS vnumber=\"9\">For he satisfieth the longing soul, and filleth the hungry soul with goodness.</VERS>\r\n      <VERS vnumber=\"10\">Such as sit in darkness and in the shadow of death, being bound in affliction and iron;</VERS>\r\n      <VERS vnumber=\"11\">Because they rebelled against the words of God, and contemned the counsel of the most High:</VERS>\r\n      <VERS vnumber=\"12\">Therefore he brought down their heart with labour; they fell down, and there was none to help.</VERS>\r\n      <VERS vnumber=\"13\">Then they cried unto the LORD in their trouble, and he saved them out of their distresses.</VERS>\r\n      <VERS vnumber=\"14\">He brought them out of darkness and the shadow of death, and brake their bands in sunder.</VERS>\r\n      <VERS vnumber=\"15\">Oh that men would praise the LORD for his goodness, and for his wonderful works to the children of men!</VERS>\r\n      <VERS vnumber=\"16\">For he hath broken the gates of brass, and cut the bars of iron in sunder.</VERS>\r\n      <VERS vnumber=\"17\">Fools because of their transgression, and because of their iniquities, are afflicted.</VERS>\r\n      <VERS vnumber=\"18\">Their soul abhorreth all manner of meat; and they draw near unto the gates of death.</VERS>\r\n      <VERS vnumber=\"19\">Then they cry unto the LORD in their trouble, and he saveth them out of their distresses.</VERS>\r\n      <VERS vnumber=\"20\">He sent his word, and healed them, and delivered them from their destructions.</VERS>\r\n      <VERS vnumber=\"21\">Oh that men would praise the LORD for his goodness, and for his wonderful works to the children of men!</VERS>\r\n      <VERS vnumber=\"22\">And let them sacrifice the sacrifices of thanksgiving, and declare his works with rejoicing.</VERS>\r\n      <VERS vnumber=\"23\">They that go down to the sea in ships, that do business in great waters;</VERS>\r\n      <VERS vnumber=\"24\">These see the works of the LORD, and his wonders in the deep.</VERS>\r\n      <VERS vnumber=\"25\">For he commandeth, and raiseth the stormy wind, which lifteth up the waves thereof.</VERS>\r\n      <VERS vnumber=\"26\">They mount up to the heaven, they go down again to the depths: their soul is melted because of trouble.</VERS>\r\n      <VERS vnumber=\"27\">They reel to and fro, and stagger like a drunken man, and are at their wits' end.</VERS>\r\n      <VERS vnumber=\"28\">Then they cry unto the LORD in their trouble, and he bringeth them out of their distresses.</VERS>\r\n      <VERS vnumber=\"29\">He maketh the storm a calm, so that the waves thereof are still.</VERS>\r\n      <VERS vnumber=\"30\">Then are they glad because they be quiet; so he bringeth them unto their desired haven.</VERS>\r\n      <VERS vnumber=\"31\">Oh that men would praise the LORD for his goodness, and for his wonderful works to the children of men!</VERS>\r\n      <VERS vnumber=\"32\">Let them exalt him also in the congregation of the people, and praise him in the assembly of the elders.</VERS>\r\n      <VERS vnumber=\"33\">He turneth rivers into a wilderness, and the watersprings into dry ground;</VERS>\r\n      <VERS vnumber=\"34\">A fruitful land into barrenness, for the wickedness of them that dwell therein.</VERS>\r\n      <VERS vnumber=\"35\">He turneth the wilderness into a standing water, and dry ground into watersprings.</VERS>\r\n      <VERS vnumber=\"36\">And there he maketh the hungry to dwell, that they may prepare a city for habitation;</VERS>\r\n      <VERS vnumber=\"37\">And sow the fields, and plant vineyards, which may yield fruits of increase.</VERS>\r\n      <VERS vnumber=\"38\">He blesseth them also, so that they are multiplied greatly; and suffereth not their cattle to decrease.</VERS>\r\n      <VERS vnumber=\"39\">Again, they are minished and brought low through oppression, affliction, and sorrow.</VERS>\r\n      <VERS vnumber=\"40\">He poureth contempt upon princes, and causeth them to wander in the wilderness, where there is no way.</VERS>\r\n      <VERS vnumber=\"41\">Yet setteth he the poor on high from affliction, and maketh him families like a flock.</VERS>\r\n      <VERS vnumber=\"42\">The righteous shall see it, and rejoice: and all iniquity shall stop her mouth.</VERS>\r\n      <VERS vnumber=\"43\">Whoso is wise, and will observe these things, even they shall understand the lovingkindness of the LORD.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"108\">\r\n      <CAPTION vref=\"1\">A Song or Psalm of David. </CAPTION>\r\n      <VERS vnumber=\"1\">O God, my heart is fixed; I will sing and give praise, even with my glory.</VERS>\r\n      <VERS vnumber=\"2\">Awake, psaltery and harp: I myself will awake early.</VERS>\r\n      <VERS vnumber=\"3\">I will praise thee, O LORD, among the people: and I will sing praises unto thee among the nations.</VERS>\r\n      <VERS vnumber=\"4\">For thy mercy is great above the heavens: and thy truth reacheth unto the clouds.</VERS>\r\n      <VERS vnumber=\"5\">Be thou exalted, O God, above the heavens: and thy glory above all the earth;</VERS>\r\n      <VERS vnumber=\"6\">That thy beloved may be delivered: save with thy right hand, and answer me.</VERS>\r\n      <VERS vnumber=\"7\">God hath spoken in his holiness; I will rejoice, I will divide Shechem, and mete out the valley of Succoth.</VERS>\r\n      <VERS vnumber=\"8\">Gilead is mine; Manasseh is mine; Ephraim also is the strength of mine head; Judah is my lawgiver;</VERS>\r\n      <VERS vnumber=\"9\">Moab is my washpot; over Edom will I cast out my shoe; over Philistia will I triumph.</VERS>\r\n      <VERS vnumber=\"10\">Who will bring me into the strong city? who will lead me into Edom?</VERS>\r\n      <VERS vnumber=\"11\">Wilt not thou, O God, who hast cast us off? and wilt not thou, O God, go forth with our hosts?</VERS>\r\n      <VERS vnumber=\"12\">Give us help from trouble: for vain is the help of man.</VERS>\r\n      <VERS vnumber=\"13\">Through God we shall do valiantly: for he it is that shall tread down our enemies.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"109\">\r\n      <CAPTION vref=\"1\">To the chief Musician, A Psalm of David.</CAPTION>\r\n      <VERS vnumber=\"1\">Hold not thy peace, O God of my praise;</VERS>\r\n      <VERS vnumber=\"2\">For the mouth of the wicked and the mouth of the deceitful are opened against me: they have spoken against me with a lying tongue.</VERS>\r\n      <VERS vnumber=\"3\">They compassed me about also with words of hatred; and fought against me without a cause.</VERS>\r\n      <VERS vnumber=\"4\">For my love they are my adversaries: but I give myself unto prayer.</VERS>\r\n      <VERS vnumber=\"5\">And they have rewarded me evil for good, and hatred for my love.</VERS>\r\n      <VERS vnumber=\"6\">Set thou a wicked man over him: and let Satan stand at his right hand.</VERS>\r\n      <VERS vnumber=\"7\">When he shall be judged, let him be condemned: and let his prayer become sin.</VERS>\r\n      <VERS vnumber=\"8\">Let his days be few; and let another take his office.</VERS>\r\n      <VERS vnumber=\"9\">Let his children be fatherless, and his wife a widow.</VERS>\r\n      <VERS vnumber=\"10\">Let his children be continually vagabonds, and beg: let them seek their bread also out of their desolate places.</VERS>\r\n      <VERS vnumber=\"11\">Let the extortioner catch all that he hath; and let the strangers spoil his labour.</VERS>\r\n      <VERS vnumber=\"12\">Let there be none to extend mercy unto him: neither let there be any to favour his fatherless children.</VERS>\r\n      <VERS vnumber=\"13\">Let his posterity be cut off; and in the generation following let their name be blotted out.</VERS>\r\n      <VERS vnumber=\"14\">Let the iniquity of his fathers be remembered with the LORD; and let not the sin of his mother be blotted out.</VERS>\r\n      <VERS vnumber=\"15\">Let them be before the LORD continually, that he may cut off the memory of them from the earth.</VERS>\r\n      <VERS vnumber=\"16\">Because that he remembered not to shew mercy, but persecuted the poor and needy man, that he might even slay the broken in heart.</VERS>\r\n      <VERS vnumber=\"17\">As he loved cursing, so let it come unto him: as he delighted not in blessing, so let it be far from him.</VERS>\r\n      <VERS vnumber=\"18\">As 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.</VERS>\r\n      <VERS vnumber=\"19\">Let it be unto him as the garment which covereth him, and for a girdle wherewith he is girded continually.</VERS>\r\n      <VERS vnumber=\"20\">Let this be the reward of mine adversaries from the LORD, and of them that speak evil against my soul.</VERS>\r\n      <VERS vnumber=\"21\">But do thou for me, O GOD the Lord, for thy name's sake: because thy mercy is good, deliver thou me.</VERS>\r\n      <VERS vnumber=\"22\">For I am poor and needy, and my heart is wounded within me.</VERS>\r\n      <VERS vnumber=\"23\">I am gone like the shadow when it declineth: I am tossed up and down as the locust.</VERS>\r\n      <VERS vnumber=\"24\">My knees are weak through fasting; and my flesh faileth of fatness.</VERS>\r\n      <VERS vnumber=\"25\">I became also a reproach unto them: when they looked upon me they shaked their heads.</VERS>\r\n      <VERS vnumber=\"26\">Help me, O LORD my God: O save me according to thy mercy:</VERS>\r\n      <VERS vnumber=\"27\">That they may know that this is thy hand; that thou, LORD, hast done it.</VERS>\r\n      <VERS vnumber=\"28\">Let them curse, but bless thou: when they arise, let them be ashamed; but let thy servant rejoice.</VERS>\r\n      <VERS vnumber=\"29\">Let mine adversaries be clothed with shame, and let them cover themselves with their own confusion, as with a mantle.</VERS>\r\n      <VERS vnumber=\"30\">I will greatly praise the LORD with my mouth; yea, I will praise him among the multitude.</VERS>\r\n      <VERS vnumber=\"31\">For he shall stand at the right hand of the poor, to save him from those that condemn his soul.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"110\">\r\n      <CAPTION vref=\"1\">A Psalm of David. </CAPTION>\r\n      <VERS vnumber=\"1\">The LORD said unto my Lord, Sit thou at my right hand, until I make thine enemies thy footstool.</VERS>\r\n      <VERS vnumber=\"2\">The LORD shall send the rod of thy strength out of Zion: rule thou in the midst of thine enemies.</VERS>\r\n      <VERS vnumber=\"3\">Thy 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.</VERS>\r\n      <VERS vnumber=\"4\">The LORD hath sworn, and will not repent, Thou art a priest for ever after the order of Melchizedek.</VERS>\r\n      <VERS vnumber=\"5\">The Lord at thy right hand shall strike through kings in the day of his wrath.</VERS>\r\n      <VERS vnumber=\"6\">He shall judge among the heathen, he shall fill the places with the dead bodies; he shall wound the heads over many countries.</VERS>\r\n      <VERS vnumber=\"7\">He shall drink of the brook in the way: therefore shall he lift up the head.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"111\">\r\n      <VERS vnumber=\"1\">Praise ye the LORD. I will praise the LORD with my whole heart, in the assembly of the upright, and in the congregation.</VERS>\r\n      <VERS vnumber=\"2\">The works of the LORD are great, sought out of all them that have pleasure therein.</VERS>\r\n      <VERS vnumber=\"3\">His work is honourable and glorious: and his righteousness endureth for ever.</VERS>\r\n      <VERS vnumber=\"4\">He hath made his wonderful works to be remembered: the LORD is gracious and full of compassion.</VERS>\r\n      <VERS vnumber=\"5\">He hath given meat unto them that fear him: he will ever be mindful of his covenant.</VERS>\r\n      <VERS vnumber=\"6\">He hath shewed his people the power of his works, that he may give them the heritage of the heathen.</VERS>\r\n      <VERS vnumber=\"7\">The works of his hands are verity and judgment; all his commandments are sure.</VERS>\r\n      <VERS vnumber=\"8\">They stand fast for ever and ever, and are done in truth and uprightness.</VERS>\r\n      <VERS vnumber=\"9\">He sent redemption unto his people: he hath commanded his covenant for ever: holy and reverend is his name.</VERS>\r\n      <VERS vnumber=\"10\">The fear of the LORD is the beginning of wisdom: a good understanding have all they that do his commandments: his praise endureth for ever.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"112\">\r\n      <VERS vnumber=\"1\">Praise ye the LORD. Blessed is the man that feareth the LORD, that delighteth greatly in his commandments.</VERS>\r\n      <VERS vnumber=\"2\">His seed shall be mighty upon earth: the generation of the upright shall be blessed.</VERS>\r\n      <VERS vnumber=\"3\">Wealth and riches shall be in his house: and his righteousness endureth for ever.</VERS>\r\n      <VERS vnumber=\"4\">Unto the upright there ariseth light in the darkness: he is gracious, and full of compassion, and righteous.</VERS>\r\n      <VERS vnumber=\"5\">A good man sheweth favour, and lendeth: he will guide his affairs with discretion.</VERS>\r\n      <VERS vnumber=\"6\">Surely he shall not be moved for ever: the righteous shall be in everlasting remembrance.</VERS>\r\n      <VERS vnumber=\"7\">He shall not be afraid of evil tidings: his heart is fixed, trusting in the LORD.</VERS>\r\n      <VERS vnumber=\"8\">His heart is established, he shall not be afraid, until he see his desire upon his enemies.</VERS>\r\n      <VERS vnumber=\"9\">He hath dispersed, he hath given to the poor; his righteousness endureth for ever; his horn shall be exalted with honour.</VERS>\r\n      <VERS vnumber=\"10\">The wicked shall see it, and be grieved; he shall gnash with his teeth, and melt away: the desire of the wicked shall perish.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"113\">\r\n      <VERS vnumber=\"1\">Praise ye the LORD. Praise, O ye servants of the LORD, praise the name of the LORD.</VERS>\r\n      <VERS vnumber=\"2\">Blessed be the name of the LORD from this time forth and for evermore.</VERS>\r\n      <VERS vnumber=\"3\">From the rising of the sun unto the going down of the same the LORD'S name is to be praised.</VERS>\r\n      <VERS vnumber=\"4\">The LORD is high above all nations, and his glory above the heavens.</VERS>\r\n      <VERS vnumber=\"5\">Who is like unto the LORD our God, who dwelleth on high,</VERS>\r\n      <VERS vnumber=\"6\">Who humbleth himself to behold the things that are in heaven, and in the earth!</VERS>\r\n      <VERS vnumber=\"7\">He raiseth up the poor out of the dust, and lifteth the needy out of the dunghill;</VERS>\r\n      <VERS vnumber=\"8\">That he may set him with princes, even with the princes of his people.</VERS>\r\n      <VERS vnumber=\"9\">He maketh the barren woman to keep house, and to be a joyful mother of children. Praise ye the LORD.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"114\">\r\n      <VERS vnumber=\"1\">When Israel went out of Egypt, the house of Jacob from a people of strange language;</VERS>\r\n      <VERS vnumber=\"2\">Judah was his sanctuary, and Israel his dominion.</VERS>\r\n      <VERS vnumber=\"3\">The sea saw it, and fled: Jordan was driven back.</VERS>\r\n      <VERS vnumber=\"4\">The mountains skipped like rams, and the little hills like lambs.</VERS>\r\n      <VERS vnumber=\"5\">What ailed thee, O thou sea, that thou fleddest? thou Jordan, that thou wast driven back?</VERS>\r\n      <VERS vnumber=\"6\">Ye mountains, that ye skipped like rams; and ye little hills, like lambs?</VERS>\r\n      <VERS vnumber=\"7\">Tremble, thou earth, at the presence of the Lord, at the presence of the God of Jacob;</VERS>\r\n      <VERS vnumber=\"8\">Which turned the rock into a standing water, the flint into a fountain of waters.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"115\">\r\n      <VERS vnumber=\"1\">Not unto us, O LORD, not unto us, but unto thy name give glory, for thy mercy, and for thy truth's sake.</VERS>\r\n      <VERS vnumber=\"2\">Wherefore should the heathen say, Where is now their God?</VERS>\r\n      <VERS vnumber=\"3\">But our God is in the heavens: he hath done whatsoever he hath pleased.</VERS>\r\n      <VERS vnumber=\"4\">Their idols are silver and gold, the work of men's hands.</VERS>\r\n      <VERS vnumber=\"5\">They have mouths, but they speak not: eyes have they, but they see not:</VERS>\r\n      <VERS vnumber=\"6\">They have ears, but they hear not: noses have they, but they smell not:</VERS>\r\n      <VERS vnumber=\"7\">They have hands, but they handle not: feet have they, but they walk not: neither speak they through their throat.</VERS>\r\n      <VERS vnumber=\"8\">They that make them are like unto them; so is every one that trusteth in them.</VERS>\r\n      <VERS vnumber=\"9\">O Israel, trust thou in the LORD: he is their help and their shield.</VERS>\r\n      <VERS vnumber=\"10\">O house of Aaron, trust in the LORD: he is their help and their shield.</VERS>\r\n      <VERS vnumber=\"11\">Ye that fear the LORD, trust in the LORD: he is their help and their shield.</VERS>\r\n      <VERS vnumber=\"12\">The LORD hath been mindful of us: he will bless us; he will bless the house of Israel; he will bless the house of Aaron.</VERS>\r\n      <VERS vnumber=\"13\">He will bless them that fear the LORD, both small and great.</VERS>\r\n      <VERS vnumber=\"14\">The LORD shall increase you more and more, you and your children.</VERS>\r\n      <VERS vnumber=\"15\">Ye are blessed of the LORD which made heaven and earth.</VERS>\r\n      <VERS vnumber=\"16\">The heaven, even the heavens, are the LORD'S: but the earth hath he given to the children of men.</VERS>\r\n      <VERS vnumber=\"17\">The dead praise not the LORD, neither any that go down into silence.</VERS>\r\n      <VERS vnumber=\"18\">But we will bless the LORD from this time forth and for evermore. Praise the LORD.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"116\">\r\n      <VERS vnumber=\"1\">I love the LORD, because he hath heard my voice and my supplications.</VERS>\r\n      <VERS vnumber=\"2\">Because he hath inclined his ear unto me, therefore will I call upon him as long as I live.</VERS>\r\n      <VERS vnumber=\"3\">The sorrows of death compassed me, and the pains of hell gat hold upon me: I found trouble and sorrow.</VERS>\r\n      <VERS vnumber=\"4\">Then called I upon the name of the LORD; O LORD, I beseech thee, deliver my soul.</VERS>\r\n      <VERS vnumber=\"5\">Gracious is the LORD, and righteous; yea, our God is merciful.</VERS>\r\n      <VERS vnumber=\"6\">The LORD preserveth the simple: I was brought low, and he helped me.</VERS>\r\n      <VERS vnumber=\"7\">Return unto thy rest, O my soul; for the LORD hath dealt bountifully with thee.</VERS>\r\n      <VERS vnumber=\"8\">For thou hast delivered my soul from death, mine eyes from tears, and my feet from falling.</VERS>\r\n      <VERS vnumber=\"9\">I will walk before the LORD in the land of the living.</VERS>\r\n      <VERS vnumber=\"10\">I believed, therefore have I spoken: I was greatly afflicted:</VERS>\r\n      <VERS vnumber=\"11\">I said in my haste, All men are liars.</VERS>\r\n      <VERS vnumber=\"12\">What shall I render unto the LORD for all his benefits toward me?</VERS>\r\n      <VERS vnumber=\"13\">I will take the cup of salvation, and call upon the name of the LORD.</VERS>\r\n      <VERS vnumber=\"14\">I will pay my vows unto the LORD now in the presence of all his people.</VERS>\r\n      <VERS vnumber=\"15\">Precious in the sight of the LORD is the death of his saints.</VERS>\r\n      <VERS vnumber=\"16\">O LORD, truly I am thy servant; I am thy servant, and the son of thine handmaid: thou hast loosed my bonds.</VERS>\r\n      <VERS vnumber=\"17\">I will offer to thee the sacrifice of thanksgiving, and will call upon the name of the LORD.</VERS>\r\n      <VERS vnumber=\"18\">I will pay my vows unto the LORD now in the presence of all his people,</VERS>\r\n      <VERS vnumber=\"19\">In the courts of the LORD'S house, in the midst of thee, O Jerusalem. Praise ye the LORD.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"117\">\r\n      <VERS vnumber=\"1\">O praise the LORD, all ye nations: praise him, all ye people.</VERS>\r\n      <VERS vnumber=\"2\">For his merciful kindness is great toward us: and the truth of the LORD endureth for ever. Praise ye the LORD.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"118\">\r\n      <VERS vnumber=\"1\">O give thanks unto the LORD; for he is good: because his mercy endureth for ever.</VERS>\r\n      <VERS vnumber=\"2\">Let Israel now say, that his mercy endureth for ever.</VERS>\r\n      <VERS vnumber=\"3\">Let the house of Aaron now say, that his mercy endureth for ever.</VERS>\r\n      <VERS vnumber=\"4\">Let them now that fear the LORD say, that his mercy endureth for ever.</VERS>\r\n      <VERS vnumber=\"5\">I called upon the LORD in distress: the LORD answered me, and set me in a large place.</VERS>\r\n      <VERS vnumber=\"6\">The LORD is on my side; I will not fear: what can man do unto me?</VERS>\r\n      <VERS vnumber=\"7\">The LORD taketh my part with them that help me: therefore shall I see my desire upon them that hate me.</VERS>\r\n      <VERS vnumber=\"8\">It is better to trust in the LORD than to put confidence in man.</VERS>\r\n      <VERS vnumber=\"9\">It is better to trust in the LORD than to put confidence in princes.</VERS>\r\n      <VERS vnumber=\"10\">All nations compassed me about: but in the name of the LORD will I destroy them.</VERS>\r\n      <VERS vnumber=\"11\">They compassed me about; yea, they compassed me about: but in the name of the LORD I will destroy them.</VERS>\r\n      <VERS vnumber=\"12\">They compassed me about like bees; they are quenched as the fire of thorns: for in the name of the LORD I will destroy them.</VERS>\r\n      <VERS vnumber=\"13\">Thou hast thrust sore at me that I might fall: but the LORD helped me.</VERS>\r\n      <VERS vnumber=\"14\">The LORD is my strength and song, and is become my salvation.</VERS>\r\n      <VERS vnumber=\"15\">The voice of rejoicing and salvation is in the tabernacles of the righteous: the right hand of the LORD doeth valiantly.</VERS>\r\n      <VERS vnumber=\"16\">The right hand of the LORD is exalted: the right hand of the LORD doeth valiantly.</VERS>\r\n      <VERS vnumber=\"17\">I shall not die, but live, and declare the works of the LORD.</VERS>\r\n      <VERS vnumber=\"18\">The LORD hath chastened me sore: but he hath not given me over unto death.</VERS>\r\n      <VERS vnumber=\"19\">Open to me the gates of righteousness: I will go into them, and I will praise the LORD:</VERS>\r\n      <VERS vnumber=\"20\">This gate of the LORD, into which the righteous shall enter.</VERS>\r\n      <VERS vnumber=\"21\">I will praise thee: for thou hast heard me, and art become my salvation.</VERS>\r\n      <VERS vnumber=\"22\">The stone which the builders refused is become the head stone of the corner.</VERS>\r\n      <VERS vnumber=\"23\">This is the LORD'S doing; it is marvellous in our eyes.</VERS>\r\n      <VERS vnumber=\"24\">This is the day which the LORD hath made; we will rejoice and be glad in it.</VERS>\r\n      <VERS vnumber=\"25\">Save now, I beseech thee, O LORD: O LORD, I beseech thee, send now prosperity.</VERS>\r\n      <VERS vnumber=\"26\">Blessed be he that cometh in the name of the LORD: we have blessed you out of the house of the LORD.</VERS>\r\n      <VERS vnumber=\"27\">God is the LORD, which hath shewed us light: bind the sacrifice with cords, even unto the horns of the altar.</VERS>\r\n      <VERS vnumber=\"28\">Thou art my God, and I will praise thee: thou art my God, I will exalt thee.</VERS>\r\n      <VERS vnumber=\"29\">O give thanks unto the LORD; for he is good: for his mercy endureth for ever.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"119\">\r\n      <VERS vnumber=\"1\">ALEPH. Blessed are the undefiled in the way, who walk in the law of the LORD.</VERS>\r\n      <VERS vnumber=\"2\">Blessed are they that keep his testimonies, and that seek him with the whole heart.</VERS>\r\n      <VERS vnumber=\"3\">They also do no iniquity: they walk in his ways.</VERS>\r\n      <VERS vnumber=\"4\">Thou hast commanded us to keep thy precepts diligently.</VERS>\r\n      <VERS vnumber=\"5\">O that my ways were directed to keep thy statutes!</VERS>\r\n      <VERS vnumber=\"6\">Then shall I not be ashamed, when I have respect unto all thy commandments.</VERS>\r\n      <VERS vnumber=\"7\">I will praise thee with uprightness of heart, when I shall have learned thy righteous judgments.</VERS>\r\n      <VERS vnumber=\"8\">I will keep thy statutes: O forsake me not utterly.</VERS>\r\n      <VERS vnumber=\"9\">BETH. Wherewithal shall a young man cleanse his way? by taking heed thereto according to thy word.</VERS>\r\n      <VERS vnumber=\"10\">With my whole heart have I sought thee: O let me not wander from thy commandments.</VERS>\r\n      <VERS vnumber=\"11\">Thy word have I hid in mine heart, that I might not sin against thee.</VERS>\r\n      <VERS vnumber=\"12\">Blessed art thou, O LORD: teach me thy statutes.</VERS>\r\n      <VERS vnumber=\"13\">With my lips have I declared all the judgments of thy mouth.</VERS>\r\n      <VERS vnumber=\"14\">I have rejoiced in the way of thy testimonies, as much as in all riches.</VERS>\r\n      <VERS vnumber=\"15\">I will meditate in thy precepts, and have respect unto thy ways.</VERS>\r\n      <VERS vnumber=\"16\">I will delight myself in thy statutes: I will not forget thy word.</VERS>\r\n      <VERS vnumber=\"17\">GIMEL. Deal bountifully with thy servant, that I may live, and keep thy word.</VERS>\r\n      <VERS vnumber=\"18\">Open thou mine eyes, that I may behold wondrous things out of thy law.</VERS>\r\n      <VERS vnumber=\"19\">I am a stranger in the earth: hide not thy commandments from me.</VERS>\r\n      <VERS vnumber=\"20\">My soul breaketh for the longing that it hath unto thy judgments at all times.</VERS>\r\n      <VERS vnumber=\"21\">Thou hast rebuked the proud that are cursed, which do err from thy commandments.</VERS>\r\n      <VERS vnumber=\"22\">Remove from me reproach and contempt; for I have kept thy testimonies.</VERS>\r\n      <VERS vnumber=\"23\">Princes also did sit and speak against me: but thy servant did meditate in thy statutes.</VERS>\r\n      <VERS vnumber=\"24\">Thy testimonies also are my delight and my counsellors.</VERS>\r\n      <VERS vnumber=\"25\">DALETH. My soul cleaveth unto the dust: quicken thou me according to thy word.</VERS>\r\n      <VERS vnumber=\"26\">I have declared my ways, and thou heardest me: teach me thy statutes.</VERS>\r\n      <VERS vnumber=\"27\">Make me to understand the way of thy precepts: so shall I talk of thy wondrous works.</VERS>\r\n      <VERS vnumber=\"28\">My soul melteth for heaviness: strengthen thou me according unto thy word.</VERS>\r\n      <VERS vnumber=\"29\">Remove from me the way of lying: and grant me thy law graciously.</VERS>\r\n      <VERS vnumber=\"30\">I have chosen the way of truth: thy judgments have I laid before me.</VERS>\r\n      <VERS vnumber=\"31\">I have stuck unto thy testimonies: O LORD, put me not to shame.</VERS>\r\n      <VERS vnumber=\"32\">I will run the way of thy commandments, when thou shalt enlarge my heart.</VERS>\r\n      <VERS vnumber=\"33\">HE. Teach me, O LORD, the way of thy statutes; and I shall keep it unto the end.</VERS>\r\n      <VERS vnumber=\"34\">Give me understanding, and I shall keep thy law; yea, I shall observe it with my whole heart.</VERS>\r\n      <VERS vnumber=\"35\">Make me to go in the path of thy commandments; for therein do I delight.</VERS>\r\n      <VERS vnumber=\"36\">Incline my heart unto thy testimonies, and not to covetousness.</VERS>\r\n      <VERS vnumber=\"37\">Turn away mine eyes from beholding vanity; and quicken thou me in thy way.</VERS>\r\n      <VERS vnumber=\"38\">Stablish thy word unto thy servant, who is devoted to thy fear.</VERS>\r\n      <VERS vnumber=\"39\">Turn away my reproach which I fear: for thy judgments are good.</VERS>\r\n      <VERS vnumber=\"40\">Behold, I have longed after thy precepts: quicken me in thy righteousness.</VERS>\r\n      <VERS vnumber=\"41\">VAU. Let thy mercies come also unto me, O LORD, even thy salvation, according to thy word.</VERS>\r\n      <VERS vnumber=\"42\">So shall I have wherewith to answer him that reproacheth me: for I trust in thy word.</VERS>\r\n      <VERS vnumber=\"43\">And take not the word of truth utterly out of my mouth; for I have hoped in thy judgments.</VERS>\r\n      <VERS vnumber=\"44\">So shall I keep thy law continually for ever and ever.</VERS>\r\n      <VERS vnumber=\"45\">And I will walk at liberty: for I seek thy precepts.</VERS>\r\n      <VERS vnumber=\"46\">I will speak of thy testimonies also before kings, and will not be ashamed.</VERS>\r\n      <VERS vnumber=\"47\">And I will delight myself in thy commandments, which I have loved.</VERS>\r\n      <VERS vnumber=\"48\">My hands also will I lift up unto thy commandments, which I have loved; and I will meditate in thy statutes.</VERS>\r\n      <VERS vnumber=\"49\">ZAIN. Remember the word unto thy servant, upon which thou hast caused me to hope.</VERS>\r\n      <VERS vnumber=\"50\">This is my comfort in my affliction: for thy word hath quickened me.</VERS>\r\n      <VERS vnumber=\"51\">The proud have had me greatly in derision: yet have I not declined from thy law.</VERS>\r\n      <VERS vnumber=\"52\">I remembered thy judgments of old, O LORD; and have comforted myself.</VERS>\r\n      <VERS vnumber=\"53\">Horror hath taken hold upon me because of the wicked that forsake thy law.</VERS>\r\n      <VERS vnumber=\"54\">Thy statutes have been my songs in the house of my pilgrimage.</VERS>\r\n      <VERS vnumber=\"55\">I have remembered thy name, O LORD, in the night, and have kept thy law.</VERS>\r\n      <VERS vnumber=\"56\">This I had, because I kept thy precepts.</VERS>\r\n      <VERS vnumber=\"57\">CHETH. Thou art my portion, O LORD: I have said that I would keep thy words.</VERS>\r\n      <VERS vnumber=\"58\">I intreated thy favour with my whole heart: be merciful unto me according to thy word.</VERS>\r\n      <VERS vnumber=\"59\">I thought on my ways, and turned my feet unto thy testimonies.</VERS>\r\n      <VERS vnumber=\"60\">I made haste, and delayed not to keep thy commandments.</VERS>\r\n      <VERS vnumber=\"61\">The bands of the wicked have robbed me: but I have not forgotten thy law.</VERS>\r\n      <VERS vnumber=\"62\">At midnight I will rise to give thanks unto thee because of thy righteous judgments.</VERS>\r\n      <VERS vnumber=\"63\">I am a companion of all them that fear thee, and of them that keep thy precepts.</VERS>\r\n      <VERS vnumber=\"64\">The earth, O LORD, is full of thy mercy: teach me thy statutes.</VERS>\r\n      <VERS vnumber=\"65\">TETH. Thou hast dealt well with thy servant, O LORD, according unto thy word.</VERS>\r\n      <VERS vnumber=\"66\">Teach me good judgment and knowledge: for I have believed thy commandments.</VERS>\r\n      <VERS vnumber=\"67\">Before I was afflicted I went astray: but now have I kept thy word.</VERS>\r\n      <VERS vnumber=\"68\">Thou art good, and doest good; teach me thy statutes.</VERS>\r\n      <VERS vnumber=\"69\">The proud have forged a lie against me: but I will keep thy precepts with my whole heart.</VERS>\r\n      <VERS vnumber=\"70\">Their heart is as fat as grease; but I delight in thy law.</VERS>\r\n      <VERS vnumber=\"71\">It is good for me that I have been afflicted; that I might learn thy statutes.</VERS>\r\n      <VERS vnumber=\"72\">The law of thy mouth is better unto me than thousands of gold and silver.</VERS>\r\n      <VERS vnumber=\"73\">JOD. Thy hands have made me and fashioned me: give me understanding, that I may learn thy commandments.</VERS>\r\n      <VERS vnumber=\"74\">They that fear thee will be glad when they see me; because I have hoped in thy word.</VERS>\r\n      <VERS vnumber=\"75\">I know, O LORD, that thy judgments are right, and that thou in faithfulness hast afflicted me.</VERS>\r\n      <VERS vnumber=\"76\">Let, I pray thee, thy merciful kindness be for my comfort, according to thy word unto thy servant.</VERS>\r\n      <VERS vnumber=\"77\">Let thy tender mercies come unto me, that I may live: for thy law is my delight.</VERS>\r\n      <VERS vnumber=\"78\">Let the proud be ashamed; for they dealt perversely with me without a cause: but I will meditate in thy precepts.</VERS>\r\n      <VERS vnumber=\"79\">Let those that fear thee turn unto me, and those that have known thy testimonies.</VERS>\r\n      <VERS vnumber=\"80\">Let my heart be sound in thy statutes; that I be not ashamed.</VERS>\r\n      <VERS vnumber=\"81\">CAPH. My soul fainteth for thy salvation: but I hope in thy word.</VERS>\r\n      <VERS vnumber=\"82\">Mine eyes fail for thy word, saying, When wilt thou comfort me?</VERS>\r\n      <VERS vnumber=\"83\">For I am become like a bottle in the smoke; yet do I not forget thy statutes.</VERS>\r\n      <VERS vnumber=\"84\">How many are the days of thy servant? when wilt thou execute judgment on them that persecute me?</VERS>\r\n      <VERS vnumber=\"85\">The proud have digged pits for me, which are not after thy law.</VERS>\r\n      <VERS vnumber=\"86\">All thy commandments are faithful: they persecute me wrongfully; help thou me.</VERS>\r\n      <VERS vnumber=\"87\">They had almost consumed me upon earth; but I forsook not thy precepts.</VERS>\r\n      <VERS vnumber=\"88\">Quicken me after thy lovingkindness; so shall I keep the testimony of thy mouth.</VERS>\r\n      <VERS vnumber=\"89\">LAMED. For ever, O LORD, thy word is settled in heaven.</VERS>\r\n      <VERS vnumber=\"90\">Thy faithfulness is unto all generations: thou hast established the earth, and it abideth.</VERS>\r\n      <VERS vnumber=\"91\">They continue this day according to thine ordinances: for all are thy servants.</VERS>\r\n      <VERS vnumber=\"92\">Unless thy law had been my delights, I should then have perished in mine affliction.</VERS>\r\n      <VERS vnumber=\"93\">I will never forget thy precepts: for with them thou hast quickened me.</VERS>\r\n      <VERS vnumber=\"94\">I am thine, save me; for I have sought thy precepts.</VERS>\r\n      <VERS vnumber=\"95\">The wicked have waited for me to destroy me: but I will consider thy testimonies.</VERS>\r\n      <VERS vnumber=\"96\">I have seen an end of all perfection: but thy commandment is exceeding broad.</VERS>\r\n      <VERS vnumber=\"97\">MEM. O how love I thy law! it is my meditation all the day.</VERS>\r\n      <VERS vnumber=\"98\">Thou through thy commandments hast made me wiser than mine enemies: for they are ever with me.</VERS>\r\n      <VERS vnumber=\"99\">I have more understanding than all my teachers: for thy testimonies are my meditation.</VERS>\r\n      <VERS vnumber=\"100\">I understand more than the ancients, because I keep thy precepts.</VERS>\r\n      <VERS vnumber=\"101\">I have refrained my feet from every evil way, that I might keep thy word.</VERS>\r\n      <VERS vnumber=\"102\">I have not departed from thy judgments: for thou hast taught me.</VERS>\r\n      <VERS vnumber=\"103\">How sweet are thy words unto my taste! yea, sweeter than honey to my mouth!</VERS>\r\n      <VERS vnumber=\"104\">Through thy precepts I get understanding: therefore I hate every false way.</VERS>\r\n      <VERS vnumber=\"105\">NUN. Thy word is a lamp unto my feet, and a light unto my path.</VERS>\r\n      <VERS vnumber=\"106\">I have sworn, and I will perform it, that I will keep thy righteous judgments.</VERS>\r\n      <VERS vnumber=\"107\">I am afflicted very much: quicken me, O LORD, according unto thy word.</VERS>\r\n      <VERS vnumber=\"108\">Accept, I beseech thee, the freewill offerings of my mouth, O LORD, and teach me thy judgments.</VERS>\r\n      <VERS vnumber=\"109\">My soul is continually in my hand: yet do I not forget thy law.</VERS>\r\n      <VERS vnumber=\"110\">The wicked have laid a snare for me: yet I erred not from thy precepts.</VERS>\r\n      <VERS vnumber=\"111\">Thy testimonies have I taken as an heritage for ever: for they are the rejoicing of my heart.</VERS>\r\n      <VERS vnumber=\"112\">I have inclined mine heart to perform thy statutes alway, even unto the end.</VERS>\r\n      <VERS vnumber=\"113\">SAMECH. I hate vain thoughts: but thy law do I love.</VERS>\r\n      <VERS vnumber=\"114\">Thou art my hiding place and my shield: I hope in thy word.</VERS>\r\n      <VERS vnumber=\"115\">Depart from me, ye evildoers: for I will keep the commandments of my God.</VERS>\r\n      <VERS vnumber=\"116\">Uphold me according unto thy word, that I may live: and let me not be ashamed of my hope.</VERS>\r\n      <VERS vnumber=\"117\">Hold thou me up, and I shall be safe: and I will have respect unto thy statutes continually.</VERS>\r\n      <VERS vnumber=\"118\">Thou hast trodden down all them that err from thy statutes: for their deceit is falsehood.</VERS>\r\n      <VERS vnumber=\"119\">Thou puttest away all the wicked of the earth like dross: therefore I love thy testimonies.</VERS>\r\n      <VERS vnumber=\"120\">My flesh trembleth for fear of thee; and I am afraid of thy judgments.</VERS>\r\n      <VERS vnumber=\"121\">AIN. I have done judgment and justice: leave me not to mine oppressors.</VERS>\r\n      <VERS vnumber=\"122\">Be surety for thy servant for good: let not the proud oppress me.</VERS>\r\n      <VERS vnumber=\"123\">Mine eyes fail for thy salvation, and for the word of thy righteousness.</VERS>\r\n      <VERS vnumber=\"124\">Deal with thy servant according unto thy mercy, and teach me thy statutes.</VERS>\r\n      <VERS vnumber=\"125\">I am thy servant; give me understanding, that I may know thy testimonies.</VERS>\r\n      <VERS vnumber=\"126\">It is time for thee, LORD, to work: for they have made void thy law.</VERS>\r\n      <VERS vnumber=\"127\">Therefore I love thy commandments above gold; yea, above fine gold.</VERS>\r\n      <VERS vnumber=\"128\">Therefore I esteem all thy precepts concerning all things to be right; and I hate every false way.</VERS>\r\n      <VERS vnumber=\"129\">PE. Thy testimonies are wonderful: therefore doth my soul keep them.</VERS>\r\n      <VERS vnumber=\"130\">The entrance of thy words giveth light; it giveth understanding unto the simple.</VERS>\r\n      <VERS vnumber=\"131\">I opened my mouth, and panted: for I longed for thy commandments.</VERS>\r\n      <VERS vnumber=\"132\">Look thou upon me, and be merciful unto me, as thou usest to do unto those that love thy name.</VERS>\r\n      <VERS vnumber=\"133\">Order my steps in thy word: and let not any iniquity have dominion over me.</VERS>\r\n      <VERS vnumber=\"134\">Deliver me from the oppression of man: so will I keep thy precepts.</VERS>\r\n      <VERS vnumber=\"135\">Make thy face to shine upon thy servant; and teach me thy statutes.</VERS>\r\n      <VERS vnumber=\"136\">Rivers of waters run down mine eyes, because they keep not thy law.</VERS>\r\n      <VERS vnumber=\"137\">TZADDI. Righteous art thou, O LORD, and upright are thy judgments.</VERS>\r\n      <VERS vnumber=\"138\">Thy testimonies that thou hast commanded are righteous and very faithful.</VERS>\r\n      <VERS vnumber=\"139\">My zeal hath consumed me, because mine enemies have forgotten thy words.</VERS>\r\n      <VERS vnumber=\"140\">Thy word is very pure: therefore thy servant loveth it.</VERS>\r\n      <VERS vnumber=\"141\">I am small and despised: yet do not I forget thy precepts.</VERS>\r\n      <VERS vnumber=\"142\">Thy righteousness is an everlasting righteousness, and thy law is the truth.</VERS>\r\n      <VERS vnumber=\"143\">Trouble and anguish have taken hold on me: yet thy commandments are my delights.</VERS>\r\n      <VERS vnumber=\"144\">The righteousness of thy testimonies is everlasting: give me understanding, and I shall live.</VERS>\r\n      <VERS vnumber=\"145\">KOPH. I cried with my whole heart; hear me, O LORD: I will keep thy statutes.</VERS>\r\n      <VERS vnumber=\"146\">I cried unto thee; save me, and I shall keep thy testimonies.</VERS>\r\n      <VERS vnumber=\"147\">I prevented the dawning of the morning, and cried: I hoped in thy word.</VERS>\r\n      <VERS vnumber=\"148\">Mine eyes prevent the night watches, that I might meditate in thy word.</VERS>\r\n      <VERS vnumber=\"149\">Hear my voice according unto thy lovingkindness: O LORD, quicken me according to thy judgment.</VERS>\r\n      <VERS vnumber=\"150\">They draw nigh that follow after mischief: they are far from thy law.</VERS>\r\n      <VERS vnumber=\"151\">Thou art near, O LORD; and all thy commandments are truth.</VERS>\r\n      <VERS vnumber=\"152\">Concerning thy testimonies, I have known of old that thou hast founded them for ever.</VERS>\r\n      <VERS vnumber=\"153\">RESH. Consider mine affliction, and deliver me: for I do not forget thy law.</VERS>\r\n      <VERS vnumber=\"154\">Plead my cause, and deliver me: quicken me according to thy word.</VERS>\r\n      <VERS vnumber=\"155\">Salvation is far from the wicked: for they seek not thy statutes.</VERS>\r\n      <VERS vnumber=\"156\">Great are thy tender mercies, O LORD: quicken me according to thy judgments.</VERS>\r\n      <VERS vnumber=\"157\">Many are my persecutors and mine enemies; yet do I not decline from thy testimonies.</VERS>\r\n      <VERS vnumber=\"158\">I beheld the transgressors, and was grieved; because they kept not thy word.</VERS>\r\n      <VERS vnumber=\"159\">Consider how I love thy precepts: quicken me, O LORD, according to thy lovingkindness.</VERS>\r\n      <VERS vnumber=\"160\">Thy word is true from the beginning: and every one of thy righteous judgments endureth for ever.</VERS>\r\n      <VERS vnumber=\"161\">SCHIN. Princes have persecuted me without a cause: but my heart standeth in awe of thy word.</VERS>\r\n      <VERS vnumber=\"162\">I rejoice at thy word, as one that findeth great spoil.</VERS>\r\n      <VERS vnumber=\"163\">I hate and abhor lying: but thy law do I love.</VERS>\r\n      <VERS vnumber=\"164\">Seven times a day do I praise thee because of thy righteous judgments.</VERS>\r\n      <VERS vnumber=\"165\">Great peace have they which love thy law: and nothing shall offend them.</VERS>\r\n      <VERS vnumber=\"166\">LORD, I have hoped for thy salvation, and done thy commandments.</VERS>\r\n      <VERS vnumber=\"167\">My soul hath kept thy testimonies; and I love them exceedingly.</VERS>\r\n      <VERS vnumber=\"168\">I have kept thy precepts and thy testimonies: for all my ways are before thee.</VERS>\r\n      <VERS vnumber=\"169\">TAU. Let my cry come near before thee, O LORD: give me understanding according to thy word.</VERS>\r\n      <VERS vnumber=\"170\">Let my supplication come before thee: deliver me according to thy word.</VERS>\r\n      <VERS vnumber=\"171\">My lips shall utter praise, when thou hast taught me thy statutes.</VERS>\r\n      <VERS vnumber=\"172\">My tongue shall speak of thy word: for all thy commandments are righteousness.</VERS>\r\n      <VERS vnumber=\"173\">Let thine hand help me; for I have chosen thy precepts.</VERS>\r\n      <VERS vnumber=\"174\">I have longed for thy salvation, O LORD; and thy law is my delight.</VERS>\r\n      <VERS vnumber=\"175\">Let my soul live, and it shall praise thee; and let thy judgments help me.</VERS>\r\n      <VERS vnumber=\"176\">I have gone astray like a lost sheep; seek thy servant; for I do not forget thy commandments.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"120\">\r\n      <CAPTION vref=\"1\">A Song of degrees. </CAPTION>\r\n      <VERS vnumber=\"1\">In my distress I cried unto the LORD, and he heard me.</VERS>\r\n      <VERS vnumber=\"2\">Deliver my soul, O LORD, from lying lips, and from a deceitful tongue.</VERS>\r\n      <VERS vnumber=\"3\">What shall be given unto thee? or what shall be done unto thee, thou false tongue?</VERS>\r\n      <VERS vnumber=\"4\">Sharp arrows of the mighty, with coals of juniper.</VERS>\r\n      <VERS vnumber=\"5\">Woe is me, that I sojourn in Mesech, that I dwell in the tents of Kedar!</VERS>\r\n      <VERS vnumber=\"6\">My soul hath long dwelt with him that hateth peace.</VERS>\r\n      <VERS vnumber=\"7\">I am for peace: but when I speak, they are for war.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"121\">\r\n      <CAPTION vref=\"1\">A Song of degrees. </CAPTION>\r\n      <VERS vnumber=\"1\">I will lift up mine eyes unto the hills, from whence cometh my help.</VERS>\r\n      <VERS vnumber=\"2\">My help cometh from the LORD, which made heaven and earth.</VERS>\r\n      <VERS vnumber=\"3\">He will not suffer thy foot to be moved: he that keepeth thee will not slumber.</VERS>\r\n      <VERS vnumber=\"4\">Behold, he that keepeth Israel shall neither slumber nor sleep.</VERS>\r\n      <VERS vnumber=\"5\">The LORD is thy keeper: the LORD is thy shade upon thy right hand.</VERS>\r\n      <VERS vnumber=\"6\">The sun shall not smite thee by day, nor the moon by night.</VERS>\r\n      <VERS vnumber=\"7\">The LORD shall preserve thee from all evil: he shall preserve thy soul.</VERS>\r\n      <VERS vnumber=\"8\">The LORD shall preserve thy going out and thy coming in from this time forth, and even for evermore.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"122\">\r\n      <CAPTION vref=\"1\">A Song of degrees of David. </CAPTION>\r\n      <VERS vnumber=\"1\">I was glad when they said unto me, Let us go into the house of the LORD.</VERS>\r\n      <VERS vnumber=\"2\">Our feet shall stand within thy gates, O Jerusalem.</VERS>\r\n      <VERS vnumber=\"3\">Jerusalem is builded as a city that is compact together:</VERS>\r\n      <VERS vnumber=\"4\">Whither the tribes go up, the tribes of the LORD, unto the testimony of Israel, to give thanks unto the name of the LORD.</VERS>\r\n      <VERS vnumber=\"5\">For there are set thrones of judgment, the thrones of the house of David.</VERS>\r\n      <VERS vnumber=\"6\">Pray for the peace of Jerusalem: they shall prosper that love thee.</VERS>\r\n      <VERS vnumber=\"7\">Peace be within thy walls, and prosperity within thy palaces.</VERS>\r\n      <VERS vnumber=\"8\">For my brethren and companions' sakes, I will now say, Peace be within thee.</VERS>\r\n      <VERS vnumber=\"9\">Because of the house of the LORD our God I will seek thy good.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"123\">\r\n      <CAPTION vref=\"1\">A Song of degrees. </CAPTION>\r\n      <VERS vnumber=\"1\">Unto thee lift I up mine eyes, O thou that dwellest in the heavens.</VERS>\r\n      <VERS vnumber=\"2\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"3\">Have mercy upon us, O LORD, have mercy upon us: for we are exceedingly filled with contempt.</VERS>\r\n      <VERS vnumber=\"4\">Our soul is exceedingly filled with the scorning of those that are at ease, and with the contempt of the proud.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"124\">\r\n      <CAPTION vref=\"1\">A Song of degrees of David. </CAPTION>\r\n      <VERS vnumber=\"1\">If it had not been the LORD who was on our side, now may Israel say;</VERS>\r\n      <VERS vnumber=\"2\">If it had not been the LORD who was on our side, when men rose up against us:</VERS>\r\n      <VERS vnumber=\"3\">Then they had swallowed us up quick, when their wrath was kindled against us:</VERS>\r\n      <VERS vnumber=\"4\">Then the waters had overwhelmed us, the stream had gone over our soul:</VERS>\r\n      <VERS vnumber=\"5\">Then the proud waters had gone over our soul.</VERS>\r\n      <VERS vnumber=\"6\">Blessed be the LORD, who hath not given us as a prey to their teeth.</VERS>\r\n      <VERS vnumber=\"7\">Our soul is escaped as a bird out of the snare of the fowlers: the snare is broken, and we are escaped.</VERS>\r\n      <VERS vnumber=\"8\">Our help is in the name of the LORD, who made heaven and earth.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"125\">\r\n      <CAPTION vref=\"1\">A Song of degrees. </CAPTION>\r\n      <VERS vnumber=\"1\">They that trust in the LORD shall be as mount Zion, which cannot be removed, but abideth for ever.</VERS>\r\n      <VERS vnumber=\"2\">As the mountains are round about Jerusalem, so the LORD is round about his people from henceforth even for ever.</VERS>\r\n      <VERS vnumber=\"3\">For the rod of the wicked shall not rest upon the lot of the righteous; lest the righteous put forth their hands unto iniquity.</VERS>\r\n      <VERS vnumber=\"4\">Do good, O LORD, unto those that be good, and to them that are upright in their hearts.</VERS>\r\n      <VERS vnumber=\"5\">As 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"126\">\r\n      <CAPTION vref=\"1\">A Song of degrees. </CAPTION>\r\n      <VERS vnumber=\"1\">When the LORD turned again the captivity of Zion, we were like them that dream.</VERS>\r\n      <VERS vnumber=\"2\">Then 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.</VERS>\r\n      <VERS vnumber=\"3\">The LORD hath done great things for us; whereof we are glad.</VERS>\r\n      <VERS vnumber=\"4\">Turn again our captivity, O LORD, as the streams in the south.</VERS>\r\n      <VERS vnumber=\"5\">They that sow in tears shall reap in joy.</VERS>\r\n      <VERS vnumber=\"6\">He that goeth forth and weepeth, bearing precious seed, shall doubtless come again with rejoicing, bringing his sheaves with him.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"127\">\r\n      <CAPTION vref=\"1\">A Song of degrees for Solomon.</CAPTION>\r\n      <VERS vnumber=\"1\"> Except the LORD build the house, they labour in vain that build it: except the LORD keep the city, the watchman waketh but in vain.</VERS>\r\n      <VERS vnumber=\"2\">It 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.</VERS>\r\n      <VERS vnumber=\"3\">Lo, children are an heritage of the LORD: and the fruit of the womb is his reward.</VERS>\r\n      <VERS vnumber=\"4\">As arrows are in the hand of a mighty man; so are children of the youth.</VERS>\r\n      <VERS vnumber=\"5\">Happy 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"128\">\r\n      <CAPTION vref=\"1\">A Song of degrees. </CAPTION>\r\n      <VERS vnumber=\"1\">Blessed is every one that feareth the LORD; that walketh in his ways.</VERS>\r\n      <VERS vnumber=\"2\">For thou shalt eat the labour of thine hands: happy shalt thou be, and it shall be well with thee.</VERS>\r\n      <VERS vnumber=\"3\">Thy wife shall be as a fruitful vine by the sides of thine house: thy children like olive plants round about thy table.</VERS>\r\n      <VERS vnumber=\"4\">Behold, that thus shall the man be blessed that feareth the LORD.</VERS>\r\n      <VERS vnumber=\"5\">The LORD shall bless thee out of Zion: and thou shalt see the good of Jerusalem all the days of thy life.</VERS>\r\n      <VERS vnumber=\"6\">Yea, thou shalt see thy children's children, and peace upon Israel.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"129\">\r\n      <CAPTION vref=\"1\">A Song of degrees. </CAPTION>\r\n      <VERS vnumber=\"1\">Many a time have they afflicted me from my youth, may Israel now say:</VERS>\r\n      <VERS vnumber=\"2\">Many a time have they afflicted me from my youth: yet they have not prevailed against me.</VERS>\r\n      <VERS vnumber=\"3\">The plowers plowed upon my back: they made long their furrows.</VERS>\r\n      <VERS vnumber=\"4\">The LORD is righteous: he hath cut asunder the cords of the wicked.</VERS>\r\n      <VERS vnumber=\"5\">Let them all be confounded and turned back that hate Zion.</VERS>\r\n      <VERS vnumber=\"6\">Let them be as the grass upon the housetops, which withereth afore it groweth up:</VERS>\r\n      <VERS vnumber=\"7\">Wherewith the mower filleth not his hand; nor he that bindeth sheaves his bosom.</VERS>\r\n      <VERS vnumber=\"8\">Neither do they which go by say, The blessing of the LORD be upon you: we bless you in the name of the LORD.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"130\">\r\n      <CAPTION vref=\"1\">A Song of degrees. </CAPTION>\r\n      <VERS vnumber=\"1\">Out of the depths have I cried unto thee, O LORD.</VERS>\r\n      <VERS vnumber=\"2\">Lord, hear my voice: let thine ears be attentive to the voice of my supplications.</VERS>\r\n      <VERS vnumber=\"3\">If thou, LORD, shouldest mark iniquities, O Lord, who shall stand?</VERS>\r\n      <VERS vnumber=\"4\">But there is forgiveness with thee, that thou mayest be feared.</VERS>\r\n      <VERS vnumber=\"5\">I wait for the LORD, my soul doth wait, and in his word do I hope.</VERS>\r\n      <VERS vnumber=\"6\">My soul waiteth for the Lord more than they that watch for the morning: I say, more than they that watch for the morning.</VERS>\r\n      <VERS vnumber=\"7\">Let Israel hope in the LORD: for with the LORD there is mercy, and with him is plenteous redemption.</VERS>\r\n      <VERS vnumber=\"8\">And he shall redeem Israel from all his iniquities.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"131\">\r\n      <CAPTION vref=\"1\">A Song of degrees of David. </CAPTION>\r\n      <VERS vnumber=\"1\">LORD, my heart is not haughty, nor mine eyes lofty: neither do I exercise myself in great matters, or in things too high for me.</VERS>\r\n      <VERS vnumber=\"2\">Surely I have behaved and quieted myself, as a child that is weaned of his mother: my soul is even as a weaned child.</VERS>\r\n      <VERS vnumber=\"3\">Let Israel hope in the LORD from henceforth and for ever.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"132\">\r\n      <VERS vnumber=\"1\">A Song of degrees. LORD, remember David, and all his afflictions:</VERS>\r\n      <VERS vnumber=\"2\">How he sware unto the LORD, and vowed unto the mighty God of Jacob;</VERS>\r\n      <VERS vnumber=\"3\">Surely I will not come into the tabernacle of my house, nor go up into my bed;</VERS>\r\n      <VERS vnumber=\"4\">I will not give sleep to mine eyes, or slumber to mine eyelids,</VERS>\r\n      <VERS vnumber=\"5\">Until I find out a place for the LORD, an habitation for the mighty God of Jacob.</VERS>\r\n      <VERS vnumber=\"6\">Lo, we heard of it at Ephratah: we found it in the fields of the wood.</VERS>\r\n      <VERS vnumber=\"7\">We will go into his tabernacles: we will worship at his footstool.</VERS>\r\n      <VERS vnumber=\"8\">Arise, O LORD, into thy rest; thou, and the ark of thy strength.</VERS>\r\n      <VERS vnumber=\"9\">Let thy priests be clothed with righteousness; and let thy saints shout for joy.</VERS>\r\n      <VERS vnumber=\"10\">For thy servant David's sake turn not away the face of thine anointed.</VERS>\r\n      <VERS vnumber=\"11\">The 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.</VERS>\r\n      <VERS vnumber=\"12\">If thy children will keep my covenant and my testimony that I shall teach them, their children shall also sit upon thy throne for evermore.</VERS>\r\n      <VERS vnumber=\"13\">For the LORD hath chosen Zion; he hath desired it for his habitation.</VERS>\r\n      <VERS vnumber=\"14\">This is my rest for ever: here will I dwell; for I have desired it.</VERS>\r\n      <VERS vnumber=\"15\">I will abundantly bless her provision: I will satisfy her poor with bread.</VERS>\r\n      <VERS vnumber=\"16\">I will also clothe her priests with salvation: and her saints shall shout aloud for joy.</VERS>\r\n      <VERS vnumber=\"17\">There will I make the horn of David to bud: I have ordained a lamp for mine anointed.</VERS>\r\n      <VERS vnumber=\"18\">His enemies will I clothe with shame: but upon himself shall his crown flourish.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"133\">\r\n      <CAPTION vref=\"1\">A Song of degrees of David. </CAPTION>\r\n      <VERS vnumber=\"1\">Behold, how good and how pleasant it is for brethren to dwell together in unity!</VERS>\r\n      <VERS vnumber=\"2\">It 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;</VERS>\r\n      <VERS vnumber=\"3\">As 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"134\">\r\n      <CAPTION vref=\"1\">A Song of degrees. </CAPTION>\r\n      <VERS vnumber=\"1\">Behold, bless ye the LORD, all ye servants of the LORD, which by night stand in the house of the LORD.</VERS>\r\n      <VERS vnumber=\"2\">Lift up your hands in the sanctuary, and bless the LORD.</VERS>\r\n      <VERS vnumber=\"3\">The LORD that made heaven and earth bless thee out of Zion.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"135\">\r\n      <VERS vnumber=\"1\">Praise ye the LORD. Praise ye the name of the LORD; praise him, O ye servants of the LORD.</VERS>\r\n      <VERS vnumber=\"2\">Ye that stand in the house of the LORD, in the courts of the house of our God,</VERS>\r\n      <VERS vnumber=\"3\">Praise the LORD; for the LORD is good: sing praises unto his name; for it is pleasant.</VERS>\r\n      <VERS vnumber=\"4\">For the LORD hath chosen Jacob unto himself, and Israel for his peculiar treasure.</VERS>\r\n      <VERS vnumber=\"5\">For I know that the LORD is great, and that our Lord is above all gods.</VERS>\r\n      <VERS vnumber=\"6\">Whatsoever the LORD pleased, that did he in heaven, and in earth, in the seas, and all deep places.</VERS>\r\n      <VERS vnumber=\"7\">He 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.</VERS>\r\n      <VERS vnumber=\"8\">Who smote the firstborn of Egypt, both of man and beast.</VERS>\r\n      <VERS vnumber=\"9\">Who sent tokens and wonders into the midst of thee, O Egypt, upon Pharaoh, and upon all his servants.</VERS>\r\n      <VERS vnumber=\"10\">Who smote great nations, and slew mighty kings;</VERS>\r\n      <VERS vnumber=\"11\">Sihon king of the Amorites, and Og king of Bashan, and all the kingdoms of Canaan:</VERS>\r\n      <VERS vnumber=\"12\">And gave their land for an heritage, an heritage unto Israel his people.</VERS>\r\n      <VERS vnumber=\"13\">Thy name, O LORD, endureth for ever; and thy memorial, O LORD, throughout all generations.</VERS>\r\n      <VERS vnumber=\"14\">For the LORD will judge his people, and he will repent himself concerning his servants.</VERS>\r\n      <VERS vnumber=\"15\">The idols of the heathen are silver and gold, the work of men's hands.</VERS>\r\n      <VERS vnumber=\"16\">They have mouths, but they speak not; eyes have they, but they see not;</VERS>\r\n      <VERS vnumber=\"17\">They have ears, but they hear not; neither is there any breath in their mouths.</VERS>\r\n      <VERS vnumber=\"18\">They that make them are like unto them: so is every one that trusteth in them.</VERS>\r\n      <VERS vnumber=\"19\">Bless the LORD, O house of Israel: bless the LORD, O house of Aaron:</VERS>\r\n      <VERS vnumber=\"20\">Bless the LORD, O house of Levi: ye that fear the LORD, bless the LORD.</VERS>\r\n      <VERS vnumber=\"21\">Blessed be the LORD out of Zion, which dwelleth at Jerusalem. Praise ye the LORD.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"136\">\r\n      <VERS vnumber=\"1\">O give thanks unto the LORD; for he is good: for his mercy endureth for ever.</VERS>\r\n      <VERS vnumber=\"2\">O give thanks unto the God of gods: for his mercy endureth for ever.</VERS>\r\n      <VERS vnumber=\"3\">O give thanks to the Lord of lords: for his mercy endureth for ever.</VERS>\r\n      <VERS vnumber=\"4\">To him who alone doeth great wonders: for his mercy endureth for ever.</VERS>\r\n      <VERS vnumber=\"5\">To him that by wisdom made the heavens: for his mercy endureth for ever.</VERS>\r\n      <VERS vnumber=\"6\">To him that stretched out the earth above the waters: for his mercy endureth for ever.</VERS>\r\n      <VERS vnumber=\"7\">To him that made great lights: for his mercy endureth for ever:</VERS>\r\n      <VERS vnumber=\"8\">The sun to rule by day: for his mercy endureth for ever:</VERS>\r\n      <VERS vnumber=\"9\">The moon and stars to rule by night: for his mercy endureth for ever.</VERS>\r\n      <VERS vnumber=\"10\">To him that smote Egypt in their firstborn: for his mercy endureth for ever:</VERS>\r\n      <VERS vnumber=\"11\">And brought out Israel from among them: for his mercy endureth for ever:</VERS>\r\n      <VERS vnumber=\"12\">With a strong hand, and with a stretched out arm: for his mercy endureth for ever.</VERS>\r\n      <VERS vnumber=\"13\">To him which divided the Red sea into parts: for his mercy endureth for ever:</VERS>\r\n      <VERS vnumber=\"14\">And made Israel to pass through the midst of it: for his mercy endureth for ever:</VERS>\r\n      <VERS vnumber=\"15\">But overthrew Pharaoh and his host in the Red sea: for his mercy endureth for ever.</VERS>\r\n      <VERS vnumber=\"16\">To him which led his people through the wilderness: for his mercy endureth for ever.</VERS>\r\n      <VERS vnumber=\"17\">To him which smote great kings: for his mercy endureth for ever:</VERS>\r\n      <VERS vnumber=\"18\">And slew famous kings: for his mercy endureth for ever:</VERS>\r\n      <VERS vnumber=\"19\">Sihon king of the Amorites: for his mercy endureth for ever:</VERS>\r\n      <VERS vnumber=\"20\">And Og the king of Bashan: for his mercy endureth for ever:</VERS>\r\n      <VERS vnumber=\"21\">And gave their land for an heritage: for his mercy endureth for ever:</VERS>\r\n      <VERS vnumber=\"22\">Even an heritage unto Israel his servant: for his mercy endureth for ever.</VERS>\r\n      <VERS vnumber=\"23\">Who remembered us in our low estate: for his mercy endureth for ever:</VERS>\r\n      <VERS vnumber=\"24\">And hath redeemed us from our enemies: for his mercy endureth for ever.</VERS>\r\n      <VERS vnumber=\"25\">Who giveth food to all flesh: for his mercy endureth for ever.</VERS>\r\n      <VERS vnumber=\"26\">O give thanks unto the God of heaven: for his mercy endureth for ever.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"137\">\r\n      <VERS vnumber=\"1\">By the rivers of Babylon, there we sat down, yea, we wept, when we remembered Zion.</VERS>\r\n      <VERS vnumber=\"2\">We hanged our harps upon the willows in the midst thereof.</VERS>\r\n      <VERS vnumber=\"3\">For 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.</VERS>\r\n      <VERS vnumber=\"4\">How shall we sing the LORD'S song in a strange land?</VERS>\r\n      <VERS vnumber=\"5\">If I forget thee, O Jerusalem, let my right hand forget her cunning.</VERS>\r\n      <VERS vnumber=\"6\">If I do not remember thee, let my tongue cleave to the roof of my mouth; if I prefer not Jerusalem above my chief joy.</VERS>\r\n      <VERS vnumber=\"7\">Remember, O LORD, the children of Edom in the day of Jerusalem; who said, Rase it, rase it, even to the foundation thereof.</VERS>\r\n      <VERS vnumber=\"8\">O daughter of Babylon, who art to be destroyed; happy shall he be, that rewardeth thee as thou hast served us.</VERS>\r\n      <VERS vnumber=\"9\">Happy shall he be, that taketh and dasheth thy little ones against the stones.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"138\">\r\n      <CAPTION vref=\"1\">A Psalm of David. </CAPTION>\r\n      <VERS vnumber=\"1\">I will praise thee with my whole heart: before the gods will I sing praise unto thee.</VERS>\r\n      <VERS vnumber=\"2\">I 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.</VERS>\r\n      <VERS vnumber=\"3\">In the day when I cried thou answeredst me, and strengthenedst me with strength in my soul.</VERS>\r\n      <VERS vnumber=\"4\">All the kings of the earth shall praise thee, O LORD, when they hear the words of thy mouth.</VERS>\r\n      <VERS vnumber=\"5\">Yea, they shall sing in the ways of the LORD: for great is the glory of the LORD.</VERS>\r\n      <VERS vnumber=\"6\">Though the LORD be high, yet hath he respect unto the lowly: but the proud he knoweth afar off.</VERS>\r\n      <VERS vnumber=\"7\">Though 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.</VERS>\r\n      <VERS vnumber=\"8\">The LORD will perfect that which concerneth me: thy mercy, O LORD, endureth for ever: forsake not the works of thine own hands.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"139\">\r\n      <CAPTION vref=\"1\">To the chief Musician, A Psalm of David.</CAPTION>\r\n      <VERS vnumber=\"1\">O LORD, thou hast searched me, and known me.</VERS>\r\n      <VERS vnumber=\"2\">Thou knowest my downsitting and mine uprising, thou understandest my thought afar off.</VERS>\r\n      <VERS vnumber=\"3\">Thou compassest my path and my lying down, and art acquainted with all my ways.</VERS>\r\n      <VERS vnumber=\"4\">For there is not a word in my tongue, but, lo, O LORD, thou knowest it altogether.</VERS>\r\n      <VERS vnumber=\"5\">Thou hast beset me behind and before, and laid thine hand upon me.</VERS>\r\n      <VERS vnumber=\"6\">Such knowledge is too wonderful for me; it is high, I cannot attain unto it.</VERS>\r\n      <VERS vnumber=\"7\">Whither shall I go from thy spirit? or whither shall I flee from thy presence?</VERS>\r\n      <VERS vnumber=\"8\">If I ascend up into heaven, thou art there: if I make my bed in hell, behold, thou art there.</VERS>\r\n      <VERS vnumber=\"9\">If I take the wings of the morning, and dwell in the uttermost parts of the sea;</VERS>\r\n      <VERS vnumber=\"10\">Even there shall thy hand lead me, and thy right hand shall hold me.</VERS>\r\n      <VERS vnumber=\"11\">If I say, Surely the darkness shall cover me; even the night shall be light about me.</VERS>\r\n      <VERS vnumber=\"12\">Yea, the darkness hideth not from thee; but the night shineth as the day: the darkness and the light are both alike to thee.</VERS>\r\n      <VERS vnumber=\"13\">For thou hast possessed my reins: thou hast covered me in my mother's womb.</VERS>\r\n      <VERS vnumber=\"14\">I will praise thee; for I am fearfully and wonderfully made: marvellous are thy works; and that my soul knoweth right well.</VERS>\r\n      <VERS vnumber=\"15\">My substance was not hid from thee, when I was made in secret, and curiously wrought in the lowest parts of the earth.</VERS>\r\n      <VERS vnumber=\"16\">Thine 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.</VERS>\r\n      <VERS vnumber=\"17\">How precious also are thy thoughts unto me, O God! how great is the sum of them!</VERS>\r\n      <VERS vnumber=\"18\">If I should count them, they are more in number than the sand: when I awake, I am still with thee.</VERS>\r\n      <VERS vnumber=\"19\">Surely thou wilt slay the wicked, O God: depart from me therefore, ye bloody men.</VERS>\r\n      <VERS vnumber=\"20\">For they speak against thee wickedly, and thine enemies take thy name in vain.</VERS>\r\n      <VERS vnumber=\"21\">Do not I hate them, O LORD, that hate thee? and am not I grieved with those that rise up against thee?</VERS>\r\n      <VERS vnumber=\"22\">I hate them with perfect hatred: I count them mine enemies.</VERS>\r\n      <VERS vnumber=\"23\">Search me, O God, and know my heart: try me, and know my thoughts:</VERS>\r\n      <VERS vnumber=\"24\">And see if there be any wicked way in me, and lead me in the way everlasting.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"140\">\r\n      <CAPTION vref=\"1\">To the chief Musician, A Psalm of David. </CAPTION>\r\n      <VERS vnumber=\"1\">Deliver me, O LORD, from the evil man: preserve me from the violent man;</VERS>\r\n      <VERS vnumber=\"2\">Which imagine mischiefs in their heart; continually are they gathered together for war.</VERS>\r\n      <VERS vnumber=\"3\">They have sharpened their tongues like a serpent; adders' poison is under their lips. Selah.</VERS>\r\n      <VERS vnumber=\"4\">Keep me, O LORD, from the hands of the wicked; preserve me from the violent man; who have purposed to overthrow my goings.</VERS>\r\n      <VERS vnumber=\"5\">The proud have hid a snare for me, and cords; they have spread a net by the wayside; they have set gins for me. Selah.</VERS>\r\n      <VERS vnumber=\"6\">I said unto the LORD, Thou art my God: hear the voice of my supplications, O LORD.</VERS>\r\n      <VERS vnumber=\"7\">O GOD the Lord, the strength of my salvation, thou hast covered my head in the day of battle.</VERS>\r\n      <VERS vnumber=\"8\">Grant not, O LORD, the desires of the wicked: further not his wicked device; lest they exalt themselves. Selah.</VERS>\r\n      <VERS vnumber=\"9\">As for the head of those that compass me about, let the mischief of their own lips cover them.</VERS>\r\n      <VERS vnumber=\"10\">Let burning coals fall upon them: let them be cast into the fire; into deep pits, that they rise not up again.</VERS>\r\n      <VERS vnumber=\"11\">Let not an evil speaker be established in the earth: evil shall hunt the violent man to overthrow him.</VERS>\r\n      <VERS vnumber=\"12\">I know that the LORD will maintain the cause of the afflicted, and the right of the poor.</VERS>\r\n      <VERS vnumber=\"13\">Surely the righteous shall give thanks unto thy name: the upright shall dwell in thy presence.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"141\">\r\n      <CAPTION vref=\"1\">Psalm of David.</CAPTION>\r\n      <VERS vnumber=\"1\">LORD, I cry unto thee: make haste unto me; give ear unto my voice, when I cry unto thee.</VERS>\r\n      <VERS vnumber=\"2\">Let my prayer be set forth before thee as incense; and the lifting up of my hands as the evening sacrifice.</VERS>\r\n      <VERS vnumber=\"3\">Set a watch, O LORD, before my mouth; keep the door of my lips.</VERS>\r\n      <VERS vnumber=\"4\">Incline not my heart to any evil thing, to practise wicked works with men that work iniquity: and let me not eat of their dainties.</VERS>\r\n      <VERS vnumber=\"5\">Let 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.</VERS>\r\n      <VERS vnumber=\"6\">When their judges are overthrown in stony places, they shall hear my words; for they are sweet.</VERS>\r\n      <VERS vnumber=\"7\">Our bones are scattered at the grave's mouth, as when one cutteth and cleaveth wood upon the earth.</VERS>\r\n      <VERS vnumber=\"8\">But mine eyes are unto thee, O GOD the Lord: in thee is my trust; leave not my soul destitute.</VERS>\r\n      <VERS vnumber=\"9\">Keep me from the snares which they have laid for me, and the gins of the workers of iniquity.</VERS>\r\n      <VERS vnumber=\"10\">Let the wicked fall into their own nets, whilst that I withal escape.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"142\">\r\n      <CAPTION vref=\"1\">Maschil of David; A Prayer when he was in the cave. </CAPTION>\r\n      <VERS vnumber=\"1\">I cried unto the LORD with my voice; with my voice unto the LORD did I make my supplication.</VERS>\r\n      <VERS vnumber=\"2\">I poured out my complaint before him; I shewed before him my trouble.</VERS>\r\n      <VERS vnumber=\"3\">When 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.</VERS>\r\n      <VERS vnumber=\"4\">I 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.</VERS>\r\n      <VERS vnumber=\"5\">I cried unto thee, O LORD: I said, Thou art my refuge and my portion in the land of the living.</VERS>\r\n      <VERS vnumber=\"6\">Attend unto my cry; for I am brought very low: deliver me from my persecutors; for they are stronger than I.</VERS>\r\n      <VERS vnumber=\"7\">Bring my soul out of prison, that I may praise thy name: the righteous shall compass me about; for thou shalt deal bountifully with me.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"143\">\r\n      <CAPTION vref=\"1\">A Psalm of David. </CAPTION>\r\n      <VERS vnumber=\"1\">Hear my prayer, O LORD, give ear to my supplications: in thy faithfulness answer me, and in thy righteousness.</VERS>\r\n      <VERS vnumber=\"2\">And enter not into judgment with thy servant: for in thy sight shall no man living be justified.</VERS>\r\n      <VERS vnumber=\"3\">For 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.</VERS>\r\n      <VERS vnumber=\"4\">Therefore is my spirit overwhelmed within me; my heart within me is desolate.</VERS>\r\n      <VERS vnumber=\"5\">I remember the days of old; I meditate on all thy works; I muse on the work of thy hands.</VERS>\r\n      <VERS vnumber=\"6\">I stretch forth my hands unto thee: my soul thirsteth after thee, as a thirsty land. Selah.</VERS>\r\n      <VERS vnumber=\"7\">Hear 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.</VERS>\r\n      <VERS vnumber=\"8\">Cause 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.</VERS>\r\n      <VERS vnumber=\"9\">Deliver me, O LORD, from mine enemies: I flee unto thee to hide me.</VERS>\r\n      <VERS vnumber=\"10\">Teach me to do thy will; for thou art my God: thy spirit is good; lead me into the land of uprightness.</VERS>\r\n      <VERS vnumber=\"11\">Quicken me, O LORD, for thy name's sake: for thy righteousness' sake bring my soul out of trouble.</VERS>\r\n      <VERS vnumber=\"12\">And of thy mercy cut off mine enemies, and destroy all them that afflict my soul: for I am thy servant.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"144\">\r\n      <CAPTION vref=\"1\">A Psalm of David. </CAPTION>\r\n      <VERS vnumber=\"1\">Blessed be the LORD my strength, which teacheth my hands to war, and my fingers to fight:</VERS>\r\n      <VERS vnumber=\"2\">My goodness, and my fortress; my high tower, and my deliverer; my shield, and he in whom I trust; who subdueth my people under me.</VERS>\r\n      <VERS vnumber=\"3\">LORD, what is man, that thou takest knowledge of him! or the son of man, that thou makest account of him!</VERS>\r\n      <VERS vnumber=\"4\">Man is like to vanity: his days are as a shadow that passeth away.</VERS>\r\n      <VERS vnumber=\"5\">Bow thy heavens, O LORD, and come down: touch the mountains, and they shall smoke.</VERS>\r\n      <VERS vnumber=\"6\">Cast forth lightning, and scatter them: shoot out thine arrows, and destroy them.</VERS>\r\n      <VERS vnumber=\"7\">Send thine hand from above; rid me, and deliver me out of great waters, from the hand of strange children;</VERS>\r\n      <VERS vnumber=\"8\">Whose mouth speaketh vanity, and their right hand is a right hand of falsehood.</VERS>\r\n      <VERS vnumber=\"9\">I will sing a new song unto thee, O God: upon a psaltery and an instrument of ten strings will I sing praises unto thee.</VERS>\r\n      <VERS vnumber=\"10\">It is he that giveth salvation unto kings: who delivereth David his servant from the hurtful sword.</VERS>\r\n      <VERS vnumber=\"11\">Rid me, and deliver me from the hand of strange children, whose mouth speaketh vanity, and their right hand is a right hand of falsehood:</VERS>\r\n      <VERS vnumber=\"12\">That 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:</VERS>\r\n      <VERS vnumber=\"13\">That our garners may be full, affording all manner of store: that our sheep may bring forth thousands and ten thousands in our streets:</VERS>\r\n      <VERS vnumber=\"14\">That our oxen may be strong to labour; that there be no breaking in, nor going out; that there be no complaining in our streets.</VERS>\r\n      <VERS vnumber=\"15\">Happy is that people, that is in such a case: yea, happy is that people, whose God is the LORD.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"145\">\r\n      <CAPTION vref=\"1\">David's Psalm of praise. </CAPTION>\r\n      <VERS vnumber=\"1\">I will extol thee, my God, O king; and I will bless thy name for ever and ever.</VERS>\r\n      <VERS vnumber=\"2\">Every day will I bless thee; and I will praise thy name for ever and ever.</VERS>\r\n      <VERS vnumber=\"3\">Great is the LORD, and greatly to be praised; and his greatness is unsearchable.</VERS>\r\n      <VERS vnumber=\"4\">One generation shall praise thy works to another, and shall declare thy mighty acts.</VERS>\r\n      <VERS vnumber=\"5\">I will speak of the glorious honour of thy majesty, and of thy wondrous works.</VERS>\r\n      <VERS vnumber=\"6\">And men shall speak of the might of thy terrible acts: and I will declare thy greatness.</VERS>\r\n      <VERS vnumber=\"7\">They shall abundantly utter the memory of thy great goodness, and shall sing of thy righteousness.</VERS>\r\n      <VERS vnumber=\"8\">The LORD is gracious, and full of compassion; slow to anger, and of great mercy.</VERS>\r\n      <VERS vnumber=\"9\">The LORD is good to all: and his tender mercies are over all his works.</VERS>\r\n      <VERS vnumber=\"10\">All thy works shall praise thee, O LORD; and thy saints shall bless thee.</VERS>\r\n      <VERS vnumber=\"11\">They shall speak of the glory of thy kingdom, and talk of thy power;</VERS>\r\n      <VERS vnumber=\"12\">To make known to the sons of men his mighty acts, and the glorious majesty of his kingdom.</VERS>\r\n      <VERS vnumber=\"13\">Thy kingdom is an everlasting kingdom, and thy dominion endureth throughout all generations.</VERS>\r\n      <VERS vnumber=\"14\">The LORD upholdeth all that fall, and raiseth up all those that be bowed down.</VERS>\r\n      <VERS vnumber=\"15\">The eyes of all wait upon thee; and thou givest them their meat in due season.</VERS>\r\n      <VERS vnumber=\"16\">Thou openest thine hand, and satisfiest the desire of every living thing.</VERS>\r\n      <VERS vnumber=\"17\">The LORD is righteous in all his ways, and holy in all his works.</VERS>\r\n      <VERS vnumber=\"18\">The LORD is nigh unto all them that call upon him, to all that call upon him in truth.</VERS>\r\n      <VERS vnumber=\"19\">He will fulfil the desire of them that fear him: he also will hear their cry, and will save them.</VERS>\r\n      <VERS vnumber=\"20\">The LORD preserveth all them that love him: but all the wicked will he destroy.</VERS>\r\n      <VERS vnumber=\"21\">My mouth shall speak the praise of the LORD: and let all flesh bless his holy name for ever and ever.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"146\">\r\n      <VERS vnumber=\"1\">Praise ye the LORD. Praise the LORD, O my soul.</VERS>\r\n      <VERS vnumber=\"2\">While I live will I praise the LORD: I will sing praises unto my God while I have any being.</VERS>\r\n      <VERS vnumber=\"3\">Put not your trust in princes, nor in the son of man, in whom there is no help.</VERS>\r\n      <VERS vnumber=\"4\">His breath goeth forth, he returneth to his earth; in that very day his thoughts perish.</VERS>\r\n      <VERS vnumber=\"5\">Happy is he that hath the God of Jacob for his help, whose hope is in the LORD his God:</VERS>\r\n      <VERS vnumber=\"6\">Which made heaven, and earth, the sea, and all that therein is: which keepeth truth for ever:</VERS>\r\n      <VERS vnumber=\"7\">Which executeth judgment for the oppressed: which giveth food to the hungry. The LORD looseth the prisoners:</VERS>\r\n      <VERS vnumber=\"8\">The LORD openeth the eyes of the blind: the LORD raiseth them that are bowed down: the LORD loveth the righteous:</VERS>\r\n      <VERS vnumber=\"9\">The LORD preserveth the strangers; he relieveth the fatherless and widow: but the way of the wicked he turneth upside down.</VERS>\r\n      <VERS vnumber=\"10\">The LORD shall reign for ever, even thy God, O Zion, unto all generations. Praise ye the LORD.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"147\">\r\n      <VERS vnumber=\"1\">Praise ye the LORD: for it is good to sing praises unto our God; for it is pleasant; and praise is comely.</VERS>\r\n      <VERS vnumber=\"2\">The LORD doth build up Jerusalem: he gathereth together the outcasts of Israel.</VERS>\r\n      <VERS vnumber=\"3\">He healeth the broken in heart, and bindeth up their wounds.</VERS>\r\n      <VERS vnumber=\"4\">He telleth the number of the stars; he calleth them all by their names.</VERS>\r\n      <VERS vnumber=\"5\">Great is our Lord, and of great power: his understanding is infinite.</VERS>\r\n      <VERS vnumber=\"6\">The LORD lifteth up the meek: he casteth the wicked down to the ground.</VERS>\r\n      <VERS vnumber=\"7\">Sing unto the LORD with thanksgiving; sing praise upon the harp unto our God:</VERS>\r\n      <VERS vnumber=\"8\">Who covereth the heaven with clouds, who prepareth rain for the earth, who maketh grass to grow upon the mountains.</VERS>\r\n      <VERS vnumber=\"9\">He giveth to the beast his food, and to the young ravens which cry.</VERS>\r\n      <VERS vnumber=\"10\">He delighteth not in the strength of the horse: he taketh not pleasure in the legs of a man.</VERS>\r\n      <VERS vnumber=\"11\">The LORD taketh pleasure in them that fear him, in those that hope in his mercy.</VERS>\r\n      <VERS vnumber=\"12\">Praise the LORD, O Jerusalem; praise thy God, O Zion.</VERS>\r\n      <VERS vnumber=\"13\">For he hath strengthened the bars of thy gates; he hath blessed thy children within thee.</VERS>\r\n      <VERS vnumber=\"14\">He maketh peace in thy borders, and filleth thee with the finest of the wheat.</VERS>\r\n      <VERS vnumber=\"15\">He sendeth forth his commandment upon earth: his word runneth very swiftly.</VERS>\r\n      <VERS vnumber=\"16\">He giveth snow like wool: he scattereth the hoarfrost like ashes.</VERS>\r\n      <VERS vnumber=\"17\">He casteth forth his ice like morsels: who can stand before his cold?</VERS>\r\n      <VERS vnumber=\"18\">He sendeth out his word, and melteth them: he causeth his wind to blow, and the waters flow.</VERS>\r\n      <VERS vnumber=\"19\">He sheweth his word unto Jacob, his statutes and his judgments unto Israel.</VERS>\r\n      <VERS vnumber=\"20\">He hath not dealt so with any nation: and as for his judgments, they have not known them. Praise ye the LORD.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"148\">\r\n      <VERS vnumber=\"1\">Praise ye the LORD. Praise ye the LORD from the heavens: praise him in the heights.</VERS>\r\n      <VERS vnumber=\"2\">Praise ye him, all his angels: praise ye him, all his hosts.</VERS>\r\n      <VERS vnumber=\"3\">Praise ye him, sun and moon: praise him, all ye stars of light.</VERS>\r\n      <VERS vnumber=\"4\">Praise him, ye heavens of heavens, and ye waters that be above the heavens.</VERS>\r\n      <VERS vnumber=\"5\">Let them praise the name of the LORD: for he commanded, and they were created.</VERS>\r\n      <VERS vnumber=\"6\">He hath also stablished them for ever and ever: he hath made a decree which shall not pass.</VERS>\r\n      <VERS vnumber=\"7\">Praise the LORD from the earth, ye dragons, and all deeps:</VERS>\r\n      <VERS vnumber=\"8\">Fire, and hail; snow, and vapour; stormy wind fulfilling his word:</VERS>\r\n      <VERS vnumber=\"9\">Mountains, and all hills; fruitful trees, and all cedars:</VERS>\r\n      <VERS vnumber=\"10\">Beasts, and all cattle; creeping things, and flying fowl:</VERS>\r\n      <VERS vnumber=\"11\">Kings of the earth, and all people; princes, and all judges of the earth:</VERS>\r\n      <VERS vnumber=\"12\">Both young men, and maidens; old men, and children:</VERS>\r\n      <VERS vnumber=\"13\">Let them praise the name of the LORD: for his name alone is excellent; his glory is above the earth and heaven.</VERS>\r\n      <VERS vnumber=\"14\">He 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"149\">\r\n      <VERS vnumber=\"1\">Praise ye the LORD. Sing unto the LORD a new song, and his praise in the congregation of saints.</VERS>\r\n      <VERS vnumber=\"2\">Let Israel rejoice in him that made him: let the children of Zion be joyful in their King.</VERS>\r\n      <VERS vnumber=\"3\">Let them praise his name in the dance: let them sing praises unto him with the timbrel and harp.</VERS>\r\n      <VERS vnumber=\"4\">For the LORD taketh pleasure in his people: he will beautify the meek with salvation.</VERS>\r\n      <VERS vnumber=\"5\">Let the saints be joyful in glory: let them sing aloud upon their beds.</VERS>\r\n      <VERS vnumber=\"6\">Let the high praises of God be in their mouth, and a twoedged sword in their hand;</VERS>\r\n      <VERS vnumber=\"7\">To execute vengeance upon the heathen, and punishments upon the people;</VERS>\r\n      <VERS vnumber=\"8\">To bind their kings with chains, and their nobles with fetters of iron;</VERS>\r\n      <VERS vnumber=\"9\">To execute upon them the judgment written: this honour have all his saints. Praise ye the LORD.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"150\">\r\n      <VERS vnumber=\"1\">Praise ye the LORD. Praise God in his sanctuary: praise him in the firmament of his power.</VERS>\r\n      <VERS vnumber=\"2\">Praise him for his mighty acts: praise him according to his excellent greatness.</VERS>\r\n      <VERS vnumber=\"3\">Praise him with the sound of the trumpet: praise him with the psaltery and harp.</VERS>\r\n      <VERS vnumber=\"4\">Praise him with the timbrel and dance: praise him with stringed instruments and organs.</VERS>\r\n      <VERS vnumber=\"5\">Praise him upon the loud cymbals: praise him upon the high sounding cymbals.</VERS>\r\n      <VERS vnumber=\"6\">Let every thing that hath breath praise the LORD. Praise ye the LORD.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"20\" bname=\"Proverbs\" bsname=\"Prov\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">The proverbs of Solomon the son of David, king of Israel;</VERS>\r\n      <VERS vnumber=\"2\">To know wisdom and instruction; to perceive the words of understanding;</VERS>\r\n      <VERS vnumber=\"3\">To receive the instruction of wisdom, justice, and judgment, and equity;</VERS>\r\n      <VERS vnumber=\"4\">To give subtilty to the simple, to the young man knowledge and discretion.</VERS>\r\n      <VERS vnumber=\"5\">A wise man will hear, and will increase learning; and a man of understanding shall attain unto wise counsels:</VERS>\r\n      <VERS vnumber=\"6\">To understand a proverb, and the interpretation; the words of the wise, and their dark sayings.</VERS>\r\n      <VERS vnumber=\"7\">The fear of the LORD is the beginning of knowledge: but fools despise wisdom and instruction.</VERS>\r\n      <VERS vnumber=\"8\">My son, hear the instruction of thy father, and forsake not the law of thy mother:</VERS>\r\n      <VERS vnumber=\"9\">For they shall be an ornament of grace unto thy head, and chains about thy neck.</VERS>\r\n      <VERS vnumber=\"10\">My son, if sinners entice thee, consent thou not.</VERS>\r\n      <VERS vnumber=\"11\">If they say, Come with us, let us lay wait for blood, let us lurk privily for the innocent without cause:</VERS>\r\n      <VERS vnumber=\"12\">Let us swallow them up alive as the grave; and whole, as those that go down into the pit:</VERS>\r\n      <VERS vnumber=\"13\">We shall find all precious substance, we shall fill our houses with spoil:</VERS>\r\n      <VERS vnumber=\"14\">Cast in thy lot among us; let us all have one purse:</VERS>\r\n      <VERS vnumber=\"15\">My son, walk not thou in the way with them; refrain thy foot from their path:</VERS>\r\n      <VERS vnumber=\"16\">For their feet run to evil, and make haste to shed blood.</VERS>\r\n      <VERS vnumber=\"17\">Surely in vain the net is spread in the sight of any bird.</VERS>\r\n      <VERS vnumber=\"18\">And they lay wait for their own blood; they lurk privily for their own lives.</VERS>\r\n      <VERS vnumber=\"19\">So are the ways of every one that is greedy of gain; which taketh away the life of the owners thereof.</VERS>\r\n      <VERS vnumber=\"20\">Wisdom crieth without; she uttereth her voice in the streets:</VERS>\r\n      <VERS vnumber=\"21\">She crieth in the chief place of concourse, in the openings of the gates: in the city she uttereth her words, saying,</VERS>\r\n      <VERS vnumber=\"22\">How long, ye simple ones, will ye love simplicity? and the scorners delight in their scorning, and fools hate knowledge?</VERS>\r\n      <VERS vnumber=\"23\">Turn you at my reproof: behold, I will pour out my spirit unto you, I will make known my words unto you.</VERS>\r\n      <VERS vnumber=\"24\">Because I have called, and ye refused; I have stretched out my hand, and no man regarded;</VERS>\r\n      <VERS vnumber=\"25\">But ye have set at nought all my counsel, and would none of my reproof:</VERS>\r\n      <VERS vnumber=\"26\">I also will laugh at your calamity; I will mock when your fear cometh;</VERS>\r\n      <VERS vnumber=\"27\">When your fear cometh as desolation, and your destruction cometh as a whirlwind; when distress and anguish cometh upon you.</VERS>\r\n      <VERS vnumber=\"28\">Then shall they call upon me, but I will not answer; they shall seek me early, but they shall not find me:</VERS>\r\n      <VERS vnumber=\"29\">For that they hated knowledge, and did not choose the fear of the LORD:</VERS>\r\n      <VERS vnumber=\"30\">They would none of my counsel: they despised all my reproof.</VERS>\r\n      <VERS vnumber=\"31\">Therefore shall they eat of the fruit of their own way, and be filled with their own devices.</VERS>\r\n      <VERS vnumber=\"32\">For the turning away of the simple shall slay them, and the prosperity of fools shall destroy them.</VERS>\r\n      <VERS vnumber=\"33\">But whoso hearkeneth unto me shall dwell safely, and shall be quiet from fear of evil.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">My son, if thou wilt receive my words, and hide my commandments with thee;</VERS>\r\n      <VERS vnumber=\"2\">So that thou incline thine ear unto wisdom, and apply thine heart to understanding;</VERS>\r\n      <VERS vnumber=\"3\">Yea, if thou criest after knowledge, and liftest up thy voice for understanding;</VERS>\r\n      <VERS vnumber=\"4\">If thou seekest her as silver, and searchest for her as for hid treasures;</VERS>\r\n      <VERS vnumber=\"5\">Then shalt thou understand the fear of the LORD, and find the knowledge of God.</VERS>\r\n      <VERS vnumber=\"6\">For the LORD giveth wisdom: out of his mouth cometh knowledge and understanding.</VERS>\r\n      <VERS vnumber=\"7\">He layeth up sound wisdom for the righteous: he is a buckler to them that walk uprightly.</VERS>\r\n      <VERS vnumber=\"8\">He keepeth the paths of judgment, and preserveth the way of his saints.</VERS>\r\n      <VERS vnumber=\"9\">Then shalt thou understand righteousness, and judgment, and equity; yea, every good path.</VERS>\r\n      <VERS vnumber=\"10\">When wisdom entereth into thine heart, and knowledge is pleasant unto thy soul;</VERS>\r\n      <VERS vnumber=\"11\">Discretion shall preserve thee, understanding shall keep thee:</VERS>\r\n      <VERS vnumber=\"12\">To deliver thee from the way of the evil man, from the man that speaketh froward things;</VERS>\r\n      <VERS vnumber=\"13\">Who leave the paths of uprightness, to walk in the ways of darkness;</VERS>\r\n      <VERS vnumber=\"14\">Who rejoice to do evil, and delight in the frowardness of the wicked;</VERS>\r\n      <VERS vnumber=\"15\">Whose ways are crooked, and they froward in their paths:</VERS>\r\n      <VERS vnumber=\"16\">To deliver thee from the strange woman, even from the stranger which flattereth with her words;</VERS>\r\n      <VERS vnumber=\"17\">Which forsaketh the guide of her youth, and forgetteth the covenant of her God.</VERS>\r\n      <VERS vnumber=\"18\">For her house inclineth unto death, and her paths unto the dead.</VERS>\r\n      <VERS vnumber=\"19\">None that go unto her return again, neither take they hold of the paths of life.</VERS>\r\n      <VERS vnumber=\"20\">That thou mayest walk in the way of good men, and keep the paths of the righteous.</VERS>\r\n      <VERS vnumber=\"21\">For the upright shall dwell in the land, and the perfect shall remain in it.</VERS>\r\n      <VERS vnumber=\"22\">But the wicked shall be cut off from the earth, and the transgressors shall be rooted out of it.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">My son, forget not my law; but let thine heart keep my commandments:</VERS>\r\n      <VERS vnumber=\"2\">For length of days, and long life, and peace, shall they add to thee.</VERS>\r\n      <VERS vnumber=\"3\">Let not mercy and truth forsake thee: bind them about thy neck; write them upon the table of thine heart:</VERS>\r\n      <VERS vnumber=\"4\">So shalt thou find favour and good understanding in the sight of God and man.</VERS>\r\n      <VERS vnumber=\"5\">Trust in the LORD with all thine heart; and lean not unto thine own understanding.</VERS>\r\n      <VERS vnumber=\"6\">In all thy ways acknowledge him, and he shall direct thy paths.</VERS>\r\n      <VERS vnumber=\"7\">Be not wise in thine own eyes: fear the LORD, and depart from evil.</VERS>\r\n      <VERS vnumber=\"8\">It shall be health to thy navel, and marrow to thy bones.</VERS>\r\n      <VERS vnumber=\"9\">Honour the LORD with thy substance, and with the firstfruits of all thine increase:</VERS>\r\n      <VERS vnumber=\"10\">So shall thy barns be filled with plenty, and thy presses shall burst out with new wine.</VERS>\r\n      <VERS vnumber=\"11\">My son, despise not the chastening of the LORD; neither be weary of his correction:</VERS>\r\n      <VERS vnumber=\"12\">For whom the LORD loveth he correcteth; even as a father the son in whom he delighteth.</VERS>\r\n      <VERS vnumber=\"13\">Happy is the man that findeth wisdom, and the man that getteth understanding.</VERS>\r\n      <VERS vnumber=\"14\">For the merchandise of it is better than the merchandise of silver, and the gain thereof than fine gold.</VERS>\r\n      <VERS vnumber=\"15\">She is more precious than rubies: and all the things thou canst desire are not to be compared unto her.</VERS>\r\n      <VERS vnumber=\"16\">Length of days is in her right hand; and in her left hand riches and honour.</VERS>\r\n      <VERS vnumber=\"17\">Her ways are ways of pleasantness, and all her paths are peace.</VERS>\r\n      <VERS vnumber=\"18\">She is a tree of life to them that lay hold upon her: and happy is every one that retaineth her.</VERS>\r\n      <VERS vnumber=\"19\">The LORD by wisdom hath founded the earth; by understanding hath he established the heavens.</VERS>\r\n      <VERS vnumber=\"20\">By his knowledge the depths are broken up, and the clouds drop down the dew.</VERS>\r\n      <VERS vnumber=\"21\">My son, let not them depart from thine eyes: keep sound wisdom and discretion:</VERS>\r\n      <VERS vnumber=\"22\">So shall they be life unto thy soul, and grace to thy neck.</VERS>\r\n      <VERS vnumber=\"23\">Then shalt thou walk in thy way safely, and thy foot shall not stumble.</VERS>\r\n      <VERS vnumber=\"24\">When thou liest down, thou shalt not be afraid: yea, thou shalt lie down, and thy sleep shall be sweet.</VERS>\r\n      <VERS vnumber=\"25\">Be not afraid of sudden fear, neither of the desolation of the wicked, when it cometh.</VERS>\r\n      <VERS vnumber=\"26\">For the LORD shall be thy confidence, and shall keep thy foot from being taken.</VERS>\r\n      <VERS vnumber=\"27\">Withhold not good from them to whom it is due, when it is in the power of thine hand to do it.</VERS>\r\n      <VERS vnumber=\"28\">Say not unto thy neighbour, Go, and come again, and to morrow I will give; when thou hast it by thee.</VERS>\r\n      <VERS vnumber=\"29\">Devise not evil against thy neighbour, seeing he dwelleth securely by thee.</VERS>\r\n      <VERS vnumber=\"30\">Strive not with a man without cause, if he have done thee no harm.</VERS>\r\n      <VERS vnumber=\"31\">Envy thou not the oppressor, and choose none of his ways.</VERS>\r\n      <VERS vnumber=\"32\">For the froward is abomination to the LORD: but his secret is with the righteous.</VERS>\r\n      <VERS vnumber=\"33\">The curse of the LORD is in the house of the wicked: but he blesseth the habitation of the just.</VERS>\r\n      <VERS vnumber=\"34\">Surely he scorneth the scorners: but he giveth grace unto the lowly.</VERS>\r\n      <VERS vnumber=\"35\">The wise shall inherit glory: but shame shall be the promotion of fools.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">Hear, ye children, the instruction of a father, and attend to know understanding.</VERS>\r\n      <VERS vnumber=\"2\">For I give you good doctrine, forsake ye not my law.</VERS>\r\n      <VERS vnumber=\"3\">For I was my father's son, tender and only beloved in the sight of my mother.</VERS>\r\n      <VERS vnumber=\"4\">He taught me also, and said unto me, Let thine heart retain my words: keep my commandments, and live.</VERS>\r\n      <VERS vnumber=\"5\">Get wisdom, get understanding: forget it not; neither decline from the words of my mouth.</VERS>\r\n      <VERS vnumber=\"6\">Forsake her not, and she shall preserve thee: love her, and she shall keep thee.</VERS>\r\n      <VERS vnumber=\"7\">Wisdom is the principal thing; therefore get wisdom: and with all thy getting get understanding.</VERS>\r\n      <VERS vnumber=\"8\">Exalt her, and she shall promote thee: she shall bring thee to honour, when thou dost embrace her.</VERS>\r\n      <VERS vnumber=\"9\">She shall give to thine head an ornament of grace: a crown of glory shall she deliver to thee.</VERS>\r\n      <VERS vnumber=\"10\">Hear, O my son, and receive my sayings; and the years of thy life shall be many.</VERS>\r\n      <VERS vnumber=\"11\">I have taught thee in the way of wisdom; I have led thee in right paths.</VERS>\r\n      <VERS vnumber=\"12\">When thou goest, thy steps shall not be straitened; and when thou runnest, thou shalt not stumble.</VERS>\r\n      <VERS vnumber=\"13\">Take fast hold of instruction; let her not go: keep her; for she is thy life.</VERS>\r\n      <VERS vnumber=\"14\">Enter not into the path of the wicked, and go not in the way of evil men.</VERS>\r\n      <VERS vnumber=\"15\">Avoid it, pass not by it, turn from it, and pass away.</VERS>\r\n      <VERS vnumber=\"16\">For they sleep not, except they have done mischief; and their sleep is taken away, unless they cause some to fall.</VERS>\r\n      <VERS vnumber=\"17\">For they eat the bread of wickedness, and drink the wine of violence.</VERS>\r\n      <VERS vnumber=\"18\">But the path of the just is as the shining light, that shineth more and more unto the perfect day.</VERS>\r\n      <VERS vnumber=\"19\">The way of the wicked is as darkness: they know not at what they stumble.</VERS>\r\n      <VERS vnumber=\"20\">My son, attend to my words; incline thine ear unto my sayings.</VERS>\r\n      <VERS vnumber=\"21\">Let them not depart from thine eyes; keep them in the midst of thine heart.</VERS>\r\n      <VERS vnumber=\"22\">For they are life unto those that find them, and health to all their flesh.</VERS>\r\n      <VERS vnumber=\"23\">Keep thy heart with all diligence; for out of it are the issues of life.</VERS>\r\n      <VERS vnumber=\"24\">Put away from thee a froward mouth, and perverse lips put far from thee.</VERS>\r\n      <VERS vnumber=\"25\">Let thine eyes look right on, and let thine eyelids look straight before thee.</VERS>\r\n      <VERS vnumber=\"26\">Ponder the path of thy feet, and let all thy ways be established.</VERS>\r\n      <VERS vnumber=\"27\">Turn not to the right hand nor to the left: remove thy foot from evil.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">My son, attend unto my wisdom, and bow thine ear to my understanding:</VERS>\r\n      <VERS vnumber=\"2\">That thou mayest regard discretion, and that thy lips may keep knowledge.</VERS>\r\n      <VERS vnumber=\"3\">For the lips of a strange woman drop as an honeycomb, and her mouth is smoother than oil:</VERS>\r\n      <VERS vnumber=\"4\">But her end is bitter as wormwood, sharp as a twoedged sword.</VERS>\r\n      <VERS vnumber=\"5\">Her feet go down to death; her steps take hold on hell.</VERS>\r\n      <VERS vnumber=\"6\">Lest thou shouldest ponder the path of life, her ways are moveable, that thou canst not know them.</VERS>\r\n      <VERS vnumber=\"7\">Hear me now therefore, O ye children, and depart not from the words of my mouth.</VERS>\r\n      <VERS vnumber=\"8\">Remove thy way far from her, and come not nigh the door of her house:</VERS>\r\n      <VERS vnumber=\"9\">Lest thou give thine honour unto others, and thy years unto the cruel:</VERS>\r\n      <VERS vnumber=\"10\">Lest strangers be filled with thy wealth; and thy labours be in the house of a stranger;</VERS>\r\n      <VERS vnumber=\"11\">And thou mourn at the last, when thy flesh and thy body are consumed,</VERS>\r\n      <VERS vnumber=\"12\">And say, How have I hated instruction, and my heart despised reproof;</VERS>\r\n      <VERS vnumber=\"13\">And have not obeyed the voice of my teachers, nor inclined mine ear to them that instructed me!</VERS>\r\n      <VERS vnumber=\"14\">I was almost in all evil in the midst of the congregation and assembly.</VERS>\r\n      <VERS vnumber=\"15\">Drink waters out of thine own cistern, and running waters out of thine own well.</VERS>\r\n      <VERS vnumber=\"16\">Let thy fountains be dispersed abroad, and rivers of waters in the streets.</VERS>\r\n      <VERS vnumber=\"17\">Let them be only thine own, and not strangers' with thee.</VERS>\r\n      <VERS vnumber=\"18\">Let thy fountain be blessed: and rejoice with the wife of thy youth.</VERS>\r\n      <VERS vnumber=\"19\">Let 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.</VERS>\r\n      <VERS vnumber=\"20\">And why wilt thou, my son, be ravished with a strange woman, and embrace the bosom of a stranger?</VERS>\r\n      <VERS vnumber=\"21\">For the ways of man are before the eyes of the LORD, and he pondereth all his goings.</VERS>\r\n      <VERS vnumber=\"22\">His own iniquities shall take the wicked himself, and he shall be holden with the cords of his sins.</VERS>\r\n      <VERS vnumber=\"23\">He shall die without instruction; and in the greatness of his folly he shall go astray.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">My son, if thou be surety for thy friend, if thou hast stricken thy hand with a stranger,</VERS>\r\n      <VERS vnumber=\"2\">Thou art snared with the words of thy mouth, thou art taken with the words of thy mouth.</VERS>\r\n      <VERS vnumber=\"3\">Do 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.</VERS>\r\n      <VERS vnumber=\"4\">Give not sleep to thine eyes, nor slumber to thine eyelids.</VERS>\r\n      <VERS vnumber=\"5\">Deliver thyself as a roe from the hand of the hunter, and as a bird from the hand of the fowler.</VERS>\r\n      <VERS vnumber=\"6\">Go to the ant, thou sluggard; consider her ways, and be wise:</VERS>\r\n      <VERS vnumber=\"7\">Which having no guide, overseer, or ruler,</VERS>\r\n      <VERS vnumber=\"8\">Provideth her meat in the summer, and gathereth her food in the harvest.</VERS>\r\n      <VERS vnumber=\"9\">How long wilt thou sleep, O sluggard? when wilt thou arise out of thy sleep?</VERS>\r\n      <VERS vnumber=\"10\">Yet a little sleep, a little slumber, a little folding of the hands to sleep:</VERS>\r\n      <VERS vnumber=\"11\">So shall thy poverty come as one that travelleth, and thy want as an armed man.</VERS>\r\n      <VERS vnumber=\"12\">A naughty person, a wicked man, walketh with a froward mouth.</VERS>\r\n      <VERS vnumber=\"13\">He winketh with his eyes, he speaketh with his feet, he teacheth with his fingers;</VERS>\r\n      <VERS vnumber=\"14\">Frowardness is in his heart, he deviseth mischief continually; he soweth discord.</VERS>\r\n      <VERS vnumber=\"15\">Therefore shall his calamity come suddenly; suddenly shall he be broken without remedy.</VERS>\r\n      <VERS vnumber=\"16\">These six things doth the LORD hate: yea, seven are an abomination unto him:</VERS>\r\n      <VERS vnumber=\"17\">A proud look, a lying tongue, and hands that shed innocent blood,</VERS>\r\n      <VERS vnumber=\"18\">An heart that deviseth wicked imaginations, feet that be swift in running to mischief,</VERS>\r\n      <VERS vnumber=\"19\">A false witness that speaketh lies, and he that soweth discord among brethren.</VERS>\r\n      <VERS vnumber=\"20\">My son, keep thy father's commandment, and forsake not the law of thy mother:</VERS>\r\n      <VERS vnumber=\"21\">Bind them continually upon thine heart, and tie them about thy neck.</VERS>\r\n      <VERS vnumber=\"22\">When thou goest, it shall lead thee; when thou sleepest, it shall keep thee; and when thou awakest, it shall talk with thee.</VERS>\r\n      <VERS vnumber=\"23\">For the commandment is a lamp; and the law is light; and reproofs of instruction are the way of life:</VERS>\r\n      <VERS vnumber=\"24\">To keep thee from the evil woman, from the flattery of the tongue of a strange woman.</VERS>\r\n      <VERS vnumber=\"25\">Lust not after her beauty in thine heart; neither let her take thee with her eyelids.</VERS>\r\n      <VERS vnumber=\"26\">For by means of a whorish woman a man is brought to a piece of bread: and the adulteress will hunt for the precious life.</VERS>\r\n      <VERS vnumber=\"27\">Can a man take fire in his bosom, and his clothes not be burned?</VERS>\r\n      <VERS vnumber=\"28\">Can one go upon hot coals, and his feet not be burned?</VERS>\r\n      <VERS vnumber=\"29\">So he that goeth in to his neighbour's wife; whosoever toucheth her shall not be innocent.</VERS>\r\n      <VERS vnumber=\"30\">Men do not despise a thief, if he steal to satisfy his soul when he is hungry;</VERS>\r\n      <VERS vnumber=\"31\">But if he be found, he shall restore sevenfold; he shall give all the substance of his house.</VERS>\r\n      <VERS vnumber=\"32\">But whoso committeth adultery with a woman lacketh understanding: he that doeth it destroyeth his own soul.</VERS>\r\n      <VERS vnumber=\"33\">A wound and dishonour shall he get; and his reproach shall not be wiped away.</VERS>\r\n      <VERS vnumber=\"34\">For jealousy is the rage of a man: therefore he will not spare in the day of vengeance.</VERS>\r\n      <VERS vnumber=\"35\">He will not regard any ransom; neither will he rest content, though thou givest many gifts.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">My son, keep my words, and lay up my commandments with thee.</VERS>\r\n      <VERS vnumber=\"2\">Keep my commandments, and live; and my law as the apple of thine eye.</VERS>\r\n      <VERS vnumber=\"3\">Bind them upon thy fingers, write them upon the table of thine heart.</VERS>\r\n      <VERS vnumber=\"4\">Say unto wisdom, Thou art my sister; and call understanding thy kinswoman:</VERS>\r\n      <VERS vnumber=\"5\">That they may keep thee from the strange woman, from the stranger which flattereth with her words.</VERS>\r\n      <VERS vnumber=\"6\">For at the window of my house I looked through my casement,</VERS>\r\n      <VERS vnumber=\"7\">And beheld among the simple ones, I discerned among the youths, a young man void of understanding,</VERS>\r\n      <VERS vnumber=\"8\">Passing through the street near her corner; and he went the way to her house,</VERS>\r\n      <VERS vnumber=\"9\">In the twilight, in the evening, in the black and dark night:</VERS>\r\n      <VERS vnumber=\"10\">And, behold, there met him a woman with the attire of an harlot, and subtil of heart.</VERS>\r\n      <VERS vnumber=\"11\">She is loud and stubborn; her feet abide not in her house:</VERS>\r\n      <VERS vnumber=\"12\">Now is she without, now in the streets, and lieth in wait at every corner.)</VERS>\r\n      <VERS vnumber=\"13\">So she caught him, and kissed him, and with an impudent face said unto him,</VERS>\r\n      <VERS vnumber=\"14\">I have peace offerings with me; this day have I payed my vows.</VERS>\r\n      <VERS vnumber=\"15\">Therefore came I forth to meet thee, diligently to seek thy face, and I have found thee.</VERS>\r\n      <VERS vnumber=\"16\">I have decked my bed with coverings of tapestry, with carved works, with fine linen of Egypt.</VERS>\r\n      <VERS vnumber=\"17\">I have perfumed my bed with myrrh, aloes, and cinnamon.</VERS>\r\n      <VERS vnumber=\"18\">Come, let us take our fill of love until the morning: let us solace ourselves with loves.</VERS>\r\n      <VERS vnumber=\"19\">For the goodman is not at home, he is gone a long journey:</VERS>\r\n      <VERS vnumber=\"20\">He hath taken a bag of money with him, and will come home at the day appointed.</VERS>\r\n      <VERS vnumber=\"21\">With her much fair speech she caused him to yield, with the flattering of her lips she forced him.</VERS>\r\n      <VERS vnumber=\"22\">He goeth after her straightway, as an ox goeth to the slaughter, or as a fool to the correction of the stocks;</VERS>\r\n      <VERS vnumber=\"23\">Till a dart strike through his liver; as a bird hasteth to the snare, and knoweth not that it is for his life.</VERS>\r\n      <VERS vnumber=\"24\">Hearken unto me now therefore, O ye children, and attend to the words of my mouth.</VERS>\r\n      <VERS vnumber=\"25\">Let not thine heart decline to her ways, go not astray in her paths.</VERS>\r\n      <VERS vnumber=\"26\">For she hath cast down many wounded: yea, many strong men have been slain by her.</VERS>\r\n      <VERS vnumber=\"27\">Her house is the way to hell, going down to the chambers of death.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">Doth not wisdom cry? and understanding put forth her voice?</VERS>\r\n      <VERS vnumber=\"2\">She standeth in the top of high places, by the way in the places of the paths.</VERS>\r\n      <VERS vnumber=\"3\">She crieth at the gates, at the entry of the city, at the coming in at the doors.</VERS>\r\n      <VERS vnumber=\"4\">Unto you, O men, I call; and my voice is to the sons of man.</VERS>\r\n      <VERS vnumber=\"5\">O ye simple, understand wisdom: and, ye fools, be ye of an understanding heart.</VERS>\r\n      <VERS vnumber=\"6\">Hear; for I will speak of excellent things; and the opening of my lips shall be right things.</VERS>\r\n      <VERS vnumber=\"7\">For my mouth shall speak truth; and wickedness is an abomination to my lips.</VERS>\r\n      <VERS vnumber=\"8\">All the words of my mouth are in righteousness; there is nothing froward or perverse in them.</VERS>\r\n      <VERS vnumber=\"9\">They are all plain to him that understandeth, and right to them that find knowledge.</VERS>\r\n      <VERS vnumber=\"10\">Receive my instruction, and not silver; and knowledge rather than choice gold.</VERS>\r\n      <VERS vnumber=\"11\">For wisdom is better than rubies; and all the things that may be desired are not to be compared to it.</VERS>\r\n      <VERS vnumber=\"12\">I wisdom dwell with prudence, and find out knowledge of witty inventions.</VERS>\r\n      <VERS vnumber=\"13\">The fear of the LORD is to hate evil: pride, and arrogancy, and the evil way, and the froward mouth, do I hate.</VERS>\r\n      <VERS vnumber=\"14\">Counsel is mine, and sound wisdom: I am understanding; I have strength.</VERS>\r\n      <VERS vnumber=\"15\">By me kings reign, and princes decree justice.</VERS>\r\n      <VERS vnumber=\"16\">By me princes rule, and nobles, even all the judges of the earth.</VERS>\r\n      <VERS vnumber=\"17\">I love them that love me; and those that seek me early shall find me.</VERS>\r\n      <VERS vnumber=\"18\">Riches and honour are with me; yea, durable riches and righteousness.</VERS>\r\n      <VERS vnumber=\"19\">My fruit is better than gold, yea, than fine gold; and my revenue than choice silver.</VERS>\r\n      <VERS vnumber=\"20\">I lead in the way of righteousness, in the midst of the paths of judgment:</VERS>\r\n      <VERS vnumber=\"21\">That I may cause those that love me to inherit substance; and I will fill their treasures.</VERS>\r\n      <VERS vnumber=\"22\">The LORD possessed me in the beginning of his way, before his works of old.</VERS>\r\n      <VERS vnumber=\"23\">I was set up from everlasting, from the beginning, or ever the earth was.</VERS>\r\n      <VERS vnumber=\"24\">When there were no depths, I was brought forth; when there were no fountains abounding with water.</VERS>\r\n      <VERS vnumber=\"25\">Before the mountains were settled, before the hills was I brought forth:</VERS>\r\n      <VERS vnumber=\"26\">While as yet he had not made the earth, nor the fields, nor the highest part of the dust of the world.</VERS>\r\n      <VERS vnumber=\"27\">When he prepared the heavens, I was there: when he set a compass upon the face of the depth:</VERS>\r\n      <VERS vnumber=\"28\">When he established the clouds above: when he strengthened the fountains of the deep:</VERS>\r\n      <VERS vnumber=\"29\">When he gave to the sea his decree, that the waters should not pass his commandment: when he appointed the foundations of the earth:</VERS>\r\n      <VERS vnumber=\"30\">Then I was by him, as one brought up with him: and I was daily his delight, rejoicing always before him;</VERS>\r\n      <VERS vnumber=\"31\">Rejoicing in the habitable part of his earth; and my delights were with the sons of men.</VERS>\r\n      <VERS vnumber=\"32\">Now therefore hearken unto me, O ye children: for blessed are they that keep my ways.</VERS>\r\n      <VERS vnumber=\"33\">Hear instruction, and be wise, and refuse it not.</VERS>\r\n      <VERS vnumber=\"34\">Blessed is the man that heareth me, watching daily at my gates, waiting at the posts of my doors.</VERS>\r\n      <VERS vnumber=\"35\">For whoso findeth me findeth life, and shall obtain favour of the LORD.</VERS>\r\n      <VERS vnumber=\"36\">But he that sinneth against me wrongeth his own soul: all they that hate me love death.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">Wisdom hath builded her house, she hath hewn out her seven pillars:</VERS>\r\n      <VERS vnumber=\"2\">She hath killed her beasts; she hath mingled her wine; she hath also furnished her table.</VERS>\r\n      <VERS vnumber=\"3\">She hath sent forth her maidens: she crieth upon the highest places of the city,</VERS>\r\n      <VERS vnumber=\"4\">Whoso is simple, let him turn in hither: as for him that wanteth understanding, she saith to him,</VERS>\r\n      <VERS vnumber=\"5\">Come, eat of my bread, and drink of the wine which I have mingled.</VERS>\r\n      <VERS vnumber=\"6\">Forsake the foolish, and live; and go in the way of understanding.</VERS>\r\n      <VERS vnumber=\"7\">He that reproveth a scorner getteth to himself shame: and he that rebuketh a wicked man getteth himself a blot.</VERS>\r\n      <VERS vnumber=\"8\">Reprove not a scorner, lest he hate thee: rebuke a wise man, and he will love thee.</VERS>\r\n      <VERS vnumber=\"9\">Give instruction to a wise man, and he will be yet wiser: teach a just man, and he will increase in learning.</VERS>\r\n      <VERS vnumber=\"10\">The fear of the LORD is the beginning of wisdom: and the knowledge of the holy is understanding.</VERS>\r\n      <VERS vnumber=\"11\">For by me thy days shall be multiplied, and the years of thy life shall be increased.</VERS>\r\n      <VERS vnumber=\"12\">If thou be wise, thou shalt be wise for thyself: but if thou scornest, thou alone shalt bear it.</VERS>\r\n      <VERS vnumber=\"13\">A foolish woman is clamorous: she is simple, and knoweth nothing.</VERS>\r\n      <VERS vnumber=\"14\">For she sitteth at the door of her house, on a seat in the high places of the city,</VERS>\r\n      <VERS vnumber=\"15\">To call passengers who go right on their ways:</VERS>\r\n      <VERS vnumber=\"16\">Whoso is simple, let him turn in hither: and as for him that wanteth understanding, she saith to him,</VERS>\r\n      <VERS vnumber=\"17\">Stolen waters are sweet, and bread eaten in secret is pleasant.</VERS>\r\n      <VERS vnumber=\"18\">But he knoweth not that the dead are there; and that her guests are in the depths of hell.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">The proverbs of Solomon. A wise son maketh a glad father: but a foolish son is the heaviness of his mother.</VERS>\r\n      <VERS vnumber=\"2\">Treasures of wickedness profit nothing: but righteousness delivereth from death.</VERS>\r\n      <VERS vnumber=\"3\">The LORD will not suffer the soul of the righteous to famish: but he casteth away the substance of the wicked.</VERS>\r\n      <VERS vnumber=\"4\">He becometh poor that dealeth with a slack hand: but the hand of the diligent maketh rich.</VERS>\r\n      <VERS vnumber=\"5\">He that gathereth in summer is a wise son: but he that sleepeth in harvest is a son that causeth shame.</VERS>\r\n      <VERS vnumber=\"6\">Blessings are upon the head of the just: but violence covereth the mouth of the wicked.</VERS>\r\n      <VERS vnumber=\"7\">The memory of the just is blessed: but the name of the wicked shall rot.</VERS>\r\n      <VERS vnumber=\"8\">The wise in heart will receive commandments: but a prating fool shall fall.</VERS>\r\n      <VERS vnumber=\"9\">He that walketh uprightly walketh surely: but he that perverteth his ways shall be known.</VERS>\r\n      <VERS vnumber=\"10\">He that winketh with the eye causeth sorrow: but a prating fool shall fall.</VERS>\r\n      <VERS vnumber=\"11\">The mouth of a righteous man is a well of life: but violence covereth the mouth of the wicked.</VERS>\r\n      <VERS vnumber=\"12\">Hatred stirreth up strifes: but love covereth all sins.</VERS>\r\n      <VERS vnumber=\"13\">In the lips of him that hath understanding wisdom is found: but a rod is for the back of him that is void of understanding.</VERS>\r\n      <VERS vnumber=\"14\">Wise men lay up knowledge: but the mouth of the foolish is near destruction.</VERS>\r\n      <VERS vnumber=\"15\">The rich man's wealth is his strong city: the destruction of the poor is their poverty.</VERS>\r\n      <VERS vnumber=\"16\">The labour of the righteous tendeth to life: the fruit of the wicked to sin.</VERS>\r\n      <VERS vnumber=\"17\">He is in the way of life that keepeth instruction: but he that refuseth reproof erreth.</VERS>\r\n      <VERS vnumber=\"18\">He that hideth hatred with lying lips, and he that uttereth a slander, is a fool.</VERS>\r\n      <VERS vnumber=\"19\">In the multitude of words there wanteth not sin: but he that refraineth his lips is wise.</VERS>\r\n      <VERS vnumber=\"20\">The tongue of the just is as choice silver: the heart of the wicked is little worth.</VERS>\r\n      <VERS vnumber=\"21\">The lips of the righteous feed many: but fools die for want of wisdom.</VERS>\r\n      <VERS vnumber=\"22\">The blessing of the LORD, it maketh rich, and he addeth no sorrow with it.</VERS>\r\n      <VERS vnumber=\"23\">It is as sport to a fool to do mischief: but a man of understanding hath wisdom.</VERS>\r\n      <VERS vnumber=\"24\">The fear of the wicked, it shall come upon him: but the desire of the righteous shall be granted.</VERS>\r\n      <VERS vnumber=\"25\">As the whirlwind passeth, so is the wicked no more: but the righteous is an everlasting foundation.</VERS>\r\n      <VERS vnumber=\"26\">As vinegar to the teeth, and as smoke to the eyes, so is the sluggard to them that send him.</VERS>\r\n      <VERS vnumber=\"27\">The fear of the LORD prolongeth days: but the years of the wicked shall be shortened.</VERS>\r\n      <VERS vnumber=\"28\">The hope of the righteous shall be gladness: but the expectation of the wicked shall perish.</VERS>\r\n      <VERS vnumber=\"29\">The way of the LORD is strength to the upright: but destruction shall be to the workers of iniquity.</VERS>\r\n      <VERS vnumber=\"30\">The righteous shall never be removed: but the wicked shall not inhabit the earth.</VERS>\r\n      <VERS vnumber=\"31\">The mouth of the just bringeth forth wisdom: but the froward tongue shall be cut out.</VERS>\r\n      <VERS vnumber=\"32\">The lips of the righteous know what is acceptable: but the mouth of the wicked speaketh frowardness.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">A false balance is abomination to the LORD: but a just weight is his delight.</VERS>\r\n      <VERS vnumber=\"2\">When pride cometh, then cometh shame: but with the lowly is wisdom.</VERS>\r\n      <VERS vnumber=\"3\">The integrity of the upright shall guide them: but the perverseness of transgressors shall destroy them.</VERS>\r\n      <VERS vnumber=\"4\">Riches profit not in the day of wrath: but righteousness delivereth from death.</VERS>\r\n      <VERS vnumber=\"5\">The righteousness of the perfect shall direct his way: but the wicked shall fall by his own wickedness.</VERS>\r\n      <VERS vnumber=\"6\">The righteousness of the upright shall deliver them: but transgressors shall be taken in their own naughtiness.</VERS>\r\n      <VERS vnumber=\"7\">When a wicked man dieth, his expectation shall perish: and the hope of unjust men perisheth.</VERS>\r\n      <VERS vnumber=\"8\">The righteous is delivered out of trouble, and the wicked cometh in his stead.</VERS>\r\n      <VERS vnumber=\"9\">An hypocrite with his mouth destroyeth his neighbour: but through knowledge shall the just be delivered.</VERS>\r\n      <VERS vnumber=\"10\">When it goeth well with the righteous, the city rejoiceth: and when the wicked perish, there is shouting.</VERS>\r\n      <VERS vnumber=\"11\">By the blessing of the upright the city is exalted: but it is overthrown by the mouth of the wicked.</VERS>\r\n      <VERS vnumber=\"12\">He that is void of wisdom despiseth his neighbour: but a man of understanding holdeth his peace.</VERS>\r\n      <VERS vnumber=\"13\">A talebearer revealeth secrets: but he that is of a faithful spirit concealeth the matter.</VERS>\r\n      <VERS vnumber=\"14\">Where no counsel is, the people fall: but in the multitude of counsellors there is safety.</VERS>\r\n      <VERS vnumber=\"15\">He that is surety for a stranger shall smart for it: and he that hateth suretiship is sure.</VERS>\r\n      <VERS vnumber=\"16\">A gracious woman retaineth honour: and strong men retain riches.</VERS>\r\n      <VERS vnumber=\"17\">The merciful man doeth good to his own soul: but he that is cruel troubleth his own flesh.</VERS>\r\n      <VERS vnumber=\"18\">The wicked worketh a deceitful work: but to him that soweth righteousness shall be a sure reward.</VERS>\r\n      <VERS vnumber=\"19\">As righteousness tendeth to life: so he that pursueth evil pursueth it to his own death.</VERS>\r\n      <VERS vnumber=\"20\">They that are of a froward heart are abomination to the LORD: but such as are upright in their way are his delight.</VERS>\r\n      <VERS vnumber=\"21\">Though hand join in hand, the wicked shall not be unpunished: but the seed of the righteous shall be delivered.</VERS>\r\n      <VERS vnumber=\"22\">As a jewel of gold in a swine's snout, so is a fair woman which is without discretion.</VERS>\r\n      <VERS vnumber=\"23\">The desire of the righteous is only good: but the expectation of the wicked is wrath.</VERS>\r\n      <VERS vnumber=\"24\">There is that scattereth, and yet increaseth; and there is that withholdeth more than is meet, but it tendeth to poverty.</VERS>\r\n      <VERS vnumber=\"25\">The liberal soul shall be made fat: and he that watereth shall be watered also himself.</VERS>\r\n      <VERS vnumber=\"26\">He that withholdeth corn, the people shall curse him: but blessing shall be upon the head of him that selleth it.</VERS>\r\n      <VERS vnumber=\"27\">He that diligently seeketh good procureth favour: but he that seeketh mischief, it shall come unto him.</VERS>\r\n      <VERS vnumber=\"28\">He that trusteth in his riches shall fall: but the righteous shall flourish as a branch.</VERS>\r\n      <VERS vnumber=\"29\">He that troubleth his own house shall inherit the wind: and the fool shall be servant to the wise of heart.</VERS>\r\n      <VERS vnumber=\"30\">The fruit of the righteous is a tree of life; and he that winneth souls is wise.</VERS>\r\n      <VERS vnumber=\"31\">Behold, the righteous shall be recompensed in the earth: much more the wicked and the sinner.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">Whoso loveth instruction loveth knowledge: but he that hateth reproof is brutish.</VERS>\r\n      <VERS vnumber=\"2\">A good man obtaineth favour of the LORD: but a man of wicked devices will he condemn.</VERS>\r\n      <VERS vnumber=\"3\">A man shall not be established by wickedness: but the root of the righteous shall not be moved.</VERS>\r\n      <VERS vnumber=\"4\">A virtuous woman is a crown to her husband: but she that maketh ashamed is as rottenness in his bones.</VERS>\r\n      <VERS vnumber=\"5\">The thoughts of the righteous are right: but the counsels of the wicked are deceit.</VERS>\r\n      <VERS vnumber=\"6\">The words of the wicked are to lie in wait for blood: but the mouth of the upright shall deliver them.</VERS>\r\n      <VERS vnumber=\"7\">The wicked are overthrown, and are not: but the house of the righteous shall stand.</VERS>\r\n      <VERS vnumber=\"8\">A man shall be commended according to his wisdom: but he that is of a perverse heart shall be despised.</VERS>\r\n      <VERS vnumber=\"9\">He that is despised, and hath a servant, is better than he that honoureth himself, and lacketh bread.</VERS>\r\n      <VERS vnumber=\"10\">A righteous man regardeth the life of his beast: but the tender mercies of the wicked are cruel.</VERS>\r\n      <VERS vnumber=\"11\">He that tilleth his land shall be satisfied with bread: but he that followeth vain persons is void of understanding.</VERS>\r\n      <VERS vnumber=\"12\">The wicked desireth the net of evil men: but the root of the righteous yieldeth fruit.</VERS>\r\n      <VERS vnumber=\"13\">The wicked is snared by the transgression of his lips: but the just shall come out of trouble.</VERS>\r\n      <VERS vnumber=\"14\">A 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.</VERS>\r\n      <VERS vnumber=\"15\">The way of a fool is right in his own eyes: but he that hearkeneth unto counsel is wise.</VERS>\r\n      <VERS vnumber=\"16\">A fool's wrath is presently known: but a prudent man covereth shame.</VERS>\r\n      <VERS vnumber=\"17\">He that speaketh truth sheweth forth righteousness: but a false witness deceit.</VERS>\r\n      <VERS vnumber=\"18\">There is that speaketh like the piercings of a sword: but the tongue of the wise is health.</VERS>\r\n      <VERS vnumber=\"19\">The lip of truth shall be established for ever: but a lying tongue is but for a moment.</VERS>\r\n      <VERS vnumber=\"20\">Deceit is in the heart of them that imagine evil: but to the counsellors of peace is joy.</VERS>\r\n      <VERS vnumber=\"21\">There shall no evil happen to the just: but the wicked shall be filled with mischief.</VERS>\r\n      <VERS vnumber=\"22\">Lying lips are abomination to the LORD: but they that deal truly are his delight.</VERS>\r\n      <VERS vnumber=\"23\">A prudent man concealeth knowledge: but the heart of fools proclaimeth foolishness.</VERS>\r\n      <VERS vnumber=\"24\">The hand of the diligent shall bear rule: but the slothful shall be under tribute.</VERS>\r\n      <VERS vnumber=\"25\">Heaviness in the heart of man maketh it stoop: but a good word maketh it glad.</VERS>\r\n      <VERS vnumber=\"26\">The righteous is more excellent than his neighbour: but the way of the wicked seduceth them.</VERS>\r\n      <VERS vnumber=\"27\">The slothful man roasteth not that which he took in hunting: but the substance of a diligent man is precious.</VERS>\r\n      <VERS vnumber=\"28\">In the way of righteousness is life; and in the pathway thereof there is no death.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">A wise son heareth his father's instruction: but a scorner heareth not rebuke.</VERS>\r\n      <VERS vnumber=\"2\">A man shall eat good by the fruit of his mouth: but the soul of the transgressors shall eat violence.</VERS>\r\n      <VERS vnumber=\"3\">He that keepeth his mouth keepeth his life: but he that openeth wide his lips shall have destruction.</VERS>\r\n      <VERS vnumber=\"4\">The soul of the sluggard desireth, and hath nothing: but the soul of the diligent shall be made fat.</VERS>\r\n      <VERS vnumber=\"5\">A righteous man hateth lying: but a wicked man is loathsome, and cometh to shame.</VERS>\r\n      <VERS vnumber=\"6\">Righteousness keepeth him that is upright in the way: but wickedness overthroweth the sinner.</VERS>\r\n      <VERS vnumber=\"7\">There is that maketh himself rich, yet hath nothing: there is that maketh himself poor, yet hath great riches.</VERS>\r\n      <VERS vnumber=\"8\">The ransom of a man's life are his riches: but the poor heareth not rebuke.</VERS>\r\n      <VERS vnumber=\"9\">The light of the righteous rejoiceth: but the lamp of the wicked shall be put out.</VERS>\r\n      <VERS vnumber=\"10\">Only by pride cometh contention: but with the well advised is wisdom.</VERS>\r\n      <VERS vnumber=\"11\">Wealth gotten by vanity shall be diminished: but he that gathereth by labour shall increase.</VERS>\r\n      <VERS vnumber=\"12\">Hope deferred maketh the heart sick: but when the desire cometh, it is a tree of life.</VERS>\r\n      <VERS vnumber=\"13\">Whoso despiseth the word shall be destroyed: but he that feareth the commandment shall be rewarded.</VERS>\r\n      <VERS vnumber=\"14\">The law of the wise is a fountain of life, to depart from the snares of death.</VERS>\r\n      <VERS vnumber=\"15\">Good understanding giveth favour: but the way of transgressors is hard.</VERS>\r\n      <VERS vnumber=\"16\">Every prudent man dealeth with knowledge: but a fool layeth open his folly.</VERS>\r\n      <VERS vnumber=\"17\">A wicked messenger falleth into mischief: but a faithful ambassador is health.</VERS>\r\n      <VERS vnumber=\"18\">Poverty and shame shall be to him that refuseth instruction: but he that regardeth reproof shall be honoured.</VERS>\r\n      <VERS vnumber=\"19\">The desire accomplished is sweet to the soul: but it is abomination to fools to depart from evil.</VERS>\r\n      <VERS vnumber=\"20\">He that walketh with wise men shall be wise: but a companion of fools shall be destroyed.</VERS>\r\n      <VERS vnumber=\"21\">Evil pursueth sinners: but to the righteous good shall be repayed.</VERS>\r\n      <VERS vnumber=\"22\">A good man leaveth an inheritance to his children's children: and the wealth of the sinner is laid up for the just.</VERS>\r\n      <VERS vnumber=\"23\">Much food is in the tillage of the poor: but there is that is destroyed for want of judgment.</VERS>\r\n      <VERS vnumber=\"24\">He that spareth his rod hateth his son: but he that loveth him chasteneth him betimes.</VERS>\r\n      <VERS vnumber=\"25\">The righteous eateth to the satisfying of his soul: but the belly of the wicked shall want.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">Every wise woman buildeth her house: but the foolish plucketh it down with her hands.</VERS>\r\n      <VERS vnumber=\"2\">He that walketh in his uprightness feareth the LORD: but he that is perverse in his ways despiseth him.</VERS>\r\n      <VERS vnumber=\"3\">In the mouth of the foolish is a rod of pride: but the lips of the wise shall preserve them.</VERS>\r\n      <VERS vnumber=\"4\">Where no oxen are, the crib is clean: but much increase is by the strength of the ox.</VERS>\r\n      <VERS vnumber=\"5\">A faithful witness will not lie: but a false witness will utter lies.</VERS>\r\n      <VERS vnumber=\"6\">A scorner seeketh wisdom, and findeth it not: but knowledge is easy unto him that understandeth.</VERS>\r\n      <VERS vnumber=\"7\">Go from the presence of a foolish man, when thou perceivest not in him the lips of knowledge.</VERS>\r\n      <VERS vnumber=\"8\">The wisdom of the prudent is to understand his way: but the folly of fools is deceit.</VERS>\r\n      <VERS vnumber=\"9\">Fools make a mock at sin: but among the righteous there is favour.</VERS>\r\n      <VERS vnumber=\"10\">The heart knoweth his own bitterness; and a stranger doth not intermeddle with his joy.</VERS>\r\n      <VERS vnumber=\"11\">The house of the wicked shall be overthrown: but the tabernacle of the upright shall flourish.</VERS>\r\n      <VERS vnumber=\"12\">There is a way which seemeth right unto a man, but the end thereof are the ways of death.</VERS>\r\n      <VERS vnumber=\"13\">Even in laughter the heart is sorrowful; and the end of that mirth is heaviness.</VERS>\r\n      <VERS vnumber=\"14\">The backslider in heart shall be filled with his own ways: and a good man shall be satisfied from himself.</VERS>\r\n      <VERS vnumber=\"15\">The simple believeth every word: but the prudent man looketh well to his going.</VERS>\r\n      <VERS vnumber=\"16\">A wise man feareth, and departeth from evil: but the fool rageth, and is confident.</VERS>\r\n      <VERS vnumber=\"17\">He that is soon angry dealeth foolishly: and a man of wicked devices is hated.</VERS>\r\n      <VERS vnumber=\"18\">The simple inherit folly: but the prudent are crowned with knowledge.</VERS>\r\n      <VERS vnumber=\"19\">The evil bow before the good; and the wicked at the gates of the righteous.</VERS>\r\n      <VERS vnumber=\"20\">The poor is hated even of his own neighbour: but the rich hath many friends.</VERS>\r\n      <VERS vnumber=\"21\">He that despiseth his neighbour sinneth: but he that hath mercy on the poor, happy is he.</VERS>\r\n      <VERS vnumber=\"22\">Do they not err that devise evil? but mercy and truth shall be to them that devise good.</VERS>\r\n      <VERS vnumber=\"23\">In all labour there is profit: but the talk of the lips tendeth only to penury.</VERS>\r\n      <VERS vnumber=\"24\">The crown of the wise is their riches: but the foolishness of fools is folly.</VERS>\r\n      <VERS vnumber=\"25\">A true witness delivereth souls: but a deceitful witness speaketh lies.</VERS>\r\n      <VERS vnumber=\"26\">In the fear of the LORD is strong confidence: and his children shall have a place of refuge.</VERS>\r\n      <VERS vnumber=\"27\">The fear of the LORD is a fountain of life, to depart from the snares of death.</VERS>\r\n      <VERS vnumber=\"28\">In the multitude of people is the king's honour: but in the want of people is the destruction of the prince.</VERS>\r\n      <VERS vnumber=\"29\">He that is slow to wrath is of great understanding: but he that is hasty of spirit exalteth folly.</VERS>\r\n      <VERS vnumber=\"30\">A sound heart is the life of the flesh: but envy the rottenness of the bones.</VERS>\r\n      <VERS vnumber=\"31\">He that oppresseth the poor reproacheth his Maker: but he that honoureth him hath mercy on the poor.</VERS>\r\n      <VERS vnumber=\"32\">The wicked is driven away in his wickedness: but the righteous hath hope in his death.</VERS>\r\n      <VERS vnumber=\"33\">Wisdom resteth in the heart of him that hath understanding: but that which is in the midst of fools is made known.</VERS>\r\n      <VERS vnumber=\"34\">Righteousness exalteth a nation: but sin is a reproach to any people.</VERS>\r\n      <VERS vnumber=\"35\">The king's favour is toward a wise servant: but his wrath is against him that causeth shame.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">A soft answer turneth away wrath: but grievous words stir up anger.</VERS>\r\n      <VERS vnumber=\"2\">The tongue of the wise useth knowledge aright: but the mouth of fools poureth out foolishness.</VERS>\r\n      <VERS vnumber=\"3\">The eyes of the LORD are in every place, beholding the evil and the good.</VERS>\r\n      <VERS vnumber=\"4\">A wholesome tongue is a tree of life: but perverseness therein is a breach in the spirit.</VERS>\r\n      <VERS vnumber=\"5\">A fool despiseth his father's instruction: but he that regardeth reproof is prudent.</VERS>\r\n      <VERS vnumber=\"6\">In the house of the righteous is much treasure: but in the revenues of the wicked is trouble.</VERS>\r\n      <VERS vnumber=\"7\">The lips of the wise disperse knowledge: but the heart of the foolish doeth not so.</VERS>\r\n      <VERS vnumber=\"8\">The sacrifice of the wicked is an abomination to the LORD: but the prayer of the upright is his delight.</VERS>\r\n      <VERS vnumber=\"9\">The way of the wicked is an abomination unto the LORD: but he loveth him that followeth after righteousness.</VERS>\r\n      <VERS vnumber=\"10\">Correction is grievous unto him that forsaketh the way: and he that hateth reproof shall die.</VERS>\r\n      <VERS vnumber=\"11\">Hell and destruction are before the LORD: how much more then the hearts of the children of men?</VERS>\r\n      <VERS vnumber=\"12\">A scorner loveth not one that reproveth him: neither will he go unto the wise.</VERS>\r\n      <VERS vnumber=\"13\">A merry heart maketh a cheerful countenance: but by sorrow of the heart the spirit is broken.</VERS>\r\n      <VERS vnumber=\"14\">The heart of him that hath understanding seeketh knowledge: but the mouth of fools feedeth on foolishness.</VERS>\r\n      <VERS vnumber=\"15\">All the days of the afflicted are evil: but he that is of a merry heart hath a continual feast.</VERS>\r\n      <VERS vnumber=\"16\">Better is little with the fear of the LORD than great treasure and trouble therewith.</VERS>\r\n      <VERS vnumber=\"17\">Better is a dinner of herbs where love is, than a stalled ox and hatred therewith.</VERS>\r\n      <VERS vnumber=\"18\">A wrathful man stirreth up strife: but he that is slow to anger appeaseth strife.</VERS>\r\n      <VERS vnumber=\"19\">The way of the slothful man is as an hedge of thorns: but the way of the righteous is made plain.</VERS>\r\n      <VERS vnumber=\"20\">A wise son maketh a glad father: but a foolish man despiseth his mother.</VERS>\r\n      <VERS vnumber=\"21\">Folly is joy to him that is destitute of wisdom: but a man of understanding walketh uprightly.</VERS>\r\n      <VERS vnumber=\"22\">Without counsel purposes are disappointed: but in the multitude of counsellors they are established.</VERS>\r\n      <VERS vnumber=\"23\">A man hath joy by the answer of his mouth: and a word spoken in due season, how good is it!</VERS>\r\n      <VERS vnumber=\"24\">The way of life is above to the wise, that he may depart from hell beneath.</VERS>\r\n      <VERS vnumber=\"25\">The LORD will destroy the house of the proud: but he will establish the border of the widow.</VERS>\r\n      <VERS vnumber=\"26\">The thoughts of the wicked are an abomination to the LORD: but the words of the pure are pleasant words.</VERS>\r\n      <VERS vnumber=\"27\">He that is greedy of gain troubleth his own house; but he that hateth gifts shall live.</VERS>\r\n      <VERS vnumber=\"28\">The heart of the righteous studieth to answer: but the mouth of the wicked poureth out evil things.</VERS>\r\n      <VERS vnumber=\"29\">The LORD is far from the wicked: but he heareth the prayer of the righteous.</VERS>\r\n      <VERS vnumber=\"30\">The light of the eyes rejoiceth the heart: and a good report maketh the bones fat.</VERS>\r\n      <VERS vnumber=\"31\">The ear that heareth the reproof of life abideth among the wise.</VERS>\r\n      <VERS vnumber=\"32\">He that refuseth instruction despiseth his own soul: but he that heareth reproof getteth understanding.</VERS>\r\n      <VERS vnumber=\"33\">The fear of the LORD is the instruction of wisdom; and before honour is humility.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">The preparations of the heart in man, and the answer of the tongue, is from the LORD.</VERS>\r\n      <VERS vnumber=\"2\">All the ways of a man are clean in his own eyes; but the LORD weigheth the spirits.</VERS>\r\n      <VERS vnumber=\"3\">Commit thy works unto the LORD, and thy thoughts shall be established.</VERS>\r\n      <VERS vnumber=\"4\">The LORD hath made all things for himself: yea, even the wicked for the day of evil.</VERS>\r\n      <VERS vnumber=\"5\">Every one that is proud in heart is an abomination to the LORD: though hand join in hand, he shall not be unpunished.</VERS>\r\n      <VERS vnumber=\"6\">By mercy and truth iniquity is purged: and by the fear of the LORD men depart from evil.</VERS>\r\n      <VERS vnumber=\"7\">When a man's ways please the LORD, he maketh even his enemies to be at peace with him.</VERS>\r\n      <VERS vnumber=\"8\">Better is a little with righteousness than great revenues without right.</VERS>\r\n      <VERS vnumber=\"9\">A man's heart deviseth his way: but the LORD directeth his steps.</VERS>\r\n      <VERS vnumber=\"10\">A divine sentence is in the lips of the king: his mouth transgresseth not in judgment.</VERS>\r\n      <VERS vnumber=\"11\">A just weight and balance are the LORD'S: all the weights of the bag are his work.</VERS>\r\n      <VERS vnumber=\"12\">It is an abomination to kings to commit wickedness: for the throne is established by righteousness.</VERS>\r\n      <VERS vnumber=\"13\">Righteous lips are the delight of kings; and they love him that speaketh right.</VERS>\r\n      <VERS vnumber=\"14\">The wrath of a king is as messengers of death: but a wise man will pacify it.</VERS>\r\n      <VERS vnumber=\"15\">In the light of the king's countenance is life; and his favour is as a cloud of the latter rain.</VERS>\r\n      <VERS vnumber=\"16\">How much better is it to get wisdom than gold! and to get understanding rather to be chosen than silver!</VERS>\r\n      <VERS vnumber=\"17\">The highway of the upright is to depart from evil: he that keepeth his way preserveth his soul.</VERS>\r\n      <VERS vnumber=\"18\">Pride goeth before destruction, and an haughty spirit before a fall.</VERS>\r\n      <VERS vnumber=\"19\">Better it is to be of an humble spirit with the lowly, than to divide the spoil with the proud.</VERS>\r\n      <VERS vnumber=\"20\">He that handleth a matter wisely shall find good: and whoso trusteth in the LORD, happy is he.</VERS>\r\n      <VERS vnumber=\"21\">The wise in heart shall be called prudent: and the sweetness of the lips increaseth learning.</VERS>\r\n      <VERS vnumber=\"22\">Understanding is a wellspring of life unto him that hath it: but the instruction of fools is folly.</VERS>\r\n      <VERS vnumber=\"23\">The heart of the wise teacheth his mouth, and addeth learning to his lips.</VERS>\r\n      <VERS vnumber=\"24\">Pleasant words are as an honeycomb, sweet to the soul, and health to the bones.</VERS>\r\n      <VERS vnumber=\"25\">There is a way that seemeth right unto a man, but the end thereof are the ways of death.</VERS>\r\n      <VERS vnumber=\"26\">He that laboureth laboureth for himself; for his mouth craveth it of him.</VERS>\r\n      <VERS vnumber=\"27\">An ungodly man diggeth up evil: and in his lips there is as a burning fire.</VERS>\r\n      <VERS vnumber=\"28\">A froward man soweth strife: and a whisperer separateth chief friends.</VERS>\r\n      <VERS vnumber=\"29\">A violent man enticeth his neighbour, and leadeth him into the way that is not good.</VERS>\r\n      <VERS vnumber=\"30\">He shutteth his eyes to devise froward things: moving his lips he bringeth evil to pass.</VERS>\r\n      <VERS vnumber=\"31\">The hoary head is a crown of glory, if it be found in the way of righteousness.</VERS>\r\n      <VERS vnumber=\"32\">He that is slow to anger is better than the mighty; and he that ruleth his spirit than he that taketh a city.</VERS>\r\n      <VERS vnumber=\"33\">The lot is cast into the lap; but the whole disposing thereof is of the LORD.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"17\">\r\n      <VERS vnumber=\"1\">Better is a dry morsel, and quietness therewith, than an house full of sacrifices with strife.</VERS>\r\n      <VERS vnumber=\"2\">A wise servant shall have rule over a son that causeth shame, and shall have part of the inheritance among the brethren.</VERS>\r\n      <VERS vnumber=\"3\">The fining pot is for silver, and the furnace for gold: but the LORD trieth the hearts.</VERS>\r\n      <VERS vnumber=\"4\">A wicked doer giveth heed to false lips; and a liar giveth ear to a naughty tongue.</VERS>\r\n      <VERS vnumber=\"5\">Whoso mocketh the poor reproacheth his Maker: and he that is glad at calamities shall not be unpunished.</VERS>\r\n      <VERS vnumber=\"6\">Children's children are the crown of old men; and the glory of children are their fathers.</VERS>\r\n      <VERS vnumber=\"7\">Excellent speech becometh not a fool: much less do lying lips a prince.</VERS>\r\n      <VERS vnumber=\"8\">A gift is as a precious stone in the eyes of him that hath it: whithersoever it turneth, it prospereth.</VERS>\r\n      <VERS vnumber=\"9\">He that covereth a transgression seeketh love; but he that repeateth a matter separateth very friends.</VERS>\r\n      <VERS vnumber=\"10\">A reproof entereth more into a wise man than an hundred stripes into a fool.</VERS>\r\n      <VERS vnumber=\"11\">An evil man seeketh only rebellion: therefore a cruel messenger shall be sent against him.</VERS>\r\n      <VERS vnumber=\"12\">Let a bear robbed of her whelps meet a man, rather than a fool in his folly.</VERS>\r\n      <VERS vnumber=\"13\">Whoso rewardeth evil for good, evil shall not depart from his house.</VERS>\r\n      <VERS vnumber=\"14\">The beginning of strife is as when one letteth out water: therefore leave off contention, before it be meddled with.</VERS>\r\n      <VERS vnumber=\"15\">He that justifieth the wicked, and he that condemneth the just, even they both are abomination to the LORD.</VERS>\r\n      <VERS vnumber=\"16\">Wherefore is there a price in the hand of a fool to get wisdom, seeing he hath no heart to it?</VERS>\r\n      <VERS vnumber=\"17\">A friend loveth at all times, and a brother is born for adversity.</VERS>\r\n      <VERS vnumber=\"18\">A man void of understanding striketh hands, and becometh surety in the presence of his friend.</VERS>\r\n      <VERS vnumber=\"19\">He loveth transgression that loveth strife: and he that exalteth his gate seeketh destruction.</VERS>\r\n      <VERS vnumber=\"20\">He that hath a froward heart findeth no good: and he that hath a perverse tongue falleth into mischief.</VERS>\r\n      <VERS vnumber=\"21\">He that begetteth a fool doeth it to his sorrow: and the father of a fool hath no joy.</VERS>\r\n      <VERS vnumber=\"22\">A merry heart doeth good like a medicine: but a broken spirit drieth the bones.</VERS>\r\n      <VERS vnumber=\"23\">A wicked man taketh a gift out of the bosom to pervert the ways of judgment.</VERS>\r\n      <VERS vnumber=\"24\">Wisdom is before him that hath understanding; but the eyes of a fool are in the ends of the earth.</VERS>\r\n      <VERS vnumber=\"25\">A foolish son is a grief to his father, and bitterness to her that bare him.</VERS>\r\n      <VERS vnumber=\"26\">Also to punish the just is not good, nor to strike princes for equity.</VERS>\r\n      <VERS vnumber=\"27\">He that hath knowledge spareth his words: and a man of understanding is of an excellent spirit.</VERS>\r\n      <VERS vnumber=\"28\">Even a fool, when he holdeth his peace, is counted wise: and he that shutteth his lips is esteemed a man of understanding.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"18\">\r\n      <VERS vnumber=\"1\">Through desire a man, having separated himself, seeketh and intermeddleth with all wisdom.</VERS>\r\n      <VERS vnumber=\"2\">A fool hath no delight in understanding, but that his heart may discover itself.</VERS>\r\n      <VERS vnumber=\"3\">When the wicked cometh, then cometh also contempt, and with ignominy reproach.</VERS>\r\n      <VERS vnumber=\"4\">The words of a man's mouth are as deep waters, and the wellspring of wisdom as a flowing brook.</VERS>\r\n      <VERS vnumber=\"5\">It is not good to accept the person of the wicked, to overthrow the righteous in judgment.</VERS>\r\n      <VERS vnumber=\"6\">A fool's lips enter into contention, and his mouth calleth for strokes.</VERS>\r\n      <VERS vnumber=\"7\">A fool's mouth is his destruction, and his lips are the snare of his soul.</VERS>\r\n      <VERS vnumber=\"8\">The words of a talebearer are as wounds, and they go down into the innermost parts of the belly.</VERS>\r\n      <VERS vnumber=\"9\">He also that is slothful in his work is brother to him that is a great waster.</VERS>\r\n      <VERS vnumber=\"10\">The name of the LORD is a strong tower: the righteous runneth into it, and is safe.</VERS>\r\n      <VERS vnumber=\"11\">The rich man's wealth is his strong city, and as an high wall in his own conceit.</VERS>\r\n      <VERS vnumber=\"12\">Before destruction the heart of man is haughty, and before honour is humility.</VERS>\r\n      <VERS vnumber=\"13\">He that answereth a matter before he heareth it, it is folly and shame unto him.</VERS>\r\n      <VERS vnumber=\"14\">The spirit of a man will sustain his infirmity; but a wounded spirit who can bear?</VERS>\r\n      <VERS vnumber=\"15\">The heart of the prudent getteth knowledge; and the ear of the wise seeketh knowledge.</VERS>\r\n      <VERS vnumber=\"16\">A man's gift maketh room for him, and bringeth him before great men.</VERS>\r\n      <VERS vnumber=\"17\">He that is first in his own cause seemeth just; but his neighbour cometh and searcheth him.</VERS>\r\n      <VERS vnumber=\"18\">The lot causeth contentions to cease, and parteth between the mighty.</VERS>\r\n      <VERS vnumber=\"19\">A brother offended is harder to be won than a strong city: and their contentions are like the bars of a castle.</VERS>\r\n      <VERS vnumber=\"20\">A man's belly shall be satisfied with the fruit of his mouth; and with the increase of his lips shall he be filled.</VERS>\r\n      <VERS vnumber=\"21\">Death and life are in the power of the tongue: and they that love it shall eat the fruit thereof.</VERS>\r\n      <VERS vnumber=\"22\">Whoso findeth a wife findeth a good thing, and obtaineth favour of the LORD.</VERS>\r\n      <VERS vnumber=\"23\">The poor useth intreaties; but the rich answereth roughly.</VERS>\r\n      <VERS vnumber=\"24\">A man that hath friends must shew himself friendly: and there is a friend that sticketh closer than a brother.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"19\">\r\n      <VERS vnumber=\"1\">Better is the poor that walketh in his integrity, than he that is perverse in his lips, and is a fool.</VERS>\r\n      <VERS vnumber=\"2\">Also, that the soul be without knowledge, it is not good; and he that hasteth with his feet sinneth.</VERS>\r\n      <VERS vnumber=\"3\">The foolishness of man perverteth his way: and his heart fretteth against the LORD.</VERS>\r\n      <VERS vnumber=\"4\">Wealth maketh many friends; but the poor is separated from his neighbour.</VERS>\r\n      <VERS vnumber=\"5\">A false witness shall not be unpunished, and he that speaketh lies shall not escape.</VERS>\r\n      <VERS vnumber=\"6\">Many will intreat the favour of the prince: and every man is a friend to him that giveth gifts.</VERS>\r\n      <VERS vnumber=\"7\">All 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.</VERS>\r\n      <VERS vnumber=\"8\">He that getteth wisdom loveth his own soul: he that keepeth understanding shall find good.</VERS>\r\n      <VERS vnumber=\"9\">A false witness shall not be unpunished, and he that speaketh lies shall perish.</VERS>\r\n      <VERS vnumber=\"10\">Delight is not seemly for a fool; much less for a servant to have rule over princes.</VERS>\r\n      <VERS vnumber=\"11\">The discretion of a man deferreth his anger; and it is his glory to pass over a transgression.</VERS>\r\n      <VERS vnumber=\"12\">The king's wrath is as the roaring of a lion; but his favour is as dew upon the grass.</VERS>\r\n      <VERS vnumber=\"13\">A foolish son is the calamity of his father: and the contentions of a wife are a continual dropping.</VERS>\r\n      <VERS vnumber=\"14\">House and riches are the inheritance of fathers: and a prudent wife is from the LORD.</VERS>\r\n      <VERS vnumber=\"15\">Slothfulness casteth into a deep sleep; and an idle soul shall suffer hunger.</VERS>\r\n      <VERS vnumber=\"16\">He that keepeth the commandment keepeth his own soul; but he that despiseth his ways shall die.</VERS>\r\n      <VERS vnumber=\"17\">He that hath pity upon the poor lendeth unto the LORD; and that which he hath given will he pay him again.</VERS>\r\n      <VERS vnumber=\"18\">Chasten thy son while there is hope, and let not thy soul spare for his crying.</VERS>\r\n      <VERS vnumber=\"19\">A man of great wrath shall suffer punishment: for if thou deliver him, yet thou must do it again.</VERS>\r\n      <VERS vnumber=\"20\">Hear counsel, and receive instruction, that thou mayest be wise in thy latter end.</VERS>\r\n      <VERS vnumber=\"21\">There are many devices in a man's heart; nevertheless the counsel of the LORD, that shall stand.</VERS>\r\n      <VERS vnumber=\"22\">The desire of a man is his kindness: and a poor man is better than a liar.</VERS>\r\n      <VERS vnumber=\"23\">The fear of the LORD tendeth to life: and he that hath it shall abide satisfied; he shall not be visited with evil.</VERS>\r\n      <VERS vnumber=\"24\">A slothful man hideth his hand in his bosom, and will not so much as bring it to his mouth again.</VERS>\r\n      <VERS vnumber=\"25\">Smite a scorner, and the simple will beware: and reprove one that hath understanding, and he will understand knowledge.</VERS>\r\n      <VERS vnumber=\"26\">He that wasteth his father, and chaseth away his mother, is a son that causeth shame, and bringeth reproach.</VERS>\r\n      <VERS vnumber=\"27\">Cease, my son, to hear the instruction that causeth to err from the words of knowledge.</VERS>\r\n      <VERS vnumber=\"28\">An ungodly witness scorneth judgment: and the mouth of the wicked devoureth iniquity.</VERS>\r\n      <VERS vnumber=\"29\">Judgments are prepared for scorners, and stripes for the back of fools.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"20\">\r\n      <VERS vnumber=\"1\">Wine is a mocker, strong drink is raging: and whosoever is deceived thereby is not wise.</VERS>\r\n      <VERS vnumber=\"2\">The fear of a king is as the roaring of a lion: whoso provoketh him to anger sinneth against his own soul.</VERS>\r\n      <VERS vnumber=\"3\">It is an honour for a man to cease from strife: but every fool will be meddling.</VERS>\r\n      <VERS vnumber=\"4\">The sluggard will not plow by reason of the cold; therefore shall he beg in harvest, and have nothing.</VERS>\r\n      <VERS vnumber=\"5\">Counsel in the heart of man is like deep water; but a man of understanding will draw it out.</VERS>\r\n      <VERS vnumber=\"6\">Most men will proclaim every one his own goodness: but a faithful man who can find?</VERS>\r\n      <VERS vnumber=\"7\">The just man walketh in his integrity: his children are blessed after him.</VERS>\r\n      <VERS vnumber=\"8\">A king that sitteth in the throne of judgment scattereth away all evil with his eyes.</VERS>\r\n      <VERS vnumber=\"9\">Who can say, I have made my heart clean, I am pure from my sin?</VERS>\r\n      <VERS vnumber=\"10\">Divers weights, and divers measures, both of them are alike abomination to the LORD.</VERS>\r\n      <VERS vnumber=\"11\">Even a child is known by his doings, whether his work be pure, and whether it be right.</VERS>\r\n      <VERS vnumber=\"12\">The hearing ear, and the seeing eye, the LORD hath made even both of them.</VERS>\r\n      <VERS vnumber=\"13\">Love not sleep, lest thou come to poverty; open thine eyes, and thou shalt be satisfied with bread.</VERS>\r\n      <VERS vnumber=\"14\">It is naught, it is naught, saith the buyer: but when he is gone his way, then he boasteth.</VERS>\r\n      <VERS vnumber=\"15\">There is gold, and a multitude of rubies: but the lips of knowledge are a precious jewel.</VERS>\r\n      <VERS vnumber=\"16\">Take his garment that is surety for a stranger: and take a pledge of him for a strange woman.</VERS>\r\n      <VERS vnumber=\"17\">Bread of deceit is sweet to a man; but afterwards his mouth shall be filled with gravel.</VERS>\r\n      <VERS vnumber=\"18\">Every purpose is established by counsel: and with good advice make war.</VERS>\r\n      <VERS vnumber=\"19\">He that goeth about as a talebearer revealeth secrets: therefore meddle not with him that flattereth with his lips.</VERS>\r\n      <VERS vnumber=\"20\">Whoso curseth his father or his mother, his lamp shall be put out in obscure darkness.</VERS>\r\n      <VERS vnumber=\"21\">An inheritance may be gotten hastily at the beginning; but the end thereof shall not be blessed.</VERS>\r\n      <VERS vnumber=\"22\">Say not thou, I will recompense evil; but wait on the LORD, and he shall save thee.</VERS>\r\n      <VERS vnumber=\"23\">Divers weights are an abomination unto the LORD; and a false balance is not good.</VERS>\r\n      <VERS vnumber=\"24\">Man's goings are of the LORD; how can a man then understand his own way?</VERS>\r\n      <VERS vnumber=\"25\">It is a snare to the man who devoureth that which is holy, and after vows to make enquiry.</VERS>\r\n      <VERS vnumber=\"26\">A wise king scattereth the wicked, and bringeth the wheel over them.</VERS>\r\n      <VERS vnumber=\"27\">The spirit of man is the candle of the LORD, searching all the inward parts of the belly.</VERS>\r\n      <VERS vnumber=\"28\">Mercy and truth preserve the king: and his throne is upholden by mercy.</VERS>\r\n      <VERS vnumber=\"29\">The glory of young men is their strength: and the beauty of old men is the gray head.</VERS>\r\n      <VERS vnumber=\"30\">The blueness of a wound cleanseth away evil: so do stripes the inward parts of the belly.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"21\">\r\n      <VERS vnumber=\"1\">The king's heart is in the hand of the LORD, as the rivers of water: he turneth it whithersoever he will.</VERS>\r\n      <VERS vnumber=\"2\">Every way of a man is right in his own eyes: but the LORD pondereth the hearts.</VERS>\r\n      <VERS vnumber=\"3\">To do justice and judgment is more acceptable to the LORD than sacrifice.</VERS>\r\n      <VERS vnumber=\"4\">An high look, and a proud heart, and the plowing of the wicked, is sin.</VERS>\r\n      <VERS vnumber=\"5\">The thoughts of the diligent tend only to plenteousness; but of every one that is hasty only to want.</VERS>\r\n      <VERS vnumber=\"6\">The getting of treasures by a lying tongue is a vanity tossed to and fro of them that seek death.</VERS>\r\n      <VERS vnumber=\"7\">The robbery of the wicked shall destroy them; because they refuse to do judgment.</VERS>\r\n      <VERS vnumber=\"8\">The way of man is froward and strange: but as for the pure, his work is right.</VERS>\r\n      <VERS vnumber=\"9\">It is better to dwell in a corner of the housetop, than with a brawling woman in a wide house.</VERS>\r\n      <VERS vnumber=\"10\">The soul of the wicked desireth evil: his neighbour findeth no favour in his eyes.</VERS>\r\n      <VERS vnumber=\"11\">When the scorner is punished, the simple is made wise: and when the wise is instructed, he receiveth knowledge.</VERS>\r\n      <VERS vnumber=\"12\">The righteous man wisely considereth the house of the wicked: but God overthroweth the wicked for their wickedness.</VERS>\r\n      <VERS vnumber=\"13\">Whoso stoppeth his ears at the cry of the poor, he also shall cry himself, but shall not be heard.</VERS>\r\n      <VERS vnumber=\"14\">A gift in secret pacifieth anger: and a reward in the bosom strong wrath.</VERS>\r\n      <VERS vnumber=\"15\">It is joy to the just to do judgment: but destruction shall be to the workers of iniquity.</VERS>\r\n      <VERS vnumber=\"16\">The man that wandereth out of the way of understanding shall remain in the congregation of the dead.</VERS>\r\n      <VERS vnumber=\"17\">He that loveth pleasure shall be a poor man: he that loveth wine and oil shall not be rich.</VERS>\r\n      <VERS vnumber=\"18\">The wicked shall be a ransom for the righteous, and the transgressor for the upright.</VERS>\r\n      <VERS vnumber=\"19\">It is better to dwell in the wilderness, than with a contentious and an angry woman.</VERS>\r\n      <VERS vnumber=\"20\">There is treasure to be desired and oil in the dwelling of the wise; but a foolish man spendeth it up.</VERS>\r\n      <VERS vnumber=\"21\">He that followeth after righteousness and mercy findeth life, righteousness, and honour.</VERS>\r\n      <VERS vnumber=\"22\">A wise man scaleth the city of the mighty, and casteth down the strength of the confidence thereof.</VERS>\r\n      <VERS vnumber=\"23\">Whoso keepeth his mouth and his tongue keepeth his soul from troubles.</VERS>\r\n      <VERS vnumber=\"24\">Proud and haughty scorner is his name, who dealeth in proud wrath.</VERS>\r\n      <VERS vnumber=\"25\">The desire of the slothful killeth him; for his hands refuse to labour.</VERS>\r\n      <VERS vnumber=\"26\">He coveteth greedily all the day long: but the righteous giveth and spareth not.</VERS>\r\n      <VERS vnumber=\"27\">The sacrifice of the wicked is abomination: how much more, when he bringeth it with a wicked mind?</VERS>\r\n      <VERS vnumber=\"28\">A false witness shall perish: but the man that heareth speaketh constantly.</VERS>\r\n      <VERS vnumber=\"29\">A wicked man hardeneth his face: but as for the upright, he directeth his way.</VERS>\r\n      <VERS vnumber=\"30\">There is no wisdom nor understanding nor counsel against the LORD.</VERS>\r\n      <VERS vnumber=\"31\">The horse is prepared against the day of battle: but safety is of the LORD.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"22\">\r\n      <VERS vnumber=\"1\">A good name is rather to be chosen than great riches, and loving favour rather than silver and gold.</VERS>\r\n      <VERS vnumber=\"2\">The rich and poor meet together: the LORD is the maker of them all.</VERS>\r\n      <VERS vnumber=\"3\">A prudent man foreseeth the evil, and hideth himself: but the simple pass on, and are punished.</VERS>\r\n      <VERS vnumber=\"4\">By humility and the fear of the LORD are riches, and honour, and life.</VERS>\r\n      <VERS vnumber=\"5\">Thorns and snares are in the way of the froward: he that doth keep his soul shall be far from them.</VERS>\r\n      <VERS vnumber=\"6\">Train up a child in the way he should go: and when he is old, he will not depart from it.</VERS>\r\n      <VERS vnumber=\"7\">The rich ruleth over the poor, and the borrower is servant to the lender.</VERS>\r\n      <VERS vnumber=\"8\">He that soweth iniquity shall reap vanity: and the rod of his anger shall fail.</VERS>\r\n      <VERS vnumber=\"9\">He that hath a bountiful eye shall be blessed; for he giveth of his bread to the poor.</VERS>\r\n      <VERS vnumber=\"10\">Cast out the scorner, and contention shall go out; yea, strife and reproach shall cease.</VERS>\r\n      <VERS vnumber=\"11\">He that loveth pureness of heart, for the grace of his lips the king shall be his friend.</VERS>\r\n      <VERS vnumber=\"12\">The eyes of the LORD preserve knowledge, and he overthroweth the words of the transgressor.</VERS>\r\n      <VERS vnumber=\"13\">The slothful man saith, There is a lion without, I shall be slain in the streets.</VERS>\r\n      <VERS vnumber=\"14\">The mouth of strange women is a deep pit: he that is abhorred of the LORD shall fall therein.</VERS>\r\n      <VERS vnumber=\"15\">Foolishness is bound in the heart of a child; but the rod of correction shall drive it far from him.</VERS>\r\n      <VERS vnumber=\"16\">He that oppresseth the poor to increase his riches, and he that giveth to the rich, shall surely come to want.</VERS>\r\n      <VERS vnumber=\"17\">Bow down thine ear, and hear the words of the wise, and apply thine heart unto my knowledge.</VERS>\r\n      <VERS vnumber=\"18\">For it is a pleasant thing if thou keep them within thee; they shall withal be fitted in thy lips.</VERS>\r\n      <VERS vnumber=\"19\">That thy trust may be in the LORD, I have made known to thee this day, even to thee.</VERS>\r\n      <VERS vnumber=\"20\">Have not I written to thee excellent things in counsels and knowledge,</VERS>\r\n      <VERS vnumber=\"21\">That 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?</VERS>\r\n      <VERS vnumber=\"22\">Rob not the poor, because he is poor: neither oppress the afflicted in the gate:</VERS>\r\n      <VERS vnumber=\"23\">For the LORD will plead their cause, and spoil the soul of those that spoiled them.</VERS>\r\n      <VERS vnumber=\"24\">Make no friendship with an angry man; and with a furious man thou shalt not go:</VERS>\r\n      <VERS vnumber=\"25\">Lest thou learn his ways, and get a snare to thy soul.</VERS>\r\n      <VERS vnumber=\"26\">Be not thou one of them that strike hands, or of them that are sureties for debts.</VERS>\r\n      <VERS vnumber=\"27\">If thou hast nothing to pay, why should he take away thy bed from under thee?</VERS>\r\n      <VERS vnumber=\"28\">Remove not the ancient landmark, which thy fathers have set.</VERS>\r\n      <VERS vnumber=\"29\">Seest thou a man diligent in his business? he shall stand before kings; he shall not stand before mean men.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"23\">\r\n      <VERS vnumber=\"1\">When thou sittest to eat with a ruler, consider diligently what is before thee:</VERS>\r\n      <VERS vnumber=\"2\">And put a knife to thy throat, if thou be a man given to appetite.</VERS>\r\n      <VERS vnumber=\"3\">Be not desirous of his dainties: for they are deceitful meat.</VERS>\r\n      <VERS vnumber=\"4\">Labour not to be rich: cease from thine own wisdom.</VERS>\r\n      <VERS vnumber=\"5\">Wilt thou set thine eyes upon that which is not? for riches certainly make themselves wings; they fly away as an eagle toward heaven.</VERS>\r\n      <VERS vnumber=\"6\">Eat thou not the bread of him that hath an evil eye, neither desire thou his dainty meats:</VERS>\r\n      <VERS vnumber=\"7\">For as he thinketh in his heart, so is he: Eat and drink, saith he to thee; but his heart is not with thee.</VERS>\r\n      <VERS vnumber=\"8\">The morsel which thou hast eaten shalt thou vomit up, and lose thy sweet words.</VERS>\r\n      <VERS vnumber=\"9\">Speak not in the ears of a fool: for he will despise the wisdom of thy words.</VERS>\r\n      <VERS vnumber=\"10\">Remove not the old landmark; and enter not into the fields of the fatherless:</VERS>\r\n      <VERS vnumber=\"11\">For their redeemer is mighty; he shall plead their cause with thee.</VERS>\r\n      <VERS vnumber=\"12\">Apply thine heart unto instruction, and thine ears to the words of knowledge.</VERS>\r\n      <VERS vnumber=\"13\">Withhold not correction from the child: for if thou beatest him with the rod, he shall not die.</VERS>\r\n      <VERS vnumber=\"14\">Thou shalt beat him with the rod, and shalt deliver his soul from hell.</VERS>\r\n      <VERS vnumber=\"15\">My son, if thine heart be wise, my heart shall rejoice, even mine.</VERS>\r\n      <VERS vnumber=\"16\">Yea, my reins shall rejoice, when thy lips speak right things.</VERS>\r\n      <VERS vnumber=\"17\">Let not thine heart envy sinners: but be thou in the fear of the LORD all the day long.</VERS>\r\n      <VERS vnumber=\"18\">For surely there is an end; and thine expectation shall not be cut off.</VERS>\r\n      <VERS vnumber=\"19\">Hear thou, my son, and be wise, and guide thine heart in the way.</VERS>\r\n      <VERS vnumber=\"20\">Be not among winebibbers; among riotous eaters of flesh:</VERS>\r\n      <VERS vnumber=\"21\">For the drunkard and the glutton shall come to poverty: and drowsiness shall clothe a man with rags.</VERS>\r\n      <VERS vnumber=\"22\">Hearken unto thy father that begat thee, and despise not thy mother when she is old.</VERS>\r\n      <VERS vnumber=\"23\">Buy the truth, and sell it not; also wisdom, and instruction, and understanding.</VERS>\r\n      <VERS vnumber=\"24\">The father of the righteous shall greatly rejoice: and he that begetteth a wise child shall have joy of him.</VERS>\r\n      <VERS vnumber=\"25\">Thy father and thy mother shall be glad, and she that bare thee shall rejoice.</VERS>\r\n      <VERS vnumber=\"26\">My son, give me thine heart, and let thine eyes observe my ways.</VERS>\r\n      <VERS vnumber=\"27\">For a whore is a deep ditch; and a strange woman is a narrow pit.</VERS>\r\n      <VERS vnumber=\"28\">She also lieth in wait as for a prey, and increaseth the transgressors among men.</VERS>\r\n      <VERS vnumber=\"29\">Who hath woe? who hath sorrow? who hath contentions? who hath babbling? who hath wounds without cause? who hath redness of eyes?</VERS>\r\n      <VERS vnumber=\"30\">They that tarry long at the wine; they that go to seek mixed wine.</VERS>\r\n      <VERS vnumber=\"31\">Look not thou upon the wine when it is red, when it giveth his colour in the cup, when it moveth itself aright.</VERS>\r\n      <VERS vnumber=\"32\">At the last it biteth like a serpent, and stingeth like an adder.</VERS>\r\n      <VERS vnumber=\"33\">Thine eyes shall behold strange women, and thine heart shall utter perverse things.</VERS>\r\n      <VERS vnumber=\"34\">Yea, 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.</VERS>\r\n      <VERS vnumber=\"35\">They 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"24\">\r\n      <VERS vnumber=\"1\">Be not thou envious against evil men, neither desire to be with them.</VERS>\r\n      <VERS vnumber=\"2\">For their heart studieth destruction, and their lips talk of mischief.</VERS>\r\n      <VERS vnumber=\"3\">Through wisdom is an house builded; and by understanding it is established:</VERS>\r\n      <VERS vnumber=\"4\">And by knowledge shall the chambers be filled with all precious and pleasant riches.</VERS>\r\n      <VERS vnumber=\"5\">A wise man is strong; yea, a man of knowledge increaseth strength.</VERS>\r\n      <VERS vnumber=\"6\">For by wise counsel thou shalt make thy war: and in multitude of counsellors there is safety.</VERS>\r\n      <VERS vnumber=\"7\">Wisdom is too high for a fool: he openeth not his mouth in the gate.</VERS>\r\n      <VERS vnumber=\"8\">He that deviseth to do evil shall be called a mischievous person.</VERS>\r\n      <VERS vnumber=\"9\">The thought of foolishness is sin: and the scorner is an abomination to men.</VERS>\r\n      <VERS vnumber=\"10\">If thou faint in the day of adversity, thy strength is small.</VERS>\r\n      <VERS vnumber=\"11\">If thou forbear to deliver them that are drawn unto death, and those that are ready to be slain;</VERS>\r\n      <VERS vnumber=\"12\">If 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?</VERS>\r\n      <VERS vnumber=\"13\">My son, eat thou honey, because it is good; and the honeycomb, which is sweet to thy taste:</VERS>\r\n      <VERS vnumber=\"14\">So 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.</VERS>\r\n      <VERS vnumber=\"15\">Lay not wait, O wicked man, against the dwelling of the righteous; spoil not his resting place:</VERS>\r\n      <VERS vnumber=\"16\">For a just man falleth seven times, and riseth up again: but the wicked shall fall into mischief.</VERS>\r\n      <VERS vnumber=\"17\">Rejoice not when thine enemy falleth, and let not thine heart be glad when he stumbleth:</VERS>\r\n      <VERS vnumber=\"18\">Lest the LORD see it, and it displease him, and he turn away his wrath from him.</VERS>\r\n      <VERS vnumber=\"19\">Fret not thyself because of evil men, neither be thou envious at the wicked;</VERS>\r\n      <VERS vnumber=\"20\">For there shall be no reward to the evil man; the candle of the wicked shall be put out.</VERS>\r\n      <VERS vnumber=\"21\">My son, fear thou the LORD and the king: and meddle not with them that are given to change:</VERS>\r\n      <VERS vnumber=\"22\">For their calamity shall rise suddenly; and who knoweth the ruin of them both?</VERS>\r\n      <VERS vnumber=\"23\">These things also belong to the wise. It is not good to have respect of persons in judgment.</VERS>\r\n      <VERS vnumber=\"24\">He that saith unto the wicked, Thou art righteous; him shall the people curse, nations shall abhor him:</VERS>\r\n      <VERS vnumber=\"25\">But to them that rebuke him shall be delight, and a good blessing shall come upon them.</VERS>\r\n      <VERS vnumber=\"26\">Every man shall kiss his lips that giveth a right answer.</VERS>\r\n      <VERS vnumber=\"27\">Prepare thy work without, and make it fit for thyself in the field; and afterwards build thine house.</VERS>\r\n      <VERS vnumber=\"28\">Be not a witness against thy neighbour without cause; and deceive not with thy lips.</VERS>\r\n      <VERS vnumber=\"29\">Say not, I will do so to him as he hath done to me: I will render to the man according to his work.</VERS>\r\n      <VERS vnumber=\"30\">I went by the field of the slothful, and by the vineyard of the man void of understanding;</VERS>\r\n      <VERS vnumber=\"31\">And, lo, it was all grown over with thorns, and nettles had covered the face thereof, and the stone wall thereof was broken down.</VERS>\r\n      <VERS vnumber=\"32\">Then I saw, and considered it well: I looked upon it, and received instruction.</VERS>\r\n      <VERS vnumber=\"33\">Yet a little sleep, a little slumber, a little folding of the hands to sleep:</VERS>\r\n      <VERS vnumber=\"34\">So shall thy poverty come as one that travelleth; and thy want as an armed man.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"25\">\r\n      <VERS vnumber=\"1\">These are also proverbs of Solomon, which the men of Hezekiah king of Judah copied out.</VERS>\r\n      <VERS vnumber=\"2\">It is the glory of God to conceal a thing: but the honour of kings is to search out a matter.</VERS>\r\n      <VERS vnumber=\"3\">The heaven for height, and the earth for depth, and the heart of kings is unsearchable.</VERS>\r\n      <VERS vnumber=\"4\">Take away the dross from the silver, and there shall come forth a vessel for the finer.</VERS>\r\n      <VERS vnumber=\"5\">Take away the wicked from before the king, and his throne shall be established in righteousness.</VERS>\r\n      <VERS vnumber=\"6\">Put not forth thyself in the presence of the king, and stand not in the place of great men:</VERS>\r\n      <VERS vnumber=\"7\">For 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.</VERS>\r\n      <VERS vnumber=\"8\">Go not forth hastily to strive, lest thou know not what to do in the end thereof, when thy neighbour hath put thee to shame.</VERS>\r\n      <VERS vnumber=\"9\">Debate thy cause with thy neighbour himself; and discover not a secret to another:</VERS>\r\n      <VERS vnumber=\"10\">Lest he that heareth it put thee to shame, and thine infamy turn not away.</VERS>\r\n      <VERS vnumber=\"11\">A word fitly spoken is like apples of gold in pictures of silver.</VERS>\r\n      <VERS vnumber=\"12\">As an earring of gold, and an ornament of fine gold, so is a wise reprover upon an obedient ear.</VERS>\r\n      <VERS vnumber=\"13\">As 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.</VERS>\r\n      <VERS vnumber=\"14\">Whoso boasteth himself of a false gift is like clouds and wind without rain.</VERS>\r\n      <VERS vnumber=\"15\">By long forbearing is a prince persuaded, and a soft tongue breaketh the bone.</VERS>\r\n      <VERS vnumber=\"16\">Hast thou found honey? eat so much as is sufficient for thee, lest thou be filled therewith, and vomit it.</VERS>\r\n      <VERS vnumber=\"17\">Withdraw thy foot from thy neighbour's house; lest he be weary of thee, and so hate thee.</VERS>\r\n      <VERS vnumber=\"18\">A man that beareth false witness against his neighbour is a maul, and a sword, and a sharp arrow.</VERS>\r\n      <VERS vnumber=\"19\">Confidence in an unfaithful man in time of trouble is like a broken tooth, and a foot out of joint.</VERS>\r\n      <VERS vnumber=\"20\">As he that taketh away a garment in cold weather, and as vinegar upon nitre, so is he that singeth songs to an heavy heart.</VERS>\r\n      <VERS vnumber=\"21\">If thine enemy be hungry, give him bread to eat; and if he be thirsty, give him water to drink:</VERS>\r\n      <VERS vnumber=\"22\">For thou shalt heap coals of fire upon his head, and the LORD shall reward thee.</VERS>\r\n      <VERS vnumber=\"23\">The north wind driveth away rain: so doth an angry countenance a backbiting tongue.</VERS>\r\n      <VERS vnumber=\"24\">It is better to dwell in the corner of the housetop, than with a brawling woman and in a wide house.</VERS>\r\n      <VERS vnumber=\"25\">As cold waters to a thirsty soul, so is good news from a far country.</VERS>\r\n      <VERS vnumber=\"26\">A righteous man falling down before the wicked is as a troubled fountain, and a corrupt spring.</VERS>\r\n      <VERS vnumber=\"27\">It is not good to eat much honey: so for men to search their own glory is not glory.</VERS>\r\n      <VERS vnumber=\"28\">He that hath no rule over his own spirit is like a city that is broken down, and without walls.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"26\">\r\n      <VERS vnumber=\"1\">As snow in summer, and as rain in harvest, so honour is not seemly for a fool.</VERS>\r\n      <VERS vnumber=\"2\">As the bird by wandering, as the swallow by flying, so the curse causeless shall not come.</VERS>\r\n      <VERS vnumber=\"3\">A whip for the horse, a bridle for the ass, and a rod for the fool's back.</VERS>\r\n      <VERS vnumber=\"4\">Answer not a fool according to his folly, lest thou also be like unto him.</VERS>\r\n      <VERS vnumber=\"5\">Answer a fool according to his folly, lest he be wise in his own conceit.</VERS>\r\n      <VERS vnumber=\"6\">He that sendeth a message by the hand of a fool cutteth off the feet, and drinketh damage.</VERS>\r\n      <VERS vnumber=\"7\">The legs of the lame are not equal: so is a parable in the mouth of fools.</VERS>\r\n      <VERS vnumber=\"8\">As he that bindeth a stone in a sling, so is he that giveth honour to a fool.</VERS>\r\n      <VERS vnumber=\"9\">As a thorn goeth up into the hand of a drunkard, so is a parable in the mouth of fools.</VERS>\r\n      <VERS vnumber=\"10\">The great God that formed all things both rewardeth the fool, and rewardeth transgressors.</VERS>\r\n      <VERS vnumber=\"11\">As a dog returneth to his vomit, so a fool returneth to his folly.</VERS>\r\n      <VERS vnumber=\"12\">Seest thou a man wise in his own conceit? there is more hope of a fool than of him.</VERS>\r\n      <VERS vnumber=\"13\">The slothful man saith, There is a lion in the way; a lion is in the streets.</VERS>\r\n      <VERS vnumber=\"14\">As the door turneth upon his hinges, so doth the slothful upon his bed.</VERS>\r\n      <VERS vnumber=\"15\">The slothful hideth his hand in his bosom; it grieveth him to bring it again to his mouth.</VERS>\r\n      <VERS vnumber=\"16\">The sluggard is wiser in his own conceit than seven men that can render a reason.</VERS>\r\n      <VERS vnumber=\"17\">He that passeth by, and meddleth with strife belonging not to him, is like one that taketh a dog by the ears.</VERS>\r\n      <VERS vnumber=\"18\">As a mad man who casteth firebrands, arrows, and death,</VERS>\r\n      <VERS vnumber=\"19\">So is the man that deceiveth his neighbour, and saith, Am not I in sport?</VERS>\r\n      <VERS vnumber=\"20\">Where no wood is, there the fire goeth out: so where there is no talebearer, the strife ceaseth.</VERS>\r\n      <VERS vnumber=\"21\">As coals are to burning coals, and wood to fire; so is a contentious man to kindle strife.</VERS>\r\n      <VERS vnumber=\"22\">The words of a talebearer are as wounds, and they go down into the innermost parts of the belly.</VERS>\r\n      <VERS vnumber=\"23\">Burning lips and a wicked heart are like a potsherd covered with silver dross.</VERS>\r\n      <VERS vnumber=\"24\">He that hateth dissembleth with his lips, and layeth up deceit within him;</VERS>\r\n      <VERS vnumber=\"25\">When he speaketh fair, believe him not: for there are seven abominations in his heart.</VERS>\r\n      <VERS vnumber=\"26\">Whose hatred is covered by deceit, his wickedness shall be shewed before the whole congregation.</VERS>\r\n      <VERS vnumber=\"27\">Whoso diggeth a pit shall fall therein: and he that rolleth a stone, it will return upon him.</VERS>\r\n      <VERS vnumber=\"28\">A lying tongue hateth those that are afflicted by it; and a flattering mouth worketh ruin.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"27\">\r\n      <VERS vnumber=\"1\">Boast not thyself of to morrow; for thou knowest not what a day may bring forth.</VERS>\r\n      <VERS vnumber=\"2\">Let another man praise thee, and not thine own mouth; a stranger, and not thine own lips.</VERS>\r\n      <VERS vnumber=\"3\">A stone is heavy, and the sand weighty; but a fool's wrath is heavier than them both.</VERS>\r\n      <VERS vnumber=\"4\">Wrath is cruel, and anger is outrageous; but who is able to stand before envy?</VERS>\r\n      <VERS vnumber=\"5\">Open rebuke is better than secret love.</VERS>\r\n      <VERS vnumber=\"6\">Faithful are the wounds of a friend; but the kisses of an enemy are deceitful.</VERS>\r\n      <VERS vnumber=\"7\">The full soul loatheth an honeycomb; but to the hungry soul every bitter thing is sweet.</VERS>\r\n      <VERS vnumber=\"8\">As a bird that wandereth from her nest, so is a man that wandereth from his place.</VERS>\r\n      <VERS vnumber=\"9\">Ointment and perfume rejoice the heart: so doth the sweetness of a man's friend by hearty counsel.</VERS>\r\n      <VERS vnumber=\"10\">Thine 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.</VERS>\r\n      <VERS vnumber=\"11\">My son, be wise, and make my heart glad, that I may answer him that reproacheth me.</VERS>\r\n      <VERS vnumber=\"12\">A prudent man foreseeth the evil, and hideth himself; but the simple pass on, and are punished.</VERS>\r\n      <VERS vnumber=\"13\">Take his garment that is surety for a stranger, and take a pledge of him for a strange woman.</VERS>\r\n      <VERS vnumber=\"14\">He that blesseth his friend with a loud voice, rising early in the morning, it shall be counted a curse to him.</VERS>\r\n      <VERS vnumber=\"15\">A continual dropping in a very rainy day and a contentious woman are alike.</VERS>\r\n      <VERS vnumber=\"16\">Whosoever hideth her hideth the wind, and the ointment of his right hand, which bewrayeth itself.</VERS>\r\n      <VERS vnumber=\"17\">Iron sharpeneth iron; so a man sharpeneth the countenance of his friend.</VERS>\r\n      <VERS vnumber=\"18\">Whoso keepeth the fig tree shall eat the fruit thereof: so he that waiteth on his master shall be honoured.</VERS>\r\n      <VERS vnumber=\"19\">As in water face answereth to face, so the heart of man to man.</VERS>\r\n      <VERS vnumber=\"20\">Hell and destruction are never full; so the eyes of man are never satisfied.</VERS>\r\n      <VERS vnumber=\"21\">As the fining pot for silver, and the furnace for gold; so is a man to his praise.</VERS>\r\n      <VERS vnumber=\"22\">Though thou shouldest bray a fool in a mortar among wheat with a pestle, yet will not his foolishness depart from him.</VERS>\r\n      <VERS vnumber=\"23\">Be thou diligent to know the state of thy flocks, and look well to thy herds.</VERS>\r\n      <VERS vnumber=\"24\">For riches are not for ever: and doth the crown endure to every generation?</VERS>\r\n      <VERS vnumber=\"25\">The hay appeareth, and the tender grass sheweth itself, and herbs of the mountains are gathered.</VERS>\r\n      <VERS vnumber=\"26\">The lambs are for thy clothing, and the goats are the price of the field.</VERS>\r\n      <VERS vnumber=\"27\">And thou shalt have goats' milk enough for thy food, for the food of thy household, and for the maintenance for thy maidens.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"28\">\r\n      <VERS vnumber=\"1\">The wicked flee when no man pursueth: but the righteous are bold as a lion.</VERS>\r\n      <VERS vnumber=\"2\">For the transgression of a land many are the princes thereof: but by a man of understanding and knowledge the state thereof shall be prolonged.</VERS>\r\n      <VERS vnumber=\"3\">A poor man that oppresseth the poor is like a sweeping rain which leaveth no food.</VERS>\r\n      <VERS vnumber=\"4\">They that forsake the law praise the wicked: but such as keep the law contend with them.</VERS>\r\n      <VERS vnumber=\"5\">Evil men understand not judgment: but they that seek the LORD understand all things.</VERS>\r\n      <VERS vnumber=\"6\">Better is the poor that walketh in his uprightness, than he that is perverse in his ways, though he be rich.</VERS>\r\n      <VERS vnumber=\"7\">Whoso keepeth the law is a wise son: but he that is a companion of riotous men shameth his father.</VERS>\r\n      <VERS vnumber=\"8\">He that by usury and unjust gain increaseth his substance, he shall gather it for him that will pity the poor.</VERS>\r\n      <VERS vnumber=\"9\">He that turneth away his ear from hearing the law, even his prayer shall be abomination.</VERS>\r\n      <VERS vnumber=\"10\">Whoso 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.</VERS>\r\n      <VERS vnumber=\"11\">The rich man is wise in his own conceit; but the poor that hath understanding searcheth him out.</VERS>\r\n      <VERS vnumber=\"12\">When righteous men do rejoice, there is great glory: but when the wicked rise, a man is hidden.</VERS>\r\n      <VERS vnumber=\"13\">He that covereth his sins shall not prosper: but whoso confesseth and forsaketh them shall have mercy.</VERS>\r\n      <VERS vnumber=\"14\">Happy is the man that feareth alway: but he that hardeneth his heart shall fall into mischief.</VERS>\r\n      <VERS vnumber=\"15\">As a roaring lion, and a ranging bear; so is a wicked ruler over the poor people.</VERS>\r\n      <VERS vnumber=\"16\">The prince that wanteth understanding is also a great oppressor: but he that hateth covetousness shall prolong his days.</VERS>\r\n      <VERS vnumber=\"17\">A man that doeth violence to the blood of any person shall flee to the pit; let no man stay him.</VERS>\r\n      <VERS vnumber=\"18\">Whoso walketh uprightly shall be saved: but he that is perverse in his ways shall fall at once.</VERS>\r\n      <VERS vnumber=\"19\">He that tilleth his land shall have plenty of bread: but he that followeth after vain persons shall have poverty enough.</VERS>\r\n      <VERS vnumber=\"20\">A faithful man shall abound with blessings: but he that maketh haste to be rich shall not be innocent.</VERS>\r\n      <VERS vnumber=\"21\">To have respect of persons is not good: for for a piece of bread that man will transgress.</VERS>\r\n      <VERS vnumber=\"22\">He that hasteth to be rich hath an evil eye, and considereth not that poverty shall come upon him.</VERS>\r\n      <VERS vnumber=\"23\">He that rebuketh a man afterwards shall find more favour than he that flattereth with the tongue.</VERS>\r\n      <VERS vnumber=\"24\">Whoso robbeth his father or his mother, and saith, It is no transgression; the same is the companion of a destroyer.</VERS>\r\n      <VERS vnumber=\"25\">He that is of a proud heart stirreth up strife: but he that putteth his trust in the LORD shall be made fat.</VERS>\r\n      <VERS vnumber=\"26\">He that trusteth in his own heart is a fool: but whoso walketh wisely, he shall be delivered.</VERS>\r\n      <VERS vnumber=\"27\">He that giveth unto the poor shall not lack: but he that hideth his eyes shall have many a curse.</VERS>\r\n      <VERS vnumber=\"28\">When the wicked rise, men hide themselves: but when they perish, the righteous increase.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"29\">\r\n      <VERS vnumber=\"1\">He, that being often reproved hardeneth his neck, shall suddenly be destroyed, and that without remedy.</VERS>\r\n      <VERS vnumber=\"2\">When the righteous are in authority, the people rejoice: but when the wicked beareth rule, the people mourn.</VERS>\r\n      <VERS vnumber=\"3\">Whoso loveth wisdom rejoiceth his father: but he that keepeth company with harlots spendeth his substance.</VERS>\r\n      <VERS vnumber=\"4\">The king by judgment establisheth the land: but he that receiveth gifts overthroweth it.</VERS>\r\n      <VERS vnumber=\"5\">A man that flattereth his neighbour spreadeth a net for his feet.</VERS>\r\n      <VERS vnumber=\"6\">In the transgression of an evil man there is a snare: but the righteous doth sing and rejoice.</VERS>\r\n      <VERS vnumber=\"7\">The righteous considereth the cause of the poor: but the wicked regardeth not to know it.</VERS>\r\n      <VERS vnumber=\"8\">Scornful men bring a city into a snare: but wise men turn away wrath.</VERS>\r\n      <VERS vnumber=\"9\">If a wise man contendeth with a foolish man, whether he rage or laugh, there is no rest.</VERS>\r\n      <VERS vnumber=\"10\">The bloodthirsty hate the upright: but the just seek his soul.</VERS>\r\n      <VERS vnumber=\"11\">A fool uttereth all his mind: but a wise man keepeth it in till afterwards.</VERS>\r\n      <VERS vnumber=\"12\">If a ruler hearken to lies, all his servants are wicked.</VERS>\r\n      <VERS vnumber=\"13\">The poor and the deceitful man meet together: the LORD lighteneth both their eyes.</VERS>\r\n      <VERS vnumber=\"14\">The king that faithfully judgeth the poor, his throne shall be established for ever.</VERS>\r\n      <VERS vnumber=\"15\">The rod and reproof give wisdom: but a child left to himself bringeth his mother to shame.</VERS>\r\n      <VERS vnumber=\"16\">When the wicked are multiplied, transgression increaseth: but the righteous shall see their fall.</VERS>\r\n      <VERS vnumber=\"17\">Correct thy son, and he shall give thee rest; yea, he shall give delight unto thy soul.</VERS>\r\n      <VERS vnumber=\"18\">Where there is no vision, the people perish: but he that keepeth the law, happy is he.</VERS>\r\n      <VERS vnumber=\"19\">A servant will not be corrected by words: for though he understand he will not answer.</VERS>\r\n      <VERS vnumber=\"20\">Seest thou a man that is hasty in his words? there is more hope of a fool than of him.</VERS>\r\n      <VERS vnumber=\"21\">He that delicately bringeth up his servant from a child shall have him become his son at the length.</VERS>\r\n      <VERS vnumber=\"22\">An angry man stirreth up strife, and a furious man aboundeth in transgression.</VERS>\r\n      <VERS vnumber=\"23\">A man's pride shall bring him low: but honour shall uphold the humble in spirit.</VERS>\r\n      <VERS vnumber=\"24\">Whoso is partner with a thief hateth his own soul: he heareth cursing, and bewrayeth it not.</VERS>\r\n      <VERS vnumber=\"25\">The fear of man bringeth a snare: but whoso putteth his trust in the LORD shall be safe.</VERS>\r\n      <VERS vnumber=\"26\">Many seek the ruler's favour; but every man's judgment cometh from the LORD.</VERS>\r\n      <VERS vnumber=\"27\">An unjust man is an abomination to the just: and he that is upright in the way is abomination to the wicked.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"30\">\r\n      <VERS vnumber=\"1\">The words of Agur the son of Jakeh, even the prophecy: the man spake unto Ithiel, even unto Ithiel and Ucal,</VERS>\r\n      <VERS vnumber=\"2\">Surely I am more brutish than any man, and have not the understanding of a man.</VERS>\r\n      <VERS vnumber=\"3\">I neither learned wisdom, nor have the knowledge of the holy.</VERS>\r\n      <VERS vnumber=\"4\">Who 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?</VERS>\r\n      <VERS vnumber=\"5\">Every word of God is pure: he is a shield unto them that put their trust in him.</VERS>\r\n      <VERS vnumber=\"6\">Add thou not unto his words, lest he reprove thee, and thou be found a liar.</VERS>\r\n      <VERS vnumber=\"7\">Two things have I required of thee; deny me them not before I die:</VERS>\r\n      <VERS vnumber=\"8\">Remove far from me vanity and lies: give me neither poverty nor riches; feed me with food convenient for me:</VERS>\r\n      <VERS vnumber=\"9\">Lest 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.</VERS>\r\n      <VERS vnumber=\"10\">Accuse not a servant unto his master, lest he curse thee, and thou be found guilty.</VERS>\r\n      <VERS vnumber=\"11\">There is a generation that curseth their father, and doth not bless their mother.</VERS>\r\n      <VERS vnumber=\"12\">There is a generation that are pure in their own eyes, and yet is not washed from their filthiness.</VERS>\r\n      <VERS vnumber=\"13\">There is a generation, O how lofty are their eyes! and their eyelids are lifted up.</VERS>\r\n      <VERS vnumber=\"14\">There 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.</VERS>\r\n      <VERS vnumber=\"15\">The horseleach hath two daughters, crying, Give, give. There are three things that are never satisfied, yea, four things say not, It is enough:</VERS>\r\n      <VERS vnumber=\"16\">The grave; and the barren womb; the earth that is not filled with water; and the fire that saith not, It is enough.</VERS>\r\n      <VERS vnumber=\"17\">The 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.</VERS>\r\n      <VERS vnumber=\"18\">There be three things which are too wonderful for me, yea, four which I know not:</VERS>\r\n      <VERS vnumber=\"19\">The 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.</VERS>\r\n      <VERS vnumber=\"20\">Such is the way of an adulterous woman; she eateth, and wipeth her mouth, and saith, I have done no wickedness.</VERS>\r\n      <VERS vnumber=\"21\">For three things the earth is disquieted, and for four which it cannot bear:</VERS>\r\n      <VERS vnumber=\"22\">For a servant when he reigneth; and a fool when he is filled with meat;</VERS>\r\n      <VERS vnumber=\"23\">For an odious woman when she is married; and an handmaid that is heir to her mistress.</VERS>\r\n      <VERS vnumber=\"24\">There be four things which are little upon the earth, but they are exceeding wise:</VERS>\r\n      <VERS vnumber=\"25\">The ants are a people not strong, yet they prepare their meat in the summer;</VERS>\r\n      <VERS vnumber=\"26\">The conies are but a feeble folk, yet make they their houses in the rocks;</VERS>\r\n      <VERS vnumber=\"27\">The locusts have no king, yet go they forth all of them by bands;</VERS>\r\n      <VERS vnumber=\"28\">The spider taketh hold with her hands, and is in kings' palaces.</VERS>\r\n      <VERS vnumber=\"29\">There be three things which go well, yea, four are comely in going:</VERS>\r\n      <VERS vnumber=\"30\">A lion which is strongest among beasts, and turneth not away for any;</VERS>\r\n      <VERS vnumber=\"31\">A greyhound; an he goat also; and a king, against whom there is no rising up.</VERS>\r\n      <VERS vnumber=\"32\">If thou hast done foolishly in lifting up thyself, or if thou hast thought evil, lay thine hand upon thy mouth.</VERS>\r\n      <VERS vnumber=\"33\">Surely the churning of milk bringeth forth butter, and the wringing of the nose bringeth forth blood: so the forcing of wrath bringeth forth strife.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"31\">\r\n      <VERS vnumber=\"1\">The words of king Lemuel, the prophecy that his mother taught him.</VERS>\r\n      <VERS vnumber=\"2\">What, my son? and what, the son of my womb? and what, the son of my vows?</VERS>\r\n      <VERS vnumber=\"3\">Give not thy strength unto women, nor thy ways to that which destroyeth kings.</VERS>\r\n      <VERS vnumber=\"4\">It is not for kings, O Lemuel, it is not for kings to drink wine; nor for princes strong drink:</VERS>\r\n      <VERS vnumber=\"5\">Lest they drink, and forget the law, and pervert the judgment of any of the afflicted.</VERS>\r\n      <VERS vnumber=\"6\">Give strong drink unto him that is ready to perish, and wine unto those that be of heavy hearts.</VERS>\r\n      <VERS vnumber=\"7\">Let him drink, and forget his poverty, and remember his misery no more.</VERS>\r\n      <VERS vnumber=\"8\">Open thy mouth for the dumb in the cause of all such as are appointed to destruction.</VERS>\r\n      <VERS vnumber=\"9\">Open thy mouth, judge righteously, and plead the cause of the poor and needy.</VERS>\r\n      <VERS vnumber=\"10\">Who can find a virtuous woman? for her price is far above rubies.</VERS>\r\n      <VERS vnumber=\"11\">The heart of her husband doth safely trust in her, so that he shall have no need of spoil.</VERS>\r\n      <VERS vnumber=\"12\">She will do him good and not evil all the days of her life.</VERS>\r\n      <VERS vnumber=\"13\">She seeketh wool, and flax, and worketh willingly with her hands.</VERS>\r\n      <VERS vnumber=\"14\">She is like the merchants' ships; she bringeth her food from afar.</VERS>\r\n      <VERS vnumber=\"15\">She riseth also while it is yet night, and giveth meat to her household, and a portion to her maidens.</VERS>\r\n      <VERS vnumber=\"16\">She considereth a field, and buyeth it: with the fruit of her hands she planteth a vineyard.</VERS>\r\n      <VERS vnumber=\"17\">She girdeth her loins with strength, and strengtheneth her arms.</VERS>\r\n      <VERS vnumber=\"18\">She perceiveth that her merchandise is good: her candle goeth not out by night.</VERS>\r\n      <VERS vnumber=\"19\">She layeth her hands to the spindle, and her hands hold the distaff.</VERS>\r\n      <VERS vnumber=\"20\">She stretcheth out her hand to the poor; yea, she reacheth forth her hands to the needy.</VERS>\r\n      <VERS vnumber=\"21\">She is not afraid of the snow for her household: for all her household are clothed with scarlet.</VERS>\r\n      <VERS vnumber=\"22\">She maketh herself coverings of tapestry; her clothing is silk and purple.</VERS>\r\n      <VERS vnumber=\"23\">Her husband is known in the gates, when he sitteth among the elders of the land.</VERS>\r\n      <VERS vnumber=\"24\">She maketh fine linen, and selleth it; and delivereth girdles unto the merchant.</VERS>\r\n      <VERS vnumber=\"25\">Strength and honour are her clothing; and she shall rejoice in time to come.</VERS>\r\n      <VERS vnumber=\"26\">She openeth her mouth with wisdom; and in her tongue is the law of kindness.</VERS>\r\n      <VERS vnumber=\"27\">She looketh well to the ways of her household, and eateth not the bread of idleness.</VERS>\r\n      <VERS vnumber=\"28\">Her children arise up, and call her blessed; her husband also, and he praiseth her.</VERS>\r\n      <VERS vnumber=\"29\">Many daughters have done virtuously, but thou excellest them all.</VERS>\r\n      <VERS vnumber=\"30\">Favour is deceitful, and beauty is vain: but a woman that feareth the LORD, she shall be praised.</VERS>\r\n      <VERS vnumber=\"31\">Give her of the fruit of her hands; and let her own works praise her in the gates.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"21\" bname=\"Ecclesiastes\" bsname=\"Eccl\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">The words of the Preacher, the son of David, king in Jerusalem.</VERS>\r\n      <VERS vnumber=\"2\">Vanity of vanities, saith the Preacher, vanity of vanities; all is vanity.</VERS>\r\n      <VERS vnumber=\"3\">What profit hath a man of all his labour which he taketh under the sun?</VERS>\r\n      <VERS vnumber=\"4\">One generation passeth away, and another generation cometh: but the earth abideth for ever.</VERS>\r\n      <VERS vnumber=\"5\">The sun also ariseth, and the sun goeth down, and hasteth to his place where he arose.</VERS>\r\n      <VERS vnumber=\"6\">The wind goeth toward the south, and turneth about unto the north; it whirleth about continually, and the wind returneth again according to his circuits.</VERS>\r\n      <VERS vnumber=\"7\">All the rivers run into the sea; yet the sea is not full; unto the place from whence the rivers come, thither they return again.</VERS>\r\n      <VERS vnumber=\"8\">All things are full of labour; man cannot utter it: the eye is not satisfied with seeing, nor the ear filled with hearing.</VERS>\r\n      <VERS vnumber=\"9\">The 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.</VERS>\r\n      <VERS vnumber=\"10\">Is there any thing whereof it may be said, See, this is new? it hath been already of old time, which was before us.</VERS>\r\n      <VERS vnumber=\"11\">There is no remembrance of former things; neither shall there be any remembrance of things that are to come with those that shall come after.</VERS>\r\n      <VERS vnumber=\"12\">I the Preacher was king over Israel in Jerusalem.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">I have seen all the works that are done under the sun; and, behold, all is vanity and vexation of spirit.</VERS>\r\n      <VERS vnumber=\"15\">That which is crooked cannot be made straight: and that which is wanting cannot be numbered.</VERS>\r\n      <VERS vnumber=\"16\">I 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.</VERS>\r\n      <VERS vnumber=\"17\">And I gave my heart to know wisdom, and to know madness and folly: I perceived that this also is vexation of spirit.</VERS>\r\n      <VERS vnumber=\"18\">For in much wisdom is much grief: and he that increaseth knowledge increaseth sorrow.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">I said in mine heart, Go to now, I will prove thee with mirth, therefore enjoy pleasure: and, behold, this also is vanity.</VERS>\r\n      <VERS vnumber=\"2\">I said of laughter, It is mad: and of mirth, What doeth it?</VERS>\r\n      <VERS vnumber=\"3\">I 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.</VERS>\r\n      <VERS vnumber=\"4\">I made me great works; I builded me houses; I planted me vineyards:</VERS>\r\n      <VERS vnumber=\"5\">I made me gardens and orchards, and I planted trees in them of all kind of fruits:</VERS>\r\n      <VERS vnumber=\"6\">I made me pools of water, to water therewith the wood that bringeth forth trees:</VERS>\r\n      <VERS vnumber=\"7\">I 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:</VERS>\r\n      <VERS vnumber=\"8\">I 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.</VERS>\r\n      <VERS vnumber=\"9\">So I was great, and increased more than all that were before me in Jerusalem: also my wisdom remained with me.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">Then 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">Then I saw that wisdom excelleth folly, as far as light excelleth darkness.</VERS>\r\n      <VERS vnumber=\"14\">The 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.</VERS>\r\n      <VERS vnumber=\"15\">Then 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.</VERS>\r\n      <VERS vnumber=\"16\">For 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.</VERS>\r\n      <VERS vnumber=\"17\">Therefore I hated life; because the work that is wrought under the sun is grievous unto me: for all is vanity and vexation of spirit.</VERS>\r\n      <VERS vnumber=\"18\">Yea, 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">Therefore I went about to cause my heart to despair of all the labour which I took under the sun.</VERS>\r\n      <VERS vnumber=\"21\">For 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.</VERS>\r\n      <VERS vnumber=\"22\">For what hath man of all his labour, and of the vexation of his heart, wherein he hath laboured under the sun?</VERS>\r\n      <VERS vnumber=\"23\">For all his days are sorrows, and his travail grief; yea, his heart taketh not rest in the night. This is also vanity.</VERS>\r\n      <VERS vnumber=\"24\">There 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.</VERS>\r\n      <VERS vnumber=\"25\">For who can eat, or who else can hasten hereunto, more than I?</VERS>\r\n      <VERS vnumber=\"26\">For 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">To every thing there is a season, and a time to every purpose under the heaven:</VERS>\r\n      <VERS vnumber=\"2\">A time to be born, and a time to die; a time to plant, and a time to pluck up that which is planted;</VERS>\r\n      <VERS vnumber=\"3\">A time to kill, and a time to heal; a time to break down, and a time to build up;</VERS>\r\n      <VERS vnumber=\"4\">A time to weep, and a time to laugh; a time to mourn, and a time to dance;</VERS>\r\n      <VERS vnumber=\"5\">A time to cast away stones, and a time to gather stones together; a time to embrace, and a time to refrain from embracing;</VERS>\r\n      <VERS vnumber=\"6\">A time to get, and a time to lose; a time to keep, and a time to cast away;</VERS>\r\n      <VERS vnumber=\"7\">A time to rend, and a time to sew; a time to keep silence, and a time to speak;</VERS>\r\n      <VERS vnumber=\"8\">A time to love, and a time to hate; a time of war, and a time of peace.</VERS>\r\n      <VERS vnumber=\"9\">What profit hath he that worketh in that wherein he laboureth?</VERS>\r\n      <VERS vnumber=\"10\">I have seen the travail, which God hath given to the sons of men to be exercised in it.</VERS>\r\n      <VERS vnumber=\"11\">He 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.</VERS>\r\n      <VERS vnumber=\"12\">I know that there is no good in them, but for a man to rejoice, and to do good in his life.</VERS>\r\n      <VERS vnumber=\"13\">And also that every man should eat and drink, and enjoy the good of all his labour, it is the gift of God.</VERS>\r\n      <VERS vnumber=\"14\">I 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.</VERS>\r\n      <VERS vnumber=\"15\">That which hath been is now; and that which is to be hath already been; and God requireth that which is past.</VERS>\r\n      <VERS vnumber=\"16\">And moreover I saw under the sun the place of judgment, that wickedness was there; and the place of righteousness, that iniquity was there.</VERS>\r\n      <VERS vnumber=\"17\">I 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.</VERS>\r\n      <VERS vnumber=\"18\">I 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.</VERS>\r\n      <VERS vnumber=\"19\">For 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.</VERS>\r\n      <VERS vnumber=\"20\">All go unto one place; all are of the dust, and all turn to dust again.</VERS>\r\n      <VERS vnumber=\"21\">Who knoweth the spirit of man that goeth upward, and the spirit of the beast that goeth downward to the earth?</VERS>\r\n      <VERS vnumber=\"22\">Wherefore 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?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">So 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.</VERS>\r\n      <VERS vnumber=\"2\">Wherefore I praised the dead which are already dead more than the living which are yet alive.</VERS>\r\n      <VERS vnumber=\"3\">Yea, better is he than both they, which hath not yet been, who hath not seen the evil work that is done under the sun.</VERS>\r\n      <VERS vnumber=\"4\">Again, 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.</VERS>\r\n      <VERS vnumber=\"5\">The fool foldeth his hands together, and eateth his own flesh.</VERS>\r\n      <VERS vnumber=\"6\">Better is an handful with quietness, than both the hands full with travail and vexation of spirit.</VERS>\r\n      <VERS vnumber=\"7\">Then I returned, and I saw vanity under the sun.</VERS>\r\n      <VERS vnumber=\"8\">There 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.</VERS>\r\n      <VERS vnumber=\"9\">Two are better than one; because they have a good reward for their labour.</VERS>\r\n      <VERS vnumber=\"10\">For 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.</VERS>\r\n      <VERS vnumber=\"11\">Again, if two lie together, then they have heat: but how can one be warm alone?</VERS>\r\n      <VERS vnumber=\"12\">And if one prevail against him, two shall withstand him; and a threefold cord is not quickly broken.</VERS>\r\n      <VERS vnumber=\"13\">Better is a poor and a wise child than an old and foolish king, who will no more be admonished.</VERS>\r\n      <VERS vnumber=\"14\">For out of prison he cometh to reign; whereas also he that is born in his kingdom becometh poor.</VERS>\r\n      <VERS vnumber=\"15\">I considered all the living which walk under the sun, with the second child that shall stand up in his stead.</VERS>\r\n      <VERS vnumber=\"16\">There 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">Keep 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.</VERS>\r\n      <VERS vnumber=\"2\">Be 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.</VERS>\r\n      <VERS vnumber=\"3\">For a dream cometh through the multitude of business; and a fool's voice is known by multitude of words.</VERS>\r\n      <VERS vnumber=\"4\">When thou vowest a vow unto God, defer not to pay it; for he hath no pleasure in fools: pay that which thou hast vowed.</VERS>\r\n      <VERS vnumber=\"5\">Better is it that thou shouldest not vow, than that thou shouldest vow and not pay.</VERS>\r\n      <VERS vnumber=\"6\">Suffer 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?</VERS>\r\n      <VERS vnumber=\"7\">For in the multitude of dreams and many words there are also divers vanities: but fear thou God.</VERS>\r\n      <VERS vnumber=\"8\">If 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.</VERS>\r\n      <VERS vnumber=\"9\">Moreover the profit of the earth is for all: the king himself is served by the field.</VERS>\r\n      <VERS vnumber=\"10\">He that loveth silver shall not be satisfied with silver; nor he that loveth abundance with increase: this is also vanity.</VERS>\r\n      <VERS vnumber=\"11\">When 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?</VERS>\r\n      <VERS vnumber=\"12\">The 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.</VERS>\r\n      <VERS vnumber=\"13\">There is a sore evil which I have seen under the sun, namely, riches kept for the owners thereof to their hurt.</VERS>\r\n      <VERS vnumber=\"14\">But those riches perish by evil travail: and he begetteth a son, and there is nothing in his hand.</VERS>\r\n      <VERS vnumber=\"15\">As 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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?</VERS>\r\n      <VERS vnumber=\"17\">All his days also he eateth in darkness, and he hath much sorrow and wrath with his sickness.</VERS>\r\n      <VERS vnumber=\"18\">Behold 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.</VERS>\r\n      <VERS vnumber=\"19\">Every 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.</VERS>\r\n      <VERS vnumber=\"20\">For he shall not much remember the days of his life; because God answereth him in the joy of his heart.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">There is an evil which I have seen under the sun, and it is common among men:</VERS>\r\n      <VERS vnumber=\"2\">A 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.</VERS>\r\n      <VERS vnumber=\"3\">If 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.</VERS>\r\n      <VERS vnumber=\"4\">For he cometh in with vanity, and departeth in darkness, and his name shall be covered with darkness.</VERS>\r\n      <VERS vnumber=\"5\">Moreover he hath not seen the sun, nor known any thing: this hath more rest than the other.</VERS>\r\n      <VERS vnumber=\"6\">Yea, though he live a thousand years twice told, yet hath he seen no good: do not all go to one place?</VERS>\r\n      <VERS vnumber=\"7\">All the labour of man is for his mouth, and yet the appetite is not filled.</VERS>\r\n      <VERS vnumber=\"8\">For what hath the wise more than the fool? what hath the poor, that knoweth to walk before the living?</VERS>\r\n      <VERS vnumber=\"9\">Better is the sight of the eyes than the wandering of the desire: this is also vanity and vexation of spirit.</VERS>\r\n      <VERS vnumber=\"10\">That 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.</VERS>\r\n      <VERS vnumber=\"11\">Seeing there be many things that increase vanity, what is man the better?</VERS>\r\n      <VERS vnumber=\"12\">For 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?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">A good name is better than precious ointment; and the day of death than the day of one's birth.</VERS>\r\n      <VERS vnumber=\"2\">It 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.</VERS>\r\n      <VERS vnumber=\"3\">Sorrow is better than laughter: for by the sadness of the countenance the heart is made better.</VERS>\r\n      <VERS vnumber=\"4\">The heart of the wise is in the house of mourning; but the heart of fools is in the house of mirth.</VERS>\r\n      <VERS vnumber=\"5\">It is better to hear the rebuke of the wise, than for a man to hear the song of fools.</VERS>\r\n      <VERS vnumber=\"6\">For as the crackling of thorns under a pot, so is the laughter of the fool: this also is vanity.</VERS>\r\n      <VERS vnumber=\"7\">Surely oppression maketh a wise man mad; and a gift destroyeth the heart.</VERS>\r\n      <VERS vnumber=\"8\">Better is the end of a thing than the beginning thereof: and the patient in spirit is better than the proud in spirit.</VERS>\r\n      <VERS vnumber=\"9\">Be not hasty in thy spirit to be angry: for anger resteth in the bosom of fools.</VERS>\r\n      <VERS vnumber=\"10\">Say not thou, What is the cause that the former days were better than these? for thou dost not enquire wisely concerning this.</VERS>\r\n      <VERS vnumber=\"11\">Wisdom is good with an inheritance: and by it there is profit to them that see the sun.</VERS>\r\n      <VERS vnumber=\"12\">For wisdom is a defence, and money is a defence: but the excellency of knowledge is, that wisdom giveth life to them that have it.</VERS>\r\n      <VERS vnumber=\"13\">Consider the work of God: for who can make that straight, which he hath made crooked?</VERS>\r\n      <VERS vnumber=\"14\">In 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.</VERS>\r\n      <VERS vnumber=\"15\">All 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.</VERS>\r\n      <VERS vnumber=\"16\">Be not righteous over much; neither make thyself over wise: why shouldest thou destroy thyself?</VERS>\r\n      <VERS vnumber=\"17\">Be not over much wicked, neither be thou foolish: why shouldest thou die before thy time?</VERS>\r\n      <VERS vnumber=\"18\">It 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.</VERS>\r\n      <VERS vnumber=\"19\">Wisdom strengtheneth the wise more than ten mighty men which are in the city.</VERS>\r\n      <VERS vnumber=\"20\">For there is not a just man upon earth, that doeth good, and sinneth not.</VERS>\r\n      <VERS vnumber=\"21\">Also take no heed unto all words that are spoken; lest thou hear thy servant curse thee:</VERS>\r\n      <VERS vnumber=\"22\">For oftentimes also thine own heart knoweth that thou thyself likewise hast cursed others.</VERS>\r\n      <VERS vnumber=\"23\">All this have I proved by wisdom: I said, I will be wise; but it was far from me.</VERS>\r\n      <VERS vnumber=\"24\">That which is far off, and exceeding deep, who can find it out?</VERS>\r\n      <VERS vnumber=\"25\">I 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:</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">Behold, this have I found, saith the preacher, counting one by one, to find out the account:</VERS>\r\n      <VERS vnumber=\"28\">Which 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.</VERS>\r\n      <VERS vnumber=\"29\">Lo, this only have I found, that God hath made man upright; but they have sought out many inventions.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">Who 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.</VERS>\r\n      <VERS vnumber=\"2\">I counsel thee to keep the king's commandment, and that in regard of the oath of God.</VERS>\r\n      <VERS vnumber=\"3\">Be not hasty to go out of his sight: stand not in an evil thing; for he doeth whatsoever pleaseth him.</VERS>\r\n      <VERS vnumber=\"4\">Where the word of a king is, there is power: and who may say unto him, What doest thou?</VERS>\r\n      <VERS vnumber=\"5\">Whoso keepeth the commandment shall feel no evil thing: and a wise man's heart discerneth both time and judgment.</VERS>\r\n      <VERS vnumber=\"6\">Because to every purpose there is time and judgment, therefore the misery of man is great upon him.</VERS>\r\n      <VERS vnumber=\"7\">For he knoweth not that which shall be: for who can tell him when it shall be?</VERS>\r\n      <VERS vnumber=\"8\">There 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.</VERS>\r\n      <VERS vnumber=\"9\">All 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">Because 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.</VERS>\r\n      <VERS vnumber=\"12\">Though 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:</VERS>\r\n      <VERS vnumber=\"13\">But 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.</VERS>\r\n      <VERS vnumber=\"14\">There 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.</VERS>\r\n      <VERS vnumber=\"15\">Then 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.</VERS>\r\n      <VERS vnumber=\"16\">When 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:)</VERS>\r\n      <VERS vnumber=\"17\">Then 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 further; though a wise man think to know it, yet shall he not be able to find it.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">For 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.</VERS>\r\n      <VERS vnumber=\"2\">All 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.</VERS>\r\n      <VERS vnumber=\"3\">This 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.</VERS>\r\n      <VERS vnumber=\"4\">For to him that is joined to all the living there is hope: for a living dog is better than a dead lion.</VERS>\r\n      <VERS vnumber=\"5\">For 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.</VERS>\r\n      <VERS vnumber=\"6\">Also 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.</VERS>\r\n      <VERS vnumber=\"7\">Go thy way, eat thy bread with joy, and drink thy wine with a merry heart; for God now accepteth thy works.</VERS>\r\n      <VERS vnumber=\"8\">Let thy garments be always white; and let thy head lack no ointment.</VERS>\r\n      <VERS vnumber=\"9\">Live 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.</VERS>\r\n      <VERS vnumber=\"10\">Whatsoever 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.</VERS>\r\n      <VERS vnumber=\"11\">I 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.</VERS>\r\n      <VERS vnumber=\"12\">For 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.</VERS>\r\n      <VERS vnumber=\"13\">This wisdom have I seen also under the sun, and it seemed great unto me:</VERS>\r\n      <VERS vnumber=\"14\">There 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:</VERS>\r\n      <VERS vnumber=\"15\">Now 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.</VERS>\r\n      <VERS vnumber=\"16\">Then said I, Wisdom is better than strength: nevertheless the poor man's wisdom is despised, and his words are not heard.</VERS>\r\n      <VERS vnumber=\"17\">The words of wise men are heard in quiet more than the cry of him that ruleth among fools.</VERS>\r\n      <VERS vnumber=\"18\">Wisdom is better than weapons of war: but one sinner destroyeth much good.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">Dead 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.</VERS>\r\n      <VERS vnumber=\"2\">A wise man's heart is at his right hand; but a fool's heart at his left.</VERS>\r\n      <VERS vnumber=\"3\">Yea 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.</VERS>\r\n      <VERS vnumber=\"4\">If the spirit of the ruler rise up against thee, leave not thy place; for yielding pacifieth great offences.</VERS>\r\n      <VERS vnumber=\"5\">There is an evil which I have seen under the sun, as an error which proceedeth from the ruler:</VERS>\r\n      <VERS vnumber=\"6\">Folly is set in great dignity, and the rich sit in low place.</VERS>\r\n      <VERS vnumber=\"7\">I have seen servants upon horses, and princes walking as servants upon the earth.</VERS>\r\n      <VERS vnumber=\"8\">He that diggeth a pit shall fall into it; and whoso breaketh an hedge, a serpent shall bite him.</VERS>\r\n      <VERS vnumber=\"9\">Whoso removeth stones shall be hurt therewith; and he that cleaveth wood shall be endangered thereby.</VERS>\r\n      <VERS vnumber=\"10\">If the iron be blunt, and he do not whet the edge, then must he put to more strength: but wisdom is profitable to direct.</VERS>\r\n      <VERS vnumber=\"11\">Surely the serpent will bite without enchantment; and a babbler is no better.</VERS>\r\n      <VERS vnumber=\"12\">The words of a wise man's mouth are gracious; but the lips of a fool will swallow up himself.</VERS>\r\n      <VERS vnumber=\"13\">The beginning of the words of his mouth is foolishness: and the end of his talk is mischievous madness.</VERS>\r\n      <VERS vnumber=\"14\">A fool also is full of words: a man cannot tell what shall be; and what shall be after him, who can tell him?</VERS>\r\n      <VERS vnumber=\"15\">The labour of the foolish wearieth every one of them, because he knoweth not how to go to the city.</VERS>\r\n      <VERS vnumber=\"16\">Woe to thee, O land, when thy king is a child, and thy princes eat in the morning!</VERS>\r\n      <VERS vnumber=\"17\">Blessed 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!</VERS>\r\n      <VERS vnumber=\"18\">By much slothfulness the building decayeth; and through idleness of the hands the house droppeth through.</VERS>\r\n      <VERS vnumber=\"19\">A feast is made for laughter, and wine maketh merry: but money answereth all things.</VERS>\r\n      <VERS vnumber=\"20\">Curse 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">Cast thy bread upon the waters: for thou shalt find it after many days.</VERS>\r\n      <VERS vnumber=\"2\">Give a portion to seven, and also to eight; for thou knowest not what evil shall be upon the earth.</VERS>\r\n      <VERS vnumber=\"3\">If 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.</VERS>\r\n      <VERS vnumber=\"4\">He that observeth the wind shall not sow; and he that regardeth the clouds shall not reap.</VERS>\r\n      <VERS vnumber=\"5\">As 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.</VERS>\r\n      <VERS vnumber=\"6\">In 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.</VERS>\r\n      <VERS vnumber=\"7\">Truly the light is sweet, and a pleasant thing it is for the eyes to behold the sun:</VERS>\r\n      <VERS vnumber=\"8\">But 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.</VERS>\r\n      <VERS vnumber=\"9\">Rejoice, 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.</VERS>\r\n      <VERS vnumber=\"10\">Therefore remove sorrow from thy heart, and put away evil from thy flesh: for childhood and youth are vanity.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">Remember 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;</VERS>\r\n      <VERS vnumber=\"2\">While the sun, or the light, or the moon, or the stars, be not darkened, nor the clouds return after the rain:</VERS>\r\n      <VERS vnumber=\"3\">In 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,</VERS>\r\n      <VERS vnumber=\"4\">And 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;</VERS>\r\n      <VERS vnumber=\"5\">Also 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:</VERS>\r\n      <VERS vnumber=\"6\">Or 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.</VERS>\r\n      <VERS vnumber=\"7\">Then shall the dust return to the earth as it was: and the spirit shall return unto God who gave it.</VERS>\r\n      <VERS vnumber=\"8\">Vanity of vanities, saith the preacher; all is vanity.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">The preacher sought to find out acceptable words: and that which was written was upright, even words of truth.</VERS>\r\n      <VERS vnumber=\"11\">The words of the wise are as goads, and as nails fastened by the masters of assemblies, which are given from one shepherd.</VERS>\r\n      <VERS vnumber=\"12\">And further, by these, my son, be admonished: of making many books there is no end; and much study is a weariness of the flesh.</VERS>\r\n      <VERS vnumber=\"13\">Let us hear the conclusion of the whole matter: Fear God, and keep his commandments: for this is the whole duty of man.</VERS>\r\n      <VERS vnumber=\"14\">For God shall bring every work into judgment, with every secret thing, whether it be good, or whether it be evil.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"22\" bname=\"Song of Solomon\" bsname=\"Song\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">The song of songs, which is Solomon's.</VERS>\r\n      <VERS vnumber=\"2\">Let him kiss me with the kisses of his mouth: for thy love is better than wine.</VERS>\r\n      <VERS vnumber=\"3\">Because of the savour of thy good ointments thy name is as ointment poured forth, therefore do the virgins love thee.</VERS>\r\n      <VERS vnumber=\"4\">Draw 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.</VERS>\r\n      <VERS vnumber=\"5\">I am black, but comely, O ye daughters of Jerusalem, as the tents of Kedar, as the curtains of Solomon.</VERS>\r\n      <VERS vnumber=\"6\">Look 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.</VERS>\r\n      <VERS vnumber=\"7\">Tell 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?</VERS>\r\n      <VERS vnumber=\"8\">If 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.</VERS>\r\n      <VERS vnumber=\"9\">I have compared thee, O my love, to a company of horses in Pharaoh's chariots.</VERS>\r\n      <VERS vnumber=\"10\">Thy cheeks are comely with rows of jewels, thy neck with chains of gold.</VERS>\r\n      <VERS vnumber=\"11\">We will make thee borders of gold with studs of silver.</VERS>\r\n      <VERS vnumber=\"12\">While the king sitteth at his table, my spikenard sendeth forth the smell thereof.</VERS>\r\n      <VERS vnumber=\"13\">A bundle of myrrh is my wellbeloved unto me; he shall lie all night betwixt my breasts.</VERS>\r\n      <VERS vnumber=\"14\">My beloved is unto me as a cluster of camphire in the vineyards of Engedi.</VERS>\r\n      <VERS vnumber=\"15\">Behold, thou art fair, my love; behold, thou art fair; thou hast doves' eyes.</VERS>\r\n      <VERS vnumber=\"16\">Behold, thou art fair, my beloved, yea, pleasant: also our bed is green.</VERS>\r\n      <VERS vnumber=\"17\">The beams of our house are cedar, and our rafters of fir.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">I am the rose of Sharon, and the lily of the valleys.</VERS>\r\n      <VERS vnumber=\"2\">As the lily among thorns, so is my love among the daughters.</VERS>\r\n      <VERS vnumber=\"3\">As 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.</VERS>\r\n      <VERS vnumber=\"4\">He brought me to the banqueting house, and his banner over me was love.</VERS>\r\n      <VERS vnumber=\"5\">Stay me with flagons, comfort me with apples: for I am sick of love.</VERS>\r\n      <VERS vnumber=\"6\">His left hand is under my head, and his right hand doth embrace me.</VERS>\r\n      <VERS vnumber=\"7\">I 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.</VERS>\r\n      <VERS vnumber=\"8\">The voice of my beloved! behold, he cometh leaping upon the mountains, skipping upon the hills.</VERS>\r\n      <VERS vnumber=\"9\">My 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.</VERS>\r\n      <VERS vnumber=\"10\">My beloved spake, and said unto me, Rise up, my love, my fair one, and come away.</VERS>\r\n      <VERS vnumber=\"11\">For, lo, the winter is past, the rain is over and gone;</VERS>\r\n      <VERS vnumber=\"12\">The 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;</VERS>\r\n      <VERS vnumber=\"13\">The 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.</VERS>\r\n      <VERS vnumber=\"14\">O 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.</VERS>\r\n      <VERS vnumber=\"15\">Take us the foxes, the little foxes, that spoil the vines: for our vines have tender grapes.</VERS>\r\n      <VERS vnumber=\"16\">My beloved is mine, and I am his: he feedeth among the lilies.</VERS>\r\n      <VERS vnumber=\"17\">Until 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">By night on my bed I sought him whom my soul loveth: I sought him, but I found him not.</VERS>\r\n      <VERS vnumber=\"2\">I 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.</VERS>\r\n      <VERS vnumber=\"3\">The watchmen that go about the city found me: to whom I said, Saw ye him whom my soul loveth?</VERS>\r\n      <VERS vnumber=\"4\">It 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.</VERS>\r\n      <VERS vnumber=\"5\">I 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.</VERS>\r\n      <VERS vnumber=\"6\">Who is this that cometh out of the wilderness like pillars of smoke, perfumed with myrrh and frankincense, with all powders of the merchant?</VERS>\r\n      <VERS vnumber=\"7\">Behold his bed, which is Solomon's; threescore valiant men are about it, of the valiant of Israel.</VERS>\r\n      <VERS vnumber=\"8\">They all hold swords, being expert in war: every man hath his sword upon his thigh because of fear in the night.</VERS>\r\n      <VERS vnumber=\"9\">King Solomon made himself a chariot of the wood of Lebanon.</VERS>\r\n      <VERS vnumber=\"10\">He 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.</VERS>\r\n      <VERS vnumber=\"11\">Go 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"2\">Thy 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.</VERS>\r\n      <VERS vnumber=\"3\">Thy lips are like a thread of scarlet, and thy speech is comely: thy temples are like a piece of a pomegranate within thy locks.</VERS>\r\n      <VERS vnumber=\"4\">Thy neck is like the tower of David builded for an armoury, whereon there hang a thousand bucklers, all shields of mighty men.</VERS>\r\n      <VERS vnumber=\"5\">Thy two breasts are like two young roes that are twins, which feed among the lilies.</VERS>\r\n      <VERS vnumber=\"6\">Until the day break, and the shadows flee away, I will get me to the mountain of myrrh, and to the hill of frankincense.</VERS>\r\n      <VERS vnumber=\"7\">Thou art all fair, my love; there is no spot in thee.</VERS>\r\n      <VERS vnumber=\"8\">Come 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.</VERS>\r\n      <VERS vnumber=\"9\">Thou hast ravished my heart, my sister, my spouse; thou hast ravished my heart with one of thine eyes, with one chain of thy neck.</VERS>\r\n      <VERS vnumber=\"10\">How 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!</VERS>\r\n      <VERS vnumber=\"11\">Thy 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.</VERS>\r\n      <VERS vnumber=\"12\">A garden inclosed is my sister, my spouse; a spring shut up, a fountain sealed.</VERS>\r\n      <VERS vnumber=\"13\">Thy plants are an orchard of pomegranates, with pleasant fruits; camphire, with spikenard,</VERS>\r\n      <VERS vnumber=\"14\">Spikenard and saffron; calamus and cinnamon, with all trees of frankincense; myrrh and aloes, with all the chief spices:</VERS>\r\n      <VERS vnumber=\"15\">A fountain of gardens, a well of living waters, and streams from Lebanon.</VERS>\r\n      <VERS vnumber=\"16\">Awake, 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">I 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.</VERS>\r\n      <VERS vnumber=\"2\">I 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.</VERS>\r\n      <VERS vnumber=\"3\">I have put off my coat; how shall I put it on? I have washed my feet; how shall I defile them?</VERS>\r\n      <VERS vnumber=\"4\">My beloved put in his hand by the hole of the door, and my bowels were moved for him.</VERS>\r\n      <VERS vnumber=\"5\">I 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.</VERS>\r\n      <VERS vnumber=\"6\">I 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.</VERS>\r\n      <VERS vnumber=\"7\">The 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.</VERS>\r\n      <VERS vnumber=\"8\">I charge you, O daughters of Jerusalem, if ye find my beloved, that ye tell him, that I am sick of love.</VERS>\r\n      <VERS vnumber=\"9\">What 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?</VERS>\r\n      <VERS vnumber=\"10\">My beloved is white and ruddy, the chiefest among ten thousand.</VERS>\r\n      <VERS vnumber=\"11\">His head is as the most fine gold, his locks are bushy, and black as a raven.</VERS>\r\n      <VERS vnumber=\"12\">His eyes are as the eyes of doves by the rivers of waters, washed with milk, and fitly set.</VERS>\r\n      <VERS vnumber=\"13\">His cheeks are as a bed of spices, as sweet flowers: his lips like lilies, dropping sweet smelling myrrh.</VERS>\r\n      <VERS vnumber=\"14\">His hands are as gold rings set with the beryl: his belly is as bright ivory overlaid with sapphires.</VERS>\r\n      <VERS vnumber=\"15\">His legs are as pillars of marble, set upon sockets of fine gold: his countenance is as Lebanon, excellent as the cedars.</VERS>\r\n      <VERS vnumber=\"16\">His mouth is most sweet: yea, he is altogether lovely. This is my beloved, and this is my friend, O daughters of Jerusalem.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">Whither is thy beloved gone, O thou fairest among women? whither is thy beloved turned aside? that we may seek him with thee.</VERS>\r\n      <VERS vnumber=\"2\">My beloved is gone down into his garden, to the beds of spices, to feed in the gardens, and to gather lilies.</VERS>\r\n      <VERS vnumber=\"3\">I am my beloved's, and my beloved is mine: he feedeth among the lilies.</VERS>\r\n      <VERS vnumber=\"4\">Thou art beautiful, O my love, as Tirzah, comely as Jerusalem, terrible as an army with banners.</VERS>\r\n      <VERS vnumber=\"5\">Turn away thine eyes from me, for they have overcome me: thy hair is as a flock of goats that appear from Gilead.</VERS>\r\n      <VERS vnumber=\"6\">Thy 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.</VERS>\r\n      <VERS vnumber=\"7\">As a piece of a pomegranate are thy temples within thy locks.</VERS>\r\n      <VERS vnumber=\"8\">There are threescore queens, and fourscore concubines, and virgins without number.</VERS>\r\n      <VERS vnumber=\"9\">My 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.</VERS>\r\n      <VERS vnumber=\"10\">Who is she that looketh forth as the morning, fair as the moon, clear as the sun, and terrible as an army with banners?</VERS>\r\n      <VERS vnumber=\"11\">I 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.</VERS>\r\n      <VERS vnumber=\"12\">Or ever I was aware, my soul made me like the chariots of Amminadib.</VERS>\r\n      <VERS vnumber=\"13\">Return, 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">How 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.</VERS>\r\n      <VERS vnumber=\"2\">Thy navel is like a round goblet, which wanteth not liquor: thy belly is like an heap of wheat set about with lilies.</VERS>\r\n      <VERS vnumber=\"3\">Thy two breasts are like two young roes that are twins.</VERS>\r\n      <VERS vnumber=\"4\">Thy 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.</VERS>\r\n      <VERS vnumber=\"5\">Thine head upon thee is like Carmel, and the hair of thine head like purple; the king is held in the galleries.</VERS>\r\n      <VERS vnumber=\"6\">How fair and how pleasant art thou, O love, for delights!</VERS>\r\n      <VERS vnumber=\"7\">This thy stature is like to a palm tree, and thy breasts to clusters of grapes.</VERS>\r\n      <VERS vnumber=\"8\">I 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;</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">I am my beloved's, and his desire is toward me.</VERS>\r\n      <VERS vnumber=\"11\">Come, my beloved, let us go forth into the field; let us lodge in the villages.</VERS>\r\n      <VERS vnumber=\"12\">Let 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.</VERS>\r\n      <VERS vnumber=\"13\">The 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">O 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.</VERS>\r\n      <VERS vnumber=\"2\">I 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.</VERS>\r\n      <VERS vnumber=\"3\">His left hand should be under my head, and his right hand should embrace me.</VERS>\r\n      <VERS vnumber=\"4\">I charge you, O daughters of Jerusalem, that ye stir not up, nor awake my love, until he please.</VERS>\r\n      <VERS vnumber=\"5\">Who 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.</VERS>\r\n      <VERS vnumber=\"6\">Set 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.</VERS>\r\n      <VERS vnumber=\"7\">Many 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.</VERS>\r\n      <VERS vnumber=\"8\">We 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?</VERS>\r\n      <VERS vnumber=\"9\">If 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.</VERS>\r\n      <VERS vnumber=\"10\">I am a wall, and my breasts like towers: then was I in his eyes as one that found favour.</VERS>\r\n      <VERS vnumber=\"11\">Solomon 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.</VERS>\r\n      <VERS vnumber=\"12\">My vineyard, which is mine, is before me: thou, O Solomon, must have a thousand, and those that keep the fruit thereof two hundred.</VERS>\r\n      <VERS vnumber=\"13\">Thou that dwellest in the gardens, the companions hearken to thy voice: cause me to hear it.</VERS>\r\n      <VERS vnumber=\"14\">Make haste, my beloved, and be thou like to a roe or to a young hart upon the mountains of spices.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"23\" bname=\"Isaiah\" bsname=\"Isa\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">The 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.</VERS>\r\n      <VERS vnumber=\"2\">Hear, 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.</VERS>\r\n      <VERS vnumber=\"3\">The ox knoweth his owner, and the ass his master's crib: but Israel doth not know, my people doth not consider.</VERS>\r\n      <VERS vnumber=\"4\">Ah 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.</VERS>\r\n      <VERS vnumber=\"5\">Why should ye be stricken any more? ye will revolt more and more: the whole head is sick, and the whole heart faint.</VERS>\r\n      <VERS vnumber=\"6\">From 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.</VERS>\r\n      <VERS vnumber=\"7\">Your 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.</VERS>\r\n      <VERS vnumber=\"8\">And the daughter of Zion is left as a cottage in a vineyard, as a lodge in a garden of cucumbers, as a besieged city.</VERS>\r\n      <VERS vnumber=\"9\">Except 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.</VERS>\r\n      <VERS vnumber=\"10\">Hear the word of the LORD, ye rulers of Sodom; give ear unto the law of our God, ye people of Gomorrah.</VERS>\r\n      <VERS vnumber=\"11\">To 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.</VERS>\r\n      <VERS vnumber=\"12\">When ye come to appear before me, who hath required this at your hand, to tread my courts?</VERS>\r\n      <VERS vnumber=\"13\">Bring 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.</VERS>\r\n      <VERS vnumber=\"14\">Your new moons and your appointed feasts my soul hateth: they are a trouble unto me; I am weary to bear them.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">Wash you, make you clean; put away the evil of your doings from before mine eyes; cease to do evil;</VERS>\r\n      <VERS vnumber=\"17\">Learn to do well; seek judgment, relieve the oppressed, judge the fatherless, plead for the widow.</VERS>\r\n      <VERS vnumber=\"18\">Come 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.</VERS>\r\n      <VERS vnumber=\"19\">If ye be willing and obedient, ye shall eat the good of the land:</VERS>\r\n      <VERS vnumber=\"20\">But if ye refuse and rebel, ye shall be devoured with the sword: for the mouth of the LORD hath spoken it.</VERS>\r\n      <VERS vnumber=\"21\">How is the faithful city become an harlot! it was full of judgment; righteousness lodged in it; but now murderers.</VERS>\r\n      <VERS vnumber=\"22\">Thy silver is become dross, thy wine mixed with water:</VERS>\r\n      <VERS vnumber=\"23\">Thy 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.</VERS>\r\n      <VERS vnumber=\"24\">Therefore 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:</VERS>\r\n      <VERS vnumber=\"25\">And I will turn my hand upon thee, and purely purge away thy dross, and take away all thy tin:</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">Zion shall be redeemed with judgment, and her converts with righteousness.</VERS>\r\n      <VERS vnumber=\"28\">And the destruction of the transgressors and of the sinners shall be together, and they that forsake the LORD shall be consumed.</VERS>\r\n      <VERS vnumber=\"29\">For they shall be ashamed of the oaks which ye have desired, and ye shall be confounded for the gardens that ye have chosen.</VERS>\r\n      <VERS vnumber=\"30\">For ye shall be as an oak whose leaf fadeth, and as a garden that hath no water.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">The word that Isaiah the son of Amoz saw concerning Judah and Jerusalem.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">O house of Jacob, come ye, and let us walk in the light of the LORD.</VERS>\r\n      <VERS vnumber=\"6\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"7\">Their 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:</VERS>\r\n      <VERS vnumber=\"8\">Their land also is full of idols; they worship the work of their own hands, that which their own fingers have made:</VERS>\r\n      <VERS vnumber=\"9\">And the mean man boweth down, and the great man humbleth himself: therefore forgive them not.</VERS>\r\n      <VERS vnumber=\"10\">Enter into the rock, and hide thee in the dust, for fear of the LORD, and for the glory of his majesty.</VERS>\r\n      <VERS vnumber=\"11\">The 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.</VERS>\r\n      <VERS vnumber=\"12\">For 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:</VERS>\r\n      <VERS vnumber=\"13\">And upon all the cedars of Lebanon, that are high and lifted up, and upon all the oaks of Bashan,</VERS>\r\n      <VERS vnumber=\"14\">And upon all the high mountains, and upon all the hills that are lifted up,</VERS>\r\n      <VERS vnumber=\"15\">And upon every high tower, and upon every fenced wall,</VERS>\r\n      <VERS vnumber=\"16\">And upon all the ships of Tarshish, and upon all pleasant pictures.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And the idols he shall utterly abolish.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">In 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;</VERS>\r\n      <VERS vnumber=\"21\">To 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.</VERS>\r\n      <VERS vnumber=\"22\">Cease ye from man, whose breath is in his nostrils: for wherein is he to be accounted of?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">For, 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,</VERS>\r\n      <VERS vnumber=\"2\">The mighty man, and the man of war, the judge, and the prophet, and the prudent, and the ancient,</VERS>\r\n      <VERS vnumber=\"3\">The captain of fifty, and the honourable man, and the counsellor, and the cunning artificer, and the eloquent orator.</VERS>\r\n      <VERS vnumber=\"4\">And I will give children to be their princes, and babes shall rule over them.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">When 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:</VERS>\r\n      <VERS vnumber=\"7\">In 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.</VERS>\r\n      <VERS vnumber=\"8\">For Jerusalem is ruined, and Judah is fallen: because their tongue and their doings are against the LORD, to provoke the eyes of his glory.</VERS>\r\n      <VERS vnumber=\"9\">The 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.</VERS>\r\n      <VERS vnumber=\"10\">Say ye to the righteous, that it shall be well with him: for they shall eat the fruit of their doings.</VERS>\r\n      <VERS vnumber=\"11\">Woe unto the wicked! it shall be ill with him: for the reward of his hands shall be given him.</VERS>\r\n      <VERS vnumber=\"12\">As 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.</VERS>\r\n      <VERS vnumber=\"13\">The LORD standeth up to plead, and standeth to judge the people.</VERS>\r\n      <VERS vnumber=\"14\">The 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.</VERS>\r\n      <VERS vnumber=\"15\">What mean ye that ye beat my people to pieces, and grind the faces of the poor? saith the Lord GOD of hosts.</VERS>\r\n      <VERS vnumber=\"16\">Moreover 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:</VERS>\r\n      <VERS vnumber=\"17\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"18\">In 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,</VERS>\r\n      <VERS vnumber=\"19\">The chains, and the bracelets, and the mufflers,</VERS>\r\n      <VERS vnumber=\"20\">The bonnets, and the ornaments of the legs, and the headbands, and the tablets, and the earrings,</VERS>\r\n      <VERS vnumber=\"21\">The rings, and nose jewels,</VERS>\r\n      <VERS vnumber=\"22\">The changeable suits of apparel, and the mantles, and the wimples, and the crisping pins,</VERS>\r\n      <VERS vnumber=\"23\">The glasses, and the fine linen, and the hoods, and the vails.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">Thy men shall fall by the sword, and thy mighty in the war.</VERS>\r\n      <VERS vnumber=\"26\">And her gates shall lament and mourn; and she being desolate shall sit upon the ground.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">In 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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:</VERS>\r\n      <VERS vnumber=\"4\">When 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And there shall be a tabernacle for a shadow in the daytime from the heat, and for a place of refuge, and for a covert from storm and from rain.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">Now will I sing to my wellbeloved a song of my beloved touching his vineyard. My wellbeloved hath a vineyard in a very fruitful hill:</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And now, O inhabitants of Jerusalem, and men of Judah, judge, I pray you, betwixt me and my vineyard.</VERS>\r\n      <VERS vnumber=\"4\">What 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?</VERS>\r\n      <VERS vnumber=\"5\">And 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:</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">For 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.</VERS>\r\n      <VERS vnumber=\"8\">Woe 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!</VERS>\r\n      <VERS vnumber=\"9\">In mine ears said the LORD of hosts, Of a truth many houses shall be desolate, even great and fair, without inhabitant.</VERS>\r\n      <VERS vnumber=\"10\">Yea, ten acres of vineyard shall yield one bath, and the seed of an homer shall yield an ephah.</VERS>\r\n      <VERS vnumber=\"11\">Woe unto them that rise up early in the morning, that they may follow strong drink; that continue until night, till wine inflame them!</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">Therefore my people are gone into captivity, because they have no knowledge: and their honourable men are famished, and their multitude dried up with thirst.</VERS>\r\n      <VERS vnumber=\"14\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"15\">And the mean man shall be brought down, and the mighty man shall be humbled, and the eyes of the lofty shall be humbled:</VERS>\r\n      <VERS vnumber=\"16\">But the LORD of hosts shall be exalted in judgment, and God that is holy shall be sanctified in righteousness.</VERS>\r\n      <VERS vnumber=\"17\">Then shall the lambs feed after their manner, and the waste places of the fat ones shall strangers eat.</VERS>\r\n      <VERS vnumber=\"18\">Woe unto them that draw iniquity with cords of vanity, and sin as it were with a cart rope:</VERS>\r\n      <VERS vnumber=\"19\">That 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!</VERS>\r\n      <VERS vnumber=\"20\">Woe 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!</VERS>\r\n      <VERS vnumber=\"21\">Woe unto them that are wise in their own eyes, and prudent in their own sight!</VERS>\r\n      <VERS vnumber=\"22\">Woe unto them that are mighty to drink wine, and men of strength to mingle strong drink:</VERS>\r\n      <VERS vnumber=\"23\">Which justify the wicked for reward, and take away the righteousness of the righteous from him!</VERS>\r\n      <VERS vnumber=\"24\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"25\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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:</VERS>\r\n      <VERS vnumber=\"27\">None 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:</VERS>\r\n      <VERS vnumber=\"28\">Whose arrows are sharp, and all their bows bent, their horses' hoofs shall be counted like flint, and their wheels like a whirlwind:</VERS>\r\n      <VERS vnumber=\"29\">Their 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.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">In 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.</VERS>\r\n      <VERS vnumber=\"2\">Above 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.</VERS>\r\n      <VERS vnumber=\"3\">And one cried unto another, and said, Holy, holy, holy, is the LORD of hosts: the whole earth is full of his glory.</VERS>\r\n      <VERS vnumber=\"4\">And the posts of the door moved at the voice of him that cried, and the house was filled with smoke.</VERS>\r\n      <VERS vnumber=\"5\">Then 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.</VERS>\r\n      <VERS vnumber=\"6\">Then 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:</VERS>\r\n      <VERS vnumber=\"7\">And he laid it upon my mouth, and said, Lo, this hath touched thy lips; and thine iniquity is taken away, and thy sin purged.</VERS>\r\n      <VERS vnumber=\"8\">Also 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.</VERS>\r\n      <VERS vnumber=\"9\">And he said, Go, and tell this people, Hear ye indeed, but understand not; and see ye indeed, but perceive not.</VERS>\r\n      <VERS vnumber=\"10\">Make 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.</VERS>\r\n      <VERS vnumber=\"11\">Then 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,</VERS>\r\n      <VERS vnumber=\"12\">And the LORD have removed men far away, and there be a great forsaking in the midst of the land.</VERS>\r\n      <VERS vnumber=\"13\">But 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">Then 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;</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">Because Syria, Ephraim, and the son of Remaliah, have taken evil counsel against thee, saying,</VERS>\r\n      <VERS vnumber=\"6\">Let 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:</VERS>\r\n      <VERS vnumber=\"7\">Thus saith the Lord GOD, It shall not stand, neither shall it come to pass.</VERS>\r\n      <VERS vnumber=\"8\">For 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">Moreover the LORD spake again unto Ahaz, saying,</VERS>\r\n      <VERS vnumber=\"11\">Ask thee a sign of the LORD thy God; ask it either in the depth, or in the height above.</VERS>\r\n      <VERS vnumber=\"12\">But Ahaz said, I will not ask, neither will I tempt the LORD.</VERS>\r\n      <VERS vnumber=\"13\">And 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?</VERS>\r\n      <VERS vnumber=\"14\">Therefore the Lord himself shall give you a sign; Behold, a virgin shall conceive, and bear a son, and shall call his name Immanuel.</VERS>\r\n      <VERS vnumber=\"15\">Butter and honey shall he eat, that he may know to refuse the evil, and choose the good.</VERS>\r\n      <VERS vnumber=\"16\">For 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.</VERS>\r\n      <VERS vnumber=\"17\">The 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">In 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.</VERS>\r\n      <VERS vnumber=\"21\">And it shall come to pass in that day, that a man shall nourish a young cow, and two sheep;</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">With arrows and with bows shall men come thither; because all the land shall become briers and thorns.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">Moreover the LORD said unto me, Take thee a great roll, and write in it with a man's pen concerning Mahershalalhashbaz.</VERS>\r\n      <VERS vnumber=\"2\">And I took unto me faithful witnesses to record, Uriah the priest, and Zechariah the son of Jeberechiah.</VERS>\r\n      <VERS vnumber=\"3\">And I went unto the prophetess; and she conceived, and bare a son. Then said the LORD to me, Call his name Mahershalalhashbaz.</VERS>\r\n      <VERS vnumber=\"4\">For 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.</VERS>\r\n      <VERS vnumber=\"5\">The LORD spake also unto me again, saying,</VERS>\r\n      <VERS vnumber=\"6\">Forasmuch as this people refuseth the waters of Shiloah that go softly, and rejoice in Rezin and Remaliah's son;</VERS>\r\n      <VERS vnumber=\"7\">Now 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:</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">Associate 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.</VERS>\r\n      <VERS vnumber=\"10\">Take counsel together, and it shall come to nought; speak the word, and it shall not stand: for God is with us.</VERS>\r\n      <VERS vnumber=\"11\">For 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,</VERS>\r\n      <VERS vnumber=\"12\">Say ye not, A confederacy, to all them to whom this people shall say, A confederacy; neither fear ye their fear, nor be afraid.</VERS>\r\n      <VERS vnumber=\"13\">Sanctify the LORD of hosts himself; and let him be your fear, and let him be your dread.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And many among them shall stumble, and fall, and be broken, and be snared, and be taken.</VERS>\r\n      <VERS vnumber=\"16\">Bind up the testimony, seal the law among my disciples.</VERS>\r\n      <VERS vnumber=\"17\">And I will wait upon the LORD, that hideth his face from the house of Jacob, and I will look for him.</VERS>\r\n      <VERS vnumber=\"18\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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?</VERS>\r\n      <VERS vnumber=\"20\">To the law and to the testimony: if they speak not according to this word, it is because there is no light in them.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And they shall look unto the earth; and behold trouble and darkness, dimness of anguish; and they shall be driven to darkness.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">Nevertheless 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.</VERS>\r\n      <VERS vnumber=\"2\">The 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.</VERS>\r\n      <VERS vnumber=\"3\">Thou 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.</VERS>\r\n      <VERS vnumber=\"4\">For 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.</VERS>\r\n      <VERS vnumber=\"5\">For every battle of the warrior is with confused noise, and garments rolled in blood; but this shall be with burning and fuel of fire.</VERS>\r\n      <VERS vnumber=\"6\">For 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.</VERS>\r\n      <VERS vnumber=\"7\">Of 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.</VERS>\r\n      <VERS vnumber=\"8\">The Lord sent a word into Jacob, and it hath lighted upon Israel.</VERS>\r\n      <VERS vnumber=\"9\">And all the people shall know, even Ephraim and the inhabitant of Samaria, that say in the pride and stoutness of heart,</VERS>\r\n      <VERS vnumber=\"10\">The bricks are fallen down, but we will build with hewn stones: the sycomores are cut down, but we will change them into cedars.</VERS>\r\n      <VERS vnumber=\"11\">Therefore the LORD shall set up the adversaries of Rezin against him, and join his enemies together;</VERS>\r\n      <VERS vnumber=\"12\">The 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.</VERS>\r\n      <VERS vnumber=\"13\">For the people turneth not unto him that smiteth them, neither do they seek the LORD of hosts.</VERS>\r\n      <VERS vnumber=\"14\">Therefore the LORD will cut off from Israel head and tail, branch and rush, in one day.</VERS>\r\n      <VERS vnumber=\"15\">The ancient and honourable, he is the head; and the prophet that teacheth lies, he is the tail.</VERS>\r\n      <VERS vnumber=\"16\">For the leaders of this people cause them to err; and they that are led of them are destroyed.</VERS>\r\n      <VERS vnumber=\"17\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"18\">For 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.</VERS>\r\n      <VERS vnumber=\"19\">Through 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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:</VERS>\r\n      <VERS vnumber=\"21\">Manasseh, 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">Woe unto them that decree unrighteous decrees, and that write grievousness which they have prescribed;</VERS>\r\n      <VERS vnumber=\"2\">To 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!</VERS>\r\n      <VERS vnumber=\"3\">And 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?</VERS>\r\n      <VERS vnumber=\"4\">Without 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.</VERS>\r\n      <VERS vnumber=\"5\">O Assyrian, the rod of mine anger, and the staff in their hand is mine indignation.</VERS>\r\n      <VERS vnumber=\"6\">I 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.</VERS>\r\n      <VERS vnumber=\"7\">Howbeit 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.</VERS>\r\n      <VERS vnumber=\"8\">For he saith, Are not my princes altogether kings?</VERS>\r\n      <VERS vnumber=\"9\">Is not Calno as Carchemish? is not Hamath as Arpad? is not Samaria as Damascus?</VERS>\r\n      <VERS vnumber=\"10\">As my hand hath found the kingdoms of the idols, and whose graven images did excel them of Jerusalem and of Samaria;</VERS>\r\n      <VERS vnumber=\"11\">Shall I not, as I have done unto Samaria and her idols, so do to Jerusalem and her idols?</VERS>\r\n      <VERS vnumber=\"12\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"13\">For 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:</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">Shall 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.</VERS>\r\n      <VERS vnumber=\"16\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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;</VERS>\r\n      <VERS vnumber=\"18\">And shall consume the glory of his forest, and of his fruitful field, both soul and body: and they shall be as when a standardbearer fainteth.</VERS>\r\n      <VERS vnumber=\"19\">And the rest of the trees of his forest shall be few, that a child may write them.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">The remnant shall return, even the remnant of Jacob, unto the mighty God.</VERS>\r\n      <VERS vnumber=\"22\">For 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.</VERS>\r\n      <VERS vnumber=\"23\">For the Lord GOD of hosts shall make a consumption, even determined, in the midst of all the land.</VERS>\r\n      <VERS vnumber=\"24\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"25\">For yet a very little while, and the indignation shall cease, and mine anger in their destruction.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">He is come to Aiath, he is passed to Migron; at Michmash he hath laid up his carriages:</VERS>\r\n      <VERS vnumber=\"29\">They are gone over the passage: they have taken up their lodging at Geba; Ramah is afraid; Gibeah of Saul is fled.</VERS>\r\n      <VERS vnumber=\"30\">Lift up thy voice, O daughter of Gallim: cause it to be heard unto Laish, O poor Anathoth.</VERS>\r\n      <VERS vnumber=\"31\">Madmenah is removed; the inhabitants of Gebim gather themselves to flee.</VERS>\r\n      <VERS vnumber=\"32\">As 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.</VERS>\r\n      <VERS vnumber=\"33\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"34\">And he shall cut down the thickets of the forest with iron, and Lebanon shall fall by a mighty one.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">And there shall come forth a rod out of the stem of Jesse, and a Branch shall grow out of his roots:</VERS>\r\n      <VERS vnumber=\"2\">And 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;</VERS>\r\n      <VERS vnumber=\"3\">And 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:</VERS>\r\n      <VERS vnumber=\"4\">But 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.</VERS>\r\n      <VERS vnumber=\"5\">And righteousness shall be the girdle of his loins, and faithfulness the girdle of his reins.</VERS>\r\n      <VERS vnumber=\"6\">The 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.</VERS>\r\n      <VERS vnumber=\"7\">And the cow and the bear shall feed; their young ones shall lie down together: and the lion shall eat straw like the ox.</VERS>\r\n      <VERS vnumber=\"8\">And the sucking child shall play on the hole of the asp, and the weaned child shall put his hand on the cockatrice' den.</VERS>\r\n      <VERS vnumber=\"9\">They 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">The 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.</VERS>\r\n      <VERS vnumber=\"14\">But 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"3\">Therefore with joy shall ye draw water out of the wells of salvation.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">Sing unto the LORD; for he hath done excellent things: this is known in all the earth.</VERS>\r\n      <VERS vnumber=\"6\">Cry out and shout, thou inhabitant of Zion: for great is the Holy One of Israel in the midst of thee.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">The burden of Babylon, which Isaiah the son of Amoz did see.</VERS>\r\n      <VERS vnumber=\"2\">Lift 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.</VERS>\r\n      <VERS vnumber=\"3\">I have commanded my sanctified ones, I have also called my mighty ones for mine anger, even them that rejoice in my highness.</VERS>\r\n      <VERS vnumber=\"4\">The 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.</VERS>\r\n      <VERS vnumber=\"5\">They come from a far country, from the end of heaven, even the LORD, and the weapons of his indignation, to destroy the whole land.</VERS>\r\n      <VERS vnumber=\"6\">Howl ye; for the day of the LORD is at hand; it shall come as a destruction from the Almighty.</VERS>\r\n      <VERS vnumber=\"7\">Therefore shall all hands be faint, and every man's heart shall melt:</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"10\">For 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">I will make a man more precious than fine gold; even a man than the golden wedge of Ophir.</VERS>\r\n      <VERS vnumber=\"13\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">Every one that is found shall be thrust through; and every one that is joined unto them shall fall by the sword.</VERS>\r\n      <VERS vnumber=\"16\">Their children also shall be dashed to pieces before their eyes; their houses shall be spoiled, and their wives ravished.</VERS>\r\n      <VERS vnumber=\"17\">Behold, I will stir up the Medes against them, which shall not regard silver; and as for gold, they shall not delight in it.</VERS>\r\n      <VERS vnumber=\"18\">Their bows also shall dash the young men to pieces; and they shall have no pity on the fruit of the womb; their eye shall not spare children.</VERS>\r\n      <VERS vnumber=\"19\">And Babylon, the glory of kingdoms, the beauty of the Chaldees' excellency, shall be as when God overthrew Sodom and Gomorrah.</VERS>\r\n      <VERS vnumber=\"20\">It 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.</VERS>\r\n      <VERS vnumber=\"21\">But 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.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">For 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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,</VERS>\r\n      <VERS vnumber=\"4\">That thou shalt take up this proverb against the king of Babylon, and say, How hath the oppressor ceased! the golden city ceased!</VERS>\r\n      <VERS vnumber=\"5\">The LORD hath broken the staff of the wicked, and the sceptre of the rulers.</VERS>\r\n      <VERS vnumber=\"6\">He who smote the people in wrath with a continual stroke, he that ruled the nations in anger, is persecuted, and none hindereth.</VERS>\r\n      <VERS vnumber=\"7\">The whole earth is at rest, and is quiet: they break forth into singing.</VERS>\r\n      <VERS vnumber=\"8\">Yea, the fir trees rejoice at thee, and the cedars of Lebanon, saying, Since thou art laid down, no feller is come up against us.</VERS>\r\n      <VERS vnumber=\"9\">Hell 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.</VERS>\r\n      <VERS vnumber=\"10\">All they shall speak and say unto thee, Art thou also become weak as we? art thou become like unto us?</VERS>\r\n      <VERS vnumber=\"11\">Thy pomp is brought down to the grave, and the noise of thy viols: the worm is spread under thee, and the worms cover thee.</VERS>\r\n      <VERS vnumber=\"12\">How art thou fallen from heaven, O Lucifer, son of the morning! how art thou cut down to the ground, which didst weaken the nations!</VERS>\r\n      <VERS vnumber=\"13\">For 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:</VERS>\r\n      <VERS vnumber=\"14\">I will ascend above the heights of the clouds; I will be like the most High.</VERS>\r\n      <VERS vnumber=\"15\">Yet thou shalt be brought down to hell, to the sides of the pit.</VERS>\r\n      <VERS vnumber=\"16\">They 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;</VERS>\r\n      <VERS vnumber=\"17\">That made the world as a wilderness, and destroyed the cities thereof; that opened not the house of his prisoners?</VERS>\r\n      <VERS vnumber=\"18\">All the kings of the nations, even all of them, lie in glory, every one in his own house.</VERS>\r\n      <VERS vnumber=\"19\">But 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.</VERS>\r\n      <VERS vnumber=\"20\">Thou 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.</VERS>\r\n      <VERS vnumber=\"21\">Prepare 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.</VERS>\r\n      <VERS vnumber=\"22\">For 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.</VERS>\r\n      <VERS vnumber=\"23\">I 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.</VERS>\r\n      <VERS vnumber=\"24\">The 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:</VERS>\r\n      <VERS vnumber=\"25\">That 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.</VERS>\r\n      <VERS vnumber=\"26\">This is the purpose that is purposed upon the whole earth: and this is the hand that is stretched out upon all the nations.</VERS>\r\n      <VERS vnumber=\"27\">For the LORD of hosts hath purposed, and who shall disannul it? and his hand is stretched out, and who shall turn it back?</VERS>\r\n      <VERS vnumber=\"28\">In the year that king Ahaz died was this burden.</VERS>\r\n      <VERS vnumber=\"29\">Rejoice 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.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">Howl, 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.</VERS>\r\n      <VERS vnumber=\"32\">What 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">The 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;</VERS>\r\n      <VERS vnumber=\"2\">He 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.</VERS>\r\n      <VERS vnumber=\"3\">In their streets they shall gird themselves with sackcloth: on the tops of their houses, and in their streets, every one shall howl, weeping abundantly.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">My 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.</VERS>\r\n      <VERS vnumber=\"6\">For the waters of Nimrim shall be desolate: for the hay is withered away, the grass faileth, there is no green thing.</VERS>\r\n      <VERS vnumber=\"7\">Therefore the abundance they have gotten, and that which they have laid up, shall they carry away to the brook of the willows.</VERS>\r\n      <VERS vnumber=\"8\">For the cry is gone round about the borders of Moab; the howling thereof unto Eglaim, and the howling thereof unto Beerelim.</VERS>\r\n      <VERS vnumber=\"9\">For 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">Send ye the lamb to the ruler of the land from Sela to the wilderness, unto the mount of the daughter of Zion.</VERS>\r\n      <VERS vnumber=\"2\">For 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.</VERS>\r\n      <VERS vnumber=\"3\">Take counsel, execute judgment; make thy shadow as the night in the midst of the noonday; hide the outcasts; bewray not him that wandereth.</VERS>\r\n      <VERS vnumber=\"4\">Let 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">We 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.</VERS>\r\n      <VERS vnumber=\"7\">Therefore shall Moab howl for Moab, every one shall howl: for the foundations of Kirhareseth shall ye mourn; surely they are stricken.</VERS>\r\n      <VERS vnumber=\"8\">For 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.</VERS>\r\n      <VERS vnumber=\"9\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">Wherefore my bowels shall sound like an harp for Moab, and mine inward parts for Kirharesh.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">This is the word that the LORD hath spoken concerning Moab since that time.</VERS>\r\n      <VERS vnumber=\"14\">But 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"17\">\r\n      <VERS vnumber=\"1\">The burden of Damascus. Behold, Damascus is taken away from being a city, and it shall be a ruinous heap.</VERS>\r\n      <VERS vnumber=\"2\">The cities of Aroer are forsaken: they shall be for flocks, which shall lie down, and none shall make them afraid.</VERS>\r\n      <VERS vnumber=\"3\">The 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">Yet 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.</VERS>\r\n      <VERS vnumber=\"7\">At that day shall a man look to his Maker, and his eyes shall have respect to the Holy One of Israel.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">In 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.</VERS>\r\n      <VERS vnumber=\"10\">Because 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:</VERS>\r\n      <VERS vnumber=\"11\">In 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.</VERS>\r\n      <VERS vnumber=\"12\">Woe 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!</VERS>\r\n      <VERS vnumber=\"13\">The 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"18\">\r\n      <VERS vnumber=\"1\">Woe to the land shadowing with wings, which is beyond the rivers of Ethiopia:</VERS>\r\n      <VERS vnumber=\"2\">That 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!</VERS>\r\n      <VERS vnumber=\"3\">All 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.</VERS>\r\n      <VERS vnumber=\"4\">For 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.</VERS>\r\n      <VERS vnumber=\"5\">For 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.</VERS>\r\n      <VERS vnumber=\"6\">They 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.</VERS>\r\n      <VERS vnumber=\"7\">In 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"19\">\r\n      <VERS vnumber=\"1\">The 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And the waters shall fail from the sea, and the river shall be wasted and dried up.</VERS>\r\n      <VERS vnumber=\"6\">And they shall turn the rivers far away; and the brooks of defence shall be emptied and dried up: the reeds and flags shall wither.</VERS>\r\n      <VERS vnumber=\"7\">The 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.</VERS>\r\n      <VERS vnumber=\"8\">The 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.</VERS>\r\n      <VERS vnumber=\"9\">Moreover they that work in fine flax, and they that weave networks, shall be confounded.</VERS>\r\n      <VERS vnumber=\"10\">And they shall be broken in the purposes thereof, all that make sluices and ponds for fish.</VERS>\r\n      <VERS vnumber=\"11\">Surely 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?</VERS>\r\n      <VERS vnumber=\"12\">Where 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.</VERS>\r\n      <VERS vnumber=\"13\">The 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.</VERS>\r\n      <VERS vnumber=\"14\">The 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.</VERS>\r\n      <VERS vnumber=\"15\">Neither shall there be any work for Egypt, which the head or tail, branch or rush, may do.</VERS>\r\n      <VERS vnumber=\"16\">In 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">In 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.</VERS>\r\n      <VERS vnumber=\"19\">In 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">In 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.</VERS>\r\n      <VERS vnumber=\"24\">In that day shall Israel be the third with Egypt and with Assyria, even a blessing in the midst of the land:</VERS>\r\n      <VERS vnumber=\"25\">Whom the LORD of hosts shall bless, saying, Blessed be Egypt my people, and Assyria the work of my hands, and Israel mine inheritance.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"20\">\r\n      <VERS vnumber=\"1\">In the year that Tartan came unto Ashdod, (when Sargon the king of Assyria sent him,) and fought against Ashdod, and took it;</VERS>\r\n      <VERS vnumber=\"2\">At 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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;</VERS>\r\n      <VERS vnumber=\"4\">So 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.</VERS>\r\n      <VERS vnumber=\"5\">And they shall be afraid and ashamed of Ethiopia their expectation, and of Egypt their glory.</VERS>\r\n      <VERS vnumber=\"6\">And 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?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"21\">\r\n      <VERS vnumber=\"1\">The burden of the desert of the sea. As whirlwinds in the south pass through; so it cometh from the desert, from a terrible land.</VERS>\r\n      <VERS vnumber=\"2\">A 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.</VERS>\r\n      <VERS vnumber=\"3\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"4\">My heart panted, fearfulness affrighted me: the night of my pleasure hath he turned into fear unto me.</VERS>\r\n      <VERS vnumber=\"5\">Prepare the table, watch in the watchtower, eat, drink: arise, ye princes, and anoint the shield.</VERS>\r\n      <VERS vnumber=\"6\">For thus hath the Lord said unto me, Go, set a watchman, let him declare what he seeth.</VERS>\r\n      <VERS vnumber=\"7\">And 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:</VERS>\r\n      <VERS vnumber=\"8\">And he cried, A lion: My lord, I stand continually upon the watchtower in the daytime, and I am set in my ward whole nights:</VERS>\r\n      <VERS vnumber=\"9\">And, 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.</VERS>\r\n      <VERS vnumber=\"10\">O 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.</VERS>\r\n      <VERS vnumber=\"11\">The burden of Dumah. He calleth to me out of Seir, Watchman, what of the night? Watchman, what of the night?</VERS>\r\n      <VERS vnumber=\"12\">The watchman said, The morning cometh, and also the night: if ye will enquire, enquire ye: return, come.</VERS>\r\n      <VERS vnumber=\"13\">The burden upon Arabia. In the forest in Arabia shall ye lodge, O ye travelling companies of Dedanim.</VERS>\r\n      <VERS vnumber=\"14\">The inhabitants of the land of Tema brought water to him that was thirsty, they prevented with their bread him that fled.</VERS>\r\n      <VERS vnumber=\"15\">For they fled from the swords, from the drawn sword, and from the bent bow, and from the grievousness of war.</VERS>\r\n      <VERS vnumber=\"16\">For 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:</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"22\">\r\n      <VERS vnumber=\"1\">The burden of the valley of vision. What aileth thee now, that thou art wholly gone up to the housetops?</VERS>\r\n      <VERS vnumber=\"2\">Thou that art full of stirs, a tumultuous city, a joyous city: thy slain men are not slain with the sword, nor dead in battle.</VERS>\r\n      <VERS vnumber=\"3\">All 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.</VERS>\r\n      <VERS vnumber=\"4\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"5\">For 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.</VERS>\r\n      <VERS vnumber=\"6\">And Elam bare the quiver with chariots of men and horsemen, and Kir uncovered the shield.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And he discovered the covering of Judah, and thou didst look in that day to the armour of the house of the forest.</VERS>\r\n      <VERS vnumber=\"9\">Ye have seen also the breaches of the city of David, that they are many: and ye gathered together the waters of the lower pool.</VERS>\r\n      <VERS vnumber=\"10\">And ye have numbered the houses of Jerusalem, and the houses have ye broken down to fortify the wall.</VERS>\r\n      <VERS vnumber=\"11\">Ye 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.</VERS>\r\n      <VERS vnumber=\"12\">And in that day did the Lord GOD of hosts call to weeping, and to mourning, and to baldness, and to girding with sackcloth:</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">Thus saith the Lord GOD of hosts, Go, get thee unto this treasurer, even unto Shebna, which is over the house, and say,</VERS>\r\n      <VERS vnumber=\"16\">What 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?</VERS>\r\n      <VERS vnumber=\"17\">Behold, the LORD will carry thee away with a mighty captivity, and will surely cover thee.</VERS>\r\n      <VERS vnumber=\"18\">He 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.</VERS>\r\n      <VERS vnumber=\"19\">And I will drive thee from thy station, and from thy state shall he pull thee down.</VERS>\r\n      <VERS vnumber=\"20\">And it shall come to pass in that day, that I will call my servant Eliakim the son of Hilkiah:</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And I will fasten him as a nail in a sure place; and he shall be for a glorious throne to his father's house.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">In 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"23\">\r\n      <VERS vnumber=\"1\">The 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.</VERS>\r\n      <VERS vnumber=\"2\">Be still, ye inhabitants of the isle; thou whom the merchants of Zidon, that pass over the sea, have replenished.</VERS>\r\n      <VERS vnumber=\"3\">And by great waters the seed of Sihor, the harvest of the river, is her revenue; and she is a mart of nations.</VERS>\r\n      <VERS vnumber=\"4\">Be 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.</VERS>\r\n      <VERS vnumber=\"5\">As at the report concerning Egypt, so shall they be sorely pained at the report of Tyre.</VERS>\r\n      <VERS vnumber=\"6\">Pass ye over to Tarshish; howl, ye inhabitants of the isle.</VERS>\r\n      <VERS vnumber=\"7\">Is this your joyous city, whose antiquity is of ancient days? her own feet shall carry her afar off to sojourn.</VERS>\r\n      <VERS vnumber=\"8\">Who hath taken this counsel against Tyre, the crowning city, whose merchants are princes, whose traffickers are the honourable of the earth?</VERS>\r\n      <VERS vnumber=\"9\">The LORD of hosts hath purposed it, to stain the pride of all glory, and to bring into contempt all the honourable of the earth.</VERS>\r\n      <VERS vnumber=\"10\">Pass through thy land as a river, O daughter of Tarshish: there is no more strength.</VERS>\r\n      <VERS vnumber=\"11\">He 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">Behold 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.</VERS>\r\n      <VERS vnumber=\"14\">Howl, ye ships of Tarshish: for your strength is laid waste.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">Take an harp, go about the city, thou harlot that hast been forgotten; make sweet melody, sing many songs, that thou mayest be remembered.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"24\">\r\n      <VERS vnumber=\"1\">Behold, the LORD maketh the earth empty, and maketh it waste, and turneth it upside down, and scattereth abroad the inhabitants thereof.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">The land shall be utterly emptied, and utterly spoiled: for the LORD hath spoken this word.</VERS>\r\n      <VERS vnumber=\"4\">The earth mourneth and fadeth away, the world languisheth and fadeth away, the haughty people of the earth do languish.</VERS>\r\n      <VERS vnumber=\"5\">The earth also is defiled under the inhabitants thereof; because they have transgressed the laws, changed the ordinance, broken the everlasting covenant.</VERS>\r\n      <VERS vnumber=\"6\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"7\">The new wine mourneth, the vine languisheth, all the merryhearted do sigh.</VERS>\r\n      <VERS vnumber=\"8\">The mirth of tabrets ceaseth, the noise of them that rejoice endeth, the joy of the harp ceaseth.</VERS>\r\n      <VERS vnumber=\"9\">They shall not drink wine with a song; strong drink shall be bitter to them that drink it.</VERS>\r\n      <VERS vnumber=\"10\">The city of confusion is broken down: every house is shut up, that no man may come in.</VERS>\r\n      <VERS vnumber=\"11\">There is a crying for wine in the streets; all joy is darkened, the mirth of the land is gone.</VERS>\r\n      <VERS vnumber=\"12\">In the city is left desolation, and the gate is smitten with destruction.</VERS>\r\n      <VERS vnumber=\"13\">When 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.</VERS>\r\n      <VERS vnumber=\"14\">They shall lift up their voice, they shall sing for the majesty of the LORD, they shall cry aloud from the sea.</VERS>\r\n      <VERS vnumber=\"15\">Wherefore glorify ye the LORD in the fires, even the name of the LORD God of Israel in the isles of the sea.</VERS>\r\n      <VERS vnumber=\"16\">From 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.</VERS>\r\n      <VERS vnumber=\"17\">Fear, and the pit, and the snare, are upon thee, O inhabitant of the earth.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">The earth is utterly broken down, the earth is clean dissolved, the earth is moved exceedingly.</VERS>\r\n      <VERS vnumber=\"20\">The 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">Then 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"25\">\r\n      <VERS vnumber=\"1\">O 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.</VERS>\r\n      <VERS vnumber=\"2\">For 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.</VERS>\r\n      <VERS vnumber=\"3\">Therefore shall the strong people glorify thee, the city of the terrible nations shall fear thee.</VERS>\r\n      <VERS vnumber=\"4\">For 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.</VERS>\r\n      <VERS vnumber=\"5\">Thou 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And he will destroy in this mountain the face of the covering cast over all people, and the vail that is spread over all nations.</VERS>\r\n      <VERS vnumber=\"8\">He 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">For 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And the fortress of the high fort of thy walls shall he bring down, lay low, and bring to the ground, even to the dust.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"26\">\r\n      <VERS vnumber=\"1\">In 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.</VERS>\r\n      <VERS vnumber=\"2\">Open ye the gates, that the righteous nation which keepeth the truth may enter in.</VERS>\r\n      <VERS vnumber=\"3\">Thou wilt keep him in perfect peace, whose mind is stayed on thee: because he trusteth in thee.</VERS>\r\n      <VERS vnumber=\"4\">Trust ye in the LORD for ever: for in the LORD JEHOVAH is everlasting strength:</VERS>\r\n      <VERS vnumber=\"5\">For 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.</VERS>\r\n      <VERS vnumber=\"6\">The foot shall tread it down, even the feet of the poor, and the steps of the needy.</VERS>\r\n      <VERS vnumber=\"7\">The way of the just is uprightness: thou, most upright, dost weigh the path of the just.</VERS>\r\n      <VERS vnumber=\"8\">Yea, 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.</VERS>\r\n      <VERS vnumber=\"9\">With 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.</VERS>\r\n      <VERS vnumber=\"10\">Let 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.</VERS>\r\n      <VERS vnumber=\"11\">LORD, 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.</VERS>\r\n      <VERS vnumber=\"12\">LORD, thou wilt ordain peace for us: for thou also hast wrought all our works in us.</VERS>\r\n      <VERS vnumber=\"13\">O LORD our God, other lords beside thee have had dominion over us: but by thee only will we make mention of thy name.</VERS>\r\n      <VERS vnumber=\"14\">They 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.</VERS>\r\n      <VERS vnumber=\"15\">Thou 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.</VERS>\r\n      <VERS vnumber=\"16\">LORD, in trouble have they visited thee, they poured out a prayer when thy chastening was upon them.</VERS>\r\n      <VERS vnumber=\"17\">Like 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.</VERS>\r\n      <VERS vnumber=\"18\">We 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.</VERS>\r\n      <VERS vnumber=\"19\">Thy 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.</VERS>\r\n      <VERS vnumber=\"20\">Come, 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.</VERS>\r\n      <VERS vnumber=\"21\">For, 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"27\">\r\n      <VERS vnumber=\"1\">In 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.</VERS>\r\n      <VERS vnumber=\"2\">In that day sing ye unto her, A vineyard of red wine.</VERS>\r\n      <VERS vnumber=\"3\">I the LORD do keep it; I will water it every moment: lest any hurt it, I will keep it night and day.</VERS>\r\n      <VERS vnumber=\"4\">Fury 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.</VERS>\r\n      <VERS vnumber=\"5\">Or let him take hold of my strength, that he may make peace with me; and he shall make peace with me.</VERS>\r\n      <VERS vnumber=\"6\">He shall cause them that come of Jacob to take root: Israel shall blossom and bud, and fill the face of the world with fruit.</VERS>\r\n      <VERS vnumber=\"7\">Hath 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?</VERS>\r\n      <VERS vnumber=\"8\">In measure, when it shooteth forth, thou wilt debate with it: he stayeth his rough wind in the day of the east wind.</VERS>\r\n      <VERS vnumber=\"9\">By 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.</VERS>\r\n      <VERS vnumber=\"10\">Yet 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.</VERS>\r\n      <VERS vnumber=\"11\">When 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"28\">\r\n      <VERS vnumber=\"1\">Woe 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!</VERS>\r\n      <VERS vnumber=\"2\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"3\">The crown of pride, the drunkards of Ephraim, shall be trodden under feet:</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">In 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,</VERS>\r\n      <VERS vnumber=\"6\">And for a spirit of judgment to him that sitteth in judgment, and for strength to them that turn the battle to the gate.</VERS>\r\n      <VERS vnumber=\"7\">But 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.</VERS>\r\n      <VERS vnumber=\"8\">For all tables are full of vomit and filthiness, so that there is no place clean.</VERS>\r\n      <VERS vnumber=\"9\">Whom shall he teach knowledge? and whom shall he make to understand doctrine? them that are weaned from the milk, and drawn from the breasts.</VERS>\r\n      <VERS vnumber=\"10\">For precept must be upon precept, precept upon precept; line upon line, line upon line; here a little, and there a little:</VERS>\r\n      <VERS vnumber=\"11\">For with stammering lips and another tongue will he speak to this people.</VERS>\r\n      <VERS vnumber=\"12\">To 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.</VERS>\r\n      <VERS vnumber=\"13\">But 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.</VERS>\r\n      <VERS vnumber=\"14\">Wherefore hear the word of the LORD, ye scornful men, that rule this people which is in Jerusalem.</VERS>\r\n      <VERS vnumber=\"15\">Because 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:</VERS>\r\n      <VERS vnumber=\"16\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"17\">Judgment 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">From 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.</VERS>\r\n      <VERS vnumber=\"20\">For 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.</VERS>\r\n      <VERS vnumber=\"21\">For 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.</VERS>\r\n      <VERS vnumber=\"22\">Now 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.</VERS>\r\n      <VERS vnumber=\"23\">Give ye ear, and hear my voice; hearken, and hear my speech.</VERS>\r\n      <VERS vnumber=\"24\">Doth the plowman plow all day to sow? doth he open and break the clods of his ground?</VERS>\r\n      <VERS vnumber=\"25\">When 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?</VERS>\r\n      <VERS vnumber=\"26\">For his God doth instruct him to discretion, and doth teach him.</VERS>\r\n      <VERS vnumber=\"27\">For 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.</VERS>\r\n      <VERS vnumber=\"28\">Bread 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.</VERS>\r\n      <VERS vnumber=\"29\">This also cometh forth from the LORD of hosts, which is wonderful in counsel, and excellent in working.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"29\">\r\n      <VERS vnumber=\"1\">Woe to Ariel, to Ariel, the city where David dwelt! add ye year to year; let them kill sacrifices.</VERS>\r\n      <VERS vnumber=\"2\">Yet I will distress Ariel, and there shall be heaviness and sorrow: and it shall be unto me as Ariel.</VERS>\r\n      <VERS vnumber=\"3\">And I will camp against thee round about, and will lay siege against thee with a mount, and I will raise forts against thee.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">Moreover 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.</VERS>\r\n      <VERS vnumber=\"6\">Thou 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">It 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.</VERS>\r\n      <VERS vnumber=\"9\">Stay yourselves, and wonder; cry ye out, and cry: they are drunken, but not with wine; they stagger, but not with strong drink.</VERS>\r\n      <VERS vnumber=\"10\">For 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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:</VERS>\r\n      <VERS vnumber=\"12\">And the book is delivered to him that is not learned, saying, Read this, I pray thee: and he saith, I am not learned.</VERS>\r\n      <VERS vnumber=\"13\">Wherefore 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:</VERS>\r\n      <VERS vnumber=\"14\">Therefore, 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.</VERS>\r\n      <VERS vnumber=\"15\">Woe 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?</VERS>\r\n      <VERS vnumber=\"16\">Surely 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?</VERS>\r\n      <VERS vnumber=\"17\">Is 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?</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">The meek also shall increase their joy in the LORD, and the poor among men shall rejoice in the Holy One of Israel.</VERS>\r\n      <VERS vnumber=\"20\">For the terrible one is brought to nought, and the scorner is consumed, and all that watch for iniquity are cut off:</VERS>\r\n      <VERS vnumber=\"21\">That 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.</VERS>\r\n      <VERS vnumber=\"22\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"23\">But 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.</VERS>\r\n      <VERS vnumber=\"24\">They also that erred in spirit shall come to understanding, and they that murmured shall learn doctrine.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"30\">\r\n      <VERS vnumber=\"1\">Woe 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:</VERS>\r\n      <VERS vnumber=\"2\">That 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!</VERS>\r\n      <VERS vnumber=\"3\">Therefore shall the strength of Pharaoh be your shame, and the trust in the shadow of Egypt your confusion.</VERS>\r\n      <VERS vnumber=\"4\">For his princes were at Zoan, and his ambassadors came to Hanes.</VERS>\r\n      <VERS vnumber=\"5\">They were all ashamed of a people that could not profit them, nor be an help nor profit, but a shame, and also a reproach.</VERS>\r\n      <VERS vnumber=\"6\">The 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.</VERS>\r\n      <VERS vnumber=\"7\">For the Egyptians shall help in vain, and to no purpose: therefore have I cried concerning this, Their strength is to sit still.</VERS>\r\n      <VERS vnumber=\"8\">Now 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:</VERS>\r\n      <VERS vnumber=\"9\">That this is a rebellious people, lying children, children that will not hear the law of the LORD:</VERS>\r\n      <VERS vnumber=\"10\">Which say to the seers, See not; and to the prophets, Prophesy not unto us right things, speak unto us smooth things, prophesy deceits:</VERS>\r\n      <VERS vnumber=\"11\">Get you out of the way, turn aside out of the path, cause the Holy One of Israel to cease from before us.</VERS>\r\n      <VERS vnumber=\"12\">Wherefore thus saith the Holy One of Israel, Because ye despise this word, and trust in oppression and perverseness, and stay thereon:</VERS>\r\n      <VERS vnumber=\"13\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">For 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.</VERS>\r\n      <VERS vnumber=\"16\">But 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.</VERS>\r\n      <VERS vnumber=\"17\">One 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">For 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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:</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">Ye 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.</VERS>\r\n      <VERS vnumber=\"23\">Then 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.</VERS>\r\n      <VERS vnumber=\"24\">The 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">Moreover 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.</VERS>\r\n      <VERS vnumber=\"27\">Behold, 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:</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">Ye 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.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">For through the voice of the LORD shall the Assyrian be beaten down, which smote with a rod.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">For 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"31\">\r\n      <VERS vnumber=\"1\">Woe 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!</VERS>\r\n      <VERS vnumber=\"2\">Yet 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.</VERS>\r\n      <VERS vnumber=\"3\">Now 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.</VERS>\r\n      <VERS vnumber=\"4\">For 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.</VERS>\r\n      <VERS vnumber=\"5\">As birds flying, so will the LORD of hosts defend Jerusalem; defending also he will deliver it; and passing over he will preserve it.</VERS>\r\n      <VERS vnumber=\"6\">Turn ye unto him from whom the children of Israel have deeply revolted.</VERS>\r\n      <VERS vnumber=\"7\">For 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.</VERS>\r\n      <VERS vnumber=\"8\">Then 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"32\">\r\n      <VERS vnumber=\"1\">Behold, a king shall reign in righteousness, and princes shall rule in judgment.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And the eyes of them that see shall not be dim, and the ears of them that hear shall hearken.</VERS>\r\n      <VERS vnumber=\"4\">The heart also of the rash shall understand knowledge, and the tongue of the stammerers shall be ready to speak plainly.</VERS>\r\n      <VERS vnumber=\"5\">The vile person shall be no more called liberal, nor the churl said to be bountiful.</VERS>\r\n      <VERS vnumber=\"6\">For 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.</VERS>\r\n      <VERS vnumber=\"7\">The instruments also of the churl are evil: he deviseth wicked devices to destroy the poor with lying words, even when the needy speaketh right.</VERS>\r\n      <VERS vnumber=\"8\">But the liberal deviseth liberal things; and by liberal things shall he stand.</VERS>\r\n      <VERS vnumber=\"9\">Rise up, ye women that are at ease; hear my voice, ye careless daughters; give ear unto my speech.</VERS>\r\n      <VERS vnumber=\"10\">Many days and years shall ye be troubled, ye careless women: for the vintage shall fail, the gathering shall not come.</VERS>\r\n      <VERS vnumber=\"11\">Tremble, ye women that are at ease; be troubled, ye careless ones: strip you, and make you bare, and gird sackcloth upon your loins.</VERS>\r\n      <VERS vnumber=\"12\">They shall lament for the teats, for the pleasant fields, for the fruitful vine.</VERS>\r\n      <VERS vnumber=\"13\">Upon the land of my people shall come up thorns and briers; yea, upon all the houses of joy in the joyous city:</VERS>\r\n      <VERS vnumber=\"14\">Because 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;</VERS>\r\n      <VERS vnumber=\"15\">Until 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.</VERS>\r\n      <VERS vnumber=\"16\">Then judgment shall dwell in the wilderness, and righteousness remain in the fruitful field.</VERS>\r\n      <VERS vnumber=\"17\">And the work of righteousness shall be peace; and the effect of righteousness quietness and assurance for ever.</VERS>\r\n      <VERS vnumber=\"18\">And my people shall dwell in a peaceable habitation, and in sure dwellings, and in quiet resting places;</VERS>\r\n      <VERS vnumber=\"19\">When it shall hail, coming down on the forest; and the city shall be low in a low place.</VERS>\r\n      <VERS vnumber=\"20\">Blessed are ye that sow beside all waters, that send forth thither the feet of the ox and the ass.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"33\">\r\n      <VERS vnumber=\"1\">Woe 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.</VERS>\r\n      <VERS vnumber=\"2\">O LORD, be gracious unto us; we have waited for thee: be thou their arm every morning, our salvation also in the time of trouble.</VERS>\r\n      <VERS vnumber=\"3\">At the noise of the tumult the people fled; at the lifting up of thyself the nations were scattered.</VERS>\r\n      <VERS vnumber=\"4\">And your spoil shall be gathered like the gathering of the caterpiller: as the running to and fro of locusts shall he run upon them.</VERS>\r\n      <VERS vnumber=\"5\">The LORD is exalted; for he dwelleth on high: he hath filled Zion with judgment and righteousness.</VERS>\r\n      <VERS vnumber=\"6\">And wisdom and knowledge shall be the stability of thy times, and strength of salvation: the fear of the LORD is his treasure.</VERS>\r\n      <VERS vnumber=\"7\">Behold, their valiant ones shall cry without: the ambassadors of peace shall weep bitterly.</VERS>\r\n      <VERS vnumber=\"8\">The highways lie waste, the wayfaring man ceaseth: he hath broken the covenant, he hath despised the cities, he regardeth no man.</VERS>\r\n      <VERS vnumber=\"9\">The earth mourneth and languisheth: Lebanon is ashamed and hewn down: Sharon is like a wilderness; and Bashan and Carmel shake off their fruits.</VERS>\r\n      <VERS vnumber=\"10\">Now will I rise, saith the LORD; now will I be exalted; now will I lift up myself.</VERS>\r\n      <VERS vnumber=\"11\">Ye shall conceive chaff, ye shall bring forth stubble: your breath, as fire, shall devour you.</VERS>\r\n      <VERS vnumber=\"12\">And the people shall be as the burnings of lime: as thorns cut up shall they be burned in the fire.</VERS>\r\n      <VERS vnumber=\"13\">Hear, ye that are far off, what I have done; and, ye that are near, acknowledge my might.</VERS>\r\n      <VERS vnumber=\"14\">The 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?</VERS>\r\n      <VERS vnumber=\"15\">He 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;</VERS>\r\n      <VERS vnumber=\"16\">He shall dwell on high: his place of defence shall be the munitions of rocks: bread shall be given him; his waters shall be sure.</VERS>\r\n      <VERS vnumber=\"17\">Thine eyes shall see the king in his beauty: they shall behold the land that is very far off.</VERS>\r\n      <VERS vnumber=\"18\">Thine heart shall meditate terror. Where is the scribe? where is the receiver? where is he that counted the towers?</VERS>\r\n      <VERS vnumber=\"19\">Thou 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.</VERS>\r\n      <VERS vnumber=\"20\">Look 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.</VERS>\r\n      <VERS vnumber=\"21\">But 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.</VERS>\r\n      <VERS vnumber=\"22\">For the LORD is our judge, the LORD is our lawgiver, the LORD is our king; he will save us.</VERS>\r\n      <VERS vnumber=\"23\">Thy 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.</VERS>\r\n      <VERS vnumber=\"24\">And the inhabitant shall not say, I am sick: the people that dwell therein shall be forgiven their iniquity.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"34\">\r\n      <VERS vnumber=\"1\">Come 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.</VERS>\r\n      <VERS vnumber=\"2\">For 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.</VERS>\r\n      <VERS vnumber=\"3\">Their 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">For my sword shall be bathed in heaven: behold, it shall come down upon Idumea, and upon the people of my curse, to judgment.</VERS>\r\n      <VERS vnumber=\"6\">The 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">For it is the day of the LORD'S vengeance, and the year of recompences for the controversy of Zion.</VERS>\r\n      <VERS vnumber=\"9\">And the streams thereof shall be turned into pitch, and the dust thereof into brimstone, and the land thereof shall become burning pitch.</VERS>\r\n      <VERS vnumber=\"10\">It 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.</VERS>\r\n      <VERS vnumber=\"11\">But 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.</VERS>\r\n      <VERS vnumber=\"12\">They shall call the nobles thereof to the kingdom, but none shall be there, and all her princes shall be nothing.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">The 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.</VERS>\r\n      <VERS vnumber=\"15\">There 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.</VERS>\r\n      <VERS vnumber=\"16\">Seek 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"35\">\r\n      <VERS vnumber=\"1\">The wilderness and the solitary place shall be glad for them; and the desert shall rejoice, and blossom as the rose.</VERS>\r\n      <VERS vnumber=\"2\">It 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.</VERS>\r\n      <VERS vnumber=\"3\">Strengthen ye the weak hands, and confirm the feeble knees.</VERS>\r\n      <VERS vnumber=\"4\">Say 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.</VERS>\r\n      <VERS vnumber=\"5\">Then the eyes of the blind shall be opened, and the ears of the deaf shall be unstopped.</VERS>\r\n      <VERS vnumber=\"6\">Then 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">No lion shall be there, nor any ravenous beast shall go up thereon, it shall not be found there; but the redeemed shall walk there:</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"36\">\r\n      <VERS vnumber=\"1\">Now 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">Then came forth unto him Eliakim, Hilkiah's son, which was over the house, and Shebna the scribe, and Joah, Asaph's son, the recorder.</VERS>\r\n      <VERS vnumber=\"4\">And 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?</VERS>\r\n      <VERS vnumber=\"5\">I 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?</VERS>\r\n      <VERS vnumber=\"6\">Lo, 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.</VERS>\r\n      <VERS vnumber=\"7\">But 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?</VERS>\r\n      <VERS vnumber=\"8\">Now 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.</VERS>\r\n      <VERS vnumber=\"9\">How 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?</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">Then 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.</VERS>\r\n      <VERS vnumber=\"12\">But 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?</VERS>\r\n      <VERS vnumber=\"13\">Then 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.</VERS>\r\n      <VERS vnumber=\"14\">Thus saith the king, Let not Hezekiah deceive you: for he shall not be able to deliver you.</VERS>\r\n      <VERS vnumber=\"15\">Neither 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.</VERS>\r\n      <VERS vnumber=\"16\">Hearken 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;</VERS>\r\n      <VERS vnumber=\"17\">Until 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.</VERS>\r\n      <VERS vnumber=\"18\">Beware 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?</VERS>\r\n      <VERS vnumber=\"19\">Where are the gods of Hamath and Arphad? where are the gods of Sepharvaim? and have they delivered Samaria out of my hand?</VERS>\r\n      <VERS vnumber=\"20\">Who 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?</VERS>\r\n      <VERS vnumber=\"21\">But they held their peace, and answered him not a word: for the king's commandment was, saying, Answer him not.</VERS>\r\n      <VERS vnumber=\"22\">Then 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"37\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">It 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.</VERS>\r\n      <VERS vnumber=\"5\">So the servants of king Hezekiah came to Isaiah.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"8\">So Rabshakeh returned, and found the king of Assyria warring against Libnah: for he had heard that he was departed from Lachish.</VERS>\r\n      <VERS vnumber=\"9\">And 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,</VERS>\r\n      <VERS vnumber=\"10\">Thus 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.</VERS>\r\n      <VERS vnumber=\"11\">Behold, thou hast heard what the kings of Assyria have done to all lands by destroying them utterly; and shalt thou be delivered?</VERS>\r\n      <VERS vnumber=\"12\">Have 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?</VERS>\r\n      <VERS vnumber=\"13\">Where is the king of Hamath, and the king of Arphad, and the king of the city of Sepharvaim, Hena, and Ivah?</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And Hezekiah prayed unto the LORD, saying,</VERS>\r\n      <VERS vnumber=\"16\">O 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.</VERS>\r\n      <VERS vnumber=\"17\">Incline 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.</VERS>\r\n      <VERS vnumber=\"18\">Of a truth, LORD, the kings of Assyria have laid waste all the nations, and their countries,</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">Now 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.</VERS>\r\n      <VERS vnumber=\"21\">Then 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:</VERS>\r\n      <VERS vnumber=\"22\">This 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.</VERS>\r\n      <VERS vnumber=\"23\">Whom 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.</VERS>\r\n      <VERS vnumber=\"24\">By 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.</VERS>\r\n      <VERS vnumber=\"25\">I have digged, and drunk water; and with the sole of my feet have I dried up all the rivers of the besieged places.</VERS>\r\n      <VERS vnumber=\"26\">Hast 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.</VERS>\r\n      <VERS vnumber=\"27\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"28\">But I know thy abode, and thy going out, and thy coming in, and thy rage against me.</VERS>\r\n      <VERS vnumber=\"29\">Because 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.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">And the remnant that is escaped of the house of Judah shall again take root downward, and bear fruit upward:</VERS>\r\n      <VERS vnumber=\"32\">For 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.</VERS>\r\n      <VERS vnumber=\"33\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"34\">By the way that he came, by the same shall he return, and shall not come into this city, saith the LORD.</VERS>\r\n      <VERS vnumber=\"35\">For I will defend this city to save it for mine own sake, and for my servant David's sake.</VERS>\r\n      <VERS vnumber=\"36\">Then 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.</VERS>\r\n      <VERS vnumber=\"37\">So Sennacherib king of Assyria departed, and went and returned, and dwelt at Nineveh.</VERS>\r\n      <VERS vnumber=\"38\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"38\">\r\n      <VERS vnumber=\"1\">In 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.</VERS>\r\n      <VERS vnumber=\"2\">Then Hezekiah turned his face toward the wall, and prayed unto the LORD,</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">Then came the word of the LORD to Isaiah, saying,</VERS>\r\n      <VERS vnumber=\"5\">Go, 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.</VERS>\r\n      <VERS vnumber=\"6\">And I will deliver thee and this city out of the hand of the king of Assyria: and I will defend this city.</VERS>\r\n      <VERS vnumber=\"7\">And this shall be a sign unto thee from the LORD, that the LORD will do this thing that he hath spoken;</VERS>\r\n      <VERS vnumber=\"8\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"9\">The writing of Hezekiah king of Judah, when he had been sick, and was recovered of his sickness:</VERS>\r\n      <VERS vnumber=\"10\">I 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.</VERS>\r\n      <VERS vnumber=\"11\">I 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.</VERS>\r\n      <VERS vnumber=\"12\">Mine 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.</VERS>\r\n      <VERS vnumber=\"13\">I 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.</VERS>\r\n      <VERS vnumber=\"14\">Like 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.</VERS>\r\n      <VERS vnumber=\"15\">What 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.</VERS>\r\n      <VERS vnumber=\"16\">O 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.</VERS>\r\n      <VERS vnumber=\"17\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"18\">For the grave cannot praise thee, death can not celebrate thee: they that go down into the pit cannot hope for thy truth.</VERS>\r\n      <VERS vnumber=\"19\">The living, the living, he shall praise thee, as I do this day: the father to the children shall make known thy truth.</VERS>\r\n      <VERS vnumber=\"20\">The 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.</VERS>\r\n      <VERS vnumber=\"21\">For Isaiah had said, Let them take a lump of figs, and lay it for a plaister upon the boil, and he shall recover.</VERS>\r\n      <VERS vnumber=\"22\">Hezekiah also had said, What is the sign that I shall go up to the house of the LORD?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"39\">\r\n      <VERS vnumber=\"1\">At 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">Then 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.</VERS>\r\n      <VERS vnumber=\"4\">Then 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.</VERS>\r\n      <VERS vnumber=\"5\">Then said Isaiah to Hezekiah, Hear the word of the LORD of hosts:</VERS>\r\n      <VERS vnumber=\"6\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">Then 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"40\">\r\n      <VERS vnumber=\"1\">Comfort ye, comfort ye my people, saith your God.</VERS>\r\n      <VERS vnumber=\"2\">Speak 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.</VERS>\r\n      <VERS vnumber=\"3\">The 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.</VERS>\r\n      <VERS vnumber=\"4\">Every 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:</VERS>\r\n      <VERS vnumber=\"5\">And the glory of the LORD shall be revealed, and all flesh shall see it together: for the mouth of the LORD hath spoken it.</VERS>\r\n      <VERS vnumber=\"6\">The 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:</VERS>\r\n      <VERS vnumber=\"7\">The grass withereth, the flower fadeth: because the spirit of the LORD bloweth upon it: surely the people is grass.</VERS>\r\n      <VERS vnumber=\"8\">The grass withereth, the flower fadeth: but the word of our God shall stand for ever.</VERS>\r\n      <VERS vnumber=\"9\">O 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!</VERS>\r\n      <VERS vnumber=\"10\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"11\">He 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.</VERS>\r\n      <VERS vnumber=\"12\">Who 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?</VERS>\r\n      <VERS vnumber=\"13\">Who hath directed the Spirit of the LORD, or being his counsellor hath taught him?</VERS>\r\n      <VERS vnumber=\"14\">With 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?</VERS>\r\n      <VERS vnumber=\"15\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"16\">And Lebanon is not sufficient to burn, nor the beasts thereof sufficient for a burnt offering.</VERS>\r\n      <VERS vnumber=\"17\">All nations before him are as nothing; and they are counted to him less than nothing, and vanity.</VERS>\r\n      <VERS vnumber=\"18\">To whom then will ye liken God? or what likeness will ye compare unto him?</VERS>\r\n      <VERS vnumber=\"19\">The workman melteth a graven image, and the goldsmith spreadeth it over with gold, and casteth silver chains.</VERS>\r\n      <VERS vnumber=\"20\">He 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.</VERS>\r\n      <VERS vnumber=\"21\">Have 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?</VERS>\r\n      <VERS vnumber=\"22\">It 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:</VERS>\r\n      <VERS vnumber=\"23\">That bringeth the princes to nothing; he maketh the judges of the earth as vanity.</VERS>\r\n      <VERS vnumber=\"24\">Yea, 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.</VERS>\r\n      <VERS vnumber=\"25\">To whom then will ye liken me, or shall I be equal? saith the Holy One.</VERS>\r\n      <VERS vnumber=\"26\">Lift 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.</VERS>\r\n      <VERS vnumber=\"27\">Why sayest thou, O Jacob, and speakest, O Israel, My way is hid from the LORD, and my judgment is passed over from my God?</VERS>\r\n      <VERS vnumber=\"28\">Hast 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.</VERS>\r\n      <VERS vnumber=\"29\">He giveth power to the faint; and to them that have no might he increaseth strength.</VERS>\r\n      <VERS vnumber=\"30\">Even the youths shall faint and be weary, and the young men shall utterly fall:</VERS>\r\n      <VERS vnumber=\"31\">But 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"41\">\r\n      <VERS vnumber=\"1\">Keep 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.</VERS>\r\n      <VERS vnumber=\"2\">Who 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.</VERS>\r\n      <VERS vnumber=\"3\">He pursued them, and passed safely; even by the way that he had not gone with his feet.</VERS>\r\n      <VERS vnumber=\"4\">Who hath wrought and done it, calling the generations from the beginning? I the LORD, the first, and with the last; I am he.</VERS>\r\n      <VERS vnumber=\"5\">The isles saw it, and feared; the ends of the earth were afraid, drew near, and came.</VERS>\r\n      <VERS vnumber=\"6\">They helped every one his neighbour; and every one said to his brother, Be of good courage.</VERS>\r\n      <VERS vnumber=\"7\">So 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.</VERS>\r\n      <VERS vnumber=\"8\">But thou, Israel, art my servant, Jacob whom I have chosen, the seed of Abraham my friend.</VERS>\r\n      <VERS vnumber=\"9\">Thou 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.</VERS>\r\n      <VERS vnumber=\"10\">Fear 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.</VERS>\r\n      <VERS vnumber=\"11\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"12\">Thou 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.</VERS>\r\n      <VERS vnumber=\"13\">For I the LORD thy God will hold thy right hand, saying unto thee, Fear not; I will help thee.</VERS>\r\n      <VERS vnumber=\"14\">Fear not, thou worm Jacob, and ye men of Israel; I will help thee, saith the LORD, and thy redeemer, the Holy One of Israel.</VERS>\r\n      <VERS vnumber=\"15\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"16\">Thou 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.</VERS>\r\n      <VERS vnumber=\"17\">When 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.</VERS>\r\n      <VERS vnumber=\"18\">I 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.</VERS>\r\n      <VERS vnumber=\"19\">I 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:</VERS>\r\n      <VERS vnumber=\"20\">That 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.</VERS>\r\n      <VERS vnumber=\"21\">Produce your cause, saith the LORD; bring forth your strong reasons, saith the King of Jacob.</VERS>\r\n      <VERS vnumber=\"22\">Let 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.</VERS>\r\n      <VERS vnumber=\"23\">Shew 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.</VERS>\r\n      <VERS vnumber=\"24\">Behold, ye are of nothing, and your work of nought: an abomination is he that chooseth you.</VERS>\r\n      <VERS vnumber=\"25\">I 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.</VERS>\r\n      <VERS vnumber=\"26\">Who 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.</VERS>\r\n      <VERS vnumber=\"27\">The first shall say to Zion, Behold, behold them: and I will give to Jerusalem one that bringeth good tidings.</VERS>\r\n      <VERS vnumber=\"28\">For 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.</VERS>\r\n      <VERS vnumber=\"29\">Behold, they are all vanity; their works are nothing: their molten images are wind and confusion.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"42\">\r\n      <VERS vnumber=\"1\">Behold 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.</VERS>\r\n      <VERS vnumber=\"2\">He shall not cry, nor lift up, nor cause his voice to be heard in the street.</VERS>\r\n      <VERS vnumber=\"3\">A bruised reed shall he not break, and the smoking flax shall he not quench: he shall bring forth judgment unto truth.</VERS>\r\n      <VERS vnumber=\"4\">He shall not fail nor be discouraged, till he have set judgment in the earth: and the isles shall wait for his law.</VERS>\r\n      <VERS vnumber=\"5\">Thus 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:</VERS>\r\n      <VERS vnumber=\"6\">I 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;</VERS>\r\n      <VERS vnumber=\"7\">To open the blind eyes, to bring out the prisoners from the prison, and them that sit in darkness out of the prison house.</VERS>\r\n      <VERS vnumber=\"8\">I am the LORD: that is my name: and my glory will I not give to another, neither my praise to graven images.</VERS>\r\n      <VERS vnumber=\"9\">Behold, the former things are come to pass, and new things do I declare: before they spring forth I tell you of them.</VERS>\r\n      <VERS vnumber=\"10\">Sing 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.</VERS>\r\n      <VERS vnumber=\"11\">Let 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.</VERS>\r\n      <VERS vnumber=\"12\">Let them give glory unto the LORD, and declare his praise in the islands.</VERS>\r\n      <VERS vnumber=\"13\">The 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.</VERS>\r\n      <VERS vnumber=\"14\">I 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.</VERS>\r\n      <VERS vnumber=\"15\">I 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">They shall be turned back, they shall be greatly ashamed, that trust in graven images, that say to the molten images, Ye are our gods.</VERS>\r\n      <VERS vnumber=\"18\">Hear, ye deaf; and look, ye blind, that ye may see.</VERS>\r\n      <VERS vnumber=\"19\">Who 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?</VERS>\r\n      <VERS vnumber=\"20\">Seeing many things, but thou observest not; opening the ears, but he heareth not.</VERS>\r\n      <VERS vnumber=\"21\">The LORD is well pleased for his righteousness' sake; he will magnify the law, and make it honourable.</VERS>\r\n      <VERS vnumber=\"22\">But 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.</VERS>\r\n      <VERS vnumber=\"23\">Who among you will give ear to this? who will hearken and hear for the time to come?</VERS>\r\n      <VERS vnumber=\"24\">Who 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.</VERS>\r\n      <VERS vnumber=\"25\">Therefore 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"43\">\r\n      <VERS vnumber=\"1\">But 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.</VERS>\r\n      <VERS vnumber=\"2\">When 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.</VERS>\r\n      <VERS vnumber=\"3\">For I am the LORD thy God, the Holy One of Israel, thy Saviour: I gave Egypt for thy ransom, Ethiopia and Seba for thee.</VERS>\r\n      <VERS vnumber=\"4\">Since 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.</VERS>\r\n      <VERS vnumber=\"5\">Fear not: for I am with thee: I will bring thy seed from the east, and gather thee from the west;</VERS>\r\n      <VERS vnumber=\"6\">I 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;</VERS>\r\n      <VERS vnumber=\"7\">Even 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.</VERS>\r\n      <VERS vnumber=\"8\">Bring forth the blind people that have eyes, and the deaf that have ears.</VERS>\r\n      <VERS vnumber=\"9\">Let 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.</VERS>\r\n      <VERS vnumber=\"10\">Ye 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.</VERS>\r\n      <VERS vnumber=\"11\">I, even I, am the LORD; and beside me there is no saviour.</VERS>\r\n      <VERS vnumber=\"12\">I 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.</VERS>\r\n      <VERS vnumber=\"13\">Yea, 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?</VERS>\r\n      <VERS vnumber=\"14\">Thus 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.</VERS>\r\n      <VERS vnumber=\"15\">I am the LORD, your Holy One, the creator of Israel, your King.</VERS>\r\n      <VERS vnumber=\"16\">Thus saith the LORD, which maketh a way in the sea, and a path in the mighty waters;</VERS>\r\n      <VERS vnumber=\"17\">Which 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.</VERS>\r\n      <VERS vnumber=\"18\">Remember ye not the former things, neither consider the things of old.</VERS>\r\n      <VERS vnumber=\"19\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"20\">The 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.</VERS>\r\n      <VERS vnumber=\"21\">This people have I formed for myself; they shall shew forth my praise.</VERS>\r\n      <VERS vnumber=\"22\">But thou hast not called upon me, O Jacob; but thou hast been weary of me, O Israel.</VERS>\r\n      <VERS vnumber=\"23\">Thou 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.</VERS>\r\n      <VERS vnumber=\"24\">Thou 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.</VERS>\r\n      <VERS vnumber=\"25\">I, even I, am he that blotteth out thy transgressions for mine own sake, and will not remember thy sins.</VERS>\r\n      <VERS vnumber=\"26\">Put me in remembrance: let us plead together: declare thou, that thou mayest be justified.</VERS>\r\n      <VERS vnumber=\"27\">Thy first father hath sinned, and thy teachers have transgressed against me.</VERS>\r\n      <VERS vnumber=\"28\">Therefore I have profaned the princes of the sanctuary, and have given Jacob to the curse, and Israel to reproaches.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"44\">\r\n      <VERS vnumber=\"1\">Yet now hear, O Jacob my servant; and Israel, whom I have chosen:</VERS>\r\n      <VERS vnumber=\"2\">Thus 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.</VERS>\r\n      <VERS vnumber=\"3\">For 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:</VERS>\r\n      <VERS vnumber=\"4\">And they shall spring up as among the grass, as willows by the water courses.</VERS>\r\n      <VERS vnumber=\"5\">One 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.</VERS>\r\n      <VERS vnumber=\"6\">Thus 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">Fear 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.</VERS>\r\n      <VERS vnumber=\"9\">They 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.</VERS>\r\n      <VERS vnumber=\"10\">Who hath formed a god, or molten a graven image that is profitable for nothing?</VERS>\r\n      <VERS vnumber=\"11\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"12\">The 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.</VERS>\r\n      <VERS vnumber=\"13\">The 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.</VERS>\r\n      <VERS vnumber=\"14\">He 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.</VERS>\r\n      <VERS vnumber=\"15\">Then 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.</VERS>\r\n      <VERS vnumber=\"16\">He 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:</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">They have not known nor understood: for he hath shut their eyes, that they cannot see; and their hearts, that they cannot understand.</VERS>\r\n      <VERS vnumber=\"19\">And 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?</VERS>\r\n      <VERS vnumber=\"20\">He 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?</VERS>\r\n      <VERS vnumber=\"21\">Remember 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.</VERS>\r\n      <VERS vnumber=\"22\">I have blotted out, as a thick cloud, thy transgressions, and, as a cloud, thy sins: return unto me; for I have redeemed thee.</VERS>\r\n      <VERS vnumber=\"23\">Sing, 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.</VERS>\r\n      <VERS vnumber=\"24\">Thus 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;</VERS>\r\n      <VERS vnumber=\"25\">That frustrateth the tokens of the liars, and maketh diviners mad; that turneth wise men backward, and maketh their knowledge foolish;</VERS>\r\n      <VERS vnumber=\"26\">That 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:</VERS>\r\n      <VERS vnumber=\"27\">That saith to the deep, Be dry, and I will dry up thy rivers:</VERS>\r\n      <VERS vnumber=\"28\">That 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"45\">\r\n      <VERS vnumber=\"1\">Thus 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;</VERS>\r\n      <VERS vnumber=\"2\">I 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:</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">For 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.</VERS>\r\n      <VERS vnumber=\"5\">I am the LORD, and there is none else, there is no God beside me: I girded thee, though thou hast not known me:</VERS>\r\n      <VERS vnumber=\"6\">That 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.</VERS>\r\n      <VERS vnumber=\"7\">I form the light, and create darkness: I make peace, and create evil: I the LORD do all these things.</VERS>\r\n      <VERS vnumber=\"8\">Drop 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.</VERS>\r\n      <VERS vnumber=\"9\">Woe 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?</VERS>\r\n      <VERS vnumber=\"10\">Woe unto him that saith unto his father, What begettest thou? or to the woman, What hast thou brought forth?</VERS>\r\n      <VERS vnumber=\"11\">Thus 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.</VERS>\r\n      <VERS vnumber=\"12\">I 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.</VERS>\r\n      <VERS vnumber=\"13\">I 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.</VERS>\r\n      <VERS vnumber=\"14\">Thus 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.</VERS>\r\n      <VERS vnumber=\"15\">Verily thou art a God that hidest thyself, O God of Israel, the Saviour.</VERS>\r\n      <VERS vnumber=\"16\">They shall be ashamed, and also confounded, all of them: they shall go to confusion together that are makers of idols.</VERS>\r\n      <VERS vnumber=\"17\">But Israel shall be saved in the LORD with an everlasting salvation: ye shall not be ashamed nor confounded world without end.</VERS>\r\n      <VERS vnumber=\"18\">For 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.</VERS>\r\n      <VERS vnumber=\"19\">I 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.</VERS>\r\n      <VERS vnumber=\"20\">Assemble 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.</VERS>\r\n      <VERS vnumber=\"21\">Tell 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.</VERS>\r\n      <VERS vnumber=\"22\">Look unto me, and be ye saved, all the ends of the earth: for I am God, and there is none else.</VERS>\r\n      <VERS vnumber=\"23\">I 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.</VERS>\r\n      <VERS vnumber=\"24\">Surely, 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.</VERS>\r\n      <VERS vnumber=\"25\">In the LORD shall all the seed of Israel be justified, and shall glory.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"46\">\r\n      <VERS vnumber=\"1\">Bel 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.</VERS>\r\n      <VERS vnumber=\"2\">They stoop, they bow down together; they could not deliver the burden, but themselves are gone into captivity.</VERS>\r\n      <VERS vnumber=\"3\">Hearken 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:</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">To whom will ye liken me, and make me equal, and compare me, that we may be like?</VERS>\r\n      <VERS vnumber=\"6\">They 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.</VERS>\r\n      <VERS vnumber=\"7\">They 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.</VERS>\r\n      <VERS vnumber=\"8\">Remember this, and shew yourselves men: bring it again to mind, O ye transgressors.</VERS>\r\n      <VERS vnumber=\"9\">Remember the former things of old: for I am God, and there is none else; I am God, and there is none like me,</VERS>\r\n      <VERS vnumber=\"10\">Declaring 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:</VERS>\r\n      <VERS vnumber=\"11\">Calling 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.</VERS>\r\n      <VERS vnumber=\"12\">Hearken unto me, ye stouthearted, that are far from righteousness:</VERS>\r\n      <VERS vnumber=\"13\">I 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"47\">\r\n      <VERS vnumber=\"1\">Come 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.</VERS>\r\n      <VERS vnumber=\"2\">Take the millstones, and grind meal: uncover thy locks, make bare the leg, uncover the thigh, pass over the rivers.</VERS>\r\n      <VERS vnumber=\"3\">Thy nakedness shall be uncovered, yea, thy shame shall be seen: I will take vengeance, and I will not meet thee as a man.</VERS>\r\n      <VERS vnumber=\"4\">As for our redeemer, the LORD of hosts is his name, the Holy One of Israel.</VERS>\r\n      <VERS vnumber=\"5\">Sit thou silent, and get thee into darkness, O daughter of the Chaldeans: for thou shalt no more be called, The lady of kingdoms.</VERS>\r\n      <VERS vnumber=\"6\">I 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">Therefore 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:</VERS>\r\n      <VERS vnumber=\"9\">But 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.</VERS>\r\n      <VERS vnumber=\"10\">For 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.</VERS>\r\n      <VERS vnumber=\"11\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"12\">Stand 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.</VERS>\r\n      <VERS vnumber=\"13\">Thou 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.</VERS>\r\n      <VERS vnumber=\"14\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"15\">Thus 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"48\">\r\n      <VERS vnumber=\"1\">Hear 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.</VERS>\r\n      <VERS vnumber=\"2\">For they call themselves of the holy city, and stay themselves upon the God of Israel; The LORD of hosts is his name.</VERS>\r\n      <VERS vnumber=\"3\">I 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.</VERS>\r\n      <VERS vnumber=\"4\">Because I knew that thou art obstinate, and thy neck is an iron sinew, and thy brow brass;</VERS>\r\n      <VERS vnumber=\"5\">I 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.</VERS>\r\n      <VERS vnumber=\"6\">Thou 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.</VERS>\r\n      <VERS vnumber=\"7\">They 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.</VERS>\r\n      <VERS vnumber=\"8\">Yea, 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.</VERS>\r\n      <VERS vnumber=\"9\">For my name's sake will I defer mine anger, and for my praise will I refrain for thee, that I cut thee not off.</VERS>\r\n      <VERS vnumber=\"10\">Behold, I have refined thee, but not with silver; I have chosen thee in the furnace of affliction.</VERS>\r\n      <VERS vnumber=\"11\">For 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.</VERS>\r\n      <VERS vnumber=\"12\">Hearken unto me, O Jacob and Israel, my called; I am he; I am the first, I also am the last.</VERS>\r\n      <VERS vnumber=\"13\">Mine 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.</VERS>\r\n      <VERS vnumber=\"14\">All 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.</VERS>\r\n      <VERS vnumber=\"15\">I, even I, have spoken; yea, I have called him: I have brought him, and he shall make his way prosperous.</VERS>\r\n      <VERS vnumber=\"16\">Come 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.</VERS>\r\n      <VERS vnumber=\"17\">Thus 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.</VERS>\r\n      <VERS vnumber=\"18\">O that thou hadst hearkened to my commandments! then had thy peace been as a river, and thy righteousness as the waves of the sea:</VERS>\r\n      <VERS vnumber=\"19\">Thy 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.</VERS>\r\n      <VERS vnumber=\"20\">Go 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">There is no peace, saith the LORD, unto the wicked.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"49\">\r\n      <VERS vnumber=\"1\">Listen, 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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;</VERS>\r\n      <VERS vnumber=\"3\">And said unto me, Thou art my servant, O Israel, in whom I will be glorified.</VERS>\r\n      <VERS vnumber=\"4\">Then 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">Thus 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.</VERS>\r\n      <VERS vnumber=\"8\">Thus 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;</VERS>\r\n      <VERS vnumber=\"9\">That 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.</VERS>\r\n      <VERS vnumber=\"10\">They 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.</VERS>\r\n      <VERS vnumber=\"11\">And I will make all my mountains a way, and my highways shall be exalted.</VERS>\r\n      <VERS vnumber=\"12\">Behold, these shall come from far: and, lo, these from the north and from the west; and these from the land of Sinim.</VERS>\r\n      <VERS vnumber=\"13\">Sing, 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.</VERS>\r\n      <VERS vnumber=\"14\">But Zion said, The LORD hath forsaken me, and my Lord hath forgotten me.</VERS>\r\n      <VERS vnumber=\"15\">Can 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.</VERS>\r\n      <VERS vnumber=\"16\">Behold, I have graven thee upon the palms of my hands; thy walls are continually before me.</VERS>\r\n      <VERS vnumber=\"17\">Thy children shall make haste; thy destroyers and they that made thee waste shall go forth of thee.</VERS>\r\n      <VERS vnumber=\"18\">Lift 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.</VERS>\r\n      <VERS vnumber=\"19\">For 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.</VERS>\r\n      <VERS vnumber=\"20\">The 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.</VERS>\r\n      <VERS vnumber=\"21\">Then 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?</VERS>\r\n      <VERS vnumber=\"22\">Thus 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.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">Shall the prey be taken from the mighty, or the lawful captive delivered?</VERS>\r\n      <VERS vnumber=\"25\">But 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"50\">\r\n      <VERS vnumber=\"1\">Thus 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.</VERS>\r\n      <VERS vnumber=\"2\">Wherefore, 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.</VERS>\r\n      <VERS vnumber=\"3\">I clothe the heavens with blackness, and I make sackcloth their covering.</VERS>\r\n      <VERS vnumber=\"4\">The 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.</VERS>\r\n      <VERS vnumber=\"5\">The Lord GOD hath opened mine ear, and I was not rebellious, neither turned away back.</VERS>\r\n      <VERS vnumber=\"6\">I 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.</VERS>\r\n      <VERS vnumber=\"7\">For 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.</VERS>\r\n      <VERS vnumber=\"8\">He is near that justifieth me; who will contend with me? let us stand together: who is mine adversary? let him come near to me.</VERS>\r\n      <VERS vnumber=\"9\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"10\">Who 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.</VERS>\r\n      <VERS vnumber=\"11\">Behold, 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"51\">\r\n      <VERS vnumber=\"1\">Hearken 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.</VERS>\r\n      <VERS vnumber=\"2\">Look unto Abraham your father, and unto Sarah that bare you: for I called him alone, and blessed him, and increased him.</VERS>\r\n      <VERS vnumber=\"3\">For 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.</VERS>\r\n      <VERS vnumber=\"4\">Hearken 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.</VERS>\r\n      <VERS vnumber=\"5\">My 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.</VERS>\r\n      <VERS vnumber=\"6\">Lift 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.</VERS>\r\n      <VERS vnumber=\"7\">Hearken 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.</VERS>\r\n      <VERS vnumber=\"8\">For 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.</VERS>\r\n      <VERS vnumber=\"9\">Awake, 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?</VERS>\r\n      <VERS vnumber=\"10\">Art 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?</VERS>\r\n      <VERS vnumber=\"11\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"12\">I, 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;</VERS>\r\n      <VERS vnumber=\"13\">And 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?</VERS>\r\n      <VERS vnumber=\"14\">The captive exile hasteneth that he may be loosed, and that he should not die in the pit, nor that his bread should fail.</VERS>\r\n      <VERS vnumber=\"15\">But I am the LORD thy God, that divided the sea, whose waves roared: The LORD of hosts is his name.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">Awake, 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.</VERS>\r\n      <VERS vnumber=\"18\">There 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.</VERS>\r\n      <VERS vnumber=\"19\">These 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?</VERS>\r\n      <VERS vnumber=\"20\">Thy 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.</VERS>\r\n      <VERS vnumber=\"21\">Therefore hear now this, thou afflicted, and drunken, but not with wine:</VERS>\r\n      <VERS vnumber=\"22\">Thus 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:</VERS>\r\n      <VERS vnumber=\"23\">But 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"52\">\r\n      <VERS vnumber=\"1\">Awake, 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.</VERS>\r\n      <VERS vnumber=\"2\">Shake thyself from the dust; arise, and sit down, O Jerusalem: loose thyself from the bands of thy neck, O captive daughter of Zion.</VERS>\r\n      <VERS vnumber=\"3\">For thus saith the LORD, Ye have sold yourselves for nought; and ye shall be redeemed without money.</VERS>\r\n      <VERS vnumber=\"4\">For thus saith the Lord GOD, My people went down aforetime into Egypt to sojourn there; and the Assyrian oppressed them without cause.</VERS>\r\n      <VERS vnumber=\"5\">Now 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.</VERS>\r\n      <VERS vnumber=\"6\">Therefore my people shall know my name: therefore they shall know in that day that I am he that doth speak: behold, it is I.</VERS>\r\n      <VERS vnumber=\"7\">How 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!</VERS>\r\n      <VERS vnumber=\"8\">Thy 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.</VERS>\r\n      <VERS vnumber=\"9\">Break forth into joy, sing together, ye waste places of Jerusalem: for the LORD hath comforted his people, he hath redeemed Jerusalem.</VERS>\r\n      <VERS vnumber=\"10\">The 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.</VERS>\r\n      <VERS vnumber=\"11\">Depart 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.</VERS>\r\n      <VERS vnumber=\"12\">For 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.</VERS>\r\n      <VERS vnumber=\"13\">Behold, my servant shall deal prudently, he shall be exalted and extolled, and be very high.</VERS>\r\n      <VERS vnumber=\"14\">As many were astonied at thee; his visage was so marred more than any man, and his form more than the sons of men:</VERS>\r\n      <VERS vnumber=\"15\">So 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"53\">\r\n      <VERS vnumber=\"1\">Who hath believed our report? and to whom is the arm of the LORD revealed?</VERS>\r\n      <VERS vnumber=\"2\">For 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.</VERS>\r\n      <VERS vnumber=\"3\">He 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.</VERS>\r\n      <VERS vnumber=\"4\">Surely he hath borne our griefs, and carried our sorrows: yet we did esteem him stricken, smitten of God, and afflicted.</VERS>\r\n      <VERS vnumber=\"5\">But 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.</VERS>\r\n      <VERS vnumber=\"6\">All 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.</VERS>\r\n      <VERS vnumber=\"7\">He 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.</VERS>\r\n      <VERS vnumber=\"8\">He 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">Yet 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.</VERS>\r\n      <VERS vnumber=\"11\">He 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.</VERS>\r\n      <VERS vnumber=\"12\">Therefore 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"54\">\r\n      <VERS vnumber=\"1\">Sing, 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.</VERS>\r\n      <VERS vnumber=\"2\">Enlarge the place of thy tent, and let them stretch forth the curtains of thine habitations: spare not, lengthen thy cords, and strengthen thy stakes;</VERS>\r\n      <VERS vnumber=\"3\">For 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.</VERS>\r\n      <VERS vnumber=\"4\">Fear 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.</VERS>\r\n      <VERS vnumber=\"5\">For 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.</VERS>\r\n      <VERS vnumber=\"6\">For 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.</VERS>\r\n      <VERS vnumber=\"7\">For a small moment have I forsaken thee; but with great mercies will I gather thee.</VERS>\r\n      <VERS vnumber=\"8\">In 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.</VERS>\r\n      <VERS vnumber=\"9\">For 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.</VERS>\r\n      <VERS vnumber=\"10\">For 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.</VERS>\r\n      <VERS vnumber=\"11\">O thou afflicted, tossed with tempest, and not comforted, behold, I will lay thy stones with fair colours, and lay thy foundations with sapphires.</VERS>\r\n      <VERS vnumber=\"12\">And I will make thy windows of agates, and thy gates of carbuncles, and all thy borders of pleasant stones.</VERS>\r\n      <VERS vnumber=\"13\">And all thy children shall be taught of the LORD; and great shall be the peace of thy children.</VERS>\r\n      <VERS vnumber=\"14\">In 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.</VERS>\r\n      <VERS vnumber=\"15\">Behold, they shall surely gather together, but not by me: whosoever shall gather together against thee shall fall for thy sake.</VERS>\r\n      <VERS vnumber=\"16\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"17\">No 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"55\">\r\n      <VERS vnumber=\"1\">Ho, 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.</VERS>\r\n      <VERS vnumber=\"2\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"3\">Incline 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.</VERS>\r\n      <VERS vnumber=\"4\">Behold, I have given him for a witness to the people, a leader and commander to the people.</VERS>\r\n      <VERS vnumber=\"5\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"6\">Seek ye the LORD while he may be found, call ye upon him while he is near:</VERS>\r\n      <VERS vnumber=\"7\">Let 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.</VERS>\r\n      <VERS vnumber=\"8\">For my thoughts are not your thoughts, neither are your ways my ways, saith the LORD.</VERS>\r\n      <VERS vnumber=\"9\">For as the heavens are higher than the earth, so are my ways higher than your ways, and my thoughts than your thoughts.</VERS>\r\n      <VERS vnumber=\"10\">For 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:</VERS>\r\n      <VERS vnumber=\"11\">So 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.</VERS>\r\n      <VERS vnumber=\"12\">For 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.</VERS>\r\n      <VERS vnumber=\"13\">Instead 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"56\">\r\n      <VERS vnumber=\"1\">Thus saith the LORD, Keep ye judgment, and do justice: for my salvation is near to come, and my righteousness to be revealed.</VERS>\r\n      <VERS vnumber=\"2\">Blessed 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.</VERS>\r\n      <VERS vnumber=\"3\">Neither 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.</VERS>\r\n      <VERS vnumber=\"4\">For thus saith the LORD unto the eunuchs that keep my sabbaths, and choose the things that please me, and take hold of my covenant;</VERS>\r\n      <VERS vnumber=\"5\">Even 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.</VERS>\r\n      <VERS vnumber=\"6\">Also 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;</VERS>\r\n      <VERS vnumber=\"7\">Even 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.</VERS>\r\n      <VERS vnumber=\"8\">The Lord GOD which gathereth the outcasts of Israel saith, Yet will I gather others to him, beside those that are gathered unto him.</VERS>\r\n      <VERS vnumber=\"9\">All ye beasts of the field, come to devour, yea, all ye beasts in the forest.</VERS>\r\n      <VERS vnumber=\"10\">His watchmen are blind: they are all ignorant, they are all dumb dogs, they cannot bark; sleeping, lying down, loving to slumber.</VERS>\r\n      <VERS vnumber=\"11\">Yea, 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.</VERS>\r\n      <VERS vnumber=\"12\">Come 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"57\">\r\n      <VERS vnumber=\"1\">The 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.</VERS>\r\n      <VERS vnumber=\"2\">He shall enter into peace: they shall rest in their beds, each one walking in his uprightness.</VERS>\r\n      <VERS vnumber=\"3\">But draw near hither, ye sons of the sorceress, the seed of the adulterer and the whore.</VERS>\r\n      <VERS vnumber=\"4\">Against 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,</VERS>\r\n      <VERS vnumber=\"5\">Enflaming yourselves with idols under every green tree, slaying the children in the valleys under the clifts of the rocks?</VERS>\r\n      <VERS vnumber=\"6\">Among 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?</VERS>\r\n      <VERS vnumber=\"7\">Upon a lofty and high mountain hast thou set thy bed: even thither wentest thou up to offer sacrifice.</VERS>\r\n      <VERS vnumber=\"8\">Behind 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">Thou 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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?</VERS>\r\n      <VERS vnumber=\"12\">I will declare thy righteousness, and thy works; for they shall not profit thee.</VERS>\r\n      <VERS vnumber=\"13\">When 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;</VERS>\r\n      <VERS vnumber=\"14\">And shall say, Cast ye up, cast ye up, prepare the way, take up the stumblingblock out of the way of my people.</VERS>\r\n      <VERS vnumber=\"15\">For 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.</VERS>\r\n      <VERS vnumber=\"16\">For 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.</VERS>\r\n      <VERS vnumber=\"17\">For 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.</VERS>\r\n      <VERS vnumber=\"18\">I have seen his ways, and will heal him: I will lead him also, and restore comforts unto him and to his mourners.</VERS>\r\n      <VERS vnumber=\"19\">I 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.</VERS>\r\n      <VERS vnumber=\"20\">But the wicked are like the troubled sea, when it cannot rest, whose waters cast up mire and dirt.</VERS>\r\n      <VERS vnumber=\"21\">There is no peace, saith my God, to the wicked.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"58\">\r\n      <VERS vnumber=\"1\">Cry aloud, spare not, lift up thy voice like a trumpet, and shew my people their transgression, and the house of Jacob their sins.</VERS>\r\n      <VERS vnumber=\"2\">Yet 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.</VERS>\r\n      <VERS vnumber=\"3\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"4\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"5\">Is 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?</VERS>\r\n      <VERS vnumber=\"6\">Is 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?</VERS>\r\n      <VERS vnumber=\"7\">Is 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?</VERS>\r\n      <VERS vnumber=\"8\">Then 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.</VERS>\r\n      <VERS vnumber=\"9\">Then 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;</VERS>\r\n      <VERS vnumber=\"10\">And 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 noonday:</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">If 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:</VERS>\r\n      <VERS vnumber=\"14\">Then 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"59\">\r\n      <VERS vnumber=\"1\">Behold, the LORD'S hand is not shortened, that it cannot save; neither his ear heavy, that it cannot hear:</VERS>\r\n      <VERS vnumber=\"2\">But your iniquities have separated between you and your God, and your sins have hid his face from you, that he will not hear.</VERS>\r\n      <VERS vnumber=\"3\">For your hands are defiled with blood, and your fingers with iniquity; your lips have spoken lies, your tongue hath muttered perverseness.</VERS>\r\n      <VERS vnumber=\"4\">None calleth for justice, nor any pleadeth for truth: they trust in vanity, and speak lies; they conceive mischief, and bring forth iniquity.</VERS>\r\n      <VERS vnumber=\"5\">They 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.</VERS>\r\n      <VERS vnumber=\"6\">Their 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.</VERS>\r\n      <VERS vnumber=\"7\">Their 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.</VERS>\r\n      <VERS vnumber=\"8\">The 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.</VERS>\r\n      <VERS vnumber=\"9\">Therefore is judgment far from us, neither doth justice overtake us: we wait for light, but behold obscurity; for brightness, but we walk in darkness.</VERS>\r\n      <VERS vnumber=\"10\">We grope for the wall like the blind, and we grope as if we had no eyes: we stumble at noonday as in the night; we are in desolate places as dead men.</VERS>\r\n      <VERS vnumber=\"11\">We 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.</VERS>\r\n      <VERS vnumber=\"12\">For 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;</VERS>\r\n      <VERS vnumber=\"13\">In 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.</VERS>\r\n      <VERS vnumber=\"14\">And judgment is turned away backward, and justice standeth afar off: for truth is fallen in the street, and equity cannot enter.</VERS>\r\n      <VERS vnumber=\"15\">Yea, 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">For 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 cloke.</VERS>\r\n      <VERS vnumber=\"18\">According to their deeds, accordingly he will repay, fury to his adversaries, recompence to his enemies; to the islands he will repay recompence.</VERS>\r\n      <VERS vnumber=\"19\">So 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.</VERS>\r\n      <VERS vnumber=\"20\">And the Redeemer shall come to Zion, and unto them that turn from transgression in Jacob, saith the LORD.</VERS>\r\n      <VERS vnumber=\"21\">As 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"60\">\r\n      <VERS vnumber=\"1\">Arise, shine; for thy light is come, and the glory of the LORD is risen upon thee.</VERS>\r\n      <VERS vnumber=\"2\">For, 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.</VERS>\r\n      <VERS vnumber=\"3\">And the Gentiles shall come to thy light, and kings to the brightness of thy rising.</VERS>\r\n      <VERS vnumber=\"4\">Lift 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.</VERS>\r\n      <VERS vnumber=\"5\">Then 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.</VERS>\r\n      <VERS vnumber=\"6\">The 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.</VERS>\r\n      <VERS vnumber=\"7\">All 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.</VERS>\r\n      <VERS vnumber=\"8\">Who are these that fly as a cloud, and as the doves to their windows?</VERS>\r\n      <VERS vnumber=\"9\">Surely 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"12\">For the nation and kingdom that will not serve thee shall perish; yea, those nations shall be utterly wasted.</VERS>\r\n      <VERS vnumber=\"13\">The 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.</VERS>\r\n      <VERS vnumber=\"14\">The 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.</VERS>\r\n      <VERS vnumber=\"15\">Whereas thou hast been forsaken and hated, so that no man went through thee, I will make thee an eternal excellency, a joy of many generations.</VERS>\r\n      <VERS vnumber=\"16\">Thou 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.</VERS>\r\n      <VERS vnumber=\"17\">For 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.</VERS>\r\n      <VERS vnumber=\"18\">Violence 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.</VERS>\r\n      <VERS vnumber=\"19\">The 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.</VERS>\r\n      <VERS vnumber=\"20\">Thy 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.</VERS>\r\n      <VERS vnumber=\"21\">Thy 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.</VERS>\r\n      <VERS vnumber=\"22\">A little one shall become a thousand, and a small one a strong nation: I the LORD will hasten it in his time.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"61\">\r\n      <VERS vnumber=\"1\">The 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;</VERS>\r\n      <VERS vnumber=\"2\">To proclaim the acceptable year of the LORD, and the day of vengeance of our God; to comfort all that mourn;</VERS>\r\n      <VERS vnumber=\"3\">To 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And strangers shall stand and feed your flocks, and the sons of the alien shall be your plowmen and your vinedressers.</VERS>\r\n      <VERS vnumber=\"6\">But 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.</VERS>\r\n      <VERS vnumber=\"7\">For 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.</VERS>\r\n      <VERS vnumber=\"8\">For 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">I 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.</VERS>\r\n      <VERS vnumber=\"11\">For 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"62\">\r\n      <VERS vnumber=\"1\">For 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">Thou shalt also be a crown of glory in the hand of the LORD, and a royal diadem in the hand of thy God.</VERS>\r\n      <VERS vnumber=\"4\">Thou 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.</VERS>\r\n      <VERS vnumber=\"5\">For 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.</VERS>\r\n      <VERS vnumber=\"6\">I 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,</VERS>\r\n      <VERS vnumber=\"7\">And give him no rest, till he establish, and till he make Jerusalem a praise in the earth.</VERS>\r\n      <VERS vnumber=\"8\">The 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:</VERS>\r\n      <VERS vnumber=\"9\">But 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.</VERS>\r\n      <VERS vnumber=\"10\">Go 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.</VERS>\r\n      <VERS vnumber=\"11\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"12\">And they shall call them, The holy people, The redeemed of the LORD: and thou shalt be called, Sought out, A city not forsaken.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"63\">\r\n      <VERS vnumber=\"1\">Who 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.</VERS>\r\n      <VERS vnumber=\"2\">Wherefore art thou red in thine apparel, and thy garments like him that treadeth in the winefat?</VERS>\r\n      <VERS vnumber=\"3\">I 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.</VERS>\r\n      <VERS vnumber=\"4\">For the day of vengeance is in mine heart, and the year of my redeemed is come.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">I 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.</VERS>\r\n      <VERS vnumber=\"8\">For he said, Surely they are my people, children that will not lie: so he was their Saviour.</VERS>\r\n      <VERS vnumber=\"9\">In 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.</VERS>\r\n      <VERS vnumber=\"10\">But they rebelled, and vexed his holy Spirit: therefore he was turned to be their enemy, and he fought against them.</VERS>\r\n      <VERS vnumber=\"11\">Then 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?</VERS>\r\n      <VERS vnumber=\"12\">That led them by the right hand of Moses with his glorious arm, dividing the water before them, to make himself an everlasting name?</VERS>\r\n      <VERS vnumber=\"13\">That led them through the deep, as an horse in the wilderness, that they should not stumble?</VERS>\r\n      <VERS vnumber=\"14\">As 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.</VERS>\r\n      <VERS vnumber=\"15\">Look 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?</VERS>\r\n      <VERS vnumber=\"16\">Doubtless 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.</VERS>\r\n      <VERS vnumber=\"17\">O 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.</VERS>\r\n      <VERS vnumber=\"18\">The people of thy holiness have possessed it but a little while: our adversaries have trodden down thy sanctuary.</VERS>\r\n      <VERS vnumber=\"19\">We are thine: thou never barest rule over them; they were not called by thy name.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"64\">\r\n      <VERS vnumber=\"1\">Oh that thou wouldest rend the heavens, that thou wouldest come down, that the mountains might flow down at thy presence,</VERS>\r\n      <VERS vnumber=\"2\">As 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!</VERS>\r\n      <VERS vnumber=\"3\">When thou didst terrible things which we looked not for, thou camest down, the mountains flowed down at thy presence.</VERS>\r\n      <VERS vnumber=\"4\">For 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.</VERS>\r\n      <VERS vnumber=\"5\">Thou 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.</VERS>\r\n      <VERS vnumber=\"6\">But 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">But now, O LORD, thou art our father; we are the clay, and thou our potter; and we all are the work of thy hand.</VERS>\r\n      <VERS vnumber=\"9\">Be not wroth very sore, O LORD, neither remember iniquity for ever: behold, see, we beseech thee, we are all thy people.</VERS>\r\n      <VERS vnumber=\"10\">Thy holy cities are a wilderness, Zion is a wilderness, Jerusalem a desolation.</VERS>\r\n      <VERS vnumber=\"11\">Our holy and our beautiful house, where our fathers praised thee, is burned up with fire: and all our pleasant things are laid waste.</VERS>\r\n      <VERS vnumber=\"12\">Wilt thou refrain thyself for these things, O LORD? wilt thou hold thy peace, and afflict us very sore?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"65\">\r\n      <VERS vnumber=\"1\">I 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.</VERS>\r\n      <VERS vnumber=\"2\">I 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;</VERS>\r\n      <VERS vnumber=\"3\">A people that provoketh me to anger continually to my face; that sacrificeth in gardens, and burneth incense upon altars of brick;</VERS>\r\n      <VERS vnumber=\"4\">Which remain among the graves, and lodge in the monuments, which eat swine's flesh, and broth of abominable things is in their vessels;</VERS>\r\n      <VERS vnumber=\"5\">Which 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.</VERS>\r\n      <VERS vnumber=\"6\">Behold, it is written before me: I will not keep silence, but will recompense, even recompense into their bosom,</VERS>\r\n      <VERS vnumber=\"7\">Your 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.</VERS>\r\n      <VERS vnumber=\"8\">Thus 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">But 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.</VERS>\r\n      <VERS vnumber=\"12\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"13\">Therefore 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:</VERS>\r\n      <VERS vnumber=\"14\">Behold, my servants shall sing for joy of heart, but ye shall cry for sorrow of heart, and shall howl for vexation of spirit.</VERS>\r\n      <VERS vnumber=\"15\">And 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:</VERS>\r\n      <VERS vnumber=\"16\">That 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.</VERS>\r\n      <VERS vnumber=\"17\">For, behold, I create new heavens and a new earth: and the former shall not be remembered, nor come into mind.</VERS>\r\n      <VERS vnumber=\"18\">But be ye glad and rejoice for ever in that which I create: for, behold, I create Jerusalem a rejoicing, and her people a joy.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">There 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.</VERS>\r\n      <VERS vnumber=\"21\">And they shall build houses, and inhabit them; and they shall plant vineyards, and eat the fruit of them.</VERS>\r\n      <VERS vnumber=\"22\">They 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.</VERS>\r\n      <VERS vnumber=\"23\">They 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.</VERS>\r\n      <VERS vnumber=\"24\">And it shall come to pass, that before they call, I will answer; and while they are yet speaking, I will hear.</VERS>\r\n      <VERS vnumber=\"25\">The 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"66\">\r\n      <VERS vnumber=\"1\">Thus 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?</VERS>\r\n      <VERS vnumber=\"2\">For 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.</VERS>\r\n      <VERS vnumber=\"3\">He 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.</VERS>\r\n      <VERS vnumber=\"4\">I 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.</VERS>\r\n      <VERS vnumber=\"5\">Hear 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.</VERS>\r\n      <VERS vnumber=\"6\">A voice of noise from the city, a voice from the temple, a voice of the LORD that rendereth recompence to his enemies.</VERS>\r\n      <VERS vnumber=\"7\">Before she travailed, she brought forth; before her pain came, she was delivered of a man child.</VERS>\r\n      <VERS vnumber=\"8\">Who 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.</VERS>\r\n      <VERS vnumber=\"9\">Shall 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.</VERS>\r\n      <VERS vnumber=\"10\">Rejoice ye with Jerusalem, and be glad with her, all ye that love her: rejoice for joy with her, all ye that mourn for her:</VERS>\r\n      <VERS vnumber=\"11\">That 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.</VERS>\r\n      <VERS vnumber=\"12\">For 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.</VERS>\r\n      <VERS vnumber=\"13\">As one whom his mother comforteth, so will I comfort you; and ye shall be comforted in Jerusalem.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">For, 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.</VERS>\r\n      <VERS vnumber=\"16\">For by fire and by his sword will the LORD plead with all flesh: and the slain of the LORD shall be many.</VERS>\r\n      <VERS vnumber=\"17\">They 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.</VERS>\r\n      <VERS vnumber=\"18\">For 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And I will also take of them for priests and for Levites, saith the LORD.</VERS>\r\n      <VERS vnumber=\"22\">For 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.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"24\" bname=\"Jeremiah\" bsname=\"Jer\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">The words of Jeremiah the son of Hilkiah, of the priests that were in Anathoth in the land of Benjamin:</VERS>\r\n      <VERS vnumber=\"2\">To 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.</VERS>\r\n      <VERS vnumber=\"3\">It 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.</VERS>\r\n      <VERS vnumber=\"4\">Then the word of the LORD came unto me, saying,</VERS>\r\n      <VERS vnumber=\"5\">Before 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.</VERS>\r\n      <VERS vnumber=\"6\">Then said I, Ah, Lord GOD! behold, I cannot speak: for I am a child.</VERS>\r\n      <VERS vnumber=\"7\">But 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.</VERS>\r\n      <VERS vnumber=\"8\">Be not afraid of their faces: for I am with thee to deliver thee, saith the LORD.</VERS>\r\n      <VERS vnumber=\"9\">Then 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.</VERS>\r\n      <VERS vnumber=\"10\">See, 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.</VERS>\r\n      <VERS vnumber=\"11\">Moreover the word of the LORD came unto me, saying, Jeremiah, what seest thou? And I said, I see a rod of an almond tree.</VERS>\r\n      <VERS vnumber=\"12\">Then said the LORD unto me, Thou hast well seen: for I will hasten my word to perform it.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">Then the LORD said unto me, Out of the north an evil shall break forth upon all the inhabitants of the land.</VERS>\r\n      <VERS vnumber=\"15\">For, 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">Thou 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.</VERS>\r\n      <VERS vnumber=\"18\">For, 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.</VERS>\r\n      <VERS vnumber=\"19\">And they shall fight against thee; but they shall not prevail against thee; for I am with thee, saith the LORD, to deliver thee.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">Moreover the word of the LORD came to me, saying,</VERS>\r\n      <VERS vnumber=\"2\">Go 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.</VERS>\r\n      <VERS vnumber=\"3\">Israel 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.</VERS>\r\n      <VERS vnumber=\"4\">Hear ye the word of the LORD, O house of Jacob, and all the families of the house of Israel:</VERS>\r\n      <VERS vnumber=\"5\">Thus 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?</VERS>\r\n      <VERS vnumber=\"6\">Neither 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?</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">The 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.</VERS>\r\n      <VERS vnumber=\"9\">Wherefore I will yet plead with you, saith the LORD, and with your children's children will I plead.</VERS>\r\n      <VERS vnumber=\"10\">For pass over the isles of Chittim, and see; and send unto Kedar, and consider diligently, and see if there be such a thing.</VERS>\r\n      <VERS vnumber=\"11\">Hath a nation changed their gods, which are yet no gods? but my people have changed their glory for that which doth not profit.</VERS>\r\n      <VERS vnumber=\"12\">Be astonished, O ye heavens, at this, and be horribly afraid, be ye very desolate, saith the LORD.</VERS>\r\n      <VERS vnumber=\"13\">For 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.</VERS>\r\n      <VERS vnumber=\"14\">Is Israel a servant? is he a homeborn slave? why is he spoiled?</VERS>\r\n      <VERS vnumber=\"15\">The young lions roared upon him, and yelled, and they made his land waste: his cities are burned without inhabitant.</VERS>\r\n      <VERS vnumber=\"16\">Also the children of Noph and Tahapanes have broken the crown of thy head.</VERS>\r\n      <VERS vnumber=\"17\">Hast thou not procured this unto thyself, in that thou hast forsaken the LORD thy God, when he led thee by the way?</VERS>\r\n      <VERS vnumber=\"18\">And 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?</VERS>\r\n      <VERS vnumber=\"19\">Thine 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.</VERS>\r\n      <VERS vnumber=\"20\">For 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.</VERS>\r\n      <VERS vnumber=\"21\">Yet 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?</VERS>\r\n      <VERS vnumber=\"22\">For though thou wash thee with nitre, and take thee much soap, yet thine iniquity is marked before me, saith the Lord GOD.</VERS>\r\n      <VERS vnumber=\"23\">How 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;</VERS>\r\n      <VERS vnumber=\"24\">A 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.</VERS>\r\n      <VERS vnumber=\"25\">Withhold 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.</VERS>\r\n      <VERS vnumber=\"26\">As 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,</VERS>\r\n      <VERS vnumber=\"27\">Saying 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.</VERS>\r\n      <VERS vnumber=\"28\">But 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.</VERS>\r\n      <VERS vnumber=\"29\">Wherefore will ye plead with me? ye all have transgressed against me, saith the LORD.</VERS>\r\n      <VERS vnumber=\"30\">In vain have I smitten your children; they received no correction: your own sword hath devoured your prophets, like a destroying lion.</VERS>\r\n      <VERS vnumber=\"31\">O 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?</VERS>\r\n      <VERS vnumber=\"32\">Can a maid forget her ornaments, or a bride her attire? yet my people have forgotten me days without number.</VERS>\r\n      <VERS vnumber=\"33\">Why trimmest thou thy way to seek love? therefore hast thou also taught the wicked ones thy ways.</VERS>\r\n      <VERS vnumber=\"34\">Also 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.</VERS>\r\n      <VERS vnumber=\"35\">Yet 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.</VERS>\r\n      <VERS vnumber=\"36\">Why gaddest thou about so much to change thy way? thou also shalt be ashamed of Egypt, as thou wast ashamed of Assyria.</VERS>\r\n      <VERS vnumber=\"37\">Yea, 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">They 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.</VERS>\r\n      <VERS vnumber=\"2\">Lift 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.</VERS>\r\n      <VERS vnumber=\"3\">Therefore the showers have been withholden, and there hath been no latter rain; and thou hadst a whore's forehead, thou refusedst to be ashamed.</VERS>\r\n      <VERS vnumber=\"4\">Wilt thou not from this time cry unto me, My father, thou art the guide of my youth?</VERS>\r\n      <VERS vnumber=\"5\">Will he reserve his anger for ever? will he keep it to the end? Behold, thou hast spoken and done evil things as thou couldest.</VERS>\r\n      <VERS vnumber=\"6\">The 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.</VERS>\r\n      <VERS vnumber=\"7\">And I said after she had done all these things, Turn thou unto me. But she returned not. And her treacherous sister Judah saw it.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And it came to pass through the lightness of her whoredom, that she defiled the land, and committed adultery with stones and with stocks.</VERS>\r\n      <VERS vnumber=\"10\">And yet for all this her treacherous sister Judah hath not turned unto me with her whole heart, but feignedly, saith the LORD.</VERS>\r\n      <VERS vnumber=\"11\">And the LORD said unto me, The backsliding Israel hath justified herself more than treacherous Judah.</VERS>\r\n      <VERS vnumber=\"12\">Go 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.</VERS>\r\n      <VERS vnumber=\"13\">Only 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.</VERS>\r\n      <VERS vnumber=\"14\">Turn, 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:</VERS>\r\n      <VERS vnumber=\"15\">And I will give you pastors according to mine heart, which shall feed you with knowledge and understanding.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">At 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.</VERS>\r\n      <VERS vnumber=\"18\">In 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.</VERS>\r\n      <VERS vnumber=\"19\">But 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.</VERS>\r\n      <VERS vnumber=\"20\">Surely as a wife treacherously departeth from her husband, so have ye dealt treacherously with me, O house of Israel, saith the LORD.</VERS>\r\n      <VERS vnumber=\"21\">A 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.</VERS>\r\n      <VERS vnumber=\"22\">Return, ye backsliding children, and I will heal your backslidings. Behold, we come unto thee; for thou art the LORD our God.</VERS>\r\n      <VERS vnumber=\"23\">Truly 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.</VERS>\r\n      <VERS vnumber=\"24\">For shame hath devoured the labour of our fathers from our youth; their flocks and their herds, their sons and their daughters.</VERS>\r\n      <VERS vnumber=\"25\">We 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">If 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">For thus saith the LORD to the men of Judah and Jerusalem, Break up your fallow ground, and sow not among thorns.</VERS>\r\n      <VERS vnumber=\"4\">Circumcise 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.</VERS>\r\n      <VERS vnumber=\"5\">Declare 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.</VERS>\r\n      <VERS vnumber=\"6\">Set up the standard toward Zion: retire, stay not: for I will bring evil from the north, and a great destruction.</VERS>\r\n      <VERS vnumber=\"7\">The 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.</VERS>\r\n      <VERS vnumber=\"8\">For this gird you with sackcloth, lament and howl: for the fierce anger of the LORD is not turned back from us.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">Then 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.</VERS>\r\n      <VERS vnumber=\"11\">At 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,</VERS>\r\n      <VERS vnumber=\"12\">Even a full wind from those places shall come unto me: now also will I give sentence against them.</VERS>\r\n      <VERS vnumber=\"13\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"14\">O Jerusalem, wash thine heart from wickedness, that thou mayest be saved. How long shall thy vain thoughts lodge within thee?</VERS>\r\n      <VERS vnumber=\"15\">For a voice declareth from Dan, and publisheth affliction from mount Ephraim.</VERS>\r\n      <VERS vnumber=\"16\">Make 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.</VERS>\r\n      <VERS vnumber=\"17\">As keepers of a field, are they against her round about; because she hath been rebellious against me, saith the LORD.</VERS>\r\n      <VERS vnumber=\"18\">Thy way and thy doings have procured these things unto thee; this is thy wickedness, because it is bitter, because it reacheth unto thine heart.</VERS>\r\n      <VERS vnumber=\"19\">My 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.</VERS>\r\n      <VERS vnumber=\"20\">Destruction upon destruction is cried; for the whole land is spoiled: suddenly are my tents spoiled, and my curtains in a moment.</VERS>\r\n      <VERS vnumber=\"21\">How long shall I see the standard, and hear the sound of the trumpet?</VERS>\r\n      <VERS vnumber=\"22\">For 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.</VERS>\r\n      <VERS vnumber=\"23\">I beheld the earth, and, lo, it was without form, and void; and the heavens, and they had no light.</VERS>\r\n      <VERS vnumber=\"24\">I beheld the mountains, and, lo, they trembled, and all the hills moved lightly.</VERS>\r\n      <VERS vnumber=\"25\">I beheld, and, lo, there was no man, and all the birds of the heavens were fled.</VERS>\r\n      <VERS vnumber=\"26\">I 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.</VERS>\r\n      <VERS vnumber=\"27\">For thus hath the LORD said, The whole land shall be desolate; yet will I not make a full end.</VERS>\r\n      <VERS vnumber=\"28\">For 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.</VERS>\r\n      <VERS vnumber=\"29\">The 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.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">For 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">Run 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.</VERS>\r\n      <VERS vnumber=\"2\">And though they say, The LORD liveth; surely they swear falsely.</VERS>\r\n      <VERS vnumber=\"3\">O 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.</VERS>\r\n      <VERS vnumber=\"4\">Therefore I said, Surely these are poor; they are foolish: for they know not the way of the LORD, nor the judgment of their God.</VERS>\r\n      <VERS vnumber=\"5\">I 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.</VERS>\r\n      <VERS vnumber=\"6\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"7\">How 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.</VERS>\r\n      <VERS vnumber=\"8\">They were as fed horses in the morning: every one neighed after his neighbour's wife.</VERS>\r\n      <VERS vnumber=\"9\">Shall I not visit for these things? saith the LORD: and shall not my soul be avenged on such a nation as this?</VERS>\r\n      <VERS vnumber=\"10\">Go ye up upon her walls, and destroy; but make not a full end: take away her battlements; for they are not the LORD'S.</VERS>\r\n      <VERS vnumber=\"11\">For the house of Israel and the house of Judah have dealt very treacherously against me, saith the LORD.</VERS>\r\n      <VERS vnumber=\"12\">They have belied the LORD, and said, It is not he; neither shall evil come upon us; neither shall we see sword nor famine:</VERS>\r\n      <VERS vnumber=\"13\">And the prophets shall become wind, and the word is not in them: thus shall it be done unto them.</VERS>\r\n      <VERS vnumber=\"14\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"15\">Lo, 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.</VERS>\r\n      <VERS vnumber=\"16\">Their quiver is as an open sepulchre, they are all mighty men.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">Nevertheless in those days, saith the LORD, I will not make a full end with you.</VERS>\r\n      <VERS vnumber=\"19\">And 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 yours.</VERS>\r\n      <VERS vnumber=\"20\">Declare this in the house of Jacob, and publish it in Judah, saying,</VERS>\r\n      <VERS vnumber=\"21\">Hear now this, O foolish people, and without understanding; which have eyes, and see not; which have ears, and hear not:</VERS>\r\n      <VERS vnumber=\"22\">Fear 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?</VERS>\r\n      <VERS vnumber=\"23\">But this people hath a revolting and a rebellious heart; they are revolted and gone.</VERS>\r\n      <VERS vnumber=\"24\">Neither 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.</VERS>\r\n      <VERS vnumber=\"25\">Your iniquities have turned away these things, and your sins have withholden good things from you.</VERS>\r\n      <VERS vnumber=\"26\">For among my people are found wicked men: they lay wait, as he that setteth snares; they set a trap, they catch men.</VERS>\r\n      <VERS vnumber=\"27\">As a cage is full of birds, so are their houses full of deceit: therefore they are become great, and waxen rich.</VERS>\r\n      <VERS vnumber=\"28\">They 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.</VERS>\r\n      <VERS vnumber=\"29\">Shall I not visit for these things? saith the LORD: shall not my soul be avenged on such a nation as this?</VERS>\r\n      <VERS vnumber=\"30\">A wonderful and horrible thing is committed in the land;</VERS>\r\n      <VERS vnumber=\"31\">The 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?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">O 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.</VERS>\r\n      <VERS vnumber=\"2\">I have likened the daughter of Zion to a comely and delicate woman.</VERS>\r\n      <VERS vnumber=\"3\">The 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.</VERS>\r\n      <VERS vnumber=\"4\">Prepare 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.</VERS>\r\n      <VERS vnumber=\"5\">Arise, and let us go by night, and let us destroy her palaces.</VERS>\r\n      <VERS vnumber=\"6\">For 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.</VERS>\r\n      <VERS vnumber=\"7\">As 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.</VERS>\r\n      <VERS vnumber=\"8\">Be thou instructed, O Jerusalem, lest my soul depart from thee; lest I make thee desolate, a land not inhabited.</VERS>\r\n      <VERS vnumber=\"9\">Thus 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.</VERS>\r\n      <VERS vnumber=\"10\">To 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.</VERS>\r\n      <VERS vnumber=\"11\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">For 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.</VERS>\r\n      <VERS vnumber=\"14\">They have healed also the hurt of the daughter of my people slightly, saying, Peace, peace; when there is no peace.</VERS>\r\n      <VERS vnumber=\"15\">Were 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.</VERS>\r\n      <VERS vnumber=\"16\">Thus 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.</VERS>\r\n      <VERS vnumber=\"17\">Also I set watchmen over you, saying, Hearken to the sound of the trumpet. But they said, We will not hearken.</VERS>\r\n      <VERS vnumber=\"18\">Therefore hear, ye nations, and know, O congregation, what is among them.</VERS>\r\n      <VERS vnumber=\"19\">Hear, 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.</VERS>\r\n      <VERS vnumber=\"20\">To 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.</VERS>\r\n      <VERS vnumber=\"21\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"22\">Thus saith the LORD, Behold, a people cometh from the north country, and a great nation shall be raised from the sides of the earth.</VERS>\r\n      <VERS vnumber=\"23\">They 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.</VERS>\r\n      <VERS vnumber=\"24\">We have heard the fame thereof: our hands wax feeble: anguish hath taken hold of us, and pain, as of a woman in travail.</VERS>\r\n      <VERS vnumber=\"25\">Go not forth into the field, nor walk by the way; for the sword of the enemy and fear is on every side.</VERS>\r\n      <VERS vnumber=\"26\">O 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.</VERS>\r\n      <VERS vnumber=\"27\">I have set thee for a tower and a fortress among my people, that thou mayest know and try their way.</VERS>\r\n      <VERS vnumber=\"28\">They are all grievous revolters, walking with slanders: they are brass and iron; they are all corrupters.</VERS>\r\n      <VERS vnumber=\"29\">The bellows are burned, the lead is consumed of the fire; the founder melteth in vain: for the wicked are not plucked away.</VERS>\r\n      <VERS vnumber=\"30\">Reprobate silver shall men call them, because the LORD hath rejected them.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">The word that came to Jeremiah from the LORD, saying,</VERS>\r\n      <VERS vnumber=\"2\">Stand 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.</VERS>\r\n      <VERS vnumber=\"3\">Thus 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.</VERS>\r\n      <VERS vnumber=\"4\">Trust ye not in lying words, saying, The temple of the LORD, The temple of the LORD, The temple of the LORD, are these.</VERS>\r\n      <VERS vnumber=\"5\">For if ye throughly amend your ways and your doings; if ye throughly execute judgment between a man and his neighbour;</VERS>\r\n      <VERS vnumber=\"6\">If 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:</VERS>\r\n      <VERS vnumber=\"7\">Then will I cause you to dwell in this place, in the land that I gave to your fathers, for ever and ever.</VERS>\r\n      <VERS vnumber=\"8\">Behold, ye trust in lying words, that cannot profit.</VERS>\r\n      <VERS vnumber=\"9\">Will ye steal, murder, and commit adultery, and swear falsely, and burn incense unto Baal, and walk after other gods whom ye know not;</VERS>\r\n      <VERS vnumber=\"10\">And come and stand before me in this house, which is called by my name, and say, We are delivered to do all these abominations?</VERS>\r\n      <VERS vnumber=\"11\">Is 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.</VERS>\r\n      <VERS vnumber=\"12\">But 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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;</VERS>\r\n      <VERS vnumber=\"14\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"15\">And I will cast you out of my sight, as I have cast out all your brethren, even the whole seed of Ephraim.</VERS>\r\n      <VERS vnumber=\"16\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"17\">Seest thou not what they do in the cities of Judah and in the streets of Jerusalem?</VERS>\r\n      <VERS vnumber=\"18\">The 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.</VERS>\r\n      <VERS vnumber=\"19\">Do they provoke me to anger? saith the LORD: do they not provoke themselves to the confusion of their own faces?</VERS>\r\n      <VERS vnumber=\"20\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"21\">Thus saith the LORD of hosts, the God of Israel; Put your burnt offerings unto your sacrifices, and eat flesh.</VERS>\r\n      <VERS vnumber=\"22\">For 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:</VERS>\r\n      <VERS vnumber=\"23\">But 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.</VERS>\r\n      <VERS vnumber=\"24\">But 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.</VERS>\r\n      <VERS vnumber=\"25\">Since 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:</VERS>\r\n      <VERS vnumber=\"26\">Yet they hearkened not unto me, nor inclined their ear, but hardened their neck: they did worse than their fathers.</VERS>\r\n      <VERS vnumber=\"27\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"28\">But 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.</VERS>\r\n      <VERS vnumber=\"29\">Cut 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.</VERS>\r\n      <VERS vnumber=\"30\">For 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.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n      <VERS vnumber=\"32\">Therefore, 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.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">Then 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">At 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:</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">Moreover thou shalt say unto them, Thus saith the LORD; Shall they fall, and not arise? shall he turn away, and not return?</VERS>\r\n      <VERS vnumber=\"5\">Why then is this people of Jerusalem slidden back by a perpetual backsliding? they hold fast deceit, they refuse to return.</VERS>\r\n      <VERS vnumber=\"6\">I 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.</VERS>\r\n      <VERS vnumber=\"7\">Yea, 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.</VERS>\r\n      <VERS vnumber=\"8\">How 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.</VERS>\r\n      <VERS vnumber=\"9\">The wise men are ashamed, they are dismayed and taken: lo, they have rejected the word of the LORD; and what wisdom is in them?</VERS>\r\n      <VERS vnumber=\"10\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"11\">For they have healed the hurt of the daughter of my people slightly, saying, Peace, peace; when there is no peace.</VERS>\r\n      <VERS vnumber=\"12\">Were 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.</VERS>\r\n      <VERS vnumber=\"13\">I 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.</VERS>\r\n      <VERS vnumber=\"14\">Why 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.</VERS>\r\n      <VERS vnumber=\"15\">We looked for peace, but no good came; and for a time of health, and behold trouble!</VERS>\r\n      <VERS vnumber=\"16\">The 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.</VERS>\r\n      <VERS vnumber=\"17\">For, behold, I will send serpents, cockatrices, among you, which will not be charmed, and they shall bite you, saith the LORD.</VERS>\r\n      <VERS vnumber=\"18\">When I would comfort myself against sorrow, my heart is faint in me.</VERS>\r\n      <VERS vnumber=\"19\">Behold 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?</VERS>\r\n      <VERS vnumber=\"20\">The harvest is past, the summer is ended, and we are not saved.</VERS>\r\n      <VERS vnumber=\"21\">For the hurt of the daughter of my people am I hurt; I am black; astonishment hath taken hold on me.</VERS>\r\n      <VERS vnumber=\"22\">Is there no balm in Gilead; is there no physician there? why then is not the health of the daughter of my people recovered?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">Oh 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!</VERS>\r\n      <VERS vnumber=\"2\">Oh 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">Take 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">Thine habitation is in the midst of deceit; through deceit they refuse to know me, saith the LORD.</VERS>\r\n      <VERS vnumber=\"7\">Therefore 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?</VERS>\r\n      <VERS vnumber=\"8\">Their 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.</VERS>\r\n      <VERS vnumber=\"9\">Shall I not visit them for these things? saith the LORD: shall not my soul be avenged on such a nation as this?</VERS>\r\n      <VERS vnumber=\"10\">For 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.</VERS>\r\n      <VERS vnumber=\"11\">And I will make Jerusalem heaps, and a den of dragons; and I will make the cities of Judah desolate, without an inhabitant.</VERS>\r\n      <VERS vnumber=\"12\">Who 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?</VERS>\r\n      <VERS vnumber=\"13\">And the LORD saith, Because they have forsaken my law which I set before them, and have not obeyed my voice, neither walked therein;</VERS>\r\n      <VERS vnumber=\"14\">But have walked after the imagination of their own heart, and after Baalim, which their fathers taught them:</VERS>\r\n      <VERS vnumber=\"15\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"16\">I 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.</VERS>\r\n      <VERS vnumber=\"17\">Thus 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:</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">For 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.</VERS>\r\n      <VERS vnumber=\"20\">Yet 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.</VERS>\r\n      <VERS vnumber=\"21\">For 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.</VERS>\r\n      <VERS vnumber=\"22\">Speak, 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.</VERS>\r\n      <VERS vnumber=\"23\">Thus 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:</VERS>\r\n      <VERS vnumber=\"24\">But 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.</VERS>\r\n      <VERS vnumber=\"25\">Behold, the days come, saith the LORD, that I will punish all them which are circumcised with the uncircumcised;</VERS>\r\n      <VERS vnumber=\"26\">Egypt, 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">Hear ye the word which the LORD speaketh unto you, O house of Israel:</VERS>\r\n      <VERS vnumber=\"2\">Thus 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.</VERS>\r\n      <VERS vnumber=\"3\">For 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.</VERS>\r\n      <VERS vnumber=\"4\">They deck it with silver and with gold; they fasten it with nails and with hammers, that it move not.</VERS>\r\n      <VERS vnumber=\"5\">They 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.</VERS>\r\n      <VERS vnumber=\"6\">Forasmuch as there is none like unto thee, O LORD; thou art great, and thy name is great in might.</VERS>\r\n      <VERS vnumber=\"7\">Who 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.</VERS>\r\n      <VERS vnumber=\"8\">But they are altogether brutish and foolish: the stock is a doctrine of vanities.</VERS>\r\n      <VERS vnumber=\"9\">Silver 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.</VERS>\r\n      <VERS vnumber=\"10\">But 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.</VERS>\r\n      <VERS vnumber=\"11\">Thus 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.</VERS>\r\n      <VERS vnumber=\"12\">He hath made the earth by his power, he hath established the world by his wisdom, and hath stretched out the heavens by his discretion.</VERS>\r\n      <VERS vnumber=\"13\">When 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.</VERS>\r\n      <VERS vnumber=\"14\">Every 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.</VERS>\r\n      <VERS vnumber=\"15\">They are vanity, and the work of errors: in the time of their visitation they shall perish.</VERS>\r\n      <VERS vnumber=\"16\">The 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.</VERS>\r\n      <VERS vnumber=\"17\">Gather up thy wares out of the land, O inhabitant of the fortress.</VERS>\r\n      <VERS vnumber=\"18\">For 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.</VERS>\r\n      <VERS vnumber=\"19\">Woe is me for my hurt! my wound is grievous: but I said, Truly this is a grief, and I must bear it.</VERS>\r\n      <VERS vnumber=\"20\">My 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.</VERS>\r\n      <VERS vnumber=\"21\">For the pastors are become brutish, and have not sought the LORD: therefore they shall not prosper, and all their flocks shall be scattered.</VERS>\r\n      <VERS vnumber=\"22\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"23\">O LORD, I know that the way of man is not in himself: it is not in man that walketh to direct his steps.</VERS>\r\n      <VERS vnumber=\"24\">O LORD, correct me, but with judgment; not in thine anger, lest thou bring me to nothing.</VERS>\r\n      <VERS vnumber=\"25\">Pour 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">The word that came to Jeremiah from the LORD, saying,</VERS>\r\n      <VERS vnumber=\"2\">Hear ye the words of this covenant, and speak unto the men of Judah, and to the inhabitants of Jerusalem;</VERS>\r\n      <VERS vnumber=\"3\">And say thou unto them, Thus saith the LORD God of Israel; Cursed be the man that obeyeth not the words of this covenant,</VERS>\r\n      <VERS vnumber=\"4\">Which 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:</VERS>\r\n      <VERS vnumber=\"5\">That 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.</VERS>\r\n      <VERS vnumber=\"6\">Then 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.</VERS>\r\n      <VERS vnumber=\"7\">For 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.</VERS>\r\n      <VERS vnumber=\"8\">Yet 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.</VERS>\r\n      <VERS vnumber=\"9\">And the LORD said unto me, A conspiracy is found among the men of Judah, and among the inhabitants of Jerusalem.</VERS>\r\n      <VERS vnumber=\"10\">They 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.</VERS>\r\n      <VERS vnumber=\"11\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"12\">Then 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.</VERS>\r\n      <VERS vnumber=\"13\">For 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.</VERS>\r\n      <VERS vnumber=\"14\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"15\">What 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.</VERS>\r\n      <VERS vnumber=\"16\">The 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.</VERS>\r\n      <VERS vnumber=\"17\">For 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.</VERS>\r\n      <VERS vnumber=\"18\">And the LORD hath given me knowledge of it, and I know it: then thou shewedst me their doings.</VERS>\r\n      <VERS vnumber=\"19\">But 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.</VERS>\r\n      <VERS vnumber=\"20\">But, 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.</VERS>\r\n      <VERS vnumber=\"21\">Therefore 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:</VERS>\r\n      <VERS vnumber=\"22\">Therefore 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:</VERS>\r\n      <VERS vnumber=\"23\">And there shall be no remnant of them: for I will bring evil upon the men of Anathoth, even the year of their visitation.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">Righteous 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?</VERS>\r\n      <VERS vnumber=\"2\">Thou 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.</VERS>\r\n      <VERS vnumber=\"3\">But 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.</VERS>\r\n      <VERS vnumber=\"4\">How 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.</VERS>\r\n      <VERS vnumber=\"5\">If 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?</VERS>\r\n      <VERS vnumber=\"6\">For 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.</VERS>\r\n      <VERS vnumber=\"7\">I have forsaken mine house, I have left mine heritage; I have given the dearly beloved of my soul into the hand of her enemies.</VERS>\r\n      <VERS vnumber=\"8\">Mine heritage is unto me as a lion in the forest; it crieth out against me: therefore have I hated it.</VERS>\r\n      <VERS vnumber=\"9\">Mine 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.</VERS>\r\n      <VERS vnumber=\"10\">Many pastors have destroyed my vineyard, they have trodden my portion under foot, they have made my pleasant portion a desolate wilderness.</VERS>\r\n      <VERS vnumber=\"11\">They have made it desolate, and being desolate it mourneth unto me; the whole land is made desolate, because no man layeth it to heart.</VERS>\r\n      <VERS vnumber=\"12\">The 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.</VERS>\r\n      <VERS vnumber=\"13\">They 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.</VERS>\r\n      <VERS vnumber=\"14\">Thus 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">But if they will not obey, I will utterly pluck up and destroy that nation, saith the LORD.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">Thus saith the LORD unto me, Go and get thee a linen girdle, and put it upon thy loins, and put it not in water.</VERS>\r\n      <VERS vnumber=\"2\">So I got a girdle according to the word of the LORD, and put it on my loins.</VERS>\r\n      <VERS vnumber=\"3\">And the word of the LORD came unto me the second time, saying,</VERS>\r\n      <VERS vnumber=\"4\">Take 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.</VERS>\r\n      <VERS vnumber=\"5\">So I went, and hid it by Euphrates, as the LORD commanded me.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">Then 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.</VERS>\r\n      <VERS vnumber=\"8\">Then the word of the LORD came unto me, saying,</VERS>\r\n      <VERS vnumber=\"9\">Thus saith the LORD, After this manner will I mar the pride of Judah, and the great pride of Jerusalem.</VERS>\r\n      <VERS vnumber=\"10\">This 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.</VERS>\r\n      <VERS vnumber=\"11\">For 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.</VERS>\r\n      <VERS vnumber=\"12\">Therefore 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?</VERS>\r\n      <VERS vnumber=\"13\">Then 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">Hear ye, and give ear; be not proud: for the LORD hath spoken.</VERS>\r\n      <VERS vnumber=\"16\">Give 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.</VERS>\r\n      <VERS vnumber=\"17\">But 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.</VERS>\r\n      <VERS vnumber=\"18\">Say unto the king and to the queen, Humble yourselves, sit down: for your principalities shall come down, even the crown of your glory.</VERS>\r\n      <VERS vnumber=\"19\">The 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.</VERS>\r\n      <VERS vnumber=\"20\">Lift up your eyes, and behold them that come from the north: where is the flock that was given thee, thy beautiful flock?</VERS>\r\n      <VERS vnumber=\"21\">What 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?</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">Can the Ethiopian change his skin, or the leopard his spots? then may ye also do good, that are accustomed to do evil.</VERS>\r\n      <VERS vnumber=\"24\">Therefore will I scatter them as the stubble that passeth away by the wind of the wilderness.</VERS>\r\n      <VERS vnumber=\"25\">This is thy lot, the portion of thy measures from me, saith the LORD; because thou hast forgotten me, and trusted in falsehood.</VERS>\r\n      <VERS vnumber=\"26\">Therefore will I discover thy skirts upon thy face, that thy shame may appear.</VERS>\r\n      <VERS vnumber=\"27\">I 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?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">The word of the LORD that came to Jeremiah concerning the dearth.</VERS>\r\n      <VERS vnumber=\"2\">Judah mourneth, and the gates thereof languish; they are black unto the ground; and the cry of Jerusalem is gone up.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">Because the ground is chapt, for there was no rain in the earth, the plowmen were ashamed, they covered their heads.</VERS>\r\n      <VERS vnumber=\"5\">Yea, the hind also calved in the field, and forsook it, because there was no grass.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">O 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.</VERS>\r\n      <VERS vnumber=\"8\">O 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?</VERS>\r\n      <VERS vnumber=\"9\">Why 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.</VERS>\r\n      <VERS vnumber=\"10\">Thus 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.</VERS>\r\n      <VERS vnumber=\"11\">Then said the LORD unto me, Pray not for this people for their good.</VERS>\r\n      <VERS vnumber=\"12\">When 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.</VERS>\r\n      <VERS vnumber=\"13\">Then 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.</VERS>\r\n      <VERS vnumber=\"14\">Then 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.</VERS>\r\n      <VERS vnumber=\"15\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"18\">If 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.</VERS>\r\n      <VERS vnumber=\"19\">Hast 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!</VERS>\r\n      <VERS vnumber=\"20\">We acknowledge, O LORD, our wickedness, and the iniquity of our fathers: for we have sinned against thee.</VERS>\r\n      <VERS vnumber=\"21\">Do not abhor us, for thy name's sake, do not disgrace the throne of thy glory: remember, break not thy covenant with us.</VERS>\r\n      <VERS vnumber=\"22\">Are 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">Then 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">For who shall have pity upon thee, O Jerusalem? or who shall bemoan thee? or who shall go aside to ask how thou doest?</VERS>\r\n      <VERS vnumber=\"6\">Thou 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">Their 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.</VERS>\r\n      <VERS vnumber=\"9\">She 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.</VERS>\r\n      <VERS vnumber=\"10\">Woe 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.</VERS>\r\n      <VERS vnumber=\"11\">The 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.</VERS>\r\n      <VERS vnumber=\"12\">Shall iron break the northern iron and the steel?</VERS>\r\n      <VERS vnumber=\"13\">Thy substance and thy treasures will I give to the spoil without price, and that for all thy sins, even in all thy borders.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">O 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.</VERS>\r\n      <VERS vnumber=\"16\">Thy 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.</VERS>\r\n      <VERS vnumber=\"17\">I sat not in the assembly of the mockers, nor rejoiced; I sat alone because of thy hand: for thou hast filled me with indignation.</VERS>\r\n      <VERS vnumber=\"18\">Why 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?</VERS>\r\n      <VERS vnumber=\"19\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And I will deliver thee out of the hand of the wicked, and I will redeem thee out of the hand of the terrible.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">The word of the LORD came also unto me, saying,</VERS>\r\n      <VERS vnumber=\"2\">Thou shalt not take thee a wife, neither shalt thou have sons or daughters in this place.</VERS>\r\n      <VERS vnumber=\"3\">For 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;</VERS>\r\n      <VERS vnumber=\"4\">They 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.</VERS>\r\n      <VERS vnumber=\"5\">For 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.</VERS>\r\n      <VERS vnumber=\"6\">Both 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:</VERS>\r\n      <VERS vnumber=\"7\">Neither 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.</VERS>\r\n      <VERS vnumber=\"8\">Thou shalt not also go into the house of feasting, to sit with them to eat and to drink.</VERS>\r\n      <VERS vnumber=\"9\">For 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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?</VERS>\r\n      <VERS vnumber=\"11\">Then 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;</VERS>\r\n      <VERS vnumber=\"12\">And 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:</VERS>\r\n      <VERS vnumber=\"13\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"14\">Therefore, 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;</VERS>\r\n      <VERS vnumber=\"15\">But, 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.</VERS>\r\n      <VERS vnumber=\"16\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"17\">For mine eyes are upon all their ways: they are not hid from my face, neither is their iniquity hid from mine eyes.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">O 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.</VERS>\r\n      <VERS vnumber=\"20\">Shall a man make gods unto himself, and they are no gods?</VERS>\r\n      <VERS vnumber=\"21\">Therefore, 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"17\">\r\n      <VERS vnumber=\"1\">The 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;</VERS>\r\n      <VERS vnumber=\"2\">Whilst their children remember their altars and their groves by the green trees upon the high hills.</VERS>\r\n      <VERS vnumber=\"3\">O 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">Thus saith the LORD; Cursed be the man that trusteth in man, and maketh flesh his arm, and whose heart departeth from the LORD.</VERS>\r\n      <VERS vnumber=\"6\">For 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.</VERS>\r\n      <VERS vnumber=\"7\">Blessed is the man that trusteth in the LORD, and whose hope the LORD is.</VERS>\r\n      <VERS vnumber=\"8\">For 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.</VERS>\r\n      <VERS vnumber=\"9\">The heart is deceitful above all things, and desperately wicked: who can know it?</VERS>\r\n      <VERS vnumber=\"10\">I 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.</VERS>\r\n      <VERS vnumber=\"11\">As 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.</VERS>\r\n      <VERS vnumber=\"12\">A glorious high throne from the beginning is the place of our sanctuary.</VERS>\r\n      <VERS vnumber=\"13\">O 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.</VERS>\r\n      <VERS vnumber=\"14\">Heal me, O LORD, and I shall be healed; save me, and I shall be saved: for thou art my praise.</VERS>\r\n      <VERS vnumber=\"15\">Behold, they say unto me, Where is the word of the LORD? let it come now.</VERS>\r\n      <VERS vnumber=\"16\">As 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.</VERS>\r\n      <VERS vnumber=\"17\">Be not a terror unto me: thou art my hope in the day of evil.</VERS>\r\n      <VERS vnumber=\"18\">Let 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.</VERS>\r\n      <VERS vnumber=\"19\">Thus 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;</VERS>\r\n      <VERS vnumber=\"20\">And 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:</VERS>\r\n      <VERS vnumber=\"21\">Thus saith the LORD; Take heed to yourselves, and bear no burden on the sabbath day, nor bring it in by the gates of Jerusalem;</VERS>\r\n      <VERS vnumber=\"22\">Neither 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.</VERS>\r\n      <VERS vnumber=\"23\">But they obeyed not, neither inclined their ear, but made their neck stiff, that they might not hear, nor receive instruction.</VERS>\r\n      <VERS vnumber=\"24\">And 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;</VERS>\r\n      <VERS vnumber=\"25\">Then 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">But 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"18\">\r\n      <VERS vnumber=\"1\">The word which came to Jeremiah from the LORD, saying,</VERS>\r\n      <VERS vnumber=\"2\">Arise, and go down to the potter's house, and there I will cause thee to hear my words.</VERS>\r\n      <VERS vnumber=\"3\">Then I went down to the potter's house, and, behold, he wrought a work on the wheels.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">Then the word of the LORD came to me, saying,</VERS>\r\n      <VERS vnumber=\"6\">O 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.</VERS>\r\n      <VERS vnumber=\"7\">At what instant I shall speak concerning a nation, and concerning a kingdom, to pluck up, and to pull down, and to destroy it;</VERS>\r\n      <VERS vnumber=\"8\">If that nation, against whom I have pronounced, turn from their evil, I will repent of the evil that I thought to do unto them.</VERS>\r\n      <VERS vnumber=\"9\">And at what instant I shall speak concerning a nation, and concerning a kingdom, to build and to plant it;</VERS>\r\n      <VERS vnumber=\"10\">If 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.</VERS>\r\n      <VERS vnumber=\"11\">Now 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"14\">Will 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?</VERS>\r\n      <VERS vnumber=\"15\">Because 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;</VERS>\r\n      <VERS vnumber=\"16\">To make their land desolate, and a perpetual hissing; every one that passeth thereby shall be astonished, and wag his head.</VERS>\r\n      <VERS vnumber=\"17\">I 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.</VERS>\r\n      <VERS vnumber=\"18\">Then 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.</VERS>\r\n      <VERS vnumber=\"19\">Give heed to me, O LORD, and hearken to the voice of them that contend with me.</VERS>\r\n      <VERS vnumber=\"20\">Shall 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.</VERS>\r\n      <VERS vnumber=\"21\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"22\">Let 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.</VERS>\r\n      <VERS vnumber=\"23\">Yet, 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"19\">\r\n      <VERS vnumber=\"1\">Thus 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;</VERS>\r\n      <VERS vnumber=\"2\">And 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,</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">Because 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;</VERS>\r\n      <VERS vnumber=\"5\">They 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:</VERS>\r\n      <VERS vnumber=\"6\">Therefore, 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">Then shalt thou break the bottle in the sight of the men that go with thee,</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">Thus will I do unto this place, saith the LORD, and to the inhabitants thereof, and even make this city as Tophet:</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">Then 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,</VERS>\r\n      <VERS vnumber=\"15\">Thus 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"20\">\r\n      <VERS vnumber=\"1\">Now Pashur the son of Immer the priest, who was also chief governor in the house of the LORD, heard that Jeremiah prophesied these things.</VERS>\r\n      <VERS vnumber=\"2\">Then 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">For 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.</VERS>\r\n      <VERS vnumber=\"5\">Moreover 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">O 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.</VERS>\r\n      <VERS vnumber=\"8\">For 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.</VERS>\r\n      <VERS vnumber=\"9\">Then 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.</VERS>\r\n      <VERS vnumber=\"10\">For 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.</VERS>\r\n      <VERS vnumber=\"11\">But 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.</VERS>\r\n      <VERS vnumber=\"12\">But, 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.</VERS>\r\n      <VERS vnumber=\"13\">Sing unto the LORD, praise ye the LORD: for he hath delivered the soul of the poor from the hand of evildoers.</VERS>\r\n      <VERS vnumber=\"14\">Cursed be the day wherein I was born: let not the day wherein my mother bare me be blessed.</VERS>\r\n      <VERS vnumber=\"15\">Cursed be the man who brought tidings to my father, saying, A man child is born unto thee; making him very glad.</VERS>\r\n      <VERS vnumber=\"16\">And 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;</VERS>\r\n      <VERS vnumber=\"17\">Because 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.</VERS>\r\n      <VERS vnumber=\"18\">Wherefore came I forth out of the womb to see labour and sorrow, that my days should be consumed with shame?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"21\">\r\n      <VERS vnumber=\"1\">The 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,</VERS>\r\n      <VERS vnumber=\"2\">Enquire, 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.</VERS>\r\n      <VERS vnumber=\"3\">Then said Jeremiah unto them, Thus shall ye say to Zedekiah:</VERS>\r\n      <VERS vnumber=\"4\">Thus 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And I will smite the inhabitants of this city, both man and beast: they shall die of a great pestilence.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And unto this people thou shalt say, Thus saith the LORD; Behold, I set before you the way of life, and the way of death.</VERS>\r\n      <VERS vnumber=\"9\">He 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.</VERS>\r\n      <VERS vnumber=\"10\">For 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.</VERS>\r\n      <VERS vnumber=\"11\">And touching the house of the king of Judah, say, Hear ye the word of the LORD;</VERS>\r\n      <VERS vnumber=\"12\">O 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.</VERS>\r\n      <VERS vnumber=\"13\">Behold, 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?</VERS>\r\n      <VERS vnumber=\"14\">But 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"22\">\r\n      <VERS vnumber=\"1\">Thus saith the LORD; Go down to the house of the king of Judah, and speak there this word,</VERS>\r\n      <VERS vnumber=\"2\">And 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:</VERS>\r\n      <VERS vnumber=\"3\">Thus 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.</VERS>\r\n      <VERS vnumber=\"4\">For 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.</VERS>\r\n      <VERS vnumber=\"5\">But if ye will not hear these words, I swear by myself, saith the LORD, that this house shall become a desolation.</VERS>\r\n      <VERS vnumber=\"6\">For 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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?</VERS>\r\n      <VERS vnumber=\"9\">Then they shall answer, Because they have forsaken the covenant of the LORD their God, and worshipped other gods, and served them.</VERS>\r\n      <VERS vnumber=\"10\">Weep 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.</VERS>\r\n      <VERS vnumber=\"11\">For 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:</VERS>\r\n      <VERS vnumber=\"12\">But he shall die in the place whither they have led him captive, and shall see this land no more.</VERS>\r\n      <VERS vnumber=\"13\">Woe 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;</VERS>\r\n      <VERS vnumber=\"14\">That 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.</VERS>\r\n      <VERS vnumber=\"15\">Shalt 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?</VERS>\r\n      <VERS vnumber=\"16\">He judged the cause of the poor and needy; then it was well with him: was not this to know me? saith the LORD.</VERS>\r\n      <VERS vnumber=\"17\">But 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.</VERS>\r\n      <VERS vnumber=\"18\">Therefore 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!</VERS>\r\n      <VERS vnumber=\"19\">He shall be buried with the burial of an ass, drawn and cast forth beyond the gates of Jerusalem.</VERS>\r\n      <VERS vnumber=\"20\">Go up to Lebanon, and cry; and lift up thy voice in Bashan, and cry from the passages: for all thy lovers are destroyed.</VERS>\r\n      <VERS vnumber=\"21\">I 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.</VERS>\r\n      <VERS vnumber=\"22\">The 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.</VERS>\r\n      <VERS vnumber=\"23\">O 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!</VERS>\r\n      <VERS vnumber=\"24\">As 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;</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And I will cast thee out, and thy mother that bare thee, into another country, where ye were not born; and there shall ye die.</VERS>\r\n      <VERS vnumber=\"27\">But to the land whereunto they desire to return, thither shall they not return.</VERS>\r\n      <VERS vnumber=\"28\">Is 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?</VERS>\r\n      <VERS vnumber=\"29\">O earth, earth, earth, hear the word of the LORD.</VERS>\r\n      <VERS vnumber=\"30\">Thus 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"23\">\r\n      <VERS vnumber=\"1\">Woe be unto the pastors that destroy and scatter the sheep of my pasture! saith the LORD.</VERS>\r\n      <VERS vnumber=\"2\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"6\">In 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.</VERS>\r\n      <VERS vnumber=\"7\">Therefore, 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;</VERS>\r\n      <VERS vnumber=\"8\">But, 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.</VERS>\r\n      <VERS vnumber=\"9\">Mine 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.</VERS>\r\n      <VERS vnumber=\"10\">For 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.</VERS>\r\n      <VERS vnumber=\"11\">For both prophet and priest are profane; yea, in my house have I found their wickedness, saith the LORD.</VERS>\r\n      <VERS vnumber=\"12\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"13\">And I have seen folly in the prophets of Samaria; they prophesied in Baal, and caused my people Israel to err.</VERS>\r\n      <VERS vnumber=\"14\">I 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.</VERS>\r\n      <VERS vnumber=\"15\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"16\">Thus 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.</VERS>\r\n      <VERS vnumber=\"17\">They 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.</VERS>\r\n      <VERS vnumber=\"18\">For who hath stood in the counsel of the LORD, and hath perceived and heard his word? who hath marked his word, and heard it?</VERS>\r\n      <VERS vnumber=\"19\">Behold, a whirlwind of the LORD is gone forth in fury, even a grievous whirlwind: it shall fall grievously upon the head of the wicked.</VERS>\r\n      <VERS vnumber=\"20\">The 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.</VERS>\r\n      <VERS vnumber=\"21\">I have not sent these prophets, yet they ran: I have not spoken to them, yet they prophesied.</VERS>\r\n      <VERS vnumber=\"22\">But 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.</VERS>\r\n      <VERS vnumber=\"23\">Am I a God at hand, saith the LORD, and not a God afar off?</VERS>\r\n      <VERS vnumber=\"24\">Can 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.</VERS>\r\n      <VERS vnumber=\"25\">I have heard what the prophets said, that prophesy lies in my name, saying, I have dreamed, I have dreamed.</VERS>\r\n      <VERS vnumber=\"26\">How long shall this be in the heart of the prophets that prophesy lies? yea, they are prophets of the deceit of their own heart;</VERS>\r\n      <VERS vnumber=\"27\">Which 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.</VERS>\r\n      <VERS vnumber=\"28\">The 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.</VERS>\r\n      <VERS vnumber=\"29\">Is not my word like as a fire? saith the LORD; and like a hammer that breaketh the rock in pieces?</VERS>\r\n      <VERS vnumber=\"30\">Therefore, behold, I am against the prophets, saith the LORD, that steal my words every one from his neighbour.</VERS>\r\n      <VERS vnumber=\"31\">Behold, I am against the prophets, saith the LORD, that use their tongues, and say, He saith.</VERS>\r\n      <VERS vnumber=\"32\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">And 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.</VERS>\r\n      <VERS vnumber=\"35\">Thus 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?</VERS>\r\n      <VERS vnumber=\"36\">And 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.</VERS>\r\n      <VERS vnumber=\"37\">Thus shalt thou say to the prophet, What hath the LORD answered thee? and, What hath the LORD spoken?</VERS>\r\n      <VERS vnumber=\"38\">But 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;</VERS>\r\n      <VERS vnumber=\"39\">Therefore, 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:</VERS>\r\n      <VERS vnumber=\"40\">And I will bring an everlasting reproach upon you, and a perpetual shame, which shall not be forgotten.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"24\">\r\n      <VERS vnumber=\"1\">The 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.</VERS>\r\n      <VERS vnumber=\"2\">One 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.</VERS>\r\n      <VERS vnumber=\"3\">Then 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.</VERS>\r\n      <VERS vnumber=\"4\">Again the word of the LORD came unto me, saying,</VERS>\r\n      <VERS vnumber=\"5\">Thus 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.</VERS>\r\n      <VERS vnumber=\"6\">For 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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:</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"25\">\r\n      <VERS vnumber=\"1\">The 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;</VERS>\r\n      <VERS vnumber=\"2\">The which Jeremiah the prophet spake unto all the people of Judah, and to all the inhabitants of Jerusalem, saying,</VERS>\r\n      <VERS vnumber=\"3\">From 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">They 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:</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">Yet 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.</VERS>\r\n      <VERS vnumber=\"8\">Therefore thus saith the LORD of hosts; Because ye have not heard my words,</VERS>\r\n      <VERS vnumber=\"9\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"10\">Moreover 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.</VERS>\r\n      <VERS vnumber=\"11\">And this whole land shall be a desolation, and an astonishment; and these nations shall serve the king of Babylon seventy years.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">For 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.</VERS>\r\n      <VERS vnumber=\"15\">For 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.</VERS>\r\n      <VERS vnumber=\"16\">And they shall drink, and be moved, and be mad, because of the sword that I will send among them.</VERS>\r\n      <VERS vnumber=\"17\">Then took I the cup at the LORD'S hand, and made all the nations to drink, unto whom the LORD had sent me:</VERS>\r\n      <VERS vnumber=\"18\">To 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;</VERS>\r\n      <VERS vnumber=\"19\">Pharaoh king of Egypt, and his servants, and his princes, and all his people;</VERS>\r\n      <VERS vnumber=\"20\">And 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,</VERS>\r\n      <VERS vnumber=\"21\">Edom, and Moab, and the children of Ammon,</VERS>\r\n      <VERS vnumber=\"22\">And all the kings of Tyrus, and all the kings of Zidon, and the kings of the isles which are beyond the sea,</VERS>\r\n      <VERS vnumber=\"23\">Dedan, and Tema, and Buz, and all that are in the utmost corners,</VERS>\r\n      <VERS vnumber=\"24\">And all the kings of Arabia, and all the kings of the mingled people that dwell in the desert,</VERS>\r\n      <VERS vnumber=\"25\">And all the kings of Zimri, and all the kings of Elam, and all the kings of the Medes,</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">For, 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.</VERS>\r\n      <VERS vnumber=\"30\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"31\">A 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.</VERS>\r\n      <VERS vnumber=\"32\">Thus 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.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">Howl, 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.</VERS>\r\n      <VERS vnumber=\"35\">And the shepherds shall have no way to flee, nor the principal of the flock to escape.</VERS>\r\n      <VERS vnumber=\"36\">A 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.</VERS>\r\n      <VERS vnumber=\"37\">And the peaceable habitations are cut down because of the fierce anger of the LORD.</VERS>\r\n      <VERS vnumber=\"38\">He 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"26\">\r\n      <VERS vnumber=\"1\">In the beginning of the reign of Jehoiakim the son of Josiah king of Judah came this word from the LORD, saying,</VERS>\r\n      <VERS vnumber=\"2\">Thus 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:</VERS>\r\n      <VERS vnumber=\"3\">If 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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,</VERS>\r\n      <VERS vnumber=\"5\">To 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;</VERS>\r\n      <VERS vnumber=\"6\">Then will I make this house like Shiloh, and will make this city a curse to all the nations of the earth.</VERS>\r\n      <VERS vnumber=\"7\">So the priests and the prophets and all the people heard Jeremiah speaking these words in the house of the LORD.</VERS>\r\n      <VERS vnumber=\"8\">Now 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.</VERS>\r\n      <VERS vnumber=\"9\">Why 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.</VERS>\r\n      <VERS vnumber=\"10\">When 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.</VERS>\r\n      <VERS vnumber=\"11\">Then 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.</VERS>\r\n      <VERS vnumber=\"12\">Then 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.</VERS>\r\n      <VERS vnumber=\"13\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"14\">As for me, behold, I am in your hand: do with me as seemeth good and meet unto you.</VERS>\r\n      <VERS vnumber=\"15\">But 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.</VERS>\r\n      <VERS vnumber=\"16\">Then 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.</VERS>\r\n      <VERS vnumber=\"17\">Then rose up certain of the elders of the land, and spake to all the assembly of the people, saying,</VERS>\r\n      <VERS vnumber=\"18\">Micah 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.</VERS>\r\n      <VERS vnumber=\"19\">Did 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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:</VERS>\r\n      <VERS vnumber=\"21\">And 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;</VERS>\r\n      <VERS vnumber=\"22\">And Jehoiakim the king sent men into Egypt, namely, Elnathan the son of Achbor, and certain men with him into Egypt.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">Nevertheless 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"27\">\r\n      <VERS vnumber=\"1\">In the beginning of the reign of Jehoiakim the son of Josiah king of Judah came this word unto Jeremiah from the LORD, saying,</VERS>\r\n      <VERS vnumber=\"2\">Thus saith the LORD to me; Make thee bonds and yokes, and put them upon thy neck,</VERS>\r\n      <VERS vnumber=\"3\">And 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;</VERS>\r\n      <VERS vnumber=\"4\">And command them to say unto their masters, Thus saith the LORD of hosts, the God of Israel; Thus shall ye say unto your masters;</VERS>\r\n      <VERS vnumber=\"5\">I 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">Therefore 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:</VERS>\r\n      <VERS vnumber=\"10\">For they prophesy a lie unto you, to remove you far from your land; and that I should drive you out, and ye should perish.</VERS>\r\n      <VERS vnumber=\"11\">But 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.</VERS>\r\n      <VERS vnumber=\"12\">I 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.</VERS>\r\n      <VERS vnumber=\"13\">Why 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?</VERS>\r\n      <VERS vnumber=\"14\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"15\">For 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.</VERS>\r\n      <VERS vnumber=\"16\">Also 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.</VERS>\r\n      <VERS vnumber=\"17\">Hearken not unto them; serve the king of Babylon, and live: wherefore should this city be laid waste?</VERS>\r\n      <VERS vnumber=\"18\">But 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.</VERS>\r\n      <VERS vnumber=\"19\">For 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,</VERS>\r\n      <VERS vnumber=\"20\">Which 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;</VERS>\r\n      <VERS vnumber=\"21\">Yea, 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;</VERS>\r\n      <VERS vnumber=\"22\">They 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"28\">\r\n      <VERS vnumber=\"1\">And 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,</VERS>\r\n      <VERS vnumber=\"2\">Thus speaketh the LORD of hosts, the God of Israel, saying, I have broken the yoke of the king of Babylon.</VERS>\r\n      <VERS vnumber=\"3\">Within 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:</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">Then 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,</VERS>\r\n      <VERS vnumber=\"6\">Even 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.</VERS>\r\n      <VERS vnumber=\"7\">Nevertheless hear thou now this word that I speak in thine ears, and in the ears of all the people;</VERS>\r\n      <VERS vnumber=\"8\">The 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.</VERS>\r\n      <VERS vnumber=\"9\">The 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.</VERS>\r\n      <VERS vnumber=\"10\">Then Hananiah the prophet took the yoke from off the prophet Jeremiah's neck, and brake it.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">Then 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,</VERS>\r\n      <VERS vnumber=\"13\">Go and tell Hananiah, saying, Thus saith the LORD; Thou hast broken the yokes of wood; but thou shalt make for them yokes of iron.</VERS>\r\n      <VERS vnumber=\"14\">For 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.</VERS>\r\n      <VERS vnumber=\"15\">Then 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.</VERS>\r\n      <VERS vnumber=\"16\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"17\">So Hananiah the prophet died the same year in the seventh month.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"29\">\r\n      <VERS vnumber=\"1\">Now 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;</VERS>\r\n      <VERS vnumber=\"2\">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;)</VERS>\r\n      <VERS vnumber=\"3\">By 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,</VERS>\r\n      <VERS vnumber=\"4\">Thus 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;</VERS>\r\n      <VERS vnumber=\"5\">Build ye houses, and dwell in them; and plant gardens, and eat the fruit of them;</VERS>\r\n      <VERS vnumber=\"6\">Take 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">For 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.</VERS>\r\n      <VERS vnumber=\"9\">For they prophesy falsely unto you in my name: I have not sent them, saith the LORD.</VERS>\r\n      <VERS vnumber=\"10\">For 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.</VERS>\r\n      <VERS vnumber=\"11\">For 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.</VERS>\r\n      <VERS vnumber=\"12\">Then shall ye call upon me, and ye shall go and pray unto me, and I will hearken unto you.</VERS>\r\n      <VERS vnumber=\"13\">And ye shall seek me, and find me, when ye shall search for me with all your heart.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">Because ye have said, The LORD hath raised us up prophets in Babylon;</VERS>\r\n      <VERS vnumber=\"16\">Know 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;</VERS>\r\n      <VERS vnumber=\"17\">Thus 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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:</VERS>\r\n      <VERS vnumber=\"19\">Because 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.</VERS>\r\n      <VERS vnumber=\"20\">Hear ye therefore the word of the LORD, all ye of the captivity, whom I have sent from Jerusalem to Babylon:</VERS>\r\n      <VERS vnumber=\"21\">Thus 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;</VERS>\r\n      <VERS vnumber=\"22\">And 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;</VERS>\r\n      <VERS vnumber=\"23\">Because 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.</VERS>\r\n      <VERS vnumber=\"24\">Thus shalt thou also speak to Shemaiah the Nehelamite, saying,</VERS>\r\n      <VERS vnumber=\"25\">Thus 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,</VERS>\r\n      <VERS vnumber=\"26\">The 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.</VERS>\r\n      <VERS vnumber=\"27\">Now therefore why hast thou not reproved Jeremiah of Anathoth, which maketh himself a prophet to you?</VERS>\r\n      <VERS vnumber=\"28\">For 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.</VERS>\r\n      <VERS vnumber=\"29\">And Zephaniah the priest read this letter in the ears of Jeremiah the prophet.</VERS>\r\n      <VERS vnumber=\"30\">Then came the word of the LORD unto Jeremiah, saying,</VERS>\r\n      <VERS vnumber=\"31\">Send 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:</VERS>\r\n      <VERS vnumber=\"32\">Therefore 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"30\">\r\n      <VERS vnumber=\"1\">The word that came to Jeremiah from the LORD, saying,</VERS>\r\n      <VERS vnumber=\"2\">Thus speaketh the LORD God of Israel, saying, Write thee all the words that I have spoken unto thee in a book.</VERS>\r\n      <VERS vnumber=\"3\">For, 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.</VERS>\r\n      <VERS vnumber=\"4\">And these are the words that the LORD spake concerning Israel and concerning Judah.</VERS>\r\n      <VERS vnumber=\"5\">For thus saith the LORD; We have heard a voice of trembling, of fear, and not of peace.</VERS>\r\n      <VERS vnumber=\"6\">Ask 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?</VERS>\r\n      <VERS vnumber=\"7\">Alas! 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.</VERS>\r\n      <VERS vnumber=\"8\">For 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:</VERS>\r\n      <VERS vnumber=\"9\">But they shall serve the LORD their God, and David their king, whom I will raise up unto them.</VERS>\r\n      <VERS vnumber=\"10\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"11\">For 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 will I not make a full end of thee: but I will correct thee in measure, and will not leave thee altogether unpunished.</VERS>\r\n      <VERS vnumber=\"12\">For thus saith the LORD, Thy bruise is incurable, and thy wound is grievous.</VERS>\r\n      <VERS vnumber=\"13\">There is none to plead thy cause, that thou mayest be bound up: thou hast no healing medicines.</VERS>\r\n      <VERS vnumber=\"14\">All 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.</VERS>\r\n      <VERS vnumber=\"15\">Why 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.</VERS>\r\n      <VERS vnumber=\"16\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"17\">For 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.</VERS>\r\n      <VERS vnumber=\"18\">Thus 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">Their children also shall be as aforetime, and their congregation shall be established before me, and I will punish all that oppress them.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And ye shall be my people, and I will be your God.</VERS>\r\n      <VERS vnumber=\"23\">Behold, the whirlwind of the LORD goeth forth with fury, a continuing whirlwind: it shall fall with pain upon the head of the wicked.</VERS>\r\n      <VERS vnumber=\"24\">The fierce anger of the LORD shall not return, until he have done it, and until he have performed the intents of his heart: in the latter days ye shall consider it.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"31\">\r\n      <VERS vnumber=\"1\">At the same time, saith the LORD, will I be the God of all the families of Israel, and they shall be my people.</VERS>\r\n      <VERS vnumber=\"2\">Thus 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.</VERS>\r\n      <VERS vnumber=\"3\">The LORD hath appeared of old unto me, saying, Yea, I have loved thee with an everlasting love: therefore with lovingkindness have I drawn thee.</VERS>\r\n      <VERS vnumber=\"4\">Again 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.</VERS>\r\n      <VERS vnumber=\"5\">Thou shalt yet plant vines upon the mountains of Samaria: the planters shall plant, and shall eat them as common things.</VERS>\r\n      <VERS vnumber=\"6\">For 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.</VERS>\r\n      <VERS vnumber=\"7\">For 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.</VERS>\r\n      <VERS vnumber=\"8\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"9\">They 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.</VERS>\r\n      <VERS vnumber=\"10\">Hear 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.</VERS>\r\n      <VERS vnumber=\"11\">For the LORD hath redeemed Jacob, and ransomed him from the hand of him that was stronger than he.</VERS>\r\n      <VERS vnumber=\"12\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"13\">Then 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.</VERS>\r\n      <VERS vnumber=\"14\">And I will satiate the soul of the priests with fatness, and my people shall be satisfied with my goodness, saith the LORD.</VERS>\r\n      <VERS vnumber=\"15\">Thus 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.</VERS>\r\n      <VERS vnumber=\"16\">Thus 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.</VERS>\r\n      <VERS vnumber=\"17\">And there is hope in thine end, saith the LORD, that thy children shall come again to their own border.</VERS>\r\n      <VERS vnumber=\"18\">I 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.</VERS>\r\n      <VERS vnumber=\"19\">Surely 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.</VERS>\r\n      <VERS vnumber=\"20\">Is 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.</VERS>\r\n      <VERS vnumber=\"21\">Set 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.</VERS>\r\n      <VERS vnumber=\"22\">How 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.</VERS>\r\n      <VERS vnumber=\"23\">Thus 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.</VERS>\r\n      <VERS vnumber=\"24\">And there shall dwell in Judah itself, and in all the cities thereof together, husbandmen, and they that go forth with flocks.</VERS>\r\n      <VERS vnumber=\"25\">For I have satiated the weary soul, and I have replenished every sorrowful soul.</VERS>\r\n      <VERS vnumber=\"26\">Upon this I awaked, and beheld; and my sleep was sweet unto me.</VERS>\r\n      <VERS vnumber=\"27\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">In those days they shall say no more, The fathers have eaten a sour grape, and the children's teeth are set on edge.</VERS>\r\n      <VERS vnumber=\"30\">But every one shall die for his own iniquity: every man that eateth the sour grape, his teeth shall be set on edge.</VERS>\r\n      <VERS vnumber=\"31\">Behold, the days come, saith the LORD, that I will make a new covenant with the house of Israel, and with the house of Judah:</VERS>\r\n      <VERS vnumber=\"32\">Not 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:</VERS>\r\n      <VERS vnumber=\"33\">But 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.</VERS>\r\n      <VERS vnumber=\"34\">And 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.</VERS>\r\n      <VERS vnumber=\"35\">Thus 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:</VERS>\r\n      <VERS vnumber=\"36\">If 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.</VERS>\r\n      <VERS vnumber=\"37\">Thus 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.</VERS>\r\n      <VERS vnumber=\"38\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"39\">And the measuring line shall yet go forth over against it upon the hill Gareb, and shall compass about to Goath.</VERS>\r\n      <VERS vnumber=\"40\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"32\">\r\n      <VERS vnumber=\"1\">The word that came to Jeremiah from the LORD in the tenth year of Zedekiah king of Judah, which was the eighteenth year of Nebuchadrezzar.</VERS>\r\n      <VERS vnumber=\"2\">For 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.</VERS>\r\n      <VERS vnumber=\"3\">For 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;</VERS>\r\n      <VERS vnumber=\"4\">And 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;</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And Jeremiah said, The word of the LORD came unto me, saying,</VERS>\r\n      <VERS vnumber=\"7\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"8\">So 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.</VERS>\r\n      <VERS vnumber=\"9\">And I bought the field of Hanameel my uncle's son, that was in Anathoth, and weighed him the money, even seventeen shekels of silver.</VERS>\r\n      <VERS vnumber=\"10\">And I subscribed the evidence, and sealed it, and took witnesses, and weighed him the money in the balances.</VERS>\r\n      <VERS vnumber=\"11\">So I took the evidence of the purchase, both that which was sealed according to the law and custom, and that which was open:</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And I charged Baruch before them, saying,</VERS>\r\n      <VERS vnumber=\"14\">Thus 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.</VERS>\r\n      <VERS vnumber=\"15\">For thus saith the LORD of hosts, the God of Israel; Houses and fields and vineyards shall be possessed again in this land.</VERS>\r\n      <VERS vnumber=\"16\">Now when I had delivered the evidence of the purchase unto Baruch the son of Neriah, I prayed unto the LORD, saying,</VERS>\r\n      <VERS vnumber=\"17\">Ah 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:</VERS>\r\n      <VERS vnumber=\"18\">Thou 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,</VERS>\r\n      <VERS vnumber=\"19\">Great 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:</VERS>\r\n      <VERS vnumber=\"20\">Which 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;</VERS>\r\n      <VERS vnumber=\"21\">And 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;</VERS>\r\n      <VERS vnumber=\"22\">And hast given them this land, which thou didst swear to their fathers to give them, a land flowing with milk and honey;</VERS>\r\n      <VERS vnumber=\"23\">And 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:</VERS>\r\n      <VERS vnumber=\"24\">Behold 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">Then came the word of the LORD unto Jeremiah, saying,</VERS>\r\n      <VERS vnumber=\"27\">Behold, I am the LORD, the God of all flesh: is there any thing too hard for me?</VERS>\r\n      <VERS vnumber=\"28\">Therefore 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:</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">For 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.</VERS>\r\n      <VERS vnumber=\"31\">For 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,</VERS>\r\n      <VERS vnumber=\"32\">Because 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.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">But they set their abominations in the house, which is called by my name, to defile it.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">And 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;</VERS>\r\n      <VERS vnumber=\"37\">Behold, 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:</VERS>\r\n      <VERS vnumber=\"38\">And they shall be my people, and I will be their God:</VERS>\r\n      <VERS vnumber=\"39\">And 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:</VERS>\r\n      <VERS vnumber=\"40\">And 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.</VERS>\r\n      <VERS vnumber=\"41\">Yea, 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.</VERS>\r\n      <VERS vnumber=\"42\">For 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.</VERS>\r\n      <VERS vnumber=\"43\">And 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.</VERS>\r\n      <VERS vnumber=\"44\">Men 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"33\">\r\n      <VERS vnumber=\"1\">Moreover the word of the LORD came unto Jeremiah the second time, while he was yet shut up in the court of the prison, saying,</VERS>\r\n      <VERS vnumber=\"2\">Thus saith the LORD the maker thereof, the LORD that formed it, to establish it; the LORD is his name;</VERS>\r\n      <VERS vnumber=\"3\">Call unto me, and I will answer thee, and shew thee great and mighty things, which thou knowest not.</VERS>\r\n      <VERS vnumber=\"4\">For 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;</VERS>\r\n      <VERS vnumber=\"5\">They 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.</VERS>\r\n      <VERS vnumber=\"6\">Behold, I will bring it health and cure, and I will cure them, and will reveal unto them the abundance of peace and truth.</VERS>\r\n      <VERS vnumber=\"7\">And I will cause the captivity of Judah and the captivity of Israel to return, and will build them, as at the first.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">Thus 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,</VERS>\r\n      <VERS vnumber=\"11\">The 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.</VERS>\r\n      <VERS vnumber=\"12\">Thus 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.</VERS>\r\n      <VERS vnumber=\"13\">In 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.</VERS>\r\n      <VERS vnumber=\"14\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"15\">In 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.</VERS>\r\n      <VERS vnumber=\"16\">In 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.</VERS>\r\n      <VERS vnumber=\"17\">For thus saith the LORD; David shall never want a man to sit upon the throne of the house of Israel;</VERS>\r\n      <VERS vnumber=\"18\">Neither shall the priests the Levites want a man before me to offer burnt offerings, and to kindle meat offerings, and to do sacrifice continually.</VERS>\r\n      <VERS vnumber=\"19\">And the word of the LORD came unto Jeremiah, saying,</VERS>\r\n      <VERS vnumber=\"20\">Thus 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;</VERS>\r\n      <VERS vnumber=\"21\">Then 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.</VERS>\r\n      <VERS vnumber=\"22\">As 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.</VERS>\r\n      <VERS vnumber=\"23\">Moreover the word of the LORD came to Jeremiah, saying,</VERS>\r\n      <VERS vnumber=\"24\">Considerest 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.</VERS>\r\n      <VERS vnumber=\"25\">Thus saith the LORD; If my covenant be not with day and night, and if I have not appointed the ordinances of heaven and earth;</VERS>\r\n      <VERS vnumber=\"26\">Then 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"34\">\r\n      <VERS vnumber=\"1\">The 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,</VERS>\r\n      <VERS vnumber=\"2\">Thus 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:</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">Yet hear the word of the LORD, O Zedekiah king of Judah; Thus saith the LORD of thee, Thou shalt not die by the sword:</VERS>\r\n      <VERS vnumber=\"5\">But 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.</VERS>\r\n      <VERS vnumber=\"6\">Then Jeremiah the prophet spake all these words unto Zedekiah king of Judah in Jerusalem,</VERS>\r\n      <VERS vnumber=\"7\">When 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.</VERS>\r\n      <VERS vnumber=\"8\">This 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;</VERS>\r\n      <VERS vnumber=\"9\">That 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.</VERS>\r\n      <VERS vnumber=\"10\">Now 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.</VERS>\r\n      <VERS vnumber=\"11\">But 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.</VERS>\r\n      <VERS vnumber=\"12\">Therefore the word of the LORD came to Jeremiah from the LORD, saying,</VERS>\r\n      <VERS vnumber=\"13\">Thus 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,</VERS>\r\n      <VERS vnumber=\"14\">At 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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:</VERS>\r\n      <VERS vnumber=\"16\">But ye turned and polluted my name, and caused every man his servant, and every man his handmaid, whom ye had set at liberty at their pleasure, to return, and brought them into subjection, to be unto you for servants and for handmaids.</VERS>\r\n      <VERS vnumber=\"17\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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,</VERS>\r\n      <VERS vnumber=\"19\">The 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;</VERS>\r\n      <VERS vnumber=\"20\">I 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">Behold, 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"35\">\r\n      <VERS vnumber=\"1\">The word which came unto Jeremiah from the LORD in the days of Jehoiakim the son of Josiah king of Judah, saying,</VERS>\r\n      <VERS vnumber=\"2\">Go 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.</VERS>\r\n      <VERS vnumber=\"3\">Then 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;</VERS>\r\n      <VERS vnumber=\"4\">And 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:</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">But 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:</VERS>\r\n      <VERS vnumber=\"7\">Neither 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.</VERS>\r\n      <VERS vnumber=\"8\">Thus 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;</VERS>\r\n      <VERS vnumber=\"9\">Nor to build houses for us to dwell in: neither have we vineyard, nor field, nor seed:</VERS>\r\n      <VERS vnumber=\"10\">But we have dwelt in tents, and have obeyed, and done according to all that Jonadab our father commanded us.</VERS>\r\n      <VERS vnumber=\"11\">But 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.</VERS>\r\n      <VERS vnumber=\"12\">Then came the word of the LORD unto Jeremiah, saying,</VERS>\r\n      <VERS vnumber=\"13\">Thus 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.</VERS>\r\n      <VERS vnumber=\"14\">The 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.</VERS>\r\n      <VERS vnumber=\"15\">I 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.</VERS>\r\n      <VERS vnumber=\"16\">Because 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:</VERS>\r\n      <VERS vnumber=\"17\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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:</VERS>\r\n      <VERS vnumber=\"19\">Therefore 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"36\">\r\n      <VERS vnumber=\"1\">And 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,</VERS>\r\n      <VERS vnumber=\"2\">Take 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.</VERS>\r\n      <VERS vnumber=\"3\">It 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.</VERS>\r\n      <VERS vnumber=\"4\">Then 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.</VERS>\r\n      <VERS vnumber=\"5\">And Jeremiah commanded Baruch, saying, I am shut up; I cannot go into the house of the LORD:</VERS>\r\n      <VERS vnumber=\"6\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"7\">It 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">Then 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.</VERS>\r\n      <VERS vnumber=\"11\">When Michaiah the son of Gemariah, the son of Shaphan, had heard out of the book all the words of the LORD,</VERS>\r\n      <VERS vnumber=\"12\">Then 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.</VERS>\r\n      <VERS vnumber=\"13\">Then Michaiah declared unto them all the words that he had heard, when Baruch read the book in the ears of the people.</VERS>\r\n      <VERS vnumber=\"14\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"15\">And they said unto him, Sit down now, and read it in our ears. So Baruch read it in their ears.</VERS>\r\n      <VERS vnumber=\"16\">Now 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.</VERS>\r\n      <VERS vnumber=\"17\">And they asked Baruch, saying, Tell us now, How didst thou write all these words at his mouth?</VERS>\r\n      <VERS vnumber=\"18\">Then Baruch answered them, He pronounced all these words unto me with his mouth, and I wrote them with ink in the book.</VERS>\r\n      <VERS vnumber=\"19\">Then said the princes unto Baruch, Go, hide thee, thou and Jeremiah; and let no man know where ye be.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">So 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.</VERS>\r\n      <VERS vnumber=\"22\">Now the king sat in the winterhouse in the ninth month: and there was a fire on the hearth burning before him.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">Yet they were not afraid, nor rent their garments, neither the king, nor any of his servants that heard all these words.</VERS>\r\n      <VERS vnumber=\"25\">Nevertheless Elnathan and Delaiah and Gemariah had made intercession to the king that he would not burn the roll: but he would not hear them.</VERS>\r\n      <VERS vnumber=\"26\">But 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.</VERS>\r\n      <VERS vnumber=\"27\">Then 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,</VERS>\r\n      <VERS vnumber=\"28\">Take 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.</VERS>\r\n      <VERS vnumber=\"29\">And 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?</VERS>\r\n      <VERS vnumber=\"30\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n      <VERS vnumber=\"32\">Then 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"37\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">But 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">Now Jeremiah came in and went out among the people: for they had not put him into prison.</VERS>\r\n      <VERS vnumber=\"5\">Then Pharaoh's army was come forth out of Egypt: and when the Chaldeans that besieged Jerusalem heard tidings of them, they departed from Jerusalem.</VERS>\r\n      <VERS vnumber=\"6\">Then came the word of the LORD unto the prophet Jeremiah, saying,</VERS>\r\n      <VERS vnumber=\"7\">Thus 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.</VERS>\r\n      <VERS vnumber=\"8\">And the Chaldeans shall come again, and fight against this city, and take it, and burn it with fire.</VERS>\r\n      <VERS vnumber=\"9\">Thus saith the LORD; Deceive not yourselves, saying, The Chaldeans shall surely depart from us: for they shall not depart.</VERS>\r\n      <VERS vnumber=\"10\">For 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.</VERS>\r\n      <VERS vnumber=\"11\">And it came to pass, that when the army of the Chaldeans was broken up from Jerusalem for fear of Pharaoh's army,</VERS>\r\n      <VERS vnumber=\"12\">Then Jeremiah went forth out of Jerusalem to go into the land of Benjamin, to separate himself thence in the midst of the people.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">Then 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.</VERS>\r\n      <VERS vnumber=\"15\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"16\">When Jeremiah was entered into the dungeon, and into the cabins, and Jeremiah had remained there many days;</VERS>\r\n      <VERS vnumber=\"17\">Then 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.</VERS>\r\n      <VERS vnumber=\"18\">Moreover 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?</VERS>\r\n      <VERS vnumber=\"19\">Where are now your prophets which prophesied unto you, saying, The king of Babylon shall not come against you, nor against this land?</VERS>\r\n      <VERS vnumber=\"20\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"21\">Then 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"38\">\r\n      <VERS vnumber=\"1\">Then 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,</VERS>\r\n      <VERS vnumber=\"2\">Thus 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.</VERS>\r\n      <VERS vnumber=\"3\">Thus saith the LORD, This city shall surely be given into the hand of the king of Babylon's army, which shall take it.</VERS>\r\n      <VERS vnumber=\"4\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"5\">Then Zedekiah the king said, Behold, he is in your hand: for the king is not he that can do any thing against you.</VERS>\r\n      <VERS vnumber=\"6\">Then 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.</VERS>\r\n      <VERS vnumber=\"7\">Now 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;</VERS>\r\n      <VERS vnumber=\"8\">Ebedmelech went forth out of the king's house, and spake to the king, saying,</VERS>\r\n      <VERS vnumber=\"9\">My 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.</VERS>\r\n      <VERS vnumber=\"10\">Then 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.</VERS>\r\n      <VERS vnumber=\"11\">So 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">So they drew up Jeremiah with cords, and took him up out of the dungeon: and Jeremiah remained in the court of the prison.</VERS>\r\n      <VERS vnumber=\"14\">Then 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.</VERS>\r\n      <VERS vnumber=\"15\">Then 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?</VERS>\r\n      <VERS vnumber=\"16\">So 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.</VERS>\r\n      <VERS vnumber=\"17\">Then 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:</VERS>\r\n      <VERS vnumber=\"18\">But 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">But 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.</VERS>\r\n      <VERS vnumber=\"21\">But if thou refuse to go forth, this is the word that the LORD hath shewed me:</VERS>\r\n      <VERS vnumber=\"22\">And, 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.</VERS>\r\n      <VERS vnumber=\"23\">So 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.</VERS>\r\n      <VERS vnumber=\"24\">Then said Zedekiah unto Jeremiah, Let no man know of these words, and thou shalt not die.</VERS>\r\n      <VERS vnumber=\"25\">But 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:</VERS>\r\n      <VERS vnumber=\"26\">Then 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.</VERS>\r\n      <VERS vnumber=\"27\">Then 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.</VERS>\r\n      <VERS vnumber=\"28\">So Jeremiah abode in the court of the prison until the day that Jerusalem was taken: and he was there when Jerusalem was taken.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"39\">\r\n      <VERS vnumber=\"1\">In 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.</VERS>\r\n      <VERS vnumber=\"2\">And in the eleventh year of Zedekiah, in the fourth month, the ninth day of the month, the city was broken up.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">But 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.</VERS>\r\n      <VERS vnumber=\"6\">Then 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.</VERS>\r\n      <VERS vnumber=\"7\">Moreover he put out Zedekiah's eyes, and bound him with chains, to carry him to Babylon.</VERS>\r\n      <VERS vnumber=\"8\">And the Chaldeans burned the king's house, and the houses of the people, with fire, and brake down the walls of Jerusalem.</VERS>\r\n      <VERS vnumber=\"9\">Then 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.</VERS>\r\n      <VERS vnumber=\"10\">But 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.</VERS>\r\n      <VERS vnumber=\"11\">Now Nebuchadrezzar king of Babylon gave charge concerning Jeremiah to Nebuzaradan the captain of the guard, saying,</VERS>\r\n      <VERS vnumber=\"12\">Take him, and look well to him, and do him no harm; but do unto him even as he shall say unto thee.</VERS>\r\n      <VERS vnumber=\"13\">So Nebuzaradan the captain of the guard sent, and Nebushasban, Rabsaris, and Nergalsharezer, Rabmag, and all the king of Babylon's princes;</VERS>\r\n      <VERS vnumber=\"14\">Even 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.</VERS>\r\n      <VERS vnumber=\"15\">Now the word of the LORD came unto Jeremiah, while he was shut up in the court of the prison, saying,</VERS>\r\n      <VERS vnumber=\"16\">Go 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.</VERS>\r\n      <VERS vnumber=\"17\">But 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.</VERS>\r\n      <VERS vnumber=\"18\">For 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"40\">\r\n      <VERS vnumber=\"1\">The 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.</VERS>\r\n      <VERS vnumber=\"2\">And the captain of the guard took Jeremiah, and said unto him, The LORD thy God hath pronounced this evil upon this place.</VERS>\r\n      <VERS vnumber=\"3\">Now 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">Now 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.</VERS>\r\n      <VERS vnumber=\"6\">Then went Jeremiah unto Gedaliah the son of Ahikam to Mizpah; and dwelt with him among the people that were left in the land.</VERS>\r\n      <VERS vnumber=\"7\">Now 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;</VERS>\r\n      <VERS vnumber=\"8\">Then 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">As 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.</VERS>\r\n      <VERS vnumber=\"11\">Likewise 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;</VERS>\r\n      <VERS vnumber=\"12\">Even 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.</VERS>\r\n      <VERS vnumber=\"13\">Moreover Johanan the son of Kareah, and all the captains of the forces that were in the fields, came to Gedaliah to Mizpah,</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">Then 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?</VERS>\r\n      <VERS vnumber=\"16\">But Gedaliah the son of Ahikam said unto Johanan the son of Kareah, Thou shalt not do this thing: for thou speakest falsely of Ishmael.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"41\">\r\n      <VERS vnumber=\"1\">Now 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.</VERS>\r\n      <VERS vnumber=\"2\">Then 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.</VERS>\r\n      <VERS vnumber=\"3\">Ishmael 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.</VERS>\r\n      <VERS vnumber=\"4\">And it came to pass the second day after he had slain Gedaliah, and no man knew it,</VERS>\r\n      <VERS vnumber=\"5\">That 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">But 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.</VERS>\r\n      <VERS vnumber=\"9\">Now 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.</VERS>\r\n      <VERS vnumber=\"10\">Then 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.</VERS>\r\n      <VERS vnumber=\"11\">But 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,</VERS>\r\n      <VERS vnumber=\"12\">Then 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.</VERS>\r\n      <VERS vnumber=\"13\">Now 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.</VERS>\r\n      <VERS vnumber=\"14\">So all the people that Ishmael had carried away captive from Mizpah cast about and returned, and went unto Johanan the son of Kareah.</VERS>\r\n      <VERS vnumber=\"15\">But Ishmael the son of Nethaniah escaped from Johanan with eight men, and went to the Ammonites.</VERS>\r\n      <VERS vnumber=\"16\">Then 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:</VERS>\r\n      <VERS vnumber=\"17\">And they departed, and dwelt in the habitation of Chimham, which is by Bethlehem, to go to enter into Egypt,</VERS>\r\n      <VERS vnumber=\"18\">Because 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"42\">\r\n      <VERS vnumber=\"1\">Then 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,</VERS>\r\n      <VERS vnumber=\"2\">And 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:)</VERS>\r\n      <VERS vnumber=\"3\">That the LORD thy God may shew us the way wherein we may walk, and the thing that we may do.</VERS>\r\n      <VERS vnumber=\"4\">Then 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.</VERS>\r\n      <VERS vnumber=\"5\">Then 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.</VERS>\r\n      <VERS vnumber=\"6\">Whether 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.</VERS>\r\n      <VERS vnumber=\"7\">And it came to pass after ten days, that the word of the LORD came unto Jeremiah.</VERS>\r\n      <VERS vnumber=\"8\">Then 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,</VERS>\r\n      <VERS vnumber=\"9\">And said unto them, Thus saith the LORD, the God of Israel, unto whom ye sent me to present your supplication before him;</VERS>\r\n      <VERS vnumber=\"10\">If 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.</VERS>\r\n      <VERS vnumber=\"11\">Be 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.</VERS>\r\n      <VERS vnumber=\"12\">And I will shew mercies unto you, that he may have mercy upon you, and cause you to return to your own land.</VERS>\r\n      <VERS vnumber=\"13\">But if ye say, We will not dwell in this land, neither obey the voice of the LORD your God,</VERS>\r\n      <VERS vnumber=\"14\">Saying, 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:</VERS>\r\n      <VERS vnumber=\"15\">And 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;</VERS>\r\n      <VERS vnumber=\"16\">Then 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.</VERS>\r\n      <VERS vnumber=\"17\">So 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.</VERS>\r\n      <VERS vnumber=\"18\">For 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.</VERS>\r\n      <VERS vnumber=\"19\">The LORD hath said concerning you, O ye remnant of Judah; Go ye not into Egypt: know certainly that I have admonished you this day.</VERS>\r\n      <VERS vnumber=\"20\">For 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">Now 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"43\">\r\n      <VERS vnumber=\"1\">And 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,</VERS>\r\n      <VERS vnumber=\"2\">Then 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:</VERS>\r\n      <VERS vnumber=\"3\">But 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.</VERS>\r\n      <VERS vnumber=\"4\">So 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.</VERS>\r\n      <VERS vnumber=\"5\">But 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;</VERS>\r\n      <VERS vnumber=\"6\">Even 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.</VERS>\r\n      <VERS vnumber=\"7\">So they came into the land of Egypt: for they obeyed not the voice of the LORD: thus came they even to Tahpanhes.</VERS>\r\n      <VERS vnumber=\"8\">Then came the word of the LORD unto Jeremiah in Tahpanhes, saying,</VERS>\r\n      <VERS vnumber=\"9\">Take 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;</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">He 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"44\">\r\n      <VERS vnumber=\"1\">The 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,</VERS>\r\n      <VERS vnumber=\"2\">Thus 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,</VERS>\r\n      <VERS vnumber=\"3\">Because 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.</VERS>\r\n      <VERS vnumber=\"4\">Howbeit I sent unto you all my servants the prophets, rising early and sending them, saying, Oh, do not this abominable thing that I hate.</VERS>\r\n      <VERS vnumber=\"5\">But they hearkened not, nor inclined their ear to turn from their wickedness, to burn no incense unto other gods.</VERS>\r\n      <VERS vnumber=\"6\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"7\">Therefore 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;</VERS>\r\n      <VERS vnumber=\"8\">In 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?</VERS>\r\n      <VERS vnumber=\"9\">Have 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?</VERS>\r\n      <VERS vnumber=\"10\">They 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.</VERS>\r\n      <VERS vnumber=\"11\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">For 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:</VERS>\r\n      <VERS vnumber=\"14\">So 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.</VERS>\r\n      <VERS vnumber=\"15\">Then 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,</VERS>\r\n      <VERS vnumber=\"16\">As for the word that thou hast spoken unto us in the name of the LORD, we will not hearken unto thee.</VERS>\r\n      <VERS vnumber=\"17\">But 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.</VERS>\r\n      <VERS vnumber=\"18\">But 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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?</VERS>\r\n      <VERS vnumber=\"20\">Then 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,</VERS>\r\n      <VERS vnumber=\"21\">The 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?</VERS>\r\n      <VERS vnumber=\"22\">So 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.</VERS>\r\n      <VERS vnumber=\"23\">Because 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.</VERS>\r\n      <VERS vnumber=\"24\">Moreover 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:</VERS>\r\n      <VERS vnumber=\"25\">Thus 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.</VERS>\r\n      <VERS vnumber=\"26\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"27\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"28\">Yet 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 theirs.</VERS>\r\n      <VERS vnumber=\"29\">And 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:</VERS>\r\n      <VERS vnumber=\"30\">Thus 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"45\">\r\n      <VERS vnumber=\"1\">The 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,</VERS>\r\n      <VERS vnumber=\"2\">Thus saith the LORD, the God of Israel, unto thee, O Baruch;</VERS>\r\n      <VERS vnumber=\"3\">Thou 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.</VERS>\r\n      <VERS vnumber=\"4\">Thus 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"46\">\r\n      <VERS vnumber=\"1\">The word of the LORD which came to Jeremiah the prophet against the Gentiles;</VERS>\r\n      <VERS vnumber=\"2\">Against 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.</VERS>\r\n      <VERS vnumber=\"3\">Order ye the buckler and shield, and draw near to battle.</VERS>\r\n      <VERS vnumber=\"4\">Harness the horses; and get up, ye horsemen, and stand forth with your helmets; furbish the spears, and put on the brigandines.</VERS>\r\n      <VERS vnumber=\"5\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"6\">Let not the swift flee away, nor the mighty man escape; they shall stumble, and fall toward the north by the river Euphrates.</VERS>\r\n      <VERS vnumber=\"7\">Who is this that cometh up as a flood, whose waters are moved as the rivers?</VERS>\r\n      <VERS vnumber=\"8\">Egypt 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.</VERS>\r\n      <VERS vnumber=\"9\">Come 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.</VERS>\r\n      <VERS vnumber=\"10\">For 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.</VERS>\r\n      <VERS vnumber=\"11\">Go 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.</VERS>\r\n      <VERS vnumber=\"12\">The 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.</VERS>\r\n      <VERS vnumber=\"13\">The word that the LORD spake to Jeremiah the prophet, how Nebuchadrezzar king of Babylon should come and smite the land of Egypt.</VERS>\r\n      <VERS vnumber=\"14\">Declare 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.</VERS>\r\n      <VERS vnumber=\"15\">Why are thy valiant men swept away? they stood not, because the LORD did drive them.</VERS>\r\n      <VERS vnumber=\"16\">He 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.</VERS>\r\n      <VERS vnumber=\"17\">They did cry there, Pharaoh king of Egypt is but a noise; he hath passed the time appointed.</VERS>\r\n      <VERS vnumber=\"18\">As 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.</VERS>\r\n      <VERS vnumber=\"19\">O thou daughter dwelling in Egypt, furnish thyself to go into captivity: for Noph shall be waste and desolate without an inhabitant.</VERS>\r\n      <VERS vnumber=\"20\">Egypt is like a very fair heifer, but destruction cometh; it cometh out of the north.</VERS>\r\n      <VERS vnumber=\"21\">Also 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.</VERS>\r\n      <VERS vnumber=\"22\">The voice thereof shall go like a serpent; for they shall march with an army, and come against her with axes, as hewers of wood.</VERS>\r\n      <VERS vnumber=\"23\">They shall cut down her forest, saith the LORD, though it cannot be searched; because they are more than the grasshoppers, and are innumerable.</VERS>\r\n      <VERS vnumber=\"24\">The daughter of Egypt shall be confounded; she shall be delivered into the hand of the people of the north.</VERS>\r\n      <VERS vnumber=\"25\">The 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:</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">But 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.</VERS>\r\n      <VERS vnumber=\"28\">Fear 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"47\">\r\n      <VERS vnumber=\"1\">The word of the LORD that came to Jeremiah the prophet against the Philistines, before that Pharaoh smote Gaza.</VERS>\r\n      <VERS vnumber=\"2\">Thus 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.</VERS>\r\n      <VERS vnumber=\"3\">At 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;</VERS>\r\n      <VERS vnumber=\"4\">Because 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.</VERS>\r\n      <VERS vnumber=\"5\">Baldness is come upon Gaza; Ashkelon is cut off with the remnant of their valley: how long wilt thou cut thyself?</VERS>\r\n      <VERS vnumber=\"6\">O thou sword of the LORD, how long will it be ere thou be quiet? put up thyself into thy scabbard, rest, and be still.</VERS>\r\n      <VERS vnumber=\"7\">How can it be quiet, seeing the LORD hath given it a charge against Ashkelon, and against the sea shore? there hath he appointed it.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"48\">\r\n      <VERS vnumber=\"1\">Against 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.</VERS>\r\n      <VERS vnumber=\"2\">There 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.</VERS>\r\n      <VERS vnumber=\"3\">A voice of crying shall be from Horonaim, spoiling and great destruction.</VERS>\r\n      <VERS vnumber=\"4\">Moab is destroyed; her little ones have caused a cry to be heard.</VERS>\r\n      <VERS vnumber=\"5\">For 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.</VERS>\r\n      <VERS vnumber=\"6\">Flee, save your lives, and be like the heath in the wilderness.</VERS>\r\n      <VERS vnumber=\"7\">For 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">Give wings unto Moab, that it may flee and get away: for the cities thereof shall be desolate, without any to dwell therein.</VERS>\r\n      <VERS vnumber=\"10\">Cursed be he that doeth the work of the LORD deceitfully, and cursed be he that keepeth back his sword from blood.</VERS>\r\n      <VERS vnumber=\"11\">Moab 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.</VERS>\r\n      <VERS vnumber=\"12\">Therefore, 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.</VERS>\r\n      <VERS vnumber=\"13\">And Moab shall be ashamed of Chemosh, as the house of Israel was ashamed of Bethel their confidence.</VERS>\r\n      <VERS vnumber=\"14\">How say ye, We are mighty and strong men for the war?</VERS>\r\n      <VERS vnumber=\"15\">Moab 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.</VERS>\r\n      <VERS vnumber=\"16\">The calamity of Moab is near to come, and his affliction hasteth fast.</VERS>\r\n      <VERS vnumber=\"17\">All 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!</VERS>\r\n      <VERS vnumber=\"18\">Thou 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.</VERS>\r\n      <VERS vnumber=\"19\">O inhabitant of Aroer, stand by the way, and espy; ask him that fleeth, and her that escapeth, and say, What is done?</VERS>\r\n      <VERS vnumber=\"20\">Moab is confounded; for it is broken down: howl and cry; tell ye it in Arnon, that Moab is spoiled,</VERS>\r\n      <VERS vnumber=\"21\">And judgment is come upon the plain country; upon Holon, and upon Jahazah, and upon Mephaath,</VERS>\r\n      <VERS vnumber=\"22\">And upon Dibon, and upon Nebo, and upon Bethdiblathaim,</VERS>\r\n      <VERS vnumber=\"23\">And upon Kiriathaim, and upon Bethgamul, and upon Bethmeon,</VERS>\r\n      <VERS vnumber=\"24\">And upon Kerioth, and upon Bozrah, and upon all the cities of the land of Moab, far or near.</VERS>\r\n      <VERS vnumber=\"25\">The horn of Moab is cut off, and his arm is broken, saith the LORD.</VERS>\r\n      <VERS vnumber=\"26\">Make ye him drunken: for he magnified himself against the LORD: Moab also shall wallow in his vomit, and he also shall be in derision.</VERS>\r\n      <VERS vnumber=\"27\">For was not Israel a derision unto thee? was he found among thieves? for since thou spakest of him, thou skippedst for joy.</VERS>\r\n      <VERS vnumber=\"28\">O 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.</VERS>\r\n      <VERS vnumber=\"29\">We have heard the pride of Moab, (he is exceeding proud) his loftiness, and his arrogancy, and his pride, and the haughtiness of his heart.</VERS>\r\n      <VERS vnumber=\"30\">I know his wrath, saith the LORD; but it shall not be so; his lies shall not so effect it.</VERS>\r\n      <VERS vnumber=\"31\">Therefore will I howl for Moab, and I will cry out for all Moab; mine heart shall mourn for the men of Kirheres.</VERS>\r\n      <VERS vnumber=\"32\">O 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.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">From 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.</VERS>\r\n      <VERS vnumber=\"35\">Moreover 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.</VERS>\r\n      <VERS vnumber=\"36\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"37\">For every head shall be bald, and every beard clipped: upon all the hands shall be cuttings, and upon the loins sackcloth.</VERS>\r\n      <VERS vnumber=\"38\">There 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.</VERS>\r\n      <VERS vnumber=\"39\">They 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.</VERS>\r\n      <VERS vnumber=\"40\">For thus saith the LORD; Behold, he shall fly as an eagle, and shall spread his wings over Moab.</VERS>\r\n      <VERS vnumber=\"41\">Kerioth 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.</VERS>\r\n      <VERS vnumber=\"42\">And Moab shall be destroyed from being a people, because he hath magnified himself against the LORD.</VERS>\r\n      <VERS vnumber=\"43\">Fear, and the pit, and the snare, shall be upon thee, O inhabitant of Moab, saith the LORD.</VERS>\r\n      <VERS vnumber=\"44\">He 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.</VERS>\r\n      <VERS vnumber=\"45\">They 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.</VERS>\r\n      <VERS vnumber=\"46\">Woe be unto thee, O Moab! the people of Chemosh perisheth: for thy sons are taken captives, and thy daughters captives.</VERS>\r\n      <VERS vnumber=\"47\">Yet will I bring again the captivity of Moab in the latter days, saith the LORD. Thus far is the judgment of Moab.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"49\">\r\n      <VERS vnumber=\"1\">Concerning 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?</VERS>\r\n      <VERS vnumber=\"2\">Therefore, 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.</VERS>\r\n      <VERS vnumber=\"3\">Howl, 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.</VERS>\r\n      <VERS vnumber=\"4\">Wherefore gloriest thou in the valleys, thy flowing valley, O backsliding daughter? that trusted in her treasures, saying, Who shall come unto me?</VERS>\r\n      <VERS vnumber=\"5\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"6\">And afterward I will bring again the captivity of the children of Ammon, saith the LORD.</VERS>\r\n      <VERS vnumber=\"7\">Concerning Edom, thus saith the LORD of hosts; Is wisdom no more in Teman? is counsel perished from the prudent? is their wisdom vanished?</VERS>\r\n      <VERS vnumber=\"8\">Flee 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.</VERS>\r\n      <VERS vnumber=\"9\">If grapegatherers come to thee, would they not leave some gleaning grapes? if thieves by night, they will destroy till they have enough.</VERS>\r\n      <VERS vnumber=\"10\">But 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.</VERS>\r\n      <VERS vnumber=\"11\">Leave thy fatherless children, I will preserve them alive; and let thy widows trust in me.</VERS>\r\n      <VERS vnumber=\"12\">For 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.</VERS>\r\n      <VERS vnumber=\"13\">For 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.</VERS>\r\n      <VERS vnumber=\"14\">I 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.</VERS>\r\n      <VERS vnumber=\"15\">For, lo, I will make thee small among the heathen, and despised among men.</VERS>\r\n      <VERS vnumber=\"16\">Thy 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.</VERS>\r\n      <VERS vnumber=\"17\">Also Edom shall be a desolation: every one that goeth by it shall be astonished, and shall hiss at all the plagues thereof.</VERS>\r\n      <VERS vnumber=\"18\">As 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.</VERS>\r\n      <VERS vnumber=\"19\">Behold, 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?</VERS>\r\n      <VERS vnumber=\"20\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"21\">The earth is moved at the noise of their fall, at the cry the noise thereof was heard in the Red sea.</VERS>\r\n      <VERS vnumber=\"22\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"23\">Concerning 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.</VERS>\r\n      <VERS vnumber=\"24\">Damascus 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.</VERS>\r\n      <VERS vnumber=\"25\">How is the city of praise not left, the city of my joy!</VERS>\r\n      <VERS vnumber=\"26\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"27\">And I will kindle a fire in the wall of Damascus, and it shall consume the palaces of Benhadad.</VERS>\r\n      <VERS vnumber=\"28\">Concerning 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.</VERS>\r\n      <VERS vnumber=\"29\">Their 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.</VERS>\r\n      <VERS vnumber=\"30\">Flee, 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.</VERS>\r\n      <VERS vnumber=\"31\">Arise, get you up unto the wealthy nation, that dwelleth without care, saith the LORD, which have neither gates nor bars, which dwell alone.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">The word of the LORD that came to Jeremiah the prophet against Elam in the beginning of the reign of Zedekiah king of Judah, saying,</VERS>\r\n      <VERS vnumber=\"35\">Thus saith the LORD of hosts; Behold, I will break the bow of Elam, the chief of their might.</VERS>\r\n      <VERS vnumber=\"36\">And 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.</VERS>\r\n      <VERS vnumber=\"37\">For 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:</VERS>\r\n      <VERS vnumber=\"38\">And I will set my throne in Elam, and will destroy from thence the king and the princes, saith the LORD.</VERS>\r\n      <VERS vnumber=\"39\">But it shall come to pass in the latter days, that I will bring again the captivity of Elam, saith the LORD.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"50\">\r\n      <VERS vnumber=\"1\">The word that the LORD spake against Babylon and against the land of the Chaldeans by Jeremiah the prophet.</VERS>\r\n      <VERS vnumber=\"2\">Declare 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.</VERS>\r\n      <VERS vnumber=\"3\">For 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.</VERS>\r\n      <VERS vnumber=\"4\">In 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.</VERS>\r\n      <VERS vnumber=\"5\">They 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.</VERS>\r\n      <VERS vnumber=\"6\">My 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.</VERS>\r\n      <VERS vnumber=\"7\">All 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.</VERS>\r\n      <VERS vnumber=\"8\">Remove 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.</VERS>\r\n      <VERS vnumber=\"9\">For, 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.</VERS>\r\n      <VERS vnumber=\"10\">And Chaldea shall be a spoil: all that spoil her shall be satisfied, saith the LORD.</VERS>\r\n      <VERS vnumber=\"11\">Because 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;</VERS>\r\n      <VERS vnumber=\"12\">Your 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.</VERS>\r\n      <VERS vnumber=\"13\">Because 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.</VERS>\r\n      <VERS vnumber=\"14\">Put 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.</VERS>\r\n      <VERS vnumber=\"15\">Shout 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.</VERS>\r\n      <VERS vnumber=\"16\">Cut 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.</VERS>\r\n      <VERS vnumber=\"17\">Israel 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.</VERS>\r\n      <VERS vnumber=\"18\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">In 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.</VERS>\r\n      <VERS vnumber=\"21\">Go 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.</VERS>\r\n      <VERS vnumber=\"22\">A sound of battle is in the land, and of great destruction.</VERS>\r\n      <VERS vnumber=\"23\">How is the hammer of the whole earth cut asunder and broken! how is Babylon become a desolation among the nations!</VERS>\r\n      <VERS vnumber=\"24\">I 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.</VERS>\r\n      <VERS vnumber=\"25\">The 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.</VERS>\r\n      <VERS vnumber=\"26\">Come against her from the utmost border, open her storehouses: cast her up as heaps, and destroy her utterly: let nothing of her be left.</VERS>\r\n      <VERS vnumber=\"27\">Slay all her bullocks; let them go down to the slaughter: woe unto them! for their day is come, the time of their visitation.</VERS>\r\n      <VERS vnumber=\"28\">The 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.</VERS>\r\n      <VERS vnumber=\"29\">Call 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.</VERS>\r\n      <VERS vnumber=\"30\">Therefore shall her young men fall in the streets, and all her men of war shall be cut off in that day, saith the LORD.</VERS>\r\n      <VERS vnumber=\"31\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">Thus 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.</VERS>\r\n      <VERS vnumber=\"34\">Their 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.</VERS>\r\n      <VERS vnumber=\"35\">A sword is upon the Chaldeans, saith the LORD, and upon the inhabitants of Babylon, and upon her princes, and upon her wise men.</VERS>\r\n      <VERS vnumber=\"36\">A sword is upon the liars; and they shall dote: a sword is upon her mighty men; and they shall be dismayed.</VERS>\r\n      <VERS vnumber=\"37\">A 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.</VERS>\r\n      <VERS vnumber=\"38\">A 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.</VERS>\r\n      <VERS vnumber=\"39\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"40\">As 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.</VERS>\r\n      <VERS vnumber=\"41\">Behold, a people shall come from the north, and a great nation, and many kings shall be raised up from the coasts of the earth.</VERS>\r\n      <VERS vnumber=\"42\">They 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.</VERS>\r\n      <VERS vnumber=\"43\">The 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.</VERS>\r\n      <VERS vnumber=\"44\">Behold, 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?</VERS>\r\n      <VERS vnumber=\"45\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"46\">At the noise of the taking of Babylon the earth is moved, and the cry is heard among the nations.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"51\">\r\n      <VERS vnumber=\"1\">Thus 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;</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">Against 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.</VERS>\r\n      <VERS vnumber=\"4\">Thus the slain shall fall in the land of the Chaldeans, and they that are thrust through in her streets.</VERS>\r\n      <VERS vnumber=\"5\">For 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.</VERS>\r\n      <VERS vnumber=\"6\">Flee 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.</VERS>\r\n      <VERS vnumber=\"7\">Babylon 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.</VERS>\r\n      <VERS vnumber=\"8\">Babylon is suddenly fallen and destroyed: howl for her; take balm for her pain, if so be she may be healed.</VERS>\r\n      <VERS vnumber=\"9\">We 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.</VERS>\r\n      <VERS vnumber=\"10\">The LORD hath brought forth our righteousness: come, and let us declare in Zion the work of the LORD our God.</VERS>\r\n      <VERS vnumber=\"11\">Make 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.</VERS>\r\n      <VERS vnumber=\"12\">Set 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.</VERS>\r\n      <VERS vnumber=\"13\">O thou that dwellest upon many waters, abundant in treasures, thine end is come, and the measure of thy covetousness.</VERS>\r\n      <VERS vnumber=\"14\">The 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.</VERS>\r\n      <VERS vnumber=\"15\">He hath made the earth by his power, he hath established the world by his wisdom, and hath stretched out the heaven by his understanding.</VERS>\r\n      <VERS vnumber=\"16\">When 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.</VERS>\r\n      <VERS vnumber=\"17\">Every 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.</VERS>\r\n      <VERS vnumber=\"18\">They are vanity, the work of errors: in the time of their visitation they shall perish.</VERS>\r\n      <VERS vnumber=\"19\">The 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.</VERS>\r\n      <VERS vnumber=\"20\">Thou 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;</VERS>\r\n      <VERS vnumber=\"21\">And 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;</VERS>\r\n      <VERS vnumber=\"22\">With 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;</VERS>\r\n      <VERS vnumber=\"23\">I 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">Set 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.</VERS>\r\n      <VERS vnumber=\"28\">Prepare 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.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">The 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.</VERS>\r\n      <VERS vnumber=\"31\">One 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,</VERS>\r\n      <VERS vnumber=\"32\">And that the passages are stopped, and the reeds they have burned with fire, and the men of war are affrighted.</VERS>\r\n      <VERS vnumber=\"33\">For 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.</VERS>\r\n      <VERS vnumber=\"34\">Nebuchadrezzar 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.</VERS>\r\n      <VERS vnumber=\"35\">The 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.</VERS>\r\n      <VERS vnumber=\"36\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"37\">And Babylon shall become heaps, a dwellingplace for dragons, an astonishment, and an hissing, without an inhabitant.</VERS>\r\n      <VERS vnumber=\"38\">They shall roar together like lions: they shall yell as lions' whelps.</VERS>\r\n      <VERS vnumber=\"39\">In 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.</VERS>\r\n      <VERS vnumber=\"40\">I will bring them down like lambs to the slaughter, like rams with he goats.</VERS>\r\n      <VERS vnumber=\"41\">How is Sheshach taken! and how is the praise of the whole earth surprised! how is Babylon become an astonishment among the nations!</VERS>\r\n      <VERS vnumber=\"42\">The sea is come up upon Babylon: she is covered with the multitude of the waves thereof.</VERS>\r\n      <VERS vnumber=\"43\">Her cities are a desolation, a dry land, and a wilderness, a land wherein no man dwelleth, neither doth any son of man pass thereby.</VERS>\r\n      <VERS vnumber=\"44\">And 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.</VERS>\r\n      <VERS vnumber=\"45\">My people, go ye out of the midst of her, and deliver ye every man his soul from the fierce anger of the LORD.</VERS>\r\n      <VERS vnumber=\"46\">And 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.</VERS>\r\n      <VERS vnumber=\"47\">Therefore, 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.</VERS>\r\n      <VERS vnumber=\"48\">Then 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.</VERS>\r\n      <VERS vnumber=\"49\">As Babylon hath caused the slain of Israel to fall, so at Babylon shall fall the slain of all the earth.</VERS>\r\n      <VERS vnumber=\"50\">Ye that have escaped the sword, go away, stand not still: remember the LORD afar off, and let Jerusalem come into your mind.</VERS>\r\n      <VERS vnumber=\"51\">We are confounded, because we have heard reproach: shame hath covered our faces: for strangers are come into the sanctuaries of the LORD'S house.</VERS>\r\n      <VERS vnumber=\"52\">Wherefore, 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.</VERS>\r\n      <VERS vnumber=\"53\">Though 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.</VERS>\r\n      <VERS vnumber=\"54\">A sound of a cry cometh from Babylon, and great destruction from the land of the Chaldeans:</VERS>\r\n      <VERS vnumber=\"55\">Because 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:</VERS>\r\n      <VERS vnumber=\"56\">Because 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.</VERS>\r\n      <VERS vnumber=\"57\">And 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.</VERS>\r\n      <VERS vnumber=\"58\">Thus 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.</VERS>\r\n      <VERS vnumber=\"59\">The 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.</VERS>\r\n      <VERS vnumber=\"60\">So Jeremiah wrote in a book all the evil that should come upon Babylon, even all these words that are written against Babylon.</VERS>\r\n      <VERS vnumber=\"61\">And Jeremiah said to Seraiah, When thou comest to Babylon, and shalt see, and shalt read all these words;</VERS>\r\n      <VERS vnumber=\"62\">Then 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.</VERS>\r\n      <VERS vnumber=\"63\">And 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:</VERS>\r\n      <VERS vnumber=\"64\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"52\">\r\n      <VERS vnumber=\"1\">Zedekiah 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.</VERS>\r\n      <VERS vnumber=\"2\">And he did that which was evil in the eyes of the LORD, according to all that Jehoiakim had done.</VERS>\r\n      <VERS vnumber=\"3\">For 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">So the city was besieged unto the eleventh year of king Zedekiah.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">Then 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.</VERS>\r\n      <VERS vnumber=\"8\">But 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.</VERS>\r\n      <VERS vnumber=\"9\">Then 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.</VERS>\r\n      <VERS vnumber=\"10\">And the king of Babylon slew the sons of Zedekiah before his eyes: he slew also all the princes of Judah in Riblah.</VERS>\r\n      <VERS vnumber=\"11\">Then 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.</VERS>\r\n      <VERS vnumber=\"12\">Now 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,</VERS>\r\n      <VERS vnumber=\"13\">And 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:</VERS>\r\n      <VERS vnumber=\"14\">And all the army of the Chaldeans, that were with the captain of the guard, brake down all the walls of Jerusalem round about.</VERS>\r\n      <VERS vnumber=\"15\">Then 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.</VERS>\r\n      <VERS vnumber=\"16\">But Nebuzaradan the captain of the guard left certain of the poor of the land for vinedressers and for husbandmen.</VERS>\r\n      <VERS vnumber=\"17\">Also 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.</VERS>\r\n      <VERS vnumber=\"18\">The 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">The 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And there were ninety and six pomegranates on a side; and all the pomegranates upon the network were an hundred round about.</VERS>\r\n      <VERS vnumber=\"24\">And the captain of the guard took Seraiah the chief priest, and Zephaniah the second priest, and the three keepers of the door:</VERS>\r\n      <VERS vnumber=\"25\">He 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.</VERS>\r\n      <VERS vnumber=\"26\">So Nebuzaradan the captain of the guard took them, and brought them to the king of Babylon to Riblah.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">This is the people whom Nebuchadrezzar carried away captive: in the seventh year three thousand Jews and three and twenty:</VERS>\r\n      <VERS vnumber=\"29\">In the eighteenth year of Nebuchadrezzar he carried away captive from Jerusalem eight hundred thirty and two persons:</VERS>\r\n      <VERS vnumber=\"30\">In 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.</VERS>\r\n      <VERS vnumber=\"31\">And 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,</VERS>\r\n      <VERS vnumber=\"32\">And spake kindly unto him, and set his throne above the throne of the kings that were with him in Babylon,</VERS>\r\n      <VERS vnumber=\"33\">And changed his prison garments: and he did continually eat bread before him all the days of his life.</VERS>\r\n      <VERS vnumber=\"34\">And 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.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"25\" bname=\"Lamentations\" bsname=\"Lam\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">How 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!</VERS>\r\n      <VERS vnumber=\"2\">She 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.</VERS>\r\n      <VERS vnumber=\"3\">Judah 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.</VERS>\r\n      <VERS vnumber=\"4\">The 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.</VERS>\r\n      <VERS vnumber=\"5\">Her 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">Jerusalem 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.</VERS>\r\n      <VERS vnumber=\"8\">Jerusalem 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.</VERS>\r\n      <VERS vnumber=\"9\">Her 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.</VERS>\r\n      <VERS vnumber=\"10\">The 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.</VERS>\r\n      <VERS vnumber=\"11\">All 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.</VERS>\r\n      <VERS vnumber=\"12\">Is 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.</VERS>\r\n      <VERS vnumber=\"13\">From 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.</VERS>\r\n      <VERS vnumber=\"14\">The 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.</VERS>\r\n      <VERS vnumber=\"15\">The 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.</VERS>\r\n      <VERS vnumber=\"16\">For 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.</VERS>\r\n      <VERS vnumber=\"17\">Zion 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.</VERS>\r\n      <VERS vnumber=\"18\">The 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.</VERS>\r\n      <VERS vnumber=\"19\">I 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.</VERS>\r\n      <VERS vnumber=\"20\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"21\">They 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.</VERS>\r\n      <VERS vnumber=\"22\">Let 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">How 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!</VERS>\r\n      <VERS vnumber=\"2\">The 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.</VERS>\r\n      <VERS vnumber=\"3\">He 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.</VERS>\r\n      <VERS vnumber=\"4\">He 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.</VERS>\r\n      <VERS vnumber=\"5\">The 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">The 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.</VERS>\r\n      <VERS vnumber=\"8\">The 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.</VERS>\r\n      <VERS vnumber=\"9\">Her 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.</VERS>\r\n      <VERS vnumber=\"10\">The 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.</VERS>\r\n      <VERS vnumber=\"11\">Mine 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.</VERS>\r\n      <VERS vnumber=\"12\">They 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.</VERS>\r\n      <VERS vnumber=\"13\">What 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?</VERS>\r\n      <VERS vnumber=\"14\">Thy 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.</VERS>\r\n      <VERS vnumber=\"15\">All 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?</VERS>\r\n      <VERS vnumber=\"16\">All 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.</VERS>\r\n      <VERS vnumber=\"17\">The 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.</VERS>\r\n      <VERS vnumber=\"18\">Their 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.</VERS>\r\n      <VERS vnumber=\"19\">Arise, 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.</VERS>\r\n      <VERS vnumber=\"20\">Behold, 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?</VERS>\r\n      <VERS vnumber=\"21\">The 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.</VERS>\r\n      <VERS vnumber=\"22\">Thou 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">I am the man that hath seen affliction by the rod of his wrath.</VERS>\r\n      <VERS vnumber=\"2\">He hath led me, and brought me into darkness, but not into light.</VERS>\r\n      <VERS vnumber=\"3\">Surely against me is he turned; he turneth his hand against me all the day.</VERS>\r\n      <VERS vnumber=\"4\">My flesh and my skin hath he made old; he hath broken my bones.</VERS>\r\n      <VERS vnumber=\"5\">He hath builded against me, and compassed me with gall and travail.</VERS>\r\n      <VERS vnumber=\"6\">He hath set me in dark places, as they that be dead of old.</VERS>\r\n      <VERS vnumber=\"7\">He hath hedged me about, that I cannot get out: he hath made my chain heavy.</VERS>\r\n      <VERS vnumber=\"8\">Also when I cry and shout, he shutteth out my prayer.</VERS>\r\n      <VERS vnumber=\"9\">He hath inclosed my ways with hewn stone, he hath made my paths crooked.</VERS>\r\n      <VERS vnumber=\"10\">He was unto me as a bear lying in wait, and as a lion in secret places.</VERS>\r\n      <VERS vnumber=\"11\">He hath turned aside my ways, and pulled me in pieces: he hath made me desolate.</VERS>\r\n      <VERS vnumber=\"12\">He hath bent his bow, and set me as a mark for the arrow.</VERS>\r\n      <VERS vnumber=\"13\">He hath caused the arrows of his quiver to enter into my reins.</VERS>\r\n      <VERS vnumber=\"14\">I was a derision to all my people; and their song all the day.</VERS>\r\n      <VERS vnumber=\"15\">He hath filled me with bitterness, he hath made me drunken with wormwood.</VERS>\r\n      <VERS vnumber=\"16\">He hath also broken my teeth with gravel stones, he hath covered me with ashes.</VERS>\r\n      <VERS vnumber=\"17\">And thou hast removed my soul far off from peace: I forgat prosperity.</VERS>\r\n      <VERS vnumber=\"18\">And I said, My strength and my hope is perished from the LORD:</VERS>\r\n      <VERS vnumber=\"19\">Remembering mine affliction and my misery, the wormwood and the gall.</VERS>\r\n      <VERS vnumber=\"20\">My soul hath them still in remembrance, and is humbled in me.</VERS>\r\n      <VERS vnumber=\"21\">This I recall to my mind, therefore have I hope.</VERS>\r\n      <VERS vnumber=\"22\">It is of the LORD'S mercies that we are not consumed, because his compassions fail not.</VERS>\r\n      <VERS vnumber=\"23\">They are new every morning: great is thy faithfulness.</VERS>\r\n      <VERS vnumber=\"24\">The LORD is my portion, saith my soul; therefore will I hope in him.</VERS>\r\n      <VERS vnumber=\"25\">The LORD is good unto them that wait for him, to the soul that seeketh him.</VERS>\r\n      <VERS vnumber=\"26\">It is good that a man should both hope and quietly wait for the salvation of the LORD.</VERS>\r\n      <VERS vnumber=\"27\">It is good for a man that he bear the yoke in his youth.</VERS>\r\n      <VERS vnumber=\"28\">He sitteth alone and keepeth silence, because he hath borne it upon him.</VERS>\r\n      <VERS vnumber=\"29\">He putteth his mouth in the dust; if so be there may be hope.</VERS>\r\n      <VERS vnumber=\"30\">He giveth his cheek to him that smiteth him: he is filled full with reproach.</VERS>\r\n      <VERS vnumber=\"31\">For the Lord will not cast off for ever:</VERS>\r\n      <VERS vnumber=\"32\">But though he cause grief, yet will he have compassion according to the multitude of his mercies.</VERS>\r\n      <VERS vnumber=\"33\">For he doth not afflict willingly nor grieve the children of men.</VERS>\r\n      <VERS vnumber=\"34\">To crush under his feet all the prisoners of the earth,</VERS>\r\n      <VERS vnumber=\"35\">To turn aside the right of a man before the face of the most High,</VERS>\r\n      <VERS vnumber=\"36\">To subvert a man in his cause, the Lord approveth not.</VERS>\r\n      <VERS vnumber=\"37\">Who is he that saith, and it cometh to pass, when the Lord commandeth it not?</VERS>\r\n      <VERS vnumber=\"38\">Out of the mouth of the most High proceedeth not evil and good?</VERS>\r\n      <VERS vnumber=\"39\">Wherefore doth a living man complain, a man for the punishment of his sins?</VERS>\r\n      <VERS vnumber=\"40\">Let us search and try our ways, and turn again to the LORD.</VERS>\r\n      <VERS vnumber=\"41\">Let us lift up our heart with our hands unto God in the heavens.</VERS>\r\n      <VERS vnumber=\"42\">We have transgressed and have rebelled: thou hast not pardoned.</VERS>\r\n      <VERS vnumber=\"43\">Thou hast covered with anger, and persecuted us: thou hast slain, thou hast not pitied.</VERS>\r\n      <VERS vnumber=\"44\">Thou hast covered thyself with a cloud, that our prayer should not pass through.</VERS>\r\n      <VERS vnumber=\"45\">Thou hast made us as the offscouring and refuse in the midst of the people.</VERS>\r\n      <VERS vnumber=\"46\">All our enemies have opened their mouths against us.</VERS>\r\n      <VERS vnumber=\"47\">Fear and a snare is come upon us, desolation and destruction.</VERS>\r\n      <VERS vnumber=\"48\">Mine eye runneth down with rivers of water for the destruction of the daughter of my people.</VERS>\r\n      <VERS vnumber=\"49\">Mine eye trickleth down, and ceaseth not, without any intermission,</VERS>\r\n      <VERS vnumber=\"50\">Till the LORD look down, and behold from heaven.</VERS>\r\n      <VERS vnumber=\"51\">Mine eye affecteth mine heart because of all the daughters of my city.</VERS>\r\n      <VERS vnumber=\"52\">Mine enemies chased me sore, like a bird, without cause.</VERS>\r\n      <VERS vnumber=\"53\">They have cut off my life in the dungeon, and cast a stone upon me.</VERS>\r\n      <VERS vnumber=\"54\">Waters flowed over mine head; then I said, I am cut off.</VERS>\r\n      <VERS vnumber=\"55\">I called upon thy name, O LORD, out of the low dungeon.</VERS>\r\n      <VERS vnumber=\"56\">Thou hast heard my voice: hide not thine ear at my breathing, at my cry.</VERS>\r\n      <VERS vnumber=\"57\">Thou drewest near in the day that I called upon thee: thou saidst, Fear not.</VERS>\r\n      <VERS vnumber=\"58\">O Lord, thou hast pleaded the causes of my soul; thou hast redeemed my life.</VERS>\r\n      <VERS vnumber=\"59\">O LORD, thou hast seen my wrong: judge thou my cause.</VERS>\r\n      <VERS vnumber=\"60\">Thou hast seen all their vengeance and all their imaginations against me.</VERS>\r\n      <VERS vnumber=\"61\">Thou hast heard their reproach, O LORD, and all their imaginations against me;</VERS>\r\n      <VERS vnumber=\"62\">The lips of those that rose up against me, and their device against me all the day.</VERS>\r\n      <VERS vnumber=\"63\">Behold their sitting down, and their rising up; I am their musick.</VERS>\r\n      <VERS vnumber=\"64\">Render unto them a recompence, O LORD, according to the work of their hands.</VERS>\r\n      <VERS vnumber=\"65\">Give them sorrow of heart, thy curse unto them.</VERS>\r\n      <VERS vnumber=\"66\">Persecute and destroy them in anger from under the heavens of the LORD.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">How 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.</VERS>\r\n      <VERS vnumber=\"2\">The precious sons of Zion, comparable to fine gold, how are they esteemed as earthen pitchers, the work of the hands of the potter!</VERS>\r\n      <VERS vnumber=\"3\">Even 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.</VERS>\r\n      <VERS vnumber=\"4\">The 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.</VERS>\r\n      <VERS vnumber=\"5\">They that did feed delicately are desolate in the streets: they that were brought up in scarlet embrace dunghills.</VERS>\r\n      <VERS vnumber=\"6\">For 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.</VERS>\r\n      <VERS vnumber=\"7\">Her Nazarites were purer than snow, they were whiter than milk, they were more ruddy in body than rubies, their polishing was of sapphire:</VERS>\r\n      <VERS vnumber=\"8\">Their 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.</VERS>\r\n      <VERS vnumber=\"9\">They 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.</VERS>\r\n      <VERS vnumber=\"10\">The hands of the pitiful women have sodden their own children: they were their meat in the destruction of the daughter of my people.</VERS>\r\n      <VERS vnumber=\"11\">The 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.</VERS>\r\n      <VERS vnumber=\"12\">The 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.</VERS>\r\n      <VERS vnumber=\"13\">For the sins of her prophets, and the iniquities of her priests, that have shed the blood of the just in the midst of her,</VERS>\r\n      <VERS vnumber=\"14\">They have wandered as blind men in the streets, they have polluted themselves with blood, so that men could not touch their garments.</VERS>\r\n      <VERS vnumber=\"15\">They 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.</VERS>\r\n      <VERS vnumber=\"16\">The 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.</VERS>\r\n      <VERS vnumber=\"17\">As 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.</VERS>\r\n      <VERS vnumber=\"18\">They hunt our steps, that we cannot go in our streets: our end is near, our days are fulfilled; for our end is come.</VERS>\r\n      <VERS vnumber=\"19\">Our persecutors are swifter than the eagles of the heaven: they pursued us upon the mountains, they laid wait for us in the wilderness.</VERS>\r\n      <VERS vnumber=\"20\">The 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.</VERS>\r\n      <VERS vnumber=\"21\">Rejoice 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.</VERS>\r\n      <VERS vnumber=\"22\">The 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">Remember, O LORD, what is come upon us: consider, and behold our reproach.</VERS>\r\n      <VERS vnumber=\"2\">Our inheritance is turned to strangers, our houses to aliens.</VERS>\r\n      <VERS vnumber=\"3\">We are orphans and fatherless, our mothers are as widows.</VERS>\r\n      <VERS vnumber=\"4\">We have drunken our water for money; our wood is sold unto us.</VERS>\r\n      <VERS vnumber=\"5\">Our necks are under persecution: we labour, and have no rest.</VERS>\r\n      <VERS vnumber=\"6\">We have given the hand to the Egyptians, and to the Assyrians, to be satisfied with bread.</VERS>\r\n      <VERS vnumber=\"7\">Our fathers have sinned, and are not; and we have borne their iniquities.</VERS>\r\n      <VERS vnumber=\"8\">Servants have ruled over us: there is none that doth deliver us out of their hand.</VERS>\r\n      <VERS vnumber=\"9\">We gat our bread with the peril of our lives because of the sword of the wilderness.</VERS>\r\n      <VERS vnumber=\"10\">Our skin was black like an oven because of the terrible famine.</VERS>\r\n      <VERS vnumber=\"11\">They ravished the women in Zion, and the maids in the cities of Judah.</VERS>\r\n      <VERS vnumber=\"12\">Princes are hanged up by their hand: the faces of elders were not honoured.</VERS>\r\n      <VERS vnumber=\"13\">They took the young men to grind, and the children fell under the wood.</VERS>\r\n      <VERS vnumber=\"14\">The elders have ceased from the gate, the young men from their musick.</VERS>\r\n      <VERS vnumber=\"15\">The joy of our heart is ceased; our dance is turned into mourning.</VERS>\r\n      <VERS vnumber=\"16\">The crown is fallen from our head: woe unto us, that we have sinned!</VERS>\r\n      <VERS vnumber=\"17\">For this our heart is faint; for these things our eyes are dim.</VERS>\r\n      <VERS vnumber=\"18\">Because of the mountain of Zion, which is desolate, the foxes walk upon it.</VERS>\r\n      <VERS vnumber=\"19\">Thou, O LORD, remainest for ever; thy throne from generation to generation.</VERS>\r\n      <VERS vnumber=\"20\">Wherefore dost thou forget us for ever, and forsake us so long time?</VERS>\r\n      <VERS vnumber=\"21\">Turn thou us unto thee, O LORD, and we shall be turned; renew our days as of old.</VERS>\r\n      <VERS vnumber=\"22\">But thou hast utterly rejected us; thou art very wroth against us.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"26\" bname=\"Ezekiel\" bsname=\"Ezek\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">Now 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.</VERS>\r\n      <VERS vnumber=\"2\">In the fifth day of the month, which was the fifth year of king Jehoiachin's captivity,</VERS>\r\n      <VERS vnumber=\"3\">The 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">Also out of the midst thereof came the likeness of four living creatures. And this was their appearance; they had the likeness of a man.</VERS>\r\n      <VERS vnumber=\"6\">And every one had four faces, and every one had four wings.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And they had the hands of a man under their wings on their four sides; and they four had their faces and their wings.</VERS>\r\n      <VERS vnumber=\"9\">Their wings were joined one to another; they turned not when they went; they went every one straight forward.</VERS>\r\n      <VERS vnumber=\"10\">As 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.</VERS>\r\n      <VERS vnumber=\"11\">Thus were their faces: and their wings were stretched upward; two wings of every one were joined one to another, and two covered their bodies.</VERS>\r\n      <VERS vnumber=\"12\">And they went every one straight forward: whither the spirit was to go, they went; and they turned not when they went.</VERS>\r\n      <VERS vnumber=\"13\">As 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.</VERS>\r\n      <VERS vnumber=\"14\">And the living creatures ran and returned as the appearance of a flash of lightning.</VERS>\r\n      <VERS vnumber=\"15\">Now as I beheld the living creatures, behold one wheel upon the earth by the living creatures, with his four faces.</VERS>\r\n      <VERS vnumber=\"16\">The 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.</VERS>\r\n      <VERS vnumber=\"17\">When they went, they went upon their four sides: and they turned not when they went.</VERS>\r\n      <VERS vnumber=\"18\">As for their rings, they were so high that they were dreadful; and their rings were full of eyes round about them four.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">Whithersoever 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.</VERS>\r\n      <VERS vnumber=\"21\">When 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.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And there was a voice from the firmament that was over their heads, when they stood, and had let down their wings.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">As 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">And he said unto me, Son of man, stand upon thy feet, and I will speak unto thee.</VERS>\r\n      <VERS vnumber=\"2\">And the spirit entered into me when he spake unto me, and set me upon my feet, that I heard him that spake unto me.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">For they are impudent children and stiffhearted. I do send thee unto them; and thou shalt say unto them, Thus saith the Lord GOD.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And thou shalt speak my words unto them, whether they will hear, or whether they will forbear: for they are most rebellious.</VERS>\r\n      <VERS vnumber=\"8\">But 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.</VERS>\r\n      <VERS vnumber=\"9\">And when I looked, behold, an hand was sent unto me; and, lo, a roll of a book was therein;</VERS>\r\n      <VERS vnumber=\"10\">And he spread it before me; and it was written within and without: and there was written therein lamentations, and mourning, and woe.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Moreover he said unto me, Son of man, eat that thou findest; eat this roll, and go speak unto the house of Israel.</VERS>\r\n      <VERS vnumber=\"2\">So I opened my mouth, and he caused me to eat that roll.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And he said unto me, Son of man, go, get thee unto the house of Israel, and speak with my words unto them.</VERS>\r\n      <VERS vnumber=\"5\">For thou art not sent to a people of a strange speech and of an hard language, but to the house of Israel;</VERS>\r\n      <VERS vnumber=\"6\">Not 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.</VERS>\r\n      <VERS vnumber=\"7\">But 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.</VERS>\r\n      <VERS vnumber=\"8\">Behold, I have made thy face strong against their faces, and thy forehead strong against their foreheads.</VERS>\r\n      <VERS vnumber=\"9\">As 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.</VERS>\r\n      <VERS vnumber=\"10\">Moreover 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">Then 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.</VERS>\r\n      <VERS vnumber=\"13\">I 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.</VERS>\r\n      <VERS vnumber=\"14\">So 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.</VERS>\r\n      <VERS vnumber=\"15\">Then 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.</VERS>\r\n      <VERS vnumber=\"16\">And it came to pass at the end of seven days, that the word of the LORD came unto me, saying,</VERS>\r\n      <VERS vnumber=\"17\">Son 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.</VERS>\r\n      <VERS vnumber=\"18\">When 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.</VERS>\r\n      <VERS vnumber=\"19\">Yet 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.</VERS>\r\n      <VERS vnumber=\"20\">Again, When a righteous man doth turn from his righteousness, and commit iniquity, and I lay a stumblingblock 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.</VERS>\r\n      <VERS vnumber=\"21\">Nevertheless 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.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">Then 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.</VERS>\r\n      <VERS vnumber=\"24\">Then 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.</VERS>\r\n      <VERS vnumber=\"25\">But 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:</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">But 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">Thou also, son of man, take thee a tile, and lay it before thee, and pourtray upon it the city, even Jerusalem:</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">Moreover 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.</VERS>\r\n      <VERS vnumber=\"4\">Lie 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.</VERS>\r\n      <VERS vnumber=\"5\">For 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">Therefore thou shalt set thy face toward the siege of Jerusalem, and thine arm shall be uncovered, and thou shalt prophesy against it.</VERS>\r\n      <VERS vnumber=\"8\">And, 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.</VERS>\r\n      <VERS vnumber=\"9\">Take 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.</VERS>\r\n      <VERS vnumber=\"10\">And thy meat which thou shalt eat shall be by weight, twenty shekels a day: from time to time shalt thou eat it.</VERS>\r\n      <VERS vnumber=\"11\">Thou shalt drink also water by measure, the sixth part of an hin: from time to time shalt thou drink.</VERS>\r\n      <VERS vnumber=\"12\">And thou shalt eat it as barley cakes, and thou shalt bake it with dung that cometh out of man, in their sight.</VERS>\r\n      <VERS vnumber=\"13\">And the LORD said, Even thus shall the children of Israel eat their defiled bread among the Gentiles, whither I will drive them.</VERS>\r\n      <VERS vnumber=\"14\">Then 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.</VERS>\r\n      <VERS vnumber=\"15\">Then he said unto me, Lo, I have given thee cow's dung for man's dung, and thou shalt prepare thy bread therewith.</VERS>\r\n      <VERS vnumber=\"16\">Moreover 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:</VERS>\r\n      <VERS vnumber=\"17\">That they may want bread and water, and be astonied one with another, and consume away for their iniquity.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">Thou 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.</VERS>\r\n      <VERS vnumber=\"3\">Thou shalt also take thereof a few in number, and bind them in thy skirts.</VERS>\r\n      <VERS vnumber=\"4\">Then 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.</VERS>\r\n      <VERS vnumber=\"5\">Thus saith the Lord GOD; This is Jerusalem: I have set it in the midst of the nations and countries that are round about her.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">Therefore 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;</VERS>\r\n      <VERS vnumber=\"8\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"11\">Wherefore, 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.</VERS>\r\n      <VERS vnumber=\"12\">A 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.</VERS>\r\n      <VERS vnumber=\"13\">Thus 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.</VERS>\r\n      <VERS vnumber=\"14\">Moreover I will make thee waste, and a reproach among the nations that are round about thee, in the sight of all that pass by.</VERS>\r\n      <VERS vnumber=\"15\">So 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.</VERS>\r\n      <VERS vnumber=\"16\">When 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:</VERS>\r\n      <VERS vnumber=\"17\">So 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">And the word of the LORD came unto me, saying,</VERS>\r\n      <VERS vnumber=\"2\">Son of man, set thy face toward the mountains of Israel, and prophesy against them,</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And your altars shall be desolate, and your images shall be broken: and I will cast down your slain men before your idols.</VERS>\r\n      <VERS vnumber=\"5\">And I will lay the dead carcases of the children of Israel before their idols; and I will scatter your bones round about your altars.</VERS>\r\n      <VERS vnumber=\"6\">In 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.</VERS>\r\n      <VERS vnumber=\"7\">And the slain shall fall in the midst of you, and ye shall know that I am the LORD.</VERS>\r\n      <VERS vnumber=\"8\">Yet 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And they shall know that I am the LORD, and that I have not said in vain that I would do this evil unto them.</VERS>\r\n      <VERS vnumber=\"11\">Thus 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.</VERS>\r\n      <VERS vnumber=\"12\">He 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.</VERS>\r\n      <VERS vnumber=\"13\">Then 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.</VERS>\r\n      <VERS vnumber=\"14\">So 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">Moreover the word of the LORD came unto me, saying,</VERS>\r\n      <VERS vnumber=\"2\">Also, 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.</VERS>\r\n      <VERS vnumber=\"3\">Now 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">Thus saith the Lord GOD; An evil, an only evil, behold, is come.</VERS>\r\n      <VERS vnumber=\"6\">An end is come, the end is come: it watcheth for thee; behold, it is come.</VERS>\r\n      <VERS vnumber=\"7\">The 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.</VERS>\r\n      <VERS vnumber=\"8\">Now 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">Behold the day, behold, it is come: the morning is gone forth; the rod hath blossomed, pride hath budded.</VERS>\r\n      <VERS vnumber=\"11\">Violence is risen up into a rod of wickedness: none of them shall remain, nor of their multitude, nor of any of theirs: neither shall there be wailing for them.</VERS>\r\n      <VERS vnumber=\"12\">The time is come, the day draweth near: let not the buyer rejoice, nor the seller mourn: for wrath is upon all the multitude thereof.</VERS>\r\n      <VERS vnumber=\"13\">For 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.</VERS>\r\n      <VERS vnumber=\"14\">They have blown the trumpet, even to make all ready; but none goeth to the battle: for my wrath is upon all the multitude thereof.</VERS>\r\n      <VERS vnumber=\"15\">The 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.</VERS>\r\n      <VERS vnumber=\"16\">But 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.</VERS>\r\n      <VERS vnumber=\"17\">All hands shall be feeble, and all knees shall be weak as water.</VERS>\r\n      <VERS vnumber=\"18\">They shall also gird themselves with sackcloth, and horror shall cover them; and shame shall be upon all faces, and baldness upon all their heads.</VERS>\r\n      <VERS vnumber=\"19\">They 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.</VERS>\r\n      <VERS vnumber=\"20\">As 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">My face will I turn also from them, and they shall pollute my secret place: for the robbers shall enter into it, and defile it.</VERS>\r\n      <VERS vnumber=\"23\">Make a chain: for the land is full of bloody crimes, and the city is full of violence.</VERS>\r\n      <VERS vnumber=\"24\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"25\">Destruction cometh; and they shall seek peace, and there shall be none.</VERS>\r\n      <VERS vnumber=\"26\">Mischief 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.</VERS>\r\n      <VERS vnumber=\"27\">The 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">Then 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And, behold, the glory of the God of Israel was there, according to the vision that I saw in the plain.</VERS>\r\n      <VERS vnumber=\"5\">Then 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.</VERS>\r\n      <VERS vnumber=\"6\">He 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.</VERS>\r\n      <VERS vnumber=\"7\">And he brought me to the door of the court; and when I looked, behold a hole in the wall.</VERS>\r\n      <VERS vnumber=\"8\">Then said he unto me, Son of man, dig now in the wall: and when I had digged in the wall, behold a door.</VERS>\r\n      <VERS vnumber=\"9\">And he said unto me, Go in, and behold the wicked abominations that they do here.</VERS>\r\n      <VERS vnumber=\"10\">So 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">Then 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.</VERS>\r\n      <VERS vnumber=\"13\">He said also unto me, Turn thee yet again, and thou shalt see greater abominations that they do.</VERS>\r\n      <VERS vnumber=\"14\">Then 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.</VERS>\r\n      <VERS vnumber=\"15\">Then said he unto me, Hast thou seen this, O son of man? turn thee yet again, and thou shalt see greater abominations than these.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">Then 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.</VERS>\r\n      <VERS vnumber=\"18\">Therefore 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">He 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.</VERS>\r\n      <VERS vnumber=\"2\">And, 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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;</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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:</VERS>\r\n      <VERS vnumber=\"6\">Slay 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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?</VERS>\r\n      <VERS vnumber=\"9\">Then 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.</VERS>\r\n      <VERS vnumber=\"10\">And as for me also, mine eye shall not spare, neither will I have pity, but I will recompense their way upon their head.</VERS>\r\n      <VERS vnumber=\"11\">And, 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">Then 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">Now the cherubims stood on the right side of the house, when the man went in; and the cloud filled the inner court.</VERS>\r\n      <VERS vnumber=\"4\">Then 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.</VERS>\r\n      <VERS vnumber=\"5\">And the sound of the cherubims' wings was heard even to the outer court, as the voice of the Almighty God when he speaketh.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And there appeared in the cherubims the form of a man's hand under their wings.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And as for their appearances, they four had one likeness, as if a wheel had been in the midst of a wheel.</VERS>\r\n      <VERS vnumber=\"11\">When 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">As for the wheels, it was cried unto them in my hearing, O wheel.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And the cherubims were lifted up. This is the living creature that I saw by the river of Chebar.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">When 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.</VERS>\r\n      <VERS vnumber=\"18\">Then the glory of the LORD departed from off the threshold of the house, and stood over the cherubims.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">This 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.</VERS>\r\n      <VERS vnumber=\"21\">Every one had four faces apiece, and every one four wings; and the likeness of the hands of a man was under their wings.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">Moreover 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.</VERS>\r\n      <VERS vnumber=\"2\">Then said he unto me, Son of man, these are the men that devise mischief, and give wicked counsel in this city:</VERS>\r\n      <VERS vnumber=\"3\">Which say, It is not near; let us build houses: this city is the caldron, and we be the flesh.</VERS>\r\n      <VERS vnumber=\"4\">Therefore prophesy against them, prophesy, O son of man.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">Ye have multiplied your slain in this city, and ye have filled the streets thereof with the slain.</VERS>\r\n      <VERS vnumber=\"7\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"8\">Ye have feared the sword; and I will bring a sword upon you, saith the Lord GOD.</VERS>\r\n      <VERS vnumber=\"9\">And I will bring you out of the midst thereof, and deliver you into the hands of strangers, and will execute judgments among you.</VERS>\r\n      <VERS vnumber=\"10\">Ye shall fall by the sword; I will judge you in the border of Israel; and ye shall know that I am the LORD.</VERS>\r\n      <VERS vnumber=\"11\">This 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:</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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?</VERS>\r\n      <VERS vnumber=\"14\">Again the word of the LORD came unto me, saying,</VERS>\r\n      <VERS vnumber=\"15\">Son 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.</VERS>\r\n      <VERS vnumber=\"16\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"17\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"18\">And they shall come thither, and they shall take away all the detestable things thereof and all the abominations thereof from thence.</VERS>\r\n      <VERS vnumber=\"19\">And 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:</VERS>\r\n      <VERS vnumber=\"20\">That 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.</VERS>\r\n      <VERS vnumber=\"21\">But 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.</VERS>\r\n      <VERS vnumber=\"22\">Then did the cherubims lift up their wings, and the wheels beside them; and the glory of the God of Israel was over them above.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">Afterwards 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.</VERS>\r\n      <VERS vnumber=\"25\">Then I spake unto them of the captivity all the things that the LORD had shewed me.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">The word of the LORD also came unto me, saying,</VERS>\r\n      <VERS vnumber=\"2\">Son 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.</VERS>\r\n      <VERS vnumber=\"3\">Therefore, 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.</VERS>\r\n      <VERS vnumber=\"4\">Then 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.</VERS>\r\n      <VERS vnumber=\"5\">Dig thou through the wall in their sight, and carry out thereby.</VERS>\r\n      <VERS vnumber=\"6\">In 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And in the morning came the word of the LORD unto me, saying,</VERS>\r\n      <VERS vnumber=\"9\">Son of man, hath not the house of Israel, the rebellious house, said unto thee, What doest thou?</VERS>\r\n      <VERS vnumber=\"10\">Say 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.</VERS>\r\n      <VERS vnumber=\"11\">Say, I am your sign: like as I have done, so shall it be done unto them: they shall remove and go into captivity.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">My 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And they shall know that I am the LORD, when I shall scatter them among the nations, and disperse them in the countries.</VERS>\r\n      <VERS vnumber=\"16\">But 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.</VERS>\r\n      <VERS vnumber=\"17\">Moreover the word of the LORD came to me, saying,</VERS>\r\n      <VERS vnumber=\"18\">Son of man, eat thy bread with quaking, and drink thy water with trembling and with carefulness;</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And the cities that are inhabited shall be laid waste, and the land shall be desolate; and ye shall know that I am the LORD.</VERS>\r\n      <VERS vnumber=\"21\">And the word of the LORD came unto me, saying,</VERS>\r\n      <VERS vnumber=\"22\">Son of man, what is that proverb that ye have in the land of Israel, saying, The days are prolonged, and every vision faileth?</VERS>\r\n      <VERS vnumber=\"23\">Tell 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.</VERS>\r\n      <VERS vnumber=\"24\">For there shall be no more any vain vision nor flattering divination within the house of Israel.</VERS>\r\n      <VERS vnumber=\"25\">For 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.</VERS>\r\n      <VERS vnumber=\"26\">Again the word of the LORD came to me, saying,</VERS>\r\n      <VERS vnumber=\"27\">Son 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.</VERS>\r\n      <VERS vnumber=\"28\">Therefore 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">And the word of the LORD came unto me, saying,</VERS>\r\n      <VERS vnumber=\"2\">Son 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;</VERS>\r\n      <VERS vnumber=\"3\">Thus saith the Lord GOD; Woe unto the foolish prophets, that follow their own spirit, and have seen nothing!</VERS>\r\n      <VERS vnumber=\"4\">O Israel, thy prophets are like the foxes in the deserts.</VERS>\r\n      <VERS vnumber=\"5\">Ye 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.</VERS>\r\n      <VERS vnumber=\"6\">They 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.</VERS>\r\n      <VERS vnumber=\"7\">Have 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?</VERS>\r\n      <VERS vnumber=\"8\">Therefore thus saith the Lord GOD; Because ye have spoken vanity, and seen lies, therefore, behold, I am against you, saith the Lord GOD.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">Because, 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:</VERS>\r\n      <VERS vnumber=\"11\">Say 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.</VERS>\r\n      <VERS vnumber=\"12\">Lo, when the wall is fallen, shall it not be said unto you, Where is the daubing wherewith ye have daubed it?</VERS>\r\n      <VERS vnumber=\"13\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"14\">So 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.</VERS>\r\n      <VERS vnumber=\"15\">Thus 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;</VERS>\r\n      <VERS vnumber=\"16\">To 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.</VERS>\r\n      <VERS vnumber=\"17\">Likewise, 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,</VERS>\r\n      <VERS vnumber=\"18\">And 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?</VERS>\r\n      <VERS vnumber=\"19\">And 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?</VERS>\r\n      <VERS vnumber=\"20\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"21\">Your 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.</VERS>\r\n      <VERS vnumber=\"22\">Because 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:</VERS>\r\n      <VERS vnumber=\"23\">Therefore 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">Then came certain of the elders of Israel unto me, and sat before me.</VERS>\r\n      <VERS vnumber=\"2\">And the word of the LORD came unto me, saying,</VERS>\r\n      <VERS vnumber=\"3\">Son 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?</VERS>\r\n      <VERS vnumber=\"4\">Therefore 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;</VERS>\r\n      <VERS vnumber=\"5\">That I may take the house of Israel in their own heart, because they are all estranged from me through their idols.</VERS>\r\n      <VERS vnumber=\"6\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"7\">For 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:</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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;</VERS>\r\n      <VERS vnumber=\"11\">That 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.</VERS>\r\n      <VERS vnumber=\"12\">The word of the LORD came again to me, saying,</VERS>\r\n      <VERS vnumber=\"13\">Son 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:</VERS>\r\n      <VERS vnumber=\"14\">Though these three men, Noah, Daniel, and Job, were in it, they should deliver but their own souls by their righteousness, saith the Lord GOD.</VERS>\r\n      <VERS vnumber=\"15\">If 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:</VERS>\r\n      <VERS vnumber=\"16\">Though 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.</VERS>\r\n      <VERS vnumber=\"17\">Or 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:</VERS>\r\n      <VERS vnumber=\"18\">Though 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.</VERS>\r\n      <VERS vnumber=\"19\">Or 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:</VERS>\r\n      <VERS vnumber=\"20\">Though 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.</VERS>\r\n      <VERS vnumber=\"21\">For 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?</VERS>\r\n      <VERS vnumber=\"22\">Yet, 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.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">And the word of the LORD came unto me, saying,</VERS>\r\n      <VERS vnumber=\"2\">Son of man, What is the vine tree more than any tree, or than a branch which is among the trees of the forest?</VERS>\r\n      <VERS vnumber=\"3\">Shall wood be taken thereof to do any work? or will men take a pin of it to hang any vessel thereon?</VERS>\r\n      <VERS vnumber=\"4\">Behold, 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?</VERS>\r\n      <VERS vnumber=\"5\">Behold, 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?</VERS>\r\n      <VERS vnumber=\"6\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And I will make the land desolate, because they have committed a trespass, saith the Lord GOD.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">Again the word of the LORD came unto me, saying,</VERS>\r\n      <VERS vnumber=\"2\">Son of man, cause Jerusalem to know her abominations,</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">None 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">I 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.</VERS>\r\n      <VERS vnumber=\"8\">Now 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.</VERS>\r\n      <VERS vnumber=\"9\">Then washed I thee with water; yea, I throughly washed away thy blood from thee, and I anointed thee with oil.</VERS>\r\n      <VERS vnumber=\"10\">I 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.</VERS>\r\n      <VERS vnumber=\"11\">I decked thee also with ornaments, and I put bracelets upon thy hands, and a chain on thy neck.</VERS>\r\n      <VERS vnumber=\"12\">And I put a jewel on thy forehead, and earrings in thine ears, and a beautiful crown upon thine head.</VERS>\r\n      <VERS vnumber=\"13\">Thus 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">But 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">Thou 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,</VERS>\r\n      <VERS vnumber=\"18\">And tookest thy broidered garments, and coveredst them: and thou hast set mine oil and mine incense before them.</VERS>\r\n      <VERS vnumber=\"19\">My 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.</VERS>\r\n      <VERS vnumber=\"20\">Moreover 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,</VERS>\r\n      <VERS vnumber=\"21\">That thou hast slain my children, and delivered them to cause them to pass through the fire for them?</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And it came to pass after all thy wickedness, (woe, woe unto thee! saith the Lord GOD;)</VERS>\r\n      <VERS vnumber=\"24\">That thou hast also built unto thee an eminent place, and hast made thee an high place in every street.</VERS>\r\n      <VERS vnumber=\"25\">Thou 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.</VERS>\r\n      <VERS vnumber=\"26\">Thou hast also committed fornication with the Egyptians thy neighbours, great of flesh; and hast increased thy whoredoms, to provoke me to anger.</VERS>\r\n      <VERS vnumber=\"27\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"28\">Thou 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.</VERS>\r\n      <VERS vnumber=\"29\">Thou hast moreover multiplied thy fornication in the land of Canaan unto Chaldea; and yet thou wast not satisfied herewith.</VERS>\r\n      <VERS vnumber=\"30\">How weak is thine heart, saith the Lord GOD, seeing thou doest all these things, the work of an imperious whorish woman;</VERS>\r\n      <VERS vnumber=\"31\">In 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;</VERS>\r\n      <VERS vnumber=\"32\">But as a wife that committeth adultery, which taketh strangers instead of her husband!</VERS>\r\n      <VERS vnumber=\"33\">They 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.</VERS>\r\n      <VERS vnumber=\"34\">And 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.</VERS>\r\n      <VERS vnumber=\"35\">Wherefore, O harlot, hear the word of the LORD:</VERS>\r\n      <VERS vnumber=\"36\">Thus 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;</VERS>\r\n      <VERS vnumber=\"37\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"38\">And I will judge thee, as women that break wedlock and shed blood are judged; and I will give thee blood in fury and jealousy.</VERS>\r\n      <VERS vnumber=\"39\">And 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.</VERS>\r\n      <VERS vnumber=\"40\">They shall also bring up a company against thee, and they shall stone thee with stones, and thrust thee through with their swords.</VERS>\r\n      <VERS vnumber=\"41\">And 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.</VERS>\r\n      <VERS vnumber=\"42\">So 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.</VERS>\r\n      <VERS vnumber=\"43\">Because 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.</VERS>\r\n      <VERS vnumber=\"44\">Behold, every one that useth proverbs shall use this proverb against thee, saying, As is the mother, so is her daughter.</VERS>\r\n      <VERS vnumber=\"45\">Thou 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.</VERS>\r\n      <VERS vnumber=\"46\">And 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.</VERS>\r\n      <VERS vnumber=\"47\">Yet 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.</VERS>\r\n      <VERS vnumber=\"48\">As I live, saith the Lord GOD, Sodom thy sister hath not done, she nor her daughters, as thou hast done, thou and thy daughters.</VERS>\r\n      <VERS vnumber=\"49\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"50\">And they were haughty, and committed abomination before me: therefore I took them away as I saw good.</VERS>\r\n      <VERS vnumber=\"51\">Neither 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.</VERS>\r\n      <VERS vnumber=\"52\">Thou 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.</VERS>\r\n      <VERS vnumber=\"53\">When 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:</VERS>\r\n      <VERS vnumber=\"54\">That thou mayest bear thine own shame, and mayest be confounded in all that thou hast done, in that thou art a comfort unto them.</VERS>\r\n      <VERS vnumber=\"55\">When 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.</VERS>\r\n      <VERS vnumber=\"56\">For thy sister Sodom was not mentioned by thy mouth in the day of thy pride,</VERS>\r\n      <VERS vnumber=\"57\">Before 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.</VERS>\r\n      <VERS vnumber=\"58\">Thou hast borne thy lewdness and thine abominations, saith the LORD.</VERS>\r\n      <VERS vnumber=\"59\">For thus saith the Lord GOD; I will even deal with thee as thou hast done, which hast despised the oath in breaking the covenant.</VERS>\r\n      <VERS vnumber=\"60\">Nevertheless I will remember my covenant with thee in the days of thy youth, and I will establish unto thee an everlasting covenant.</VERS>\r\n      <VERS vnumber=\"61\">Then 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.</VERS>\r\n      <VERS vnumber=\"62\">And I will establish my covenant with thee; and thou shalt know that I am the LORD:</VERS>\r\n      <VERS vnumber=\"63\">That 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"17\">\r\n      <VERS vnumber=\"1\">And the word of the LORD came unto me, saying,</VERS>\r\n      <VERS vnumber=\"2\">Son of man, put forth a riddle, and speak a parable unto the house of Israel;</VERS>\r\n      <VERS vnumber=\"3\">And 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:</VERS>\r\n      <VERS vnumber=\"4\">He cropped off the top of his young twigs, and carried it into a land of traffick; he set it in a city of merchants.</VERS>\r\n      <VERS vnumber=\"5\">He 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">There 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.</VERS>\r\n      <VERS vnumber=\"8\">It 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.</VERS>\r\n      <VERS vnumber=\"9\">Say 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.</VERS>\r\n      <VERS vnumber=\"10\">Yea, 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.</VERS>\r\n      <VERS vnumber=\"11\">Moreover the word of the LORD came unto me, saying,</VERS>\r\n      <VERS vnumber=\"12\">Say 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;</VERS>\r\n      <VERS vnumber=\"13\">And 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:</VERS>\r\n      <VERS vnumber=\"14\">That the kingdom might be base, that it might not lift itself up, but that by keeping of his covenant it might stand.</VERS>\r\n      <VERS vnumber=\"15\">But 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?</VERS>\r\n      <VERS vnumber=\"16\">As 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.</VERS>\r\n      <VERS vnumber=\"17\">Neither 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:</VERS>\r\n      <VERS vnumber=\"18\">Seeing 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.</VERS>\r\n      <VERS vnumber=\"19\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">Thus 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:</VERS>\r\n      <VERS vnumber=\"23\">In 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"18\">\r\n      <VERS vnumber=\"1\">The word of the LORD came unto me again, saying,</VERS>\r\n      <VERS vnumber=\"2\">What 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?</VERS>\r\n      <VERS vnumber=\"3\">As I live, saith the Lord GOD, ye shall not have occasion any more to use this proverb in Israel.</VERS>\r\n      <VERS vnumber=\"4\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"5\">But if a man be just, and do that which is lawful and right,</VERS>\r\n      <VERS vnumber=\"6\">And 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,</VERS>\r\n      <VERS vnumber=\"7\">And 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;</VERS>\r\n      <VERS vnumber=\"8\">He 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,</VERS>\r\n      <VERS vnumber=\"9\">Hath walked in my statutes, and hath kept my judgments, to deal truly; he is just, he shall surely live, saith the Lord GOD.</VERS>\r\n      <VERS vnumber=\"10\">If he beget a son that is a robber, a shedder of blood, and that doeth the like to any one of these things,</VERS>\r\n      <VERS vnumber=\"11\">And that doeth not any of those duties, but even hath eaten upon the mountains, and defiled his neighbour's wife,</VERS>\r\n      <VERS vnumber=\"12\">Hath 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,</VERS>\r\n      <VERS vnumber=\"13\">Hath 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.</VERS>\r\n      <VERS vnumber=\"14\">Now, lo, if he beget a son, that seeth all his father's sins which he hath done, and considereth, and doeth not such like,</VERS>\r\n      <VERS vnumber=\"15\">That 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,</VERS>\r\n      <VERS vnumber=\"16\">Neither 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,</VERS>\r\n      <VERS vnumber=\"17\">That 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.</VERS>\r\n      <VERS vnumber=\"18\">As 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.</VERS>\r\n      <VERS vnumber=\"19\">Yet 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.</VERS>\r\n      <VERS vnumber=\"20\">The 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.</VERS>\r\n      <VERS vnumber=\"21\">But 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.</VERS>\r\n      <VERS vnumber=\"22\">All his transgressions that he hath committed, they shall not be mentioned unto him: in his righteousness that he hath done he shall live.</VERS>\r\n      <VERS vnumber=\"23\">Have 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?</VERS>\r\n      <VERS vnumber=\"24\">But 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.</VERS>\r\n      <VERS vnumber=\"25\">Yet 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?</VERS>\r\n      <VERS vnumber=\"26\">When 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.</VERS>\r\n      <VERS vnumber=\"27\">Again, 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.</VERS>\r\n      <VERS vnumber=\"28\">Because he considereth, and turneth away from all his transgressions that he hath committed, he shall surely live, he shall not die.</VERS>\r\n      <VERS vnumber=\"29\">Yet 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?</VERS>\r\n      <VERS vnumber=\"30\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"31\">Cast 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?</VERS>\r\n      <VERS vnumber=\"32\">For I have no pleasure in the death of him that dieth, saith the Lord GOD: wherefore turn yourselves, and live ye.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"19\">\r\n      <VERS vnumber=\"1\">Moreover take thou up a lamentation for the princes of Israel,</VERS>\r\n      <VERS vnumber=\"2\">And say, What is thy mother? A lioness: she lay down among lions, she nourished her whelps among young lions.</VERS>\r\n      <VERS vnumber=\"3\">And she brought up one of her whelps: it became a young lion, and it learned to catch the prey; it devoured men.</VERS>\r\n      <VERS vnumber=\"4\">The nations also heard of him; he was taken in their pit, and they brought him with chains unto the land of Egypt.</VERS>\r\n      <VERS vnumber=\"5\">Now 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.</VERS>\r\n      <VERS vnumber=\"6\">And he went up and down among the lions, he became a young lion, and learned to catch the prey, and devoured men.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">Then the nations set against him on every side from the provinces, and spread their net over him: he was taken in their pit.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">Thy mother is like a vine in thy blood, planted by the waters: she was fruitful and full of branches by reason of many waters.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">But 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.</VERS>\r\n      <VERS vnumber=\"13\">And now she is planted in the wilderness, in a dry and thirsty ground.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"20\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">Then came the word of the LORD unto me, saying,</VERS>\r\n      <VERS vnumber=\"3\">Son 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.</VERS>\r\n      <VERS vnumber=\"4\">Wilt thou judge them, son of man, wilt thou judge them? cause them to know the abominations of their fathers:</VERS>\r\n      <VERS vnumber=\"5\">And 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;</VERS>\r\n      <VERS vnumber=\"6\">In 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:</VERS>\r\n      <VERS vnumber=\"7\">Then 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.</VERS>\r\n      <VERS vnumber=\"8\">But 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.</VERS>\r\n      <VERS vnumber=\"9\">But 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.</VERS>\r\n      <VERS vnumber=\"10\">Wherefore I caused them to go forth out of the land of Egypt, and brought them into the wilderness.</VERS>\r\n      <VERS vnumber=\"11\">And I gave them my statutes, and shewed them my judgments, which if a man do, he shall even live in them.</VERS>\r\n      <VERS vnumber=\"12\">Moreover 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.</VERS>\r\n      <VERS vnumber=\"13\">But 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.</VERS>\r\n      <VERS vnumber=\"14\">But I wrought for my name's sake, that it should not be polluted before the heathen, in whose sight I brought them out.</VERS>\r\n      <VERS vnumber=\"15\">Yet 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;</VERS>\r\n      <VERS vnumber=\"16\">Because they despised my judgments, and walked not in my statutes, but polluted my sabbaths: for their heart went after their idols.</VERS>\r\n      <VERS vnumber=\"17\">Nevertheless mine eye spared them from destroying them, neither did I make an end of them in the wilderness.</VERS>\r\n      <VERS vnumber=\"18\">But 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:</VERS>\r\n      <VERS vnumber=\"19\">I am the LORD your God; walk in my statutes, and keep my judgments, and do them;</VERS>\r\n      <VERS vnumber=\"20\">And hallow my sabbaths; and they shall be a sign between me and you, that ye may know that I am the LORD your God.</VERS>\r\n      <VERS vnumber=\"21\">Notwithstanding 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.</VERS>\r\n      <VERS vnumber=\"22\">Nevertheless 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.</VERS>\r\n      <VERS vnumber=\"23\">I lifted up mine hand unto them also in the wilderness, that I would scatter them among the heathen, and disperse them through the countries;</VERS>\r\n      <VERS vnumber=\"24\">Because they had not executed my judgments, but had despised my statutes, and had polluted my sabbaths, and their eyes were after their fathers' idols.</VERS>\r\n      <VERS vnumber=\"25\">Wherefore I gave them also statutes that were not good, and judgments whereby they should not live;</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">Therefore, 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.</VERS>\r\n      <VERS vnumber=\"28\">For 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.</VERS>\r\n      <VERS vnumber=\"29\">Then I said unto them, What is the high place whereunto ye go? And the name thereof is called Bamah unto this day.</VERS>\r\n      <VERS vnumber=\"30\">Wherefore 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?</VERS>\r\n      <VERS vnumber=\"31\">For 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.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">As 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:</VERS>\r\n      <VERS vnumber=\"34\">And 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.</VERS>\r\n      <VERS vnumber=\"35\">And I will bring you into the wilderness of the people, and there will I plead with you face to face.</VERS>\r\n      <VERS vnumber=\"36\">Like as I pleaded with your fathers in the wilderness of the land of Egypt, so will I plead with you, saith the Lord GOD.</VERS>\r\n      <VERS vnumber=\"37\">And I will cause you to pass under the rod, and I will bring you into the bond of the covenant:</VERS>\r\n      <VERS vnumber=\"38\">And 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.</VERS>\r\n      <VERS vnumber=\"39\">As 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.</VERS>\r\n      <VERS vnumber=\"40\">For 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.</VERS>\r\n      <VERS vnumber=\"41\">I 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.</VERS>\r\n      <VERS vnumber=\"42\">And 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.</VERS>\r\n      <VERS vnumber=\"43\">And 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.</VERS>\r\n      <VERS vnumber=\"44\">And 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.</VERS>\r\n      <VERS vnumber=\"45\">Moreover the word of the LORD came unto me, saying,</VERS>\r\n      <VERS vnumber=\"46\">Son of man, set thy face toward the south, and drop thy word toward the south, and prophesy against the forest of the south field;</VERS>\r\n      <VERS vnumber=\"47\">And 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.</VERS>\r\n      <VERS vnumber=\"48\">And all flesh shall see that I the LORD have kindled it: it shall not be quenched.</VERS>\r\n      <VERS vnumber=\"49\">Then said I, Ah Lord GOD! they say of me, Doth he not speak parables?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"21\">\r\n      <VERS vnumber=\"1\">And the word of the LORD came unto me, saying,</VERS>\r\n      <VERS vnumber=\"2\">Son of man, set thy face toward Jerusalem, and drop thy word toward the holy places, and prophesy against the land of Israel,</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">Seeing 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:</VERS>\r\n      <VERS vnumber=\"5\">That all flesh may know that I the LORD have drawn forth my sword out of his sheath: it shall not return any more.</VERS>\r\n      <VERS vnumber=\"6\">Sigh therefore, thou son of man, with the breaking of thy loins; and with bitterness sigh before their eyes.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">Again the word of the LORD came unto me, saying,</VERS>\r\n      <VERS vnumber=\"9\">Son of man, prophesy, and say, Thus saith the LORD; Say, A sword, a sword is sharpened, and also furbished:</VERS>\r\n      <VERS vnumber=\"10\">It 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">Cry 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.</VERS>\r\n      <VERS vnumber=\"13\">Because it is a trial, and what if the sword contemn even the rod? it shall be no more, saith the Lord GOD.</VERS>\r\n      <VERS vnumber=\"14\">Thou 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.</VERS>\r\n      <VERS vnumber=\"15\">I 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.</VERS>\r\n      <VERS vnumber=\"16\">Go thee one way or other, either on the right hand, or on the left, whithersoever thy face is set.</VERS>\r\n      <VERS vnumber=\"17\">I will also smite mine hands together, and I will cause my fury to rest: I the LORD have said it.</VERS>\r\n      <VERS vnumber=\"18\">The word of the LORD came unto me again, saying,</VERS>\r\n      <VERS vnumber=\"19\">Also, 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.</VERS>\r\n      <VERS vnumber=\"20\">Appoint a way, that the sword may come to Rabbath of the Ammonites, and to Judah in Jerusalem the defenced.</VERS>\r\n      <VERS vnumber=\"21\">For 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.</VERS>\r\n      <VERS vnumber=\"22\">At 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.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"25\">And thou, profane wicked prince of Israel, whose day is come, when iniquity shall have an end,</VERS>\r\n      <VERS vnumber=\"26\">Thus 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.</VERS>\r\n      <VERS vnumber=\"27\">I will overturn, overturn, overturn, it: and it shall be no more, until he come whose right it is; and I will give it him.</VERS>\r\n      <VERS vnumber=\"28\">And 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:</VERS>\r\n      <VERS vnumber=\"29\">Whiles 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.</VERS>\r\n      <VERS vnumber=\"30\">Shall 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.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n      <VERS vnumber=\"32\">Thou 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"22\">\r\n      <VERS vnumber=\"1\">Moreover the word of the LORD came unto me, saying,</VERS>\r\n      <VERS vnumber=\"2\">Now, thou son of man, wilt thou judge, wilt thou judge the bloody city? yea, thou shalt shew her all her abominations.</VERS>\r\n      <VERS vnumber=\"3\">Then 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.</VERS>\r\n      <VERS vnumber=\"4\">Thou 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.</VERS>\r\n      <VERS vnumber=\"5\">Those that be near, and those that be far from thee, shall mock thee, which art infamous and much vexed.</VERS>\r\n      <VERS vnumber=\"6\">Behold, the princes of Israel, every one were in thee to their power to shed blood.</VERS>\r\n      <VERS vnumber=\"7\">In 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.</VERS>\r\n      <VERS vnumber=\"8\">Thou hast despised mine holy things, and hast profaned my sabbaths.</VERS>\r\n      <VERS vnumber=\"9\">In 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.</VERS>\r\n      <VERS vnumber=\"10\">In thee have they discovered their fathers' nakedness: in thee have they humbled her that was set apart for pollution.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">In 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.</VERS>\r\n      <VERS vnumber=\"13\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"14\">Can 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.</VERS>\r\n      <VERS vnumber=\"15\">And I will scatter thee among the heathen, and disperse thee in the countries, and will consume thy filthiness out of thee.</VERS>\r\n      <VERS vnumber=\"16\">And thou shalt take thine inheritance in thyself in the sight of the heathen, and thou shalt know that I am the LORD.</VERS>\r\n      <VERS vnumber=\"17\">And the word of the LORD came unto me, saying,</VERS>\r\n      <VERS vnumber=\"18\">Son 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.</VERS>\r\n      <VERS vnumber=\"19\">Therefore thus saith the Lord GOD; Because ye are all become dross, behold, therefore I will gather you into the midst of Jerusalem.</VERS>\r\n      <VERS vnumber=\"20\">As 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.</VERS>\r\n      <VERS vnumber=\"21\">Yea, I will gather you, and blow upon you in the fire of my wrath, and ye shall be melted in the midst thereof.</VERS>\r\n      <VERS vnumber=\"22\">As 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.</VERS>\r\n      <VERS vnumber=\"23\">And the word of the LORD came unto me, saying,</VERS>\r\n      <VERS vnumber=\"24\">Son of man, say unto her, Thou art the land that is not cleansed, nor rained upon in the day of indignation.</VERS>\r\n      <VERS vnumber=\"25\">There 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.</VERS>\r\n      <VERS vnumber=\"26\">Her 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.</VERS>\r\n      <VERS vnumber=\"27\">Her princes in the midst thereof are like wolves ravening the prey, to shed blood, and to destroy souls, to get dishonest gain.</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">The people of the land have used oppression, and exercised robbery, and have vexed the poor and needy: yea, they have oppressed the stranger wrongfully.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">Therefore 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"23\">\r\n      <VERS vnumber=\"1\">The word of the LORD came again unto me, saying,</VERS>\r\n      <VERS vnumber=\"2\">Son of man, there were two women, the daughters of one mother:</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And Aholah played the harlot when she was mine; and she doted on her lovers, on the Assyrians her neighbours,</VERS>\r\n      <VERS vnumber=\"6\">Which were clothed with blue, captains and rulers, all of them desirable young men, horsemen riding upon horses.</VERS>\r\n      <VERS vnumber=\"7\">Thus 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.</VERS>\r\n      <VERS vnumber=\"8\">Neither 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.</VERS>\r\n      <VERS vnumber=\"9\">Wherefore I have delivered her into the hand of her lovers, into the hand of the Assyrians, upon whom she doted.</VERS>\r\n      <VERS vnumber=\"10\">These 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">She doted upon the Assyrians her neighbours, captains and rulers clothed most gorgeously, horsemen riding upon horses, all of them desirable young men.</VERS>\r\n      <VERS vnumber=\"13\">Then I saw that she was defiled, that they took both one way,</VERS>\r\n      <VERS vnumber=\"14\">And that she increased her whoredoms: for when she saw men pourtrayed upon the wall, the images of the Chaldeans pourtrayed with vermilion,</VERS>\r\n      <VERS vnumber=\"15\">Girded 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:</VERS>\r\n      <VERS vnumber=\"16\">And as soon as she saw them with her eyes, she doted upon them, and sent messengers unto them into Chaldea.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">So she discovered her whoredoms, and discovered her nakedness: then my mind was alienated from her, like as my mind was alienated from her sister.</VERS>\r\n      <VERS vnumber=\"19\">Yet she multiplied her whoredoms, in calling to remembrance the days of her youth, wherein she had played the harlot in the land of Egypt.</VERS>\r\n      <VERS vnumber=\"20\">For she doted upon their paramours, whose flesh is as the flesh of asses, and whose issue is like the issue of horses.</VERS>\r\n      <VERS vnumber=\"21\">Thus thou calledst to remembrance the lewdness of thy youth, in bruising thy teats by the Egyptians for the paps of thy youth.</VERS>\r\n      <VERS vnumber=\"22\">Therefore, 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;</VERS>\r\n      <VERS vnumber=\"23\">The 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">They shall also strip thee out of thy clothes, and take away thy fair jewels.</VERS>\r\n      <VERS vnumber=\"27\">Thus 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.</VERS>\r\n      <VERS vnumber=\"28\">For 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:</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">I will do these things unto thee, because thou hast gone a whoring after the heathen, and because thou art polluted with their idols.</VERS>\r\n      <VERS vnumber=\"31\">Thou hast walked in the way of thy sister; therefore will I give her cup into thine hand.</VERS>\r\n      <VERS vnumber=\"32\">Thus 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.</VERS>\r\n      <VERS vnumber=\"33\">Thou shalt be filled with drunkenness and sorrow, with the cup of astonishment and desolation, with the cup of thy sister Samaria.</VERS>\r\n      <VERS vnumber=\"34\">Thou 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.</VERS>\r\n      <VERS vnumber=\"35\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"36\">The LORD said moreover unto me; Son of man, wilt thou judge Aholah and Aholibah? yea, declare unto them their abominations;</VERS>\r\n      <VERS vnumber=\"37\">That 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.</VERS>\r\n      <VERS vnumber=\"38\">Moreover this they have done unto me: they have defiled my sanctuary in the same day, and have profaned my sabbaths.</VERS>\r\n      <VERS vnumber=\"39\">For 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.</VERS>\r\n      <VERS vnumber=\"40\">And 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,</VERS>\r\n      <VERS vnumber=\"41\">And satest upon a stately bed, and a table prepared before it, whereupon thou hast set mine incense and mine oil.</VERS>\r\n      <VERS vnumber=\"42\">And 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.</VERS>\r\n      <VERS vnumber=\"43\">Then said I unto her that was old in adulteries, Will they now commit whoredoms with her, and she with them?</VERS>\r\n      <VERS vnumber=\"44\">Yet 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.</VERS>\r\n      <VERS vnumber=\"45\">And 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.</VERS>\r\n      <VERS vnumber=\"46\">For thus saith the Lord GOD; I will bring up a company upon them, and will give them to be removed and spoiled.</VERS>\r\n      <VERS vnumber=\"47\">And 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.</VERS>\r\n      <VERS vnumber=\"48\">Thus will I cause lewdness to cease out of the land, that all women may be taught not to do after your lewdness.</VERS>\r\n      <VERS vnumber=\"49\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"24\">\r\n      <VERS vnumber=\"1\">Again in the ninth year, in the tenth month, in the tenth day of the month, the word of the LORD came unto me, saying,</VERS>\r\n      <VERS vnumber=\"2\">Son 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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:</VERS>\r\n      <VERS vnumber=\"4\">Gather the pieces thereof into it, even every good piece, the thigh, and the shoulder; fill it with the choice bones.</VERS>\r\n      <VERS vnumber=\"5\">Take 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.</VERS>\r\n      <VERS vnumber=\"6\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"7\">For 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;</VERS>\r\n      <VERS vnumber=\"8\">That 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.</VERS>\r\n      <VERS vnumber=\"9\">Therefore thus saith the Lord GOD; Woe to the bloody city! I will even make the pile for fire great.</VERS>\r\n      <VERS vnumber=\"10\">Heap on wood, kindle the fire, consume the flesh, and spice it well, and let the bones be burned.</VERS>\r\n      <VERS vnumber=\"11\">Then 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.</VERS>\r\n      <VERS vnumber=\"12\">She hath wearied herself with lies, and her great scum went not forth out of her: her scum shall be in the fire.</VERS>\r\n      <VERS vnumber=\"13\">In 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.</VERS>\r\n      <VERS vnumber=\"14\">I 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.</VERS>\r\n      <VERS vnumber=\"15\">Also the word of the LORD came unto me, saying,</VERS>\r\n      <VERS vnumber=\"16\">Son 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.</VERS>\r\n      <VERS vnumber=\"17\">Forbear 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.</VERS>\r\n      <VERS vnumber=\"18\">So I spake unto the people in the morning: and at even my wife died; and I did in the morning as I was commanded.</VERS>\r\n      <VERS vnumber=\"19\">And the people said unto me, Wilt thou not tell us what these things are to us, that thou doest so?</VERS>\r\n      <VERS vnumber=\"20\">Then I answered them, The word of the LORD came unto me, saying,</VERS>\r\n      <VERS vnumber=\"21\">Speak 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.</VERS>\r\n      <VERS vnumber=\"22\">And ye shall do as I have done: ye shall not cover your lips, nor eat the bread of men.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">Thus 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.</VERS>\r\n      <VERS vnumber=\"25\">Also, 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,</VERS>\r\n      <VERS vnumber=\"26\">That he that escapeth in that day shall come unto thee, to cause thee to hear it with thine ears?</VERS>\r\n      <VERS vnumber=\"27\">In 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"25\">\r\n      <VERS vnumber=\"1\">The word of the LORD came again unto me, saying,</VERS>\r\n      <VERS vnumber=\"2\">Son of man, set thy face against the Ammonites, and prophesy against them;</VERS>\r\n      <VERS vnumber=\"3\">And 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;</VERS>\r\n      <VERS vnumber=\"4\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"5\">And I will make Rabbah a stable for camels, and the Ammonites a couchingplace for flocks: and ye shall know that I am the LORD.</VERS>\r\n      <VERS vnumber=\"6\">For 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;</VERS>\r\n      <VERS vnumber=\"7\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"8\">Thus saith the Lord GOD; Because that Moab and Seir do say, Behold, the house of Judah is like unto all the heathen;</VERS>\r\n      <VERS vnumber=\"9\">Therefore, 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,</VERS>\r\n      <VERS vnumber=\"10\">Unto the men of the east with the Ammonites, and will give them in possession, that the Ammonites may not be remembered among the nations.</VERS>\r\n      <VERS vnumber=\"11\">And I will execute judgments upon Moab; and they shall know that I am the LORD.</VERS>\r\n      <VERS vnumber=\"12\">Thus 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;</VERS>\r\n      <VERS vnumber=\"13\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">Thus 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;</VERS>\r\n      <VERS vnumber=\"16\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"26\">\r\n      <VERS vnumber=\"1\">And 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,</VERS>\r\n      <VERS vnumber=\"2\">Son 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:</VERS>\r\n      <VERS vnumber=\"3\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">It 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.</VERS>\r\n      <VERS vnumber=\"6\">And her daughters which are in the field shall be slain by the sword; and they shall know that I am the LORD.</VERS>\r\n      <VERS vnumber=\"7\">For 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.</VERS>\r\n      <VERS vnumber=\"8\">He 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.</VERS>\r\n      <VERS vnumber=\"9\">And he shall set engines of war against thy walls, and with his axes he shall break down thy towers.</VERS>\r\n      <VERS vnumber=\"10\">By 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.</VERS>\r\n      <VERS vnumber=\"11\">With 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And I will cause the noise of thy songs to cease; and the sound of thy harps shall be no more heard.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">Thus 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?</VERS>\r\n      <VERS vnumber=\"16\">Then 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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!</VERS>\r\n      <VERS vnumber=\"18\">Now shall the isles tremble in the day of thy fall; yea, the isles that are in the sea shall be troubled at thy departure.</VERS>\r\n      <VERS vnumber=\"19\">For 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;</VERS>\r\n      <VERS vnumber=\"20\">When 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;</VERS>\r\n      <VERS vnumber=\"21\">I 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"27\">\r\n      <VERS vnumber=\"1\">The word of the LORD came again unto me, saying,</VERS>\r\n      <VERS vnumber=\"2\">Now, thou son of man, take up a lamentation for Tyrus;</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">Thy borders are in the midst of the seas, thy builders have perfected thy beauty.</VERS>\r\n      <VERS vnumber=\"5\">They have made all thy ship boards of fir trees of Senir: they have taken cedars from Lebanon to make masts for thee.</VERS>\r\n      <VERS vnumber=\"6\">Of 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.</VERS>\r\n      <VERS vnumber=\"7\">Fine 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.</VERS>\r\n      <VERS vnumber=\"8\">The inhabitants of Zidon and Arvad were thy mariners: thy wise men, O Tyrus, that were in thee, were thy pilots.</VERS>\r\n      <VERS vnumber=\"9\">The 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.</VERS>\r\n      <VERS vnumber=\"10\">They 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.</VERS>\r\n      <VERS vnumber=\"11\">The 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.</VERS>\r\n      <VERS vnumber=\"12\">Tarshish was thy merchant by reason of the multitude of all kind of riches; with silver, iron, tin, and lead, they traded in thy fairs.</VERS>\r\n      <VERS vnumber=\"13\">Javan, Tubal, and Meshech, they were thy merchants: they traded the persons of men and vessels of brass in thy market.</VERS>\r\n      <VERS vnumber=\"14\">They of the house of Togarmah traded in thy fairs with horses and horsemen and mules.</VERS>\r\n      <VERS vnumber=\"15\">The 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.</VERS>\r\n      <VERS vnumber=\"16\">Syria 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.</VERS>\r\n      <VERS vnumber=\"17\">Judah, 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.</VERS>\r\n      <VERS vnumber=\"18\">Damascus 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.</VERS>\r\n      <VERS vnumber=\"19\">Dan also and Javan going to and fro occupied in thy fairs: bright iron, cassia, and calamus, were in thy market.</VERS>\r\n      <VERS vnumber=\"20\">Dedan was thy merchant in precious clothes for chariots.</VERS>\r\n      <VERS vnumber=\"21\">Arabia, and all the princes of Kedar, they occupied with thee in lambs, and rams, and goats: in these were they thy merchants.</VERS>\r\n      <VERS vnumber=\"22\">The 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.</VERS>\r\n      <VERS vnumber=\"23\">Haran, and Canneh, and Eden, the merchants of Sheba, Asshur, and Chilmad, were thy merchants.</VERS>\r\n      <VERS vnumber=\"24\">These 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.</VERS>\r\n      <VERS vnumber=\"25\">The ships of Tarshish did sing of thee in thy market: and thou wast replenished, and made very glorious in the midst of the seas.</VERS>\r\n      <VERS vnumber=\"26\">Thy rowers have brought thee into great waters: the east wind hath broken thee in the midst of the seas.</VERS>\r\n      <VERS vnumber=\"27\">Thy 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.</VERS>\r\n      <VERS vnumber=\"28\">The suburbs shall shake at the sound of the cry of thy pilots.</VERS>\r\n      <VERS vnumber=\"29\">And 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;</VERS>\r\n      <VERS vnumber=\"30\">And 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:</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n      <VERS vnumber=\"32\">And 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?</VERS>\r\n      <VERS vnumber=\"33\">When 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.</VERS>\r\n      <VERS vnumber=\"34\">In 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.</VERS>\r\n      <VERS vnumber=\"35\">All the inhabitants of the isles shall be astonished at thee, and their kings shall be sore afraid, they shall be troubled in their countenance.</VERS>\r\n      <VERS vnumber=\"36\">The merchants among the people shall hiss at thee; thou shalt be a terror, and never shalt be any more.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"28\">\r\n      <VERS vnumber=\"1\">The word of the LORD came again unto me, saying,</VERS>\r\n      <VERS vnumber=\"2\">Son 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:</VERS>\r\n      <VERS vnumber=\"3\">Behold, thou art wiser than Daniel; there is no secret that they can hide from thee:</VERS>\r\n      <VERS vnumber=\"4\">With thy wisdom and with thine understanding thou hast gotten thee riches, and hast gotten gold and silver into thy treasures:</VERS>\r\n      <VERS vnumber=\"5\">By thy great wisdom and by thy traffick hast thou increased thy riches, and thine heart is lifted up because of thy riches:</VERS>\r\n      <VERS vnumber=\"6\">Therefore thus saith the Lord GOD; Because thou hast set thine heart as the heart of God;</VERS>\r\n      <VERS vnumber=\"7\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"8\">They shall bring thee down to the pit, and thou shalt die the deaths of them that are slain in the midst of the seas.</VERS>\r\n      <VERS vnumber=\"9\">Wilt 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.</VERS>\r\n      <VERS vnumber=\"10\">Thou shalt die the deaths of the uncircumcised by the hand of strangers: for I have spoken it, saith the Lord GOD.</VERS>\r\n      <VERS vnumber=\"11\">Moreover the word of the LORD came unto me, saying,</VERS>\r\n      <VERS vnumber=\"12\">Son 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.</VERS>\r\n      <VERS vnumber=\"13\">Thou 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.</VERS>\r\n      <VERS vnumber=\"14\">Thou 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.</VERS>\r\n      <VERS vnumber=\"15\">Thou wast perfect in thy ways from the day that thou wast created, till iniquity was found in thee.</VERS>\r\n      <VERS vnumber=\"16\">By 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.</VERS>\r\n      <VERS vnumber=\"17\">Thine 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.</VERS>\r\n      <VERS vnumber=\"18\">Thou 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.</VERS>\r\n      <VERS vnumber=\"19\">All they that know thee among the people shall be astonished at thee: thou shalt be a terror, and never shalt thou be any more.</VERS>\r\n      <VERS vnumber=\"20\">Again the word of the LORD came unto me, saying,</VERS>\r\n      <VERS vnumber=\"21\">Son of man, set thy face against Zidon, and prophesy against it,</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">For 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">Thus 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"29\">\r\n      <VERS vnumber=\"1\">In the tenth year, in the tenth month, in the twelfth day of the month, the word of the LORD came unto me, saying,</VERS>\r\n      <VERS vnumber=\"2\">Son of man, set thy face against Pharaoh king of Egypt, and prophesy against him, and against all Egypt:</VERS>\r\n      <VERS vnumber=\"3\">Speak, 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.</VERS>\r\n      <VERS vnumber=\"4\">But 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">When 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.</VERS>\r\n      <VERS vnumber=\"8\">Therefore thus saith the Lord GOD; Behold, I will bring a sword upon thee, and cut off man and beast out of thee.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"11\">No foot of man shall pass through it, nor foot of beast shall pass through it, neither shall it be inhabited forty years.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">Yet thus saith the Lord GOD; At the end of forty years will I gather the Egyptians from the people whither they were scattered:</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">It 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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,</VERS>\r\n      <VERS vnumber=\"18\">Son 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:</VERS>\r\n      <VERS vnumber=\"19\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"20\">I have given him the land of Egypt for his labour wherewith he served against it, because they wrought for me, saith the Lord GOD.</VERS>\r\n      <VERS vnumber=\"21\">In 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"30\">\r\n      <VERS vnumber=\"1\">The word of the LORD came again unto me, saying,</VERS>\r\n      <VERS vnumber=\"2\">Son of man, prophesy and say, Thus saith the Lord GOD; Howl ye, Woe worth the day!</VERS>\r\n      <VERS vnumber=\"3\">For the day is near, even the day of the LORD is near, a cloudy day; it shall be the time of the heathen.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">Ethiopia, 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.</VERS>\r\n      <VERS vnumber=\"6\">Thus 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And they shall know that I am the LORD, when I have set a fire in Egypt, and when all her helpers shall be destroyed.</VERS>\r\n      <VERS vnumber=\"9\">In 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.</VERS>\r\n      <VERS vnumber=\"10\">Thus saith the Lord GOD; I will also make the multitude of Egypt to cease by the hand of Nebuchadrezzar king of Babylon.</VERS>\r\n      <VERS vnumber=\"11\">He 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">Thus 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.</VERS>\r\n      <VERS vnumber=\"14\">And I will make Pathros desolate, and will set fire in Zoan, and will execute judgments in No.</VERS>\r\n      <VERS vnumber=\"15\">And I will pour my fury upon Sin, the strength of Egypt; and I will cut off the multitude of No.</VERS>\r\n      <VERS vnumber=\"16\">And I will set fire in Egypt: Sin shall have great pain, and No shall be rent asunder, and Noph shall have distresses daily.</VERS>\r\n      <VERS vnumber=\"17\">The young men of Aven and of Pibeseth shall fall by the sword: and these cities shall go into captivity.</VERS>\r\n      <VERS vnumber=\"18\">At 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.</VERS>\r\n      <VERS vnumber=\"19\">Thus will I execute judgments in Egypt: and they shall know that I am the LORD.</VERS>\r\n      <VERS vnumber=\"20\">And 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,</VERS>\r\n      <VERS vnumber=\"21\">Son 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.</VERS>\r\n      <VERS vnumber=\"22\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"23\">And I will scatter the Egyptians among the nations, and will disperse them through the countries.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">But 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.</VERS>\r\n      <VERS vnumber=\"26\">And I will scatter the Egyptians among the nations, and disperse them among the countries; and they shall know that I am the LORD.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"31\">\r\n      <VERS vnumber=\"1\">And 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,</VERS>\r\n      <VERS vnumber=\"2\">Son of man, speak unto Pharaoh king of Egypt, and to his multitude; Whom art thou like in thy greatness?</VERS>\r\n      <VERS vnumber=\"3\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"4\">The waters made him great, the deep set him up on high with her rivers running round about his plants, and sent out her little rivers unto all the trees of the field.</VERS>\r\n      <VERS vnumber=\"5\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"6\">All 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.</VERS>\r\n      <VERS vnumber=\"7\">Thus was he fair in his greatness, in the length of his branches: for his root was by great waters.</VERS>\r\n      <VERS vnumber=\"8\">The cedars in the garden of God could not hide him: the fir trees were not like his boughs, and the chesnut trees were not like his branches; nor any tree in the garden of God was like unto him in his beauty.</VERS>\r\n      <VERS vnumber=\"9\">I 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.</VERS>\r\n      <VERS vnumber=\"10\">Therefore 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;</VERS>\r\n      <VERS vnumber=\"11\">I 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">Upon his ruin shall all the fowls of the heaven remain, and all the beasts of the field shall be upon his branches:</VERS>\r\n      <VERS vnumber=\"14\">To 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.</VERS>\r\n      <VERS vnumber=\"15\">Thus 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.</VERS>\r\n      <VERS vnumber=\"16\">I 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.</VERS>\r\n      <VERS vnumber=\"17\">They 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.</VERS>\r\n      <VERS vnumber=\"18\">To 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"32\">\r\n      <VERS vnumber=\"1\">And 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,</VERS>\r\n      <VERS vnumber=\"2\">Son 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.</VERS>\r\n      <VERS vnumber=\"3\">Thus 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.</VERS>\r\n      <VERS vnumber=\"4\">Then 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.</VERS>\r\n      <VERS vnumber=\"5\">And I will lay thy flesh upon the mountains, and fill the valleys with thy height.</VERS>\r\n      <VERS vnumber=\"6\">I will also water with thy blood the land wherein thou swimmest, even to the mountains; and the rivers shall be full of thee.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">All the bright lights of heaven will I make dark over thee, and set darkness upon thy land, saith the Lord GOD.</VERS>\r\n      <VERS vnumber=\"9\">I 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.</VERS>\r\n      <VERS vnumber=\"10\">Yea, 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.</VERS>\r\n      <VERS vnumber=\"11\">For thus saith the Lord GOD; The sword of the king of Babylon shall come upon thee.</VERS>\r\n      <VERS vnumber=\"12\">By 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.</VERS>\r\n      <VERS vnumber=\"13\">I 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.</VERS>\r\n      <VERS vnumber=\"14\">Then will I make their waters deep, and cause their rivers to run like oil, saith the Lord GOD.</VERS>\r\n      <VERS vnumber=\"15\">When 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.</VERS>\r\n      <VERS vnumber=\"16\">This 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.</VERS>\r\n      <VERS vnumber=\"17\">It 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,</VERS>\r\n      <VERS vnumber=\"18\">Son 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.</VERS>\r\n      <VERS vnumber=\"19\">Whom dost thou pass in beauty? go down, and be thou laid with the uncircumcised.</VERS>\r\n      <VERS vnumber=\"20\">They 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.</VERS>\r\n      <VERS vnumber=\"21\">The 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.</VERS>\r\n      <VERS vnumber=\"22\">Asshur is there and all her company: his graves are about him: all of them slain, fallen by the sword:</VERS>\r\n      <VERS vnumber=\"23\">Whose 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.</VERS>\r\n      <VERS vnumber=\"24\">There 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.</VERS>\r\n      <VERS vnumber=\"25\">They 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.</VERS>\r\n      <VERS vnumber=\"26\">There 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">Yea, thou shalt be broken in the midst of the uncircumcised, and shalt lie with them that are slain with the sword.</VERS>\r\n      <VERS vnumber=\"29\">There 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.</VERS>\r\n      <VERS vnumber=\"30\">There 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.</VERS>\r\n      <VERS vnumber=\"31\">Pharaoh 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.</VERS>\r\n      <VERS vnumber=\"32\">For 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"33\">\r\n      <VERS vnumber=\"1\">Again the word of the LORD came unto me, saying,</VERS>\r\n      <VERS vnumber=\"2\">Son 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:</VERS>\r\n      <VERS vnumber=\"3\">If when he seeth the sword come upon the land, he blow the trumpet, and warn the people;</VERS>\r\n      <VERS vnumber=\"4\">Then 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.</VERS>\r\n      <VERS vnumber=\"5\">He 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.</VERS>\r\n      <VERS vnumber=\"6\">But 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.</VERS>\r\n      <VERS vnumber=\"7\">So 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.</VERS>\r\n      <VERS vnumber=\"8\">When 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.</VERS>\r\n      <VERS vnumber=\"9\">Nevertheless, 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.</VERS>\r\n      <VERS vnumber=\"10\">Therefore, 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?</VERS>\r\n      <VERS vnumber=\"11\">Say 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?</VERS>\r\n      <VERS vnumber=\"12\">Therefore, 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.</VERS>\r\n      <VERS vnumber=\"13\">When 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.</VERS>\r\n      <VERS vnumber=\"14\">Again, when I say unto the wicked, Thou shalt surely die; if he turn from his sin, and do that which is lawful and right;</VERS>\r\n      <VERS vnumber=\"15\">If 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.</VERS>\r\n      <VERS vnumber=\"16\">None 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.</VERS>\r\n      <VERS vnumber=\"17\">Yet the children of thy people say, The way of the Lord is not equal: but as for them, their way is not equal.</VERS>\r\n      <VERS vnumber=\"18\">When the righteous turneth from his righteousness, and committeth iniquity, he shall even die thereby.</VERS>\r\n      <VERS vnumber=\"19\">But if the wicked turn from his wickedness, and do that which is lawful and right, he shall live thereby.</VERS>\r\n      <VERS vnumber=\"20\">Yet ye say, The way of the Lord is not equal. O ye house of Israel, I will judge you every one after his ways.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">Now 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.</VERS>\r\n      <VERS vnumber=\"23\">Then the word of the LORD came unto me, saying,</VERS>\r\n      <VERS vnumber=\"24\">Son 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.</VERS>\r\n      <VERS vnumber=\"25\">Wherefore 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?</VERS>\r\n      <VERS vnumber=\"26\">Ye stand upon your sword, ye work abomination, and ye defile every one his neighbour's wife: and shall ye possess the land?</VERS>\r\n      <VERS vnumber=\"27\">Say 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.</VERS>\r\n      <VERS vnumber=\"28\">For 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.</VERS>\r\n      <VERS vnumber=\"29\">Then 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.</VERS>\r\n      <VERS vnumber=\"30\">Also, 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.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n      <VERS vnumber=\"32\">And, 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.</VERS>\r\n      <VERS vnumber=\"33\">And when this cometh to pass, (lo, it will come,) then shall they know that a prophet hath been among them.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"34\">\r\n      <VERS vnumber=\"1\">And the word of the LORD came unto me, saying,</VERS>\r\n      <VERS vnumber=\"2\">Son 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?</VERS>\r\n      <VERS vnumber=\"3\">Ye eat the fat, and ye clothe you with the wool, ye kill them that are fed: but ye feed not the flock.</VERS>\r\n      <VERS vnumber=\"4\">The 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.</VERS>\r\n      <VERS vnumber=\"5\">And they were scattered, because there is no shepherd: and they became meat to all the beasts of the field, when they were scattered.</VERS>\r\n      <VERS vnumber=\"6\">My 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.</VERS>\r\n      <VERS vnumber=\"7\">Therefore, ye shepherds, hear the word of the LORD;</VERS>\r\n      <VERS vnumber=\"8\">As 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;</VERS>\r\n      <VERS vnumber=\"9\">Therefore, O ye shepherds, hear the word of the LORD;</VERS>\r\n      <VERS vnumber=\"10\">Thus 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.</VERS>\r\n      <VERS vnumber=\"11\">For thus saith the Lord GOD; Behold, I, even I, will both search my sheep, and seek them out.</VERS>\r\n      <VERS vnumber=\"12\">As 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">I 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.</VERS>\r\n      <VERS vnumber=\"15\">I will feed my flock, and I will cause them to lie down, saith the Lord GOD.</VERS>\r\n      <VERS vnumber=\"16\">I 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">Seemeth 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?</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">Therefore thus saith the Lord GOD unto them; Behold, I, even I, will judge between the fat cattle and between the lean cattle.</VERS>\r\n      <VERS vnumber=\"21\">Because ye have thrust with side and with shoulder, and pushed all the diseased with your horns, till ye have scattered them abroad;</VERS>\r\n      <VERS vnumber=\"22\">Therefore will I save my flock, and they shall no more be a prey; and I will judge between cattle and cattle.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And I the LORD will be their God, and my servant David a prince among them; I the LORD have spoken it.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">Thus 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.</VERS>\r\n      <VERS vnumber=\"31\">And ye my flock, the flock of my pasture, are men, and I am your God, saith the Lord GOD.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"35\">\r\n      <VERS vnumber=\"1\">Moreover the word of the LORD came unto me, saying,</VERS>\r\n      <VERS vnumber=\"2\">Son of man, set thy face against mount Seir, and prophesy against it,</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">I will lay thy cities waste, and thou shalt be desolate, and thou shalt know that I am the LORD.</VERS>\r\n      <VERS vnumber=\"5\">Because 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:</VERS>\r\n      <VERS vnumber=\"6\">Therefore, 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.</VERS>\r\n      <VERS vnumber=\"7\">Thus will I make mount Seir most desolate, and cut off from it him that passeth out and him that returneth.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">I will make thee perpetual desolations, and thy cities shall not return: and ye shall know that I am the LORD.</VERS>\r\n      <VERS vnumber=\"10\">Because thou hast said, These two nations and these two countries shall be mine, and we will possess it; whereas the LORD was there:</VERS>\r\n      <VERS vnumber=\"11\">Therefore, 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">Thus with your mouth ye have boasted against me, and have multiplied your words against me: I have heard them.</VERS>\r\n      <VERS vnumber=\"14\">Thus saith the Lord GOD; When the whole earth rejoiceth, I will make thee desolate.</VERS>\r\n      <VERS vnumber=\"15\">As 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"36\">\r\n      <VERS vnumber=\"1\">Also, thou son of man, prophesy unto the mountains of Israel, and say, Ye mountains of Israel, hear the word of the LORD:</VERS>\r\n      <VERS vnumber=\"2\">Thus saith the Lord GOD; Because the enemy hath said against you, Aha, even the ancient high places are ours in possession:</VERS>\r\n      <VERS vnumber=\"3\">Therefore 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:</VERS>\r\n      <VERS vnumber=\"4\">Therefore, 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;</VERS>\r\n      <VERS vnumber=\"5\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"6\">Prophesy 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:</VERS>\r\n      <VERS vnumber=\"7\">Therefore thus saith the Lord GOD; I have lifted up mine hand, Surely the heathen that are about you, they shall bear their shame.</VERS>\r\n      <VERS vnumber=\"8\">But 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.</VERS>\r\n      <VERS vnumber=\"9\">For, behold, I am for you, and I will turn unto you, and ye shall be tilled and sown:</VERS>\r\n      <VERS vnumber=\"10\">And 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:</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">Yea, 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.</VERS>\r\n      <VERS vnumber=\"13\">Thus saith the Lord GOD; Because they say unto you, Thou land devourest up men, and hast bereaved thy nations;</VERS>\r\n      <VERS vnumber=\"14\">Therefore thou shalt devour men no more, neither bereave thy nations any more, saith the Lord GOD.</VERS>\r\n      <VERS vnumber=\"15\">Neither 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.</VERS>\r\n      <VERS vnumber=\"16\">Moreover the word of the LORD came unto me, saying,</VERS>\r\n      <VERS vnumber=\"17\">Son 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.</VERS>\r\n      <VERS vnumber=\"18\">Wherefore 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:</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">But I had pity for mine holy name, which the house of Israel had profaned among the heathen, whither they went.</VERS>\r\n      <VERS vnumber=\"22\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">For I will take you from among the heathen, and gather you out of all countries, and will bring you into your own land.</VERS>\r\n      <VERS vnumber=\"25\">Then 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.</VERS>\r\n      <VERS vnumber=\"26\">A 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.</VERS>\r\n      <VERS vnumber=\"27\">And I will put my spirit within you, and cause you to walk in my statutes, and ye shall keep my judgments, and do them.</VERS>\r\n      <VERS vnumber=\"28\">And ye shall dwell in the land that I gave to your fathers; and ye shall be my people, and I will be your God.</VERS>\r\n      <VERS vnumber=\"29\">I 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.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">Then 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.</VERS>\r\n      <VERS vnumber=\"32\">Not 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.</VERS>\r\n      <VERS vnumber=\"33\">Thus 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.</VERS>\r\n      <VERS vnumber=\"34\">And the desolate land shall be tilled, whereas it lay desolate in the sight of all that passed by.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">Then 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.</VERS>\r\n      <VERS vnumber=\"37\">Thus 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.</VERS>\r\n      <VERS vnumber=\"38\">As 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"37\">\r\n      <VERS vnumber=\"1\">The 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,</VERS>\r\n      <VERS vnumber=\"2\">And caused me to pass by them round about: and, behold, there were very many in the open valley; and, lo, they were very dry.</VERS>\r\n      <VERS vnumber=\"3\">And he said unto me, Son of man, can these bones live? And I answered, O Lord GOD, thou knowest.</VERS>\r\n      <VERS vnumber=\"4\">Again he said unto me, Prophesy upon these bones, and say unto them, O ye dry bones, hear the word of the LORD.</VERS>\r\n      <VERS vnumber=\"5\">Thus saith the Lord GOD unto these bones; Behold, I will cause breath to enter into you, and ye shall live:</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">So 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">Then 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.</VERS>\r\n      <VERS vnumber=\"10\">So 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.</VERS>\r\n      <VERS vnumber=\"11\">Then 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.</VERS>\r\n      <VERS vnumber=\"12\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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,</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">The word of the LORD came again unto me, saying,</VERS>\r\n      <VERS vnumber=\"16\">Moreover, 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:</VERS>\r\n      <VERS vnumber=\"17\">And join them one to another into one stick; and they shall become one in thine hand.</VERS>\r\n      <VERS vnumber=\"18\">And when the children of thy people shall speak unto thee, saying, Wilt thou not shew us what thou meanest by these?</VERS>\r\n      <VERS vnumber=\"19\">Say 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.</VERS>\r\n      <VERS vnumber=\"20\">And the sticks whereon thou writest shall be in thine hand before their eyes.</VERS>\r\n      <VERS vnumber=\"21\">And 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:</VERS>\r\n      <VERS vnumber=\"22\">And 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:</VERS>\r\n      <VERS vnumber=\"23\">Neither 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">Moreover 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.</VERS>\r\n      <VERS vnumber=\"27\">My tabernacle also shall be with them: yea, I will be their God, and they shall be my people.</VERS>\r\n      <VERS vnumber=\"28\">And the heathen shall know that I the LORD do sanctify Israel, when my sanctuary shall be in the midst of them for evermore.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"38\">\r\n      <VERS vnumber=\"1\">And the word of the LORD came unto me, saying,</VERS>\r\n      <VERS vnumber=\"2\">Son of man, set thy face against Gog, the land of Magog, the chief prince of Meshech and Tubal, and prophesy against him,</VERS>\r\n      <VERS vnumber=\"3\">And say, Thus saith the Lord GOD; Behold, I am against thee, O Gog, the chief prince of Meshech and Tubal:</VERS>\r\n      <VERS vnumber=\"4\">And 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:</VERS>\r\n      <VERS vnumber=\"5\">Persia, Ethiopia, and Libya with them; all of them with shield and helmet:</VERS>\r\n      <VERS vnumber=\"6\">Gomer, and all his bands; the house of Togarmah of the north quarters, and all his bands: and many people with thee.</VERS>\r\n      <VERS vnumber=\"7\">Be thou prepared, and prepare for thyself, thou, and all thy company that are assembled unto thee, and be thou a guard unto them.</VERS>\r\n      <VERS vnumber=\"8\">After 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.</VERS>\r\n      <VERS vnumber=\"9\">Thou 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.</VERS>\r\n      <VERS vnumber=\"10\">Thus 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:</VERS>\r\n      <VERS vnumber=\"11\">And 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,</VERS>\r\n      <VERS vnumber=\"12\">To 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.</VERS>\r\n      <VERS vnumber=\"13\">Sheba, 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?</VERS>\r\n      <VERS vnumber=\"14\">Therefore, 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?</VERS>\r\n      <VERS vnumber=\"15\">And 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:</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">Thus 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?</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">For 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;</VERS>\r\n      <VERS vnumber=\"20\">So 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">Thus 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"39\">\r\n      <VERS vnumber=\"1\">Therefore, 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:</VERS>\r\n      <VERS vnumber=\"2\">And 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:</VERS>\r\n      <VERS vnumber=\"3\">And I will smite thy bow out of thy left hand, and will cause thine arrows to fall out of thy right hand.</VERS>\r\n      <VERS vnumber=\"4\">Thou 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.</VERS>\r\n      <VERS vnumber=\"5\">Thou shalt fall upon the open field: for I have spoken it, saith the Lord GOD.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">So 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.</VERS>\r\n      <VERS vnumber=\"8\">Behold, it is come, and it is done, saith the Lord GOD; this is the day whereof I have spoken.</VERS>\r\n      <VERS vnumber=\"9\">And 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:</VERS>\r\n      <VERS vnumber=\"10\">So 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And seven months shall the house of Israel be burying of them, that they may cleanse the land.</VERS>\r\n      <VERS vnumber=\"13\">Yea, 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And also the name of the city shall be Hamonah. Thus shall they cleanse the land.</VERS>\r\n      <VERS vnumber=\"17\">And, 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.</VERS>\r\n      <VERS vnumber=\"18\">Ye 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.</VERS>\r\n      <VERS vnumber=\"19\">And ye shall eat fat till ye be full, and drink blood till ye be drunken, of my sacrifice which I have sacrificed for you.</VERS>\r\n      <VERS vnumber=\"20\">Thus ye shall be filled at my table with horses and chariots, with mighty men, and with all men of war, saith the Lord GOD.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">So the house of Israel shall know that I am the LORD their God from that day and forward.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">According to their uncleanness and according to their transgressions have I done unto them, and hid my face from them.</VERS>\r\n      <VERS vnumber=\"25\">Therefore 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;</VERS>\r\n      <VERS vnumber=\"26\">After 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.</VERS>\r\n      <VERS vnumber=\"27\">When 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;</VERS>\r\n      <VERS vnumber=\"28\">Then 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.</VERS>\r\n      <VERS vnumber=\"29\">Neither 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"40\">\r\n      <VERS vnumber=\"1\">In 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.</VERS>\r\n      <VERS vnumber=\"2\">In 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">Then 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">He measured also the porch of the gate within, one reed.</VERS>\r\n      <VERS vnumber=\"9\">Then measured he the porch of the gate, eight cubits; and the posts thereof, two cubits; and the porch of the gate was inward.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And he measured the breadth of the entry of the gate, ten cubits; and the length of the gate, thirteen cubits.</VERS>\r\n      <VERS vnumber=\"12\">The 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.</VERS>\r\n      <VERS vnumber=\"13\">He 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.</VERS>\r\n      <VERS vnumber=\"14\">He made also posts of threescore cubits, even unto the post of the court round about the gate.</VERS>\r\n      <VERS vnumber=\"15\">And from the face of the gate of the entrance unto the face of the porch of the inner gate were fifty cubits.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">Then 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.</VERS>\r\n      <VERS vnumber=\"18\">And the pavement by the side of the gates over against the length of the gates was the lower pavement.</VERS>\r\n      <VERS vnumber=\"19\">Then 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.</VERS>\r\n      <VERS vnumber=\"20\">And the gate of the outward court that looked toward the north, he measured the length thereof, and the breadth thereof.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">After 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And there was a gate in the inner court toward the south: and he measured from gate to gate toward the south an hundred cubits.</VERS>\r\n      <VERS vnumber=\"28\">And he brought me to the inner court by the south gate: and he measured the south gate according to these measures;</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">And the arches round about were five and twenty cubits long, and five cubits broad.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n      <VERS vnumber=\"32\">And he brought me into the inner court toward the east: and he measured the gate according to these measures.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">And 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.</VERS>\r\n      <VERS vnumber=\"35\">And he brought me to the north gate, and measured it according to these measures;</VERS>\r\n      <VERS vnumber=\"36\">The 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.</VERS>\r\n      <VERS vnumber=\"37\">And 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.</VERS>\r\n      <VERS vnumber=\"38\">And the chambers and the entries thereof were by the posts of the gates, where they washed the burnt offering.</VERS>\r\n      <VERS vnumber=\"39\">And 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.</VERS>\r\n      <VERS vnumber=\"40\">And 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.</VERS>\r\n      <VERS vnumber=\"41\">Four tables were on this side, and four tables on that side, by the side of the gate; eight tables, whereupon they slew their sacrifices.</VERS>\r\n      <VERS vnumber=\"42\">And 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.</VERS>\r\n      <VERS vnumber=\"43\">And within were hooks, an hand broad, fastened round about: and upon the tables was the flesh of the offering.</VERS>\r\n      <VERS vnumber=\"44\">And 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.</VERS>\r\n      <VERS vnumber=\"45\">And he said unto me, This chamber, whose prospect is toward the south, is for the priests, the keepers of the charge of the house.</VERS>\r\n      <VERS vnumber=\"46\">And 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.</VERS>\r\n      <VERS vnumber=\"47\">So he measured the court, an hundred cubits long, and an hundred cubits broad, foursquare; and the altar that was before the house.</VERS>\r\n      <VERS vnumber=\"48\">And 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.</VERS>\r\n      <VERS vnumber=\"49\">The 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"41\">\r\n      <VERS vnumber=\"1\">Afterward 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">Then 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.</VERS>\r\n      <VERS vnumber=\"4\">So 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.</VERS>\r\n      <VERS vnumber=\"5\">After 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">I saw also the height of the house round about: the foundations of the side chambers were a full reed of six great cubits.</VERS>\r\n      <VERS vnumber=\"9\">The 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.</VERS>\r\n      <VERS vnumber=\"10\">And between the chambers was the wideness of twenty cubits round about the house on every side.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">Now 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.</VERS>\r\n      <VERS vnumber=\"13\">So he measured the house, an hundred cubits long; and the separate place, and the building, with the walls thereof, an hundred cubits long;</VERS>\r\n      <VERS vnumber=\"14\">Also the breadth of the face of the house, and of the separate place toward the east, an hundred cubits.</VERS>\r\n      <VERS vnumber=\"15\">And 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;</VERS>\r\n      <VERS vnumber=\"16\">The 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;</VERS>\r\n      <VERS vnumber=\"17\">To that above the door, even unto the inner house, and without, and by all the wall round about within and without, by measure.</VERS>\r\n      <VERS vnumber=\"18\">And 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;</VERS>\r\n      <VERS vnumber=\"19\">So 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.</VERS>\r\n      <VERS vnumber=\"20\">From the ground unto above the door were cherubims and palm trees made, and on the wall of the temple.</VERS>\r\n      <VERS vnumber=\"21\">The posts of the temple were squared, and the face of the sanctuary; the appearance of the one as the appearance of the other.</VERS>\r\n      <VERS vnumber=\"22\">The 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.</VERS>\r\n      <VERS vnumber=\"23\">And the temple and the sanctuary had two doors.</VERS>\r\n      <VERS vnumber=\"24\">And the doors had two leaves apiece, two turning leaves; two leaves for the one door, and two leaves for the other door.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"42\">\r\n      <VERS vnumber=\"1\">Then 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.</VERS>\r\n      <VERS vnumber=\"2\">Before the length of an hundred cubits was the north door, and the breadth was fifty cubits.</VERS>\r\n      <VERS vnumber=\"3\">Over 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.</VERS>\r\n      <VERS vnumber=\"4\">And before the chambers was a walk of ten cubits breadth inward, a way of one cubit; and their doors toward the north.</VERS>\r\n      <VERS vnumber=\"5\">Now the upper chambers were shorter: for the galleries were higher than these, than the lower, and than the middlemost of the building.</VERS>\r\n      <VERS vnumber=\"6\">For 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">For the length of the chambers that were in the utter court was fifty cubits: and, lo, before the temple were an hundred cubits.</VERS>\r\n      <VERS vnumber=\"9\">And from under these chambers was the entry on the east side, as one goeth into them from the utter court.</VERS>\r\n      <VERS vnumber=\"10\">The chambers were in the thickness of the wall of the court toward the east, over against the separate place, and over against the building.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">Then 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.</VERS>\r\n      <VERS vnumber=\"14\">When 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.</VERS>\r\n      <VERS vnumber=\"15\">Now 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.</VERS>\r\n      <VERS vnumber=\"16\">He measured the east side with the measuring reed, five hundred reeds, with the measuring reed round about.</VERS>\r\n      <VERS vnumber=\"17\">He measured the north side, five hundred reeds, with the measuring reed round about.</VERS>\r\n      <VERS vnumber=\"18\">He measured the south side, five hundred reeds, with the measuring reed.</VERS>\r\n      <VERS vnumber=\"19\">He turned about to the west side, and measured five hundred reeds with the measuring reed.</VERS>\r\n      <VERS vnumber=\"20\">He 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"43\">\r\n      <VERS vnumber=\"1\">Afterward he brought me to the gate, even the gate that looketh toward the east:</VERS>\r\n      <VERS vnumber=\"2\">And, 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And the glory of the LORD came into the house by the way of the gate whose prospect is toward the east.</VERS>\r\n      <VERS vnumber=\"5\">So the spirit took me up, and brought me into the inner court; and, behold, the glory of the LORD filled the house.</VERS>\r\n      <VERS vnumber=\"6\">And I heard him speaking unto me out of the house; and the man stood by me.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">In 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.</VERS>\r\n      <VERS vnumber=\"9\">Now 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.</VERS>\r\n      <VERS vnumber=\"10\">Thou 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">This 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">So the altar shall be four cubits; and from the altar and upward shall be four horns.</VERS>\r\n      <VERS vnumber=\"16\">And the altar shall be twelve cubits long, twelve broad, square in the four squares thereof.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">Thou shalt take the bullock also of the sin offering, and he shall burn it in the appointed place of the house, without the sanctuary.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">When 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">Seven 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.</VERS>\r\n      <VERS vnumber=\"26\">Seven days shall they purge the altar and purify it; and they shall consecrate themselves.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"44\">\r\n      <VERS vnumber=\"1\">Then he brought me back the way of the gate of the outward sanctuary which looketh toward the east; and it was shut.</VERS>\r\n      <VERS vnumber=\"2\">Then 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.</VERS>\r\n      <VERS vnumber=\"3\">It 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.</VERS>\r\n      <VERS vnumber=\"4\">Then 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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,</VERS>\r\n      <VERS vnumber=\"7\">In 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.</VERS>\r\n      <VERS vnumber=\"8\">And ye have not kept the charge of mine holy things: but ye have set keepers of my charge in my sanctuary for yourselves.</VERS>\r\n      <VERS vnumber=\"9\">Thus 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">Yet 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.</VERS>\r\n      <VERS vnumber=\"12\">Because 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">But I will make them keepers of the charge of the house, for all the service thereof, and for all that shall be done therein.</VERS>\r\n      <VERS vnumber=\"15\">But 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:</VERS>\r\n      <VERS vnumber=\"16\">They shall enter into my sanctuary, and they shall come near to my table, to minister unto me, and they shall keep my charge.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">They 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">Neither shall they shave their heads, nor suffer their locks to grow long; they shall only poll their heads.</VERS>\r\n      <VERS vnumber=\"21\">Neither shall any priest drink wine, when they enter into the inner court.</VERS>\r\n      <VERS vnumber=\"22\">Neither 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.</VERS>\r\n      <VERS vnumber=\"23\">And they shall teach my people the difference between the holy and profane, and cause them to discern between the unclean and the clean.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And after he is cleansed, they shall reckon unto him seven days.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">They shall eat the meat offering, and the sin offering, and the trespass offering; and every dedicated thing in Israel shall be theirs.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">The priests shall not eat of any thing that is dead of itself, or torn, whether it be fowl or beast.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"45\">\r\n      <VERS vnumber=\"1\">Moreover, 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.</VERS>\r\n      <VERS vnumber=\"2\">Of 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">The 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">In 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.</VERS>\r\n      <VERS vnumber=\"9\">Thus 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.</VERS>\r\n      <VERS vnumber=\"10\">Ye shall have just balances, and a just ephah, and a just bath.</VERS>\r\n      <VERS vnumber=\"11\">The 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.</VERS>\r\n      <VERS vnumber=\"12\">And the shekel shall be twenty gerahs: twenty shekels, five and twenty shekels, fifteen shekels, shall be your maneh.</VERS>\r\n      <VERS vnumber=\"13\">This 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:</VERS>\r\n      <VERS vnumber=\"14\">Concerning 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:</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">All the people of the land shall give this oblation for the prince in Israel.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">Thus 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:</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">In 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.</VERS>\r\n      <VERS vnumber=\"22\">And upon that day shall the prince prepare for himself and for all the people of the land a bullock for a sin offering.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">In 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"46\">\r\n      <VERS vnumber=\"1\">Thus 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">Likewise the people of the land shall worship at the door of this gate before the LORD in the sabbaths and in the new moons.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">But 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.</VERS>\r\n      <VERS vnumber=\"10\">And the prince in the midst of them, when they go in, shall go in; and when they go forth, shall go forth.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">Now 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.</VERS>\r\n      <VERS vnumber=\"13\">Thou shalt daily prepare a burnt offering unto the LORD of a lamb of the first year without blemish: thou shalt prepare it every morning.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">Thus shall they prepare the lamb, and the meat offering, and the oil, every morning for a continual burnt offering.</VERS>\r\n      <VERS vnumber=\"16\">Thus 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.</VERS>\r\n      <VERS vnumber=\"17\">But 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.</VERS>\r\n      <VERS vnumber=\"18\">Moreover 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.</VERS>\r\n      <VERS vnumber=\"19\">After 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.</VERS>\r\n      <VERS vnumber=\"20\">Then 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.</VERS>\r\n      <VERS vnumber=\"21\">Then 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.</VERS>\r\n      <VERS vnumber=\"22\">In the four corners of the court there were courts joined of forty cubits long and thirty broad: these four corners were of one measure.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">Then 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"47\">\r\n      <VERS vnumber=\"1\">Afterward 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.</VERS>\r\n      <VERS vnumber=\"2\">Then 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">Again 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.</VERS>\r\n      <VERS vnumber=\"5\">Afterward 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">Now when I had returned, behold, at the bank of the river were very many trees on the one side and on the other.</VERS>\r\n      <VERS vnumber=\"8\">Then 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">But the miry places thereof and the marishes thereof shall not be healed; they shall be given to salt.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">Thus 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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;</VERS>\r\n      <VERS vnumber=\"16\">Hamath, Berothah, Sibraim, which is between the border of Damascus and the border of Hamath; Hazarhatticon, which is by the coast of Hauran.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">The west side also shall be the great sea from the border, till a man come over against Hamath. This is the west side.</VERS>\r\n      <VERS vnumber=\"21\">So shall ye divide this land unto you according to the tribes of Israel.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And it shall come to pass, that in what tribe the stranger sojourneth, there shall ye give him his inheritance, saith the Lord GOD.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"48\">\r\n      <VERS vnumber=\"1\">Now 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.</VERS>\r\n      <VERS vnumber=\"2\">And by the border of Dan, from the east side unto the west side, a portion for Asher.</VERS>\r\n      <VERS vnumber=\"3\">And by the border of Asher, from the east side even unto the west side, a portion for Naphtali.</VERS>\r\n      <VERS vnumber=\"4\">And by the border of Naphtali, from the east side unto the west side, a portion for Manasseh.</VERS>\r\n      <VERS vnumber=\"5\">And by the border of Manasseh, from the east side unto the west side, a portion for Ephraim.</VERS>\r\n      <VERS vnumber=\"6\">And by the border of Ephraim, from the east side even unto the west side, a portion for Reuben.</VERS>\r\n      <VERS vnumber=\"7\">And by the border of Reuben, from the east side unto the west side, a portion for Judah.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">The oblation that ye shall offer unto the LORD shall be of five and twenty thousand in length, and of ten thousand in breadth.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">It 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.</VERS>\r\n      <VERS vnumber=\"12\">And this oblation of the land that is offered shall be unto them a thing most holy by the border of the Levites.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And they shall not sell of it, neither exchange, nor alienate the firstfruits of the land: for it is holy unto the LORD.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And they that serve the city shall serve it out of all the tribes of Israel.</VERS>\r\n      <VERS vnumber=\"20\">All 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">Moreover 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.</VERS>\r\n      <VERS vnumber=\"23\">As for the rest of the tribes, from the east side unto the west side, Benjamin shall have a portion.</VERS>\r\n      <VERS vnumber=\"24\">And by the border of Benjamin, from the east side unto the west side, Simeon shall have a portion.</VERS>\r\n      <VERS vnumber=\"25\">And by the border of Simeon, from the east side unto the west side, Issachar a portion.</VERS>\r\n      <VERS vnumber=\"26\">And by the border of Issachar, from the east side unto the west side, Zebulun a portion.</VERS>\r\n      <VERS vnumber=\"27\">And by the border of Zebulun, from the east side unto the west side, Gad a portion.</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">This 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.</VERS>\r\n      <VERS vnumber=\"30\">And these are the goings out of the city on the north side, four thousand and five hundred measures.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">At the west side four thousand and five hundred, with their three gates; one gate of Gad, one gate of Asher, one gate of Naphtali.</VERS>\r\n      <VERS vnumber=\"35\">It was round about eighteen thousand measures: and the name of the city from that day shall be, The LORD is there.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"27\" bname=\"Daniel\" bsname=\"Dan\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">In the third year of the reign of Jehoiakim king of Judah came Nebuchadnezzar king of Babylon unto Jerusalem, and besieged it.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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;</VERS>\r\n      <VERS vnumber=\"4\">Children 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">Now among these were of the children of Judah, Daniel, Hananiah, Mishael, and Azariah:</VERS>\r\n      <VERS vnumber=\"7\">Unto 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.</VERS>\r\n      <VERS vnumber=\"8\">But 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.</VERS>\r\n      <VERS vnumber=\"9\">Now God had brought Daniel into favour and tender love with the prince of the eunuchs.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">Then said Daniel to Melzar, whom the prince of the eunuchs had set over Daniel, Hananiah, Mishael, and Azariah,</VERS>\r\n      <VERS vnumber=\"12\">Prove thy servants, I beseech thee, ten days; and let them give us pulse to eat, and water to drink.</VERS>\r\n      <VERS vnumber=\"13\">Then 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.</VERS>\r\n      <VERS vnumber=\"14\">So he consented to them in this matter, and proved them ten days.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">Thus Melzar took away the portion of their meat, and the wine that they should drink; and gave them pulse.</VERS>\r\n      <VERS vnumber=\"17\">As for these four children, God gave them knowledge and skill in all learning and wisdom: and Daniel had understanding in all visions and dreams.</VERS>\r\n      <VERS vnumber=\"18\">Now 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.</VERS>\r\n      <VERS vnumber=\"19\">And the king communed with them; and among them all was found none like Daniel, Hananiah, Mishael, and Azariah: therefore stood they before the king.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And Daniel continued even unto the first year of king Cyrus.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">And in the second year of the reign of Nebuchadnezzar Nebuchadnezzar dreamed dreams, wherewith his spirit was troubled, and his sleep brake from him.</VERS>\r\n      <VERS vnumber=\"2\">Then 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.</VERS>\r\n      <VERS vnumber=\"3\">And the king said unto them, I have dreamed a dream, and my spirit was troubled to know the dream.</VERS>\r\n      <VERS vnumber=\"4\">Then spake the Chaldeans to the king in Syriack, O king, live for ever: tell thy servants the dream, and we will shew the interpretation.</VERS>\r\n      <VERS vnumber=\"5\">The 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.</VERS>\r\n      <VERS vnumber=\"6\">But 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.</VERS>\r\n      <VERS vnumber=\"7\">They answered again and said, Let the king tell his servants the dream, and we will shew the interpretation of it.</VERS>\r\n      <VERS vnumber=\"8\">The king answered and said, I know of certainty that ye would gain the time, because ye see the thing is gone from me.</VERS>\r\n      <VERS vnumber=\"9\">But 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.</VERS>\r\n      <VERS vnumber=\"10\">The 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">For this cause the king was angry and very furious, and commanded to destroy all the wise men of Babylon.</VERS>\r\n      <VERS vnumber=\"13\">And the decree went forth that the wise men should be slain; and they sought Daniel and his fellows to be slain.</VERS>\r\n      <VERS vnumber=\"14\">Then 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:</VERS>\r\n      <VERS vnumber=\"15\">He 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.</VERS>\r\n      <VERS vnumber=\"16\">Then Daniel went in, and desired of the king that he would give him time, and that he would shew the king the interpretation.</VERS>\r\n      <VERS vnumber=\"17\">Then Daniel went to his house, and made the thing known to Hananiah, Mishael, and Azariah, his companions:</VERS>\r\n      <VERS vnumber=\"18\">That 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.</VERS>\r\n      <VERS vnumber=\"19\">Then was the secret revealed unto Daniel in a night vision. Then Daniel blessed the God of heaven.</VERS>\r\n      <VERS vnumber=\"20\">Daniel answered and said, Blessed be the name of God for ever and ever: for wisdom and might are his:</VERS>\r\n      <VERS vnumber=\"21\">And 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:</VERS>\r\n      <VERS vnumber=\"22\">He revealeth the deep and secret things: he knoweth what is in the darkness, and the light dwelleth with him.</VERS>\r\n      <VERS vnumber=\"23\">I 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.</VERS>\r\n      <VERS vnumber=\"24\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"25\">Then 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.</VERS>\r\n      <VERS vnumber=\"26\">The 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?</VERS>\r\n      <VERS vnumber=\"27\">Daniel 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;</VERS>\r\n      <VERS vnumber=\"28\">But 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;</VERS>\r\n      <VERS vnumber=\"29\">As 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.</VERS>\r\n      <VERS vnumber=\"30\">But 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.</VERS>\r\n      <VERS vnumber=\"31\">Thou, O king, sawest, and behold a great image. This great image, whose brightness was excellent, stood before thee; and the form thereof was terrible.</VERS>\r\n      <VERS vnumber=\"32\">This image's head was of fine gold, his breast and his arms of silver, his belly and his thighs of brass,</VERS>\r\n      <VERS vnumber=\"33\">His legs of iron, his feet part of iron and part of clay.</VERS>\r\n      <VERS vnumber=\"34\">Thou 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.</VERS>\r\n      <VERS vnumber=\"35\">Then 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.</VERS>\r\n      <VERS vnumber=\"36\">This is the dream; and we will tell the interpretation thereof before the king.</VERS>\r\n      <VERS vnumber=\"37\">Thou, O king, art a king of kings: for the God of heaven hath given thee a kingdom, power, and strength, and glory.</VERS>\r\n      <VERS vnumber=\"38\">And 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.</VERS>\r\n      <VERS vnumber=\"39\">And after thee shall arise another kingdom inferior to thee, and another third kingdom of brass, which shall bear rule over all the earth.</VERS>\r\n      <VERS vnumber=\"40\">And 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.</VERS>\r\n      <VERS vnumber=\"41\">And 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.</VERS>\r\n      <VERS vnumber=\"42\">And as the toes of the feet were part of iron, and part of clay, so the kingdom shall be partly strong, and partly broken.</VERS>\r\n      <VERS vnumber=\"43\">And 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.</VERS>\r\n      <VERS vnumber=\"44\">And 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.</VERS>\r\n      <VERS vnumber=\"45\">Forasmuch 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.</VERS>\r\n      <VERS vnumber=\"46\">Then the king Nebuchadnezzar fell upon his face, and worshipped Daniel, and commanded that they should offer an oblation and sweet odours unto him.</VERS>\r\n      <VERS vnumber=\"47\">The 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.</VERS>\r\n      <VERS vnumber=\"48\">Then 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.</VERS>\r\n      <VERS vnumber=\"49\">Then 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Nebuchadnezzar 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.</VERS>\r\n      <VERS vnumber=\"2\">Then 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.</VERS>\r\n      <VERS vnumber=\"3\">Then 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.</VERS>\r\n      <VERS vnumber=\"4\">Then an herald cried aloud, To you it is commanded, O people, nations, and languages,</VERS>\r\n      <VERS vnumber=\"5\">That 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:</VERS>\r\n      <VERS vnumber=\"6\">And whoso falleth not down and worshippeth shall the same hour be cast into the midst of a burning fiery furnace.</VERS>\r\n      <VERS vnumber=\"7\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"8\">Wherefore at that time certain Chaldeans came near, and accused the Jews.</VERS>\r\n      <VERS vnumber=\"9\">They spake and said to the king Nebuchadnezzar, O king, live for ever.</VERS>\r\n      <VERS vnumber=\"10\">Thou, 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:</VERS>\r\n      <VERS vnumber=\"11\">And whoso falleth not down and worshippeth, that he should be cast into the midst of a burning fiery furnace.</VERS>\r\n      <VERS vnumber=\"12\">There 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.</VERS>\r\n      <VERS vnumber=\"13\">Then Nebuchadnezzar in his rage and fury commanded to bring Shadrach, Meshach, and Abednego. Then they brought these men before the king.</VERS>\r\n      <VERS vnumber=\"14\">Nebuchadnezzar 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?</VERS>\r\n      <VERS vnumber=\"15\">Now 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?</VERS>\r\n      <VERS vnumber=\"16\">Shadrach, Meshach, and Abednego, answered and said to the king, O Nebuchadnezzar, we are not careful to answer thee in this matter.</VERS>\r\n      <VERS vnumber=\"17\">If 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.</VERS>\r\n      <VERS vnumber=\"18\">But 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.</VERS>\r\n      <VERS vnumber=\"19\">Then 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">Then 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.</VERS>\r\n      <VERS vnumber=\"22\">Therefore because the king's commandment was urgent, and the furnace exceeding hot, the flame of the fire slew those men that took up Shadrach, Meshach, and Abednego.</VERS>\r\n      <VERS vnumber=\"23\">And these three men, Shadrach, Meshach, and Abednego, fell down bound into the midst of the burning fiery furnace.</VERS>\r\n      <VERS vnumber=\"24\">Then 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.</VERS>\r\n      <VERS vnumber=\"25\">He 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.</VERS>\r\n      <VERS vnumber=\"26\">Then 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">Then 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.</VERS>\r\n      <VERS vnumber=\"29\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"30\">Then the king promoted Shadrach, Meshach, and Abednego, in the province of Babylon.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">Nebuchadnezzar the king, unto all people, nations, and languages, that dwell in all the earth; Peace be multiplied unto you.</VERS>\r\n      <VERS vnumber=\"2\">I thought it good to shew the signs and wonders that the high God hath wrought toward me.</VERS>\r\n      <VERS vnumber=\"3\">How great are his signs! and how mighty are his wonders! his kingdom is an everlasting kingdom, and his dominion is from generation to generation.</VERS>\r\n      <VERS vnumber=\"4\">I Nebuchadnezzar was at rest in mine house, and flourishing in my palace:</VERS>\r\n      <VERS vnumber=\"5\">I saw a dream which made me afraid, and the thoughts upon my bed and the visions of my head troubled me.</VERS>\r\n      <VERS vnumber=\"6\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"7\">Then 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.</VERS>\r\n      <VERS vnumber=\"8\">But 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,</VERS>\r\n      <VERS vnumber=\"9\">O 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.</VERS>\r\n      <VERS vnumber=\"10\">Thus 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.</VERS>\r\n      <VERS vnumber=\"11\">The tree grew, and was strong, and the height thereof reached unto heaven, and the sight thereof to the end of all the earth:</VERS>\r\n      <VERS vnumber=\"12\">The 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.</VERS>\r\n      <VERS vnumber=\"13\">I saw in the visions of my head upon my bed, and, behold, a watcher and an holy one came down from heaven;</VERS>\r\n      <VERS vnumber=\"14\">He 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:</VERS>\r\n      <VERS vnumber=\"15\">Nevertheless 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:</VERS>\r\n      <VERS vnumber=\"16\">Let his heart be changed from man's, and let a beast's heart be given unto him; and let seven times pass over him.</VERS>\r\n      <VERS vnumber=\"17\">This 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.</VERS>\r\n      <VERS vnumber=\"18\">This 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.</VERS>\r\n      <VERS vnumber=\"19\">Then 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.</VERS>\r\n      <VERS vnumber=\"20\">The tree that thou sawest, which grew, and was strong, whose height reached unto the heaven, and the sight thereof to all the earth;</VERS>\r\n      <VERS vnumber=\"21\">Whose 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:</VERS>\r\n      <VERS vnumber=\"22\">It 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.</VERS>\r\n      <VERS vnumber=\"23\">And 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;</VERS>\r\n      <VERS vnumber=\"24\">This is the interpretation, O king, and this is the decree of the most High, which is come upon my lord the king:</VERS>\r\n      <VERS vnumber=\"25\">That 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">Wherefore, 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.</VERS>\r\n      <VERS vnumber=\"28\">All this came upon the king Nebuchadnezzar.</VERS>\r\n      <VERS vnumber=\"29\">At the end of twelve months he walked in the palace of the kingdom of Babylon.</VERS>\r\n      <VERS vnumber=\"30\">The 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?</VERS>\r\n      <VERS vnumber=\"31\">While 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.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">The 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.</VERS>\r\n      <VERS vnumber=\"34\">And 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:</VERS>\r\n      <VERS vnumber=\"35\">And 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?</VERS>\r\n      <VERS vnumber=\"36\">At 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.</VERS>\r\n      <VERS vnumber=\"37\">Now 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">Belshazzar the king made a great feast to a thousand of his lords, and drank wine before the thousand.</VERS>\r\n      <VERS vnumber=\"2\">Belshazzar, 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.</VERS>\r\n      <VERS vnumber=\"3\">Then 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.</VERS>\r\n      <VERS vnumber=\"4\">They drank wine, and praised the gods of gold, and of silver, of brass, of iron, of wood, and of stone.</VERS>\r\n      <VERS vnumber=\"5\">In 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.</VERS>\r\n      <VERS vnumber=\"6\">Then 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.</VERS>\r\n      <VERS vnumber=\"7\">The 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.</VERS>\r\n      <VERS vnumber=\"8\">Then came in all the king's wise men: but they could not read the writing, nor make known to the king the interpretation thereof.</VERS>\r\n      <VERS vnumber=\"9\">Then was king Belshazzar greatly troubled, and his countenance was changed in him, and his lords were astonied.</VERS>\r\n      <VERS vnumber=\"10\">Now 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:</VERS>\r\n      <VERS vnumber=\"11\">There 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;</VERS>\r\n      <VERS vnumber=\"12\">Forasmuch 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.</VERS>\r\n      <VERS vnumber=\"13\">Then 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?</VERS>\r\n      <VERS vnumber=\"14\">I 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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:</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">Then 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.</VERS>\r\n      <VERS vnumber=\"18\">O thou king, the most high God gave Nebuchadnezzar thy father a kingdom, and majesty, and glory, and honour:</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">But 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:</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And thou his son, O Belshazzar, hast not humbled thine heart, though thou knewest all this;</VERS>\r\n      <VERS vnumber=\"23\">But 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:</VERS>\r\n      <VERS vnumber=\"24\">Then was the part of the hand sent from him; and this writing was written.</VERS>\r\n      <VERS vnumber=\"25\">And this is the writing that was written, MENE, MENE, TEKEL, UPHARSIN.</VERS>\r\n      <VERS vnumber=\"26\">This is the interpretation of the thing: MENE; God hath numbered thy kingdom, and finished it.</VERS>\r\n      <VERS vnumber=\"27\">TEKEL; Thou art weighed in the balances, and art found wanting.</VERS>\r\n      <VERS vnumber=\"28\">PERES; Thy kingdom is divided, and given to the Medes and Persians.</VERS>\r\n      <VERS vnumber=\"29\">Then 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.</VERS>\r\n      <VERS vnumber=\"30\">In that night was Belshazzar the king of the Chaldeans slain.</VERS>\r\n      <VERS vnumber=\"31\">And Darius the Median took the kingdom, being about threescore and two years old.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">It pleased Darius to set over the kingdom an hundred and twenty princes, which should be over the whole kingdom;</VERS>\r\n      <VERS vnumber=\"2\">And over these three presidents; of whom Daniel was first: that the princes might give accounts unto them, and the king should have no damage.</VERS>\r\n      <VERS vnumber=\"3\">Then 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.</VERS>\r\n      <VERS vnumber=\"4\">Then 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.</VERS>\r\n      <VERS vnumber=\"5\">Then said these men, We shall not find any occasion against this Daniel, except we find it against him concerning the law of his God.</VERS>\r\n      <VERS vnumber=\"6\">Then these presidents and princes assembled together to the king, and said thus unto him, King Darius, live for ever.</VERS>\r\n      <VERS vnumber=\"7\">All 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.</VERS>\r\n      <VERS vnumber=\"8\">Now, 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.</VERS>\r\n      <VERS vnumber=\"9\">Wherefore king Darius signed the writing and the decree.</VERS>\r\n      <VERS vnumber=\"10\">Now 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.</VERS>\r\n      <VERS vnumber=\"11\">Then these men assembled, and found Daniel praying and making supplication before his God.</VERS>\r\n      <VERS vnumber=\"12\">Then 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.</VERS>\r\n      <VERS vnumber=\"13\">Then 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.</VERS>\r\n      <VERS vnumber=\"14\">Then 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.</VERS>\r\n      <VERS vnumber=\"15\">Then 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.</VERS>\r\n      <VERS vnumber=\"16\">Then 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">Then 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.</VERS>\r\n      <VERS vnumber=\"19\">Then the king arose very early in the morning, and went in haste unto the den of lions.</VERS>\r\n      <VERS vnumber=\"20\">And 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?</VERS>\r\n      <VERS vnumber=\"21\">Then said Daniel unto the king, O king, live for ever.</VERS>\r\n      <VERS vnumber=\"22\">My 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.</VERS>\r\n      <VERS vnumber=\"23\">Then was the king exceeding 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">Then king Darius wrote unto all people, nations, and languages, that dwell in all the earth; Peace be multiplied unto you.</VERS>\r\n      <VERS vnumber=\"26\">I 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.</VERS>\r\n      <VERS vnumber=\"27\">He delivereth and rescueth, and he worketh signs and wonders in heaven and in earth, who hath delivered Daniel from the power of the lions.</VERS>\r\n      <VERS vnumber=\"28\">So this Daniel prospered in the reign of Darius, and in the reign of Cyrus the Persian.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">In 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.</VERS>\r\n      <VERS vnumber=\"2\">Daniel spake and said, I saw in my vision by night, and, behold, the four winds of the heaven strove upon the great sea.</VERS>\r\n      <VERS vnumber=\"3\">And four great beasts came up from the sea, diverse one from another.</VERS>\r\n      <VERS vnumber=\"4\">The 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">After 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.</VERS>\r\n      <VERS vnumber=\"7\">After 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.</VERS>\r\n      <VERS vnumber=\"8\">I 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.</VERS>\r\n      <VERS vnumber=\"9\">I 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.</VERS>\r\n      <VERS vnumber=\"10\">A 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.</VERS>\r\n      <VERS vnumber=\"11\">I 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.</VERS>\r\n      <VERS vnumber=\"12\">As concerning the rest of the beasts, they had their dominion taken away: yet their lives were prolonged for a season and time.</VERS>\r\n      <VERS vnumber=\"13\">I 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">I Daniel was grieved in my spirit in the midst of my body, and the visions of my head troubled me.</VERS>\r\n      <VERS vnumber=\"16\">I 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.</VERS>\r\n      <VERS vnumber=\"17\">These great beasts, which are four, are four kings, which shall arise out of the earth.</VERS>\r\n      <VERS vnumber=\"18\">But the saints of the most High shall take the kingdom, and possess the kingdom for ever, even for ever and ever.</VERS>\r\n      <VERS vnumber=\"19\">Then 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;</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">I beheld, and the same horn made war with the saints, and prevailed against them;</VERS>\r\n      <VERS vnumber=\"22\">Until 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.</VERS>\r\n      <VERS vnumber=\"23\">Thus 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">But the judgment shall sit, and they shall take away his dominion, to consume and to destroy it unto the end.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">Hitherto 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">In 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">Then 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.</VERS>\r\n      <VERS vnumber=\"4\">I 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">Yea, he magnified himself even to the prince of the host, and by him the daily sacrifice was taken away, and the place of his sanctuary was cast down.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">Then 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?</VERS>\r\n      <VERS vnumber=\"14\">And he said unto me, Unto two thousand and three hundred days; then shall the sanctuary be cleansed.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And I heard a man's voice between the banks of Ulai, which called, and said, Gabriel, make this man to understand the vision.</VERS>\r\n      <VERS vnumber=\"17\">So 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.</VERS>\r\n      <VERS vnumber=\"18\">Now 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">The ram which thou sawest having two horns are the kings of Media and Persia.</VERS>\r\n      <VERS vnumber=\"21\">And the rough goat is the king of Grecia: and the great horn that is between his eyes is the first king.</VERS>\r\n      <VERS vnumber=\"22\">Now that being broken, whereas four stood up for it, four kingdoms shall stand up out of the nation, but not in his power.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">In 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;</VERS>\r\n      <VERS vnumber=\"2\">In 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.</VERS>\r\n      <VERS vnumber=\"3\">And I set my face unto the Lord God, to seek by prayer and supplications, with fasting, and sackcloth, and ashes:</VERS>\r\n      <VERS vnumber=\"4\">And 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;</VERS>\r\n      <VERS vnumber=\"5\">We have sinned, and have committed iniquity, and have done wickedly, and have rebelled, even by departing from thy precepts and from thy judgments:</VERS>\r\n      <VERS vnumber=\"6\">Neither 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.</VERS>\r\n      <VERS vnumber=\"7\">O 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.</VERS>\r\n      <VERS vnumber=\"8\">O Lord, to us belongeth confusion of face, to our kings, to our princes, and to our fathers, because we have sinned against thee.</VERS>\r\n      <VERS vnumber=\"9\">To the Lord our God belong mercies and forgivenesses, though we have rebelled against him;</VERS>\r\n      <VERS vnumber=\"10\">Neither 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.</VERS>\r\n      <VERS vnumber=\"11\">Yea, 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">As 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.</VERS>\r\n      <VERS vnumber=\"14\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">O 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.</VERS>\r\n      <VERS vnumber=\"17\">Now 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.</VERS>\r\n      <VERS vnumber=\"18\">O 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.</VERS>\r\n      <VERS vnumber=\"19\">O 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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;</VERS>\r\n      <VERS vnumber=\"21\">Yea, 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.</VERS>\r\n      <VERS vnumber=\"22\">And he informed me, and talked with me, and said, O Daniel, I am now come forth to give thee skill and understanding.</VERS>\r\n      <VERS vnumber=\"23\">At 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.</VERS>\r\n      <VERS vnumber=\"24\">Seventy 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.</VERS>\r\n      <VERS vnumber=\"25\">Know 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">In 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.</VERS>\r\n      <VERS vnumber=\"2\">In those days I Daniel was mourning three full weeks.</VERS>\r\n      <VERS vnumber=\"3\">I 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.</VERS>\r\n      <VERS vnumber=\"4\">And in the four and twentieth day of the first month, as I was by the side of the great river, which is Hiddekel;</VERS>\r\n      <VERS vnumber=\"5\">Then I lifted up mine eyes, and looked, and behold a certain man clothed in linen, whose loins were girded with fine gold of Uphaz:</VERS>\r\n      <VERS vnumber=\"6\">His 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"9\">Yet 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.</VERS>\r\n      <VERS vnumber=\"10\">And, behold, an hand touched me, which set me upon my knees and upon the palms of my hands.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">Then 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.</VERS>\r\n      <VERS vnumber=\"13\">But 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.</VERS>\r\n      <VERS vnumber=\"14\">Now I am come to make thee understand what shall befall thy people in the latter days: for yet the vision is for many days.</VERS>\r\n      <VERS vnumber=\"15\">And when he had spoken such words unto me, I set my face toward the ground, and I became dumb.</VERS>\r\n      <VERS vnumber=\"16\">And, 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.</VERS>\r\n      <VERS vnumber=\"17\">For 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.</VERS>\r\n      <VERS vnumber=\"18\">Then there came again and touched me one like the appearance of a man, and he strengthened me,</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">Then 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.</VERS>\r\n      <VERS vnumber=\"21\">But 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">Also I in the first year of Darius the Mede, even I, stood to confirm and to strengthen him.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And a mighty king shall stand up, that shall rule with great dominion, and do according to his will.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">But 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:</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">So the king of the south shall come into his kingdom, and shall return into his own land.</VERS>\r\n      <VERS vnumber=\"10\">But 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">For 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">So 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.</VERS>\r\n      <VERS vnumber=\"16\">But 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.</VERS>\r\n      <VERS vnumber=\"17\">He 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.</VERS>\r\n      <VERS vnumber=\"18\">After 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.</VERS>\r\n      <VERS vnumber=\"19\">Then he shall turn his face toward the fort of his own land: but he shall stumble and fall, and not be found.</VERS>\r\n      <VERS vnumber=\"20\">Then 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And with the arms of a flood shall they be overflown from before him, and shall be broken; yea, also the prince of the covenant.</VERS>\r\n      <VERS vnumber=\"23\">And after the league made with him he shall work deceitfully: for he shall come up, and shall become strong with a small people.</VERS>\r\n      <VERS vnumber=\"24\">He 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">Yea, they that feed of the portion of his meat shall destroy him, and his army shall overflow: and many shall fall down slain.</VERS>\r\n      <VERS vnumber=\"27\">And both 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.</VERS>\r\n      <VERS vnumber=\"28\">Then 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.</VERS>\r\n      <VERS vnumber=\"29\">At the time appointed he shall return, and come toward the south; but it shall not be as the former, or as the latter.</VERS>\r\n      <VERS vnumber=\"30\">For 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.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">Now when they shall fall, they shall be holpen with a little help: but many shall cleave to them with flatteries.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">And 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.</VERS>\r\n      <VERS vnumber=\"37\">Neither shall he regard the God of his fathers, nor the desire of women, nor regard any god: for he shall magnify himself above all.</VERS>\r\n      <VERS vnumber=\"38\">But 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.</VERS>\r\n      <VERS vnumber=\"39\">Thus 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.</VERS>\r\n      <VERS vnumber=\"40\">And 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.</VERS>\r\n      <VERS vnumber=\"41\">He 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.</VERS>\r\n      <VERS vnumber=\"42\">He shall stretch forth his hand also upon the countries: and the land of Egypt shall not escape.</VERS>\r\n      <VERS vnumber=\"43\">But 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.</VERS>\r\n      <VERS vnumber=\"44\">But 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.</VERS>\r\n      <VERS vnumber=\"45\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And many of them that sleep in the dust of the earth shall awake, some to everlasting life, and some to shame and everlasting contempt.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">But 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.</VERS>\r\n      <VERS vnumber=\"5\">Then 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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?</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And I heard, but I understood not: then said I, O my Lord, what shall be the end of these things?</VERS>\r\n      <VERS vnumber=\"9\">And he said, Go thy way, Daniel: for the words are closed up and sealed till the time of the end.</VERS>\r\n      <VERS vnumber=\"10\">Many 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">Blessed is he that waiteth, and cometh to the thousand three hundred and five and thirty days.</VERS>\r\n      <VERS vnumber=\"13\">But go thou thy way till the end be: for thou shalt rest, and stand in thy lot at the end of the days.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"28\" bname=\"Hosea\" bsname=\"Hos\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">The 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.</VERS>\r\n      <VERS vnumber=\"2\">The 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.</VERS>\r\n      <VERS vnumber=\"3\">So he went and took Gomer the daughter of Diblaim; which conceived, and bare him a son.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And it shall come to pass at that day, that I will break the bow of Israel in the valley of Jezreel.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">But 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.</VERS>\r\n      <VERS vnumber=\"8\">Now when she had weaned Loruhamah, she conceived, and bare a son.</VERS>\r\n      <VERS vnumber=\"9\">Then said God, Call his name Loammi: for ye are not my people, and I will not be your God.</VERS>\r\n      <VERS vnumber=\"10\">Yet 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.</VERS>\r\n      <VERS vnumber=\"11\">Then 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">Say ye unto your brethren, Ammi; and to your sisters, Ruhamah.</VERS>\r\n      <VERS vnumber=\"2\">Plead 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;</VERS>\r\n      <VERS vnumber=\"3\">Lest 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.</VERS>\r\n      <VERS vnumber=\"4\">And I will not have mercy upon her children; for they be the children of whoredoms.</VERS>\r\n      <VERS vnumber=\"5\">For 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.</VERS>\r\n      <VERS vnumber=\"6\">Therefore, behold, I will hedge up thy way with thorns, and make a wall, that she shall not find her paths.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">For she did not know that I gave her corn, and wine, and oil, and multiplied her silver and gold, which they prepared for Baal.</VERS>\r\n      <VERS vnumber=\"9\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"10\">And now will I discover her lewdness in the sight of her lovers, and none shall deliver her out of mine hand.</VERS>\r\n      <VERS vnumber=\"11\">I will also cause all her mirth to cease, her feast days, her new moons, and her sabbaths, and all her solemn feasts.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">Therefore, behold, I will allure her, and bring her into the wilderness, and speak comfortably unto her.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And it shall be at that day, saith the LORD, that thou shalt call me Ishi; and shalt call me no more Baali.</VERS>\r\n      <VERS vnumber=\"17\">For I will take away the names of Baalim out of her mouth, and they shall no more be remembered by their name.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">I will even betroth thee unto me in faithfulness: and thou shalt know the LORD.</VERS>\r\n      <VERS vnumber=\"21\">And 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;</VERS>\r\n      <VERS vnumber=\"22\">And the earth shall hear the corn, and the wine, and the oil; and they shall hear Jezreel.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Then 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.</VERS>\r\n      <VERS vnumber=\"2\">So I bought her to me for fifteen pieces of silver, and for an homer of barley, and an half homer of barley:</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">For 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:</VERS>\r\n      <VERS vnumber=\"5\">Afterward 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">Hear 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.</VERS>\r\n      <VERS vnumber=\"2\">By swearing, and lying, and killing, and stealing, and committing adultery, they break out, and blood toucheth blood.</VERS>\r\n      <VERS vnumber=\"3\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"4\">Yet let no man strive, nor reprove another: for thy people are as they that strive with the priest.</VERS>\r\n      <VERS vnumber=\"5\">Therefore shalt thou fall in the day, and the prophet also shall fall with thee in the night, and I will destroy thy mother.</VERS>\r\n      <VERS vnumber=\"6\">My 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.</VERS>\r\n      <VERS vnumber=\"7\">As they were increased, so they sinned against me: therefore will I change their glory into shame.</VERS>\r\n      <VERS vnumber=\"8\">They eat up the sin of my people, and they set their heart on their iniquity.</VERS>\r\n      <VERS vnumber=\"9\">And there shall be, like people, like priest: and I will punish them for their ways, and reward them their doings.</VERS>\r\n      <VERS vnumber=\"10\">For 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.</VERS>\r\n      <VERS vnumber=\"11\">Whoredom and wine and new wine take away the heart.</VERS>\r\n      <VERS vnumber=\"12\">My 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.</VERS>\r\n      <VERS vnumber=\"13\">They 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.</VERS>\r\n      <VERS vnumber=\"14\">I 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.</VERS>\r\n      <VERS vnumber=\"15\">Though 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.</VERS>\r\n      <VERS vnumber=\"16\">For Israel slideth back as a backsliding heifer: now the LORD will feed them as a lamb in a large place.</VERS>\r\n      <VERS vnumber=\"17\">Ephraim is joined to idols: let him alone.</VERS>\r\n      <VERS vnumber=\"18\">Their drink is sour: they have committed whoredom continually: her rulers with shame do love, Give ye.</VERS>\r\n      <VERS vnumber=\"19\">The wind hath bound her up in her wings, and they shall be ashamed because of their sacrifices.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">Hear 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.</VERS>\r\n      <VERS vnumber=\"2\">And the revolters are profound to make slaughter, though I have been a rebuker of them all.</VERS>\r\n      <VERS vnumber=\"3\">I know Ephraim, and Israel is not hid from me: for now, O Ephraim, thou committest whoredom, and Israel is defiled.</VERS>\r\n      <VERS vnumber=\"4\">They 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.</VERS>\r\n      <VERS vnumber=\"5\">And the pride of Israel doth testify to his face: therefore shall Israel and Ephraim fall in their iniquity; Judah also shall fall with them.</VERS>\r\n      <VERS vnumber=\"6\">They 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.</VERS>\r\n      <VERS vnumber=\"7\">They have dealt treacherously against the LORD: for they have begotten strange children: now shall a month devour them with their portions.</VERS>\r\n      <VERS vnumber=\"8\">Blow ye the cornet in Gibeah, and the trumpet in Ramah: cry aloud at Bethaven, after thee, O Benjamin.</VERS>\r\n      <VERS vnumber=\"9\">Ephraim shall be desolate in the day of rebuke: among the tribes of Israel have I made known that which shall surely be.</VERS>\r\n      <VERS vnumber=\"10\">The princes of Judah were like them that remove the bound: therefore I will pour out my wrath upon them like water.</VERS>\r\n      <VERS vnumber=\"11\">Ephraim is oppressed and broken in judgment, because he willingly walked after the commandment.</VERS>\r\n      <VERS vnumber=\"12\">Therefore will I be unto Ephraim as a moth, and to the house of Judah as rottenness.</VERS>\r\n      <VERS vnumber=\"13\">When 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.</VERS>\r\n      <VERS vnumber=\"14\">For 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.</VERS>\r\n      <VERS vnumber=\"15\">I will go and return to my place, till they acknowledge their offence, and seek my face: in their affliction they will seek me early.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">Come, 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.</VERS>\r\n      <VERS vnumber=\"2\">After two days will he revive us: in the third day he will raise us up, and we shall live in his sight.</VERS>\r\n      <VERS vnumber=\"3\">Then 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.</VERS>\r\n      <VERS vnumber=\"4\">O 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.</VERS>\r\n      <VERS vnumber=\"5\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"6\">For I desired mercy, and not sacrifice; and the knowledge of God more than burnt offerings.</VERS>\r\n      <VERS vnumber=\"7\">But they like men have transgressed the covenant: there have they dealt treacherously against me.</VERS>\r\n      <VERS vnumber=\"8\">Gilead is a city of them that work iniquity, and is polluted with blood.</VERS>\r\n      <VERS vnumber=\"9\">And as troops of robbers wait for a man, so the company of priests murder in the way by consent: for they commit lewdness.</VERS>\r\n      <VERS vnumber=\"10\">I have seen an horrible thing in the house of Israel: there is the whoredom of Ephraim, Israel is defiled.</VERS>\r\n      <VERS vnumber=\"11\">Also, O Judah, he hath set an harvest for thee, when I returned the captivity of my people.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">When 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">They make the king glad with their wickedness, and the princes with their lies.</VERS>\r\n      <VERS vnumber=\"4\">They are all adulterers, as an oven heated by the baker, who ceaseth from raising after he hath kneaded the dough, until it be leavened.</VERS>\r\n      <VERS vnumber=\"5\">In the day of our king the princes have made him sick with bottles of wine; he stretched out his hand with scorners.</VERS>\r\n      <VERS vnumber=\"6\">For 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.</VERS>\r\n      <VERS vnumber=\"7\">They 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.</VERS>\r\n      <VERS vnumber=\"8\">Ephraim, he hath mixed himself among the people; Ephraim is a cake not turned.</VERS>\r\n      <VERS vnumber=\"9\">Strangers have devoured his strength, and he knoweth it not: yea, gray hairs are here and there upon him, yet he knoweth not.</VERS>\r\n      <VERS vnumber=\"10\">And the pride of Israel testifieth to his face: and they do not return to the LORD their God, nor seek him for all this.</VERS>\r\n      <VERS vnumber=\"11\">Ephraim also is like a silly dove without heart: they call to Egypt, they go to Assyria.</VERS>\r\n      <VERS vnumber=\"12\">When 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.</VERS>\r\n      <VERS vnumber=\"13\">Woe 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">Though I have bound and strengthened their arms, yet do they imagine mischief against me.</VERS>\r\n      <VERS vnumber=\"16\">They 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">Set 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.</VERS>\r\n      <VERS vnumber=\"2\">Israel shall cry unto me, My God, we know thee.</VERS>\r\n      <VERS vnumber=\"3\">Israel hath cast off the thing that is good: the enemy shall pursue him.</VERS>\r\n      <VERS vnumber=\"4\">They 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.</VERS>\r\n      <VERS vnumber=\"5\">Thy calf, O Samaria, hath cast thee off; mine anger is kindled against them: how long will it be ere they attain to innocency?</VERS>\r\n      <VERS vnumber=\"6\">For from Israel was it also: the workman made it; therefore it is not God: but the calf of Samaria shall be broken in pieces.</VERS>\r\n      <VERS vnumber=\"7\">For 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.</VERS>\r\n      <VERS vnumber=\"8\">Israel is swallowed up: now shall they be among the Gentiles as a vessel wherein is no pleasure.</VERS>\r\n      <VERS vnumber=\"9\">For they are gone up to Assyria, a wild ass alone by himself: Ephraim hath hired lovers.</VERS>\r\n      <VERS vnumber=\"10\">Yea, 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.</VERS>\r\n      <VERS vnumber=\"11\">Because Ephraim hath made many altars to sin, altars shall be unto him to sin.</VERS>\r\n      <VERS vnumber=\"12\">I have written to him the great things of my law, but they were counted as a strange thing.</VERS>\r\n      <VERS vnumber=\"13\">They 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.</VERS>\r\n      <VERS vnumber=\"14\">For 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">Rejoice 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.</VERS>\r\n      <VERS vnumber=\"2\">The floor and the winepress shall not feed them, and the new wine shall fail in her.</VERS>\r\n      <VERS vnumber=\"3\">They shall not dwell in the LORD'S land; but Ephraim shall return to Egypt, and they shall eat unclean things in Assyria.</VERS>\r\n      <VERS vnumber=\"4\">They 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.</VERS>\r\n      <VERS vnumber=\"5\">What will ye do in the solemn day, and in the day of the feast of the LORD?</VERS>\r\n      <VERS vnumber=\"6\">For, 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.</VERS>\r\n      <VERS vnumber=\"7\">The 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.</VERS>\r\n      <VERS vnumber=\"8\">The 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.</VERS>\r\n      <VERS vnumber=\"9\">They have deeply corrupted themselves, as in the days of Gibeah: therefore he will remember their iniquity, he will visit their sins.</VERS>\r\n      <VERS vnumber=\"10\">I 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.</VERS>\r\n      <VERS vnumber=\"11\">As for Ephraim, their glory shall fly away like a bird, from the birth, and from the womb, and from the conception.</VERS>\r\n      <VERS vnumber=\"12\">Though 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!</VERS>\r\n      <VERS vnumber=\"13\">Ephraim, as I saw Tyrus, is planted in a pleasant place: but Ephraim shall bring forth his children to the murderer.</VERS>\r\n      <VERS vnumber=\"14\">Give them, O LORD: what wilt thou give? give them a miscarrying womb and dry breasts.</VERS>\r\n      <VERS vnumber=\"15\">All 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.</VERS>\r\n      <VERS vnumber=\"16\">Ephraim 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.</VERS>\r\n      <VERS vnumber=\"17\">My God will cast them away, because they did not hearken unto him: and they shall be wanderers among the nations.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">Israel 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.</VERS>\r\n      <VERS vnumber=\"2\">Their heart is divided; now shall they be found faulty: he shall break down their altars, he shall spoil their images.</VERS>\r\n      <VERS vnumber=\"3\">For now they shall say, We have no king, because we feared not the LORD; what then should a king do to us?</VERS>\r\n      <VERS vnumber=\"4\">They have spoken words, swearing falsely in making a covenant: thus judgment springeth up as hemlock in the furrows of the field.</VERS>\r\n      <VERS vnumber=\"5\">The 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.</VERS>\r\n      <VERS vnumber=\"6\">It 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.</VERS>\r\n      <VERS vnumber=\"7\">As for Samaria, her king is cut off as the foam upon the water.</VERS>\r\n      <VERS vnumber=\"8\">The 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.</VERS>\r\n      <VERS vnumber=\"9\">O 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.</VERS>\r\n      <VERS vnumber=\"10\">It 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">Sow 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.</VERS>\r\n      <VERS vnumber=\"13\">Ye 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.</VERS>\r\n      <VERS vnumber=\"14\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"15\">So shall Bethel do unto you because of your great wickedness: in a morning shall the king of Israel utterly be cut off.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">When Israel was a child, then I loved him, and called my son out of Egypt.</VERS>\r\n      <VERS vnumber=\"2\">As they called them, so they went from them: they sacrificed unto Baalim, and burned incense to graven images.</VERS>\r\n      <VERS vnumber=\"3\">I taught Ephraim also to go, taking them by their arms; but they knew not that I healed them.</VERS>\r\n      <VERS vnumber=\"4\">I 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.</VERS>\r\n      <VERS vnumber=\"5\">He shall not return into the land of Egypt, but the Assyrian shall be his king, because they refused to return.</VERS>\r\n      <VERS vnumber=\"6\">And the sword shall abide on his cities, and shall consume his branches, and devour them, because of their own counsels.</VERS>\r\n      <VERS vnumber=\"7\">And my people are bent to backsliding from me: though they called them to the most High, none at all would exalt him.</VERS>\r\n      <VERS vnumber=\"8\">How 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.</VERS>\r\n      <VERS vnumber=\"9\">I 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.</VERS>\r\n      <VERS vnumber=\"10\">They shall walk after the LORD: he shall roar like a lion: when he shall roar, then the children shall tremble from the west.</VERS>\r\n      <VERS vnumber=\"11\">They 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.</VERS>\r\n      <VERS vnumber=\"12\">Ephraim compasseth me about with lies, and the house of Israel with deceit: but Judah yet ruleth with God, and is faithful with the saints.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">Ephraim 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.</VERS>\r\n      <VERS vnumber=\"2\">The LORD hath also a controversy with Judah, and will punish Jacob according to his ways; according to his doings will he recompense him.</VERS>\r\n      <VERS vnumber=\"3\">He took his brother by the heel in the womb, and by his strength he had power with God:</VERS>\r\n      <VERS vnumber=\"4\">Yea, 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;</VERS>\r\n      <VERS vnumber=\"5\">Even the LORD God of hosts; the LORD is his memorial.</VERS>\r\n      <VERS vnumber=\"6\">Therefore turn thou to thy God: keep mercy and judgment, and wait on thy God continually.</VERS>\r\n      <VERS vnumber=\"7\">He is a merchant, the balances of deceit are in his hand: he loveth to oppress.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">I have also spoken by the prophets, and I have multiplied visions, and used similitudes, by the ministry of the prophets.</VERS>\r\n      <VERS vnumber=\"11\">Is 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.</VERS>\r\n      <VERS vnumber=\"12\">And Jacob fled into the country of Syria, and Israel served for a wife, and for a wife he kept sheep.</VERS>\r\n      <VERS vnumber=\"13\">And by a prophet the LORD brought Israel out of Egypt, and by a prophet was he preserved.</VERS>\r\n      <VERS vnumber=\"14\">Ephraim provoked him to anger most bitterly: therefore shall he leave his blood upon him, and his reproach shall his Lord return unto him.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">When Ephraim spake trembling, he exalted himself in Israel; but when he offended in Baal, he died.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"4\">Yet 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.</VERS>\r\n      <VERS vnumber=\"5\">I did know thee in the wilderness, in the land of great drought.</VERS>\r\n      <VERS vnumber=\"6\">According to their pasture, so were they filled; they were filled, and their heart was exalted; therefore have they forgotten me.</VERS>\r\n      <VERS vnumber=\"7\">Therefore I will be unto them as a lion: as a leopard by the way will I observe them:</VERS>\r\n      <VERS vnumber=\"8\">I 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.</VERS>\r\n      <VERS vnumber=\"9\">O Israel, thou hast destroyed thyself; but in me is thine help.</VERS>\r\n      <VERS vnumber=\"10\">I 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?</VERS>\r\n      <VERS vnumber=\"11\">I gave thee a king in mine anger, and took him away in my wrath.</VERS>\r\n      <VERS vnumber=\"12\">The iniquity of Ephraim is bound up; his sin is hid.</VERS>\r\n      <VERS vnumber=\"13\">The 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.</VERS>\r\n      <VERS vnumber=\"14\">I 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.</VERS>\r\n      <VERS vnumber=\"15\">Though 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.</VERS>\r\n      <VERS vnumber=\"16\">Samaria 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">O Israel, return unto the LORD thy God; for thou hast fallen by thine iniquity.</VERS>\r\n      <VERS vnumber=\"2\">Take 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.</VERS>\r\n      <VERS vnumber=\"3\">Asshur 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.</VERS>\r\n      <VERS vnumber=\"4\">I will heal their backsliding, I will love them freely: for mine anger is turned away from him.</VERS>\r\n      <VERS vnumber=\"5\">I will be as the dew unto Israel: he shall grow as the lily, and cast forth his roots as Lebanon.</VERS>\r\n      <VERS vnumber=\"6\">His branches shall spread, and his beauty shall be as the olive tree, and his smell as Lebanon.</VERS>\r\n      <VERS vnumber=\"7\">They 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.</VERS>\r\n      <VERS vnumber=\"8\">Ephraim 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.</VERS>\r\n      <VERS vnumber=\"9\">Who 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.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"29\" bname=\"Joel\" bsname=\"Joel\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">The word of the LORD that came to Joel the son of Pethuel.</VERS>\r\n      <VERS vnumber=\"2\">Hear 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?</VERS>\r\n      <VERS vnumber=\"3\">Tell ye your children of it, and let your children tell their children, and their children another generation.</VERS>\r\n      <VERS vnumber=\"4\">That 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.</VERS>\r\n      <VERS vnumber=\"5\">Awake, ye drunkards, and weep; and howl, all ye drinkers of wine, because of the new wine; for it is cut off from your mouth.</VERS>\r\n      <VERS vnumber=\"6\">For 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.</VERS>\r\n      <VERS vnumber=\"7\">He 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.</VERS>\r\n      <VERS vnumber=\"8\">Lament like a virgin girded with sackcloth for the husband of her youth.</VERS>\r\n      <VERS vnumber=\"9\">The meat offering and the drink offering is cut off from the house of the LORD; the priests, the LORD'S ministers, mourn.</VERS>\r\n      <VERS vnumber=\"10\">The field is wasted, the land mourneth; for the corn is wasted: the new wine is dried up, the oil languisheth.</VERS>\r\n      <VERS vnumber=\"11\">Be ye ashamed, O ye husbandmen; howl, O ye vinedressers, for the wheat and for the barley; because the harvest of the field is perished.</VERS>\r\n      <VERS vnumber=\"12\">The 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.</VERS>\r\n      <VERS vnumber=\"13\">Gird 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.</VERS>\r\n      <VERS vnumber=\"14\">Sanctify 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,</VERS>\r\n      <VERS vnumber=\"15\">Alas for the day! for the day of the LORD is at hand, and as a destruction from the Almighty shall it come.</VERS>\r\n      <VERS vnumber=\"16\">Is not the meat cut off before our eyes, yea, joy and gladness from the house of our God?</VERS>\r\n      <VERS vnumber=\"17\">The seed is rotten under their clods, the garners are laid desolate, the barns are broken down; for the corn is withered.</VERS>\r\n      <VERS vnumber=\"18\">How do the beasts groan! the herds of cattle are perplexed, because they have no pasture; yea, the flocks of sheep are made desolate.</VERS>\r\n      <VERS vnumber=\"19\">O 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.</VERS>\r\n      <VERS vnumber=\"20\">The 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">Blow 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;</VERS>\r\n      <VERS vnumber=\"2\">A 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.</VERS>\r\n      <VERS vnumber=\"3\">A 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.</VERS>\r\n      <VERS vnumber=\"4\">The appearance of them is as the appearance of horses; and as horsemen, so shall they run.</VERS>\r\n      <VERS vnumber=\"5\">Like 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.</VERS>\r\n      <VERS vnumber=\"6\">Before their face the people shall be much pained: all faces shall gather blackness.</VERS>\r\n      <VERS vnumber=\"7\">They 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:</VERS>\r\n      <VERS vnumber=\"8\">Neither shall one thrust another; they shall walk every one in his path: and when they fall upon the sword, they shall not be wounded.</VERS>\r\n      <VERS vnumber=\"9\">They 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.</VERS>\r\n      <VERS vnumber=\"10\">The earth shall quake before them; the heavens shall tremble: the sun and the moon shall be dark, and the stars shall withdraw their shining:</VERS>\r\n      <VERS vnumber=\"11\">And 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?</VERS>\r\n      <VERS vnumber=\"12\">Therefore also now, saith the LORD, turn ye even to me with all your heart, and with fasting, and with weeping, and with mourning:</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">Who 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?</VERS>\r\n      <VERS vnumber=\"15\">Blow the trumpet in Zion, sanctify a fast, call a solemn assembly:</VERS>\r\n      <VERS vnumber=\"16\">Gather 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.</VERS>\r\n      <VERS vnumber=\"17\">Let 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?</VERS>\r\n      <VERS vnumber=\"18\">Then will the LORD be jealous for his land, and pity his people.</VERS>\r\n      <VERS vnumber=\"19\">Yea, 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:</VERS>\r\n      <VERS vnumber=\"20\">But 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.</VERS>\r\n      <VERS vnumber=\"21\">Fear not, O land; be glad and rejoice: for the LORD will do great things.</VERS>\r\n      <VERS vnumber=\"22\">Be 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.</VERS>\r\n      <VERS vnumber=\"23\">Be 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.</VERS>\r\n      <VERS vnumber=\"24\">And the floors shall be full of wheat, and the fats shall overflow with wine and oil.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And 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:</VERS>\r\n      <VERS vnumber=\"29\">And also upon the servants and upon the handmaids in those days will I pour out my spirit.</VERS>\r\n      <VERS vnumber=\"30\">And I will shew wonders in the heavens and in the earth, blood, and fire, and pillars of smoke.</VERS>\r\n      <VERS vnumber=\"31\">The sun shall be turned into darkness, and the moon into blood, before the great and the terrible day of the LORD come.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">For, behold, in those days, and in that time, when I shall bring again the captivity of Judah and Jerusalem,</VERS>\r\n      <VERS vnumber=\"2\">I 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">Yea, 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;</VERS>\r\n      <VERS vnumber=\"5\">Because ye have taken my silver and my gold, and have carried into your temples my goodly pleasant things:</VERS>\r\n      <VERS vnumber=\"6\">The children also of Judah and the children of Jerusalem have ye sold unto the Grecians, that ye might remove them far from their border.</VERS>\r\n      <VERS vnumber=\"7\">Behold, I will raise them out of the place whither ye have sold them, and will return your recompence upon your own head:</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">Proclaim ye this among the Gentiles; Prepare war, wake up the mighty men, let all the men of war draw near; let them come up:</VERS>\r\n      <VERS vnumber=\"10\">Beat your plowshares into swords, and your pruninghooks into spears: let the weak say, I am strong.</VERS>\r\n      <VERS vnumber=\"11\">Assemble yourselves, and come, all ye heathen, and gather yourselves together round about: thither cause thy mighty ones to come down, O LORD.</VERS>\r\n      <VERS vnumber=\"12\">Let the heathen be wakened, and come up to the valley of Jehoshaphat: for there will I sit to judge all the heathen round about.</VERS>\r\n      <VERS vnumber=\"13\">Put 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.</VERS>\r\n      <VERS vnumber=\"14\">Multitudes, multitudes in the valley of decision: for the day of the LORD is near in the valley of decision.</VERS>\r\n      <VERS vnumber=\"15\">The sun and the moon shall be darkened, and the stars shall withdraw their shining.</VERS>\r\n      <VERS vnumber=\"16\">The 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.</VERS>\r\n      <VERS vnumber=\"17\">So 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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 of the house of the LORD, and shall water the valley of Shittim.</VERS>\r\n      <VERS vnumber=\"19\">Egypt 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.</VERS>\r\n      <VERS vnumber=\"20\">But Judah shall dwell for ever, and Jerusalem from generation to generation.</VERS>\r\n      <VERS vnumber=\"21\">For I will cleanse their blood that I have not cleansed: for the LORD dwelleth in Zion.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"30\" bname=\"Amos\" bsname=\"Amos\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">The 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">Thus 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:</VERS>\r\n      <VERS vnumber=\"4\">But I will send a fire into the house of Hazael, which shall devour the palaces of Benhadad.</VERS>\r\n      <VERS vnumber=\"5\">I 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.</VERS>\r\n      <VERS vnumber=\"6\">Thus 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:</VERS>\r\n      <VERS vnumber=\"7\">But I will send a fire on the wall of Gaza, which shall devour the palaces thereof:</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">Thus 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:</VERS>\r\n      <VERS vnumber=\"10\">But I will send a fire on the wall of Tyrus, which shall devour the palaces thereof.</VERS>\r\n      <VERS vnumber=\"11\">Thus 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:</VERS>\r\n      <VERS vnumber=\"12\">But I will send a fire upon Teman, which shall devour the palaces of Bozrah.</VERS>\r\n      <VERS vnumber=\"13\">Thus 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:</VERS>\r\n      <VERS vnumber=\"14\">But 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:</VERS>\r\n      <VERS vnumber=\"15\">And their king shall go into captivity, he and his princes together, saith the LORD.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">Thus 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:</VERS>\r\n      <VERS vnumber=\"2\">But I will send a fire upon Moab, and it shall devour the palaces of Kerioth: and Moab shall die with tumult, with shouting, and with the sound of the trumpet:</VERS>\r\n      <VERS vnumber=\"3\">And I will cut off the judge from the midst thereof, and will slay all the princes thereof with him, saith the LORD.</VERS>\r\n      <VERS vnumber=\"4\">Thus 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:</VERS>\r\n      <VERS vnumber=\"5\">But I will send a fire upon Judah, and it shall devour the palaces of Jerusalem.</VERS>\r\n      <VERS vnumber=\"6\">Thus 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;</VERS>\r\n      <VERS vnumber=\"7\">That 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:</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">Yet 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.</VERS>\r\n      <VERS vnumber=\"10\">Also I brought you up from the land of Egypt, and led you forty years through the wilderness, to possess the land of the Amorite.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">But ye gave the Nazarites wine to drink; and commanded the prophets, saying, Prophesy not.</VERS>\r\n      <VERS vnumber=\"13\">Behold, I am pressed under you, as a cart is pressed that is full of sheaves.</VERS>\r\n      <VERS vnumber=\"14\">Therefore the flight shall perish from the swift, and the strong shall not strengthen his force, neither shall the mighty deliver himself:</VERS>\r\n      <VERS vnumber=\"15\">Neither 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.</VERS>\r\n      <VERS vnumber=\"16\">And he that is courageous among the mighty shall flee away naked in that day, saith the LORD.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Hear 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,</VERS>\r\n      <VERS vnumber=\"2\">You only have I known of all the families of the earth: therefore I will punish you for all your iniquities.</VERS>\r\n      <VERS vnumber=\"3\">Can two walk together, except they be agreed?</VERS>\r\n      <VERS vnumber=\"4\">Will 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?</VERS>\r\n      <VERS vnumber=\"5\">Can 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?</VERS>\r\n      <VERS vnumber=\"6\">Shall 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?</VERS>\r\n      <VERS vnumber=\"7\">Surely the Lord GOD will do nothing, but he revealeth his secret unto his servants the prophets.</VERS>\r\n      <VERS vnumber=\"8\">The lion hath roared, who will not fear? the Lord GOD hath spoken, who can but prophesy?</VERS>\r\n      <VERS vnumber=\"9\">Publish 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.</VERS>\r\n      <VERS vnumber=\"10\">For they know not to do right, saith the LORD, who store up violence and robbery in their palaces.</VERS>\r\n      <VERS vnumber=\"11\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"12\">Thus 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.</VERS>\r\n      <VERS vnumber=\"13\">Hear ye, and testify in the house of Jacob, saith the Lord GOD, the God of hosts,</VERS>\r\n      <VERS vnumber=\"14\">That 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">Hear 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.</VERS>\r\n      <VERS vnumber=\"2\">The 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">Come to Bethel, and transgress; at Gilgal multiply transgression; and bring your sacrifices every morning, and your tithes after three years:</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">So 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.</VERS>\r\n      <VERS vnumber=\"9\">I 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.</VERS>\r\n      <VERS vnumber=\"10\">I 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.</VERS>\r\n      <VERS vnumber=\"11\">I 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.</VERS>\r\n      <VERS vnumber=\"12\">Therefore thus will I do unto thee, O Israel: and because I will do this unto thee, prepare to meet thy God, O Israel.</VERS>\r\n      <VERS vnumber=\"13\">For, 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">Hear ye this word which I take up against you, even a lamentation, O house of Israel.</VERS>\r\n      <VERS vnumber=\"2\">The virgin of Israel is fallen; she shall no more rise: she is forsaken upon her land; there is none to raise her up.</VERS>\r\n      <VERS vnumber=\"3\">For 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.</VERS>\r\n      <VERS vnumber=\"4\">For thus saith the LORD unto the house of Israel, Seek ye me, and ye shall live:</VERS>\r\n      <VERS vnumber=\"5\">But 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.</VERS>\r\n      <VERS vnumber=\"6\">Seek 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.</VERS>\r\n      <VERS vnumber=\"7\">Ye who turn judgment to wormwood, and leave off righteousness in the earth,</VERS>\r\n      <VERS vnumber=\"8\">Seek 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:</VERS>\r\n      <VERS vnumber=\"9\">That strengtheneth the spoiled against the strong, so that the spoiled shall come against the fortress.</VERS>\r\n      <VERS vnumber=\"10\">They hate him that rebuketh in the gate, and they abhor him that speaketh uprightly.</VERS>\r\n      <VERS vnumber=\"11\">Forasmuch 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.</VERS>\r\n      <VERS vnumber=\"12\">For 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.</VERS>\r\n      <VERS vnumber=\"13\">Therefore the prudent shall keep silence in that time; for it is an evil time.</VERS>\r\n      <VERS vnumber=\"14\">Seek good, and not evil, that ye may live: and so the LORD, the God of hosts, shall be with you, as ye have spoken.</VERS>\r\n      <VERS vnumber=\"15\">Hate 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.</VERS>\r\n      <VERS vnumber=\"16\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"17\">And in all vineyards shall be wailing: for I will pass through thee, saith the LORD.</VERS>\r\n      <VERS vnumber=\"18\">Woe 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.</VERS>\r\n      <VERS vnumber=\"19\">As 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.</VERS>\r\n      <VERS vnumber=\"20\">Shall not the day of the LORD be darkness, and not light? even very dark, and no brightness in it?</VERS>\r\n      <VERS vnumber=\"21\">I hate, I despise your feast days, and I will not smell in your solemn assemblies.</VERS>\r\n      <VERS vnumber=\"22\">Though 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.</VERS>\r\n      <VERS vnumber=\"23\">Take thou away from me the noise of thy songs; for I will not hear the melody of thy viols.</VERS>\r\n      <VERS vnumber=\"24\">But let judgment run down as waters, and righteousness as a mighty stream.</VERS>\r\n      <VERS vnumber=\"25\">Have ye offered unto me sacrifices and offerings in the wilderness forty years, O house of Israel?</VERS>\r\n      <VERS vnumber=\"26\">But ye have borne the tabernacle of your Moloch and Chiun your images, the star of your god, which ye made to yourselves.</VERS>\r\n      <VERS vnumber=\"27\">Therefore will I cause you to go into captivity beyond Damascus, saith the LORD, whose name is The God of hosts.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">Woe 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!</VERS>\r\n      <VERS vnumber=\"2\">Pass 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?</VERS>\r\n      <VERS vnumber=\"3\">Ye that put far away the evil day, and cause the seat of violence to come near;</VERS>\r\n      <VERS vnumber=\"4\">That 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;</VERS>\r\n      <VERS vnumber=\"5\">That chant to the sound of the viol, and invent to themselves instruments of musick, like David;</VERS>\r\n      <VERS vnumber=\"6\">That drink wine in bowls, and anoint themselves with the chief ointments: but they are not grieved for the affliction of Joseph.</VERS>\r\n      <VERS vnumber=\"7\">Therefore now shall they go captive with the first that go captive, and the banquet of them that stretched themselves shall be removed.</VERS>\r\n      <VERS vnumber=\"8\">The 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.</VERS>\r\n      <VERS vnumber=\"9\">And it shall come to pass, if there remain ten men in one house, that they shall die.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">For, behold, the LORD commandeth, and he will smite the great house with breaches, and the little house with clefts.</VERS>\r\n      <VERS vnumber=\"12\">Shall 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:</VERS>\r\n      <VERS vnumber=\"13\">Ye which rejoice in a thing of nought, which say, Have we not taken to us horns by our own strength?</VERS>\r\n      <VERS vnumber=\"14\">But, 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">Thus 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">The LORD repented for this: It shall not be, saith the LORD.</VERS>\r\n      <VERS vnumber=\"4\">Thus 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.</VERS>\r\n      <VERS vnumber=\"5\">Then said I, O Lord GOD, cease, I beseech thee: by whom shall Jacob arise? for he is small.</VERS>\r\n      <VERS vnumber=\"6\">The LORD repented for this: This also shall not be, saith the Lord GOD.</VERS>\r\n      <VERS vnumber=\"7\">Thus he shewed me: and, behold, the Lord stood upon a wall made by a plumbline, with a plumbline in his hand.</VERS>\r\n      <VERS vnumber=\"8\">And 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:</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">Then 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.</VERS>\r\n      <VERS vnumber=\"11\">For thus Amos saith, Jeroboam shall die by the sword, and Israel shall surely be led away captive out of their own land.</VERS>\r\n      <VERS vnumber=\"12\">Also Amaziah said unto Amos, O thou seer, go, flee thee away into the land of Judah, and there eat bread, and prophesy there:</VERS>\r\n      <VERS vnumber=\"13\">But prophesy not again any more at Bethel: for it is the king's chapel, and it is the king's court.</VERS>\r\n      <VERS vnumber=\"14\">Then 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:</VERS>\r\n      <VERS vnumber=\"15\">And the LORD took me as I followed the flock, and the LORD said unto me, Go, prophesy unto my people Israel.</VERS>\r\n      <VERS vnumber=\"16\">Now therefore hear thou the word of the LORD: Thou sayest, Prophesy not against Israel, and drop not thy word against the house of Isaac.</VERS>\r\n      <VERS vnumber=\"17\">Therefore 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">Thus hath the Lord GOD shewed unto me: and behold a basket of summer fruit.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">Hear this, O ye that swallow up the needy, even to make the poor of the land to fail,</VERS>\r\n      <VERS vnumber=\"5\">Saying, 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?</VERS>\r\n      <VERS vnumber=\"6\">That we may buy the poor for silver, and the needy for a pair of shoes; yea, and sell the refuse of the wheat?</VERS>\r\n      <VERS vnumber=\"7\">The LORD hath sworn by the excellency of Jacob, Surely I will never forget any of their works.</VERS>\r\n      <VERS vnumber=\"8\">Shall 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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:</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">Behold, 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:</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">In that day shall the fair virgins and young men faint for thirst.</VERS>\r\n      <VERS vnumber=\"14\">They 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">I 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.</VERS>\r\n      <VERS vnumber=\"2\">Though they dig into hell, thence shall mine hand take them; though they climb up to heaven, thence will I bring them down:</VERS>\r\n      <VERS vnumber=\"3\">And 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:</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">It 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.</VERS>\r\n      <VERS vnumber=\"7\">Are 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?</VERS>\r\n      <VERS vnumber=\"8\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"9\">For, 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.</VERS>\r\n      <VERS vnumber=\"10\">All the sinners of my people shall die by the sword, which say, The evil shall not overtake nor prevent us.</VERS>\r\n      <VERS vnumber=\"11\">In 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:</VERS>\r\n      <VERS vnumber=\"12\">That they may possess the remnant of Edom, and of all the heathen, which are called by my name, saith the LORD that doeth this.</VERS>\r\n      <VERS vnumber=\"13\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"31\" bname=\"Obadiah\" bsname=\"Obad\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">The 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.</VERS>\r\n      <VERS vnumber=\"2\">Behold, I have made thee small among the heathen: thou art greatly despised.</VERS>\r\n      <VERS vnumber=\"3\">The 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?</VERS>\r\n      <VERS vnumber=\"4\">Though thou exalt thyself as the eagle, and though thou set thy nest among the stars, thence will I bring thee down, saith the LORD.</VERS>\r\n      <VERS vnumber=\"5\">If 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?</VERS>\r\n      <VERS vnumber=\"6\">How are the things of Esau searched out! how are his hidden things sought up!</VERS>\r\n      <VERS vnumber=\"7\">All 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; they that eat thy bread have laid a wound under thee: there is none understanding in him.</VERS>\r\n      <VERS vnumber=\"8\">Shall I not in that day, saith the LORD, even destroy the wise men out of Edom, and understanding out of the mount of Esau?</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">For thy violence against thy brother Jacob shame shall cover thee, and thou shalt be cut off for ever.</VERS>\r\n      <VERS vnumber=\"11\">In 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.</VERS>\r\n      <VERS vnumber=\"12\">But 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.</VERS>\r\n      <VERS vnumber=\"13\">Thou 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;</VERS>\r\n      <VERS vnumber=\"14\">Neither 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.</VERS>\r\n      <VERS vnumber=\"15\">For 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.</VERS>\r\n      <VERS vnumber=\"16\">For 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.</VERS>\r\n      <VERS vnumber=\"17\">But upon mount Zion shall be deliverance, and there shall be holiness; and the house of Jacob shall possess their possessions.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And saviours shall come up on mount Zion to judge the mount of Esau; and the kingdom shall be the LORD'S.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"32\" bname=\"Jonah\" bsname=\"Jonah\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">Now the word of the LORD came unto Jonah the son of Amittai, saying,</VERS>\r\n      <VERS vnumber=\"2\">Arise, go to Nineveh, that great city, and cry against it; for their wickedness is come up before me.</VERS>\r\n      <VERS vnumber=\"3\">But 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.</VERS>\r\n      <VERS vnumber=\"4\">But 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.</VERS>\r\n      <VERS vnumber=\"5\">Then 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.</VERS>\r\n      <VERS vnumber=\"6\">So 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">Then 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?</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">Then 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.</VERS>\r\n      <VERS vnumber=\"11\">Then 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">Nevertheless the men rowed hard to bring it to the land; but they could not: for the sea wrought, and was tempestuous against them.</VERS>\r\n      <VERS vnumber=\"14\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"15\">So they took up Jonah, and cast him forth into the sea: and the sea ceased from her raging.</VERS>\r\n      <VERS vnumber=\"16\">Then the men feared the LORD exceedingly, and offered a sacrifice unto the LORD, and made vows.</VERS>\r\n      <VERS vnumber=\"17\">Now 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">Then Jonah prayed unto the LORD his God out of the fish's belly,</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">For 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.</VERS>\r\n      <VERS vnumber=\"4\">Then I said, I am cast out of thy sight; yet I will look again toward thy holy temple.</VERS>\r\n      <VERS vnumber=\"5\">The waters compassed me about, even to the soul: the depth closed me round about, the weeds were wrapped about my head.</VERS>\r\n      <VERS vnumber=\"6\">I 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.</VERS>\r\n      <VERS vnumber=\"7\">When my soul fainted within me I remembered the LORD: and my prayer came in unto thee, into thine holy temple.</VERS>\r\n      <VERS vnumber=\"8\">They that observe lying vanities forsake their own mercy.</VERS>\r\n      <VERS vnumber=\"9\">But I will sacrifice unto thee with the voice of thanksgiving; I will pay that that I have vowed. Salvation is of the LORD.</VERS>\r\n      <VERS vnumber=\"10\">And the LORD spake unto the fish, and it vomited out Jonah upon the dry land.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">And the word of the LORD came unto Jonah the second time, saying,</VERS>\r\n      <VERS vnumber=\"2\">Arise, go unto Nineveh, that great city, and preach unto it the preaching that I bid thee.</VERS>\r\n      <VERS vnumber=\"3\">So Jonah arose, and went unto Nineveh, according to the word of the LORD. Now Nineveh was an exceeding great city of three days' journey.</VERS>\r\n      <VERS vnumber=\"4\">And Jonah began to enter into the city a day's journey, and he cried, and said, Yet forty days, and Nineveh shall be overthrown.</VERS>\r\n      <VERS vnumber=\"5\">So 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.</VERS>\r\n      <VERS vnumber=\"6\">For 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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:</VERS>\r\n      <VERS vnumber=\"8\">But 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.</VERS>\r\n      <VERS vnumber=\"9\">Who can tell if God will turn and repent, and turn away from his fierce anger, that we perish not?</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">But it displeased Jonah exceedingly, and he was very angry.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">Therefore now, O LORD, take, I beseech thee, my life from me; for it is better for me to die than to live.</VERS>\r\n      <VERS vnumber=\"4\">Then said the LORD, Doest thou well to be angry?</VERS>\r\n      <VERS vnumber=\"5\">So 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">But God prepared a worm when the morning rose the next day, and it smote the gourd that it withered.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">Then 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:</VERS>\r\n      <VERS vnumber=\"11\">And should not I spare Nineveh, that great city, wherein are more than sixscore thousand persons that cannot discern between their right hand and their left hand; and also much cattle?</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"33\" bname=\"Micah\" bsname=\"Mic\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">The 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.</VERS>\r\n      <VERS vnumber=\"2\">Hear, 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.</VERS>\r\n      <VERS vnumber=\"3\">For, behold, the LORD cometh forth out of his place, and will come down, and tread upon the high places of the earth.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">For 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?</VERS>\r\n      <VERS vnumber=\"6\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">Therefore I will wail and howl, I will go stripped and naked: I will make a wailing like the dragons, and mourning as the owls.</VERS>\r\n      <VERS vnumber=\"9\">For her wound is incurable; for it is come unto Judah; he is come unto the gate of my people, even to Jerusalem.</VERS>\r\n      <VERS vnumber=\"10\">Declare ye it not at Gath, weep ye not at all: in the house of Aphrah roll thyself in the dust.</VERS>\r\n      <VERS vnumber=\"11\">Pass 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.</VERS>\r\n      <VERS vnumber=\"12\">For the inhabitant of Maroth waited carefully for good: but evil came down from the LORD unto the gate of Jerusalem.</VERS>\r\n      <VERS vnumber=\"13\">O 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.</VERS>\r\n      <VERS vnumber=\"14\">Therefore shalt thou give presents to Moreshethgath: the houses of Achzib shall be a lie to the kings of Israel.</VERS>\r\n      <VERS vnumber=\"15\">Yet will I bring an heir unto thee, O inhabitant of Mareshah: he shall come unto Adullam the glory of Israel.</VERS>\r\n      <VERS vnumber=\"16\">Make thee bald, and poll thee for thy delicate children; enlarge thy baldness as the eagle; for they are gone into captivity from thee.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">Woe 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"4\">In 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.</VERS>\r\n      <VERS vnumber=\"5\">Therefore thou shalt have none that shall cast a cord by lot in the congregation of the LORD.</VERS>\r\n      <VERS vnumber=\"6\">Prophesy ye not, say they to them that prophesy: they shall not prophesy to them, that they shall not take shame.</VERS>\r\n      <VERS vnumber=\"7\">O 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?</VERS>\r\n      <VERS vnumber=\"8\">Even 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.</VERS>\r\n      <VERS vnumber=\"9\">The women of my people have ye cast out from their pleasant houses; from their children have ye taken away my glory for ever.</VERS>\r\n      <VERS vnumber=\"10\">Arise ye, and depart; for this is not your rest: because it is polluted, it shall destroy you, even with a sore destruction.</VERS>\r\n      <VERS vnumber=\"11\">If 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.</VERS>\r\n      <VERS vnumber=\"12\">I 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.</VERS>\r\n      <VERS vnumber=\"13\">The 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">And 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?</VERS>\r\n      <VERS vnumber=\"2\">Who hate the good, and love the evil; who pluck off their skin from off them, and their flesh from off their bones;</VERS>\r\n      <VERS vnumber=\"3\">Who 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.</VERS>\r\n      <VERS vnumber=\"4\">Then 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.</VERS>\r\n      <VERS vnumber=\"5\">Thus 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.</VERS>\r\n      <VERS vnumber=\"6\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"7\">Then shall the seers be ashamed, and the diviners confounded: yea, they shall all cover their lips; for there is no answer of God.</VERS>\r\n      <VERS vnumber=\"8\">But 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.</VERS>\r\n      <VERS vnumber=\"9\">Hear 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.</VERS>\r\n      <VERS vnumber=\"10\">They build up Zion with blood, and Jerusalem with iniquity.</VERS>\r\n      <VERS vnumber=\"11\">The 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.</VERS>\r\n      <VERS vnumber=\"12\">Therefore 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">But 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">But 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.</VERS>\r\n      <VERS vnumber=\"5\">For 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.</VERS>\r\n      <VERS vnumber=\"6\">In 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;</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">Now 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.</VERS>\r\n      <VERS vnumber=\"10\">Be 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.</VERS>\r\n      <VERS vnumber=\"11\">Now also many nations are gathered against thee, that say, Let her be defiled, and let our eye look upon Zion.</VERS>\r\n      <VERS vnumber=\"12\">But they know not the thoughts of the LORD, neither understand they his counsel: for he shall gather them as the sheaves into the floor.</VERS>\r\n      <VERS vnumber=\"13\">Arise 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">Now 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.</VERS>\r\n      <VERS vnumber=\"2\">But 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.</VERS>\r\n      <VERS vnumber=\"3\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">Thine hand shall be lifted up upon thine adversaries, and all thine enemies shall be cut off.</VERS>\r\n      <VERS vnumber=\"10\">And 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:</VERS>\r\n      <VERS vnumber=\"11\">And I will cut off the cities of thy land, and throw down all thy strong holds:</VERS>\r\n      <VERS vnumber=\"12\">And I will cut off witchcrafts out of thine hand; and thou shalt have no more soothsayers:</VERS>\r\n      <VERS vnumber=\"13\">Thy 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.</VERS>\r\n      <VERS vnumber=\"14\">And I will pluck up thy groves out of the midst of thee: so will I destroy thy cities.</VERS>\r\n      <VERS vnumber=\"15\">And I will execute vengeance in anger and fury upon the heathen, such as they have not heard.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">Hear ye now what the LORD saith; Arise, contend thou before the mountains, and let the hills hear thy voice.</VERS>\r\n      <VERS vnumber=\"2\">Hear 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.</VERS>\r\n      <VERS vnumber=\"3\">O my people, what have I done unto thee? and wherein have I wearied thee? testify against me.</VERS>\r\n      <VERS vnumber=\"4\">For 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.</VERS>\r\n      <VERS vnumber=\"5\">O 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.</VERS>\r\n      <VERS vnumber=\"6\">Wherewith 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?</VERS>\r\n      <VERS vnumber=\"7\">Will 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?</VERS>\r\n      <VERS vnumber=\"8\">He 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?</VERS>\r\n      <VERS vnumber=\"9\">The 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.</VERS>\r\n      <VERS vnumber=\"10\">Are there yet the treasures of wickedness in the house of the wicked, and the scant measure that is abominable?</VERS>\r\n      <VERS vnumber=\"11\">Shall I count them pure with the wicked balances, and with the bag of deceitful weights?</VERS>\r\n      <VERS vnumber=\"12\">For the rich men thereof are full of violence, and the inhabitants thereof have spoken lies, and their tongue is deceitful in their mouth.</VERS>\r\n      <VERS vnumber=\"13\">Therefore also will I make thee sick in smiting thee, in making thee desolate because of thy sins.</VERS>\r\n      <VERS vnumber=\"14\">Thou 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.</VERS>\r\n      <VERS vnumber=\"15\">Thou 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.</VERS>\r\n      <VERS vnumber=\"16\">For 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">Woe 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.</VERS>\r\n      <VERS vnumber=\"2\">The 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.</VERS>\r\n      <VERS vnumber=\"3\">That 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.</VERS>\r\n      <VERS vnumber=\"4\">The 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.</VERS>\r\n      <VERS vnumber=\"5\">Trust 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.</VERS>\r\n      <VERS vnumber=\"6\">For 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.</VERS>\r\n      <VERS vnumber=\"7\">Therefore I will look unto the LORD; I will wait for the God of my salvation: my God will hear me.</VERS>\r\n      <VERS vnumber=\"8\">Rejoice 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.</VERS>\r\n      <VERS vnumber=\"9\">I 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.</VERS>\r\n      <VERS vnumber=\"10\">Then 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.</VERS>\r\n      <VERS vnumber=\"11\">In the day that thy walls are to be built, in that day shall the decree be far removed.</VERS>\r\n      <VERS vnumber=\"12\">In 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.</VERS>\r\n      <VERS vnumber=\"13\">Notwithstanding the land shall be desolate because of them that dwell therein, for the fruit of their doings.</VERS>\r\n      <VERS vnumber=\"14\">Feed 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.</VERS>\r\n      <VERS vnumber=\"15\">According to the days of thy coming out of the land of Egypt will I shew unto him marvellous things.</VERS>\r\n      <VERS vnumber=\"16\">The nations shall see and be confounded at all their might: they shall lay their hand upon their mouth, their ears shall be deaf.</VERS>\r\n      <VERS vnumber=\"17\">They 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.</VERS>\r\n      <VERS vnumber=\"18\">Who 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.</VERS>\r\n      <VERS vnumber=\"19\">He 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.</VERS>\r\n      <VERS vnumber=\"20\">Thou wilt perform the truth to Jacob, and the mercy to Abraham, which thou hast sworn unto our fathers from the days of old.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"34\" bname=\"Nahum\" bsname=\"Nah\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">The burden of Nineveh. The book of the vision of Nahum the Elkoshite.</VERS>\r\n      <VERS vnumber=\"2\">God 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.</VERS>\r\n      <VERS vnumber=\"3\">The 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.</VERS>\r\n      <VERS vnumber=\"4\">He rebuketh the sea, and maketh it dry, and drieth up all the rivers: Bashan languisheth, and Carmel, and the flower of Lebanon languisheth.</VERS>\r\n      <VERS vnumber=\"5\">The mountains quake at him, and the hills melt, and the earth is burned at his presence, yea, the world, and all that dwell therein.</VERS>\r\n      <VERS vnumber=\"6\">Who 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.</VERS>\r\n      <VERS vnumber=\"7\">The LORD is good, a strong hold in the day of trouble; and he knoweth them that trust in him.</VERS>\r\n      <VERS vnumber=\"8\">But with an overrunning flood he will make an utter end of the place thereof, and darkness shall pursue his enemies.</VERS>\r\n      <VERS vnumber=\"9\">What do ye imagine against the LORD? he will make an utter end: affliction shall not rise up the second time.</VERS>\r\n      <VERS vnumber=\"10\">For while they be folden together as thorns, and while they are drunken as drunkards, they shall be devoured as stubble fully dry.</VERS>\r\n      <VERS vnumber=\"11\">There is one come out of thee, that imagineth evil against the LORD, a wicked counsellor.</VERS>\r\n      <VERS vnumber=\"12\">Thus 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.</VERS>\r\n      <VERS vnumber=\"13\">For now will I break his yoke from off thee, and will burst thy bonds in sunder.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">Behold 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">He that dasheth in pieces is come up before thy face: keep the munition, watch the way, make thy loins strong, fortify thy power mightily.</VERS>\r\n      <VERS vnumber=\"2\">For 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.</VERS>\r\n      <VERS vnumber=\"3\">The 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.</VERS>\r\n      <VERS vnumber=\"4\">The 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.</VERS>\r\n      <VERS vnumber=\"5\">He shall recount his worthies: they shall stumble in their walk; they shall make haste to the wall thereof, and the defence shall be prepared.</VERS>\r\n      <VERS vnumber=\"6\">The gates of the rivers shall be opened, and the palace shall be dissolved.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">But Nineveh is of old like a pool of water: yet they shall flee away. Stand, stand, shall they cry; but none shall look back.</VERS>\r\n      <VERS vnumber=\"9\">Take 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.</VERS>\r\n      <VERS vnumber=\"10\">She 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.</VERS>\r\n      <VERS vnumber=\"11\">Where 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?</VERS>\r\n      <VERS vnumber=\"12\">The 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.</VERS>\r\n      <VERS vnumber=\"13\">Behold, 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Woe to the bloody city! it is all full of lies and robbery; the prey departeth not;</VERS>\r\n      <VERS vnumber=\"2\">The noise of a whip, and the noise of the rattling of the wheels, and of the pransing horses, and of the jumping chariots.</VERS>\r\n      <VERS vnumber=\"3\">The 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:</VERS>\r\n      <VERS vnumber=\"4\">Because 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.</VERS>\r\n      <VERS vnumber=\"5\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"6\">And I will cast abominable filth upon thee, and make thee vile, and will set thee as a gazingstock.</VERS>\r\n      <VERS vnumber=\"7\">And 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?</VERS>\r\n      <VERS vnumber=\"8\">Art 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?</VERS>\r\n      <VERS vnumber=\"9\">Ethiopia and Egypt were her strength, and it was infinite; Put and Lubim were thy helpers.</VERS>\r\n      <VERS vnumber=\"10\">Yet 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.</VERS>\r\n      <VERS vnumber=\"11\">Thou also shalt be drunken: thou shalt be hid, thou also shalt seek strength because of the enemy.</VERS>\r\n      <VERS vnumber=\"12\">All 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.</VERS>\r\n      <VERS vnumber=\"13\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"14\">Draw thee waters for the siege, fortify thy strong holds: go into clay, and tread the morter, make strong the brickkiln.</VERS>\r\n      <VERS vnumber=\"15\">There 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.</VERS>\r\n      <VERS vnumber=\"16\">Thou hast multiplied thy merchants above the stars of heaven: the cankerworm spoileth, and flieth away.</VERS>\r\n      <VERS vnumber=\"17\">Thy 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.</VERS>\r\n      <VERS vnumber=\"18\">Thy 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.</VERS>\r\n      <VERS vnumber=\"19\">There 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?</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"35\" bname=\"Habakkuk\" bsname=\"Hab\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">The burden which Habakkuk the prophet did see.</VERS>\r\n      <VERS vnumber=\"2\">O LORD, how long shall I cry, and thou wilt not hear! even cry out unto thee of violence, and thou wilt not save!</VERS>\r\n      <VERS vnumber=\"3\">Why 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.</VERS>\r\n      <VERS vnumber=\"4\">Therefore the law is slacked, and judgment doth never go forth: for the wicked doth compass about the righteous; therefore wrong judgment proceedeth.</VERS>\r\n      <VERS vnumber=\"5\">Behold ye among the heathen, and regard, and wonder marvellously: for I will work a work in your days, which ye will not believe, though it be told you.</VERS>\r\n      <VERS vnumber=\"6\">For, 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 theirs.</VERS>\r\n      <VERS vnumber=\"7\">They are terrible and dreadful: their judgment and their dignity shall proceed of themselves.</VERS>\r\n      <VERS vnumber=\"8\">Their 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.</VERS>\r\n      <VERS vnumber=\"9\">They shall come all for violence: their faces shall sup up as the east wind, and they shall gather the captivity as the sand.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">Then shall his mind change, and he shall pass over, and offend, imputing this his power unto his god.</VERS>\r\n      <VERS vnumber=\"12\">Art 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.</VERS>\r\n      <VERS vnumber=\"13\">Thou 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?</VERS>\r\n      <VERS vnumber=\"14\">And makest men as the fishes of the sea, as the creeping things, that have no ruler over them?</VERS>\r\n      <VERS vnumber=\"15\">They 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.</VERS>\r\n      <VERS vnumber=\"16\">Therefore they sacrifice unto their net, and burn incense unto their drag; because by them their portion is fat, and their meat plenteous.</VERS>\r\n      <VERS vnumber=\"17\">Shall they therefore empty their net, and not spare continually to slay the nations?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">I 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.</VERS>\r\n      <VERS vnumber=\"2\">And the LORD answered me, and said, Write the vision, and make it plain upon tables, that he may run that readeth it.</VERS>\r\n      <VERS vnumber=\"3\">For 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.</VERS>\r\n      <VERS vnumber=\"4\">Behold, his soul which is lifted up is not upright in him: but the just shall live by his faith.</VERS>\r\n      <VERS vnumber=\"5\">Yea 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:</VERS>\r\n      <VERS vnumber=\"6\">Shall 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!</VERS>\r\n      <VERS vnumber=\"7\">Shall they not rise up suddenly that shall bite thee, and awake that shall vex thee, and thou shalt be for booties unto them?</VERS>\r\n      <VERS vnumber=\"8\">Because 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.</VERS>\r\n      <VERS vnumber=\"9\">Woe 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!</VERS>\r\n      <VERS vnumber=\"10\">Thou hast consulted shame to thy house by cutting off many people, and hast sinned against thy soul.</VERS>\r\n      <VERS vnumber=\"11\">For the stone shall cry out of the wall, and the beam out of the timber shall answer it.</VERS>\r\n      <VERS vnumber=\"12\">Woe to him that buildeth a town with blood, and stablisheth a city by iniquity!</VERS>\r\n      <VERS vnumber=\"13\">Behold, 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?</VERS>\r\n      <VERS vnumber=\"14\">For the earth shall be filled with the knowledge of the glory of the LORD, as the waters cover the sea.</VERS>\r\n      <VERS vnumber=\"15\">Woe 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!</VERS>\r\n      <VERS vnumber=\"16\">Thou 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.</VERS>\r\n      <VERS vnumber=\"17\">For 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.</VERS>\r\n      <VERS vnumber=\"18\">What 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?</VERS>\r\n      <VERS vnumber=\"19\">Woe 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.</VERS>\r\n      <VERS vnumber=\"20\">But the LORD is in his holy temple: let all the earth keep silence before him.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">A prayer of Habakkuk the prophet upon Shigionoth.</VERS>\r\n      <VERS vnumber=\"2\">O 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.</VERS>\r\n      <VERS vnumber=\"3\">God came from Teman, and the Holy One from mount Paran. Selah. His glory covered the heavens, and the earth was full of his praise.</VERS>\r\n      <VERS vnumber=\"4\">And his brightness was as the light; he had horns coming out of his hand: and there was the hiding of his power.</VERS>\r\n      <VERS vnumber=\"5\">Before him went the pestilence, and burning coals went forth at his feet.</VERS>\r\n      <VERS vnumber=\"6\">He 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.</VERS>\r\n      <VERS vnumber=\"7\">I saw the tents of Cushan in affliction: and the curtains of the land of Midian did tremble.</VERS>\r\n      <VERS vnumber=\"8\">Was 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?</VERS>\r\n      <VERS vnumber=\"9\">Thy bow was made quite naked, according to the oaths of the tribes, even thy word. Selah. Thou didst cleave the earth with rivers.</VERS>\r\n      <VERS vnumber=\"10\">The 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.</VERS>\r\n      <VERS vnumber=\"11\">The sun and moon stood still in their habitation: at the light of thine arrows they went, and at the shining of thy glittering spear.</VERS>\r\n      <VERS vnumber=\"12\">Thou didst march through the land in indignation, thou didst thresh the heathen in anger.</VERS>\r\n      <VERS vnumber=\"13\">Thou 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.</VERS>\r\n      <VERS vnumber=\"14\">Thou 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.</VERS>\r\n      <VERS vnumber=\"15\">Thou didst walk through the sea with thine horses, through the heap of great waters.</VERS>\r\n      <VERS vnumber=\"16\">When 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.</VERS>\r\n      <VERS vnumber=\"17\">Although 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:</VERS>\r\n      <VERS vnumber=\"18\">Yet I will rejoice in the LORD, I will joy in the God of my salvation.</VERS>\r\n      <VERS vnumber=\"19\">The 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.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"36\" bname=\"Zephaniah\" bsname=\"Zeph\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">The 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.</VERS>\r\n      <VERS vnumber=\"2\">I will utterly consume all things from off the land, saith the LORD.</VERS>\r\n      <VERS vnumber=\"3\">I will consume man and beast; I will consume the fowls of the heaven, and the fishes of the sea, and the stumblingblocks with the wicked; and I will cut off man from off the land, saith the LORD.</VERS>\r\n      <VERS vnumber=\"4\">I 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;</VERS>\r\n      <VERS vnumber=\"5\">And 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;</VERS>\r\n      <VERS vnumber=\"6\">And them that are turned back from the LORD; and those that have not sought the LORD, nor enquired for him.</VERS>\r\n      <VERS vnumber=\"7\">Hold 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">In the same day also will I punish all those that leap on the threshold, which fill their masters' houses with violence and deceit.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">Howl, ye inhabitants of Maktesh, for all the merchant people are cut down; all they that bear silver are cut off.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"14\">The 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.</VERS>\r\n      <VERS vnumber=\"15\">That 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,</VERS>\r\n      <VERS vnumber=\"16\">A day of the trumpet and alarm against the fenced cities, and against the high towers.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">Neither 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">Gather yourselves together, yea, gather together, O nation not desired;</VERS>\r\n      <VERS vnumber=\"2\">Before 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.</VERS>\r\n      <VERS vnumber=\"3\">Seek 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.</VERS>\r\n      <VERS vnumber=\"4\">For Gaza shall be forsaken, and Ashkelon a desolation: they shall drive out Ashdod at the noon day, and Ekron shall be rooted up.</VERS>\r\n      <VERS vnumber=\"5\">Woe 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.</VERS>\r\n      <VERS vnumber=\"6\">And the sea coast shall be dwellings and cottages for shepherds, and folds for flocks.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">I 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.</VERS>\r\n      <VERS vnumber=\"9\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"10\">This shall they have for their pride, because they have reproached and magnified themselves against the people of the LORD of hosts.</VERS>\r\n      <VERS vnumber=\"11\">The 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.</VERS>\r\n      <VERS vnumber=\"12\">Ye Ethiopians also, ye shall be slain by my sword.</VERS>\r\n      <VERS vnumber=\"13\">And he will stretch out his hand against the north, and destroy Assyria; and will make Nineveh a desolation, and dry like a wilderness.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">This 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Woe to her that is filthy and polluted, to the oppressing city!</VERS>\r\n      <VERS vnumber=\"2\">She obeyed not the voice; she received not correction; she trusted not in the LORD; she drew not near to her God.</VERS>\r\n      <VERS vnumber=\"3\">Her princes within her are roaring lions; her judges are evening wolves; they gnaw not the bones till the morrow.</VERS>\r\n      <VERS vnumber=\"4\">Her prophets are light and treacherous persons: her priests have polluted the sanctuary, they have done violence to the law.</VERS>\r\n      <VERS vnumber=\"5\">The 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.</VERS>\r\n      <VERS vnumber=\"6\">I 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.</VERS>\r\n      <VERS vnumber=\"7\">I 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.</VERS>\r\n      <VERS vnumber=\"8\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"9\">For 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.</VERS>\r\n      <VERS vnumber=\"10\">From beyond the rivers of Ethiopia my suppliants, even the daughter of my dispersed, shall bring mine offering.</VERS>\r\n      <VERS vnumber=\"11\">In 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.</VERS>\r\n      <VERS vnumber=\"12\">I will also leave in the midst of thee an afflicted and poor people, and they shall trust in the name of the LORD.</VERS>\r\n      <VERS vnumber=\"13\">The 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.</VERS>\r\n      <VERS vnumber=\"14\">Sing, O daughter of Zion; shout, O Israel; be glad and rejoice with all the heart, O daughter of Jerusalem.</VERS>\r\n      <VERS vnumber=\"15\">The 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.</VERS>\r\n      <VERS vnumber=\"16\">In that day it shall be said to Jerusalem, Fear thou not: and to Zion, Let not thine hands be slack.</VERS>\r\n      <VERS vnumber=\"17\">The 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.</VERS>\r\n      <VERS vnumber=\"18\">I will gather them that are sorrowful for the solemn assembly, who are of thee, to whom the reproach of it was a burden.</VERS>\r\n      <VERS vnumber=\"19\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"20\">At 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.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"37\" bname=\"Haggai\" bsname=\"Hag\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">In 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,</VERS>\r\n      <VERS vnumber=\"2\">Thus speaketh the LORD of hosts, saying, This people say, The time is not come, the time that the LORD'S house should be built.</VERS>\r\n      <VERS vnumber=\"3\">Then came the word of the LORD by Haggai the prophet, saying,</VERS>\r\n      <VERS vnumber=\"4\">Is it time for you, O ye, to dwell in your cieled houses, and this house lie waste?</VERS>\r\n      <VERS vnumber=\"5\">Now therefore thus saith the LORD of hosts; Consider your ways.</VERS>\r\n      <VERS vnumber=\"6\">Ye 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.</VERS>\r\n      <VERS vnumber=\"7\">Thus saith the LORD of hosts; Consider your ways.</VERS>\r\n      <VERS vnumber=\"8\">Go 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.</VERS>\r\n      <VERS vnumber=\"9\">Ye 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.</VERS>\r\n      <VERS vnumber=\"10\">Therefore the heaven over you is stayed from dew, and the earth is stayed from her fruit.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">Then 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.</VERS>\r\n      <VERS vnumber=\"13\">Then spake Haggai the LORD'S messenger in the LORD'S message unto the people, saying, I am with you, saith the LORD.</VERS>\r\n      <VERS vnumber=\"14\">And 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,</VERS>\r\n      <VERS vnumber=\"15\">In the four and twentieth day of the sixth month, in the second year of Darius the king.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">In the seventh month, in the one and twentieth day of the month, came the word of the LORD by the prophet Haggai, saying,</VERS>\r\n      <VERS vnumber=\"2\">Speak 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,</VERS>\r\n      <VERS vnumber=\"3\">Who 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?</VERS>\r\n      <VERS vnumber=\"4\">Yet 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:</VERS>\r\n      <VERS vnumber=\"5\">According to the word that I covenanted with you when ye came out of Egypt, so my spirit remaineth among you: fear ye not.</VERS>\r\n      <VERS vnumber=\"6\">For 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;</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">The silver is mine, and the gold is mine, saith the LORD of hosts.</VERS>\r\n      <VERS vnumber=\"9\">The 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.</VERS>\r\n      <VERS vnumber=\"10\">In 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,</VERS>\r\n      <VERS vnumber=\"11\">Thus saith the LORD of hosts; Ask now the priests concerning the law, saying,</VERS>\r\n      <VERS vnumber=\"12\">If 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.</VERS>\r\n      <VERS vnumber=\"13\">Then 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.</VERS>\r\n      <VERS vnumber=\"14\">Then 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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:</VERS>\r\n      <VERS vnumber=\"16\">Since 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.</VERS>\r\n      <VERS vnumber=\"17\">I 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.</VERS>\r\n      <VERS vnumber=\"18\">Consider 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.</VERS>\r\n      <VERS vnumber=\"19\">Is 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.</VERS>\r\n      <VERS vnumber=\"20\">And again the word of the LORD came unto Haggai in the four and twentieth day of the month, saying,</VERS>\r\n      <VERS vnumber=\"21\">Speak to Zerubbabel, governor of Judah, saying, I will shake the heavens and the earth;</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">In 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.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"38\" bname=\"Zechariah\" bsname=\"Zech\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">In 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,</VERS>\r\n      <VERS vnumber=\"2\">The LORD hath been sore displeased with your fathers.</VERS>\r\n      <VERS vnumber=\"3\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"4\">Be 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.</VERS>\r\n      <VERS vnumber=\"5\">Your fathers, where are they? and the prophets, do they live for ever?</VERS>\r\n      <VERS vnumber=\"6\">But 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.</VERS>\r\n      <VERS vnumber=\"7\">Upon 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,</VERS>\r\n      <VERS vnumber=\"8\">I 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.</VERS>\r\n      <VERS vnumber=\"9\">Then 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">Then 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?</VERS>\r\n      <VERS vnumber=\"13\">And the LORD answered the angel that talked with me with good words and comfortable words.</VERS>\r\n      <VERS vnumber=\"14\">So 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"17\">Cry 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.</VERS>\r\n      <VERS vnumber=\"18\">Then lifted I up mine eyes, and saw, and behold four horns.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And the LORD shewed me four carpenters.</VERS>\r\n      <VERS vnumber=\"21\">Then 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">I lifted up mine eyes again, and looked, and behold a man with a measuring line in his hand.</VERS>\r\n      <VERS vnumber=\"2\">Then 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.</VERS>\r\n      <VERS vnumber=\"3\">And, behold, the angel that talked with me went forth, and another angel went out to meet him,</VERS>\r\n      <VERS vnumber=\"4\">And 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:</VERS>\r\n      <VERS vnumber=\"5\">For I, saith the LORD, will be unto her a wall of fire round about, and will be the glory in the midst of her.</VERS>\r\n      <VERS vnumber=\"6\">Ho, 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.</VERS>\r\n      <VERS vnumber=\"7\">Deliver thyself, O Zion, that dwellest with the daughter of Babylon.</VERS>\r\n      <VERS vnumber=\"8\">For 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.</VERS>\r\n      <VERS vnumber=\"9\">For, 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.</VERS>\r\n      <VERS vnumber=\"10\">Sing and rejoice, O daughter of Zion: for, lo, I come, and I will dwell in the midst of thee, saith the LORD.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And the LORD shall inherit Judah his portion in the holy land, and shall choose Jerusalem again.</VERS>\r\n      <VERS vnumber=\"13\">Be silent, O all flesh, before the LORD: for he is raised up out of his holy habitation.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">And he shewed me Joshua the high priest standing before the angel of the LORD, and Satan standing at his right hand to resist him.</VERS>\r\n      <VERS vnumber=\"2\">And 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?</VERS>\r\n      <VERS vnumber=\"3\">Now Joshua was clothed with filthy garments, and stood before the angel.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And the angel of the LORD protested unto Joshua, saying,</VERS>\r\n      <VERS vnumber=\"7\">Thus 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.</VERS>\r\n      <VERS vnumber=\"8\">Hear 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.</VERS>\r\n      <VERS vnumber=\"9\">For 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.</VERS>\r\n      <VERS vnumber=\"10\">In that day, saith the LORD of hosts, shall ye call every man his neighbour under the vine and under the fig tree.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">And the angel that talked with me came again, and waked me, as a man that is wakened out of his sleep,</VERS>\r\n      <VERS vnumber=\"2\">And 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:</VERS>\r\n      <VERS vnumber=\"3\">And two olive trees by it, one upon the right side of the bowl, and the other upon the left side thereof.</VERS>\r\n      <VERS vnumber=\"4\">So I answered and spake to the angel that talked with me, saying, What are these, my lord?</VERS>\r\n      <VERS vnumber=\"5\">Then the angel that talked with me answered and said unto me, Knowest thou not what these be? And I said, No, my lord.</VERS>\r\n      <VERS vnumber=\"6\">Then 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.</VERS>\r\n      <VERS vnumber=\"7\">Who 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.</VERS>\r\n      <VERS vnumber=\"8\">Moreover the word of the LORD came unto me, saying,</VERS>\r\n      <VERS vnumber=\"9\">The 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.</VERS>\r\n      <VERS vnumber=\"10\">For 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.</VERS>\r\n      <VERS vnumber=\"11\">Then 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?</VERS>\r\n      <VERS vnumber=\"12\">And 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?</VERS>\r\n      <VERS vnumber=\"13\">And he answered me and said, Knowest thou not what these be? And I said, No, my lord.</VERS>\r\n      <VERS vnumber=\"14\">Then said he, These are the two anointed ones, that stand by the Lord of the whole earth.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">Then I turned, and lifted up mine eyes, and looked, and behold a flying roll.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">Then 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.</VERS>\r\n      <VERS vnumber=\"4\">I 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.</VERS>\r\n      <VERS vnumber=\"5\">Then 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And, behold, there was lifted up a talent of lead: and this is a woman that sitteth in the midst of the ephah.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">Then 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.</VERS>\r\n      <VERS vnumber=\"10\">Then said I to the angel that talked with me, Whither do these bear the ephah?</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">In the first chariot were red horses; and in the second chariot black horses;</VERS>\r\n      <VERS vnumber=\"3\">And in the third chariot white horses; and in the fourth chariot grisled and bay horses.</VERS>\r\n      <VERS vnumber=\"4\">Then I answered and said unto the angel that talked with me, What are these, my lord?</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">The 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">Then 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.</VERS>\r\n      <VERS vnumber=\"9\">And the word of the LORD came unto me, saying,</VERS>\r\n      <VERS vnumber=\"10\">Take 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;</VERS>\r\n      <VERS vnumber=\"11\">Then take silver and gold, and make crowns, and set them upon the head of Joshua the son of Josedech, the high priest;</VERS>\r\n      <VERS vnumber=\"12\">And 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:</VERS>\r\n      <VERS vnumber=\"13\">Even 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">And 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;</VERS>\r\n      <VERS vnumber=\"2\">When they had sent unto the house of God Sherezer and Regemmelech, and their men, to pray before the LORD,</VERS>\r\n      <VERS vnumber=\"3\">And 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?</VERS>\r\n      <VERS vnumber=\"4\">Then came the word of the LORD of hosts unto me, saying,</VERS>\r\n      <VERS vnumber=\"5\">Speak 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?</VERS>\r\n      <VERS vnumber=\"6\">And when ye did eat, and when ye did drink, did not ye eat for yourselves, and drink for yourselves?</VERS>\r\n      <VERS vnumber=\"7\">Should 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?</VERS>\r\n      <VERS vnumber=\"8\">And the word of the LORD came unto Zechariah, saying,</VERS>\r\n      <VERS vnumber=\"9\">Thus speaketh the LORD of hosts, saying, Execute true judgment, and shew mercy and compassions every man to his brother:</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">But they refused to hearken, and pulled away the shoulder, and stopped their ears, that they should not hear.</VERS>\r\n      <VERS vnumber=\"12\">Yea, 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.</VERS>\r\n      <VERS vnumber=\"13\">Therefore 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:</VERS>\r\n      <VERS vnumber=\"14\">But 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">Again the word of the LORD of hosts came to me, saying,</VERS>\r\n      <VERS vnumber=\"2\">Thus saith the LORD of hosts; I was jealous for Zion with great jealousy, and I was jealous for her with great fury.</VERS>\r\n      <VERS vnumber=\"3\">Thus 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.</VERS>\r\n      <VERS vnumber=\"4\">Thus 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.</VERS>\r\n      <VERS vnumber=\"5\">And the streets of the city shall be full of boys and girls playing in the streets thereof.</VERS>\r\n      <VERS vnumber=\"6\">Thus 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.</VERS>\r\n      <VERS vnumber=\"7\">Thus saith the LORD of hosts; Behold, I will save my people from the east country, and from the west country;</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">Thus 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.</VERS>\r\n      <VERS vnumber=\"10\">For 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.</VERS>\r\n      <VERS vnumber=\"11\">But now I will not be unto the residue of this people as in the former days, saith the LORD of hosts.</VERS>\r\n      <VERS vnumber=\"12\">For 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">For 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:</VERS>\r\n      <VERS vnumber=\"15\">So again have I thought in these days to do well unto Jerusalem and to the house of Judah: fear ye not.</VERS>\r\n      <VERS vnumber=\"16\">These 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:</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And the word of the LORD of hosts came unto me, saying,</VERS>\r\n      <VERS vnumber=\"19\">Thus 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.</VERS>\r\n      <VERS vnumber=\"20\">Thus saith the LORD of hosts; It shall yet come to pass, that there shall come people, and the inhabitants of many cities:</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">Yea, many people and strong nations shall come to seek the LORD of hosts in Jerusalem, and to pray before the LORD.</VERS>\r\n      <VERS vnumber=\"23\">Thus 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">The 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.</VERS>\r\n      <VERS vnumber=\"2\">And Hamath also shall border thereby; Tyrus, and Zidon, though it be very wise.</VERS>\r\n      <VERS vnumber=\"3\">And Tyrus did build herself a strong hold, and heaped up silver as the dust, and fine gold as the mire of the streets.</VERS>\r\n      <VERS vnumber=\"4\">Behold, the Lord will cast her out, and he will smite her power in the sea; and she shall be devoured with fire.</VERS>\r\n      <VERS vnumber=\"5\">Ashkelon 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.</VERS>\r\n      <VERS vnumber=\"6\">And a bastard shall dwell in Ashdod, and I will cut off the pride of the Philistines.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">Rejoice 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">As for thee also, by the blood of thy covenant I have sent forth thy prisoners out of the pit wherein is no water.</VERS>\r\n      <VERS vnumber=\"12\">Turn you to the strong hold, ye prisoners of hope: even to day do I declare that I will render double unto thee;</VERS>\r\n      <VERS vnumber=\"13\">When 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">The 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">For how great is his goodness, and how great is his beauty! corn shall make the young men cheerful, and new wine the maids.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">Ask 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.</VERS>\r\n      <VERS vnumber=\"2\">For 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.</VERS>\r\n      <VERS vnumber=\"3\">Mine 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.</VERS>\r\n      <VERS vnumber=\"4\">Out of him came forth the corner, out of him the nail, out of him the battle bow, out of him every oppressor together.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">I will hiss for them, and gather them; for I have redeemed them: and they shall increase as they have increased.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">I 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And I will strengthen them in the LORD; and they shall walk up and down in his name, saith the LORD.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">Open thy doors, O Lebanon, that the fire may devour thy cedars.</VERS>\r\n      <VERS vnumber=\"2\">Howl, 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.</VERS>\r\n      <VERS vnumber=\"3\">There 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.</VERS>\r\n      <VERS vnumber=\"4\">Thus saith the LORD my God; Feed the flock of the slaughter;</VERS>\r\n      <VERS vnumber=\"5\">Whose 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.</VERS>\r\n      <VERS vnumber=\"6\">For 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">Three shepherds also I cut off in one month; and my soul lothed them, and their soul also abhorred me.</VERS>\r\n      <VERS vnumber=\"9\">Then 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.</VERS>\r\n      <VERS vnumber=\"10\">And I took my staff, even Beauty, and cut it asunder, that I might break my covenant which I had made with all the people.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">Then I cut asunder mine other staff, even Bands, that I might break the brotherhood between Judah and Israel.</VERS>\r\n      <VERS vnumber=\"15\">And the LORD said unto me, Take unto thee yet the instruments of a foolish shepherd.</VERS>\r\n      <VERS vnumber=\"16\">For, 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.</VERS>\r\n      <VERS vnumber=\"17\">Woe 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">The 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.</VERS>\r\n      <VERS vnumber=\"2\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">In 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.</VERS>\r\n      <VERS vnumber=\"5\">And the governors of Judah shall say in their heart, The inhabitants of Jerusalem shall be my strength in the LORD of hosts their God.</VERS>\r\n      <VERS vnumber=\"6\">In 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.</VERS>\r\n      <VERS vnumber=\"7\">The 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.</VERS>\r\n      <VERS vnumber=\"8\">In 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.</VERS>\r\n      <VERS vnumber=\"9\">And it shall come to pass in that day, that I will seek to destroy all the nations that come against Jerusalem.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">In that day shall there be a great mourning in Jerusalem, as the mourning of Hadadrimmon in the valley of Megiddon.</VERS>\r\n      <VERS vnumber=\"12\">And 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;</VERS>\r\n      <VERS vnumber=\"13\">The family of the house of Levi apart, and their wives apart; the family of Shimei apart, and their wives apart;</VERS>\r\n      <VERS vnumber=\"14\">All the families that remain, every family apart, and their wives apart.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">In that day there shall be a fountain opened to the house of David and to the inhabitants of Jerusalem for sin and for uncleanness.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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:</VERS>\r\n      <VERS vnumber=\"5\">But he shall say, I am no prophet, I am an husbandman; for man taught me to keep cattle from my youth.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">Awake, 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">Behold, the day of the LORD cometh, and thy spoil shall be divided in the midst of thee.</VERS>\r\n      <VERS vnumber=\"2\">For 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.</VERS>\r\n      <VERS vnumber=\"3\">Then shall the LORD go forth, and fight against those nations, as when he fought in the day of battle.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And it shall come to pass in that day, that the light shall not be clear, nor dark:</VERS>\r\n      <VERS vnumber=\"7\">But 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And the LORD shall be king over all the earth: in that day shall there be one LORD, and his name one.</VERS>\r\n      <VERS vnumber=\"10\">All 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.</VERS>\r\n      <VERS vnumber=\"11\">And men shall dwell in it, and there shall be no more utter destruction; but Jerusalem shall be safely inhabited.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">This shall be the punishment of Egypt, and the punishment of all nations that come not up to keep the feast of tabernacles.</VERS>\r\n      <VERS vnumber=\"20\">In 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.</VERS>\r\n      <VERS vnumber=\"21\">Yea, 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.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"39\" bname=\"Malachi\" bsname=\"Mal\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">The burden of the word of the LORD to Israel by Malachi.</VERS>\r\n      <VERS vnumber=\"2\">I 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,</VERS>\r\n      <VERS vnumber=\"3\">And I hated Esau, and laid his mountains and his heritage waste for the dragons of the wilderness.</VERS>\r\n      <VERS vnumber=\"4\">Whereas 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.</VERS>\r\n      <VERS vnumber=\"5\">And your eyes shall see, and ye shall say, The LORD will be magnified from the border of Israel.</VERS>\r\n      <VERS vnumber=\"6\">A 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?</VERS>\r\n      <VERS vnumber=\"7\">Ye 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">Who 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.</VERS>\r\n      <VERS vnumber=\"11\">For 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.</VERS>\r\n      <VERS vnumber=\"12\">But ye have profaned it, in that ye say, The table of the LORD is polluted; and the fruit thereof, even his meat, is contemptible.</VERS>\r\n      <VERS vnumber=\"13\">Ye 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.</VERS>\r\n      <VERS vnumber=\"14\">But 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">And now, O ye priests, this commandment is for you.</VERS>\r\n      <VERS vnumber=\"2\">If 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.</VERS>\r\n      <VERS vnumber=\"3\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"4\">And ye shall know that I have sent this commandment unto you, that my covenant might be with Levi, saith the LORD of hosts.</VERS>\r\n      <VERS vnumber=\"5\">My 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.</VERS>\r\n      <VERS vnumber=\"6\">The 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.</VERS>\r\n      <VERS vnumber=\"7\">For 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.</VERS>\r\n      <VERS vnumber=\"8\">But 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.</VERS>\r\n      <VERS vnumber=\"9\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"10\">Have 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?</VERS>\r\n      <VERS vnumber=\"11\">Judah 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.</VERS>\r\n      <VERS vnumber=\"12\">The 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">Yet 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">For 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.</VERS>\r\n      <VERS vnumber=\"17\">Ye 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?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"2\">But 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:</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">Then shall the offering of Judah and Jerusalem be pleasant unto the LORD, as in the days of old, and as in former years.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">For I am the LORD, I change not; therefore ye sons of Jacob are not consumed.</VERS>\r\n      <VERS vnumber=\"7\">Even 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?</VERS>\r\n      <VERS vnumber=\"8\">Will a man rob God? Yet ye have robbed me. But ye say, Wherein have we robbed thee? In tithes and offerings.</VERS>\r\n      <VERS vnumber=\"9\">Ye are cursed with a curse: for ye have robbed me, even this whole nation.</VERS>\r\n      <VERS vnumber=\"10\">Bring 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And all nations shall call you blessed: for ye shall be a delightsome land, saith the LORD of hosts.</VERS>\r\n      <VERS vnumber=\"13\">Your words have been stout against me, saith the LORD. Yet ye say, What have we spoken so much against thee?</VERS>\r\n      <VERS vnumber=\"14\">Ye 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?</VERS>\r\n      <VERS vnumber=\"15\">And now we call the proud happy; yea, they that work wickedness are set up; yea, they that tempt God are even delivered.</VERS>\r\n      <VERS vnumber=\"16\">Then 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">Then shall ye return, and discern between the righteous and the wicked, between him that serveth God and him that serveth him not.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">For, 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.</VERS>\r\n      <VERS vnumber=\"2\">But 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">Remember ye the law of Moses my servant, which I commanded unto him in Horeb for all Israel, with the statutes and judgments.</VERS>\r\n      <VERS vnumber=\"5\">Behold, I will send you Elijah the prophet before the coming of the great and dreadful day of the LORD:</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"40\" bname=\"Matthew\" bsname=\"Matt\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">The book of the generation of Jesus Christ, the son of David, the son of Abraham.</VERS>\r\n      <VERS vnumber=\"2\">Abraham begat Isaac; and Isaac begat Jacob; and Jacob begat Judas and his brethren;</VERS>\r\n      <VERS vnumber=\"3\">And Judas begat Phares and Zara of Thamar; and Phares begat Esrom; and Esrom begat Aram;</VERS>\r\n      <VERS vnumber=\"4\">And Aram begat Aminadab; and Aminadab begat Naasson; and Naasson begat Salmon;</VERS>\r\n      <VERS vnumber=\"5\">And Salmon begat Booz of Rachab; and Booz begat Obed of Ruth; and Obed begat Jesse;</VERS>\r\n      <VERS vnumber=\"6\">And Jesse begat David the king; and David the king begat Solomon of her that had been the wife of Urias;</VERS>\r\n      <VERS vnumber=\"7\">And Solomon begat Roboam; and Roboam begat Abia; and Abia begat Asa;</VERS>\r\n      <VERS vnumber=\"8\">And Asa begat Josaphat; and Josaphat begat Joram; and Joram begat Ozias;</VERS>\r\n      <VERS vnumber=\"9\">And Ozias begat Joatham; and Joatham begat Achaz; and Achaz begat Ezekias;</VERS>\r\n      <VERS vnumber=\"10\">And Ezekias begat Manasses; and Manasses begat Amon; and Amon begat Josias;</VERS>\r\n      <VERS vnumber=\"11\">And Josias begat Jechonias and his brethren, about the time they were carried away to Babylon:</VERS>\r\n      <VERS vnumber=\"12\">And after they were brought to Babylon, Jechonias begat Salathiel; and Salathiel begat Zorobabel;</VERS>\r\n      <VERS vnumber=\"13\">And Zorobabel begat Abiud; and Abiud begat Eliakim; and Eliakim begat Azor;</VERS>\r\n      <VERS vnumber=\"14\">And Azor begat Sadoc; and Sadoc begat Achim; and Achim begat Eliud;</VERS>\r\n      <VERS vnumber=\"15\">And Eliud begat Eleazar; and Eleazar begat Matthan; and Matthan begat Jacob;</VERS>\r\n      <VERS vnumber=\"16\">And Jacob begat Joseph the husband of Mary, of whom was born Jesus, who is called Christ.</VERS>\r\n      <VERS vnumber=\"17\">So 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.</VERS>\r\n      <VERS vnumber=\"18\">Now 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.</VERS>\r\n      <VERS vnumber=\"19\">Then Joseph her husband, being a just man, and not willing to make her a publick example, was minded to put her away privily.</VERS>\r\n      <VERS vnumber=\"20\">But 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.</VERS>\r\n      <VERS vnumber=\"21\">And she shall bring forth a son, and thou shalt call his name JESUS: for he shall save his people from their sins.</VERS>\r\n      <VERS vnumber=\"22\">Now all this was done, that it might be fulfilled which was spoken of the Lord by the prophet, saying,</VERS>\r\n      <VERS vnumber=\"23\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"24\">Then Joseph being raised from sleep did as the angel of the Lord had bidden him, and took unto him his wife:</VERS>\r\n      <VERS vnumber=\"25\">And knew her not till she had brought forth her firstborn son: and he called his name JESUS.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">Now 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,</VERS>\r\n      <VERS vnumber=\"2\">Saying, 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.</VERS>\r\n      <VERS vnumber=\"3\">When Herod the king had heard these things, he was troubled, and all Jerusalem with him.</VERS>\r\n      <VERS vnumber=\"4\">And when he had gathered all the chief priests and scribes of the people together, he demanded of them where Christ should be born.</VERS>\r\n      <VERS vnumber=\"5\">And they said unto him, In Bethlehem of Judaea: for thus it is written by the prophet,</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">Then Herod, when he had privily called the wise men, enquired of them diligently what time the star appeared.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">When 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.</VERS>\r\n      <VERS vnumber=\"10\">When they saw the star, they rejoiced with exceeding great joy.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And being warned of God in a dream that they should not return to Herod, they departed into their own country another way.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">When he arose, he took the young child and his mother by night, and departed into Egypt:</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">Then 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.</VERS>\r\n      <VERS vnumber=\"17\">Then was fulfilled that which was spoken by Jeremy the prophet, saying,</VERS>\r\n      <VERS vnumber=\"18\">In 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.</VERS>\r\n      <VERS vnumber=\"19\">But when Herod was dead, behold, an angel of the Lord appeareth in a dream to Joseph in Egypt,</VERS>\r\n      <VERS vnumber=\"20\">Saying, 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.</VERS>\r\n      <VERS vnumber=\"21\">And he arose, and took the young child and his mother, and came into the land of Israel.</VERS>\r\n      <VERS vnumber=\"22\">But 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:</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">In those days came John the Baptist, preaching in the wilderness of Judaea,</VERS>\r\n      <VERS vnumber=\"2\">And saying, Repent ye: for the kingdom of heaven is at hand.</VERS>\r\n      <VERS vnumber=\"3\">For 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">Then went out to him Jerusalem, and all Judaea, and all the region round about Jordan,</VERS>\r\n      <VERS vnumber=\"6\">And were baptized of him in Jordan, confessing their sins.</VERS>\r\n      <VERS vnumber=\"7\">But 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?</VERS>\r\n      <VERS vnumber=\"8\">Bring forth therefore fruits meet for repentance:</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">I 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:</VERS>\r\n      <VERS vnumber=\"12\">Whose 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.</VERS>\r\n      <VERS vnumber=\"13\">Then cometh Jesus from Galilee to Jordan unto John, to be baptized of him.</VERS>\r\n      <VERS vnumber=\"14\">But John forbad him, saying, I have need to be baptized of thee, and comest thou to me?</VERS>\r\n      <VERS vnumber=\"15\">And Jesus answering said unto him, Suffer it to be so now: for thus it becometh us to fulfil all righteousness. Then he suffered him.</VERS>\r\n      <VERS vnumber=\"16\">And 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:</VERS>\r\n      <VERS vnumber=\"17\">And lo a voice from heaven, saying, This is my beloved Son, in whom I am well pleased.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">Then was Jesus led up of the Spirit into the wilderness to be tempted of the devil.</VERS>\r\n      <VERS vnumber=\"2\">And when he had fasted forty days and forty nights, he was afterward an hungred.</VERS>\r\n      <VERS vnumber=\"3\">And when the tempter came to him, he said, If thou be the Son of God, command that these stones be made bread.</VERS>\r\n      <VERS vnumber=\"4\">But 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.</VERS>\r\n      <VERS vnumber=\"5\">Then the devil taketh him up into the holy city, and setteth him on a pinnacle of the temple,</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">Jesus said unto him, It is written again, Thou shalt not tempt the Lord thy God.</VERS>\r\n      <VERS vnumber=\"8\">Again, the devil taketh him up into an exceeding high mountain, and sheweth him all the kingdoms of the world, and the glory of them;</VERS>\r\n      <VERS vnumber=\"9\">And saith unto him, All these things will I give thee, if thou wilt fall down and worship me.</VERS>\r\n      <VERS vnumber=\"10\">Then 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.</VERS>\r\n      <VERS vnumber=\"11\">Then the devil leaveth him, and, behold, angels came and ministered unto him.</VERS>\r\n      <VERS vnumber=\"12\">Now when Jesus had heard that John was cast into prison, he departed into Galilee;</VERS>\r\n      <VERS vnumber=\"13\">And leaving Nazareth, he came and dwelt in Capernaum, which is upon the sea coast, in the borders of Zabulon and Nephthalim:</VERS>\r\n      <VERS vnumber=\"14\">That it might be fulfilled which was spoken by Esaias the prophet, saying,</VERS>\r\n      <VERS vnumber=\"15\">The land of Zabulon, and the land of Nephthalim, by the way of the sea, beyond Jordan, Galilee of the Gentiles;</VERS>\r\n      <VERS vnumber=\"16\">The people which sat in darkness saw great light; and to them which sat in the region and shadow of death light is sprung up.</VERS>\r\n      <VERS vnumber=\"17\">From that time Jesus began to preach, and to say, Repent: for the kingdom of heaven is at hand.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And he saith unto them, Follow me, and I will make you fishers of men.</VERS>\r\n      <VERS vnumber=\"20\">And they straightway left their nets, and followed him.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And they immediately left the ship and their father, and followed him.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And there followed him great multitudes of people from Galilee, and from Decapolis, and from Jerusalem, and from Judaea, and from beyond Jordan.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">And seeing the multitudes, he went up into a mountain: and when he was set, his disciples came unto him:</VERS>\r\n      <VERS vnumber=\"2\">And he opened his mouth, and taught them, saying,</VERS>\r\n      <VERS vnumber=\"3\">Blessed are the poor in spirit: for theirs is the kingdom of heaven.</VERS>\r\n      <VERS vnumber=\"4\">Blessed are they that mourn: for they shall be comforted.</VERS>\r\n      <VERS vnumber=\"5\">Blessed are the meek: for they shall inherit the earth.</VERS>\r\n      <VERS vnumber=\"6\">Blessed are they which do hunger and thirst after righteousness: for they shall be filled.</VERS>\r\n      <VERS vnumber=\"7\">Blessed are the merciful: for they shall obtain mercy.</VERS>\r\n      <VERS vnumber=\"8\">Blessed are the pure in heart: for they shall see God.</VERS>\r\n      <VERS vnumber=\"9\">Blessed are the peacemakers: for they shall be called the children of God.</VERS>\r\n      <VERS vnumber=\"10\">Blessed are they which are persecuted for righteousness' sake: for theirs is the kingdom of heaven.</VERS>\r\n      <VERS vnumber=\"11\">Blessed are ye, when men shall revile you, and persecute you, and shall say all manner of evil against you falsely, for my sake.</VERS>\r\n      <VERS vnumber=\"12\">Rejoice, and be exceeding glad: for great is your reward in heaven: for so persecuted they the prophets which were before you.</VERS>\r\n      <VERS vnumber=\"13\">Ye 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.</VERS>\r\n      <VERS vnumber=\"14\">Ye are the light of the world. A city that is set on an hill cannot be hid.</VERS>\r\n      <VERS vnumber=\"15\">Neither 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.</VERS>\r\n      <VERS vnumber=\"16\">Let your light so shine before men, that they may see your good works, and glorify your Father which is in heaven.</VERS>\r\n      <VERS vnumber=\"17\">Think not that I am come to destroy the law, or the prophets: I am not come to destroy, but to fulfil.</VERS>\r\n      <VERS vnumber=\"18\">For 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.</VERS>\r\n      <VERS vnumber=\"19\">Whosoever 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.</VERS>\r\n      <VERS vnumber=\"20\">For 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.</VERS>\r\n      <VERS vnumber=\"21\">Ye have heard that it was said by them of old time, Thou shalt not kill; and whosoever shall kill shall be in danger of the judgment:</VERS>\r\n      <VERS vnumber=\"22\">But 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.</VERS>\r\n      <VERS vnumber=\"23\">Therefore if thou bring thy gift to the altar, and there rememberest that thy brother hath ought against thee;</VERS>\r\n      <VERS vnumber=\"24\">Leave there thy gift before the altar, and go thy way; first be reconciled to thy brother, and then come and offer thy gift.</VERS>\r\n      <VERS vnumber=\"25\">Agree 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.</VERS>\r\n      <VERS vnumber=\"26\">Verily I say unto thee, Thou shalt by no means come out thence, till thou hast paid the uttermost farthing.</VERS>\r\n      <VERS vnumber=\"27\">Ye have heard that it was said by them of old time, Thou shalt not commit adultery:</VERS>\r\n      <VERS vnumber=\"28\">But I say unto you, That whosoever looketh on a woman to lust after her hath committed adultery with her already in his heart.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">It hath been said, Whosoever shall put away his wife, let him give her a writing of divorcement:</VERS>\r\n      <VERS vnumber=\"32\">But 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.</VERS>\r\n      <VERS vnumber=\"33\">Again, 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:</VERS>\r\n      <VERS vnumber=\"34\">But I say unto you, Swear not at all; neither by heaven; for it is God's throne:</VERS>\r\n      <VERS vnumber=\"35\">Nor by the earth; for it is his footstool: neither by Jerusalem; for it is the city of the great King.</VERS>\r\n      <VERS vnumber=\"36\">Neither shalt thou swear by thy head, because thou canst not make one hair white or black.</VERS>\r\n      <VERS vnumber=\"37\">But let your communication be, Yea, yea; Nay, nay: for whatsoever is more than these cometh of evil.</VERS>\r\n      <VERS vnumber=\"38\">Ye have heard that it hath been said, An eye for an eye, and a tooth for a tooth:</VERS>\r\n      <VERS vnumber=\"39\">But I say unto you, That ye resist not evil: but whosoever shall smite thee on thy right cheek, turn to him the other also.</VERS>\r\n      <VERS vnumber=\"40\">And if any man will sue thee at the law, and take away thy coat, let him have thy cloke also.</VERS>\r\n      <VERS vnumber=\"41\">And whosoever shall compel thee to go a mile, go with him twain.</VERS>\r\n      <VERS vnumber=\"42\">Give to him that asketh thee, and from him that would borrow of thee turn not thou away.</VERS>\r\n      <VERS vnumber=\"43\">Ye have heard that it hath been said, Thou shalt love thy neighbour, and hate thine enemy.</VERS>\r\n      <VERS vnumber=\"44\">But 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;</VERS>\r\n      <VERS vnumber=\"45\">That 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.</VERS>\r\n      <VERS vnumber=\"46\">For if ye love them which love you, what reward have ye? do not even the publicans the same?</VERS>\r\n      <VERS vnumber=\"47\">And if ye salute your brethren only, what do ye more than others? do not even the publicans so?</VERS>\r\n      <VERS vnumber=\"48\">Be ye therefore perfect, even as your Father which is in heaven is perfect.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">Take 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.</VERS>\r\n      <VERS vnumber=\"2\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"3\">But when thou doest alms, let not thy left hand know what thy right hand doeth:</VERS>\r\n      <VERS vnumber=\"4\">That thine alms may be in secret: and thy Father which seeth in secret himself shall reward thee openly.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">But 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.</VERS>\r\n      <VERS vnumber=\"7\">But when ye pray, use not vain repetitions, as the heathen do: for they think that they shall be heard for their much speaking.</VERS>\r\n      <VERS vnumber=\"8\">Be not ye therefore like unto them: for your Father knoweth what things ye have need of, before ye ask him.</VERS>\r\n      <VERS vnumber=\"9\">After this manner therefore pray ye: Our Father which art in heaven, Hallowed be thy name.</VERS>\r\n      <VERS vnumber=\"10\">Thy kingdom come. Thy will be done in earth, as it is in heaven.</VERS>\r\n      <VERS vnumber=\"11\">Give us this day our daily bread.</VERS>\r\n      <VERS vnumber=\"12\">And forgive us our debts, as we forgive our debtors.</VERS>\r\n      <VERS vnumber=\"13\">And lead us not into temptation, but deliver us from evil: For thine is the kingdom, and the power, and the glory, for ever. Amen.</VERS>\r\n      <VERS vnumber=\"14\">For if ye forgive men their trespasses, your heavenly Father will also forgive you:</VERS>\r\n      <VERS vnumber=\"15\">But if ye forgive not men their trespasses, neither will your Father forgive your trespasses.</VERS>\r\n      <VERS vnumber=\"16\">Moreover 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.</VERS>\r\n      <VERS vnumber=\"17\">But thou, when thou fastest, anoint thine head, and wash thy face;</VERS>\r\n      <VERS vnumber=\"18\">That 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.</VERS>\r\n      <VERS vnumber=\"19\">Lay not up for yourselves treasures upon earth, where moth and rust doth corrupt, and where thieves break through and steal:</VERS>\r\n      <VERS vnumber=\"20\">But lay up for yourselves treasures in heaven, where neither moth nor rust doth corrupt, and where thieves do not break through nor steal:</VERS>\r\n      <VERS vnumber=\"21\">For where your treasure is, there will your heart be also.</VERS>\r\n      <VERS vnumber=\"22\">The light of the body is the eye: if therefore thine eye be single, thy whole body shall be full of light.</VERS>\r\n      <VERS vnumber=\"23\">But 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!</VERS>\r\n      <VERS vnumber=\"24\">No 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.</VERS>\r\n      <VERS vnumber=\"25\">Therefore 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?</VERS>\r\n      <VERS vnumber=\"26\">Behold 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?</VERS>\r\n      <VERS vnumber=\"27\">Which of you by taking thought can add one cubit unto his stature?</VERS>\r\n      <VERS vnumber=\"28\">And why take ye thought for raiment? Consider the lilies of the field, how they grow; they toil not, neither do they spin:</VERS>\r\n      <VERS vnumber=\"29\">And yet I say unto you, That even Solomon in all his glory was not arrayed like one of these.</VERS>\r\n      <VERS vnumber=\"30\">Wherefore, 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?</VERS>\r\n      <VERS vnumber=\"31\">Therefore take no thought, saying, What shall we eat? or, What shall we drink? or, Wherewithal shall we be clothed?</VERS>\r\n      <VERS vnumber=\"32\">For after all these things do the Gentiles seek:) for your heavenly Father knoweth that ye have need of all these things.</VERS>\r\n      <VERS vnumber=\"33\">But seek ye first the kingdom of God, and his righteousness; and all these things shall be added unto you.</VERS>\r\n      <VERS vnumber=\"34\">Take 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">Judge not, that ye be not judged.</VERS>\r\n      <VERS vnumber=\"2\">For with what judgment ye judge, ye shall be judged: and with what measure ye mete, it shall be measured to you again.</VERS>\r\n      <VERS vnumber=\"3\">And why beholdest thou the mote that is in thy brother's eye, but considerest not the beam that is in thine own eye?</VERS>\r\n      <VERS vnumber=\"4\">Or 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?</VERS>\r\n      <VERS vnumber=\"5\">Thou 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.</VERS>\r\n      <VERS vnumber=\"6\">Give 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.</VERS>\r\n      <VERS vnumber=\"7\">Ask, and it shall be given you; seek, and ye shall find; knock, and it shall be opened unto you:</VERS>\r\n      <VERS vnumber=\"8\">For every one that asketh receiveth; and he that seeketh findeth; and to him that knocketh it shall be opened.</VERS>\r\n      <VERS vnumber=\"9\">Or what man is there of you, whom if his son ask bread, will he give him a stone?</VERS>\r\n      <VERS vnumber=\"10\">Or if he ask a fish, will he give him a serpent?</VERS>\r\n      <VERS vnumber=\"11\">If 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?</VERS>\r\n      <VERS vnumber=\"12\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"13\">Enter 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:</VERS>\r\n      <VERS vnumber=\"14\">Because strait is the gate, and narrow is the way, which leadeth unto life, and few there be that find it.</VERS>\r\n      <VERS vnumber=\"15\">Beware of false prophets, which come to you in sheep's clothing, but inwardly they are ravening wolves.</VERS>\r\n      <VERS vnumber=\"16\">Ye shall know them by their fruits. Do men gather grapes of thorns, or figs of thistles?</VERS>\r\n      <VERS vnumber=\"17\">Even so every good tree bringeth forth good fruit; but a corrupt tree bringeth forth evil fruit.</VERS>\r\n      <VERS vnumber=\"18\">A good tree cannot bring forth evil fruit, neither can a corrupt tree bring forth good fruit.</VERS>\r\n      <VERS vnumber=\"19\">Every tree that bringeth not forth good fruit is hewn down, and cast into the fire.</VERS>\r\n      <VERS vnumber=\"20\">Wherefore by their fruits ye shall know them.</VERS>\r\n      <VERS vnumber=\"21\">Not 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.</VERS>\r\n      <VERS vnumber=\"22\">Many 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?</VERS>\r\n      <VERS vnumber=\"23\">And then will I profess unto them, I never knew you: depart from me, ye that work iniquity.</VERS>\r\n      <VERS vnumber=\"24\">Therefore whosoever heareth these sayings of mine, and doeth them, I will liken him unto a wise man, which built his house upon a rock:</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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:</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And it came to pass, when Jesus had ended these sayings, the people were astonished at his doctrine:</VERS>\r\n      <VERS vnumber=\"29\">For he taught them as one having authority, and not as the scribes.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">When he was come down from the mountain, great multitudes followed him.</VERS>\r\n      <VERS vnumber=\"2\">And, behold, there came a leper and worshipped him, saying, Lord, if thou wilt, thou canst make me clean.</VERS>\r\n      <VERS vnumber=\"3\">And Jesus put forth his hand, and touched him, saying, I will; be thou clean. And immediately his leprosy was cleansed.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And when Jesus was entered into Capernaum, there came unto him a centurion, beseeching him,</VERS>\r\n      <VERS vnumber=\"6\">And saying, Lord, my servant lieth at home sick of the palsy, grievously tormented.</VERS>\r\n      <VERS vnumber=\"7\">And Jesus saith unto him, I will come and heal him.</VERS>\r\n      <VERS vnumber=\"8\">The 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.</VERS>\r\n      <VERS vnumber=\"9\">For 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.</VERS>\r\n      <VERS vnumber=\"10\">When 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">But the children of the kingdom shall be cast out into outer darkness: there shall be weeping and gnashing of teeth.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And when Jesus was come into Peter's house, he saw his wife's mother laid, and sick of a fever.</VERS>\r\n      <VERS vnumber=\"15\">And he touched her hand, and the fever left her: and she arose, and ministered unto them.</VERS>\r\n      <VERS vnumber=\"16\">When 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:</VERS>\r\n      <VERS vnumber=\"17\">That it might be fulfilled which was spoken by Esaias the prophet, saying, Himself took our infirmities, and bare our sicknesses.</VERS>\r\n      <VERS vnumber=\"18\">Now when Jesus saw great multitudes about him, he gave commandment to depart unto the other side.</VERS>\r\n      <VERS vnumber=\"19\">And a certain scribe came, and said unto him, Master, I will follow thee whithersoever thou goest.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And another of his disciples said unto him, Lord, suffer me first to go and bury my father.</VERS>\r\n      <VERS vnumber=\"22\">But Jesus said unto him, Follow me; and let the dead bury their dead.</VERS>\r\n      <VERS vnumber=\"23\">And when he was entered into a ship, his disciples followed him.</VERS>\r\n      <VERS vnumber=\"24\">And, behold, there arose a great tempest in the sea, insomuch that the ship was covered with the waves: but he was asleep.</VERS>\r\n      <VERS vnumber=\"25\">And his disciples came to him, and awoke him, saying, Lord, save us: we perish.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">But the men marvelled, saying, What manner of man is this, that even the winds and the sea obey him!</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">And, 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?</VERS>\r\n      <VERS vnumber=\"30\">And there was a good way off from them an herd of many swine feeding.</VERS>\r\n      <VERS vnumber=\"31\">So the devils besought him, saying, If thou cast us out, suffer us to go away into the herd of swine.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">And, 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">And he entered into a ship, and passed over, and came into his own city.</VERS>\r\n      <VERS vnumber=\"2\">And, 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.</VERS>\r\n      <VERS vnumber=\"3\">And, behold, certain of the scribes said within themselves, This man blasphemeth.</VERS>\r\n      <VERS vnumber=\"4\">And Jesus knowing their thoughts said, Wherefore think ye evil in your hearts?</VERS>\r\n      <VERS vnumber=\"5\">For whether is easier, to say, Thy sins be forgiven thee; or to say, Arise, and walk?</VERS>\r\n      <VERS vnumber=\"6\">But 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.</VERS>\r\n      <VERS vnumber=\"7\">And he arose, and departed to his house.</VERS>\r\n      <VERS vnumber=\"8\">But when the multitudes saw it, they marvelled, and glorified God, which had given such power unto men.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And when the Pharisees saw it, they said unto his disciples, Why eateth your Master with publicans and sinners?</VERS>\r\n      <VERS vnumber=\"12\">But when Jesus heard that, he said unto them, They that be whole need not a physician, but they that are sick.</VERS>\r\n      <VERS vnumber=\"13\">But 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.</VERS>\r\n      <VERS vnumber=\"14\">Then came to him the disciples of John, saying, Why do we and the Pharisees fast oft, but thy disciples fast not?</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">No 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.</VERS>\r\n      <VERS vnumber=\"17\">Neither 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.</VERS>\r\n      <VERS vnumber=\"18\">While 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.</VERS>\r\n      <VERS vnumber=\"19\">And Jesus arose, and followed him, and so did his disciples.</VERS>\r\n      <VERS vnumber=\"20\">And, behold, a woman, which was diseased with an issue of blood twelve years, came behind him, and touched the hem of his garment:</VERS>\r\n      <VERS vnumber=\"21\">For she said within herself, If I may but touch his garment, I shall be whole.</VERS>\r\n      <VERS vnumber=\"22\">But 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.</VERS>\r\n      <VERS vnumber=\"23\">And when Jesus came into the ruler's house, and saw the minstrels and the people making a noise,</VERS>\r\n      <VERS vnumber=\"24\">He said unto them, Give place: for the maid is not dead, but sleepeth. And they laughed him to scorn.</VERS>\r\n      <VERS vnumber=\"25\">But when the people were put forth, he went in, and took her by the hand, and the maid arose.</VERS>\r\n      <VERS vnumber=\"26\">And the fame hereof went abroad into all that land.</VERS>\r\n      <VERS vnumber=\"27\">And when Jesus departed thence, two blind men followed him, crying, and saying, Thou Son of David, have mercy on us.</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">Then touched he their eyes, saying, According to your faith be it unto you.</VERS>\r\n      <VERS vnumber=\"30\">And their eyes were opened; and Jesus straitly charged them, saying, See that no man know it.</VERS>\r\n      <VERS vnumber=\"31\">But they, when they were departed, spread abroad his fame in all that country.</VERS>\r\n      <VERS vnumber=\"32\">As they went out, behold, they brought to him a dumb man possessed with a devil.</VERS>\r\n      <VERS vnumber=\"33\">And when the devil was cast out, the dumb spake: and the multitudes marvelled, saying, It was never so seen in Israel.</VERS>\r\n      <VERS vnumber=\"34\">But the Pharisees said, He casteth out devils through the prince of the devils.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">But when he saw the multitudes, he was moved with compassion on them, because they fainted, and were scattered abroad, as sheep having no shepherd.</VERS>\r\n      <VERS vnumber=\"37\">Then saith he unto his disciples, The harvest truly is plenteous, but the labourers are few;</VERS>\r\n      <VERS vnumber=\"38\">Pray ye therefore the Lord of the harvest, that he will send forth labourers into his harvest.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">Now 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;</VERS>\r\n      <VERS vnumber=\"3\">Philip, and Bartholomew; Thomas, and Matthew the publican; James the son of Alphaeus, and Lebbaeus, whose surname was Thaddaeus;</VERS>\r\n      <VERS vnumber=\"4\">Simon the Canaanite, and Judas Iscariot, who also betrayed him.</VERS>\r\n      <VERS vnumber=\"5\">These 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:</VERS>\r\n      <VERS vnumber=\"6\">But go rather to the lost sheep of the house of Israel.</VERS>\r\n      <VERS vnumber=\"7\">And as ye go, preach, saying, The kingdom of heaven is at hand.</VERS>\r\n      <VERS vnumber=\"8\">Heal the sick, cleanse the lepers, raise the dead, cast out devils: freely ye have received, freely give.</VERS>\r\n      <VERS vnumber=\"9\">Provide neither gold, nor silver, nor brass in your purses,</VERS>\r\n      <VERS vnumber=\"10\">Nor scrip for your journey, neither two coats, neither shoes, nor yet staves: for the workman is worthy of his meat.</VERS>\r\n      <VERS vnumber=\"11\">And into whatsoever city or town ye shall enter, enquire who in it is worthy; and there abide till ye go thence.</VERS>\r\n      <VERS vnumber=\"12\">And when ye come into an house, salute it.</VERS>\r\n      <VERS vnumber=\"13\">And if the house be worthy, let your peace come upon it: but if it be not worthy, let your peace return to you.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">Verily 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.</VERS>\r\n      <VERS vnumber=\"16\">Behold, I send you forth as sheep in the midst of wolves: be ye therefore wise as serpents, and harmless as doves.</VERS>\r\n      <VERS vnumber=\"17\">But beware of men: for they will deliver you up to the councils, and they will scourge you in their synagogues;</VERS>\r\n      <VERS vnumber=\"18\">And ye shall be brought before governors and kings for my sake, for a testimony against them and the Gentiles.</VERS>\r\n      <VERS vnumber=\"19\">But 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.</VERS>\r\n      <VERS vnumber=\"20\">For it is not ye that speak, but the Spirit of your Father which speaketh in you.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And ye shall be hated of all men for my name's sake: but he that endureth to the end shall be saved.</VERS>\r\n      <VERS vnumber=\"23\">But 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.</VERS>\r\n      <VERS vnumber=\"24\">The disciple is not above his master, nor the servant above his lord.</VERS>\r\n      <VERS vnumber=\"25\">It 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?</VERS>\r\n      <VERS vnumber=\"26\">Fear them not therefore: for there is nothing covered, that shall not be revealed; and hid, that shall not be known.</VERS>\r\n      <VERS vnumber=\"27\">What I tell you in darkness, that speak ye in light: and what ye hear in the ear, that preach ye upon the housetops.</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">Are not two sparrows sold for a farthing? and one of them shall not fall on the ground without your Father.</VERS>\r\n      <VERS vnumber=\"30\">But the very hairs of your head are all numbered.</VERS>\r\n      <VERS vnumber=\"31\">Fear ye not therefore, ye are of more value than many sparrows.</VERS>\r\n      <VERS vnumber=\"32\">Whosoever therefore shall confess me before men, him will I confess also before my Father which is in heaven.</VERS>\r\n      <VERS vnumber=\"33\">But whosoever shall deny me before men, him will I also deny before my Father which is in heaven.</VERS>\r\n      <VERS vnumber=\"34\">Think not that I am come to send peace on earth: I came not to send peace, but a sword.</VERS>\r\n      <VERS vnumber=\"35\">For 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.</VERS>\r\n      <VERS vnumber=\"36\">And a man's foes shall be they of his own household.</VERS>\r\n      <VERS vnumber=\"37\">He 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.</VERS>\r\n      <VERS vnumber=\"38\">And he that taketh not his cross, and followeth after me, is not worthy of me.</VERS>\r\n      <VERS vnumber=\"39\">He that findeth his life shall lose it: and he that loseth his life for my sake shall find it.</VERS>\r\n      <VERS vnumber=\"40\">He that receiveth you receiveth me, and he that receiveth me receiveth him that sent me.</VERS>\r\n      <VERS vnumber=\"41\">He 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.</VERS>\r\n      <VERS vnumber=\"42\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">Now when John had heard in the prison the works of Christ, he sent two of his disciples,</VERS>\r\n      <VERS vnumber=\"3\">And said unto him, Art thou he that should come, or do we look for another?</VERS>\r\n      <VERS vnumber=\"4\">Jesus answered and said unto them, Go and shew John again those things which ye do hear and see:</VERS>\r\n      <VERS vnumber=\"5\">The 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.</VERS>\r\n      <VERS vnumber=\"6\">And blessed is he, whosoever shall not be offended in me.</VERS>\r\n      <VERS vnumber=\"7\">And 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?</VERS>\r\n      <VERS vnumber=\"8\">But what went ye out for to see? A man clothed in soft raiment? behold, they that wear soft clothing are in kings' houses.</VERS>\r\n      <VERS vnumber=\"9\">But what went ye out for to see? A prophet? yea, I say unto you, and more than a prophet.</VERS>\r\n      <VERS vnumber=\"10\">For this is he, of whom it is written, Behold, I send my messenger before thy face, which shall prepare thy way before thee.</VERS>\r\n      <VERS vnumber=\"11\">Verily 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.</VERS>\r\n      <VERS vnumber=\"12\">And from the days of John the Baptist until now the kingdom of heaven suffereth violence, and the violent take it by force.</VERS>\r\n      <VERS vnumber=\"13\">For all the prophets and the law prophesied until John.</VERS>\r\n      <VERS vnumber=\"14\">And if ye will receive it, this is Elias, which was for to come.</VERS>\r\n      <VERS vnumber=\"15\">He that hath ears to hear, let him hear.</VERS>\r\n      <VERS vnumber=\"16\">But whereunto shall I liken this generation? It is like unto children sitting in the markets, and calling unto their fellows,</VERS>\r\n      <VERS vnumber=\"17\">And saying, We have piped unto you, and ye have not danced; we have mourned unto you, and ye have not lamented.</VERS>\r\n      <VERS vnumber=\"18\">For John came neither eating nor drinking, and they say, He hath a devil.</VERS>\r\n      <VERS vnumber=\"19\">The 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.</VERS>\r\n      <VERS vnumber=\"20\">Then began he to upbraid the cities wherein most of his mighty works were done, because they repented not:</VERS>\r\n      <VERS vnumber=\"21\">Woe 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.</VERS>\r\n      <VERS vnumber=\"22\">But I say unto you, It shall be more tolerable for Tyre and Sidon at the day of judgment, than for you.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">But I say unto you, That it shall be more tolerable for the land of Sodom in the day of judgment, than for thee.</VERS>\r\n      <VERS vnumber=\"25\">At 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.</VERS>\r\n      <VERS vnumber=\"26\">Even so, Father: for so it seemed good in thy sight.</VERS>\r\n      <VERS vnumber=\"27\">All 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.</VERS>\r\n      <VERS vnumber=\"28\">Come unto me, all ye that labour and are heavy laden, and I will give you rest.</VERS>\r\n      <VERS vnumber=\"29\">Take my yoke upon you, and learn of me; for I am meek and lowly in heart: and ye shall find rest unto your souls.</VERS>\r\n      <VERS vnumber=\"30\">For my yoke is easy, and my burden is light.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">At 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.</VERS>\r\n      <VERS vnumber=\"2\">But when the Pharisees saw it, they said unto him, Behold, thy disciples do that which is not lawful to do upon the sabbath day.</VERS>\r\n      <VERS vnumber=\"3\">But he said unto them, Have ye not read what David did, when he was an hungred, and they that were with him;</VERS>\r\n      <VERS vnumber=\"4\">How 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?</VERS>\r\n      <VERS vnumber=\"5\">Or have ye not read in the law, how that on the sabbath days the priests in the temple profane the sabbath, and are blameless?</VERS>\r\n      <VERS vnumber=\"6\">But I say unto you, That in this place is one greater than the temple.</VERS>\r\n      <VERS vnumber=\"7\">But if ye had known what this meaneth, I will have mercy, and not sacrifice, ye would not have condemned the guiltless.</VERS>\r\n      <VERS vnumber=\"8\">For the Son of man is Lord even of the sabbath day.</VERS>\r\n      <VERS vnumber=\"9\">And when he was departed thence, he went into their synagogue:</VERS>\r\n      <VERS vnumber=\"10\">And, 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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?</VERS>\r\n      <VERS vnumber=\"12\">How much then is a man better than a sheep? Wherefore it is lawful to do well on the sabbath days.</VERS>\r\n      <VERS vnumber=\"13\">Then saith he to the man, Stretch forth thine hand. And he stretched it forth; and it was restored whole, like as the other.</VERS>\r\n      <VERS vnumber=\"14\">Then the Pharisees went out, and held a council against him, how they might destroy him.</VERS>\r\n      <VERS vnumber=\"15\">But when Jesus knew it, he withdrew himself from thence: and great multitudes followed him, and he healed them all;</VERS>\r\n      <VERS vnumber=\"16\">And charged them that they should not make him known:</VERS>\r\n      <VERS vnumber=\"17\">That it might be fulfilled which was spoken by Esaias the prophet, saying,</VERS>\r\n      <VERS vnumber=\"18\">Behold 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.</VERS>\r\n      <VERS vnumber=\"19\">He shall not strive, nor cry; neither shall any man hear his voice in the streets.</VERS>\r\n      <VERS vnumber=\"20\">A bruised reed shall he not break, and smoking flax shall he not quench, till he send forth judgment unto victory.</VERS>\r\n      <VERS vnumber=\"21\">And in his name shall the Gentiles trust.</VERS>\r\n      <VERS vnumber=\"22\">Then 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.</VERS>\r\n      <VERS vnumber=\"23\">And all the people were amazed, and said, Is not this the son of David?</VERS>\r\n      <VERS vnumber=\"24\">But when the Pharisees heard it, they said, This fellow doth not cast out devils, but by Beelzebub the prince of the devils.</VERS>\r\n      <VERS vnumber=\"25\">And 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:</VERS>\r\n      <VERS vnumber=\"26\">And if Satan cast out Satan, he is divided against himself; how shall then his kingdom stand?</VERS>\r\n      <VERS vnumber=\"27\">And if I by Beelzebub cast out devils, by whom do your children cast them out? therefore they shall be your judges.</VERS>\r\n      <VERS vnumber=\"28\">But if I cast out devils by the Spirit of God, then the kingdom of God is come unto you.</VERS>\r\n      <VERS vnumber=\"29\">Or 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.</VERS>\r\n      <VERS vnumber=\"30\">He that is not with me is against me; and he that gathereth not with me scattereth abroad.</VERS>\r\n      <VERS vnumber=\"31\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">Either 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.</VERS>\r\n      <VERS vnumber=\"34\">O generation of vipers, how can ye, being evil, speak good things? for out of the abundance of the heart the mouth speaketh.</VERS>\r\n      <VERS vnumber=\"35\">A 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.</VERS>\r\n      <VERS vnumber=\"36\">But I say unto you, That every idle word that men shall speak, they shall give account thereof in the day of judgment.</VERS>\r\n      <VERS vnumber=\"37\">For by thy words thou shalt be justified, and by thy words thou shalt be condemned.</VERS>\r\n      <VERS vnumber=\"38\">Then certain of the scribes and of the Pharisees answered, saying, Master, we would see a sign from thee.</VERS>\r\n      <VERS vnumber=\"39\">But 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:</VERS>\r\n      <VERS vnumber=\"40\">For 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.</VERS>\r\n      <VERS vnumber=\"41\">The 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.</VERS>\r\n      <VERS vnumber=\"42\">The 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.</VERS>\r\n      <VERS vnumber=\"43\">When the unclean spirit is gone out of a man, he walketh through dry places, seeking rest, and findeth none.</VERS>\r\n      <VERS vnumber=\"44\">Then 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.</VERS>\r\n      <VERS vnumber=\"45\">Then 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.</VERS>\r\n      <VERS vnumber=\"46\">While he yet talked to the people, behold, his mother and his brethren stood without, desiring to speak with him.</VERS>\r\n      <VERS vnumber=\"47\">Then one said unto him, Behold, thy mother and thy brethren stand without, desiring to speak with thee.</VERS>\r\n      <VERS vnumber=\"48\">But he answered and said unto him that told him, Who is my mother? and who are my brethren?</VERS>\r\n      <VERS vnumber=\"49\">And he stretched forth his hand toward his disciples, and said, Behold my mother and my brethren!</VERS>\r\n      <VERS vnumber=\"50\">For whosoever shall do the will of my Father which is in heaven, the same is my brother, and sister, and mother.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">The same day went Jesus out of the house, and sat by the sea side.</VERS>\r\n      <VERS vnumber=\"2\">And great multitudes were gathered together unto him, so that he went into a ship, and sat; and the whole multitude stood on the shore.</VERS>\r\n      <VERS vnumber=\"3\">And he spake many things unto them in parables, saying, Behold, a sower went forth to sow;</VERS>\r\n      <VERS vnumber=\"4\">And when he sowed, some seeds fell by the way side, and the fowls came and devoured them up:</VERS>\r\n      <VERS vnumber=\"5\">Some fell upon stony places, where they had not much earth: and forthwith they sprung up, because they had no deepness of earth:</VERS>\r\n      <VERS vnumber=\"6\">And when the sun was up, they were scorched; and because they had no root, they withered away.</VERS>\r\n      <VERS vnumber=\"7\">And some fell among thorns; and the thorns sprung up, and choked them:</VERS>\r\n      <VERS vnumber=\"8\">But other fell into good ground, and brought forth fruit, some an hundredfold, some sixtyfold, some thirtyfold.</VERS>\r\n      <VERS vnumber=\"9\">Who hath ears to hear, let him hear.</VERS>\r\n      <VERS vnumber=\"10\">And the disciples came, and said unto him, Why speakest thou unto them in parables?</VERS>\r\n      <VERS vnumber=\"11\">He 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.</VERS>\r\n      <VERS vnumber=\"12\">For 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.</VERS>\r\n      <VERS vnumber=\"13\">Therefore speak I to them in parables: because they seeing see not; and hearing they hear not, neither do they understand.</VERS>\r\n      <VERS vnumber=\"14\">And 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:</VERS>\r\n      <VERS vnumber=\"15\">For 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.</VERS>\r\n      <VERS vnumber=\"16\">But blessed are your eyes, for they see: and your ears, for they hear.</VERS>\r\n      <VERS vnumber=\"17\">For 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.</VERS>\r\n      <VERS vnumber=\"18\">Hear ye therefore the parable of the sower.</VERS>\r\n      <VERS vnumber=\"19\">When 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.</VERS>\r\n      <VERS vnumber=\"20\">But he that received the seed into stony places, the same is he that heareth the word, and anon with joy receiveth it;</VERS>\r\n      <VERS vnumber=\"21\">Yet 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.</VERS>\r\n      <VERS vnumber=\"22\">He 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.</VERS>\r\n      <VERS vnumber=\"23\">But 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.</VERS>\r\n      <VERS vnumber=\"24\">Another parable put he forth unto them, saying, The kingdom of heaven is likened unto a man which sowed good seed in his field:</VERS>\r\n      <VERS vnumber=\"25\">But while men slept, his enemy came and sowed tares among the wheat, and went his way.</VERS>\r\n      <VERS vnumber=\"26\">But when the blade was sprung up, and brought forth fruit, then appeared the tares also.</VERS>\r\n      <VERS vnumber=\"27\">So 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?</VERS>\r\n      <VERS vnumber=\"28\">He said unto them, An enemy hath done this. The servants said unto him, Wilt thou then that we go and gather them up?</VERS>\r\n      <VERS vnumber=\"29\">But he said, Nay; lest while ye gather up the tares, ye root up also the wheat with them.</VERS>\r\n      <VERS vnumber=\"30\">Let 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.</VERS>\r\n      <VERS vnumber=\"31\">Another 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:</VERS>\r\n      <VERS vnumber=\"32\">Which 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.</VERS>\r\n      <VERS vnumber=\"33\">Another 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.</VERS>\r\n      <VERS vnumber=\"34\">All these things spake Jesus unto the multitude in parables; and without a parable spake he not unto them:</VERS>\r\n      <VERS vnumber=\"35\">That 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.</VERS>\r\n      <VERS vnumber=\"36\">Then 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.</VERS>\r\n      <VERS vnumber=\"37\">He answered and said unto them, He that soweth the good seed is the Son of man;</VERS>\r\n      <VERS vnumber=\"38\">The field is the world; the good seed are the children of the kingdom; but the tares are the children of the wicked one;</VERS>\r\n      <VERS vnumber=\"39\">The enemy that sowed them is the devil; the harvest is the end of the world; and the reapers are the angels.</VERS>\r\n      <VERS vnumber=\"40\">As therefore the tares are gathered and burned in the fire; so shall it be in the end of this world.</VERS>\r\n      <VERS vnumber=\"41\">The 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;</VERS>\r\n      <VERS vnumber=\"42\">And shall cast them into a furnace of fire: there shall be wailing and gnashing of teeth.</VERS>\r\n      <VERS vnumber=\"43\">Then shall the righteous shine forth as the sun in the kingdom of their Father. Who hath ears to hear, let him hear.</VERS>\r\n      <VERS vnumber=\"44\">Again, 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.</VERS>\r\n      <VERS vnumber=\"45\">Again, the kingdom of heaven is like unto a merchant man, seeking goodly pearls:</VERS>\r\n      <VERS vnumber=\"46\">Who, when he had found one pearl of great price, went and sold all that he had, and bought it.</VERS>\r\n      <VERS vnumber=\"47\">Again, the kingdom of heaven is like unto a net, that was cast into the sea, and gathered of every kind:</VERS>\r\n      <VERS vnumber=\"48\">Which, when it was full, they drew to shore, and sat down, and gathered the good into vessels, but cast the bad away.</VERS>\r\n      <VERS vnumber=\"49\">So shall it be at the end of the world: the angels shall come forth, and sever the wicked from among the just,</VERS>\r\n      <VERS vnumber=\"50\">And shall cast them into the furnace of fire: there shall be wailing and gnashing of teeth.</VERS>\r\n      <VERS vnumber=\"51\">Jesus saith unto them, Have ye understood all these things? They say unto him, Yea, Lord.</VERS>\r\n      <VERS vnumber=\"52\">Then 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.</VERS>\r\n      <VERS vnumber=\"53\">And it came to pass, that when Jesus had finished these parables, he departed thence.</VERS>\r\n      <VERS vnumber=\"54\">And 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?</VERS>\r\n      <VERS vnumber=\"55\">Is not this the carpenter's son? is not his mother called Mary? and his brethren, James, and Joses, and Simon, and Judas?</VERS>\r\n      <VERS vnumber=\"56\">And his sisters, are they not all with us? Whence then hath this man all these things?</VERS>\r\n      <VERS vnumber=\"57\">And 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.</VERS>\r\n      <VERS vnumber=\"58\">And he did not many mighty works there because of their unbelief.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">At that time Herod the tetrarch heard of the fame of Jesus,</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">For Herod had laid hold on John, and bound him, and put him in prison for Herodias' sake, his brother Philip's wife.</VERS>\r\n      <VERS vnumber=\"4\">For John said unto him, It is not lawful for thee to have her.</VERS>\r\n      <VERS vnumber=\"5\">And when he would have put him to death, he feared the multitude, because they counted him as a prophet.</VERS>\r\n      <VERS vnumber=\"6\">But when Herod's birthday was kept, the daughter of Herodias danced before them, and pleased Herod.</VERS>\r\n      <VERS vnumber=\"7\">Whereupon he promised with an oath to give her whatsoever she would ask.</VERS>\r\n      <VERS vnumber=\"8\">And she, being before instructed of her mother, said, Give me here John Baptist's head in a charger.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And he sent, and beheaded John in the prison.</VERS>\r\n      <VERS vnumber=\"11\">And his head was brought in a charger, and given to the damsel: and she brought it to her mother.</VERS>\r\n      <VERS vnumber=\"12\">And his disciples came, and took up the body, and buried it, and went and told Jesus.</VERS>\r\n      <VERS vnumber=\"13\">When 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.</VERS>\r\n      <VERS vnumber=\"14\">And Jesus went forth, and saw a great multitude, and was moved with compassion toward them, and he healed their sick.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">But Jesus said unto them, They need not depart; give ye them to eat.</VERS>\r\n      <VERS vnumber=\"17\">And they say unto him, We have here but five loaves, and two fishes.</VERS>\r\n      <VERS vnumber=\"18\">He said, Bring them hither to me.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And they did all eat, and were filled: and they took up of the fragments that remained twelve baskets full.</VERS>\r\n      <VERS vnumber=\"21\">And they that had eaten were about five thousand men, beside women and children.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">But the ship was now in the midst of the sea, tossed with waves: for the wind was contrary.</VERS>\r\n      <VERS vnumber=\"25\">And in the fourth watch of the night Jesus went unto them, walking on the sea.</VERS>\r\n      <VERS vnumber=\"26\">And when the disciples saw him walking on the sea, they were troubled, saying, It is a spirit; and they cried out for fear.</VERS>\r\n      <VERS vnumber=\"27\">But straightway Jesus spake unto them, saying, Be of good cheer; it is I; be not afraid.</VERS>\r\n      <VERS vnumber=\"28\">And Peter answered him and said, Lord, if it be thou, bid me come unto thee on the water.</VERS>\r\n      <VERS vnumber=\"29\">And he said, Come. And when Peter was come down out of the ship, he walked on the water, to go to Jesus.</VERS>\r\n      <VERS vnumber=\"30\">But when he saw the wind boisterous, he was afraid; and beginning to sink, he cried, saying, Lord, save me.</VERS>\r\n      <VERS vnumber=\"31\">And immediately Jesus stretched forth his hand, and caught him, and said unto him, O thou of little faith, wherefore didst thou doubt?</VERS>\r\n      <VERS vnumber=\"32\">And when they were come into the ship, the wind ceased.</VERS>\r\n      <VERS vnumber=\"33\">Then they that were in the ship came and worshipped him, saying, Of a truth thou art the Son of God.</VERS>\r\n      <VERS vnumber=\"34\">And when they were gone over, they came into the land of Gennesaret.</VERS>\r\n      <VERS vnumber=\"35\">And 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;</VERS>\r\n      <VERS vnumber=\"36\">And besought him that they might only touch the hem of his garment: and as many as touched were made perfectly whole.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">Then came to Jesus scribes and Pharisees, which were of Jerusalem, saying,</VERS>\r\n      <VERS vnumber=\"2\">Why do thy disciples transgress the tradition of the elders? for they wash not their hands when they eat bread.</VERS>\r\n      <VERS vnumber=\"3\">But he answered and said unto them, Why do ye also transgress the commandment of God by your tradition?</VERS>\r\n      <VERS vnumber=\"4\">For God commanded, saying, Honour thy father and mother: and, He that curseth father or mother, let him die the death.</VERS>\r\n      <VERS vnumber=\"5\">But ye say, Whosoever shall say to his father or his mother, It is a gift, by whatsoever thou mightest be profited by me;</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">Ye hypocrites, well did Esaias prophesy of you, saying,</VERS>\r\n      <VERS vnumber=\"8\">This people draweth nigh unto me with their mouth, and honoureth me with their lips; but their heart is far from me.</VERS>\r\n      <VERS vnumber=\"9\">But in vain they do worship me, teaching for doctrines the commandments of men.</VERS>\r\n      <VERS vnumber=\"10\">And he called the multitude, and said unto them, Hear, and understand:</VERS>\r\n      <VERS vnumber=\"11\">Not that which goeth into the mouth defileth a man; but that which cometh out of the mouth, this defileth a man.</VERS>\r\n      <VERS vnumber=\"12\">Then came his disciples, and said unto him, Knowest thou that the Pharisees were offended, after they heard this saying?</VERS>\r\n      <VERS vnumber=\"13\">But he answered and said, Every plant, which my heavenly Father hath not planted, shall be rooted up.</VERS>\r\n      <VERS vnumber=\"14\">Let them alone: they be blind leaders of the blind. And if the blind lead the blind, both shall fall into the ditch.</VERS>\r\n      <VERS vnumber=\"15\">Then answered Peter and said unto him, Declare unto us this parable.</VERS>\r\n      <VERS vnumber=\"16\">And Jesus said, Are ye also yet without understanding?</VERS>\r\n      <VERS vnumber=\"17\">Do not ye yet understand, that whatsoever entereth in at the mouth goeth into the belly, and is cast out into the draught?</VERS>\r\n      <VERS vnumber=\"18\">But those things which proceed out of the mouth come forth from the heart; and they defile the man.</VERS>\r\n      <VERS vnumber=\"19\">For out of the heart proceed evil thoughts, murders, adulteries, fornications, thefts, false witness, blasphemies:</VERS>\r\n      <VERS vnumber=\"20\">These are the things which defile a man: but to eat with unwashen hands defileth not a man.</VERS>\r\n      <VERS vnumber=\"21\">Then Jesus went thence, and departed into the coasts of Tyre and Sidon.</VERS>\r\n      <VERS vnumber=\"22\">And, 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.</VERS>\r\n      <VERS vnumber=\"23\">But he answered her not a word. And his disciples came and besought him, saying, Send her away; for she crieth after us.</VERS>\r\n      <VERS vnumber=\"24\">But he answered and said, I am not sent but unto the lost sheep of the house of Israel.</VERS>\r\n      <VERS vnumber=\"25\">Then came she and worshipped him, saying, Lord, help me.</VERS>\r\n      <VERS vnumber=\"26\">But he answered and said, It is not meet to take the children's bread, and to cast it to dogs.</VERS>\r\n      <VERS vnumber=\"27\">And she said, Truth, Lord: yet the dogs eat of the crumbs which fall from their masters' table.</VERS>\r\n      <VERS vnumber=\"28\">Then 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.</VERS>\r\n      <VERS vnumber=\"29\">And Jesus departed from thence, and came nigh unto the sea of Galilee; and went up into a mountain, and sat down there.</VERS>\r\n      <VERS vnumber=\"30\">And 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:</VERS>\r\n      <VERS vnumber=\"31\">Insomuch 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.</VERS>\r\n      <VERS vnumber=\"32\">Then 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.</VERS>\r\n      <VERS vnumber=\"33\">And his disciples say unto him, Whence should we have so much bread in the wilderness, as to fill so great a multitude?</VERS>\r\n      <VERS vnumber=\"34\">And Jesus saith unto them, How many loaves have ye? And they said, Seven, and a few little fishes.</VERS>\r\n      <VERS vnumber=\"35\">And he commanded the multitude to sit down on the ground.</VERS>\r\n      <VERS vnumber=\"36\">And 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.</VERS>\r\n      <VERS vnumber=\"37\">And they did all eat, and were filled: and they took up of the broken meat that was left seven baskets full.</VERS>\r\n      <VERS vnumber=\"38\">And they that did eat were four thousand men, beside women and children.</VERS>\r\n      <VERS vnumber=\"39\">And he sent away the multitude, and took ship, and came into the coasts of Magdala.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">The Pharisees also with the Sadducees came, and tempting desired him that he would shew them a sign from heaven.</VERS>\r\n      <VERS vnumber=\"2\">He answered and said unto them, When it is evening, ye say, It will be fair weather: for the sky is red.</VERS>\r\n      <VERS vnumber=\"3\">And in the morning, It will be foul weather to day: for the sky is red and lowring. O ye hypocrites, ye can discern the face of the sky; but can ye not discern the signs of the times?</VERS>\r\n      <VERS vnumber=\"4\">A 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.</VERS>\r\n      <VERS vnumber=\"5\">And when his disciples were come to the other side, they had forgotten to take bread.</VERS>\r\n      <VERS vnumber=\"6\">Then Jesus said unto them, Take heed and beware of the leaven of the Pharisees and of the Sadducees.</VERS>\r\n      <VERS vnumber=\"7\">And they reasoned among themselves, saying, It is because we have taken no bread.</VERS>\r\n      <VERS vnumber=\"8\">Which when Jesus perceived, he said unto them, O ye of little faith, why reason ye among yourselves, because ye have brought no bread?</VERS>\r\n      <VERS vnumber=\"9\">Do ye not yet understand, neither remember the five loaves of the five thousand, and how many baskets ye took up?</VERS>\r\n      <VERS vnumber=\"10\">Neither the seven loaves of the four thousand, and how many baskets ye took up?</VERS>\r\n      <VERS vnumber=\"11\">How 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?</VERS>\r\n      <VERS vnumber=\"12\">Then 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.</VERS>\r\n      <VERS vnumber=\"13\">When Jesus came into the coasts of Caesarea Philippi, he asked his disciples, saying, Whom do men say that I the Son of man am?</VERS>\r\n      <VERS vnumber=\"14\">And they said, Some say that thou art John the Baptist: some, Elias; and others, Jeremias, or one of the prophets.</VERS>\r\n      <VERS vnumber=\"15\">He saith unto them, But whom say ye that I am?</VERS>\r\n      <VERS vnumber=\"16\">And Simon Peter answered and said, Thou art the Christ, the Son of the living God.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">Then charged he his disciples that they should tell no man that he was Jesus the Christ.</VERS>\r\n      <VERS vnumber=\"21\">From 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.</VERS>\r\n      <VERS vnumber=\"22\">Then Peter took him, and began to rebuke him, saying, Be it far from thee, Lord: this shall not be unto thee.</VERS>\r\n      <VERS vnumber=\"23\">But 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.</VERS>\r\n      <VERS vnumber=\"24\">Then said Jesus unto his disciples, If any man will come after me, let him deny himself, and take up his cross, and follow me.</VERS>\r\n      <VERS vnumber=\"25\">For whosoever will save his life shall lose it: and whosoever will lose his life for my sake shall find it.</VERS>\r\n      <VERS vnumber=\"26\">For 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?</VERS>\r\n      <VERS vnumber=\"27\">For 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.</VERS>\r\n      <VERS vnumber=\"28\">Verily 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"17\">\r\n      <VERS vnumber=\"1\">And after six days Jesus taketh Peter, James, and John his brother, and bringeth them up into an high mountain apart,</VERS>\r\n      <VERS vnumber=\"2\">And was transfigured before them: and his face did shine as the sun, and his raiment was white as the light.</VERS>\r\n      <VERS vnumber=\"3\">And, behold, there appeared unto them Moses and Elias talking with him.</VERS>\r\n      <VERS vnumber=\"4\">Then 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.</VERS>\r\n      <VERS vnumber=\"5\">While 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.</VERS>\r\n      <VERS vnumber=\"6\">And when the disciples heard it, they fell on their face, and were sore afraid.</VERS>\r\n      <VERS vnumber=\"7\">And Jesus came and touched them, and said, Arise, and be not afraid.</VERS>\r\n      <VERS vnumber=\"8\">And when they had lifted up their eyes, they saw no man, save Jesus only.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And his disciples asked him, saying, Why then say the scribes that Elias must first come?</VERS>\r\n      <VERS vnumber=\"11\">And Jesus answered and said unto them, Elias truly shall first come, and restore all things.</VERS>\r\n      <VERS vnumber=\"12\">But 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.</VERS>\r\n      <VERS vnumber=\"13\">Then the disciples understood that he spake unto them of John the Baptist.</VERS>\r\n      <VERS vnumber=\"14\">And when they were come to the multitude, there came to him a certain man, kneeling down to him, and saying,</VERS>\r\n      <VERS vnumber=\"15\">Lord, have mercy on my son: for he is lunatick, and sore vexed: for ofttimes he falleth into the fire, and oft into the water.</VERS>\r\n      <VERS vnumber=\"16\">And I brought him to thy disciples, and they could not cure him.</VERS>\r\n      <VERS vnumber=\"17\">Then 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.</VERS>\r\n      <VERS vnumber=\"18\">And Jesus rebuked the devil; and he departed out of him: and the child was cured from that very hour.</VERS>\r\n      <VERS vnumber=\"19\">Then came the disciples to Jesus apart, and said, Why could not we cast him out?</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">Howbeit this kind goeth not out but by prayer and fasting.</VERS>\r\n      <VERS vnumber=\"22\">And while they abode in Galilee, Jesus said unto them, The Son of man shall be betrayed into the hands of men:</VERS>\r\n      <VERS vnumber=\"23\">And they shall kill him, and the third day he shall be raised again. And they were exceeding sorry.</VERS>\r\n      <VERS vnumber=\"24\">And when they were come to Capernaum, they that received tribute money came to Peter, and said, Doth not your master pay tribute?</VERS>\r\n      <VERS vnumber=\"25\">He 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?</VERS>\r\n      <VERS vnumber=\"26\">Peter saith unto him, Of strangers. Jesus saith unto him, Then are the children free.</VERS>\r\n      <VERS vnumber=\"27\">Notwithstanding, 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"18\">\r\n      <VERS vnumber=\"1\">At the same time came the disciples unto Jesus, saying, Who is the greatest in the kingdom of heaven?</VERS>\r\n      <VERS vnumber=\"2\">And Jesus called a little child unto him, and set him in the midst of them,</VERS>\r\n      <VERS vnumber=\"3\">And said, Verily I say unto you, Except ye be converted, and become as little children, ye shall not enter into the kingdom of heaven.</VERS>\r\n      <VERS vnumber=\"4\">Whosoever therefore shall humble himself as this little child, the same is greatest in the kingdom of heaven.</VERS>\r\n      <VERS vnumber=\"5\">And whoso shall receive one such little child in my name receiveth me.</VERS>\r\n      <VERS vnumber=\"6\">But 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.</VERS>\r\n      <VERS vnumber=\"7\">Woe unto the world because of offences! for it must needs be that offences come; but woe to that man by whom the offence cometh!</VERS>\r\n      <VERS vnumber=\"8\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">Take 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.</VERS>\r\n      <VERS vnumber=\"11\">For the Son of man is come to save that which was lost.</VERS>\r\n      <VERS vnumber=\"12\">How 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?</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">Even so it is not the will of your Father which is in heaven, that one of these little ones should perish.</VERS>\r\n      <VERS vnumber=\"15\">Moreover 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.</VERS>\r\n      <VERS vnumber=\"16\">But 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">Verily 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.</VERS>\r\n      <VERS vnumber=\"19\">Again 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.</VERS>\r\n      <VERS vnumber=\"20\">For where two or three are gathered together in my name, there am I in the midst of them.</VERS>\r\n      <VERS vnumber=\"21\">Then came Peter to him, and said, Lord, how oft shall my brother sin against me, and I forgive him? till seven times?</VERS>\r\n      <VERS vnumber=\"22\">Jesus saith unto him, I say not unto thee, Until seven times: but, Until seventy times seven.</VERS>\r\n      <VERS vnumber=\"23\">Therefore is the kingdom of heaven likened unto a certain king, which would take account of his servants.</VERS>\r\n      <VERS vnumber=\"24\">And when he had begun to reckon, one was brought unto him, which owed him ten thousand talents.</VERS>\r\n      <VERS vnumber=\"25\">But 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.</VERS>\r\n      <VERS vnumber=\"26\">The servant therefore fell down, and worshipped him, saying, Lord, have patience with me, and I will pay thee all.</VERS>\r\n      <VERS vnumber=\"27\">Then the lord of that servant was moved with compassion, and loosed him, and forgave him the debt.</VERS>\r\n      <VERS vnumber=\"28\">But 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.</VERS>\r\n      <VERS vnumber=\"29\">And his fellowservant fell down at his feet, and besought him, saying, Have patience with me, and I will pay thee all.</VERS>\r\n      <VERS vnumber=\"30\">And he would not: but went and cast him into prison, till he should pay the debt.</VERS>\r\n      <VERS vnumber=\"31\">So when his fellowservants saw what was done, they were very sorry, and came and told unto their lord all that was done.</VERS>\r\n      <VERS vnumber=\"32\">Then 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:</VERS>\r\n      <VERS vnumber=\"33\">Shouldest not thou also have had compassion on thy fellowservant, even as I had pity on thee?</VERS>\r\n      <VERS vnumber=\"34\">And his lord was wroth, and delivered him to the tormentors, till he should pay all that was due unto him.</VERS>\r\n      <VERS vnumber=\"35\">So likewise shall my heavenly Father do also unto you, if ye from your hearts forgive not every one his brother their trespasses.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"19\">\r\n      <VERS vnumber=\"1\">And it came to pass, that when Jesus had finished these sayings, he departed from Galilee, and came into the coasts of Judaea beyond Jordan;</VERS>\r\n      <VERS vnumber=\"2\">And great multitudes followed him; and he healed them there.</VERS>\r\n      <VERS vnumber=\"3\">The 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?</VERS>\r\n      <VERS vnumber=\"4\">And he answered and said unto them, Have ye not read, that he which made them at the beginning made them male and female,</VERS>\r\n      <VERS vnumber=\"5\">And said, For this cause shall a man leave father and mother, and shall cleave to his wife: and they twain shall be one flesh?</VERS>\r\n      <VERS vnumber=\"6\">Wherefore they are no more twain, but one flesh. What therefore God hath joined together, let not man put asunder.</VERS>\r\n      <VERS vnumber=\"7\">They say unto him, Why did Moses then command to give a writing of divorcement, and to put her away?</VERS>\r\n      <VERS vnumber=\"8\">He 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">His disciples say unto him, If the case of the man be so with his wife, it is not good to marry.</VERS>\r\n      <VERS vnumber=\"11\">But he said unto them, All men cannot receive this saying, save they to whom it is given.</VERS>\r\n      <VERS vnumber=\"12\">For 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.</VERS>\r\n      <VERS vnumber=\"13\">Then were there brought unto him little children, that he should put his hands on them, and pray: and the disciples rebuked them.</VERS>\r\n      <VERS vnumber=\"14\">But Jesus said, Suffer little children, and forbid them not, to come unto me: for of such is the kingdom of heaven.</VERS>\r\n      <VERS vnumber=\"15\">And he laid his hands on them, and departed thence.</VERS>\r\n      <VERS vnumber=\"16\">And, behold, one came and said unto him, Good Master, what good thing shall I do, that I may have eternal life?</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">He 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,</VERS>\r\n      <VERS vnumber=\"19\">Honour thy father and thy mother: and, Thou shalt love thy neighbour as thyself.</VERS>\r\n      <VERS vnumber=\"20\">The young man saith unto him, All these things have I kept from my youth up: what lack I yet?</VERS>\r\n      <VERS vnumber=\"21\">Jesus 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.</VERS>\r\n      <VERS vnumber=\"22\">But when the young man heard that saying, he went away sorrowful: for he had great possessions.</VERS>\r\n      <VERS vnumber=\"23\">Then said Jesus unto his disciples, Verily I say unto you, That a rich man shall hardly enter into the kingdom of heaven.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">When his disciples heard it, they were exceedingly amazed, saying, Who then can be saved?</VERS>\r\n      <VERS vnumber=\"26\">But Jesus beheld them, and said unto them, With men this is impossible; but with God all things are possible.</VERS>\r\n      <VERS vnumber=\"27\">Then answered Peter and said unto him, Behold, we have forsaken all, and followed thee; what shall we have therefore?</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">But many that are first shall be last; and the last shall be first.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"20\">\r\n      <VERS vnumber=\"1\">For 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.</VERS>\r\n      <VERS vnumber=\"2\">And when he had agreed with the labourers for a penny a day, he sent them into his vineyard.</VERS>\r\n      <VERS vnumber=\"3\">And he went out about the third hour, and saw others standing idle in the marketplace,</VERS>\r\n      <VERS vnumber=\"4\">And said unto them; Go ye also into the vineyard, and whatsoever is right I will give you. And they went their way.</VERS>\r\n      <VERS vnumber=\"5\">Again he went out about the sixth and ninth hour, and did likewise.</VERS>\r\n      <VERS vnumber=\"6\">And about the eleventh hour he went out, and found others standing idle, and saith unto them, Why stand ye here all the day idle?</VERS>\r\n      <VERS vnumber=\"7\">They 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.</VERS>\r\n      <VERS vnumber=\"8\">So 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.</VERS>\r\n      <VERS vnumber=\"9\">And when they came that were hired about the eleventh hour, they received every man a penny.</VERS>\r\n      <VERS vnumber=\"10\">But when the first came, they supposed that they should have received more; and they likewise received every man a penny.</VERS>\r\n      <VERS vnumber=\"11\">And when they had received it, they murmured against the goodman of the house,</VERS>\r\n      <VERS vnumber=\"12\">Saying, 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.</VERS>\r\n      <VERS vnumber=\"13\">But he answered one of them, and said, Friend, I do thee no wrong: didst not thou agree with me for a penny?</VERS>\r\n      <VERS vnumber=\"14\">Take that thine is, and go thy way: I will give unto this last, even as unto thee.</VERS>\r\n      <VERS vnumber=\"15\">Is it not lawful for me to do what I will with mine own? Is thine eye evil, because I am good?</VERS>\r\n      <VERS vnumber=\"16\">So the last shall be first, and the first last: for many be called, but few chosen.</VERS>\r\n      <VERS vnumber=\"17\">And Jesus going up to Jerusalem took the twelve disciples apart in the way, and said unto them,</VERS>\r\n      <VERS vnumber=\"18\">Behold, 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,</VERS>\r\n      <VERS vnumber=\"19\">And shall deliver him to the Gentiles to mock, and to scourge, and to crucify him: and the third day he shall rise again.</VERS>\r\n      <VERS vnumber=\"20\">Then came to him the mother of Zebedee's children with her sons, worshipping him, and desiring a certain thing of him.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">But 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.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And when the ten heard it, they were moved with indignation against the two brethren.</VERS>\r\n      <VERS vnumber=\"25\">But 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.</VERS>\r\n      <VERS vnumber=\"26\">But it shall not be so among you: but whosoever will be great among you, let him be your minister;</VERS>\r\n      <VERS vnumber=\"27\">And whosoever will be chief among you, let him be your servant:</VERS>\r\n      <VERS vnumber=\"28\">Even as the Son of man came not to be ministered unto, but to minister, and to give his life a ransom for many.</VERS>\r\n      <VERS vnumber=\"29\">And as they departed from Jericho, a great multitude followed him.</VERS>\r\n      <VERS vnumber=\"30\">And, 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.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n      <VERS vnumber=\"32\">And Jesus stood still, and called them, and said, What will ye that I shall do unto you?</VERS>\r\n      <VERS vnumber=\"33\">They say unto him, Lord, that our eyes may be opened.</VERS>\r\n      <VERS vnumber=\"34\">So Jesus had compassion on them, and touched their eyes: and immediately their eyes received sight, and they followed him.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"21\">\r\n      <VERS vnumber=\"1\">And when they drew nigh unto Jerusalem, and were come to Bethphage, unto the mount of Olives, then sent Jesus two disciples,</VERS>\r\n      <VERS vnumber=\"2\">Saying 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.</VERS>\r\n      <VERS vnumber=\"3\">And if any man say ought unto you, ye shall say, The Lord hath need of them; and straightway he will send them.</VERS>\r\n      <VERS vnumber=\"4\">All this was done, that it might be fulfilled which was spoken by the prophet, saying,</VERS>\r\n      <VERS vnumber=\"5\">Tell 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.</VERS>\r\n      <VERS vnumber=\"6\">And the disciples went, and did as Jesus commanded them,</VERS>\r\n      <VERS vnumber=\"7\">And brought the ass, and the colt, and put on them their clothes, and they set him thereon.</VERS>\r\n      <VERS vnumber=\"8\">And a very great multitude spread their garments in the way; others cut down branches from the trees, and strawed them in the way.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And when he was come into Jerusalem, all the city was moved, saying, Who is this?</VERS>\r\n      <VERS vnumber=\"11\">And the multitude said, This is Jesus the prophet of Nazareth of Galilee.</VERS>\r\n      <VERS vnumber=\"12\">And 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,</VERS>\r\n      <VERS vnumber=\"13\">And said unto them, It is written, My house shall be called the house of prayer; but ye have made it a den of thieves.</VERS>\r\n      <VERS vnumber=\"14\">And the blind and the lame came to him in the temple; and he healed them.</VERS>\r\n      <VERS vnumber=\"15\">And 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,</VERS>\r\n      <VERS vnumber=\"16\">And 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?</VERS>\r\n      <VERS vnumber=\"17\">And he left them, and went out of the city into Bethany; and he lodged there.</VERS>\r\n      <VERS vnumber=\"18\">Now in the morning as he returned into the city, he hungered.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And when the disciples saw it, they marvelled, saying, How soon is the fig tree withered away!</VERS>\r\n      <VERS vnumber=\"21\">Jesus 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.</VERS>\r\n      <VERS vnumber=\"22\">And all things, whatsoever ye shall ask in prayer, believing, ye shall receive.</VERS>\r\n      <VERS vnumber=\"23\">And 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?</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">The 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?</VERS>\r\n      <VERS vnumber=\"26\">But if we shall say, Of men; we fear the people; for all hold John as a prophet.</VERS>\r\n      <VERS vnumber=\"27\">And they answered Jesus, and said, We cannot tell. And he said unto them, Neither tell I you by what authority I do these things.</VERS>\r\n      <VERS vnumber=\"28\">But 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.</VERS>\r\n      <VERS vnumber=\"29\">He answered and said, I will not: but afterward he repented, and went.</VERS>\r\n      <VERS vnumber=\"30\">And he came to the second, and said likewise. And he answered and said, I go, sir: and went not.</VERS>\r\n      <VERS vnumber=\"31\">Whether 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.</VERS>\r\n      <VERS vnumber=\"32\">For 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.</VERS>\r\n      <VERS vnumber=\"33\">Hear 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:</VERS>\r\n      <VERS vnumber=\"34\">And when the time of the fruit drew near, he sent his servants to the husbandmen, that they might receive the fruits of it.</VERS>\r\n      <VERS vnumber=\"35\">And the husbandmen took his servants, and beat one, and killed another, and stoned another.</VERS>\r\n      <VERS vnumber=\"36\">Again, he sent other servants more than the first: and they did unto them likewise.</VERS>\r\n      <VERS vnumber=\"37\">But last of all he sent unto them his son, saying, They will reverence my son.</VERS>\r\n      <VERS vnumber=\"38\">But 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.</VERS>\r\n      <VERS vnumber=\"39\">And they caught him, and cast him out of the vineyard, and slew him.</VERS>\r\n      <VERS vnumber=\"40\">When the lord therefore of the vineyard cometh, what will he do unto those husbandmen?</VERS>\r\n      <VERS vnumber=\"41\">They 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.</VERS>\r\n      <VERS vnumber=\"42\">Jesus 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?</VERS>\r\n      <VERS vnumber=\"43\">Therefore say I unto you, The kingdom of God shall be taken from you, and given to a nation bringing forth the fruits thereof.</VERS>\r\n      <VERS vnumber=\"44\">And whosoever shall fall on this stone shall be broken: but on whomsoever it shall fall, it will grind him to powder.</VERS>\r\n      <VERS vnumber=\"45\">And when the chief priests and Pharisees had heard his parables, they perceived that he spake of them.</VERS>\r\n      <VERS vnumber=\"46\">But when they sought to lay hands on him, they feared the multitude, because they took him for a prophet.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"22\">\r\n      <VERS vnumber=\"1\">And Jesus answered and spake unto them again by parables, and said,</VERS>\r\n      <VERS vnumber=\"2\">The kingdom of heaven is like unto a certain king, which made a marriage for his son,</VERS>\r\n      <VERS vnumber=\"3\">And sent forth his servants to call them that were bidden to the wedding: and they would not come.</VERS>\r\n      <VERS vnumber=\"4\">Again, 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.</VERS>\r\n      <VERS vnumber=\"5\">But they made light of it, and went their ways, one to his farm, another to his merchandise:</VERS>\r\n      <VERS vnumber=\"6\">And the remnant took his servants, and entreated them spitefully, and slew them.</VERS>\r\n      <VERS vnumber=\"7\">But when the king heard thereof, he was wroth: and he sent forth his armies, and destroyed those murderers, and burned up their city.</VERS>\r\n      <VERS vnumber=\"8\">Then saith he to his servants, The wedding is ready, but they which were bidden were not worthy.</VERS>\r\n      <VERS vnumber=\"9\">Go ye therefore into the highways, and as many as ye shall find, bid to the marriage.</VERS>\r\n      <VERS vnumber=\"10\">So 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.</VERS>\r\n      <VERS vnumber=\"11\">And when the king came in to see the guests, he saw there a man which had not on a wedding garment:</VERS>\r\n      <VERS vnumber=\"12\">And he saith unto him, Friend, how camest thou in hither not having a wedding garment? And he was speechless.</VERS>\r\n      <VERS vnumber=\"13\">Then 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.</VERS>\r\n      <VERS vnumber=\"14\">For many are called, but few are chosen.</VERS>\r\n      <VERS vnumber=\"15\">Then went the Pharisees, and took counsel how they might entangle him in his talk.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">Tell us therefore, What thinkest thou? Is it lawful to give tribute unto Caesar, or not?</VERS>\r\n      <VERS vnumber=\"18\">But Jesus perceived their wickedness, and said, Why tempt ye me, ye hypocrites?</VERS>\r\n      <VERS vnumber=\"19\">Shew me the tribute money. And they brought unto him a penny.</VERS>\r\n      <VERS vnumber=\"20\">And he saith unto them, Whose is this image and superscription?</VERS>\r\n      <VERS vnumber=\"21\">They 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.</VERS>\r\n      <VERS vnumber=\"22\">When they had heard these words, they marvelled, and left him, and went their way.</VERS>\r\n      <VERS vnumber=\"23\">The same day came to him the Sadducees, which say that there is no resurrection, and asked him,</VERS>\r\n      <VERS vnumber=\"24\">Saying, Master, Moses said, If a man die, having no children, his brother shall marry his wife, and raise up seed unto his brother.</VERS>\r\n      <VERS vnumber=\"25\">Now 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:</VERS>\r\n      <VERS vnumber=\"26\">Likewise the second also, and the third, unto the seventh.</VERS>\r\n      <VERS vnumber=\"27\">And last of all the woman died also.</VERS>\r\n      <VERS vnumber=\"28\">Therefore in the resurrection whose wife shall she be of the seven? for they all had her.</VERS>\r\n      <VERS vnumber=\"29\">Jesus answered and said unto them, Ye do err, not knowing the scriptures, nor the power of God.</VERS>\r\n      <VERS vnumber=\"30\">For in the resurrection they neither marry, nor are given in marriage, but are as the angels of God in heaven.</VERS>\r\n      <VERS vnumber=\"31\">But as touching the resurrection of the dead, have ye not read that which was spoken unto you by God, saying,</VERS>\r\n      <VERS vnumber=\"32\">I 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.</VERS>\r\n      <VERS vnumber=\"33\">And when the multitude heard this, they were astonished at his doctrine.</VERS>\r\n      <VERS vnumber=\"34\">But when the Pharisees had heard that he had put the Sadducees to silence, they were gathered together.</VERS>\r\n      <VERS vnumber=\"35\">Then one of them, which was a lawyer, asked him a question, tempting him, and saying,</VERS>\r\n      <VERS vnumber=\"36\">Master, which is the great commandment in the law?</VERS>\r\n      <VERS vnumber=\"37\">Jesus said unto him, Thou shalt love the Lord thy God with all thy heart, and with all thy soul, and with all thy mind.</VERS>\r\n      <VERS vnumber=\"38\">This is the first and great commandment.</VERS>\r\n      <VERS vnumber=\"39\">And the second is like unto it, Thou shalt love thy neighbour as thyself.</VERS>\r\n      <VERS vnumber=\"40\">On these two commandments hang all the law and the prophets.</VERS>\r\n      <VERS vnumber=\"41\">While the Pharisees were gathered together, Jesus asked them,</VERS>\r\n      <VERS vnumber=\"42\">Saying, What think ye of Christ? whose son is he? They say unto him, The Son of David.</VERS>\r\n      <VERS vnumber=\"43\">He saith unto them, How then doth David in spirit call him Lord, saying,</VERS>\r\n      <VERS vnumber=\"44\">The LORD said unto my Lord, Sit thou on my right hand, till I make thine enemies thy footstool?</VERS>\r\n      <VERS vnumber=\"45\">If David then call him Lord, how is he his son?</VERS>\r\n      <VERS vnumber=\"46\">And no man was able to answer him a word, neither durst any man from that day forth ask him any more questions.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"23\">\r\n      <VERS vnumber=\"1\">Then spake Jesus to the multitude, and to his disciples,</VERS>\r\n      <VERS vnumber=\"2\">Saying, The scribes and the Pharisees sit in Moses' seat:</VERS>\r\n      <VERS vnumber=\"3\">All therefore whatsoever they bid you observe, that observe and do; but do not ye after their works: for they say, and do not.</VERS>\r\n      <VERS vnumber=\"4\">For 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.</VERS>\r\n      <VERS vnumber=\"5\">But all their works they do for to be seen of men: they make broad their phylacteries, and enlarge the borders of their garments,</VERS>\r\n      <VERS vnumber=\"6\">And love the uppermost rooms at feasts, and the chief seats in the synagogues,</VERS>\r\n      <VERS vnumber=\"7\">And greetings in the markets, and to be called of men, Rabbi, Rabbi.</VERS>\r\n      <VERS vnumber=\"8\">But be not ye called Rabbi: for one is your Master, even Christ; and all ye are brethren.</VERS>\r\n      <VERS vnumber=\"9\">And call no man your father upon the earth: for one is your Father, which is in heaven.</VERS>\r\n      <VERS vnumber=\"10\">Neither be ye called masters: for one is your Master, even Christ.</VERS>\r\n      <VERS vnumber=\"11\">But he that is greatest among you shall be your servant.</VERS>\r\n      <VERS vnumber=\"12\">And whosoever shall exalt himself shall be abased; and he that shall humble himself shall be exalted.</VERS>\r\n      <VERS vnumber=\"13\">But 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.</VERS>\r\n      <VERS vnumber=\"14\">Woe 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.</VERS>\r\n      <VERS vnumber=\"15\">Woe 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.</VERS>\r\n      <VERS vnumber=\"16\">Woe 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!</VERS>\r\n      <VERS vnumber=\"17\">Ye fools and blind: for whether is greater, the gold, or the temple that sanctifieth the gold?</VERS>\r\n      <VERS vnumber=\"18\">And, Whosoever shall swear by the altar, it is nothing; but whosoever sweareth by the gift that is upon it, he is guilty.</VERS>\r\n      <VERS vnumber=\"19\">Ye fools and blind: for whether is greater, the gift, or the altar that sanctifieth the gift?</VERS>\r\n      <VERS vnumber=\"20\">Whoso therefore shall swear by the altar, sweareth by it, and by all things thereon.</VERS>\r\n      <VERS vnumber=\"21\">And whoso shall swear by the temple, sweareth by it, and by him that dwelleth therein.</VERS>\r\n      <VERS vnumber=\"22\">And he that shall swear by heaven, sweareth by the throne of God, and by him that sitteth thereon.</VERS>\r\n      <VERS vnumber=\"23\">Woe 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.</VERS>\r\n      <VERS vnumber=\"24\">Ye blind guides, which strain at a gnat, and swallow a camel.</VERS>\r\n      <VERS vnumber=\"25\">Woe 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.</VERS>\r\n      <VERS vnumber=\"26\">Thou blind Pharisee, cleanse first that which is within the cup and platter, that the outside of them may be clean also.</VERS>\r\n      <VERS vnumber=\"27\">Woe 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.</VERS>\r\n      <VERS vnumber=\"28\">Even so ye also outwardly appear righteous unto men, but within ye are full of hypocrisy and iniquity.</VERS>\r\n      <VERS vnumber=\"29\">Woe unto you, scribes and Pharisees, hypocrites! because ye build the tombs of the prophets, and garnish the sepulchres of the righteous,</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">Wherefore ye be witnesses unto yourselves, that ye are the children of them which killed the prophets.</VERS>\r\n      <VERS vnumber=\"32\">Fill ye up then the measure of your fathers.</VERS>\r\n      <VERS vnumber=\"33\">Ye serpents, ye generation of vipers, how can ye escape the damnation of hell?</VERS>\r\n      <VERS vnumber=\"34\">Wherefore, 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:</VERS>\r\n      <VERS vnumber=\"35\">That 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.</VERS>\r\n      <VERS vnumber=\"36\">Verily I say unto you, All these things shall come upon this generation.</VERS>\r\n      <VERS vnumber=\"37\">O 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!</VERS>\r\n      <VERS vnumber=\"38\">Behold, your house is left unto you desolate.</VERS>\r\n      <VERS vnumber=\"39\">For 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"24\">\r\n      <VERS vnumber=\"1\">And Jesus went out, and departed from the temple: and his disciples came to him for to shew him the buildings of the temple.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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?</VERS>\r\n      <VERS vnumber=\"4\">And Jesus answered and said unto them, Take heed that no man deceive you.</VERS>\r\n      <VERS vnumber=\"5\">For many shall come in my name, saying, I am Christ; and shall deceive many.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">For nation shall rise against nation, and kingdom against kingdom: and there shall be famines, and pestilences, and earthquakes, in divers places.</VERS>\r\n      <VERS vnumber=\"8\">All these are the beginning of sorrows.</VERS>\r\n      <VERS vnumber=\"9\">Then 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.</VERS>\r\n      <VERS vnumber=\"10\">And then shall many be offended, and shall betray one another, and shall hate one another.</VERS>\r\n      <VERS vnumber=\"11\">And many false prophets shall rise, and shall deceive many.</VERS>\r\n      <VERS vnumber=\"12\">And because iniquity shall abound, the love of many shall wax cold.</VERS>\r\n      <VERS vnumber=\"13\">But he that shall endure unto the end, the same shall be saved.</VERS>\r\n      <VERS vnumber=\"14\">And this gospel of the kingdom shall be preached in all the world for a witness unto all nations; and then shall the end come.</VERS>\r\n      <VERS vnumber=\"15\">When ye therefore shall see the abomination of desolation, spoken of by Daniel the prophet, stand in the holy place, (whoso readeth, let him understand:)</VERS>\r\n      <VERS vnumber=\"16\">Then let them which be in Judaea flee into the mountains:</VERS>\r\n      <VERS vnumber=\"17\">Let him which is on the housetop not come down to take any thing out of his house:</VERS>\r\n      <VERS vnumber=\"18\">Neither let him which is in the field return back to take his clothes.</VERS>\r\n      <VERS vnumber=\"19\">And woe unto them that are with child, and to them that give suck in those days!</VERS>\r\n      <VERS vnumber=\"20\">But pray ye that your flight be not in the winter, neither on the sabbath day:</VERS>\r\n      <VERS vnumber=\"21\">For then shall be great tribulation, such as was not since the beginning of the world to this time, no, nor ever shall be.</VERS>\r\n      <VERS vnumber=\"22\">And except those days should be shortened, there should no flesh be saved: but for the elect's sake those days shall be shortened.</VERS>\r\n      <VERS vnumber=\"23\">Then if any man shall say unto you, Lo, here is Christ, or there; believe it not.</VERS>\r\n      <VERS vnumber=\"24\">For 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.</VERS>\r\n      <VERS vnumber=\"25\">Behold, I have told you before.</VERS>\r\n      <VERS vnumber=\"26\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"27\">For 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.</VERS>\r\n      <VERS vnumber=\"28\">For wheresoever the carcase is, there will the eagles be gathered together.</VERS>\r\n      <VERS vnumber=\"29\">Immediately 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:</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n      <VERS vnumber=\"32\">Now learn a parable of the fig tree; When his branch is yet tender, and putteth forth leaves, ye know that summer is nigh:</VERS>\r\n      <VERS vnumber=\"33\">So likewise ye, when ye shall see all these things, know that it is near, even at the doors.</VERS>\r\n      <VERS vnumber=\"34\">Verily I say unto you, This generation shall not pass, till all these things be fulfilled.</VERS>\r\n      <VERS vnumber=\"35\">Heaven and earth shall pass away, but my words shall not pass away.</VERS>\r\n      <VERS vnumber=\"36\">But of that day and hour knoweth no man, no, not the angels of heaven, but my Father only.</VERS>\r\n      <VERS vnumber=\"37\">But as the days of Noe were, so shall also the coming of the Son of man be.</VERS>\r\n      <VERS vnumber=\"38\">For 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,</VERS>\r\n      <VERS vnumber=\"39\">And knew not until the flood came, and took them all away; so shall also the coming of the Son of man be.</VERS>\r\n      <VERS vnumber=\"40\">Then shall two be in the field; the one shall be taken, and the other left.</VERS>\r\n      <VERS vnumber=\"41\">Two women shall be grinding at the mill; the one shall be taken, and the other left.</VERS>\r\n      <VERS vnumber=\"42\">Watch therefore: for ye know not what hour your Lord doth come.</VERS>\r\n      <VERS vnumber=\"43\">But 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.</VERS>\r\n      <VERS vnumber=\"44\">Therefore be ye also ready: for in such an hour as ye think not the Son of man cometh.</VERS>\r\n      <VERS vnumber=\"45\">Who then is a faithful and wise servant, whom his lord hath made ruler over his household, to give them meat in due season?</VERS>\r\n      <VERS vnumber=\"46\">Blessed is that servant, whom his lord when he cometh shall find so doing.</VERS>\r\n      <VERS vnumber=\"47\">Verily I say unto you, That he shall make him ruler over all his goods.</VERS>\r\n      <VERS vnumber=\"48\">But and if that evil servant shall say in his heart, My lord delayeth his coming;</VERS>\r\n      <VERS vnumber=\"49\">And shall begin to smite his fellowservants, and to eat and drink with the drunken;</VERS>\r\n      <VERS vnumber=\"50\">The 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,</VERS>\r\n      <VERS vnumber=\"51\">And shall cut him asunder, and appoint him his portion with the hypocrites: there shall be weeping and gnashing of teeth.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"25\">\r\n      <VERS vnumber=\"1\">Then shall the kingdom of heaven be likened unto ten virgins, which took their lamps, and went forth to meet the bridegroom.</VERS>\r\n      <VERS vnumber=\"2\">And five of them were wise, and five were foolish.</VERS>\r\n      <VERS vnumber=\"3\">They that were foolish took their lamps, and took no oil with them:</VERS>\r\n      <VERS vnumber=\"4\">But the wise took oil in their vessels with their lamps.</VERS>\r\n      <VERS vnumber=\"5\">While the bridegroom tarried, they all slumbered and slept.</VERS>\r\n      <VERS vnumber=\"6\">And at midnight there was a cry made, Behold, the bridegroom cometh; go ye out to meet him.</VERS>\r\n      <VERS vnumber=\"7\">Then all those virgins arose, and trimmed their lamps.</VERS>\r\n      <VERS vnumber=\"8\">And the foolish said unto the wise, Give us of your oil; for our lamps are gone out.</VERS>\r\n      <VERS vnumber=\"9\">But 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">Afterward came also the other virgins, saying, Lord, Lord, open to us.</VERS>\r\n      <VERS vnumber=\"12\">But he answered and said, Verily I say unto you, I know you not.</VERS>\r\n      <VERS vnumber=\"13\">Watch therefore, for ye know neither the day nor the hour wherein the Son of man cometh.</VERS>\r\n      <VERS vnumber=\"14\">For the kingdom of heaven is as a man travelling into a far country, who called his own servants, and delivered unto them his goods.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">Then he that had received the five talents went and traded with the same, and made them other five talents.</VERS>\r\n      <VERS vnumber=\"17\">And likewise he that had received two, he also gained other two.</VERS>\r\n      <VERS vnumber=\"18\">But he that had received one went and digged in the earth, and hid his lord's money.</VERS>\r\n      <VERS vnumber=\"19\">After a long time the lord of those servants cometh, and reckoneth with them.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">His 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.</VERS>\r\n      <VERS vnumber=\"22\">He 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.</VERS>\r\n      <VERS vnumber=\"23\">His 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.</VERS>\r\n      <VERS vnumber=\"24\">Then 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:</VERS>\r\n      <VERS vnumber=\"25\">And I was afraid, and went and hid thy talent in the earth: lo, there thou hast that is thine.</VERS>\r\n      <VERS vnumber=\"26\">His 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:</VERS>\r\n      <VERS vnumber=\"27\">Thou oughtest therefore to have put my money to the exchangers, and then at my coming I should have received mine own with usury.</VERS>\r\n      <VERS vnumber=\"28\">Take therefore the talent from him, and give it unto him which hath ten talents.</VERS>\r\n      <VERS vnumber=\"29\">For 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.</VERS>\r\n      <VERS vnumber=\"30\">And cast ye the unprofitable servant into outer darkness: there shall be weeping and gnashing of teeth.</VERS>\r\n      <VERS vnumber=\"31\">When 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:</VERS>\r\n      <VERS vnumber=\"32\">And before him shall be gathered all nations: and he shall separate them one from another, as a shepherd divideth his sheep from the goats:</VERS>\r\n      <VERS vnumber=\"33\">And he shall set the sheep on his right hand, but the goats on the left.</VERS>\r\n      <VERS vnumber=\"34\">Then 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:</VERS>\r\n      <VERS vnumber=\"35\">For 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:</VERS>\r\n      <VERS vnumber=\"36\">Naked, and ye clothed me: I was sick, and ye visited me: I was in prison, and ye came unto me.</VERS>\r\n      <VERS vnumber=\"37\">Then shall the righteous answer him, saying, Lord, when saw we thee an hungred, and fed thee? or thirsty, and gave thee drink?</VERS>\r\n      <VERS vnumber=\"38\">When saw we thee a stranger, and took thee in? or naked, and clothed thee?</VERS>\r\n      <VERS vnumber=\"39\">Or when saw we thee sick, or in prison, and came unto thee?</VERS>\r\n      <VERS vnumber=\"40\">And 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.</VERS>\r\n      <VERS vnumber=\"41\">Then 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:</VERS>\r\n      <VERS vnumber=\"42\">For I was an hungred, and ye gave me no meat: I was thirsty, and ye gave me no drink:</VERS>\r\n      <VERS vnumber=\"43\">I was a stranger, and ye took me not in: naked, and ye clothed me not: sick, and in prison, and ye visited me not.</VERS>\r\n      <VERS vnumber=\"44\">Then 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?</VERS>\r\n      <VERS vnumber=\"45\">Then 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.</VERS>\r\n      <VERS vnumber=\"46\">And these shall go away into everlasting punishment: but the righteous into life eternal.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"26\">\r\n      <VERS vnumber=\"1\">And it came to pass, when Jesus had finished all these sayings, he said unto his disciples,</VERS>\r\n      <VERS vnumber=\"2\">Ye know that after two days is the feast of the passover, and the Son of man is betrayed to be crucified.</VERS>\r\n      <VERS vnumber=\"3\">Then 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,</VERS>\r\n      <VERS vnumber=\"4\">And consulted that they might take Jesus by subtilty, and kill him.</VERS>\r\n      <VERS vnumber=\"5\">But they said, Not on the feast day, lest there be an uproar among the people.</VERS>\r\n      <VERS vnumber=\"6\">Now when Jesus was in Bethany, in the house of Simon the leper,</VERS>\r\n      <VERS vnumber=\"7\">There came unto him a woman having an alabaster box of very precious ointment, and poured it on his head, as he sat at meat.</VERS>\r\n      <VERS vnumber=\"8\">But when his disciples saw it, they had indignation, saying, To what purpose is this waste?</VERS>\r\n      <VERS vnumber=\"9\">For this ointment might have been sold for much, and given to the poor.</VERS>\r\n      <VERS vnumber=\"10\">When Jesus understood it, he said unto them, Why trouble ye the woman? for she hath wrought a good work upon me.</VERS>\r\n      <VERS vnumber=\"11\">For ye have the poor always with you; but me ye have not always.</VERS>\r\n      <VERS vnumber=\"12\">For in that she hath poured this ointment on my body, she did it for my burial.</VERS>\r\n      <VERS vnumber=\"13\">Verily 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.</VERS>\r\n      <VERS vnumber=\"14\">Then one of the twelve, called Judas Iscariot, went unto the chief priests,</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And from that time he sought opportunity to betray him.</VERS>\r\n      <VERS vnumber=\"17\">Now 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?</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And the disciples did as Jesus had appointed them; and they made ready the passover.</VERS>\r\n      <VERS vnumber=\"20\">Now when the even was come, he sat down with the twelve.</VERS>\r\n      <VERS vnumber=\"21\">And as they did eat, he said, Verily I say unto you, that one of you shall betray me.</VERS>\r\n      <VERS vnumber=\"22\">And they were exceeding sorrowful, and began every one of them to say unto him, Lord, is it I?</VERS>\r\n      <VERS vnumber=\"23\">And he answered and said, He that dippeth his hand with me in the dish, the same shall betray me.</VERS>\r\n      <VERS vnumber=\"24\">The 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.</VERS>\r\n      <VERS vnumber=\"25\">Then Judas, which betrayed him, answered and said, Master, is it I? He said unto him, Thou hast said.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And he took the cup, and gave thanks, and gave it to them, saying, Drink ye all of it;</VERS>\r\n      <VERS vnumber=\"28\">For this is my blood of the new testament, which is shed for many for the remission of sins.</VERS>\r\n      <VERS vnumber=\"29\">But 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.</VERS>\r\n      <VERS vnumber=\"30\">And when they had sung an hymn, they went out into the mount of Olives.</VERS>\r\n      <VERS vnumber=\"31\">Then 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.</VERS>\r\n      <VERS vnumber=\"32\">But after I am risen again, I will go before you into Galilee.</VERS>\r\n      <VERS vnumber=\"33\">Peter answered and said unto him, Though all men shall be offended because of thee, yet will I never be offended.</VERS>\r\n      <VERS vnumber=\"34\">Jesus said unto him, Verily I say unto thee, That this night, before the cock crow, thou shalt deny me thrice.</VERS>\r\n      <VERS vnumber=\"35\">Peter said unto him, Though I should die with thee, yet will I not deny thee. Likewise also said all the disciples.</VERS>\r\n      <VERS vnumber=\"36\">Then cometh Jesus with them unto a place called Gethsemane, and saith unto the disciples, Sit ye here, while I go and pray yonder.</VERS>\r\n      <VERS vnumber=\"37\">And he took with him Peter and the two sons of Zebedee, and began to be sorrowful and very heavy.</VERS>\r\n      <VERS vnumber=\"38\">Then saith he unto them, My soul is exceeding sorrowful, even unto death: tarry ye here, and watch with me.</VERS>\r\n      <VERS vnumber=\"39\">And he went a little further, 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.</VERS>\r\n      <VERS vnumber=\"40\">And he cometh unto the disciples, and findeth them asleep, and saith unto Peter, What, could ye not watch with me one hour?</VERS>\r\n      <VERS vnumber=\"41\">Watch and pray, that ye enter not into temptation: the spirit indeed is willing, but the flesh is weak.</VERS>\r\n      <VERS vnumber=\"42\">He 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.</VERS>\r\n      <VERS vnumber=\"43\">And he came and found them asleep again: for their eyes were heavy.</VERS>\r\n      <VERS vnumber=\"44\">And he left them, and went away again, and prayed the third time, saying the same words.</VERS>\r\n      <VERS vnumber=\"45\">Then 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.</VERS>\r\n      <VERS vnumber=\"46\">Rise, let us be going: behold, he is at hand that doth betray me.</VERS>\r\n      <VERS vnumber=\"47\">And 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.</VERS>\r\n      <VERS vnumber=\"48\">Now he that betrayed him gave them a sign, saying, Whomsoever I shall kiss, that same is he: hold him fast.</VERS>\r\n      <VERS vnumber=\"49\">And forthwith he came to Jesus, and said, Hail, master; and kissed him.</VERS>\r\n      <VERS vnumber=\"50\">And Jesus said unto him, Friend, wherefore art thou come? Then came they, and laid hands on Jesus, and took him.</VERS>\r\n      <VERS vnumber=\"51\">And, 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.</VERS>\r\n      <VERS vnumber=\"52\">Then said Jesus unto him, Put up again thy sword into his place: for all they that take the sword shall perish with the sword.</VERS>\r\n      <VERS vnumber=\"53\">Thinkest thou that I cannot now pray to my Father, and he shall presently give me more than twelve legions of angels?</VERS>\r\n      <VERS vnumber=\"54\">But how then shall the scriptures be fulfilled, that thus it must be?</VERS>\r\n      <VERS vnumber=\"55\">In 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.</VERS>\r\n      <VERS vnumber=\"56\">But all this was done, that the scriptures of the prophets might be fulfilled. Then all the disciples forsook him, and fled.</VERS>\r\n      <VERS vnumber=\"57\">And they that had laid hold on Jesus led him away to Caiaphas the high priest, where the scribes and the elders were assembled.</VERS>\r\n      <VERS vnumber=\"58\">But Peter followed him afar off unto the high priest's palace, and went in, and sat with the servants, to see the end.</VERS>\r\n      <VERS vnumber=\"59\">Now the chief priests, and elders, and all the council, sought false witness against Jesus, to put him to death;</VERS>\r\n      <VERS vnumber=\"60\">But found none: yea, though many false witnesses came, yet found they none. At the last came two false witnesses,</VERS>\r\n      <VERS vnumber=\"61\">And said, This fellow said, I am able to destroy the temple of God, and to build it in three days.</VERS>\r\n      <VERS vnumber=\"62\">And the high priest arose, and said unto him, Answerest thou nothing? what is it which these witness against thee?</VERS>\r\n      <VERS vnumber=\"63\">But 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.</VERS>\r\n      <VERS vnumber=\"64\">Jesus 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.</VERS>\r\n      <VERS vnumber=\"65\">Then 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.</VERS>\r\n      <VERS vnumber=\"66\">What think ye? They answered and said, He is guilty of death.</VERS>\r\n      <VERS vnumber=\"67\">Then did they spit in his face, and buffeted him; and others smote him with the palms of their hands,</VERS>\r\n      <VERS vnumber=\"68\">Saying, Prophesy unto us, thou Christ, Who is he that smote thee?</VERS>\r\n      <VERS vnumber=\"69\">Now Peter sat without in the palace: and a damsel came unto him, saying, Thou also wast with Jesus of Galilee.</VERS>\r\n      <VERS vnumber=\"70\">But he denied before them all, saying, I know not what thou sayest.</VERS>\r\n      <VERS vnumber=\"71\">And 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.</VERS>\r\n      <VERS vnumber=\"72\">And again he denied with an oath, I do not know the man.</VERS>\r\n      <VERS vnumber=\"73\">And 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.</VERS>\r\n      <VERS vnumber=\"74\">Then began he to curse and to swear, saying, I know not the man. And immediately the cock crew.</VERS>\r\n      <VERS vnumber=\"75\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"27\">\r\n      <VERS vnumber=\"1\">When the morning was come, all the chief priests and elders of the people took counsel against Jesus to put him to death:</VERS>\r\n      <VERS vnumber=\"2\">And when they had bound him, they led him away, and delivered him to Pontius Pilate the governor.</VERS>\r\n      <VERS vnumber=\"3\">Then 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,</VERS>\r\n      <VERS vnumber=\"4\">Saying, I have sinned in that I have betrayed the innocent blood. And they said, What is that to us? see thou to that.</VERS>\r\n      <VERS vnumber=\"5\">And he cast down the pieces of silver in the temple, and departed, and went and hanged himself.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And they took counsel, and bought with them the potter's field, to bury strangers in.</VERS>\r\n      <VERS vnumber=\"8\">Wherefore that field was called, The field of blood, unto this day.</VERS>\r\n      <VERS vnumber=\"9\">Then 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;</VERS>\r\n      <VERS vnumber=\"10\">And gave them for the potter's field, as the Lord appointed me.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And when he was accused of the chief priests and elders, he answered nothing.</VERS>\r\n      <VERS vnumber=\"13\">Then said Pilate unto him, Hearest thou not how many things they witness against thee?</VERS>\r\n      <VERS vnumber=\"14\">And he answered him to never a word; insomuch that the governor marvelled greatly.</VERS>\r\n      <VERS vnumber=\"15\">Now at that feast the governor was wont to release unto the people a prisoner, whom they would.</VERS>\r\n      <VERS vnumber=\"16\">And they had then a notable prisoner, called Barabbas.</VERS>\r\n      <VERS vnumber=\"17\">Therefore when they were gathered together, Pilate said unto them, Whom will ye that I release unto you? Barabbas, or Jesus which is called Christ?</VERS>\r\n      <VERS vnumber=\"18\">For he knew that for envy they had delivered him.</VERS>\r\n      <VERS vnumber=\"19\">When 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.</VERS>\r\n      <VERS vnumber=\"20\">But the chief priests and elders persuaded the multitude that they should ask Barabbas, and destroy Jesus.</VERS>\r\n      <VERS vnumber=\"21\">The governor answered and said unto them, Whether of the twain will ye that I release unto you? They said, Barabbas.</VERS>\r\n      <VERS vnumber=\"22\">Pilate saith unto them, What shall I do then with Jesus which is called Christ? They all say unto him, Let him be crucified.</VERS>\r\n      <VERS vnumber=\"23\">And the governor said, Why, what evil hath he done? But they cried out the more, saying, Let him be crucified.</VERS>\r\n      <VERS vnumber=\"24\">When 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.</VERS>\r\n      <VERS vnumber=\"25\">Then answered all the people, and said, His blood be on us, and on our children.</VERS>\r\n      <VERS vnumber=\"26\">Then released he Barabbas unto them: and when he had scourged Jesus, he delivered him to be crucified.</VERS>\r\n      <VERS vnumber=\"27\">Then the soldiers of the governor took Jesus into the common hall, and gathered unto him the whole band of soldiers.</VERS>\r\n      <VERS vnumber=\"28\">And they stripped him, and put on him a scarlet robe.</VERS>\r\n      <VERS vnumber=\"29\">And 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!</VERS>\r\n      <VERS vnumber=\"30\">And they spit upon him, and took the reed, and smote him on the head.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n      <VERS vnumber=\"32\">And as they came out, they found a man of Cyrene, Simon by name: him they compelled to bear his cross.</VERS>\r\n      <VERS vnumber=\"33\">And when they were come unto a place called Golgotha, that is to say, a place of a skull,</VERS>\r\n      <VERS vnumber=\"34\">They gave him vinegar to drink mingled with gall: and when he had tasted thereof, he would not drink.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">And sitting down they watched him there;</VERS>\r\n      <VERS vnumber=\"37\">And set up over his head his accusation written, THIS IS JESUS THE KING OF THE JEWS.</VERS>\r\n      <VERS vnumber=\"38\">Then were there two thieves crucified with him, one on the right hand, and another on the left.</VERS>\r\n      <VERS vnumber=\"39\">And they that passed by reviled him, wagging their heads,</VERS>\r\n      <VERS vnumber=\"40\">And 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.</VERS>\r\n      <VERS vnumber=\"41\">Likewise also the chief priests mocking him, with the scribes and elders, said,</VERS>\r\n      <VERS vnumber=\"42\">He 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.</VERS>\r\n      <VERS vnumber=\"43\">He trusted in God; let him deliver him now, if he will have him: for he said, I am the Son of God.</VERS>\r\n      <VERS vnumber=\"44\">The thieves also, which were crucified with him, cast the same in his teeth.</VERS>\r\n      <VERS vnumber=\"45\">Now from the sixth hour there was darkness over all the land unto the ninth hour.</VERS>\r\n      <VERS vnumber=\"46\">And 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?</VERS>\r\n      <VERS vnumber=\"47\">Some of them that stood there, when they heard that, said, This man calleth for Elias.</VERS>\r\n      <VERS vnumber=\"48\">And 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.</VERS>\r\n      <VERS vnumber=\"49\">The rest said, Let be, let us see whether Elias will come to save him.</VERS>\r\n      <VERS vnumber=\"50\">Jesus, when he had cried again with a loud voice, yielded up the ghost.</VERS>\r\n      <VERS vnumber=\"51\">And, 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;</VERS>\r\n      <VERS vnumber=\"52\">And the graves were opened; and many bodies of the saints which slept arose,</VERS>\r\n      <VERS vnumber=\"53\">And came out of the graves after his resurrection, and went into the holy city, and appeared unto many.</VERS>\r\n      <VERS vnumber=\"54\">Now 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.</VERS>\r\n      <VERS vnumber=\"55\">And many women were there beholding afar off, which followed Jesus from Galilee, ministering unto him:</VERS>\r\n      <VERS vnumber=\"56\">Among which was Mary Magdalene, and Mary the mother of James and Joses, and the mother of Zebedee's children.</VERS>\r\n      <VERS vnumber=\"57\">When the even was come, there came a rich man of Arimathaea, named Joseph, who also himself was Jesus' disciple:</VERS>\r\n      <VERS vnumber=\"58\">He went to Pilate, and begged the body of Jesus. Then Pilate commanded the body to be delivered.</VERS>\r\n      <VERS vnumber=\"59\">And when Joseph had taken the body, he wrapped it in a clean linen cloth,</VERS>\r\n      <VERS vnumber=\"60\">And 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.</VERS>\r\n      <VERS vnumber=\"61\">And there was Mary Magdalene, and the other Mary, sitting over against the sepulchre.</VERS>\r\n      <VERS vnumber=\"62\">Now the next day, that followed the day of the preparation, the chief priests and Pharisees came together unto Pilate,</VERS>\r\n      <VERS vnumber=\"63\">Saying, Sir, we remember that that deceiver said, while he was yet alive, After three days I will rise again.</VERS>\r\n      <VERS vnumber=\"64\">Command 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.</VERS>\r\n      <VERS vnumber=\"65\">Pilate said unto them, Ye have a watch: go your way, make it as sure as ye can.</VERS>\r\n      <VERS vnumber=\"66\">So they went, and made the sepulchre sure, sealing the stone, and setting a watch.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"28\">\r\n      <VERS vnumber=\"1\">In 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.</VERS>\r\n      <VERS vnumber=\"2\">And, 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.</VERS>\r\n      <VERS vnumber=\"3\">His countenance was like lightning, and his raiment white as snow:</VERS>\r\n      <VERS vnumber=\"4\">And for fear of him the keepers did shake, and became as dead men.</VERS>\r\n      <VERS vnumber=\"5\">And the angel answered and said unto the women, Fear not ye: for I know that ye seek Jesus, which was crucified.</VERS>\r\n      <VERS vnumber=\"6\">He is not here: for he is risen, as he said. Come, see the place where the Lord lay.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And they departed quickly from the sepulchre with fear and great joy; and did run to bring his disciples word.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">Then said Jesus unto them, Be not afraid: go tell my brethren that they go into Galilee, and there shall they see me.</VERS>\r\n      <VERS vnumber=\"11\">Now 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.</VERS>\r\n      <VERS vnumber=\"12\">And when they were assembled with the elders, and had taken counsel, they gave large money unto the soldiers,</VERS>\r\n      <VERS vnumber=\"13\">Saying, Say ye, His disciples came by night, and stole him away while we slept.</VERS>\r\n      <VERS vnumber=\"14\">And if this come to the governor's ears, we will persuade him, and secure you.</VERS>\r\n      <VERS vnumber=\"15\">So they took the money, and did as they were taught: and this saying is commonly reported among the Jews until this day.</VERS>\r\n      <VERS vnumber=\"16\">Then the eleven disciples went away into Galilee, into a mountain where Jesus had appointed them.</VERS>\r\n      <VERS vnumber=\"17\">And when they saw him, they worshipped him: but some doubted.</VERS>\r\n      <VERS vnumber=\"18\">And Jesus came and spake unto them, saying, All power is given unto me in heaven and in earth.</VERS>\r\n      <VERS vnumber=\"19\">Go ye therefore, and teach all nations, baptizing them in the name of the Father, and of the Son, and of the Holy Ghost:</VERS>\r\n      <VERS vnumber=\"20\">Teaching 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.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"41\" bname=\"Mark\" bsname=\"Mark\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">The beginning of the gospel of Jesus Christ, the Son of God;</VERS>\r\n      <VERS vnumber=\"2\">As it is written in the prophets, Behold, I send my messenger before thy face, which shall prepare thy way before thee.</VERS>\r\n      <VERS vnumber=\"3\">The voice of one crying in the wilderness, Prepare ye the way of the Lord, make his paths straight.</VERS>\r\n      <VERS vnumber=\"4\">John did baptize in the wilderness, and preach the baptism of repentance for the remission of sins.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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;</VERS>\r\n      <VERS vnumber=\"7\">And preached, saying, There cometh one mightier than I after me, the latchet of whose shoes I am not worthy to stoop down and unloose.</VERS>\r\n      <VERS vnumber=\"8\">I indeed have baptized you with water: but he shall baptize you with the Holy Ghost.</VERS>\r\n      <VERS vnumber=\"9\">And it came to pass in those days, that Jesus came from Nazareth of Galilee, and was baptized of John in Jordan.</VERS>\r\n      <VERS vnumber=\"10\">And straightway coming up out of the water, he saw the heavens opened, and the Spirit like a dove descending upon him:</VERS>\r\n      <VERS vnumber=\"11\">And there came a voice from heaven, saying, Thou art my beloved Son, in whom I am well pleased.</VERS>\r\n      <VERS vnumber=\"12\">And immediately the Spirit driveth him into the wilderness.</VERS>\r\n      <VERS vnumber=\"13\">And he was there in the wilderness forty days, tempted of Satan; and was with the wild beasts; and the angels ministered unto him.</VERS>\r\n      <VERS vnumber=\"14\">Now after that John was put in prison, Jesus came into Galilee, preaching the gospel of the kingdom of God,</VERS>\r\n      <VERS vnumber=\"15\">And saying, The time is fulfilled, and the kingdom of God is at hand: repent ye, and believe the gospel.</VERS>\r\n      <VERS vnumber=\"16\">Now 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.</VERS>\r\n      <VERS vnumber=\"17\">And Jesus said unto them, Come ye after me, and I will make you to become fishers of men.</VERS>\r\n      <VERS vnumber=\"18\">And straightway they forsook their nets, and followed him.</VERS>\r\n      <VERS vnumber=\"19\">And when he had gone a little further thence, he saw James the son of Zebedee, and John his brother, who also were in the ship mending their nets.</VERS>\r\n      <VERS vnumber=\"20\">And straightway he called them: and they left their father Zebedee in the ship with the hired servants, and went after him.</VERS>\r\n      <VERS vnumber=\"21\">And they went into Capernaum; and straightway on the sabbath day he entered into the synagogue, and taught.</VERS>\r\n      <VERS vnumber=\"22\">And they were astonished at his doctrine: for he taught them as one that had authority, and not as the scribes.</VERS>\r\n      <VERS vnumber=\"23\">And there was in their synagogue a man with an unclean spirit; and he cried out,</VERS>\r\n      <VERS vnumber=\"24\">Saying, 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.</VERS>\r\n      <VERS vnumber=\"25\">And Jesus rebuked him, saying, Hold thy peace, and come out of him.</VERS>\r\n      <VERS vnumber=\"26\">And when the unclean spirit had torn him, and cried with a loud voice, he came out of him.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And immediately his fame spread abroad throughout all the region round about Galilee.</VERS>\r\n      <VERS vnumber=\"29\">And forthwith, when they were come out of the synagogue, they entered into the house of Simon and Andrew, with James and John.</VERS>\r\n      <VERS vnumber=\"30\">But Simon's wife's mother lay sick of a fever, and anon they tell him of her.</VERS>\r\n      <VERS vnumber=\"31\">And he came and took her by the hand, and lifted her up; and immediately the fever left her, and she ministered unto them.</VERS>\r\n      <VERS vnumber=\"32\">And at even, when the sun did set, they brought unto him all that were diseased, and them that were possessed with devils.</VERS>\r\n      <VERS vnumber=\"33\">And all the city was gathered together at the door.</VERS>\r\n      <VERS vnumber=\"34\">And 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.</VERS>\r\n      <VERS vnumber=\"35\">And in the morning, rising up a great while before day, he went out, and departed into a solitary place, and there prayed.</VERS>\r\n      <VERS vnumber=\"36\">And Simon and they that were with him followed after him.</VERS>\r\n      <VERS vnumber=\"37\">And when they had found him, they said unto him, All men seek for thee.</VERS>\r\n      <VERS vnumber=\"38\">And he said unto them, Let us go into the next towns, that I may preach there also: for therefore came I forth.</VERS>\r\n      <VERS vnumber=\"39\">And he preached in their synagogues throughout all Galilee, and cast out devils.</VERS>\r\n      <VERS vnumber=\"40\">And 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.</VERS>\r\n      <VERS vnumber=\"41\">And Jesus, moved with compassion, put forth his hand, and touched him, and saith unto him, I will; be thou clean.</VERS>\r\n      <VERS vnumber=\"42\">And as soon as he had spoken, immediately the leprosy departed from him, and he was cleansed.</VERS>\r\n      <VERS vnumber=\"43\">And he straitly charged him, and forthwith sent him away;</VERS>\r\n      <VERS vnumber=\"44\">And 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.</VERS>\r\n      <VERS vnumber=\"45\">But 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">And again he entered into Capernaum after some days; and it was noised that he was in the house.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And they come unto him, bringing one sick of the palsy, which was borne of four.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">When Jesus saw their faith, he said unto the sick of the palsy, Son, thy sins be forgiven thee.</VERS>\r\n      <VERS vnumber=\"6\">But there were certain of the scribes sitting there, and reasoning in their hearts,</VERS>\r\n      <VERS vnumber=\"7\">Why doth this man thus speak blasphemies? who can forgive sins but God only?</VERS>\r\n      <VERS vnumber=\"8\">And 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?</VERS>\r\n      <VERS vnumber=\"9\">Whether 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?</VERS>\r\n      <VERS vnumber=\"10\">But that ye may know that the Son of man hath power on earth to forgive sins, (he saith to the sick of the palsy,)</VERS>\r\n      <VERS vnumber=\"11\">I say unto thee, Arise, and take up thy bed, and go thy way into thine house.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And he went forth again by the sea side; and all the multitude resorted unto him, and he taught them.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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?</VERS>\r\n      <VERS vnumber=\"17\">When 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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?</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">But the days will come, when the bridegroom shall be taken away from them, and then shall they fast in those days.</VERS>\r\n      <VERS vnumber=\"21\">No 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.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And the Pharisees said unto him, Behold, why do they on the sabbath day that which is not lawful?</VERS>\r\n      <VERS vnumber=\"25\">And 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?</VERS>\r\n      <VERS vnumber=\"26\">How 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?</VERS>\r\n      <VERS vnumber=\"27\">And he said unto them, The sabbath was made for man, and not man for the sabbath:</VERS>\r\n      <VERS vnumber=\"28\">Therefore the Son of man is Lord also of the sabbath.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">And he entered again into the synagogue; and there was a man there which had a withered hand.</VERS>\r\n      <VERS vnumber=\"2\">And they watched him, whether he would heal him on the sabbath day; that they might accuse him.</VERS>\r\n      <VERS vnumber=\"3\">And he saith unto the man which had the withered hand, Stand forth.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And the Pharisees went forth, and straightway took counsel with the Herodians against him, how they might destroy him.</VERS>\r\n      <VERS vnumber=\"7\">But Jesus withdrew himself with his disciples to the sea: and a great multitude from Galilee followed him, and from Judaea,</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And he spake to his disciples, that a small ship should wait on him because of the multitude, lest they should throng him.</VERS>\r\n      <VERS vnumber=\"10\">For he had healed many; insomuch that they pressed upon him for to touch him, as many as had plagues.</VERS>\r\n      <VERS vnumber=\"11\">And unclean spirits, when they saw him, fell down before him, and cried, saying, Thou art the Son of God.</VERS>\r\n      <VERS vnumber=\"12\">And he straitly charged them that they should not make him known.</VERS>\r\n      <VERS vnumber=\"13\">And he goeth up into a mountain, and calleth unto him whom he would: and they came unto him.</VERS>\r\n      <VERS vnumber=\"14\">And he ordained twelve, that they should be with him, and that he might send them forth to preach,</VERS>\r\n      <VERS vnumber=\"15\">And to have power to heal sicknesses, and to cast out devils:</VERS>\r\n      <VERS vnumber=\"16\">And Simon he surnamed Peter;</VERS>\r\n      <VERS vnumber=\"17\">And James the son of Zebedee, and John the brother of James; and he surnamed them Boanerges, which is, The sons of thunder:</VERS>\r\n      <VERS vnumber=\"18\">And Andrew, and Philip, and Bartholomew, and Matthew, and Thomas, and James the son of Alphaeus, and Thaddaeus, and Simon the Canaanite,</VERS>\r\n      <VERS vnumber=\"19\">And Judas Iscariot, which also betrayed him: and they went into an house.</VERS>\r\n      <VERS vnumber=\"20\">And the multitude cometh together again, so that they could not so much as eat bread.</VERS>\r\n      <VERS vnumber=\"21\">And when his friends heard of it, they went out to lay hold on him: for they said, He is beside himself.</VERS>\r\n      <VERS vnumber=\"22\">And the scribes which came down from Jerusalem said, He hath Beelzebub, and by the prince of the devils casteth he out devils.</VERS>\r\n      <VERS vnumber=\"23\">And he called them unto him, and said unto them in parables, How can Satan cast out Satan?</VERS>\r\n      <VERS vnumber=\"24\">And if a kingdom be divided against itself, that kingdom cannot stand.</VERS>\r\n      <VERS vnumber=\"25\">And if a house be divided against itself, that house cannot stand.</VERS>\r\n      <VERS vnumber=\"26\">And if Satan rise up against himself, and be divided, he cannot stand, but hath an end.</VERS>\r\n      <VERS vnumber=\"27\">No 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.</VERS>\r\n      <VERS vnumber=\"28\">Verily I say unto you, All sins shall be forgiven unto the sons of men, and blasphemies wherewith soever they shall blaspheme:</VERS>\r\n      <VERS vnumber=\"29\">But he that shall blaspheme against the Holy Ghost hath never forgiveness, but is in danger of eternal damnation:</VERS>\r\n      <VERS vnumber=\"30\">Because they said, He hath an unclean spirit.</VERS>\r\n      <VERS vnumber=\"31\">There came then his brethren and his mother, and, standing without, sent unto him, calling him.</VERS>\r\n      <VERS vnumber=\"32\">And the multitude sat about him, and they said unto him, Behold, thy mother and thy brethren without seek for thee.</VERS>\r\n      <VERS vnumber=\"33\">And he answered them, saying, Who is my mother, or my brethren?</VERS>\r\n      <VERS vnumber=\"34\">And he looked round about on them which sat about him, and said, Behold my mother and my brethren!</VERS>\r\n      <VERS vnumber=\"35\">For whosoever shall do the will of God, the same is my brother, and my sister, and mother.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And he taught them many things by parables, and said unto them in his doctrine,</VERS>\r\n      <VERS vnumber=\"3\">Hearken; Behold, there went out a sower to sow:</VERS>\r\n      <VERS vnumber=\"4\">And it came to pass, as he sowed, some fell by the way side, and the fowls of the air came and devoured it up.</VERS>\r\n      <VERS vnumber=\"5\">And some fell on stony ground, where it had not much earth; and immediately it sprang up, because it had no depth of earth:</VERS>\r\n      <VERS vnumber=\"6\">But when the sun was up, it was scorched; and because it had no root, it withered away.</VERS>\r\n      <VERS vnumber=\"7\">And some fell among thorns, and the thorns grew up, and choked it, and it yielded no fruit.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And he said unto them, He that hath ears to hear, let him hear.</VERS>\r\n      <VERS vnumber=\"10\">And when he was alone, they that were about him with the twelve asked of him the parable.</VERS>\r\n      <VERS vnumber=\"11\">And 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:</VERS>\r\n      <VERS vnumber=\"12\">That 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.</VERS>\r\n      <VERS vnumber=\"13\">And he said unto them, Know ye not this parable? and how then will ye know all parables?</VERS>\r\n      <VERS vnumber=\"14\">The sower soweth the word.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And these are they likewise which are sown on stony ground; who, when they have heard the word, immediately receive it with gladness;</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And these are they which are sown among thorns; such as hear the word,</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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?</VERS>\r\n      <VERS vnumber=\"22\">For there is nothing hid, which shall not be manifested; neither was any thing kept secret, but that it should come abroad.</VERS>\r\n      <VERS vnumber=\"23\">If any man have ears to hear, let him hear.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">For he that hath, to him shall be given: and he that hath not, from him shall be taken even that which he hath.</VERS>\r\n      <VERS vnumber=\"26\">And he said, So is the kingdom of God, as if a man should cast seed into the ground;</VERS>\r\n      <VERS vnumber=\"27\">And should sleep, and rise night and day, and the seed should spring and grow up, he knoweth not how.</VERS>\r\n      <VERS vnumber=\"28\">For the earth bringeth forth fruit of herself; first the blade, then the ear, after that the full corn in the ear.</VERS>\r\n      <VERS vnumber=\"29\">But when the fruit is brought forth, immediately he putteth in the sickle, because the harvest is come.</VERS>\r\n      <VERS vnumber=\"30\">And he said, Whereunto shall we liken the kingdom of God? or with what comparison shall we compare it?</VERS>\r\n      <VERS vnumber=\"31\">It 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:</VERS>\r\n      <VERS vnumber=\"32\">But 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.</VERS>\r\n      <VERS vnumber=\"33\">And with many such parables spake he the word unto them, as they were able to hear it.</VERS>\r\n      <VERS vnumber=\"34\">But without a parable spake he not unto them: and when they were alone, he expounded all things to his disciples.</VERS>\r\n      <VERS vnumber=\"35\">And the same day, when the even was come, he saith unto them, Let us pass over unto the other side.</VERS>\r\n      <VERS vnumber=\"36\">And 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.</VERS>\r\n      <VERS vnumber=\"37\">And there arose a great storm of wind, and the waves beat into the ship, so that it was now full.</VERS>\r\n      <VERS vnumber=\"38\">And 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?</VERS>\r\n      <VERS vnumber=\"39\">And he arose, and rebuked the wind, and said unto the sea, Peace, be still. And the wind ceased, and there was a great calm.</VERS>\r\n      <VERS vnumber=\"40\">And he said unto them, Why are ye so fearful? how is it that ye have no faith?</VERS>\r\n      <VERS vnumber=\"41\">And they feared exceedingly, and said one to another, What manner of man is this, that even the wind and the sea obey him?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">And they came over unto the other side of the sea, into the country of the Gadarenes.</VERS>\r\n      <VERS vnumber=\"2\">And when he was come out of the ship, immediately there met him out of the tombs a man with an unclean spirit,</VERS>\r\n      <VERS vnumber=\"3\">Who had his dwelling among the tombs; and no man could bind him, no, not with chains:</VERS>\r\n      <VERS vnumber=\"4\">Because 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.</VERS>\r\n      <VERS vnumber=\"5\">And always, night and day, he was in the mountains, and in the tombs, crying, and cutting himself with stones.</VERS>\r\n      <VERS vnumber=\"6\">But when he saw Jesus afar off, he ran and worshipped him,</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">For he said unto him, Come out of the man, thou unclean spirit.</VERS>\r\n      <VERS vnumber=\"9\">And he asked him, What is thy name? And he answered, saying, My name is Legion: for we are many.</VERS>\r\n      <VERS vnumber=\"10\">And he besought him much that he would not send them away out of the country.</VERS>\r\n      <VERS vnumber=\"11\">Now there was there nigh unto the mountains a great herd of swine feeding.</VERS>\r\n      <VERS vnumber=\"12\">And all the devils besought him, saying, Send us into the swine, that we may enter into them.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And they that saw it told them how it befell to him that was possessed with the devil, and also concerning the swine.</VERS>\r\n      <VERS vnumber=\"17\">And they began to pray him to depart out of their coasts.</VERS>\r\n      <VERS vnumber=\"18\">And when he was come into the ship, he that had been possessed with the devil prayed him that he might be with him.</VERS>\r\n      <VERS vnumber=\"19\">Howbeit 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.</VERS>\r\n      <VERS vnumber=\"20\">And he departed, and began to publish in Decapolis how great things Jesus had done for him: and all men did marvel.</VERS>\r\n      <VERS vnumber=\"21\">And when Jesus was passed over again by ship unto the other side, much people gathered unto him: and he was nigh unto the sea.</VERS>\r\n      <VERS vnumber=\"22\">And, behold, there cometh one of the rulers of the synagogue, Jairus by name; and when he saw him, he fell at his feet,</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And Jesus went with him; and much people followed him, and thronged him.</VERS>\r\n      <VERS vnumber=\"25\">And a certain woman, which had an issue of blood twelve years,</VERS>\r\n      <VERS vnumber=\"26\">And had suffered many things of many physicians, and had spent all that she had, and was nothing bettered, but rather grew worse,</VERS>\r\n      <VERS vnumber=\"27\">When she had heard of Jesus, came in the press behind, and touched his garment.</VERS>\r\n      <VERS vnumber=\"28\">For she said, If I may touch but his clothes, I shall be whole.</VERS>\r\n      <VERS vnumber=\"29\">And straightway the fountain of her blood was dried up; and she felt in her body that she was healed of that plague.</VERS>\r\n      <VERS vnumber=\"30\">And Jesus, immediately knowing in himself that virtue had gone out of him, turned him about in the press, and said, Who touched my clothes?</VERS>\r\n      <VERS vnumber=\"31\">And his disciples said unto him, Thou seest the multitude thronging thee, and sayest thou, Who touched me?</VERS>\r\n      <VERS vnumber=\"32\">And he looked round about to see her that had done this thing.</VERS>\r\n      <VERS vnumber=\"33\">But the woman fearing and trembling, knowing what was done in her, came and fell down before him, and told him all the truth.</VERS>\r\n      <VERS vnumber=\"34\">And he said unto her, Daughter, thy faith hath made thee whole; go in peace, and be whole of thy plague.</VERS>\r\n      <VERS vnumber=\"35\">While 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?</VERS>\r\n      <VERS vnumber=\"36\">As soon as Jesus heard the word that was spoken, he saith unto the ruler of the synagogue, Be not afraid, only believe.</VERS>\r\n      <VERS vnumber=\"37\">And he suffered no man to follow him, save Peter, and James, and John the brother of James.</VERS>\r\n      <VERS vnumber=\"38\">And he cometh to the house of the ruler of the synagogue, and seeth the tumult, and them that wept and wailed greatly.</VERS>\r\n      <VERS vnumber=\"39\">And when he was come in, he saith unto them, Why make ye this ado, and weep? the damsel is not dead, but sleepeth.</VERS>\r\n      <VERS vnumber=\"40\">And 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.</VERS>\r\n      <VERS vnumber=\"41\">And he took the damsel by the hand, and said unto her, Talitha cumi; which is, being interpreted, Damsel, I say unto thee, arise.</VERS>\r\n      <VERS vnumber=\"42\">And straightway the damsel arose, and walked; for she was of the age of twelve years. And they were astonished with a great astonishment.</VERS>\r\n      <VERS vnumber=\"43\">And he charged them straitly that no man should know it; and commanded that something should be given her to eat.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">And he went out from thence, and came into his own country; and his disciples follow him.</VERS>\r\n      <VERS vnumber=\"2\">And 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?</VERS>\r\n      <VERS vnumber=\"3\">Is 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.</VERS>\r\n      <VERS vnumber=\"4\">But 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.</VERS>\r\n      <VERS vnumber=\"5\">And he could there do no mighty work, save that he laid his hands upon a few sick folk, and healed them.</VERS>\r\n      <VERS vnumber=\"6\">And he marvelled because of their unbelief. And he went round about the villages, teaching.</VERS>\r\n      <VERS vnumber=\"7\">And he called unto him the twelve, and began to send them forth by two and two; and gave them power over unclean spirits;</VERS>\r\n      <VERS vnumber=\"8\">And commanded them that they should take nothing for their journey, save a staff only; no scrip, no bread, no money in their purse:</VERS>\r\n      <VERS vnumber=\"9\">But be shod with sandals; and not put on two coats.</VERS>\r\n      <VERS vnumber=\"10\">And he said unto them, In what place soever ye enter into an house, there abide till ye depart from that place.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And they went out, and preached that men should repent.</VERS>\r\n      <VERS vnumber=\"13\">And they cast out many devils, and anointed with oil many that were sick, and healed them.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">Others said, That it is Elias. And others said, That it is a prophet, or as one of the prophets.</VERS>\r\n      <VERS vnumber=\"16\">But when Herod heard thereof, he said, It is John, whom I beheaded: he is risen from the dead.</VERS>\r\n      <VERS vnumber=\"17\">For 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.</VERS>\r\n      <VERS vnumber=\"18\">For John had said unto Herod, It is not lawful for thee to have thy brother's wife.</VERS>\r\n      <VERS vnumber=\"19\">Therefore Herodias had a quarrel against him, and would have killed him; but she could not:</VERS>\r\n      <VERS vnumber=\"20\">For 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.</VERS>\r\n      <VERS vnumber=\"21\">And when a convenient day was come, that Herod on his birthday made a supper to his lords, high captains, and chief estates of Galilee;</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And he sware unto her, Whatsoever thou shalt ask of me, I will give it thee, unto the half of my kingdom.</VERS>\r\n      <VERS vnumber=\"24\">And she went forth, and said unto her mother, What shall I ask? And she said, The head of John the Baptist.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And the king was exceeding sorry; yet for his oath's sake, and for their sakes which sat with him, he would not reject her.</VERS>\r\n      <VERS vnumber=\"27\">And immediately the king sent an executioner, and commanded his head to be brought: and he went and beheaded him in the prison,</VERS>\r\n      <VERS vnumber=\"28\">And brought his head in a charger, and gave it to the damsel: and the damsel gave it to her mother.</VERS>\r\n      <VERS vnumber=\"29\">And when his disciples heard of it, they came and took up his corpse, and laid it in a tomb.</VERS>\r\n      <VERS vnumber=\"30\">And the apostles gathered themselves together unto Jesus, and told him all things, both what they had done, and what they had taught.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n      <VERS vnumber=\"32\">And they departed into a desert place by ship privately.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">And 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.</VERS>\r\n      <VERS vnumber=\"35\">And 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:</VERS>\r\n      <VERS vnumber=\"36\">Send 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.</VERS>\r\n      <VERS vnumber=\"37\">He 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?</VERS>\r\n      <VERS vnumber=\"38\">He saith unto them, How many loaves have ye? go and see. And when they knew, they say, Five, and two fishes.</VERS>\r\n      <VERS vnumber=\"39\">And he commanded them to make all sit down by companies upon the green grass.</VERS>\r\n      <VERS vnumber=\"40\">And they sat down in ranks, by hundreds, and by fifties.</VERS>\r\n      <VERS vnumber=\"41\">And 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.</VERS>\r\n      <VERS vnumber=\"42\">And they did all eat, and were filled.</VERS>\r\n      <VERS vnumber=\"43\">And they took up twelve baskets full of the fragments, and of the fishes.</VERS>\r\n      <VERS vnumber=\"44\">And they that did eat of the loaves were about five thousand men.</VERS>\r\n      <VERS vnumber=\"45\">And 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.</VERS>\r\n      <VERS vnumber=\"46\">And when he had sent them away, he departed into a mountain to pray.</VERS>\r\n      <VERS vnumber=\"47\">And when even was come, the ship was in the midst of the sea, and he alone on the land.</VERS>\r\n      <VERS vnumber=\"48\">And 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.</VERS>\r\n      <VERS vnumber=\"49\">But when they saw him walking upon the sea, they supposed it had been a spirit, and cried out:</VERS>\r\n      <VERS vnumber=\"50\">For 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.</VERS>\r\n      <VERS vnumber=\"51\">And he went up unto them into the ship; and the wind ceased: and they were sore amazed in themselves beyond measure, and wondered.</VERS>\r\n      <VERS vnumber=\"52\">For they considered not the miracle of the loaves: for their heart was hardened.</VERS>\r\n      <VERS vnumber=\"53\">And when they had passed over, they came into the land of Gennesaret, and drew to the shore.</VERS>\r\n      <VERS vnumber=\"54\">And when they were come out of the ship, straightway they knew him,</VERS>\r\n      <VERS vnumber=\"55\">And ran through that whole region round about, and began to carry about in beds those that were sick, where they heard he was.</VERS>\r\n      <VERS vnumber=\"56\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">Then came together unto him the Pharisees, and certain of the scribes, which came from Jerusalem.</VERS>\r\n      <VERS vnumber=\"2\">And when they saw some of his disciples eat bread with defiled, that is to say, with unwashen, hands, they found fault.</VERS>\r\n      <VERS vnumber=\"3\">For the Pharisees, and all the Jews, except they wash their hands oft, eat not, holding the tradition of the elders.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">Then the Pharisees and scribes asked him, Why walk not thy disciples according to the tradition of the elders, but eat bread with unwashen hands?</VERS>\r\n      <VERS vnumber=\"6\">He 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.</VERS>\r\n      <VERS vnumber=\"7\">Howbeit in vain do they worship me, teaching for doctrines the commandments of men.</VERS>\r\n      <VERS vnumber=\"8\">For 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.</VERS>\r\n      <VERS vnumber=\"9\">And he said unto them, Full well ye reject the commandment of God, that ye may keep your own tradition.</VERS>\r\n      <VERS vnumber=\"10\">For Moses said, Honour thy father and thy mother; and, Whoso curseth father or mother, let him die the death:</VERS>\r\n      <VERS vnumber=\"11\">But 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.</VERS>\r\n      <VERS vnumber=\"12\">And ye suffer him no more to do ought for his father or his mother;</VERS>\r\n      <VERS vnumber=\"13\">Making the word of God of none effect through your tradition, which ye have delivered: and many such like things do ye.</VERS>\r\n      <VERS vnumber=\"14\">And when he had called all the people unto him, he said unto them, Hearken unto me every one of you, and understand:</VERS>\r\n      <VERS vnumber=\"15\">There 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.</VERS>\r\n      <VERS vnumber=\"16\">If any man have ears to hear, let him hear.</VERS>\r\n      <VERS vnumber=\"17\">And when he was entered into the house from the people, his disciples asked him concerning the parable.</VERS>\r\n      <VERS vnumber=\"18\">And 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;</VERS>\r\n      <VERS vnumber=\"19\">Because it entereth not into his heart, but into the belly, and goeth out into the draught, purging all meats?</VERS>\r\n      <VERS vnumber=\"20\">And he said, That which cometh out of the man, that defileth the man.</VERS>\r\n      <VERS vnumber=\"21\">For from within, out of the heart of men, proceed evil thoughts, adulteries, fornications, murders,</VERS>\r\n      <VERS vnumber=\"22\">Thefts, covetousness, wickedness, deceit, lasciviousness, an evil eye, blasphemy, pride, foolishness:</VERS>\r\n      <VERS vnumber=\"23\">All these evil things come from within, and defile the man.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">For a certain woman, whose young daughter had an unclean spirit, heard of him, and came and fell at his feet:</VERS>\r\n      <VERS vnumber=\"26\">The woman was a Greek, a Syrophenician by nation; and she besought him that he would cast forth the devil out of her daughter.</VERS>\r\n      <VERS vnumber=\"27\">But 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.</VERS>\r\n      <VERS vnumber=\"28\">And she answered and said unto him, Yes, Lord: yet the dogs under the table eat of the children's crumbs.</VERS>\r\n      <VERS vnumber=\"29\">And he said unto her, For this saying go thy way; the devil is gone out of thy daughter.</VERS>\r\n      <VERS vnumber=\"30\">And when she was come to her house, she found the devil gone out, and her daughter laid upon the bed.</VERS>\r\n      <VERS vnumber=\"31\">And again, departing from the coasts of Tyre and Sidon, he came unto the sea of Galilee, through the midst of the coasts of Decapolis.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">And he took him aside from the multitude, and put his fingers into his ears, and he spit, and touched his tongue;</VERS>\r\n      <VERS vnumber=\"34\">And looking up to heaven, he sighed, and saith unto him, Ephphatha, that is, Be opened.</VERS>\r\n      <VERS vnumber=\"35\">And straightway his ears were opened, and the string of his tongue was loosed, and he spake plain.</VERS>\r\n      <VERS vnumber=\"36\">And 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;</VERS>\r\n      <VERS vnumber=\"37\">And were beyond measure astonished, saying, He hath done all things well: he maketh both the deaf to hear, and the dumb to speak.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">In those days the multitude being very great, and having nothing to eat, Jesus called his disciples unto him, and saith unto them,</VERS>\r\n      <VERS vnumber=\"2\">I have compassion on the multitude, because they have now been with me three days, and have nothing to eat:</VERS>\r\n      <VERS vnumber=\"3\">And if I send them away fasting to their own houses, they will faint by the way: for divers of them came from far.</VERS>\r\n      <VERS vnumber=\"4\">And his disciples answered him, From whence can a man satisfy these men with bread here in the wilderness?</VERS>\r\n      <VERS vnumber=\"5\">And he asked them, How many loaves have ye? And they said, Seven.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And they had a few small fishes: and he blessed, and commanded to set them also before them.</VERS>\r\n      <VERS vnumber=\"8\">So they did eat, and were filled: and they took up of the broken meat that was left seven baskets.</VERS>\r\n      <VERS vnumber=\"9\">And they that had eaten were about four thousand: and he sent them away.</VERS>\r\n      <VERS vnumber=\"10\">And straightway he entered into a ship with his disciples, and came into the parts of Dalmanutha.</VERS>\r\n      <VERS vnumber=\"11\">And the Pharisees came forth, and began to question with him, seeking of him a sign from heaven, tempting him.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And he left them, and entering into the ship again departed to the other side.</VERS>\r\n      <VERS vnumber=\"14\">Now the disciples had forgotten to take bread, neither had they in the ship with them more than one loaf.</VERS>\r\n      <VERS vnumber=\"15\">And he charged them, saying, Take heed, beware of the leaven of the Pharisees, and of the leaven of Herod.</VERS>\r\n      <VERS vnumber=\"16\">And they reasoned among themselves, saying, It is because we have no bread.</VERS>\r\n      <VERS vnumber=\"17\">And 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?</VERS>\r\n      <VERS vnumber=\"18\">Having eyes, see ye not? and having ears, hear ye not? and do ye not remember?</VERS>\r\n      <VERS vnumber=\"19\">When I brake the five loaves among five thousand, how many baskets full of fragments took ye up? They say unto him, Twelve.</VERS>\r\n      <VERS vnumber=\"20\">And when the seven among four thousand, how many baskets full of fragments took ye up? And they said, Seven.</VERS>\r\n      <VERS vnumber=\"21\">And he said unto them, How is it that ye do not understand?</VERS>\r\n      <VERS vnumber=\"22\">And he cometh to Bethsaida; and they bring a blind man unto him, and besought him to touch him.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And he looked up, and said, I see men as trees, walking.</VERS>\r\n      <VERS vnumber=\"25\">After that he put his hands again upon his eyes, and made him look up: and he was restored, and saw every man clearly.</VERS>\r\n      <VERS vnumber=\"26\">And he sent him away to his house, saying, Neither go into the town, nor tell it to any in the town.</VERS>\r\n      <VERS vnumber=\"27\">And 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?</VERS>\r\n      <VERS vnumber=\"28\">And they answered, John the Baptist: but some say, Elias; and others, One of the prophets.</VERS>\r\n      <VERS vnumber=\"29\">And he saith unto them, But whom say ye that I am? And Peter answereth and saith unto him, Thou art the Christ.</VERS>\r\n      <VERS vnumber=\"30\">And he charged them that they should tell no man of him.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n      <VERS vnumber=\"32\">And he spake that saying openly. And Peter took him, and began to rebuke him.</VERS>\r\n      <VERS vnumber=\"33\">But 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.</VERS>\r\n      <VERS vnumber=\"34\">And 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.</VERS>\r\n      <VERS vnumber=\"35\">For 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.</VERS>\r\n      <VERS vnumber=\"36\">For what shall it profit a man, if he shall gain the whole world, and lose his own soul?</VERS>\r\n      <VERS vnumber=\"37\">Or what shall a man give in exchange for his soul?</VERS>\r\n      <VERS vnumber=\"38\">Whosoever 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And his raiment became shining, exceeding white as snow; so as no fuller on earth can white them.</VERS>\r\n      <VERS vnumber=\"4\">And there appeared unto them Elias with Moses: and they were talking with Jesus.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">For he wist not what to say; for they were sore afraid.</VERS>\r\n      <VERS vnumber=\"7\">And there was a cloud that overshadowed them: and a voice came out of the cloud, saying, This is my beloved Son: hear him.</VERS>\r\n      <VERS vnumber=\"8\">And suddenly, when they had looked round about, they saw no man any more, save Jesus only with themselves.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And they kept that saying with themselves, questioning one with another what the rising from the dead should mean.</VERS>\r\n      <VERS vnumber=\"11\">And they asked him, saying, Why say the scribes that Elias must first come?</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">But I say unto you, That Elias is indeed come, and they have done unto him whatsoever they listed, as it is written of him.</VERS>\r\n      <VERS vnumber=\"14\">And when he came to his disciples, he saw a great multitude about them, and the scribes questioning with them.</VERS>\r\n      <VERS vnumber=\"15\">And straightway all the people, when they beheld him, were greatly amazed, and running to him saluted him.</VERS>\r\n      <VERS vnumber=\"16\">And he asked the scribes, What question ye with them?</VERS>\r\n      <VERS vnumber=\"17\">And one of the multitude answered and said, Master, I have brought unto thee my son, which hath a dumb spirit;</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">He answereth him, and saith, O faithless generation, how long shall I be with you? how long shall I suffer you? bring him unto me.</VERS>\r\n      <VERS vnumber=\"20\">And they brought him unto him: and when he saw him, straightway the spirit tare him; and he fell on the ground, and wallowed foaming.</VERS>\r\n      <VERS vnumber=\"21\">And he asked his father, How long is it ago since this came unto him? And he said, Of a child.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">Jesus said unto him, If thou canst believe, all things are possible to him that believeth.</VERS>\r\n      <VERS vnumber=\"24\">And straightway the father of the child cried out, and said with tears, Lord, I believe; help thou mine unbelief.</VERS>\r\n      <VERS vnumber=\"25\">When 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">But Jesus took him by the hand, and lifted him up; and he arose.</VERS>\r\n      <VERS vnumber=\"28\">And when he was come into the house, his disciples asked him privately, Why could not we cast him out?</VERS>\r\n      <VERS vnumber=\"29\">And he said unto them, This kind can come forth by nothing, but by prayer and fasting.</VERS>\r\n      <VERS vnumber=\"30\">And they departed thence, and passed through Galilee; and he would not that any man should know it.</VERS>\r\n      <VERS vnumber=\"31\">For 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.</VERS>\r\n      <VERS vnumber=\"32\">But they understood not that saying, and were afraid to ask him.</VERS>\r\n      <VERS vnumber=\"33\">And he came to Capernaum: and being in the house he asked them, What was it that ye disputed among yourselves by the way?</VERS>\r\n      <VERS vnumber=\"34\">But they held their peace: for by the way they had disputed among themselves, who should be the greatest.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">And 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,</VERS>\r\n      <VERS vnumber=\"37\">Whosoever shall receive one of such children in my name, receiveth me: and whosoever shall receive me, receiveth not me, but him that sent me.</VERS>\r\n      <VERS vnumber=\"38\">And 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.</VERS>\r\n      <VERS vnumber=\"39\">But 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.</VERS>\r\n      <VERS vnumber=\"40\">For he that is not against us is on our part.</VERS>\r\n      <VERS vnumber=\"41\">For 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.</VERS>\r\n      <VERS vnumber=\"42\">And 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.</VERS>\r\n      <VERS vnumber=\"43\">And 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:</VERS>\r\n      <VERS vnumber=\"44\">Where their worm dieth not, and the fire is not quenched.</VERS>\r\n      <VERS vnumber=\"45\">And 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:</VERS>\r\n      <VERS vnumber=\"46\">Where their worm dieth not, and the fire is not quenched.</VERS>\r\n      <VERS vnumber=\"47\">And 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:</VERS>\r\n      <VERS vnumber=\"48\">Where their worm dieth not, and the fire is not quenched.</VERS>\r\n      <VERS vnumber=\"49\">For every one shall be salted with fire, and every sacrifice shall be salted with salt.</VERS>\r\n      <VERS vnumber=\"50\">Salt 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And the Pharisees came to him, and asked him, Is it lawful for a man to put away his wife? tempting him.</VERS>\r\n      <VERS vnumber=\"3\">And he answered and said unto them, What did Moses command you?</VERS>\r\n      <VERS vnumber=\"4\">And they said, Moses suffered to write a bill of divorcement, and to put her away.</VERS>\r\n      <VERS vnumber=\"5\">And Jesus answered and said unto them, For the hardness of your heart he wrote you this precept.</VERS>\r\n      <VERS vnumber=\"6\">But from the beginning of the creation God made them male and female.</VERS>\r\n      <VERS vnumber=\"7\">For this cause shall a man leave his father and mother, and cleave to his wife;</VERS>\r\n      <VERS vnumber=\"8\">And they twain shall be one flesh: so then they are no more twain, but one flesh.</VERS>\r\n      <VERS vnumber=\"9\">What therefore God hath joined together, let not man put asunder.</VERS>\r\n      <VERS vnumber=\"10\">And in the house his disciples asked him again of the same matter.</VERS>\r\n      <VERS vnumber=\"11\">And he saith unto them, Whosoever shall put away his wife, and marry another, committeth adultery against her.</VERS>\r\n      <VERS vnumber=\"12\">And if a woman shall put away her husband, and be married to another, she committeth adultery.</VERS>\r\n      <VERS vnumber=\"13\">And they brought young children to him, that he should touch them: and his disciples rebuked those that brought them.</VERS>\r\n      <VERS vnumber=\"14\">But 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.</VERS>\r\n      <VERS vnumber=\"15\">Verily I say unto you, Whosoever shall not receive the kingdom of God as a little child, he shall not enter therein.</VERS>\r\n      <VERS vnumber=\"16\">And he took them up in his arms, put his hands upon them, and blessed them.</VERS>\r\n      <VERS vnumber=\"17\">And 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?</VERS>\r\n      <VERS vnumber=\"18\">And Jesus said unto him, Why callest thou me good? there is none good but one, that is, God.</VERS>\r\n      <VERS vnumber=\"19\">Thou 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.</VERS>\r\n      <VERS vnumber=\"20\">And he answered and said unto him, Master, all these have I observed from my youth.</VERS>\r\n      <VERS vnumber=\"21\">Then 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.</VERS>\r\n      <VERS vnumber=\"22\">And he was sad at that saying, and went away grieved: for he had great possessions.</VERS>\r\n      <VERS vnumber=\"23\">And Jesus looked round about, and saith unto his disciples, How hardly shall they that have riches enter into the kingdom of God!</VERS>\r\n      <VERS vnumber=\"24\">And 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!</VERS>\r\n      <VERS vnumber=\"25\">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.</VERS>\r\n      <VERS vnumber=\"26\">And they were astonished out of measure, saying among themselves, Who then can be saved?</VERS>\r\n      <VERS vnumber=\"27\">And Jesus looking upon them saith, With men it is impossible, but not with God: for with God all things are possible.</VERS>\r\n      <VERS vnumber=\"28\">Then Peter began to say unto him, Lo, we have left all, and have followed thee.</VERS>\r\n      <VERS vnumber=\"29\">And 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,</VERS>\r\n      <VERS vnumber=\"30\">But 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.</VERS>\r\n      <VERS vnumber=\"31\">But many that are first shall be last; and the last first.</VERS>\r\n      <VERS vnumber=\"32\">And 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,</VERS>\r\n      <VERS vnumber=\"33\">Saying, 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:</VERS>\r\n      <VERS vnumber=\"34\">And 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.</VERS>\r\n      <VERS vnumber=\"35\">And James and John, the sons of Zebedee, come unto him, saying, Master, we would that thou shouldest do for us whatsoever we shall desire.</VERS>\r\n      <VERS vnumber=\"36\">And he said unto them, What would ye that I should do for you?</VERS>\r\n      <VERS vnumber=\"37\">They 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.</VERS>\r\n      <VERS vnumber=\"38\">But 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?</VERS>\r\n      <VERS vnumber=\"39\">And 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:</VERS>\r\n      <VERS vnumber=\"40\">But 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.</VERS>\r\n      <VERS vnumber=\"41\">And when the ten heard it, they began to be much displeased with James and John.</VERS>\r\n      <VERS vnumber=\"42\">But 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.</VERS>\r\n      <VERS vnumber=\"43\">But so shall it not be among you: but whosoever will be great among you, shall be your minister:</VERS>\r\n      <VERS vnumber=\"44\">And whosoever of you will be the chiefest, shall be servant of all.</VERS>\r\n      <VERS vnumber=\"45\">For even the Son of man came not to be ministered unto, but to minister, and to give his life a ransom for many.</VERS>\r\n      <VERS vnumber=\"46\">And 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.</VERS>\r\n      <VERS vnumber=\"47\">And 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.</VERS>\r\n      <VERS vnumber=\"48\">And 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.</VERS>\r\n      <VERS vnumber=\"49\">And 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.</VERS>\r\n      <VERS vnumber=\"50\">And he, casting away his garment, rose, and came to Jesus.</VERS>\r\n      <VERS vnumber=\"51\">And 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.</VERS>\r\n      <VERS vnumber=\"52\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">And when they came nigh to Jerusalem, unto Bethphage and Bethany, at the mount of Olives, he sendeth forth two of his disciples,</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And they went their way, and found the colt tied by the door without in a place where two ways met; and they loose him.</VERS>\r\n      <VERS vnumber=\"5\">And certain of them that stood there said unto them, What do ye, loosing the colt?</VERS>\r\n      <VERS vnumber=\"6\">And they said unto them even as Jesus had commanded: and they let them go.</VERS>\r\n      <VERS vnumber=\"7\">And they brought the colt to Jesus, and cast their garments on him; and he sat upon him.</VERS>\r\n      <VERS vnumber=\"8\">And many spread their garments in the way: and others cut down branches off the trees, and strawed them in the way.</VERS>\r\n      <VERS vnumber=\"9\">And they that went before, and they that followed, cried, saying, Hosanna; Blessed is he that cometh in the name of the Lord:</VERS>\r\n      <VERS vnumber=\"10\">Blessed be the kingdom of our father David, that cometh in the name of the Lord: Hosanna in the highest.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And on the morrow, when they were come from Bethany, he was hungry:</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And Jesus answered and said unto it, No man eat fruit of thee hereafter for ever. And his disciples heard it.</VERS>\r\n      <VERS vnumber=\"15\">And 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;</VERS>\r\n      <VERS vnumber=\"16\">And would not suffer that any man should carry any vessel through the temple.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And when even was come, he went out of the city.</VERS>\r\n      <VERS vnumber=\"20\">And in the morning, as they passed by, they saw the fig tree dried up from the roots.</VERS>\r\n      <VERS vnumber=\"21\">And Peter calling to remembrance saith unto him, Master, behold, the fig tree which thou cursedst is withered away.</VERS>\r\n      <VERS vnumber=\"22\">And Jesus answering saith unto them, Have faith in God.</VERS>\r\n      <VERS vnumber=\"23\">For 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.</VERS>\r\n      <VERS vnumber=\"24\">Therefore I say unto you, What things soever ye desire, when ye pray, believe that ye receive them, and ye shall have them.</VERS>\r\n      <VERS vnumber=\"25\">And when ye stand praying, forgive, if ye have ought against any: that your Father also which is in heaven may forgive you your trespasses.</VERS>\r\n      <VERS vnumber=\"26\">But if ye do not forgive, neither will your Father which is in heaven forgive your trespasses.</VERS>\r\n      <VERS vnumber=\"27\">And 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,</VERS>\r\n      <VERS vnumber=\"28\">And say unto him, By what authority doest thou these things? and who gave thee this authority to do these things?</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">The baptism of John, was it from heaven, or of men? answer me.</VERS>\r\n      <VERS vnumber=\"31\">And they reasoned with themselves, saying, If we shall say, From heaven; he will say, Why then did ye not believe him?</VERS>\r\n      <VERS vnumber=\"32\">But if we shall say, Of men; they feared the people: for all men counted John, that he was a prophet indeed.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And at the season he sent to the husbandmen a servant, that he might receive from the husbandmen of the fruit of the vineyard.</VERS>\r\n      <VERS vnumber=\"3\">And they caught him, and beat him, and sent him away empty.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And again he sent another; and him they killed, and many others; beating some, and killing some.</VERS>\r\n      <VERS vnumber=\"6\">Having yet therefore one son, his wellbeloved, he sent him also last unto them, saying, They will reverence my son.</VERS>\r\n      <VERS vnumber=\"7\">But those husbandmen said among themselves, This is the heir; come, let us kill him, and the inheritance shall be ours.</VERS>\r\n      <VERS vnumber=\"8\">And they took him, and killed him, and cast him out of the vineyard.</VERS>\r\n      <VERS vnumber=\"9\">What shall therefore the lord of the vineyard do? he will come and destroy the husbandmen, and will give the vineyard unto others.</VERS>\r\n      <VERS vnumber=\"10\">And have ye not read this scripture; The stone which the builders rejected is become the head of the corner:</VERS>\r\n      <VERS vnumber=\"11\">This was the Lord's doing, and it is marvellous in our eyes?</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And they send unto him certain of the Pharisees and of the Herodians, to catch him in his words.</VERS>\r\n      <VERS vnumber=\"14\">And 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?</VERS>\r\n      <VERS vnumber=\"15\">Shall 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.</VERS>\r\n      <VERS vnumber=\"16\">And they brought it. And he saith unto them, Whose is this image and superscription? And they said unto him, Caesar's.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">Then come unto him the Sadducees, which say there is no resurrection; and they asked him, saying,</VERS>\r\n      <VERS vnumber=\"19\">Master, 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.</VERS>\r\n      <VERS vnumber=\"20\">Now there were seven brethren: and the first took a wife, and dying left no seed.</VERS>\r\n      <VERS vnumber=\"21\">And the second took her, and died, neither left he any seed: and the third likewise.</VERS>\r\n      <VERS vnumber=\"22\">And the seven had her, and left no seed: last of all the woman died also.</VERS>\r\n      <VERS vnumber=\"23\">In the resurrection therefore, when they shall rise, whose wife shall she be of them? for the seven had her to wife.</VERS>\r\n      <VERS vnumber=\"24\">And Jesus answering said unto them, Do ye not therefore err, because ye know not the scriptures, neither the power of God?</VERS>\r\n      <VERS vnumber=\"25\">For when they shall rise from the dead, they neither marry, nor are given in marriage; but are as the angels which are in heaven.</VERS>\r\n      <VERS vnumber=\"26\">And 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?</VERS>\r\n      <VERS vnumber=\"27\">He is not the God of the dead, but the God of the living: ye therefore do greatly err.</VERS>\r\n      <VERS vnumber=\"28\">And 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?</VERS>\r\n      <VERS vnumber=\"29\">And Jesus answered him, The first of all the commandments is, Hear, O Israel; The Lord our God is one Lord:</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">And the second is like, namely this, Thou shalt love thy neighbour as thyself. There is none other commandment greater than these.</VERS>\r\n      <VERS vnumber=\"32\">And the scribe said unto him, Well, Master, thou hast said the truth: for there is one God; and there is none other but he:</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">And 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.</VERS>\r\n      <VERS vnumber=\"35\">And Jesus answered and said, while he taught in the temple, How say the scribes that Christ is the Son of David?</VERS>\r\n      <VERS vnumber=\"36\">For 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.</VERS>\r\n      <VERS vnumber=\"37\">David therefore himself calleth him Lord; and whence is he then his son? And the common people heard him gladly.</VERS>\r\n      <VERS vnumber=\"38\">And he said unto them in his doctrine, Beware of the scribes, which love to go in long clothing, and love salutations in the marketplaces,</VERS>\r\n      <VERS vnumber=\"39\">And the chief seats in the synagogues, and the uppermost rooms at feasts:</VERS>\r\n      <VERS vnumber=\"40\">Which devour widows' houses, and for a pretence make long prayers: these shall receive greater damnation.</VERS>\r\n      <VERS vnumber=\"41\">And Jesus sat over against the treasury, and beheld how the people cast money into the treasury: and many that were rich cast in much.</VERS>\r\n      <VERS vnumber=\"42\">And there came a certain poor widow, and she threw in two mites, which make a farthing.</VERS>\r\n      <VERS vnumber=\"43\">And 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:</VERS>\r\n      <VERS vnumber=\"44\">For all they did cast in of their abundance; but she of her want did cast in all that she had, even all her living.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">And 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!</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And as he sat upon the mount of Olives over against the temple, Peter and James and John and Andrew asked him privately,</VERS>\r\n      <VERS vnumber=\"4\">Tell us, when shall these things be? and what shall be the sign when all these things shall be fulfilled?</VERS>\r\n      <VERS vnumber=\"5\">And Jesus answering them began to say, Take heed lest any man deceive you:</VERS>\r\n      <VERS vnumber=\"6\">For many shall come in my name, saying, I am Christ; and shall deceive many.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">For 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.</VERS>\r\n      <VERS vnumber=\"9\">But 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.</VERS>\r\n      <VERS vnumber=\"10\">And the gospel must first be published among all nations.</VERS>\r\n      <VERS vnumber=\"11\">But 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.</VERS>\r\n      <VERS vnumber=\"12\">Now 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">But 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:</VERS>\r\n      <VERS vnumber=\"15\">And let him that is on the housetop not go down into the house, neither enter therein, to take any thing out of his house:</VERS>\r\n      <VERS vnumber=\"16\">And let him that is in the field not turn back again for to take up his garment.</VERS>\r\n      <VERS vnumber=\"17\">But woe to them that are with child, and to them that give suck in those days!</VERS>\r\n      <VERS vnumber=\"18\">And pray ye that your flight be not in the winter.</VERS>\r\n      <VERS vnumber=\"19\">For 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And then if any man shall say to you, Lo, here is Christ; or, lo, he is there; believe him not:</VERS>\r\n      <VERS vnumber=\"22\">For false Christs and false prophets shall rise, and shall shew signs and wonders, to seduce, if it were possible, even the elect.</VERS>\r\n      <VERS vnumber=\"23\">But take ye heed: behold, I have foretold you all things.</VERS>\r\n      <VERS vnumber=\"24\">But in those days, after that tribulation, the sun shall be darkened, and the moon shall not give her light,</VERS>\r\n      <VERS vnumber=\"25\">And the stars of heaven shall fall, and the powers that are in heaven shall be shaken.</VERS>\r\n      <VERS vnumber=\"26\">And then shall they see the Son of man coming in the clouds with great power and glory.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">Now learn a parable of the fig tree; When her branch is yet tender, and putteth forth leaves, ye know that summer is near:</VERS>\r\n      <VERS vnumber=\"29\">So ye in like manner, when ye shall see these things come to pass, know that it is nigh, even at the doors.</VERS>\r\n      <VERS vnumber=\"30\">Verily I say unto you, that this generation shall not pass, till all these things be done.</VERS>\r\n      <VERS vnumber=\"31\">Heaven and earth shall pass away: but my words shall not pass away.</VERS>\r\n      <VERS vnumber=\"32\">But of that day and that hour knoweth no man, no, not the angels which are in heaven, neither the Son, but the Father.</VERS>\r\n      <VERS vnumber=\"33\">Take ye heed, watch and pray: for ye know not when the time is.</VERS>\r\n      <VERS vnumber=\"34\">For 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.</VERS>\r\n      <VERS vnumber=\"35\">Watch 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:</VERS>\r\n      <VERS vnumber=\"36\">Lest coming suddenly he find you sleeping.</VERS>\r\n      <VERS vnumber=\"37\">And what I say unto you I say unto all, Watch.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">After 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.</VERS>\r\n      <VERS vnumber=\"2\">But they said, Not on the feast day, lest there be an uproar of the people.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And there were some that had indignation within themselves, and said, Why was this waste of the ointment made?</VERS>\r\n      <VERS vnumber=\"5\">For it might have been sold for more than three hundred pence, and have been given to the poor. And they murmured against her.</VERS>\r\n      <VERS vnumber=\"6\">And Jesus said, Let her alone; why trouble ye her? she hath wrought a good work on me.</VERS>\r\n      <VERS vnumber=\"7\">For ye have the poor with you always, and whensoever ye will ye may do them good: but me ye have not always.</VERS>\r\n      <VERS vnumber=\"8\">She hath done what she could: she is come aforehand to anoint my body to the burying.</VERS>\r\n      <VERS vnumber=\"9\">Verily 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.</VERS>\r\n      <VERS vnumber=\"10\">And Judas Iscariot, one of the twelve, went unto the chief priests, to betray him unto them.</VERS>\r\n      <VERS vnumber=\"11\">And when they heard it, they were glad, and promised to give him money. And he sought how he might conveniently betray him.</VERS>\r\n      <VERS vnumber=\"12\">And 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?</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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?</VERS>\r\n      <VERS vnumber=\"15\">And he will shew you a large upper room furnished and prepared: there make ready for us.</VERS>\r\n      <VERS vnumber=\"16\">And his disciples went forth, and came into the city, and found as he had said unto them: and they made ready the passover.</VERS>\r\n      <VERS vnumber=\"17\">And in the evening he cometh with the twelve.</VERS>\r\n      <VERS vnumber=\"18\">And as they sat and did eat, Jesus said, Verily I say unto you, One of you which eateth with me shall betray me.</VERS>\r\n      <VERS vnumber=\"19\">And they began to be sorrowful, and to say unto him one by one, Is it I? and another said, Is it I?</VERS>\r\n      <VERS vnumber=\"20\">And he answered and said unto them, It is one of the twelve, that dippeth with me in the dish.</VERS>\r\n      <VERS vnumber=\"21\">The 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.</VERS>\r\n      <VERS vnumber=\"22\">And as they did eat, Jesus took bread, and blessed, and brake it, and gave to them, and said, Take, eat: this is my body.</VERS>\r\n      <VERS vnumber=\"23\">And he took the cup, and when he had given thanks, he gave it to them: and they all drank of it.</VERS>\r\n      <VERS vnumber=\"24\">And he said unto them, This is my blood of the new testament, which is shed for many.</VERS>\r\n      <VERS vnumber=\"25\">Verily 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.</VERS>\r\n      <VERS vnumber=\"26\">And when they had sung an hymn, they went out into the mount of Olives.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">But after that I am risen, I will go before you into Galilee.</VERS>\r\n      <VERS vnumber=\"29\">But Peter said unto him, Although all shall be offended, yet will not I.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">But he spake the more vehemently, If I should die with thee, I will not deny thee in any wise. Likewise also said they all.</VERS>\r\n      <VERS vnumber=\"32\">And they came to a place which was named Gethsemane: and he saith to his disciples, Sit ye here, while I shall pray.</VERS>\r\n      <VERS vnumber=\"33\">And he taketh with him Peter and James and John, and began to be sore amazed, and to be very heavy;</VERS>\r\n      <VERS vnumber=\"34\">And saith unto them, My soul is exceeding sorrowful unto death: tarry ye here, and watch.</VERS>\r\n      <VERS vnumber=\"35\">And he went forward a little, and fell on the ground, and prayed that, if it were possible, the hour might pass from him.</VERS>\r\n      <VERS vnumber=\"36\">And 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.</VERS>\r\n      <VERS vnumber=\"37\">And he cometh, and findeth them sleeping, and saith unto Peter, Simon, sleepest thou? couldest not thou watch one hour?</VERS>\r\n      <VERS vnumber=\"38\">Watch ye and pray, lest ye enter into temptation. The spirit truly is ready, but the flesh is weak.</VERS>\r\n      <VERS vnumber=\"39\">And again he went away, and prayed, and spake the same words.</VERS>\r\n      <VERS vnumber=\"40\">And when he returned, he found them asleep again, (for their eyes were heavy,) neither wist they what to answer him.</VERS>\r\n      <VERS vnumber=\"41\">And 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.</VERS>\r\n      <VERS vnumber=\"42\">Rise up, let us go; lo, he that betrayeth me is at hand.</VERS>\r\n      <VERS vnumber=\"43\">And 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.</VERS>\r\n      <VERS vnumber=\"44\">And 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.</VERS>\r\n      <VERS vnumber=\"45\">And as soon as he was come, he goeth straightway to him, and saith, Master, master; and kissed him.</VERS>\r\n      <VERS vnumber=\"46\">And they laid their hands on him, and took him.</VERS>\r\n      <VERS vnumber=\"47\">And one of them that stood by drew a sword, and smote a servant of the high priest, and cut off his ear.</VERS>\r\n      <VERS vnumber=\"48\">And Jesus answered and said unto them, Are ye come out, as against a thief, with swords and with staves to take me?</VERS>\r\n      <VERS vnumber=\"49\">I was daily with you in the temple teaching, and ye took me not: but the scriptures must be fulfilled.</VERS>\r\n      <VERS vnumber=\"50\">And they all forsook him, and fled.</VERS>\r\n      <VERS vnumber=\"51\">And there followed him a certain young man, having a linen cloth cast about his naked body; and the young men laid hold on him:</VERS>\r\n      <VERS vnumber=\"52\">And he left the linen cloth, and fled from them naked.</VERS>\r\n      <VERS vnumber=\"53\">And they led Jesus away to the high priest: and with him were assembled all the chief priests and the elders and the scribes.</VERS>\r\n      <VERS vnumber=\"54\">And 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.</VERS>\r\n      <VERS vnumber=\"55\">And the chief priests and all the council sought for witness against Jesus to put him to death; and found none.</VERS>\r\n      <VERS vnumber=\"56\">For many bare false witness against him, but their witness agreed not together.</VERS>\r\n      <VERS vnumber=\"57\">And there arose certain, and bare false witness against him, saying,</VERS>\r\n      <VERS vnumber=\"58\">We heard him say, I will destroy this temple that is made with hands, and within three days I will build another made without hands.</VERS>\r\n      <VERS vnumber=\"59\">But neither so did their witness agree together.</VERS>\r\n      <VERS vnumber=\"60\">And the high priest stood up in the midst, and asked Jesus, saying, Answerest thou nothing? what is it which these witness against thee?</VERS>\r\n      <VERS vnumber=\"61\">But 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?</VERS>\r\n      <VERS vnumber=\"62\">And 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.</VERS>\r\n      <VERS vnumber=\"63\">Then the high priest rent his clothes, and saith, What need we any further witnesses?</VERS>\r\n      <VERS vnumber=\"64\">Ye have heard the blasphemy: what think ye? And they all condemned him to be guilty of death.</VERS>\r\n      <VERS vnumber=\"65\">And 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.</VERS>\r\n      <VERS vnumber=\"66\">And as Peter was beneath in the palace, there cometh one of the maids of the high priest:</VERS>\r\n      <VERS vnumber=\"67\">And when she saw Peter warming himself, she looked upon him, and said, And thou also wast with Jesus of Nazareth.</VERS>\r\n      <VERS vnumber=\"68\">But he denied, saying, I know not, neither understand I what thou sayest. And he went out into the porch; and the cock crew.</VERS>\r\n      <VERS vnumber=\"69\">And a maid saw him again, and began to say to them that stood by, This is one of them.</VERS>\r\n      <VERS vnumber=\"70\">And 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.</VERS>\r\n      <VERS vnumber=\"71\">But he began to curse and to swear, saying, I know not this man of whom ye speak.</VERS>\r\n      <VERS vnumber=\"72\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And Pilate asked him, Art thou the King of the Jews? And he answering said unto him, Thou sayest it.</VERS>\r\n      <VERS vnumber=\"3\">And the chief priests accused him of many things: but he answered nothing.</VERS>\r\n      <VERS vnumber=\"4\">And Pilate asked him again, saying, Answerest thou nothing? behold how many things they witness against thee.</VERS>\r\n      <VERS vnumber=\"5\">But Jesus yet answered nothing; so that Pilate marvelled.</VERS>\r\n      <VERS vnumber=\"6\">Now at that feast he released unto them one prisoner, whomsoever they desired.</VERS>\r\n      <VERS vnumber=\"7\">And there was one named Barabbas, which lay bound with them that had made insurrection with him, who had committed murder in the insurrection.</VERS>\r\n      <VERS vnumber=\"8\">And the multitude crying aloud began to desire him to do as he had ever done unto them.</VERS>\r\n      <VERS vnumber=\"9\">But Pilate answered them, saying, Will ye that I release unto you the King of the Jews?</VERS>\r\n      <VERS vnumber=\"10\">For he knew that the chief priests had delivered him for envy.</VERS>\r\n      <VERS vnumber=\"11\">But the chief priests moved the people, that he should rather release Barabbas unto them.</VERS>\r\n      <VERS vnumber=\"12\">And 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?</VERS>\r\n      <VERS vnumber=\"13\">And they cried out again, Crucify him.</VERS>\r\n      <VERS vnumber=\"14\">Then Pilate said unto them, Why, what evil hath he done? And they cried out the more exceedingly, Crucify him.</VERS>\r\n      <VERS vnumber=\"15\">And so Pilate, willing to content the people, released Barabbas unto them, and delivered Jesus, when he had scourged him, to be crucified.</VERS>\r\n      <VERS vnumber=\"16\">And the soldiers led him away into the hall, called Praetorium; and they call together the whole band.</VERS>\r\n      <VERS vnumber=\"17\">And they clothed him with purple, and platted a crown of thorns, and put it about his head,</VERS>\r\n      <VERS vnumber=\"18\">And began to salute him, Hail, King of the Jews!</VERS>\r\n      <VERS vnumber=\"19\">And they smote him on the head with a reed, and did spit upon him, and bowing their knees worshipped him.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And they compel one Simon a Cyrenian, who passed by, coming out of the country, the father of Alexander and Rufus, to bear his cross.</VERS>\r\n      <VERS vnumber=\"22\">And they bring him unto the place Golgotha, which is, being interpreted, The place of a skull.</VERS>\r\n      <VERS vnumber=\"23\">And they gave him to drink wine mingled with myrrh: but he received it not.</VERS>\r\n      <VERS vnumber=\"24\">And when they had crucified him, they parted his garments, casting lots upon them, what every man should take.</VERS>\r\n      <VERS vnumber=\"25\">And it was the third hour, and they crucified him.</VERS>\r\n      <VERS vnumber=\"26\">And the superscription of his accusation was written over, THE KING OF THE JEWS.</VERS>\r\n      <VERS vnumber=\"27\">And with him they crucify two thieves; the one on his right hand, and the other on his left.</VERS>\r\n      <VERS vnumber=\"28\">And the scripture was fulfilled, which saith, And he was numbered with the transgressors.</VERS>\r\n      <VERS vnumber=\"29\">And they that passed by railed on him, wagging their heads, and saying, Ah, thou that destroyest the temple, and buildest it in three days,</VERS>\r\n      <VERS vnumber=\"30\">Save thyself, and come down from the cross.</VERS>\r\n      <VERS vnumber=\"31\">Likewise also the chief priests mocking said among themselves with the scribes, He saved others; himself he cannot save.</VERS>\r\n      <VERS vnumber=\"32\">Let 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.</VERS>\r\n      <VERS vnumber=\"33\">And when the sixth hour was come, there was darkness over the whole land until the ninth hour.</VERS>\r\n      <VERS vnumber=\"34\">And 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?</VERS>\r\n      <VERS vnumber=\"35\">And some of them that stood by, when they heard it, said, Behold, he calleth Elias.</VERS>\r\n      <VERS vnumber=\"36\">And 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.</VERS>\r\n      <VERS vnumber=\"37\">And Jesus cried with a loud voice, and gave up the ghost.</VERS>\r\n      <VERS vnumber=\"38\">And the veil of the temple was rent in twain from the top to the bottom.</VERS>\r\n      <VERS vnumber=\"39\">And 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.</VERS>\r\n      <VERS vnumber=\"40\">There 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;</VERS>\r\n      <VERS vnumber=\"41\">Who also, when he was in Galilee, followed him, and ministered unto him;) and many other women which came up with him unto Jerusalem.</VERS>\r\n      <VERS vnumber=\"42\">And now when the even was come, because it was the preparation, that is, the day before the sabbath,</VERS>\r\n      <VERS vnumber=\"43\">Joseph 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.</VERS>\r\n      <VERS vnumber=\"44\">And Pilate marvelled if he were already dead: and calling unto him the centurion, he asked him whether he had been any while dead.</VERS>\r\n      <VERS vnumber=\"45\">And when he knew it of the centurion, he gave the body to Joseph.</VERS>\r\n      <VERS vnumber=\"46\">And 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.</VERS>\r\n      <VERS vnumber=\"47\">And Mary Magdalene and Mary the mother of Joses beheld where he was laid.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And very early in the morning the first day of the week, they came unto the sepulchre at the rising of the sun.</VERS>\r\n      <VERS vnumber=\"3\">And they said among themselves, Who shall roll us away the stone from the door of the sepulchre?</VERS>\r\n      <VERS vnumber=\"4\">And when they looked, they saw that the stone was rolled away: for it was very great.</VERS>\r\n      <VERS vnumber=\"5\">And entering into the sepulchre, they saw a young man sitting on the right side, clothed in a long white garment; and they were affrighted.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">But 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">Now 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.</VERS>\r\n      <VERS vnumber=\"10\">And she went and told them that had been with him, as they mourned and wept.</VERS>\r\n      <VERS vnumber=\"11\">And they, when they had heard that he was alive, and had been seen of her, believed not.</VERS>\r\n      <VERS vnumber=\"12\">After that he appeared in another form unto two of them, as they walked, and went into the country.</VERS>\r\n      <VERS vnumber=\"13\">And they went and told it unto the residue: neither believed they them.</VERS>\r\n      <VERS vnumber=\"14\">Afterward 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.</VERS>\r\n      <VERS vnumber=\"15\">And he said unto them, Go ye into all the world, and preach the gospel to every creature.</VERS>\r\n      <VERS vnumber=\"16\">He that believeth and is baptized shall be saved; but he that believeth not shall be damned.</VERS>\r\n      <VERS vnumber=\"17\">And these signs shall follow them that believe; In my name shall they cast out devils; they shall speak with new tongues;</VERS>\r\n      <VERS vnumber=\"18\">They 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.</VERS>\r\n      <VERS vnumber=\"19\">So then after the Lord had spoken unto them, he was received up into heaven, and sat on the right hand of God.</VERS>\r\n      <VERS vnumber=\"20\">And they went forth, and preached every where, the Lord working with them, and confirming the word with signs following. Amen.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"42\" bname=\"Luke\" bsname=\"Luke\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">Forasmuch as many have taken in hand to set forth in order a declaration of those things which are most surely believed among us,</VERS>\r\n      <VERS vnumber=\"2\">Even as they delivered them unto us, which from the beginning were eyewitnesses, and ministers of the word;</VERS>\r\n      <VERS vnumber=\"3\">It 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,</VERS>\r\n      <VERS vnumber=\"4\">That thou mightest know the certainty of those things, wherein thou hast been instructed.</VERS>\r\n      <VERS vnumber=\"5\">There 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.</VERS>\r\n      <VERS vnumber=\"6\">And they were both righteous before God, walking in all the commandments and ordinances of the Lord blameless.</VERS>\r\n      <VERS vnumber=\"7\">And they had no child, because that Elisabeth was barren, and they both were now well stricken in years.</VERS>\r\n      <VERS vnumber=\"8\">And it came to pass, that while he executed the priest's office before God in the order of his course,</VERS>\r\n      <VERS vnumber=\"9\">According to the custom of the priest's office, his lot was to burn incense when he went into the temple of the Lord.</VERS>\r\n      <VERS vnumber=\"10\">And the whole multitude of the people were praying without at the time of incense.</VERS>\r\n      <VERS vnumber=\"11\">And there appeared unto him an angel of the Lord standing on the right side of the altar of incense.</VERS>\r\n      <VERS vnumber=\"12\">And when Zacharias saw him, he was troubled, and fear fell upon him.</VERS>\r\n      <VERS vnumber=\"13\">But 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.</VERS>\r\n      <VERS vnumber=\"14\">And thou shalt have joy and gladness; and many shall rejoice at his birth.</VERS>\r\n      <VERS vnumber=\"15\">For 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.</VERS>\r\n      <VERS vnumber=\"16\">And many of the children of Israel shall he turn to the Lord their God.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And Zacharias said unto the angel, Whereby shall I know this? for I am an old man, and my wife well stricken in years.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And, 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.</VERS>\r\n      <VERS vnumber=\"21\">And the people waited for Zacharias, and marvelled that he tarried so long in the temple.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And it came to pass, that, as soon as the days of his ministration were accomplished, he departed to his own house.</VERS>\r\n      <VERS vnumber=\"24\">And after those days his wife Elisabeth conceived, and hid herself five months, saying,</VERS>\r\n      <VERS vnumber=\"25\">Thus hath the Lord dealt with me in the days wherein he looked on me, to take away my reproach among men.</VERS>\r\n      <VERS vnumber=\"26\">And in the sixth month the angel Gabriel was sent from God unto a city of Galilee, named Nazareth,</VERS>\r\n      <VERS vnumber=\"27\">To a virgin espoused to a man whose name was Joseph, of the house of David; and the virgin's name was Mary.</VERS>\r\n      <VERS vnumber=\"28\">And the angel came in unto her, and said, Hail, thou that art highly favoured, the Lord is with thee: blessed art thou among women.</VERS>\r\n      <VERS vnumber=\"29\">And when she saw him, she was troubled at his saying, and cast in her mind what manner of salutation this should be.</VERS>\r\n      <VERS vnumber=\"30\">And the angel said unto her, Fear not, Mary: for thou hast found favour with God.</VERS>\r\n      <VERS vnumber=\"31\">And, behold, thou shalt conceive in thy womb, and bring forth a son, and shalt call his name JESUS.</VERS>\r\n      <VERS vnumber=\"32\">He 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:</VERS>\r\n      <VERS vnumber=\"33\">And he shall reign over the house of Jacob for ever; and of his kingdom there shall be no end.</VERS>\r\n      <VERS vnumber=\"34\">Then said Mary unto the angel, How shall this be, seeing I know not a man?</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">And, 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.</VERS>\r\n      <VERS vnumber=\"37\">For with God nothing shall be impossible.</VERS>\r\n      <VERS vnumber=\"38\">And Mary said, Behold the handmaid of the Lord; be it unto me according to thy word. And the angel departed from her.</VERS>\r\n      <VERS vnumber=\"39\">And Mary arose in those days, and went into the hill country with haste, into a city of Juda;</VERS>\r\n      <VERS vnumber=\"40\">And entered into the house of Zacharias, and saluted Elisabeth.</VERS>\r\n      <VERS vnumber=\"41\">And 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:</VERS>\r\n      <VERS vnumber=\"42\">And she spake out with a loud voice, and said, Blessed art thou among women, and blessed is the fruit of thy womb.</VERS>\r\n      <VERS vnumber=\"43\">And whence is this to me, that the mother of my Lord should come to me?</VERS>\r\n      <VERS vnumber=\"44\">For, lo, as soon as the voice of thy salutation sounded in mine ears, the babe leaped in my womb for joy.</VERS>\r\n      <VERS vnumber=\"45\">And blessed is she that believed: for there shall be a performance of those things which were told her from the Lord.</VERS>\r\n      <VERS vnumber=\"46\">And Mary said, My soul doth magnify the Lord,</VERS>\r\n      <VERS vnumber=\"47\">And my spirit hath rejoiced in God my Saviour.</VERS>\r\n      <VERS vnumber=\"48\">For he hath regarded the low estate of his handmaiden: for, behold, from henceforth all generations shall call me blessed.</VERS>\r\n      <VERS vnumber=\"49\">For he that is mighty hath done to me great things; and holy is his name.</VERS>\r\n      <VERS vnumber=\"50\">And his mercy is on them that fear him from generation to generation.</VERS>\r\n      <VERS vnumber=\"51\">He hath shewed strength with his arm; he hath scattered the proud in the imagination of their hearts.</VERS>\r\n      <VERS vnumber=\"52\">He hath put down the mighty from their seats, and exalted them of low degree.</VERS>\r\n      <VERS vnumber=\"53\">He hath filled the hungry with good things; and the rich he hath sent empty away.</VERS>\r\n      <VERS vnumber=\"54\">He hath holpen his servant Israel, in remembrance of his mercy;</VERS>\r\n      <VERS vnumber=\"55\">As he spake to our fathers, to Abraham, and to his seed for ever.</VERS>\r\n      <VERS vnumber=\"56\">And Mary abode with her about three months, and returned to her own house.</VERS>\r\n      <VERS vnumber=\"57\">Now Elisabeth's full time came that she should be delivered; and she brought forth a son.</VERS>\r\n      <VERS vnumber=\"58\">And her neighbours and her cousins heard how the Lord had shewed great mercy upon her; and they rejoiced with her.</VERS>\r\n      <VERS vnumber=\"59\">And 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.</VERS>\r\n      <VERS vnumber=\"60\">And his mother answered and said, Not so; but he shall be called John.</VERS>\r\n      <VERS vnumber=\"61\">And they said unto her, There is none of thy kindred that is called by this name.</VERS>\r\n      <VERS vnumber=\"62\">And they made signs to his father, how he would have him called.</VERS>\r\n      <VERS vnumber=\"63\">And he asked for a writing table, and wrote, saying, His name is John. And they marvelled all.</VERS>\r\n      <VERS vnumber=\"64\">And his mouth was opened immediately, and his tongue loosed, and he spake, and praised God.</VERS>\r\n      <VERS vnumber=\"65\">And fear came on all that dwelt round about them: and all these sayings were noised abroad throughout all the hill country of Judaea.</VERS>\r\n      <VERS vnumber=\"66\">And 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.</VERS>\r\n      <VERS vnumber=\"67\">And his father Zacharias was filled with the Holy Ghost, and prophesied, saying,</VERS>\r\n      <VERS vnumber=\"68\">Blessed be the Lord God of Israel; for he hath visited and redeemed his people,</VERS>\r\n      <VERS vnumber=\"69\">And hath raised up an horn of salvation for us in the house of his servant David;</VERS>\r\n      <VERS vnumber=\"70\">As he spake by the mouth of his holy prophets, which have been since the world began:</VERS>\r\n      <VERS vnumber=\"71\">That we should be saved from our enemies, and from the hand of all that hate us;</VERS>\r\n      <VERS vnumber=\"72\">To perform the mercy promised to our fathers, and to remember his holy covenant;</VERS>\r\n      <VERS vnumber=\"73\">The oath which he sware to our father Abraham,</VERS>\r\n      <VERS vnumber=\"74\">That he would grant unto us, that we being delivered out of the hand of our enemies might serve him without fear,</VERS>\r\n      <VERS vnumber=\"75\">In holiness and righteousness before him, all the days of our life.</VERS>\r\n      <VERS vnumber=\"76\">And thou, child, shalt be called the prophet of the Highest: for thou shalt go before the face of the Lord to prepare his ways;</VERS>\r\n      <VERS vnumber=\"77\">To give knowledge of salvation unto his people by the remission of their sins,</VERS>\r\n      <VERS vnumber=\"78\">Through the tender mercy of our God; whereby the dayspring from on high hath visited us,</VERS>\r\n      <VERS vnumber=\"79\">To give light to them that sit in darkness and in the shadow of death, to guide our feet into the way of peace.</VERS>\r\n      <VERS vnumber=\"80\">And the child grew, and waxed strong in spirit, and was in the deserts till the day of his shewing unto Israel.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">And it came to pass in those days, that there went out a decree from Caesar Augustus, that all the world should be taxed.</VERS>\r\n      <VERS vnumber=\"2\">And this taxing was first made when Cyrenius was governor of Syria.)</VERS>\r\n      <VERS vnumber=\"3\">And all went to be taxed, every one into his own city.</VERS>\r\n      <VERS vnumber=\"4\">And 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:)</VERS>\r\n      <VERS vnumber=\"5\">To be taxed with Mary his espoused wife, being great with child.</VERS>\r\n      <VERS vnumber=\"6\">And so it was, that, while they were there, the days were accomplished that she should be delivered.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And there were in the same country shepherds abiding in the field, keeping watch over their flock by night.</VERS>\r\n      <VERS vnumber=\"9\">And, lo, the angel of the Lord came upon them, and the glory of the Lord shone round about them: and they were sore afraid.</VERS>\r\n      <VERS vnumber=\"10\">And the angel said unto them, Fear not: for, behold, I bring you good tidings of great joy, which shall be to all people.</VERS>\r\n      <VERS vnumber=\"11\">For unto you is born this day in the city of David a Saviour, which is Christ the Lord.</VERS>\r\n      <VERS vnumber=\"12\">And this shall be a sign unto you; Ye shall find the babe wrapped in swaddling clothes, lying in a manger.</VERS>\r\n      <VERS vnumber=\"13\">And suddenly there was with the angel a multitude of the heavenly host praising God, and saying,</VERS>\r\n      <VERS vnumber=\"14\">Glory to God in the highest, and on earth peace, good will toward men.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And they came with haste, and found Mary, and Joseph, and the babe lying in a manger.</VERS>\r\n      <VERS vnumber=\"17\">And when they had seen it, they made known abroad the saying which was told them concerning this child.</VERS>\r\n      <VERS vnumber=\"18\">And all they that heard it wondered at those things which were told them by the shepherds.</VERS>\r\n      <VERS vnumber=\"19\">But Mary kept all these things, and pondered them in her heart.</VERS>\r\n      <VERS vnumber=\"20\">And the shepherds returned, glorifying and praising God for all the things that they had heard and seen, as it was told unto them.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And 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;</VERS>\r\n      <VERS vnumber=\"23\">As it is written in the law of the Lord, Every male that openeth the womb shall be called holy to the Lord;)</VERS>\r\n      <VERS vnumber=\"24\">And to offer a sacrifice according to that which is said in the law of the Lord, A pair of turtledoves, or two young pigeons.</VERS>\r\n      <VERS vnumber=\"25\">And, 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.</VERS>\r\n      <VERS vnumber=\"26\">And it was revealed unto him by the Holy Ghost, that he should not see death, before he had seen the Lord's Christ.</VERS>\r\n      <VERS vnumber=\"27\">And 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,</VERS>\r\n      <VERS vnumber=\"28\">Then took he him up in his arms, and blessed God, and said,</VERS>\r\n      <VERS vnumber=\"29\">Lord, now lettest thou thy servant depart in peace, according to thy word:</VERS>\r\n      <VERS vnumber=\"30\">For mine eyes have seen thy salvation,</VERS>\r\n      <VERS vnumber=\"31\">Which thou hast prepared before the face of all people;</VERS>\r\n      <VERS vnumber=\"32\">A light to lighten the Gentiles, and the glory of thy people Israel.</VERS>\r\n      <VERS vnumber=\"33\">And Joseph and his mother marvelled at those things which were spoken of him.</VERS>\r\n      <VERS vnumber=\"34\">And 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;</VERS>\r\n      <VERS vnumber=\"35\">Yea, a sword shall pierce through thy own soul also,) that the thoughts of many hearts may be revealed.</VERS>\r\n      <VERS vnumber=\"36\">And 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;</VERS>\r\n      <VERS vnumber=\"37\">And 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.</VERS>\r\n      <VERS vnumber=\"38\">And she coming in that instant gave thanks likewise unto the Lord, and spake of him to all them that looked for redemption in Jerusalem.</VERS>\r\n      <VERS vnumber=\"39\">And when they had performed all things according to the law of the Lord, they returned into Galilee, to their own city Nazareth.</VERS>\r\n      <VERS vnumber=\"40\">And the child grew, and waxed strong in spirit, filled with wisdom: and the grace of God was upon him.</VERS>\r\n      <VERS vnumber=\"41\">Now his parents went to Jerusalem every year at the feast of the passover.</VERS>\r\n      <VERS vnumber=\"42\">And when he was twelve years old, they went up to Jerusalem after the custom of the feast.</VERS>\r\n      <VERS vnumber=\"43\">And 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.</VERS>\r\n      <VERS vnumber=\"44\">But they, supposing him to have been in the company, went a day's journey; and they sought him among their kinsfolk and acquaintance.</VERS>\r\n      <VERS vnumber=\"45\">And when they found him not, they turned back again to Jerusalem, seeking him.</VERS>\r\n      <VERS vnumber=\"46\">And 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.</VERS>\r\n      <VERS vnumber=\"47\">And all that heard him were astonished at his understanding and answers.</VERS>\r\n      <VERS vnumber=\"48\">And 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.</VERS>\r\n      <VERS vnumber=\"49\">And he said unto them, How is it that ye sought me? wist ye not that I must be about my Father's business?</VERS>\r\n      <VERS vnumber=\"50\">And they understood not the saying which he spake unto them.</VERS>\r\n      <VERS vnumber=\"51\">And he went down with them, and came to Nazareth, and was subject unto them: but his mother kept all these sayings in her heart.</VERS>\r\n      <VERS vnumber=\"52\">And Jesus increased in wisdom and stature, and in favour with God and man.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Now 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,</VERS>\r\n      <VERS vnumber=\"2\">Annas and Caiaphas being the high priests, the word of God came unto John the son of Zacharias in the wilderness.</VERS>\r\n      <VERS vnumber=\"3\">And he came into all the country about Jordan, preaching the baptism of repentance for the remission of sins;</VERS>\r\n      <VERS vnumber=\"4\">As 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.</VERS>\r\n      <VERS vnumber=\"5\">Every 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;</VERS>\r\n      <VERS vnumber=\"6\">And all flesh shall see the salvation of God.</VERS>\r\n      <VERS vnumber=\"7\">Then 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?</VERS>\r\n      <VERS vnumber=\"8\">Bring 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And the people asked him, saying, What shall we do then?</VERS>\r\n      <VERS vnumber=\"11\">He 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.</VERS>\r\n      <VERS vnumber=\"12\">Then came also publicans to be baptized, and said unto him, Master, what shall we do?</VERS>\r\n      <VERS vnumber=\"13\">And he said unto them, Exact no more than that which is appointed you.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And as the people were in expectation, and all men mused in their hearts of John, whether he were the Christ, or not;</VERS>\r\n      <VERS vnumber=\"16\">John 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:</VERS>\r\n      <VERS vnumber=\"17\">Whose 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.</VERS>\r\n      <VERS vnumber=\"18\">And many other things in his exhortation preached he unto the people.</VERS>\r\n      <VERS vnumber=\"19\">But Herod the tetrarch, being reproved by him for Herodias his brother Philip's wife, and for all the evils which Herod had done,</VERS>\r\n      <VERS vnumber=\"20\">Added yet this above all, that he shut up John in prison.</VERS>\r\n      <VERS vnumber=\"21\">Now when all the people were baptized, it came to pass, that Jesus also being baptized, and praying, the heaven was opened,</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And Jesus himself began to be about thirty years of age, being (as was supposed) the son of Joseph, which was the son of Heli,</VERS>\r\n      <VERS vnumber=\"24\">Which 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,</VERS>\r\n      <VERS vnumber=\"25\">Which 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,</VERS>\r\n      <VERS vnumber=\"26\">Which 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,</VERS>\r\n      <VERS vnumber=\"27\">Which 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,</VERS>\r\n      <VERS vnumber=\"28\">Which 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,</VERS>\r\n      <VERS vnumber=\"29\">Which 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,</VERS>\r\n      <VERS vnumber=\"30\">Which 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,</VERS>\r\n      <VERS vnumber=\"31\">Which 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,</VERS>\r\n      <VERS vnumber=\"32\">Which 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,</VERS>\r\n      <VERS vnumber=\"33\">Which 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,</VERS>\r\n      <VERS vnumber=\"34\">Which 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,</VERS>\r\n      <VERS vnumber=\"35\">Which 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,</VERS>\r\n      <VERS vnumber=\"36\">Which 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,</VERS>\r\n      <VERS vnumber=\"37\">Which 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,</VERS>\r\n      <VERS vnumber=\"38\">Which was the son of Enos, which was the son of Seth, which was the son of Adam, which was the son of God.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">And Jesus being full of the Holy Ghost returned from Jordan, and was led by the Spirit into the wilderness,</VERS>\r\n      <VERS vnumber=\"2\">Being forty days tempted of the devil. And in those days he did eat nothing: and when they were ended, he afterward hungered.</VERS>\r\n      <VERS vnumber=\"3\">And the devil said unto him, If thou be the Son of God, command this stone that it be made bread.</VERS>\r\n      <VERS vnumber=\"4\">And Jesus answered him, saying, It is written, That man shall not live by bread alone, but by every word of God.</VERS>\r\n      <VERS vnumber=\"5\">And the devil, taking him up into an high mountain, shewed unto him all the kingdoms of the world in a moment of time.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">If thou therefore wilt worship me, all shall be thine.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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:</VERS>\r\n      <VERS vnumber=\"10\">For it is written, He shall give his angels charge over thee, to keep thee:</VERS>\r\n      <VERS vnumber=\"11\">And in their hands they shall bear thee up, lest at any time thou dash thy foot against a stone.</VERS>\r\n      <VERS vnumber=\"12\">And Jesus answering said unto him, It is said, Thou shalt not tempt the Lord thy God.</VERS>\r\n      <VERS vnumber=\"13\">And when the devil had ended all the temptation, he departed from him for a season.</VERS>\r\n      <VERS vnumber=\"14\">And Jesus returned in the power of the Spirit into Galilee: and there went out a fame of him through all the region round about.</VERS>\r\n      <VERS vnumber=\"15\">And he taught in their synagogues, being glorified of all.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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,</VERS>\r\n      <VERS vnumber=\"18\">The 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,</VERS>\r\n      <VERS vnumber=\"19\">To preach the acceptable year of the Lord.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And he began to say unto them, This day is this scripture fulfilled in your ears.</VERS>\r\n      <VERS vnumber=\"22\">And 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?</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And he said, Verily I say unto you, No prophet is accepted in his own country.</VERS>\r\n      <VERS vnumber=\"25\">But 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;</VERS>\r\n      <VERS vnumber=\"26\">But unto none of them was Elias sent, save unto Sarepta, a city of Sidon, unto a woman that was a widow.</VERS>\r\n      <VERS vnumber=\"27\">And many lepers were in Israel in the time of Eliseus the prophet; and none of them was cleansed, saving Naaman the Syrian.</VERS>\r\n      <VERS vnumber=\"28\">And all they in the synagogue, when they heard these things, were filled with wrath,</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">But he passing through the midst of them went his way,</VERS>\r\n      <VERS vnumber=\"31\">And came down to Capernaum, a city of Galilee, and taught them on the sabbath days.</VERS>\r\n      <VERS vnumber=\"32\">And they were astonished at his doctrine: for his word was with power.</VERS>\r\n      <VERS vnumber=\"33\">And in the synagogue there was a man, which had a spirit of an unclean devil, and cried out with a loud voice,</VERS>\r\n      <VERS vnumber=\"34\">Saying, 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.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">And 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.</VERS>\r\n      <VERS vnumber=\"37\">And the fame of him went out into every place of the country round about.</VERS>\r\n      <VERS vnumber=\"38\">And 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.</VERS>\r\n      <VERS vnumber=\"39\">And he stood over her, and rebuked the fever; and it left her: and immediately she arose and ministered unto them.</VERS>\r\n      <VERS vnumber=\"40\">Now 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.</VERS>\r\n      <VERS vnumber=\"41\">And 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.</VERS>\r\n      <VERS vnumber=\"42\">And 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.</VERS>\r\n      <VERS vnumber=\"43\">And he said unto them, I must preach the kingdom of God to other cities also: for therefore am I sent.</VERS>\r\n      <VERS vnumber=\"44\">And he preached in the synagogues of Galilee.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">And it came to pass, that, as the people pressed upon him to hear the word of God, he stood by the lake of Gennesaret,</VERS>\r\n      <VERS vnumber=\"2\">And saw two ships standing by the lake: but the fishermen were gone out of them, and were washing their nets.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">Now when he had left speaking, he said unto Simon, Launch out into the deep, and let down your nets for a draught.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And when they had this done, they inclosed a great multitude of fishes: and their net brake.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">When Simon Peter saw it, he fell down at Jesus' knees, saying, Depart from me; for I am a sinful man, O Lord.</VERS>\r\n      <VERS vnumber=\"9\">For he was astonished, and all that were with him, at the draught of the fishes which they had taken:</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And when they had brought their ships to land, they forsook all, and followed him.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And he put forth his hand, and touched him, saying, I will: be thou clean. And immediately the leprosy departed from him.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">But 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.</VERS>\r\n      <VERS vnumber=\"16\">And he withdrew himself into the wilderness, and prayed.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And, 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And when he saw their faith, he said unto him, Man, thy sins are forgiven thee.</VERS>\r\n      <VERS vnumber=\"21\">And the scribes and the Pharisees began to reason, saying, Who is this which speaketh blasphemies? Who can forgive sins, but God alone?</VERS>\r\n      <VERS vnumber=\"22\">But when Jesus perceived their thoughts, he answering said unto them, What reason ye in your hearts?</VERS>\r\n      <VERS vnumber=\"23\">Whether is easier, to say, Thy sins be forgiven thee; or to say, Rise up and walk?</VERS>\r\n      <VERS vnumber=\"24\">But 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.</VERS>\r\n      <VERS vnumber=\"25\">And immediately he rose up before them, and took up that whereon he lay, and departed to his own house, glorifying God.</VERS>\r\n      <VERS vnumber=\"26\">And they were all amazed, and they glorified God, and were filled with fear, saying, We have seen strange things to day.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And he left all, rose up, and followed him.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">But their scribes and Pharisees murmured against his disciples, saying, Why do ye eat and drink with publicans and sinners?</VERS>\r\n      <VERS vnumber=\"31\">And Jesus answering said unto them, They that are whole need not a physician; but they that are sick.</VERS>\r\n      <VERS vnumber=\"32\">I came not to call the righteous, but sinners to repentance.</VERS>\r\n      <VERS vnumber=\"33\">And 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?</VERS>\r\n      <VERS vnumber=\"34\">And he said unto them, Can ye make the children of the bridechamber fast, while the bridegroom is with them?</VERS>\r\n      <VERS vnumber=\"35\">But the days will come, when the bridegroom shall be taken away from them, and then shall they fast in those days.</VERS>\r\n      <VERS vnumber=\"36\">And 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.</VERS>\r\n      <VERS vnumber=\"37\">And no man putteth new wine into old bottles; else the new wine will burst the bottles, and be spilled, and the bottles shall perish.</VERS>\r\n      <VERS vnumber=\"38\">But new wine must be put into new bottles; and both are preserved.</VERS>\r\n      <VERS vnumber=\"39\">No man also having drunk old wine straightway desireth new: for he saith, The old is better.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And certain of the Pharisees said unto them, Why do ye that which is not lawful to do on the sabbath days?</VERS>\r\n      <VERS vnumber=\"3\">And 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;</VERS>\r\n      <VERS vnumber=\"4\">How 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?</VERS>\r\n      <VERS vnumber=\"5\">And he said unto them, That the Son of man is Lord also of the sabbath.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And the scribes and Pharisees watched him, whether he would heal on the sabbath day; that they might find an accusation against him.</VERS>\r\n      <VERS vnumber=\"8\">But 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.</VERS>\r\n      <VERS vnumber=\"9\">Then 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?</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And they were filled with madness; and communed one with another what they might do to Jesus.</VERS>\r\n      <VERS vnumber=\"12\">And it came to pass in those days, that he went out into a mountain to pray, and continued all night in prayer to God.</VERS>\r\n      <VERS vnumber=\"13\">And when it was day, he called unto him his disciples: and of them he chose twelve, whom also he named apostles;</VERS>\r\n      <VERS vnumber=\"14\">Simon, (whom he also named Peter,) and Andrew his brother, James and John, Philip and Bartholomew,</VERS>\r\n      <VERS vnumber=\"15\">Matthew and Thomas, James the son of Alphaeus, and Simon called Zelotes,</VERS>\r\n      <VERS vnumber=\"16\">And Judas the brother of James, and Judas Iscariot, which also was the traitor.</VERS>\r\n      <VERS vnumber=\"17\">And 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;</VERS>\r\n      <VERS vnumber=\"18\">And they that were vexed with unclean spirits: and they were healed.</VERS>\r\n      <VERS vnumber=\"19\">And the whole multitude sought to touch him: for there went virtue out of him, and healed them all.</VERS>\r\n      <VERS vnumber=\"20\">And he lifted up his eyes on his disciples, and said, Blessed be ye poor: for yours is the kingdom of God.</VERS>\r\n      <VERS vnumber=\"21\">Blessed are ye that hunger now: for ye shall be filled. Blessed are ye that weep now: for ye shall laugh.</VERS>\r\n      <VERS vnumber=\"22\">Blessed 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.</VERS>\r\n      <VERS vnumber=\"23\">Rejoice 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.</VERS>\r\n      <VERS vnumber=\"24\">But woe unto you that are rich! for ye have received your consolation.</VERS>\r\n      <VERS vnumber=\"25\">Woe unto you that are full! for ye shall hunger. Woe unto you that laugh now! for ye shall mourn and weep.</VERS>\r\n      <VERS vnumber=\"26\">Woe unto you, when all men shall speak well of you! for so did their fathers to the false prophets.</VERS>\r\n      <VERS vnumber=\"27\">But I say unto you which hear, Love your enemies, do good to them which hate you,</VERS>\r\n      <VERS vnumber=\"28\">Bless them that curse you, and pray for them which despitefully use you.</VERS>\r\n      <VERS vnumber=\"29\">And unto him that smiteth thee on the one cheek offer also the other; and him that taketh away thy cloke forbid not to take thy coat also.</VERS>\r\n      <VERS vnumber=\"30\">Give to every man that asketh of thee; and of him that taketh away thy goods ask them not again.</VERS>\r\n      <VERS vnumber=\"31\">And as ye would that men should do to you, do ye also to them likewise.</VERS>\r\n      <VERS vnumber=\"32\">For if ye love them which love you, what thank have ye? for sinners also love those that love them.</VERS>\r\n      <VERS vnumber=\"33\">And if ye do good to them which do good to you, what thank have ye? for sinners also do even the same.</VERS>\r\n      <VERS vnumber=\"34\">And 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.</VERS>\r\n      <VERS vnumber=\"35\">But 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.</VERS>\r\n      <VERS vnumber=\"36\">Be ye therefore merciful, as your Father also is merciful.</VERS>\r\n      <VERS vnumber=\"37\">Judge not, and ye shall not be judged: condemn not, and ye shall not be condemned: forgive, and ye shall be forgiven:</VERS>\r\n      <VERS vnumber=\"38\">Give, 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.</VERS>\r\n      <VERS vnumber=\"39\">And he spake a parable unto them, Can the blind lead the blind? shall they not both fall into the ditch?</VERS>\r\n      <VERS vnumber=\"40\">The disciple is not above his master: but every one that is perfect shall be as his master.</VERS>\r\n      <VERS vnumber=\"41\">And why beholdest thou the mote that is in thy brother's eye, but perceivest not the beam that is in thine own eye?</VERS>\r\n      <VERS vnumber=\"42\">Either 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.</VERS>\r\n      <VERS vnumber=\"43\">For a good tree bringeth not forth corrupt fruit; neither doth a corrupt tree bring forth good fruit.</VERS>\r\n      <VERS vnumber=\"44\">For every tree is known by his own fruit. For of thorns men do not gather figs, nor of a bramble bush gather they grapes.</VERS>\r\n      <VERS vnumber=\"45\">A 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.</VERS>\r\n      <VERS vnumber=\"46\">And why call ye me, Lord, Lord, and do not the things which I say?</VERS>\r\n      <VERS vnumber=\"47\">Whosoever cometh to me, and heareth my sayings, and doeth them, I will shew you to whom he is like:</VERS>\r\n      <VERS vnumber=\"48\">He 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.</VERS>\r\n      <VERS vnumber=\"49\">But 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">Now when he had ended all his sayings in the audience of the people, he entered into Capernaum.</VERS>\r\n      <VERS vnumber=\"2\">And a certain centurion's servant, who was dear unto him, was sick, and ready to die.</VERS>\r\n      <VERS vnumber=\"3\">And when he heard of Jesus, he sent unto him the elders of the Jews, beseeching him that he would come and heal his servant.</VERS>\r\n      <VERS vnumber=\"4\">And when they came to Jesus, they besought him instantly, saying, That he was worthy for whom he should do this:</VERS>\r\n      <VERS vnumber=\"5\">For he loveth our nation, and he hath built us a synagogue.</VERS>\r\n      <VERS vnumber=\"6\">Then 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:</VERS>\r\n      <VERS vnumber=\"7\">Wherefore neither thought I myself worthy to come unto thee: but say in a word, and my servant shall be healed.</VERS>\r\n      <VERS vnumber=\"8\">For 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.</VERS>\r\n      <VERS vnumber=\"9\">When 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.</VERS>\r\n      <VERS vnumber=\"10\">And they that were sent, returning to the house, found the servant whole that had been sick.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">Now 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.</VERS>\r\n      <VERS vnumber=\"13\">And when the Lord saw her, he had compassion on her, and said unto her, Weep not.</VERS>\r\n      <VERS vnumber=\"14\">And he came and touched the bier: and they that bare him stood still. And he said, Young man, I say unto thee, Arise.</VERS>\r\n      <VERS vnumber=\"15\">And he that was dead sat up, and began to speak. And he delivered him to his mother.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And this rumour of him went forth throughout all Judaea, and throughout all the region round about.</VERS>\r\n      <VERS vnumber=\"18\">And the disciples of John shewed him of all these things.</VERS>\r\n      <VERS vnumber=\"19\">And John calling unto him two of his disciples sent them to Jesus, saying, Art thou he that should come? or look we for another?</VERS>\r\n      <VERS vnumber=\"20\">When 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?</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">Then 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.</VERS>\r\n      <VERS vnumber=\"23\">And blessed is he, whosoever shall not be offended in me.</VERS>\r\n      <VERS vnumber=\"24\">And 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?</VERS>\r\n      <VERS vnumber=\"25\">But 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.</VERS>\r\n      <VERS vnumber=\"26\">But what went ye out for to see? A prophet? Yea, I say unto you, and much more than a prophet.</VERS>\r\n      <VERS vnumber=\"27\">This is he, of whom it is written, Behold, I send my messenger before thy face, which shall prepare thy way before thee.</VERS>\r\n      <VERS vnumber=\"28\">For 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.</VERS>\r\n      <VERS vnumber=\"29\">And all the people that heard him, and the publicans, justified God, being baptized with the baptism of John.</VERS>\r\n      <VERS vnumber=\"30\">But the Pharisees and lawyers rejected the counsel of God against themselves, being not baptized of him.</VERS>\r\n      <VERS vnumber=\"31\">And the Lord said, Whereunto then shall I liken the men of this generation? and to what are they like?</VERS>\r\n      <VERS vnumber=\"32\">They 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.</VERS>\r\n      <VERS vnumber=\"33\">For John the Baptist came neither eating bread nor drinking wine; and ye say, He hath a devil.</VERS>\r\n      <VERS vnumber=\"34\">The Son of man is come eating and drinking; and ye say, Behold a gluttonous man, and a winebibber, a friend of publicans and sinners!</VERS>\r\n      <VERS vnumber=\"35\">But wisdom is justified of all her children.</VERS>\r\n      <VERS vnumber=\"36\">And 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.</VERS>\r\n      <VERS vnumber=\"37\">And, 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,</VERS>\r\n      <VERS vnumber=\"38\">And 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.</VERS>\r\n      <VERS vnumber=\"39\">Now 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.</VERS>\r\n      <VERS vnumber=\"40\">And Jesus answering said unto him, Simon, I have somewhat to say unto thee. And he saith, Master, say on.</VERS>\r\n      <VERS vnumber=\"41\">There was a certain creditor which had two debtors: the one owed five hundred pence, and the other fifty.</VERS>\r\n      <VERS vnumber=\"42\">And when they had nothing to pay, he frankly forgave them both. Tell me therefore, which of them will love him most?</VERS>\r\n      <VERS vnumber=\"43\">Simon answered and said, I suppose that he, to whom he forgave most. And he said unto him, Thou hast rightly judged.</VERS>\r\n      <VERS vnumber=\"44\">And 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.</VERS>\r\n      <VERS vnumber=\"45\">Thou gavest me no kiss: but this woman since the time I came in hath not ceased to kiss my feet.</VERS>\r\n      <VERS vnumber=\"46\">My head with oil thou didst not anoint: but this woman hath anointed my feet with ointment.</VERS>\r\n      <VERS vnumber=\"47\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"48\">And he said unto her, Thy sins are forgiven.</VERS>\r\n      <VERS vnumber=\"49\">And they that sat at meat with him began to say within themselves, Who is this that forgiveth sins also?</VERS>\r\n      <VERS vnumber=\"50\">And he said to the woman, Thy faith hath saved thee; go in peace.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">And 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,</VERS>\r\n      <VERS vnumber=\"2\">And certain women, which had been healed of evil spirits and infirmities, Mary called Magdalene, out of whom went seven devils,</VERS>\r\n      <VERS vnumber=\"3\">And Joanna the wife of Chuza Herod's steward, and Susanna, and many others, which ministered unto him of their substance.</VERS>\r\n      <VERS vnumber=\"4\">And when much people were gathered together, and were come to him out of every city, he spake by a parable:</VERS>\r\n      <VERS vnumber=\"5\">A 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.</VERS>\r\n      <VERS vnumber=\"6\">And some fell upon a rock; and as soon as it was sprung up, it withered away, because it lacked moisture.</VERS>\r\n      <VERS vnumber=\"7\">And some fell among thorns; and the thorns sprang up with it, and choked it.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And his disciples asked him, saying, What might this parable be?</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">Now the parable is this: The seed is the word of God.</VERS>\r\n      <VERS vnumber=\"12\">Those 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.</VERS>\r\n      <VERS vnumber=\"13\">They 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">But 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.</VERS>\r\n      <VERS vnumber=\"16\">No 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.</VERS>\r\n      <VERS vnumber=\"17\">For nothing is secret, that shall not be made manifest; neither any thing hid, that shall not be known and come abroad.</VERS>\r\n      <VERS vnumber=\"18\">Take 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.</VERS>\r\n      <VERS vnumber=\"19\">Then came to him his mother and his brethren, and could not come at him for the press.</VERS>\r\n      <VERS vnumber=\"20\">And it was told him by certain which said, Thy mother and thy brethren stand without, desiring to see thee.</VERS>\r\n      <VERS vnumber=\"21\">And he answered and said unto them, My mother and my brethren are these which hear the word of God, and do it.</VERS>\r\n      <VERS vnumber=\"22\">Now 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.</VERS>\r\n      <VERS vnumber=\"23\">But 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And they arrived at the country of the Gadarenes, which is over against Galilee.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">When 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.</VERS>\r\n      <VERS vnumber=\"29\">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.)</VERS>\r\n      <VERS vnumber=\"30\">And Jesus asked him, saying, What is thy name? And he said, Legion: because many devils were entered into him.</VERS>\r\n      <VERS vnumber=\"31\">And they besought him that he would not command them to go out into the deep.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">Then 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.</VERS>\r\n      <VERS vnumber=\"34\">When they that fed them saw what was done, they fled, and went and told it in the city and in the country.</VERS>\r\n      <VERS vnumber=\"35\">Then 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.</VERS>\r\n      <VERS vnumber=\"36\">They also which saw it told them by what means he that was possessed of the devils was healed.</VERS>\r\n      <VERS vnumber=\"37\">Then 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.</VERS>\r\n      <VERS vnumber=\"38\">Now the man out of whom the devils were departed besought him that he might be with him: but Jesus sent him away, saying,</VERS>\r\n      <VERS vnumber=\"39\">Return 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.</VERS>\r\n      <VERS vnumber=\"40\">And it came to pass, that, when Jesus was returned, the people gladly received him: for they were all waiting for him.</VERS>\r\n      <VERS vnumber=\"41\">And, 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:</VERS>\r\n      <VERS vnumber=\"42\">For he had one only daughter, about twelve years of age, and she lay a dying. But as he went the people thronged him.</VERS>\r\n      <VERS vnumber=\"43\">And a woman having an issue of blood twelve years, which had spent all her living upon physicians, neither could be healed of any,</VERS>\r\n      <VERS vnumber=\"44\">Came behind him, and touched the border of his garment: and immediately her issue of blood stanched.</VERS>\r\n      <VERS vnumber=\"45\">And 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?</VERS>\r\n      <VERS vnumber=\"46\">And Jesus said, Somebody hath touched me: for I perceive that virtue is gone out of me.</VERS>\r\n      <VERS vnumber=\"47\">And 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.</VERS>\r\n      <VERS vnumber=\"48\">And he said unto her, Daughter, be of good comfort: thy faith hath made thee whole; go in peace.</VERS>\r\n      <VERS vnumber=\"49\">While 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.</VERS>\r\n      <VERS vnumber=\"50\">But when Jesus heard it, he answered him, saying, Fear not: believe only, and she shall be made whole.</VERS>\r\n      <VERS vnumber=\"51\">And 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.</VERS>\r\n      <VERS vnumber=\"52\">And all wept, and bewailed her: but he said, Weep not; she is not dead, but sleepeth.</VERS>\r\n      <VERS vnumber=\"53\">And they laughed him to scorn, knowing that she was dead.</VERS>\r\n      <VERS vnumber=\"54\">And he put them all out, and took her by the hand, and called, saying, Maid, arise.</VERS>\r\n      <VERS vnumber=\"55\">And her spirit came again, and she arose straightway: and he commanded to give her meat.</VERS>\r\n      <VERS vnumber=\"56\">And her parents were astonished: but he charged them that they should tell no man what was done.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">Then he called his twelve disciples together, and gave them power and authority over all devils, and to cure diseases.</VERS>\r\n      <VERS vnumber=\"2\">And he sent them to preach the kingdom of God, and to heal the sick.</VERS>\r\n      <VERS vnumber=\"3\">And he said unto them, Take nothing for your journey, neither staves, nor scrip, neither bread, neither money; neither have two coats apiece.</VERS>\r\n      <VERS vnumber=\"4\">And whatsoever house ye enter into, there abide, and thence depart.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And they departed, and went through the towns, preaching the gospel, and healing every where.</VERS>\r\n      <VERS vnumber=\"7\">Now 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;</VERS>\r\n      <VERS vnumber=\"8\">And of some, that Elias had appeared; and of others, that one of the old prophets was risen again.</VERS>\r\n      <VERS vnumber=\"9\">And Herod said, John have I beheaded: but who is this, of whom I hear such things? And he desired to see him.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">But 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.</VERS>\r\n      <VERS vnumber=\"14\">For they were about five thousand men. And he said to his disciples, Make them sit down by fifties in a company.</VERS>\r\n      <VERS vnumber=\"15\">And they did so, and made them all sit down.</VERS>\r\n      <VERS vnumber=\"16\">Then 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.</VERS>\r\n      <VERS vnumber=\"17\">And they did eat, and were all filled: and there was taken up of fragments that remained to them twelve baskets.</VERS>\r\n      <VERS vnumber=\"18\">And 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?</VERS>\r\n      <VERS vnumber=\"19\">They answering said, John the Baptist; but some say, Elias; and others say, that one of the old prophets is risen again.</VERS>\r\n      <VERS vnumber=\"20\">He said unto them, But whom say ye that I am? Peter answering said, The Christ of God.</VERS>\r\n      <VERS vnumber=\"21\">And he straitly charged them, and commanded them to tell no man that thing;</VERS>\r\n      <VERS vnumber=\"22\">Saying, 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.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">For whosoever will save his life shall lose it: but whosoever will lose his life for my sake, the same shall save it.</VERS>\r\n      <VERS vnumber=\"25\">For what is a man advantaged, if he gain the whole world, and lose himself, or be cast away?</VERS>\r\n      <VERS vnumber=\"26\">For 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.</VERS>\r\n      <VERS vnumber=\"27\">But I tell you of a truth, there be some standing here, which shall not taste of death, till they see the kingdom of God.</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">And as he prayed, the fashion of his countenance was altered, and his raiment was white and glistering.</VERS>\r\n      <VERS vnumber=\"30\">And, behold, there talked with him two men, which were Moses and Elias:</VERS>\r\n      <VERS vnumber=\"31\">Who appeared in glory, and spake of his decease which he should accomplish at Jerusalem.</VERS>\r\n      <VERS vnumber=\"32\">But 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.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">While he thus spake, there came a cloud, and overshadowed them: and they feared as they entered into the cloud.</VERS>\r\n      <VERS vnumber=\"35\">And there came a voice out of the cloud, saying, This is my beloved Son: hear him.</VERS>\r\n      <VERS vnumber=\"36\">And 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.</VERS>\r\n      <VERS vnumber=\"37\">And it came to pass, that on the next day, when they were come down from the hill, much people met him.</VERS>\r\n      <VERS vnumber=\"38\">And, behold, a man of the company cried out, saying, Master, I beseech thee, look upon my son: for he is mine only child.</VERS>\r\n      <VERS vnumber=\"39\">And, 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.</VERS>\r\n      <VERS vnumber=\"40\">And I besought thy disciples to cast him out; and they could not.</VERS>\r\n      <VERS vnumber=\"41\">And Jesus answering said, O faithless and perverse generation, how long shall I be with you, and suffer you? Bring thy son hither.</VERS>\r\n      <VERS vnumber=\"42\">And 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.</VERS>\r\n      <VERS vnumber=\"43\">And 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,</VERS>\r\n      <VERS vnumber=\"44\">Let these sayings sink down into your ears: for the Son of man shall be delivered into the hands of men.</VERS>\r\n      <VERS vnumber=\"45\">But 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.</VERS>\r\n      <VERS vnumber=\"46\">Then there arose a reasoning among them, which of them should be greatest.</VERS>\r\n      <VERS vnumber=\"47\">And Jesus, perceiving the thought of their heart, took a child, and set him by him,</VERS>\r\n      <VERS vnumber=\"48\">And 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.</VERS>\r\n      <VERS vnumber=\"49\">And John answered and said, Master, we saw one casting out devils in thy name; and we forbad him, because he followeth not with us.</VERS>\r\n      <VERS vnumber=\"50\">And Jesus said unto him, Forbid him not: for he that is not against us is for us.</VERS>\r\n      <VERS vnumber=\"51\">And it came to pass, when the time was come that he should be received up, he stedfastly set his face to go to Jerusalem,</VERS>\r\n      <VERS vnumber=\"52\">And sent messengers before his face: and they went, and entered into a village of the Samaritans, to make ready for him.</VERS>\r\n      <VERS vnumber=\"53\">And they did not receive him, because his face was as though he would go to Jerusalem.</VERS>\r\n      <VERS vnumber=\"54\">And 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?</VERS>\r\n      <VERS vnumber=\"55\">But he turned, and rebuked them, and said, Ye know not what manner of spirit ye are of.</VERS>\r\n      <VERS vnumber=\"56\">For the Son of man is not come to destroy men's lives, but to save them. And they went to another village.</VERS>\r\n      <VERS vnumber=\"57\">And 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.</VERS>\r\n      <VERS vnumber=\"58\">And 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.</VERS>\r\n      <VERS vnumber=\"59\">And he said unto another, Follow me. But he said, Lord, suffer me first to go and bury my father.</VERS>\r\n      <VERS vnumber=\"60\">Jesus said unto him, Let the dead bury their dead: but go thou and preach the kingdom of God.</VERS>\r\n      <VERS vnumber=\"61\">And another also said, Lord, I will follow thee; but let me first go bid them farewell, which are at home at my house.</VERS>\r\n      <VERS vnumber=\"62\">And Jesus said unto him, No man, having put his hand to the plough, and looking back, is fit for the kingdom of God.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">After 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.</VERS>\r\n      <VERS vnumber=\"2\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"3\">Go your ways: behold, I send you forth as lambs among wolves.</VERS>\r\n      <VERS vnumber=\"4\">Carry neither purse, nor scrip, nor shoes: and salute no man by the way.</VERS>\r\n      <VERS vnumber=\"5\">And into whatsoever house ye enter, first say, Peace be to this house.</VERS>\r\n      <VERS vnumber=\"6\">And if the son of peace be there, your peace shall rest upon it: if not, it shall turn to you again.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And into whatsoever city ye enter, and they receive you, eat such things as are set before you:</VERS>\r\n      <VERS vnumber=\"9\">And heal the sick that are therein, and say unto them, The kingdom of God is come nigh unto you.</VERS>\r\n      <VERS vnumber=\"10\">But into whatsoever city ye enter, and they receive you not, go your ways out into the streets of the same, and say,</VERS>\r\n      <VERS vnumber=\"11\">Even 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.</VERS>\r\n      <VERS vnumber=\"12\">But I say unto you, that it shall be more tolerable in that day for Sodom, than for that city.</VERS>\r\n      <VERS vnumber=\"13\">Woe 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.</VERS>\r\n      <VERS vnumber=\"14\">But it shall be more tolerable for Tyre and Sidon at the judgment, than for you.</VERS>\r\n      <VERS vnumber=\"15\">And thou, Capernaum, which art exalted to heaven, shalt be thrust down to hell.</VERS>\r\n      <VERS vnumber=\"16\">He that heareth you heareth me; and he that despiseth you despiseth me; and he that despiseth me despiseth him that sent me.</VERS>\r\n      <VERS vnumber=\"17\">And the seventy returned again with joy, saying, Lord, even the devils are subject unto us through thy name.</VERS>\r\n      <VERS vnumber=\"18\">And he said unto them, I beheld Satan as lightning fall from heaven.</VERS>\r\n      <VERS vnumber=\"19\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"20\">Notwithstanding in this rejoice not, that the spirits are subject unto you; but rather rejoice, because your names are written in heaven.</VERS>\r\n      <VERS vnumber=\"21\">In 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.</VERS>\r\n      <VERS vnumber=\"22\">All 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.</VERS>\r\n      <VERS vnumber=\"23\">And he turned him unto his disciples, and said privately, Blessed are the eyes which see the things that ye see:</VERS>\r\n      <VERS vnumber=\"24\">For 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.</VERS>\r\n      <VERS vnumber=\"25\">And, behold, a certain lawyer stood up, and tempted him, saying, Master, what shall I do to inherit eternal life?</VERS>\r\n      <VERS vnumber=\"26\">He said unto him, What is written in the law? how readest thou?</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And he said unto him, Thou hast answered right: this do, and thou shalt live.</VERS>\r\n      <VERS vnumber=\"29\">But he, willing to justify himself, said unto Jesus, And who is my neighbour?</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">And by chance there came down a certain priest that way: and when he saw him, he passed by on the other side.</VERS>\r\n      <VERS vnumber=\"32\">And likewise a Levite, when he was at the place, came and looked on him, and passed by on the other side.</VERS>\r\n      <VERS vnumber=\"33\">But a certain Samaritan, as he journeyed, came where he was: and when he saw him, he had compassion on him,</VERS>\r\n      <VERS vnumber=\"34\">And 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.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">Which now of these three, thinkest thou, was neighbour unto him that fell among the thieves?</VERS>\r\n      <VERS vnumber=\"37\">And he said, He that shewed mercy on him. Then said Jesus unto him, Go, and do thou likewise.</VERS>\r\n      <VERS vnumber=\"38\">Now 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.</VERS>\r\n      <VERS vnumber=\"39\">And she had a sister called Mary, which also sat at Jesus' feet, and heard his word.</VERS>\r\n      <VERS vnumber=\"40\">But 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.</VERS>\r\n      <VERS vnumber=\"41\">And Jesus answered and said unto her, Martha, Martha, thou art careful and troubled about many things:</VERS>\r\n      <VERS vnumber=\"42\">But one thing is needful: and Mary hath chosen that good part, which shall not be taken away from her.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">Give us day by day our daily bread.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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;</VERS>\r\n      <VERS vnumber=\"6\">For a friend of mine in his journey is come to me, and I have nothing to set before him?</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">I 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.</VERS>\r\n      <VERS vnumber=\"9\">And I say unto you, Ask, and it shall be given you; seek, and ye shall find; knock, and it shall be opened unto you.</VERS>\r\n      <VERS vnumber=\"10\">For every one that asketh receiveth; and he that seeketh findeth; and to him that knocketh it shall be opened.</VERS>\r\n      <VERS vnumber=\"11\">If 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?</VERS>\r\n      <VERS vnumber=\"12\">Or if he shall ask an egg, will he offer him a scorpion?</VERS>\r\n      <VERS vnumber=\"13\">If 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?</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">But some of them said, He casteth out devils through Beelzebub the chief of the devils.</VERS>\r\n      <VERS vnumber=\"16\">And others, tempting him, sought of him a sign from heaven.</VERS>\r\n      <VERS vnumber=\"17\">But he, knowing their thoughts, said unto them, Every kingdom divided against itself is brought to desolation; and a house divided against a house falleth.</VERS>\r\n      <VERS vnumber=\"18\">If Satan also be divided against himself, how shall his kingdom stand? because ye say that I cast out devils through Beelzebub.</VERS>\r\n      <VERS vnumber=\"19\">And if I by Beelzebub cast out devils, by whom do your sons cast them out? therefore shall they be your judges.</VERS>\r\n      <VERS vnumber=\"20\">But if I with the finger of God cast out devils, no doubt the kingdom of God is come upon you.</VERS>\r\n      <VERS vnumber=\"21\">When a strong man armed keepeth his palace, his goods are in peace:</VERS>\r\n      <VERS vnumber=\"22\">But 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.</VERS>\r\n      <VERS vnumber=\"23\">He that is not with me is against me: and he that gathereth not with me scattereth.</VERS>\r\n      <VERS vnumber=\"24\">When 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.</VERS>\r\n      <VERS vnumber=\"25\">And when he cometh, he findeth it swept and garnished.</VERS>\r\n      <VERS vnumber=\"26\">Then 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">But he said, Yea rather, blessed are they that hear the word of God, and keep it.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">For as Jonas was a sign unto the Ninevites, so shall also the Son of man be to this generation.</VERS>\r\n      <VERS vnumber=\"31\">The 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.</VERS>\r\n      <VERS vnumber=\"32\">The 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.</VERS>\r\n      <VERS vnumber=\"33\">No 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.</VERS>\r\n      <VERS vnumber=\"34\">The 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.</VERS>\r\n      <VERS vnumber=\"35\">Take heed therefore that the light which is in thee be not darkness.</VERS>\r\n      <VERS vnumber=\"36\">If 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.</VERS>\r\n      <VERS vnumber=\"37\">And as he spake, a certain Pharisee besought him to dine with him: and he went in, and sat down to meat.</VERS>\r\n      <VERS vnumber=\"38\">And when the Pharisee saw it, he marvelled that he had not first washed before dinner.</VERS>\r\n      <VERS vnumber=\"39\">And 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.</VERS>\r\n      <VERS vnumber=\"40\">Ye fools, did not he that made that which is without make that which is within also?</VERS>\r\n      <VERS vnumber=\"41\">But rather give alms of such things as ye have; and, behold, all things are clean unto you.</VERS>\r\n      <VERS vnumber=\"42\">But 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.</VERS>\r\n      <VERS vnumber=\"43\">Woe unto you, Pharisees! for ye love the uppermost seats in the synagogues, and greetings in the markets.</VERS>\r\n      <VERS vnumber=\"44\">Woe 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.</VERS>\r\n      <VERS vnumber=\"45\">Then answered one of the lawyers, and said unto him, Master, thus saying thou reproachest us also.</VERS>\r\n      <VERS vnumber=\"46\">And 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.</VERS>\r\n      <VERS vnumber=\"47\">Woe unto you! for ye build the sepulchres of the prophets, and your fathers killed them.</VERS>\r\n      <VERS vnumber=\"48\">Truly ye bear witness that ye allow the deeds of your fathers: for they indeed killed them, and ye build their sepulchres.</VERS>\r\n      <VERS vnumber=\"49\">Therefore also said the wisdom of God, I will send them prophets and apostles, and some of them they shall slay and persecute:</VERS>\r\n      <VERS vnumber=\"50\">That the blood of all the prophets, which was shed from the foundation of the world, may be required of this generation;</VERS>\r\n      <VERS vnumber=\"51\">From 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.</VERS>\r\n      <VERS vnumber=\"52\">Woe 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.</VERS>\r\n      <VERS vnumber=\"53\">And 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:</VERS>\r\n      <VERS vnumber=\"54\">Laying wait for him, and seeking to catch something out of his mouth, that they might accuse him.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">In 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.</VERS>\r\n      <VERS vnumber=\"2\">For there is nothing covered, that shall not be revealed; neither hid, that shall not be known.</VERS>\r\n      <VERS vnumber=\"3\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">But 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.</VERS>\r\n      <VERS vnumber=\"6\">Are not five sparrows sold for two farthings, and not one of them is forgotten before God?</VERS>\r\n      <VERS vnumber=\"7\">But even the very hairs of your head are all numbered. Fear not therefore: ye are of more value than many sparrows.</VERS>\r\n      <VERS vnumber=\"8\">Also I say unto you, Whosoever shall confess me before men, him shall the Son of man also confess before the angels of God:</VERS>\r\n      <VERS vnumber=\"9\">But he that denieth me before men shall be denied before the angels of God.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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:</VERS>\r\n      <VERS vnumber=\"12\">For the Holy Ghost shall teach you in the same hour what ye ought to say.</VERS>\r\n      <VERS vnumber=\"13\">And one of the company said unto him, Master, speak to my brother, that he divide the inheritance with me.</VERS>\r\n      <VERS vnumber=\"14\">And he said unto him, Man, who made me a judge or a divider over you?</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And he spake a parable unto them, saying, The ground of a certain rich man brought forth plentifully:</VERS>\r\n      <VERS vnumber=\"17\">And he thought within himself, saying, What shall I do, because I have no room where to bestow my fruits?</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And I will say to my soul, Soul, thou hast much goods laid up for many years; take thine ease, eat, drink, and be merry.</VERS>\r\n      <VERS vnumber=\"20\">But 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?</VERS>\r\n      <VERS vnumber=\"21\">So is he that layeth up treasure for himself, and is not rich toward God.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">The life is more than meat, and the body is more than raiment.</VERS>\r\n      <VERS vnumber=\"24\">Consider 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?</VERS>\r\n      <VERS vnumber=\"25\">And which of you with taking thought can add to his stature one cubit?</VERS>\r\n      <VERS vnumber=\"26\">If ye then be not able to do that thing which is least, why take ye thought for the rest?</VERS>\r\n      <VERS vnumber=\"27\">Consider 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.</VERS>\r\n      <VERS vnumber=\"28\">If 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?</VERS>\r\n      <VERS vnumber=\"29\">And seek not ye what ye shall eat, or what ye shall drink, neither be ye of doubtful mind.</VERS>\r\n      <VERS vnumber=\"30\">For all these things do the nations of the world seek after: and your Father knoweth that ye have need of these things.</VERS>\r\n      <VERS vnumber=\"31\">But rather seek ye the kingdom of God; and all these things shall be added unto you.</VERS>\r\n      <VERS vnumber=\"32\">Fear not, little flock; for it is your Father's good pleasure to give you the kingdom.</VERS>\r\n      <VERS vnumber=\"33\">Sell 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.</VERS>\r\n      <VERS vnumber=\"34\">For where your treasure is, there will your heart be also.</VERS>\r\n      <VERS vnumber=\"35\">Let your loins be girded about, and your lights burning;</VERS>\r\n      <VERS vnumber=\"36\">And 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.</VERS>\r\n      <VERS vnumber=\"37\">Blessed 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.</VERS>\r\n      <VERS vnumber=\"38\">And if he shall come in the second watch, or come in the third watch, and find them so, blessed are those servants.</VERS>\r\n      <VERS vnumber=\"39\">And 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.</VERS>\r\n      <VERS vnumber=\"40\">Be ye therefore ready also: for the Son of man cometh at an hour when ye think not.</VERS>\r\n      <VERS vnumber=\"41\">Then Peter said unto him, Lord, speakest thou this parable unto us, or even to all?</VERS>\r\n      <VERS vnumber=\"42\">And 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?</VERS>\r\n      <VERS vnumber=\"43\">Blessed is that servant, whom his lord when he cometh shall find so doing.</VERS>\r\n      <VERS vnumber=\"44\">Of a truth I say unto you, that he will make him ruler over all that he hath.</VERS>\r\n      <VERS vnumber=\"45\">But 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;</VERS>\r\n      <VERS vnumber=\"46\">The 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.</VERS>\r\n      <VERS vnumber=\"47\">And that servant, which knew his lord's will, and prepared not himself, neither did according to his will, shall be beaten with many stripes.</VERS>\r\n      <VERS vnumber=\"48\">But 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.</VERS>\r\n      <VERS vnumber=\"49\">I am come to send fire on the earth; and what will I, if it be already kindled?</VERS>\r\n      <VERS vnumber=\"50\">But I have a baptism to be baptized with; and how am I straitened till it be accomplished!</VERS>\r\n      <VERS vnumber=\"51\">Suppose ye that I am come to give peace on earth? I tell you, Nay; but rather division:</VERS>\r\n      <VERS vnumber=\"52\">For from henceforth there shall be five in one house divided, three against two, and two against three.</VERS>\r\n      <VERS vnumber=\"53\">The 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.</VERS>\r\n      <VERS vnumber=\"54\">And 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.</VERS>\r\n      <VERS vnumber=\"55\">And when ye see the south wind blow, ye say, There will be heat; and it cometh to pass.</VERS>\r\n      <VERS vnumber=\"56\">Ye hypocrites, ye can discern the face of the sky and of the earth; but how is it that ye do not discern this time?</VERS>\r\n      <VERS vnumber=\"57\">Yea, and why even of yourselves judge ye not what is right?</VERS>\r\n      <VERS vnumber=\"58\">When 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.</VERS>\r\n      <VERS vnumber=\"59\">I tell thee, thou shalt not depart thence, till thou hast paid the very last mite.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">There were present at that season some that told him of the Galilaeans, whose blood Pilate had mingled with their sacrifices.</VERS>\r\n      <VERS vnumber=\"2\">And Jesus answering said unto them, Suppose ye that these Galilaeans were sinners above all the Galilaeans, because they suffered such things?</VERS>\r\n      <VERS vnumber=\"3\">I tell you, Nay: but, except ye repent, ye shall all likewise perish.</VERS>\r\n      <VERS vnumber=\"4\">Or 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?</VERS>\r\n      <VERS vnumber=\"5\">I tell you, Nay: but, except ye repent, ye shall all likewise perish.</VERS>\r\n      <VERS vnumber=\"6\">He 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.</VERS>\r\n      <VERS vnumber=\"7\">Then 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?</VERS>\r\n      <VERS vnumber=\"8\">And he answering said unto him, Lord, let it alone this year also, till I shall dig about it, and dung it:</VERS>\r\n      <VERS vnumber=\"9\">And if it bear fruit, well: and if not, then after that thou shalt cut it down.</VERS>\r\n      <VERS vnumber=\"10\">And he was teaching in one of the synagogues on the sabbath.</VERS>\r\n      <VERS vnumber=\"11\">And, 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.</VERS>\r\n      <VERS vnumber=\"12\">And when Jesus saw her, he called her to him, and said unto her, Woman, thou art loosed from thine infirmity.</VERS>\r\n      <VERS vnumber=\"13\">And he laid his hands on her: and immediately she was made straight, and glorified God.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">The 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?</VERS>\r\n      <VERS vnumber=\"16\">And 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?</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">Then said he, Unto what is the kingdom of God like? and whereunto shall I resemble it?</VERS>\r\n      <VERS vnumber=\"19\">It 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.</VERS>\r\n      <VERS vnumber=\"20\">And again he said, Whereunto shall I liken the kingdom of God?</VERS>\r\n      <VERS vnumber=\"21\">It is like leaven, which a woman took and hid in three measures of meal, till the whole was leavened.</VERS>\r\n      <VERS vnumber=\"22\">And he went through the cities and villages, teaching, and journeying toward Jerusalem.</VERS>\r\n      <VERS vnumber=\"23\">Then said one unto him, Lord, are there few that be saved? And he said unto them,</VERS>\r\n      <VERS vnumber=\"24\">Strive to enter in at the strait gate: for many, I say unto you, will seek to enter in, and shall not be able.</VERS>\r\n      <VERS vnumber=\"25\">When 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:</VERS>\r\n      <VERS vnumber=\"26\">Then shall ye begin to say, We have eaten and drunk in thy presence, and thou hast taught in our streets.</VERS>\r\n      <VERS vnumber=\"27\">But he shall say, I tell you, I know you not whence ye are; depart from me, all ye workers of iniquity.</VERS>\r\n      <VERS vnumber=\"28\">There 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.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">And, behold, there are last which shall be first, and there are first which shall be last.</VERS>\r\n      <VERS vnumber=\"31\">The same day there came certain of the Pharisees, saying unto him, Get thee out, and depart hence: for Herod will kill thee.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">Nevertheless I must walk to day, and to morrow, and the day following: for it cannot be that a prophet perish out of Jerusalem.</VERS>\r\n      <VERS vnumber=\"34\">O 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!</VERS>\r\n      <VERS vnumber=\"35\">Behold, 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And, behold, there was a certain man before him which had the dropsy.</VERS>\r\n      <VERS vnumber=\"3\">And Jesus answering spake unto the lawyers and Pharisees, saying, Is it lawful to heal on the sabbath day?</VERS>\r\n      <VERS vnumber=\"4\">And they held their peace. And he took him, and healed him, and let him go;</VERS>\r\n      <VERS vnumber=\"5\">And 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?</VERS>\r\n      <VERS vnumber=\"6\">And they could not answer him again to these things.</VERS>\r\n      <VERS vnumber=\"7\">And he put forth a parable to those which were bidden, when he marked how they chose out the chief rooms; saying unto them,</VERS>\r\n      <VERS vnumber=\"8\">When 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;</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">But 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.</VERS>\r\n      <VERS vnumber=\"11\">For whosoever exalteth himself shall be abased; and he that humbleth himself shall be exalted.</VERS>\r\n      <VERS vnumber=\"12\">Then 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.</VERS>\r\n      <VERS vnumber=\"13\">But when thou makest a feast, call the poor, the maimed, the lame, the blind:</VERS>\r\n      <VERS vnumber=\"14\">And thou shalt be blessed; for they cannot recompense thee: for thou shalt be recompensed at the resurrection of the just.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">Then said he unto him, A certain man made a great supper, and bade many:</VERS>\r\n      <VERS vnumber=\"17\">And sent his servant at supper time to say to them that were bidden, Come; for all things are now ready.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And another said, I have bought five yoke of oxen, and I go to prove them: I pray thee have me excused.</VERS>\r\n      <VERS vnumber=\"20\">And another said, I have married a wife, and therefore I cannot come.</VERS>\r\n      <VERS vnumber=\"21\">So 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.</VERS>\r\n      <VERS vnumber=\"22\">And the servant said, Lord, it is done as thou hast commanded, and yet there is room.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">For I say unto you, That none of those men which were bidden shall taste of my supper.</VERS>\r\n      <VERS vnumber=\"25\">And there went great multitudes with him: and he turned, and said unto them,</VERS>\r\n      <VERS vnumber=\"26\">If 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.</VERS>\r\n      <VERS vnumber=\"27\">And whosoever doth not bear his cross, and come after me, cannot be my disciple.</VERS>\r\n      <VERS vnumber=\"28\">For which of you, intending to build a tower, sitteth not down first, and counteth the cost, whether he have sufficient to finish it?</VERS>\r\n      <VERS vnumber=\"29\">Lest haply, after he hath laid the foundation, and is not able to finish it, all that behold it begin to mock him,</VERS>\r\n      <VERS vnumber=\"30\">Saying, This man began to build, and was not able to finish.</VERS>\r\n      <VERS vnumber=\"31\">Or 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?</VERS>\r\n      <VERS vnumber=\"32\">Or else, while the other is yet a great way off, he sendeth an ambassage, and desireth conditions of peace.</VERS>\r\n      <VERS vnumber=\"33\">So likewise, whosoever he be of you that forsaketh not all that he hath, he cannot be my disciple.</VERS>\r\n      <VERS vnumber=\"34\">Salt is good: but if the salt have lost his savour, wherewith shall it be seasoned?</VERS>\r\n      <VERS vnumber=\"35\">It 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">Then drew near unto him all the publicans and sinners for to hear him.</VERS>\r\n      <VERS vnumber=\"2\">And the Pharisees and scribes murmured, saying, This man receiveth sinners, and eateth with them.</VERS>\r\n      <VERS vnumber=\"3\">And he spake this parable unto them, saying,</VERS>\r\n      <VERS vnumber=\"4\">What 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?</VERS>\r\n      <VERS vnumber=\"5\">And when he hath found it, he layeth it on his shoulders, rejoicing.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">I 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.</VERS>\r\n      <VERS vnumber=\"8\">Either 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?</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">Likewise, I say unto you, there is joy in the presence of the angels of God over one sinner that repenteth.</VERS>\r\n      <VERS vnumber=\"11\">And he said, A certain man had two sons:</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And when he had spent all, there arose a mighty famine in that land; and he began to be in want.</VERS>\r\n      <VERS vnumber=\"15\">And he went and joined himself to a citizen of that country; and he sent him into his fields to feed swine.</VERS>\r\n      <VERS vnumber=\"16\">And he would fain have filled his belly with the husks that the swine did eat: and no man gave unto him.</VERS>\r\n      <VERS vnumber=\"17\">And 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!</VERS>\r\n      <VERS vnumber=\"18\">I will arise and go to my father, and will say unto him, Father, I have sinned against heaven, and before thee,</VERS>\r\n      <VERS vnumber=\"19\">And am no more worthy to be called thy son: make me as one of thy hired servants.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">But 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:</VERS>\r\n      <VERS vnumber=\"23\">And bring hither the fatted calf, and kill it; and let us eat, and be merry:</VERS>\r\n      <VERS vnumber=\"24\">For this my son was dead, and is alive again; he was lost, and is found. And they began to be merry.</VERS>\r\n      <VERS vnumber=\"25\">Now his elder son was in the field: and as he came and drew nigh to the house, he heard musick and dancing.</VERS>\r\n      <VERS vnumber=\"26\">And he called one of the servants, and asked what these things meant.</VERS>\r\n      <VERS vnumber=\"27\">And he said unto him, Thy brother is come; and thy father hath killed the fatted calf, because he hath received him safe and sound.</VERS>\r\n      <VERS vnumber=\"28\">And he was angry, and would not go in: therefore came his father out, and intreated him.</VERS>\r\n      <VERS vnumber=\"29\">And 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:</VERS>\r\n      <VERS vnumber=\"30\">But as soon as this thy son was come, which hath devoured thy living with harlots, thou hast killed for him the fatted calf.</VERS>\r\n      <VERS vnumber=\"31\">And he said unto him, Son, thou art ever with me, and all that I have is thine.</VERS>\r\n      <VERS vnumber=\"32\">It 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">Then 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.</VERS>\r\n      <VERS vnumber=\"4\">I am resolved what to do, that, when I am put out of the stewardship, they may receive me into their houses.</VERS>\r\n      <VERS vnumber=\"5\">So he called every one of his lord's debtors unto him, and said unto the first, How much owest thou unto my lord?</VERS>\r\n      <VERS vnumber=\"6\">And he said, An hundred measures of oil. And he said unto him, Take thy bill, and sit down quickly, and write fifty.</VERS>\r\n      <VERS vnumber=\"7\">Then 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And I say unto you, Make to yourselves friends of the mammon of unrighteousness; that, when ye fail, they may receive you into everlasting habitations.</VERS>\r\n      <VERS vnumber=\"10\">He 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.</VERS>\r\n      <VERS vnumber=\"11\">If therefore ye have not been faithful in the unrighteous mammon, who will commit to your trust the true riches?</VERS>\r\n      <VERS vnumber=\"12\">And if ye have not been faithful in that which is another man's, who shall give you that which is your own?</VERS>\r\n      <VERS vnumber=\"13\">No 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.</VERS>\r\n      <VERS vnumber=\"14\">And the Pharisees also, who were covetous, heard all these things: and they derided him.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">The law and the prophets were until John: since that time the kingdom of God is preached, and every man presseth into it.</VERS>\r\n      <VERS vnumber=\"17\">And it is easier for heaven and earth to pass, than one tittle of the law to fail.</VERS>\r\n      <VERS vnumber=\"18\">Whosoever putteth away his wife, and marrieth another, committeth adultery: and whosoever marrieth her that is put away from her husband committeth adultery.</VERS>\r\n      <VERS vnumber=\"19\">There was a certain rich man, which was clothed in purple and fine linen, and fared sumptuously every day:</VERS>\r\n      <VERS vnumber=\"20\">And there was a certain beggar named Lazarus, which was laid at his gate, full of sores,</VERS>\r\n      <VERS vnumber=\"21\">And desiring to be fed with the crumbs which fell from the rich man's table: moreover the dogs came and licked his sores.</VERS>\r\n      <VERS vnumber=\"22\">And 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;</VERS>\r\n      <VERS vnumber=\"23\">And in hell he lift up his eyes, being in torments, and seeth Abraham afar off, and Lazarus in his bosom.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">But 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">Then he said, I pray thee therefore, father, that thou wouldest send him to my father's house:</VERS>\r\n      <VERS vnumber=\"28\">For I have five brethren; that he may testify unto them, lest they also come into this place of torment.</VERS>\r\n      <VERS vnumber=\"29\">Abraham saith unto him, They have Moses and the prophets; let them hear them.</VERS>\r\n      <VERS vnumber=\"30\">And he said, Nay, father Abraham: but if one went unto them from the dead, they will repent.</VERS>\r\n      <VERS vnumber=\"31\">And he said unto him, If they hear not Moses and the prophets, neither will they be persuaded, though one rose from the dead.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"17\">\r\n      <VERS vnumber=\"1\">Then said he unto the disciples, It is impossible but that offences will come: but woe unto him, through whom they come!</VERS>\r\n      <VERS vnumber=\"2\">It 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.</VERS>\r\n      <VERS vnumber=\"3\">Take heed to yourselves: If thy brother trespass against thee, rebuke him; and if he repent, forgive him.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And the apostles said unto the Lord, Increase our faith.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">But 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?</VERS>\r\n      <VERS vnumber=\"8\">And 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?</VERS>\r\n      <VERS vnumber=\"9\">Doth he thank that servant because he did the things that were commanded him? I trow not.</VERS>\r\n      <VERS vnumber=\"10\">So 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.</VERS>\r\n      <VERS vnumber=\"11\">And it came to pass, as he went to Jerusalem, that he passed through the midst of Samaria and Galilee.</VERS>\r\n      <VERS vnumber=\"12\">And as he entered into a certain village, there met him ten men that were lepers, which stood afar off:</VERS>\r\n      <VERS vnumber=\"13\">And they lifted up their voices, and said, Jesus, Master, have mercy on us.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And one of them, when he saw that he was healed, turned back, and with a loud voice glorified God,</VERS>\r\n      <VERS vnumber=\"16\">And fell down on his face at his feet, giving him thanks: and he was a Samaritan.</VERS>\r\n      <VERS vnumber=\"17\">And Jesus answering said, Were there not ten cleansed? but where are the nine?</VERS>\r\n      <VERS vnumber=\"18\">There are not found that returned to give glory to God, save this stranger.</VERS>\r\n      <VERS vnumber=\"19\">And he said unto him, Arise, go thy way: thy faith hath made thee whole.</VERS>\r\n      <VERS vnumber=\"20\">And 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:</VERS>\r\n      <VERS vnumber=\"21\">Neither shall they say, Lo here! or, lo there! for, behold, the kingdom of God is within you.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And they shall say to you, See here; or, see there: go not after them, nor follow them.</VERS>\r\n      <VERS vnumber=\"24\">For 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.</VERS>\r\n      <VERS vnumber=\"25\">But first must he suffer many things, and be rejected of this generation.</VERS>\r\n      <VERS vnumber=\"26\">And as it was in the days of Noe, so shall it be also in the days of the Son of man.</VERS>\r\n      <VERS vnumber=\"27\">They 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.</VERS>\r\n      <VERS vnumber=\"28\">Likewise also as it was in the days of Lot; they did eat, they drank, they bought, they sold, they planted, they builded;</VERS>\r\n      <VERS vnumber=\"29\">But the same day that Lot went out of Sodom it rained fire and brimstone from heaven, and destroyed them all.</VERS>\r\n      <VERS vnumber=\"30\">Even thus shall it be in the day when the Son of man is revealed.</VERS>\r\n      <VERS vnumber=\"31\">In 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.</VERS>\r\n      <VERS vnumber=\"32\">Remember Lot's wife.</VERS>\r\n      <VERS vnumber=\"33\">Whosoever shall seek to save his life shall lose it; and whosoever shall lose his life shall preserve it.</VERS>\r\n      <VERS vnumber=\"34\">I tell you, in that night there shall be two men in one bed; the one shall be taken, and the other shall be left.</VERS>\r\n      <VERS vnumber=\"35\">Two women shall be grinding together; the one shall be taken, and the other left.</VERS>\r\n      <VERS vnumber=\"36\">Two men shall be in the field; the one shall be taken, and the other left.</VERS>\r\n      <VERS vnumber=\"37\">And they answered and said unto him, Where, Lord? And he said unto them, Wheresoever the body is, thither will the eagles be gathered together.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"18\">\r\n      <VERS vnumber=\"1\">And he spake a parable unto them to this end, that men ought always to pray, and not to faint;</VERS>\r\n      <VERS vnumber=\"2\">Saying, There was in a city a judge, which feared not God, neither regarded man:</VERS>\r\n      <VERS vnumber=\"3\">And there was a widow in that city; and she came unto him, saying, Avenge me of mine adversary.</VERS>\r\n      <VERS vnumber=\"4\">And he would not for a while: but afterward he said within himself, Though I fear not God, nor regard man;</VERS>\r\n      <VERS vnumber=\"5\">Yet because this widow troubleth me, I will avenge her, lest by her continual coming she weary me.</VERS>\r\n      <VERS vnumber=\"6\">And the Lord said, Hear what the unjust judge saith.</VERS>\r\n      <VERS vnumber=\"7\">And shall not God avenge his own elect, which cry day and night unto him, though he bear long with them?</VERS>\r\n      <VERS vnumber=\"8\">I tell you that he will avenge them speedily. Nevertheless when the Son of man cometh, shall he find faith on the earth?</VERS>\r\n      <VERS vnumber=\"9\">And he spake this parable unto certain which trusted in themselves that they were righteous, and despised others:</VERS>\r\n      <VERS vnumber=\"10\">Two men went up into the temple to pray; the one a Pharisee, and the other a publican.</VERS>\r\n      <VERS vnumber=\"11\">The 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.</VERS>\r\n      <VERS vnumber=\"12\">I fast twice in the week, I give tithes of all that I possess.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">I 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.</VERS>\r\n      <VERS vnumber=\"15\">And they brought unto him also infants, that he would touch them: but when his disciples saw it, they rebuked them.</VERS>\r\n      <VERS vnumber=\"16\">But 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.</VERS>\r\n      <VERS vnumber=\"17\">Verily I say unto you, Whosoever shall not receive the kingdom of God as a little child shall in no wise enter therein.</VERS>\r\n      <VERS vnumber=\"18\">And a certain ruler asked him, saying, Good Master, what shall I do to inherit eternal life?</VERS>\r\n      <VERS vnumber=\"19\">And Jesus said unto him, Why callest thou me good? none is good, save one, that is, God.</VERS>\r\n      <VERS vnumber=\"20\">Thou knowest the commandments, Do not commit adultery, Do not kill, Do not steal, Do not bear false witness, Honour thy father and thy mother.</VERS>\r\n      <VERS vnumber=\"21\">And he said, All these have I kept from my youth up.</VERS>\r\n      <VERS vnumber=\"22\">Now 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.</VERS>\r\n      <VERS vnumber=\"23\">And when he heard this, he was very sorrowful: for he was very rich.</VERS>\r\n      <VERS vnumber=\"24\">And when Jesus saw that he was very sorrowful, he said, How hardly shall they that have riches enter into the kingdom of God!</VERS>\r\n      <VERS vnumber=\"25\">For 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.</VERS>\r\n      <VERS vnumber=\"26\">And they that heard it said, Who then can be saved?</VERS>\r\n      <VERS vnumber=\"27\">And he said, The things which are impossible with men are possible with God.</VERS>\r\n      <VERS vnumber=\"28\">Then Peter said, Lo, we have left all, and followed thee.</VERS>\r\n      <VERS vnumber=\"29\">And 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,</VERS>\r\n      <VERS vnumber=\"30\">Who shall not receive manifold more in this present time, and in the world to come life everlasting.</VERS>\r\n      <VERS vnumber=\"31\">Then 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.</VERS>\r\n      <VERS vnumber=\"32\">For he shall be delivered unto the Gentiles, and shall be mocked, and spitefully entreated, and spitted on:</VERS>\r\n      <VERS vnumber=\"33\">And they shall scourge him, and put him to death: and the third day he shall rise again.</VERS>\r\n      <VERS vnumber=\"34\">And they understood none of these things: and this saying was hid from them, neither knew they the things which were spoken.</VERS>\r\n      <VERS vnumber=\"35\">And it came to pass, that as he was come nigh unto Jericho, a certain blind man sat by the way side begging:</VERS>\r\n      <VERS vnumber=\"36\">And hearing the multitude pass by, he asked what it meant.</VERS>\r\n      <VERS vnumber=\"37\">And they told him, that Jesus of Nazareth passeth by.</VERS>\r\n      <VERS vnumber=\"38\">And he cried, saying, Jesus, thou Son of David, have mercy on me.</VERS>\r\n      <VERS vnumber=\"39\">And 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.</VERS>\r\n      <VERS vnumber=\"40\">And Jesus stood, and commanded him to be brought unto him: and when he was come near, he asked him,</VERS>\r\n      <VERS vnumber=\"41\">Saying, What wilt thou that I shall do unto thee? And he said, Lord, that I may receive my sight.</VERS>\r\n      <VERS vnumber=\"42\">And Jesus said unto him, Receive thy sight: thy faith hath saved thee.</VERS>\r\n      <VERS vnumber=\"43\">And immediately he received his sight, and followed him, glorifying God: and all the people, when they saw it, gave praise unto God.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"19\">\r\n      <VERS vnumber=\"1\">And Jesus entered and passed through Jericho.</VERS>\r\n      <VERS vnumber=\"2\">And, behold, there was a man named Zacchaeus, which was the chief among the publicans, and he was rich.</VERS>\r\n      <VERS vnumber=\"3\">And he sought to see Jesus who he was; and could not for the press, because he was little of stature.</VERS>\r\n      <VERS vnumber=\"4\">And he ran before, and climbed up into a sycomore tree to see him: for he was to pass that way.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And he made haste, and came down, and received him joyfully.</VERS>\r\n      <VERS vnumber=\"7\">And when they saw it, they all murmured, saying, That he was gone to be guest with a man that is a sinner.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And Jesus said unto him, This day is salvation come to this house, forsomuch as he also is a son of Abraham.</VERS>\r\n      <VERS vnumber=\"10\">For the Son of man is come to seek and to save that which was lost.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">He said therefore, A certain nobleman went into a far country to receive for himself a kingdom, and to return.</VERS>\r\n      <VERS vnumber=\"13\">And he called his ten servants, and delivered them ten pounds, and said unto them, Occupy till I come.</VERS>\r\n      <VERS vnumber=\"14\">But his citizens hated him, and sent a message after him, saying, We will not have this man to reign over us.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">Then came the first, saying, Lord, thy pound hath gained ten pounds.</VERS>\r\n      <VERS vnumber=\"17\">And he said unto him, Well, thou good servant: because thou hast been faithful in a very little, have thou authority over ten cities.</VERS>\r\n      <VERS vnumber=\"18\">And the second came, saying, Lord, thy pound hath gained five pounds.</VERS>\r\n      <VERS vnumber=\"19\">And he said likewise to him, Be thou also over five cities.</VERS>\r\n      <VERS vnumber=\"20\">And another came, saying, Lord, behold, here is thy pound, which I have kept laid up in a napkin:</VERS>\r\n      <VERS vnumber=\"21\">For I feared thee, because thou art an austere man: thou takest up that thou layedst not down, and reapest that thou didst not sow.</VERS>\r\n      <VERS vnumber=\"22\">And 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:</VERS>\r\n      <VERS vnumber=\"23\">Wherefore then gavest not thou my money into the bank, that at my coming I might have required mine own with usury?</VERS>\r\n      <VERS vnumber=\"24\">And he said unto them that stood by, Take from him the pound, and give it to him that hath ten pounds.</VERS>\r\n      <VERS vnumber=\"25\">And they said unto him, Lord, he hath ten pounds.)</VERS>\r\n      <VERS vnumber=\"26\">For 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.</VERS>\r\n      <VERS vnumber=\"27\">But those mine enemies, which would not that I should reign over them, bring hither, and slay them before me.</VERS>\r\n      <VERS vnumber=\"28\">And when he had thus spoken, he went before, ascending up to Jerusalem.</VERS>\r\n      <VERS vnumber=\"29\">And 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,</VERS>\r\n      <VERS vnumber=\"30\">Saying, 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.</VERS>\r\n      <VERS vnumber=\"31\">And if any man ask you, Why do ye loose him? thus shall ye say unto him, Because the Lord hath need of him.</VERS>\r\n      <VERS vnumber=\"32\">And they that were sent went their way, and found even as he had said unto them.</VERS>\r\n      <VERS vnumber=\"33\">And as they were loosing the colt, the owners thereof said unto them, Why loose ye the colt?</VERS>\r\n      <VERS vnumber=\"34\">And they said, The Lord hath need of him.</VERS>\r\n      <VERS vnumber=\"35\">And they brought him to Jesus: and they cast their garments upon the colt, and they set Jesus thereon.</VERS>\r\n      <VERS vnumber=\"36\">And as he went, they spread their clothes in the way.</VERS>\r\n      <VERS vnumber=\"37\">And 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;</VERS>\r\n      <VERS vnumber=\"38\">Saying, Blessed be the King that cometh in the name of the Lord: peace in heaven, and glory in the highest.</VERS>\r\n      <VERS vnumber=\"39\">And some of the Pharisees from among the multitude said unto him, Master, rebuke thy disciples.</VERS>\r\n      <VERS vnumber=\"40\">And he answered and said unto them, I tell you that, if these should hold their peace, the stones would immediately cry out.</VERS>\r\n      <VERS vnumber=\"41\">And when he was come near, he beheld the city, and wept over it,</VERS>\r\n      <VERS vnumber=\"42\">Saying, 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.</VERS>\r\n      <VERS vnumber=\"43\">For 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,</VERS>\r\n      <VERS vnumber=\"44\">And 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.</VERS>\r\n      <VERS vnumber=\"45\">And he went into the temple, and began to cast out them that sold therein, and them that bought;</VERS>\r\n      <VERS vnumber=\"46\">Saying unto them, It is written, My house is the house of prayer: but ye have made it a den of thieves.</VERS>\r\n      <VERS vnumber=\"47\">And he taught daily in the temple. But the chief priests and the scribes and the chief of the people sought to destroy him,</VERS>\r\n      <VERS vnumber=\"48\">And could not find what they might do: for all the people were very attentive to hear him.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"20\">\r\n      <VERS vnumber=\"1\">And 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,</VERS>\r\n      <VERS vnumber=\"2\">And spake unto him, saying, Tell us, by what authority doest thou these things? or who is he that gave thee this authority?</VERS>\r\n      <VERS vnumber=\"3\">And he answered and said unto them, I will also ask you one thing; and answer me:</VERS>\r\n      <VERS vnumber=\"4\">The baptism of John, was it from heaven, or of men?</VERS>\r\n      <VERS vnumber=\"5\">And they reasoned with themselves, saying, If we shall say, From heaven; he will say, Why then believed ye him not?</VERS>\r\n      <VERS vnumber=\"6\">But and if we say, Of men; all the people will stone us: for they be persuaded that John was a prophet.</VERS>\r\n      <VERS vnumber=\"7\">And they answered, that they could not tell whence it was.</VERS>\r\n      <VERS vnumber=\"8\">And Jesus said unto them, Neither tell I you by what authority I do these things.</VERS>\r\n      <VERS vnumber=\"9\">Then 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And again he sent another servant: and they beat him also, and entreated him shamefully, and sent him away empty.</VERS>\r\n      <VERS vnumber=\"12\">And again he sent a third: and they wounded him also, and cast him out.</VERS>\r\n      <VERS vnumber=\"13\">Then 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.</VERS>\r\n      <VERS vnumber=\"14\">But 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.</VERS>\r\n      <VERS vnumber=\"15\">So they cast him out of the vineyard, and killed him. What therefore shall the lord of the vineyard do unto them?</VERS>\r\n      <VERS vnumber=\"16\">He shall come and destroy these husbandmen, and shall give the vineyard to others. And when they heard it, they said, God forbid.</VERS>\r\n      <VERS vnumber=\"17\">And 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?</VERS>\r\n      <VERS vnumber=\"18\">Whosoever shall fall upon that stone shall be broken; but on whomsoever it shall fall, it will grind him to powder.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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:</VERS>\r\n      <VERS vnumber=\"22\">Is it lawful for us to give tribute unto Caesar, or no?</VERS>\r\n      <VERS vnumber=\"23\">But he perceived their craftiness, and said unto them, Why tempt ye me?</VERS>\r\n      <VERS vnumber=\"24\">Shew me a penny. Whose image and superscription hath it? They answered and said, Caesar's.</VERS>\r\n      <VERS vnumber=\"25\">And he said unto them, Render therefore unto Caesar the things which be Caesar's, and unto God the things which be God's.</VERS>\r\n      <VERS vnumber=\"26\">And they could not take hold of his words before the people: and they marvelled at his answer, and held their peace.</VERS>\r\n      <VERS vnumber=\"27\">Then came to him certain of the Sadducees, which deny that there is any resurrection; and they asked him,</VERS>\r\n      <VERS vnumber=\"28\">Saying, 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.</VERS>\r\n      <VERS vnumber=\"29\">There were therefore seven brethren: and the first took a wife, and died without children.</VERS>\r\n      <VERS vnumber=\"30\">And the second took her to wife, and he died childless.</VERS>\r\n      <VERS vnumber=\"31\">And the third took her; and in like manner the seven also: and they left no children, and died.</VERS>\r\n      <VERS vnumber=\"32\">Last of all the woman died also.</VERS>\r\n      <VERS vnumber=\"33\">Therefore in the resurrection whose wife of them is she? for seven had her to wife.</VERS>\r\n      <VERS vnumber=\"34\">And Jesus answering said unto them, The children of this world marry, and are given in marriage:</VERS>\r\n      <VERS vnumber=\"35\">But they which shall be accounted worthy to obtain that world, and the resurrection from the dead, neither marry, nor are given in marriage:</VERS>\r\n      <VERS vnumber=\"36\">Neither can they die any more: for they are equal unto the angels; and are the children of God, being the children of the resurrection.</VERS>\r\n      <VERS vnumber=\"37\">Now 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.</VERS>\r\n      <VERS vnumber=\"38\">For he is not a God of the dead, but of the living: for all live unto him.</VERS>\r\n      <VERS vnumber=\"39\">Then certain of the scribes answering said, Master, thou hast well said.</VERS>\r\n      <VERS vnumber=\"40\">And after that they durst not ask him any question at all.</VERS>\r\n      <VERS vnumber=\"41\">And he said unto them, How say they that Christ is David's son?</VERS>\r\n      <VERS vnumber=\"42\">And David himself saith in the book of Psalms, The LORD said unto my Lord, Sit thou on my right hand,</VERS>\r\n      <VERS vnumber=\"43\">Till I make thine enemies thy footstool.</VERS>\r\n      <VERS vnumber=\"44\">David therefore calleth him Lord, how is he then his son?</VERS>\r\n      <VERS vnumber=\"45\">Then in the audience of all the people he said unto his disciples,</VERS>\r\n      <VERS vnumber=\"46\">Beware 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;</VERS>\r\n      <VERS vnumber=\"47\">Which devour widows' houses, and for a shew make long prayers: the same shall receive greater damnation.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"21\">\r\n      <VERS vnumber=\"1\">And he looked up, and saw the rich men casting their gifts into the treasury.</VERS>\r\n      <VERS vnumber=\"2\">And he saw also a certain poor widow casting in thither two mites.</VERS>\r\n      <VERS vnumber=\"3\">And he said, Of a truth I say unto you, that this poor widow hath cast in more than they all:</VERS>\r\n      <VERS vnumber=\"4\">For 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.</VERS>\r\n      <VERS vnumber=\"5\">And as some spake of the temple, how it was adorned with goodly stones and gifts, he said,</VERS>\r\n      <VERS vnumber=\"6\">As 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.</VERS>\r\n      <VERS vnumber=\"7\">And they asked him, saying, Master, but when shall these things be? and what sign will there be when these things shall come to pass?</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">But 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.</VERS>\r\n      <VERS vnumber=\"10\">Then said he unto them, Nation shall rise against nation, and kingdom against kingdom:</VERS>\r\n      <VERS vnumber=\"11\">And great earthquakes shall be in divers places, and famines, and pestilences; and fearful sights and great signs shall there be from heaven.</VERS>\r\n      <VERS vnumber=\"12\">But 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.</VERS>\r\n      <VERS vnumber=\"13\">And it shall turn to you for a testimony.</VERS>\r\n      <VERS vnumber=\"14\">Settle it therefore in your hearts, not to meditate before what ye shall answer:</VERS>\r\n      <VERS vnumber=\"15\">For I will give you a mouth and wisdom, which all your adversaries shall not be able to gainsay nor resist.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And ye shall be hated of all men for my name's sake.</VERS>\r\n      <VERS vnumber=\"18\">But there shall not an hair of your head perish.</VERS>\r\n      <VERS vnumber=\"19\">In your patience possess ye your souls.</VERS>\r\n      <VERS vnumber=\"20\">And when ye shall see Jerusalem compassed with armies, then know that the desolation thereof is nigh.</VERS>\r\n      <VERS vnumber=\"21\">Then 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.</VERS>\r\n      <VERS vnumber=\"22\">For these be the days of vengeance, that all things which are written may be fulfilled.</VERS>\r\n      <VERS vnumber=\"23\">But 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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;</VERS>\r\n      <VERS vnumber=\"26\">Men'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.</VERS>\r\n      <VERS vnumber=\"27\">And then shall they see the Son of man coming in a cloud with power and great glory.</VERS>\r\n      <VERS vnumber=\"28\">And when these things begin to come to pass, then look up, and lift up your heads; for your redemption draweth nigh.</VERS>\r\n      <VERS vnumber=\"29\">And he spake to them a parable; Behold the fig tree, and all the trees;</VERS>\r\n      <VERS vnumber=\"30\">When they now shoot forth, ye see and know of your own selves that summer is now nigh at hand.</VERS>\r\n      <VERS vnumber=\"31\">So likewise ye, when ye see these things come to pass, know ye that the kingdom of God is nigh at hand.</VERS>\r\n      <VERS vnumber=\"32\">Verily I say unto you, This generation shall not pass away, till all be fulfilled.</VERS>\r\n      <VERS vnumber=\"33\">Heaven and earth shall pass away: but my words shall not pass away.</VERS>\r\n      <VERS vnumber=\"34\">And 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.</VERS>\r\n      <VERS vnumber=\"35\">For as a snare shall it come on all them that dwell on the face of the whole earth.</VERS>\r\n      <VERS vnumber=\"36\">Watch 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.</VERS>\r\n      <VERS vnumber=\"37\">And 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.</VERS>\r\n      <VERS vnumber=\"38\">And all the people came early in the morning to him in the temple, for to hear him.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"22\">\r\n      <VERS vnumber=\"1\">Now the feast of unleavened bread drew nigh, which is called the Passover.</VERS>\r\n      <VERS vnumber=\"2\">And the chief priests and scribes sought how they might kill him; for they feared the people.</VERS>\r\n      <VERS vnumber=\"3\">Then entered Satan into Judas surnamed Iscariot, being of the number of the twelve.</VERS>\r\n      <VERS vnumber=\"4\">And he went his way, and communed with the chief priests and captains, how he might betray him unto them.</VERS>\r\n      <VERS vnumber=\"5\">And they were glad, and covenanted to give him money.</VERS>\r\n      <VERS vnumber=\"6\">And he promised, and sought opportunity to betray him unto them in the absence of the multitude.</VERS>\r\n      <VERS vnumber=\"7\">Then came the day of unleavened bread, when the passover must be killed.</VERS>\r\n      <VERS vnumber=\"8\">And he sent Peter and John, saying, Go and prepare us the passover, that we may eat.</VERS>\r\n      <VERS vnumber=\"9\">And they said unto him, Where wilt thou that we prepare?</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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?</VERS>\r\n      <VERS vnumber=\"12\">And he shall shew you a large upper room furnished: there make ready.</VERS>\r\n      <VERS vnumber=\"13\">And they went, and found as he had said unto them: and they made ready the passover.</VERS>\r\n      <VERS vnumber=\"14\">And when the hour was come, he sat down, and the twelve apostles with him.</VERS>\r\n      <VERS vnumber=\"15\">And he said unto them, With desire I have desired to eat this passover with you before I suffer:</VERS>\r\n      <VERS vnumber=\"16\">For I say unto you, I will not any more eat thereof, until it be fulfilled in the kingdom of God.</VERS>\r\n      <VERS vnumber=\"17\">And he took the cup, and gave thanks, and said, Take this, and divide it among yourselves:</VERS>\r\n      <VERS vnumber=\"18\">For I say unto you, I will not drink of the fruit of the vine, until the kingdom of God shall come.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">Likewise also the cup after supper, saying, This cup is the new testament in my blood, which is shed for you.</VERS>\r\n      <VERS vnumber=\"21\">But, behold, the hand of him that betrayeth me is with me on the table.</VERS>\r\n      <VERS vnumber=\"22\">And truly the Son of man goeth, as it was determined: but woe unto that man by whom he is betrayed!</VERS>\r\n      <VERS vnumber=\"23\">And they began to enquire among themselves, which of them it was that should do this thing.</VERS>\r\n      <VERS vnumber=\"24\">And there was also a strife among them, which of them should be accounted the greatest.</VERS>\r\n      <VERS vnumber=\"25\">And he said unto them, The kings of the Gentiles exercise lordship over them; and they that exercise authority upon them are called benefactors.</VERS>\r\n      <VERS vnumber=\"26\">But 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.</VERS>\r\n      <VERS vnumber=\"27\">For 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.</VERS>\r\n      <VERS vnumber=\"28\">Ye are they which have continued with me in my temptations.</VERS>\r\n      <VERS vnumber=\"29\">And I appoint unto you a kingdom, as my Father hath appointed unto me;</VERS>\r\n      <VERS vnumber=\"30\">That ye may eat and drink at my table in my kingdom, and sit on thrones judging the twelve tribes of Israel.</VERS>\r\n      <VERS vnumber=\"31\">And the Lord said, Simon, Simon, behold, Satan hath desired to have you, that he may sift you as wheat:</VERS>\r\n      <VERS vnumber=\"32\">But I have prayed for thee, that thy faith fail not: and when thou art converted, strengthen thy brethren.</VERS>\r\n      <VERS vnumber=\"33\">And he said unto him, Lord, I am ready to go with thee, both into prison, and to death.</VERS>\r\n      <VERS vnumber=\"34\">And he said, I tell thee, Peter, the cock shall not crow this day, before that thou shalt thrice deny that thou knowest me.</VERS>\r\n      <VERS vnumber=\"35\">And he said unto them, When I sent you without purse, and scrip, and shoes, lacked ye any thing? And they said, Nothing.</VERS>\r\n      <VERS vnumber=\"36\">Then 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.</VERS>\r\n      <VERS vnumber=\"37\">For 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.</VERS>\r\n      <VERS vnumber=\"38\">And they said, Lord, behold, here are two swords. And he said unto them, It is enough.</VERS>\r\n      <VERS vnumber=\"39\">And he came out, and went, as he was wont, to the mount of Olives; and his disciples also followed him.</VERS>\r\n      <VERS vnumber=\"40\">And when he was at the place, he said unto them, Pray that ye enter not into temptation.</VERS>\r\n      <VERS vnumber=\"41\">And he was withdrawn from them about a stone's cast, and kneeled down, and prayed,</VERS>\r\n      <VERS vnumber=\"42\">Saying, Father, if thou be willing, remove this cup from me: nevertheless not my will, but thine, be done.</VERS>\r\n      <VERS vnumber=\"43\">And there appeared an angel unto him from heaven, strengthening him.</VERS>\r\n      <VERS vnumber=\"44\">And being in an agony he prayed more earnestly: and his sweat was as it were great drops of blood falling down to the ground.</VERS>\r\n      <VERS vnumber=\"45\">And when he rose up from prayer, and was come to his disciples, he found them sleeping for sorrow,</VERS>\r\n      <VERS vnumber=\"46\">And said unto them, Why sleep ye? rise and pray, lest ye enter into temptation.</VERS>\r\n      <VERS vnumber=\"47\">And 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.</VERS>\r\n      <VERS vnumber=\"48\">But Jesus said unto him, Judas, betrayest thou the Son of man with a kiss?</VERS>\r\n      <VERS vnumber=\"49\">When they which were about him saw what would follow, they said unto him, Lord, shall we smite with the sword?</VERS>\r\n      <VERS vnumber=\"50\">And one of them smote the servant of the high priest, and cut off his right ear.</VERS>\r\n      <VERS vnumber=\"51\">And Jesus answered and said, Suffer ye thus far. And he touched his ear, and healed him.</VERS>\r\n      <VERS vnumber=\"52\">Then 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?</VERS>\r\n      <VERS vnumber=\"53\">When 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.</VERS>\r\n      <VERS vnumber=\"54\">Then took they him, and led him, and brought him into the high priest's house. And Peter followed afar off.</VERS>\r\n      <VERS vnumber=\"55\">And when they had kindled a fire in the midst of the hall, and were set down together, Peter sat down among them.</VERS>\r\n      <VERS vnumber=\"56\">But a certain maid beheld him as he sat by the fire, and earnestly looked upon him, and said, This man was also with him.</VERS>\r\n      <VERS vnumber=\"57\">And he denied him, saying, Woman, I know him not.</VERS>\r\n      <VERS vnumber=\"58\">And after a little while another saw him, and said, Thou art also of them. And Peter said, Man, I am not.</VERS>\r\n      <VERS vnumber=\"59\">And 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.</VERS>\r\n      <VERS vnumber=\"60\">And Peter said, Man, I know not what thou sayest. And immediately, while he yet spake, the cock crew.</VERS>\r\n      <VERS vnumber=\"61\">And 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.</VERS>\r\n      <VERS vnumber=\"62\">And Peter went out, and wept bitterly.</VERS>\r\n      <VERS vnumber=\"63\">And the men that held Jesus mocked him, and smote him.</VERS>\r\n      <VERS vnumber=\"64\">And when they had blindfolded him, they struck him on the face, and asked him, saying, Prophesy, who is it that smote thee?</VERS>\r\n      <VERS vnumber=\"65\">And many other things blasphemously spake they against him.</VERS>\r\n      <VERS vnumber=\"66\">And 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,</VERS>\r\n      <VERS vnumber=\"67\">Art thou the Christ? tell us. And he said unto them, If I tell you, ye will not believe:</VERS>\r\n      <VERS vnumber=\"68\">And if I also ask you, ye will not answer me, nor let me go.</VERS>\r\n      <VERS vnumber=\"69\">Hereafter shall the Son of man sit on the right hand of the power of God.</VERS>\r\n      <VERS vnumber=\"70\">Then said they all, Art thou then the Son of God? And he said unto them, Ye say that I am.</VERS>\r\n      <VERS vnumber=\"71\">And they said, What need we any further witness? for we ourselves have heard of his own mouth.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"23\">\r\n      <VERS vnumber=\"1\">And the whole multitude of them arose, and led him unto Pilate.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And Pilate asked him, saying, Art thou the King of the Jews? And he answered him and said, Thou sayest it.</VERS>\r\n      <VERS vnumber=\"4\">Then said Pilate to the chief priests and to the people, I find no fault in this man.</VERS>\r\n      <VERS vnumber=\"5\">And they were the more fierce, saying, He stirreth up the people, teaching throughout all Jewry, beginning from Galilee to this place.</VERS>\r\n      <VERS vnumber=\"6\">When Pilate heard of Galilee, he asked whether the man were a Galilaean.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">Then he questioned with him in many words; but he answered him nothing.</VERS>\r\n      <VERS vnumber=\"10\">And the chief priests and scribes stood and vehemently accused him.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And the same day Pilate and Herod were made friends together: for before they were at enmity between themselves.</VERS>\r\n      <VERS vnumber=\"13\">And Pilate, when he had called together the chief priests and the rulers and the people,</VERS>\r\n      <VERS vnumber=\"14\">Said 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:</VERS>\r\n      <VERS vnumber=\"15\">No, nor yet Herod: for I sent you to him; and, lo, nothing worthy of death is done unto him.</VERS>\r\n      <VERS vnumber=\"16\">I will therefore chastise him, and release him.</VERS>\r\n      <VERS vnumber=\"17\">For of necessity he must release one unto them at the feast.)</VERS>\r\n      <VERS vnumber=\"18\">And they cried out all at once, saying, Away with this man, and release unto us Barabbas:</VERS>\r\n      <VERS vnumber=\"19\">Who for a certain sedition made in the city, and for murder, was cast into prison.)</VERS>\r\n      <VERS vnumber=\"20\">Pilate therefore, willing to release Jesus, spake again to them.</VERS>\r\n      <VERS vnumber=\"21\">But they cried, saying, Crucify him, crucify him.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And they were instant with loud voices, requiring that he might be crucified. And the voices of them and of the chief priests prevailed.</VERS>\r\n      <VERS vnumber=\"24\">And Pilate gave sentence that it should be as they required.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And there followed him a great company of people, and of women, which also bewailed and lamented him.</VERS>\r\n      <VERS vnumber=\"28\">But Jesus turning unto them said, Daughters of Jerusalem, weep not for me, but weep for yourselves, and for your children.</VERS>\r\n      <VERS vnumber=\"29\">For, 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.</VERS>\r\n      <VERS vnumber=\"30\">Then shall they begin to say to the mountains, Fall on us; and to the hills, Cover us.</VERS>\r\n      <VERS vnumber=\"31\">For if they do these things in a green tree, what shall be done in the dry?</VERS>\r\n      <VERS vnumber=\"32\">And there were also two other, malefactors, led with him to be put to death.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">Then said Jesus, Father, forgive them; for they know not what they do. And they parted his raiment, and cast lots.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">And the soldiers also mocked him, coming to him, and offering him vinegar,</VERS>\r\n      <VERS vnumber=\"37\">And saying, If thou be the king of the Jews, save thyself.</VERS>\r\n      <VERS vnumber=\"38\">And a superscription also was written over him in letters of Greek, and Latin, and Hebrew, THIS IS THE KING OF THE JEWS.</VERS>\r\n      <VERS vnumber=\"39\">And one of the malefactors which were hanged railed on him, saying, If thou be Christ, save thyself and us.</VERS>\r\n      <VERS vnumber=\"40\">But the other answering rebuked him, saying, Dost not thou fear God, seeing thou art in the same condemnation?</VERS>\r\n      <VERS vnumber=\"41\">And we indeed justly; for we receive the due reward of our deeds: but this man hath done nothing amiss.</VERS>\r\n      <VERS vnumber=\"42\">And he said unto Jesus, Lord, remember me when thou comest into thy kingdom.</VERS>\r\n      <VERS vnumber=\"43\">And Jesus said unto him, Verily I say unto thee, To day shalt thou be with me in paradise.</VERS>\r\n      <VERS vnumber=\"44\">And it was about the sixth hour, and there was a darkness over all the earth until the ninth hour.</VERS>\r\n      <VERS vnumber=\"45\">And the sun was darkened, and the veil of the temple was rent in the midst.</VERS>\r\n      <VERS vnumber=\"46\">And 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.</VERS>\r\n      <VERS vnumber=\"47\">Now when the centurion saw what was done, he glorified God, saying, Certainly this was a righteous man.</VERS>\r\n      <VERS vnumber=\"48\">And all the people that came together to that sight, beholding the things which were done, smote their breasts, and returned.</VERS>\r\n      <VERS vnumber=\"49\">And all his acquaintance, and the women that followed him from Galilee, stood afar off, beholding these things.</VERS>\r\n      <VERS vnumber=\"50\">And, behold, there was a man named Joseph, a counsellor; and he was a good man, and a just:</VERS>\r\n      <VERS vnumber=\"51\">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.</VERS>\r\n      <VERS vnumber=\"52\">This man went unto Pilate, and begged the body of Jesus.</VERS>\r\n      <VERS vnumber=\"53\">And 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.</VERS>\r\n      <VERS vnumber=\"54\">And that day was the preparation, and the sabbath drew on.</VERS>\r\n      <VERS vnumber=\"55\">And the women also, which came with him from Galilee, followed after, and beheld the sepulchre, and how his body was laid.</VERS>\r\n      <VERS vnumber=\"56\">And they returned, and prepared spices and ointments; and rested the sabbath day according to the commandment.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"24\">\r\n      <VERS vnumber=\"1\">Now 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.</VERS>\r\n      <VERS vnumber=\"2\">And they found the stone rolled away from the sepulchre.</VERS>\r\n      <VERS vnumber=\"3\">And they entered in, and found not the body of the Lord Jesus.</VERS>\r\n      <VERS vnumber=\"4\">And it came to pass, as they were much perplexed thereabout, behold, two men stood by them in shining garments:</VERS>\r\n      <VERS vnumber=\"5\">And as they were afraid, and bowed down their faces to the earth, they said unto them, Why seek ye the living among the dead?</VERS>\r\n      <VERS vnumber=\"6\">He is not here, but is risen: remember how he spake unto you when he was yet in Galilee,</VERS>\r\n      <VERS vnumber=\"7\">Saying, The Son of man must be delivered into the hands of sinful men, and be crucified, and the third day rise again.</VERS>\r\n      <VERS vnumber=\"8\">And they remembered his words,</VERS>\r\n      <VERS vnumber=\"9\">And returned from the sepulchre, and told all these things unto the eleven, and to all the rest.</VERS>\r\n      <VERS vnumber=\"10\">It 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.</VERS>\r\n      <VERS vnumber=\"11\">And their words seemed to them as idle tales, and they believed them not.</VERS>\r\n      <VERS vnumber=\"12\">Then 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.</VERS>\r\n      <VERS vnumber=\"13\">And, behold, two of them went that same day to a village called Emmaus, which was from Jerusalem about threescore furlongs.</VERS>\r\n      <VERS vnumber=\"14\">And they talked together of all these things which had happened.</VERS>\r\n      <VERS vnumber=\"15\">And it came to pass, that, while they communed together and reasoned, Jesus himself drew near, and went with them.</VERS>\r\n      <VERS vnumber=\"16\">But their eyes were holden that they should not know him.</VERS>\r\n      <VERS vnumber=\"17\">And he said unto them, What manner of communications are these that ye have one to another, as ye walk, and are sad?</VERS>\r\n      <VERS vnumber=\"18\">And 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?</VERS>\r\n      <VERS vnumber=\"19\">And 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:</VERS>\r\n      <VERS vnumber=\"20\">And how the chief priests and our rulers delivered him to be condemned to death, and have crucified him.</VERS>\r\n      <VERS vnumber=\"21\">But 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.</VERS>\r\n      <VERS vnumber=\"22\">Yea, and certain women also of our company made us astonished, which were early at the sepulchre;</VERS>\r\n      <VERS vnumber=\"23\">And when they found not his body, they came, saying, that they had also seen a vision of angels, which said that he was alive.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">Then he said unto them, O fools, and slow of heart to believe all that the prophets have spoken:</VERS>\r\n      <VERS vnumber=\"26\">Ought not Christ to have suffered these things, and to enter into his glory?</VERS>\r\n      <VERS vnumber=\"27\">And beginning at Moses and all the prophets, he expounded unto them in all the scriptures the things concerning himself.</VERS>\r\n      <VERS vnumber=\"28\">And they drew nigh unto the village, whither they went: and he made as though he would have gone further.</VERS>\r\n      <VERS vnumber=\"29\">But 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.</VERS>\r\n      <VERS vnumber=\"30\">And it came to pass, as he sat at meat with them, he took bread, and blessed it, and brake, and gave to them.</VERS>\r\n      <VERS vnumber=\"31\">And their eyes were opened, and they knew him; and he vanished out of their sight.</VERS>\r\n      <VERS vnumber=\"32\">And 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?</VERS>\r\n      <VERS vnumber=\"33\">And they rose up the same hour, and returned to Jerusalem, and found the eleven gathered together, and them that were with them,</VERS>\r\n      <VERS vnumber=\"34\">Saying, The Lord is risen indeed, and hath appeared to Simon.</VERS>\r\n      <VERS vnumber=\"35\">And they told what things were done in the way, and how he was known of them in breaking of bread.</VERS>\r\n      <VERS vnumber=\"36\">And as they thus spake, Jesus himself stood in the midst of them, and saith unto them, Peace be unto you.</VERS>\r\n      <VERS vnumber=\"37\">But they were terrified and affrighted, and supposed that they had seen a spirit.</VERS>\r\n      <VERS vnumber=\"38\">And he said unto them, Why are ye troubled? and why do thoughts arise in your hearts?</VERS>\r\n      <VERS vnumber=\"39\">Behold 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.</VERS>\r\n      <VERS vnumber=\"40\">And when he had thus spoken, he shewed them his hands and his feet.</VERS>\r\n      <VERS vnumber=\"41\">And while they yet believed not for joy, and wondered, he said unto them, Have ye here any meat?</VERS>\r\n      <VERS vnumber=\"42\">And they gave him a piece of a broiled fish, and of an honeycomb.</VERS>\r\n      <VERS vnumber=\"43\">And he took it, and did eat before them.</VERS>\r\n      <VERS vnumber=\"44\">And 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.</VERS>\r\n      <VERS vnumber=\"45\">Then opened he their understanding, that they might understand the scriptures,</VERS>\r\n      <VERS vnumber=\"46\">And said unto them, Thus it is written, and thus it behoved Christ to suffer, and to rise from the dead the third day:</VERS>\r\n      <VERS vnumber=\"47\">And that repentance and remission of sins should be preached in his name among all nations, beginning at Jerusalem.</VERS>\r\n      <VERS vnumber=\"48\">And ye are witnesses of these things.</VERS>\r\n      <VERS vnumber=\"49\">And, 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.</VERS>\r\n      <VERS vnumber=\"50\">And he led them out as far as to Bethany, and he lifted up his hands, and blessed them.</VERS>\r\n      <VERS vnumber=\"51\">And it came to pass, while he blessed them, he was parted from them, and carried up into heaven.</VERS>\r\n      <VERS vnumber=\"52\">And they worshipped him, and returned to Jerusalem with great joy:</VERS>\r\n      <VERS vnumber=\"53\">And were continually in the temple, praising and blessing God. Amen.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"43\" bname=\"John\" bsname=\"John\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">In the beginning was the Word, and the Word was with God, and the Word was God.</VERS>\r\n      <VERS vnumber=\"2\">The same was in the beginning with God.</VERS>\r\n      <VERS vnumber=\"3\">All things were made by him; and without him was not any thing made that was made.</VERS>\r\n      <VERS vnumber=\"4\">In him was life; and the life was the light of men.</VERS>\r\n      <VERS vnumber=\"5\">And the light shineth in darkness; and the darkness comprehended it not.</VERS>\r\n      <VERS vnumber=\"6\">There was a man sent from God, whose name was John.</VERS>\r\n      <VERS vnumber=\"7\">The same came for a witness, to bear witness of the Light, that all men through him might believe.</VERS>\r\n      <VERS vnumber=\"8\">He was not that Light, but was sent to bear witness of that Light.</VERS>\r\n      <VERS vnumber=\"9\">That was the true Light, which lighteth every man that cometh into the world.</VERS>\r\n      <VERS vnumber=\"10\">He was in the world, and the world was made by him, and the world knew him not.</VERS>\r\n      <VERS vnumber=\"11\">He came unto his own, and his own received him not.</VERS>\r\n      <VERS vnumber=\"12\">But as many as received him, to them gave he power to become the sons of God, even to them that believe on his name:</VERS>\r\n      <VERS vnumber=\"13\">Which were born, not of blood, nor of the will of the flesh, nor of the will of man, but of God.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">John 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.</VERS>\r\n      <VERS vnumber=\"16\">And of his fulness have all we received, and grace for grace.</VERS>\r\n      <VERS vnumber=\"17\">For the law was given by Moses, but grace and truth came by Jesus Christ.</VERS>\r\n      <VERS vnumber=\"18\">No man hath seen God at any time; the only begotten Son, which is in the bosom of the Father, he hath declared him.</VERS>\r\n      <VERS vnumber=\"19\">And this is the record of John, when the Jews sent priests and Levites from Jerusalem to ask him, Who art thou?</VERS>\r\n      <VERS vnumber=\"20\">And he confessed, and denied not; but confessed, I am not the Christ.</VERS>\r\n      <VERS vnumber=\"21\">And they asked him, What then? Art thou Elias? And he saith, I am not. Art thou that prophet? And he answered, No.</VERS>\r\n      <VERS vnumber=\"22\">Then said they unto him, Who art thou? that we may give an answer to them that sent us. What sayest thou of thyself?</VERS>\r\n      <VERS vnumber=\"23\">He said, I am the voice of one crying in the wilderness, Make straight the way of the Lord, as said the prophet Esaias.</VERS>\r\n      <VERS vnumber=\"24\">And they which were sent were of the Pharisees.</VERS>\r\n      <VERS vnumber=\"25\">And they asked him, and said unto him, Why baptizest thou then, if thou be not that Christ, nor Elias, neither that prophet?</VERS>\r\n      <VERS vnumber=\"26\">John answered them, saying, I baptize with water: but there standeth one among you, whom ye know not;</VERS>\r\n      <VERS vnumber=\"27\">He it is, who coming after me is preferred before me, whose shoe's latchet I am not worthy to unloose.</VERS>\r\n      <VERS vnumber=\"28\">These things were done in Bethabara beyond Jordan, where John was baptizing.</VERS>\r\n      <VERS vnumber=\"29\">The next day John seeth Jesus coming unto him, and saith, Behold the Lamb of God, which taketh away the sin of the world.</VERS>\r\n      <VERS vnumber=\"30\">This is he of whom I said, After me cometh a man which is preferred before me: for he was before me.</VERS>\r\n      <VERS vnumber=\"31\">And I knew him not: but that he should be made manifest to Israel, therefore am I come baptizing with water.</VERS>\r\n      <VERS vnumber=\"32\">And John bare record, saying, I saw the Spirit descending from heaven like a dove, and it abode upon him.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">And I saw, and bare record that this is the Son of God.</VERS>\r\n      <VERS vnumber=\"35\">Again the next day after John stood, and two of his disciples;</VERS>\r\n      <VERS vnumber=\"36\">And looking upon Jesus as he walked, he saith, Behold the Lamb of God!</VERS>\r\n      <VERS vnumber=\"37\">And the two disciples heard him speak, and they followed Jesus.</VERS>\r\n      <VERS vnumber=\"38\">Then 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?</VERS>\r\n      <VERS vnumber=\"39\">He 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.</VERS>\r\n      <VERS vnumber=\"40\">One of the two which heard John speak, and followed him, was Andrew, Simon Peter's brother.</VERS>\r\n      <VERS vnumber=\"41\">He first findeth his own brother Simon, and saith unto him, We have found the Messias, which is, being interpreted, the Christ.</VERS>\r\n      <VERS vnumber=\"42\">And 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.</VERS>\r\n      <VERS vnumber=\"43\">The day following Jesus would go forth into Galilee, and findeth Philip, and saith unto him, Follow me.</VERS>\r\n      <VERS vnumber=\"44\">Now Philip was of Bethsaida, the city of Andrew and Peter.</VERS>\r\n      <VERS vnumber=\"45\">Philip 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.</VERS>\r\n      <VERS vnumber=\"46\">And Nathanael said unto him, Can there any good thing come out of Nazareth? Philip saith unto him, Come and see.</VERS>\r\n      <VERS vnumber=\"47\">Jesus saw Nathanael coming to him, and saith of him, Behold an Israelite indeed, in whom is no guile!</VERS>\r\n      <VERS vnumber=\"48\">Nathanael 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.</VERS>\r\n      <VERS vnumber=\"49\">Nathanael answered and saith unto him, Rabbi, thou art the Son of God; thou art the King of Israel.</VERS>\r\n      <VERS vnumber=\"50\">Jesus 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.</VERS>\r\n      <VERS vnumber=\"51\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">And the third day there was a marriage in Cana of Galilee; and the mother of Jesus was there:</VERS>\r\n      <VERS vnumber=\"2\">And both Jesus was called, and his disciples, to the marriage.</VERS>\r\n      <VERS vnumber=\"3\">And when they wanted wine, the mother of Jesus saith unto him, They have no wine.</VERS>\r\n      <VERS vnumber=\"4\">Jesus saith unto her, Woman, what have I to do with thee? mine hour is not yet come.</VERS>\r\n      <VERS vnumber=\"5\">His mother saith unto the servants, Whatsoever he saith unto you, do it.</VERS>\r\n      <VERS vnumber=\"6\">And there were set there six waterpots of stone, after the manner of the purifying of the Jews, containing two or three firkins apiece.</VERS>\r\n      <VERS vnumber=\"7\">Jesus saith unto them, Fill the waterpots with water. And they filled them up to the brim.</VERS>\r\n      <VERS vnumber=\"8\">And he saith unto them, Draw out now, and bear unto the governor of the feast. And they bare it.</VERS>\r\n      <VERS vnumber=\"9\">When 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,</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">This beginning of miracles did Jesus in Cana of Galilee, and manifested forth his glory; and his disciples believed on him.</VERS>\r\n      <VERS vnumber=\"12\">After this he went down to Capernaum, he, and his mother, and his brethren, and his disciples: and they continued there not many days.</VERS>\r\n      <VERS vnumber=\"13\">And the Jews' passover was at hand, and Jesus went up to Jerusalem,</VERS>\r\n      <VERS vnumber=\"14\">And found in the temple those that sold oxen and sheep and doves, and the changers of money sitting:</VERS>\r\n      <VERS vnumber=\"15\">And 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;</VERS>\r\n      <VERS vnumber=\"16\">And said unto them that sold doves, Take these things hence; make not my Father's house an house of merchandise.</VERS>\r\n      <VERS vnumber=\"17\">And his disciples remembered that it was written, The zeal of thine house hath eaten me up.</VERS>\r\n      <VERS vnumber=\"18\">Then answered the Jews and said unto him, What sign shewest thou unto us, seeing that thou doest these things?</VERS>\r\n      <VERS vnumber=\"19\">Jesus answered and said unto them, Destroy this temple, and in three days I will raise it up.</VERS>\r\n      <VERS vnumber=\"20\">Then said the Jews, Forty and six years was this temple in building, and wilt thou rear it up in three days?</VERS>\r\n      <VERS vnumber=\"21\">But he spake of the temple of his body.</VERS>\r\n      <VERS vnumber=\"22\">When 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.</VERS>\r\n      <VERS vnumber=\"23\">Now 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.</VERS>\r\n      <VERS vnumber=\"24\">But Jesus did not commit himself unto them, because he knew all men,</VERS>\r\n      <VERS vnumber=\"25\">And needed not that any should testify of man: for he knew what was in man.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">There was a man of the Pharisees, named Nicodemus, a ruler of the Jews:</VERS>\r\n      <VERS vnumber=\"2\">The 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.</VERS>\r\n      <VERS vnumber=\"3\">Jesus answered and said unto him, Verily, verily, I say unto thee, Except a man be born again, he cannot see the kingdom of God.</VERS>\r\n      <VERS vnumber=\"4\">Nicodemus 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?</VERS>\r\n      <VERS vnumber=\"5\">Jesus 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.</VERS>\r\n      <VERS vnumber=\"6\">That which is born of the flesh is flesh; and that which is born of the Spirit is spirit.</VERS>\r\n      <VERS vnumber=\"7\">Marvel not that I said unto thee, Ye must be born again.</VERS>\r\n      <VERS vnumber=\"8\">The 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.</VERS>\r\n      <VERS vnumber=\"9\">Nicodemus answered and said unto him, How can these things be?</VERS>\r\n      <VERS vnumber=\"10\">Jesus answered and said unto him, Art thou a master of Israel, and knowest not these things?</VERS>\r\n      <VERS vnumber=\"11\">Verily, verily, I say unto thee, We speak that we do know, and testify that we have seen; and ye receive not our witness.</VERS>\r\n      <VERS vnumber=\"12\">If I have told you earthly things, and ye believe not, how shall ye believe, if I tell you of heavenly things?</VERS>\r\n      <VERS vnumber=\"13\">And no man hath ascended up to heaven, but he that came down from heaven, even the Son of man which is in heaven.</VERS>\r\n      <VERS vnumber=\"14\">And as Moses lifted up the serpent in the wilderness, even so must the Son of man be lifted up:</VERS>\r\n      <VERS vnumber=\"15\">That whosoever believeth in him should not perish, but have eternal life.</VERS>\r\n      <VERS vnumber=\"16\">For God so loved the world, that he gave his only begotten Son, that whosoever believeth in him should not perish, but have everlasting life.</VERS>\r\n      <VERS vnumber=\"17\">For God sent not his Son into the world to condemn the world; but that the world through him might be saved.</VERS>\r\n      <VERS vnumber=\"18\">He 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.</VERS>\r\n      <VERS vnumber=\"19\">And this is the condemnation, that light is come into the world, and men loved darkness rather than light, because their deeds were evil.</VERS>\r\n      <VERS vnumber=\"20\">For every one that doeth evil hateth the light, neither cometh to the light, lest his deeds should be reproved.</VERS>\r\n      <VERS vnumber=\"21\">But he that doeth truth cometh to the light, that his deeds may be made manifest, that they are wrought in God.</VERS>\r\n      <VERS vnumber=\"22\">After these things came Jesus and his disciples into the land of Judaea; and there he tarried with them, and baptized.</VERS>\r\n      <VERS vnumber=\"23\">And John also was baptizing in Aenon near to Salim, because there was much water there: and they came, and were baptized.</VERS>\r\n      <VERS vnumber=\"24\">For John was not yet cast into prison.</VERS>\r\n      <VERS vnumber=\"25\">Then there arose a question between some of John's disciples and the Jews about purifying.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">John answered and said, A man can receive nothing, except it be given him from heaven.</VERS>\r\n      <VERS vnumber=\"28\">Ye yourselves bear me witness, that I said, I am not the Christ, but that I am sent before him.</VERS>\r\n      <VERS vnumber=\"29\">He 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.</VERS>\r\n      <VERS vnumber=\"30\">He must increase, but I must decrease.</VERS>\r\n      <VERS vnumber=\"31\">He 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.</VERS>\r\n      <VERS vnumber=\"32\">And what he hath seen and heard, that he testifieth; and no man receiveth his testimony.</VERS>\r\n      <VERS vnumber=\"33\">He that hath received his testimony hath set to his seal that God is true.</VERS>\r\n      <VERS vnumber=\"34\">For he whom God hath sent speaketh the words of God: for God giveth not the Spirit by measure unto him.</VERS>\r\n      <VERS vnumber=\"35\">The Father loveth the Son, and hath given all things into his hand.</VERS>\r\n      <VERS vnumber=\"36\">He 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">When therefore the Lord knew how the Pharisees had heard that Jesus made and baptized more disciples than John,</VERS>\r\n      <VERS vnumber=\"2\">Though Jesus himself baptized not, but his disciples,)</VERS>\r\n      <VERS vnumber=\"3\">He left Judaea, and departed again into Galilee.</VERS>\r\n      <VERS vnumber=\"4\">And he must needs go through Samaria.</VERS>\r\n      <VERS vnumber=\"5\">Then cometh he to a city of Samaria, which is called Sychar, near to the parcel of ground that Jacob gave to his son Joseph.</VERS>\r\n      <VERS vnumber=\"6\">Now Jacob's well was there. Jesus therefore, being wearied with his journey, sat thus on the well: and it was about the sixth hour.</VERS>\r\n      <VERS vnumber=\"7\">There cometh a woman of Samaria to draw water: Jesus saith unto her, Give me to drink.</VERS>\r\n      <VERS vnumber=\"8\">For his disciples were gone away unto the city to buy meat.)</VERS>\r\n      <VERS vnumber=\"9\">Then 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.</VERS>\r\n      <VERS vnumber=\"10\">Jesus 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.</VERS>\r\n      <VERS vnumber=\"11\">The woman saith unto him, Sir, thou hast nothing to draw with, and the well is deep: from whence then hast thou that living water?</VERS>\r\n      <VERS vnumber=\"12\">Art thou greater than our father Jacob, which gave us the well, and drank thereof himself, and his children, and his cattle?</VERS>\r\n      <VERS vnumber=\"13\">Jesus answered and said unto her, Whosoever drinketh of this water shall thirst again:</VERS>\r\n      <VERS vnumber=\"14\">But 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.</VERS>\r\n      <VERS vnumber=\"15\">The woman saith unto him, Sir, give me this water, that I thirst not, neither come hither to draw.</VERS>\r\n      <VERS vnumber=\"16\">Jesus saith unto her, Go, call thy husband, and come hither.</VERS>\r\n      <VERS vnumber=\"17\">The woman answered and said, I have no husband. Jesus said unto her, Thou hast well said, I have no husband:</VERS>\r\n      <VERS vnumber=\"18\">For thou hast had five husbands; and he whom thou now hast is not thy husband: in that saidst thou truly.</VERS>\r\n      <VERS vnumber=\"19\">The woman saith unto him, Sir, I perceive that thou art a prophet.</VERS>\r\n      <VERS vnumber=\"20\">Our fathers worshipped in this mountain; and ye say, that in Jerusalem is the place where men ought to worship.</VERS>\r\n      <VERS vnumber=\"21\">Jesus saith unto her, Woman, believe me, the hour cometh, when ye shall neither in this mountain, nor yet at Jerusalem, worship the Father.</VERS>\r\n      <VERS vnumber=\"22\">Ye worship ye know not what: we know what we worship: for salvation is of the Jews.</VERS>\r\n      <VERS vnumber=\"23\">But 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.</VERS>\r\n      <VERS vnumber=\"24\">God is a Spirit: and they that worship him must worship him in spirit and in truth.</VERS>\r\n      <VERS vnumber=\"25\">The woman saith unto him, I know that Messias cometh, which is called Christ: when he is come, he will tell us all things.</VERS>\r\n      <VERS vnumber=\"26\">Jesus saith unto her, I that speak unto thee am he.</VERS>\r\n      <VERS vnumber=\"27\">And 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?</VERS>\r\n      <VERS vnumber=\"28\">The woman then left her waterpot, and went her way into the city, and saith to the men,</VERS>\r\n      <VERS vnumber=\"29\">Come, see a man, which told me all things that ever I did: is not this the Christ?</VERS>\r\n      <VERS vnumber=\"30\">Then they went out of the city, and came unto him.</VERS>\r\n      <VERS vnumber=\"31\">In the mean while his disciples prayed him, saying, Master, eat.</VERS>\r\n      <VERS vnumber=\"32\">But he said unto them, I have meat to eat that ye know not of.</VERS>\r\n      <VERS vnumber=\"33\">Therefore said the disciples one to another, Hath any man brought him ought to eat?</VERS>\r\n      <VERS vnumber=\"34\">Jesus saith unto them, My meat is to do the will of him that sent me, and to finish his work.</VERS>\r\n      <VERS vnumber=\"35\">Say 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.</VERS>\r\n      <VERS vnumber=\"36\">And he that reapeth receiveth wages, and gathereth fruit unto life eternal: that both he that soweth and he that reapeth may rejoice together.</VERS>\r\n      <VERS vnumber=\"37\">And herein is that saying true, One soweth, and another reapeth.</VERS>\r\n      <VERS vnumber=\"38\">I sent you to reap that whereon ye bestowed no labour: other men laboured, and ye are entered into their labours.</VERS>\r\n      <VERS vnumber=\"39\">And 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.</VERS>\r\n      <VERS vnumber=\"40\">So when the Samaritans were come unto him, they besought him that he would tarry with them: and he abode there two days.</VERS>\r\n      <VERS vnumber=\"41\">And many more believed because of his own word;</VERS>\r\n      <VERS vnumber=\"42\">And 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.</VERS>\r\n      <VERS vnumber=\"43\">Now after two days he departed thence, and went into Galilee.</VERS>\r\n      <VERS vnumber=\"44\">For Jesus himself testified, that a prophet hath no honour in his own country.</VERS>\r\n      <VERS vnumber=\"45\">Then 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.</VERS>\r\n      <VERS vnumber=\"46\">So 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.</VERS>\r\n      <VERS vnumber=\"47\">When 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.</VERS>\r\n      <VERS vnumber=\"48\">Then said Jesus unto him, Except ye see signs and wonders, ye will not believe.</VERS>\r\n      <VERS vnumber=\"49\">The nobleman saith unto him, Sir, come down ere my child die.</VERS>\r\n      <VERS vnumber=\"50\">Jesus 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.</VERS>\r\n      <VERS vnumber=\"51\">And as he was now going down, his servants met him, and told him, saying, Thy son liveth.</VERS>\r\n      <VERS vnumber=\"52\">Then 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.</VERS>\r\n      <VERS vnumber=\"53\">So 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.</VERS>\r\n      <VERS vnumber=\"54\">This is again the second miracle that Jesus did, when he was come out of Judaea into Galilee.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">After this there was a feast of the Jews; and Jesus went up to Jerusalem.</VERS>\r\n      <VERS vnumber=\"2\">Now there is at Jerusalem by the sheep market a pool, which is called in the Hebrew tongue Bethesda, having five porches.</VERS>\r\n      <VERS vnumber=\"3\">In these lay a great multitude of impotent folk, of blind, halt, withered, waiting for the moving of the water.</VERS>\r\n      <VERS vnumber=\"4\">For 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.</VERS>\r\n      <VERS vnumber=\"5\">And a certain man was there, which had an infirmity thirty and eight years.</VERS>\r\n      <VERS vnumber=\"6\">When 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?</VERS>\r\n      <VERS vnumber=\"7\">The 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.</VERS>\r\n      <VERS vnumber=\"8\">Jesus saith unto him, Rise, take up thy bed, and walk.</VERS>\r\n      <VERS vnumber=\"9\">And immediately the man was made whole, and took up his bed, and walked: and on the same day was the sabbath.</VERS>\r\n      <VERS vnumber=\"10\">The Jews therefore said unto him that was cured, It is the sabbath day: it is not lawful for thee to carry thy bed.</VERS>\r\n      <VERS vnumber=\"11\">He answered them, He that made me whole, the same said unto me, Take up thy bed, and walk.</VERS>\r\n      <VERS vnumber=\"12\">Then asked they him, What man is that which said unto thee, Take up thy bed, and walk?</VERS>\r\n      <VERS vnumber=\"13\">And he that was healed wist not who it was: for Jesus had conveyed himself away, a multitude being in that place.</VERS>\r\n      <VERS vnumber=\"14\">Afterward 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.</VERS>\r\n      <VERS vnumber=\"15\">The man departed, and told the Jews that it was Jesus, which had made him whole.</VERS>\r\n      <VERS vnumber=\"16\">And therefore did the Jews persecute Jesus, and sought to slay him, because he had done these things on the sabbath day.</VERS>\r\n      <VERS vnumber=\"17\">But Jesus answered them, My Father worketh hitherto, and I work.</VERS>\r\n      <VERS vnumber=\"18\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"19\">Then 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.</VERS>\r\n      <VERS vnumber=\"20\">For 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.</VERS>\r\n      <VERS vnumber=\"21\">For as the Father raiseth up the dead, and quickeneth them; even so the Son quickeneth whom he will.</VERS>\r\n      <VERS vnumber=\"22\">For the Father judgeth no man, but hath committed all judgment unto the Son:</VERS>\r\n      <VERS vnumber=\"23\">That 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.</VERS>\r\n      <VERS vnumber=\"24\">Verily, 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.</VERS>\r\n      <VERS vnumber=\"25\">Verily, 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.</VERS>\r\n      <VERS vnumber=\"26\">For as the Father hath life in himself; so hath he given to the Son to have life in himself;</VERS>\r\n      <VERS vnumber=\"27\">And hath given him authority to execute judgment also, because he is the Son of man.</VERS>\r\n      <VERS vnumber=\"28\">Marvel not at this: for the hour is coming, in the which all that are in the graves shall hear his voice,</VERS>\r\n      <VERS vnumber=\"29\">And shall come forth; they that have done good, unto the resurrection of life; and they that have done evil, unto the resurrection of damnation.</VERS>\r\n      <VERS vnumber=\"30\">I 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.</VERS>\r\n      <VERS vnumber=\"31\">If I bear witness of myself, my witness is not true.</VERS>\r\n      <VERS vnumber=\"32\">There is another that beareth witness of me; and I know that the witness which he witnesseth of me is true.</VERS>\r\n      <VERS vnumber=\"33\">Ye sent unto John, and he bare witness unto the truth.</VERS>\r\n      <VERS vnumber=\"34\">But I receive not testimony from man: but these things I say, that ye might be saved.</VERS>\r\n      <VERS vnumber=\"35\">He was a burning and a shining light: and ye were willing for a season to rejoice in his light.</VERS>\r\n      <VERS vnumber=\"36\">But 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.</VERS>\r\n      <VERS vnumber=\"37\">And 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.</VERS>\r\n      <VERS vnumber=\"38\">And ye have not his word abiding in you: for whom he hath sent, him ye believe not.</VERS>\r\n      <VERS vnumber=\"39\">Search the scriptures; for in them ye think ye have eternal life: and they are they which testify of me.</VERS>\r\n      <VERS vnumber=\"40\">And ye will not come to me, that ye might have life.</VERS>\r\n      <VERS vnumber=\"41\">I receive not honour from men.</VERS>\r\n      <VERS vnumber=\"42\">But I know you, that ye have not the love of God in you.</VERS>\r\n      <VERS vnumber=\"43\">I am come in my Father's name, and ye receive me not: if another shall come in his own name, him ye will receive.</VERS>\r\n      <VERS vnumber=\"44\">How can ye believe, which receive honour one of another, and seek not the honour that cometh from God only?</VERS>\r\n      <VERS vnumber=\"45\">Do not think that I will accuse you to the Father: there is one that accuseth you, even Moses, in whom ye trust.</VERS>\r\n      <VERS vnumber=\"46\">For had ye believed Moses, ye would have believed me: for he wrote of me.</VERS>\r\n      <VERS vnumber=\"47\">But if ye believe not his writings, how shall ye believe my words?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">After these things Jesus went over the sea of Galilee, which is the sea of Tiberias.</VERS>\r\n      <VERS vnumber=\"2\">And a great multitude followed him, because they saw his miracles which he did on them that were diseased.</VERS>\r\n      <VERS vnumber=\"3\">And Jesus went up into a mountain, and there he sat with his disciples.</VERS>\r\n      <VERS vnumber=\"4\">And the passover, a feast of the Jews, was nigh.</VERS>\r\n      <VERS vnumber=\"5\">When 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?</VERS>\r\n      <VERS vnumber=\"6\">And this he said to prove him: for he himself knew what he would do.</VERS>\r\n      <VERS vnumber=\"7\">Philip answered him, Two hundred pennyworth of bread is not sufficient for them, that every one of them may take a little.</VERS>\r\n      <VERS vnumber=\"8\">One of his disciples, Andrew, Simon Peter's brother, saith unto him,</VERS>\r\n      <VERS vnumber=\"9\">There is a lad here, which hath five barley loaves, and two small fishes: but what are they among so many?</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">When they were filled, he said unto his disciples, Gather up the fragments that remain, that nothing be lost.</VERS>\r\n      <VERS vnumber=\"13\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"14\">Then 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.</VERS>\r\n      <VERS vnumber=\"15\">When 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.</VERS>\r\n      <VERS vnumber=\"16\">And when even was now come, his disciples went down unto the sea,</VERS>\r\n      <VERS vnumber=\"17\">And entered into a ship, and went over the sea toward Capernaum. And it was now dark, and Jesus was not come to them.</VERS>\r\n      <VERS vnumber=\"18\">And the sea arose by reason of a great wind that blew.</VERS>\r\n      <VERS vnumber=\"19\">So 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.</VERS>\r\n      <VERS vnumber=\"20\">But he saith unto them, It is I; be not afraid.</VERS>\r\n      <VERS vnumber=\"21\">Then they willingly received him into the ship: and immediately the ship was at the land whither they went.</VERS>\r\n      <VERS vnumber=\"22\">The 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;</VERS>\r\n      <VERS vnumber=\"23\">Howbeit there came other boats from Tiberias nigh unto the place where they did eat bread, after that the Lord had given thanks:)</VERS>\r\n      <VERS vnumber=\"24\">When the people therefore saw that Jesus was not there, neither his disciples, they also took shipping, and came to Capernaum, seeking for Jesus.</VERS>\r\n      <VERS vnumber=\"25\">And when they had found him on the other side of the sea, they said unto him, Rabbi, when camest thou hither?</VERS>\r\n      <VERS vnumber=\"26\">Jesus 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.</VERS>\r\n      <VERS vnumber=\"27\">Labour 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.</VERS>\r\n      <VERS vnumber=\"28\">Then said they unto him, What shall we do, that we might work the works of God?</VERS>\r\n      <VERS vnumber=\"29\">Jesus answered and said unto them, This is the work of God, that ye believe on him whom he hath sent.</VERS>\r\n      <VERS vnumber=\"30\">They said therefore unto him, What sign shewest thou then, that we may see, and believe thee? what dost thou work?</VERS>\r\n      <VERS vnumber=\"31\">Our fathers did eat manna in the desert; as it is written, He gave them bread from heaven to eat.</VERS>\r\n      <VERS vnumber=\"32\">Then 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.</VERS>\r\n      <VERS vnumber=\"33\">For the bread of God is he which cometh down from heaven, and giveth life unto the world.</VERS>\r\n      <VERS vnumber=\"34\">Then said they unto him, Lord, evermore give us this bread.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">But I said unto you, That ye also have seen me, and believe not.</VERS>\r\n      <VERS vnumber=\"37\">All that the Father giveth me shall come to me; and him that cometh to me I will in no wise cast out.</VERS>\r\n      <VERS vnumber=\"38\">For I came down from heaven, not to do mine own will, but the will of him that sent me.</VERS>\r\n      <VERS vnumber=\"39\">And 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.</VERS>\r\n      <VERS vnumber=\"40\">And 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.</VERS>\r\n      <VERS vnumber=\"41\">The Jews then murmured at him, because he said, I am the bread which came down from heaven.</VERS>\r\n      <VERS vnumber=\"42\">And 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?</VERS>\r\n      <VERS vnumber=\"43\">Jesus therefore answered and said unto them, Murmur not among yourselves.</VERS>\r\n      <VERS vnumber=\"44\">No man can come to me, except the Father which hath sent me draw him: and I will raise him up at the last day.</VERS>\r\n      <VERS vnumber=\"45\">It 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.</VERS>\r\n      <VERS vnumber=\"46\">Not that any man hath seen the Father, save he which is of God, he hath seen the Father.</VERS>\r\n      <VERS vnumber=\"47\">Verily, verily, I say unto you, He that believeth on me hath everlasting life.</VERS>\r\n      <VERS vnumber=\"48\">I am that bread of life.</VERS>\r\n      <VERS vnumber=\"49\">Your fathers did eat manna in the wilderness, and are dead.</VERS>\r\n      <VERS vnumber=\"50\">This is the bread which cometh down from heaven, that a man may eat thereof, and not die.</VERS>\r\n      <VERS vnumber=\"51\">I 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.</VERS>\r\n      <VERS vnumber=\"52\">The Jews therefore strove among themselves, saying, How can this man give us his flesh to eat?</VERS>\r\n      <VERS vnumber=\"53\">Then 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.</VERS>\r\n      <VERS vnumber=\"54\">Whoso eateth my flesh, and drinketh my blood, hath eternal life; and I will raise him up at the last day.</VERS>\r\n      <VERS vnumber=\"55\">For my flesh is meat indeed, and my blood is drink indeed.</VERS>\r\n      <VERS vnumber=\"56\">He that eateth my flesh, and drinketh my blood, dwelleth in me, and I in him.</VERS>\r\n      <VERS vnumber=\"57\">As the living Father hath sent me, and I live by the Father: so he that eateth me, even he shall live by me.</VERS>\r\n      <VERS vnumber=\"58\">This 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.</VERS>\r\n      <VERS vnumber=\"59\">These things said he in the synagogue, as he taught in Capernaum.</VERS>\r\n      <VERS vnumber=\"60\">Many therefore of his disciples, when they had heard this, said, This is an hard saying; who can hear it?</VERS>\r\n      <VERS vnumber=\"61\">When Jesus knew in himself that his disciples murmured at it, he said unto them, Doth this offend you?</VERS>\r\n      <VERS vnumber=\"62\">What and if ye shall see the Son of man ascend up where he was before?</VERS>\r\n      <VERS vnumber=\"63\">It is the spirit that quickeneth; the flesh profiteth nothing: the words that I speak unto you, they are spirit, and they are life.</VERS>\r\n      <VERS vnumber=\"64\">But 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.</VERS>\r\n      <VERS vnumber=\"65\">And he said, Therefore said I unto you, that no man can come unto me, except it were given unto him of my Father.</VERS>\r\n      <VERS vnumber=\"66\">From that time many of his disciples went back, and walked no more with him.</VERS>\r\n      <VERS vnumber=\"67\">Then said Jesus unto the twelve, Will ye also go away?</VERS>\r\n      <VERS vnumber=\"68\">Then Simon Peter answered him, Lord, to whom shall we go? thou hast the words of eternal life.</VERS>\r\n      <VERS vnumber=\"69\">And we believe and are sure that thou art that Christ, the Son of the living God.</VERS>\r\n      <VERS vnumber=\"70\">Jesus answered them, Have not I chosen you twelve, and one of you is a devil?</VERS>\r\n      <VERS vnumber=\"71\">He spake of Judas Iscariot the son of Simon: for he it was that should betray him, being one of the twelve.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">After these things Jesus walked in Galilee: for he would not walk in Jewry, because the Jews sought to kill him.</VERS>\r\n      <VERS vnumber=\"2\">Now the Jews' feast of tabernacles was at hand.</VERS>\r\n      <VERS vnumber=\"3\">His brethren therefore said unto him, Depart hence, and go into Judaea, that thy disciples also may see the works that thou doest.</VERS>\r\n      <VERS vnumber=\"4\">For 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.</VERS>\r\n      <VERS vnumber=\"5\">For neither did his brethren believe in him.</VERS>\r\n      <VERS vnumber=\"6\">Then Jesus said unto them, My time is not yet come: but your time is alway ready.</VERS>\r\n      <VERS vnumber=\"7\">The world cannot hate you; but me it hateth, because I testify of it, that the works thereof are evil.</VERS>\r\n      <VERS vnumber=\"8\">Go ye up unto this feast: I go not up yet unto this feast; for my time is not yet full come.</VERS>\r\n      <VERS vnumber=\"9\">When he had said these words unto them, he abode still in Galilee.</VERS>\r\n      <VERS vnumber=\"10\">But when his brethren were gone up, then went he also up unto the feast, not openly, but as it were in secret.</VERS>\r\n      <VERS vnumber=\"11\">Then the Jews sought him at the feast, and said, Where is he?</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">Howbeit no man spake openly of him for fear of the Jews.</VERS>\r\n      <VERS vnumber=\"14\">Now about the midst of the feast Jesus went up into the temple, and taught.</VERS>\r\n      <VERS vnumber=\"15\">And the Jews marvelled, saying, How knoweth this man letters, having never learned?</VERS>\r\n      <VERS vnumber=\"16\">Jesus answered them, and said, My doctrine is not mine, but his that sent me.</VERS>\r\n      <VERS vnumber=\"17\">If any man will do his will, he shall know of the doctrine, whether it be of God, or whether I speak of myself.</VERS>\r\n      <VERS vnumber=\"18\">He 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.</VERS>\r\n      <VERS vnumber=\"19\">Did not Moses give you the law, and yet none of you keepeth the law? Why go ye about to kill me?</VERS>\r\n      <VERS vnumber=\"20\">The people answered and said, Thou hast a devil: who goeth about to kill thee?</VERS>\r\n      <VERS vnumber=\"21\">Jesus answered and said unto them, I have done one work, and ye all marvel.</VERS>\r\n      <VERS vnumber=\"22\">Moses therefore gave unto you circumcision; (not because it is of Moses, but of the fathers;) and ye on the sabbath day circumcise a man.</VERS>\r\n      <VERS vnumber=\"23\">If 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?</VERS>\r\n      <VERS vnumber=\"24\">Judge not according to the appearance, but judge righteous judgment.</VERS>\r\n      <VERS vnumber=\"25\">Then said some of them of Jerusalem, Is not this he, whom they seek to kill?</VERS>\r\n      <VERS vnumber=\"26\">But, lo, he speaketh boldly, and they say nothing unto him. Do the rulers know indeed that this is the very Christ?</VERS>\r\n      <VERS vnumber=\"27\">Howbeit we know this man whence he is: but when Christ cometh, no man knoweth whence he is.</VERS>\r\n      <VERS vnumber=\"28\">Then 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.</VERS>\r\n      <VERS vnumber=\"29\">But I know him: for I am from him, and he hath sent me.</VERS>\r\n      <VERS vnumber=\"30\">Then they sought to take him: but no man laid hands on him, because his hour was not yet come.</VERS>\r\n      <VERS vnumber=\"31\">And many of the people believed on him, and said, When Christ cometh, will he do more miracles than these which this man hath done?</VERS>\r\n      <VERS vnumber=\"32\">The Pharisees heard that the people murmured such things concerning him; and the Pharisees and the chief priests sent officers to take him.</VERS>\r\n      <VERS vnumber=\"33\">Then said Jesus unto them, Yet a little while am I with you, and then I go unto him that sent me.</VERS>\r\n      <VERS vnumber=\"34\">Ye shall seek me, and shall not find me: and where I am, thither ye cannot come.</VERS>\r\n      <VERS vnumber=\"35\">Then 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?</VERS>\r\n      <VERS vnumber=\"36\">What 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?</VERS>\r\n      <VERS vnumber=\"37\">In 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.</VERS>\r\n      <VERS vnumber=\"38\">He that believeth on me, as the scripture hath said, out of his belly shall flow rivers of living water.</VERS>\r\n      <VERS vnumber=\"39\">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.)</VERS>\r\n      <VERS vnumber=\"40\">Many of the people therefore, when they heard this saying, said, Of a truth this is the Prophet.</VERS>\r\n      <VERS vnumber=\"41\">Others said, This is the Christ. But some said, Shall Christ come out of Galilee?</VERS>\r\n      <VERS vnumber=\"42\">Hath not the scripture said, That Christ cometh of the seed of David, and out of the town of Bethlehem, where David was?</VERS>\r\n      <VERS vnumber=\"43\">So there was a division among the people because of him.</VERS>\r\n      <VERS vnumber=\"44\">And some of them would have taken him; but no man laid hands on him.</VERS>\r\n      <VERS vnumber=\"45\">Then came the officers to the chief priests and Pharisees; and they said unto them, Why have ye not brought him?</VERS>\r\n      <VERS vnumber=\"46\">The officers answered, Never man spake like this man.</VERS>\r\n      <VERS vnumber=\"47\">Then answered them the Pharisees, Are ye also deceived?</VERS>\r\n      <VERS vnumber=\"48\">Have any of the rulers or of the Pharisees believed on him?</VERS>\r\n      <VERS vnumber=\"49\">But this people who knoweth not the law are cursed.</VERS>\r\n      <VERS vnumber=\"50\">Nicodemus saith unto them, (he that came to Jesus by night, being one of them,)</VERS>\r\n      <VERS vnumber=\"51\">Doth our law judge any man, before it hear him, and know what he doeth?</VERS>\r\n      <VERS vnumber=\"52\">They answered and said unto him, Art thou also of Galilee? Search, and look: for out of Galilee ariseth no prophet.</VERS>\r\n      <VERS vnumber=\"53\">And every man went unto his own house.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">Jesus went unto the mount of Olives.</VERS>\r\n      <VERS vnumber=\"2\">And early in the morning he came again into the temple, and all the people came unto him; and he sat down, and taught them.</VERS>\r\n      <VERS vnumber=\"3\">And the scribes and Pharisees brought unto him a woman taken in adultery; and when they had set her in the midst,</VERS>\r\n      <VERS vnumber=\"4\">They say unto him, Master, this woman was taken in adultery, in the very act.</VERS>\r\n      <VERS vnumber=\"5\">Now Moses in the law commanded us, that such should be stoned: but what sayest thou?</VERS>\r\n      <VERS vnumber=\"6\">This 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.</VERS>\r\n      <VERS vnumber=\"7\">So 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.</VERS>\r\n      <VERS vnumber=\"8\">And again he stooped down, and wrote on the ground.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">When 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?</VERS>\r\n      <VERS vnumber=\"11\">She said, No man, Lord. And Jesus said unto her, Neither do I condemn thee: go, and sin no more.</VERS>\r\n      <VERS vnumber=\"12\">Then 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.</VERS>\r\n      <VERS vnumber=\"13\">The Pharisees therefore said unto him, Thou bearest record of thyself; thy record is not true.</VERS>\r\n      <VERS vnumber=\"14\">Jesus 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.</VERS>\r\n      <VERS vnumber=\"15\">Ye judge after the flesh; I judge no man.</VERS>\r\n      <VERS vnumber=\"16\">And yet if I judge, my judgment is true: for I am not alone, but I and the Father that sent me.</VERS>\r\n      <VERS vnumber=\"17\">It is also written in your law, that the testimony of two men is true.</VERS>\r\n      <VERS vnumber=\"18\">I am one that bear witness of myself, and the Father that sent me beareth witness of me.</VERS>\r\n      <VERS vnumber=\"19\">Then 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.</VERS>\r\n      <VERS vnumber=\"20\">These 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.</VERS>\r\n      <VERS vnumber=\"21\">Then 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.</VERS>\r\n      <VERS vnumber=\"22\">Then said the Jews, Will he kill himself? because he saith, Whither I go, ye cannot come.</VERS>\r\n      <VERS vnumber=\"23\">And he said unto them, Ye are from beneath; I am from above: ye are of this world; I am not of this world.</VERS>\r\n      <VERS vnumber=\"24\">I 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.</VERS>\r\n      <VERS vnumber=\"25\">Then said they unto him, Who art thou? And Jesus saith unto them, Even the same that I said unto you from the beginning.</VERS>\r\n      <VERS vnumber=\"26\">I 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.</VERS>\r\n      <VERS vnumber=\"27\">They understood not that he spake to them of the Father.</VERS>\r\n      <VERS vnumber=\"28\">Then 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.</VERS>\r\n      <VERS vnumber=\"29\">And he that sent me is with me: the Father hath not left me alone; for I do always those things that please him.</VERS>\r\n      <VERS vnumber=\"30\">As he spake these words, many believed on him.</VERS>\r\n      <VERS vnumber=\"31\">Then said Jesus to those Jews which believed on him, If ye continue in my word, then are ye my disciples indeed;</VERS>\r\n      <VERS vnumber=\"32\">And ye shall know the truth, and the truth shall make you free.</VERS>\r\n      <VERS vnumber=\"33\">They answered him, We be Abraham's seed, and were never in bondage to any man: how sayest thou, Ye shall be made free?</VERS>\r\n      <VERS vnumber=\"34\">Jesus answered them, Verily, verily, I say unto you, Whosoever committeth sin is the servant of sin.</VERS>\r\n      <VERS vnumber=\"35\">And the servant abideth not in the house for ever: but the Son abideth ever.</VERS>\r\n      <VERS vnumber=\"36\">If the Son therefore shall make you free, ye shall be free indeed.</VERS>\r\n      <VERS vnumber=\"37\">I know that ye are Abraham's seed; but ye seek to kill me, because my word hath no place in you.</VERS>\r\n      <VERS vnumber=\"38\">I speak that which I have seen with my Father: and ye do that which ye have seen with your father.</VERS>\r\n      <VERS vnumber=\"39\">They 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.</VERS>\r\n      <VERS vnumber=\"40\">But now ye seek to kill me, a man that hath told you the truth, which I have heard of God: this did not Abraham.</VERS>\r\n      <VERS vnumber=\"41\">Ye do the deeds of your father. Then said they to him, We be not born of fornication; we have one Father, even God.</VERS>\r\n      <VERS vnumber=\"42\">Jesus 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.</VERS>\r\n      <VERS vnumber=\"43\">Why do ye not understand my speech? even because ye cannot hear my word.</VERS>\r\n      <VERS vnumber=\"44\">Ye 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.</VERS>\r\n      <VERS vnumber=\"45\">And because I tell you the truth, ye believe me not.</VERS>\r\n      <VERS vnumber=\"46\">Which of you convinceth me of sin? And if I say the truth, why do ye not believe me?</VERS>\r\n      <VERS vnumber=\"47\">He that is of God heareth God's words: ye therefore hear them not, because ye are not of God.</VERS>\r\n      <VERS vnumber=\"48\">Then answered the Jews, and said unto him, Say we not well that thou art a Samaritan, and hast a devil?</VERS>\r\n      <VERS vnumber=\"49\">Jesus answered, I have not a devil; but I honour my Father, and ye do dishonour me.</VERS>\r\n      <VERS vnumber=\"50\">And I seek not mine own glory: there is one that seeketh and judgeth.</VERS>\r\n      <VERS vnumber=\"51\">Verily, verily, I say unto you, If a man keep my saying, he shall never see death.</VERS>\r\n      <VERS vnumber=\"52\">Then 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.</VERS>\r\n      <VERS vnumber=\"53\">Art thou greater than our father Abraham, which is dead? and the prophets are dead: whom makest thou thyself?</VERS>\r\n      <VERS vnumber=\"54\">Jesus 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:</VERS>\r\n      <VERS vnumber=\"55\">Yet 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.</VERS>\r\n      <VERS vnumber=\"56\">Your father Abraham rejoiced to see my day: and he saw it, and was glad.</VERS>\r\n      <VERS vnumber=\"57\">Then said the Jews unto him, Thou art not yet fifty years old, and hast thou seen Abraham?</VERS>\r\n      <VERS vnumber=\"58\">Jesus said unto them, Verily, verily, I say unto you, Before Abraham was, I am.</VERS>\r\n      <VERS vnumber=\"59\">Then 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">And as Jesus passed by, he saw a man which was blind from his birth.</VERS>\r\n      <VERS vnumber=\"2\">And his disciples asked him, saying, Master, who did sin, this man, or his parents, that he was born blind?</VERS>\r\n      <VERS vnumber=\"3\">Jesus answered, Neither hath this man sinned, nor his parents: but that the works of God should be made manifest in him.</VERS>\r\n      <VERS vnumber=\"4\">I must work the works of him that sent me, while it is day: the night cometh, when no man can work.</VERS>\r\n      <VERS vnumber=\"5\">As long as I am in the world, I am the light of the world.</VERS>\r\n      <VERS vnumber=\"6\">When 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,</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">The neighbours therefore, and they which before had seen him that he was blind, said, Is not this he that sat and begged?</VERS>\r\n      <VERS vnumber=\"9\">Some said, This is he: others said, He is like him: but he said, I am he.</VERS>\r\n      <VERS vnumber=\"10\">Therefore said they unto him, How were thine eyes opened?</VERS>\r\n      <VERS vnumber=\"11\">He 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.</VERS>\r\n      <VERS vnumber=\"12\">Then said they unto him, Where is he? He said, I know not.</VERS>\r\n      <VERS vnumber=\"13\">They brought to the Pharisees him that aforetime was blind.</VERS>\r\n      <VERS vnumber=\"14\">And it was the sabbath day when Jesus made the clay, and opened his eyes.</VERS>\r\n      <VERS vnumber=\"15\">Then 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.</VERS>\r\n      <VERS vnumber=\"16\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"17\">They say unto the blind man again, What sayest thou of him, that he hath opened thine eyes? He said, He is a prophet.</VERS>\r\n      <VERS vnumber=\"18\">But 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.</VERS>\r\n      <VERS vnumber=\"19\">And they asked them, saying, Is this your son, who ye say was born blind? how then doth he now see?</VERS>\r\n      <VERS vnumber=\"20\">His parents answered them and said, We know that this is our son, and that he was born blind:</VERS>\r\n      <VERS vnumber=\"21\">But 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.</VERS>\r\n      <VERS vnumber=\"22\">These 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.</VERS>\r\n      <VERS vnumber=\"23\">Therefore said his parents, He is of age; ask him.</VERS>\r\n      <VERS vnumber=\"24\">Then again called they the man that was blind, and said unto him, Give God the praise: we know that this man is a sinner.</VERS>\r\n      <VERS vnumber=\"25\">He 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.</VERS>\r\n      <VERS vnumber=\"26\">Then said they to him again, What did he to thee? how opened he thine eyes?</VERS>\r\n      <VERS vnumber=\"27\">He answered them, I have told you already, and ye did not hear: wherefore would ye hear it again? will ye also be his disciples?</VERS>\r\n      <VERS vnumber=\"28\">Then they reviled him, and said, Thou art his disciple; but we are Moses' disciples.</VERS>\r\n      <VERS vnumber=\"29\">We know that God spake unto Moses: as for this fellow, we know not from whence he is.</VERS>\r\n      <VERS vnumber=\"30\">The 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.</VERS>\r\n      <VERS vnumber=\"31\">Now we know that God heareth not sinners: but if any man be a worshipper of God, and doeth his will, him he heareth.</VERS>\r\n      <VERS vnumber=\"32\">Since the world began was it not heard that any man opened the eyes of one that was born blind.</VERS>\r\n      <VERS vnumber=\"33\">If this man were not of God, he could do nothing.</VERS>\r\n      <VERS vnumber=\"34\">They answered and said unto him, Thou wast altogether born in sins, and dost thou teach us? And they cast him out.</VERS>\r\n      <VERS vnumber=\"35\">Jesus 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?</VERS>\r\n      <VERS vnumber=\"36\">He answered and said, Who is he, Lord, that I might believe on him?</VERS>\r\n      <VERS vnumber=\"37\">And Jesus said unto him, Thou hast both seen him, and it is he that talketh with thee.</VERS>\r\n      <VERS vnumber=\"38\">And he said, Lord, I believe. And he worshipped him.</VERS>\r\n      <VERS vnumber=\"39\">And 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.</VERS>\r\n      <VERS vnumber=\"40\">And some of the Pharisees which were with him heard these words, and said unto him, Are we blind also?</VERS>\r\n      <VERS vnumber=\"41\">Jesus said unto them, If ye were blind, ye should have no sin: but now ye say, We see; therefore your sin remaineth.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">Verily, 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.</VERS>\r\n      <VERS vnumber=\"2\">But he that entereth in by the door is the shepherd of the sheep.</VERS>\r\n      <VERS vnumber=\"3\">To him the porter openeth; and the sheep hear his voice: and he calleth his own sheep by name, and leadeth them out.</VERS>\r\n      <VERS vnumber=\"4\">And when he putteth forth his own sheep, he goeth before them, and the sheep follow him: for they know his voice.</VERS>\r\n      <VERS vnumber=\"5\">And a stranger will they not follow, but will flee from him: for they know not the voice of strangers.</VERS>\r\n      <VERS vnumber=\"6\">This parable spake Jesus unto them: but they understood not what things they were which he spake unto them.</VERS>\r\n      <VERS vnumber=\"7\">Then said Jesus unto them again, Verily, verily, I say unto you, I am the door of the sheep.</VERS>\r\n      <VERS vnumber=\"8\">All that ever came before me are thieves and robbers: but the sheep did not hear them.</VERS>\r\n      <VERS vnumber=\"9\">I am the door: by me if any man enter in, he shall be saved, and shall go in and out, and find pasture.</VERS>\r\n      <VERS vnumber=\"10\">The 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.</VERS>\r\n      <VERS vnumber=\"11\">I am the good shepherd: the good shepherd giveth his life for the sheep.</VERS>\r\n      <VERS vnumber=\"12\">But 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.</VERS>\r\n      <VERS vnumber=\"13\">The hireling fleeth, because he is an hireling, and careth not for the sheep.</VERS>\r\n      <VERS vnumber=\"14\">I am the good shepherd, and know my sheep, and am known of mine.</VERS>\r\n      <VERS vnumber=\"15\">As the Father knoweth me, even so know I the Father: and I lay down my life for the sheep.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">Therefore doth my Father love me, because I lay down my life, that I might take it again.</VERS>\r\n      <VERS vnumber=\"18\">No 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.</VERS>\r\n      <VERS vnumber=\"19\">There was a division therefore again among the Jews for these sayings.</VERS>\r\n      <VERS vnumber=\"20\">And many of them said, He hath a devil, and is mad; why hear ye him?</VERS>\r\n      <VERS vnumber=\"21\">Others said, These are not the words of him that hath a devil. Can a devil open the eyes of the blind?</VERS>\r\n      <VERS vnumber=\"22\">And it was at Jerusalem the feast of the dedication, and it was winter.</VERS>\r\n      <VERS vnumber=\"23\">And Jesus walked in the temple in Solomon's porch.</VERS>\r\n      <VERS vnumber=\"24\">Then 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.</VERS>\r\n      <VERS vnumber=\"25\">Jesus answered them, I told you, and ye believed not: the works that I do in my Father's name, they bear witness of me.</VERS>\r\n      <VERS vnumber=\"26\">But ye believe not, because ye are not of my sheep, as I said unto you.</VERS>\r\n      <VERS vnumber=\"27\">My sheep hear my voice, and I know them, and they follow me:</VERS>\r\n      <VERS vnumber=\"28\">And I give unto them eternal life; and they shall never perish, neither shall any man pluck them out of my hand.</VERS>\r\n      <VERS vnumber=\"29\">My Father, which gave them me, is greater than all; and no man is able to pluck them out of my Father's hand.</VERS>\r\n      <VERS vnumber=\"30\">I and my Father are one.</VERS>\r\n      <VERS vnumber=\"31\">Then the Jews took up stones again to stone him.</VERS>\r\n      <VERS vnumber=\"32\">Jesus answered them, Many good works have I shewed you from my Father; for which of those works do ye stone me?</VERS>\r\n      <VERS vnumber=\"33\">The 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.</VERS>\r\n      <VERS vnumber=\"34\">Jesus answered them, Is it not written in your law, I said, Ye are gods?</VERS>\r\n      <VERS vnumber=\"35\">If he called them gods, unto whom the word of God came, and the scripture cannot be broken;</VERS>\r\n      <VERS vnumber=\"36\">Say ye of him, whom the Father hath sanctified, and sent into the world, Thou blasphemest; because I said, I am the Son of God?</VERS>\r\n      <VERS vnumber=\"37\">If I do not the works of my Father, believe me not.</VERS>\r\n      <VERS vnumber=\"38\">But 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.</VERS>\r\n      <VERS vnumber=\"39\">Therefore they sought again to take him: but he escaped out of their hand,</VERS>\r\n      <VERS vnumber=\"40\">And went away again beyond Jordan into the place where John at first baptized; and there he abode.</VERS>\r\n      <VERS vnumber=\"41\">And many resorted unto him, and said, John did no miracle: but all things that John spake of this man were true.</VERS>\r\n      <VERS vnumber=\"42\">And many believed on him there.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">Now a certain man was sick, named Lazarus, of Bethany, the town of Mary and her sister Martha.</VERS>\r\n      <VERS vnumber=\"2\">It was that Mary which anointed the Lord with ointment, and wiped his feet with her hair, whose brother Lazarus was sick.)</VERS>\r\n      <VERS vnumber=\"3\">Therefore his sisters sent unto him, saying, Lord, behold, he whom thou lovest is sick.</VERS>\r\n      <VERS vnumber=\"4\">When 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.</VERS>\r\n      <VERS vnumber=\"5\">Now Jesus loved Martha, and her sister, and Lazarus.</VERS>\r\n      <VERS vnumber=\"6\">When he had heard therefore that he was sick, he abode two days still in the same place where he was.</VERS>\r\n      <VERS vnumber=\"7\">Then after that saith he to his disciples, Let us go into Judaea again.</VERS>\r\n      <VERS vnumber=\"8\">His disciples say unto him, Master, the Jews of late sought to stone thee; and goest thou thither again?</VERS>\r\n      <VERS vnumber=\"9\">Jesus 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.</VERS>\r\n      <VERS vnumber=\"10\">But if a man walk in the night, he stumbleth, because there is no light in him.</VERS>\r\n      <VERS vnumber=\"11\">These 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.</VERS>\r\n      <VERS vnumber=\"12\">Then said his disciples, Lord, if he sleep, he shall do well.</VERS>\r\n      <VERS vnumber=\"13\">Howbeit Jesus spake of his death: but they thought that he had spoken of taking of rest in sleep.</VERS>\r\n      <VERS vnumber=\"14\">Then said Jesus unto them plainly, Lazarus is dead.</VERS>\r\n      <VERS vnumber=\"15\">And I am glad for your sakes that I was not there, to the intent ye may believe; nevertheless let us go unto him.</VERS>\r\n      <VERS vnumber=\"16\">Then said Thomas, which is called Didymus, unto his fellowdisciples, Let us also go, that we may die with him.</VERS>\r\n      <VERS vnumber=\"17\">Then when Jesus came, he found that he had lain in the grave four days already.</VERS>\r\n      <VERS vnumber=\"18\">Now Bethany was nigh unto Jerusalem, about fifteen furlongs off:</VERS>\r\n      <VERS vnumber=\"19\">And many of the Jews came to Martha and Mary, to comfort them concerning their brother.</VERS>\r\n      <VERS vnumber=\"20\">Then Martha, as soon as she heard that Jesus was coming, went and met him: but Mary sat still in the house.</VERS>\r\n      <VERS vnumber=\"21\">Then said Martha unto Jesus, Lord, if thou hadst been here, my brother had not died.</VERS>\r\n      <VERS vnumber=\"22\">But I know, that even now, whatsoever thou wilt ask of God, God will give it thee.</VERS>\r\n      <VERS vnumber=\"23\">Jesus saith unto her, Thy brother shall rise again.</VERS>\r\n      <VERS vnumber=\"24\">Martha saith unto him, I know that he shall rise again in the resurrection at the last day.</VERS>\r\n      <VERS vnumber=\"25\">Jesus said unto her, I am the resurrection, and the life: he that believeth in me, though he were dead, yet shall he live:</VERS>\r\n      <VERS vnumber=\"26\">And whosoever liveth and believeth in me shall never die. Believest thou this?</VERS>\r\n      <VERS vnumber=\"27\">She saith unto him, Yea, Lord: I believe that thou art the Christ, the Son of God, which should come into the world.</VERS>\r\n      <VERS vnumber=\"28\">And when she had so said, she went her way, and called Mary her sister secretly, saying, The Master is come, and calleth for thee.</VERS>\r\n      <VERS vnumber=\"29\">As soon as she heard that, she arose quickly, and came unto him.</VERS>\r\n      <VERS vnumber=\"30\">Now Jesus was not yet come into the town, but was in that place where Martha met him.</VERS>\r\n      <VERS vnumber=\"31\">The 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.</VERS>\r\n      <VERS vnumber=\"32\">Then 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.</VERS>\r\n      <VERS vnumber=\"33\">When Jesus therefore saw her weeping, and the Jews also weeping which came with her, he groaned in the spirit, and was troubled,</VERS>\r\n      <VERS vnumber=\"34\">And said, Where have ye laid him? They said unto him, Lord, come and see.</VERS>\r\n      <VERS vnumber=\"35\">Jesus wept.</VERS>\r\n      <VERS vnumber=\"36\">Then said the Jews, Behold how he loved him!</VERS>\r\n      <VERS vnumber=\"37\">And 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?</VERS>\r\n      <VERS vnumber=\"38\">Jesus therefore again groaning in himself cometh to the grave. It was a cave, and a stone lay upon it.</VERS>\r\n      <VERS vnumber=\"39\">Jesus 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.</VERS>\r\n      <VERS vnumber=\"40\">Jesus saith unto her, Said I not unto thee, that, if thou wouldest believe, thou shouldest see the glory of God?</VERS>\r\n      <VERS vnumber=\"41\">Then 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.</VERS>\r\n      <VERS vnumber=\"42\">And 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.</VERS>\r\n      <VERS vnumber=\"43\">And when he thus had spoken, he cried with a loud voice, Lazarus, come forth.</VERS>\r\n      <VERS vnumber=\"44\">And 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.</VERS>\r\n      <VERS vnumber=\"45\">Then many of the Jews which came to Mary, and had seen the things which Jesus did, believed on him.</VERS>\r\n      <VERS vnumber=\"46\">But some of them went their ways to the Pharisees, and told them what things Jesus had done.</VERS>\r\n      <VERS vnumber=\"47\">Then gathered the chief priests and the Pharisees a council, and said, What do we? for this man doeth many miracles.</VERS>\r\n      <VERS vnumber=\"48\">If we let him thus alone, all men will believe on him: and the Romans shall come and take away both our place and nation.</VERS>\r\n      <VERS vnumber=\"49\">And one of them, named Caiaphas, being the high priest that same year, said unto them, Ye know nothing at all,</VERS>\r\n      <VERS vnumber=\"50\">Nor consider that it is expedient for us, that one man should die for the people, and that the whole nation perish not.</VERS>\r\n      <VERS vnumber=\"51\">And this spake he not of himself: but being high priest that year, he prophesied that Jesus should die for that nation;</VERS>\r\n      <VERS vnumber=\"52\">And not for that nation only, but that also he should gather together in one the children of God that were scattered abroad.</VERS>\r\n      <VERS vnumber=\"53\">Then from that day forth they took counsel together for to put him to death.</VERS>\r\n      <VERS vnumber=\"54\">Jesus 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.</VERS>\r\n      <VERS vnumber=\"55\">And the Jews' passover was nigh at hand: and many went out of the country up to Jerusalem before the passover, to purify themselves.</VERS>\r\n      <VERS vnumber=\"56\">Then 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?</VERS>\r\n      <VERS vnumber=\"57\">Now 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">Then Jesus six days before the passover came to Bethany, where Lazarus was which had been dead, whom he raised from the dead.</VERS>\r\n      <VERS vnumber=\"2\">There they made him a supper; and Martha served: but Lazarus was one of them that sat at the table with him.</VERS>\r\n      <VERS vnumber=\"3\">Then 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.</VERS>\r\n      <VERS vnumber=\"4\">Then saith one of his disciples, Judas Iscariot, Simon's son, which should betray him,</VERS>\r\n      <VERS vnumber=\"5\">Why was not this ointment sold for three hundred pence, and given to the poor?</VERS>\r\n      <VERS vnumber=\"6\">This 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.</VERS>\r\n      <VERS vnumber=\"7\">Then said Jesus, Let her alone: against the day of my burying hath she kept this.</VERS>\r\n      <VERS vnumber=\"8\">For the poor always ye have with you; but me ye have not always.</VERS>\r\n      <VERS vnumber=\"9\">Much 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.</VERS>\r\n      <VERS vnumber=\"10\">But the chief priests consulted that they might put Lazarus also to death;</VERS>\r\n      <VERS vnumber=\"11\">Because that by reason of him many of the Jews went away, and believed on Jesus.</VERS>\r\n      <VERS vnumber=\"12\">On the next day much people that were come to the feast, when they heard that Jesus was coming to Jerusalem,</VERS>\r\n      <VERS vnumber=\"13\">Took 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.</VERS>\r\n      <VERS vnumber=\"14\">And Jesus, when he had found a young ass, sat thereon; as it is written,</VERS>\r\n      <VERS vnumber=\"15\">Fear not, daughter of Sion: behold, thy King cometh, sitting on an ass's colt.</VERS>\r\n      <VERS vnumber=\"16\">These 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.</VERS>\r\n      <VERS vnumber=\"17\">The people therefore that was with him when he called Lazarus out of his grave, and raised him from the dead, bare record.</VERS>\r\n      <VERS vnumber=\"18\">For this cause the people also met him, for that they heard that he had done this miracle.</VERS>\r\n      <VERS vnumber=\"19\">The Pharisees therefore said among themselves, Perceive ye how ye prevail nothing? behold, the world is gone after him.</VERS>\r\n      <VERS vnumber=\"20\">And there were certain Greeks among them that came up to worship at the feast:</VERS>\r\n      <VERS vnumber=\"21\">The same came therefore to Philip, which was of Bethsaida of Galilee, and desired him, saying, Sir, we would see Jesus.</VERS>\r\n      <VERS vnumber=\"22\">Philip cometh and telleth Andrew: and again Andrew and Philip tell Jesus.</VERS>\r\n      <VERS vnumber=\"23\">And Jesus answered them, saying, The hour is come, that the Son of man should be glorified.</VERS>\r\n      <VERS vnumber=\"24\">Verily, 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.</VERS>\r\n      <VERS vnumber=\"25\">He that loveth his life shall lose it; and he that hateth his life in this world shall keep it unto life eternal.</VERS>\r\n      <VERS vnumber=\"26\">If 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.</VERS>\r\n      <VERS vnumber=\"27\">Now is my soul troubled; and what shall I say? Father, save me from this hour: but for this cause came I unto this hour.</VERS>\r\n      <VERS vnumber=\"28\">Father, glorify thy name. Then came there a voice from heaven, saying, I have both glorified it, and will glorify it again.</VERS>\r\n      <VERS vnumber=\"29\">The people therefore, that stood by, and heard it, said that it thundered: others said, An angel spake to him.</VERS>\r\n      <VERS vnumber=\"30\">Jesus answered and said, This voice came not because of me, but for your sakes.</VERS>\r\n      <VERS vnumber=\"31\">Now is the judgment of this world: now shall the prince of this world be cast out.</VERS>\r\n      <VERS vnumber=\"32\">And I, if I be lifted up from the earth, will draw all men unto me.</VERS>\r\n      <VERS vnumber=\"33\">This he said, signifying what death he should die.</VERS>\r\n      <VERS vnumber=\"34\">The 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?</VERS>\r\n      <VERS vnumber=\"35\">Then 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.</VERS>\r\n      <VERS vnumber=\"36\">While 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.</VERS>\r\n      <VERS vnumber=\"37\">But though he had done so many miracles before them, yet they believed not on him:</VERS>\r\n      <VERS vnumber=\"38\">That 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?</VERS>\r\n      <VERS vnumber=\"39\">Therefore they could not believe, because that Esaias said again,</VERS>\r\n      <VERS vnumber=\"40\">He 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.</VERS>\r\n      <VERS vnumber=\"41\">These things said Esaias, when he saw his glory, and spake of him.</VERS>\r\n      <VERS vnumber=\"42\">Nevertheless 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:</VERS>\r\n      <VERS vnumber=\"43\">For they loved the praise of men more than the praise of God.</VERS>\r\n      <VERS vnumber=\"44\">Jesus cried and said, He that believeth on me, believeth not on me, but on him that sent me.</VERS>\r\n      <VERS vnumber=\"45\">And he that seeth me seeth him that sent me.</VERS>\r\n      <VERS vnumber=\"46\">I am come a light into the world, that whosoever believeth on me should not abide in darkness.</VERS>\r\n      <VERS vnumber=\"47\">And 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.</VERS>\r\n      <VERS vnumber=\"48\">He 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.</VERS>\r\n      <VERS vnumber=\"49\">For 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.</VERS>\r\n      <VERS vnumber=\"50\">And I know that his commandment is life everlasting: whatsoever I speak therefore, even as the Father said unto me, so I speak.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">Now 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.</VERS>\r\n      <VERS vnumber=\"2\">And supper being ended, the devil having now put into the heart of Judas Iscariot, Simon's son, to betray him;</VERS>\r\n      <VERS vnumber=\"3\">Jesus knowing that the Father had given all things into his hands, and that he was come from God, and went to God;</VERS>\r\n      <VERS vnumber=\"4\">He riseth from supper, and laid aside his garments; and took a towel, and girded himself.</VERS>\r\n      <VERS vnumber=\"5\">After 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.</VERS>\r\n      <VERS vnumber=\"6\">Then cometh he to Simon Peter: and Peter saith unto him, Lord, dost thou wash my feet?</VERS>\r\n      <VERS vnumber=\"7\">Jesus answered and said unto him, What I do thou knowest not now; but thou shalt know hereafter.</VERS>\r\n      <VERS vnumber=\"8\">Peter saith unto him, Thou shalt never wash my feet. Jesus answered him, If I wash thee not, thou hast no part with me.</VERS>\r\n      <VERS vnumber=\"9\">Simon Peter saith unto him, Lord, not my feet only, but also my hands and my head.</VERS>\r\n      <VERS vnumber=\"10\">Jesus 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.</VERS>\r\n      <VERS vnumber=\"11\">For he knew who should betray him; therefore said he, Ye are not all clean.</VERS>\r\n      <VERS vnumber=\"12\">So 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?</VERS>\r\n      <VERS vnumber=\"13\">Ye call me Master and Lord: and ye say well; for so I am.</VERS>\r\n      <VERS vnumber=\"14\">If I then, your Lord and Master, have washed your feet; ye also ought to wash one another's feet.</VERS>\r\n      <VERS vnumber=\"15\">For I have given you an example, that ye should do as I have done to you.</VERS>\r\n      <VERS vnumber=\"16\">Verily, verily, I say unto you, The servant is not greater than his lord; neither he that is sent greater than he that sent him.</VERS>\r\n      <VERS vnumber=\"17\">If ye know these things, happy are ye if ye do them.</VERS>\r\n      <VERS vnumber=\"18\">I 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.</VERS>\r\n      <VERS vnumber=\"19\">Now I tell you before it come, that, when it is come to pass, ye may believe that I am he.</VERS>\r\n      <VERS vnumber=\"20\">Verily, verily, I say unto you, He that receiveth whomsoever I send receiveth me; and he that receiveth me receiveth him that sent me.</VERS>\r\n      <VERS vnumber=\"21\">When 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.</VERS>\r\n      <VERS vnumber=\"22\">Then the disciples looked one on another, doubting of whom he spake.</VERS>\r\n      <VERS vnumber=\"23\">Now there was leaning on Jesus' bosom one of his disciples, whom Jesus loved.</VERS>\r\n      <VERS vnumber=\"24\">Simon Peter therefore beckoned to him, that he should ask who it should be of whom he spake.</VERS>\r\n      <VERS vnumber=\"25\">He then lying on Jesus' breast saith unto him, Lord, who is it?</VERS>\r\n      <VERS vnumber=\"26\">Jesus 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.</VERS>\r\n      <VERS vnumber=\"27\">And after the sop Satan entered into him. Then said Jesus unto him, That thou doest, do quickly.</VERS>\r\n      <VERS vnumber=\"28\">Now no man at the table knew for what intent he spake this unto him.</VERS>\r\n      <VERS vnumber=\"29\">For 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.</VERS>\r\n      <VERS vnumber=\"30\">He then having received the sop went immediately out: and it was night.</VERS>\r\n      <VERS vnumber=\"31\">Therefore, when he was gone out, Jesus said, Now is the Son of man glorified, and God is glorified in him.</VERS>\r\n      <VERS vnumber=\"32\">If God be glorified in him, God shall also glorify him in himself, and shall straightway glorify him.</VERS>\r\n      <VERS vnumber=\"33\">Little 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.</VERS>\r\n      <VERS vnumber=\"34\">A new commandment I give unto you, That ye love one another; as I have loved you, that ye also love one another.</VERS>\r\n      <VERS vnumber=\"35\">By this shall all men know that ye are my disciples, if ye have love one to another.</VERS>\r\n      <VERS vnumber=\"36\">Simon 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.</VERS>\r\n      <VERS vnumber=\"37\">Peter said unto him, Lord, why cannot I follow thee now? I will lay down my life for thy sake.</VERS>\r\n      <VERS vnumber=\"38\">Jesus 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">Let not your heart be troubled: ye believe in God, believe also in me.</VERS>\r\n      <VERS vnumber=\"2\">In 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And whither I go ye know, and the way ye know.</VERS>\r\n      <VERS vnumber=\"5\">Thomas saith unto him, Lord, we know not whither thou goest; and how can we know the way?</VERS>\r\n      <VERS vnumber=\"6\">Jesus saith unto him, I am the way, the truth, and the life: no man cometh unto the Father, but by me.</VERS>\r\n      <VERS vnumber=\"7\">If ye had known me, ye should have known my Father also: and from henceforth ye know him, and have seen him.</VERS>\r\n      <VERS vnumber=\"8\">Philip saith unto him, Lord, shew us the Father, and it sufficeth us.</VERS>\r\n      <VERS vnumber=\"9\">Jesus 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?</VERS>\r\n      <VERS vnumber=\"10\">Believest 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.</VERS>\r\n      <VERS vnumber=\"11\">Believe me that I am in the Father, and the Father in me: or else believe me for the very works' sake.</VERS>\r\n      <VERS vnumber=\"12\">Verily, 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.</VERS>\r\n      <VERS vnumber=\"13\">And whatsoever ye shall ask in my name, that will I do, that the Father may be glorified in the Son.</VERS>\r\n      <VERS vnumber=\"14\">If ye shall ask any thing in my name, I will do it.</VERS>\r\n      <VERS vnumber=\"15\">If ye love me, keep my commandments.</VERS>\r\n      <VERS vnumber=\"16\">And I will pray the Father, and he shall give you another Comforter, that he may abide with you for ever;</VERS>\r\n      <VERS vnumber=\"17\">Even 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.</VERS>\r\n      <VERS vnumber=\"18\">I will not leave you comfortless: I will come to you.</VERS>\r\n      <VERS vnumber=\"19\">Yet a little while, and the world seeth me no more; but ye see me: because I live, ye shall live also.</VERS>\r\n      <VERS vnumber=\"20\">At that day ye shall know that I am in my Father, and ye in me, and I in you.</VERS>\r\n      <VERS vnumber=\"21\">He 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.</VERS>\r\n      <VERS vnumber=\"22\">Judas saith unto him, not Iscariot, Lord, how is it that thou wilt manifest thyself unto us, and not unto the world?</VERS>\r\n      <VERS vnumber=\"23\">Jesus 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.</VERS>\r\n      <VERS vnumber=\"24\">He that loveth me not keepeth not my sayings: and the word which ye hear is not mine, but the Father's which sent me.</VERS>\r\n      <VERS vnumber=\"25\">These things have I spoken unto you, being yet present with you.</VERS>\r\n      <VERS vnumber=\"26\">But 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.</VERS>\r\n      <VERS vnumber=\"27\">Peace 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.</VERS>\r\n      <VERS vnumber=\"28\">Ye 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.</VERS>\r\n      <VERS vnumber=\"29\">And now I have told you before it come to pass, that, when it is come to pass, ye might believe.</VERS>\r\n      <VERS vnumber=\"30\">Hereafter I will not talk much with you: for the prince of this world cometh, and hath nothing in me.</VERS>\r\n      <VERS vnumber=\"31\">But 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">I am the true vine, and my Father is the husbandman.</VERS>\r\n      <VERS vnumber=\"2\">Every 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.</VERS>\r\n      <VERS vnumber=\"3\">Now ye are clean through the word which I have spoken unto you.</VERS>\r\n      <VERS vnumber=\"4\">Abide 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.</VERS>\r\n      <VERS vnumber=\"5\">I 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.</VERS>\r\n      <VERS vnumber=\"6\">If 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.</VERS>\r\n      <VERS vnumber=\"7\">If ye abide in me, and my words abide in you, ye shall ask what ye will, and it shall be done unto you.</VERS>\r\n      <VERS vnumber=\"8\">Herein is my Father glorified, that ye bear much fruit; so shall ye be my disciples.</VERS>\r\n      <VERS vnumber=\"9\">As the Father hath loved me, so have I loved you: continue ye in my love.</VERS>\r\n      <VERS vnumber=\"10\">If ye keep my commandments, ye shall abide in my love; even as I have kept my Father's commandments, and abide in his love.</VERS>\r\n      <VERS vnumber=\"11\">These things have I spoken unto you, that my joy might remain in you, and that your joy might be full.</VERS>\r\n      <VERS vnumber=\"12\">This is my commandment, That ye love one another, as I have loved you.</VERS>\r\n      <VERS vnumber=\"13\">Greater love hath no man than this, that a man lay down his life for his friends.</VERS>\r\n      <VERS vnumber=\"14\">Ye are my friends, if ye do whatsoever I command you.</VERS>\r\n      <VERS vnumber=\"15\">Henceforth 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.</VERS>\r\n      <VERS vnumber=\"16\">Ye 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.</VERS>\r\n      <VERS vnumber=\"17\">These things I command you, that ye love one another.</VERS>\r\n      <VERS vnumber=\"18\">If the world hate you, ye know that it hated me before it hated you.</VERS>\r\n      <VERS vnumber=\"19\">If 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.</VERS>\r\n      <VERS vnumber=\"20\">Remember 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.</VERS>\r\n      <VERS vnumber=\"21\">But all these things will they do unto you for my name's sake, because they know not him that sent me.</VERS>\r\n      <VERS vnumber=\"22\">If I had not come and spoken unto them, they had not had sin: but now they have no cloke for their sin.</VERS>\r\n      <VERS vnumber=\"23\">He that hateth me hateth my Father also.</VERS>\r\n      <VERS vnumber=\"24\">If 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.</VERS>\r\n      <VERS vnumber=\"25\">But this cometh to pass, that the word might be fulfilled that is written in their law, They hated me without a cause.</VERS>\r\n      <VERS vnumber=\"26\">But 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:</VERS>\r\n      <VERS vnumber=\"27\">And ye also shall bear witness, because ye have been with me from the beginning.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">These things have I spoken unto you, that ye should not be offended.</VERS>\r\n      <VERS vnumber=\"2\">They shall put you out of the synagogues: yea, the time cometh, that whosoever killeth you will think that he doeth God service.</VERS>\r\n      <VERS vnumber=\"3\">And these things will they do unto you, because they have not known the Father, nor me.</VERS>\r\n      <VERS vnumber=\"4\">But 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.</VERS>\r\n      <VERS vnumber=\"5\">But now I go my way to him that sent me; and none of you asketh me, Whither goest thou?</VERS>\r\n      <VERS vnumber=\"6\">But because I have said these things unto you, sorrow hath filled your heart.</VERS>\r\n      <VERS vnumber=\"7\">Nevertheless 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.</VERS>\r\n      <VERS vnumber=\"8\">And when he is come, he will reprove the world of sin, and of righteousness, and of judgment:</VERS>\r\n      <VERS vnumber=\"9\">Of sin, because they believe not on me;</VERS>\r\n      <VERS vnumber=\"10\">Of righteousness, because I go to my Father, and ye see me no more;</VERS>\r\n      <VERS vnumber=\"11\">Of judgment, because the prince of this world is judged.</VERS>\r\n      <VERS vnumber=\"12\">I have yet many things to say unto you, but ye cannot bear them now.</VERS>\r\n      <VERS vnumber=\"13\">Howbeit 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.</VERS>\r\n      <VERS vnumber=\"14\">He shall glorify me: for he shall receive of mine, and shall shew it unto you.</VERS>\r\n      <VERS vnumber=\"15\">All things that the Father hath are mine: therefore said I, that he shall take of mine, and shall shew it unto you.</VERS>\r\n      <VERS vnumber=\"16\">A little while, and ye shall not see me: and again, a little while, and ye shall see me, because I go to the Father.</VERS>\r\n      <VERS vnumber=\"17\">Then 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?</VERS>\r\n      <VERS vnumber=\"18\">They said therefore, What is this that he saith, A little while? we cannot tell what he saith.</VERS>\r\n      <VERS vnumber=\"19\">Now 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?</VERS>\r\n      <VERS vnumber=\"20\">Verily, 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.</VERS>\r\n      <VERS vnumber=\"21\">A 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.</VERS>\r\n      <VERS vnumber=\"22\">And ye now therefore have sorrow: but I will see you again, and your heart shall rejoice, and your joy no man taketh from you.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">Hitherto have ye asked nothing in my name: ask, and ye shall receive, that your joy may be full.</VERS>\r\n      <VERS vnumber=\"25\">These 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.</VERS>\r\n      <VERS vnumber=\"26\">At that day ye shall ask in my name: and I say not unto you, that I will pray the Father for you:</VERS>\r\n      <VERS vnumber=\"27\">For the Father himself loveth you, because ye have loved me, and have believed that I came out from God.</VERS>\r\n      <VERS vnumber=\"28\">I came forth from the Father, and am come into the world: again, I leave the world, and go to the Father.</VERS>\r\n      <VERS vnumber=\"29\">His disciples said unto him, Lo, now speakest thou plainly, and speakest no proverb.</VERS>\r\n      <VERS vnumber=\"30\">Now 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.</VERS>\r\n      <VERS vnumber=\"31\">Jesus answered them, Do ye now believe?</VERS>\r\n      <VERS vnumber=\"32\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"33\">These 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"17\">\r\n      <VERS vnumber=\"1\">These 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:</VERS>\r\n      <VERS vnumber=\"2\">As thou hast given him power over all flesh, that he should give eternal life to as many as thou hast given him.</VERS>\r\n      <VERS vnumber=\"3\">And this is life eternal, that they might know thee the only true God, and Jesus Christ, whom thou hast sent.</VERS>\r\n      <VERS vnumber=\"4\">I have glorified thee on the earth: I have finished the work which thou gavest me to do.</VERS>\r\n      <VERS vnumber=\"5\">And now, O Father, glorify thou me with thine own self with the glory which I had with thee before the world was.</VERS>\r\n      <VERS vnumber=\"6\">I 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.</VERS>\r\n      <VERS vnumber=\"7\">Now they have known that all things whatsoever thou hast given me are of thee.</VERS>\r\n      <VERS vnumber=\"8\">For 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.</VERS>\r\n      <VERS vnumber=\"9\">I pray for them: I pray not for the world, but for them which thou hast given me; for they are thine.</VERS>\r\n      <VERS vnumber=\"10\">And all mine are thine, and thine are mine; and I am glorified in them.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">While 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.</VERS>\r\n      <VERS vnumber=\"13\">And now come I to thee; and these things I speak in the world, that they might have my joy fulfilled in themselves.</VERS>\r\n      <VERS vnumber=\"14\">I 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.</VERS>\r\n      <VERS vnumber=\"15\">I pray not that thou shouldest take them out of the world, but that thou shouldest keep them from the evil.</VERS>\r\n      <VERS vnumber=\"16\">They are not of the world, even as I am not of the world.</VERS>\r\n      <VERS vnumber=\"17\">Sanctify them through thy truth: thy word is truth.</VERS>\r\n      <VERS vnumber=\"18\">As thou hast sent me into the world, even so have I also sent them into the world.</VERS>\r\n      <VERS vnumber=\"19\">And for their sakes I sanctify myself, that they also might be sanctified through the truth.</VERS>\r\n      <VERS vnumber=\"20\">Neither pray I for these alone, but for them also which shall believe on me through their word;</VERS>\r\n      <VERS vnumber=\"21\">That 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.</VERS>\r\n      <VERS vnumber=\"22\">And the glory which thou gavest me I have given them; that they may be one, even as we are one:</VERS>\r\n      <VERS vnumber=\"23\">I 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.</VERS>\r\n      <VERS vnumber=\"24\">Father, 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.</VERS>\r\n      <VERS vnumber=\"25\">O righteous Father, the world hath not known thee: but I have known thee, and these have known that thou hast sent me.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"18\">\r\n      <VERS vnumber=\"1\">When 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.</VERS>\r\n      <VERS vnumber=\"2\">And Judas also, which betrayed him, knew the place: for Jesus ofttimes resorted thither with his disciples.</VERS>\r\n      <VERS vnumber=\"3\">Judas then, having received a band of men and officers from the chief priests and Pharisees, cometh thither with lanterns and torches and weapons.</VERS>\r\n      <VERS vnumber=\"4\">Jesus therefore, knowing all things that should come upon him, went forth, and said unto them, Whom seek ye?</VERS>\r\n      <VERS vnumber=\"5\">They answered him, Jesus of Nazareth. Jesus saith unto them, I am he. And Judas also, which betrayed him, stood with them.</VERS>\r\n      <VERS vnumber=\"6\">As soon then as he had said unto them, I am he, they went backward, and fell to the ground.</VERS>\r\n      <VERS vnumber=\"7\">Then asked he them again, Whom seek ye? And they said, Jesus of Nazareth.</VERS>\r\n      <VERS vnumber=\"8\">Jesus answered, I have told you that I am he: if therefore ye seek me, let these go their way:</VERS>\r\n      <VERS vnumber=\"9\">That the saying might be fulfilled, which he spake, Of them which thou gavest me have I lost none.</VERS>\r\n      <VERS vnumber=\"10\">Then 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.</VERS>\r\n      <VERS vnumber=\"11\">Then said Jesus unto Peter, Put up thy sword into the sheath: the cup which my Father hath given me, shall I not drink it?</VERS>\r\n      <VERS vnumber=\"12\">Then the band and the captain and officers of the Jews took Jesus, and bound him,</VERS>\r\n      <VERS vnumber=\"13\">And led him away to Annas first; for he was father in law to Caiaphas, which was the high priest that same year.</VERS>\r\n      <VERS vnumber=\"14\">Now Caiaphas was he, which gave counsel to the Jews, that it was expedient that one man should die for the people.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">But 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.</VERS>\r\n      <VERS vnumber=\"17\">Then saith the damsel that kept the door unto Peter, Art not thou also one of this man's disciples? He saith, I am not.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">The high priest then asked Jesus of his disciples, and of his doctrine.</VERS>\r\n      <VERS vnumber=\"20\">Jesus 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.</VERS>\r\n      <VERS vnumber=\"21\">Why askest thou me? ask them which heard me, what I have said unto them: behold, they know what I said.</VERS>\r\n      <VERS vnumber=\"22\">And 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?</VERS>\r\n      <VERS vnumber=\"23\">Jesus answered him, If I have spoken evil, bear witness of the evil: but if well, why smitest thou me?</VERS>\r\n      <VERS vnumber=\"24\">Now Annas had sent him bound unto Caiaphas the high priest.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">One 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?</VERS>\r\n      <VERS vnumber=\"27\">Peter then denied again: and immediately the cock crew.</VERS>\r\n      <VERS vnumber=\"28\">Then 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.</VERS>\r\n      <VERS vnumber=\"29\">Pilate then went out unto them, and said, What accusation bring ye against this man?</VERS>\r\n      <VERS vnumber=\"30\">They answered and said unto him, If he were not a malefactor, we would not have delivered him up unto thee.</VERS>\r\n      <VERS vnumber=\"31\">Then 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:</VERS>\r\n      <VERS vnumber=\"32\">That the saying of Jesus might be fulfilled, which he spake, signifying what death he should die.</VERS>\r\n      <VERS vnumber=\"33\">Then Pilate entered into the judgment hall again, and called Jesus, and said unto him, Art thou the King of the Jews?</VERS>\r\n      <VERS vnumber=\"34\">Jesus answered him, Sayest thou this thing of thyself, or did others tell it thee of me?</VERS>\r\n      <VERS vnumber=\"35\">Pilate answered, Am I a Jew? Thine own nation and the chief priests have delivered thee unto me: what hast thou done?</VERS>\r\n      <VERS vnumber=\"36\">Jesus 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.</VERS>\r\n      <VERS vnumber=\"37\">Pilate 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.</VERS>\r\n      <VERS vnumber=\"38\">Pilate 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.</VERS>\r\n      <VERS vnumber=\"39\">But 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?</VERS>\r\n      <VERS vnumber=\"40\">Then cried they all again, saying, Not this man, but Barabbas. Now Barabbas was a robber.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"19\">\r\n      <VERS vnumber=\"1\">Then Pilate therefore took Jesus, and scourged him.</VERS>\r\n      <VERS vnumber=\"2\">And the soldiers platted a crown of thorns, and put it on his head, and they put on him a purple robe,</VERS>\r\n      <VERS vnumber=\"3\">And said, Hail, King of the Jews! and they smote him with their hands.</VERS>\r\n      <VERS vnumber=\"4\">Pilate 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.</VERS>\r\n      <VERS vnumber=\"5\">Then came Jesus forth, wearing the crown of thorns, and the purple robe. And Pilate saith unto them, Behold the man!</VERS>\r\n      <VERS vnumber=\"6\">When 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.</VERS>\r\n      <VERS vnumber=\"7\">The Jews answered him, We have a law, and by our law he ought to die, because he made himself the Son of God.</VERS>\r\n      <VERS vnumber=\"8\">When Pilate therefore heard that saying, he was the more afraid;</VERS>\r\n      <VERS vnumber=\"9\">And went again into the judgment hall, and saith unto Jesus, Whence art thou? But Jesus gave him no answer.</VERS>\r\n      <VERS vnumber=\"10\">Then 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?</VERS>\r\n      <VERS vnumber=\"11\">Jesus 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">When 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.</VERS>\r\n      <VERS vnumber=\"14\">And it was the preparation of the passover, and about the sixth hour: and he saith unto the Jews, Behold your King!</VERS>\r\n      <VERS vnumber=\"15\">But 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.</VERS>\r\n      <VERS vnumber=\"16\">Then delivered he him therefore unto them to be crucified. And they took Jesus, and led him away.</VERS>\r\n      <VERS vnumber=\"17\">And he bearing his cross went forth into a place called the place of a skull, which is called in the Hebrew Golgotha:</VERS>\r\n      <VERS vnumber=\"18\">Where they crucified him, and two other with him, on either side one, and Jesus in the midst.</VERS>\r\n      <VERS vnumber=\"19\">And Pilate wrote a title, and put it on the cross. And the writing was, JESUS OF NAZARETH THE KING OF THE JEWS.</VERS>\r\n      <VERS vnumber=\"20\">This 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.</VERS>\r\n      <VERS vnumber=\"21\">Then 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.</VERS>\r\n      <VERS vnumber=\"22\">Pilate answered, What I have written I have written.</VERS>\r\n      <VERS vnumber=\"23\">Then 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.</VERS>\r\n      <VERS vnumber=\"24\">They 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.</VERS>\r\n      <VERS vnumber=\"25\">Now there stood by the cross of Jesus his mother, and his mother's sister, Mary the wife of Cleophas, and Mary Magdalene.</VERS>\r\n      <VERS vnumber=\"26\">When Jesus therefore saw his mother, and the disciple standing by, whom he loved, he saith unto his mother, Woman, behold thy son!</VERS>\r\n      <VERS vnumber=\"27\">Then saith he to the disciple, Behold thy mother! And from that hour that disciple took her unto his own home.</VERS>\r\n      <VERS vnumber=\"28\">After this, Jesus knowing that all things were now accomplished, that the scripture might be fulfilled, saith, I thirst.</VERS>\r\n      <VERS vnumber=\"29\">Now 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.</VERS>\r\n      <VERS vnumber=\"30\">When Jesus therefore had received the vinegar, he said, It is finished: and he bowed his head, and gave up the ghost.</VERS>\r\n      <VERS vnumber=\"31\">The 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.</VERS>\r\n      <VERS vnumber=\"32\">Then came the soldiers, and brake the legs of the first, and of the other which was crucified with him.</VERS>\r\n      <VERS vnumber=\"33\">But when they came to Jesus, and saw that he was dead already, they brake not his legs:</VERS>\r\n      <VERS vnumber=\"34\">But one of the soldiers with a spear pierced his side, and forthwith came there out blood and water.</VERS>\r\n      <VERS vnumber=\"35\">And he that saw it bare record, and his record is true: and he knoweth that he saith true, that ye might believe.</VERS>\r\n      <VERS vnumber=\"36\">For these things were done, that the scripture should be fulfilled, A bone of him shall not be broken.</VERS>\r\n      <VERS vnumber=\"37\">And again another scripture saith, They shall look on him whom they pierced.</VERS>\r\n      <VERS vnumber=\"38\">And 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.</VERS>\r\n      <VERS vnumber=\"39\">And 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.</VERS>\r\n      <VERS vnumber=\"40\">Then took they the body of Jesus, and wound it in linen clothes with the spices, as the manner of the Jews is to bury.</VERS>\r\n      <VERS vnumber=\"41\">Now in the place where he was crucified there was a garden; and in the garden a new sepulchre, wherein was never man yet laid.</VERS>\r\n      <VERS vnumber=\"42\">There laid they Jesus therefore because of the Jews' preparation day; for the sepulchre was nigh at hand.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"20\">\r\n      <VERS vnumber=\"1\">The 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.</VERS>\r\n      <VERS vnumber=\"2\">Then 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.</VERS>\r\n      <VERS vnumber=\"3\">Peter therefore went forth, and that other disciple, and came to the sepulchre.</VERS>\r\n      <VERS vnumber=\"4\">So they ran both together: and the other disciple did outrun Peter, and came first to the sepulchre.</VERS>\r\n      <VERS vnumber=\"5\">And he stooping down, and looking in, saw the linen clothes lying; yet went he not in.</VERS>\r\n      <VERS vnumber=\"6\">Then cometh Simon Peter following him, and went into the sepulchre, and seeth the linen clothes lie,</VERS>\r\n      <VERS vnumber=\"7\">And the napkin, that was about his head, not lying with the linen clothes, but wrapped together in a place by itself.</VERS>\r\n      <VERS vnumber=\"8\">Then went in also that other disciple, which came first to the sepulchre, and he saw, and believed.</VERS>\r\n      <VERS vnumber=\"9\">For as yet they knew not the scripture, that he must rise again from the dead.</VERS>\r\n      <VERS vnumber=\"10\">Then the disciples went away again unto their own home.</VERS>\r\n      <VERS vnumber=\"11\">But Mary stood without at the sepulchre weeping: and as she wept, she stooped down, and looked into the sepulchre,</VERS>\r\n      <VERS vnumber=\"12\">And seeth two angels in white sitting, the one at the head, and the other at the feet, where the body of Jesus had lain.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And when she had thus said, she turned herself back, and saw Jesus standing, and knew not that it was Jesus.</VERS>\r\n      <VERS vnumber=\"15\">Jesus 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.</VERS>\r\n      <VERS vnumber=\"16\">Jesus saith unto her, Mary. She turned herself, and saith unto him, Rabboni; which is to say, Master.</VERS>\r\n      <VERS vnumber=\"17\">Jesus 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.</VERS>\r\n      <VERS vnumber=\"18\">Mary Magdalene came and told the disciples that she had seen the Lord, and that he had spoken these things unto her.</VERS>\r\n      <VERS vnumber=\"19\">Then 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.</VERS>\r\n      <VERS vnumber=\"20\">And when he had so said, he shewed unto them his hands and his side. Then were the disciples glad, when they saw the Lord.</VERS>\r\n      <VERS vnumber=\"21\">Then said Jesus to them again, Peace be unto you: as my Father hath sent me, even so send I you.</VERS>\r\n      <VERS vnumber=\"22\">And when he had said this, he breathed on them, and saith unto them, Receive ye the Holy Ghost:</VERS>\r\n      <VERS vnumber=\"23\">Whose soever sins ye remit, they are remitted unto them; and whose soever sins ye retain, they are retained.</VERS>\r\n      <VERS vnumber=\"24\">But Thomas, one of the twelve, called Didymus, was not with them when Jesus came.</VERS>\r\n      <VERS vnumber=\"25\">The 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">Then 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.</VERS>\r\n      <VERS vnumber=\"28\">And Thomas answered and said unto him, My Lord and my God.</VERS>\r\n      <VERS vnumber=\"29\">Jesus saith unto him, Thomas, because thou hast seen me, thou hast believed: blessed are they that have not seen, and yet have believed.</VERS>\r\n      <VERS vnumber=\"30\">And many other signs truly did Jesus in the presence of his disciples, which are not written in this book:</VERS>\r\n      <VERS vnumber=\"31\">But 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"21\">\r\n      <VERS vnumber=\"1\">After these things Jesus shewed himself again to the disciples at the sea of Tiberias; and on this wise shewed he himself.</VERS>\r\n      <VERS vnumber=\"2\">There 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.</VERS>\r\n      <VERS vnumber=\"3\">Simon 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.</VERS>\r\n      <VERS vnumber=\"4\">But when the morning was now come, Jesus stood on the shore: but the disciples knew not that it was Jesus.</VERS>\r\n      <VERS vnumber=\"5\">Then Jesus saith unto them, Children, have ye any meat? They answered him, No.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">As soon then as they were come to land, they saw a fire of coals there, and fish laid thereon, and bread.</VERS>\r\n      <VERS vnumber=\"10\">Jesus saith unto them, Bring of the fish which ye have now caught.</VERS>\r\n      <VERS vnumber=\"11\">Simon 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.</VERS>\r\n      <VERS vnumber=\"12\">Jesus saith unto them, Come and dine. And none of the disciples durst ask him, Who art thou? knowing that it was the Lord.</VERS>\r\n      <VERS vnumber=\"13\">Jesus then cometh, and taketh bread, and giveth them, and fish likewise.</VERS>\r\n      <VERS vnumber=\"14\">This is now the third time that Jesus shewed himself to his disciples, after that he was risen from the dead.</VERS>\r\n      <VERS vnumber=\"15\">So 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.</VERS>\r\n      <VERS vnumber=\"16\">He 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.</VERS>\r\n      <VERS vnumber=\"17\">He 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.</VERS>\r\n      <VERS vnumber=\"18\">Verily, verily, I say unto thee, When thou wast young, thou girdedst 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.</VERS>\r\n      <VERS vnumber=\"19\">This spake he, signifying by what death he should glorify God. And when he had spoken this, he saith unto him, Follow me.</VERS>\r\n      <VERS vnumber=\"20\">Then 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?</VERS>\r\n      <VERS vnumber=\"21\">Peter seeing him saith to Jesus, Lord, and what shall this man do?</VERS>\r\n      <VERS vnumber=\"22\">Jesus saith unto him, If I will that he tarry till I come, what is that to thee? follow thou me.</VERS>\r\n      <VERS vnumber=\"23\">Then 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?</VERS>\r\n      <VERS vnumber=\"24\">This is the disciple which testifieth of these things, and wrote these things: and we know that his testimony is true.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"44\" bname=\"Acts\" bsname=\"Acts\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">The former treatise have I made, O Theophilus, of all that Jesus began both to do and teach,</VERS>\r\n      <VERS vnumber=\"2\">Until 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:</VERS>\r\n      <VERS vnumber=\"3\">To 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:</VERS>\r\n      <VERS vnumber=\"4\">And, 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.</VERS>\r\n      <VERS vnumber=\"5\">For John truly baptized with water; but ye shall be baptized with the Holy Ghost not many days hence.</VERS>\r\n      <VERS vnumber=\"6\">When they therefore were come together, they asked of him, saying, Lord, wilt thou at this time restore again the kingdom to Israel?</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">But 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.</VERS>\r\n      <VERS vnumber=\"9\">And when he had spoken these things, while they beheld, he was taken up; and a cloud received him out of their sight.</VERS>\r\n      <VERS vnumber=\"10\">And while they looked stedfastly toward heaven as he went up, behold, two men stood by them in white apparel;</VERS>\r\n      <VERS vnumber=\"11\">Which 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.</VERS>\r\n      <VERS vnumber=\"12\">Then returned they unto Jerusalem from the mount called Olivet, which is from Jerusalem a sabbath day's journey.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">These all continued with one accord in prayer and supplication, with the women, and Mary the mother of Jesus, and with his brethren.</VERS>\r\n      <VERS vnumber=\"15\">And 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,)</VERS>\r\n      <VERS vnumber=\"16\">Men 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.</VERS>\r\n      <VERS vnumber=\"17\">For he was numbered with us, and had obtained part of this ministry.</VERS>\r\n      <VERS vnumber=\"18\">Now 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">For 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.</VERS>\r\n      <VERS vnumber=\"21\">Wherefore of these men which have companied with us all the time that the Lord Jesus went in and out among us,</VERS>\r\n      <VERS vnumber=\"22\">Beginning 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.</VERS>\r\n      <VERS vnumber=\"23\">And they appointed two, Joseph called Barsabas, who was surnamed Justus, and Matthias.</VERS>\r\n      <VERS vnumber=\"24\">And they prayed, and said, Thou, Lord, which knowest the hearts of all men, shew whether of these two thou hast chosen,</VERS>\r\n      <VERS vnumber=\"25\">That he may take part of this ministry and apostleship, from which Judas by transgression fell, that he might go to his own place.</VERS>\r\n      <VERS vnumber=\"26\">And they gave forth their lots; and the lot fell upon Matthias; and he was numbered with the eleven apostles.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">And when the day of Pentecost was fully come, they were all with one accord in one place.</VERS>\r\n      <VERS vnumber=\"2\">And suddenly there came a sound from heaven as of a rushing mighty wind, and it filled all the house where they were sitting.</VERS>\r\n      <VERS vnumber=\"3\">And there appeared unto them cloven tongues like as of fire, and it sat upon each of them.</VERS>\r\n      <VERS vnumber=\"4\">And they were all filled with the Holy Ghost, and began to speak with other tongues, as the Spirit gave them utterance.</VERS>\r\n      <VERS vnumber=\"5\">And there were dwelling at Jerusalem Jews, devout men, out of every nation under heaven.</VERS>\r\n      <VERS vnumber=\"6\">Now when this was noised abroad, the multitude came together, and were confounded, because that every man heard them speak in his own language.</VERS>\r\n      <VERS vnumber=\"7\">And they were all amazed and marvelled, saying one to another, Behold, are not all these which speak Galilaeans?</VERS>\r\n      <VERS vnumber=\"8\">And how hear we every man in our own tongue, wherein we were born?</VERS>\r\n      <VERS vnumber=\"9\">Parthians, and Medes, and Elamites, and the dwellers in Mesopotamia, and in Judaea, and Cappadocia, in Pontus, and Asia,</VERS>\r\n      <VERS vnumber=\"10\">Phrygia, and Pamphylia, in Egypt, and in the parts of Libya about Cyrene, and strangers of Rome, Jews and proselytes,</VERS>\r\n      <VERS vnumber=\"11\">Cretes and Arabians, we do hear them speak in our tongues the wonderful works of God.</VERS>\r\n      <VERS vnumber=\"12\">And they were all amazed, and were in doubt, saying one to another, What meaneth this?</VERS>\r\n      <VERS vnumber=\"13\">Others mocking said, These men are full of new wine.</VERS>\r\n      <VERS vnumber=\"14\">But 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:</VERS>\r\n      <VERS vnumber=\"15\">For these are not drunken, as ye suppose, seeing it is but the third hour of the day.</VERS>\r\n      <VERS vnumber=\"16\">But this is that which was spoken by the prophet Joel;</VERS>\r\n      <VERS vnumber=\"17\">And 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:</VERS>\r\n      <VERS vnumber=\"18\">And on my servants and on my handmaidens I will pour out in those days of my Spirit; and they shall prophesy:</VERS>\r\n      <VERS vnumber=\"19\">And I will shew wonders in heaven above, and signs in the earth beneath; blood, and fire, and vapour of smoke:</VERS>\r\n      <VERS vnumber=\"20\">The sun shall be turned into darkness, and the moon into blood, before that great and notable day of the Lord come:</VERS>\r\n      <VERS vnumber=\"21\">And it shall come to pass, that whosoever shall call on the name of the Lord shall be saved.</VERS>\r\n      <VERS vnumber=\"22\">Ye 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:</VERS>\r\n      <VERS vnumber=\"23\">Him, being delivered by the determinate counsel and foreknowledge of God, ye have taken, and by wicked hands have crucified and slain:</VERS>\r\n      <VERS vnumber=\"24\">Whom God hath raised up, having loosed the pains of death: because it was not possible that he should be holden of it.</VERS>\r\n      <VERS vnumber=\"25\">For 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:</VERS>\r\n      <VERS vnumber=\"26\">Therefore did my heart rejoice, and my tongue was glad; moreover also my flesh shall rest in hope:</VERS>\r\n      <VERS vnumber=\"27\">Because thou wilt not leave my soul in hell, neither wilt thou suffer thine Holy One to see corruption.</VERS>\r\n      <VERS vnumber=\"28\">Thou hast made known to me the ways of life; thou shalt make me full of joy with thy countenance.</VERS>\r\n      <VERS vnumber=\"29\">Men 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.</VERS>\r\n      <VERS vnumber=\"30\">Therefore 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;</VERS>\r\n      <VERS vnumber=\"31\">He seeing this before spake of the resurrection of Christ, that his soul was not left in hell, neither his flesh did see corruption.</VERS>\r\n      <VERS vnumber=\"32\">This Jesus hath God raised up, whereof we all are witnesses.</VERS>\r\n      <VERS vnumber=\"33\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"34\">For David is not ascended into the heavens: but he saith himself, The LORD said unto my Lord, Sit thou on my right hand,</VERS>\r\n      <VERS vnumber=\"35\">Until I make thy foes thy footstool.</VERS>\r\n      <VERS vnumber=\"36\">Therefore let all the house of Israel know assuredly, that God hath made that same Jesus, whom ye have crucified, both Lord and Christ.</VERS>\r\n      <VERS vnumber=\"37\">Now 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?</VERS>\r\n      <VERS vnumber=\"38\">Then 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.</VERS>\r\n      <VERS vnumber=\"39\">For 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.</VERS>\r\n      <VERS vnumber=\"40\">And with many other words did he testify and exhort, saying, Save yourselves from this untoward generation.</VERS>\r\n      <VERS vnumber=\"41\">Then they that gladly received his word were baptized: and the same day there were added unto them about three thousand souls.</VERS>\r\n      <VERS vnumber=\"42\">And they continued stedfastly in the apostles' doctrine and fellowship, and in breaking of bread, and in prayers.</VERS>\r\n      <VERS vnumber=\"43\">And fear came upon every soul: and many wonders and signs were done by the apostles.</VERS>\r\n      <VERS vnumber=\"44\">And all that believed were together, and had all things common;</VERS>\r\n      <VERS vnumber=\"45\">And sold their possessions and goods, and parted them to all men, as every man had need.</VERS>\r\n      <VERS vnumber=\"46\">And 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,</VERS>\r\n      <VERS vnumber=\"47\">Praising God, and having favour with all the people. And the Lord added to the church daily such as should be saved.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Now Peter and John went up together into the temple at the hour of prayer, being the ninth hour.</VERS>\r\n      <VERS vnumber=\"2\">And 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;</VERS>\r\n      <VERS vnumber=\"3\">Who seeing Peter and John about to go into the temple asked an alms.</VERS>\r\n      <VERS vnumber=\"4\">And Peter, fastening his eyes upon him with John, said, Look on us.</VERS>\r\n      <VERS vnumber=\"5\">And he gave heed unto them, expecting to receive something of them.</VERS>\r\n      <VERS vnumber=\"6\">Then 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.</VERS>\r\n      <VERS vnumber=\"7\">And he took him by the right hand, and lifted him up: and immediately his feet and ankle bones received strength.</VERS>\r\n      <VERS vnumber=\"8\">And he leaping up stood, and walked, and entered with them into the temple, walking, and leaping, and praising God.</VERS>\r\n      <VERS vnumber=\"9\">And all the people saw him walking and praising God:</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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?</VERS>\r\n      <VERS vnumber=\"13\">The 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.</VERS>\r\n      <VERS vnumber=\"14\">But ye denied the Holy One and the Just, and desired a murderer to be granted unto you;</VERS>\r\n      <VERS vnumber=\"15\">And killed the Prince of life, whom God hath raised from the dead; whereof we are witnesses.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And now, brethren, I wot that through ignorance ye did it, as did also your rulers.</VERS>\r\n      <VERS vnumber=\"18\">But those things, which God before had shewed by the mouth of all his prophets, that Christ should suffer, he hath so fulfilled.</VERS>\r\n      <VERS vnumber=\"19\">Repent 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;</VERS>\r\n      <VERS vnumber=\"20\">And he shall send Jesus Christ, which before was preached unto you:</VERS>\r\n      <VERS vnumber=\"21\">Whom 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.</VERS>\r\n      <VERS vnumber=\"22\">For 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.</VERS>\r\n      <VERS vnumber=\"23\">And it shall come to pass, that every soul, which will not hear that prophet, shall be destroyed from among the people.</VERS>\r\n      <VERS vnumber=\"24\">Yea, and all the prophets from Samuel and those that follow after, as many as have spoken, have likewise foretold of these days.</VERS>\r\n      <VERS vnumber=\"25\">Ye 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.</VERS>\r\n      <VERS vnumber=\"26\">Unto you first God, having raised up his Son Jesus, sent him to bless you, in turning away every one of you from his iniquities.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">And as they spake unto the people, the priests, and the captain of the temple, and the Sadducees, came upon them,</VERS>\r\n      <VERS vnumber=\"2\">Being grieved that they taught the people, and preached through Jesus the resurrection from the dead.</VERS>\r\n      <VERS vnumber=\"3\">And they laid hands on them, and put them in hold unto the next day: for it was now eventide.</VERS>\r\n      <VERS vnumber=\"4\">Howbeit many of them which heard the word believed; and the number of the men was about five thousand.</VERS>\r\n      <VERS vnumber=\"5\">And it came to pass on the morrow, that their rulers, and elders, and scribes,</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And when they had set them in the midst, they asked, By what power, or by what name, have ye done this?</VERS>\r\n      <VERS vnumber=\"8\">Then Peter, filled with the Holy Ghost, said unto them, Ye rulers of the people, and elders of Israel,</VERS>\r\n      <VERS vnumber=\"9\">If we this day be examined of the good deed done to the impotent man, by what means he is made whole;</VERS>\r\n      <VERS vnumber=\"10\">Be 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.</VERS>\r\n      <VERS vnumber=\"11\">This is the stone which was set at nought of you builders, which is become the head of the corner.</VERS>\r\n      <VERS vnumber=\"12\">Neither is there salvation in any other: for there is none other name under heaven given among men, whereby we must be saved.</VERS>\r\n      <VERS vnumber=\"13\">Now 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.</VERS>\r\n      <VERS vnumber=\"14\">And beholding the man which was healed standing with them, they could say nothing against it.</VERS>\r\n      <VERS vnumber=\"15\">But when they had commanded them to go aside out of the council, they conferred among themselves,</VERS>\r\n      <VERS vnumber=\"16\">Saying, 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.</VERS>\r\n      <VERS vnumber=\"17\">But that it spread no further among the people, let us straitly threaten them, that they speak henceforth to no man in this name.</VERS>\r\n      <VERS vnumber=\"18\">And they called them, and commanded them not to speak at all nor teach in the name of Jesus.</VERS>\r\n      <VERS vnumber=\"19\">But 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.</VERS>\r\n      <VERS vnumber=\"20\">For we cannot but speak the things which we have seen and heard.</VERS>\r\n      <VERS vnumber=\"21\">So 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.</VERS>\r\n      <VERS vnumber=\"22\">For the man was above forty years old, on whom this miracle of healing was shewed.</VERS>\r\n      <VERS vnumber=\"23\">And being let go, they went to their own company, and reported all that the chief priests and elders had said unto them.</VERS>\r\n      <VERS vnumber=\"24\">And 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:</VERS>\r\n      <VERS vnumber=\"25\">Who by the mouth of thy servant David hast said, Why did the heathen rage, and the people imagine vain things?</VERS>\r\n      <VERS vnumber=\"26\">The kings of the earth stood up, and the rulers were gathered together against the Lord, and against his Christ.</VERS>\r\n      <VERS vnumber=\"27\">For 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,</VERS>\r\n      <VERS vnumber=\"28\">For to do whatsoever thy hand and thy counsel determined before to be done.</VERS>\r\n      <VERS vnumber=\"29\">And now, Lord, behold their threatenings: and grant unto thy servants, that with all boldness they may speak thy word,</VERS>\r\n      <VERS vnumber=\"30\">By stretching forth thine hand to heal; and that signs and wonders may be done by the name of thy holy child Jesus.</VERS>\r\n      <VERS vnumber=\"31\">And 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.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">And with great power gave the apostles witness of the resurrection of the Lord Jesus: and great grace was upon them all.</VERS>\r\n      <VERS vnumber=\"34\">Neither 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,</VERS>\r\n      <VERS vnumber=\"35\">And laid them down at the apostles' feet: and distribution was made unto every man according as he had need.</VERS>\r\n      <VERS vnumber=\"36\">And Joses, who by the apostles was surnamed Barnabas, (which is, being interpreted, The son of consolation,) a Levite, and of the country of Cyprus,</VERS>\r\n      <VERS vnumber=\"37\">Having land, sold it, and brought the money, and laid it at the apostles' feet.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">But a certain man named Ananias, with Sapphira his wife, sold a possession,</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">But 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?</VERS>\r\n      <VERS vnumber=\"4\">Whiles 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.</VERS>\r\n      <VERS vnumber=\"5\">And Ananias hearing these words fell down, and gave up the ghost: and great fear came on all them that heard these things.</VERS>\r\n      <VERS vnumber=\"6\">And the young men arose, wound him up, and carried him out, and buried him.</VERS>\r\n      <VERS vnumber=\"7\">And it was about the space of three hours after, when his wife, not knowing what was done, came in.</VERS>\r\n      <VERS vnumber=\"8\">And Peter answered unto her, Tell me whether ye sold the land for so much? And she said, Yea, for so much.</VERS>\r\n      <VERS vnumber=\"9\">Then 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.</VERS>\r\n      <VERS vnumber=\"10\">Then 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.</VERS>\r\n      <VERS vnumber=\"11\">And great fear came upon all the church, and upon as many as heard these things.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And of the rest durst no man join himself to them: but the people magnified them.</VERS>\r\n      <VERS vnumber=\"14\">And believers were the more added to the Lord, multitudes both of men and women.)</VERS>\r\n      <VERS vnumber=\"15\">Insomuch 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.</VERS>\r\n      <VERS vnumber=\"16\">There 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.</VERS>\r\n      <VERS vnumber=\"17\">Then the high priest rose up, and all they that were with him, (which is the sect of the Sadducees,) and were filled with indignation,</VERS>\r\n      <VERS vnumber=\"18\">And laid their hands on the apostles, and put them in the common prison.</VERS>\r\n      <VERS vnumber=\"19\">But the angel of the Lord by night opened the prison doors, and brought them forth, and said,</VERS>\r\n      <VERS vnumber=\"20\">Go, stand and speak in the temple to the people all the words of this life.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">But when the officers came, and found them not in the prison, they returned, and told,</VERS>\r\n      <VERS vnumber=\"23\">Saying, 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.</VERS>\r\n      <VERS vnumber=\"24\">Now 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.</VERS>\r\n      <VERS vnumber=\"25\">Then came one and told them, saying, Behold, the men whom ye put in prison are standing in the temple, and teaching the people.</VERS>\r\n      <VERS vnumber=\"26\">Then went the captain with the officers, and brought them without violence: for they feared the people, lest they should have been stoned.</VERS>\r\n      <VERS vnumber=\"27\">And when they had brought them, they set them before the council: and the high priest asked them,</VERS>\r\n      <VERS vnumber=\"28\">Saying, 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.</VERS>\r\n      <VERS vnumber=\"29\">Then Peter and the other apostles answered and said, We ought to obey God rather than men.</VERS>\r\n      <VERS vnumber=\"30\">The God of our fathers raised up Jesus, whom ye slew and hanged on a tree.</VERS>\r\n      <VERS vnumber=\"31\">Him hath God exalted with his right hand to be a Prince and a Saviour, for to give repentance to Israel, and forgiveness of sins.</VERS>\r\n      <VERS vnumber=\"32\">And we are his witnesses of these things; and so is also the Holy Ghost, whom God hath given to them that obey him.</VERS>\r\n      <VERS vnumber=\"33\">When they heard that, they were cut to the heart, and took counsel to slay them.</VERS>\r\n      <VERS vnumber=\"34\">Then 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;</VERS>\r\n      <VERS vnumber=\"35\">And said unto them, Ye men of Israel, take heed to yourselves what ye intend to do as touching these men.</VERS>\r\n      <VERS vnumber=\"36\">For 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.</VERS>\r\n      <VERS vnumber=\"37\">After 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.</VERS>\r\n      <VERS vnumber=\"38\">And 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:</VERS>\r\n      <VERS vnumber=\"39\">But if it be of God, ye cannot overthrow it; lest haply ye be found even to fight against God.</VERS>\r\n      <VERS vnumber=\"40\">And 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.</VERS>\r\n      <VERS vnumber=\"41\">And they departed from the presence of the council, rejoicing that they were counted worthy to suffer shame for his name.</VERS>\r\n      <VERS vnumber=\"42\">And daily in the temple, and in every house, they ceased not to teach and preach Jesus Christ.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">Then 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.</VERS>\r\n      <VERS vnumber=\"3\">Wherefore, 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.</VERS>\r\n      <VERS vnumber=\"4\">But we will give ourselves continually to prayer, and to the ministry of the word.</VERS>\r\n      <VERS vnumber=\"5\">And 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:</VERS>\r\n      <VERS vnumber=\"6\">Whom they set before the apostles: and when they had prayed, they laid their hands on them.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And Stephen, full of faith and power, did great wonders and miracles among the people.</VERS>\r\n      <VERS vnumber=\"9\">Then 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.</VERS>\r\n      <VERS vnumber=\"10\">And they were not able to resist the wisdom and the spirit by which he spake.</VERS>\r\n      <VERS vnumber=\"11\">Then they suborned men, which said, We have heard him speak blasphemous words against Moses, and against God.</VERS>\r\n      <VERS vnumber=\"12\">And they stirred up the people, and the elders, and the scribes, and came upon him, and caught him, and brought him to the council,</VERS>\r\n      <VERS vnumber=\"13\">And set up false witnesses, which said, This man ceaseth not to speak blasphemous words against this holy place, and the law:</VERS>\r\n      <VERS vnumber=\"14\">For we have heard him say, that this Jesus of Nazareth shall destroy this place, and shall change the customs which Moses delivered us.</VERS>\r\n      <VERS vnumber=\"15\">And all that sat in the council, looking stedfastly on him, saw his face as it had been the face of an angel.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">Then said the high priest, Are these things so?</VERS>\r\n      <VERS vnumber=\"2\">And 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,</VERS>\r\n      <VERS vnumber=\"3\">And said unto him, Get thee out of thy country, and from thy kindred, and come into the land which I shall shew thee.</VERS>\r\n      <VERS vnumber=\"4\">Then 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And the patriarchs, moved with envy, sold Joseph into Egypt: but God was with him,</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">Now there came a dearth over all the land of Egypt and Chanaan, and great affliction: and our fathers found no sustenance.</VERS>\r\n      <VERS vnumber=\"12\">But when Jacob heard that there was corn in Egypt, he sent out our fathers first.</VERS>\r\n      <VERS vnumber=\"13\">And at the second time Joseph was made known to his brethren; and Joseph's kindred was made known unto Pharaoh.</VERS>\r\n      <VERS vnumber=\"14\">Then sent Joseph, and called his father Jacob to him, and all his kindred, threescore and fifteen souls.</VERS>\r\n      <VERS vnumber=\"15\">So Jacob went down into Egypt, and died, he, and our fathers,</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">But when the time of the promise drew nigh, which God had sworn to Abraham, the people grew and multiplied in Egypt,</VERS>\r\n      <VERS vnumber=\"18\">Till another king arose, which knew not Joseph.</VERS>\r\n      <VERS vnumber=\"19\">The 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.</VERS>\r\n      <VERS vnumber=\"20\">In which time Moses was born, and was exceeding fair, and nourished up in his father's house three months:</VERS>\r\n      <VERS vnumber=\"21\">And when he was cast out, Pharaoh's daughter took him up, and nourished him for her own son.</VERS>\r\n      <VERS vnumber=\"22\">And Moses was learned in all the wisdom of the Egyptians, and was mighty in words and in deeds.</VERS>\r\n      <VERS vnumber=\"23\">And when he was full forty years old, it came into his heart to visit his brethren the children of Israel.</VERS>\r\n      <VERS vnumber=\"24\">And seeing one of them suffer wrong, he defended him, and avenged him that was oppressed, and smote the Egyptian:</VERS>\r\n      <VERS vnumber=\"25\">For he supposed his brethren would have understood how that God by his hand would deliver them: but they understood not.</VERS>\r\n      <VERS vnumber=\"26\">And 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?</VERS>\r\n      <VERS vnumber=\"27\">But he that did his neighbour wrong thrust him away, saying, Who made thee a ruler and a judge over us?</VERS>\r\n      <VERS vnumber=\"28\">Wilt thou kill me, as thou diddest the Egyptian yesterday?</VERS>\r\n      <VERS vnumber=\"29\">Then fled Moses at this saying, and was a stranger in the land of Madian, where he begat two sons.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">When Moses saw it, he wondered at the sight: and as he drew near to behold it, the voice of the Lord came unto him,</VERS>\r\n      <VERS vnumber=\"32\">Saying, 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.</VERS>\r\n      <VERS vnumber=\"33\">Then said the Lord to him, Put off thy shoes from thy feet: for the place where thou standest is holy ground.</VERS>\r\n      <VERS vnumber=\"34\">I 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.</VERS>\r\n      <VERS vnumber=\"35\">This 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.</VERS>\r\n      <VERS vnumber=\"36\">He 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.</VERS>\r\n      <VERS vnumber=\"37\">This 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.</VERS>\r\n      <VERS vnumber=\"38\">This 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:</VERS>\r\n      <VERS vnumber=\"39\">To whom our fathers would not obey, but thrust him from them, and in their hearts turned back again into Egypt,</VERS>\r\n      <VERS vnumber=\"40\">Saying 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.</VERS>\r\n      <VERS vnumber=\"41\">And they made a calf in those days, and offered sacrifice unto the idol, and rejoiced in the works of their own hands.</VERS>\r\n      <VERS vnumber=\"42\">Then 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?</VERS>\r\n      <VERS vnumber=\"43\">Yea, 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.</VERS>\r\n      <VERS vnumber=\"44\">Our 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.</VERS>\r\n      <VERS vnumber=\"45\">Which 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;</VERS>\r\n      <VERS vnumber=\"46\">Who found favour before God, and desired to find a tabernacle for the God of Jacob.</VERS>\r\n      <VERS vnumber=\"47\">But Solomon built him an house.</VERS>\r\n      <VERS vnumber=\"48\">Howbeit the most High dwelleth not in temples made with hands; as saith the prophet,</VERS>\r\n      <VERS vnumber=\"49\">Heaven 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?</VERS>\r\n      <VERS vnumber=\"50\">Hath not my hand made all these things?</VERS>\r\n      <VERS vnumber=\"51\">Ye stiffnecked and uncircumcised in heart and ears, ye do always resist the Holy Ghost: as your fathers did, so do ye.</VERS>\r\n      <VERS vnumber=\"52\">Which 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:</VERS>\r\n      <VERS vnumber=\"53\">Who have received the law by the disposition of angels, and have not kept it.</VERS>\r\n      <VERS vnumber=\"54\">When they heard these things, they were cut to the heart, and they gnashed on him with their teeth.</VERS>\r\n      <VERS vnumber=\"55\">But 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,</VERS>\r\n      <VERS vnumber=\"56\">And said, Behold, I see the heavens opened, and the Son of man standing on the right hand of God.</VERS>\r\n      <VERS vnumber=\"57\">Then they cried out with a loud voice, and stopped their ears, and ran upon him with one accord,</VERS>\r\n      <VERS vnumber=\"58\">And 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.</VERS>\r\n      <VERS vnumber=\"59\">And they stoned Stephen, calling upon God, and saying, Lord Jesus, receive my spirit.</VERS>\r\n      <VERS vnumber=\"60\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And devout men carried Stephen to his burial, and made great lamentation over him.</VERS>\r\n      <VERS vnumber=\"3\">As for Saul, he made havock of the church, entering into every house, and haling men and women committed them to prison.</VERS>\r\n      <VERS vnumber=\"4\">Therefore they that were scattered abroad went every where preaching the word.</VERS>\r\n      <VERS vnumber=\"5\">Then Philip went down to the city of Samaria, and preached Christ unto them.</VERS>\r\n      <VERS vnumber=\"6\">And the people with one accord gave heed unto those things which Philip spake, hearing and seeing the miracles which he did.</VERS>\r\n      <VERS vnumber=\"7\">For 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.</VERS>\r\n      <VERS vnumber=\"8\">And there was great joy in that city.</VERS>\r\n      <VERS vnumber=\"9\">But 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:</VERS>\r\n      <VERS vnumber=\"10\">To whom they all gave heed, from the least to the greatest, saying, This man is the great power of God.</VERS>\r\n      <VERS vnumber=\"11\">And to him they had regard, because that of long time he had bewitched them with sorceries.</VERS>\r\n      <VERS vnumber=\"12\">But 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.</VERS>\r\n      <VERS vnumber=\"13\">Then Simon himself believed also: and when he was baptized, he continued with Philip, and wondered, beholding the miracles and signs which were done.</VERS>\r\n      <VERS vnumber=\"14\">Now when the apostles which were at Jerusalem heard that Samaria had received the word of God, they sent unto them Peter and John:</VERS>\r\n      <VERS vnumber=\"15\">Who, when they were come down, prayed for them, that they might receive the Holy Ghost:</VERS>\r\n      <VERS vnumber=\"16\">For as yet he was fallen upon none of them: only they were baptized in the name of the Lord Jesus.)</VERS>\r\n      <VERS vnumber=\"17\">Then laid they their hands on them, and they received the Holy Ghost.</VERS>\r\n      <VERS vnumber=\"18\">And when Simon saw that through laying on of the apostles' hands the Holy Ghost was given, he offered them money,</VERS>\r\n      <VERS vnumber=\"19\">Saying, Give me also this power, that on whomsoever I lay hands, he may receive the Holy Ghost.</VERS>\r\n      <VERS vnumber=\"20\">But Peter said unto him, Thy money perish with thee, because thou hast thought that the gift of God may be purchased with money.</VERS>\r\n      <VERS vnumber=\"21\">Thou hast neither part nor lot in this matter: for thy heart is not right in the sight of God.</VERS>\r\n      <VERS vnumber=\"22\">Repent therefore of this thy wickedness, and pray God, if perhaps the thought of thine heart may be forgiven thee.</VERS>\r\n      <VERS vnumber=\"23\">For I perceive that thou art in the gall of bitterness, and in the bond of iniquity.</VERS>\r\n      <VERS vnumber=\"24\">Then answered Simon, and said, Pray ye to the Lord for me, that none of these things which ye have spoken come upon me.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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,</VERS>\r\n      <VERS vnumber=\"28\">Was returning, and sitting in his chariot read Esaias the prophet.</VERS>\r\n      <VERS vnumber=\"29\">Then the Spirit said unto Philip, Go near, and join thyself to this chariot.</VERS>\r\n      <VERS vnumber=\"30\">And Philip ran thither to him, and heard him read the prophet Esaias, and said, Understandest thou what thou readest?</VERS>\r\n      <VERS vnumber=\"31\">And he said, How can I, except some man should guide me? And he desired Philip that he would come up and sit with him.</VERS>\r\n      <VERS vnumber=\"32\">The 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:</VERS>\r\n      <VERS vnumber=\"33\">In his humiliation his judgment was taken away: and who shall declare his generation? for his life is taken from the earth.</VERS>\r\n      <VERS vnumber=\"34\">And the eunuch answered Philip, and said, I pray thee, of whom speaketh the prophet this? of himself, or of some other man?</VERS>\r\n      <VERS vnumber=\"35\">Then Philip opened his mouth, and began at the same scripture, and preached unto him Jesus.</VERS>\r\n      <VERS vnumber=\"36\">And 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?</VERS>\r\n      <VERS vnumber=\"37\">And 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.</VERS>\r\n      <VERS vnumber=\"38\">And he commanded the chariot to stand still: and they went down both into the water, both Philip and the eunuch; and he baptized him.</VERS>\r\n      <VERS vnumber=\"39\">And 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.</VERS>\r\n      <VERS vnumber=\"40\">But Philip was found at Azotus: and passing through he preached in all the cities, till he came to Caesarea.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">And Saul, yet breathing out threatenings and slaughter against the disciples of the Lord, went unto the high priest,</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And as he journeyed, he came near Damascus: and suddenly there shined round about him a light from heaven:</VERS>\r\n      <VERS vnumber=\"4\">And he fell to the earth, and heard a voice saying unto him, Saul, Saul, why persecutest thou me?</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And the men which journeyed with him stood speechless, hearing a voice, but seeing no man.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And he was three days without sight, and neither did eat nor drink.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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,</VERS>\r\n      <VERS vnumber=\"12\">And hath seen in a vision a man named Ananias coming in, and putting his hand on him, that he might receive his sight.</VERS>\r\n      <VERS vnumber=\"13\">Then Ananias answered, Lord, I have heard by many of this man, how much evil he hath done to thy saints at Jerusalem:</VERS>\r\n      <VERS vnumber=\"14\">And here he hath authority from the chief priests to bind all that call on thy name.</VERS>\r\n      <VERS vnumber=\"15\">But 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:</VERS>\r\n      <VERS vnumber=\"16\">For I will shew him how great things he must suffer for my name's sake.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And immediately there fell from his eyes as it had been scales: and he received sight forthwith, and arose, and was baptized.</VERS>\r\n      <VERS vnumber=\"19\">And when he had received meat, he was strengthened. Then was Saul certain days with the disciples which were at Damascus.</VERS>\r\n      <VERS vnumber=\"20\">And straightway he preached Christ in the synagogues, that he is the Son of God.</VERS>\r\n      <VERS vnumber=\"21\">But 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?</VERS>\r\n      <VERS vnumber=\"22\">But Saul increased the more in strength, and confounded the Jews which dwelt at Damascus, proving that this is very Christ.</VERS>\r\n      <VERS vnumber=\"23\">And after that many days were fulfilled, the Jews took counsel to kill him:</VERS>\r\n      <VERS vnumber=\"24\">But their laying await was known of Saul. And they watched the gates day and night to kill him.</VERS>\r\n      <VERS vnumber=\"25\">Then the disciples took him by night, and let him down by the wall in a basket.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">But 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.</VERS>\r\n      <VERS vnumber=\"28\">And he was with them coming in and going out at Jerusalem.</VERS>\r\n      <VERS vnumber=\"29\">And he spake boldly in the name of the Lord Jesus, and disputed against the Grecians: but they went about to slay him.</VERS>\r\n      <VERS vnumber=\"30\">Which when the brethren knew, they brought him down to Caesarea, and sent him forth to Tarsus.</VERS>\r\n      <VERS vnumber=\"31\">Then 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.</VERS>\r\n      <VERS vnumber=\"32\">And it came to pass, as Peter passed throughout all quarters, he came down also to the saints which dwelt at Lydda.</VERS>\r\n      <VERS vnumber=\"33\">And there he found a certain man named Aeneas, which had kept his bed eight years, and was sick of the palsy.</VERS>\r\n      <VERS vnumber=\"34\">And Peter said unto him, Aeneas, Jesus Christ maketh thee whole: arise, and make thy bed. And he arose immediately.</VERS>\r\n      <VERS vnumber=\"35\">And all that dwelt at Lydda and Saron saw him, and turned to the Lord.</VERS>\r\n      <VERS vnumber=\"36\">Now 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.</VERS>\r\n      <VERS vnumber=\"37\">And 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.</VERS>\r\n      <VERS vnumber=\"38\">And 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.</VERS>\r\n      <VERS vnumber=\"39\">Then 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.</VERS>\r\n      <VERS vnumber=\"40\">But 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.</VERS>\r\n      <VERS vnumber=\"41\">And he gave her his hand, and lifted her up, and when he had called the saints and widows, presented her alive.</VERS>\r\n      <VERS vnumber=\"42\">And it was known throughout all Joppa; and many believed in the Lord.</VERS>\r\n      <VERS vnumber=\"43\">And it came to pass, that he tarried many days in Joppa with one Simon a tanner.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">There was a certain man in Caesarea called Cornelius, a centurion of the band called the Italian band,</VERS>\r\n      <VERS vnumber=\"2\">A devout man, and one that feared God with all his house, which gave much alms to the people, and prayed to God alway.</VERS>\r\n      <VERS vnumber=\"3\">He 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And now send men to Joppa, and call for one Simon, whose surname is Peter:</VERS>\r\n      <VERS vnumber=\"6\">He lodgeth with one Simon a tanner, whose house is by the sea side: he shall tell thee what thou oughtest to do.</VERS>\r\n      <VERS vnumber=\"7\">And 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;</VERS>\r\n      <VERS vnumber=\"8\">And when he had declared all these things unto them, he sent them to Joppa.</VERS>\r\n      <VERS vnumber=\"9\">On 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:</VERS>\r\n      <VERS vnumber=\"10\">And he became very hungry, and would have eaten: but while they made ready, he fell into a trance,</VERS>\r\n      <VERS vnumber=\"11\">And saw heaven opened, and a certain vessel descending unto him, as it had been a great sheet knit at the four corners, and let down to the earth:</VERS>\r\n      <VERS vnumber=\"12\">Wherein were all manner of fourfooted beasts of the earth, and wild beasts, and creeping things, and fowls of the air.</VERS>\r\n      <VERS vnumber=\"13\">And there came a voice to him, Rise, Peter; kill, and eat.</VERS>\r\n      <VERS vnumber=\"14\">But Peter said, Not so, Lord; for I have never eaten any thing that is common or unclean.</VERS>\r\n      <VERS vnumber=\"15\">And the voice spake unto him again the second time, What God hath cleansed, that call not thou common.</VERS>\r\n      <VERS vnumber=\"16\">This was done thrice: and the vessel was received up again into heaven.</VERS>\r\n      <VERS vnumber=\"17\">Now 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,</VERS>\r\n      <VERS vnumber=\"18\">And called, and asked whether Simon, which was surnamed Peter, were lodged there.</VERS>\r\n      <VERS vnumber=\"19\">While Peter thought on the vision, the Spirit said unto him, Behold, three men seek thee.</VERS>\r\n      <VERS vnumber=\"20\">Arise therefore, and get thee down, and go with them, doubting nothing: for I have sent them.</VERS>\r\n      <VERS vnumber=\"21\">Then 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?</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">Then called he them in, and lodged them. And on the morrow Peter went away with them, and certain brethren from Joppa accompanied him.</VERS>\r\n      <VERS vnumber=\"24\">And the morrow after they entered into Caesarea. And Cornelius waited for them, and had called together his kinsmen and near friends.</VERS>\r\n      <VERS vnumber=\"25\">And as Peter was coming in, Cornelius met him, and fell down at his feet, and worshipped him.</VERS>\r\n      <VERS vnumber=\"26\">But Peter took him up, saying, Stand up; I myself also am a man.</VERS>\r\n      <VERS vnumber=\"27\">And as he talked with him, he went in, and found many that were come together.</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">Therefore came I unto you without gainsaying, as soon as I was sent for: I ask therefore for what intent ye have sent for me?</VERS>\r\n      <VERS vnumber=\"30\">And 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,</VERS>\r\n      <VERS vnumber=\"31\">And said, Cornelius, thy prayer is heard, and thine alms are had in remembrance in the sight of God.</VERS>\r\n      <VERS vnumber=\"32\">Send 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.</VERS>\r\n      <VERS vnumber=\"33\">Immediately 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.</VERS>\r\n      <VERS vnumber=\"34\">Then Peter opened his mouth, and said, Of a truth I perceive that God is no respecter of persons:</VERS>\r\n      <VERS vnumber=\"35\">But in every nation he that feareth him, and worketh righteousness, is accepted with him.</VERS>\r\n      <VERS vnumber=\"36\">The word which God sent unto the children of Israel, preaching peace by Jesus Christ: (he is Lord of all:)</VERS>\r\n      <VERS vnumber=\"37\">That word, I say, ye know, which was published throughout all Judaea, and began from Galilee, after the baptism which John preached;</VERS>\r\n      <VERS vnumber=\"38\">How 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.</VERS>\r\n      <VERS vnumber=\"39\">And 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:</VERS>\r\n      <VERS vnumber=\"40\">Him God raised up the third day, and shewed him openly;</VERS>\r\n      <VERS vnumber=\"41\">Not to all the people, but unto witnesses chosen before of God, even to us, who did eat and drink with him after he rose from the dead.</VERS>\r\n      <VERS vnumber=\"42\">And 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.</VERS>\r\n      <VERS vnumber=\"43\">To him give all the prophets witness, that through his name whosoever believeth in him shall receive remission of sins.</VERS>\r\n      <VERS vnumber=\"44\">While Peter yet spake these words, the Holy Ghost fell on all them which heard the word.</VERS>\r\n      <VERS vnumber=\"45\">And 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.</VERS>\r\n      <VERS vnumber=\"46\">For they heard them speak with tongues, and magnify God. Then answered Peter,</VERS>\r\n      <VERS vnumber=\"47\">Can any man forbid water, that these should not be baptized, which have received the Holy Ghost as well as we?</VERS>\r\n      <VERS vnumber=\"48\">And he commanded them to be baptized in the name of the Lord. Then prayed they him to tarry certain days.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">And the apostles and brethren that were in Judaea heard that the Gentiles had also received the word of God.</VERS>\r\n      <VERS vnumber=\"2\">And when Peter was come up to Jerusalem, they that were of the circumcision contended with him,</VERS>\r\n      <VERS vnumber=\"3\">Saying, Thou wentest in to men uncircumcised, and didst eat with them.</VERS>\r\n      <VERS vnumber=\"4\">But Peter rehearsed the matter from the beginning, and expounded it by order unto them, saying,</VERS>\r\n      <VERS vnumber=\"5\">I 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:</VERS>\r\n      <VERS vnumber=\"6\">Upon 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.</VERS>\r\n      <VERS vnumber=\"7\">And I heard a voice saying unto me, Arise, Peter; slay and eat.</VERS>\r\n      <VERS vnumber=\"8\">But I said, Not so, Lord: for nothing common or unclean hath at any time entered into my mouth.</VERS>\r\n      <VERS vnumber=\"9\">But the voice answered me again from heaven, What God hath cleansed, that call not thou common.</VERS>\r\n      <VERS vnumber=\"10\">And this was done three times: and all were drawn up again into heaven.</VERS>\r\n      <VERS vnumber=\"11\">And, behold, immediately there were three men already come unto the house where I was, sent from Caesarea unto me.</VERS>\r\n      <VERS vnumber=\"12\">And the Spirit bade me go with them, nothing doubting. Moreover these six brethren accompanied me, and we entered into the man's house:</VERS>\r\n      <VERS vnumber=\"13\">And 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;</VERS>\r\n      <VERS vnumber=\"14\">Who shall tell thee words, whereby thou and all thy house shall be saved.</VERS>\r\n      <VERS vnumber=\"15\">And as I began to speak, the Holy Ghost fell on them, as on us at the beginning.</VERS>\r\n      <VERS vnumber=\"16\">Then 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.</VERS>\r\n      <VERS vnumber=\"17\">Forasmuch 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?</VERS>\r\n      <VERS vnumber=\"18\">When they heard these things, they held their peace, and glorified God, saying, Then hath God also to the Gentiles granted repentance unto life.</VERS>\r\n      <VERS vnumber=\"19\">Now 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.</VERS>\r\n      <VERS vnumber=\"20\">And some of them were men of Cyprus and Cyrene, which, when they were come to Antioch, spake unto the Grecians, preaching the Lord Jesus.</VERS>\r\n      <VERS vnumber=\"21\">And the hand of the Lord was with them: and a great number believed, and turned unto the Lord.</VERS>\r\n      <VERS vnumber=\"22\">Then 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.</VERS>\r\n      <VERS vnumber=\"23\">Who, 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.</VERS>\r\n      <VERS vnumber=\"24\">For he was a good man, and full of the Holy Ghost and of faith: and much people was added unto the Lord.</VERS>\r\n      <VERS vnumber=\"25\">Then departed Barnabas to Tarsus, for to seek Saul:</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And in these days came prophets from Jerusalem unto Antioch.</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">Then the disciples, every man according to his ability, determined to send relief unto the brethren which dwelt in Judaea:</VERS>\r\n      <VERS vnumber=\"30\">Which also they did, and sent it to the elders by the hands of Barnabas and Saul.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">Now about that time Herod the king stretched forth his hands to vex certain of the church.</VERS>\r\n      <VERS vnumber=\"2\">And he killed James the brother of John with the sword.</VERS>\r\n      <VERS vnumber=\"3\">And because he saw it pleased the Jews, he proceeded further to take Peter also. (Then were the days of unleavened bread.)</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">Peter therefore was kept in prison: but prayer was made without ceasing of the church unto God for him.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And, 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">When 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And as Peter knocked at the door of the gate, a damsel came to hearken, named Rhoda.</VERS>\r\n      <VERS vnumber=\"14\">And when she knew Peter's voice, she opened not the gate for gladness, but ran in, and told how Peter stood before the gate.</VERS>\r\n      <VERS vnumber=\"15\">And they said unto her, Thou art mad. But she constantly affirmed that it was even so. Then said they, It is his angel.</VERS>\r\n      <VERS vnumber=\"16\">But Peter continued knocking: and when they had opened the door, and saw him, they were astonished.</VERS>\r\n      <VERS vnumber=\"17\">But 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.</VERS>\r\n      <VERS vnumber=\"18\">Now as soon as it was day, there was no small stir among the soldiers, what was become of Peter.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And upon a set day Herod, arrayed in royal apparel, sat upon his throne, and made an oration unto them.</VERS>\r\n      <VERS vnumber=\"22\">And the people gave a shout, saying, It is the voice of a god, and not of a man.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">But the word of God grew and multiplied.</VERS>\r\n      <VERS vnumber=\"25\">And Barnabas and Saul returned from Jerusalem, when they had fulfilled their ministry, and took with them John, whose surname was Mark.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">Now 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.</VERS>\r\n      <VERS vnumber=\"2\">As they ministered to the Lord, and fasted, the Holy Ghost said, Separate me Barnabas and Saul for the work whereunto I have called them.</VERS>\r\n      <VERS vnumber=\"3\">And when they had fasted and prayed, and laid their hands on them, they sent them away.</VERS>\r\n      <VERS vnumber=\"4\">So they, being sent forth by the Holy Ghost, departed unto Seleucia; and from thence they sailed to Cyprus.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And when they had gone through the isle unto Paphos, they found a certain sorcerer, a false prophet, a Jew, whose name was Barjesus:</VERS>\r\n      <VERS vnumber=\"7\">Which 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.</VERS>\r\n      <VERS vnumber=\"8\">But Elymas the sorcerer (for so is his name by interpretation) withstood them, seeking to turn away the deputy from the faith.</VERS>\r\n      <VERS vnumber=\"9\">Then Saul, (who also is called Paul,) filled with the Holy Ghost, set his eyes on him,</VERS>\r\n      <VERS vnumber=\"10\">And 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?</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">Then the deputy, when he saw what was done, believed, being astonished at the doctrine of the Lord.</VERS>\r\n      <VERS vnumber=\"13\">Now when Paul and his company loosed from Paphos, they came to Perga in Pamphylia: and John departing from them returned to Jerusalem.</VERS>\r\n      <VERS vnumber=\"14\">But when they departed from Perga, they came to Antioch in Pisidia, and went into the synagogue on the sabbath day, and sat down.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">Then Paul stood up, and beckoning with his hand said, Men of Israel, and ye that fear God, give audience.</VERS>\r\n      <VERS vnumber=\"17\">The 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.</VERS>\r\n      <VERS vnumber=\"18\">And about the time of forty years suffered he their manners in the wilderness.</VERS>\r\n      <VERS vnumber=\"19\">And when he had destroyed seven nations in the land of Chanaan, he divided their land to them by lot.</VERS>\r\n      <VERS vnumber=\"20\">And after that he gave unto them judges about the space of four hundred and fifty years, until Samuel the prophet.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And when he had removed him, he raised up unto them David to be their king; to whom also he gave testimony, and said, I have found David the son of Jesse, a man after mine own heart, which shall fulfil all my will.</VERS>\r\n      <VERS vnumber=\"23\">Of this man's seed hath God according to his promise raised unto Israel a Saviour, Jesus:</VERS>\r\n      <VERS vnumber=\"24\">When John had first preached before his coming the baptism of repentance to all the people of Israel.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">Men and brethren, children of the stock of Abraham, and whosoever among you feareth God, to you is the word of this salvation sent.</VERS>\r\n      <VERS vnumber=\"27\">For 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.</VERS>\r\n      <VERS vnumber=\"28\">And though they found no cause of death in him, yet desired they Pilate that he should be slain.</VERS>\r\n      <VERS vnumber=\"29\">And when they had fulfilled all that was written of him, they took him down from the tree, and laid him in a sepulchre.</VERS>\r\n      <VERS vnumber=\"30\">But God raised him from the dead:</VERS>\r\n      <VERS vnumber=\"31\">And he was seen many days of them which came up with him from Galilee to Jerusalem, who are his witnesses unto the people.</VERS>\r\n      <VERS vnumber=\"32\">And we declare unto you glad tidings, how that the promise which was made unto the fathers,</VERS>\r\n      <VERS vnumber=\"33\">God 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.</VERS>\r\n      <VERS vnumber=\"34\">And 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.</VERS>\r\n      <VERS vnumber=\"35\">Wherefore he saith also in another psalm, Thou shalt not suffer thine Holy One to see corruption.</VERS>\r\n      <VERS vnumber=\"36\">For 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:</VERS>\r\n      <VERS vnumber=\"37\">But he, whom God raised again, saw no corruption.</VERS>\r\n      <VERS vnumber=\"38\">Be it known unto you therefore, men and brethren, that through this man is preached unto you the forgiveness of sins:</VERS>\r\n      <VERS vnumber=\"39\">And by him all that believe are justified from all things, from which ye could not be justified by the law of Moses.</VERS>\r\n      <VERS vnumber=\"40\">Beware therefore, lest that come upon you, which is spoken of in the prophets;</VERS>\r\n      <VERS vnumber=\"41\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"42\">And when the Jews were gone out of the synagogue, the Gentiles besought that these words might be preached to them the next sabbath.</VERS>\r\n      <VERS vnumber=\"43\">Now 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.</VERS>\r\n      <VERS vnumber=\"44\">And the next sabbath day came almost the whole city together to hear the word of God.</VERS>\r\n      <VERS vnumber=\"45\">But when the Jews saw the multitudes, they were filled with envy, and spake against those things which were spoken by Paul, contradicting and blaspheming.</VERS>\r\n      <VERS vnumber=\"46\">Then 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.</VERS>\r\n      <VERS vnumber=\"47\">For 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.</VERS>\r\n      <VERS vnumber=\"48\">And 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.</VERS>\r\n      <VERS vnumber=\"49\">And the word of the Lord was published throughout all the region.</VERS>\r\n      <VERS vnumber=\"50\">But 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.</VERS>\r\n      <VERS vnumber=\"51\">But they shook off the dust of their feet against them, and came unto Iconium.</VERS>\r\n      <VERS vnumber=\"52\">And the disciples were filled with joy, and with the Holy Ghost.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">But the unbelieving Jews stirred up the Gentiles, and made their minds evil affected against the brethren.</VERS>\r\n      <VERS vnumber=\"3\">Long 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.</VERS>\r\n      <VERS vnumber=\"4\">But the multitude of the city was divided: and part held with the Jews, and part with the apostles.</VERS>\r\n      <VERS vnumber=\"5\">And 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,</VERS>\r\n      <VERS vnumber=\"6\">They were ware of it, and fled unto Lystra and Derbe, cities of Lycaonia, and unto the region that lieth round about:</VERS>\r\n      <VERS vnumber=\"7\">And there they preached the gospel.</VERS>\r\n      <VERS vnumber=\"8\">And there sat a certain man at Lystra, impotent in his feet, being a cripple from his mother's womb, who never had walked:</VERS>\r\n      <VERS vnumber=\"9\">The same heard Paul speak: who stedfastly beholding him, and perceiving that he had faith to be healed,</VERS>\r\n      <VERS vnumber=\"10\">Said with a loud voice, Stand upright on thy feet. And he leaped and walked.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And they called Barnabas, Jupiter; and Paul, Mercurius, because he was the chief speaker.</VERS>\r\n      <VERS vnumber=\"13\">Then the priest of Jupiter, which was before their city, brought oxen and garlands unto the gates, and would have done sacrifice with the people.</VERS>\r\n      <VERS vnumber=\"14\">Which when the apostles, Barnabas and Paul, heard of, they rent their clothes, and ran in among the people, crying out,</VERS>\r\n      <VERS vnumber=\"15\">And 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:</VERS>\r\n      <VERS vnumber=\"16\">Who in times past suffered all nations to walk in their own ways.</VERS>\r\n      <VERS vnumber=\"17\">Nevertheless 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.</VERS>\r\n      <VERS vnumber=\"18\">And with these sayings scarce restrained they the people, that they had not done sacrifice unto them.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">Howbeit, 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.</VERS>\r\n      <VERS vnumber=\"21\">And when they had preached the gospel to that city, and had taught many, they returned again to Lystra, and to Iconium, and Antioch,</VERS>\r\n      <VERS vnumber=\"22\">Confirming 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.</VERS>\r\n      <VERS vnumber=\"23\">And when they had ordained them elders in every church, and had prayed with fasting, they commended them to the Lord, on whom they believed.</VERS>\r\n      <VERS vnumber=\"24\">And after they had passed throughout Pisidia, they came to Pamphylia.</VERS>\r\n      <VERS vnumber=\"25\">And when they had preached the word in Perga, they went down into Attalia:</VERS>\r\n      <VERS vnumber=\"26\">And thence sailed to Antioch, from whence they had been recommended to the grace of God for the work which they fulfilled.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And there they abode long time with the disciples.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">When 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">But 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.</VERS>\r\n      <VERS vnumber=\"6\">And the apostles and elders came together for to consider of this matter.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And God, which knoweth the hearts, bare them witness, giving them the Holy Ghost, even as he did unto us;</VERS>\r\n      <VERS vnumber=\"9\">And put no difference between us and them, purifying their hearts by faith.</VERS>\r\n      <VERS vnumber=\"10\">Now 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?</VERS>\r\n      <VERS vnumber=\"11\">But we believe that through the grace of the Lord Jesus Christ we shall be saved, even as they.</VERS>\r\n      <VERS vnumber=\"12\">Then 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.</VERS>\r\n      <VERS vnumber=\"13\">And after they had held their peace, James answered, saying, Men and brethren, hearken unto me:</VERS>\r\n      <VERS vnumber=\"14\">Simeon hath declared how God at the first did visit the Gentiles, to take out of them a people for his name.</VERS>\r\n      <VERS vnumber=\"15\">And to this agree the words of the prophets; as it is written,</VERS>\r\n      <VERS vnumber=\"16\">After 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:</VERS>\r\n      <VERS vnumber=\"17\">That 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.</VERS>\r\n      <VERS vnumber=\"18\">Known unto God are all his works from the beginning of the world.</VERS>\r\n      <VERS vnumber=\"19\">Wherefore my sentence is, that we trouble not them, which from among the Gentiles are turned to God:</VERS>\r\n      <VERS vnumber=\"20\">But that we write unto them, that they abstain from pollutions of idols, and from fornication, and from things strangled, and from blood.</VERS>\r\n      <VERS vnumber=\"21\">For Moses of old time hath in every city them that preach him, being read in the synagogues every sabbath day.</VERS>\r\n      <VERS vnumber=\"22\">Then 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:</VERS>\r\n      <VERS vnumber=\"23\">And 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:</VERS>\r\n      <VERS vnumber=\"24\">Forasmuch 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:</VERS>\r\n      <VERS vnumber=\"25\">It seemed good unto us, being assembled with one accord, to send chosen men unto you with our beloved Barnabas and Paul,</VERS>\r\n      <VERS vnumber=\"26\">Men that have hazarded their lives for the name of our Lord Jesus Christ.</VERS>\r\n      <VERS vnumber=\"27\">We have sent therefore Judas and Silas, who shall also tell you the same things by mouth.</VERS>\r\n      <VERS vnumber=\"28\">For it seemed good to the Holy Ghost, and to us, to lay upon you no greater burden than these necessary things;</VERS>\r\n      <VERS vnumber=\"29\">That 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.</VERS>\r\n      <VERS vnumber=\"30\">So when they were dismissed, they came to Antioch: and when they had gathered the multitude together, they delivered the epistle:</VERS>\r\n      <VERS vnumber=\"31\">Which when they had read, they rejoiced for the consolation.</VERS>\r\n      <VERS vnumber=\"32\">And Judas and Silas, being prophets also themselves, exhorted the brethren with many words, and confirmed them.</VERS>\r\n      <VERS vnumber=\"33\">And after they had tarried there a space, they were let go in peace from the brethren unto the apostles.</VERS>\r\n      <VERS vnumber=\"34\">Notwithstanding it pleased Silas to abide there still.</VERS>\r\n      <VERS vnumber=\"35\">Paul also and Barnabas continued in Antioch, teaching and preaching the word of the Lord, with many others also.</VERS>\r\n      <VERS vnumber=\"36\">And 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.</VERS>\r\n      <VERS vnumber=\"37\">And Barnabas determined to take with them John, whose surname was Mark.</VERS>\r\n      <VERS vnumber=\"38\">But Paul thought not good to take him with them, who departed from them from Pamphylia, and went not with them to the work.</VERS>\r\n      <VERS vnumber=\"39\">And the contention was so sharp between them, that they departed asunder one from the other: and so Barnabas took Mark, and sailed unto Cyprus;</VERS>\r\n      <VERS vnumber=\"40\">And Paul chose Silas, and departed, being recommended by the brethren unto the grace of God.</VERS>\r\n      <VERS vnumber=\"41\">And he went through Syria and Cilicia, confirming the churches.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">Then 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:</VERS>\r\n      <VERS vnumber=\"2\">Which was well reported of by the brethren that were at Lystra and Iconium.</VERS>\r\n      <VERS vnumber=\"3\">Him 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And so were the churches established in the faith, and increased in number daily.</VERS>\r\n      <VERS vnumber=\"6\">Now when they had gone throughout Phrygia and the region of Galatia, and were forbidden of the Holy Ghost to preach the word in Asia,</VERS>\r\n      <VERS vnumber=\"7\">After they were come to Mysia, they assayed to go into Bithynia: but the Spirit suffered them not.</VERS>\r\n      <VERS vnumber=\"8\">And they passing by Mysia came down to Troas.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">Therefore loosing from Troas, we came with a straight course to Samothracia, and the next day to Neapolis;</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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:</VERS>\r\n      <VERS vnumber=\"17\">The 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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,</VERS>\r\n      <VERS vnumber=\"20\">And brought them to the magistrates, saying, These men, being Jews, do exceedingly trouble our city,</VERS>\r\n      <VERS vnumber=\"21\">And teach customs, which are not lawful for us to receive, neither to observe, being Romans.</VERS>\r\n      <VERS vnumber=\"22\">And the multitude rose up together against them: and the magistrates rent off their clothes, and commanded to beat them.</VERS>\r\n      <VERS vnumber=\"23\">And when they had laid many stripes upon them, they cast them into prison, charging the jailor to keep them safely:</VERS>\r\n      <VERS vnumber=\"24\">Who, having received such a charge, thrust them into the inner prison, and made their feet fast in the stocks.</VERS>\r\n      <VERS vnumber=\"25\">And at midnight Paul and Silas prayed, and sang praises unto God: and the prisoners heard them.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">But Paul cried with a loud voice, saying, Do thyself no harm: for we are all here.</VERS>\r\n      <VERS vnumber=\"29\">Then he called for a light, and sprang in, and came trembling, and fell down before Paul and Silas,</VERS>\r\n      <VERS vnumber=\"30\">And brought them out, and said, Sirs, what must I do to be saved?</VERS>\r\n      <VERS vnumber=\"31\">And they said, Believe on the Lord Jesus Christ, and thou shalt be saved, and thy house.</VERS>\r\n      <VERS vnumber=\"32\">And they spake unto him the word of the Lord, and to all that were in his house.</VERS>\r\n      <VERS vnumber=\"33\">And he took them the same hour of the night, and washed their stripes; and was baptized, he and all his, straightway.</VERS>\r\n      <VERS vnumber=\"34\">And when he had brought them into his house, he set meat before them, and rejoiced, believing in God with all his house.</VERS>\r\n      <VERS vnumber=\"35\">And when it was day, the magistrates sent the serjeants, saying, Let those men go.</VERS>\r\n      <VERS vnumber=\"36\">And 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.</VERS>\r\n      <VERS vnumber=\"37\">But 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.</VERS>\r\n      <VERS vnumber=\"38\">And the serjeants told these words unto the magistrates: and they feared, when they heard that they were Romans.</VERS>\r\n      <VERS vnumber=\"39\">And they came and besought them, and brought them out, and desired them to depart out of the city.</VERS>\r\n      <VERS vnumber=\"40\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"17\">\r\n      <VERS vnumber=\"1\">Now when they had passed through Amphipolis and Apollonia, they came to Thessalonica, where was a synagogue of the Jews:</VERS>\r\n      <VERS vnumber=\"2\">And Paul, as his manner was, went in unto them, and three sabbath days reasoned with them out of the scriptures,</VERS>\r\n      <VERS vnumber=\"3\">Opening 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">But 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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;</VERS>\r\n      <VERS vnumber=\"7\">Whom Jason hath received: and these all do contrary to the decrees of Caesar, saying that there is another king, one Jesus.</VERS>\r\n      <VERS vnumber=\"8\">And they troubled the people and the rulers of the city, when they heard these things.</VERS>\r\n      <VERS vnumber=\"9\">And when they had taken security of Jason, and of the other, they let them go.</VERS>\r\n      <VERS vnumber=\"10\">And the brethren immediately sent away Paul and Silas by night unto Berea: who coming thither went into the synagogue of the Jews.</VERS>\r\n      <VERS vnumber=\"11\">These 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.</VERS>\r\n      <VERS vnumber=\"12\">Therefore many of them believed; also of honourable women which were Greeks, and of men, not a few.</VERS>\r\n      <VERS vnumber=\"13\">But 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.</VERS>\r\n      <VERS vnumber=\"14\">And then immediately the brethren sent away Paul to go as it were to the sea: but Silas and Timotheus abode there still.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">Now while Paul waited for them at Athens, his spirit was stirred in him, when he saw the city wholly given to idolatry.</VERS>\r\n      <VERS vnumber=\"17\">Therefore disputed he in the synagogue with the Jews, and with the devout persons, and in the market daily with them that met with him.</VERS>\r\n      <VERS vnumber=\"18\">Then 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.</VERS>\r\n      <VERS vnumber=\"19\">And they took him, and brought him unto Areopagus, saying, May we know what this new doctrine, whereof thou speakest, is?</VERS>\r\n      <VERS vnumber=\"20\">For thou bringest certain strange things to our ears: we would know therefore what these things mean.</VERS>\r\n      <VERS vnumber=\"21\">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.)</VERS>\r\n      <VERS vnumber=\"22\">Then Paul stood in the midst of Mars' hill, and said, Ye men of Athens, I perceive that in all things ye are too superstitious.</VERS>\r\n      <VERS vnumber=\"23\">For 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.</VERS>\r\n      <VERS vnumber=\"24\">God that made the world and all things therein, seeing that he is Lord of heaven and earth, dwelleth not in temples made with hands;</VERS>\r\n      <VERS vnumber=\"25\">Neither is worshipped with men's hands, as though he needed any thing, seeing he giveth to all life, and breath, and all things;</VERS>\r\n      <VERS vnumber=\"26\">And 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;</VERS>\r\n      <VERS vnumber=\"27\">That 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:</VERS>\r\n      <VERS vnumber=\"28\">For 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.</VERS>\r\n      <VERS vnumber=\"29\">Forasmuch 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.</VERS>\r\n      <VERS vnumber=\"30\">And the times of this ignorance God winked at; but now commandeth all men every where to repent:</VERS>\r\n      <VERS vnumber=\"31\">Because 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.</VERS>\r\n      <VERS vnumber=\"32\">And when they heard of the resurrection of the dead, some mocked: and others said, We will hear thee again of this matter.</VERS>\r\n      <VERS vnumber=\"33\">So Paul departed from among them.</VERS>\r\n      <VERS vnumber=\"34\">Howbeit certain men clave unto him, and believed: among the which was Dionysius the Areopagite, and a woman named Damaris, and others with them.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"18\">\r\n      <VERS vnumber=\"1\">After these things Paul departed from Athens, and came to Corinth;</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And because he was of the same craft, he abode with them, and wrought: for by their occupation they were tentmakers.</VERS>\r\n      <VERS vnumber=\"4\">And he reasoned in the synagogue every sabbath, and persuaded the Jews and the Greeks.</VERS>\r\n      <VERS vnumber=\"5\">And when Silas and Timotheus were come from Macedonia, Paul was pressed in the spirit, and testified to the Jews that Jesus was Christ.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And he departed thence, and entered into a certain man's house, named Justus, one that worshipped God, whose house joined hard to the synagogue.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">Then spake the Lord to Paul in the night by a vision, Be not afraid, but speak, and hold not thy peace:</VERS>\r\n      <VERS vnumber=\"10\">For I am with thee, and no man shall set on thee to hurt thee: for I have much people in this city.</VERS>\r\n      <VERS vnumber=\"11\">And he continued there a year and six months, teaching the word of God among them.</VERS>\r\n      <VERS vnumber=\"12\">And when Gallio was the deputy of Achaia, the Jews made insurrection with one accord against Paul, and brought him to the judgment seat,</VERS>\r\n      <VERS vnumber=\"13\">Saying, This fellow persuadeth men to worship God contrary to the law.</VERS>\r\n      <VERS vnumber=\"14\">And 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:</VERS>\r\n      <VERS vnumber=\"15\">But 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.</VERS>\r\n      <VERS vnumber=\"16\">And he drave them from the judgment seat.</VERS>\r\n      <VERS vnumber=\"17\">Then 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And he came to Ephesus, and left them there: but he himself entered into the synagogue, and reasoned with the Jews.</VERS>\r\n      <VERS vnumber=\"20\">When they desired him to tarry longer time with them, he consented not;</VERS>\r\n      <VERS vnumber=\"21\">But 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.</VERS>\r\n      <VERS vnumber=\"22\">And when he had landed at Caesarea, and gone up, and saluted the church, he went down to Antioch.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And a certain Jew named Apollos, born at Alexandria, an eloquent man, and mighty in the scriptures, came to Ephesus.</VERS>\r\n      <VERS vnumber=\"25\">This 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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:</VERS>\r\n      <VERS vnumber=\"28\">For he mightily convinced the Jews, and that publickly, shewing by the scriptures that Jesus was Christ.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"19\">\r\n      <VERS vnumber=\"1\">And it came to pass, that, while Apollos was at Corinth, Paul having passed through the upper coasts came to Ephesus: and finding certain disciples,</VERS>\r\n      <VERS vnumber=\"2\">He 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.</VERS>\r\n      <VERS vnumber=\"3\">And he said unto them, Unto what then were ye baptized? And they said, Unto John's baptism.</VERS>\r\n      <VERS vnumber=\"4\">Then 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.</VERS>\r\n      <VERS vnumber=\"5\">When they heard this, they were baptized in the name of the Lord Jesus.</VERS>\r\n      <VERS vnumber=\"6\">And when Paul had laid his hands upon them, the Holy Ghost came on them; and they spake with tongues, and prophesied.</VERS>\r\n      <VERS vnumber=\"7\">And all the men were about twelve.</VERS>\r\n      <VERS vnumber=\"8\">And he went into the synagogue, and spake boldly for the space of three months, disputing and persuading the things concerning the kingdom of God.</VERS>\r\n      <VERS vnumber=\"9\">But 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And God wrought special miracles by the hands of Paul:</VERS>\r\n      <VERS vnumber=\"12\">So 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.</VERS>\r\n      <VERS vnumber=\"13\">Then 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.</VERS>\r\n      <VERS vnumber=\"14\">And there were seven sons of one Sceva, a Jew, and chief of the priests, which did so.</VERS>\r\n      <VERS vnumber=\"15\">And the evil spirit answered and said, Jesus I know, and Paul I know; but who are ye?</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And many that believed came, and confessed, and shewed their deeds.</VERS>\r\n      <VERS vnumber=\"19\">Many 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.</VERS>\r\n      <VERS vnumber=\"20\">So mightily grew the word of God and prevailed.</VERS>\r\n      <VERS vnumber=\"21\">After 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.</VERS>\r\n      <VERS vnumber=\"22\">So he sent into Macedonia two of them that ministered unto him, Timotheus and Erastus; but he himself stayed in Asia for a season.</VERS>\r\n      <VERS vnumber=\"23\">And the same time there arose no small stir about that way.</VERS>\r\n      <VERS vnumber=\"24\">For a certain man named Demetrius, a silversmith, which made silver shrines for Diana, brought no small gain unto the craftsmen;</VERS>\r\n      <VERS vnumber=\"25\">Whom he called together with the workmen of like occupation, and said, Sirs, ye know that by this craft we have our wealth.</VERS>\r\n      <VERS vnumber=\"26\">Moreover 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:</VERS>\r\n      <VERS vnumber=\"27\">So 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.</VERS>\r\n      <VERS vnumber=\"28\">And when they heard these sayings, they were full of wrath, and cried out, saying, Great is Diana of the Ephesians.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">And when Paul would have entered in unto the people, the disciples suffered him not.</VERS>\r\n      <VERS vnumber=\"31\">And certain of the chief of Asia, which were his friends, sent unto him, desiring him that he would not adventure himself into the theatre.</VERS>\r\n      <VERS vnumber=\"32\">Some therefore cried one thing, and some another: for the assembly was confused; and the more part knew not wherefore they were come together.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">But 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.</VERS>\r\n      <VERS vnumber=\"35\">And 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?</VERS>\r\n      <VERS vnumber=\"36\">Seeing then that these things cannot be spoken against, ye ought to be quiet, and to do nothing rashly.</VERS>\r\n      <VERS vnumber=\"37\">For ye have brought hither these men, which are neither robbers of churches, nor yet blasphemers of your goddess.</VERS>\r\n      <VERS vnumber=\"38\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"39\">But if ye enquire any thing concerning other matters, it shall be determined in a lawful assembly.</VERS>\r\n      <VERS vnumber=\"40\">For 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.</VERS>\r\n      <VERS vnumber=\"41\">And when he had thus spoken, he dismissed the assembly.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"20\">\r\n      <VERS vnumber=\"1\">And after the uproar was ceased, Paul called unto him the disciples, and embraced them, and departed for to go into Macedonia.</VERS>\r\n      <VERS vnumber=\"2\">And when he had gone over those parts, and had given them much exhortation, he came into Greece,</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">These going before tarried for us at Troas.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And there were many lights in the upper chamber, where they were gathered together.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And Paul went down, and fell on him, and embracing him said, Trouble not yourselves; for his life is in him.</VERS>\r\n      <VERS vnumber=\"11\">When 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.</VERS>\r\n      <VERS vnumber=\"12\">And they brought the young man alive, and were not a little comforted.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And when he met with us at Assos, we took him in, and came to Mitylene.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">For 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.</VERS>\r\n      <VERS vnumber=\"17\">And from Miletus he sent to Ephesus, and called the elders of the church.</VERS>\r\n      <VERS vnumber=\"18\">And 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,</VERS>\r\n      <VERS vnumber=\"19\">Serving the Lord with all humility of mind, and with many tears, and temptations, which befell me by the lying in wait of the Jews:</VERS>\r\n      <VERS vnumber=\"20\">And how I kept back nothing that was profitable unto you, but have shewed you, and have taught you publickly, and from house to house,</VERS>\r\n      <VERS vnumber=\"21\">Testifying both to the Jews, and also to the Greeks, repentance toward God, and faith toward our Lord Jesus Christ.</VERS>\r\n      <VERS vnumber=\"22\">And now, behold, I go bound in the spirit unto Jerusalem, not knowing the things that shall befall me there:</VERS>\r\n      <VERS vnumber=\"23\">Save that the Holy Ghost witnesseth in every city, saying that bonds and afflictions abide me.</VERS>\r\n      <VERS vnumber=\"24\">But 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.</VERS>\r\n      <VERS vnumber=\"25\">And now, behold, I know that ye all, among whom I have gone preaching the kingdom of God, shall see my face no more.</VERS>\r\n      <VERS vnumber=\"26\">Wherefore I take you to record this day, that I am pure from the blood of all men.</VERS>\r\n      <VERS vnumber=\"27\">For I have not shunned to declare unto you all the counsel of God.</VERS>\r\n      <VERS vnumber=\"28\">Take 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.</VERS>\r\n      <VERS vnumber=\"29\">For I know this, that after my departing shall grievous wolves enter in among you, not sparing the flock.</VERS>\r\n      <VERS vnumber=\"30\">Also of your own selves shall men arise, speaking perverse things, to draw away disciples after them.</VERS>\r\n      <VERS vnumber=\"31\">Therefore watch, and remember, that by the space of three years I ceased not to warn every one night and day with tears.</VERS>\r\n      <VERS vnumber=\"32\">And 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.</VERS>\r\n      <VERS vnumber=\"33\">I have coveted no man's silver, or gold, or apparel.</VERS>\r\n      <VERS vnumber=\"34\">Yea, ye yourselves know, that these hands have ministered unto my necessities, and to them that were with me.</VERS>\r\n      <VERS vnumber=\"35\">I 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.</VERS>\r\n      <VERS vnumber=\"36\">And when he had thus spoken, he kneeled down, and prayed with them all.</VERS>\r\n      <VERS vnumber=\"37\">And they all wept sore, and fell on Paul's neck, and kissed him,</VERS>\r\n      <VERS vnumber=\"38\">Sorrowing most of all for the words which he spake, that they should see his face no more. And they accompanied him unto the ship.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"21\">\r\n      <VERS vnumber=\"1\">And 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:</VERS>\r\n      <VERS vnumber=\"2\">And finding a ship sailing over unto Phenicia, we went aboard, and set forth.</VERS>\r\n      <VERS vnumber=\"3\">Now 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.</VERS>\r\n      <VERS vnumber=\"4\">And finding disciples, we tarried there seven days: who said to Paul through the Spirit, that he should not go up to Jerusalem.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And when we had taken our leave one of another, we took ship; and they returned home again.</VERS>\r\n      <VERS vnumber=\"7\">And when we had finished our course from Tyre, we came to Ptolemais, and saluted the brethren, and abode with them one day.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And the same man had four daughters, virgins, which did prophesy.</VERS>\r\n      <VERS vnumber=\"10\">And as we tarried there many days, there came down from Judaea a certain prophet, named Agabus.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And when we heard these things, both we, and they of that place, besought him not to go up to Jerusalem.</VERS>\r\n      <VERS vnumber=\"13\">Then 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.</VERS>\r\n      <VERS vnumber=\"14\">And when he would not be persuaded, we ceased, saying, The will of the Lord be done.</VERS>\r\n      <VERS vnumber=\"15\">And after those days we took up our carriages, and went up to Jerusalem.</VERS>\r\n      <VERS vnumber=\"16\">There 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.</VERS>\r\n      <VERS vnumber=\"17\">And when we were come to Jerusalem, the brethren received us gladly.</VERS>\r\n      <VERS vnumber=\"18\">And the day following Paul went in with us unto James; and all the elders were present.</VERS>\r\n      <VERS vnumber=\"19\">And when he had saluted them, he declared particularly what things God had wrought among the Gentiles by his ministry.</VERS>\r\n      <VERS vnumber=\"20\">And 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:</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">What is it therefore? the multitude must needs come together: for they will hear that thou art come.</VERS>\r\n      <VERS vnumber=\"23\">Do therefore this that we say to thee: We have four men which have a vow on them;</VERS>\r\n      <VERS vnumber=\"24\">Them 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.</VERS>\r\n      <VERS vnumber=\"25\">As 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.</VERS>\r\n      <VERS vnumber=\"26\">Then 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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,</VERS>\r\n      <VERS vnumber=\"28\">Crying 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.</VERS>\r\n      <VERS vnumber=\"29\">For they had seen before with him in the city Trophimus an Ephesian, whom they supposed that Paul had brought into the temple.)</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">And as they went about to kill him, tidings came unto the chief captain of the band, that all Jerusalem was in an uproar.</VERS>\r\n      <VERS vnumber=\"32\">Who 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.</VERS>\r\n      <VERS vnumber=\"33\">Then 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.</VERS>\r\n      <VERS vnumber=\"34\">And 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.</VERS>\r\n      <VERS vnumber=\"35\">And when he came upon the stairs, so it was, that he was borne of the soldiers for the violence of the people.</VERS>\r\n      <VERS vnumber=\"36\">For the multitude of the people followed after, crying, Away with him.</VERS>\r\n      <VERS vnumber=\"37\">And 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?</VERS>\r\n      <VERS vnumber=\"38\">Art not thou that Egyptian, which before these days madest an uproar, and leddest out into the wilderness four thousand men that were murderers?</VERS>\r\n      <VERS vnumber=\"39\">But 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.</VERS>\r\n      <VERS vnumber=\"40\">And 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,</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"22\">\r\n      <VERS vnumber=\"1\">Men, brethren, and fathers, hear ye my defence which I make now unto you.</VERS>\r\n      <VERS vnumber=\"2\">And when they heard that he spake in the Hebrew tongue to them, they kept the more silence: and he saith,)</VERS>\r\n      <VERS vnumber=\"3\">I 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.</VERS>\r\n      <VERS vnumber=\"4\">And I persecuted this way unto the death, binding and delivering into prisons both men and women.</VERS>\r\n      <VERS vnumber=\"5\">As 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And I fell unto the ground, and heard a voice saying unto me, Saul, Saul, why persecutest thou me?</VERS>\r\n      <VERS vnumber=\"8\">And I answered, Who art thou, Lord? And he said unto me, I am Jesus of Nazareth, whom thou persecutest.</VERS>\r\n      <VERS vnumber=\"9\">And they that were with me saw indeed the light, and were afraid; but they heard not the voice of him that spake to me.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And one Ananias, a devout man according to the law, having a good report of all the Jews which dwelt there,</VERS>\r\n      <VERS vnumber=\"13\">Came unto me, and stood, and said unto me, Brother Saul, receive thy sight. And the same hour I looked up upon him.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">For thou shalt be his witness unto all men of what thou hast seen and heard.</VERS>\r\n      <VERS vnumber=\"16\">And now why tarriest thou? arise, and be baptized, and wash away thy sins, calling on the name of the Lord.</VERS>\r\n      <VERS vnumber=\"17\">And it came to pass, that, when I was come again to Jerusalem, even while I prayed in the temple, I was in a trance;</VERS>\r\n      <VERS vnumber=\"18\">And saw him saying unto me, Make haste, and get thee quickly out of Jerusalem: for they will not receive thy testimony concerning me.</VERS>\r\n      <VERS vnumber=\"19\">And I said, Lord, they know that I imprisoned and beat in every synagogue them that believed on thee:</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And he said unto me, Depart: for I will send thee far hence unto the Gentiles.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And as they cried out, and cast off their clothes, and threw dust into the air,</VERS>\r\n      <VERS vnumber=\"24\">The 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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?</VERS>\r\n      <VERS vnumber=\"26\">When the centurion heard that, he went and told the chief captain, saying, Take heed what thou doest: for this man is a Roman.</VERS>\r\n      <VERS vnumber=\"27\">Then the chief captain came, and said unto him, Tell me, art thou a Roman? He said, Yea.</VERS>\r\n      <VERS vnumber=\"28\">And the chief captain answered, With a great sum obtained I this freedom. And Paul said, But I was free born.</VERS>\r\n      <VERS vnumber=\"29\">Then 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.</VERS>\r\n      <VERS vnumber=\"30\">On 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"23\">\r\n      <VERS vnumber=\"1\">And Paul, earnestly beholding the council, said, Men and brethren, I have lived in all good conscience before God until this day.</VERS>\r\n      <VERS vnumber=\"2\">And the high priest Ananias commanded them that stood by him to smite him on the mouth.</VERS>\r\n      <VERS vnumber=\"3\">Then 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?</VERS>\r\n      <VERS vnumber=\"4\">And they that stood by said, Revilest thou God's high priest?</VERS>\r\n      <VERS vnumber=\"5\">Then 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.</VERS>\r\n      <VERS vnumber=\"6\">But 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.</VERS>\r\n      <VERS vnumber=\"7\">And when he had so said, there arose a dissension between the Pharisees and the Sadducees: and the multitude was divided.</VERS>\r\n      <VERS vnumber=\"8\">For the Sadducees say that there is no resurrection, neither angel, nor spirit: but the Pharisees confess both.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And they were more than forty which had made this conspiracy.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">Now 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.</VERS>\r\n      <VERS vnumber=\"16\">And when Paul's sister's son heard of their lying in wait, he went and entered into the castle, and told Paul.</VERS>\r\n      <VERS vnumber=\"17\">Then 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.</VERS>\r\n      <VERS vnumber=\"18\">So 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.</VERS>\r\n      <VERS vnumber=\"19\">Then 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?</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">But 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.</VERS>\r\n      <VERS vnumber=\"22\">So 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.</VERS>\r\n      <VERS vnumber=\"23\">And 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;</VERS>\r\n      <VERS vnumber=\"24\">And provide them beasts, that they may set Paul on, and bring him safe unto Felix the governor.</VERS>\r\n      <VERS vnumber=\"25\">And he wrote a letter after this manner:</VERS>\r\n      <VERS vnumber=\"26\">Claudius Lysias unto the most excellent governor Felix sendeth greeting.</VERS>\r\n      <VERS vnumber=\"27\">This 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.</VERS>\r\n      <VERS vnumber=\"28\">And when I would have known the cause wherefore they accused him, I brought him forth into their council:</VERS>\r\n      <VERS vnumber=\"29\">Whom I perceived to be accused of questions of their law, but to have nothing laid to his charge worthy of death or of bonds.</VERS>\r\n      <VERS vnumber=\"30\">And 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.</VERS>\r\n      <VERS vnumber=\"31\">Then the soldiers, as it was commanded them, took Paul, and brought him by night to Antipatris.</VERS>\r\n      <VERS vnumber=\"32\">On the morrow they left the horsemen to go with him, and returned to the castle:</VERS>\r\n      <VERS vnumber=\"33\">Who, when they came to Caesarea, and delivered the epistle to the governor, presented Paul also before him.</VERS>\r\n      <VERS vnumber=\"34\">And when the governor had read the letter, he asked of what province he was. And when he understood that he was of Cilicia;</VERS>\r\n      <VERS vnumber=\"35\">I will hear thee, said he, when thine accusers are also come. And he commanded him to be kept in Herod's judgment hall.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"24\">\r\n      <VERS vnumber=\"1\">And after five days Ananias the high priest descended with the elders, and with a certain orator named Tertullus, who informed the governor against Paul.</VERS>\r\n      <VERS vnumber=\"2\">And 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,</VERS>\r\n      <VERS vnumber=\"3\">We accept it always, and in all places, most noble Felix, with all thankfulness.</VERS>\r\n      <VERS vnumber=\"4\">Notwithstanding, that I be not further tedious unto thee, I pray thee that thou wouldest hear us of thy clemency a few words.</VERS>\r\n      <VERS vnumber=\"5\">For 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:</VERS>\r\n      <VERS vnumber=\"6\">Who also hath gone about to profane the temple: whom we took, and would have judged according to our law.</VERS>\r\n      <VERS vnumber=\"7\">But the chief captain Lysias came upon us, and with great violence took him away out of our hands,</VERS>\r\n      <VERS vnumber=\"8\">Commanding his accusers to come unto thee: by examining of whom thyself mayest take knowledge of all these things, whereof we accuse him.</VERS>\r\n      <VERS vnumber=\"9\">And the Jews also assented, saying that these things were so.</VERS>\r\n      <VERS vnumber=\"10\">Then 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:</VERS>\r\n      <VERS vnumber=\"11\">Because that thou mayest understand, that there are yet but twelve days since I went up to Jerusalem for to worship.</VERS>\r\n      <VERS vnumber=\"12\">And they neither found me in the temple disputing with any man, neither raising up the people, neither in the synagogues, nor in the city:</VERS>\r\n      <VERS vnumber=\"13\">Neither can they prove the things whereof they now accuse me.</VERS>\r\n      <VERS vnumber=\"14\">But 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:</VERS>\r\n      <VERS vnumber=\"15\">And have hope toward God, which they themselves also allow, that there shall be a resurrection of the dead, both of the just and unjust.</VERS>\r\n      <VERS vnumber=\"16\">And herein do I exercise myself, to have always a conscience void of offence toward God, and toward men.</VERS>\r\n      <VERS vnumber=\"17\">Now after many years I came to bring alms to my nation, and offerings.</VERS>\r\n      <VERS vnumber=\"18\">Whereupon certain Jews from Asia found me purified in the temple, neither with multitude, nor with tumult.</VERS>\r\n      <VERS vnumber=\"19\">Who ought to have been here before thee, and object, if they had ought against me.</VERS>\r\n      <VERS vnumber=\"20\">Or else let these same here say, if they have found any evil doing in me, while I stood before the council,</VERS>\r\n      <VERS vnumber=\"21\">Except 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.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">He 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.</VERS>\r\n      <VERS vnumber=\"27\">But after two years Porcius Festus came into Felix' room: and Felix, willing to shew the Jews a pleasure, left Paul bound.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"25\">\r\n      <VERS vnumber=\"1\">Now when Festus was come into the province, after three days he ascended from Caesarea to Jerusalem.</VERS>\r\n      <VERS vnumber=\"2\">Then the high priest and the chief of the Jews informed him against Paul, and besought him,</VERS>\r\n      <VERS vnumber=\"3\">And desired favour against him, that he would send for him to Jerusalem, laying wait in the way to kill him.</VERS>\r\n      <VERS vnumber=\"4\">But Festus answered, that Paul should be kept at Caesarea, and that he himself would depart shortly thither.</VERS>\r\n      <VERS vnumber=\"5\">Let them therefore, said he, which among you are able, go down with me, and accuse this man, if there be any wickedness in him.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">While 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.</VERS>\r\n      <VERS vnumber=\"9\">But 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?</VERS>\r\n      <VERS vnumber=\"10\">Then 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.</VERS>\r\n      <VERS vnumber=\"11\">For 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.</VERS>\r\n      <VERS vnumber=\"12\">Then Festus, when he had conferred with the council, answered, Hast thou appealed unto Caesar? unto Caesar shalt thou go.</VERS>\r\n      <VERS vnumber=\"13\">And after certain days king Agrippa and Bernice came unto Caesarea to salute Festus.</VERS>\r\n      <VERS vnumber=\"14\">And 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:</VERS>\r\n      <VERS vnumber=\"15\">About whom, when I was at Jerusalem, the chief priests and the elders of the Jews informed me, desiring to have judgment against him.</VERS>\r\n      <VERS vnumber=\"16\">To 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.</VERS>\r\n      <VERS vnumber=\"17\">Therefore, 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.</VERS>\r\n      <VERS vnumber=\"18\">Against whom when the accusers stood up, they brought none accusation of such things as I supposed:</VERS>\r\n      <VERS vnumber=\"19\">But had certain questions against him of their own superstition, and of one Jesus, which was dead, whom Paul affirmed to be alive.</VERS>\r\n      <VERS vnumber=\"20\">And because I doubted of such manner of questions, I asked him whether he would go to Jerusalem, and there be judged of these matters.</VERS>\r\n      <VERS vnumber=\"21\">But 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.</VERS>\r\n      <VERS vnumber=\"22\">Then Agrippa said unto Festus, I would also hear the man myself. To morrow, said he, thou shalt hear him.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">But 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.</VERS>\r\n      <VERS vnumber=\"26\">Of 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.</VERS>\r\n      <VERS vnumber=\"27\">For it seemeth to me unreasonable to send a prisoner, and not withal to signify the crimes laid against him.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"26\">\r\n      <VERS vnumber=\"1\">Then Agrippa said unto Paul, Thou art permitted to speak for thyself. Then Paul stretched forth the hand, and answered for himself:</VERS>\r\n      <VERS vnumber=\"2\">I 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:</VERS>\r\n      <VERS vnumber=\"3\">Especially 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.</VERS>\r\n      <VERS vnumber=\"4\">My manner of life from my youth, which was at the first among mine own nation at Jerusalem, know all the Jews;</VERS>\r\n      <VERS vnumber=\"5\">Which knew me from the beginning, if they would testify, that after the most straitest sect of our religion I lived a Pharisee.</VERS>\r\n      <VERS vnumber=\"6\">And now I stand and am judged for the hope of the promise made of God unto our fathers:</VERS>\r\n      <VERS vnumber=\"7\">Unto 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.</VERS>\r\n      <VERS vnumber=\"8\">Why should it be thought a thing incredible with you, that God should raise the dead?</VERS>\r\n      <VERS vnumber=\"9\">I verily thought with myself, that I ought to do many things contrary to the name of Jesus of Nazareth.</VERS>\r\n      <VERS vnumber=\"10\">Which 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">Whereupon as I went to Damascus with authority and commission from the chief priests,</VERS>\r\n      <VERS vnumber=\"13\">At 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And I said, Who art thou, Lord? And he said, I am Jesus whom thou persecutest.</VERS>\r\n      <VERS vnumber=\"16\">But 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;</VERS>\r\n      <VERS vnumber=\"17\">Delivering thee from the people, and from the Gentiles, unto whom now I send thee,</VERS>\r\n      <VERS vnumber=\"18\">To 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.</VERS>\r\n      <VERS vnumber=\"19\">Whereupon, O king Agrippa, I was not disobedient unto the heavenly vision:</VERS>\r\n      <VERS vnumber=\"20\">But 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.</VERS>\r\n      <VERS vnumber=\"21\">For these causes the Jews caught me in the temple, and went about to kill me.</VERS>\r\n      <VERS vnumber=\"22\">Having 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:</VERS>\r\n      <VERS vnumber=\"23\">That 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.</VERS>\r\n      <VERS vnumber=\"24\">And as he thus spake for himself, Festus said with a loud voice, Paul, thou art beside thyself; much learning doth make thee mad.</VERS>\r\n      <VERS vnumber=\"25\">But he said, I am not mad, most noble Festus; but speak forth the words of truth and soberness.</VERS>\r\n      <VERS vnumber=\"26\">For 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.</VERS>\r\n      <VERS vnumber=\"27\">King Agrippa, believest thou the prophets? I know that thou believest.</VERS>\r\n      <VERS vnumber=\"28\">Then Agrippa said unto Paul, Almost thou persuadest me to be a Christian.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">And when he had thus spoken, the king rose up, and the governor, and Bernice, and they that sat with them:</VERS>\r\n      <VERS vnumber=\"31\">And when they were gone aside, they talked between themselves, saying, This man doeth nothing worthy of death or of bonds.</VERS>\r\n      <VERS vnumber=\"32\">Then said Agrippa unto Festus, This man might have been set at liberty, if he had not appealed unto Caesar.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"27\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And the next day we touched at Sidon. And Julius courteously entreated Paul, and gave him liberty to go unto his friends to refresh himself.</VERS>\r\n      <VERS vnumber=\"4\">And when we had launched from thence, we sailed under Cyprus, because the winds were contrary.</VERS>\r\n      <VERS vnumber=\"5\">And when we had sailed over the sea of Cilicia and Pamphylia, we came to Myra, a city of Lycia.</VERS>\r\n      <VERS vnumber=\"6\">And there the centurion found a ship of Alexandria sailing into Italy; and he put us therein.</VERS>\r\n      <VERS vnumber=\"7\">And 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;</VERS>\r\n      <VERS vnumber=\"8\">And, hardly passing it, came unto a place which is called The fair havens; nigh whereunto was the city of Lasea.</VERS>\r\n      <VERS vnumber=\"9\">Now when much time was spent, and when sailing was now dangerous, because the fast was now already past, Paul admonished them,</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">Nevertheless the centurion believed the master and the owner of the ship, more than those things which were spoken by Paul.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And when the south wind blew softly, supposing that they had obtained their purpose, loosing thence, they sailed close by Crete.</VERS>\r\n      <VERS vnumber=\"14\">But not long after there arose against it a tempestuous wind, called Euroclydon.</VERS>\r\n      <VERS vnumber=\"15\">And when the ship was caught, and could not bear up into the wind, we let her drive.</VERS>\r\n      <VERS vnumber=\"16\">And running under a certain island which is called Clauda, we had much work to come by the boat:</VERS>\r\n      <VERS vnumber=\"17\">Which 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.</VERS>\r\n      <VERS vnumber=\"18\">And we being exceedingly tossed with a tempest, the next day they lightened the ship;</VERS>\r\n      <VERS vnumber=\"19\">And the third day we cast out with our own hands the tackling of the ship.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">But 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.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">For there stood by me this night the angel of God, whose I am, and whom I serve,</VERS>\r\n      <VERS vnumber=\"24\">Saying, Fear not, Paul; thou must be brought before Caesar: and, lo, God hath given thee all them that sail with thee.</VERS>\r\n      <VERS vnumber=\"25\">Wherefore, sirs, be of good cheer: for I believe God, that it shall be even as it was told me.</VERS>\r\n      <VERS vnumber=\"26\">Howbeit we must be cast upon a certain island.</VERS>\r\n      <VERS vnumber=\"27\">But 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;</VERS>\r\n      <VERS vnumber=\"28\">And sounded, and found it twenty fathoms: and when they had gone a little further, they sounded again, and found it fifteen fathoms.</VERS>\r\n      <VERS vnumber=\"29\">Then fearing lest we should have fallen upon rocks, they cast four anchors out of the stern, and wished for the day.</VERS>\r\n      <VERS vnumber=\"30\">And 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,</VERS>\r\n      <VERS vnumber=\"31\">Paul said to the centurion and to the soldiers, Except these abide in the ship, ye cannot be saved.</VERS>\r\n      <VERS vnumber=\"32\">Then the soldiers cut off the ropes of the boat, and let her fall off.</VERS>\r\n      <VERS vnumber=\"33\">And 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.</VERS>\r\n      <VERS vnumber=\"34\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">Then were they all of good cheer, and they also took some meat.</VERS>\r\n      <VERS vnumber=\"37\">And we were in all in the ship two hundred threescore and sixteen souls.</VERS>\r\n      <VERS vnumber=\"38\">And when they had eaten enough, they lightened the ship, and cast out the wheat into the sea.</VERS>\r\n      <VERS vnumber=\"39\">And 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.</VERS>\r\n      <VERS vnumber=\"40\">And 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.</VERS>\r\n      <VERS vnumber=\"41\">And 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.</VERS>\r\n      <VERS vnumber=\"42\">And the soldiers' counsel was to kill the prisoners, lest any of them should swim out, and escape.</VERS>\r\n      <VERS vnumber=\"43\">But 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:</VERS>\r\n      <VERS vnumber=\"44\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"28\">\r\n      <VERS vnumber=\"1\">And when they were escaped, then they knew that the island was called Melita.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And he shook off the beast into the fire, and felt no harm.</VERS>\r\n      <VERS vnumber=\"6\">Howbeit 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.</VERS>\r\n      <VERS vnumber=\"7\">In 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">So when this was done, others also, which had diseases in the island, came, and were healed:</VERS>\r\n      <VERS vnumber=\"10\">Who also honoured us with many honours; and when we departed, they laded us with such things as were necessary.</VERS>\r\n      <VERS vnumber=\"11\">And after three months we departed in a ship of Alexandria, which had wintered in the isle, whose sign was Castor and Pollux.</VERS>\r\n      <VERS vnumber=\"12\">And landing at Syracuse, we tarried there three days.</VERS>\r\n      <VERS vnumber=\"13\">And 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:</VERS>\r\n      <VERS vnumber=\"14\">Where we found brethren, and were desired to tarry with them seven days: and so we went toward Rome.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">Who, when they had examined me, would have let me go, because there was no cause of death in me.</VERS>\r\n      <VERS vnumber=\"19\">But when the Jews spake against it, I was constrained to appeal unto Caesar; not that I had ought to accuse my nation of.</VERS>\r\n      <VERS vnumber=\"20\">For 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">But we desire to hear of thee what thou thinkest: for as concerning this sect, we know that every where it is spoken against.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And some believed the things which were spoken, and some believed not.</VERS>\r\n      <VERS vnumber=\"25\">And 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,</VERS>\r\n      <VERS vnumber=\"26\">Saying, Go unto this people, and say, Hearing ye shall hear, and shall not understand; and seeing ye shall see, and not perceive:</VERS>\r\n      <VERS vnumber=\"27\">For 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.</VERS>\r\n      <VERS vnumber=\"28\">Be it known therefore unto you, that the salvation of God is sent unto the Gentiles, and that they will hear it.</VERS>\r\n      <VERS vnumber=\"29\">And when he had said these words, the Jews departed, and had great reasoning among themselves.</VERS>\r\n      <VERS vnumber=\"30\">And Paul dwelt two whole years in his own hired house, and received all that came in unto him,</VERS>\r\n      <VERS vnumber=\"31\">Preaching the kingdom of God, and teaching those things which concern the Lord Jesus Christ, with all confidence, no man forbidding him.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"45\" bname=\"Romans\" bsname=\"Rom\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">Paul, a servant of Jesus Christ, called to be an apostle, separated unto the gospel of God,</VERS>\r\n      <VERS vnumber=\"2\">Which he had promised afore by his prophets in the holy scriptures,)</VERS>\r\n      <VERS vnumber=\"3\">Concerning his Son Jesus Christ our Lord, which was made of the seed of David according to the flesh;</VERS>\r\n      <VERS vnumber=\"4\">And declared to be the Son of God with power, according to the spirit of holiness, by the resurrection from the dead:</VERS>\r\n      <VERS vnumber=\"5\">By whom we have received grace and apostleship, for obedience to the faith among all nations, for his name:</VERS>\r\n      <VERS vnumber=\"6\">Among whom are ye also the called of Jesus Christ:</VERS>\r\n      <VERS vnumber=\"7\">To 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.</VERS>\r\n      <VERS vnumber=\"8\">First, I thank my God through Jesus Christ for you all, that your faith is spoken of throughout the whole world.</VERS>\r\n      <VERS vnumber=\"9\">For 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;</VERS>\r\n      <VERS vnumber=\"10\">Making request, if by any means now at length I might have a prosperous journey by the will of God to come unto you.</VERS>\r\n      <VERS vnumber=\"11\">For I long to see you, that I may impart unto you some spiritual gift, to the end ye may be established;</VERS>\r\n      <VERS vnumber=\"12\">That is, that I may be comforted together with you by the mutual faith both of you and me.</VERS>\r\n      <VERS vnumber=\"13\">Now 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.</VERS>\r\n      <VERS vnumber=\"14\">I am debtor both to the Greeks, and to the Barbarians; both to the wise, and to the unwise.</VERS>\r\n      <VERS vnumber=\"15\">So, as much as in me is, I am ready to preach the gospel to you that are at Rome also.</VERS>\r\n      <VERS vnumber=\"16\">For 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.</VERS>\r\n      <VERS vnumber=\"17\">For therein is the righteousness of God revealed from faith to faith: as it is written, The just shall live by faith.</VERS>\r\n      <VERS vnumber=\"18\">For the wrath of God is revealed from heaven against all ungodliness and unrighteousness of men, who hold the truth in unrighteousness;</VERS>\r\n      <VERS vnumber=\"19\">Because that which may be known of God is manifest in them; for God hath shewed it unto them.</VERS>\r\n      <VERS vnumber=\"20\">For 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:</VERS>\r\n      <VERS vnumber=\"21\">Because 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.</VERS>\r\n      <VERS vnumber=\"22\">Professing themselves to be wise, they became fools,</VERS>\r\n      <VERS vnumber=\"23\">And changed the glory of the uncorruptible God into an image made like to corruptible man, and to birds, and fourfooted beasts, and creeping things.</VERS>\r\n      <VERS vnumber=\"24\">Wherefore God also gave them up to uncleanness through the lusts of their own hearts, to dishonour their own bodies between themselves:</VERS>\r\n      <VERS vnumber=\"25\">Who changed the truth of God into a lie, and worshipped and served the creature more than the Creator, who is blessed for ever. Amen.</VERS>\r\n      <VERS vnumber=\"26\">For this cause God gave them up unto vile affections: for even their women did change the natural use into that which is against nature:</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And 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;</VERS>\r\n      <VERS vnumber=\"29\">Being filled with all unrighteousness, fornication, wickedness, covetousness, maliciousness; full of envy, murder, debate, deceit, malignity; whisperers,</VERS>\r\n      <VERS vnumber=\"30\">Backbiters, haters of God, despiteful, proud, boasters, inventors of evil things, disobedient to parents,</VERS>\r\n      <VERS vnumber=\"31\">Without understanding, covenantbreakers, without natural affection, implacable, unmerciful:</VERS>\r\n      <VERS vnumber=\"32\">Who 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"2\">But we are sure that the judgment of God is according to truth against them which commit such things.</VERS>\r\n      <VERS vnumber=\"3\">And thinkest thou this, O man, that judgest them which do such things, and doest the same, that thou shalt escape the judgment of God?</VERS>\r\n      <VERS vnumber=\"4\">Or despisest thou the riches of his goodness and forbearance and longsuffering; not knowing that the goodness of God leadeth thee to repentance?</VERS>\r\n      <VERS vnumber=\"5\">But after thy hardness and impenitent heart treasurest up unto thyself wrath against the day of wrath and revelation of the righteous judgment of God;</VERS>\r\n      <VERS vnumber=\"6\">Who will render to every man according to his deeds:</VERS>\r\n      <VERS vnumber=\"7\">To them who by patient continuance in well doing seek for glory and honour and immortality, eternal life:</VERS>\r\n      <VERS vnumber=\"8\">But unto them that are contentious, and do not obey the truth, but obey unrighteousness, indignation and wrath,</VERS>\r\n      <VERS vnumber=\"9\">Tribulation and anguish, upon every soul of man that doeth evil, of the Jew first, and also of the Gentile;</VERS>\r\n      <VERS vnumber=\"10\">But glory, honour, and peace, to every man that worketh good, to the Jew first, and also to the Gentile:</VERS>\r\n      <VERS vnumber=\"11\">For there is no respect of persons with God.</VERS>\r\n      <VERS vnumber=\"12\">For 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;</VERS>\r\n      <VERS vnumber=\"13\">For not the hearers of the law are just before God, but the doers of the law shall be justified.</VERS>\r\n      <VERS vnumber=\"14\">For 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:</VERS>\r\n      <VERS vnumber=\"15\">Which 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;)</VERS>\r\n      <VERS vnumber=\"16\">In the day when God shall judge the secrets of men by Jesus Christ according to my gospel.</VERS>\r\n      <VERS vnumber=\"17\">Behold, thou art called a Jew, and restest in the law, and makest thy boast of God,</VERS>\r\n      <VERS vnumber=\"18\">And knowest his will, and approvest the things that are more excellent, being instructed out of the law;</VERS>\r\n      <VERS vnumber=\"19\">And art confident that thou thyself art a guide of the blind, a light of them which are in darkness,</VERS>\r\n      <VERS vnumber=\"20\">An instructor of the foolish, a teacher of babes, which hast the form of knowledge and of the truth in the law.</VERS>\r\n      <VERS vnumber=\"21\">Thou therefore which teachest another, teachest thou not thyself? thou that preachest a man should not steal, dost thou steal?</VERS>\r\n      <VERS vnumber=\"22\">Thou that sayest a man should not commit adultery, dost thou commit adultery? thou that abhorrest idols, dost thou commit sacrilege?</VERS>\r\n      <VERS vnumber=\"23\">Thou that makest thy boast of the law, through breaking the law dishonourest thou God?</VERS>\r\n      <VERS vnumber=\"24\">For the name of God is blasphemed among the Gentiles through you, as it is written.</VERS>\r\n      <VERS vnumber=\"25\">For circumcision verily profiteth, if thou keep the law: but if thou be a breaker of the law, thy circumcision is made uncircumcision.</VERS>\r\n      <VERS vnumber=\"26\">Therefore if the uncircumcision keep the righteousness of the law, shall not his uncircumcision be counted for circumcision?</VERS>\r\n      <VERS vnumber=\"27\">And shall not uncircumcision which is by nature, if it fulfil the law, judge thee, who by the letter and circumcision dost transgress the law?</VERS>\r\n      <VERS vnumber=\"28\">For he is not a Jew, which is one outwardly; neither is that circumcision, which is outward in the flesh:</VERS>\r\n      <VERS vnumber=\"29\">But 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">What advantage then hath the Jew? or what profit is there of circumcision?</VERS>\r\n      <VERS vnumber=\"2\">Much every way: chiefly, because that unto them were committed the oracles of God.</VERS>\r\n      <VERS vnumber=\"3\">For what if some did not believe? shall their unbelief make the faith of God without effect?</VERS>\r\n      <VERS vnumber=\"4\">God 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.</VERS>\r\n      <VERS vnumber=\"5\">But if our unrighteousness commend the righteousness of God, what shall we say? Is God unrighteous who taketh vengeance? (I speak as a man)</VERS>\r\n      <VERS vnumber=\"6\">God forbid: for then how shall God judge the world?</VERS>\r\n      <VERS vnumber=\"7\">For if the truth of God hath more abounded through my lie unto his glory; why yet am I also judged as a sinner?</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">What 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;</VERS>\r\n      <VERS vnumber=\"10\">As it is written, There is none righteous, no, not one:</VERS>\r\n      <VERS vnumber=\"11\">There is none that understandeth, there is none that seeketh after God.</VERS>\r\n      <VERS vnumber=\"12\">They are all gone out of the way, they are together become unprofitable; there is none that doeth good, no, not one.</VERS>\r\n      <VERS vnumber=\"13\">Their throat is an open sepulchre; with their tongues they have used deceit; the poison of asps is under their lips:</VERS>\r\n      <VERS vnumber=\"14\">Whose mouth is full of cursing and bitterness:</VERS>\r\n      <VERS vnumber=\"15\">Their feet are swift to shed blood:</VERS>\r\n      <VERS vnumber=\"16\">Destruction and misery are in their ways:</VERS>\r\n      <VERS vnumber=\"17\">And the way of peace have they not known:</VERS>\r\n      <VERS vnumber=\"18\">There is no fear of God before their eyes.</VERS>\r\n      <VERS vnumber=\"19\">Now 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.</VERS>\r\n      <VERS vnumber=\"20\">Therefore by the deeds of the law there shall no flesh be justified in his sight: for by the law is the knowledge of sin.</VERS>\r\n      <VERS vnumber=\"21\">But now the righteousness of God without the law is manifested, being witnessed by the law and the prophets;</VERS>\r\n      <VERS vnumber=\"22\">Even the righteousness of God which is by faith of Jesus Christ unto all and upon all them that believe: for there is no difference:</VERS>\r\n      <VERS vnumber=\"23\">For all have sinned, and come short of the glory of God;</VERS>\r\n      <VERS vnumber=\"24\">Being justified freely by his grace through the redemption that is in Christ Jesus:</VERS>\r\n      <VERS vnumber=\"25\">Whom 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;</VERS>\r\n      <VERS vnumber=\"26\">To declare, I say, at this time his righteousness: that he might be just, and the justifier of him which believeth in Jesus.</VERS>\r\n      <VERS vnumber=\"27\">Where is boasting then? It is excluded. By what law? of works? Nay: but by the law of faith.</VERS>\r\n      <VERS vnumber=\"28\">Therefore we conclude that a man is justified by faith without the deeds of the law.</VERS>\r\n      <VERS vnumber=\"29\">Is he the God of the Jews only? is he not also of the Gentiles? Yes, of the Gentiles also:</VERS>\r\n      <VERS vnumber=\"30\">Seeing it is one God, which shall justify the circumcision by faith, and uncircumcision through faith.</VERS>\r\n      <VERS vnumber=\"31\">Do we then make void the law through faith? God forbid: yea, we establish the law.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">What shall we say then that Abraham our father, as pertaining to the flesh, hath found?</VERS>\r\n      <VERS vnumber=\"2\">For if Abraham were justified by works, he hath whereof to glory; but not before God.</VERS>\r\n      <VERS vnumber=\"3\">For what saith the scripture? Abraham believed God, and it was counted unto him for righteousness.</VERS>\r\n      <VERS vnumber=\"4\">Now to him that worketh is the reward not reckoned of grace, but of debt.</VERS>\r\n      <VERS vnumber=\"5\">But to him that worketh not, but believeth on him that justifieth the ungodly, his faith is counted for righteousness.</VERS>\r\n      <VERS vnumber=\"6\">Even as David also describeth the blessedness of the man, unto whom God imputeth righteousness without works,</VERS>\r\n      <VERS vnumber=\"7\">Saying, Blessed are they whose iniquities are forgiven, and whose sins are covered.</VERS>\r\n      <VERS vnumber=\"8\">Blessed is the man to whom the Lord will not impute sin.</VERS>\r\n      <VERS vnumber=\"9\">Cometh this blessedness then upon the circumcision only, or upon the uncircumcision also? for we say that faith was reckoned to Abraham for righteousness.</VERS>\r\n      <VERS vnumber=\"10\">How was it then reckoned? when he was in circumcision, or in uncircumcision? Not in circumcision, but in uncircumcision.</VERS>\r\n      <VERS vnumber=\"11\">And 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:</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">For 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.</VERS>\r\n      <VERS vnumber=\"14\">For if they which are of the law be heirs, faith is made void, and the promise made of none effect:</VERS>\r\n      <VERS vnumber=\"15\">Because the law worketh wrath: for where no law is, there is no transgression.</VERS>\r\n      <VERS vnumber=\"16\">Therefore 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,</VERS>\r\n      <VERS vnumber=\"17\">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.</VERS>\r\n      <VERS vnumber=\"18\">Who 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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 Sara's womb:</VERS>\r\n      <VERS vnumber=\"20\">He staggered not at the promise of God through unbelief; but was strong in faith, giving glory to God;</VERS>\r\n      <VERS vnumber=\"21\">And being fully persuaded that, what he had promised, he was able also to perform.</VERS>\r\n      <VERS vnumber=\"22\">And therefore it was imputed to him for righteousness.</VERS>\r\n      <VERS vnumber=\"23\">Now it was not written for his sake alone, that it was imputed to him;</VERS>\r\n      <VERS vnumber=\"24\">But for us also, to whom it shall be imputed, if we believe on him that raised up Jesus our Lord from the dead;</VERS>\r\n      <VERS vnumber=\"25\">Who was delivered for our offences, and was raised again for our justification.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">Therefore being justified by faith, we have peace with God through our Lord Jesus Christ:</VERS>\r\n      <VERS vnumber=\"2\">By whom also we have access by faith into this grace wherein we stand, and rejoice in hope of the glory of God.</VERS>\r\n      <VERS vnumber=\"3\">And not only so, but we glory in tribulations also: knowing that tribulation worketh patience;</VERS>\r\n      <VERS vnumber=\"4\">And patience, experience; and experience, hope:</VERS>\r\n      <VERS vnumber=\"5\">And hope maketh not ashamed; because the love of God is shed abroad in our hearts by the Holy Ghost which is given unto us.</VERS>\r\n      <VERS vnumber=\"6\">For when we were yet without strength, in due time Christ died for the ungodly.</VERS>\r\n      <VERS vnumber=\"7\">For scarcely for a righteous man will one die: yet peradventure for a good man some would even dare to die.</VERS>\r\n      <VERS vnumber=\"8\">But God commendeth his love toward us, in that, while we were yet sinners, Christ died for us.</VERS>\r\n      <VERS vnumber=\"9\">Much more then, being now justified by his blood, we shall be saved from wrath through him.</VERS>\r\n      <VERS vnumber=\"10\">For 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.</VERS>\r\n      <VERS vnumber=\"11\">And not only so, but we also joy in God through our Lord Jesus Christ, by whom we have now received the atonement.</VERS>\r\n      <VERS vnumber=\"12\">Wherefore, 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:</VERS>\r\n      <VERS vnumber=\"13\">For until the law sin was in the world: but sin is not imputed when there is no law.</VERS>\r\n      <VERS vnumber=\"14\">Nevertheless 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.</VERS>\r\n      <VERS vnumber=\"15\">But 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">For 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.)</VERS>\r\n      <VERS vnumber=\"18\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"19\">For as by one man's disobedience many were made sinners, so by the obedience of one shall many be made righteous.</VERS>\r\n      <VERS vnumber=\"20\">Moreover the law entered, that the offence might abound. But where sin abounded, grace did much more abound:</VERS>\r\n      <VERS vnumber=\"21\">That as sin hath reigned unto death, even so might grace reign through righteousness unto eternal life by Jesus Christ our Lord.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">What shall we say then? Shall we continue in sin, that grace may abound?</VERS>\r\n      <VERS vnumber=\"2\">God forbid. How shall we, that are dead to sin, live any longer therein?</VERS>\r\n      <VERS vnumber=\"3\">Know ye not, that so many of us as were baptized into Jesus Christ were baptized into his death?</VERS>\r\n      <VERS vnumber=\"4\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"5\">For if we have been planted together in the likeness of his death, we shall be also in the likeness of his resurrection:</VERS>\r\n      <VERS vnumber=\"6\">Knowing this, that our old man is crucified with him, that the body of sin might be destroyed, that henceforth we should not serve sin.</VERS>\r\n      <VERS vnumber=\"7\">For he that is dead is freed from sin.</VERS>\r\n      <VERS vnumber=\"8\">Now if we be dead with Christ, we believe that we shall also live with him:</VERS>\r\n      <VERS vnumber=\"9\">Knowing that Christ being raised from the dead dieth no more; death hath no more dominion over him.</VERS>\r\n      <VERS vnumber=\"10\">For in that he died, he died unto sin once: but in that he liveth, he liveth unto God.</VERS>\r\n      <VERS vnumber=\"11\">Likewise reckon ye also yourselves to be dead indeed unto sin, but alive unto God through Jesus Christ our Lord.</VERS>\r\n      <VERS vnumber=\"12\">Let not sin therefore reign in your mortal body, that ye should obey it in the lusts thereof.</VERS>\r\n      <VERS vnumber=\"13\">Neither 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.</VERS>\r\n      <VERS vnumber=\"14\">For sin shall not have dominion over you: for ye are not under the law, but under grace.</VERS>\r\n      <VERS vnumber=\"15\">What then? shall we sin, because we are not under the law, but under grace? God forbid.</VERS>\r\n      <VERS vnumber=\"16\">Know 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?</VERS>\r\n      <VERS vnumber=\"17\">But 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.</VERS>\r\n      <VERS vnumber=\"18\">Being then made free from sin, ye became the servants of righteousness.</VERS>\r\n      <VERS vnumber=\"19\">I 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.</VERS>\r\n      <VERS vnumber=\"20\">For when ye were the servants of sin, ye were free from righteousness.</VERS>\r\n      <VERS vnumber=\"21\">What fruit had ye then in those things whereof ye are now ashamed? for the end of those things is death.</VERS>\r\n      <VERS vnumber=\"22\">But now being made free from sin, and become servants to God, ye have your fruit unto holiness, and the end everlasting life.</VERS>\r\n      <VERS vnumber=\"23\">For the wages of sin is death; but the gift of God is eternal life through Jesus Christ our Lord.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">Know 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?</VERS>\r\n      <VERS vnumber=\"2\">For 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.</VERS>\r\n      <VERS vnumber=\"3\">So 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.</VERS>\r\n      <VERS vnumber=\"4\">Wherefore, 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.</VERS>\r\n      <VERS vnumber=\"5\">For 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.</VERS>\r\n      <VERS vnumber=\"6\">But 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.</VERS>\r\n      <VERS vnumber=\"7\">What 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.</VERS>\r\n      <VERS vnumber=\"8\">But sin, taking occasion by the commandment, wrought in me all manner of concupiscence. For without the law sin was dead.</VERS>\r\n      <VERS vnumber=\"9\">For I was alive without the law once: but when the commandment came, sin revived, and I died.</VERS>\r\n      <VERS vnumber=\"10\">And the commandment, which was ordained to life, I found to be unto death.</VERS>\r\n      <VERS vnumber=\"11\">For sin, taking occasion by the commandment, deceived me, and by it slew me.</VERS>\r\n      <VERS vnumber=\"12\">Wherefore the law is holy, and the commandment holy, and just, and good.</VERS>\r\n      <VERS vnumber=\"13\">Was 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.</VERS>\r\n      <VERS vnumber=\"14\">For we know that the law is spiritual: but I am carnal, sold under sin.</VERS>\r\n      <VERS vnumber=\"15\">For that which I do I allow not: for what I would, that do I not; but what I hate, that do I.</VERS>\r\n      <VERS vnumber=\"16\">If then I do that which I would not, I consent unto the law that it is good.</VERS>\r\n      <VERS vnumber=\"17\">Now then it is no more I that do it, but sin that dwelleth in me.</VERS>\r\n      <VERS vnumber=\"18\">For 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.</VERS>\r\n      <VERS vnumber=\"19\">For the good that I would I do not: but the evil which I would not, that I do.</VERS>\r\n      <VERS vnumber=\"20\">Now if I do that I would not, it is no more I that do it, but sin that dwelleth in me.</VERS>\r\n      <VERS vnumber=\"21\">I find then a law, that, when I would do good, evil is present with me.</VERS>\r\n      <VERS vnumber=\"22\">For I delight in the law of God after the inward man:</VERS>\r\n      <VERS vnumber=\"23\">But 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.</VERS>\r\n      <VERS vnumber=\"24\">O wretched man that I am! who shall deliver me from the body of this death?</VERS>\r\n      <VERS vnumber=\"25\">I 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">There is therefore now no condemnation to them which are in Christ Jesus, who walk not after the flesh, but after the Spirit.</VERS>\r\n      <VERS vnumber=\"2\">For the law of the Spirit of life in Christ Jesus hath made me free from the law of sin and death.</VERS>\r\n      <VERS vnumber=\"3\">For 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:</VERS>\r\n      <VERS vnumber=\"4\">That the righteousness of the law might be fulfilled in us, who walk not after the flesh, but after the Spirit.</VERS>\r\n      <VERS vnumber=\"5\">For 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.</VERS>\r\n      <VERS vnumber=\"6\">For to be carnally minded is death; but to be spiritually minded is life and peace.</VERS>\r\n      <VERS vnumber=\"7\">Because the carnal mind is enmity against God: for it is not subject to the law of God, neither indeed can be.</VERS>\r\n      <VERS vnumber=\"8\">So then they that are in the flesh cannot please God.</VERS>\r\n      <VERS vnumber=\"9\">But 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.</VERS>\r\n      <VERS vnumber=\"10\">And if Christ be in you, the body is dead because of sin; but the Spirit is life because of righteousness.</VERS>\r\n      <VERS vnumber=\"11\">But 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.</VERS>\r\n      <VERS vnumber=\"12\">Therefore, brethren, we are debtors, not to the flesh, to live after the flesh.</VERS>\r\n      <VERS vnumber=\"13\">For 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.</VERS>\r\n      <VERS vnumber=\"14\">For as many as are led by the Spirit of God, they are the sons of God.</VERS>\r\n      <VERS vnumber=\"15\">For ye have not received the spirit of bondage again to fear; but ye have received the Spirit of adoption, whereby we cry, Abba, Father.</VERS>\r\n      <VERS vnumber=\"16\">The Spirit itself beareth witness with our spirit, that we are the children of God:</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">For I reckon that the sufferings of this present time are not worthy to be compared with the glory which shall be revealed in us.</VERS>\r\n      <VERS vnumber=\"19\">For the earnest expectation of the creature waiteth for the manifestation of the sons of God.</VERS>\r\n      <VERS vnumber=\"20\">For the creature was made subject to vanity, not willingly, but by reason of him who hath subjected the same in hope,</VERS>\r\n      <VERS vnumber=\"21\">Because the creature itself also shall be delivered from the bondage of corruption into the glorious liberty of the children of God.</VERS>\r\n      <VERS vnumber=\"22\">For we know that the whole creation groaneth and travaileth in pain together until now.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">For we are saved by hope: but hope that is seen is not hope: for what a man seeth, why doth he yet hope for?</VERS>\r\n      <VERS vnumber=\"25\">But if we hope for that we see not, then do we with patience wait for it.</VERS>\r\n      <VERS vnumber=\"26\">Likewise 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.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And we know that all things work together for good to them that love God, to them who are the called according to his purpose.</VERS>\r\n      <VERS vnumber=\"29\">For 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.</VERS>\r\n      <VERS vnumber=\"30\">Moreover whom he did predestinate, them he also called: and whom he called, them he also justified: and whom he justified, them he also glorified.</VERS>\r\n      <VERS vnumber=\"31\">What shall we then say to these things? If God be for us, who can be against us?</VERS>\r\n      <VERS vnumber=\"32\">He 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?</VERS>\r\n      <VERS vnumber=\"33\">Who shall lay any thing to the charge of God's elect? It is God that justifieth.</VERS>\r\n      <VERS vnumber=\"34\">Who 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.</VERS>\r\n      <VERS vnumber=\"35\">Who shall separate us from the love of Christ? shall tribulation, or distress, or persecution, or famine, or nakedness, or peril, or sword?</VERS>\r\n      <VERS vnumber=\"36\">As it is written, For thy sake we are killed all the day long; we are accounted as sheep for the slaughter.</VERS>\r\n      <VERS vnumber=\"37\">Nay, in all these things we are more than conquerors through him that loved us.</VERS>\r\n      <VERS vnumber=\"38\">For I am persuaded, that neither death, nor life, nor angels, nor principalities, nor powers, nor things present, nor things to come,</VERS>\r\n      <VERS vnumber=\"39\">Nor 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">I say the truth in Christ, I lie not, my conscience also bearing me witness in the Holy Ghost,</VERS>\r\n      <VERS vnumber=\"2\">That I have great heaviness and continual sorrow in my heart.</VERS>\r\n      <VERS vnumber=\"3\">For I could wish that myself were accursed from Christ for my brethren, my kinsmen according to the flesh:</VERS>\r\n      <VERS vnumber=\"4\">Who 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;</VERS>\r\n      <VERS vnumber=\"5\">Whose are the fathers, and of whom as concerning the flesh Christ came, who is over all, God blessed for ever. Amen.</VERS>\r\n      <VERS vnumber=\"6\">Not as though the word of God hath taken none effect. For they are not all Israel, which are of Israel:</VERS>\r\n      <VERS vnumber=\"7\">Neither, because they are the seed of Abraham, are they all children: but, In Isaac shall thy seed be called.</VERS>\r\n      <VERS vnumber=\"8\">That 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.</VERS>\r\n      <VERS vnumber=\"9\">For this is the word of promise, At this time will I come, and Sara shall have a son.</VERS>\r\n      <VERS vnumber=\"10\">And not only this; but when Rebecca also had conceived by one, even by our father Isaac;</VERS>\r\n      <VERS vnumber=\"11\">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;)</VERS>\r\n      <VERS vnumber=\"12\">It was said unto her, The elder shall serve the younger.</VERS>\r\n      <VERS vnumber=\"13\">As it is written, Jacob have I loved, but Esau have I hated.</VERS>\r\n      <VERS vnumber=\"14\">What shall we say then? Is there unrighteousness with God? God forbid.</VERS>\r\n      <VERS vnumber=\"15\">For 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.</VERS>\r\n      <VERS vnumber=\"16\">So then it is not of him that willeth, nor of him that runneth, but of God that sheweth mercy.</VERS>\r\n      <VERS vnumber=\"17\">For 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.</VERS>\r\n      <VERS vnumber=\"18\">Therefore hath he mercy on whom he will have mercy, and whom he will he hardeneth.</VERS>\r\n      <VERS vnumber=\"19\">Thou wilt say then unto me, Why doth he yet find fault? For who hath resisted his will?</VERS>\r\n      <VERS vnumber=\"20\">Nay 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?</VERS>\r\n      <VERS vnumber=\"21\">Hath not the potter power over the clay, of the same lump to make one vessel unto honour, and another unto dishonour?</VERS>\r\n      <VERS vnumber=\"22\">What if God, willing to shew his wrath, and to make his power known, endured with much longsuffering the vessels of wrath fitted to destruction:</VERS>\r\n      <VERS vnumber=\"23\">And that he might make known the riches of his glory on the vessels of mercy, which he had afore prepared unto glory,</VERS>\r\n      <VERS vnumber=\"24\">Even us, whom he hath called, not of the Jews only, but also of the Gentiles?</VERS>\r\n      <VERS vnumber=\"25\">As he saith also in Osee, I will call them my people, which were not my people; and her beloved, which was not beloved.</VERS>\r\n      <VERS vnumber=\"26\">And 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.</VERS>\r\n      <VERS vnumber=\"27\">Esaias also crieth concerning Israel, Though the number of the children of Israel be as the sand of the sea, a remnant shall be saved:</VERS>\r\n      <VERS vnumber=\"28\">For he will finish the work, and cut it short in righteousness: because a short work will the Lord make upon the earth.</VERS>\r\n      <VERS vnumber=\"29\">And 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.</VERS>\r\n      <VERS vnumber=\"30\">What shall we say then? That the Gentiles, which followed not after righteousness, have attained to righteousness, even the righteousness which is of faith.</VERS>\r\n      <VERS vnumber=\"31\">But Israel, which followed after the law of righteousness, hath not attained to the law of righteousness.</VERS>\r\n      <VERS vnumber=\"32\">Wherefore? Because they sought it not by faith, but as it were by the works of the law. For they stumbled at that stumblingstone;</VERS>\r\n      <VERS vnumber=\"33\">As it is written, Behold, I lay in Sion a stumblingstone and rock of offence: and whosoever believeth on him shall not be ashamed.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">Brethren, my heart's desire and prayer to God for Israel is, that they might be saved.</VERS>\r\n      <VERS vnumber=\"2\">For I bear them record that they have a zeal of God, but not according to knowledge.</VERS>\r\n      <VERS vnumber=\"3\">For they being ignorant of God's righteousness, and going about to establish their own righteousness, have not submitted themselves unto the righteousness of God.</VERS>\r\n      <VERS vnumber=\"4\">For Christ is the end of the law for righteousness to every one that believeth.</VERS>\r\n      <VERS vnumber=\"5\">For Moses describeth the righteousness which is of the law, That the man which doeth those things shall live by them.</VERS>\r\n      <VERS vnumber=\"6\">But 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:)</VERS>\r\n      <VERS vnumber=\"7\">Or, Who shall descend into the deep? (that is, to bring up Christ again from the dead.)</VERS>\r\n      <VERS vnumber=\"8\">But 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;</VERS>\r\n      <VERS vnumber=\"9\">That 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.</VERS>\r\n      <VERS vnumber=\"10\">For with the heart man believeth unto righteousness; and with the mouth confession is made unto salvation.</VERS>\r\n      <VERS vnumber=\"11\">For the scripture saith, Whosoever believeth on him shall not be ashamed.</VERS>\r\n      <VERS vnumber=\"12\">For there is no difference between the Jew and the Greek: for the same Lord over all is rich unto all that call upon him.</VERS>\r\n      <VERS vnumber=\"13\">For whosoever shall call upon the name of the Lord shall be saved.</VERS>\r\n      <VERS vnumber=\"14\">How 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?</VERS>\r\n      <VERS vnumber=\"15\">And 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!</VERS>\r\n      <VERS vnumber=\"16\">But they have not all obeyed the gospel. For Esaias saith, Lord, who hath believed our report?</VERS>\r\n      <VERS vnumber=\"17\">So then faith cometh by hearing, and hearing by the word of God.</VERS>\r\n      <VERS vnumber=\"18\">But I say, Have they not heard? Yes verily, their sound went into all the earth, and their words unto the ends of the world.</VERS>\r\n      <VERS vnumber=\"19\">But 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.</VERS>\r\n      <VERS vnumber=\"20\">But 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.</VERS>\r\n      <VERS vnumber=\"21\">But to Israel he saith, All day long I have stretched forth my hands unto a disobedient and gainsaying people.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">I 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.</VERS>\r\n      <VERS vnumber=\"2\">God 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,</VERS>\r\n      <VERS vnumber=\"3\">Lord, they have killed thy prophets, and digged down thine altars; and I am left alone, and they seek my life.</VERS>\r\n      <VERS vnumber=\"4\">But 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.</VERS>\r\n      <VERS vnumber=\"5\">Even so then at this present time also there is a remnant according to the election of grace.</VERS>\r\n      <VERS vnumber=\"6\">And if by grace, then is it no more of works: otherwise grace is no more grace. But if it be of works, then is it no more grace: otherwise work is no more work.</VERS>\r\n      <VERS vnumber=\"7\">What then? Israel hath not obtained that which he seeketh for; but the election hath obtained it, and the rest were blinded</VERS>\r\n      <VERS vnumber=\"8\">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.</VERS>\r\n      <VERS vnumber=\"9\">And David saith, Let their table be made a snare, and a trap, and a stumblingblock, and a recompence unto them:</VERS>\r\n      <VERS vnumber=\"10\">Let their eyes be darkened, that they may not see, and bow down their back alway.</VERS>\r\n      <VERS vnumber=\"11\">I 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.</VERS>\r\n      <VERS vnumber=\"12\">Now 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?</VERS>\r\n      <VERS vnumber=\"13\">For I speak to you Gentiles, inasmuch as I am the apostle of the Gentiles, I magnify mine office:</VERS>\r\n      <VERS vnumber=\"14\">If by any means I may provoke to emulation them which are my flesh, and might save some of them.</VERS>\r\n      <VERS vnumber=\"15\">For if the casting away of them be the reconciling of the world, what shall the receiving of them be, but life from the dead?</VERS>\r\n      <VERS vnumber=\"16\">For if the firstfruit be holy, the lump is also holy: and if the root be holy, so are the branches.</VERS>\r\n      <VERS vnumber=\"17\">And 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;</VERS>\r\n      <VERS vnumber=\"18\">Boast not against the branches. But if thou boast, thou bearest not the root, but the root thee.</VERS>\r\n      <VERS vnumber=\"19\">Thou wilt say then, The branches were broken off, that I might be graffed in.</VERS>\r\n      <VERS vnumber=\"20\">Well; because of unbelief they were broken off, and thou standest by faith. Be not highminded, but fear:</VERS>\r\n      <VERS vnumber=\"21\">For if God spared not the natural branches, take heed lest he also spare not thee.</VERS>\r\n      <VERS vnumber=\"22\">Behold 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.</VERS>\r\n      <VERS vnumber=\"23\">And they also, if they abide not still in unbelief, shall be graffed in: for God is able to graff them in again.</VERS>\r\n      <VERS vnumber=\"24\">For 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?</VERS>\r\n      <VERS vnumber=\"25\">For 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.</VERS>\r\n      <VERS vnumber=\"26\">And 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:</VERS>\r\n      <VERS vnumber=\"27\">For this is my covenant unto them, when I shall take away their sins.</VERS>\r\n      <VERS vnumber=\"28\">As concerning the gospel, they are enemies for your sakes: but as touching the election, they are beloved for the fathers' sakes.</VERS>\r\n      <VERS vnumber=\"29\">For the gifts and calling of God are without repentance.</VERS>\r\n      <VERS vnumber=\"30\">For as ye in times past have not believed God, yet have now obtained mercy through their unbelief:</VERS>\r\n      <VERS vnumber=\"31\">Even so have these also now not believed, that through your mercy they also may obtain mercy.</VERS>\r\n      <VERS vnumber=\"32\">For God hath concluded them all in unbelief, that he might have mercy upon all.</VERS>\r\n      <VERS vnumber=\"33\">O the depth of the riches both of the wisdom and knowledge of God! how unsearchable are his judgments, and his ways past finding out!</VERS>\r\n      <VERS vnumber=\"34\">For who hath known the mind of the Lord? or who hath been his counsellor?</VERS>\r\n      <VERS vnumber=\"35\">Or who hath first given to him, and it shall be recompensed unto him again?</VERS>\r\n      <VERS vnumber=\"36\">For of him, and through him, and to him, are all things: to whom be glory for ever. Amen.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">I 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">For 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.</VERS>\r\n      <VERS vnumber=\"4\">For as we have many members in one body, and all members have not the same office:</VERS>\r\n      <VERS vnumber=\"5\">So we, being many, are one body in Christ, and every one members one of another.</VERS>\r\n      <VERS vnumber=\"6\">Having then gifts differing according to the grace that is given to us, whether prophecy, let us prophesy according to the proportion of faith;</VERS>\r\n      <VERS vnumber=\"7\">Or ministry, let us wait on our ministering: or he that teacheth, on teaching;</VERS>\r\n      <VERS vnumber=\"8\">Or 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.</VERS>\r\n      <VERS vnumber=\"9\">Let love be without dissimulation. Abhor that which is evil; cleave to that which is good.</VERS>\r\n      <VERS vnumber=\"10\">Be kindly affectioned one to another with brotherly love; in honour preferring one another;</VERS>\r\n      <VERS vnumber=\"11\">Not slothful in business; fervent in spirit; serving the Lord;</VERS>\r\n      <VERS vnumber=\"12\">Rejoicing in hope; patient in tribulation; continuing instant in prayer;</VERS>\r\n      <VERS vnumber=\"13\">Distributing to the necessity of saints; given to hospitality.</VERS>\r\n      <VERS vnumber=\"14\">Bless them which persecute you: bless, and curse not.</VERS>\r\n      <VERS vnumber=\"15\">Rejoice with them that do rejoice, and weep with them that weep.</VERS>\r\n      <VERS vnumber=\"16\">Be 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.</VERS>\r\n      <VERS vnumber=\"17\">Recompense to no man evil for evil. Provide things honest in the sight of all men.</VERS>\r\n      <VERS vnumber=\"18\">If it be possible, as much as lieth in you, live peaceably with all men.</VERS>\r\n      <VERS vnumber=\"19\">Dearly beloved, avenge not yourselves, but rather give place unto wrath: for it is written, Vengeance is mine; I will repay, saith the Lord.</VERS>\r\n      <VERS vnumber=\"20\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"21\">Be not overcome of evil, but overcome evil with good.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">Let every soul be subject unto the higher powers. For there is no power but of God: the powers that be are ordained of God.</VERS>\r\n      <VERS vnumber=\"2\">Whosoever therefore resisteth the power, resisteth the ordinance of God: and they that resist shall receive to themselves damnation.</VERS>\r\n      <VERS vnumber=\"3\">For 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:</VERS>\r\n      <VERS vnumber=\"4\">For 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.</VERS>\r\n      <VERS vnumber=\"5\">Wherefore ye must needs be subject, not only for wrath, but also for conscience sake.</VERS>\r\n      <VERS vnumber=\"6\">For for this cause pay ye tribute also: for they are God's ministers, attending continually upon this very thing.</VERS>\r\n      <VERS vnumber=\"7\">Render therefore to all their dues: tribute to whom tribute is due; custom to whom custom; fear to whom fear; honour to whom honour.</VERS>\r\n      <VERS vnumber=\"8\">Owe no man any thing, but to love one another: for he that loveth another hath fulfilled the law.</VERS>\r\n      <VERS vnumber=\"9\">For 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.</VERS>\r\n      <VERS vnumber=\"10\">Love worketh no ill to his neighbour: therefore love is the fulfilling of the law.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">The 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.</VERS>\r\n      <VERS vnumber=\"13\">Let us walk honestly, as in the day; not in rioting and drunkenness, not in chambering and wantonness, not in strife and envying.</VERS>\r\n      <VERS vnumber=\"14\">But put ye on the Lord Jesus Christ, and make not provision for the flesh, to fulfil the lusts thereof.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">Him that is weak in the faith receive ye, but not to doubtful disputations.</VERS>\r\n      <VERS vnumber=\"2\">For one believeth that he may eat all things: another, who is weak, eateth herbs.</VERS>\r\n      <VERS vnumber=\"3\">Let 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.</VERS>\r\n      <VERS vnumber=\"4\">Who 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.</VERS>\r\n      <VERS vnumber=\"5\">One man esteemeth one day above another: another esteemeth every day alike. Let every man be fully persuaded in his own mind.</VERS>\r\n      <VERS vnumber=\"6\">He 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.</VERS>\r\n      <VERS vnumber=\"7\">For none of us liveth to himself, and no man dieth to himself.</VERS>\r\n      <VERS vnumber=\"8\">For 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.</VERS>\r\n      <VERS vnumber=\"9\">For to this end Christ both died, and rose, and revived, that he might be Lord both of the dead and living.</VERS>\r\n      <VERS vnumber=\"10\">But 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.</VERS>\r\n      <VERS vnumber=\"11\">For it is written, As I live, saith the Lord, every knee shall bow to me, and every tongue shall confess to God.</VERS>\r\n      <VERS vnumber=\"12\">So then every one of us shall give account of himself to God.</VERS>\r\n      <VERS vnumber=\"13\">Let 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.</VERS>\r\n      <VERS vnumber=\"14\">I 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.</VERS>\r\n      <VERS vnumber=\"15\">But if thy brother be grieved with thy meat, now walkest thou not charitably. Destroy not him with thy meat, for whom Christ died.</VERS>\r\n      <VERS vnumber=\"16\">Let not then your good be evil spoken of:</VERS>\r\n      <VERS vnumber=\"17\">For the kingdom of God is not meat and drink; but righteousness, and peace, and joy in the Holy Ghost.</VERS>\r\n      <VERS vnumber=\"18\">For he that in these things serveth Christ is acceptable to God, and approved of men.</VERS>\r\n      <VERS vnumber=\"19\">Let us therefore follow after the things which make for peace, and things wherewith one may edify another.</VERS>\r\n      <VERS vnumber=\"20\">For meat destroy not the work of God. All things indeed are pure; but it is evil for that man who eateth with offence.</VERS>\r\n      <VERS vnumber=\"21\">It is good neither to eat flesh, nor to drink wine, nor any thing whereby thy brother stumbleth, or is offended, or is made weak.</VERS>\r\n      <VERS vnumber=\"22\">Hast thou faith? have it to thyself before God. Happy is he that condemneth not himself in that thing which he alloweth.</VERS>\r\n      <VERS vnumber=\"23\">And he that doubteth is damned if he eat, because he eateth not of faith: for whatsoever is not of faith is sin.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">We then that are strong ought to bear the infirmities of the weak, and not to please ourselves.</VERS>\r\n      <VERS vnumber=\"2\">Let every one of us please his neighbour for his good to edification.</VERS>\r\n      <VERS vnumber=\"3\">For even Christ pleased not himself; but, as it is written, The reproaches of them that reproached thee fell on me.</VERS>\r\n      <VERS vnumber=\"4\">For whatsoever things were written aforetime were written for our learning, that we through patience and comfort of the scriptures might have hope.</VERS>\r\n      <VERS vnumber=\"5\">Now the God of patience and consolation grant you to be likeminded one toward another according to Christ Jesus:</VERS>\r\n      <VERS vnumber=\"6\">That ye may with one mind and one mouth glorify God, even the Father of our Lord Jesus Christ.</VERS>\r\n      <VERS vnumber=\"7\">Wherefore receive ye one another, as Christ also received us to the glory of God.</VERS>\r\n      <VERS vnumber=\"8\">Now I say that Jesus Christ was a minister of the circumcision for the truth of God, to confirm the promises made unto the fathers:</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And again he saith, Rejoice, ye Gentiles, with his people.</VERS>\r\n      <VERS vnumber=\"11\">And again, Praise the Lord, all ye Gentiles; and laud him, all ye people.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">Now 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">Nevertheless, 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,</VERS>\r\n      <VERS vnumber=\"16\">That 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.</VERS>\r\n      <VERS vnumber=\"17\">I have therefore whereof I may glory through Jesus Christ in those things which pertain to God.</VERS>\r\n      <VERS vnumber=\"18\">For 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,</VERS>\r\n      <VERS vnumber=\"19\">Through 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.</VERS>\r\n      <VERS vnumber=\"20\">Yea, so have I strived to preach the gospel, not where Christ was named, lest I should build upon another man's foundation:</VERS>\r\n      <VERS vnumber=\"21\">But as it is written, To whom he was not spoken of, they shall see: and they that have not heard shall understand.</VERS>\r\n      <VERS vnumber=\"22\">For which cause also I have been much hindered from coming to you.</VERS>\r\n      <VERS vnumber=\"23\">But now having no more place in these parts, and having a great desire these many years to come unto you;</VERS>\r\n      <VERS vnumber=\"24\">Whensoever 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.</VERS>\r\n      <VERS vnumber=\"25\">But now I go unto Jerusalem to minister unto the saints.</VERS>\r\n      <VERS vnumber=\"26\">For it hath pleased them of Macedonia and Achaia to make a certain contribution for the poor saints which are at Jerusalem.</VERS>\r\n      <VERS vnumber=\"27\">It 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.</VERS>\r\n      <VERS vnumber=\"28\">When therefore I have performed this, and have sealed to them this fruit, I will come by you into Spain.</VERS>\r\n      <VERS vnumber=\"29\">And I am sure that, when I come unto you, I shall come in the fulness of the blessing of the gospel of Christ.</VERS>\r\n      <VERS vnumber=\"30\">Now 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;</VERS>\r\n      <VERS vnumber=\"31\">That 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;</VERS>\r\n      <VERS vnumber=\"32\">That I may come unto you with joy by the will of God, and may with you be refreshed.</VERS>\r\n      <VERS vnumber=\"33\">Now the God of peace be with you all. Amen.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">I commend unto you Phebe our sister, which is a servant of the church which is at Cenchrea:</VERS>\r\n      <VERS vnumber=\"2\">That 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.</VERS>\r\n      <VERS vnumber=\"3\">Greet Priscilla and Aquila my helpers in Christ Jesus:</VERS>\r\n      <VERS vnumber=\"4\">Who have for my life laid down their own necks: unto whom not only I give thanks, but also all the churches of the Gentiles.</VERS>\r\n      <VERS vnumber=\"5\">Likewise greet the church that is in their house. Salute my wellbeloved Epaenetus, who is the firstfruits of Achaia unto Christ.</VERS>\r\n      <VERS vnumber=\"6\">Greet Mary, who bestowed much labour on us.</VERS>\r\n      <VERS vnumber=\"7\">Salute Andronicus and Junia, my kinsmen, and my fellowprisoners, who are of note among the apostles, who also were in Christ before me.</VERS>\r\n      <VERS vnumber=\"8\">Greet Amplias my beloved in the Lord.</VERS>\r\n      <VERS vnumber=\"9\">Salute Urbane, our helper in Christ, and Stachys my beloved.</VERS>\r\n      <VERS vnumber=\"10\">Salute Apelles approved in Christ. Salute them which are of Aristobulus' household.</VERS>\r\n      <VERS vnumber=\"11\">Salute Herodion my kinsman. Greet them that be of the household of Narcissus, which are in the Lord.</VERS>\r\n      <VERS vnumber=\"12\">Salute Tryphena and Tryphosa, who labour in the Lord. Salute the beloved Persis, which laboured much in the Lord.</VERS>\r\n      <VERS vnumber=\"13\">Salute Rufus chosen in the Lord, and his mother and mine.</VERS>\r\n      <VERS vnumber=\"14\">Salute Asyncritus, Phlegon, Hermas, Patrobas, Hermes, and the brethren which are with them.</VERS>\r\n      <VERS vnumber=\"15\">Salute Philologus, and Julia, Nereus, and his sister, and Olympas, and all the saints which are with them.</VERS>\r\n      <VERS vnumber=\"16\">Salute one another with an holy kiss. The churches of Christ salute you.</VERS>\r\n      <VERS vnumber=\"17\">Now I beseech you, brethren, mark them which cause divisions and offences contrary to the doctrine which ye have learned; and avoid them.</VERS>\r\n      <VERS vnumber=\"18\">For 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.</VERS>\r\n      <VERS vnumber=\"19\">For 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.</VERS>\r\n      <VERS vnumber=\"20\">And the God of peace shall bruise Satan under your feet shortly. The grace of our Lord Jesus Christ be with you. Amen.</VERS>\r\n      <VERS vnumber=\"21\">Timotheus my workfellow, and Lucius, and Jason, and Sosipater, my kinsmen, salute you.</VERS>\r\n      <VERS vnumber=\"22\">I Tertius, who wrote this epistle, salute you in the Lord.</VERS>\r\n      <VERS vnumber=\"23\">Gaius mine host, and of the whole church, saluteth you. Erastus the chamberlain of the city saluteth you, and Quartus a brother.</VERS>\r\n      <VERS vnumber=\"24\">The grace of our Lord Jesus Christ be with you all. Amen.</VERS>\r\n      <VERS vnumber=\"25\">Now 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,</VERS>\r\n      <VERS vnumber=\"26\">But 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:</VERS>\r\n      <VERS vnumber=\"27\">To God only wise, be glory through Jesus Christ for ever. Amen.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"46\" bname=\"1 Corinthians\" bsname=\"1Cor\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <CAPTION vref=\"1\">Written to the Romans from Corinthus, and sent by Phebe servant of the church at Cenchrea.</CAPTION>\r\n      <CAPTION vref=\"1\">The first epistle to the Corinthians was written from Philippi by Stephanas and Fortunatus and Achaicus and Timotheus.</CAPTION>\r\n      <VERS vnumber=\"1\">Paul, called to be an apostle of Jesus Christ through the will of God, and Sosthenes our brother,</VERS>\r\n      <VERS vnumber=\"2\">Unto 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 theirs and ours:</VERS>\r\n      <VERS vnumber=\"3\">Grace be unto you, and peace, from God our Father, and from the Lord Jesus Christ.</VERS>\r\n      <VERS vnumber=\"4\">I thank my God always on your behalf, for the grace of God which is given you by Jesus Christ;</VERS>\r\n      <VERS vnumber=\"5\">That in every thing ye are enriched by him, in all utterance, and in all knowledge;</VERS>\r\n      <VERS vnumber=\"6\">Even as the testimony of Christ was confirmed in you:</VERS>\r\n      <VERS vnumber=\"7\">So that ye come behind in no gift; waiting for the coming of our Lord Jesus Christ:</VERS>\r\n      <VERS vnumber=\"8\">Who shall also confirm you unto the end, that ye may be blameless in the day of our Lord Jesus Christ.</VERS>\r\n      <VERS vnumber=\"9\">God is faithful, by whom ye were called unto the fellowship of his Son Jesus Christ our Lord.</VERS>\r\n      <VERS vnumber=\"10\">Now 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.</VERS>\r\n      <VERS vnumber=\"11\">For 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.</VERS>\r\n      <VERS vnumber=\"12\">Now 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.</VERS>\r\n      <VERS vnumber=\"13\">Is Christ divided? was Paul crucified for you? or were ye baptized in the name of Paul?</VERS>\r\n      <VERS vnumber=\"14\">I thank God that I baptized none of you, but Crispus and Gaius;</VERS>\r\n      <VERS vnumber=\"15\">Lest any should say that I had baptized in mine own name.</VERS>\r\n      <VERS vnumber=\"16\">And I baptized also the household of Stephanas: besides, I know not whether I baptized any other.</VERS>\r\n      <VERS vnumber=\"17\">For 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.</VERS>\r\n      <VERS vnumber=\"18\">For the preaching of the cross is to them that perish foolishness; but unto us which are saved it is the power of God.</VERS>\r\n      <VERS vnumber=\"19\">For it is written, I will destroy the wisdom of the wise, and will bring to nothing the understanding of the prudent.</VERS>\r\n      <VERS vnumber=\"20\">Where is the wise? where is the scribe? where is the disputer of this world? hath not God made foolish the wisdom of this world?</VERS>\r\n      <VERS vnumber=\"21\">For 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.</VERS>\r\n      <VERS vnumber=\"22\">For the Jews require a sign, and the Greeks seek after wisdom:</VERS>\r\n      <VERS vnumber=\"23\">But we preach Christ crucified, unto the Jews a stumblingblock, and unto the Greeks foolishness;</VERS>\r\n      <VERS vnumber=\"24\">But unto them which are called, both Jews and Greeks, Christ the power of God, and the wisdom of God.</VERS>\r\n      <VERS vnumber=\"25\">Because the foolishness of God is wiser than men; and the weakness of God is stronger than men.</VERS>\r\n      <VERS vnumber=\"26\">For ye see your calling, brethren, how that not many wise men after the flesh, not many mighty, not many noble, are called:</VERS>\r\n      <VERS vnumber=\"27\">But 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;</VERS>\r\n      <VERS vnumber=\"28\">And 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:</VERS>\r\n      <VERS vnumber=\"29\">That no flesh should glory in his presence.</VERS>\r\n      <VERS vnumber=\"30\">But of him are ye in Christ Jesus, who of God is made unto us wisdom, and righteousness, and sanctification, and redemption:</VERS>\r\n      <VERS vnumber=\"31\">That, according as it is written, He that glorieth, let him glory in the Lord.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">And I, brethren, when I came to you, came not with excellency of speech or of wisdom, declaring unto you the testimony of God.</VERS>\r\n      <VERS vnumber=\"2\">For I determined not to know any thing among you, save Jesus Christ, and him crucified.</VERS>\r\n      <VERS vnumber=\"3\">And I was with you in weakness, and in fear, and in much trembling.</VERS>\r\n      <VERS vnumber=\"4\">And my speech and my preaching was not with enticing words of man's wisdom, but in demonstration of the Spirit and of power:</VERS>\r\n      <VERS vnumber=\"5\">That your faith should not stand in the wisdom of men, but in the power of God.</VERS>\r\n      <VERS vnumber=\"6\">Howbeit 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:</VERS>\r\n      <VERS vnumber=\"7\">But we speak the wisdom of God in a mystery, even the hidden wisdom, which God ordained before the world unto our glory:</VERS>\r\n      <VERS vnumber=\"8\">Which none of the princes of this world knew: for had they known it, they would not have crucified the Lord of glory.</VERS>\r\n      <VERS vnumber=\"9\">But 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.</VERS>\r\n      <VERS vnumber=\"10\">But God hath revealed them unto us by his Spirit: for the Spirit searcheth all things, yea, the deep things of God.</VERS>\r\n      <VERS vnumber=\"11\">For 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.</VERS>\r\n      <VERS vnumber=\"12\">Now 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.</VERS>\r\n      <VERS vnumber=\"13\">Which things also we speak, not in the words which man's wisdom teacheth, but which the Holy Ghost teacheth; comparing spiritual things with spiritual.</VERS>\r\n      <VERS vnumber=\"14\">But 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.</VERS>\r\n      <VERS vnumber=\"15\">But he that is spiritual judgeth all things, yet he himself is judged of no man.</VERS>\r\n      <VERS vnumber=\"16\">For who hath known the mind of the Lord, that he may instruct him? But we have the mind of Christ.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">And I, brethren, could not speak unto you as unto spiritual, but as unto carnal, even as unto babes in Christ.</VERS>\r\n      <VERS vnumber=\"2\">I have fed you with milk, and not with meat: for hitherto ye were not able to bear it, neither yet now are ye able.</VERS>\r\n      <VERS vnumber=\"3\">For ye are yet carnal: for whereas there is among you envying, and strife, and divisions, are ye not carnal, and walk as men?</VERS>\r\n      <VERS vnumber=\"4\">For while one saith, I am of Paul; and another, I am of Apollos; are ye not carnal?</VERS>\r\n      <VERS vnumber=\"5\">Who then is Paul, and who is Apollos, but ministers by whom ye believed, even as the Lord gave to every man?</VERS>\r\n      <VERS vnumber=\"6\">I have planted, Apollos watered; but God gave the increase.</VERS>\r\n      <VERS vnumber=\"7\">So then neither is he that planteth any thing, neither he that watereth; but God that giveth the increase.</VERS>\r\n      <VERS vnumber=\"8\">Now he that planteth and he that watereth are one: and every man shall receive his own reward according to his own labour.</VERS>\r\n      <VERS vnumber=\"9\">For we are labourers together with God: ye are God's husbandry, ye are God's building.</VERS>\r\n      <VERS vnumber=\"10\">According 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.</VERS>\r\n      <VERS vnumber=\"11\">For other foundation can no man lay than that is laid, which is Jesus Christ.</VERS>\r\n      <VERS vnumber=\"12\">Now if any man build upon this foundation gold, silver, precious stones, wood, hay, stubble;</VERS>\r\n      <VERS vnumber=\"13\">Every 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.</VERS>\r\n      <VERS vnumber=\"14\">If any man's work abide which he hath built thereupon, he shall receive a reward.</VERS>\r\n      <VERS vnumber=\"15\">If any man's work shall be burned, he shall suffer loss: but he himself shall be saved; yet so as by fire.</VERS>\r\n      <VERS vnumber=\"16\">Know ye not that ye are the temple of God, and that the Spirit of God dwelleth in you?</VERS>\r\n      <VERS vnumber=\"17\">If any man defile the temple of God, him shall God destroy; for the temple of God is holy, which temple ye are.</VERS>\r\n      <VERS vnumber=\"18\">Let 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.</VERS>\r\n      <VERS vnumber=\"19\">For the wisdom of this world is foolishness with God. For it is written, He taketh the wise in their own craftiness.</VERS>\r\n      <VERS vnumber=\"20\">And again, The Lord knoweth the thoughts of the wise, that they are vain.</VERS>\r\n      <VERS vnumber=\"21\">Therefore let no man glory in men. For all things are yours;</VERS>\r\n      <VERS vnumber=\"22\">Whether Paul, or Apollos, or Cephas, or the world, or life, or death, or things present, or things to come; all are yours;</VERS>\r\n      <VERS vnumber=\"23\">And ye are Christ's; and Christ is God's.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">Let a man so account of us, as of the ministers of Christ, and stewards of the mysteries of God.</VERS>\r\n      <VERS vnumber=\"2\">Moreover it is required in stewards, that a man be found faithful.</VERS>\r\n      <VERS vnumber=\"3\">But 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.</VERS>\r\n      <VERS vnumber=\"4\">For I know nothing by myself; yet am I not hereby justified: but he that judgeth me is the Lord.</VERS>\r\n      <VERS vnumber=\"5\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">For 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?</VERS>\r\n      <VERS vnumber=\"8\">Now 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.</VERS>\r\n      <VERS vnumber=\"9\">For 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.</VERS>\r\n      <VERS vnumber=\"10\">We 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.</VERS>\r\n      <VERS vnumber=\"11\">Even unto this present hour we both hunger, and thirst, and are naked, and are buffeted, and have no certain dwellingplace;</VERS>\r\n      <VERS vnumber=\"12\">And labour, working with our own hands: being reviled, we bless; being persecuted, we suffer it:</VERS>\r\n      <VERS vnumber=\"13\">Being defamed, we intreat: we are made as the filth of the world, and are the offscouring of all things unto this day.</VERS>\r\n      <VERS vnumber=\"14\">I write not these things to shame you, but as my beloved sons I warn you.</VERS>\r\n      <VERS vnumber=\"15\">For though ye have ten thousand instructors in Christ, yet have ye not many fathers: for in Christ Jesus I have begotten you through the gospel.</VERS>\r\n      <VERS vnumber=\"16\">Wherefore I beseech you, be ye followers of me.</VERS>\r\n      <VERS vnumber=\"17\">For 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.</VERS>\r\n      <VERS vnumber=\"18\">Now some are puffed up, as though I would not come to you.</VERS>\r\n      <VERS vnumber=\"19\">But 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.</VERS>\r\n      <VERS vnumber=\"20\">For the kingdom of God is not in word, but in power.</VERS>\r\n      <VERS vnumber=\"21\">What will ye? shall I come unto you with a rod, or in love, and in the spirit of meekness?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">It 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.</VERS>\r\n      <VERS vnumber=\"2\">And ye are puffed up, and have not rather mourned, that he that hath done this deed might be taken away from among you.</VERS>\r\n      <VERS vnumber=\"3\">For 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,</VERS>\r\n      <VERS vnumber=\"4\">In the name of our Lord Jesus Christ, when ye are gathered together, and my spirit, with the power of our Lord Jesus Christ,</VERS>\r\n      <VERS vnumber=\"5\">To 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.</VERS>\r\n      <VERS vnumber=\"6\">Your glorying is not good. Know ye not that a little leaven leaveneth the whole lump?</VERS>\r\n      <VERS vnumber=\"7\">Purge 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:</VERS>\r\n      <VERS vnumber=\"8\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"9\">I wrote unto you in an epistle not to company with fornicators:</VERS>\r\n      <VERS vnumber=\"10\">Yet 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.</VERS>\r\n      <VERS vnumber=\"11\">But 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 idolater, or a railer, or a drunkard, or an extortioner; with such an one no not to eat.</VERS>\r\n      <VERS vnumber=\"12\">For what have I to do to judge them also that are without? do not ye judge them that are within?</VERS>\r\n      <VERS vnumber=\"13\">But them that are without God judgeth. Therefore put away from among yourselves that wicked person.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">Dare any of you, having a matter against another, go to law before the unjust, and not before the saints?</VERS>\r\n      <VERS vnumber=\"2\">Do 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?</VERS>\r\n      <VERS vnumber=\"3\">Know ye not that we shall judge angels? how much more things that pertain to this life?</VERS>\r\n      <VERS vnumber=\"4\">If then ye have judgments of things pertaining to this life, set them to judge who are least esteemed in the church.</VERS>\r\n      <VERS vnumber=\"5\">I 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?</VERS>\r\n      <VERS vnumber=\"6\">But brother goeth to law with brother, and that before the unbelievers.</VERS>\r\n      <VERS vnumber=\"7\">Now 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?</VERS>\r\n      <VERS vnumber=\"8\">Nay, ye do wrong, and defraud, and that your brethren.</VERS>\r\n      <VERS vnumber=\"9\">Know 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,</VERS>\r\n      <VERS vnumber=\"10\">Nor thieves, nor covetous, nor drunkards, nor revilers, nor extortioners, shall inherit the kingdom of God.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">All 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.</VERS>\r\n      <VERS vnumber=\"13\">Meats 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.</VERS>\r\n      <VERS vnumber=\"14\">And God hath both raised up the Lord, and will also raise up us by his own power.</VERS>\r\n      <VERS vnumber=\"15\">Know 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.</VERS>\r\n      <VERS vnumber=\"16\">What? know ye not that he which is joined to an harlot is one body? for two, saith he, shall be one flesh.</VERS>\r\n      <VERS vnumber=\"17\">But he that is joined unto the Lord is one spirit.</VERS>\r\n      <VERS vnumber=\"18\">Flee fornication. Every sin that a man doeth is without the body; but he that committeth fornication sinneth against his own body.</VERS>\r\n      <VERS vnumber=\"19\">What? 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?</VERS>\r\n      <VERS vnumber=\"20\">For ye are bought with a price: therefore glorify God in your body, and in your spirit, which are God's.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">Now concerning the things whereof ye wrote unto me: It is good for a man not to touch a woman.</VERS>\r\n      <VERS vnumber=\"2\">Nevertheless, to avoid fornication, let every man have his own wife, and let every woman have her own husband.</VERS>\r\n      <VERS vnumber=\"3\">Let the husband render unto the wife due benevolence: and likewise also the wife unto the husband.</VERS>\r\n      <VERS vnumber=\"4\">The 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.</VERS>\r\n      <VERS vnumber=\"5\">Defraud 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.</VERS>\r\n      <VERS vnumber=\"6\">But I speak this by permission, and not of commandment.</VERS>\r\n      <VERS vnumber=\"7\">For 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.</VERS>\r\n      <VERS vnumber=\"8\">I say therefore to the unmarried and widows, It is good for them if they abide even as I.</VERS>\r\n      <VERS vnumber=\"9\">But if they cannot contain, let them marry: for it is better to marry than to burn.</VERS>\r\n      <VERS vnumber=\"10\">And unto the married I command, yet not I, but the Lord, Let not the wife depart from her husband:</VERS>\r\n      <VERS vnumber=\"11\">But and if she depart, let her remain unmarried, or be reconciled to her husband: and let not the husband put away his wife.</VERS>\r\n      <VERS vnumber=\"12\">But 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.</VERS>\r\n      <VERS vnumber=\"13\">And the woman which hath an husband that believeth not, and if he be pleased to dwell with her, let her not leave him.</VERS>\r\n      <VERS vnumber=\"14\">For 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.</VERS>\r\n      <VERS vnumber=\"15\">But 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.</VERS>\r\n      <VERS vnumber=\"16\">For what knowest thou, O wife, whether thou shalt save thy husband? or how knowest thou, O man, whether thou shalt save thy wife?</VERS>\r\n      <VERS vnumber=\"17\">But 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.</VERS>\r\n      <VERS vnumber=\"18\">Is any man called being circumcised? let him not become uncircumcised. Is any called in uncircumcision? let him not be circumcised.</VERS>\r\n      <VERS vnumber=\"19\">Circumcision is nothing, and uncircumcision is nothing, but the keeping of the commandments of God.</VERS>\r\n      <VERS vnumber=\"20\">Let every man abide in the same calling wherein he was called.</VERS>\r\n      <VERS vnumber=\"21\">Art thou called being a servant? care not for it: but if thou mayest be made free, use it rather.</VERS>\r\n      <VERS vnumber=\"22\">For 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.</VERS>\r\n      <VERS vnumber=\"23\">Ye are bought with a price; be not ye the servants of men.</VERS>\r\n      <VERS vnumber=\"24\">Brethren, let every man, wherein he is called, therein abide with God.</VERS>\r\n      <VERS vnumber=\"25\">Now 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.</VERS>\r\n      <VERS vnumber=\"26\">I suppose therefore that this is good for the present distress, I say, that it is good for a man so to be.</VERS>\r\n      <VERS vnumber=\"27\">Art thou bound unto a wife? seek not to be loosed. Art thou loosed from a wife? seek not a wife.</VERS>\r\n      <VERS vnumber=\"28\">But 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.</VERS>\r\n      <VERS vnumber=\"29\">But this I say, brethren, the time is short: it remaineth, that both they that have wives be as though they had none;</VERS>\r\n      <VERS vnumber=\"30\">And 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;</VERS>\r\n      <VERS vnumber=\"31\">And they that use this world, as not abusing it: for the fashion of this world passeth away.</VERS>\r\n      <VERS vnumber=\"32\">But 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:</VERS>\r\n      <VERS vnumber=\"33\">But he that is married careth for the things that are of the world, how he may please his wife.</VERS>\r\n      <VERS vnumber=\"34\">There 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.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">But 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.</VERS>\r\n      <VERS vnumber=\"37\">Nevertheless 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.</VERS>\r\n      <VERS vnumber=\"38\">So then he that giveth her in marriage doeth well; but he that giveth her not in marriage doeth better.</VERS>\r\n      <VERS vnumber=\"39\">The 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.</VERS>\r\n      <VERS vnumber=\"40\">But she is happier if she so abide, after my judgment: and I think also that I have the Spirit of God.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">Now as touching things offered unto idols, we know that we all have knowledge. Knowledge puffeth up, but charity edifieth.</VERS>\r\n      <VERS vnumber=\"2\">And if any man think that he knoweth any thing, he knoweth nothing yet as he ought to know.</VERS>\r\n      <VERS vnumber=\"3\">But if any man love God, the same is known of him.</VERS>\r\n      <VERS vnumber=\"4\">As 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.</VERS>\r\n      <VERS vnumber=\"5\">For though there be that are called gods, whether in heaven or in earth, (as there be gods many, and lords many,)</VERS>\r\n      <VERS vnumber=\"6\">But 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.</VERS>\r\n      <VERS vnumber=\"7\">Howbeit 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.</VERS>\r\n      <VERS vnumber=\"8\">But meat commendeth us not to God: for neither, if we eat, are we the better; neither, if we eat not, are we the worse.</VERS>\r\n      <VERS vnumber=\"9\">But take heed lest by any means this liberty of yours become a stumblingblock to them that are weak.</VERS>\r\n      <VERS vnumber=\"10\">For 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;</VERS>\r\n      <VERS vnumber=\"11\">And through thy knowledge shall the weak brother perish, for whom Christ died?</VERS>\r\n      <VERS vnumber=\"12\">But when ye sin so against the brethren, and wound their weak conscience, ye sin against Christ.</VERS>\r\n      <VERS vnumber=\"13\">Wherefore, if meat make my brother to offend, I will eat no flesh while the world standeth, lest I make my brother to offend.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">Am I not an apostle? am I not free? have I not seen Jesus Christ our Lord? are not ye my work in the Lord?</VERS>\r\n      <VERS vnumber=\"2\">If I be not an apostle unto others, yet doubtless I am to you: for the seal of mine apostleship are ye in the Lord.</VERS>\r\n      <VERS vnumber=\"3\">Mine answer to them that do examine me is this,</VERS>\r\n      <VERS vnumber=\"4\">Have we not power to eat and to drink?</VERS>\r\n      <VERS vnumber=\"5\">Have we not power to lead about a sister, a wife, as well as other apostles, and as the brethren of the Lord, and Cephas?</VERS>\r\n      <VERS vnumber=\"6\">Or I only and Barnabas, have not we power to forbear working?</VERS>\r\n      <VERS vnumber=\"7\">Who 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?</VERS>\r\n      <VERS vnumber=\"8\">Say I these things as a man? or saith not the law the same also?</VERS>\r\n      <VERS vnumber=\"9\">For 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?</VERS>\r\n      <VERS vnumber=\"10\">Or 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.</VERS>\r\n      <VERS vnumber=\"11\">If we have sown unto you spiritual things, is it a great thing if we shall reap your carnal things?</VERS>\r\n      <VERS vnumber=\"12\">If 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.</VERS>\r\n      <VERS vnumber=\"13\">Do 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?</VERS>\r\n      <VERS vnumber=\"14\">Even so hath the Lord ordained that they which preach the gospel should live of the gospel.</VERS>\r\n      <VERS vnumber=\"15\">But 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.</VERS>\r\n      <VERS vnumber=\"16\">For 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!</VERS>\r\n      <VERS vnumber=\"17\">For if I do this thing willingly, I have a reward: but if against my will, a dispensation of the gospel is committed unto me.</VERS>\r\n      <VERS vnumber=\"18\">What 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.</VERS>\r\n      <VERS vnumber=\"19\">For though I be free from all men, yet have I made myself servant unto all, that I might gain the more.</VERS>\r\n      <VERS vnumber=\"20\">And 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;</VERS>\r\n      <VERS vnumber=\"21\">To 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.</VERS>\r\n      <VERS vnumber=\"22\">To 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.</VERS>\r\n      <VERS vnumber=\"23\">And this I do for the gospel's sake, that I might be partaker thereof with you.</VERS>\r\n      <VERS vnumber=\"24\">Know ye not that they which run in a race run all, but one receiveth the prize? So run, that ye may obtain.</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">I therefore so run, not as uncertainly; so fight I, not as one that beateth the air:</VERS>\r\n      <VERS vnumber=\"27\">But 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">Moreover, brethren, I would not that ye should be ignorant, how that all our fathers were under the cloud, and all passed through the sea;</VERS>\r\n      <VERS vnumber=\"2\">And were all baptized unto Moses in the cloud and in the sea;</VERS>\r\n      <VERS vnumber=\"3\">And did all eat the same spiritual meat;</VERS>\r\n      <VERS vnumber=\"4\">And did all drink the same spiritual drink: for they drank of that spiritual Rock that followed them: and that Rock was Christ.</VERS>\r\n      <VERS vnumber=\"5\">But with many of them God was not well pleased: for they were overthrown in the wilderness.</VERS>\r\n      <VERS vnumber=\"6\">Now these things were our examples, to the intent we should not lust after evil things, as they also lusted.</VERS>\r\n      <VERS vnumber=\"7\">Neither 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.</VERS>\r\n      <VERS vnumber=\"8\">Neither let us commit fornication, as some of them committed, and fell in one day three and twenty thousand.</VERS>\r\n      <VERS vnumber=\"9\">Neither let us tempt Christ, as some of them also tempted, and were destroyed of serpents.</VERS>\r\n      <VERS vnumber=\"10\">Neither murmur ye, as some of them also murmured, and were destroyed of the destroyer.</VERS>\r\n      <VERS vnumber=\"11\">Now all these things happened unto them for ensamples: and they are written for our admonition, upon whom the ends of the world are come.</VERS>\r\n      <VERS vnumber=\"12\">Wherefore let him that thinketh he standeth take heed lest he fall.</VERS>\r\n      <VERS vnumber=\"13\">There 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.</VERS>\r\n      <VERS vnumber=\"14\">Wherefore, my dearly beloved, flee from idolatry.</VERS>\r\n      <VERS vnumber=\"15\">I speak as to wise men; judge ye what I say.</VERS>\r\n      <VERS vnumber=\"16\">The 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?</VERS>\r\n      <VERS vnumber=\"17\">For we being many are one bread, and one body: for we are all partakers of that one bread.</VERS>\r\n      <VERS vnumber=\"18\">Behold Israel after the flesh: are not they which eat of the sacrifices partakers of the altar?</VERS>\r\n      <VERS vnumber=\"19\">What say I then? that the idol is any thing, or that which is offered in sacrifice to idols is any thing?</VERS>\r\n      <VERS vnumber=\"20\">But 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.</VERS>\r\n      <VERS vnumber=\"21\">Ye 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.</VERS>\r\n      <VERS vnumber=\"22\">Do we provoke the Lord to jealousy? are we stronger than he?</VERS>\r\n      <VERS vnumber=\"23\">All things are lawful for me, but all things are not expedient: all things are lawful for me, but all things edify not.</VERS>\r\n      <VERS vnumber=\"24\">Let no man seek his own, but every man another's wealth.</VERS>\r\n      <VERS vnumber=\"25\">Whatsoever is sold in the shambles, that eat, asking no question for conscience sake:</VERS>\r\n      <VERS vnumber=\"26\">For the earth is the Lord's, and the fulness thereof.</VERS>\r\n      <VERS vnumber=\"27\">If 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.</VERS>\r\n      <VERS vnumber=\"28\">But 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:</VERS>\r\n      <VERS vnumber=\"29\">Conscience, I say, not thine own, but of the other: for why is my liberty judged of another man's conscience?</VERS>\r\n      <VERS vnumber=\"30\">For if I by grace be a partaker, why am I evil spoken of for that for which I give thanks?</VERS>\r\n      <VERS vnumber=\"31\">Whether therefore ye eat, or drink, or whatsoever ye do, do all to the glory of God.</VERS>\r\n      <VERS vnumber=\"32\">Give none offence, neither to the Jews, nor to the Gentiles, nor to the church of God:</VERS>\r\n      <VERS vnumber=\"33\">Even as I please all men in all things, not seeking mine own profit, but the profit of many, that they may be saved.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">Be ye followers of me, even as I also am of Christ.</VERS>\r\n      <VERS vnumber=\"2\">Now I praise you, brethren, that ye remember me in all things, and keep the ordinances, as I delivered them to you.</VERS>\r\n      <VERS vnumber=\"3\">But 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.</VERS>\r\n      <VERS vnumber=\"4\">Every man praying or prophesying, having his head covered, dishonoureth his head.</VERS>\r\n      <VERS vnumber=\"5\">But every woman that prayeth or prophesieth with her head uncovered dishonoureth her head: for that is even all one as if she were shaven.</VERS>\r\n      <VERS vnumber=\"6\">For 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.</VERS>\r\n      <VERS vnumber=\"7\">For 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.</VERS>\r\n      <VERS vnumber=\"8\">For the man is not of the woman; but the woman of the man.</VERS>\r\n      <VERS vnumber=\"9\">Neither was the man created for the woman; but the woman for the man.</VERS>\r\n      <VERS vnumber=\"10\">For this cause ought the woman to have power on her head because of the angels.</VERS>\r\n      <VERS vnumber=\"11\">Nevertheless neither is the man without the woman, neither the woman without the man, in the Lord.</VERS>\r\n      <VERS vnumber=\"12\">For as the woman is of the man, even so is the man also by the woman; but all things of God.</VERS>\r\n      <VERS vnumber=\"13\">Judge in yourselves: is it comely that a woman pray unto God uncovered?</VERS>\r\n      <VERS vnumber=\"14\">Doth not even nature itself teach you, that, if a man have long hair, it is a shame unto him?</VERS>\r\n      <VERS vnumber=\"15\">But if a woman have long hair, it is a glory to her: for her hair is given her for a covering.</VERS>\r\n      <VERS vnumber=\"16\">But if any man seem to be contentious, we have no such custom, neither the churches of God.</VERS>\r\n      <VERS vnumber=\"17\">Now in this that I declare unto you I praise you not, that ye come together not for the better, but for the worse.</VERS>\r\n      <VERS vnumber=\"18\">For first of all, when ye come together in the church, I hear that there be divisions among you; and I partly believe it.</VERS>\r\n      <VERS vnumber=\"19\">For there must be also heresies among you, that they which are approved may be made manifest among you.</VERS>\r\n      <VERS vnumber=\"20\">When ye come together therefore into one place, this is not to eat the Lord's supper.</VERS>\r\n      <VERS vnumber=\"21\">For in eating every one taketh before other his own supper: and one is hungry, and another is drunken.</VERS>\r\n      <VERS vnumber=\"22\">What? 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.</VERS>\r\n      <VERS vnumber=\"23\">For 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:</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">After 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.</VERS>\r\n      <VERS vnumber=\"26\">For as often as ye eat this bread, and drink this cup, ye do shew the Lord's death till he come.</VERS>\r\n      <VERS vnumber=\"27\">Wherefore whosoever shall eat this bread, and drink this cup of the Lord, unworthily, shall be guilty of the body and blood of the Lord.</VERS>\r\n      <VERS vnumber=\"28\">But let a man examine himself, and so let him eat of that bread, and drink of that cup.</VERS>\r\n      <VERS vnumber=\"29\">For he that eateth and drinketh unworthily, eateth and drinketh damnation to himself, not discerning the Lord's body.</VERS>\r\n      <VERS vnumber=\"30\">For this cause many are weak and sickly among you, and many sleep.</VERS>\r\n      <VERS vnumber=\"31\">For if we would judge ourselves, we should not be judged.</VERS>\r\n      <VERS vnumber=\"32\">But when we are judged, we are chastened of the Lord, that we should not be condemned with the world.</VERS>\r\n      <VERS vnumber=\"33\">Wherefore, my brethren, when ye come together to eat, tarry one for another.</VERS>\r\n      <VERS vnumber=\"34\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">Now concerning spiritual gifts, brethren, I would not have you ignorant.</VERS>\r\n      <VERS vnumber=\"2\">Ye know that ye were Gentiles, carried away unto these dumb idols, even as ye were led.</VERS>\r\n      <VERS vnumber=\"3\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"4\">Now there are diversities of gifts, but the same Spirit.</VERS>\r\n      <VERS vnumber=\"5\">And there are differences of administrations, but the same Lord.</VERS>\r\n      <VERS vnumber=\"6\">And there are diversities of operations, but it is the same God which worketh all in all.</VERS>\r\n      <VERS vnumber=\"7\">But the manifestation of the Spirit is given to every man to profit withal.</VERS>\r\n      <VERS vnumber=\"8\">For to one is given by the Spirit the word of wisdom; to another the word of knowledge by the same Spirit;</VERS>\r\n      <VERS vnumber=\"9\">To another faith by the same Spirit; to another the gifts of healing by the same Spirit;</VERS>\r\n      <VERS vnumber=\"10\">To 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:</VERS>\r\n      <VERS vnumber=\"11\">But all these worketh that one and the selfsame Spirit, dividing to every man severally as he will.</VERS>\r\n      <VERS vnumber=\"12\">For 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.</VERS>\r\n      <VERS vnumber=\"13\">For 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.</VERS>\r\n      <VERS vnumber=\"14\">For the body is not one member, but many.</VERS>\r\n      <VERS vnumber=\"15\">If the foot shall say, Because I am not the hand, I am not of the body; is it therefore not of the body?</VERS>\r\n      <VERS vnumber=\"16\">And if the ear shall say, Because I am not the eye, I am not of the body; is it therefore not of the body?</VERS>\r\n      <VERS vnumber=\"17\">If the whole body were an eye, where were the hearing? If the whole were hearing, where were the smelling?</VERS>\r\n      <VERS vnumber=\"18\">But now hath God set the members every one of them in the body, as it hath pleased him.</VERS>\r\n      <VERS vnumber=\"19\">And if they were all one member, where were the body?</VERS>\r\n      <VERS vnumber=\"20\">But now are they many members, yet but one body.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">Nay, much more those members of the body, which seem to be more feeble, are necessary:</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">For our comely parts have no need: but God hath tempered the body together, having given more abundant honour to that part which lacked:</VERS>\r\n      <VERS vnumber=\"25\">That there should be no schism in the body; but that the members should have the same care one for another.</VERS>\r\n      <VERS vnumber=\"26\">And whether one member suffer, all the members suffer with it; or one member be honoured, all the members rejoice with it.</VERS>\r\n      <VERS vnumber=\"27\">Now ye are the body of Christ, and members in particular.</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">Are all apostles? are all prophets? are all teachers? are all workers of miracles?</VERS>\r\n      <VERS vnumber=\"30\">Have all the gifts of healing? do all speak with tongues? do all interpret?</VERS>\r\n      <VERS vnumber=\"31\">But covet earnestly the best gifts: and yet shew I unto you a more excellent way.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">Though I speak with the tongues of men and of angels, and have not charity, I am become as sounding brass, or a tinkling cymbal.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">Charity suffereth long, and is kind; charity envieth not; charity vaunteth not itself, is not puffed up,</VERS>\r\n      <VERS vnumber=\"5\">Doth not behave itself unseemly, seeketh not her own, is not easily provoked, thinketh no evil;</VERS>\r\n      <VERS vnumber=\"6\">Rejoiceth not in iniquity, but rejoiceth in the truth;</VERS>\r\n      <VERS vnumber=\"7\">Beareth all things, believeth all things, hopeth all things, endureth all things.</VERS>\r\n      <VERS vnumber=\"8\">Charity 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.</VERS>\r\n      <VERS vnumber=\"9\">For we know in part, and we prophesy in part.</VERS>\r\n      <VERS vnumber=\"10\">But when that which is perfect is come, then that which is in part shall be done away.</VERS>\r\n      <VERS vnumber=\"11\">When 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.</VERS>\r\n      <VERS vnumber=\"12\">For 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.</VERS>\r\n      <VERS vnumber=\"13\">And now abideth faith, hope, charity, these three; but the greatest of these is charity.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">Follow after charity, and desire spiritual gifts, but rather that ye may prophesy.</VERS>\r\n      <VERS vnumber=\"2\">For 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.</VERS>\r\n      <VERS vnumber=\"3\">But he that prophesieth speaketh unto men to edification, and exhortation, and comfort.</VERS>\r\n      <VERS vnumber=\"4\">He that speaketh in an unknown tongue edifieth himself; but he that prophesieth edifieth the church.</VERS>\r\n      <VERS vnumber=\"5\">I 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.</VERS>\r\n      <VERS vnumber=\"6\">Now, 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?</VERS>\r\n      <VERS vnumber=\"7\">And 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?</VERS>\r\n      <VERS vnumber=\"8\">For if the trumpet give an uncertain sound, who shall prepare himself to the battle?</VERS>\r\n      <VERS vnumber=\"9\">So 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.</VERS>\r\n      <VERS vnumber=\"10\">There are, it may be, so many kinds of voices in the world, and none of them is without signification.</VERS>\r\n      <VERS vnumber=\"11\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"12\">Even so ye, forasmuch as ye are zealous of spiritual gifts, seek that ye may excel to the edifying of the church.</VERS>\r\n      <VERS vnumber=\"13\">Wherefore let him that speaketh in an unknown tongue pray that he may interpret.</VERS>\r\n      <VERS vnumber=\"14\">For if I pray in an unknown tongue, my spirit prayeth, but my understanding is unfruitful.</VERS>\r\n      <VERS vnumber=\"15\">What 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.</VERS>\r\n      <VERS vnumber=\"16\">Else 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?</VERS>\r\n      <VERS vnumber=\"17\">For thou verily givest thanks well, but the other is not edified.</VERS>\r\n      <VERS vnumber=\"18\">I thank my God, I speak with tongues more than ye all:</VERS>\r\n      <VERS vnumber=\"19\">Yet 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.</VERS>\r\n      <VERS vnumber=\"20\">Brethren, be not children in understanding: howbeit in malice be ye children, but in understanding be men.</VERS>\r\n      <VERS vnumber=\"21\">In 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.</VERS>\r\n      <VERS vnumber=\"22\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"23\">If 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?</VERS>\r\n      <VERS vnumber=\"24\">But if all prophesy, and there come in one that believeth not, or one unlearned, he is convinced of all, he is judged of all:</VERS>\r\n      <VERS vnumber=\"25\">And 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.</VERS>\r\n      <VERS vnumber=\"26\">How 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.</VERS>\r\n      <VERS vnumber=\"27\">If 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.</VERS>\r\n      <VERS vnumber=\"28\">But if there be no interpreter, let him keep silence in the church; and let him speak to himself, and to God.</VERS>\r\n      <VERS vnumber=\"29\">Let the prophets speak two or three, and let the other judge.</VERS>\r\n      <VERS vnumber=\"30\">If any thing be revealed to another that sitteth by, let the first hold his peace.</VERS>\r\n      <VERS vnumber=\"31\">For ye may all prophesy one by one, that all may learn, and all may be comforted.</VERS>\r\n      <VERS vnumber=\"32\">And the spirits of the prophets are subject to the prophets.</VERS>\r\n      <VERS vnumber=\"33\">For God is not the author of confusion, but of peace, as in all churches of the saints.</VERS>\r\n      <VERS vnumber=\"34\">Let 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.</VERS>\r\n      <VERS vnumber=\"35\">And 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.</VERS>\r\n      <VERS vnumber=\"36\">What? came the word of God out from you? or came it unto you only?</VERS>\r\n      <VERS vnumber=\"37\">If 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.</VERS>\r\n      <VERS vnumber=\"38\">But if any man be ignorant, let him be ignorant.</VERS>\r\n      <VERS vnumber=\"39\">Wherefore, brethren, covet to prophesy, and forbid not to speak with tongues.</VERS>\r\n      <VERS vnumber=\"40\">Let all things be done decently and in order.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">Moreover, brethren, I declare unto you the gospel which I preached unto you, which also ye have received, and wherein ye stand;</VERS>\r\n      <VERS vnumber=\"2\">By which also ye are saved, if ye keep in memory what I preached unto you, unless ye have believed in vain.</VERS>\r\n      <VERS vnumber=\"3\">For I delivered unto you first of all that which I also received, how that Christ died for our sins according to the scriptures;</VERS>\r\n      <VERS vnumber=\"4\">And that he was buried, and that he rose again the third day according to the scriptures:</VERS>\r\n      <VERS vnumber=\"5\">And that he was seen of Cephas, then of the twelve:</VERS>\r\n      <VERS vnumber=\"6\">After 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.</VERS>\r\n      <VERS vnumber=\"7\">After that, he was seen of James; then of all the apostles.</VERS>\r\n      <VERS vnumber=\"8\">And last of all he was seen of me also, as of one born out of due time.</VERS>\r\n      <VERS vnumber=\"9\">For I am the least of the apostles, that am not meet to be called an apostle, because I persecuted the church of God.</VERS>\r\n      <VERS vnumber=\"10\">But 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.</VERS>\r\n      <VERS vnumber=\"11\">Therefore whether it were I or they, so we preach, and so ye believed.</VERS>\r\n      <VERS vnumber=\"12\">Now if Christ be preached that he rose from the dead, how say some among you that there is no resurrection of the dead?</VERS>\r\n      <VERS vnumber=\"13\">But if there be no resurrection of the dead, then is Christ not risen:</VERS>\r\n      <VERS vnumber=\"14\">And if Christ be not risen, then is our preaching vain, and your faith is also vain.</VERS>\r\n      <VERS vnumber=\"15\">Yea, 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.</VERS>\r\n      <VERS vnumber=\"16\">For if the dead rise not, then is not Christ raised:</VERS>\r\n      <VERS vnumber=\"17\">And if Christ be not raised, your faith is vain; ye are yet in your sins.</VERS>\r\n      <VERS vnumber=\"18\">Then they also which are fallen asleep in Christ are perished.</VERS>\r\n      <VERS vnumber=\"19\">If in this life only we have hope in Christ, we are of all men most miserable.</VERS>\r\n      <VERS vnumber=\"20\">But now is Christ risen from the dead, and become the firstfruits of them that slept.</VERS>\r\n      <VERS vnumber=\"21\">For since by man came death, by man came also the resurrection of the dead.</VERS>\r\n      <VERS vnumber=\"22\">For as in Adam all die, even so in Christ shall all be made alive.</VERS>\r\n      <VERS vnumber=\"23\">But every man in his own order: Christ the firstfruits; afterward they that are Christ's at his coming.</VERS>\r\n      <VERS vnumber=\"24\">Then 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.</VERS>\r\n      <VERS vnumber=\"25\">For he must reign, till he hath put all enemies under his feet.</VERS>\r\n      <VERS vnumber=\"26\">The last enemy that shall be destroyed is death.</VERS>\r\n      <VERS vnumber=\"27\">For 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.</VERS>\r\n      <VERS vnumber=\"28\">And 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.</VERS>\r\n      <VERS vnumber=\"29\">Else 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?</VERS>\r\n      <VERS vnumber=\"30\">And why stand we in jeopardy every hour?</VERS>\r\n      <VERS vnumber=\"31\">I protest by your rejoicing which I have in Christ Jesus our Lord, I die daily.</VERS>\r\n      <VERS vnumber=\"32\">If 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.</VERS>\r\n      <VERS vnumber=\"33\">Be not deceived: evil communications corrupt good manners.</VERS>\r\n      <VERS vnumber=\"34\">Awake to righteousness, and sin not; for some have not the knowledge of God: I speak this to your shame.</VERS>\r\n      <VERS vnumber=\"35\">But some man will say, How are the dead raised up? and with what body do they come?</VERS>\r\n      <VERS vnumber=\"36\">Thou fool, that which thou sowest is not quickened, except it die:</VERS>\r\n      <VERS vnumber=\"37\">And 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:</VERS>\r\n      <VERS vnumber=\"38\">But God giveth it a body as it hath pleased him, and to every seed his own body.</VERS>\r\n      <VERS vnumber=\"39\">All 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.</VERS>\r\n      <VERS vnumber=\"40\">There are also celestial bodies, and bodies terrestrial: but the glory of the celestial is one, and the glory of the terrestrial is another.</VERS>\r\n      <VERS vnumber=\"41\">There 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.</VERS>\r\n      <VERS vnumber=\"42\">So also is the resurrection of the dead. It is sown in corruption; it is raised in incorruption:</VERS>\r\n      <VERS vnumber=\"43\">It is sown in dishonour; it is raised in glory: it is sown in weakness; it is raised in power:</VERS>\r\n      <VERS vnumber=\"44\">It is sown a natural body; it is raised a spiritual body. There is a natural body, and there is a spiritual body.</VERS>\r\n      <VERS vnumber=\"45\">And so it is written, The first man Adam was made a living soul; the last Adam was made a quickening spirit.</VERS>\r\n      <VERS vnumber=\"46\">Howbeit that was not first which is spiritual, but that which is natural; and afterward that which is spiritual.</VERS>\r\n      <VERS vnumber=\"47\">The first man is of the earth, earthy: the second man is the Lord from heaven.</VERS>\r\n      <VERS vnumber=\"48\">As is the earthy, such are they also that are earthy: and as is the heavenly, such are they also that are heavenly.</VERS>\r\n      <VERS vnumber=\"49\">And as we have borne the image of the earthy, we shall also bear the image of the heavenly.</VERS>\r\n      <VERS vnumber=\"50\">Now this I say, brethren, that flesh and blood cannot inherit the kingdom of God; neither doth corruption inherit incorruption.</VERS>\r\n      <VERS vnumber=\"51\">Behold, I shew you a mystery; We shall not all sleep, but we shall all be changed,</VERS>\r\n      <VERS vnumber=\"52\">In 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.</VERS>\r\n      <VERS vnumber=\"53\">For this corruptible must put on incorruption, and this mortal must put on immortality.</VERS>\r\n      <VERS vnumber=\"54\">So 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.</VERS>\r\n      <VERS vnumber=\"55\">O death, where is thy sting? O grave, where is thy victory?</VERS>\r\n      <VERS vnumber=\"56\">The sting of death is sin; and the strength of sin is the law.</VERS>\r\n      <VERS vnumber=\"57\">But thanks be to God, which giveth us the victory through our Lord Jesus Christ.</VERS>\r\n      <VERS vnumber=\"58\">Therefore, 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">Now concerning the collection for the saints, as I have given order to the churches of Galatia, even so do ye.</VERS>\r\n      <VERS vnumber=\"2\">Upon 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.</VERS>\r\n      <VERS vnumber=\"3\">And when I come, whomsoever ye shall approve by your letters, them will I send to bring your liberality unto Jerusalem.</VERS>\r\n      <VERS vnumber=\"4\">And if it be meet that I go also, they shall go with me.</VERS>\r\n      <VERS vnumber=\"5\">Now I will come unto you, when I shall pass through Macedonia: for I do pass through Macedonia.</VERS>\r\n      <VERS vnumber=\"6\">And it may be that I will abide, yea, and winter with you, that ye may bring me on my journey whithersoever I go.</VERS>\r\n      <VERS vnumber=\"7\">For I will not see you now by the way; but I trust to tarry a while with you, if the Lord permit.</VERS>\r\n      <VERS vnumber=\"8\">But I will tarry at Ephesus until Pentecost.</VERS>\r\n      <VERS vnumber=\"9\">For a great door and effectual is opened unto me, and there are many adversaries.</VERS>\r\n      <VERS vnumber=\"10\">Now if Timotheus come, see that he may be with you without fear: for he worketh the work of the Lord, as I also do.</VERS>\r\n      <VERS vnumber=\"11\">Let 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.</VERS>\r\n      <VERS vnumber=\"12\">As 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.</VERS>\r\n      <VERS vnumber=\"13\">Watch ye, stand fast in the faith, quit you like men, be strong.</VERS>\r\n      <VERS vnumber=\"14\">Let all your things be done with charity.</VERS>\r\n      <VERS vnumber=\"15\">I 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,)</VERS>\r\n      <VERS vnumber=\"16\">That ye submit yourselves unto such, and to every one that helpeth with us, and laboureth.</VERS>\r\n      <VERS vnumber=\"17\">I am glad of the coming of Stephanas and Fortunatus and Achaicus: for that which was lacking on your part they have supplied.</VERS>\r\n      <VERS vnumber=\"18\">For they have refreshed my spirit and yours: therefore acknowledge ye them that are such.</VERS>\r\n      <VERS vnumber=\"19\">The churches of Asia salute you. Aquila and Priscilla salute you much in the Lord, with the church that is in their house.</VERS>\r\n      <VERS vnumber=\"20\">All the brethren greet you. Greet ye one another with an holy kiss.</VERS>\r\n      <VERS vnumber=\"21\">The salutation of me Paul with mine own hand.</VERS>\r\n      <VERS vnumber=\"22\">If any man love not the Lord Jesus Christ, let him be Anathema Maranatha.</VERS>\r\n      <VERS vnumber=\"23\">The grace of our Lord Jesus Christ be with you.</VERS>\r\n      <VERS vnumber=\"24\">My love be with you all in Christ Jesus. Amen. </VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"47\" bname=\"2 Corinthians\" bsname=\"2Cor\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <CAPTION vref=\"1\">The second epistle to the Corinthians was written from Philippi, a city of Macedonia, by Titus and Lucas.</CAPTION>\r\n      <VERS vnumber=\"1\">Paul, 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:</VERS>\r\n      <VERS vnumber=\"2\">Grace be to you and peace from God our Father, and from the Lord Jesus Christ.</VERS>\r\n      <VERS vnumber=\"3\">Blessed be God, even the Father of our Lord Jesus Christ, the Father of mercies, and the God of all comfort;</VERS>\r\n      <VERS vnumber=\"4\">Who 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.</VERS>\r\n      <VERS vnumber=\"5\">For as the sufferings of Christ abound in us, so our consolation also aboundeth by Christ.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And our hope of you is stedfast, knowing, that as ye are partakers of the sufferings, so shall ye be also of the consolation.</VERS>\r\n      <VERS vnumber=\"8\">For 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:</VERS>\r\n      <VERS vnumber=\"9\">But we had the sentence of death in ourselves, that we should not trust in ourselves, but in God which raiseth the dead:</VERS>\r\n      <VERS vnumber=\"10\">Who delivered us from so great a death, and doth deliver: in whom we trust that he will yet deliver us;</VERS>\r\n      <VERS vnumber=\"11\">Ye 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.</VERS>\r\n      <VERS vnumber=\"12\">For 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.</VERS>\r\n      <VERS vnumber=\"13\">For we write none other things unto you, than what ye read or acknowledge; and I trust ye shall acknowledge even to the end;</VERS>\r\n      <VERS vnumber=\"14\">As also ye have acknowledged us in part, that we are your rejoicing, even as ye also are ours in the day of the Lord Jesus.</VERS>\r\n      <VERS vnumber=\"15\">And in this confidence I was minded to come unto you before, that ye might have a second benefit;</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">When 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?</VERS>\r\n      <VERS vnumber=\"18\">But as God is true, our word toward you was not yea and nay.</VERS>\r\n      <VERS vnumber=\"19\">For 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.</VERS>\r\n      <VERS vnumber=\"20\">For all the promises of God in him are yea, and in him Amen, unto the glory of God by us.</VERS>\r\n      <VERS vnumber=\"21\">Now he which stablisheth us with you in Christ, and hath anointed us, is God;</VERS>\r\n      <VERS vnumber=\"22\">Who hath also sealed us, and given the earnest of the Spirit in our hearts.</VERS>\r\n      <VERS vnumber=\"23\">Moreover I call God for a record upon my soul, that to spare you I came not as yet unto Corinth.</VERS>\r\n      <VERS vnumber=\"24\">Not for that we have dominion over your faith, but are helpers of your joy: for by faith ye stand.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">But I determined this with myself, that I would not come again to you in heaviness.</VERS>\r\n      <VERS vnumber=\"2\">For if I make you sorry, who is he then that maketh me glad, but the same which is made sorry by me?</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">For 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.</VERS>\r\n      <VERS vnumber=\"5\">But if any have caused grief, he hath not grieved me, but in part: that I may not overcharge you all.</VERS>\r\n      <VERS vnumber=\"6\">Sufficient to such a man is this punishment, which was inflicted of many.</VERS>\r\n      <VERS vnumber=\"7\">So that contrariwise ye ought rather to forgive him, and comfort him, lest perhaps such a one should be swallowed up with overmuch sorrow.</VERS>\r\n      <VERS vnumber=\"8\">Wherefore I beseech you that ye would confirm your love toward him.</VERS>\r\n      <VERS vnumber=\"9\">For to this end also did I write, that I might know the proof of you, whether ye be obedient in all things.</VERS>\r\n      <VERS vnumber=\"10\">To 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;</VERS>\r\n      <VERS vnumber=\"11\">Lest Satan should get an advantage of us: for we are not ignorant of his devices.</VERS>\r\n      <VERS vnumber=\"12\">Furthermore, when I came to Troas to preach Christ's gospel, and a door was opened unto me of the Lord,</VERS>\r\n      <VERS vnumber=\"13\">I 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.</VERS>\r\n      <VERS vnumber=\"14\">Now 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.</VERS>\r\n      <VERS vnumber=\"15\">For we are unto God a sweet savour of Christ, in them that are saved, and in them that perish:</VERS>\r\n      <VERS vnumber=\"16\">To 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?</VERS>\r\n      <VERS vnumber=\"17\">For 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Do we begin again to commend ourselves? or need we, as some others, epistles of commendation to you, or letters of commendation from you?</VERS>\r\n      <VERS vnumber=\"2\">Ye are our epistle written in our hearts, known and read of all men:</VERS>\r\n      <VERS vnumber=\"3\">Forasmuch 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.</VERS>\r\n      <VERS vnumber=\"4\">And such trust have we through Christ to God-ward:</VERS>\r\n      <VERS vnumber=\"5\">Not that we are sufficient of ourselves to think any thing as of ourselves; but our sufficiency is of God;</VERS>\r\n      <VERS vnumber=\"6\">Who 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.</VERS>\r\n      <VERS vnumber=\"7\">But 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:</VERS>\r\n      <VERS vnumber=\"8\">How shall not the ministration of the spirit be rather glorious?</VERS>\r\n      <VERS vnumber=\"9\">For if the ministration of condemnation be glory, much more doth the ministration of righteousness exceed in glory.</VERS>\r\n      <VERS vnumber=\"10\">For even that which was made glorious had no glory in this respect, by reason of the glory that excelleth.</VERS>\r\n      <VERS vnumber=\"11\">For if that which is done away was glorious, much more that which remaineth is glorious.</VERS>\r\n      <VERS vnumber=\"12\">Seeing then that we have such hope, we use great plainness of speech:</VERS>\r\n      <VERS vnumber=\"13\">And 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:</VERS>\r\n      <VERS vnumber=\"14\">But 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.</VERS>\r\n      <VERS vnumber=\"15\">But even unto this day, when Moses is read, the vail is upon their heart.</VERS>\r\n      <VERS vnumber=\"16\">Nevertheless when it shall turn to the Lord, the vail shall be taken away.</VERS>\r\n      <VERS vnumber=\"17\">Now the Lord is that Spirit: and where the Spirit of the Lord is, there is liberty.</VERS>\r\n      <VERS vnumber=\"18\">But 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">Therefore seeing we have this ministry, as we have received mercy, we faint not;</VERS>\r\n      <VERS vnumber=\"2\">But 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.</VERS>\r\n      <VERS vnumber=\"3\">But if our gospel be hid, it is hid to them that are lost:</VERS>\r\n      <VERS vnumber=\"4\">In 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.</VERS>\r\n      <VERS vnumber=\"5\">For we preach not ourselves, but Christ Jesus the Lord; and ourselves your servants for Jesus' sake.</VERS>\r\n      <VERS vnumber=\"6\">For 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.</VERS>\r\n      <VERS vnumber=\"7\">But we have this treasure in earthen vessels, that the excellency of the power may be of God, and not of us.</VERS>\r\n      <VERS vnumber=\"8\">We are troubled on every side, yet not distressed; we are perplexed, but not in despair;</VERS>\r\n      <VERS vnumber=\"9\">Persecuted, but not forsaken; cast down, but not destroyed;</VERS>\r\n      <VERS vnumber=\"10\">Always bearing about in the body the dying of the Lord Jesus, that the life also of Jesus might be made manifest in our body.</VERS>\r\n      <VERS vnumber=\"11\">For 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.</VERS>\r\n      <VERS vnumber=\"12\">So then death worketh in us, but life in you.</VERS>\r\n      <VERS vnumber=\"13\">We having the same spirit of faith, according as it is written, I believed, and therefore have I spoken; we also believe, and therefore speak;</VERS>\r\n      <VERS vnumber=\"14\">Knowing that he which raised up the Lord Jesus shall raise up us also by Jesus, and shall present us with you.</VERS>\r\n      <VERS vnumber=\"15\">For all things are for your sakes, that the abundant grace might through the thanksgiving of many redound to the glory of God.</VERS>\r\n      <VERS vnumber=\"16\">For which cause we faint not; but though our outward man perish, yet the inward man is renewed day by day.</VERS>\r\n      <VERS vnumber=\"17\">For our light affliction, which is but for a moment, worketh for us a far more exceeding and eternal weight of glory;</VERS>\r\n      <VERS vnumber=\"18\">While 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">For 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.</VERS>\r\n      <VERS vnumber=\"2\">For in this we groan, earnestly desiring to be clothed upon with our house which is from heaven:</VERS>\r\n      <VERS vnumber=\"3\">If so be that being clothed we shall not be found naked.</VERS>\r\n      <VERS vnumber=\"4\">For 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.</VERS>\r\n      <VERS vnumber=\"5\">Now he that hath wrought us for the selfsame thing is God, who also hath given unto us the earnest of the Spirit.</VERS>\r\n      <VERS vnumber=\"6\">Therefore we are always confident, knowing that, whilst we are at home in the body, we are absent from the Lord:</VERS>\r\n      <VERS vnumber=\"7\">For we walk by faith, not by sight:)</VERS>\r\n      <VERS vnumber=\"8\">We are confident, I say, and willing rather to be absent from the body, and to be present with the Lord.</VERS>\r\n      <VERS vnumber=\"9\">Wherefore we labour, that, whether present or absent, we may be accepted of him.</VERS>\r\n      <VERS vnumber=\"10\">For 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.</VERS>\r\n      <VERS vnumber=\"11\">Knowing 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.</VERS>\r\n      <VERS vnumber=\"12\">For 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.</VERS>\r\n      <VERS vnumber=\"13\">For whether we be beside ourselves, it is to God: or whether we be sober, it is for your cause.</VERS>\r\n      <VERS vnumber=\"14\">For the love of Christ constraineth us; because we thus judge, that if one died for all, then were all dead:</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"17\">Therefore if any man be in Christ, he is a new creature: old things are passed away; behold, all things are become new.</VERS>\r\n      <VERS vnumber=\"18\">And all things are of God, who hath reconciled us to himself by Jesus Christ, and hath given to us the ministry of reconciliation;</VERS>\r\n      <VERS vnumber=\"19\">To 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.</VERS>\r\n      <VERS vnumber=\"20\">Now 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.</VERS>\r\n      <VERS vnumber=\"21\">For he hath made him to be sin for us, who knew no sin; that we might be made the righteousness of God in him.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">We then, as workers together with him, beseech you also that ye receive not the grace of God in vain.</VERS>\r\n      <VERS vnumber=\"2\">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.)</VERS>\r\n      <VERS vnumber=\"3\">Giving no offence in any thing, that the ministry be not blamed:</VERS>\r\n      <VERS vnumber=\"4\">But in all things approving ourselves as the ministers of God, in much patience, in afflictions, in necessities, in distresses,</VERS>\r\n      <VERS vnumber=\"5\">In stripes, in imprisonments, in tumults, in labours, in watchings, in fastings;</VERS>\r\n      <VERS vnumber=\"6\">By pureness, by knowledge, by longsuffering, by kindness, by the Holy Ghost, by love unfeigned,</VERS>\r\n      <VERS vnumber=\"7\">By the word of truth, by the power of God, by the armour of righteousness on the right hand and on the left,</VERS>\r\n      <VERS vnumber=\"8\">By honour and dishonour, by evil report and good report: as deceivers, and yet true;</VERS>\r\n      <VERS vnumber=\"9\">As unknown, and yet well known; as dying, and, behold, we live; as chastened, and not killed;</VERS>\r\n      <VERS vnumber=\"10\">As sorrowful, yet alway rejoicing; as poor, yet making many rich; as having nothing, and yet possessing all things.</VERS>\r\n      <VERS vnumber=\"11\">O ye Corinthians, our mouth is open unto you, our heart is enlarged.</VERS>\r\n      <VERS vnumber=\"12\">Ye are not straitened in us, but ye are straitened in your own bowels.</VERS>\r\n      <VERS vnumber=\"13\">Now for a recompence in the same, (I speak as unto my children,) be ye also enlarged.</VERS>\r\n      <VERS vnumber=\"14\">Be ye not unequally yoked together with unbelievers: for what fellowship hath righteousness with unrighteousness? and what communion hath light with darkness?</VERS>\r\n      <VERS vnumber=\"15\">And what concord hath Christ with Belial? or what part hath he that believeth with an infidel?</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">Wherefore come out from among them, and be ye separate, saith the Lord, and touch not the unclean thing; and I will receive you,</VERS>\r\n      <VERS vnumber=\"18\">And will be a Father unto you, and ye shall be my sons and daughters, saith the Lord Almighty.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">Having therefore these promises, dearly beloved, let us cleanse ourselves from all filthiness of the flesh and spirit, perfecting holiness in the fear of God.</VERS>\r\n      <VERS vnumber=\"2\">Receive us; we have wronged no man, we have corrupted no man, we have defrauded no man.</VERS>\r\n      <VERS vnumber=\"3\">I speak not this to condemn you: for I have said before, that ye are in our hearts to die and live with you.</VERS>\r\n      <VERS vnumber=\"4\">Great 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.</VERS>\r\n      <VERS vnumber=\"5\">For, when we were come into Macedonia, our flesh had no rest, but we were troubled on every side; without were fightings, within were fears.</VERS>\r\n      <VERS vnumber=\"6\">Nevertheless God, that comforteth those that are cast down, comforted us by the coming of Titus;</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">For 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.</VERS>\r\n      <VERS vnumber=\"9\">Now 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.</VERS>\r\n      <VERS vnumber=\"10\">For godly sorrow worketh repentance to salvation not to be repented of: but the sorrow of the world worketh death.</VERS>\r\n      <VERS vnumber=\"11\">For 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.</VERS>\r\n      <VERS vnumber=\"12\">Wherefore, 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.</VERS>\r\n      <VERS vnumber=\"13\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"14\">For 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.</VERS>\r\n      <VERS vnumber=\"15\">And his inward affection is more abundant toward you, whilst he remembereth the obedience of you all, how with fear and trembling ye received him.</VERS>\r\n      <VERS vnumber=\"16\">I rejoice therefore that I have confidence in you in all things.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">Moreover, brethren, we do you to wit of the grace of God bestowed on the churches of Macedonia;</VERS>\r\n      <VERS vnumber=\"2\">How that in a great trial of affliction the abundance of their joy and their deep poverty abounded unto the riches of their liberality.</VERS>\r\n      <VERS vnumber=\"3\">For to their power, I bear record, yea, and beyond their power they were willing of themselves;</VERS>\r\n      <VERS vnumber=\"4\">Praying us with much intreaty that we would receive the gift, and take upon us the fellowship of the ministering to the saints.</VERS>\r\n      <VERS vnumber=\"5\">And this they did, not as we hoped, but first gave their own selves to the Lord, and unto us by the will of God.</VERS>\r\n      <VERS vnumber=\"6\">Insomuch that we desired Titus, that as he had begun, so he would also finish in you the same grace also.</VERS>\r\n      <VERS vnumber=\"7\">Therefore, 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.</VERS>\r\n      <VERS vnumber=\"8\">I speak not by commandment, but by occasion of the forwardness of others, and to prove the sincerity of your love.</VERS>\r\n      <VERS vnumber=\"9\">For 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">Now 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.</VERS>\r\n      <VERS vnumber=\"12\">For if there be first a willing mind, it is accepted according to that a man hath, and not according to that he hath not.</VERS>\r\n      <VERS vnumber=\"13\">For I mean not that other men be eased, and ye burdened:</VERS>\r\n      <VERS vnumber=\"14\">But 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:</VERS>\r\n      <VERS vnumber=\"15\">As it is written, He that had gathered much had nothing over; and he that had gathered little had no lack.</VERS>\r\n      <VERS vnumber=\"16\">But thanks be to God, which put the same earnest care into the heart of Titus for you.</VERS>\r\n      <VERS vnumber=\"17\">For indeed he accepted the exhortation; but being more forward, of his own accord he went unto you.</VERS>\r\n      <VERS vnumber=\"18\">And we have sent with him the brother, whose praise is in the gospel throughout all the churches;</VERS>\r\n      <VERS vnumber=\"19\">And 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:</VERS>\r\n      <VERS vnumber=\"20\">Avoiding this, that no man should blame us in this abundance which is administered by us:</VERS>\r\n      <VERS vnumber=\"21\">Providing for honest things, not only in the sight of the Lord, but also in the sight of men.</VERS>\r\n      <VERS vnumber=\"22\">And 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.</VERS>\r\n      <VERS vnumber=\"23\">Whether 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.</VERS>\r\n      <VERS vnumber=\"24\">Wherefore shew ye to them, and before the churches, the proof of your love, and of our boasting on your behalf.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">For as touching the ministering to the saints, it is superfluous for me to write to you:</VERS>\r\n      <VERS vnumber=\"2\">For 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.</VERS>\r\n      <VERS vnumber=\"3\">Yet 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:</VERS>\r\n      <VERS vnumber=\"4\">Lest 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.</VERS>\r\n      <VERS vnumber=\"5\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"6\">But this I say, He which soweth sparingly shall reap also sparingly; and he which soweth bountifully shall reap also bountifully.</VERS>\r\n      <VERS vnumber=\"7\">Every man according as he purposeth in his heart, so let him give; not grudgingly, or of necessity: for God loveth a cheerful giver.</VERS>\r\n      <VERS vnumber=\"8\">And 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:</VERS>\r\n      <VERS vnumber=\"9\">As it is written, He hath dispersed abroad; he hath given to the poor: his righteousness remaineth for ever.</VERS>\r\n      <VERS vnumber=\"10\">Now 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;)</VERS>\r\n      <VERS vnumber=\"11\">Being enriched in every thing to all bountifulness, which causeth through us thanksgiving to God.</VERS>\r\n      <VERS vnumber=\"12\">For the administration of this service not only supplieth the want of the saints, but is abundant also by many thanksgivings unto God;</VERS>\r\n      <VERS vnumber=\"13\">Whiles 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;</VERS>\r\n      <VERS vnumber=\"14\">And by their prayer for you, which long after you for the exceeding grace of God in you.</VERS>\r\n      <VERS vnumber=\"15\">Thanks be unto God for his unspeakable gift.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">Now 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:</VERS>\r\n      <VERS vnumber=\"2\">But 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.</VERS>\r\n      <VERS vnumber=\"3\">For though we walk in the flesh, we do not war after the flesh:</VERS>\r\n      <VERS vnumber=\"4\">For the weapons of our warfare are not carnal, but mighty through God to the pulling down of strong holds;)</VERS>\r\n      <VERS vnumber=\"5\">Casting 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;</VERS>\r\n      <VERS vnumber=\"6\">And having in a readiness to revenge all disobedience, when your obedience is fulfilled.</VERS>\r\n      <VERS vnumber=\"7\">Do 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.</VERS>\r\n      <VERS vnumber=\"8\">For 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:</VERS>\r\n      <VERS vnumber=\"9\">That I may not seem as if I would terrify you by letters.</VERS>\r\n      <VERS vnumber=\"10\">For his letters, say they, are weighty and powerful; but his bodily presence is weak, and his speech contemptible.</VERS>\r\n      <VERS vnumber=\"11\">Let 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.</VERS>\r\n      <VERS vnumber=\"12\">For 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.</VERS>\r\n      <VERS vnumber=\"13\">But 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.</VERS>\r\n      <VERS vnumber=\"14\">For 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:</VERS>\r\n      <VERS vnumber=\"15\">Not 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,</VERS>\r\n      <VERS vnumber=\"16\">To preach the gospel in the regions beyond you, and not to boast in another man's line of things made ready to our hand.</VERS>\r\n      <VERS vnumber=\"17\">But he that glorieth, let him glory in the Lord.</VERS>\r\n      <VERS vnumber=\"18\">For not he that commendeth himself is approved, but whom the Lord commendeth.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">Would to God ye could bear with me a little in my folly: and indeed bear with me.</VERS>\r\n      <VERS vnumber=\"2\">For 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.</VERS>\r\n      <VERS vnumber=\"3\">But 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.</VERS>\r\n      <VERS vnumber=\"4\">For 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.</VERS>\r\n      <VERS vnumber=\"5\">For I suppose I was not a whit behind the very chiefest apostles.</VERS>\r\n      <VERS vnumber=\"6\">But though I be rude in speech, yet not in knowledge; but we have been throughly made manifest among you in all things.</VERS>\r\n      <VERS vnumber=\"7\">Have I committed an offence in abasing myself that ye might be exalted, because I have preached to you the gospel of God freely?</VERS>\r\n      <VERS vnumber=\"8\">I robbed other churches, taking wages of them, to do you service.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">As the truth of Christ is in me, no man shall stop me of this boasting in the regions of Achaia.</VERS>\r\n      <VERS vnumber=\"11\">Wherefore? because I love you not? God knoweth.</VERS>\r\n      <VERS vnumber=\"12\">But 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.</VERS>\r\n      <VERS vnumber=\"13\">For such are false apostles, deceitful workers, transforming themselves into the apostles of Christ.</VERS>\r\n      <VERS vnumber=\"14\">And no marvel; for Satan himself is transformed into an angel of light.</VERS>\r\n      <VERS vnumber=\"15\">Therefore it is no great thing if his ministers also be transformed as the ministers of righteousness; whose end shall be according to their works.</VERS>\r\n      <VERS vnumber=\"16\">I say again, Let no man think me a fool; if otherwise, yet as a fool receive me, that I may boast myself a little.</VERS>\r\n      <VERS vnumber=\"17\">That which I speak, I speak it not after the Lord, but as it were foolishly, in this confidence of boasting.</VERS>\r\n      <VERS vnumber=\"18\">Seeing that many glory after the flesh, I will glory also.</VERS>\r\n      <VERS vnumber=\"19\">For ye suffer fools gladly, seeing ye yourselves are wise.</VERS>\r\n      <VERS vnumber=\"20\">For 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.</VERS>\r\n      <VERS vnumber=\"21\">I speak as concerning reproach, as though we had been weak. Howbeit whereinsoever any is bold, (I speak foolishly,) I am bold also.</VERS>\r\n      <VERS vnumber=\"22\">Are they Hebrews? so am I. Are they Israelites? so am I. Are they the seed of Abraham? so am I.</VERS>\r\n      <VERS vnumber=\"23\">Are 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.</VERS>\r\n      <VERS vnumber=\"24\">Of the Jews five times received I forty stripes save one.</VERS>\r\n      <VERS vnumber=\"25\">Thrice was I beaten with rods, once was I stoned, thrice I suffered shipwreck, a night and a day I have been in the deep;</VERS>\r\n      <VERS vnumber=\"26\">In 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;</VERS>\r\n      <VERS vnumber=\"27\">In weariness and painfulness, in watchings often, in hunger and thirst, in fastings often, in cold and nakedness.</VERS>\r\n      <VERS vnumber=\"28\">Beside those things that are without, that which cometh upon me daily, the care of all the churches.</VERS>\r\n      <VERS vnumber=\"29\">Who is weak, and I am not weak? who is offended, and I burn not?</VERS>\r\n      <VERS vnumber=\"30\">If I must needs glory, I will glory of the things which concern mine infirmities.</VERS>\r\n      <VERS vnumber=\"31\">The God and Father of our Lord Jesus Christ, which is blessed for evermore, knoweth that I lie not.</VERS>\r\n      <VERS vnumber=\"32\">In Damascus the governor under Aretas the king kept the city of the Damascenes with a garrison, desirous to apprehend me:</VERS>\r\n      <VERS vnumber=\"33\">And through a window in a basket was I let down by the wall, and escaped his hands.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">It is not expedient for me doubtless to glory. I will come to visions and revelations of the Lord.</VERS>\r\n      <VERS vnumber=\"2\">I 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.</VERS>\r\n      <VERS vnumber=\"3\">And I knew such a man, (whether in the body, or out of the body, I cannot tell: God knoweth;)</VERS>\r\n      <VERS vnumber=\"4\">How that he was caught up into paradise, and heard unspeakable words, which it is not lawful for a man to utter.</VERS>\r\n      <VERS vnumber=\"5\">Of such an one will I glory: yet of myself I will not glory, but in mine infirmities.</VERS>\r\n      <VERS vnumber=\"6\">For 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">For this thing I besought the Lord thrice, that it might depart from me.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"11\">I 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.</VERS>\r\n      <VERS vnumber=\"12\">Truly the signs of an apostle were wrought among you in all patience, in signs, and wonders, and mighty deeds.</VERS>\r\n      <VERS vnumber=\"13\">For 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.</VERS>\r\n      <VERS vnumber=\"14\">Behold, the third time I am ready to come to you; and I will not be burdensome to you: for I seek not yours, but you: for the children ought not to lay up for the parents, but the parents for the children.</VERS>\r\n      <VERS vnumber=\"15\">And I will very gladly spend and be spent for you; though the more abundantly I love you, the less I be loved.</VERS>\r\n      <VERS vnumber=\"16\">But be it so, I did not burden you: nevertheless, being crafty, I caught you with guile.</VERS>\r\n      <VERS vnumber=\"17\">Did I make a gain of you by any of them whom I sent unto you?</VERS>\r\n      <VERS vnumber=\"18\">I 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?</VERS>\r\n      <VERS vnumber=\"19\">Again, think ye that we excuse ourselves unto you? we speak before God in Christ: but we do all things, dearly beloved, for your edifying.</VERS>\r\n      <VERS vnumber=\"20\">For 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:</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">This is the third time I am coming to you. In the mouth of two or three witnesses shall every word be established.</VERS>\r\n      <VERS vnumber=\"2\">I 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:</VERS>\r\n      <VERS vnumber=\"3\">Since ye seek a proof of Christ speaking in me, which to you-ward is not weak, but is mighty in you.</VERS>\r\n      <VERS vnumber=\"4\">For 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.</VERS>\r\n      <VERS vnumber=\"5\">Examine 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?</VERS>\r\n      <VERS vnumber=\"6\">But I trust that ye shall know that we are not reprobates.</VERS>\r\n      <VERS vnumber=\"7\">Now 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.</VERS>\r\n      <VERS vnumber=\"8\">For we can do nothing against the truth, but for the truth.</VERS>\r\n      <VERS vnumber=\"9\">For we are glad, when we are weak, and ye are strong: and this also we wish, even your perfection.</VERS>\r\n      <VERS vnumber=\"10\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"11\">Finally, 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.</VERS>\r\n      <VERS vnumber=\"12\">Greet one another with an holy kiss.</VERS>\r\n      <VERS vnumber=\"13\">All the saints salute you.</VERS>\r\n      <VERS vnumber=\"14\">The grace of the Lord Jesus Christ, and the love of God, and the communion of the Holy Ghost, be with you all. Amen.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"48\" bname=\"Galatians\" bsname=\"Gal\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <CAPTION vref=\"1\">To the Galatians written from Rome.</CAPTION>\r\n      <VERS vnumber=\"1\">Paul, an apostle, (not of men, neither by man, but by Jesus Christ, and God the Father, who raised him from the dead;)</VERS>\r\n      <VERS vnumber=\"2\">And all the brethren which are with me, unto the churches of Galatia:</VERS>\r\n      <VERS vnumber=\"3\">Grace be to you and peace from God the Father, and from our Lord Jesus Christ,</VERS>\r\n      <VERS vnumber=\"4\">Who gave himself for our sins, that he might deliver us from this present evil world, according to the will of God and our Father:</VERS>\r\n      <VERS vnumber=\"5\">To whom be glory for ever and ever. Amen.</VERS>\r\n      <VERS vnumber=\"6\">I marvel that ye are so soon removed from him that called you into the grace of Christ unto another gospel:</VERS>\r\n      <VERS vnumber=\"7\">Which is not another; but there be some that trouble you, and would pervert the gospel of Christ.</VERS>\r\n      <VERS vnumber=\"8\">But 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.</VERS>\r\n      <VERS vnumber=\"9\">As 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.</VERS>\r\n      <VERS vnumber=\"10\">For 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.</VERS>\r\n      <VERS vnumber=\"11\">But I certify you, brethren, that the gospel which was preached of me is not after man.</VERS>\r\n      <VERS vnumber=\"12\">For I neither received it of man, neither was I taught it, but by the revelation of Jesus Christ.</VERS>\r\n      <VERS vnumber=\"13\">For 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:</VERS>\r\n      <VERS vnumber=\"14\">And profited in the Jews' religion above many my equals in mine own nation, being more exceedingly zealous of the traditions of my fathers.</VERS>\r\n      <VERS vnumber=\"15\">But when it pleased God, who separated me from my mother's womb, and called me by his grace,</VERS>\r\n      <VERS vnumber=\"16\">To reveal his Son in me, that I might preach him among the heathen; immediately I conferred not with flesh and blood:</VERS>\r\n      <VERS vnumber=\"17\">Neither went I up to Jerusalem to them which were apostles before me; but I went into Arabia, and returned again unto Damascus.</VERS>\r\n      <VERS vnumber=\"18\">Then after three years I went up to Jerusalem to see Peter, and abode with him fifteen days.</VERS>\r\n      <VERS vnumber=\"19\">But other of the apostles saw I none, save James the Lord's brother.</VERS>\r\n      <VERS vnumber=\"20\">Now the things which I write unto you, behold, before God, I lie not.</VERS>\r\n      <VERS vnumber=\"21\">Afterwards I came into the regions of Syria and Cilicia;</VERS>\r\n      <VERS vnumber=\"22\">And was unknown by face unto the churches of Judaea which were in Christ:</VERS>\r\n      <VERS vnumber=\"23\">But they had heard only, That he which persecuted us in times past now preacheth the faith which once he destroyed.</VERS>\r\n      <VERS vnumber=\"24\">And they glorified God in me.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">Then fourteen years after I went up again to Jerusalem with Barnabas, and took Titus with me also.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">But neither Titus, who was with me, being a Greek, was compelled to be circumcised:</VERS>\r\n      <VERS vnumber=\"4\">And 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:</VERS>\r\n      <VERS vnumber=\"5\">To whom we gave place by subjection, no, not for an hour; that the truth of the gospel might continue with you.</VERS>\r\n      <VERS vnumber=\"6\">But 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:</VERS>\r\n      <VERS vnumber=\"7\">But contrariwise, when they saw that the gospel of the uncircumcision was committed unto me, as the gospel of the circumcision was unto Peter;</VERS>\r\n      <VERS vnumber=\"8\">For he that wrought effectually in Peter to the apostleship of the circumcision, the same was mighty in me toward the Gentiles:)</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">Only they would that we should remember the poor; the same which I also was forward to do.</VERS>\r\n      <VERS vnumber=\"11\">But when Peter was come to Antioch, I withstood him to the face, because he was to be blamed.</VERS>\r\n      <VERS vnumber=\"12\">For 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.</VERS>\r\n      <VERS vnumber=\"13\">And the other Jews dissembled likewise with him; insomuch that Barnabas also was carried away with their dissimulation.</VERS>\r\n      <VERS vnumber=\"14\">But 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?</VERS>\r\n      <VERS vnumber=\"15\">We who are Jews by nature, and not sinners of the Gentiles,</VERS>\r\n      <VERS vnumber=\"16\">Knowing 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.</VERS>\r\n      <VERS vnumber=\"17\">But if, while we seek to be justified by Christ, we ourselves also are found sinners, is therefore Christ the minister of sin? God forbid.</VERS>\r\n      <VERS vnumber=\"18\">For if I build again the things which I destroyed, I make myself a transgressor.</VERS>\r\n      <VERS vnumber=\"19\">For I through the law am dead to the law, that I might live unto God.</VERS>\r\n      <VERS vnumber=\"20\">I am crucified with Christ: nevertheless 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.</VERS>\r\n      <VERS vnumber=\"21\">I do not frustrate the grace of God: for if righteousness come by the law, then Christ is dead in vain.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">O 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?</VERS>\r\n      <VERS vnumber=\"2\">This only would I learn of you, Received ye the Spirit by the works of the law, or by the hearing of faith?</VERS>\r\n      <VERS vnumber=\"3\">Are ye so foolish? having begun in the Spirit, are ye now made perfect by the flesh?</VERS>\r\n      <VERS vnumber=\"4\">Have ye suffered so many things in vain? if it be yet in vain.</VERS>\r\n      <VERS vnumber=\"5\">He 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?</VERS>\r\n      <VERS vnumber=\"6\">Even as Abraham believed God, and it was accounted to him for righteousness.</VERS>\r\n      <VERS vnumber=\"7\">Know ye therefore that they which are of faith, the same are the children of Abraham.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">So then they which be of faith are blessed with faithful Abraham.</VERS>\r\n      <VERS vnumber=\"10\">For 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.</VERS>\r\n      <VERS vnumber=\"11\">But that no man is justified by the law in the sight of God, it is evident: for, The just shall live by faith.</VERS>\r\n      <VERS vnumber=\"12\">And the law is not of faith: but, The man that doeth them shall live in them.</VERS>\r\n      <VERS vnumber=\"13\">Christ 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:</VERS>\r\n      <VERS vnumber=\"14\">That the blessing of Abraham might come on the Gentiles through Jesus Christ; that we might receive the promise of the Spirit through faith.</VERS>\r\n      <VERS vnumber=\"15\">Brethren, 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.</VERS>\r\n      <VERS vnumber=\"16\">Now 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">For if the inheritance be of the law, it is no more of promise: but God gave it to Abraham by promise.</VERS>\r\n      <VERS vnumber=\"19\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"20\">Now a mediator is not a mediator of one, but God is one.</VERS>\r\n      <VERS vnumber=\"21\">Is 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.</VERS>\r\n      <VERS vnumber=\"22\">But the scripture hath concluded all under sin, that the promise by faith of Jesus Christ might be given to them that believe.</VERS>\r\n      <VERS vnumber=\"23\">But before faith came, we were kept under the law, shut up unto the faith which should afterwards be revealed.</VERS>\r\n      <VERS vnumber=\"24\">Wherefore the law was our schoolmaster to bring us unto Christ, that we might be justified by faith.</VERS>\r\n      <VERS vnumber=\"25\">But after that faith is come, we are no longer under a schoolmaster.</VERS>\r\n      <VERS vnumber=\"26\">For ye are all the children of God by faith in Christ Jesus.</VERS>\r\n      <VERS vnumber=\"27\">For as many of you as have been baptized into Christ have put on Christ.</VERS>\r\n      <VERS vnumber=\"28\">There 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.</VERS>\r\n      <VERS vnumber=\"29\">And if ye be Christ's, then are ye Abraham's seed, and heirs according to the promise.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">Now I say, That the heir, as long as he is a child, differeth nothing from a servant, though he be lord of all;</VERS>\r\n      <VERS vnumber=\"2\">But is under tutors and governors until the time appointed of the father.</VERS>\r\n      <VERS vnumber=\"3\">Even so we, when we were children, were in bondage under the elements of the world:</VERS>\r\n      <VERS vnumber=\"4\">But when the fulness of the time was come, God sent forth his Son, made of a woman, made under the law,</VERS>\r\n      <VERS vnumber=\"5\">To redeem them that were under the law, that we might receive the adoption of sons.</VERS>\r\n      <VERS vnumber=\"6\">And because ye are sons, God hath sent forth the Spirit of his Son into your hearts, crying, Abba, Father.</VERS>\r\n      <VERS vnumber=\"7\">Wherefore thou art no more a servant, but a son; and if a son, then an heir of God through Christ.</VERS>\r\n      <VERS vnumber=\"8\">Howbeit then, when ye knew not God, ye did service unto them which by nature are no gods.</VERS>\r\n      <VERS vnumber=\"9\">But 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?</VERS>\r\n      <VERS vnumber=\"10\">Ye observe days, and months, and times, and years.</VERS>\r\n      <VERS vnumber=\"11\">I am afraid of you, lest I have bestowed upon you labour in vain.</VERS>\r\n      <VERS vnumber=\"12\">Brethren, I beseech you, be as I am; for I am as ye are: ye have not injured me at all.</VERS>\r\n      <VERS vnumber=\"13\">Ye know how through infirmity of the flesh I preached the gospel unto you at the first.</VERS>\r\n      <VERS vnumber=\"14\">And my temptation which was in my flesh ye despised not, nor rejected; but received me as an angel of God, even as Christ Jesus.</VERS>\r\n      <VERS vnumber=\"15\">Where 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.</VERS>\r\n      <VERS vnumber=\"16\">Am I therefore become your enemy, because I tell you the truth?</VERS>\r\n      <VERS vnumber=\"17\">They zealously affect you, but not well; yea, they would exclude you, that ye might affect them.</VERS>\r\n      <VERS vnumber=\"18\">But it is good to be zealously affected always in a good thing, and not only when I am present with you.</VERS>\r\n      <VERS vnumber=\"19\">My little children, of whom I travail in birth again until Christ be formed in you,</VERS>\r\n      <VERS vnumber=\"20\">I desire to be present with you now, and to change my voice; for I stand in doubt of you.</VERS>\r\n      <VERS vnumber=\"21\">Tell me, ye that desire to be under the law, do ye not hear the law?</VERS>\r\n      <VERS vnumber=\"22\">For it is written, that Abraham had two sons, the one by a bondmaid, the other by a freewoman.</VERS>\r\n      <VERS vnumber=\"23\">But he who was of the bondwoman was born after the flesh; but he of the freewoman was by promise.</VERS>\r\n      <VERS vnumber=\"24\">Which things are an allegory: for these are the two covenants; the one from the mount Sinai, which gendereth to bondage, which is Agar.</VERS>\r\n      <VERS vnumber=\"25\">For this Agar is mount Sinai in Arabia, and answereth to Jerusalem which now is, and is in bondage with her children.</VERS>\r\n      <VERS vnumber=\"26\">But Jerusalem which is above is free, which is the mother of us all.</VERS>\r\n      <VERS vnumber=\"27\">For 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.</VERS>\r\n      <VERS vnumber=\"28\">Now we, brethren, as Isaac was, are the children of promise.</VERS>\r\n      <VERS vnumber=\"29\">But as then he that was born after the flesh persecuted him that was born after the Spirit, even so it is now.</VERS>\r\n      <VERS vnumber=\"30\">Nevertheless 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.</VERS>\r\n      <VERS vnumber=\"31\">So then, brethren, we are not children of the bondwoman, but of the free.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">Stand fast therefore in the liberty wherewith Christ hath made us free, and be not entangled again with the yoke of bondage.</VERS>\r\n      <VERS vnumber=\"2\">Behold, I Paul say unto you, that if ye be circumcised, Christ shall profit you nothing.</VERS>\r\n      <VERS vnumber=\"3\">For I testify again to every man that is circumcised, that he is a debtor to do the whole law.</VERS>\r\n      <VERS vnumber=\"4\">Christ is become of no effect unto you, whosoever of you are justified by the law; ye are fallen from grace.</VERS>\r\n      <VERS vnumber=\"5\">For we through the Spirit wait for the hope of righteousness by faith.</VERS>\r\n      <VERS vnumber=\"6\">For in Jesus Christ neither circumcision availeth any thing, nor uncircumcision; but faith which worketh by love.</VERS>\r\n      <VERS vnumber=\"7\">Ye did run well; who did hinder you that ye should not obey the truth?</VERS>\r\n      <VERS vnumber=\"8\">This persuasion cometh not of him that calleth you.</VERS>\r\n      <VERS vnumber=\"9\">A little leaven leaveneth the whole lump.</VERS>\r\n      <VERS vnumber=\"10\">I 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.</VERS>\r\n      <VERS vnumber=\"11\">And I, brethren, if I yet preach circumcision, why do I yet suffer persecution? then is the offence of the cross ceased.</VERS>\r\n      <VERS vnumber=\"12\">I would they were even cut off which trouble you.</VERS>\r\n      <VERS vnumber=\"13\">For, brethren, ye have been called unto liberty; only use not liberty for an occasion to the flesh, but by love serve one another.</VERS>\r\n      <VERS vnumber=\"14\">For all the law is fulfilled in one word, even in this; Thou shalt love thy neighbour as thyself.</VERS>\r\n      <VERS vnumber=\"15\">But if ye bite and devour one another, take heed that ye be not consumed one of another.</VERS>\r\n      <VERS vnumber=\"16\">This I say then, Walk in the Spirit, and ye shall not fulfil the lust of the flesh.</VERS>\r\n      <VERS vnumber=\"17\">For 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.</VERS>\r\n      <VERS vnumber=\"18\">But if ye be led of the Spirit, ye are not under the law.</VERS>\r\n      <VERS vnumber=\"19\">Now the works of the flesh are manifest, which are these; Adultery, fornication, uncleanness, lasciviousness,</VERS>\r\n      <VERS vnumber=\"20\">Idolatry, witchcraft, hatred, variance, emulations, wrath, strife, seditions, heresies,</VERS>\r\n      <VERS vnumber=\"21\">Envyings, 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.</VERS>\r\n      <VERS vnumber=\"22\">But the fruit of the Spirit is love, joy, peace, longsuffering, gentleness, goodness, faith,</VERS>\r\n      <VERS vnumber=\"23\">Meekness, temperance: against such there is no law.</VERS>\r\n      <VERS vnumber=\"24\">And they that are Christ's have crucified the flesh with the affections and lusts.</VERS>\r\n      <VERS vnumber=\"25\">If we live in the Spirit, let us also walk in the Spirit.</VERS>\r\n      <VERS vnumber=\"26\">Let us not be desirous of vain glory, provoking one another, envying one another.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">Brethren, 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.</VERS>\r\n      <VERS vnumber=\"2\">Bear ye one another's burdens, and so fulfil the law of Christ.</VERS>\r\n      <VERS vnumber=\"3\">For if a man think himself to be something, when he is nothing, he deceiveth himself.</VERS>\r\n      <VERS vnumber=\"4\">But let every man prove his own work, and then shall he have rejoicing in himself alone, and not in another.</VERS>\r\n      <VERS vnumber=\"5\">For every man shall bear his own burden.</VERS>\r\n      <VERS vnumber=\"6\">Let him that is taught in the word communicate unto him that teacheth in all good things.</VERS>\r\n      <VERS vnumber=\"7\">Be not deceived; God is not mocked: for whatsoever a man soweth, that shall he also reap.</VERS>\r\n      <VERS vnumber=\"8\">For 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.</VERS>\r\n      <VERS vnumber=\"9\">And let us not be weary in well doing: for in due season we shall reap, if we faint not.</VERS>\r\n      <VERS vnumber=\"10\">As we have therefore opportunity, let us do good unto all men, especially unto them who are of the household of faith.</VERS>\r\n      <VERS vnumber=\"11\">Ye see how large a letter I have written unto you with mine own hand.</VERS>\r\n      <VERS vnumber=\"12\">As 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.</VERS>\r\n      <VERS vnumber=\"13\">For neither they themselves who are circumcised keep the law; but desire to have you circumcised, that they may glory in your flesh.</VERS>\r\n      <VERS vnumber=\"14\">But 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.</VERS>\r\n      <VERS vnumber=\"15\">For in Christ Jesus neither circumcision availeth any thing, nor uncircumcision, but a new creature.</VERS>\r\n      <VERS vnumber=\"16\">And as many as walk according to this rule, peace be on them, and mercy, and upon the Israel of God.</VERS>\r\n      <VERS vnumber=\"17\">From henceforth let no man trouble me: for I bear in my body the marks of the Lord Jesus.</VERS>\r\n      <VERS vnumber=\"18\">Brethren, the grace of our Lord Jesus Christ be with your spirit. Amen. </VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"49\" bname=\"Ephesians\" bsname=\"Eph\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <CAPTION vref=\"1\">To the Ephesians written from Rome, by Tychicus.</CAPTION>\r\n      <VERS vnumber=\"1\">Paul, an apostle of Jesus Christ by the will of God, to the saints which are at Ephesus, and to the faithful in Christ Jesus:</VERS>\r\n      <VERS vnumber=\"2\">Grace be to you, and peace, from God our Father, and from the Lord Jesus Christ.</VERS>\r\n      <VERS vnumber=\"3\">Blessed be the God and Father of our Lord Jesus Christ, who hath blessed us with all spiritual blessings in heavenly places in Christ:</VERS>\r\n      <VERS vnumber=\"4\">According 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:</VERS>\r\n      <VERS vnumber=\"5\">Having predestinated us unto the adoption of children by Jesus Christ to himself, according to the good pleasure of his will,</VERS>\r\n      <VERS vnumber=\"6\">To the praise of the glory of his grace, wherein he hath made us accepted in the beloved.</VERS>\r\n      <VERS vnumber=\"7\">In whom we have redemption through his blood, the forgiveness of sins, according to the riches of his grace;</VERS>\r\n      <VERS vnumber=\"8\">Wherein he hath abounded toward us in all wisdom and prudence;</VERS>\r\n      <VERS vnumber=\"9\">Having made known unto us the mystery of his will, according to his good pleasure which he hath purposed in himself:</VERS>\r\n      <VERS vnumber=\"10\">That 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:</VERS>\r\n      <VERS vnumber=\"11\">In 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:</VERS>\r\n      <VERS vnumber=\"12\">That we should be to the praise of his glory, who first trusted in Christ.</VERS>\r\n      <VERS vnumber=\"13\">In 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,</VERS>\r\n      <VERS vnumber=\"14\">Which is the earnest of our inheritance until the redemption of the purchased possession, unto the praise of his glory.</VERS>\r\n      <VERS vnumber=\"15\">Wherefore I also, after I heard of your faith in the Lord Jesus, and love unto all the saints,</VERS>\r\n      <VERS vnumber=\"16\">Cease not to give thanks for you, making mention of you in my prayers;</VERS>\r\n      <VERS vnumber=\"17\">That 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:</VERS>\r\n      <VERS vnumber=\"18\">The 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,</VERS>\r\n      <VERS vnumber=\"19\">And what is the exceeding greatness of his power to us-ward who believe, according to the working of his mighty power,</VERS>\r\n      <VERS vnumber=\"20\">Which he wrought in Christ, when he raised him from the dead, and set him at his own right hand in the heavenly places,</VERS>\r\n      <VERS vnumber=\"21\">Far 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:</VERS>\r\n      <VERS vnumber=\"22\">And hath put all things under his feet, and gave him to be the head over all things to the church,</VERS>\r\n      <VERS vnumber=\"23\">Which is his body, the fulness of him that filleth all in all.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">And you hath he quickened, who were dead in trespasses and sins;</VERS>\r\n      <VERS vnumber=\"2\">Wherein 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:</VERS>\r\n      <VERS vnumber=\"3\">Among 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.</VERS>\r\n      <VERS vnumber=\"4\">But God, who is rich in mercy, for his great love wherewith he loved us,</VERS>\r\n      <VERS vnumber=\"5\">Even when we were dead in sins, hath quickened us together with Christ, (by grace ye are saved;)</VERS>\r\n      <VERS vnumber=\"6\">And hath raised us up together, and made us sit together in heavenly places in Christ Jesus:</VERS>\r\n      <VERS vnumber=\"7\">That in the ages to come he might shew the exceeding riches of his grace in his kindness toward us through Christ Jesus.</VERS>\r\n      <VERS vnumber=\"8\">For by grace are ye saved through faith; and that not of yourselves: it is the gift of God:</VERS>\r\n      <VERS vnumber=\"9\">Not of works, lest any man should boast.</VERS>\r\n      <VERS vnumber=\"10\">For we are his workmanship, created in Christ Jesus unto good works, which God hath before ordained that we should walk in them.</VERS>\r\n      <VERS vnumber=\"11\">Wherefore 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;</VERS>\r\n      <VERS vnumber=\"12\">That 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:</VERS>\r\n      <VERS vnumber=\"13\">But now in Christ Jesus ye who sometimes were far off are made nigh by the blood of Christ.</VERS>\r\n      <VERS vnumber=\"14\">For he is our peace, who hath made both one, and hath broken down the middle wall of partition between us;</VERS>\r\n      <VERS vnumber=\"15\">Having 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;</VERS>\r\n      <VERS vnumber=\"16\">And that he might reconcile both unto God in one body by the cross, having slain the enmity thereby:</VERS>\r\n      <VERS vnumber=\"17\">And came and preached peace to you which were afar off, and to them that were nigh.</VERS>\r\n      <VERS vnumber=\"18\">For through him we both have access by one Spirit unto the Father.</VERS>\r\n      <VERS vnumber=\"19\">Now therefore ye are no more strangers and foreigners, but fellowcitizens with the saints, and of the household of God;</VERS>\r\n      <VERS vnumber=\"20\">And are built upon the foundation of the apostles and prophets, Jesus Christ himself being the chief corner stone;</VERS>\r\n      <VERS vnumber=\"21\">In whom all the building fitly framed together groweth unto an holy temple in the Lord:</VERS>\r\n      <VERS vnumber=\"22\">In whom ye also are builded together for an habitation of God through the Spirit.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">For this cause I Paul, the prisoner of Jesus Christ for you Gentiles,</VERS>\r\n      <VERS vnumber=\"2\">If ye have heard of the dispensation of the grace of God which is given me to you-ward:</VERS>\r\n      <VERS vnumber=\"3\">How that by revelation he made known unto me the mystery; (as I wrote afore in few words,</VERS>\r\n      <VERS vnumber=\"4\">Whereby, when ye read, ye may understand my knowledge in the mystery of Christ)</VERS>\r\n      <VERS vnumber=\"5\">Which 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;</VERS>\r\n      <VERS vnumber=\"6\">That the Gentiles should be fellowheirs, and of the same body, and partakers of his promise in Christ by the gospel:</VERS>\r\n      <VERS vnumber=\"7\">Whereof I was made a minister, according to the gift of the grace of God given unto me by the effectual working of his power.</VERS>\r\n      <VERS vnumber=\"8\">Unto 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;</VERS>\r\n      <VERS vnumber=\"9\">And 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:</VERS>\r\n      <VERS vnumber=\"10\">To the intent that now unto the principalities and powers in heavenly places might be known by the church the manifold wisdom of God,</VERS>\r\n      <VERS vnumber=\"11\">According to the eternal purpose which he purposed in Christ Jesus our Lord:</VERS>\r\n      <VERS vnumber=\"12\">In whom we have boldness and access with confidence by the faith of him.</VERS>\r\n      <VERS vnumber=\"13\">Wherefore I desire that ye faint not at my tribulations for you, which is your glory.</VERS>\r\n      <VERS vnumber=\"14\">For this cause I bow my knees unto the Father of our Lord Jesus Christ,</VERS>\r\n      <VERS vnumber=\"15\">Of whom the whole family in heaven and earth is named,</VERS>\r\n      <VERS vnumber=\"16\">That he would grant you, according to the riches of his glory, to be strengthened with might by his Spirit in the inner man;</VERS>\r\n      <VERS vnumber=\"17\">That Christ may dwell in your hearts by faith; that ye, being rooted and grounded in love,</VERS>\r\n      <VERS vnumber=\"18\">May be able to comprehend with all saints what is the breadth, and length, and depth, and height;</VERS>\r\n      <VERS vnumber=\"19\">And to know the love of Christ, which passeth knowledge, that ye might be filled with all the fulness of God.</VERS>\r\n      <VERS vnumber=\"20\">Now unto him that is able to do exceeding abundantly above all that we ask or think, according to the power that worketh in us,</VERS>\r\n      <VERS vnumber=\"21\">Unto him be glory in the church by Christ Jesus throughout all ages, world without end. Amen.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">I therefore, the prisoner of the Lord, beseech you that ye walk worthy of the vocation wherewith ye are called,</VERS>\r\n      <VERS vnumber=\"2\">With all lowliness and meekness, with longsuffering, forbearing one another in love;</VERS>\r\n      <VERS vnumber=\"3\">Endeavouring to keep the unity of the Spirit in the bond of peace.</VERS>\r\n      <VERS vnumber=\"4\">There is one body, and one Spirit, even as ye are called in one hope of your calling;</VERS>\r\n      <VERS vnumber=\"5\">One Lord, one faith, one baptism,</VERS>\r\n      <VERS vnumber=\"6\">One God and Father of all, who is above all, and through all, and in you all.</VERS>\r\n      <VERS vnumber=\"7\">But unto every one of us is given grace according to the measure of the gift of Christ.</VERS>\r\n      <VERS vnumber=\"8\">Wherefore he saith, When he ascended up on high, he led captivity captive, and gave gifts unto men.</VERS>\r\n      <VERS vnumber=\"9\">Now that he ascended, what is it but that he also descended first into the lower parts of the earth?</VERS>\r\n      <VERS vnumber=\"10\">He that descended is the same also that ascended up far above all heavens, that he might fill all things.)</VERS>\r\n      <VERS vnumber=\"11\">And he gave some, apostles; and some, prophets; and some, evangelists; and some, pastors and teachers;</VERS>\r\n      <VERS vnumber=\"12\">For the perfecting of the saints, for the work of the ministry, for the edifying of the body of Christ:</VERS>\r\n      <VERS vnumber=\"13\">Till 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:</VERS>\r\n      <VERS vnumber=\"14\">That 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;</VERS>\r\n      <VERS vnumber=\"15\">But speaking the truth in love, may grow up into him in all things, which is the head, even Christ:</VERS>\r\n      <VERS vnumber=\"16\">From 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.</VERS>\r\n      <VERS vnumber=\"17\">This I say therefore, and testify in the Lord, that ye henceforth walk not as other Gentiles walk, in the vanity of their mind,</VERS>\r\n      <VERS vnumber=\"18\">Having the understanding darkened, being alienated from the life of God through the ignorance that is in them, because of the blindness of their heart:</VERS>\r\n      <VERS vnumber=\"19\">Who being past feeling have given themselves over unto lasciviousness, to work all uncleanness with greediness.</VERS>\r\n      <VERS vnumber=\"20\">But ye have not so learned Christ;</VERS>\r\n      <VERS vnumber=\"21\">If so be that ye have heard him, and have been taught by him, as the truth is in Jesus:</VERS>\r\n      <VERS vnumber=\"22\">That ye put off concerning the former conversation the old man, which is corrupt according to the deceitful lusts;</VERS>\r\n      <VERS vnumber=\"23\">And be renewed in the spirit of your mind;</VERS>\r\n      <VERS vnumber=\"24\">And that ye put on the new man, which after God is created in righteousness and true holiness.</VERS>\r\n      <VERS vnumber=\"25\">Wherefore putting away lying, speak every man truth with his neighbour: for we are members one of another.</VERS>\r\n      <VERS vnumber=\"26\">Be ye angry, and sin not: let not the sun go down upon your wrath:</VERS>\r\n      <VERS vnumber=\"27\">Neither give place to the devil.</VERS>\r\n      <VERS vnumber=\"28\">Let 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.</VERS>\r\n      <VERS vnumber=\"29\">Let 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.</VERS>\r\n      <VERS vnumber=\"30\">And grieve not the holy Spirit of God, whereby ye are sealed unto the day of redemption.</VERS>\r\n      <VERS vnumber=\"31\">Let all bitterness, and wrath, and anger, and clamour, and evil speaking, be put away from you, with all malice:</VERS>\r\n      <VERS vnumber=\"32\">And be ye kind one to another, tenderhearted, forgiving one another, even as God for Christ's sake hath forgiven you.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">Be ye therefore followers of God, as dear children;</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">But fornication, and all uncleanness, or covetousness, let it not be once named among you, as becometh saints;</VERS>\r\n      <VERS vnumber=\"4\">Neither filthiness, nor foolish talking, nor jesting, which are not convenient: but rather giving of thanks.</VERS>\r\n      <VERS vnumber=\"5\">For 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.</VERS>\r\n      <VERS vnumber=\"6\">Let no man deceive you with vain words: for because of these things cometh the wrath of God upon the children of disobedience.</VERS>\r\n      <VERS vnumber=\"7\">Be not ye therefore partakers with them.</VERS>\r\n      <VERS vnumber=\"8\">For ye were sometimes darkness, but now are ye light in the Lord: walk as children of light:</VERS>\r\n      <VERS vnumber=\"9\">For the fruit of the Spirit is in all goodness and righteousness and truth;)</VERS>\r\n      <VERS vnumber=\"10\">Proving what is acceptable unto the Lord.</VERS>\r\n      <VERS vnumber=\"11\">And have no fellowship with the unfruitful works of darkness, but rather reprove them.</VERS>\r\n      <VERS vnumber=\"12\">For it is a shame even to speak of those things which are done of them in secret.</VERS>\r\n      <VERS vnumber=\"13\">But all things that are reproved are made manifest by the light: for whatsoever doth make manifest is light.</VERS>\r\n      <VERS vnumber=\"14\">Wherefore he saith, Awake thou that sleepest, and arise from the dead, and Christ shall give thee light.</VERS>\r\n      <VERS vnumber=\"15\">See then that ye walk circumspectly, not as fools, but as wise,</VERS>\r\n      <VERS vnumber=\"16\">Redeeming the time, because the days are evil.</VERS>\r\n      <VERS vnumber=\"17\">Wherefore be ye not unwise, but understanding what the will of the Lord is.</VERS>\r\n      <VERS vnumber=\"18\">And be not drunk with wine, wherein is excess; but be filled with the Spirit;</VERS>\r\n      <VERS vnumber=\"19\">Speaking to yourselves in psalms and hymns and spiritual songs, singing and making melody in your heart to the Lord;</VERS>\r\n      <VERS vnumber=\"20\">Giving thanks always for all things unto God and the Father in the name of our Lord Jesus Christ;</VERS>\r\n      <VERS vnumber=\"21\">Submitting yourselves one to another in the fear of God.</VERS>\r\n      <VERS vnumber=\"22\">Wives, submit yourselves unto your own husbands, as unto the Lord.</VERS>\r\n      <VERS vnumber=\"23\">For 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.</VERS>\r\n      <VERS vnumber=\"24\">Therefore as the church is subject unto Christ, so let the wives be to their own husbands in every thing.</VERS>\r\n      <VERS vnumber=\"25\">Husbands, love your wives, even as Christ also loved the church, and gave himself for it;</VERS>\r\n      <VERS vnumber=\"26\">That he might sanctify and cleanse it with the washing of water by the word,</VERS>\r\n      <VERS vnumber=\"27\">That 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.</VERS>\r\n      <VERS vnumber=\"28\">So ought men to love their wives as their own bodies. He that loveth his wife loveth himself.</VERS>\r\n      <VERS vnumber=\"29\">For no man ever yet hated his own flesh; but nourisheth and cherisheth it, even as the Lord the church:</VERS>\r\n      <VERS vnumber=\"30\">For we are members of his body, of his flesh, and of his bones.</VERS>\r\n      <VERS vnumber=\"31\">For this cause shall a man leave his father and mother, and shall be joined unto his wife, and they two shall be one flesh.</VERS>\r\n      <VERS vnumber=\"32\">This is a great mystery: but I speak concerning Christ and the church.</VERS>\r\n      <VERS vnumber=\"33\">Nevertheless let every one of you in particular so love his wife even as himself; and the wife see that she reverence her husband.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">Children, obey your parents in the Lord: for this is right.</VERS>\r\n      <VERS vnumber=\"2\">Honour thy father and mother; (which is the first commandment with promise;)</VERS>\r\n      <VERS vnumber=\"3\">That it may be well with thee, and thou mayest live long on the earth.</VERS>\r\n      <VERS vnumber=\"4\">And, ye fathers, provoke not your children to wrath: but bring them up in the nurture and admonition of the Lord.</VERS>\r\n      <VERS vnumber=\"5\">Servants, be obedient to them that are your masters according to the flesh, with fear and trembling, in singleness of your heart, as unto Christ;</VERS>\r\n      <VERS vnumber=\"6\">Not with eyeservice, as menpleasers; but as the servants of Christ, doing the will of God from the heart;</VERS>\r\n      <VERS vnumber=\"7\">With good will doing service, as to the Lord, and not to men:</VERS>\r\n      <VERS vnumber=\"8\">Knowing that whatsoever good thing any man doeth, the same shall he receive of the Lord, whether he be bond or free.</VERS>\r\n      <VERS vnumber=\"9\">And, 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.</VERS>\r\n      <VERS vnumber=\"10\">Finally, my brethren, be strong in the Lord, and in the power of his might.</VERS>\r\n      <VERS vnumber=\"11\">Put on the whole armour of God, that ye may be able to stand against the wiles of the devil.</VERS>\r\n      <VERS vnumber=\"12\">For 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.</VERS>\r\n      <VERS vnumber=\"13\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"14\">Stand therefore, having your loins girt about with truth, and having on the breastplate of righteousness;</VERS>\r\n      <VERS vnumber=\"15\">And your feet shod with the preparation of the gospel of peace;</VERS>\r\n      <VERS vnumber=\"16\">Above all, taking the shield of faith, wherewith ye shall be able to quench all the fiery darts of the wicked.</VERS>\r\n      <VERS vnumber=\"17\">And take the helmet of salvation, and the sword of the Spirit, which is the word of God:</VERS>\r\n      <VERS vnumber=\"18\">Praying always with all prayer and supplication in the Spirit, and watching thereunto with all perseverance and supplication for all saints;</VERS>\r\n      <VERS vnumber=\"19\">And for me, that utterance may be given unto me, that I may open my mouth boldly, to make known the mystery of the gospel,</VERS>\r\n      <VERS vnumber=\"20\">For which I am an ambassador in bonds: that therein I may speak boldly, as I ought to speak.</VERS>\r\n      <VERS vnumber=\"21\">But 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:</VERS>\r\n      <VERS vnumber=\"22\">Whom I have sent unto you for the same purpose, that ye might know our affairs, and that he might comfort your hearts.</VERS>\r\n      <VERS vnumber=\"23\">Peace be to the brethren, and love with faith, from God the Father and the Lord Jesus Christ.</VERS>\r\n      <VERS vnumber=\"24\">Grace be with all them that love our Lord Jesus Christ in sincerity. Amen. </VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"50\" bname=\"Philippians\" bsname=\"Phil\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <CAPTION vref=\"1\">To the Philippians written from Rome, by Epaphroditus.</CAPTION>\r\n      <VERS vnumber=\"1\">Paul and Timotheus, the servants of Jesus Christ, to all the saints in Christ Jesus which are at Philippi, with the bishops and deacons:</VERS>\r\n      <VERS vnumber=\"2\">Grace be unto you, and peace, from God our Father, and from the Lord Jesus Christ.</VERS>\r\n      <VERS vnumber=\"3\">I thank my God upon every remembrance of you,</VERS>\r\n      <VERS vnumber=\"4\">Always in every prayer of mine for you all making request with joy,</VERS>\r\n      <VERS vnumber=\"5\">For your fellowship in the gospel from the first day until now;</VERS>\r\n      <VERS vnumber=\"6\">Being confident of this very thing, that he which hath begun a good work in you will perform it until the day of Jesus Christ:</VERS>\r\n      <VERS vnumber=\"7\">Even 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.</VERS>\r\n      <VERS vnumber=\"8\">For God is my record, how greatly I long after you all in the bowels of Jesus Christ.</VERS>\r\n      <VERS vnumber=\"9\">And this I pray, that your love may abound yet more and more in knowledge and in all judgment;</VERS>\r\n      <VERS vnumber=\"10\">That ye may approve things that are excellent; that ye may be sincere and without offence till the day of Christ;</VERS>\r\n      <VERS vnumber=\"11\">Being filled with the fruits of righteousness, which are by Jesus Christ, unto the glory and praise of God.</VERS>\r\n      <VERS vnumber=\"12\">But I would ye should understand, brethren, that the things which happened unto me have fallen out rather unto the furtherance of the gospel;</VERS>\r\n      <VERS vnumber=\"13\">So that my bonds in Christ are manifest in all the palace, and in all other places;</VERS>\r\n      <VERS vnumber=\"14\">And many of the brethren in the Lord, waxing confident by my bonds, are much more bold to speak the word without fear.</VERS>\r\n      <VERS vnumber=\"15\">Some indeed preach Christ even of envy and strife; and some also of good will:</VERS>\r\n      <VERS vnumber=\"16\">The one preach Christ of contention, not sincerely, supposing to add affliction to my bonds:</VERS>\r\n      <VERS vnumber=\"17\">But the other of love, knowing that I am set for the defence of the gospel.</VERS>\r\n      <VERS vnumber=\"18\">What then? notwithstanding, every way, whether in pretence, or in truth, Christ is preached; and I therein do rejoice, yea, and will rejoice.</VERS>\r\n      <VERS vnumber=\"19\">For I know that this shall turn to my salvation through your prayer, and the supply of the Spirit of Jesus Christ,</VERS>\r\n      <VERS vnumber=\"20\">According 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.</VERS>\r\n      <VERS vnumber=\"21\">For to me to live is Christ, and to die is gain.</VERS>\r\n      <VERS vnumber=\"22\">But if I live in the flesh, this is the fruit of my labour: yet what I shall choose I wot not.</VERS>\r\n      <VERS vnumber=\"23\">For I am in a strait betwixt two, having a desire to depart, and to be with Christ; which is far better:</VERS>\r\n      <VERS vnumber=\"24\">Nevertheless to abide in the flesh is more needful for you.</VERS>\r\n      <VERS vnumber=\"25\">And having this confidence, I know that I shall abide and continue with you all for your furtherance and joy of faith;</VERS>\r\n      <VERS vnumber=\"26\">That your rejoicing may be more abundant in Jesus Christ for me by my coming to you again.</VERS>\r\n      <VERS vnumber=\"27\">Only 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;</VERS>\r\n      <VERS vnumber=\"28\">And in nothing terrified by your adversaries: which is to them an evident token of perdition, but to you of salvation, and that of God.</VERS>\r\n      <VERS vnumber=\"29\">For unto you it is given in the behalf of Christ, not only to believe on him, but also to suffer for his sake;</VERS>\r\n      <VERS vnumber=\"30\">Having the same conflict which ye saw in me, and now hear to be in me.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">If there be therefore any consolation in Christ, if any comfort of love, if any fellowship of the Spirit, if any bowels and mercies,</VERS>\r\n      <VERS vnumber=\"2\">Fulfil ye my joy, that ye be likeminded, having the same love, being of one accord, of one mind.</VERS>\r\n      <VERS vnumber=\"3\">Let nothing be done through strife or vainglory; but in lowliness of mind let each esteem other better than themselves.</VERS>\r\n      <VERS vnumber=\"4\">Look not every man on his own things, but every man also on the things of others.</VERS>\r\n      <VERS vnumber=\"5\">Let this mind be in you, which was also in Christ Jesus:</VERS>\r\n      <VERS vnumber=\"6\">Who, being in the form of God, thought it not robbery to be equal with God:</VERS>\r\n      <VERS vnumber=\"7\">But made himself of no reputation, and took upon him the form of a servant, and was made in the likeness of men:</VERS>\r\n      <VERS vnumber=\"8\">And being found in fashion as a man, he humbled himself, and became obedient unto death, even the death of the cross.</VERS>\r\n      <VERS vnumber=\"9\">Wherefore God also hath highly exalted him, and given him a name which is above every name:</VERS>\r\n      <VERS vnumber=\"10\">That at the name of Jesus every knee should bow, of things in heaven, and things in earth, and things under the earth;</VERS>\r\n      <VERS vnumber=\"11\">And that every tongue should confess that Jesus Christ is Lord, to the glory of God the Father.</VERS>\r\n      <VERS vnumber=\"12\">Wherefore, 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.</VERS>\r\n      <VERS vnumber=\"13\">For it is God which worketh in you both to will and to do of his good pleasure.</VERS>\r\n      <VERS vnumber=\"14\">Do all things without murmurings and disputings:</VERS>\r\n      <VERS vnumber=\"15\">That 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;</VERS>\r\n      <VERS vnumber=\"16\">Holding 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.</VERS>\r\n      <VERS vnumber=\"17\">Yea, and if I be offered upon the sacrifice and service of your faith, I joy, and rejoice with you all.</VERS>\r\n      <VERS vnumber=\"18\">For the same cause also do ye joy, and rejoice with me.</VERS>\r\n      <VERS vnumber=\"19\">But 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.</VERS>\r\n      <VERS vnumber=\"20\">For I have no man likeminded, who will naturally care for your state.</VERS>\r\n      <VERS vnumber=\"21\">For all seek their own, not the things which are Jesus Christ's.</VERS>\r\n      <VERS vnumber=\"22\">But ye know the proof of him, that, as a son with the father, he hath served with me in the gospel.</VERS>\r\n      <VERS vnumber=\"23\">Him therefore I hope to send presently, so soon as I shall see how it will go with me.</VERS>\r\n      <VERS vnumber=\"24\">But I trust in the Lord that I also myself shall come shortly.</VERS>\r\n      <VERS vnumber=\"25\">Yet 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.</VERS>\r\n      <VERS vnumber=\"26\">For he longed after you all, and was full of heaviness, because that ye had heard that he had been sick.</VERS>\r\n      <VERS vnumber=\"27\">For 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.</VERS>\r\n      <VERS vnumber=\"28\">I sent him therefore the more carefully, that, when ye see him again, ye may rejoice, and that I may be the less sorrowful.</VERS>\r\n      <VERS vnumber=\"29\">Receive him therefore in the Lord with all gladness; and hold such in reputation:</VERS>\r\n      <VERS vnumber=\"30\">Because for the work of Christ he was nigh unto death, not regarding his life, to supply your lack of service toward me.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Finally, 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.</VERS>\r\n      <VERS vnumber=\"2\">Beware of dogs, beware of evil workers, beware of the concision.</VERS>\r\n      <VERS vnumber=\"3\">For we are the circumcision, which worship God in the spirit, and rejoice in Christ Jesus, and have no confidence in the flesh.</VERS>\r\n      <VERS vnumber=\"4\">Though 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:</VERS>\r\n      <VERS vnumber=\"5\">Circumcised the eighth day, of the stock of Israel, of the tribe of Benjamin, an Hebrew of the Hebrews; as touching the law, a Pharisee;</VERS>\r\n      <VERS vnumber=\"6\">Concerning zeal, persecuting the church; touching the righteousness which is in the law, blameless.</VERS>\r\n      <VERS vnumber=\"7\">But what things were gain to me, those I counted loss for Christ.</VERS>\r\n      <VERS vnumber=\"8\">Yea 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,</VERS>\r\n      <VERS vnumber=\"9\">And 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:</VERS>\r\n      <VERS vnumber=\"10\">That I may know him, and the power of his resurrection, and the fellowship of his sufferings, being made conformable unto his death;</VERS>\r\n      <VERS vnumber=\"11\">If by any means I might attain unto the resurrection of the dead.</VERS>\r\n      <VERS vnumber=\"12\">Not 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.</VERS>\r\n      <VERS vnumber=\"13\">Brethren, 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,</VERS>\r\n      <VERS vnumber=\"14\">I press toward the mark for the prize of the high calling of God in Christ Jesus.</VERS>\r\n      <VERS vnumber=\"15\">Let 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.</VERS>\r\n      <VERS vnumber=\"16\">Nevertheless, whereto we have already attained, let us walk by the same rule, let us mind the same thing.</VERS>\r\n      <VERS vnumber=\"17\">Brethren, be followers together of me, and mark them which walk so as ye have us for an ensample.</VERS>\r\n      <VERS vnumber=\"18\">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:</VERS>\r\n      <VERS vnumber=\"19\">Whose end is destruction, whose God is their belly, and whose glory is in their shame, who mind earthly things.)</VERS>\r\n      <VERS vnumber=\"20\">For our conversation is in heaven; from whence also we look for the Saviour, the Lord Jesus Christ:</VERS>\r\n      <VERS vnumber=\"21\">Who 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">Therefore, my brethren dearly beloved and longed for, my joy and crown, so stand fast in the Lord, my dearly beloved.</VERS>\r\n      <VERS vnumber=\"2\">I beseech Euodias, and beseech Syntyche, that they be of the same mind in the Lord.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">Rejoice in the Lord alway: and again I say, Rejoice.</VERS>\r\n      <VERS vnumber=\"5\">Let your moderation be known unto all men. The Lord is at hand.</VERS>\r\n      <VERS vnumber=\"6\">Be careful for nothing; but in every thing by prayer and supplication with thanksgiving let your requests be made known unto God.</VERS>\r\n      <VERS vnumber=\"7\">And the peace of God, which passeth all understanding, shall keep your hearts and minds through Christ Jesus.</VERS>\r\n      <VERS vnumber=\"8\">Finally, 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.</VERS>\r\n      <VERS vnumber=\"9\">Those things, which ye have both learned, and received, and heard, and seen in me, do: and the God of peace shall be with you.</VERS>\r\n      <VERS vnumber=\"10\">But 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.</VERS>\r\n      <VERS vnumber=\"11\">Not that I speak in respect of want: for I have learned, in whatsoever state I am, therewith to be content.</VERS>\r\n      <VERS vnumber=\"12\">I 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.</VERS>\r\n      <VERS vnumber=\"13\">I can do all things through Christ which strengtheneth me.</VERS>\r\n      <VERS vnumber=\"14\">Notwithstanding ye have well done, that ye did communicate with my affliction.</VERS>\r\n      <VERS vnumber=\"15\">Now 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.</VERS>\r\n      <VERS vnumber=\"16\">For even in Thessalonica ye sent once and again unto my necessity.</VERS>\r\n      <VERS vnumber=\"17\">Not because I desire a gift: but I desire fruit that may abound to your account.</VERS>\r\n      <VERS vnumber=\"18\">But 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.</VERS>\r\n      <VERS vnumber=\"19\">But my God shall supply all your need according to his riches in glory by Christ Jesus.</VERS>\r\n      <VERS vnumber=\"20\">Now unto God and our Father be glory for ever and ever. Amen.</VERS>\r\n      <VERS vnumber=\"21\">Salute every saint in Christ Jesus. The brethren which are with me greet you.</VERS>\r\n      <VERS vnumber=\"22\">All the saints salute you, chiefly they that are of Caesar's household.</VERS>\r\n      <VERS vnumber=\"23\">The grace of our Lord Jesus Christ be with you all. Amen. </VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"51\" bname=\"Colossians\" bsname=\"Col\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <CAPTION vref=\"1\">Written from Rome to Colossians by Tychicus and Onesimus.</CAPTION>\r\n      <VERS vnumber=\"1\">Paul, an apostle of Jesus Christ by the will of God, and Timotheus our brother,</VERS>\r\n      <VERS vnumber=\"2\">To 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.</VERS>\r\n      <VERS vnumber=\"3\">We give thanks to God and the Father of our Lord Jesus Christ, praying always for you,</VERS>\r\n      <VERS vnumber=\"4\">Since we heard of your faith in Christ Jesus, and of the love which ye have to all the saints,</VERS>\r\n      <VERS vnumber=\"5\">For the hope which is laid up for you in heaven, whereof ye heard before in the word of the truth of the gospel;</VERS>\r\n      <VERS vnumber=\"6\">Which 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:</VERS>\r\n      <VERS vnumber=\"7\">As ye also learned of Epaphras our dear fellowservant, who is for you a faithful minister of Christ;</VERS>\r\n      <VERS vnumber=\"8\">Who also declared unto us your love in the Spirit.</VERS>\r\n      <VERS vnumber=\"9\">For 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;</VERS>\r\n      <VERS vnumber=\"10\">That ye might walk worthy of the Lord unto all pleasing, being fruitful in every good work, and increasing in the knowledge of God;</VERS>\r\n      <VERS vnumber=\"11\">Strengthened with all might, according to his glorious power, unto all patience and longsuffering with joyfulness;</VERS>\r\n      <VERS vnumber=\"12\">Giving thanks unto the Father, which hath made us meet to be partakers of the inheritance of the saints in light:</VERS>\r\n      <VERS vnumber=\"13\">Who hath delivered us from the power of darkness, and hath translated us into the kingdom of his dear Son:</VERS>\r\n      <VERS vnumber=\"14\">In whom we have redemption through his blood, even the forgiveness of sins:</VERS>\r\n      <VERS vnumber=\"15\">Who is the image of the invisible God, the firstborn of every creature:</VERS>\r\n      <VERS vnumber=\"16\">For 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:</VERS>\r\n      <VERS vnumber=\"17\">And he is before all things, and by him all things consist.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">For it pleased the Father that in him should all fulness dwell;</VERS>\r\n      <VERS vnumber=\"20\">And, 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.</VERS>\r\n      <VERS vnumber=\"21\">And you, that were sometime alienated and enemies in your mind by wicked works, yet now hath he reconciled</VERS>\r\n      <VERS vnumber=\"22\">In the body of his flesh through death, to present you holy and unblameable and unreproveable in his sight:</VERS>\r\n      <VERS vnumber=\"23\">If 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;</VERS>\r\n      <VERS vnumber=\"24\">Who 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:</VERS>\r\n      <VERS vnumber=\"25\">Whereof I am made a minister, according to the dispensation of God which is given to me for you, to fulfil the word of God;</VERS>\r\n      <VERS vnumber=\"26\">Even the mystery which hath been hid from ages and from generations, but now is made manifest to his saints:</VERS>\r\n      <VERS vnumber=\"27\">To 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:</VERS>\r\n      <VERS vnumber=\"28\">Whom we preach, warning every man, and teaching every man in all wisdom; that we may present every man perfect in Christ Jesus:</VERS>\r\n      <VERS vnumber=\"29\">Whereunto I also labour, striving according to his working, which worketh in me mightily.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">For 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;</VERS>\r\n      <VERS vnumber=\"2\">That 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;</VERS>\r\n      <VERS vnumber=\"3\">In whom are hid all the treasures of wisdom and knowledge.</VERS>\r\n      <VERS vnumber=\"4\">And this I say, lest any man should beguile you with enticing words.</VERS>\r\n      <VERS vnumber=\"5\">For 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.</VERS>\r\n      <VERS vnumber=\"6\">As ye have therefore received Christ Jesus the Lord, so walk ye in him:</VERS>\r\n      <VERS vnumber=\"7\">Rooted and built up in him, and stablished in the faith, as ye have been taught, abounding therein with thanksgiving.</VERS>\r\n      <VERS vnumber=\"8\">Beware 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.</VERS>\r\n      <VERS vnumber=\"9\">For in him dwelleth all the fulness of the Godhead bodily.</VERS>\r\n      <VERS vnumber=\"10\">And ye are complete in him, which is the head of all principality and power:</VERS>\r\n      <VERS vnumber=\"11\">In 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:</VERS>\r\n      <VERS vnumber=\"12\">Buried 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.</VERS>\r\n      <VERS vnumber=\"13\">And you, being dead in your sins and the uncircumcision of your flesh, hath he quickened together with him, having forgiven you all trespasses;</VERS>\r\n      <VERS vnumber=\"14\">Blotting 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;</VERS>\r\n      <VERS vnumber=\"15\">And having spoiled principalities and powers, he made a shew of them openly, triumphing over them in it.</VERS>\r\n      <VERS vnumber=\"16\">Let 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:</VERS>\r\n      <VERS vnumber=\"17\">Which are a shadow of things to come; but the body is of Christ.</VERS>\r\n      <VERS vnumber=\"18\">Let 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,</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">Wherefore if ye be dead with Christ from the rudiments of the world, why, as though living in the world, are ye subject to ordinances,</VERS>\r\n      <VERS vnumber=\"21\">Touch not; taste not; handle not;</VERS>\r\n      <VERS vnumber=\"22\">Which all are to perish with the using;) after the commandments and doctrines of men?</VERS>\r\n      <VERS vnumber=\"23\">Which 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">If ye then be risen with Christ, seek those things which are above, where Christ sitteth on the right hand of God.</VERS>\r\n      <VERS vnumber=\"2\">Set your affection on things above, not on things on the earth.</VERS>\r\n      <VERS vnumber=\"3\">For ye are dead, and your life is hid with Christ in God.</VERS>\r\n      <VERS vnumber=\"4\">When Christ, who is our life, shall appear, then shall ye also appear with him in glory.</VERS>\r\n      <VERS vnumber=\"5\">Mortify therefore your members which are upon the earth; fornication, uncleanness, inordinate affection, evil concupiscence, and covetousness, which is idolatry:</VERS>\r\n      <VERS vnumber=\"6\">For which things' sake the wrath of God cometh on the children of disobedience:</VERS>\r\n      <VERS vnumber=\"7\">In the which ye also walked some time, when ye lived in them.</VERS>\r\n      <VERS vnumber=\"8\">But now ye also put off all these; anger, wrath, malice, blasphemy, filthy communication out of your mouth.</VERS>\r\n      <VERS vnumber=\"9\">Lie not one to another, seeing that ye have put off the old man with his deeds;</VERS>\r\n      <VERS vnumber=\"10\">And have put on the new man, which is renewed in knowledge after the image of him that created him:</VERS>\r\n      <VERS vnumber=\"11\">Where there is neither Greek nor Jew, circumcision nor uncircumcision, Barbarian, Scythian, bond nor free: but Christ is all, and in all.</VERS>\r\n      <VERS vnumber=\"12\">Put on therefore, as the elect of God, holy and beloved, bowels of mercies, kindness, humbleness of mind, meekness, longsuffering;</VERS>\r\n      <VERS vnumber=\"13\">Forbearing one another, and forgiving one another, if any man have a quarrel against any: even as Christ forgave you, so also do ye.</VERS>\r\n      <VERS vnumber=\"14\">And above all these things put on charity, which is the bond of perfectness.</VERS>\r\n      <VERS vnumber=\"15\">And let the peace of God rule in your hearts, to the which also ye are called in one body; and be ye thankful.</VERS>\r\n      <VERS vnumber=\"16\">Let 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">Wives, submit yourselves unto your own husbands, as it is fit in the Lord.</VERS>\r\n      <VERS vnumber=\"19\">Husbands, love your wives, and be not bitter against them.</VERS>\r\n      <VERS vnumber=\"20\">Children, obey your parents in all things: for this is well pleasing unto the Lord.</VERS>\r\n      <VERS vnumber=\"21\">Fathers, provoke not your children to anger, lest they be discouraged.</VERS>\r\n      <VERS vnumber=\"22\">Servants, obey in all things your masters according to the flesh; not with eyeservice, as menpleasers; but in singleness of heart, fearing God:</VERS>\r\n      <VERS vnumber=\"23\">And whatsoever ye do, do it heartily, as to the Lord, and not unto men;</VERS>\r\n      <VERS vnumber=\"24\">Knowing that of the Lord ye shall receive the reward of the inheritance: for ye serve the Lord Christ.</VERS>\r\n      <VERS vnumber=\"25\">But he that doeth wrong shall receive for the wrong which he hath done: and there is no respect of persons.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">Masters, give unto your servants that which is just and equal; knowing that ye also have a Master in heaven.</VERS>\r\n      <VERS vnumber=\"2\">Continue in prayer, and watch in the same with thanksgiving;</VERS>\r\n      <VERS vnumber=\"3\">Withal 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:</VERS>\r\n      <VERS vnumber=\"4\">That I may make it manifest, as I ought to speak.</VERS>\r\n      <VERS vnumber=\"5\">Walk in wisdom toward them that are without, redeeming the time.</VERS>\r\n      <VERS vnumber=\"6\">Let your speech be alway with grace, seasoned with salt, that ye may know how ye ought to answer every man.</VERS>\r\n      <VERS vnumber=\"7\">All my state shall Tychicus declare unto you, who is a beloved brother, and a faithful minister and fellowservant in the Lord:</VERS>\r\n      <VERS vnumber=\"8\">Whom I have sent unto you for the same purpose, that he might know your estate, and comfort your hearts;</VERS>\r\n      <VERS vnumber=\"9\">With Onesimus, a faithful and beloved brother, who is one of you. They shall make known unto you all things which are done here.</VERS>\r\n      <VERS vnumber=\"10\">Aristarchus my fellowprisoner saluteth you, and Marcus, sister's son to Barnabas, (touching whom ye received commandments: if he come unto you, receive him;)</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">Epaphras, 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.</VERS>\r\n      <VERS vnumber=\"13\">For I bear him record, that he hath a great zeal for you, and them that are in Laodicea, and them in Hierapolis.</VERS>\r\n      <VERS vnumber=\"14\">Luke, the beloved physician, and Demas, greet you.</VERS>\r\n      <VERS vnumber=\"15\">Salute the brethren which are in Laodicea, and Nymphas, and the church which is in his house.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And say to Archippus, Take heed to the ministry which thou hast received in the Lord, that thou fulfil it.</VERS>\r\n      <VERS vnumber=\"18\">The salutation by the hand of me Paul. Remember my bonds. Grace be with you. Amen. </VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"52\" bname=\"1 Thessalonians\" bsname=\"1Thess\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <CAPTION vref=\"1\">The first epistle to the Thessalonians was written from Athens.</CAPTION>\r\n      <VERS vnumber=\"1\">Paul, 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.</VERS>\r\n      <VERS vnumber=\"2\">We give thanks to God always for you all, making mention of you in our prayers;</VERS>\r\n      <VERS vnumber=\"3\">Remembering 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;</VERS>\r\n      <VERS vnumber=\"4\">Knowing, brethren beloved, your election of God.</VERS>\r\n      <VERS vnumber=\"5\">For 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.</VERS>\r\n      <VERS vnumber=\"6\">And ye became followers of us, and of the Lord, having received the word in much affliction, with joy of the Holy Ghost:</VERS>\r\n      <VERS vnumber=\"7\">So that ye were ensamples to all that believe in Macedonia and Achaia.</VERS>\r\n      <VERS vnumber=\"8\">For 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.</VERS>\r\n      <VERS vnumber=\"9\">For 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;</VERS>\r\n      <VERS vnumber=\"10\">And to wait for his Son from heaven, whom he raised from the dead, even Jesus, which delivered us from the wrath to come.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">For yourselves, brethren, know our entrance in unto you, that it was not in vain:</VERS>\r\n      <VERS vnumber=\"2\">But 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.</VERS>\r\n      <VERS vnumber=\"3\">For our exhortation was not of deceit, nor of uncleanness, nor in guile:</VERS>\r\n      <VERS vnumber=\"4\">But 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.</VERS>\r\n      <VERS vnumber=\"5\">For neither at any time used we flattering words, as ye know, nor a cloke of covetousness; God is witness:</VERS>\r\n      <VERS vnumber=\"6\">Nor of men sought we glory, neither of you, nor yet of others, when we might have been burdensome, as the apostles of Christ.</VERS>\r\n      <VERS vnumber=\"7\">But we were gentle among you, even as a nurse cherisheth her children:</VERS>\r\n      <VERS vnumber=\"8\">So 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.</VERS>\r\n      <VERS vnumber=\"9\">For 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.</VERS>\r\n      <VERS vnumber=\"10\">Ye are witnesses, and God also, how holily and justly and unblameably we behaved ourselves among you that believe:</VERS>\r\n      <VERS vnumber=\"11\">As ye know how we exhorted and comforted and charged every one of you, as a father doth his children,</VERS>\r\n      <VERS vnumber=\"12\">That ye would walk worthy of God, who hath called you unto his kingdom and glory.</VERS>\r\n      <VERS vnumber=\"13\">For 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.</VERS>\r\n      <VERS vnumber=\"14\">For 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:</VERS>\r\n      <VERS vnumber=\"15\">Who both killed the Lord Jesus, and their own prophets, and have persecuted us; and they please not God, and are contrary to all men:</VERS>\r\n      <VERS vnumber=\"16\">Forbidding 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.</VERS>\r\n      <VERS vnumber=\"17\">But 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.</VERS>\r\n      <VERS vnumber=\"18\">Wherefore we would have come unto you, even I Paul, once and again; but Satan hindered us.</VERS>\r\n      <VERS vnumber=\"19\">For 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?</VERS>\r\n      <VERS vnumber=\"20\">For ye are our glory and joy.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Wherefore when we could no longer forbear, we thought it good to be left at Athens alone;</VERS>\r\n      <VERS vnumber=\"2\">And 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:</VERS>\r\n      <VERS vnumber=\"3\">That no man should be moved by these afflictions: for yourselves know that we are appointed thereunto.</VERS>\r\n      <VERS vnumber=\"4\">For verily, when we were with you, we told you before that we should suffer tribulation; even as it came to pass, and ye know.</VERS>\r\n      <VERS vnumber=\"5\">For 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.</VERS>\r\n      <VERS vnumber=\"6\">But 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:</VERS>\r\n      <VERS vnumber=\"7\">Therefore, brethren, we were comforted over you in all our affliction and distress by your faith:</VERS>\r\n      <VERS vnumber=\"8\">For now we live, if ye stand fast in the Lord.</VERS>\r\n      <VERS vnumber=\"9\">For what thanks can we render to God again for you, for all the joy wherewith we joy for your sakes before our God;</VERS>\r\n      <VERS vnumber=\"10\">Night and day praying exceedingly that we might see your face, and might perfect that which is lacking in your faith?</VERS>\r\n      <VERS vnumber=\"11\">Now God himself and our Father, and our Lord Jesus Christ, direct our way unto you.</VERS>\r\n      <VERS vnumber=\"12\">And the Lord make you to increase and abound in love one toward another, and toward all men, even as we do toward you:</VERS>\r\n      <VERS vnumber=\"13\">To 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">Furthermore 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.</VERS>\r\n      <VERS vnumber=\"2\">For ye know what commandments we gave you by the Lord Jesus.</VERS>\r\n      <VERS vnumber=\"3\">For this is the will of God, even your sanctification, that ye should abstain from fornication:</VERS>\r\n      <VERS vnumber=\"4\">That every one of you should know how to possess his vessel in sanctification and honour;</VERS>\r\n      <VERS vnumber=\"5\">Not in the lust of concupiscence, even as the Gentiles which know not God:</VERS>\r\n      <VERS vnumber=\"6\">That 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.</VERS>\r\n      <VERS vnumber=\"7\">For God hath not called us unto uncleanness, but unto holiness.</VERS>\r\n      <VERS vnumber=\"8\">He therefore that despiseth, despiseth not man, but God, who hath also given unto us his holy Spirit.</VERS>\r\n      <VERS vnumber=\"9\">But as touching brotherly love ye need not that I write unto you: for ye yourselves are taught of God to love one another.</VERS>\r\n      <VERS vnumber=\"10\">And indeed ye do it toward all the brethren which are in all Macedonia: but we beseech you, brethren, that ye increase more and more;</VERS>\r\n      <VERS vnumber=\"11\">And that ye study to be quiet, and to do your own business, and to work with your own hands, as we commanded you;</VERS>\r\n      <VERS vnumber=\"12\">That ye may walk honestly toward them that are without, and that ye may have lack of nothing.</VERS>\r\n      <VERS vnumber=\"13\">But 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.</VERS>\r\n      <VERS vnumber=\"14\">For if we believe that Jesus died and rose again, even so them also which sleep in Jesus will God bring with him.</VERS>\r\n      <VERS vnumber=\"15\">For 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.</VERS>\r\n      <VERS vnumber=\"16\">For 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:</VERS>\r\n      <VERS vnumber=\"17\">Then 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.</VERS>\r\n      <VERS vnumber=\"18\">Wherefore comfort one another with these words.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">But of the times and the seasons, brethren, ye have no need that I write unto you.</VERS>\r\n      <VERS vnumber=\"2\">For yourselves know perfectly that the day of the Lord so cometh as a thief in the night.</VERS>\r\n      <VERS vnumber=\"3\">For 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.</VERS>\r\n      <VERS vnumber=\"4\">But ye, brethren, are not in darkness, that that day should overtake you as a thief.</VERS>\r\n      <VERS vnumber=\"5\">Ye are all the children of light, and the children of the day: we are not of the night, nor of darkness.</VERS>\r\n      <VERS vnumber=\"6\">Therefore let us not sleep, as do others; but let us watch and be sober.</VERS>\r\n      <VERS vnumber=\"7\">For they that sleep sleep in the night; and they that be drunken are drunken in the night.</VERS>\r\n      <VERS vnumber=\"8\">But 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.</VERS>\r\n      <VERS vnumber=\"9\">For God hath not appointed us to wrath, but to obtain salvation by our Lord Jesus Christ,</VERS>\r\n      <VERS vnumber=\"10\">Who died for us, that, whether we wake or sleep, we should live together with him.</VERS>\r\n      <VERS vnumber=\"11\">Wherefore comfort yourselves together, and edify one another, even as also ye do.</VERS>\r\n      <VERS vnumber=\"12\">And we beseech you, brethren, to know them which labour among you, and are over you in the Lord, and admonish you;</VERS>\r\n      <VERS vnumber=\"13\">And to esteem them very highly in love for their work's sake. And be at peace among yourselves.</VERS>\r\n      <VERS vnumber=\"14\">Now we exhort you, brethren, warn them that are unruly, comfort the feebleminded, support the weak, be patient toward all men.</VERS>\r\n      <VERS vnumber=\"15\">See that none render evil for evil unto any man; but ever follow that which is good, both among yourselves, and to all men.</VERS>\r\n      <VERS vnumber=\"16\">Rejoice evermore.</VERS>\r\n      <VERS vnumber=\"17\">Pray without ceasing.</VERS>\r\n      <VERS vnumber=\"18\">In every thing give thanks: for this is the will of God in Christ Jesus concerning you.</VERS>\r\n      <VERS vnumber=\"19\">Quench not the Spirit.</VERS>\r\n      <VERS vnumber=\"20\">Despise not prophesyings.</VERS>\r\n      <VERS vnumber=\"21\">Prove all things; hold fast that which is good.</VERS>\r\n      <VERS vnumber=\"22\">Abstain from all appearance of evil.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">Faithful is he that calleth you, who also will do it.</VERS>\r\n      <VERS vnumber=\"25\">Brethren, pray for us.</VERS>\r\n      <VERS vnumber=\"26\">Greet all the brethren with an holy kiss.</VERS>\r\n      <VERS vnumber=\"27\">I charge you by the Lord that this epistle be read unto all the holy brethren.</VERS>\r\n      <VERS vnumber=\"28\">The grace of our Lord Jesus Christ be with you. Amen. </VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"53\" bname=\"2 Thessalonians\" bsname=\"2Thess\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <CAPTION vref=\"1\">The second epistle to the Thessalonians was written from Athens.</CAPTION>\r\n      <VERS vnumber=\"1\">Paul, and Silvanus, and Timotheus, unto the church of the Thessalonians in God our Father and the Lord Jesus Christ:</VERS>\r\n      <VERS vnumber=\"2\">Grace unto you, and peace, from God our Father and the Lord Jesus Christ.</VERS>\r\n      <VERS vnumber=\"3\">We 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;</VERS>\r\n      <VERS vnumber=\"4\">So 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:</VERS>\r\n      <VERS vnumber=\"5\">Which 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:</VERS>\r\n      <VERS vnumber=\"6\">Seeing it is a righteous thing with God to recompense tribulation to them that trouble you;</VERS>\r\n      <VERS vnumber=\"7\">And to you who are troubled rest with us, when the Lord Jesus shall be revealed from heaven with his mighty angels,</VERS>\r\n      <VERS vnumber=\"8\">In flaming fire taking vengeance on them that know not God, and that obey not the gospel of our Lord Jesus Christ:</VERS>\r\n      <VERS vnumber=\"9\">Who shall be punished with everlasting destruction from the presence of the Lord, and from the glory of his power;</VERS>\r\n      <VERS vnumber=\"10\">When 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.</VERS>\r\n      <VERS vnumber=\"11\">Wherefore 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:</VERS>\r\n      <VERS vnumber=\"12\">That 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">Now we beseech you, brethren, by the coming of our Lord Jesus Christ, and by our gathering together unto him,</VERS>\r\n      <VERS vnumber=\"2\">That 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.</VERS>\r\n      <VERS vnumber=\"3\">Let 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;</VERS>\r\n      <VERS vnumber=\"4\">Who 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.</VERS>\r\n      <VERS vnumber=\"5\">Remember ye not, that, when I was yet with you, I told you these things?</VERS>\r\n      <VERS vnumber=\"6\">And now ye know what withholdeth that he might be revealed in his time.</VERS>\r\n      <VERS vnumber=\"7\">For the mystery of iniquity doth already work: only he who now letteth will let, until he be taken out of the way.</VERS>\r\n      <VERS vnumber=\"8\">And 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:</VERS>\r\n      <VERS vnumber=\"9\">Even him, whose coming is after the working of Satan with all power and signs and lying wonders,</VERS>\r\n      <VERS vnumber=\"10\">And with all deceivableness of unrighteousness in them that perish; because they received not the love of the truth, that they might be saved.</VERS>\r\n      <VERS vnumber=\"11\">And for this cause God shall send them strong delusion, that they should believe a lie:</VERS>\r\n      <VERS vnumber=\"12\">That they all might be damned who believed not the truth, but had pleasure in unrighteousness.</VERS>\r\n      <VERS vnumber=\"13\">But 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:</VERS>\r\n      <VERS vnumber=\"14\">Whereunto he called you by our gospel, to the obtaining of the glory of our Lord Jesus Christ.</VERS>\r\n      <VERS vnumber=\"15\">Therefore, brethren, stand fast, and hold the traditions which ye have been taught, whether by word, or our epistle.</VERS>\r\n      <VERS vnumber=\"16\">Now 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,</VERS>\r\n      <VERS vnumber=\"17\">Comfort your hearts, and stablish you in every good word and work.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Finally, brethren, pray for us, that the word of the Lord may have free course, and be glorified, even as it is with you:</VERS>\r\n      <VERS vnumber=\"2\">And that we may be delivered from unreasonable and wicked men: for all men have not faith.</VERS>\r\n      <VERS vnumber=\"3\">But the Lord is faithful, who shall stablish you, and keep you from evil.</VERS>\r\n      <VERS vnumber=\"4\">And we have confidence in the Lord touching you, that ye both do and will do the things which we command you.</VERS>\r\n      <VERS vnumber=\"5\">And the Lord direct your hearts into the love of God, and into the patient waiting for Christ.</VERS>\r\n      <VERS vnumber=\"6\">Now 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.</VERS>\r\n      <VERS vnumber=\"7\">For yourselves know how ye ought to follow us: for we behaved not ourselves disorderly among you;</VERS>\r\n      <VERS vnumber=\"8\">Neither 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:</VERS>\r\n      <VERS vnumber=\"9\">Not because we have not power, but to make ourselves an ensample unto you to follow us.</VERS>\r\n      <VERS vnumber=\"10\">For even when we were with you, this we commanded you, that if any would not work, neither should he eat.</VERS>\r\n      <VERS vnumber=\"11\">For we hear that there are some which walk among you disorderly, working not at all, but are busybodies.</VERS>\r\n      <VERS vnumber=\"12\">Now them that are such we command and exhort by our Lord Jesus Christ, that with quietness they work, and eat their own bread.</VERS>\r\n      <VERS vnumber=\"13\">But ye, brethren, be not weary in well doing.</VERS>\r\n      <VERS vnumber=\"14\">And if any man obey not our word by this epistle, note that man, and have no company with him, that he may be ashamed.</VERS>\r\n      <VERS vnumber=\"15\">Yet count him not as an enemy, but admonish him as a brother.</VERS>\r\n      <VERS vnumber=\"16\">Now the Lord of peace himself give you peace always by all means. The Lord be with you all.</VERS>\r\n      <VERS vnumber=\"17\">The salutation of Paul with mine own hand, which is the token in every epistle: so I write.</VERS>\r\n      <VERS vnumber=\"18\">The grace of our Lord Jesus Christ be with you all. Amen. </VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"54\" bname=\"1 Timothy\" bsname=\"1Tim\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <CAPTION vref=\"1\">The first to Timothy was written from Laodicea, which is the chiefest city of Phrygia Pacatiana.</CAPTION>\r\n      <VERS vnumber=\"1\">Paul, an apostle of Jesus Christ by the commandment of God our Saviour, and Lord Jesus Christ, which is our hope;</VERS>\r\n      <VERS vnumber=\"2\">Unto Timothy, my own son in the faith: Grace, mercy, and peace, from God our Father and Jesus Christ our Lord.</VERS>\r\n      <VERS vnumber=\"3\">As I besought thee to abide still at Ephesus, when I went into Macedonia, that thou mightest charge some that they teach no other doctrine,</VERS>\r\n      <VERS vnumber=\"4\">Neither give heed to fables and endless genealogies, which minister questions, rather than godly edifying which is in faith: so do.</VERS>\r\n      <VERS vnumber=\"5\">Now the end of the commandment is charity out of a pure heart, and of a good conscience, and of faith unfeigned:</VERS>\r\n      <VERS vnumber=\"6\">From which some having swerved have turned aside unto vain jangling;</VERS>\r\n      <VERS vnumber=\"7\">Desiring to be teachers of the law; understanding neither what they say, nor whereof they affirm.</VERS>\r\n      <VERS vnumber=\"8\">But we know that the law is good, if a man use it lawfully;</VERS>\r\n      <VERS vnumber=\"9\">Knowing 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,</VERS>\r\n      <VERS vnumber=\"10\">For 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;</VERS>\r\n      <VERS vnumber=\"11\">According to the glorious gospel of the blessed God, which was committed to my trust.</VERS>\r\n      <VERS vnumber=\"12\">And I thank Christ Jesus our Lord, who hath enabled me, for that he counted me faithful, putting me into the ministry;</VERS>\r\n      <VERS vnumber=\"13\">Who was before a blasphemer, and a persecutor, and injurious: but I obtained mercy, because I did it ignorantly in unbelief.</VERS>\r\n      <VERS vnumber=\"14\">And the grace of our Lord was exceeding abundant with faith and love which is in Christ Jesus.</VERS>\r\n      <VERS vnumber=\"15\">This is a faithful saying, and worthy of all acceptation, that Christ Jesus came into the world to save sinners; of whom I am chief.</VERS>\r\n      <VERS vnumber=\"16\">Howbeit 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.</VERS>\r\n      <VERS vnumber=\"17\">Now unto the King eternal, immortal, invisible, the only wise God, be honour and glory for ever and ever. Amen.</VERS>\r\n      <VERS vnumber=\"18\">This 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;</VERS>\r\n      <VERS vnumber=\"19\">Holding faith, and a good conscience; which some having put away concerning faith have made shipwreck:</VERS>\r\n      <VERS vnumber=\"20\">Of whom is Hymenaeus and Alexander; whom I have delivered unto Satan, that they may learn not to blaspheme.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">I exhort therefore, that, first of all, supplications, prayers, intercessions, and giving of thanks, be made for all men;</VERS>\r\n      <VERS vnumber=\"2\">For kings, and for all that are in authority; that we may lead a quiet and peaceable life in all godliness and honesty.</VERS>\r\n      <VERS vnumber=\"3\">For this is good and acceptable in the sight of God our Saviour;</VERS>\r\n      <VERS vnumber=\"4\">Who will have all men to be saved, and to come unto the knowledge of the truth.</VERS>\r\n      <VERS vnumber=\"5\">For there is one God, and one mediator between God and men, the man Christ Jesus;</VERS>\r\n      <VERS vnumber=\"6\">Who gave himself a ransom for all, to be testified in due time.</VERS>\r\n      <VERS vnumber=\"7\">Whereunto 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.</VERS>\r\n      <VERS vnumber=\"8\">I will therefore that men pray every where, lifting up holy hands, without wrath and doubting.</VERS>\r\n      <VERS vnumber=\"9\">In 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;</VERS>\r\n      <VERS vnumber=\"10\">But (which becometh women professing godliness) with good works.</VERS>\r\n      <VERS vnumber=\"11\">Let the woman learn in silence with all subjection.</VERS>\r\n      <VERS vnumber=\"12\">But I suffer not a woman to teach, nor to usurp authority over the man, but to be in silence.</VERS>\r\n      <VERS vnumber=\"13\">For Adam was first formed, then Eve.</VERS>\r\n      <VERS vnumber=\"14\">And Adam was not deceived, but the woman being deceived was in the transgression.</VERS>\r\n      <VERS vnumber=\"15\">Notwithstanding she shall be saved in childbearing, if they continue in faith and charity and holiness with sobriety.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">This is a true saying, If a man desire the office of a bishop, he desireth a good work.</VERS>\r\n      <VERS vnumber=\"2\">A bishop then must be blameless, the husband of one wife, vigilant, sober, of good behaviour, given to hospitality, apt to teach;</VERS>\r\n      <VERS vnumber=\"3\">Not given to wine, no striker, not greedy of filthy lucre; but patient, not a brawler, not covetous;</VERS>\r\n      <VERS vnumber=\"4\">One that ruleth well his own house, having his children in subjection with all gravity;</VERS>\r\n      <VERS vnumber=\"5\">For if a man know not how to rule his own house, how shall he take care of the church of God?)</VERS>\r\n      <VERS vnumber=\"6\">Not a novice, lest being lifted up with pride he fall into the condemnation of the devil.</VERS>\r\n      <VERS vnumber=\"7\">Moreover he must have a good report of them which are without; lest he fall into reproach and the snare of the devil.</VERS>\r\n      <VERS vnumber=\"8\">Likewise must the deacons be grave, not doubletongued, not given to much wine, not greedy of filthy lucre;</VERS>\r\n      <VERS vnumber=\"9\">Holding the mystery of the faith in a pure conscience.</VERS>\r\n      <VERS vnumber=\"10\">And let these also first be proved; then let them use the office of a deacon, being found blameless.</VERS>\r\n      <VERS vnumber=\"11\">Even so must their wives be grave, not slanderers, sober, faithful in all things.</VERS>\r\n      <VERS vnumber=\"12\">Let the deacons be the husbands of one wife, ruling their children and their own houses well.</VERS>\r\n      <VERS vnumber=\"13\">For 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.</VERS>\r\n      <VERS vnumber=\"14\">These things write I unto thee, hoping to come unto thee shortly:</VERS>\r\n      <VERS vnumber=\"15\">But 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">Now the Spirit speaketh expressly, that in the latter times some shall depart from the faith, giving heed to seducing spirits, and doctrines of devils;</VERS>\r\n      <VERS vnumber=\"2\">Speaking lies in hypocrisy; having their conscience seared with a hot iron;</VERS>\r\n      <VERS vnumber=\"3\">Forbidding 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.</VERS>\r\n      <VERS vnumber=\"4\">For every creature of God is good, and nothing to be refused, if it be received with thanksgiving:</VERS>\r\n      <VERS vnumber=\"5\">For it is sanctified by the word of God and prayer.</VERS>\r\n      <VERS vnumber=\"6\">If 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.</VERS>\r\n      <VERS vnumber=\"7\">But refuse profane and old wives' fables, and exercise thyself rather unto godliness.</VERS>\r\n      <VERS vnumber=\"8\">For 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.</VERS>\r\n      <VERS vnumber=\"9\">This is a faithful saying and worthy of all acceptation.</VERS>\r\n      <VERS vnumber=\"10\">For 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.</VERS>\r\n      <VERS vnumber=\"11\">These things command and teach.</VERS>\r\n      <VERS vnumber=\"12\">Let 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.</VERS>\r\n      <VERS vnumber=\"13\">Till I come, give attendance to reading, to exhortation, to doctrine.</VERS>\r\n      <VERS vnumber=\"14\">Neglect not the gift that is in thee, which was given thee by prophecy, with the laying on of the hands of the presbytery.</VERS>\r\n      <VERS vnumber=\"15\">Meditate upon these things; give thyself wholly to them; that thy profiting may appear to all.</VERS>\r\n      <VERS vnumber=\"16\">Take heed unto thyself, and unto the doctrine; continue in them: for in doing this thou shalt both save thyself, and them that hear thee.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">Rebuke not an elder, but intreat him as a father; and the younger men as brethren;</VERS>\r\n      <VERS vnumber=\"2\">The elder women as mothers; the younger as sisters, with all purity.</VERS>\r\n      <VERS vnumber=\"3\">Honour widows that are widows indeed.</VERS>\r\n      <VERS vnumber=\"4\">But 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.</VERS>\r\n      <VERS vnumber=\"5\">Now she that is a widow indeed, and desolate, trusteth in God, and continueth in supplications and prayers night and day.</VERS>\r\n      <VERS vnumber=\"6\">But she that liveth in pleasure is dead while she liveth.</VERS>\r\n      <VERS vnumber=\"7\">And these things give in charge, that they may be blameless.</VERS>\r\n      <VERS vnumber=\"8\">But 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.</VERS>\r\n      <VERS vnumber=\"9\">Let not a widow be taken into the number under threescore years old, having been the wife of one man,</VERS>\r\n      <VERS vnumber=\"10\">Well 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.</VERS>\r\n      <VERS vnumber=\"11\">But the younger widows refuse: for when they have begun to wax wanton against Christ, they will marry;</VERS>\r\n      <VERS vnumber=\"12\">Having damnation, because they have cast off their first faith.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">I will therefore that the younger women marry, bear children, guide the house, give none occasion to the adversary to speak reproachfully.</VERS>\r\n      <VERS vnumber=\"15\">For some are already turned aside after Satan.</VERS>\r\n      <VERS vnumber=\"16\">If 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.</VERS>\r\n      <VERS vnumber=\"17\">Let the elders that rule well be counted worthy of double honour, especially they who labour in the word and doctrine.</VERS>\r\n      <VERS vnumber=\"18\">For the scripture saith, Thou shalt not muzzle the ox that treadeth out the corn. And, The labourer is worthy of his reward.</VERS>\r\n      <VERS vnumber=\"19\">Against an elder receive not an accusation, but before two or three witnesses.</VERS>\r\n      <VERS vnumber=\"20\">Them that sin rebuke before all, that others also may fear.</VERS>\r\n      <VERS vnumber=\"21\">I 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.</VERS>\r\n      <VERS vnumber=\"22\">Lay hands suddenly on no man, neither be partaker of other men's sins: keep thyself pure.</VERS>\r\n      <VERS vnumber=\"23\">Drink no longer water, but use a little wine for thy stomach's sake and thine often infirmities.</VERS>\r\n      <VERS vnumber=\"24\">Some men's sins are open beforehand, going before to judgment; and some men they follow after.</VERS>\r\n      <VERS vnumber=\"25\">Likewise also the good works of some are manifest beforehand; and they that are otherwise cannot be hid.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">Let 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">If 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;</VERS>\r\n      <VERS vnumber=\"4\">He is proud, knowing nothing, but doting about questions and strifes of words, whereof cometh envy, strife, railings, evil surmisings,</VERS>\r\n      <VERS vnumber=\"5\">Perverse disputings of men of corrupt minds, and destitute of the truth, supposing that gain is godliness: from such withdraw thyself.</VERS>\r\n      <VERS vnumber=\"6\">But godliness with contentment is great gain.</VERS>\r\n      <VERS vnumber=\"7\">For we brought nothing into this world, and it is certain we can carry nothing out.</VERS>\r\n      <VERS vnumber=\"8\">And having food and raiment let us be therewith content.</VERS>\r\n      <VERS vnumber=\"9\">But 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.</VERS>\r\n      <VERS vnumber=\"10\">For 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.</VERS>\r\n      <VERS vnumber=\"11\">But thou, O man of God, flee these things; and follow after righteousness, godliness, faith, love, patience, meekness.</VERS>\r\n      <VERS vnumber=\"12\">Fight the good fight of faith, lay hold on eternal life, whereunto thou art also called, and hast professed a good profession before many witnesses.</VERS>\r\n      <VERS vnumber=\"13\">I give thee charge in the sight of God, who quickeneth all things, and before Christ Jesus, who before Pontius Pilate witnessed a good confession;</VERS>\r\n      <VERS vnumber=\"14\">That thou keep this commandment without spot, unrebukeable, until the appearing of our Lord Jesus Christ:</VERS>\r\n      <VERS vnumber=\"15\">Which in his times he shall shew, who is the blessed and only Potentate, the King of kings, and Lord of lords;</VERS>\r\n      <VERS vnumber=\"16\">Who 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.</VERS>\r\n      <VERS vnumber=\"17\">Charge 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;</VERS>\r\n      <VERS vnumber=\"18\">That they do good, that they be rich in good works, ready to distribute, willing to communicate;</VERS>\r\n      <VERS vnumber=\"19\">Laying up in store for themselves a good foundation against the time to come, that they may lay hold on eternal life.</VERS>\r\n      <VERS vnumber=\"20\">O Timothy, keep that which is committed to thy trust, avoiding profane and vain babblings, and oppositions of science falsely so called:</VERS>\r\n      <VERS vnumber=\"21\">Which some professing have erred concerning the faith. Grace be with thee. Amen. </VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"55\" bname=\"2 Timothy\" bsname=\"2Tim\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <CAPTION vref=\"1\">The second epistle unto Timotheus, ordained the first bishop of the church of the Ephesians, was written from Rome, when Paul was brought before Nero the second time.</CAPTION>\r\n      <VERS vnumber=\"1\">Paul, an apostle of Jesus Christ by the will of God, according to the promise of life which is in Christ Jesus,</VERS>\r\n      <VERS vnumber=\"2\">To Timothy, my dearly beloved son: Grace, mercy, and peace, from God the Father and Christ Jesus our Lord.</VERS>\r\n      <VERS vnumber=\"3\">I 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;</VERS>\r\n      <VERS vnumber=\"4\">Greatly desiring to see thee, being mindful of thy tears, that I may be filled with joy;</VERS>\r\n      <VERS vnumber=\"5\">When 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.</VERS>\r\n      <VERS vnumber=\"6\">Wherefore I put thee in remembrance that thou stir up the gift of God, which is in thee by the putting on of my hands.</VERS>\r\n      <VERS vnumber=\"7\">For God hath not given us the spirit of fear; but of power, and of love, and of a sound mind.</VERS>\r\n      <VERS vnumber=\"8\">Be 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;</VERS>\r\n      <VERS vnumber=\"9\">Who 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,</VERS>\r\n      <VERS vnumber=\"10\">But 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:</VERS>\r\n      <VERS vnumber=\"11\">Whereunto I am appointed a preacher, and an apostle, and a teacher of the Gentiles.</VERS>\r\n      <VERS vnumber=\"12\">For 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.</VERS>\r\n      <VERS vnumber=\"13\">Hold fast the form of sound words, which thou hast heard of me, in faith and love which is in Christ Jesus.</VERS>\r\n      <VERS vnumber=\"14\">That good thing which was committed unto thee keep by the Holy Ghost which dwelleth in us.</VERS>\r\n      <VERS vnumber=\"15\">This thou knowest, that all they which are in Asia be turned away from me; of whom are Phygellus and Hermogenes.</VERS>\r\n      <VERS vnumber=\"16\">The Lord give mercy unto the house of Onesiphorus; for he oft refreshed me, and was not ashamed of my chain:</VERS>\r\n      <VERS vnumber=\"17\">But, when he was in Rome, he sought me out very diligently, and found me.</VERS>\r\n      <VERS vnumber=\"18\">The 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">Thou therefore, my son, be strong in the grace that is in Christ Jesus.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">Thou therefore endure hardness, as a good soldier of Jesus Christ.</VERS>\r\n      <VERS vnumber=\"4\">No man that warreth entangleth himself with the affairs of this life; that he may please him who hath chosen him to be a soldier.</VERS>\r\n      <VERS vnumber=\"5\">And if a man also strive for masteries, yet is he not crowned, except he strive lawfully.</VERS>\r\n      <VERS vnumber=\"6\">The husbandman that laboureth must be first partaker of the fruits.</VERS>\r\n      <VERS vnumber=\"7\">Consider what I say; and the Lord give thee understanding in all things.</VERS>\r\n      <VERS vnumber=\"8\">Remember that Jesus Christ of the seed of David was raised from the dead according to my gospel:</VERS>\r\n      <VERS vnumber=\"9\">Wherein I suffer trouble, as an evil doer, even unto bonds; but the word of God is not bound.</VERS>\r\n      <VERS vnumber=\"10\">Therefore I endure all things for the elect's sakes, that they may also obtain the salvation which is in Christ Jesus with eternal glory.</VERS>\r\n      <VERS vnumber=\"11\">It is a faithful saying: For if we be dead with him, we shall also live with him:</VERS>\r\n      <VERS vnumber=\"12\">If we suffer, we shall also reign with him: if we deny him, he also will deny us:</VERS>\r\n      <VERS vnumber=\"13\">If we believe not, yet he abideth faithful: he cannot deny himself.</VERS>\r\n      <VERS vnumber=\"14\">Of 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.</VERS>\r\n      <VERS vnumber=\"15\">Study to shew thyself approved unto God, a workman that needeth not to be ashamed, rightly dividing the word of truth.</VERS>\r\n      <VERS vnumber=\"16\">But shun profane and vain babblings: for they will increase unto more ungodliness.</VERS>\r\n      <VERS vnumber=\"17\">And their word will eat as doth a canker: of whom is Hymenaeus and Philetus;</VERS>\r\n      <VERS vnumber=\"18\">Who concerning the truth have erred, saying that the resurrection is past already; and overthrow the faith of some.</VERS>\r\n      <VERS vnumber=\"19\">Nevertheless 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.</VERS>\r\n      <VERS vnumber=\"20\">But 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.</VERS>\r\n      <VERS vnumber=\"21\">If 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.</VERS>\r\n      <VERS vnumber=\"22\">Flee also youthful lusts: but follow righteousness, faith, charity, peace, with them that call on the Lord out of a pure heart.</VERS>\r\n      <VERS vnumber=\"23\">But foolish and unlearned questions avoid, knowing that they do gender strifes.</VERS>\r\n      <VERS vnumber=\"24\">And the servant of the Lord must not strive; but be gentle unto all men, apt to teach, patient,</VERS>\r\n      <VERS vnumber=\"25\">In meekness instructing those that oppose themselves; if God peradventure will give them repentance to the acknowledging of the truth;</VERS>\r\n      <VERS vnumber=\"26\">And that they may recover themselves out of the snare of the devil, who are taken captive by him at his will.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">This know also, that in the last days perilous times shall come.</VERS>\r\n      <VERS vnumber=\"2\">For men shall be lovers of their own selves, covetous, boasters, proud, blasphemers, disobedient to parents, unthankful, unholy,</VERS>\r\n      <VERS vnumber=\"3\">Without natural affection, trucebreakers, false accusers, incontinent, fierce, despisers of those that are good,</VERS>\r\n      <VERS vnumber=\"4\">Traitors, heady, highminded, lovers of pleasures more than lovers of God;</VERS>\r\n      <VERS vnumber=\"5\">Having a form of godliness, but denying the power thereof: from such turn away.</VERS>\r\n      <VERS vnumber=\"6\">For of this sort are they which creep into houses, and lead captive silly women laden with sins, led away with divers lusts,</VERS>\r\n      <VERS vnumber=\"7\">Ever learning, and never able to come to the knowledge of the truth.</VERS>\r\n      <VERS vnumber=\"8\">Now as Jannes and Jambres withstood Moses, so do these also resist the truth: men of corrupt minds, reprobate concerning the faith.</VERS>\r\n      <VERS vnumber=\"9\">But they shall proceed no further: for their folly shall be manifest unto all men, as theirs also was.</VERS>\r\n      <VERS vnumber=\"10\">But thou hast fully known my doctrine, manner of life, purpose, faith, longsuffering, charity, patience,</VERS>\r\n      <VERS vnumber=\"11\">Persecutions, afflictions, which came unto me at Antioch, at Iconium, at Lystra; what persecutions I endured: but out of them all the Lord delivered me.</VERS>\r\n      <VERS vnumber=\"12\">Yea, and all that will live godly in Christ Jesus shall suffer persecution.</VERS>\r\n      <VERS vnumber=\"13\">But evil men and seducers shall wax worse and worse, deceiving, and being deceived.</VERS>\r\n      <VERS vnumber=\"14\">But continue thou in the things which thou hast learned and hast been assured of, knowing of whom thou hast learned them;</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">All scripture is given by inspiration of God, and is profitable for doctrine, for reproof, for correction, for instruction in righteousness:</VERS>\r\n      <VERS vnumber=\"17\">That the man of God may be perfect, throughly furnished unto all good works.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">I charge thee therefore before God, and the Lord Jesus Christ, who shall judge the quick and the dead at his appearing and his kingdom;</VERS>\r\n      <VERS vnumber=\"2\">Preach the word; be instant in season, out of season; reprove, rebuke, exhort with all longsuffering and doctrine.</VERS>\r\n      <VERS vnumber=\"3\">For 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;</VERS>\r\n      <VERS vnumber=\"4\">And they shall turn away their ears from the truth, and shall be turned unto fables.</VERS>\r\n      <VERS vnumber=\"5\">But watch thou in all things, endure afflictions, do the work of an evangelist, make full proof of thy ministry.</VERS>\r\n      <VERS vnumber=\"6\">For I am now ready to be offered, and the time of my departure is at hand.</VERS>\r\n      <VERS vnumber=\"7\">I have fought a good fight, I have finished my course, I have kept the faith:</VERS>\r\n      <VERS vnumber=\"8\">Henceforth 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.</VERS>\r\n      <VERS vnumber=\"9\">Do thy diligence to come shortly unto me:</VERS>\r\n      <VERS vnumber=\"10\">For Demas hath forsaken me, having loved this present world, and is departed unto Thessalonica; Crescens to Galatia, Titus unto Dalmatia.</VERS>\r\n      <VERS vnumber=\"11\">Only Luke is with me. Take Mark, and bring him with thee: for he is profitable to me for the ministry.</VERS>\r\n      <VERS vnumber=\"12\">And Tychicus have I sent to Ephesus.</VERS>\r\n      <VERS vnumber=\"13\">The cloke that I left at Troas with Carpus, when thou comest, bring with thee, and the books, but especially the parchments.</VERS>\r\n      <VERS vnumber=\"14\">Alexander the coppersmith did me much evil: the Lord reward him according to his works:</VERS>\r\n      <VERS vnumber=\"15\">Of whom be thou ware also; for he hath greatly withstood our words.</VERS>\r\n      <VERS vnumber=\"16\">At 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.</VERS>\r\n      <VERS vnumber=\"17\">Notwithstanding 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">Salute Prisca and Aquila, and the household of Onesiphorus.</VERS>\r\n      <VERS vnumber=\"20\">Erastus abode at Corinth: but Trophimus have I left at Miletum sick.</VERS>\r\n      <VERS vnumber=\"21\">Do thy diligence to come before winter. Eubulus greeteth thee, and Pudens, and Linus, and Claudia, and all the brethren.</VERS>\r\n      <VERS vnumber=\"22\">The Lord Jesus Christ be with thy spirit. Grace be with you. Amen. </VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"56\" bname=\"Titus\" bsname=\"Titus\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <CAPTION vref=\"1\">It was written to Titus, ordained the first bishop of the church of the Cretians, from Nicopolis of Macedonia.</CAPTION>\r\n      <VERS vnumber=\"1\">Paul, 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;</VERS>\r\n      <VERS vnumber=\"2\">In hope of eternal life, which God, that cannot lie, promised before the world began;</VERS>\r\n      <VERS vnumber=\"3\">But hath in due times manifested his word through preaching, which is committed unto me according to the commandment of God our Saviour;</VERS>\r\n      <VERS vnumber=\"4\">To Titus, mine own son after the common faith: Grace, mercy, and peace, from God the Father and the Lord Jesus Christ our Saviour.</VERS>\r\n      <VERS vnumber=\"5\">For 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:</VERS>\r\n      <VERS vnumber=\"6\">If any be blameless, the husband of one wife, having faithful children not accused of riot or unruly.</VERS>\r\n      <VERS vnumber=\"7\">For 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;</VERS>\r\n      <VERS vnumber=\"8\">But a lover of hospitality, a lover of good men, sober, just, holy, temperate;</VERS>\r\n      <VERS vnumber=\"9\">Holding 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.</VERS>\r\n      <VERS vnumber=\"10\">For there are many unruly and vain talkers and deceivers, specially they of the circumcision:</VERS>\r\n      <VERS vnumber=\"11\">Whose mouths must be stopped, who subvert whole houses, teaching things which they ought not, for filthy lucre's sake.</VERS>\r\n      <VERS vnumber=\"12\">One of themselves, even a prophet of their own, said, The Cretians are alway liars, evil beasts, slow bellies.</VERS>\r\n      <VERS vnumber=\"13\">This witness is true. Wherefore rebuke them sharply, that they may be sound in the faith;</VERS>\r\n      <VERS vnumber=\"14\">Not giving heed to Jewish fables, and commandments of men, that turn from the truth.</VERS>\r\n      <VERS vnumber=\"15\">Unto 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.</VERS>\r\n      <VERS vnumber=\"16\">They profess that they know God; but in works they deny him, being abominable, and disobedient, and unto every good work reprobate.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">But speak thou the things which become sound doctrine:</VERS>\r\n      <VERS vnumber=\"2\">That the aged men be sober, grave, temperate, sound in faith, in charity, in patience.</VERS>\r\n      <VERS vnumber=\"3\">The aged women likewise, that they be in behaviour as becometh holiness, not false accusers, not given to much wine, teachers of good things;</VERS>\r\n      <VERS vnumber=\"4\">That they may teach the young women to be sober, to love their husbands, to love their children,</VERS>\r\n      <VERS vnumber=\"5\">To be discreet, chaste, keepers at home, good, obedient to their own husbands, that the word of God be not blasphemed.</VERS>\r\n      <VERS vnumber=\"6\">Young men likewise exhort to be sober minded.</VERS>\r\n      <VERS vnumber=\"7\">In all things shewing thyself a pattern of good works: in doctrine shewing uncorruptness, gravity, sincerity,</VERS>\r\n      <VERS vnumber=\"8\">Sound speech, that cannot be condemned; that he that is of the contrary part may be ashamed, having no evil thing to say of you.</VERS>\r\n      <VERS vnumber=\"9\">Exhort servants to be obedient unto their own masters, and to please them well in all things; not answering again;</VERS>\r\n      <VERS vnumber=\"10\">Not purloining, but shewing all good fidelity; that they may adorn the doctrine of God our Saviour in all things.</VERS>\r\n      <VERS vnumber=\"11\">For the grace of God that bringeth salvation hath appeared to all men,</VERS>\r\n      <VERS vnumber=\"12\">Teaching us that, denying ungodliness and worldly lusts, we should live soberly, righteously, and godly, in this present world;</VERS>\r\n      <VERS vnumber=\"13\">Looking for that blessed hope, and the glorious appearing of the great God and our Saviour Jesus Christ;</VERS>\r\n      <VERS vnumber=\"14\">Who gave himself for us, that he might redeem us from all iniquity, and purify unto himself a peculiar people, zealous of good works.</VERS>\r\n      <VERS vnumber=\"15\">These things speak, and exhort, and rebuke with all authority. Let no man despise thee.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Put them in mind to be subject to principalities and powers, to obey magistrates, to be ready to every good work,</VERS>\r\n      <VERS vnumber=\"2\">To speak evil of no man, to be no brawlers, but gentle, shewing all meekness unto all men.</VERS>\r\n      <VERS vnumber=\"3\">For we ourselves also were sometimes foolish, disobedient, deceived, serving divers lusts and pleasures, living in malice and envy, hateful, and hating one another.</VERS>\r\n      <VERS vnumber=\"4\">But after that the kindness and love of God our Saviour toward man appeared,</VERS>\r\n      <VERS vnumber=\"5\">Not 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;</VERS>\r\n      <VERS vnumber=\"6\">Which he shed on us abundantly through Jesus Christ our Saviour;</VERS>\r\n      <VERS vnumber=\"7\">That being justified by his grace, we should be made heirs according to the hope of eternal life.</VERS>\r\n      <VERS vnumber=\"8\">This 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.</VERS>\r\n      <VERS vnumber=\"9\">But avoid foolish questions, and genealogies, and contentions, and strivings about the law; for they are unprofitable and vain.</VERS>\r\n      <VERS vnumber=\"10\">A man that is an heretick after the first and second admonition reject;</VERS>\r\n      <VERS vnumber=\"11\">Knowing that he that is such is subverted, and sinneth, being condemned of himself.</VERS>\r\n      <VERS vnumber=\"12\">When I shall send Artemas unto thee, or Tychicus, be diligent to come unto me to Nicopolis: for I have determined there to winter.</VERS>\r\n      <VERS vnumber=\"13\">Bring Zenas the lawyer and Apollos on their journey diligently, that nothing be wanting unto them.</VERS>\r\n      <VERS vnumber=\"14\">And let ours also learn to maintain good works for necessary uses, that they be not unfruitful.</VERS>\r\n      <VERS vnumber=\"15\">All that are with me salute thee. Greet them that love us in the faith. Grace be with you all. Amen. </VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"57\" bname=\"Philemon\" bsname=\"Phlm\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <CAPTION vref=\"1\">Written from Rome to Philemon, by Onesimus a servant.</CAPTION>\r\n      <VERS vnumber=\"1\">Paul, a prisoner of Jesus Christ, and Timothy our brother, unto Philemon our dearly beloved, and fellowlabourer,</VERS>\r\n      <VERS vnumber=\"2\">And to our beloved Apphia, and Archippus our fellowsoldier, and to the church in thy house:</VERS>\r\n      <VERS vnumber=\"3\">Grace to you, and peace, from God our Father and the Lord Jesus Christ.</VERS>\r\n      <VERS vnumber=\"4\">I thank my God, making mention of thee always in my prayers,</VERS>\r\n      <VERS vnumber=\"5\">Hearing of thy love and faith, which thou hast toward the Lord Jesus, and toward all saints;</VERS>\r\n      <VERS vnumber=\"6\">That the communication of thy faith may become effectual by the acknowledging of every good thing which is in you in Christ Jesus.</VERS>\r\n      <VERS vnumber=\"7\">For we have great joy and consolation in thy love, because the bowels of the saints are refreshed by thee, brother.</VERS>\r\n      <VERS vnumber=\"8\">Wherefore, though I might be much bold in Christ to enjoin thee that which is convenient,</VERS>\r\n      <VERS vnumber=\"9\">Yet for love's sake I rather beseech thee, being such an one as Paul the aged, and now also a prisoner of Jesus Christ.</VERS>\r\n      <VERS vnumber=\"10\">I beseech thee for my son Onesimus, whom I have begotten in my bonds:</VERS>\r\n      <VERS vnumber=\"11\">Which in time past was to thee unprofitable, but now profitable to thee and to me:</VERS>\r\n      <VERS vnumber=\"12\">Whom I have sent again: thou therefore receive him, that is, mine own bowels:</VERS>\r\n      <VERS vnumber=\"13\">Whom I would have retained with me, that in thy stead he might have ministered unto me in the bonds of the gospel:</VERS>\r\n      <VERS vnumber=\"14\">But without thy mind would I do nothing; that thy benefit should not be as it were of necessity, but willingly.</VERS>\r\n      <VERS vnumber=\"15\">For perhaps he therefore departed for a season, that thou shouldest receive him for ever;</VERS>\r\n      <VERS vnumber=\"16\">Not 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?</VERS>\r\n      <VERS vnumber=\"17\">If thou count me therefore a partner, receive him as myself.</VERS>\r\n      <VERS vnumber=\"18\">If he hath wronged thee, or oweth thee ought, put that on mine account;</VERS>\r\n      <VERS vnumber=\"19\">I 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.</VERS>\r\n      <VERS vnumber=\"20\">Yea, brother, let me have joy of thee in the Lord: refresh my bowels in the Lord.</VERS>\r\n      <VERS vnumber=\"21\">Having confidence in thy obedience I wrote unto thee, knowing that thou wilt also do more than I say.</VERS>\r\n      <VERS vnumber=\"22\">But withal prepare me also a lodging: for I trust that through your prayers I shall be given unto you.</VERS>\r\n      <VERS vnumber=\"23\">There salute thee Epaphras, my fellowprisoner in Christ Jesus;</VERS>\r\n      <VERS vnumber=\"24\">Marcus, Aristarchus, Demas, Lucas, my fellowlabourers.</VERS>\r\n      <VERS vnumber=\"25\">The grace of our Lord Jesus Christ be with your spirit. Amen. </VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"58\" bname=\"Hebrews\" bsname=\"Heb\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <CAPTION vref=\"1\">Written to the Hebrews from Italy, by Timothy.</CAPTION>\r\n      <VERS vnumber=\"1\">God, who at sundry times and in divers manners spake in time past unto the fathers by the prophets,</VERS>\r\n      <VERS vnumber=\"2\">Hath 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;</VERS>\r\n      <VERS vnumber=\"3\">Who 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;</VERS>\r\n      <VERS vnumber=\"4\">Being made so much better than the angels, as he hath by inheritance obtained a more excellent name than they.</VERS>\r\n      <VERS vnumber=\"5\">For 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?</VERS>\r\n      <VERS vnumber=\"6\">And again, when he bringeth in the firstbegotten into the world, he saith, And let all the angels of God worship him.</VERS>\r\n      <VERS vnumber=\"7\">And of the angels he saith, Who maketh his angels spirits, and his ministers a flame of fire.</VERS>\r\n      <VERS vnumber=\"8\">But unto the Son he saith, Thy throne, O God, is for ever and ever: a sceptre of righteousness is the sceptre of thy kingdom.</VERS>\r\n      <VERS vnumber=\"9\">Thou hast loved righteousness, and hated iniquity; therefore God, even thy God, hath anointed thee with the oil of gladness above thy fellows.</VERS>\r\n      <VERS vnumber=\"10\">And, Thou, Lord, in the beginning hast laid the foundation of the earth; and the heavens are the works of thine hands:</VERS>\r\n      <VERS vnumber=\"11\">They shall perish; but thou remainest; and they all shall wax old as doth a garment;</VERS>\r\n      <VERS vnumber=\"12\">And as a vesture shalt thou fold them up, and they shall be changed: but thou art the same, and thy years shall not fail.</VERS>\r\n      <VERS vnumber=\"13\">But to which of the angels said he at any time, Sit on my right hand, until I make thine enemies thy footstool?</VERS>\r\n      <VERS vnumber=\"14\">Are they not all ministering spirits, sent forth to minister for them who shall be heirs of salvation?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">Therefore we ought to give the more earnest heed to the things which we have heard, lest at any time we should let them slip.</VERS>\r\n      <VERS vnumber=\"2\">For if the word spoken by angels was stedfast, and every transgression and disobedience received a just recompence of reward;</VERS>\r\n      <VERS vnumber=\"3\">How 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;</VERS>\r\n      <VERS vnumber=\"4\">God also bearing them witness, both with signs and wonders, and with divers miracles, and gifts of the Holy Ghost, according to his own will?</VERS>\r\n      <VERS vnumber=\"5\">For unto the angels hath he not put in subjection the world to come, whereof we speak.</VERS>\r\n      <VERS vnumber=\"6\">But 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?</VERS>\r\n      <VERS vnumber=\"7\">Thou 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:</VERS>\r\n      <VERS vnumber=\"8\">Thou 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.</VERS>\r\n      <VERS vnumber=\"9\">But 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.</VERS>\r\n      <VERS vnumber=\"10\">For 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.</VERS>\r\n      <VERS vnumber=\"11\">For both he that sanctifieth and they who are sanctified are all of one: for which cause he is not ashamed to call them brethren,</VERS>\r\n      <VERS vnumber=\"12\">Saying, I will declare thy name unto my brethren, in the midst of the church will I sing praise unto thee.</VERS>\r\n      <VERS vnumber=\"13\">And again, I will put my trust in him. And again, Behold I and the children which God hath given me.</VERS>\r\n      <VERS vnumber=\"14\">Forasmuch 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;</VERS>\r\n      <VERS vnumber=\"15\">And deliver them who through fear of death were all their lifetime subject to bondage.</VERS>\r\n      <VERS vnumber=\"16\">For verily he took not on him the nature of angels; but he took on him the seed of Abraham.</VERS>\r\n      <VERS vnumber=\"17\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"18\">For in that he himself hath suffered being tempted, he is able to succour them that are tempted.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Wherefore, holy brethren, partakers of the heavenly calling, consider the Apostle and High Priest of our profession, Christ Jesus;</VERS>\r\n      <VERS vnumber=\"2\">Who was faithful to him that appointed him, as also Moses was faithful in all his house.</VERS>\r\n      <VERS vnumber=\"3\">For this man was counted worthy of more glory than Moses, inasmuch as he who hath builded the house hath more honour than the house.</VERS>\r\n      <VERS vnumber=\"4\">For every house is builded by some man; but he that built all things is God.</VERS>\r\n      <VERS vnumber=\"5\">And Moses verily was faithful in all his house, as a servant, for a testimony of those things which were to be spoken after;</VERS>\r\n      <VERS vnumber=\"6\">But 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.</VERS>\r\n      <VERS vnumber=\"7\">Wherefore (as the Holy Ghost saith, To day if ye will hear his voice,</VERS>\r\n      <VERS vnumber=\"8\">Harden not your hearts, as in the provocation, in the day of temptation in the wilderness:</VERS>\r\n      <VERS vnumber=\"9\">When your fathers tempted me, proved me, and saw my works forty years.</VERS>\r\n      <VERS vnumber=\"10\">Wherefore I was grieved with that generation, and said, They do alway err in their heart; and they have not known my ways.</VERS>\r\n      <VERS vnumber=\"11\">So I sware in my wrath, They shall not enter into my rest.)</VERS>\r\n      <VERS vnumber=\"12\">Take heed, brethren, lest there be in any of you an evil heart of unbelief, in departing from the living God.</VERS>\r\n      <VERS vnumber=\"13\">But exhort one another daily, while it is called To day; lest any of you be hardened through the deceitfulness of sin.</VERS>\r\n      <VERS vnumber=\"14\">For we are made partakers of Christ, if we hold the beginning of our confidence stedfast unto the end;</VERS>\r\n      <VERS vnumber=\"15\">While it is said, To day if ye will hear his voice, harden not your hearts, as in the provocation.</VERS>\r\n      <VERS vnumber=\"16\">For some, when they had heard, did provoke: howbeit not all that came out of Egypt by Moses.</VERS>\r\n      <VERS vnumber=\"17\">But with whom was he grieved forty years? was it not with them that had sinned, whose carcases fell in the wilderness?</VERS>\r\n      <VERS vnumber=\"18\">And to whom sware he that they should not enter into his rest, but to them that believed not?</VERS>\r\n      <VERS vnumber=\"19\">So we see that they could not enter in because of unbelief.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">Let us therefore fear, lest, a promise being left us of entering into his rest, any of you should seem to come short of it.</VERS>\r\n      <VERS vnumber=\"2\">For 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.</VERS>\r\n      <VERS vnumber=\"3\">For 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.</VERS>\r\n      <VERS vnumber=\"4\">For he spake in a certain place of the seventh day on this wise, And God did rest the seventh day from all his works.</VERS>\r\n      <VERS vnumber=\"5\">And in this place again, If they shall enter into my rest.</VERS>\r\n      <VERS vnumber=\"6\">Seeing therefore it remaineth that some must enter therein, and they to whom it was first preached entered not in because of unbelief:</VERS>\r\n      <VERS vnumber=\"7\">Again, 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.</VERS>\r\n      <VERS vnumber=\"8\">For if Jesus had given them rest, then would he not afterward have spoken of another day.</VERS>\r\n      <VERS vnumber=\"9\">There remaineth therefore a rest to the people of God.</VERS>\r\n      <VERS vnumber=\"10\">For he that is entered into his rest, he also hath ceased from his own works, as God did from his.</VERS>\r\n      <VERS vnumber=\"11\">Let us labour therefore to enter into that rest, lest any man fall after the same example of unbelief.</VERS>\r\n      <VERS vnumber=\"12\">For 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.</VERS>\r\n      <VERS vnumber=\"13\">Neither 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.</VERS>\r\n      <VERS vnumber=\"14\">Seeing 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.</VERS>\r\n      <VERS vnumber=\"15\">For 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.</VERS>\r\n      <VERS vnumber=\"16\">Let us therefore come boldly unto the throne of grace, that we may obtain mercy, and find grace to help in time of need.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">For 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:</VERS>\r\n      <VERS vnumber=\"2\">Who can have compassion on the ignorant, and on them that are out of the way; for that he himself also is compassed with infirmity.</VERS>\r\n      <VERS vnumber=\"3\">And by reason hereof he ought, as for the people, so also for himself, to offer for sins.</VERS>\r\n      <VERS vnumber=\"4\">And no man taketh this honour unto himself, but he that is called of God, as was Aaron.</VERS>\r\n      <VERS vnumber=\"5\">So 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.</VERS>\r\n      <VERS vnumber=\"6\">As he saith also in another place, Thou art a priest for ever after the order of Melchisedec.</VERS>\r\n      <VERS vnumber=\"7\">Who 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;</VERS>\r\n      <VERS vnumber=\"8\">Though he were a Son, yet learned he obedience by the things which he suffered;</VERS>\r\n      <VERS vnumber=\"9\">And being made perfect, he became the author of eternal salvation unto all them that obey him;</VERS>\r\n      <VERS vnumber=\"10\">Called of God an high priest after the order of Melchisedec.</VERS>\r\n      <VERS vnumber=\"11\">Of whom we have many things to say, and hard to be uttered, seeing ye are dull of hearing.</VERS>\r\n      <VERS vnumber=\"12\">For 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.</VERS>\r\n      <VERS vnumber=\"13\">For every one that useth milk is unskilful in the word of righteousness: for he is a babe.</VERS>\r\n      <VERS vnumber=\"14\">But 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">Therefore 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,</VERS>\r\n      <VERS vnumber=\"2\">Of the doctrine of baptisms, and of laying on of hands, and of resurrection of the dead, and of eternal judgment.</VERS>\r\n      <VERS vnumber=\"3\">And this will we do, if God permit.</VERS>\r\n      <VERS vnumber=\"4\">For it is impossible for those who were once enlightened, and have tasted of the heavenly gift, and were made partakers of the Holy Ghost,</VERS>\r\n      <VERS vnumber=\"5\">And have tasted the good word of God, and the powers of the world to come,</VERS>\r\n      <VERS vnumber=\"6\">If 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.</VERS>\r\n      <VERS vnumber=\"7\">For 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:</VERS>\r\n      <VERS vnumber=\"8\">But that which beareth thorns and briers is rejected, and is nigh unto cursing; whose end is to be burned.</VERS>\r\n      <VERS vnumber=\"9\">But, beloved, we are persuaded better things of you, and things that accompany salvation, though we thus speak.</VERS>\r\n      <VERS vnumber=\"10\">For 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.</VERS>\r\n      <VERS vnumber=\"11\">And we desire that every one of you do shew the same diligence to the full assurance of hope unto the end:</VERS>\r\n      <VERS vnumber=\"12\">That ye be not slothful, but followers of them who through faith and patience inherit the promises.</VERS>\r\n      <VERS vnumber=\"13\">For when God made promise to Abraham, because he could swear by no greater, he sware by himself,</VERS>\r\n      <VERS vnumber=\"14\">Saying, Surely blessing I will bless thee, and multiplying I will multiply thee.</VERS>\r\n      <VERS vnumber=\"15\">And so, after he had patiently endured, he obtained the promise.</VERS>\r\n      <VERS vnumber=\"16\">For men verily swear by the greater: and an oath for confirmation is to them an end of all strife.</VERS>\r\n      <VERS vnumber=\"17\">Wherein God, willing more abundantly to shew unto the heirs of promise the immutability of his counsel, confirmed it by an oath:</VERS>\r\n      <VERS vnumber=\"18\">That 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:</VERS>\r\n      <VERS vnumber=\"19\">Which hope we have as an anchor of the soul, both sure and stedfast, and which entereth into that within the veil;</VERS>\r\n      <VERS vnumber=\"20\">Whither the forerunner is for us entered, even Jesus, made an high priest for ever after the order of Melchisedec.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">For this Melchisedec, king of Salem, priest of the most high God, who met Abraham returning from the slaughter of the kings, and blessed him;</VERS>\r\n      <VERS vnumber=\"2\">To 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;</VERS>\r\n      <VERS vnumber=\"3\">Without 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.</VERS>\r\n      <VERS vnumber=\"4\">Now consider how great this man was, unto whom even the patriarch Abraham gave the tenth of the spoils.</VERS>\r\n      <VERS vnumber=\"5\">And 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:</VERS>\r\n      <VERS vnumber=\"6\">But he whose descent is not counted from them received tithes of Abraham, and blessed him that had the promises.</VERS>\r\n      <VERS vnumber=\"7\">And without all contradiction the less is blessed of the better.</VERS>\r\n      <VERS vnumber=\"8\">And here men that die receive tithes; but there he receiveth them, of whom it is witnessed that he liveth.</VERS>\r\n      <VERS vnumber=\"9\">And as I may so say, Levi also, who receiveth tithes, payed tithes in Abraham.</VERS>\r\n      <VERS vnumber=\"10\">For he was yet in the loins of his father, when Melchisedec met him.</VERS>\r\n      <VERS vnumber=\"11\">If 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?</VERS>\r\n      <VERS vnumber=\"12\">For the priesthood being changed, there is made of necessity a change also of the law.</VERS>\r\n      <VERS vnumber=\"13\">For he of whom these things are spoken pertaineth to another tribe, of which no man gave attendance at the altar.</VERS>\r\n      <VERS vnumber=\"14\">For it is evident that our Lord sprang out of Juda; of which tribe Moses spake nothing concerning priesthood.</VERS>\r\n      <VERS vnumber=\"15\">And it is yet far more evident: for that after the similitude of Melchisedec there ariseth another priest,</VERS>\r\n      <VERS vnumber=\"16\">Who is made, not after the law of a carnal commandment, but after the power of an endless life.</VERS>\r\n      <VERS vnumber=\"17\">For he testifieth, Thou art a priest for ever after the order of Melchisedec.</VERS>\r\n      <VERS vnumber=\"18\">For there is verily a disannulling of the commandment going before for the weakness and unprofitableness thereof.</VERS>\r\n      <VERS vnumber=\"19\">For the law made nothing perfect, but the bringing in of a better hope did; by the which we draw nigh unto God.</VERS>\r\n      <VERS vnumber=\"20\">And inasmuch as not without an oath he was made priest:</VERS>\r\n      <VERS vnumber=\"21\">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:)</VERS>\r\n      <VERS vnumber=\"22\">By so much was Jesus made a surety of a better testament.</VERS>\r\n      <VERS vnumber=\"23\">And they truly were many priests, because they were not suffered to continue by reason of death:</VERS>\r\n      <VERS vnumber=\"24\">But this man, because he continueth ever, hath an unchangeable priesthood.</VERS>\r\n      <VERS vnumber=\"25\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"26\">For such an high priest became us, who is holy, harmless, undefiled, separate from sinners, and made higher than the heavens;</VERS>\r\n      <VERS vnumber=\"27\">Who 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.</VERS>\r\n      <VERS vnumber=\"28\">For 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">Now 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;</VERS>\r\n      <VERS vnumber=\"2\">A minister of the sanctuary, and of the true tabernacle, which the Lord pitched, and not man.</VERS>\r\n      <VERS vnumber=\"3\">For every high priest is ordained to offer gifts and sacrifices: wherefore it is of necessity that this man have somewhat also to offer.</VERS>\r\n      <VERS vnumber=\"4\">For if he were on earth, he should not be a priest, seeing that there are priests that offer gifts according to the law:</VERS>\r\n      <VERS vnumber=\"5\">Who 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.</VERS>\r\n      <VERS vnumber=\"6\">But 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.</VERS>\r\n      <VERS vnumber=\"7\">For if that first covenant had been faultless, then should no place have been sought for the second.</VERS>\r\n      <VERS vnumber=\"8\">For 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:</VERS>\r\n      <VERS vnumber=\"9\">Not 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.</VERS>\r\n      <VERS vnumber=\"10\">For 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:</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">For I will be merciful to their unrighteousness, and their sins and their iniquities will I remember no more.</VERS>\r\n      <VERS vnumber=\"13\">In that he saith, A new covenant, he hath made the first old. Now that which decayeth and waxeth old is ready to vanish away.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">Then verily the first covenant had also ordinances of divine service, and a worldly sanctuary.</VERS>\r\n      <VERS vnumber=\"2\">For there was a tabernacle made; the first, wherein was the candlestick, and the table, and the shewbread; which is called the sanctuary.</VERS>\r\n      <VERS vnumber=\"3\">And after the second veil, the tabernacle which is called the Holiest of all;</VERS>\r\n      <VERS vnumber=\"4\">Which 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;</VERS>\r\n      <VERS vnumber=\"5\">And over it the cherubims of glory shadowing the mercyseat; of which we cannot now speak particularly.</VERS>\r\n      <VERS vnumber=\"6\">Now when these things were thus ordained, the priests went always into the first tabernacle, accomplishing the service of God.</VERS>\r\n      <VERS vnumber=\"7\">But 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:</VERS>\r\n      <VERS vnumber=\"8\">The 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:</VERS>\r\n      <VERS vnumber=\"9\">Which 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;</VERS>\r\n      <VERS vnumber=\"10\">Which stood only in meats and drinks, and divers washings, and carnal ordinances, imposed on them until the time of reformation.</VERS>\r\n      <VERS vnumber=\"11\">But 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;</VERS>\r\n      <VERS vnumber=\"12\">Neither 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.</VERS>\r\n      <VERS vnumber=\"13\">For if the blood of bulls and of goats, and the ashes of an heifer sprinkling the unclean, sanctifieth to the purifying of the flesh:</VERS>\r\n      <VERS vnumber=\"14\">How 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?</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">For where a testament is, there must also of necessity be the death of the testator.</VERS>\r\n      <VERS vnumber=\"17\">For a testament is of force after men are dead: otherwise it is of no strength at all while the testator liveth.</VERS>\r\n      <VERS vnumber=\"18\">Whereupon neither the first testament was dedicated without blood.</VERS>\r\n      <VERS vnumber=\"19\">For 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,</VERS>\r\n      <VERS vnumber=\"20\">Saying, This is the blood of the testament which God hath enjoined unto you.</VERS>\r\n      <VERS vnumber=\"21\">Moreover he sprinkled with blood both the tabernacle, and all the vessels of the ministry.</VERS>\r\n      <VERS vnumber=\"22\">And almost all things are by the law purged with blood; and without shedding of blood is no remission.</VERS>\r\n      <VERS vnumber=\"23\">It 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.</VERS>\r\n      <VERS vnumber=\"24\">For 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:</VERS>\r\n      <VERS vnumber=\"25\">Nor yet that he should offer himself often, as the high priest entereth into the holy place every year with blood of others;</VERS>\r\n      <VERS vnumber=\"26\">For 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.</VERS>\r\n      <VERS vnumber=\"27\">And as it is appointed unto men once to die, but after this the judgment:</VERS>\r\n      <VERS vnumber=\"28\">So 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">For 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.</VERS>\r\n      <VERS vnumber=\"2\">For then would they not have ceased to be offered? because that the worshippers once purged should have had no more conscience of sins.</VERS>\r\n      <VERS vnumber=\"3\">But in those sacrifices there is a remembrance again made of sins every year.</VERS>\r\n      <VERS vnumber=\"4\">For it is not possible that the blood of bulls and of goats should take away sins.</VERS>\r\n      <VERS vnumber=\"5\">Wherefore when he cometh into the world, he saith, Sacrifice and offering thou wouldest not, but a body hast thou prepared me:</VERS>\r\n      <VERS vnumber=\"6\">In burnt offerings and sacrifices for sin thou hast had no pleasure.</VERS>\r\n      <VERS vnumber=\"7\">Then said I, Lo, I come (in the volume of the book it is written of me,) to do thy will, O God.</VERS>\r\n      <VERS vnumber=\"8\">Above 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;</VERS>\r\n      <VERS vnumber=\"9\">Then said he, Lo, I come to do thy will, O God. He taketh away the first, that he may establish the second.</VERS>\r\n      <VERS vnumber=\"10\">By the which will we are sanctified through the offering of the body of Jesus Christ once for all.</VERS>\r\n      <VERS vnumber=\"11\">And every priest standeth daily ministering and offering oftentimes the same sacrifices, which can never take away sins:</VERS>\r\n      <VERS vnumber=\"12\">But this man, after he had offered one sacrifice for sins for ever, sat down on the right hand of God;</VERS>\r\n      <VERS vnumber=\"13\">From henceforth expecting till his enemies be made his footstool.</VERS>\r\n      <VERS vnumber=\"14\">For by one offering he hath perfected for ever them that are sanctified.</VERS>\r\n      <VERS vnumber=\"15\">Whereof the Holy Ghost also is a witness to us: for after that he had said before,</VERS>\r\n      <VERS vnumber=\"16\">This 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;</VERS>\r\n      <VERS vnumber=\"17\">And their sins and iniquities will I remember no more.</VERS>\r\n      <VERS vnumber=\"18\">Now where remission of these is, there is no more offering for sin.</VERS>\r\n      <VERS vnumber=\"19\">Having therefore, brethren, boldness to enter into the holiest by the blood of Jesus,</VERS>\r\n      <VERS vnumber=\"20\">By a new and living way, which he hath consecrated for us, through the veil, that is to say, his flesh;</VERS>\r\n      <VERS vnumber=\"21\">And having an high priest over the house of God;</VERS>\r\n      <VERS vnumber=\"22\">Let 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.</VERS>\r\n      <VERS vnumber=\"23\">Let us hold fast the profession of our faith without wavering; (for he is faithful that promised;)</VERS>\r\n      <VERS vnumber=\"24\">And let us consider one another to provoke unto love and to good works:</VERS>\r\n      <VERS vnumber=\"25\">Not 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.</VERS>\r\n      <VERS vnumber=\"26\">For if we sin wilfully after that we have received the knowledge of the truth, there remaineth no more sacrifice for sins,</VERS>\r\n      <VERS vnumber=\"27\">But a certain fearful looking for of judgment and fiery indignation, which shall devour the adversaries.</VERS>\r\n      <VERS vnumber=\"28\">He that despised Moses' law died without mercy under two or three witnesses:</VERS>\r\n      <VERS vnumber=\"29\">Of 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?</VERS>\r\n      <VERS vnumber=\"30\">For we know him that hath said, Vengeance belongeth unto me, I will recompense, saith the Lord. And again, The Lord shall judge his people.</VERS>\r\n      <VERS vnumber=\"31\">It is a fearful thing to fall into the hands of the living God.</VERS>\r\n      <VERS vnumber=\"32\">But call to remembrance the former days, in which, after ye were illuminated, ye endured a great fight of afflictions;</VERS>\r\n      <VERS vnumber=\"33\">Partly, whilst ye were made a gazingstock both by reproaches and afflictions; and partly, whilst ye became companions of them that were so used.</VERS>\r\n      <VERS vnumber=\"34\">For 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.</VERS>\r\n      <VERS vnumber=\"35\">Cast not away therefore your confidence, which hath great recompence of reward.</VERS>\r\n      <VERS vnumber=\"36\">For ye have need of patience, that, after ye have done the will of God, ye might receive the promise.</VERS>\r\n      <VERS vnumber=\"37\">For yet a little while, and he that shall come will come, and will not tarry.</VERS>\r\n      <VERS vnumber=\"38\">Now the just shall live by faith: but if any man draw back, my soul shall have no pleasure in him.</VERS>\r\n      <VERS vnumber=\"39\">But we are not of them who draw back unto perdition; but of them that believe to the saving of the soul.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">Now faith is the substance of things hoped for, the evidence of things not seen.</VERS>\r\n      <VERS vnumber=\"2\">For by it the elders obtained a good report.</VERS>\r\n      <VERS vnumber=\"3\">Through 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.</VERS>\r\n      <VERS vnumber=\"4\">By 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.</VERS>\r\n      <VERS vnumber=\"5\">By 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.</VERS>\r\n      <VERS vnumber=\"6\">But 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.</VERS>\r\n      <VERS vnumber=\"7\">By 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.</VERS>\r\n      <VERS vnumber=\"8\">By 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.</VERS>\r\n      <VERS vnumber=\"9\">By 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:</VERS>\r\n      <VERS vnumber=\"10\">For he looked for a city which hath foundations, whose builder and maker is God.</VERS>\r\n      <VERS vnumber=\"11\">Through 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.</VERS>\r\n      <VERS vnumber=\"12\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"13\">These 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.</VERS>\r\n      <VERS vnumber=\"14\">For they that say such things declare plainly that they seek a country.</VERS>\r\n      <VERS vnumber=\"15\">And truly, if they had been mindful of that country from whence they came out, they might have had opportunity to have returned.</VERS>\r\n      <VERS vnumber=\"16\">But 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.</VERS>\r\n      <VERS vnumber=\"17\">By faith Abraham, when he was tried, offered up Isaac: and he that had received the promises offered up his only begotten son,</VERS>\r\n      <VERS vnumber=\"18\">Of whom it was said, That in Isaac shall thy seed be called:</VERS>\r\n      <VERS vnumber=\"19\">Accounting that God was able to raise him up, even from the dead; from whence also he received him in a figure.</VERS>\r\n      <VERS vnumber=\"20\">By faith Isaac blessed Jacob and Esau concerning things to come.</VERS>\r\n      <VERS vnumber=\"21\">By faith Jacob, when he was a dying, blessed both the sons of Joseph; and worshipped, leaning upon the top of his staff.</VERS>\r\n      <VERS vnumber=\"22\">By faith Joseph, when he died, made mention of the departing of the children of Israel; and gave commandment concerning his bones.</VERS>\r\n      <VERS vnumber=\"23\">By 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.</VERS>\r\n      <VERS vnumber=\"24\">By faith Moses, when he was come to years, refused to be called the son of Pharaoh's daughter;</VERS>\r\n      <VERS vnumber=\"25\">Choosing rather to suffer affliction with the people of God, than to enjoy the pleasures of sin for a season;</VERS>\r\n      <VERS vnumber=\"26\">Esteeming the reproach of Christ greater riches than the treasures in Egypt: for he had respect unto the recompence of the reward.</VERS>\r\n      <VERS vnumber=\"27\">By faith he forsook Egypt, not fearing the wrath of the king: for he endured, as seeing him who is invisible.</VERS>\r\n      <VERS vnumber=\"28\">Through faith he kept the passover, and the sprinkling of blood, lest he that destroyed the firstborn should touch them.</VERS>\r\n      <VERS vnumber=\"29\">By faith they passed through the Red sea as by dry land: which the Egyptians assaying to do were drowned.</VERS>\r\n      <VERS vnumber=\"30\">By faith the walls of Jericho fell down, after they were compassed about seven days.</VERS>\r\n      <VERS vnumber=\"31\">By faith the harlot Rahab perished not with them that believed not, when she had received the spies with peace.</VERS>\r\n      <VERS vnumber=\"32\">And 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:</VERS>\r\n      <VERS vnumber=\"33\">Who through faith subdued kingdoms, wrought righteousness, obtained promises, stopped the mouths of lions,</VERS>\r\n      <VERS vnumber=\"34\">Quenched 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.</VERS>\r\n      <VERS vnumber=\"35\">Women received their dead raised to life again: and others were tortured, not accepting deliverance; that they might obtain a better resurrection:</VERS>\r\n      <VERS vnumber=\"36\">And others had trial of cruel mockings and scourgings, yea, moreover of bonds and imprisonment:</VERS>\r\n      <VERS vnumber=\"37\">They were stoned, they were sawn asunder, were tempted, were slain with the sword: they wandered about in sheepskins and goatskins; being destitute, afflicted, tormented;</VERS>\r\n      <VERS vnumber=\"38\">Of whom the world was not worthy:) they wandered in deserts, and in mountains, and in dens and caves of the earth.</VERS>\r\n      <VERS vnumber=\"39\">And these all, having obtained a good report through faith, received not the promise:</VERS>\r\n      <VERS vnumber=\"40\">God having provided some better thing for us, that they without us should not be made perfect.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">Wherefore 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,</VERS>\r\n      <VERS vnumber=\"2\">Looking 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.</VERS>\r\n      <VERS vnumber=\"3\">For consider him that endured such contradiction of sinners against himself, lest ye be wearied and faint in your minds.</VERS>\r\n      <VERS vnumber=\"4\">Ye have not yet resisted unto blood, striving against sin.</VERS>\r\n      <VERS vnumber=\"5\">And 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:</VERS>\r\n      <VERS vnumber=\"6\">For whom the Lord loveth he chasteneth, and scourgeth every son whom he receiveth.</VERS>\r\n      <VERS vnumber=\"7\">If ye endure chastening, God dealeth with you as with sons; for what son is he whom the father chasteneth not?</VERS>\r\n      <VERS vnumber=\"8\">But if ye be without chastisement, whereof all are partakers, then are ye bastards, and not sons.</VERS>\r\n      <VERS vnumber=\"9\">Furthermore 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?</VERS>\r\n      <VERS vnumber=\"10\">For 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.</VERS>\r\n      <VERS vnumber=\"11\">Now 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.</VERS>\r\n      <VERS vnumber=\"12\">Wherefore lift up the hands which hang down, and the feeble knees;</VERS>\r\n      <VERS vnumber=\"13\">And make straight paths for your feet, lest that which is lame be turned out of the way; but let it rather be healed.</VERS>\r\n      <VERS vnumber=\"14\">Follow peace with all men, and holiness, without which no man shall see the Lord:</VERS>\r\n      <VERS vnumber=\"15\">Looking diligently lest any man fail of the grace of God; lest any root of bitterness springing up trouble you, and thereby many be defiled;</VERS>\r\n      <VERS vnumber=\"16\">Lest there be any fornicator, or profane person, as Esau, who for one morsel of meat sold his birthright.</VERS>\r\n      <VERS vnumber=\"17\">For 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.</VERS>\r\n      <VERS vnumber=\"18\">For ye are not come unto the mount that might be touched, and that burned with fire, nor unto blackness, and darkness, and tempest,</VERS>\r\n      <VERS vnumber=\"19\">And 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:</VERS>\r\n      <VERS vnumber=\"20\">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:</VERS>\r\n      <VERS vnumber=\"21\">And so terrible was the sight, that Moses said, I exceedingly fear and quake:)</VERS>\r\n      <VERS vnumber=\"22\">But ye are come unto mount Sion, and unto the city of the living God, the heavenly Jerusalem, and to an innumerable company of angels,</VERS>\r\n      <VERS vnumber=\"23\">To 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,</VERS>\r\n      <VERS vnumber=\"24\">And to Jesus the mediator of the new covenant, and to the blood of sprinkling, that speaketh better things than that of Abel.</VERS>\r\n      <VERS vnumber=\"25\">See 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:</VERS>\r\n      <VERS vnumber=\"26\">Whose voice then shook the earth: but now he hath promised, saying, Yet once more I shake not the earth only, but also heaven.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">Wherefore we receiving a kingdom which cannot be moved, let us have grace, whereby we may serve God acceptably with reverence and godly fear:</VERS>\r\n      <VERS vnumber=\"29\">For our God is a consuming fire.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">Let brotherly love continue.</VERS>\r\n      <VERS vnumber=\"2\">Be not forgetful to entertain strangers: for thereby some have entertained angels unawares.</VERS>\r\n      <VERS vnumber=\"3\">Remember them that are in bonds, as bound with them; and them which suffer adversity, as being yourselves also in the body.</VERS>\r\n      <VERS vnumber=\"4\">Marriage is honourable in all, and the bed undefiled: but whoremongers and adulterers God will judge.</VERS>\r\n      <VERS vnumber=\"5\">Let 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.</VERS>\r\n      <VERS vnumber=\"6\">So that we may boldly say, The Lord is my helper, and I will not fear what man shall do unto me.</VERS>\r\n      <VERS vnumber=\"7\">Remember 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.</VERS>\r\n      <VERS vnumber=\"8\">Jesus Christ the same yesterday, and to day, and for ever.</VERS>\r\n      <VERS vnumber=\"9\">Be 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.</VERS>\r\n      <VERS vnumber=\"10\">We have an altar, whereof they have no right to eat which serve the tabernacle.</VERS>\r\n      <VERS vnumber=\"11\">For the bodies of those beasts, whose blood is brought into the sanctuary by the high priest for sin, are burned without the camp.</VERS>\r\n      <VERS vnumber=\"12\">Wherefore Jesus also, that he might sanctify the people with his own blood, suffered without the gate.</VERS>\r\n      <VERS vnumber=\"13\">Let us go forth therefore unto him without the camp, bearing his reproach.</VERS>\r\n      <VERS vnumber=\"14\">For here have we no continuing city, but we seek one to come.</VERS>\r\n      <VERS vnumber=\"15\">By him therefore let us offer the sacrifice of praise to God continually, that is, the fruit of our lips giving thanks to his name.</VERS>\r\n      <VERS vnumber=\"16\">But to do good and to communicate forget not: for with such sacrifices God is well pleased.</VERS>\r\n      <VERS vnumber=\"17\">Obey 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.</VERS>\r\n      <VERS vnumber=\"18\">Pray for us: for we trust we have a good conscience, in all things willing to live honestly.</VERS>\r\n      <VERS vnumber=\"19\">But I beseech you the rather to do this, that I may be restored to you the sooner.</VERS>\r\n      <VERS vnumber=\"20\">Now 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,</VERS>\r\n      <VERS vnumber=\"21\">Make 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.</VERS>\r\n      <VERS vnumber=\"22\">And I beseech you, brethren, suffer the word of exhortation: for I have written a letter unto you in few words.</VERS>\r\n      <VERS vnumber=\"23\">Know ye that our brother Timothy is set at liberty; with whom, if he come shortly, I will see you.</VERS>\r\n      <VERS vnumber=\"24\">Salute all them that have the rule over you, and all the saints. They of Italy salute you.</VERS>\r\n      <VERS vnumber=\"25\">Grace be with you all. Amen. </VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"59\" bname=\"James\" bsname=\"Jas\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">James, a servant of God and of the Lord Jesus Christ, to the twelve tribes which are scattered abroad, greeting.</VERS>\r\n      <VERS vnumber=\"2\">My brethren, count it all joy when ye fall into divers temptations;</VERS>\r\n      <VERS vnumber=\"3\">Knowing this, that the trying of your faith worketh patience.</VERS>\r\n      <VERS vnumber=\"4\">But let patience have her perfect work, that ye may be perfect and entire, wanting nothing.</VERS>\r\n      <VERS vnumber=\"5\">If 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.</VERS>\r\n      <VERS vnumber=\"6\">But let him ask in faith, nothing wavering. For he that wavereth is like a wave of the sea driven with the wind and tossed.</VERS>\r\n      <VERS vnumber=\"7\">For let not that man think that he shall receive any thing of the Lord.</VERS>\r\n      <VERS vnumber=\"8\">A double minded man is unstable in all his ways.</VERS>\r\n      <VERS vnumber=\"9\">Let the brother of low degree rejoice in that he is exalted:</VERS>\r\n      <VERS vnumber=\"10\">But the rich, in that he is made low: because as the flower of the grass he shall pass away.</VERS>\r\n      <VERS vnumber=\"11\">For 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.</VERS>\r\n      <VERS vnumber=\"12\">Blessed 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.</VERS>\r\n      <VERS vnumber=\"13\">Let no man say when he is tempted, I am tempted of God: for God cannot be tempted with evil, neither tempteth he any man:</VERS>\r\n      <VERS vnumber=\"14\">But every man is tempted, when he is drawn away of his own lust, and enticed.</VERS>\r\n      <VERS vnumber=\"15\">Then when lust hath conceived, it bringeth forth sin: and sin, when it is finished, bringeth forth death.</VERS>\r\n      <VERS vnumber=\"16\">Do not err, my beloved brethren.</VERS>\r\n      <VERS vnumber=\"17\">Every 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.</VERS>\r\n      <VERS vnumber=\"18\">Of his own will begat he us with the word of truth, that we should be a kind of firstfruits of his creatures.</VERS>\r\n      <VERS vnumber=\"19\">Wherefore, my beloved brethren, let every man be swift to hear, slow to speak, slow to wrath:</VERS>\r\n      <VERS vnumber=\"20\">For the wrath of man worketh not the righteousness of God.</VERS>\r\n      <VERS vnumber=\"21\">Wherefore lay apart all filthiness and superfluity of naughtiness, and receive with meekness the engrafted word, which is able to save your souls.</VERS>\r\n      <VERS vnumber=\"22\">But be ye doers of the word, and not hearers only, deceiving your own selves.</VERS>\r\n      <VERS vnumber=\"23\">For 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:</VERS>\r\n      <VERS vnumber=\"24\">For he beholdeth himself, and goeth his way, and straightway forgetteth what manner of man he was.</VERS>\r\n      <VERS vnumber=\"25\">But 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.</VERS>\r\n      <VERS vnumber=\"26\">If any man among you seem to be religious, and bridleth not his tongue, but deceiveth his own heart, this man's religion is vain.</VERS>\r\n      <VERS vnumber=\"27\">Pure 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">My brethren, have not the faith of our Lord Jesus Christ, the Lord of glory, with respect of persons.</VERS>\r\n      <VERS vnumber=\"2\">For 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;</VERS>\r\n      <VERS vnumber=\"3\">And 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:</VERS>\r\n      <VERS vnumber=\"4\">Are ye not then partial in yourselves, and are become judges of evil thoughts?</VERS>\r\n      <VERS vnumber=\"5\">Hearken, 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?</VERS>\r\n      <VERS vnumber=\"6\">But ye have despised the poor. Do not rich men oppress you, and draw you before the judgment seats?</VERS>\r\n      <VERS vnumber=\"7\">Do not they blaspheme that worthy name by the which ye are called?</VERS>\r\n      <VERS vnumber=\"8\">If ye fulfil the royal law according to the scripture, Thou shalt love thy neighbour as thyself, ye do well:</VERS>\r\n      <VERS vnumber=\"9\">But if ye have respect to persons, ye commit sin, and are convinced of the law as transgressors.</VERS>\r\n      <VERS vnumber=\"10\">For whosoever shall keep the whole law, and yet offend in one point, he is guilty of all.</VERS>\r\n      <VERS vnumber=\"11\">For 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.</VERS>\r\n      <VERS vnumber=\"12\">So speak ye, and so do, as they that shall be judged by the law of liberty.</VERS>\r\n      <VERS vnumber=\"13\">For he shall have judgment without mercy, that hath shewed no mercy; and mercy rejoiceth against judgment.</VERS>\r\n      <VERS vnumber=\"14\">What doth it profit, my brethren, though a man say he hath faith, and have not works? can faith save him?</VERS>\r\n      <VERS vnumber=\"15\">If a brother or sister be naked, and destitute of daily food,</VERS>\r\n      <VERS vnumber=\"16\">And 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?</VERS>\r\n      <VERS vnumber=\"17\">Even so faith, if it hath not works, is dead, being alone.</VERS>\r\n      <VERS vnumber=\"18\">Yea, 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.</VERS>\r\n      <VERS vnumber=\"19\">Thou believest that there is one God; thou doest well: the devils also believe, and tremble.</VERS>\r\n      <VERS vnumber=\"20\">But wilt thou know, O vain man, that faith without works is dead?</VERS>\r\n      <VERS vnumber=\"21\">Was not Abraham our father justified by works, when he had offered Isaac his son upon the altar?</VERS>\r\n      <VERS vnumber=\"22\">Seest thou how faith wrought with his works, and by works was faith made perfect?</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">Ye see then how that by works a man is justified, and not by faith only.</VERS>\r\n      <VERS vnumber=\"25\">Likewise also was not Rahab the harlot justified by works, when she had received the messengers, and had sent them out another way?</VERS>\r\n      <VERS vnumber=\"26\">For as the body without the spirit is dead, so faith without works is dead also.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">My brethren, be not many masters, knowing that we shall receive the greater condemnation.</VERS>\r\n      <VERS vnumber=\"2\">For 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.</VERS>\r\n      <VERS vnumber=\"3\">Behold, we put bits in the horses' mouths, that they may obey us; and we turn about their whole body.</VERS>\r\n      <VERS vnumber=\"4\">Behold 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.</VERS>\r\n      <VERS vnumber=\"5\">Even so the tongue is a little member, and boasteth great things. Behold, how great a matter a little fire kindleth!</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">For every kind of beasts, and of birds, and of serpents, and of things in the sea, is tamed, and hath been tamed of mankind:</VERS>\r\n      <VERS vnumber=\"8\">But the tongue can no man tame; it is an unruly evil, full of deadly poison.</VERS>\r\n      <VERS vnumber=\"9\">Therewith bless we God, even the Father; and therewith curse we men, which are made after the similitude of God.</VERS>\r\n      <VERS vnumber=\"10\">Out of the same mouth proceedeth blessing and cursing. My brethren, these things ought not so to be.</VERS>\r\n      <VERS vnumber=\"11\">Doth a fountain send forth at the same place sweet water and bitter?</VERS>\r\n      <VERS vnumber=\"12\">Can the fig tree, my brethren, bear olive berries? either a vine, figs? so can no fountain both yield salt water and fresh.</VERS>\r\n      <VERS vnumber=\"13\">Who is a wise man and endued with knowledge among you? let him shew out of a good conversation his works with meekness of wisdom.</VERS>\r\n      <VERS vnumber=\"14\">But if ye have bitter envying and strife in your hearts, glory not, and lie not against the truth.</VERS>\r\n      <VERS vnumber=\"15\">This wisdom descendeth not from above, but is earthly, sensual, devilish.</VERS>\r\n      <VERS vnumber=\"16\">For where envying and strife is, there is confusion and every evil work.</VERS>\r\n      <VERS vnumber=\"17\">But 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.</VERS>\r\n      <VERS vnumber=\"18\">And the fruit of righteousness is sown in peace of them that make peace.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">From whence come wars and fightings among you? come they not hence, even of your lusts that war in your members?</VERS>\r\n      <VERS vnumber=\"2\">Ye 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.</VERS>\r\n      <VERS vnumber=\"3\">Ye ask, and receive not, because ye ask amiss, that ye may consume it upon your lusts.</VERS>\r\n      <VERS vnumber=\"4\">Ye 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.</VERS>\r\n      <VERS vnumber=\"5\">Do ye think that the scripture saith in vain, The spirit that dwelleth in us lusteth to envy?</VERS>\r\n      <VERS vnumber=\"6\">But he giveth more grace. Wherefore he saith, God resisteth the proud, but giveth grace unto the humble.</VERS>\r\n      <VERS vnumber=\"7\">Submit yourselves therefore to God. Resist the devil, and he will flee from you.</VERS>\r\n      <VERS vnumber=\"8\">Draw nigh to God, and he will draw nigh to you. Cleanse your hands, ye sinners; and purify your hearts, ye double minded.</VERS>\r\n      <VERS vnumber=\"9\">Be afflicted, and mourn, and weep: let your laughter be turned to mourning, and your joy to heaviness.</VERS>\r\n      <VERS vnumber=\"10\">Humble yourselves in the sight of the Lord, and he shall lift you up.</VERS>\r\n      <VERS vnumber=\"11\">Speak 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.</VERS>\r\n      <VERS vnumber=\"12\">There is one lawgiver, who is able to save and to destroy: who art thou that judgest another?</VERS>\r\n      <VERS vnumber=\"13\">Go 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:</VERS>\r\n      <VERS vnumber=\"14\">Whereas 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.</VERS>\r\n      <VERS vnumber=\"15\">For that ye ought to say, If the Lord will, we shall live, and do this, or that.</VERS>\r\n      <VERS vnumber=\"16\">But now ye rejoice in your boastings: all such rejoicing is evil.</VERS>\r\n      <VERS vnumber=\"17\">Therefore to him that knoweth to do good, and doeth it not, to him it is sin.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">Go to now, ye rich men, weep and howl for your miseries that shall come upon you.</VERS>\r\n      <VERS vnumber=\"2\">Your riches are corrupted, and your garments are motheaten.</VERS>\r\n      <VERS vnumber=\"3\">Your 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.</VERS>\r\n      <VERS vnumber=\"4\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"5\">Ye have lived in pleasure on the earth, and been wanton; ye have nourished your hearts, as in a day of slaughter.</VERS>\r\n      <VERS vnumber=\"6\">Ye have condemned and killed the just; and he doth not resist you.</VERS>\r\n      <VERS vnumber=\"7\">Be 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.</VERS>\r\n      <VERS vnumber=\"8\">Be ye also patient; stablish your hearts: for the coming of the Lord draweth nigh.</VERS>\r\n      <VERS vnumber=\"9\">Grudge not one against another, brethren, lest ye be condemned: behold, the judge standeth before the door.</VERS>\r\n      <VERS vnumber=\"10\">Take, my brethren, the prophets, who have spoken in the name of the Lord, for an example of suffering affliction, and of patience.</VERS>\r\n      <VERS vnumber=\"11\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"12\">But 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.</VERS>\r\n      <VERS vnumber=\"13\">Is any among you afflicted? let him pray. Is any merry? let him sing psalms.</VERS>\r\n      <VERS vnumber=\"14\">Is 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:</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">Confess 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.</VERS>\r\n      <VERS vnumber=\"17\">Elias 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.</VERS>\r\n      <VERS vnumber=\"18\">And he prayed again, and the heaven gave rain, and the earth brought forth her fruit.</VERS>\r\n      <VERS vnumber=\"19\">Brethren, if any of you do err from the truth, and one convert him;</VERS>\r\n      <VERS vnumber=\"20\">Let 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.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"60\" bname=\"1 Peter\" bsname=\"1Pet\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">Peter, an apostle of Jesus Christ, to the strangers scattered throughout Pontus, Galatia, Cappadocia, Asia, and Bithynia,</VERS>\r\n      <VERS vnumber=\"2\">Elect 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.</VERS>\r\n      <VERS vnumber=\"3\">Blessed 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,</VERS>\r\n      <VERS vnumber=\"4\">To an inheritance incorruptible, and undefiled, and that fadeth not away, reserved in heaven for you,</VERS>\r\n      <VERS vnumber=\"5\">Who are kept by the power of God through faith unto salvation ready to be revealed in the last time.</VERS>\r\n      <VERS vnumber=\"6\">Wherein ye greatly rejoice, though now for a season, if need be, ye are in heaviness through manifold temptations:</VERS>\r\n      <VERS vnumber=\"7\">That 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:</VERS>\r\n      <VERS vnumber=\"8\">Whom having not seen, ye love; in whom, though now ye see him not, yet believing, ye rejoice with joy unspeakable and full of glory:</VERS>\r\n      <VERS vnumber=\"9\">Receiving the end of your faith, even the salvation of your souls.</VERS>\r\n      <VERS vnumber=\"10\">Of which salvation the prophets have enquired and searched diligently, who prophesied of the grace that should come unto you:</VERS>\r\n      <VERS vnumber=\"11\">Searching 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.</VERS>\r\n      <VERS vnumber=\"12\">Unto 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.</VERS>\r\n      <VERS vnumber=\"13\">Wherefore 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;</VERS>\r\n      <VERS vnumber=\"14\">As obedient children, not fashioning yourselves according to the former lusts in your ignorance:</VERS>\r\n      <VERS vnumber=\"15\">But as he which hath called you is holy, so be ye holy in all manner of conversation;</VERS>\r\n      <VERS vnumber=\"16\">Because it is written, Be ye holy; for I am holy.</VERS>\r\n      <VERS vnumber=\"17\">And 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:</VERS>\r\n      <VERS vnumber=\"18\">Forasmuch 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;</VERS>\r\n      <VERS vnumber=\"19\">But with the precious blood of Christ, as of a lamb without blemish and without spot:</VERS>\r\n      <VERS vnumber=\"20\">Who verily was foreordained before the foundation of the world, but was manifest in these last times for you,</VERS>\r\n      <VERS vnumber=\"21\">Who 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.</VERS>\r\n      <VERS vnumber=\"22\">Seeing 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:</VERS>\r\n      <VERS vnumber=\"23\">Being born again, not of corruptible seed, but of incorruptible, by the word of God, which liveth and abideth for ever.</VERS>\r\n      <VERS vnumber=\"24\">For 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:</VERS>\r\n      <VERS vnumber=\"25\">But the word of the Lord endureth for ever. And this is the word which by the gospel is preached unto you.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">Wherefore laying aside all malice, and all guile, and hypocrisies, and envies, and all evil speakings,</VERS>\r\n      <VERS vnumber=\"2\">As newborn babes, desire the sincere milk of the word, that ye may grow thereby:</VERS>\r\n      <VERS vnumber=\"3\">If so be ye have tasted that the Lord is gracious.</VERS>\r\n      <VERS vnumber=\"4\">To whom coming, as unto a living stone, disallowed indeed of men, but chosen of God, and precious,</VERS>\r\n      <VERS vnumber=\"5\">Ye also, as lively stones, are built up a spiritual house, an holy priesthood, to offer up spiritual sacrifices, acceptable to God by Jesus Christ.</VERS>\r\n      <VERS vnumber=\"6\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"7\">Unto 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,</VERS>\r\n      <VERS vnumber=\"8\">And a stone of stumbling, and a rock of offence, even to them which stumble at the word, being disobedient: whereunto also they were appointed.</VERS>\r\n      <VERS vnumber=\"9\">But 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:</VERS>\r\n      <VERS vnumber=\"10\">Which in time past were not a people, but are now the people of God: which had not obtained mercy, but now have obtained mercy.</VERS>\r\n      <VERS vnumber=\"11\">Dearly beloved, I beseech you as strangers and pilgrims, abstain from fleshly lusts, which war against the soul;</VERS>\r\n      <VERS vnumber=\"12\">Having 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.</VERS>\r\n      <VERS vnumber=\"13\">Submit yourselves to every ordinance of man for the Lord's sake: whether it be to the king, as supreme;</VERS>\r\n      <VERS vnumber=\"14\">Or unto governors, as unto them that are sent by him for the punishment of evildoers, and for the praise of them that do well.</VERS>\r\n      <VERS vnumber=\"15\">For so is the will of God, that with well doing ye may put to silence the ignorance of foolish men:</VERS>\r\n      <VERS vnumber=\"16\">As free, and not using your liberty for a cloke of maliciousness, but as the servants of God.</VERS>\r\n      <VERS vnumber=\"17\">Honour all men. Love the brotherhood. Fear God. Honour the king.</VERS>\r\n      <VERS vnumber=\"18\">Servants, be subject to your masters with all fear; not only to the good and gentle, but also to the froward.</VERS>\r\n      <VERS vnumber=\"19\">For this is thankworthy, if a man for conscience toward God endure grief, suffering wrongfully.</VERS>\r\n      <VERS vnumber=\"20\">For 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.</VERS>\r\n      <VERS vnumber=\"21\">For even hereunto were ye called: because Christ also suffered for us, leaving us an example, that ye should follow his steps:</VERS>\r\n      <VERS vnumber=\"22\">Who did no sin, neither was guile found in his mouth:</VERS>\r\n      <VERS vnumber=\"23\">Who, when he was reviled, reviled not again; when he suffered, he threatened not; but committed himself to him that judgeth righteously:</VERS>\r\n      <VERS vnumber=\"24\">Who 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.</VERS>\r\n      <VERS vnumber=\"25\">For ye were as sheep going astray; but are now returned unto the Shepherd and Bishop of your souls.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Likewise, 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;</VERS>\r\n      <VERS vnumber=\"2\">While they behold your chaste conversation coupled with fear.</VERS>\r\n      <VERS vnumber=\"3\">Whose adorning let it not be that outward adorning of plaiting the hair, and of wearing of gold, or of putting on of apparel;</VERS>\r\n      <VERS vnumber=\"4\">But 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.</VERS>\r\n      <VERS vnumber=\"5\">For after this manner in the old time the holy women also, who trusted in God, adorned themselves, being in subjection unto their own husbands:</VERS>\r\n      <VERS vnumber=\"6\">Even as Sara obeyed Abraham, calling him lord: whose daughters ye are, as long as ye do well, and are not afraid with any amazement.</VERS>\r\n      <VERS vnumber=\"7\">Likewise, 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.</VERS>\r\n      <VERS vnumber=\"8\">Finally, be ye all of one mind, having compassion one of another, love as brethren, be pitiful, be courteous:</VERS>\r\n      <VERS vnumber=\"9\">Not rendering evil for evil, or railing for railing: but contrariwise blessing; knowing that ye are thereunto called, that ye should inherit a blessing.</VERS>\r\n      <VERS vnumber=\"10\">For he that will love life, and see good days, let him refrain his tongue from evil, and his lips that they speak no guile:</VERS>\r\n      <VERS vnumber=\"11\">Let him eschew evil, and do good; let him seek peace, and ensue it.</VERS>\r\n      <VERS vnumber=\"12\">For 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.</VERS>\r\n      <VERS vnumber=\"13\">And who is he that will harm you, if ye be followers of that which is good?</VERS>\r\n      <VERS vnumber=\"14\">But and if ye suffer for righteousness' sake, happy are ye: and be not afraid of their terror, neither be troubled;</VERS>\r\n      <VERS vnumber=\"15\">But 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:</VERS>\r\n      <VERS vnumber=\"16\">Having 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.</VERS>\r\n      <VERS vnumber=\"17\">For it is better, if the will of God be so, that ye suffer for well doing, than for evil doing.</VERS>\r\n      <VERS vnumber=\"18\">For 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:</VERS>\r\n      <VERS vnumber=\"19\">By which also he went and preached unto the spirits in prison;</VERS>\r\n      <VERS vnumber=\"20\">Which 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.</VERS>\r\n      <VERS vnumber=\"21\">The 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:</VERS>\r\n      <VERS vnumber=\"22\">Who is gone into heaven, and is on the right hand of God; angels and authorities and powers being made subject unto him.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">Forasmuch 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;</VERS>\r\n      <VERS vnumber=\"2\">That he no longer should live the rest of his time in the flesh to the lusts of men, but to the will of God.</VERS>\r\n      <VERS vnumber=\"3\">For 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:</VERS>\r\n      <VERS vnumber=\"4\">Wherein they think it strange that ye run not with them to the same excess of riot, speaking evil of you:</VERS>\r\n      <VERS vnumber=\"5\">Who shall give account to him that is ready to judge the quick and the dead.</VERS>\r\n      <VERS vnumber=\"6\">For 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.</VERS>\r\n      <VERS vnumber=\"7\">But the end of all things is at hand: be ye therefore sober, and watch unto prayer.</VERS>\r\n      <VERS vnumber=\"8\">And above all things have fervent charity among yourselves: for charity shall cover the multitude of sins.</VERS>\r\n      <VERS vnumber=\"9\">Use hospitality one to another without grudging.</VERS>\r\n      <VERS vnumber=\"10\">As every man hath received the gift, even so minister the same one to another, as good stewards of the manifold grace of God.</VERS>\r\n      <VERS vnumber=\"11\">If 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.</VERS>\r\n      <VERS vnumber=\"12\">Beloved, think it not strange concerning the fiery trial which is to try you, as though some strange thing happened unto you:</VERS>\r\n      <VERS vnumber=\"13\">But 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.</VERS>\r\n      <VERS vnumber=\"14\">If 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.</VERS>\r\n      <VERS vnumber=\"15\">But 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.</VERS>\r\n      <VERS vnumber=\"16\">Yet if any man suffer as a Christian, let him not be ashamed; but let him glorify God on this behalf.</VERS>\r\n      <VERS vnumber=\"17\">For 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?</VERS>\r\n      <VERS vnumber=\"18\">And if the righteous scarcely be saved, where shall the ungodly and the sinner appear?</VERS>\r\n      <VERS vnumber=\"19\">Wherefore 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">The 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:</VERS>\r\n      <VERS vnumber=\"2\">Feed 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;</VERS>\r\n      <VERS vnumber=\"3\">Neither as being lords over God's heritage, but being ensamples to the flock.</VERS>\r\n      <VERS vnumber=\"4\">And when the chief Shepherd shall appear, ye shall receive a crown of glory that fadeth not away.</VERS>\r\n      <VERS vnumber=\"5\">Likewise, 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.</VERS>\r\n      <VERS vnumber=\"6\">Humble yourselves therefore under the mighty hand of God, that he may exalt you in due time:</VERS>\r\n      <VERS vnumber=\"7\">Casting all your care upon him; for he careth for you.</VERS>\r\n      <VERS vnumber=\"8\">Be sober, be vigilant; because your adversary the devil, as a roaring lion, walketh about, seeking whom he may devour:</VERS>\r\n      <VERS vnumber=\"9\">Whom resist stedfast in the faith, knowing that the same afflictions are accomplished in your brethren that are in the world.</VERS>\r\n      <VERS vnumber=\"10\">But 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.</VERS>\r\n      <VERS vnumber=\"11\">To him be glory and dominion for ever and ever. Amen.</VERS>\r\n      <VERS vnumber=\"12\">By 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.</VERS>\r\n      <VERS vnumber=\"13\">The church that is at Babylon, elected together with you, saluteth you; and so doth Marcus my son.</VERS>\r\n      <VERS vnumber=\"14\">Greet ye one another with a kiss of charity. Peace be with you all that are in Christ Jesus. Amen.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"61\" bname=\"2 Peter\" bsname=\"2Pet\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">Simon 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:</VERS>\r\n      <VERS vnumber=\"2\">Grace and peace be multiplied unto you through the knowledge of God, and of Jesus our Lord,</VERS>\r\n      <VERS vnumber=\"3\">According 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:</VERS>\r\n      <VERS vnumber=\"4\">Whereby 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.</VERS>\r\n      <VERS vnumber=\"5\">And beside this, giving all diligence, add to your faith virtue; and to virtue knowledge;</VERS>\r\n      <VERS vnumber=\"6\">And to knowledge temperance; and to temperance patience; and to patience godliness;</VERS>\r\n      <VERS vnumber=\"7\">And to godliness brotherly kindness; and to brotherly kindness charity.</VERS>\r\n      <VERS vnumber=\"8\">For 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.</VERS>\r\n      <VERS vnumber=\"9\">But he that lacketh these things is blind, and cannot see afar off, and hath forgotten that he was purged from his old sins.</VERS>\r\n      <VERS vnumber=\"10\">Wherefore the rather, brethren, give diligence to make your calling and election sure: for if ye do these things, ye shall never fall:</VERS>\r\n      <VERS vnumber=\"11\">For so an entrance shall be ministered unto you abundantly into the everlasting kingdom of our Lord and Saviour Jesus Christ.</VERS>\r\n      <VERS vnumber=\"12\">Wherefore 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.</VERS>\r\n      <VERS vnumber=\"13\">Yea, I think it meet, as long as I am in this tabernacle, to stir you up by putting you in remembrance;</VERS>\r\n      <VERS vnumber=\"14\">Knowing that shortly I must put off this my tabernacle, even as our Lord Jesus Christ hath shewed me.</VERS>\r\n      <VERS vnumber=\"15\">Moreover I will endeavour that ye may be able after my decease to have these things always in remembrance.</VERS>\r\n      <VERS vnumber=\"16\">For 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.</VERS>\r\n      <VERS vnumber=\"17\">For 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.</VERS>\r\n      <VERS vnumber=\"18\">And this voice which came from heaven we heard, when we were with him in the holy mount.</VERS>\r\n      <VERS vnumber=\"19\">We 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:</VERS>\r\n      <VERS vnumber=\"20\">Knowing this first, that no prophecy of the scripture is of any private interpretation.</VERS>\r\n      <VERS vnumber=\"21\">For 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">But 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.</VERS>\r\n      <VERS vnumber=\"2\">And many shall follow their pernicious ways; by reason of whom the way of truth shall be evil spoken of.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">For 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;</VERS>\r\n      <VERS vnumber=\"5\">And 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;</VERS>\r\n      <VERS vnumber=\"6\">And 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;</VERS>\r\n      <VERS vnumber=\"7\">And delivered just Lot, vexed with the filthy conversation of the wicked:</VERS>\r\n      <VERS vnumber=\"8\">For that righteous man dwelling among them, in seeing and hearing, vexed his righteous soul from day to day with their unlawful deeds;)</VERS>\r\n      <VERS vnumber=\"9\">The Lord knoweth how to deliver the godly out of temptations, and to reserve the unjust unto the day of judgment to be punished:</VERS>\r\n      <VERS vnumber=\"10\">But 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.</VERS>\r\n      <VERS vnumber=\"11\">Whereas angels, which are greater in power and might, bring not railing accusation against them before the Lord.</VERS>\r\n      <VERS vnumber=\"12\">But 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;</VERS>\r\n      <VERS vnumber=\"13\">And 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;</VERS>\r\n      <VERS vnumber=\"14\">Having eyes full of adultery, and that cannot cease from sin; beguiling unstable souls: an heart they have exercised with covetous practices; cursed children:</VERS>\r\n      <VERS vnumber=\"15\">Which have forsaken the right way, and are gone astray, following the way of Balaam the son of Bosor, who loved the wages of unrighteousness;</VERS>\r\n      <VERS vnumber=\"16\">But was rebuked for his iniquity: the dumb ass speaking with man's voice forbad the madness of the prophet.</VERS>\r\n      <VERS vnumber=\"17\">These are wells without water, clouds that are carried with a tempest; to whom the mist of darkness is reserved for ever.</VERS>\r\n      <VERS vnumber=\"18\">For 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.</VERS>\r\n      <VERS vnumber=\"19\">While 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.</VERS>\r\n      <VERS vnumber=\"20\">For 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.</VERS>\r\n      <VERS vnumber=\"21\">For 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.</VERS>\r\n      <VERS vnumber=\"22\">But 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">This second epistle, beloved, I now write unto you; in both which I stir up your pure minds by way of remembrance:</VERS>\r\n      <VERS vnumber=\"2\">That 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:</VERS>\r\n      <VERS vnumber=\"3\">Knowing this first, that there shall come in the last days scoffers, walking after their own lusts,</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">For 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:</VERS>\r\n      <VERS vnumber=\"6\">Whereby the world that then was, being overflowed with water, perished:</VERS>\r\n      <VERS vnumber=\"7\">But 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.</VERS>\r\n      <VERS vnumber=\"8\">But, 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.</VERS>\r\n      <VERS vnumber=\"9\">The 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.</VERS>\r\n      <VERS vnumber=\"10\">But 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.</VERS>\r\n      <VERS vnumber=\"11\">Seeing then that all these things shall be dissolved, what manner of persons ought ye to be in all holy conversation and godliness,</VERS>\r\n      <VERS vnumber=\"12\">Looking 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?</VERS>\r\n      <VERS vnumber=\"13\">Nevertheless we, according to his promise, look for new heavens and a new earth, wherein dwelleth righteousness.</VERS>\r\n      <VERS vnumber=\"14\">Wherefore, beloved, seeing that ye look for such things, be diligent that ye may be found of him in peace, without spot, and blameless.</VERS>\r\n      <VERS vnumber=\"15\">And 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;</VERS>\r\n      <VERS vnumber=\"16\">As 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.</VERS>\r\n      <VERS vnumber=\"17\">Ye 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.</VERS>\r\n      <VERS vnumber=\"18\">But grow in grace, and in the knowledge of our Lord and Saviour Jesus Christ. To him be glory both now and for ever. Amen.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"62\" bname=\"1 John\" bsname=\"1John\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">That 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;</VERS>\r\n      <VERS vnumber=\"2\">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;)</VERS>\r\n      <VERS vnumber=\"3\">That 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.</VERS>\r\n      <VERS vnumber=\"4\">And these things write we unto you, that your joy may be full.</VERS>\r\n      <VERS vnumber=\"5\">This 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.</VERS>\r\n      <VERS vnumber=\"6\">If we say that we have fellowship with him, and walk in darkness, we lie, and do not the truth:</VERS>\r\n      <VERS vnumber=\"7\">But 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.</VERS>\r\n      <VERS vnumber=\"8\">If we say that we have no sin, we deceive ourselves, and the truth is not in us.</VERS>\r\n      <VERS vnumber=\"9\">If we confess our sins, he is faithful and just to forgive us our sins, and to cleanse us from all unrighteousness.</VERS>\r\n      <VERS vnumber=\"10\">If we say that we have not sinned, we make him a liar, and his word is not in us.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">My 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:</VERS>\r\n      <VERS vnumber=\"2\">And he is the propitiation for our sins: and not for ours only, but also for the sins of the whole world.</VERS>\r\n      <VERS vnumber=\"3\">And hereby we do know that we know him, if we keep his commandments.</VERS>\r\n      <VERS vnumber=\"4\">He that saith, I know him, and keepeth not his commandments, is a liar, and the truth is not in him.</VERS>\r\n      <VERS vnumber=\"5\">But whoso keepeth his word, in him verily is the love of God perfected: hereby know we that we are in him.</VERS>\r\n      <VERS vnumber=\"6\">He that saith he abideth in him ought himself also so to walk, even as he walked.</VERS>\r\n      <VERS vnumber=\"7\">Brethren, 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.</VERS>\r\n      <VERS vnumber=\"8\">Again, 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.</VERS>\r\n      <VERS vnumber=\"9\">He that saith he is in the light, and hateth his brother, is in darkness even until now.</VERS>\r\n      <VERS vnumber=\"10\">He that loveth his brother abideth in the light, and there is none occasion of stumbling in him.</VERS>\r\n      <VERS vnumber=\"11\">But 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.</VERS>\r\n      <VERS vnumber=\"12\">I write unto you, little children, because your sins are forgiven you for his name's sake.</VERS>\r\n      <VERS vnumber=\"13\">I 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.</VERS>\r\n      <VERS vnumber=\"14\">I 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.</VERS>\r\n      <VERS vnumber=\"15\">Love 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.</VERS>\r\n      <VERS vnumber=\"16\">For 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.</VERS>\r\n      <VERS vnumber=\"17\">And the world passeth away, and the lust thereof: but he that doeth the will of God abideth for ever.</VERS>\r\n      <VERS vnumber=\"18\">Little 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.</VERS>\r\n      <VERS vnumber=\"19\">They 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.</VERS>\r\n      <VERS vnumber=\"20\">But ye have an unction from the Holy One, and ye know all things.</VERS>\r\n      <VERS vnumber=\"21\">I have not written unto you because ye know not the truth, but because ye know it, and that no lie is of the truth.</VERS>\r\n      <VERS vnumber=\"22\">Who is a liar but he that denieth that Jesus is the Christ? He is antichrist, that denieth the Father and the Son.</VERS>\r\n      <VERS vnumber=\"23\">Whosoever denieth the Son, the same hath not the Father: (but) he that acknowledgeth the Son hath the Father also.</VERS>\r\n      <VERS vnumber=\"24\">Let 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.</VERS>\r\n      <VERS vnumber=\"25\">And this is the promise that he hath promised us, even eternal life.</VERS>\r\n      <VERS vnumber=\"26\">These things have I written unto you concerning them that seduce you.</VERS>\r\n      <VERS vnumber=\"27\">But 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.</VERS>\r\n      <VERS vnumber=\"28\">And now, little children, abide in him; that, when he shall appear, we may have confidence, and not be ashamed before him at his coming.</VERS>\r\n      <VERS vnumber=\"29\">If ye know that he is righteous, ye know that every one that doeth righteousness is born of him.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"2\">Beloved, 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.</VERS>\r\n      <VERS vnumber=\"3\">And every man that hath this hope in him purifieth himself, even as he is pure.</VERS>\r\n      <VERS vnumber=\"4\">Whosoever committeth sin transgresseth also the law: for sin is the transgression of the law.</VERS>\r\n      <VERS vnumber=\"5\">And ye know that he was manifested to take away our sins; and in him is no sin.</VERS>\r\n      <VERS vnumber=\"6\">Whosoever abideth in him sinneth not: whosoever sinneth hath not seen him, neither known him.</VERS>\r\n      <VERS vnumber=\"7\">Little children, let no man deceive you: he that doeth righteousness is righteous, even as he is righteous.</VERS>\r\n      <VERS vnumber=\"8\">He 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.</VERS>\r\n      <VERS vnumber=\"9\">Whosoever is born of God doth not commit sin; for his seed remaineth in him: and he cannot sin, because he is born of God.</VERS>\r\n      <VERS vnumber=\"10\">In 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.</VERS>\r\n      <VERS vnumber=\"11\">For this is the message that ye heard from the beginning, that we should love one another.</VERS>\r\n      <VERS vnumber=\"12\">Not 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.</VERS>\r\n      <VERS vnumber=\"13\">Marvel not, my brethren, if the world hate you.</VERS>\r\n      <VERS vnumber=\"14\">We know that we have passed from death unto life, because we love the brethren. He that loveth not his brother abideth in death.</VERS>\r\n      <VERS vnumber=\"15\">Whosoever hateth his brother is a murderer: and ye know that no murderer hath eternal life abiding in him.</VERS>\r\n      <VERS vnumber=\"16\">Hereby 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.</VERS>\r\n      <VERS vnumber=\"17\">But 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?</VERS>\r\n      <VERS vnumber=\"18\">My little children, let us not love in word, neither in tongue; but in deed and in truth.</VERS>\r\n      <VERS vnumber=\"19\">And hereby we know that we are of the truth, and shall assure our hearts before him.</VERS>\r\n      <VERS vnumber=\"20\">For if our heart condemn us, God is greater than our heart, and knoweth all things.</VERS>\r\n      <VERS vnumber=\"21\">Beloved, if our heart condemn us not, then have we confidence toward God.</VERS>\r\n      <VERS vnumber=\"22\">And whatsoever we ask, we receive of him, because we keep his commandments, and do those things that are pleasing in his sight.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">Beloved, believe not every spirit, but try the spirits whether they are of God: because many false prophets are gone out into the world.</VERS>\r\n      <VERS vnumber=\"2\">Hereby know ye the Spirit of God: Every spirit that confesseth that Jesus Christ is come in the flesh is of God:</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">Ye are of God, little children, and have overcome them: because greater is he that is in you, than he that is in the world.</VERS>\r\n      <VERS vnumber=\"5\">They are of the world: therefore speak they of the world, and the world heareth them.</VERS>\r\n      <VERS vnumber=\"6\">We 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.</VERS>\r\n      <VERS vnumber=\"7\">Beloved, let us love one another: for love is of God; and every one that loveth is born of God, and knoweth God.</VERS>\r\n      <VERS vnumber=\"8\">He that loveth not knoweth not God; for God is love.</VERS>\r\n      <VERS vnumber=\"9\">In 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.</VERS>\r\n      <VERS vnumber=\"10\">Herein is love, not that we loved God, but that he loved us, and sent his Son to be the propitiation for our sins.</VERS>\r\n      <VERS vnumber=\"11\">Beloved, if God so loved us, we ought also to love one another.</VERS>\r\n      <VERS vnumber=\"12\">No man hath seen God at any time. If we love one another, God dwelleth in us, and his love is perfected in us.</VERS>\r\n      <VERS vnumber=\"13\">Hereby know we that we dwell in him, and he in us, because he hath given us of his Spirit.</VERS>\r\n      <VERS vnumber=\"14\">And we have seen and do testify that the Father sent the Son to be the Saviour of the world.</VERS>\r\n      <VERS vnumber=\"15\">Whosoever shall confess that Jesus is the Son of God, God dwelleth in him, and he in God.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">Herein 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.</VERS>\r\n      <VERS vnumber=\"18\">There is no fear in love; but perfect love casteth out fear: because fear hath torment. He that feareth is not made perfect in love.</VERS>\r\n      <VERS vnumber=\"19\">We love him, because he first loved us.</VERS>\r\n      <VERS vnumber=\"20\">If 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?</VERS>\r\n      <VERS vnumber=\"21\">And this commandment have we from him, That he who loveth God love his brother also.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">Whosoever 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.</VERS>\r\n      <VERS vnumber=\"2\">By this we know that we love the children of God, when we love God, and keep his commandments.</VERS>\r\n      <VERS vnumber=\"3\">For this is the love of God, that we keep his commandments: and his commandments are not grievous.</VERS>\r\n      <VERS vnumber=\"4\">For whatsoever is born of God overcometh the world: and this is the victory that overcometh the world, even our faith.</VERS>\r\n      <VERS vnumber=\"5\">Who is he that overcometh the world, but he that believeth that Jesus is the Son of God?</VERS>\r\n      <VERS vnumber=\"6\">This 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.</VERS>\r\n      <VERS vnumber=\"7\">For there are three that bear record in heaven, the Father, the Word, and the Holy Ghost: and these three are one.</VERS>\r\n      <VERS vnumber=\"8\">And there are three that bear witness in earth, the Spirit, and the water, and the blood: and these three agree in one.</VERS>\r\n      <VERS vnumber=\"9\">If 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.</VERS>\r\n      <VERS vnumber=\"10\">He 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.</VERS>\r\n      <VERS vnumber=\"11\">And this is the record, that God hath given to us eternal life, and this life is in his Son.</VERS>\r\n      <VERS vnumber=\"12\">He that hath the Son hath life; and he that hath not the Son of God hath not life.</VERS>\r\n      <VERS vnumber=\"13\">These 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.</VERS>\r\n      <VERS vnumber=\"14\">And this is the confidence that we have in him, that, if we ask any thing according to his will, he heareth us:</VERS>\r\n      <VERS vnumber=\"15\">And if we know that he hear us, whatsoever we ask, we know that we have the petitions that we desired of him.</VERS>\r\n      <VERS vnumber=\"16\">If 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.</VERS>\r\n      <VERS vnumber=\"17\">All unrighteousness is sin: and there is a sin not unto death.</VERS>\r\n      <VERS vnumber=\"18\">We 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.</VERS>\r\n      <VERS vnumber=\"19\">And we know that we are of God, and the whole world lieth in wickedness.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">Little children, keep yourselves from idols. Amen.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"63\" bname=\"2 John\" bsname=\"2John\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">The 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;</VERS>\r\n      <VERS vnumber=\"2\">For the truth's sake, which dwelleth in us, and shall be with us for ever.</VERS>\r\n      <VERS vnumber=\"3\">Grace 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.</VERS>\r\n      <VERS vnumber=\"4\">I rejoiced greatly that I found of thy children walking in truth, as we have received a commandment from the Father.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">For 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.</VERS>\r\n      <VERS vnumber=\"8\">Look to yourselves, that we lose not those things which we have wrought, but that we receive a full reward.</VERS>\r\n      <VERS vnumber=\"9\">Whosoever 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.</VERS>\r\n      <VERS vnumber=\"10\">If there come any unto you, and bring not this doctrine, receive him not into your house, neither bid him God speed:</VERS>\r\n      <VERS vnumber=\"11\">For he that biddeth him God speed is partaker of his evil deeds.</VERS>\r\n      <VERS vnumber=\"12\">Having 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.</VERS>\r\n      <VERS vnumber=\"13\">The children of thy elect sister greet thee. Amen.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"64\" bname=\"3 John\" bsname=\"3John\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">The elder unto the wellbeloved Gaius, whom I love in the truth.</VERS>\r\n      <VERS vnumber=\"2\">Beloved, I wish above all things that thou mayest prosper and be in health, even as thy soul prospereth.</VERS>\r\n      <VERS vnumber=\"3\">For I rejoiced greatly, when the brethren came and testified of the truth that is in thee, even as thou walkest in the truth.</VERS>\r\n      <VERS vnumber=\"4\">I have no greater joy than to hear that my children walk in truth.</VERS>\r\n      <VERS vnumber=\"5\">Beloved, thou doest faithfully whatsoever thou doest to the brethren, and to strangers;</VERS>\r\n      <VERS vnumber=\"6\">Which 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:</VERS>\r\n      <VERS vnumber=\"7\">Because that for his name's sake they went forth, taking nothing of the Gentiles.</VERS>\r\n      <VERS vnumber=\"8\">We therefore ought to receive such, that we might be fellowhelpers to the truth.</VERS>\r\n      <VERS vnumber=\"9\">I wrote unto the church: but Diotrephes, who loveth to have the preeminence among them, receiveth us not.</VERS>\r\n      <VERS vnumber=\"10\">Wherefore, 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.</VERS>\r\n      <VERS vnumber=\"11\">Beloved, 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.</VERS>\r\n      <VERS vnumber=\"12\">Demetrius 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.</VERS>\r\n      <VERS vnumber=\"13\">I had many things to write, but I will not with ink and pen write unto thee:</VERS>\r\n      <VERS vnumber=\"14\">But 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.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"65\" bname=\"Jude\" bsname=\"Jude\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">Jude, 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:</VERS>\r\n      <VERS vnumber=\"2\">Mercy unto you, and peace, and love, be multiplied.</VERS>\r\n      <VERS vnumber=\"3\">Beloved, 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.</VERS>\r\n      <VERS vnumber=\"4\">For 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.</VERS>\r\n      <VERS vnumber=\"5\">I 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">Even 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.</VERS>\r\n      <VERS vnumber=\"8\">Likewise also these filthy dreamers defile the flesh, despise dominion, and speak evil of dignities.</VERS>\r\n      <VERS vnumber=\"9\">Yet 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.</VERS>\r\n      <VERS vnumber=\"10\">But these speak evil of those things which they know not: but what they know naturally, as brute beasts, in those things they corrupt themselves.</VERS>\r\n      <VERS vnumber=\"11\">Woe 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.</VERS>\r\n      <VERS vnumber=\"12\">These 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;</VERS>\r\n      <VERS vnumber=\"13\">Raging waves of the sea, foaming out their own shame; wandering stars, to whom is reserved the blackness of darkness for ever.</VERS>\r\n      <VERS vnumber=\"14\">And Enoch also, the seventh from Adam, prophesied of these, saying, Behold, the Lord cometh with ten thousands of his saints,</VERS>\r\n      <VERS vnumber=\"15\">To 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.</VERS>\r\n      <VERS vnumber=\"16\">These are murmurers, complainers, walking after their own lusts; and their mouth speaketh great swelling words, having men's persons in admiration because of advantage.</VERS>\r\n      <VERS vnumber=\"17\">But, beloved, remember ye the words which were spoken before of the apostles of our Lord Jesus Christ;</VERS>\r\n      <VERS vnumber=\"18\">How that they told you there should be mockers in the last time, who should walk after their own ungodly lusts.</VERS>\r\n      <VERS vnumber=\"19\">These be they who separate themselves, sensual, having not the Spirit.</VERS>\r\n      <VERS vnumber=\"20\">But ye, beloved, building up yourselves on your most holy faith, praying in the Holy Ghost,</VERS>\r\n      <VERS vnumber=\"21\">Keep yourselves in the love of God, looking for the mercy of our Lord Jesus Christ unto eternal life.</VERS>\r\n      <VERS vnumber=\"22\">And of some have compassion, making a difference:</VERS>\r\n      <VERS vnumber=\"23\">And others save with fear, pulling them out of the fire; hating even the garment spotted by the flesh.</VERS>\r\n      <VERS vnumber=\"24\">Now unto him that is able to keep you from falling, and to present you faultless before the presence of his glory with exceeding joy,</VERS>\r\n      <VERS vnumber=\"25\">To the only wise God our Saviour, be glory and majesty, dominion and power, both now and ever. Amen.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n  <BIBLEBOOK bnumber=\"66\" bname=\"Revelation\" bsname=\"Rev\">\r\n    <CHAPTER cnumber=\"1\">\r\n      <VERS vnumber=\"1\">The 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:</VERS>\r\n      <VERS vnumber=\"2\">Who bare record of the word of God, and of the testimony of Jesus Christ, and of all things that he saw.</VERS>\r\n      <VERS vnumber=\"3\">Blessed 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.</VERS>\r\n      <VERS vnumber=\"4\">John 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;</VERS>\r\n      <VERS vnumber=\"5\">And 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,</VERS>\r\n      <VERS vnumber=\"6\">And hath made us kings and priests unto God and his Father; to him be glory and dominion for ever and ever. Amen.</VERS>\r\n      <VERS vnumber=\"7\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"8\">I am Alpha and Omega, the beginning and the ending, saith the Lord, which is, and which was, and which is to come, the Almighty.</VERS>\r\n      <VERS vnumber=\"9\">I 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.</VERS>\r\n      <VERS vnumber=\"10\">I was in the Spirit on the Lord's day, and heard behind me a great voice, as of a trumpet,</VERS>\r\n      <VERS vnumber=\"11\">Saying, 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.</VERS>\r\n      <VERS vnumber=\"12\">And I turned to see the voice that spake with me. And being turned, I saw seven golden candlesticks;</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">His head and his hairs were white like wool, as white as snow; and his eyes were as a flame of fire;</VERS>\r\n      <VERS vnumber=\"15\">And his feet like unto fine brass, as if they burned in a furnace; and his voice as the sound of many waters.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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:</VERS>\r\n      <VERS vnumber=\"18\">I am he that liveth, and was dead; and, behold, I am alive for evermore, Amen; and have the keys of hell and of death.</VERS>\r\n      <VERS vnumber=\"19\">Write the things which thou hast seen, and the things which are, and the things which shall be hereafter;</VERS>\r\n      <VERS vnumber=\"20\">The 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"2\">\r\n      <VERS vnumber=\"1\">Unto 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;</VERS>\r\n      <VERS vnumber=\"2\">I 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:</VERS>\r\n      <VERS vnumber=\"3\">And hast borne, and hast patience, and for my name's sake hast laboured, and hast not fainted.</VERS>\r\n      <VERS vnumber=\"4\">Nevertheless I have somewhat against thee, because thou hast left thy first love.</VERS>\r\n      <VERS vnumber=\"5\">Remember 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.</VERS>\r\n      <VERS vnumber=\"6\">But this thou hast, that thou hatest the deeds of the Nicolaitans, which I also hate.</VERS>\r\n      <VERS vnumber=\"7\">He 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.</VERS>\r\n      <VERS vnumber=\"8\">And unto the angel of the church in Smyrna write; These things saith the first and the last, which was dead, and is alive;</VERS>\r\n      <VERS vnumber=\"9\">I 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.</VERS>\r\n      <VERS vnumber=\"10\">Fear 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.</VERS>\r\n      <VERS vnumber=\"11\">He 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.</VERS>\r\n      <VERS vnumber=\"12\">And to the angel of the church in Pergamos write; These things saith he which hath the sharp sword with two edges;</VERS>\r\n      <VERS vnumber=\"13\">I 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.</VERS>\r\n      <VERS vnumber=\"14\">But 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.</VERS>\r\n      <VERS vnumber=\"15\">So hast thou also them that hold the doctrine of the Nicolaitans, which thing I hate.</VERS>\r\n      <VERS vnumber=\"16\">Repent; or else I will come unto thee quickly, and will fight against them with the sword of my mouth.</VERS>\r\n      <VERS vnumber=\"17\">He 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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;</VERS>\r\n      <VERS vnumber=\"19\">I know thy works, and charity, and service, and faith, and thy patience, and thy works; and the last to be more than the first.</VERS>\r\n      <VERS vnumber=\"20\">Notwithstanding 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.</VERS>\r\n      <VERS vnumber=\"21\">And I gave her space to repent of her fornication; and she repented not.</VERS>\r\n      <VERS vnumber=\"22\">Behold, I will cast her into a bed, and them that commit adultery with her into great tribulation, except they repent of their deeds.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">But 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.</VERS>\r\n      <VERS vnumber=\"25\">But that which ye have already hold fast till I come.</VERS>\r\n      <VERS vnumber=\"26\">And he that overcometh, and keepeth my works unto the end, to him will I give power over the nations:</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n      <VERS vnumber=\"28\">And I will give him the morning star.</VERS>\r\n      <VERS vnumber=\"29\">He that hath an ear, let him hear what the Spirit saith unto the churches.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"3\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">Be watchful, and strengthen the things which remain, that are ready to die: for I have not found thy works perfect before God.</VERS>\r\n      <VERS vnumber=\"3\">Remember 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.</VERS>\r\n      <VERS vnumber=\"4\">Thou 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.</VERS>\r\n      <VERS vnumber=\"5\">He 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.</VERS>\r\n      <VERS vnumber=\"6\">He that hath an ear, let him hear what the Spirit saith unto the churches.</VERS>\r\n      <VERS vnumber=\"7\">And 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;</VERS>\r\n      <VERS vnumber=\"8\">I 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.</VERS>\r\n      <VERS vnumber=\"9\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"10\">Because 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.</VERS>\r\n      <VERS vnumber=\"11\">Behold, I come quickly: hold that fast which thou hast, that no man take thy crown.</VERS>\r\n      <VERS vnumber=\"12\">Him 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.</VERS>\r\n      <VERS vnumber=\"13\">He that hath an ear, let him hear what the Spirit saith unto the churches.</VERS>\r\n      <VERS vnumber=\"14\">And 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;</VERS>\r\n      <VERS vnumber=\"15\">I know thy works, that thou art neither cold nor hot: I would thou wert cold or hot.</VERS>\r\n      <VERS vnumber=\"16\">So then because thou art lukewarm, and neither cold nor hot, I will spue thee out of my mouth.</VERS>\r\n      <VERS vnumber=\"17\">Because 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:</VERS>\r\n      <VERS vnumber=\"18\">I 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.</VERS>\r\n      <VERS vnumber=\"19\">As many as I love, I rebuke and chasten: be zealous therefore, and repent.</VERS>\r\n      <VERS vnumber=\"20\">Behold, 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.</VERS>\r\n      <VERS vnumber=\"21\">To 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.</VERS>\r\n      <VERS vnumber=\"22\">He that hath an ear, let him hear what the Spirit saith unto the churches.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"4\">\r\n      <VERS vnumber=\"1\">After 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.</VERS>\r\n      <VERS vnumber=\"2\">And immediately I was in the spirit: and, behold, a throne was set in heaven, and one sat on the throne.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And when those beasts give glory and honour and thanks to him that sat on the throne, who liveth for ever and ever,</VERS>\r\n      <VERS vnumber=\"10\">The 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,</VERS>\r\n      <VERS vnumber=\"11\">Thou 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"5\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And I saw a strong angel proclaiming with a loud voice, Who is worthy to open the book, and to loose the seals thereof?</VERS>\r\n      <VERS vnumber=\"3\">And no man in heaven, nor in earth, neither under the earth, was able to open the book, neither to look thereon.</VERS>\r\n      <VERS vnumber=\"4\">And I wept much, because no man was found worthy to open and to read the book, neither to look thereon.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And he came and took the book out of the right hand of him that sat upon the throne.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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;</VERS>\r\n      <VERS vnumber=\"10\">And hast made us unto our God kings and priests: and we shall reign on the earth.</VERS>\r\n      <VERS vnumber=\"11\">And 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;</VERS>\r\n      <VERS vnumber=\"12\">Saying 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And the four beasts said, Amen. And the four and twenty elders fell down and worshipped him that liveth for ever and ever.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"6\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And when he had opened the second seal, I heard the second beast say, Come and see.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And when he had opened the fourth seal, I heard the voice of the fourth beast say, Come and see.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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:</VERS>\r\n      <VERS vnumber=\"10\">And 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?</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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;</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And the heaven departed as a scroll when it is rolled together; and every mountain and island were moved out of their places.</VERS>\r\n      <VERS vnumber=\"15\">And 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;</VERS>\r\n      <VERS vnumber=\"16\">And 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:</VERS>\r\n      <VERS vnumber=\"17\">For the great day of his wrath is come; and who shall be able to stand?</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"7\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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,</VERS>\r\n      <VERS vnumber=\"3\">Saying, Hurt not the earth, neither the sea, nor the trees, till we have sealed the servants of our God in their foreheads.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">Of 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.</VERS>\r\n      <VERS vnumber=\"6\">Of the tribe of Aser were sealed twelve thousand. Of the tribe of Nepthalim were sealed twelve thousand. Of the tribe of Manasses were sealed twelve thousand.</VERS>\r\n      <VERS vnumber=\"7\">Of 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.</VERS>\r\n      <VERS vnumber=\"8\">Of 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.</VERS>\r\n      <VERS vnumber=\"9\">After 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;</VERS>\r\n      <VERS vnumber=\"10\">And cried with a loud voice, saying, Salvation to our God which sitteth upon the throne, and unto the Lamb.</VERS>\r\n      <VERS vnumber=\"11\">And 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,</VERS>\r\n      <VERS vnumber=\"12\">Saying, Amen: Blessing, and glory, and wisdom, and thanksgiving, and honour, and power, and might, be unto our God for ever and ever. Amen.</VERS>\r\n      <VERS vnumber=\"13\">And one of the elders answered, saying unto me, What are these which are arrayed in white robes? and whence came they?</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"16\">They shall hunger no more, neither thirst any more; neither shall the sun light on them, nor any heat.</VERS>\r\n      <VERS vnumber=\"17\">For 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"8\">\r\n      <VERS vnumber=\"1\">And when he had opened the seventh seal, there was silence in heaven about the space of half an hour.</VERS>\r\n      <VERS vnumber=\"2\">And I saw the seven angels which stood before God; and to them were given seven trumpets.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And the smoke of the incense, which came with the prayers of the saints, ascended up before God out of the angel's hand.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And the seven angels which had the seven trumpets prepared themselves to sound.</VERS>\r\n      <VERS vnumber=\"7\">The 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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;</VERS>\r\n      <VERS vnumber=\"9\">And the third part of the creatures which were in the sea, and had life, died; and the third part of the ships were destroyed.</VERS>\r\n      <VERS vnumber=\"10\">And 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;</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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!</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"9\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And there came out of the smoke locusts upon the earth: and unto them was given power, as the scorpions of the earth have power.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And in those days shall men seek death, and shall not find it; and shall desire to die, and death shall flee from them.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And they had hair as the hair of women, and their teeth were as the teeth of lions.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And they had tails like unto scorpions, and there were stings in their tails: and their power was to hurt men five months.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">One woe is past; and, behold, there come two woes more hereafter.</VERS>\r\n      <VERS vnumber=\"13\">And the sixth angel sounded, and I heard a voice from the four horns of the golden altar which is before God,</VERS>\r\n      <VERS vnumber=\"14\">Saying to the sixth angel which had the trumpet, Loose the four angels which are bound in the great river Euphrates.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And the number of the army of the horsemen were two hundred thousand thousand: and I heard the number of them.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">By 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.</VERS>\r\n      <VERS vnumber=\"19\">For 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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:</VERS>\r\n      <VERS vnumber=\"21\">Neither repented they of their murders, nor of their sorceries, nor of their fornication, nor of their thefts.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"10\">\r\n      <VERS vnumber=\"1\">And 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:</VERS>\r\n      <VERS vnumber=\"2\">And 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,</VERS>\r\n      <VERS vnumber=\"3\">And cried with a loud voice, as when a lion roareth: and when he had cried, seven thunders uttered their voices.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And the angel which I saw stand upon the sea and upon the earth lifted up his hand to heaven,</VERS>\r\n      <VERS vnumber=\"6\">And 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:</VERS>\r\n      <VERS vnumber=\"7\">But 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And he said unto me, Thou must prophesy again before many peoples, and nations, and tongues, and kings.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"11\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">But 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.</VERS>\r\n      <VERS vnumber=\"3\">And I will give power unto my two witnesses, and they shall prophesy a thousand two hundred and threescore days, clothed in sackcloth.</VERS>\r\n      <VERS vnumber=\"4\">These are the two olive trees, and the two candlesticks standing before the God of the earth.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">These 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">The second woe is past; and, behold, the third woe cometh quickly.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And the four and twenty elders, which sat before God on their seats, fell upon their faces, and worshipped God,</VERS>\r\n      <VERS vnumber=\"17\">Saying, 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"12\">\r\n      <VERS vnumber=\"1\">And 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:</VERS>\r\n      <VERS vnumber=\"2\">And she being with child cried, travailing in birth, and pained to be delivered.</VERS>\r\n      <VERS vnumber=\"3\">And there appeared another wonder in heaven; and behold a great red dragon, having seven heads and ten horns, and seven crowns upon his heads.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And there was war in heaven: Michael and his angels fought against the dragon; and the dragon fought and his angels,</VERS>\r\n      <VERS vnumber=\"8\">And prevailed not; neither was their place found any more in heaven.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"13\">And when the dragon saw that he was cast unto the earth, he persecuted the woman which brought forth the man child.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And the earth helped the woman, and the earth opened her mouth, and swallowed up the flood which the dragon cast out of his mouth.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"13\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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?</VERS>\r\n      <VERS vnumber=\"5\">And there was given unto him a mouth speaking great things and blasphemies; and power was given unto him to continue forty and two months.</VERS>\r\n      <VERS vnumber=\"6\">And he opened his mouth in blasphemy against God, to blaspheme his name, and his tabernacle, and them that dwell in heaven.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">If any man have an ear, let him hear.</VERS>\r\n      <VERS vnumber=\"10\">He 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.</VERS>\r\n      <VERS vnumber=\"11\">And I beheld another beast coming up out of the earth; and he had two horns like a lamb, and he spake as a dragon.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And he doeth great wonders, so that he maketh fire come down from heaven on the earth in the sight of men,</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And 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:</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">Here 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"14\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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:</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">These 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.</VERS>\r\n      <VERS vnumber=\"5\">And in their mouth was found no guile: for they are without fault before the throne of God.</VERS>\r\n      <VERS vnumber=\"6\">And 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,</VERS>\r\n      <VERS vnumber=\"7\">Saying 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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,</VERS>\r\n      <VERS vnumber=\"10\">The 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:</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">Here is the patience of the saints: here are they that keep the commandments of God, and the faith of Jesus.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And he that sat on the cloud thrust in his sickle on the earth; and the earth was reaped.</VERS>\r\n      <VERS vnumber=\"17\">And another angel came out of the temple which is in heaven, he also having a sharp sickle.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"15\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">Who 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.</VERS>\r\n      <VERS vnumber=\"5\">And after that I looked, and, behold, the temple of the tabernacle of the testimony in heaven was opened:</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"16\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And the third angel poured out his vial upon the rivers and fountains of waters; and they became blood.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">For they have shed the blood of saints and prophets, and thou hast given them blood to drink; for they are worthy.</VERS>\r\n      <VERS vnumber=\"7\">And I heard another out of the altar say, Even so, Lord God Almighty, true and righteous are thy judgments.</VERS>\r\n      <VERS vnumber=\"8\">And the fourth angel poured out his vial upon the sun; and power was given unto him to scorch men with fire.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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,</VERS>\r\n      <VERS vnumber=\"11\">And blasphemed the God of heaven because of their pains and their sores, and repented not of their deeds.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">For 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.</VERS>\r\n      <VERS vnumber=\"15\">Behold, I come as a thief. Blessed is he that watcheth, and keepeth his garments, lest he walk naked, and they see his shame.</VERS>\r\n      <VERS vnumber=\"16\">And he gathered them together into a place called in the Hebrew tongue Armageddon.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">And 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And every island fled away, and the mountains were not found.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"17\">\r\n      <VERS vnumber=\"1\">And 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:</VERS>\r\n      <VERS vnumber=\"2\">With 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.</VERS>\r\n      <VERS vnumber=\"3\">So 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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:</VERS>\r\n      <VERS vnumber=\"5\">And upon her forehead was a name written, MYSTERY, BABYLON THE GREAT, THE MOTHER OF HARLOTS AND ABOMINATIONS OF THE EARTH.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">And 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.</VERS>\r\n      <VERS vnumber=\"8\">The 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.</VERS>\r\n      <VERS vnumber=\"9\">And here is the mind which hath wisdom. The seven heads are seven mountains, on which the woman sitteth.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And the beast that was, and is not, even he is the eighth, and is of the seven, and goeth into perdition.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">These have one mind, and shall give their power and strength unto the beast.</VERS>\r\n      <VERS vnumber=\"14\">These 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.</VERS>\r\n      <VERS vnumber=\"15\">And he saith unto me, The waters which thou sawest, where the whore sitteth, are peoples, and multitudes, and nations, and tongues.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">For 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.</VERS>\r\n      <VERS vnumber=\"18\">And the woman which thou sawest is that great city, which reigneth over the kings of the earth.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"18\">\r\n      <VERS vnumber=\"1\">And after these things I saw another angel come down from heaven, having great power; and the earth was lightened with his glory.</VERS>\r\n      <VERS vnumber=\"2\">And 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.</VERS>\r\n      <VERS vnumber=\"3\">For 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">For her sins have reached unto heaven, and God hath remembered her iniquities.</VERS>\r\n      <VERS vnumber=\"6\">Reward 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.</VERS>\r\n      <VERS vnumber=\"7\">How 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.</VERS>\r\n      <VERS vnumber=\"8\">Therefore 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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,</VERS>\r\n      <VERS vnumber=\"10\">Standing 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.</VERS>\r\n      <VERS vnumber=\"11\">And the merchants of the earth shall weep and mourn over her; for no man buyeth their merchandise any more:</VERS>\r\n      <VERS vnumber=\"12\">The 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,</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And 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.</VERS>\r\n      <VERS vnumber=\"15\">The merchants of these things, which were made rich by her, shall stand afar off for the fear of her torment, weeping and wailing,</VERS>\r\n      <VERS vnumber=\"16\">And 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!</VERS>\r\n      <VERS vnumber=\"17\">For 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,</VERS>\r\n      <VERS vnumber=\"18\">And cried when they saw the smoke of her burning, saying, What city is like unto this great city!</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">Rejoice over her, thou heaven, and ye holy apostles and prophets; for God hath avenged you on her.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And 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;</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And in her was found the blood of prophets, and of saints, and of all that were slain upon the earth.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"19\">\r\n      <VERS vnumber=\"1\">And 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:</VERS>\r\n      <VERS vnumber=\"2\">For 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.</VERS>\r\n      <VERS vnumber=\"3\">And again they said, Alleluia. And her smoke rose up for ever and ever.</VERS>\r\n      <VERS vnumber=\"4\">And the four and twenty elders and the four beasts fell down and worshipped God that sat on the throne, saying, Amen; Alleluia.</VERS>\r\n      <VERS vnumber=\"5\">And a voice came out of the throne, saying, Praise our God, all ye his servants, and ye that fear him, both small and great.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">Let 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.</VERS>\r\n      <VERS vnumber=\"8\">And to her was granted that she should be arrayed in fine linen, clean and white: for the fine linen is the righteousness of saints.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">His 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.</VERS>\r\n      <VERS vnumber=\"13\">And he was clothed with a vesture dipped in blood: and his name is called The Word of God.</VERS>\r\n      <VERS vnumber=\"14\">And the armies which were in heaven followed him upon white horses, clothed in fine linen, white and clean.</VERS>\r\n      <VERS vnumber=\"15\">And 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.</VERS>\r\n      <VERS vnumber=\"16\">And he hath on his vesture and on his thigh a name written, KING OF KINGS, AND LORD OF LORDS.</VERS>\r\n      <VERS vnumber=\"17\">And 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;</VERS>\r\n      <VERS vnumber=\"18\">That 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.</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">And 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.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"20\">\r\n      <VERS vnumber=\"1\">And I saw an angel come down from heaven, having the key of the bottomless pit and a great chain in his hand.</VERS>\r\n      <VERS vnumber=\"2\">And he laid hold on the dragon, that old serpent, which is the Devil, and Satan, and bound him a thousand years,</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">But the rest of the dead lived not again until the thousand years were finished. This is the first resurrection.</VERS>\r\n      <VERS vnumber=\"6\">Blessed 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.</VERS>\r\n      <VERS vnumber=\"7\">And when the thousand years are expired, Satan shall be loosed out of his prison,</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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.</VERS>\r\n      <VERS vnumber=\"11\">And 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.</VERS>\r\n      <VERS vnumber=\"12\">And 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.</VERS>\r\n      <VERS vnumber=\"13\">And 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.</VERS>\r\n      <VERS vnumber=\"14\">And death and hell were cast into the lake of fire. This is the second death.</VERS>\r\n      <VERS vnumber=\"15\">And whosoever was not found written in the book of life was cast into the lake of fire.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"21\">\r\n      <VERS vnumber=\"1\">And 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.</VERS>\r\n      <VERS vnumber=\"2\">And I John saw the holy city, new Jerusalem, coming down from God out of heaven, prepared as a bride adorned for her husband.</VERS>\r\n      <VERS vnumber=\"3\">And 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.</VERS>\r\n      <VERS vnumber=\"4\">And 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.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">He that overcometh shall inherit all things; and I will be his God, and he shall be my son.</VERS>\r\n      <VERS vnumber=\"8\">But 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.</VERS>\r\n      <VERS vnumber=\"9\">And 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.</VERS>\r\n      <VERS vnumber=\"10\">And 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,</VERS>\r\n      <VERS vnumber=\"11\">Having the glory of God: and her light was like unto a stone most precious, even like a jasper stone, clear as crystal;</VERS>\r\n      <VERS vnumber=\"12\">And 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:</VERS>\r\n      <VERS vnumber=\"13\">On the east three gates; on the north three gates; on the south three gates; and on the west three gates.</VERS>\r\n      <VERS vnumber=\"14\">And the wall of the city had twelve foundations, and in them the names of the twelve apostles of the Lamb.</VERS>\r\n      <VERS vnumber=\"15\">And he that talked with me had a golden reed to measure the city, and the gates thereof, and the wall thereof.</VERS>\r\n      <VERS vnumber=\"16\">And 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.</VERS>\r\n      <VERS vnumber=\"17\">And he measured the wall thereof, an hundred and forty and four cubits, according to the measure of a man, that is, of the angel.</VERS>\r\n      <VERS vnumber=\"18\">And the building of the wall of it was of jasper: and the city was pure gold, like unto clear glass.</VERS>\r\n      <VERS vnumber=\"19\">And 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;</VERS>\r\n      <VERS vnumber=\"20\">The fifth, sardonyx; the sixth, sardius; the seventh, chrysolite; the eighth, beryl; the ninth, a topaz; the tenth, a chrysoprasus; the eleventh, a jacinth; the twelfth, an amethyst.</VERS>\r\n      <VERS vnumber=\"21\">And 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.</VERS>\r\n      <VERS vnumber=\"22\">And I saw no temple therein: for the Lord God Almighty and the Lamb are the temple of it.</VERS>\r\n      <VERS vnumber=\"23\">And 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.</VERS>\r\n      <VERS vnumber=\"24\">And 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.</VERS>\r\n      <VERS vnumber=\"25\">And the gates of it shall not be shut at all by day: for there shall be no night there.</VERS>\r\n      <VERS vnumber=\"26\">And they shall bring the glory and honour of the nations into it.</VERS>\r\n      <VERS vnumber=\"27\">And 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.</VERS>\r\n    </CHAPTER>\r\n    <CHAPTER cnumber=\"22\">\r\n      <VERS vnumber=\"1\">And he shewed me a pure river of water of life, clear as crystal, proceeding out of the throne of God and of the Lamb.</VERS>\r\n      <VERS vnumber=\"2\">In 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.</VERS>\r\n      <VERS vnumber=\"3\">And 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:</VERS>\r\n      <VERS vnumber=\"4\">And they shall see his face; and his name shall be in their foreheads.</VERS>\r\n      <VERS vnumber=\"5\">And 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.</VERS>\r\n      <VERS vnumber=\"6\">And 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.</VERS>\r\n      <VERS vnumber=\"7\">Behold, I come quickly: blessed is he that keepeth the sayings of the prophecy of this book.</VERS>\r\n      <VERS vnumber=\"8\">And 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.</VERS>\r\n      <VERS vnumber=\"9\">Then 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.</VERS>\r\n      <VERS vnumber=\"10\">And he saith unto me, Seal not the sayings of the prophecy of this book: for the time is at hand.</VERS>\r\n      <VERS vnumber=\"11\">He 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.</VERS>\r\n      <VERS vnumber=\"12\">And, behold, I come quickly; and my reward is with me, to give every man according as his work shall be.</VERS>\r\n      <VERS vnumber=\"13\">I am Alpha and Omega, the beginning and the end, the first and the last.</VERS>\r\n      <VERS vnumber=\"14\">Blessed 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.</VERS>\r\n      <VERS vnumber=\"15\">For without are dogs, and sorcerers, and whoremongers, and murderers, and idolaters, and whosoever loveth and maketh a lie.</VERS>\r\n      <VERS vnumber=\"16\">I 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.</VERS>\r\n      <VERS vnumber=\"17\">And 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.</VERS>\r\n      <VERS vnumber=\"18\">For 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:</VERS>\r\n      <VERS vnumber=\"19\">And 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.</VERS>\r\n      <VERS vnumber=\"20\">He which testifieth these things saith, Surely I come quickly. Amen. Even so, come, Lord Jesus.</VERS>\r\n      <VERS vnumber=\"21\">The grace of our Lord Jesus Christ be with you all. Amen.</VERS>\r\n    </CHAPTER>\r\n  </BIBLEBOOK>\r\n</XMLBIBLE>"
  },
  {
    "path": "Quelea/bibles/net.xml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<XMLBIBLE xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" biblename=\"New English Translation\">\n\t<BIBLEBOOK bnumber=\"1\" bname=\"Genesis\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> In the beginning God created the heavens and the earth.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Now the earth was without shape and empty, and darkness was over the surface of the watery deep, but the Spirit of God was moving over the surface of the water.</VERS>\n\t\t\t<VERS vnumber=\"3\"> God said, \"Let there be light.\" And there was light! </VERS>\n\t\t\t<VERS vnumber=\"4\"> God saw that the light was good, so God separated the light from the darkness. </VERS>\n\t\t\t<VERS vnumber=\"5\"> God called the light \"day\" and the darkness \"night.\" There was evening, and there was morning, marking the first day.</VERS>\n\t\t\t<VERS vnumber=\"6\"> God said, \"Let there be an expanse in the midst of the waters and let it separate water from water. </VERS>\n\t\t\t<VERS vnumber=\"7\"> So God made the expanse and separated the water under the expanse from the water above it. It was so.</VERS>\n\t\t\t<VERS vnumber=\"8\"> God called the expanse \"sky.\" There was evening, and there was morning, a second day.</VERS>\n\t\t\t<VERS vnumber=\"9\"> God said, \"Let the water under the sky be gathered to one place and let dry ground appear.\" It was so. </VERS>\n\t\t\t<VERS vnumber=\"10\"> God called the dry ground \"land\" and the gathered waters he called \"seas.\" God saw that it was good.</VERS>\n\t\t\t<VERS vnumber=\"11\"> God said, \"Let the land produce vegetation: plants yielding seeds according to their kinds, and trees bearing fruit with seed in it according to their kinds.\" It was so. </VERS>\n\t\t\t<VERS vnumber=\"12\"> The land produced vegetation, plants yielding seeds according to their kinds, and trees bearing fruit with seed in it according to their kinds. God saw that it was good.</VERS>\n\t\t\t<VERS vnumber=\"13\"> There was evening, and there was morning, a third day.</VERS>\n\t\t\t<VERS vnumber=\"14\"> God said, \"Let there be lights in the expanse of the sky to separate the day from the night, and let them be signs to indicate seasons and days and years, </VERS>\n\t\t\t<VERS vnumber=\"15\"> and let them serve as lights in the expanse of the sky to give light on the earth.\" It was so.</VERS>\n\t\t\t<VERS vnumber=\"16\"> God made two great lights, the greater light to rule over the day and the lesser light to rule over the night. He made the stars also.</VERS>\n\t\t\t<VERS vnumber=\"17\"> God placed the lights in the expanse of the sky to shine on the earth, </VERS>\n\t\t\t<VERS vnumber=\"18\"> to preside over the day and the night, and to separate the light from the darkness. God saw that it was good. </VERS>\n\t\t\t<VERS vnumber=\"19\"> There was evening, and there was morning, a fourth day.</VERS>\n\t\t\t<VERS vnumber=\"20\"> God said, \"Let the water swarm with swarms of living creatures and let birds fly above the earth across the expanse of the sky.\" </VERS>\n\t\t\t<VERS vnumber=\"21\"> God created the great sea creatures and every living and moving thing with which the water swarmed, according to their kinds, and every winged bird according to its kind. God saw that it was good. </VERS>\n\t\t\t<VERS vnumber=\"22\"> God blessed them and said, \"Be fruitful and multiply and fill the water in the seas, and let the birds multiply on the earth.\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> There was evening, and there was morning, a fifth day.</VERS>\n\t\t\t<VERS vnumber=\"24\"> God said, \"Let the land produce living creatures according to their kinds: cattle, creeping things, and wild animals, each according to its kind.\" It was so. </VERS>\n\t\t\t<VERS vnumber=\"25\"> God made the wild animals according to their kinds, the cattle according to their kinds, and all the creatures that creep along the ground according to their kinds. God saw that it was good.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Then God said, \"Let us make humankind in our image, after our likeness, so they may rule over the fish of the sea and the birds of the air, over the cattle, and over all the earth, and over all the creatures that move on the earth.\"</VERS>\n\t\t\t<VERS vnumber=\"27\"> God created humankind in his own image, in the image of God he created them, male and female he created them.</VERS>\n\t\t\t<VERS vnumber=\"28\"> God blessed them and said to them, \"Be fruitful and multiply! Fill the earth and subdue it! Rule over the fish of the sea and the birds of the air and every creature that moves on the ground.\"</VERS>\n\t\t\t<VERS vnumber=\"29\"> Then God said, \"I now give you every seed-bearing plant on the face of the entire earth and every tree that has fruit with seed in it. They will be yours for food.</VERS>\n\t\t\t<VERS vnumber=\"30\"> And to all the animals of the earth, and to every bird of the air, and to all the creatures that move on the ground, everything that has the breath of life in it, I give every green plant for food.\" It was so.</VERS>\n\t\t\t<VERS vnumber=\"31\"> God saw all that he had made, and it was very good! There was evening, and there was morning, the sixth day.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> The heavens and the earth were completed with everything that was in them.</VERS>\n\t\t\t<VERS vnumber=\"2\"> By the seventh day God finished the work that he had been doing, and he ceased on the seventh day all the work that he had been doing. </VERS>\n\t\t\t<VERS vnumber=\"3\"> God blessed the seventh day and made it holy because on it he ceased all the work that he had been doing in creation.</VERS>\n\t\t\t<VERS vnumber=\"4\"> This is the account of the heavens and the earth when they were created, when the LORD God made the earth and heavens.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Now no shrub of the field had yet grown on the earth, and no plant of the field had yet sprouted, for the LORD God had not caused it to rain on the earth, and there was no man to cultivate the ground.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Springs would well up from the earth and water the whole surface of the ground.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The LORD God formed the man from the soil of the ground and breathed into his nostrils the breath of life, and the man became a living being.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The LORD God planted an orchard in the east, in Eden; and there he placed the man he had formed.</VERS>\n\t\t\t<VERS vnumber=\"9\"> The LORD God made all kinds of trees grow from the soil, every tree that was pleasing to look at and good for food. (Now the tree of life and the tree of the knowledge of good and evil were in the middle of the orchard.)</VERS>\n\t\t\t<VERS vnumber=\"10\"> Now a river flows from Eden to water the orchard, and from there it divides into four headstreams.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The name of the first is Pishon; it runs through the entire land of Havilah, where there is gold.</VERS>\n\t\t\t<VERS vnumber=\"12\"> (The gold of that land is pure; pearls and lapis lazuli are also there). </VERS>\n\t\t\t<VERS vnumber=\"13\"> The name of the second river is Gihon; it runs through the entire land of Cush.</VERS>\n\t\t\t<VERS vnumber=\"14\"> The name of the third river is Tigris; it runs along the east side of Assyria. The fourth river is the Euphrates.</VERS>\n\t\t\t<VERS vnumber=\"15\"> The LORD God took the man and placed him in the orchard in Eden to care for it and to maintain it.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Then the LORD God commanded the man, \"You may freely eat fruit from every tree of the orchard, </VERS>\n\t\t\t<VERS vnumber=\"17\"> but you must not eat from the tree of the knowledge of good and evil, for when you eat from it you will surely die.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> The LORD God said, \"It is not good for the man to be alone. I will make a companion for him who corresponds to him.\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> The LORD God formed out of the ground every living animal of the field and every bird of the air. He brought them to the man to see what he would name them, and whatever the man called each living creature, that was its name. </VERS>\n\t\t\t<VERS vnumber=\"20\"> So the man named all the animals, the birds of the air, and the living creatures of the field, but for Adam no companion who corresponded to him was found.</VERS>\n\t\t\t<VERS vnumber=\"21\"> So the LORD God caused the man to fall into a deep sleep, and while he was asleep, he took part of the man's side and closed up the place with flesh.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Then the LORD God made a woman from the part he had taken out of the man, and he brought her to the man. </VERS>\n\t\t\t<VERS vnumber=\"23\"> Then the man said, \"This one at last is bone of my bones and flesh of my flesh; this one will be called 'woman,' for she was taken out of man.\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> That is why a man leaves his father and mother and unites with his wife, and they become a new family.</VERS>\n\t\t\t<VERS vnumber=\"25\"> The man and his wife were both naked, but they were not ashamed.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> Now the serpent was more shrewd than any of the wild animals that the LORD God had made. He said to the woman, \"Is it really true that God said, 'You must not eat from any tree of the orchard'?\"</VERS>\n\t\t\t<VERS vnumber=\"2\"> The woman said to the serpent, \"We may eat of the fruit from the trees of the orchard; </VERS>\n\t\t\t<VERS vnumber=\"3\"> but concerning the fruit of the tree that is in the middle of the orchard God said, 'You must not eat from it, and you must not touch it, or else you will die.'\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> The serpent said to the woman, \"Surely you will not die,</VERS>\n\t\t\t<VERS vnumber=\"5\"> for God knows that when you eat from it your eyes will open and you will be like divine beings who know good and evil.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> When the woman saw that the tree produced fruit that was good for food, was attractive to the eye, and was desirable for making one wise, she took some of its fruit and ate it. She also gave some of it to her husband who was with her, and he ate it.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Then the eyes of both of them opened, and they knew they were naked; so they sewed fig leaves together and made coverings for themselves.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Then the man and his wife heard the sound of the LORD God moving about in the orchard at the breezy time of the day, and they hid from the LORD God among the trees of the orchard. </VERS>\n\t\t\t<VERS vnumber=\"9\"> But the LORD God called to the man and said to him, \"Where are you?\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> The man replied, \"I heard you moving about in the orchard, and I was afraid because I was naked, so I hid.\" </VERS>\n\t\t\t<VERS vnumber=\"11\"> And the LORD God said, \"Who told you that you were naked? Did you eat from the tree that I commanded you not to eat from?\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> The man said, \"The woman whom you gave me, she gave me some fruit from the tree and I ate it.\" </VERS>\n\t\t\t<VERS vnumber=\"13\"> So the LORD God said to the woman, \"What is this you have done?\" And the woman replied, \"The serpent tricked me, and I ate.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> The LORD God said to the serpent, \"Because you have done this, cursed are you above all the wild beasts and all the living creatures of the field! On your belly you will crawl and dust you will eat all the days of your life.</VERS>\n\t\t\t<VERS vnumber=\"15\"> And I will put hostility between you and the woman and between your offspring and her offspring; her offspring will attack your head, and you will attack her offspring's heel.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> To the woman he said, \"I will greatly increase your labor pains; with pain you will give birth to children. You will want to control your husband, but he will dominate you.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> But to Adam he said, \"Because you obeyed your wife and ate from the tree about which I commanded you, 'You must not eat from it,' cursed is the ground thanks to you; in painful toil you will eat of it all the days of your life.</VERS>\n\t\t\t<VERS vnumber=\"18\"> It will produce thorns and thistles for you, but you will eat the grain of the field.</VERS>\n\t\t\t<VERS vnumber=\"19\"> By the sweat of your brow you will eat food until you return to the ground, for out of it you were taken; for you are dust, and to dust you will return.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> The man named his wife Eve, because she was the mother of all the living.</VERS>\n\t\t\t<VERS vnumber=\"21\"> The LORD God made garments from skin for Adam and his wife, and clothed them. </VERS>\n\t\t\t<VERS vnumber=\"22\"> And the LORD God said, \"Now that the man has become like one of us, knowing good and evil, he must not be allowed to stretch out his hand and take also from the tree of life and eat, and live forever.\" </VERS>\n\t\t\t<VERS vnumber=\"23\"> So the LORD God expelled him from the orchard in Eden to cultivate the ground from which he had been taken. </VERS>\n\t\t\t<VERS vnumber=\"24\"> When he drove the man out, he placed on the eastern side of the orchard in Eden angelic sentries who used the flame of a whirling sword to guard the way to the tree of life.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\"> Now the man had marital relations with his wife Eve, and she became pregnant and gave birth to Cain. Then she said, \"I have created a man just as the LORD did!\"</VERS>\n\t\t\t<VERS vnumber=\"2\"> Then she gave birth to his brother Abel. Abel took care of the flocks, while Cain cultivated the ground.</VERS>\n\t\t\t<VERS vnumber=\"3\"> At the designated time Cain brought some of the fruit of the ground for an offering to the LORD. </VERS>\n\t\t\t<VERS vnumber=\"4\"> But Abel brought some of the firstborn of his flock, even the fattest of them. And the LORD was pleased with Abel and his offering,</VERS>\n\t\t\t<VERS vnumber=\"5\"> but with Cain and his offering he was not pleased. So Cain became very angry, and his expression was downcast.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Then the LORD said to Cain, \"Why are you angry, and why is your expression downcast?</VERS>\n\t\t\t<VERS vnumber=\"7\"> Is it not true that if you do what is right, you will be fine? But if you do not do what is right, sin is crouching at the door. It desires to dominate you, but you must subdue it.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> Cain said to his brother Abel, \"Let's go out to the field.\" While they were in the field, Cain attacked his brother Abel and killed him.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Then the LORD said to Cain, \"Where is your brother Abel?\" And he replied, \"I don't know! Am I my brother's guardian?\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> But the LORD said, \"What have you done? The voice of your brother's blood is crying out to me from the ground! </VERS>\n\t\t\t<VERS vnumber=\"11\"> So now, you are banished from the ground, which has opened its mouth to receive your brother's blood from your hand.</VERS>\n\t\t\t<VERS vnumber=\"12\"> When you try to cultivate the ground it will no longer yield its best for you. You will be a homeless wanderer on the earth.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> Then Cain said to the LORD, \"My punishment is too great to endure!</VERS>\n\t\t\t<VERS vnumber=\"14\"> Look! You are driving me off the land today, and I must hide from your presence. I will be a homeless wanderer on the earth; whoever finds me will kill me.\" </VERS>\n\t\t\t<VERS vnumber=\"15\"> But the LORD said to him, \"All right then, if anyone kills Cain, Cain will be avenged seven times as much.\" Then the LORD put a special mark on Cain so that no one who found him would strike him down.</VERS>\n\t\t\t<VERS vnumber=\"16\"> So Cain went out from the presence of the LORD and lived in the land of Nod, east of Eden.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Cain had marital relations with his wife, and she became pregnant and gave birth to Enoch. Cain was building a city, and he named the city after his son Enoch. </VERS>\n\t\t\t<VERS vnumber=\"18\"> To Enoch was born Irad, and Irad was the father of Mehujael. Mehujael was the father of Methushael, and Methushael was the father of Lamech.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Lamech took two wives for himself; the name of the first was Adah, and the name of the second was Zillah.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Adah gave birth to Jabal; he was the first of those who live in tents and keep livestock. </VERS>\n\t\t\t<VERS vnumber=\"21\"> The name of his brother was Jubal; he was the first of all who play the harp and the flute.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Now Zillah also gave birth to Tubal-Cain, who heated metal and shaped all kinds of tools made of bronze and iron. The sister of Tubal-Cain was Naamah.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Lamech said to his wives, \"Adah and Zillah! Listen to me! You wives of Lamech, hear my words! I have killed a man for wounding me, a young man for hurting me.</VERS>\n\t\t\t<VERS vnumber=\"24\"> If Cain is to be avenged seven times as much, then Lamech seventy-seven times!\"</VERS>\n\t\t\t<VERS vnumber=\"25\"> And Adam had marital relations with his wife again, and she gave birth to a son. She named him Seth, saying, \"God has given me another child in place of Abel because Cain killed him.\" </VERS>\n\t\t\t<VERS vnumber=\"26\"> And a son was also born to Seth, whom he named Enosh. At that time people began to worship the LORD.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"5\">\n\t\t\t<VERS vnumber=\"1\"> This is the record of the family line of Adam. When God created humankind, he made them in the likeness of God. </VERS>\n\t\t\t<VERS vnumber=\"2\"> He created them male and female; when they were created, he blessed them and named them \"humankind.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> When Adam had lived 130 years he fathered a son in his own likeness, according to his image, and he named him Seth. </VERS>\n\t\t\t<VERS vnumber=\"4\"> The length of time Adam lived after he became the father of Seth was 800 years; during this time he had other sons and daughters. </VERS>\n\t\t\t<VERS vnumber=\"5\"> The entire lifetime of Adam was 930 years, and then he died.</VERS>\n\t\t\t<VERS vnumber=\"6\"> When Seth had lived 105 years, he became the father of Enosh.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Seth lived 807 years after he became the father of Enosh, and he had other sons and daughters. </VERS>\n\t\t\t<VERS vnumber=\"8\"> The entire lifetime of Seth was 912 years, and then he died.</VERS>\n\t\t\t<VERS vnumber=\"9\"> When Enosh had lived 90 years, he became the father of Kenan.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Enosh lived 815 years after he became the father of Kenan, and he had other sons and daughters.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The entire lifetime of Enosh was 905 years, and then he died.</VERS>\n\t\t\t<VERS vnumber=\"12\"> When Kenan had lived 70 years, he became the father of Mahalalel.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Kenan lived 840 years after he became the father of Mahalalel, and he had other sons and daughters.</VERS>\n\t\t\t<VERS vnumber=\"14\"> The entire lifetime of Kenan was 910 years, and then he died.</VERS>\n\t\t\t<VERS vnumber=\"15\"> When Mahalalel had lived 65 years, he became the father of Jared.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Mahalalel lived 830 years after he became the father of Jared, and he had other sons and daughters.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The entire lifetime of Mahalalel was 895 years, and then he died.</VERS>\n\t\t\t<VERS vnumber=\"18\"> When Jared had lived 162 years, he became the father of Enoch.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Jared lived 800 years after he became the father of Enoch, and he had other sons and daughters.</VERS>\n\t\t\t<VERS vnumber=\"20\"> The entire lifetime of Jared was 962 years, and then he died.</VERS>\n\t\t\t<VERS vnumber=\"21\"> When Enoch had lived 65 years, he became the father of Methuselah.</VERS>\n\t\t\t<VERS vnumber=\"22\"> After he became the father of Methuselah, Enoch walked with God for 300 years, and he had other sons and daughters. </VERS>\n\t\t\t<VERS vnumber=\"23\"> The entire lifetime of Enoch was 365 years.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Enoch walked with God, and then he disappeared because God took him away.</VERS>\n\t\t\t<VERS vnumber=\"25\"> When Methuselah had lived 187 years, he became the father of Lamech.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Methuselah lived 782 years after he became the father of Lamech, and he had other sons and daughters. </VERS>\n\t\t\t<VERS vnumber=\"27\"> The entire lifetime of Methuselah was 969 years, and then he died.</VERS>\n\t\t\t<VERS vnumber=\"28\"> When Lamech had lived 182 years, he had a son.</VERS>\n\t\t\t<VERS vnumber=\"29\"> He named him Noah, saying, \"This one will bring us comfort from our labor and from the painful toil of our hands because of the ground that the LORD has cursed.\" </VERS>\n\t\t\t<VERS vnumber=\"30\"> Lamech lived 595 years after he became the father of Noah, and he had other sons and daughters. </VERS>\n\t\t\t<VERS vnumber=\"31\"> The entire lifetime of Lamech was 777 years, and then he died.</VERS>\n\t\t\t<VERS vnumber=\"32\"> After Noah was 500 years old, he became the father of Shem, Ham, and Japheth.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"6\">\n\t\t\t<VERS vnumber=\"1\"> When humankind began to multiply on the face of the earth, and daughters were born to them,</VERS>\n\t\t\t<VERS vnumber=\"2\"> the sons of God saw that the daughters of humankind were beautiful. Thus they took wives for themselves from any they chose. </VERS>\n\t\t\t<VERS vnumber=\"3\"> So the LORD said, \"My spirit will not remain in humankind indefinitely, since they are mortal. They will remain for 120 more years.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> The Nephilim were on the earth in those days (and also after this) when the sons of God were having sexual relations with the daughters of humankind, who gave birth to their children. They were the mighty heroes of old, the famous men.</VERS>\n\t\t\t<VERS vnumber=\"5\"> But the LORD saw that the wickedness of humankind had become great on the earth. Every inclination of the thoughts of their minds was only evil all the time.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The LORD regretted that he had made humankind on the earth, and he was highly offended.</VERS>\n\t\t\t<VERS vnumber=\"7\"> So the LORD said, \"I will wipe humankind, whom I have created, from the face of the earth, everything from humankind to animals, including creatures that move on the ground and birds of the air, for I regret that I have made them.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> But Noah found favor in the sight of the LORD.</VERS>\n\t\t\t<VERS vnumber=\"9\"> This is the account of Noah. Noah was a godly man; he was blameless among his contemporaries. He walked with God.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Noah had three sons: Shem, Ham, and Japheth.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The earth was ruined in the sight of God; the earth was filled with violence.</VERS>\n\t\t\t<VERS vnumber=\"12\"> God saw the earth, and indeed it was ruined, for all living creatures on the earth were sinful.</VERS>\n\t\t\t<VERS vnumber=\"13\"> So God said to Noah, \"I have decided that all living creatures must die, for the earth is filled with violence because of them. Now I am about to destroy them and the earth. </VERS>\n\t\t\t<VERS vnumber=\"14\"> Make for yourself an ark of cypress wood. Make rooms in the ark, and cover it with pitch inside and out. </VERS>\n\t\t\t<VERS vnumber=\"15\"> This is how you should make it: The ark is to be 450 feet long, 75 feet wide, and 45 feet high.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Make a roof for the ark and finish it, leaving 18 inches from the top. Put a door in the side of the ark, and make lower, middle, and upper decks. </VERS>\n\t\t\t<VERS vnumber=\"17\"> I am about to bring floodwaters on the earth to destroy from under the sky all the living creatures that have the breath of life in them. Everything that is on the earth will die, </VERS>\n\t\t\t<VERS vnumber=\"18\"> but I will confirm my covenant with you. You will enter the ark, you, your sons, your wife, and your sons' wives with you.</VERS>\n\t\t\t<VERS vnumber=\"19\"> You must bring into the ark two of every kind of living creature from all flesh, male and female, to keep them alive with you. </VERS>\n\t\t\t<VERS vnumber=\"20\"> Of the birds after their kinds, and of the cattle after their kinds, and of every creeping thing of the ground after its kind, two of every kind will come to you so you can keep them alive.</VERS>\n\t\t\t<VERS vnumber=\"21\"> And you must take for yourself every kind of food that is eaten, and gather it together. It will be food for you and for them.</VERS>\n\t\t\t<VERS vnumber=\"22\"> And Noah did all that God commanded him, he did indeed.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"7\">\n\t\t\t<VERS vnumber=\"1\"> The LORD said to Noah, \"Come into the ark, you and all your household, for I consider you godly among this generation.</VERS>\n\t\t\t<VERS vnumber=\"2\"> You must take with you seven of every kind of clean animal, the male and its mate, two of every kind of unclean animal, the male and its mate, </VERS>\n\t\t\t<VERS vnumber=\"3\"> and also seven of every kind of bird in the sky, male and female, to preserve their offspring on the face of the earth. </VERS>\n\t\t\t<VERS vnumber=\"4\"> For in seven days I will cause it to rain on the earth for forty days and forty nights, and I will wipe from the face of the ground every living thing that I have made.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> And Noah did all that the LORD commanded him.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Noah was 600 years old when the floodwaters engulfed the earth. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Noah entered the ark along with his sons, his wife, and his sons' wives because of the floodwaters. </VERS>\n\t\t\t<VERS vnumber=\"8\"> Pairs of clean animals, of unclean animals, of birds, and of everything that creeps along the ground, </VERS>\n\t\t\t<VERS vnumber=\"9\"> male and female, came into the ark to Noah, just as God had commanded him.</VERS>\n\t\t\t<VERS vnumber=\"10\"> And after seven days the floodwaters engulfed the earth.</VERS>\n\t\t\t<VERS vnumber=\"11\"> In the six hundredth year of Noah's life, in the second month, on the seventeenth day of the month, on that day all the fountains of the great deep burst open and the floodgates of the heavens were opened.</VERS>\n\t\t\t<VERS vnumber=\"12\"> And the rain fell on the earth forty days and forty nights.</VERS>\n\t\t\t<VERS vnumber=\"13\"> On that very day Noah entered the ark, accompanied by his sons Shem, Ham, and Japheth, along with his wife and his sons' three wives.</VERS>\n\t\t\t<VERS vnumber=\"14\"> They entered, along with every living creature after its kind, every animal after its kind, every creeping thing that creeps on the earth after its kind, and every bird after its kind, everything with wings.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Pairs of all creatures that have the breath of life came into the ark to Noah. </VERS>\n\t\t\t<VERS vnumber=\"16\"> Those that entered were male and female, just as God commanded him. Then the LORD shut him in.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The flood engulfed the earth for forty days. As the waters increased, they lifted the ark and raised it above the earth.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The waters completely overwhelmed the earth, and the ark floated on the surface of the waters. </VERS>\n\t\t\t<VERS vnumber=\"19\"> The waters completely inundated the earth so that even all the high mountains under the entire sky were covered. </VERS>\n\t\t\t<VERS vnumber=\"20\"> The waters rose more than twenty feet above the mountains.</VERS>\n\t\t\t<VERS vnumber=\"21\"> And all living things that moved on the earth died, including the birds, domestic animals, wild animals, all the creatures that swarm over the earth, and all humankind. </VERS>\n\t\t\t<VERS vnumber=\"22\"> Everything on dry land that had the breath of life in its nostrils died. </VERS>\n\t\t\t<VERS vnumber=\"23\"> So the LORD destroyed every living thing that was on the surface of the ground, including people, animals, creatures that creep along the ground, and birds of the sky. They were wiped off the earth. Only Noah and those who were with him in the ark survived.</VERS>\n\t\t\t<VERS vnumber=\"24\"> The waters prevailed over the earth for 150 days.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"8\">\n\t\t\t<VERS vnumber=\"1\"> But God remembered Noah and all the wild animals and domestic animals that were with him in the ark. God caused a wind to blow over the earth and the waters receded. </VERS>\n\t\t\t<VERS vnumber=\"2\"> The fountains of the deep and the floodgates of heaven were closed, and the rain stopped falling from the sky. </VERS>\n\t\t\t<VERS vnumber=\"3\"> The waters kept receding steadily from the earth, so that they had gone down by the end of the 150 days. </VERS>\n\t\t\t<VERS vnumber=\"4\"> On the seventeenth day of the seventh month, the ark came to rest on one of the mountains of Ararat.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The waters kept on receding until the tenth month. On the first day of the tenth month, the tops of the mountains became visible.</VERS>\n\t\t\t<VERS vnumber=\"6\"> At the end of forty days, Noah opened the window he had made in the ark</VERS>\n\t\t\t<VERS vnumber=\"7\"> and sent out a raven; it kept flying back and forth until the waters had dried up on the earth.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Then Noah sent out a dove to see if the waters had receded from the surface of the ground. </VERS>\n\t\t\t<VERS vnumber=\"9\"> The dove could not find a resting place for its feet because water still covered the surface of the entire earth, and so it returned to Noah in the ark. He stretched out his hand, took the dove, and brought it back into the ark.</VERS>\n\t\t\t<VERS vnumber=\"10\"> He waited seven more days and then sent out the dove again from the ark.</VERS>\n\t\t\t<VERS vnumber=\"11\"> When the dove returned to him in the evening, there was a freshly plucked olive leaf in its beak! Noah knew that the waters had receded from the earth. </VERS>\n\t\t\t<VERS vnumber=\"12\"> He waited another seven days and sent the dove out again, but it did not return to him this time.</VERS>\n\t\t\t<VERS vnumber=\"13\"> In Noah's six hundred and first year, in the first day of the first month, the waters had dried up from the earth, and Noah removed the covering from the ark and saw that the surface of the ground was dry. </VERS>\n\t\t\t<VERS vnumber=\"14\"> And by the twenty-seventh day of the second month the earth was dry.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Then God spoke to Noah and said,</VERS>\n\t\t\t<VERS vnumber=\"16\"> \"Come out of the ark, you, your wife, your sons, and your sons' wives with you.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Bring out with you all the living creatures that are with you. Bring out every living thing, including the birds, animals, and every creeping thing that creeps on the earth. Let them increase and be fruitful and multiply on the earth!\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> Noah went out along with his sons, his wife, and his sons' wives.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Every living creature, every creeping thing, every bird, and everything that moves on the earth went out of the ark in their groups.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Noah built an altar to the LORD. He then took some of every kind of clean animal and clean bird and offered burnt offerings on the altar.</VERS>\n\t\t\t<VERS vnumber=\"21\"> And the LORD smelled the soothing aroma and said to himself, \"I will never again curse the ground because of humankind, even though the inclination of their minds is evil from childhood on. I will never again destroy everything that lives, as I have just done.</VERS>\n\t\t\t<VERS vnumber=\"22\"> \"While the earth continues to exist, planting time and harvest, cold and heat, summer and winter, and day and night will not cease.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"9\">\n\t\t\t<VERS vnumber=\"1\"> Then God blessed Noah and his sons and said to them, \"Be fruitful and multiply and fill the earth.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Every living creature of the earth and every bird of the sky will be terrified of you. Everything that creeps on the ground and all the fish of the sea are under your authority.</VERS>\n\t\t\t<VERS vnumber=\"3\"> You may eat any moving thing that lives. As I gave you the green plants, I now give you everything.</VERS>\n\t\t\t<VERS vnumber=\"4\"> But you must not eat meat with its life (that is, its blood) in it.</VERS>\n\t\t\t<VERS vnumber=\"5\"> For your lifeblood I will surely exact punishment, from every living creature I will exact punishment. From each person I will exact punishment for the life of the individual since the man was his relative.</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"Whoever sheds human blood, by other humans must his blood be shed; for in God's image God has made humankind.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> But as for you, be fruitful and multiply; increase abundantly on the earth and multiply on it.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> God said to Noah and his sons,</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"Look! I now confirm my covenant with you and your descendants after you</VERS>\n\t\t\t<VERS vnumber=\"10\"> and with every living creature that is with you, including the birds, the domestic animals, and every living creature of the earth with you, all those that came out of the ark with you, every living creature of the earth.</VERS>\n\t\t\t<VERS vnumber=\"11\"> I confirm my covenant with you: Never again will all living things be wiped out by the waters of a flood; never again will a flood destroy the earth.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> And God said, \"This is the guarantee of the covenant I am making with you and every living creature with you, a covenant for all subsequent generations: </VERS>\n\t\t\t<VERS vnumber=\"13\"> I will place my rainbow in the clouds, and it will become a guarantee of the covenant between me and the earth. </VERS>\n\t\t\t<VERS vnumber=\"14\"> Whenever I bring clouds over the earth and the rainbow appears in the clouds, </VERS>\n\t\t\t<VERS vnumber=\"15\"> then I will remember my covenant with you and with all living creatures of all kinds. Never again will the waters become a flood and destroy all living things.</VERS>\n\t\t\t<VERS vnumber=\"16\"> When the rainbow is in the clouds, I will notice it and remember the perpetual covenant between God and all living creatures of all kinds that are on the earth.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> So God said to Noah, \"This is the guarantee of the covenant that I am confirming between me and all living things that are on the earth.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> The sons of Noah who came out of the ark were Shem, Ham, and Japheth. (Now Ham was the father of Canaan.)</VERS>\n\t\t\t<VERS vnumber=\"19\"> These were the sons of Noah, and from them the whole earth was populated.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Noah, a man of the soil, began to plant a vineyard.</VERS>\n\t\t\t<VERS vnumber=\"21\"> When he drank some of the wine, he got drunk and uncovered himself inside his tent. </VERS>\n\t\t\t<VERS vnumber=\"22\"> Ham, the father of Canaan, saw his father's nakedness and told his two brothers who were outside. </VERS>\n\t\t\t<VERS vnumber=\"23\"> Shem and Japheth took the garment and placed it on their shoulders. Then they walked in backwards and covered up their father's nakedness. Their faces were turned the other way so they did not see their father's nakedness.</VERS>\n\t\t\t<VERS vnumber=\"24\"> When Noah awoke from his drunken stupor he learned what his youngest son had done to him. </VERS>\n\t\t\t<VERS vnumber=\"25\"> So he said, \"Cursed be Canaan! The lowest of slaves he will be to his brothers.\"</VERS>\n\t\t\t<VERS vnumber=\"26\"> He also said, \"Worthy of praise is the LORD, the God of Shem! May Canaan be the slave of Shem!</VERS>\n\t\t\t<VERS vnumber=\"27\"> May God enlarge Japheth's territory and numbers! May he live in the tents of Shem and may Canaan be his slave!\"</VERS>\n\t\t\t<VERS vnumber=\"28\"> After the flood Noah lived 350 years.</VERS>\n\t\t\t<VERS vnumber=\"29\"> The entire lifetime of Noah was 950 years, and then he died.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"10\">\n\t\t\t<VERS vnumber=\"1\"> This is the account of Noah's sons Shem, Ham, and Japheth. Sons were born to them after the flood.</VERS>\n\t\t\t<VERS vnumber=\"2\"> The sons of Japheth were Gomer, Magog, Madai, Javan, Tubal, Meshech, and Tiras.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The sons of Gomer were Askenaz, Riphath, and Togarmah.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The sons of Javan were Elishah, Tarshish, the Kittim, and the Dodanim.</VERS>\n\t\t\t<VERS vnumber=\"5\"> From these the coastlands of the nations were separated into their lands, every one according to its language, according to their families, by their nations.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The sons of Ham were Cush, Mizraim, Put, and Canaan.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The sons of Cush were Seba, Havilah, Sabtah, Raamah, and Sabteca. The sons of Raamah were Sheba and Dedan.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Cush was the father of Nimrod; he began to be a valiant warrior on the earth. </VERS>\n\t\t\t<VERS vnumber=\"9\"> He was a mighty hunter before the LORD. (That is why it is said, \"Like Nimrod, a mighty hunter before the LORD.\") </VERS>\n\t\t\t<VERS vnumber=\"10\"> The primary regions of his kingdom were Babel, Erech, Akkad, and Calneh in the land of Shinar.</VERS>\n\t\t\t<VERS vnumber=\"11\"> From that land he went to Assyria, where he built Nineveh, Rehoboth-Ir, Calah,</VERS>\n\t\t\t<VERS vnumber=\"12\"> and Resen, which is between Nineveh and the great city Calah.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Mizraim was the father of the Ludites, Anamites, Lehabites, Naphtuhites,</VERS>\n\t\t\t<VERS vnumber=\"14\"> Pathrusites, Casluhites (from whom the Philistines came), and Caphtorites.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Canaan was the father of Sidon his firstborn, Heth,</VERS>\n\t\t\t<VERS vnumber=\"16\"> the Jebusites, Amorites, Girgashites,</VERS>\n\t\t\t<VERS vnumber=\"17\"> Hivites, Arkites, Sinites,</VERS>\n\t\t\t<VERS vnumber=\"18\"> Arvadites, Zemarites, and Hamathites. Eventually the families of the Canaanites were scattered</VERS>\n\t\t\t<VERS vnumber=\"19\"> and the borders of Canaan extended from Sidon all the way to Gerar as far as Gaza, and all the way to Sodom, Gomorrah, Admah, and Zeboiim, as far as Lasha.</VERS>\n\t\t\t<VERS vnumber=\"20\"> These are the sons of Ham, according to their families, according to their languages, by their lands, and by their nations.</VERS>\n\t\t\t<VERS vnumber=\"21\"> And sons were also born to Shem (the older brother of Japheth), the father of all the sons of Eber.</VERS>\n\t\t\t<VERS vnumber=\"22\"> The sons of Shem were Elam, Asshur, Arphaxad, Lud, and Aram.</VERS>\n\t\t\t<VERS vnumber=\"23\"> The sons of Aram were Uz, Hul, Gether, and Mash.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Arphaxad was the father of Shelah, and Shelah was the father of Eber.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Two sons were born to Eber: One was named Peleg because in his days the earth was divided, and his brother's name was Joktan. </VERS>\n\t\t\t<VERS vnumber=\"26\"> Joktan was the father of Almodad, Sheleph, Hazarmaveth, Jerah,</VERS>\n\t\t\t<VERS vnumber=\"27\"> Hadoram, Uzal, Diklah,</VERS>\n\t\t\t<VERS vnumber=\"28\"> Obal, Abimael, Sheba,</VERS>\n\t\t\t<VERS vnumber=\"29\"> Ophir, Havilah, and Jobab. All these were sons of Joktan. </VERS>\n\t\t\t<VERS vnumber=\"30\"> Their dwelling place was from Mesha all the way to Sephar in the eastern hills. </VERS>\n\t\t\t<VERS vnumber=\"31\"> These are the sons of Shem according to their families, according to their languages, by their lands, and according to their nations.</VERS>\n\t\t\t<VERS vnumber=\"32\"> These are the families of the sons of Noah, according to their genealogies, by their nations, and from these the nations spread over the earth after the flood.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"11\">\n\t\t\t<VERS vnumber=\"1\"> The whole earth had a common language and a common vocabulary.</VERS>\n\t\t\t<VERS vnumber=\"2\"> When the people moved eastward, they found a plain in Shinar and settled there. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Then they said to one another, \"Come, let's make bricks and bake them thoroughly.\" (They had brick instead of stone and tar instead of mortar.)</VERS>\n\t\t\t<VERS vnumber=\"4\"> Then they said, \"Come, let's build ourselves a city and a tower with its top in the heavens so that we may make a name for ourselves. Otherwise we will be scattered across the face of the entire earth.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> But the LORD came down to see the city and the tower that the people had started building. </VERS>\n\t\t\t<VERS vnumber=\"6\"> And the LORD said, \"If as one people all sharing a common language they have begun to do this, then nothing they plan to do will be beyond them.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Come, let's go down and confuse their language so they won't be able to understand each other.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> So the LORD scattered them from there across the face of the entire earth, and they stopped building the city. </VERS>\n\t\t\t<VERS vnumber=\"9\"> That is why its name was called Babel, because there the LORD confused the language of the entire world, and from there the LORD scattered them across the face of the entire earth.</VERS>\n\t\t\t<VERS vnumber=\"10\"> This is the account of Shem. Shem was 100 old when he became the father of Arphaxad, two years after the flood.</VERS>\n\t\t\t<VERS vnumber=\"11\"> And after becoming the father of Arphaxad, Shem lived 500 years and had other sons and daughters.</VERS>\n\t\t\t<VERS vnumber=\"12\"> When Arphaxad had lived 35 years, he became the father of Shelah.</VERS>\n\t\t\t<VERS vnumber=\"13\"> And after he became the father of Shelah, Arphaxad lived 403 years and had other sons and daughters.</VERS>\n\t\t\t<VERS vnumber=\"14\"> When Shelah had lived 30 years, he became the father of Eber.</VERS>\n\t\t\t<VERS vnumber=\"15\"> And after he became the father of Eber, Shelah lived 403 years and had other sons and daughters.</VERS>\n\t\t\t<VERS vnumber=\"16\"> When Eber had lived 34 years, he became the father of Peleg.</VERS>\n\t\t\t<VERS vnumber=\"17\"> And after he became the father of Peleg, Eber lived 430 years and had other sons and daughters.</VERS>\n\t\t\t<VERS vnumber=\"18\"> When Peleg had lived 30 years, he became the father of Reu.</VERS>\n\t\t\t<VERS vnumber=\"19\"> And after he became the father of Reu, Peleg lived 209 years and had other sons and daughters.</VERS>\n\t\t\t<VERS vnumber=\"20\"> When Reu had lived 32 years, he became the father of Serug.</VERS>\n\t\t\t<VERS vnumber=\"21\"> And after he became the father of Serug, Reu lived 207 years and had other sons and daughters.</VERS>\n\t\t\t<VERS vnumber=\"22\"> When Serug had lived 30 years, he became the father of Nahor.</VERS>\n\t\t\t<VERS vnumber=\"23\"> And after he became the father of Nahor, Serug lived 200 years and had other sons and daughters.</VERS>\n\t\t\t<VERS vnumber=\"24\"> When Nahor had lived 29 years, he became the father of Terah.</VERS>\n\t\t\t<VERS vnumber=\"25\"> And after he became the father of Terah, Nahor lived 119 years and had other sons and daughters.</VERS>\n\t\t\t<VERS vnumber=\"26\"> When Terah had lived 70 years, he became the father of Abram, Nahor, and Haran.</VERS>\n\t\t\t<VERS vnumber=\"27\"> This is the account of Terah. Terah became the father of Abram, Nahor, and Haran. And Haran became the father of Lot.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Haran died in the land of his birth, in Ur of the Chaldeans, while his father Terah was still alive.</VERS>\n\t\t\t<VERS vnumber=\"29\"> And Abram and Nahor took wives for themselves. The name of Abram's wife was Sarai, and the name of Nahor's wife was Milcah; she was the daughter of Haran, the father of both Milcah and Iscah. </VERS>\n\t\t\t<VERS vnumber=\"30\"> But Sarai was barren; she had no children.</VERS>\n\t\t\t<VERS vnumber=\"31\"> Terah took his son Abram, his grandson Lot (the son of Haran), and his daughter-in-law Sarai, his son Abram's wife, and with them he set out from Ur of the Chaldeans to go to Canaan. When they came to Haran, they settled there.</VERS>\n\t\t\t<VERS vnumber=\"32\"> The lifetime of Terah was 205 years, and he died in Haran.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"12\">\n\t\t\t<VERS vnumber=\"1\"> Now the LORD said to Abram, \"Go out from your country, your relatives, and your father's household to the land that I will show you.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Then I will make you into a great nation, and I will bless you, and I will make your name great, so that you will exemplify divine blessing.</VERS>\n\t\t\t<VERS vnumber=\"3\"> I will bless those who bless you, but the one who treats you lightly I must curse, and all the families of the earth will bless one another by your name.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> So Abram left, just as the LORD had told him to do, and Lot went with him. (Now Abram was 75 years old when he departed from Haran.) </VERS>\n\t\t\t<VERS vnumber=\"5\"> And Abram took his wife Sarai, his nephew Lot, and all the possessions they had accumulated and the people they had acquired in Haran, and they left for the land of Canaan. They entered the land of Canaan.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Abram traveled through the land as far as the oak tree of Moreh at Shechem. (At that time the Canaanites were in the land.)</VERS>\n\t\t\t<VERS vnumber=\"7\"> The LORD appeared to Abram and said, \"To your descendants I will give this land.\" So Abram built an altar there to the LORD, who had appeared to him.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Then he moved from there to the hill country east of Bethel and pitched his tent, with Bethel on the west and Ai on the east. There he built an altar to the LORD and worshiped the LORD.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Abram continually journeyed by stages down to the Negev.</VERS>\n\t\t\t<VERS vnumber=\"10\"> There was a famine in the land, so Abram went down to Egypt to stay for a while because the famine was severe.</VERS>\n\t\t\t<VERS vnumber=\"11\"> As he approached Egypt, he said to his wife Sarai, \"Look, I know that you are a beautiful woman.</VERS>\n\t\t\t<VERS vnumber=\"12\"> When the Egyptians see you they will say, 'This is his wife.' Then they will kill me but will keep you alive.</VERS>\n\t\t\t<VERS vnumber=\"13\"> So tell them you are my sister so that it may go well for me because of you and my life will be spared on account of you.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> When Abram entered Egypt, the Egyptians saw that the woman was very beautiful.</VERS>\n\t\t\t<VERS vnumber=\"15\"> When Pharaoh's officials saw her, they praised her to Pharaoh. So Abram's wife was taken into the household of Pharaoh,</VERS>\n\t\t\t<VERS vnumber=\"16\"> and he did treat Abram well on account of her. Abram received sheep and cattle, male donkeys, male servants, female servants, female donkeys, and camels.</VERS>\n\t\t\t<VERS vnumber=\"17\"> But the LORD struck Pharaoh and his household with severe diseases because of Sarai, Abram's wife. </VERS>\n\t\t\t<VERS vnumber=\"18\"> So Pharaoh summoned Abram and said, \"What is this you have done to me? Why didn't you tell me that she was your wife? </VERS>\n\t\t\t<VERS vnumber=\"19\"> Why did you say, 'She is my sister,' so that I took her to be my wife? Here is your wife! Take her and go!\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> Pharaoh gave his men orders about Abram, and so they expelled him, along with his wife and all his possessions.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"13\">\n\t\t\t<VERS vnumber=\"1\"> So Abram went up from Egypt into the Negev. He took his wife and all his possessions with him, as well as Lot.</VERS>\n\t\t\t<VERS vnumber=\"2\"> (Now Abram was very wealthy in livestock, silver, and gold.)</VERS>\n\t\t\t<VERS vnumber=\"3\"> And he journeyed from place to place from the Negev as far as Bethel. He returned to the place where he had pitched his tent at the beginning, between Bethel and Ai. </VERS>\n\t\t\t<VERS vnumber=\"4\"> This was the place where he had first built the altar, and there Abram worshiped the LORD.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Now Lot, who was traveling with Abram, also had flocks, herds, and tents. </VERS>\n\t\t\t<VERS vnumber=\"6\"> But the land could not support them while they were living side by side. Because their possessions were so great, they were not able to live alongside one another. </VERS>\n\t\t\t<VERS vnumber=\"7\"> So there were quarrels between Abram's herdsmen and Lot's herdsmen. (Now the Canaanites and the Perizzites were living in the land at that time.)</VERS>\n\t\t\t<VERS vnumber=\"8\"> Abram said to Lot, \"Let there be no quarreling between me and you, and between my herdsmen and your herdsmen, for we are close relatives.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Is not the whole land before you? Separate yourself now from me. If you go to the left, then I'll go to the right, but if you go to the right, then I'll go to the left.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> Lot looked up and saw the whole region of the Jordan. He noticed that all of it was well-watered (before the LORD obliterated Sodom and Gomorrah) like the garden of the LORD, like the land of Egypt, all the way to Zoar. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Lot chose for himself the whole region of the Jordan and traveled toward the east. So the relatives separated from each other.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Abram settled in the land of Canaan, but Lot settled among the cities of the Jordan plain and pitched his tents next to Sodom.</VERS>\n\t\t\t<VERS vnumber=\"13\"> (Now the people of Sodom were extremely wicked rebels against the LORD.)</VERS>\n\t\t\t<VERS vnumber=\"14\"> After Lot had departed, the LORD said to Abram, \"Look from the place where you stand to the north, south, east, and west. </VERS>\n\t\t\t<VERS vnumber=\"15\"> I will give all the land that you see to you and your descendants forever. </VERS>\n\t\t\t<VERS vnumber=\"16\"> And I will make your descendants like the dust of the earth, so that if anyone is able to count the dust of the earth, then your descendants also can be counted.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Get up and walk throughout the land, for I will give it to you.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> So Abram moved his tents and went to live by the oaks of Mamre in Hebron, and he built an altar to the LORD there.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"14\">\n\t\t\t<VERS vnumber=\"1\"> At that time Amraphel king of Shinar, Arioch king of Ellasar, Kedorlaomer king of Elam, and Tidal king of nations</VERS>\n\t\t\t<VERS vnumber=\"2\"> went to war against Bera king of Sodom, Birsha king of Gomorrah, Shinab king of Admah, Shemeber king of Zeboiim, and the king of Bela (that is, Zoar).</VERS>\n\t\t\t<VERS vnumber=\"3\"> These last five kings joined forces in the Valley of Siddim (that is, the Salt Sea).</VERS>\n\t\t\t<VERS vnumber=\"4\"> For twelve years they had served Kedorlaomer, but in the thirteenth year they rebelled.</VERS>\n\t\t\t<VERS vnumber=\"5\"> In the fourteenth year, Kedorlaomer and the kings who were his allies came and defeated the Rephaites in Ashteroth Karnaim, the Zuzites in Ham, the Emites in Shaveh Kiriathaim, </VERS>\n\t\t\t<VERS vnumber=\"6\"> and the Horites in their hill country of Seir, as far as El Paran, which is near the desert.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Then they attacked En Mishpat (that is, Kadesh) again, and they conquered all the territory of the Amalekites, as well as the Amorites who were living in Hazazon Tamar.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Then the king of Sodom, the king of Gomorrah, the king of Admah, the king of Zeboiim, and the king of Bela (that is, Zoar) went out and prepared for battle. In the Valley of Siddim they met</VERS>\n\t\t\t<VERS vnumber=\"9\"> Kedorlaomer king of Elam, Tidal king of nations, Amraphel king of Shinar, and Arioch king of Ellasar. Four kings fought against five. </VERS>\n\t\t\t<VERS vnumber=\"10\"> Now the Valley of Siddim was full of tar pits. When the kings of Sodom and Gomorrah fled, they fell into them, but some survivors fled to the hills.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The four victorious kings took all the possessions and food of Sodom and Gomorrah and left. </VERS>\n\t\t\t<VERS vnumber=\"12\"> They also took Abram's nephew Lot and his possessions when they left, for Lot was living in Sodom.</VERS>\n\t\t\t<VERS vnumber=\"13\"> A fugitive came and told Abram the Hebrew. Now Abram was living by the oaks of Mamre the Amorite, the brother of Eshcol and Aner. (All these were allied by treaty with Abram.)</VERS>\n\t\t\t<VERS vnumber=\"14\"> When Abram heard that his nephew had been taken captive, he mobilized his 318 trained men who had been born in his household, and he pursued the invaders as far as Dan.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Then, during the night, Abram divided his forces against them and defeated them. He chased them as far as Hobah, which is north of Damascus. </VERS>\n\t\t\t<VERS vnumber=\"16\"> He retrieved all the stolen property. He also brought back his nephew Lot and his possessions, as well as the women and the rest of the people.</VERS>\n\t\t\t<VERS vnumber=\"17\"> After Abram returned from defeating Kedorlaomer and the kings who were with him, the king of Sodom went out to meet Abram in the Valley of Shaveh (known as the King's Valley).</VERS>\n\t\t\t<VERS vnumber=\"18\"> Melchizedek king of Salem brought out bread and wine. (Now he was the priest of the Most High God.)</VERS>\n\t\t\t<VERS vnumber=\"19\"> He blessed Abram, saying, \"Blessed be Abram by the Most High God, Creator of heaven and earth.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Worthy of praise is the Most High God, who delivered your enemies into your hand.\" Abram gave Melchizedek a tenth of everything.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Then the king of Sodom said to Abram, \"Give me the people and take the possessions for yourself.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> But Abram replied to the king of Sodom, \"I raise my hand to the LORD, the Most High God, Creator of heaven and earth, and vow</VERS>\n\t\t\t<VERS vnumber=\"23\"> that I will take nothing belonging to you, not even a thread or the strap of a sandal. That way you can never say, 'It is I who made Abram rich.' </VERS>\n\t\t\t<VERS vnumber=\"24\"> I will take nothing except compensation for what the young men have eaten. As for the share of the men who went with me, Aner, Eshcol, and Mamre, let them take their share.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"15\">\n\t\t\t<VERS vnumber=\"1\"> After these things the word of the LORD came to Abram in a vision: \"Fear not, Abram! I am your shield and the one who will reward you in great abundance.\"</VERS>\n\t\t\t<VERS vnumber=\"2\"> But Abram said, \"O sovereign LORD, what will you give me since I continue to be childless, and my heir is Eliezer of Damascus?\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> Abram added, \"Since you have not given me a descendant, then look, one born in my house will be my heir!\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> But look, the word of the LORD came to him: \"This man will not be your heir, but instead a son who comes from your own body will be your heir.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> The LORD took him outside and said, \"Gaze into the sky and count the stars, if you are able to count them!\" Then he said to him, \"So will your descendants be.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> Abram believed the LORD, and the LORD considered his response of faith as proof of genuine loyalty.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The LORD said to him, \"I am the LORD who brought you out from Ur of the Chaldeans to give you this land to possess.\" </VERS>\n\t\t\t<VERS vnumber=\"8\"> But Abram said, \"O sovereign LORD, by what can I know that I am to possess it?\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> The LORD said to him, \"Take for me a heifer, a goat, and a ram, each three years old, along with a dove and a young pigeon.\" </VERS>\n\t\t\t<VERS vnumber=\"10\"> So Abram took all these for him and then cut them in two and placed each half opposite the other, but he did not cut the birds in half. </VERS>\n\t\t\t<VERS vnumber=\"11\"> When birds of prey came down on the carcasses, Abram drove them away.</VERS>\n\t\t\t<VERS vnumber=\"12\"> When the sun went down, Abram fell sound asleep, and great terror overwhelmed him.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Then the LORD said to Abram, \"Know for certain that your descendants will be strangers in a foreign country. They will be enslaved and oppressed for four hundred years. </VERS>\n\t\t\t<VERS vnumber=\"14\"> But I will execute judgment on the nation that they will serve. Afterward they will come out with many possessions. </VERS>\n\t\t\t<VERS vnumber=\"15\"> But as for you, you will go to your ancestors in peace and be buried at a good old age.</VERS>\n\t\t\t<VERS vnumber=\"16\"> In the fourth generation your descendants will return here, for the sin of the Amorites has not yet reached its limit.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> When the sun had gone down and it was dark, a smoking firepot with a flaming torch passed between the animal parts.</VERS>\n\t\t\t<VERS vnumber=\"18\"> That day the LORD made a covenant with Abram: \"To your descendants I give this land, from the river of Egypt to the great river, the Euphrates River,</VERS>\n\t\t\t<VERS vnumber=\"19\"> the land of the Kenites, Kenizzites, Kadmonites, </VERS>\n\t\t\t<VERS vnumber=\"20\"> Hittites, Perizzites, Rephaites,</VERS>\n\t\t\t<VERS vnumber=\"21\"> Amorites, Canaanites, Girgashites, and Jebusites.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"16\">\n\t\t\t<VERS vnumber=\"1\"> Now Sarai, Abram's wife, had not given birth to any children, but she had an Egyptian servant named Hagar.</VERS>\n\t\t\t<VERS vnumber=\"2\"> So Sarai said to Abram, \"Since the LORD has prevented me from having children, have sexual relations with my servant. Perhaps I can have a family by her.\" Abram did what Sarai told him.</VERS>\n\t\t\t<VERS vnumber=\"3\"> So after Abram had lived in Canaan for ten years, Sarai, Abram's wife, gave Hagar, her Egyptian servant, to her husband to be his wife.</VERS>\n\t\t\t<VERS vnumber=\"4\"> He had sexual relations with Hagar, and she became pregnant. Once Hagar realized she was pregnant, she despised Sarai.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Then Sarai said to Abram, \"You have brought this wrong on me! I allowed my servant to have sexual relations with you, but when she realized that she was pregnant, she despised me. May the LORD judge between you and me!\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> Abram said to Sarai, \"Since your servant is under your authority, do to her whatever you think best.\" Then Sarai treated Hagar harshly, so she ran away from Sarai.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The LORD's angel found Hagar near a spring of water in the desert, the spring that is along the road to Shur.</VERS>\n\t\t\t<VERS vnumber=\"8\"> He said, \"Hagar, servant of Sarai, where have you come from, and where are you going?\" She replied, \"I'm running away from my mistress, Sarai.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> Then the LORD's angel said to her, \"Return to your mistress and submit to her authority. </VERS>\n\t\t\t<VERS vnumber=\"10\"> I will greatly multiply your descendants,\" the LORD's angel added, \"so that they will be too numerous to count.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> Then the LORD's angel said to her, \"You are now pregnant and are about to give birth to a son. You are to name him Ishmael, for the LORD has heard your painful groans.</VERS>\n\t\t\t<VERS vnumber=\"12\"> He will be a wild donkey of a man. He will be hostile to everyone, and everyone will be hostile to him. He will live away from his brothers.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> So Hagar named the LORD who spoke to her, \"You are the God who sees me,\" for she said, \"Here I have seen one who sees me!\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> That is why the well was called Beer Lahai Roi. (It is located between Kadesh and Bered.)</VERS>\n\t\t\t<VERS vnumber=\"15\"> So Hagar gave birth to Abram's son, whom Abram named Ishmael.</VERS>\n\t\t\t<VERS vnumber=\"16\"> (Now Abram was 86 years old when Hagar gave birth to Ishmael.)</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"17\">\n\t\t\t<VERS vnumber=\"1\"> When Abram was 99 years old, the LORD appeared to him and said, \"I am the sovereign God. Walk before me and be blameless.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Then I will confirm my covenant between me and you, and I will give you a multitude of descendants.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> Abram bowed down with his face to the ground, and God said to him,</VERS>\n\t\t\t<VERS vnumber=\"4\"> \"As for me, this is my covenant with you: You will be the father of a multitude of nations. </VERS>\n\t\t\t<VERS vnumber=\"5\"> No longer will your name be Abram. Instead, your name will be Abraham because I will make you the father of a multitude of nations. </VERS>\n\t\t\t<VERS vnumber=\"6\"> I will make you extremely fruitful. I will make nations of you, and kings will descend from you.</VERS>\n\t\t\t<VERS vnumber=\"7\"> I will confirm my covenant as a perpetual covenant between me and you. It will extend to your descendants after you throughout their generations. I will be your God and the God of your descendants after you.</VERS>\n\t\t\t<VERS vnumber=\"8\"> I will give the whole land of Canaan, the land where you are now residing, to you and your descendants after you as a permanent possession. I will be their God.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> Then God said to Abraham, \"As for you, you must keep the covenantal requirement I am imposing on you and your descendants after you throughout their generations.</VERS>\n\t\t\t<VERS vnumber=\"10\"> This is my requirement that you and your descendants after you must keep: Every male among you must be circumcised.</VERS>\n\t\t\t<VERS vnumber=\"11\"> You must circumcise the flesh of your foreskins. This will be a reminder of the covenant between me and you. </VERS>\n\t\t\t<VERS vnumber=\"12\"> Throughout your generations every male among you who is eight days old must be circumcised, whether born in your house or bought with money from any foreigner who is not one of your descendants. </VERS>\n\t\t\t<VERS vnumber=\"13\"> They must indeed be circumcised, whether born in your house or bought with money. The sign of my covenant will be visible in your flesh as a permanent reminder. </VERS>\n\t\t\t<VERS vnumber=\"14\"> Any uncircumcised male who has not been circumcised in the flesh of his foreskin will be cut off from his people, he has failed to carry out my requirement.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> Then God said to Abraham, \"As for your wife, you must no longer call her Sarai; Sarah will be her name. </VERS>\n\t\t\t<VERS vnumber=\"16\"> I will bless her and will give you a son through her. I will bless her and she will become a mother of nations. Kings of countries will come from her!\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> Then Abraham bowed down with his face to the ground and laughed as he said to himself, \"Can a son be born to a man who is a hundred years old? Can Sarah bear a child at the age of ninety?\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> Abraham said to God, \"O that Ishmael might live before you!\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> God said, \"No, Sarah your wife is going to bear you a son, and you will name him Isaac. I will confirm my covenant with him as a perpetual covenant for his descendants after him. </VERS>\n\t\t\t<VERS vnumber=\"20\"> As for Ishmael, I have heard you. I will indeed bless him, make him fruitful, and give him a multitude of descendants. He will become the father of twelve princes; I will make him into a great nation. </VERS>\n\t\t\t<VERS vnumber=\"21\"> But I will establish my covenant with Isaac, whom Sarah will bear to you at this set time next year.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> When he finished speaking with Abraham, God went up from him.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Abraham took his son Ishmael and every male in his household (whether born in his house or bought with money) and circumcised them on that very same day, just as God had told him to do. </VERS>\n\t\t\t<VERS vnumber=\"24\"> Now Abraham was 99 years old when he was circumcised;</VERS>\n\t\t\t<VERS vnumber=\"25\"> his son Ishmael was thirteen years old when he was circumcised. </VERS>\n\t\t\t<VERS vnumber=\"26\"> Abraham and his son Ishmael were circumcised on the very same day.</VERS>\n\t\t\t<VERS vnumber=\"27\"> All the men of his household, whether born in his household or bought with money from a foreigner, were circumcised with him.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"18\">\n\t\t\t<VERS vnumber=\"1\"> The LORD appeared to Abraham by the oaks of Mamre while he was sitting at the entrance to his tent during the hottest time of the day. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Abraham looked up and saw three men standing across from him. When he saw them he ran from the entrance of the tent to meet them and bowed low to the ground.</VERS>\n\t\t\t<VERS vnumber=\"3\"> He said, \"My lord, if I have found favor in your sight, do not pass by and leave your servant.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Let a little water be brought so that you may all wash your feet and rest under the tree. </VERS>\n\t\t\t<VERS vnumber=\"5\"> And let me get a bit of food so that you may refresh yourselves since you have passed by your servant's home. After that you may be on your way.\" \"All right,\" they replied, \"you may do as you say.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> So Abraham hurried into the tent and said to Sarah, \"Quick! Take three measures of fine flour, knead it, and make bread.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> Then Abraham ran to the herd and chose a fine, tender calf, and gave it to a servant, who quickly prepared it.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Abraham then took some curds and milk, along with the calf that had been prepared, and placed the food before them. They ate while he was standing near them under a tree.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Then they asked him, \"Where is Sarah your wife?\" He replied, \"There, in the tent.\" </VERS>\n\t\t\t<VERS vnumber=\"10\"> One of them said, \"I will surely return to you when the season comes round again, and your wife Sarah will have a son!\" (Now Sarah was listening at the entrance to the tent, not far behind him.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Abraham and Sarah were old and advancing in years; Sarah had long since passed menopause.)</VERS>\n\t\t\t<VERS vnumber=\"12\"> So Sarah laughed to herself, thinking, \"After I am worn out will I have pleasure, especially when my husband is old too?\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> The LORD said to Abraham, \"Why did Sarah laugh and say, 'Will I really have a child when I am old?' </VERS>\n\t\t\t<VERS vnumber=\"14\"> Is anything impossible for the LORD? I will return to you when the season comes round again and Sarah will have a son.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> Then Sarah lied, saying, \"I did not laugh,\" because she was afraid. But the LORD said, \"No! You did laugh.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> When the men got up to leave, they looked out over Sodom. (Now Abraham was walking with them to see them on their way.)</VERS>\n\t\t\t<VERS vnumber=\"17\"> Then the LORD said, \"Should I hide from Abraham what I am about to do?</VERS>\n\t\t\t<VERS vnumber=\"18\"> After all, Abraham will surely become a great and powerful nation, and all the nations on the earth will pronounce blessings on one another using his name. </VERS>\n\t\t\t<VERS vnumber=\"19\"> I have chosen him so that he may command his children and his household after him to keep the way of the LORD by doing what is right and just. Then the LORD will give to Abraham what he promised him.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> So the LORD said, \"The outcry against Sodom and Gomorrah is so great and their sin so blatant</VERS>\n\t\t\t<VERS vnumber=\"21\"> that I must go down and see if they are as wicked as the outcry suggests. If not, I want to know.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> The two men turned and headed toward Sodom, but Abraham was still standing before the LORD.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Abraham approached and said, \"Will you sweep away the godly along with the wicked?</VERS>\n\t\t\t<VERS vnumber=\"24\"> What if there are fifty godly people in the city? Will you really wipe it out and not spare the place for the sake of the fifty godly people who are in it? </VERS>\n\t\t\t<VERS vnumber=\"25\"> Far be it from you to do such a thing, to kill the godly with the wicked, treating the godly and the wicked alike! Far be it from you! Will not the judge of the whole earth do what is right?\"</VERS>\n\t\t\t<VERS vnumber=\"26\"> So the LORD replied, \"If I find in the city of Sodom fifty godly people, I will spare the whole place for their sake.\"</VERS>\n\t\t\t<VERS vnumber=\"27\"> Then Abraham asked, \"Since I have undertaken to speak to the Lord (although I am but dust and ashes),</VERS>\n\t\t\t<VERS vnumber=\"28\"> what if there are five less than the fifty godly people? Will you destroy the whole city because five are lacking?\" He replied, \"I will not destroy it if I find forty-five there.\"</VERS>\n\t\t\t<VERS vnumber=\"29\"> Abraham spoke to him again, \"What if forty are found there?\" He replied, \"I will not do it for the sake of the forty.\"</VERS>\n\t\t\t<VERS vnumber=\"30\"> Then Abraham said, \"May the Lord not be angry so that I may speak! What if thirty are found there?\" He replied, \"I will not do it if I find thirty there.\"</VERS>\n\t\t\t<VERS vnumber=\"31\"> Abraham said, \"Since I have undertaken to speak to the Lord, what if only twenty are found there?\" He replied, \"I will not destroy it for the sake of the twenty.\"</VERS>\n\t\t\t<VERS vnumber=\"32\"> Finally Abraham said, \"May the Lord not be angry so that I may speak just once more. What if ten are found there?\" He replied, \"I will not destroy it for the sake of the ten.\"</VERS>\n\t\t\t<VERS vnumber=\"33\"> The LORD went on his way when he had finished speaking to Abraham. Then Abraham returned home.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"19\">\n\t\t\t<VERS vnumber=\"1\"> The two angels came to Sodom in the evening while Lot was sitting in the city's gateway. When Lot saw them, he got up to meet them and bowed down with his face toward the ground.</VERS>\n\t\t\t<VERS vnumber=\"2\"> He said, \"Here, my lords, please turn aside to your servant's house. Stay the night and wash your feet. Then you can be on your way early in the morning.\" \"No,\" they replied, \"we'll spend the night in the town square.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> But he urged them persistently, so they turned aside with him and entered his house. He prepared a feast for them, including bread baked without yeast, and they ate. </VERS>\n\t\t\t<VERS vnumber=\"4\"> Before they could lie down to sleep, all the men, both young and old, from every part of the city of Sodom, surrounded the house.</VERS>\n\t\t\t<VERS vnumber=\"5\"> They shouted to Lot, \"Where are the men who came to you tonight? Bring them out to us so we can have sex with them!\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> Lot went outside to them, shutting the door behind him.</VERS>\n\t\t\t<VERS vnumber=\"7\"> He said, \"No, my brothers! Don't act so wickedly!</VERS>\n\t\t\t<VERS vnumber=\"8\"> Look, I have two daughters who have never had sexual relations with a man. Let me bring them out to you, and you can do to them whatever you please. Only don't do anything to these men, for they have come under the protection of my roof.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"Out of our way!\" they cried, and \"This man came to live here as a foreigner, and now he dares to judge us! We'll do more harm to you than to them!\" They kept pressing in on Lot until they were close enough to break down the door.</VERS>\n\t\t\t<VERS vnumber=\"10\"> So the men inside reached out and pulled Lot back into the house as they shut the door. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Then they struck the men who were at the door of the house, from the youngest to the oldest, with blindness. The men outside wore themselves out trying to find the door. </VERS>\n\t\t\t<VERS vnumber=\"12\"> Then the two visitors said to Lot, \"Who else do you have here? Do you have any sons-in-law, sons, daughters, or other relatives in the city? Get them out of this place </VERS>\n\t\t\t<VERS vnumber=\"13\"> because we are about to destroy it. The outcry against this place is so great before the LORD that he has sent us to destroy it.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> Then Lot went out and spoke to his sons-in-law who were going to marry his daughters. He said, \"Quick, get out of this place because the LORD is about to destroy the city!\" But his sons-in-law thought he was ridiculing them.</VERS>\n\t\t\t<VERS vnumber=\"15\"> At dawn the angels hurried Lot along, saying, \"Get going! Take your wife and your two daughters who are here, or else you will be destroyed when the city is judged!\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> When Lot hesitated, the men grabbed his hand and the hands of his wife and two daughters because the LORD had compassion on them. They led them away and placed them outside the city. </VERS>\n\t\t\t<VERS vnumber=\"17\"> When they had brought them outside, they said, \"Run for your lives! Don't look behind you or stop anywhere in the valley! Escape to the mountains or you will be destroyed!\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> But Lot said to them, \"No, please, Lord!</VERS>\n\t\t\t<VERS vnumber=\"19\"> Your servant has found favor with you, and you have shown me great kindness by sparing my life. But I am not able to escape to the mountains because this disaster will overtake me and I'll die.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Look, this town over here is close enough to escape to, and it's just a little one. Let me go there. It's just a little place, isn't it? Then I'll survive.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> \"Very well,\" he replied, \"I will grant this request too and will not overthrow the town you mentioned. </VERS>\n\t\t\t<VERS vnumber=\"22\"> Run there quickly, for I cannot do anything until you arrive there.\" (This incident explains why the town was called Zoar.)</VERS>\n\t\t\t<VERS vnumber=\"23\"> The sun had just risen over the land as Lot reached Zoar.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Then the LORD rained down sulfur and fire on Sodom and Gomorrah. It was sent down from the sky by the LORD.</VERS>\n\t\t\t<VERS vnumber=\"25\"> So he overthrew those cities and all that region, including all the inhabitants of the cities and the vegetation that grew from the ground. </VERS>\n\t\t\t<VERS vnumber=\"26\"> But Lot's wife looked back longingly and was turned into a pillar of salt.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Abraham got up early in the morning and went to the place where he had stood before the LORD. </VERS>\n\t\t\t<VERS vnumber=\"28\"> He looked out toward Sodom and Gomorrah and all the land of that region. As he did so, he saw the smoke rising up from the land like smoke from a furnace.</VERS>\n\t\t\t<VERS vnumber=\"29\"> So when God destroyed the cities of the region, God honored Abraham's request. He removed Lot from the midst of the destruction when he destroyed the cities Lot had lived in.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Lot went up from Zoar with his two daughters and settled in the mountains because he was afraid to live in Zoar. So he lived in a cave with his two daughters.</VERS>\n\t\t\t<VERS vnumber=\"31\"> Later the older daughter said to the younger, \"Our father is old, and there is no man anywhere nearby to have sexual relations with us, according to the way of all the world.</VERS>\n\t\t\t<VERS vnumber=\"32\"> Come, let's make our father drunk with wine so we can have sexual relations with him and preserve our family line through our father.\"</VERS>\n\t\t\t<VERS vnumber=\"33\"> So that night they made their father drunk with wine, and the older daughter came and had sexual relations with her father. But he was not aware that she had sexual relations with him and then got up.</VERS>\n\t\t\t<VERS vnumber=\"34\"> So in the morning the older daughter said to the younger, \"Since I had sexual relations with my father last night, let's make him drunk again tonight. Then you go and have sexual relations with him so we can preserve our family line through our father.\"</VERS>\n\t\t\t<VERS vnumber=\"35\"> So they made their father drunk that night as well, and the younger one came and had sexual relations with him. But he was not aware that she had sexual relations with him and then got up.</VERS>\n\t\t\t<VERS vnumber=\"36\"> In this way both of Lot's daughters became pregnant by their father.</VERS>\n\t\t\t<VERS vnumber=\"37\"> The older daughter gave birth to a son and named him Moab. He is the ancestor of the Moabites of today. </VERS>\n\t\t\t<VERS vnumber=\"38\"> The younger daughter also gave birth to a son and named him Ben-Ammi. He is the ancestor of the Ammonites of today.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"20\">\n\t\t\t<VERS vnumber=\"1\"> Abraham journeyed from there to the Negev region and settled between Kadesh and Shur. While he lived as a temporary resident in Gerar, </VERS>\n\t\t\t<VERS vnumber=\"2\"> Abraham said about his wife Sarah, \"She is my sister.\" So Abimelech, king of Gerar, sent for Sarah and took her.</VERS>\n\t\t\t<VERS vnumber=\"3\"> But God appeared to Abimelech in a dream at night and said to him, \"You are as good as dead because of the woman you have taken, for she is someone else's wife.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> Now Abimelech had not gone near her. He said, \"Lord, would you really slaughter an innocent nation?</VERS>\n\t\t\t<VERS vnumber=\"5\"> Did Abraham not say to me, 'She is my sister'? And she herself said, 'He is my brother.' I have done this with a clear conscience and with innocent hands!\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> Then in the dream God replied to him, \"Yes, I know that you have done this with a clear conscience. That is why I have kept you from sinning against me and why I did not allow you to touch her. </VERS>\n\t\t\t<VERS vnumber=\"7\"> But now give back the man's wife. Indeed he is a prophet and he will pray for you; thus you will live. But if you don't give her back, know that you will surely die along with all who belong to you.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> Early in the morning Abimelech summoned all his servants. When he told them about all these things, they were terrified. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Abimelech summoned Abraham and said to him, \"What have you done to us? What sin did I commit against you that would cause you to bring such great guilt on me and my kingdom? You have done things to me that should not be done!\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> Then Abimelech asked Abraham, \"What prompted you to do this thing?\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> Abraham replied, \"Because I thought, 'Surely no one fears God in this place. They will kill me because of my wife.' </VERS>\n\t\t\t<VERS vnumber=\"12\"> What's more, she is indeed my sister, my father's daughter, but not my mother's daughter. She became my wife. </VERS>\n\t\t\t<VERS vnumber=\"13\"> When God made me wander from my father's house, I told her, 'This is what you can do to show your loyalty to me: Every place we go, say about me, \"He is my brother.\"'\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> So Abimelech gave sheep, cattle, and male and female servants to Abraham. He also gave his wife Sarah back to him. </VERS>\n\t\t\t<VERS vnumber=\"15\"> Then Abimelech said, \"Look, my land is before you; live wherever you please.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> To Sarah he said, \"Look, I have given a thousand pieces of silver to your 'brother.' This is compensation for you so that you will stand vindicated before all who are with you.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> Abraham prayed to God, and God healed Abimelech, as well as his wife and female slaves so that they were able to have children.</VERS>\n\t\t\t<VERS vnumber=\"18\"> For the LORD had caused infertility to strike every woman in the household of Abimelech because he took Sarah, Abraham's wife.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"21\">\n\t\t\t<VERS vnumber=\"1\"> The LORD visited Sarah just as he had said he would and did for Sarah what he had promised.</VERS>\n\t\t\t<VERS vnumber=\"2\"> So Sarah became pregnant and bore Abraham a son in his old age at the appointed time that God had told him.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Abraham named his son, whom Sarah bore to him, Isaac.</VERS>\n\t\t\t<VERS vnumber=\"4\"> When his son Isaac was eight days old, Abraham circumcised him just as God had commanded him to do.</VERS>\n\t\t\t<VERS vnumber=\"5\"> (Now Abraham was a hundred years old when his son Isaac was born to him.)</VERS>\n\t\t\t<VERS vnumber=\"6\"> Sarah said, \"God has made me laugh. Everyone who hears about this will laugh with me.\" </VERS>\n\t\t\t<VERS vnumber=\"7\"> She went on to say, \"Who would have said to Abraham that Sarah would nurse children? Yet I have given birth to a son for him in his old age!\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> The child grew and was weaned. Abraham prepared a great feast on the day that Isaac was weaned.</VERS>\n\t\t\t<VERS vnumber=\"9\"> But Sarah noticed the son of Hagar the Egyptian, the son whom Hagar had borne to Abraham, mocking.</VERS>\n\t\t\t<VERS vnumber=\"10\"> So she said to Abraham, \"Banish that slave woman and her son, for the son of that slave woman will not be an heir along with my son Isaac!\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> Sarah's demand displeased Abraham greatly because Ishmael was his son.</VERS>\n\t\t\t<VERS vnumber=\"12\"> But God said to Abraham, \"Do not be upset about the boy or your slave wife. Do all that Sarah is telling you because through Isaac your descendants will be counted.</VERS>\n\t\t\t<VERS vnumber=\"13\"> But I will also make the son of the slave wife into a great nation, for he is your descendant too.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> Early in the morning Abraham took some food and a skin of water and gave them to Hagar. He put them on her shoulders, gave her the child, and sent her away. So she went wandering aimlessly through the wilderness of Beer Sheba.</VERS>\n\t\t\t<VERS vnumber=\"15\"> When the water in the skin was gone, she shoved the child under one of the shrubs. </VERS>\n\t\t\t<VERS vnumber=\"16\"> Then she went and sat down by herself across from him at quite a distance, about a bowshot away; for she thought, \"I refuse to watch the child die.\" So she sat across from him and wept uncontrollably.</VERS>\n\t\t\t<VERS vnumber=\"17\"> But God heard the boy's voice. The angel of God called to Hagar from heaven and asked her, \"What is the matter, Hagar? Don't be afraid, for God has heard the boy's voice right where he is crying. </VERS>\n\t\t\t<VERS vnumber=\"18\"> Get up! Help the boy up and hold him by the hand, for I will make him into a great nation.\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> Then God enabled Hagar to see a well of water. She went over and filled the skin with water, and then gave the boy a drink.</VERS>\n\t\t\t<VERS vnumber=\"20\"> God was with the boy as he grew. He lived in the wilderness and became an archer.</VERS>\n\t\t\t<VERS vnumber=\"21\"> He lived in the wilderness of Paran. His mother found a wife for him from the land of Egypt.</VERS>\n\t\t\t<VERS vnumber=\"22\"> At that time Abimelech and Phicol, the commander of his army, said to Abraham, \"God is with you in all that you do. </VERS>\n\t\t\t<VERS vnumber=\"23\"> Now swear to me right here in God's name that you will not deceive me, my children, or my descendants. Show me, and the land where you are staying, the same loyalty that I have shown you.\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> Abraham said, \"I swear to do this.\"</VERS>\n\t\t\t<VERS vnumber=\"25\"> But Abraham lodged a complaint against Abimelech concerning a well that Abimelech's servants had seized.</VERS>\n\t\t\t<VERS vnumber=\"26\"> \"I do not know who has done this thing,\" Abimelech replied. \"Moreover, you did not tell me. I did not hear about it until today.\"</VERS>\n\t\t\t<VERS vnumber=\"27\"> Abraham took some sheep and cattle and gave them to Abimelech. The two of them made a treaty.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Then Abraham set seven ewe lambs apart from the flock by themselves.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Abimelech asked Abraham, \"What is the meaning of these seven ewe lambs that you have set apart?\" </VERS>\n\t\t\t<VERS vnumber=\"30\"> He replied, \"You must take these seven ewe lambs from my hand as legal proof that I dug this well.\"</VERS>\n\t\t\t<VERS vnumber=\"31\"> That is why he named that place Beer Sheba, because the two of them swore an oath there.</VERS>\n\t\t\t<VERS vnumber=\"32\"> So they made a treaty at Beer Sheba. Then Abimelech and Phicol, the commander of his army, returned to the land of the Philistines.</VERS>\n\t\t\t<VERS vnumber=\"33\"> Abraham planted a tamarisk tree in Beer Sheba. There he worshiped the LORD, the eternal God. </VERS>\n\t\t\t<VERS vnumber=\"34\"> So Abraham stayed in the land of the Philistines for quite some time.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"22\">\n\t\t\t<VERS vnumber=\"1\"> Some time after these things God tested Abraham. He said to him, \"Abraham!\" \"Here I am!\" Abraham replied. </VERS>\n\t\t\t<VERS vnumber=\"2\"> God said, \"Take your son, your only son, whom you love, Isaac, and go to the land of Moriah! Offer him up there as a burnt offering on one of the mountains which I will indicate to you.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> Early in the morning Abraham got up and saddled his donkey. He took two of his young servants with him, along with his son Isaac. When he had cut the wood for the burnt offering, he started out for the place God had spoken to him about.</VERS>\n\t\t\t<VERS vnumber=\"4\"> On the third day Abraham caught sight of the place in the distance. </VERS>\n\t\t\t<VERS vnumber=\"5\"> So he said to his servants, \"You two stay here with the donkey while the boy and I go up there. We will worship and then return to you.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> Abraham took the wood for the burnt offering and put it on his son Isaac. Then he took the fire and the knife in his hand, and the two of them walked on together. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Isaac said to his father Abraham, \"My father?\" \"What is it, my son?\" he replied. \"Here is the fire and the wood,\" Isaac said, \"but where is the lamb for the burnt offering?\" </VERS>\n\t\t\t<VERS vnumber=\"8\"> \"God will provide for himself the lamb for the burnt offering, my son,\" Abraham replied. The two of them continued on together.</VERS>\n\t\t\t<VERS vnumber=\"9\"> When they came to the place God had told him about, Abraham built the altar there and arranged the wood on it. Next he tied up his son Isaac and placed him on the altar on top of the wood. </VERS>\n\t\t\t<VERS vnumber=\"10\"> Then Abraham reached out his hand, took the knife, and prepared to slaughter his son. </VERS>\n\t\t\t<VERS vnumber=\"11\"> But the LORD's angel called to him from heaven, \"Abraham! Abraham!\" \"Here I am!\" he answered. </VERS>\n\t\t\t<VERS vnumber=\"12\"> \"Do not harm the boy!\" the angel said. \"Do not do anything to him, for now I know that you fear God because you did not withhold your son, your only son, from me.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> Abraham looked up and saw behind him a ram caught in the bushes by its horns. So he went over and got the ram and offered it up as a burnt offering instead of his son. </VERS>\n\t\t\t<VERS vnumber=\"14\"> And Abraham called the name of that place \"The LORD provides.\" It is said to this day, \"In the mountain of the LORD provision will be made.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> The LORD's angel called to Abraham a second time from heaven</VERS>\n\t\t\t<VERS vnumber=\"16\"> and said, \"'I solemnly swear by my own name,' decrees the LORD, 'that because you have done this and have not withheld your son, your only son, </VERS>\n\t\t\t<VERS vnumber=\"17\"> I will indeed bless you, and I will greatly multiply your descendants so that they will be as countless as the stars in the sky or the grains of sand on the seashore. Your descendants will take possession of the strongholds of their enemies. </VERS>\n\t\t\t<VERS vnumber=\"18\"> Because you have obeyed me, all the nations of the earth will pronounce blessings on one another using the name of your descendants.'\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> Then Abraham returned to his servants, and they set out together for Beer Sheba where Abraham stayed.</VERS>\n\t\t\t<VERS vnumber=\"20\"> After these things Abraham was told, \"Milcah also has borne children to your brother Nahor,</VERS>\n\t\t\t<VERS vnumber=\"21\"> Uz the firstborn, his brother Buz, Kemuel (the father of Aram),</VERS>\n\t\t\t<VERS vnumber=\"22\"> Kesed, Hazo, Pildash, Jidlaph, and Bethuel.\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> (Now Bethuel became the father of Rebekah.) These were the eight sons Milcah bore to Abraham's brother Nahor. </VERS>\n\t\t\t<VERS vnumber=\"24\"> His concubine, whose name was Reumah, also bore him children, Tebah, Gaham, Tahash, and Maacah.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"23\">\n\t\t\t<VERS vnumber=\"1\"> Sarah lived 127 years.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Then she died in Kiriath Arba (that is, Hebron) in the land of Canaan. Abraham went to mourn for Sarah and to weep for her.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Then Abraham got up from mourning his dead wife and said to the sons of Heth,</VERS>\n\t\t\t<VERS vnumber=\"4\"> \"I am a temporary settler among you. Grant me ownership of a burial site among you so that I may bury my dead.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> The sons of Heth answered Abraham,</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"Listen, sir, you are a mighty prince among us! You may bury your dead in the choicest of our tombs. None of us will refuse you his tomb to prevent you from burying your dead.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> Abraham got up and bowed down to the local people, the sons of Heth. </VERS>\n\t\t\t<VERS vnumber=\"8\"> Then he said to them, \"If you agree that I may bury my dead, then hear me out. Ask Ephron the son of Zohar </VERS>\n\t\t\t<VERS vnumber=\"9\"> if he will sell me the cave of Machpelah that belongs to him; it is at the end of his field. Let him sell it to me publicly for the full price, so that I may own it as a burial site.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> (Now Ephron was sitting among the sons of Heth.) Ephron the Hethite replied to Abraham in the hearing of the sons of Heth, before all who entered the gate of his city,</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"No, my lord! Hear me out. I sell you both the field and the cave that is in it. In the presence of my people I sell it to you. Bury your dead.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> Abraham bowed before the local people</VERS>\n\t\t\t<VERS vnumber=\"13\"> and said to Ephron in their hearing, \"Hear me, if you will. I pay to you the price of the field. Take it from me so that I may bury my dead there.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> Ephron answered Abraham, saying to him,</VERS>\n\t\t\t<VERS vnumber=\"15\"> \"Hear me, my lord. The land is worth 400 pieces of silver, but what is that between me and you? So bury your dead.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> So Abraham agreed to Ephron's price and weighed out for him the price that Ephron had quoted in the hearing of the sons of Heth, 400 pieces of silver, according to the standard measurement at the time.</VERS>\n\t\t\t<VERS vnumber=\"17\"> So Abraham secured Ephron's field in Machpelah, next to Mamre, including the field, the cave that was in it, and all the trees that were in the field and all around its border, </VERS>\n\t\t\t<VERS vnumber=\"18\"> as his property in the presence of the sons of Heth before all who entered the gate of Ephron's city.</VERS>\n\t\t\t<VERS vnumber=\"19\"> After this Abraham buried his wife Sarah in the cave in the field of Machpelah next to Mamre (that is, Hebron) in the land of Canaan.</VERS>\n\t\t\t<VERS vnumber=\"20\"> So Abraham secured the field and the cave that was in it as a burial site from the sons of Heth.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"24\">\n\t\t\t<VERS vnumber=\"1\"> Now Abraham was old, well advanced in years, and the LORD had blessed him in everything. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Abraham said to his servant, the senior one in his household who was in charge of everything he had, \"Put your hand under my thigh</VERS>\n\t\t\t<VERS vnumber=\"3\"> so that I may make you solemnly promise by the LORD, the God of heaven and the God of the earth: You must not acquire a wife for my son from the daughters of the Canaanites, among whom I am living. </VERS>\n\t\t\t<VERS vnumber=\"4\"> You must go instead to my country and to my relatives to find a wife for my son Isaac.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> The servant asked him, \"What if the woman is not willing to come back with me to this land? Must I then take your son back to the land from which you came?\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"Be careful never to take my son back there!\" Abraham told him.</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"The LORD, the God of heaven, who took me from my father's house and the land of my relatives, promised me with a solemn oath, 'To your descendants I will give this land.' He will send his angel before you so that you may find a wife for my son from there. </VERS>\n\t\t\t<VERS vnumber=\"8\"> But if the woman is not willing to come back with you, you will be free from this oath of mine. But you must not take my son back there!\" </VERS>\n\t\t\t<VERS vnumber=\"9\"> So the servant placed his hand under the thigh of his master Abraham and gave his solemn promise he would carry out his wishes.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Then the servant took ten of his master's camels and departed with all kinds of gifts from his master at his disposal. He journeyed to the region of Aram Naharaim and the city of Nahor. </VERS>\n\t\t\t<VERS vnumber=\"11\"> He made the camels kneel down by the well outside the city. It was evening, the time when the women would go out to draw water. </VERS>\n\t\t\t<VERS vnumber=\"12\"> He prayed, \"O LORD, God of my master Abraham, guide me today. Be faithful to my master Abraham. </VERS>\n\t\t\t<VERS vnumber=\"13\"> Here I am, standing by the spring, and the daughters of the people who live in the town are coming out to draw water. </VERS>\n\t\t\t<VERS vnumber=\"14\"> I will say to a young woman, 'Please lower your jar so I may drink.' May the one you have chosen for your servant Isaac reply, 'Drink, and I'll give your camels water too.' In this way I will know that you have been faithful to my master.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> Before he had finished praying, there came Rebekah with her water jug on her shoulder. She was the daughter of Bethuel son of Milcah (Milcah was the wife of Abraham's brother Nahor).</VERS>\n\t\t\t<VERS vnumber=\"16\"> Now the young woman was very beautiful. She was a virgin; no man had ever had sexual relations with her. She went down to the spring, filled her jug, and came back up. </VERS>\n\t\t\t<VERS vnumber=\"17\"> Abraham's servant ran to meet her and said, \"Please give me a sip of water from your jug.\" </VERS>\n\t\t\t<VERS vnumber=\"18\"> \"Drink, my lord,\" she replied, and quickly lowering her jug to her hands, she gave him a drink. </VERS>\n\t\t\t<VERS vnumber=\"19\"> When she had done so, she said, \"I'll draw water for your camels too, until they have drunk as much as they want.\" </VERS>\n\t\t\t<VERS vnumber=\"20\"> She quickly emptied her jug into the watering trough and ran back to the well to draw more water until she had drawn enough for all his camels. </VERS>\n\t\t\t<VERS vnumber=\"21\"> Silently the man watched her with interest to determine if the LORD had made his journey successful or not.</VERS>\n\t\t\t<VERS vnumber=\"22\"> After the camels had finished drinking, the man took out a gold nose ring weighing a beka and two gold bracelets weighing ten shekels and gave them to her.</VERS>\n\t\t\t<VERS vnumber=\"23\"> \"Whose daughter are you?\" he asked. \"Tell me, is there room in your father's house for us to spend the night?\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> She said to him, \"I am the daughter of Bethuel the son of Milcah, whom Milcah bore to Nahor.</VERS>\n\t\t\t<VERS vnumber=\"25\"> We have plenty of straw and feed,\" she added, \"and room for you to spend the night.\"</VERS>\n\t\t\t<VERS vnumber=\"26\"> The man bowed his head and worshiped the LORD,</VERS>\n\t\t\t<VERS vnumber=\"27\"> saying \"Praised be the LORD, the God of my master Abraham, who has not abandoned his faithful love for my master! The LORD has led me to the house of my master's relatives!\"</VERS>\n\t\t\t<VERS vnumber=\"28\"> The young woman ran and told her mother's household all about these things. </VERS>\n\t\t\t<VERS vnumber=\"29\"> (Now Rebekah had a brother named Laban.) Laban rushed out to meet the man at the spring. </VERS>\n\t\t\t<VERS vnumber=\"30\"> When he saw the bracelets on his sister's wrists and the nose ring and heard his sister Rebekah say, \"This is what the man said to me,\" he went out to meet the man. There he was, standing by the camels near the spring. </VERS>\n\t\t\t<VERS vnumber=\"31\"> Laban said to him, \"Come, you who are blessed by the LORD! Why are you standing out here when I have prepared the house and a place for the camels?\"</VERS>\n\t\t\t<VERS vnumber=\"32\"> So Abraham's servant went to the house and unloaded the camels. Straw and feed were given to the camels, and water was provided so that he and the men who were with him could wash their feet.</VERS>\n\t\t\t<VERS vnumber=\"33\"> When food was served, he said, \"I will not eat until I have said what I want to say.\" \"Tell us,\" Laban said.</VERS>\n\t\t\t<VERS vnumber=\"34\"> \"I am the servant of Abraham,\" he began.</VERS>\n\t\t\t<VERS vnumber=\"35\"> \"The LORD has richly blessed my master and he has become very wealthy. The Lord has given him sheep and cattle, silver and gold, male and female servants, and camels and donkeys. </VERS>\n\t\t\t<VERS vnumber=\"36\"> My master's wife Sarah bore a son to him when she was old, and my master has given him everything he owns. </VERS>\n\t\t\t<VERS vnumber=\"37\"> My master made me swear an oath. He said, 'You must not acquire a wife for my son from the daughters of the Canaanites, among whom I am living,</VERS>\n\t\t\t<VERS vnumber=\"38\"> but you must go to the family of my father and to my relatives to find a wife for my son.' </VERS>\n\t\t\t<VERS vnumber=\"39\"> But I said to my master, 'What if the woman does not want to go with me?'</VERS>\n\t\t\t<VERS vnumber=\"40\"> He answered, 'The LORD, before whom I have walked, will send his angel with you. He will make your journey a success and you will find a wife for my son from among my relatives, from my father's family. </VERS>\n\t\t\t<VERS vnumber=\"41\"> You will be free from your oath if you go to my relatives and they will not give her to you. Then you will be free from your oath.' </VERS>\n\t\t\t<VERS vnumber=\"42\"> When I came to the spring today, I prayed, 'O LORD, God of my master Abraham, if you have decided to make my journey successful, may events unfold as follows:</VERS>\n\t\t\t<VERS vnumber=\"43\"> Here I am, standing by the spring. When the young woman goes out to draw water, I'll say, \"Give me a little water to drink from your jug.\" </VERS>\n\t\t\t<VERS vnumber=\"44\"> Then she will reply to me, \"Drink, and I'll draw water for your camels too.\" May that woman be the one whom the LORD has chosen for my master's son.'</VERS>\n\t\t\t<VERS vnumber=\"45\"> \"Before I finished praying in my heart, along came Rebekah with her water jug on her shoulder! She went down to the spring and drew water. So I said to her, 'Please give me a drink.' </VERS>\n\t\t\t<VERS vnumber=\"46\"> She quickly lowered her jug from her shoulder and said, 'Drink, and I'll give your camels water too.' So I drank, and she also gave the camels water.</VERS>\n\t\t\t<VERS vnumber=\"47\"> Then I asked her, 'Whose daughter are you?' She replied, 'The daughter of Bethuel the son of Nahor, whom Milcah bore to Nahor.' I put the ring in her nose and the bracelets on her wrists. </VERS>\n\t\t\t<VERS vnumber=\"48\"> Then I bowed down and worshiped the LORD. I praised the LORD, the God of my master Abraham, who had led me on the right path to find the granddaughter of my master's brother for his son.</VERS>\n\t\t\t<VERS vnumber=\"49\"> Now, if you will show faithful love to my master, tell me. But if not, tell me as well, so that I may go on my way.\"</VERS>\n\t\t\t<VERS vnumber=\"50\"> Then Laban and Bethuel replied, \"This is the LORD's doing. Our wishes are of no concern.</VERS>\n\t\t\t<VERS vnumber=\"51\"> Rebekah stands here before you. Take her and go so that she may become the wife of your master's son, just as the LORD has decided.\"</VERS>\n\t\t\t<VERS vnumber=\"52\"> When Abraham's servant heard their words, he bowed down to the ground before the LORD.</VERS>\n\t\t\t<VERS vnumber=\"53\"> Then he brought out gold, silver jewelry, and clothing and gave them to Rebekah. He also gave valuable gifts to her brother and to her mother. </VERS>\n\t\t\t<VERS vnumber=\"54\"> After this, he and the men who were with him ate a meal and stayed there overnight. When they got up in the morning, he said, \"Let me leave now so I can return to my master.\"</VERS>\n\t\t\t<VERS vnumber=\"55\"> But Rebekah's brother and her mother replied, \"Let the girl stay with us a few more days, perhaps ten. Then she can go.\" </VERS>\n\t\t\t<VERS vnumber=\"56\"> But he said to them, \"Don't detain me, the LORD has granted me success on my journey. Let me leave now so I may return to my master.\"</VERS>\n\t\t\t<VERS vnumber=\"57\"> Then they said, \"We'll call the girl and find out what she wants to do.\"</VERS>\n\t\t\t<VERS vnumber=\"58\"> So they called Rebekah and asked her, \"Do you want to go with this man?\" She replied, \"I want to go.\"</VERS>\n\t\t\t<VERS vnumber=\"59\"> So they sent their sister Rebekah on her way, accompanied by her female attendant, with Abraham's servant and his men.</VERS>\n\t\t\t<VERS vnumber=\"60\"> They blessed Rebekah with these words: \"Our sister, may you become the mother of thousands of ten thousands! May your descendants possess the strongholds of their enemies.\"</VERS>\n\t\t\t<VERS vnumber=\"61\"> Then Rebekah and her female servants mounted the camels and rode away with the man. So Abraham's servant took Rebekah and left.</VERS>\n\t\t\t<VERS vnumber=\"62\"> Now Isaac came from Beer Lahai Roi, for he was living in the Negev.</VERS>\n\t\t\t<VERS vnumber=\"63\"> He went out to relax in the field in the early evening. Then he looked up and saw that there were camels approaching. </VERS>\n\t\t\t<VERS vnumber=\"64\"> Rebekah looked up and saw Isaac. She got down from her camel </VERS>\n\t\t\t<VERS vnumber=\"65\"> and asked Abraham's servant, \"Who is that man walking in the field toward us?\" \"That is my master,\" the servant replied. So she took her veil and covered herself.</VERS>\n\t\t\t<VERS vnumber=\"66\"> The servant told Isaac everything that had happened.</VERS>\n\t\t\t<VERS vnumber=\"67\"> Then Isaac brought Rebekah into his mother Sarah's tent. He took her as his wife and loved her. So Isaac was comforted after his mother's death.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"25\">\n\t\t\t<VERS vnumber=\"1\"> Abraham had taken another wife, named Keturah. </VERS>\n\t\t\t<VERS vnumber=\"2\"> She bore him Zimran, Jokshan, Medan, Midian, Ishbak, and Shuah.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Jokshan became the father of Sheba and Dedan. The descendants of Dedan were the Asshurites, Letushites, and Leummites. </VERS>\n\t\t\t<VERS vnumber=\"4\"> The sons of Midian were Ephah, Epher, Hanoch, Abida, and Eldaah. All these were descendants of Keturah.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Everything he owned Abraham left to his son Isaac.</VERS>\n\t\t\t<VERS vnumber=\"6\"> But while he was still alive, Abraham gave gifts to the sons of his concubines and sent them off to the east, away from his son Isaac.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Abraham lived a total of 175 years. </VERS>\n\t\t\t<VERS vnumber=\"8\"> Then Abraham breathed his last and died at a good old age, an old man who had lived a full life. He joined his ancestors.</VERS>\n\t\t\t<VERS vnumber=\"9\"> His sons Isaac and Ishmael buried him in the cave of Machpelah near Mamre, in the field of Ephron the son of Zohar, the Hethite. </VERS>\n\t\t\t<VERS vnumber=\"10\"> This was the field Abraham had purchased from the sons of Heth. There Abraham was buried with his wife Sarah. </VERS>\n\t\t\t<VERS vnumber=\"11\"> After Abraham's death, God blessed his son Isaac. Isaac lived near Beer Lahai Roi.</VERS>\n\t\t\t<VERS vnumber=\"12\"> This is the account of Abraham's son Ishmael, whom Hagar the Egyptian, Sarah's servant, bore to Abraham.</VERS>\n\t\t\t<VERS vnumber=\"13\"> These are the names of Ishmael's sons, by their names according to their records: Nebaioth (Ishmael's firstborn), Kedar, Adbeel, Mibsam, </VERS>\n\t\t\t<VERS vnumber=\"14\"> Mishma, Dumah, Massa,</VERS>\n\t\t\t<VERS vnumber=\"15\"> Hadad, Tema, Jetur, Naphish, and Kedemah.</VERS>\n\t\t\t<VERS vnumber=\"16\"> These are the sons of Ishmael, and these are their names by their settlements and their camps, twelve princes according to their clans.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Ishmael lived a total of 137 years. He breathed his last and died; then he joined his ancestors.</VERS>\n\t\t\t<VERS vnumber=\"18\"> His descendants settled from Havilah to Shur, which runs next to Egypt all the way to Asshur. They settled away from all their relatives.</VERS>\n\t\t\t<VERS vnumber=\"19\"> This is the account of Isaac, the son of Abraham. Abraham became the father of Isaac. </VERS>\n\t\t\t<VERS vnumber=\"20\"> When Isaac was forty years old, he married Rebekah, the daughter of Bethuel the Aramean from Paddan Aram and sister of Laban the Aramean.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Isaac prayed to the LORD on behalf of his wife because she was childless. The LORD answered his prayer, and his wife Rebekah became pregnant.</VERS>\n\t\t\t<VERS vnumber=\"22\"> But the children struggled inside her, and she said, \"If it is going to be like this, I'm not so sure I want to be pregnant!\" So she asked the LORD,</VERS>\n\t\t\t<VERS vnumber=\"23\"> and the LORD said to her, \"Two nations are in your womb, and two peoples will be separated from within you. One people will be stronger than the other, and the older will serve the younger.\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> When the time came for Rebekah to give birth, there were twins in her womb. </VERS>\n\t\t\t<VERS vnumber=\"25\"> The first came out reddish all over, like a hairy garment, so they named him Esau.</VERS>\n\t\t\t<VERS vnumber=\"26\"> When his brother came out with his hand clutching Esau's heel, they named him Jacob. Isaac was sixty years old when they were born.</VERS>\n\t\t\t<VERS vnumber=\"27\"> When the boys grew up, Esau became a skilled hunter, a man of the open fields, but Jacob was an even-tempered man, living in tents.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Isaac loved Esau because he had a taste for fresh game, but Rebekah loved Jacob.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Now Jacob cooked some stew, and when Esau came in from the open fields, he was famished. </VERS>\n\t\t\t<VERS vnumber=\"30\"> So Esau said to Jacob, \"Feed me some of the red stuff, yes, this red stuff, because I'm starving!\" (That is why he was also called Edom.)</VERS>\n\t\t\t<VERS vnumber=\"31\"> But Jacob replied, \"First sell me your birthright.\" </VERS>\n\t\t\t<VERS vnumber=\"32\"> \"Look,\" said Esau, \"I'm about to die! What use is the birthright to me?\"</VERS>\n\t\t\t<VERS vnumber=\"33\"> But Jacob said, \"Swear an oath to me now.\" So Esau swore an oath to him and sold his birthright to Jacob.</VERS>\n\t\t\t<VERS vnumber=\"34\"> Then Jacob gave Esau some bread and lentil stew; Esau ate and drank, then got up and went out. So Esau despised his birthright.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"26\">\n\t\t\t<VERS vnumber=\"1\"> There was a famine in the land, subsequent to the earlier famine that occurred in the days of Abraham. Isaac went to Abimelech king of the Philistines at Gerar. </VERS>\n\t\t\t<VERS vnumber=\"2\"> The LORD appeared to Isaac and said, \"Do not go down to Egypt; settle down in the land that I will point out to you.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Stay in this land. Then I will be with you and will bless you, for I will give all these lands to you and to your descendants, and I will fulfill the solemn promise I made to your father Abraham. </VERS>\n\t\t\t<VERS vnumber=\"4\"> I will multiply your descendants so they will be as numerous as the stars in the sky, and I will give them all these lands. All the nations of the earth will pronounce blessings on one another using the name of your descendants.</VERS>\n\t\t\t<VERS vnumber=\"5\"> All this will come to pass because Abraham obeyed me and kept my charge, my commandments, my statutes, and my laws.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> So Isaac settled in Gerar.</VERS>\n\t\t\t<VERS vnumber=\"7\"> When the men of that place asked him about his wife, he replied, \"She is my sister.\" He was afraid to say, \"She is my wife,\" for he thought to himself, \"The men of this place will kill me to get Rebekah because she is very beautiful.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> After Isaac had been there a long time, Abimelech king of the Philistines happened to look out a window and observed Isaac caressing his wife Rebekah. </VERS>\n\t\t\t<VERS vnumber=\"9\"> So Abimelech summoned Isaac and said, \"She is really your wife! Why did you say, 'She is my sister'?\" Isaac replied, \"Because I thought someone might kill me to get her.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> Then Abimelech exclaimed, \"What in the world have you done to us? One of the men might easily have had sexual relations with your wife, and you would have brought guilt on us!\" </VERS>\n\t\t\t<VERS vnumber=\"11\"> So Abimelech commanded all the people, \"Whoever touches this man or his wife will surely be put to death.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> When Isaac planted in that land, he reaped in the same year a hundred times what he had sown, because the LORD blessed him.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The man became wealthy. His influence continued to grow until he became very prominent. </VERS>\n\t\t\t<VERS vnumber=\"14\"> He had so many sheep and cattle and such a great household of servants that the Philistines became jealous of him. </VERS>\n\t\t\t<VERS vnumber=\"15\"> So the Philistines took dirt and filled up all the wells that his father's servants had dug back in the days of his father Abraham.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Then Abimelech said to Isaac, \"Leave us and go elsewhere, for you have become much more powerful than we are.\" </VERS>\n\t\t\t<VERS vnumber=\"17\"> So Isaac left there and settled in the Gerar Valley.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Isaac reopened the wells that had been dug back in the days of his father Abraham, for the Philistines had stopped them up after Abraham died. Isaac gave these wells the same names his father had given them.</VERS>\n\t\t\t<VERS vnumber=\"19\"> When Isaac's servants dug in the valley and discovered a well with fresh flowing water there, </VERS>\n\t\t\t<VERS vnumber=\"20\"> the herdsmen of Gerar quarreled with Isaac's herdsmen, saying, \"The water belongs to us!\" So Isaac named the well Esek because they argued with him about it.</VERS>\n\t\t\t<VERS vnumber=\"21\"> His servants dug another well, but they quarreled over it too, so Isaac named it Sitnah.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Then he moved away from there and dug another well. They did not quarrel over it, so Isaac named it Rehoboth, saying, \"For now the LORD has made room for us, and we will prosper in the land.\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> From there Isaac went up to Beer Sheba. </VERS>\n\t\t\t<VERS vnumber=\"24\"> The LORD appeared to him that night and said, \"I am the God of your father Abraham. Do not be afraid, for I am with you. I will bless you and multiply your descendants for the sake of my servant Abraham.\"</VERS>\n\t\t\t<VERS vnumber=\"25\"> Then Isaac built an altar there and worshiped the LORD. He pitched his tent there, and his servants dug a well.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Now Abimelech had come to him from Gerar along with Ahuzzah his friend and Phicol the commander of his army.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Isaac asked them, \"Why have you come to me? You hate me and sent me away from you.\" </VERS>\n\t\t\t<VERS vnumber=\"28\"> They replied, \"We could plainly see that the LORD is with you. So we decided there should be a pact between us, between us and you. Allow us to make a treaty with you</VERS>\n\t\t\t<VERS vnumber=\"29\"> so that you will not do us any harm, just as we have not harmed you, but have always treated you well before sending you away in peace. Now you are blessed by the LORD.\"</VERS>\n\t\t\t<VERS vnumber=\"30\"> So Isaac held a feast for them and they celebrated.</VERS>\n\t\t\t<VERS vnumber=\"31\"> Early in the morning the men made a treaty with each other. Isaac sent them off; they separated on good terms.</VERS>\n\t\t\t<VERS vnumber=\"32\"> That day Isaac's servants came and told him about the well they had dug. \"We've found water,\" they reported.</VERS>\n\t\t\t<VERS vnumber=\"33\"> So he named it Shibah; that is why the name of the city has been Beer Sheba to this day.</VERS>\n\t\t\t<VERS vnumber=\"34\"> When Esau was forty years old, he married Judith the daughter of Beeri the Hittite, as well as Basemath the daughter of Elon the Hittite. </VERS>\n\t\t\t<VERS vnumber=\"35\"> They caused Isaac and Rebekah great anxiety.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"27\">\n\t\t\t<VERS vnumber=\"1\"> When Isaac was old and his eyes were so weak that he was almost blind, he called his older son Esau and said to him, \"My son!\" \"Here I am!\" Esau replied. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Isaac said, \"Since I am so old, I could die at any time.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Therefore, take your weapons, your quiver and your bow, and go out into the open fields and hunt down some wild game for me.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Then prepare for me some tasty food, the kind I love, and bring it to me. Then I will eat it so that I may bless you before I die.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> Now Rebekah had been listening while Isaac spoke to his son Esau. When Esau went out to the open fields to hunt down some wild game and bring it back,</VERS>\n\t\t\t<VERS vnumber=\"6\"> Rebekah said to her son Jacob, \"Look, I overheard your father tell your brother Esau,</VERS>\n\t\t\t<VERS vnumber=\"7\"> 'Bring me some wild game and prepare for me some tasty food. Then I will eat it and bless you in the presence of the LORD before I die.' </VERS>\n\t\t\t<VERS vnumber=\"8\"> Now then, my son, do exactly what I tell you!</VERS>\n\t\t\t<VERS vnumber=\"9\"> Go to the flock and get me two of the best young goats. I'll prepare them in a tasty way for your father, just the way he loves them. </VERS>\n\t\t\t<VERS vnumber=\"10\"> Then you will take it to your father. Thus he will eat it and bless you before he dies.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"But Esau my brother is a hairy man,\" Jacob protested to his mother Rebekah, \"and I have smooth skin!</VERS>\n\t\t\t<VERS vnumber=\"12\"> My father may touch me! Then he'll think I'm mocking him and I'll bring a curse on myself instead of a blessing.\" </VERS>\n\t\t\t<VERS vnumber=\"13\"> So his mother told him, \"Any curse against you will fall on me, my son! Just obey me! Go and get them for me!\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> So he went and got the goats and brought them to his mother. She prepared some tasty food, just the way his father loved it. </VERS>\n\t\t\t<VERS vnumber=\"15\"> Then Rebekah took her older son Esau's best clothes, which she had with her in the house, and put them on her younger son Jacob.</VERS>\n\t\t\t<VERS vnumber=\"16\"> She put the skins of the young goats on his hands and the smooth part of his neck. </VERS>\n\t\t\t<VERS vnumber=\"17\"> Then she handed the tasty food and the bread she had made to her son Jacob.</VERS>\n\t\t\t<VERS vnumber=\"18\"> He went to his father and said, \"My father!\" Isaac replied, \"Here I am. Which are you, my son?\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> Jacob said to his father, \"I am Esau, your firstborn. I've done as you told me. Now sit up and eat some of my wild game so that you can bless me.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> But Isaac asked his son, \"How in the world did you find it so quickly, my son?\" \"Because the LORD your God brought it to me,\" he replied.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Then Isaac said to Jacob, \"Come closer so I can touch you, my son, and know for certain if you really are my son Esau.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> So Jacob went over to his father Isaac, who felt him and said, \"The voice is Jacob's, but the hands are Esau's.\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> He did not recognize him because his hands were hairy, like his brother Esau's hands. So Isaac blessed Jacob.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Then he asked, \"Are you really my son Esau?\" \"I am,\" Jacob replied. </VERS>\n\t\t\t<VERS vnumber=\"25\"> Isaac said, \"Bring some of the wild game for me to eat, my son. Then I will bless you.\" So Jacob brought it to him, and he ate it. He also brought him wine, and Isaac drank. </VERS>\n\t\t\t<VERS vnumber=\"26\"> Then his father Isaac said to him, \"Come here and kiss me, my son.\"</VERS>\n\t\t\t<VERS vnumber=\"27\"> So Jacob went over and kissed him. When Isaac caught the scent of his clothing, he blessed him, saying, \"Yes, my son smells like the scent of an open field which the LORD has blessed.</VERS>\n\t\t\t<VERS vnumber=\"28\"> May God give you the dew of the sky and the richness of the earth, and plenty of grain and new wine.</VERS>\n\t\t\t<VERS vnumber=\"29\"> May peoples serve you and nations bow down to you. You will be lord over your brothers, and the sons of your mother will bow down to you. May those who curse you be cursed, and those who bless you be blessed.\"</VERS>\n\t\t\t<VERS vnumber=\"30\"> Isaac had just finished blessing Jacob, and Jacob had scarcely left his father's presence, when his brother Esau returned from the hunt.</VERS>\n\t\t\t<VERS vnumber=\"31\"> He also prepared some tasty food and brought it to his father. Esau said to him, \"My father, get up and eat some of your son's wild game. Then you can bless me.\"</VERS>\n\t\t\t<VERS vnumber=\"32\"> His father Isaac asked, \"Who are you?\" \"I am your firstborn son,\" he replied, \"Esau!\" </VERS>\n\t\t\t<VERS vnumber=\"33\"> Isaac began to shake violently and asked, \"Then who else hunted game and brought it to me? I ate all of it just before you arrived, and I blessed him. He will indeed be blessed!\"</VERS>\n\t\t\t<VERS vnumber=\"34\"> When Esau heard his father's words, he wailed loudly and bitterly. He said to his father, \"Bless me too, my father!\" </VERS>\n\t\t\t<VERS vnumber=\"35\"> But Isaac replied, \"Your brother came in here deceitfully and took away your blessing.\" </VERS>\n\t\t\t<VERS vnumber=\"36\"> Esau exclaimed, \"'Jacob' is the right name for him! He has tripped me up two times! He took away my birthright, and now, look, he has taken away my blessing!\" Then he asked, \"Have you not kept back a blessing for me?\"</VERS>\n\t\t\t<VERS vnumber=\"37\"> Isaac replied to Esau, \"Look! I have made him lord over you. I have made all his relatives his servants and provided him with grain and new wine. What is left that I can do for you, my son?\"</VERS>\n\t\t\t<VERS vnumber=\"38\"> Esau said to his father, \"Do you have only that one blessing, my father? Bless me too!\" Then Esau wept loudly.</VERS>\n\t\t\t<VERS vnumber=\"39\"> So his father Isaac said to him, \"Indeed, your home will be away from the richness of the earth, and away from the dew of the sky above.</VERS>\n\t\t\t<VERS vnumber=\"40\"> You will live by your sword but you will serve your brother. When you grow restless, you will tear off his yoke from your neck.\"</VERS>\n\t\t\t<VERS vnumber=\"41\"> So Esau hated Jacob because of the blessing his father had given to his brother. Esau said privately, \"The time of mourning for my father is near; then I will kill my brother Jacob!\"</VERS>\n\t\t\t<VERS vnumber=\"42\"> When Rebekah heard what her older son Esau had said, she quickly summoned her younger son Jacob and told him, \"Look, your brother Esau is planning to get revenge by killing you.</VERS>\n\t\t\t<VERS vnumber=\"43\"> Now then, my son, do what I say. Run away immediately to my brother Laban in Haran. </VERS>\n\t\t\t<VERS vnumber=\"44\"> Live with him for a little while until your brother's rage subsides. </VERS>\n\t\t\t<VERS vnumber=\"45\"> Stay there until your brother's anger against you subsides and he forgets what you did to him. Then I'll send someone to bring you back from there. Why should I lose both of you in one day?\"</VERS>\n\t\t\t<VERS vnumber=\"46\"> Then Rebekah said to Isaac, \"I am deeply depressed because of these daughters of Heth. If Jacob were to marry one of these daughters of Heth who live in this land, I would want to die!\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"28\">\n\t\t\t<VERS vnumber=\"1\"> So Isaac called for Jacob and blessed him. Then he commanded him, \"You must not marry a Canaanite woman!</VERS>\n\t\t\t<VERS vnumber=\"2\"> Leave immediately for Paddan Aram! Go to the house of Bethuel, your mother's father, and find yourself a wife there, among the daughters of Laban, your mother's brother. </VERS>\n\t\t\t<VERS vnumber=\"3\"> May the sovereign God bless you! May he make you fruitful and give you a multitude of descendants! Then you will become a large nation.</VERS>\n\t\t\t<VERS vnumber=\"4\"> May he give you and your descendants the blessing he gave to Abraham so that you may possess the land God gave to Abraham, the land where you have been living as a temporary resident.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> So Isaac sent Jacob on his way, and he went to Paddan Aram, to Laban son of Bethuel the Aramean and brother of Rebekah, the mother of Jacob and Esau.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Esau saw that Isaac had blessed Jacob and sent him off to Paddan Aram to find a wife there. As he blessed him, Isaac commanded him, \"You must not marry a Canaanite woman.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> Jacob obeyed his father and mother and left for Paddan Aram.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Then Esau realized that the Canaanite women were displeasing to his father Isaac. </VERS>\n\t\t\t<VERS vnumber=\"9\"> So Esau went to Ishmael and married Mahalath, the sister of Nebaioth and daughter of Abraham's son Ishmael, along with the wives he already had.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Meanwhile Jacob left Beer Sheba and set out for Haran.</VERS>\n\t\t\t<VERS vnumber=\"11\"> He reached a certain place where he decided to camp because the sun had gone down. He took one of the stones and placed it near his head. Then he fell asleep in that place</VERS>\n\t\t\t<VERS vnumber=\"12\"> and had a dream. He saw a stairway erected on the earth with its top reaching to the heavens. The angels of God were going up and coming down it </VERS>\n\t\t\t<VERS vnumber=\"13\"> and the LORD stood at its top. He said, \"I am the LORD, the God of your grandfather Abraham and the God of your father Isaac. I will give you and your descendants the ground you are lying on.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Your descendants will be like the dust of the earth, and you will spread out to the west, east, north, and south. All the families of the earth will pronounce blessings on one another using your name and that of your descendants.</VERS>\n\t\t\t<VERS vnumber=\"15\"> I am with you! I will protect you wherever you go and will bring you back to this land. I will not leave you until I have done what I promised you!\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> Then Jacob woke up and thought, \"Surely the LORD is in this place, but I did not realize it!\" </VERS>\n\t\t\t<VERS vnumber=\"17\"> He was afraid and said, \"What an awesome place this is! This is nothing else than the house of God! This is the gate of heaven!\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> Early in the morning Jacob took the stone he had placed near his head and set it up as a sacred stone. Then he poured oil on top of it. </VERS>\n\t\t\t<VERS vnumber=\"19\"> He called that place Bethel, although the former name of the town was Luz. </VERS>\n\t\t\t<VERS vnumber=\"20\"> Then Jacob made a vow, saying, \"If God is with me and protects me on this journey I am taking and gives me food to eat and clothing to wear, </VERS>\n\t\t\t<VERS vnumber=\"21\"> and I return safely to my father's home, then the LORD will become my God. </VERS>\n\t\t\t<VERS vnumber=\"22\"> Then this stone that I have set up as a sacred stone will be the house of God, and I will surely give you back a tenth of everything you give me.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"29\">\n\t\t\t<VERS vnumber=\"1\"> So Jacob moved on and came to the land of the eastern people.</VERS>\n\t\t\t<VERS vnumber=\"2\"> He saw in the field a well with three flocks of sheep lying beside it, because the flocks were watered from that well. Now a large stone covered the mouth of the well. </VERS>\n\t\t\t<VERS vnumber=\"3\"> When all the flocks were gathered there, the shepherds would roll the stone off the mouth of the well and water the sheep. Then they would put the stone back in its place over the well's mouth.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Jacob asked them, \"My brothers, where are you from?\" They replied, \"We're from Haran.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> So he said to them, \"Do you know Laban, the grandson of Nahor?\" \"We know him,\" they said. </VERS>\n\t\t\t<VERS vnumber=\"6\"> \"Is he well?\" Jacob asked. They replied, \"He is well. Now look, here comes his daughter Rachel with the sheep.\" </VERS>\n\t\t\t<VERS vnumber=\"7\"> Then Jacob said, \"Since it is still the middle of the day, it is not time for the flocks to be gathered. You should water the sheep and then go and let them graze some more.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"We can't,\" they said, \"until all the flocks are gathered and the stone is rolled off the mouth of the well. Then we water the sheep.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> While he was still speaking with them, Rachel arrived with her father's sheep, for she was tending them.</VERS>\n\t\t\t<VERS vnumber=\"10\"> When Jacob saw Rachel, the daughter of his uncle Laban, and the sheep of his uncle Laban, he went over and rolled the stone off the mouth of the well and watered the sheep of his uncle Laban.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Then Jacob kissed Rachel and began to weep loudly.</VERS>\n\t\t\t<VERS vnumber=\"12\"> When Jacob explained to Rachel that he was a relative of her father and the son of Rebekah, she ran and told her father. </VERS>\n\t\t\t<VERS vnumber=\"13\"> When Laban heard this news about Jacob, his sister's son, he rushed out to meet him. He embraced him and kissed him and brought him to his house. Jacob told Laban how he was related to him.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Then Laban said to him, \"You are indeed my own flesh and blood.\" So Jacob stayed with him for a month.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Then Laban said to Jacob, \"Should you work for me for nothing because you are my relative? Tell me what your wages should be.\" </VERS>\n\t\t\t<VERS vnumber=\"16\"> (Now Laban had two daughters; the older one was named Leah, and the younger one Rachel. </VERS>\n\t\t\t<VERS vnumber=\"17\"> Leah's eyes were tender, but Rachel had a lovely figure and beautiful appearance.)</VERS>\n\t\t\t<VERS vnumber=\"18\"> Since Jacob had fallen in love with Rachel, he said, \"I'll serve you seven years in exchange for your younger daughter Rachel.\" </VERS>\n\t\t\t<VERS vnumber=\"19\"> Laban replied, \"I'd rather give her to you than to another man. Stay with me.\" </VERS>\n\t\t\t<VERS vnumber=\"20\"> So Jacob worked for seven years to acquire Rachel. But they seemed like only a few days to him because his love for her was so great.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Finally Jacob said to Laban, \"Give me my wife, for my time of service is up. I want to have marital relations with her.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> So Laban invited all the people of that place and prepared a feast. </VERS>\n\t\t\t<VERS vnumber=\"23\"> In the evening he brought his daughter Leah to Jacob, and Jacob had marital relations with her.</VERS>\n\t\t\t<VERS vnumber=\"24\"> (Laban gave his female servant Zilpah to his daughter Leah to be her servant.)</VERS>\n\t\t\t<VERS vnumber=\"25\"> In the morning Jacob discovered it was Leah! So Jacob said to Laban, \"What in the world have you done to me! Didn't I work for you in exchange for Rachel? Why have you tricked me?\" </VERS>\n\t\t\t<VERS vnumber=\"26\"> \"It is not our custom here,\" Laban replied, \"to give the younger daughter in marriage before the firstborn. </VERS>\n\t\t\t<VERS vnumber=\"27\"> Complete my older daughter's bridal week. Then we will give you the younger one too, in exchange for seven more years of work.\"</VERS>\n\t\t\t<VERS vnumber=\"28\"> Jacob did as Laban said. When Jacob completed Leah's bridal week, Laban gave him his daughter Rachel to be his wife.</VERS>\n\t\t\t<VERS vnumber=\"29\"> (Laban gave his female servant Bilhah to his daughter Rachel to be her servant.)</VERS>\n\t\t\t<VERS vnumber=\"30\"> Jacob had marital relations with Rachel as well. He loved Rachel more than Leah, so he worked for Laban for seven more years.</VERS>\n\t\t\t<VERS vnumber=\"31\"> When the LORD saw that Leah was unloved, he enabled her to become pregnant while Rachel remained childless. </VERS>\n\t\t\t<VERS vnumber=\"32\"> So Leah became pregnant and gave birth to a son. She named him Reuben, for she said, \"The LORD has looked with pity on my oppressed condition. Surely my husband will love me now.\"</VERS>\n\t\t\t<VERS vnumber=\"33\"> She became pregnant again and had another son. She said, \"Because the LORD heard that I was unloved, he gave me this one too.\" So she named him Simeon.</VERS>\n\t\t\t<VERS vnumber=\"34\"> She became pregnant again and had another son. She said, \"Now this time my husband will show me affection, because I have given birth to three sons for him.\" That is why he was named Levi.</VERS>\n\t\t\t<VERS vnumber=\"35\"> She became pregnant again and had another son. She said, \"This time I will praise the LORD.\" That is why she named him Judah. Then she stopped having children.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"30\">\n\t\t\t<VERS vnumber=\"1\"> When Rachel saw that she could not give Jacob children, she became jealous of her sister. She said to Jacob, \"Give me children or I'll die!\" </VERS>\n\t\t\t<VERS vnumber=\"2\"> Jacob became furious with Rachel and exclaimed, \"Am I in the place of God, who has kept you from having children?\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> She replied, \"Here is my servant Bilhah! Have sexual relations with her so that she can bear children for me and I can have a family through her.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> So Rachel gave him her servant Bilhah as a wife, and Jacob had marital relations with her. </VERS>\n\t\t\t<VERS vnumber=\"5\"> Bilhah became pregnant and gave Jacob a son.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Then Rachel said, \"God has vindicated me. He has responded to my prayer and given me a son.\" That is why she named him Dan.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Bilhah, Rachel's servant, became pregnant again and gave Jacob another son.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Then Rachel said, \"I have fought a desperate struggle with my sister, but I have won.\" So she named him Naphtali.</VERS>\n\t\t\t<VERS vnumber=\"9\"> When Leah saw that she had stopped having children, she gave her servant Zilpah to Jacob as a wife. </VERS>\n\t\t\t<VERS vnumber=\"10\"> Soon Leah's servant Zilpah gave Jacob a son.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Leah said, \"How fortunate!\" So she named him Gad.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Then Leah's servant Zilpah gave Jacob another son.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Leah said, \"How happy I am, for women will call me happy!\" So she named him Asher.</VERS>\n\t\t\t<VERS vnumber=\"14\"> At the time of the wheat harvest Reuben went out and found some mandrake plants in a field and brought them to his mother Leah. Rachel said to Leah, \"Give me some of your son's mandrakes.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> But Leah replied, \"Wasn't it enough that you've taken away my husband? Would you take away my son's mandrakes too?\" \"All right,\" Rachel said, \"he may sleep with you tonight in exchange for your son's mandrakes.\" </VERS>\n\t\t\t<VERS vnumber=\"16\"> When Jacob came in from the fields that evening, Leah went out to meet him and said, \"You must sleep with me because I have paid for your services with my son's mandrakes.\" So he had marital relations with her that night. </VERS>\n\t\t\t<VERS vnumber=\"17\"> God paid attention to Leah; she became pregnant and gave Jacob a son for the fifth time.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Then Leah said, \"God has granted me a reward because I gave my servant to my husband as a wife.\" So she named him Issachar.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Leah became pregnant again and gave Jacob a son for the sixth time.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Then Leah said, \"God has given me a good gift. Now my husband will honor me because I have given him six sons.\" So she named him Zebulun.</VERS>\n\t\t\t<VERS vnumber=\"21\"> After that she gave birth to a daughter and named her Dinah.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Then God took note of Rachel. He paid attention to her and enabled her to become pregnant.</VERS>\n\t\t\t<VERS vnumber=\"23\"> She became pregnant and gave birth to a son. Then she said, \"God has taken away my shame.\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> She named him Joseph, saying, \"May the LORD give me yet another son.\"</VERS>\n\t\t\t<VERS vnumber=\"25\"> After Rachel had given birth to Joseph, Jacob said to Laban, \"Send me on my way so that I can go home to my own country.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Let me take my wives and my children whom I have acquired by working for you. Then I'll depart, because you know how hard I've worked for you.\"</VERS>\n\t\t\t<VERS vnumber=\"27\"> But Laban said to him, \"If I have found favor in your sight, please stay here, for I have learned by divination that the LORD has blessed me on account of you.\" </VERS>\n\t\t\t<VERS vnumber=\"28\"> He added, \"Just name your wages, I'll pay whatever you want.\"</VERS>\n\t\t\t<VERS vnumber=\"29\"> \"You know how I have worked for you,\" Jacob replied, \"and how well your livestock have fared under my care.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Indeed, you had little before I arrived, but now your possessions have increased many times over. The LORD has blessed you wherever I worked. But now, how long must it be before I do something for my own family too?\"</VERS>\n\t\t\t<VERS vnumber=\"31\"> So Laban asked, \"What should I give you?\" \"You don't need to give me a thing,\" Jacob replied, \"but if you agree to this one condition, I will continue to care for your flocks and protect them: </VERS>\n\t\t\t<VERS vnumber=\"32\"> Let me walk among all your flocks today and remove from them every speckled or spotted sheep, every dark-colored lamb, and the spotted or speckled goats. These animals will be my wages.</VERS>\n\t\t\t<VERS vnumber=\"33\"> My integrity will testify for me later on. When you come to verify that I've taken only the wages we agreed on, if I have in my possession any goat that is not speckled or spotted or any sheep that is not dark-colored, it will be considered stolen.\"</VERS>\n\t\t\t<VERS vnumber=\"34\"> \"Agreed!\" said Laban, \"It will be as you say.\"</VERS>\n\t\t\t<VERS vnumber=\"35\"> So that day Laban removed the male goats that were streaked or spotted, all the female goats that were speckled or spotted (all that had any white on them), and all the dark-colored lambs, and put them in the care of his sons. </VERS>\n\t\t\t<VERS vnumber=\"36\"> Then he separated them from Jacob by a three-day journey, while Jacob was taking care of the rest of Laban's flocks.</VERS>\n\t\t\t<VERS vnumber=\"37\"> But Jacob took fresh-cut branches from poplar, almond, and plane trees. He made white streaks by peeling them, making the white inner wood in the branches visible.</VERS>\n\t\t\t<VERS vnumber=\"38\"> Then he set up the peeled branches in all the watering troughs where the flocks came to drink. He set up the branches in front of the flocks when they were in heat and came to drink.</VERS>\n\t\t\t<VERS vnumber=\"39\"> When the sheep mated in front of the branches, they gave birth to young that were streaked or speckled or spotted. </VERS>\n\t\t\t<VERS vnumber=\"40\"> Jacob removed these lambs, but he made the rest of the flock face the streaked and completely dark-colored animals in Laban's flock. So he made separate flocks for himself and did not mix them with Laban's flocks. </VERS>\n\t\t\t<VERS vnumber=\"41\"> When the stronger females were in heat, Jacob would set up the branches in the troughs in front of the flock, so they would mate near the branches. </VERS>\n\t\t\t<VERS vnumber=\"42\"> But if the animals were weaker, he did not set the branches there. So the weaker animals ended up belonging to Laban and the stronger animals to Jacob. </VERS>\n\t\t\t<VERS vnumber=\"43\"> In this way Jacob became extremely prosperous. He owned large flocks, male and female servants, camels, and donkeys.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"31\">\n\t\t\t<VERS vnumber=\"1\"> Jacob heard that Laban's sons were complaining, \"Jacob has taken everything that belonged to our father! He has gotten rich at our father's expense!\"</VERS>\n\t\t\t<VERS vnumber=\"2\"> When Jacob saw the look on Laban's face, he could tell his attitude toward him had changed.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The LORD said to Jacob, \"Return to the land of your fathers and to your relatives. I will be with you.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> So Jacob sent a message for Rachel and Leah to come to the field where his flocks were.</VERS>\n\t\t\t<VERS vnumber=\"5\"> There he said to them, \"I can tell that your father's attitude toward me has changed, but the God of my father has been with me. </VERS>\n\t\t\t<VERS vnumber=\"6\"> You know that I've worked for your father as hard as I could,</VERS>\n\t\t\t<VERS vnumber=\"7\"> but your father has humiliated me and changed my wages ten times. But God has not permitted him to do me any harm. </VERS>\n\t\t\t<VERS vnumber=\"8\"> If he said, 'The speckled animals will be your wage,' then the entire flock gave birth to speckled offspring. But if he said, 'The streaked animals will be your wage,' then the entire flock gave birth to streaked offspring.</VERS>\n\t\t\t<VERS vnumber=\"9\"> In this way God has snatched away your father's livestock and given them to me.</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"Once during breeding season I saw in a dream that the male goats mating with the flock were streaked, speckled, and spotted. </VERS>\n\t\t\t<VERS vnumber=\"11\"> In the dream the angel of God said to me, 'Jacob!' 'Here I am!' I replied.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Then he said, 'Observe that all the male goats mating with the flock are streaked, speckled, or spotted, for I have observed all that Laban has done to you. </VERS>\n\t\t\t<VERS vnumber=\"13\"> I am the God of Bethel, where you anointed the sacred stone and made a vow to me. Now leave this land immediately and return to your native land.'\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> Then Rachel and Leah replied to him, \"Do we still have any portion or inheritance in our father's house? </VERS>\n\t\t\t<VERS vnumber=\"15\"> Hasn't he treated us like foreigners? He not only sold us, but completely wasted the money paid for us!</VERS>\n\t\t\t<VERS vnumber=\"16\"> Surely all the wealth that God snatched away from our father belongs to us and to our children. So now do everything God has told you.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> So Jacob immediately put his children and his wives on the camels.</VERS>\n\t\t\t<VERS vnumber=\"18\"> He took away all the livestock he had acquired in Paddan Aram and all his moveable property that he had accumulated. Then he set out toward the land of Canaan to return to his father Isaac.</VERS>\n\t\t\t<VERS vnumber=\"19\"> While Laban had gone to shear his sheep, Rachel stole the household idols that belonged to her father. </VERS>\n\t\t\t<VERS vnumber=\"20\"> Jacob also deceived Laban the Aramean by not telling him that he was leaving.</VERS>\n\t\t\t<VERS vnumber=\"21\"> He left with all he owned. He quickly crossed the Euphrates River and headed for the hill country of Gilead.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Three days later Laban discovered Jacob had left.</VERS>\n\t\t\t<VERS vnumber=\"23\"> So he took his relatives with him and pursued Jacob for seven days. He caught up with him in the hill country of Gilead. </VERS>\n\t\t\t<VERS vnumber=\"24\"> But God came to Laban the Aramean in a dream at night and warned him, \"Be careful that you neither bless nor curse Jacob.\"</VERS>\n\t\t\t<VERS vnumber=\"25\"> Laban overtook Jacob, and when Jacob pitched his tent in the hill country of Gilead, Laban and his relatives set up camp there too.</VERS>\n\t\t\t<VERS vnumber=\"26\"> \"What have you done?\" Laban demanded of Jacob. \"You've deceived me and carried away my daughters as if they were captives of war!</VERS>\n\t\t\t<VERS vnumber=\"27\"> Why did you run away secretly and deceive me? Why didn't you tell me so I could send you off with a celebration complete with singing, tambourines, and harps?</VERS>\n\t\t\t<VERS vnumber=\"28\"> You didn't even allow me to kiss my daughters and my grandchildren good-bye. You have acted foolishly! </VERS>\n\t\t\t<VERS vnumber=\"29\"> I have the power to do you harm, but the God of your father told me last night, 'Be careful that you neither bless nor curse Jacob.'</VERS>\n\t\t\t<VERS vnumber=\"30\"> Now I understand that you have gone away because you longed desperately for your father's house. Yet why did you steal my gods?\"</VERS>\n\t\t\t<VERS vnumber=\"31\"> \"I left secretly because I was afraid!\" Jacob replied to Laban. \"I thought you might take your daughters away from me by force.</VERS>\n\t\t\t<VERS vnumber=\"32\"> Whoever has taken your gods will be put to death! In the presence of our relatives identify whatever is yours and take it.\" (Now Jacob did not know that Rachel had stolen them.)</VERS>\n\t\t\t<VERS vnumber=\"33\"> So Laban entered Jacob's tent, and Leah's tent, and the tent of the two female servants, but he did not find the idols. Then he left Leah's tent and entered Rachel's.</VERS>\n\t\t\t<VERS vnumber=\"34\"> (Now Rachel had taken the idols and put them inside her camel's saddle and sat on them.) Laban searched the whole tent, but did not find them.</VERS>\n\t\t\t<VERS vnumber=\"35\"> Rachel said to her father, \"Don't be angry, my lord. I cannot stand up in your presence because I am having my period.\" So he searched thoroughly, but did not find the idols.</VERS>\n\t\t\t<VERS vnumber=\"36\"> Jacob became angry and argued with Laban. \"What did I do wrong?\" he demanded of Laban. \"What sin of mine prompted you to chase after me in hot pursuit?</VERS>\n\t\t\t<VERS vnumber=\"37\"> When you searched through all my goods, did you find anything that belonged to you? Set it here before my relatives and yours, and let them settle the dispute between the two of us!</VERS>\n\t\t\t<VERS vnumber=\"38\"> \"I have been with you for the past twenty years. Your ewes and female goats have not miscarried, nor have I eaten rams from your flocks.</VERS>\n\t\t\t<VERS vnumber=\"39\"> Animals torn by wild beasts I never brought to you; I always absorbed the loss myself. You always made me pay for every missing animal, whether it was taken by day or at night. </VERS>\n\t\t\t<VERS vnumber=\"40\"> I was consumed by scorching heat during the day and by piercing cold at night, and I went without sleep.</VERS>\n\t\t\t<VERS vnumber=\"41\"> This was my lot for twenty years in your house: I worked like a slave for you, fourteen years for your two daughters and six years for your flocks, but you changed my wages ten times!</VERS>\n\t\t\t<VERS vnumber=\"42\"> If the God of my father, the God of Abraham, the one whom Isaac fears, had not been with me, you would certainly have sent me away empty-handed! But God saw how I was oppressed and how hard I worked, and he rebuked you last night.\"</VERS>\n\t\t\t<VERS vnumber=\"43\"> Laban replied to Jacob, \"These women are my daughters, these children are my grandchildren, and these flocks are my flocks. All that you see belongs to me. But how can I harm these daughters of mine today or the children to whom they have given birth? </VERS>\n\t\t\t<VERS vnumber=\"44\"> So now, come, let's make a formal agreement, you and I, and it will be proof that we have made peace.\"</VERS>\n\t\t\t<VERS vnumber=\"45\"> So Jacob took a stone and set it up as a memorial pillar.</VERS>\n\t\t\t<VERS vnumber=\"46\"> Then he said to his relatives, \"Gather stones.\" So they brought stones and put them in a pile. They ate there by the pile of stones. </VERS>\n\t\t\t<VERS vnumber=\"47\"> Laban called it Jegar Sahadutha, but Jacob called it Galeed.</VERS>\n\t\t\t<VERS vnumber=\"48\"> Laban said, \"This pile of stones is a witness of our agreement today.\" That is why it was called Galeed. </VERS>\n\t\t\t<VERS vnumber=\"49\"> It was also called Mizpah because he said, \"May the LORD watch between us when we are out of sight of one another.</VERS>\n\t\t\t<VERS vnumber=\"50\"> If you mistreat my daughters or if you take wives besides my daughters, although no one else is with us, realize that God is witness to your actions.\"</VERS>\n\t\t\t<VERS vnumber=\"51\"> \"Here is this pile of stones and this pillar I have set up between me and you,\" Laban said to Jacob.</VERS>\n\t\t\t<VERS vnumber=\"52\"> \"This pile of stones and the pillar are reminders that I will not pass beyond this pile to come to harm you and that you will not pass beyond this pile and this pillar to come to harm me.</VERS>\n\t\t\t<VERS vnumber=\"53\"> May the God of Abraham and the god of Nahor, the gods of their father, judge between us.\" Jacob took an oath by the God whom his father Isaac feared.</VERS>\n\t\t\t<VERS vnumber=\"54\"> Then Jacob offered a sacrifice on the mountain and invited his relatives to eat the meal. They ate the meal and spent the night on the mountain.</VERS>\n\t\t\t<VERS vnumber=\"55\">  Early in the morning Laban kissed his grandchildren and his daughters goodbye and blessed them. Then Laban left and returned home.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"32\">\n\t\t\t<VERS vnumber=\"1\"> So Jacob went on his way and the angels of God met him. </VERS>\n\t\t\t<VERS vnumber=\"2\"> When Jacob saw them, he exclaimed, \"This is the camp of God!\" So he named that place Mahanaim.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Jacob sent messengers on ahead to his brother Esau in the land of Seir, the region of Edom.</VERS>\n\t\t\t<VERS vnumber=\"4\"> He commanded them, \"This is what you must say to my lord Esau: 'This is what your servant Jacob says: I have been staying with Laban until now.</VERS>\n\t\t\t<VERS vnumber=\"5\"> I have oxen, donkeys, sheep, and male and female servants. I have sent this message to inform my lord, so that I may find favor in your sight.'\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> The messengers returned to Jacob and said, \"We went to your brother Esau. He is coming to meet you and has four hundred men with him.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> Jacob was very afraid and upset. So he divided the people who were with him into two camps, as well as the flocks, herds, and camels.</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"If Esau attacks one camp,\" he thought, \"then the other camp will be able to escape.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> Then Jacob prayed, \"O God of my father Abraham, God of my father Isaac, O LORD, you said to me, 'Return to your land and to your relatives and I will make you prosper.'</VERS>\n\t\t\t<VERS vnumber=\"10\"> I am not worthy of all the faithful love you have shown your servant. With only my walking stick I crossed the Jordan, but now I have become two camps. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Rescue me, I pray, from the hand of my brother Esau, for I am afraid he will come and attack me, as well as the mothers with their children.</VERS>\n\t\t\t<VERS vnumber=\"12\"> But you said, 'I will certainly make you prosper and will make your descendants like the sand on the seashore, too numerous to count.'\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> Jacob stayed there that night. Then he sent as a gift to his brother Esau </VERS>\n\t\t\t<VERS vnumber=\"14\"> two hundred female goats and twenty male goats, two hundred ewes and twenty rams,</VERS>\n\t\t\t<VERS vnumber=\"15\"> thirty female camels with their young, forty cows and ten bulls, and twenty female donkeys and ten male donkeys.</VERS>\n\t\t\t<VERS vnumber=\"16\"> He entrusted them to his servants, who divided them into herds. He told his servants, \"Pass over before me, and keep some distance between one herd and the next.\" </VERS>\n\t\t\t<VERS vnumber=\"17\"> He instructed the servant leading the first herd, \"When my brother Esau meets you and asks, 'To whom do you belong? Where are you going? Whose herds are you driving?'</VERS>\n\t\t\t<VERS vnumber=\"18\"> then you must say, 'They belong to your servant Jacob. They have been sent as a gift to my lord Esau. In fact Jacob himself is behind us.'\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> He also gave these instructions to the second and third servants, as well as all those who were following the herds, saying, \"You must say the same thing to Esau when you meet him.</VERS>\n\t\t\t<VERS vnumber=\"20\"> You must also say, 'In fact your servant Jacob is behind us.'\" Jacob thought, \"I will first appease him by sending a gift ahead of me. After that I will meet him. Perhaps he will accept me.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> So the gifts were sent on ahead of him while he spent that night in the camp.</VERS>\n\t\t\t<VERS vnumber=\"22\"> During the night Jacob quickly took his two wives, his two female servants, and his eleven sons and crossed the ford of the Jabbok.</VERS>\n\t\t\t<VERS vnumber=\"23\"> He took them and sent them across the stream along with all his possessions.</VERS>\n\t\t\t<VERS vnumber=\"24\"> So Jacob was left alone. Then a man wrestled with him until daybreak.</VERS>\n\t\t\t<VERS vnumber=\"25\"> When the man saw that he could not defeat Jacob, he struck the socket of his hip so the socket of Jacob's hip was dislocated while he wrestled with him.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Then the man said, \"Let me go, for the dawn is breaking.\" \"I will not let you go,\" Jacob replied, \"unless you bless me.\"</VERS>\n\t\t\t<VERS vnumber=\"27\"> The man asked him, \"What is your name?\" He answered, \"Jacob.\" </VERS>\n\t\t\t<VERS vnumber=\"28\"> \"No longer will your name be Jacob,\" the man told him, \"but Israel, because you have fought with God and with men and have prevailed.\"</VERS>\n\t\t\t<VERS vnumber=\"29\"> Then Jacob asked, \"Please tell me your name.\" \"Why do you ask my name?\" the man replied. Then he blessed Jacob there. </VERS>\n\t\t\t<VERS vnumber=\"30\"> So Jacob named the place Peniel, explaining, \"Certainly I have seen God face to face and have survived.\"</VERS>\n\t\t\t<VERS vnumber=\"31\"> The sun rose over him as he crossed over Penuel, but he was limping because of his hip. </VERS>\n\t\t\t<VERS vnumber=\"32\"> That is why to this day the Israelites do not eat the sinew which is attached to the socket of the hip, because he struck the socket of Jacob's hip near the attached sinew.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"33\">\n\t\t\t<VERS vnumber=\"1\"> Jacob looked up and saw that Esau was coming along with four hundred men. So he divided the children among Leah, Rachel, and the two female servants. </VERS>\n\t\t\t<VERS vnumber=\"2\"> He put the servants and their children in front, with Leah and her children behind them, and Rachel and Joseph behind them.</VERS>\n\t\t\t<VERS vnumber=\"3\"> But Jacob himself went on ahead of them, and he bowed toward the ground seven times as he approached his brother. </VERS>\n\t\t\t<VERS vnumber=\"4\"> But Esau ran to meet him, embraced him, hugged his neck, and kissed him. Then they both wept.</VERS>\n\t\t\t<VERS vnumber=\"5\"> When Esau looked up and saw the women and the children, he asked, \"Who are these people with you?\" Jacob replied, \"The children whom God has graciously given your servant.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> The female servants came forward with their children and bowed down.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Then Leah came forward with her children and they bowed down. Finally Joseph and Rachel came forward and bowed down.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Esau then asked, \"What did you intend by sending all these herds to meet me?\" Jacob replied, \"To find favor in your sight, my lord.\" </VERS>\n\t\t\t<VERS vnumber=\"9\"> But Esau said, \"I have plenty, my brother. Keep what belongs to you.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"No, please take them,\" Jacob said. \"If I have found favor in your sight, accept my gift from my hand. Now that I have seen your face and you have accepted me, it is as if I have seen the face of God.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Please take my present that was brought to you, for God has been generous to me and I have all I need.\" When Jacob urged him, he took it.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Then Esau said, \"Let's be on our way! I will go in front of you.\" </VERS>\n\t\t\t<VERS vnumber=\"13\"> But Jacob said to him, \"My lord knows that the children are young, and that I have to look after the sheep and cattle that are nursing their young. If they are driven too hard for even a single day, all the animals will die. </VERS>\n\t\t\t<VERS vnumber=\"14\"> Let my lord go on ahead of his servant. I will travel more slowly, at the pace of the herds and the children, until I come to my lord at Seir.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> So Esau said, \"Let me leave some of my men with you.\" \"Why do that?\" Jacob replied. \"My lord has already been kind enough to me.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> So that same day Esau made his way back to Seir. </VERS>\n\t\t\t<VERS vnumber=\"17\"> But Jacob traveled to Succoth where he built himself a house and made shelters for his livestock. That is why the place was called Succoth.</VERS>\n\t\t\t<VERS vnumber=\"18\"> After he left Paddan Aram, Jacob came safely to the city of Shechem in the land of Canaan, and he camped near the city. </VERS>\n\t\t\t<VERS vnumber=\"19\"> Then he purchased the portion of the field where he had pitched his tent; he bought it from the sons of Hamor, Shechem's father, for a hundred pieces of money.</VERS>\n\t\t\t<VERS vnumber=\"20\"> There he set up an altar and called it \"The God of Israel is God.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"34\">\n\t\t\t<VERS vnumber=\"1\"> Now Dinah, Leah's daughter whom she bore to Jacob, went to meet the young women of the land. </VERS>\n\t\t\t<VERS vnumber=\"2\"> When Shechem son of Hamor the Hivite, who ruled that area, saw her, he grabbed her, forced himself on her, and sexually assaulted her.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Then he became very attached to Dinah, Jacob's daughter. He fell in love with the young woman and spoke romantically to her.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Shechem said to his father Hamor, \"Acquire this young girl as my wife.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> When Jacob heard that Shechem had violated his daughter Dinah, his sons were with the livestock in the field. So Jacob remained silent until they came in.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Then Shechem's father Hamor went to speak with Jacob about Dinah.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Now Jacob's sons had come in from the field when they heard the news. They were offended and very angry because Shechem had disgraced Israel by sexually assaulting Jacob's daughter, a crime that should not be committed.</VERS>\n\t\t\t<VERS vnumber=\"8\"> But Hamor made this appeal to them: \"My son Shechem is in love with your daughter. Please give her to him as his wife. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Intermarry with us. Let us marry your daughters, and take our daughters as wives for yourselves.</VERS>\n\t\t\t<VERS vnumber=\"10\"> You may live among us, and the land will be open to you. Live in it, travel freely in it, and acquire property in it.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> Then Shechem said to Dinah's father and brothers, \"Let me find favor in your sight, and whatever you require of me I'll give.</VERS>\n\t\t\t<VERS vnumber=\"12\"> You can make the bride price and the gift I must bring very expensive, and I'll give whatever you ask of me. Just give me the young woman as my wife!\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> Jacob's sons answered Shechem and his father Hamor deceitfully when they spoke because Shechem had violated their sister Dinah. </VERS>\n\t\t\t<VERS vnumber=\"14\"> They said to them, \"We cannot give our sister to a man who is not circumcised, for it would be a disgrace to us. </VERS>\n\t\t\t<VERS vnumber=\"15\"> We will give you our consent on this one condition: You must become like us by circumcising all your males. </VERS>\n\t\t\t<VERS vnumber=\"16\"> Then we will give you our daughters to marry, and we will take your daughters as wives for ourselves, and we will live among you and become one people. </VERS>\n\t\t\t<VERS vnumber=\"17\"> But if you do not agree to our terms by being circumcised, then we will take our sister and depart.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> Their offer pleased Hamor and his son Shechem.</VERS>\n\t\t\t<VERS vnumber=\"19\"> The young man did not delay in doing what they asked because he wanted Jacob's daughter Dinah badly. (Now he was more important than anyone in his father's household.)</VERS>\n\t\t\t<VERS vnumber=\"20\"> So Hamor and his son Shechem went to the gate of their city and spoke to the men of their city, </VERS>\n\t\t\t<VERS vnumber=\"21\"> \"These men are at peace with us. So let them live in the land and travel freely in it, for the land is wide enough for them. We will take their daughters for wives, and we will give them our daughters to marry.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Only on this one condition will these men consent to live with us and become one people: They demand that every male among us be circumcised just as they are circumcised. </VERS>\n\t\t\t<VERS vnumber=\"23\"> If we do so, won't their livestock, their property, and all their animals become ours? So let's consent to their demand, so they will live among us.\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> All the men who assembled at the city gate agreed with Hamor and his son Shechem. Every male who assembled at the city gate was circumcised. </VERS>\n\t\t\t<VERS vnumber=\"25\"> In three days, when they were still in pain, two of Jacob's sons, Simeon and Levi, Dinah's brothers, each took his sword and went to the unsuspecting city and slaughtered every male. </VERS>\n\t\t\t<VERS vnumber=\"26\"> They killed Hamor and his son Shechem with the sword, took Dinah from Shechem's house, and left.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Jacob's sons killed them and looted the city because their sister had been violated.</VERS>\n\t\t\t<VERS vnumber=\"28\"> They took their flocks, herds, and donkeys, as well as everything in the city and in the surrounding fields.</VERS>\n\t\t\t<VERS vnumber=\"29\"> They captured as plunder all their wealth, all their little ones, and their wives, including everything in the houses.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Then Jacob said to Simeon and Levi, \"You have brought ruin on me by making me a foul odor among the inhabitants of the land, among the Canaanites and the Perizzites. I am few in number; they will join forces against me and attack me, and both I and my family will be destroyed!\"</VERS>\n\t\t\t<VERS vnumber=\"31\"> But Simeon and Levi replied, \"Should he treat our sister like a common prostitute?\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"35\">\n\t\t\t<VERS vnumber=\"1\"> Then God said to Jacob, \"Go up at once to Bethel and live there. Make an altar there to God, who appeared to you when you fled from your brother Esau.\"</VERS>\n\t\t\t<VERS vnumber=\"2\"> So Jacob told his household and all who were with him, \"Get rid of the foreign gods you have among you. Purify yourselves and change your clothes.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Let us go up at once to Bethel. Then I will make an altar there to God, who responded to me in my time of distress and has been with me wherever I went.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> So they gave Jacob all the foreign gods that were in their possession and the rings that were in their ears. Jacob buried them under the oak near Shechem</VERS>\n\t\t\t<VERS vnumber=\"5\"> and they started on their journey. The surrounding cities were afraid of God, and they did not pursue the sons of Jacob.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Jacob and all those who were with him arrived at Luz (that is, Bethel) in the land of Canaan.</VERS>\n\t\t\t<VERS vnumber=\"7\"> He built an altar there and named the place El Bethel because there God had revealed himself to him when he was fleeing from his brother. </VERS>\n\t\t\t<VERS vnumber=\"8\"> (Deborah, Rebekah's nurse, died and was buried under the oak below Bethel; thus it was named Oak of Weeping.)</VERS>\n\t\t\t<VERS vnumber=\"9\"> God appeared to Jacob again after he returned from Paddan Aram and blessed him.</VERS>\n\t\t\t<VERS vnumber=\"10\"> God said to him, \"Your name is Jacob, but your name will no longer be called Jacob; Israel will be your name.\" So God named him Israel.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Then God said to him, \"I am the sovereign God. Be fruitful and multiply! A nation, even a company of nations, will descend from you; kings will be among your descendants!</VERS>\n\t\t\t<VERS vnumber=\"12\"> The land I gave to Abraham and Isaac I will give to you. To your descendants I will also give this land.\" </VERS>\n\t\t\t<VERS vnumber=\"13\"> Then God went up from the place where he spoke with him. </VERS>\n\t\t\t<VERS vnumber=\"14\"> So Jacob set up a sacred stone pillar in the place where God spoke with him. He poured out a drink offering on it, and then he poured oil on it.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Jacob named the place where God spoke with him Bethel.</VERS>\n\t\t\t<VERS vnumber=\"16\"> They traveled on from Bethel, and when Ephrath was still some distance away, Rachel went into labor, and her labor was hard.</VERS>\n\t\t\t<VERS vnumber=\"17\"> When her labor was at its hardest, the midwife said to her, \"Don't be afraid, for you are having another son.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> With her dying breath, she named him Ben-Oni. But his father called him Benjamin instead.</VERS>\n\t\t\t<VERS vnumber=\"19\"> So Rachel died and was buried on the way to Ephrath (that is, Bethlehem).</VERS>\n\t\t\t<VERS vnumber=\"20\"> Jacob set up a marker over her grave; it is the Marker of Rachel's Grave to this day.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Then Israel traveled on and pitched his tent beyond Migdal Eder.</VERS>\n\t\t\t<VERS vnumber=\"22\"> While Israel was living in that land, Reuben had sexual relations with Bilhah, his father's concubine, and Israel heard about it. Jacob had twelve sons:</VERS>\n\t\t\t<VERS vnumber=\"23\"> The sons of Leah were Reuben, Jacob's firstborn, as well as Simeon, Levi, Judah, Issachar, and Zebulun.</VERS>\n\t\t\t<VERS vnumber=\"24\"> The sons of Rachel were Joseph and Benjamin.</VERS>\n\t\t\t<VERS vnumber=\"25\"> The sons of Bilhah, Rachel's servant, were Dan and Naphtali.</VERS>\n\t\t\t<VERS vnumber=\"26\"> The sons of Zilpah, Leah's servant, were Gad and Asher. These were the sons of Jacob who were born to him in Paddan Aram.</VERS>\n\t\t\t<VERS vnumber=\"27\"> So Jacob came back to his father Isaac in Mamre, to Kiriath Arba (that is, Hebron), where Abraham and Isaac had stayed.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Isaac lived to be 180 years old.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Then Isaac breathed his last and joined his ancestors. He died an old man who had lived a full life. His sons Esau and Jacob buried him.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"36\">\n\t\t\t<VERS vnumber=\"1\"> What follows is the account of Esau (also known as Edom).</VERS>\n\t\t\t<VERS vnumber=\"2\"> Esau took his wives from the Canaanites: Adah the daughter of Elon the Hittite, and Oholibamah the daughter of Anah and granddaughter of Zibeon the Hivite, </VERS>\n\t\t\t<VERS vnumber=\"3\"> in addition to Basemath the daughter of Ishmael and sister of Nebaioth.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Adah bore Eliphaz to Esau, Basemath bore Reuel,</VERS>\n\t\t\t<VERS vnumber=\"5\"> and Oholibamah bore Jeush, Jalam, and Korah. These were the sons of Esau who were born to him in the land of Canaan.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Esau took his wives, his sons, his daughters, all the people in his household, his livestock, his animals, and all his possessions which he had acquired in the land of Canaan and went to a land some distance away from Jacob his brother </VERS>\n\t\t\t<VERS vnumber=\"7\"> because they had too many possessions to be able to stay together and the land where they had settled was not able to support them because of their livestock. </VERS>\n\t\t\t<VERS vnumber=\"8\"> So Esau (also known as Edom) lived in the hill country of Seir.</VERS>\n\t\t\t<VERS vnumber=\"9\"> This is the account of Esau, the father of the Edomites, in the hill country of Seir.</VERS>\n\t\t\t<VERS vnumber=\"10\"> These were the names of Esau's sons: Eliphaz, the son of Esau's wife Adah, and Reuel, the son of Esau's wife Basemath.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The sons of Eliphaz were: Teman, Omar, Zepho, Gatam, and Kenaz.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Timna, a concubine of Esau's son Eliphaz, bore Amalek to Eliphaz. These were the sons of Esau's wife Adah.</VERS>\n\t\t\t<VERS vnumber=\"13\"> These were the sons of Reuel: Nahath, Zerah, Shammah, and Mizzah. These were the sons of Esau's wife Basemath.</VERS>\n\t\t\t<VERS vnumber=\"14\"> These were the sons of Esau's wife Oholibamah the daughter of Anah and granddaughter of Zibeon: She bore Jeush, Jalam, and Korah to Esau.</VERS>\n\t\t\t<VERS vnumber=\"15\"> These were the chiefs among the descendants of Esau, the sons of Eliphaz, Esau's firstborn: chief Teman, chief Omar, chief Zepho, chief Kenaz, </VERS>\n\t\t\t<VERS vnumber=\"16\"> chief Korah, chief Gatam, chief Amalek. These were the chiefs descended from Eliphaz in the land of Edom; these were the sons of Adah.</VERS>\n\t\t\t<VERS vnumber=\"17\"> These were the sons of Esau's son Reuel: chief Nahath, chief Zerah, chief Shammah, chief Mizzah. These were the chiefs descended from Reuel in the land of Edom; these were the sons of Esau's wife Basemath.</VERS>\n\t\t\t<VERS vnumber=\"18\"> These were the sons of Esau's wife Oholibamah: chief Jeush, chief Jalam, chief Korah. These were the chiefs descended from Esau's wife Oholibamah, the daughter of Anah.</VERS>\n\t\t\t<VERS vnumber=\"19\"> These were the sons of Esau (also known as Edom), and these were their chiefs.</VERS>\n\t\t\t<VERS vnumber=\"20\"> These were the sons of Seir the Horite, who were living in the land: Lotan, Shobal, Zibeon, Anah, </VERS>\n\t\t\t<VERS vnumber=\"21\"> Dishon, Ezer, and Dishan. These were the chiefs of the Horites, the descendants of Seir in the land of Edom.</VERS>\n\t\t\t<VERS vnumber=\"22\"> The sons of Lotan were Hori and Homam; Lotan's sister was Timna.</VERS>\n\t\t\t<VERS vnumber=\"23\"> These were the sons of Shobal: Alvan, Manahath, Ebal, Shepho, and Onam.</VERS>\n\t\t\t<VERS vnumber=\"24\"> These were the sons of Zibeon: Aiah and Anah (who discovered the hot springs in the wilderness as he pastured the donkeys of his father Zibeon).</VERS>\n\t\t\t<VERS vnumber=\"25\"> These were the children of Anah: Dishon and Oholibamah, the daughter of Anah.</VERS>\n\t\t\t<VERS vnumber=\"26\"> These were the sons of Dishon: Hemdan, Eshban, Ithran, and Keran.</VERS>\n\t\t\t<VERS vnumber=\"27\"> These were the sons of Ezer: Bilhan, Zaavan, and Akan.</VERS>\n\t\t\t<VERS vnumber=\"28\"> These were the sons of Dishan: Uz and Aran.</VERS>\n\t\t\t<VERS vnumber=\"29\"> These were the chiefs of the Horites: chief Lotan, chief Shobal, chief Zibeon, chief Anah,</VERS>\n\t\t\t<VERS vnumber=\"30\"> chief Dishon, chief Ezer, chief Dishan. These were the chiefs of the Horites, according to their chief lists in the land of Seir.</VERS>\n\t\t\t<VERS vnumber=\"31\"> These were the kings who reigned in the land of Edom before any king ruled over the Israelites:</VERS>\n\t\t\t<VERS vnumber=\"32\"> Bela the son of Beor reigned in Edom; the name of his city was Dinhabah.</VERS>\n\t\t\t<VERS vnumber=\"33\"> When Bela died, Jobab the son of Zerah from Bozrah reigned in his place.</VERS>\n\t\t\t<VERS vnumber=\"34\"> When Jobab died, Husham from the land of the Temanites reigned in his place.</VERS>\n\t\t\t<VERS vnumber=\"35\"> When Husham died, Hadad the son of Bedad, who defeated the Midianites in the land of Moab, reigned in his place; the name of his city was Avith.</VERS>\n\t\t\t<VERS vnumber=\"36\"> When Hadad died, Samlah from Masrekah reigned in his place.</VERS>\n\t\t\t<VERS vnumber=\"37\"> When Samlah died, Shaul from Rehoboth by the River reigned in his place.</VERS>\n\t\t\t<VERS vnumber=\"38\"> When Shaul died, Baal-Hanan the son of Achbor reigned in his place.</VERS>\n\t\t\t<VERS vnumber=\"39\"> When Baal-Hanan the son of Achbor died, Hadad reigned in his place; the name of his city was Pau. His wife's name was Mehetabel, the daughter of Matred, the daughter of Me-Zahab.</VERS>\n\t\t\t<VERS vnumber=\"40\"> These were the names of the chiefs of Esau, according to their families, according to their places, by their names: chief Timna, chief Alvah, chief Jetheth,</VERS>\n\t\t\t<VERS vnumber=\"41\"> chief Oholibamah, chief Elah, chief Pinon,</VERS>\n\t\t\t<VERS vnumber=\"42\"> chief Kenaz, chief Teman, chief Mibzar,</VERS>\n\t\t\t<VERS vnumber=\"43\"> chief Magdiel, chief Iram. These were the chiefs of Edom, according to their settlements in the land they possessed. This was Esau, the father of the Edomites.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"37\">\n\t\t\t<VERS vnumber=\"1\"> But Jacob lived in the land where his father had stayed, in the land of Canaan.</VERS>\n\t\t\t<VERS vnumber=\"2\"> This is the account of Jacob. Joseph, his seventeen-year-old son, was taking care of the flocks with his brothers. Now he was a youngster working with the sons of Bilhah and Zilpah, his father's wives. Joseph brought back a bad report about them to their father.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Now Israel loved Joseph more than all his sons because he was a son born to him late in life, and he made a special tunic for him. </VERS>\n\t\t\t<VERS vnumber=\"4\"> When Joseph's brothers saw that their father loved him more than any of them, they hated Joseph and were not able to speak to him kindly.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Joseph had a dream, and when he told his brothers about it, they hated him even more.</VERS>\n\t\t\t<VERS vnumber=\"6\"> He said to them, \"Listen to this dream I had:</VERS>\n\t\t\t<VERS vnumber=\"7\"> There we were, binding sheaves of grain in the middle of the field. Suddenly my sheaf rose up and stood upright and your sheaves surrounded my sheaf and bowed down to it!\" </VERS>\n\t\t\t<VERS vnumber=\"8\"> Then his brothers asked him, \"Do you really think you will rule over us or have dominion over us?\" They hated him even more because of his dream and because of what he said.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Then he had another dream, and told it to his brothers. \"Look,\" he said. \"I had another dream. The sun, the moon, and eleven stars were bowing down to me.\" </VERS>\n\t\t\t<VERS vnumber=\"10\"> When he told his father and his brothers, his father rebuked him, saying, \"What is this dream that you had? Will I, your mother, and your brothers really come and bow down to you?\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> His brothers were jealous of him, but his father kept in mind what Joseph said.</VERS>\n\t\t\t<VERS vnumber=\"12\"> When his brothers had gone to graze their father's flocks near Shechem,</VERS>\n\t\t\t<VERS vnumber=\"13\"> Israel said to Joseph, \"Your brothers are grazing the flocks near Shechem. Come, I will send you to them.\" \"I'm ready,\" Joseph replied.</VERS>\n\t\t\t<VERS vnumber=\"14\"> So Jacob said to him, \"Go now and check on the welfare of your brothers and of the flocks, and bring me word.\" So Jacob sent him from the valley of Hebron.</VERS>\n\t\t\t<VERS vnumber=\"15\"> When Joseph reached Shechem, a man found him wandering in the field, so the man asked him, \"What are you looking for?\" </VERS>\n\t\t\t<VERS vnumber=\"16\"> He replied, \"I'm looking for my brothers. Please tell me where they are grazing their flocks.\" </VERS>\n\t\t\t<VERS vnumber=\"17\"> The man said, \"They left this area, for I heard them say, 'Let's go to Dothan.'\" So Joseph went after his brothers and found them at Dothan.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Now Joseph's brothers saw him from a distance, and before he reached them, they plotted to kill him. </VERS>\n\t\t\t<VERS vnumber=\"19\"> They said to one another, \"Here comes this master of dreams!</VERS>\n\t\t\t<VERS vnumber=\"20\"> Come now, let's kill him, throw him into one of the cisterns, and then say that a wild animal ate him. Then we'll see how his dreams turn out!\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> When Reuben heard this, he rescued Joseph from their hands, saying, \"Let's not take his life!\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> Reuben continued, \"Don't shed blood! Throw him into this cistern that is here in the wilderness, but don't lay a hand on him.\" (Reuben said this so he could rescue Joseph from them and take him back to his father.)</VERS>\n\t\t\t<VERS vnumber=\"23\"> When Joseph reached his brothers, they stripped him of his tunic, the special tunic that he wore. </VERS>\n\t\t\t<VERS vnumber=\"24\"> Then they took him and threw him into the cistern. (Now the cistern was empty; there was no water in it.)</VERS>\n\t\t\t<VERS vnumber=\"25\"> When they sat down to eat their food, they looked up and saw a caravan of Ishmaelites coming from Gilead. Their camels were carrying spices, balm, and myrrh down to Egypt.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Then Judah said to his brothers, \"What profit is there if we kill our brother and cover up his blood?</VERS>\n\t\t\t<VERS vnumber=\"27\"> Come, let's sell him to the Ishmaelites, but let's not lay a hand on him, for after all, he is our brother, our own flesh.\" His brothers agreed.</VERS>\n\t\t\t<VERS vnumber=\"28\"> So when the Midianite merchants passed by, Joseph's brothers pulled him out of the cistern and sold him to the Ishmaelites for twenty pieces of silver. The Ishmaelites then took Joseph to Egypt.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Later Reuben returned to the cistern to find that Joseph was not in it! He tore his clothes, </VERS>\n\t\t\t<VERS vnumber=\"30\"> returned to his brothers, and said, \"The boy isn't there! And I, where can I go?\"</VERS>\n\t\t\t<VERS vnumber=\"31\"> So they took Joseph's tunic, killed a young goat, and dipped the tunic in the blood. </VERS>\n\t\t\t<VERS vnumber=\"32\"> Then they brought the special tunic to their father and said, \"We found this. Determine now whether it is your son's tunic or not.\"</VERS>\n\t\t\t<VERS vnumber=\"33\"> He recognized it and exclaimed, \"It is my son's tunic! A wild animal has eaten him! Joseph has surely been torn to pieces!\" </VERS>\n\t\t\t<VERS vnumber=\"34\"> Then Jacob tore his clothes, put on sackcloth, and mourned for his son many days. </VERS>\n\t\t\t<VERS vnumber=\"35\"> All his sons and daughters stood by him to console him, but he refused to be consoled. \"No,\" he said, \"I will go to the grave mourning my son.\" So Joseph's father wept for him.</VERS>\n\t\t\t<VERS vnumber=\"36\"> Now in Egypt the Midianites sold Joseph to Potiphar, one of Pharaoh's officials, the captain of the guard.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"38\">\n\t\t\t<VERS vnumber=\"1\"> At that time Judah left his brothers and stayed with an Adullamite man named Hirah.</VERS>\n\t\t\t<VERS vnumber=\"2\"> There Judah saw the daughter of a Canaanite man named Shua. Judah acquired her as a wife and had marital relations with her.</VERS>\n\t\t\t<VERS vnumber=\"3\"> She became pregnant and had a son. Judah named him Er. </VERS>\n\t\t\t<VERS vnumber=\"4\"> She became pregnant again and had another son, whom she named Onan.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Then she had yet another son, whom she named Shelah. She gave birth to him in Kezib.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Judah acquired a wife for Er his firstborn; her name was Tamar. </VERS>\n\t\t\t<VERS vnumber=\"7\"> But Er, Judah's firstborn, was evil in the LORD's sight, so the LORD killed him.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Then Judah said to Onan, \"Have sexual relations with your brother's wife and fulfill the duty of a brother-in-law to her so that you may raise up a descendant for your brother.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> But Onan knew that the child would not be considered his. So whenever he had sexual relations with his brother's wife, he withdrew prematurely so as not to give his brother a descendant. </VERS>\n\t\t\t<VERS vnumber=\"10\"> What he did was evil in the LORD's sight, so the LORD killed him too.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Then Judah said to his daughter-in-law Tamar, \"Live as a widow in your father's house until Shelah my son grows up.\" For he thought, \"I don't want him to die like his brothers.\" So Tamar went and lived in her father's house.</VERS>\n\t\t\t<VERS vnumber=\"12\"> After some time Judah's wife, the daughter of Shua, died. After Judah was consoled, he left for Timnah to visit his sheepshearers, along with his friend Hirah the Adullamite. </VERS>\n\t\t\t<VERS vnumber=\"13\"> Tamar was told, \"Look, your father-in-law is going up to Timnah to shear his sheep.\" </VERS>\n\t\t\t<VERS vnumber=\"14\"> So she removed her widow's clothes and covered herself with a veil. She wrapped herself and sat at the entrance to Enaim which is on the way to Timnah. (She did this because she saw that she had not been given to Shelah as a wife, even though he had now grown up.)</VERS>\n\t\t\t<VERS vnumber=\"15\"> When Judah saw her, he thought she was a prostitute because she had covered her face. </VERS>\n\t\t\t<VERS vnumber=\"16\"> He turned aside to her along the road and said, \"Come on! I want to have sex with you.\" (He did not realize it was his daughter-in-law.) She asked, \"What will you give me in exchange for having sex with you?\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> He replied, \"I'll send you a young goat from the flock.\" She asked, \"Will you give me a pledge until you send it?\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> He said, \"What pledge should I give you?\" She replied, \"Your seal, your cord, and the staff that's in your hand.\" So he gave them to her and had sex with her. She became pregnant by him. </VERS>\n\t\t\t<VERS vnumber=\"19\"> She left immediately, removed her veil, and put on her widow's clothes.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Then Judah had his friend Hirah the Adullamite take a young goat to get back from the woman the items he had given in pledge, but Hirah could not find her.</VERS>\n\t\t\t<VERS vnumber=\"21\"> He asked the men who were there, \"Where is the cult prostitute who was at Enaim by the road?\" But they replied, \"There has been no cult prostitute here.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> So he returned to Judah and said, \"I couldn't find her. Moreover, the men of the place said, 'There has been no cult prostitute here.'\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> Judah said, \"Let her keep the things for herself. Otherwise we will appear to be dishonest. I did indeed send this young goat, but you couldn't find her.\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> After three months Judah was told, \"Your daughter-in-law Tamar has turned to prostitution, and as a result she has become pregnant.\" Judah said, \"Bring her out and let her be burned!\"</VERS>\n\t\t\t<VERS vnumber=\"25\"> While they were bringing her out, she sent word to her father-in-law: \"I am pregnant by the man to whom these belong.\" Then she said, \"Identify the one to whom the seal, cord, and staff belong.\" </VERS>\n\t\t\t<VERS vnumber=\"26\"> Judah recognized them and said, \"She is more upright than I am, because I wouldn't give her to Shelah my son.\" He did not have sexual relations with her again.</VERS>\n\t\t\t<VERS vnumber=\"27\"> When it was time for her to give birth, there were twins in her womb.</VERS>\n\t\t\t<VERS vnumber=\"28\"> While she was giving birth, one child put out his hand, and the midwife took a scarlet thread and tied it on his hand, saying, \"This one came out first.\" </VERS>\n\t\t\t<VERS vnumber=\"29\"> But then he drew back his hand, and his brother came out before him. She said, \"How you have broken out of the womb!\" So he was named Perez.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Afterward his brother came out, the one who had the scarlet thread on his hand, and he was named Zerah.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"39\">\n\t\t\t<VERS vnumber=\"1\"> Now Joseph had been brought down to Egypt. An Egyptian named Potiphar, an official of Pharaoh and the captain of the guard, purchased him from the Ishmaelites who had brought him there. </VERS>\n\t\t\t<VERS vnumber=\"2\"> The LORD was with Joseph. He was successful and lived in the household of his Egyptian master. </VERS>\n\t\t\t<VERS vnumber=\"3\"> His master observed that the LORD was with him and that the LORD made everything he was doing successful.</VERS>\n\t\t\t<VERS vnumber=\"4\"> So Joseph found favor in his sight and became his personal attendant. Potiphar appointed Joseph overseer of his household and put him in charge of everything he owned. </VERS>\n\t\t\t<VERS vnumber=\"5\"> From the time Potiphar appointed him over his household and over all that he owned, the LORD blessed the Egyptian's household for Joseph's sake. The blessing of the LORD was on everything that he had, both in his house and in his fields.</VERS>\n\t\t\t<VERS vnumber=\"6\"> So Potiphar left everything he had in Joseph's care; he gave no thought to anything except the food he ate. Now Joseph was well built and good-looking.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Soon after these things, his master's wife took notice of Joseph and said, \"Have sex with me.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> But he refused, saying to his master's wife, \"Look, my master does not give any thought to his household with me here, and everything that he owns he has put into my care.</VERS>\n\t\t\t<VERS vnumber=\"9\"> There is no one greater in this household than I am. He has withheld nothing from me except you because you are his wife. So how could I do such a great evil and sin against God?\" </VERS>\n\t\t\t<VERS vnumber=\"10\"> Even though she continued to speak to Joseph day after day, he did not respond to her invitation to have sex with her.</VERS>\n\t\t\t<VERS vnumber=\"11\"> One day he went into the house to do his work when none of the household servants were there in the house. </VERS>\n\t\t\t<VERS vnumber=\"12\"> She grabbed him by his outer garment, saying, \"Have sex with me!\" But he left his outer garment in her hand and ran outside.</VERS>\n\t\t\t<VERS vnumber=\"13\"> When she saw that he had left his outer garment in her hand and had run outside,</VERS>\n\t\t\t<VERS vnumber=\"14\"> she called for her household servants and said to them, \"See, my husband brought in a Hebrew man to us to humiliate us. He tried to have sex with me, but I screamed loudly.</VERS>\n\t\t\t<VERS vnumber=\"15\"> When he heard me raise my voice and scream, he left his outer garment beside me and ran outside.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> So she laid his outer garment beside her until his master came home.</VERS>\n\t\t\t<VERS vnumber=\"17\"> This is what she said to him: \"That Hebrew slave you brought to us tried to humiliate me,</VERS>\n\t\t\t<VERS vnumber=\"18\"> but when I raised my voice and screamed, he left his outer garment and ran outside.\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> When his master heard his wife say, \"This is the way your slave treated me,\" he became furious.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Joseph's master took him and threw him into the prison, the place where the king's prisoners were confined. So he was there in the prison.</VERS>\n\t\t\t<VERS vnumber=\"21\"> But the LORD was with Joseph and showed him kindness. He granted him favor in the sight of the prison warden.</VERS>\n\t\t\t<VERS vnumber=\"22\"> The warden put all the prisoners under Joseph's care. He was in charge of whatever they were doing.</VERS>\n\t\t\t<VERS vnumber=\"23\"> The warden did not concern himself with anything that was in Joseph's care because the LORD was with him and whatever he was doing the LORD was making successful.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"40\">\n\t\t\t<VERS vnumber=\"1\"> After these things happened, the cupbearer to the king of Egypt and the royal baker offended their master, the king of Egypt. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Pharaoh was enraged with his two officials, the cupbearer and the baker, </VERS>\n\t\t\t<VERS vnumber=\"3\"> so he imprisoned them in the house of the captain of the guard in the same facility where Joseph was confined.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The captain of the guard appointed Joseph to be their attendant, and he served them. They spent some time in custody.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Both of them, the cupbearer and the baker of the king of Egypt, who were confined in the prison, had a dream the same night. Each man's dream had its own meaning.</VERS>\n\t\t\t<VERS vnumber=\"6\"> When Joseph came to them in the morning, he saw that they were looking depressed.</VERS>\n\t\t\t<VERS vnumber=\"7\"> So he asked Pharaoh's officials, who were with him in custody in his master's house, \"Why do you look so sad today?\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> They told him, \"We both had dreams, but there is no one to interpret them.\" Joseph responded, \"Don't interpretations belong to God? Tell them to me.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> So the chief cupbearer told his dream to Joseph: \"In my dream, there was a vine in front of me. </VERS>\n\t\t\t<VERS vnumber=\"10\"> On the vine there were three branches. As it budded, its blossoms opened and its clusters ripened into grapes.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Now Pharaoh's cup was in my hand, so I took the grapes, squeezed them into his cup, and put the cup in Pharaoh's hand.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> \"This is its meaning,\" Joseph said to him. \"The three branches represent three days. </VERS>\n\t\t\t<VERS vnumber=\"13\"> In three more days Pharaoh will reinstate you and restore you to your office. You will put Pharaoh's cup in his hand, just as you did before when you were cupbearer. </VERS>\n\t\t\t<VERS vnumber=\"14\"> But remember me when it goes well for you, and show me kindness. Make mention of me to Pharaoh and bring me out of this prison,</VERS>\n\t\t\t<VERS vnumber=\"15\"> for I really was kidnapped from the land of the Hebrews and I have done nothing wrong here for which they should put me in a dungeon.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> When the chief baker saw that the interpretation of the first dream was favorable, he said to Joseph, \"I also appeared in my dream and there were three baskets of white bread on my head. </VERS>\n\t\t\t<VERS vnumber=\"17\"> In the top basket there were baked goods of every kind for Pharaoh, but the birds were eating them from the basket that was on my head.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> Joseph replied, \"This is its meaning: The three baskets represent three days. </VERS>\n\t\t\t<VERS vnumber=\"19\"> In three more days Pharaoh will decapitate you and impale you on a pole. Then the birds will eat your flesh from you.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> On the third day it was Pharaoh's birthday, so he gave a feast for all his servants. He \"lifted up\" the head of the chief cupbearer and the head of the chief baker in the midst of his servants. </VERS>\n\t\t\t<VERS vnumber=\"21\"> He restored the chief cupbearer to his former position so that he placed the cup in Pharaoh's hand, </VERS>\n\t\t\t<VERS vnumber=\"22\"> but the chief baker he impaled, just as Joseph had predicted.</VERS>\n\t\t\t<VERS vnumber=\"23\"> But the chief cupbearer did not remember Joseph, he forgot him.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"41\">\n\t\t\t<VERS vnumber=\"1\"> At the end of two full years Pharaoh had a dream. As he was standing by the Nile, </VERS>\n\t\t\t<VERS vnumber=\"2\"> seven fine-looking, fat cows were coming up out of the Nile, and they grazed in the reeds. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Then seven bad-looking, thin cows were coming up after them from the Nile, and they stood beside the other cows at the edge of the river.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The bad-looking, thin cows ate the seven fine-looking, fat cows. Then Pharaoh woke up.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Then he fell asleep again and had a second dream: There were seven heads of grain growing on one stalk, healthy and good. </VERS>\n\t\t\t<VERS vnumber=\"6\"> Then seven heads of grain, thin and burned by the east wind, were sprouting up after them. </VERS>\n\t\t\t<VERS vnumber=\"7\"> The thin heads swallowed up the seven healthy and full heads. Then Pharaoh woke up and realized it was a dream.</VERS>\n\t\t\t<VERS vnumber=\"8\"> In the morning he was troubled, so he called for all the diviner-priests of Egypt and all its wise men. Pharaoh told them his dreams, but no one could interpret them for him.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Then the chief cupbearer said to Pharaoh, \"Today I recall my failures.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Pharaoh was enraged with his servants, and he put me in prison in the house of the captain of the guards, me and the chief baker.</VERS>\n\t\t\t<VERS vnumber=\"11\"> We each had a dream one night; each of us had a dream with its own meaning.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Now a young man, a Hebrew, a servant of the captain of the guards, was with us there. We told him our dreams, and he interpreted the meaning of each of our respective dreams for us.</VERS>\n\t\t\t<VERS vnumber=\"13\"> It happened just as he had said to us, Pharaoh restored me to my office, but he impaled the baker.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> Then Pharaoh summoned Joseph. So they brought him quickly out of the dungeon; he shaved himself, changed his clothes, and came before Pharaoh. </VERS>\n\t\t\t<VERS vnumber=\"15\"> Pharaoh said to Joseph, \"I had a dream, and there is no one who can interpret it. But I have heard about you, that you can interpret dreams.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> Joseph replied to Pharaoh, \"It is not within my power, but God will speak concerning the welfare of Pharaoh.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> Then Pharaoh said to Joseph, \"In my dream I was standing by the edge of the Nile. </VERS>\n\t\t\t<VERS vnumber=\"18\"> Then seven fat and fine-looking cows were coming up out of the Nile, and they grazed in the reeds.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Then seven other cows came up after them; they were scrawny, very bad-looking, and lean. I had never seen such bad-looking cows as these in all the land of Egypt! </VERS>\n\t\t\t<VERS vnumber=\"20\"> The lean, bad-looking cows ate up the seven fat cows. </VERS>\n\t\t\t<VERS vnumber=\"21\"> When they had eaten them, no one would have known that they had done so, for they were just as bad-looking as before. Then I woke up. </VERS>\n\t\t\t<VERS vnumber=\"22\"> I also saw in my dream seven heads of grain growing on one stalk, full and good. </VERS>\n\t\t\t<VERS vnumber=\"23\"> Then seven heads of grain, withered and thin and burned with the east wind, were sprouting up after them. </VERS>\n\t\t\t<VERS vnumber=\"24\"> The thin heads of grain swallowed up the seven good heads of grain. So I told all this to the diviner-priests, but no one could tell me its meaning.\"</VERS>\n\t\t\t<VERS vnumber=\"25\"> Then Joseph said to Pharaoh, \"Both dreams of Pharaoh have the same meaning. God has revealed to Pharaoh what he is about to do.</VERS>\n\t\t\t<VERS vnumber=\"26\"> The seven good cows represent seven years, and the seven good heads of grain represent seven years. Both dreams have the same meaning.</VERS>\n\t\t\t<VERS vnumber=\"27\"> The seven lean, bad-looking cows that came up after them represent seven years, as do the seven empty heads of grain burned with the east wind. They represent seven years of famine.</VERS>\n\t\t\t<VERS vnumber=\"28\"> This is just what I told Pharaoh: God has shown Pharaoh what he is about to do. </VERS>\n\t\t\t<VERS vnumber=\"29\"> Seven years of great abundance are coming throughout the whole land of Egypt.</VERS>\n\t\t\t<VERS vnumber=\"30\"> But seven years of famine will occur after them, and all the abundance will be forgotten in the land of Egypt. The famine will devastate the land. </VERS>\n\t\t\t<VERS vnumber=\"31\"> The previous abundance of the land will not be remembered because of the famine that follows, for the famine will be very severe.</VERS>\n\t\t\t<VERS vnumber=\"32\"> The dream was repeated to Pharaoh because the matter has been decreed by God, and God will make it happen soon.</VERS>\n\t\t\t<VERS vnumber=\"33\"> \"So now Pharaoh should look for a wise and discerning man and give him authority over all the land of Egypt.</VERS>\n\t\t\t<VERS vnumber=\"34\"> Pharaoh should do this, he should appoint officials throughout the land to collect one-fifth of the produce of the land of Egypt during the seven years of abundance.</VERS>\n\t\t\t<VERS vnumber=\"35\"> They should gather all the excess food during these good years that are coming. By Pharaoh's authority they should store up grain so the cities will have food, and they should preserve it.</VERS>\n\t\t\t<VERS vnumber=\"36\"> This food should be held in storage for the land in preparation for the seven years of famine that will occur throughout the land of Egypt. In this way the land will survive the famine.\"</VERS>\n\t\t\t<VERS vnumber=\"37\"> This advice made sense to Pharaoh and all his officials.</VERS>\n\t\t\t<VERS vnumber=\"38\"> So Pharaoh asked his officials, \"Can we find a man like Joseph, one in whom the Spirit of God is present?\"</VERS>\n\t\t\t<VERS vnumber=\"39\"> So Pharaoh said to Joseph, \"Because God has enabled you to know all this, there is no one as wise and discerning as you are! </VERS>\n\t\t\t<VERS vnumber=\"40\"> You will oversee my household, and all my people will submit to your commands. Only I, the king, will be greater than you.</VERS>\n\t\t\t<VERS vnumber=\"41\"> \"See here,\" Pharaoh said to Joseph, \"I place you in authority over all the land of Egypt.\"</VERS>\n\t\t\t<VERS vnumber=\"42\"> Then Pharaoh took his signet ring from his own hand and put it on Joseph's. He clothed him with fine linen clothes and put a gold chain around his neck. </VERS>\n\t\t\t<VERS vnumber=\"43\"> Pharaoh had him ride in the chariot used by his second-in-command, and they cried out before him, \"Kneel down!\" So he placed him over all the land of Egypt. </VERS>\n\t\t\t<VERS vnumber=\"44\"> Pharaoh also said to Joseph, \"I am Pharaoh, but without your permission no one will move his hand or his foot in all the land of Egypt.\" </VERS>\n\t\t\t<VERS vnumber=\"45\"> Pharaoh gave Joseph the name Zaphenath-Paneah. He also gave him Asenath daughter of Potiphera, priest of On, to be his wife. So Joseph took charge of all the land of Egypt.</VERS>\n\t\t\t<VERS vnumber=\"46\"> Now Joseph was 30 years old when he began serving Pharaoh king of Egypt. Joseph was commissioned by Pharaoh and was in charge of all the land of Egypt. </VERS>\n\t\t\t<VERS vnumber=\"47\"> During the seven years of abundance the land produced large, bountiful harvests.</VERS>\n\t\t\t<VERS vnumber=\"48\"> Joseph collected all the excess food in the land of Egypt during the seven years and stored it in the cities. In every city he put the food gathered from the fields around it. </VERS>\n\t\t\t<VERS vnumber=\"49\"> Joseph stored up a vast amount of grain, like the sand of the sea, until he stopped measuring it because it was impossible to measure.</VERS>\n\t\t\t<VERS vnumber=\"50\"> Two sons were born to Joseph before the famine came. Asenath daughter of Potiphera, priest of On, was their mother.</VERS>\n\t\t\t<VERS vnumber=\"51\"> Joseph named the firstborn Manasseh, saying, \"Certainly God has made me forget all my trouble and all my father's house.\" </VERS>\n\t\t\t<VERS vnumber=\"52\"> He named the second child Ephraim, saying, \"Certainly God has made me fruitful in the land of my suffering.\"</VERS>\n\t\t\t<VERS vnumber=\"53\"> The seven years of abundance in the land of Egypt came to an end.</VERS>\n\t\t\t<VERS vnumber=\"54\"> Then the seven years of famine began, just as Joseph had predicted. There was famine in all the other lands, but throughout the land of Egypt there was food. </VERS>\n\t\t\t<VERS vnumber=\"55\"> When all the land of Egypt experienced the famine, the people cried out to Pharaoh for food. Pharaoh said to all the people of Egypt, \"Go to Joseph and do whatever he tells you.\"</VERS>\n\t\t\t<VERS vnumber=\"56\"> While the famine was over all the earth, Joseph opened the storehouses and sold grain to the Egyptians. The famine was severe throughout the land of Egypt. </VERS>\n\t\t\t<VERS vnumber=\"57\"> People from every country came to Joseph in Egypt to buy grain because the famine was severe throughout the earth.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"42\">\n\t\t\t<VERS vnumber=\"1\"> When Jacob heard there was grain in Egypt, he said to his sons, \"Why are you looking at each other?\"</VERS>\n\t\t\t<VERS vnumber=\"2\"> He then said, \"Look, I hear that there is grain in Egypt. Go down there and buy grain for us so that we may live and not die.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> So ten of Joseph's brothers went down to buy grain from Egypt.</VERS>\n\t\t\t<VERS vnumber=\"4\"> But Jacob did not send Joseph's brother Benjamin with his brothers, for he said, \"What if some accident happens to him?\" </VERS>\n\t\t\t<VERS vnumber=\"5\"> So Israel's sons came to buy grain among the other travelers, for the famine was severe in the land of Canaan.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Now Joseph was the ruler of the country, the one who sold grain to all the people of the country. Joseph's brothers came and bowed down before him with their faces to the ground.</VERS>\n\t\t\t<VERS vnumber=\"7\"> When Joseph saw his brothers, he recognized them, but he pretended to be a stranger to them and spoke to them harshly. He asked, \"Where do you come from?\" They answered, \"From the land of Canaan, to buy grain for food.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> Joseph recognized his brothers, but they did not recognize him.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Then Joseph remembered the dreams he had dreamed about them, and he said to them, \"You are spies; you have come to see if our land is vulnerable!\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> But they exclaimed, \"No, my lord! Your servants have come to buy grain for food! </VERS>\n\t\t\t<VERS vnumber=\"11\"> We are all the sons of one man; we are honest men! Your servants are not spies.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> \"No,\" he insisted, \"but you have come to see if our land is vulnerable.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> They replied, \"Your servants are from a family of twelve brothers. We are the sons of one man in the land of Canaan. The youngest is with our father at this time, and one is no longer alive.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> But Joseph told them, \"It is just as I said to you: You are spies! </VERS>\n\t\t\t<VERS vnumber=\"15\"> You will be tested in this way: As surely as Pharaoh lives, you will not depart from this place unless your youngest brother comes here. </VERS>\n\t\t\t<VERS vnumber=\"16\"> One of you must go and get your brother, while the rest of you remain in prison. In this way your words may be tested to see if you are telling the truth. If not, then, as surely as Pharaoh lives, you are spies!\" </VERS>\n\t\t\t<VERS vnumber=\"17\"> He imprisoned them all for three days. </VERS>\n\t\t\t<VERS vnumber=\"18\"> On the third day Joseph said to them, \"Do as I say and you will live, for I fear God.</VERS>\n\t\t\t<VERS vnumber=\"19\"> If you are honest men, leave one of your brothers confined here in prison while the rest of you go and take grain back for your hungry families.</VERS>\n\t\t\t<VERS vnumber=\"20\"> But you must bring your youngest brother to me. Then your words will be verified and you will not die.\" They did as he said.</VERS>\n\t\t\t<VERS vnumber=\"21\"> They said to one other, \"Surely we're being punished because of our brother, because we saw how distressed he was when he cried to us for mercy, but we refused to listen. That is why this distress has come on us!\" </VERS>\n\t\t\t<VERS vnumber=\"22\"> Reuben said to them, \"Didn't I say to you, 'Don't sin against the boy,' but you wouldn't listen? So now we must pay for shedding his blood!\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> (Now they did not know that Joseph could understand them, for he was speaking through an interpreter.)</VERS>\n\t\t\t<VERS vnumber=\"24\"> He turned away from them and wept. When he turned around and spoke to them again, he had Simeon taken from them and tied up before their eyes.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Then Joseph gave orders to fill their bags with grain, to return each man's money to his sack, and to give them provisions for the journey. His orders were carried out.</VERS>\n\t\t\t<VERS vnumber=\"26\"> So they loaded their grain on their donkeys and left.</VERS>\n\t\t\t<VERS vnumber=\"27\"> When one of them opened his sack to get feed for his donkey at their resting place, he saw his money in the mouth of his sack.</VERS>\n\t\t\t<VERS vnumber=\"28\"> He said to his brothers, \"My money was returned! Here it is in my sack!\" They were dismayed; they turned trembling one to another and said, \"What in the world has God done to us?\"</VERS>\n\t\t\t<VERS vnumber=\"29\"> They returned to their father Jacob in the land of Canaan and told him all the things that had happened to them, saying,</VERS>\n\t\t\t<VERS vnumber=\"30\"> \"The man, the lord of the land, spoke harshly to us and treated us as if we were spying on the land. </VERS>\n\t\t\t<VERS vnumber=\"31\"> But we said to him, 'We are honest men; we are not spies!</VERS>\n\t\t\t<VERS vnumber=\"32\"> We are from a family of twelve brothers; we are the sons of one father. One is no longer alive, and the youngest is with our father at this time in the land of Canaan.'</VERS>\n\t\t\t<VERS vnumber=\"33\"> \"Then the man, the lord of the land, said to us, 'This is how I will find out if you are honest men. Leave one of your brothers with me, and take grain for your hungry households and go. </VERS>\n\t\t\t<VERS vnumber=\"34\"> But bring your youngest brother back to me so I will know that you are honest men and not spies. Then I will give your brother back to you and you may move about freely in the land.'\"</VERS>\n\t\t\t<VERS vnumber=\"35\"> When they were emptying their sacks, there was each man's bag of money in his sack! When they and their father saw the bags of money, they were afraid.</VERS>\n\t\t\t<VERS vnumber=\"36\"> Their father Jacob said to them, \"You are making me childless! Joseph is gone. Simeon is gone. And now you want to take Benjamin! Everything is against me.\"</VERS>\n\t\t\t<VERS vnumber=\"37\"> Then Reuben said to his father, \"You may put my two sons to death if I do not bring him back to you. Put him in my care and I will bring him back to you.\"</VERS>\n\t\t\t<VERS vnumber=\"38\"> But Jacob replied, \"My son will not go down there with you, for his brother is dead and he alone is left. If an accident happens to him on the journey you have to make, then you will bring down my gray hair in sorrow to the grave.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"43\">\n\t\t\t<VERS vnumber=\"1\"> Now the famine was severe in the land.</VERS>\n\t\t\t<VERS vnumber=\"2\"> When they finished eating the grain they had brought from Egypt, their father said to them, \"Return, buy us a little more food.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> But Judah said to him, \"The man solemnly warned us, 'You will not see my face unless your brother is with you.' </VERS>\n\t\t\t<VERS vnumber=\"4\"> If you send our brother with us, we'll go down and buy food for you. </VERS>\n\t\t\t<VERS vnumber=\"5\"> But if you will not send him, we won't go down there because the man said to us, 'You will not see my face unless your brother is with you.'\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> Israel said, \"Why did you bring this trouble on me by telling the man you had one more brother?\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> They replied, \"The man questioned us thoroughly about ourselves and our family, saying, 'Is your father still alive? Do you have another brother?' So we answered him in this way. How could we possibly know that he would say, 'Bring your brother down'?\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> Then Judah said to his father Israel, \"Send the boy with me and we will go immediately. Then we will live and not die, we and you and our little ones.</VERS>\n\t\t\t<VERS vnumber=\"9\"> I myself pledge security for him; you may hold me liable. If I do not bring him back to you and place him here before you, I will bear the blame before you all my life.</VERS>\n\t\t\t<VERS vnumber=\"10\"> But if we had not delayed, we could have traveled there and back twice by now!\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> Then their father Israel said to them, \"If it must be so, then do this: Take some of the best products of the land in your bags, and take a gift down to the man, a little balm and a little honey, spices and myrrh, pistachios and almonds.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Take double the money with you; you must take back the money that was returned in the mouths of your sacks, perhaps it was an oversight.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Take your brother too, and go right away to the man.</VERS>\n\t\t\t<VERS vnumber=\"14\"> May the sovereign God grant you mercy before the man so that he may release your other brother and Benjamin! As for me, if I lose my children I lose them.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> So the men took these gifts, and they took double the money with them, along with Benjamin. Then they hurried down to Egypt and stood before Joseph. </VERS>\n\t\t\t<VERS vnumber=\"16\"> When Joseph saw Benjamin with them, he said to the servant who was over his household, \"Bring the men to the house. Slaughter an animal and prepare it, for the men will eat with me at noon.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> The man did just as Joseph said; he brought the men into Joseph's house.</VERS>\n\t\t\t<VERS vnumber=\"18\"> But the men were afraid when they were brought to Joseph's house. They said, \"We are being brought in because of the money that was returned in our sacks last time. He wants to capture us, make us slaves, and take our donkeys!\" </VERS>\n\t\t\t<VERS vnumber=\"19\"> So they approached the man who was in charge of Joseph's household and spoke to him at the entrance to the house.</VERS>\n\t\t\t<VERS vnumber=\"20\"> They said, \"My lord, we did indeed come down the first time to buy food. </VERS>\n\t\t\t<VERS vnumber=\"21\"> But when we came to the place where we spent the night, we opened our sacks and each of us found his money, the full amount, in the mouth of his sack. So we have returned it.</VERS>\n\t\t\t<VERS vnumber=\"22\"> We have brought additional money with us to buy food. We do not know who put the money in our sacks!\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> \"Everything is fine,\" the man in charge of Joseph's household told them. \"Don't be afraid. Your God and the God of your father has given you treasure in your sacks. I had your money.\" Then he brought Simeon out to them.</VERS>\n\t\t\t<VERS vnumber=\"24\"> The servant in charge brought the men into Joseph's house. He gave them water, and they washed their feet. Then he gave food to their donkeys. </VERS>\n\t\t\t<VERS vnumber=\"25\"> They got their gifts ready for Joseph's arrival at noon, for they had heard that they were to have a meal there.</VERS>\n\t\t\t<VERS vnumber=\"26\"> When Joseph came home, they presented him with the gifts they had brought inside, and they bowed down to the ground before him. </VERS>\n\t\t\t<VERS vnumber=\"27\"> He asked them how they were doing. Then he said, \"Is your aging father well, the one you spoke about? Is he still alive?\" </VERS>\n\t\t\t<VERS vnumber=\"28\"> \"Your servant our father is well,\" they replied. \"He is still alive.\" They bowed down in humility.</VERS>\n\t\t\t<VERS vnumber=\"29\"> When Joseph looked up and saw his brother Benjamin, his mother's son, he said, \"Is this your youngest brother, whom you told me about?\" Then he said, \"May God be gracious to you, my son.\"</VERS>\n\t\t\t<VERS vnumber=\"30\"> Joseph hurried out, for he was overcome by affection for his brother and was at the point of tears. So he went to his room and wept there.</VERS>\n\t\t\t<VERS vnumber=\"31\"> Then he washed his face and came out. With composure he said, \"Set out the food.\" </VERS>\n\t\t\t<VERS vnumber=\"32\"> They set a place for him, a separate place for his brothers, and another for the Egyptians who were eating with him. (The Egyptians are not able to eat with Hebrews, for the Egyptians think it is disgusting to do so.)</VERS>\n\t\t\t<VERS vnumber=\"33\"> They sat before him, arranged by order of birth, beginning with the firstborn and ending with the youngest. The men looked at each other in astonishment.</VERS>\n\t\t\t<VERS vnumber=\"34\"> He gave them portions of the food set before him, but the portion for Benjamin was five times greater than the portions for any of the others. They drank with Joseph until they all became drunk.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"44\">\n\t\t\t<VERS vnumber=\"1\"> He instructed the servant who was over his household, \"Fill the sacks of the men with as much food as they can carry and put each man's money in the mouth of his sack.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Then put my cup, the silver cup, in the mouth of the youngest one's sack, along with the money for his grain.\" He did as Joseph instructed.</VERS>\n\t\t\t<VERS vnumber=\"3\"> When morning came, the men and their donkeys were sent off.</VERS>\n\t\t\t<VERS vnumber=\"4\"> They had not gone very far from the city when Joseph said to the servant who was over his household, \"Pursue the men at once! When you overtake them, say to them, 'Why have you repaid good with evil? </VERS>\n\t\t\t<VERS vnumber=\"5\"> Doesn't my master drink from this cup and use it for divination? You have done wrong!'\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> When the man overtook them, he spoke these words to them. </VERS>\n\t\t\t<VERS vnumber=\"7\"> They answered him, \"Why does my lord say such things? Far be it from your servants to do such a thing!</VERS>\n\t\t\t<VERS vnumber=\"8\"> Look, the money that we found in the mouths of our sacks we brought back to you from the land of Canaan. Why then would we steal silver or gold from your master's house?</VERS>\n\t\t\t<VERS vnumber=\"9\"> If one of us has it, he will die, and the rest of us will become my lord's slaves!\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> He replied, \"You have suggested your own punishment! The one who has it will become my slave, but the rest of you will go free.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> So each man quickly lowered his sack to the ground and opened it. </VERS>\n\t\t\t<VERS vnumber=\"12\"> Then the man searched. He began with the oldest and finished with the youngest. The cup was found in Benjamin's sack! </VERS>\n\t\t\t<VERS vnumber=\"13\"> They all tore their clothes! Then each man loaded his donkey, and they returned to the city.</VERS>\n\t\t\t<VERS vnumber=\"14\"> So Judah and his brothers came back to Joseph's house. He was still there, and they threw themselves to the ground before him.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Joseph said to them, \"What did you think you were doing? Don't you know that a man like me can find out things like this by divination?\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> Judah replied, \"What can we say to my lord? What can we speak? How can we clear ourselves? God has exposed the sin of your servants! We are now my lord's slaves, we and the one in whose possession the cup was found.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> But Joseph said, \"Far be it from me to do this! The man in whose hand the cup was found will become my slave, but the rest of you may go back to your father in peace.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> Then Judah approached him and said, \"My lord, please allow your servant to speak a word with you. Please do not get angry with your servant, for you are just like Pharaoh.</VERS>\n\t\t\t<VERS vnumber=\"19\"> My lord asked his servants, 'Do you have a father or a brother?'</VERS>\n\t\t\t<VERS vnumber=\"20\"> We said to my lord, 'We have an aged father, and there is a young boy who was born when our father was old. The boy's brother is dead. He is the only one of his mother's sons left, and his father loves him.'</VERS>\n\t\t\t<VERS vnumber=\"21\"> \"Then you told your servants, 'Bring him down to me so I can see him.'</VERS>\n\t\t\t<VERS vnumber=\"22\"> We said to my lord, 'The boy cannot leave his father. If he leaves his father, his father will die.'</VERS>\n\t\t\t<VERS vnumber=\"23\"> But you said to your servants, 'If your youngest brother does not come down with you, you will not see my face again.'</VERS>\n\t\t\t<VERS vnumber=\"24\"> When we returned to your servant my father, we told him the words of my lord.</VERS>\n\t\t\t<VERS vnumber=\"25\"> \"Then our father said, 'Go back and buy us a little food.'</VERS>\n\t\t\t<VERS vnumber=\"26\"> But we replied, 'We cannot go down there. If our youngest brother is with us, then we will go, for we won't be permitted to see the man's face if our youngest brother is not with us.'</VERS>\n\t\t\t<VERS vnumber=\"27\"> \"Then your servant my father said to us, 'You know that my wife gave me two sons.</VERS>\n\t\t\t<VERS vnumber=\"28\"> The first disappeared and I said, \"He has surely been torn to pieces.\" I have not seen him since. </VERS>\n\t\t\t<VERS vnumber=\"29\"> If you take this one from me too and an accident happens to him, then you will bring down my gray hair in tragedy to the grave.'</VERS>\n\t\t\t<VERS vnumber=\"30\"> \"So now, when I return to your servant my father, and the boy is not with us, his very life is bound up in his son's life.</VERS>\n\t\t\t<VERS vnumber=\"31\"> When he sees the boy is not with us, he will die, and your servants will bring down the gray hair of your servant our father in sorrow to the grave. </VERS>\n\t\t\t<VERS vnumber=\"32\"> Indeed, your servant pledged security for the boy with my father, saying, 'If I do not bring him back to you, then I will bear the blame before my father all my life.'</VERS>\n\t\t\t<VERS vnumber=\"33\"> \"So now, please let your servant remain as my lord's slave instead of the boy. As for the boy, let him go back with his brothers.</VERS>\n\t\t\t<VERS vnumber=\"34\"> For how can I go back to my father if the boy is not with me? I couldn't bear to see my father's pain.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"45\">\n\t\t\t<VERS vnumber=\"1\"> Joseph was no longer able to control himself before all his attendants, so he cried out, \"Make everyone go out from my presence!\" No one remained with Joseph when he made himself known to his brothers. </VERS>\n\t\t\t<VERS vnumber=\"2\"> He wept loudly; the Egyptians heard it and Pharaoh's household heard about it.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Joseph said to his brothers, \"I am Joseph! Is my father still alive?\" His brothers could not answer him because they were dumbfounded before him.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Joseph said to his brothers, \"Come closer to me,\" so they came near. Then he said, \"I am Joseph your brother, whom you sold into Egypt.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Now, do not be upset and do not be angry with yourselves because you sold me here, for God sent me ahead of you to preserve life! </VERS>\n\t\t\t<VERS vnumber=\"6\"> For these past two years there has been famine in the land and for five more years there will be neither plowing nor harvesting.</VERS>\n\t\t\t<VERS vnumber=\"7\"> God sent me ahead of you to preserve you on the earth and to save your lives by a great deliverance. </VERS>\n\t\t\t<VERS vnumber=\"8\"> So now, it is not you who sent me here, but God. He has made me an adviser to Pharaoh, lord over all his household, and ruler over all the land of Egypt. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Now go up to my father quickly and tell him, 'This is what your son Joseph says: \"God has made me lord of all Egypt. Come down to me; do not delay! </VERS>\n\t\t\t<VERS vnumber=\"10\"> You will live in the land of Goshen, and you will be near me, you, your children, your grandchildren, your flocks, your herds, and everything you have.</VERS>\n\t\t\t<VERS vnumber=\"11\"> I will provide you with food there because there will be five more years of famine. Otherwise you would become poor, you, your household, and everyone who belongs to you.\"'</VERS>\n\t\t\t<VERS vnumber=\"12\"> You and my brother Benjamin can certainly see with your own eyes that I really am the one who speaks to you.</VERS>\n\t\t\t<VERS vnumber=\"13\"> So tell my father about all my honor in Egypt and about everything you have seen. But bring my father down here quickly!\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> Then he threw himself on the neck of his brother Benjamin and wept, and Benjamin wept on his neck.</VERS>\n\t\t\t<VERS vnumber=\"15\"> He kissed all his brothers and wept over them. After this his brothers talked with him.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Now it was reported in the household of Pharaoh, \"Joseph's brothers have arrived.\" It pleased Pharaoh and his servants.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Pharaoh said to Joseph, \"Say to your brothers, 'Do this: Load your animals and go to the land of Canaan! </VERS>\n\t\t\t<VERS vnumber=\"18\"> Get your father and your households and come to me! Then I will give you the best land in Egypt and you will eat the best of the land.' </VERS>\n\t\t\t<VERS vnumber=\"19\"> You are also commanded to say, 'Do this: Take for yourselves wagons from the land of Egypt for your little ones and for your wives. Bring your father and come. </VERS>\n\t\t\t<VERS vnumber=\"20\"> Don't worry about your belongings, for the best of all the land of Egypt will be yours.'\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> So the sons of Israel did as he said. Joseph gave them wagons as Pharaoh had instructed, and he gave them provisions for the journey. </VERS>\n\t\t\t<VERS vnumber=\"22\"> He gave sets of clothes to each one of them, but to Benjamin he gave three hundred pieces of silver and five sets of clothes.</VERS>\n\t\t\t<VERS vnumber=\"23\"> To his father he sent the following: ten donkeys loaded with the best products of Egypt and ten female donkeys loaded with grain, food, and provisions for his father's journey. </VERS>\n\t\t\t<VERS vnumber=\"24\"> Then he sent his brothers on their way and they left. He said to them, \"As you travel don't be overcome with fear.\"</VERS>\n\t\t\t<VERS vnumber=\"25\"> So they went up from Egypt and came to their father Jacob in the land of Canaan.</VERS>\n\t\t\t<VERS vnumber=\"26\"> They told him, \"Joseph is still alive and he is ruler over all the land of Egypt!\" Jacob was stunned, for he did not believe them. </VERS>\n\t\t\t<VERS vnumber=\"27\"> But when they related to him everything Joseph had said to them, and when he saw the wagons that Joseph had sent to transport him, their father Jacob's spirit revived. </VERS>\n\t\t\t<VERS vnumber=\"28\"> Then Israel said, \"Enough! My son Joseph is still alive! I will go and see him before I die.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"46\">\n\t\t\t<VERS vnumber=\"1\"> So Israel began his journey, taking with him all that he had. When he came to Beer Sheba he offered sacrifices to the God of his father Isaac. </VERS>\n\t\t\t<VERS vnumber=\"2\"> God spoke to Israel in a vision during the night and said, \"Jacob, Jacob!\" He replied, \"Here I am!\" </VERS>\n\t\t\t<VERS vnumber=\"3\"> He said, \"I am God, the God of your father. Do not be afraid to go down to Egypt, for I will make you into a great nation there. </VERS>\n\t\t\t<VERS vnumber=\"4\"> I will go down with you to Egypt and I myself will certainly bring you back from there. Joseph will close your eyes.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> Then Jacob started out from Beer Sheba, and the sons of Israel carried their father Jacob, their little children, and their wives in the wagons that Pharaoh had sent along to transport him. </VERS>\n\t\t\t<VERS vnumber=\"6\"> Jacob and all his descendants took their livestock and the possessions they had acquired in the land of Canaan, and they went to Egypt.</VERS>\n\t\t\t<VERS vnumber=\"7\"> He brought with him to Egypt his sons and grandsons, his daughters and granddaughters, all his descendants.</VERS>\n\t\t\t<VERS vnumber=\"8\"> These are the names of the sons of Israel who went to Egypt, Jacob and his sons: Reuben, the firstborn of Jacob.</VERS>\n\t\t\t<VERS vnumber=\"9\"> The sons of Reuben: Hanoch, Pallu, Hezron, and Carmi.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The sons of Simeon: Jemuel, Jamin, Ohad, Jakin, Zohar, and Shaul (the son of a Canaanite woman).</VERS>\n\t\t\t<VERS vnumber=\"11\"> The sons of Levi: Gershon, Kohath, and Merari.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The sons of Judah: Er, Onan, Shelah, Perez, and Zerah (but Er and Onan died in the land of Canaan). The sons of Perez were Hezron and Hamul.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The sons of Issachar: Tola, Puah, Jashub, and Shimron.</VERS>\n\t\t\t<VERS vnumber=\"14\"> The sons of Zebulun: Sered, Elon, and Jahleel.</VERS>\n\t\t\t<VERS vnumber=\"15\"> These were the sons of Leah, whom she bore to Jacob in Paddan Aram, along with Dinah his daughter. His sons and daughters numbered thirty-three in all.</VERS>\n\t\t\t<VERS vnumber=\"16\"> The sons of Gad: Zephon, Haggi, Shuni, Ezbon, Eri, Arodi, and Areli.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The sons of Asher: Imnah, Ishvah, Ishvi, Beriah, and Serah their sister. The sons of Beriah were Heber and Malkiel.</VERS>\n\t\t\t<VERS vnumber=\"18\"> These were the sons of Zilpah, whom Laban gave to Leah his daughter. She bore these to Jacob, sixteen in all.</VERS>\n\t\t\t<VERS vnumber=\"19\"> The sons of Rachel the wife of Jacob: Joseph and Benjamin.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Manasseh and Ephraim were born to Joseph in the land of Egypt. Asenath daughter of Potiphera, priest of On, bore them to him.</VERS>\n\t\t\t<VERS vnumber=\"21\"> The sons of Benjamin: Bela, Beker, Ashbel, Gera, Naaman, Ehi, Rosh, Muppim, Huppim and Ard.</VERS>\n\t\t\t<VERS vnumber=\"22\"> These were the sons of Rachel who were born to Jacob, fourteen in all.</VERS>\n\t\t\t<VERS vnumber=\"23\"> The son of Dan: Hushim.</VERS>\n\t\t\t<VERS vnumber=\"24\"> The sons of Naphtali: Jahziel, Guni, Jezer, and Shillem.</VERS>\n\t\t\t<VERS vnumber=\"25\"> These were the sons of Bilhah, whom Laban gave to Rachel his daughter. She bore these to Jacob, seven in all.</VERS>\n\t\t\t<VERS vnumber=\"26\"> All the direct descendants of Jacob who went to Egypt with him were sixty-six in number. (This number does not include the wives of Jacob's sons.)</VERS>\n\t\t\t<VERS vnumber=\"27\"> Counting the two sons of Joseph who were born to him in Egypt, all the people of the household of Jacob who were in Egypt numbered seventy.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Jacob sent Judah before him to Joseph to accompany him to Goshen. So they came to the land of Goshen. </VERS>\n\t\t\t<VERS vnumber=\"29\"> Joseph harnessed his chariot and went up to meet his father Israel in Goshen. When he met him, he hugged his neck and wept on his neck for quite some time.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Israel said to Joseph, \"Now let me die since I have seen your face and know that you are still alive.\"</VERS>\n\t\t\t<VERS vnumber=\"31\"> Then Joseph said to his brothers and his father's household, \"I will go up and tell Pharaoh, 'My brothers and my father's household who were in the land of Canaan have come to me. </VERS>\n\t\t\t<VERS vnumber=\"32\"> The men are shepherds; they take care of livestock. They have brought their flocks and their herds and all that they have.' </VERS>\n\t\t\t<VERS vnumber=\"33\"> Pharaoh will summon you and say, 'What is your occupation?'</VERS>\n\t\t\t<VERS vnumber=\"34\"> Tell him, 'Your servants have taken care of cattle from our youth until now, both we and our fathers,' so that you may live in the land of Goshen, for everyone who takes care of sheep is disgusting to the Egyptians.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"47\">\n\t\t\t<VERS vnumber=\"1\"> Joseph went and told Pharaoh, \"My father, my brothers, their flocks and herds, and all that they own have arrived from the land of Canaan. They are now in the land of Goshen.\"</VERS>\n\t\t\t<VERS vnumber=\"2\"> He took five of his brothers and introduced them to Pharaoh.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Pharaoh said to Joseph's brothers, \"What is your occupation?\" They said to Pharaoh, \"Your servants take care of flocks, just as our ancestors did.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> Then they said to Pharaoh, \"We have come to live as temporary residents in the land. There is no pasture for your servants' flocks because the famine is severe in the land of Canaan. So now, please let your servants live in the land of Goshen.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> Pharaoh said to Joseph, \"Your father and your brothers have come to you.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The land of Egypt is before you; settle your father and your brothers in the best region of the land. They may live in the land of Goshen. If you know of any highly capable men among them, put them in charge of my livestock.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> Then Joseph brought in his father Jacob and presented him before Pharaoh. Jacob blessed Pharaoh. </VERS>\n\t\t\t<VERS vnumber=\"8\"> Pharaoh said to Jacob, \"How long have you lived?\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> Jacob said to Pharaoh, \"All the years of my travels are 130. All the years of my life have been few and painful; the years of my travels are not as long as those of my ancestors.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> Then Jacob blessed Pharaoh and went out from his presence.</VERS>\n\t\t\t<VERS vnumber=\"11\"> So Joseph settled his father and his brothers. He gave them territory in the land of Egypt, in the best region of the land, the land of Rameses, just as Pharaoh had commanded.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Joseph also provided food for his father, his brothers, and all his father's household, according to the number of their little children.</VERS>\n\t\t\t<VERS vnumber=\"13\"> But there was no food in all the land because the famine was very severe; the land of Egypt and the land of Canaan wasted away because of the famine. </VERS>\n\t\t\t<VERS vnumber=\"14\"> Joseph collected all the money that could be found in the land of Egypt and in the land of Canaan as payment for the grain they were buying. Then Joseph brought the money into Pharaoh's palace.</VERS>\n\t\t\t<VERS vnumber=\"15\"> When the money from the lands of Egypt and Canaan was used up, all the Egyptians came to Joseph and said, \"Give us food! Why should we die before your very eyes because our money has run out?\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> Then Joseph said, \"If your money is gone, bring your livestock, and I will give you food in exchange for your livestock.\" </VERS>\n\t\t\t<VERS vnumber=\"17\"> So they brought their livestock to Joseph, and Joseph gave them food in exchange for their horses, the livestock of their flocks and herds, and their donkeys. He got them through that year by giving them food in exchange for livestock.</VERS>\n\t\t\t<VERS vnumber=\"18\"> When that year was over, they came to him the next year and said to him, \"We cannot hide from our lord that the money is used up and the livestock and the animals belong to our lord. Nothing remains before our lord except our bodies and our land. </VERS>\n\t\t\t<VERS vnumber=\"19\"> Why should we die before your very eyes, both we and our land? Buy us and our land in exchange for food, and we, with our land, will become Pharaoh's slaves. Give us seed that we may live and not die. Then the land will not become desolate.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> So Joseph bought all the land of Egypt for Pharaoh. Each of the Egyptians sold his field, for the famine was severe. So the land became Pharaoh's. </VERS>\n\t\t\t<VERS vnumber=\"21\"> Joseph made all the people slaves from one end of Egypt's border to the other end of it. </VERS>\n\t\t\t<VERS vnumber=\"22\"> But he did not purchase the land of the priests because the priests had an allotment from Pharaoh and they ate from their allotment that Pharaoh gave them. That is why they did not sell their land.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Joseph said to the people, \"Since I have bought you and your land today for Pharaoh, here is seed for you. Cultivate the land. </VERS>\n\t\t\t<VERS vnumber=\"24\"> When you gather in the crop, give one-fifth of it to Pharaoh, and the rest will be yours for seed for the fields and for you to eat, including those in your households and your little children.\"</VERS>\n\t\t\t<VERS vnumber=\"25\"> They replied, \"You have saved our lives! You are showing us favor, and we will be Pharaoh's slaves.\"</VERS>\n\t\t\t<VERS vnumber=\"26\"> So Joseph made it a statute, which is in effect to this day throughout the land of Egypt: One-fifth belongs to Pharaoh. Only the land of the priests did not become Pharaoh's.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Israel settled in the land of Egypt, in the land of Goshen, and they owned land there. They were fruitful and increased rapidly in number.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Jacob lived in the land of Egypt seventeen years; the years of Jacob's life were 147 in all. </VERS>\n\t\t\t<VERS vnumber=\"29\"> The time for Israel to die approached, so he called for his son Joseph and said to him, \"If now I have found favor in your sight, put your hand under my thigh and show me kindness and faithfulness. Do not bury me in Egypt, </VERS>\n\t\t\t<VERS vnumber=\"30\"> but when I rest with my fathers, carry me out of Egypt and bury me in their burial place.\" Joseph said, \"I will do as you say.\"</VERS>\n\t\t\t<VERS vnumber=\"31\"> Jacob said, \"Swear to me that you will do so.\" So Joseph gave him his word. Then Israel bowed down at the head of his bed.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"48\">\n\t\t\t<VERS vnumber=\"1\"> After these things Joseph was told, \"Your father is weakening.\" So he took his two sons Manasseh and Ephraim with him. </VERS>\n\t\t\t<VERS vnumber=\"2\"> When Jacob was told, \"Your son Joseph has just come to you,\" Israel regained strength and sat up on his bed. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Jacob said to Joseph, \"The sovereign God appeared to me at Luz in the land of Canaan and blessed me. </VERS>\n\t\t\t<VERS vnumber=\"4\"> He said to me, 'I am going to make you fruitful and will multiply you. I will make you into a group of nations, and I will give this land to your descendants as an everlasting possession.'</VERS>\n\t\t\t<VERS vnumber=\"5\"> \"Now, as for your two sons, who were born to you in the land of Egypt before I came to you in Egypt, they will be mine. Ephraim and Manasseh will be mine just as Reuben and Simeon are.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Any children that you father after them will be yours; they will be listed under the names of their brothers in their inheritance.</VERS>\n\t\t\t<VERS vnumber=\"7\"> But as for me, when I was returning from Paddan, Rachel died, to my sorrow, in the land of Canaan. It happened along the way, some distance from Ephrath. So I buried her there on the way to Ephrath\" (that is, Bethlehem).</VERS>\n\t\t\t<VERS vnumber=\"8\"> When Israel saw Joseph's sons, he asked, \"Who are these?\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> Joseph said to his father, \"They are the sons God has given me in this place.\" His father said, \"Bring them to me so I may bless them.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> Now Israel's eyes were failing because of his age; he was not able to see well. So Joseph brought his sons near to him, and his father kissed them and embraced them. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Israel said to Joseph, \"I never expected to see you again, but now God has allowed me to see your children too.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> So Joseph moved them from Israel's knees and bowed down with his face to the ground. </VERS>\n\t\t\t<VERS vnumber=\"13\"> Joseph positioned them; he put Ephraim on his right hand across from Israel's left hand, and Manasseh on his left hand across from Israel's right hand. Then Joseph brought them closer to his father.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Israel stretched out his right hand and placed it on Ephraim's head, although he was the younger. Crossing his hands, he put his left hand on Manasseh's head, for Manasseh was the firstborn.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Then he blessed Joseph and said, \"May the God before whom my fathers Abraham and Isaac walked, the God who has been my shepherd all my life long to this day,</VERS>\n\t\t\t<VERS vnumber=\"16\"> the Angel who has protected me from all harm, bless these boys. May my name be named in them, and the name of my fathers Abraham and Isaac. May they grow into a multitude on the earth.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> When Joseph saw that his father placed his right hand on Ephraim's head, it displeased him. So he took his father's hand to move it from Ephraim's head to Manasseh's head. </VERS>\n\t\t\t<VERS vnumber=\"18\"> Joseph said to his father, \"Not so, my father, for this is the firstborn. Put your right hand on his head.\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> But his father refused and said, \"I know, my son, I know. He too will become a nation and he too will become great. In spite of this, his younger brother will be even greater and his descendants will become a multitude of nations.\" </VERS>\n\t\t\t<VERS vnumber=\"20\"> So he blessed them that day, saying, \"By you will Israel bless, saying, 'May God make you like Ephraim and Manasseh.'\" So he put Ephraim before Manasseh.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Then Israel said to Joseph, \"I am about to die, but God will be with you and will bring you back to the land of your fathers. </VERS>\n\t\t\t<VERS vnumber=\"22\"> As one who is above your brothers, I give to you the mountain slope, which I took from the Amorites with my sword and my bow.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"49\">\n\t\t\t<VERS vnumber=\"1\"> Jacob called for his sons and said, \"Gather together so I can tell you what will happen to you in the future.</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Assemble and listen, you sons of Jacob; listen to Israel, your father.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Reuben, you are my firstborn, my might and the beginning of my strength, outstanding in dignity, outstanding in power.</VERS>\n\t\t\t<VERS vnumber=\"4\"> You are destructive like water and will not excel, for you got on your father's bed, then you defiled it, he got on my couch!</VERS>\n\t\t\t<VERS vnumber=\"5\"> Simeon and Levi are brothers, weapons of violence are their knives!</VERS>\n\t\t\t<VERS vnumber=\"6\"> O my soul, do not come into their council, do not be united to their assembly, my heart, for in their anger they have killed men, and for pleasure they have hamstrung oxen.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Cursed be their anger, for it was fierce, and their fury, for it was cruel. I will divide them in Jacob, and scatter them in Israel!</VERS>\n\t\t\t<VERS vnumber=\"8\"> Judah, your brothers will praise you. Your hand will be on the neck of your enemies, your father's sons will bow down before you.</VERS>\n\t\t\t<VERS vnumber=\"9\"> You are a lion's cub, Judah, from the prey, my son, you have gone up. He crouches and lies down like a lion; like a lioness, who will rouse him?</VERS>\n\t\t\t<VERS vnumber=\"10\"> The scepter will not depart from Judah, nor the ruler's staff from between his feet, until he comes to whom it belongs; the nations will obey him.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Binding his foal to the vine, and his colt to the choicest vine, he will wash his garments in wine, his robes in the blood of grapes.</VERS>\n\t\t\t<VERS vnumber=\"12\"> His eyes will be dark from wine, and his teeth white from milk.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Zebulun will live by the haven of the sea and become a haven for ships; his border will extend to Sidon.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Issachar is a strong-boned donkey lying down between two saddlebags.</VERS>\n\t\t\t<VERS vnumber=\"15\"> When he sees a good resting place, and the pleasant land, he will bend his shoulder to the burden and become a slave laborer.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Dan will judge his people as one of the tribes of Israel.</VERS>\n\t\t\t<VERS vnumber=\"17\"> May Dan be a snake beside the road, a viper by the path, that bites the heels of the horse so that its rider falls backward.</VERS>\n\t\t\t<VERS vnumber=\"18\"> I wait for your deliverance, O LORD.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Gad will be raided by marauding bands, but he will attack them at their heels.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Asher's food will be rich, and he will provide delicacies to royalty.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Naphtali is a free running doe, he speaks delightful words.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Joseph is a fruitful bough, a fruitful bough near a spring whose branches climb over the wall.</VERS>\n\t\t\t<VERS vnumber=\"23\"> The archers will attack him, they will shoot at him and oppose him.</VERS>\n\t\t\t<VERS vnumber=\"24\"> But his bow will remain steady, and his hands will be skillful; because of the hands of the Mighty One of Jacob, because of the Shepherd, the Rock of Israel,</VERS>\n\t\t\t<VERS vnumber=\"25\"> because of the God of your father, who will help you, because of the sovereign God, who will bless you with blessings from the sky above, blessings from the deep that lies below, and blessings of the breasts and womb.</VERS>\n\t\t\t<VERS vnumber=\"26\"> The blessings of your father are greater than the blessings of the eternal mountains or the desirable things of the age-old hills. They will be on the head of Joseph and on the brow of the prince of his brothers.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Benjamin is a ravenous wolf; in the morning devouring the prey, and in the evening dividing the plunder.\"</VERS>\n\t\t\t<VERS vnumber=\"28\"> These are the twelve tribes of Israel. This is what their father said to them when he blessed them. He gave each of them an appropriate blessing.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Then he instructed them, \"I am about to go to my people. Bury me with my fathers in the cave in the field of Ephron the Hittite. </VERS>\n\t\t\t<VERS vnumber=\"30\"> It is the cave in the field of Machpelah, near Mamre in the land of Canaan, which Abraham bought for a burial plot from Ephron the Hittite.</VERS>\n\t\t\t<VERS vnumber=\"31\"> There they buried Abraham and his wife Sarah; there they buried Isaac and his wife Rebekah; and there I buried Leah.</VERS>\n\t\t\t<VERS vnumber=\"32\"> The field and the cave in it were acquired from the sons of Heth.\"</VERS>\n\t\t\t<VERS vnumber=\"33\"> When Jacob finished giving these instructions to his sons, he pulled his feet up onto the bed, breathed his last breath, and went to his people.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"50\">\n\t\t\t<VERS vnumber=\"1\"> Then Joseph hugged his father's face. He wept over him and kissed him. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Joseph instructed the physicians in his service to embalm his father, so the physicians embalmed Israel. </VERS>\n\t\t\t<VERS vnumber=\"3\"> They took forty days, for that is the full time needed for embalming. The Egyptians mourned for him seventy days.</VERS>\n\t\t\t<VERS vnumber=\"4\"> When the days of mourning had passed, Joseph said to Pharaoh's royal court, \"If I have found favor in your sight, please say to Pharaoh,</VERS>\n\t\t\t<VERS vnumber=\"5\"> 'My father made me swear an oath. He said, \"I am about to die. Bury me in my tomb that I dug for myself there in the land of Canaan.\" Now let me go and bury my father; then I will return.'\" </VERS>\n\t\t\t<VERS vnumber=\"6\"> So Pharaoh said, \"Go and bury your father, just as he made you swear to do.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> So Joseph went up to bury his father; all Pharaoh's officials went with him, the senior courtiers of his household, all the senior officials of the land of Egypt,</VERS>\n\t\t\t<VERS vnumber=\"8\"> all Joseph's household, his brothers, and his father's household. But they left their little children and their flocks and herds in the land of Goshen.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Chariots and horsemen also went up with him, so it was a very large entourage.</VERS>\n\t\t\t<VERS vnumber=\"10\"> When they came to the threshing floor of Atad on the other side of the Jordan, they mourned there with very great and bitter sorrow. There Joseph observed a seven day period of mourning for his father. </VERS>\n\t\t\t<VERS vnumber=\"11\"> When the Canaanites who lived in the land saw them mourning at the threshing floor of Atad, they said, \"This is a very sad occasion for the Egyptians.\" That is why its name was called Abel Mizraim, which is beyond the Jordan.</VERS>\n\t\t\t<VERS vnumber=\"12\"> So the sons of Jacob did for him just as he had instructed them.</VERS>\n\t\t\t<VERS vnumber=\"13\"> His sons carried him to the land of Canaan and buried him in the cave of the field of Machpelah, near Mamre. This is the field Abraham purchased as a burial plot from Ephron the Hittite.</VERS>\n\t\t\t<VERS vnumber=\"14\"> After he buried his father, Joseph returned to Egypt, along with his brothers and all who had accompanied him to bury his father.</VERS>\n\t\t\t<VERS vnumber=\"15\"> When Joseph's brothers saw that their father was dead, they said, \"What if Joseph bears a grudge and wants to repay us in full for all the harm we did to him?\" </VERS>\n\t\t\t<VERS vnumber=\"16\"> So they sent word to Joseph, saying, \"Your father gave these instructions before he died: </VERS>\n\t\t\t<VERS vnumber=\"17\"> 'Tell Joseph this: Please forgive the sin of your brothers and the wrong they did when they treated you so badly.' Now please forgive the sin of the servants of the God of your father.\" When this message was reported to him, Joseph wept.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Then his brothers also came and threw themselves down before him; they said, \"Here we are; we are your slaves.\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> But Joseph answered them, \"Don't be afraid. Am I in the place of God? </VERS>\n\t\t\t<VERS vnumber=\"20\"> As for you, you meant to harm me, but God intended it for a good purpose, so he could preserve the lives of many people, as you can see this day.</VERS>\n\t\t\t<VERS vnumber=\"21\"> So now, don't be afraid. I will provide for you and your little children.\" Then he consoled them and spoke kindly to them.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Joseph lived in Egypt, along with his father's family. Joseph lived 110 years. </VERS>\n\t\t\t<VERS vnumber=\"23\"> Joseph saw the descendants of Ephraim to the third generation. He also saw the children of Makir the son of Manasseh; they were given special inheritance rights by Joseph.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Then Joseph said to his brothers, \"I am about to die. But God will surely come to you and lead you up from this land to the land he swore on oath to give to Abraham, Isaac, and Jacob.\" </VERS>\n\t\t\t<VERS vnumber=\"25\"> Joseph made the sons of Israel swear an oath. He said, \"God will surely come to you. Then you must carry my bones up from this place.\"</VERS>\n\t\t\t<VERS vnumber=\"26\"> So Joseph died at the age of 110. After they embalmed him, his body was placed in a coffin in Egypt. </VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"2\" bname=\"Exodus\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\">  These are the names of the sons of Israel who entered Egypt, each man with his household entered with Jacob:</VERS>\n\t\t\t<VERS vnumber=\"2\"> Reuben, Simeon, Levi, and Judah,</VERS>\n\t\t\t<VERS vnumber=\"3\"> Issachar, Zebulun, and Benjamin,</VERS>\n\t\t\t<VERS vnumber=\"4\"> Dan and Naphtali, Gad and Asher.</VERS>\n\t\t\t<VERS vnumber=\"5\"> All the people who were directly descended from Jacob numbered seventy. But Joseph was already in Egypt,</VERS>\n\t\t\t<VERS vnumber=\"6\"> and in time Joseph and his brothers and all that generation died. </VERS>\n\t\t\t<VERS vnumber=\"7\"> The Israelites, however, were fruitful, increased greatly, multiplied, and became extremely strong, so that the land was filled with them.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Then a new king, who did not know about Joseph, came to power over Egypt. </VERS>\n\t\t\t<VERS vnumber=\"9\"> He said to his people, \"Look at the Israelite people, more numerous and stronger than we are! </VERS>\n\t\t\t<VERS vnumber=\"10\"> Come, let's deal wisely with them. Otherwise they will continue to multiply, and if a war breaks out, they will ally themselves with our enemies and fight against us and leave the country.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> So they put foremen over the Israelites to oppress them with hard labor. As a result they built Pithom and Rameses as store cities for Pharaoh. </VERS>\n\t\t\t<VERS vnumber=\"12\"> But the more the Egyptians oppressed them, the more they multiplied and spread. As a result the Egyptians loathed the Israelites, </VERS>\n\t\t\t<VERS vnumber=\"13\"> and they made the Israelites serve rigorously.</VERS>\n\t\t\t<VERS vnumber=\"14\"> They made their lives bitter by hard service with mortar and bricks and by all kinds of service in the fields. Every kind of service the Israelites were required to give was rigorous.</VERS>\n\t\t\t<VERS vnumber=\"15\"> The king of Egypt said to the Hebrew midwives, one of whom was named Shiphrah and the other Puah,</VERS>\n\t\t\t<VERS vnumber=\"16\">  \"When you assist the Hebrew women in childbirth, observe at the delivery: If it is a son, kill him, but if it is a daughter, she may live.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> But the midwives feared God and did not do what the king of Egypt had told them; they let the boys live.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Then the king of Egypt summoned the midwives and said to them, \"Why have you done this and let the boys live?\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> The midwives said to Pharaoh, \"Because the Hebrew women are not like the Egyptian women, for the Hebrew women are vigorous; they give birth before the midwife gets to them!\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> So God treated the midwives well, and the people multiplied and became very strong. </VERS>\n\t\t\t<VERS vnumber=\"21\"> And because the midwives feared God, he made households for them.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Then Pharaoh commanded all his people, \"All sons that are born you must throw into the river, but all daughters you may let live.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\">  A man from the household of Levi married a woman who was a descendant of Levi.</VERS>\n\t\t\t<VERS vnumber=\"2\"> The woman became pregnant and gave birth to a son. When she saw that he was a healthy child, she hid him for three months. </VERS>\n\t\t\t<VERS vnumber=\"3\"> But when she was no longer able to hide him, she took a papyrus basket for him and sealed it with bitumen and pitch. She put the child in it and set it among the reeds along the edge of the Nile.</VERS>\n\t\t\t<VERS vnumber=\"4\"> His sister stationed herself at a distance to find out what would happen to him.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Then the daughter of Pharaoh came down to wash herself by the Nile, while her attendants were walking alongside the river, and she saw the basket among the reeds. She sent one of her attendants, took it,</VERS>\n\t\t\t<VERS vnumber=\"6\"> opened it, and saw the child, a boy, crying!, and she felt compassion for him and said, \"This is one of the Hebrews' children.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> Then his sister said to Pharaoh's daughter, \"Shall I go and get a nursing woman for you from the Hebrews, so that she may nurse the child for you?\" </VERS>\n\t\t\t<VERS vnumber=\"8\"> Pharaoh's daughter said to her, \"Yes, do so.\" So the young girl went and got the child's mother.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Pharaoh's daughter said to her, \"Take this child and nurse him for me, and I will pay your wages.\" So the woman took the child and nursed him.</VERS>\n\t\t\t<VERS vnumber=\"10\"> When the child grew older she brought him to Pharaoh's daughter, and he became her son. She named him Moses, saying, \"Because I drew him from the water.\"</VERS>\n\t\t\t<VERS vnumber=\"11\">  In those days, when Moses had grown up, he went out to his people and observed their hard labor, and he saw an Egyptian man attacking a Hebrew man, one of his own people.</VERS>\n\t\t\t<VERS vnumber=\"12\"> He looked this way and that and saw that no one was there, and then he attacked the Egyptian and concealed the body in the sand. </VERS>\n\t\t\t<VERS vnumber=\"13\"> When he went out the next day, there were two Hebrew men fighting. So he said to the one who was in the wrong, \"Why are you attacking your fellow Hebrew?\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> The man replied, \"Who made you a ruler and a judge over us? Are you planning to kill me like you killed that Egyptian?\" Then Moses was afraid, thinking, \"Surely what I did has become known.\" </VERS>\n\t\t\t<VERS vnumber=\"15\"> When Pharaoh heard about this event, he sought to kill Moses. So Moses fled from Pharaoh and settled in the land of Midian, and he settled by a certain well.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Now a priest of Midian had seven daughters, and they came and began to draw water and fill the troughs in order to water their father's flock. </VERS>\n\t\t\t<VERS vnumber=\"17\"> When some shepherds came and drove them away, Moses came up and defended them and then watered their flock. </VERS>\n\t\t\t<VERS vnumber=\"18\"> So when they came home to their father Reuel, he asked, \"Why have you come home so early today?\" </VERS>\n\t\t\t<VERS vnumber=\"19\"> They said, \"An Egyptian man rescued us from the shepherds, and he actually drew water for us and watered the flock!\" </VERS>\n\t\t\t<VERS vnumber=\"20\"> He said to his daughters, \"So where is he? Why in the world did you leave the man? Call him, so that he may eat a meal with us.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> Moses agreed to stay with the man, and he gave his daughter Zipporah to Moses in marriage.</VERS>\n\t\t\t<VERS vnumber=\"22\"> When she bore a son, Moses named him Gershom, for he said, \"I have become a resident foreigner in a foreign land.\"</VERS>\n\t\t\t<VERS vnumber=\"23\">  During that long period of time the king of Egypt died, and the Israelites groaned because of the slave labor. They cried out, and their desperate cry because of their slave labor went up to God. </VERS>\n\t\t\t<VERS vnumber=\"24\"> God heard their groaning, God remembered his covenant with Abraham, with Isaac, and with Jacob, </VERS>\n\t\t\t<VERS vnumber=\"25\"> God saw the Israelites, and God understood,.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> Now Moses was shepherding the flock of his father-in-law Jethro, the priest of Midian, and he led the flock to the far side of the desert and came to the mountain of God, to Horeb.</VERS>\n\t\t\t<VERS vnumber=\"2\"> The angel of the LORD appeared to him in a flame of fire from within a bush. He looked, and the bush was ablaze with fire, but it was not being consumed!</VERS>\n\t\t\t<VERS vnumber=\"3\"> So Moses thought, \"I will turn aside to see this amazing sight. Why does the bush not burn up?\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> When the LORD saw that he had turned aside to look, God called to him from within the bush and said, \"Moses, Moses!\" And Moses said, \"Here I am.\" </VERS>\n\t\t\t<VERS vnumber=\"5\"> God said, \"Do not approach any closer! Take your sandals off your feet, for the place where you are standing is holy ground.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> He added, \"I am the God of your father, the God of Abraham, the God of Isaac, and the God of Jacob.\" Then Moses hid his face, because he was afraid to look at God.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The LORD said, \"I have surely seen the affliction of my people who are in Egypt. I have heard their cry because of their taskmasters, for I know their sorrows.</VERS>\n\t\t\t<VERS vnumber=\"8\"> I have come down to deliver them from the hand of the Egyptians and to bring them up from that land to a land that is both good and spacious, to a land flowing with milk and honey, to the region of the Canaanites, Hittites, Amorites, Perizzites, Hivites, and Jebusites.</VERS>\n\t\t\t<VERS vnumber=\"9\"> And now indeed the cry of the Israelites has come to me, and I have also seen how severely the Egyptians oppress them.</VERS>\n\t\t\t<VERS vnumber=\"10\"> So now go, and I will send you to Pharaoh to bring my people, the Israelites, out of Egypt.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> Moses said to God, \"Who am I, that I should go to Pharaoh, or that I should bring the Israelites out of Egypt?\" </VERS>\n\t\t\t<VERS vnumber=\"12\"> He replied, \"Surely I will be with you, and this will be the sign to you that I have sent you: When you bring the people out of Egypt, you and they will serve God on this mountain.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> Moses said to God, \"If I go to the Israelites and tell them, 'The God of your fathers has sent me to you,' and they ask me, 'What is his name?', what should I say to them?\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> God said to Moses, \"I AM that I AM.\" And he said, \"You must say this to the Israelites, 'I AM has sent me to you.'\" </VERS>\n\t\t\t<VERS vnumber=\"15\"> God also said to Moses, \"You must say this to the Israelites, 'The LORD, the God of your fathers, the God of Abraham, the God of Isaac, and the God of Jacob, has sent me to you. This is my name forever, and this is my memorial from generation to generation.'</VERS>\n\t\t\t<VERS vnumber=\"16\"> \"Go and bring together the elders of Israel and tell them, 'The LORD, the God of your fathers, appeared to me, the God of Abraham, Isaac, and Jacob, saying, \"I have attended carefully to you and to what has been done to you in Egypt,</VERS>\n\t\t\t<VERS vnumber=\"17\"> and I have promised that I will bring you up out of the affliction of Egypt to the land of the Canaanites, Hittites, Amorites, Perizzites, Hivites, and Jebusites, to a land flowing with milk and honey.\"'</VERS>\n\t\t\t<VERS vnumber=\"18\"> \"The elders will listen to you, and then you and the elders of Israel must go to the king of Egypt and tell him, 'The LORD, the God of the Hebrews, has met with us. So now, let us go three days' journey into the wilderness, so that we may sacrifice to the LORD our God.' </VERS>\n\t\t\t<VERS vnumber=\"19\"> But I know that the king of Egypt will not let you go, not even under force.</VERS>\n\t\t\t<VERS vnumber=\"20\"> So I will extend my hand and strike Egypt with all my wonders that I will do among them, and after that he will release you.</VERS>\n\t\t\t<VERS vnumber=\"21\"> \"I will grant this people favor with the Egyptians, so that when you depart you will not leave empty-handed. </VERS>\n\t\t\t<VERS vnumber=\"22\"> Every woman will ask her neighbor and the one who happens to be staying in her house for items of silver and gold and for clothing. You will put these articles on your sons and daughters, thus you will plunder Egypt!\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\">  Moses answered again, \"And if they do not believe me or pay attention to me, but say, 'The LORD has not appeared to you'?\" </VERS>\n\t\t\t<VERS vnumber=\"2\"> The LORD said to him, \"What is that in your hand?\" He said, \"A staff.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> The LORD said, \"Throw it to the ground.\" So he threw it to the ground, and it became a snake, and Moses ran from it. </VERS>\n\t\t\t<VERS vnumber=\"4\"> But the LORD said to Moses, \"Put out your hand and grab it by the tail\", so he put out his hand and caught it, and it became a staff in his hand,</VERS>\n\t\t\t<VERS vnumber=\"5\"> \"that they may believe that the LORD, the God of their fathers, the God of Abraham, the God of Isaac, and the God of Jacob, has appeared to you.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> The LORD also said to him, \"Put your hand into your robe.\" So he put his hand into his robe, and when he brought it out, there was his hand, leprous like snow!</VERS>\n\t\t\t<VERS vnumber=\"7\"> He said, \"Put your hand back into your robe.\" So he put his hand back into his robe, and when he brought it out from his robe, there it was, restored like the rest of his skin!</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"If they do not believe you or pay attention to the former sign, then they may believe the latter sign.</VERS>\n\t\t\t<VERS vnumber=\"9\"> And if they do not believe even these two signs or listen to you, then take some water from the Nile and pour it out on the dry ground. The water you take out of the Nile will become blood on the dry ground.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> Then Moses said to the LORD, \"O my Lord, I am not an eloquent man, neither in the past nor since you have spoken to your servant, for I am slow of speech and slow of tongue.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> The LORD said to him, \"Who gave a mouth to man, or who makes a person mute or deaf or seeing or blind? Is it not I, the LORD?</VERS>\n\t\t\t<VERS vnumber=\"12\"> So now go, and I will be with your mouth and will teach you what you must say.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> But Moses said, \"O my Lord, please send anyone else whom you wish to send!\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> Then the LORD became angry with Moses, and he said, \"What about your brother Aaron the Levite? I know that he can speak very well. Moreover, he is coming to meet you, and when he sees you he will be glad in his heart.</VERS>\n\t\t\t<VERS vnumber=\"15\"> \"So you are to speak to him and put the words in his mouth. And as for me, I will be with your mouth and with his mouth, and I will teach you both what you must do.</VERS>\n\t\t\t<VERS vnumber=\"16\"> He will speak for you to the people, and it will be as if he were your mouth and as if you were his God.</VERS>\n\t\t\t<VERS vnumber=\"17\"> You will also take in your hand this staff, with which you will do the signs.\"</VERS>\n\t\t\t<VERS vnumber=\"18\">  So Moses went back to his father-in-law Jethro and said to him, \"Let me go, so that I may return to my relatives in Egypt and see if they are still alive.\" Jethro said to Moses, \"Go in peace.\" </VERS>\n\t\t\t<VERS vnumber=\"19\"> The LORD said to Moses in Midian, \"Go back to Egypt, because all the men who were seeking your life are dead.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> Then Moses took his wife and sons and put them on a donkey and headed back to the land of Egypt, and Moses took the staff of God in his hand. </VERS>\n\t\t\t<VERS vnumber=\"21\"> The LORD said to Moses, \"When you go back to Egypt, see that you do before Pharaoh all the wonders I have put under your control. But I will harden his heart and he will not let the people go.</VERS>\n\t\t\t<VERS vnumber=\"22\"> You must say to Pharaoh, 'Thus says the LORD, \"Israel is my son, my firstborn,</VERS>\n\t\t\t<VERS vnumber=\"23\"> and I said to you, 'Let my son go that he may serve me,' but since you have refused to let him go, I will surely kill your son, your firstborn!\"'\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> Now on the way, at a place where they stopped for the night, the LORD met Moses and sought to kill him.</VERS>\n\t\t\t<VERS vnumber=\"25\"> But Zipporah took a flint knife, cut off the foreskin of her son and touched it to Moses' feet, and said, \"Surely you are a bridegroom of blood to me.\" </VERS>\n\t\t\t<VERS vnumber=\"26\"> So the LORD let him alone. (At that time she said, \"A bridegroom of blood,\" referring to the circumcision.)</VERS>\n\t\t\t<VERS vnumber=\"27\"> The LORD said to Aaron, \"Go to the wilderness to meet Moses. So he went and met him at the mountain of God and greeted him with a kiss.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Moses told Aaron all the words of the LORD who had sent him and all the signs that he had commanded him. </VERS>\n\t\t\t<VERS vnumber=\"29\"> Then Moses and Aaron went and brought together all the Israelite elders.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Aaron spoke all the words that the LORD had spoken to Moses and did the signs in the sight of the people, </VERS>\n\t\t\t<VERS vnumber=\"31\"> and the people believed. When they heard that the LORD had attended to the Israelites and that he had seen their affliction, they bowed down close to the ground.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"5\">\n\t\t\t<VERS vnumber=\"1\">  Afterward Moses and Aaron went to Pharaoh and said, \"Thus says the LORD, the God of Israel, 'Release my people so that they may hold a pilgrim feast to me in the desert.'\" </VERS>\n\t\t\t<VERS vnumber=\"2\"> But Pharaoh said, \"Who is the LORD that I should obey him by releasing Israel? I do not know the LORD, and I will not release Israel!\" </VERS>\n\t\t\t<VERS vnumber=\"3\"> And they said, \"The God of the Hebrews has met with us. Let us go a three-day journey into the desert so that we may sacrifice to the LORD our God, so that he does not strike us with plague or the sword.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> The king of Egypt said to them, \"Moses and Aaron, why do you cause the people to refrain from their work? Return to your labor!\" </VERS>\n\t\t\t<VERS vnumber=\"5\"> Pharaoh was thinking, \"The people of the land are now many, and you are giving them rest from their labor.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> That same day Pharaoh commanded the slave masters and foremen who were over the people:</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"You must no longer give straw to the people for making bricks as before. Let them go and collect straw for themselves. </VERS>\n\t\t\t<VERS vnumber=\"8\"> But you must require of them the same quota of bricks that they were making before. Do not reduce it, for they are slackers. That is why they are crying, 'Let us go sacrifice to our God.' </VERS>\n\t\t\t<VERS vnumber=\"9\"> Make the work harder for the men so they will keep at it and pay no attention to lying words!\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> So the slave masters of the people and their foremen went to the Israelites and said, \"Thus says Pharaoh: 'I am not giving you straw. </VERS>\n\t\t\t<VERS vnumber=\"11\"> You go get straw for yourselves wherever you can find it, because there will be no reduction at all in your workload.'\" </VERS>\n\t\t\t<VERS vnumber=\"12\"> So the people spread out through all the land of Egypt to collect stubble for straw. </VERS>\n\t\t\t<VERS vnumber=\"13\"> The slave masters were pressuring them, saying, \"Complete your work for each day, just like when there was straw!\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> The Israelite foremen whom Pharaoh's slave masters had set over them were beaten and were asked, \"Why did you not complete your requirement for brickmaking as in the past, both yesterday and today?\"</VERS>\n\t\t\t<VERS vnumber=\"15\">  The Israelite foremen went and cried out to Pharaoh, \"Why are you treating your servants this way? </VERS>\n\t\t\t<VERS vnumber=\"16\"> No straw is given to your servants, but we are told, 'Make bricks!' Your servants are even being beaten, but the fault is with your people.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> But Pharaoh replied, \"You are slackers! Slackers! That is why you are saying, 'Let us go sacrifice to the LORD.' </VERS>\n\t\t\t<VERS vnumber=\"18\"> So now, get back to work! You will not be given straw, but you must still produce your quota of bricks!\" </VERS>\n\t\t\t<VERS vnumber=\"19\"> The Israelite foremen saw that they were in trouble when they were told, \"You must not reduce the daily quota of your bricks.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> When they went out from Pharaoh, they encountered Moses and Aaron standing there to meet them,</VERS>\n\t\t\t<VERS vnumber=\"21\"> and they said to them, \"May the LORD look on you and judge, because you have made us stink in the opinion of Pharaoh and his servants, so that you have given them an excuse to kill us!\"</VERS>\n\t\t\t<VERS vnumber=\"22\">  Moses returned to the LORD, and said, \"Lord, why have you caused trouble for this people? Why did you ever send me? </VERS>\n\t\t\t<VERS vnumber=\"23\"> From the time I went to speak to Pharaoh in your name, he has caused trouble for this people, and you have certainly not rescued them!\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"6\">\n\t\t\t<VERS vnumber=\"1\"> Then the LORD said to Moses, \"Now you will see what I will do to Pharaoh, for compelled by my strong hand he will release them, and by my strong hand he will drive them out of his land.\"</VERS>\n\t\t\t<VERS vnumber=\"2\"> God spoke to Moses and said to him, \"I am the LORD.</VERS>\n\t\t\t<VERS vnumber=\"3\"> I appeared to Abraham, to Isaac, and to Jacob as God Almighty, but by my name 'the LORD' I was not known to them.</VERS>\n\t\t\t<VERS vnumber=\"4\"> I also established my covenant with them to give them the land of Canaan, where they were living as resident foreigners.</VERS>\n\t\t\t<VERS vnumber=\"5\"> I have also heard the groaning of the Israelites, whom the Egyptians are enslaving, and I have remembered my covenant.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Therefore, tell the Israelites, 'I am the LORD. I will bring you out from your enslavement to the Egyptians, I will rescue you from the hard labor they impose, and I will redeem you with an outstretched arm and with great judgments. </VERS>\n\t\t\t<VERS vnumber=\"7\"> I will take you to myself for a people, and I will be your God. Then you will know that I am the LORD your God, who brought you out from your enslavement to the Egyptians. </VERS>\n\t\t\t<VERS vnumber=\"8\"> I will bring you to the land I swore to give to Abraham, to Isaac, and to Jacob, and I will give it to you as a possession. I am the LORD!'\"</VERS>\n\t\t\t<VERS vnumber=\"9\">  Moses told this to the Israelites, but they did not listen to him because of their discouragement and hard labor. </VERS>\n\t\t\t<VERS vnumber=\"10\"> Then the LORD said to Moses,</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"Go, tell Pharaoh king of Egypt that he must release the Israelites from his land.\" </VERS>\n\t\t\t<VERS vnumber=\"12\"> But Moses replied to the LORD, \"If the Israelites did not listen to me, then how will Pharaoh listen to me, since I speak with difficulty?\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> The LORD spoke to Moses and Aaron and gave them a charge for the Israelites and Pharaoh king of Egypt to bring the Israelites out of the land of Egypt.</VERS>\n\t\t\t<VERS vnumber=\"14\">  These are the heads of their fathers' households: The sons of Reuben, the firstborn son of Israel, were Hanoch and Pallu, Hezron and Carmi. These were the clans of Reuben.</VERS>\n\t\t\t<VERS vnumber=\"15\"> The sons of Simeon were Jemuel, Jamin, Ohad, Jakin, Zohar, and Shaul, the son of a Canaanite woman. These were the clans of Simeon.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Now these are the names of the sons of Levi, according to their records: Gershon, Kohath, and Merari. (The length of Levi's life was 137 years.)</VERS>\n\t\t\t<VERS vnumber=\"17\"> The sons of Gershon, by their families, were Libni and Shimei.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The sons of Kohath were Amram, Izhar, Hebron, and Uzziel. (The length of Kohath's life was 133 years.)</VERS>\n\t\t\t<VERS vnumber=\"19\"> The sons of Merari were Mahli and Mushi. These were the clans of Levi, according to their records.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Amram married his father's sister Jochebed, and she bore him Aaron and Moses. (The length of Amram's life was 137 years.)</VERS>\n\t\t\t<VERS vnumber=\"21\"> The sons of Izhar were Korah, Nepheg, and Zikri.</VERS>\n\t\t\t<VERS vnumber=\"22\"> The sons of Uzziel were Mishael, Elzaphan, and Sithri.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Aaron married Elisheba, the daughter of Amminadab and sister of Nahshon, and she bore him Nadab and Abihu, Eleazar and Ithamar.</VERS>\n\t\t\t<VERS vnumber=\"24\"> The sons of Korah were Assir, Elkanah, and Abiasaph. These were the Korahite clans.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Now Eleazar son of Aaron married one of the daughters of Putiel and she bore him Phinehas. These are the heads of the fathers' households of Levi according to their clans.</VERS>\n\t\t\t<VERS vnumber=\"26\"> It was the same Aaron and Moses to whom the LORD said, \"Bring the Israelites out of the land of Egypt by their regiments.\"</VERS>\n\t\t\t<VERS vnumber=\"27\"> They were the men who were speaking to Pharaoh king of Egypt, in order to bring the Israelites out of Egypt. It was the same Moses and Aaron.</VERS>\n\t\t\t<VERS vnumber=\"28\">  When the LORD spoke to Moses in the land of Egypt, </VERS>\n\t\t\t<VERS vnumber=\"29\"> he said to him, \"I am the LORD. Tell Pharaoh king of Egypt all that I am telling you.\" </VERS>\n\t\t\t<VERS vnumber=\"30\"> But Moses said before the LORD, \"Since I speak with difficulty, why should Pharaoh listen to me?\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"7\">\n\t\t\t<VERS vnumber=\"1\"> So the LORD said to Moses, \"See, I have made you like God to Pharaoh, and your brother Aaron will be your prophet.</VERS>\n\t\t\t<VERS vnumber=\"2\"> You are to speak everything I command you, and your brother Aaron is to tell Pharaoh that he must release the Israelites from his land. </VERS>\n\t\t\t<VERS vnumber=\"3\"> But I will harden Pharaoh's heart, and although I will multiply my signs and my wonders in the land of Egypt, </VERS>\n\t\t\t<VERS vnumber=\"4\"> Pharaoh will not listen to you. I will reach into Egypt and bring out my regiments, my people the Israelites, from the land of Egypt with great acts of judgment. </VERS>\n\t\t\t<VERS vnumber=\"5\"> Then the Egyptians will know that I am the LORD, when I extend my hand over Egypt and bring the Israelites out from among them.</VERS>\n\t\t\t<VERS vnumber=\"6\"> And Moses and Aaron did so; they did just as the LORD commanded them.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Now Moses was eighty years old and Aaron was eighty-three years old when they spoke to Pharaoh.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The LORD said to Moses and Aaron,</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"When Pharaoh says to you, 'Do a miracle,' and you say to Aaron, 'Take your staff and throw it down before Pharaoh,' it will become a snake.\" </VERS>\n\t\t\t<VERS vnumber=\"10\"> When Moses and Aaron went to Pharaoh, they did so, just as the LORD had commanded them, Aaron threw down his staff before Pharaoh and his servants and it became a snake.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Then Pharaoh also summoned wise men and sorcerers, and the magicians of Egypt by their secret arts did the same thing. </VERS>\n\t\t\t<VERS vnumber=\"12\"> Each man threw down his staff, and the staffs became snakes. But Aaron's staff swallowed up their staffs. </VERS>\n\t\t\t<VERS vnumber=\"13\"> Yet Pharaoh's heart became hard, and he did not listen to them, just as the LORD had predicted.</VERS>\n\t\t\t<VERS vnumber=\"14\">  The LORD said to Moses, \"Pharaoh's heart is hard; he refuses to release the people. </VERS>\n\t\t\t<VERS vnumber=\"15\"> Go to Pharaoh in the morning when he goes out to the water. Position yourself to meet him by the edge of the Nile, and take in your hand the staff that was turned into a snake. </VERS>\n\t\t\t<VERS vnumber=\"16\"> Tell him, 'The LORD, the God of the Hebrews, has sent me to you to say, \"Release my people, that they may serve me in the desert!\" But until now you have not listened.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Thus says the LORD: \"By this you will know that I am the LORD: I am going to strike the water of the Nile with the staff that is in my hand, and it will be turned into blood.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Fish in the Nile will die, the Nile will stink, and the Egyptians will be unable to drink water from the Nile.\"'\" </VERS>\n\t\t\t<VERS vnumber=\"19\"> Then the LORD said to Moses, \"Tell Aaron, 'Take your staff and stretch out your hand over Egypt's waters, over their rivers, over their canals, over their ponds, and over all their reservoirs, so that it becomes blood.' There will be blood everywhere in the land of Egypt, even in wooden and stone containers.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> Moses and Aaron did so, just as the LORD had commanded. Moses raised the staff and struck the water that was in the Nile right before the eyes of Pharaoh and his servants, and all the water that was in the Nile was turned to blood.</VERS>\n\t\t\t<VERS vnumber=\"21\"> When the fish that were in the Nile died, the Nile began to stink, so that the Egyptians could not drink water from the Nile. There was blood everywhere in the land of Egypt! </VERS>\n\t\t\t<VERS vnumber=\"22\"> But the magicians of Egypt did the same by their secret arts, and so Pharaoh's heart remained hard, and he refused to listen to Moses and Aaron, just as the LORD had predicted.</VERS>\n\t\t\t<VERS vnumber=\"23\"> And Pharaoh turned and went into his house. He did not pay any attention to this.</VERS>\n\t\t\t<VERS vnumber=\"24\"> All the Egyptians dug around the Nile for water to drink, because they could not drink the water of the Nile.</VERS>\n\t\t\t<VERS vnumber=\"25\">  Seven full days passed after the LORD struck the Nile. </VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"8\">\n\t\t\t<VERS vnumber=\"1\">  Then the LORD said to Moses, \"Go to Pharaoh and tell him, 'Thus says the LORD: \"Release my people in order that they may serve me! </VERS>\n\t\t\t<VERS vnumber=\"2\"> But if you refuse to release them, then I am going to plague all your territory with frogs.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The Nile will swarm with frogs, and they will come up and go into your house, in your bedroom, and on your bed, and into the houses of your servants and your people, and into your ovens and your kneading troughs.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Frogs will come up against you, your people, and all your servants.\"'\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> The LORD spoke to Moses, \"Tell Aaron, 'Extend your hand with your staff over the rivers, over the canals, and over the ponds, and bring the frogs up over the land of Egypt.'\" </VERS>\n\t\t\t<VERS vnumber=\"6\"> So Aaron extended his hand over the waters of Egypt, and frogs came up and covered the land of Egypt.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The magicians did the same with their secret arts and brought up frogs on the land of Egypt too.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Then Pharaoh summoned Moses and Aaron and said, \"Pray to the LORD that he may take the frogs away from me and my people, and I will release the people that they may sacrifice to the LORD.\" </VERS>\n\t\t\t<VERS vnumber=\"9\"> Moses said to Pharaoh, \"You may have the honor over me, when shall I pray for you, your servants, and your people, for the frogs to be removed from you and your houses, so that they will be left only in the Nile?\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> He said, \"Tomorrow.\" And Moses said, \"It will be as you say, so that you may know that there is no one like the LORD our God. </VERS>\n\t\t\t<VERS vnumber=\"11\"> The frogs will depart from you, your houses, your servants, and your people; they will be left only in the Nile.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> Then Moses and Aaron went out from Pharaoh, and Moses cried to the LORD because of the frogs that he had brought on Pharaoh.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The LORD did as Moses asked, the frogs died out of the houses, the villages, and the fields.</VERS>\n\t\t\t<VERS vnumber=\"14\"> The Egyptians piled them in countless heaps, and the land stank. </VERS>\n\t\t\t<VERS vnumber=\"15\"> But when Pharaoh saw that there was relief, he hardened his heart and did not listen to them, just as the LORD had predicted.</VERS>\n\t\t\t<VERS vnumber=\"16\">  The LORD said to Moses, \"Tell Aaron, 'Extend your staff and strike the dust of the ground, and it will become gnats throughout all the land of Egypt.'\" </VERS>\n\t\t\t<VERS vnumber=\"17\"> They did so; Aaron extended his hand with his staff, he struck the dust of the ground, and it became gnats on people and on animals. All the dust of the ground became gnats throughout all the land of Egypt. </VERS>\n\t\t\t<VERS vnumber=\"18\"> When the magicians attempted to bring forth gnats by their secret arts, they could not. So there were gnats on people and on animals. </VERS>\n\t\t\t<VERS vnumber=\"19\"> The magicians said to Pharaoh, \"It is the finger of God!\" But Pharaoh's heart remained hard, and he did not listen to them, just as the LORD had predicted.</VERS>\n\t\t\t<VERS vnumber=\"20\">  The LORD said to Moses, \"Get up early in the morning and position yourself before Pharaoh as he goes out to the water, and tell him, 'Thus says the LORD, \"Release my people that they may serve me! </VERS>\n\t\t\t<VERS vnumber=\"21\"> If you do not release my people, then I am going to send swarms of flies on you and on your servants and on your people and in your houses. The houses of the Egyptians will be full of flies, and even the ground they stand on.</VERS>\n\t\t\t<VERS vnumber=\"22\"> But on that day I will mark off the land of Goshen, where my people are staying, so that no swarms of flies will be there, that you may know that I am the LORD in the midst of this land.</VERS>\n\t\t\t<VERS vnumber=\"23\"> I will put a division between my people and your people. This sign will take place tomorrow.\"'\" </VERS>\n\t\t\t<VERS vnumber=\"24\"> The LORD did so; a thick swarm of flies came into Pharaoh's house and into the houses of his servants, and throughout the whole land of Egypt the land was ruined because of the swarms of flies.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Then Pharaoh summoned Moses and Aaron and said, \"Go, sacrifice to your God within the land.\"</VERS>\n\t\t\t<VERS vnumber=\"26\"> But Moses said, \"That would not be the right thing to do, for the sacrifices we make to the LORD our God would be an abomination to the Egyptians. If we make sacrifices that are an abomination to the Egyptians right before their eyes, will they not stone us?</VERS>\n\t\t\t<VERS vnumber=\"27\"> We must go on a three-day journey into the desert and sacrifice to the LORD our God, just as he is telling us.\"</VERS>\n\t\t\t<VERS vnumber=\"28\"> Pharaoh said, \"I will release you so that you may sacrifice to the LORD your God in the desert. Only you must not go very far. Do pray for me.\"</VERS>\n\t\t\t<VERS vnumber=\"29\"> Moses said, \"I am going to go out from you and pray to the LORD, and the swarms of flies will go away from Pharaoh, from his servants, and from his people tomorrow. Only do not let Pharaoh deal falsely again by not releasing the people to sacrifice to the LORD.\" </VERS>\n\t\t\t<VERS vnumber=\"30\"> So Moses went out from Pharaoh and prayed to the LORD,</VERS>\n\t\t\t<VERS vnumber=\"31\"> and the LORD did as Moses asked, he removed the swarms of flies from Pharaoh, from his servants, and from his people. Not one remained!</VERS>\n\t\t\t<VERS vnumber=\"32\"> But Pharaoh hardened his heart this time also and did not release the people.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"9\">\n\t\t\t<VERS vnumber=\"1\">  Then the LORD said to Moses, \"Go to Pharaoh and tell him, 'Thus says the LORD, the God of the Hebrews, \"Release my people that they may serve me! </VERS>\n\t\t\t<VERS vnumber=\"2\"> For if you refuse to release them and continue holding them,</VERS>\n\t\t\t<VERS vnumber=\"3\"> then the hand of the LORD will surely bring a very terrible plague on your livestock in the field, on the horses, the donkeys, the camels, the herds, and the flocks. </VERS>\n\t\t\t<VERS vnumber=\"4\"> But the Lord will distinguish between the livestock of Israel and the livestock of Egypt, and nothing will die of all that the Israelites have.\"'\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> The LORD set an appointed time, saying, \"Tomorrow the LORD will do this in the land.\" </VERS>\n\t\t\t<VERS vnumber=\"6\"> And the LORD did this on the next day; all the livestock of the Egyptians died, but of the Israelites' livestock not one died. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Pharaoh sent representatives to investigate, and indeed, not even one of the livestock of Israel had died. But Pharaoh's heart remained hard, and he did not release the people.</VERS>\n\t\t\t<VERS vnumber=\"8\">  Then the LORD said to Moses and Aaron, \"Take handfuls of soot from a furnace, and have Moses throw it into the air while Pharaoh is watching.</VERS>\n\t\t\t<VERS vnumber=\"9\"> It will become fine dust over the whole land of Egypt and will cause boils to break out and fester on both people and animals in all the land of Egypt.\" </VERS>\n\t\t\t<VERS vnumber=\"10\"> So they took soot from a furnace and stood before Pharaoh, Moses threw it into the air, and it caused festering boils to break out on both people and animals.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The magicians could not stand before Moses because of the boils, for boils were on the magicians and on all the Egyptians.</VERS>\n\t\t\t<VERS vnumber=\"12\"> But the LORD hardened Pharaoh's heart, and he did not listen to them, just as the LORD had predicted to Moses.</VERS>\n\t\t\t<VERS vnumber=\"13\">  The LORD said to Moses, \"Get up early in the morning, stand before Pharaoh, and tell him, 'Thus says the LORD, the God of the Hebrews: \"Release my people so that they may serve me! </VERS>\n\t\t\t<VERS vnumber=\"14\"> For this time I will send all my plagues on your very self and on your servants and your people, so that you may know that there is no one like me in all the earth. </VERS>\n\t\t\t<VERS vnumber=\"15\"> For by now I could have stretched out my hand and struck you and your people with plague, and you would have been destroyed from the earth. </VERS>\n\t\t\t<VERS vnumber=\"16\"> But for this purpose I have caused you to stand: to show you my strength, and so that my name may be declared in all the earth. </VERS>\n\t\t\t<VERS vnumber=\"17\"> You are still exalting yourself against my people by not releasing them. </VERS>\n\t\t\t<VERS vnumber=\"18\"> I am going to cause very severe hail to rain down about this time tomorrow, such hail as has never occurred in Egypt from the day it was founded until now. </VERS>\n\t\t\t<VERS vnumber=\"19\"> So now, send instructions to gather your livestock and all your possessions in the fields to a safe place. Every person or animal caught in the field and not brought into the house, the hail will come down on them, and they will die!\"'\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> Those of Pharaoh's servants who feared the word of the LORD hurried to bring their servants and livestock into the houses, </VERS>\n\t\t\t<VERS vnumber=\"21\"> but those who did not take the word of the LORD seriously left their servants and their cattle in the field.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Then the LORD said to Moses, \"Extend your hand toward the sky that there may be hail in all the land of Egypt, on people and on animals, and on everything that grows in the field in the land of Egypt.\" </VERS>\n\t\t\t<VERS vnumber=\"23\"> When Moses extended his staff toward the sky, the LORD sent thunder and hail, and fire fell to the earth; so the LORD caused hail to rain down on the land of Egypt. </VERS>\n\t\t\t<VERS vnumber=\"24\"> Hail fell and fire mingled with the hail; the hail was so severe that there had not been any like it in all the land of Egypt since it had become a nation. </VERS>\n\t\t\t<VERS vnumber=\"25\"> The hail struck everything in the open fields, both people and animals, throughout all the land of Egypt. The hail struck everything that grows in the field, and it broke all the trees of the field to pieces. </VERS>\n\t\t\t<VERS vnumber=\"26\"> Only in the land of Goshen, where the Israelites lived, was there no hail.</VERS>\n\t\t\t<VERS vnumber=\"27\"> So Pharaoh sent and summoned Moses and Aaron and said to them, \"I have sinned this time! The LORD is righteous, and I and my people are guilty.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Pray to the LORD, for the mighty thunderings and hail are too much! I will release you and you will stay no longer.\"</VERS>\n\t\t\t<VERS vnumber=\"29\"> Moses said to him, \"When I leave the city I will spread my hands to the LORD, the thunder will cease, and there will be no more hail, so that you may know that the earth belongs to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"30\"> But as for you and your servants, I know that you do not yet fear the LORD God.\"</VERS>\n\t\t\t<VERS vnumber=\"31\"> (Now the flax and the barley were struck by the hail, for the barley had ripened and the flax was in bud. </VERS>\n\t\t\t<VERS vnumber=\"32\"> But the wheat and the spelt were not struck, for they are later crops.)</VERS>\n\t\t\t<VERS vnumber=\"33\"> So Moses left Pharaoh, went out of the city, and spread out his hands to the LORD, and the thunder and the hail ceased, and the rain stopped pouring on the earth.</VERS>\n\t\t\t<VERS vnumber=\"34\"> When Pharaoh saw that the rain and hail and thunder ceased, he sinned again: both he and his servants hardened their hearts. </VERS>\n\t\t\t<VERS vnumber=\"35\"> So Pharaoh's heart remained hard, and he did not release the Israelites, as the LORD had predicted through Moses.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"10\">\n\t\t\t<VERS vnumber=\"1\">  The LORD said to Moses, \"Go to Pharaoh, for I have hardened his heart and the heart of his servants, in order to display these signs of mine before him,</VERS>\n\t\t\t<VERS vnumber=\"2\"> and in order that in the hearing of your son and your grandson you may tell how I made fools of the Egyptians and about my signs that I displayed among them, so that you may know that I am the LORD.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> So Moses and Aaron came to Pharaoh and told him, \"Thus says the LORD, the God of the Hebrews: 'How long do you refuse to humble yourself before me? Release my people so that they may serve me! </VERS>\n\t\t\t<VERS vnumber=\"4\"> But if you refuse to release my people, I am going to bring locusts into your territory tomorrow. </VERS>\n\t\t\t<VERS vnumber=\"5\"> They will cover the surface of the earth, so that you will be unable to see the ground. They will eat the remainder of what escaped, what is left over for you, from the hail, and they will eat every tree that grows for you from the field.</VERS>\n\t\t\t<VERS vnumber=\"6\"> They will fill your houses, the houses of your servants, and all the houses of Egypt, such as neither your fathers nor your grandfathers have seen since they have been in the land until this day!'\" Then Moses turned and went out from Pharaoh.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Pharaoh's servants said to him, \"How long will this man be a menace to us? Release the people so that they may serve the LORD their God. Do you not know that Egypt is destroyed?\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> So Moses and Aaron were brought back to Pharaoh, and he said to them, \"Go, serve the LORD your God. Exactly who is going with you?\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> Moses said, \"We will go with our young and our old, with our sons and our daughters, and with our sheep and our cattle we will go, because we are to hold a pilgrim feast for the LORD.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> He said to them, \"The LORD will need to be with you if I release you and your dependents! Watch out! Trouble is right in front of you!</VERS>\n\t\t\t<VERS vnumber=\"11\"> No! Go, you men only, and serve the LORD, for that is what you want.\" Then Moses and Aaron were driven out of Pharaoh's presence.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The LORD said to Moses, \"Extend your hand over the land of Egypt for the locusts, that they may come up over the land of Egypt and eat everything that grows in the ground, everything that the hail has left.\" </VERS>\n\t\t\t<VERS vnumber=\"13\"> So Moses extended his staff over the land of Egypt, and then the LORD brought an east wind on the land all that day and all night. The morning came, and the east wind had brought up the locusts! </VERS>\n\t\t\t<VERS vnumber=\"14\"> The locusts went up over all the land of Egypt and settled down in all the territory of Egypt. It was very severe; there had been no locusts like them before, nor will there be such ever again.</VERS>\n\t\t\t<VERS vnumber=\"15\"> They covered the surface of all the ground, so that the ground became dark with them, and they ate all the vegetation of the ground and all the fruit of the trees that the hail had left. Nothing green remained on the trees or on anything that grew in the fields throughout the whole land of Egypt.</VERS>\n\t\t\t<VERS vnumber=\"16\">  Then Pharaoh quickly summoned Moses and Aaron and said, \"I have sinned against the LORD your God and against you! </VERS>\n\t\t\t<VERS vnumber=\"17\"> So now, forgive my sin this time only, and pray to the LORD your God that he would only take this death away from me.\" </VERS>\n\t\t\t<VERS vnumber=\"18\"> Moses went out from Pharaoh and prayed to the LORD, </VERS>\n\t\t\t<VERS vnumber=\"19\"> and the LORD turned a very strong west wind, and it picked up the locusts and blew them into the Red Sea. Not one locust remained in all the territory of Egypt. </VERS>\n\t\t\t<VERS vnumber=\"20\"> But the LORD hardened Pharaoh's heart, and he did not release the Israelites.</VERS>\n\t\t\t<VERS vnumber=\"21\">  The LORD said to Moses, \"Extend your hand toward heaven so that there may be darkness over the land of Egypt, a darkness so thick it can be felt.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> So Moses extended his hand toward heaven, and there was absolute darkness throughout the land of Egypt for three days.</VERS>\n\t\t\t<VERS vnumber=\"23\"> No one could see another person, and no one could rise from his place for three days. But the Israelites had light in the places where they lived.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Then Pharaoh summoned Moses and said, \"Go, serve the LORD, only your flocks and herds will be detained. Even your families may go with you.\"</VERS>\n\t\t\t<VERS vnumber=\"25\"> But Moses said, \"Will you also provide us with sacrifices and burnt offerings that we may present them to the LORD our God? </VERS>\n\t\t\t<VERS vnumber=\"26\"> Our livestock must also go with us! Not a hoof is to be left behind! For we must take these animals to serve the LORD our God. Until we arrive there, we do not know what we must use to serve the LORD.\"</VERS>\n\t\t\t<VERS vnumber=\"27\"> But the LORD hardened Pharaoh's heart, and he was not willing to release them.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Pharaoh said to him, \"Go from me! Watch out for yourself! Do not appear before me again, for when you see my face you will die!\" </VERS>\n\t\t\t<VERS vnumber=\"29\"> Moses said, \"As you wish! I will not see your face again.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"11\">\n\t\t\t<VERS vnumber=\"1\">  The LORD said to Moses, \"I will bring one more plague on Pharaoh and on Egypt; after that he will release you from this place. When he releases you, he will drive you out completely from this place.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Instruct the people that each man and each woman is to request from his or her neighbor items of silver and gold.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> (Now the LORD granted the people favor with the Egyptians. Moreover, the man Moses was very great in the land of Egypt, respected by Pharaoh's servants and by the Egyptian people.)</VERS>\n\t\t\t<VERS vnumber=\"4\"> Moses said, \"Thus says the LORD: 'About midnight I will go throughout Egypt,</VERS>\n\t\t\t<VERS vnumber=\"5\"> and all the firstborn in the land of Egypt will die, from the firstborn son of Pharaoh who sits on his throne, to the firstborn son of the slave girl who is at her hand mill, and all the firstborn of the cattle. </VERS>\n\t\t\t<VERS vnumber=\"6\"> There will be a great cry throughout the whole land of Egypt, such as there has never been, nor ever will be again.</VERS>\n\t\t\t<VERS vnumber=\"7\"> But against any of the Israelites not even a dog will bark against either people or animals, so that you may know that the LORD distinguishes between Egypt and Israel.' </VERS>\n\t\t\t<VERS vnumber=\"8\"> All these your servants will come down to me and bow down to me, saying, 'Go, you and all the people who follow you,' and after that I will go out.\" Then Moses went out from Pharaoh in great anger.</VERS>\n\t\t\t<VERS vnumber=\"9\"> The LORD said to Moses, \"Pharaoh will not listen to you, so that my wonders may be multiplied in the land of Egypt.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> So Moses and Aaron did all these wonders before Pharaoh, but the LORD hardened Pharaoh's heart, and he did not release the Israelites from his land.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"12\">\n\t\t\t<VERS vnumber=\"1\">  The LORD said to Moses and Aaron in the land of Egypt,</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"This month is to be your beginning of months; it will be your first month of the year.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Tell the whole community of Israel, 'In the tenth day of this month they each must take a lamb for themselves according to their families, a lamb for each household.</VERS>\n\t\t\t<VERS vnumber=\"4\"> If any household is too small for a lamb, the man and his next-door neighbor are to take a lamb according to the number of people, you will make your count for the lamb according to how much each one can eat.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Your lamb must be perfect, a male, one year old; you may take it from the sheep or from the goats. </VERS>\n\t\t\t<VERS vnumber=\"6\"> You must care for it until the fourteenth day of this month, and then the whole community of Israel will kill it around sundown.</VERS>\n\t\t\t<VERS vnumber=\"7\"> They will take some of the blood and put it on the two side posts and top of the doorframe of the houses where they will eat it.</VERS>\n\t\t\t<VERS vnumber=\"8\"> They will eat the meat the same night; they will eat it roasted over the fire with bread made without yeast and with bitter herbs. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Do not eat it raw or boiled in water, but roast it over the fire with its head, its legs, and its entrails. </VERS>\n\t\t\t<VERS vnumber=\"10\"> You must leave nothing until morning, but you must burn with fire whatever remains of it until morning.</VERS>\n\t\t\t<VERS vnumber=\"11\"> This is how you are to eat it, dressed to travel, your sandals on your feet, and your staff in your hand. You are to eat it in haste. It is the LORD'S Passover.</VERS>\n\t\t\t<VERS vnumber=\"12\"> I will pass through the land of Egypt in the same night, and I will attack all the firstborn in the land of Egypt, both of humans and of animals, and on all the gods of Egypt I will execute judgment. I am the LORD. </VERS>\n\t\t\t<VERS vnumber=\"13\"> The blood will be a sign for you on the houses where you are, so that when I see the blood I will pass over you, and this plague will not fall on you to destroy you when I attack the land of Egypt.</VERS>\n\t\t\t<VERS vnumber=\"14\"> This day will become a memorial for you, and you will celebrate it as a festival to the LORD, you will celebrate it perpetually as a lasting ordinance.</VERS>\n\t\t\t<VERS vnumber=\"15\"> For seven days you must eat bread made without yeast. Surely on the first day you must put away yeast from your houses because anyone who eats bread made with yeast from the first day to the seventh day will be cut off from Israel.</VERS>\n\t\t\t<VERS vnumber=\"16\"> On the first day there will be a holy convocation, and on the seventh day there will be a holy convocation for you. You must do no work of any kind on them, only what every person will eat, that alone may be prepared for you.</VERS>\n\t\t\t<VERS vnumber=\"17\"> So you will keep the Feast of Unleavened Bread, because on this very day I brought your regiments out from the land of Egypt, and so you must keep this day perpetually as a lasting ordinance.</VERS>\n\t\t\t<VERS vnumber=\"18\"> In the first month, from the fourteenth day of the month, in the evening, you will eat bread made without yeast until the twenty-first day of the month in the evening. </VERS>\n\t\t\t<VERS vnumber=\"19\"> For seven days yeast must not be found in your houses, for whoever eats what is made with yeast, that person will be cut off from the community of Israel, whether a foreigner or one born in the land.</VERS>\n\t\t\t<VERS vnumber=\"20\"> You will not eat anything made with yeast; in all the places where you live you must eat bread made without yeast.'\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> Then Moses summoned all the elders of Israel, and told them, \"Go and select for yourselves a lamb or young goat for your families, and kill the Passover animals.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Take a branch of hyssop, dip it in the blood that is in the basin, and apply to the top of the doorframe and the two side posts some of the blood that is in the basin. Not one of you is to go out the door of his house until morning. </VERS>\n\t\t\t<VERS vnumber=\"23\"> For the LORD will pass through to strike Egypt, and when he sees the blood on the top of the doorframe and the two side posts, then the LORD will pass over the door, and he will not permit the destroyer to enter your houses to strike you.</VERS>\n\t\t\t<VERS vnumber=\"24\"> You must observe this event as an ordinance for you and for your children forever.</VERS>\n\t\t\t<VERS vnumber=\"25\"> When you enter the land that the LORD will give to you, just as he said, you must observe this ceremony. </VERS>\n\t\t\t<VERS vnumber=\"26\"> When your children ask you, 'What does this ceremony mean to you?',</VERS>\n\t\t\t<VERS vnumber=\"27\"> then you will say, 'It is the sacrifice of the LORD's Passover, when he passed over the houses of the Israelites in Egypt, when he struck Egypt and delivered our households.'\" The people bowed down low to the ground, </VERS>\n\t\t\t<VERS vnumber=\"28\"> and the Israelites went away and did exactly as the LORD had commanded Moses and Aaron.</VERS>\n\t\t\t<VERS vnumber=\"29\">  It happened at midnight, the LORD attacked all the firstborn in the land of Egypt, from the firstborn of Pharaoh who sat on his throne to the firstborn of the captive who was in the prison, and all the firstborn of the cattle.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Pharaoh got up in the night, along with all his servants and all Egypt, and there was a great cry in Egypt, for there was no house in which there was not someone dead. </VERS>\n\t\t\t<VERS vnumber=\"31\"> Pharaoh summoned Moses and Aaron in the night and said, \"Get up, get out from among my people, both you and the Israelites! Go, serve the LORD as you have requested!</VERS>\n\t\t\t<VERS vnumber=\"32\"> Also, take your flocks and your herds, just as you have requested, and leave. But bless me also.\"</VERS>\n\t\t\t<VERS vnumber=\"33\"> The Egyptians were urging the people on, in order to send them out of the land quickly, for they were saying, \"We are all dead!\" </VERS>\n\t\t\t<VERS vnumber=\"34\"> So the people took their dough before the yeast was added, with their kneading troughs bound up in their clothing on their shoulders. </VERS>\n\t\t\t<VERS vnumber=\"35\"> Now the Israelites had done as Moses told them, they had requested from the Egyptians silver and gold items and clothing.</VERS>\n\t\t\t<VERS vnumber=\"36\"> The LORD gave the people favor in the sight of the Egyptians, and they gave them whatever they wanted, and so they plundered Egypt.</VERS>\n\t\t\t<VERS vnumber=\"37\"> The Israelites journeyed from Rameses to Sukkoth. There were about 600,000 men on foot, plus their dependants.</VERS>\n\t\t\t<VERS vnumber=\"38\"> A mixed multitude also went up with them, and flocks and herds, a very large number of cattle.</VERS>\n\t\t\t<VERS vnumber=\"39\"> They baked cakes of bread without yeast using the dough they had brought from Egypt, for it was made without yeast, because they were thrust out of Egypt and were not able to delay, they could not prepare food for themselves either.</VERS>\n\t\t\t<VERS vnumber=\"40\"> Now the length of time the Israelites lived in Egypt was 430 years.</VERS>\n\t\t\t<VERS vnumber=\"41\"> At the end of the 430 years, on the very day, all the regiments of the LORD went out of the land of Egypt. </VERS>\n\t\t\t<VERS vnumber=\"42\"> It was a night of vigil for the LORD to bring them out from the land of Egypt, and so on this night all Israel is to keep the vigil to the LORD for generations to come.</VERS>\n\t\t\t<VERS vnumber=\"43\">  The LORD said to Moses and Aaron, \"This is the ordinance of the Passover. No foreigner may share in eating it.</VERS>\n\t\t\t<VERS vnumber=\"44\"> But everyone's servant who is bought for money, after you have circumcised him, may eat it.</VERS>\n\t\t\t<VERS vnumber=\"45\"> A foreigner and a hired worker must not eat it.</VERS>\n\t\t\t<VERS vnumber=\"46\"> It must be eaten in one house; you must not bring any of the meat outside the house, and you must not break a bone of it.</VERS>\n\t\t\t<VERS vnumber=\"47\"> The whole community of Israel must observe it.</VERS>\n\t\t\t<VERS vnumber=\"48\"> \"When a foreigner lives with you and wants to observe the Passover to the LORD, all his males must be circumcised, and then he may approach and observe it, and he will be like one who is born in the land, but no uncircumcised person may eat of it.</VERS>\n\t\t\t<VERS vnumber=\"49\"> The same law will apply to the person who is native-born and to the foreigner who lives among you.\"</VERS>\n\t\t\t<VERS vnumber=\"50\"> So all the Israelites did exactly as the LORD commanded Moses and Aaron.</VERS>\n\t\t\t<VERS vnumber=\"51\"> And on this very day the LORD brought the Israelites out of the land of Egypt by their regiments.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"13\">\n\t\t\t<VERS vnumber=\"1\">  The LORD spoke to Moses: </VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Set apart to me every firstborn male, the first offspring of every womb among the Israelites, whether human or animal; it is mine.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> Moses said to the people, \"Remember this day on which you came out from Egypt, from the place where you were enslaved, for the LORD brought you out of there with a mighty hand, and no bread made with yeast may be eaten.</VERS>\n\t\t\t<VERS vnumber=\"4\"> On this day, in the month of Abib, you are going out.</VERS>\n\t\t\t<VERS vnumber=\"5\"> When the LORD brings you to the land of the Canaanites, Hittites, Amorites, Hivites, and Jebusites, which he swore to your fathers to give you, a land flowing with milk and honey, then you will keep this ceremony in this month. </VERS>\n\t\t\t<VERS vnumber=\"6\"> For seven days you must eat bread made without yeast, and on the seventh day there is to be a festival to the LORD. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Bread made without yeast must be eaten for seven days; no bread made with yeast shall be seen among you, and you must have no yeast among you within any of your borders.</VERS>\n\t\t\t<VERS vnumber=\"8\"> You are to tell your son on that day, 'It is because of what the LORD did for me when I came out of Egypt.' </VERS>\n\t\t\t<VERS vnumber=\"9\">  It will be a sign for you on your hand and a memorial on your forehead, so that the law of the LORD may be in your mouth, for with a mighty hand the LORD brought you out of Egypt. </VERS>\n\t\t\t<VERS vnumber=\"10\"> So you must keep this ordinance at its appointed time from year to year.</VERS>\n\t\t\t<VERS vnumber=\"11\"> When the LORD brings you into the land of the Canaanites, as he swore to you and to your fathers, and gives it to you, </VERS>\n\t\t\t<VERS vnumber=\"12\"> then you must give over to the LORD the first offspring of every womb. Every firstling of a beast that you have, the males will be the LORD's.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Every firstling of a donkey you must redeem with a lamb, and if you do not redeem it, then you must break its neck. Every firstborn of your sons you must redeem.</VERS>\n\t\t\t<VERS vnumber=\"14\">  In the future, when your son asks you 'What is this?' you are to tell him, 'With a mighty hand the LORD brought us out from Egypt, from the land of slavery.</VERS>\n\t\t\t<VERS vnumber=\"15\"> When Pharaoh stubbornly refused to release us, the LORD killed all the firstborn in the land of Egypt, from the firstborn of people to the firstborn of animals. That is why I am sacrificing to the LORD the first male offspring of every womb, but all my firstborn sons I redeem.' </VERS>\n\t\t\t<VERS vnumber=\"16\"> It will be for a sign on your hand and for frontlets on your forehead, for with a mighty hand the LORD brought us out of Egypt.\"</VERS>\n\t\t\t<VERS vnumber=\"17\">  When Pharaoh released the people, God did not lead them by the way to the land of the Philistines, although that was nearby, for God said, \"Lest the people change their minds and return to Egypt when they experience war.\" </VERS>\n\t\t\t<VERS vnumber=\"18\"> So God brought the people around by the way of the desert to the Red Sea, and the Israelites went up from the land of Egypt prepared for battle.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Moses took the bones of Joseph with him, for Joseph had made the Israelites solemnly swear, \"God will surely attend to you, and you will carry my bones up from this place with you.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> They journeyed from Sukkoth and camped in Etham, on the edge of the desert.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Now the LORD was going before them by day in a pillar of cloud to lead them in the way, and by night in a pillar of fire to give them light, so that they could travel day or night.</VERS>\n\t\t\t<VERS vnumber=\"22\"> He did not remove the pillar of cloud by day nor the pillar of fire by night from before the people.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"14\">\n\t\t\t<VERS vnumber=\"1\">  The LORD spoke to Moses: </VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Tell the Israelites that they must turn and camp before Pi-hahiroth, between Migdol and the sea; you are to camp by the sea before Baal Zephon opposite it.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Pharaoh will think regarding the Israelites, 'They are wandering around confused in the land, the desert has closed in on them.'</VERS>\n\t\t\t<VERS vnumber=\"4\"> I will harden Pharaoh's heart, and he will chase after them. I will gain honor because of Pharaoh and because of all his army, and the Egyptians will know that I am the LORD.\" So this is what they did.</VERS>\n\t\t\t<VERS vnumber=\"5\"> When it was reported to the king of Egypt that the people had fled, the heart of Pharaoh and his servants was turned against the people, and the king and his servants said, \"What in the world have we done? For we have released the people of Israel from serving us!\" </VERS>\n\t\t\t<VERS vnumber=\"6\"> Then he prepared his chariots and took his army with him. </VERS>\n\t\t\t<VERS vnumber=\"7\"> He took six hundred select chariots, and all the rest of the chariots of Egypt, and officers on all of them.</VERS>\n\t\t\t<VERS vnumber=\"8\"> But the LORD hardened the heart of Pharaoh king of Egypt, and he chased after the Israelites. Now the Israelites were going out defiantly.</VERS>\n\t\t\t<VERS vnumber=\"9\"> The Egyptians chased after them, and all the horses and chariots of Pharaoh and his horsemen and his army overtook them camping by the sea, beside Pi-hahiroth, before Baal-Zephon.</VERS>\n\t\t\t<VERS vnumber=\"10\"> When Pharaoh got closer, the Israelites looked up, and there were the Egyptians marching after them, and they were terrified. The Israelites cried out to the LORD,</VERS>\n\t\t\t<VERS vnumber=\"11\"> and they said to Moses, \"Is it because there are no graves in Egypt that you have taken us away to die in the desert? What in the world have you done to us by bringing us out of Egypt? </VERS>\n\t\t\t<VERS vnumber=\"12\"> Isn't this what we told you in Egypt, 'Leave us alone so that we can serve the Egyptians, because it is better for us to serve the Egyptians than to die in the desert!'\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> Moses said to the people, \"Do not fear! Stand firm and see the salvation of the LORD that he will provide for you today; for the Egyptians that you see today you will never, ever see again.</VERS>\n\t\t\t<VERS vnumber=\"14\"> The LORD will fight for you, and you can be still.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> The LORD said to Moses, \"Why do you cry out to me? Tell the Israelites to move on.</VERS>\n\t\t\t<VERS vnumber=\"16\"> And as for you, lift up your staff and extend your hand toward the sea and divide it, so that the Israelites may go through the middle of the sea on dry ground. </VERS>\n\t\t\t<VERS vnumber=\"17\"> And as for me, I am going to harden the hearts of the Egyptians so that they will come after them, that I may be honored because of Pharaoh and his army and his chariots and his horsemen.</VERS>\n\t\t\t<VERS vnumber=\"18\"> And the Egyptians will know that I am the LORD when I have gained my honor because of Pharaoh, his chariots, and his horsemen.\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> The angel of God, who was going before the camp of Israel, moved and went behind them, and the pillar of cloud moved from before them and stood behind them. </VERS>\n\t\t\t<VERS vnumber=\"20\"> It came between the Egyptian camp and the Israelite camp; it was a dark cloud and it lit up the night so that one camp did not come near the other the whole night.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Moses stretched out his hand toward the sea, and the LORD drove the sea apart by a strong east wind all that night, and he made the sea into dry land, and the water was divided. </VERS>\n\t\t\t<VERS vnumber=\"22\"> So the Israelites went through the middle of the sea on dry ground, the water forming a wall for them on their right and on their left.</VERS>\n\t\t\t<VERS vnumber=\"23\"> The Egyptians chased them and followed them into the middle of the sea, all the horses of Pharaoh, his chariots, and his horsemen.</VERS>\n\t\t\t<VERS vnumber=\"24\"> In the morning watch the LORD looked down on the Egyptian army through the pillar of fire and cloud, and he threw the Egyptian army into a panic.</VERS>\n\t\t\t<VERS vnumber=\"25\"> He jammed the wheels of their chariots so that they had difficulty driving, and the Egyptians said, \"Let's flee from Israel, for the LORD fights for them against Egypt!\"</VERS>\n\t\t\t<VERS vnumber=\"26\"> The LORD said to Moses, \"Extend your hand toward the sea, so that the waters may flow back on the Egyptians, on their chariots, and on their horsemen!\" </VERS>\n\t\t\t<VERS vnumber=\"27\"> So Moses extended his hand toward the sea, and the sea returned to its normal state when the sun began to rise. Now the Egyptians were fleeing before it, but the LORD overthrew the Egyptians in the middle of the sea. </VERS>\n\t\t\t<VERS vnumber=\"28\"> The water returned and covered the chariots and the horsemen and all the army of Pharaoh that was coming after the Israelites into the sea, not so much as one of them survived!</VERS>\n\t\t\t<VERS vnumber=\"29\"> But the Israelites walked on dry ground in the middle of the sea, the water forming a wall for them on their right and on their left.</VERS>\n\t\t\t<VERS vnumber=\"30\"> So the LORD saved Israel on that day from the power of the Egyptians, and Israel saw the Egyptians dead on the shore of the sea. </VERS>\n\t\t\t<VERS vnumber=\"31\"> When Israel saw the great power that the LORD had exercised over the Egyptians, they feared the LORD, and they believed in the LORD and in his servant Moses.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"15\">\n\t\t\t<VERS vnumber=\"1\">  Then Moses and the Israelites sang this song to the LORD. They said, \"I will sing to the LORD, for he has triumphed gloriously, the horse and its rider he has thrown into the sea.</VERS>\n\t\t\t<VERS vnumber=\"2\"> The LORD is my strength and my song, and he has become my salvation. This is my God, and I will praise him, my father's God, and I will exalt him.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The LORD is a warrior, the LORD is his name.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The chariots of Pharaoh and his army he has thrown into the sea, and his chosen officers were drowned in the Red Sea.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The depths have covered them, they went down to the bottom like a stone.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Your right hand, O LORD, was majestic in power, your right hand, O LORD, shattered the enemy.</VERS>\n\t\t\t<VERS vnumber=\"7\"> In the abundance of your majesty you have overthrown those who rise up against you. You sent forth your wrath; it consumed them like stubble.</VERS>\n\t\t\t<VERS vnumber=\"8\"> By the blast of your nostrils the waters were piled up, the flowing water stood upright like a heap, and the deep waters were solidified in the heart of the sea.</VERS>\n\t\t\t<VERS vnumber=\"9\"> The enemy said, 'I will chase, I will overtake, I will divide the spoil; my desire will be satisfied on them. I will draw my sword, my hand will destroy them.'</VERS>\n\t\t\t<VERS vnumber=\"10\"> But you blew with your breath, and the sea covered them. They sank like lead in the mighty waters.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Who is like you, O LORD, among the gods? Who is like you?, majestic in holiness, fearful in praises, working wonders?</VERS>\n\t\t\t<VERS vnumber=\"12\"> You stretched out your right hand, the earth swallowed them.</VERS>\n\t\t\t<VERS vnumber=\"13\"> By your loyal love you will lead the people whom you have redeemed; you will guide them by your strength to your holy dwelling place.</VERS>\n\t\t\t<VERS vnumber=\"14\"> The nations will hear and tremble; anguish will seize the inhabitants of Philistia.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Then the chiefs of Edom will be terrified, trembling will seize the leaders of Moab, and the inhabitants of Canaan will shake.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Fear and dread will fall on them; by the greatness of your arm they will be as still as stone until your people pass by, O LORD, until the people whom you have bought pass by.</VERS>\n\t\t\t<VERS vnumber=\"17\"> You will bring them in and plant them in the mountain of your inheritance, in the place you made for your residence, O Lord, the sanctuary, O LORD, that your hands have established.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The LORD will reign forever and ever!</VERS>\n\t\t\t<VERS vnumber=\"19\"> For the horses of Pharaoh came with his chariots and his footmen into the sea, and the LORD brought back the waters of the sea on them, but the Israelites walked on dry land in the middle of the sea.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> Miriam the prophetess, the sister of Aaron, took a hand-drum in her hand, and all the women went out after her with hand-drums and with dances.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Miriam sang in response to them, \"Sing to the LORD, for he has triumphed gloriously; the horse and its rider he has thrown into the sea.\"</VERS>\n\t\t\t<VERS vnumber=\"22\">  Then Moses led Israel to journey away from the Red Sea. They went out to the Desert of Shur, walked for three days into the desert, and found no water. </VERS>\n\t\t\t<VERS vnumber=\"23\"> Then they came to Marah, but they were not able to drink the waters of Marah, because they were bitter. (That is why its name was Marah.)</VERS>\n\t\t\t<VERS vnumber=\"24\"> So the people murmured against Moses, saying, \"What can we drink?\" </VERS>\n\t\t\t<VERS vnumber=\"25\"> He cried out to the LORD, and the LORD showed him a tree. When Moses threw it into the water, the water became safe to drink. There the Lord made for them a binding ordinance, and there he tested them. </VERS>\n\t\t\t<VERS vnumber=\"26\"> He said, \"If you will diligently obey the LORD your God, and do what is right in his sight, and pay attention to his commandments, and keep all his statutes, then all the diseases that I brought on the Egyptians I will not bring on you, for I, the LORD, am your healer.\"</VERS>\n\t\t\t<VERS vnumber=\"27\"> Then they came to Elim, where there were twelve wells of water and seventy palm trees, and they camped there by the water.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"16\">\n\t\t\t<VERS vnumber=\"1\">  When they journeyed from Elim, the entire company of Israelites came to the Desert of Sin, which is between Elim and Sinai, on the fifteenth day of the second month after their exodus from the land of Egypt. </VERS>\n\t\t\t<VERS vnumber=\"2\"> The entire company of Israelites murmured against Moses and Aaron in the desert. </VERS>\n\t\t\t<VERS vnumber=\"3\"> The Israelites said to them, \"If only we had died by the hand of the LORD in the land of Egypt, when we sat by the pots of meat, when we ate bread to the full, for you have brought us out into this desert to kill this whole assembly with hunger!\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> Then the LORD said to Moses, \"I am going to rain bread from heaven for you, and the people will go out and gather the amount for each day, so that I may test them. Will they will walk in my law or not? </VERS>\n\t\t\t<VERS vnumber=\"5\"> On the sixth day they will prepare what they bring in, and it will be twice as much as they gather every other day.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> Moses and Aaron said to all the Israelites, \"In the evening you will know that the LORD has brought you out of the land of Egypt, </VERS>\n\t\t\t<VERS vnumber=\"7\"> and in the morning you will see the glory of the LORD, because he has heard your murmurings against the LORD. As for us, what are we, that you should murmur against us?\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> Moses said, \"You will know this when the LORD gives you meat to eat in the evening and bread in the morning to satisfy you, because the LORD has heard your murmurings that you are murmuring against him. As for us, what are we? Your murmurings are not against us, but against the LORD.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> Then Moses said to Aaron, \"Tell the whole community of the Israelites, 'Come before the LORD, because he has heard your murmurings.'\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> As Aaron spoke to the whole community of the Israelites and they looked toward the desert, there the glory of the LORD appeared in the cloud, </VERS>\n\t\t\t<VERS vnumber=\"11\"> and the LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"12\"> \"I have heard the murmurings of the Israelites. Tell them, 'During the evening you will eat meat, and in the morning you will be satisfied with bread, so that you may know that I am the LORD your God.'\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> In the evening the quail came up and covered the camp, and in the morning a layer of dew was all around the camp. </VERS>\n\t\t\t<VERS vnumber=\"14\"> When the layer of dew had evaporated, there on the surface of the desert was a thin flaky substance, thin like frost on the earth. </VERS>\n\t\t\t<VERS vnumber=\"15\"> When the Israelites saw it, they said to one another, \"What is it?\" because they did not know what it was. Moses said to them, \"It is the bread that the LORD has given you for food.</VERS>\n\t\t\t<VERS vnumber=\"16\"> \"This is what the LORD has commanded: 'Each person is to gather from it what he can eat, an omer per person according to the number of your people; each one will pick it up for whoever lives in his tent.'\" </VERS>\n\t\t\t<VERS vnumber=\"17\"> The Israelites did so, and they gathered, some more, some less.</VERS>\n\t\t\t<VERS vnumber=\"18\"> When they measured with an omer, the one who gathered much had nothing left over, and the one who gathered little lacked nothing; each one had gathered what he could eat.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Moses said to them, \"No one is to keep any of it until morning.\" </VERS>\n\t\t\t<VERS vnumber=\"20\"> But they did not listen to Moses; some kept part of it until morning, and it was full of worms and began to stink, and Moses was angry with them. </VERS>\n\t\t\t<VERS vnumber=\"21\"> So they gathered it each morning, each person according to what he could eat, and when the sun got hot, it would melt.</VERS>\n\t\t\t<VERS vnumber=\"22\"> And on the sixth day they gathered twice as much food, two omers per person; and all the leaders of the community came and told Moses. </VERS>\n\t\t\t<VERS vnumber=\"23\"> He said to them, \"This is what the LORD has said: 'Tomorrow is a time of cessation from work, a holy Sabbath to the LORD. Whatever you want to bake, bake today; whatever you want to boil, boil today; whatever is left put aside for yourselves to be kept until morning.'\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> So they put it aside until the morning, just as Moses had commanded, and it did not stink, nor were there any worms in it.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Moses said, \"Eat it today, for today is a Sabbath to the LORD; today you will not find it in the area.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Six days you will gather it, but on the seventh day, the Sabbath, there will not be any.\"</VERS>\n\t\t\t<VERS vnumber=\"27\"> On the seventh day some of the people went out to gather it, but they found nothing.</VERS>\n\t\t\t<VERS vnumber=\"28\"> So the LORD said to Moses, \"How long do you refuse to obey my commandments and my instructions? </VERS>\n\t\t\t<VERS vnumber=\"29\"> See, because the LORD has given you the Sabbath, that is why he is giving you food for two days on the sixth day. Each of you stay where you are; let no one go out of his place on the seventh day.\" </VERS>\n\t\t\t<VERS vnumber=\"30\"> So the people rested on the seventh day.</VERS>\n\t\t\t<VERS vnumber=\"31\"> The house of Israel called its name \"manna.\" It was like coriander seed and was white, and it tasted like wafers with honey.</VERS>\n\t\t\t<VERS vnumber=\"32\"> Moses said, \"This is what the LORD has commanded: 'Fill an omer with it to be kept for generations to come, so that they may see the food I fed you in the desert when I brought you out from the land of Egypt.'\" </VERS>\n\t\t\t<VERS vnumber=\"33\"> Moses said to Aaron, \"Take a jar and put in it an omer full of manna, and place it before the LORD to be kept for generations to come.\"</VERS>\n\t\t\t<VERS vnumber=\"34\"> Just as the LORD commanded Moses, so Aaron placed it before the Testimony for safekeeping.</VERS>\n\t\t\t<VERS vnumber=\"35\"> Now the Israelites ate manna forty years, until they came to a land that was inhabited; they ate manna until they came to the border of the land of Canaan.</VERS>\n\t\t\t<VERS vnumber=\"36\"> (Now an omer is one tenth of an ephah.)</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"17\">\n\t\t\t<VERS vnumber=\"1\">  The whole community of the Israelites traveled on their journey from the Desert of Sin according to the LORD's instruction, and they pitched camp in Rephidim. Now there was no water for the people to drink.</VERS>\n\t\t\t<VERS vnumber=\"2\"> So the people contended with Moses, and they said, \"Give us water to drink!\" Moses said to them, \"Why do you contend with me? Why do you test the LORD?\" </VERS>\n\t\t\t<VERS vnumber=\"3\"> But the people were very thirsty there for water, and they murmured against Moses and said, \"Why in the world did you bring us up out of Egypt, to kill us and our children and our cattle with thirst?\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> Then Moses cried out to the LORD, \"What will I do with this people?, a little more and they will stone me!\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> The LORD said to Moses, \"Go over before the people; take with you some of the elders of Israel and take in your hand your staff with which you struck the Nile and go. </VERS>\n\t\t\t<VERS vnumber=\"6\"> I will be standing before you there on the rock in Horeb, and you will strike the rock, and water will come out of it so that the people may drink.\" And Moses did so in plain view of the elders of Israel.</VERS>\n\t\t\t<VERS vnumber=\"7\"> He called the name of the place Massah and Meribah, because of the contending of the Israelites and because of their testing the LORD, saying, \"Is the LORD among us or not?\"</VERS>\n\t\t\t<VERS vnumber=\"8\">  Amalek came and attacked Israel in Rephidim. </VERS>\n\t\t\t<VERS vnumber=\"9\"> So Moses said to Joshua, \"Choose some of our men and go out, fight against Amalek. Tomorrow I will stand on top of the hill with the staff of God in my hand.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> So Joshua fought against Amalek just as Moses had instructed him; and Moses and Aaron and Hur went up to the top of the hill. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Whenever Moses would raise his hands, then Israel prevailed, but whenever he would rest his hands, then Amalek prevailed. </VERS>\n\t\t\t<VERS vnumber=\"12\"> When the hands of Moses became heavy, they took a stone and put it under him, and Aaron and Hur held up his hands, one on one side and one on the other, and so his hands were steady until the sun went down.</VERS>\n\t\t\t<VERS vnumber=\"13\"> So Joshua destroyed Amalek and his army with the sword.</VERS>\n\t\t\t<VERS vnumber=\"14\"> The LORD said to Moses, \"Write this as a memorial in the book, and rehearse it in Joshua's hearing; for I will surely wipe out the remembrance of Amalek from under heaven. </VERS>\n\t\t\t<VERS vnumber=\"15\"> Moses built an altar, and he called it \"The LORD is my Banner,\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> for he said, \"For a hand was lifted up to the throne of the LORD, that the LORD will have war with Amalek from generation to generation.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"18\">\n\t\t\t<VERS vnumber=\"1\">  Jethro, the priest of Midian, Moses' father-in-law, heard about all that God had done for Moses and for his people Israel, that the LORD had brought Israel out of Egypt.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Jethro, Moses' father-in-law, took Moses' wife Zipporah after he had sent her back,</VERS>\n\t\t\t<VERS vnumber=\"3\"> and her two sons, one of whom was named Gershom (for Moses had said, \"I have been a foreigner in a foreign land\"), </VERS>\n\t\t\t<VERS vnumber=\"4\"> and the other Eliezer (for Moses had said, \"The God of my father has been my help and delivered me from the sword of Pharaoh\").</VERS>\n\t\t\t<VERS vnumber=\"5\"> Jethro, Moses' father-in-law, together with Moses' sons and his wife, came to Moses in the desert where he was camping by the mountain of God.</VERS>\n\t\t\t<VERS vnumber=\"6\"> He said to Moses, \"I, your father-in-law Jethro, am coming to you, along with your wife and her two sons with her.\" </VERS>\n\t\t\t<VERS vnumber=\"7\"> Moses went out to meet his father-in-law and bowed down and kissed him; they each asked about the other's welfare, and then they went into the tent. </VERS>\n\t\t\t<VERS vnumber=\"8\"> Moses told his father-in-law all that the LORD had done to Pharaoh and to Egypt for Israel's sake, and all the hardship that had come on them along the way, and how the LORD had delivered them.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Jethro rejoiced because of all the good that the LORD had done for Israel, whom he had delivered from the hand of Egypt. </VERS>\n\t\t\t<VERS vnumber=\"10\"> Jethro said, \"Blessed be the LORD who has delivered you from the hand of Egypt, and from the hand of Pharaoh, who has delivered the people from the Egyptians' control!</VERS>\n\t\t\t<VERS vnumber=\"11\"> Now I know that the LORD is greater than all the gods, for in the thing in which they dealt proudly against them he has destroyed them.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> Then Jethro, Moses' father-in-law, brought a burnt offering and sacrifices for God, and Aaron and all the elders of Israel came to eat food with the father-in-law of Moses before God.</VERS>\n\t\t\t<VERS vnumber=\"13\"> On the next day Moses sat to judge the people, and the people stood around Moses from morning until evening. </VERS>\n\t\t\t<VERS vnumber=\"14\"> When Moses' father-in-law saw all that he was doing for the people, he said, \"What is this that you are doing for the people? Why are you sitting by yourself, and all the people stand around you from morning until evening?\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> Moses said to his father-in-law, \"Because the people come to me to inquire of God. </VERS>\n\t\t\t<VERS vnumber=\"16\"> When they have a dispute, it comes to me and I decide between a man and his neighbor, and I make known the decrees of God and his laws.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> Moses' father-in-law said to him, \"What you are doing is not good! </VERS>\n\t\t\t<VERS vnumber=\"18\"> You will surely wear out, both you and these people who are with you, for this is too heavy a burden for you; you are not able to do it by yourself. </VERS>\n\t\t\t<VERS vnumber=\"19\"> Now listen to me, I will give you advice, and may God be with you: You be a representative for the people to God, and you bring their disputes to God; </VERS>\n\t\t\t<VERS vnumber=\"20\"> warn them of the statutes and the laws, and make known to them the way in which they must walk and the work they must do.</VERS>\n\t\t\t<VERS vnumber=\"21\"> But you choose from the people capable men, God-fearing, men of truth, those who hate bribes, and put them over the people as rulers of thousands, rulers of hundreds, rulers of fifties, and rulers of tens. </VERS>\n\t\t\t<VERS vnumber=\"22\"> They will judge the people under normal circumstances, and every difficult case they will bring to you, but every small case they themselves will judge, so that you may make it easier for yourself, and they will bear the burden with you. </VERS>\n\t\t\t<VERS vnumber=\"23\"> If you do this thing, and God so commands you, then you will be able to endure, and all these people will be able to go home satisfied.\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> Moses listened to his father-in-law and did everything he had said. </VERS>\n\t\t\t<VERS vnumber=\"25\"> Moses chose capable men from all Israel, and he made them heads over the people, rulers of thousands, rulers of hundreds, rulers of fifties, and rulers of tens.</VERS>\n\t\t\t<VERS vnumber=\"26\"> They judged the people under normal circumstances; the difficult cases they would bring to Moses, but every small case they would judge themselves.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Then Moses sent his father-in-law on his way, and so Jethro went to his own land.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"19\">\n\t\t\t<VERS vnumber=\"1\">  In the third month after the Israelites went out from the land of Egypt, on the very day, they came to the Desert of Sinai. </VERS>\n\t\t\t<VERS vnumber=\"2\"> After they journeyed from Rephidim, they came to the Desert of Sinai, and they camped in the desert; Israel camped there in front of the mountain.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Moses went up to God, and the LORD called to him from the mountain, \"Thus you will tell the house of Jacob, and declare to the people of Israel:</VERS>\n\t\t\t<VERS vnumber=\"4\"> 'You yourselves have seen what I did to Egypt and how I lifted you on eagles' wings and brought you to myself.</VERS>\n\t\t\t<VERS vnumber=\"5\"> And now, if you will diligently listen to me and keep my covenant, then you will be my special possession out of all the nations, for all the earth is mine, </VERS>\n\t\t\t<VERS vnumber=\"6\"> and you will be to me a kingdom of priests and a holy nation.' These are the words that you will speak to the Israelites.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> So Moses came and summoned the elders of Israel. He set before them all these words that the LORD had commanded him,</VERS>\n\t\t\t<VERS vnumber=\"8\"> and all the people answered together, \"All that the LORD has commanded we will do!\" So Moses brought the words of the people back to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"9\"> The LORD said to Moses, \"I am going to come to you in a dense cloud, so that the people may hear when I speak with you and so that they will always believe in you.\" And Moses told the words of the people to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The LORD said to Moses, \"Go to the people and sanctify them today and tomorrow, and make them wash their clothes </VERS>\n\t\t\t<VERS vnumber=\"11\"> and be ready for the third day, for on the third day the LORD will come down on Mount Sinai in the sight of all the people.</VERS>\n\t\t\t<VERS vnumber=\"12\"> You must set boundaries for the people all around, saying, 'Take heed to yourselves not to go up on the mountain nor touch its edge. Whoever touches the mountain will surely be put to death! </VERS>\n\t\t\t<VERS vnumber=\"13\"> No hand will touch him, but he will surely be stoned or shot through, whether a beast or a human being; he must not live.' When the ram's horn sounds a long blast they may go up on the mountain.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> Then Moses went down from the mountain to the people and sanctified the people, and they washed their clothes.</VERS>\n\t\t\t<VERS vnumber=\"15\"> He said to the people, \"Be ready for the third day. Do not go near your wives.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> On the third day in the morning there was thunder and lightning and a dense cloud on the mountain, and the sound of a very loud horn; all the people who were in the camp trembled. </VERS>\n\t\t\t<VERS vnumber=\"17\"> Moses brought the people out of the camp to meet God, and they took their place at the foot of the mountain.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Now Mount Sinai was completely covered with smoke because the LORD had descended on it in fire, and its smoke went up like the smoke of a great furnace, and the whole mountain shook violently. </VERS>\n\t\t\t<VERS vnumber=\"19\"> When the sound of the horn grew louder and louder, Moses was speaking and God was answering him with a voice.</VERS>\n\t\t\t<VERS vnumber=\"20\"> The LORD came down on Mount Sinai, on the top of the mountain, and the LORD summoned Moses to the top of the mountain, and Moses went up.</VERS>\n\t\t\t<VERS vnumber=\"21\"> The LORD said to Moses, \"Go down and solemnly warn the people, lest they force their way through to the LORD to look, and many of them perish.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Let the priests also, who approach the LORD, sanctify themselves, lest the LORD break through against them.\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> Moses said to the LORD, \"The people are not able to come up to Mount Sinai, because you solemnly warned us, 'Set boundaries for the mountain and set it apart.'\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> The LORD said to him, \"Go, get down, and come up, and Aaron with you, but do not let the priests and the people force their way through to come up to the LORD, lest he break through against them.\"</VERS>\n\t\t\t<VERS vnumber=\"25\"> So Moses went down to the people and spoke to them.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"20\">\n\t\t\t<VERS vnumber=\"1\">  God spoke all these words:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"I, the LORD, am your God, who brought you from the land of Egypt, from the house of slavery.</VERS>\n\t\t\t<VERS vnumber=\"3\"> \"You shall have no other gods before me.</VERS>\n\t\t\t<VERS vnumber=\"4\"> \"You shall not make for yourself a carved image or any likeness of anything that is in heaven above or that is on the earth beneath or that is in the water below.</VERS>\n\t\t\t<VERS vnumber=\"5\"> You shall not bow down to them or serve them, for I, the LORD, your God, am a jealous God, responding to the transgression of fathers by dealing with children to the third and fourth generations of those who reject me,</VERS>\n\t\t\t<VERS vnumber=\"6\"> and showing covenant faithfulness to a thousand generations of those who love me and keep my commandments.</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"You shall not take the name of the LORD your God in vain, for the LORD will not hold guiltless anyone who takes his name in vain.</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"Remember the Sabbath day to set it apart as holy.</VERS>\n\t\t\t<VERS vnumber=\"9\"> For six days you may labor and do all your work,</VERS>\n\t\t\t<VERS vnumber=\"10\"> but the seventh day is a Sabbath to the LORD your God; on it you shall not do any work, you, or your son, or your daughter, or your male servant, or your female servant, or your cattle, or the resident foreigner who is in your gates.</VERS>\n\t\t\t<VERS vnumber=\"11\"> For in six days the LORD made the heavens and the earth and the sea and all that is in them, and he rested on the seventh day; therefore the LORD blessed the Sabbath day and set it apart as holy.</VERS>\n\t\t\t<VERS vnumber=\"12\"> \"Honor your father and your mother, that you may live a long time in the land the LORD your God is giving to you.</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"You shall not murder.</VERS>\n\t\t\t<VERS vnumber=\"14\"> \"You shall not commit adultery.</VERS>\n\t\t\t<VERS vnumber=\"15\"> \"You shall not steal.</VERS>\n\t\t\t<VERS vnumber=\"16\"> \"You shall not give false testimony against your neighbor.</VERS>\n\t\t\t<VERS vnumber=\"17\"> \"You shall not covet your neighbor's house. You shall not covet your neighbor's wife, nor his male servant, nor his female servant, nor his ox, nor his donkey, nor anything that belongs to your neighbor.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> All the people were seeing the thundering and the lightning, and heard the sound of the horn, and saw the mountain smoking, and when the people saw it they trembled with fear and kept their distance.</VERS>\n\t\t\t<VERS vnumber=\"19\"> They said to Moses, \"You speak to us and we will listen, but do not let God speak with us, lest we die.\" </VERS>\n\t\t\t<VERS vnumber=\"20\"> Moses said to the people, \"Do not fear, for God has come to test you, that the fear of him may be before you so that you do not sin.\" </VERS>\n\t\t\t<VERS vnumber=\"21\"> The people kept their distance, but Moses drew near the thick darkness where God was.</VERS>\n\t\t\t<VERS vnumber=\"22\">  The LORD said to Moses: \"Thus you will tell the Israelites: 'You yourselves have seen that I have spoken with you from heaven. </VERS>\n\t\t\t<VERS vnumber=\"23\"> You must not make gods of silver alongside me, nor make gods of gold for yourselves.</VERS>\n\t\t\t<VERS vnumber=\"24\"> 'You must make for me an altar made of earth, and you will sacrifice on it your burnt offerings and your peace offerings, your sheep and your cattle. In every place where I cause my name to be honored I will come to you and I will bless you. </VERS>\n\t\t\t<VERS vnumber=\"25\"> If you make me an altar of stone, you must not build it of stones shaped with tools, for if you use your tool on it you have defiled it.</VERS>\n\t\t\t<VERS vnumber=\"26\"> And you must not go up by steps to my altar, so that your nakedness is not exposed.'</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"21\">\n\t\t\t<VERS vnumber=\"1\">  \"These are the decisions that you will set before them:</VERS>\n\t\t\t<VERS vnumber=\"2\">  \"If you buy a Hebrew servant, he is to serve you for six years, but in the seventh year he will go out free without paying anything.</VERS>\n\t\t\t<VERS vnumber=\"3\"> If he came in by himself he will go out by himself; if he had a wife when he came in, then his wife will go out with him. </VERS>\n\t\t\t<VERS vnumber=\"4\"> If his master gave him a wife, and she bore sons or daughters, the wife and the children will belong to her master, and he will go out by himself.</VERS>\n\t\t\t<VERS vnumber=\"5\"> But if the servant should declare, 'I love my master, my wife, and my children; I will not go out free,' </VERS>\n\t\t\t<VERS vnumber=\"6\"> then his master must bring him to the judges, and he will bring him to the door or the doorposts, and his master will pierce his ear with an awl, and he shall serve him forever.</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"If a man sells his daughter as a female servant, she will not go out as the male servants do.</VERS>\n\t\t\t<VERS vnumber=\"8\"> If she does not please her master, who has designated her for himself, then he must let her be redeemed. He has no right to sell her to a foreign nation, because he has dealt deceitfully with her. </VERS>\n\t\t\t<VERS vnumber=\"9\"> If he designated her for his son, then he will deal with her according to the customary rights of daughters. </VERS>\n\t\t\t<VERS vnumber=\"10\"> If he takes another wife, he must not diminish the first one's food, her clothing, or her marital rights.</VERS>\n\t\t\t<VERS vnumber=\"11\"> If he does not provide her with these three things, then she will go out free, without paying money.</VERS>\n\t\t\t<VERS vnumber=\"12\">  \"Whoever strikes someone so that he dies must surely be put to death.</VERS>\n\t\t\t<VERS vnumber=\"13\"> But if he does not do it with premeditation, but it happens by accident, then I will appoint for you a place where he may flee. </VERS>\n\t\t\t<VERS vnumber=\"14\"> But if a man willfully attacks his neighbor to kill him cunningly, you will take him even from my altar that he may die.</VERS>\n\t\t\t<VERS vnumber=\"15\"> \"Whoever strikes his father or his mother must surely be put to death.</VERS>\n\t\t\t<VERS vnumber=\"16\"> \"Whoever kidnaps someone and sells him, or is caught still holding him, must surely be put to death.</VERS>\n\t\t\t<VERS vnumber=\"17\"> \"Whoever treats his father or his mother disgracefully must surely be put to death.</VERS>\n\t\t\t<VERS vnumber=\"18\"> \"If men fight, and one strikes his neighbor with a stone or with his fist and he does not die, but must remain in bed,</VERS>\n\t\t\t<VERS vnumber=\"19\"> and then if he gets up and walks about outside on his staff, then the one who struck him is innocent, except he must pay for the injured person's loss of time and see to it that he is fully healed.</VERS>\n\t\t\t<VERS vnumber=\"20\"> \"If a man strikes his male servant or his female servant with a staff so that he or she dies as a result of the blow, he will surely be punished.</VERS>\n\t\t\t<VERS vnumber=\"21\"> However, if the injured servant survives one or two days, the owner will not be punished, for he has suffered the loss.</VERS>\n\t\t\t<VERS vnumber=\"22\"> \"If men fight and hit a pregnant woman and her child is born prematurely, but there is no serious injury, he will surely be punished in accordance with what the woman's husband demands of him, and he will pay what the court decides.</VERS>\n\t\t\t<VERS vnumber=\"23\"> But if there is serious injury, then you will give a life for a life,</VERS>\n\t\t\t<VERS vnumber=\"24\"> eye for eye, tooth for tooth, hand for hand, foot for foot,</VERS>\n\t\t\t<VERS vnumber=\"25\"> burn for burn, wound for wound, bruise for bruise.</VERS>\n\t\t\t<VERS vnumber=\"26\"> \"If a man strikes the eye of his male servant or his female servant so that he destroys it, he will let the servant go free as compensation for the eye. </VERS>\n\t\t\t<VERS vnumber=\"27\"> If he knocks out the tooth of his male servant or his female servant, he will let the servant go free as compensation for the tooth.</VERS>\n\t\t\t<VERS vnumber=\"28\">  \"If an ox gores a man or a woman so that either dies, then the ox must surely be stoned and its flesh must not be eaten, but the owner of the ox will be acquitted. </VERS>\n\t\t\t<VERS vnumber=\"29\"> But if the ox had the habit of goring, and its owner was warned, and he did not take the necessary precautions, and then it killed a man or a woman, the ox must be stoned and the man must be put to death. </VERS>\n\t\t\t<VERS vnumber=\"30\"> If a ransom is set for him, then he must pay the redemption for his life according to whatever amount was set for him. </VERS>\n\t\t\t<VERS vnumber=\"31\"> If the ox gores a son or a daughter, the owner will be dealt with according to this rule.</VERS>\n\t\t\t<VERS vnumber=\"32\"> If the ox gores a male servant or a female servant, the owner must pay thirty shekels of silver, and the ox must be stoned.</VERS>\n\t\t\t<VERS vnumber=\"33\"> \"If a man opens a pit or if a man digs a pit and does not cover it, and an ox or a donkey falls into it,</VERS>\n\t\t\t<VERS vnumber=\"34\"> the owner of the pit must repay the loss. He must give money to its owner, and the dead animal will become his. </VERS>\n\t\t\t<VERS vnumber=\"35\"> If the ox of one man injures the ox of his neighbor so that it dies, then they will sell the live ox and divide its proceeds, and they will also divide the dead ox.</VERS>\n\t\t\t<VERS vnumber=\"36\"> Or if it is known that the ox had the habit of goring, and its owner did not take the necessary precautions, he must surely pay ox for ox, and the dead animal will become his.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"22\">\n\t\t\t<VERS vnumber=\"1\">   \"If a man steals an ox or a sheep and kills it or sells it, he must pay back five head of cattle for the ox, and four sheep for the one sheep.</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"If a thief is caught breaking in and is struck so that he dies, there will be no blood guilt for him.</VERS>\n\t\t\t<VERS vnumber=\"3\"> If the sun has risen on him, then there is blood guilt for him. A thief must surely make full restitution; if he has nothing, then he will be sold for his theft. </VERS>\n\t\t\t<VERS vnumber=\"4\"> If the stolen item should in fact be found alive in his possession, whether it be an ox or a donkey or a sheep, he must pay back double.</VERS>\n\t\t\t<VERS vnumber=\"5\"> \"If a man grazes his livestock in a field or a vineyard, and he lets the livestock loose and they graze in the field of another man, he must make restitution from the best of his own field and the best of his own vineyard.</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"If a fire breaks out and spreads to thorn bushes, so that stacked grain or standing grain or the whole field is consumed, the one who started the fire must surely make restitution.</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"If a man gives his neighbor money or articles for safekeeping, and it is stolen from the man's house, if the thief is caught, he must repay double. </VERS>\n\t\t\t<VERS vnumber=\"8\"> If the thief is not caught, then the owner of the house will be brought before the judges to see whether he has laid his hand on his neighbor's goods. </VERS>\n\t\t\t<VERS vnumber=\"9\"> In all cases of illegal possessions, whether for an ox, a donkey, a sheep, a garment, or any kind of lost item, about which someone says 'This belongs to me,' the matter of the two of them will come before the judges, and the one whom the judges declare guilty must repay double to his neighbor.</VERS>\n\t\t\t<VERS vnumber=\"10\"> If a man gives his neighbor a donkey or an ox or a sheep or any beast to keep, and it dies or is hurt or is carried away without anyone seeing it,</VERS>\n\t\t\t<VERS vnumber=\"11\"> then there will be an oath to the LORD between the two of them, that he has not laid his hand on his neighbor's goods, and its owner will accept this, and he will not have to pay. </VERS>\n\t\t\t<VERS vnumber=\"12\"> But if it was stolen from him, he will pay its owner. </VERS>\n\t\t\t<VERS vnumber=\"13\"> If it is torn in pieces, then he will bring it for evidence, and he will not have to pay for what was torn.</VERS>\n\t\t\t<VERS vnumber=\"14\"> \"If a man borrows an animal from his neighbor, and it is hurt or dies when its owner was not with it, the man who borrowed it will surely pay. </VERS>\n\t\t\t<VERS vnumber=\"15\"> If its owner was with it, he will not have to pay; if it was hired, what was paid for the hire covers it.</VERS>\n\t\t\t<VERS vnumber=\"16\">  \"If a man seduces a virgin who is not engaged and has sexual relations with her, he must surely endow her to be his wife. </VERS>\n\t\t\t<VERS vnumber=\"17\"> If her father refuses to give her to him, he must pay money for the bride price of virgins.</VERS>\n\t\t\t<VERS vnumber=\"18\"> \"You must not allow a sorceress to live.</VERS>\n\t\t\t<VERS vnumber=\"19\"> \"Whoever has sexual relations with a beast must surely be put to death.</VERS>\n\t\t\t<VERS vnumber=\"20\"> \"Whoever sacrifices to a god other than the LORD alone must be utterly destroyed.</VERS>\n\t\t\t<VERS vnumber=\"21\"> \"You must not wrong a foreigner nor oppress him, for you were foreigners in the land of Egypt.</VERS>\n\t\t\t<VERS vnumber=\"22\"> \"You must not afflict any widow or orphan. </VERS>\n\t\t\t<VERS vnumber=\"23\"> If you afflict them in any way and they cry to me, I will surely hear their cry, </VERS>\n\t\t\t<VERS vnumber=\"24\"> and my anger will burn and I will kill you with the sword, and your wives will be widows and your children will be fatherless.</VERS>\n\t\t\t<VERS vnumber=\"25\"> \"If you lend money to any of my people who are needy among you, do not be like a moneylender to him; do not charge him interest.</VERS>\n\t\t\t<VERS vnumber=\"26\"> If you do take the garment of your neighbor in pledge, you must return it to him by the time the sun goes down,</VERS>\n\t\t\t<VERS vnumber=\"27\"> for it is his only covering, it is his garment for his body. What else can he sleep in? And when he cries out to me, I will hear, for I am gracious.</VERS>\n\t\t\t<VERS vnumber=\"28\"> \"You must not blaspheme God or curse the ruler of your people.</VERS>\n\t\t\t<VERS vnumber=\"29\"> \"Do not hold back offerings from your granaries or your vats. You must give me the firstborn of your sons. </VERS>\n\t\t\t<VERS vnumber=\"30\"> You must also do this for your oxen and for your sheep; seven days they may remain with their mothers, but give them to me on the eighth day.</VERS>\n\t\t\t<VERS vnumber=\"31\"> \"You will be holy people to me; you must not eat any meat torn by animals in the field. You must throw it to the dogs.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"23\">\n\t\t\t<VERS vnumber=\"1\">  \"You must not give a false report. Do not make common cause with the wicked to be a malicious witness.</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"You must not follow a crowd in doing evil things; in a lawsuit you must not offer testimony that agrees with a crowd so as to pervert justice,</VERS>\n\t\t\t<VERS vnumber=\"3\"> and you must not show partiality to a poor man in his lawsuit.</VERS>\n\t\t\t<VERS vnumber=\"4\"> \"If you encounter your enemy's ox or donkey wandering off, you must by all means return it to him. </VERS>\n\t\t\t<VERS vnumber=\"5\"> If you see the donkey of someone who hates you fallen under its load, you must not ignore him, but be sure to help him with it.</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"You must not turn away justice for your poor people in their lawsuits.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Keep your distance from a false charge, do not kill the innocent and the righteous, for I will not justify the wicked.</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"You must not accept a bribe, for a bribe blinds those who see and subverts the words of the righteous.</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"You must not oppress a foreigner, since you know the life of a foreigner, for you were foreigners in the land of Egypt.</VERS>\n\t\t\t<VERS vnumber=\"10\">  \"For six years you are to sow your land and gather in its produce. </VERS>\n\t\t\t<VERS vnumber=\"11\"> But in the seventh year you must let it lie fallow and leave it alone so that the poor of your people may eat, and what they leave any animal in the field may eat; you must do likewise with your vineyard and your olive grove. </VERS>\n\t\t\t<VERS vnumber=\"12\"> For six days you are to do your work, but on the seventh day you must cease, in order that your ox and your donkey may rest and that your female servant's son and any hired help may refresh themselves.</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"Pay attention to do everything I have told you, and do not even mention the names of other gods, do not let them be heard on your lips.</VERS>\n\t\t\t<VERS vnumber=\"14\"> \"Three times in the year you must make a pilgrim feast to me. </VERS>\n\t\t\t<VERS vnumber=\"15\"> You are to observe the Feast of Unleavened Bread; seven days you must eat bread made without yeast, as I commanded you, at the appointed time of the month of Abib, for at that time you came out of Egypt. No one may appear before me empty-handed.</VERS>\n\t\t\t<VERS vnumber=\"16\"> \"You are also to observe the Feast of Harvest, the firstfruits of your labors that you have sown in the field, and the Feast of Ingathering at the end of the year when you have gathered in your harvest out of the field. </VERS>\n\t\t\t<VERS vnumber=\"17\"> At three times in the year all your males will appear before the Lord GOD.</VERS>\n\t\t\t<VERS vnumber=\"18\"> \"You must not offer the blood of my sacrifice with bread containing yeast; the fat of my festal sacrifice must not remain until morning.</VERS>\n\t\t\t<VERS vnumber=\"19\"> The first of the firstfruits of your soil you must bring to the house of the LORD your God. \"You must not cook a young goat in its mother's milk.</VERS>\n\t\t\t<VERS vnumber=\"20\">  \"I am going to send an angel before you to protect you as you journey and to bring you into the place that I have prepared.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Take heed because of him, and obey his voice; do not rebel against him, for he will not pardon your transgressions, for my name is in him. </VERS>\n\t\t\t<VERS vnumber=\"22\"> But if you diligently obey him and do all that I command, then I will be an enemy to your enemies, and I will be an adversary to your adversaries.</VERS>\n\t\t\t<VERS vnumber=\"23\"> For my angel will go before you and bring you to the Amorites, the Hittites, the Perizzites, the Canaanites, the Hivites, and the Jebusites, and I will destroy them completely.</VERS>\n\t\t\t<VERS vnumber=\"24\"> \"You must not bow down to their gods; you must not serve them or do according to their practices. Instead you must completely overthrow them and smash their standing stones to pieces.</VERS>\n\t\t\t<VERS vnumber=\"25\"> You must serve the LORD your God, and he will bless your bread and your water, and I will remove sickness from your midst. </VERS>\n\t\t\t<VERS vnumber=\"26\"> No woman will miscarry her young or be barren in your land. I will fulfill the number of your days.</VERS>\n\t\t\t<VERS vnumber=\"27\"> \"I will send my terror before you, and I will destroy all the people whom you encounter; I will make all your enemies turn their backs to you. </VERS>\n\t\t\t<VERS vnumber=\"28\"> I will send hornets before you that will drive out the Hivite, the Canaanite, and the Hittite before you. </VERS>\n\t\t\t<VERS vnumber=\"29\"> I will not drive them out before you in one year, lest the land become desolate and the wild animals multiply against you. </VERS>\n\t\t\t<VERS vnumber=\"30\"> Little by little I will drive them out before you, until you become fruitful and inherit the land. </VERS>\n\t\t\t<VERS vnumber=\"31\"> I will set your boundaries from the Red Sea to the sea of the Philistines, and from the desert to the River, for I will deliver the inhabitants of the land into your hand, and you will drive them out before you.</VERS>\n\t\t\t<VERS vnumber=\"32\"> \"You must make no covenant with them or with their gods.</VERS>\n\t\t\t<VERS vnumber=\"33\"> They must not live in your land, lest they make you sin against me, for if you serve their gods, it will surely be a snare to you.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"24\">\n\t\t\t<VERS vnumber=\"1\">  But to Moses the LORD said, \"Come up to the LORD, you and Aaron, Nadab and Abihu, and seventy of the elders of Israel, and worship from a distance.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Moses alone may come near the LORD, but the others must not come near, nor may the people go up with him.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> Moses came and told the people all the LORD's words and all the decisions. All the people answered together, \"We are willing to do all the words that the LORD has said,\" </VERS>\n\t\t\t<VERS vnumber=\"4\"> and Moses wrote down all the words of the LORD. Early in the morning he built an altar at the foot of the mountain and arranged twelve standing stones, according to the twelve tribes of Israel.</VERS>\n\t\t\t<VERS vnumber=\"5\"> He sent young Israelite men, and they offered burnt offerings and sacrificed young bulls for peace offerings to the LORD. </VERS>\n\t\t\t<VERS vnumber=\"6\"> Moses took half of the blood and put it in bowls, and half of the blood he splashed on the altar.</VERS>\n\t\t\t<VERS vnumber=\"7\"> He took the Book of the Covenant and read it aloud to the people, and they said, \"We are willing to do and obey all that the LORD has spoken.\" </VERS>\n\t\t\t<VERS vnumber=\"8\"> So Moses took the blood and splashed it on the people and said, \"This is the blood of the covenant that the LORD has made with you in accordance with all these words.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> Moses and Aaron, Nadab and Abihu, and the seventy elders of Israel went up,</VERS>\n\t\t\t<VERS vnumber=\"10\"> and they saw the God of Israel. Under his feet there was something like a pavement made of sapphire, clear like the sky itself.</VERS>\n\t\t\t<VERS vnumber=\"11\"> But he did not lay a hand on the leaders of the Israelites, so they saw God, and they ate and they drank.</VERS>\n\t\t\t<VERS vnumber=\"12\">  The LORD said to Moses, \"Come up to me to the mountain and remain there, and I will give you the stone tablets with the law and the commandments that I have written, so that you may teach them.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> So Moses set out with Joshua his attendant, and Moses went up the mountain of God. </VERS>\n\t\t\t<VERS vnumber=\"14\"> He told the elders, \"Wait for us in this place until we return to you. Here are Aaron and Hur with you. Whoever has any matters of dispute can approach them.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> Moses went up the mountain, and the cloud covered the mountain.</VERS>\n\t\t\t<VERS vnumber=\"16\"> The glory of the LORD resided on Mount Sinai, and the cloud covered it for six days. On the seventh day he called to Moses from within the cloud. </VERS>\n\t\t\t<VERS vnumber=\"17\"> Now the appearance of the glory of the LORD was like a devouring fire on the top of the mountain in plain view of the people. </VERS>\n\t\t\t<VERS vnumber=\"18\"> Moses went into the cloud when he went up the mountain, and Moses was on the mountain forty days and forty nights.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"25\">\n\t\t\t<VERS vnumber=\"1\">  The LORD spoke to Moses: </VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Tell the Israelites to take an offering for me; from every person motivated by a willing heart you are to receive my offering. </VERS>\n\t\t\t<VERS vnumber=\"3\"> This is the offering you are to accept from them: gold, silver, bronze, </VERS>\n\t\t\t<VERS vnumber=\"4\"> blue, purple, scarlet, fine linen, goat's hair,</VERS>\n\t\t\t<VERS vnumber=\"5\"> ram skins dyed red, fine leather, acacia wood,</VERS>\n\t\t\t<VERS vnumber=\"6\"> oil for the light, spices for the anointing oil and for fragrant incense,</VERS>\n\t\t\t<VERS vnumber=\"7\"> onyx stones, and other gems to be set in the ephod and in the breastpiece.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Let them make for me a sanctuary, so that I may live among them. </VERS>\n\t\t\t<VERS vnumber=\"9\"> According to all that I am showing you, the pattern of the tabernacle and the pattern of all its furnishings, you must make it exactly so.</VERS>\n\t\t\t<VERS vnumber=\"10\">  \"They are to make an ark of acacia wood, its length is to be three feet nine inches, its width two feet three inches, and its height two feet three inches.</VERS>\n\t\t\t<VERS vnumber=\"11\"> You are to overlay it with pure gold, both inside and outside you must overlay it, and you are to make a surrounding border of gold over it.</VERS>\n\t\t\t<VERS vnumber=\"12\"> You are to cast four gold rings for it and put them on its four feet, with two rings on one side and two rings on the other side.</VERS>\n\t\t\t<VERS vnumber=\"13\"> You are to make poles of acacia wood, overlay them with gold,</VERS>\n\t\t\t<VERS vnumber=\"14\"> and put the poles into the rings at the sides of the ark in order to carry the ark with them.</VERS>\n\t\t\t<VERS vnumber=\"15\"> The poles must remain in the rings of the ark; they must not be removed from it.</VERS>\n\t\t\t<VERS vnumber=\"16\"> You are to put into the ark the testimony that I will give to you.</VERS>\n\t\t\t<VERS vnumber=\"17\"> \"You are to make an atonement lid of pure gold; its length is to be three feet nine inches, and its width is to be two feet three inches.</VERS>\n\t\t\t<VERS vnumber=\"18\"> You are to make two cherubim of gold; you are to make them of hammered metal on the two ends of the atonement lid. </VERS>\n\t\t\t<VERS vnumber=\"19\"> Make one cherub on one end and one cherub on the other end; from the atonement lid you are to make the cherubim on the two ends. </VERS>\n\t\t\t<VERS vnumber=\"20\"> The cherubim are to be spreading their wings upward, overshadowing the atonement lid with their wings, and the cherubim are to face each other, looking toward the atonement lid. </VERS>\n\t\t\t<VERS vnumber=\"21\"> You are to put the atonement lid on top of the ark, and in the ark you are to put the testimony I am giving you.</VERS>\n\t\t\t<VERS vnumber=\"22\"> I will meet with you there, and from above the atonement lid, from between the two cherubim that are over the ark of the testimony, I will speak with you about all that I will command you for the Israelites.</VERS>\n\t\t\t<VERS vnumber=\"23\">  \"You are to make a table of acacia wood; its length is to be three feet, its width one foot six inches, and its height two feet three inches. </VERS>\n\t\t\t<VERS vnumber=\"24\"> You are to overlay it with pure gold, and you are to make a surrounding border of gold for it. </VERS>\n\t\t\t<VERS vnumber=\"25\"> You are to make a surrounding frame for it about three inches broad, and you are to make a surrounding border of gold for its frame. </VERS>\n\t\t\t<VERS vnumber=\"26\"> You are to make four rings of gold for it and attach the rings at the four corners where its four legs are.</VERS>\n\t\t\t<VERS vnumber=\"27\"> The rings are to be close to the frame to provide places for the poles to carry the table. </VERS>\n\t\t\t<VERS vnumber=\"28\"> You are to make the poles of acacia wood and overlay them with gold, so that the table may be carried with them.</VERS>\n\t\t\t<VERS vnumber=\"29\"> You are to make its plates, its ladles, its pitchers, and its bowls, to be used in pouring out offerings; you are to make them of pure gold. </VERS>\n\t\t\t<VERS vnumber=\"30\"> You are to set the Bread of the Presence on the table before me continually.</VERS>\n\t\t\t<VERS vnumber=\"31\">  \"You are to make a lampstand of pure gold. The lampstand is to be made of hammered metal; its base and its shaft, its cups, its buds, and its blossoms are to be from the same piece.</VERS>\n\t\t\t<VERS vnumber=\"32\"> Six branches are to extend from the sides of the lampstand, three branches of the lampstand from one side of it and three branches of the lampstand from the other side of it.</VERS>\n\t\t\t<VERS vnumber=\"33\"> Three cups shaped like almond flowers with buds and blossoms are to be on one branch, and three cups shaped like almond flowers with buds and blossoms are to be on the next branch, and the same for the six branches extending from the lampstand.</VERS>\n\t\t\t<VERS vnumber=\"34\"> On the lampstand there are to be four cups shaped like almond flowers with buds and blossoms,</VERS>\n\t\t\t<VERS vnumber=\"35\"> with a bud under the first two branches from it, and a bud under the next two branches from it, and a bud under the third two branches from it, according to the six branches that extend from the lampstand. </VERS>\n\t\t\t<VERS vnumber=\"36\"> Their buds and their branches will be one piece, all of it one hammered piece of pure gold.</VERS>\n\t\t\t<VERS vnumber=\"37\"> \"You are to make its seven lamps, and then set its lamps up on it, so that it will give light to the area in front of it. </VERS>\n\t\t\t<VERS vnumber=\"38\"> Its trimmers and its trays are to be of pure gold. </VERS>\n\t\t\t<VERS vnumber=\"39\"> About seventy-five pounds of pure gold is to be used for it and for all these utensils. </VERS>\n\t\t\t<VERS vnumber=\"40\"> Now be sure to make them according to the pattern you were shown on the mountain.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"26\">\n\t\t\t<VERS vnumber=\"1\">  \"The tabernacle itself you are to make with ten curtains of fine twisted linen and blue and purple and scarlet; you are to make them with cherubim that are the work of an artistic designer. </VERS>\n\t\t\t<VERS vnumber=\"2\"> The length of each curtain is to be forty-two feet, and the width of each curtain is to be six feet, the same size for each of the curtains.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Five curtains are to be joined, one to another, and the other five curtains are to be joined, one to another. </VERS>\n\t\t\t<VERS vnumber=\"4\"> You are to make loops of blue material along the edge of the end curtain in one set, and in the same way you are to make loops in the outer edge of the end curtain in the second set. </VERS>\n\t\t\t<VERS vnumber=\"5\"> You are to make fifty loops on the one curtain, and you are to make fifty loops on the end curtain which is on the second set, so that the loops are opposite one to another.</VERS>\n\t\t\t<VERS vnumber=\"6\"> You are to make fifty gold clasps and join the curtains together with the clasps, so that the tabernacle is a unit.</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"You are to make curtains of goats' hair for a tent over the tabernacle; you are to make eleven curtains. </VERS>\n\t\t\t<VERS vnumber=\"8\"> The length of each curtain is to be forty-five feet, and the width of each curtain is to be six feet, the same size for the eleven curtains.</VERS>\n\t\t\t<VERS vnumber=\"9\"> You are to join five curtains by themselves and six curtains by themselves. You are to double over the sixth curtain at the front of the tent. </VERS>\n\t\t\t<VERS vnumber=\"10\"> You are to make fifty loops along the edge of the end curtain in one set and fifty loops along the edge of the curtain that joins the second set.</VERS>\n\t\t\t<VERS vnumber=\"11\"> You are to make fifty bronze clasps and put the clasps into the loops and join the tent together so that it is a unit.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Now the part that remains of the curtains of the tent, the half curtain that remains will hang over at the back of the tabernacle.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The foot and a half on the one side and the foot and a half on the other side of what remains in the length of the curtains of the tent will hang over the sides of the tabernacle, on one side and the other side, to cover it.</VERS>\n\t\t\t<VERS vnumber=\"14\"> \"You are to make a covering for the tent out of ram skins dyed red and over that a covering of fine leather.</VERS>\n\t\t\t<VERS vnumber=\"15\"> \"You are to make the frames for the tabernacle out of acacia wood as uprights.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Each frame is to be fifteen feet long, and each frame is to be two feet three inches wide, </VERS>\n\t\t\t<VERS vnumber=\"17\"> with two projections per frame parallel one to another. You are to make all the frames of the tabernacle in this way. </VERS>\n\t\t\t<VERS vnumber=\"18\"> So you are to make the frames for the tabernacle: twenty frames for the south side,</VERS>\n\t\t\t<VERS vnumber=\"19\"> and you are to make forty silver bases to go under the twenty frames, two bases under the first frame for its two projections, and likewise two bases under the next frame for its two projections;</VERS>\n\t\t\t<VERS vnumber=\"20\"> and for the second side of the tabernacle, the north side, twenty frames,</VERS>\n\t\t\t<VERS vnumber=\"21\"> and their forty silver bases, two bases under the first frame, and two bases under the next frame.</VERS>\n\t\t\t<VERS vnumber=\"22\"> And for the back of the tabernacle on the west you will make six frames. </VERS>\n\t\t\t<VERS vnumber=\"23\"> You are to make two frames for the corners of the tabernacle on the back. </VERS>\n\t\t\t<VERS vnumber=\"24\"> At the two corners they must be doubled at the lower end and finished together at the top in one ring. So it will be for both. </VERS>\n\t\t\t<VERS vnumber=\"25\"> So there are to be eight frames and their silver bases, sixteen bases, two bases under the first frame, and two bases under the next frame.</VERS>\n\t\t\t<VERS vnumber=\"26\"> \"You are to make bars of acacia wood, five for the frames on one side of the tabernacle,</VERS>\n\t\t\t<VERS vnumber=\"27\"> and five bars for the frames on the second side of the tabernacle, and five bars for the frames on the back of the tabernacle on the west.</VERS>\n\t\t\t<VERS vnumber=\"28\"> The middle bar in the center of the frames will reach from end to end.</VERS>\n\t\t\t<VERS vnumber=\"29\"> You are to overlay the frames with gold and make their rings of gold to provide places for the bars, and you are to overlay the bars with gold.</VERS>\n\t\t\t<VERS vnumber=\"30\"> You are to set up the tabernacle according to the plan that you were shown on the mountain.</VERS>\n\t\t\t<VERS vnumber=\"31\"> \"You are to make a special curtain of blue, purple, and scarlet yarn and fine twisted linen; it is to be made with cherubim, the work of an artistic designer. </VERS>\n\t\t\t<VERS vnumber=\"32\"> You are to hang it with gold hooks on four posts of acacia wood overlaid with gold, set in four silver bases. </VERS>\n\t\t\t<VERS vnumber=\"33\"> You are to hang this curtain under the clasps and bring the ark of the testimony in there behind the curtain. The curtain will make a division for you between the Holy Place and the Most Holy Place.</VERS>\n\t\t\t<VERS vnumber=\"34\"> You are to put the atonement lid on the ark of the testimony in the Most Holy Place.</VERS>\n\t\t\t<VERS vnumber=\"35\"> You are to put the table outside the curtain and the lampstand on the south side of the tabernacle, opposite the table, and you are to place the table on the north side.</VERS>\n\t\t\t<VERS vnumber=\"36\"> \"You are to make a hanging for the entrance of the tent of blue, purple, and scarlet yarn and fine twined linen, the work of an embroiderer.</VERS>\n\t\t\t<VERS vnumber=\"37\"> You are to make for the hanging five posts of acacia wood and overlay them with gold, and their hooks will be gold, and you are to cast five bronze bases for them.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"27\">\n\t\t\t<VERS vnumber=\"1\"> \"You are to make the altar of acacia wood, seven feet six inches long, and seven feet six inches wide; the altar is to be square, and its height is to be four feet six inches. </VERS>\n\t\t\t<VERS vnumber=\"2\"> You are to make its four horns on its four corners; its horns will be part of it, and you are to overlay it with bronze. </VERS>\n\t\t\t<VERS vnumber=\"3\"> You are to make its pots for the ashes, its shovels, its tossing bowls, its meat hooks, and its fire pans, you are to make all its utensils of bronze.</VERS>\n\t\t\t<VERS vnumber=\"4\"> You are to make a grating for it, a network of bronze, and you are to make on the network four bronze rings on its four corners. </VERS>\n\t\t\t<VERS vnumber=\"5\"> You are to put it under the ledge of the altar below, so that the network will come halfway up the altar.</VERS>\n\t\t\t<VERS vnumber=\"6\"> You are to make poles for the altar, poles of acacia wood, and you are to overlay them with bronze.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The poles are to be put into the rings so that the poles will be on two sides of the altar when carrying it.</VERS>\n\t\t\t<VERS vnumber=\"8\"> You are to make the altar hollow, out of boards. Just as it was shown you on the mountain, so they must make it.</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"You are to make the courtyard of the tabernacle. For the south side there are to be hangings for the courtyard of fine twisted linen, one hundred fifty feet long for one side,</VERS>\n\t\t\t<VERS vnumber=\"10\"> with twenty posts and their twenty bronze bases, with the hooks of the posts and their bands of silver. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Likewise for its length on the north side, there are to be hangings for one hundred fifty feet, with twenty posts and their twenty bronze bases, with silver hooks and bands on the posts. </VERS>\n\t\t\t<VERS vnumber=\"12\"> The width of the court on the west side is to be seventy-five feet with hangings, with their ten posts and their ten bases.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The width of the court on the east side, toward the sunrise, is to be seventy-five feet.</VERS>\n\t\t\t<VERS vnumber=\"14\"> The hangings on one side of the gate are to be twenty-two and a half feet long, with their three posts and their three bases. </VERS>\n\t\t\t<VERS vnumber=\"15\"> On the second side there are to be hangings twenty-two and a half feet long, with their three posts and their three bases.</VERS>\n\t\t\t<VERS vnumber=\"16\"> For the gate of the courtyard there is to be a curtain of thirty feet, of blue, purple, and scarlet yarn and fine twined linen, the work of an embroiderer, with four posts and their four bases.</VERS>\n\t\t\t<VERS vnumber=\"17\"> All the posts around the courtyard are to have silver bands; their hooks are to be silver, and their bases bronze. </VERS>\n\t\t\t<VERS vnumber=\"18\"> The length of the courtyard is to be one hundred fifty feet and the width seventy-five feet, and the height of the fine twisted linen hangings is to be seven and a half feet, with their bronze bases. </VERS>\n\t\t\t<VERS vnumber=\"19\"> All the utensils of the tabernacle used in all its service, all its tent pegs, and all the tent pegs of the courtyard are to be made of bronze.</VERS>\n\t\t\t<VERS vnumber=\"20\"> \"You are to command the Israelites that they bring to you pure oil of pressed olives for the light, so that the lamps will burn regularly.</VERS>\n\t\t\t<VERS vnumber=\"21\"> In the tent of meeting outside the curtain that is before the testimony, Aaron and his sons are to arrange it from evening to morning before the LORD. This is to be a lasting ordinance among the Israelites for generations to come.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"28\">\n\t\t\t<VERS vnumber=\"1\">  \"And you, bring near to you your brother Aaron and his sons with him from among the Israelites, so that they may minister as my priests, Aaron, Nadab and Abihu, Eleazar and Ithamar, Aaron's sons.</VERS>\n\t\t\t<VERS vnumber=\"2\"> You must make holy garments for your brother Aaron, for glory and for beauty.</VERS>\n\t\t\t<VERS vnumber=\"3\"> You are to speak to all who are specially skilled, whom I have filled with the spirit of wisdom, so that they may make Aaron's garments to set him apart to minister as my priest. </VERS>\n\t\t\t<VERS vnumber=\"4\"> Now these are the garments that they are to make: a breastpiece, an ephod, a robe, a fitted tunic, a turban, and a sash. They are to make holy garments for your brother Aaron and for his sons, that they may minister as my priests.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The artisans are to use the gold, blue, purple, scarlet, and fine linen.</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"They are to make the ephod of gold, blue, purple, scarlet, and fine twisted linen, the work of an artistic designer.</VERS>\n\t\t\t<VERS vnumber=\"7\"> It is to have two shoulder pieces attached to two of its corners, so it can be joined together.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The artistically woven waistband of the ephod that is on it is to be like it, of one piece with the ephod, of gold, blue, purple, scarlet, and fine twisted linen.</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"You are to take two onyx stones and engrave on them the names of the sons of Israel,</VERS>\n\t\t\t<VERS vnumber=\"10\"> six of their names on one stone, and the six remaining names on the second stone, according to the order of their birth.</VERS>\n\t\t\t<VERS vnumber=\"11\"> You are to engrave the two stones with the names of the sons of Israel with the work of an engraver in stone, like the engravings of a seal; you are to have them set in gold filigree settings. </VERS>\n\t\t\t<VERS vnumber=\"12\"> You are to put the two stones on the shoulders of the ephod, stones of memorial for the sons of Israel, and Aaron will bear their names before the LORD on his two shoulders for a memorial.</VERS>\n\t\t\t<VERS vnumber=\"13\"> You are to make filigree settings of gold</VERS>\n\t\t\t<VERS vnumber=\"14\"> and two braided chains of pure gold, like a cord, and attach the chains to the settings.</VERS>\n\t\t\t<VERS vnumber=\"15\"> \"You are to make a breastpiece for use in making decisions, the work of an artistic designer; you are to make it in the same fashion as the ephod; you are to make it of gold, blue, purple, scarlet, and fine twisted linen. </VERS>\n\t\t\t<VERS vnumber=\"16\"> It is to be square when doubled, nine inches long and nine inches wide. </VERS>\n\t\t\t<VERS vnumber=\"17\"> You are to set in it a setting for stones, four rows of stones, a row with a ruby, a topaz, and a beryl, the first row;</VERS>\n\t\t\t<VERS vnumber=\"18\"> and the second row, a turquoise, a sapphire, and an emerald;</VERS>\n\t\t\t<VERS vnumber=\"19\"> and the third row, a jacinth, an agate, and an amethyst;</VERS>\n\t\t\t<VERS vnumber=\"20\"> and the fourth row, a chrysolite, an onyx, and a jasper. They are to be enclosed in gold in their filigree settings.</VERS>\n\t\t\t<VERS vnumber=\"21\"> The stones are to be for the names of the sons of Israel, twelve, according to the number of their names. Each name according to the twelve tribes is to be like the engravings of a seal.</VERS>\n\t\t\t<VERS vnumber=\"22\"> \"You are to make for the breastpiece braided chains like cords of pure gold,</VERS>\n\t\t\t<VERS vnumber=\"23\"> and you are to make for the breastpiece two gold rings and attach the two rings to the upper two ends of the breastpiece. </VERS>\n\t\t\t<VERS vnumber=\"24\"> You are to attach the two gold chains to the two rings at the ends of the breastpiece;</VERS>\n\t\t\t<VERS vnumber=\"25\"> the other two ends of the two chains you will attach to the two settings and then attach them to the shoulder pieces of the ephod at the front of it. </VERS>\n\t\t\t<VERS vnumber=\"26\"> You are to make two rings of gold and put them on the other two ends of the breastpiece, on its edge that is on the inner side of the ephod. </VERS>\n\t\t\t<VERS vnumber=\"27\"> You are to make two more gold rings and attach them to the bottom of the two shoulder pieces on the front of the ephod, close to the juncture above the waistband of the ephod. </VERS>\n\t\t\t<VERS vnumber=\"28\"> They are to tie the breastpiece by its rings to the rings of the ephod by blue cord, so that it may be above the waistband of the ephod, and so that the breastpiece will not be loose from the ephod.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Aaron will bear the names of the sons of Israel in the breastpiece of decision over his heart when he goes into the holy place, for a memorial before the LORD continually.</VERS>\n\t\t\t<VERS vnumber=\"30\"> \"You are to put the Urim and the Thummim into the breastpiece of decision; and they are to be over Aaron's heart when he goes in before the LORD. Aaron is to bear the decisions of the Israelites over his heart before the LORD continually.</VERS>\n\t\t\t<VERS vnumber=\"31\"> \"You are to make the robe of the ephod completely blue. </VERS>\n\t\t\t<VERS vnumber=\"32\"> There is to be an opening in its top in the center of it, with an edge all around the opening, the work of a weaver, like the opening of a collar, so that it cannot be torn.</VERS>\n\t\t\t<VERS vnumber=\"33\"> You are to make pomegranates of blue, purple, and scarlet all around its hem and bells of gold between them all around. </VERS>\n\t\t\t<VERS vnumber=\"34\"> The pattern is to be a gold bell and a pomegranate, a gold bell and a pomegranate, all around the hem of the robe. </VERS>\n\t\t\t<VERS vnumber=\"35\"> The robe is to be on Aaron as he ministers, and his sound will be heard when he enters the Holy Place before the LORD and when he leaves, so that he does not die.</VERS>\n\t\t\t<VERS vnumber=\"36\"> \"You are to make a plate of pure gold and engrave on it the way a seal is engraved: \"Holiness to the LORD.\"</VERS>\n\t\t\t<VERS vnumber=\"37\"> You are to attach to it a blue cord so that it will be on the turban; it is to be on the front of the turban, </VERS>\n\t\t\t<VERS vnumber=\"38\"> It will be on Aaron's forehead, and Aaron will bear the iniquity of the holy things, which the Israelites are to sanctify by all their holy gifts; it will always be on his forehead, for their acceptance before the LORD. </VERS>\n\t\t\t<VERS vnumber=\"39\"> You are to weave the tunic of fine linen and make the turban of fine linen, and make the sash the work of an embroiderer.</VERS>\n\t\t\t<VERS vnumber=\"40\"> \"For Aaron's sons you are to make tunics, sashes, and headbands for glory and for beauty.</VERS>\n\t\t\t<VERS vnumber=\"41\"> \"You are to clothe them, your brother Aaron and his sons with him, and anoint them and ordain them and set them apart as holy, so that they may minister as my priests.</VERS>\n\t\t\t<VERS vnumber=\"42\"> Make for them linen undergarments to cover their naked bodies; they must cover from the waist to the thighs. </VERS>\n\t\t\t<VERS vnumber=\"43\"> These must be on Aaron and his sons when they enter to the tent of meeting, or when they approach the altar to minister in the Holy Place, so that they bear no iniquity and die. It is to be a perpetual ordinance for him and for his descendants after him.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"29\">\n\t\t\t<VERS vnumber=\"1\">  \"Now this is what you are to do for them to consecrate them so that they may minister as my priests. Take a young bull and two rams without blemish;</VERS>\n\t\t\t<VERS vnumber=\"2\"> and bread made without yeast, and perforated cakes without yeast mixed with oil, and wafers without yeast spread with oil, you are to make them using fine wheat flour.</VERS>\n\t\t\t<VERS vnumber=\"3\"> You are to put them in one basket and present them in the basket, along with the bull and the two rams.</VERS>\n\t\t\t<VERS vnumber=\"4\"> \"You are to present Aaron and his sons at the entrance of the tent of meeting. You are to wash them with water </VERS>\n\t\t\t<VERS vnumber=\"5\"> and take the garments and clothe Aaron with the tunic, the robe of the ephod, the ephod, and the breastpiece; you are to fasten the ephod on him by using the skillfully woven waistband.</VERS>\n\t\t\t<VERS vnumber=\"6\"> You are to put the turban on his head and put the holy diadem on the turban. </VERS>\n\t\t\t<VERS vnumber=\"7\"> You are to take the anointing oil and pour it on his head and anoint him.</VERS>\n\t\t\t<VERS vnumber=\"8\"> You are to present his sons and clothe them with tunics</VERS>\n\t\t\t<VERS vnumber=\"9\"> and wrap the sashes around Aaron and his sons and put headbands on them, and so the ministry of priesthood will belong to them by a perpetual ordinance. Thus you are to consecrate Aaron and his sons.</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"You are to present the bull at the front of the tent of meeting, and Aaron and his sons are to put their hands on the head of the bull. </VERS>\n\t\t\t<VERS vnumber=\"11\"> You are to kill the bull before the LORD at the entrance to the tent of meeting</VERS>\n\t\t\t<VERS vnumber=\"12\"> and take some of the blood of the bull and put it on the horns of the altar with your finger; all the rest of the blood you are to pour out at the base of the altar. </VERS>\n\t\t\t<VERS vnumber=\"13\"> You are to take all the fat that covers the entrails, and the lobe that is above the liver, and the two kidneys and the fat that is on them, and burn them on the altar. </VERS>\n\t\t\t<VERS vnumber=\"14\"> But the meat of the bull, its skin, and its dung you are to burn up outside the camp. It is the purification offering.</VERS>\n\t\t\t<VERS vnumber=\"15\"> \"You are to take one ram, and Aaron and his sons are to lay their hands on the ram's head,</VERS>\n\t\t\t<VERS vnumber=\"16\"> and you are to kill the ram and take its blood and splash it all around on the altar.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Then you are to cut the ram into pieces and wash the entrails and its legs and put them on its pieces and on its head</VERS>\n\t\t\t<VERS vnumber=\"18\"> and burn the whole ram on the altar. It is a burnt offering to the LORD, a soothing aroma; it is an offering made by fire to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"19\"> \"You are to take the second ram, and Aaron and his sons are to lay their hands on the ram's head,</VERS>\n\t\t\t<VERS vnumber=\"20\"> and you are to kill the ram and take some of its blood and put it on the tip of the right ear of Aaron, on the tip of the right ear of his sons, on the thumb of their right hand, and on the big toe of their right foot, and then splash the blood all around on the altar. </VERS>\n\t\t\t<VERS vnumber=\"21\"> You are to take some of the blood that is on the altar and some of the anointing oil and sprinkle it on Aaron, on his garments, on his sons, and on his sons' garments with him, so that he may be holy, he and his garments along with his sons and his sons' garments.</VERS>\n\t\t\t<VERS vnumber=\"22\"> \"You are to take from the ram the fat, the fat tail, the fat that covers the entrails, the lobe of the liver, the two kidneys and the fat that is on them, and the right thigh, for it is the ram for consecration,</VERS>\n\t\t\t<VERS vnumber=\"23\"> and one round flat cake of bread, one perforated cake of oiled bread, and one wafer from the basket of bread made without yeast that is before the LORD.</VERS>\n\t\t\t<VERS vnumber=\"24\"> You are to put all these in Aaron's hands and in his sons' hands, and you are to wave them as a wave offering before the LORD. </VERS>\n\t\t\t<VERS vnumber=\"25\"> Then you are to take them from their hands and burn them on the altar for a burnt offering, for a soothing aroma before the LORD. It is an offering made by fire to the LORD. </VERS>\n\t\t\t<VERS vnumber=\"26\"> You are to take the breast of the ram of Aaron's consecration; you are to wave it as a wave offering before the LORD, and it is to be your share.</VERS>\n\t\t\t<VERS vnumber=\"27\"> You are to sanctify the breast of the wave offering and the thigh of the contribution, which were waved and lifted up as a contribution from the ram of consecration, from what belongs to Aaron and to his sons.</VERS>\n\t\t\t<VERS vnumber=\"28\"> It is to belong to Aaron and to his sons from the Israelites, by a perpetual ordinance, for it is a contribution. It is to be a contribution from the Israelites from their peace offerings, their contribution to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"29\"> \"The holy garments that belong to Aaron are to belong to his sons after him, so that they may be anointed in them and consecrated in them. </VERS>\n\t\t\t<VERS vnumber=\"30\"> The priest who succeeds him from his sons, when he first comes to the tent of meeting to minister in the Holy Place, is to wear them for seven days.</VERS>\n\t\t\t<VERS vnumber=\"31\"> \"You are to take the ram of the consecration and cook its meat in a holy place.</VERS>\n\t\t\t<VERS vnumber=\"32\"> Aaron and his sons are to eat the meat of the ram and the bread that was in the basket at the entrance of the tent of meeting.</VERS>\n\t\t\t<VERS vnumber=\"33\"> They are to eat those things by which atonement was made to consecrate and to set them apart, but no one else may eat them, for they are holy. </VERS>\n\t\t\t<VERS vnumber=\"34\"> If any of the meat from the consecration offerings or any of the bread is left over until morning, then you are to burn up what is left over. It must not be eaten, because it is holy.</VERS>\n\t\t\t<VERS vnumber=\"35\"> \"Thus you are to do for Aaron and for his sons, according to all that I have commanded you; you are to consecrate them for seven days. </VERS>\n\t\t\t<VERS vnumber=\"36\"> Every day you are to prepare a bull for a purification offering for atonement. You are to purge the altar by making atonement for it, and you are to anoint it to set it apart as holy.</VERS>\n\t\t\t<VERS vnumber=\"37\"> For seven days you are to make atonement for the altar and set it apart as holy. Then the altar will be most holy. Anything that touches the altar will be holy.</VERS>\n\t\t\t<VERS vnumber=\"38\"> \"Now this is what you are to prepare on the altar every day continually: two lambs a year old. </VERS>\n\t\t\t<VERS vnumber=\"39\"> The first lamb you are to prepare in the morning, and the second lamb you are to prepare around sundown.</VERS>\n\t\t\t<VERS vnumber=\"40\"> With the first lamb offer a tenth of an ephah of fine flour mixed with a fourth of a hin of oil from pressed olives, and a fourth of a hin of wine as a drink offering. </VERS>\n\t\t\t<VERS vnumber=\"41\"> The second lamb you are to offer around sundown; you are to prepare for it the same meal offering as for the morning and the same drink offering, for a soothing aroma, an offering made by fire to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"42\"> \"This will be a regular burnt offering throughout your generations at the entrance of the tent of meeting before the LORD, where I will meet with you to speak to you there. </VERS>\n\t\t\t<VERS vnumber=\"43\"> There I will meet with the Israelites, and it will be set apart as holy by my glory.</VERS>\n\t\t\t<VERS vnumber=\"44\"> \"So I will set apart as holy the tent of meeting and the altar, and I will set apart as holy Aaron and his sons, that they may minister as priests to me. </VERS>\n\t\t\t<VERS vnumber=\"45\"> I will reside among the Israelites, and I will be their God,</VERS>\n\t\t\t<VERS vnumber=\"46\"> and they will know that I am the LORD their God, who brought them out from the land of Egypt, so that I may reside among them. I am the LORD their God.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"30\">\n\t\t\t<VERS vnumber=\"1\">  \"You are to make an altar for burning incense; you are to make it of acacia wood.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Its length is to be a foot and a half and its width a foot and a half; it will be square. Its height is to be three feet, with its horns of one piece with it.</VERS>\n\t\t\t<VERS vnumber=\"3\"> You are to overlay it with pure gold, its top, its four walls, and its horns, and make a surrounding border of gold for it.</VERS>\n\t\t\t<VERS vnumber=\"4\"> You are to make two gold rings for it under its border, on its two flanks; you are to make them on its two sides. The rings will be places for poles to carry it with. </VERS>\n\t\t\t<VERS vnumber=\"5\"> You are to make the poles of acacia wood and overlay them with gold.</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"You are to put it in front of the curtain that is before the ark of the testimony (before the atonement lid that is over the testimony), where I will meet you.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Aaron is to burn sweet incense on it morning by morning; when he attends to the lamps he is to burn incense.</VERS>\n\t\t\t<VERS vnumber=\"8\"> When Aaron sets up the lamps around sundown he is to burn incense on it; it is to be a regular incense offering before the LORD throughout your generations.</VERS>\n\t\t\t<VERS vnumber=\"9\"> You must not offer strange incense on it, nor burnt offering, nor meal offering, and you must not pour out a drink offering on it.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Aaron is to make atonement on its horns once in the year with some of the blood of the sin offering for atonement; once in the year he is to make atonement on it throughout your generations. It is most holy to the LORD.\"</VERS>\n\t\t\t<VERS vnumber=\"11\">  The LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"12\"> \"When you take a census of the Israelites according to their number, then each man is to pay a ransom for his life to the LORD when you number them, so that there will be no plague among them when you number them. </VERS>\n\t\t\t<VERS vnumber=\"13\"> Everyone who crosses over to those who are numbered is to pay this: a half shekel according to the shekel of the sanctuary (a shekel weighs twenty gerahs). The half shekel is to be an offering to the LORD. </VERS>\n\t\t\t<VERS vnumber=\"14\"> Everyone who crosses over to those numbered, from twenty years old and up, is to pay an offering to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"15\"> The rich are not to increase it, and the poor are not to pay less than the half shekel when giving the offering of the LORD, to make atonement for your lives. </VERS>\n\t\t\t<VERS vnumber=\"16\"> You are to receive the atonement money from the Israelites and give it for the service of the tent of meeting. It will be a memorial for the Israelites before the LORD, to make atonement for your lives.\"</VERS>\n\t\t\t<VERS vnumber=\"17\">  The LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"18\"> \"You are also to make a large bronze basin with a bronze stand for washing. You are to put it between the tent of meeting and the altar and put water in it,</VERS>\n\t\t\t<VERS vnumber=\"19\"> and Aaron and his sons must wash their hands and their feet from it.</VERS>\n\t\t\t<VERS vnumber=\"20\"> When they enter the tent of meeting, they must wash with water so that they do not die. Also, when they approach the altar to minister by burning incense as an offering made by fire to the LORD, </VERS>\n\t\t\t<VERS vnumber=\"21\"> they must wash their hands and their feet so that they do not die. And this will be a perpetual ordinance for them and for their descendants throughout their generations.\"</VERS>\n\t\t\t<VERS vnumber=\"22\">  The LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"23\"> \"Take choice spices: twelve and a half pounds of free-flowing myrrh, half that, about six and a quarter pounds, of sweet-smelling cinnamon, six and a quarter pounds of sweet-smelling cane,</VERS>\n\t\t\t<VERS vnumber=\"24\"> and twelve and a half pounds of cassia, all weighed according to the sanctuary shekel, and four quarts of olive oil. </VERS>\n\t\t\t<VERS vnumber=\"25\"> You are to make this into a sacred anointing oil, a perfumed compound, the work of a perfumer. It will be sacred anointing oil.</VERS>\n\t\t\t<VERS vnumber=\"26\"> \"With it you are to anoint the tent of meeting, the ark of the testimony,</VERS>\n\t\t\t<VERS vnumber=\"27\"> the table and all its utensils, the lampstand and its utensils, the altar of incense,</VERS>\n\t\t\t<VERS vnumber=\"28\"> the altar for the burnt offering and all its utensils, and the laver and its base.</VERS>\n\t\t\t<VERS vnumber=\"29\"> So you are to sanctify them, and they will be most holy; anything that touches them will be holy.</VERS>\n\t\t\t<VERS vnumber=\"30\"> \"You are to anoint Aaron and his sons and sanctify them, so that they may minister as my priests.</VERS>\n\t\t\t<VERS vnumber=\"31\"> And you are to tell the Israelites: 'This is to be my sacred anointing oil throughout your generations.</VERS>\n\t\t\t<VERS vnumber=\"32\"> It must not be applied to people's bodies, and you must not make any like it with the same recipe. It is holy, and it must be holy to you. </VERS>\n\t\t\t<VERS vnumber=\"33\"> Whoever makes perfume like it and whoever puts any of it on someone not a priest will be cut off from his people.'\"</VERS>\n\t\t\t<VERS vnumber=\"34\"> The LORD said to Moses: \"Take spices, gum resin, onycha, galbanum, and pure frankincense of equal amounts</VERS>\n\t\t\t<VERS vnumber=\"35\"> and make it into an incense, a perfume, the work of a perfumer. It is to be finely ground, and pure and sacred. </VERS>\n\t\t\t<VERS vnumber=\"36\"> You are to beat some of it very fine and put some of it before the ark of the testimony in the tent of meeting where I will meet with you; it is to be most holy to you.</VERS>\n\t\t\t<VERS vnumber=\"37\"> And the incense that you are to make, you must not make for yourselves using the same recipe; it is to be most holy to you, belonging to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"38\"> Whoever makes anything like it, to use as perfume, will be cut off from his people.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"31\">\n\t\t\t<VERS vnumber=\"1\">  The LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"See, I have chosen Bezalel son of Uri, the son of Hur, of the tribe of Judah, </VERS>\n\t\t\t<VERS vnumber=\"3\"> and I have filled him with the Spirit of God in skill, in understanding, in knowledge, and in all kinds of craftsmanship, </VERS>\n\t\t\t<VERS vnumber=\"4\"> to make artistic designs for work with gold, with silver, and with bronze, </VERS>\n\t\t\t<VERS vnumber=\"5\"> and with cutting and setting stone, and with cutting wood, to work in all kinds of craftsmanship.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Moreover, I have also given him Oholiab son of Ahisamach, of the tribe of Dan, and I have given ability to all the specially skilled, that they may make everything I have commanded you:</VERS>\n\t\t\t<VERS vnumber=\"7\"> the tent of meeting, the ark of the testimony, the atonement lid that is on it, all the furnishings of the tent, </VERS>\n\t\t\t<VERS vnumber=\"8\"> the table with its utensils, the pure lampstand with all its utensils, the altar of incense,</VERS>\n\t\t\t<VERS vnumber=\"9\"> the altar for the burnt offering with all its utensils, the large basin with its base,</VERS>\n\t\t\t<VERS vnumber=\"10\"> the woven garments, the holy garments for Aaron the priest and the garments for his sons, to minister as priests,</VERS>\n\t\t\t<VERS vnumber=\"11\"> the anointing oil, and sweet incense for the Holy Place. They will make all these things just as I have commanded you.\"</VERS>\n\t\t\t<VERS vnumber=\"12\">  The LORD said to Moses,</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"Tell the Israelites, 'Surely you must keep my Sabbaths, for it is a sign between me and you throughout your generations, that you may know that I am the LORD who sanctifies you.</VERS>\n\t\t\t<VERS vnumber=\"14\"> So you must keep the Sabbath, for it is holy for you. Everyone who defiles it must surely be put to death; indeed, if anyone does any work on it, then that person will be cut off from among his people.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Six days work may be done, but on the seventh day is a Sabbath of complete rest, holy to the LORD; anyone who does work on the Sabbath day must surely be put to death. </VERS>\n\t\t\t<VERS vnumber=\"16\"> The Israelites must keep the Sabbath by observing the Sabbath throughout their generations as a perpetual covenant.</VERS>\n\t\t\t<VERS vnumber=\"17\"> It is a sign between me and the Israelites forever; for in six days the LORD made the heavens and the earth, and on the seventh day he rested and was refreshed.'\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> He gave Moses two tablets of testimony when he had finished speaking with him on Mount Sinai, tablets of stone written by the finger of God.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"32\">\n\t\t\t<VERS vnumber=\"1\">  When the people saw that Moses delayed in coming down from the mountain, they gathered around Aaron and said to him, \"Get up, make us gods that will go before us. As for this fellow Moses, the man who brought us up from the land of Egypt, we do not know what has become of him!\"</VERS>\n\t\t\t<VERS vnumber=\"2\"> So Aaron said to them, \"Break off the gold earrings that are on the ears of your wives, your sons, and your daughters, and bring them to me.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> So all the people broke off the gold earrings that were on their ears and brought them to Aaron. </VERS>\n\t\t\t<VERS vnumber=\"4\"> He accepted the gold from them, fashioned it with an engraving tool, and made a molten calf. Then they said, \"These are your gods, O Israel, who brought you up out of Egypt.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> When Aaron saw this, he built an altar before it, and Aaron made a proclamation and said, \"Tomorrow will be a feast to the LORD.\" </VERS>\n\t\t\t<VERS vnumber=\"6\"> So they got up early on the next day and offered up burnt offerings and brought peace offerings, and the people sat down to eat and drink, and they rose up to play.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The LORD spoke to Moses: \"Go quickly, descend, because your people, whom you brought up from the land of Egypt, have acted corruptly. </VERS>\n\t\t\t<VERS vnumber=\"8\"> They have quickly turned aside from the way that I commanded them, they have made for themselves a molten calf and have bowed down to it and sacrificed to it and said, 'These are your gods, O Israel, which brought you up from the land of Egypt.'\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> Then the LORD said to Moses: \"I have seen this people. Look what a stiff-necked people they are!</VERS>\n\t\t\t<VERS vnumber=\"10\"> So now, leave me alone so that my anger can burn against them and I can destroy them, and I will make from you a great nation.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> But Moses sought the favor of the LORD his God and said, \"O LORD, why does your anger burn against your people, whom you have brought out from the land of Egypt with great power and with a mighty hand? </VERS>\n\t\t\t<VERS vnumber=\"12\"> Why should the Egyptians say, 'For evil he led them out to kill them in the mountains and to destroy them from the face of the earth'? Turn from your burning anger, and relent of this evil against your people. </VERS>\n\t\t\t<VERS vnumber=\"13\"> Remember Abraham, Isaac, and Israel your servants, to whom you swore by yourself and told them, 'I will multiply your descendants like the stars of heaven, and all this land that I have spoken about I will give to your descendants, and they will inherit it forever.'\" </VERS>\n\t\t\t<VERS vnumber=\"14\"> Then the LORD relented over the evil that he had said he would do to his people.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Moses turned and went down from the mountain with the two tablets of the testimony in his hands. The tablets were written on both sides, they were written on the front and on the back.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Now the tablets were the work of God, and the writing was the writing of God, engraved on the tablets.</VERS>\n\t\t\t<VERS vnumber=\"17\"> When Joshua heard the noise of the people as they shouted, he said to Moses, \"It is the sound of war in the camp!\" </VERS>\n\t\t\t<VERS vnumber=\"18\"> Moses said, \"It is not the sound of those who shout for victory, nor is it the sound of those who cry because they are overcome, but the sound of singing I hear.\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> When he approached the camp and saw the calf and the dancing, Moses became extremely angry. He threw the tablets from his hands and broke them to pieces at the bottom of the mountain.</VERS>\n\t\t\t<VERS vnumber=\"20\"> He took the calf they had made and burned it in the fire, ground it to powder, poured it out on the water, and made the Israelites drink it.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Moses said to Aaron, \"What did this people do to you, that you have brought on them so great a sin?\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> Aaron said, \"Do not let your anger burn hot, my lord; you know these people, that they tend to evil.</VERS>\n\t\t\t<VERS vnumber=\"23\"> They said to me, 'Make us gods that will go before us, for as for this fellow Moses, the man who brought us up out of the land of Egypt, we do not know what has happened to him.'</VERS>\n\t\t\t<VERS vnumber=\"24\"> So I said to them, 'Whoever has gold, break it off.' So they gave it to me, and I threw it into the fire, and this calf came out.\"</VERS>\n\t\t\t<VERS vnumber=\"25\"> Moses saw that the people were running wild, for Aaron had let them get completely out of control, causing derision from their enemies.</VERS>\n\t\t\t<VERS vnumber=\"26\"> So Moses stood at the entrance of the camp and said, \"Whoever is for the LORD, come to me.\" All the Levites gathered around him, </VERS>\n\t\t\t<VERS vnumber=\"27\"> and he said to them, \"Thus says the LORD, the God of Israel, 'Each man fasten his sword on his side, and go back and forth from entrance to entrance throughout the camp, and each one kill his brother, his friend, and his neighbor.'\"</VERS>\n\t\t\t<VERS vnumber=\"28\"> The Levites did what Moses ordered, and that day about three thousand men of the people died.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Moses said, \"You have been consecrated today for the LORD, for each of you was against his son or against his brother, so he has given a blessing to you today.\"</VERS>\n\t\t\t<VERS vnumber=\"30\"> The next day Moses said to the people, \"You have committed a very serious sin, but now I will go up to the LORD, perhaps I can make atonement on behalf of your sin.\"</VERS>\n\t\t\t<VERS vnumber=\"31\"> So Moses returned to the LORD and said, \"Alas, this people has committed a very serious sin, and they have made for themselves gods of gold. </VERS>\n\t\t\t<VERS vnumber=\"32\"> But now, if you will forgive their sin,, but if not, wipe me out from your book that you have written.\"</VERS>\n\t\t\t<VERS vnumber=\"33\"> The LORD said to Moses, \"Whoever has sinned against me, that person I will wipe out of my book.</VERS>\n\t\t\t<VERS vnumber=\"34\"> So now go, lead the people to the place I have spoken to you about. See, my angel will go before you. But on the day that I punish, I will indeed punish them for their sin.\"</VERS>\n\t\t\t<VERS vnumber=\"35\"> And the LORD sent a plague on the people because they had made the calf, the one Aaron made.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"33\">\n\t\t\t<VERS vnumber=\"1\"> The LORD said to Moses, \"Go up from here, you and the people whom you brought up out of the land of Egypt, to the land I promised on oath to Abraham, to Isaac, and to Jacob, saying, 'I will give it to your descendants.'</VERS>\n\t\t\t<VERS vnumber=\"2\"> I will send an angel before you, and I will drive out the Canaanite, the Amorite, the Hittite, the Perizzite, the Hivite, and the Jebusite.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Go up to a land flowing with milk and honey. But I will not go up among you, for you are a stiff-necked people, and I might destroy you on the way.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> When the people heard this troubling word they mourned; no one put on his ornaments. </VERS>\n\t\t\t<VERS vnumber=\"5\"> For the LORD had said to Moses, \"Tell the Israelites, 'You are a stiff-necked people. If I went up among you for a moment, I might destroy you. Now take off your ornaments, that I may know what I should do to you.'\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> So the Israelites stripped off their ornaments by Mount Horeb.</VERS>\n\t\t\t<VERS vnumber=\"7\">  Moses took the tent and pitched it outside the camp, at a good distance from the camp, and he called it the tent of meeting. Anyone seeking the LORD would go out to the tent of meeting that was outside the camp.</VERS>\n\t\t\t<VERS vnumber=\"8\"> And when Moses went out to the tent, all the people would get up and stand at the entrance to their tents and watch Moses until he entered the tent.</VERS>\n\t\t\t<VERS vnumber=\"9\"> And whenever Moses entered the tent, the pillar of cloud would descend and stand at the entrance of the tent, and the LORD would speak with Moses.</VERS>\n\t\t\t<VERS vnumber=\"10\"> When all the people would see the pillar of cloud standing at the entrance of the tent, all the people, each one at the entrance of his own tent, would rise and worship.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The LORD would speak to Moses face to face, the way a person speaks to a friend. Then Moses would return to the camp, but his servant, Joshua son of Nun, a young man, did not leave the tent.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Moses said to the LORD, \"See, you have been saying to me, 'Bring this people up,' but you have not let me know whom you will send with me. But you said, 'I know you by name, and also you have found favor in my sight.'</VERS>\n\t\t\t<VERS vnumber=\"13\"> Now if I have found favor in your sight, show me your way, that I may know you, that I may continue to find favor in your sight. And see that this nation is your people.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> And the LORD said, \"My presence will go with you, and I will give you rest.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> And Moses said to him, \"If your presence does not go with us, do not take us up from here.</VERS>\n\t\t\t<VERS vnumber=\"16\"> For how will it be known then that I have found favor in your sight, I and your people? Is it not by your going with us, so that we will be distinguished, I and your people, from all the people who are on the face of the earth?\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> The LORD said to Moses, \"I will do this thing also that you have requested, for you have found favor in my sight, and I know you by name.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> And Moses said, \"Show me your glory.\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> And the LORD said, \"I will make all my goodness pass before your face, and I will proclaim the LORD by name before you; I will be gracious to whom I will be gracious, I will show mercy to whom I will show mercy.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> But he added, \"You cannot see my face, for no one can see me and live.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> The LORD said, \"Here is a place by me; you will station yourself on a rock. </VERS>\n\t\t\t<VERS vnumber=\"22\"> When my glory passes by, I will put you in a cleft in the rock and will cover you with my hand while I pass by.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Then I will take away my hand, and you will see my back, but my face must not be seen.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"34\">\n\t\t\t<VERS vnumber=\"1\">  The LORD said to Moses, \"Cut out two tablets of stone like the first, and I will write on the tablets the words that were on the first tablets, which you smashed.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Be prepared in the morning, and go up in the morning to Mount Sinai, and station yourself for me there on the top of the mountain. </VERS>\n\t\t\t<VERS vnumber=\"3\"> No one is to come up with you; do not let anyone be seen anywhere on the mountain; not even the flocks or the herds may graze in front of that mountain.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> So Moses cut out two tablets of stone like the first; early in the morning he went up to Mount Sinai, just as the LORD had commanded him, and he took in his hand the two tablets of stone.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The LORD descended in the cloud and stood with him there and proclaimed the LORD by name.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The LORD passed by before him and proclaimed: \"The LORD, the LORD, the compassionate and gracious God, slow to anger, and abounding in loyal love and faithfulness,</VERS>\n\t\t\t<VERS vnumber=\"7\"> keeping loyal love for thousands, forgiving iniquity and transgression and sin. But he by no means leaves the guilty unpunished, responding to the transgression of fathers by dealing with children and children's children, to the third and fourth generation.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> Moses quickly bowed to the ground and worshiped </VERS>\n\t\t\t<VERS vnumber=\"9\"> and said, \"If now I have found favor in your sight, O Lord, let my Lord go among us, for we are a stiff-necked people; pardon our iniquity and our sin, and take us for your inheritance.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> He said, \"See, I am going to make a covenant before all your people. I will do wonders such as have not been done in all the earth, nor in any nation. All the people among whom you live will see the work of the LORD, for it is a fearful thing that I am doing with you.</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"Obey what I am commanding you this day. I am going to drive out before you the Amorite, the Canaanite, the Hittite, the Perizzite, the Hivite, and the Jebusite. </VERS>\n\t\t\t<VERS vnumber=\"12\"> Be careful not to make a covenant with the inhabitants of the land where you are going, lest it become a snare among you. </VERS>\n\t\t\t<VERS vnumber=\"13\"> Rather you must destroy their altars, smash their images, and cut down their Asherah poles.</VERS>\n\t\t\t<VERS vnumber=\"14\"> For you must not worship any other god, for the LORD, whose name is Jealous, is a jealous God. </VERS>\n\t\t\t<VERS vnumber=\"15\"> Be careful not to make a covenant with the inhabitants of the land, for when they prostitute themselves to their gods and sacrifice to their gods, and someone invites you, you will eat from his sacrifice; </VERS>\n\t\t\t<VERS vnumber=\"16\"> and you then take his daughters for your sons, and when his daughters prostitute themselves to their gods, they will make your sons prostitute themselves to their gods as well. </VERS>\n\t\t\t<VERS vnumber=\"17\"> You must not make yourselves molten gods.</VERS>\n\t\t\t<VERS vnumber=\"18\"> \"You must keep the Feast of Unleavened Bread. For seven days you must eat bread made without yeast, as I commanded you; do this at the appointed time of the month Abib, for in the month Abib you came out of Egypt.</VERS>\n\t\t\t<VERS vnumber=\"19\"> \"Every firstborn of the womb belongs to me, even every firstborn of your cattle that is a male, whether ox or sheep.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Now the firstling of a donkey you may redeem with a lamb, but if you do not redeem it, then break its neck. You must redeem all the firstborn of your sons. \"No one will appear before me empty-handed.</VERS>\n\t\t\t<VERS vnumber=\"21\"> \"On six days you may labor, but on the seventh day you must rest; even at the time of plowing and of harvest you are to rest.</VERS>\n\t\t\t<VERS vnumber=\"22\"> \"You must observe the Feast of Weeks, the firstfruits of the harvest of wheat, and the Feast of Ingathering at the end of the year.</VERS>\n\t\t\t<VERS vnumber=\"23\"> At three times in the year all your men must appear before the Lord GOD, the God of Israel. </VERS>\n\t\t\t<VERS vnumber=\"24\"> For I will drive out the nations before you and enlarge your borders; no one will covet your land when you go up to appear before the LORD your God three times in the year.</VERS>\n\t\t\t<VERS vnumber=\"25\"> \"You must not offer the blood of my sacrifice with yeast; the sacrifice from the feast of Passover must not remain until the following morning.</VERS>\n\t\t\t<VERS vnumber=\"26\"> \"The first of the firstfruits of your soil you must bring to the house of the LORD your God. You must not cook a young goat in its mother's milk.\"</VERS>\n\t\t\t<VERS vnumber=\"27\"> The LORD said to Moses, \"Write down these words, for in accordance with these words I have made a covenant with you and with Israel.\" </VERS>\n\t\t\t<VERS vnumber=\"28\"> So he was there with the LORD forty days and forty nights; he did not eat bread, and he did not drink water. He wrote on the tablets the words of the covenant, the ten commandments.</VERS>\n\t\t\t<VERS vnumber=\"29\">  Now when Moses came down from Mount Sinai with the two tablets of the testimony in his hand, when he came down from the mountain, Moses did not know that the skin of his face shone while he talked with him.</VERS>\n\t\t\t<VERS vnumber=\"30\"> When Aaron and all the Israelites saw Moses, the skin of his face shone; and they were afraid to approach him. </VERS>\n\t\t\t<VERS vnumber=\"31\"> But Moses called to them, so Aaron and all the leaders of the community came back to him, and Moses spoke to them.</VERS>\n\t\t\t<VERS vnumber=\"32\"> After this all the Israelites approached, and he commanded them all that the LORD had spoken to him on Mount Sinai.</VERS>\n\t\t\t<VERS vnumber=\"33\"> When Moses finished speaking with them, he would put a veil on his face. </VERS>\n\t\t\t<VERS vnumber=\"34\"> But when Moses went in before the LORD to speak with him, he would remove the veil until he came out. Then he would come out and tell the Israelites what he had been commanded.</VERS>\n\t\t\t<VERS vnumber=\"35\"> When the Israelites would see the face of Moses, that the skin of Moses' face shone, Moses would put the veil on his face again, until he went in to speak with the LORD.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"35\">\n\t\t\t<VERS vnumber=\"1\"> Moses assembled the whole community of the Israelites and said to them, \"These are the things that the LORD has commanded you to do.</VERS>\n\t\t\t<VERS vnumber=\"2\"> In six days work may be done, but on the seventh day there must be a holy day for you, a Sabbath of complete rest to the LORD. Anyone who does work on it will be put to death.</VERS>\n\t\t\t<VERS vnumber=\"3\"> You must not kindle a fire in any of your homes on the Sabbath day.\"</VERS>\n\t\t\t<VERS vnumber=\"4\">  Moses spoke to the whole community of the Israelites, \"This is the word that the LORD has commanded: </VERS>\n\t\t\t<VERS vnumber=\"5\"> 'Take an offering for the LORD. Let everyone who has a willing heart bring an offering to the LORD: gold, silver, bronze, </VERS>\n\t\t\t<VERS vnumber=\"6\"> blue, purple, and scarlet yarn, fine linen, goat's hair,</VERS>\n\t\t\t<VERS vnumber=\"7\"> ram skins dyed red, fine leather, acacia wood, </VERS>\n\t\t\t<VERS vnumber=\"8\"> olive oil for the light, spices for the anointing oil and for the fragrant incense,</VERS>\n\t\t\t<VERS vnumber=\"9\"> onyx stones, and other gems for mounting on the ephod and the breastpiece. </VERS>\n\t\t\t<VERS vnumber=\"10\"> Every skilled person among you is to come and make all that the LORD has commanded: </VERS>\n\t\t\t<VERS vnumber=\"11\"> the tabernacle with its tent, its covering, its clasps, its frames, its crossbars, its posts, and its bases; </VERS>\n\t\t\t<VERS vnumber=\"12\"> the ark, with its poles, the atonement lid, and the special curtain that conceals it;</VERS>\n\t\t\t<VERS vnumber=\"13\"> the table with its poles and all its vessels, and the Bread of the Presence;</VERS>\n\t\t\t<VERS vnumber=\"14\"> the lampstand for the light and its accessories, its lamps, and oil for the light;</VERS>\n\t\t\t<VERS vnumber=\"15\"> and the altar of incense with its poles, the anointing oil, and the fragrant incense; the hanging for the door at the entrance of the tabernacle;</VERS>\n\t\t\t<VERS vnumber=\"16\"> the altar for the burnt offering with its bronze grating that is on it, its poles, and all its utensils; the large basin and its pedestal;</VERS>\n\t\t\t<VERS vnumber=\"17\"> the hangings of the courtyard, its posts and its bases, and the curtain for the gateway to the courtyard;</VERS>\n\t\t\t<VERS vnumber=\"18\"> tent pegs for the tabernacle and tent pegs for the courtyard and their ropes;</VERS>\n\t\t\t<VERS vnumber=\"19\"> the woven garments for serving in the holy place, the holy garments for Aaron the priest, and the garments for his sons to minister as priests.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> So the whole community of the Israelites went out from the presence of Moses.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Everyone whose heart stirred him to action and everyone whose spirit was willing came and brought the offering for the LORD for the work of the tent of meeting, for all its service, and for the holy garments.</VERS>\n\t\t\t<VERS vnumber=\"22\"> They came, men and women alike, all who had willing hearts. They brought brooches, earrings, rings and ornaments, all kinds of gold jewelry, and everyone came who waved a wave offering of gold to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Everyone who had blue, purple, or scarlet yarn, fine linen, goats' hair, ram skins dyed red, or fine leather brought them.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Everyone making an offering of silver or bronze brought it as an offering to the LORD, and everyone who had acacia wood for any work of the service brought it.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Every woman who was skilled spun with her hands and brought what she had spun, blue, purple, or scarlet yarn, or fine linen, </VERS>\n\t\t\t<VERS vnumber=\"26\"> and all the women whose heart stirred them to action and who were skilled spun goats' hair.</VERS>\n\t\t\t<VERS vnumber=\"27\"> The leaders brought onyx stones and other gems to be mounted for the ephod and the breastpiece, </VERS>\n\t\t\t<VERS vnumber=\"28\"> and spices and olive oil for the light, for the anointing oil, and for the fragrant incense.</VERS>\n\t\t\t<VERS vnumber=\"29\"> The Israelites brought a freewill offering to the LORD, every man and woman whose heart was willing to bring materials for all the work that the LORD through Moses had commanded them to do.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Moses said to the Israelites, \"See, the LORD has chosen Bezalel son of Uri, the son of Hur, of the tribe of Judah. </VERS>\n\t\t\t<VERS vnumber=\"31\"> He has filled him with the Spirit of God, with skill, with understanding, with knowledge, and in all kinds of work,</VERS>\n\t\t\t<VERS vnumber=\"32\"> to design artistic designs, to work in gold, in silver, and in bronze,</VERS>\n\t\t\t<VERS vnumber=\"33\"> and in cutting stones for their setting, and in cutting wood, to do work in every artistic craft.</VERS>\n\t\t\t<VERS vnumber=\"34\"> And he has put it in his heart to teach, he and Oholiab son of Ahisamach, of the tribe of Dan.</VERS>\n\t\t\t<VERS vnumber=\"35\"> He has filled them with skill to do all kinds of work as craftsmen, as designers, as embroiderers in blue, purple, and scarlet yarn and in fine linen, and as weavers. They are craftsmen in all the work and artistic designers.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"36\">\n\t\t\t<VERS vnumber=\"1\"> So Bezalel and Oholiab and every skilled person in whom the LORD has put skill and ability to know how to do all the work for the service of the sanctuary are to do the work according to all that the LORD has commanded.\"</VERS>\n\t\t\t<VERS vnumber=\"2\"> Moses summoned Bezalel and Oholiab and every skilled person in whom the LORD had put skill, everyone whose heart stirred him to volunteer to do the work,</VERS>\n\t\t\t<VERS vnumber=\"3\"> and they received from Moses all the offerings the Israelites had brought to do the work for the service of the sanctuary, and they still continued to bring him a freewill offering each morning.</VERS>\n\t\t\t<VERS vnumber=\"4\"> So all the skilled people who were doing all the work on the sanctuary came from the work they were doing </VERS>\n\t\t\t<VERS vnumber=\"5\"> and told Moses, \"The people are bringing much more than is needed for the completion of the work which the LORD commanded us to do!\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> Moses instructed them to take his message throughout the camp, saying, \"Let no man or woman do any more work for the offering for the sanctuary.\" So the people were restrained from bringing any more.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Now the materials were more than enough for them to do all the work.</VERS>\n\t\t\t<VERS vnumber=\"8\"> All the skilled among those who were doing the work made the tabernacle with ten curtains of fine twisted linen and blue and purple and scarlet; they were made with cherubim that were the work of an artistic designer.</VERS>\n\t\t\t<VERS vnumber=\"9\"> The length of one curtain was forty-two feet, and the width of one curtain was six feet, the same size for each of the curtains.</VERS>\n\t\t\t<VERS vnumber=\"10\"> He joined five of the curtains to one another, and the other five curtains he joined to one another. </VERS>\n\t\t\t<VERS vnumber=\"11\"> He made loops of blue material along the edge of the end curtain in the first set; he did the same along the edge of the end curtain in the second set.</VERS>\n\t\t\t<VERS vnumber=\"12\"> He made fifty loops on the first curtain, and he made fifty loops on the end curtain that was in the second set, with the loops opposite one another.</VERS>\n\t\t\t<VERS vnumber=\"13\"> He made fifty gold clasps and joined the curtains together to one another with the clasps, so that the tabernacle was a unit.</VERS>\n\t\t\t<VERS vnumber=\"14\"> He made curtains of goats' hair for a tent over the tabernacle; he made eleven curtains.</VERS>\n\t\t\t<VERS vnumber=\"15\"> The length of one curtain was forty-five feet, and the width of one curtain was six feet, one size for all eleven curtains.</VERS>\n\t\t\t<VERS vnumber=\"16\"> He joined five curtains by themselves and six curtains by themselves.</VERS>\n\t\t\t<VERS vnumber=\"17\"> He made fifty loops along the edge of the end curtain in the first set and fifty loops along the edge of the curtain that joined the second set.</VERS>\n\t\t\t<VERS vnumber=\"18\"> He made fifty bronze clasps to join the tent together so that it might be a unit.</VERS>\n\t\t\t<VERS vnumber=\"19\"> He made a covering for the tent out of ram skins dyed red and over that a covering of fine leather.</VERS>\n\t\t\t<VERS vnumber=\"20\"> He made the frames for the tabernacle of acacia wood as uprights.</VERS>\n\t\t\t<VERS vnumber=\"21\"> The length of each frame was fifteen feet, the width of each frame was two and a quarter feet, </VERS>\n\t\t\t<VERS vnumber=\"22\"> with two projections per frame parallel one to another. He made all the frames of the tabernacle in this way. </VERS>\n\t\t\t<VERS vnumber=\"23\"> So he made frames for the tabernacle: twenty frames for the south side.</VERS>\n\t\t\t<VERS vnumber=\"24\"> He made forty silver bases under the twenty frames, two bases under the first frame for its two projections, and likewise two bases under the next frame for its two projections,</VERS>\n\t\t\t<VERS vnumber=\"25\"> and for the second side of the tabernacle, the north side, he made twenty frames</VERS>\n\t\t\t<VERS vnumber=\"26\"> and their forty silver bases, two bases under the first frame and two bases under the next frame. </VERS>\n\t\t\t<VERS vnumber=\"27\"> And for the back of the tabernacle on the west he made six frames.</VERS>\n\t\t\t<VERS vnumber=\"28\"> He made two frames for the corners of the tabernacle on the back.</VERS>\n\t\t\t<VERS vnumber=\"29\"> At the two corners they were doubled at the lower end and finished together at the top in one ring. So he did for both. </VERS>\n\t\t\t<VERS vnumber=\"30\"> So there were eight frames and their silver bases, sixteen bases, two bases under each frame.</VERS>\n\t\t\t<VERS vnumber=\"31\"> He made bars of acacia wood, five for the frames on one side of the tabernacle</VERS>\n\t\t\t<VERS vnumber=\"32\"> and five bars for the frames on the second side of the tabernacle, and five bars for the frames of the tabernacle for the back side on the west.</VERS>\n\t\t\t<VERS vnumber=\"33\"> He made the middle bar to reach from end to end in the center of the frames.</VERS>\n\t\t\t<VERS vnumber=\"34\"> He overlaid the frames with gold and made their rings of gold to provide places for the bars, and he overlaid the bars with gold.</VERS>\n\t\t\t<VERS vnumber=\"35\"> He made the special curtain of blue, purple, and scarlet yarn and fine twisted linen; he made it with cherubim, the work of an artistic designer. </VERS>\n\t\t\t<VERS vnumber=\"36\"> He made for it four posts of acacia wood and overlaid them with gold, with gold hooks, and he cast for them four silver bases.</VERS>\n\t\t\t<VERS vnumber=\"37\"> He made a hanging for the entrance of the tent of blue, purple, and scarlet yarn and fine twisted linen, the work of an embroiderer,</VERS>\n\t\t\t<VERS vnumber=\"38\"> and its five posts and their hooks. He overlaid their tops and their bands with gold, but their five bases were bronze.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"37\">\n\t\t\t<VERS vnumber=\"1\"> Bezalel made the ark of acacia wood; its length was three feet nine inches, its width two feet three inches, and its height two feet three inches.</VERS>\n\t\t\t<VERS vnumber=\"2\"> He overlaid it with pure gold, inside and out, and he made a surrounding border of gold for it. </VERS>\n\t\t\t<VERS vnumber=\"3\"> He cast four gold rings for it that he put on its four feet, with two rings on one side and two rings on the other side. </VERS>\n\t\t\t<VERS vnumber=\"4\"> He made poles of acacia wood, overlaid them with gold,</VERS>\n\t\t\t<VERS vnumber=\"5\"> and put the poles into the rings on the sides of the ark in order to carry the ark.</VERS>\n\t\t\t<VERS vnumber=\"6\"> He made an atonement lid of pure gold; its length was three feet nine inches, and its width was two feet three inches. </VERS>\n\t\t\t<VERS vnumber=\"7\"> He made two cherubim of gold; he made them of hammered metal on the two ends of the atonement lid,</VERS>\n\t\t\t<VERS vnumber=\"8\"> one cherub on one end and one cherub on the other end. He made the cherubim from the atonement lid on its two ends.</VERS>\n\t\t\t<VERS vnumber=\"9\"> The cherubim were spreading their wings upward, overshadowing the atonement lid with their wings. The cherubim faced each other, looking toward the atonement lid.</VERS>\n\t\t\t<VERS vnumber=\"10\"> He made the table of acacia wood; its length was three feet, its width one foot six inches, and its height two feet three inches.</VERS>\n\t\t\t<VERS vnumber=\"11\"> He overlaid it with pure gold, and he made a surrounding border of gold for it.</VERS>\n\t\t\t<VERS vnumber=\"12\"> He made a surrounding frame for it about three inches wide, and he made a surrounding border of gold for its frame.</VERS>\n\t\t\t<VERS vnumber=\"13\"> He cast four gold rings for it and attached the rings at the four corners where its four legs were.</VERS>\n\t\t\t<VERS vnumber=\"14\"> The rings were close to the frame to provide places for the poles to carry the table.</VERS>\n\t\t\t<VERS vnumber=\"15\"> He made the poles of acacia wood and overlaid them with gold, to carry the table.</VERS>\n\t\t\t<VERS vnumber=\"16\"> He made the vessels which were on the table out of pure gold, its plates, its ladles, its pitchers, and its bowls, to be used in pouring out offerings.</VERS>\n\t\t\t<VERS vnumber=\"17\"> He made the lampstand of pure gold. He made the lampstand of hammered metal; its base and its shaft, its cups, its buds, and its blossoms were from the same piece.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Six branches were extending from its sides, three branches of the lampstand from one side of it, and three branches of the lampstand from the other side of it.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Three cups shaped like almond flowers with buds and blossoms were on the first branch, and three cups shaped like almond flowers with buds and blossoms were on the next branch, and the same for the six branches that were extending from the lampstand. </VERS>\n\t\t\t<VERS vnumber=\"20\"> On the lampstand there were four cups shaped like almond flowers with buds and blossoms,</VERS>\n\t\t\t<VERS vnumber=\"21\"> with a bud under the first two branches from it, and a bud under the next two branches from it, and a bud under the third two branches from it; according to the six branches that extended from it.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Their buds and their branches were of one piece; all of it was one hammered piece of pure gold. </VERS>\n\t\t\t<VERS vnumber=\"23\"> He made its seven lamps, its trimmers, and its trays of pure gold.</VERS>\n\t\t\t<VERS vnumber=\"24\"> He made the lampstand and all its accessories with seventy-five pounds of pure gold.</VERS>\n\t\t\t<VERS vnumber=\"25\"> He made the incense altar of acacia wood. Its length was a foot and a half and its width a foot and a half, a square, and its height was three feet. Its horns were of one piece with it.</VERS>\n\t\t\t<VERS vnumber=\"26\"> He overlaid it with pure gold, its top, its four walls, and its horns, and he made a surrounding border of gold for it.</VERS>\n\t\t\t<VERS vnumber=\"27\"> He also made two gold rings for it under its border, on its two sides, on opposite sides, as places for poles to carry it with. </VERS>\n\t\t\t<VERS vnumber=\"28\"> He made the poles of acacia wood and overlaid them with gold.</VERS>\n\t\t\t<VERS vnumber=\"29\"> He made the sacred anointing oil and the pure fragrant incense, the work of a perfumer.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"38\">\n\t\t\t<VERS vnumber=\"1\"> He made the altar for the burnt offering of acacia wood seven feet six inches long and seven feet six inches wide, it was square, and its height was four feet six inches.</VERS>\n\t\t\t<VERS vnumber=\"2\"> He made its horns on its four corners; its horns were part of it, and he overlaid it with bronze. </VERS>\n\t\t\t<VERS vnumber=\"3\"> He made all the utensils of the altar, the pots, the shovels, the tossing bowls, the meat hooks, and the fire pans, he made all its utensils of bronze.</VERS>\n\t\t\t<VERS vnumber=\"4\"> He made a grating for the altar, a network of bronze under its ledge, halfway up from the bottom.</VERS>\n\t\t\t<VERS vnumber=\"5\"> He cast four rings for the four corners of the bronze grating, to provide places for the poles.</VERS>\n\t\t\t<VERS vnumber=\"6\"> He made the poles of acacia wood and overlaid them with bronze.</VERS>\n\t\t\t<VERS vnumber=\"7\"> He put the poles into the rings on the sides of the altar, with which to carry it. He made the altar hollow, out of boards.</VERS>\n\t\t\t<VERS vnumber=\"8\"> He made the large basin of bronze and its pedestal of bronze from the mirrors of the women who served at the entrance of the tent of meeting.</VERS>\n\t\t\t<VERS vnumber=\"9\"> He made the courtyard. For the south side the hangings of the courtyard were of fine twisted linen, one hundred fifty feet long, </VERS>\n\t\t\t<VERS vnumber=\"10\"> with their twenty posts and their twenty bronze bases, with the hooks of the posts and their bands of silver. </VERS>\n\t\t\t<VERS vnumber=\"11\"> For the north side the hangings were one hundred fifty feet, with their twenty posts and their twenty bronze bases, with the hooks of the posts and their bands of silver.</VERS>\n\t\t\t<VERS vnumber=\"12\"> For the west side there were hangings seventy-five feet long, with their ten posts and their ten bases, with the hooks of the posts and their bands of silver. </VERS>\n\t\t\t<VERS vnumber=\"13\"> For the east side, toward the sunrise, it was seventy-five feet wide,</VERS>\n\t\t\t<VERS vnumber=\"14\"> with hangings on one side of the gate that were twenty-two and a half feet long, with their three posts and their three bases, </VERS>\n\t\t\t<VERS vnumber=\"15\"> and for the second side of the gate of the courtyard, just like the other, the hangings were twenty-two and a half feet long, with their three posts and their three bases. </VERS>\n\t\t\t<VERS vnumber=\"16\"> All the hangings around the courtyard were of fine twisted linen.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The bases for the posts were bronze. The hooks of the posts and their bands were silver, their tops were overlaid with silver, and all the posts of the courtyard had silver bands.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The curtain for the gate of the courtyard was of blue, purple, and scarlet yarn and fine twisted linen, the work of an embroiderer. It was thirty feet long, and like the hangings in the courtyard, it was seven and a half feet high, </VERS>\n\t\t\t<VERS vnumber=\"19\"> with four posts and their four bronze bases. Their hooks and their bands were silver, and their tops were overlaid with silver.</VERS>\n\t\t\t<VERS vnumber=\"20\"> All the tent pegs of the tabernacle and of the courtyard all around were bronze.</VERS>\n\t\t\t<VERS vnumber=\"21\"> This is the inventory of the tabernacle, the tabernacle of the testimony, which was counted by the order of Moses, being the work of the Levites under the direction of Ithamar, son of Aaron the priest. </VERS>\n\t\t\t<VERS vnumber=\"22\"> Now Bezalel son of Uri, the son of Hur, of the tribe of Judah, made everything that the LORD had commanded Moses;</VERS>\n\t\t\t<VERS vnumber=\"23\"> and with him was Oholiab son of Ahisamach, of the tribe of Dan, an artisan, a designer, and an embroiderer in blue, purple, and scarlet yarn and fine linen.</VERS>\n\t\t\t<VERS vnumber=\"24\"> All the gold that was used for the work, in all the work of the sanctuary (namely, the gold of the wave offering) was twenty-nine talents and 730 shekels, according to the sanctuary shekel.</VERS>\n\t\t\t<VERS vnumber=\"25\"> The silver of those who were numbered of the community was one hundred talents and 1,775 shekels, according to the sanctuary shekel, </VERS>\n\t\t\t<VERS vnumber=\"26\"> one beka per person, that is, a half shekel, according to the sanctuary shekel, for everyone who crossed over to those numbered, from twenty years old or older, 603,550 in all.</VERS>\n\t\t\t<VERS vnumber=\"27\"> The one hundred talents of silver were used for casting the bases of the sanctuary and the bases of the special curtain, one hundred bases for one hundred talents, one talent per base.</VERS>\n\t\t\t<VERS vnumber=\"28\"> From the remaining 1,775 shekels he made hooks for the posts, overlaid their tops, and made bands for them.</VERS>\n\t\t\t<VERS vnumber=\"29\"> The bronze of the wave offering was seventy talents and 2,400 shekels.</VERS>\n\t\t\t<VERS vnumber=\"30\"> With it he made the bases for the door of the tent of meeting, the bronze altar, the bronze grating for it, and all the utensils of the altar,</VERS>\n\t\t\t<VERS vnumber=\"31\"> the bases for the courtyard all around, the bases for the gate of the courtyard, all the tent pegs of the tabernacle, and all the tent pegs of the courtyard all around.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"39\">\n\t\t\t<VERS vnumber=\"1\"> From the blue, purple, and scarlet yarn they made woven garments for serving in the sanctuary; they made holy garments that were for Aaron, just as the LORD had commanded Moses.</VERS>\n\t\t\t<VERS vnumber=\"2\"> He made the ephod of gold, blue, purple, scarlet, and fine twisted linen.</VERS>\n\t\t\t<VERS vnumber=\"3\"> They hammered the gold into thin sheets and cut it into narrow strips to weave them into the blue, purple, and scarlet yarn, and into the fine linen, the work of an artistic designer.</VERS>\n\t\t\t<VERS vnumber=\"4\"> They made shoulder pieces for it, attached to two of its corners, so it could be joined together.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The artistically woven waistband of the ephod that was on it was like it, of one piece with it, of gold, blue, purple, and scarlet yarn and fine twisted linen, just as the LORD had commanded Moses.</VERS>\n\t\t\t<VERS vnumber=\"6\"> They set the onyx stones in gold filigree settings, engraved as with the engravings of a seal with the names of the sons of Israel.</VERS>\n\t\t\t<VERS vnumber=\"7\"> He put them on the shoulder pieces of the ephod as stones of memorial for the Israelites, just as the LORD had commanded Moses.</VERS>\n\t\t\t<VERS vnumber=\"8\"> He made the breastpiece, the work of an artistic designer, in the same fashion as the ephod, of gold, blue, purple, and scarlet, and fine twisted linen.</VERS>\n\t\t\t<VERS vnumber=\"9\"> It was square, they made the breastpiece doubled, nine inches long and nine inches wide when doubled.</VERS>\n\t\t\t<VERS vnumber=\"10\"> They set on it four rows of stones: a row with a ruby, a topaz, and a beryl, the first row;</VERS>\n\t\t\t<VERS vnumber=\"11\"> and the second row, a turquoise, a sapphire, and an emerald;</VERS>\n\t\t\t<VERS vnumber=\"12\"> and the third row, a jacinth, an agate, and an amethyst;</VERS>\n\t\t\t<VERS vnumber=\"13\"> and the fourth row, a chrysolite, an onyx, and a jasper. They were enclosed in gold filigree settings.</VERS>\n\t\t\t<VERS vnumber=\"14\"> The stones were for the names of the sons of Israel, twelve, corresponding to the number of their names. Each name corresponding to one of the twelve tribes was like the engravings of a seal.</VERS>\n\t\t\t<VERS vnumber=\"15\"> They made for the breastpiece braided chains like cords of pure gold,</VERS>\n\t\t\t<VERS vnumber=\"16\"> and they made two gold filigree settings and two gold rings, and they attached the two rings to the upper two ends of the breastpiece. </VERS>\n\t\t\t<VERS vnumber=\"17\"> They attached the two gold chains to the two rings at the ends of the breastpiece;</VERS>\n\t\t\t<VERS vnumber=\"18\"> the other two ends of the two chains they attached to the two settings, and they attached them to the shoulder pieces of the ephod at the front of it. </VERS>\n\t\t\t<VERS vnumber=\"19\"> They made two rings of gold and put them on the other two ends of the breastpiece on its edge, which is on the inner side of the ephod.</VERS>\n\t\t\t<VERS vnumber=\"20\"> They made two more gold rings and attached them to the bottom of the two shoulder pieces on the front of the ephod, close to the juncture above the waistband of the ephod. </VERS>\n\t\t\t<VERS vnumber=\"21\"> They tied the breastpiece by its rings to the rings of the ephod by blue cord, so that it was above the waistband of the ephod, so that the breastpiece would not be loose from the ephod, just as the LORD had commanded Moses.</VERS>\n\t\t\t<VERS vnumber=\"22\"> He made the robe of the ephod completely blue, the work of a weaver.</VERS>\n\t\t\t<VERS vnumber=\"23\"> There was an opening in the center of the robe, like the opening of a collar, with an edge all around the opening so that it could not be torn.</VERS>\n\t\t\t<VERS vnumber=\"24\"> They made pomegranates of blue, purple, and scarlet yarn and twisted linen around the hem of the robe. </VERS>\n\t\t\t<VERS vnumber=\"25\"> They made bells of pure gold and attached the bells between the pomegranates around the hem of the robe between the pomegranates.</VERS>\n\t\t\t<VERS vnumber=\"26\"> There was a bell and a pomegranate, a bell and a pomegranate, all around the hem of the robe, to be used in ministering, just as the LORD had commanded Moses.</VERS>\n\t\t\t<VERS vnumber=\"27\"> They made tunics of fine linen, the work of a weaver, for Aaron and for his sons,</VERS>\n\t\t\t<VERS vnumber=\"28\"> and the turban of fine linen, the headbands of fine linen, and the undergarments of fine twisted linen.</VERS>\n\t\t\t<VERS vnumber=\"29\"> The sash was of fine twisted linen and blue, purple, and scarlet yarn, the work of an embroiderer, just as the LORD had commanded Moses.</VERS>\n\t\t\t<VERS vnumber=\"30\"> They made a plate, the holy diadem, of pure gold and wrote on it an inscription, as on the engravings of a seal, \"Holiness to the LORD.\"</VERS>\n\t\t\t<VERS vnumber=\"31\"> They attached to it a blue cord, to attach it to the turban above, just as the LORD had commanded Moses.</VERS>\n\t\t\t<VERS vnumber=\"32\">  So all the work of the tabernacle, the tent of meeting, was completed, and the Israelites did according to all that the LORD had commanded Moses, they did it exactly so.</VERS>\n\t\t\t<VERS vnumber=\"33\"> They brought the tabernacle to Moses, the tent and all its furnishings, clasps, frames, bars, posts, and bases;</VERS>\n\t\t\t<VERS vnumber=\"34\"> and the coverings of ram skins dyed red, the covering of fine leather, and the protecting curtain; </VERS>\n\t\t\t<VERS vnumber=\"35\"> the ark of the testimony and its poles, and the atonement lid;</VERS>\n\t\t\t<VERS vnumber=\"36\"> the table, all its utensils, and the Bread of the Presence;</VERS>\n\t\t\t<VERS vnumber=\"37\"> the pure lampstand, its lamps, with the lamps set in order, and all its accessories, and oil for the light; </VERS>\n\t\t\t<VERS vnumber=\"38\"> and the gold altar, and the anointing oil, and the fragrant incense; and the curtain for the entrance to the tent;</VERS>\n\t\t\t<VERS vnumber=\"39\"> the bronze altar and its bronze grating, its poles, and all its utensils; the large basin with its pedestal;</VERS>\n\t\t\t<VERS vnumber=\"40\"> the hangings of the courtyard, its posts and its bases, and the curtain for the gateway of the courtyard, its ropes and its tent pegs, and all the furnishings for the service of the tabernacle, for the tent of meeting; </VERS>\n\t\t\t<VERS vnumber=\"41\"> the woven garments for serving in the sanctuary, the holy garments for Aaron the priest, and the garments for his sons to minister as priests.</VERS>\n\t\t\t<VERS vnumber=\"42\"> The Israelites did all the work according to all that the LORD had commanded Moses.</VERS>\n\t\t\t<VERS vnumber=\"43\"> Moses inspected all the work, and they had done it just as the LORD had commanded, they had done it exactly, and Moses blessed them.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"40\">\n\t\t\t<VERS vnumber=\"1\">  Then the LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"On the first day of the first month you are to set up the tabernacle, the tent of meeting. </VERS>\n\t\t\t<VERS vnumber=\"3\"> You are to place the ark of the testimony in it and shield the ark with the special curtain.</VERS>\n\t\t\t<VERS vnumber=\"4\"> You are to bring in the table and set out the things that belong on it; then you are to bring in the lampstand and set up its lamps.</VERS>\n\t\t\t<VERS vnumber=\"5\"> You are to put the gold altar for incense in front of the ark of the testimony and put the curtain at the entrance to the tabernacle.</VERS>\n\t\t\t<VERS vnumber=\"6\"> You are to put the altar for the burnt offering in front of the entrance to the tabernacle, the tent of meeting.</VERS>\n\t\t\t<VERS vnumber=\"7\"> You are to put the large basin between the tent of meeting and the altar and put water in it.</VERS>\n\t\t\t<VERS vnumber=\"8\"> You are to set up the courtyard around it and put the curtain at the gate of the courtyard.</VERS>\n\t\t\t<VERS vnumber=\"9\"> And take the anointing oil, and anoint the tabernacle and all that is in it, and sanctify it and all its furnishings, and it will be holy. </VERS>\n\t\t\t<VERS vnumber=\"10\"> Then you are to anoint the altar for the burnt offering with all its utensils; you are to sanctify the altar, and it will be the most holy altar. </VERS>\n\t\t\t<VERS vnumber=\"11\"> You must also anoint the large basin and its pedestal, and you are to sanctify it.</VERS>\n\t\t\t<VERS vnumber=\"12\"> \"You are to bring Aaron and his sons to the entrance of the tent of meeting and wash them with water. </VERS>\n\t\t\t<VERS vnumber=\"13\"> Then you are to clothe Aaron with the holy garments and anoint him and sanctify him so that he may minister as my priest.</VERS>\n\t\t\t<VERS vnumber=\"14\"> You are to bring his sons and clothe them with tunics </VERS>\n\t\t\t<VERS vnumber=\"15\"> and anoint them just as you anointed their father, so that they may minister as my priests; their anointing will make them a priesthood that will continue throughout their generations.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> This is what Moses did, according to all the LORD had commanded him, so he did.</VERS>\n\t\t\t<VERS vnumber=\"17\"> So the tabernacle was set up on the first day of the first month, in the second year.</VERS>\n\t\t\t<VERS vnumber=\"18\"> When Moses set up the tabernacle and put its bases in place, he set up its frames, attached its bars, and set up its posts.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Then he spread the tent over the tabernacle and put the covering of the tent over it, as the LORD had commanded Moses.</VERS>\n\t\t\t<VERS vnumber=\"20\"> He took the testimony and put it in the ark, attached the poles to the ark, and then put the atonement lid on the ark.</VERS>\n\t\t\t<VERS vnumber=\"21\"> And he brought the ark into the tabernacle, hung the protecting curtain, and shielded the ark of the testimony from view, just as the LORD had commanded Moses.</VERS>\n\t\t\t<VERS vnumber=\"22\"> And he put the table in the tent of meeting, on the north side of the tabernacle, outside the curtain.</VERS>\n\t\t\t<VERS vnumber=\"23\"> And he set the bread in order on it before the LORD, just as the LORD had commanded Moses.</VERS>\n\t\t\t<VERS vnumber=\"24\"> And he put the lampstand in the tent of meeting opposite the table, on the south side of the tabernacle.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Then he set up the lamps before the LORD, just as the LORD had commanded Moses.</VERS>\n\t\t\t<VERS vnumber=\"26\"> And he put the gold altar in the tent of meeting in front of the curtain,</VERS>\n\t\t\t<VERS vnumber=\"27\"> and he burned fragrant incense on it, just as the LORD had commanded Moses.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Then he put the curtain at the entrance to the tabernacle.</VERS>\n\t\t\t<VERS vnumber=\"29\"> He also put the altar for the burnt offering by the entrance to the tabernacle, the tent of meeting, and offered on it the burnt offering and the meal offering, just as the LORD had commanded Moses.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Then he put the large basin between the tent of meeting and the altar and put water in it for washing. </VERS>\n\t\t\t<VERS vnumber=\"31\"> Moses and Aaron and his sons would wash their hands and their feet from it.</VERS>\n\t\t\t<VERS vnumber=\"32\"> Whenever they entered the tent of meeting, and whenever they approached the altar, they would wash, just as the LORD had commanded Moses.</VERS>\n\t\t\t<VERS vnumber=\"33\"> And he set up the courtyard around the tabernacle and the altar, and put the curtain at the gate of the courtyard. So Moses finished the work.</VERS>\n\t\t\t<VERS vnumber=\"34\"> Then the cloud covered the tent of meeting, and the glory of the LORD filled the tabernacle.</VERS>\n\t\t\t<VERS vnumber=\"35\"> Moses was not able to enter the tent of meeting because the cloud settled on it and the glory of the LORD filled the tabernacle.</VERS>\n\t\t\t<VERS vnumber=\"36\"> But when the cloud was lifted up from the tabernacle, the Israelites would set out on all their journeys; </VERS>\n\t\t\t<VERS vnumber=\"37\"> but if the cloud was not lifted up, then they would not journey further until the day it was lifted up.</VERS>\n\t\t\t<VERS vnumber=\"38\"> For the cloud of the LORD was on the tabernacle by day, but fire would be on it at night, in plain view of all the house of Israel, throughout all their journeys. </VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"3\" bname=\"Leviticus\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> Then the LORD called to Moses and spoke to him from the Meeting Tent:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Speak to the Israelites and tell them, 'When someone among you presents an offering to the LORD, you must present your offering from the domesticated animals, either from the herd or from the flock.</VERS>\n\t\t\t<VERS vnumber=\"3\"> \"'If his offering is a burnt offering from the herd he must present it as a flawless male; he must present it at the entrance of the Meeting Tent for its acceptance before the LORD. </VERS>\n\t\t\t<VERS vnumber=\"4\"> He must lay his hand on the head of the burnt offering, and it will be accepted for him to make atonement on his behalf. </VERS>\n\t\t\t<VERS vnumber=\"5\"> Then the one presenting the offering must slaughter the bull before the LORD, and the sons of Aaron, the priests, must present the blood and splash the blood against the sides of the altar which is at the entrance of the Meeting Tent. </VERS>\n\t\t\t<VERS vnumber=\"6\"> Next, the one presenting the offering must skin the burnt offering and cut it into parts, </VERS>\n\t\t\t<VERS vnumber=\"7\"> and the sons of Aaron, the priest, must put fire on the altar and arrange wood on the fire. </VERS>\n\t\t\t<VERS vnumber=\"8\"> Then the sons of Aaron, the priests, must arrange the parts with the head and the suet on the wood that is in the fire on the altar.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Finally, the one presenting the offering must wash its entrails and its legs in water and the priest must offer all of it up in smoke on the altar, it is a burnt offering, a gift of a soothing aroma to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"'If his offering is from the flock for a burnt offering, from the sheep or the goats, he must present a flawless male,</VERS>\n\t\t\t<VERS vnumber=\"11\"> and must slaughter it on the north side of the altar before the LORD, and the sons of Aaron, the priests, will splash its blood against the altar's sides.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Next, the one presenting the offering must cut it into parts, with its head and its suet, and the priest must arrange them on the wood which is in the fire, on the altar. </VERS>\n\t\t\t<VERS vnumber=\"13\"> Then the one presenting the offering must wash the entrails and the legs in water, and the priest must present all of it and offer it up in smoke on the altar, it is a burnt offering, a gift of a soothing aroma to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"14\"> \"'If his offering to the LORD is a burnt offering from the birds, he must present his offering from the turtledoves or from the young pigeons.</VERS>\n\t\t\t<VERS vnumber=\"15\"> The priest must present it at the altar, pinch off its head and offer the head up in smoke on the altar, and its blood must be drained out against the side of the altar. </VERS>\n\t\t\t<VERS vnumber=\"16\"> Then the priest must remove its entrails by cutting off its tail feathers, and throw them to the east side of the altar into the place of fatty ashes, </VERS>\n\t\t\t<VERS vnumber=\"17\"> and tear it open by its wings without dividing it into two parts. Finally, the priest must offer it up in smoke on the altar on the wood which is in the fire, it is a burnt offering, a gift of a soothing aroma to the LORD.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> \"'When a person presents a grain offering to the LORD, his offering must consist of choice wheat flour, and he must pour olive oil on it and put frankincense on it. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Then he must bring it to the sons of Aaron, the priests, and the priest must scoop out from there a handful of its choice wheat flour and some of its olive oil in addition to all of its frankincense, and the priest must offer its memorial portion up in smoke on the altar, it is a gift of a soothing aroma to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The remainder of the grain offering belongs to Aaron and to his sons, it is most holy from the gifts of the LORD.</VERS>\n\t\t\t<VERS vnumber=\"4\"> \"'When you present an offering of grain baked in an oven, it must be made of choice wheat flour baked into unleavened loaves mixed with olive oil or unleavened wafers smeared with olive oil. </VERS>\n\t\t\t<VERS vnumber=\"5\"> If your offering is a grain offering made on the griddle, it must be choice wheat flour mixed with olive oil, unleavened.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Crumble it in pieces and pour olive oil on it, it is a grain offering.</VERS>\n\t\t\t<VERS vnumber=\"7\"> If your offering is a grain offering made in a pan, it must be made of choice wheat flour deep fried in olive oil.</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"'You must bring the grain offering that must be made from these to the LORD. Present it to the priest, and he will bring it to the altar. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Then the priest must take up from the grain offering its memorial portion and offer it up in smoke on the altar, it is a gift of a soothing aroma to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The remainder of the grain offering belongs to Aaron and to his sons, it is most holy from the gifts of the LORD.</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"'No grain offering which you present to the LORD can be made with yeast, for you must not offer up in smoke any yeast or honey as a gift to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"12\"> You can present them to the LORD as an offering of first fruit, but they must not go up to the altar for a soothing aroma. </VERS>\n\t\t\t<VERS vnumber=\"13\"> Moreover, you must season every one of your grain offerings with salt; you must not allow the salt of the covenant of your God to be missing from your grain offering, on every one of your grain offerings you must present salt.</VERS>\n\t\t\t<VERS vnumber=\"14\"> \"'If you present a grain offering of first ripe grain to the LORD, you must present your grain offering of first ripe grain as soft kernels roasted in fire, crushed bits of fresh grain.</VERS>\n\t\t\t<VERS vnumber=\"15\"> And you must put olive oil on it and set frankincense on it, it is a grain offering.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Then the priest must offer its memorial portion up in smoke, some of its crushed bits, some of its olive oil, in addition to all of its frankincense, it is a gift to the LORD.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> \"'Now if his offering is a peace offering sacrifice, if he presents an offering from the herd, he must present before the LORD a flawless male or a female.</VERS>\n\t\t\t<VERS vnumber=\"2\"> He must lay his hand on the head of his offering and slaughter it at the entrance of the Meeting Tent, and the sons of Aaron, the priests, must splash the blood against the altar's sides.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Then the one presenting the offering must present a gift to the LORD from the peace offering sacrifice: He must remove the fat that covers the entrails and all the fat that surrounds the entrails,</VERS>\n\t\t\t<VERS vnumber=\"4\"> the two kidneys with the fat on their sinews, and the protruding lobe on the liver (which he is to remove along with the kidneys).</VERS>\n\t\t\t<VERS vnumber=\"5\"> Then the sons of Aaron must offer it up in smoke on the altar atop the burnt offering that is on the wood in the fire as a gift of a soothing aroma to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"'If his offering for a peace offering sacrifice to the LORD is from the flock, he must present a flawless male or female.</VERS>\n\t\t\t<VERS vnumber=\"7\"> If he presents a sheep as his offering, he must present it before the LORD.</VERS>\n\t\t\t<VERS vnumber=\"8\"> He must lay his hand on the head of his offering and slaughter it before the Meeting Tent, and the sons of Aaron must splash its blood against the altar's sides.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Then he must present a gift to the LORD from the peace offering sacrifice: He must remove all the fatty tail up to the end of the spine, the fat covering the entrails, and all the fat on the entrails,</VERS>\n\t\t\t<VERS vnumber=\"10\"> the two kidneys with the fat on their sinews, and the protruding lobe on the liver (which he is to remove along with the kidneys).</VERS>\n\t\t\t<VERS vnumber=\"11\"> Then the priest must offer it up in smoke on the altar as a food gift to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"12\"> \"'If his offering is a goat he must present it before the LORD,</VERS>\n\t\t\t<VERS vnumber=\"13\"> lay his hand on its head, and slaughter it before the Meeting Tent, and the sons of Aaron must splash its blood against the altar's sides.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Then he must present from it his offering as a gift to the LORD: the fat which covers the entrails and all the fat on the entrails,</VERS>\n\t\t\t<VERS vnumber=\"15\"> the two kidneys with the fat on their sinews, and the protruding lobe on the liver (which he is to remove along with the kidneys).</VERS>\n\t\t\t<VERS vnumber=\"16\"> Then the priest must offer them up in smoke on the altar as a food gift for a soothing aroma, all the fat belongs to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"17\"> This is a perpetual statute throughout your generations in all the places where you live: You must never eat any fat or any blood.'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\"> Then the LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Tell the Israelites, 'When a person sins by straying unintentionally from any of the Lord's commandments which must not be violated, and violates any one of them,</VERS>\n\t\t\t<VERS vnumber=\"3\"> \"'If the high priest sins so that the people are guilty, on account of the sin he has committed he must present a flawless young bull to the LORD for a sin offering.</VERS>\n\t\t\t<VERS vnumber=\"4\"> He must bring the bull to the entrance of the Meeting Tent before the LORD, lay his hand on the head of the bull, and slaughter the bull before the LORD.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Then that high priest must take some of the blood of the bull and bring it to the Meeting Tent. </VERS>\n\t\t\t<VERS vnumber=\"6\"> The priest must dip his finger in the blood and sprinkle some of it seven times before the LORD toward the front of the veil-canopy of the sanctuary. </VERS>\n\t\t\t<VERS vnumber=\"7\"> The priest must put some of the blood on the horns of the altar of fragrant incense that is before the LORD in the Meeting Tent, and all the rest of the bull's blood he must pour out at the base of the altar of burnt offering that is at the entrance of the Meeting Tent.</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"'Then he must take up all the fat from the sin offering bull: the fat covering the entrails and all the fat surrounding the entrails,</VERS>\n\t\t\t<VERS vnumber=\"9\"> the two kidneys with the fat on their sinews, and the protruding lobe on the liver (which he is to remove along with the kidneys)</VERS>\n\t\t\t<VERS vnumber=\"10\"> , just as it is taken from the ox of the peace offering sacrifice, and the priest must offer them up in smoke on the altar of burnt offering.</VERS>\n\t\t\t<VERS vnumber=\"11\"> But the hide of the bull, all its flesh along with its head and its legs, its entrails, and its dung,</VERS>\n\t\t\t<VERS vnumber=\"12\"> all the rest of the bull, he must bring outside the camp to a ceremonially clean place, to the fatty ash pile, and he must burn it on a wood fire; it must be burned on the fatty ash pile.</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"'If the whole congregation of Israel strays unintentionally and the matter is not noticed by the assembly, and they violate one of the Lord's commandments, which must not be violated, so they become guilty, </VERS>\n\t\t\t<VERS vnumber=\"14\"> the assembly must present a young bull for a sin offering when the sin they have committed becomes known. They must bring it before the Meeting Tent, </VERS>\n\t\t\t<VERS vnumber=\"15\"> the elders of the congregation must lay their hands on the head of the bull before the LORD, and someone must slaughter the bull before the LORD. </VERS>\n\t\t\t<VERS vnumber=\"16\"> Then the high priest must bring some of the blood of the bull to the Meeting Tent, </VERS>\n\t\t\t<VERS vnumber=\"17\"> and that priest must dip his finger in the blood and sprinkle some of the blood seven times before the LORD toward the front of the veil-canopy.</VERS>\n\t\t\t<VERS vnumber=\"18\"> He must put some of the blood on the horns of the altar which is before the LORD in the Meeting Tent, and all the rest of the blood he must pour out at the base of the altar of burnt offering that is at the entrance of the Meeting Tent.</VERS>\n\t\t\t<VERS vnumber=\"19\"> \"'Then the priest must take all its fat and offer the fat up in smoke on the altar. </VERS>\n\t\t\t<VERS vnumber=\"20\"> He must do with the rest of the bull just as he did with the bull of the sin offering; this is what he must do with it. So the priest will make atonement on their behalf and they will be forgiven.</VERS>\n\t\t\t<VERS vnumber=\"21\"> He must bring the rest of the bull outside the camp and burn it just as he burned the first bull, it is the sin offering of the assembly.</VERS>\n\t\t\t<VERS vnumber=\"22\"> \"'Whenever a leader, by straying unintentionally, sins and violates one of the commandments of the LORD his God which must not be violated, and he pleads guilty, </VERS>\n\t\t\t<VERS vnumber=\"23\"> or his sin that he committed is made known to him, he must bring a flawless male goat as his offering.</VERS>\n\t\t\t<VERS vnumber=\"24\"> He must lay his hand on the head of the male goat and slaughter it in the place where the burnt offering is slaughtered before the LORD, it is a sin offering.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Then the priest must take some of the blood of the sin offering with his finger and put it on the horns of the altar of burnt offering, and he must pour out the rest of its blood at the base of the altar of burnt offering.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Then the priest must offer all of its fat up in smoke on the altar like the fat of the peace offering sacrifice. So the priest will make atonement on his behalf for his sin and he will be forgiven.</VERS>\n\t\t\t<VERS vnumber=\"27\"> \"'If an ordinary individual sins by straying unintentionally when he violates one of the Lord's commandments which must not be violated, and he pleads guilty </VERS>\n\t\t\t<VERS vnumber=\"28\"> or his sin that he committed is made known to him, he must bring a flawless female goat as his offering for the sin that he committed. </VERS>\n\t\t\t<VERS vnumber=\"29\"> He must lay his hand on the head of the sin offering and slaughter the sin offering in the place where the burnt offering is slaughtered. </VERS>\n\t\t\t<VERS vnumber=\"30\"> Then the priest must take some of its blood with his finger and put it on the horns of the altar of burnt offering, and he must pour out all the rest of its blood at the base of the altar.</VERS>\n\t\t\t<VERS vnumber=\"31\"> Then he must remove all of its fat (just as fat was removed from the peace offering sacrifice) and the priest must offer it up in smoke on the altar for a soothing aroma to the LORD. So the priest will make atonement on his behalf and he will be forgiven.</VERS>\n\t\t\t<VERS vnumber=\"32\"> \"'But if he brings a sheep as his offering, for a sin offering, he must bring a flawless female.</VERS>\n\t\t\t<VERS vnumber=\"33\"> He must lay his hand on the head of the sin offering and slaughter it for a sin offering in the place where the burnt offering is slaughtered.</VERS>\n\t\t\t<VERS vnumber=\"34\"> Then the priest must take some of the blood of the sin offering with his finger and put it on the horns of the altar of burnt offering, and he must pour out all the rest of its blood at the base of the altar.</VERS>\n\t\t\t<VERS vnumber=\"35\"> Then the one who brought the offering must remove all its fat (just as the fat of the sheep is removed from the peace offering sacrifice) and the priest must offer them up in smoke on the altar on top of the other gifts of the LORD. So the priest will make atonement on his behalf for his sin which he has committed and he will be forgiven.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"5\">\n\t\t\t<VERS vnumber=\"1\"> \"'When a person sins in that he hears a public curse against one who fails to testify and he is a witness (he either saw or knew what had happened) and he does not make it known, then he will bear his punishment for iniquity.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Or when there is a person who touches anything ceremonially unclean, whether the carcass of an unclean wild animal, or the carcass of an unclean domesticated animal, or the carcass of an unclean creeping thing, even if he did not realize it, but he himself has become unclean and is guilty;</VERS>\n\t\t\t<VERS vnumber=\"3\"> or when he touches human uncleanness with regard to anything by which he can become unclean, even if he did not realize it, but he himself has later come to know it and is guilty; </VERS>\n\t\t\t<VERS vnumber=\"4\"> or when a person swears an oath, speaking thoughtlessly with his lips, whether to do evil or to do good, with regard to anything which the individual might speak thoughtlessly in an oath, even if he did not realize it, but he himself has later come to know it and is guilty with regard to one of these oaths,</VERS>\n\t\t\t<VERS vnumber=\"5\"> when an individual becomes guilty with regard to one of these things he must confess how he has sinned,</VERS>\n\t\t\t<VERS vnumber=\"6\"> and he must bring his penalty for guilt to the LORD for his sin that he has committed, a female from the flock, whether a female sheep or a female goat, for a sin offering. So the priest will make atonement on his behalf for his sin.</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"'If he cannot afford an animal from the flock, he must bring his penalty for guilt for his sin that he has committed, two turtledoves or two young pigeons, to the LORD, one for a sin offering and one for a burnt offering. </VERS>\n\t\t\t<VERS vnumber=\"8\"> He must bring them to the priest and present first the one that is for a sin offering. The priest must pinch its head at the nape of its neck, but must not sever the head from the body.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Then he must sprinkle some of the blood of the sin offering on the wall of the altar, and the remainder of the blood must be squeezed out at the base of the altar, it is a sin offering.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The second bird he must make a burnt offering according to the standard regulation. So the priest will make atonement on behalf of this person for his sin which he has committed, and he will be forgiven.</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"'If he cannot afford two turtledoves or two young pigeons, he must bring as his offering for his sin which he has committed a tenth of an ephah of choice wheat flour for a sin offering. He must not place olive oil on it and he must not put frankincense on it, because it is a sin offering. </VERS>\n\t\t\t<VERS vnumber=\"12\"> He must bring it to the priest and the priest must scoop out from it a handful as its memorial portion and offer it up in smoke on the altar on top of the other gifts of the LORD, it is a sin offering.</VERS>\n\t\t\t<VERS vnumber=\"13\"> So the priest will make atonement on his behalf for his sin which he has committed by doing one of these things, and he will be forgiven. The remainder of the offering will belong to the priest like the grain offering.'\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> Then the LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"15\"> \"When a person commits a trespass and sins by straying unintentionally from the regulations about the Lord's holy things, then he must bring his penalty for guilt to the LORD, a flawless ram from the flock, convertible into silver shekels according to the standard of the sanctuary shekel, for a guilt offering.</VERS>\n\t\t\t<VERS vnumber=\"16\"> And whatever holy thing he violated he must restore and must add one fifth to it and give it to the priest. So the priest will make atonement on his behalf with the guilt offering ram and he will be forgiven.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> \"If a person sins and violates any of the Lord's commandments which must not be violated (although he did not know it at the time, but later realizes he is guilty), then he will bear his punishment for iniquity</VERS>\n\t\t\t<VERS vnumber=\"18\"> and must bring a flawless ram from the flock, convertible into silver shekels, for a guilt offering to the priest. So the priest will make atonement on his behalf for his error which he committed (although he himself had not known it) and he will be forgiven.</VERS>\n\t\t\t<VERS vnumber=\"19\"> It is a guilt offering; he was surely guilty before the LORD.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"6\">\n\t\t\t<VERS vnumber=\"1\">  Then the LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"When a person sins and commits a trespass against the LORD by deceiving his fellow citizen in regard to something held in trust, or a pledge, or something stolen, or by extorting something from his fellow citizen,</VERS>\n\t\t\t<VERS vnumber=\"3\"> or has found something lost and denies it and swears falsely concerning any one of the things that someone might do to sin,</VERS>\n\t\t\t<VERS vnumber=\"4\"> when it happens that he sins and he is found guilty, then he must return whatever he had stolen, or whatever he had extorted, or the thing that he had held in trust, or the lost thing that he had found, </VERS>\n\t\t\t<VERS vnumber=\"5\"> or anything about which he swears falsely. He must restore it in full and add one fifth to it; he must give it to its owner when he is found guilty.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Then he must bring his guilt offering to the LORD, a flawless ram from the flock, convertible into silver shekels, for a guilt offering to the priest. </VERS>\n\t\t\t<VERS vnumber=\"7\"> So the priest will make atonement on his behalf before the LORD and he will be forgiven for whatever he has done to become guilty.\"</VERS>\n\t\t\t<VERS vnumber=\"8\">  Then the LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"Command Aaron and his sons, 'This is the law of the burnt offering. The burnt offering is to remain on the hearth on the altar all night until morning, and the fire of the altar must be kept burning on it.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Then the priest must put on his linen robe and must put linen leggings over his bare flesh, and he must take up the fatty ashes of the burnt offering that the fire consumed on the altar, and he must place them beside the altar. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Then he must take off his clothes and put on other clothes, and he must bring the fatty ashes outside the camp to a ceremonially clean place, </VERS>\n\t\t\t<VERS vnumber=\"12\"> but the fire which is on the altar must be kept burning on it. It must not be extinguished. So the priest must kindle wood on it morning by morning, and he must arrange the burnt offering on it and offer the fat of the peace offering up in smoke on it. </VERS>\n\t\t\t<VERS vnumber=\"13\"> A continual fire must be kept burning on the altar. It must not be extinguished.</VERS>\n\t\t\t<VERS vnumber=\"14\"> \"'This is the law of the grain offering. The sons of Aaron are to present it before the LORD in front of the altar, </VERS>\n\t\t\t<VERS vnumber=\"15\"> and the priest must take up with his hand some of the choice wheat flour of the grain offering and some of its olive oil, and all of the frankincense that is on the grain offering, and he must offer its memorial portion up in smoke on the altar as a soothing aroma to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Aaron and his sons are to eat what is left over from it. It must be eaten unleavened in a holy place; they are to eat it in the courtyard of the Meeting Tent.</VERS>\n\t\t\t<VERS vnumber=\"17\"> It must not be baked with yeast. I have given it as their portion from my gifts. It is most holy, like the sin offering and the guilt offering. </VERS>\n\t\t\t<VERS vnumber=\"18\"> Every male among the sons of Aaron may eat it. It is a perpetual allotted portion throughout your generations from the gifts of the LORD. Anyone who touches these gifts must be holy.'\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> Then the LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"20\"> \"This is the offering of Aaron and his sons which they must present to the LORD on the day when he is anointed: a tenth of an ephah of choice wheat flour as a continual grain offering, half of it in the morning and half of it in the evening. </VERS>\n\t\t\t<VERS vnumber=\"21\"> It must be made with olive oil on a griddle and you must bring it well soaked, so you must present a grain offering of broken pieces as a soothing aroma to the LORD. </VERS>\n\t\t\t<VERS vnumber=\"22\"> The high priest who succeeds him from among his sons must do it. It is a perpetual statute; it must be offered up in smoke as a whole offering to the LORD. </VERS>\n\t\t\t<VERS vnumber=\"23\"> Every grain offering of a priest must be a whole offering; it must not be eaten.\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> Then the LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"25\"> \"Tell Aaron and his sons, 'This is the law of the sin offering. In the place where the burnt offering is slaughtered the sin offering must be slaughtered before the LORD. It is most holy.</VERS>\n\t\t\t<VERS vnumber=\"26\"> The priest who offers it for sin is to eat it. It must be eaten in a holy place, in the court of the Meeting Tent.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Anyone who touches its meat must be holy, and whoever spatters some of its blood on a garment, you must wash whatever he spatters it on in a holy place. </VERS>\n\t\t\t<VERS vnumber=\"28\"> Any clay vessel it is boiled in must be broken, and if it was boiled in a bronze vessel, then that vessel must be rubbed out and rinsed in water. </VERS>\n\t\t\t<VERS vnumber=\"29\"> Any male among the priests may eat it. It is most holy.</VERS>\n\t\t\t<VERS vnumber=\"30\"> But any sin offering from which some of its blood is brought into the Meeting Tent to make atonement in the sanctuary must not be eaten. It must be burned up in the fire.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"7\">\n\t\t\t<VERS vnumber=\"1\"> \"'This is the law of the guilt offering. It is most holy.</VERS>\n\t\t\t<VERS vnumber=\"2\"> In the place where they slaughter the burnt offering they must slaughter the guilt offering, and the officiating priest must splash the blood against the altar's sides.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Then the one making the offering must present all its fat: the fatty tail, the fat covering the entrails, </VERS>\n\t\t\t<VERS vnumber=\"4\"> the two kidneys and the fat on their sinews, and the protruding lobe on the liver (which he must remove along with the kidneys).</VERS>\n\t\t\t<VERS vnumber=\"5\"> Then the priest must offer them up in smoke on the altar as a gift to the LORD. It is a guilt offering. </VERS>\n\t\t\t<VERS vnumber=\"6\"> Any male among the priests may eat it. It must be eaten in a holy place. It is most holy.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The law is the same for the sin offering and the guilt offering; it belongs to the priest who makes atonement with it.</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"'As for the priest who presents someone's burnt offering, the hide of that burnt offering which he presented belongs to him.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Every grain offering which is baked in the oven or made in the pan or on the griddle belongs to the priest who presented it. </VERS>\n\t\t\t<VERS vnumber=\"10\"> Every grain offering, whether mixed with olive oil or dry, belongs to all the sons of Aaron, each one alike.</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"'This is the law of the peace offering sacrifice which he is to present to the LORD. </VERS>\n\t\t\t<VERS vnumber=\"12\"> If he presents it on account of thanksgiving, along with the thank offering sacrifice he must present unleavened loaves mixed with olive oil, unleavened wafers smeared with olive oil, and well soaked ring-shaped loaves made of choice wheat flour mixed with olive oil. </VERS>\n\t\t\t<VERS vnumber=\"13\"> He must present this grain offering in addition to ring-shaped loaves of leavened bread which regularly accompany the sacrifice of his thanksgiving peace offering. </VERS>\n\t\t\t<VERS vnumber=\"14\"> He must present one of each kind of grain offering as a contribution offering to the LORD; it belongs to the priest who splashes the blood of the peace offering. </VERS>\n\t\t\t<VERS vnumber=\"15\"> The meat of his thanksgiving peace offering must be eaten on the day of his offering; he must not set any of it aside until morning.</VERS>\n\t\t\t<VERS vnumber=\"16\"> \"'If his offering is a votive or freewill sacrifice, it may be eaten on the day he presents his sacrifice, and also the leftovers from it may be eaten on the next day,</VERS>\n\t\t\t<VERS vnumber=\"17\"> but the leftovers from the meat of the sacrifice must be burned up in the fire on the third day. </VERS>\n\t\t\t<VERS vnumber=\"18\"> If some of the meat of his peace offering sacrifice is ever eaten on the third day it will not be accepted; it will not be accounted to the one who presented it, since it is spoiled, and the person who eats from it will bear his punishment for iniquity.</VERS>\n\t\t\t<VERS vnumber=\"19\"> The meat which touches anything ceremonially unclean must not be eaten; it must be burned up in the fire. As for ceremonially clean meat, everyone who is ceremonially clean may eat the meat. </VERS>\n\t\t\t<VERS vnumber=\"20\"> The person who eats meat from the peace offering sacrifice which belongs to the LORD while his uncleanness persists will be cut off from his people.</VERS>\n\t\t\t<VERS vnumber=\"21\"> When a person touches anything unclean (whether human uncleanness, or an unclean animal, or an unclean detestable creature) and eats some of the meat of the peace offering sacrifice which belongs to the LORD, that person will be cut off from his people.'\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> Then the LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"23\"> \"Tell the Israelites, 'You must not eat any fat of an ox, sheep, or goat.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Moreover, the fat of an animal that has died of natural causes and the fat of an animal torn by beasts may be used for any other purpose, but you must certainly never eat it. </VERS>\n\t\t\t<VERS vnumber=\"25\"> If anyone eats fat from the animal from which he presents a gift to the LORD, that person will be cut off from his people.</VERS>\n\t\t\t<VERS vnumber=\"26\"> And you must not eat any blood of the birds or the domesticated land animals in any of the places where you live.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Any person who eats any blood, that person will be cut off from his people.'\"</VERS>\n\t\t\t<VERS vnumber=\"28\"> Then the LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"29\"> \"Tell the Israelites, 'The one who presents his peace offering sacrifice to the LORD must bring his offering to the LORD from his peace offering sacrifice.</VERS>\n\t\t\t<VERS vnumber=\"30\"> With his own hands he must bring the LORD's gifts. He must bring the fat with the breast to wave the breast as a wave offering before the LORD,</VERS>\n\t\t\t<VERS vnumber=\"31\"> and the priest must offer the fat up in smoke on the altar, but the breast will belong to Aaron and his sons.</VERS>\n\t\t\t<VERS vnumber=\"32\"> The right thigh you must give as a contribution offering to the priest from your peace offering sacrifices.</VERS>\n\t\t\t<VERS vnumber=\"33\"> The one from Aaron's sons who presents the blood of the peace offering and fat will have the right thigh as his share,</VERS>\n\t\t\t<VERS vnumber=\"34\"> for the breast of the wave offering and the thigh of the contribution offering I have taken from the Israelites out of their peace offering sacrifices and have given them to Aaron the priest and to his sons from the people of Israel as a perpetual allotted portion.'\"</VERS>\n\t\t\t<VERS vnumber=\"35\"> This is the allotment of Aaron and the allotment of his sons from the LORD's gifts on the day Moses presented them to serve as priests to the LORD. </VERS>\n\t\t\t<VERS vnumber=\"36\"> This is what the LORD commanded to give to them from the Israelites on the day Moses anointed them, a perpetual allotted portion throughout their generations.</VERS>\n\t\t\t<VERS vnumber=\"37\"> This is the law for the burnt offering, the grain offering, the sin offering, the guilt offering, the ordination offering, and the peace offering sacrifice,</VERS>\n\t\t\t<VERS vnumber=\"38\"> which the LORD commanded Moses on Mount Sinai on the day he commanded the Israelites to present their offerings to the LORD in the wilderness of Sinai.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"8\">\n\t\t\t<VERS vnumber=\"1\"> Then the LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Take Aaron and his sons with him, and the garments, the anointing oil, the sin offering bull, the two rams, and the basket of unleavened bread,</VERS>\n\t\t\t<VERS vnumber=\"3\"> and assemble the whole congregation at the entrance of the Meeting Tent.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> So Moses did just as the LORD commanded him, and the congregation assembled at the entrance of the Meeting Tent.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Then Moses said to the congregation: \"This is what the LORD has commanded to be done.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> So Moses brought Aaron and his sons forward and washed them with water.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Then he put the tunic on Aaron, wrapped the sash around him, and clothed him with the robe. Next he put the ephod on him and placed on him the decorated band of the ephod, and fastened the ephod closely to him with the band.</VERS>\n\t\t\t<VERS vnumber=\"8\"> He then set the breastpiece on him and put the Urim and Thummim into the breastpiece. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Finally, he set the turban on his head and attached the gold plate, the holy diadem, to the front of the turban just as the LORD had commanded Moses.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Then Moses took the anointing oil and anointed the tabernacle and everything in it, and so consecrated them.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Next he sprinkled some of it on the altar seven times and so anointed the altar, all its vessels, and the wash basin and its stand to consecrate them.</VERS>\n\t\t\t<VERS vnumber=\"12\"> He then poured some of the anointing oil on the head of Aaron and anointed him to consecrate him.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Moses also brought forward Aaron's sons, clothed them with tunics, wrapped sashes around them, and wrapped headbands on them just as the LORD had commanded Moses.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Then he brought near the sin offering bull and Aaron and his sons laid their hands on the head of the sin offering bull, </VERS>\n\t\t\t<VERS vnumber=\"15\"> and he slaughtered it. Moses then took the blood and put it all around on the horns of the altar with his finger and decontaminated the altar, and he poured out the rest of the blood at the base of the altar and so consecrated it to make atonement on it.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Then he took all the fat on the entrails, the protruding lobe of the liver, and the two kidneys and their fat, and Moses offered it all up in smoke on the altar,</VERS>\n\t\t\t<VERS vnumber=\"17\"> but the rest of the bull, its hide, its flesh, and its dung, he completely burned up outside the camp just as the LORD had commanded Moses.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Then he presented the burnt offering ram and Aaron and his sons laid their hands on the head of the ram,</VERS>\n\t\t\t<VERS vnumber=\"19\"> and he slaughtered it. Moses then splashed the blood against the altar's sides. </VERS>\n\t\t\t<VERS vnumber=\"20\"> Then he cut the ram into parts, and Moses offered the head, the parts, and the suet up in smoke, </VERS>\n\t\t\t<VERS vnumber=\"21\"> but the entrails and the legs he washed with water, and Moses offered the whole ram up in smoke on the altar, it was a burnt offering for a soothing aroma, a gift to the LORD, just as the LORD had commanded Moses.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Then he presented the second ram, the ram of ordination, and Aaron and his sons laid their hands on the head of the ram </VERS>\n\t\t\t<VERS vnumber=\"23\"> and he slaughtered it. Moses then took some of its blood and put it on Aaron's right earlobe, on the thumb of his right hand, and on the big toe of his right foot. </VERS>\n\t\t\t<VERS vnumber=\"24\"> Next he brought Aaron's sons forward, and Moses put some of the blood on their right earlobes, on their right thumbs, and on the big toes of their right feet, and Moses splashed the rest of the blood against the altar's sides.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Then he took the fat (the fatty tail, all the fat on the entrails, the protruding lobe of the liver, and the two kidneys and their fat) and the right thigh,</VERS>\n\t\t\t<VERS vnumber=\"26\"> and from the basket of unleavened bread that was before the LORD he took one unleavened loaf, one loaf of bread mixed with olive oil, and one wafer, and placed them on the fat parts and on the right thigh. </VERS>\n\t\t\t<VERS vnumber=\"27\"> He then put all of them on the palms of Aaron and his sons, who waved them as a wave offering before the LORD.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Moses then took them from their palms and offered them up in smoke on the altar on top of the burnt offering, they were an ordination offering for a soothing aroma; it was a gift to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Finally, Moses took the breast and waved it as a wave offering before the LORD from the ram of ordination. It was Moses' share just as the LORD had commanded Moses.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Then Moses took some of the anointing oil and some of the blood which was on the altar and sprinkled it on Aaron and his garments, and on his sons and his sons' garments with him. So he consecrated Aaron, his garments, and his sons and his sons' garments with him.</VERS>\n\t\t\t<VERS vnumber=\"31\"> Then Moses said to Aaron and his sons, \"Boil the meat at the entrance of the Meeting Tent, and there you are to eat it and the bread which is in the ordination offering basket, just as I have commanded, saying, 'Aaron and his sons are to eat it,' </VERS>\n\t\t\t<VERS vnumber=\"32\"> but the remainder of the meat and the bread you must burn with fire. </VERS>\n\t\t\t<VERS vnumber=\"33\"> And you must not go out from the entrance of the Meeting Tent for seven days, until the day when your days of ordination are completed, because you must be ordained over a seven-day period.</VERS>\n\t\t\t<VERS vnumber=\"34\"> What has been done on this day the LORD has commanded to be done to make atonement for you. </VERS>\n\t\t\t<VERS vnumber=\"35\"> You must reside at the entrance of the Meeting Tent day and night for seven days and keep the charge of the LORD so that you will not die, for this is what I have been commanded.\"</VERS>\n\t\t\t<VERS vnumber=\"36\"> So Aaron and his sons did all the things the LORD had commanded through Moses.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"9\">\n\t\t\t<VERS vnumber=\"1\"> On the eighth day Moses summoned Aaron and his sons and the elders of Israel,</VERS>\n\t\t\t<VERS vnumber=\"2\"> and said to Aaron, \"Take for yourself a bull calf for a sin offering and a ram for a burnt offering, both flawless, and present them before the LORD.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Then tell the Israelites: 'Take a male goat for a sin offering and a calf and lamb, both a year old and flawless, for a burnt offering, </VERS>\n\t\t\t<VERS vnumber=\"4\"> and an ox and a ram for peace offerings to sacrifice before the LORD, and a grain offering mixed with olive oil, for today the LORD is going to appear to you.'\" </VERS>\n\t\t\t<VERS vnumber=\"5\"> So they took what Moses had commanded to the front of the Meeting Tent and the whole congregation presented them and stood before the LORD. </VERS>\n\t\t\t<VERS vnumber=\"6\"> Then Moses said, \"This is what the LORD has commanded you to do so that the glory of the LORD may appear to you.\" </VERS>\n\t\t\t<VERS vnumber=\"7\"> Moses then said to Aaron, \"Approach the altar and make your sin offering and your burnt offering, and make atonement on behalf of yourself and on behalf of the people; and also make the people's offering and make atonement on behalf of them just as the LORD has commanded.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> So Aaron approached the altar and slaughtered the sin offering calf which was for himself.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Then Aaron's sons presented the blood to him and he dipped his finger in the blood and put it on the horns of the altar, and the rest of the blood he poured out at the base of the altar.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The fat and the kidneys and the protruding lobe of the liver from the sin offering he offered up in smoke on the altar just as the LORD had commanded Moses, </VERS>\n\t\t\t<VERS vnumber=\"11\"> but the flesh and the hide he completely burned up outside the camp.</VERS>\n\t\t\t<VERS vnumber=\"12\"> He then slaughtered the burnt offering, and his sons handed the blood to him and he splashed it against the altar's sides. </VERS>\n\t\t\t<VERS vnumber=\"13\"> The burnt offering itself they handed to him by its parts, including the head, and he offered them up in smoke on the altar, </VERS>\n\t\t\t<VERS vnumber=\"14\"> and he washed the entrails and the legs and offered them up in smoke on top of the burnt offering on the altar.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Then he presented the people's offering. He took the sin offering male goat which was for the people, slaughtered it, and performed a decontamination rite with it like the first one.</VERS>\n\t\t\t<VERS vnumber=\"16\"> He then presented the burnt offering, and did it according to the standard regulation.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Next he presented the grain offering, filled his hand with some of it, and offered it up in smoke on the altar in addition to the morning burnt offering.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Then he slaughtered the ox and the ram, the peace offering sacrifices which were for the people, and Aaron's sons handed the blood to him and he splashed it against the altar's sides.</VERS>\n\t\t\t<VERS vnumber=\"19\"> As for the fat parts from the ox and from the ram (the fatty tail, the fat covering the entrails, the kidneys, and the protruding lobe of the liver), </VERS>\n\t\t\t<VERS vnumber=\"20\"> they set those on the breasts and he offered the fat parts up in smoke on the altar. </VERS>\n\t\t\t<VERS vnumber=\"21\"> Finally Aaron waved the breasts and the right thigh as a wave offering before the LORD just as Moses had commanded.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Then Aaron lifted up his hands toward the people and blessed them and descended from making the sin offering, the burnt offering, and the peace offering.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Moses and Aaron then entered into the Meeting Tent. When they came out, they blessed the people, and the glory of the LORD appeared to all the people.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Then fire went out from the presence of the LORD and consumed the burnt offering and the fat parts on the altar, and all the people saw it, so they shouted loudly and fell down with their faces to the ground.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"10\">\n\t\t\t<VERS vnumber=\"1\"> Then Aaron's sons, Nadab and Abihu, each took his fire pan and put fire in it, set incense on it, and presented strange fire before the LORD, which he had not commanded them to do. </VERS>\n\t\t\t<VERS vnumber=\"2\"> So fire went out from the presence of the LORD and consumed them so that they died before the LORD. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Moses then said to Aaron, \"This is what the LORD spoke: 'Among the ones close to me I will show myself holy, and in the presence of all the people I will be honored.'\" So Aaron kept silent. </VERS>\n\t\t\t<VERS vnumber=\"4\"> Moses then called to Mishael and Elzaphan, the sons of Uzziel, Aaron's uncle, and said to them, \"Come near, carry your brothers away from the front of the sanctuary to a place outside the camp.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> So they came near and carried them away in their tunics to a place outside the camp just as Moses had spoken.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Then Moses said to Aaron and to Eleazar and Ithamar his other two sons, \"Do not dishevel the hair of your heads and do not tear your garments, so that you do not die and so that wrath does not come on the whole congregation. Your brothers, all the house of Israel, are to mourn the burning which the LORD has caused,</VERS>\n\t\t\t<VERS vnumber=\"7\"> but you must not go out from the entrance of the Meeting Tent lest you die, for the Lord's anointing oil is on you.\" So they acted according to the word of Moses.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Then the LORD spoke to Aaron,</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"Do not drink wine or strong drink, you and your sons with you, when you enter into the Meeting Tent, so that you do not die, which is a perpetual statute throughout your generations,</VERS>\n\t\t\t<VERS vnumber=\"10\"> as well as to distinguish between the holy and the common, and between the unclean and the clean,</VERS>\n\t\t\t<VERS vnumber=\"11\"> and to teach the Israelites all the statutes that the LORD has spoken to them through Moses.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> Then Moses spoke to Aaron and to Eleazar and Ithamar, his remaining sons, \"Take the grain offering which remains from the gifts of the LORD and eat it unleavened beside the altar, for it is most holy.</VERS>\n\t\t\t<VERS vnumber=\"13\"> You must eat it in a holy place because it is your allotted portion and the allotted portion of your sons from the gifts of the LORD, for this is what I have been commanded.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Also, the breast of the wave offering and the thigh of the contribution offering you must eat in a ceremonially clean place, you and your sons and daughters with you, for they have been given as your allotted portion and the allotted portion of your sons from the peace offering sacrifices of the Israelites.</VERS>\n\t\t\t<VERS vnumber=\"15\"> The thigh of the contribution offering and the breast of the wave offering they must bring in addition to the gifts of the fat parts to wave them as a wave offering before the LORD, and it will belong to you and your sons with you for a perpetual statute just as the LORD has commanded.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> Later Moses sought diligently for the sin offering male goat, but it had actually been burnt. So he became angry at Eleazar and Ithamar, Aaron's remaining sons, saying, </VERS>\n\t\t\t<VERS vnumber=\"17\"> \"Why did you not eat the sin offering in the sanctuary? For it is most holy and he gave it to you to bear the iniquity of the congregation, to make atonement on their behalf before the LORD. </VERS>\n\t\t\t<VERS vnumber=\"18\"> See here! Its blood was not brought into the holy place within! You should certainly have eaten it in the sanctuary just as I commanded!\" </VERS>\n\t\t\t<VERS vnumber=\"19\"> But Aaron spoke to Moses, \"See here! Just today they presented their sin offering and their burnt offering before the LORD and such things as these have happened to me! If I had eaten a sin offering today would the LORD have been pleased?\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> When Moses heard this explanation, he was satisfied.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"11\">\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Moses and Aaron, saying to them,</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Tell the Israelites: 'This is the kind of creature you may eat from among all the animals that are on the land. </VERS>\n\t\t\t<VERS vnumber=\"3\"> You may eat any among the animals that has a divided hoof (the hooves are completely split in two) and that also chews the cud.</VERS>\n\t\t\t<VERS vnumber=\"4\"> However, you must not eat these from among those that chew the cud and have divided hooves: The camel is unclean to you because it chews the cud even though its hoof is not divided.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The rock badger is unclean to you because it chews the cud even though its hoof is not divided. </VERS>\n\t\t\t<VERS vnumber=\"6\"> The hare is unclean to you because it chews the cud even though its hoof is not divided.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The pig is unclean to you because its hoof is divided (the hoof is completely split in two), even though it does not chew the cud.</VERS>\n\t\t\t<VERS vnumber=\"8\"> You must not eat from their meat and you must not touch their carcasses; they are unclean to you.</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"'These you can eat from all creatures that are in the water: Any creatures in the water that have both fins and scales, whether in the seas or in the streams, you may eat. </VERS>\n\t\t\t<VERS vnumber=\"10\"> But any creatures that do not have both fins and scales, whether in the seas or in the streams, from all the swarming things of the water and from all the living creatures that are in the water, are detestable to you.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Since they are detestable to you, you must not eat their meat and their carcass you must detest.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Any creature in the water that does not have both fins and scales is detestable to you.</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"'These you are to detest from among the birds, they must not be eaten, because they are detestable: the griffon vulture, the bearded vulture, the black vulture,</VERS>\n\t\t\t<VERS vnumber=\"14\"> the kite, the buzzard of any kind,</VERS>\n\t\t\t<VERS vnumber=\"15\"> every kind of crow,</VERS>\n\t\t\t<VERS vnumber=\"16\"> the eagle owl, the short-eared owl, the long-eared owl, the hawk of any kind, </VERS>\n\t\t\t<VERS vnumber=\"17\"> the little owl, the cormorant, the screech owl,</VERS>\n\t\t\t<VERS vnumber=\"18\"> the white owl, the scops owl, the osprey,</VERS>\n\t\t\t<VERS vnumber=\"19\"> the stork, the heron of any kind, the hoopoe, and the bat.</VERS>\n\t\t\t<VERS vnumber=\"20\"> \"'Every winged swarming thing that walks on all fours is detestable to you. </VERS>\n\t\t\t<VERS vnumber=\"21\"> However, this you may eat from all the winged swarming things that walk on all fours, which have jointed legs to hop with on the land. </VERS>\n\t\t\t<VERS vnumber=\"22\"> These you may eat from them: the locust of any kind, the bald locust of any kind, the cricket of any kind, the grasshopper of any kind. </VERS>\n\t\t\t<VERS vnumber=\"23\"> But any other winged swarming thing that has four legs is detestable to you.</VERS>\n\t\t\t<VERS vnumber=\"24\"> \"'By these you defile yourselves; anyone who touches their carcass will be unclean until the evening, </VERS>\n\t\t\t<VERS vnumber=\"25\"> and anyone who carries their carcass must wash his clothes and will be unclean until the evening.</VERS>\n\t\t\t<VERS vnumber=\"26\"> \"'All animals that divide the hoof but it is not completely split in two and do not chew the cud are unclean to you; anyone who touches them becomes unclean.</VERS>\n\t\t\t<VERS vnumber=\"27\"> All that walk on their paws among all the creatures that walk on all fours are unclean to you. Anyone who touches their carcass will be unclean until the evening, </VERS>\n\t\t\t<VERS vnumber=\"28\"> and the one who carries their carcass must wash his clothes and be unclean until the evening; they are unclean to you.</VERS>\n\t\t\t<VERS vnumber=\"29\"> \"'Now this is what is unclean to you among the swarming things that swarm on the land: the rat, the mouse, the large lizard of any kind, </VERS>\n\t\t\t<VERS vnumber=\"30\"> the Mediterranean gecko, the spotted lizard, the wall gecko, the skink, and the chameleon.</VERS>\n\t\t\t<VERS vnumber=\"31\"> These are the ones that are unclean to you among all the swarming things. Anyone who touches them when they die will be unclean until evening.</VERS>\n\t\t\t<VERS vnumber=\"32\"> Also, anything they fall on when they die will become unclean, any wood vessel or garment or article of leather or sackcloth. Any such vessel with which work is done must be immersed in water and will be unclean until the evening. Then it will become clean.</VERS>\n\t\t\t<VERS vnumber=\"33\"> As for any clay vessel they fall into, everything in it will become unclean and you must break it. </VERS>\n\t\t\t<VERS vnumber=\"34\"> Any food that may be eaten which becomes soaked with water will become unclean. Anything drinkable in any such vessel will become unclean.</VERS>\n\t\t\t<VERS vnumber=\"35\"> Anything their carcass may fall on will become unclean. An oven or small stove must be smashed to pieces; they are unclean, and they will stay unclean to you. </VERS>\n\t\t\t<VERS vnumber=\"36\"> However, a spring or a cistern which collects water will be clean, but one who touches their carcass will be unclean. </VERS>\n\t\t\t<VERS vnumber=\"37\"> Now, if such a carcass falls on any sowing seed which is to be sown, it is clean, </VERS>\n\t\t\t<VERS vnumber=\"38\"> but if water is put on the seed and such a carcass falls on it, it is unclean to you.</VERS>\n\t\t\t<VERS vnumber=\"39\"> \"'Now if an animal that you may eat dies, whoever touches its carcass will be unclean until the evening. </VERS>\n\t\t\t<VERS vnumber=\"40\"> One who eats from its carcass must wash his clothes and be unclean until the evening, and whoever carries its carcass must wash his clothes and be unclean until the evening.</VERS>\n\t\t\t<VERS vnumber=\"41\"> Every swarming thing that swarms on the land is detestable; it must not be eaten.</VERS>\n\t\t\t<VERS vnumber=\"42\"> You must not eat anything that crawls on its belly or anything that walks on all fours or on any number of legs of all the swarming things that swarm on the land, because they are detestable. </VERS>\n\t\t\t<VERS vnumber=\"43\"> Do not make yourselves detestable by any of the swarming things. You must not defile yourselves by them and become unclean by them, </VERS>\n\t\t\t<VERS vnumber=\"44\"> for I am the LORD your God and you are to sanctify yourselves and be holy because I am holy. You must not defile yourselves by any of the swarming things that creep on the ground,</VERS>\n\t\t\t<VERS vnumber=\"45\"> for I am the LORD who brought you up from the land of Egypt to be your God, and you are to be holy because I am holy. </VERS>\n\t\t\t<VERS vnumber=\"46\"> This is the law of the land animals, the birds, all the living creatures that move in the water, and all the creatures that swarm on the land, </VERS>\n\t\t\t<VERS vnumber=\"47\"> to distinguish between the unclean and the clean, between the living creatures that may be eaten and the living creatures that must not be eaten.'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"12\">\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Tell the Israelites, 'When a woman produces offspring and bears a male child, she will be unclean seven days, as she is unclean during the days of her menstruation.</VERS>\n\t\t\t<VERS vnumber=\"3\"> On the eighth day the flesh of his foreskin must be circumcised. </VERS>\n\t\t\t<VERS vnumber=\"4\"> Then she will remain thirty-three days in blood purity. She must not touch anything holy and she must not enter the sanctuary until the days of her purification are fulfilled.</VERS>\n\t\t\t<VERS vnumber=\"5\"> If she bears a female child, she will be impure fourteen days as during her menstrual flow, and she will remain sixty-six days in blood purity.</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"'When the days of her purification are completed for a son or for a daughter, she must bring a one year old lamb for a burnt offering and a young pigeon or turtledove for a sin offering to the entrance of the Meeting Tent, to the priest. </VERS>\n\t\t\t<VERS vnumber=\"7\"> The priest is to present it before the LORD and make atonement on her behalf, and she will be clean from her flow of blood. This is the law of the one who bears a child, for the male or the female child. </VERS>\n\t\t\t<VERS vnumber=\"8\"> If she cannot afford a sheep, then she must take two turtledoves or two young pigeons, one for a burnt offering and one for a sin offering, and the priest is to make atonement on her behalf, and she will be clean.'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"13\">\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Moses and Aaron:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"When someone has a swelling or a scab or a bright spot on the skin of his body that may become a diseased infection, he must be brought to Aaron the priest or one of his sons, the priests.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The priest must then examine the infection on the skin of the body, and if the hair in the infection has turned white and the infection appears to be deeper than the skin of the body, then it is a diseased infection, so when the priest examines it he must pronounce the person unclean.</VERS>\n\t\t\t<VERS vnumber=\"4\"> \"If it is a white bright spot on the skin of his body, but it does not appear to be deeper than the skin, and the hair has not turned white, then the priest is to quarantine the person with the infection for seven days.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The priest must then examine it on the seventh day, and if, as far as he can see, the infection has stayed the same and has not spread on the skin, then the priest is to quarantine the person for another seven days.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The priest must then examine it again on the seventh day, and if the infection has faded and has not spread on the skin, then the priest is to pronounce the person clean. It is a scab, so he must wash his clothes and be clean. </VERS>\n\t\t\t<VERS vnumber=\"7\"> If, however, the scab is spreading further on the skin after he has shown himself to the priest for his purification, then he must show himself to the priest a second time. </VERS>\n\t\t\t<VERS vnumber=\"8\"> The priest must then examine it, and if the scab has spread on the skin, then the priest is to pronounce the person unclean. It is a disease.</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"When someone has a diseased infection, he must be brought to the priest. </VERS>\n\t\t\t<VERS vnumber=\"10\"> The priest will then examine it, and if a white swelling is on the skin, it has turned the hair white, and there is raw flesh in the swelling,</VERS>\n\t\t\t<VERS vnumber=\"11\"> it is a chronic disease on the skin of his body, so the priest is to pronounce him unclean. The priest must not merely quarantine him, for he is unclean.</VERS>\n\t\t\t<VERS vnumber=\"12\"> If, however, the disease breaks out on the skin so that the disease covers all the skin of the person with the infection from his head to his feet, as far as the priest can see,</VERS>\n\t\t\t<VERS vnumber=\"13\"> the priest must then examine it, and if the disease covers his whole body, he is to pronounce the person with the infection clean. He has turned all white, so he is clean.</VERS>\n\t\t\t<VERS vnumber=\"14\"> But whenever raw flesh appears in it he will be unclean, </VERS>\n\t\t\t<VERS vnumber=\"15\"> so the priest is to examine the raw flesh and pronounce him unclean, it is diseased.</VERS>\n\t\t\t<VERS vnumber=\"16\"> If, however, the raw flesh once again turns white, then he must come to the priest.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The priest will then examine it, and if the infection has turned white, the priest is to pronounce the person with the infection clean, he is clean.</VERS>\n\t\t\t<VERS vnumber=\"18\"> \"When someone's body has a boil on its skin and it heals, </VERS>\n\t\t\t<VERS vnumber=\"19\"> and in the place of the boil there is a white swelling or a reddish white bright spot, he must show himself to the priest.</VERS>\n\t\t\t<VERS vnumber=\"20\"> The priest will then examine it, and if it appears to be deeper than the skin and its hair has turned white, then the priest is to pronounce the person unclean. It is a diseased infection that has broken out in the boil.</VERS>\n\t\t\t<VERS vnumber=\"21\"> If, however, the priest examines it, and there is no white hair in it, it is not deeper than the skin, and it has faded, then the priest is to quarantine him for seven days.</VERS>\n\t\t\t<VERS vnumber=\"22\"> If it is spreading further on the skin, then the priest is to pronounce him unclean. It is an infection. </VERS>\n\t\t\t<VERS vnumber=\"23\"> But if the bright spot stays in its place and has not spread, it is the scar of the boil, so the priest is to pronounce him clean.</VERS>\n\t\t\t<VERS vnumber=\"24\"> \"When a body has a burn on its skin and the raw area of the burn becomes a reddish white or white bright spot, </VERS>\n\t\t\t<VERS vnumber=\"25\"> the priest must examine it, and if the hair has turned white in the bright spot and it appears to be deeper than the skin, it is a disease that has broken out in the burn. The priest is to pronounce the person unclean. It is a diseased infection.</VERS>\n\t\t\t<VERS vnumber=\"26\"> If, however, the priest examines it and there is no white hair in the bright spot, it is not deeper than the skin, and it has faded, then the priest is to quarantine him for seven days.</VERS>\n\t\t\t<VERS vnumber=\"27\"> The priest must then examine it on the seventh day, and if it is spreading further on the skin, then the priest is to pronounce him unclean. It is a diseased infection.</VERS>\n\t\t\t<VERS vnumber=\"28\"> But if the bright spot stays in its place, has not spread on the skin, and it has faded, then it is the swelling of the burn, so the priest is to pronounce him clean, because it is the scar of the burn.</VERS>\n\t\t\t<VERS vnumber=\"29\"> \"When a man or a woman has an infection on the head or in the beard,</VERS>\n\t\t\t<VERS vnumber=\"30\"> the priest is to examine the infection, and if it appears to be deeper than the skin and the hair in it is reddish yellow and thin, then the priest is to pronounce the person unclean. It is scall, a disease of the head or the beard.</VERS>\n\t\t\t<VERS vnumber=\"31\"> But if the priest examines the scall infection and it does not appear to be deeper than the skin, and there is no black hair in it, then the priest is to quarantine the person with the scall infection for seven days.</VERS>\n\t\t\t<VERS vnumber=\"32\"> The priest must then examine the infection on the seventh day, and if the scall has not spread, there is no reddish yellow hair in it, and the scall does not appear to be deeper than the skin,</VERS>\n\t\t\t<VERS vnumber=\"33\"> then the individual is to shave himself, but he must not shave the area affected by the scall, and the priest is to quarantine the person with the scall for another seven days.</VERS>\n\t\t\t<VERS vnumber=\"34\"> The priest must then examine the scall on the seventh day, and if the scall has not spread on the skin and it does not appear to be deeper than the skin, then the priest is to pronounce him clean. So he is to wash his clothes and be clean. </VERS>\n\t\t\t<VERS vnumber=\"35\"> If, however, the scall spreads further on the skin after his purification, </VERS>\n\t\t\t<VERS vnumber=\"36\"> then the priest is to examine it, and if the scall has spread on the skin the priest is not to search further for reddish yellow hair. The person is unclean. </VERS>\n\t\t\t<VERS vnumber=\"37\"> If, as far as the priest can see, the scall has stayed the same and black hair has sprouted in it, the scall has been healed; the person is clean. So the priest is to pronounce him clean.</VERS>\n\t\t\t<VERS vnumber=\"38\"> \"When a man or a woman has bright spots, white bright spots, on the skin of their body,</VERS>\n\t\t\t<VERS vnumber=\"39\"> the priest is to examine them, and if the bright spots on the skin of their body are faded white, it is a harmless rash that has broken out on the skin. The person is clean.</VERS>\n\t\t\t<VERS vnumber=\"40\"> \"When a man's head is bare so that he is balding in back, he is clean. </VERS>\n\t\t\t<VERS vnumber=\"41\"> If his head is bare on the forehead so that he is balding in front, he is clean. </VERS>\n\t\t\t<VERS vnumber=\"42\"> But if there is a reddish white infection in the back or front bald area, it is a disease breaking out in his back or front bald area.</VERS>\n\t\t\t<VERS vnumber=\"43\"> The priest is to examine it, and if the swelling of the infection is reddish white in the back or front bald area like the appearance of a disease on the skin of the body,</VERS>\n\t\t\t<VERS vnumber=\"44\"> he is a diseased man. He is unclean. The priest must surely pronounce him unclean because of his infection on his head.</VERS>\n\t\t\t<VERS vnumber=\"45\"> \"As for the diseased person who has the infection, his clothes must be torn, the hair of his head must be unbound, he must cover his mustache, and he must call out 'Unclean! Unclean!' </VERS>\n\t\t\t<VERS vnumber=\"46\"> The whole time he has the infection he will be continually unclean. He must live in isolation, and his place of residence must be outside the camp.</VERS>\n\t\t\t<VERS vnumber=\"47\"> \"When a garment has a diseased infection in it, whether a wool or linen garment,</VERS>\n\t\t\t<VERS vnumber=\"48\"> or in the warp or woof of the linen or the wool, or in leather or anything made of leather,</VERS>\n\t\t\t<VERS vnumber=\"49\"> if the infection in the garment or leather or warp or woof or any article of leather is yellowish green or reddish, it is a diseased infection and it must be shown to the priest. </VERS>\n\t\t\t<VERS vnumber=\"50\"> The priest is to examine and then quarantine the article with the infection for seven days.</VERS>\n\t\t\t<VERS vnumber=\"51\"> He must then examine the infection on the seventh day. If the infection has spread in the garment, or in the warp, or in the woof, or in the leather, whatever the article into which the leather was made, the infection is a malignant disease. It is unclean.</VERS>\n\t\t\t<VERS vnumber=\"52\"> He must burn the garment or the warp or the woof, whether wool or linen, or any article of leather which has the infection in it. Because it is a malignant disease it must be burned up in the fire.</VERS>\n\t\t\t<VERS vnumber=\"53\"> But if the priest examines it and the infection has not spread in the garment or in the warp or in the woof or in any article of leather, </VERS>\n\t\t\t<VERS vnumber=\"54\"> the priest is to command that they wash whatever has the infection and quarantine it for another seven days.</VERS>\n\t\t\t<VERS vnumber=\"55\"> The priest must then examine it after the infection has been washed out, and if the infection has not changed its appearance even though the infection has not spread, it is unclean. You must burn it up in the fire. It is a fungus, whether on the back side or front side of the article.</VERS>\n\t\t\t<VERS vnumber=\"56\"> But if the priest has examined it and the infection has faded after it has been washed, he is to tear it out of the garment or the leather or the warp or the woof.</VERS>\n\t\t\t<VERS vnumber=\"57\"> Then if it still appears again in the garment or the warp or the woof, or in any article of leather, it is an outbreak. Whatever has the infection in it you must burn up in the fire. </VERS>\n\t\t\t<VERS vnumber=\"58\"> But the garment or the warp or the woof or any article of leather which you wash and infection disappears from it is to be washed a second time and it will be clean.\"</VERS>\n\t\t\t<VERS vnumber=\"59\"> This is the law of the diseased infection in the garment of wool or linen, or the warp or woof, or any article of leather, for pronouncing it clean or unclean.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"14\">\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"This is the law of the diseased person on the day of his purification, when he is brought to the priest.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The priest is to go outside the camp and examine the infection. If the infection of the diseased person has been healed,</VERS>\n\t\t\t<VERS vnumber=\"4\"> then the priest will command that two live clean birds, a piece of cedar wood, a scrap of crimson fabric, and some twigs of hyssop be taken up for the one being cleansed.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The priest will then command that one bird be slaughtered into a clay vessel over fresh water.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Then he is to take the live bird along with the piece of cedar wood, the scrap of crimson fabric, and the twigs of hyssop, and he is to dip them and the live bird in the blood of the bird slaughtered over the fresh water, </VERS>\n\t\t\t<VERS vnumber=\"7\"> and sprinkle it seven times on the one being cleansed from the disease, pronounce him clean, and send the live bird away over the open countryside.</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"The one being cleansed must then wash his clothes, shave off all his hair, and bathe in water, and so be clean. Then afterward he may enter the camp, but he must live outside his tent seven days. </VERS>\n\t\t\t<VERS vnumber=\"9\"> When the seventh day comes he must shave all his hair, his head, his beard, his eyebrows, all his hair, and he must wash his clothes, bathe his body in water, and so be clean.</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"On the eighth day he must take two flawless male lambs, one flawless yearling female lamb, three-tenths of an ephah of choice wheat flour as a grain offering mixed with olive oil, and one log of olive oil,</VERS>\n\t\t\t<VERS vnumber=\"11\"> and the priest who pronounces him clean will have the man who is being cleansed stand along with these offerings before the LORD at the entrance of the Meeting Tent.</VERS>\n\t\t\t<VERS vnumber=\"12\"> \"The priest is to take one male lamb and present it for a guilt offering along with the log of olive oil and present them as a wave offering before the LORD.</VERS>\n\t\t\t<VERS vnumber=\"13\"> He must then slaughter the male lamb in the place where the sin offering and the burnt offering are slaughtered, in the sanctuary, because, like the sin offering, the guilt offering belongs to the priest; it is most holy. </VERS>\n\t\t\t<VERS vnumber=\"14\"> Then the priest is to take some of the blood of the guilt offering and put it on the right earlobe of the one being cleansed, on the thumb of his right hand, and on the big toe of his right foot. </VERS>\n\t\t\t<VERS vnumber=\"15\"> The priest will then take some of the log of olive oil and pour it into his own left hand.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Then the priest is to dip his right forefinger into the olive oil that is in his left hand, and sprinkle some of the olive oil with his finger seven times before the LORD. </VERS>\n\t\t\t<VERS vnumber=\"17\"> The priest will then put some of the rest of the olive oil that is in his hand on the right earlobe of the one being cleansed, on the thumb of his right hand, and on the big toe of his right foot, on the blood of the guilt offering, </VERS>\n\t\t\t<VERS vnumber=\"18\"> and the remainder of the olive oil that is in his hand the priest is to put on the head of the one being cleansed. So the priest is to make atonement for him before the LORD.</VERS>\n\t\t\t<VERS vnumber=\"19\"> \"The priest must then perform the sin offering and make atonement for the one being cleansed from his impurity. After that he is to slaughter the burnt offering, </VERS>\n\t\t\t<VERS vnumber=\"20\"> and the priest is to offer the burnt offering and the grain offering on the altar. So the priest is to make atonement for him and he will be clean.</VERS>\n\t\t\t<VERS vnumber=\"21\"> \"If the person is poor and does not have sufficient means, he must take one male lamb as a guilt offering for a wave offering to make atonement for himself, one-tenth of an ephah of choice wheat flour mixed with olive oil for a grain offering, a log of olive oil,</VERS>\n\t\t\t<VERS vnumber=\"22\"> and two turtledoves or two young pigeons, which are within his means. One will be a sin offering and the other a burnt offering.</VERS>\n\t\t\t<VERS vnumber=\"23\"> \"On the eighth day he must bring them for his purification to the priest at the entrance of the Meeting Tent before the LORD,</VERS>\n\t\t\t<VERS vnumber=\"24\"> and the priest is to take the male lamb of the guilt offering and the log of olive oil and wave them as a wave offering before the LORD. </VERS>\n\t\t\t<VERS vnumber=\"25\"> Then he is to slaughter the male lamb of the guilt offering, and the priest is to take some of the blood of the guilt offering and put it on the right earlobe of the one being cleansed, on the thumb of his right hand, and on the big toe of his right foot. </VERS>\n\t\t\t<VERS vnumber=\"26\"> The priest will then pour some of the olive oil into his own left hand,</VERS>\n\t\t\t<VERS vnumber=\"27\"> and sprinkle some of the olive oil that is in his left hand with his right forefinger seven times before the LORD. </VERS>\n\t\t\t<VERS vnumber=\"28\"> Then the priest is to put some of the olive oil that is in his hand on the right earlobe of the one being cleansed, on the thumb of his right hand, and on the big toe of his right foot, on the place of the blood of the guilt offering, </VERS>\n\t\t\t<VERS vnumber=\"29\"> and the remainder of the olive oil that is in the hand of the priest he is to put on the head of the one being cleansed to make atonement for him before the LORD.</VERS>\n\t\t\t<VERS vnumber=\"30\"> \"He will then make one of the turtledoves or young pigeons, which are within his means,</VERS>\n\t\t\t<VERS vnumber=\"31\"> a sin offering and the other a burnt offering along with the grain offering. So the priest is to make atonement for the one being cleansed before the LORD. </VERS>\n\t\t\t<VERS vnumber=\"32\"> This is the law of the one in whom there is a diseased infection, who does not have sufficient means for his purification.\"</VERS>\n\t\t\t<VERS vnumber=\"33\"> The Lord spoke to Moses and Aaron:</VERS>\n\t\t\t<VERS vnumber=\"34\"> \"When you enter the land of Canaan which I am about to give to you for a possession, and I put a diseased infection in a house in the land you are to possess,</VERS>\n\t\t\t<VERS vnumber=\"35\"> then whoever owns the house must come and declare to the priest, 'Something like an infection is visible to me in the house.' </VERS>\n\t\t\t<VERS vnumber=\"36\"> Then the priest will command that the house be cleared before the priest enters to examine the infection so that everything in the house does not become unclean, and afterward the priest will enter to examine the house. </VERS>\n\t\t\t<VERS vnumber=\"37\"> He is to examine the infection, and if the infection in the walls of the house consists of yellowish green or reddish eruptions, and it appears to be deeper than the surface of the wall,</VERS>\n\t\t\t<VERS vnumber=\"38\"> then the priest is to go out of the house to the doorway of the house and quarantine the house for seven days.</VERS>\n\t\t\t<VERS vnumber=\"39\"> The priest must return on the seventh day and examine it, and if the infection has spread in the walls of the house, </VERS>\n\t\t\t<VERS vnumber=\"40\"> then the priest is to command that the stones that had the infection in them be pulled and thrown outside the city into an unclean place. </VERS>\n\t\t\t<VERS vnumber=\"41\"> Then he is to have the house scraped all around on the inside, and the plaster which is scraped off must be dumped outside the city into an unclean place. </VERS>\n\t\t\t<VERS vnumber=\"42\"> They are then to take other stones and replace those stones, and he is to take other plaster and replaster the house.</VERS>\n\t\t\t<VERS vnumber=\"43\"> \"If the infection returns and breaks out in the house after he has pulled out the stones, scraped the house, and it is replastered,</VERS>\n\t\t\t<VERS vnumber=\"44\"> the priest is to come and examine it, and if the infection has spread in the house, it is a malignant disease in the house. It is unclean. </VERS>\n\t\t\t<VERS vnumber=\"45\"> He must tear down the house, its stones, its wood, and all the plaster of the house, and bring all of it outside the city to an unclean place. </VERS>\n\t\t\t<VERS vnumber=\"46\"> Anyone who enters the house all the days the priest has quarantined it will be unclean until evening. </VERS>\n\t\t\t<VERS vnumber=\"47\"> Anyone who lies down in the house must wash his clothes. Anyone who eats in the house must wash his clothes.</VERS>\n\t\t\t<VERS vnumber=\"48\"> \"If, however, the priest enters and examines it, and the infection has not spread in the house after the house has been replastered, then the priest is to pronounce the house clean because the infection has been healed. </VERS>\n\t\t\t<VERS vnumber=\"49\"> Then he is to take two birds, a piece of cedar wood, a scrap of crimson fabric, and some twigs of hyssop to decontaminate the house, </VERS>\n\t\t\t<VERS vnumber=\"50\"> and he is to slaughter one bird into a clay vessel over fresh water.</VERS>\n\t\t\t<VERS vnumber=\"51\"> He must then take the piece of cedar wood, the twigs of hyssop, the scrap of crimson fabric, and the live bird, and dip them in the blood of the slaughtered bird and in the fresh water, and sprinkle the house seven times.</VERS>\n\t\t\t<VERS vnumber=\"52\"> So he is to decontaminate the house with the blood of the bird, the fresh water, the live bird, the piece of cedar wood, the twigs of hyssop, and the scrap of crimson fabric,</VERS>\n\t\t\t<VERS vnumber=\"53\"> and he is to send the live bird away outside the city into the open countryside. So he is to make atonement for the house and it will be clean.</VERS>\n\t\t\t<VERS vnumber=\"54\"> \"This is the law for all diseased infections, for scall,</VERS>\n\t\t\t<VERS vnumber=\"55\"> for the diseased garment, for the house,</VERS>\n\t\t\t<VERS vnumber=\"56\"> for the swelling, for the scab, and for the bright spot,</VERS>\n\t\t\t<VERS vnumber=\"57\"> to teach when something is unclean and when it is clean. This is the law for dealing with infectious disease.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"15\">\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Moses and Aaron:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Speak to the Israelites and tell them, 'When any man has a discharge from his body, his discharge is unclean.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Now this is his uncleanness in regard to his discharge, whether his body secretes his discharge or blocks his discharge, he is unclean. All the days that his body has a discharge or his body blocks his discharge, this is his uncleanness.</VERS>\n\t\t\t<VERS vnumber=\"4\"> \"'Any bed the man with a discharge lies on will be unclean, and any furniture he sits on will be unclean.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Anyone who touches his bed must wash his clothes, bathe in water, and be unclean until evening.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The one who sits on the furniture the man with a discharge sits on must wash his clothes, bathe in water, and be unclean until evening.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The one who touches the body of the man with a discharge must wash his clothes, bathe in water, and be unclean until evening. </VERS>\n\t\t\t<VERS vnumber=\"8\"> If the man with a discharge spits on a person who is ceremonially clean, that person must wash his clothes, bathe in water, and be unclean until evening. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Any means of riding the man with a discharge rides on will be unclean. </VERS>\n\t\t\t<VERS vnumber=\"10\"> Anyone who touches anything that was under him will be unclean until evening, and the one who carries those items must wash his clothes, bathe in water, and be unclean until evening. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Anyone whom the man with the discharge touches without having rinsed his hands in water must wash his clothes, bathe in water, and be unclean until evening. </VERS>\n\t\t\t<VERS vnumber=\"12\"> A clay vessel which the man with the discharge touches must be broken, and any wooden utensil must be rinsed in water.</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"'When the man with the discharge becomes clean from his discharge he is to count off for himself seven days for his purification, and he must wash his clothes, bathe in fresh water, and be clean. </VERS>\n\t\t\t<VERS vnumber=\"14\"> Then on the eighth day he is to take for himself two turtledoves or two young pigeons, and he is to present himself before the LORD at the entrance of the Meeting Tent and give them to the priest, </VERS>\n\t\t\t<VERS vnumber=\"15\"> and the priest is to make one of them a sin offering and the other a burnt offering. So the priest is to make atonement for him before the LORD for his discharge.</VERS>\n\t\t\t<VERS vnumber=\"16\"> \"'When a man has a seminal emission, he must bathe his whole body in water and be unclean until evening, </VERS>\n\t\t\t<VERS vnumber=\"17\"> and he must wash in water any clothing or leather that has semen on it, and it will be unclean until evening.</VERS>\n\t\t\t<VERS vnumber=\"18\"> When a man has sexual intercourse with a woman and there is a seminal emission, they must bathe in water and be unclean until evening.</VERS>\n\t\t\t<VERS vnumber=\"19\"> \"'When a woman has a discharge and her discharge is blood from her body, she is to be in her menstruation seven days, and anyone who touches her will be unclean until evening. </VERS>\n\t\t\t<VERS vnumber=\"20\"> Anything she lies on during her menstruation will be unclean, and anything she sits on will be unclean.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Anyone who touches her bed must wash his clothes, bathe in water, and be unclean until evening.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Anyone who touches any furniture she sits on must wash his clothes, bathe in water, and be unclean until evening.</VERS>\n\t\t\t<VERS vnumber=\"23\"> If there is something on the bed or on the furniture she sits on, when he touches it he will be unclean until evening, </VERS>\n\t\t\t<VERS vnumber=\"24\"> and if a man actually has sexual intercourse with her so that her menstrual impurity touches him, then he will be unclean seven days and any bed he lies on will be unclean.</VERS>\n\t\t\t<VERS vnumber=\"25\"> \"'When a woman's discharge of blood flows many days not at the time of her menstruation, or if it flows beyond the time of her menstruation, all the days of her discharge of impurity will be like the days of her menstruation, she is unclean.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Any bed she lies on all the days of her discharge will be to her like the bed of her menstruation, any furniture she sits on will be unclean like the impurity of her menstruation,</VERS>\n\t\t\t<VERS vnumber=\"27\"> and anyone who touches them will be unclean, and he must wash his clothes, bathe in water, and be unclean until evening.</VERS>\n\t\t\t<VERS vnumber=\"28\"> \"'If she becomes clean from her discharge, then she is to count off for herself seven days, and afterward she will be clean. </VERS>\n\t\t\t<VERS vnumber=\"29\"> Then on the eighth day she must take for herself two turtledoves or two young pigeons and she must bring them to the priest at the entrance of the Meeting Tent, </VERS>\n\t\t\t<VERS vnumber=\"30\"> and the priest is to make one a sin offering and the other a burnt offering. So the priest is to make atonement for her before the LORD from her discharge of impurity.</VERS>\n\t\t\t<VERS vnumber=\"31\"> \"'Thus you are to set the Israelites apart from their impurity so that they do not die in their impurity by defiling my tabernacle which is in their midst. </VERS>\n\t\t\t<VERS vnumber=\"32\"> This is the law of the one with a discharge: the one who has a seminal emission and becomes unclean by it,</VERS>\n\t\t\t<VERS vnumber=\"33\"> the one who is sick in her menstruation, the one with a discharge, whether male or female, and a man who has sexual intercourse with an unclean woman.'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"16\">\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Moses after the death of Aaron's two sons when they approached the presence of the LORD and died, </VERS>\n\t\t\t<VERS vnumber=\"2\"> and the LORD said to Moses: \"Tell Aaron your brother that he must not enter at any time into the holy place inside the veil-canopy in front of the atonement plate that is on the ark so that he may not die, for I will appear in the cloud over the atonement plate.</VERS>\n\t\t\t<VERS vnumber=\"3\"> \"In this way Aaron is to enter into the sanctuary, with a young bull for a sin offering and a ram for a burnt offering.</VERS>\n\t\t\t<VERS vnumber=\"4\"> He must put on a holy linen tunic, linen leggings are to cover his body, and he is to wrap himself with a linen sash and wrap his head with a linen turban. They are holy garments, so he must bathe his body in water and put them on. </VERS>\n\t\t\t<VERS vnumber=\"5\"> He must also take two male goats from the congregation of the Israelites for a sin offering and one ram for a burnt offering. </VERS>\n\t\t\t<VERS vnumber=\"6\"> Then Aaron is to present the sin offering bull which is for himself and is to make atonement on behalf of himself and his household.</VERS>\n\t\t\t<VERS vnumber=\"7\"> He must then take the two goats and stand them before the LORD at the entrance of the Meeting Tent, </VERS>\n\t\t\t<VERS vnumber=\"8\"> and Aaron is to cast lots over the two goats, one lot for the LORD and one lot for Azazel.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Aaron must then present the goat which has been designated by lot for the LORD, and he is to make it a sin offering, </VERS>\n\t\t\t<VERS vnumber=\"10\"> but the goat which has been designated by lot for Azazel is to be stood alive before the LORD to make atonement on it by sending it away to Azazel into the wilderness.</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"Aaron is to present the sin offering bull which is for himself, and he is to make atonement on behalf of himself and his household. He is to slaughter the sin offering bull which is for himself,</VERS>\n\t\t\t<VERS vnumber=\"12\"> and take a censer full of coals of fire from the altar before the LORD and a full double handful of finely ground fragrant incense, and bring them inside the veil-canopy.</VERS>\n\t\t\t<VERS vnumber=\"13\"> He must then put the incense on the fire before the LORD, and the cloud of incense will cover the atonement plate which is above the ark of the testimony, so that he will not die.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Then he is to take some of the blood of the bull and sprinkle it with his finger on the eastern face of the atonement plate, and in front of the atonement plate he is to sprinkle some of the blood seven times with his finger.</VERS>\n\t\t\t<VERS vnumber=\"15\"> \"He must then slaughter the sin offering goat which is for the people. He is to bring its blood inside the veil-canopy, and he is to do with its blood just as he did to the blood of the bull: He is to sprinkle it on the atonement plate and in front of the atonement plate. </VERS>\n\t\t\t<VERS vnumber=\"16\"> So he is to make atonement for the holy place from the impurities of the Israelites and from their transgressions with regard to all their sins, and thus he is to do for the Meeting Tent which resides with them in the midst of their impurities. </VERS>\n\t\t\t<VERS vnumber=\"17\"> Nobody is to be in the Meeting Tent when he enters to make atonement in the holy place until he goes out, and he has made atonement on his behalf, on behalf of his household, and on behalf of the whole assembly of Israel.</VERS>\n\t\t\t<VERS vnumber=\"18\"> \"Then he is to go out to the altar which is before the LORD and make atonement for it. He is to take some of the blood of the bull and some of the blood of the goat, and put it all around on the horns of the altar. </VERS>\n\t\t\t<VERS vnumber=\"19\"> Then he is to sprinkle on it some of the blood with his finger seven times, and cleanse and consecrate it from the impurities of the Israelites.</VERS>\n\t\t\t<VERS vnumber=\"20\"> \"When he has finished purifying the holy place, the Meeting Tent, and the altar, he is to present the live goat. </VERS>\n\t\t\t<VERS vnumber=\"21\"> Aaron is to lay his two hands on the head of the live goat and confess over it all the iniquities of the Israelites and all their transgressions in regard to all their sins, and thus he is to put them on the head of the goat and send it away into the wilderness by the hand of a man standing ready.</VERS>\n\t\t\t<VERS vnumber=\"22\"> The goat is to bear on itself all their iniquities into an inaccessible land, so he is to send the goat away in the wilderness.</VERS>\n\t\t\t<VERS vnumber=\"23\"> \"Aaron must then enter the Meeting Tent and take off the linen garments which he had put on when he entered the sanctuary, and leave them there. </VERS>\n\t\t\t<VERS vnumber=\"24\"> Then he must bathe his body in water in a holy place, put on his clothes, and go out and make his burnt offering and the people's burnt offering. So he is to make atonement on behalf of himself and the people.</VERS>\n\t\t\t<VERS vnumber=\"25\"> \"Then he is to offer up the fat of the sin offering in smoke on the altar, </VERS>\n\t\t\t<VERS vnumber=\"26\"> and the one who sent the goat away to Azazel must wash his clothes, bathe his body in water, and afterward he may reenter the camp. </VERS>\n\t\t\t<VERS vnumber=\"27\"> The bull of the sin offering and the goat of the sin offering, whose blood was brought to make atonement in the holy place, must be brought outside the camp and their hide, their flesh, and their dung must be burned up,</VERS>\n\t\t\t<VERS vnumber=\"28\"> and the one who burns them must wash his clothes and bathe his body in water, and afterward he may reenter the camp.</VERS>\n\t\t\t<VERS vnumber=\"29\"> \"This is to be a perpetual statute for you. In the seventh month, on the tenth day of the month, you must humble yourselves and do no work of any kind, both the native citizen and the foreigner who resides in your midst, </VERS>\n\t\t\t<VERS vnumber=\"30\"> for on this day atonement is to be made for you to cleanse you from all your sins; you must be clean before the LORD.</VERS>\n\t\t\t<VERS vnumber=\"31\"> It is to be a Sabbath of complete rest for you, and you must humble yourselves. It is a perpetual statute.</VERS>\n\t\t\t<VERS vnumber=\"32\"> \"The priest who is anointed and ordained to act as high priest in place of his father is to make atonement. He is to put on the linen garments, the holy garments, </VERS>\n\t\t\t<VERS vnumber=\"33\"> and he is to purify the Most Holy Place, he is to purify the Meeting Tent and the altar, and he is to make atonement for the priests and for all the people of the assembly. </VERS>\n\t\t\t<VERS vnumber=\"34\"> This is to be a perpetual statute for you to make atonement for the Israelites for all their sins once a year.\" So he did just as the LORD had commanded Moses.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"17\">\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Speak to Aaron, his sons, and all the Israelites, and tell them: 'This is the word that the LORD has commanded:</VERS>\n\t\t\t<VERS vnumber=\"3\"> \"Blood guilt will be accounted to any man from the house of Israel who slaughters an ox or a lamb or a goat inside the camp or outside the camp,</VERS>\n\t\t\t<VERS vnumber=\"4\"> but has not brought it to the entrance of the Meeting Tent to present it as an offering to the LORD before the tabernacle of the LORD. He has shed blood, so that man will be cut off from the midst of his people.</VERS>\n\t\t\t<VERS vnumber=\"5\"> This is so that the Israelites will bring their sacrifices that they are sacrificing in the open field to the LORD at the entrance of the Meeting Tent to the priest and sacrifice them there as peace offering sacrifices to the LORD. </VERS>\n\t\t\t<VERS vnumber=\"6\"> The priest is to splash the blood on the altar of the LORD at the entrance of the Meeting Tent, and offer the fat up in smoke for a soothing aroma to the LORD. </VERS>\n\t\t\t<VERS vnumber=\"7\"> So they must no longer offer their sacrifices to the goat demons, acting like prostitutes by going after them. This is to be a perpetual statute for them throughout their generations.</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"You are to say to them: 'Any man from the house of Israel or from the foreigners who reside in their midst, who offers a burnt offering or a sacrifice </VERS>\n\t\t\t<VERS vnumber=\"9\"> but does not bring it to the entrance of the Meeting Tent to offer it to the LORD, that person will be cut off from his people.</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"'Any man from the house of Israel or from the foreigners who reside in their midst who eats any blood, I will set my face against that person who eats the blood, and I will cut him off from the midst of his people,</VERS>\n\t\t\t<VERS vnumber=\"11\"> for the life of every living thing is in the blood. So I myself have assigned it to you on the altar to make atonement for your lives, for the blood makes atonement by means of the life.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Therefore, I have said to the Israelites: No person among you is to eat blood, and no resident foreigner who lives among you is to eat blood.</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"'Any man from the Israelites or from the foreigners who reside in their midst who hunts a wild animal or a bird that may be eaten must pour out its blood and cover it with soil, </VERS>\n\t\t\t<VERS vnumber=\"14\"> for the life of all flesh is its blood. So I have said to the Israelites: You must not eat the blood of any living thing because the life of every living thing is its blood, all who eat it will be cut off.</VERS>\n\t\t\t<VERS vnumber=\"15\"> \"'Any person who eats an animal that has died of natural causes or an animal torn by beasts, whether a native citizen or a foreigner, must wash his clothes, bathe in water, and be unclean until evening; then he becomes clean. </VERS>\n\t\t\t<VERS vnumber=\"16\"> But if he does not wash his clothes and does not bathe his body, he will bear his punishment for iniquity.'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"18\">\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Speak to the Israelites and tell them, 'I am the LORD your God!</VERS>\n\t\t\t<VERS vnumber=\"3\"> You must not do as they do in the land of Egypt where you have been living, and you must not do as they do in the land of Canaan into which I am about to bring you; you must not walk in their statutes. </VERS>\n\t\t\t<VERS vnumber=\"4\"> You must observe my regulations and you must be sure to walk in my statutes. I am the LORD your God. </VERS>\n\t\t\t<VERS vnumber=\"5\"> So you must keep my statutes and my regulations; anyone who does so will live by keeping them. I am the LORD.</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"'No man is to approach any close relative to have sexual intercourse with her. I am the LORD.</VERS>\n\t\t\t<VERS vnumber=\"7\"> You must not expose your father's nakedness by having sexual intercourse with your mother. She is your mother; you must not have intercourse with her. </VERS>\n\t\t\t<VERS vnumber=\"8\"> You must not have sexual intercourse with your father's wife; she is your father's nakedness.</VERS>\n\t\t\t<VERS vnumber=\"9\"> You must not have sexual intercourse with your sister, whether she is your father's daughter or your mother's daughter, whether she is born in the same household or born outside it; you must not have sexual intercourse with either of them.</VERS>\n\t\t\t<VERS vnumber=\"10\"> You must not expose the nakedness of your son's daughter or your daughter's daughter by having sexual intercourse with them, because they are your own nakedness.</VERS>\n\t\t\t<VERS vnumber=\"11\"> You must not have sexual intercourse with the daughter of your father's wife born of your father; she is your sister. You must not have intercourse with her.</VERS>\n\t\t\t<VERS vnumber=\"12\"> You must not have sexual intercourse with your father's sister; she is your father's flesh.</VERS>\n\t\t\t<VERS vnumber=\"13\"> You must not have sexual intercourse with your mother's sister, because she is your mother's flesh.</VERS>\n\t\t\t<VERS vnumber=\"14\"> You must not expose the nakedness of your father's brother; you must not approach his wife to have sexual intercourse with her. She is your aunt.</VERS>\n\t\t\t<VERS vnumber=\"15\"> You must not have sexual intercourse with your daughter-in-law; she is your son's wife. You must not have intercourse with her.</VERS>\n\t\t\t<VERS vnumber=\"16\"> You must not have sexual intercourse with your brother's wife; she is your brother's nakedness.</VERS>\n\t\t\t<VERS vnumber=\"17\"> You must not have sexual intercourse with both a woman and her daughter; you must not take as wife either her son's daughter or her daughter's daughter to have intercourse with them. They are closely related to her, it is lewdness.</VERS>\n\t\t\t<VERS vnumber=\"18\"> You must not take a woman in marriage and then marry her sister as a rival wife while she is still alive, to have sexual intercourse with her.</VERS>\n\t\t\t<VERS vnumber=\"19\"> \"'You must not approach a woman in her menstrual impurity to have sexual intercourse with her. </VERS>\n\t\t\t<VERS vnumber=\"20\"> You must not have sexual intercourse with the wife of your fellow citizen to become unclean with her. </VERS>\n\t\t\t<VERS vnumber=\"21\"> You must not give any of your children as an offering to Molech, so that you do not profane the name of your God. I am the LORD! </VERS>\n\t\t\t<VERS vnumber=\"22\"> You must not have sexual intercourse with a male as one has sexual intercourse with a woman; it is a detestable act.</VERS>\n\t\t\t<VERS vnumber=\"23\"> You must not have sexual intercourse with any animal to become defiled with it, and a woman must not stand before an animal to have sexual intercourse with it; it is a perversion.</VERS>\n\t\t\t<VERS vnumber=\"24\"> \"'Do not defile yourselves with any of these things, for the nations which I am about to drive out before you have been defiled with all these things. </VERS>\n\t\t\t<VERS vnumber=\"25\"> Therefore the land has become unclean and I have brought the punishment for its iniquity upon it, so that the land has vomited out its inhabitants.</VERS>\n\t\t\t<VERS vnumber=\"26\"> You yourselves must obey my statutes and my regulations and must not do any of these abominations, both the native citizen and the resident foreigner in your midst,</VERS>\n\t\t\t<VERS vnumber=\"27\"> for the people who were in the land before you have done all these abominations, and the land has become unclean. </VERS>\n\t\t\t<VERS vnumber=\"28\"> So do not make the land vomit you out because you defile it just as it has vomited out the nations that were before you. </VERS>\n\t\t\t<VERS vnumber=\"29\"> For if anyone does any of these abominations, the persons who do them will be cut off from the midst of their people.</VERS>\n\t\t\t<VERS vnumber=\"30\"> You must obey my charge to not practice any of the abominable statutes that have been done before you, so that you do not defile yourselves by them. I am the LORD your God.'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"19\">\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Speak to the whole congregation of the Israelites and tell them, 'You must be holy because I, the LORD your God, am holy.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Each of you must respect his mother and his father, and you must keep my Sabbaths. I am the LORD your God. </VERS>\n\t\t\t<VERS vnumber=\"4\"> Do not turn to idols, and you must not make for yourselves gods of cast metal. I am the LORD your God.</VERS>\n\t\t\t<VERS vnumber=\"5\"> \"'When you sacrifice a peace offering sacrifice to the LORD, you must sacrifice it so that it is accepted for you.</VERS>\n\t\t\t<VERS vnumber=\"6\"> It must be eaten on the day of your sacrifice and on the following day, but what is left over until the third day must be burned up.</VERS>\n\t\t\t<VERS vnumber=\"7\"> If, however, it is eaten on the third day, it is spoiled, it will not be accepted, </VERS>\n\t\t\t<VERS vnumber=\"8\"> and the one who eats it will bear his punishment for iniquity because he has profaned what is holy to the LORD. That person will be cut off from his people.</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"'When you gather in the harvest of your land, you must not completely harvest the corner of your field, and you must not gather up the gleanings of your harvest. </VERS>\n\t\t\t<VERS vnumber=\"10\"> You must not pick your vineyard bare, and you must not gather up the fallen grapes of your vineyard. You must leave them for the poor and the foreigner. I am the LORD your God.</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"'You must not steal, you must not tell lies, and you must not deal falsely with your fellow citizen.</VERS>\n\t\t\t<VERS vnumber=\"12\"> You must not swear falsely in my name, so that you do not profane the name of your God. I am the LORD. </VERS>\n\t\t\t<VERS vnumber=\"13\"> You must not oppress your neighbor or commit robbery against him. You must not withhold the wages of the hired laborer overnight until morning. </VERS>\n\t\t\t<VERS vnumber=\"14\"> You must not curse a deaf person or put a stumbling block in front of a blind person. You must fear your God; I am the LORD.</VERS>\n\t\t\t<VERS vnumber=\"15\"> \"'You must not deal unjustly in judgment: you must neither show partiality to the poor nor honor the rich. You must judge your fellow citizen fairly.</VERS>\n\t\t\t<VERS vnumber=\"16\"> You must not go about as a slanderer among your people. You must not stand idly by when your neighbor's life is at stake. I am the LORD. </VERS>\n\t\t\t<VERS vnumber=\"17\"> You must not hate your brother in your heart. You must surely reprove your fellow citizen so that you do not incur sin on account of him.</VERS>\n\t\t\t<VERS vnumber=\"18\"> You must not take vengeance or bear a grudge against the children of your people, but you must love your neighbor as yourself. I am the LORD. </VERS>\n\t\t\t<VERS vnumber=\"19\"> You must keep my statutes. You must not allow two different kinds of your animals to breed, you must not sow your field with two different kinds of seed, and you must not wear a garment made of two different kinds of fabric.</VERS>\n\t\t\t<VERS vnumber=\"20\"> \"'When a man has sexual intercourse with a woman, although she is a slave woman designated for another man and she has not yet been ransomed, or freedom has not been granted to her, there will be an obligation to pay compensation. They must not be put to death, because she was not free. </VERS>\n\t\t\t<VERS vnumber=\"21\"> He must bring his guilt offering to the LORD at the entrance of the Meeting Tent, a guilt offering ram,</VERS>\n\t\t\t<VERS vnumber=\"22\"> and the priest is to make atonement for him with the ram of the guilt offering before the LORD for his sin that he has committed, and he will be forgiven of his sin that he has committed.</VERS>\n\t\t\t<VERS vnumber=\"23\"> \"'When you enter the land and plant any fruit tree, you must consider its fruit to be forbidden. Three years it will be forbidden to you; it must not be eaten. </VERS>\n\t\t\t<VERS vnumber=\"24\"> In the fourth year all its fruit will be holy, praise offerings to the LORD. </VERS>\n\t\t\t<VERS vnumber=\"25\"> Then in the fifth year you may eat its fruit to add its produce to your harvest. I am the LORD your God.</VERS>\n\t\t\t<VERS vnumber=\"26\"> \"'You must not eat anything with the blood still in it. You must not practice either divination or soothsaying.</VERS>\n\t\t\t<VERS vnumber=\"27\"> You must not round off the corners of the hair on your head or ruin the corners of your beard.</VERS>\n\t\t\t<VERS vnumber=\"28\"> You must not slash your body for a dead person or incise a tattoo on yourself. I am the LORD.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Do not profane your daughter by making her a prostitute, so that the land does not practice prostitution and become full of lewdness.</VERS>\n\t\t\t<VERS vnumber=\"30\"> \"'You must keep my Sabbaths and fear my sanctuary. I am the LORD.</VERS>\n\t\t\t<VERS vnumber=\"31\"> Do not turn to the spirits of the dead and do not seek familiar spirits to become unclean by them. I am the LORD your God. </VERS>\n\t\t\t<VERS vnumber=\"32\"> You must stand up in the presence of the aged, honor the presence of an elder, and fear your God. I am the LORD.</VERS>\n\t\t\t<VERS vnumber=\"33\"> When a foreigner resides with you in your land, you must not oppress him. </VERS>\n\t\t\t<VERS vnumber=\"34\"> The foreigner who resides with you must be to you like a native citizen among you; so you must love him as yourself, because you were foreigners in the land of Egypt. I am the LORD your God. </VERS>\n\t\t\t<VERS vnumber=\"35\"> You must not do injustice in the regulation of measures, whether of length, weight, or volume.</VERS>\n\t\t\t<VERS vnumber=\"36\"> You must have honest balances, honest weights, an honest ephah, and an honest hin. I am the LORD your God who brought you out from the land of Egypt. </VERS>\n\t\t\t<VERS vnumber=\"37\"> You must be sure to obey all my statutes and regulations. I am the LORD.'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"20\">\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"You are to say to the Israelites, 'Any man from the Israelites or from the foreigners who reside in Israel who gives any of his children to Molech must be put to death; the people of the land must pelt him with stones.</VERS>\n\t\t\t<VERS vnumber=\"3\"> I myself will set my face against that man and cut him off from the midst of his people, because he has given some of his children to Molech and thereby defiled my sanctuary and profaned my holy name.</VERS>\n\t\t\t<VERS vnumber=\"4\"> If, however, the people of the land shut their eyes to that man when he gives some of his children to Molech so that they do not put him to death, </VERS>\n\t\t\t<VERS vnumber=\"5\"> I myself will set my face against that man and his clan. I will cut off from the midst of their people both him and all who follow after him in spiritual prostitution, to commit prostitution by worshiping Molech.</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"'The person who turns to the spirits of the dead and familiar spirits to commit prostitution by going after them, I will set my face against that person and cut him off from the midst of his people.</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"'You must sanctify yourselves and be holy, because I am the LORD your God.</VERS>\n\t\t\t<VERS vnumber=\"8\"> You must be sure to obey my statutes. I am the LORD who sanctifies you.</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"'If anyone curses his father and mother he must be put to death. He has cursed his father and mother; his blood guilt is on himself.</VERS>\n\t\t\t<VERS vnumber=\"10\"> If a man commits adultery with his neighbor's wife, both the adulterer and the adulteress must be put to death. </VERS>\n\t\t\t<VERS vnumber=\"11\"> If a man has sexual intercourse with his father's wife, he has exposed his father's nakedness. Both of them must be put to death; their blood guilt is on themselves.</VERS>\n\t\t\t<VERS vnumber=\"12\"> If a man has sexual intercourse with his daughter-in-law, both of them must be put to death. They have committed perversion; their blood guilt is on themselves. </VERS>\n\t\t\t<VERS vnumber=\"13\"> If a man has sexual intercourse with a male as one has sexual intercourse with a woman, the two of them have committed an abomination. They must be put to death; their blood guilt is on themselves.</VERS>\n\t\t\t<VERS vnumber=\"14\"> If a man has sexual intercourse with both a woman and her mother, it is lewdness. Both he and they must be burned to death, so there is no lewdness in your midst. </VERS>\n\t\t\t<VERS vnumber=\"15\"> If a man has sexual intercourse with any animal, he must be put to death, and you must kill the animal. </VERS>\n\t\t\t<VERS vnumber=\"16\"> If a woman approaches any animal to have sexual intercourse with it, you must kill the woman, and the animal must be put to death; their blood guilt is on themselves.</VERS>\n\t\t\t<VERS vnumber=\"17\"> \"'If a man has sexual intercourse with his sister, whether the daughter of his father or his mother, so that he sees her nakedness and she sees his nakedness, it is a disgrace. They must be cut off in the sight of the children of their people. He has exposed his sister's nakedness; he will bear his punishment for iniquity.</VERS>\n\t\t\t<VERS vnumber=\"18\"> If a man has sexual intercourse with a menstruating woman and uncovers her nakedness, he has laid bare her fountain of blood and she has exposed the fountain of her blood, so both of them must be cut off from the midst of their people. </VERS>\n\t\t\t<VERS vnumber=\"19\"> You must not expose the nakedness of your mother's sister and your father's sister, for such a person has laid bare his own close relative. They must bear their punishment for iniquity.</VERS>\n\t\t\t<VERS vnumber=\"20\"> If a man has sexual intercourse with his aunt, he has exposed his uncle's nakedness; they must bear responsibility for their sin, they will die childless.</VERS>\n\t\t\t<VERS vnumber=\"21\"> If a man has sexual intercourse with his brother's wife, it is indecency. He has exposed his brother's nakedness; they will be childless.</VERS>\n\t\t\t<VERS vnumber=\"22\"> \"'You must be sure to obey all my statutes and regulations, so that the land to which I am about to bring you to take up residence there does not vomit you out. </VERS>\n\t\t\t<VERS vnumber=\"23\"> You must not walk in the statutes of the nation which I am about to drive out before you, because they have done all these things and I am filled with disgust against them. </VERS>\n\t\t\t<VERS vnumber=\"24\"> So I have said to you: You yourselves will possess their land and I myself will give it to you for a possession, a land flowing with milk and honey. I am the LORD your God who has set you apart from the other peoples.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Therefore you must distinguish between the clean animal and the unclean, and between the unclean bird and the clean, and you must not make yourselves detestable by means of an animal or bird or anything that creeps on the ground, creatures I have distinguished for you as unclean.</VERS>\n\t\t\t<VERS vnumber=\"26\"> You must be holy to me because I, the LORD, am holy, and I have set you apart from the other peoples to be mine.</VERS>\n\t\t\t<VERS vnumber=\"27\"> \"'A man or woman who has in them a spirit of the dead or a familiar spirit must be put to death. They must pelt them with stones; their blood guilt is on themselves.'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"21\">\n\t\t\t<VERS vnumber=\"1\"> The LORD said to Moses: \"Say to the priests, the sons of Aaron, say to them, 'For a dead person no priest is to defile himself among his people,</VERS>\n\t\t\t<VERS vnumber=\"2\"> except for his close relative who is near to him: his mother, his father, his son, his daughter, his brother, </VERS>\n\t\t\t<VERS vnumber=\"3\"> and his virgin sister who is near to him, who has no husband; he may defile himself for her. </VERS>\n\t\t\t<VERS vnumber=\"4\"> He must not defile himself as a husband among his people so as to profane himself.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Priests must not have a bald spot shaved on their head, they must not shave the corner of their beard, and they must not cut slashes in their body.</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"'They must be holy to their God, and they must not profane the name of their God, because they are the ones who present the LORD's gifts, the food of their God. Therefore they must be holy.</VERS>\n\t\t\t<VERS vnumber=\"7\"> They must not take a wife defiled by prostitution, nor are they to take a wife divorced from her husband, for the priest is holy to his God.</VERS>\n\t\t\t<VERS vnumber=\"8\"> You must sanctify him because he presents the food of your God. He must be holy to you because I, the LORD who sanctifies you all, am holy.</VERS>\n\t\t\t<VERS vnumber=\"9\"> If a daughter of a priest profanes herself by engaging in prostitution, she is profaning her father. She must be burned to death.</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"'The high priest, who is greater than his brothers, on whose head the anointing oil is poured, who has been ordained to wear the priestly garments, must neither dishevel the hair of his head nor tear his garments.</VERS>\n\t\t\t<VERS vnumber=\"11\"> He must not go where there is any dead person; he must not defile himself even for his father and his mother. </VERS>\n\t\t\t<VERS vnumber=\"12\"> He must not go out from the sanctuary and must not profane the sanctuary of his God, because the dedication of the anointing oil of his God is on him. I am the LORD. </VERS>\n\t\t\t<VERS vnumber=\"13\"> He must take a wife who is a virgin.</VERS>\n\t\t\t<VERS vnumber=\"14\"> He must not marry a widow, a divorced woman, or one profaned by prostitution; he may only take a virgin from his people as a wife. </VERS>\n\t\t\t<VERS vnumber=\"15\"> He must not profane his children among his people, for I am the LORD who sanctifies him.'\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> The LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"17\"> \"Tell Aaron, 'No man from your descendants throughout their generations who has a physical flaw is to approach to present the food of his God. </VERS>\n\t\t\t<VERS vnumber=\"18\"> Certainly no man who has a physical flaw is to approach: a blind man, or one who is lame, or one with a slit nose, or a limb too long, </VERS>\n\t\t\t<VERS vnumber=\"19\"> or a man who has had a broken leg or arm,</VERS>\n\t\t\t<VERS vnumber=\"20\"> or a hunchback, or a dwarf, or one with a spot in his eye, or a festering eruption, or a feverish rash, or a crushed testicle. </VERS>\n\t\t\t<VERS vnumber=\"21\"> No man from the descendants of Aaron the priest who has a physical flaw may step forward to present the LORD's gifts; he has a physical flaw, so he must not step forward to present the food of his God. </VERS>\n\t\t\t<VERS vnumber=\"22\"> He may eat both the most holy and the holy food of his God,</VERS>\n\t\t\t<VERS vnumber=\"23\"> but he must not go into the veil-canopy or step forward to the altar because he has a physical flaw. Thus he must not profane my holy places, for I am the LORD who sanctifies them.'\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> So Moses spoke these things to Aaron, his sons, and all the Israelites.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"22\">\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Tell Aaron and his sons that they must deal respectfully with the holy offerings of the Israelites, which they consecrate to me, so that they do not profane my holy name. I am the LORD. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Say to them, 'Throughout your generations, if any man from all your descendants approaches the holy offerings which the Israelites consecrate to the LORD while he is impure, that person must be cut off from before me. I am the LORD. </VERS>\n\t\t\t<VERS vnumber=\"4\"> No man from the descendants of Aaron who is diseased or has a discharge may eat the holy offerings until he becomes clean. The one who touches anything made unclean by contact with a dead person, or a man who has a seminal emission,</VERS>\n\t\t\t<VERS vnumber=\"5\"> or a man who touches a swarming thing by which he becomes unclean, or touches a person by which he becomes unclean, whatever that person's impurity,</VERS>\n\t\t\t<VERS vnumber=\"6\"> the person who touches any of these will be unclean until evening and must not eat from the holy offerings unless he has bathed his body in water.</VERS>\n\t\t\t<VERS vnumber=\"7\"> When the sun goes down he will be clean, and afterward he may eat from the holy offerings, because they are his food.</VERS>\n\t\t\t<VERS vnumber=\"8\"> He must not eat an animal that has died of natural causes or an animal torn by beasts and thus become unclean by it. I am the LORD. </VERS>\n\t\t\t<VERS vnumber=\"9\"> They must keep my charge so that they do not incur sin on account of it and therefore die because they profane it. I am the LORD who sanctifies them.</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"'No lay person may eat anything holy. Neither a priest's lodger nor a hired laborer may eat anything holy, </VERS>\n\t\t\t<VERS vnumber=\"11\"> but if a priest buys a person with his own money, that person may eat the holy offerings, and those born in the priest's own house may eat his food.</VERS>\n\t\t\t<VERS vnumber=\"12\"> If a priest's daughter marries a lay person, she may not eat the holy contribution offerings,</VERS>\n\t\t\t<VERS vnumber=\"13\"> but if a priest's daughter is a widow or divorced, and she has no children so that she returns to live in her father's house as in her youth, she may eat from her father's food, but no lay person may eat it.</VERS>\n\t\t\t<VERS vnumber=\"14\"> \"'If a man eats a holy offering by mistake, he must add one fifth to it and give the holy offering to the priest.</VERS>\n\t\t\t<VERS vnumber=\"15\"> They must not profane the holy offerings which the Israelites contribute to the LORD,</VERS>\n\t\t\t<VERS vnumber=\"16\"> and so cause them to incur a penalty for guilt when they eat their holy offerings, for I am the LORD who sanctifies them.'\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> The LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"18\"> \"Speak to Aaron, his sons, and all the Israelites and tell them, 'When any man from the house of Israel or from the foreigners in Israel presents his offering for any of the votive or freewill offerings which they present to the LORD as a burnt offering, </VERS>\n\t\t\t<VERS vnumber=\"19\"> if it is to be acceptable for your benefit it must be a flawless male from the cattle, sheep, or goats. </VERS>\n\t\t\t<VERS vnumber=\"20\"> You must not present anything that has a flaw, because it will not be acceptable for your benefit.</VERS>\n\t\t\t<VERS vnumber=\"21\"> If a man presents a peace offering sacrifice to the LORD for a special votive offering or for a freewill offering from the herd or the flock, it must be flawless to be acceptable; it must have no flaw.</VERS>\n\t\t\t<VERS vnumber=\"22\"> \"'You must not present to the LORD something blind, or with a broken bone, or mutilated, or with a running sore, or with a festering eruption, or with a feverish rash. You must not give any of these as a gift on the altar to the LORD. </VERS>\n\t\t\t<VERS vnumber=\"23\"> As for an ox or a sheep with a limb too long or stunted, you may present it as a freewill offering, but it will not be acceptable for a votive offering.</VERS>\n\t\t\t<VERS vnumber=\"24\"> You must not present to the LORD something with testicles that are bruised, crushed, torn, or cut off; you must not do this in your land. </VERS>\n\t\t\t<VERS vnumber=\"25\"> Even from a foreigner you must not present the food of your God from such animals as these, for they are ruined and flawed; they will not be acceptable for your benefit.'\"</VERS>\n\t\t\t<VERS vnumber=\"26\"> The LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"27\"> \"When an ox, lamb, or goat is born, it must be under the care of its mother seven days, but from the eighth day onward it will be acceptable as an offering gift to the LORD. </VERS>\n\t\t\t<VERS vnumber=\"28\"> You must not slaughter an ox or a sheep and its young on the same day.</VERS>\n\t\t\t<VERS vnumber=\"29\"> When you sacrifice a thanksgiving offering to the LORD, you must sacrifice it so that it is acceptable for your benefit.</VERS>\n\t\t\t<VERS vnumber=\"30\"> On that very day it must be eaten; you must not leave any part of it over until morning. I am the LORD.</VERS>\n\t\t\t<VERS vnumber=\"31\"> \"You must be sure to do my commandments. I am the LORD. </VERS>\n\t\t\t<VERS vnumber=\"32\"> You must not profane my holy name, and I will be sanctified in the midst of the Israelites. I am the LORD who sanctifies you,</VERS>\n\t\t\t<VERS vnumber=\"33\"> the one who brought you out from the land of Egypt to be your God. I am the LORD.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"23\">\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Speak to the Israelites and tell them, 'These are the LORD's appointed times which you must proclaim as holy assemblies, my appointed times:</VERS>\n\t\t\t<VERS vnumber=\"3\"> \"'Six days work may be done, but on the seventh day there must be a Sabbath of complete rest, a holy assembly. You must not do any work; it is a Sabbath to the LORD in all the places where you live.</VERS>\n\t\t\t<VERS vnumber=\"4\"> \"'These are the LORD's appointed times, holy assemblies, which you must proclaim at their appointed time.</VERS>\n\t\t\t<VERS vnumber=\"5\"> In the first month, on the fourteenth day of the month, at twilight, is a Passover offering to the LORD. </VERS>\n\t\t\t<VERS vnumber=\"6\"> Then on the fifteenth day of the same month will be the festival of unleavened bread to the LORD; seven days you must eat unleavened bread. </VERS>\n\t\t\t<VERS vnumber=\"7\"> On the first day there will be a holy assembly for you; you must not do any regular work.</VERS>\n\t\t\t<VERS vnumber=\"8\"> You must present a gift to the LORD for seven days, and the seventh day is a holy assembly; you must not do any regular work.'\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> The LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"Speak to the Israelites and tell them, 'When you enter the land that I am about to give to you and you gather in its harvest, then you must bring the sheaf of the first portion of your harvest to the priest, </VERS>\n\t\t\t<VERS vnumber=\"11\"> and he must wave the sheaf before the LORD to be accepted for your benefit, on the day after the Sabbath the priest is to wave it.</VERS>\n\t\t\t<VERS vnumber=\"12\"> On the day you wave the sheaf you must also offer a flawless yearling lamb for a burnt offering to the LORD, </VERS>\n\t\t\t<VERS vnumber=\"13\"> along with its grain offering, two tenths of an ephah of choice wheat flour mixed with olive oil, as a gift to the LORD, a soothing aroma, and its drink offering, one fourth of a hin of wine.</VERS>\n\t\t\t<VERS vnumber=\"14\"> You must not eat bread, roasted grain, or fresh grain until this very day, until you bring the offering of your God. This is a perpetual statute throughout your generations in all the places where you live.</VERS>\n\t\t\t<VERS vnumber=\"15\"> \"'You must count for yourselves seven weeks from the day after the Sabbath, from the day you bring the wave offering sheaf; they must be complete weeks.</VERS>\n\t\t\t<VERS vnumber=\"16\"> You must count fifty days, until the day after the seventh Sabbath, and then you must present a new grain offering to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"17\"> From the places where you live you must bring two loaves of bread for a wave offering; they must be made from two tenths of an ephah of fine wheat flour, baked with yeast, as first fruits to the LORD. </VERS>\n\t\t\t<VERS vnumber=\"18\"> Along with the loaves of bread, you must also present seven flawless yearling lambs, one young bull, and two rams. They are to be a burnt offering to the LORD along with their grain offering and drink offerings, a gift of a soothing aroma to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"19\"> You must also offer one male goat for a sin offering and two yearling lambs for a peace offering sacrifice, </VERS>\n\t\t\t<VERS vnumber=\"20\"> and the priest is to wave them, the two lambs, along with the bread of the first fruits, as a wave offering before the LORD; they will be holy to the LORD for the priest.</VERS>\n\t\t\t<VERS vnumber=\"21\"> \"'On this very day you must proclaim an assembly; it is to be a holy assembly for you. You must not do any regular work. This is a perpetual statute in all the places where you live throughout your generations.</VERS>\n\t\t\t<VERS vnumber=\"22\"> When you gather in the harvest of your land, you must not completely harvest the corner of your field, and you must not gather up the gleanings of your harvest. You must leave them for the poor and the foreigner. I am the LORD your God.'\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> The LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"24\"> \"Tell the Israelites, 'In the seventh month, on the first day of the month, you must have a complete rest, a memorial announced by loud horn blasts, a holy assembly. </VERS>\n\t\t\t<VERS vnumber=\"25\"> You must not do any regular work, but you must present a gift to the LORD.'\"</VERS>\n\t\t\t<VERS vnumber=\"26\"> The LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"27\"> \"The tenth day of this seventh month is the Day of Atonement. It is to be a holy assembly for you, and you must humble yourselves and present a gift to the LORD. </VERS>\n\t\t\t<VERS vnumber=\"28\"> You must not do any work on this particular day, because it is a day of atonement to make atonement for yourselves before the LORD your God. </VERS>\n\t\t\t<VERS vnumber=\"29\"> Indeed, any person who does not behave with humility on this particular day will be cut off from his people.</VERS>\n\t\t\t<VERS vnumber=\"30\"> As for any person who does any work on this particular day, I will exterminate that person from the midst of his people!</VERS>\n\t\t\t<VERS vnumber=\"31\"> You must not do any work. This is a perpetual statute throughout your generations in all the places where you live. </VERS>\n\t\t\t<VERS vnumber=\"32\"> It is a Sabbath of complete rest for you, and you must humble yourselves on the ninth day of the month in the evening, from evening until evening you must observe your Sabbath.\"</VERS>\n\t\t\t<VERS vnumber=\"33\"> The LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"34\"> \"Tell the Israelites, 'On the fifteenth day of this seventh month is the Festival of Temporary Shelters for seven days to the LORD. </VERS>\n\t\t\t<VERS vnumber=\"35\"> On the first day is a holy assembly; you must do no regular work.</VERS>\n\t\t\t<VERS vnumber=\"36\"> For seven days you must present a gift to the LORD. On the eighth day there is to be a holy assembly for you, and you must present a gift to the LORD. It is a solemn assembly day; you must not do any regular work.</VERS>\n\t\t\t<VERS vnumber=\"37\"> \"'These are the appointed times of the LORD that you must proclaim as holy assemblies to present a gift to the LORD, burnt offering, grain offering, sacrifice, and drink offerings, each day according to its regulation,</VERS>\n\t\t\t<VERS vnumber=\"38\"> besides the Sabbaths of the LORD and all your gifts, votive offerings, and freewill offerings which you must give to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"39\"> \"'On the fifteenth day of the seventh month, when you gather in the produce of the land, you must celebrate a pilgrim festival of the LORD for seven days. On the first day is a complete rest and on the eighth day is complete rest. </VERS>\n\t\t\t<VERS vnumber=\"40\"> On the first day you must take for yourselves branches from majestic trees, palm branches, branches of leafy trees, and willows of the brook, and you must rejoice before the LORD your God for seven days.</VERS>\n\t\t\t<VERS vnumber=\"41\"> You must celebrate it as a pilgrim festival to the LORD for seven days in the year. This is a perpetual statute throughout your generations; you must celebrate it in the seventh month. </VERS>\n\t\t\t<VERS vnumber=\"42\"> You must live in temporary shelters for seven days; every native citizen in Israel must live in temporary shelters, </VERS>\n\t\t\t<VERS vnumber=\"43\"> so that your future generations may know that I made the Israelites live in temporary shelters when I brought them out from the land of Egypt. I am the LORD your God.'\"</VERS>\n\t\t\t<VERS vnumber=\"44\"> So Moses spoke to the Israelites about the appointed times of the LORD.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"24\">\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Command the Israelites to bring to you pure oil of beaten olives for the light, to make a lamp burn continually.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Outside the veil-canopy of the congregation in the Meeting Tent Aaron must arrange it from evening until morning before the LORD continually. This is a perpetual statute throughout your generations.</VERS>\n\t\t\t<VERS vnumber=\"4\"> On the ceremonially pure lampstand he must arrange the lamps before the LORD continually.</VERS>\n\t\t\t<VERS vnumber=\"5\"> \"You must take choice wheat flour and bake twelve loaves; there must be two tenths of an ephah of flour in each loaf, </VERS>\n\t\t\t<VERS vnumber=\"6\"> and you must set them in two rows, six in a row, on the ceremonially pure table before the LORD. </VERS>\n\t\t\t<VERS vnumber=\"7\"> You must put pure frankincense on each row, and it will become a memorial portion for the bread, a gift to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Each Sabbath day Aaron must arrange it before the LORD continually; this portion is from the Israelites as a perpetual covenant. </VERS>\n\t\t\t<VERS vnumber=\"9\"> It will belong to Aaron and his sons, and they must eat it in a holy place because it is most holy to him, a perpetual allotted portion from the gifts of the LORD.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> Now an Israelite woman's son whose father was an Egyptian went out among the Israelites, and the Israelite woman's son and an Israelite man had a fight in the camp.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The Israelite woman's son misused the Name and cursed, so they brought him to Moses. (Now his mother's name was Shelomith daughter of Dibri, of the tribe of Dan.)</VERS>\n\t\t\t<VERS vnumber=\"12\"> So they placed him in custody until they were able to make a clear legal decision for themselves based on words from the mouth of the LORD.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Then the LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"14\"> \"Bring the one who cursed outside the camp, and all who heard him are to lay their hands on his head, and the whole congregation is to stone him to death.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Moreover, you are to tell the Israelites, 'If any man curses his God he will bear responsibility for his sin, </VERS>\n\t\t\t<VERS vnumber=\"16\"> and one who misuses the name of the LORD must surely be put to death. The whole congregation must surely stone him, whether he is a foreigner or a native citizen; when he misuses the Name he must be put to death.</VERS>\n\t\t\t<VERS vnumber=\"17\"> \"'If a man beats any person to death, he must be put to death. </VERS>\n\t\t\t<VERS vnumber=\"18\"> One who beats an animal to death must make restitution for it, life for life.</VERS>\n\t\t\t<VERS vnumber=\"19\"> If a man inflicts an injury on his fellow citizen, just as he has done it must be done to him,</VERS>\n\t\t\t<VERS vnumber=\"20\"> fracture for fracture, eye for eye, tooth for tooth, just as he inflicts an injury on another person that same injury must be inflicted on him.</VERS>\n\t\t\t<VERS vnumber=\"21\"> One who beats an animal to death must make restitution for it, but one who beats a person to death must be put to death. </VERS>\n\t\t\t<VERS vnumber=\"22\"> There will be one regulation for you, whether a foreigner or a native citizen, for I am the LORD your God.'\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> Then Moses spoke to the Israelites and they brought the one who cursed outside the camp and stoned him with stones. So the Israelites did just as the LORD had commanded Moses.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"25\">\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Moses at Mount Sinai:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Speak to the Israelites and tell them, 'When you enter the land that I am giving you, the land must observe a Sabbath to the LORD. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Six years you may sow your field, and six years you may prune your vineyard and gather the produce,</VERS>\n\t\t\t<VERS vnumber=\"4\"> but in the seventh year the land must have a Sabbath of complete rest, a Sabbath to the LORD. You must not sow your field or prune your vineyard.</VERS>\n\t\t\t<VERS vnumber=\"5\"> You must not gather in the aftergrowth of your harvest and you must not pick the grapes of your unpruned vines; the land must have a year of complete rest. </VERS>\n\t\t\t<VERS vnumber=\"6\"> You may have the Sabbath produce of the land to eat, you, your male servant, your female servant, your hired worker, the resident foreigner who stays with you,</VERS>\n\t\t\t<VERS vnumber=\"7\"> your cattle, and the wild animals that are in your land, all its produce will be for you to eat.</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"'You must count off seven weeks of years, seven times seven years, and the days of the seven weeks of years will amount to forty-nine years.</VERS>\n\t\t\t<VERS vnumber=\"9\"> You must sound loud horn blasts, in the seventh month, on the tenth day of the month, on the Day of Atonement, you must sound the horn in your entire land.</VERS>\n\t\t\t<VERS vnumber=\"10\"> So you must consecrate the fiftieth year, and you must proclaim a release in the land for all its inhabitants. That year will be your jubilee; each one of you must return to his property and each one of you must return to his clan. </VERS>\n\t\t\t<VERS vnumber=\"11\"> That fiftieth year will be your jubilee; you must not sow the land, harvest its aftergrowth, or pick the grapes of its unpruned vines.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Because that year is a jubilee, it will be holy to you, you may eat its produce from the field.</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"'In this year of jubilee you must each return to your property. </VERS>\n\t\t\t<VERS vnumber=\"14\"> If you make a sale to your fellow citizen or buy from your fellow citizen, no one is to wrong his brother.</VERS>\n\t\t\t<VERS vnumber=\"15\"> You may buy it from your fellow citizen according to the number of years since the last jubilee; he may sell it to you according to the years of produce that are left.</VERS>\n\t\t\t<VERS vnumber=\"16\"> The more years there are, the more you may make its purchase price, and the fewer years there are, the less you must make its purchase price, because he is only selling to you a number of years of produce. </VERS>\n\t\t\t<VERS vnumber=\"17\"> No one is to oppress his fellow citizen, but you must fear your God, because I am the LORD your God. </VERS>\n\t\t\t<VERS vnumber=\"18\"> You must obey my statutes and my regulations; you must be sure to keep them so that you may live securely in the land.</VERS>\n\t\t\t<VERS vnumber=\"19\"> \"'The land will give its fruit and you may eat until you are satisfied, and you may live securely in the land. </VERS>\n\t\t\t<VERS vnumber=\"20\"> If you say, 'What will we eat in the seventh year if we do not sow and gather our produce?'</VERS>\n\t\t\t<VERS vnumber=\"21\"> I will command my blessing for you in the sixth year so that it may yield the produce for three years, </VERS>\n\t\t\t<VERS vnumber=\"22\"> and you may sow the eighth year and eat from that sixth year's produce, old produce. Until you bring in the ninth year's produce, you may eat old produce.</VERS>\n\t\t\t<VERS vnumber=\"23\"> The land must not be sold without reclaim because the land belongs to me, for you are foreigners and residents with me.</VERS>\n\t\t\t<VERS vnumber=\"24\"> In all your landed property you must provide for the right of redemption of the land.</VERS>\n\t\t\t<VERS vnumber=\"25\"> \"'If your brother becomes impoverished and sells some of his property, his near redeemer is to come to you and redeem what his brother sold.</VERS>\n\t\t\t<VERS vnumber=\"26\"> If a man has no redeemer, but he prospers and gains enough for its redemption,</VERS>\n\t\t\t<VERS vnumber=\"27\"> he is to calculate the value of the years it was sold, refund the balance to the man to whom he had sold it, and return to his property. </VERS>\n\t\t\t<VERS vnumber=\"28\"> If he has not prospered enough to refund a balance to him, then what he sold will belong to the one who bought it until the jubilee year, but it must revert in the jubilee and the original owner may return to his property.</VERS>\n\t\t\t<VERS vnumber=\"29\"> \"'If a man sells a residential house in a walled city, its right of redemption must extend until one full year from its sale; its right of redemption must extend to a full calendar year.</VERS>\n\t\t\t<VERS vnumber=\"30\"> If it is not redeemed before the full calendar year is ended, the house in the walled city will belong without reclaim to the one who bought it throughout his generations; it will not revert in the jubilee. </VERS>\n\t\t\t<VERS vnumber=\"31\"> The houses of villages, however, which have no wall surrounding them must be considered as the field of the land; they will have the right of redemption and must revert in the jubilee. </VERS>\n\t\t\t<VERS vnumber=\"32\"> As for the cities of the Levites, the houses in the cities which they possess, the Levites must have a perpetual right of redemption. </VERS>\n\t\t\t<VERS vnumber=\"33\"> Whatever someone among the Levites might redeem, the sale of a house which is his property in a city, must revert in the jubilee, because the houses of the cities of the Levites are their property in the midst of the Israelites.</VERS>\n\t\t\t<VERS vnumber=\"34\"> Moreover, the open field areas of their cities must not be sold, because that is their perpetual possession.</VERS>\n\t\t\t<VERS vnumber=\"35\"> \"'If your brother becomes impoverished and is indebted to you, you must support him; he must live with you like a foreign resident.</VERS>\n\t\t\t<VERS vnumber=\"36\"> Do not take interest or profit from him, but you must fear your God and your brother must live with you. </VERS>\n\t\t\t<VERS vnumber=\"37\"> You must not lend him your money at interest and you must not sell him food for profit.</VERS>\n\t\t\t<VERS vnumber=\"38\"> I am the LORD your God who brought you out from the land of Egypt to give you the land of Canaan, to be your God.</VERS>\n\t\t\t<VERS vnumber=\"39\"> \"'If your brother becomes impoverished with regard to you so that he sells himself to you, you must not subject him to slave service.</VERS>\n\t\t\t<VERS vnumber=\"40\"> He must be with you as a hired worker, as a resident foreigner; he must serve with you until the year of jubilee, </VERS>\n\t\t\t<VERS vnumber=\"41\"> but then he may go free, he and his children with him, and may return to his family and to the property of his ancestors.</VERS>\n\t\t\t<VERS vnumber=\"42\"> Since they are my servants whom I brought out from the land of Egypt, they must not be sold in a slave sale.</VERS>\n\t\t\t<VERS vnumber=\"43\"> You must not rule over him harshly, but you must fear your God.</VERS>\n\t\t\t<VERS vnumber=\"44\"> \"'As for your male and female slaves who may belong to you, you may buy male and female slaves from the nations all around you.</VERS>\n\t\t\t<VERS vnumber=\"45\"> Also you may buy slaves from the children of the foreigners who reside with you, and from their families that are with you, whom they have fathered in your land, they may become your property. </VERS>\n\t\t\t<VERS vnumber=\"46\"> You may give them as inheritance to your children after you to possess as property. You may enslave them perpetually. However, as for your brothers the Israelites, no man may rule over his brother harshly.</VERS>\n\t\t\t<VERS vnumber=\"47\"> \"'If a resident foreigner who is with you prospers and your brother becomes impoverished with regard to him so that he sells himself to a resident foreigner who is with you or to a member of a foreigner's family, </VERS>\n\t\t\t<VERS vnumber=\"48\"> after he has sold himself he retains a right of redemption. One of his brothers may redeem him, </VERS>\n\t\t\t<VERS vnumber=\"49\"> or his uncle or his cousin may redeem him, or anyone of the rest of his blood relatives, his family, may redeem him, or if he prospers he may redeem himself.</VERS>\n\t\t\t<VERS vnumber=\"50\"> He must calculate with the one who bought him the number of years from the year he sold himself to him until the jubilee year, and the cost of his sale must correspond to the number of years, according to the rate of wages a hired worker would have earned while with him.</VERS>\n\t\t\t<VERS vnumber=\"51\"> If there are still many years, in keeping with them he must refund most of the cost of his purchase for his redemption, </VERS>\n\t\t\t<VERS vnumber=\"52\"> but if only a few years remain until the jubilee, he must calculate for himself in keeping with the remaining years and refund it for his redemption. </VERS>\n\t\t\t<VERS vnumber=\"53\"> He must be with the one who bought him like a yearly hired worker. The one who bought him must not rule over him harshly in your sight. </VERS>\n\t\t\t<VERS vnumber=\"54\"> If, however, he is not redeemed in these ways, he must go free in the jubilee year, he and his children with him, </VERS>\n\t\t\t<VERS vnumber=\"55\"> because the Israelites are my own servants; they are my servants whom I brought out from the land of Egypt. I am the LORD your God.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"26\">\n\t\t\t<VERS vnumber=\"1\"> \"'You must not make for yourselves idols, so you must not set up for yourselves a carved image or a pillar, and you must not place a sculpted stone in your land to bow down before it, for I am the LORD your God. </VERS>\n\t\t\t<VERS vnumber=\"2\"> You must keep my Sabbaths and reverence my sanctuary. I am the LORD.</VERS>\n\t\t\t<VERS vnumber=\"3\"> \"'If you walk in my statutes and are sure to obey my commandments,</VERS>\n\t\t\t<VERS vnumber=\"4\"> I will give you your rains in their time so that the land will give its yield and the trees of the field will produce their fruit.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Threshing season will extend for you until the season for harvesting grapes, and the season for harvesting grapes will extend until sowing season, so you will eat your bread until you are satisfied, and you will live securely in your land. </VERS>\n\t\t\t<VERS vnumber=\"6\"> I will grant peace in the land so that you will lie down to sleep without anyone terrifying you. I will remove harmful animals from the land, and no sword of war will pass through your land. </VERS>\n\t\t\t<VERS vnumber=\"7\"> You will pursue your enemies and they will fall before you by the sword.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Five of you will pursue a hundred, and a hundred of you will pursue ten thousand, and your enemies will fall before you by the sword.</VERS>\n\t\t\t<VERS vnumber=\"9\"> I will turn to you, make you fruitful, multiply you, and maintain my covenant with you. </VERS>\n\t\t\t<VERS vnumber=\"10\"> You will still be eating stored produce from the previous year and will have to clean out what is stored from the previous year to make room for new.</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"'I will put my tabernacle in your midst and I will not abhor you.</VERS>\n\t\t\t<VERS vnumber=\"12\"> I will walk among you, and I will be your God and you will be my people.</VERS>\n\t\t\t<VERS vnumber=\"13\"> I am the LORD your God who brought you out from the land of Egypt, from being their slaves, and I broke the bars of your yoke and caused you to walk upright.</VERS>\n\t\t\t<VERS vnumber=\"14\"> \"'If, however, you do not obey me and keep all these commandments,</VERS>\n\t\t\t<VERS vnumber=\"15\"> if you reject my statutes and abhor my regulations so that you do not keep all my commandments and you break my covenant,</VERS>\n\t\t\t<VERS vnumber=\"16\"> I for my part will do this to you: I will inflict horror on you, consumption and fever, which diminish eyesight and drain away the vitality of life. You will sow your seed in vain because your enemies will eat it.</VERS>\n\t\t\t<VERS vnumber=\"17\"> I will set my face against you. You will be struck down before your enemies, those who hate you will rule over you, and you will flee when there is no one pursuing you.</VERS>\n\t\t\t<VERS vnumber=\"18\"> \"'If, in spite of all these things, you do not obey me, I will discipline you seven times more on account of your sins.</VERS>\n\t\t\t<VERS vnumber=\"19\"> I will break your strong pride and make your sky like iron and your land like bronze.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Your strength will be used up in vain, your land will not give its yield, and the trees of the land will not produce their fruit.</VERS>\n\t\t\t<VERS vnumber=\"21\"> \"'If you walk in hostility against me and are not willing to obey me, I will increase your affliction seven times according to your sins. </VERS>\n\t\t\t<VERS vnumber=\"22\"> I will send the wild animals against you and they will bereave you of your children, annihilate your cattle, and diminish your population so that your roads will become deserted.</VERS>\n\t\t\t<VERS vnumber=\"23\"> \"'If in spite of these things you do not allow yourselves to be disciplined and you walk in hostility against me,</VERS>\n\t\t\t<VERS vnumber=\"24\"> I myself will also walk in hostility against you and strike you seven times on account of your sins. </VERS>\n\t\t\t<VERS vnumber=\"25\"> I will bring on you an avenging sword, a covenant vengeance. Although you will gather together into your cities, I will send pestilence among you and you will be given into enemy hands.</VERS>\n\t\t\t<VERS vnumber=\"26\"> When I break off your supply of bread, ten women will bake your bread in one oven; they will ration your bread by weight, and you will eat and not be satisfied.</VERS>\n\t\t\t<VERS vnumber=\"27\"> \"'If in spite of this you do not obey me but walk in hostility against me,</VERS>\n\t\t\t<VERS vnumber=\"28\"> I will walk in hostile rage against you and I myself will also discipline you seven times on account of your sins. </VERS>\n\t\t\t<VERS vnumber=\"29\"> You will eat the flesh of your sons and the flesh of your daughters.</VERS>\n\t\t\t<VERS vnumber=\"30\"> I will destroy your high places and cut down your incense altars, and I will stack your dead bodies on top of the lifeless bodies of your idols. I will abhor you.</VERS>\n\t\t\t<VERS vnumber=\"31\"> I will lay your cities waste and make your sanctuaries desolate, and I will refuse to smell your soothing aromas. </VERS>\n\t\t\t<VERS vnumber=\"32\"> I myself will make the land desolate and your enemies who live in it will be appalled.</VERS>\n\t\t\t<VERS vnumber=\"33\"> I will scatter you among the nations and unsheathe the sword after you, so your land will become desolate and your cities will become a waste.</VERS>\n\t\t\t<VERS vnumber=\"34\"> \"'Then the land will make up for its Sabbaths all the days it lies desolate while you are in the land of your enemies; then the land will rest and make up its Sabbaths. </VERS>\n\t\t\t<VERS vnumber=\"35\"> All the days of the desolation it will have the rest it did not have on your Sabbaths when you lived on it.</VERS>\n\t\t\t<VERS vnumber=\"36\"> \"'As for the ones who remain among you, I will bring despair into their hearts in the lands of their enemies. The sound of a blowing leaf will pursue them, and they will flee as one who flees the sword and fall down even though there is no pursuer. </VERS>\n\t\t\t<VERS vnumber=\"37\"> They will stumble over each other as those who flee before a sword, though there is no pursuer, and there will be no one to take a stand for you before your enemies. </VERS>\n\t\t\t<VERS vnumber=\"38\"> You will perish among the nations; the land of your enemies will consume you.</VERS>\n\t\t\t<VERS vnumber=\"39\"> \"'As for the ones who remain among you, they will rot away because of their iniquity in the lands of your enemies, and they will also rot away because of their ancestors' iniquities which are with them. </VERS>\n\t\t\t<VERS vnumber=\"40\"> However, when they confess their iniquity and their ancestors' iniquity which they committed by trespassing against me, by which they also walked in hostility against me</VERS>\n\t\t\t<VERS vnumber=\"41\"> (and I myself will walk in hostility against them and bring them into the land of their enemies), and then their uncircumcised hearts become humbled and they make up for their iniquity, </VERS>\n\t\t\t<VERS vnumber=\"42\"> I will remember my covenant with Jacob and also my covenant with Isaac and also my covenant with Abraham, and I will remember the land. </VERS>\n\t\t\t<VERS vnumber=\"43\"> The land will be abandoned by them in order that it may make up for its Sabbaths while it is made desolate without them, and they will make up for their iniquity because they have rejected my regulations and have abhorred my statutes. </VERS>\n\t\t\t<VERS vnumber=\"44\"> In spite of this, however, when they are in the land of their enemies I will not reject them and abhor them to make a complete end of them, to break my covenant with them, for I am the LORD their God.</VERS>\n\t\t\t<VERS vnumber=\"45\"> I will remember for them the covenant with their ancestors whom I brought out from the land of Egypt in the sight of the nations to be their God. I am the LORD.'\"</VERS>\n\t\t\t<VERS vnumber=\"46\"> These are the statutes, regulations, and instructions which the LORD established between himself and the Israelites at Mount Sinai through Moses.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"27\">\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Speak to the Israelites and tell them, 'When a man makes a special votive offering based on the conversion value of persons to the LORD,</VERS>\n\t\t\t<VERS vnumber=\"3\"> the conversion value of the male from twenty years old up to sixty years old is fifty shekels by the standard of the sanctuary shekel.</VERS>\n\t\t\t<VERS vnumber=\"4\"> If the person is a female, the conversion value is thirty shekels.</VERS>\n\t\t\t<VERS vnumber=\"5\"> If the person is from five years old up to twenty years old, the conversion value of the male is twenty shekels, and for the female ten shekels.</VERS>\n\t\t\t<VERS vnumber=\"6\"> If the person is one month old up to five years old, the conversion value of the male is five shekels of silver, and for the female the conversion value is three shekels of silver. </VERS>\n\t\t\t<VERS vnumber=\"7\"> If the person is from sixty years old and older, if he is a male the conversion value is fifteen shekels, and for the female ten shekels.</VERS>\n\t\t\t<VERS vnumber=\"8\"> If he is too poor to pay the conversion value, he must stand the person before the priest and the priest will establish his conversion value; according to what the man who made the vow can afford, the priest will establish his conversion value.</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"'If what is vowed is a kind of animal from which an offering may be presented to the LORD, anything which he gives to the LORD from this kind of animal will be holy. </VERS>\n\t\t\t<VERS vnumber=\"10\"> He must not replace or exchange it, good for bad or bad for good, and if he does indeed exchange one animal for another animal, then both the original animal and its substitute will be holy. </VERS>\n\t\t\t<VERS vnumber=\"11\"> If what is vowed is an unclean animal from which an offering must not be presented to the LORD, then he must stand the animal before the priest,</VERS>\n\t\t\t<VERS vnumber=\"12\"> and the priest will establish its conversion value, whether good or bad. According to the assessed conversion value of the priest, thus it will be. </VERS>\n\t\t\t<VERS vnumber=\"13\"> If, however, the person who made the vow redeems the animal, he must add one fifth to its conversion value.</VERS>\n\t\t\t<VERS vnumber=\"14\"> \"'If a man consecrates his house as holy to the LORD, the priest will establish its conversion value, whether good or bad. Just as the priest establishes its conversion value, thus it will stand.</VERS>\n\t\t\t<VERS vnumber=\"15\"> If the one who consecrates it redeems his house, he must add to it one fifth of its conversion value in silver, and it will belong to him.</VERS>\n\t\t\t<VERS vnumber=\"16\"> \"'If a man consecrates to the LORD some of his own landed property, the conversion value must be calculated in accordance with the amount of seed needed to sow it, a homer of barley seed being priced at fifty shekels of silver.</VERS>\n\t\t\t<VERS vnumber=\"17\"> If he consecrates his field in the jubilee year, the conversion value will stand, </VERS>\n\t\t\t<VERS vnumber=\"18\"> but if he consecrates his field after the jubilee, the priest will calculate the price for him according to the years that are left until the next jubilee year, and it will be deducted from the conversion value. </VERS>\n\t\t\t<VERS vnumber=\"19\"> If, however, the one who consecrated the field redeems it, he must add to it one fifth of the conversion price and it will belong to him.</VERS>\n\t\t\t<VERS vnumber=\"20\"> If he does not redeem the field, but sells the field to someone else, he may never redeem it. </VERS>\n\t\t\t<VERS vnumber=\"21\"> When it reverts in the jubilee, the field will be holy to the LORD like a permanently dedicated field; it will become the priest's property.</VERS>\n\t\t\t<VERS vnumber=\"22\"> \"'If he consecrates to the LORD a field he has purchased, which is not part of his own landed property, </VERS>\n\t\t\t<VERS vnumber=\"23\"> the priest will calculate for him the amount of its conversion value until the jubilee year, and he must pay the conversion value on that jubilee day as something that is holy to the LORD. </VERS>\n\t\t\t<VERS vnumber=\"24\"> In the jubilee year the field will return to the one from whom he bought it, the one to whom it belongs as landed property.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Every conversion value must be calculated by the standard of the sanctuary shekel; twenty gerahs to the shekel.</VERS>\n\t\t\t<VERS vnumber=\"26\"> \"'Surely no man may consecrate a firstborn that already belongs to the LORD as a firstborn among the animals; whether it is an ox or a sheep, it belongs to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"27\"> If, however, it is among the unclean animals, he may ransom it according to its conversion value and must add one fifth to it, but if it is not redeemed it must be sold according to its conversion value.</VERS>\n\t\t\t<VERS vnumber=\"28\"> \"'Surely anything which a man permanently dedicates to the LORD from all that belongs to him, whether from people, animals, or his landed property, must be neither sold nor redeemed; anything permanently dedicated is most holy to the LORD. </VERS>\n\t\t\t<VERS vnumber=\"29\"> Any human being who is permanently dedicated must not be ransomed; such a person must be put to death.</VERS>\n\t\t\t<VERS vnumber=\"30\"> \"'Any tithe of the land, from the grain of the land or from the fruit of the trees, belongs to the LORD; it is holy to the LORD. </VERS>\n\t\t\t<VERS vnumber=\"31\"> If a man redeems part of his tithe, however, he must add one fifth to it.</VERS>\n\t\t\t<VERS vnumber=\"32\"> All the tithe of herd or flock, everything which passes under the rod, the tenth one will be holy to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"33\"> The owner must not examine the animals to distinguish between good and bad, and he must not exchange it. If, however, he does exchange it, both the original animal and its substitute will be holy. It must not be redeemed.'\"</VERS>\n\t\t\t<VERS vnumber=\"34\"> These are the commandments which the LORD commanded Moses to tell the Israelites at Mount Sinai. </VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"4\" bname=\"Numbers\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\">  Now the LORD spoke to Moses in the tent of meeting in the wilderness of Sinai on the first day of the second month of the second year after the Israelites departed from the land of Egypt. He said:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Take a census of the entire Israelite community by their clans and families, counting the name of every individual male.</VERS>\n\t\t\t<VERS vnumber=\"3\"> You and Aaron are to number all in Israel who can serve in the army, those who are twenty years old or older, by their divisions.</VERS>\n\t\t\t<VERS vnumber=\"4\"> And to help you there is to be a man from each tribe, each man the head of his family.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Now these are the names of the men who are to help you: from Reuben, Elizur son of Shedeur;</VERS>\n\t\t\t<VERS vnumber=\"6\"> from Simeon, Shelumiel son of Zurishaddai;</VERS>\n\t\t\t<VERS vnumber=\"7\"> from Judah, Nahshon son of Amminadab;</VERS>\n\t\t\t<VERS vnumber=\"8\"> from Issachar, Nethanel son of Zuar;</VERS>\n\t\t\t<VERS vnumber=\"9\"> from Zebulun, Eliab son of Helon;</VERS>\n\t\t\t<VERS vnumber=\"10\"> from the sons of Joseph: from Ephraim, Elishama son of Ammihud; from Manasseh, Gamaliel son of Pedahzur;</VERS>\n\t\t\t<VERS vnumber=\"11\"> from Benjamin, Abidan son of Gideoni;</VERS>\n\t\t\t<VERS vnumber=\"12\"> from Dan, Ahiezer son of Ammishaddai;</VERS>\n\t\t\t<VERS vnumber=\"13\"> from Asher, Pagiel son of Ocran;</VERS>\n\t\t\t<VERS vnumber=\"14\"> from Gad, Eliasaph son of Deuel;</VERS>\n\t\t\t<VERS vnumber=\"15\"> from Naphtali, Ahira son of Enan.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> These were the ones chosen from the community, leaders of their ancestral tribes. They were the heads of the thousands of Israel.</VERS>\n\t\t\t<VERS vnumber=\"17\"> So Moses and Aaron took these men who had been mentioned specifically by name,</VERS>\n\t\t\t<VERS vnumber=\"18\"> and they assembled the entire community together on the first day of the second month. Then the people recorded their ancestry by their clans and families, and the men who were twenty years old or older were listed by name individually,</VERS>\n\t\t\t<VERS vnumber=\"19\"> just as the LORD had commanded Moses. And so he numbered them in the wilderness of Sinai.</VERS>\n\t\t\t<VERS vnumber=\"20\"> And they were as follows: The descendants of Reuben, the firstborn son of Israel: According to the records of their clans and families, all the males twenty years old or older who could serve in the army were listed by name individually.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Those of them who were numbered from the tribe of Reuben were 46,500.</VERS>\n\t\t\t<VERS vnumber=\"22\"> From the descendants of Simeon: According to the records of their clans and families, all the males numbered of them twenty years old or older who could serve in the army were listed by name individually. </VERS>\n\t\t\t<VERS vnumber=\"23\"> Those of them who were numbered from the tribe of Simeon were 59,300.</VERS>\n\t\t\t<VERS vnumber=\"24\">  From the descendants of Gad: According to the records of their clans and families, all the males twenty years old or older who could serve in the army were listed by name. </VERS>\n\t\t\t<VERS vnumber=\"25\"> Those of them who were numbered from the tribe of Gad were 45,650.</VERS>\n\t\t\t<VERS vnumber=\"26\"> From the descendants of Judah: According to the records of their clans and families, all the males twenty years old or older who could serve in the army were listed by name.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Those of them who were numbered from the tribe of Judah were 74,600.</VERS>\n\t\t\t<VERS vnumber=\"28\"> From the descendants of Issachar: According to the records of their clans and families, all the males twenty years old or older who could serve in the army were listed by name.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Those of them who were numbered from the tribe of Issachar were 54,400.</VERS>\n\t\t\t<VERS vnumber=\"30\"> From the descendants of Zebulun: According to the records of their clans and families, all the males twenty years old or older who could serve in the army were listed by name.</VERS>\n\t\t\t<VERS vnumber=\"31\"> Those of them who were numbered from the tribe of Zebulun were 57,400.</VERS>\n\t\t\t<VERS vnumber=\"32\"> From the sons of Joseph: From the descendants of Ephraim: According to the records of their clans and families, all the males twenty years old or older who could serve in the army were listed by name.</VERS>\n\t\t\t<VERS vnumber=\"33\"> Those of them who were numbered from the tribe of Ephraim were 40,500.</VERS>\n\t\t\t<VERS vnumber=\"34\"> From the descendants of Manasseh: According to the records of their clans and families, all the males twenty years old or older who could serve in the army were listed by name.</VERS>\n\t\t\t<VERS vnumber=\"35\"> Those of them who were numbered from the tribe of Manasseh were 32,200.</VERS>\n\t\t\t<VERS vnumber=\"36\"> From the descendants of Benjamin: According to the records of their clans and families, all the males twenty years old or older who could serve in the army were listed by name.</VERS>\n\t\t\t<VERS vnumber=\"37\"> Those of them who were numbered from the tribe of Benjamin were 35,400.</VERS>\n\t\t\t<VERS vnumber=\"38\"> From the descendants of Dan: According to the records of their clans and families, all the males twenty years old or older who could serve in the army were listed by name.</VERS>\n\t\t\t<VERS vnumber=\"39\"> Those of them who were numbered from the tribe of Dan were 62,700.</VERS>\n\t\t\t<VERS vnumber=\"40\"> From the descendants of Asher: According to the records of their clans and families, all the males twenty years old or older who could serve in the army were listed by name.</VERS>\n\t\t\t<VERS vnumber=\"41\"> Those of them who were numbered from the tribe of Asher were 41,500.</VERS>\n\t\t\t<VERS vnumber=\"42\"> From the descendants of Naphtali: According to the records of their clans and families, all the males twenty years old or older who could serve in the army were listed by name. </VERS>\n\t\t\t<VERS vnumber=\"43\"> Those of them who were numbered from the tribe of Naphtali were 53,400.</VERS>\n\t\t\t<VERS vnumber=\"44\"> These were the men whom Moses and Aaron numbered along with the twelve leaders of Israel, each of whom was from his own family. </VERS>\n\t\t\t<VERS vnumber=\"45\"> All the Israelites who were twenty years old or older, who could serve in Israel's army, were numbered according to their families. </VERS>\n\t\t\t<VERS vnumber=\"46\"> And all those numbered totaled 603,550.</VERS>\n\t\t\t<VERS vnumber=\"47\"> But the Levites, according to the tribe of their fathers, were not numbered among them. </VERS>\n\t\t\t<VERS vnumber=\"48\"> The LORD had said to Moses,</VERS>\n\t\t\t<VERS vnumber=\"49\"> \"Only the tribe of Levi you must not number or count with the other Israelites. </VERS>\n\t\t\t<VERS vnumber=\"50\"> But appoint the Levites over the tabernacle of the testimony, over all its furnishings and over everything in it. They must carry the tabernacle and all its furnishings; and they must attend to it and camp around it.</VERS>\n\t\t\t<VERS vnumber=\"51\"> Whenever the tabernacle is to move, the Levites must take it down, and whenever the tabernacle is to be reassembled, the Levites must set it up. Any unauthorized person who approaches it must be killed.</VERS>\n\t\t\t<VERS vnumber=\"52\"> \"The Israelites will camp according to their divisions, each man in his camp, and each man by his standard.</VERS>\n\t\t\t<VERS vnumber=\"53\"> But the Levites must camp around the tabernacle of the testimony, so that the LORD's anger will not fall on the Israelite community. The Levites are responsible for the care of the tabernacle of the testimony.\"</VERS>\n\t\t\t<VERS vnumber=\"54\"> The Israelites did according to all that the LORD commanded Moses, that is what they did.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\">  The LORD spoke to Moses and to Aaron: </VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Every one of the Israelites must camp under his standard with the emblems of his family; they must camp at some distance around the tent of meeting.</VERS>\n\t\t\t<VERS vnumber=\"3\"> \"Now those who will be camping on the east, toward the sunrise, are the divisions of the camp of Judah under their standard. The leader of the people of Judah is Nahshon son of Amminadab. </VERS>\n\t\t\t<VERS vnumber=\"4\"> Those numbered in his division are 74,600. </VERS>\n\t\t\t<VERS vnumber=\"5\"> Those who will be camping next to them are the tribe of Issachar. The leader of the people of Issachar is Nethanel son of Zuar. </VERS>\n\t\t\t<VERS vnumber=\"6\"> Those numbered in his division are 54,400.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Next will be the tribe of Zebulun. The leader of the people of Zebulun is Eliab son of Helon. </VERS>\n\t\t\t<VERS vnumber=\"8\"> Those numbered in his division are 57,400.</VERS>\n\t\t\t<VERS vnumber=\"9\"> All those numbered of the camp of Judah, according to their divisions, are 186,400. They will travel at the front.</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"On the south will be the divisions of the camp of Reuben under their standard. The leader of the people of Reuben is Elizur son of Shedeur. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Those numbered in his division are 46,500.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Those who will be camping next to them are the tribe of Simeon. The leader of the people of Simeon is Shelumiel son of Zurishaddai.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Those numbered in his division are 59,300.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Next will be the tribe of Gad. The leader of the people of Gad is Eliasaph son of Deuel.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Those numbered in his division are 45,650.</VERS>\n\t\t\t<VERS vnumber=\"16\"> All those numbered of the camp of Reuben, according to their divisions, are 151,450. They will travel second.</VERS>\n\t\t\t<VERS vnumber=\"17\"> \"Then the tent of meeting with the camp of the Levites will travel in the middle of the camps. They will travel in the same order as they camped, each in his own place under his standard.</VERS>\n\t\t\t<VERS vnumber=\"18\"> \"On the west will be the divisions of the camp of Ephraim under their standard. The leader of the people of Ephraim is Elishama son of Amihud.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Those numbered in his division are 40,500.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Next to them will be the tribe of Manasseh. The leader of the people of Manasseh is Gamaliel son of Pedahzur.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Those numbered in his division are 32,200.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Next will be the tribe of Benjamin. The leader of the people of Benjamin is Abidan son of Gideoni. </VERS>\n\t\t\t<VERS vnumber=\"23\"> Those numbered in his division are 35,400.</VERS>\n\t\t\t<VERS vnumber=\"24\"> All those numbered of the camp of Ephraim, according to their divisions, are 108,100. They will travel third.</VERS>\n\t\t\t<VERS vnumber=\"25\"> \"On the north will be the divisions of the camp of Dan, under their standards. The leader of the people of Dan is Ahiezer son of Ammishaddai.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Those numbered in his division are 62,700.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Those who will be camping next to them are the tribe of Asher. The leader of the people of Asher is Pagiel son of Ocran.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Those numbered in his division are 41,500.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Next will be the tribe of Naphtali. The leader of the people of Naphtali is Ahira son of Enan. </VERS>\n\t\t\t<VERS vnumber=\"30\"> Those numbered in his division are 53,400.</VERS>\n\t\t\t<VERS vnumber=\"31\"> All those numbered of the camp of Dan are 157,600. They will travel last, under their standards.\"</VERS>\n\t\t\t<VERS vnumber=\"32\"> These are the Israelites, numbered according to their families. All those numbered in the camps, by their divisions, are 603,550. </VERS>\n\t\t\t<VERS vnumber=\"33\"> But the Levites were not numbered among the other Israelites, as the LORD commanded Moses.</VERS>\n\t\t\t<VERS vnumber=\"34\"> So the Israelites did according to all that the LORD commanded Moses; that is the way they camped under their standards, and that is the way they traveled, each with his clan and family.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\">  Now these are the records of Aaron and Moses when the LORD spoke with Moses on Mount Sinai. </VERS>\n\t\t\t<VERS vnumber=\"2\"> These are the names of the sons of Aaron: Nadab, the firstborn, and Abihu, Eleazar, and Ithamar.</VERS>\n\t\t\t<VERS vnumber=\"3\"> These are the names of the sons of Aaron, the anointed priests, whom he consecrated to minister as priests.</VERS>\n\t\t\t<VERS vnumber=\"4\"> 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. So Eleazar and Ithamar ministered as priests in the presence of Aaron their father.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"Bring the tribe of Levi near, and present them before Aaron the priest, that they may serve him.</VERS>\n\t\t\t<VERS vnumber=\"7\"> They are responsible for his needs and the needs of the whole community before the tent of meeting, by attending to the service of the tabernacle. </VERS>\n\t\t\t<VERS vnumber=\"8\"> And they are responsible for all the furnishings of the tent of meeting, and for the needs of the Israelites, as they serve in the tabernacle. </VERS>\n\t\t\t<VERS vnumber=\"9\"> You are to assign the Levites to Aaron and his sons; they will be assigned exclusively to him out of all the Israelites. </VERS>\n\t\t\t<VERS vnumber=\"10\"> So you are to appoint Aaron and his sons, and they will be responsible for their priesthood; but the unauthorized person who comes near must be put to death.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> Then the LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"12\"> \"Look, I myself have taken the Levites from among the Israelites instead of every firstborn who opens the womb among the Israelites. So the Levites belong to me, </VERS>\n\t\t\t<VERS vnumber=\"13\"> because all the firstborn are mine. When I destroyed all the firstborn in the land of Egypt, I set apart for myself all the firstborn in Israel, both man and beast. They belong to me. I am the LORD.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> Then the LORD spoke to Moses in the wilderness of Sinai:</VERS>\n\t\t\t<VERS vnumber=\"15\"> \"Number the Levites by their clans and their families; every male from a month old and upward you are to number.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> So Moses numbered them according to the word of the LORD, just as he had been commanded.</VERS>\n\t\t\t<VERS vnumber=\"17\"> These were the sons of Levi by their names: Gershon, Kohath, and Merari.</VERS>\n\t\t\t<VERS vnumber=\"18\"> These are the names of the sons of Gershon by their families: Libni and Shimei.</VERS>\n\t\t\t<VERS vnumber=\"19\"> The sons of Kohath by their families were: Amram, Izhar, Hebron, and Uzziel.</VERS>\n\t\t\t<VERS vnumber=\"20\"> The sons of Merari by their families were Mahli and Mushi. These are the families of the Levites by their clans.</VERS>\n\t\t\t<VERS vnumber=\"21\"> From Gershon came the family of the Libnites and the family of the Shimeites; these were the families of the Gershonites.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Those of them who were numbered, counting every male from a month old and upward, were 7,500.</VERS>\n\t\t\t<VERS vnumber=\"23\"> The families of the Gershonites were to camp behind the tabernacle toward the west.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Now the leader of the clan of the Gershonites was Eliasaph son of Lael.</VERS>\n\t\t\t<VERS vnumber=\"25\"> And the responsibilities of the Gershonites in the tent of meeting included the tabernacle, the tent with its covering, the curtain at the entrance of the tent of meeting, </VERS>\n\t\t\t<VERS vnumber=\"26\"> the hangings of the courtyard, the curtain at the entrance to the courtyard that surrounded the tabernacle and the altar, and their ropes, plus all the service connected with these things.</VERS>\n\t\t\t<VERS vnumber=\"27\"> From Kohath came the family of the Amramites, the family of the Izharites, the family of the Hebronites, and the family of the Uzzielites; these were the families of the Kohathites.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Counting every male from a month old and upward, there were 8,600. They were responsible for the care of the sanctuary. </VERS>\n\t\t\t<VERS vnumber=\"29\"> The families of the Kohathites were to camp on the south side of the tabernacle.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Now the leader of the clan of the families of the Kohathites was Elizaphan son of Uzziel.</VERS>\n\t\t\t<VERS vnumber=\"31\"> Their responsibilities included the ark, the table, the lampstand, the altars, and the utensils of the sanctuary with which they ministered, the curtain, and all their service.</VERS>\n\t\t\t<VERS vnumber=\"32\"> Now the head of all the Levitical leaders was Eleazar son of Aaron the priest. He was appointed over those who were responsible for the sanctuary.</VERS>\n\t\t\t<VERS vnumber=\"33\"> From Merari came the family of the Mahlites and the family of the Mushites; these were the families of Merari. </VERS>\n\t\t\t<VERS vnumber=\"34\"> Those of them who were numbered, counting every male from a month old and upward, were 6,200.</VERS>\n\t\t\t<VERS vnumber=\"35\"> Now the leader of the clan of the families of Merari was Zuriel son of Abihail. These were to camp on the north side of the tabernacle.</VERS>\n\t\t\t<VERS vnumber=\"36\"> The appointed responsibilities of the Merarites included the frames of the tabernacle, its crossbars, its posts, its sockets, its utensils, plus all the service connected with these things,</VERS>\n\t\t\t<VERS vnumber=\"37\"> and the pillars of the courtyard all around, with their sockets, their pegs, and their ropes.</VERS>\n\t\t\t<VERS vnumber=\"38\"> But those who were to camp in front of the tabernacle on the east, in front of the tent of meeting, were Moses, Aaron, and his sons. They were responsible for the needs of the sanctuary and for the needs of the Israelites, but the unauthorized person who approached was to be put to death. </VERS>\n\t\t\t<VERS vnumber=\"39\"> All who were numbered of the Levites, whom Moses and Aaron numbered by the word of the LORD, according to their families, every male from a month old and upward, were 22,000.</VERS>\n\t\t\t<VERS vnumber=\"40\"> Then the LORD said to Moses, \"Number all the firstborn males of the Israelites from a month old and upward, and take the number of their names. </VERS>\n\t\t\t<VERS vnumber=\"41\"> And take the Levites for me, I am the LORD, instead of all the firstborn males among the Israelites, and the livestock of the Levites instead of all the firstborn of the livestock of the Israelites.\"</VERS>\n\t\t\t<VERS vnumber=\"42\"> So Moses numbered all the firstborn males among the Israelites, as the LORD had commanded him.</VERS>\n\t\t\t<VERS vnumber=\"43\"> And all the firstborn males, by the number of the names from a month old and upward, totaled 22,273.</VERS>\n\t\t\t<VERS vnumber=\"44\"> Then the LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"45\"> \"Take the Levites instead of all the firstborn males among the Israelites, and the livestock of the Levites instead of their livestock. And the Levites will be mine. I am the LORD.</VERS>\n\t\t\t<VERS vnumber=\"46\"> And for the redemption of the 273 firstborn males of the Israelites who exceed the number of the Levites,</VERS>\n\t\t\t<VERS vnumber=\"47\"> collect five shekels for each one individually; you are to collect this amount in the currency of the sanctuary shekel (this shekel is twenty gerahs).</VERS>\n\t\t\t<VERS vnumber=\"48\"> And give the money for the redemption of the excess number of them to Aaron and his sons.\"</VERS>\n\t\t\t<VERS vnumber=\"49\"> So Moses took the redemption money from those who were in excess of those redeemed by the Levites. </VERS>\n\t\t\t<VERS vnumber=\"50\"> From the firstborn males of the Israelites he collected the money, 1,365 shekels, according to the sanctuary shekel.</VERS>\n\t\t\t<VERS vnumber=\"51\"> Moses gave the redemption money to Aaron and his sons, according to the word of the LORD, as the LORD had commanded Moses.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\">  Then the LORD spoke to Moses and Aaron: </VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Take a census of the Kohathites from among the Levites, by their families and by their clans, </VERS>\n\t\t\t<VERS vnumber=\"3\"> from thirty years old and upward to fifty years old, all who enter the company to do the work in the tent of meeting. </VERS>\n\t\t\t<VERS vnumber=\"4\"> This is the service of the Kohathites in the tent of meeting, relating to the most holy things.</VERS>\n\t\t\t<VERS vnumber=\"5\"> When it is time for the camp to journey, Aaron and his sons must come and take down the screening curtain and cover the ark of the testimony with it.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Then they must put over it a covering of fine leather and spread over that a cloth entirely of blue, and then they must insert its poles.</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"On the table of the presence they must spread a blue cloth, and put on it the dishes, the pans, the bowls, and the pitchers for pouring, and the Bread of the Presence must be on it continually. </VERS>\n\t\t\t<VERS vnumber=\"8\"> They must spread over them a scarlet cloth, and cover the same with a covering of fine leather; and they must insert its poles.</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"They must take a blue cloth and cover the lampstand of the light, with its lamps, its wick-trimmers, its trays, and all its oil vessels, with which they service it.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Then they must put it with all its utensils in a covering of fine leather, and put it on a carrying beam.</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"They must spread a blue cloth on the gold altar, and cover it with a covering of fine leather; and they must insert its poles.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Then they must take all the utensils of the service, with which they serve in the sanctuary, put them in a blue cloth, cover them with a covering of fine leather, and put them on a carrying beam.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Also, they must take away the ashes from the altar and spread a purple cloth over it. </VERS>\n\t\t\t<VERS vnumber=\"14\"> Then they must place on it all its implements with which they serve there, the trays, the meat forks, the shovels, the basins, and all the utensils of the altar, and they must spread on it a covering of fine leather, and then insert its poles.</VERS>\n\t\t\t<VERS vnumber=\"15\"> \"When Aaron and his sons have finished covering the sanctuary and all the furnishings of the sanctuary, when the camp is ready to journey, then the Kohathites will come to carry them; but they must not touch any holy thing, or they will die. These are the responsibilities of the Kohathites with the tent of meeting.</VERS>\n\t\t\t<VERS vnumber=\"16\"> \"The appointed responsibility of Eleazar son of Aaron the priest is for the oil for the light, and the spiced incense, and the daily grain offering, and the anointing oil; he also has the appointed responsibility over all the tabernacle with all that is in it, over the sanctuary and over all its furnishings.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> Then the LORD spoke to Moses and Aaron:</VERS>\n\t\t\t<VERS vnumber=\"18\"> \"Do not allow the tribe of the families of the Kohathites to be cut off from among the Levites; </VERS>\n\t\t\t<VERS vnumber=\"19\"> but in order that they will live and not die when they approach the most holy things, do this for them: Aaron and his sons will go in and appoint each man to his service and his responsibility. </VERS>\n\t\t\t<VERS vnumber=\"20\"> But the Kohathites are not to go in to watch while the holy things are being covered, or they will die.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> Then the LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"22\"> \"Also take a census of the Gershonites, by their clans and by their families.</VERS>\n\t\t\t<VERS vnumber=\"23\"> You must number them from thirty years old and upward to fifty years old, all who enter the company to do the work of the tent of meeting.</VERS>\n\t\t\t<VERS vnumber=\"24\"> This is the service of the families of Gershonites, as they serve and carry it. </VERS>\n\t\t\t<VERS vnumber=\"25\"> They must carry the curtains for the tabernacle and the tent of meeting with its covering, the covering of fine leather that is over it, the curtains for the entrance of the tent of meeting,</VERS>\n\t\t\t<VERS vnumber=\"26\"> the hangings for the courtyard, the curtain for the entrance of the gate of the court, which is around the tabernacle and the altar, and their ropes, along with all the furnishings for their service and everything that is made for them. So they are to serve.</VERS>\n\t\t\t<VERS vnumber=\"27\"> \"All the service of the Gershonites, whether carrying loads or for any of their work, will be at the direction of Aaron and his sons. You will assign them all their tasks as their responsibility. </VERS>\n\t\t\t<VERS vnumber=\"28\"> This is the service of the families of the Gershonites concerning the tent of meeting. Their responsibilities will be under the authority of Ithamar son of Aaron the priest.</VERS>\n\t\t\t<VERS vnumber=\"29\"> \"As for the sons of Merari, you are to number them by their families and by their clans.</VERS>\n\t\t\t<VERS vnumber=\"30\"> You must number them from thirty years old and upward to fifty years old, all who enter the company to do the work of the tent of meeting.</VERS>\n\t\t\t<VERS vnumber=\"31\"> This is what they are responsible to carry as their entire service in the tent of meeting: the frames of the tabernacle, its crossbars, its posts, its sockets, </VERS>\n\t\t\t<VERS vnumber=\"32\"> and the posts of the surrounding courtyard with their sockets, tent pegs, and ropes, along with all their furnishings and everything for their service. You are to assign by names the items that each man is responsible to carry.</VERS>\n\t\t\t<VERS vnumber=\"33\"> This is the service of the families of the Merarites, their entire service concerning the tent of meeting, under the authority of Ithamar son of Aaron the priest.\"</VERS>\n\t\t\t<VERS vnumber=\"34\"> So Moses and Aaron and the leaders of the community numbered the Kohathites by their families and by clans,</VERS>\n\t\t\t<VERS vnumber=\"35\"> from thirty years old and upward to fifty years old, everyone who entered the company for the work in the tent of meeting;</VERS>\n\t\t\t<VERS vnumber=\"36\"> and those of them numbered by their families were 2,750.</VERS>\n\t\t\t<VERS vnumber=\"37\"> These were those numbered from the families of the Kohathites, everyone who served in the tent of meeting, whom Moses and Aaron numbered according to the word of the LORD by the authority of Moses.</VERS>\n\t\t\t<VERS vnumber=\"38\"> Those numbered from the Gershonites, by their families and by their clans,</VERS>\n\t\t\t<VERS vnumber=\"39\"> from thirty years old and upward to fifty years old, everyone who entered the company for the work in the tent of meeting,</VERS>\n\t\t\t<VERS vnumber=\"40\"> those of them numbered by their families, by their clans, were 2,630.</VERS>\n\t\t\t<VERS vnumber=\"41\"> These were those numbered from the families of the Gershonites, everyone who served in the tent of meeting, whom Moses and Aaron numbered according to the word of the LORD.</VERS>\n\t\t\t<VERS vnumber=\"42\"> Those numbered from the families of the Merarites, by their families, by their clans,</VERS>\n\t\t\t<VERS vnumber=\"43\"> from thirty years old and upward to fifty years old, everyone who entered the company for the work in the tent of meeting,</VERS>\n\t\t\t<VERS vnumber=\"44\"> those of them numbered by their families were 3,200.</VERS>\n\t\t\t<VERS vnumber=\"45\"> These are those numbered from the families of the Merarites, whom Moses and Aaron numbered according to the word of the LORD by the authority of Moses.</VERS>\n\t\t\t<VERS vnumber=\"46\"> All who were numbered of the Levites, whom Moses, Aaron, and the leaders of Israel numbered by their families and by their clans,</VERS>\n\t\t\t<VERS vnumber=\"47\"> from thirty years old and upward to fifty years old, everyone who entered to do the work of service and the work of carrying relating to the tent of meeting,</VERS>\n\t\t\t<VERS vnumber=\"48\"> those of them numbered were 8,580.</VERS>\n\t\t\t<VERS vnumber=\"49\"> According to the word of the LORD they were numbered, by the authority of Moses, each according to his service and according to what he was to carry. Thus were they numbered by him, as the LORD had commanded Moses.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"5\">\n\t\t\t<VERS vnumber=\"1\">  Then the LORD spoke to Moses: </VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Command the Israelites to expel from the camp every leper, everyone who has a discharge, and whoever becomes defiled by a corpse.</VERS>\n\t\t\t<VERS vnumber=\"3\"> You must expel both men and women; you must put them outside the camp, so that they will not defile their camps, among which I live.\" </VERS>\n\t\t\t<VERS vnumber=\"4\"> So the Israelites did so, and expelled them outside the camp. As the LORD had spoken to Moses, so the Israelites did.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Then the LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"Tell the Israelites, 'When a man or a woman commits any sin that people commit, thereby breaking faith with the LORD, and that person is found guilty,</VERS>\n\t\t\t<VERS vnumber=\"7\"> then he must confess his sin that he has committed and must make full reparation, add one fifth to it, and give it to whomever he wronged.</VERS>\n\t\t\t<VERS vnumber=\"8\"> But if the individual has no close relative to whom reparation can be made for the wrong, the reparation for the wrong must be paid to the LORD for the priest, in addition to the ram of atonement by which atonement is made for him. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Every offering of all the Israelites' holy things that they bring to the priest will be his. </VERS>\n\t\t\t<VERS vnumber=\"10\"> Every man's holy things will be his; whatever any man gives the priest will be his.'\"</VERS>\n\t\t\t<VERS vnumber=\"11\">  The LORD spoke to Moses: </VERS>\n\t\t\t<VERS vnumber=\"12\"> \"Speak to the Israelites and tell them, 'If any man's wife goes astray and behaves unfaithfully toward him,</VERS>\n\t\t\t<VERS vnumber=\"13\"> and a man has sexual relations with her without her husband knowing it, and it is hidden that she has defiled herself, since there was no witness against her, nor was she caught,</VERS>\n\t\t\t<VERS vnumber=\"14\"> and if jealous feelings come over him and he becomes suspicious of his wife, when she is defiled; or if jealous feelings come over him and he becomes suspicious of his wife, when she is not defiled,</VERS>\n\t\t\t<VERS vnumber=\"15\"> then the man must bring his wife to the priest, and he must bring the offering required for her, one tenth of an ephah of barley meal; he must not pour olive oil on it or put frankincense on it, because it is a grain offering of suspicion, a grain offering for remembering, for bringing iniquity to remembrance.</VERS>\n\t\t\t<VERS vnumber=\"16\"> \"'Then the priest will bring her near and have her stand before the LORD. </VERS>\n\t\t\t<VERS vnumber=\"17\"> The priest will then take holy water in a pottery jar, and take some of the dust that is on the floor of the tabernacle, and put it into the water. </VERS>\n\t\t\t<VERS vnumber=\"18\"> Then the priest will have the woman stand before the LORD, uncover the woman's head, and put the grain offering for remembering in her hands, which is the grain offering of suspicion. The priest will hold in his hand the bitter water that brings a curse.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Then the priest will put the woman under oath and say to the her, \"If no other man has had sexual relations with you, and if you have not gone astray and become defiled while under your husband's authority, may you be free from this bitter water that brings a curse.</VERS>\n\t\t\t<VERS vnumber=\"20\"> But if you have gone astray while under your husband's authority, and if you have defiled yourself and some man other than your husband has had sexual relations with you,.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> Then the priest will put the woman under the oath of the curse and will say to the her, \"The LORD make you an attested curse among your people, if the LORD makes your thigh fall away and your abdomen swell;</VERS>\n\t\t\t<VERS vnumber=\"22\"> and this water that causes the curse will go into your stomach, and make your abdomen swell and your thigh rot.\" Then the woman must say, \"Amen, amen.\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> \"'Then the priest will write these curses on a scroll and then scrape them off into the bitter water.</VERS>\n\t\t\t<VERS vnumber=\"24\"> He will make the woman drink the bitter water that brings a curse, and the water that brings a curse will enter her to produce bitterness.</VERS>\n\t\t\t<VERS vnumber=\"25\"> The priest will take the grain offering of suspicion from the woman's hand, wave the grain offering before the LORD, and bring it to the altar.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Then the priest will take a handful of the grain offering as its memorial portion, burn it on the altar, and afterward make the woman drink the water.</VERS>\n\t\t\t<VERS vnumber=\"27\"> When he has made her drink the water, then, if she has defiled herself and behaved unfaithfully toward her husband, the water that brings a curse will enter her to produce bitterness, her abdomen will swell, her thigh will fall away, and the woman will become a curse among her people.</VERS>\n\t\t\t<VERS vnumber=\"28\"> But if the woman has not defiled herself, and is clean, then she will be free of ill effects and will be able to bear children.</VERS>\n\t\t\t<VERS vnumber=\"29\"> \"'This is the law for cases of jealousy, when a wife, while under her husband's authority, goes astray and defiles herself, </VERS>\n\t\t\t<VERS vnumber=\"30\"> or when jealous feelings come over a man and he becomes suspicious of his wife; then he must have the woman stand before the LORD, and the priest will carry out all this law upon her.</VERS>\n\t\t\t<VERS vnumber=\"31\"> Then the man will be free from iniquity, but that woman will bear the consequences of her iniquity.'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"6\">\n\t\t\t<VERS vnumber=\"1\">  Then the LORD spoke to Moses: </VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Speak to the Israelites, and tell them, 'When either a man or a woman takes a special vow, to take a vow as a Nazirite, to separate himself to the LORD, </VERS>\n\t\t\t<VERS vnumber=\"3\"> he must separate himself from wine and strong drink, he must drink neither vinegar made from wine nor vinegar made from strong drink, nor may he drink any juice of grapes, nor eat fresh grapes or raisins.</VERS>\n\t\t\t<VERS vnumber=\"4\"> All the days of his separation he must not eat anything that is produced by the grapevine, from seed to skin.</VERS>\n\t\t\t<VERS vnumber=\"5\"> \"'All the days of the vow of his separation no razor may be used on his head until the time is fulfilled for which he separated himself to the LORD. He will be holy, and he must let the locks of hair on his head grow long.</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"'All the days that he separates himself to the LORD he must not contact a dead body.</VERS>\n\t\t\t<VERS vnumber=\"7\"> He must not defile himself even for his father or his mother or his brother or his sister if they die, because the separation for his God is on his head. </VERS>\n\t\t\t<VERS vnumber=\"8\"> All the days of his separation he must be holy to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"'If anyone dies very suddenly beside him and he defiles his consecrated head, then he must shave his head on the day of his purification, on the seventh day he must shave it.</VERS>\n\t\t\t<VERS vnumber=\"10\"> On the eighth day he is to bring two turtledoves or two young pigeons to the priest, to the entrance to the tent of meeting. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Then the priest will offer one for a purification offering and the other as a burnt offering, and make atonement for him, because of his transgression in regard to the corpse. So he must reconsecrate his head on that day.</VERS>\n\t\t\t<VERS vnumber=\"12\"> He must rededicate to the LORD the days of his separation and bring a male lamb in its first year as a reparation offering, but the former days will not be counted because his separation was defiled.</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"'Now this is the law of the Nazirite: When the days of his separation are fulfilled, he must be brought to the entrance of the tent of meeting, </VERS>\n\t\t\t<VERS vnumber=\"14\"> and he must present his offering to the LORD: one male lamb in its first year without blemish for a burnt offering, one ewe lamb in its first year without blemish for a purification offering, one ram without blemish for a peace offering,</VERS>\n\t\t\t<VERS vnumber=\"15\"> and a basket of bread made without yeast, cakes of fine flour mixed with olive oil, wafers made without yeast and smeared with olive oil, and their grain offering and their drink offerings.</VERS>\n\t\t\t<VERS vnumber=\"16\"> \"'Then the priest must present all these before the LORD and offer his purification offering and his burnt offering. </VERS>\n\t\t\t<VERS vnumber=\"17\"> Then he must offer the ram as a peace offering to the LORD, with the basket of bread made without yeast; the priest must also offer his grain offering and his drink offering.</VERS>\n\t\t\t<VERS vnumber=\"18\"> \"'Then the Nazirite must shave his consecrated head at the entrance to the tent of meeting and must take the hair from his consecrated head and put it on the fire where the peace offering is burning.</VERS>\n\t\t\t<VERS vnumber=\"19\"> And the priest must take the boiled shoulder of the ram, one cake made without yeast from the basket, and one wafer made without yeast, and put them on the hands of the Nazirite after he has shaved his consecrated head;</VERS>\n\t\t\t<VERS vnumber=\"20\"> then the priest must wave them as a wave offering before the LORD; it is a holy portion for the priest, together with the breast of the wave offering and the thigh of the raised offering. After this the Nazirite may drink wine.'</VERS>\n\t\t\t<VERS vnumber=\"21\"> \"This is the law of the Nazirite who vows to the LORD his offering according to his separation, as well as whatever else he can provide. Thus he must fulfill his vow that he makes, according to the law of his separation.\"</VERS>\n\t\t\t<VERS vnumber=\"22\">  The LORD spoke to Moses: </VERS>\n\t\t\t<VERS vnumber=\"23\"> \"Tell Aaron and his sons, 'This is the way you are to bless the Israelites. Say to them:</VERS>\n\t\t\t<VERS vnumber=\"24\"> \"The LORD bless you and protect you;</VERS>\n\t\t\t<VERS vnumber=\"25\"> The LORD make his face to shine upon you, and be gracious to you;</VERS>\n\t\t\t<VERS vnumber=\"26\"> The LORD lift up his countenance upon you and give you peace.\"'</VERS>\n\t\t\t<VERS vnumber=\"27\"> So they will put my name on the Israelites, and I will bless them.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"7\">\n\t\t\t<VERS vnumber=\"1\">  When Moses had completed setting up the tabernacle, he anointed it and consecrated it and all its furnishings, and he anointed and consecrated the altar and all its utensils. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Then the leaders of Israel, the heads of their clans, made an offering. They were the leaders of the tribes; they were the ones who had been supervising the numbering. </VERS>\n\t\t\t<VERS vnumber=\"3\"> They brought their offering before the LORD, six covered carts and twelve oxen, one cart for every two of the leaders, and an ox for each one; and they presented them in front of the tabernacle.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Then the LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"5\"> \"Receive these gifts from them, that they may be used in doing the work of the tent of meeting; and you must give them to the Levites, to every man as his service requires.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> So Moses accepted the carts and the oxen and gave them to the Levites.</VERS>\n\t\t\t<VERS vnumber=\"7\"> He gave two carts and four oxen to the Gershonites, as their service required;</VERS>\n\t\t\t<VERS vnumber=\"8\"> and he gave four carts and eight oxen to the Merarites, as their service required, under the authority of Ithamar son of Aaron the priest. </VERS>\n\t\t\t<VERS vnumber=\"9\"> But to the Kohathites he gave none, because the service of the holy things, which they carried on their shoulders, was their responsibility.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The leaders offered gifts for the dedication of the altar when it was anointed. And the leaders presented their offering before the altar.</VERS>\n\t\t\t<VERS vnumber=\"11\"> For the LORD said to Moses, \"They must present their offering, one leader for each day, for the dedication of the altar.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> The one who presented his offering on the first day was Nahshon son of Amminadab, from the tribe of Judah.</VERS>\n\t\t\t<VERS vnumber=\"13\"> His offering was one silver platter weighing 130 shekels, and one silver sprinkling bowl weighing 70 shekels, both according to the sanctuary shekel, each of them full of fine flour mixed with olive oil as a grain offering; </VERS>\n\t\t\t<VERS vnumber=\"14\"> one gold pan weighing 10 shekels, full of incense;</VERS>\n\t\t\t<VERS vnumber=\"15\"> one young bull, one ram, and one male lamb in its first year, for a burnt offering;</VERS>\n\t\t\t<VERS vnumber=\"16\"> one male goat for a purification offering;</VERS>\n\t\t\t<VERS vnumber=\"17\"> and for the sacrifice of peace offerings: two bulls, five rams, five male goats, and five male lambs in their first year. This was the offering of Nahshon son of Amminadab.</VERS>\n\t\t\t<VERS vnumber=\"18\"> On the second day Nethanel son of Zuar, leader of Issachar, presented an offering.</VERS>\n\t\t\t<VERS vnumber=\"19\"> He offered for his offering one silver platter weighing 130 shekels and one silver sprinkling bowl weighing 70, both according to the sanctuary shekel, each of them full of fine flour mixed with olive oil as a grain offering;</VERS>\n\t\t\t<VERS vnumber=\"20\"> one gold pan weighing 10 shekels, full of incense;</VERS>\n\t\t\t<VERS vnumber=\"21\"> one young bull, one ram, and one male lamb in its first year, for a burnt offering;</VERS>\n\t\t\t<VERS vnumber=\"22\"> one male goat for a purification offering;</VERS>\n\t\t\t<VERS vnumber=\"23\"> and for the sacrifice of peace offerings: two bulls, five rams, five male goats, and five male lambs in their first year. This was the offering of Nethanel son of Zuar.</VERS>\n\t\t\t<VERS vnumber=\"24\"> On the third day Eliab son of Helon, leader of the Zebulunites, presented an offering.</VERS>\n\t\t\t<VERS vnumber=\"25\"> His offering was one silver platter weighing 130 shekels and one silver sprinkling bowl weighing 70 shekels, both according to the sanctuary shekel, each of them full of fine flour mixed with olive oil as a grain offering;</VERS>\n\t\t\t<VERS vnumber=\"26\"> one gold pan weighing 10 shekels, full of incense;</VERS>\n\t\t\t<VERS vnumber=\"27\"> one young bull, one ram, and one male lamb in its first year, for a burnt offering;</VERS>\n\t\t\t<VERS vnumber=\"28\"> one male goat for a purification offering;</VERS>\n\t\t\t<VERS vnumber=\"29\"> and for the sacrifice of peace offerings: two bulls, five rams, five male goats, and five male lambs in their first year. This was the offering of Eliab son of Helon.</VERS>\n\t\t\t<VERS vnumber=\"30\"> On the fourth day Elizur son of Shedeur, leader of the Reubenites, presented an offering.</VERS>\n\t\t\t<VERS vnumber=\"31\"> His offering was one silver platter weighing 130 shekels and one silver sprinkling bowl weighing 70 shekels, both according to the sanctuary shekel, each of them full of fine flour mixed with olive oil as a grain offering;</VERS>\n\t\t\t<VERS vnumber=\"32\"> one gold pan weighing 10 shekels, full of incense;</VERS>\n\t\t\t<VERS vnumber=\"33\"> one young bull, one ram, and one male lamb in its first year, for a burnt offering;</VERS>\n\t\t\t<VERS vnumber=\"34\"> one male goat for a purification offering;</VERS>\n\t\t\t<VERS vnumber=\"35\"> and for the sacrifice of peace offerings: two bulls, five rams, five male goats, and five lambs in their first year. This was the offering of Elizur son of Shedeur.</VERS>\n\t\t\t<VERS vnumber=\"36\"> On the fifth day Shelumiel son of Zurishaddai, leader of the Simeonites, presented an offering.</VERS>\n\t\t\t<VERS vnumber=\"37\"> His offering was one silver platter weighing 130 shekels and one silver sprinkling bowl weighing 70 shekels, both according to the sanctuary shekel, each of them full of fine flour mixed with olive oil as a grain offering;</VERS>\n\t\t\t<VERS vnumber=\"38\"> one gold pan weighing 10 shekels;</VERS>\n\t\t\t<VERS vnumber=\"39\"> one young bull, one ram, and one male lamb in its first year, for a burnt offering;</VERS>\n\t\t\t<VERS vnumber=\"40\"> one male goat for a purification offering;</VERS>\n\t\t\t<VERS vnumber=\"41\"> and for the sacrifice of peace offerings: two bulls, five rams, five male goats, and five lambs in their first year. This was the offering of Sheloumiel son of Zurishaddai.</VERS>\n\t\t\t<VERS vnumber=\"42\"> On the sixth day Eliasaph son of Deuel, leader of the Gadites, presented an offering.</VERS>\n\t\t\t<VERS vnumber=\"43\"> His offering was one silver platter weighing 130 shekels and one silver sprinkling bowl weighing 70 shekels, both according to the sanctuary shekel, each of them full of fine flour mixed with olive oil as a grain offering;</VERS>\n\t\t\t<VERS vnumber=\"44\"> one gold pan weighing 10 shekels;</VERS>\n\t\t\t<VERS vnumber=\"45\"> one young bull, one ram, and one male lamb in its first year, for a burnt offering;</VERS>\n\t\t\t<VERS vnumber=\"46\"> one male goat for a purification offering;</VERS>\n\t\t\t<VERS vnumber=\"47\"> and for the sacrifice of peace offerings: two bulls, five rams, five male goats, and five lambs in their first year. This was the offering of Eliasaph son of Deuel.</VERS>\n\t\t\t<VERS vnumber=\"48\"> On the seventh day Elishama son of Ammihud, leader of the Ephraimites, presented an offering.</VERS>\n\t\t\t<VERS vnumber=\"49\"> His offering was one silver platter weighing 130 shekels and one silver sprinkling bowl weighing 70 shekels, both according to the sanctuary shekel, each of them full of fine flour mixed with olive oil as a grain offering;</VERS>\n\t\t\t<VERS vnumber=\"50\"> one gold pan weighing 10 shekels, full of incense;</VERS>\n\t\t\t<VERS vnumber=\"51\"> one young bull, one ram, and one male lamb in its first year, for a burnt offering;</VERS>\n\t\t\t<VERS vnumber=\"52\"> one male goat for a purification offering;</VERS>\n\t\t\t<VERS vnumber=\"53\"> and for the sacrifice of peace offerings: two bulls, five rams, five male goats, and five lambs in their first year. This was the offering of Elishama son of Ammihud.</VERS>\n\t\t\t<VERS vnumber=\"54\"> On the eighth day Gamaliel son of Pedahzur, leader of the Manassehites, presented an offering.</VERS>\n\t\t\t<VERS vnumber=\"55\"> His offering was one silver platter weighing 130 shekels and one silver sprinkling bowl weighing 70 shekels, both according to the sanctuary shekel, each of them full of fine flour mixed with olive oil as a grain offering;</VERS>\n\t\t\t<VERS vnumber=\"56\"> one gold pan weighing 10 shekels, full of incense;</VERS>\n\t\t\t<VERS vnumber=\"57\"> one young bull, one ram, and one male lamb in its first year, for a burnt offering;</VERS>\n\t\t\t<VERS vnumber=\"58\"> one male goat for a purification offering;</VERS>\n\t\t\t<VERS vnumber=\"59\"> and for the sacrifice of peace offerings: two bulls, five rams, five male goats, and five lambs in their first year. This was the offering of Gamaliel son of Pedahzur.</VERS>\n\t\t\t<VERS vnumber=\"60\"> On the ninth day Abidan son of Gideoni, leader of the Benjaminites, presented an offering.</VERS>\n\t\t\t<VERS vnumber=\"61\"> His offering was one silver platter weighing 130 shekels and one silver sprinkling bowl weighing 70 shekels, both according to the sanctuary shekel, each of them full of fine flour mixed with olive oil as a grain offering;</VERS>\n\t\t\t<VERS vnumber=\"62\"> one gold pan weighing 10 shekels, full of incense;</VERS>\n\t\t\t<VERS vnumber=\"63\"> one young bull, one ram, and one male lamb in its first year, for a burnt offering;</VERS>\n\t\t\t<VERS vnumber=\"64\"> one male goat for a purification offering;</VERS>\n\t\t\t<VERS vnumber=\"65\"> and for the sacrifice of peace offerings: two bulls, five rams, five male goats, and five lambs in their first year. This was the offering of Abidan son of Gideoni.</VERS>\n\t\t\t<VERS vnumber=\"66\"> On the tenth day Ahiezer son of Amishaddai, leader of the Danites, presented an offering.</VERS>\n\t\t\t<VERS vnumber=\"67\"> His offering was one silver platter weighing 130 shekels and one silver sprinkling bowl weighing 70 shekels, both according to the sanctuary shekel, each of them full of fine flour mixed with olive oil as a grain offering;</VERS>\n\t\t\t<VERS vnumber=\"68\"> one gold pan weighing 10 shekels, full of incense;</VERS>\n\t\t\t<VERS vnumber=\"69\"> one young bull, one ram, and one male lamb in its first year, for a burnt offering;</VERS>\n\t\t\t<VERS vnumber=\"70\"> one male goat for a purification offering;</VERS>\n\t\t\t<VERS vnumber=\"71\"> and for the sacrifice of peace offerings: two bulls, five rams, five male goats, and five lambs in their first year. This was the offering of Ahiezer son of Amishaddai.</VERS>\n\t\t\t<VERS vnumber=\"72\"> On the eleventh day Pagiel son of Ocran, leader of the Asherites, presented an offering.</VERS>\n\t\t\t<VERS vnumber=\"73\"> His offering was one silver platter weighing 130 shekels and one silver sprinkling bowl weighing 70 shekels, both according to the sanctuary shekel, each of them full of fine flour mixed with olive oil as a grain offering;</VERS>\n\t\t\t<VERS vnumber=\"74\"> one gold pan weighing 10 shekels, full of incense;</VERS>\n\t\t\t<VERS vnumber=\"75\"> one young bull, one ram, and one male lamb in its first year, for a burnt offering;</VERS>\n\t\t\t<VERS vnumber=\"76\"> one male goat for a purification offering;</VERS>\n\t\t\t<VERS vnumber=\"77\"> and for the sacrifice of peace offerings: two bulls, five rams, five male goats, and five lambs in their first year. This was the offering of Pagiel son of Ocran.</VERS>\n\t\t\t<VERS vnumber=\"78\"> On the twelfth day Ahira son of Enan, leader of the Naphtalites, presented an offering.</VERS>\n\t\t\t<VERS vnumber=\"79\"> His offering was one silver platter weighing 130 shekels and one silver sprinkling bowl weighing 70 shekels, both according to the sanctuary shekel, each of them full of fine flour mixed with olive oil as a grain offering;</VERS>\n\t\t\t<VERS vnumber=\"80\"> one gold pan weighing 10 shekels;</VERS>\n\t\t\t<VERS vnumber=\"81\"> one young bull, one ram, and one male lamb in its first year, for a burnt offering;</VERS>\n\t\t\t<VERS vnumber=\"82\"> one male goat for a purification offering;</VERS>\n\t\t\t<VERS vnumber=\"83\"> and for the sacrifice of peace offerings: two bulls, five rams, five male goats, and five lambs in their first year. This was the offering of Ahira son of Enan.</VERS>\n\t\t\t<VERS vnumber=\"84\"> This was the dedication for the altar from the leaders of Israel, when it was anointed: twelve silver platters, twelve silver sprinkling bowls, and twelve gold pans.</VERS>\n\t\t\t<VERS vnumber=\"85\"> Each silver platter weighed 130 shekels, and each silver sprinkling bowl weighed 70 shekels. All the silver of the vessels weighed 2,400 shekels, according to the sanctuary shekel.</VERS>\n\t\t\t<VERS vnumber=\"86\"> The twelve gold pans full of incense weighed 10 shekels each, according to the sanctuary shekel; all the gold of the pans weighed 120 shekels.</VERS>\n\t\t\t<VERS vnumber=\"87\"> All the animals for the burnt offering were 12 young bulls, 12 rams, 12 male lambs in their first year, with their grain offering, and 12 male goats for a purification offering.</VERS>\n\t\t\t<VERS vnumber=\"88\"> All the animals for the sacrifice for the peace offering were 24 young bulls, 60 rams, 60 male goats, and 60 lambs in their first year. These were the dedication offerings for the altar after it was anointed.</VERS>\n\t\t\t<VERS vnumber=\"89\"> Now when Moses went into the tent of meeting to speak with the LORD, he heard the voice speaking to him from above the atonement lid that was on the ark of the testimony, from between the two cherubim. Thus he spoke to him.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"8\">\n\t\t\t<VERS vnumber=\"1\">  The LORD spoke to Moses: </VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Speak to Aaron and tell him, 'When you set up the lamps, the seven lamps are to give light in front of the lampstand.'\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> And Aaron did so; he set up the lamps to face toward the front of the lampstand, as the LORD commanded Moses.</VERS>\n\t\t\t<VERS vnumber=\"4\"> This is how the lampstand was made: It was beaten work in gold; from its shaft to its flowers it was beaten work. According to the pattern which the LORD had shown Moses, so he made the lampstand.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Then the LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"Take the Levites from among the Israelites and purify them.</VERS>\n\t\t\t<VERS vnumber=\"7\"> And do this to them to purify them: Sprinkle water of purification on them; then have them shave all their body and wash their clothes, and so purify themselves.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Then they are to take a young bull with its grain offering of fine flour mixed with olive oil; and you are to take a second young bull for a purification offering.</VERS>\n\t\t\t<VERS vnumber=\"9\"> You are to bring the Levites before the tent of meeting and assemble the entire community of the Israelites.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Then you are to bring the Levites before the LORD, and the Israelites are to lay their hands on the Levites;</VERS>\n\t\t\t<VERS vnumber=\"11\"> and Aaron is to offer the Levites before the LORD as a wave offering from the Israelites, that they may do the work of the LORD. </VERS>\n\t\t\t<VERS vnumber=\"12\"> When the Levites lay their hands on the heads of the bulls, offer the one for a purification offering and the other for a whole burnt offering to the LORD, to make atonement for the Levites. </VERS>\n\t\t\t<VERS vnumber=\"13\"> You are to have the Levites stand before Aaron and his sons, and then offer them as a wave offering to the LORD. </VERS>\n\t\t\t<VERS vnumber=\"14\"> And so you are to separate the Levites from among the Israelites, and the Levites will be mine.</VERS>\n\t\t\t<VERS vnumber=\"15\"> \"After this, the Levites will go in to do the work of the tent of meeting. So you must cleanse them and offer them like a wave offering.</VERS>\n\t\t\t<VERS vnumber=\"16\"> For they are entirely given to me from among the Israelites. I have taken them for myself instead of all who open the womb, the firstborn sons of all the Israelites. </VERS>\n\t\t\t<VERS vnumber=\"17\"> For all the firstborn males among the Israelites are mine, both humans and animals; when I destroyed all the firstborn in the land of Egypt I set them apart for myself. </VERS>\n\t\t\t<VERS vnumber=\"18\"> So I have taken the Levites instead of all the firstborn sons among the Israelites.</VERS>\n\t\t\t<VERS vnumber=\"19\"> I have given the Levites as a gift to Aaron and his sons from among the Israelites, to do the work for the Israelites in the tent of meeting, and to make atonement for the Israelites, so there will be no plague among the Israelites when the Israelites come near the sanctuary.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> So Moses and Aaron and the entire community of the Israelites did this with the Levites. According to all that the LORD commanded Moses concerning the Levites, this is what the Israelites did with them.</VERS>\n\t\t\t<VERS vnumber=\"21\"> The Levites purified themselves and washed their clothing; then Aaron presented them like a wave offering before the LORD, and Aaron made atonement for them to purify them. </VERS>\n\t\t\t<VERS vnumber=\"22\"> After this, the Levites went in to do their work in the tent of meeting before Aaron and before his sons. As the LORD had commanded Moses concerning the Levites, so they did.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Then the LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"24\"> \"This is what pertains to the Levites: At the age of twenty-five years and upward one may begin to join the company in the work of the tent of meeting, </VERS>\n\t\t\t<VERS vnumber=\"25\"> and at the age of fifty years they must retire from performing the work and may no longer work.</VERS>\n\t\t\t<VERS vnumber=\"26\"> They may assist their colleagues in the tent of meeting, to attend to needs, but they must do no work. This is the way you must establish the Levites regarding their duties.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"9\">\n\t\t\t<VERS vnumber=\"1\">  The LORD spoke to Moses in the wilderness of Sinai, in the first month of the second year after they had come out of the land of Egypt:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"The Israelites are to observe the Passover at its appointed time.</VERS>\n\t\t\t<VERS vnumber=\"3\"> In the fourteenth day of this month, at twilight, you are to observe it at its appointed time; you must keep it in accordance with all its statutes and all its customs.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> So Moses instructed the Israelites to observe the Passover. </VERS>\n\t\t\t<VERS vnumber=\"5\"> And they observed the Passover on the fourteenth day of the first month at twilight in the wilderness of Sinai; in accordance with all that the LORD had commanded Moses, so the Israelites did.</VERS>\n\t\t\t<VERS vnumber=\"6\"> It happened that some men who were ceremonially defiled by the dead body of a man could not keep the Passover on that day, so they came before Moses and before Aaron on that day. </VERS>\n\t\t\t<VERS vnumber=\"7\"> And those men said to him, \"We are ceremonially defiled by the dead body of a man; why are we kept back from offering the LORD's offering at its appointed time among the Israelites?\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> So Moses said to them, \"Remain here and I will hear what the LORD will command concerning you.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> The LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"Tell the Israelites, 'If any of you or of your posterity become ceremonially defiled by touching a dead body, or are on a journey far away, then he may observe the Passover to the LORD. </VERS>\n\t\t\t<VERS vnumber=\"11\"> They may observe it on the fourteenth day of the second month at twilight; they are to eat it with bread made without yeast and with bitter herbs. </VERS>\n\t\t\t<VERS vnumber=\"12\"> They must not leave any of it until morning, nor break any of its bones; they must observe it in accordance with every statute of the Passover.</VERS>\n\t\t\t<VERS vnumber=\"13\"> But the man who is ceremonially clean, and was not on a journey, and fails to keep the Passover, that person must be cut off from his people. Because he did not bring the LORD's offering at its appointed time, that man must bear his sin.</VERS>\n\t\t\t<VERS vnumber=\"14\"> If a resident foreigner lives among you and wants to keep the Passover to the LORD, he must do so according to the statute of the Passover, and according to its custom. You must have the same statute for the resident foreigner and for the one who was born in the land.'\"</VERS>\n\t\t\t<VERS vnumber=\"15\">  On the day that the tabernacle was set up, the cloud covered the tabernacle, the tent of the testimony, and from evening until morning there was a fiery appearance over the tabernacle.</VERS>\n\t\t\t<VERS vnumber=\"16\"> This is the way it used to be continually: The cloud would cover it by day, and there was a fiery appearance by night. </VERS>\n\t\t\t<VERS vnumber=\"17\"> Whenever the cloud was taken up from the tabernacle, then after that the Israelites would begin their journey; and in whatever place the cloud settled, there the Israelites would make camp. </VERS>\n\t\t\t<VERS vnumber=\"18\"> At the commandment of the LORD the Israelites would begin their journey, and at the commandment of the LORD they would make camp; as long as the cloud remained settled over the tabernacle they would camp. </VERS>\n\t\t\t<VERS vnumber=\"19\"> When the cloud remained over the tabernacle many days, then the Israelites obeyed the instructions of the LORD and did not journey.</VERS>\n\t\t\t<VERS vnumber=\"20\"> When the cloud remained over the tabernacle a number of days, they remained camped according to the LORD's commandment, and according to the LORD's commandment they would journey. </VERS>\n\t\t\t<VERS vnumber=\"21\"> And when the cloud remained only from evening until morning, when the cloud was taken up the following morning, then they traveled on. Whether by day or by night, when the cloud was taken up they traveled. </VERS>\n\t\t\t<VERS vnumber=\"22\"> Whether it was for two days, or a month, or a year, that the cloud prolonged its stay over the tabernacle, the Israelites remained camped without traveling; but when it was taken up, they traveled on. </VERS>\n\t\t\t<VERS vnumber=\"23\"> At the commandment of the LORD they camped, and at the commandment of the LORD they traveled on; they kept the instructions of the LORD according to the commandment of the LORD, by the authority of Moses.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"10\">\n\t\t\t<VERS vnumber=\"1\">  The LORD spoke to Moses: </VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Make two trumpets of silver; you are to make them from a single hammered piece. You will use them for assembling the community and for directing the traveling of the camps. </VERS>\n\t\t\t<VERS vnumber=\"3\"> When they blow them both, all the community must come to you to the entrance of the tent of meeting.</VERS>\n\t\t\t<VERS vnumber=\"4\"> \"But if they blow with one trumpet, then the leaders, the heads of the thousands of Israel, must come to you.</VERS>\n\t\t\t<VERS vnumber=\"5\"> When you blow an alarm, then the camps that are located on the east side must begin to travel.</VERS>\n\t\t\t<VERS vnumber=\"6\"> And when you blow an alarm the second time, then the camps that are located on the south side must begin to travel. An alarm must be sounded for their journeys. </VERS>\n\t\t\t<VERS vnumber=\"7\"> But when you assemble the community, you must blow, but you must not sound an alarm.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The sons of Aaron, the priests, must blow the trumpets; and they will be to you for an eternal ordinance throughout your generations.</VERS>\n\t\t\t<VERS vnumber=\"9\"> If you go to war in your land against an adversary who opposes you, then you must sound an alarm with the trumpets, and you will be remembered before the LORD your God, and you will be saved from your enemies.</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"Also in the time when you rejoice, such as on your appointed festivals or at the beginnings of your months, you must blow with your trumpets over your burnt offerings and over the sacrifices of your peace offerings, so that they may become a memorial for you before your God: I am the LORD your God.\"</VERS>\n\t\t\t<VERS vnumber=\"11\">  On the twentieth day of the second month, in the second year, the cloud was taken up from the tabernacle of the testimony.</VERS>\n\t\t\t<VERS vnumber=\"12\"> So the Israelites set out on their journeys from the wilderness of Sinai; and the cloud settled in the wilderness of Paran.</VERS>\n\t\t\t<VERS vnumber=\"13\"> This was the first time they set out on their journey according to the commandment of the LORD, by the authority of Moses.</VERS>\n\t\t\t<VERS vnumber=\"14\"> The standard of the camp of the Judahites set out first according to their companies, and over his company was Nahshon son of Amminadab.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Over the company of the tribe of Issacharites was Nathanel son of Zuar,</VERS>\n\t\t\t<VERS vnumber=\"16\"> and over the company of the tribe of the Zebulunites was Elion son of Helon.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Then the tabernacle was dismantled, and the sons of Gershon and the sons of Merari set out, carrying the tabernacle.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The standard of the camp of Reuben set out according to their companies; over his company was Elizur son of Shedeur.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Over the company of the tribe of the Simeonites was Shelumiel son of Zurishaddai,</VERS>\n\t\t\t<VERS vnumber=\"20\"> and over the company of the tribe of the Gadites was Eliasaph son of Deuel.</VERS>\n\t\t\t<VERS vnumber=\"21\"> And the Kohathites set out, carrying the articles for the sanctuary; the tabernacle was to be set up before they arrived.</VERS>\n\t\t\t<VERS vnumber=\"22\"> And the standard of the camp of the Ephraimites set out according to their companies; over his company was Elishama son of Ammihud.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Over the company of the tribe of the Manassehites was Gamaliel son of Pedahzur,</VERS>\n\t\t\t<VERS vnumber=\"24\"> and over the company of the tribe of Benjaminites was Abidan son of Gideoni.</VERS>\n\t\t\t<VERS vnumber=\"25\"> The standard of the camp of the Danites set out, which was the rear guard of all the camps by their companies; over his company was Ahiezer son of Ammishaddai. </VERS>\n\t\t\t<VERS vnumber=\"26\"> Over the company of the tribe of the Asherites was Pagiel son of Ocran,</VERS>\n\t\t\t<VERS vnumber=\"27\"> and over the company of the tribe of the Naphtalites was Ahira son of Enan.</VERS>\n\t\t\t<VERS vnumber=\"28\"> These were the traveling arrangements of the Israelites according to their companies when they traveled.</VERS>\n\t\t\t<VERS vnumber=\"29\">  Moses said to Hobab son of Reuel, the Midianite, Moses' father-in-law, \"We are journeying to the place about which the LORD said, 'I will give it to you.' Come with us and we will treat you well, for the LORD has promised good things for Israel.\" </VERS>\n\t\t\t<VERS vnumber=\"30\"> But Hobab said to him, \"I will not go, but I will go instead to my own land and to my kindred.\" </VERS>\n\t\t\t<VERS vnumber=\"31\"> Moses said, \"Do not leave us, because you know places for us to camp in the wilderness, and you could be our guide.</VERS>\n\t\t\t<VERS vnumber=\"32\"> And if you come with us, it is certain that whatever good things the LORD will favor us with, we will share with you as well.\"</VERS>\n\t\t\t<VERS vnumber=\"33\"> So they traveled from the mountain of the LORD three days' journey; and the ark of the covenant of the LORD was traveling before them during the three days' journey, to find a resting place for them. </VERS>\n\t\t\t<VERS vnumber=\"34\">  And the cloud of the LORD was over them by day, when they traveled from the camp. </VERS>\n\t\t\t<VERS vnumber=\"35\"> And when the ark traveled, Moses would say, \"Rise up, O LORD! May your enemies be scattered, and may those who hate you flee before you!\"</VERS>\n\t\t\t<VERS vnumber=\"36\"> And when it came to rest he would say, \"Return, O LORD, to the many thousands of Israel!\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"11\">\n\t\t\t<VERS vnumber=\"1\">  When the people complained, it displeased the LORD. When the LORD heard it, his anger burned, and so the fire of the LORD burned among them and consumed some of the outer parts of the camp. </VERS>\n\t\t\t<VERS vnumber=\"2\"> When the people cried to Moses, he prayed to the LORD, and the fire died out.</VERS>\n\t\t\t<VERS vnumber=\"3\"> So he called the name of that place Taberah because there the fire of the LORD burned among them.</VERS>\n\t\t\t<VERS vnumber=\"4\">  Now the mixed multitude who were among them craved more desirable foods, and so the Israelites wept again and said, \"If only we had meat to eat!</VERS>\n\t\t\t<VERS vnumber=\"5\"> We remember the fish we used to eat freely in Egypt, the cucumbers, the melons, the leeks, the onions, and the garlic. </VERS>\n\t\t\t<VERS vnumber=\"6\"> But now we are dried up, and there is nothing at all before us except this manna!\" </VERS>\n\t\t\t<VERS vnumber=\"7\"> (Now the manna was like coriander seed, and its color like the color of bdellium.</VERS>\n\t\t\t<VERS vnumber=\"8\"> And the people went about and gathered it, and ground it with mills or pounded it in mortars; they baked it in pans and made cakes of it. It tasted like fresh olive oil.</VERS>\n\t\t\t<VERS vnumber=\"9\"> And when the dew came down on the camp in the night, the manna fell with it.)</VERS>\n\t\t\t<VERS vnumber=\"10\">  Moses heard the people weeping throughout their families, everyone at the door of his tent; and when the anger of the LORD was kindled greatly, Moses was also displeased.</VERS>\n\t\t\t<VERS vnumber=\"11\"> And Moses said to the LORD, \"Why have you afflicted your servant? Why have I not found favor in your sight, that you lay the burden of this entire people on me? </VERS>\n\t\t\t<VERS vnumber=\"12\"> Did I conceive this entire people? Did I give birth to them, that you should say to me, 'Carry them in your arms, as a foster father bears a nursing child,' to the land which you swore to their fathers? </VERS>\n\t\t\t<VERS vnumber=\"13\"> From where shall I get meat to give to this entire people, for they cry to me, 'Give us meat, that we may eat!'</VERS>\n\t\t\t<VERS vnumber=\"14\"> I am not able to bear this entire people alone, because it is too heavy for me! </VERS>\n\t\t\t<VERS vnumber=\"15\"> But if you are going to deal with me like this, then kill me immediately. If I have found favor in your sight then do not let me see my trouble.\"</VERS>\n\t\t\t<VERS vnumber=\"16\">  The LORD said to Moses, \"Gather to me seventy men of the elders of Israel, whom you know are elders of the people and officials over them, and bring them to the tent of meeting; let them take their position there with you. </VERS>\n\t\t\t<VERS vnumber=\"17\"> Then I will come down and speak with you there, and I will take part of the spirit that is on you, and will put it on them, and they will bear some of the burden of the people with you, so that you do not bear it all by yourself.</VERS>\n\t\t\t<VERS vnumber=\"18\"> \"And say to the people, 'Sanctify yourselves for tomorrow, and you will eat meat, for you have wept in the hearing of the LORD, saying, \"Who will give us meat to eat, for life was good for us in Egypt?\" Therefore the LORD will give you meat, and you will eat. </VERS>\n\t\t\t<VERS vnumber=\"19\"> You will eat, not just one day, nor two days, nor five days, nor ten days, nor twenty days,</VERS>\n\t\t\t<VERS vnumber=\"20\"> but a whole month, until it comes out your nostrils and makes you sick, because you have despised the LORD who is among you and have wept before him, saying, \"Why did we ever come out of Egypt?\"'\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> Moses said, \"The people around me are 600,000 on foot; but you say, 'I will give them meat, that they may eat for a whole month.' </VERS>\n\t\t\t<VERS vnumber=\"22\"> Would they have enough if the flocks and herds were slaughtered for them? If all the fish of the sea were caught for them, would they have enough?\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> And the LORD said to Moses, \"Is the LORD's hand shortened? Now you will see whether my word to you will come true or not!\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> So Moses went out and told the people the words of the LORD. He then gathered seventy men of the elders of the people and had them stand around the tabernacle.</VERS>\n\t\t\t<VERS vnumber=\"25\"> And the LORD came down in the cloud and spoke to them, and he took some of the Spirit that was on Moses and put it on the seventy elders. When the Spirit rested on them, they prophesied, but did not do so again.</VERS>\n\t\t\t<VERS vnumber=\"26\"> But two men remained in the camp; one's name was Eldad, and the other's name was Medad. And the spirit rested on them. (Now they were among those in the registration, but had not gone to the tabernacle.) So they prophesied in the camp. </VERS>\n\t\t\t<VERS vnumber=\"27\"> And a young man ran and told Moses, \"Eldad and Medad are prophesying in the camp!\" </VERS>\n\t\t\t<VERS vnumber=\"28\"> Joshua son of Nun, the servant of Moses, one of his choice young men, said, \"My lord Moses, stop them!\"</VERS>\n\t\t\t<VERS vnumber=\"29\"> Moses said to him, \"Are you jealous for me? I wish that all the LORD's people were prophets, that the LORD would put his Spirit on them!\" </VERS>\n\t\t\t<VERS vnumber=\"30\"> Then Moses returned to the camp along with the elders of Israel.</VERS>\n\t\t\t<VERS vnumber=\"31\"> Now a wind went out from the LORD and brought quail from the sea, and let them fall near the camp, about a day's journey on this side, and about a day's journey on the other side, all around the camp, and about three feet high on the surface of the ground.</VERS>\n\t\t\t<VERS vnumber=\"32\"> And the people stayed up all that day, all that night, and all the next day, and gathered the quail. The one who gathered the least gathered ten homers, and they spread them out for themselves all around the camp. </VERS>\n\t\t\t<VERS vnumber=\"33\"> But while the meat was still between their teeth, before they chewed it, the anger of the LORD burned against the people, and the LORD struck the people with a very great plague.</VERS>\n\t\t\t<VERS vnumber=\"34\"> So the name of that place was called Kibroth Hattaavah, because there they buried the people that craved different food.</VERS>\n\t\t\t<VERS vnumber=\"35\"> The people traveled from Kibroth Hattaavah to Hazeroth, and they stayed at Hazeroth.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"12\">\n\t\t\t<VERS vnumber=\"1\">  Then Miriam and Aaron spoke against Moses because of the Cushite woman he had married (for he had married an Ethiopian woman). </VERS>\n\t\t\t<VERS vnumber=\"2\"> They said, \"Has the LORD only spoken through Moses? Has he not also spoken through us?\" And the LORD heard it.</VERS>\n\t\t\t<VERS vnumber=\"3\"> (Now the man Moses was very humble, more so than any man on the face of the earth.)</VERS>\n\t\t\t<VERS vnumber=\"4\"> The LORD spoke immediately to Moses, Aaron, and Miriam: \"The three of you come to the tent of meeting.\" So the three of them went.</VERS>\n\t\t\t<VERS vnumber=\"5\"> And the LORD came down in a pillar of cloud and stood at the entrance of the tent; he then called Aaron and Miriam, and they both came forward.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The LORD said, \"Hear now my words: If there is a prophet among you, I the LORD will make myself known to him in a vision; I will speak with him in a dream. </VERS>\n\t\t\t<VERS vnumber=\"7\"> My servant Moses is not like this; he is faithful in all my house. </VERS>\n\t\t\t<VERS vnumber=\"8\"> With him I will speak face to face, openly, and not in riddles; and he will see the form of the LORD. Why then were you not afraid to speak against my servant Moses?\" </VERS>\n\t\t\t<VERS vnumber=\"9\"> The anger of the LORD burned against them, and he departed.</VERS>\n\t\t\t<VERS vnumber=\"10\"> When the cloud departed from above the tent, Miriam became leprous as snow. Then Aaron looked at Miriam, and she was leprous!</VERS>\n\t\t\t<VERS vnumber=\"11\"> So Aaron said to Moses, \"O my lord, please do not hold this sin against us, in which we have acted foolishly and have sinned!</VERS>\n\t\t\t<VERS vnumber=\"12\"> Do not let her be like a baby born dead, whose flesh is half-consumed when it comes out of its mother's womb!\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> Then Moses cried to the LORD, \"Heal her now, O God.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> The LORD said to Moses, \"If her father had only spit in her face, would she not have been disgraced for seven days? Shut her out from the camp seven days, and afterward she can be brought back in again.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> So Miriam was shut outside of the camp for seven days, and the people did not journey on until Miriam was brought back in.</VERS>\n\t\t\t<VERS vnumber=\"16\"> After that the people moved from Hazeroth and camped in the wilderness of Paran.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"13\">\n\t\t\t<VERS vnumber=\"1\">  The LORD spoke to Moses: </VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Send out men to investigate the land of Canaan, which I am giving to the Israelites. You are to send one man from each ancestral tribe, each one a leader among them.\" </VERS>\n\t\t\t<VERS vnumber=\"3\"> So Moses sent them from the wilderness of Paran at the command of the LORD. All of them were leaders of the Israelites.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Now these were their names: from the tribe of Reuben, Shammua son of Zaccur;</VERS>\n\t\t\t<VERS vnumber=\"5\"> from the tribe of Simeon, Shaphat son of Hori;</VERS>\n\t\t\t<VERS vnumber=\"6\"> from the tribe of Judah, Caleb son of Jephunneh;</VERS>\n\t\t\t<VERS vnumber=\"7\"> from the tribe of Issachar, Igal son of Joseph;</VERS>\n\t\t\t<VERS vnumber=\"8\"> from the tribe of Ephraim, Hoshea son of Nun;</VERS>\n\t\t\t<VERS vnumber=\"9\"> from the tribe of Benjamin, Palti son of Raphu;</VERS>\n\t\t\t<VERS vnumber=\"10\"> from the tribe of Zebulun, Gaddiel son of Sodi;</VERS>\n\t\t\t<VERS vnumber=\"11\"> from the tribe of Joseph, namely, the tribe of Manasseh, Gaddi son of Susi; </VERS>\n\t\t\t<VERS vnumber=\"12\"> from the tribe of Dan, Ammiel son of Gemalli;</VERS>\n\t\t\t<VERS vnumber=\"13\"> from the tribe of Asher, Sethur son of Michael;</VERS>\n\t\t\t<VERS vnumber=\"14\"> from the tribe of Naphtali, Nahbi son of Vopshi;</VERS>\n\t\t\t<VERS vnumber=\"15\"> from the tribe of Gad, Geuel son of Maki.</VERS>\n\t\t\t<VERS vnumber=\"16\"> These are the names of the men whom Moses sent to investigate the land. And Moses gave Hoshea son of Nun the name Joshua.</VERS>\n\t\t\t<VERS vnumber=\"17\"> When Moses sent them to investigate the land of Canaan, he told them, \"Go up through the Negev, and then go up into the hill country </VERS>\n\t\t\t<VERS vnumber=\"18\"> and see what the land is like, and whether the people who live in it are strong or weak, few or many, </VERS>\n\t\t\t<VERS vnumber=\"19\"> and whether the land they live in is good or bad, and whether the cities they inhabit are like camps or fortified cities,</VERS>\n\t\t\t<VERS vnumber=\"20\"> and whether the land is rich or poor, and whether or not there are forests in it. And be brave, and bring back some of the fruit of the land.\" Now it was the time of year for the first ripe grapes.</VERS>\n\t\t\t<VERS vnumber=\"21\"> So they went up and investigated the land from the wilderness of Zin to Rehob, at the entrance of Hamath.</VERS>\n\t\t\t<VERS vnumber=\"22\"> When they went up through the Negev, they came to Hebron where Ahiman, Sheshai, and Talmai, descendants of Anak, were living. (Now Hebron had been built seven years before Zoan in Egypt.) </VERS>\n\t\t\t<VERS vnumber=\"23\"> When they came to the valley of Eshcol, they cut down from there a branch with one cluster of grapes, and they carried it on a staff between two men, as well as some of the pomegranates and the figs.</VERS>\n\t\t\t<VERS vnumber=\"24\"> That place was called the Eshcol Valley, because of the cluster of grapes that the Israelites cut from there. </VERS>\n\t\t\t<VERS vnumber=\"25\"> They returned from investigating the land after forty days.</VERS>\n\t\t\t<VERS vnumber=\"26\"> They came back to Moses and Aaron and to the whole community of the Israelites in the wilderness of Paran at Kadesh. They reported to the whole community and showed the fruit of the land. </VERS>\n\t\t\t<VERS vnumber=\"27\"> They told Moses, \"We went to the land where you sent us. It is indeed flowing with milk and honey, and this is its fruit. </VERS>\n\t\t\t<VERS vnumber=\"28\"> But the inhabitants are strong, and the cities are fortified and very large. Moreover we saw the descendants of Anak there. </VERS>\n\t\t\t<VERS vnumber=\"29\"> The Amalekites live in the land of the Negev; the Hittites, Jebusites, and Amorites live in the hill country; and the Canaanites live by the sea and along the banks of the Jordan.\"</VERS>\n\t\t\t<VERS vnumber=\"30\"> Then Caleb silenced the people before Moses, saying, \"Let us go up and occupy it, for we are well able to conquer it.\"</VERS>\n\t\t\t<VERS vnumber=\"31\"> But the men who had gone up with him said, \"We are not able to go up against these people, because they are stronger than we are!\" </VERS>\n\t\t\t<VERS vnumber=\"32\"> Then they presented the Israelites with a discouraging report of the land they had investigated, saying, \"The land that we passed through to investigate is a land that devours its inhabitants. All the people we saw there are of great stature. </VERS>\n\t\t\t<VERS vnumber=\"33\"> We even saw the Nephilim there (the descendants of Anak came from the Nephilim), and we seemed liked grasshoppers both to ourselves and to them.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"14\">\n\t\t\t<VERS vnumber=\"1\">  Then all the community raised a loud cry, and the people wept that night. </VERS>\n\t\t\t<VERS vnumber=\"2\"> And all the Israelites murmured against Moses and Aaron, and the whole congregation said to them, \"If only we had died in the land of Egypt, or if only we had perished in this wilderness! </VERS>\n\t\t\t<VERS vnumber=\"3\"> Why has the LORD brought us into this land only to be killed by the sword, that our wives and our children should become plunder? Wouldn't it be better for us to return to Egypt?\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> So they said to one another, \"Let's appoint a leader and return to Egypt.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> Then Moses and Aaron fell down with their faces to the ground before the whole assembled community of the Israelites. </VERS>\n\t\t\t<VERS vnumber=\"6\"> And Joshua son of Nun and Caleb son of Jephunneh, two of those who had investigated the land, tore their garments.</VERS>\n\t\t\t<VERS vnumber=\"7\"> They said to the whole community of the Israelites, \"The land we passed through to investigate is an exceedingly good land. </VERS>\n\t\t\t<VERS vnumber=\"8\"> If the LORD delights in us, then he will bring us into this land and give it to us, a land that is flowing with milk and honey.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Only do not rebel against the LORD, and do not fear the people of the land, for they are bread for us. Their protection has turned aside from them, but the LORD is with us. Do not fear them!\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> However, the whole community threatened to stone them. But the glory of the LORD appeared to all the Israelites at the tent of meeting.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The LORD said to Moses, \"How long will this people despise me, and how long will they not believe in me, in spite of the signs that I have done among them? </VERS>\n\t\t\t<VERS vnumber=\"12\"> I will strike them with the pestilence, and I will disinherit them; I will make you into a nation that is greater and mightier than they!\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> Moses said to the LORD, \"When the Egyptians hear it, for you brought up this people by your power from among them,</VERS>\n\t\t\t<VERS vnumber=\"14\"> then they will tell it to the inhabitants of this land. They have heard that you, LORD, are among this people, that you, LORD, are seen face to face, that your cloud stands over them, and that you go before them by day in a pillar of cloud and in a pillar of fire by night.</VERS>\n\t\t\t<VERS vnumber=\"15\"> If you kill this entire people at once, then the nations that have heard of your fame will say, </VERS>\n\t\t\t<VERS vnumber=\"16\"> 'Because the LORD was not able to bring this people into the land that he swore to them, he killed them in the wilderness.'</VERS>\n\t\t\t<VERS vnumber=\"17\"> So now, let the power of my Lord be great, just as you have said, </VERS>\n\t\t\t<VERS vnumber=\"18\"> 'The LORD is slow to anger and abounding in loyal love, forgiving iniquity and transgression, but by no means clearing the guilty, visiting the iniquity of the fathers on the children until the third and fourth generations.'</VERS>\n\t\t\t<VERS vnumber=\"19\"> Please forgive the iniquity of this people according to your great loyal love, just as you have forgiven this people from Egypt even until now.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> Then the LORD said, \"I have forgiven them as you asked.</VERS>\n\t\t\t<VERS vnumber=\"21\"> But truly, as I live, all the earth will be filled with the glory of the LORD. </VERS>\n\t\t\t<VERS vnumber=\"22\"> For all the people have seen my glory and my signs that I did in Egypt and in the wilderness, and yet have tempted me now these ten times, and have not obeyed me,</VERS>\n\t\t\t<VERS vnumber=\"23\"> they will by no means see the land that I swore to their fathers, nor will any of them who despised me see it. </VERS>\n\t\t\t<VERS vnumber=\"24\"> Only my servant Caleb, because he had a different spirit and has followed me fully, I will bring him into the land where he had gone, and his descendants will possess it.</VERS>\n\t\t\t<VERS vnumber=\"25\"> (Now the Amalekites and the Canaanites were living in the valleys.) Tomorrow, turn and journey into the wilderness by the way of the Red Sea.\"</VERS>\n\t\t\t<VERS vnumber=\"26\"> The LORD spoke to Moses and Aaron:</VERS>\n\t\t\t<VERS vnumber=\"27\"> \"How long must I bear with this evil congregation that murmurs against me? I have heard the complaints of the Israelites that they murmured against me. </VERS>\n\t\t\t<VERS vnumber=\"28\"> Say to them, 'As I live, says the LORD, I will surely do to you just what you have spoken in my hearing.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Your dead bodies will fall in this wilderness, all those of you who were numbered, according to your full number, from twenty years old and upward, who have murmured against me.</VERS>\n\t\t\t<VERS vnumber=\"30\"> You will by no means enter into the land where I swore to settle you. The only exceptions are Caleb son of Jephunneh and Joshua son of Nun. </VERS>\n\t\t\t<VERS vnumber=\"31\"> But I will bring in your little ones, whom you said would become victims of war, and they will enjoy the land that you have despised. </VERS>\n\t\t\t<VERS vnumber=\"32\"> But as for you, your dead bodies will fall in this wilderness,</VERS>\n\t\t\t<VERS vnumber=\"33\"> and your children will wander in the wilderness forty years and suffer for your unfaithfulness, until your dead bodies lie finished in the wilderness. </VERS>\n\t\t\t<VERS vnumber=\"34\"> According to the number of the days you have investigated this land, forty days, one day for a year, you will suffer for your iniquities, forty years, and you will know what it means to thwart me.</VERS>\n\t\t\t<VERS vnumber=\"35\"> I, the LORD, have said, \"I will surely do so to all this evil congregation that has gathered together against me. In this wilderness they will be finished, and there they will die!\"'\"</VERS>\n\t\t\t<VERS vnumber=\"36\"> The men whom Moses sent to investigate the land, who returned and made the whole community murmur against him by producing an evil report about the land, </VERS>\n\t\t\t<VERS vnumber=\"37\"> those men who produced the evil report about the land, died by the plague before the LORD.</VERS>\n\t\t\t<VERS vnumber=\"38\"> But Joshua son of Nun and Caleb son of Jephunneh, who were among the men who went to investigate the land, lived. </VERS>\n\t\t\t<VERS vnumber=\"39\"> When Moses told these things to all the Israelites, the people mourned greatly.</VERS>\n\t\t\t<VERS vnumber=\"40\"> And early in the morning they went up to the crest of the hill country, saying, \"Here we are, and we will go up to the place that the LORD commanded, for we have sinned.\"</VERS>\n\t\t\t<VERS vnumber=\"41\"> But Moses said, \"Why are you now transgressing the commandment of the LORD? It will not succeed! </VERS>\n\t\t\t<VERS vnumber=\"42\"> Do not go up, for the LORD is not among you, and you will be defeated before your enemies. </VERS>\n\t\t\t<VERS vnumber=\"43\"> For the Amalekites and the Canaanites are there before you, and you will fall by the sword. Because you have turned away from the LORD, the LORD will not be with you.\"</VERS>\n\t\t\t<VERS vnumber=\"44\"> But they dared to go up to the crest of the hill, although neither the ark of the covenant of the LORD nor Moses departed from the camp. </VERS>\n\t\t\t<VERS vnumber=\"45\"> So the Amalekites and the Canaanites who lived in that hill country swooped down and attacked them as far as Hormah.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"15\">\n\t\t\t<VERS vnumber=\"1\">  The LORD spoke to Moses: </VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Speak to the Israelites and tell them, 'When you enter the land where you are to live, which I am giving you,</VERS>\n\t\t\t<VERS vnumber=\"3\"> and you make an offering by fire to the LORD from the herd or from the flock (whether a burnt offering or a sacrifice for discharging a vow or as a freewill offering or in your solemn feasts) to create a pleasing aroma to the LORD,</VERS>\n\t\t\t<VERS vnumber=\"4\"> then the one who presents his offering to the LORD must bring a grain offering of one-tenth of an ephah of finely ground flour mixed with one fourth of a hin of olive oil.</VERS>\n\t\t\t<VERS vnumber=\"5\"> You must also prepare one-fourth of a hin of wine for a drink offering with the burnt offering or the sacrifice for each lamb.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Or for a ram, you must prepare as a grain offering two-tenths of an ephah of finely ground flour mixed with one-third of a hin of olive oil,</VERS>\n\t\t\t<VERS vnumber=\"7\"> and for a drink offering you must offer one-third of a hin of wine as a pleasing aroma to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"8\"> And when you prepare a young bull as a burnt offering or a sacrifice for discharging a vow or as a peace offering to the LORD,</VERS>\n\t\t\t<VERS vnumber=\"9\"> then a grain offering of three-tenths of an ephah of finely ground flour mixed with half a hin of olive oil must be presented with the young bull, </VERS>\n\t\t\t<VERS vnumber=\"10\"> and you must present as the drink offering half a hin of wine with the fire offering as a pleasing aroma to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"11\"> This is what is to be done for each ox, or each ram, or each of the male lambs or the goats. </VERS>\n\t\t\t<VERS vnumber=\"12\"> You must do so for each one according to the number that you prepare.</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"'Every native-born person must do these things in this way to present an offering made by fire as a pleasing aroma to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"14\"> If a resident foreigner is living with you, or whoever is among you in future generations, and prepares an offering made by fire as a pleasing aroma to the LORD, he must do it the same way you are to do it.</VERS>\n\t\t\t<VERS vnumber=\"15\"> One statute must apply to you who belong to the congregation and to the resident foreigner who is living among you, as a permanent statute for your future generations. You and the resident foreigner will be alike before the LORD.</VERS>\n\t\t\t<VERS vnumber=\"16\"> One law and one custom must apply to you and to the resident foreigner who lives alongside you.'\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> The LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"18\"> \"Speak to the Israelites and tell them, 'When you enter the land to which I am bringing you</VERS>\n\t\t\t<VERS vnumber=\"19\"> and you eat some of the food of the land, you must offer up a raised offering to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"20\"> You must offer up a cake of the first of your finely ground flour as a raised offering; as you offer the raised offering of the threshing floor, so you must offer it up. </VERS>\n\t\t\t<VERS vnumber=\"21\"> You must give to the LORD some of the first of your finely ground flour as a raised offering in your future generations.</VERS>\n\t\t\t<VERS vnumber=\"22\">  \"'If you sin unintentionally and do not observe all these commandments that the LORD has spoken to Moses,</VERS>\n\t\t\t<VERS vnumber=\"23\"> all that the LORD has commanded you by the authority of Moses, from the day that the LORD commanded Moses and continuing through your future generations,</VERS>\n\t\t\t<VERS vnumber=\"24\"> then if anything is done unintentionally without the knowledge of the community, the whole community must prepare one young bull for a burnt offering, for a pleasing aroma to the LORD, along with its grain offering and its customary drink offering, and one male goat for a purification offering.</VERS>\n\t\t\t<VERS vnumber=\"25\"> And the priest is to make atonement for the whole community of the Israelites, and they will be forgiven, because it was unintentional and they have brought their offering, an offering made by fire to the LORD, and their purification offering before the LORD, for their unintentional offense.</VERS>\n\t\t\t<VERS vnumber=\"26\"> And the whole community of the Israelites and the resident foreigner who lives among them will be forgiven, since all the people were involved in the unintentional offense.</VERS>\n\t\t\t<VERS vnumber=\"27\"> \"'If any person sins unintentionally, then he must bring a yearling female goat for a purification offering. </VERS>\n\t\t\t<VERS vnumber=\"28\"> And the priest must make atonement for the person who sins unintentionally, when he sins unintentionally before the LORD, to make atonement for him, and he will be forgiven.</VERS>\n\t\t\t<VERS vnumber=\"29\"> You must have one law for the person who sins unintentionally, both for the native-born among the Israelites and for the resident foreigner who lives among them.</VERS>\n\t\t\t<VERS vnumber=\"30\"> \"'But the person who acts defiantly, whether native-born or a resident foreigner, insults the LORD. That person must be cut off from among his people. </VERS>\n\t\t\t<VERS vnumber=\"31\"> Because he has despised the word of the LORD and has broken his commandment, that person must be completely cut off. His iniquity will be on him.'\"</VERS>\n\t\t\t<VERS vnumber=\"32\"> When the Israelites were in the wilderness they found a man gathering wood on the Sabbath day.</VERS>\n\t\t\t<VERS vnumber=\"33\"> Those who found him gathering wood brought him to Moses and Aaron and to the whole community.</VERS>\n\t\t\t<VERS vnumber=\"34\"> They put him in custody, because there was no clear instruction about what should be done to him.</VERS>\n\t\t\t<VERS vnumber=\"35\"> Then the LORD said to Moses, \"The man must surely be put to death; the whole community must stone him with stones outside the camp.\" </VERS>\n\t\t\t<VERS vnumber=\"36\"> So the whole community took him outside the camp and stoned him to death, just as the LORD commanded Moses.</VERS>\n\t\t\t<VERS vnumber=\"37\"> The LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"38\"> \"Speak to the Israelites and tell them to make tassels for themselves on the corners of their garments throughout their generations, and put a blue thread on the tassel of the corners. </VERS>\n\t\t\t<VERS vnumber=\"39\"> You must have this tassel so that you may look at it and remember all the commandments of the LORD and obey them and so that you do not follow after your own heart and your own eyes that lead you to unfaithfulness.</VERS>\n\t\t\t<VERS vnumber=\"40\"> Thus you will remember and obey all my commandments and be holy to your God. </VERS>\n\t\t\t<VERS vnumber=\"41\"> I am the LORD your God, who brought you out of the land of Egypt to be your God. I am the LORD your God.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"16\">\n\t\t\t<VERS vnumber=\"1\">  Now Korah son of Izhar, the son of Kohath, the son of Levi, and Dathan and Abiram, the sons of Eliab, and On son of Peleth, who were Reubenites, took men</VERS>\n\t\t\t<VERS vnumber=\"2\"> and rebelled against Moses, along with some of the Israelites, 250 leaders of the community, chosen from the assembly, famous men.</VERS>\n\t\t\t<VERS vnumber=\"3\"> And they assembled against Moses and Aaron, saying to them, \"You take too much upon yourselves, seeing that the whole community is holy, every one of them, and the LORD is among them. Why then do you exalt yourselves above the community of the LORD?\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> When Moses heard it he fell down with his face to the ground.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Then he said to Korah and to all his company, \"In the morning the LORD will make known who are his, and who is holy. He will cause that person to approach him; the person he has chosen he will cause to approach him. </VERS>\n\t\t\t<VERS vnumber=\"6\"> Do this, Korah, you and all your company: Take censers, </VERS>\n\t\t\t<VERS vnumber=\"7\"> put fire in them, and set incense on them before the LORD tomorrow, and the man whom the LORD chooses will be holy. You take too much upon yourselves, you sons of Levi!\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> Moses said to Korah, \"Listen now, you sons of Levi!</VERS>\n\t\t\t<VERS vnumber=\"9\"> Does it seem too small a thing to you that the God of Israel has separated you from the community of Israel to bring you near to himself, to perform the service of the tabernacle of the LORD, and to stand before the community to minister to them?</VERS>\n\t\t\t<VERS vnumber=\"10\"> He has brought you near and all your brothers, the sons of Levi, with you. Do you now seek the priesthood also? </VERS>\n\t\t\t<VERS vnumber=\"11\"> Therefore you and all your company have assembled together against the LORD! And Aaron, what is he that you murmur against him?\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> Then Moses summoned Dathan and Abiram, the sons of Eliab, but they said, \"We will not come up.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Is it a small thing that you have brought us up out of the land that flows with milk and honey, to kill us in the wilderness? Now do you want to make yourself a prince over us? </VERS>\n\t\t\t<VERS vnumber=\"14\"> Moreover, you have not brought us into a land that flows with milk and honey, nor given us an inheritance of fields and vineyards. Do you think you can blind these men? We will not come up.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> Moses was very angry, and he said to the LORD, \"Have no respect for their offering! I have not taken so much as one donkey from them, nor have I harmed any one of them!\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> Then Moses said to Korah, \"You and all your company present yourselves before the LORD, you and they, and Aaron, tomorrow.</VERS>\n\t\t\t<VERS vnumber=\"17\"> And each of you take his censer, put incense in it, and then each of you present his censer before the LORD: 250 censers, along with you, and Aaron, each of you with his censer.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> So everyone took his censer, put fire in it, and set incense on it, and stood at the entrance of the tent of meeting, with Moses and Aaron.</VERS>\n\t\t\t<VERS vnumber=\"19\"> When Korah assembled the whole community against them at the entrance of the tent of meeting, then the glory of the LORD appeared to the whole community.</VERS>\n\t\t\t<VERS vnumber=\"20\"> The LORD spoke to Moses and Aaron:</VERS>\n\t\t\t<VERS vnumber=\"21\"> \"Separate yourselves from among this community, that I may consume them in an instant.\" </VERS>\n\t\t\t<VERS vnumber=\"22\"> Then they threw themselves down with their faces to the ground and said, \"O God, the God of the spirits of all people, will you be angry with the whole community when only one man sins?\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> So the LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"24\"> \"Tell the community: 'Get away from around the homes of Korah, Dathan, and Abiram.'\" </VERS>\n\t\t\t<VERS vnumber=\"25\"> Then Moses got up and went to Dathan and Abiram; and the elders of Israel went after him. </VERS>\n\t\t\t<VERS vnumber=\"26\"> And he said to the community, \"Move away from the tents of these wicked men, and do not touch anything they have, lest you be destroyed because of all their sins.\"</VERS>\n\t\t\t<VERS vnumber=\"27\"> So they got away from the homes of Korah, Dathan, and Abiram on every side, and Dathan and Abiram came out and stationed themselves in the entrances of their tents with their wives, their children, and their toddlers. </VERS>\n\t\t\t<VERS vnumber=\"28\"> Then Moses said, \"This is how you will know that the LORD has sent me to do all these works, for I have not done them of my own will.</VERS>\n\t\t\t<VERS vnumber=\"29\"> If these men die a natural death, or if they share the fate of all men, then the LORD has not sent me. </VERS>\n\t\t\t<VERS vnumber=\"30\"> But if the LORD does something entirely new, and the earth opens its mouth and swallows them up along with all that they have, and they go down alive to the grave, then you will know that these men have despised the LORD!\"</VERS>\n\t\t\t<VERS vnumber=\"31\"> When he had finished speaking all these words, the ground that was under them split open, </VERS>\n\t\t\t<VERS vnumber=\"32\"> and the earth opened its mouth and swallowed them, along with their households, and all Korah's men, and all their goods.</VERS>\n\t\t\t<VERS vnumber=\"33\"> They and all that they had went down alive into the pit, and the earth closed over them. So they perished from among the community.</VERS>\n\t\t\t<VERS vnumber=\"34\"> All the Israelites who were around them fled at their cry, for they said, \"What if the earth swallows us too?\" </VERS>\n\t\t\t<VERS vnumber=\"35\"> Then a fire went out from the LORD and devoured the 250 men who offered incense.</VERS>\n\t\t\t<VERS vnumber=\"36\">  The LORD spoke to Moses: </VERS>\n\t\t\t<VERS vnumber=\"37\"> \"Tell Eleazar son of Aaron the priest to pick up the censers out of the flame, for they are holy, and then scatter the coals of fire at a distance. </VERS>\n\t\t\t<VERS vnumber=\"38\"> As for the censers of these men who sinned at the cost of their lives, they must be made into hammered sheets for covering the altar, because they presented them before the LORD and sanctified them. They will become a sign to the Israelites.\" </VERS>\n\t\t\t<VERS vnumber=\"39\"> So Eleazar the priest took the bronze censers presented by those who had been burned up, and they were hammered out as a covering for the altar.</VERS>\n\t\t\t<VERS vnumber=\"40\"> It was a memorial for the Israelites, that no outsider who is not a descendant of Aaron should approach to burn incense before the LORD, that he might not become like Korah and his company, just as the LORD had spoken by the authority of Moses.</VERS>\n\t\t\t<VERS vnumber=\"41\"> But on the next day the whole community of Israelites murmured against Moses and Aaron, saying, \"You have killed the LORD's people!\"</VERS>\n\t\t\t<VERS vnumber=\"42\"> When the community assembled against Moses and Aaron, they turned toward the tent of meeting, and the cloud covered it, and the glory of the LORD appeared.</VERS>\n\t\t\t<VERS vnumber=\"43\"> Then Moses and Aaron stood before the tent of meeting.</VERS>\n\t\t\t<VERS vnumber=\"44\"> The LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"45\"> \"Get away from this community, so that I can consume them in an instant!\" But they threw themselves down with their faces to the ground.</VERS>\n\t\t\t<VERS vnumber=\"46\"> Then Moses said to Aaron, \"Take the censer, put burning coals from the altar in it, place incense on it, and go quickly into the assembly and make atonement for them, for wrath has gone out from the LORD, the plague has begun!\"</VERS>\n\t\t\t<VERS vnumber=\"47\"> So Aaron did as Moses commanded and ran into the middle of the assembly, where the plague was just beginning among the people. So he placed incense on the coals and made atonement for the people. </VERS>\n\t\t\t<VERS vnumber=\"48\"> He stood between the dead and the living, and the plague was stopped.</VERS>\n\t\t\t<VERS vnumber=\"49\"> Now 14,700 people died in the plague, in addition to those who died in the event with Korah.</VERS>\n\t\t\t<VERS vnumber=\"50\"> Then Aaron returned to Moses at the entrance of the tent of meeting, and the plague was stopped.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"17\">\n\t\t\t<VERS vnumber=\"1\">  The LORD spoke to Moses: </VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Speak to the Israelites, and receive from them a staff from each tribe, one from every tribal leader, twelve staffs; you must write each man's name on his staff. </VERS>\n\t\t\t<VERS vnumber=\"3\"> You must write Aaron's name on the staff of Levi; for one staff is for the head of every tribe.</VERS>\n\t\t\t<VERS vnumber=\"4\"> You must place them in the tent of meeting before the ark of the covenant where I meet with you. </VERS>\n\t\t\t<VERS vnumber=\"5\"> And the staff of the man whom I choose will blossom; so I will rid myself of the complaints of the Israelites, which they murmur against you.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> So Moses spoke to the Israelites, and each of their leaders gave him a staff, one for each leader, according to their tribes, twelve staffs; the staff of Aaron was among their staffs.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Then Moses placed the staffs before the LORD in the tent of the testimony.</VERS>\n\t\t\t<VERS vnumber=\"8\"> On the next day Moses went into the tent of the testimony, and the staff of Aaron for the house of Levi had sprouted, and brought forth buds, and produced blossoms, and yielded almonds!</VERS>\n\t\t\t<VERS vnumber=\"9\"> So Moses brought out all the staffs from before the LORD to all the Israelites. They looked at them, and each man took his staff.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The LORD said to Moses, \"Bring Aaron's staff back before the testimony to be preserved for a sign to the rebels, so that you may bring their murmurings to an end before me, that they will not die.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> So Moses did as the LORD commanded him, this is what he did.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The Israelites said to Moses, \"We are bound to die! We perish, we all perish! </VERS>\n\t\t\t<VERS vnumber=\"13\">  Anyone who even comes close to the tabernacle of the LORD will die! Are we all to die?\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"18\">\n\t\t\t<VERS vnumber=\"1\">  The LORD said to Aaron, \"You and your sons and your tribe with you must bear the iniquity of the sanctuary, and you and your sons with you must bear the iniquity of your priesthood.</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Bring with you your brothers, the tribe of Levi, the tribe of your father, so that they may join with you and minister to you while you and your sons with you are before the tent of the testimony.</VERS>\n\t\t\t<VERS vnumber=\"3\"> They must be responsible to care for you and to care for the entire tabernacle. However, they must not come near the furnishings of the sanctuary and the altar, or both they and you will die.</VERS>\n\t\t\t<VERS vnumber=\"4\"> They must join with you, and they will be responsible for the care of the tent of meeting, for all the service of the tent, but no unauthorized person may approach you. </VERS>\n\t\t\t<VERS vnumber=\"5\"> You will be responsible for the care of the sanctuary and the care of the altar, so that there will be no more wrath on the Israelites. </VERS>\n\t\t\t<VERS vnumber=\"6\"> I myself have chosen your brothers the Levites from among the Israelites. They are given to you as a gift from the LORD, to perform the duties of the tent of meeting. </VERS>\n\t\t\t<VERS vnumber=\"7\"> But you and your sons with you are responsible for your priestly duties, for everything at the altar and within the curtain. And you must serve. I give you the priesthood as a gift for service; but the unauthorized person who approaches must be put to death.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> The LORD spoke to Aaron, \"See, I have given you the responsibility for my raised offerings; I have given all the holy things of the Israelites to you as your priestly portion and to your sons as a perpetual ordinance. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Of all the most holy offerings reserved from the fire this will be yours: Every offering of theirs, whether from every grain offering or from every purification offering or from every reparation offering which they bring to me, will be most holy for you and for your sons. </VERS>\n\t\t\t<VERS vnumber=\"10\"> You are to eat it as a most holy offering; every male may eat it. It will be holy to you.</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"And this is yours: the raised offering of their gift, along with all the wave offerings of the Israelites. I have given them to you and to your sons and daughters with you as a perpetual ordinance. Everyone who is ceremonially clean in your household may eat of it.</VERS>\n\t\t\t<VERS vnumber=\"12\"> \"All the best of the olive oil and all the best of the wine and of the wheat, the first fruits of these things that they give to the LORD, I have given to you.</VERS>\n\t\t\t<VERS vnumber=\"13\"> And whatever first ripe fruit in their land they bring to the LORD will be yours; everyone who is ceremonially clean in your household may eat of it.</VERS>\n\t\t\t<VERS vnumber=\"14\"> \"Everything devoted in Israel will be yours. </VERS>\n\t\t\t<VERS vnumber=\"15\"> The firstborn of every womb which they present to the LORD, whether human or animal, will be yours. Nevertheless, the firstborn sons you must redeem, and the firstborn males of unclean animals you must redeem. </VERS>\n\t\t\t<VERS vnumber=\"16\"> And those that must be redeemed you are to redeem when they are a month old, according to your estimation, for five shekels of silver according to the sanctuary shekel (which is twenty gerahs).</VERS>\n\t\t\t<VERS vnumber=\"17\"> But you must not redeem the firstborn of a cow or a sheep or a goat; they are holy. You must splash their blood on the altar and burn their fat for an offering made by fire for a pleasing aroma to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"18\"> And their meat will be yours, just as the breast and the right hip of the raised offering is yours.</VERS>\n\t\t\t<VERS vnumber=\"19\"> All the raised offerings of the holy things that the Israelites offer to the LORD, I have given to you, and to your sons and daughters with you, as a perpetual ordinance. It is a covenant of salt forever before the LORD for you and for your descendants with you.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> The LORD spoke to Aaron, \"You will have no inheritance in their land, nor will you have any portion of property among them, I am your portion and your inheritance among the Israelites.</VERS>\n\t\t\t<VERS vnumber=\"21\"> See, I have given the Levites all the tithes in Israel for an inheritance, for their service which they perform, the service of the tent of meeting.</VERS>\n\t\t\t<VERS vnumber=\"22\"> No longer may the Israelites approach the tent of meeting, or else they will bear their sin and die. </VERS>\n\t\t\t<VERS vnumber=\"23\"> But the Levites must perform the service of the tent of meeting, and they must bear their iniquity. It will be a perpetual ordinance throughout your generations that among the Israelites the Levites have no inheritance.</VERS>\n\t\t\t<VERS vnumber=\"24\"> But I have given to the Levites for an inheritance the tithes of the Israelites that are offered to the LORD as a raised offering. That is why I said to them that among the Israelites they are to have no inheritance.\"</VERS>\n\t\t\t<VERS vnumber=\"25\"> The LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"26\"> \"You are to speak to the Levites, and you must tell them, 'When you receive from the Israelites the tithe that I have given you from them as your inheritance, then you are to offer up from it as a raised offering to the LORD a tenth of the tithe. </VERS>\n\t\t\t<VERS vnumber=\"27\"> And your raised offering will be credited to you as though it were grain from the threshing floor or as new wine from the winepress. </VERS>\n\t\t\t<VERS vnumber=\"28\"> Thus you are to offer up a raised offering to the LORD of all your tithes which you receive from the Israelites; and you must give the LORD's raised offering from it to Aaron the priest.</VERS>\n\t\t\t<VERS vnumber=\"29\"> From all your gifts you must offer up every raised offering due the LORD, from all the best of it, and the holiest part of it.'</VERS>\n\t\t\t<VERS vnumber=\"30\"> \"Therefore you will say to them, 'When you offer up the best of it, then it will be credited to the Levites as the product of the threshing floor and as the product of the winepress. </VERS>\n\t\t\t<VERS vnumber=\"31\"> And you may eat it in any place, you and your household, because it is your wages for your service in the tent of meeting. </VERS>\n\t\t\t<VERS vnumber=\"32\"> And you will bear no sin concerning it when you offer up the best of it. And you must not profane the holy things of the Israelites, or else you will die.'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"19\">\n\t\t\t<VERS vnumber=\"1\">  The LORD spoke to Moses and Aaron: </VERS>\n\t\t\t<VERS vnumber=\"2\"> \"This is the ordinance of the law which the LORD has commanded: 'Instruct the Israelites to bring you a red heifer without blemish, which has no defect and has never carried a yoke.</VERS>\n\t\t\t<VERS vnumber=\"3\"> You must give it to Eleazar the priest so that he can take it outside the camp, and it must be slaughtered before him.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Eleazar the priest is to take some of its blood with his finger, and sprinkle some of the blood seven times directly in front of the tent of meeting. </VERS>\n\t\t\t<VERS vnumber=\"5\"> Then the heifer must be burned in his sight, its skin, its flesh, its blood, and its offal is to be burned.</VERS>\n\t\t\t<VERS vnumber=\"6\"> And the priest must take cedar wood, hyssop, and scarlet wool and throw them into the midst of the fire where the heifer is burning.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Then the priest must wash his clothes and bathe himself in water, and afterward he may come into the camp, but the priest will be ceremonially unclean until evening. </VERS>\n\t\t\t<VERS vnumber=\"8\"> The one who burns it must wash his clothes in water and bathe himself in water. He will be ceremonially unclean until evening.</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"'Then a man who is ceremonially clean must gather up the ashes of the red heifer and put them in a ceremonially clean place outside the camp. They must be kept for the community of the Israelites for use in the water of purification, it is a purification for sin.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The one who gathers the ashes of the heifer must wash his clothes and be ceremonially unclean until evening. This will be a permanent ordinance both for the Israelites and the resident foreigner who lives among them.</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"'Whoever touches the corpse of any person will be ceremonially unclean seven days. </VERS>\n\t\t\t<VERS vnumber=\"12\"> He must purify himself with water on the third day and on the seventh day, and so will be clean. But if he does not purify himself on the third day and the seventh day, then he will not be clean. </VERS>\n\t\t\t<VERS vnumber=\"13\"> Anyone who touches the corpse of any dead person and does not purify himself defiles the tabernacle of the LORD. And that person must be cut off from Israel, because the water of purification was not sprinkled on him. He will be unclean; his uncleanness remains on him.</VERS>\n\t\t\t<VERS vnumber=\"14\"> \"'This is the law: When a man dies in a tent, anyone who comes into the tent and all who are in the tent will be ceremonially unclean seven days. </VERS>\n\t\t\t<VERS vnumber=\"15\"> And every open container that has no covering fastened on it is unclean.</VERS>\n\t\t\t<VERS vnumber=\"16\"> And whoever touches the body of someone killed with a sword in the open fields, or the body of someone who died of natural causes, or a human bone, or a grave, will be unclean seven days.</VERS>\n\t\t\t<VERS vnumber=\"17\"> \"'For a ceremonially unclean person you must take some of the ashes of the heifer burnt for purification from sin and pour fresh running water over them in a vessel. </VERS>\n\t\t\t<VERS vnumber=\"18\"> Then a ceremonially clean person must take hyssop, dip it in the water, and sprinkle it on the tent, on all its furnishings, and on the people who were there, or on the one who touched a bone, or one killed, or one who died, or a grave.</VERS>\n\t\t\t<VERS vnumber=\"19\"> And the clean person must sprinkle the unclean on the third day and on the seventh day; and on the seventh day he must purify him, and then he must wash his clothes, and bathe in water, and he will be clean in the evening. </VERS>\n\t\t\t<VERS vnumber=\"20\"> But the man who is unclean and does not purify himself, that person must be cut off from among the community, because he has polluted the sanctuary of the LORD; the water of purification was not sprinkled on him, so he is unclean.</VERS>\n\t\t\t<VERS vnumber=\"21\"> \"'So this will be a perpetual ordinance for them: The one who sprinkles the water of purification must wash his clothes, and the one who touches the water of purification will be unclean until evening.</VERS>\n\t\t\t<VERS vnumber=\"22\"> And whatever the unclean person touches will be unclean, and the person who touches it will be unclean until evening.'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"20\">\n\t\t\t<VERS vnumber=\"1\">  Then the entire community of Israel entered the wilderness of Zin in the first month, and the people stayed in Kadesh. Miriam died and was buried there.</VERS>\n\t\t\t<VERS vnumber=\"2\"> And there was no water for the community, and so they gathered themselves together against Moses and Aaron.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The people contended with Moses, saying, \"If only we had died when our brothers died before the LORD! </VERS>\n\t\t\t<VERS vnumber=\"4\"> Why have you brought up the LORD's community into this wilderness? So that we and our cattle should die here? </VERS>\n\t\t\t<VERS vnumber=\"5\"> Why have you brought us up from Egypt only to bring us to this dreadful place? It is no place for grain, or figs, or vines, or pomegranates; nor is there any water to drink!\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> So Moses and Aaron went from the presence of the assembly to the entrance to the tent of meeting. They then threw themselves down with their faces to the ground, and the glory of the LORD appeared to them.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Then the LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"Take the staff and assemble the community, you and Aaron your brother, and then speak to the rock before their eyes. It will pour forth its water, and you will bring water out of the rock for them, and so you will give the community and their beasts water to drink.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> So Moses took the staff from before the LORD, just as he commanded him.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Then Moses and Aaron gathered the community together in front of the rock, and he said to them, \"Listen, you rebels, must we bring water out of this rock for you?\" </VERS>\n\t\t\t<VERS vnumber=\"11\"> Then Moses raised his hand, and struck the rock twice with his staff. And water came out abundantly. So the community drank, and their beasts drank too.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Then the LORD spoke to Moses and Aaron, \"Because you did not trust me enough to show me as holy before the Israelites, therefore you will not bring this community into the land I have given them.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> These are the waters of Meribah, because the Israelites contended with the LORD, and his holiness was maintained among them.</VERS>\n\t\t\t<VERS vnumber=\"14\">  Moses sent messengers from Kadesh to the king of Edom: \"Thus says your brother Israel: 'You know all the hardships we have experienced,</VERS>\n\t\t\t<VERS vnumber=\"15\"> how our ancestors went down into Egypt, and we lived in Egypt a long time, and the Egyptians treated us and our ancestors badly.</VERS>\n\t\t\t<VERS vnumber=\"16\"> So when we cried to the LORD, he heard our voice and sent a messenger, and has brought us up out of Egypt. Now we are here in Kadesh, a town on the edge of your country.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Please let us pass through your country. We will not pass through the fields or through the vineyards, nor will we drink water from any well. We will go by the King's Highway; we will not turn to the right or the left until we have passed through your region.'\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> But Edom said to him, \"You will not pass through me, or I will come out against you with the sword.\" </VERS>\n\t\t\t<VERS vnumber=\"19\"> Then the Israelites said to him, \"We will go along the highway, and if we or our cattle drink any of your water, we will pay for it. We will only pass through on our feet, without doing anything else.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> But he said, \"You may not pass through.\" Then Edom came out against them with a large and powerful force.</VERS>\n\t\t\t<VERS vnumber=\"21\"> So Edom refused to give Israel passage through his border; therefore Israel turned away from him.</VERS>\n\t\t\t<VERS vnumber=\"22\"> So the entire company of Israelites traveled from Kadesh and came to Mount Hor.</VERS>\n\t\t\t<VERS vnumber=\"23\"> And the LORD spoke to Moses and Aaron in Mount Hor, by the border of the land of Edom. He said:</VERS>\n\t\t\t<VERS vnumber=\"24\"> \"Aaron will be gathered to his ancestors, for he will not enter into the land I have given to the Israelites because both of you rebelled against my word at the waters of Meribah. </VERS>\n\t\t\t<VERS vnumber=\"25\"> Take Aaron and Eleazar his son, and bring them up on Mount Hor.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Remove Aaron's priestly garments and put them on Eleazar his son, and Aaron will be gathered to his ancestors and will die there.\"</VERS>\n\t\t\t<VERS vnumber=\"27\"> So Moses did as the LORD commanded; and they went up Mount Hor in the sight of the whole community. </VERS>\n\t\t\t<VERS vnumber=\"28\"> And Moses removed Aaron's garments and put them on his son Eleazar. So Aaron died there on the top of the mountain. And Moses and Eleazar came down from the mountain.</VERS>\n\t\t\t<VERS vnumber=\"29\"> When all the community saw that Aaron was dead, the whole house of Israel mourned for Aaron thirty days.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"21\">\n\t\t\t<VERS vnumber=\"1\">  When the Canaanite king of Arad who lived in the Negev heard that Israel was approaching along the road to Atharim, he fought against Israel and took some of them prisoner.</VERS>\n\t\t\t<VERS vnumber=\"2\"> So Israel made a vow to the LORD and said, \"If you will indeed deliver this people into our hand, then we will utterly destroy their cities.\" </VERS>\n\t\t\t<VERS vnumber=\"3\"> The LORD listened to the voice of Israel and delivered up the Canaanites, and they utterly destroyed them and their cities. So the name of the place was called Hormah.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Then they traveled from Mount Hor by the road to the Red Sea, to go around the land of Edom, but the people became impatient along the way. </VERS>\n\t\t\t<VERS vnumber=\"5\"> And the people spoke against God and against Moses, \"Why have you brought us up out of Egypt to die in the wilderness, for there is no bread or water, and we detest this worthless food.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> So the LORD sent poisonous snakes among the people, and they bit the people; many people of Israel died. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Then the people came to Moses and said, \"We have sinned, for we have spoken against the LORD and against you. Pray to the LORD that he would take away the snakes from us.\" So Moses prayed for the people.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The LORD said to Moses, \"Make a poisonous snake and set it on a pole. When anyone who is bitten looks at it, he will live.\" </VERS>\n\t\t\t<VERS vnumber=\"9\"> So Moses made a bronze snake and put it on a pole, so that if a snake had bitten someone, when he looked at the bronze snake he lived.</VERS>\n\t\t\t<VERS vnumber=\"10\">  The Israelites traveled on and camped in Oboth. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Then they traveled on from Oboth and camped at Iye Abarim, in the wilderness that is before Moab, on the eastern side.</VERS>\n\t\t\t<VERS vnumber=\"12\"> From there they moved on and camped in the valley of Zered.</VERS>\n\t\t\t<VERS vnumber=\"13\"> From there they moved on and camped on the other side of the Arnon, in the wilderness that extends from the regions of the Amorites, for Arnon is the border of Moab, between Moab and the Amorites. </VERS>\n\t\t\t<VERS vnumber=\"14\"> This is why it is said in the Book of the Wars of the LORD, \"Waheb in Suphah and the wadis, the Arnon</VERS>\n\t\t\t<VERS vnumber=\"15\"> and the slope of the valleys that extends to the dwelling of Ar, and falls off at the border of Moab.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> And from there they traveled to Beer; that is the well where the LORD spoke to Moses, \"Gather the people and I will give them water.\" </VERS>\n\t\t\t<VERS vnumber=\"17\"> Then Israel sang this song: \"Spring up, O well, sing to it!</VERS>\n\t\t\t<VERS vnumber=\"18\"> The well which the princes dug, which the leaders of the people opened with their scepters and their staffs.\" And from the wilderness they traveled to Mattanah; </VERS>\n\t\t\t<VERS vnumber=\"19\"> and from Mattanah to Nahaliel; and from Nahaliel to Bamoth;</VERS>\n\t\t\t<VERS vnumber=\"20\"> and from Bamoth to the valley that is in the country of Moab, near the top of Pisgah, which overlooks the wilderness.</VERS>\n\t\t\t<VERS vnumber=\"21\">  Then Israel sent messengers to King Sihon of the Amorites, saying,</VERS>\n\t\t\t<VERS vnumber=\"22\"> \"Let us pass through your land; we will not turn aside into the fields or into the vineyards, nor will we drink water from any well, but we will go along the King's Highway until we pass your borders.\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> But Sihon did not permit Israel to pass through his border; he gathered all his forces together and went out against Israel into the wilderness. When he came to Jahaz, he fought against Israel. </VERS>\n\t\t\t<VERS vnumber=\"24\"> But the Israelites defeated him in battle and took possession of his land from the Arnon to the Jabbok, as far as the Ammonites, for the border of the Ammonites was strongly defended. </VERS>\n\t\t\t<VERS vnumber=\"25\"> So Israel took all these cities; and Israel settled in all the cities of the Amorites, in Heshbon, and in all its villages.</VERS>\n\t\t\t<VERS vnumber=\"26\"> For Heshbon was the city of King Sihon of the Amorites. Now he had fought against the former king of Moab and had taken all of his land from his control, as far as the Arnon. </VERS>\n\t\t\t<VERS vnumber=\"27\"> That is why those who speak in proverbs say, \"Come to Heshbon, let it be built. Let the city of Sihon be established!</VERS>\n\t\t\t<VERS vnumber=\"28\"> For fire went out from Heshbon, a flame from the city of Sihon. It has consumed Ar of Moab and the lords of the high places of Arnon.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Woe to you, Moab. You are ruined, O people of Chemosh! He has made his sons fugitives, and his daughters the prisoners of King Sihon of the Amorites.</VERS>\n\t\t\t<VERS vnumber=\"30\"> We have overpowered them; Heshbon has perished as far as Dibon. We have shattered them as far as Nophah, which reaches to Medeba.\"</VERS>\n\t\t\t<VERS vnumber=\"31\"> So the Israelites lived in the land of the Amorites. </VERS>\n\t\t\t<VERS vnumber=\"32\"> Moses sent spies to reconnoiter Jaazer, and they captured its villages and dispossessed the Amorites who were there.</VERS>\n\t\t\t<VERS vnumber=\"33\"> Then they turned and went up by the road to Bashan. And King Og of Bashan and all his forces marched out against them to do battle at Edrei. </VERS>\n\t\t\t<VERS vnumber=\"34\"> And the LORD said to Moses, \"Do not fear him, for I have delivered him and all his people and his land into your hand. You will do to him what you did to King Sihon of the Amorites, who lived in Heshbon.</VERS>\n\t\t\t<VERS vnumber=\"35\"> So they defeated Og, his sons, and all his people, until there were no survivors, and they possessed his land.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"22\">\n\t\t\t<VERS vnumber=\"1\">  The Israelites traveled on and camped in the plains of Moab on the side of the Jordan River across from Jericho.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Balak son of Zippor saw all that the Israelites had done to the Amorites.</VERS>\n\t\t\t<VERS vnumber=\"3\"> And the Moabites were greatly afraid of the people, because they were so numerous. The Moabites were sick with fear because of the Israelites.</VERS>\n\t\t\t<VERS vnumber=\"4\"> So the Moabites said to the elders of Midian, \"Now this mass of people will lick up everything around us, as the bull devours the grass of the field. Now Balak son of Zippor was king of the Moabites at this time. </VERS>\n\t\t\t<VERS vnumber=\"5\"> And he sent messengers to Balaam son of Beor at Pethor, which is by the Euphrates River in the land of Amaw, to summon him, saying, \"Look, a nation has come out of Egypt. They cover the face of the earth, and they are settling next to me. </VERS>\n\t\t\t<VERS vnumber=\"6\"> So now, please come and curse this nation for me, for they are too powerful for me. Perhaps I will prevail so that we may conquer them and drive them out of the land. For I know that whoever you bless is blessed, and whoever you curse is cursed.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> So the elders of Moab and the elders of Midian departed with the fee for divination in their hand. They came to Balaam and reported to him the words of Balak. </VERS>\n\t\t\t<VERS vnumber=\"8\"> He replied to them, \"Stay here tonight, and I will bring back to you whatever word the LORD may speak to me.\" So the princes of Moab stayed with Balaam. </VERS>\n\t\t\t<VERS vnumber=\"9\"> And God came to Balaam and said, \"Who are these men with you?\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> Balaam said to God, \"Balak son of Zippor, king of Moab, has sent a message to me, saying,</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"Look, a nation has come out of Egypt, and it covers the face of the earth. Come now and put a curse on them for me; perhaps I will be able to defeat them and drive them out.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> But God said to Balaam, \"You must not go with them; you must not curse the people, for they are blessed.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> So Balaam got up in the morning, and said to the princes of Balak, \"Go to your land, for the LORD has refused to permit me to go with you.\" </VERS>\n\t\t\t<VERS vnumber=\"14\"> So the princes of Moab departed and went back to Balak and said, \"Balaam refused to come with us.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> Balak again sent princes, more numerous and more distinguished than the first.</VERS>\n\t\t\t<VERS vnumber=\"16\"> And they came to Balaam and said to him, \"Thus says Balak son of Zippor: 'Please do not let anything hinder you from coming to me. </VERS>\n\t\t\t<VERS vnumber=\"17\"> For I will honor you greatly, and whatever you tell me I will do. So come, put a curse on this nation for me.'\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> Balaam replied to the servants of Balak, \"Even if Balak would give me his palace full of silver and gold, I could not transgress the commandment of the LORD my God to do less or more. </VERS>\n\t\t\t<VERS vnumber=\"19\"> Now therefore, please stay the night here also, that I may know what more the LORD might say to me.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> God came to Balaam that night, and said to him, \"If the men have come to call you, get up and go with them; but the word that I will say to you, that you must do.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> So Balaam got up in the morning, saddled his donkey, and went with the princes of Moab.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Then God's anger was kindled because he went, and the angel of the LORD stood in the road to oppose him. Now he was riding on his donkey and his two servants were with him. </VERS>\n\t\t\t<VERS vnumber=\"23\"> And the donkey saw the angel of the LORD standing in the road with his sword drawn in his hand, so the donkey turned aside from the road and went into the field. But Balaam beat the donkey, to make her turn back to the road.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Then the angel of the LORD stood in a path among the vineyards, where there was a wall on either side.</VERS>\n\t\t\t<VERS vnumber=\"25\"> And when the donkey saw the angel of the LORD, she pressed herself into the wall, and crushed Balaam's foot against the wall. So he beat her again.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Then the angel of the LORD went farther, and stood in a narrow place, where there was no way to turn either to the right or to the left.</VERS>\n\t\t\t<VERS vnumber=\"27\"> When the donkey saw the angel of the LORD, she crouched down under Balaam. Then Balaam was angry, and he beat his donkey with a staff.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Then the LORD opened the mouth of the donkey, and she said to Balaam, \"What have I done to you that you have beaten me these three times?\"</VERS>\n\t\t\t<VERS vnumber=\"29\"> And Balaam said to the donkey, \"You have made me look stupid; I wish there were a sword in my hand, for I would kill you right now.\" </VERS>\n\t\t\t<VERS vnumber=\"30\"> The donkey said to Balaam, \"Am not I your donkey that you have ridden ever since I was yours until this day? Have I ever attempted to treat you this way?\" And he said, \"No.\" </VERS>\n\t\t\t<VERS vnumber=\"31\"> Then the LORD opened Balaam's eyes, and he saw the angel of the LORD standing in the way with his sword drawn in his hand; so he bowed his head and threw himself down with his face to the ground.</VERS>\n\t\t\t<VERS vnumber=\"32\"> The angel of the LORD said to him, \"Why have you beaten your donkey these three times? Look, I came out to oppose you because what you are doing is perverse before me.</VERS>\n\t\t\t<VERS vnumber=\"33\"> The donkey saw me and turned from me these three times. If she had not turned from me, I would have killed you but saved her alive.\" </VERS>\n\t\t\t<VERS vnumber=\"34\"> Balaam said to the angel of the LORD, \"I have sinned, for I did not know that you stood against me in the road. So now, if it is evil in your sight, I will go back home.\"</VERS>\n\t\t\t<VERS vnumber=\"35\"> But the angel of the LORD said to Balaam, \"Go with the men, but you may only speak the word that I will speak to you.\" So Balaam went with the princes of Balak.</VERS>\n\t\t\t<VERS vnumber=\"36\"> When Balak heard that Balaam was coming, he went out to meet him at a city of Moab which was on the border of the Arnon at the boundary of his territory.</VERS>\n\t\t\t<VERS vnumber=\"37\"> Balak said to Balaam, \"Did I not send again and again to you to summon you? Why did you not come to me? Am I not able to honor you?\"</VERS>\n\t\t\t<VERS vnumber=\"38\"> Balaam said to Balak, \"Look, I have come to you. Now, am I able to speak just anything? I must speak only the word that God puts in my mouth.\" </VERS>\n\t\t\t<VERS vnumber=\"39\"> So Balaam went with Balak, and they came to Kiriath-huzoth.</VERS>\n\t\t\t<VERS vnumber=\"40\"> And Balak sacrificed bulls and sheep, and sent some to Balaam, and to the princes who were with him. </VERS>\n\t\t\t<VERS vnumber=\"41\"> Then on the next morning Balak took Balaam, and brought him up to Bamoth Baal. From there he saw the extent of the nation.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"23\">\n\t\t\t<VERS vnumber=\"1\">  Balaam said to Balak, \"Build me seven altars here, and prepare for me here seven bulls and seven rams.\" </VERS>\n\t\t\t<VERS vnumber=\"2\"> So Balak did just as Balaam had said. Balak and Balaam then offered on each altar a bull and a ram. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Balaam said to Balak, \"Station yourself by your burnt offering, and I will go off; perhaps the LORD will come to meet me, and whatever he reveals to me I will tell you.\" Then he went to a deserted height.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Then God met Balaam, who said to him, \"I have prepared seven altars, and I have offered on each altar a bull and a ram.\" </VERS>\n\t\t\t<VERS vnumber=\"5\"> Then the LORD put a message in Balaam's mouth and said, \"Return to Balak, and speak what I tell you.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> So he returned to him, and he was still standing by his burnt offering, he and all the princes of Moab. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Then Balaam uttered his oracle, saying, \"Balak, the king of Moab, brought me from Aram, out of the mountains of the east, saying, 'Come, pronounce a curse on Jacob for me; come, denounce Israel.'</VERS>\n\t\t\t<VERS vnumber=\"8\"> How can I curse one whom God has not cursed, or how can I denounce one whom the LORD has not denounced?</VERS>\n\t\t\t<VERS vnumber=\"9\"> For from the top of the rocks I see them; from the hills I watch them. Indeed, a nation that lives alone, and it will not be reckoned among the nations.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Who can count the dust of Jacob, Or number the fourth part of Israel? Let me die the death of the upright, and let the end of my life be like theirs.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> Then Balak said to Balaam, \"What have you done to me? I brought you to curse my enemies, but on the contrary you have only blessed them!\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> Balaam replied, \"Must I not be careful to speak what the LORD has put in my mouth?\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> Balak said to him, \"Please come with me to another place from which you can observe them. You will see only a part of them, but you will not see all of them. Curse them for me from there.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> So Balak brought Balaam to the field of Zophim, to the top of Pisgah, where he built seven altars and offered a bull and a ram on each altar. </VERS>\n\t\t\t<VERS vnumber=\"15\"> And Balaam said to Balak, \"Station yourself here by your burnt offering, while I meet the LORD there. </VERS>\n\t\t\t<VERS vnumber=\"16\"> Then the LORD met Balaam and put a message in his mouth and said, \"Return to Balak, and speak what I tell you.\" </VERS>\n\t\t\t<VERS vnumber=\"17\"> When Balaam came to him, he was still standing by his burnt offering, along with the princes of Moab. And Balak said to him, \"What has the LORD spoken?\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> Balaam uttered his oracle, and said, \"Rise up, Balak, and hear; Listen to me, son of Zippor:</VERS>\n\t\t\t<VERS vnumber=\"19\"> God is not a man, that he should lie, nor a human being, that he should change his mind. Has he said, and will he not do it? Or has he spoken, and will he not make it happen?</VERS>\n\t\t\t<VERS vnumber=\"20\"> Indeed, I have received a command to bless; he has blessed, and I cannot reverse it.</VERS>\n\t\t\t<VERS vnumber=\"21\"> He has not looked on iniquity in Jacob, nor has he seen trouble in Israel. The LORD their God is with them; his acclamation as king is among them.</VERS>\n\t\t\t<VERS vnumber=\"22\"> God brought them out of Egypt. They have, as it were, the strength of a wild bull.</VERS>\n\t\t\t<VERS vnumber=\"23\"> For there is no spell against Jacob, nor is there any divination against Israel. At this time it must be said of Jacob and of Israel, 'Look at what God has done!'</VERS>\n\t\t\t<VERS vnumber=\"24\"> Indeed, the people will rise up like a lioness, and like a lion raises himself up; they will not lie down until they eat their prey, and drink the blood of the slain.\"</VERS>\n\t\t\t<VERS vnumber=\"25\"> Balak said to Balaam, \"Neither curse them at all nor bless them at all!\"</VERS>\n\t\t\t<VERS vnumber=\"26\"> But Balaam replied to Balak, \"Did I not tell you, 'All that the LORD speaks, I must do'?\"</VERS>\n\t\t\t<VERS vnumber=\"27\"> Balak said to Balaam, \"Come, please; I will take you to another place. Perhaps it will please God to let you curse them for me from there.\"</VERS>\n\t\t\t<VERS vnumber=\"28\"> So Balak took Balaam to the top of Peor, that looks toward the wilderness.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Then Balaam said to Balak, \"Build seven altars here for me, and prepare seven bulls and seven rams.\"</VERS>\n\t\t\t<VERS vnumber=\"30\"> So Balak did as Balaam had said, and offered a bull and a ram on each altar.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"24\">\n\t\t\t<VERS vnumber=\"1\">  When Balaam saw that it pleased the LORD to bless Israel, he did not go as at the other times to seek for omens, but he set his face toward the wilderness. </VERS>\n\t\t\t<VERS vnumber=\"2\"> When Balaam lifted up his eyes, he saw Israel camped tribe by tribe; and the Spirit of God came upon him. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Then he uttered this oracle: \"The oracle of Balaam son of Beor; the oracle of the man whose eyes are open;</VERS>\n\t\t\t<VERS vnumber=\"4\"> the oracle of the one who hears the words of God, who sees a vision from the Almighty, although falling flat on the ground with eyes open:</VERS>\n\t\t\t<VERS vnumber=\"5\"> 'How beautiful are your tents, O Jacob, and your dwelling places, O Israel!</VERS>\n\t\t\t<VERS vnumber=\"6\"> They are like valleys stretched forth, like gardens by the river's side, like aloes that the LORD has planted, and like cedar trees beside the waters.</VERS>\n\t\t\t<VERS vnumber=\"7\"> He will pour the water out of his buckets, and their descendants will be like abundant water; their king will be greater than Agag, and their kingdom will be exalted.</VERS>\n\t\t\t<VERS vnumber=\"8\"> God brought them out of Egypt. They have, as it were, the strength of a young bull; they will devour hostile people and will break their bones and will pierce them through with arrows.</VERS>\n\t\t\t<VERS vnumber=\"9\"> They crouch and lie down like a lion, and as a lioness, who can stir him? Blessed is the one who blesses you, and cursed is the one who curses you!'\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> Then Balak became very angry at Balaam, and he struck his hands together. Balak said to Balaam, \"I called you to curse my enemies, and look, you have done nothing but bless them these three times!</VERS>\n\t\t\t<VERS vnumber=\"11\"> So now, go back where you came from! I said that I would greatly honor you; but now the LORD has stood in the way of your honor.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> Balaam said to Balak, \"Did I not also tell your messengers whom you sent to me,</VERS>\n\t\t\t<VERS vnumber=\"13\"> 'If Balak would give me his palace full of silver and gold, I cannot go beyond the commandment of the LORD to do either good or evil of my own will, but whatever the LORD tells me I must speak'?</VERS>\n\t\t\t<VERS vnumber=\"14\"> And now, I am about to go back to my own people. Come now, and I will advise you as to what this people will do to your people in the future.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> Then he uttered this oracle: \"The oracle of Balaam son of Beor; the oracle of the man whose eyes are open;</VERS>\n\t\t\t<VERS vnumber=\"16\"> the oracle of the one who hears the words of God, and who knows the knowledge of the Most High, who sees a vision from the Almighty, although falling flat on the ground with eyes open:</VERS>\n\t\t\t<VERS vnumber=\"17\"> 'I see him, but not now; I behold him, but not close at hand. A star will march forth out of Jacob, and a scepter will rise out of Israel. He will crush the skulls of Moab, and the heads of all the sons of Sheth.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Edom will be a possession, Seir, his enemies, will also be a possession; but Israel will act valiantly.</VERS>\n\t\t\t<VERS vnumber=\"19\"> A ruler will be established from Jacob; he will destroy the remains of the city.'\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> Then Balaam looked on Amalek and delivered this oracle: \"Amalek was the first of the nations, but his end will be that he will perish.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> Then he looked on the Kenites and uttered this oracle: \"Your dwelling place seems strong, and your nest is set on a rocky cliff.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Nevertheless the Kenite will be consumed. How long will Asshur take you away captive?\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> Then he uttered this oracle: \"O, who will survive when God does this!</VERS>\n\t\t\t<VERS vnumber=\"24\"> Ships will come from the coast of Kittim, and will afflict Asshur, and will afflict Eber, and he will also perish forever.\"</VERS>\n\t\t\t<VERS vnumber=\"25\"> Balaam got up and departed and returned to his home, and Balak also went his way.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"25\">\n\t\t\t<VERS vnumber=\"1\">  When Israel lived in Shittim, the people began to commit sexual immorality with the daughters of Moab. </VERS>\n\t\t\t<VERS vnumber=\"2\"> These women invited the people to the sacrifices of their gods; then the people ate and bowed down to their gods.</VERS>\n\t\t\t<VERS vnumber=\"3\"> When Israel joined themselves to Baal-peor, the anger of the LORD flared up against Israel.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The LORD said to Moses, \"Arrest all the leaders of the people, and hang them up before the LORD in broad daylight, so that the fierce anger of the LORD may be turned away from Israel.\" </VERS>\n\t\t\t<VERS vnumber=\"5\"> So Moses said to the judges of Israel, \"Each of you must execute those of his men who were joined to Baal-peor.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> Just then one of the Israelites came and brought to his brothers a Midianite woman in the plain view of Moses and of the whole community of the Israelites, while they were weeping at the entrance of the tent of meeting. </VERS>\n\t\t\t<VERS vnumber=\"7\"> When Phinehas son of Eleazar, the son of Aaron the priest, saw it, he got up from among the assembly, took a javelin in his hand, </VERS>\n\t\t\t<VERS vnumber=\"8\"> and went after the Israelite man into the tent and thrust through the Israelite man and into the woman's abdomen. So the plague was stopped from the Israelites.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Those that died in the plague were 24,000.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"Phinehas son of Eleazar, the son of Aaron the priest, has turned my anger away from the Israelites, when he manifested such zeal for my sake among them, so that I did not consume the Israelites in my zeal.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Therefore, announce: 'I am going to give to him my covenant of peace.</VERS>\n\t\t\t<VERS vnumber=\"13\"> So it will be to him and his descendants after him a covenant of a permanent priesthood, because he has been zealous for his God, and has made atonement for the Israelites.'\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> Now the name of the Israelite who was stabbed, the one who was stabbed with the Midianite woman, was Zimri son of Salu, a leader of a clan of the Simeonites.</VERS>\n\t\t\t<VERS vnumber=\"15\"> The name of the Midianite woman who was killed was Cozbi daughter of Zur. He was a leader over the people of a clan of Midian.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Then the LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"17\"> \"Bring trouble to the Midianites, and destroy them, </VERS>\n\t\t\t<VERS vnumber=\"18\"> because they bring trouble to you by their treachery with which they have deceived you in the matter of Peor, and in the matter of Cozbi, the daughter of a prince of Midian, their sister, who was killed on the day of the plague that happened as a result of Peor.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"26\">\n\t\t\t<VERS vnumber=\"1\">  After the plague the LORD said to Moses and to Eleazar son of Aaron the priest,</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Take a census of the whole community of Israelites, from twenty years old and upward, by their clans, everyone who can serve in the army of Israel.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> So Moses and Eleazar the priest spoke with them in the plains of Moab, by the Jordan River across from Jericho. They said, </VERS>\n\t\t\t<VERS vnumber=\"4\"> \"Number the people from twenty years old and upward, just as the LORD commanded Moses and the Israelites who went out from the land of Egypt.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> Reuben was the firstborn of Israel. The Reubenites: from Hanoch, the family of the Hanochites; from Pallu, the family of the Palluites; </VERS>\n\t\t\t<VERS vnumber=\"6\"> from Hezron, the family of the Hezronites; from Carmi, the family of the Carmites.</VERS>\n\t\t\t<VERS vnumber=\"7\"> These were the families of the Reubenites; and those numbered of them were 43,730.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Pallu's descendant was Eliab. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Eliab's descendants were Nemuel, Dathan, and Abiram. It was Dathan and Abiram who as leaders of the community rebelled against Moses and Aaron with the followers of Korah when they rebelled against the LORD. </VERS>\n\t\t\t<VERS vnumber=\"10\"> The earth opened its mouth and swallowed them and Korah at the time that company died, when the fire consumed 250 men. So they became a warning.</VERS>\n\t\t\t<VERS vnumber=\"11\"> But the descendants of Korah did not die.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The Simeonites by their families: from Nemuel, the family of the Nemuelites; from Jamin, the family of the Jaminites; from Jakin, the family of the Jakinites;</VERS>\n\t\t\t<VERS vnumber=\"13\"> from Zerah, the family of the Zerahites; and from Shaul, the family of the Shaulites.</VERS>\n\t\t\t<VERS vnumber=\"14\"> These were the families of the Simeonites, 22,200.</VERS>\n\t\t\t<VERS vnumber=\"15\"> The Gadites by their families: from Zephon, the family of the Zephonites; from Haggi, the family of the Haggites; from Shuni, the family of the Shunites;</VERS>\n\t\t\t<VERS vnumber=\"16\"> from Ozni, the family of the Oznites; from Eri, the family of the Erites; </VERS>\n\t\t\t<VERS vnumber=\"17\"> from Arod, the family of the Arodites, and from Areli, the family of the Arelites.</VERS>\n\t\t\t<VERS vnumber=\"18\"> These were the families of the Gadites according to those numbered of them, 40,500.</VERS>\n\t\t\t<VERS vnumber=\"19\"> The descendants of Judah were Er and Onan, but Er and Onan died in the land of Canaan.</VERS>\n\t\t\t<VERS vnumber=\"20\"> And the Judahites by their families were: from Shelah, the family of the Shelahites; from Perez, the family of the Perezites; and from Zerah, the family of the Zerahites.</VERS>\n\t\t\t<VERS vnumber=\"21\"> And the Perezites were: from Hezron, the family of the Hezronites; from Hamul, the family of the Hamulites. </VERS>\n\t\t\t<VERS vnumber=\"22\"> These were the families of Judah according to those numbered of them, 76,500.</VERS>\n\t\t\t<VERS vnumber=\"23\"> The Issacharites by their families: from Tola, the family of the Tolaites; from Puah, the family of the Puites;</VERS>\n\t\t\t<VERS vnumber=\"24\"> from Jashub, the family of the Jashubites; and from Shimron, the family of the Shimronites.</VERS>\n\t\t\t<VERS vnumber=\"25\"> These were the families of Issachar, according to those numbered of them, 64,300.</VERS>\n\t\t\t<VERS vnumber=\"26\"> The Zebulunites by their families: from Sered, the family of the Sardites; from Elon, the family of the Elonites; from Jahleel, the family of the Jahleelites.</VERS>\n\t\t\t<VERS vnumber=\"27\"> These were the families of the Zebulunites, according to those numbered of them, 60,500.</VERS>\n\t\t\t<VERS vnumber=\"28\"> The descendants of Joseph by their families: Manasseh and Ephraim.</VERS>\n\t\t\t<VERS vnumber=\"29\"> The Manassehites: from Machir, the family of the Machirites (now Machir became the father of Gilead); from Gilead, the family of the Gileadites.</VERS>\n\t\t\t<VERS vnumber=\"30\"> These were the Gileadites: from Iezer, the family of the Iezerites; from Helek, the family of the Helekites;</VERS>\n\t\t\t<VERS vnumber=\"31\"> from Asriel, the family of the Asrielites; from Shechem, the family of the Shechemites;</VERS>\n\t\t\t<VERS vnumber=\"32\"> from Shemida, the family of the Shemidaites; from Hepher, the family of the Hepherites.</VERS>\n\t\t\t<VERS vnumber=\"33\"> Now Zelophehad son of Hepher had no sons, but only daughters; and the names of the daughters of Zelophehad were Mahlah, Noah, Hoglah, Milcah, and Tirzah.</VERS>\n\t\t\t<VERS vnumber=\"34\"> These were the families of Manasseh; those numbered of them were 52,700.</VERS>\n\t\t\t<VERS vnumber=\"35\"> These are the Ephraimites by their families: from Shuthelah, the family of the Shuthelahites; from Beker, the family of the Bekerites; from Tahan, the family of the Tahanites.</VERS>\n\t\t\t<VERS vnumber=\"36\"> Now these were the Shuthelahites: from Eran, the family of the Eranites.</VERS>\n\t\t\t<VERS vnumber=\"37\"> These were the families of the Ephraimites, according to those numbered of them, 32,500. These were the descendants of Joseph by their families.</VERS>\n\t\t\t<VERS vnumber=\"38\"> The Benjaminites by their families: from Bela, the family of the Belaites; from Ashbel, the family of the Ashbelites; from Ahiram, the family of the Ahiramites;</VERS>\n\t\t\t<VERS vnumber=\"39\"> from Shupham, the family of the Shuphamites; from Hupham, the family of the Huphamites. </VERS>\n\t\t\t<VERS vnumber=\"40\"> The descendants of Bela were Ard and Naaman. From Ard, the family of the Ardites; from Naaman, the family of the Naamanites. </VERS>\n\t\t\t<VERS vnumber=\"41\"> These are the Benjaminites, according to their families, and according to those numbered of them, 45,600.</VERS>\n\t\t\t<VERS vnumber=\"42\"> These are the Danites by their families: from Shuham, the family of the Shuhamites. These were the families of Dan, according to their families.</VERS>\n\t\t\t<VERS vnumber=\"43\"> All the families of the Shuhahites according to those numbered of them were 64,400.</VERS>\n\t\t\t<VERS vnumber=\"44\"> The Asherites by their families: from Imnah, the family of the Imnahites; from Ishvi, the family of the Ishvites; from Beriah, the family of the Beriahites.</VERS>\n\t\t\t<VERS vnumber=\"45\"> From the Beriahites: from Heber, the family of the Heberites; from Malkiel, the family of the Malkielites.</VERS>\n\t\t\t<VERS vnumber=\"46\"> Now the name of the daughter of Asher was Serah.</VERS>\n\t\t\t<VERS vnumber=\"47\"> These are the families of the Asherites, according to those numbered of them, 53,400.</VERS>\n\t\t\t<VERS vnumber=\"48\"> The Naphtalites by their families: from Jahzeel, the family of the Jahzeelites; from Guni, the family of the Gunites;</VERS>\n\t\t\t<VERS vnumber=\"49\"> from Jezer, the family of the Jezerites; from Shillem, the family of the Shillemites.</VERS>\n\t\t\t<VERS vnumber=\"50\"> These were the families of Naphtali according to their families; and those numbered of them were 45,400.</VERS>\n\t\t\t<VERS vnumber=\"51\"> These were those numbered of the Israelites, 601,730.</VERS>\n\t\t\t<VERS vnumber=\"52\"> Then the LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"53\"> \"To these the land must be divided as an inheritance according to the number of the names.</VERS>\n\t\t\t<VERS vnumber=\"54\"> To a larger group you will give a larger inheritance, and to a smaller group you will give a smaller inheritance. To each one its inheritance must be given according to the number of people in it.</VERS>\n\t\t\t<VERS vnumber=\"55\"> The land must be divided by lot; and they will inherit in accordance with the names of their ancestral tribes.</VERS>\n\t\t\t<VERS vnumber=\"56\"> Their inheritance must be apportioned by lot among the larger and smaller groups.</VERS>\n\t\t\t<VERS vnumber=\"57\"> And these are the Levites who were numbered according to their families: from Gershon, the family of the Gershonites; of Kohath, the family of the Kohathites; from Merari, the family of the Merarites.</VERS>\n\t\t\t<VERS vnumber=\"58\"> These 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 Korahites. Kohath became the father of Amram.</VERS>\n\t\t\t<VERS vnumber=\"59\"> Now the name of Amram's wife was Jochebed, daughter of Levi, who was born to Levi in Egypt. And to Amram she bore Aaron, Moses, and Miriam their sister. </VERS>\n\t\t\t<VERS vnumber=\"60\"> And to Aaron were born Nadab and Abihu, Eleazar and Ithamar.</VERS>\n\t\t\t<VERS vnumber=\"61\"> But Nadab and Abihu died when they offered strange fire before the LORD. </VERS>\n\t\t\t<VERS vnumber=\"62\"> Those of them who were numbered were 23,000, all males from a month old and upward, for they were not numbered among the Israelites; no inheritance was given to them among the Israelites.</VERS>\n\t\t\t<VERS vnumber=\"63\"> These are those who were numbered by Moses and Eleazar the priest, who numbered the Israelites in the plains of Moab along the Jordan River opposite Jericho.</VERS>\n\t\t\t<VERS vnumber=\"64\"> But there was not a man among these who had been among those numbered by Moses and Aaron the priest when they numbered the Israelites in the wilderness of Sinai. </VERS>\n\t\t\t<VERS vnumber=\"65\"> For the LORD had said of them, \"They will surely die in the wilderness.\" And there was not left a single man of them, except Caleb son of Jephunneh and Joshua son of Nun.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"27\">\n\t\t\t<VERS vnumber=\"1\">  Then the daughters of Zelophehad son of Hepher, the son of Gilead, the son of Machir, the son of Manasseh of the families of Manasseh, the son Joseph came forward. Now these are the names of his daughters: Mahlah, Noah, Hoglah, Milcah, and Tirzah. </VERS>\n\t\t\t<VERS vnumber=\"2\"> And they stood before Moses and Eleazar the priest and the leaders of the whole assembly at the entrance to the tent of meeting and said,</VERS>\n\t\t\t<VERS vnumber=\"3\"> \"Our father died in the wilderness, although he was not part of the company of those that gathered themselves together against the LORD in the company of Korah; but he died for his own sin, and he had no sons. </VERS>\n\t\t\t<VERS vnumber=\"4\"> Why should the name of our father be lost from among his family because he had no son? Give us a possession among the relatives of our father.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> So Moses brought their case before the LORD.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The LORD said to Moses:</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"The daughters of Zelophehad have a valid claim. You must indeed give them possession of an inheritance among their father's relatives, and you must transfer the inheritance of their father to them. </VERS>\n\t\t\t<VERS vnumber=\"8\"> And you must tell the Israelites, 'If a man dies and has no son, then you must transfer his inheritance to his daughter; </VERS>\n\t\t\t<VERS vnumber=\"9\"> and if he has no daughter, then you are to give his inheritance to his brothers;</VERS>\n\t\t\t<VERS vnumber=\"10\"> and if he has no brothers, then you are to give his inheritance to his father's brothers;</VERS>\n\t\t\t<VERS vnumber=\"11\"> and if his father has no brothers, then you are to give his inheritance to his relative nearest to him from his family, and he will possess it. This will be for the Israelites a legal requirement, as the LORD commanded Moses.'\"</VERS>\n\t\t\t<VERS vnumber=\"12\">  Then the LORD said to Moses, \"Go up this mountain of the Abarim range, and see the land I have given to the Israelites. </VERS>\n\t\t\t<VERS vnumber=\"13\"> When you have seen it, you will be gathered to your ancestors, as Aaron your brother was gathered to his ancestors.</VERS>\n\t\t\t<VERS vnumber=\"14\"> For in the wilderness of Zin when the community rebelled against me, you rebelled against my command to show me as holy before their eyes over the water, the water of Meribah in Kadesh in the wilderness of Zin.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> Then Moses spoke to the LORD:</VERS>\n\t\t\t<VERS vnumber=\"16\"> \"Let the LORD, the God of the spirits of all humankind, appoint a man over the community, </VERS>\n\t\t\t<VERS vnumber=\"17\"> who will go out before them, and who will come in before them, and who will lead them out, and who will bring them in, so that the community of the LORD may not be like sheep that have no shepherd.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> The LORD replied to Moses, \"Take Joshua son of Nun, a man in whom is such a spirit, and lay your hand on him;</VERS>\n\t\t\t<VERS vnumber=\"19\"> set him before Eleazar the priest and before the whole community, and commission him publicly.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Then you must delegate some of your authority to him, so that the whole community of the Israelites will be obedient.</VERS>\n\t\t\t<VERS vnumber=\"21\"> And he will stand before Eleazar the priest, who will seek counsel for him before the LORD by the decision of the Urim. At his command they will go out, and at his command they will come in, he and all the Israelites with him, the whole community.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> So Moses did as the LORD commanded him; he took Joshua and set him before Eleazar the priest and before the whole community. </VERS>\n\t\t\t<VERS vnumber=\"23\"> He laid his hands on him and commissioned him, just as the LORD commanded, by the authority of Moses.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"28\">\n\t\t\t<VERS vnumber=\"1\">  The LORD spoke to Moses: </VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Command the Israelites: 'With regard to my offering, be sure to offer my food for my offering made by fire, as a pleasing aroma to me at its appointed time.'</VERS>\n\t\t\t<VERS vnumber=\"3\"> You will say to them, 'This is the offering made by fire which you must offer to the LORD: two unblemished lambs one year old each day for a continual burnt offering. </VERS>\n\t\t\t<VERS vnumber=\"4\"> The first lamb you must offer in the morning, and the second lamb you must offer in the late afternoon,</VERS>\n\t\t\t<VERS vnumber=\"5\"> with one-tenth of an ephah of finely ground flour as a grain offering mixed with one quarter of a hin of pressed olive oil. </VERS>\n\t\t\t<VERS vnumber=\"6\"> It is a continual burnt offering that was instituted on Mount Sinai as a pleasing aroma, an offering made by fire to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"'And its drink offering must be one quarter of a hin for each lamb. You must pour out the strong drink as a drink offering to the LORD in the holy place. </VERS>\n\t\t\t<VERS vnumber=\"8\"> And the second lamb you must offer in the late afternoon; just as you offered the grain offering and drink offering in the morning, you must offer it as an offering made by fire, as a pleasing aroma to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"'On the Sabbath day, you must offer two unblemished lambs a year old, and two-tenths of an ephah of finely ground flour as a grain offering, mixed with olive oil, along with its drink offering. </VERS>\n\t\t\t<VERS vnumber=\"10\"> This is the burnt offering for every Sabbath, besides the continual burnt offering and its drink offering.</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"'On the first day of each month you must offer as a burnt offering to the LORD two young bulls, one ram, and seven unblemished lambs a year old, </VERS>\n\t\t\t<VERS vnumber=\"12\"> with three-tenths of an ephah of finely ground flour mixed with olive oil as a grain offering for each bull, and two-tenths of an ephah of finely ground flour mixed with olive oil as a grain offering for the ram,</VERS>\n\t\t\t<VERS vnumber=\"13\"> and one-tenth of an ephah of finely ground flour mixed with olive oil as a grain offering for each lamb, as a burnt offering for a pleasing aroma, an offering made by fire to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"14\"> For their drink offerings, include half a hin of wine with each bull, one-third of a hin for the ram, and one-fourth of a hin for each lamb. This is the burnt offering for each month throughout the months of the year. </VERS>\n\t\t\t<VERS vnumber=\"15\"> And one male goat must be offered to the LORD as a purification offering, in addition to the continual burnt offering and its drink offering.</VERS>\n\t\t\t<VERS vnumber=\"16\"> \"'On the fourteenth day of the first month is the LORD's Passover.</VERS>\n\t\t\t<VERS vnumber=\"17\"> And on the fifteenth day of this month is the festival. For seven days bread made without yeast must be eaten.</VERS>\n\t\t\t<VERS vnumber=\"18\"> And on the first day there is to be a holy assembly; you must do no ordinary work on it.</VERS>\n\t\t\t<VERS vnumber=\"19\"> \"'But you must offer to the LORD an offering made by fire, a burnt offering of two young bulls, one ram, and seven lambs one year old; they must all be unblemished.</VERS>\n\t\t\t<VERS vnumber=\"20\"> And their grain offering is to be of finely ground flour mixed with olive oil. For each bull you must offer three-tenths of an ephah, and two-tenths for the ram.</VERS>\n\t\t\t<VERS vnumber=\"21\"> For each of the seven lambs you are to offer one-tenth of an ephah,</VERS>\n\t\t\t<VERS vnumber=\"22\"> as well as one goat for a purification offering, to make atonement for you.</VERS>\n\t\t\t<VERS vnumber=\"23\"> You must offer these in addition to the burnt offering in the morning which is for a continual burnt offering.</VERS>\n\t\t\t<VERS vnumber=\"24\"> In this manner you must offer daily throughout the seven days the food of the sacrifice made by fire as a sweet aroma to the LORD. It is to be offered in addition to the continual burnt offering and its drink offering.</VERS>\n\t\t\t<VERS vnumber=\"25\"> On the seventh day you are to have a holy assembly, you must do no regular work.</VERS>\n\t\t\t<VERS vnumber=\"26\"> \"'Also, on the day of the first fruits, when you bring a new grain offering to the LORD during your Feast of Weeks, you are to have a holy assembly. You must do no ordinary work.</VERS>\n\t\t\t<VERS vnumber=\"27\"> But you must offer as the burnt offering, as a sweet aroma to the LORD, two young bulls, one ram, seven lambs one year old,</VERS>\n\t\t\t<VERS vnumber=\"28\"> with their grain offering of finely ground flour mixed with olive oil: three-tenths of an ephah for each bull, two-tenths for the one ram,</VERS>\n\t\t\t<VERS vnumber=\"29\"> with one-tenth for each of the seven lambs,</VERS>\n\t\t\t<VERS vnumber=\"30\"> as well as one male goat to make an atonement for you.</VERS>\n\t\t\t<VERS vnumber=\"31\"> You are to offer them with their drink offerings in addition to the continual burnt offering and its grain offering, they must be unblemished.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"29\">\n\t\t\t<VERS vnumber=\"1\"> \"'On the first day of the seventh month, you are to hold a holy assembly. You must not do your ordinary work, for it is a day of blowing trumpets for you.</VERS>\n\t\t\t<VERS vnumber=\"2\"> You must offer a burnt offering as a sweet aroma to the LORD: one young bull, one ram, and seven lambs one year old without blemish.</VERS>\n\t\t\t<VERS vnumber=\"3\"> \"'Their grain offering is to be of finely ground flour mixed with olive oil, three-tenths of an ephah for the bull, two-tenths of an ephah for the ram,</VERS>\n\t\t\t<VERS vnumber=\"4\"> and one-tenth for each of the seven lambs,</VERS>\n\t\t\t<VERS vnumber=\"5\"> with one male goat for a purification offering to make an atonement for you;</VERS>\n\t\t\t<VERS vnumber=\"6\"> this is in addition to the monthly burnt offering and its grain offering, and the daily burnt offering with its grain offering and their drink offerings as prescribed, as a sweet aroma, a sacrifice made by fire to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"'On the tenth day of this seventh month you are to have a holy assembly. You must humble yourselves; you must not do any work on it. </VERS>\n\t\t\t<VERS vnumber=\"8\"> But you must offer a burnt offering as a pleasing aroma to the LORD, one young bull, one ram, and seven lambs one year old, all of them without blemish.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Their grain offering must be of finely ground flour mixed with olive oil, three-tenths of an ephah for the bull, two-tenths for the ram,</VERS>\n\t\t\t<VERS vnumber=\"10\"> and one-tenth for each of the seven lambs,</VERS>\n\t\t\t<VERS vnumber=\"11\"> along with one male goat for a purification offering, in addition to the purification offering for atonement and the continual burnt offering with its grain offering and their drink offerings.</VERS>\n\t\t\t<VERS vnumber=\"12\"> \"'On the fifteenth day of the seventh month you are to have a holy assembly; you must do no ordinary work, and you must keep a festival to the LORD for seven days.</VERS>\n\t\t\t<VERS vnumber=\"13\"> You must offer a burnt offering, an offering made by fire as a pleasing aroma to the LORD: thirteen young bulls, two rams, and fourteen lambs each one year old, all of them without blemish.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Their grain offering must be of finely ground flour mixed with olive oil, three-tenths of an ephah for each of the thirteen bulls, two-tenths of an ephah for each of the two rams,</VERS>\n\t\t\t<VERS vnumber=\"15\"> and one-tenth for each of the fourteen lambs,</VERS>\n\t\t\t<VERS vnumber=\"16\"> along with one male goat for a purification offering, in addition to the continual burnt offering with its grain offering and its drink offering.</VERS>\n\t\t\t<VERS vnumber=\"17\"> \"'On the second day you must offer twelve young bulls, two rams, fourteen lambs one year old, all without blemish,</VERS>\n\t\t\t<VERS vnumber=\"18\"> and their grain offering and their drink offerings for the bulls, for the rams, and for the lambs, according to their number as prescribed,</VERS>\n\t\t\t<VERS vnumber=\"19\"> along with one male goat for a purification offering, in addition to the continual burnt offering with its grain offering and their drink offerings.</VERS>\n\t\t\t<VERS vnumber=\"20\"> \"'On the third day you must offer eleven bulls, two rams, fourteen lambs one year old, all without blemish, </VERS>\n\t\t\t<VERS vnumber=\"21\"> and their grain offering and their drink offerings for the bulls, for the rams, and for the lambs, according to their number as prescribed,</VERS>\n\t\t\t<VERS vnumber=\"22\"> along with one male goat for a purification offering, in addition to the continual burnt offering with its grain offering and its drink offering.</VERS>\n\t\t\t<VERS vnumber=\"23\"> \"'On the fourth day you must offer ten bulls, two rams, and fourteen lambs one year old, all without blemish,</VERS>\n\t\t\t<VERS vnumber=\"24\"> and their grain offering and their drink offerings for the bulls, for the rams, and for the lambs, according to their number as prescribed,</VERS>\n\t\t\t<VERS vnumber=\"25\"> along with one male goat for a purification offering, in addition to the continual burnt offering with its grain offering and its drink offering.</VERS>\n\t\t\t<VERS vnumber=\"26\"> \"'On the fifth day you must offer nine bulls, two rams, and fourteen lambs one year old, all without blemish,</VERS>\n\t\t\t<VERS vnumber=\"27\"> and their grain offering and their drink offerings for the bulls, for the rams, and for the lambs, according to their number as prescribed,</VERS>\n\t\t\t<VERS vnumber=\"28\"> along with one male goat for a purification offering, in addition to the continual burnt offering with its grain offering and its drink offering.</VERS>\n\t\t\t<VERS vnumber=\"29\"> \"'On the sixth day you must offer eight bulls, two rams, and fourteen lambs one year old, all without blemish,</VERS>\n\t\t\t<VERS vnumber=\"30\"> and their grain offering and their drink offerings for the bulls, for the rams, and for the lambs, according to their number as prescribed,</VERS>\n\t\t\t<VERS vnumber=\"31\"> along with one male goat for a purification offering, in addition to the continual burnt offering with its grain offering and its drink offering.</VERS>\n\t\t\t<VERS vnumber=\"32\"> \"'On the seventh day you must offer seven bulls, two rams, and fourteen lambs one year old, all without blemish,</VERS>\n\t\t\t<VERS vnumber=\"33\"> and their grain offering and their drink offerings for the bulls, for the rams, and for the lambs, according to their number as prescribed,</VERS>\n\t\t\t<VERS vnumber=\"34\"> along with one male goat for a purification offering, in addition to the continual burnt offering with its grain offering and its drink offering.</VERS>\n\t\t\t<VERS vnumber=\"35\"> \"'On the eighth day you are to have a holy assembly; you must do no ordinary work on it.</VERS>\n\t\t\t<VERS vnumber=\"36\"> But you must offer a burnt offering, an offering made by fire, as a pleasing aroma to the LORD, one bull, one ram, seven lambs one year old, all of them without blemish,</VERS>\n\t\t\t<VERS vnumber=\"37\"> and with their grain offering and their drink offerings for the bull, for the ram, and for the lambs, according to their number as prescribed,</VERS>\n\t\t\t<VERS vnumber=\"38\"> along with one male goat for a purification offering, in addition to the continual burnt offering with its grain offering and its drink offering.</VERS>\n\t\t\t<VERS vnumber=\"39\"> \"'These things you must present to the LORD at your appointed times, in addition to your vows and your freewill offerings, as your burnt offerings, your grain offerings, your drink offerings, and your peace offerings.'\"</VERS>\n\t\t\t<VERS vnumber=\"40\">  So Moses told the Israelites everything, just as the LORD had commanded him.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"30\">\n\t\t\t<VERS vnumber=\"1\">  Moses told the leaders of the tribes concerning the Israelites, \"This is what the LORD has commanded: </VERS>\n\t\t\t<VERS vnumber=\"2\"> If a man makes a vow to the LORD or takes an oath of binding obligation on himself, he must not break his word, but must do whatever he has promised.</VERS>\n\t\t\t<VERS vnumber=\"3\"> \"If a young woman who is still living in her father's house makes a vow to the LORD or places herself under an obligation, </VERS>\n\t\t\t<VERS vnumber=\"4\"> and her father hears of her vow or the obligation to which she has pledged herself, and her father remains silent about her, then all her vows will stand, and every obligation to which she has pledged herself will stand.</VERS>\n\t\t\t<VERS vnumber=\"5\"> But if her father overrules her when he hears about it, then none of her vows or her obligations which she has pledged for herself will stand. And the LORD will release her from it, because her father overruled her.</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"And if she marries a husband while under a vow, or she uttered anything impulsively by which she has pledged herself, </VERS>\n\t\t\t<VERS vnumber=\"7\"> and her husband hears about it, but remains silent about her when he hears about it, then her vows will stand and her obligations which she has pledged for herself will stand.</VERS>\n\t\t\t<VERS vnumber=\"8\"> But if when her husband hears it he overrules her, then he will nullify the vow she has taken, and whatever she uttered impulsively which she has pledged for herself. And the LORD will release her from it.</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"But every vow of a widow or of a divorced woman which she has pledged for herself will remain intact.</VERS>\n\t\t\t<VERS vnumber=\"10\"> If she made the vow in her husband's house or put herself under obligation with an oath,</VERS>\n\t\t\t<VERS vnumber=\"11\"> and her husband heard about it, but remained silent about her, and did not overrule her, then all her vows will stand, and every obligation which she pledged for herself will stand.</VERS>\n\t\t\t<VERS vnumber=\"12\"> But if her husband clearly nullifies them when he hears them, then whatever she says by way of vows or obligations will not stand. Her husband has made them void, and the LORD will release her from them.</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"Any vow or sworn obligation that would bring affliction to her, her husband can confirm or nullify.</VERS>\n\t\t\t<VERS vnumber=\"14\"> But if her husband remains completely silent about her from day to day, he thus confirms all her vows or all her obligations which she is under; he confirms them because he remained silent about when he heard them.</VERS>\n\t\t\t<VERS vnumber=\"15\"> But if he should nullify them after he has heard them, then he will bear her iniquity.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> These are the statutes that the LORD commanded Moses, relating to a man and his wife, and a father and his young daughter who is still living in her father's house.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"31\">\n\t\t\t<VERS vnumber=\"1\">  The LORD spoke to Moses: </VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Exact vengeance for the Israelites on the Midianites, after that you will be gathered to your people.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> So Moses spoke to the people: \"Arm men from among you for the war, to attack the Midianites and to execute the LORD's vengeance on Midian. </VERS>\n\t\t\t<VERS vnumber=\"4\"> You must send to the battle a thousand men from every tribe throughout all the tribes of Israel.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> So a thousand from every tribe, twelve thousand armed for battle in all, were provided out of the thousands of Israel.</VERS>\n\t\t\t<VERS vnumber=\"6\"> So Moses sent them to the war, one thousand from every tribe, with Phinehas son of Eleazar the priest, who was in charge of the holy articles and the signal trumpets. </VERS>\n\t\t\t<VERS vnumber=\"7\"> They fought against the Midianites, as the LORD commanded Moses, and they killed every male.</VERS>\n\t\t\t<VERS vnumber=\"8\"> They killed the kings of Midian in addition to those slain, Evi, Rekem, Zur, Hur, and Reba, five Midianite kings. They also killed Balaam son of Beor with the sword.</VERS>\n\t\t\t<VERS vnumber=\"9\"> The Israelites took the women of Midian captives along with their little ones, and took all their herds, all their flocks, and all their goods as plunder.</VERS>\n\t\t\t<VERS vnumber=\"10\"> They burned all their towns where they lived and all their encampments. </VERS>\n\t\t\t<VERS vnumber=\"11\"> They took all the plunder and all the spoils, both people and animals.</VERS>\n\t\t\t<VERS vnumber=\"12\"> They brought the captives and the spoils and the plunder to Moses, to Eleazar the priest, and to the Israelite community, to the camp on the plains of Moab, along the Jordan River across from Jericho.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Moses, Eleazar the priest, and all the leaders of the community went out to meet them outside the camp.</VERS>\n\t\t\t<VERS vnumber=\"14\"> But Moses was furious with the officers of the army, the commanders over thousands and commanders over hundreds, who had come from service in the war.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Moses said to them, \"Have you allowed all the women to live?</VERS>\n\t\t\t<VERS vnumber=\"16\"> Look, these people through the counsel of Balaam caused the Israelites to act treacherously against the LORD in the matter of Peor, which resulted in the plague among the community of the LORD!</VERS>\n\t\t\t<VERS vnumber=\"17\"> Now therefore kill every boy, and kill every woman who has had sexual intercourse with a man.</VERS>\n\t\t\t<VERS vnumber=\"18\"> But all the young women who have not had sexual intercourse with a man will be yours.</VERS>\n\t\t\t<VERS vnumber=\"19\"> \"Any of you who has killed anyone or touched any of the dead, remain outside the camp for seven days; purify yourselves and your captives on the third day, and on the seventh day.</VERS>\n\t\t\t<VERS vnumber=\"20\"> You must purify each garment and everything that is made of skin, everything made of goat's hair, and everything made of wood.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> Then Eleazar the priest said to the men of war who had gone into the battle, \"This is the ordinance of the law that the LORD commanded Moses:</VERS>\n\t\t\t<VERS vnumber=\"22\"> 'Only the gold, the silver, the bronze, the iron, the tin, and the lead,</VERS>\n\t\t\t<VERS vnumber=\"23\"> everything that may stand the fire, you are to pass through the fire, and it will be ceremonially clean, but it must still be purified with the water of purification. Anything that cannot withstand the fire you must pass through the water. </VERS>\n\t\t\t<VERS vnumber=\"24\"> You must wash your clothes on the seventh day, and you will be ceremonially clean, and afterward you may enter the camp.'\"</VERS>\n\t\t\t<VERS vnumber=\"25\"> Then the LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"26\"> \"You and Eleazar the priest, and all the family leaders of the community, take the sum of the plunder that was captured, both people and animals. </VERS>\n\t\t\t<VERS vnumber=\"27\"> Divide the plunder into two parts, one for those who took part in the war, who went out to battle, and the other for all the community.</VERS>\n\t\t\t<VERS vnumber=\"28\"> \"You must exact a tribute for the LORD from the fighting men who went out to battle: one life out of five hundred, from the people, the cattle, and from the donkeys and the sheep. </VERS>\n\t\t\t<VERS vnumber=\"29\"> You are to take it from their half-share and give it to Eleazar the priest for a raised offering to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"30\"> From the Israelites' half-share you are to take one portion out of fifty of the people, the cattle, the donkeys, and the sheep, from every kind of animal, and you are to give them to the Levites, who are responsible for the care of the LORD's tabernacle.\"</VERS>\n\t\t\t<VERS vnumber=\"31\"> So Moses and Eleazar the priest did as the LORD commanded Moses.</VERS>\n\t\t\t<VERS vnumber=\"32\"> The spoil that remained of the plunder which the fighting men had gathered was 675,000 sheep, </VERS>\n\t\t\t<VERS vnumber=\"33\"> 72,000 cattle,</VERS>\n\t\t\t<VERS vnumber=\"34\"> 61,000 donkeys,</VERS>\n\t\t\t<VERS vnumber=\"35\"> and 32,000 young women who had never had sexual intercourse with a man.</VERS>\n\t\t\t<VERS vnumber=\"36\"> The half-portion of those who went to war numbered 337,500 sheep;</VERS>\n\t\t\t<VERS vnumber=\"37\"> the LORD's tribute from the sheep was 675.</VERS>\n\t\t\t<VERS vnumber=\"38\"> The cattle numbered 36,000; the LORD's tribute was 72. </VERS>\n\t\t\t<VERS vnumber=\"39\"> The donkeys were 30,500, of which the LORD's tribute was 61.</VERS>\n\t\t\t<VERS vnumber=\"40\"> The people were 16,000, of which the LORD's tribute was 32 people.</VERS>\n\t\t\t<VERS vnumber=\"41\"> So Moses gave the tribute, which was the LORD's raised offering, to Eleazar the priest, as the LORD commanded Moses.</VERS>\n\t\t\t<VERS vnumber=\"42\"> From the Israelites' half-share that Moses had separated from the fighting men,</VERS>\n\t\t\t<VERS vnumber=\"43\"> there were 337,500 sheep from the portion belonging to the community,</VERS>\n\t\t\t<VERS vnumber=\"44\"> 36,000 cattle,</VERS>\n\t\t\t<VERS vnumber=\"45\"> 30,500 donkeys,</VERS>\n\t\t\t<VERS vnumber=\"46\"> and 16,000 people.</VERS>\n\t\t\t<VERS vnumber=\"47\"> From the Israelites' share Moses took one of every fifty people and animals and gave them to the Levites who were responsible for the care of the Lord's tabernacle, just as the LORD commanded Moses.</VERS>\n\t\t\t<VERS vnumber=\"48\"> Then the officers who were over the thousands of the army, the commanders over thousands and the commanders over hundreds, approached Moses</VERS>\n\t\t\t<VERS vnumber=\"49\"> and said to him, \"Your servants have taken a count of the men who were in the battle, who were under our authority, and not one is missing. </VERS>\n\t\t\t<VERS vnumber=\"50\"> So we have brought as an offering for the LORD what each man found: gold ornaments, armlets, bracelets, signet rings, earrings, and necklaces, to make atonement for ourselves before the LORD.\"</VERS>\n\t\t\t<VERS vnumber=\"51\"> Moses and Eleazar the priest took the gold from them, all of it in the form of ornaments.</VERS>\n\t\t\t<VERS vnumber=\"52\"> All the gold of the offering they offered up to the LORD from the commanders of thousands and the commanders of hundreds weighed 16,750 shekels.</VERS>\n\t\t\t<VERS vnumber=\"53\"> Each soldier had taken plunder for himself.</VERS>\n\t\t\t<VERS vnumber=\"54\"> So Moses and Eleazar the priest received the gold from the commanders of thousands and commanders of hundreds and brought it into the tent of meeting as a memorial for the Israelites before the LORD.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"32\">\n\t\t\t<VERS vnumber=\"1\">  Now the Reubenites and the Gadites possessed a very large number of cattle. When they saw that the lands of Jazer and Gilead were ideal for cattle,</VERS>\n\t\t\t<VERS vnumber=\"2\"> the Gadites and the Reubenites came and addressed Moses, Eleazar the priest, and the leaders of the community. They said,</VERS>\n\t\t\t<VERS vnumber=\"3\"> \"Ataroth, Dibon, Jazer, Nimrah, Heshbon, Elealeh, Sebam, Nebo, and Beon,</VERS>\n\t\t\t<VERS vnumber=\"4\"> the land that the LORD subdued before the community of Israel, is ideal for cattle, and your servants have cattle.\" </VERS>\n\t\t\t<VERS vnumber=\"5\"> So they said, \"If we have found favor in your sight, let this land be given to your servants for our inheritance. Do not have us cross the Jordan River.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> Moses said to the Gadites and the Reubenites, \"Must your brothers go to war while you remain here? </VERS>\n\t\t\t<VERS vnumber=\"7\"> Why do you frustrate the intent of the Israelites to cross over into the land which the LORD has given them? </VERS>\n\t\t\t<VERS vnumber=\"8\"> Your fathers did the same thing when I sent them from Kadesh Barnea to see the land.</VERS>\n\t\t\t<VERS vnumber=\"9\"> When they went up to the Eshcol Valley and saw the land, they frustrated the intent of the Israelites so that they did not enter the land that the LORD had given them. </VERS>\n\t\t\t<VERS vnumber=\"10\"> So the anger of the LORD was kindled that day, and he swore,</VERS>\n\t\t\t<VERS vnumber=\"11\"> 'Because they have not followed me wholeheartedly, not one of the men twenty years old and upward who came from Egypt will see the land that I swore to give to Abraham, Isaac, and Jacob, </VERS>\n\t\t\t<VERS vnumber=\"12\"> except Caleb son of Jephunneh the Kenizzite, and Joshua son of Nun, for they followed the LORD wholeheartedly.'</VERS>\n\t\t\t<VERS vnumber=\"13\"> So the LORD's anger was kindled against the Israelites, and he made them wander in the wilderness for forty years, until all that generation that had done wickedly before the LORD was finished.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Now look, you are standing in your fathers' place, a brood of sinners, to increase still further the fierce wrath of the LORD against the Israelites.</VERS>\n\t\t\t<VERS vnumber=\"15\"> For if you turn away from following him, he will once again abandon them in the wilderness, and you will be the reason for their destruction.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> Then they came very close to him and said, \"We will build sheep folds here for our flocks and cities for our families,</VERS>\n\t\t\t<VERS vnumber=\"17\"> but we will maintain ourselves in armed readiness and go before the Israelites until whenever we have brought them to their place. Our descendants will be living in fortified towns as a protection against the inhabitants of the land. </VERS>\n\t\t\t<VERS vnumber=\"18\"> We will not return to our homes until every Israelite has his inheritance.</VERS>\n\t\t\t<VERS vnumber=\"19\"> For we will not accept any inheritance on the other side of the Jordan River and beyond, because our inheritance has come to us on this eastern side of the Jordan.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> Then Moses replied, \"If you will do this thing, and if you will arm yourselves for battle before the LORD, </VERS>\n\t\t\t<VERS vnumber=\"21\"> and if all your armed men cross the Jordan before the LORD until he drives out his enemies from his presence</VERS>\n\t\t\t<VERS vnumber=\"22\"> and the land is subdued before the LORD, then afterward you may return and be free of your obligation to the LORD and to Israel. This land will then be your possession in the LORD's sight.</VERS>\n\t\t\t<VERS vnumber=\"23\"> \"But if you do not do this, then look, you will have sinned against the LORD. And know that your sin will find you out. </VERS>\n\t\t\t<VERS vnumber=\"24\"> So build cities for your descendants and pens for your sheep, but do what you have said you would do.\"</VERS>\n\t\t\t<VERS vnumber=\"25\"> So the Gadites and the Reubenites replied to Moses, \"Your servants will do as my lord commands.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Our children, our wives, our flocks, and all our livestock will be there in the cities of Gilead,</VERS>\n\t\t\t<VERS vnumber=\"27\"> but your servants will cross over, every man armed for war, to do battle in the LORD's presence, just as my lord says.\"</VERS>\n\t\t\t<VERS vnumber=\"28\"> So Moses gave orders about them to Eleazar the priest, to Joshua son of Nun, and to the heads of the families of the Israelite tribes.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Moses said to them: \"If the Gadites and the Reubenites cross the Jordan with you, each one equipped for battle in the LORD's presence, and you conquer the land, then you must allot them the territory of Gilead as their possession.</VERS>\n\t\t\t<VERS vnumber=\"30\"> But if they do not cross over with you armed, they must receive possessions among you in Canaan.\"</VERS>\n\t\t\t<VERS vnumber=\"31\"> Then the Gadites and the Reubenites answered, \"Your servants will do what the LORD has spoken.</VERS>\n\t\t\t<VERS vnumber=\"32\"> We will cross armed in the LORD's presence into the land of Canaan, and then the possession of our inheritance that we inherit will be ours on this side of the Jordan River.\"</VERS>\n\t\t\t<VERS vnumber=\"33\"> So Moses gave to the Gadites, the Reubenites, and to half the tribe of Manasseh son of Joseph the realm of King Sihon of the Amorites, and the realm of King Og of Bashan, the entire land with its cities and the territory surrounding them.</VERS>\n\t\t\t<VERS vnumber=\"34\"> The Gadites rebuilt Dibon, Ataroth, Aroer,</VERS>\n\t\t\t<VERS vnumber=\"35\"> Atroth Shophan, Jazer, Jogbehah,</VERS>\n\t\t\t<VERS vnumber=\"36\"> Beth Nimrah, and Beth Haran as fortified cities, and constructed pens for their flocks.</VERS>\n\t\t\t<VERS vnumber=\"37\"> The Reubenites rebuilt Heshbon, Elealeh, Kiriathaim,</VERS>\n\t\t\t<VERS vnumber=\"38\"> Nebo, Baal Meon (with a change of name), and Sibmah. They renamed the cities they built.</VERS>\n\t\t\t<VERS vnumber=\"39\"> The descendants of Machir son of Manasseh went to Gilead, took it, and dispossessed the Amorites who were in it.</VERS>\n\t\t\t<VERS vnumber=\"40\"> So Moses gave Gilead to Machir, son of Manasseh, and he lived there.</VERS>\n\t\t\t<VERS vnumber=\"41\"> Now Jair son of Manasseh went and captured their small towns and named them Havvoth Jair.</VERS>\n\t\t\t<VERS vnumber=\"42\"> Then Nobah went and captured Kenath and its villages and called it Nobah after his own name.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"33\">\n\t\t\t<VERS vnumber=\"1\">  These are the journeys of the Israelites, who went out of the land of Egypt by their divisions under the authority of Moses and Aaron. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Moses recorded their departures according to their journeys, by the commandment of the LORD; now these are their journeys according to their departures. </VERS>\n\t\t\t<VERS vnumber=\"3\"> They departed from Rameses in the first month, on the fifteenth day of the first month; on the day after the Passover the Israelites went out defiantly in plain sight of all the Egyptians. </VERS>\n\t\t\t<VERS vnumber=\"4\"> Now the Egyptians were burying all their firstborn, whom the LORD had killed among them; the LORD also executed judgments on their gods.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The Israelites traveled from Rameses and camped in Succoth.</VERS>\n\t\t\t<VERS vnumber=\"6\"> They traveled from Succoth, and camped in Etham, which is on the edge of the wilderness.</VERS>\n\t\t\t<VERS vnumber=\"7\"> They traveled from Etham, and turned again to Pi-hahiroth, which is before Baal-Zephon; and they camped before Migdal.</VERS>\n\t\t\t<VERS vnumber=\"8\"> They traveled from Pi-hahiroth, and passed through the middle of the sea into the wilderness, and went three days' journey in the wilderness of Etham, and camped in Marah. </VERS>\n\t\t\t<VERS vnumber=\"9\"> They traveled from Marah and came to Elim; in Elim there are twelve fountains of water and seventy palm trees, so they camped there.</VERS>\n\t\t\t<VERS vnumber=\"10\"> They traveled from Elim, and camped by the Red Sea.</VERS>\n\t\t\t<VERS vnumber=\"11\"> They traveled from the Red Sea and camped in the wilderness of Zin.</VERS>\n\t\t\t<VERS vnumber=\"12\"> They traveled from the wilderness of Zin and camped in Dophkah.</VERS>\n\t\t\t<VERS vnumber=\"13\"> And they traveled from Dophkah, and camped in Alush.</VERS>\n\t\t\t<VERS vnumber=\"14\"> They traveled from Alush and camped at Rephidim, where there was no water for the people to drink.</VERS>\n\t\t\t<VERS vnumber=\"15\"> They traveled from Rephidim and camped in the wilderness of Sinai.</VERS>\n\t\t\t<VERS vnumber=\"16\"> They traveled from the desert of Sinai and camped at Kibroth Hattaavah.</VERS>\n\t\t\t<VERS vnumber=\"17\"> They traveled from Kibroth Hattaavah and camped at Hazeroth.</VERS>\n\t\t\t<VERS vnumber=\"18\"> They traveled from Hazeroth and camped in Rithmah.</VERS>\n\t\t\t<VERS vnumber=\"19\"> They traveled from Rithmah and camped at Rimmon-perez.</VERS>\n\t\t\t<VERS vnumber=\"20\"> They traveled from Rimmon-perez and camped in Libnah.</VERS>\n\t\t\t<VERS vnumber=\"21\"> They traveled from Libnah and camped at Rissah.</VERS>\n\t\t\t<VERS vnumber=\"22\"> They traveled from Rissah and camped in Kehelathah.</VERS>\n\t\t\t<VERS vnumber=\"23\"> They traveled from Kehelathah and camped at Mount Shepher.</VERS>\n\t\t\t<VERS vnumber=\"24\"> They traveled from Mount Shepher and camped in Haradah.</VERS>\n\t\t\t<VERS vnumber=\"25\"> They traveled from Haradah and camped in Makheloth.</VERS>\n\t\t\t<VERS vnumber=\"26\"> They traveled from Makheloth and camped at Tahath.</VERS>\n\t\t\t<VERS vnumber=\"27\"> They traveled from Tahath and camped at Terah.</VERS>\n\t\t\t<VERS vnumber=\"28\"> They traveled from Terah and camped in Mithcah.</VERS>\n\t\t\t<VERS vnumber=\"29\"> They traveled from Mithcah and camped in Hashmonah.</VERS>\n\t\t\t<VERS vnumber=\"30\"> They traveled from Hashmonah and camped in Moseroth.</VERS>\n\t\t\t<VERS vnumber=\"31\"> They traveled from Moseroth and camped in Bene-jaakan.</VERS>\n\t\t\t<VERS vnumber=\"32\"> They traveled from Bene-jaakan and camped at Hor-haggidgad.</VERS>\n\t\t\t<VERS vnumber=\"33\"> They traveled from Hor-haggidgad and camped in Jotbathah.</VERS>\n\t\t\t<VERS vnumber=\"34\"> They traveled from Jotbathah and camped in Abronah.</VERS>\n\t\t\t<VERS vnumber=\"35\"> They traveled from Abronah and camped at Ezion-geber.</VERS>\n\t\t\t<VERS vnumber=\"36\"> They traveled from Ezion-geber and camped in the wilderness of Zin, which is Kadesh.</VERS>\n\t\t\t<VERS vnumber=\"37\"> They traveled from Kadesh and camped in Mount Hor at the edge of the land of Edom.</VERS>\n\t\t\t<VERS vnumber=\"38\"> Aaron the priest ascended Mount Hor at the command of the LORD, and he died there in the fortieth year after the Israelites had come out of the land of Egypt on the first day of the fifth month. </VERS>\n\t\t\t<VERS vnumber=\"39\"> Now Aaron was 123 years old when he died in Mount Hor.</VERS>\n\t\t\t<VERS vnumber=\"40\"> The king of Arad, the Canaanite king who lived in the south of the land of Canaan, heard about the approach of the Israelites.</VERS>\n\t\t\t<VERS vnumber=\"41\"> They traveled from Mount Hor and camped in Zalmonah.</VERS>\n\t\t\t<VERS vnumber=\"42\"> They traveled from Zalmonah and camped in Punon.</VERS>\n\t\t\t<VERS vnumber=\"43\"> They traveled from Punon and camped in Oboth.</VERS>\n\t\t\t<VERS vnumber=\"44\"> They traveled from Oboth and camped in Iye-abarim, on the border of Moab.</VERS>\n\t\t\t<VERS vnumber=\"45\"> They traveled from Iim and camped in Dibon-gad.</VERS>\n\t\t\t<VERS vnumber=\"46\"> They traveled from Dibon-gad and camped in Almon-diblathaim.</VERS>\n\t\t\t<VERS vnumber=\"47\"> They traveled from Almon-diblathaim and camped in the mountains of Abarim before Nebo.</VERS>\n\t\t\t<VERS vnumber=\"48\"> They traveled from the mountains of Abarim and camped in the plains of Moab by the Jordan River across from Jericho.</VERS>\n\t\t\t<VERS vnumber=\"49\"> They camped by the Jordan, from Beth-jeshimoth as far as Abel-shittim in the plains of Moab.</VERS>\n\t\t\t<VERS vnumber=\"50\"> The LORD spoke to Moses in the plains of Moab by the Jordan, across from Jericho. He said:</VERS>\n\t\t\t<VERS vnumber=\"51\"> \"Speak to the Israelites and tell them, 'When you have crossed the Jordan into the land of Canaan,</VERS>\n\t\t\t<VERS vnumber=\"52\"> you must drive out all the inhabitants of the land before you. Destroy all their carved images, all their molten images, and demolish their high places. </VERS>\n\t\t\t<VERS vnumber=\"53\"> You must dispossess the inhabitants of the land and live in it, for I have given you the land to possess it.</VERS>\n\t\t\t<VERS vnumber=\"54\"> You must divide the land by lot for an inheritance among your families. To a larger group you must give a larger inheritance, and to a smaller group you must give a smaller inheritance. Everyone's inheritance must be in the place where his lot falls. You must inherit according to your ancestral tribes. </VERS>\n\t\t\t<VERS vnumber=\"55\"> But if you do not drive out the inhabitants of the land before you, then those whom you allow to remain will be irritants in your eyes and thorns in your side, and will cause you trouble in the land where you will be living.</VERS>\n\t\t\t<VERS vnumber=\"56\"> And what I intended to do to them I will do to you.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"34\">\n\t\t\t<VERS vnumber=\"1\">  Then the LORD spoke to Moses: </VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Give these instructions to the Israelites, and tell them: 'When you enter Canaan, the land that has been assigned to you as an inheritance, the land of Canaan with its borders, </VERS>\n\t\t\t<VERS vnumber=\"3\"> your southern border will extend from the wilderness of Zin along the Edomite border, and your southern border will run eastward to the extremity of the Salt Sea, </VERS>\n\t\t\t<VERS vnumber=\"4\"> and then the border will turn from the south to the Scorpion Ascent, continue to Zin, and then its direction will be from the south to Kadesh Barnea. Then it will go to Hazar Addar and pass over to Azmon. </VERS>\n\t\t\t<VERS vnumber=\"5\"> There the border will turn from Azmon to the Brook of Egypt, and then its direction is to the sea.</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"'And for a western border you will have the Great Sea. This will be your western border.</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"'And this will be your northern border: From the Great Sea you will draw a line to Mount Hor;</VERS>\n\t\t\t<VERS vnumber=\"8\"> from Mount Hor you will draw a line to Lebo Hamath, and the direction of the border will be to Zedad. </VERS>\n\t\t\t<VERS vnumber=\"9\"> The border will continue to Ziphron, and its direction will be to Hazar Enan. This will be your northern border.</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"'For your eastern border you will draw a line from Hazar Enan to Shepham.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The border will run down from Shepham to Riblah, on the east side of Ain, and the border will descend and reach the eastern side of the Sea of Chinnereth.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Then the border will continue down the Jordan River and its direction will be to the Salt Sea. This will be your land by its borders that surround it.'\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> Then Moses commanded the Israelites: \"This is the land which you will inherit by lot, which the LORD has commanded to be given to the nine and a half tribes, </VERS>\n\t\t\t<VERS vnumber=\"14\"> because the tribe of the Reubenites by their families, the tribe of the Gadites by their families, and half of the tribe of Manasseh have received their inheritance. </VERS>\n\t\t\t<VERS vnumber=\"15\"> The two and a half tribes have received their inheritance on this side of the Jordan, east of Jericho, toward the sunrise.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> The LORD said to Moses:</VERS>\n\t\t\t<VERS vnumber=\"17\"> \"These are the names of the men who are to allocate the land to you as an inheritance: Eleazar the priest and Joshua son of Nun. </VERS>\n\t\t\t<VERS vnumber=\"18\"> You must take one leader from every tribe to assist in allocating the land as an inheritance.</VERS>\n\t\t\t<VERS vnumber=\"19\"> These are the names of the men: from the tribe of Judah, Caleb son of Jephunneh;</VERS>\n\t\t\t<VERS vnumber=\"20\"> from the tribe of the Simeonites, Shemuel son of Ammihud;</VERS>\n\t\t\t<VERS vnumber=\"21\"> from the tribe of Benjamin, Elidad son of Kislon;</VERS>\n\t\t\t<VERS vnumber=\"22\"> and from the tribe of the Danites, a leader, Bukki son of Jogli.</VERS>\n\t\t\t<VERS vnumber=\"23\"> From the Josephites, Hanniel son of Ephod, a leader from the tribe of Manasseh;</VERS>\n\t\t\t<VERS vnumber=\"24\"> from the tribe of the Ephraimites, a leader, Kemuel son of Shiphtan;</VERS>\n\t\t\t<VERS vnumber=\"25\"> from the tribe of the Zebulunites, a leader, Elizaphan son of Parnach;</VERS>\n\t\t\t<VERS vnumber=\"26\"> from the tribe of the Issacharites, a leader, Paltiel son of Azzan;</VERS>\n\t\t\t<VERS vnumber=\"27\"> from the tribe of the Asherites, a leader, Ahihud son of Shelomi;</VERS>\n\t\t\t<VERS vnumber=\"28\"> and from the tribe of the Naphtalites, a leader, Pedahel son of Ammihud.\"</VERS>\n\t\t\t<VERS vnumber=\"29\"> These are the ones whom the LORD commanded to divide up the inheritance among the Israelites in the land of Canaan.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"35\">\n\t\t\t<VERS vnumber=\"1\">  Then the LORD spoke to Moses in the Moabite plains by the Jordan near Jericho. He said: </VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Instruct the Israelites to give the Levites towns to live in from the inheritance the Israelites will possess. You must also give the Levites grazing land around the towns. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Thus they will have towns in which to live, and their grazing lands will be for their cattle, for their possessions, and for all their animals.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The grazing lands around the towns that you will give to the Levites must extend to a distance of 500 yards from the town wall.</VERS>\n\t\t\t<VERS vnumber=\"5\"> \"You must measure from outside the wall of the town on the east 1,000 yards, and on the south side 1,000 yards, and on the west side 1,000 yards, and on the north side 1,000 yards, with the town in the middle. This territory must belong to them as grazing land for the towns. </VERS>\n\t\t\t<VERS vnumber=\"6\"> Now from these towns that you will give to the Levites you must select six towns of refuge to which a person who has killed someone may flee. And you must give them forty-two other towns.</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"So the total of the towns you will give the Levites is forty-eight. You must give these together with their grazing lands.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The towns you will give must be from the possession of the Israelites. From the larger tribes you must give more; and from the smaller tribes fewer. Each must contribute some of its own towns to the Levites in proportion to the inheritance allocated to each.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Then the LORD spoke to Moses:</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"Speak to the Israelites and tell them, 'When you cross over the Jordan River into the land of Canaan, </VERS>\n\t\t\t<VERS vnumber=\"11\"> you must then designate some towns as towns of refuge for you, to which a person who has killed someone unintentionally may flee.</VERS>\n\t\t\t<VERS vnumber=\"12\"> And they must stand as your towns of refuge from the avenger in order that the killer may not die until he has stood trial before the community.</VERS>\n\t\t\t<VERS vnumber=\"13\"> These towns that you must give shall be your six towns for refuge.</VERS>\n\t\t\t<VERS vnumber=\"14\"> \"You must give three towns on this side of the Jordan, and you must give three towns in the land of Canaan; they must be towns of refuge.</VERS>\n\t\t\t<VERS vnumber=\"15\"> These six towns will be places of refuge for the Israelites, and for the foreigner, and for the settler among them, so that anyone who kills any person accidentally may flee there.</VERS>\n\t\t\t<VERS vnumber=\"16\"> \"But if he hits someone with an iron tool so that he dies, he is a murderer. The murderer must surely be put to death. </VERS>\n\t\t\t<VERS vnumber=\"17\"> If he strikes him by throwing a stone large enough that he could die, and he dies, he is a murderer. The murderer must surely be put to death.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Or if he strikes him with a wooden hand weapon so that he could die, and he dies, he is a murderer. The murderer must surely be put to death.</VERS>\n\t\t\t<VERS vnumber=\"19\"> The avenger of blood himself must kill the murderer; when he meets him, he must kill him.</VERS>\n\t\t\t<VERS vnumber=\"20\"> \"But if he strikes him out of hatred or throws something at him intentionally so that he dies, </VERS>\n\t\t\t<VERS vnumber=\"21\"> or with enmity he strikes him with his hand and he dies, the one who struck him must surely be put to death, for he is a murderer. The avenger of blood must kill the murderer when he meets him.</VERS>\n\t\t\t<VERS vnumber=\"22\"> \"But if he strikes him suddenly, without enmity, or throws anything at him unintentionally,</VERS>\n\t\t\t<VERS vnumber=\"23\"> or with any stone large enough that a man could die, without seeing him, and throws it at him, and he dies, even though he was not his enemy nor sought his harm,</VERS>\n\t\t\t<VERS vnumber=\"24\"> then the community must judge between the slayer and the avenger of blood according to these decisions.</VERS>\n\t\t\t<VERS vnumber=\"25\"> The community must deliver the slayer out of the hand of the avenger of blood, and the community must restore him to the town of refuge to which he fled, and he must live there until the death of the high priest, who was anointed with the consecrated oil.</VERS>\n\t\t\t<VERS vnumber=\"26\"> But if the slayer at any time goes outside the boundary of the town to which he had fled,</VERS>\n\t\t\t<VERS vnumber=\"27\"> and the avenger of blood finds him outside the borders of the town of refuge, and the avenger of blood kills the slayer, he will not be guilty of blood,</VERS>\n\t\t\t<VERS vnumber=\"28\"> because the slayer should have stayed in his town of refuge until the death of the high priest. But after the death of the high priest, the slayer may return to the land of his possessions. </VERS>\n\t\t\t<VERS vnumber=\"29\"> So these things must be a statutory ordinance for you throughout your generations, in all the places where you live.</VERS>\n\t\t\t<VERS vnumber=\"30\"> \"Whoever kills any person, the murderer must be put to death by the testimony of witnesses; but one witness cannot testify against any person to cause him to be put to death. </VERS>\n\t\t\t<VERS vnumber=\"31\"> Moreover, you must not accept a ransom for the life of a murderer who is guilty of death; he must surely be put to death.</VERS>\n\t\t\t<VERS vnumber=\"32\"> And you must not accept a ransom for anyone who has fled to a town of refuge, to allow him to return home and live on his own land before the death of the high priest.</VERS>\n\t\t\t<VERS vnumber=\"33\"> \"You must not pollute the land where you live, for blood defiles the land, and the land cannot be cleansed of the blood that is shed there, except by the blood of the person who shed it.</VERS>\n\t\t\t<VERS vnumber=\"34\"> Therefore do not defile the land that you will inhabit, in which I live, for I the LORD live among the Israelites.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"36\">\n\t\t\t<VERS vnumber=\"1\"> Then the heads of the family groups of the Gileadites, the descendant of Machir, the descendant of Manasseh, who were from the Josephite families, approached and spoke before Moses and the leaders who were the heads of the Israelite families.</VERS>\n\t\t\t<VERS vnumber=\"2\"> They said, \"The LORD commanded my lord to give the land as an inheritance by lot to the Israelites; and my lord was commanded by the LORD to give the inheritance of our brother Zelophehad to his daughters. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Now if they should be married to one of the men from another Israelite tribe, their inheritance would be taken from the inheritance of our fathers and added to the inheritance of the tribe into which they marry. As a result, it will be taken from the lot of our inheritance.</VERS>\n\t\t\t<VERS vnumber=\"4\"> And when the Jubilee of the Israelites is to take place, their inheritance will be added to the inheritance of the tribe into which they marry. So their inheritance will be taken away from the inheritance of our ancestral tribe.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> Then Moses gave a ruling to the Israelites by the word of the LORD: \"What the tribe of the Josephites is saying is right. </VERS>\n\t\t\t<VERS vnumber=\"6\"> This is what the LORD has commanded for Zelophehad's daughters: 'Let them marry whomever they think best, only they must marry within the family of their father's tribe. </VERS>\n\t\t\t<VERS vnumber=\"7\"> In this way the inheritance of the Israelites will not be transferred from tribe to tribe. But every one of the Israelites must retain the ancestral heritage. </VERS>\n\t\t\t<VERS vnumber=\"8\"> And every daughter who possesses an inheritance from any of the tribes of the Israelites must become the wife of a man from any family in her father's tribe, so that every Israelite may retain the inheritance of his fathers. </VERS>\n\t\t\t<VERS vnumber=\"9\"> No inheritance may pass from tribe to tribe. But every one of the tribes of the Israelites must retain its inheritance.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> As the LORD had commanded Moses, so the daughters of Zelophehad did.</VERS>\n\t\t\t<VERS vnumber=\"11\"> For the daughters of Zelophehad, Mahlah, Tirzah, Hoglah, Milcah, and Noah, were married to the sons of their uncles.</VERS>\n\t\t\t<VERS vnumber=\"12\"> They were married into the families of the Manassehites, the descendants of Joseph, and their inheritance remained in the tribe of their father's family.</VERS>\n\t\t\t<VERS vnumber=\"13\"> These are the commandments and the decisions that the LORD commanded the Israelites through the authority of Moses, on the plains of Moab by the Jordan River opposite Jericho.</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"5\" bname=\"Deuteronomy\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> This is what Moses said to the assembly of Israel in the Transjordanian wastelands, the arid country opposite Suph, between Paran and Tophel, Laban, Hazeroth, and Di Zahab</VERS>\n\t\t\t<VERS vnumber=\"2\"> Now it is ordinarily an eleven-day journey from Horeb to Kadesh Barnea by way of Mount Seir.</VERS>\n\t\t\t<VERS vnumber=\"3\"> However, it was not until the first day of the eleventh month of the fortieth year that Moses addressed the Israelites just as the LORD had instructed him to do. </VERS>\n\t\t\t<VERS vnumber=\"4\"> This took place after the defeat of King Sihon of the Amorites, whose capital was in Heshbon, and King Og of Bashan, whose capital was in Ashtaroth, specifically in Edrei.</VERS>\n\t\t\t<VERS vnumber=\"5\"> So it was in the Transjordan, in Moab, that Moses began to deliver these words:</VERS>\n\t\t\t<VERS vnumber=\"6\"> The LORD our God spoke to us at Horeb and said, \"You have stayed in the area of this mountain long enough. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Get up now, resume your journey, heading for the Amorite hill country, to all its areas including the arid country, the highlands, the Shephelah, the Negev, and the coastal plain, all of Canaan and Lebanon as far as the Great River, that is, the Euphrates.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Look! I have already given the land to you. Go, occupy the territory that I, the LORD, promised to give to your ancestors Abraham, Isaac, and Jacob, and to their descendants.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> I also said to you at that time, \"I am no longer able to sustain you by myself.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The LORD your God has increased your population to the point that you are now as numerous as the very stars of the sky.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Indeed, may the LORD, the God of your ancestors, make you a thousand times more numerous than you are now, blessing you just as he said he would!</VERS>\n\t\t\t<VERS vnumber=\"12\"> But how can I alone bear up under the burden of your hardship and strife?</VERS>\n\t\t\t<VERS vnumber=\"13\"> Select wise and practical men, those known among your tribes, whom I may appoint as your leaders.\" </VERS>\n\t\t\t<VERS vnumber=\"14\"> You replied to me that what I had said to you was good.</VERS>\n\t\t\t<VERS vnumber=\"15\"> So I chose as your tribal leaders wise and well-known men, placing them over you as administrators of groups of thousands, hundreds, fifties, and tens, and also as other tribal officials. </VERS>\n\t\t\t<VERS vnumber=\"16\"> I furthermore admonished your judges at that time that they should pay attention to issues among your fellow citizens and judge fairly, whether between one citizen and another or a citizen and a resident foreigner.</VERS>\n\t\t\t<VERS vnumber=\"17\"> They must not discriminate in judgment, but hear the lowly and the great alike. Nor should they be intimidated by human beings, for judgment belongs to God. If the matter being adjudicated is too difficult for them, they should bring it before me for a hearing.</VERS>\n\t\t\t<VERS vnumber=\"18\"> So I instructed you at that time regarding everything you should do.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Then we left Horeb and passed through all that immense, forbidding wilderness that you saw on the way to the Amorite hill country as the LORD our God had commanded us to do, finally arriving at Kadesh Barnea.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Then I said to you, \"You have come to the Amorite hill country which the LORD our God is about to give us. </VERS>\n\t\t\t<VERS vnumber=\"21\"> Look, he has placed the land in front of you! Go up, take possession of it, just as the LORD, the God of your ancestors, said to do. Do not be afraid or discouraged!\" </VERS>\n\t\t\t<VERS vnumber=\"22\"> So all of you approached me and said, \"Let's send some men ahead of us to scout out the land and bring us back word as to how we should attack it and what the cities are like there.\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> I thought this was a good idea, so I sent twelve men from among you, one from each tribe. </VERS>\n\t\t\t<VERS vnumber=\"24\"> They left and went up to the hill country, coming to the Eshcol Valley, which they scouted out. </VERS>\n\t\t\t<VERS vnumber=\"25\"> Then they took some of the produce of the land and carried it back down to us. They also brought a report to us, saying, \"The land that the LORD our God is about to give us is good.\"</VERS>\n\t\t\t<VERS vnumber=\"26\"> You were not willing to go up, however, but instead rebelled against the LORD your God.</VERS>\n\t\t\t<VERS vnumber=\"27\"> You complained among yourselves privately and said, \"Because the LORD hates us he brought us from Egypt to deliver us over to the Amorites so they could destroy us! </VERS>\n\t\t\t<VERS vnumber=\"28\"> What is going to happen to us? Our brothers have drained away our courage by describing people who are more numerous and taller than we are, and great cities whose defenses appear to be as high as heaven itself! Moreover, they said they saw Anakites there.\" </VERS>\n\t\t\t<VERS vnumber=\"29\"> So I responded to you, \"Do not be terrified of them! </VERS>\n\t\t\t<VERS vnumber=\"30\"> The LORD your God is about to go ahead of you; he will fight for you, just as you saw him do in Egypt</VERS>\n\t\t\t<VERS vnumber=\"31\"> and in the desert, where you saw him carrying you along like a man carries his son. This he did everywhere you went until you came to this very place.\" </VERS>\n\t\t\t<VERS vnumber=\"32\"> However, through all this you did not have confidence in the LORD your God,</VERS>\n\t\t\t<VERS vnumber=\"33\"> the one who was constantly going before you to find places for you to set up camp. He appeared by fire at night and cloud by day, to show you the way you ought to go.</VERS>\n\t\t\t<VERS vnumber=\"34\"> When the LORD heard you, he became angry and made this vow:</VERS>\n\t\t\t<VERS vnumber=\"35\"> \"Not a single person of this evil generation will see the good land that I promised to give to your ancestors! </VERS>\n\t\t\t<VERS vnumber=\"36\"> The exception is Caleb son of Jephunneh; he will see it and I will give him and his descendants the territory on which he has walked, because he has wholeheartedly followed me.\"</VERS>\n\t\t\t<VERS vnumber=\"37\"> As for me, the LORD was also angry with me on your account. He said, \"You also will not be able to go there.</VERS>\n\t\t\t<VERS vnumber=\"38\"> However, Joshua son of Nun, your assistant, will go. Encourage him, because he will enable Israel to inherit the land.</VERS>\n\t\t\t<VERS vnumber=\"39\"> Also, your infants, who you thought would die on the way, and your children, who as yet do not know good from bad, will go there; I will give them the land and they will possess it. </VERS>\n\t\t\t<VERS vnumber=\"40\"> But as for you, turn back and head for the desert by the way to the Red Sea.\"</VERS>\n\t\t\t<VERS vnumber=\"41\"> Then you responded to me and admitted, \"We have sinned against the LORD. We will now go up and fight as the LORD our God has told us to do.\" So you each put on your battle gear and prepared to go up to the hill country.</VERS>\n\t\t\t<VERS vnumber=\"42\"> But the LORD told me: \"Tell them this: 'Do not go up and fight, because I will not be with you and you will be defeated by your enemies.'\"</VERS>\n\t\t\t<VERS vnumber=\"43\"> I spoke to you, but you did not listen. Instead you rebelled against the LORD and recklessly went up to the hill country. </VERS>\n\t\t\t<VERS vnumber=\"44\"> The Amorite inhabitants of that area confronted you and chased you like a swarm of bees, striking you down from Seir as far as Hormah.</VERS>\n\t\t\t<VERS vnumber=\"45\"> Then you came back and wept before the LORD, but he paid no attention to you whatsoever.</VERS>\n\t\t\t<VERS vnumber=\"46\"> Therefore, you remained at Kadesh for a long time, indeed, for the full time.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> Then we turned and set out toward the desert land on the way to the Red Sea just as the LORD told me to do, detouring around Mount Seir for a long time. </VERS>\n\t\t\t<VERS vnumber=\"2\"> At this point the LORD said to me,</VERS>\n\t\t\t<VERS vnumber=\"3\"> \"You have circled around this mountain long enough; now turn north.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Instruct these people as follows: 'You are about to cross the border of your relatives the descendants of Esau, who inhabit Seir. They will be afraid of you, so watch yourselves carefully. </VERS>\n\t\t\t<VERS vnumber=\"5\"> Do not be hostile toward them, because I am not giving you any of their land, not even a footprint, for I have given Mount Seir as an inheritance for Esau. </VERS>\n\t\t\t<VERS vnumber=\"6\"> You may purchase food to eat and water to drink from them. </VERS>\n\t\t\t<VERS vnumber=\"7\"> All along the way I, the LORD your God, have blessed your every effort. I have been attentive to your travels through this great wasteland. These forty years I have been with you; you have lacked for nothing.'\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> So we turned away from our relatives the descendants of Esau, the inhabitants of Seir, turning from the desert route, from Elat and Ezion Geber, and traveling the way of the Moab wastelands. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Then the LORD said to me, \"Do not harass Moab and provoke them to war, for I will not give you any of their land as your territory. This is because I have given Ar to the descendants of Lot as their possession.</VERS>\n\t\t\t<VERS vnumber=\"10\"> (The Emites used to live there, a people as powerful, numerous, and tall as the Anakites. </VERS>\n\t\t\t<VERS vnumber=\"11\"> These people, as well as the Anakites, are also considered Rephaites; the Moabites call them Emites. </VERS>\n\t\t\t<VERS vnumber=\"12\"> Previously the Horites lived in Seir but the descendants of Esau dispossessed and destroyed them and settled in their place, just as Israel did to the land it came to possess, the land the LORD gave them.)</VERS>\n\t\t\t<VERS vnumber=\"13\"> Now, get up and cross the Wadi Zered.\" So we did so.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Now the length of time it took for us to go from Kadesh Barnea to the crossing of Wadi Zered was thirty-eight years, time for all the military men of that generation to die, just as the LORD had vowed to them.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Indeed, it was the very hand of the LORD that eliminated them from within the camp until they were all gone.</VERS>\n\t\t\t<VERS vnumber=\"16\"> So it was that after all the military men had been eliminated from the community,</VERS>\n\t\t\t<VERS vnumber=\"17\"> the LORD said to me,</VERS>\n\t\t\t<VERS vnumber=\"18\"> \"Today you are going to cross the border of Moab, that is, of Ar.</VERS>\n\t\t\t<VERS vnumber=\"19\"> But when you come close to the Ammonites, do not harass or provoke them because I am not giving you any of the Ammonites' land as your possession; I have already given it to Lot's descendants as their possession.</VERS>\n\t\t\t<VERS vnumber=\"20\"> (That also is considered to be a land of the Rephaites. The Rephaites lived there originally; the Ammonites call them Zamzummites.</VERS>\n\t\t\t<VERS vnumber=\"21\"> They are a people as powerful, numerous, and tall as the Anakites. But the LORD destroyed the Rephaites in advance of the Ammonites, so they dispossessed them and settled down in their place. </VERS>\n\t\t\t<VERS vnumber=\"22\"> This is exactly what he did for the descendants of Esau who lived in Seir when he destroyed the Horites before them so that they could dispossess them and settle in their area to this very day.</VERS>\n\t\t\t<VERS vnumber=\"23\"> As for the Avvites who lived in settlements as far west as Gaza, Caphtorites who came from Crete destroyed them and settled down in their place.)</VERS>\n\t\t\t<VERS vnumber=\"24\"> Get up, make your way across Wadi Arnon. Look! I have already delivered over to you Sihon the Amorite, king of Heshbon, and his land. Go ahead! Take it! Engage him in war! </VERS>\n\t\t\t<VERS vnumber=\"25\"> This very day I will begin to fill all the people of the earth with dread and to terrify them when they hear about you. They will shiver and shake in anticipation of your approach.\"</VERS>\n\t\t\t<VERS vnumber=\"26\"> Then I sent messengers from the Kedemoth Desert to King Sihon of Heshbon with an offer of peace: </VERS>\n\t\t\t<VERS vnumber=\"27\"> \"Let me pass through your land; I will keep strictly to the roadway. I will not turn aside to the right or the left.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Sell me food for cash so that I can eat and sell me water to drink. Just allow me to go through on foot, </VERS>\n\t\t\t<VERS vnumber=\"29\"> just as the descendants of Esau who live at Seir and the Moabites who live in Ar did for me, until I cross the Jordan to the land the LORD our God is giving us.\"</VERS>\n\t\t\t<VERS vnumber=\"30\"> But King Sihon of Heshbon was unwilling to allow us to pass near him because the LORD our God had made him obstinate and stubborn so that he might deliver him over to you this very day. </VERS>\n\t\t\t<VERS vnumber=\"31\"> The LORD said to me, \"Look! I have already begun to give over Sihon and his land to you. Start right now to take his land as your possession.\"</VERS>\n\t\t\t<VERS vnumber=\"32\"> When Sihon and all his troops emerged to encounter us in battle at Jahaz,</VERS>\n\t\t\t<VERS vnumber=\"33\"> the LORD our God delivered him over to us and we struck him down, along with his sons and everyone else.</VERS>\n\t\t\t<VERS vnumber=\"34\"> At that time we seized all his cities and put every one of them under divine judgment, including even the women and children; we left no survivors. </VERS>\n\t\t\t<VERS vnumber=\"35\"> We kept only the livestock and plunder from the cities for ourselves.</VERS>\n\t\t\t<VERS vnumber=\"36\"> From Aroer, which is at the edge of Wadi Arnon (it is the city in the wadi), all the way to Gilead there was not a town able to resist us, the LORD our God gave them all to us.</VERS>\n\t\t\t<VERS vnumber=\"37\"> However, you did not approach the land of the Ammonites, the Wadi Jabbok, the cities of the hill country, or any place else forbidden by the LORD our God.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> Next we set out on the route to Bashan, but King Og of Bashan and his whole army came out to meet us in battle at Edrei.</VERS>\n\t\t\t<VERS vnumber=\"2\"> The LORD, however, said to me, \"Don't be afraid of him because I have already given him, his whole army, and his land to you. You will do to him exactly what you did to King Sihon of the Amorites who lived in Heshbon.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> So the LORD our God did indeed give over to us King Og of Bashan and his whole army and we struck them down until not a single survivor was left.</VERS>\n\t\t\t<VERS vnumber=\"4\"> We captured all his cities at that time, there was not a town we did not take from them, sixty cities, all the region of Argob, the dominion of Og in Bashan.</VERS>\n\t\t\t<VERS vnumber=\"5\"> All of these cities were fortified by high walls, gates, and locking bars; in addition there were a great many open villages.</VERS>\n\t\t\t<VERS vnumber=\"6\"> We put all of these under divine judgment just as we had done to King Sihon of Heshbon, every occupied city, including women and children.</VERS>\n\t\t\t<VERS vnumber=\"7\"> But all the livestock and plunder from the cities we kept for ourselves.</VERS>\n\t\t\t<VERS vnumber=\"8\"> So at that time we took the land of the two Amorite kings in the Transjordan from Wadi Arnon to Mount Hermon</VERS>\n\t\t\t<VERS vnumber=\"9\"> (the Sidonians call Hermon Sirion and the Amorites call it Senir),</VERS>\n\t\t\t<VERS vnumber=\"10\"> all the cities of the plateau, all of Gilead and Bashan as far as Salecah and Edrei, cities of the kingdom of Og in Bashan. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Only King Og of Bashan was left of the remaining Rephaites. (It is noteworthy that his sarcophagus was made of iron. Does it not, indeed, still remain in Rabbath of the Ammonites? It is thirteen and a half feet long and six feet wide according to standard measure.)</VERS>\n\t\t\t<VERS vnumber=\"12\"> This is the land we brought under our control at that time: The territory extending from Aroer by the Wadi Arnon and half the Gilead hill country with its cities I gave to the Reubenites and Gadites.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The rest of Gilead and all of Bashan, the kingdom of Og, I gave to half the tribe of Manasseh. (All the region of Argob, that is, all Bashan, is called the land of Rephaim. </VERS>\n\t\t\t<VERS vnumber=\"14\"> Jair, son of Manasseh, took all the Argob region as far as the border with the Geshurites and Maacathites (namely Bashan) and called it by his name, Havvoth-Jair, which it retains to this very day.)</VERS>\n\t\t\t<VERS vnumber=\"15\"> I gave Gilead to Machir.</VERS>\n\t\t\t<VERS vnumber=\"16\"> To the Reubenites and Gadites I allocated the territory extending from Gilead as far as Wadi Arnon (the exact middle of the wadi was a boundary) all the way to the Wadi Jabbok, the Ammonite border.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The Arabah and the Jordan River were also a border, from the sea of Chinnereth to the sea of the Arabah (that is, the Salt Sea), beneath the watershed of Pisgah to the east.</VERS>\n\t\t\t<VERS vnumber=\"18\"> At that time I instructed you as follows: \"The LORD your God has given you this land for your possession. You warriors are to cross over before your fellow Israelites equipped for battle. </VERS>\n\t\t\t<VERS vnumber=\"19\"> But your wives, children, and livestock (of which I know you have many) may remain in the cities I have given you.</VERS>\n\t\t\t<VERS vnumber=\"20\"> You must fight until the LORD gives your countrymen victory as he did you and they take possession of the land that the LORD your God is giving them on the other side of the Jordan River. Then each of you may return to his own territory that I have given you.\" </VERS>\n\t\t\t<VERS vnumber=\"21\"> I also commanded Joshua at the same time, \"You have seen everything the LORD your God did to these two kings; he will do the same to all the kingdoms where you are going.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Do not be afraid of them, for the LORD your God will personally fight for you.\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> Moreover, at that time I pleaded with the LORD,</VERS>\n\t\t\t<VERS vnumber=\"24\"> \"O, Lord GOD, you have begun to show me your greatness and strength. (What god in heaven or earth can rival your works and mighty deeds?) </VERS>\n\t\t\t<VERS vnumber=\"25\"> Let me please cross over to see the good land on the other side of the Jordan River, this good hill country and the Lebanon!\"</VERS>\n\t\t\t<VERS vnumber=\"26\"> But the LORD was angry at me because of you and would not listen to me. Instead, he said to me, \"Enough of that! Do not speak to me anymore about this matter. </VERS>\n\t\t\t<VERS vnumber=\"27\"> Go up to the top of Pisgah and take a good look to the west, north, south, and east, for you will not be allowed to cross the Jordan. </VERS>\n\t\t\t<VERS vnumber=\"28\"> Commission Joshua, and encourage and strengthen him, because he will lead these people over and will enable them to inherit the land you will see.\" </VERS>\n\t\t\t<VERS vnumber=\"29\"> So we settled down in the valley opposite Beth Peor.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\"> Now, Israel, pay attention to the statutes and ordinances I am about to teach you, so that you might live and go on to enter and take possession of the land that the LORD, the God of your ancestors, is giving you. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Do not add a thing to what I command you nor subtract from it, so that you may keep the commandments of the LORD your God that I am delivering to you. </VERS>\n\t\t\t<VERS vnumber=\"3\"> You have witnessed what the LORD did at Baal Peor, how he eradicated from your midst everyone who followed Baal Peor.</VERS>\n\t\t\t<VERS vnumber=\"4\"> But you who remained faithful to the LORD your God are still alive to this very day, every one of you.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Look! I have taught you statutes and ordinances just as the LORD my God told me to do, so that you might carry them out in the land you are about to enter and possess. </VERS>\n\t\t\t<VERS vnumber=\"6\"> So be sure to do them, because this will testify of your wise understanding to the people who will learn of all these statutes and say, \"Indeed, this great nation is a very wise people.\" </VERS>\n\t\t\t<VERS vnumber=\"7\"> In fact, what other great nation has a god so near to them like the LORD our God whenever we call on him?</VERS>\n\t\t\t<VERS vnumber=\"8\"> And what other great nation has statutes and ordinances as just as this whole law that I am about to share with you today?</VERS>\n\t\t\t<VERS vnumber=\"9\"> Again, however, pay very careful attention, lest you forget the things you have seen and disregard them for the rest of your life; instead teach them to your children and grandchildren.</VERS>\n\t\t\t<VERS vnumber=\"10\"> You stood before the LORD your God at Horeb and he said to me, \"Assemble the people before me so that I can tell them my commands. Then they will learn to revere me all the days they live in the land, and they will instruct their children.\" </VERS>\n\t\t\t<VERS vnumber=\"11\"> You approached and stood at the foot of the mountain, a mountain ablaze to the sky above it and yet dark with a thick cloud.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Then the LORD spoke to you from the middle of the fire; you heard speech but you could not see anything, only a voice was heard.</VERS>\n\t\t\t<VERS vnumber=\"13\"> And he revealed to you the covenant he has commanded you to keep, the ten commandments, writing them on two stone tablets. </VERS>\n\t\t\t<VERS vnumber=\"14\"> Moreover, at that same time the LORD commanded me to teach you statutes and ordinances for you to keep in the land which you are about to enter and possess.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Be very careful, then, because you saw no form at the time the LORD spoke to you at Horeb from the middle of the fire. </VERS>\n\t\t\t<VERS vnumber=\"16\"> I say this so you will not corrupt yourselves by making an image in the form of any kind of figure. This includes the likeness of a human male or female,</VERS>\n\t\t\t<VERS vnumber=\"17\"> any kind of land animal, any bird that flies in the sky,</VERS>\n\t\t\t<VERS vnumber=\"18\"> anything that crawls on the ground, or any fish in the deep waters of the earth.</VERS>\n\t\t\t<VERS vnumber=\"19\"> When you look up to the sky and see the sun, moon, and stars, the whole heavenly creation, you must not be seduced to worship and serve them, for the LORD your God has assigned them to all the people of the world.</VERS>\n\t\t\t<VERS vnumber=\"20\"> You, however, the LORD has selected and brought from Egypt, that iron-smelting furnace, to be his special people as you are today. </VERS>\n\t\t\t<VERS vnumber=\"21\"> But the LORD became angry with me because of you and vowed that I would never cross the Jordan nor enter the good land that he is about to give you.</VERS>\n\t\t\t<VERS vnumber=\"22\"> So I must die here in this land; I will not cross the Jordan. But you are going over and will possess that good land. </VERS>\n\t\t\t<VERS vnumber=\"23\"> Be on guard so that you do not forget the covenant of the LORD your God that he has made with you, and that you do not make an image of any kind, just as he has forbidden you. </VERS>\n\t\t\t<VERS vnumber=\"24\"> For the LORD your God is a consuming fire; he is a jealous God.</VERS>\n\t\t\t<VERS vnumber=\"25\"> After you have produced children and grandchildren and have been in the land a long time, if you become corrupt and make an image of any kind and do other evil things before the LORD your God that enrage him,</VERS>\n\t\t\t<VERS vnumber=\"26\"> I invoke heaven and earth as witnesses against you today that you will surely and swiftly be removed from the very land you are about to cross the Jordan to possess. You will not last long there because you will surely be annihilated. </VERS>\n\t\t\t<VERS vnumber=\"27\"> Then the LORD will scatter you among the peoples and there will be very few of you among the nations where the LORD will drive you. </VERS>\n\t\t\t<VERS vnumber=\"28\"> There you will worship gods made by human hands, wood and stone that can neither see, hear, eat, nor smell.</VERS>\n\t\t\t<VERS vnumber=\"29\"> But if you seek the LORD your God from there, you will find him, if, indeed, you seek him with all your heart and soul.</VERS>\n\t\t\t<VERS vnumber=\"30\"> In your distress when all these things happen to you in the latter days, if you return to the LORD your God and obey him</VERS>\n\t\t\t<VERS vnumber=\"31\"> (for he is a merciful God), he will not let you down or destroy you, for he cannot forget the covenant with your ancestors that he confirmed by oath to them.</VERS>\n\t\t\t<VERS vnumber=\"32\"> Indeed, ask about the distant past, starting from the day God created humankind on the earth, and ask from one end of heaven to the other, whether there has ever been such a great thing as this, or even a rumor of it. </VERS>\n\t\t\t<VERS vnumber=\"33\"> Have a people ever heard the voice of God speaking from the middle of fire, as you yourselves have, and lived to tell about it?</VERS>\n\t\t\t<VERS vnumber=\"34\"> Or has God ever before tried to deliver a nation from the middle of another nation, accompanied by judgments, signs, wonders, war, strength, power, and other very terrifying things like the LORD your God did for you in Egypt before your very eyes? </VERS>\n\t\t\t<VERS vnumber=\"35\"> You have been taught that the LORD alone is God, there is no other besides him.</VERS>\n\t\t\t<VERS vnumber=\"36\"> From heaven he spoke to you in order to teach you, and on earth he showed you his great fire from which you also heard his words.</VERS>\n\t\t\t<VERS vnumber=\"37\"> Moreover, because he loved your ancestors, he chose their descendants who followed them and personally brought you out of Egypt with his great power </VERS>\n\t\t\t<VERS vnumber=\"38\"> to dispossess nations greater and stronger than you and brought you here this day to give you their land as your property.</VERS>\n\t\t\t<VERS vnumber=\"39\"> Today realize and carefully consider that the LORD is God in heaven above and on earth below, there is no other!</VERS>\n\t\t\t<VERS vnumber=\"40\"> Keep his statutes and commandments that I am setting forth today so that it may go well with you and your descendants and that you may enjoy longevity in the land that the LORD your God is about to give you as a permanent possession.</VERS>\n\t\t\t<VERS vnumber=\"41\"> Then Moses selected three cities in the Transjordan, toward the east.</VERS>\n\t\t\t<VERS vnumber=\"42\"> Anyone who accidentally killed someone without hating him at the time of the accident could flee to one of those cities and be safe. </VERS>\n\t\t\t<VERS vnumber=\"43\"> These cities are Bezer, in the desert plateau, for the Reubenites; Ramoth in Gilead for the Gadites; and Golan in Bashan for the Manassehites.</VERS>\n\t\t\t<VERS vnumber=\"44\"> This is the law that Moses set before the Israelites.</VERS>\n\t\t\t<VERS vnumber=\"45\"> These are the stipulations, statutes, and ordinances that Moses spoke to the Israelites after he had brought them out of Egypt,</VERS>\n\t\t\t<VERS vnumber=\"46\"> in the Transjordan, in the valley opposite Beth Peor, in the land of King Sihon of the Amorites, who lived in Heshbon. (It is he whom Moses and the Israelites attacked after they came out of Egypt.</VERS>\n\t\t\t<VERS vnumber=\"47\"> They possessed his land and that of King Og of Bashan, both of whom were Amorite kings in the Transjordan, to the east.</VERS>\n\t\t\t<VERS vnumber=\"48\"> Their territory extended from Aroer at the edge of the Arnon valley as far as Mount Siyon, that is, Hermon,</VERS>\n\t\t\t<VERS vnumber=\"49\"> including all the Arabah of the Transjordan in the east to the sea of the Arabah, beneath the watershed of Pisgah.)</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"5\">\n\t\t\t<VERS vnumber=\"1\"> Then Moses called all the people of Israel together and said to them: \"Listen, Israel, to the statutes and ordinances that I am about to deliver to you today; learn them and be careful to keep them! </VERS>\n\t\t\t<VERS vnumber=\"2\"> The LORD our God made a covenant with us at Horeb.</VERS>\n\t\t\t<VERS vnumber=\"3\"> He did not make this covenant with our ancestors but with us, we who are here today, all of us living now. </VERS>\n\t\t\t<VERS vnumber=\"4\"> The LORD spoke face to face with you at the mountain, from the middle of the fire.</VERS>\n\t\t\t<VERS vnumber=\"5\"> (I was standing between the LORD and you at that time to reveal to you the message of the LORD, because you were afraid of the fire and would not go up the mountain.) He said:</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"I am the LORD your God, he who brought you from the land of Egypt, from the place of slavery.</VERS>\n\t\t\t<VERS vnumber=\"7\"> You must not have any other gods besides me.</VERS>\n\t\t\t<VERS vnumber=\"8\"> You must not make for yourself an image of anything in heaven above, on earth below, or in the waters beneath.</VERS>\n\t\t\t<VERS vnumber=\"9\"> You must not worship or serve them, for I, the LORD your God, am a jealous God. I punish the sons, grandsons, and great-grandsons for the sin of the fathers who reject me,</VERS>\n\t\t\t<VERS vnumber=\"10\"> but I show covenant faithfulness to the thousands who choose me and keep my commandments. </VERS>\n\t\t\t<VERS vnumber=\"11\"> You must not make use of the name of the LORD your God for worthless purposes, for the LORD will not exonerate anyone who abuses his name that way.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Be careful to observe the Sabbath day just as the LORD your God has commanded you. </VERS>\n\t\t\t<VERS vnumber=\"13\"> You are to work and do all your tasks in six days,</VERS>\n\t\t\t<VERS vnumber=\"14\"> but the seventh day is the Sabbath of the LORD your God. On that day you must not do any work, you, your son, your daughter, your male slave, your female slave, your ox, your donkey, any other animal, or the foreigner who lives with you, so that your male and female slaves, like yourself, may have rest. </VERS>\n\t\t\t<VERS vnumber=\"15\"> Recall that you were slaves in the land of Egypt and that the LORD your God brought you out of there by strength and power. That is why the LORD your God has commanded you to observe the Sabbath day. </VERS>\n\t\t\t<VERS vnumber=\"16\"> Honor your father and your mother just as the LORD your God has commanded you to do, so that your days may be extended and that it may go well with you in the land that he is about to give you. </VERS>\n\t\t\t<VERS vnumber=\"17\"> You must not murder.</VERS>\n\t\t\t<VERS vnumber=\"18\"> You must not commit adultery.</VERS>\n\t\t\t<VERS vnumber=\"19\"> You must not steal.</VERS>\n\t\t\t<VERS vnumber=\"20\"> You must not offer false testimony against another.</VERS>\n\t\t\t<VERS vnumber=\"21\"> You must not desire another man's wife, nor should you crave his house, his field, his male and female servants, his ox, his donkey, or anything else he owns.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> The LORD said these things to your entire assembly at the mountain from the middle of the fire, the cloud, and the darkness with a loud voice, and that was all he said. Then he inscribed the words on two stone tablets and gave them to me. </VERS>\n\t\t\t<VERS vnumber=\"23\"> Then, when you heard the voice from the midst of the darkness while the mountain was ablaze, all your tribal leaders and elders approached me.</VERS>\n\t\t\t<VERS vnumber=\"24\"> You said, \"The LORD our God has shown us his great glory and we have heard him speak from the middle of the fire. It is now clear to us that God can speak to human beings and they can keep on living. </VERS>\n\t\t\t<VERS vnumber=\"25\"> But now, why should we die, because this intense fire will consume us! If we keep hearing the voice of the LORD our God we will die!</VERS>\n\t\t\t<VERS vnumber=\"26\"> Who is there from the entire human race who has heard the voice of the living God speaking from the middle of the fire as we have, and has lived? </VERS>\n\t\t\t<VERS vnumber=\"27\"> You go near so that you can hear everything the LORD our God is saying and then you can tell us whatever he says to you; then we will pay attention and do it.\" </VERS>\n\t\t\t<VERS vnumber=\"28\"> When the LORD heard you speaking to me, he said to me, \"I have heard what these people have said to you, they have spoken well.</VERS>\n\t\t\t<VERS vnumber=\"29\"> If only it would really be their desire to fear me and obey all my commandments in the future, so that it may go well with them and their descendants forever.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Go and tell them, 'Return to your tents!'</VERS>\n\t\t\t<VERS vnumber=\"31\"> But as for you, remain here with me so I can declare to you all the commandments, statutes, and ordinances that you are to teach them, so that they can carry them out in the land I am about to give them.\"</VERS>\n\t\t\t<VERS vnumber=\"32\"> Be careful, therefore, to do exactly what the LORD your God has commanded you; do not turn right or left!</VERS>\n\t\t\t<VERS vnumber=\"33\"> Walk just as he has commanded you so that you may live, that it may go well with you, and that you may live long in the land you are going to possess.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"6\">\n\t\t\t<VERS vnumber=\"1\"> Now these are the commandments, statutes, and ordinances that the LORD your God instructed me to teach you so that you may carry them out in the land where you are headed</VERS>\n\t\t\t<VERS vnumber=\"2\"> and that you may so revere the LORD your God that you will keep all his statutes and commandments that I am giving you, you, your children, and your grandchildren, all your lives, to prolong your days.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Pay attention, Israel, and be careful to do this so that it may go well with you and that you may increase greatly in number, as the LORD, God of your ancestors, said to you, you will have a land flowing with milk and honey.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Listen, Israel: The LORD is our God, the LORD is one!</VERS>\n\t\t\t<VERS vnumber=\"5\"> You must love the LORD your God with your whole mind, your whole being, and all your strength.</VERS>\n\t\t\t<VERS vnumber=\"6\"> These words I am commanding you today must be kept in mind,</VERS>\n\t\t\t<VERS vnumber=\"7\"> and you must teach them to your children and speak of them as you sit in your house, as you walk along the road, as you lie down, and as you get up. </VERS>\n\t\t\t<VERS vnumber=\"8\"> You should tie them as a reminder on your forearm and fasten them as symbols on your forehead. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Inscribe them on the doorframes of your houses and gates.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Then when the LORD your God brings you to the land he promised your ancestors Abraham, Isaac, and Jacob to give you, a land with large, fine cities you did not build,</VERS>\n\t\t\t<VERS vnumber=\"11\"> houses filled with choice things you did not accumulate, hewn out cisterns you did not dig, and vineyards and olive groves you did not plant, and you eat your fill,</VERS>\n\t\t\t<VERS vnumber=\"12\"> be careful not to forget the LORD who brought you out of Egypt, that place of slavery.</VERS>\n\t\t\t<VERS vnumber=\"13\"> You must revere the LORD your God, serve him, and take oaths using only his name.</VERS>\n\t\t\t<VERS vnumber=\"14\"> You must not go after other gods, those of the surrounding peoples, </VERS>\n\t\t\t<VERS vnumber=\"15\"> for the LORD your God, who is present among you, is a jealous God and his anger will erupt against you and remove you from the land.</VERS>\n\t\t\t<VERS vnumber=\"16\"> You must not put the LORD your God to the test as you did at Massah.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Keep his commandments very carefully, as well as the stipulations and statutes he commanded you to observe. </VERS>\n\t\t\t<VERS vnumber=\"18\"> Do whatever is proper and good before the LORD so that it may go well with you and that you may enter and occupy the good land that he promised your ancestors, </VERS>\n\t\t\t<VERS vnumber=\"19\"> and that you may drive out all your enemies just as the LORD said.</VERS>\n\t\t\t<VERS vnumber=\"20\"> When your children ask you later on, \"What are the stipulations, statutes, and ordinances that the LORD our God commanded you?\" </VERS>\n\t\t\t<VERS vnumber=\"21\"> you must say to them, \"We were Pharaoh's slaves in Egypt, but the LORD brought us out of Egypt in a powerful way.</VERS>\n\t\t\t<VERS vnumber=\"22\"> And he brought signs and great, devastating wonders on Egypt, on Pharaoh, and on his whole family before our very eyes. </VERS>\n\t\t\t<VERS vnumber=\"23\"> He delivered us from there so that he could give us the land he had promised our ancestors.</VERS>\n\t\t\t<VERS vnumber=\"24\"> The LORD commanded us to obey all these statutes and to revere him so that it may always go well for us and he may preserve us, as he has to this day. </VERS>\n\t\t\t<VERS vnumber=\"25\"> We will be innocent if we carefully keep all these commandments before the LORD our God, just as he demands.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"7\">\n\t\t\t<VERS vnumber=\"1\"> When the LORD your God brings you to the land that you are going to occupy and forces out many nations before you, Hittites, Girgashites, Amorites, Canaanites, Perizzites, Hivites, and Jebusites, seven nations more numerous and powerful than you,</VERS>\n\t\t\t<VERS vnumber=\"2\"> and he delivers them over to you and you attack them, you must utterly annihilate them. Make no treaty with them and show them no mercy! </VERS>\n\t\t\t<VERS vnumber=\"3\"> You must not intermarry with them. Do not give your daughters to their sons or take their daughters for your sons,</VERS>\n\t\t\t<VERS vnumber=\"4\"> for they will turn your sons away from me to worship other gods. Then the anger of the LORD will erupt against you and he will quickly destroy you.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Instead, this is what you must do to them: You must tear down their altars, shatter their sacred pillars, cut down their sacred Asherah poles, and burn up their idols. </VERS>\n\t\t\t<VERS vnumber=\"6\"> For you are a people holy to the LORD your God. He has chosen you to be his people, prized above all others on the face of the earth.</VERS>\n\t\t\t<VERS vnumber=\"7\"> It is not because you were more numerous than all the other peoples that the LORD favored and chose you, for in fact you were the least numerous of all peoples.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Rather it is because of his love for you and his faithfulness to the promise he solemnly vowed to your ancestors that the LORD brought you out with great power, redeeming you from the place of slavery, from the power of Pharaoh king of Egypt. </VERS>\n\t\t\t<VERS vnumber=\"9\"> So realize that the LORD your God is the true God, the faithful God who keeps covenant faithfully with those who love him and keep his commandments, to a thousand generations, </VERS>\n\t\t\t<VERS vnumber=\"10\"> but who pays back those who hate him as they deserve and destroys them. He will not ignore those who hate him but will repay them as they deserve! </VERS>\n\t\t\t<VERS vnumber=\"11\"> So keep the commandments, statutes, and ordinances that I today am commanding you to do.</VERS>\n\t\t\t<VERS vnumber=\"12\"> If you obey these ordinances and are careful to do them, the LORD your God will faithfully keep covenant with you as he promised your ancestors. </VERS>\n\t\t\t<VERS vnumber=\"13\"> He will love and bless you, and make you numerous. He will bless you with many children, with the produce of your soil, your grain, your new wine, your oil, the offspring of your oxen, and the young of your flocks in the land which he promised your ancestors to give you.</VERS>\n\t\t\t<VERS vnumber=\"14\"> You will be blessed beyond all peoples; there will be no barrenness among you or your livestock. </VERS>\n\t\t\t<VERS vnumber=\"15\"> The LORD will protect you from all sickness, and you will not experience any of the terrible diseases that you knew in Egypt; instead he will inflict them on all those who hate you.</VERS>\n\t\t\t<VERS vnumber=\"16\"> You must destroy all the people whom the LORD your God is about to deliver over to you; you must not pity them or worship their gods, for that will be a snare to you. </VERS>\n\t\t\t<VERS vnumber=\"17\"> If you think, \"These nations are more numerous than I, how can I dispossess them?\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> you must not fear them. You must carefully recall what the LORD your God did to Pharaoh and all Egypt, </VERS>\n\t\t\t<VERS vnumber=\"19\"> the great judgments you saw, the signs and wonders, the strength and power by which he brought you out, thus the LORD your God will do to all the people you fear.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Furthermore, the LORD your God will release hornets among them until the very last ones who hide from you perish. </VERS>\n\t\t\t<VERS vnumber=\"21\"> You must not tremble in their presence, for the LORD your God, who is present among you, is a great and awesome God.</VERS>\n\t\t\t<VERS vnumber=\"22\"> He, the God who leads you, will expel the nations little by little. You will not be allowed to destroy them all at once lest the wild animals overrun you. </VERS>\n\t\t\t<VERS vnumber=\"23\"> The LORD your God will give them over to you; he will throw them into a great panic until they are destroyed. </VERS>\n\t\t\t<VERS vnumber=\"24\"> He will hand over their kings to you and you will erase their very names from memory. Nobody will be able to resist you until you destroy them. </VERS>\n\t\t\t<VERS vnumber=\"25\"> You must burn the images of their gods, but do not covet the silver and gold that covers them so much that you take it for yourself and thus become ensnared by it; for it is abhorrent to the LORD your God. </VERS>\n\t\t\t<VERS vnumber=\"26\"> You must not bring any abhorrent thing into your house and thereby become an object of divine wrath along with it. You must absolutely detest and abhor it, for it is an object of divine wrath.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"8\">\n\t\t\t<VERS vnumber=\"1\"> You must keep carefully all these commandments I am giving you today so that you may live, increase in number, and go in and occupy the land that the LORD promised to your ancestors.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Remember the whole way by which he has brought you these forty years through the desert so that he might, by humbling you, test you to see if you have it within you to keep his commandments or not. </VERS>\n\t\t\t<VERS vnumber=\"3\"> So he humbled you by making you hungry and then feeding you with unfamiliar manna. He did this to teach you that humankind cannot live by bread alone, but also by everything that comes from the LORD's mouth.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Your clothing did not wear out nor did your feet swell all these forty years.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Be keenly aware that just as a parent disciplines his child, the LORD your God disciplines you. </VERS>\n\t\t\t<VERS vnumber=\"6\"> So you must keep his commandments, live according to his standards, and revere him. </VERS>\n\t\t\t<VERS vnumber=\"7\"> For the LORD your God is bringing you to a good land, a land of brooks, springs, and fountains flowing forth in valleys and hills, </VERS>\n\t\t\t<VERS vnumber=\"8\"> a land of wheat, barley, vines, fig trees, and pomegranates, of olive trees and honey,</VERS>\n\t\t\t<VERS vnumber=\"9\"> a land where you may eat food in plenty and find no lack of anything, a land whose stones are iron and from whose hills you can mine copper. </VERS>\n\t\t\t<VERS vnumber=\"10\"> You will eat your fill and then praise the LORD your God because of the good land he has given you.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Be sure you do not forget the LORD your God by not keeping his commandments, ordinances, and statutes that I am giving you today.</VERS>\n\t\t\t<VERS vnumber=\"12\"> When you eat your fill, when you build and occupy good houses,</VERS>\n\t\t\t<VERS vnumber=\"13\"> when your cattle and flocks increase, when you have plenty of silver and gold, and when you have abundance of everything,</VERS>\n\t\t\t<VERS vnumber=\"14\"> be sure you do not feel self-important and forget the LORD your God who brought you from the land of Egypt, the place of slavery, </VERS>\n\t\t\t<VERS vnumber=\"15\"> and who brought you through the great, fearful desert of venomous serpents and scorpions, an arid place with no water. He made water flow from a flint rock and </VERS>\n\t\t\t<VERS vnumber=\"16\"> fed you in the desert with manna (which your ancestors had never before known) so that he might by humbling you test you and eventually bring good to you. </VERS>\n\t\t\t<VERS vnumber=\"17\"> Be careful not to say, \"My own ability and skill have gotten me this wealth.\" </VERS>\n\t\t\t<VERS vnumber=\"18\"> You must remember the LORD your God, for he is the one who gives ability to get wealth; if you do this he will confirm his covenant that he made by oath to your ancestors, even as he has to this day. </VERS>\n\t\t\t<VERS vnumber=\"19\"> Now if you forget the LORD your God at all and follow other gods, worshiping and prostrating yourselves before them, I testify to you today that you will surely be annihilated. </VERS>\n\t\t\t<VERS vnumber=\"20\"> Just like the nations the LORD is about to destroy from your sight, so he will do to you because you would not obey him.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"9\">\n\t\t\t<VERS vnumber=\"1\"> Listen, Israel: Today you are about to cross the Jordan so you can dispossess the nations there, people greater and stronger than you who live in large cities with extremely high fortifications.</VERS>\n\t\t\t<VERS vnumber=\"2\"> They include the Anakites, a numerous and tall people whom you know about and of whom it is said, \"Who is able to resist the Anakites?\" </VERS>\n\t\t\t<VERS vnumber=\"3\"> Understand today that the LORD your God who goes before you is a devouring fire; he will defeat and subdue them before you. You will dispossess and destroy them quickly just as he has told you.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Do not think to yourself after the LORD your God has driven them out before you, \"Because of my own righteousness the LORD has brought me here to possess this land.\" It is because of the wickedness of these nations that the Lord is driving them out ahead of you.</VERS>\n\t\t\t<VERS vnumber=\"5\"> It is not because of your righteousness, or even your inner uprightness, that you have come here to possess their land. Instead, because of the wickedness of these nations the LORD your God is driving them out ahead of you in order to confirm the promise he made on oath to your ancestors, to Abraham, Isaac, and Jacob. </VERS>\n\t\t\t<VERS vnumber=\"6\"> Understand, therefore, that it is not because of your righteousness that the LORD your God is about to give you this good land as a possession, for you are a stubborn people!</VERS>\n\t\t\t<VERS vnumber=\"7\"> Remember, don't ever forget, how you provoked the LORD your God in the desert; from the time you left the land of Egypt until you came to this place you were constantly rebelling against him.</VERS>\n\t\t\t<VERS vnumber=\"8\"> At Horeb you provoked him and he was angry enough with you to destroy you.</VERS>\n\t\t\t<VERS vnumber=\"9\"> When I went up the mountain to receive the stone tablets, the tablets of the covenant that the LORD made with you, I remained there forty days and nights, eating and drinking nothing. </VERS>\n\t\t\t<VERS vnumber=\"10\"> The LORD gave me the two stone tablets, written by the very finger of God, and on them was everything he said to you at the mountain from the midst of the fire at the time of that assembly.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Now at the end of the forty days and nights the LORD presented me with the two stone tablets, the tablets of the covenant.</VERS>\n\t\t\t<VERS vnumber=\"12\"> And he said to me, \"Get up, go down at once from here because your people whom you brought out of Egypt have sinned! They have quickly turned from the way I commanded them and have made for themselves a cast metal image.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> Moreover, he said to me, \"I have taken note of these people; they are a stubborn lot! </VERS>\n\t\t\t<VERS vnumber=\"14\"> Stand aside and I will destroy them, obliterating their very name from memory, and I will make you into a stronger and more numerous nation than they are.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> So I turned and went down the mountain while it was blazing with fire; the two tablets of the covenant were in my hands. </VERS>\n\t\t\t<VERS vnumber=\"16\"> When I looked, you had indeed sinned against the LORD your God and had cast for yourselves a metal calf; you had quickly turned aside from the way he had commanded you! </VERS>\n\t\t\t<VERS vnumber=\"17\"> I grabbed the two tablets, threw them down, and shattered them before your very eyes. </VERS>\n\t\t\t<VERS vnumber=\"18\"> Then I again fell down before the LORD for forty days and nights; I ate and drank nothing because of all the sin you had committed, doing such evil before the LORD as to enrage him.</VERS>\n\t\t\t<VERS vnumber=\"19\"> For I was terrified at the LORD's intense anger that threatened to destroy you. But he listened to me this time as well. </VERS>\n\t\t\t<VERS vnumber=\"20\"> The LORD was also angry enough at Aaron to kill him, but at that time I prayed for him too. </VERS>\n\t\t\t<VERS vnumber=\"21\"> As for your sinful thing that you had made, the calf, I took it, melted it down, ground it up until it was as fine as dust, and tossed the dust into the stream that flows down the mountain. </VERS>\n\t\t\t<VERS vnumber=\"22\"> Moreover, you continued to provoke the LORD at Taberah, Massah, and Kibroth-Hattaavah.</VERS>\n\t\t\t<VERS vnumber=\"23\"> And when he sent you from Kadesh-Barnea and told you, \"Go up and possess the land I have given you,\" you rebelled against the LORD your God and would neither believe nor obey him. </VERS>\n\t\t\t<VERS vnumber=\"24\"> You have been rebelling against him from the very first day I knew you!</VERS>\n\t\t\t<VERS vnumber=\"25\"> I lay flat on the ground before the LORD for forty days and nights, for he had said he would destroy you. </VERS>\n\t\t\t<VERS vnumber=\"26\"> I prayed to him: O, Lord GOD, do not destroy your people, your valued property that you have powerfully redeemed, whom you brought out of Egypt by your strength.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Remember your servants Abraham, Isaac, and Jacob; ignore the stubbornness, wickedness, and sin of these people.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Otherwise the people of the land from which you brought us will say, \"The LORD was unable to bring them to the land he promised them, and because of his hatred for them he has brought them out to kill them in the desert.\"</VERS>\n\t\t\t<VERS vnumber=\"29\"> They are your people, your valued property, whom you brought out with great strength and power.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"10\">\n\t\t\t<VERS vnumber=\"1\"> At that same time the LORD said to me, \"Carve out for yourself two stone tablets like the first ones and come up the mountain to me; also make for yourself a wooden ark.</VERS>\n\t\t\t<VERS vnumber=\"2\"> I will write on the tablets the same words that were on the first tablets you broke, and you must put them into the ark.\" </VERS>\n\t\t\t<VERS vnumber=\"3\"> So I made an ark of acacia wood and carved out two stone tablets just like the first ones. Then I went up the mountain with the two tablets in my hands. </VERS>\n\t\t\t<VERS vnumber=\"4\"> The LORD then wrote on the tablets the same words, the ten commandments, which he had spoken to you at the mountain from the middle of the fire at the time of that assembly, and he gave them to me. </VERS>\n\t\t\t<VERS vnumber=\"5\"> Then I turned, went down the mountain, and placed the tablets into the ark I had made, they are still there, just as the LORD commanded me.</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"During those days the Israelites traveled from Beeroth Bene-Yaaqan to Moserah. There Aaron died and was buried, and his son Eleazar became priest in his place. </VERS>\n\t\t\t<VERS vnumber=\"7\"> From there they traveled to Gudgodah, and from Gudgodah to Jotbathah, a place of flowing streams. </VERS>\n\t\t\t<VERS vnumber=\"8\"> At that time the LORD set apart the tribe of Levi to carry the ark of the LORD's covenant, to stand before the LORD to serve him, and to formulate blessings in his name, as they do to this very day. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Therefore Levi has no allotment or inheritance among his brothers; the LORD is his inheritance just as the LORD your God told him. </VERS>\n\t\t\t<VERS vnumber=\"10\"> As for me, I stayed at the mountain as I did the first time, forty days and nights. The LORD listened to me that time as well and decided not to destroy you.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Then he said to me, \"Get up, set out leading the people so they may go and possess the land I promised to give to their ancestors.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> Now, Israel, what does the LORD your God require of you except to revere him, to obey all his commandments, to love him, to serve him with all your mind and being,</VERS>\n\t\t\t<VERS vnumber=\"13\"> and to keep the Lord's commandments and statutes that I am giving you today for your own good? </VERS>\n\t\t\t<VERS vnumber=\"14\"> The heavens, indeed the highest heavens, belong to the LORD your God, as does the earth and everything in it.</VERS>\n\t\t\t<VERS vnumber=\"15\"> However, only to your ancestors did he show his loving favor, and he chose you, their descendants, from all peoples, as is apparent today.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Therefore, cleanse your heart and stop being so stubborn!</VERS>\n\t\t\t<VERS vnumber=\"17\"> For the LORD your God is God of gods and Lord of lords, the great, mighty, and awesome God who is unbiased and takes no bribe,</VERS>\n\t\t\t<VERS vnumber=\"18\"> who justly treats the orphan and widow, and who loves resident foreigners, giving them food and clothing. </VERS>\n\t\t\t<VERS vnumber=\"19\"> So you must love the resident foreigner because you were foreigners in the land of Egypt.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Revere the LORD your God, serve him, be loyal to him and take oaths only in his name.</VERS>\n\t\t\t<VERS vnumber=\"21\"> He is the one you should praise; he is your God, the one who has done these great and awesome things for you that you have seen. </VERS>\n\t\t\t<VERS vnumber=\"22\"> When your ancestors went down to Egypt, they numbered only seventy, but now the LORD your God has made you as numerous as the stars of the sky.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"11\">\n\t\t\t<VERS vnumber=\"1\"> You must love the LORD your God and do what he requires; keep his statutes, ordinances, and commandments at all times. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Bear in mind today that I am not speaking to your children who have not personally experienced the judgments of the LORD your God, which revealed his greatness, strength, and power.</VERS>\n\t\t\t<VERS vnumber=\"3\"> They did not see the awesome deeds he performed in the midst of Egypt against Pharaoh king of Egypt and his whole land, </VERS>\n\t\t\t<VERS vnumber=\"4\"> or what he did to the army of Egypt, including their horses and chariots, when he made the waters of the Red Sea overwhelm them while they were pursuing you and he annihilated them.</VERS>\n\t\t\t<VERS vnumber=\"5\"> They did not see what he did to you in the desert before you reached this place, </VERS>\n\t\t\t<VERS vnumber=\"6\"> or what he did to Dathan and Abiram, sons of Eliab the Reubenite, when the earth opened its mouth in the middle of the Israelite camp and swallowed them, their families, their tents, and all the property they brought with them.</VERS>\n\t\t\t<VERS vnumber=\"7\"> I am speaking to you because you are the ones who saw all the great deeds of the LORD!</VERS>\n\t\t\t<VERS vnumber=\"8\"> Now pay attention to all the commandments I am giving you today, so that you may be strong enough to enter and possess the land where you are headed,</VERS>\n\t\t\t<VERS vnumber=\"9\"> and that you may enjoy long life in the land the LORD promised to give to your ancestors and their descendants, a land flowing with milk and honey.</VERS>\n\t\t\t<VERS vnumber=\"10\"> For the land where you are headed is not like the land of Egypt from which you came, a land where you planted seed and which you irrigated by hand like a vegetable garden. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Instead, the land you are crossing the Jordan to occupy is one of hills and valleys, a land that drinks in water from the rains,</VERS>\n\t\t\t<VERS vnumber=\"12\"> a land the LORD your God looks after. He is constantly attentive to it from the beginning to the end of the year.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Now, if you pay close attention to my commandments that I am giving you today and love the LORD your God and serve him with all your mind and being,</VERS>\n\t\t\t<VERS vnumber=\"14\"> then he promises, \"I will send rain for your land in its season, the autumn and the spring rains, so that you may gather in your grain, new wine, and olive oil. </VERS>\n\t\t\t<VERS vnumber=\"15\"> I will provide pasture for your livestock and you will eat your fill.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> Make sure you do not turn away to serve and worship other gods!</VERS>\n\t\t\t<VERS vnumber=\"17\"> Then the anger of the LORD will erupt against you and he will close up the sky so that it does not rain. The land will not yield its produce, and you will soon be removed from the good land that the Lord is about to give you.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Fix these words of mine into your mind and being, and tie them as a reminder on your hands and let them be symbols on your forehead. </VERS>\n\t\t\t<VERS vnumber=\"19\"> Teach them to your children and speak of them as you sit in your house, as you walk along the road, as you lie down, and as you get up. </VERS>\n\t\t\t<VERS vnumber=\"20\"> Inscribe them on the doorframes of your houses and on your gates</VERS>\n\t\t\t<VERS vnumber=\"21\"> so that your days and those of your descendants may be extended in the land which the LORD promised to give to your ancestors, like the days of heaven itself.</VERS>\n\t\t\t<VERS vnumber=\"22\"> For if you carefully observe all of these commandments I am giving you and love the LORD your God, live according to his standards, and remain loyal to him,</VERS>\n\t\t\t<VERS vnumber=\"23\"> then he will drive out all these nations ahead of you, and you will dispossess nations greater and stronger than you. </VERS>\n\t\t\t<VERS vnumber=\"24\"> Every place you set your foot will be yours; your border will extend from the desert to Lebanon and from the River (that is, the Euphrates) as far as the Mediterranean Sea.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Nobody will be able to resist you; the LORD your God will spread the fear and terror of you over the whole land on which you walk, just as he promised you.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Take note, I am setting before you today a blessing and a curse:</VERS>\n\t\t\t<VERS vnumber=\"27\"> the blessing if you take to heart the commandments of the LORD your God that I am giving you today, </VERS>\n\t\t\t<VERS vnumber=\"28\"> and the curse if you pay no attention to his commandments and turn from the way I am setting before you today to pursue other gods you have not known. </VERS>\n\t\t\t<VERS vnumber=\"29\"> When the LORD your God brings you into the land you are to possess, you must pronounce the blessing on Mount Gerizim and the curse on Mount Ebal.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Are they not across the Jordan River, toward the west, in the land of the Canaanites who live in the Arabah opposite Gilgal near the oak of Moreh? </VERS>\n\t\t\t<VERS vnumber=\"31\"> For you are about to cross the Jordan to possess the land the LORD your God is giving you, and you will possess and inhabit it.</VERS>\n\t\t\t<VERS vnumber=\"32\"> Be certain to keep all the statutes and ordinances that I am presenting to you today.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"12\">\n\t\t\t<VERS vnumber=\"1\"> These are the statutes and ordinances you must be careful to obey as long as you live in the land the LORD, the God of your ancestors, has given you to possess.</VERS>\n\t\t\t<VERS vnumber=\"2\"> You must by all means destroy all the places where the nations you are about to dispossess worship their gods, on the high mountains and hills and under every leafy tree.</VERS>\n\t\t\t<VERS vnumber=\"3\"> You must tear down their altars, shatter their sacred pillars, burn up their sacred Asherah poles, and cut down the images of their gods; you must eliminate their very memory from that place. </VERS>\n\t\t\t<VERS vnumber=\"4\"> You must not worship the LORD your God the way they worship.</VERS>\n\t\t\t<VERS vnumber=\"5\"> But you must seek only the place he chooses from all your tribes to establish his name as his place of residence, and you must go there. </VERS>\n\t\t\t<VERS vnumber=\"6\"> And there you must take your burnt offerings, your sacrifices, your tithes, the personal offerings you have prepared, your votive offerings, your freewill offerings, and the firstborn of your herds and flocks. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Both you and your families must feast there before the LORD your God and rejoice in all the output of your labor with which he has blessed you. </VERS>\n\t\t\t<VERS vnumber=\"8\"> You must not do like we are doing here today, with everyone doing what seems best to him, </VERS>\n\t\t\t<VERS vnumber=\"9\"> for you have not yet come to the final stop and inheritance the LORD your God is giving you. </VERS>\n\t\t\t<VERS vnumber=\"10\"> When you do go across the Jordan River and settle in the land he is granting you as an inheritance and you find relief from all the enemies who surround you, you will live in safety.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Then you must come to the place the LORD your God chooses for his name to reside, bringing everything I am commanding you, your burnt offerings, sacrifices, tithes, the personal offerings you have prepared, and all your choice votive offerings which you devote to him.</VERS>\n\t\t\t<VERS vnumber=\"12\"> You shall rejoice in the presence of the LORD your God, along with your sons, daughters, male and female servants, and the Levites in your villages (since they have no allotment or inheritance with you).</VERS>\n\t\t\t<VERS vnumber=\"13\"> Make sure you do not offer burnt offerings in any place you wish,</VERS>\n\t\t\t<VERS vnumber=\"14\"> for you may do so only in the place the LORD chooses in one of your tribal areas, there you may do everything I am commanding you.</VERS>\n\t\t\t<VERS vnumber=\"15\"> On the other hand, you may slaughter and eat meat as you please when the LORD your God blesses you in all your villages. Both the ritually pure and impure may eat it, whether it is a gazelle or an ibex.</VERS>\n\t\t\t<VERS vnumber=\"16\"> However, you must not eat blood, pour it out on the ground like water.</VERS>\n\t\t\t<VERS vnumber=\"17\"> You will not be allowed to eat in your villages your tithe of grain, new wine, olive oil, the firstborn of your herd and flock, any votive offerings you have vowed, or your freewill and personal offerings.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Only in the presence of the LORD your God may you eat these, in the place he chooses. This applies to you, your son, your daughter, your male and female servants, and the Levites in your villages. In that place you will rejoice before the LORD your God in all the output of your labor.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Be careful not to overlook the Levites as long as you live in the land.</VERS>\n\t\t\t<VERS vnumber=\"20\"> When the LORD your God extends your borders as he said he would do and you say, \"I want to eat meat just as I please,\" you may do so as you wish.</VERS>\n\t\t\t<VERS vnumber=\"21\"> If the place he chooses to locate his name is too far for you, you may slaughter any of your herd and flock he has given you just as I have stipulated; you may eat them in your villages just as you wish. </VERS>\n\t\t\t<VERS vnumber=\"22\"> Like you eat the gazelle or ibex, so you may eat these; the ritually impure and pure alike may eat them.</VERS>\n\t\t\t<VERS vnumber=\"23\"> However, by no means eat the blood, for the blood is life itself, you must not eat the life with the meat!</VERS>\n\t\t\t<VERS vnumber=\"24\"> You must not eat it! You must pour it out on the ground like water.</VERS>\n\t\t\t<VERS vnumber=\"25\"> You must not eat it so that it may go well with you and your children after you; you will be doing what is right in the LORD's sight.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Only the holy things and votive offerings that belong to you, you must pick up and take to the place the LORD will choose.</VERS>\n\t\t\t<VERS vnumber=\"27\"> You must offer your burnt offerings, both meat and blood, on the altar of the LORD your God; the blood of your other sacrifices you must pour out on his altar while you eat the meat. </VERS>\n\t\t\t<VERS vnumber=\"28\"> Pay careful attention to all these things I am commanding you so that it may always go well with you and your children after you when you do what is good and right in the sight of the LORD your God.</VERS>\n\t\t\t<VERS vnumber=\"29\"> When the LORD your God eliminates the nations from the place where you are headed and you dispossess them, you will settle down in their land.</VERS>\n\t\t\t<VERS vnumber=\"30\"> After they have been destroyed from your presence, be careful not to be ensnared like they are; do not pursue their gods and say, \"How do these nations serve their gods? I will do the same.\"</VERS>\n\t\t\t<VERS vnumber=\"31\"> You must not worship the LORD your God the way they do! For everything that is abhorrent to him, everything he hates, they have done when worshiping their gods. They even burn up their sons and daughters before their gods!</VERS>\n\t\t\t<VERS vnumber=\"32\">  You must be careful to do everything I am commanding you. Do not add to it or subtract from it!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"13\">\n\t\t\t<VERS vnumber=\"1\"> Suppose a prophet or one who foretells by dreams should appear among you and show you a sign or wonder,</VERS>\n\t\t\t<VERS vnumber=\"2\"> and the sign or wonder should come to pass concerning what he said to you, namely, \"Let us follow other gods\", gods whom you have not previously known, \"and let us serve them.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> You must not listen to the words of that prophet or dreamer, for the LORD your God will be testing you to see if you love him with all your mind and being.</VERS>\n\t\t\t<VERS vnumber=\"4\"> You must follow the LORD your God and revere only him; and you must observe his commandments, obey him, serve him, and remain loyal to him.</VERS>\n\t\t\t<VERS vnumber=\"5\"> As for that prophet or dreamer, he must be executed because he encouraged rebellion against the LORD your God who brought you from the land of Egypt, redeeming you from that place of slavery, and because he has tried to entice you from the way the LORD your God has commanded you to go. In this way you must purge out evil from within.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Suppose your own full brother, your son, your daughter, your beloved wife, or your closest friend should seduce you secretly and encourage you to go and serve other gods that neither you nor your ancestors have previously known,</VERS>\n\t\t\t<VERS vnumber=\"7\"> the gods of the surrounding people (whether near you or far from you, from one end of the earth to the other). </VERS>\n\t\t\t<VERS vnumber=\"8\"> You must not give in to him or even listen to him; do not feel sympathy for him or spare him or cover up for him.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Instead, you must kill him without fail! Your own hand must be the first to strike him, and then the hands of the whole community. </VERS>\n\t\t\t<VERS vnumber=\"10\"> You must stone him to death because he tried to entice you away from the LORD your God, who delivered you from the land of Egypt, that place of slavery. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Thus all Israel will hear and be afraid; no longer will they continue to do evil like this among you.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Suppose you should hear in one of your cities, which the LORD your God is giving you as a place to live, that</VERS>\n\t\t\t<VERS vnumber=\"13\"> some evil people have departed from among you to entice the inhabitants of their cities, saying, \"Let's go and serve other gods\" (whom you have not known before).</VERS>\n\t\t\t<VERS vnumber=\"14\"> You must investigate thoroughly and inquire carefully. If it is indeed true that such a disgraceful thing is being done among you,</VERS>\n\t\t\t<VERS vnumber=\"15\"> you must by all means slaughter the inhabitants of that city with the sword; annihilate with the sword everyone in it, as well as the livestock. </VERS>\n\t\t\t<VERS vnumber=\"16\"> You must gather all of its plunder into the middle of the plaza and burn the city and all its plunder as a whole burnt offering to the LORD your God. It will be an abandoned ruin forever, it must never be rebuilt again.</VERS>\n\t\t\t<VERS vnumber=\"17\"> You must not take for yourself anything that has been placed under judgment. Then the LORD will relent from his intense anger, show you compassion, have mercy on you, and multiply you as he promised your ancestors. </VERS>\n\t\t\t<VERS vnumber=\"18\"> Thus you must obey the LORD your God, keeping all his commandments that I am giving you today and doing what is right before him.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"14\">\n\t\t\t<VERS vnumber=\"1\"> You are children of the LORD your God. Do not cut yourselves or shave your forehead bald for the sake of the dead. </VERS>\n\t\t\t<VERS vnumber=\"2\"> For you are a people holy to the LORD your God. He has chosen you to be his people, prized above all others on the face of the earth. </VERS>\n\t\t\t<VERS vnumber=\"3\"> You must not eat any forbidden thing. </VERS>\n\t\t\t<VERS vnumber=\"4\"> These are the animals you may eat: the ox, the sheep, the goat,</VERS>\n\t\t\t<VERS vnumber=\"5\"> the ibex, the gazelle, the deer, the wild goat, the antelope, the wild oryx, and the mountain sheep.</VERS>\n\t\t\t<VERS vnumber=\"6\"> You may eat any animal that has hooves divided into two parts and that chews the cud.</VERS>\n\t\t\t<VERS vnumber=\"7\"> However, you may not eat the following animals among those that chew the cud or those that have divided hooves: the camel, the hare, and the rock badger. (Although they chew the cud, they do not have divided hooves and are therefore ritually impure to you). </VERS>\n\t\t\t<VERS vnumber=\"8\"> Also the pig is ritually impure to you; though it has divided hooves, it does not chew the cud. You may not eat their meat or even touch their remains. </VERS>\n\t\t\t<VERS vnumber=\"9\"> These you may eat from among water creatures: anything with fins and scales you may eat,</VERS>\n\t\t\t<VERS vnumber=\"10\"> but whatever does not have fins and scales you may not eat; it is ritually impure to you.</VERS>\n\t\t\t<VERS vnumber=\"11\"> All ritually clean birds you may eat.</VERS>\n\t\t\t<VERS vnumber=\"12\"> These are the ones you may not eat: the eagle, the vulture, the black vulture,</VERS>\n\t\t\t<VERS vnumber=\"13\"> the kite, the black kite, the dayyah after its species, </VERS>\n\t\t\t<VERS vnumber=\"14\"> every raven after its species,</VERS>\n\t\t\t<VERS vnumber=\"15\"> the ostrich, the owl, the seagull, the falcon after its species, </VERS>\n\t\t\t<VERS vnumber=\"16\"> the little owl, the long-eared owl, the white owl,</VERS>\n\t\t\t<VERS vnumber=\"17\"> the jackdaw, the carrion vulture, the cormorant,</VERS>\n\t\t\t<VERS vnumber=\"18\"> the stork, the heron after its species, the hoopoe, the bat,</VERS>\n\t\t\t<VERS vnumber=\"19\"> and any winged thing on the ground are impure to you, they may not be eaten.</VERS>\n\t\t\t<VERS vnumber=\"20\"> You may eat any clean bird.</VERS>\n\t\t\t<VERS vnumber=\"21\"> You may not eat any corpse, though you may give it to the resident foreigner who is living in your villages and he may eat it, or you may sell it to a foreigner. You are a people holy to the LORD your God. Do not boil a young goat in its mother's milk.</VERS>\n\t\t\t<VERS vnumber=\"22\"> You must be certain to tithe all the produce of your seed that comes from the field year after year. </VERS>\n\t\t\t<VERS vnumber=\"23\"> In the presence of the LORD your God you must eat from the tithe of your grain, your new wine, your olive oil, and the firstborn of your herds and flocks in the place he chooses to locate his name, so that you may learn to revere the LORD your God always. </VERS>\n\t\t\t<VERS vnumber=\"24\"> When he blesses you, if the place where he chooses to locate his name is distant, </VERS>\n\t\t\t<VERS vnumber=\"25\"> you may convert the tithe into money, secure the money, and travel to the place the LORD your God chooses for himself. </VERS>\n\t\t\t<VERS vnumber=\"26\"> Then you may spend the money however you wish for cattle, sheep, wine, beer, or whatever you desire. You and your household may eat there in the presence of the LORD your God and enjoy it.</VERS>\n\t\t\t<VERS vnumber=\"27\"> As for the Levites in your villages, you must not ignore them, for they have no allotment or inheritance along with you.</VERS>\n\t\t\t<VERS vnumber=\"28\"> At the end of every three years you must bring all the tithe of your produce, in that very year, and you must store it up in your villages.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Then the Levites (because they have no allotment or inheritance with you), the resident foreigners, the orphans, and the widows of your villages may come and eat their fill so that the LORD your God may bless you in all the work you do.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"15\">\n\t\t\t<VERS vnumber=\"1\"> At the end of every seven years you must declare a cancellation of debts. </VERS>\n\t\t\t<VERS vnumber=\"2\"> This is the nature of the cancellation: Every creditor must remit what he has loaned to another person; he must not force payment from his fellow Israelite, for it is to be recognized as \"the LORD's cancellation of debts.\" </VERS>\n\t\t\t<VERS vnumber=\"3\"> You may exact payment from a foreigner, but whatever your fellow Israelite owes you, you must remit.</VERS>\n\t\t\t<VERS vnumber=\"4\"> However, there should not be any poor among you, for the LORD will surely bless you in the land that he is giving you as an inheritance,</VERS>\n\t\t\t<VERS vnumber=\"5\"> if you carefully obey him by keeping all these commandments that I am giving you today. </VERS>\n\t\t\t<VERS vnumber=\"6\"> For the LORD your God will bless you just as he has promised; you will lend to many nations but will not borrow from any, and you will rule over many nations but they will not rule over you.</VERS>\n\t\t\t<VERS vnumber=\"7\"> If a fellow Israelite from one of your villages in the land that the LORD your God is giving you should be poor, you must not harden your heart or be insensitive to his impoverished condition.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Instead, you must be sure to open your hand to him and generously lend him whatever he needs.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Be careful lest you entertain the wicked thought that the seventh year, the year of cancellation of debts, has almost arrived, and your attitude be wrong toward your impoverished fellow Israelite and you do not lend him anything; he will cry out to the LORD against you and you will be regarded as having sinned.</VERS>\n\t\t\t<VERS vnumber=\"10\"> You must by all means lend to him and not be upset by doing it, for because of this the LORD your God will bless you in all your work and in everything you attempt. </VERS>\n\t\t\t<VERS vnumber=\"11\"> There will never cease to be some poor people in the land; therefore, I am commanding you to make sure you open your hand to your fellow Israelites who are needy and poor in your land.</VERS>\n\t\t\t<VERS vnumber=\"12\"> If your fellow Hebrew, whether male or female, is sold to you and serves you for six years, then in the seventh year you must let that servant go free.</VERS>\n\t\t\t<VERS vnumber=\"13\"> If you set them free, you must not send them away empty-handed.</VERS>\n\t\t\t<VERS vnumber=\"14\"> You must supply them generously from your flock, your threshing floor, and your winepress, as the LORD your God has blessed you, you must give to them.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Remember that you were a slave in the land of Egypt and the LORD your God redeemed you; therefore, I am commanding you to do this thing today.</VERS>\n\t\t\t<VERS vnumber=\"16\"> However, if the servant says to you, \"I do not want to leave you,\" because he loves you and your household, since he is well off with you, </VERS>\n\t\t\t<VERS vnumber=\"17\"> you shall take an awl and pierce a hole through his ear to the door. Then he will become your servant permanently (this applies to your female servant as well). </VERS>\n\t\t\t<VERS vnumber=\"18\"> You should not consider it difficult to let him go free, for he will have served you for six years, twice the time of a hired worker; the LORD your God will bless you in everything you do.</VERS>\n\t\t\t<VERS vnumber=\"19\"> You must set apart for the LORD your God every firstborn male born to your herds and flocks. You must not work the firstborn of your bulls or shear the firstborn of your flocks. </VERS>\n\t\t\t<VERS vnumber=\"20\"> You and your household must eat them annually before the LORD your God in the place he chooses. </VERS>\n\t\t\t<VERS vnumber=\"21\"> If they have any kind of blemish, lameness, blindness, or anything else, you may not offer them as a sacrifice to the LORD your God.</VERS>\n\t\t\t<VERS vnumber=\"22\"> You may eat it in your villages, whether you are ritually impure or clean, just as you would eat a gazelle or an ibex. </VERS>\n\t\t\t<VERS vnumber=\"23\"> However, you must not eat its blood; you must pour it out on the ground like water.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"16\">\n\t\t\t<VERS vnumber=\"1\"> Observe the month Abib and keep the Passover to the LORD your God, for in that month he brought you out of Egypt by night. </VERS>\n\t\t\t<VERS vnumber=\"2\"> You must sacrifice the Passover animal (from the flock or the herd) to the LORD your God in the place where he chooses to locate his name. </VERS>\n\t\t\t<VERS vnumber=\"3\"> You must not eat any yeast with it; for seven days you must eat bread made without yeast, symbolic of affliction, for you came out of Egypt hurriedly. You must do this so you will remember for the rest of your life the day you came out of the land of Egypt.</VERS>\n\t\t\t<VERS vnumber=\"4\"> There must not be a scrap of yeast within your land for seven days, nor can any of the meat you sacrifice on the evening of the first day remain until the next morning.</VERS>\n\t\t\t<VERS vnumber=\"5\"> You may not sacrifice the Passover in just any of your villages that the LORD your God is giving you, </VERS>\n\t\t\t<VERS vnumber=\"6\"> but you must sacrifice it in the evening in the place where he chooses to locate his name, at sunset, the time of day you came out of Egypt. </VERS>\n\t\t\t<VERS vnumber=\"7\"> You must cook and eat it in the place the LORD your God chooses; you may return the next morning to your tents. </VERS>\n\t\t\t<VERS vnumber=\"8\"> You must eat bread made without yeast for six days. The seventh day you are to hold an assembly for the LORD your God; you must not do any work on that day.</VERS>\n\t\t\t<VERS vnumber=\"9\"> You must count seven weeks; you must begin to count them from the time you begin to harvest the standing grain. </VERS>\n\t\t\t<VERS vnumber=\"10\"> Then you are to celebrate the Festival of Weeks before the LORD your God with the voluntary offering that you will bring, in proportion to how he has blessed you. </VERS>\n\t\t\t<VERS vnumber=\"11\"> You shall rejoice before him, you, your son, your daughter, your male and female slaves, the Levites in your villages, the resident foreigners, the orphans, and the widows among you, in the place where the LORD chooses to locate his name.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Furthermore, remember that you were a slave in Egypt, and so be careful to observe these statutes.</VERS>\n\t\t\t<VERS vnumber=\"13\"> You must celebrate the Festival of Temporary Shelters for seven days, at the time of the grain and grape harvest.</VERS>\n\t\t\t<VERS vnumber=\"14\"> You are to rejoice in your festival, you, your son, your daughter, your male and female slaves, the Levites, the resident foreigners, the orphans, and the widows who are in your villages.</VERS>\n\t\t\t<VERS vnumber=\"15\"> You are to celebrate the festival seven days before the LORD your God in the place he chooses, for he will bless you in all your productivity and in whatever you do; so you will indeed rejoice! </VERS>\n\t\t\t<VERS vnumber=\"16\"> Three times a year all your males must appear before the LORD your God in the place he chooses for the Festival of Unleavened Bread, the Festival of Weeks, and the Festival of Temporary Shelters; and they must not appear before him empty-handed. </VERS>\n\t\t\t<VERS vnumber=\"17\"> Every one of you must give as you are able, according to the blessing of the LORD your God that he has given you.</VERS>\n\t\t\t<VERS vnumber=\"18\"> You must appoint judges and civil servants for each tribe in all your villages that the LORD your God is giving you, and they must judge the people fairly.</VERS>\n\t\t\t<VERS vnumber=\"19\"> You must not pervert justice or show favor. Do not take a bribe, for bribes blind the eyes of the wise and distort the words of the righteous.</VERS>\n\t\t\t<VERS vnumber=\"20\"> You must pursue justice alone so that you may live and inherit the land the LORD your God is giving you.</VERS>\n\t\t\t<VERS vnumber=\"21\"> You must not plant any kind of tree as a sacred Asherah pole near the altar of the LORD your God which you build for yourself. </VERS>\n\t\t\t<VERS vnumber=\"22\"> You must not erect a sacred pillar, a thing the LORD your God detests. </VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"17\">\n\t\t\t<VERS vnumber=\"1\"> You must not sacrifice to him a bull or sheep that has a blemish or any other defect, because that is considered offensive to the LORD your God. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Suppose a man or woman is discovered among you, in one of your villages that the LORD your God is giving you, who sins before the Lord your God and breaks his covenant</VERS>\n\t\t\t<VERS vnumber=\"3\"> by serving other gods and worshiping them, the sun, moon, or any other heavenly bodies which I have not permitted you to worship.</VERS>\n\t\t\t<VERS vnumber=\"4\"> When it is reported to you and you hear about it, you must investigate carefully. If it is indeed true that such a disgraceful thing is being done in Israel, </VERS>\n\t\t\t<VERS vnumber=\"5\"> you must bring to your city gates that man or woman who has done this wicked thing, that very man or woman, and you must stone that person to death.</VERS>\n\t\t\t<VERS vnumber=\"6\"> At the testimony of two or three witnesses they must be executed. They cannot be put to death on the testimony of only one witness.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The witnesses must be first to begin the execution, and then all the people are to join in afterward. In this way you will purge evil from among you.</VERS>\n\t\t\t<VERS vnumber=\"8\"> If a matter is too difficult for you to judge, bloodshed, legal claim, or assault, matters of controversy in your villages, you must leave there and go up to the place the LORD your God chooses.</VERS>\n\t\t\t<VERS vnumber=\"9\"> You will go to the Levitical priests and the judge in office in those days and seek a solution; they will render a verdict.</VERS>\n\t\t\t<VERS vnumber=\"10\"> You must then do as they have determined at that place the LORD chooses. Be careful to do just as you are taught.</VERS>\n\t\t\t<VERS vnumber=\"11\"> You must do what you are instructed, and the verdict they pronounce to you, without fail. Do not deviate right or left from what they tell you.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The person who pays no attention to the priest currently serving the LORD your God there, or to the verdict, that person must die, so that you may purge evil from Israel.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Then all the people will hear and be afraid, and not be so presumptuous again.</VERS>\n\t\t\t<VERS vnumber=\"14\"> When you come to the land the LORD your God is giving you and take it over and live in it and then say, \"I will select a king like all the nations surrounding me,\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> you must select without fail a king whom the LORD your God chooses. From among your fellow citizens you must appoint a king, you may not designate a foreigner who is not one of your fellow Israelites.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Moreover, he must not accumulate horses for himself or allow the people to return to Egypt to do so, for the LORD has said you must never again return that way. </VERS>\n\t\t\t<VERS vnumber=\"17\"> Furthermore, he must not marry many wives lest his affections turn aside, and he must not accumulate much silver and gold. </VERS>\n\t\t\t<VERS vnumber=\"18\"> When he sits on his royal throne he must make a copy of this law on a scroll given to him by the Levitical priests. </VERS>\n\t\t\t<VERS vnumber=\"19\"> It must be with him constantly and he must read it as long as he lives, so that he may learn to revere the LORD his God and observe all the words of this law and these statutes and carry them out.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Then he will not exalt himself above his fellow citizens or turn from the commandments to the right or left, and he and his descendants will enjoy many years ruling over his kingdom in Israel.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"18\">\n\t\t\t<VERS vnumber=\"1\"> The Levitical priests, indeed, the entire tribe of Levi, will have no allotment or inheritance with Israel; they may eat the burnt offerings of the LORD and of his inheritance.</VERS>\n\t\t\t<VERS vnumber=\"2\"> They will have no inheritance in the midst of their fellow Israelites; the LORD alone is their inheritance, just as he had told them. </VERS>\n\t\t\t<VERS vnumber=\"3\"> This shall be the priests' fair allotment from the people who offer sacrifices, whether bull or sheep, they must give to the priest the shoulder, the jowls, and the stomach.</VERS>\n\t\t\t<VERS vnumber=\"4\"> You must give them the best of your grain, new wine, and olive oil, as well as the best of your wool when you shear your flocks. </VERS>\n\t\t\t<VERS vnumber=\"5\"> For the LORD your God has chosen them and their sons from all your tribes to stand and serve in his name permanently. </VERS>\n\t\t\t<VERS vnumber=\"6\"> Suppose a Levite comes by his own free will from one of your villages, from any part of Israel where he is living, to the place the LORD chooses </VERS>\n\t\t\t<VERS vnumber=\"7\"> and serves in the name of the LORD his God like his fellow Levites who stand there before the LORD.</VERS>\n\t\t\t<VERS vnumber=\"8\"> He must eat the same share they do, despite any profits he may gain from the sale of his family's inheritance.</VERS>\n\t\t\t<VERS vnumber=\"9\"> When you enter the land the LORD your God is giving you, you must not learn the abhorrent practices of those nations.</VERS>\n\t\t\t<VERS vnumber=\"10\"> There must never be found among you anyone who sacrifices his son or daughter in the fire, anyone who practices divination, an omen reader, a soothsayer, a sorcerer,</VERS>\n\t\t\t<VERS vnumber=\"11\"> one who casts spells, one who conjures up spirits, a practitioner of the occult, or a necromancer.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Whoever does these things is abhorrent to the LORD and because of these detestable things the LORD your God is about to drive them out from before you. </VERS>\n\t\t\t<VERS vnumber=\"13\"> You must be blameless before the LORD your God.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Those nations that you are about to dispossess listen to omen readers and diviners, but the LORD your God has not given you permission to do such things.</VERS>\n\t\t\t<VERS vnumber=\"15\"> The LORD your God will raise up for you a prophet like me from among you, from your fellow Israelites; you must listen to him.</VERS>\n\t\t\t<VERS vnumber=\"16\"> This accords with what happened at Horeb in the day of the assembly. You asked the LORD your God: \"Please do not make us hear the voice of the LORD our God any more or see this great fire any more lest we die.\" </VERS>\n\t\t\t<VERS vnumber=\"17\"> The LORD then said to me, \"What they have said is good.</VERS>\n\t\t\t<VERS vnumber=\"18\"> I will raise up a prophet like you for them from among their fellow Israelites. I will put my words in his mouth and he will speak to them whatever I command.</VERS>\n\t\t\t<VERS vnumber=\"19\"> I will personally hold responsible anyone who then pays no attention to the words that prophet speaks in my name.</VERS>\n\t\t\t<VERS vnumber=\"20\"> \"But if any prophet presumes to speak anything in my name that I have not authorized him to speak, or speaks in the name of other gods, that prophet must die. </VERS>\n\t\t\t<VERS vnumber=\"21\"> Now if you say to yourselves, 'How can we tell that a message is not from the LORD?',</VERS>\n\t\t\t<VERS vnumber=\"22\"> whenever a prophet speaks in my name and the prediction is not fulfilled, then I have not spoken it; the prophet has presumed to speak it, so you need not fear him.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"19\">\n\t\t\t<VERS vnumber=\"1\"> When the LORD your God destroys the nations whose land he is about to give you and you dispossess them and settle in their cities and houses, </VERS>\n\t\t\t<VERS vnumber=\"2\"> you must set apart for yourselves three cities in the middle of your land that the LORD your God is giving you as a possession. </VERS>\n\t\t\t<VERS vnumber=\"3\"> You shall build a roadway and divide into thirds the whole extent of your land that the LORD your God is providing as your inheritance; anyone who kills another person should flee to the closest of these cities. </VERS>\n\t\t\t<VERS vnumber=\"4\"> Now this is the law pertaining to one who flees there in order to live, if he has accidentally killed another without hating him at the time of the accident.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Suppose he goes with someone else to the forest to cut wood and when he raises the ax to cut the tree, the ax head flies loose from the handle and strikes his fellow worker so hard that he dies. The person responsible may then flee to one of these cities to save himself.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Otherwise the blood avenger will chase after the killer in the heat of his anger, eventually overtake him, and kill him, though this is not a capital case since he did not hate him at the time of the accident. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Therefore, I am commanding you to set apart for yourselves three cities.</VERS>\n\t\t\t<VERS vnumber=\"8\"> If the LORD your God enlarges your borders as he promised your ancestors and gives you all the land he pledged to them,</VERS>\n\t\t\t<VERS vnumber=\"9\"> and then you are careful to observe all these commandments I am giving you today (namely, to love the LORD your God and to always walk in his ways), then you must add three more cities to these three. </VERS>\n\t\t\t<VERS vnumber=\"10\"> You must not shed innocent blood in your land that the LORD your God is giving you as an inheritance, for that would make you guilty.</VERS>\n\t\t\t<VERS vnumber=\"11\"> However, suppose a person hates someone else and stalks him, attacks him, kills him, and then flees to one of these cities. </VERS>\n\t\t\t<VERS vnumber=\"12\"> The elders of his own city must send for him and remove him from there to deliver him over to the blood avenger to die. </VERS>\n\t\t\t<VERS vnumber=\"13\"> You must not pity him, but purge out the blood of the innocent from Israel, so that it may go well with you.</VERS>\n\t\t\t<VERS vnumber=\"14\"> You must not encroach on your neighbor's property, which will have been defined in the inheritance you will obtain in the land the LORD your God is giving you.</VERS>\n\t\t\t<VERS vnumber=\"15\"> A single witness may not testify against another person for any trespass or sin that he commits. A matter may be legally established only on the testimony of two or three witnesses. </VERS>\n\t\t\t<VERS vnumber=\"16\"> If a false witness testifies against another person and accuses him of a crime,</VERS>\n\t\t\t<VERS vnumber=\"17\"> then both parties to the controversy must stand before the LORD, that is, before the priests and judges who will be in office in those days. </VERS>\n\t\t\t<VERS vnumber=\"18\"> The judges will thoroughly investigate the matter, and if the witness should prove to be false and to have given false testimony against the accused,</VERS>\n\t\t\t<VERS vnumber=\"19\"> you must do to him what he had intended to do to the accused. In this way you will purge evil from among you. </VERS>\n\t\t\t<VERS vnumber=\"20\"> The rest of the people will hear and become afraid to keep doing such evil among you.</VERS>\n\t\t\t<VERS vnumber=\"21\"> You must not show pity; the principle will be a life for a life, an eye for an eye, a tooth for a tooth, a hand for a hand, and a foot for a foot.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"20\">\n\t\t\t<VERS vnumber=\"1\"> When you go to war against your enemies and see chariotry and troops who outnumber you, do not be afraid of them, for the LORD your God, who brought you up out of the land of Egypt, is with you. </VERS>\n\t\t\t<VERS vnumber=\"2\"> As you move forward for battle, the priest will approach and say to the soldiers,</VERS>\n\t\t\t<VERS vnumber=\"3\"> \"Listen, Israel! Today you are moving forward to do battle with your enemies. Do not be fainthearted. Do not fear and tremble or be terrified because of them,</VERS>\n\t\t\t<VERS vnumber=\"4\"> for the LORD your God goes with you to fight on your behalf against your enemies to give you victory.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> Moreover, the officers are to say to the troops, \"Who among you has built a new house and not dedicated it? He may go home, lest he die in battle and someone else dedicate it. </VERS>\n\t\t\t<VERS vnumber=\"6\"> Or who among you has planted a vineyard and not benefited from it? He may go home, lest he die in battle and someone else benefit from it.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Or who among you has become engaged to a woman but has not married her? He may go home, lest he die in battle and someone else marry her.\" </VERS>\n\t\t\t<VERS vnumber=\"8\"> In addition, the officers are to say to the troops, \"Who among you is afraid and fainthearted? He may go home so that he will not make his fellow soldier's heart as fearful as his own.\" </VERS>\n\t\t\t<VERS vnumber=\"9\"> Then, when the officers have finished speaking, they must appoint unit commanders to lead the troops.</VERS>\n\t\t\t<VERS vnumber=\"10\"> When you approach a city to wage war against it, offer it terms of peace.</VERS>\n\t\t\t<VERS vnumber=\"11\"> If it accepts your terms and submits to you, all the people found in it will become your slaves.</VERS>\n\t\t\t<VERS vnumber=\"12\"> If it does not accept terms of peace but makes war with you, then you are to lay siege to it.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The LORD your God will deliver it over to you and you must kill every single male by the sword.</VERS>\n\t\t\t<VERS vnumber=\"14\"> However, the women, little children, cattle, and anything else in the city, all its plunder, you may take for yourselves as spoil. You may take from your enemies the plunder that the LORD your God has given you.</VERS>\n\t\t\t<VERS vnumber=\"15\"> This is how you are to deal with all those cities located far from you, those that do not belong to these nearby nations.</VERS>\n\t\t\t<VERS vnumber=\"16\"> As for the cities of these peoples that the LORD your God is going to give you as an inheritance, you must not allow a single living thing to survive. </VERS>\n\t\t\t<VERS vnumber=\"17\"> Instead you must utterly annihilate them, the Hittites, Amorites, Canaanites, Perizzites, Hivites, and Jebusites, just as the LORD your God has commanded you,</VERS>\n\t\t\t<VERS vnumber=\"18\"> so that they cannot teach you all the abhorrent ways they worship their gods, causing you to sin against the LORD your God. </VERS>\n\t\t\t<VERS vnumber=\"19\"> If you besiege a city for a long time while attempting to capture it, you must not chop down its trees, for you may eat fruit from them and should not cut them down. A tree in the field is not human that you should besiege it!</VERS>\n\t\t\t<VERS vnumber=\"20\"> However, you may chop down any tree you know is not suitable for food, and you may use it to build siege works against the city that is making war with you until that city falls.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"21\">\n\t\t\t<VERS vnumber=\"1\"> If a homicide victim should be found lying in a field in the land the LORD your God is giving you, and no one knows who killed him, </VERS>\n\t\t\t<VERS vnumber=\"2\"> your elders and judges must go out and measure how far it is to the cities in the vicinity of the corpse.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Then the elders of the city nearest to the corpse must take from the herd a heifer that has not been worked, that has never pulled with the yoke,</VERS>\n\t\t\t<VERS vnumber=\"4\"> and bring the heifer down to a wadi with flowing water, to a valley that is neither plowed nor sown. There at the wadi they are to break the heifer's neck. </VERS>\n\t\t\t<VERS vnumber=\"5\"> Then the Levitical priests will approach (for the LORD your God has chosen them to serve him and to pronounce blessings in his name, and to decide every judicial verdict)</VERS>\n\t\t\t<VERS vnumber=\"6\"> and all the elders of that city nearest the corpse must wash their hands over the heifer whose neck was broken in the valley.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Then they must proclaim, \"Our hands have not spilled this blood, nor have we witnessed the crime.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Do not blame your people Israel whom you redeemed, O LORD, and do not hold them accountable for the bloodshed of an innocent person.\" Then atonement will be made for the bloodshed. </VERS>\n\t\t\t<VERS vnumber=\"9\"> In this manner you will purge out the guilt of innocent blood from among you, for you must do what is right before the LORD.</VERS>\n\t\t\t<VERS vnumber=\"10\"> When you go out to do battle with your enemies and the LORD your God allows you to prevail and you take prisoners, </VERS>\n\t\t\t<VERS vnumber=\"11\"> if you should see among them an attractive woman whom you wish to take as a wife, </VERS>\n\t\t\t<VERS vnumber=\"12\"> you may bring her back to your house. She must shave her head, trim her nails,</VERS>\n\t\t\t<VERS vnumber=\"13\"> discard the clothing she was wearing when captured, and stay in your house, lamenting for her father and mother for a full month. After that you may have sexual relations with her and become her husband and she your wife. </VERS>\n\t\t\t<VERS vnumber=\"14\"> If you are not pleased with her, then you must let her go where she pleases. You cannot in any case sell her; you must not take advantage of her, since you have already humiliated her.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Suppose a man has two wives, one whom he loves more than the other, and they both bear him sons, with the firstborn being the child of the less loved wife. </VERS>\n\t\t\t<VERS vnumber=\"16\"> In the day he divides his inheritance he must not appoint as firstborn the son of the favorite wife in place of the other wife's son who is actually the firstborn. </VERS>\n\t\t\t<VERS vnumber=\"17\"> Rather, he must acknowledge the son of the less loved wife as firstborn and give him the double portion of all he has, for that son is the beginning of his father's procreative power, to him should go the right of the firstborn.</VERS>\n\t\t\t<VERS vnumber=\"18\"> If a person has a stubborn, rebellious son who pays no attention to his father or mother, and they discipline him to no avail,</VERS>\n\t\t\t<VERS vnumber=\"19\"> his father and mother must seize him and bring him to the elders at the gate of his city.</VERS>\n\t\t\t<VERS vnumber=\"20\"> They must declare to the elders of his city, \"Our son is stubborn and rebellious and pays no attention to what we say, he is a glutton and drunkard.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> Then all the men of his city must stone him to death. In this way you will purge out wickedness from among you, and all Israel will hear about it and be afraid.</VERS>\n\t\t\t<VERS vnumber=\"22\"> If a person commits a sin punishable by death and is executed, and you hang the corpse on a tree, </VERS>\n\t\t\t<VERS vnumber=\"23\"> his body must not remain all night on the tree; instead you must make certain you bury him that same day, for the one who is left exposed on a tree is cursed by God. You must not defile your land which the LORD your God is giving you as an inheritance.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"22\">\n\t\t\t<VERS vnumber=\"1\"> When you see your neighbor's ox or sheep going astray, do not ignore it; you must return it without fail to your neighbor. </VERS>\n\t\t\t<VERS vnumber=\"2\"> If the owner does not live near you or you do not know who the owner is, then you must corral the animal at your house and let it stay with you until the owner looks for it; then you must return it to him. </VERS>\n\t\t\t<VERS vnumber=\"3\"> You shall do the same to his donkey, his clothes, or anything else your neighbor has lost and you have found; you must not refuse to get involved.</VERS>\n\t\t\t<VERS vnumber=\"4\"> When you see your neighbor's donkey or ox fallen along the road, do not ignore it; instead, you must be sure to help him get the animal on its feet again.</VERS>\n\t\t\t<VERS vnumber=\"5\"> A woman must not wear men's clothing, nor should a man dress up in women's clothing, for anyone who does this is offensive to the LORD your God.</VERS>\n\t\t\t<VERS vnumber=\"6\"> If you happen to notice a bird's nest along the road, whether in a tree or on the ground, and there are chicks or eggs with the mother bird sitting on them, you must not take the mother from the young.</VERS>\n\t\t\t<VERS vnumber=\"7\"> You must be sure to let the mother go, but you may take the young for yourself. Do this so that it may go well with you and you may have a long life.</VERS>\n\t\t\t<VERS vnumber=\"8\"> If you build a new house, you must construct a guard rail around your roof to avoid being culpable in the event someone should fall from it.</VERS>\n\t\t\t<VERS vnumber=\"9\"> You must not plant your vineyard with two kinds of seed; otherwise the entire yield, both of the seed you plant and the produce of the vineyard, will be defiled.</VERS>\n\t\t\t<VERS vnumber=\"10\"> You must not plow with an ox and a donkey harnessed together.</VERS>\n\t\t\t<VERS vnumber=\"11\"> You must not wear clothing made with wool and linen meshed together.</VERS>\n\t\t\t<VERS vnumber=\"12\"> You shall make yourselves tassels for the four corners of the clothing you wear.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Suppose a man marries a woman, has sexual relations with her, and then rejects her, </VERS>\n\t\t\t<VERS vnumber=\"14\"> accusing her of impropriety and defaming her reputation by saying, \"I married this woman but when I had sexual relations with her I discovered she was not a virgin!\" </VERS>\n\t\t\t<VERS vnumber=\"15\"> Then the father and mother of the young woman must produce the evidence of virginity for the elders of the city at the gate. </VERS>\n\t\t\t<VERS vnumber=\"16\"> The young woman's father must say to the elders, \"I gave my daughter to this man and he has rejected her. </VERS>\n\t\t\t<VERS vnumber=\"17\"> Moreover, he has raised accusations of impropriety by saying, 'I discovered your daughter was not a virgin,' but this is the evidence of my daughter's virginity!\" The cloth must then be spread out before the city's elders. </VERS>\n\t\t\t<VERS vnumber=\"18\"> The elders of that city must then seize the man and punish him. </VERS>\n\t\t\t<VERS vnumber=\"19\"> They will fine him one hundred shekels of silver and give them to the young woman's father, for the man who made the accusation ruined the reputation of an Israelite virgin. She will then become his wife and he may never divorce her as long as he lives.</VERS>\n\t\t\t<VERS vnumber=\"20\"> But if the accusation is true and the young woman was not a virgin,</VERS>\n\t\t\t<VERS vnumber=\"21\"> the men of her city must bring the young woman to the door of her father's house and stone her to death, for she has done a disgraceful thing in Israel by behaving like a prostitute while living in her father's house. In this way you will purge evil from among you.</VERS>\n\t\t\t<VERS vnumber=\"22\"> If a man is caught having sexual relations with a married woman both the man who had relations with the woman and the woman herself must die; in this way you will purge evil from Israel.</VERS>\n\t\t\t<VERS vnumber=\"23\"> If a virgin is engaged to a man and another man meets her in the city and has sexual relations with her, </VERS>\n\t\t\t<VERS vnumber=\"24\"> you must bring the two of them to the gate of that city and stone them to death, the young woman because she did not cry out though in the city and the man because he violated his neighbor's fianc,e; in this way you will purge evil from among you. </VERS>\n\t\t\t<VERS vnumber=\"25\"> But if the man came across the engaged woman in the field and overpowered her and raped her, then only the rapist must die. </VERS>\n\t\t\t<VERS vnumber=\"26\"> You must not do anything to the young woman, she has done nothing deserving of death. This case is the same as when someone attacks another person and murders him,</VERS>\n\t\t\t<VERS vnumber=\"27\"> for the man met her in the field and the engaged woman cried out, but there was no one to rescue her.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Suppose a man comes across a virgin who is not engaged and overpowers and rapes her and they are discovered. </VERS>\n\t\t\t<VERS vnumber=\"29\"> The man who has raped her must pay her father fifty shekels of silver and she must become his wife because he has violated her; he may never divorce her as long as he lives.</VERS>\n\t\t\t<VERS vnumber=\"30\">  A man may not marry his father's former wife and in this way dishonor his father.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"23\">\n\t\t\t<VERS vnumber=\"1\"> A man with crushed or severed genitals may not enter the assembly of the LORD.</VERS>\n\t\t\t<VERS vnumber=\"2\"> A person of illegitimate birth may not enter the assembly of the LORD; to the tenth generation no one related to him may do so.</VERS>\n\t\t\t<VERS vnumber=\"3\"> An Ammonite or Moabite may not enter the assembly of the LORD; to the tenth generation none of their descendants shall ever do so,</VERS>\n\t\t\t<VERS vnumber=\"4\"> for they did not meet you with food and water on the way as you came from Egypt, and furthermore, they hired Balaam son of Beor of Pethor in Aram Naharaim to curse you. </VERS>\n\t\t\t<VERS vnumber=\"5\"> But the LORD your God refused to listen to Balaam and changed the curse to a blessing, for the LORD your God loves you. </VERS>\n\t\t\t<VERS vnumber=\"6\"> You must not seek peace and prosperity for them through all the ages to come.</VERS>\n\t\t\t<VERS vnumber=\"7\"> You must not hate an Edomite, for he is your relative; you must not hate an Egyptian, for you lived as a foreigner in his land. </VERS>\n\t\t\t<VERS vnumber=\"8\"> Children of the third generation born to them may enter the assembly of the LORD.</VERS>\n\t\t\t<VERS vnumber=\"9\"> When you go out as an army against your enemies, guard yourselves against anything impure.</VERS>\n\t\t\t<VERS vnumber=\"10\"> If there is someone among you who is impure because of some nocturnal emission, he must leave the camp; he may not reenter it immediately. </VERS>\n\t\t\t<VERS vnumber=\"11\"> When evening arrives he must wash himself with water and then at sunset he may reenter the camp.</VERS>\n\t\t\t<VERS vnumber=\"12\"> You are to have a place outside the camp to serve as a latrine.</VERS>\n\t\t\t<VERS vnumber=\"13\"> You must have a spade among your other equipment and when you relieve yourself outside you must dig a hole with the spade and then turn and cover your excrement.</VERS>\n\t\t\t<VERS vnumber=\"14\"> For the LORD your God walks about in the middle of your camp to deliver you and defeat your enemies for you. Therefore your camp should be holy, so that he does not see anything indecent among you and turn away from you.</VERS>\n\t\t\t<VERS vnumber=\"15\"> You must not return an escaped slave to his master when he has run away to you.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Indeed, he may live among you in any place he chooses, in whichever of your villages he prefers; you must not oppress him.</VERS>\n\t\t\t<VERS vnumber=\"17\"> There must never be a sacred prostitute among the young women of Israel nor a sacred male prostitute among the young men of Israel. </VERS>\n\t\t\t<VERS vnumber=\"18\"> You must never bring the pay of a female prostitute or the wage of a male prostitute into the temple of the LORD your God in fulfillment of any vow, for both of these are abhorrent to the LORD your God.</VERS>\n\t\t\t<VERS vnumber=\"19\"> You must not charge interest on a loan to your fellow Israelite, whether on money, food, or anything else that has been loaned with interest. </VERS>\n\t\t\t<VERS vnumber=\"20\"> You may lend with interest to a foreigner, but not to your fellow Israelite; if you keep this command the LORD your God will bless you in all you undertake in the land you are about to enter to possess.</VERS>\n\t\t\t<VERS vnumber=\"21\"> When you make a vow to the LORD your God you must not delay in fulfilling it, for otherwise he will surely hold you accountable as a sinner.</VERS>\n\t\t\t<VERS vnumber=\"22\"> If you refrain from making a vow, it will not be sinful.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Whatever you vow, you must be careful to do what you have promised, such as what you have vowed to the LORD your God as a freewill offering.</VERS>\n\t\t\t<VERS vnumber=\"24\"> When you enter the vineyard of your neighbor you may eat as many grapes as you please, but you must not take away any in a container.</VERS>\n\t\t\t<VERS vnumber=\"25\"> When you go into the ripe grain fields of your neighbor you may pluck off the kernels with your hand, but you must not use a sickle on your neighbor's ripe grain.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"24\">\n\t\t\t<VERS vnumber=\"1\"> If a man marries a woman and she does not please him because he has found something offensive in her, then he may draw up a divorce document, give it to her, and evict her from his house. </VERS>\n\t\t\t<VERS vnumber=\"2\"> When she has left him she may go and become someone else's wife. </VERS>\n\t\t\t<VERS vnumber=\"3\"> If the second husband rejects her and then divorces her, gives her the papers, and evicts her from his house, or if the second husband who married her dies, </VERS>\n\t\t\t<VERS vnumber=\"4\"> her first husband who divorced her is not permitted to remarry her after she has become ritually impure, for that is offensive to the LORD. You must not bring guilt on the land which the LORD your God is giving you as an inheritance.</VERS>\n\t\t\t<VERS vnumber=\"5\"> When a man is newly married, he need not go into the army nor be obligated in any way; he must be free to stay at home for a full year and bring joy to the wife he has married.</VERS>\n\t\t\t<VERS vnumber=\"6\"> One must not take either lower or upper millstones as security on a loan, for that is like taking a life itself as security.</VERS>\n\t\t\t<VERS vnumber=\"7\"> If a man is found kidnapping a person from among his fellow Israelites, and regards him as mere property and sells him, that kidnapper must die. In this way you will purge evil from among you.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Be careful during an outbreak of leprosy to follow precisely all that the Levitical priests instruct you; as I have commanded them, so you should do. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Remember what the LORD your God did to Miriam along the way after you left Egypt.</VERS>\n\t\t\t<VERS vnumber=\"10\"> When you make any kind of loan to your neighbor, you may not go into his house to claim what he is offering as security.</VERS>\n\t\t\t<VERS vnumber=\"11\"> You must stand outside and the person to whom you are making the loan will bring out to you what he is offering as security.</VERS>\n\t\t\t<VERS vnumber=\"12\"> If the person is poor you may not use what he gives you as security for a covering.</VERS>\n\t\t\t<VERS vnumber=\"13\"> You must by all means return to him at sunset the item he gave you as security so that he may sleep in his outer garment and bless you for it; it will be considered a just deed by the LORD your God.</VERS>\n\t\t\t<VERS vnumber=\"14\"> You must not oppress a lowly and poor servant, whether one from among your fellow Israelites or from the resident foreigners who are living in your land and villages.</VERS>\n\t\t\t<VERS vnumber=\"15\"> You must pay his wage that very day before the sun sets, for he is poor and his life depends on it. Otherwise he will cry out to the LORD against you, and you will be guilty of sin.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Fathers must not be put to death for what their children do, nor children for what their fathers do; each must be put to death for his own sin.</VERS>\n\t\t\t<VERS vnumber=\"17\"> You must not pervert justice due a resident foreigner or an orphan, or take a widow's garment as security for a loan.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Remember that you were slaves in Egypt and that the LORD your God redeemed you from there; therefore I am commanding you to do all this.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Whenever you reap your harvest in your field and leave some unraked grain there, you must not return to get it; it should go to the resident foreigner, orphan, and widow so that the LORD your God may bless all the work you do.</VERS>\n\t\t\t<VERS vnumber=\"20\"> When you beat your olive tree you must not repeat the procedure; the remaining olives belong to the resident foreigner, orphan, and widow. </VERS>\n\t\t\t<VERS vnumber=\"21\"> When you gather the grapes of your vineyard you must not do so a second time; they should go to the resident foreigner, orphan, and widow. </VERS>\n\t\t\t<VERS vnumber=\"22\"> Remember that you were slaves in the land of Egypt; therefore, I am commanding you to do all this.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"25\">\n\t\t\t<VERS vnumber=\"1\"> If controversy arises between people, they should go to court for judgment. When the judges hear the case, they shall exonerate the innocent but condemn the guilty. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Then, if the guilty person is sentenced to a beating, the judge shall force him to lie down and be beaten in his presence with the number of blows his wicked behavior deserves.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The judge may sentence him to forty blows, but no more. If he is struck with more than these, you might view your fellow Israelite with contempt.</VERS>\n\t\t\t<VERS vnumber=\"4\"> You must not muzzle your ox when it is treading grain.</VERS>\n\t\t\t<VERS vnumber=\"5\"> If brothers live together and one of them dies without having a son, the dead man's wife must not remarry someone outside the family. Instead, her late husband's brother must go to her, marry her, and perform the duty of a brother-in-law.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Then the first son she bears will continue the name of the dead brother, thus preventing his name from being blotted out of Israel. </VERS>\n\t\t\t<VERS vnumber=\"7\"> But if the man does not want to marry his brother's widow, then she must go to the elders at the town gate and say, \"My husband's brother refuses to preserve his brother's name in Israel; he is unwilling to perform the duty of a brother-in-law to me!\" </VERS>\n\t\t\t<VERS vnumber=\"8\"> Then the elders of his city must summon him and speak to him. If he persists, saying, \"I don't want to marry her,\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> then his sister-in-law must approach him in view of the elders, remove his sandal from his foot, and spit in his face. She will then respond, \"Thus may it be done to any man who does not maintain his brother's family line!\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> His family name will be referred to in Israel as \"the family of the one whose sandal was removed.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> If two men get into a hand-to-hand fight, and the wife of one of them gets involved to help her husband against his attacker, and she reaches out her hand and grabs his genitals,</VERS>\n\t\t\t<VERS vnumber=\"12\"> then you must cut off her hand, do not pity her.</VERS>\n\t\t\t<VERS vnumber=\"13\"> You must not have in your bag different stone weights, a heavy and a light one.</VERS>\n\t\t\t<VERS vnumber=\"14\"> You must not have in your house different measuring containers, a large and a small one. </VERS>\n\t\t\t<VERS vnumber=\"15\"> You must have an accurate and correct stone weight and an accurate and correct measuring container, so that your life may be extended in the land the LORD your God is about to give you. </VERS>\n\t\t\t<VERS vnumber=\"16\"> For anyone who acts dishonestly in these ways is abhorrent to the LORD your God.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Remember what the Amalekites did to you on your way from Egypt, </VERS>\n\t\t\t<VERS vnumber=\"18\"> how they met you along the way and cut off all your stragglers in the rear of the march when you were exhausted and tired; they were unafraid of God.</VERS>\n\t\t\t<VERS vnumber=\"19\"> So when the LORD your God gives you relief from all the enemies who surround you in the land he is giving you as an inheritance, you must wipe out the memory of the Amalekites from under heaven, do not forget!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"26\">\n\t\t\t<VERS vnumber=\"1\"> When you enter the land that the LORD your God is giving you as an inheritance, and you occupy it and live in it, </VERS>\n\t\t\t<VERS vnumber=\"2\"> you must take the first of all the ground's produce you harvest from the land the LORD your God is giving you, place it in a basket, and go to the place where he chooses to locate his name.</VERS>\n\t\t\t<VERS vnumber=\"3\"> You must go to the priest in office at that time and say to him, \"I declare today to the LORD your God that I have come into the land that the LORD promised to our ancestors to give us.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> The priest will then take the basket from you and set it before the altar of the LORD your God. </VERS>\n\t\t\t<VERS vnumber=\"5\"> Then you must affirm before the LORD YOUR GOD, \"A wandering Aramean was my ancestor, and he went down to Egypt and lived there as a foreigner with a household few in number, but there he became a great, powerful, and numerous people. </VERS>\n\t\t\t<VERS vnumber=\"6\"> But the Egyptians mistreated and oppressed us, forcing us to do burdensome labor.</VERS>\n\t\t\t<VERS vnumber=\"7\"> So we cried out to the LORD, the God of our ancestors, and he heard us and saw our humiliation, toil, and oppression. </VERS>\n\t\t\t<VERS vnumber=\"8\"> Therefore the LORD brought us out of Egypt with tremendous strength and power, as well as with great awe-inspiring signs and wonders. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Then he brought us to this place and gave us this land, a land flowing with milk and honey.</VERS>\n\t\t\t<VERS vnumber=\"10\"> So now, look! I have brought the first of the ground's produce that you, LORD, have given me.\" Then you must set it down before the LORD your God and worship before him.</VERS>\n\t\t\t<VERS vnumber=\"11\"> You will celebrate all the good things that the LORD your God has given you and your family, along with the Levites and the resident foreigners among you.</VERS>\n\t\t\t<VERS vnumber=\"12\"> When you finish tithing all your income in the third year (the year of tithing), you must give it to the Levites, the resident foreigners, the orphans, and the widows so that they may eat to their satisfaction in your villages.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Then you shall say before the LORD your God, \"I have removed the sacred offering from my house and given it to the Levites, the resident foreigners, the orphans, and the widows just as you have commanded me. I have not violated or forgotten your commandments. </VERS>\n\t\t\t<VERS vnumber=\"14\"> I have not eaten anything when I was in mourning, or removed any of it while ceremonially unclean, or offered any of it to the dead; I have obeyed you and have done everything you have commanded me. </VERS>\n\t\t\t<VERS vnumber=\"15\"> Look down from your holy dwelling place in heaven and bless your people Israel and the land you have given us, just as you promised our ancestors, a land flowing with milk and honey.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> Today the LORD your God is commanding you to keep these statutes and ordinances, something you must do with all your heart and soul.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Today you have declared the LORD to be your God, and that you will walk in his ways, keep his statutes, commandments, and ordinances, and obey him.</VERS>\n\t\t\t<VERS vnumber=\"18\"> And today the LORD has declared you to be his special people (as he already promised you) so you may keep all his commandments.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Then he will elevate you above all the nations he has made and you will receive praise, fame, and honor. You will be a people holy to the LORD your God, as he has said.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"27\">\n\t\t\t<VERS vnumber=\"1\"> Then Moses and the elders of Israel commanded the people: \"Pay attention to all the commandments I am giving you today. </VERS>\n\t\t\t<VERS vnumber=\"2\"> When you cross the Jordan River to the land the LORD your God is giving you, you must erect great stones and cover them with plaster. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Then you must inscribe on them all the words of this law when you cross over, so that you may enter the land the LORD your God is giving you, a land flowing with milk and honey just as the LORD, the God of your ancestors, said to you. </VERS>\n\t\t\t<VERS vnumber=\"4\"> So when you cross the Jordan you must erect on Mount Ebal these stones about which I am commanding you today, and you must cover them with plaster. </VERS>\n\t\t\t<VERS vnumber=\"5\"> Then you must build an altar there to the LORD your God, an altar of stones, do not use an iron tool on them.</VERS>\n\t\t\t<VERS vnumber=\"6\"> You must build the altar of the LORD your God with whole stones and offer burnt offerings on it to the LORD your God.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Also you must offer fellowship offerings and eat them there, rejoicing before the LORD your God.</VERS>\n\t\t\t<VERS vnumber=\"8\"> You must inscribe on the stones all the words of this law, making them clear.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> Then Moses and the Levitical priests spoke to all Israel: \"Be quiet and pay attention, Israel. Today you have become the people of the LORD your God.</VERS>\n\t\t\t<VERS vnumber=\"10\"> You must obey him and keep his commandments and statutes that I am giving you today.\" </VERS>\n\t\t\t<VERS vnumber=\"11\"> Moreover, Moses commanded the people that day:</VERS>\n\t\t\t<VERS vnumber=\"12\"> \"The following tribes must stand to bless the people on Mount Gerizim when you cross the Jordan: Simeon, Levi, Judah, Issachar, Joseph, and Benjamin. </VERS>\n\t\t\t<VERS vnumber=\"13\"> And these other tribes must stand for the curse on Mount Ebal: Reuben, Gad, Asher, Zebulun, Dan, and Naphtali.</VERS>\n\t\t\t<VERS vnumber=\"14\"> \"The Levites will call out to every Israelite with a loud voice: </VERS>\n\t\t\t<VERS vnumber=\"15\"> 'Cursed is the one who makes a carved or metal image, something abhorrent to the LORD, the work of the craftsman, and sets it up in a secret place.' Then all the people will say, 'Amen!'</VERS>\n\t\t\t<VERS vnumber=\"16\"> 'Cursed is the one who disrespects his father and mother.' Then all the people will say, 'Amen!' </VERS>\n\t\t\t<VERS vnumber=\"17\"> 'Cursed is the one who moves his neighbor's boundary marker.' Then all the people will say, 'Amen!'</VERS>\n\t\t\t<VERS vnumber=\"18\"> 'Cursed is the one who misleads a blind person on the road.' Then all the people will say, 'Amen!'</VERS>\n\t\t\t<VERS vnumber=\"19\"> 'Cursed is the one who perverts justice for the resident foreigner, the orphan, and the widow.' Then all the people will say, 'Amen!'</VERS>\n\t\t\t<VERS vnumber=\"20\"> 'Cursed is the one who has sexual relations with his father's former wife, for he dishonors his father.' Then all the people will say, 'Amen!' </VERS>\n\t\t\t<VERS vnumber=\"21\"> 'Cursed is the one who commits bestiality.' Then all the people will say, 'Amen!' </VERS>\n\t\t\t<VERS vnumber=\"22\"> 'Cursed is the one who has sexual relations with his sister, the daughter of either his father or mother.' Then all the people will say, 'Amen!'</VERS>\n\t\t\t<VERS vnumber=\"23\"> 'Cursed is the one who has sexual relations with his mother-in-law.' Then all the people will say, 'Amen!'</VERS>\n\t\t\t<VERS vnumber=\"24\"> 'Cursed is the one who kills his neighbor in private.' Then all the people will say, 'Amen!' </VERS>\n\t\t\t<VERS vnumber=\"25\"> 'Cursed is the one who takes a bribe to kill an innocent person.' Then all the people will say, 'Amen!'</VERS>\n\t\t\t<VERS vnumber=\"26\"> 'Cursed is the one who refuses to keep the words of this law.' Then all the people will say, 'Amen!'</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"28\">\n\t\t\t<VERS vnumber=\"1\"> \"If you indeed obey the LORD your God and are careful to observe all his commandments I am giving you today, the LORD your God will elevate you above all the nations of the earth. </VERS>\n\t\t\t<VERS vnumber=\"2\"> All these blessings will come to you in abundance if you obey the LORD your God: </VERS>\n\t\t\t<VERS vnumber=\"3\"> You will be blessed in the city and blessed in the field.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Your children will be blessed, as well as the produce of your soil, the offspring of your livestock, the calves of your herds, and the lambs of your flocks. </VERS>\n\t\t\t<VERS vnumber=\"5\"> Your basket and your mixing bowl will be blessed.</VERS>\n\t\t\t<VERS vnumber=\"6\"> You will be blessed when you come in and blessed when you go out.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The LORD will cause your enemies who attack you to be struck down before you; they will attack you from one direction but flee from you in seven different directions. </VERS>\n\t\t\t<VERS vnumber=\"8\"> The LORD will decree blessing for you with respect to your barns and in everything you do, yes, he will bless you in the land he is giving you.</VERS>\n\t\t\t<VERS vnumber=\"9\"> The LORD will designate you as his holy people just as he promised you, if you keep his commandments and obey him.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Then all the peoples of the earth will see that you belong to the LORD, and they will respect you. </VERS>\n\t\t\t<VERS vnumber=\"11\"> The LORD will greatly multiply your children, the offspring of your livestock, and the produce of your soil in the land which he promised your ancestors he would give you. </VERS>\n\t\t\t<VERS vnumber=\"12\"> The LORD will open for you his good treasure house, the heavens, to give you rain for the land in its season and to bless all you do; you will lend to many nations but you will not borrow from any. </VERS>\n\t\t\t<VERS vnumber=\"13\"> The LORD will make you the head and not the tail, and you will always end up at the top and not at the bottom, if you obey his commandments which I am urging you today to be careful to do. </VERS>\n\t\t\t<VERS vnumber=\"14\"> But you must not turn away from all the commandments I am giving you today, to either the right or left, nor pursue other gods and worship them.</VERS>\n\t\t\t<VERS vnumber=\"15\"> \"But if you ignore the LORD your God and are not careful to keep all his commandments and statutes I am giving you today, then all these curses will come upon you in full force:</VERS>\n\t\t\t<VERS vnumber=\"16\"> You will be cursed in the city and cursed in the field.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Your basket and your mixing bowl will be cursed.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Your children will be cursed, as well as the produce of your soil, the calves of your herds, and the lambs of your flocks. </VERS>\n\t\t\t<VERS vnumber=\"19\"> You will be cursed when you come in and cursed when you go out.</VERS>\n\t\t\t<VERS vnumber=\"20\"> \"The LORD will send on you a curse, confusing you and opposing you in everything you undertake until you are destroyed and quickly perish because of the evil of your deeds, in that you have forsaken me.</VERS>\n\t\t\t<VERS vnumber=\"21\"> The LORD will plague you with deadly diseases until he has completely removed you from the land you are about to possess. </VERS>\n\t\t\t<VERS vnumber=\"22\"> He will afflict you with weakness, fever, inflammation, infection, sword, blight, and mildew; these will attack you until you perish. </VERS>\n\t\t\t<VERS vnumber=\"23\"> The sky above your heads will be bronze and the earth beneath you iron. </VERS>\n\t\t\t<VERS vnumber=\"24\"> The LORD will make the rain of your land powder and dust; it will come down on you from the sky until you are destroyed.</VERS>\n\t\t\t<VERS vnumber=\"25\"> \"The LORD will allow you to be struck down before your enemies; you will attack them from one direction but flee from them in seven directions and will become an object of terror to all the kingdoms of the earth. </VERS>\n\t\t\t<VERS vnumber=\"26\"> Your carcasses will be food for every bird of the sky and wild animal of the earth, and there will be no one to chase them off.</VERS>\n\t\t\t<VERS vnumber=\"27\"> The LORD will afflict you with the boils of Egypt and with tumors, eczema, and scabies, all of which cannot be healed.</VERS>\n\t\t\t<VERS vnumber=\"28\"> The LORD will also subject you to madness, blindness, and confusion of mind.</VERS>\n\t\t\t<VERS vnumber=\"29\"> You will feel your way along at noon like the blind person does in darkness and you will not succeed in anything you do; you will be constantly oppressed and continually robbed, with no one to save you. </VERS>\n\t\t\t<VERS vnumber=\"30\"> You will be engaged to a woman and another man will rape her. You will build a house but not live in it. You will plant a vineyard but not even begin to use it. </VERS>\n\t\t\t<VERS vnumber=\"31\"> Your ox will be slaughtered before your very eyes but you will not eat of it. Your donkey will be stolen from you as you watch and will not be returned to you. Your flock of sheep will be given to your enemies and there will be no one to save you.</VERS>\n\t\t\t<VERS vnumber=\"32\"> Your sons and daughters will be given to another people while you look on in vain all day, and you will be powerless to do anything about it.</VERS>\n\t\t\t<VERS vnumber=\"33\"> As for the produce of your land and all your labor, a people you do not know will consume it, and you will be nothing but oppressed and crushed for the rest of your lives.</VERS>\n\t\t\t<VERS vnumber=\"34\"> You will go insane from seeing all this.</VERS>\n\t\t\t<VERS vnumber=\"35\"> The LORD will afflict you in your knees and on your legs with painful, incurable boils, from the soles of your feet to the top of your head.</VERS>\n\t\t\t<VERS vnumber=\"36\"> The LORD will force you and your king whom you will appoint over you to go away to a people whom you and your ancestors have not known, and you will serve other gods of wood and stone there. </VERS>\n\t\t\t<VERS vnumber=\"37\"> You will become an occasion of horror, a proverb, and an object of ridicule to all the peoples to whom the LORD will drive you.</VERS>\n\t\t\t<VERS vnumber=\"38\"> \"You will take much seed to the field but gather little harvest, because locusts will consume it.</VERS>\n\t\t\t<VERS vnumber=\"39\"> You will plant vineyards and cultivate them, but you will not drink wine or gather in grapes, because worms will eat them.</VERS>\n\t\t\t<VERS vnumber=\"40\"> You will have olive trees throughout your territory but you will not anoint yourself with olive oil, because the olives will drop off the trees while still unripe.</VERS>\n\t\t\t<VERS vnumber=\"41\"> You will bear sons and daughters but not keep them, because they will be taken into captivity.</VERS>\n\t\t\t<VERS vnumber=\"42\"> Whirring locusts will take over every tree and all the produce of your soil. </VERS>\n\t\t\t<VERS vnumber=\"43\"> The foreigners who reside among you will become higher and higher over you and you will become lower and lower. </VERS>\n\t\t\t<VERS vnumber=\"44\"> They will lend to you but you will not lend to them; they will become the head and you will become the tail!</VERS>\n\t\t\t<VERS vnumber=\"45\"> All these curses will fall on you, pursuing and overtaking you until you are destroyed, because you would not obey the LORD your God by keeping his commandments and statutes that he has given you. </VERS>\n\t\t\t<VERS vnumber=\"46\"> These curses will be a perpetual sign and wonder with reference to you and your descendants.</VERS>\n\t\t\t<VERS vnumber=\"47\"> \"Because you have not served the LORD your God joyfully and wholeheartedly with the abundance of everything you have,</VERS>\n\t\t\t<VERS vnumber=\"48\"> instead in hunger, thirst, nakedness, and poverty you will serve your enemies whom the LORD will send against you. They will place an iron yoke on your neck until they have destroyed you. </VERS>\n\t\t\t<VERS vnumber=\"49\"> The LORD will raise up a distant nation against you, one from the other side of the earth as the eagle flies, a nation whose language you will not understand, </VERS>\n\t\t\t<VERS vnumber=\"50\"> a nation of stern appearance that will have no regard for the elderly or pity for the young.</VERS>\n\t\t\t<VERS vnumber=\"51\"> They will devour the offspring of your livestock and the produce of your soil until you are destroyed. They will not leave you with any grain, new wine, olive oil, calves of your herds, or lambs of your flocks until they have destroyed you. </VERS>\n\t\t\t<VERS vnumber=\"52\"> They will besiege all of your villages until all of your high and fortified walls collapse, those in which you put your confidence throughout the land. They will besiege all your villages throughout the land the LORD your God has given you.</VERS>\n\t\t\t<VERS vnumber=\"53\"> You will then eat your own offspring, the flesh of the sons and daughters the LORD your God has given you, because of the severity of the siege by which your enemies will constrict you. </VERS>\n\t\t\t<VERS vnumber=\"54\"> The man among you who is by nature tender and sensitive will turn against his brother, his beloved wife, and his remaining children.</VERS>\n\t\t\t<VERS vnumber=\"55\"> He will withhold from all of them his children's flesh that he is eating (since there is nothing else left), because of the severity of the siege by which your enemy will constrict you in your villages. </VERS>\n\t\t\t<VERS vnumber=\"56\"> Likewise, the most tender and delicate of your women, who would never think of putting even the sole of her foot on the ground because of her daintiness, will turn against her beloved husband, her sons and daughters, </VERS>\n\t\t\t<VERS vnumber=\"57\"> and will secretly eat her afterbirth and her newborn children (since she has nothing else), because of the severity of the siege by which your enemy will constrict you in your villages.</VERS>\n\t\t\t<VERS vnumber=\"58\"> \"If you refuse to obey all the words of this law, the things written in this scroll, and refuse to fear this glorious and awesome name, the LORD your God, </VERS>\n\t\t\t<VERS vnumber=\"59\"> then the LORD will increase your punishments and those of your descendants, great and long-lasting afflictions and severe, enduring illnesses.</VERS>\n\t\t\t<VERS vnumber=\"60\"> He will infect you with all the diseases of Egypt that you dreaded, and they will persistently afflict you.</VERS>\n\t\t\t<VERS vnumber=\"61\"> Moreover, the LORD will bring upon you every kind of sickness and plague not mentioned in this scroll of commandments, until you have perished. </VERS>\n\t\t\t<VERS vnumber=\"62\"> There will be very few of you left, though at one time you were as numerous as the stars in the sky, because you will have disobeyed the LORD your God.</VERS>\n\t\t\t<VERS vnumber=\"63\"> This is what will happen: Just as the LORD delighted to do good for you and make you numerous, he will take delight in destroying and decimating you. You will be uprooted from the land you are about to possess. </VERS>\n\t\t\t<VERS vnumber=\"64\"> The LORD will scatter you among all nations, from one end of the earth to the other. There you will worship other gods that neither you nor your ancestors have known, gods of wood and stone.</VERS>\n\t\t\t<VERS vnumber=\"65\"> Among those nations you will have no rest nor will there be a place of peaceful rest for the soles of your feet, for there the LORD will give you an anxious heart, failing eyesight, and a spirit of despair.</VERS>\n\t\t\t<VERS vnumber=\"66\"> Your life will hang in doubt before you; you will be terrified by night and day and will have no certainty of surviving from one day to the next.</VERS>\n\t\t\t<VERS vnumber=\"67\"> In the morning you will say, 'If only it were evening!' And in the evening you will say, 'I wish it were morning!' because of the things you will fear and the things you will see.</VERS>\n\t\t\t<VERS vnumber=\"68\"> Then the LORD will make you return to Egypt by ship, over a route I said to you that you would never see again. There you will sell yourselves to your enemies as male and female slaves, but no one will buy you.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"29\">\n\t\t\t<VERS vnumber=\"1\">  These are the words of the covenant that the LORD commanded Moses to make with the people of Israel in the land of Moab, in addition to the covenant he had made with them at Horeb.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Moses proclaimed to all Israel as follows: \"You have seen all that the LORD did in the land of Egypt to Pharaoh, all his servants, and his land. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Your eyes have seen the great judgments, those signs and mighty wonders. </VERS>\n\t\t\t<VERS vnumber=\"4\"> But to this very day the LORD has not given you an understanding mind, perceptive eyes, or discerning ears!</VERS>\n\t\t\t<VERS vnumber=\"5\"> I have led you through the desert for forty years. Your clothing has not worn out nor have your sandals deteriorated. </VERS>\n\t\t\t<VERS vnumber=\"6\"> You have eaten no bread and drunk no wine or beer, all so that you might know that I am the LORD your God!</VERS>\n\t\t\t<VERS vnumber=\"7\"> When you came to this place King Sihon of Heshbon and King Og of Bashan came out to make war and we defeated them.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Then we took their land and gave it as an inheritance to Reuben, Gad, and half the tribe of Manasseh.</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"Therefore, keep the terms of this covenant and obey them so that you may be successful in everything you do. </VERS>\n\t\t\t<VERS vnumber=\"10\"> You are standing today, all of you, before the LORD your God, the heads of your tribes, your elders, your officials, every Israelite man,</VERS>\n\t\t\t<VERS vnumber=\"11\"> your infants, your wives, and the foreigners living in your encampment, those who chop wood and those who carry water,</VERS>\n\t\t\t<VERS vnumber=\"12\"> so that you may enter by oath into the covenant the LORD your God is making with you today.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Today he will affirm that you are his people and that he is your God, just as he promised you and as he swore by oath to your ancestors Abraham, Isaac, and Jacob. </VERS>\n\t\t\t<VERS vnumber=\"14\"> It is not with you alone that I am making this covenant by oath,</VERS>\n\t\t\t<VERS vnumber=\"15\"> but with whoever stands with us here today before the LORD our God as well as those not with us here today.</VERS>\n\t\t\t<VERS vnumber=\"16\"> \"(For you know how we lived in the land of Egypt and how we crossed through the nations as we traveled.</VERS>\n\t\t\t<VERS vnumber=\"17\"> You have seen their detestable things and idols of wood, stone, silver, and gold.)</VERS>\n\t\t\t<VERS vnumber=\"18\"> Beware that the heart of no man, woman, clan, or tribe among you turns away from the LORD our God today to pursue and serve the gods of those nations; beware that there is among you no root producing poisonous and bitter fruit.</VERS>\n\t\t\t<VERS vnumber=\"19\"> When such a person hears the words of this oath he secretly blesses himself and says, \"I will have peace though I continue to walk with a stubborn spirit.\" This will destroy the watered ground with the parched.</VERS>\n\t\t\t<VERS vnumber=\"20\"> The LORD will be unwilling to forgive him, and his intense anger will rage against that man; all the curses written in this scroll will fall upon him and the LORD will obliterate his name from memory.</VERS>\n\t\t\t<VERS vnumber=\"21\"> The LORD will single him out for judgment from all the tribes of Israel according to all the curses of the covenant written in this scroll of the law. </VERS>\n\t\t\t<VERS vnumber=\"22\"> The generation to come, your descendants who will rise up after you, as well as the foreigner who will come from distant places, will see the afflictions of that land and the illnesses that the LORD has brought on it.</VERS>\n\t\t\t<VERS vnumber=\"23\"> The whole land will be covered with brimstone, salt, and burning debris; it will not be planted nor will it sprout or produce grass. It will resemble the destruction of Sodom and Gomorrah, Admah and Zeboiim, which the LORD destroyed in his intense anger.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Then all the nations will ask, \"Why has the LORD done all this to this land? What is this fierce, heated display of anger all about?\" </VERS>\n\t\t\t<VERS vnumber=\"25\"> Then people will say, \"Because they abandoned the covenant of the LORD, the God of their ancestors, which he made with them when he brought them out of the land of Egypt.</VERS>\n\t\t\t<VERS vnumber=\"26\"> They went and served other gods and worshiped them, gods they did not know and that he did not permit them to worship.</VERS>\n\t\t\t<VERS vnumber=\"27\"> That is why the LORD's anger erupted against this land, bringing on it all the curses written in this scroll. </VERS>\n\t\t\t<VERS vnumber=\"28\"> So the LORD has uprooted them from their land in anger, wrath, and great rage and has deported them to another land, as is clear today.\"</VERS>\n\t\t\t<VERS vnumber=\"29\"> Secret things belong to the LORD our God, but those that are revealed belong to us and our descendants forever, so that we might obey all the words of this law.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"30\">\n\t\t\t<VERS vnumber=\"1\"> \"When you have experienced all these things, both the blessings and the curses I have set before you, you will reflect upon them in all the nations where the LORD your God has banished you. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Then if you and your descendants turn to the LORD your God and obey him with your whole mind and being just as I am commanding you today, </VERS>\n\t\t\t<VERS vnumber=\"3\"> the LORD your God will reverse your captivity and have pity on you. He will turn and gather you from all the peoples among whom he has scattered you. </VERS>\n\t\t\t<VERS vnumber=\"4\"> Even if your exiles are in the most distant land, from there the LORD your God will gather you and bring you back. </VERS>\n\t\t\t<VERS vnumber=\"5\"> Then he will bring you to the land your ancestors possessed and you also will possess it; he will do better for you and multiply you more than he did your ancestors. </VERS>\n\t\t\t<VERS vnumber=\"6\"> The LORD your God will also cleanse your heart and the hearts of your descendants so that you may love him with all your mind and being and so that you may live. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Then the LORD your God will put all these curses on your enemies, on those who hate you and persecute you.</VERS>\n\t\t\t<VERS vnumber=\"8\"> You will return and obey the LORD, keeping all his commandments I am giving you today. </VERS>\n\t\t\t<VERS vnumber=\"9\"> The LORD your God will make the labor of your hands abundantly successful and multiply your children, the offspring of your cattle, and the produce of your soil. For the LORD your God will once more rejoice over you to make you prosperous just as he rejoiced over your ancestors, </VERS>\n\t\t\t<VERS vnumber=\"10\"> if you obey the LORD your God and keep his commandments and statutes that are written in this scroll of the law. But you must turn to him with your whole mind and being.</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"This commandment I am giving you today is not too difficult for you, nor is it too remote. </VERS>\n\t\t\t<VERS vnumber=\"12\"> It is not in heaven, as though one must say, \"Who will go up to heaven to get it for us and proclaim it to us so we may obey it?\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> And it is not across the sea, as though one must say, \"Who will cross over to the other side of the sea and get it for us and proclaim it to us so we may obey it?\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> For the thing is very near you, it is in your mouth and in your mind so that you can do it.</VERS>\n\t\t\t<VERS vnumber=\"15\"> \"Look! I have set before you today life and prosperity on the one hand, and death and disaster on the other.</VERS>\n\t\t\t<VERS vnumber=\"16\"> What I am commanding you today is to love the LORD your God, to walk in his ways, and to obey his commandments, his statutes, and his ordinances. Then you will live and become numerous and the LORD your God will bless you in the land which you are about to possess.</VERS>\n\t\t\t<VERS vnumber=\"17\"> However, if you turn aside and do not obey, but are lured away to worship and serve other gods, </VERS>\n\t\t\t<VERS vnumber=\"18\"> I declare to you this very day that you will certainly perish! You will not extend your time in the land you are crossing the Jordan to possess.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Today I invoke heaven and earth as a witness against you that I have set life and death, blessing and curse, before you. Therefore choose life so that you and your descendants may live!</VERS>\n\t\t\t<VERS vnumber=\"20\"> I also call on you to love the LORD your God, to obey him and be loyal to him, for he gives you life and enables you to live continually in the land the LORD promised to give to your ancestors Abraham, Isaac, and Jacob.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"31\">\n\t\t\t<VERS vnumber=\"1\"> Then Moses went and spoke these words to all Israel. </VERS>\n\t\t\t<VERS vnumber=\"2\"> He said to them, \"Today I am a hundred and twenty years old. I am no longer able to get about, and the LORD has said to me, 'You will not cross the Jordan.' </VERS>\n\t\t\t<VERS vnumber=\"3\"> As for the LORD your God, he is about to cross over before you; he will destroy these nations before you and dispossess them. As for Joshua, he is about to cross before you just as the LORD has said.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The LORD will do to them just what he did to Sihon and Og, the Amorite kings, and to their land, which he destroyed.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The LORD will deliver them over to you and you will do to them according to the whole commandment I have given you.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Be strong and courageous! Do not fear or tremble before them, for the LORD your God is the one who is going with you. He will not fail you or abandon you!\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> Then Moses called out to Joshua in the presence of all Israel, \"Be strong and courageous, for you will accompany these people to the land that the LORD promised to give their ancestors, and you will enable them to inherit it. </VERS>\n\t\t\t<VERS vnumber=\"8\"> The LORD is indeed going before you, he will be with you; he will not fail you or abandon you. Do not be afraid or discouraged!\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> Then Moses wrote down this law and gave it to the Levitical priests, who carry the ark of the LORD's covenant, and to all Israel's elders.</VERS>\n\t\t\t<VERS vnumber=\"10\"> He commanded them: \"At the end of seven years, at the appointed time of the cancellation of debts, at the Feast of Temporary Shelters,</VERS>\n\t\t\t<VERS vnumber=\"11\"> when all Israel comes to appear before the LORD your God in the place he chooses, you must read this law before them within their hearing. </VERS>\n\t\t\t<VERS vnumber=\"12\"> Gather the people, men, women, and children, as well as the resident foreigners in your villages, so they may hear and thus learn about and fear the LORD your God and carefully obey all the words of this law.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Then their children, who have not known this law, will also hear about and learn to fear the LORD your God for as long as you live in the land you are crossing the Jordan to possess.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> Then the LORD said to Moses, \"The day of your death is near. Summon Joshua and present yourselves in the tent of meeting so that I can commission him.\" So Moses and Joshua presented themselves in the tent of meeting. </VERS>\n\t\t\t<VERS vnumber=\"15\"> The LORD appeared in the tent in a pillar of cloud that stood above the door of the tent. </VERS>\n\t\t\t<VERS vnumber=\"16\"> Then the LORD said to Moses, \"You are about to die, and then these people will begin to prostitute themselves with the foreign gods of the land into which they are going. They will reject me and break my covenant that I have made with them.</VERS>\n\t\t\t<VERS vnumber=\"17\"> At that time my anger will erupt against them and I will abandon them and hide my face from them until they are devoured. Many disasters and distresses will overcome them so that they will say at that time, 'Have not these disasters overcome us because our God is not among us?'</VERS>\n\t\t\t<VERS vnumber=\"18\"> But I will certainly hide myself at that time because of all the wickedness they will have done by turning to other gods. </VERS>\n\t\t\t<VERS vnumber=\"19\"> Now write down for yourselves the following song and teach it to the Israelites. Put it into their very mouths so that this song may serve as my witness against the Israelites!</VERS>\n\t\t\t<VERS vnumber=\"20\"> For after I have brought them to the land I promised to their ancestors, one flowing with milk and honey, and they eat their fill and become fat, then they will turn to other gods and worship them; they will reject me and break my covenant.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Then when many disasters and distresses overcome them this song will testify against them, for their descendants will not forget it. I know the intentions they have in mind today, even before I bring them to the land I have promised.\" </VERS>\n\t\t\t<VERS vnumber=\"22\"> So on that day Moses wrote down this song and taught it to the Israelites,</VERS>\n\t\t\t<VERS vnumber=\"23\"> and the LORD commissioned Joshua son of Nun, \"Be strong and courageous, for you will take the Israelites to the land I have promised them, and I will be with you.\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> When Moses finished writing on a scroll the words of this law in their entirety,</VERS>\n\t\t\t<VERS vnumber=\"25\"> he commanded the Levites who carried the ark of the LORD's covenant, </VERS>\n\t\t\t<VERS vnumber=\"26\"> \"Take this scroll of the law and place it beside the ark of the covenant of the LORD your God. It will remain there as a witness against you,</VERS>\n\t\t\t<VERS vnumber=\"27\"> for I know about your rebellion and stubbornness. Indeed, even while I have been living among you to this very day, you have rebelled against the LORD; you will be even more rebellious after my death!</VERS>\n\t\t\t<VERS vnumber=\"28\"> Gather to me all your tribal elders and officials so I can speak to them directly about these things and call the heavens and the earth to witness against them.</VERS>\n\t\t\t<VERS vnumber=\"29\"> For I know that after I die you will totally corrupt yourselves and turn away from the path I have commanded you to walk. Disaster will confront you in the days to come because you will act wickedly before the LORD, inciting him to anger because of your actions.\"</VERS>\n\t\t\t<VERS vnumber=\"30\"> Then Moses recited the words of this song from start to finish in the hearing of the whole assembly of Israel.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"32\">\n\t\t\t<VERS vnumber=\"1\"> Listen, O heavens, and I will speak; hear, O earth, the words of my mouth.</VERS>\n\t\t\t<VERS vnumber=\"2\"> My teaching will drop like the rain, my sayings will drip like the dew, as rain drops upon the grass, and showers upon new growth.</VERS>\n\t\t\t<VERS vnumber=\"3\"> For I will proclaim the name of the LORD; you must acknowledge the greatness of our God.</VERS>\n\t\t\t<VERS vnumber=\"4\"> As for the Rock, his work is perfect, for all his ways are just. He is a reliable God who is never unjust, he is fair and upright.</VERS>\n\t\t\t<VERS vnumber=\"5\"> His people have been unfaithful to him; they have not acted like his children, this is their sin. They are a perverse and deceitful generation.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Is this how you repay the LORD, you foolish, unwise people? Is he not your father, your creator? He has made you and established you.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Remember the ancient days; bear in mind the years of past generations. Ask your father and he will inform you, your elders, and they will tell you.</VERS>\n\t\t\t<VERS vnumber=\"8\"> When the Most High gave the nations their inheritance, when he divided up humankind, he set the boundaries of the peoples, according to the number of the heavenly assembly.</VERS>\n\t\t\t<VERS vnumber=\"9\"> For the LORD's allotment is his people, Jacob is his special possession.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The LORD found him in a desolate land, in an empty wasteland where animals howl. He continually guarded him and taught him; he continually protected him like the pupil of his eye.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Like an eagle that stirs up its nest, that hovers over its young, so the LORD spread out his wings and took him, he lifted him up on his pinions.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The LORD alone was guiding him, no foreign god was with him.</VERS>\n\t\t\t<VERS vnumber=\"13\"> He enabled him to travel over the high terrain of the land, and he ate of the produce of the fields. He provided honey for him from the cliffs, and olive oil from the hardest of rocks,</VERS>\n\t\t\t<VERS vnumber=\"14\"> butter from the herd and milk from the flock, along with the fat of lambs, rams and goats of Bashan, along with the best of the kernels of wheat; and from the juice of grapes you drank wine.</VERS>\n\t\t\t<VERS vnumber=\"15\"> But Jeshurun became fat and kicked, you got fat, thick, and stuffed! Then he deserted the God who made him, and treated the Rock who saved him with contempt.</VERS>\n\t\t\t<VERS vnumber=\"16\"> They made him jealous with other gods, they enraged him with abhorrent idols.</VERS>\n\t\t\t<VERS vnumber=\"17\"> They sacrificed to demons, not God, to gods they had not known; to new gods who had recently come along, gods your ancestors had not known about.</VERS>\n\t\t\t<VERS vnumber=\"18\"> You have forgotten the Rock who fathered you, and put out of mind the God who gave you birth.</VERS>\n\t\t\t<VERS vnumber=\"19\"> But the LORD took note and despised them because his sons and daughters enraged him.</VERS>\n\t\t\t<VERS vnumber=\"20\"> He said, \"I will reject them, I will see what will happen to them; for they are a perverse generation, children who show no loyalty.</VERS>\n\t\t\t<VERS vnumber=\"21\"> They have made me jealous with false gods, enraging me with their worthless gods; so I will make them jealous with a people they do not recognize, with a nation slow to learn I will enrage them.</VERS>\n\t\t\t<VERS vnumber=\"22\"> For a fire has been kindled by my anger, and it burns to lowest Sheol; it consumes the earth and its produce, and ignites the foundations of the mountains.</VERS>\n\t\t\t<VERS vnumber=\"23\"> I will increase their disasters, I will use up my arrows on them.</VERS>\n\t\t\t<VERS vnumber=\"24\"> They will be starved by famine, eaten by plague, and bitterly stung; I will send the teeth of wild animals against them, along with the poison of creatures that crawl in the dust.</VERS>\n\t\t\t<VERS vnumber=\"25\"> The sword will make people childless outside, and terror will do so inside; they will destroy both the young man and the virgin, the infant and the gray-haired man.</VERS>\n\t\t\t<VERS vnumber=\"26\"> \"I said, 'I want to cut them in pieces. I want to make people forget they ever existed.</VERS>\n\t\t\t<VERS vnumber=\"27\"> But I fear the reaction of their enemies, for their adversaries would misunderstand and say, \"Our power is great, and the LORD has not done all this!\"'</VERS>\n\t\t\t<VERS vnumber=\"28\"> They are a nation devoid of wisdom, and there is no understanding among them.</VERS>\n\t\t\t<VERS vnumber=\"29\"> I wish that they were wise and could understand this, and that they could comprehend what will happen to them.\"</VERS>\n\t\t\t<VERS vnumber=\"30\"> How can one man chase a thousand of them, and two pursue ten thousand; unless their Rock had delivered them up, and the LORD had handed them over?</VERS>\n\t\t\t<VERS vnumber=\"31\"> For our enemies' rock is not like our Rock, as even our enemies concede.</VERS>\n\t\t\t<VERS vnumber=\"32\"> For their vine is from the stock of Sodom, and from the fields of Gomorrah. Their grapes contain venom, their clusters of grapes are bitter.</VERS>\n\t\t\t<VERS vnumber=\"33\"> Their wine is snakes' poison, the deadly venom of cobras.</VERS>\n\t\t\t<VERS vnumber=\"34\"> \"Is this not stored up with me?\" says the LORD, \"Is it not sealed up in my storehouses?</VERS>\n\t\t\t<VERS vnumber=\"35\"> I will get revenge and pay them back at the time their foot slips; for the day of their disaster is near, and the impending judgment is rushing upon them!\"</VERS>\n\t\t\t<VERS vnumber=\"36\"> The LORD will judge his people, and will change his plans concerning his servants; when he sees that their power has disappeared, and that no one is left, whether confined or set free.</VERS>\n\t\t\t<VERS vnumber=\"37\"> He will say, \"Where are their gods, the rock in whom they sought security,</VERS>\n\t\t\t<VERS vnumber=\"38\"> who ate the best of their sacrifices, and drank the wine of their drink offerings? Let them rise and help you; let them be your refuge!</VERS>\n\t\t\t<VERS vnumber=\"39\"> \"See now that I, indeed I, am he!\" says the LORD, \"and there is no other god besides me. I kill and give life, I smash and I heal, and none can resist my power.</VERS>\n\t\t\t<VERS vnumber=\"40\"> For I raise up my hand to heaven, and say, 'As surely as I live forever,</VERS>\n\t\t\t<VERS vnumber=\"41\"> I will sharpen my lightning-like sword, and my hand will grasp hold of the weapon of judgment; I will execute vengeance on my foes, and repay those who hate me!</VERS>\n\t\t\t<VERS vnumber=\"42\"> I will make my arrows drunk with blood, and my sword will devour flesh, the blood of the slaughtered and captured, the chief of the enemy's leaders!'\"</VERS>\n\t\t\t<VERS vnumber=\"43\"> Cry out, O nations, with his people, for he will avenge his servants' blood; he will take vengeance against his enemies, and make atonement for his land and people.</VERS>\n\t\t\t<VERS vnumber=\"44\"> Then Moses went with Joshua son of Nun and recited all the words of this song to the people. </VERS>\n\t\t\t<VERS vnumber=\"45\"> When Moses finished reciting all these words to all Israel</VERS>\n\t\t\t<VERS vnumber=\"46\"> he said to them, \"Keep in mind all the words I am solemnly proclaiming to you today; you must command your children to observe carefully all the words of this law.</VERS>\n\t\t\t<VERS vnumber=\"47\"> For this is no idle word for you, it is your life! By this word you will live a long time in the land you are about to cross the Jordan to possess.\"</VERS>\n\t\t\t<VERS vnumber=\"48\"> Then the LORD said to Moses that same day,</VERS>\n\t\t\t<VERS vnumber=\"49\"> \"Go up to this Abarim hill country, to Mount Nebo (which is in the land of Moab opposite Jericho) and look at the land of Canaan that I am giving to the Israelites as a possession.</VERS>\n\t\t\t<VERS vnumber=\"50\"> You will die on the mountain that you ascend and join your deceased ancestors, just as Aaron your brother died on Mount Hor and joined his deceased ancestors, </VERS>\n\t\t\t<VERS vnumber=\"51\"> for both of you rebelled against me among the Israelites at the waters of Meribah Kadesh in the desert of Zin when you did not show me proper respect among the Israelites. </VERS>\n\t\t\t<VERS vnumber=\"52\"> You will see the land before you, but you will not enter the land that I am giving to the Israelites.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"33\">\n\t\t\t<VERS vnumber=\"1\"> This is the blessing Moses the man of God pronounced upon the Israelites before his death.</VERS>\n\t\t\t<VERS vnumber=\"2\"> He said: The LORD came from Sinai and revealed himself to Israel from Seir. He appeared in splendor from Mount Paran, and came forth with ten thousand holy ones. With his right hand he gave a fiery law to them.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Surely he loves the people; all your holy ones are in your power. And they sit at your feet, each receiving your words.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Moses delivered to us a law, an inheritance for the assembly of Jacob.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The LORD was king over Jeshurun, when the leaders of the people assembled, the tribes of Israel together.</VERS>\n\t\t\t<VERS vnumber=\"6\"> May Reuben live and not die, and may his people multiply.</VERS>\n\t\t\t<VERS vnumber=\"7\"> And this is the blessing to Judah. He said, Listen, O LORD, to Judah's voice, and bring him to his people. May his power be great, and may you help him against his foes.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Of Levi he said: Your Thummim and Urim belong to your godly one, whose authority you challenged at Massah, and with whom you argued at the waters of Meribah.</VERS>\n\t\t\t<VERS vnumber=\"9\"> He said to his father and mother, \"I have not seen him,\" and he did not acknowledge his own brothers or know his own children, for they kept your word, and guarded your covenant.</VERS>\n\t\t\t<VERS vnumber=\"10\"> They will teach Jacob your ordinances and Israel your law; they will offer incense as a pleasant odor, and a whole offering on your altar.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Bless, O LORD, his goods, and be pleased with his efforts; undercut the legs of any who attack him, and of those who hate him, so that they cannot stand.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Of Benjamin he said: The beloved of the LORD will live safely by him; he protects him all the time, and the LORD places him on his chest.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Of Joseph he said: May the LORD bless his land with the harvest produced by the sky, by the dew, and by the depths crouching beneath;</VERS>\n\t\t\t<VERS vnumber=\"14\"> with the harvest produced by the daylight and by the moonlight;</VERS>\n\t\t\t<VERS vnumber=\"15\"> with the best of the ancient mountains and the harvest produced by the age-old hills;</VERS>\n\t\t\t<VERS vnumber=\"16\"> with the harvest of the earth and its fullness and the pleasure of him who resided in the burning bush. May blessing rest on Joseph's head, and on the top of the head of the one set apart from his brothers.</VERS>\n\t\t\t<VERS vnumber=\"17\"> May the firstborn of his bull bring him honor, and may his horns be those of a wild ox; with them may he gore all peoples, all the far reaches of the earth. They are the ten thousands of Ephraim, and they are the thousands of Manasseh.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Of Zebulun he said: Rejoice, Zebulun, when you go outside, and Issachar, when you are in your tents.</VERS>\n\t\t\t<VERS vnumber=\"19\"> They will summon peoples to the mountain, there they will sacrifice proper sacrifices; for they will enjoy the abundance of the seas, and the hidden treasures of the shores.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Of Gad he said: Blessed be the one who enlarges Gad. Like a lioness he will dwell; he will tear at an arm, indeed, a scalp.</VERS>\n\t\t\t<VERS vnumber=\"21\"> He has selected the best part for himself, for the portion of the ruler is set aside there; he came with the leaders of the people, he obeyed the righteous laws of the LORD and his ordinances with Israel.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Of Dan he said: Dan is a lion's cub; he will leap forth from Bashan.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Of Naphtali he said: O Naphtali, overflowing with favor, and full of the LORD's blessing, possess the west and south.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Of Asher he said: Asher is blessed with children, may he be favored by his brothers and may he dip his foot in olive oil.</VERS>\n\t\t\t<VERS vnumber=\"25\"> The bars of your gates will be made of iron and bronze, and may you have lifelong strength.</VERS>\n\t\t\t<VERS vnumber=\"26\"> There is no one like God, O Jeshurun, who rides through the sky to help you, on the clouds in majesty.</VERS>\n\t\t\t<VERS vnumber=\"27\"> The everlasting God is a refuge, and underneath you are his eternal arms; he has driven out enemies before you, and has said, \"Destroy!\"</VERS>\n\t\t\t<VERS vnumber=\"28\"> Israel lives in safety, the fountain of Jacob is quite secure, in a land of grain and new wine; indeed, its heavens rain down dew.</VERS>\n\t\t\t<VERS vnumber=\"29\"> You have joy, Israel! Who is like you? You are a people delivered by the LORD, your protective shield and your exalted sword. May your enemies cringe before you; may you trample on their backs.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"34\">\n\t\t\t<VERS vnumber=\"1\"> Then Moses ascended from the deserts of Moab to Mount Nebo, to the summit of Pisgah, which is opposite Jericho. The LORD showed him the whole land, Gilead to Dan,</VERS>\n\t\t\t<VERS vnumber=\"2\"> and all of Naphtali, the land of Ephraim and Manasseh, all the land of Judah as far as the distant sea, </VERS>\n\t\t\t<VERS vnumber=\"3\"> the Negev, and the plain of the valley of Jericho, the city of the date palm trees, as far as Zoar.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Then the LORD said to him, \"This is the land I promised to Abraham, Isaac, and Jacob when I said, 'I will give it to your descendants.' I have let you see it, but you will not cross over there.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> So Moses, the servant of the LORD, died there in the land of Moab as the LORD had said.</VERS>\n\t\t\t<VERS vnumber=\"6\"> He buried him in the land of Moab near Beth Peor, but no one knows his exact burial place to this very day. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Moses was 120 years old when he died, but his eye was not dull nor had his vitality departed. </VERS>\n\t\t\t<VERS vnumber=\"8\"> The Israelites mourned for Moses in the deserts of Moab for thirty days; then the days of mourning for Moses ended.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Now Joshua son of Nun was full of the spirit of wisdom, for Moses had placed his hands on him; and the Israelites listened to him and did just what the LORD had commanded Moses. </VERS>\n\t\t\t<VERS vnumber=\"10\"> No prophet ever again arose in Israel like Moses, who knew the LORD face to face.</VERS>\n\t\t\t<VERS vnumber=\"11\"> He did all the signs and wonders the LORD had sent him to do in the land of Egypt, to Pharaoh, all his servants, and the whole land, </VERS>\n\t\t\t<VERS vnumber=\"12\"> and he displayed great power and awesome might in view of all Israel.</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"6\" bname=\"Joshua\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> After Moses the LORD's servant died, the LORD said to Joshua son of Nun, Moses' assistant:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Moses my servant is dead. Get ready! Cross the Jordan River! Lead these people into the land which I am ready to hand over to them.</VERS>\n\t\t\t<VERS vnumber=\"3\"> I am handing over to you every place you set foot, as I promised Moses.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Your territory will extend from the wilderness in the south to Lebanon in the north. It will extend all the way to the great River Euphrates in the east (including all of Syria) and all the way to the Mediterranean Sea in the west.</VERS>\n\t\t\t<VERS vnumber=\"5\"> No one will be able to resist you all the days of your life. As I was with Moses, so I will be with you. I will not abandon you or leave you alone. </VERS>\n\t\t\t<VERS vnumber=\"6\"> Be strong and brave! You must lead these people in the conquest of this land that I solemnly promised their ancestors I would hand over to them.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Make sure you are very strong and brave! Carefully obey all the law my servant Moses charged you to keep! Do not swerve from it to the right or to the left, so that you may be successful in all you do.</VERS>\n\t\t\t<VERS vnumber=\"8\"> This law scroll must not leave your lips! You must memorize it day and night so you can carefully obey all that is written in it. Then you will prosper and be successful.</VERS>\n\t\t\t<VERS vnumber=\"9\"> I repeat, be strong and brave! Don't be afraid and don't panic, for I, the LORD your God, am with you in all you do.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> Joshua instructed the leaders of the people: </VERS>\n\t\t\t<VERS vnumber=\"11\"> \"Go through the camp and command the people, 'Prepare your supplies, for within three days you will cross the Jordan River and begin the conquest of the land the LORD your God is ready to hand over to you.'\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> Joshua told the Reubenites, Gadites, and the half tribe of Manasseh:</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"Remember what Moses the LORD's servant commanded you. The LORD your God is giving you a place to settle and is handing this land over to you.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Your wives, children and cattle may stay in the land that Moses assigned to you east of the Jordan River. But all you warriors must cross over armed for battle ahead of your brothers. You must help them</VERS>\n\t\t\t<VERS vnumber=\"15\"> until the LORD gives your brothers a place like yours to settle and they conquer the land the LORD your God is ready to hand over to them. Then you may go back to your allotted land and occupy the land Moses the LORD's servant assigned you east of the Jordan.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> They told Joshua, \"We will do everything you say. We will go wherever you send us.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Just as we obeyed Moses, so we will obey you. But may the LORD your God be with you as he was with Moses! </VERS>\n\t\t\t<VERS vnumber=\"18\"> Any man who rebels against what you say and does not obey all your commands will be executed. But be strong and brave!\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> Joshua son of Nun sent two spies out from Shittim secretly and instructed them: \"Find out what you can about the land, especially Jericho.\" They stopped at the house of a prostitute named Rahab and spent the night there.</VERS>\n\t\t\t<VERS vnumber=\"2\"> The king of Jericho received this report: \"Note well! Israelite men have come here tonight to spy on the land.\" </VERS>\n\t\t\t<VERS vnumber=\"3\"> So the king of Jericho sent this order to Rahab: \"Turn over the men who came to you, the ones who came to your house, for they have come to spy on the whole land!\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> But the woman hid the two men and replied, \"Yes, these men were clients of mine, but I didn't know where they came from. </VERS>\n\t\t\t<VERS vnumber=\"5\"> When it was time to shut the city gate for the night, the men left. I don't know where they were heading. Chase after them quickly, for you have time to catch them!\" </VERS>\n\t\t\t<VERS vnumber=\"6\"> (Now she had taken them up to the roof and had hidden them in the stalks of flax she had spread out on the roof.) </VERS>\n\t\t\t<VERS vnumber=\"7\"> Meanwhile the king's men tried to find them on the road to the Jordan River near the fords. The city gate was shut as soon as they set out in pursuit of them.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Now before the spies went to sleep, Rahab went up to the roof. </VERS>\n\t\t\t<VERS vnumber=\"9\"> She said to the men, \"I know the LORD is handing this land over to you. We are absolutely terrified of you, and all who live in the land are cringing before you.</VERS>\n\t\t\t<VERS vnumber=\"10\"> For we heard how the LORD dried up the water of the Red Sea before you when you left Egypt and how you annihilated the two Amorite kings, Sihon and Og, on the other side of the Jordan.</VERS>\n\t\t\t<VERS vnumber=\"11\"> When we heard the news we lost our courage and no one could even breathe for fear of you. For the LORD your God is God in heaven above and on earth below! </VERS>\n\t\t\t<VERS vnumber=\"12\"> So now, promise me this with an oath sworn in the LORD's name. Because I have shown allegiance to you, show allegiance to my family. Give me a solemn pledge</VERS>\n\t\t\t<VERS vnumber=\"13\"> that you will spare the lives of my father, mother, brothers, sisters, and all who belong to them, and rescue us from death.\" </VERS>\n\t\t\t<VERS vnumber=\"14\"> The men said to her, \"If you die, may we die too! If you do not report what we've been up to, then, when the LORD hands the land over to us, we will show unswerving allegiance to you.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> Then Rahab let them down by a rope through the window. (Her house was built as part of the city wall; she lived in the wall.)</VERS>\n\t\t\t<VERS vnumber=\"16\"> She told them, \"Head to the hill country, so the ones chasing you don't find you. Hide from them there for three days, long enough for those chasing you to return. Then you can be on your way.\" </VERS>\n\t\t\t<VERS vnumber=\"17\"> The men said to her, \"We are not bound by this oath you made us swear unless the following conditions are met:</VERS>\n\t\t\t<VERS vnumber=\"18\"> When we invade the land, tie this red rope in the window through which you let us down, and gather together in your house your father, mother, brothers, and all who live in your father's house.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Anyone who leaves your house will be responsible for his own death, we are innocent in that case! But if anyone with you in the house is harmed, we will be responsible.</VERS>\n\t\t\t<VERS vnumber=\"20\"> If you should report what we've been up to, we are not bound by this oath you made us swear.\" </VERS>\n\t\t\t<VERS vnumber=\"21\"> She said, \"I agree to these conditions.\" She sent them on their way and then tied the red rope in the window. </VERS>\n\t\t\t<VERS vnumber=\"22\"> They went to the hill country and stayed there for three days, long enough for those chasing them to return. Their pursuers looked all along the way but did not find them.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Then the two men returned, they came down from the hills, crossed the river, came to Joshua son of Nun, and reported to him all they had discovered.</VERS>\n\t\t\t<VERS vnumber=\"24\"> They told Joshua, \"Surely the LORD is handing over all the land to us! All who live in the land are cringing before us!\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> Bright and early the next morning Joshua and the Israelites left Shittim and came to the Jordan. They camped there before crossing the river.</VERS>\n\t\t\t<VERS vnumber=\"2\"> After three days the leaders went through the camp</VERS>\n\t\t\t<VERS vnumber=\"3\"> and commanded the people: \"When you see the ark of the covenant of the LORD your God being carried by the Levitical priests, you must leave here and walk behind it. </VERS>\n\t\t\t<VERS vnumber=\"4\"> But stay about three thousand feet behind it. Keep your distance so you can see which way you should go, for you have not traveled this way before.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> Joshua told the people, \"Ritually consecrate yourselves, for tomorrow the LORD will perform miraculous deeds among you.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> Joshua told the priests, \"Pick up the ark of the covenant and pass on ahead of the people.\" So they picked up the ark of the covenant and went ahead of the people.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The LORD told Joshua, \"This very day I will begin to honor you before all Israel so they will know that I am with you just as I was with Moses. </VERS>\n\t\t\t<VERS vnumber=\"8\"> Instruct the priests carrying the ark of the covenant, 'When you reach the bank of the Jordan River, wade into the water.'\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> Joshua told the Israelites, \"Come here and listen to the words of the LORD your God!\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> Joshua continued, \"This is how you will know the living God is among you and that he will truly drive out before you the Canaanites, Hittites, Hivites, Perizzites, Girgashites, Amorites, and Jebusites. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Look! The ark of the covenant of the Ruler of the whole earth is ready to enter the Jordan ahead of you. </VERS>\n\t\t\t<VERS vnumber=\"12\"> Now select for yourselves twelve men from the tribes of Israel, one per tribe.</VERS>\n\t\t\t<VERS vnumber=\"13\"> When the feet of the priests carrying the ark of the LORD, the Ruler of the whole earth, touch the water of the Jordan, the water coming downstream toward you will stop flowing and pile up.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> So when the people left their tents to cross the Jordan, the priests carrying the ark of the covenant went ahead of them. </VERS>\n\t\t\t<VERS vnumber=\"15\"> When the ones carrying the ark reached the Jordan and the feet of the priests carrying the ark touched the surface of the water, (the Jordan is at flood stage all during harvest time),</VERS>\n\t\t\t<VERS vnumber=\"16\"> the water coming downstream toward them stopped flowing. It piled up far upstream at Adam (the city near Zarethan); there was no water at all flowing to the sea of the Arabah (the Salt Sea). The people crossed the river opposite Jericho.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The priests carrying the ark of the covenant of the LORD stood firmly on dry ground in the middle of the Jordan. All Israel crossed over on dry ground until the entire nation was on the other side.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\"> When the entire nation was on the other side, the LORD told Joshua, </VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Select for yourselves twelve men from the people, one per tribe.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Instruct them, 'Pick up twelve stones from the middle of the Jordan, from the very place where the priests stand firmly, and carry them over with you and put them in the place where you camp tonight.'\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> Joshua summoned the twelve men he had appointed from the Israelites, one per tribe.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Joshua told them, \"Go in front of the ark of the LORD your God to the middle of the Jordan. Each of you is to put a stone on his shoulder, according to the number of the Israelite tribes.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The stones will be a reminder to you. When your children ask someday, 'Why are these stones important to you?' </VERS>\n\t\t\t<VERS vnumber=\"7\"> tell them how the water of the Jordan stopped flowing before the ark of the covenant of the LORD. When it crossed the Jordan, the water of the Jordan stopped flowing. These stones will be a lasting memorial for the Israelites.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> The Israelites did just as Joshua commanded. They picked up twelve stones, according to the number of the Israelite tribes, from the middle of the Jordan as the LORD had instructed Joshua. They carried them over with them to the camp and put them there.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Joshua also set up twelve stones in the middle of the Jordan in the very place where the priests carrying the ark of the covenant stood. They remain there to this very day.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Now the priests carrying the ark of the covenant were standing in the middle of the Jordan until everything the Lord had commanded Joshua to tell the people was accomplished, in accordance with all that Moses had commanded Joshua. The people went across quickly,</VERS>\n\t\t\t<VERS vnumber=\"11\"> and when all the people had finished crossing, the ark of the LORD and the priests crossed as the people looked on.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The Reubenites, Gadites, and the half-tribe of Manasseh crossed over armed for battle ahead of the Israelites, just as Moses had instructed them.</VERS>\n\t\t\t<VERS vnumber=\"13\"> About forty thousand battle-ready troops marched past the LORD to fight on the plains of Jericho.</VERS>\n\t\t\t<VERS vnumber=\"14\"> That day the LORD brought honor to Joshua before all Israel. They respected him all his life, just as they had respected Moses.</VERS>\n\t\t\t<VERS vnumber=\"15\"> The LORD told Joshua,</VERS>\n\t\t\t<VERS vnumber=\"16\"> \"Instruct the priests carrying the ark of the covenantal laws to come up from the Jordan.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> So Joshua instructed the priests, \"Come up from the Jordan!\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> The priests carrying the ark of the covenant of the LORD came up from the middle of the Jordan, and as soon as they set foot on dry land, the water of the Jordan flowed again and returned to flood stage.</VERS>\n\t\t\t<VERS vnumber=\"19\"> The people went up from the Jordan on the tenth day of the first month and camped in Gilgal on the eastern border of Jericho.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Now Joshua set up in Gilgal the twelve stones they had taken from the Jordan. </VERS>\n\t\t\t<VERS vnumber=\"21\"> He told the Israelites, \"When your children someday ask their fathers, 'What do these stones represent?'</VERS>\n\t\t\t<VERS vnumber=\"22\"> explain to your children, 'Israel crossed the Jordan River on dry ground.' </VERS>\n\t\t\t<VERS vnumber=\"23\"> For the LORD your God dried up the water of the Jordan before you while you crossed over. It was just like when the LORD your God dried up the Red Sea before us while we crossed it.</VERS>\n\t\t\t<VERS vnumber=\"24\"> He has done this so all the nations of the earth might recognize the LORD's power and so you might always obey the LORD your God.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"5\">\n\t\t\t<VERS vnumber=\"1\"> When all the Amorite kings on the west side of the Jordan and all the Canaanite kings along the seacoast heard how the LORD had dried up the water of the Jordan before the Israelites while they crossed, they lost their courage and could not even breathe for fear of the Israelites.</VERS>\n\t\t\t<VERS vnumber=\"2\"> At that time the LORD told Joshua, \"Make flint knives and circumcise the Israelites once again.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> So Joshua made flint knives and circumcised the Israelites on the Hill of the Foreskins.</VERS>\n\t\t\t<VERS vnumber=\"4\"> This is why Joshua had to circumcise them: All the men old enough to fight when they left Egypt died on the journey through the desert after they left Egypt.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Now all the men who left were circumcised, but all the sons born on the journey through the desert after they left Egypt were uncircumcised. </VERS>\n\t\t\t<VERS vnumber=\"6\"> Indeed, for forty years the Israelites traveled through the desert until all the men old enough to fight when they left Egypt, the ones who had disobeyed the LORD, died off. For the LORD had sworn a solemn oath to them that he would not let them see the land he had sworn on oath to give them, a land rich in milk and honey. </VERS>\n\t\t\t<VERS vnumber=\"7\"> He replaced them with their sons, whom Joshua circumcised. They were uncircumcised; their fathers had not circumcised them along the way. </VERS>\n\t\t\t<VERS vnumber=\"8\"> When all the men had been circumcised, they stayed there in the camp until they had healed. </VERS>\n\t\t\t<VERS vnumber=\"9\"> The LORD said to Joshua, \"Today I have taken away the disgrace of Egypt from you.\" So that place is called Gilgal even to this day.</VERS>\n\t\t\t<VERS vnumber=\"10\"> So the Israelites camped in Gilgal and celebrated the Passover in the evening of the fourteenth day of the month on the plains of Jericho.</VERS>\n\t\t\t<VERS vnumber=\"11\"> They ate some of the produce of the land the day after the Passover, including unleavened bread and roasted grain.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The manna stopped appearing the day they ate some of the produce of the land; the Israelites never ate manna again.</VERS>\n\t\t\t<VERS vnumber=\"13\"> When Joshua was near Jericho, he looked up and saw a man standing in front of him holding a drawn sword. Joshua approached him and asked him, \"Are you on our side or allied with our enemies?\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> He answered, \"Truly I am the commander of the LORD's army. Now I have arrived!\" Joshua bowed down with his face to the ground and asked, \"What does my master want to say to his servant?\" </VERS>\n\t\t\t<VERS vnumber=\"15\"> The commander of the LORD's army answered Joshua, \"Remove your sandals from your feet, because the place where you stand is holy.\" Joshua did so.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"6\">\n\t\t\t<VERS vnumber=\"1\"> Now Jericho was shut tightly because of the Israelites. No one was allowed to leave or enter.</VERS>\n\t\t\t<VERS vnumber=\"2\"> The LORD told Joshua, \"See, I am about to defeat Jericho for you, along with its king and its warriors. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Have all the warriors march around the city one time; do this for six days. </VERS>\n\t\t\t<VERS vnumber=\"4\"> Have seven priests carry seven rams' horns in front of the ark. On the seventh day march around the city seven times, while the priests blow the horns. </VERS>\n\t\t\t<VERS vnumber=\"5\"> When you hear the signal from the ram's horn, have the whole army give a loud battle cry. Then the city wall will collapse and the warriors should charge straight ahead.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> So Joshua son of Nun summoned the priests and instructed them, \"Pick up the ark of the covenant, and seven priests must carry seven rams' horns in front of the ark of the LORD.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> And he told the army, \"Move ahead and march around the city, with armed troops going ahead of the ark of the LORD.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> When Joshua gave the army its orders, the seven priests carrying the seven rams' horns before the LORD moved ahead and blew the horns as the ark of the covenant of the LORD followed behind.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Armed troops marched ahead of the priests blowing the horns, while the rear guard followed along behind the ark blowing rams' horns.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Now Joshua had instructed the army, \"Do not give a battle cry or raise your voices; say nothing until the day I tell you, 'Give the battle cry.' Then give the battle cry!\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> So Joshua made sure they marched the ark of the LORD around the city one time. Then they went back to the camp and spent the night there.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Bright and early the next morning Joshua had the priests pick up the ark of the LORD.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The seven priests carrying the seven rams' horns before the ark of the LORD marched along blowing their horns. Armed troops marched ahead of them, while the rear guard followed along behind the ark of the LORD blowing rams' horns.</VERS>\n\t\t\t<VERS vnumber=\"14\"> They marched around the city one time on the second day, then returned to the camp. They did this six days in all.</VERS>\n\t\t\t<VERS vnumber=\"15\"> On the seventh day they were up at the crack of dawn and marched around the city as before, only this time they marched around it seven times.</VERS>\n\t\t\t<VERS vnumber=\"16\"> The seventh time around, the priests blew the rams' horns and Joshua told the army, \"Give the battle cry, for the LORD is handing the city over to you!</VERS>\n\t\t\t<VERS vnumber=\"17\"> The city and all that is in it must be set apart for the LORD, except for Rahab the prostitute and all who are with her in her house, because she hid the spies we sent. </VERS>\n\t\t\t<VERS vnumber=\"18\"> But be careful when you are setting apart the riches for the LORD. If you take any of it, you will make the Israelite camp subject to annihilation and cause a disaster.</VERS>\n\t\t\t<VERS vnumber=\"19\"> All the silver and gold, as well as bronze and iron items, belong to the LORD. They must go into the LORD's treasury.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> The rams' horns sounded and when the army heard the signal, they gave a loud battle cry. The wall collapsed and the warriors charged straight ahead into the city and captured it.</VERS>\n\t\t\t<VERS vnumber=\"21\"> They annihilated with the sword everything that breathed in the city, including men and women, young and old, as well as cattle, sheep, and donkeys. </VERS>\n\t\t\t<VERS vnumber=\"22\"> Joshua told the two men who had spied on the land, \"Enter the prostitute's house and bring out the woman and all who belong to her as you promised her.\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> So the young spies went and brought out Rahab, her father, mother, brothers, and all who belonged to her. They brought out her whole family and took them to a place outside the Israelite camp. </VERS>\n\t\t\t<VERS vnumber=\"24\"> But they burned the city and all that was in it, except for the silver, gold, and bronze and iron items they put in the treasury of the LORD's house.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Yet Joshua spared Rahab the prostitute, her father's family, and all who belonged to her. She lives in Israel to this very day because she hid the messengers Joshua sent to spy on Jericho.</VERS>\n\t\t\t<VERS vnumber=\"26\"> At that time Joshua made this solemn declaration: \"The man who attempts to rebuild this city of Jericho will stand condemned before the LORD. He will lose his firstborn son when he lays its foundations and his youngest son when he erects its gates!\"</VERS>\n\t\t\t<VERS vnumber=\"27\"> The LORD was with Joshua and he became famous throughout the land.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"7\">\n\t\t\t<VERS vnumber=\"1\"> But the Israelites disobeyed the command about the city's riches. Achan son of Carmi, son of Zabdi, son of Zerah, from the tribe of Judah, stole some of the riches. The LORD was furious with the Israelites.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Joshua sent men from Jericho to Ai (which is located near Beth Aven, east of Bethel) and instructed them, \"Go up and spy on the land.\" So the men went up and spied on Ai.</VERS>\n\t\t\t<VERS vnumber=\"3\"> They returned and reported to Joshua, \"Don't send the whole army. About two or three thousand men are adequate to defeat Ai. Don't tire out the whole army, for Ai is small.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> So about three thousand men went up, but they fled from the men of Ai.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The men of Ai killed about thirty-six of them and chased them from in front of the city gate all the way to the fissures and defeated them on the steep slope. The people's courage melted away like water.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Joshua tore his clothes; he and the leaders of Israel lay face down on the ground before the ark of the LORD until evening and threw dirt on their heads.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Joshua prayed, \"O, Master, LORD! Why did you bring these people across the Jordan to hand us over to the Amorites so they could destroy us? </VERS>\n\t\t\t<VERS vnumber=\"8\"> If only we had been satisfied to live on the other side of the Jordan! O Lord, what can I say now that Israel has retreated before its enemies? </VERS>\n\t\t\t<VERS vnumber=\"9\"> When the Canaanites and all who live in the land hear about this, they will turn against us and destroy the very memory of us from the earth. What will you do to protect your great reputation?\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> The LORD responded to Joshua, \"Get up! Why are you lying there face down?</VERS>\n\t\t\t<VERS vnumber=\"11\"> Israel has sinned; they have violated my covenantal commandment! They have taken some of the riches; they have stolen them and deceitfully put them among their own possessions.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The Israelites are unable to stand before their enemies; they retreat because they have become subject to annihilation. I will no longer be with you, unless you destroy what has contaminated you.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Get up! Ritually consecrate the people and tell them this: 'Ritually consecrate yourselves for tomorrow, because the LORD God of Israel says, \"You are contaminated, O Israel! You will not be able to stand before your enemies until you remove what is contaminating you.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> In the morning you must approach in tribal order. The tribe the LORD selects must approach by clans. The clan the LORD selects must approach by families. The family the LORD selects must approach man by man.</VERS>\n\t\t\t<VERS vnumber=\"15\"> The one caught with the riches must be burned up along with all who belong to him, because he violated the LORD's covenant and did such a disgraceful thing in Israel.'\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> Bright and early the next morning Joshua made Israel approach in tribal order and the tribe of Judah was selected. </VERS>\n\t\t\t<VERS vnumber=\"17\"> He then made the clans of Judah approach and the clan of the Zerahites was selected. He made the clan of the Zerahites approach and Zabdi was selected.</VERS>\n\t\t\t<VERS vnumber=\"18\"> He then made Zabdi's family approach man by man and Achan son of Carmi, son of Zabdi, son of Zerah, from the tribe of Judah, was selected. </VERS>\n\t\t\t<VERS vnumber=\"19\"> So Joshua said to Achan, \"My son, honor the LORD God of Israel and give him praise! Tell me what you did; don't hide anything from me!\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> Achan told Joshua, \"It is true. I have sinned against the LORD God of Israel in this way:</VERS>\n\t\t\t<VERS vnumber=\"21\"> I saw among the goods we seized a nice robe from Babylon, two hundred silver pieces, and a bar of gold weighing fifty shekels. I wanted them, so I took them. They are hidden in the ground right in the middle of my tent with the silver underneath.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> Joshua sent messengers who ran to the tent. The things were hidden right in his tent, with the silver underneath.</VERS>\n\t\t\t<VERS vnumber=\"23\"> They took it all from the middle of the tent, brought it to Joshua and all the Israelites, and placed it before the LORD. </VERS>\n\t\t\t<VERS vnumber=\"24\"> Then Joshua and all Israel took Achan, son of Zerah, along with the silver, the robe, the bar of gold, his sons, daughters, ox, donkey, sheep, tent, and all that belonged to him and brought them up to the Valley of Disaster.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Joshua said, \"Why have you brought disaster on us? The LORD will bring disaster on you today!\" All Israel stoned him to death. (They also stoned and burned the others.)</VERS>\n\t\t\t<VERS vnumber=\"26\"> Then they erected over him a large pile of stones (it remains to this very day) and the LORD's anger subsided. So that place is called the Valley of Disaster to this very day.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"8\">\n\t\t\t<VERS vnumber=\"1\"> The LORD told Joshua, \"Don't be afraid and don't panic! Take the whole army with you and march against Ai! See, I am handing over to you the king of Ai, along with his people, city, and land. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Do to Ai and its king what you did to Jericho and its king, except you may plunder its goods and cattle. Set an ambush behind the city!\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> Joshua and the whole army marched against Ai. Joshua selected thirty thousand brave warriors and sent them out at night. </VERS>\n\t\t\t<VERS vnumber=\"4\"> He told them, \"Look, set an ambush behind the city. Don't go very far from the city; all of you be ready! </VERS>\n\t\t\t<VERS vnumber=\"5\"> I and all the troops who are with me will approach the city. When they come out to fight us like before, we will retreat from them. </VERS>\n\t\t\t<VERS vnumber=\"6\"> They will attack us until we have lured them from the city, for they will say, 'They are retreating from us like before.' We will retreat from them. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Then you rise up from your hiding place and seize the city. The LORD your God will hand it over to you. </VERS>\n\t\t\t<VERS vnumber=\"8\"> When you capture the city, set it on fire. Do as the LORD says! See, I have given you orders.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> Joshua sent them away and they went to their hiding place west of Ai, between Bethel and Ai. Joshua spent that night with the army.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Bright and early the next morning Joshua gathered the army, and he and the leaders of Israel marched at the head of it to Ai. </VERS>\n\t\t\t<VERS vnumber=\"11\"> All the troops that were with him marched up and drew near the city. They camped north of Ai on the other side of the valley.</VERS>\n\t\t\t<VERS vnumber=\"12\"> He took five thousand men and set an ambush west of the city between Bethel and Ai. </VERS>\n\t\t\t<VERS vnumber=\"13\"> The army was in position, the main army north of the city and the rear guard west of the city. That night Joshua went into the middle of the valley.</VERS>\n\t\t\t<VERS vnumber=\"14\"> When the king of Ai saw Israel, he and his whole army quickly got up the next day and went out to fight Israel at the meeting place near the Arabah. But he did not realize men were hiding behind the city.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Joshua and all Israel pretended to be defeated by them and they retreated along the way to the desert.</VERS>\n\t\t\t<VERS vnumber=\"16\"> All the reinforcements in Ai were ordered to chase them; they chased Joshua and were lured away from the city. </VERS>\n\t\t\t<VERS vnumber=\"17\"> No men were left in Ai or Bethel; they all went out after Israel. They left the city wide open and chased Israel.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The LORD told Joshua, \"Hold out toward Ai the curved sword in your hand, for I am handing the city over to you.\" So Joshua held out toward Ai the curved sword in his hand. </VERS>\n\t\t\t<VERS vnumber=\"19\"> When he held out his hand, the men waiting in ambush rose up quickly from their place and attacked. They entered the city, captured it, and immediately set it on fire. </VERS>\n\t\t\t<VERS vnumber=\"20\"> When the men of Ai turned around, they saw the smoke from the city ascending into the sky and were so shocked they were unable to flee in any direction. In the meantime the men who were retreating to the desert turned against their pursuers. </VERS>\n\t\t\t<VERS vnumber=\"21\"> When Joshua and all Israel saw that the men in ambush had captured the city and that the city was going up in smoke, they turned around and struck down the men of Ai. </VERS>\n\t\t\t<VERS vnumber=\"22\"> At the same time the men who had taken the city came out to fight, and the men of Ai were trapped in the middle. The Israelites struck them down, leaving no survivors or refugees. </VERS>\n\t\t\t<VERS vnumber=\"23\"> But they captured the king of Ai alive and brought him to Joshua.</VERS>\n\t\t\t<VERS vnumber=\"24\"> When Israel had finished killing all the men of Ai who had chased them toward the desert (they all fell by the sword), all Israel returned to Ai and put the sword to it. </VERS>\n\t\t\t<VERS vnumber=\"25\"> Twelve thousand men and women died that day, including all the men of Ai. </VERS>\n\t\t\t<VERS vnumber=\"26\"> Joshua kept holding out his curved sword until Israel had annihilated all who lived in Ai.</VERS>\n\t\t\t<VERS vnumber=\"27\"> But Israel did plunder the cattle and the goods of the city, in accordance with the LORD's orders to Joshua.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Joshua burned Ai and made it a permanently uninhabited mound (it remains that way to this very day).</VERS>\n\t\t\t<VERS vnumber=\"29\"> He hung the king of Ai on a tree, leaving him exposed until evening. At sunset Joshua ordered that his corpse be taken down from the tree. They threw it down at the entrance of the city gate and erected over it a large pile of stones (it remains to this very day).</VERS>\n\t\t\t<VERS vnumber=\"30\"> Then Joshua built an altar for the LORD God of Israel on Mount Ebal,</VERS>\n\t\t\t<VERS vnumber=\"31\"> just as Moses the LORD's servant had commanded the Israelites. As described in the law scroll of Moses, it was made with uncut stones untouched by an iron tool. They offered burnt sacrifices on it and sacrificed tokens of peace.</VERS>\n\t\t\t<VERS vnumber=\"32\"> There, in the presence of the Israelites, Joshua inscribed on the stones a duplicate of the law written by Moses.</VERS>\n\t\t\t<VERS vnumber=\"33\"> All the people, rulers, leaders, and judges were standing on either side of the ark, in front of the Levitical priests who carried the ark of the covenant of the LORD. Both resident foreigners and native Israelites were there. Half the people stood in front of Mount Gerizim and the other half in front of Mount Ebal, as Moses the LORD's servant had previously instructed to them to do for the formal blessing ceremony.</VERS>\n\t\t\t<VERS vnumber=\"34\"> Then Joshua read aloud all the words of the law, including the blessings and the curses, just as they are written in the law scroll. </VERS>\n\t\t\t<VERS vnumber=\"35\"> Joshua read aloud every commandment Moses had given before the whole assembly of Israel, including the women, children, and resident foreigners who lived among them.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"9\">\n\t\t\t<VERS vnumber=\"1\"> When the news reached all the kings on the west side of the Jordan, in the hill country, the lowlands, and all along the Mediterranean coast as far as Lebanon (including the Hittites, Amorites, Canaanites, Perizzites, Hivites, and Jebusites),</VERS>\n\t\t\t<VERS vnumber=\"2\"> they formed an alliance to fight against Joshua and Israel.</VERS>\n\t\t\t<VERS vnumber=\"3\"> When the residents of Gibeon heard what Joshua did to Jericho and Ai, </VERS>\n\t\t\t<VERS vnumber=\"4\"> they did something clever. They collected some provisions and put worn-out sacks on their donkeys, along with worn-out wineskins that were ripped and patched. </VERS>\n\t\t\t<VERS vnumber=\"5\"> They had worn-out, patched sandals on their feet and dressed in worn-out clothes. All their bread was dry and hard.</VERS>\n\t\t\t<VERS vnumber=\"6\"> They came to Joshua at the camp in Gilgal and said to him and the men of Israel, \"We have come from a distant land. Make a treaty with us.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> The men of Israel said to the Hivites, \"Perhaps you live near us. So how can we make a treaty with you?\" </VERS>\n\t\t\t<VERS vnumber=\"8\"> But they said to Joshua, \"We are willing to be your subjects.\" So Joshua said to them, \"Who are you and where do you come from?\" </VERS>\n\t\t\t<VERS vnumber=\"9\"> They told him, \"Your subjects have come from a very distant land because of the reputation of the LORD your God, for we have heard the news about all he did in Egypt</VERS>\n\t\t\t<VERS vnumber=\"10\"> and all he did to the two Amorite kings on the other side of the Jordan, King Sihon of Heshbon and King Og of Bashan in Ashtaroth.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Our leaders and all who live in our land told us, 'Take provisions for your journey and go meet them. Tell them, \"We are willing to be your subjects. Make a treaty with us.\"' </VERS>\n\t\t\t<VERS vnumber=\"12\"> This bread of ours was warm when we packed it in our homes the day we started out to meet you, but now it is dry and hard.</VERS>\n\t\t\t<VERS vnumber=\"13\"> These wineskins we filled were brand new, but look how they have ripped. Our clothes and sandals have worn out because it has been a very long journey.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> The men examined some of their provisions, but they failed to ask the LORD's advice.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Joshua made a peace treaty with them and agreed to let them live. The leaders of the community sealed it with an oath.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Three days after they made the treaty with them, the Israelites found out they were from the local area and lived nearby.</VERS>\n\t\t\t<VERS vnumber=\"17\"> So the Israelites set out and on the third day arrived at their cities, Gibeon, Kephirah, Beeroth, and Kiriath Jearim.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The Israelites did not attack them because the leaders of the community had sworn an oath to them in the name of the LORD God of Israel. The whole community criticized the leaders,</VERS>\n\t\t\t<VERS vnumber=\"19\"> but all the leaders told the whole community, \"We swore an oath to them in the name of the LORD God of Israel. So now we can't hurt them! </VERS>\n\t\t\t<VERS vnumber=\"20\"> We must let them live so we can escape the curse attached to the oath we swore to them.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> The leaders then added, \"Let them live.\" So they became woodcutters and water carriers for the whole community, as the leaders had decided.</VERS>\n\t\t\t<VERS vnumber=\"22\">  Joshua summoned the Gibeonites and said to them, \"Why did you trick us by saying, 'We live far away from you,' when you really live nearby?</VERS>\n\t\t\t<VERS vnumber=\"23\"> Now you are condemned to perpetual servitude as woodcutters and water carriers for the house of my God.\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> They said to Joshua, \"It was carefully reported to your subjects how the LORD your God commanded Moses his servant to assign you the whole land and to destroy all who live in the land from before you. Because of you we were terrified we would lose our lives, so we did this thing. </VERS>\n\t\t\t<VERS vnumber=\"25\"> So now we are in your power. Do to us what you think is good and appropriate.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Joshua did as they said; he kept the Israelites from killing them</VERS>\n\t\t\t<VERS vnumber=\"27\"> and that day made them woodcutters and water carriers for the community and for the altar of the LORD at the divinely chosen site. (They continue in that capacity to this very day.)</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"10\">\n\t\t\t<VERS vnumber=\"1\"> Adoni-Zedek, king of Jerusalem, heard how Joshua captured Ai and annihilated it and its king as he did Jericho and its king. He also heard how the people of Gibeon made peace with Israel and lived among them. </VERS>\n\t\t\t<VERS vnumber=\"2\"> All Jerusalem was terrified because Gibeon was a large city, like one of the royal cities. It was larger than Ai and all its men were warriors. </VERS>\n\t\t\t<VERS vnumber=\"3\"> So King Adoni-Zedek of Jerusalem sent this message to King Hoham of Hebron, King Piram of Jarmuth, King Japhia of Lachish, and King Debir of Eglon:</VERS>\n\t\t\t<VERS vnumber=\"4\"> \"Come to my aid so we can attack Gibeon, for it has made peace with Joshua and the Israelites.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> So the five Amorite kings (the kings of Jerusalem, Hebron, Jarmuth, Lachish, and Eglon) and all their troops gathered together and advanced. They deployed their troops and fought against Gibeon.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The men of Gibeon sent this message to Joshua at the camp in Gilgal, \"Do not abandon your subjects! Rescue us! Help us! For all the Amorite kings living in the hill country are attacking us.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> So Joshua and his whole army, including the bravest warriors, marched up from Gilgal.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The LORD told Joshua, \"Don't be afraid of them, for I am handing them over to you. Not one of them can resist you.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> Joshua attacked them by surprise after marching all night from Gilgal.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The LORD routed them before Israel. Israel thoroughly defeated them at Gibeon. They chased them up the road to the pass of Beth Horon and struck them down all the way to Azekah and Makkedah.</VERS>\n\t\t\t<VERS vnumber=\"11\"> As they fled from Israel on the slope leading down from Beth Horon, the LORD threw down on them large hailstones from the sky, all the way to Azekah. They died, in fact, more died from the hailstones than the Israelites killed with the sword.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The day the LORD delivered the Amorites over to the Israelites, Joshua prayed to the LORD before Israel: \"O sun, stand still over Gibeon! O moon, over the Valley of Aijalon!\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> The sun stood still and the moon stood motionless while the nation took vengeance on its enemies. The event is recorded in the Scroll of the Upright One. The sun stood motionless in the middle of the sky and did not set for about a full day.</VERS>\n\t\t\t<VERS vnumber=\"14\"> There has not been a day like it before or since. The LORD obeyed a man, for the LORD fought for Israel! </VERS>\n\t\t\t<VERS vnumber=\"15\"> Then Joshua and all Israel returned to the camp at Gilgal.</VERS>\n\t\t\t<VERS vnumber=\"16\"> The five Amorite kings ran away and hid in the cave at Makkedah. </VERS>\n\t\t\t<VERS vnumber=\"17\"> Joshua was told, \"The five kings have been found hiding in the cave at Makkedah.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> Joshua said, \"Roll large stones over the mouth of the cave and post guards in front of it.</VERS>\n\t\t\t<VERS vnumber=\"19\"> But don't you delay! Chase your enemies and catch them! Don't allow them to retreat to their cities, for the LORD your God is handing them over to you.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> Joshua and the Israelites almost totally wiped them out, but some survivors did escape to the fortified cities.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Then the whole army safely returned to Joshua at the camp in Makkedah. No one dared threaten the Israelites.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Joshua said, \"Open the cave's mouth and bring the five kings out of the cave to me.\" </VERS>\n\t\t\t<VERS vnumber=\"23\"> They did as ordered; they brought the five kings out of the cave to him, the kings of Jerusalem, Hebron, Jarmuth, Lachish, and Eglon.</VERS>\n\t\t\t<VERS vnumber=\"24\"> When they brought the kings out to Joshua, he summoned all the men of Israel and said to the commanders of the troops who accompanied him, \"Come here and put your feet on the necks of these kings.\" So they came up and put their feet on their necks. </VERS>\n\t\t\t<VERS vnumber=\"25\"> Then Joshua said to them, \"Don't be afraid and don't panic! Be strong and brave, for the LORD will do the same thing to all your enemies you fight. </VERS>\n\t\t\t<VERS vnumber=\"26\"> Then Joshua executed them and hung them on five trees. They were left hanging on the trees until evening. </VERS>\n\t\t\t<VERS vnumber=\"27\"> At sunset Joshua ordered his men to take them down from the trees. They threw them into the cave where they had hidden and piled large stones over the mouth of the cave. (They remain to this very day.)</VERS>\n\t\t\t<VERS vnumber=\"28\"> That day Joshua captured Makkedah and put the sword to it and its king. He annihilated everyone who lived in it; he left no survivors. He did to its king what he had done to the king of Jericho.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Joshua and all Israel marched from Makkedah to Libnah and fought against it.</VERS>\n\t\t\t<VERS vnumber=\"30\"> The LORD handed it and its king over to Israel, and Israel put the sword to all who lived there; they left no survivors. They did to its king what they had done to the king of Jericho.</VERS>\n\t\t\t<VERS vnumber=\"31\"> Joshua and all Israel marched from Libnah to Lachish. He deployed his troops and fought against it. </VERS>\n\t\t\t<VERS vnumber=\"32\"> The LORD handed Lachish over to Israel and they captured it on the second day. They put the sword to all who lived there, just as they had done to Libnah. </VERS>\n\t\t\t<VERS vnumber=\"33\"> Then King Horam of Gezer came up to help Lachish, but Joshua struck down him and his army until no survivors remained.</VERS>\n\t\t\t<VERS vnumber=\"34\"> Joshua and all Israel marched from Lachish to Eglon. They deployed troops and fought against it. </VERS>\n\t\t\t<VERS vnumber=\"35\"> That day they captured it and put the sword to all who lived there. That day they annihilated it just as they had done to Lachish.</VERS>\n\t\t\t<VERS vnumber=\"36\"> Joshua and all Israel marched up from Eglon to Hebron and fought against it.</VERS>\n\t\t\t<VERS vnumber=\"37\"> They captured it and put the sword to its king, all its surrounding cities, and all who lived in it; they left no survivors. As they had done at Eglon, they annihilated it and all who lived there.</VERS>\n\t\t\t<VERS vnumber=\"38\"> Joshua and all Israel turned to Debir and fought against it.</VERS>\n\t\t\t<VERS vnumber=\"39\"> They captured it, its king, and all its surrounding cities and put the sword to them. They annihilated everyone who lived there; they left no survivors. They did to Debir and its king what they had done to Libnah and its king and to Hebron.</VERS>\n\t\t\t<VERS vnumber=\"40\"> Joshua defeated the whole land, including the hill country, the Negev, the lowlands, the slopes, and all their kings. He left no survivors. He annihilated everything that breathed, just as the LORD God of Israel had commanded. </VERS>\n\t\t\t<VERS vnumber=\"41\"> Joshua conquered the area between Kadesh Barnea and Gaza and the whole region of Goshen, all the way to Gibeon.</VERS>\n\t\t\t<VERS vnumber=\"42\"> Joshua captured in one campaign all these kings and their lands, for the LORD God of Israel fought for Israel.</VERS>\n\t\t\t<VERS vnumber=\"43\"> Then Joshua and all Israel returned to the camp at Gilgal.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"11\">\n\t\t\t<VERS vnumber=\"1\"> When King Jabin of Hazor heard the news, he organized a coalition, including King Jobab of Madon, the king of Shimron, the king of Acshaph, </VERS>\n\t\t\t<VERS vnumber=\"2\"> and the northern kings who ruled in the hill country, the Arabah south of Kinnereth, the lowlands, and the heights of Dor to the west. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Canaanites came from the east and west; Amorites, Hittites, Perizzites, and Jebusites from the hill country; and Hivites from below Hermon in the area of Mizpah. </VERS>\n\t\t\t<VERS vnumber=\"4\"> These kings came out with their armies; they were as numerous as the sand on the seashore and had a large number of horses and chariots.</VERS>\n\t\t\t<VERS vnumber=\"5\"> All these kings gathered and joined forces at the Waters of Merom to fight Israel.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The LORD told Joshua, \"Don't be afraid of them, for about this time tomorrow I will cause all of them to lie dead before Israel. You must hamstring their horses and burn their chariots.\" </VERS>\n\t\t\t<VERS vnumber=\"7\"> Joshua and his whole army caught them by surprise at the Waters of Merom and attacked them.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The LORD handed them over to Israel and they struck them down and chased them all the way to Greater Sidon, Misrephoth Maim, and the Mizpah Valley to the east. They struck them down until no survivors remained. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Joshua did to them as the LORD had commanded him; he hamstrung their horses and burned their chariots.</VERS>\n\t\t\t<VERS vnumber=\"10\"> At that time Joshua turned, captured Hazor, and struck down its king with the sword, for Hazor was at that time the leader of all these kingdoms. </VERS>\n\t\t\t<VERS vnumber=\"11\"> They annihilated everyone who lived there with the sword, no one who breathed remained, and burned Hazor.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Joshua captured all these royal cities and all their kings and annihilated them with the sword, as Moses the LORD's servant had commanded. </VERS>\n\t\t\t<VERS vnumber=\"13\"> But Israel did not burn any of the cities located on mounds, except for Hazor; it was the only one Joshua burned. </VERS>\n\t\t\t<VERS vnumber=\"14\"> The Israelites plundered all the goods of these cities and the cattle, but they totally destroyed all the people and allowed no one who breathed to live. </VERS>\n\t\t\t<VERS vnumber=\"15\"> Moses the LORD's servant passed on the LORD's commands to Joshua, and Joshua did as he was told. He did not ignore any of the commands the LORD had given Moses.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Joshua conquered the whole land, including the hill country, all the Negev, all the land of Goshen, the lowlands, the Arabah, the hill country of Israel and its lowlands, </VERS>\n\t\t\t<VERS vnumber=\"17\"> from Mount Halak on up to Seir, as far as Baal Gad in the Lebanon Valley below Mount Hermon. He captured all their kings and executed them.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Joshua campaigned against these kings for quite some time.</VERS>\n\t\t\t<VERS vnumber=\"19\"> No city made peace with the Israelites (except the Hivites living in Gibeon); they had to conquer all of them,</VERS>\n\t\t\t<VERS vnumber=\"20\"> for the LORD determined to make them obstinate so they would attack Israel. He wanted Israel to annihilate them without mercy, as he had instructed Moses.</VERS>\n\t\t\t<VERS vnumber=\"21\"> At that time Joshua attacked and eliminated the Anakites from the hill country, from Hebron, Debir, Anab, and all the hill country of Judah and Israel. Joshua annihilated them and their cities.</VERS>\n\t\t\t<VERS vnumber=\"22\"> No Anakites were left in Israelite territory, though some remained in Gaza, Gath, and Ashdod.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Joshua conquered the whole land, just as the LORD had promised Moses, and he assigned Israel their tribal portions. Then the land was free of war.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"12\">\n\t\t\t<VERS vnumber=\"1\"> Now these are the kings of the land whom the Israelites defeated and drove from their land on the east side of the Jordan, from the Arnon Valley to Mount Hermon, including all the eastern Arabah:</VERS>\n\t\t\t<VERS vnumber=\"2\"> King Sihon of the Amorites who lived in Heshbon and ruled from Aroer (on the edge of the Arnon Valley), including the city in the middle of the valley and half of Gilead, all the way to the Jabbok Valley bordering Ammonite territory.</VERS>\n\t\t\t<VERS vnumber=\"3\"> His kingdom included the eastern Arabah from the Sea of Kinnereth to the Sea of the Arabah (the Salt Sea), including the route to Beth Jeshimoth and the area southward below the slopes of Pisgah.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The territory of King Og of Bashan, one of the few remaining Rephaites, who lived in Ashtaroth and Edrei </VERS>\n\t\t\t<VERS vnumber=\"5\"> and ruled over Mount Hermon, Salecah, all of Bashan to the border of the Geshurites and Maacathites, and half of Gilead as far as the border of King Sihon of Heshbon.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Moses the LORD's servant and the Israelites defeated them and Moses the LORD's servant assigned their land to Reuben, Gad, and the half tribe of Manasseh.</VERS>\n\t\t\t<VERS vnumber=\"7\"> These are the kings of the land whom Joshua and the Israelites defeated on the west side of the Jordan, from Baal Gad in the Lebanon Valley to Mount Halak on up to Seir. Joshua assigned this territory to the Israelite tribes,</VERS>\n\t\t\t<VERS vnumber=\"8\"> including the hill country, the lowlands, the Arabah, the slopes, the wilderness, and the Negev, the land of the Hittites, Amorites, Canaanites, Perizzites, Hivites, and Jebusites:</VERS>\n\t\t\t<VERS vnumber=\"9\"> the king of Jericho (one), the king of Ai, located near Bethel, (one),</VERS>\n\t\t\t<VERS vnumber=\"10\"> the king of Jerusalem (one), the king of Hebron (one),</VERS>\n\t\t\t<VERS vnumber=\"11\"> the king of Jarmuth (one), the king of Lachish (one),</VERS>\n\t\t\t<VERS vnumber=\"12\"> the king of Eglon (one), the king of Gezer (one),</VERS>\n\t\t\t<VERS vnumber=\"13\"> the king of Debir (one), the king of Geder (one),</VERS>\n\t\t\t<VERS vnumber=\"14\"> the king of Hormah (one), the king of Arad (one),</VERS>\n\t\t\t<VERS vnumber=\"15\"> the king of Libnah (one), the king of Adullam (one),</VERS>\n\t\t\t<VERS vnumber=\"16\"> the king of Makkedah (one), the king of Bethel (one),</VERS>\n\t\t\t<VERS vnumber=\"17\"> the king of Tappuah (one), the king of Hepher (one),</VERS>\n\t\t\t<VERS vnumber=\"18\"> the king of Aphek (one), the king of Lasharon (one),</VERS>\n\t\t\t<VERS vnumber=\"19\"> the king of Madon (one), the king of Hazor (one),</VERS>\n\t\t\t<VERS vnumber=\"20\"> the king of Shimron Meron (one), the king of Acshaph (one),</VERS>\n\t\t\t<VERS vnumber=\"21\"> the king of Taanach (one), the king of Megiddo (one),</VERS>\n\t\t\t<VERS vnumber=\"22\"> the king of Kedesh (one), the king of Jokneam near Carmel (one),</VERS>\n\t\t\t<VERS vnumber=\"23\"> the king of Dor, near Naphath Dor, (one), the king of Goyim, near Gilgal, (one),</VERS>\n\t\t\t<VERS vnumber=\"24\"> the king of Tirzah (one), a total of thirty-one kings.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"13\">\n\t\t\t<VERS vnumber=\"1\"> When Joshua was very old, the LORD told him, \"You are very old, and a great deal of land remains to be conquered. </VERS>\n\t\t\t<VERS vnumber=\"2\"> This is the land that remains: all the territory of the Philistines and all the Geshurites,</VERS>\n\t\t\t<VERS vnumber=\"3\"> from the Shihor River east of Egypt northward to the territory of Ekron (it is regarded as Canaanite territory), including the area belonging to the five Philistine lords who ruled in Gaza, Ashdod, Ashkelon, Gath, and Ekron, as well as Avvite land</VERS>\n\t\t\t<VERS vnumber=\"4\"> to the south; all the Canaanite territory, from Arah in the region of Sidon to Aphek, as far as Amorite territory; </VERS>\n\t\t\t<VERS vnumber=\"5\"> the territory of Byblos and all Lebanon to the east, from Baal Gad below Mount Hermon to Lebo Hamath.</VERS>\n\t\t\t<VERS vnumber=\"6\"> I will drive out before the Israelites all who live in the hill country from Lebanon to Misrephoth Maim, all the Sidonians; you be sure to parcel it out to Israel as I instructed you.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> Now, divide up this land among the nine tribes and the half-tribe of Manasseh.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> The other half of Manasseh, Reuben, and Gad received their allotted tribal lands beyond the Jordan, just as Moses, the LORD's servant, had assigned them. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Their territory started from Aroer (on the edge of the Arnon Valley), included the city in the middle of the valley, the whole plain of Medeba as far as Dibon, </VERS>\n\t\t\t<VERS vnumber=\"10\"> and all the cities of King Sihon of the Amorites who ruled in Heshbon, and ended at the Ammonite border.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Their territory also included Gilead, Geshurite and Maacathite territory, all Mount Hermon, and all Bashan to Salecah,</VERS>\n\t\t\t<VERS vnumber=\"12\"> the whole kingdom of Og in Bashan, who ruled in Ashtaroth and Edrei. (He was one of the few remaining Rephaites.) Moses defeated them and took their lands.</VERS>\n\t\t\t<VERS vnumber=\"13\"> But the Israelites did not conquer the Geshurites and Maacathites; Geshur and Maacah live among Israel to this very day. </VERS>\n\t\t\t<VERS vnumber=\"14\"> However, Moses did not assign land as an inheritance to the Levites; their inheritance is the sacrificial offerings made to the LORD God of Israel, as he instructed them.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Moses assigned land to the tribe of Reuben by its clans. </VERS>\n\t\t\t<VERS vnumber=\"16\"> Their territory started at Aroer (on the edge of the Arnon Valley) and included the city in the middle of the valley, the whole plain of Medeba,</VERS>\n\t\t\t<VERS vnumber=\"17\"> Heshbon and all its surrounding cities on the plain, including Dibon, Bamoth Baal, Beth Baal Meon,</VERS>\n\t\t\t<VERS vnumber=\"18\"> Jahaz, Kedemoth, Mephaath,</VERS>\n\t\t\t<VERS vnumber=\"19\"> Kiriathaim, Sibmah, Zereth Shahar on the hill in the valley,</VERS>\n\t\t\t<VERS vnumber=\"20\"> Beth Peor, the slopes of Pisgah, and Beth Jeshimoth.</VERS>\n\t\t\t<VERS vnumber=\"21\"> It encompassed all the cities of the plain and the whole realm of King Sihon of the Amorites who ruled in Heshbon. Moses defeated him and the Midianite leaders Evi, Rekem, Zur, Hur, and Reba (they were subjects of Sihon and lived in his territory).</VERS>\n\t\t\t<VERS vnumber=\"22\"> The Israelites killed Balaam son of Beor, the omen reader, along with the others.</VERS>\n\t\t\t<VERS vnumber=\"23\"> The border of the tribe of Reuben was the Jordan. The land allotted to the tribe of Reuben by its clans included these cities and their towns.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Moses assigned land to the tribe of Gad by its clans. </VERS>\n\t\t\t<VERS vnumber=\"25\"> Their territory included Jazer, all the cities of Gilead, and half of Ammonite territory as far as Aroer near Rabbah. </VERS>\n\t\t\t<VERS vnumber=\"26\"> Their territory ran from Heshbon to Ramath Mizpah and Betonim, and from Mahanaim to the territory of Debir. </VERS>\n\t\t\t<VERS vnumber=\"27\"> It included the valley of Beth Haram, Beth Nimrah, Succoth, and Zaphon, and the rest of the realm of King Sihon of Heshbon, the area east of the Jordan to the end of the Sea of Kinnereth.</VERS>\n\t\t\t<VERS vnumber=\"28\"> The land allotted to the tribe of Gad by its clans included these cities and their towns.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Moses assigned land to the half-tribe of Manasseh by its clans. </VERS>\n\t\t\t<VERS vnumber=\"30\"> Their territory started at Mahanaim and encompassed all Bashan, the whole realm of King Og of Bashan, including all sixty cities in Havvoth Jair in Bashan. </VERS>\n\t\t\t<VERS vnumber=\"31\"> Half of Gilead, Ashtaroth, and Edrei, cities in the kingdom of Og in Bashan, were assigned to the descendants of Makir son of Manasseh, to half the descendants of Makir by their clans.</VERS>\n\t\t\t<VERS vnumber=\"32\"> These are the land assignments made by Moses on the plains of Moab east of the Jordan River opposite Jericho.</VERS>\n\t\t\t<VERS vnumber=\"33\"> However, Moses did not assign land as an inheritance to the Levites; their inheritance is the LORD God of Israel, as he instructed them.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"14\">\n\t\t\t<VERS vnumber=\"1\"> The following is a record of the territory assigned to the Israelites in the land of Canaan by Eleazar the priest, Joshua son of Nun, and the Israelite tribal leaders.</VERS>\n\t\t\t<VERS vnumber=\"2\"> The land assignments to the nine-and-a-half tribes were made by drawing lots, as the LORD had instructed Moses.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Now Moses had assigned land to the two-and-a-half tribes east of the Jordan, but he assigned no land to the Levites.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The descendants of Joseph were considered as two tribes, Manasseh and Ephraim. The Levites were allotted no territory, though they were assigned cities in which to live, along with the grazing areas for their cattle and possessions.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The Israelites followed the LORD's instructions to Moses and divided up the land.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The men of Judah approached Joshua in Gilgal, and Caleb son of Jephunneh the Kenizzite said to him, \"You know what the LORD said about you and me to Moses, the man of God, at Kadesh Barnea.</VERS>\n\t\t\t<VERS vnumber=\"7\"> I was forty years old when Moses, the LORD's servant, sent me from Kadesh Barnea to spy on the land and I brought back to him an honest report.</VERS>\n\t\t\t<VERS vnumber=\"8\"> My countrymen who accompanied me frightened the people, but I remained loyal to the LORD my God.</VERS>\n\t\t\t<VERS vnumber=\"9\"> That day Moses made this solemn promise: 'Surely the land on which you walked will belong to you and your descendants permanently, for you remained loyal to the LORD your God.' </VERS>\n\t\t\t<VERS vnumber=\"10\"> So now, look, the LORD has preserved my life, just as he promised, these past forty-five years since the LORD spoke these words to Moses, during which Israel traveled through the wilderness. Now look, I am today eighty-five years old.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Today I am still as strong as when Moses sent me out. I can fight and go about my daily activities with the same energy I had then.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Now, assign me this hill country which the LORD promised me at that time! No doubt you heard at that time that the Anakites live there in large, fortified cities. But, assuming the LORD is with me, I will conquer them, as the LORD promised.\" </VERS>\n\t\t\t<VERS vnumber=\"13\"> Joshua asked God to empower Caleb son of Jephunneh and assigned him Hebron.</VERS>\n\t\t\t<VERS vnumber=\"14\"> So Hebron remains the assigned land of Caleb son of Jephunneh the Kenizzite to this very day because he remained loyal to the LORD God of Israel. </VERS>\n\t\t\t<VERS vnumber=\"15\"> (Hebron used to be called Kiriath Arba. Arba was a famous Anakite.) Then the land was free of war.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"15\">\n\t\t\t<VERS vnumber=\"1\"> The land allotted to the tribe of Judah by its clans reached to the border of Edom, to the Wilderness of Zin in the Negev far to the south.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Their southern border started at the southern tip of the Salt Sea,</VERS>\n\t\t\t<VERS vnumber=\"3\"> extended south of the Scorpion Ascent, crossed to Zin, went up from the south to Kadesh Barnea, crossed to Hezron, went up to Addar, and turned toward Karka. </VERS>\n\t\t\t<VERS vnumber=\"4\"> It then crossed to Azmon, extended to the Stream of Egypt, and ended at the sea. This was their southern border.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The eastern border was the Salt Sea to the mouth of the Jordan River. The northern border started north of the Salt Sea at the mouth of the Jordan,</VERS>\n\t\t\t<VERS vnumber=\"6\"> went up to Beth Hoglah, crossed north of Beth Arabah, and went up to the Stone of Bohan son of Reuben.</VERS>\n\t\t\t<VERS vnumber=\"7\"> It then went up to Debir from the Valley of Achor, turning northward to Gilgal (which is opposite the Pass of Adummim south of the valley), crossed to the waters of En Shemesh and extended to En Rogel. </VERS>\n\t\t\t<VERS vnumber=\"8\"> It then went up the Valley of Ben Hinnom to the slope of the Jebusites on the south (that is, Jerusalem), going up to the top of the hill opposite the Valley of Ben Hinnom to the west, which is at the end of the Valley of the Rephaites to the north. </VERS>\n\t\t\t<VERS vnumber=\"9\"> It then went from the top of the hill to the spring of the waters of Nephtoah, extended to the cities of Mount Ephron, and went to Baalah (that is, Kiriath Jearim).</VERS>\n\t\t\t<VERS vnumber=\"10\"> It then turned from Baalah westward to Mount Seir, crossed to the slope of Mount Jearim on the north (that is Kesalon), descended to Beth Shemesh, and crossed to Timnah.</VERS>\n\t\t\t<VERS vnumber=\"11\"> It then extended to the slope of Ekron to the north, went toward Shikkeron, crossed to Mount Baalah, extended to Jabneel, and ended at the sea.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The western border was the Mediterranean Sea. These were the borders of the tribe of Judah and its clans.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Caleb son of Jephunneh was assigned Kiriath Arba (that is Hebron) within the tribe of Judah, according to the LORD's instructions to Joshua. (Arba was the father of Anak.)</VERS>\n\t\t\t<VERS vnumber=\"14\"> Caleb drove out from there three Anakites, Sheshai, Ahiman, and Talmai, descendants of Anak.</VERS>\n\t\t\t<VERS vnumber=\"15\"> From there he attacked the people of Debir. (Debir used to be called Kiriath Sepher.) </VERS>\n\t\t\t<VERS vnumber=\"16\"> Caleb said, \"To the man who attacks and captures Kiriath Sepher I will give my daughter Acsah as a wife.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> When Othniel son of Kenaz, Caleb's brother, captured it, Caleb gave Acsah his daughter to him as a wife.</VERS>\n\t\t\t<VERS vnumber=\"18\"> One time Acsah came and charmed her father so that she could ask him for some land. When she got down from her donkey, Caleb said to her, \"What would you like?\" </VERS>\n\t\t\t<VERS vnumber=\"19\"> She answered, \"Please give me a special present. Since you have given me land in the Negev, now give me springs of water. So he gave her both upper and lower springs.</VERS>\n\t\t\t<VERS vnumber=\"20\"> This is the land assigned to the tribe of Judah by its clans:</VERS>\n\t\t\t<VERS vnumber=\"21\"> These cities were located at the southern extremity of Judah's tribal land near the border of Edom: Kabzeel, Eder, Jagur, </VERS>\n\t\t\t<VERS vnumber=\"22\"> Kinah, Dimonah, Adadah,</VERS>\n\t\t\t<VERS vnumber=\"23\"> Kedesh, Hazor, Ithnan, </VERS>\n\t\t\t<VERS vnumber=\"24\"> Ziph, Telem, Bealoth,</VERS>\n\t\t\t<VERS vnumber=\"25\"> Hazor Hadattah, Kerioth Hezron (that is, Hazor),</VERS>\n\t\t\t<VERS vnumber=\"26\"> Amam, Shema, Moladah,</VERS>\n\t\t\t<VERS vnumber=\"27\"> Hazar Gaddah, Heshbon, Beth Pelet,</VERS>\n\t\t\t<VERS vnumber=\"28\"> Hazar Shual, Beer Sheba, Biziothiah,</VERS>\n\t\t\t<VERS vnumber=\"29\"> Baalah, Iim, Ezem,</VERS>\n\t\t\t<VERS vnumber=\"30\"> Eltolad, Kesil, Hormah,</VERS>\n\t\t\t<VERS vnumber=\"31\"> Ziklag, Madmannah, Sansannah,</VERS>\n\t\t\t<VERS vnumber=\"32\"> Lebaoth, Shilhim, Ain, and Rimmon, a total of twenty-nine cities and their towns.</VERS>\n\t\t\t<VERS vnumber=\"33\"> These cities were in the lowlands: Eshtaol, Zorah, Ashnah, </VERS>\n\t\t\t<VERS vnumber=\"34\"> Zanoah, En Gannim, Tappuah, Enam,</VERS>\n\t\t\t<VERS vnumber=\"35\"> Jarmuth, Adullam, Socoh, Azekah,</VERS>\n\t\t\t<VERS vnumber=\"36\"> Shaaraim, Adithaim, and Gederah (or Gederothaim), a total of fourteen cities and their towns.</VERS>\n\t\t\t<VERS vnumber=\"37\"> Zenan, Hadashah, Migdal Gad,</VERS>\n\t\t\t<VERS vnumber=\"38\"> Dilean, Mizpah, Joktheel,</VERS>\n\t\t\t<VERS vnumber=\"39\"> Lachish, Bozkath, Eglon,</VERS>\n\t\t\t<VERS vnumber=\"40\"> Cabbon, Lahmas, Kitlish,</VERS>\n\t\t\t<VERS vnumber=\"41\"> Gederoth, Beth Dagon, Naamah, and Makkedah, a total of sixteen cities and their towns.</VERS>\n\t\t\t<VERS vnumber=\"42\"> Libnah, Ether, Ashan,</VERS>\n\t\t\t<VERS vnumber=\"43\"> Iphtah, Ashnah, Nezib,</VERS>\n\t\t\t<VERS vnumber=\"44\"> Keilah, Aczib, and Mareshah, a total of nine cities and their towns.</VERS>\n\t\t\t<VERS vnumber=\"45\"> Ekron and its surrounding towns and settlements; </VERS>\n\t\t\t<VERS vnumber=\"46\"> from Ekron westward, all those in the vicinity of Ashdod and their towns;</VERS>\n\t\t\t<VERS vnumber=\"47\"> Ashdod with its surrounding towns and settlements, and Gaza with its surrounding towns and settlements, as far as the Stream of Egypt and the border at the Mediterranean Sea.</VERS>\n\t\t\t<VERS vnumber=\"48\"> These cities were in the hill country: Shamir, Jattir, Socoh, </VERS>\n\t\t\t<VERS vnumber=\"49\"> Dannah, Kiriath Sannah (that is, Debir),</VERS>\n\t\t\t<VERS vnumber=\"50\"> Anab, Eshtemoh, Anim,</VERS>\n\t\t\t<VERS vnumber=\"51\"> Goshen, Holon, and Giloh, a total of eleven cities and their towns.</VERS>\n\t\t\t<VERS vnumber=\"52\"> Arab, Dumah, Eshan, </VERS>\n\t\t\t<VERS vnumber=\"53\"> Janim, Beth Tappuah, Aphekah,</VERS>\n\t\t\t<VERS vnumber=\"54\"> Humtah, Kiriath Arba (that is, Hebron), and Zior, a total of nine cities and their towns.</VERS>\n\t\t\t<VERS vnumber=\"55\"> Maon, Carmel, Ziph, Juttah,</VERS>\n\t\t\t<VERS vnumber=\"56\"> Jezreel, Jokdeam, Zanoah,</VERS>\n\t\t\t<VERS vnumber=\"57\"> Kain, Gibeah, and Timnah, a total of ten cities and their towns.</VERS>\n\t\t\t<VERS vnumber=\"58\"> Halhul, Beth Zur, Gedor,</VERS>\n\t\t\t<VERS vnumber=\"59\"> Maarath, Beth Anoth, and Eltekon, a total of six cities and their towns.</VERS>\n\t\t\t<VERS vnumber=\"60\"> Kiriath Baal (that is, Kiriath Jearim) and Rabbah, a total of two cities and their towns.</VERS>\n\t\t\t<VERS vnumber=\"61\"> These cities were in the desert: Beth Arabah, Middin, Secacah, </VERS>\n\t\t\t<VERS vnumber=\"62\"> Nibshan, the city of Salt, and En Gedi, a total of six cities and their towns.</VERS>\n\t\t\t<VERS vnumber=\"63\"> The men of Judah were unable to conquer the Jebusites living in Jerusalem. The Jebusites live with the people of Judah in Jerusalem to this very day.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"16\">\n\t\t\t<VERS vnumber=\"1\"> The land allotted to Joseph's descendants extended from the Jordan at Jericho to the waters of Jericho to the east, through the desert and on up from Jericho into the hill country of Bethel.</VERS>\n\t\t\t<VERS vnumber=\"2\"> The southern border extended from Bethel to Luz, and crossed to Arkite territory at Ataroth. </VERS>\n\t\t\t<VERS vnumber=\"3\"> It then descended westward to Japhletite territory, as far as the territory of lower Beth Horon and Gezer, and ended at the sea.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Joseph's descendants, Manasseh and Ephraim, were assigned their land.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The territory of the tribe of Ephraim by its clans included the following: The border of their assigned land to the east was Ataroth Addar as far as upper Beth Horon. </VERS>\n\t\t\t<VERS vnumber=\"6\"> It then extended on to the sea, with Micmethath on the north. It turned eastward to Taanath Shiloh and crossed it on the east to Janoah.</VERS>\n\t\t\t<VERS vnumber=\"7\"> It then descended from Janoah to Ataroth and Naarah, touched Jericho, and extended to the Jordan River.</VERS>\n\t\t\t<VERS vnumber=\"8\"> From Tappuah it went westward to the Valley of Kanah and ended at the sea. This is the land assigned to the tribe of Ephraim by its clans. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Also included were the cities set apart for the tribe of Ephraim within Manasseh's territory, along with their towns.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The Ephraimites did not conquer the Canaanites living in Gezer. The Canaanites live among the Ephraimites to this very day and do hard labor as their servants.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"17\">\n\t\t\t<VERS vnumber=\"1\"> The tribe of Manasseh, Joseph's firstborn son, was also allotted land. The descendants of Makir, Manasseh's firstborn and the father of Gilead, received land, for they were warriors. They were assigned Gilead and Bashan.</VERS>\n\t\t\t<VERS vnumber=\"2\"> The rest of Manasseh's descendants were also assigned land by their clans, including the descendants of Abiezer, Helek, Asriel, Shechem, Hepher, and Shemida. These are the male descendants of Manasseh son of Joseph by their clans.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Now Zelophehad son of Hepher, son of Gilead, son of Makir, son of Manasseh, had no sons, only daughters. These are the names of his daughters: Mahlah, Noah, Hoglah, Milcah, and Tirzah.</VERS>\n\t\t\t<VERS vnumber=\"4\"> They went before Eleazar the priest, Joshua son of Nun, and the leaders and said, \"The LORD told Moses to assign us land among our relatives.\" So Joshua assigned them land among their uncles, as the LORD had commanded.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Manasseh was allotted ten shares of land, in addition to the land of Gilead and Bashan east of the Jordan, </VERS>\n\t\t\t<VERS vnumber=\"6\"> for the daughters of Manasseh were assigned land among his sons. The land of Gilead belonged to the rest of the descendants of Manasseh.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The border of Manasseh went from Asher to Micmethath which is near Shechem. It then went south toward those who live in Tappuah. </VERS>\n\t\t\t<VERS vnumber=\"8\"> (The land of Tappuah belonged to Manasseh, but Tappuah, located on the border of Manasseh, belonged to the tribe of Ephraim.)</VERS>\n\t\t\t<VERS vnumber=\"9\"> The border then descended southward to the Valley of Kanah. Ephraim was assigned cities there among the cities of Manasseh, but the border of Manasseh was north of the valley and ended at the sea. </VERS>\n\t\t\t<VERS vnumber=\"10\"> Ephraim's territory was to the south, and Manasseh's to the north. The sea was Manasseh's western border and their territory touched Asher on the north and Issachar on the east. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Within Issachar's and Asher's territory Manasseh was assigned Beth Shean, Ibleam, the residents of Dor, En Dor, the residents of Taanach, the residents of Megiddo, the three of Napheth, and the towns surrounding all these cities.</VERS>\n\t\t\t<VERS vnumber=\"12\"> But the men of Manasseh were unable to conquer these cities; the Canaanites managed to remain in those areas. </VERS>\n\t\t\t<VERS vnumber=\"13\"> Whenever the Israelites were strong militarily, they forced the Canaanites to do hard labor, but they never totally conquered them.</VERS>\n\t\t\t<VERS vnumber=\"14\"> The descendants of Joseph said to Joshua, \"Why have you assigned us only one tribal allotment? After all, we have many people, for until now the LORD has enabled us to increase in number.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> Joshua replied to them, \"Since you have so many people, go up into the forest and clear out a place to live in the land of the Perizzites and Rephaites, for the hill country of Ephraim is too small for you.\" </VERS>\n\t\t\t<VERS vnumber=\"16\"> The descendants of Joseph said, \"The whole hill country is inadequate for us, and the Canaanites living down in the valley in Beth Shean and its surrounding towns and in the Valley of Jezreel have chariots with iron-rimmed wheels.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> Joshua said to the family of Joseph, to both Ephraim and Manasseh: \"You have many people and great military strength. You will not have just one tribal allotment.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The whole hill country will be yours; though it is a forest, you can clear it and it will be entirely yours. You can conquer the Canaanites, though they have chariots with iron-rimmed wheels and are strong.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"18\">\n\t\t\t<VERS vnumber=\"1\"> The entire Israelite community assembled at Shiloh and there they set up the tent of meeting. Though they had subdued the land,</VERS>\n\t\t\t<VERS vnumber=\"2\"> seven Israelite tribes had not been assigned their allotted land.</VERS>\n\t\t\t<VERS vnumber=\"3\"> So Joshua said to the Israelites: \"How long do you intend to put off occupying the land the LORD God of your ancestors has given you? </VERS>\n\t\t\t<VERS vnumber=\"4\"> Pick three men from each tribe. I will send them out to walk through the land and make a map of it for me.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Divide it into seven regions. Judah will stay in its territory in the south, and the family of Joseph in its territory in the north.</VERS>\n\t\t\t<VERS vnumber=\"6\"> But as for you, map out the land into seven regions and bring it to me. I will draw lots for you here before the LORD our God.</VERS>\n\t\t\t<VERS vnumber=\"7\"> But the Levites will not have an allotted portion among you, for their inheritance is to serve the LORD. Gad, Reuben, and the half-tribe of Manasseh have already received their allotted land east of the Jordan which Moses the LORD's servant assigned them.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> When the men started out, Joshua told those going to map out the land, \"Go, walk through the land, map it out, and return to me. Then I will draw lots for you before the LORD here in Shiloh.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> The men journeyed through the land and mapped it and its cities out into seven regions on a scroll. Then they came to Joshua at the camp in Shiloh. </VERS>\n\t\t\t<VERS vnumber=\"10\"> Joshua drew lots for them in Shiloh before the LORD and divided the land among the Israelites according to their allotted portions.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The first lot belonged to the tribe of Benjamin by its clans. Their allotted territory was between Judah and Joseph.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Their northern border started at the Jordan, went up to the slope of Jericho on the north, ascended westward to the hill country, and extended to the desert of Beth Aven. </VERS>\n\t\t\t<VERS vnumber=\"13\"> It then crossed from there to Luz, to the slope of Luz to the south (that is, Bethel), and descended to Ataroth Addar located on the hill that is south of lower Beth Horon. </VERS>\n\t\t\t<VERS vnumber=\"14\"> It then turned on the west side southward from the hill near Beth Horon on the south and extended to Kiriath Baal (that is, Kiriath Jearim), a city belonging to the tribe of Judah. This is the western border.</VERS>\n\t\t\t<VERS vnumber=\"15\"> The southern side started on the edge of Kiriath Jearim and extended westward to the spring of the waters of Nephtoah.</VERS>\n\t\t\t<VERS vnumber=\"16\"> The border then descended to the edge of the hill country near the Valley of Ben Hinnom located in the Valley of the Rephaites to the north. It descended through the Valley of Hinnom to the slope of the Jebusites to the south and then down to En Rogel.</VERS>\n\t\t\t<VERS vnumber=\"17\"> It went northward, extending to En Shemesh and Geliloth opposite the Pass of Adummim, and descended to the Stone of Bohan son of Reuben. </VERS>\n\t\t\t<VERS vnumber=\"18\"> It crossed to the slope in front of the Arabah to the north and descended into the Arabah.</VERS>\n\t\t\t<VERS vnumber=\"19\"> It then crossed to the slope of Beth Hoglah to the north and ended at the northern tip of the Salt Sea at the mouth of the Jordan River. This was the southern border. </VERS>\n\t\t\t<VERS vnumber=\"20\"> The Jordan River borders it on the east. These were the borders of the land assigned to the tribe of Benjamin by its clans.</VERS>\n\t\t\t<VERS vnumber=\"21\"> These cities belonged to the tribe of Benjamin by its clans: Jericho, Beth Hoglah, Emek Keziz, </VERS>\n\t\t\t<VERS vnumber=\"22\"> Beth Arabah, Zemaraim, Bethel,</VERS>\n\t\t\t<VERS vnumber=\"23\"> Avvim, Parah, Ophrah,</VERS>\n\t\t\t<VERS vnumber=\"24\"> Kephar Ammoni, Ophni, and Geba, a total of twelve cities and their towns.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Gibeon, Ramah, Beeroth,</VERS>\n\t\t\t<VERS vnumber=\"26\"> Mizpah, Kephirah, Mozah,</VERS>\n\t\t\t<VERS vnumber=\"27\"> Rekem, Irpeel, Taralah,</VERS>\n\t\t\t<VERS vnumber=\"28\"> Zelah, Haeleph, the Jebusite city (that is, Jerusalem), Gibeah, and Kiriath, a total of fourteen cities and their towns. This was the land assigned to the tribe of Benjamin by its clans.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"19\">\n\t\t\t<VERS vnumber=\"1\"> The second lot belonged to the tribe of Simeon by its clans.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Their assigned land included Beer Sheba, Moladah, </VERS>\n\t\t\t<VERS vnumber=\"3\"> Hazar Shual, Balah, Ezem,</VERS>\n\t\t\t<VERS vnumber=\"4\"> Eltolad, Bethul, Hormah,</VERS>\n\t\t\t<VERS vnumber=\"5\"> Ziklag, Beth Marcaboth, Hazar Susah,</VERS>\n\t\t\t<VERS vnumber=\"6\"> Beth Lebaoth, and Sharuhen, a total of thirteen cities and their towns,</VERS>\n\t\t\t<VERS vnumber=\"7\"> Ain, Rimmon, Ether, and Ashan, a total of four cities and their towns,</VERS>\n\t\t\t<VERS vnumber=\"8\"> as well as all the towns around these cities as far as Baalath Beer (Ramah of the Negev). This was the land assigned to the tribe of Simeon by its clans.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Simeon's assigned land was taken from Judah's allotted portion, for Judah's territory was too large for them; so Simeon was assigned land within Judah.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The third lot belonged to the tribe of Zebulun by its clans. The border of their territory extended to Sarid. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Their border went up westward to Maralah and touched Dabbesheth and the valley near Jokneam. </VERS>\n\t\t\t<VERS vnumber=\"12\"> From Sarid it turned eastward to the territory of Kisloth Tabor, extended to Daberath, and went up to Japhia. </VERS>\n\t\t\t<VERS vnumber=\"13\"> From there it crossed eastward to Gath Hepher and Eth Kazin and extended to Rimmon, turning toward Neah.</VERS>\n\t\t\t<VERS vnumber=\"14\"> It then turned on the north to Hannathon and ended at the Valley of Iphtah El.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Their territory included Kattah, Nahalal, Shimron, Idalah, and Bethlehem; in all they had twelve cities and their towns.</VERS>\n\t\t\t<VERS vnumber=\"16\"> This was the land assigned to the tribe of Zebulun by its clans, including these cities and their towns.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The fourth lot belonged to the tribe of Issachar by its clans. </VERS>\n\t\t\t<VERS vnumber=\"18\"> Their assigned land included Jezreel, Kesulloth, Shunem, </VERS>\n\t\t\t<VERS vnumber=\"19\"> Hapharaim, Shion, Anaharath,</VERS>\n\t\t\t<VERS vnumber=\"20\"> Rabbith, Kishion, Ebez,</VERS>\n\t\t\t<VERS vnumber=\"21\"> Remeth, En Gannim, En Haddah and Beth Pazzez.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Their border touched Tabor, Shahazumah, and Beth Shemesh, and ended at the Jordan. They had sixteen cities and their towns.</VERS>\n\t\t\t<VERS vnumber=\"23\"> This was the land assigned to the tribe of Issachar by its clans, including the cities and their towns.</VERS>\n\t\t\t<VERS vnumber=\"24\"> The fifth lot belonged to the tribe of Asher by its clans. </VERS>\n\t\t\t<VERS vnumber=\"25\"> Their territory included Helkath, Hali, Beten, Acshaph,</VERS>\n\t\t\t<VERS vnumber=\"26\"> Alammelech, Amad, and Mishal. Their border touched Carmel to the west and Shihor Libnath.</VERS>\n\t\t\t<VERS vnumber=\"27\"> It turned eastward toward Beth Dagon, touched Zebulun and the Valley of Iphtah El to the north, as well as the Valley of Emek and Neiel, and extended to Cabul on the north</VERS>\n\t\t\t<VERS vnumber=\"28\"> and on to Ebron, Rehob, Hammon, and Kanah, as far as Greater Sidon.</VERS>\n\t\t\t<VERS vnumber=\"29\"> It then turned toward Ramah as far as the fortified city of Tyre, turned to Hosah, and ended at the sea near Hebel, Aczib, </VERS>\n\t\t\t<VERS vnumber=\"30\"> Umah, Aphek, and Rehob. In all they had twenty-two cities and their towns. </VERS>\n\t\t\t<VERS vnumber=\"31\"> This was the land assigned to the tribe of Asher by its clans, including these cities and their towns.</VERS>\n\t\t\t<VERS vnumber=\"32\"> The sixth lot belonged to the tribe of Naphtali by its clans. </VERS>\n\t\t\t<VERS vnumber=\"33\"> Their border started at Heleph and the oak of Zaanannim, went to Adami Nekeb, Jabneel and on to Lakkum, and ended at the Jordan River.</VERS>\n\t\t\t<VERS vnumber=\"34\"> It turned westward to Aznoth Tabor, extended from there to Hukok, touched Zebulun on the south, Asher on the west, and the Jordan on the east. </VERS>\n\t\t\t<VERS vnumber=\"35\"> The fortified cities included Ziddim, Zer, Hammath, Rakkath, Kinnereth,</VERS>\n\t\t\t<VERS vnumber=\"36\"> Adamah, Ramah, Hazor,</VERS>\n\t\t\t<VERS vnumber=\"37\"> Kedesh, Edrei, En Hazor,</VERS>\n\t\t\t<VERS vnumber=\"38\"> Yiron, Migdal El, Horem, Beth Anath, and Beth Shemesh. In all they had nineteen cities and their towns. </VERS>\n\t\t\t<VERS vnumber=\"39\"> This was the land assigned to the tribe of Naphtali by its clans, including the cities and their towns.</VERS>\n\t\t\t<VERS vnumber=\"40\"> The seventh lot belonged to the tribe of Dan by its clans. </VERS>\n\t\t\t<VERS vnumber=\"41\"> Their assigned land included Zorah, Eshtaol, Ir Shemesh,</VERS>\n\t\t\t<VERS vnumber=\"42\"> Shaalabbin, Aijalon, Ithlah,</VERS>\n\t\t\t<VERS vnumber=\"43\"> Elon, Timnah, Ekron,</VERS>\n\t\t\t<VERS vnumber=\"44\"> Eltekeh, Gibbethon, Baalath,</VERS>\n\t\t\t<VERS vnumber=\"45\"> Jehud, Bene Berak, Gath Rimmon,</VERS>\n\t\t\t<VERS vnumber=\"46\"> the waters of Jarkon, and Rakkon, including the territory in front of Joppa.</VERS>\n\t\t\t<VERS vnumber=\"47\"> (The Danites failed to conquer their territory, so they went up and fought with Leshem and captured it. They put the sword to it, took possession of it, and lived in it. They renamed it Dan after their ancestor.)</VERS>\n\t\t\t<VERS vnumber=\"48\"> This was the land assigned to the tribe of Dan by its clans, including these cities and their towns.</VERS>\n\t\t\t<VERS vnumber=\"49\"> When they finished dividing the land into its regions, the Israelites gave Joshua son of Nun some land.</VERS>\n\t\t\t<VERS vnumber=\"50\"> As the LORD had instructed, they gave him the city he requested, Timnath Serah in the Ephraimite hill country. He built up the city and lived in it.</VERS>\n\t\t\t<VERS vnumber=\"51\"> These are the land assignments which Eleazar the priest, Joshua son of Nun, and the Israelite tribal leaders made by drawing lots in Shiloh before the LORD at the entrance of the tent of meeting. So they finished dividing up the land.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"20\">\n\t\t\t<VERS vnumber=\"1\"> The LORD instructed Joshua:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Have the Israelites select the cities of refuge that I told you about through Moses. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Anyone who accidentally kills someone can escape there; these cities will be a place of asylum from the avenger of blood. </VERS>\n\t\t\t<VERS vnumber=\"4\"> The one who committed manslaughter should escape to one of these cities, stand at the entrance of the city gate, and present his case to the leaders of that city. They should then bring him into the city, give him a place to stay, and let him live there.</VERS>\n\t\t\t<VERS vnumber=\"5\"> When the avenger of blood comes after him, they must not hand over to him the one who committed manslaughter, for he accidentally killed his fellow man without premeditation.</VERS>\n\t\t\t<VERS vnumber=\"6\"> He must remain in that city until his case is decided by the assembly and the high priest dies. Then the one who committed manslaughter may return home to the city from which he escaped.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> So they selected Kedesh in Galilee in the hill country of Naphtali, Shechem in the hill country of Ephraim, and Kiriath Arba (that is, Hebron) in the hill country of Judah. </VERS>\n\t\t\t<VERS vnumber=\"8\"> Beyond the Jordan east of Jericho they selected Bezer in the desert on the plain belonging to the tribe of Reuben, Ramoth in Gilead belonging to the tribe of Gad, and Golan in Bashan belonging to the tribe of Manasseh. </VERS>\n\t\t\t<VERS vnumber=\"9\"> These were the cities of refuge appointed for all the Israelites and for resident foreigners living among them. Anyone who accidentally killed someone could escape there and not be executed by the avenger of blood, at least until his case was reviewed by the assembly.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"21\">\n\t\t\t<VERS vnumber=\"1\"> The tribal leaders of the Levites went before Eleazar the priest and Joshua son of Nun and the Israelite tribal leaders</VERS>\n\t\t\t<VERS vnumber=\"2\"> in Shiloh in the land of Canaan and said, \"The LORD told Moses to assign us cities in which to live along with the grazing areas for our cattle.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> So the Israelites assigned these cities and their grazing areas to the Levites from their own holdings, as the LORD had instructed.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The first lot belonged to the Kohathite clans. The Levites who were descendants of Aaron the priest were allotted thirteen cities from the tribes of Judah, Simeon, and Benjamin. </VERS>\n\t\t\t<VERS vnumber=\"5\"> The rest of Kohath's descendants were allotted ten cities from the clans of the tribe of Ephraim, and from the tribe of Dan and the half-tribe of Manasseh.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Gershon's descendants were allotted thirteen cities from the clans of the tribe of Issachar, and from the tribes of Asher and Naphtali and the half-tribe of Manasseh in Bashan.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Merari's descendants by their clans were allotted twelve cities from the tribes of Reuben, Gad, and Zebulun.</VERS>\n\t\t\t<VERS vnumber=\"8\"> So the Israelites assigned to the Levites by lot these cities and their grazing areas, as the LORD had instructed Moses.</VERS>\n\t\t\t<VERS vnumber=\"9\"> They assigned from the tribes of Judah and Simeon the cities listed below.</VERS>\n\t\t\t<VERS vnumber=\"10\"> They were assigned to the Kohathite clans of the Levites who were descendants of Aaron, for the first lot belonged to them. </VERS>\n\t\t\t<VERS vnumber=\"11\"> They assigned them Kiriath Arba (Arba was the father of Anak), that is, Hebron, in the hill country of Judah, along with its surrounding grazing areas.</VERS>\n\t\t\t<VERS vnumber=\"12\"> (Now the city's fields and surrounding towns they had assigned to Caleb son of Jephunneh as his property.)</VERS>\n\t\t\t<VERS vnumber=\"13\"> So to the descendants of Aaron the priest they assigned Hebron (a city of refuge for one who committed manslaughter), Libnah,</VERS>\n\t\t\t<VERS vnumber=\"14\"> Jattir, Eshtemoa,</VERS>\n\t\t\t<VERS vnumber=\"15\"> Holon, Debir,</VERS>\n\t\t\t<VERS vnumber=\"16\"> Ain, Juttah, and Beth Shemesh, along with the grazing areas of each, a total of nine cities taken from these two tribes.</VERS>\n\t\t\t<VERS vnumber=\"17\"> From the tribe of Benjamin they assigned Gibeon, Geba, </VERS>\n\t\t\t<VERS vnumber=\"18\"> Anathoth, and Almon, along with the grazing areas of each, a total of four cities.</VERS>\n\t\t\t<VERS vnumber=\"19\"> The priests descended from Aaron received thirteen cities and their grazing areas.</VERS>\n\t\t\t<VERS vnumber=\"20\"> The rest of the Kohathite clans of the Levites were allotted cities from the tribe of Ephraim.</VERS>\n\t\t\t<VERS vnumber=\"21\"> They assigned them Shechem (a city of refuge for one who committed manslaughter) in the hill country of Ephraim, Gezer,</VERS>\n\t\t\t<VERS vnumber=\"22\"> Kibzaim, and Beth Horon, along with the grazing areas of each, a total of four cities.</VERS>\n\t\t\t<VERS vnumber=\"23\"> From the tribe of Dan they assigned Eltekeh, Gibbethon,</VERS>\n\t\t\t<VERS vnumber=\"24\"> Aijalon, and Gath Rimmon, along with the grazing areas of each, a total of four cities.</VERS>\n\t\t\t<VERS vnumber=\"25\"> From the half-tribe of Manasseh they assigned Taanach and Gath Rimmon, along with the grazing areas of each, a total of two cities.</VERS>\n\t\t\t<VERS vnumber=\"26\"> The rest of the Kohathite clans received ten cities and their grazing areas.</VERS>\n\t\t\t<VERS vnumber=\"27\"> They assigned to the Gershonite clans of the Levites the following cities: from the half-tribe of Manasseh: Golan in Bashan (a city of refuge for one who committed manslaughter) and Beeshtarah, along with the grazing areas of each, a total of two cities;</VERS>\n\t\t\t<VERS vnumber=\"28\"> from the tribe of Issachar: Kishon, Daberath,</VERS>\n\t\t\t<VERS vnumber=\"29\"> Jarmuth, and En Gannim, along with the grazing areas of each, a total of four cities;</VERS>\n\t\t\t<VERS vnumber=\"30\"> from the tribe of Asher: Mishal, Abdon,</VERS>\n\t\t\t<VERS vnumber=\"31\"> Helkath, and Rehob, along with the grazing areas of each, a total of four cities;</VERS>\n\t\t\t<VERS vnumber=\"32\"> from the tribe of Naphtali: Kedesh in Galilee (a city of refuge for one who committed manslaughter), Hammoth Dor, and Kartan, along with the grazing areas of each, a total of three cities.</VERS>\n\t\t\t<VERS vnumber=\"33\"> The Gershonite clans received thirteen cities and their grazing areas.</VERS>\n\t\t\t<VERS vnumber=\"34\"> They assigned to the Merarite clans (the remaining Levites) the following cities: from the tribe of Zebulun: Jokneam, Kartah,</VERS>\n\t\t\t<VERS vnumber=\"35\"> Dimnah, and Nahalal, along with the grazing areas of each, a total of four cities;</VERS>\n\t\t\t<VERS vnumber=\"36\">  from the tribe of Reuben: Bezer, Jahaz, </VERS>\n\t\t\t<VERS vnumber=\"37\"> Kedemoth, and Mephaath, along with the grazing areas of each, a total of four cities;</VERS>\n\t\t\t<VERS vnumber=\"38\"> from the tribe of Gad: Ramoth in Gilead (a city of refuge for one who committed manslaughter), Mahanaim,</VERS>\n\t\t\t<VERS vnumber=\"39\"> Heshbon, and Jazer, along with the grazing areas of each, a total of four cities.</VERS>\n\t\t\t<VERS vnumber=\"40\"> The Merarite clans (the remaining Levites) were allotted twelve cities.</VERS>\n\t\t\t<VERS vnumber=\"41\"> The Levites received within the land owned by the Israelites forty-eight cities in all and their grazing areas. </VERS>\n\t\t\t<VERS vnumber=\"42\"> Each of these cities had grazing areas around it; they were alike in this regard.</VERS>\n\t\t\t<VERS vnumber=\"43\"> So the LORD gave Israel all the land he had solemnly promised to their ancestors, and they conquered it and lived in it. </VERS>\n\t\t\t<VERS vnumber=\"44\"> The LORD made them secure, in fulfillment of all he had solemnly promised their ancestors. None of their enemies could resist them.</VERS>\n\t\t\t<VERS vnumber=\"45\"> Not one of the LORD's faithful promises to the family of Israel was left unfulfilled; every one was realized.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"22\">\n\t\t\t<VERS vnumber=\"1\"> Then Joshua summoned the Reubenites, Gadites, and the half-tribe of Manasseh</VERS>\n\t\t\t<VERS vnumber=\"2\"> and told them: \"You have carried out all the instructions of Moses the LORD's servant, and you have obeyed all I have told you.</VERS>\n\t\t\t<VERS vnumber=\"3\"> You have not abandoned your fellow Israelites this entire time, right up to this very day. You have completed the task given you by the LORD your God.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Now the LORD your God has made your fellow Israelites secure, just as he promised them. So now you may turn around and go to your homes in your own land which Moses the LORD's servant assigned to you east of the Jordan. </VERS>\n\t\t\t<VERS vnumber=\"5\"> But carefully obey the commands and instructions Moses the LORD's servant gave you. Love the LORD your God, follow all his instructions, obey his commands, be loyal to him, and serve him with all your heart and being!\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> Joshua rewarded them and sent them on their way; they returned to their homes.</VERS>\n\t\t\t<VERS vnumber=\"7\"> (Now to one half-tribe of Manasseh, Moses had assigned land in Bashan; and to the other half Joshua had assigned land on the west side of the Jordan with their fellow Israelites.) When Joshua sent them home, he rewarded them, </VERS>\n\t\t\t<VERS vnumber=\"8\"> saying, \"Take home great wealth, a lot of cattle, silver, gold, bronze, iron, and a lot of clothing. Divide up the goods captured from your enemies with your brothers.\" </VERS>\n\t\t\t<VERS vnumber=\"9\"> So the Reubenites, Gadites, and half-tribe of Manasseh left the Israelites in Shiloh in the land of Canaan and headed home to their own land in Gilead, which they acquired by the LORD's command through Moses.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The Reubenites, Gadites, and half-tribe of Manasseh came to Geliloth near the Jordan in the land of Canaan and built there, near the Jordan, an impressive altar.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The Israelites received this report: \"Look, the Reubenites, Gadites, and half-tribe of Manasseh have built an altar at the entrance to the land of Canaan, at Geliloth near the Jordan on the Israelite side.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> When the Israelites heard this, the entire Israelite community assembled at Shiloh to launch an attack against them.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The Israelites sent Phinehas, son of Eleazar, the priest, to the land of Gilead to the Reubenites, Gadites, and the half-tribe of Manasseh.</VERS>\n\t\t\t<VERS vnumber=\"14\"> He was accompanied by ten leaders, one from each of the Israelite tribes, each one a family leader among the Israelite clans.</VERS>\n\t\t\t<VERS vnumber=\"15\"> They went to the land of Gilead to the Reubenites, Gadites, and the half-tribe of Manasseh, and said to them:</VERS>\n\t\t\t<VERS vnumber=\"16\"> \"The entire community of the LORD says, 'Why have you disobeyed the God of Israel by turning back today from following the LORD? You built an altar for yourselves and have rebelled today against the LORD.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The sin we committed at Peor was bad enough. To this very day we have not purified ourselves; it even brought a plague on the community of the LORD.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Now today you dare to turn back from following the LORD! You are rebelling today against the LORD; tomorrow he may break out in anger against the entire community of Israel. </VERS>\n\t\t\t<VERS vnumber=\"19\"> But if your own land is impure, cross over to the LORD's own land, where the LORD himself lives, and settle down among us. But don't rebel against the LORD or us by building for yourselves an altar aside from the altar of the LORD our God. </VERS>\n\t\t\t<VERS vnumber=\"20\"> When Achan son of Zerah disobeyed the command about the city's riches, the entire Israelite community was judged, though only one man had sinned. He most certainly died for his sin!'\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> The Reubenites, Gadites, and the half-tribe of Manasseh answered the leaders of the Israelite clans: </VERS>\n\t\t\t<VERS vnumber=\"22\"> \"El, God, the LORD! El, God, the LORD! He knows the truth! Israel must also know! If we have rebelled or disobeyed the LORD, don't spare us today! </VERS>\n\t\t\t<VERS vnumber=\"23\"> If we have built an altar for ourselves to turn back from following the LORD by making burnt sacrifices and grain offerings on it, or by offering tokens of peace on it, the LORD himself will punish us.</VERS>\n\t\t\t<VERS vnumber=\"24\"> We swear we have done this because we were worried that in the future your descendants would say to our descendants, 'What relationship do you have with the LORD God of Israel?</VERS>\n\t\t\t<VERS vnumber=\"25\"> The LORD made the Jordan a boundary between us and you Reubenites and Gadites. You have no right to worship the LORD.' In this way your descendants might cause our descendants to stop obeying the LORD.</VERS>\n\t\t\t<VERS vnumber=\"26\"> So we decided to build this altar, not for burnt offerings and sacrifices,</VERS>\n\t\t\t<VERS vnumber=\"27\"> but as a reminder to us and you, and to our descendants who follow us, that we will honor the LORD in his very presence with burnt offerings, sacrifices, and tokens of peace. Then in the future your descendants will not be able to say to our descendants, 'You have no right to worship the LORD.'</VERS>\n\t\t\t<VERS vnumber=\"28\"> We said, 'If in the future they say such a thing to us or to our descendants, we will reply, \"See the model of the LORD's altar that our ancestors made, not for burnt offerings or sacrifices, but as a reminder to us and you.\"'</VERS>\n\t\t\t<VERS vnumber=\"29\"> Far be it from us to rebel against the LORD by turning back today from following after the LORD by building an altar for burnt offerings, sacrifices, and tokens of peace aside from the altar of the LORD our God located in front of his dwelling place!\"</VERS>\n\t\t\t<VERS vnumber=\"30\"> When Phinehas the priest and the community leaders and clan leaders who accompanied him heard the defense of the Reubenites, Gadites, and the Manassehites, they were satisfied.</VERS>\n\t\t\t<VERS vnumber=\"31\"> Phinehas, son of Eleazar, the priest, said to the Reubenites, Gadites, and the Manassehites, \"Today we know that the LORD is among us, because you have not disobeyed the LORD in this. Now you have rescued the Israelites from the LORD's judgment.\"</VERS>\n\t\t\t<VERS vnumber=\"32\"> Phinehas, son of Eleazar, the priest, and the leaders left the Reubenites and Gadites in the land of Gilead and reported back to the Israelites in the land of Canaan.</VERS>\n\t\t\t<VERS vnumber=\"33\"> The Israelites were satisfied with their report and gave thanks to God. They said nothing more about launching an attack to destroy the land in which the Reubenites and Gadites lived.</VERS>\n\t\t\t<VERS vnumber=\"34\"> The Reubenites and Gadites named the altar, \"Surely it is a Reminder to us that the LORD is God.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"23\">\n\t\t\t<VERS vnumber=\"1\"> A long time passed after the LORD made Israel secure from all their enemies, and Joshua was very old.</VERS>\n\t\t\t<VERS vnumber=\"2\"> So Joshua summoned all Israel, including the elders, rulers, judges, and leaders, and told them: \"I am very old.</VERS>\n\t\t\t<VERS vnumber=\"3\"> You saw everything the LORD your God did to all these nations on your behalf, for the LORD your God fights for you.</VERS>\n\t\t\t<VERS vnumber=\"4\"> See, I have parceled out to your tribes these remaining nations, from the Jordan to the Mediterranean Sea in the west, including all the nations I defeated.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The LORD your God will drive them out from before you and remove them, so you can occupy their land as the LORD your God promised you. </VERS>\n\t\t\t<VERS vnumber=\"6\"> Be very strong! Carefully obey all that is written in the law scroll of Moses so you won't swerve from it to the right or the left,</VERS>\n\t\t\t<VERS vnumber=\"7\"> or associate with these nations that remain near you. You must not invoke or make solemn declarations by the names of their gods! You must not worship or bow down to them! </VERS>\n\t\t\t<VERS vnumber=\"8\"> But you must be loyal to the LORD your God, as you have been to this very day.</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"The LORD drove out from before you great and mighty nations; no one has been able to resist you to this very day. </VERS>\n\t\t\t<VERS vnumber=\"10\"> One of you makes a thousand run away, for the LORD your God fights for you as he promised you he would.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Watch yourselves carefully! Love the LORD your God!</VERS>\n\t\t\t<VERS vnumber=\"12\"> But if you ever turn away and make alliances with these nations that remain near you, and intermarry with them and establish friendly relations with them,</VERS>\n\t\t\t<VERS vnumber=\"13\"> know for certain that the LORD our God will no longer drive out these nations from before you. They will trap and ensnare you; they will be a whip that tears your sides and thorns that blind your eyes until you disappear from this good land the LORD your God gave you.</VERS>\n\t\t\t<VERS vnumber=\"14\"> \"Look, today I am about to die. You know with all your heart and being that not even one of all the faithful promises the LORD your God made to you is left unfulfilled; every one was realized, not one promise is unfulfilled!</VERS>\n\t\t\t<VERS vnumber=\"15\"> But in the same way every faithful promise the LORD your God made to you has been realized, it is just as certain, if you disobey, that the LORD will bring on you every judgment until he destroys you from this good land which the LORD your God gave you. </VERS>\n\t\t\t<VERS vnumber=\"16\"> If you violate the covenantal laws of the LORD your God which he commanded you to keep, and follow, worship, and bow down to other gods, the LORD will be very angry with you and you will disappear quickly from the good land which he gave to you.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"24\">\n\t\t\t<VERS vnumber=\"1\"> Joshua assembled all the Israelite tribes at Shechem. He summoned Israel's elders, rulers, judges, and leaders, and they appeared before God.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Joshua told all the people, \"Here is what the LORD God of Israel says: 'In the distant past your ancestors lived beyond the Euphrates River, including Terah the father of Abraham and Nahor. They worshiped other gods, </VERS>\n\t\t\t<VERS vnumber=\"3\"> but I took your father Abraham from beyond the Euphrates and brought him into the entire land of Canaan. I made his descendants numerous; I gave him Isaac, </VERS>\n\t\t\t<VERS vnumber=\"4\"> and to Isaac I gave Jacob and Esau. To Esau I assigned Mount Seir, while Jacob and his sons went down to Egypt. </VERS>\n\t\t\t<VERS vnumber=\"5\"> I sent Moses and Aaron, and I struck Egypt down when I intervened in their land. Then I brought you out. </VERS>\n\t\t\t<VERS vnumber=\"6\"> When I brought your fathers out of Egypt, you arrived at the sea. The Egyptians chased your fathers with chariots and horsemen to the Red Sea.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Your fathers cried out for help to the LORD; he made the area between you and the Egyptians dark, and then drowned them in the sea. You witnessed with your very own eyes what I did in Egypt. You lived in the wilderness for a long time.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Then I brought you to the land of the Amorites who lived east of the Jordan. They fought with you, but I handed them over to you; you conquered their land and I destroyed them from before you. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Balak son of Zippor, king of Moab, launched an attack against Israel. He summoned Balaam son of Beor to call down judgment on you. </VERS>\n\t\t\t<VERS vnumber=\"10\"> I refused to respond to Balaam; he kept prophesying good things about you, and I rescued you from his power.</VERS>\n\t\t\t<VERS vnumber=\"11\"> You crossed the Jordan and came to Jericho. The leaders of Jericho, as well as the Amorites, Perizzites, Canaanites, Hittites, Girgashites, Hivites, and Jebusites, fought with you, but I handed them over to you. </VERS>\n\t\t\t<VERS vnumber=\"12\"> I sent terror ahead of you to drive out before you the two Amorite kings. I gave you the victory; it was not by your swords or bows.</VERS>\n\t\t\t<VERS vnumber=\"13\"> I gave you a land in which you had not worked hard; you took up residence in cities you did not build and you are eating the produce of vineyards and olive groves you did not plant.'</VERS>\n\t\t\t<VERS vnumber=\"14\"> Now obey the LORD and worship him with integrity and loyalty. Put aside the gods your ancestors worshiped beyond the Euphrates and in Egypt and worship the LORD. </VERS>\n\t\t\t<VERS vnumber=\"15\"> If you have no desire to worship the LORD, choose today whom you will worship, whether it be the gods whom your ancestors worshiped beyond the Euphrates, or the gods of the Amorites in whose land you are living. But I and my family will worship the LORD!\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> The people responded, \"Far be it from us to abandon the LORD so we can worship other gods! </VERS>\n\t\t\t<VERS vnumber=\"17\"> For the LORD our God took us and our fathers out of slavery in the land of Egypt and performed these awesome miracles before our very eyes. He continually protected us as we traveled and when we passed through nations.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The LORD drove out from before us all the nations, including the Amorites who lived in the land. So we too will worship the LORD, for he is our God!\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> Joshua warned the people, \"You will not keep worshiping the LORD, for he is a holy God. He is a jealous God who will not forgive your rebellion or your sins. </VERS>\n\t\t\t<VERS vnumber=\"20\"> If you abandon the LORD and worship foreign gods, he will turn against you; he will bring disaster on you and destroy you, though he once treated you well.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> The people said to Joshua, \"No! We really will worship the LORD!\" </VERS>\n\t\t\t<VERS vnumber=\"22\"> Joshua said to the people, \"Do you agree to be witnesses against yourselves that you have chosen to worship the LORD?\" They replied, \"We are witnesses!\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> Joshua said, \"Now put aside the foreign gods that are among you and submit to the LORD God of Israel.\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> The people said to Joshua, \"We will worship the LORD our God and obey him.\"</VERS>\n\t\t\t<VERS vnumber=\"25\"> That day Joshua drew up an agreement for the people, and he established rules and regulations for them in Shechem. </VERS>\n\t\t\t<VERS vnumber=\"26\"> Joshua wrote these words in the Law Scroll of God. He then took a large stone and set it up there under the oak tree near the LORD's shrine.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Joshua said to all the people, \"Look, this stone will be a witness against you, for it has heard everything the LORD said to us. It will be a witness against you if you deny your God.\" </VERS>\n\t\t\t<VERS vnumber=\"28\"> When Joshua dismissed the people, they went to their allotted portions of land.</VERS>\n\t\t\t<VERS vnumber=\"29\"> After all this Joshua son of Nun, the LORD's servant, died at the age of one hundred ten. </VERS>\n\t\t\t<VERS vnumber=\"30\"> They buried him in his allotted territory in Timnath Serah in the hill country of Ephraim, north of Mount Gaash. </VERS>\n\t\t\t<VERS vnumber=\"31\"> Israel worshiped the LORD throughout Joshua's lifetime and as long as the elderly men who outlived him remained alive. These men had experienced firsthand everything the LORD had done for Israel.</VERS>\n\t\t\t<VERS vnumber=\"32\"> The bones of Joseph, which the Israelites had brought up from Egypt, were buried at Shechem in the part of the field that Jacob bought from the sons of Hamor, the father of Shechem, for one hundred pieces of money. So it became the inheritance of the tribe of Joseph.</VERS>\n\t\t\t<VERS vnumber=\"33\"> Eleazar son of Aaron died, and they buried him in Gibeah in the hill country of Ephraim, where his son Phinehas had been assigned land.</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"7\" bname=\"Judges\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> After Joshua died, the Israelites asked the LORD, \"Who should lead the invasion against the Canaanites and launch the attack?\"</VERS>\n\t\t\t<VERS vnumber=\"2\"> The LORD said, \"The men of Judah should take the lead. Be sure of this! I am handing the land over to them.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> The men of Judah said to their relatives, the men of Simeon, \"Invade our allotted land with us and help us attack the Canaanites. Then we will go with you into your allotted land.\" So the men of Simeon went with them.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The men of Judah attacked, and the LORD handed the Canaanites and Perizzites over to them. They killed ten thousand men at Bezek. </VERS>\n\t\t\t<VERS vnumber=\"5\"> They met Adoni-Bezek at Bezek and fought him. They defeated the Canaanites and Perizzites. </VERS>\n\t\t\t<VERS vnumber=\"6\"> When Adoni-Bezek ran away, they chased him and captured him. Then they cut off his thumbs and big toes.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Adoni-Bezek said, \"Seventy kings, with thumbs and big toes cut off, used to lick up food scraps under my table. God has repaid me for what I did to them.\" They brought him to Jerusalem, where he died. </VERS>\n\t\t\t<VERS vnumber=\"8\"> The men of Judah attacked Jerusalem and captured it. They put the sword to it and set the city on fire.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Later the men of Judah went down to attack the Canaanites living in the hill country, the Negev, and the lowlands.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The men of Judah attacked the Canaanites living in Hebron. (Hebron used to be called Kiriath Arba.) They killed Sheshai, Ahiman, and Talmai.</VERS>\n\t\t\t<VERS vnumber=\"11\"> From there they attacked the people of Debir. (Debir used to be called Kiriath Sepher.) </VERS>\n\t\t\t<VERS vnumber=\"12\"> Caleb said, \"To the man who attacks and captures Kiriath Sepher I will give my daughter Acsah as a wife.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> When Othniel son of Kenaz, Caleb's younger brother, captured it, Caleb gave him his daughter Acsah as a wife.</VERS>\n\t\t\t<VERS vnumber=\"14\"> One time Acsah came and charmed her father so she could ask him for some land. When she got down from her donkey, Caleb said to her, \"What would you like?\" </VERS>\n\t\t\t<VERS vnumber=\"15\"> She answered, \"Please give me a special present. Since you have given me land in the Negev, now give me springs of water.\" So Caleb gave her both the upper and lower springs.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Now the descendants of the Kenite, Moses' father-in-law, went up with the people of Judah from the City of Date Palm Trees to Arad in the desert of Judah, located in the Negev. They went and lived with the people of Judah.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The men of Judah went with their brothers the men of Simeon and defeated the Canaanites living in Zephath. They wiped out Zephath. So people now call the city Hormah.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The men of Judah captured Gaza, Ashkelon, Ekron, and the territory surrounding each of these cities.</VERS>\n\t\t\t<VERS vnumber=\"19\"> The LORD was with the men of Judah. They conquered the hill country, but they could not conquer the people living in the coastal plain, because they had chariots with iron-rimmed wheels.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Caleb received Hebron, just as Moses had promised. He drove out the three Anakites. </VERS>\n\t\t\t<VERS vnumber=\"21\"> The men of Benjamin, however, did not conquer the Jebusites living in Jerusalem. The Jebusites live with the people of Benjamin in Jerusalem to this very day.</VERS>\n\t\t\t<VERS vnumber=\"22\"> When the men of Joseph attacked Bethel, the LORD was with them. </VERS>\n\t\t\t<VERS vnumber=\"23\"> When the men of Joseph spied out Bethel (it used to be called Luz),</VERS>\n\t\t\t<VERS vnumber=\"24\"> the spies spotted a man leaving the city. They said to him, \"If you show us a secret entrance into the city, we will reward you.\" </VERS>\n\t\t\t<VERS vnumber=\"25\"> He showed them a secret entrance into the city, and they put the city to the sword. But they let the man and his extended family leave safely.</VERS>\n\t\t\t<VERS vnumber=\"26\"> He moved to Hittite country and built a city. He named it Luz, and it has kept that name to this very day.</VERS>\n\t\t\t<VERS vnumber=\"27\"> The men of Manasseh did not conquer Beth Shan, Taanach, or their surrounding towns. Nor did they conquer the people living in Dor, Ibleam, Megiddo or their surrounding towns. The Canaanites managed to remain in those areas.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Whenever Israel was strong militarily, they forced the Canaanites to do hard labor, but they never totally conquered them.</VERS>\n\t\t\t<VERS vnumber=\"29\"> The men of Ephraim did not conquer the Canaanites living in Gezer. The Canaanites lived among them in Gezer.</VERS>\n\t\t\t<VERS vnumber=\"30\"> The men of Zebulun did not conquer the people living in Kitron and Nahalol. The Canaanites lived among them and were forced to do hard labor.</VERS>\n\t\t\t<VERS vnumber=\"31\"> The men of Asher did not conquer the people living in Acco or Sidon, nor did they conquer Ahlab, Aczib, Helbah, Aphek, or Rehob.</VERS>\n\t\t\t<VERS vnumber=\"32\"> The people of Asher live among the Canaanites residing in the land because they did not conquer them.</VERS>\n\t\t\t<VERS vnumber=\"33\"> The men of Naphtali did not conquer the people living in Beth Shemesh or Beth Anath. They live among the Canaanites residing in the land. The Canaanites living in Beth Shemesh and Beth Anath were forced to do hard labor for them.</VERS>\n\t\t\t<VERS vnumber=\"34\"> The Amorites forced the people of Dan to live in the hill country. They did not allow them to live in the coastal plain. </VERS>\n\t\t\t<VERS vnumber=\"35\"> The Amorites managed to remain in Har Heres, Aijalon, and Shaalbim. Whenever the tribe of Joseph was strong militarily, the Amorites were forced to do hard labor. </VERS>\n\t\t\t<VERS vnumber=\"36\"> The border of Amorite territory ran from the Scorpion Ascent to Sela and on up.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> The LORD's angelic messenger went up from Gilgal to Bokim. He said, \"I brought you up from Egypt and led you into the land I had solemnly promised to give to your ancestors. I said, 'I will never break my agreement with you, </VERS>\n\t\t\t<VERS vnumber=\"2\"> but you must not make an agreement with the people who live in this land. You should tear down the altars where they worship.' But you have disobeyed me. Why would you do such a thing?</VERS>\n\t\t\t<VERS vnumber=\"3\"> At that time I also warned you, 'If you disobey, I will not drive out the Canaanites before you. They will ensnare you and their gods will lure you away.'\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> When the LORD's messenger finished speaking these words to all the Israelites, the people wept loudly.</VERS>\n\t\t\t<VERS vnumber=\"5\"> They named that place Bokim and offered sacrifices to the LORD there.</VERS>\n\t\t\t<VERS vnumber=\"6\"> When Joshua dismissed the people, the Israelites went to their allotted portions of territory, intending to take possession of the land. </VERS>\n\t\t\t<VERS vnumber=\"7\"> The people worshiped the LORD throughout Joshua's lifetime and as long as the elderly men who outlived him remained alive. These men had witnessed all the great things the LORD had done for Israel.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Joshua son of Nun, the LORD's servant, died at the age of one hundred ten.</VERS>\n\t\t\t<VERS vnumber=\"9\"> The people buried him in his allotted land in Timnath Heres in the hill country of Ephraim, north of Mount Gaash. </VERS>\n\t\t\t<VERS vnumber=\"10\"> That entire generation passed away; a new generation grew up that had not personally experienced the LORD's presence or seen what he had done for Israel.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The Israelites did evil before the LORD by worshiping the Baals. </VERS>\n\t\t\t<VERS vnumber=\"12\"> They abandoned the LORD God of their ancestors who brought them out of the land of Egypt. They followed other gods, the gods of the nations who lived around them. They worshiped them and made the LORD angry.</VERS>\n\t\t\t<VERS vnumber=\"13\"> They abandoned the LORD and worshiped Baal and the Ashtars.</VERS>\n\t\t\t<VERS vnumber=\"14\"> The LORD was furious with Israel and handed them over to robbers who plundered them. He turned them over to their enemies who lived around them. They could not withstand their enemies' attacks.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Whenever they went out to fight, the LORD did them harm, just as he had warned and solemnly vowed he would do. They suffered greatly.</VERS>\n\t\t\t<VERS vnumber=\"16\"> The LORD raised up leaders who delivered them from these robbers.</VERS>\n\t\t\t<VERS vnumber=\"17\"> But they did not obey their leaders. Instead they prostituted themselves to other gods and worshiped them. They quickly turned aside from the path their ancestors had walked. Their ancestors had obeyed the LORD's commands, but they did not.</VERS>\n\t\t\t<VERS vnumber=\"18\"> When the LORD raised up leaders for them, the LORD was with each leader and delivered the people from their enemies while the leader remained alive. The LORD felt sorry for them when they cried out in agony because of what their harsh oppressors did to them.</VERS>\n\t\t\t<VERS vnumber=\"19\"> When a leader died, the next generation would again act more wickedly than the previous one. They would follow after other gods, worshiping them and bowing down to them. They did not give up their practices or their stubborn ways.</VERS>\n\t\t\t<VERS vnumber=\"20\"> The LORD was furious with Israel. He said, \"This nation has violated the terms of the agreement I made with their ancestors by disobeying me.</VERS>\n\t\t\t<VERS vnumber=\"21\"> So I will no longer remove before them any of the nations that Joshua left unconquered when he died.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Joshua left those nations to test Israel. I wanted to see whether or not the people would carefully walk in the path marked out by the LORD, as their ancestors were careful to do.\" </VERS>\n\t\t\t<VERS vnumber=\"23\"> This is why the LORD permitted these nations to remain and did not conquer them immediately; he did not hand them over to Joshua.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> These were the nations the LORD permitted to remain so he could use them to test Israel, he wanted to test all those who had not experienced battle against the Canaanites.</VERS>\n\t\t\t<VERS vnumber=\"2\"> He left those nations simply because he wanted to teach the subsequent generations of Israelites, who had not experienced the earlier battles, how to conduct holy war.</VERS>\n\t\t\t<VERS vnumber=\"3\"> These were the nations: the five lords of the Philistines, all the Canaanites, the Sidonians, and the Hivites living in Mount Lebanon, from Mount Baal Hermon to Lebo-Hamath.</VERS>\n\t\t\t<VERS vnumber=\"4\"> They were left to test Israel, so the LORD would know if his people would obey the commands he gave their ancestors through Moses.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The Israelites lived among the Canaanites, Hittites, Amorites, Perizzites, Hivites, and Jebusites.</VERS>\n\t\t\t<VERS vnumber=\"6\"> They took the Canaanites' daughters as wives and gave their daughters to the Canaanites; they worshiped their gods as well.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The Israelites did evil in the LORD's sight. They forgot the LORD their God and worshiped the Baals and the Asherahs.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The LORD was furious with Israel and turned them over to King Cushan-Rishathaim of Aram-Naharaim. They were Cushan-Rishathaim's subjects for eight years. </VERS>\n\t\t\t<VERS vnumber=\"9\"> When the Israelites cried out for help to the LORD, he raised up a deliverer for the Israelites who rescued them. His name was Othniel son of Kenaz, Caleb's younger brother.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The LORD's spirit empowered him and he led Israel. When he went to do battle, the LORD handed over to him King Cushan-Rishathaim of Aram and he overpowered him.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The land had rest for forty years; then Othniel son of Kenaz died.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The Israelites again did evil in the LORD's sight. The LORD gave King Eglon of Moab control over Israel because they had done evil in the LORD's sight. </VERS>\n\t\t\t<VERS vnumber=\"13\"> Eglon formed alliances with the Ammonites and Amalekites. He came and defeated Israel, and they seized the City of Date Palm Trees. </VERS>\n\t\t\t<VERS vnumber=\"14\"> The Israelites were subject to King Eglon of Moab for eighteen years.</VERS>\n\t\t\t<VERS vnumber=\"15\"> When the Israelites cried out for help to the LORD, he raised up a deliverer for them. His name was Ehud son of Gera the Benjaminite, a left-handed man. The Israelites sent him to King Eglon of Moab with their tribute payment.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Ehud made himself a sword, it had two edges and was eighteen inches long. He strapped it under his coat on his right thigh.</VERS>\n\t\t\t<VERS vnumber=\"17\"> He brought the tribute payment to King Eglon of Moab. (Now Eglon was a very fat man.)</VERS>\n\t\t\t<VERS vnumber=\"18\"> After Ehud brought the tribute payment, he dismissed the people who had carried it.</VERS>\n\t\t\t<VERS vnumber=\"19\"> But he went back once he reached the carved images at Gilgal. He said to Eglon, \"I have a secret message for you, O king.\" Eglon said, \"Be quiet!\" All his attendants left. </VERS>\n\t\t\t<VERS vnumber=\"20\"> When Ehud approached him, he was sitting in his well-ventilated upper room all by himself. Ehud said, \"I have a message from God for you.\" When Eglon rose up from his seat,</VERS>\n\t\t\t<VERS vnumber=\"21\"> Ehud reached with his left hand, pulled the sword from his right thigh, and drove it into Eglon's belly. </VERS>\n\t\t\t<VERS vnumber=\"22\"> The handle went in after the blade, and the fat closed around the blade, for Ehud did not pull the sword out of his belly.</VERS>\n\t\t\t<VERS vnumber=\"23\"> As Ehud went out into the vestibule, he closed the doors of the upper room behind him and locked them.</VERS>\n\t\t\t<VERS vnumber=\"24\"> When Ehud had left, Eglon's servants came and saw the locked doors of the upper room. They said, \"He must be relieving himself in the well-ventilated inner room.\"</VERS>\n\t\t\t<VERS vnumber=\"25\"> They waited so long they were embarrassed, but he still did not open the doors of the upper room. Finally they took the key and opened the doors. Right before their eyes was their master, sprawled out dead on the floor!</VERS>\n\t\t\t<VERS vnumber=\"26\"> Now Ehud had escaped while they were delaying. When he passed the carved images, he escaped to Seirah.</VERS>\n\t\t\t<VERS vnumber=\"27\"> When he reached Seirah, he blew a trumpet in the Ephraimite hill country. The Israelites went down with him from the hill country, with Ehud in the lead.</VERS>\n\t\t\t<VERS vnumber=\"28\"> He said to them, \"Follow me, for the LORD is about to defeat your enemies, the Moabites!\" They followed him, captured the fords of the Jordan River opposite Moab, and did not let anyone cross. </VERS>\n\t\t\t<VERS vnumber=\"29\"> That day they killed about ten thousand Moabites, all strong, capable warriors; not one escaped.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Israel humiliated Moab that day, and the land had rest for eighty years.</VERS>\n\t\t\t<VERS vnumber=\"31\"> After Ehud came Shamgar son of Anath; he killed six hundred Philistines with an oxgoad and, like Ehud, delivered Israel.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\"> The Israelites again did evil in the LORD's sight after Ehud's death. </VERS>\n\t\t\t<VERS vnumber=\"2\"> The LORD turned them over to King Jabin of Canaan, who ruled in Hazor. The general of his army was Sisera, who lived in Harosheth Haggoyim.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The Israelites cried out for help to the LORD, because Sisera had nine hundred chariots with iron-rimmed wheels, and he cruelly oppressed the Israelites for twenty years.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Now Deborah, a prophetess, wife of Lappidoth, was leading Israel at that time. </VERS>\n\t\t\t<VERS vnumber=\"5\"> She would sit under the Date Palm Tree of Deborah between Ramah and Bethel in the Ephraimite hill country. The Israelites would come up to her to have their disputes settled.</VERS>\n\t\t\t<VERS vnumber=\"6\"> She summoned Barak son of Abinoam from Kedesh in Naphtali. She said to him, \"Is it not true that the LORD God of Israel is commanding you? Go, march to Mount Tabor! Take with you ten thousand men from Naphtali and Zebulun! </VERS>\n\t\t\t<VERS vnumber=\"7\"> I will bring Sisera, the general of Jabin's army, to you at the Kishon River, along with his chariots and huge army. I will hand him over to you.\" </VERS>\n\t\t\t<VERS vnumber=\"8\"> Barak said to her, \"If you go with me, I will go. But if you do not go with me, I will not go.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> She said, \"I will indeed go with you. But you will not gain fame on the expedition you are undertaking, for the LORD will turn Sisera over to a woman.\" Deborah got up and went with Barak to Kedesh. </VERS>\n\t\t\t<VERS vnumber=\"10\"> Barak summoned men from Zebulun and Naphtali to Kedesh. Ten thousand men followed him; Deborah went up with him as well. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Now Heber the Kenite had moved away from the Kenites, the descendants of Hobab, Moses' father-in-law. He lived near the great tree in Zaanannim near Kedesh.</VERS>\n\t\t\t<VERS vnumber=\"12\"> When Sisera heard that Barak son of Abinoam had gone up to Mount Tabor, </VERS>\n\t\t\t<VERS vnumber=\"13\"> he ordered all his chariotry, nine hundred chariots with iron-rimmed wheels, and all the troops he had with him to go from Harosheth-Haggoyim to the River Kishon.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Deborah said to Barak, \"Spring into action, for this is the day the LORD is handing Sisera over to you! Has the LORD not taken the lead?\" Barak quickly went down from Mount Tabor with ten thousand men following him. </VERS>\n\t\t\t<VERS vnumber=\"15\"> The LORD routed Sisera, all his chariotry, and all his army with the edge of the sword. Sisera jumped out of his chariot and ran away on foot. </VERS>\n\t\t\t<VERS vnumber=\"16\"> Now Barak chased the chariots and the army all the way to Harosheth Haggoyim. Sisera's whole army died by the edge of the sword; not even one survived!</VERS>\n\t\t\t<VERS vnumber=\"17\"> Now Sisera ran away on foot to the tent of Jael, wife of Heber the Kenite, for King Jabin of Hazor and the family of Heber the Kenite had made a peace treaty.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Jael came out to welcome Sisera. She said to him, \"Stop and rest, my lord. Stop and rest with me. Don't be afraid.\" So Sisera stopped to rest in her tent, and she put a blanket over him. </VERS>\n\t\t\t<VERS vnumber=\"19\"> He said to her, \"Give me a little water to drink, because I'm thirsty.\" She opened a goatskin container of milk and gave him some milk to drink. Then she covered him up again.</VERS>\n\t\t\t<VERS vnumber=\"20\"> He said to her, \"Stand watch at the entrance to the tent. If anyone comes along and asks you, 'Is there a man here?' say 'No.'\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> Then Jael wife of Heber took a tent peg in one hand and a hammer in the other. She crept up on him, drove the tent peg through his temple into the ground while he was asleep from exhaustion, and he died. </VERS>\n\t\t\t<VERS vnumber=\"22\"> Now Barak was chasing Sisera. Jael went out to welcome him. She said to him, \"Come here and I will show you the man you are searching for.\" He went with her into the tent, and there he saw Sisera sprawled out dead with the tent peg in his temple.</VERS>\n\t\t\t<VERS vnumber=\"23\"> That day God humiliated King Jabin of Canaan before the Israelites.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Israel's power continued to overwhelm King Jabin of Canaan until they did away with him.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"5\">\n\t\t\t<VERS vnumber=\"1\"> On that day Deborah and Barak son of Abinoam sang this victory song:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"When the leaders took the lead in Israel, When the people answered the call to war, Praise the LORD!</VERS>\n\t\t\t<VERS vnumber=\"3\"> Hear, O kings! Pay attention, O rulers! I will sing to the LORD! I will sing to the LORD God of Israel!</VERS>\n\t\t\t<VERS vnumber=\"4\"> O LORD, when you departed from Seir, when you marched from Edom's plains, the earth shook, the heavens poured down, the clouds poured down rain.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The mountains trembled before the LORD, the God of Sinai; before the LORD God of Israel.</VERS>\n\t\t\t<VERS vnumber=\"6\"> In the days of Shamgar son of Anath, in the days of Jael caravans disappeared; travelers had to go on winding side roads.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Warriors were scarce, they were scarce in Israel, until you arose, Deborah, until you arose as a motherly protector in Israel.</VERS>\n\t\t\t<VERS vnumber=\"8\"> God chose new leaders, then fighters appeared in the city gates; but, I swear, not a shield or spear could be found, among forty military units in Israel.</VERS>\n\t\t\t<VERS vnumber=\"9\"> My heart went out to Israel's leaders, to the people who answered the call to war. Praise the LORD!</VERS>\n\t\t\t<VERS vnumber=\"10\"> You who ride on light-colored female donkeys, who sit on saddle blankets, you who walk on the road, pay attention!</VERS>\n\t\t\t<VERS vnumber=\"11\"> Hear the sound of those who divide the sheep among the watering places; there they tell of the Lord's victorious deeds, the victorious deeds of his warriors in Israel. Then the LORD's people went down to the city gates,</VERS>\n\t\t\t<VERS vnumber=\"12\"> Wake up, wake up, Deborah! Wake up, wake up, sing a song! Get up, Barak! Capture your prisoners of war, son of Abinoam!</VERS>\n\t\t\t<VERS vnumber=\"13\"> Then the survivors came down to the mighty ones; the LORD's people came down to me as warriors.</VERS>\n\t\t\t<VERS vnumber=\"14\"> They came from Ephraim, who uprooted Amalek, they follow after you, Benjamin, with your soldiers. From Makir leaders came down, from Zebulun came the ones who march carrying an officer's staff.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Issachar's leaders were with Deborah, the men of Issachar supported Barak; into the valley they were sent under Barak's command. Among the clans of Reuben there was intense heart searching.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Why do you remain among the sheepfolds, listening to the shepherds playing their pipes for their flocks? As for the clans of Reuben, there was intense searching of heart.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Gilead stayed put beyond the Jordan River. As for Dan, why did he seek temporary employment in the shipyards? Asher remained on the seacoast, he stayed by his harbors.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The men of Zebulun were not concerned about their lives; Naphtali charged on to the battlefields.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Kings came, they fought; the kings of Canaan fought, at Taanach by the waters of Megiddo, but they took no silver as plunder.</VERS>\n\t\t\t<VERS vnumber=\"20\"> From the sky the stars fought, from their paths in the heavens they fought against Sisera.</VERS>\n\t\t\t<VERS vnumber=\"21\"> The Kishon River carried them off; the river confronted them, the Kishon River. Step on the necks of the strong!</VERS>\n\t\t\t<VERS vnumber=\"22\"> The horses' hooves pounded the ground; the stallions galloped madly.</VERS>\n\t\t\t<VERS vnumber=\"23\"> 'Call judgment down on Meroz,' says the LORD's angelic messenger; 'Be sure to call judgment down on those who live there, because they did not come to help in the LORD's battle, to help in the LORD's battle against the warriors.'</VERS>\n\t\t\t<VERS vnumber=\"24\"> The most rewarded of women should be Jael, the wife of Heber the Kenite! She should be the most rewarded of women who live in tents.</VERS>\n\t\t\t<VERS vnumber=\"25\"> He asked for water, and she gave him milk; in a bowl fit for a king, she served him curds.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Her left hand reached for the tent peg, her right hand for the workmen's hammer. She \"hammered\" Sisera, she shattered his skull, she smashed his head, she drove the tent peg through his temple.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Between her feet he collapsed, he fell limp and was lifeless; between her feet he collapsed and fell limp, in the spot where he collapsed, there he fell limp, violently murdered!</VERS>\n\t\t\t<VERS vnumber=\"28\"> Through the window she looked; Sisera's mother cried out through the lattice: 'Why is his chariot so slow to return? Why are the hoofbeats of his chariot-horses delayed?'</VERS>\n\t\t\t<VERS vnumber=\"29\"> The wisest of her ladies answer; indeed she even thinks to herself,</VERS>\n\t\t\t<VERS vnumber=\"30\"> 'No doubt they are gathering and dividing the plunder, a girl or two for each man to rape! Sisera is grabbing up colorful cloth, he is grabbing up colorful embroidered cloth, two pieces of colorful embroidered cloth, for the neck of the plunderer!'</VERS>\n\t\t\t<VERS vnumber=\"31\"> May all your enemies perish like this, O LORD! But may those who love you shine like the rising sun at its brightest!\" And the land had rest for forty years.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"6\">\n\t\t\t<VERS vnumber=\"1\"> The Israelites did evil in the LORD's sight, so the LORD turned them over to Midian for seven years. </VERS>\n\t\t\t<VERS vnumber=\"2\"> The Midianites overwhelmed Israel. Because of Midian the Israelites made shelters for themselves in the hills, as well as caves and strongholds. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Whenever the Israelites planted their crops, the Midianites, Amalekites, and the people from the east would attack them.</VERS>\n\t\t\t<VERS vnumber=\"4\"> They invaded the land and devoured its crops all the way to Gaza. They left nothing for the Israelites to eat, and they took away the sheep, oxen, and donkeys. </VERS>\n\t\t\t<VERS vnumber=\"5\"> When they invaded with their cattle and tents, they were as thick as locusts. Neither they nor their camels could be counted. They came to devour the land. </VERS>\n\t\t\t<VERS vnumber=\"6\"> Israel was so severely weakened by Midian that the Israelites cried out to the LORD for help.</VERS>\n\t\t\t<VERS vnumber=\"7\"> When the Israelites cried out to the LORD for help because of Midian,</VERS>\n\t\t\t<VERS vnumber=\"8\"> he sent a prophet to the Israelites. He said to them, \"This is what the LORD God of Israel says: 'I brought you up from Egypt and took you out of that place of slavery.</VERS>\n\t\t\t<VERS vnumber=\"9\"> I rescued you from Egypt's power and from the power of all who oppressed you. I drove them out before you and gave their land to you. </VERS>\n\t\t\t<VERS vnumber=\"10\"> I said to you, \"I am the LORD your God! Do not worship the gods of the Amorites, in whose land you are now living!\" But you have disobeyed me.'\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> The LORD's angelic messenger came and sat down under the oak tree in Ophrah owned by Joash the Abiezrite. He arrived while Joash's son Gideon was threshing wheat in a winepress so he could hide it from the Midianites.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The LORD's messenger appeared and said to him, \"The LORD is with you, courageous warrior!\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> Gideon said to him, \"Pardon me, but if the LORD is with us, why has such disaster overtaken us? Where are all his miraculous deeds our ancestors told us about? They said, 'Did the LORD not bring us up from Egypt?' But now the LORD has abandoned us and handed us over to Midian.\" </VERS>\n\t\t\t<VERS vnumber=\"14\"> Then the LORD himself turned to him and said, \"You have the strength. Deliver Israel from the power of the Midianites! Have I not sent you?\" </VERS>\n\t\t\t<VERS vnumber=\"15\"> Gideon said to him, \"But Lord, how can I deliver Israel? Just look! My clan is the weakest in Manasseh, and I am the youngest in my family.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> The LORD said to him, \"Ah, but I will be with you! You will strike down the whole Midianite army.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> Gideon said to him, \"If you really are pleased with me, then give me a sign as proof that it is really you speaking with me. </VERS>\n\t\t\t<VERS vnumber=\"18\"> Do not leave this place until I come back with a gift and present it to you.\" The LORD said, \"I will stay here until you come back.\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> Gideon went and prepared a young goat, along with unleavened bread made from an ephah of flour. He put the meat in a basket and the broth in a pot. He brought the food to him under the oak tree and presented it to him. </VERS>\n\t\t\t<VERS vnumber=\"20\"> God's messenger said to him, \"Put the meat and unleavened bread on this rock, and pour out the broth.\" Gideon did as instructed.</VERS>\n\t\t\t<VERS vnumber=\"21\"> The LORD's messenger touched the meat and the unleavened bread with the tip of his staff. Fire flared up from the rock and consumed the meat and unleavened bread. The LORD's messenger then disappeared.</VERS>\n\t\t\t<VERS vnumber=\"22\"> When Gideon realized that it was the LORD's messenger, he said, \"Oh no! Master, LORD! I have seen the LORD's messenger face to face!\" </VERS>\n\t\t\t<VERS vnumber=\"23\"> The LORD said to him, \"You are safe! Do not be afraid! You are not going to die!\" </VERS>\n\t\t\t<VERS vnumber=\"24\"> Gideon built an altar for the LORD there, and named it \"The LORD is on friendly terms with me.\" To this day it is still there in Ophrah of the Abiezrites.</VERS>\n\t\t\t<VERS vnumber=\"25\"> That night the LORD said to him, \"Take the bull from your father's herd, as well as a second bull, one that is seven years old. Pull down your father's Baal altar and cut down the nearby Asherah pole.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Then build an altar for the LORD your God on the top of this stronghold according to the proper pattern. Take the second bull and offer it as a burnt sacrifice on the wood from the Asherah pole that you cut down.\" </VERS>\n\t\t\t<VERS vnumber=\"27\"> So Gideon took ten of his servants and did just as the LORD had told him. He was too afraid of his father's family and the men of the city to do it in broad daylight, so he waited until nighttime.</VERS>\n\t\t\t<VERS vnumber=\"28\"> When the men of the city got up the next morning, they saw the Baal altar pulled down, the nearby Asherah pole cut down, and the second bull sacrificed on the newly built altar. </VERS>\n\t\t\t<VERS vnumber=\"29\"> They said to one another, \"Who did this?\" They investigated the matter thoroughly and concluded that Gideon son of Joash had done it. </VERS>\n\t\t\t<VERS vnumber=\"30\"> The men of the city said to Joash, \"Bring out your son, so we can execute him! He pulled down the Baal altar and cut down the nearby Asherah pole.\" </VERS>\n\t\t\t<VERS vnumber=\"31\"> But Joash said to all those who confronted him, \"Must you fight Baal's battles? Must you rescue him? Whoever takes up his cause will die by morning! If he really is a god, let him fight his own battles! After all, it was his altar that was pulled down.\"</VERS>\n\t\t\t<VERS vnumber=\"32\"> That very day Gideon's father named him Jerub-Baal, because he had said, \"Let Baal fight with him, for it was his altar that was pulled down.\"</VERS>\n\t\t\t<VERS vnumber=\"33\"> All the Midianites, Amalekites, and the people from the east assembled. They crossed the Jordan River and camped in the Jezreel Valley. </VERS>\n\t\t\t<VERS vnumber=\"34\"> The LORD's spirit took control of Gideon. He blew a trumpet, summoning the Abiezrites to follow him.</VERS>\n\t\t\t<VERS vnumber=\"35\"> He sent messengers throughout Manasseh and summoned them to follow him as well. He also sent messengers throughout Asher, Zebulun, and Naphtali, and they came up to meet him.</VERS>\n\t\t\t<VERS vnumber=\"36\"> Gideon said to God, \"If you really intend to use me to deliver Israel, as you promised, then give me a sign as proof.</VERS>\n\t\t\t<VERS vnumber=\"37\"> Look, I am putting a wool fleece on the threshing floor. If there is dew only on the fleece, and the ground around it is dry, then I will be sure that you will use me to deliver Israel, as you promised.\" </VERS>\n\t\t\t<VERS vnumber=\"38\"> The LORD did as he asked. When he got up the next morning, he squeezed the fleece, and enough dew dripped from it to fill a bowl.</VERS>\n\t\t\t<VERS vnumber=\"39\"> Gideon said to God, \"Please do not get angry at me, when I ask for just one more sign. Please allow me one more test with the fleece. This time make only the fleece dry, while the ground around it is covered with dew.\"</VERS>\n\t\t\t<VERS vnumber=\"40\"> That night God did as he asked. Only the fleece was dry and the ground around it was covered with dew.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"7\">\n\t\t\t<VERS vnumber=\"1\"> Jerub-Baal (that is, Gideon) and his men got up the next morning and camped near the spring of Harod. The Midianites were camped north of them near the hill of Moreh in the valley. </VERS>\n\t\t\t<VERS vnumber=\"2\"> The LORD said to Gideon, \"You have too many men for me to hand Midian over to you. Israel might brag, 'Our own strength has delivered us.'</VERS>\n\t\t\t<VERS vnumber=\"3\"> Now, announce to the men, 'Whoever is shaking with fear may turn around and leave Mount Gilead.'\" Twenty-two thousand men went home; ten thousand remained. </VERS>\n\t\t\t<VERS vnumber=\"4\"> The LORD spoke to Gideon again, \"There are still too many men. Bring them down to the water and I will thin the ranks some more. When I say, 'This one should go with you,' pick him to go; when I say, 'This one should not go with you,' do not take him.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> So he brought the men down to the water. Then the LORD said to Gideon, \"Separate those who lap the water as a dog laps from those who kneel to drink.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> Three hundred men lapped; the rest of the men kneeled to drink water. </VERS>\n\t\t\t<VERS vnumber=\"7\"> The LORD said to Gideon, \"With the three hundred men who lapped I will deliver the whole army and I will hand Midian over to you. The rest of the men should go home.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> The men who were chosen took supplies and their trumpets. Gideon sent all the men of Israel back to their homes; he kept only three hundred men. Now the Midianites were camped down below in the valley.</VERS>\n\t\t\t<VERS vnumber=\"9\"> That night the LORD said to Gideon, \"Get up! Attack the camp, for I am handing it over to you.</VERS>\n\t\t\t<VERS vnumber=\"10\"> But if you are afraid to attack, go down to the camp with Purah your servant</VERS>\n\t\t\t<VERS vnumber=\"11\"> and listen to what they are saying. Then you will be brave and attack the camp.\" So he went down with Purah his servant to where the sentries were guarding the camp.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Now the Midianites, Amalekites, and the people from the east covered the valley like a swarm of locusts. Their camels could not be counted; they were as innumerable as the sand on the seashore. </VERS>\n\t\t\t<VERS vnumber=\"13\"> When Gideon arrived, he heard a man telling another man about a dream he had. The man said, \"Look! I had a dream. I saw a stale cake of barley bread rolling into the Midianite camp. It hit a tent so hard it knocked it over and turned it upside down. The tent just collapsed.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> The other man said, \"Without a doubt this symbolizes the sword of Gideon son of Joash, the Israelite. God is handing Midian and all the army over to him.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> When Gideon heard the report of the dream and its interpretation, he praised God. Then he went back to the Israelite camp and said, \"Get up, for the LORD is handing the Midianite army over to you!\" </VERS>\n\t\t\t<VERS vnumber=\"16\"> He divided the three hundred men into three units. He gave them all trumpets and empty jars with torches inside them.</VERS>\n\t\t\t<VERS vnumber=\"17\"> He said to them, \"Watch me and do as I do. Watch closely! I am going to the edge of the camp. Do as I do! </VERS>\n\t\t\t<VERS vnumber=\"18\"> When I and all who are with me blow our trumpets, you also blow your trumpets all around the camp. Then say, 'For the LORD and for Gideon!'\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> Gideon took a hundred men to the edge of the camp at the beginning of the middle watch, just after they had changed the guards. They blew their trumpets and broke the jars they were carrying.</VERS>\n\t\t\t<VERS vnumber=\"20\"> All three units blew their trumpets and broke their jars. They held the torches in their left hand and the trumpets in their right. Then they yelled, \"A sword for the LORD and for Gideon!\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> They stood in order all around the camp. The whole army ran away; they shouted as they scrambled away.</VERS>\n\t\t\t<VERS vnumber=\"22\"> When the three hundred men blew their trumpets, the LORD caused the Midianites to attack one another with their swords throughout the camp. The army fled to Beth Shittah on the way to Zererah. They went to the border of Abel Meholah near Tabbath.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Israelites from Naphtali, Asher, and Manasseh answered the call and chased the Midianites.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Now Gideon sent messengers throughout the Ephraimite hill country who announced, \"Go down and head off the Midianites. Take control of the fords of the streams all the way to Beth Barah and the Jordan River.\" When all the Ephraimites had assembled, they took control of the fords all the way to Beth Barah and the Jordan River. </VERS>\n\t\t\t<VERS vnumber=\"25\"> They captured the two Midianite generals, Oreb and Zeeb. They executed Oreb on the rock of Oreb and Zeeb in the winepress of Zeeb. They chased the Midianites and brought the heads of Oreb and Zeeb to Gideon, who was now on the other side of the Jordan River.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"8\">\n\t\t\t<VERS vnumber=\"1\"> The Ephraimites said to him, \"Why have you done such a thing to us? You did not summon us when you went to fight the Midianites!\" They argued vehemently with him. </VERS>\n\t\t\t<VERS vnumber=\"2\"> He said to them, \"Now what have I accomplished compared to you? Even Ephraim's leftover grapes are better quality than Abiezer's harvest!</VERS>\n\t\t\t<VERS vnumber=\"3\"> It was to you that God handed over the Midianite generals, Oreb and Zeeb! What did I accomplish to rival that?\" When he said this, they calmed down.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Now Gideon and his three hundred men had crossed over the Jordan River, and even though they were exhausted, they were still chasing the Midianites.</VERS>\n\t\t\t<VERS vnumber=\"5\"> He said to the men of Succoth, \"Give some loaves of bread to the men who are following me, because they are exhausted. I am chasing Zebah and Zalmunna, the kings of Midian.\" </VERS>\n\t\t\t<VERS vnumber=\"6\"> The officials of Succoth said, \"You have not yet overpowered Zebah and Zalmunna. So why should we give bread to your army?\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> Gideon said, \"Since you will not help, after the LORD hands Zebah and Zalmunna over to me, I will thresh your skin with desert thorns and briers.\" </VERS>\n\t\t\t<VERS vnumber=\"8\"> He went up from there to Penuel and made the same request. The men of Penuel responded the same way the men of Succoth had.</VERS>\n\t\t\t<VERS vnumber=\"9\"> He also threatened the men of Penuel, warning, \"When I return victoriously, I will tear down this tower.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> Now Zebah and Zalmunna were in Karkor with their armies. There were about fifteen thousand survivors from the army of the eastern peoples; a hundred and twenty thousand sword-wielding soldiers had been killed.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Gideon went up the road of the nomads east of Nobah and Jogbehah and ambushed the surprised army.</VERS>\n\t\t\t<VERS vnumber=\"12\"> When Zebah and Zalmunna ran away, Gideon chased them and captured the two Midianite kings, Zebah and Zalmunna. He had surprised their entire army.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Gideon son of Joash returned from the battle by the pass of Heres. </VERS>\n\t\t\t<VERS vnumber=\"14\"> He captured a young man from Succoth and interrogated him. The young man wrote down for him the names of Succoth's officials and city leaders, seventy-seven men in all.</VERS>\n\t\t\t<VERS vnumber=\"15\"> He approached the men of Succoth and said, \"Look what I have! Zebah and Zalmunna! You insulted me, saying, 'You have not yet overpowered Zebah and Zalmunna. So why should we give bread to your exhausted men?'\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> He seized the leaders of the city, along with some desert thorns and briers; he then \"threshed\" the men of Succoth with them.</VERS>\n\t\t\t<VERS vnumber=\"17\"> He also tore down the tower of Penuel and executed the city's men.</VERS>\n\t\t\t<VERS vnumber=\"18\"> He said to Zebah and Zalmunna, \"Describe for me the men you killed at Tabor.\" They said, \"They were like you. Each one looked like a king's son.\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> He said, \"They were my brothers, the sons of my mother. I swear, as surely as the LORD is alive, if you had let them live, I would not kill you.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> He ordered Jether his firstborn son, \"Come on! Kill them!\" But Jether was too afraid to draw his sword, because he was still young. </VERS>\n\t\t\t<VERS vnumber=\"21\"> Zebah and Zalmunna said to Gideon, \"Come on, you strike us, for a man is judged by his strength.\" So Gideon killed Zebah and Zalmunna, and he took the crescent-shaped ornaments which were on the necks of their camels.</VERS>\n\t\t\t<VERS vnumber=\"22\"> The men of Israel said to Gideon, \"Rule over us, you, your son, and your grandson. For you have delivered us from Midian's power.\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> Gideon said to them, \"I will not rule over you, nor will my son rule over you. The LORD will rule over you.\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> Gideon continued, \"I would like to make one request. Each of you give me an earring from the plunder you have taken.\" (The Midianites had gold earrings because they were Ishmaelites.) </VERS>\n\t\t\t<VERS vnumber=\"25\"> They said, \"We are happy to give you earrings.\" So they spread out a garment, and each one threw an earring from his plunder onto it. </VERS>\n\t\t\t<VERS vnumber=\"26\"> The total weight of the gold earrings he requested came to seventeen hundred gold shekels. This was in addition to the crescent-shaped ornaments, jewelry, purple clothing worn by the Midianite kings, and the necklaces on the camels.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Gideon used all this to make an ephod, which he put in his hometown of Ophrah. All the Israelites prostituted themselves to it by worshiping it there. It became a snare to Gideon and his family.</VERS>\n\t\t\t<VERS vnumber=\"28\"> The Israelites humiliated Midian; the Midianites' fighting spirit was broken. The land had rest for forty years during Gideon's time.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Then Jerub-Baal son of Joash went home and settled down.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Gideon fathered seventy sons through his many wives.</VERS>\n\t\t\t<VERS vnumber=\"31\"> His concubine, who lived in Shechem, also gave him a son, whom he named Abimelech.</VERS>\n\t\t\t<VERS vnumber=\"32\"> Gideon son of Joash died at a very old age and was buried in the tomb of his father Joash located in Ophrah of the Abiezrites.</VERS>\n\t\t\t<VERS vnumber=\"33\"> After Gideon died, the Israelites again prostituted themselves to the Baals. They made Baal-Berith their god. </VERS>\n\t\t\t<VERS vnumber=\"34\"> The Israelites did not remain true to the LORD their God, who had delivered them from all the enemies who lived around them.</VERS>\n\t\t\t<VERS vnumber=\"35\"> They did not treat the family of Jerub-Baal (that is, Gideon) fairly in return for all the good he had done for Israel.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"9\">\n\t\t\t<VERS vnumber=\"1\"> Now Abimelech son of Jerub-Baal went to Shechem to see his mother's relatives. He said to them and to his mother's entire extended family,</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Tell all the leaders of Shechem this: 'Why would you want to have seventy men, all Jerub-Baal's sons, ruling over you, when you can have just one ruler? Recall that I am your own flesh and blood.'\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> His mother's relatives spoke on his behalf to all the leaders of Shechem and reported his proposal. The leaders were drawn to Abimelech; they said, \"He is our close relative.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> They paid him seventy silver shekels out of the temple of Baal-Berith. Abimelech then used the silver to hire some lawless, dangerous men as his followers.</VERS>\n\t\t\t<VERS vnumber=\"5\"> He went to his father's home in Ophrah and murdered his half-brothers, the seventy legitimate sons of Jerub-Baal, on one stone. Only Jotham, Jerub-Baal's youngest son, escaped, because he hid. </VERS>\n\t\t\t<VERS vnumber=\"6\"> All the leaders of Shechem and Beth Millo assembled and then went and made Abimelech king by the oak near the pillar in Shechem.</VERS>\n\t\t\t<VERS vnumber=\"7\"> When Jotham heard the news, he went and stood on the top of Mount Gerizim. He spoke loudly to the people below, \"Listen to me, leaders of Shechem, so that God may listen to you!</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"The trees were determined to go out and choose a king for themselves. They said to the olive tree, 'Be our king!'</VERS>\n\t\t\t<VERS vnumber=\"9\"> But the olive tree said to them, 'I am not going to stop producing my oil, which is used to honor gods and men, just to sway above the other trees!'</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"So the trees said to the fig tree, 'You come and be our king!'</VERS>\n\t\t\t<VERS vnumber=\"11\"> But the fig tree said to them, 'I am not going to stop producing my sweet figs, my excellent fruit, just to sway above the other trees!'</VERS>\n\t\t\t<VERS vnumber=\"12\"> \"So the trees said to the grapevine, 'You come and be our king!'</VERS>\n\t\t\t<VERS vnumber=\"13\"> But the grapevine said to them, 'I am not going to stop producing my wine, which makes gods and men so happy, just to sway above the other trees!'</VERS>\n\t\t\t<VERS vnumber=\"14\"> \"So all the trees said to the thornbush, 'You come and be our king!'</VERS>\n\t\t\t<VERS vnumber=\"15\"> The thornbush said to the trees, 'If you really want to choose me as your king, then come along, find safety under my branches! Otherwise may fire blaze from the thornbush and consume the cedars of Lebanon!'</VERS>\n\t\t\t<VERS vnumber=\"16\"> \"Now, if you have shown loyalty and integrity when you made Abimelech king, if you have done right to Jerub-Baal and his family, if you have properly repaid him,</VERS>\n\t\t\t<VERS vnumber=\"17\"> my father fought for you; he risked his life and delivered you from Midian's power.</VERS>\n\t\t\t<VERS vnumber=\"18\"> But you have attacked my father's family today. You murdered his seventy legitimate sons on one stone and made Abimelech, the son of his female slave, king over the leaders of Shechem, just because he is your close relative.</VERS>\n\t\t\t<VERS vnumber=\"19\"> So if you have shown loyalty and integrity to Jerub-Baal and his family today, then may Abimelech bring you happiness and may you bring him happiness!</VERS>\n\t\t\t<VERS vnumber=\"20\"> But if not, may fire blaze from Abimelech and consume the leaders of Shechem and Beth Millo! May fire also blaze from the leaders of Shechem and Beth Millo and consume Abimelech!\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> Then Jotham ran away to Beer and lived there to escape from Abimelech his half-brother.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Abimelech commanded Israel for three years. </VERS>\n\t\t\t<VERS vnumber=\"23\"> God sent a spirit to stir up hostility between Abimelech and the leaders of Shechem. He made the leaders of Shechem disloyal to Abimelech. </VERS>\n\t\t\t<VERS vnumber=\"24\"> He did this so the violent deaths of Jerub-Baal's seventy sons might be avenged and Abimelech, their half-brother who murdered them, might have to pay for their spilled blood, along with the leaders of Shechem who helped him murder them.</VERS>\n\t\t\t<VERS vnumber=\"25\"> The leaders of Shechem rebelled against Abimelech by putting bandits in the hills, who robbed everyone who traveled by on the road. But Abimelech found out about it.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Gaal son of Ebed came through Shechem with his brothers. The leaders of Shechem transferred their loyalty to him.</VERS>\n\t\t\t<VERS vnumber=\"27\"> They went out to the field, harvested their grapes, squeezed out the juice, and celebrated. They came to the temple of their god and ate, drank, and cursed Abimelech.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Gaal son of Ebed said, \"Who is Abimelech and who is Shechem, that we should serve him? Is he not the son of Jerub-Baal, and is not Zebul the deputy he appointed? Serve the sons of Hamor, the father of Shechem! But why should we serve Abimelech?</VERS>\n\t\t\t<VERS vnumber=\"29\"> If only these men were under my command, I would get rid of Abimelech!\" He challenged Abimelech, \"Muster your army and come out for battle!\"</VERS>\n\t\t\t<VERS vnumber=\"30\"> When Zebul, the city commissioner, heard the words of Gaal son of Ebed, he was furious.</VERS>\n\t\t\t<VERS vnumber=\"31\"> He sent messengers to Abimelech, who was in Arumah, reporting, \"Beware! Gaal son of Ebed and his brothers are coming to Shechem and inciting the city to rebel against you.</VERS>\n\t\t\t<VERS vnumber=\"32\"> Now, come up at night with your men and set an ambush in the field outside the city.</VERS>\n\t\t\t<VERS vnumber=\"33\"> In the morning at sunrise quickly attack the city. When he and his men come out to fight you, do what you can to him.\"</VERS>\n\t\t\t<VERS vnumber=\"34\"> So Abimelech and all his men came up at night and set an ambush outside Shechem, they divided into four units.</VERS>\n\t\t\t<VERS vnumber=\"35\"> When Gaal son of Ebed came out and stood at the entrance to the city's gate, Abimelech and his men got up from their hiding places.</VERS>\n\t\t\t<VERS vnumber=\"36\"> Gaal saw the men and said to Zebul, \"Look, men are coming down from the tops of the hills.\" But Zebul said to him, \"You are seeing the shadows on the hills, it just looks like men.\"</VERS>\n\t\t\t<VERS vnumber=\"37\"> Gaal again said, \"Look, men are coming down from the very center of the land. A unit is coming by way of the Oak Tree of the Diviners.\"</VERS>\n\t\t\t<VERS vnumber=\"38\"> Zebul said to him, \"Where now are your bragging words, 'Who is Abimelech that we should serve him?' Are these not the men you insulted? Go out now and fight them!\" </VERS>\n\t\t\t<VERS vnumber=\"39\"> So Gaal led the leaders of Shechem out and fought Abimelech. </VERS>\n\t\t\t<VERS vnumber=\"40\"> Abimelech chased him, and Gaal ran from him. Many Shechemites fell wounded at the entrance of the gate. </VERS>\n\t\t\t<VERS vnumber=\"41\"> Abimelech went back to Arumah; Zebul drove Gaal and his brothers out of Shechem.</VERS>\n\t\t\t<VERS vnumber=\"42\"> The next day the Shechemites came out to the field. When Abimelech heard about it,</VERS>\n\t\t\t<VERS vnumber=\"43\"> he took his men and divided them into three units and set an ambush in the field. When he saw the people coming out of the city, he attacked and struck them down.</VERS>\n\t\t\t<VERS vnumber=\"44\"> Abimelech and his units attacked and blocked the entrance to the city's gate. Two units then attacked all the people in the field and struck them down. </VERS>\n\t\t\t<VERS vnumber=\"45\"> Abimelech fought against the city all that day. He captured the city and killed all the people in it. Then he leveled the city and spread salt over it.</VERS>\n\t\t\t<VERS vnumber=\"46\"> When all the leaders of the Tower of Shechem heard the news, they went to the stronghold of the temple of El-Berith.</VERS>\n\t\t\t<VERS vnumber=\"47\"> Abimelech heard that all the leaders of the Tower of Shechem were in one place.</VERS>\n\t\t\t<VERS vnumber=\"48\"> He and all his men went up on Mount Zalmon. He took an ax in his hand and cut off a tree branch. He put it on his shoulder and said to his men, \"Quickly, do what you have just seen me do!\"</VERS>\n\t\t\t<VERS vnumber=\"49\"> So each of his men also cut off a branch and followed Abimelech. They put the branches against the stronghold and set fire to it. All the people of the Tower of Shechem died, about a thousand men and women.</VERS>\n\t\t\t<VERS vnumber=\"50\"> Abimelech moved on to Thebez; he besieged and captured it.</VERS>\n\t\t\t<VERS vnumber=\"51\"> There was a fortified tower in the center of the city, so all the men and women, as well as the city's leaders, ran into it and locked the entrance. Then they went up to the roof of the tower. </VERS>\n\t\t\t<VERS vnumber=\"52\"> Abimelech came and attacked the tower. When he approached the entrance of the tower to set it on fire,</VERS>\n\t\t\t<VERS vnumber=\"53\"> a woman threw an upper millstone down on his head and shattered his skull. </VERS>\n\t\t\t<VERS vnumber=\"54\"> He quickly called to the young man who carried his weapons, \"Draw your sword and kill me, so they will not say, 'A woman killed him.'\" So the young man stabbed him and he died. </VERS>\n\t\t\t<VERS vnumber=\"55\"> When the Israelites saw that Abimelech was dead, they went home.</VERS>\n\t\t\t<VERS vnumber=\"56\"> God repaid Abimelech for the evil he did to his father by murdering his seventy half-brothers.</VERS>\n\t\t\t<VERS vnumber=\"57\"> God also repaid the men of Shechem for their evil deeds. The curse spoken by Jotham son of Jerub-Baal fell on them.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"10\">\n\t\t\t<VERS vnumber=\"1\"> After Abimelech's death, Tola son of Puah, grandson of Dodo, from the tribe of Issachar, rose up to deliver Israel. He lived in Shamir in the Ephraimite hill country. </VERS>\n\t\t\t<VERS vnumber=\"2\"> He led Israel for twenty-three years, then died and was buried in Shamir.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Jair the Gileadite rose up after him; he led Israel for twenty-two years.</VERS>\n\t\t\t<VERS vnumber=\"4\"> He had thirty sons who rode on thirty donkeys and possessed thirty cities. To this day these towns are called Havvoth Jair, they are in the land of Gilead.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Jair died and was buried in Kamon.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The Israelites again did evil in the LORD's sight. They worshiped the Baals and the Ashtars, as well as the gods of Syria, Sidon, Moab, the Ammonites, and the Philistines. They abandoned the LORD and did not worship him. </VERS>\n\t\t\t<VERS vnumber=\"7\"> The LORD was furious with Israel and turned them over to the Philistines and Ammonites. </VERS>\n\t\t\t<VERS vnumber=\"8\"> They ruthlessly oppressed the Israelites that eighteenth year, that is, all the Israelites living east of the Jordan in Amorite country in Gilead.</VERS>\n\t\t\t<VERS vnumber=\"9\"> The Ammonites crossed the Jordan to fight with Judah, Benjamin, and Ephraim. Israel suffered greatly.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The Israelites cried out for help to the LORD: \"We have sinned against you. We abandoned our God and worshiped the Baals.\" </VERS>\n\t\t\t<VERS vnumber=\"11\"> The LORD said to the Israelites, \"Did I not deliver you from Egypt, the Amorites, the Ammonites, the Philistines,</VERS>\n\t\t\t<VERS vnumber=\"12\"> the Sidonians, Amalek, and Midian when they oppressed you? You cried out for help to me, and I delivered you from their power.</VERS>\n\t\t\t<VERS vnumber=\"13\"> But since you abandoned me and worshiped other gods, I will not deliver you again. </VERS>\n\t\t\t<VERS vnumber=\"14\"> Go and cry for help to the gods you have chosen! Let them deliver you from trouble!\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> But the Israelites said to the LORD, \"We have sinned. You do to us as you see fit, but deliver us today!\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> They threw away the foreign gods they owned and worshiped the LORD. Finally the LORD grew tired of seeing Israel suffer so much.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The Ammonites assembled and camped in Gilead; the Israelites gathered together and camped in Mizpah. </VERS>\n\t\t\t<VERS vnumber=\"18\"> The leaders of Gilead said to one another, \"Who is willing to lead the charge against the Ammonites? He will become the leader of all who live in Gilead!\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"11\">\n\t\t\t<VERS vnumber=\"1\"> Now Jephthah the Gileadite was a brave warrior. His mother was a prostitute, but Gilead was his father.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Gilead's wife also gave him sons. When his wife's sons grew up, they made Jephthah leave and said to him, \"You are not going to inherit any of our father's wealth, because you are another woman's son.\" </VERS>\n\t\t\t<VERS vnumber=\"3\"> So Jephthah left his half-brothers and lived in the land of Tob. Lawless men joined Jephthah's gang and traveled with him.</VERS>\n\t\t\t<VERS vnumber=\"4\"> It was some time after this when the Ammonites fought with Israel.</VERS>\n\t\t\t<VERS vnumber=\"5\"> When the Ammonites attacked, the leaders of Gilead asked Jephthah to come back from the land of Tob. </VERS>\n\t\t\t<VERS vnumber=\"6\"> They said, \"Come, be our commander, so we can fight with the Ammonites.\" </VERS>\n\t\t\t<VERS vnumber=\"7\"> Jephthah said to the leaders of Gilead, \"But you hated me and made me leave my father's house. Why do you come to me now, when you are in trouble?\" </VERS>\n\t\t\t<VERS vnumber=\"8\"> The leaders of Gilead said to Jephthah, \"That may be true, but now we pledge to you our loyalty. Come with us and fight with the Ammonites. Then you will become the leader of all who live in Gilead.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> Jephthah said to the leaders of Gilead, \"All right! If you take me back to fight with the Ammonites and the LORD gives them to me, I will be your leader.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> The leaders of Gilead said to Jephthah, \"The LORD will judge any grievance you have against us, if we do not do as you say.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> So Jephthah went with the leaders of Gilead. The people made him their leader and commander. Jephthah repeated the terms of the agreement before the LORD in Mizpah.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Jephthah sent messengers to the Ammonite king, saying, \"Why have you come against me to attack my land?\" </VERS>\n\t\t\t<VERS vnumber=\"13\"> The Ammonite king said to Jephthah's messengers, \"Because Israel stole my land when they came up from Egypt, from the Arnon River in the south to the Jabbok River in the north, and as far west as the Jordan. Now return it peaceably!\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> Jephthah sent messengers back to the Ammonite king</VERS>\n\t\t\t<VERS vnumber=\"15\"> and said to him, \"This is what Jephthah says, 'Israel did not steal the land of Moab and the land of the Ammonites. </VERS>\n\t\t\t<VERS vnumber=\"16\"> When they left Egypt, Israel traveled through the desert as far as the Red Sea and then came to Kadesh. </VERS>\n\t\t\t<VERS vnumber=\"17\"> Israel sent messengers to the king of Edom, saying, \"Please allow us to pass through your land.\" But the king of Edom rejected the request. Israel sent the same request to the king of Moab, but he was unwilling to cooperate. So Israel stayed at Kadesh. </VERS>\n\t\t\t<VERS vnumber=\"18\"> Then Israel went through the desert and bypassed the land of Edom and the land of Moab. They traveled east of the land of Moab and camped on the other side of the Arnon River; they did not go through Moabite territory (the Arnon was Moab's border). </VERS>\n\t\t\t<VERS vnumber=\"19\"> Israel sent messengers to King Sihon, the Amorite king who ruled in Heshbon, and said to him, \"Please allow us to pass through your land to our land.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> But Sihon did not trust Israel to pass through his territory. He assembled his whole army, camped in Jahaz, and fought with Israel. </VERS>\n\t\t\t<VERS vnumber=\"21\"> The LORD God of Israel handed Sihon and his whole army over to Israel and they defeated them. Israel took all the land of the Amorites who lived in that land. </VERS>\n\t\t\t<VERS vnumber=\"22\"> They took all the Amorite territory from the Arnon River on the south to the Jabbok River on the north, from the desert in the east to the Jordan in the west.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Since the LORD God of Israel has driven out the Amorites before his people Israel, do you think you can just take it from them?</VERS>\n\t\t\t<VERS vnumber=\"24\"> You have the right to take what Chemosh your god gives you, but we will take the land of all whom the LORD our God has driven out before us.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Are you really better than Balak son of Zippor, king of Moab? Did he dare to quarrel with Israel? Did he dare to fight with them?</VERS>\n\t\t\t<VERS vnumber=\"26\"> Israel has been living in Heshbon and its nearby towns, in Aroer and its nearby towns, and in all the cities along the Arnon for three hundred years! Why did you not reclaim them during that time?</VERS>\n\t\t\t<VERS vnumber=\"27\"> I have not done you wrong, but you are doing wrong by attacking me. May the LORD, the Judge, judge this day between the Israelites and the Ammonites!'\" </VERS>\n\t\t\t<VERS vnumber=\"28\"> But the Ammonite king disregarded the message sent by Jephthah.</VERS>\n\t\t\t<VERS vnumber=\"29\"> The LORD's spirit empowered Jephthah. He passed through Gilead and Manasseh and went to Mizpah in Gilead. From there he approached the Ammonites.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Jephthah made a vow to the LORD, saying, \"If you really do hand the Ammonites over to me,</VERS>\n\t\t\t<VERS vnumber=\"31\"> then whoever is the first to come through the doors of my house to meet me when I return safely from fighting the Ammonites, he will belong to the LORD and I will offer him up as a burnt sacrifice.\"</VERS>\n\t\t\t<VERS vnumber=\"32\"> Jephthah approached the Ammonites to fight with them, and the LORD handed them over to him. </VERS>\n\t\t\t<VERS vnumber=\"33\"> He defeated them from Aroer all the way to Minnith, twenty cities in all, even as far as Abel Keramim! He wiped them out! The Israelites humiliated the Ammonites.</VERS>\n\t\t\t<VERS vnumber=\"34\"> When Jephthah came home to Mizpah, there was his daughter hurrying out to meet him, dancing to the rhythm of tambourines. She was his only child; except for her he had no son or daughter. </VERS>\n\t\t\t<VERS vnumber=\"35\"> When he saw her, he ripped his clothes and said, \"Oh no! My daughter! You have completely ruined me! You have brought me disaster! I made an oath to the LORD, and I cannot break it.\"</VERS>\n\t\t\t<VERS vnumber=\"36\"> She said to him, \"My father, since you made an oath to the LORD, do to me as you promised. After all, the LORD vindicated you before your enemies, the Ammonites.\" </VERS>\n\t\t\t<VERS vnumber=\"37\"> She then said to her father, \"Please grant me this one wish. For two months allow me to walk through the hills with my friends and mourn my virginity.\"</VERS>\n\t\t\t<VERS vnumber=\"38\"> He said, \"You may go.\" He permitted her to leave for two months. She went with her friends and mourned her virginity as she walked through the hills.</VERS>\n\t\t\t<VERS vnumber=\"39\"> After two months she returned to her father, and he did to her as he had vowed. She died a virgin. Her tragic death gave rise to a custom in Israel.</VERS>\n\t\t\t<VERS vnumber=\"40\"> Every year Israelite women commemorate the daughter of Jephthah the Gileadite for four days.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"12\">\n\t\t\t<VERS vnumber=\"1\"> The Ephraimites assembled and crossed over to Zaphon. They said to Jephthah, \"Why did you go and fight with the Ammonites without asking us to go with you? We will burn your house down right over you!\"</VERS>\n\t\t\t<VERS vnumber=\"2\"> Jephthah said to them, \"My people and I were entangled in controversy with the Ammonites. I asked for your help, but you did not deliver me from their power.</VERS>\n\t\t\t<VERS vnumber=\"3\"> When I saw that you were not going to help, I risked my life and advanced against the Ammonites, and the LORD handed them over to me. Why have you come up to fight with me today?\" </VERS>\n\t\t\t<VERS vnumber=\"4\"> Jephthah assembled all the men of Gilead and they fought with Ephraim. The men of Gilead defeated Ephraim, because the Ephraimites insulted them, saying, \"You Gileadites are refugees in Ephraim, living within Ephraim's and Manasseh's territory.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> The Gileadites captured the fords of the Jordan River opposite Ephraim. Whenever an Ephraimite fugitive said, \"Let me cross over,\" the men of Gilead asked him, \"Are you an Ephraimite?\" If he said, \"No,\" </VERS>\n\t\t\t<VERS vnumber=\"6\"> then they said to him, \"Say 'Shibboleth!'\" If he said, \"Sibboleth\" (and could not pronounce the word correctly), they grabbed him and executed him right there at the fords of the Jordan. On that day forty-two thousand Ephraimites fell dead. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Jephthah led Israel for six years; then he died and was buried in his city in Gilead.</VERS>\n\t\t\t<VERS vnumber=\"8\"> After him Ibzan of Bethlehem led Israel. </VERS>\n\t\t\t<VERS vnumber=\"9\"> He had thirty sons. He arranged for thirty of his daughters to be married outside his extended family, and he arranged for thirty young women to be brought from outside as wives for his sons. Ibzan led Israel for seven years; </VERS>\n\t\t\t<VERS vnumber=\"10\"> then he died and was buried in Bethlehem.</VERS>\n\t\t\t<VERS vnumber=\"11\"> After him Elon the Zebulunite led Israel for ten years.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Then Elon the Zebulunite died and was buried in Aijalon in the land of Zebulun.</VERS>\n\t\t\t<VERS vnumber=\"13\"> After him Abdon son of Hillel the Pirathonite led Israel. </VERS>\n\t\t\t<VERS vnumber=\"14\"> He had forty sons and thirty grandsons who rode on seventy donkeys. He led Israel for eight years.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Then Abdon son of Hillel the Pirathonite died and was buried in Pirathon in the land of Ephraim, in the hill country of the Amalekites.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"13\">\n\t\t\t<VERS vnumber=\"1\"> The Israelites again did evil in the LORD's sight, so the LORD handed them over to the Philistines for forty years.</VERS>\n\t\t\t<VERS vnumber=\"2\"> There was a man named Manoah from Zorah, from the Danite tribe. His wife was infertile and childless.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The LORD's angelic messenger appeared to the woman and said to her, \"You are infertile and childless, but you will conceive and have a son. </VERS>\n\t\t\t<VERS vnumber=\"4\"> Now be careful! Do not drink wine or beer, and do not eat any food that will make you ritually unclean.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Look, you will conceive and have a son. You must never cut his hair, for the child will be dedicated to God from birth. He will begin to deliver Israel from the power of the Philistines.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> The woman went and said to her husband, \"A man sent from God came to me! He looked like God's angelic messenger, he was very awesome. I did not ask him where he came from, and he did not tell me his name.</VERS>\n\t\t\t<VERS vnumber=\"7\"> He said to me, 'Look, you will conceive and have a son. So now, do not drink wine or beer and do not eat any food that will make you ritually unclean. For the child will be dedicated to God from birth till the day he dies.'\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> Manoah prayed to the LORD, \"Please, Lord, allow the man sent from God to visit us again, so he can teach us how we should raise the child who will be born.\" </VERS>\n\t\t\t<VERS vnumber=\"9\"> God answered Manoah's prayer. God's angelic messenger visited the woman again while she was sitting in the field. But her husband Manoah was not with her. </VERS>\n\t\t\t<VERS vnumber=\"10\"> The woman ran at once and told her husband, \"Come quickly, the man who visited me the other day has appeared to me!\" </VERS>\n\t\t\t<VERS vnumber=\"11\"> So Manoah got up and followed his wife. When he met the man, he said to him, \"Are you the man who spoke to my wife?\" He said, \"Yes.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> Manoah said, \"Now, when your announcement comes true, how should the child be raised and what should he do?\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> The LORD's messenger told Manoah, \"Your wife should pay attention to everything I told her.</VERS>\n\t\t\t<VERS vnumber=\"14\"> She should not drink anything that the grapevine produces. She must not drink wine or beer, and she must not eat any food that will make her ritually unclean. She should obey everything I commanded her to do.\" </VERS>\n\t\t\t<VERS vnumber=\"15\"> Manoah said to the LORD's messenger, \"Please stay here awhile, so we can prepare a young goat for you to eat.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> The LORD's messenger said to Manoah, \"If I stay, I will not eat your food. But if you want to make a burnt sacrifice to the LORD, you should offer it.\" (He said this because Manoah did not know that he was the LORD's messenger.)</VERS>\n\t\t\t<VERS vnumber=\"17\"> Manoah said to the LORD's messenger, \"Tell us your name, so we can honor you when your announcement comes true.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> The LORD's messenger said to him, \"You should not ask me my name, because you cannot comprehend it.\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> Manoah took a young goat and a grain offering and offered them on a rock to the LORD. The LORD's messenger did an amazing thing as Manoah and his wife watched.</VERS>\n\t\t\t<VERS vnumber=\"20\"> As the flame went up from the altar toward the sky, the LORD's messenger went up in it while Manoah and his wife watched. They fell facedown to the ground.</VERS>\n\t\t\t<VERS vnumber=\"21\"> The LORD's messenger did not appear again to Manoah and his wife. After all this happened Manoah realized that the visitor had been the LORD's messenger.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Manoah said to his wife, \"We will certainly die, because we have seen a supernatural being!\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> But his wife said to him, \"If the LORD wanted to kill us, he would not have accepted the burnt offering and the grain offering from us. He would not have shown us all these things, or have spoken to us like this just now.\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> Manoah's wife gave birth to a son and named him Samson. The child grew and the LORD empowered him. </VERS>\n\t\t\t<VERS vnumber=\"25\"> The LORD's spirit began to control him in Mahaneh Dan between Zorah and Eshtaol.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"14\">\n\t\t\t<VERS vnumber=\"1\"> Samson went down to Timnah, where a Philistine girl caught his eye.</VERS>\n\t\t\t<VERS vnumber=\"2\"> When he got home, he told his father and mother, \"A Philistine girl in Timnah has caught my eye. Now get her for my wife.\" </VERS>\n\t\t\t<VERS vnumber=\"3\"> But his father and mother said to him, \"Certainly you can find a wife among your relatives or among all our people! You should not have to go and get a wife from the uncircumcised Philistines.\" But Samson said to his father, \"Get her for me, because she is the right one for me.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> Now his father and mother did not realize this was the LORD's doing, because he was looking for an opportunity to stir up trouble with the Philistines (for at that time the Philistines were ruling Israel).</VERS>\n\t\t\t<VERS vnumber=\"5\"> Samson went down to Timnah. When he approached the vineyards of Timnah, he saw a roaring young lion attacking him.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The LORD's spirit empowered him and he tore the lion in two with his bare hands as easily as one would tear a young goat. But he did not tell his father or mother what he had done.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Samson continued on down to Timnah and spoke to the girl. In his opinion, she was just the right one.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Some time later, when he went back to marry her, he turned aside to see the lion's remains. He saw a swarm of bees in the lion's carcass, as well as some honey. </VERS>\n\t\t\t<VERS vnumber=\"9\"> He scooped it up with his hands and ate it as he walked along. When he returned to his father and mother, he offered them some and they ate it. But he did not tell them he had scooped the honey out of the lion's carcass.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Then Samson's father accompanied him to Timnah for the marriage. Samson hosted a party there, for this was customary for bridegrooms to do. </VERS>\n\t\t\t<VERS vnumber=\"11\"> When the Philistines saw he had no attendants, they gave him thirty groomsmen who kept him company.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Samson said to them, \"I will give you a riddle. If you really can solve it during the seven days the party lasts, I will give you thirty linen robes and thirty sets of clothes. </VERS>\n\t\t\t<VERS vnumber=\"13\"> But if you cannot solve it, you will give me thirty linen robes and thirty sets of clothes.\" They said to him, \"Let us hear your riddle.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> He said to them, \"Out of the one who eats came something to eat; out of the strong one came something sweet.\" They could not solve the riddle for three days.</VERS>\n\t\t\t<VERS vnumber=\"15\"> On the fourth day they said to Samson's bride, \"Trick your husband into giving the solution to the riddle. If you refuse, we will burn up you and your father's family. Did you invite us here to make us poor?\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> So Samson's bride cried on his shoulder and said, \"You must hate me; you do not love me! You told the young men a riddle, but you have not told me the solution.\" He said to her, \"Look, I have not even told my father or mother. Do you really expect me to tell you?\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> She cried on his shoulder until the party was almost over. Finally, on the seventh day, he told her because she had nagged him so much. Then she told the young men the solution to the riddle.</VERS>\n\t\t\t<VERS vnumber=\"18\"> On the seventh day, before the sun set, the men of the city said to him, \"What is sweeter than honey? What is stronger than a lion?\" He said to them, \"If you had not plowed with my heifer, you would not have solved my riddle!\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> The LORD's spirit empowered him. He went down to Ashkelon and murdered thirty men. He took their clothes and gave them to the men who had solved the riddle. He was furious as he went back home.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Samson's bride was then given to his best man.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"15\">\n\t\t\t<VERS vnumber=\"1\"> Sometime later, during the wheat harvest, Samson took a young goat as a gift and went to visit his bride. He said to her father, \"I want to have sex with my bride in her bedroom!\" But her father would not let him enter. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Her father said, \"I really thought you absolutely despised her, so I gave her to your best man. Her younger sister is more attractive than she is. Take her instead!\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> Samson said to them, \"This time I am justified in doing the Philistines harm!\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> Samson went and captured three hundred jackals and got some torches. He tied the jackals in pairs by their tails and then tied a torch to each pair.</VERS>\n\t\t\t<VERS vnumber=\"5\"> He lit the torches and set the jackals loose in the Philistines' standing grain. He burned up the grain heaps and the standing grain, as well as the vineyards and olive groves. </VERS>\n\t\t\t<VERS vnumber=\"6\"> The Philistines asked, \"Who did this?\" They were told, \"Samson, the Timnite's son-in-law, because the Timnite took Samson's bride and gave her to his best man.\" So the Philistines went up and burned her and her father.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Samson said to them, \"Because you did this, I will get revenge against you before I quit fighting.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> He struck them down and defeated them. Then he went down and lived for a time in the cave in the cliff of Etam.</VERS>\n\t\t\t<VERS vnumber=\"9\"> The Philistines went up and invaded Judah. They arrayed themselves for battle in Lehi. </VERS>\n\t\t\t<VERS vnumber=\"10\"> The men of Judah said, \"Why are you attacking us?\" The Philistines said, \"We have come up to take Samson prisoner so we can do to him what he has done to us.\" </VERS>\n\t\t\t<VERS vnumber=\"11\"> Three thousand men of Judah went down to the cave in the cliff of Etam and said to Samson, \"Do you not know that the Philistines rule over us? Why have you done this to us?\" He said to them, \"I have only done to them what they have done to me.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> They said to him, \"We have come down to take you prisoner so we can hand you over to the Philistines.\" Samson said to them, \"Promise me you will not kill me.\" </VERS>\n\t\t\t<VERS vnumber=\"13\"> They said to him, \"We promise! We will only take you prisoner and hand you over to them. We promise not to kill you.\" They tied him up with two brand new ropes and led him up from the cliff. </VERS>\n\t\t\t<VERS vnumber=\"14\"> When he arrived in Lehi, the Philistines shouted as they approached him. But the LORD's spirit empowered him. The ropes around his arms were like flax dissolving in fire, and they melted away from his hands. </VERS>\n\t\t\t<VERS vnumber=\"15\"> He happened to see a solid jawbone of a donkey. He grabbed it and struck down a thousand men. </VERS>\n\t\t\t<VERS vnumber=\"16\"> Samson then said, \"With the jawbone of a donkey I have left them in heaps; with the jawbone of a donkey I have struck down a thousand men!\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> When he finished speaking, he threw the jawbone down and named that place Ramath Lehi.</VERS>\n\t\t\t<VERS vnumber=\"18\"> He was very thirsty, so he cried out to the LORD and said, \"You have given your servant this great victory. But now must I die of thirst and fall into hands of the Philistines?\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> So God split open the basin at Lehi and water flowed out from it. When he took a drink, his strength was restored and he revived. For this reason he named the spring En Hakkore. It remains in Lehi to this very day. </VERS>\n\t\t\t<VERS vnumber=\"20\"> Samson led Israel for twenty years during the days of Philistine prominence.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"16\">\n\t\t\t<VERS vnumber=\"1\"> Samson went to Gaza. There he saw a prostitute and went in to have sex with her.</VERS>\n\t\t\t<VERS vnumber=\"2\"> The Gazites were told, \"Samson has come here!\" So they surrounded the town and hid all night at the city gate, waiting for him to leave. They relaxed all night, thinking, \"He will not leave until morning comes; then we will kill him!\" </VERS>\n\t\t\t<VERS vnumber=\"3\"> Samson spent half the night with the prostitute; then he got up in the middle of the night and left. He grabbed the doors of the city gate, as well as the two posts, and pulled them right off, bar and all. He put them on his shoulders and carried them up to the top of a hill east of Hebron.</VERS>\n\t\t\t<VERS vnumber=\"4\"> After this Samson fell in love with a woman named Delilah, who lived in the Sorek Valley.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The rulers of the Philistines went up to visit her and said to her, \"Trick him! Find out what makes him so strong and how we can subdue him and humiliate him. Each one of us will give you eleven hundred silver pieces.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> So Delilah said to Samson, \"Tell me what makes you so strong and how you can be subdued and humiliated.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> Samson said to her, \"If they tie me up with seven fresh bowstrings that have not been dried, I will become weak and be just like any other man.\" </VERS>\n\t\t\t<VERS vnumber=\"8\"> So the rulers of the Philistines brought her seven fresh bowstrings which had not been dried and they tied him up with them.</VERS>\n\t\t\t<VERS vnumber=\"9\"> They hid in the bedroom and then she said to him, \"The Philistines are here, Samson!\" He snapped the bowstrings as easily as a thread of yarn snaps when it is put close to fire. The secret of his strength was not discovered.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Delilah said to Samson, \"Look, you deceived me and told me lies! Now tell me how you can be subdued.\" </VERS>\n\t\t\t<VERS vnumber=\"11\"> He said to her, \"If they tie me tightly with brand new ropes that have never been used, I will become weak and be just like any other man.\" </VERS>\n\t\t\t<VERS vnumber=\"12\"> So Delilah took new ropes and tied him with them and said to him, \"The Philistines are here, Samson!\" (The Philistines were hiding in the bedroom.) But he tore the ropes from his arms as if they were a piece of thread.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Delilah said to Samson, \"Up to now you have deceived me and told me lies. Tell me how you can be subdued.\" He said to her, \"If you weave the seven braids of my hair into the fabric on the loom and secure it with the pin, I will become weak and be like any other man.\" </VERS>\n\t\t\t<VERS vnumber=\"14\"> So she made him go to sleep, wove the seven braids of his hair into the fabric on the loom, fastened it with the pin, and said to him, \"The Philistines are here, Samson!\" He woke up and tore away the pin of the loom and the fabric.</VERS>\n\t\t\t<VERS vnumber=\"15\"> She said to him, \"How can you say, 'I love you,' when you will not share your secret with me? Three times you have deceived me and have not told me what makes you so strong.\" </VERS>\n\t\t\t<VERS vnumber=\"16\"> She nagged him every day and pressured him until he was sick to death of it.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Finally he told her his secret. He said to her, \"My hair has never been cut, for I have been dedicated to God from the time I was conceived. If my head were shaved, my strength would leave me; I would become weak, and be just like all other men.\" </VERS>\n\t\t\t<VERS vnumber=\"18\"> When Delilah saw that he had told her his secret, she sent for the rulers of the Philistines, saying, \"Come up here again, for he has told me his secret.\" So the rulers of the Philistines went up to visit her, bringing the silver in their hands.</VERS>\n\t\t\t<VERS vnumber=\"19\"> She made him go to sleep on her lap and then called a man in to shave off the seven braids of his hair. She made him vulnerable and his strength left him. </VERS>\n\t\t\t<VERS vnumber=\"20\"> She said, \"The Philistines are here, Samson!\" He woke up and thought, \"I will do as I did before and shake myself free.\" But he did not realize that the LORD had left him. </VERS>\n\t\t\t<VERS vnumber=\"21\"> The Philistines captured him and gouged out his eyes. They brought him down to Gaza and bound him in bronze chains. He became a grinder in the prison.</VERS>\n\t\t\t<VERS vnumber=\"22\"> His hair began to grow back after it had been shaved off.</VERS>\n\t\t\t<VERS vnumber=\"23\"> The rulers of the Philistines gathered to offer a great sacrifice to Dagon their god and to celebrate. They said, \"Our god has handed Samson, our enemy, over to us.\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> When the people saw him, they praised their god, saying, \"Our god has handed our enemy over to us, the one who ruined our land and killed so many of us!\"</VERS>\n\t\t\t<VERS vnumber=\"25\"> When they really started celebrating, they said, \"Call for Samson so he can entertain us!\" So they summoned Samson from the prison and he entertained them. They made him stand between two pillars. </VERS>\n\t\t\t<VERS vnumber=\"26\"> Samson said to the young man who held his hand, \"Position me so I can touch the pillars that support the temple. Then I can lean on them.\" </VERS>\n\t\t\t<VERS vnumber=\"27\"> Now the temple was filled with men and women, and all the rulers of the Philistines were there. There were three thousand men and women on the roof watching Samson entertain. </VERS>\n\t\t\t<VERS vnumber=\"28\"> Samson called to the LORD, \"O Master, LORD, remember me! Strengthen me just one more time, O God, so I can get swift revenge against the Philistines for my two eyes!\" </VERS>\n\t\t\t<VERS vnumber=\"29\"> Samson took hold of the two middle pillars that supported the temple and he leaned against them, with his right hand on one and his left hand on the other. </VERS>\n\t\t\t<VERS vnumber=\"30\"> Samson said, \"Let me die with the Philistines!\" He pushed hard and the temple collapsed on the rulers and all the people in it. He killed many more people in his death than he had killed during his life.</VERS>\n\t\t\t<VERS vnumber=\"31\"> His brothers and all his family went down and brought him back. They buried him between Zorah and Eshtaol in the tomb of Manoah his father. He had led Israel for twenty years.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"17\">\n\t\t\t<VERS vnumber=\"1\"> There was a man named Micah from the Ephraimite hill country.</VERS>\n\t\t\t<VERS vnumber=\"2\"> He said to his mother, \"You know the eleven hundred pieces of silver which were stolen from you, about which I heard you pronounce a curse? Look here, I have the silver. I stole it, but now I am giving it back to you.\" His mother said, \"May the LORD reward you, my son!\" </VERS>\n\t\t\t<VERS vnumber=\"3\"> When he gave back to his mother the eleven hundred pieces of silver, his mother said, \"I solemnly dedicate this silver to the LORD. It will be for my son's benefit. We will use it to make a carved image and a metal image.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> When he gave the silver back to his mother, she took two hundred pieces of silver to a silversmith, who made them into a carved image and a metal image. She then put them in Micah's house.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Now this man Micah owned a shrine. He made an ephod and some personal idols and hired one of his sons to serve as a priest.</VERS>\n\t\t\t<VERS vnumber=\"6\"> In those days Israel had no king. Each man did what he considered to be right.</VERS>\n\t\t\t<VERS vnumber=\"7\"> There was a young man from Bethlehem in Judah. He was a Levite who had been temporarily residing among the tribe of Judah.</VERS>\n\t\t\t<VERS vnumber=\"8\"> This man left the town of Bethlehem in Judah to find another place to live. He came to the Ephraimite hill country and made his way to Micah's house.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Micah said to him, \"Where do you come from?\" He replied, \"I am a Levite from Bethlehem in Judah. I am looking for a new place to live.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> Micah said to him, \"Stay with me. Become my adviser and priest. I will give you ten pieces of silver per year, plus clothes and food.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> So the Levite agreed to stay with the man; the young man was like a son to Micah.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Micah paid the Levite; the young man became his priest and lived in Micah's house. </VERS>\n\t\t\t<VERS vnumber=\"13\"> Micah said, \"Now I know God will make me rich, because I have this Levite as my priest.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"18\">\n\t\t\t<VERS vnumber=\"1\"> In those days Israel had no king. And in those days the Danite tribe was looking for a place to settle, because at that time they did not yet have a place to call their own among the tribes of Israel.</VERS>\n\t\t\t<VERS vnumber=\"2\"> The Danites sent out from their whole tribe five representatives, capable men from Zorah and Eshtaol, to spy out the land and explore it. They said to them, \"Go, explore the land.\" They came to the Ephraimite hill country and spent the night at Micah's house.</VERS>\n\t\t\t<VERS vnumber=\"3\"> As they approached Micah's house, they recognized the accent of the young Levite. So they stopped there and said to him, \"Who brought you here? What are you doing in this place? What is your business here?\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> He told them what Micah had done for him, saying, \"He hired me and I became his priest.\" </VERS>\n\t\t\t<VERS vnumber=\"5\"> They said to him, \"Seek a divine oracle for us, so we can know if we will be successful on our mission.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> The priest said to them, \"Go with confidence. The LORD will be with you on your mission.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> So the five men journeyed on and arrived in Laish. They noticed that the people there were living securely, like the Sidonians do, undisturbed and unsuspecting. No conqueror was troubling them in any way. They lived far from the Sidonians and had no dealings with anyone.</VERS>\n\t\t\t<VERS vnumber=\"8\"> When the Danites returned to their tribe in Zorah and Eshtaol, their kinsmen asked them, \"How did it go?\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> They said, \"Come on, let's attack them, for we saw their land and it is very good. You seem lethargic, but don't hesitate to invade and conquer the land. </VERS>\n\t\t\t<VERS vnumber=\"10\"> When you invade, you will encounter unsuspecting people. The land is wide! God is handing it over to you, a place that lacks nothing on earth!\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> So six hundred Danites, fully armed, set out from Zorah and Eshtaol.</VERS>\n\t\t\t<VERS vnumber=\"12\"> They went up and camped in Kiriath Jearim in Judah. (To this day that place is called Camp of Dan. It is west of Kiriath Jearim.) </VERS>\n\t\t\t<VERS vnumber=\"13\"> From there they traveled through the Ephraimite hill country and arrived at Micah's house.</VERS>\n\t\t\t<VERS vnumber=\"14\"> The five men who had gone to spy out the land of Laish said to their kinsmen, \"Do you realize that inside these houses are an ephod, some personal idols, a carved image, and a metal image? Decide now what you want to do.\" </VERS>\n\t\t\t<VERS vnumber=\"15\"> They stopped there, went inside the young Levite's house (which belonged to Micah), and asked him how he was doing.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Meanwhile the six hundred Danites, fully armed, stood at the entrance to the gate.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The five men who had gone to spy out the land broke in and stole the carved image, the ephod, the personal idols, and the metal image, while the priest was standing at the entrance to the gate with the six hundred fully armed men.</VERS>\n\t\t\t<VERS vnumber=\"18\"> When these men broke into Micah's house and stole the carved image, the ephod, the personal idols, and the metal image, the priest said to them, \"What are you doing?\" </VERS>\n\t\t\t<VERS vnumber=\"19\"> They said to him, \"Shut up! Put your hand over your mouth and come with us! You can be our adviser and priest. Wouldn't it be better to be a priest for a whole Israelite tribe than for just one man's family?\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> The priest was happy. He took the ephod, the personal idols, and the carved image and joined the group.</VERS>\n\t\t\t<VERS vnumber=\"21\"> They turned and went on their way, but they walked behind the children, the cattle, and their possessions.</VERS>\n\t\t\t<VERS vnumber=\"22\"> After they had gone a good distance from Micah's house, Micah's neighbors gathered together and caught up with the Danites. </VERS>\n\t\t\t<VERS vnumber=\"23\"> When they called out to the Danites, the Danites turned around and said to Micah, \"Why have you gathered together?\" </VERS>\n\t\t\t<VERS vnumber=\"24\"> He said, \"You stole my gods that I made, as well as this priest, and then went away. What do I have left? How can you have the audacity to say to me, 'What do you want?'\"</VERS>\n\t\t\t<VERS vnumber=\"25\"> The Danites said to him, \"Don't say another word to us, or some very angry men will attack you, and you and your family will die.\"</VERS>\n\t\t\t<VERS vnumber=\"26\"> The Danites went on their way; when Micah realized they were too strong to resist, he turned around and went home.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Now the Danites took what Micah had made, as well as his priest, and came to Laish, where the people were undisturbed and unsuspecting. They struck them down with the sword and burned the city.</VERS>\n\t\t\t<VERS vnumber=\"28\"> No one came to the rescue because the city was far from Sidon and they had no dealings with anyone. The city was in a valley near Beth Rehob. The Danites rebuilt the city and occupied it. </VERS>\n\t\t\t<VERS vnumber=\"29\"> They named it Dan after their ancestor, who was one of Israel's sons. But the city's name used to be Laish. </VERS>\n\t\t\t<VERS vnumber=\"30\"> The Danites worshiped the carved image. Jonathan, descendant of Gershom, son of Moses, and his descendants served as priests for the tribe of Dan until the time of the exile. </VERS>\n\t\t\t<VERS vnumber=\"31\"> They worshiped Micah's carved image the whole time God's authorized shrine was in Shiloh.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"19\">\n\t\t\t<VERS vnumber=\"1\"> In those days Israel had no king. There was a Levite living temporarily in the remote region of the Ephraimite hill country. He acquired a concubine from Bethlehem in Judah.</VERS>\n\t\t\t<VERS vnumber=\"2\"> However, she got angry at him and went home to her father's house in Bethlehem in Judah. When she had been there four months, </VERS>\n\t\t\t<VERS vnumber=\"3\"> her husband came after her, hoping he could convince her to return. He brought with him his servant and a pair of donkeys. When she brought him into her father's house and the girl's father saw him, he greeted him warmly.</VERS>\n\t\t\t<VERS vnumber=\"4\"> His father-in-law, the girl's father, persuaded him to stay with him for three days, and they ate and drank together, and spent the night there.</VERS>\n\t\t\t<VERS vnumber=\"5\"> On the fourth day they woke up early and the Levite got ready to leave. But the girl's father said to his son-in-law, \"Have a bite to eat for some energy, then you can go.\" </VERS>\n\t\t\t<VERS vnumber=\"6\"> So the two of them sat down and had a meal together. Then the girl's father said to the man, \"Why not stay another night and have a good time!\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> When the man got ready to leave, his father-in-law convinced him to stay another night.</VERS>\n\t\t\t<VERS vnumber=\"8\"> He woke up early in the morning on the fifth day so he could leave, but the girl's father said, \"Get some energy. Wait until later in the day to leave!\" So they ate a meal together. </VERS>\n\t\t\t<VERS vnumber=\"9\"> When the man got ready to leave with his concubine and his servant, his father-in-law, the girl's father, said to him, \"Look! The day is almost over! Stay another night! Since the day is over, stay another night here and have a good time. You can get up early tomorrow and start your trip home.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> But the man did not want to stay another night. He left and traveled as far as Jebus (that is, Jerusalem). He had with him a pair of saddled donkeys and his concubine.</VERS>\n\t\t\t<VERS vnumber=\"11\"> When they got near Jebus, it was getting quite late and the servant said to his master, \"Come on, let's stop at this Jebusite city and spend the night in it.\" </VERS>\n\t\t\t<VERS vnumber=\"12\"> But his master said to him, \"We should not stop at a foreign city where non-Israelites live. We will travel on to Gibeah.\" </VERS>\n\t\t\t<VERS vnumber=\"13\"> He said to his servant, \"Come on, we will go into one of the other towns and spend the night in Gibeah or Ramah.\" </VERS>\n\t\t\t<VERS vnumber=\"14\"> So they traveled on, and the sun went down when they were near Gibeah in the territory of Benjamin.</VERS>\n\t\t\t<VERS vnumber=\"15\"> They stopped there and decided to spend the night in Gibeah. They came into the city and sat down in the town square, but no one invited them to spend the night.</VERS>\n\t\t\t<VERS vnumber=\"16\"> But then an old man passed by, returning at the end of the day from his work in the field. The man was from the Ephraimite hill country; he was living temporarily in Gibeah. (The residents of the town were Benjaminites.)</VERS>\n\t\t\t<VERS vnumber=\"17\"> When he looked up and saw the traveler in the town square, the old man said, \"Where are you heading? Where do you come from?\" </VERS>\n\t\t\t<VERS vnumber=\"18\"> The Levite said to him, \"We are traveling from Bethlehem in Judah to the remote region of the Ephraimite hill country. That's where I'm from. I had business in Bethlehem in Judah, but now I'm heading home. But no one has invited me into their home. </VERS>\n\t\t\t<VERS vnumber=\"19\"> We have enough straw and grain for our donkeys, and there is enough food and wine for me, your female servant, and the young man who is with your servants. We lack nothing.\" </VERS>\n\t\t\t<VERS vnumber=\"20\"> The old man said, \"Everything is just fine! I will take care of all your needs. But don't spend the night in the town square.\" </VERS>\n\t\t\t<VERS vnumber=\"21\"> So he brought him to his house and fed the donkeys. They washed their feet and had a meal.</VERS>\n\t\t\t<VERS vnumber=\"22\"> They were having a good time, when suddenly some men of the city, some good-for-nothings, surrounded the house and kept beating on the door. They said to the old man who owned the house, \"Send out the man who came to visit you so we can have sex with him.\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> The man who owned the house went outside and said to them, \"No, my brothers! Don't do this wicked thing! After all, this man is a guest in my house. Don't do such a disgraceful thing!</VERS>\n\t\t\t<VERS vnumber=\"24\"> Here are my virgin daughter and my guest's concubine. I will send them out and you can abuse them and do to them whatever you like. But don't do such a disgraceful thing to this man!\"</VERS>\n\t\t\t<VERS vnumber=\"25\"> The men refused to listen to him, so the Levite grabbed his concubine and made her go outside. They raped her and abused her all night long until morning. They let her go at dawn.</VERS>\n\t\t\t<VERS vnumber=\"26\"> The woman arrived back at daybreak and was sprawled out on the doorstep of the house where her master was staying until it became light.</VERS>\n\t\t\t<VERS vnumber=\"27\"> When her master got up in the morning, opened the doors of the house, and went outside to start on his journey, there was the woman, his concubine, sprawled out on the doorstep of the house with her hands on the threshold. </VERS>\n\t\t\t<VERS vnumber=\"28\"> He said to her, \"Get up, let's leave!\" But there was no response. He put her on the donkey and went home.</VERS>\n\t\t\t<VERS vnumber=\"29\"> When he got home, he took a knife, grabbed his concubine, and carved her up into twelve pieces. Then he sent the pieces throughout Israel.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Everyone who saw the sight said, \"Nothing like this has happened or been witnessed during the entire time since the Israelites left the land of Egypt! Take careful note of it! Discuss it and speak!\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"20\">\n\t\t\t<VERS vnumber=\"1\"> All the Israelites from Dan to Beer Sheba and from the land of Gilead left their homes and assembled together before the LORD at Mizpah. </VERS>\n\t\t\t<VERS vnumber=\"2\"> The leaders of all the people from all the tribes of Israel took their places in the assembly of God's people, which numbered four hundred thousand sword-wielding foot soldiers. </VERS>\n\t\t\t<VERS vnumber=\"3\"> The Benjaminites heard that the Israelites had gone up to Mizpah. Then the Israelites said, \"Explain how this wicked thing happened!\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> The Levite, the husband of the murdered woman, spoke up, \"I and my concubine stopped in Gibeah in the territory of Benjamin to spend the night. </VERS>\n\t\t\t<VERS vnumber=\"5\"> The leaders of Gibeah attacked me and at night surrounded the house where I was staying. They wanted to kill me; instead they abused my concubine so badly that she died. </VERS>\n\t\t\t<VERS vnumber=\"6\"> I grabbed hold of my concubine and carved her up and sent the pieces throughout the territory occupied by Israel, because they committed such an unthinkable atrocity in Israel.</VERS>\n\t\t\t<VERS vnumber=\"7\"> All you Israelites, make a decision here!\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> All Israel rose up in unison and said, \"Not one of us will go home! Not one of us will return to his house! </VERS>\n\t\t\t<VERS vnumber=\"9\"> Now this is what we will do to Gibeah: We will attack the city as the lot dictates.</VERS>\n\t\t\t<VERS vnumber=\"10\"> We will take ten of every group of a hundred men from all the tribes of Israel (and a hundred of every group of a thousand, and a thousand of every group of ten thousand) to get supplies for the army. When they arrive in Gibeah of Benjamin they will punish them for the atrocity which they committed in Israel.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> So all the men of Israel gathered together at the city as allies.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The tribes of Israel sent men throughout the tribe of Benjamin, saying, \"How could such a wicked thing take place?</VERS>\n\t\t\t<VERS vnumber=\"13\"> Now, hand over the good-for-nothings in Gibeah so we can execute them and purge Israel of wickedness.\" But the Benjaminites refused to listen to their Israelite brothers. </VERS>\n\t\t\t<VERS vnumber=\"14\"> The Benjaminites came from their cities and assembled at Gibeah to make war against the Israelites. </VERS>\n\t\t\t<VERS vnumber=\"15\"> That day the Benjaminites mustered from their cities twenty-six thousand sword-wielding soldiers, besides seven hundred well-trained soldiers from Gibeah.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Among this army were seven hundred specially-trained left-handed soldiers. Each one could sling a stone and hit even the smallest target.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The men of Israel (not counting Benjamin) had mustered four hundred thousand sword-wielding soldiers, every one an experienced warrior.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The Israelites went up to Bethel and asked God, \"Who should lead the charge against the Benjaminites?\" The LORD said, \"Judah should lead.\" </VERS>\n\t\t\t<VERS vnumber=\"19\"> The Israelites got up the next morning and moved against Gibeah. </VERS>\n\t\t\t<VERS vnumber=\"20\"> The men of Israel marched out to fight Benjamin; they arranged their battle lines against Gibeah. </VERS>\n\t\t\t<VERS vnumber=\"21\"> The Benjaminites attacked from Gibeah and struck down twenty-two thousand Israelites that day.</VERS>\n\t\t\t<VERS vnumber=\"22\"> The Israelite army took heart and once more arranged their battle lines, in the same place where they had taken their positions the day before. </VERS>\n\t\t\t<VERS vnumber=\"23\"> The Israelites went up and wept before the LORD until evening. They asked the LORD, \"Should we again march out to fight the Benjaminites, our brothers?\" The LORD said, \"Attack them!\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> So the Israelites marched toward the Benjaminites the next day. </VERS>\n\t\t\t<VERS vnumber=\"25\"> The Benjaminites again attacked them from Gibeah and struck down eighteen thousand sword-wielding Israelite soldiers.</VERS>\n\t\t\t<VERS vnumber=\"26\"> So all the Israelites, the whole army, went up to Bethel. They wept and sat there before the LORD; they did not eat anything that day until evening. They offered up burnt sacrifices and tokens of peace to the LORD. </VERS>\n\t\t\t<VERS vnumber=\"27\"> The Israelites asked the LORD (for the ark of God's covenant was there in those days;</VERS>\n\t\t\t<VERS vnumber=\"28\"> Phinehas son of Eleazar, son of Aaron, was serving the LORD in those days), \"Should we once more march out to fight the Benjaminites our brothers, or should we quit?\" The LORD said, \"Attack, for tomorrow I will hand them over to you.\"</VERS>\n\t\t\t<VERS vnumber=\"29\"> So Israel hid men in ambush outside Gibeah.</VERS>\n\t\t\t<VERS vnumber=\"30\"> The Israelites attacked the Benjaminites the next day; they took their positions against Gibeah just as they had done before. </VERS>\n\t\t\t<VERS vnumber=\"31\"> The Benjaminites attacked the army, leaving the city unguarded. They began to strike down their enemy just as they had done before. On the main roads (one leads to Bethel, the other to Gibeah) and in the field, they struck down about thirty Israelites. </VERS>\n\t\t\t<VERS vnumber=\"32\"> Then the Benjaminites said, \"They are defeated just as before.\" But the Israelites said, \"Let's retreat and lure them away from the city into the main roads.\" </VERS>\n\t\t\t<VERS vnumber=\"33\">  All the men of Israel got up from their places and took their positions at Baal Tamar, while the Israelites hiding in ambush jumped out of their places west of Gibeah.</VERS>\n\t\t\t<VERS vnumber=\"34\"> Ten thousand men, well-trained soldiers from all Israel, then made a frontal assault against Gibeah, the battle was fierce. But the Benjaminites did not realize that disaster was at their doorstep.</VERS>\n\t\t\t<VERS vnumber=\"35\"> The LORD annihilated Benjamin before Israel; the Israelites struck down that day 25,100 sword-wielding Benjaminites.</VERS>\n\t\t\t<VERS vnumber=\"36\"> Then the Benjaminites saw they were defeated. The Israelites retreated before Benjamin, because they had confidence in the men they had hid in ambush outside Gibeah. </VERS>\n\t\t\t<VERS vnumber=\"37\"> The men hiding in ambush made a mad dash to Gibeah. They attacked and put the sword to the entire city. </VERS>\n\t\t\t<VERS vnumber=\"38\"> The Israelites and the men hiding in ambush had arranged a signal. When the men hiding in ambush sent up a smoke signal from the city, </VERS>\n\t\t\t<VERS vnumber=\"39\"> the Israelites counterattacked. Benjamin had begun to strike down the Israelites; they struck down about thirty men. They said, \"There's no doubt about it! They are totally defeated as in the earlier battle.\" </VERS>\n\t\t\t<VERS vnumber=\"40\"> But when the signal, a pillar of smoke, began to rise up from the city, the Benjaminites turned around and saw the whole city going up in a cloud of smoke that rose high into the sky.</VERS>\n\t\t\t<VERS vnumber=\"41\"> When the Israelites turned around, the Benjaminites panicked because they could see that disaster was on their doorstep.</VERS>\n\t\t\t<VERS vnumber=\"42\"> They retreated before the Israelites, taking the road to the wilderness. But the battle overtook them as men from the surrounding cities struck them down.</VERS>\n\t\t\t<VERS vnumber=\"43\"> They surrounded the Benjaminites, chased them from Nohah, and annihilated them all the way to a spot east of Geba.</VERS>\n\t\t\t<VERS vnumber=\"44\"> Eighteen thousand Benjaminites, all of them capable warriors, fell dead.</VERS>\n\t\t\t<VERS vnumber=\"45\"> The rest turned and ran toward the wilderness, heading toward the cliff of Rimmon. But the Israelites caught five thousand of them on the main roads. They stayed right on their heels all the way to Gidom and struck down two thousand more. </VERS>\n\t\t\t<VERS vnumber=\"46\"> That day twenty-five thousand sword-wielding Benjaminites fell in battle, all of them capable warriors.</VERS>\n\t\t\t<VERS vnumber=\"47\"> Six hundred survivors turned and ran away to the wilderness, to the cliff of Rimmon. They stayed there four months.</VERS>\n\t\t\t<VERS vnumber=\"48\"> The Israelites returned to the Benjaminite towns and put the sword to them. They wiped out the cities, the animals, and everything they could find. They set fire to every city in their path.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"21\">\n\t\t\t<VERS vnumber=\"1\"> The Israelites had taken an oath in Mizpah, saying, \"Not one of us will allow his daughter to marry a Benjaminite.\"</VERS>\n\t\t\t<VERS vnumber=\"2\"> So the people came to Bethel and sat there before God until evening, weeping loudly and uncontrollably.</VERS>\n\t\t\t<VERS vnumber=\"3\"> They said, \"Why, O LORD God of Israel, has this happened in Israel?\" An entire tribe has disappeared from Israel today!\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> The next morning the people got up early and built an altar there. They offered up burnt sacrifices and token of peace.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The Israelites asked, \"Who from all the Israelite tribes has not assembled before the LORD?\" They had made a solemn oath that whoever did not assemble before the LORD at Mizpah must certainly be executed.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The Israelites regretted what had happened to their brother Benjamin. They said, \"Today we cut off an entire tribe from Israel! </VERS>\n\t\t\t<VERS vnumber=\"7\"> How can we find wives for those who are left? After all, we took an oath in the LORD's name not to give them our daughters as wives.\" </VERS>\n\t\t\t<VERS vnumber=\"8\"> So they asked, \"Who from all the Israelite tribes did not assemble before the LORD at Mizpah?\" Now it just so happened no one from Jabesh Gilead had come to the gathering.</VERS>\n\t\t\t<VERS vnumber=\"9\"> When they took roll call, they noticed none of the inhabitants of Jabesh Gilead were there. </VERS>\n\t\t\t<VERS vnumber=\"10\"> So the assembly sent 12,000 capable warriors against Jabesh Gilead. They commanded them, \"Go and kill with your swords the inhabitants of Jabesh Gilead, including the women and little children. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Do this: exterminate every male, as well as every woman who has had sexual relations with a male. But spare the lives of any virgins.\" So they did as instructed.</VERS>\n\t\t\t<VERS vnumber=\"12\"> They found among the inhabitants of Jabesh Gilead four hundred young girls who were virgins, they had never had sexual relations with a male. They brought them back to the camp at Shiloh in the land of Canaan.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The entire assembly sent messengers to the Benjaminites at the cliff of Rimmon and assured them they would not be harmed.</VERS>\n\t\t\t<VERS vnumber=\"14\"> The Benjaminites returned at that time, and the Israelites gave to them the women they had spared from Jabesh Gilead. But there were not enough to go around.</VERS>\n\t\t\t<VERS vnumber=\"15\"> The people regretted what had happened to Benjamin because the LORD had weakened the Israelite tribes. </VERS>\n\t\t\t<VERS vnumber=\"16\"> The leaders of the assembly said, \"How can we find wives for those who are left? After all, the Benjaminite women have been wiped out. </VERS>\n\t\t\t<VERS vnumber=\"17\"> The remnant of Benjamin must be preserved. An entire Israelite tribe should not be wiped out.</VERS>\n\t\t\t<VERS vnumber=\"18\"> But we can't allow our daughters to marry them, for the Israelites took an oath, saying, 'Whoever gives a woman to a Benjaminite will be destroyed!'</VERS>\n\t\t\t<VERS vnumber=\"19\"> However, there is an annual festival to the LORD in Shiloh, which is north of Bethel (east of the main road that goes up from Bethel to Shechem) and south of Lebonah.\" </VERS>\n\t\t\t<VERS vnumber=\"20\"> So they commanded the Benjaminites, \"Go hide in the vineyards,</VERS>\n\t\t\t<VERS vnumber=\"21\"> and keep your eyes open. When you see the daughters of Shiloh coming out to dance in the celebration, jump out from the vineyards. Each one of you, catch yourself a wife from among the daughters of Shiloh and then go home to the land of Benjamin. </VERS>\n\t\t\t<VERS vnumber=\"22\"> When their fathers or brothers come and protest to us, we'll say to them, \"Do us a favor and let them be, for we could not get each one a wife through battle. Don't worry about breaking your oath! You would only be guilty if you had voluntarily given them wives.'\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> The Benjaminites did as instructed. They abducted two hundred of the dancing girls to be their wives. They went home to their own territory, rebuilt their cities, and settled down.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Then the Israelites dispersed from there to their respective tribal and clan territories. Each went from there to his own property.</VERS>\n\t\t\t<VERS vnumber=\"25\"> In those days Israel had no king. Each man did what he considered to be right.</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"8\" bname=\"Ruth\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> During the time of the judges there was a famine in the land of Judah. So a man from Bethlehem in Judah went to live as a resident foreigner in the region of Moab, along with his wife and two sons.</VERS>\n\t\t\t<VERS vnumber=\"2\"> (Now the man's name was Elimelech, his wife was Naomi, and his two sons were Mahlon and Kilion. They were of the clan of Ephrath from Bethlehem in Judah.) They entered the region of Moab and settled there.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Sometime later Naomi's husband Elimelech died, so she and her two sons were left alone. </VERS>\n\t\t\t<VERS vnumber=\"4\"> So her sons married Moabite women. (One was named Orpah and the other Ruth.) And they continued to live there about ten years. </VERS>\n\t\t\t<VERS vnumber=\"5\"> Then Naomi's two sons, Mahlon and Kilion, also died. So the woman was left all alone, bereaved of her two children as well as her husband!</VERS>\n\t\t\t<VERS vnumber=\"6\"> So she decided to return home from the region of Moab, accompanied by her daughters-in-law, because while she was living in Moab she had heard that the LORD had shown concern for his people, reversing the famine by providing abundant crops.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Now as she and her two daughters-in-law began to leave the place where she had been living to return to the land of Judah,</VERS>\n\t\t\t<VERS vnumber=\"8\"> Naomi said to her two daughters-in-law, \"Listen to me! Each of you should return to your mother's home! May the LORD show you the same kind of devotion that you have shown to your deceased husbands and to me!</VERS>\n\t\t\t<VERS vnumber=\"9\"> May the LORD enable each of you to find security in the home of a new husband!\" Then she kissed them goodbye and they wept loudly.</VERS>\n\t\t\t<VERS vnumber=\"10\"> But they said to her, \"No! We will return with you to your people.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> But Naomi replied, \"Go back home, my daughters! There is no reason for you to return to Judah with me! I am no longer capable of giving birth to sons who might become your husbands!</VERS>\n\t\t\t<VERS vnumber=\"12\"> Go back home, my daughters! For I am too old to get married again. Even if I thought that there was hope that I could get married tonight and conceive sons,</VERS>\n\t\t\t<VERS vnumber=\"13\"> surely you would not want to wait until they were old enough to marry! Surely you would not remain unmarried all that time! No, my daughters, you must not return with me. For my intense suffering is too much for you to bear. For the LORD is afflicting me!\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> Again they wept loudly. Then Orpah kissed her mother-in-law goodbye, but Ruth clung tightly to her.</VERS>\n\t\t\t<VERS vnumber=\"15\"> So Naomi said, \"Look, your sister-in-law is returning to her people and to her god. Follow your sister-in-law back home!\" </VERS>\n\t\t\t<VERS vnumber=\"16\"> But Ruth replied, \"Stop urging me to abandon you! For wherever you go, I will go. Wherever you live, I will live. Your people will become my people, and your God will become my God.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Wherever you die, I will die, and there I will be buried. May the LORD punish me severely if I do not keep my promise! Only death will be able to separate me from you!\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> When Naomi realized that Ruth was determined to go with her, she stopped trying to dissuade her.</VERS>\n\t\t\t<VERS vnumber=\"19\"> So the two of them journeyed together until they arrived in Bethlehem. When they entered Bethlehem, the whole village was excited about their arrival. The women of the village said, \"Can this be Naomi?\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> But she replied to them, \"Don't call me 'Naomi'! Call me 'Mara' because the Sovereign One has treated me very harshly.</VERS>\n\t\t\t<VERS vnumber=\"21\"> I left here full, but the LORD has caused me to return empty-handed. Why do you call me 'Naomi,' seeing that the LORD has opposed me, and the Sovereign One has caused me to suffer?\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> So Naomi returned, accompanied by her Moabite daughter-in-law Ruth, who came back with her from the region of Moab. (Now they arrived in Bethlehem at the beginning of the barley harvest.)</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> Now Naomi had a relative on her husband's side of the family named Boaz. He was a wealthy, prominent man from the clan of Elimelech.</VERS>\n\t\t\t<VERS vnumber=\"2\"> One day Ruth the Moabite said to Naomi, \"Let me go to the fields so I can gather grain behind whoever permits me to do so.\" Naomi replied, \"You may go, my daughter.\" </VERS>\n\t\t\t<VERS vnumber=\"3\"> So Ruth went and gathered grain in the fields behind the harvesters. Now she just happened to end up in the portion of the field belonging to Boaz, who was from the clan of Elimelech.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Now at that very moment, Boaz arrived from Bethlehem and greeted the harvesters, \"May the LORD be with you!\" They replied, \"May the LORD bless you!\" </VERS>\n\t\t\t<VERS vnumber=\"5\"> Boaz asked his servant in charge of the harvesters, \"To whom does this young woman belong?\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> The servant in charge of the harvesters replied, \"She's the young Moabite woman who came back with Naomi from the region of Moab.</VERS>\n\t\t\t<VERS vnumber=\"7\"> She asked, 'May I follow the harvesters and gather grain among the bundles?' Since she arrived she has been working hard from this morning until now, except for sitting in the resting hut a short time.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> So Boaz said to Ruth, \"Listen carefully, my dear! Do not leave to gather grain in another field. You need not go beyond the limits of this field. You may go along beside my female workers.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Take note of the field where the men are harvesting and follow behind with the female workers. I will tell the men to leave you alone. When you are thirsty, you may go to the water jars and drink some of the water the servants draw.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> Ruth knelt before him with her forehead to the ground and said to him, \"Why are you so kind and so attentive to me, even though I am a foreigner?\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> Boaz replied to her, \"I have been given a full report of all that you have done for your mother-in-law following the death of your husband, how you left your father and your mother, as well as your homeland, and came to live among people you did not know previously.</VERS>\n\t\t\t<VERS vnumber=\"12\"> May the LORD reward your efforts! May your acts of kindness be repaid fully by the LORD God of Israel, from whom you have sought protection!\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> She said, \"You really are being kind to me, sir, for you have reassured and encouraged me, your servant, even though I am not one of your servants!\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> Later during the mealtime Boaz said to her, \"Come here and have some food! Dip your bread in the vinegar!\" So she sat down beside the harvesters. Then he handed her some roasted grain. She ate until she was full and saved the rest.</VERS>\n\t\t\t<VERS vnumber=\"15\"> When she got up to gather grain, Boaz told his male servants, \"Let her gather grain even among the bundles! Don't chase her off!</VERS>\n\t\t\t<VERS vnumber=\"16\"> Make sure you pull out ears of grain for her and drop them so she can gather them up. Don't tell her not to!\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> So she gathered grain in the field until evening. When she threshed what she had gathered, it came to about thirty pounds of barley!</VERS>\n\t\t\t<VERS vnumber=\"18\"> She carried it back to town, and her mother-in-law saw how much grain she had gathered. Then Ruth gave her the roasted grain she had saved from mealtime.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Her mother-in-law asked her, \"Where did you gather grain today? Where did you work? May the one who took notice of you be rewarded!\" So Ruth told her mother-in-law with whom she had worked. She said, \"The name of the man with whom I worked today is Boaz.\" </VERS>\n\t\t\t<VERS vnumber=\"20\"> Naomi said to her daughter-in-law, \"May he be rewarded by the LORD because he has shown loyalty to the living on behalf of the dead!\" Then Naomi said to her, \"This man is a close relative of ours; he is our guardian.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> Ruth the Moabite replied, \"He even told me, 'You may go along beside my servants until they have finished gathering all my harvest!'\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> Naomi then said to her daughter-in-law Ruth, \"It is good, my daughter, that you should go out to work with his female servants. That way you will not be harmed, which could happen in another field.\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> So Ruth worked beside Boaz's female servants, gathering grain until the end of the barley harvest as well as the wheat harvest. After that she stayed home with her mother-in-law.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> At that time, Naomi, her mother-in-law, said to her, \"My daughter, I must find a home for you so you will be secure.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Now Boaz, with whose female servants you worked, is our close relative. Look, tonight he is winnowing barley at the threshing floor.</VERS>\n\t\t\t<VERS vnumber=\"3\"> So bathe yourself, rub on some perfumed oil, and get dressed up. Then go down to the threshing floor. But don't let the man know you're there until he finishes his meal.</VERS>\n\t\t\t<VERS vnumber=\"4\"> When he gets ready to go to sleep, take careful notice of the place where he lies down. Then go, uncover his legs, and lie down beside him. He will tell you what you should do.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> Ruth replied to Naomi, \"I will do everything you have told me to do.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> So she went down to the threshing floor and did everything her mother-in-law had instructed her to do.</VERS>\n\t\t\t<VERS vnumber=\"7\"> When Boaz had finished his meal and was feeling satisfied, he lay down to sleep at the far end of the grain heap. Then Ruth crept up quietly, uncovered his legs, and lay down beside him.</VERS>\n\t\t\t<VERS vnumber=\"8\"> In the middle of the night he was startled and turned over. Now he saw a woman lying beside him!</VERS>\n\t\t\t<VERS vnumber=\"9\"> He said, \"Who are you?\" She replied, \"I am Ruth, your servant. Marry your servant, for you are a guardian of the family interests.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> He said, \"May you be rewarded by the LORD, my dear! This act of devotion is greater than what you did before. For you have not sought to marry one of the young men, whether rich or poor.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Now, my dear, don't worry! I intend to do for you everything you propose, for everyone in the village knows that you are a worthy woman.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Now yes, it is true that I am a guardian, but there is another guardian who is a closer relative than I am. </VERS>\n\t\t\t<VERS vnumber=\"13\"> Remain here tonight. Then in the morning, if he agrees to marry you, fine, let him do so. But if he does not want to do so, I promise, as surely as the LORD lives, to marry you. Sleep here until morning.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> So she slept beside him until morning. She woke up while it was still dark. Boaz thought, \"No one must know that a woman visited the threshing floor.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> Then he said, \"Hold out the shawl you are wearing and grip it tightly.\" As she held it tightly, he measured out about sixty pounds of barley into the shawl and put it on her shoulders. Then he went into town, </VERS>\n\t\t\t<VERS vnumber=\"16\"> and she returned to her mother-in-law. When Ruth returned to her mother-in-law, Naomi asked, \"How did things turn out for you, my daughter?\" Ruth told her about all the man had done for her.</VERS>\n\t\t\t<VERS vnumber=\"17\"> She said, \"He gave me these sixty pounds of barley, for he said to me, 'Do not go to your mother-in-law empty-handed.'\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> Then Naomi said, \"Stay put, my daughter, until you know how the matter turns out. For the man will not rest until he has taken care of the matter today.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\"> Now Boaz went up to the village gate and sat there. Then along came the guardian whom Boaz had mentioned to Ruth! Boaz said, \"Come here and sit down, 'John Doe'!\" So he came and sat down.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Boaz chose ten of the village leaders and said, \"Sit down here!\" So they sat down. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Then Boaz said to the guardian, \"Naomi, who has returned from the region of Moab, is selling the portion of land that belongs to our relative Elimelech. </VERS>\n\t\t\t<VERS vnumber=\"4\"> So I am legally informing you: Acquire it before those sitting here and before the leaders of my people! If you want to exercise your right to redeem it, then do so. But if not, then tell me so I will know. For you possess the first option to redeem it; I am next in line after you.\" He replied, \"I will redeem it.\" </VERS>\n\t\t\t<VERS vnumber=\"5\"> Then Boaz said, \"When you acquire the field from Naomi, you must also acquire Ruth the Moabite, the wife of our deceased relative, in order to preserve his family name by raising up a descendant who will inherit his property.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> The guardian said, \"Then I am unable to redeem it, for I would ruin my own inheritance in that case. You may exercise my redemption option, for I am unable to redeem it.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> (Now this used to be the customary way to finalize a transaction involving redemption in Israel: A man would remove his sandal and give it to the other party. This was a legally binding act in Israel.) </VERS>\n\t\t\t<VERS vnumber=\"8\"> So the guardian said to Boaz, \"You may acquire it,\" and he removed his sandal.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Then Boaz said to the leaders and all the people, \"You are witnesses today that I have acquired from Naomi all that belonged to Elimelech, Kilion, and Mahlon.</VERS>\n\t\t\t<VERS vnumber=\"10\"> I have also acquired Ruth the Moabite, the wife of Mahlon, as my wife to raise up a descendant who will inherit his property so the name of the deceased might not disappear from among his relatives and from his village. You are witnesses today.\" </VERS>\n\t\t\t<VERS vnumber=\"11\"> All the people who were at the gate and the elders replied, \"We are witnesses. May the LORD make the woman who is entering your home like Rachel and Leah, both of whom built up the house of Israel! May you prosper in Ephrathah and become famous in Bethlehem.</VERS>\n\t\t\t<VERS vnumber=\"12\"> May your family become like the family of Perez, whom Tamar bore to Judah, through the descendants the LORD gives you by this young woman.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> So Boaz married Ruth and had sexual relations with her. The LORD enabled her to conceive and she gave birth to a son. </VERS>\n\t\t\t<VERS vnumber=\"14\"> The village women said to Naomi, \"May the LORD be praised because he has not left you without a guardian today! May he become famous in Israel!</VERS>\n\t\t\t<VERS vnumber=\"15\"> He will encourage you and provide for you when you are old, for your daughter-in-law, who loves you, has given him birth. She is better to you than seven sons!\" </VERS>\n\t\t\t<VERS vnumber=\"16\"> Naomi took the child and placed him on her lap; she became his caregiver.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The neighbor women named him, saying, \"A son has been born to Naomi.\" They named him Obed. Now he became the father of Jesse, David's father!</VERS>\n\t\t\t<VERS vnumber=\"18\"> These are the descendants of Perez: Perez was the father of Hezron, </VERS>\n\t\t\t<VERS vnumber=\"19\"> Hezron was the father of Ram, Ram was the father of Amminadab,</VERS>\n\t\t\t<VERS vnumber=\"20\"> Amminadab was the father of Nachshon, Nachshon was the father of Salmah,</VERS>\n\t\t\t<VERS vnumber=\"21\"> Salmon was the father of Boaz, Boaz was the father of Obed, </VERS>\n\t\t\t<VERS vnumber=\"22\"> Obed was the father of Jesse, and Jesse was the father of David.</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"9\" bname=\"1 Samuel\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> There was a man from Ramathaim Zophim, from the hill country of Ephraim, whose name was Elkanah. He was the son of Jeroham, the son of Elihu, the son of Tohu, the son of Zuph, an Ephraimite. </VERS>\n\t\t\t<VERS vnumber=\"2\"> He had two wives; the name of the first was Hannah and the name of the second was Peninnah. Now Peninnah had children, but Hannah was childless.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Year after year this man would go up from his city to worship and to sacrifice to the LORD of hosts at Shiloh. It was there that the two sons of Eli, Hophni and Phineas, served as the LORD's priests. </VERS>\n\t\t\t<VERS vnumber=\"4\"> Whenever the day came for Elkanah to sacrifice, he used to give meat portions to his wife Peninnah and to all her sons and daughters.</VERS>\n\t\t\t<VERS vnumber=\"5\"> But he would give a double portion to Hannah, because he especially loved her. Now the LORD had not enabled her to have children.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Her rival wife used to upset her and make her worry, for the LORD had not enabled her to have children. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Peninnah would behave this way year after year. Whenever Hannah went up to the LORD's house, Peninnah would upset her so that she would weep and refuse to eat. </VERS>\n\t\t\t<VERS vnumber=\"8\"> Finally her husband Elkanah said to her, \"Hannah, why do you weep and not eat? Why are you so sad? Am I not better to you than ten sons?\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> On one occasion in Shiloh, after they had finished eating and drinking, Hannah got up. (Now at the time Eli the priest was sitting in his chair by the doorpost of the LORD's temple.) </VERS>\n\t\t\t<VERS vnumber=\"10\"> She was very upset as she prayed to the LORD, and she was weeping uncontrollably.</VERS>\n\t\t\t<VERS vnumber=\"11\"> She made a vow saying, \"O LORD of hosts, if you will look with compassion on the suffering of your female servant, remembering me and not forgetting your servant, and give a male child to your servant, then I will dedicate him to the LORD all the days of his life. His hair will never be cut.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> As she continued praying to the LORD, Eli was watching her mouth. </VERS>\n\t\t\t<VERS vnumber=\"13\"> Now Hannah was speaking from her heart. Although her lips were moving, her voice was inaudible. Eli therefore thought she was drunk.</VERS>\n\t\t\t<VERS vnumber=\"14\"> So he said to her, \"How often do you intend to get drunk? Put away your wine!\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> But Hannah replied, \"That's not the way it is, my lord! I am under a great deal of stress. I have drunk neither wine nor beer. Rather, I have poured out my soul to the LORD. </VERS>\n\t\t\t<VERS vnumber=\"16\"> Don't consider your servant a wicked woman, for until now I have spoken from my deep pain and anguish.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> Eli replied, \"Go in peace, and may the God of Israel grant the request that you have asked of him.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> She said, \"May I, your servant, find favor in your sight.\" So the woman went her way and got something to eat. Her face no longer looked sad.</VERS>\n\t\t\t<VERS vnumber=\"19\"> They got up early the next morning and after worshiping the LORD, they returned to their home at Ramah. Elkanah had marital relations with his wife Hannah, and the LORD remembered her. </VERS>\n\t\t\t<VERS vnumber=\"20\"> After some time Hannah became pregnant and gave birth to a son. She named him Samuel, thinking, \"I asked the LORD for him.</VERS>\n\t\t\t<VERS vnumber=\"21\"> This man Elkanah went up with all his family to make the yearly sacrifice to the LORD and to keep his vow,</VERS>\n\t\t\t<VERS vnumber=\"22\"> but Hannah did not go up with them. Instead she told her husband, \"Once the boy is weaned, I will bring him and appear before the LORD, and he will remain there from then on.\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> So her husband Elkanah said to her, \"Do what you think best. Stay until you have weaned him. May the LORD fulfill his promise.\" So the woman stayed and nursed her son until she had weaned him.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Once she had weaned him, she took him up with her, along with three bulls, an ephah of flour, and a container of wine. She brought him to the LORD's house at Shiloh, even though he was young.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Once the bull had been slaughtered, they brought the boy to Eli.</VERS>\n\t\t\t<VERS vnumber=\"26\"> She said, \"Just as surely as you are alive, my lord, I am the woman who previously stood here with you in order to pray to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"27\"> I prayed for this boy, and the LORD has given me the request that I asked of him.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Now I dedicate him to the LORD. From this time on he is dedicated to the LORD.\" Then they worshiped the LORD there.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> Hannah prayed, \"My heart rejoices in the LORD; my horn is exalted high because of the LORD. I loudly denounce my enemies, for I am happy that you delivered me.</VERS>\n\t\t\t<VERS vnumber=\"2\"> No one is holy like the LORD! There is no one other than you! There is no rock like our God!</VERS>\n\t\t\t<VERS vnumber=\"3\"> Don't keep speaking so arrogantly, letting proud talk come out of your mouth! For the LORD is a God who knows; he evaluates what people do.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The bows of warriors are shattered, but those who stumble find their strength reinforced.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Those who are well-fed hire themselves out to earn food, but the hungry no longer lack. Even the barren woman gives birth to seven, but the one with many children withers away.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The LORD both kills and gives life; he brings down to the grave and raises up.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The LORD impoverishes and makes wealthy; he humbles and he exalts.</VERS>\n\t\t\t<VERS vnumber=\"8\"> He lifts the weak from the dust; he raises the poor from the ash heap to seat them with princes and to bestow on them an honored position. The foundations of the earth belong to the LORD, and he has placed the world on them.</VERS>\n\t\t\t<VERS vnumber=\"9\"> He watches over his holy ones, but the wicked are made speechless in the darkness, for it is not by one's own strength that one prevails.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The LORD shatters his adversaries; he thunders against them from the heavens. The LORD executes judgment to the ends of the earth. He will strengthen his king and exalt the power of his anointed one.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> Then Elkanah went back home to Ramah. But the boy was serving the LORD under the supervision of Eli the priest.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The sons of Eli were wicked men. They did not recognize the LORD's authority.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Now the priests would always treat the people in the following way: Whenever anyone was making a sacrifice, while the meat was boiling, the priest's attendant would come with a three-pronged fork in his hand. </VERS>\n\t\t\t<VERS vnumber=\"14\"> He would jab it into the basin, kettle, caldron, or pot, and everything that the fork brought up the priest would take for himself. This is what they used to do to all the Israelites when they came there to Shiloh.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Even before they burned the fat, the priest's attendant would come and say to the person who was making the sacrifice, \"Hand over some meat for the priest to roast! He won't take boiled meat from you, but only raw.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> If the individual said to him, \"First let the fat be burned away, and then take for yourself whatever you wish,\" he would say, \"No! Hand it over right now! If you don't, I will take it forcibly!\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> The sin of these young men was very great in the LORD's sight, for they treated the LORD's offering with contempt.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Now Samuel was ministering before the LORD. The boy was dressed in a linen ephod.</VERS>\n\t\t\t<VERS vnumber=\"19\"> His mother used to make him a small robe and bring it up to him at regular intervals when she would go up with her husband to make the annual sacrifice.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Eli would bless Elkanah and his wife saying, \"May the LORD raise up for you descendants from this woman to replace the one that she dedicated to the LORD.\" Then they would go to their home. </VERS>\n\t\t\t<VERS vnumber=\"21\"> So the LORD graciously attended to Hannah, and she was able to conceive and gave birth to three sons and two daughters. The boy Samuel grew up at the LORD's sanctuary.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Now Eli was very old when he heard about everything that his sons used to do to all the people of Israel and how they used to have sex with the women who were stationed at the entrance to the tent of meeting. </VERS>\n\t\t\t<VERS vnumber=\"23\"> He said to them, \"Why do you behave in this way? For I hear about these evil things from all these people. </VERS>\n\t\t\t<VERS vnumber=\"24\"> This ought not to be, my sons! For the report that I hear circulating among the LORD's people is not good. </VERS>\n\t\t\t<VERS vnumber=\"25\"> If a man sins against a man, one may appeal to God on his behalf. But if a man sins against the LORD, who then will intercede for him?\" But Eli's sons would not listen to their father, for the LORD had decided to kill them.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Now the boy Samuel was growing up and finding favor both with the LORD and with people.</VERS>\n\t\t\t<VERS vnumber=\"27\"> A man of God came to Eli and said to him, \"This is what the LORD says: 'Did I not plainly reveal myself to your ancestor's house when they were in Egypt in the house of Pharaoh? </VERS>\n\t\t\t<VERS vnumber=\"28\"> I chose your ancestor from all the tribes of Israel to be my priest, to offer sacrifice on my altar, to burn incense, and to bear the ephod before me. I gave to your ancestor's house all the fire offerings made by the Israelites. </VERS>\n\t\t\t<VERS vnumber=\"29\"> Why are you scorning my sacrifice and my offering that I commanded for my dwelling place? You have honored your sons more than you have me by having made yourselves fat from the best parts of all the offerings of my people Israel.'</VERS>\n\t\t\t<VERS vnumber=\"30\"> Therefore the LORD, the God of Israel, says, 'I really did say that your house and your ancestor's house would serve me forever.' But now the LORD says, 'May it never be! For I will honor those who honor me, but those who despise me will be cursed! </VERS>\n\t\t\t<VERS vnumber=\"31\"> In fact, days are coming when I will remove your strength and the strength of your father's house. There will not be an old man in your house! </VERS>\n\t\t\t<VERS vnumber=\"32\"> You will see trouble in my dwelling place! Israel will experience blessings, but there will not be an old man in your house for all time.</VERS>\n\t\t\t<VERS vnumber=\"33\"> Any one of you that I do not cut off from my altar, I will cause your eyes to fail and will cause you grief. All of those born to your family will die in the prime of life.</VERS>\n\t\t\t<VERS vnumber=\"34\"> This will be a confirming sign for you that will be fulfilled through your two sons, Hophni and Phinehas: in a single day they both will die! </VERS>\n\t\t\t<VERS vnumber=\"35\"> Then I will raise up for myself a faithful priest. He will do what is in my heart and soul. I will build for him a secure dynasty and he will serve my chosen one for all time.</VERS>\n\t\t\t<VERS vnumber=\"36\"> Everyone who remains in your house will come to bow before him for a little money and for a scrap of bread. Each will say, 'Assign me to a priestly task so I can eat a scrap of bread.'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> Now the boy Samuel continued serving the LORD under Eli's supervision. Word from the LORD was rare in those days; revelatory visions were infrequent.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Eli's eyes had begun to fail, so that he was unable to see well. At that time he was lying down in his place,</VERS>\n\t\t\t<VERS vnumber=\"3\"> and the lamp of God had not yet been extinguished. Samuel was lying down in the temple of the LORD as well; the ark of God was also there.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The LORD called to Samuel, and he replied, \"Here I am!\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> Then he ran to Eli and said, \"Here I am, for you called me.\" But Eli said, \"I didn't call you. Go back and lie down.\" So he went back and lay down.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The LORD again called, \"Samuel!\" So Samuel got up and went to Eli and said, \"Here I am, for you called me.\" But Eli said, \"I didn't call you, my son. Go back and lie down.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> Now Samuel did not yet know the LORD; the word of the LORD had not yet been revealed to him.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Then the LORD called Samuel a third time. So he got up and went to Eli and said, \"Here I am, for you called me!\" Eli then realized that it was the LORD who was calling the boy.</VERS>\n\t\t\t<VERS vnumber=\"9\"> So Eli said to Samuel, \"Go back and lie down. When he calls you, say, \"Speak, LORD, for your servant is listening.\" So Samuel went back and lay down in his place.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Then the LORD came and stood nearby, calling as he had previously done, \"Samuel! Samuel!\" Samuel replied, \"Speak, for your servant is listening!\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> The LORD said to Samuel, \"Look! I am about to do something in Israel; when anyone hears about it, both of his ears will tingle. </VERS>\n\t\t\t<VERS vnumber=\"12\"> On that day I will carry out against Eli everything that I spoke about his house, from start to finish!</VERS>\n\t\t\t<VERS vnumber=\"13\"> You should tell him that I am about to judge his house forever because of the sin that he knew about. For his sons were cursing God, and he did not rebuke them.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Therefore I swore an oath to the house of Eli, 'The sin of the house of Eli can never be forgiven by sacrifice or by grain offering.'\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> So Samuel lay down until morning. Then he opened the doors of the LORD's house. But Samuel was afraid to tell Eli about the vision.</VERS>\n\t\t\t<VERS vnumber=\"16\"> However, Eli called Samuel and said, \"Samuel, my son!\" He replied, \"Here I am.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> Eli said, \"What message did he speak to you? Don't conceal it from me. God will judge you severely if you conceal from me anything that he said to you!\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> So Samuel told him everything. He did not hold back anything from him. Eli said, \"The LORD will do what he pleases.\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> Samuel continued to grow, and the LORD was with him. None of his prophecies fell to the ground unfulfilled.</VERS>\n\t\t\t<VERS vnumber=\"20\"> All Israel from Dan to Beer Sheba realized that Samuel was confirmed as a prophet of the LORD.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Then the LORD again appeared in Shiloh, for it was in Shiloh that the LORD had revealed himself to Samuel through the word of the LORD.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\"> Samuel revealed the word of the LORD to all Israel. Then the Israelites went out to fight the Philistines. They camped at Ebenezer, and the Philistines camped at Aphek. </VERS>\n\t\t\t<VERS vnumber=\"2\"> The Philistines arranged their forces to fight Israel. As the battle spread out, Israel was defeated by the Philistines, who killed about four thousand men in the battle line in the field.</VERS>\n\t\t\t<VERS vnumber=\"3\"> When the army came back to the camp, the elders of Israel said, \"Why did the LORD let us be defeated today by the Philistines? Let's take with us the ark of the covenant of the LORD from Shiloh. When it is with us, it will save us from the hand of our enemies.</VERS>\n\t\t\t<VERS vnumber=\"4\"> So the army sent to Shiloh, and they took from there the ark of the covenant of the LORD of hosts who sits between the cherubim. Now the two sons of Eli, Hophni and Phineas, were there with the ark of the covenant of God. </VERS>\n\t\t\t<VERS vnumber=\"5\"> When the ark of the covenant of the LORD arrived at the camp, all Israel shouted so loudly that the ground shook.</VERS>\n\t\t\t<VERS vnumber=\"6\"> When the Philistines heard the sound of the shout, they said, \"What is this loud shout in the camp of the Hebrews?\" Then they realized that the ark of the LORD had arrived at the camp.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The Philistines were scared because they thought that gods had come to the camp. They said, \"Too bad for us! We've never seen anything like this! </VERS>\n\t\t\t<VERS vnumber=\"8\"> Too bad for us! Who can deliver us from the hand of these mighty gods? These are the gods who struck the Egyptians with all sorts of plagues in the desert!</VERS>\n\t\t\t<VERS vnumber=\"9\"> Be strong and act like men, you Philistines, or else you will wind up serving the Hebrews the way they have served you! Act like men and fight!\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> So the Philistines fought. Israel was defeated; they all ran home. The slaughter was very great; thirty thousand foot soldiers fell in battle.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The ark of God was taken, and the two sons of Eli, Hophni and Phineas, were killed.</VERS>\n\t\t\t<VERS vnumber=\"12\"> On that day a Benjaminite ran from the battle lines and came to Shiloh. His clothes were torn and dirt was on his head. </VERS>\n\t\t\t<VERS vnumber=\"13\"> When he arrived in Shiloh, Eli was sitting in his chair watching by the side of the road, for he was very worried about the ark of God. As the man entered the city to give his report, the whole city cried out.</VERS>\n\t\t\t<VERS vnumber=\"14\"> When Eli heard the outcry, he said, \"What is this commotion?\" The man quickly came and told Eli. </VERS>\n\t\t\t<VERS vnumber=\"15\"> Now Eli was ninety-eight years old and his eyes looked straight ahead; he was unable to see.</VERS>\n\t\t\t<VERS vnumber=\"16\"> The man said to Eli, \"I am the one who came from the battle lines! Just today I fled from the battle lines!\" Eli asked, \"How did things go, my son?\" </VERS>\n\t\t\t<VERS vnumber=\"17\"> The messenger replied, \"Israel has fled from the Philistines! The army has suffered a great defeat! Your two sons, Hophni and Phineas, are dead! The ark of God has been captured!\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> When he mentioned the ark of God, Eli fell backward from his chair beside the gate. He broke his neck and died, for he was old and heavy. He had judged Israel for forty years.</VERS>\n\t\t\t<VERS vnumber=\"19\"> His daughter-in-law, the wife of Phineas, was pregnant and close to giving birth. When she heard that the ark of God was captured and that her father-in-law and her husband were dead, she doubled over and gave birth. But her labor pains were too much for her.</VERS>\n\t\t\t<VERS vnumber=\"20\"> As she was dying, the women who were there with her said, \"Don't be afraid! You have given birth to a son!\" But she did not reply or pay any attention.</VERS>\n\t\t\t<VERS vnumber=\"21\"> She named the boy Ichabod, saying, \"The glory has departed from Israel,\" referring to the capture of the ark of God and the deaths of her father-in-law and her husband. </VERS>\n\t\t\t<VERS vnumber=\"22\"> She said, \"The glory has departed from Israel, because the ark of God has been captured.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"5\">\n\t\t\t<VERS vnumber=\"1\"> Now the Philistines had captured the ark of God and brought it from Ebenezer to Ashdod.</VERS>\n\t\t\t<VERS vnumber=\"2\"> The Philistines took the ark of God and brought it into the temple of Dagon, where they positioned it beside Dagon.</VERS>\n\t\t\t<VERS vnumber=\"3\"> When the residents of Ashdod got up early the next day, Dagon was lying on the ground before the ark of the LORD. So they took Dagon and set him back in his place. </VERS>\n\t\t\t<VERS vnumber=\"4\"> But when they got up early the following day, Dagon was again lying on the ground before the ark of the LORD. The head of Dagon and his two hands were sheared off and were lying at the threshold. Only Dagon's body was left intact.</VERS>\n\t\t\t<VERS vnumber=\"5\"> (For this reason, to this very day, neither Dagon's priests nor anyone else who enters Dagon's temple step on Dagon's threshold in Ashdod.)</VERS>\n\t\t\t<VERS vnumber=\"6\"> The LORD attacked the residents of Ashdod severely, bringing devastation on them. He struck the people of both Ashdod and the surrounding area with sores.</VERS>\n\t\t\t<VERS vnumber=\"7\"> When the people of Ashdod saw what was happening, they said, \"The ark of the God of Israel should not remain with us, for he has attacked both us and our god Dagon!\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> So they assembled all the leaders of the Philistines and asked, \"What should we do with the ark of the God of Israel?\" They replied, \"The ark of the God of Israel should be moved to Gath.\" So they moved the ark of the God of Israel.</VERS>\n\t\t\t<VERS vnumber=\"9\"> But after it had been moved the LORD attacked that city as well, causing a great deal of panic. He struck all the people of that city with sores.</VERS>\n\t\t\t<VERS vnumber=\"10\"> So they sent the ark of God to Ekron. But when the ark of God arrived at Ekron, the residents of Ekron cried out saying, \"They have brought the ark of the God of Israel here to kill our people!\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> So they assembled all the leaders of the Philistines and said, \"Get the ark of the God of Israel out of here! Let it go back to its own place so that it won't kill us and our people!\" The terror of death was throughout the entire city; God was attacking them very severely there.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The people who did not die were struck with sores; the city's cry for help went all the way up to heaven.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"6\">\n\t\t\t<VERS vnumber=\"1\"> When the ark of the LORD had been in the land of the Philistines for seven months,</VERS>\n\t\t\t<VERS vnumber=\"2\"> the Philistines called the priests and the omen readers, saying, \"What should we do with the ark of the LORD? Advise us as to how we should send it back to its place.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> They replied, \"If you are going to send the ark of the God of Israel back, don't send it away empty. Be sure to return it with a guilt offering. Then you will be healed, and you will understand why his hand is not removed from you.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> They inquired, \"What is the guilt offering that we should send to him?\" They replied, \"The Philistine leaders number five. So send five gold sores and five gold mice, for it is the same plague that has afflicted both you and your leaders.</VERS>\n\t\t\t<VERS vnumber=\"5\"> You should make images of the sores and images of the mice that are destroying the land. You should honor the God of Israel. Perhaps he will release his grip on you, your gods, and your land.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Why harden your hearts like the Egyptians and Pharaoh did? When God treated them harshly, didn't the Egyptians send the Israelites on their way?</VERS>\n\t\t\t<VERS vnumber=\"7\"> So now go and make a new cart. Get two cows that have calves and that have never had a yoke placed on them. Harness the cows to the cart and take their calves from them back to their stalls.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Then take the ark of the LORD and place it on the cart, and put in a chest beside it the gold objects you are sending to him as a guilt offering. You should then send it on its way.</VERS>\n\t\t\t<VERS vnumber=\"9\"> But keep an eye on it. If it should go up by the way of its own border to Beth Shemesh, then he has brought this great calamity on us. But if that is not the case, then we will know that it was not his hand that struck us; rather, it just happened to us by accident.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> So the men did as instructed. They took two cows that had calves and harnessed them to a cart; they also removed their calves to their stalls. </VERS>\n\t\t\t<VERS vnumber=\"11\"> They put the ark of the LORD on the cart, along with the chest, the gold mice, and the images of the sores.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Then the cows went directly on the road to Beth Shemesh. They went along, mooing as they went; they turned neither to the right nor to the left. The leaders of the Philistines were walking along behind them all the way to the border of Beth Shemesh.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Now the residents of Beth Shemesh were harvesting wheat in the valley. When they looked up and saw the ark, they were pleased at the sight.</VERS>\n\t\t\t<VERS vnumber=\"14\"> The cart was coming to the field of Joshua, who was from Beth Shemesh. It paused there near a big stone. Then they cut up the wood of the cart and offered the cows as a burnt offering to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"15\"> The Levites took down the ark of the LORD and the chest that was with it, which contained the gold objects. They placed them near the big stone. At that time the people of Beth Shemesh offered burnt offerings and made sacrifices to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"16\"> The five leaders of the Philistines watched what was happening and then returned to Ekron on the same day.</VERS>\n\t\t\t<VERS vnumber=\"17\"> These are the gold sores that the Philistines brought as a guilt offering to the LORD, one for each of the following cities: Ashdod, Gaza, Ashkelon, Gath, and Ekron.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The gold mice corresponded in number to all the Philistine cities of the five leaders, from the fortified cities to hamlet villages, to greater Abel, where they positioned the ark of the LORD until this very day in the field of Joshua who was from Beth Shemesh.</VERS>\n\t\t\t<VERS vnumber=\"19\"> But the LORD struck down some of the people of Beth Shemesh because they had looked into the ark of the LORD; he struck down 50,070 of the men. The people grieved because the LORD had struck the people with a hard blow. </VERS>\n\t\t\t<VERS vnumber=\"20\"> The residents of Beth Shemesh asked, \"Who is able to stand before the LORD, this holy God? To whom will the ark go up from here?\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> So they sent messengers to the residents of Kiriath Jearim, saying, \"The Philistines have returned the ark of the LORD. Come down here and take it back home with you.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"7\">\n\t\t\t<VERS vnumber=\"1\"> Then the people of Kiriath Jearim came and took the ark of the LORD; they brought it to the house of Abinadab located on the hill. They consecrated Eleazar his son to guard the ark of the LORD.</VERS>\n\t\t\t<VERS vnumber=\"2\"> It was quite a long time, some twenty years in all, that the ark stayed at Kiriath Jearim. All the people of Israel longed for the LORD.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Samuel said to all the people of Israel, \"If you are really turning to the LORD with all your hearts, remove from among you the foreign gods and the images of Ashtoreth. Give your hearts to the LORD and serve only him. Then he will deliver you from the hand of the Philistines.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> So the Israelites removed the Baals and images of Ashtoreth. They served only the LORD.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Then Samuel said, \"Gather all Israel to Mizpah, and I will pray to the LORD on your behalf.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> After they had assembled at Mizpah, they drew water and poured it out before the LORD. They fasted on that day, and they confessed there, \"We have sinned against the LORD.\" So Samuel led the people of Israel at Mizpah.</VERS>\n\t\t\t<VERS vnumber=\"7\"> When the Philistines heard that the Israelites had gathered at Mizpah, the leaders of the Philistines went up against Israel. When the Israelites heard about this, they were afraid of the Philistines.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The Israelites said to Samuel, \"Keep crying out to the LORD our God so that he may save us from the hand of the Philistines!\" </VERS>\n\t\t\t<VERS vnumber=\"9\"> So Samuel took a nursing lamb and offered it as a whole burnt offering to the LORD. Samuel cried out to the LORD on Israel's behalf, and the LORD answered him.</VERS>\n\t\t\t<VERS vnumber=\"10\"> As Samuel was offering burnt offerings, the Philistines approached to do battle with Israel. But on that day the LORD thundered loudly against the Philistines. He caused them to panic, and they were defeated by Israel.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Then the men of Israel left Mizpah and chased the Philistines, striking them down all the way to an area below Beth Car.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Samuel took a stone and placed it between Mizpah and Shen. He named it Ebenezer, saying, \"Up to here the LORD has helped us.\" </VERS>\n\t\t\t<VERS vnumber=\"13\"> So the Philistines were defeated; they did not invade Israel again. The hand of the LORD was against the Philistines all the days of Samuel.</VERS>\n\t\t\t<VERS vnumber=\"14\"> The cities that the Philistines had captured from Israel were returned to Israel, from Ekron to Gath. Israel also delivered their territory from the control of the Philistines. There was also peace between Israel and the Amorites. </VERS>\n\t\t\t<VERS vnumber=\"15\"> So Samuel led Israel all the days of his life. </VERS>\n\t\t\t<VERS vnumber=\"16\"> Year after year he used to travel the circuit of Bethel, Gilgal, and Mizpah; he used to judge Israel in all of these places. </VERS>\n\t\t\t<VERS vnumber=\"17\"> Then he would return to Ramah, because his home was there. He also judged Israel there and built an altar to the LORD there.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"8\">\n\t\t\t<VERS vnumber=\"1\"> In his old age Samuel appointed his sons as judges over Israel.</VERS>\n\t\t\t<VERS vnumber=\"2\"> The name of his firstborn son was Joel, and the name of his second son was Abijah. They were judges in Beer Sheba.</VERS>\n\t\t\t<VERS vnumber=\"3\"> But his sons did not follow his ways. Instead, they made money dishonestly, accepted bribes, and perverted justice.</VERS>\n\t\t\t<VERS vnumber=\"4\"> So all the elders of Israel gathered together and approached Samuel at Ramah.</VERS>\n\t\t\t<VERS vnumber=\"5\"> They said to him, \"Look, you are old, and your sons don't follow your ways. So now appoint over us a king to lead us, just like all the other nations have.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> But this request displeased Samuel, for they said, \"Give us a king to lead us.\" So Samuel prayed to the LORD. </VERS>\n\t\t\t<VERS vnumber=\"7\"> The LORD said to Samuel, \"Do everything the people request of you. For it is not you that they have rejected, but it is me that they have rejected as their king. </VERS>\n\t\t\t<VERS vnumber=\"8\"> Just as they have done from the day that I brought them up from Egypt until this very day, they have rejected me and have served other gods. This is what they are also doing to you. </VERS>\n\t\t\t<VERS vnumber=\"9\"> So now do as they say. But seriously warn them and make them aware of the policies of the king who will rule over them.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> So Samuel spoke all the words of the LORD to the people who were asking him for a king.</VERS>\n\t\t\t<VERS vnumber=\"11\"> He said, \"Here are the policies of the king who will rule over you: He will conscript your sons and put them in his chariot forces and in his cavalry; they will run in front of his chariot.</VERS>\n\t\t\t<VERS vnumber=\"12\"> He will appoint for himself leaders of thousands and leaders of fifties, as well as those who plow his ground, reap his harvest, and make his weapons of war and his chariot equipment. </VERS>\n\t\t\t<VERS vnumber=\"13\"> He will take your daughters to be ointment makers, cooks, and bakers.</VERS>\n\t\t\t<VERS vnumber=\"14\"> He will take your best fields and vineyards and give them to his own servants.</VERS>\n\t\t\t<VERS vnumber=\"15\"> He will demand a tenth of your seed and of the produce of your vineyards and give it to his administrators and his servants. </VERS>\n\t\t\t<VERS vnumber=\"16\"> He will take your male and female servants, as well as your best cattle and your donkeys, and assign them for his own use.</VERS>\n\t\t\t<VERS vnumber=\"17\"> He will demand a tenth of your flocks, and you yourselves will be his servants.</VERS>\n\t\t\t<VERS vnumber=\"18\"> In that day you will cry out because of your king whom you have chosen for yourselves, but the LORD won't answer you in that day.\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> But the people refused to heed Samuel's warning. Instead they said, \"No! There will be a king over us! </VERS>\n\t\t\t<VERS vnumber=\"20\"> We will be like all the other nations. Our king will judge us and lead us and fight our battles.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> So Samuel listened to everything the people said and then reported it to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"22\"> The LORD said to Samuel, \"Do as they say and install a king over them.\" Then Samuel said to the men of Israel, \"Each of you go back to his own city.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"9\">\n\t\t\t<VERS vnumber=\"1\"> There was a Benjaminite man named Kish son of Abiel, the son of Zeror, the son of Becorath, the son of Aphiah of Benjamin. He was a prominent person.</VERS>\n\t\t\t<VERS vnumber=\"2\"> He had a son named Saul, a handsome young man. There was no one among the Israelites more handsome than he was; he stood head and shoulders above all the people.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The donkeys of Saul's father Kish wandered off, so Kish said to his son Saul, \"Take one of the servants with you and go look for the donkeys.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> So Saul crossed through the hill country of Ephraim, passing through the land of Shalisha, but they did not find them. So they crossed through the land of Shaalim, but they were not there. Then he crossed through the land of Benjamin, and still they did not find them.</VERS>\n\t\t\t<VERS vnumber=\"5\"> When they came to the land of Zuph, Saul said to his servant who was with him, \"Come on, let's head back before my father quits worrying about the donkeys and becomes anxious about us!\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> But the servant said to him, \"Look, there is a man of God in this town. He is highly respected. Everything that he says really happens. Now let's go there. Perhaps he will tell us where we should go from here.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> So Saul said to his servant, \"All right, we can go. But what can we bring the man, since the food in our bags is used up? We have no gift to take to the man of God. What do we have?\" </VERS>\n\t\t\t<VERS vnumber=\"8\"> The servant went on to answer Saul, \"Look, I happen to have in my hand a quarter shekel of silver. I will give it to the man of God and he will tell us where we should go.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> (Now it used to be in Israel that whenever someone went to inquire of God he would say, \"Come on, let's go to the seer.\" For today's prophet used to be called a seer.)</VERS>\n\t\t\t<VERS vnumber=\"10\"> So Saul said to his servant, \"That's a good idea! Come on. Let's go.\" So they went to the town where the man of God was.</VERS>\n\t\t\t<VERS vnumber=\"11\"> As they were going up the ascent to the town, they met some girls coming out to draw water. They said to them, \"Is this where the seer is?\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> They replied, \"Yes, straight ahead! But hurry now, for he came to the town today, and the people are making a sacrifice at the high place.</VERS>\n\t\t\t<VERS vnumber=\"13\"> When you enter the town, you can find him before he goes up to the high place to eat. The people won't eat until he arrives, for he must bless the sacrifice. Once that happens, those who have been invited will eat. Now go on up, for this is the time when you can find him!\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> So they went up to the town. As they were heading for the middle of the town, Samuel was coming in their direction to go up to the high place. </VERS>\n\t\t\t<VERS vnumber=\"15\"> Now the day before Saul arrived, the LORD had told Samuel: </VERS>\n\t\t\t<VERS vnumber=\"16\"> \"At this time tomorrow I will send to you a man from the land of Benjamin. You must consecrate him as a leader over my people Israel. He will save my people from the hand of the Philistines. For I have looked with favor on my people. Their cry has reached me!\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> When Samuel saw Saul, the LORD said, \"Here is the man that I told you about! He will rule over my people.\" </VERS>\n\t\t\t<VERS vnumber=\"18\"> As Saul approached Samuel in the middle of the gate, he said, \"Please tell me where the seer's house is.\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> Samuel replied to Saul, \"I am the seer! Go up in front of me to the high place! Today you will eat with me and in the morning I will send you away. I will tell you everything that you are thinking.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Don't be concerned about the donkeys that you lost three days ago, for they have been found. Whom does all Israel desire? Is it not you, and all your father's family?\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> Saul replied, \"Am I not a Benjaminite, from the smallest of Israel's tribes, and is not my family clan the smallest of all the tribes of Benjamin? Why do you speak to me in this way?\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> Then Samuel brought Saul and his servant into the room and gave them a place at the head of those who had been invited. There were about thirty people present. </VERS>\n\t\t\t<VERS vnumber=\"23\"> Samuel said to the cook, \"Give me the portion of meat that I gave to you, the one I asked you to keep with you.\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> So the cook picked up the leg and brought it and set it in front of Saul. Samuel said, \"What was kept is now set before you! Eat, for it has been kept for you for this meeting time, from the time I said, 'I have invited the people.'\" So Saul ate with Samuel that day.</VERS>\n\t\t\t<VERS vnumber=\"25\"> When they came down from the high place to the town, Samuel spoke with Saul on the roof.</VERS>\n\t\t\t<VERS vnumber=\"26\"> They got up at dawn and Samuel called to Saul on the roof, \"Get up, so I can send you on your way.\" So Saul got up and the two of them, he and Samuel, went outside.</VERS>\n\t\t\t<VERS vnumber=\"27\"> While they were going down to the edge of town, Samuel said to Saul, \"Tell the servant to go on ahead of us.\" So he did. Samuel then said, \"You remain here awhile, so I can inform you of God's message.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"10\">\n\t\t\t<VERS vnumber=\"1\"> Then Samuel took a small container of olive oil and poured it on Saul's head. Samuel kissed him and said, \"The LORD has chosen you to lead his people Israel! You will rule over the LORD's people and you will deliver them from the power of the enemies who surround them. This will be your sign that the LORD has chosen you as leader over his inheritance.</VERS>\n\t\t\t<VERS vnumber=\"2\"> When you leave me today, you will find two men near Rachel's tomb at Zelzah on Benjamin's border. They will say to you, 'The donkeys you have gone looking for have been found. Your father is no longer concerned about the donkeys but has become anxious about you two! He is asking, \"What should I do about my son?\"'</VERS>\n\t\t\t<VERS vnumber=\"3\"> \"As you continue on from there, you will come to the tall tree of Tabor. At that point three men who are going up to God at Bethel will meet you. One of them will be carrying three young goats, one of them will be carrying three round loaves of bread, and one of them will be carrying a container of wine. </VERS>\n\t\t\t<VERS vnumber=\"4\"> They will ask you how you're doing and will give you two loaves of bread. You will accept them.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Afterward you will go to Gibeah of God, where there are Philistine officials. When you enter the town, you will meet a company of prophets coming down from the high place. They will have harps, tambourines, flutes, and lyres, and they will be prophesying. </VERS>\n\t\t\t<VERS vnumber=\"6\"> Then the spirit of the LORD will rush upon you and you will prophesy with them. You will be changed into a different person.</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"When these signs have taken place, do whatever your hand finds to do, for God will be with you.</VERS>\n\t\t\t<VERS vnumber=\"8\"> You will go down to Gilgal before me. I am going to join you there to offer burnt offerings and to make peace offerings. You should wait for seven days, until I arrive and tell you what to do.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> As Saul turned to leave Samuel, God changed his inmost person. All these signs happened on that very day. </VERS>\n\t\t\t<VERS vnumber=\"10\"> When Saul and his servant arrived at Gibeah, a company of prophets was coming out to meet him. Then the spirit of God rushed upon Saul and he prophesied among them. </VERS>\n\t\t\t<VERS vnumber=\"11\"> When everyone who had known him previously saw him prophesying with the prophets, the people all asked one another, \"What on earth has happened to the son of Kish? Does even Saul belong with the prophets?\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> A man who was from there replied, \"And who is their father?\" Therefore this became a proverb: \"Is even Saul among the prophets?\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> When Saul had finished prophesying, he went to the high place.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Saul's uncle asked him and his servant, \"Where did you go?\" Saul replied, \"To look for the donkeys. But when we realized they were lost, we went to Samuel.\" </VERS>\n\t\t\t<VERS vnumber=\"15\"> Saul's uncle said, \"Tell me what Samuel said to you.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> Saul said to his uncle, \"He assured us that the donkeys had been found.\" But Saul did not tell him what Samuel had said about the matter of kingship.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Then Samuel called the people together before the LORD at Mizpah.</VERS>\n\t\t\t<VERS vnumber=\"18\"> He said to the Israelites, \"This is what the LORD God of Israel says, 'I brought Israel up from Egypt and I delivered you from the power of the Egyptians and from the power of all the kingdoms that oppressed you. </VERS>\n\t\t\t<VERS vnumber=\"19\"> But today you have rejected your God who saves you from all your trouble and distress. You have said, \"No! Appoint a king over us.\" Now take your positions before the LORD by your tribes and by your clans.'\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> Then Samuel brought all the tribes of Israel near, and the tribe of Benjamin was chosen by lot.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Then he brought the tribe of Benjamin near by its families, and the family of Matri was chosen by lot. At last Saul son of Kish was chosen by lot. But when they looked for him, he was nowhere to be found.</VERS>\n\t\t\t<VERS vnumber=\"22\"> So they inquired again of the LORD, \"Has the man arrived here yet?\" The LORD said, \"He has hidden himself among the equipment.\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> So they ran and brought him from there. When he took his position among the people, he stood head and shoulders above them all.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Then Samuel said to all the people, \"Do you see the one whom the LORD has chosen? Indeed, there is no one like him among all the people!\" All the people shouted out, \"Long live the king!\"</VERS>\n\t\t\t<VERS vnumber=\"25\"> Then Samuel talked to the people about how the kingship would work. He wrote it all down on a scroll and set it before the LORD. Then Samuel sent all the people away to their homes. </VERS>\n\t\t\t<VERS vnumber=\"26\"> Even Saul went to his home in Gibeah. With him went some brave men whose hearts God had touched.</VERS>\n\t\t\t<VERS vnumber=\"27\"> But some wicked men said, \"How can this man save us?\" They despised him and did not even bring him a gift. But Saul said nothing about it.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"11\">\n\t\t\t<VERS vnumber=\"1\">  Nahash the Ammonite marched against Jabesh Gilead. All the men of Jabesh Gilead said to Nahash, \"Make a treaty with us and we will serve you.\"</VERS>\n\t\t\t<VERS vnumber=\"2\"> But Nahash the Ammonite said to them, \"The only way I will make a treaty with you is if you let me gouge out the right eye of every one of you and in so doing humiliate all Israel!\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> The elders of Jabesh said to him, \"Leave us alone for seven days so that we can send messengers throughout the territory of Israel. If there is no one who can deliver us, we will come out voluntarily to you.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> When the messengers went to Gibeah (where Saul lived) and informed the people of these matters, all the people wept loudly.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Now Saul was walking behind the oxen as he came from the field. Saul asked, \"What has happened to the people? Why are they weeping?\" So they told him about the men of Jabesh.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The Spirit of God rushed upon Saul when he heard these words, and he became very angry.</VERS>\n\t\t\t<VERS vnumber=\"7\"> He took a pair of oxen and cut them up. Then he sent the pieces throughout the territory of Israel by the hand of messengers, who said, \"Whoever does not go out after Saul and after Samuel should expect this to be done to his oxen!\" Then the terror of the LORD fell on the people, and they went out as one army.</VERS>\n\t\t\t<VERS vnumber=\"8\"> When Saul counted them at Bezek, the Israelites were 300,000 strong and the men of Judah numbered 30,000.</VERS>\n\t\t\t<VERS vnumber=\"9\"> They said to the messengers who had come, \"Here's what you should say to the men of Jabesh Gilead: 'Tomorrow deliverance will come to you when the sun is fully up.'\" When the messengers went and told the men of Jabesh Gilead, they were happy.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The men of Jabesh said, \"Tomorrow we will come out to you and you can do with us whatever you wish.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> The next day Saul placed the people in three groups. They went to the Ammonite camp during the morning watch and struck them down until the hottest part of the day. The survivors scattered; no two of them remained together.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Then the people said to Samuel, \"Who were the ones asking, 'Will Saul reign over us?' Hand over those men so we may execute them!\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> But Saul said, \"No one will be killed on this day. For today the LORD has given Israel a victory!\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> Samuel said to the people, \"Come on! Let's go to Gilgal and renew the kingship there.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> So all the people went to Gilgal, where they established Saul as king in the LORD's presence. They offered up peace offerings there in the LORD's presence. Saul and all the Israelites were very happy.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"12\">\n\t\t\t<VERS vnumber=\"1\"> Samuel said to all Israel, \"I have done everything you requested. I have given you a king.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Now look! This king walks before you. As for me, I am old and gray, though my sons are here with you. I have walked before you from the time of my youth till the present day.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Here I am. Bring a charge against me before the LORD and before his chosen king. Whose ox have I taken? Whose donkey have I taken? Whom have I wronged? Whom have I oppressed? From whose hand have I taken a bribe so that I would overlook something? Tell me, and I will return it to you!\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> They replied, \"You have not wronged us or oppressed us. You have not taken anything from the hand of anyone.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> He said to them, \"The LORD is witness against you, and his chosen king is witness this day, that you have not found any reason to accuse me.\" They said, \"He is witness!\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> Samuel said to the people, \"The LORD is the one who chose Moses and Aaron and who brought your ancestors up from the land of Egypt. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Now take your positions, so I may confront you before the LORD regarding all the LORD's just actions toward you and your ancestors.</VERS>\n\t\t\t<VERS vnumber=\"8\"> When Jacob entered Egypt, your ancestors cried out to the LORD. The LORD sent Moses and Aaron, and they led your ancestors out of Egypt and settled them in this place.</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"But they forgot the LORD their God, so he gave them into the hand of Sisera, the general in command of Hazor's army, and into the hand of the Philistines and into the hand of the king of Moab, and they fought against them. </VERS>\n\t\t\t<VERS vnumber=\"10\"> Then they cried out to the LORD and admitted, 'We have sinned, for we have forsaken the LORD and have served the Baals and the images of Ashtoreth. Now deliver us from the hand of our enemies so that we may serve you.'</VERS>\n\t\t\t<VERS vnumber=\"11\"> So the LORD sent Jerub-Baal, Barak, Jephthah, and Samuel, and he delivered you from the hand of the enemies all around you, and you were able to live securely.</VERS>\n\t\t\t<VERS vnumber=\"12\"> \"When you saw that King Nahash of the Ammonites was advancing against you, you said to me, 'No! A king will rule over us', even though the LORD your God is your king!</VERS>\n\t\t\t<VERS vnumber=\"13\"> Now look! Here is the king you have chosen, the one that you asked for! Look, the LORD has given you a king!</VERS>\n\t\t\t<VERS vnumber=\"14\"> If you fear the LORD, serving him and obeying him and not rebelling against what he says, and if both you and the king who rules over you follow the LORD your God, all will be well.</VERS>\n\t\t\t<VERS vnumber=\"15\"> But if you don't obey the LORD and rebel against what the LORD says, the hand of the LORD will be against both you and your king.</VERS>\n\t\t\t<VERS vnumber=\"16\"> \"So now, take your positions and watch this great thing that the LORD is about to do in your sight.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Is this not the time of the wheat harvest? I will call on the LORD so that he makes it thunder and rain. Realize and see what a great sin you have committed before the LORD by asking for a king for yourselves.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> So Samuel called to the LORD, and the LORD made it thunder and rain that day. All the people were very afraid of both the LORD and Samuel.</VERS>\n\t\t\t<VERS vnumber=\"19\"> All the people said to Samuel, \"Pray to the LORD your God on behalf of us, your servants, so we won't die, for we have added to all our sins by asking for a king.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> Then Samuel said to the people, \"Don't be afraid. You have indeed sinned. However, don't turn aside from the LORD. Serve the LORD with all your heart. </VERS>\n\t\t\t<VERS vnumber=\"21\"> You should not turn aside after empty things that can't profit and can't deliver, since they are empty.</VERS>\n\t\t\t<VERS vnumber=\"22\"> The LORD will not abandon his people because he wants to uphold his great reputation. The LORD was pleased to make you his own people. </VERS>\n\t\t\t<VERS vnumber=\"23\"> As far as I am concerned, far be it from me to sin against the LORD by ceasing to pray for you! I will instruct you in the way that is good and upright.</VERS>\n\t\t\t<VERS vnumber=\"24\"> However, fear the LORD and serve him faithfully with all your heart. Just look at the great things he has done for you!</VERS>\n\t\t\t<VERS vnumber=\"25\"> But if you continue to do evil, both you and your king will be swept away.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"13\">\n\t\t\t<VERS vnumber=\"1\"> Saul was [thirty] years old when he began to reign; he ruled over Israel for [forty] years. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Saul selected for himself three thousand men from Israel. Two thousand of these were with Saul at Micmash and in the hill country of Bethel; the remaining thousand were with Jonathan at Gibeah in the territory of Benjamin. He sent all the rest of the people back home.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Jonathan attacked the Philistine outpost that was at Geba and the Philistines heard about it. Then Saul alerted all the land saying, \"Let the Hebrews pay attention!\" </VERS>\n\t\t\t<VERS vnumber=\"4\"> All Israel heard this message, \"Saul has attacked the Philistine outpost, and now Israel is repulsive to the Philistines!\" So the people were summoned to join Saul at Gilgal.</VERS>\n\t\t\t<VERS vnumber=\"5\"> For the battle with Israel the Philistines had amassed 3,000 chariots, 6,000 horsemen, and an army as numerous as the sand on the seashore. They went up and camped at Micmash, east of Beth Aven. </VERS>\n\t\t\t<VERS vnumber=\"6\"> The men of Israel realized they had a problem because their army was hard pressed. So the army hid in caves, thickets, cliffs, strongholds, and cisterns. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Some of the Hebrews crossed over the Jordan River to the land of Gad and Gilead. But Saul stayed at Gilgal; the entire army that was with him was terrified. </VERS>\n\t\t\t<VERS vnumber=\"8\"> He waited for seven days, the time period indicated by Samuel. But Samuel did not come to Gilgal, and the army began to abandon Saul.</VERS>\n\t\t\t<VERS vnumber=\"9\"> So Saul said, \"Bring me the burnt offering and the peace offerings.\" Then he offered a burnt offering.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Just when he had finished offering the burnt offering, Samuel appeared on the scene. Saul went out to meet him and to greet him.</VERS>\n\t\t\t<VERS vnumber=\"11\"> But Samuel said, \"What have you done?\" Saul replied, \"When I saw that the army had started to abandon me and that you didn't come at the appointed time and that the Philistines had assembled at Micmash, </VERS>\n\t\t\t<VERS vnumber=\"12\"> I thought, 'Now the Philistines will come down on me at Gilgal and I have not sought the LORD's favor.' So I felt obligated to offer the burnt offering.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> Then Samuel said to Saul, \"You have made a foolish choice! You have not obeyed the commandment that the LORD your God gave you. Had you done that, the LORD would have established your kingdom over Israel forever! </VERS>\n\t\t\t<VERS vnumber=\"14\"> But now your kingdom will not continue! The LORD has sought out for himself a man who is loyal to him and the LORD has appointed him to be leader over his people, for you have not obeyed what the LORD commanded you.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> Then Samuel set out and went up from Gilgal to Gibeah in the territory of Benjamin. Saul mustered the army that remained with him; there were about six hundred men. </VERS>\n\t\t\t<VERS vnumber=\"16\"> Saul, his son Jonathan, and the army that remained with them stayed in Gibeah in the territory of Benjamin, while the Philistines camped in Micmash.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Raiding bands went out from the camp of the Philistines in three groups. One band turned toward the road leading to Ophrah by the land of Shual;</VERS>\n\t\t\t<VERS vnumber=\"18\"> another band turned toward the road leading to Beth Horon; and yet another band turned toward the road leading to the border that overlooks the valley of Zeboim in the direction of the desert.</VERS>\n\t\t\t<VERS vnumber=\"19\"> A blacksmith could not be found in all the land of Israel, for the Philistines had said, \"This will prevent the Hebrews from making swords and spears.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> So all Israel had to go down to the Philistines in order to get their plowshares, cutting instruments, axes, and sickles sharpened. </VERS>\n\t\t\t<VERS vnumber=\"21\"> They charged two-thirds of a shekel to sharpen plowshares and cutting instruments, and a third of a shekel to sharpen picks and axes, and to set ox goads. </VERS>\n\t\t\t<VERS vnumber=\"22\"> So on the day of the battle no sword or spear was to be found in the hand of anyone in the army that was with Saul and Jonathan. No one but Saul and his son Jonathan had them.</VERS>\n\t\t\t<VERS vnumber=\"23\"> A garrison of the Philistines had gone out to the pass at Micmash.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"14\">\n\t\t\t<VERS vnumber=\"1\"> Then one day Jonathan son of Saul said to his armor bearer, \"Come on, let's go over to the Philistine garrison that is opposite us.\" But he did not let his father know.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Now Saul was sitting under a pomegranate tree in Migron, on the outskirts of Gibeah. The army that was with him numbered about six hundred men.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Now Ahijah was carrying an ephod. He was the son of Ahitub, who was the brother of Ichabod and a son of Phineas, son of Eli, the priest of the LORD in Shiloh. The army was unaware that Jonathan had left.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Now there was a steep cliff on each side of the pass through which Jonathan intended to go to reach the Philistine garrison. One cliff was named Bozez, the other Seneh.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The cliff to the north was closer to Micmash, the one to the south closer to Geba.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Jonathan said to his armor bearer, \"Come on, let's go over to the garrison of these uncircumcised men. Perhaps the LORD will intervene for us. Nothing can prevent the LORD from delivering, whether by many or by a few.\" </VERS>\n\t\t\t<VERS vnumber=\"7\"> His armor bearer said to him, \"Do everything that is on your mind. Do as you're inclined. I'm with you all the way!\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> Jonathan replied, \"All right! We'll go over to these men and fight them. </VERS>\n\t\t\t<VERS vnumber=\"9\"> If they say to us, 'Stay put until we approach you,' we will stay right there and not go up to them. </VERS>\n\t\t\t<VERS vnumber=\"10\"> But if they say, 'Come up against us,' we will go up. For in that case the LORD has given them into our hand, it will be a sign to us.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> When they made themselves known to the Philistine garrison, the Philistines said, \"Look! The Hebrews are coming out of the holes in which they hid themselves.\" </VERS>\n\t\t\t<VERS vnumber=\"12\"> Then the men of the garrison said to Jonathan and his armor bearer, \"Come on up to us so we can teach you a thing or two!\" Then Jonathan said to his armor bearer, \"Come up behind me, for the LORD has given them into the hand of Israel!\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> Jonathan crawled up on his hands and feet, with his armor bearer following behind him. Jonathan struck down the Philistines, while his armor bearer came along behind him and killed them.</VERS>\n\t\t\t<VERS vnumber=\"14\"> In this initial skirmish Jonathan and his armor bearer struck down about twenty men in an area that measured half an acre.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Then fear overwhelmed those who were in the camp, those who were in the field, all the army in the garrison, and the raiding bands. They trembled and the ground shook. This fear was caused by God.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Saul's watchmen at Gibeah in the territory of Benjamin looked on as the crowd of soldiers seemed to melt away first in one direction and then in another.</VERS>\n\t\t\t<VERS vnumber=\"17\"> So Saul said to the army that was with him, \"Muster the troops and see who is no longer with us.\" When they mustered the troops, Jonathan and his armor bearer were not there. </VERS>\n\t\t\t<VERS vnumber=\"18\"> So Saul said to Ahijah, \"Bring near the ephod,\" for he was at that time wearing the ephod.</VERS>\n\t\t\t<VERS vnumber=\"19\"> While Saul spoke to the priest, the panic in the Philistines' camp was becoming greater and greater. So Saul said to the priest, \"Withdraw your hand!\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> Saul and all the army that was with him assembled and marched into battle, where they found the Philistines in total panic killing one another with their swords.</VERS>\n\t\t\t<VERS vnumber=\"21\"> The Hebrews who had earlier gone over to the Philistine side joined the Israelites who were with Saul and Jonathan. </VERS>\n\t\t\t<VERS vnumber=\"22\"> When all the Israelites who had hidden themselves in the hill country of Ephraim heard that the Philistines had fled, they too pursued them in battle.</VERS>\n\t\t\t<VERS vnumber=\"23\"> So the LORD delivered Israel that day, and the battle shifted over to Beth Aven.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Now the men of Israel were hard pressed that day, for Saul had made the army agree to this oath: \"Cursed be the man who eats food before evening! I will get my vengeance on my enemies!\" So no one in the army ate anything.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Now the whole army entered the forest and there was honey on the ground.</VERS>\n\t\t\t<VERS vnumber=\"26\"> When the army entered the forest, they saw the honey flowing, but no one ate any of it, for the army was afraid of the oath. </VERS>\n\t\t\t<VERS vnumber=\"27\"> But Jonathan had not heard about the oath his father had made the army take. He extended the end of his staff that was in his hand and dipped it in the honeycomb. When he ate it, his eyes gleamed.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Then someone from the army informed him, \"Your father put the army under a strict oath saying, 'Cursed be the man who eats food today!' That is why the army is tired.\" </VERS>\n\t\t\t<VERS vnumber=\"29\"> Then Jonathan said, \"My father has caused trouble for the land. See how my eyes gleamed when I tasted just a little of this honey. </VERS>\n\t\t\t<VERS vnumber=\"30\"> Certainly if the army had eaten some of the enemies' provisions that they came across today, would not the slaughter of the Philistines have been even greater?\"</VERS>\n\t\t\t<VERS vnumber=\"31\"> On that day the army struck down the Philistines from Micmash to Aijalon, and they became very tired.</VERS>\n\t\t\t<VERS vnumber=\"32\"> So the army rushed greedily on the plunder, confiscating sheep, cattle, and calves. They slaughtered them right on the ground, and the army ate them blood and all.</VERS>\n\t\t\t<VERS vnumber=\"33\"> Now it was reported to Saul, \"Look, the army is sinning against the LORD by eating even the blood.\" He said, \"All of you have broken the covenant! Roll a large stone over here to me.\" </VERS>\n\t\t\t<VERS vnumber=\"34\"> Then Saul said, \"Scatter out among the army and say to them, 'Each of you bring to me your ox and sheep and slaughter them in this spot and eat. But don't sin against the LORD by eating the blood.\" So that night each one brought his ox and slaughtered it there.</VERS>\n\t\t\t<VERS vnumber=\"35\"> Then Saul built an altar for the LORD; it was the first time he had built an altar for the LORD.</VERS>\n\t\t\t<VERS vnumber=\"36\"> Saul said, \"Let's go down after the Philistines at night; we will rout them until the break of day. We won't leave any of them alive!\" They replied, \"Do whatever seems best to you.\" But the priest said, \"Let's approach God here.\" </VERS>\n\t\t\t<VERS vnumber=\"37\"> So Saul asked God, \"Should I go down after the Philistines? Will you deliver them into the hand of Israel?\" But he did not answer him that day.</VERS>\n\t\t\t<VERS vnumber=\"38\"> Then Saul said, \"All you leaders of the army come here. Find out how this sin occurred today. </VERS>\n\t\t\t<VERS vnumber=\"39\"> For as surely as the LORD, the deliverer of Israel, lives, even if it turns out to be my own son Jonathan, he will certainly die!\" But no one from the army said anything.</VERS>\n\t\t\t<VERS vnumber=\"40\"> Then he said to all Israel, \"You will be on one side, and I and my son Jonathan will be on the other side.\" The army replied to Saul, \"Do whatever you think is best.\"</VERS>\n\t\t\t<VERS vnumber=\"41\"> Then Saul said, \"O LORD God of Israel! If this sin has been committed by me or by my son Jonathan, then, O LORD God of Israel, respond with Urim. But if this sin has been committed by your people Israel, respond with Thummim.\" Then Jonathan and Saul were indicated by lot, while the army was exonerated.</VERS>\n\t\t\t<VERS vnumber=\"42\"> Then Saul said, \"Cast the lot between me and my son Jonathan!\" Jonathan was indicated by lot.</VERS>\n\t\t\t<VERS vnumber=\"43\"> So Saul said to Jonathan, \"Tell me what you have done.\" Jonathan told him, \"I used the end of the staff that was in my hand to taste a little honey. I must die!\"</VERS>\n\t\t\t<VERS vnumber=\"44\"> Saul said, \"God will punish me severely if Jonathan doesn't die!\"</VERS>\n\t\t\t<VERS vnumber=\"45\"> But the army said to Saul, \"Should Jonathan, who won this great victory in Israel, die? May it never be! As surely as the LORD lives, not a single hair of his head will fall to the ground! For it is with the help of God that he has acted today.\" So the army rescued Jonathan from death.</VERS>\n\t\t\t<VERS vnumber=\"46\"> Then Saul stopped chasing the Philistines, and the Philistines went back home.</VERS>\n\t\t\t<VERS vnumber=\"47\"> After Saul had secured his royal position over Israel, he fought against all their enemies on all sides, the Moabites, Ammonites, Edomites, the kings of Zobah, and the Philistines. In every direction that he turned he was victorious.</VERS>\n\t\t\t<VERS vnumber=\"48\"> He fought bravely, striking down the Amalekites and delivering Israel from the hand of its enemies.</VERS>\n\t\t\t<VERS vnumber=\"49\"> The sons of Saul were Jonathan, Ishvi, and Malki-Shua. He had two daughters; the older one was named Merab and the younger Michal. </VERS>\n\t\t\t<VERS vnumber=\"50\"> The name of Saul's wife was Ahinoam, the daughter of Ahimaaz. The name of the general in command of his army was Abner son of Ner, Saul's uncle.</VERS>\n\t\t\t<VERS vnumber=\"51\"> Kish was the father of Saul, and Ner the father of Abner was the son of Abiel.</VERS>\n\t\t\t<VERS vnumber=\"52\"> There was fierce war with the Philistines all the days of Saul. So whenever Saul saw anyone who was a warrior or a brave individual, he would conscript him.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"15\">\n\t\t\t<VERS vnumber=\"1\"> Then Samuel said to Saul, \"I was the one the LORD sent to anoint you as king over his people Israel. Now listen to what the LORD says.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Here is what the LORD of hosts says: 'I carefully observed how the Amalekites opposed Israel along the way when Israel came up from Egypt. </VERS>\n\t\t\t<VERS vnumber=\"3\"> So go now and strike down the Amalekites. Destroy everything that they have. Don't spare them. Put them to death, man, woman, child, infant, ox, sheep, camel, and donkey alike.'\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> So Saul assembled the army and mustered them at Telaim. There were 200,000 foot soldiers and 10,000 men of Judah. </VERS>\n\t\t\t<VERS vnumber=\"5\"> Saul proceeded to the city of Amalek, where he set an ambush in the wadi.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Saul said to the Kenites, \"Go on and leave! Go down from among the Amalekites! Otherwise I will sweep you away with them! After all, you were kind to all the Israelites when they came up from Egypt.\" So the Kenites withdrew from among the Amalekites.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Then Saul struck down the Amalekites all the way from Havilah to Shur, which is next to Egypt. </VERS>\n\t\t\t<VERS vnumber=\"8\"> He captured King Agag of the Amalekites alive, but he executed all Agag's people with the sword. </VERS>\n\t\t\t<VERS vnumber=\"9\"> However, Saul and the army spared Agag, along with the best of the flock, the cattle, the fatlings, and the lambs, as well as everything else that was of value. They were not willing to slaughter them. But they did slaughter everything that was despised and worthless.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Then the word of the LORD came to Samuel:</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"I regret that I have made Saul king, for he has turned away from me and has not done what I told him to do.\" Samuel became angry and he cried out to the LORD all that night.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Then Samuel got up early to meet Saul the next morning. But Samuel was informed, \"Saul has gone to Carmel where he is setting up a monument for himself. Then Samuel left and went down to Gilgal.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> When Samuel came to him, Saul said to him, \"May the LORD bless you! I have done what the LORD said.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> Samuel replied, \"If that is the case, then what is this sound of sheep in my ears and the sound of cattle that I hear?\" </VERS>\n\t\t\t<VERS vnumber=\"15\"> Saul said, \"They were brought from the Amalekites; the army spared the best of the flocks and cattle to sacrifice to the LORD our God. But everything else we slaughtered.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> Then Samuel said to Saul, \"Wait a minute! Let me tell you what the LORD said to me last night.\" Saul said to him, \"Tell me.\" </VERS>\n\t\t\t<VERS vnumber=\"17\"> Samuel said, \"Is it not true that when you were insignificant in your own eyes, you became head of the tribes of Israel? The LORD chose you as king over Israel. </VERS>\n\t\t\t<VERS vnumber=\"18\"> The LORD sent you on a campaign saying, 'Go and exterminate those sinful Amalekites! Fight against them until you have destroyed them.' </VERS>\n\t\t\t<VERS vnumber=\"19\"> Why haven't you obeyed the LORD? Instead you have greedily rushed upon the plunder! You have done what is wrong in the LORD's estimation.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> Then Saul said to Samuel, \"But I have obeyed the LORD! I went on the campaign the LORD sent me on. I brought back King Agag of the Amalekites after exterminating the Amalekites. </VERS>\n\t\t\t<VERS vnumber=\"21\"> But the army took from the plunder some of the sheep and cattle, the best of what was to be slaughtered, to sacrifice to the LORD your God in Gilgal.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> Then Samuel said, \"Does the LORD take pleasure in burnt offerings and sacrifices as much as he does in obedience? Certainly, obedience is better than sacrifice; paying attention is better than the fat of rams.</VERS>\n\t\t\t<VERS vnumber=\"23\"> For rebellion is like the sin of divination, and presumption is like the evil of idolatry. Because you have rejected the word of the LORD, he has rejected you as king.\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> Then Saul said to Samuel, \"I have sinned, for I have disobeyed what the LORD commanded and what you said as well. For I was afraid of the army, and I followed their wishes.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Now please forgive my sin! Go back with me so I can worship the LORD.\"</VERS>\n\t\t\t<VERS vnumber=\"26\"> Samuel said to Saul, \"I will not go back with you, for you have rejected the word of the LORD, and the LORD has rejected you from being king over Israel!\"</VERS>\n\t\t\t<VERS vnumber=\"27\"> When Samuel turned to leave, Saul grabbed the edge of his robe and it tore. </VERS>\n\t\t\t<VERS vnumber=\"28\"> Samuel said to him, \"The LORD has torn the kingdom of Israel from you this day and has given it to one of your colleagues who is better than you!</VERS>\n\t\t\t<VERS vnumber=\"29\"> The Preeminent One of Israel does not go back on his word or change his mind, for he is not a human being who changes his mind.\"</VERS>\n\t\t\t<VERS vnumber=\"30\"> Saul again replied, \"I have sinned. But please honor me before the elders of my people and before Israel. Go back with me so I may worship the LORD your God.\" </VERS>\n\t\t\t<VERS vnumber=\"31\"> So Samuel followed Saul back, and Saul worshiped the LORD.</VERS>\n\t\t\t<VERS vnumber=\"32\"> Then Samuel said, \"Bring me King Agag of the Amalekites.\" So Agag came to him trembling, thinking to himself, \"Surely death is bitter!\"</VERS>\n\t\t\t<VERS vnumber=\"33\"> Samuel said, \"Just as your sword left women childless, so your mother will be the most bereaved among women!\" Then Samuel hacked Agag to pieces there in Gilgal before the LORD.</VERS>\n\t\t\t<VERS vnumber=\"34\"> Then Samuel went to Ramah, while Saul went up to his home in Gibeah of Saul.</VERS>\n\t\t\t<VERS vnumber=\"35\"> Until the day he died Samuel did not see Saul again. Samuel did, however, mourn for Saul, but the LORD regretted that he had made Saul king over Israel.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"16\">\n\t\t\t<VERS vnumber=\"1\"> The LORD said to Samuel, \"How long do you intend to mourn for Saul? I have rejected him as king over Israel. Fill your horn with olive oil and go! I am sending you to Jesse in Bethlehem, for I have selected a king for myself from among his sons.\"</VERS>\n\t\t\t<VERS vnumber=\"2\"> Samuel replied, \"How can I go? Saul will hear about it and kill me!\" But the LORD said, \"Take a heifer with you and say, 'I have come to sacrifice to the LORD.' </VERS>\n\t\t\t<VERS vnumber=\"3\"> Then invite Jesse to the sacrifice, and I will show you what you should do. You will anoint for me the one I point out to you.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> Samuel did what the LORD told him. When he arrived in Bethlehem, the elders of the city were afraid to meet him. They said, \"Do you come in peace?\" </VERS>\n\t\t\t<VERS vnumber=\"5\"> He replied, \"Yes, in peace. I have come to sacrifice to the LORD. Consecrate yourselves and come with me to the sacrifice.\" So he consecrated Jesse and his sons and invited them to the sacrifice.</VERS>\n\t\t\t<VERS vnumber=\"6\"> When they arrived, Samuel noticed Eliab and said to himself, \"Surely, here before the LORD stands his chosen king!\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> But the LORD said to Samuel, \"Don't be impressed by his appearance or his height, for I have rejected him. God does not view things the way men do. People look on the outward appearance, but the LORD looks at the heart.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> Then Jesse called Abinadab and presented him to Samuel. But Samuel said, \"The LORD has not chosen this one, either.\" </VERS>\n\t\t\t<VERS vnumber=\"9\"> Then Jesse presented Shammah. But Samuel said, \"The LORD has not chosen this one either.\" </VERS>\n\t\t\t<VERS vnumber=\"10\"> Jesse presented seven of his sons to Samuel. But Samuel said to Jesse, \"The LORD has not chosen any of these.\" </VERS>\n\t\t\t<VERS vnumber=\"11\"> Then Samuel said to Jesse, \"Is that all of the young men?\" Jesse replied, \"There is still the youngest one, but he's taking care of the flock.\" Samuel said to Jesse, \"Send and get him, for we cannot turn our attention to other things until he comes here.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> So Jesse had him brought in. Now he was ruddy, with attractive eyes and a handsome appearance. The LORD said, \"Go and anoint him. This is the one!\" </VERS>\n\t\t\t<VERS vnumber=\"13\"> So Samuel took the horn full of olive oil and anointed him in the presence of his brothers. The Spirit of the LORD rushed upon David from that day onward. Then Samuel got up and went to Ramah.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Now the Spirit of the LORD had turned away from Saul, and an evil spirit from the LORD tormented him. </VERS>\n\t\t\t<VERS vnumber=\"15\"> Then Saul's servants said to him, \"Look, an evil spirit from God is tormenting you!\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> Let our lord instruct his servants who are here before you to look for a man who knows how to play the lyre. Then whenever the evil spirit from God comes upon you, he can play the lyre and you will feel better.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> So Saul said to his servants, \"Find me a man who plays well and bring him to me.\" </VERS>\n\t\t\t<VERS vnumber=\"18\"> One of his attendants replied, \"I have seen a son of Jesse in Bethlehem who knows how to play the lyre. He is a brave warrior and is articulate and handsome, for the LORD is with him.\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> So Saul sent messengers to Jesse and said, \"Send me your son David, who is out with the sheep.</VERS>\n\t\t\t<VERS vnumber=\"20\"> So Jesse took a donkey loaded with bread, a container of wine, and a young goat and sent them to Saul with his son David. </VERS>\n\t\t\t<VERS vnumber=\"21\"> David came to Saul and stood before him. Saul liked him a great deal, and he became his armor bearer. </VERS>\n\t\t\t<VERS vnumber=\"22\"> Then Saul sent word to Jesse saying, \"Let David be my servant, for I really like him.\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> So whenever the spirit from God would come upon Saul, David would take his lyre and play it. This would bring relief to Saul and make him feel better. Then the evil spirit would leave him alone.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"17\">\n\t\t\t<VERS vnumber=\"1\">  The Philistines gathered their troops for battle. They assembled at Socoh in Judah. They camped in Ephes Dammim, between Socoh and Azekah. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Saul and the Israelite army assembled and camped in the valley of Elah, where they arranged their battle lines to fight against the Philistines. </VERS>\n\t\t\t<VERS vnumber=\"3\"> The Philistines were standing on one hill, and the Israelites on another hill, with the valley between them.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Then a champion came out from the camp of the Philistines. His name was Goliath; he was from Gath. He was close to seven feet tall.</VERS>\n\t\t\t<VERS vnumber=\"5\"> He had a bronze helmet on his head and was wearing scale body armor. The weight of his bronze body armor was five thousand shekels.</VERS>\n\t\t\t<VERS vnumber=\"6\"> He had bronze shin guards on his legs, and a bronze javelin was slung over his shoulders. </VERS>\n\t\t\t<VERS vnumber=\"7\"> The shaft of his spear was like a weaver's beam, and the iron point of his spear weighed six hundred shekels. His shield bearer was walking before him.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Goliath stood and called to Israel's troops, \"Why do you come out to prepare for battle? Am I not the Philistine, and are you not the servants of Saul? Choose for yourselves a man so he may come down to me! </VERS>\n\t\t\t<VERS vnumber=\"9\"> If he is able to fight with me and strike me down, we will become your servants. But if I prevail against him and strike him down, you will become our servants and will serve us.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> Then the Philistine said, \"I defy Israel's troops this day! Give me a man so we can fight each other!\" </VERS>\n\t\t\t<VERS vnumber=\"11\"> When Saul and all the Israelites heard these words of the Philistine, they were upset and very afraid.</VERS>\n\t\t\t<VERS vnumber=\"12\">  Now David was the son of this Ephrathite named Jesse from Bethlehem in Judah. He had eight sons, and in Saul's days he was old and well advanced in years.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Jesse's three oldest sons had followed Saul to war. The names of the three sons who went to war were Eliab, his firstborn, Abinadab, the second oldest, and Shammah, the third oldest. </VERS>\n\t\t\t<VERS vnumber=\"14\"> Now David was the youngest. While the three oldest sons followed Saul,</VERS>\n\t\t\t<VERS vnumber=\"15\"> David was going back and forth from Saul in order to care for his father's sheep in Bethlehem.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Meanwhile for forty days the Philistine approached every morning and evening and took his position.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Jesse said to his son David, \"Take your brothers this ephah of roasted grain and these ten loaves of bread; go quickly to the camp to your brothers.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Also take these ten portions of cheese to their commanding officer. Find out how your brothers are doing and bring back their pledge that they received the goods.</VERS>\n\t\t\t<VERS vnumber=\"19\"> They are with Saul and the whole Israelite army in the valley of Elah, fighting with the Philistines.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> So David got up early in the morning and entrusted the flock to someone else who would watch over it. After loading up, he went just as Jesse had instructed him. He arrived at the camp as the army was going out to the battle lines shouting its battle cry.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Israel and the Philistines drew up their battle lines opposite one another.</VERS>\n\t\t\t<VERS vnumber=\"22\"> After David had entrusted his cargo to the care of the supply officer, he ran to the battlefront. When he arrived, he asked his brothers how they were doing. </VERS>\n\t\t\t<VERS vnumber=\"23\"> As he was speaking with them, the champion named Goliath, the Philistine from Gath, was coming up from the battle lines of the Philistines. He spoke the way he usually did, and David heard it. </VERS>\n\t\t\t<VERS vnumber=\"24\"> When all the men of Israel saw this man, they retreated from his presence and were very afraid.</VERS>\n\t\t\t<VERS vnumber=\"25\"> The men of Israel said, \"Have you seen this man who is coming up? He does so to defy Israel. But the king will make the man who can strike him down very wealthy! He will give him his daughter in marriage, and he will make his father's house exempt from tax obligations in Israel.\"</VERS>\n\t\t\t<VERS vnumber=\"26\"> David asked the men who were standing near him, \"What will be done for the man who strikes down this Philistine and frees Israel from this humiliation? For who is this uncircumcised Philistine, that he defies the armies of the living God?\" </VERS>\n\t\t\t<VERS vnumber=\"27\"> The soldiers told him what had been promised, saying, \"This is what will be done for the man who can strike him down.\"</VERS>\n\t\t\t<VERS vnumber=\"28\"> When David's oldest brother Eliab heard him speaking to the men, he became angry with David and said, \"Why have you come down here? To whom did you entrust those few sheep in the desert? I am familiar with your pride and deceit! You have come down here to watch the battle!\"</VERS>\n\t\t\t<VERS vnumber=\"29\"> David replied, \"What have I done now? Can't I say anything?\"</VERS>\n\t\t\t<VERS vnumber=\"30\"> Then he turned from those who were nearby to someone else and asked the same question, but they gave him the same answer as before. </VERS>\n\t\t\t<VERS vnumber=\"31\"> When David's words were overheard and reported to Saul, he called for him.</VERS>\n\t\t\t<VERS vnumber=\"32\"> David said to Saul, \"Don't let anyone be discouraged. Your servant will go and fight this Philistine!\" </VERS>\n\t\t\t<VERS vnumber=\"33\"> But Saul replied to David, \"You aren't able to go against this Philistine and fight him! You're just a boy! He has been a warrior from his youth!\"</VERS>\n\t\t\t<VERS vnumber=\"34\"> David replied to Saul, \"Your servant has been a shepherd for his father's flock. Whenever a lion or bear would come and carry off a sheep from the flock,</VERS>\n\t\t\t<VERS vnumber=\"35\"> I would go out after it, strike it down, and rescue the sheep from its mouth. If it rose up against me, I would grab it by its jaw, strike it, and kill it.</VERS>\n\t\t\t<VERS vnumber=\"36\"> Your servant has struck down both the lion and the bear. This uncircumcised Philistine will be just like one of them. For he has defied the armies of the living God!\" </VERS>\n\t\t\t<VERS vnumber=\"37\"> David went on to say, \"The LORD who delivered me from the lion and the bear will also deliver me from the hand of this Philistine!\" Then Saul said to David, \"Go! The LORD will be with you.\"</VERS>\n\t\t\t<VERS vnumber=\"38\"> Then Saul clothed David with his own fighting attire and put a bronze helmet on his head. He also put body armor on him.</VERS>\n\t\t\t<VERS vnumber=\"39\"> David strapped on his sword over his fighting attire and tried to walk around, but he was not used to them. David said to Saul, \"I can't walk in these things, for I'm not used to them.\" So David removed them. </VERS>\n\t\t\t<VERS vnumber=\"40\"> He took his staff in his hand, picked out five smooth stones from the stream, placed them in the pouch of his shepherd's bag, took his sling in hand, and approached the Philistine.</VERS>\n\t\t\t<VERS vnumber=\"41\">  The Philistine kept coming closer to David, with his shield bearer walking in front of him. </VERS>\n\t\t\t<VERS vnumber=\"42\"> When the Philistine looked carefully at David, he despised him, for he was only a ruddy and handsome boy.</VERS>\n\t\t\t<VERS vnumber=\"43\"> The Philistine said to David, \"Am I a dog, that you are coming after me with sticks?\" Then the Philistine cursed David by his gods. </VERS>\n\t\t\t<VERS vnumber=\"44\"> The Philistine said to David, \"Come here to me, so I can give your flesh to the birds of the sky and the wild animals of the field!\"</VERS>\n\t\t\t<VERS vnumber=\"45\"> But David replied to the Philistine, \"You are coming against me with sword and spear and javelin. But I am coming against you in the name of the LORD of hosts, the God of Israel's armies, whom you have defied!</VERS>\n\t\t\t<VERS vnumber=\"46\"> This very day the LORD will deliver you into my hand! I will strike you down and cut off your head. This day I will give the corpses of the Philistine army to the birds of the sky and the wild animals of the land. Then all the land will realize that Israel has a God</VERS>\n\t\t\t<VERS vnumber=\"47\"> and all this assembly will know that it is not by sword or spear that the LORD saves! For the battle is the LORD's, and he will deliver you into our hand.\"</VERS>\n\t\t\t<VERS vnumber=\"48\"> The Philistine drew steadily closer to David to attack him, while David quickly ran toward the battle line to attack the Philistine.</VERS>\n\t\t\t<VERS vnumber=\"49\"> David reached his hand into the bag and took out a stone. He slung it, striking the Philistine on the forehead. The stone sank deeply into his forehead, and he fell down with his face to the ground.</VERS>\n\t\t\t<VERS vnumber=\"50\">  David prevailed over the Philistine with just the sling and the stone. He struck down the Philistine and killed him. David did not even have a sword in his hand.</VERS>\n\t\t\t<VERS vnumber=\"51\"> David ran and stood over the Philistine. He grabbed Goliath's sword, drew it from its sheath, killed him, and cut off his head with it. When the Philistines saw their champion was dead, they ran away.</VERS>\n\t\t\t<VERS vnumber=\"52\"> Then the men of Israel and Judah charged forward, shouting a battle cry. They chased the Philistines to the valley and to the very gates of Ekron. The Philistine corpses lay fallen along the Shaaraim road to Gath and Ekron. </VERS>\n\t\t\t<VERS vnumber=\"53\"> When the Israelites returned from their hot pursuit of the Philistines, they looted their camp.</VERS>\n\t\t\t<VERS vnumber=\"54\"> David took the head of the Philistine and brought it to Jerusalem, and he put Goliath's weapons in his tent.</VERS>\n\t\t\t<VERS vnumber=\"55\">  Now as Saul watched David going out to fight the Philistine, he asked Abner, the general in command of the army, \"Whose son is this young man, Abner?\" Abner replied, \"As surely as you live, O king, I don't know.\" </VERS>\n\t\t\t<VERS vnumber=\"56\"> The king said, \"Find out whose son this boy is!\"</VERS>\n\t\t\t<VERS vnumber=\"57\"> So when David returned from striking down the Philistine, Abner took him and brought him before Saul. He still had the head of the Philistine in his hand.</VERS>\n\t\t\t<VERS vnumber=\"58\"> Saul said to him, \"Whose son are you, young man?\" David replied, \"I am the son of your servant Jesse in Bethlehem.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"18\">\n\t\t\t<VERS vnumber=\"1\"> When David had finished talking with Saul, Jonathan and David became bound together in close friendship. Jonathan loved David as much as he did his own life.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Saul retained David on that day and did not allow him to return to his father's house. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Jonathan made a covenant with David, for he loved him as much as he did his own life.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Jonathan took off the robe he was wearing and gave it to David, along with the rest of his gear, including his sword, his bow, and even his belt.</VERS>\n\t\t\t<VERS vnumber=\"5\"> On every mission on which Saul sent him, David achieved success. So Saul appointed him over the men of war. This pleased not only all the army, but also Saul's servants.</VERS>\n\t\t\t<VERS vnumber=\"6\"> When the men arrived after David returned from striking down the Philistine, the women from all the cities of Israel came out singing and dancing to meet King Saul. They were happy as they played their tambourines and three-stringed instruments.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The women who were playing the music sang, \"Saul has struck down his thousands, but David his tens of thousands!\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> This made Saul very angry. The statement displeased him and he thought, \"They have attributed to David tens of thousands, but to me they have attributed only thousands. What does he lack, except the kingdom?\" </VERS>\n\t\t\t<VERS vnumber=\"9\"> So Saul was keeping an eye on David from that day onward.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The next day an evil spirit from God rushed upon Saul and he prophesied within his house. Now David was playing the lyre that day. There was a spear in Saul's hand, </VERS>\n\t\t\t<VERS vnumber=\"11\"> and Saul threw the spear, thinking, \"I'll nail David to the wall!\" But David escaped from him on two different occasions.</VERS>\n\t\t\t<VERS vnumber=\"12\"> So Saul feared David, because the LORD was with him but had departed from Saul.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Saul removed David from his presence and made him a commanding officer. David led the army out to battle and back.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Now David achieved success in all he did, for the LORD was with him.</VERS>\n\t\t\t<VERS vnumber=\"15\"> When Saul saw how very successful he was, he was afraid of him.</VERS>\n\t\t\t<VERS vnumber=\"16\"> But all Israel and Judah loved David, for he was the one leading them out to battle and back.</VERS>\n\t\t\t<VERS vnumber=\"17\">  Then Saul said to David, \"Here's my oldest daughter, Merab. I want to give her to you in marriage. Only be a brave warrior for me and fight the battles of the LORD.\" For Saul thought, \"There's no need for me to raise my hand against him. Let it be the hand of the Philistines!\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> David said to Saul, \"Who am I? Who are my relatives or the clan of my father in Israel that I should become the king's son-in-law?\" </VERS>\n\t\t\t<VERS vnumber=\"19\"> When the time came for Merab, Saul's daughter, to be given to David, she instead was given in marriage to Adriel, who was from Meholah.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Now Michal, Saul's daughter, loved David. When they told Saul about this, it pleased him. </VERS>\n\t\t\t<VERS vnumber=\"21\"> Saul said, \"I will give her to him so that she may become a snare to him and the hand of the Philistines may be against him.\" So Saul said to David, \"Today is the second time for you to become my son-in-law.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> Then Saul instructed his servants, \"Tell David secretly, 'The king is pleased with you, and all his servants like you. So now become the king's son-in-law.\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> So Saul's servants spoke these words privately to David. David replied, \"Is becoming the king's son-in-law something insignificant to you? I'm just a poor and lightly-esteemed man!\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> When Saul's servants reported what David had said,</VERS>\n\t\t\t<VERS vnumber=\"25\"> Saul replied, \"Here is what you should say to David: 'There is nothing that the king wants as a price for the bride except a hundred Philistine foreskins, so that he can be avenged of his enemies.'\" (Now Saul was thinking that he could kill David by the hand of the Philistines.)</VERS>\n\t\t\t<VERS vnumber=\"26\"> So his servants told David these things and David agreed to become the king's son-in-law. Now the specified time had not yet expired</VERS>\n\t\t\t<VERS vnumber=\"27\"> when David, along with his men, went out and struck down two hundred Philistine men. David brought their foreskins and presented all of them to the king so he could become the king's son-in-law. Saul then gave him his daughter Michal in marriage.</VERS>\n\t\t\t<VERS vnumber=\"28\"> When Saul realized that the LORD was with David and that his daughter Michal loved David,</VERS>\n\t\t\t<VERS vnumber=\"29\"> Saul became even more afraid of him. Saul continued to be at odds with David from then on.</VERS>\n\t\t\t<VERS vnumber=\"30\">  Then the leaders of the Philistines would march out, and as often as they did so, David achieved more success than all of Saul's servants. His name was held in high esteem.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"19\">\n\t\t\t<VERS vnumber=\"1\"> Then Saul told his son Jonathan and all his servants to kill David. But Saul's son Jonathan liked David very much.</VERS>\n\t\t\t<VERS vnumber=\"2\"> So Jonathan told David, \"My father Saul is trying to kill you. So be careful tomorrow morning. Find a hiding place and stay in seclusion.</VERS>\n\t\t\t<VERS vnumber=\"3\"> I will go out and stand beside my father in the field where you are. I will speak about you to my father. When I find out what the problem is, I will let you know.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> So Jonathan spoke on David's behalf to his father Saul. He said to him, \"The king should not sin against his servant David, for he has not sinned against you. On the contrary, his actions have been very beneficial for you. </VERS>\n\t\t\t<VERS vnumber=\"5\"> He risked his life when he struck down the Philistine and the LORD gave all Israel a great victory. When you saw it, you were happy. So why would you sin against innocent blood by putting David to death for no reason?\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> Saul accepted Jonathan's advice and took an oath, \"As surely as the LORD lives, he will not be put to death.\" </VERS>\n\t\t\t<VERS vnumber=\"7\"> Then Jonathan called David and told him all these things. Jonathan brought David to Saul, and he served him as he had done formerly.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Now once again there was war. So David went out to fight the Philistines. He defeated them thoroughly and they ran away from him.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Then an evil spirit from the LORD came upon Saul. He was sitting in his house with his spear in his hand, while David was playing the lyre.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Saul tried to nail David to the wall with the spear, but he escaped from Saul's presence and the spear drove into the wall. David escaped quickly that night.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Saul sent messengers to David's house to guard it and to kill him in the morning. Then David's wife Michal told him, \"If you do not save yourself tonight, tomorrow you will be dead!\" </VERS>\n\t\t\t<VERS vnumber=\"12\"> So Michal lowered David through the window, and he ran away and escaped.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Then Michal took a household idol and put it on the bed. She put a quilt made of goat's hair over its head and then covered the idol with a garment. </VERS>\n\t\t\t<VERS vnumber=\"14\"> When Saul sent messengers to arrest David, she said, \"He's sick.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> Then Saul sent the messengers back to see David, saying, \"Bring him up to me on his bed so I can kill him.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> When the messengers came, they found only the idol on the bed and the quilt made of goat's hair at its head.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Saul said to Michal, \"Why have you deceived me this way by sending my enemy away? Now he has escaped!\" Michal replied to Saul, \"He said to me, 'Help me get away or else I will kill you!'\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> Now David had run away and escaped. He went to Samuel in Ramah and told him everything that Saul had done to him. Then he and Samuel went and stayed at Naioth.</VERS>\n\t\t\t<VERS vnumber=\"19\"> It was reported to Saul saying, \"David is at Naioth in Ramah.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> So Saul sent messengers to capture David. When they saw a company of prophets prophesying with Samuel standing there as their leader, the spirit of God came upon Saul's messengers, and they also prophesied.</VERS>\n\t\t\t<VERS vnumber=\"21\"> When it was reported to Saul, he sent more messengers, but they prophesied too. So Saul sent messengers a third time, but they also prophesied.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Finally Saul himself went to Ramah. When he arrived at the large cistern that is in Secu, he asked, \"Where are Samuel and David?\" They said, \"At Naioth in Ramah.\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> So Saul went to Naioth in Ramah. The Spirit of God came upon him as well, and he walked along prophesying until he came to Naioth in Ramah.</VERS>\n\t\t\t<VERS vnumber=\"24\"> He even stripped off his clothes and prophesied before Samuel. He lay there naked all that day and night. (For that reason it is asked, \"Is Saul also among the prophets?\")</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"20\">\n\t\t\t<VERS vnumber=\"1\"> David fled from Naioth in Ramah. He came to Jonathan and asked, \"What have I done? What is my offense? How have I sinned before your father? For he is seeking my life!\"</VERS>\n\t\t\t<VERS vnumber=\"2\"> Jonathan said to him, \"By no means are you going to die! My father does nothing large or small without making me aware of it. Why would my father hide this matter from me? It just won't happen!\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> Taking an oath, David again said, \"Your father is very much aware of the fact that I have found favor with you, and he has thought, 'Don't let Jonathan know about this, or he will be upset.' But as surely as the LORD lives and you live, there is about one step between me and death!\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> Jonathan replied to David, \"Tell me what I can do for you.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> David said to Jonathan, \"Tomorrow is the new moon, and I am certainly expected to join the king for a meal. You must send me away so I can hide in the field until the third evening from now. </VERS>\n\t\t\t<VERS vnumber=\"6\"> If your father happens to miss me, you should say, 'David urgently requested me to let him go to his city Bethlehem, for there is an annual sacrifice there for his entire family.' </VERS>\n\t\t\t<VERS vnumber=\"7\"> If he should then say, 'That's fine,' then your servant is safe. But if he becomes very angry, be assured that he has decided to harm me.</VERS>\n\t\t\t<VERS vnumber=\"8\"> You must be loyal to your servant, for you have made a covenant with your servant in the LORD's name. If I am guilty, you yourself kill me! Why bother taking me to your father?\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> Jonathan said, \"Far be it from you to suggest this! If I were at all aware that my father had decided to harm you, wouldn't I tell you about it?\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> David said to Jonathan, \"Who will tell me if your father answers you harshly?\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> Jonathan said to David, \"Come on. Let's go out to the field.\" When the two of them had gone out into the field,</VERS>\n\t\t\t<VERS vnumber=\"12\"> Jonathan said to David, \"The LORD God of Israel is my witness. I will feel out my father about this time the day after tomorrow. If he is favorably inclined toward David, will I not then send word to you and let you know?</VERS>\n\t\t\t<VERS vnumber=\"13\"> But if my father intends to do you harm, may the LORD do all this and more to Jonathan, if I don't let you know and send word to you so you can go safely on your way. May the LORD be with you, as he was with my father. </VERS>\n\t\t\t<VERS vnumber=\"14\"> While I am still alive, extend to me the loyalty of the LORD, or else I will die!</VERS>\n\t\t\t<VERS vnumber=\"15\"> Don't ever cut off your loyalty to my family, not even when the LORD has cut off every one of David's enemies from the face of the earth</VERS>\n\t\t\t<VERS vnumber=\"16\"> and called David's enemies to account.\" So Jonathan made a covenant with the house of David.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Jonathan once again took an oath with David, because he loved him. In fact Jonathan loved him as much as he did his own life.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Jonathan said to him, \"Tomorrow is the new moon, and you will be missed, for your seat will be empty.</VERS>\n\t\t\t<VERS vnumber=\"19\"> On the third day you should go down quickly and come to the place where you hid yourself the day this all started. Stay near the stone Ezel. </VERS>\n\t\t\t<VERS vnumber=\"20\"> I will shoot three arrows near it, as though I were shooting at a target.</VERS>\n\t\t\t<VERS vnumber=\"21\"> When I send a boy after them, I will say, \"Go and find the arrows.\" If I say to the boy, 'Look, the arrows are on this side of you; get them,' then come back. For as surely as the LORD lives, you will be safe and there will no problem. </VERS>\n\t\t\t<VERS vnumber=\"22\"> But if I say to the boy, \"Look, the arrows are on the other side of you,' get away. For in that case the LORD has sent you away.</VERS>\n\t\t\t<VERS vnumber=\"23\"> With regard to the matter that you and I discussed, the LORD is the witness between us forever!\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> So David hid in the field. When the new moon came, the king sat down to eat his meal.</VERS>\n\t\t\t<VERS vnumber=\"25\"> The king sat down in his usual place by the wall, with Jonathan opposite him and Abner at his side. But David's place was vacant. </VERS>\n\t\t\t<VERS vnumber=\"26\"> However, Saul said nothing about it that day, for he thought, \"Something has happened to make him ceremonially unclean. Yes, he must be unclean.\" </VERS>\n\t\t\t<VERS vnumber=\"27\"> But the next morning, the second day of the new moon, David's place was still vacant. So Saul said to his son Jonathan, \"Why has Jesse's son not come to the meal yesterday or today?\"</VERS>\n\t\t\t<VERS vnumber=\"28\"> Jonathan replied to Saul, \"David urgently requested that he be allowed to go to Bethlehem.</VERS>\n\t\t\t<VERS vnumber=\"29\"> He said, 'Permit me to go, for we are having a family sacrifice in the city, and my brother urged me to be there. So now, if I have found favor with you, let me go to see my brothers.' For that reason he has not come to the king's table.\"</VERS>\n\t\t\t<VERS vnumber=\"30\"> Saul became angry with Jonathan and said to him, \"You stupid traitor! Don't I realize that to your own disgrace and to the disgrace of your mother's nakedness you have chosen this son of Jesse? </VERS>\n\t\t\t<VERS vnumber=\"31\"> For as long as this son of Jesse is alive on the earth, you and your kingdom will not be established. Now, send some men and bring him to me. For he is as good as dead!\"</VERS>\n\t\t\t<VERS vnumber=\"32\"> Jonathan responded to his father Saul, \"Why should he be put to death? What has he done?\"</VERS>\n\t\t\t<VERS vnumber=\"33\"> Then Saul threw his spear at Jonathan in order to strike him down. So Jonathan was convinced that his father had decided to kill David. </VERS>\n\t\t\t<VERS vnumber=\"34\"> Jonathan got up from the table enraged. He did not eat any food on that second day of the new moon, for he was upset that his father had humiliated David.</VERS>\n\t\t\t<VERS vnumber=\"35\"> The next morning Jonathan, along with a young servant, went out to the field to meet David.</VERS>\n\t\t\t<VERS vnumber=\"36\"> He said to his servant, \"Run, find the arrows that I am about to shoot.\" As the servant ran, Jonathan shot the arrow beyond him. </VERS>\n\t\t\t<VERS vnumber=\"37\"> When the servant came to the place where Jonathan had shot the arrow, Jonathan called out to the servant, \"Isn't the arrow further beyond you?\" </VERS>\n\t\t\t<VERS vnumber=\"38\"> Jonathan called out to the servant, \"Hurry! Go faster! Don't delay!\" Jonathan's servant retrieved the arrow and came back to his master.</VERS>\n\t\t\t<VERS vnumber=\"39\"> (Now the servant did not understand any of this. Only Jonathan and David knew what was going on.)</VERS>\n\t\t\t<VERS vnumber=\"40\"> Then Jonathan gave his equipment to the servant who was with him. He said to him, \"Go, take these things back to the city.\"</VERS>\n\t\t\t<VERS vnumber=\"41\"> When the servant had left, David got up from beside the mound, knelt with his face to the ground, and bowed three times. Then they kissed each other and they both wept, especially David. </VERS>\n\t\t\t<VERS vnumber=\"42\"> Jonathan said to David, \"Go in peace, for the two of us have sworn together in the name of the LORD saying, 'The LORD will be between me and you and between my descendants and your descendants forever.'\" Then David got up and left, while Jonathan went back to the city.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"21\">\n\t\t\t<VERS vnumber=\"1\">  David went to Ahimelech the priest in Nob. Ahimelech was shaking with fear when he met David, and said to him, \"Why are you by yourself with no one accompanying you?\" </VERS>\n\t\t\t<VERS vnumber=\"2\"> David replied to Ahimelech the priest, \"The king instructed me to do something, but he said to me, 'Don't let anyone know the reason I am sending you or the instructions I have given you.' I have told my soldiers to wait at a certain place.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Now what do you have at your disposal? Give me five loaves of bread, or whatever can be found.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> The priest replied to David, \"I don't have any ordinary bread at my disposal. Only holy bread is available, and then only if your soldiers have abstained from sexual relations with women.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> David said to the priest, \"Certainly women have been kept away from us, just as on previous occasions when I have set out. The soldiers' equipment is holy, even on an ordinary journey. How much more so will they be holy today, along with their equipment!\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> So the priest gave him holy bread, for there was no bread there other than the bread of the Presence. It had been removed from before the LORD in order to replace it with hot bread on the day it had been taken away.</VERS>\n\t\t\t<VERS vnumber=\"7\"> (One of Saul's servants was there that day, detained before the LORD. His name was Doeg the Edomite, who was in charge of Saul's shepherds.)</VERS>\n\t\t\t<VERS vnumber=\"8\"> David said to Ahimelech, \"Is there no sword or spear here at your disposal? I don't have my own sword or equipment in hand due to the urgency of the king's instructions.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> The priest replied, \"The sword of Goliath the Philistine, whom you struck down in the valley of Elah, is wrapped in a garment behind the ephod. If you wish, take it for yourself. Other than that, there's nothing here.\" David said, \"There's nothing like it! Give it to me!\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> So on that day David arose and fled from Saul. He went to King Achish of Gath.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The servants of Achish said to him, \"Isn't this David, the king of the land? Isn't he the one that they sing about when they dance, saying, 'Saul struck down his thousands, But David his tens of thousands'?\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> David thought about what they said and was very afraid of King Achish of Gath. </VERS>\n\t\t\t<VERS vnumber=\"13\"> He altered his behavior in their presence. Since he was in their power, he pretended to be insane, making marks on the doors of the gate and letting his saliva run down his beard.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Achish said to his servants, \"Look at this madman! Why did you bring him to me?</VERS>\n\t\t\t<VERS vnumber=\"15\"> Do I have a shortage of fools, that you have brought me this man to display his insanity in front of me? Should this man enter my house?\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"22\">\n\t\t\t<VERS vnumber=\"1\"> So David left there and escaped to the cave of Adullam. When his brothers and the rest of his father's family learned about it, they went down there to him. </VERS>\n\t\t\t<VERS vnumber=\"2\"> All those who were in trouble or owed someone money or were discontented gathered around him, and he became their leader. He had about four hundred men with him.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Then David went from there to Mizpah in Moab, where he said to the king of Moab, \"Please let my father and mother stay with you until I know what God is going to do for me.\" </VERS>\n\t\t\t<VERS vnumber=\"4\"> So he had them stay with the king of Moab; they stayed with him the whole time that David was in the stronghold. </VERS>\n\t\t\t<VERS vnumber=\"5\"> Then Gad the prophet said to David, \"Don't stay in the stronghold. Go to the land of Judah.\" So David left and went to the forest of Hereth.</VERS>\n\t\t\t<VERS vnumber=\"6\"> But Saul found out the whereabouts of David and the men who were with him. Now Saul was sitting at Gibeah under the tamarisk tree at an elevated location with his spear in hand and all his servants stationed around him. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Saul said to his servants who were stationed around him, \"Listen up, you Benjaminites! Is Jesse's son giving fields and vineyards to all of you? Or is he making all of you commanders and officers?</VERS>\n\t\t\t<VERS vnumber=\"8\"> For all of you have conspired against me! No one informs me when my own son makes an agreement with this son of Jesse! Not one of you feels sorry for me or informs me that my own son has commissioned my own servant to hide in ambush against me, as is the case today!\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> But Doeg the Edomite, who had stationed himself with the servants of Saul, replied, \"I saw this son of Jesse come to Ahimelech son of Ahitub at Nob.</VERS>\n\t\t\t<VERS vnumber=\"10\"> He inquired of the LORD for him and gave him provisions. He also gave him the sword of Goliath the Philistine.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> Then the king arranged for a meeting with the priest Ahimelech son of Ahitub and all the priests of his father's house who were at Nob. They all came to the king.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Then Saul said, \"Listen, son of Ahitub.\" He replied, \"Here I am, my lord.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> Saul said to him, \"Why have you conspired against me, you and this son of Jesse? You gave him bread and a sword and inquired of God on his behalf, so that he opposes me and waits in ambush, as is the case today!\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> Ahimelech replied to the king, \"Who among all your servants is faithful like David? He is the king's son-in-law, the leader of your bodyguard, and honored in your house!</VERS>\n\t\t\t<VERS vnumber=\"15\"> Was it just today that I began to inquire of God on his behalf? Far be it from me! The king should not accuse his servant or any of my father's house. For your servant is not aware of all this, not in whole or in part!\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> But the king said, \"You will surely die, Ahimelech, you and all your father's house!</VERS>\n\t\t\t<VERS vnumber=\"17\"> Then the king said to the messengers who were stationed beside him, \"Turn and kill the priests of the LORD, for they too have sided with David! They knew he was fleeing, but they did not inform me.\" But the king's servants refused to harm the priests of the LORD.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Then the king said to Doeg, \"You turn and strike down the priests!\" So Doeg the Edomite turned and struck down the priests. He killed on that day eighty-five men who wore the linen ephod. </VERS>\n\t\t\t<VERS vnumber=\"19\"> As for Nob, the city of the priests, he struck down with the sword men and women, children and infants, oxen, donkeys, and sheep, all with the sword.</VERS>\n\t\t\t<VERS vnumber=\"20\"> But one of the sons of Ahimelech son of Ahitub escaped and fled to David. His name was Abiathar.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Abiathar told David that Saul had killed the priests of the LORD.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Then David said to Abiathar, \"I knew that day when Doeg the Edomite was there that he would certainly tell Saul! I am guilty of all the deaths in your father's house! </VERS>\n\t\t\t<VERS vnumber=\"23\"> Stay with me. Don't be afraid! Whoever seeks my life is seeking your life as well. You are secure with me.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"23\">\n\t\t\t<VERS vnumber=\"1\"> They told David, \"The Philistines are fighting in Keilah and are looting the threshing floors.\"</VERS>\n\t\t\t<VERS vnumber=\"2\"> So David asked the LORD, \"Should I go and strike down these Philistines?\" The LORD said to David, \"Go, strike down the Philistines and deliver Keilah.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> But David's men said to him, \"We are afraid while we are still here in Judah! What will it be like if we go to Keilah against the armies of the Philistines?\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> So David asked the LORD once again. But again the LORD replied, \"Arise, go down to Keilah, for I will give the Philistines into your hand.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> So David and his men went to Keilah and fought the Philistines. He took away their cattle and thoroughly defeated them. David delivered the inhabitants of Keilah.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Now when Abiathar son of Ahimelech had fled to David at Keilah, he had brought with him an ephod.</VERS>\n\t\t\t<VERS vnumber=\"7\"> When Saul was told that David had come to Keilah, Saul said, \"God has delivered him into my hand, for he has boxed himself into a corner by entering a city with two barred gates.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> So Saul mustered all his army to go down to Keilah and besiege David and his men.</VERS>\n\t\t\t<VERS vnumber=\"9\"> When David realized that Saul was planning to harm him, he told Abiathar the priest, \"Bring the ephod!\" </VERS>\n\t\t\t<VERS vnumber=\"10\"> Then David said, \"O LORD God of Israel, your servant has clearly heard that Saul is planning to come to Keilah to destroy the city because of me. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Will the leaders of Keilah deliver me into his hand? Will Saul come down as your servant has heard? O LORD God of Israel, please inform your servant!\" Then the LORD said, \"He will come down.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> David asked, \"Will the leaders of Keilah deliver me and my men into Saul's hand?\" The LORD said, \"They will deliver you over.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> So David and his men, who numbered about six hundred, set out and left Keilah; they moved around from one place to another. When told that David had escaped from Keilah, Saul called a halt to his expedition. </VERS>\n\t\t\t<VERS vnumber=\"14\"> David stayed in the strongholds that were in the desert and in the hill country of the desert of Ziph. Saul looked for him all the time, but God did not deliver David into his hand. </VERS>\n\t\t\t<VERS vnumber=\"15\"> David realized that Saul had come out to seek his life; at that time David was in Horesh in the desert of Ziph.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Then Jonathan son of Saul left and went to David at Horesh. He encouraged him through God. </VERS>\n\t\t\t<VERS vnumber=\"17\"> He said to him, \"Don't be afraid! For the hand of my father Saul cannot find you. You will rule over Israel, and I will be your second in command. Even my father Saul realizes this.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> When the two of them had made a covenant before the LORD, David stayed on at Horesh, but Jonathan went to his house.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Then the Ziphites went up to Saul at Gibeah and said, \"Isn't David hiding among us in the strongholds at Horesh on the hill of Hakilah, south of Jeshimon?</VERS>\n\t\t\t<VERS vnumber=\"20\"> Now at your own discretion, O king, come down. Delivering him into the king's hand will be our responsibility.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> Saul replied, \"May you be blessed by the LORD, for you have had compassion on me.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Go and make further arrangements. Determine precisely where he is and who has seen him there, for I am told that he is extremely cunning. </VERS>\n\t\t\t<VERS vnumber=\"23\"> Locate precisely all the places where he hides and return to me with dependable information. Then I will go with you. If he is in the land, I will find him among all the thousands of Judah.\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> So they left and went to Ziph ahead of Saul. Now David and his men were in the desert of Maon, in the Arabah to the south of Jeshimon.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Saul and his men went to look for him. But David was informed and went down to the rock and stayed in the desert of Maon. When Saul heard about it, he pursued David in the desert of Maon. </VERS>\n\t\t\t<VERS vnumber=\"26\"> Saul went on one side of the mountain, while David and his men went on the other side of the mountain. David was hurrying to get away from Saul, but Saul and his men were surrounding David and his men so they could capture them.</VERS>\n\t\t\t<VERS vnumber=\"27\"> But a messenger came to Saul saying, \"Come quickly, for the Philistines have raided the land!\"</VERS>\n\t\t\t<VERS vnumber=\"28\"> So Saul stopped pursuing David and went to confront the Philistines. Therefore that place is called Sela Hammahlekoth.</VERS>\n\t\t\t<VERS vnumber=\"29\">  Then David went up from there and stayed in the strongholds of En Gedi.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"24\">\n\t\t\t<VERS vnumber=\"1\">  When Saul returned from pursuing the Philistines, they told him, \"Look, David is in the desert of En Gedi.\"</VERS>\n\t\t\t<VERS vnumber=\"2\"> So Saul took three thousand select men from all Israel and went to find David and his men in the region of the rocks of the mountain goats.</VERS>\n\t\t\t<VERS vnumber=\"3\"> He came to the sheepfolds by the road, where there was a cave. Saul went into it to relieve himself. Now David and his men were sitting in the recesses of the cave.</VERS>\n\t\t\t<VERS vnumber=\"4\"> David's men said to him, \"This is the day about which the LORD said to you, 'I will give your enemy into your hand, and you can do to him whatever seems appropriate to you.'\" So David got up and quietly cut off an edge of Saul's robe. </VERS>\n\t\t\t<VERS vnumber=\"5\"> Afterward David's conscience bothered him because he had cut off an edge of Saul's robe. </VERS>\n\t\t\t<VERS vnumber=\"6\"> He said to his men, \"May the LORD keep me far away from doing such a thing to my lord, who is the LORD's chosen one, by extending my hand against him. After all, he is the LORD's chosen one.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> David restrained his men with these words and did not allow them to rise up against Saul. Then Saul left the cave and started down the road.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Afterward David got up and went out of the cave. He called out after Saul, \"My lord, O king!\" When Saul looked behind him, David kneeled down and bowed with his face to the ground.</VERS>\n\t\t\t<VERS vnumber=\"9\"> David said to Saul, \"Why do you pay attention when men say, 'David is seeking to do you harm'?</VERS>\n\t\t\t<VERS vnumber=\"10\"> Today your own eyes see how the LORD delivered you, this very day, into my hands in the cave. Some told me to kill you, but I had pity on you and said, 'I will not extend my hand against my lord, for he is the LORD's chosen one.'</VERS>\n\t\t\t<VERS vnumber=\"11\"> Look, my father, and see the edge of your robe in my hand! When I cut off the edge of your robe, I didn't kill you. So realize and understand that I am not planning evil or rebellion. Even though I have not sinned against you, you are waiting in ambush to take my life. </VERS>\n\t\t\t<VERS vnumber=\"12\"> May the LORD judge between the two of us, and may the LORD vindicate me over you, but my hand will not be against you.</VERS>\n\t\t\t<VERS vnumber=\"13\"> It's like the old proverb says: 'From evil people evil proceeds.' But my hand will not be against you.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Who has the king of Israel come out after? Who is it that you are pursuing? A dead dog? A single flea?</VERS>\n\t\t\t<VERS vnumber=\"15\"> May the LORD be our judge and arbiter. May he see and arbitrate my case and deliver me from your hands!\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> When David finished speaking these words to Saul, Saul said, \"Is that your voice, my son David?\" Then Saul wept loudly.</VERS>\n\t\t\t<VERS vnumber=\"17\"> He said to David, \"You are more innocent than I, for you have treated me well, even though I have tried to harm you!</VERS>\n\t\t\t<VERS vnumber=\"18\"> You have explained today how you have treated me well. The LORD delivered me into your hand, but you did not kill me.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Now if a man finds his enemy, does he send him on his way in good shape? May the LORD repay you with good this day for what you have done to me.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Now look, I realize that you will in fact be king and that the kingdom of Israel will be established in your hand.</VERS>\n\t\t\t<VERS vnumber=\"21\"> So now swear to me in the LORD's name that you will not kill my descendants after me or destroy my name from the house of my father.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> David promised Saul this on oath. Then Saul went to his house, and David and his men went up to the stronghold.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"25\">\n\t\t\t<VERS vnumber=\"1\"> Samuel died, and all Israel assembled and mourned him. They buried him at his home in Ramah. Then David left and went down to the desert of Paran.</VERS>\n\t\t\t<VERS vnumber=\"2\"> There was a man in Maon whose business was in Carmel. This man was very wealthy; he owned three thousand sheep and a thousand goats. At that time he was shearing his sheep in Carmel. </VERS>\n\t\t\t<VERS vnumber=\"3\"> The man's name was Nabal, and his wife's name was Abigail. She was both wise and beautiful, but the man was harsh and his deeds were evil. He was a Calebite.</VERS>\n\t\t\t<VERS vnumber=\"4\"> When David heard in the desert that Nabal was shearing his sheep,</VERS>\n\t\t\t<VERS vnumber=\"5\"> he sent ten servants, saying to them, \"Go up to Carmel to see Nabal and give him greetings in my name.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Then you will say to my brother, \"Peace to you and your house! Peace to all that is yours! </VERS>\n\t\t\t<VERS vnumber=\"7\"> Now I hear that they are shearing sheep for you. When your shepherds were with us, we neither insulted them nor harmed them the whole time they were in Carmel.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Ask your own servants; they can tell you! May my servants find favor in your sight, for we have come at the time of a holiday. Please provide us, your servants and your son David, with whatever you can spare.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> So David's servants went and spoke all these words to Nabal in David's name. Then they paused.</VERS>\n\t\t\t<VERS vnumber=\"10\"> But Nabal responded to David's servants, \"Who is David, and who is this son of Jesse? This is a time when many servants are breaking away from their masters!</VERS>\n\t\t\t<VERS vnumber=\"11\"> Should I take my bread and my water and my meat that I have slaughtered for my shearers and give them to these men? I don't even know where they came from!\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> So David's servants went on their way. When they had returned, they came and told David all these things. </VERS>\n\t\t\t<VERS vnumber=\"13\"> Then David instructed his men, \"Each of you strap on your sword!\" So each one strapped on his sword, and David also strapped on his sword. About four hundred men followed David up, while two hundred stayed behind with the equipment.</VERS>\n\t\t\t<VERS vnumber=\"14\"> But one of the servants told Nabal's wife Abigail, \"David sent messengers from the desert to greet our lord, but he screamed at them. </VERS>\n\t\t\t<VERS vnumber=\"15\"> These men were very good to us. They did not insult us, nor did we sustain any loss during the entire time we were together in the field. </VERS>\n\t\t\t<VERS vnumber=\"16\"> Both night and day they were a protective wall for us the entire time we were with them, while we were tending our flocks.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Now be aware of this, and see what you can do. For disaster has been planned for our lord and his entire household. He is such a wicked person that no one tells him anything!\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> So Abigail quickly took two hundred loaves of bread, two containers of wine, five prepared sheep, five seahs of roasted grain, a hundred bunches of raisins, and two hundred lumps of pressed figs. She loaded them on donkeys </VERS>\n\t\t\t<VERS vnumber=\"19\"> and said to her servants, \"Go on ahead of me. I will come after you.\" But she did not tell her husband Nabal.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Riding on her donkey, she went down under cover of the mountain. David and his men were coming down to meet her, and she encountered them.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Now David had been thinking, \"In vain I guarded everything that belonged to this man in the desert. I didn't take anything from him. But he has repaid my good with evil. </VERS>\n\t\t\t<VERS vnumber=\"22\"> God will severely punish David, if I leave alive until morning even one male from all those who belong to him!\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> When Abigail saw David, she got down quickly from the donkey, threw herself down before David, and bowed to the ground.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Falling at his feet, she said, \"My lord, I accept all the guilt! But please let your female servant speak with my lord! Please listen to the words of your servant!</VERS>\n\t\t\t<VERS vnumber=\"25\"> My lord should not pay attention to this wicked man Nabal. He simply lives up to his name! His name means 'fool,' and he is indeed foolish! But I, your servant, did not see the servants my lord sent.</VERS>\n\t\t\t<VERS vnumber=\"26\"> \"Now, my lord, as surely as the LORD lives and as surely as you live, it is the LORD who has kept you from shedding blood and taking matters into your own hands. Now may your enemies and those who seek to harm my lord be like Nabal.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Now let this present that your servant has brought to my lord be given to the servants who follow my lord. </VERS>\n\t\t\t<VERS vnumber=\"28\"> Please forgive the sin of your servant, for the LORD will certainly establish the house of my lord, because my lord fights the battles of the LORD. May no evil be found in you all your days!</VERS>\n\t\t\t<VERS vnumber=\"29\"> When someone sets out to chase you and to take your life, the life of my lord will be wrapped securely in the bag of the living by the LORD your God. But he will sling away the lives of your enemies from the sling's pocket! </VERS>\n\t\t\t<VERS vnumber=\"30\"> The LORD will do for my lord everything that he promised you, and he will make you a leader over Israel. </VERS>\n\t\t\t<VERS vnumber=\"31\"> Your conscience will not be overwhelmed with guilt for having poured out innocent blood and for having taken matters into your own hands. When the LORD has granted my lord success, please remember your servant.\"</VERS>\n\t\t\t<VERS vnumber=\"32\"> Then David said to Abigail, \"Praised be the LORD, the God of Israel, who has sent you this day to meet me! </VERS>\n\t\t\t<VERS vnumber=\"33\"> Praised be your good judgment! May you yourself be rewarded for having prevented me this day from shedding blood and taking matters into my own hands! </VERS>\n\t\t\t<VERS vnumber=\"34\"> Otherwise, as surely as the LORD, the God of Israel, lives, he who has prevented me from harming you, if you had not come so quickly to meet me, by morning's light not even one male belonging to Nabal would have remained alive!\"</VERS>\n\t\t\t<VERS vnumber=\"35\"> Then David took from her hand what she had brought to him. He said to her, \"Go back to your home in peace. Be assured that I have listened to you and responded favorably.\"</VERS>\n\t\t\t<VERS vnumber=\"36\"> When Abigail went back to Nabal, he was holding a banquet in his house like that of the king. Nabal was having a good time and was very intoxicated. She told him absolutely nothing until morning's light. </VERS>\n\t\t\t<VERS vnumber=\"37\"> In the morning, when Nabal was sober, his wife told him about these matters. He had a stroke and was paralyzed.</VERS>\n\t\t\t<VERS vnumber=\"38\"> After about ten days the LORD struck Nabal down and he died.</VERS>\n\t\t\t<VERS vnumber=\"39\"> When David heard that Nabal had died, he said, \"Praised be the LORD who has vindicated me and avenged the insult that I suffered from Nabal! The LORD has kept his servant from doing evil, and he has repaid Nabal for his evil deeds.\" Then David sent word to Abigail and asked her to become his wife.</VERS>\n\t\t\t<VERS vnumber=\"40\"> So the servants of David went to Abigail at Carmel and said to her, \"David has sent us to you to bring you back to be his wife.\"</VERS>\n\t\t\t<VERS vnumber=\"41\"> She arose, bowed her face toward the ground, and said, \"Your female servant, like a lowly servant, will wash the feet of the servants of my lord.\" </VERS>\n\t\t\t<VERS vnumber=\"42\"> Then Abigail quickly went and mounted her donkey, with five of her female servants accompanying her. She followed David's messengers and became his wife.</VERS>\n\t\t\t<VERS vnumber=\"43\"> David had also married Ahinoam from Jezreel; the two of them became his wives. </VERS>\n\t\t\t<VERS vnumber=\"44\"> (Now Saul had given his daughter Michal, David's wife, to Paltiel son of Laish, who was from Gallim.)</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"26\">\n\t\t\t<VERS vnumber=\"1\"> The Ziphites came to Saul at Gibeah and said, \"Isn't David hiding on the hill of Hakilah near Jeshimon?\" </VERS>\n\t\t\t<VERS vnumber=\"2\"> So Saul arose and went down to the desert of Ziph, accompanied by three thousand select men of Israel, to look for David in the desert of Ziph.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Saul camped by the road on the hill of Hakilah near Jeshimon, but David was staying in the desert. When he realized that Saul had come to the desert to find him, </VERS>\n\t\t\t<VERS vnumber=\"4\"> David sent scouts and verified that Saul had indeed arrived.</VERS>\n\t\t\t<VERS vnumber=\"5\"> So David set out and went to the place where Saul was camped. David saw the place where Saul and Abner son of Ner, the general in command of his army, were sleeping. Now Saul was lying in the entrenchment, and the army was camped all around him.</VERS>\n\t\t\t<VERS vnumber=\"6\"> David said to Ahimelech the Hittite and Abishai son of Zeruiah, Joab's brother, \"Who will go down with me to Saul in the camp?\" Abishai replied, \"I will go down with you.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> So David and Abishai approached the army at night and found Saul lying asleep in the entrenchment with his spear stuck in the ground by his head. Abner and the army were lying all around him.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Abishai said to David, \"Today God has delivered your enemy into your hands. Now let me drive the spear right through him into the ground with one swift jab! A second jab won't be necessary!\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> But David said to Abishai, \"Don't kill him! Who can extend his hand against the LORD's chosen one and remain guiltless?\" </VERS>\n\t\t\t<VERS vnumber=\"10\"> David went on to say, \"As the LORD lives, the LORD himself will strike him down. Either his day will come and he will die, or he will go down into battle and be swept away.</VERS>\n\t\t\t<VERS vnumber=\"11\"> But may the LORD prevent me from extending my hand against the LORD's chosen one! Now take the spear by Saul's head and the jug of water, and let's get out of here!\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> So David took the spear and the jug of water by Saul's head, and they got out of there. No one saw them or was aware of their presence or woke up. All of them were asleep, for the LORD had caused a deep sleep to fall on them.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Then David crossed to the other side and stood on the top of the hill some distance away; there was a considerable distance between them.</VERS>\n\t\t\t<VERS vnumber=\"14\"> David called to the army and to Abner son of Ner, \"Won't you answer, Abner?\" Abner replied, \"Who are you, that you have called to the king?\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> David said to Abner, \"Aren't you a man? After all, who is like you in Israel? Why then haven't you protected your lord the king? One of the soldiers came to kill your lord the king.</VERS>\n\t\t\t<VERS vnumber=\"16\"> This failure on your part isn't good! As surely as the LORD lives, you people who have not protected your lord, the LORD's chosen one, are as good as dead! Now look where the king's spear and the jug of water that was by his head are!\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> When Saul recognized David's voice, he said, \"Is that your voice, my son David?\" David replied, \"Yes, it's my voice, my lord the king.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> He went on to say, \"Why is my lord chasing his servant? What have I done? What wrong have I done?</VERS>\n\t\t\t<VERS vnumber=\"19\"> So let my lord the king now listen to the words of his servant. If the LORD has incited you against me, may he take delight in an offering. But if men have instigated this, may they be cursed before the LORD! For they have driven me away this day from being united with the LORD's inheritance, saying, 'Go on, serve other gods!' </VERS>\n\t\t\t<VERS vnumber=\"20\"> Now don't let my blood fall to the ground away from the LORD's presence, for the king of Israel has gone out to look for a flea the way one looks for a partridge in the hill country.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> Saul replied, \"I have sinned. Come back, my son David. I won't harm you, for you treated my life with value this day. I have behaved foolishly and have made a very terrible mistake!\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> David replied, \"Here is the king's spear! Let one of your servants cross over and get it.</VERS>\n\t\t\t<VERS vnumber=\"23\"> The LORD rewards each man for his integrity and loyalty. Even though today the LORD delivered you into my hand, I was not willing to extend my hand against the LORD's chosen one.</VERS>\n\t\t\t<VERS vnumber=\"24\"> In the same way that I valued your life this day, may the LORD value my life and deliver me from all danger.\" </VERS>\n\t\t\t<VERS vnumber=\"25\"> Saul replied to David, \"May you be rewarded, my son David! You will without question be successful!\" So David went on his way, and Saul returned to his place.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"27\">\n\t\t\t<VERS vnumber=\"1\"> David thought to himself, \"One of these days I'm going to be swept away by the hand of Saul! There is nothing better for me than to escape to the land of the Philistines. Then Saul will despair of searching for me through all the territory of Israel and I will escape from his hand.\"</VERS>\n\t\t\t<VERS vnumber=\"2\"> So David left and crossed over to King Achish son of Maoch of Gath accompanied by his six hundred men.</VERS>\n\t\t\t<VERS vnumber=\"3\"> David settled with Achish in Gath, along with his men and their families. David had with him his two wives, Ahinoam the Jezreelite and Abigail the Carmelite, Nabal's widow. </VERS>\n\t\t\t<VERS vnumber=\"4\"> When Saul learned that David had fled to Gath, he did not mount a new search for him.</VERS>\n\t\t\t<VERS vnumber=\"5\"> David said to Achish, \"If I have found favor with you, let me be given a place in one of the country towns so that I can live there. Why should your servant settle in the royal city with you?\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> So Achish gave him Ziklag on that day. (For that reason Ziklag has belonged to the kings of Judah until this very day.)</VERS>\n\t\t\t<VERS vnumber=\"7\"> The length of time that David lived in the Philistine countryside was a year and four months.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Then David and his men went up and raided the Geshurites, the Girzites, and the Amalekites. (They had been living in that land for a long time, from the approach to Shur as far as the land of Egypt.) </VERS>\n\t\t\t<VERS vnumber=\"9\"> When David would attack a district, he would leave neither man nor woman alive. He would take sheep, cattle, donkeys, camels, and clothing and would then go back to Achish. </VERS>\n\t\t\t<VERS vnumber=\"10\"> When Achish would ask, \"Where did you raid today?\" David would say, \"The Negev of Judah\" or \"The Negev of Jeharmeel\" or \"The Negev of the Kenites.\" </VERS>\n\t\t\t<VERS vnumber=\"11\"> Neither man nor woman would David leave alive so as to bring them back to Gath. He was thinking, \"This way they can't tell on us, saying, 'This is what David did.'\" Such was his practice the entire time that he lived in the country of the Philistines. </VERS>\n\t\t\t<VERS vnumber=\"12\"> So Achish trusted David, thinking to himself, \"He is really hated among his own people in Israel! From now on he will be my servant.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"28\">\n\t\t\t<VERS vnumber=\"1\"> In those days the Philistines gathered their troops for war in order to fight Israel. Achish said to David, \"You should fully understand that you and your men must go with me into the battle.\"</VERS>\n\t\t\t<VERS vnumber=\"2\"> David replied to Achish, \"That being the case, you will come to know what your servant can do!\" Achish said to David, \"Then I will make you my bodyguard from now on.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> Now Samuel had died, and all Israel had lamented over him and had buried him in Ramah, his hometown. In the meantime Saul had removed the mediums and magicians from the land. </VERS>\n\t\t\t<VERS vnumber=\"4\"> The Philistines assembled; they came and camped at Shunem. Saul mustered all Israel and camped at Gilboa.</VERS>\n\t\t\t<VERS vnumber=\"5\"> When Saul saw the camp of the Philistines, he was absolutely terrified.</VERS>\n\t\t\t<VERS vnumber=\"6\"> So Saul inquired of the LORD, but the LORD did not answer him, not by dreams nor by Urim nor by the prophets.</VERS>\n\t\t\t<VERS vnumber=\"7\"> So Saul instructed his servants, \"Find me a woman who is a medium, so that I may go to her and inquire of her.\" His servants replied to him, \"There is a woman who is a medium in Endor.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> So Saul disguised himself and put on other clothing and left, accompanied by two of his men. They came to the woman at night and said, \"Use your ritual pit to conjure up for me the one I tell you.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> But the woman said to him, \"Look, you are aware of what Saul has done; he has removed the mediums and magicians from the land! Why are you trapping me so you can put me to death?\" </VERS>\n\t\t\t<VERS vnumber=\"10\"> But Saul swore an oath to her by the LORD, \"As surely as the LORD lives, you will not incur guilt in this matter!\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> The woman replied, \"Who is it that I should bring up for you?\" He said, \"Bring up for me Samuel.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> When the woman saw Samuel, she cried out loudly. The woman said to Saul, \"Why have you deceived me? You are Saul!\" </VERS>\n\t\t\t<VERS vnumber=\"13\"> The king said to her, \"Don't be afraid! What have you seen?\" The woman replied to Saul, \"I have seen one like a god coming up from the ground!\" </VERS>\n\t\t\t<VERS vnumber=\"14\"> He said to her, \"What about his appearance?\" She said, \"An old man is coming up! He is wrapped in a robe!\" Then Saul realized it was Samuel, and he bowed his face toward the ground and kneeled down.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Samuel said to Saul, \"Why have you disturbed me by bringing me up?\" Saul replied, \"I am terribly troubled! The Philistines are fighting against me and God has turned away from me. He does not answer me, not by the prophets nor by dreams. So I have called on you to tell me what I should do.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> Samuel said, \"Why are you asking me, now that the LORD has turned away from you and has become your enemy?</VERS>\n\t\t\t<VERS vnumber=\"17\"> The LORD has done exactly as I prophesied! The LORD has torn the kingdom from your hand and has given it to your neighbor David! </VERS>\n\t\t\t<VERS vnumber=\"18\"> Since you did not obey the LORD and did not carry out his fierce anger against the Amalekites, the LORD has done this thing to you today. </VERS>\n\t\t\t<VERS vnumber=\"19\"> The LORD will hand you and Israel over to the Philistines! Tomorrow both you and your sons will be with me. The LORD will also hand the army of Israel over to the Philistines!\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> Saul quickly fell full length on the ground and was very afraid because of Samuel's words. He was completely drained of energy, not having eaten anything all that day and night. </VERS>\n\t\t\t<VERS vnumber=\"21\"> When the woman came to Saul and saw how terrified he was, she said to him, \"Your servant has done what you asked. I took my life into my own hands and did what you told me.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Now it's your turn to listen to your servant! Let me set before you a bit of bread so that you can eat. When you regain your strength, you can go on your way.\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> But he refused, saying, \"I won't eat!\" Both his servants and the woman urged him to eat, so he gave in. He got up from the ground and sat down on the bed. </VERS>\n\t\t\t<VERS vnumber=\"24\"> Now the woman had a well-fed calf at her home that she quickly slaughtered. Taking some flour, she kneaded bread and baked it without leaven. </VERS>\n\t\t\t<VERS vnumber=\"25\"> She brought it to Saul and his servants, and they ate. Then they arose and left that same night.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"29\">\n\t\t\t<VERS vnumber=\"1\"> The Philistines assembled all their troops at Aphek, while Israel camped at the spring that is in Jezreel. </VERS>\n\t\t\t<VERS vnumber=\"2\"> When the leaders of the Philistines were passing in review at the head of their units of hundreds and thousands, David and his men were passing in review in the rear with Achish.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The leaders of the Philistines asked, \"What about these Hebrews?\" Achish said to the leaders of the Philistines, \"Isn't this David, the servant of King Saul of Israel, who has been with me for quite some time? I have found no fault with him from the day of his defection until the present time!\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> But the leaders of the Philistines became angry with him and said to him, \"Send the man back! Let him return to the place that you assigned him! Don't let him go down with us into the battle, for he might become our adversary in the battle. What better way to please his lord than with the heads of these men?</VERS>\n\t\t\t<VERS vnumber=\"5\"> Isn't this David, of whom they sang as they danced, 'Saul has struck down his thousands, but David his tens of thousands'?\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> So Achish summoned David and said to him, \"As surely as the LORD lives, you are an honest man, and I am glad to have you serving with me in the army. I have found no fault with you from the day that you first came to me until the present time. But in the opinion of the leaders, you are not reliable.</VERS>\n\t\t\t<VERS vnumber=\"7\"> So turn and leave in peace. You must not do anything that the leaders of the Philistines consider improper!\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> But David said to Achish, \"What have I done? What have you found in your servant from the day that I first came into your presence until the present time, that I shouldn't go and fight the enemies of my lord the king?\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> Achish replied to David, \"I am convinced that you are as reliable as the angel of God! However, the leaders of the Philistines have said, 'He must not go up with us in the battle.' </VERS>\n\t\t\t<VERS vnumber=\"10\"> So get up early in the morning along with the servants of your lord who have come with you. When you get up early in the morning, as soon as it is light enough to see, leave.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> So David and his men got up early in the morning to return to the land of the Philistines, but the Philistines went up to Jezreel.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"30\">\n\t\t\t<VERS vnumber=\"1\"> On the third day David and his men came to Ziklag. Now the Amalekites had raided the Negev and Ziklag. They attacked Ziklag and burned it.</VERS>\n\t\t\t<VERS vnumber=\"2\"> They took captive the women who were in it, from the youngest to the oldest, but they did not kill anyone. They simply carried them off and went on their way.</VERS>\n\t\t\t<VERS vnumber=\"3\"> When David and his men came to the city, they found it burned. Their wives, sons, and daughters had been taken captive. </VERS>\n\t\t\t<VERS vnumber=\"4\"> Then David and the men who were with him wept loudly until they could weep no more.</VERS>\n\t\t\t<VERS vnumber=\"5\"> David's two wives had been taken captive, Ahinoam the Jezreelite and Abigail the Carmelite, Nabal's widow.</VERS>\n\t\t\t<VERS vnumber=\"6\"> David was very upset, for the men were thinking of stoning him; each man grieved bitterly over his sons and daughters. But David drew strength from the LORD his God.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Then David said to the priest Abiathar son of Ahimelech, \"Bring me the ephod.\" So Abiathar brought the ephod to David.</VERS>\n\t\t\t<VERS vnumber=\"8\"> David inquired of the LORD, saying, \"Should I pursue this raiding band? Will I overtake them?\" He said to him, \"Pursue, for you will certainly overtake them and carry out a rescue!\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> So David went, accompanied by his six hundred men. When he came to the Wadi Besor, those who were in the rear stayed there.</VERS>\n\t\t\t<VERS vnumber=\"10\"> David and four hundred men continued the pursuit, but two hundred men who were too exhausted to cross the Wadi Besor stayed there.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Then they found an Egyptian in the field and brought him to David. They gave him bread to eat and water to drink.</VERS>\n\t\t\t<VERS vnumber=\"12\"> They gave him a slice of pressed figs and two bunches of raisins to eat. This greatly refreshed him, for he had not eaten food or drunk water for three days and three nights. </VERS>\n\t\t\t<VERS vnumber=\"13\"> David said to him, \"To whom do you belong, and where are you from?\" The young man said, \"I am an Egyptian, the servant of an Amalekite man. My master abandoned me when I was ill for three days.</VERS>\n\t\t\t<VERS vnumber=\"14\"> We conducted a raid on the Negev of the Kerethites, on the area of Judah, and on the Negev of Caleb. We burned Ziklag.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> David said to him, \"Can you take us down to this raiding party?\" He said, \"Swear to me by God that you will not kill me or hand me over to my master, and I will take you down to this raiding party.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> So he took David down, and they found them spread out over the land. They were eating and drinking and enjoying themselves because of all the loot they had taken from the land of the Philistines and from the land of Judah. </VERS>\n\t\t\t<VERS vnumber=\"17\"> But David struck them down from twilight until the following evening. None of them escaped, with the exception of four hundred young men who got away on camels.</VERS>\n\t\t\t<VERS vnumber=\"18\"> David retrieved everything the Amalekites had taken; he also rescued his two wives. </VERS>\n\t\t\t<VERS vnumber=\"19\"> There was nothing missing, whether small or great. He retrieved sons and daughters, the plunder, and everything else they had taken. David brought everything back. </VERS>\n\t\t\t<VERS vnumber=\"20\"> David took all the flocks and herds and drove them in front of the rest of the animals. People were saying, \"This is David's plunder!\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> Then David approached the two hundred men who had been too exhausted to go with him, those whom they had left at the Wadi Besor. They went out to meet David and the people who were with him. When David approached the people, he asked how they were doing. </VERS>\n\t\t\t<VERS vnumber=\"22\"> But all the evil and worthless men among those who had gone with David said, \"Since they didn't go with us, we won't give them any of the loot we retrieved! They may take only their wives and children. Let them lead them away and be gone!\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> But David said, \"No! You shouldn't do this, my brothers. Look at what the LORD has given us! He has protected us and has delivered into our hands the raiding party that came against us. </VERS>\n\t\t\t<VERS vnumber=\"24\"> Who will listen to you in this matter? The portion of the one who went down into the battle will be the same as the portion of the one who remained with the equipment! Let their portions be the same!\"</VERS>\n\t\t\t<VERS vnumber=\"25\"> From that time onward it was a binding ordinance for Israel, right up to the present time.</VERS>\n\t\t\t<VERS vnumber=\"26\"> When David came to Ziklag, he sent some of the plunder to the elders of Judah who were his friends, saying, \"Here's a gift for you from the looting of the LORD's enemies!\" </VERS>\n\t\t\t<VERS vnumber=\"27\"> The gift was for those in the following locations: for those in Bethel, Ramoth Negev, and Jattir; </VERS>\n\t\t\t<VERS vnumber=\"28\"> for those in Aroer, Siphmoth, Eshtemoa,</VERS>\n\t\t\t<VERS vnumber=\"29\"> and Racal; for those in the cities of the Jerahmeelites and Kenites;</VERS>\n\t\t\t<VERS vnumber=\"30\"> for those in Hormah, Bor Ashan, Athach,</VERS>\n\t\t\t<VERS vnumber=\"31\"> and Hebron; and for those in whatever other places David and his men had traveled.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"31\">\n\t\t\t<VERS vnumber=\"1\"> Now the Philistines were fighting against Israel. The men of Israel fled from the Philistines and many of them fell dead on Mount Gilboa.</VERS>\n\t\t\t<VERS vnumber=\"2\"> The Philistines stayed right on the heels of Saul and his sons. They struck down Saul's sons Jonathan, Abinadab, and Malki-Shua. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Saul himself was in the thick of the battle; the archers spotted him and wounded him severely.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Saul said to his armor bearer, \"Draw your sword and stab me with it! Otherwise these uncircumcised people will come, stab me, and torture me.\" But his armor bearer refused to do it, because he was very afraid. So Saul took his sword and fell on it.</VERS>\n\t\t\t<VERS vnumber=\"5\"> When his armor bearer saw that Saul was dead, he also fell on his own sword and died with him.</VERS>\n\t\t\t<VERS vnumber=\"6\"> So Saul, his three sons, his armor bearer, and all his men died together that day.</VERS>\n\t\t\t<VERS vnumber=\"7\"> When the men of Israel who were in the valley and across the Jordan saw that the men of Israel had fled and that Saul and his sons were dead, they abandoned the cities and fled. The Philistines came and occupied them.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The next day, when the Philistines came to strip loot from the corpses, they discovered Saul and his three sons lying dead on Mount Gilboa. </VERS>\n\t\t\t<VERS vnumber=\"9\"> They cut off Saul's head and stripped him of his armor. They sent messengers to announce the news in the temple of their idols and among their people throughout the surrounding land of the Philistines. </VERS>\n\t\t\t<VERS vnumber=\"10\"> They placed Saul's armor in the temple of the Ashtoreths and hung his corpse on the city wall of Beth Shan.</VERS>\n\t\t\t<VERS vnumber=\"11\"> When the residents of Jabesh Gilead heard what the Philistines had done to Saul,</VERS>\n\t\t\t<VERS vnumber=\"12\"> all their warriors set out and traveled throughout the night. They took Saul's corpse and the corpses of his sons from the city wall of Beth Shan and went to Jabesh, where they burned them. </VERS>\n\t\t\t<VERS vnumber=\"13\"> They took the bones and buried them under the tamarisk tree at Jabesh; then they fasted for seven days.</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"10\" bname=\"2 Samuel\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> After the death of Saul, when David had returned from defeating the Amalekites, he stayed at Ziklag for two days. </VERS>\n\t\t\t<VERS vnumber=\"2\"> On the third day a man arrived from the camp of Saul with his clothes torn and dirt on his head. When he approached David, the man threw himself to the ground.</VERS>\n\t\t\t<VERS vnumber=\"3\"> David asked him, \"Where are you coming from?\" He replied, \"I have escaped from the camp of Israel.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> David inquired, \"How were things going? Tell me!\" He replied, \"The people fled from the battle and many of them fell dead. Even Saul and his son Jonathan are dead!\" </VERS>\n\t\t\t<VERS vnumber=\"5\"> David said to the young man who was telling him this, \"How do you know that Saul and his son Jonathan are dead?\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> The young man who was telling him this said, \"I just happened to be on Mount Gilboa and came across Saul leaning on his spear for support. The chariots and leaders of the horsemen were in hot pursuit of him. </VERS>\n\t\t\t<VERS vnumber=\"7\"> When he turned around and saw me, he called out to me. I answered, 'Here I am!'</VERS>\n\t\t\t<VERS vnumber=\"8\"> He asked me, 'Who are you?' I told him, 'I'm an Amalekite.' </VERS>\n\t\t\t<VERS vnumber=\"9\"> He said to me, 'Stand over me and finish me off! I'm very dizzy, even though I'm still alive.'</VERS>\n\t\t\t<VERS vnumber=\"10\"> So I stood over him and put him to death, since I knew that he couldn't live in such a condition. Then I took the crown which was on his head and the bracelet which was on his arm. I have brought them here to my lord.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> David then grabbed his own clothes and tore them, as did all the men who were with him. </VERS>\n\t\t\t<VERS vnumber=\"12\"> They lamented and wept and fasted until evening because Saul, his son Jonathan, the LORD's people, and the house of Israel had fallen by the sword.</VERS>\n\t\t\t<VERS vnumber=\"13\"> David said to the young man who told this to him, \"Where are you from?\" He replied, \"I am an Amalekite, the son of a resident foreigner.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> David replied to him, \"How is it that you were not afraid to reach out your hand to destroy the LORD's anointed?\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> Then David called one of the soldiers and said, \"Come here and strike him down!\" So he struck him down, and he died. </VERS>\n\t\t\t<VERS vnumber=\"16\"> David said to him, \"Your blood be on your own head! Your own mouth has testified against you, saying 'I have put the LORD's anointed to death.'\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> Then David chanted this lament over Saul and his son Jonathan.</VERS>\n\t\t\t<VERS vnumber=\"18\"> (He gave instructions that the people of Judah should be taught \"The Bow.\" Indeed, it is written down in the Book of Yashar.)</VERS>\n\t\t\t<VERS vnumber=\"19\"> The beauty of Israel lies slain on your high places! How the mighty have fallen!</VERS>\n\t\t\t<VERS vnumber=\"20\"> Don't report it in Gath, don't spread the news in the streets of Ashkelon, or the daughters of the Philistines will rejoice, the daughters of the uncircumcised will celebrate!</VERS>\n\t\t\t<VERS vnumber=\"21\"> O mountains of Gilboa, may there be no dew or rain on you, nor fields of grain offerings! For it was there that the shield of warriors was defiled; the shield of Saul lies neglected without oil.</VERS>\n\t\t\t<VERS vnumber=\"22\"> From the blood of the slain, from the fat of warriors, the bow of Jonathan was not turned away. The sword of Saul never returned empty.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Saul and Jonathan were greatly loved during their lives, and not even in their deaths were they separated. They were swifter than eagles, stronger than lions.</VERS>\n\t\t\t<VERS vnumber=\"24\"> O daughters of Israel, weep over Saul, who clothed you in scarlet as well as jewelry, who put gold jewelry on your clothes.</VERS>\n\t\t\t<VERS vnumber=\"25\"> How the warriors have fallen in the midst of battle! Jonathan lies slain on your high places!</VERS>\n\t\t\t<VERS vnumber=\"26\"> I grieve over you, my brother Jonathan! You were very dear to me. Your love was more special to me than the love of women.</VERS>\n\t\t\t<VERS vnumber=\"27\"> How the warriors have fallen! The weapons of war are destroyed!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> Afterward David inquired of the LORD, \"Should I go up to one of the cities of Judah?\" The LORD told him, \"Go up.\" David asked, \"Where should I go?\" The LORD replied, \"To Hebron.\" </VERS>\n\t\t\t<VERS vnumber=\"2\"> So David went up, along with his two wives, Ahinoam the Jezreelite and Abigail, formerly the wife of Nabal the Carmelite.</VERS>\n\t\t\t<VERS vnumber=\"3\"> David also brought along the men who were with him, each with his family. They settled in the cities of Hebron. </VERS>\n\t\t\t<VERS vnumber=\"4\"> The men of Judah came and there they anointed David as king over the people of Judah. David was told, \"The people of Jabesh Gilead are the ones who buried Saul.\" </VERS>\n\t\t\t<VERS vnumber=\"5\"> So David sent messengers to the people of Jabesh Gilead and told them, \"May you be blessed by the LORD because you have shown this kindness to your lord Saul by burying him. </VERS>\n\t\t\t<VERS vnumber=\"6\"> Now may the LORD show you true kindness! I also will reward you, because you have done this deed. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Now be courageous and prove to be valiant warriors, for your lord Saul is dead. The people of Judah have anointed me as king over them.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> Now Abner son of Ner, the general in command of Saul's army, had taken Saul's son Ish-bosheth and had brought him to Mahanaim. </VERS>\n\t\t\t<VERS vnumber=\"9\"> He appointed him king over Gilead, the Geshurites, Jezreel, Ephraim, Benjamin, and all Israel. </VERS>\n\t\t\t<VERS vnumber=\"10\"> Ish-bosheth son of Saul was forty years old when he began to rule over Israel. He ruled two years. However, the people of Judah followed David. </VERS>\n\t\t\t<VERS vnumber=\"11\"> David was king in Hebron over the people of Judah for seven and a half years.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Then Abner son of Ner and the servants of Ish-bosheth son of Saul went out from Mahanaim to Gibeon.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Joab son of Zeruiah and the servants of David also went out and confronted them at the pool of Gibeon. One group stationed themselves on one side of the pool, and the other group on the other side of the pool.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Abner said to Joab, \"Let the soldiers get up and fight before us.\" Joab said, \"So be it!\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> So they got up and crossed over by number: twelve belonging to Benjamin and to Ish-bosheth son of Saul, and twelve from the servants of David.</VERS>\n\t\t\t<VERS vnumber=\"16\"> As they grappled with one another, each one stabbed his opponent with his sword and they fell dead together. So that place is called the Field of Flints; it is in Gibeon.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Now the battle was very severe that day; Abner and the men of Israel were overcome by David's soldiers.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The three sons of Zeruiah were there, Joab, Abishai, and Asahel. (Now Asahel was as quick on his feet as one of the gazelles in the field.)</VERS>\n\t\t\t<VERS vnumber=\"19\"> Asahel chased Abner, without turning to the right or to the left as he followed Abner.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Then Abner turned and asked, \"Is that you, Asahel?\" He replied, \"Yes it is!\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> Abner said to him, \"Turn aside to your right or to your left. Capture one of the soldiers and take his equipment for yourself!\" But Asahel was not willing to turn aside from following him. </VERS>\n\t\t\t<VERS vnumber=\"22\"> So Abner spoke again to Asahel, \"Turn aside from following me! I do not want to strike you to the ground. How then could I show my face in the presence of Joab your brother?\" </VERS>\n\t\t\t<VERS vnumber=\"23\"> But Asahel refused to turn aside. So Abner struck him in the abdomen with the back end of his spear. The spear came out his back; Asahel collapsed on the spot and died there right before Abner. Everyone who now comes to the place where Asahel fell dead pauses in respect.</VERS>\n\t\t\t<VERS vnumber=\"24\"> So Joab and Abishai chased Abner. At sunset they came to the hill of Ammah near Giah on the way to the wilderness of Gibeon.</VERS>\n\t\t\t<VERS vnumber=\"25\"> The Benjaminites formed their ranks behind Abner and were like a single army, standing at the top of a certain hill.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Then Abner called out to Joab, \"Must the sword devour forever? Don't you realize that this will turn bitter in the end? When will you tell the people to turn aside from pursuing their brothers?\"</VERS>\n\t\t\t<VERS vnumber=\"27\"> Joab replied, \"As surely as God lives, if you had not said this, it would have been morning before the people would have abandoned pursuit of their brothers!\" </VERS>\n\t\t\t<VERS vnumber=\"28\"> Then Joab blew the ram's horn and all the people stopped in their tracks. They stopped chasing Israel and ceased fighting.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Abner and his men went through the Arabah all that night. They crossed the Jordan River and went through the whole region of Bitron and came to Mahanaim.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Now Joab returned from chasing Abner and assembled all the people. Nineteen of David's soldiers were missing, in addition to Asahel.</VERS>\n\t\t\t<VERS vnumber=\"31\"> But David's soldiers had slaughtered the Benjaminites and Abner's men, in all, 360 men had died!</VERS>\n\t\t\t<VERS vnumber=\"32\"> They took Asahel's body and buried him in his father's tomb at Bethlehem. Joab and his men then traveled all that night and reached Hebron by dawn. </VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> However, the war was prolonged between the house of Saul and the house of David. David was becoming steadily stronger, while the house of Saul was becoming increasingly weaker.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Now sons were born to David in Hebron. His firstborn was Amnon, born to Ahinoam the Jezreelite.</VERS>\n\t\t\t<VERS vnumber=\"3\"> His second son was Kileab, born to Abigail the widow of Nabal the Carmelite. His third son was Absalom, the son of Maacah daughter of King Talmai of Geshur. </VERS>\n\t\t\t<VERS vnumber=\"4\"> His fourth son was Adonijah, the son of Haggith. His fifth son was Shephatiah, the son of Abitail.</VERS>\n\t\t\t<VERS vnumber=\"5\"> His sixth son was Ithream, born to David's wife Eglah. These sons were all born to David in Hebron.</VERS>\n\t\t\t<VERS vnumber=\"6\"> As the war continued between the house of Saul and the house of David, Abner was becoming more influential in the house of Saul. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Now Saul had a concubine named Rizpah daughter of Aiah. Ish-bosheth said to Abner, \"Why did you have sexual relations with my father's concubine?\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> These words of Ish-bosheth really angered Abner and he said, \"Am I the head of a dog that belongs to Judah? This very day I am demonstrating loyalty to the house of Saul your father and to his relatives and his friends! I have not betrayed you into the hand of David. Yet you have accused me of sinning with this woman today!</VERS>\n\t\t\t<VERS vnumber=\"9\"> God will severely judge Abner if I do not do for David exactly what the LORD has promised him,</VERS>\n\t\t\t<VERS vnumber=\"10\"> namely, to transfer the kingdom from the house of Saul and to establish the throne of David over Israel and over Judah all the way from Dan to Beer Sheba!\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> Ish-bosheth was unable to answer Abner with even a single word because he was afraid of him.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Then Abner sent messengers to David saying, \"To whom does the land belong? Make an agreement with me, and I will do whatever I can to cause all Israel to turn to you.\" </VERS>\n\t\t\t<VERS vnumber=\"13\"> So David said, \"Good! I will make an agreement with you. I ask only one thing from you. You will not see my face unless you bring Saul's daughter Michal when you come to visit me.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> David sent messengers to Ish-bosheth son of Saul with this demand: \"Give me my wife Michal whom I acquired for a hundred Philistine foreskins.\" </VERS>\n\t\t\t<VERS vnumber=\"15\"> So Ish-bosheth took her from her husband Paltiel son of Laish. </VERS>\n\t\t\t<VERS vnumber=\"16\"> Her husband went along behind her, weeping all the way to Bahurim. Finally Abner said to him, \"Go back!\" So he returned home.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Abner advised the elders of Israel, \"Previously you were wanting David to be your king.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Act now! For the LORD has said to David, 'By the hand of my servant David I will save my people Israel from the Philistines and from all their enemies.'\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> Then Abner spoke privately with the Benjaminites. Abner also went to Hebron to inform David privately of all that Israel and the entire house of Benjamin had agreed to.</VERS>\n\t\t\t<VERS vnumber=\"20\"> When Abner, accompanied by twenty men, came to David in Hebron, David prepared a banquet for Abner and the men who were with him.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Abner said to David, \"Let me leave so that I may go and gather all Israel to my lord the king so that they may make an agreement with you. Then you will rule over all that you desire.\" So David sent Abner away, and he left in peace.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Now David's soldiers and Joab were coming back from a raid, bringing a great deal of plunder with them. Abner was no longer with David in Hebron, for David had sent him away and he had left in peace. </VERS>\n\t\t\t<VERS vnumber=\"23\"> When Joab and all the army that was with him arrived, Joab was told: \"Abner the son of Ner came to the king; he sent him away, and he left in peace!\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> So Joab went to the king and said, \"What have you done? Abner has come to you! Why would you send him away? Now he's gone on his way!</VERS>\n\t\t\t<VERS vnumber=\"25\"> You know Abner the son of Ner! Surely he came here to spy on you and to determine when you leave and when you return and to discover everything that you are doing!\"</VERS>\n\t\t\t<VERS vnumber=\"26\"> Then Joab left David and sent messengers after Abner. They brought him back from the well of Sirah. (But David was not aware of it.)</VERS>\n\t\t\t<VERS vnumber=\"27\"> When Abner returned to Hebron, Joab took him aside at the gate as if to speak privately with him. Joab then stabbed him in the abdomen and killed him, avenging the shed blood of his brother Asahel.</VERS>\n\t\t\t<VERS vnumber=\"28\"> When David later heard about this, he said, \"I and my kingdom are forever innocent before the LORD of the shed blood of Abner son of Ner!</VERS>\n\t\t\t<VERS vnumber=\"29\"> May his blood whirl over the head of Joab and the entire house of his father! May the males of Joab's house never cease to have someone with a running sore or a skin disease or one who works at the spindle or one who falls by the sword or one who lacks food!\"</VERS>\n\t\t\t<VERS vnumber=\"30\"> So Joab and his brother Abishai killed Abner, because he had killed their brother Asahel in Gibeon during the battle.</VERS>\n\t\t\t<VERS vnumber=\"31\"> David instructed Joab and all the people who were with him, \"Tear your clothes! Put on sackcloth! Lament before Abner!\" Now King David followed behind the funeral bier. </VERS>\n\t\t\t<VERS vnumber=\"32\"> So they buried Abner in Hebron. The king cried loudly over Abner's grave and all the people wept too. </VERS>\n\t\t\t<VERS vnumber=\"33\"> The king chanted the following lament for Abner: \"Should Abner have died like a fool?</VERS>\n\t\t\t<VERS vnumber=\"34\"> Your hands were not bound, and your feet were not put into irons. You fell the way one falls before criminals.\" All the people wept over him again. </VERS>\n\t\t\t<VERS vnumber=\"35\"> Then all the people came and encouraged David to eat food while it was still day. But David took an oath saying, \"God will punish me severely if I taste bread or anything whatsoever before the sun sets!\"</VERS>\n\t\t\t<VERS vnumber=\"36\"> All the people noticed this and it pleased them. In fact, everything the king did pleased all the people. </VERS>\n\t\t\t<VERS vnumber=\"37\"> All the people and all Israel realized on that day that the killing of Abner son of Ner was not done at the king's instigation.</VERS>\n\t\t\t<VERS vnumber=\"38\"> Then the king said to his servants, \"Do you not realize that a great leader has fallen this day in Israel? </VERS>\n\t\t\t<VERS vnumber=\"39\"> Today I am weak, even though I am anointed as king. These men, the sons of Zeruiah, are too much for me to bear! May the LORD punish appropriately the one who has done this evil thing!\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\"> When Ish-bosheth the son of Saul heard that Abner had died in Hebron, he was very disheartened, and all Israel was afraid. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Now Saul's son had two men who were in charge of raiding units; one was named Baanah and the other Recab. They were sons of Rimmon the Beerothite, who was a Benjaminite. (Beeroth is regarded as belonging to Benjamin, </VERS>\n\t\t\t<VERS vnumber=\"3\"> for the Beerothites fled to Gittaim and have remained there as resident foreigners until the present time.)</VERS>\n\t\t\t<VERS vnumber=\"4\"> Now Saul's son Jonathan had a son who was crippled in both feet. He was five years old when the news about Saul and Jonathan arrived from Jezreel. His nurse picked him up and fled, but in her haste to get away, he fell and was injured. Mephibosheth was his name.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Now the sons of Rimmon the Beerothite, Recab and Baanah, went at the hottest part of the day to the home of Ish-bosheth, as he was enjoying his midday rest.</VERS>\n\t\t\t<VERS vnumber=\"6\"> They entered the house under the pretense of getting wheat and mortally wounded him in the stomach. Then Recab and his brother Baanah escaped.</VERS>\n\t\t\t<VERS vnumber=\"7\"> They had entered the house while Ish-bosheth was resting on his bed in his bedroom. They mortally wounded him and then cut off his head. Taking his head, they traveled on the way of the Arabah all that night. </VERS>\n\t\t\t<VERS vnumber=\"8\"> They brought the head of Ish-bosheth to David in Hebron, saying to the king, \"Look! The head of Ish-bosheth son of Saul, your enemy who sought your life! The LORD has granted vengeance to my lord the king this day against Saul and his descendants!\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> David replied to Recab and his brother Baanah, the sons of Rimmon the Beerothite, \"As surely as the LORD lives, who has delivered my life from all adversity,</VERS>\n\t\t\t<VERS vnumber=\"10\"> when someone told me that Saul was dead, even though he thought he was bringing good news, I seized him and killed him in Ziklag. That was the good news I gave to him!</VERS>\n\t\t\t<VERS vnumber=\"11\"> Surely when wicked men have killed an innocent man as he slept in his own house, should I not now require his blood from your hands and remove you from the earth?\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> So David issued orders to the soldiers and they put them to death. Then they cut off their hands and feet and hung them near the pool in Hebron. But they took the head of Ish-bosheth and buried it in the tomb of Abner in Hebron.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"5\">\n\t\t\t<VERS vnumber=\"1\"> All the tribes of Israel came to David at Hebron saying, \"Look, we are your very flesh and blood!</VERS>\n\t\t\t<VERS vnumber=\"2\"> In the past, when Saul was our king, you were the real leader in Israel. The LORD said to you, 'You will shepherd my people Israel; you will rule over Israel.'\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> When all the leaders of Israel came to the king at Hebron, King David made an agreement with them in Hebron before the LORD. They designated David as king over Israel. </VERS>\n\t\t\t<VERS vnumber=\"4\"> David was thirty years old when he began to reign and he reigned for forty years.</VERS>\n\t\t\t<VERS vnumber=\"5\"> In Hebron he reigned over Judah for seven years and six months, and in Jerusalem he reigned for thirty-three years over all Israel and Judah.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Then the king and his men advanced to Jerusalem against the Jebusites who lived in the land. The Jebusites said to David, \"You cannot invade this place! Even the blind and the lame will turn you back, saying, 'David cannot invade this place!'\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> But David captured the fortress of Zion (that is, the city of David).</VERS>\n\t\t\t<VERS vnumber=\"8\"> David said on that day, \"Whoever attacks the Jebusites must approach the 'lame' and the 'blind' who are David's enemies by going through the water tunnel.\" For this reason it is said, \"The blind and the lame cannot enter the palace.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> So David lived in the fortress and called it the City of David. David built all around it, from the terrace inwards.</VERS>\n\t\t\t<VERS vnumber=\"10\"> David's power grew steadily, for the LORD God who commands armies was with him.</VERS>\n\t\t\t<VERS vnumber=\"11\"> King Hiram of Tyre sent messengers to David, along with cedar logs, carpenters, and stonemasons. They built a palace for David. </VERS>\n\t\t\t<VERS vnumber=\"12\"> David realized that the LORD had established him as king over Israel and that he had elevated his kingdom for the sake of his people Israel.</VERS>\n\t\t\t<VERS vnumber=\"13\"> David married more concubines and wives from Jerusalem after he arrived from Hebron. Even more sons and daughters were born to David.</VERS>\n\t\t\t<VERS vnumber=\"14\"> These are the names of children born to him in Jerusalem: Shammua, Shobab, Nathan, Solomon,</VERS>\n\t\t\t<VERS vnumber=\"15\"> Ibhar, Elishua, Nepheg, Japhia,</VERS>\n\t\t\t<VERS vnumber=\"16\"> Elishama, Eliada, and Eliphelet.</VERS>\n\t\t\t<VERS vnumber=\"17\"> When the Philistines heard that David had been designated king over Israel, they all went up to search for David. When David heard about it, he went down to the fortress. </VERS>\n\t\t\t<VERS vnumber=\"18\"> Now the Philistines had arrived and spread out in the valley of Rephaim.</VERS>\n\t\t\t<VERS vnumber=\"19\"> So David asked the LORD, \"Should I march up against the Philistines? Will you hand them over to me?\" The LORD said to David, \"March up, for I will indeed hand the Philistines over to you.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> So David marched against Baal Perazim and defeated them there. Then he said, \"The LORD has burst out against my enemies like water bursts out.\" So he called the name of that place Baal Perazim.</VERS>\n\t\t\t<VERS vnumber=\"21\"> The Philistines abandoned their idols there, and David and his men picked them up.</VERS>\n\t\t\t<VERS vnumber=\"22\"> The Philistines again came up and spread out in the valley of Rephaim.</VERS>\n\t\t\t<VERS vnumber=\"23\"> So David asked the LORD what he should do. This time the LORD said to him, \"Don't march straight up. Instead, circle around behind them and come against them opposite the trees.</VERS>\n\t\t\t<VERS vnumber=\"24\"> When you hear the sound of marching in the tops of the trees, act decisively. For at that moment the LORD is going before you to strike down the army of the Philistines.\" </VERS>\n\t\t\t<VERS vnumber=\"25\"> David did just as the LORD commanded him, and he struck down the Philistines from Gibeon all the way to Gezer.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"6\">\n\t\t\t<VERS vnumber=\"1\"> David again assembled all the best men in Israel, thirty thousand in number. </VERS>\n\t\t\t<VERS vnumber=\"2\"> David and all the men who were with him traveled to Baalah in Judah to bring up from there the ark of God which is called by the name of the LORD of hosts, who sits enthroned between the cherubim that are on it. </VERS>\n\t\t\t<VERS vnumber=\"3\"> They loaded the ark of God on a new cart and carried it from the house of Abinadab, which was on the hill. Uzzah and Ahio, the sons of Abinadab, were guiding the new cart.</VERS>\n\t\t\t<VERS vnumber=\"4\"> They brought it with the ark of God up from the house of Abinadab on the hill. Ahio was walking in front of the ark, </VERS>\n\t\t\t<VERS vnumber=\"5\"> while David and all Israel were energetically celebrating before the LORD, singing and playing various stringed instruments, tambourines, rattles, and cymbals.</VERS>\n\t\t\t<VERS vnumber=\"6\"> When they arrived at the threshing floor of Nacon, Uzzah reached out and grabbed hold of the ark of God, because the oxen stumbled. </VERS>\n\t\t\t<VERS vnumber=\"7\"> The LORD was so furious with Uzzah, he killed him on the spot for his negligence. He died right there beside the ark of God.</VERS>\n\t\t\t<VERS vnumber=\"8\"> David was angry because the LORD attacked Uzzah; so he called that place Perez Uzzah, which remains its name to this very day. </VERS>\n\t\t\t<VERS vnumber=\"9\"> David was afraid of the LORD that day and said, \"How will the ark of the LORD ever come to me?\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> So David was no longer willing to bring the ark of the LORD to be with him in the City of David. David left it in the house of Obed-Edom the Gittite.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The ark of the LORD remained in the house of Obed-Edom the Gittite for three months. The LORD blessed Obed-Edom and all his family.</VERS>\n\t\t\t<VERS vnumber=\"12\"> David was told, \"The LORD has blessed the family of Obed-Edom and everything he owns because of the ark of God.\" So David went and joyfully brought the ark of God from the house of Obed-Edom to the City of David. </VERS>\n\t\t\t<VERS vnumber=\"13\"> Those who carried the ark of the LORD took six steps and then David sacrificed an ox and a fatling calf. </VERS>\n\t\t\t<VERS vnumber=\"14\"> Now David, wearing a linen ephod, was dancing with all his strength before the LORD.</VERS>\n\t\t\t<VERS vnumber=\"15\"> David and all Israel were bringing up the ark of the LORD, shouting and blowing trumpets.</VERS>\n\t\t\t<VERS vnumber=\"16\"> As the ark of the LORD entered the City of David, Saul's daughter Michal looked out the window. When she saw King David leaping and dancing before the LORD, she despised him.</VERS>\n\t\t\t<VERS vnumber=\"17\"> They brought the ark of the LORD and put it in its place in the middle of the tent that David had pitched for it. Then David offered burnt sacrifices and peace offerings before the LORD. </VERS>\n\t\t\t<VERS vnumber=\"18\"> When David finished offering the burnt sacrifices and peace offerings, he pronounced a blessing over the people in the name of the LORD of hosts.</VERS>\n\t\t\t<VERS vnumber=\"19\"> He then handed out to each member of the entire assembly of Israel, both men and women, a portion of bread, a date cake, and a raisin cake. Then all the people went home.</VERS>\n\t\t\t<VERS vnumber=\"20\"> When David went home to pronounce a blessing on his own house, Michal, Saul's daughter, came out to meet him. She said, \"How the king of Israel has distinguished himself this day! He has exposed himself today before his servants' slave girls the way a vulgar fool might do!\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> David replied to Michal, \"It was before the LORD! I was celebrating before the LORD, who chose me over your father and his entire family and appointed me as leader over the LORD's people Israel. </VERS>\n\t\t\t<VERS vnumber=\"22\"> I am willing to shame and humiliate myself even more than this! But with the slave girls whom you mentioned let me be distinguished!\" </VERS>\n\t\t\t<VERS vnumber=\"23\"> Now Michal, Saul's daughter, had no children to the day of her death.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"7\">\n\t\t\t<VERS vnumber=\"1\"> The king settled into his palace, for the LORD gave him relief from all his enemies on all sides.</VERS>\n\t\t\t<VERS vnumber=\"2\"> The king said to Nathan the prophet, \"Look! I am living in a palace made from cedar, while the ark of God sits in the middle of a tent.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> Nathan replied to the king, \"You should go and do whatever you have in mind, for the LORD is with you.\" </VERS>\n\t\t\t<VERS vnumber=\"4\"> That night the LORD told Nathan,</VERS>\n\t\t\t<VERS vnumber=\"5\"> \"Go, tell my servant David: 'This is what the LORD says: Do you really intend to build a house for me to live in?</VERS>\n\t\t\t<VERS vnumber=\"6\"> I have not lived in a house from the time I brought the Israelites up from Egypt to the present day. Instead, I was traveling with them and living in a tent.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Wherever I moved among all the Israelites, I did not say to any of the leaders whom I appointed to care for my people Israel, \"Why have you not built me a house made from cedar?\"'</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"So now, say this to my servant David: 'This is what the LORD of hosts says: I took you from the pasture and from your work as a shepherd to make you leader of my people Israel.</VERS>\n\t\t\t<VERS vnumber=\"9\"> I was with you wherever you went, and I defeated all your enemies before you. Now I will make you as famous as the great men of the earth.</VERS>\n\t\t\t<VERS vnumber=\"10\"> I will establish a place for my people Israel and settle them there; they will live there and not be disturbed any more. Violent men will not oppress them again, as they did in the beginning </VERS>\n\t\t\t<VERS vnumber=\"11\"> and during the time when I appointed judges to lead my people Israel. Instead, I will give you relief from all your enemies. The LORD declares to you that he himself will build a dynastic house for you. </VERS>\n\t\t\t<VERS vnumber=\"12\"> When the time comes for you to die, I will raise up your descendant, one of your own sons, to succeed you, and I will establish his kingdom. </VERS>\n\t\t\t<VERS vnumber=\"13\"> He will build a house for my name, and I will make his dynasty permanent.</VERS>\n\t\t\t<VERS vnumber=\"14\"> I will become his father and he will become my son. When he sins, I will correct him with the rod of men and with wounds inflicted by human beings.</VERS>\n\t\t\t<VERS vnumber=\"15\"> But my loyal love will not be removed from him as I removed it from Saul, whom I removed from before you.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Your house and your kingdom will stand before me permanently; your dynasty will be permanent.'\" </VERS>\n\t\t\t<VERS vnumber=\"17\"> Nathan told David all these words that were revealed to him.</VERS>\n\t\t\t<VERS vnumber=\"18\"> King David went in, sat before the LORD, and said, \"Who am I, O LORD God, and what is my family, that you should have brought me to this point? </VERS>\n\t\t\t<VERS vnumber=\"19\"> And you didn't stop there, O LORD God! You have also spoken about the future of your servant's family. Is this your usual way of dealing with men, O LORD God? </VERS>\n\t\t\t<VERS vnumber=\"20\"> What more can David say to you? You have given your servant special recognition, O LORD God! </VERS>\n\t\t\t<VERS vnumber=\"21\"> For the sake of your promise and according to your purpose you have done this great thing in order to reveal it to your servant.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Therefore you are great, O LORD God, for there is none like you! There is no God besides you! What we have heard is true!</VERS>\n\t\t\t<VERS vnumber=\"23\"> Who is like your people, Israel, a unique nation on the earth? Their God went to claim a nation for himself and to make a name for himself! You did great and awesome acts for your land, before your people whom you delivered for yourself from the Egyptian empire and its gods.</VERS>\n\t\t\t<VERS vnumber=\"24\"> You made Israel your very own people for all time. You, O LORD, became their God. </VERS>\n\t\t\t<VERS vnumber=\"25\"> So now, O LORD God, make this promise you have made about your servant and his family a permanent reality. Do as you promised,</VERS>\n\t\t\t<VERS vnumber=\"26\"> so you may gain lasting fame, as people say, 'The LORD of hosts is God over Israel!' The dynasty of your servant David will be established before you, </VERS>\n\t\t\t<VERS vnumber=\"27\"> for you, O LORD of hosts, the God of Israel, have told your servant, 'I will build you a dynastic house.' That is why your servant has had the courage to pray this prayer to you. </VERS>\n\t\t\t<VERS vnumber=\"28\"> Now, O sovereign LORD, you are the true God! May your words prove to be true! You have made this good promise to your servant!</VERS>\n\t\t\t<VERS vnumber=\"29\"> Now be willing to bless your servant's dynasty so that it may stand permanently before you, for you, O sovereign LORD, have spoken. By your blessing may your servant's dynasty be blessed on into the future!\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"8\">\n\t\t\t<VERS vnumber=\"1\"> Later David defeated the Philistines and subdued them. David took Metheg Ammah from the Philistines.</VERS>\n\t\t\t<VERS vnumber=\"2\"> He defeated the Moabites. He made them lie on the ground and then used a rope to measure them off. He put two-thirds of them to death and spared the other third. The Moabites became David's subjects and brought tribute.</VERS>\n\t\t\t<VERS vnumber=\"3\"> David defeated King Hadadezer son of Rehob of Zobah when he came to reestablish his authority over the Euphrates River. </VERS>\n\t\t\t<VERS vnumber=\"4\"> David seized from him 1,700 charioteers and 20,000 infantrymen. David cut the hamstrings of all but a hundred of the chariot horses.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The Arameans of Damascus came to help King Hadadezer of Zobah, but David killed 22,000 of the Arameans.</VERS>\n\t\t\t<VERS vnumber=\"6\"> David placed garrisons in the territory of the Arameans of Damascus; the Arameans became David's subjects and brought tribute. The LORD protected David wherever he campaigned.</VERS>\n\t\t\t<VERS vnumber=\"7\"> David took the golden shields that belonged to Hadadezer's servants and brought them to Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"8\"> From Tebah and Berothai, Hadadezer's cities, King David took a great deal of bronze.</VERS>\n\t\t\t<VERS vnumber=\"9\"> When King Toi of Hamath heard that David had defeated the entire army of Hadadezer,</VERS>\n\t\t\t<VERS vnumber=\"10\"> he sent his son Joram to King David to extend his best wishes and to pronounce a blessing on him for his victory over Hadadezer, for Toi had been at war with Hadadezer. He brought with him various items made of silver, gold, and bronze.</VERS>\n\t\t\t<VERS vnumber=\"11\"> King David dedicated these things to the LORD, along with the dedicated silver and gold that he had taken from all the nations that he had subdued, </VERS>\n\t\t\t<VERS vnumber=\"12\"> including Aram, Moab, the Ammonites, the Philistines, and Amelek. This also included some of the plunder taken from King Hadadezer son of Rehob of Zobah.</VERS>\n\t\t\t<VERS vnumber=\"13\"> David became famous when he returned from defeating the Arameans in the Valley of Salt, he defeated 18,000 in all. </VERS>\n\t\t\t<VERS vnumber=\"14\"> He placed garrisons throughout Edom, and all the Edomites became David's subjects. The LORD protected David wherever he campaigned. </VERS>\n\t\t\t<VERS vnumber=\"15\"> David reigned over all Israel; he guaranteed justice for all his people.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Joab son of Zeruiah was general in command of the army; Jehoshaphat son of Ahilud was secretary; </VERS>\n\t\t\t<VERS vnumber=\"17\"> Zadok son of Ahitub and Ahimelech son of Abiathar were priests; Seraiah was scribe; </VERS>\n\t\t\t<VERS vnumber=\"18\"> Benaiah son of Jehoida supervised the Kerithites and Pelethites; and David's sons were priests.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"9\">\n\t\t\t<VERS vnumber=\"1\">  Then David asked, \"Is anyone still left from the family of Saul, so that I may extend kindness to him for the sake of Jonathan?\"</VERS>\n\t\t\t<VERS vnumber=\"2\"> Now there was a servant from Saul's house named Ziba, so he was summoned to David. The king asked him, \"Are you Ziba?\" He replied, \"At your service.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> The king asked, \"Is there not someone left from Saul's family, that I may extend God's kindness to him?\" Ziba said to the king, \"One of Jonathan's sons is left; both of his feet are crippled.\" </VERS>\n\t\t\t<VERS vnumber=\"4\"> The king asked him, \"Where is he?\" Ziba told the king, \"He is at the house of Makir son of Ammiel in Lo Debar.</VERS>\n\t\t\t<VERS vnumber=\"5\"> So King David had him brought from the house of Makir son of Ammiel in Lo Debar. </VERS>\n\t\t\t<VERS vnumber=\"6\"> When Mephibosheth son of Jonathan, the son of Saul, came to David, he bowed low with his face toward the ground. David said, \"Mephibosheth?\" He replied, \"Yes, at your service.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> David said to him, \"Don't be afraid, because I will certainly extend kindness to you for the sake of Jonathan your father. You will be a regular guest at my table.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> Then Mephibosheth bowed and said, \"Of what importance am I, your servant, that you show regard for a dead dog like me?\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> Then the king summoned Ziba, Saul's attendant, and said to him, \"Everything that belonged to Saul and to his entire house I hereby give to your master's grandson.</VERS>\n\t\t\t<VERS vnumber=\"10\"> You will cultivate the land for him, you and your sons and your servants. You will bring its produce and it will be food for your master's grandson to eat. But Mephibosheth, your master's grandson, will be a regular guest at my table.\" (Now Ziba had fifteen sons and twenty servants.)</VERS>\n\t\t\t<VERS vnumber=\"11\"> Ziba said to the king, \"Your servant will do everything that my lord the king has instructed his servant to do.\" So Mephibosheth was a regular guest at David's table, just as though he were one of the king's sons.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Now Mephibosheth had a young son whose name was Mica. All the members of Ziba's household were Mephibosheth's servants.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Mephibosheth was living in Jerusalem, for he was a regular guest at the king's table. But both his feet were crippled.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"10\">\n\t\t\t<VERS vnumber=\"1\"> Later the king of the Ammonites died and his son Hanun succeeded him.</VERS>\n\t\t\t<VERS vnumber=\"2\"> David said, \"I will express my loyalty to Hanun son of Nahash just as his father was loyal to me.\" So David sent his servants with a message expressing sympathy over his father's death. When David's servants entered the land of the Ammonites, </VERS>\n\t\t\t<VERS vnumber=\"3\"> the Ammonite officials said to their lord Hanun, \"Do you really think David is trying to honor your father by sending these messengers to express his sympathy? No, David has sent his servants to you to get information about the city and spy on it so they can overthrow it!\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> So Hanun seized David's servants and shaved off half of each one's beard. He cut the lower part of their robes off so that their buttocks were exposed, and then sent them away. </VERS>\n\t\t\t<VERS vnumber=\"5\"> Messengers told David what had happened, so he summoned them, for the men were thoroughly humiliated. The king said, \"Stay in Jericho until your beards have grown again; then you may come back.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> When the Ammonites realized that David was disgusted with them, they sent and hired 20,000 foot soldiers from Aram Beth Rehob and Aram Zobah, in addition to 1,000 men from the king of Maacah and 12,000 men from Ish-tob.</VERS>\n\t\t\t<VERS vnumber=\"7\"> When David heard the news, he sent Joab and the entire army to meet them.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The Ammonites marched out and were deployed for battle at the entrance of the city gate, while the men from Aram Zobah, Rehob, Ish-tob, and Maacah were by themselves in the field.</VERS>\n\t\t\t<VERS vnumber=\"9\"> When Joab saw that the battle would be fought on two fronts, he chose some of Israel's best men and deployed them against the Arameans.</VERS>\n\t\t\t<VERS vnumber=\"10\"> He put his brother Abishai in charge of the rest of the army and they were deployed against the Ammonites. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Joab said, \"If the Arameans start to overpower me, you come to my rescue. If the Ammonites start to overpower you, I will come to your rescue. </VERS>\n\t\t\t<VERS vnumber=\"12\"> Be strong! Let's fight bravely for the sake of our people and the cities of our God! The LORD will do what he decides is best!\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> So Joab and his men marched out to do battle with the Arameans, and they fled before him. </VERS>\n\t\t\t<VERS vnumber=\"14\"> When the Ammonites saw the Arameans flee, they fled before his brother Abishai and went into the city. Joab withdrew from fighting the Ammonites and returned to Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"15\"> When the Arameans realized that they had been defeated by Israel, they consolidated their forces.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Then Hadadezer sent for Arameans from beyond the Euphrates River, and they came to Helam. Shobach, the general in command of Hadadezer's army, led them.</VERS>\n\t\t\t<VERS vnumber=\"17\"> When David was informed, he gathered all Israel, crossed the Jordan River, and came to Helam. The Arameans deployed their forces against David and fought with him. </VERS>\n\t\t\t<VERS vnumber=\"18\"> The Arameans fled before Israel. David killed 700 Aramean charioteers and 40,000 foot soldiers. He also struck down Shobach, the general in command of the army, who died there.</VERS>\n\t\t\t<VERS vnumber=\"19\"> When all the kings who were subject to Hadadezer saw they were defeated by Israel, they made peace with Israel and became subjects of Israel. The Arameans were no longer willing to help the Ammonites.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"11\">\n\t\t\t<VERS vnumber=\"1\"> In the spring of the year, at the time when kings normally conduct wars, David sent out Joab with his officers and the entire Israelite army. They defeated the Ammonites and besieged Rabbah. But David stayed behind in Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"2\"> One evening David got up from his bed and walked around on the roof of his palace. From the roof he saw a woman bathing. Now this woman was very attractive.</VERS>\n\t\t\t<VERS vnumber=\"3\"> So David sent someone to inquire about the woman. The messenger said, \"Isn't this Bathsheba, the daughter of Eliam, the wife of Uriah the Hittite?\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> David sent some messengers to get her. She came to him and he had sexual relations with her. (Now at that time she was in the process of purifying herself from her menstrual uncleanness.) Then she returned to her home. </VERS>\n\t\t\t<VERS vnumber=\"5\"> The woman conceived and then sent word to David saying, \"I'm pregnant.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> So David sent a message to Joab that said, \"Send me Uriah the Hittite.\" So Joab sent Uriah to David.</VERS>\n\t\t\t<VERS vnumber=\"7\"> When Uriah came to him, David asked about how Joab and the army were doing and how the campaign was going.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Then David said to Uriah, \"Go down to your home and relax.\" When Uriah left the palace, the king sent a gift to him.</VERS>\n\t\t\t<VERS vnumber=\"9\"> But Uriah stayed at the door of the palace with all the servants of his lord. He did not go down to his house.</VERS>\n\t\t\t<VERS vnumber=\"10\"> So they informed David, \"Uriah has not gone down to his house.\" So David said to Uriah, \"Haven't you just arrived from a journey? Why haven't you gone down to your house?\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> Uriah replied to David, \"The ark and Israel and Judah reside in temporary shelters, and my lord Joab and my lord's soldiers are camping in the open field. Should I go to my house to eat and drink and have marital relations with my wife? As surely as you are alive, I will not do this thing!\" </VERS>\n\t\t\t<VERS vnumber=\"12\"> So David said to Uriah, \"Stay here another day. Tomorrow I will send you back.\" So Uriah stayed in Jerusalem both that day and the following one.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Then David summoned him. He ate and drank with him, and got him drunk. But in the evening he went out to sleep on his bed with the servants of his lord; he did not go down to his own house.</VERS>\n\t\t\t<VERS vnumber=\"14\"> In the morning David wrote a letter to Joab and sent it with Uriah.</VERS>\n\t\t\t<VERS vnumber=\"15\"> In the letter he wrote: \"Station Uriah in the thick of the battle and then withdraw from him so he will be cut down and killed.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> So as Joab kept watch on the city, he stationed Uriah at the place where he knew the best enemy soldiers were. </VERS>\n\t\t\t<VERS vnumber=\"17\"> When the men of the city came out and fought with Joab, some of David's soldiers fell in battle. Uriah the Hittite also died.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Then Joab sent a full battle report to David.</VERS>\n\t\t\t<VERS vnumber=\"19\"> He instructed the messenger as follows: \"When you finish giving the battle report to the king,</VERS>\n\t\t\t<VERS vnumber=\"20\"> if the king becomes angry and asks you, 'Why did you go so close to the city to fight? Didn't you realize they would shoot from the wall?</VERS>\n\t\t\t<VERS vnumber=\"21\"> Who struck down Abimelech the son of Jerub-Besheth? Didn't a woman throw an upper millstone down on him from the wall so that he died in Thebez? Why did you go so close to the wall?' just say to him, 'Your servant Uriah the Hittite is also dead.'\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> So the messenger departed. When he arrived, he informed David of all the news that Joab had sent with him.</VERS>\n\t\t\t<VERS vnumber=\"23\"> The messenger said to David, \"The men overpowered us and attacked us in the field. But we forced them to retreat all the way to the door of the city gate. </VERS>\n\t\t\t<VERS vnumber=\"24\"> Then the archers shot at your servants from the wall and some of the king's soldiers died. Your servant Uriah the Hittite is also dead.\" </VERS>\n\t\t\t<VERS vnumber=\"25\"> David said to the messenger, \"Tell Joab, 'Don't let this thing upset you. There is no way to anticipate whom the sword will cut down. Press the battle against the city and conquer it.' Encourage him with these words.\"</VERS>\n\t\t\t<VERS vnumber=\"26\"> When Uriah's wife heard that her husband Uriah was dead, she mourned for him.</VERS>\n\t\t\t<VERS vnumber=\"27\"> When the time of mourning passed, David had her brought to his palace. She became his wife and she bore him a son. But what David had done upset the LORD.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"12\">\n\t\t\t<VERS vnumber=\"1\"> So the LORD sent Nathan to David. When he came to David, Nathan said, \"There were two men in a certain city, one rich and the other poor. </VERS>\n\t\t\t<VERS vnumber=\"2\"> The rich man had a great many flocks and herds.</VERS>\n\t\t\t<VERS vnumber=\"3\"> But the poor man had nothing except for a little lamb he had acquired. He raised it, and it grew up alongside him and his children. It used to eat his food, drink from his cup, and sleep in his arms. It was just like a daughter to him.</VERS>\n\t\t\t<VERS vnumber=\"4\"> \"When a traveler arrived at the rich man's home, he did not want to use one of his own sheep or cattle to feed the traveler who had come to visit him. Instead, he took the poor man's lamb and cooked it for the man who had come to visit him.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> Then David became very angry at this man. He said to Nathan, \"As surely as the LORD lives, the man who did this deserves to die!</VERS>\n\t\t\t<VERS vnumber=\"6\"> Because he committed this cold-hearted crime, he must pay for the lamb four times over!\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> Nathan said to David, \"You are that man! This is what the LORD God of Israel says: 'I chose you to be king over Israel and I rescued you from the hand of Saul. </VERS>\n\t\t\t<VERS vnumber=\"8\"> I gave you your master's house, and put your master's wives into your arms. I also gave you the house of Israel and Judah. And if all that somehow seems insignificant, I would have given you so much more as well! </VERS>\n\t\t\t<VERS vnumber=\"9\"> Why have you shown contempt for the word of the LORD by doing evil in my sight? You have struck down Uriah the Hittite with the sword and you have taken his wife as your own! You have killed him with the sword of the Ammonites. </VERS>\n\t\t\t<VERS vnumber=\"10\"> So now the sword will never depart from your house. For you have despised me by taking the wife of Uriah the Hittite as your own!'</VERS>\n\t\t\t<VERS vnumber=\"11\"> This is what the LORD says: 'I am about to bring disaster on you from inside your own household! Right before your eyes I will take your wives and hand them over to your companion. He will have sexual relations with your wives in broad daylight!</VERS>\n\t\t\t<VERS vnumber=\"12\"> Although you have acted in secret, I will do this thing before all Israel, and in broad daylight.'\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> Then David exclaimed to Nathan, \"I have sinned against the LORD!\" Nathan replied to David, \"Yes, and the LORD has forgiven your sin. You are not going to die. </VERS>\n\t\t\t<VERS vnumber=\"14\"> Nonetheless, because you have treated the LORD with such contempt in this matter, the son who has been born to you will certainly die.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> Then Nathan went to his home. The LORD struck the child that Uriah's wife had borne to David, and the child became very ill.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Then David prayed to God for the child and fasted. He would even go and spend the night lying on the ground. </VERS>\n\t\t\t<VERS vnumber=\"17\"> The elders of his house stood over him and tried to lift him from the ground, but he was unwilling, and refused to eat food with them.</VERS>\n\t\t\t<VERS vnumber=\"18\"> On the seventh day the child died. But the servants of David were afraid to inform him that the child had died, for they said, \"While the child was still alive he would not listen to us when we spoke to him. How can we tell him that the child is dead? He will do himself harm!\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> When David saw that his servants were whispering to one another, he realized that the child was dead. So David asked his servants, \"Is the child dead?\" They replied, \"Yes, he's dead.\" </VERS>\n\t\t\t<VERS vnumber=\"20\"> So David got up from the ground, bathed, put on oil, and changed his clothes. He went to the house of the LORD and worshiped. Then, when he entered his palace, he requested that food be brought to him, and he ate.</VERS>\n\t\t\t<VERS vnumber=\"21\"> His servants said to him, \"What is this that you have done? While the child was still alive, you fasted and wept. Once the child was dead you got up and ate food!\" </VERS>\n\t\t\t<VERS vnumber=\"22\"> He replied, \"While the child was still alive, I fasted and wept because I thought, 'Perhaps the LORD will show pity and the child will live. </VERS>\n\t\t\t<VERS vnumber=\"23\"> But now he is dead. Why should I fast? Am I able to bring him back? I will go to him, but he cannot return to me!'\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> So David comforted his wife Bathsheba. He went to her and had marital relations with her. She gave birth to a son, and David named him Solomon. Now the LORD loved the child</VERS>\n\t\t\t<VERS vnumber=\"25\"> and sent word through Nathan the prophet that he should be named Jedidiah for the LORD's sake.</VERS>\n\t\t\t<VERS vnumber=\"26\">  So Joab fought against Rabbah of the Ammonites and captured the royal city. </VERS>\n\t\t\t<VERS vnumber=\"27\"> Joab then sent messengers to David, saying, \"I have fought against Rabbah and have captured the water supply of the city.</VERS>\n\t\t\t<VERS vnumber=\"28\"> So now assemble the rest of the army and besiege the city and capture it. Otherwise I will capture the city and it will be named for me.\"</VERS>\n\t\t\t<VERS vnumber=\"29\"> So David assembled all the army and went to Rabbah and fought against it and captured it.</VERS>\n\t\t\t<VERS vnumber=\"30\"> He took the crown of their king from his head, it was gold, weighed about seventy-five pounds, and held a precious stone, and it was placed on David's head. He also took from the city a great deal of plunder.</VERS>\n\t\t\t<VERS vnumber=\"31\"> He removed the people who were in it and made them do hard labor with saws, iron picks, and iron axes, putting them to work at the brick kiln. This was his policy with all the Ammonite cities. Then David and all the army returned to Jerusalem.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"13\">\n\t\t\t<VERS vnumber=\"1\"> Now David's son Absalom had a beautiful sister named Tamar. In the course of time David's son Amnon fell madly in love with her.</VERS>\n\t\t\t<VERS vnumber=\"2\"> But Amnon became frustrated because he was so lovesick over his sister Tamar. For she was a virgin, and to Amnon it seemed out of the question to do anything to her.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Now Amnon had a friend named Jonadab, the son of David's brother Shimeah. Jonadab was a very crafty man.</VERS>\n\t\t\t<VERS vnumber=\"4\"> He asked Amnon, \"Why are you, the king's son, so depressed every morning? Can't you tell me?\" So Amnon said to him, \"I'm in love with Tamar the sister of my brother Absalom.\" </VERS>\n\t\t\t<VERS vnumber=\"5\"> Jonadab replied to him, \"Lie down on your bed and pretend to be sick. When your father comes in to see you, say to him, 'Please let my sister Tamar come in so she can fix some food for me. Let her prepare the food in my sight so I can watch. Then I will eat from her hand.'\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> So Amnon lay down and pretended to be sick. When the king came in to see him, Amnon said to the king, \"Please let my sister Tamar come in so she can make a couple of cakes in my sight. Then I will eat from her hand.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> So David sent Tamar to the house saying, \"Please go to the house of Amnon your brother and prepare some food for him.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> So Tamar went to the house of Amnon her brother, who was lying down. She took the dough, kneaded it, made some cakes while he watched, and baked them.</VERS>\n\t\t\t<VERS vnumber=\"9\"> But when she took the pan and set it before him, he refused to eat. Instead Amnon said, \"Get everyone out of here!\" So everyone left.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Then Amnon said to Tamar, \"Bring the cakes into the bedroom; then I will eat from your hand.\" So Tamar took the cakes that she had prepared and brought them to her brother Amnon in the bedroom.</VERS>\n\t\t\t<VERS vnumber=\"11\"> As she brought them to him to eat, he grabbed her and said to her, \"Come on! Get in bed with me, my sister!\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> But she said to him, \"No, my brother! Don't humiliate me! This just isn't done in Israel! Don't do this foolish thing!</VERS>\n\t\t\t<VERS vnumber=\"13\"> How could I ever be rid of my humiliation? And you would be considered one of the fools in Israel! Just speak to the king, for he will not withhold me from you.\" </VERS>\n\t\t\t<VERS vnumber=\"14\"> But he refused to listen to her. He overpowered her and humiliated her by raping her.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Then Amnon greatly despised her. His disdain toward her surpassed the love he had previously felt toward her. Amnon said to her, \"Get up and leave!\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> But she said to him, \"No I won't, for sending me away now would be worse than what you did to me earlier!\" But he refused to listen to her. </VERS>\n\t\t\t<VERS vnumber=\"17\"> He called his personal attendant and said to him, \"Take this woman out of my sight and lock the door behind her!\" </VERS>\n\t\t\t<VERS vnumber=\"18\"> (Now she was wearing a long robe, for this is what the king's virgin daughters used to wear.) So Amnon's attendant removed her and bolted the door behind her. </VERS>\n\t\t\t<VERS vnumber=\"19\"> Then Tamar put ashes on her head and tore the long robe she was wearing. She put her hands on her head and went on her way, wailing as she went.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Her brother Absalom said to her, \"Was Amnon your brother with you? Now be quiet, my sister. He is your brother. Don't take it so seriously!\" Tamar, devastated, lived in the house of her brother Absalom.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Now King David heard about all these things and was very angry.</VERS>\n\t\t\t<VERS vnumber=\"22\"> But Absalom said nothing to Amnon, either bad or good, yet Absalom hated Amnon because he had humiliated his sister Tamar.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Two years later Absalom's sheepshearers were in Baal Hazor, near Ephraim. Absalom invited all the king's sons. </VERS>\n\t\t\t<VERS vnumber=\"24\"> Then Absalom went to the king and said, \"My shearers have begun their work. Let the king and his servants go with me.\"</VERS>\n\t\t\t<VERS vnumber=\"25\"> But the king said to Absalom, \"No, my son. We shouldn't all go. We shouldn't burden you in that way.\" Though Absalom pressed him, the king was not willing to go. Instead, David blessed him.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Then Absalom said, \"If you will not go, then let my brother Amnon go with us.\" The king replied to him, \"Why should he go with you?\" </VERS>\n\t\t\t<VERS vnumber=\"27\"> But when Absalom pressed him, he sent Amnon and all the king's sons along with him.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Absalom instructed his servants, \"Look! When Amnon is drunk and I say to you, 'Strike Amnon down,' kill him then and there. Don't fear! Is it not I who have given you these instructions? Be strong and courageous!\"</VERS>\n\t\t\t<VERS vnumber=\"29\"> So Absalom's servants did to Amnon exactly what Absalom had instructed. Then all the king's sons got up; each one rode away on his mule and fled.</VERS>\n\t\t\t<VERS vnumber=\"30\"> While they were still on their way, the following report reached David: \"Absalom has killed all the king's sons; not one of them is left!\"</VERS>\n\t\t\t<VERS vnumber=\"31\"> Then the king stood up and tore his garments and lay down on the ground. All his servants were standing there with torn garments as well.</VERS>\n\t\t\t<VERS vnumber=\"32\"> Jonadab, the son of David's brother Shimeah, said, \"My lord should not say, 'They have killed all the young men who are the king's sons.' For only Amnon is dead. This is what Absalom has talked about from the day that Amnon humiliated his sister Tamar. </VERS>\n\t\t\t<VERS vnumber=\"33\"> Now don't let my lord the king be concerned about the report that has come saying, 'All the king's sons are dead.' It is only Amnon who is dead.\"</VERS>\n\t\t\t<VERS vnumber=\"34\"> In the meantime Absalom fled. When the servant who was the watchman looked up, he saw many people coming from the west on a road beside the hill. </VERS>\n\t\t\t<VERS vnumber=\"35\"> Jonadab said to the king, \"Look! The king's sons have come! It's just as I said!\"</VERS>\n\t\t\t<VERS vnumber=\"36\"> Just as he finished speaking, the king's sons arrived, wailing and weeping. The king and all his servants wept loudly as well. </VERS>\n\t\t\t<VERS vnumber=\"37\"> But Absalom fled and went to King Talmai son of Ammihud of Geshur. And David grieved over his son every day.</VERS>\n\t\t\t<VERS vnumber=\"38\"> After Absalom fled and went to Geshur, he remained there for three years.</VERS>\n\t\t\t<VERS vnumber=\"39\"> The king longed to go to Absalom, for he had since been consoled over the death of Amnon.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"14\">\n\t\t\t<VERS vnumber=\"1\"> Now Joab son of Zeruiah realized that the king longed to see Absalom. </VERS>\n\t\t\t<VERS vnumber=\"2\"> So Joab sent to Tekoa and brought from there a wise woman. He told her, \"Pretend to be in mourning and put on garments for mourning. Don't anoint yourself with oil. Instead, act like a woman who has been mourning for the dead for some time.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Go to the king and speak to him in the following fashion.\" Then Joab told her what to say.</VERS>\n\t\t\t<VERS vnumber=\"4\"> So the Tekoan woman went to the king. She bowed down with her face to the ground in deference to him and said, \"Please help me, O king!\" </VERS>\n\t\t\t<VERS vnumber=\"5\"> The king replied to her, \"What do you want?\" She answered, \"I am a widow; my husband is dead. </VERS>\n\t\t\t<VERS vnumber=\"6\"> Your servant has two sons. When the two of them got into a fight in the field, there was no one present who could intervene. One of them struck the other and killed him. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Now the entire family has risen up against your servant, saying, 'Turn over the one who struck down his brother, so that we can execute him and avenge the death of his brother whom he killed. In so doing we will also destroy the heir.' They want to extinguish my remaining coal, leaving no one on the face of the earth to carry on the name of my husband.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> Then the king told the woman, \"Go to your home. I will give instructions concerning your situation.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> The Tekoan woman said to the king, \"My lord the king, let any blame fall on me and on the house of my father. But let the king and his throne be innocent!\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> The king said, \"Bring to me whoever speaks to you, and he won't bother you again!\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> She replied, \"In that case, let the king invoke the name of the LORD your God so that the avenger of blood may not kill! Then they will not destroy my son!\" He replied, \"As surely as the LORD lives, not a single hair of your son's head will fall to the ground.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> Then the woman said, \"Please permit your servant to speak to my lord the king about another matter.\" He replied, \"Tell me.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> The woman said, \"Why have you devised something like this against God's people? When the king speaks in this fashion, he makes himself guilty, for the king has not brought back the one he has banished.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Certainly we must die, and are like water spilled on the ground that cannot be gathered up again. But God does not take away life; instead he devises ways for the banished to be restored.</VERS>\n\t\t\t<VERS vnumber=\"15\"> I have now come to speak with my lord the king about this matter, because the people have made me fearful. But your servant said, 'I will speak to the king! Perhaps the king will do what his female servant asks. </VERS>\n\t\t\t<VERS vnumber=\"16\"> Yes! The king may listen and deliver his female servant from the hand of the man who seeks to remove both me and my son from the inheritance God has given us!'</VERS>\n\t\t\t<VERS vnumber=\"17\"> So your servant said, 'May the word of my lord the king be my security, for my lord the king is like the angel of God when it comes to deciding between right and wrong! May the LORD your God be with you!'\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> Then the king replied to the woman, \"Don't hide any information from me when I question you.\" The woman said, \"Let my lord the king speak!\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> The king said, \"Did Joab put you up to all of this?\" The woman answered, \"As surely as you live, my lord the king, there is no deviation to the right or to the left from all that my lord the king has said. For your servant Joab gave me instructions. He has put all these words in your servant's mouth. </VERS>\n\t\t\t<VERS vnumber=\"20\"> Your servant Joab did this so as to change this situation. But my lord has wisdom like that of the angel of God, and knows everything that is happening in the land.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> Then the king said to Joab, \"All right! I will do this thing! Go and bring back the young man Absalom! </VERS>\n\t\t\t<VERS vnumber=\"22\"> Then Joab bowed down with his face toward the ground and thanked the king. Joab said, \"Today your servant knows that I have found favor in your sight, my lord the king, because the king has granted the request of your servant!\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> So Joab got up and went to Geshur and brought Absalom back to Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"24\"> But the king said, \"Let him go over to his own house. He may not see my face.\" So Absalom went over to his own house; he did not see the king's face.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Now in all Israel everyone acknowledged that there was no man as handsome as Absalom. From the sole of his feet to the top of his head he was perfect in appearance.</VERS>\n\t\t\t<VERS vnumber=\"26\"> When he would shave his head, at the end of every year he used to shave his head, for it grew too long and he would shave it, he used to weigh the hair of his head at three pounds according to the king's weight.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Absalom had three sons and one daughter, whose name was Tamar. She was a very attractive woman.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Absalom lived in Jerusalem for two years without seeing the king's face.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Then Absalom sent a message to Joab asking him to send him to the king, but Joab was not willing to come to him. So he sent a second message to him, but he still was not willing to come.</VERS>\n\t\t\t<VERS vnumber=\"30\"> So he said to his servants, \"Look, Joab has a portion of field adjacent to mine and he has some barley there. Go and set it on fire.\" So Absalom's servants set Joab's portion of the field on fire.</VERS>\n\t\t\t<VERS vnumber=\"31\"> Then Joab got up and came to Absalom's house. He said to him, \"Why did your servants set my portion of field on fire?\"</VERS>\n\t\t\t<VERS vnumber=\"32\"> Absalom said to Joab, \"Look, I sent a message to you saying, 'Come here so that I can send you to the king with this message: \"Why have I come from Geshur? It would be better for me if I were still there.\"' Let me now see the face of the king. If I am at fault, let him put me to death!\"</VERS>\n\t\t\t<VERS vnumber=\"33\"> So Joab went to the king and informed him. The king summoned Absalom, and he came to the king. Absalom bowed down before the king with his face toward the ground and the king kissed him.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"15\">\n\t\t\t<VERS vnumber=\"1\"> Some time later Absalom managed to acquire a chariot and horses, as well as fifty men to serve as his royal guard.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Now Absalom used to get up early and stand beside the road that led to the city gate. Whenever anyone came by who had a complaint to bring to the king for arbitration, Absalom would call out to him, \"What city are you from?\" The person would answer, \"I, your servant, am from one of the tribes of Israel.\" </VERS>\n\t\t\t<VERS vnumber=\"3\"> Absalom would then say to him, \"Look, your claims are legitimate and appropriate. But there is no representative of the king who will listen to you.\" </VERS>\n\t\t\t<VERS vnumber=\"4\"> Absalom would then say, \"If only they would make me a judge in the land! Then everyone who had a judicial complaint could come to me and I would make sure he receives a just settlement.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> When someone approached to bow before him, Absalom would extend his hand and embrace him and kiss him. </VERS>\n\t\t\t<VERS vnumber=\"6\"> Absalom acted this way toward everyone in Israel who came to the king for justice. In this way Absalom won the loyalty of the citizens of Israel.</VERS>\n\t\t\t<VERS vnumber=\"7\"> After four years Absalom said to the king, \"Let me go and repay my vow that I made to the LORD while I was in Hebron. </VERS>\n\t\t\t<VERS vnumber=\"8\"> For I made this vow when I was living in Geshur in Aram: 'If the LORD really does allow me to return to Jerusalem, I will serve the LORD.'\" </VERS>\n\t\t\t<VERS vnumber=\"9\"> The king replied to him, \"Go in peace.\" So Absalom got up and went to Hebron.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Then Absalom sent spies through all the tribes of Israel who said, \"When you hear the sound of the horn, you may assume that Absalom rules in Hebron.\" </VERS>\n\t\t\t<VERS vnumber=\"11\"> Now two hundred men had gone with Absalom from Jerusalem. Since they were invited, they went naively and were unaware of what Absalom was planning.</VERS>\n\t\t\t<VERS vnumber=\"12\"> While he was offering sacrifices, Absalom sent for Ahithophel the Gilonite, David's adviser, to come from his city, Giloh. The conspiracy was gaining momentum, and the people were starting to side with Absalom.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Then a messenger came to David and reported, \"The men of Israel are loyal to Absalom!\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> So David said to all his servants who were with him in Jerusalem, \"Come on! Let's escape! Otherwise no one will be delivered from Absalom! Go immediately, or else he will quickly overtake us and bring disaster on us and kill the city's residents with the sword.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> The king's servants replied to the king, \"We will do whatever our lord the king decides.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> So the king and all the members of his royal court set out on foot, though the king left behind ten concubines to attend to the palace.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The king and all the people set out on foot, pausing at a spot some distance away. </VERS>\n\t\t\t<VERS vnumber=\"18\"> All his servants were leaving with him, along with all the Kerethites, all the Pelethites, and all the Gittites, some six hundred men who had come on foot from Gath. They were leaving with the king.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Then the king said to Ittai the Gittite, \"Why should you come with us? Go back and stay with the new king, for you are a foreigner and an exile from your own country.</VERS>\n\t\t\t<VERS vnumber=\"20\"> It seems like you arrived just yesterday. Today should I make you wander around by going with us? I go where I must go. But as for you, go back and take your men with you. May genuine loyal love protect you!\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> But Ittai replied to the king, \"As surely as the LORD lives and as my lord the king lives, wherever my lord the king is, whether dead or alive, there I will be as well!\" </VERS>\n\t\t\t<VERS vnumber=\"22\"> So David said to Ittai, \"Come along then.\" So Ittai the Gittite went along, accompanied by all his men and all the dependents who were with him.</VERS>\n\t\t\t<VERS vnumber=\"23\"> All the land was weeping loudly as all these people were leaving. As the king was crossing over the Kidron Valley, all the people were leaving on the road that leads to the desert. </VERS>\n\t\t\t<VERS vnumber=\"24\"> Zadok and all the Levites who were with him were carrying the ark of the covenant of God. When they positioned the ark of God, Abiathar offered sacrifices until all the people had finished leaving the city.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Then the king said to Zadok, \"Take the ark of God back to the city. If I find favor in the LORD's sight he will bring me back and enable me to see both it and his dwelling place again.</VERS>\n\t\t\t<VERS vnumber=\"26\"> However, if he should say, 'I do not take pleasure in you,' then he will deal with me in a way that he considers appropriate.\"</VERS>\n\t\t\t<VERS vnumber=\"27\"> The king said to Zadok the priest, \"Are you a seer? Go back to the city in peace! Your son Ahimaaz and Abiathar's son Jonathan may go with you and Abiathar.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Look, I will be waiting at the fords of the desert until word from you reaches me.\" </VERS>\n\t\t\t<VERS vnumber=\"29\"> So Zadok and Abiathar took the ark of God back to Jerusalem and remained there.</VERS>\n\t\t\t<VERS vnumber=\"30\"> As David was going up the Mount of Olives, he was weeping as he went; his head was covered and his feet were bare. All the people who were with him also had their heads covered and were weeping as they went up.</VERS>\n\t\t\t<VERS vnumber=\"31\"> Now David had been told, \"Ahithophel has sided with the conspirators who are with Absalom. So David prayed, \"Make the advice of Ahithophel foolish, O LORD!\"</VERS>\n\t\t\t<VERS vnumber=\"32\"> When David reached the summit, where he used to worship God, Hushai the Arkite met him with his clothes torn and dirt on his head.</VERS>\n\t\t\t<VERS vnumber=\"33\"> David said to him, \"If you leave with me you will be a burden to me. </VERS>\n\t\t\t<VERS vnumber=\"34\"> But you will be able to counter the advice of Ahithophel if you go back to the city and say to Absalom, 'I will be your servant, O king! Previously I was your father's servant, and now I will be your servant.'</VERS>\n\t\t\t<VERS vnumber=\"35\"> Zadok and Abiathar the priests will be there with you. Everything you hear in the king's palace you must tell Zadok and Abiathar the priests. </VERS>\n\t\t\t<VERS vnumber=\"36\"> Furthermore, their two sons are there with them, Zadok's son Ahimaaz and Abiathar's son Jonathan. You must send them to me with any information you hear.\"</VERS>\n\t\t\t<VERS vnumber=\"37\"> So David's friend Hushai arrived in the city, just as Absalom was entering Jerusalem.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"16\">\n\t\t\t<VERS vnumber=\"1\"> When David had gone a short way beyond the summit, Ziba the servant of Mephibosheth was there to meet him. He had a couple of donkeys that were saddled, and on them were two hundred loaves of bread, a hundred raisin cakes, a hundred baskets of summer fruit, and a container of wine.</VERS>\n\t\t\t<VERS vnumber=\"2\"> The king asked Ziba, \"Why did you bring these things?\" Ziba replied, \"The donkeys are for the king's family to ride on, the loaves of bread and the summer fruit are for the attendants to eat, and the wine is for those who get exhausted in the desert.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> The king asked, \"Where is your master's grandson?\" Ziba replied to the king, \"He remains in Jerusalem, for he said, 'Today the house of Israel will give back to me my grandfather's kingdom.'\" </VERS>\n\t\t\t<VERS vnumber=\"4\"> The king said to Ziba, \"Everything that was Mephibosheth's now belongs to you.\" Ziba replied, \"I bow before you. May I find favor in your sight, my lord the king.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> Then King David reached Bahurim. There a man from Saul's extended family named Shimei son of Gera came out, yelling curses as he approached.</VERS>\n\t\t\t<VERS vnumber=\"6\"> He threw stones at David and all of King David's servants, as well as all the people and the soldiers who were on his right and on his left.</VERS>\n\t\t\t<VERS vnumber=\"7\"> As he yelled curses, Shimei said, \"Leave! Leave! You man of bloodshed, you wicked man!</VERS>\n\t\t\t<VERS vnumber=\"8\"> The LORD has punished you for all the spilled blood of the house of Saul, in whose place you rule. Now the LORD has given the kingdom into the hand of your son Absalom. Disaster has overtaken you, for you are a man of bloodshed!\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> Then Abishai son of Zeruiah said to the king, \"Why should this dead dog curse my lord the king? Let me go over and cut off his head!\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> But the king said, \"What do we have in common, you sons of Zeruiah? If he curses because the LORD has said to him, 'Curse David!', who can say to him, 'Why have you done this?'\" </VERS>\n\t\t\t<VERS vnumber=\"11\"> Then David said to Abishai and to all his servants, \"My own son, my very own flesh and blood, is trying to take my life. So also now this Benjaminite! Leave him alone so that he can curse, for the LORD has spoken to him. </VERS>\n\t\t\t<VERS vnumber=\"12\"> Perhaps the LORD will notice my affliction and this day grant me good in place of his curse.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> So David and his men went on their way. But Shimei kept going along the side of the hill opposite him, yelling curses as he threw stones and dirt at them.</VERS>\n\t\t\t<VERS vnumber=\"14\"> The king and all the people who were with him arrived exhausted at their destination, where David refreshed himself.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Now when Absalom and all the men of Israel arrived in Jerusalem, Ahithophel was with him. </VERS>\n\t\t\t<VERS vnumber=\"16\"> When David's friend Hushai the Arkite came to Absalom, Hushai said to him, \"Long live the king! Long live the king!\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> Absalom said to Hushai, \"Do you call this loyalty to your friend? Why didn't you go with your friend?\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> Hushai replied to Absalom, \"No, I will be loyal to the one whom the LORD, these people, and all the men of Israel have chosen.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Moreover, whom should I serve? Should it not be his son? Just as I served your father, so I will serve you.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> Then Absalom said to Ahithophel, \"Give us your advice. What should we do?\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> Ahithophel replied to Absalom, \"Have sex with your father's concubines whom he left to care for the palace. All Israel will hear that you have made yourself repulsive to your father. Then your followers will be motivated to support you.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> So they pitched a tent for Absalom on the roof, and Absalom had sex with his father's concubines in the sight of all Israel.</VERS>\n\t\t\t<VERS vnumber=\"23\"> In those days Ahithophel's advice was considered as valuable as a prophetic revelation. Both David and Absalom highly regarded the advice of Ahithophel.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"17\">\n\t\t\t<VERS vnumber=\"1\"> Ahithophel said to Absalom, \"Let me pick out twelve thousand men. Then I will go and pursue David this very night.</VERS>\n\t\t\t<VERS vnumber=\"2\"> When I catch up with him he will be exhausted and worn out. I will rout him, and the entire army that is with him will flee. I will kill only the king</VERS>\n\t\t\t<VERS vnumber=\"3\"> and will bring the entire army back to you. In exchange for the life of the man you are seeking, you will get back everyone. The entire army will return unharmed.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> This seemed like a good idea to Absalom and to all the leaders of Israel. </VERS>\n\t\t\t<VERS vnumber=\"5\"> But Absalom said, \"Call for Hushai the Arkite, and let's hear what he has to say.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> So Hushai came to Absalom. Absalom said to him, \"Here is what Ahithophel has advised. Should we follow his advice? If not, what would you recommend?\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> Hushai replied to Absalom, \"Ahithophel's advice is not sound this time.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> Hushai went on to say, \"You know your father and his men, they are soldiers and are as dangerous as a bear out in the wild that has been robbed of her cubs. Your father is an experienced soldier; he will not stay overnight with the army.</VERS>\n\t\t\t<VERS vnumber=\"9\"> At this very moment he is hiding out in one of the caves or in some other similar place. If it should turn out that he attacks our troops first, whoever hears about it will say, 'Absalom's army has been slaughtered!' </VERS>\n\t\t\t<VERS vnumber=\"10\"> If that happens even the bravest soldier, one who is lion-hearted, will virtually melt away. For all Israel knows that your father is a warrior and that those who are with him are brave.</VERS>\n\t\t\t<VERS vnumber=\"11\"> My advice therefore is this: Let all Israel from Dan to Beer Sheba, in number like the sand by the sea!, be mustered to you, and you lead them personally into battle.</VERS>\n\t\t\t<VERS vnumber=\"12\"> We will come against him wherever he happens to be found. We will descend on him like the dew falls on the ground. Neither he nor any of the men who are with him will be spared alive, not one of them!</VERS>\n\t\t\t<VERS vnumber=\"13\"> If he regroups in a city, all Israel will take up ropes to that city and drag it down to the valley, so that not a single pebble will be left there!\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> Then Absalom and all the men of Israel said, \"The advice of Hushai the Arkite sounds better than the advice of Ahithophel.\" Now the LORD had decided to frustrate the sound advice of Ahithophel, so that the LORD could bring disaster on Absalom.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Then Hushai reported to Zadok and Abiathar the priests, \"Here is what Ahithophel has advised Absalom and the leaders of Israel to do, and here is what I have advised. </VERS>\n\t\t\t<VERS vnumber=\"16\"> Now send word quickly to David and warn him, \"Don't spend the night at the fords of the desert tonight. Instead, be sure you cross over, or else the king and everyone who is with him may be overwhelmed.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> Now Jonathan and Ahimaaz were staying in En Rogel. A female servant would go and inform them, and they would then go and inform King David. It was not advisable for them to be seen going into the city.</VERS>\n\t\t\t<VERS vnumber=\"18\"> But a young man saw them on one occasion and informed Absalom. So the two of them quickly departed and went to the house of a man in Bahurim. There was a well in his courtyard, and they got down in it.</VERS>\n\t\t\t<VERS vnumber=\"19\"> His wife then took the covering and spread it over the top of the well and scattered some grain over it. No one was aware of what she had done.</VERS>\n\t\t\t<VERS vnumber=\"20\"> When the servants of Absalom approached the woman at her home, they asked, \"Where are Ahimaaz and Jonathan?\" The woman replied to them, \"They crossed over the stream.\" Absalom's men searched but did not find them, so they returned to Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"21\"> After the men had left, Ahimaaz and Jonathan climbed out of the well. Then they left and informed King David. They advised David, \"Get up and cross the stream quickly, for Ahithophel has devised a plan to catch you.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> So David and all the people who were with him got up and crossed the Jordan River. By dawn there was not one person left who had not crossed the Jordan.</VERS>\n\t\t\t<VERS vnumber=\"23\"> When Ahithophel realized that his advice had not been followed, he saddled his donkey and returned to his house in his hometown. After setting his household in order, he hanged himself. So he died and was buried in the grave of his father.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Meanwhile David had gone to Mahanaim, while Absalom and all the men of Israel had crossed the Jordan River.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Absalom had made Amasa general in command of the army in place of Joab. (Now Amasa was the son of an Israelite man named Jether, who had married Abigail the daughter of Nahash and sister of Zeruiah, Joab's mother.) </VERS>\n\t\t\t<VERS vnumber=\"26\"> The army of Israel and Absalom camped in the land of Gilead.</VERS>\n\t\t\t<VERS vnumber=\"27\"> When David came to Mahanaim, Shobi the son of Nahash from Rabbah of the Ammonites, Makir the son of Ammiel from Lo Debar, and Barzillai the Gileadite from Rogelim</VERS>\n\t\t\t<VERS vnumber=\"28\"> brought bedding, basins, and pottery utensils. They also brought food for David and all who were with him, including wheat, barley, flour, roasted grain, beans, lentils,</VERS>\n\t\t\t<VERS vnumber=\"29\"> honey, curds, flocks, and cheese. For they said, \"The people are no doubt hungry, tired, and thirsty there in the desert.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"18\">\n\t\t\t<VERS vnumber=\"1\"> David assembled the army that was with him. He appointed leaders of thousands and leaders of hundreds.</VERS>\n\t\t\t<VERS vnumber=\"2\"> David then sent out the army, a third under the leadership of Joab, a third under the leadership of Joab's brother Abishai son of Zeruiah, and a third under the leadership of Ittai the Gittite. The king said to the troops, \"I too will indeed march out with you.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> But the soldiers replied, \"You should not do this! For if we should have to make a rapid retreat, they won't be too concerned about us. Even if half of us should die, they won't be too concerned about us. But you are like ten thousand of us! So it is better if you remain in the city for support.\" </VERS>\n\t\t\t<VERS vnumber=\"4\"> Then the king said to them, \"I will do whatever seems best to you.\" So the king stayed beside the city gate, while all the army marched out by hundreds and by thousands.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The king gave this order to Joab, Abishai, and Ittai: \"For my sake deal gently with the young man Absalom.\" Now the entire army was listening when the king gave all the leaders this order concerning Absalom.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Then the army marched out to the field to fight against Israel. The battle took place in the forest of Ephraim.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The army of Israel was defeated there by David's men. The slaughter there was great that day, 20,000 soldiers were killed.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The battle there was spread out over the whole area, and the forest consumed more soldiers than the sword devoured that day.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Then Absalom happened to come across David's men. Now as Absalom was riding on his mule, it went under the branches of a large oak tree. His head got caught in the oak and he was suspended in midair, while the mule he had been riding kept going.</VERS>\n\t\t\t<VERS vnumber=\"10\"> When one of the men saw this, he reported it to Joab saying, \"I saw Absalom hanging in an oak tree. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Joab replied to the man who was telling him this, \"What! You saw this? Why didn't you strike him down right on the spot? I would have given you ten pieces of silver and a commemorative belt!\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> The man replied to Joab, \"Even if I were receiving a thousand pieces of silver, I would not strike the king's son! In our very presence the king gave this order to you and Abishai and Ittai, 'Protect the young man Absalom for my sake.'</VERS>\n\t\t\t<VERS vnumber=\"13\"> If I had acted at risk of my own life, and nothing is hidden from the king!, you would have abandoned me.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> Joab replied, \"I will not wait around like this for you!\" He took three spears in his hand and thrust them into the middle of Absalom while he was still alive in the middle of the oak tree.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Then ten soldiers who were Joab's armor bearers struck Absalom and finished him off.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Then Joab blew the trumpet and the army turned back from chasing Israel, for Joab had called for the army to halt. </VERS>\n\t\t\t<VERS vnumber=\"17\"> They took Absalom, threw him into a large pit in the forest, and stacked a huge pile of stones over him. In the meantime all the Israelite soldiers fled to their homes.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Prior to this Absalom had set up a monument and dedicated it to himself in the King's Valley, reasoning \"I have no son who will carry on my name.\" He named the monument after himself, and to this day it is known as Absalom's Memorial.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Then Ahimaaz the son of Zadok said, \"Let me run and give the king the good news that the LORD has vindicated him before his enemies.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> But Joab said to him, \"You will not be a bearer of good news today. You will bear good news some other day, but not today, for the king's son is dead.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> Then Joab said to the Cushite, \"Go and tell the king what you have seen.\" After bowing to Joab, the Cushite ran off.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Ahimaaz the son of Zadok again spoke to Joab, \"Whatever happens, let me go after the Cushite.\" But Joab said, \"Why is it that you want to go, my son? You have no good news that will bring you a reward.\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> But he said, \"Whatever happens, I want to go!\" So Joab said to him, \"Then go!\" So Ahimaaz ran by the way of the Jordan plain, and he passed the Cushite.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Now David was sitting between the inner and outer gates, and the watchman went up to the roof over the gate at the wall. When he looked, he saw a man running by himself. </VERS>\n\t\t\t<VERS vnumber=\"25\"> So the watchman called out and informed the king. The king said, \"If he is by himself, he brings good news.\" The runner came ever closer.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Then the watchman saw another man running. The watchman called out to the gatekeeper, \"There is another man running by himself.\" The king said, \"This one also is bringing good news.\"</VERS>\n\t\t\t<VERS vnumber=\"27\"> The watchman said, \"It appears to me that the first runner is Ahimaaz son of Zadok.\" The king said, \"He is a good man, and he comes with good news.\"</VERS>\n\t\t\t<VERS vnumber=\"28\"> Then Ahimaaz called out and said to the king, \"Greetings!\" He bowed down before the king with his face toward the ground and said, \"May the LORD your God be praised because he has defeated the men who opposed my lord the king!\"</VERS>\n\t\t\t<VERS vnumber=\"29\"> The king replied, \"How is the young man Absalom?\" Ahimaaz replied, \"I saw a great deal of confusion when Joab was sending the king's servant and me, your servant, but I don't know what it was all about.\"</VERS>\n\t\t\t<VERS vnumber=\"30\"> The king said, \"Turn aside and take your place here.\" So he turned aside and waited.</VERS>\n\t\t\t<VERS vnumber=\"31\"> Then the Cushite arrived and said, \"May my lord the king now receive the good news! The LORD has vindicated you today and delivered you from the hand of all who have rebelled against you!\"</VERS>\n\t\t\t<VERS vnumber=\"32\"> The king asked the Cushite, \"How is the young man Absalom?\" The Cushite replied, \"May the enemies of my lord the king and all who have plotted against you be like that young man!\"</VERS>\n\t\t\t<VERS vnumber=\"33\">  The king then became very upset. He went up to the upper room over the gate and wept. As he went he said, \"My son, Absalom! My son, my son, Absalom! If only I could have died in your place! Absalom, my son, my son!\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"19\">\n\t\t\t<VERS vnumber=\"1\">  Joab was told, \"The king is weeping and mourning over Absalom.\"</VERS>\n\t\t\t<VERS vnumber=\"2\"> So the victory of that day was turned to mourning as far as all the people were concerned. For the people heard on that day, \"The king is grieved over his son.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> That day the people stole away to go to the city the way people who are embarrassed steal away in fleeing from battle.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The king covered his face and cried out loudly, \"My son, Absalom! Absalom, my son, my son!\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> So Joab visited the king at his home. He said, \"Today you have embarrassed all your servants who have saved your life this day, as well as the lives of your sons, your daughters, your wives, and your concubines. </VERS>\n\t\t\t<VERS vnumber=\"6\"> You seem to love your enemies and hate your friends! For you have as much as declared today that leaders and servants don't matter to you. I realize now that if Absalom were alive and all of us were dead today, it would be all right with you.</VERS>\n\t\t\t<VERS vnumber=\"7\"> So get up now and go out and give some encouragement to your servants. For I swear by the LORD that if you don't go out there, not a single man will stay here with you tonight! This disaster will be worse for you than any disaster that has overtaken you from your youth right to the present time!\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> So the king got up and sat at the city gate. When all the people were informed that the king was sitting at the city gate, they all came before him. But the Israelite soldiers had all fled to their own homes.</VERS>\n\t\t\t<VERS vnumber=\"9\"> All the people throughout all the tribes of Israel were arguing among themselves saying, \"The king delivered us from the hand of our enemies. He rescued us from the hand of the Philistines, but now he has fled from the land because of Absalom.</VERS>\n\t\t\t<VERS vnumber=\"10\"> But Absalom, whom we anointed as our king, has died in battle. So now why do you hesitate to bring the king back?\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> Then King David sent a message to Zadok and Abiathar the priests saying, \"Tell the elders of Judah, 'Why should you delay any further in bringing the king back to his palace, when everything Israel is saying has come to the king's attention.</VERS>\n\t\t\t<VERS vnumber=\"12\"> You are my brothers, my very own flesh and blood! Why should you delay any further in bringing the king back?'</VERS>\n\t\t\t<VERS vnumber=\"13\"> Say to Amasa, 'Are you not my flesh and blood? God will punish me severely, if from this time on you are not the commander of my army in place of Joab!'\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> He won over the hearts of all the men of Judah as though they were one man. Then they sent word to the king saying, \"Return, you and all your servants as well.\" </VERS>\n\t\t\t<VERS vnumber=\"15\"> So the king returned and came to the Jordan River. Now the people of Judah had come to Gilgal to meet the king and to help him cross the Jordan.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Shimei son of Gera the Benjaminite from Bahurim came down quickly with the men of Judah to meet King David.</VERS>\n\t\t\t<VERS vnumber=\"17\"> There were a thousand men from Benjamin with him, along with Ziba the servant of Saul's household, and with him his fifteen sons and twenty servants. They hurriedly crossed the Jordan within sight of the king. </VERS>\n\t\t\t<VERS vnumber=\"18\"> They crossed at the ford in order to help the king's household cross and to do whatever he thought appropriate. Now after he had crossed the Jordan, Shimei son of Gera threw himself down before the king.</VERS>\n\t\t\t<VERS vnumber=\"19\"> He said to the king, \"Don't think badly of me, my lord, and don't recall the sin of your servant on the day when you, my lord the king, left Jerusalem! Please don't call it to mind! </VERS>\n\t\t\t<VERS vnumber=\"20\"> For I, your servant, know that I sinned, and I have come today as the first of all the house of Joseph to come down to meet my lord the king.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> Abishai son of Zeruiah replied, \"For this should not Shimei be put to death? After all, he cursed the LORD's anointed!\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> But David said, \"What do we have in common, you sons of Zeruiah? You are like my enemy today! Should anyone be put to death in Israel today? Don't you realize that today I am king over Israel?\" </VERS>\n\t\t\t<VERS vnumber=\"23\"> The king said to Shimei, \"You won't die.\" The king vowed an oath concerning this.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Now Mephibosheth, Saul's grandson, came down to meet the king. From the day the king had left until the day he safely returned, Mephibosheth had not cared for his feet nor trimmed his mustache nor washed his clothes.</VERS>\n\t\t\t<VERS vnumber=\"25\"> When he came from Jerusalem to meet the king, the king asked him, \"Why didn't you go with me, Mephibosheth?\"</VERS>\n\t\t\t<VERS vnumber=\"26\"> He replied, \"My lord the king, my servant deceived me! I said, 'Let me get my donkey saddled so that I can ride on it and go with the king,' for I am lame. </VERS>\n\t\t\t<VERS vnumber=\"27\"> But my servant has slandered me to my lord the king. But my lord the king is like an angel of God. Do whatever seems appropriate to you.</VERS>\n\t\t\t<VERS vnumber=\"28\"> After all, there was no one in the entire house of my grandfather who did not deserve death from my lord the king. But instead you allowed me to eat at your own table! What further claim do I have to ask the king for anything?\"</VERS>\n\t\t\t<VERS vnumber=\"29\"> Then the king replied to him, \"Why should you continue speaking like this? You and Ziba will inherit the field together.\"</VERS>\n\t\t\t<VERS vnumber=\"30\"> Mephibosheth said to the king, \"Let him have the whole thing! My lord the king has returned safely to his house!\"</VERS>\n\t\t\t<VERS vnumber=\"31\"> Now when Barzillai the Gileadite had come down from Rogelim, he crossed the Jordan with the king so he could send him on his way from there.</VERS>\n\t\t\t<VERS vnumber=\"32\"> But Barzillai was very old, eighty years old, in fact, and he had taken care of the king when he stayed in Mahanaim, for he was a very rich man.</VERS>\n\t\t\t<VERS vnumber=\"33\"> So the king said to Barzillai, \"Cross over with me, and I will take care of you while you are with me in Jerusalem.\"</VERS>\n\t\t\t<VERS vnumber=\"34\"> Barzillai replied to the king, \"How many days do I have left to my life, that I should go up with the king to Jerusalem?</VERS>\n\t\t\t<VERS vnumber=\"35\"> I am presently eighty years old. Am I able to discern good and bad? Can I taste what I eat and drink? Am I still able to hear the voices of male and female singers? Why should I continue to be a burden to my lord the king? </VERS>\n\t\t\t<VERS vnumber=\"36\"> I will cross the Jordan with the king and go a short distance. Why should the king reward me in this way? </VERS>\n\t\t\t<VERS vnumber=\"37\"> Let me return so that I may die in my own city near the grave of my father and my mother. But look, here is your servant Kimham. Let him cross over with my lord the king. Do for him whatever seems appropriate to you.\"</VERS>\n\t\t\t<VERS vnumber=\"38\"> The king replied, \"Kimham will cross over with me, and I will do for him whatever I deem appropriate. And whatever you choose, I will do for you.\"</VERS>\n\t\t\t<VERS vnumber=\"39\"> So all the people crossed the Jordan, as did the king. After the king had kissed him and blessed him, Barzillai returned to his home.</VERS>\n\t\t\t<VERS vnumber=\"40\"> When the king crossed over to Gilgal, Kimham crossed over with him. Now all the soldiers of Judah along with half of the soldiers of Israel had helped the king cross over.</VERS>\n\t\t\t<VERS vnumber=\"41\"> Then all the men of Israel began coming to the king. They asked the king, \"Why did our brothers, the men of Judah, sneak the king away and help the king and his household cross the Jordan, and not only him but all of David's men as well?\"</VERS>\n\t\t\t<VERS vnumber=\"42\"> All the men of Judah replied to the men of Israel, \"Because the king is our close relative! Why are you so upset about this? Have we eaten at the king's expense? Or have we misappropriated anything for our own use?\" </VERS>\n\t\t\t<VERS vnumber=\"43\"> The men of Israel replied to the men of Judah, \"We have ten shares in the king, and we have a greater claim on David than you do! Why do you want to curse us? Weren't we the first to suggest bringing back our king?\" But the comments of the men of Judah were more severe than those of the men of Israel.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"20\">\n\t\t\t<VERS vnumber=\"1\"> Now a wicked man named Sheba son of Bicri, a Benjaminite, happened to be there. He blew the trumpet and said, \"We have no share in David; we have no inheritance in this son of Jesse! Every man go home, O Israel!\"</VERS>\n\t\t\t<VERS vnumber=\"2\"> So all the men of Israel deserted David and followed Sheba son of Bicri. But the men of Judah stuck by their king all the way from the Jordan River to Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Then David went to his palace in Jerusalem. The king took the ten concubines he had left to care for the palace and placed them under confinement. Though he provided for their needs, he did not have sexual relations with them. They remained in confinement until the day they died, living out the rest of their lives as widows.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Then the king said to Amasa, \"Call the men of Judah together for me in three days, and you be present here with them too.\" </VERS>\n\t\t\t<VERS vnumber=\"5\"> So Amasa went out to call Judah together. But in doing so he took longer than the time that the king had allotted him.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Then David said to Abishai, \"Now Sheba son of Bicri will cause greater disaster for us than Absalom did! Take your lord's servants and pursue him. Otherwise he will secure fortified cities for himself and get away from us.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> So Joab's men, accompanied by the Kerethites, the Pelethites, and all the warriors, left Jerusalem to pursue Sheba son of Bicri.</VERS>\n\t\t\t<VERS vnumber=\"8\"> When they were near the big rock that is in Gibeon, Amasa came to them. Now Joab was dressed in military attire and had a dagger in its sheath belted to his waist. When he advanced, it fell out.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Joab said to Amasa, \"How are you, my brother?\" With his right hand Joab took hold of Amasa's beard as if to greet him with a kiss.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Amasa did not protect himself from the knife in Joab's other hand, and Joab stabbed him in the abdomen, causing Amasa's intestines to spill out on the ground. There was no need to stab him again; the first blow was fatal. Then Joab and his brother Abishai pursued Sheba son of Bicri.</VERS>\n\t\t\t<VERS vnumber=\"11\"> One of Joab's soldiers who stood over Amasa said, \"Whoever is for Joab and whoever is for David, follow Joab!\" </VERS>\n\t\t\t<VERS vnumber=\"12\"> Amasa was squirming in his own blood in the middle of the path, and this man had noticed that all the soldiers stopped. Having noticed that everyone who came across Amasa stopped, the man pulled him away from the path and into the field and threw a garment over him. </VERS>\n\t\t\t<VERS vnumber=\"13\"> Once he had removed Amasa from the path, everyone followed Joab to pursue Sheba son of Bicri.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Sheba traveled through all the tribes of Israel to Abel of Beth Maacah and all the Berite region. When they had assembled, they too joined him. </VERS>\n\t\t\t<VERS vnumber=\"15\"> So Joab's men came and laid siege against him in Abel of Beth Maacah. They prepared a siege ramp outside the city which stood against its outer rampart. As all of Joab's soldiers were trying to break through the wall so that it would collapse, </VERS>\n\t\t\t<VERS vnumber=\"16\"> a wise woman called out from the city, \"Listen up! Listen up! Tell Joab, 'Come near so that I may speak to you.'\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> When he approached her, the woman asked, \"Are you Joab?\" He replied, \"I am.\" She said to him, \"Listen to the words of your servant.\" He said, \"Go ahead. I'm listening.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> She said, \"In the past they would always say, 'Let them inquire in Abel,' and that is how they settled things.</VERS>\n\t\t\t<VERS vnumber=\"19\"> I represent the peaceful and the faithful in Israel. You are attempting to destroy an important city in Israel. Why should you swallow up the LORD's inheritance?\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> Joab answered, \"Get serious! I don't want to swallow up or destroy anything! </VERS>\n\t\t\t<VERS vnumber=\"21\"> That's not the way things are. There is a man from the hill country of Ephraim named Sheba son of Bicri. He has rebelled against King David. Give me just this one man, and I will leave the city.\" The woman said to Joab, \"This very minute his head will be thrown over the wall to you!\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> Then the woman went to all the people with her wise advice and they cut off Sheba's head and threw it out to Joab. Joab blew the trumpet, and his men dispersed from the city, each going to his own home. Joab returned to the king in Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Now Joab was the general in command of all the army of Israel. Benaiah the son of Jehoida was over the Kerethites and the Perethites.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Adoniram was supervisor of the work crews. Jehoshaphat son of Ahilud was the secretary. </VERS>\n\t\t\t<VERS vnumber=\"25\"> Sheva was the scribe, and Zadok and Abiathar were the priests.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Ira the Jairite was David's personal priest.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"21\">\n\t\t\t<VERS vnumber=\"1\"> During David's reign there was a famine for three consecutive years. So David inquired of the LORD. The LORD said, \"It is because of Saul and his bloodstained family, because he murdered the Gibeonites.\"</VERS>\n\t\t\t<VERS vnumber=\"2\"> So the king summoned the Gibeonites and spoke with them. (Now the Gibeonites were not descendants of Israel; they were a remnant of the Amorites. The Israelites had made a promise to them, but Saul tried to kill them because of his zeal for the people of Israel and Judah.) </VERS>\n\t\t\t<VERS vnumber=\"3\"> David said to the Gibeonites, \"What can I do for you, and how can I make amends so that you will bless the LORD's inheritance?\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> The Gibeonites said to him, \"We have no claim to silver or gold from Saul or from his family, nor would we be justified in putting to death anyone in Israel.\" David asked, \"What then are you asking me to do for you?\" </VERS>\n\t\t\t<VERS vnumber=\"5\"> They replied to the king, \"As for this man who exterminated us and who schemed against us so that we were destroyed and left without status throughout all the borders of Israel,</VERS>\n\t\t\t<VERS vnumber=\"6\"> let seven of his male descendants be turned over to us, and we will execute them before the LORD in Gibeah of Saul, who was the LORD's chosen one.\" The king replied, \"I will turn them over.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> The king had mercy on Mephibosheth son of Jonathan, the son of Saul, in light of the LORD's oath that had been taken between David and Jonathan son of Saul.</VERS>\n\t\t\t<VERS vnumber=\"8\"> So the king took Armoni and Mephibosheth, the two sons of Aiah's daughter Rizpah whom she had born to Saul, and the five sons of Saul's daughter Merab whom she had born to Adriel the son of Barzillai the Meholathite. </VERS>\n\t\t\t<VERS vnumber=\"9\"> He turned them over to the Gibeonites, and they executed them on a hill before the LORD. The seven of them died together; they were put to death during harvest time, during the first days of the beginning of the barley harvest.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Rizpah the daughter of Aiah took sackcloth and spread it out for herself on a rock. From the beginning of the harvest until the rain fell on them, she did not allow the birds of the air to feed on them by day, nor the wild animals by night. </VERS>\n\t\t\t<VERS vnumber=\"11\"> When David was told what Rizpah daughter of Aiah, Saul's concubine, had done,</VERS>\n\t\t\t<VERS vnumber=\"12\"> he went and took the bones of Saul and of his son Jonathan from the leaders of Jabesh Gilead. (They had secretly taken them from the plaza at Beth Shan. It was there that Philistines publicly exposed their corpses after they had killed Saul at Gilboa.) </VERS>\n\t\t\t<VERS vnumber=\"13\"> David brought the bones of Saul and of Jonathan his son from there; they also gathered up the bones of those who had been executed.</VERS>\n\t\t\t<VERS vnumber=\"14\"> They buried the bones of Saul and his son Jonathan in the land of Benjamin at Zela in the grave of his father Kish. After they had done everything that the king had commanded, God responded to their prayers for the land.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Another battle was fought between the Philistines and Israel. So David went down with his soldiers and fought the Philistines. David became exhausted. </VERS>\n\t\t\t<VERS vnumber=\"16\"> Now Ishbi-Benob, one of the descendants of Rapha, had a spear that weighed three hundred bronze shekels, and he was armed with a new weapon. He had said that he would kill David. </VERS>\n\t\t\t<VERS vnumber=\"17\"> But Abishai the son of Zeruiah came to David's aid, striking the Philistine down and killing him. Then David's men took an oath saying, \"You will not go out to battle with us again! You must not extinguish the lamp of Israel!\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> Later there was another battle with the Philistines, this time in Gob. On that occasion Sibbekai the Hushathite killed Saph, who was one of the descendants of Rapha.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Yet another battle occurred with the Philistines in Gob. On that occasion Elhanan the son of Jair the Bethlehemite killed the brother of Goliath the Gittite, the shaft of whose spear was like a weaver's beam. </VERS>\n\t\t\t<VERS vnumber=\"20\"> Yet another battle occurred in Gath. On that occasion there was a large man who had six fingers on each hand and six toes on each foot, twenty-four in all! He too was a descendant of Rapha. </VERS>\n\t\t\t<VERS vnumber=\"21\"> When he taunted Israel, Jonathan, the son of David's brother Shimeah, killed him.</VERS>\n\t\t\t<VERS vnumber=\"22\"> These four were the descendants of Rapha who lived in Gath; they were killed by David and his soldiers.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"22\">\n\t\t\t<VERS vnumber=\"1\">  David sang to the LORD the words of this song when the LORD rescued him from the power of all his enemies, including Saul.</VERS>\n\t\t\t<VERS vnumber=\"2\"> He said: \"The LORD is my high ridge, my stronghold, my deliverer.</VERS>\n\t\t\t<VERS vnumber=\"3\"> My God is my rocky summit where I take shelter, my shield, the horn that saves me, my stronghold, my refuge, my savior. You save me from violence!</VERS>\n\t\t\t<VERS vnumber=\"4\"> I called to the LORD, who is worthy of praise, and I was delivered from my enemies.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The waves of death engulfed me; the currents of chaos overwhelmed me.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The ropes of Sheol tightened around me; the snares of death trapped me.</VERS>\n\t\t\t<VERS vnumber=\"7\"> In my distress I called to the LORD; I called to my God. From his heavenly temple he heard my voice; he listened to my cry for help.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The earth heaved and shook; the foundations of the sky trembled. They heaved because he was angry.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Smoke ascended from his nose; fire devoured as it came from his mouth; he hurled down fiery coals.</VERS>\n\t\t\t<VERS vnumber=\"10\"> He made the sky sink as he descended; a thick cloud was under his feet.</VERS>\n\t\t\t<VERS vnumber=\"11\"> He mounted a winged angel and flew; he glided on the wings of the wind.</VERS>\n\t\t\t<VERS vnumber=\"12\"> He shrouded himself in darkness, in thick rain clouds.</VERS>\n\t\t\t<VERS vnumber=\"13\"> From the brightness in front of him came coals of fire.</VERS>\n\t\t\t<VERS vnumber=\"14\"> The LORD thundered from the sky; the sovereign One shouted loudly.</VERS>\n\t\t\t<VERS vnumber=\"15\"> He shot arrows and scattered them, lightning and routed them.</VERS>\n\t\t\t<VERS vnumber=\"16\"> The depths of the sea were exposed; the inner regions of the world were uncovered by the LORD's battle cry, by the powerful breath from his nose.</VERS>\n\t\t\t<VERS vnumber=\"17\"> He reached down from above and grabbed me; he pulled me from the surging water.</VERS>\n\t\t\t<VERS vnumber=\"18\"> He rescued me from my strong enemy, from those who hate me, for they were too strong for me.</VERS>\n\t\t\t<VERS vnumber=\"19\"> They confronted me in my day of calamity, but the LORD helped me.</VERS>\n\t\t\t<VERS vnumber=\"20\"> He brought me out into a wide open place; he delivered me because he was pleased with me.</VERS>\n\t\t\t<VERS vnumber=\"21\"> The LORD repaid me for my godly deeds; he rewarded my blameless behavior.</VERS>\n\t\t\t<VERS vnumber=\"22\"> For I have obeyed the LORD's commands; I have not rebelled against my God.</VERS>\n\t\t\t<VERS vnumber=\"23\"> For I am aware of all his regulations, and I do not reject his rules.</VERS>\n\t\t\t<VERS vnumber=\"24\"> I was blameless before him; I kept myself from sinning.</VERS>\n\t\t\t<VERS vnumber=\"25\"> The LORD rewarded me for my godly deeds; he took notice of my blameless behavior.</VERS>\n\t\t\t<VERS vnumber=\"26\"> You prove to be loyal to one who is faithful; you prove to be trustworthy to one who is innocent.</VERS>\n\t\t\t<VERS vnumber=\"27\"> You prove to be reliable to one who is blameless, but you prove to be deceptive to one who is perverse.</VERS>\n\t\t\t<VERS vnumber=\"28\"> You deliver oppressed people, but you watch the proud and bring them down.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Indeed, you are my lamp, LORD. The LORD illumines the darkness around me.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Indeed, with your help I can charge against an army; by my God's power I can jump over a wall.</VERS>\n\t\t\t<VERS vnumber=\"31\"> The one true God acts in a faithful manner; the LORD's promise is reliable; he is a shield to all who take shelter in him.</VERS>\n\t\t\t<VERS vnumber=\"32\"> Indeed, who is God besides the LORD? Who is a protector besides our God?</VERS>\n\t\t\t<VERS vnumber=\"33\"> The one true God is my mighty refuge; he removes the obstacles in my way.</VERS>\n\t\t\t<VERS vnumber=\"34\"> He gives me the agility of a deer; he enables me to negotiate the rugged terrain.</VERS>\n\t\t\t<VERS vnumber=\"35\"> He trains my hands for battle; my arms can bend even the strongest bow.</VERS>\n\t\t\t<VERS vnumber=\"36\"> You give me your protective shield; your willingness to help enables me to prevail.</VERS>\n\t\t\t<VERS vnumber=\"37\"> You widen my path; my feet do not slip.</VERS>\n\t\t\t<VERS vnumber=\"38\"> I chase my enemies and destroy them; I do not turn back until I wipe them out.</VERS>\n\t\t\t<VERS vnumber=\"39\"> I wipe them out and beat them to death; they cannot get up; they fall at my feet.</VERS>\n\t\t\t<VERS vnumber=\"40\"> You give me strength for battle; you make my foes kneel before me.</VERS>\n\t\t\t<VERS vnumber=\"41\"> You make my enemies retreat; I destroy those who hate me.</VERS>\n\t\t\t<VERS vnumber=\"42\"> They cry out, but there is no one to help them; they cry out to the LORD, but he does not answer them.</VERS>\n\t\t\t<VERS vnumber=\"43\"> I grind them as fine as the dust of the ground; I crush them and stomp on them like clay in the streets.</VERS>\n\t\t\t<VERS vnumber=\"44\"> You rescue me from a hostile army; you preserve me as a leader of nations; people over whom I had no authority are now my subjects.</VERS>\n\t\t\t<VERS vnumber=\"45\"> Foreigners are powerless before me; when they hear of my exploits, they submit to me.</VERS>\n\t\t\t<VERS vnumber=\"46\"> Foreigners lose their courage; they shake with fear as they leave their strongholds.</VERS>\n\t\t\t<VERS vnumber=\"47\"> The LORD is alive! My protector is praiseworthy! The God who delivers me is exalted as king!</VERS>\n\t\t\t<VERS vnumber=\"48\"> The one true God completely vindicates me; he makes nations submit to me.</VERS>\n\t\t\t<VERS vnumber=\"49\"> He delivers me from my enemies; you snatch me away from those who attack me; you rescue me from violent men.</VERS>\n\t\t\t<VERS vnumber=\"50\"> So I will give you thanks, O LORD, before the nations! I will sing praises to you.</VERS>\n\t\t\t<VERS vnumber=\"51\"> He gives his chosen king magnificent victories; he is faithful to his chosen ruler, to David and to his descendants forever!\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"23\">\n\t\t\t<VERS vnumber=\"1\"> These are the final words of David: \"The oracle of David son of Jesse, the oracle of the man raised up as the ruler chosen by the God of Jacob, Israel's beloved singer of songs:</VERS>\n\t\t\t<VERS vnumber=\"2\"> The LORD's spirit spoke through me; his word was on my tongue.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The God of Israel spoke, the protector of Israel spoke to me. The one who rules fairly among men, the one who rules in the fear of God,</VERS>\n\t\t\t<VERS vnumber=\"4\"> is like the light of morning when the sun comes up, a morning in which there are no clouds. He is like the brightness after rain that produces grass from the earth.</VERS>\n\t\t\t<VERS vnumber=\"5\"> My dynasty is approved by God, for he has made a perpetual covenant with me, arranged in all its particulars and secured. He always delivers me, and brings all I desire to fruition.</VERS>\n\t\t\t<VERS vnumber=\"6\"> But evil people are like thorns, all of them are tossed away, for they cannot be held in the hand.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The one who touches them must use an iron instrument or the wooden shaft of a spear. They are completely burned up right where they lie!\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> These are the names of David's warriors: Josheb-Basshebeth, a Tahkemonite, was head of the officers. He killed eight hundred men with his spear in one battle.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Next in command was Eleazar son of Dodo, the son of Ahohi. He was one of the three warriors who were with David when they defied the Philistines who were assembled there for battle. When the men of Israel retreated,</VERS>\n\t\t\t<VERS vnumber=\"10\"> he stood his ground and fought the Philistines until his hand grew so tired that it seemed stuck to his sword. The LORD gave a great victory on that day. When the army returned to him, the only thing left to do was to plunder the corpses.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Next in command was Shammah son of Agee the Hararite. When the Philistines assembled at Lehi, where there happened to be an area of a field that was full of lentils, the army retreated before the Philistines. </VERS>\n\t\t\t<VERS vnumber=\"12\"> But he made a stand in the middle of that area. He defended it and defeated the Philistines; the LORD gave them a great victory.</VERS>\n\t\t\t<VERS vnumber=\"13\"> At the time of the harvest three of the thirty leaders went down to David at the cave of Adullam. A band of Philistines was camped in the valley of Rephaim. </VERS>\n\t\t\t<VERS vnumber=\"14\"> David was in the stronghold at the time, while a Philistine garrison was in Bethlehem.</VERS>\n\t\t\t<VERS vnumber=\"15\"> David was thirsty and said, \"How I wish someone would give me some water to drink from the cistern in Bethlehem near the gate!\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> So the three elite warriors broke through the Philistine forces and drew some water from the cistern in Bethlehem near the gate. They carried it back to David, but he refused to drink it. He poured it out as a drink offering to the LORD</VERS>\n\t\t\t<VERS vnumber=\"17\"> and said, \"O LORD, I will not do this! It is equivalent to the blood of the men who risked their lives by going.\" So he refused to drink it. Such were the exploits of the three elite warriors.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Abishai son of Zeruiah, the brother of Joab, was head of the three. He killed three hundred men with his spear and gained fame among the three.</VERS>\n\t\t\t<VERS vnumber=\"19\"> From the three he was given honor and he became their officer, even though he was not one of the three.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Benaiah son of Jehoida was a brave warrior from Kabzeel who performed great exploits. He struck down the two sons of Ariel of Moab. He also went down and killed a lion in a cistern on a snowy day. </VERS>\n\t\t\t<VERS vnumber=\"21\"> He also killed an impressive-looking Egyptian. The Egyptian wielded a spear, while Benaiah attacked him with a club. He grabbed the spear out of the Egyptian's hand and killed him with his own spear. </VERS>\n\t\t\t<VERS vnumber=\"22\"> Such were the exploits of Benaiah son of Jehoida, who gained fame among the three elite warriors.</VERS>\n\t\t\t<VERS vnumber=\"23\"> He received honor from the thirty warriors, though he was not one of the three elite warriors. David put him in charge of his bodyguard.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Included with the thirty were the following: Asahel the brother of Joab, Elhanan son of Dodo from Bethlehem,</VERS>\n\t\t\t<VERS vnumber=\"25\"> Shammah the Harodite, Elika the Harodite,</VERS>\n\t\t\t<VERS vnumber=\"26\"> Helez the Paltite, Ira son of Ikkesh from Tekoa,</VERS>\n\t\t\t<VERS vnumber=\"27\"> Abiezer the Anathothite, Mebunnai the Hushathite,</VERS>\n\t\t\t<VERS vnumber=\"28\"> Zalmon the Ahohite, Maharai the Netophathite,</VERS>\n\t\t\t<VERS vnumber=\"29\"> Heled son of Baanah the Netophathite, Ittai son of Ribai from Gibeah in Benjamin, </VERS>\n\t\t\t<VERS vnumber=\"30\"> Benaiah the Pirathonite, Hiddai from the wadis of Gaash,</VERS>\n\t\t\t<VERS vnumber=\"31\"> Abi-Albon the Arbathite, Azmaveth the Barhumite,</VERS>\n\t\t\t<VERS vnumber=\"32\"> Eliahba the Shaalbonite, the sons of Jashen, Jonathan</VERS>\n\t\t\t<VERS vnumber=\"33\"> son of Shammah the Hararite, Ahiam son of Sharar the Hararite, </VERS>\n\t\t\t<VERS vnumber=\"34\"> Eliphelet son of Ahasbai the Maacathite, Eliam son of Ahithophel the Gilonite,</VERS>\n\t\t\t<VERS vnumber=\"35\"> Hezrai the Carmelite, Paarai the Arbite, </VERS>\n\t\t\t<VERS vnumber=\"36\"> Igal son of Nathan from Zobah, Bani the Gadite,</VERS>\n\t\t\t<VERS vnumber=\"37\"> Zelek the Ammonite, Naharai the Beerothite (the armor-bearer of Joab son of Zeruiah), </VERS>\n\t\t\t<VERS vnumber=\"38\"> Ira the Ithrite, Gareb the Ithrite</VERS>\n\t\t\t<VERS vnumber=\"39\"> and Uriah the Hittite. Altogether there were thirty-seven.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"24\">\n\t\t\t<VERS vnumber=\"1\"> The LORD's anger again raged against Israel, and he incited David against them, saying, \"Go count Israel and Judah.\"</VERS>\n\t\t\t<VERS vnumber=\"2\"> The king told Joab, the general in command of his army, \"Go through all the tribes of Israel from Dan to Beer Sheba and muster the army, so I may know the size of the army.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> Joab replied to the king, \"May the LORD your God make the army a hundred times larger right before the eyes of my lord the king! But why does my master the king want to do this?\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> But the king's edict stood, despite the objections of Joab and the leaders of the army. So Joab and the leaders of the army left the king's presence in order to muster the Israelite army.</VERS>\n\t\t\t<VERS vnumber=\"5\"> They crossed the Jordan and camped at Aroer, on the south side of the city, at the wadi of Gad, near Jazer. </VERS>\n\t\t\t<VERS vnumber=\"6\"> Then they went on to Gilead and to the region of Tahtim Hodshi, coming to Dan Jaan and on around to Sidon.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Then they went to the fortress of Tyre and all the cities of the Hivites and the Canaanites. Then they went on to the Negev of Judah, to Beer Sheba. </VERS>\n\t\t\t<VERS vnumber=\"8\"> They went through all the land and after nine months and twenty days came back to Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Joab reported the number of warriors to the king. In Israel there were 800,000 sword-wielding warriors, and in Judah there were 500,000 soldiers.</VERS>\n\t\t\t<VERS vnumber=\"10\"> David felt guilty after he had numbered the army. David said to the LORD, \"I have sinned greatly by doing this! Now, O LORD, please remove the guilt of your servant, for I have acted very foolishly.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> When David got up the next morning, the LORD had already spoken to Gad the prophet, David's seer: </VERS>\n\t\t\t<VERS vnumber=\"12\"> \"Go, tell David, 'This is what the LORD says: I am offering you three forms of judgment. Pick one of them and I will carry it out against you.'\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> Gad went to David and told him, \"Shall seven years of famine come upon your land? Or shall you flee for three months from your enemy with him in hot pursuit? Or shall there be three days of plague in your land? Now decide what I should tell the one who sent me.\" </VERS>\n\t\t\t<VERS vnumber=\"14\"> David said to Gad, \"I am very upset! I prefer that we be attacked by the LORD, for his mercy is great; I do not want to be attacked by men!\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> So the LORD sent a plague through Israel from the morning until the completion of the appointed time. Seventy thousand men died from Dan to Beer Sheba.</VERS>\n\t\t\t<VERS vnumber=\"16\"> When the angel extended his hand to destroy Jerusalem, the LORD relented from his judgment. He told the angel who was killing the people, \"That's enough! Stop now!\" (Now the LORD's angel was near the threshing floor of Araunah the Jebusite.)</VERS>\n\t\t\t<VERS vnumber=\"17\"> When he saw the angel who was destroying the people, David said to the LORD, \"Look, it is I who have sinned and done this evil thing! As for these sheep, what have they done? Attack me and my family.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> So Gad went to David that day and told him, \"Go up and build an altar for the LORD on the threshing floor of Araunah the Jebusite.\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> So David went up as Gad instructed him to do, according to the LORD's instructions.</VERS>\n\t\t\t<VERS vnumber=\"20\"> When Araunah looked out and saw the king and his servants approaching him, he went out and bowed to the king with his face to the ground. </VERS>\n\t\t\t<VERS vnumber=\"21\"> Araunah said, \"Why has my lord the king come to his servant?\" David replied, \"To buy from you the threshing floor so I can build an altar for the LORD, so that the plague may be removed from the people.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> Araunah told David, \"My lord the king may take whatever he wishes and offer it. Look! Here are oxen for burnt offerings, and threshing sledges and harnesses for wood. </VERS>\n\t\t\t<VERS vnumber=\"23\"> I, the servant of my lord the king, give it all to the king!\" Araunah also told the king, \"May the LORD your God show you favor!\" </VERS>\n\t\t\t<VERS vnumber=\"24\"> But the king said to Araunah, \"No, I insist on buying it from you! I will not offer to the LORD my God burnt sacrifices that cost me nothing.\" So David bought the threshing floor and the oxen for fifty pieces of silver.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Then David built an altar for the LORD there and offered burnt sacrifices and peace offerings. And the LORD accepted prayers for the land, and the plague was removed from Israel.</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"11\" bname=\"1 Kings\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> King David was very old; even when they covered him with blankets, he could not get warm. </VERS>\n\t\t\t<VERS vnumber=\"2\"> His servants advised him, \"A young virgin must be found for our master, the king, to take care of the king's needs and serve as his nurse. She can also sleep with you and keep our master, the king, warm.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> So they looked through all Israel for a beautiful young woman and found Abishag, a Shunammite, and brought her to the king. </VERS>\n\t\t\t<VERS vnumber=\"4\"> The young woman was very beautiful; she became the king's nurse and served him, but the king did not have sexual relations with her.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Now Adonijah, son of David and Haggith, was promoting himself, boasting, \"I will be king!\" He managed to acquire chariots and horsemen, as well as fifty men to serve as his royal guard.</VERS>\n\t\t\t<VERS vnumber=\"6\"> (Now his father had never corrected him by saying, \"Why do you do such things?\" He was also very handsome and had been born right after Absalom.)</VERS>\n\t\t\t<VERS vnumber=\"7\"> He collaborated with Joab son of Zeruiah and with Abiathar the priest, and they supported him.</VERS>\n\t\t\t<VERS vnumber=\"8\"> But Zadok the priest, Benaiah son of Jehoiada, Nathan the prophet, Shimei, Rei, and David's elite warriors did not ally themselves with Adonijah.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Adonijah sacrificed sheep, cattle, and fattened steers at the Stone of Zoheleth near En Rogel. He invited all his brothers, the king's sons, as well as all the men of Judah, the king's servants.</VERS>\n\t\t\t<VERS vnumber=\"10\"> But he did not invite Nathan the prophet, Benaiah, the elite warriors, or his brother Solomon.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Nathan said to Bathsheba, Solomon's mother, \"Has it been reported to you that Haggith's son Adonijah has become king behind our master David's back?</VERS>\n\t\t\t<VERS vnumber=\"12\"> Now let me give you some advice as to how you can save your life and your son Solomon's life. </VERS>\n\t\t\t<VERS vnumber=\"13\"> Visit King David and say to him, 'My master, O king, did you not solemnly promise your servant, \"Surely your son Solomon will be king after me; he will sit on my throne\"? So why has Adonijah become king?'</VERS>\n\t\t\t<VERS vnumber=\"14\"> While you are still there speaking to the king, I will arrive and verify your report.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> So Bathsheba visited the king in his private quarters. (The king was very old, and Abishag the Shunammite was serving the king.) </VERS>\n\t\t\t<VERS vnumber=\"16\"> Bathsheba bowed down on the floor before the king. The king said, \"What do you want?\" </VERS>\n\t\t\t<VERS vnumber=\"17\"> She replied to him, \"My master, you swore an oath to your servant by the LORD your God, 'Solomon your son will be king after me and he will sit on my throne.'</VERS>\n\t\t\t<VERS vnumber=\"18\"> But now, look, Adonijah has become king! But you, my master the king, are not even aware of it!</VERS>\n\t\t\t<VERS vnumber=\"19\"> He has sacrificed many cattle, steers, and sheep and has invited all the king's sons, Abiathar the priest, and Joab, the commander of the army, but he has not invited your servant Solomon.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Now, my master, O king, all Israel is watching anxiously to see who is named to succeed my master the king on the throne.</VERS>\n\t\t\t<VERS vnumber=\"21\"> If a decision is not made, when my master the king is buried with his ancestors, my son Solomon and I will be considered state criminals.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> Just then, while she was still speaking to the king, Nathan the prophet arrived. </VERS>\n\t\t\t<VERS vnumber=\"23\"> The king was told, \"Nathan the prophet is here.\" Nathan entered and bowed before the king with his face to the floor.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Nathan said, \"My master, O king, did you announce, 'Adonijah will be king after me; he will sit on my throne'?</VERS>\n\t\t\t<VERS vnumber=\"25\"> For today he has gone down and sacrificed many cattle, steers, and sheep and has invited all the king's sons, the army commanders, and Abiathar the priest. At this moment they are having a feast in his presence, and they have declared, 'Long live King Adonijah!'</VERS>\n\t\t\t<VERS vnumber=\"26\"> But he did not invite me, your servant, or Zadok the priest, or Benaiah son of Jehoiada, or your servant Solomon.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Has my master the king authorized this without informing your servants who should succeed my master the king on his throne?\"</VERS>\n\t\t\t<VERS vnumber=\"28\"> King David responded, \"Summon Bathsheba!\" She came and stood before the king.</VERS>\n\t\t\t<VERS vnumber=\"29\"> The king swore an oath: \"As certainly as the LORD lives (he who has rescued me from every danger), </VERS>\n\t\t\t<VERS vnumber=\"30\"> I will keep today the oath I swore to you by the LORD God of Israel: 'Surely Solomon your son will be king after me; he will sit in my place on my throne.'\" </VERS>\n\t\t\t<VERS vnumber=\"31\"> Bathsheba bowed down to the king with her face to the floor and said, \"May my master, King David, live forever!\"</VERS>\n\t\t\t<VERS vnumber=\"32\"> King David said, \"Summon Zadok the priest, Nathan the prophet, and Benaiah son of Jehoiada.\" They came before the king, </VERS>\n\t\t\t<VERS vnumber=\"33\"> and he told them, \"Take your master's servants with you, put my son Solomon on my mule, and lead him down to Gihon.</VERS>\n\t\t\t<VERS vnumber=\"34\"> There Zadok the priest and Nathan the prophet will anoint him king over Israel; then blow the trumpet and declare, 'Long live King Solomon!' </VERS>\n\t\t\t<VERS vnumber=\"35\"> Then follow him up as he comes and sits on my throne. He will be king in my place; I have decreed that he will be ruler over Israel and Judah.\" </VERS>\n\t\t\t<VERS vnumber=\"36\"> Benaiah son of Jehoiada responded to the king: \"So be it! May the LORD God of my master the king confirm it!</VERS>\n\t\t\t<VERS vnumber=\"37\"> As the LORD is with my master the king, so may he be with Solomon, and may he make him an even greater king than my master King David!\"</VERS>\n\t\t\t<VERS vnumber=\"38\"> So Zadok the priest, Nathan the prophet, Benaiah son of Jehoiada, the Kerethites, and the Pelethites went down, put Solomon on King David's mule, and led him to Gihon. </VERS>\n\t\t\t<VERS vnumber=\"39\"> Zadok the priest took a horn filled with olive oil from the tent and poured it on Solomon; the trumpet was blown and all the people declared, \"Long live King Solomon!\" </VERS>\n\t\t\t<VERS vnumber=\"40\"> All the people followed him up, playing flutes and celebrating so loudly they made the ground shake.</VERS>\n\t\t\t<VERS vnumber=\"41\"> Now Adonijah and all his guests heard the commotion just as they had finished eating. When Joab heard the sound of the trumpet, he asked, \"Why is there such a noisy commotion in the city?\"</VERS>\n\t\t\t<VERS vnumber=\"42\"> As he was still speaking, Jonathan son of Abiathar the priest arrived. Adonijah said, \"Come in, for an important man like you must be bringing good news.\"</VERS>\n\t\t\t<VERS vnumber=\"43\"> Jonathan replied to Adonijah: \"No! Our master King David has made Solomon king. </VERS>\n\t\t\t<VERS vnumber=\"44\"> The king sent with him Zadok the priest, Nathan the prophet, Benaiah son of Jehoiada, the Kerethites, and the Pelethites and they put him on the king's mule.</VERS>\n\t\t\t<VERS vnumber=\"45\"> Then Zadok the priest and Nathan the prophet anointed him king in Gihon. They went up from there rejoicing, and the city is in an uproar. That is the sound you hear. </VERS>\n\t\t\t<VERS vnumber=\"46\"> Furthermore, Solomon has assumed the royal throne.</VERS>\n\t\t\t<VERS vnumber=\"47\"> The king's servants have even come to congratulate our master King David, saying, 'May your God make Solomon more famous than you and make him an even greater king than you!' Then the king leaned on the bed </VERS>\n\t\t\t<VERS vnumber=\"48\"> and said this: 'The LORD God of Israel is worthy of praise because today he has placed a successor on my throne and allowed me to see it.'\"</VERS>\n\t\t\t<VERS vnumber=\"49\"> All of Adonijah's guests panicked; they jumped up and rushed off their separate ways. </VERS>\n\t\t\t<VERS vnumber=\"50\"> Adonijah feared Solomon, so he got up and went and grabbed hold of the horns of the altar.</VERS>\n\t\t\t<VERS vnumber=\"51\"> Solomon was told, \"Look, Adonijah fears you; see, he has taken hold of the horns of the altar, saying, 'May King Solomon solemnly promise me today that he will not kill his servant with the sword.'\" </VERS>\n\t\t\t<VERS vnumber=\"52\"> Solomon said, \"If he is a loyal subject, not a hair of his head will be harmed, but if he is found to be a traitor, he will die.\" </VERS>\n\t\t\t<VERS vnumber=\"53\"> King Solomon sent men to bring him down from the altar. He came and bowed down to King Solomon, and Solomon told him, \"Go home.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> When David was close to death, he told Solomon his son: </VERS>\n\t\t\t<VERS vnumber=\"2\"> \"I am about to die. Be strong and become a man! </VERS>\n\t\t\t<VERS vnumber=\"3\"> Do the job the LORD your God has assigned you by following his instructions and obeying his rules, commandments, regulations, and laws as written in the law of Moses. Then you will succeed in all you do and seek to accomplish,</VERS>\n\t\t\t<VERS vnumber=\"4\"> and the LORD will fulfill his promise to me, 'If your descendants watch their step and live faithfully in my presence with all their heart and being, then,' he promised, 'you will not fail to have a successor on the throne of Israel.'</VERS>\n\t\t\t<VERS vnumber=\"5\"> \"You know what Joab son of Zeruiah did to me, how he murdered two commanders of the Israelite armies, Abner son of Ner and Amasa son of Jether. During peacetime he struck them down like he would in battle; when he shed their blood as if in battle, he stained his own belt and the sandals on his feet.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Do to him what you think is appropriate, but don't let him live long and die a peaceful death.</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"Treat fairly the sons of Barzillai of Gilead and provide for their needs, because they helped me when I had to flee from your brother Absalom.</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"Note well, you still have to contend with Shimei son of Gera, the Benjaminite from Bahurim, who tried to call down upon me a horrible judgment when I went to Mahanaim. He came down and met me at the Jordan, and I solemnly promised him by the LORD, 'I will not strike you down with the sword.' </VERS>\n\t\t\t<VERS vnumber=\"9\"> But now don't treat him as if he were innocent. You are a wise man and you know how to handle him; make sure he has a bloody death.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> Then David passed away and was buried in the city of David.</VERS>\n\t\t\t<VERS vnumber=\"11\"> David reigned over Israel forty years; he reigned in Hebron seven years, and in Jerusalem thirty-three years.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Solomon sat on his father David's throne, and his royal authority was firmly solidified.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Haggith's son Adonijah visited Bathsheba, Solomon's mother. She asked, \"Do you come in peace?\" He answered, \"Yes.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> He added, \"I have something to say to you.\" She replied, \"Speak.\" </VERS>\n\t\t\t<VERS vnumber=\"15\"> He said, \"You know that the kingdom was mine and all Israel considered me king. But then the kingdom was given to my brother, for the LORD decided it should be his.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Now I'd like to ask you for just one thing. Please don't refuse me.\" She said, \"Go ahead and ask.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> He said, \"Please ask King Solomon if he would give me Abishag the Shunammite as a wife, for he won't refuse you.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> Bathsheba replied, \"That's fine, I'll speak to the king on your behalf.\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> So Bathsheba visited King Solomon to speak to him on Adonijah's behalf. The king got up to greet her, bowed to her, and then sat on his throne. He ordered a throne to be brought for the king's mother, and she sat at his right hand. </VERS>\n\t\t\t<VERS vnumber=\"20\"> She said, \"I would like to ask you for just one small favor. Please don't refuse me.\" He said, \"Go ahead and ask, my mother, for I would not refuse you.\" </VERS>\n\t\t\t<VERS vnumber=\"21\"> She said, \"Allow Abishag the Shunammite to be given to your brother Adonijah as a wife.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> King Solomon answered his mother, \"Why just request Abishag the Shunammite for him? Since he is my older brother, you should also request the kingdom for him, for Abiathar the priest, and for Joab son of Zeruiah!\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> King Solomon then swore an oath by the LORD, \"May God judge me severely, if Adonijah does not pay for this request with his life!</VERS>\n\t\t\t<VERS vnumber=\"24\"> Now, as certainly as the LORD lives (he who made me secure, allowed me to sit on my father David's throne, and established a dynasty for me as he promised), Adonijah will be executed today!\" </VERS>\n\t\t\t<VERS vnumber=\"25\"> King Solomon then sent Benaiah son of Jehoiada, and he killed Adonijah.</VERS>\n\t\t\t<VERS vnumber=\"26\"> The king then told Abiathar the priest, \"Go back to your property in Anathoth. You deserve to die, but today I will not kill you because you did carry the ark of the sovereign LORD before my father David and you suffered with my father through all his difficult times.\"</VERS>\n\t\t\t<VERS vnumber=\"27\"> Solomon dismissed Abiathar from his position as priest of the LORD, fulfilling the decree of judgment the LORD made in Shiloh against the family of Eli.</VERS>\n\t\t\t<VERS vnumber=\"28\"> When the news reached Joab (for Joab had supported Adonijah, although he had not supported Absalom), he ran to the tent of the LORD and grabbed hold of the horns of the altar.</VERS>\n\t\t\t<VERS vnumber=\"29\"> When King Solomon heard that Joab had run to the tent of the LORD and was right there beside the altar, he ordered Benaiah son of Jehoiada, \"Go, strike him down.\" </VERS>\n\t\t\t<VERS vnumber=\"30\"> When Benaiah arrived at the tent of the LORD, he said to him, \"The king says, 'Come out!'\" But he replied, \"No, I will die here!\" So Benaiah sent word to the king and reported Joab's reply.</VERS>\n\t\t\t<VERS vnumber=\"31\"> The king told him, \"Do as he said! Strike him down and bury him. Take away from me and from my father's family the guilt of Joab's murderous, bloody deeds.</VERS>\n\t\t\t<VERS vnumber=\"32\"> May the LORD punish him for the blood he shed; behind my father David's back he struck down and murdered with the sword two men who were more innocent and morally upright than he, Abner son of Ner, commander of Israel's army, and Amasa son of Jether, commander of Judah's army.</VERS>\n\t\t\t<VERS vnumber=\"33\"> May Joab and his descendants be perpetually guilty of their shed blood, but may the LORD give perpetual peace to David, his descendants, his family, and his dynasty.\"</VERS>\n\t\t\t<VERS vnumber=\"34\"> So Benaiah son of Jehoiada went up and executed Joab; he was buried at his home in the wilderness. </VERS>\n\t\t\t<VERS vnumber=\"35\"> The king appointed Benaiah son of Jehoiada to take his place at the head of the army, and the king appointed Zadok the priest to take Abiathar's place.</VERS>\n\t\t\t<VERS vnumber=\"36\"> Next the king summoned Shimei and told him, \"Build yourself a house in Jerusalem and live there, but you may not leave there to go anywhere!</VERS>\n\t\t\t<VERS vnumber=\"37\"> If you ever do leave and cross the Kidron Valley, know for sure that you will certainly die! You will be responsible for your own death.\"</VERS>\n\t\t\t<VERS vnumber=\"38\"> Shimei said to the king, \"My master the king's proposal is acceptable. Your servant will do as you say.\" So Shimei lived in Jerusalem for a long time.</VERS>\n\t\t\t<VERS vnumber=\"39\"> Three years later two of Shimei's servants ran away to King Achish son of Maacah of Gath. Shimei was told, \"Look, your servants are in Gath.\"</VERS>\n\t\t\t<VERS vnumber=\"40\"> So Shimei got up, saddled his donkey, and went to Achish at Gath to find his servants; Shimei went and brought back his servants from Gath.</VERS>\n\t\t\t<VERS vnumber=\"41\"> When Solomon was told that Shimei had gone from Jerusalem to Gath and had then returned,</VERS>\n\t\t\t<VERS vnumber=\"42\"> the king summoned Shimei and said to him, \"You will recall that I made you take an oath by the LORD, and I solemnly warned you, 'If you ever leave and go anywhere, know for sure that you will certainly die.' You said to me, 'The proposal is acceptable; I agree to it.'</VERS>\n\t\t\t<VERS vnumber=\"43\"> Why then have you broken the oath you made before the LORD and disobeyed the order I gave you?\"</VERS>\n\t\t\t<VERS vnumber=\"44\"> Then the king said to Shimei, \"You are well aware of the way you mistreated my father David. The LORD will punish you for what you did.</VERS>\n\t\t\t<VERS vnumber=\"45\"> But King Solomon will be empowered and David's dynasty will endure permanently before the LORD.\" </VERS>\n\t\t\t<VERS vnumber=\"46\"> The king then gave the order to Benaiah son of Jehoiada who went and executed Shimei. So Solomon took firm control of the kingdom.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> Solomon made an alliance by marriage with Pharaoh, king of Egypt; he married Pharaoh's daughter. He brought her to the City of David until he could finish building his residence and the temple of the LORD and the wall around Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Now the people were offering sacrifices at the high places, because in those days a temple had not yet been built to honor the LORD.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Solomon demonstrated his loyalty to the LORD by following the practices of his father David, except that he offered sacrifices and burned incense on the high places.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The king went to Gibeon to offer sacrifices, for it had the most prominent of the high places. Solomon would offer up a thousand burnt sacrifices on the altar there.</VERS>\n\t\t\t<VERS vnumber=\"5\"> One night in Gibeon the LORD appeared to Solomon in a dream. God said, \"Tell me what I should give you.\" </VERS>\n\t\t\t<VERS vnumber=\"6\"> Solomon replied, \"You demonstrated great loyalty to your servant, my father David, as he served you faithfully, properly, and sincerely. You have maintained this great loyalty to this day by allowing his son to sit on his throne.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Now, O LORD my God, you have made your servant king in my father David's place, even though I am only a young man and am inexperienced.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Your servant stands among your chosen people; they are a great nation that is too numerous to count or number. </VERS>\n\t\t\t<VERS vnumber=\"9\"> So give your servant a discerning mind so he can make judicial decisions for your people and distinguish right from wrong. Otherwise no one is able to make judicial decisions for this great nation of yours.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> The Lord was pleased that Solomon made this request.</VERS>\n\t\t\t<VERS vnumber=\"11\"> God said to him, \"Because you asked for the ability to make wise judicial decisions, and not for long life, or riches, or vengeance on your enemies,</VERS>\n\t\t\t<VERS vnumber=\"12\"> I grant your request, and give you a wise and discerning mind superior to that of anyone who has preceded or will succeed you.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Furthermore, I am giving you what you did not request, riches and honor so that you will be the greatest king of your generation.</VERS>\n\t\t\t<VERS vnumber=\"14\"> If you follow my instructions by obeying my rules and regulations, just as your father David did, then I will grant you long life.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> Solomon then woke up and realized it was a dream. He went to Jerusalem, stood before the ark of the Lord's covenant, offered up burnt sacrifices, presented peace offerings, and held a feast for all his servants.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Then two prostitutes came to the king and stood before him.</VERS>\n\t\t\t<VERS vnumber=\"17\"> One of the women said, \"My master, this woman and I live in the same house. I had a baby while she was with me in the house.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Then three days after I had my baby, this woman also had a baby. We were alone; there was no one else in the house except the two of us.</VERS>\n\t\t\t<VERS vnumber=\"19\"> This woman's child suffocated during the night when she rolled on top of him. </VERS>\n\t\t\t<VERS vnumber=\"20\"> She got up in the middle of the night and took my son from my side, while your servant was sleeping. She put him in her arms, and put her dead son in my arms.</VERS>\n\t\t\t<VERS vnumber=\"21\"> I got up in the morning to nurse my son, and there he was, dead! But when I examined him carefully in the morning, I realized it was not my baby.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> The other woman said, \"No! My son is alive; your son is dead!\" But the first woman replied, \"No, your son is dead; my son is alive.\" Each presented her case before the king.</VERS>\n\t\t\t<VERS vnumber=\"23\"> The king said, \"One says, 'My son is alive; your son is dead,' while the other says, 'No, your son is dead; my son is alive.'\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> The king ordered, \"Get me a sword!\" So they placed a sword before the king.</VERS>\n\t\t\t<VERS vnumber=\"25\"> The king then said, \"Cut the living child in two, and give half to one and half to the other!\"</VERS>\n\t\t\t<VERS vnumber=\"26\"> The real mother spoke up to the king, for her motherly instincts were aroused. She said, \"My master, give her the living child! Whatever you do, don't kill him!\" But the other woman said, \"Neither one of us will have him! Let them cut him in two!\" </VERS>\n\t\t\t<VERS vnumber=\"27\"> The king responded, \"Give the first woman the living child; don't kill him. She is the mother.\"</VERS>\n\t\t\t<VERS vnumber=\"28\"> When all Israel heard about the judicial decision which the king had rendered, they respected the king, for they realized that he possessed supernatural wisdom to make judicial decisions.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\"> King Solomon ruled over all Israel.</VERS>\n\t\t\t<VERS vnumber=\"2\"> These were his officials: Azariah son of Zadok was the priest.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Elihoreph and Ahijah, the sons of Shisha, wrote down what happened. Jehoshaphat son of Ahilud was in charge of the records.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Benaiah son of Jehoiada was commander of the army. Zadok and Abiathar were priests.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Azariah son of Nathan was supervisor of the district governors. Zabud son of Nathan was a priest and adviser to the king.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Ahishar was supervisor of the palace. Adoniram son of Abda was supervisor of the work crews.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Solomon had twelve district governors appointed throughout Israel who acquired supplies for the king and his palace. Each was responsible for one month in the year.</VERS>\n\t\t\t<VERS vnumber=\"8\"> These were their names: Ben-Hur was in charge of the hill country of Ephraim.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Ben-Deker was in charge of Makaz, Shaalbim, Beth Shemesh, and Elon Beth Hanan.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Ben-Hesed was in charge of Arubboth; he controlled Socoh and all the territory of Hepher.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Ben-Abinadab was in charge of Naphath Dor. (He was married to Solomon's daughter Taphath.)</VERS>\n\t\t\t<VERS vnumber=\"12\"> Baana son of Ahilud was in charge of Taanach and Megiddo, as well as all of Beth Shan next to Zarethan below Jezreel, from Beth Shan to Abel Meholah and on past Jokmeam.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Ben-Geber was in charge of Ramoth Gilead; he controlled the tent villages of Jair son of Manasseh in Gilead, as well as the region of Argob in Bashan, including sixty large walled cities with bronze bars locking their gates.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Ahinadab son of Iddo was in charge of Mahanaim.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Ahimaaz was in charge of Naphtali. (He married Solomon's daughter Basemath.)</VERS>\n\t\t\t<VERS vnumber=\"16\"> Baana son of Hushai was in charge of Asher and Aloth.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Jehoshaphat son of Paruah was in charge of Issachar.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Shimei son of Ela was in charge of Benjamin.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Geber son of Uri was in charge of the land of Gilead (the territory which had once belonged to King Sihon of the Amorites and to King Og of Bashan). He was sole governor of the area.</VERS>\n\t\t\t<VERS vnumber=\"20\"> The people of Judah and Israel were as innumerable as the sand on the seashore; they had plenty to eat and drink and were happy.</VERS>\n\t\t\t<VERS vnumber=\"21\">  Solomon ruled all the kingdoms from the Euphrates River to the land of the Philistines, as far as the border of Egypt. These kingdoms paid tribute as Solomon's subjects throughout his lifetime.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Each day Solomon's royal court consumed thirty cors of finely milled flour, sixty cors of cereal, </VERS>\n\t\t\t<VERS vnumber=\"23\"> ten calves fattened in the stall, twenty calves from the pasture, and a hundred sheep, not to mention rams, gazelles, deer, and well-fed birds. </VERS>\n\t\t\t<VERS vnumber=\"24\"> His royal court was so large because he ruled over all the kingdoms west of the Euphrates River from Tiphsah to Gaza; he was at peace with all his neighbors.</VERS>\n\t\t\t<VERS vnumber=\"25\"> All the people of Judah and Israel had security; everyone from Dan to Beer Sheba enjoyed the produce of their vines and fig trees throughout Solomon's lifetime.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Solomon had 4,000 stalls for his chariot horses and 12,000 horses. </VERS>\n\t\t\t<VERS vnumber=\"27\"> The district governors acquired supplies for King Solomon and all who ate in his royal palace. Each was responsible for one month in the year; they made sure nothing was lacking. </VERS>\n\t\t\t<VERS vnumber=\"28\"> Each one also brought to the assigned location his quota of barley and straw for the various horses.</VERS>\n\t\t\t<VERS vnumber=\"29\"> God gave Solomon wisdom and very great discernment; the breadth of his understanding was as infinite as the sand on the seashore. </VERS>\n\t\t\t<VERS vnumber=\"30\"> Solomon was wiser than all the men of the east and all the sages of Egypt.</VERS>\n\t\t\t<VERS vnumber=\"31\"> He was wiser than any man, including Ethan the Ezrahite or Heman, Calcol, and Darda, the sons of Mahol. He was famous in all the neighboring nations.</VERS>\n\t\t\t<VERS vnumber=\"32\"> He composed 3,000 proverbs and 1,005 songs. </VERS>\n\t\t\t<VERS vnumber=\"33\"> He produced manuals on botany, describing every kind of plant, from the cedars of Lebanon to the hyssop that grows on walls. He also produced manuals on biology, describing animals, birds, insects, and fish. </VERS>\n\t\t\t<VERS vnumber=\"34\"> People from all nations came to hear Solomon's display of wisdom; they came from all the kings of the earth who heard about his wisdom.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"5\">\n\t\t\t<VERS vnumber=\"1\">  King Hiram of Tyre sent messengers to Solomon when he heard that he had been anointed king in his father's place. (Hiram had always been an ally of David.) </VERS>\n\t\t\t<VERS vnumber=\"2\"> Solomon then sent this message to Hiram:</VERS>\n\t\t\t<VERS vnumber=\"3\"> \"You know that my father David was unable to build a temple to honor the LORD his God, for he was busy fighting battles on all fronts while the LORD subdued his enemies.</VERS>\n\t\t\t<VERS vnumber=\"4\"> But now the LORD my God has made me secure on all fronts; there is no adversary or dangerous threat.</VERS>\n\t\t\t<VERS vnumber=\"5\"> So I have decided to build a temple to honor the LORD my God, as the LORD instructed my father David, 'Your son, whom I will put on your throne in your place, is the one who will build a temple to honor me.'</VERS>\n\t\t\t<VERS vnumber=\"6\"> So now order some cedars of Lebanon to be cut for me. My servants will work with your servants. I will pay your servants whatever you say is appropriate, for you know that we have no one among us who knows how to cut down trees like the Sidonians.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> When Hiram heard Solomon's message, he was very happy. He said, \"The LORD is worthy of praise today because he has given David a wise son to rule over this great nation.\" </VERS>\n\t\t\t<VERS vnumber=\"8\"> Hiram then sent this message to Solomon: \"I received the message you sent to me. I will give you all the cedars and evergreens you need.</VERS>\n\t\t\t<VERS vnumber=\"9\"> My servants will bring the timber down from Lebanon to the sea. I will send it by sea in raft-like bundles to the place you designate. There I will separate the logs and you can carry them away. In exchange you will supply the food I need for my royal court.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> So Hiram supplied the cedars and evergreens Solomon needed,</VERS>\n\t\t\t<VERS vnumber=\"11\"> and Solomon supplied Hiram annually with 20,000 cors of wheat as provision for his royal court, as well as 20,000 baths of pure olive oil.</VERS>\n\t\t\t<VERS vnumber=\"12\"> So the LORD gave Solomon wisdom, as he had promised him. And Hiram and Solomon were at peace and made a treaty.</VERS>\n\t\t\t<VERS vnumber=\"13\"> King Solomon conscripted work crews from throughout Israel, 30,000 men in all. </VERS>\n\t\t\t<VERS vnumber=\"14\"> He sent them to Lebanon in shifts of 10,000 men per month. They worked in Lebanon for one month, and then spent two months at home. Adoniram was supervisor of the work crews. </VERS>\n\t\t\t<VERS vnumber=\"15\"> Solomon also had 70,000 common laborers and 80,000 stonecutters in the hills, </VERS>\n\t\t\t<VERS vnumber=\"16\"> besides 3,300 officials who supervised the workers.</VERS>\n\t\t\t<VERS vnumber=\"17\"> By royal order they supplied large valuable stones in order to build the temple's foundation with chiseled stone. </VERS>\n\t\t\t<VERS vnumber=\"18\"> Solomon's and Hiram's construction workers, along with men from Byblos, did the chiseling and prepared the wood and stones for the building of the temple.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"6\">\n\t\t\t<VERS vnumber=\"1\"> In the four hundred and eightieth year after the Israelites left Egypt, in the fourth year of Solomon's reign over Israel, during the month Ziv (the second month), he began building the LORD's temple. </VERS>\n\t\t\t<VERS vnumber=\"2\"> The temple King Solomon built for the LORD was 90 feet long, 30 feet wide, and 45 feet high. </VERS>\n\t\t\t<VERS vnumber=\"3\"> The porch in front of the main hall of the temple was 30 feet long, corresponding to the width of the temple. It was 15 feet wide, extending out from the front of the temple. </VERS>\n\t\t\t<VERS vnumber=\"4\"> He made framed windows for the temple.</VERS>\n\t\t\t<VERS vnumber=\"5\"> He built an extension all around the walls of the temple's main hall and holy place and constructed side rooms in it.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The bottom floor of the extension was seven and a half feet wide, the middle floor nine feet wide, and the third floor ten and a half feet wide. He made ledges on the temple's outer walls so the beams would not have to be inserted into the walls.</VERS>\n\t\t\t<VERS vnumber=\"7\"> As the temple was being built, only stones shaped at the quarry were used; the sound of hammers, pickaxes, or any other iron tool was not heard at the temple while it was being built. </VERS>\n\t\t\t<VERS vnumber=\"8\"> The entrance to the bottom level of side rooms was on the south side of the temple; stairs went up to the middle floor and then on up to the third floor. </VERS>\n\t\t\t<VERS vnumber=\"9\"> He finished building the temple and covered it with rafters and boards made of cedar.</VERS>\n\t\t\t<VERS vnumber=\"10\"> He built an extension all around the temple; it was seven and a half feet high and it was attached to the temple by cedar beams.</VERS>\n\t\t\t<VERS vnumber=\"11\">  The LORD said to Solomon: </VERS>\n\t\t\t<VERS vnumber=\"12\"> \"As for this temple you are building, if you follow my rules, observe my regulations, and obey all my commandments, I will fulfill through you the promise I made to your father David.</VERS>\n\t\t\t<VERS vnumber=\"13\"> I will live among the Israelites and will not abandon my people Israel.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> So Solomon finished building the temple.</VERS>\n\t\t\t<VERS vnumber=\"15\"> He constructed the walls inside the temple with cedar planks; he paneled the inside with wood from the floor of the temple to the rafters of the ceiling. He covered the temple floor with boards made from the wood of evergreens. </VERS>\n\t\t\t<VERS vnumber=\"16\"> He built a wall 30 feet in from the rear of the temple as a partition for an inner sanctuary that would be the most holy place. He paneled the wall with cedar planks from the floor to the rafters.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The main hall in front of the inner sanctuary was 60 feet long.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The inside of the temple was all cedar and was adorned with carvings of round ornaments and of flowers in bloom. Everything was cedar; no stones were visible.</VERS>\n\t\t\t<VERS vnumber=\"19\"> He prepared the inner sanctuary inside the temple so that the ark of the covenant of the LORD could be placed there.</VERS>\n\t\t\t<VERS vnumber=\"20\"> The inner sanctuary was 30 feet long, 30 feet wide, and 30 feet high. He plated it with gold, as well as the cedar altar.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Solomon plated the inside of the temple with gold. He hung golden chains in front of the inner sanctuary and plated the inner sanctuary with gold. </VERS>\n\t\t\t<VERS vnumber=\"22\"> He plated the entire inside of the temple with gold, as well as the altar inside the inner sanctuary.</VERS>\n\t\t\t<VERS vnumber=\"23\"> In the inner sanctuary he made two cherubs of olive wood; each stood 15 feet high. </VERS>\n\t\t\t<VERS vnumber=\"24\"> Each of the first cherub's wings was seven and a half feet long; its entire wingspan was 15 feet.</VERS>\n\t\t\t<VERS vnumber=\"25\"> The second cherub also had a wingspan of 15 feet; it was identical to the first in measurements and shape.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Each cherub stood 15 feet high.</VERS>\n\t\t\t<VERS vnumber=\"27\"> He put the cherubs in the inner sanctuary of the temple. Their wings were spread out. One of the first cherub's wings touched one wall and one of the other cherub's wings touched the opposite wall. The first cherub's other wing touched the second cherub's other wing in the middle of the room.</VERS>\n\t\t\t<VERS vnumber=\"28\"> He plated the cherubs with gold.</VERS>\n\t\t\t<VERS vnumber=\"29\"> On all the walls around the temple, inside and out, he carved cherubs, palm trees, and flowers in bloom. </VERS>\n\t\t\t<VERS vnumber=\"30\"> He plated the floor of the temple with gold, inside and out.</VERS>\n\t\t\t<VERS vnumber=\"31\"> He made doors of olive wood at the entrance to the inner sanctuary; the pillar on each doorpost was five-sided.</VERS>\n\t\t\t<VERS vnumber=\"32\"> On the two doors made of olive wood he carved cherubs, palm trees, and flowers in bloom, and he plated them with gold. He plated the cherubs and the palm trees with hammered gold.</VERS>\n\t\t\t<VERS vnumber=\"33\"> In the same way he made doorposts of olive wood for the entrance to the main hall, only with four-sided pillars.</VERS>\n\t\t\t<VERS vnumber=\"34\"> He also made two doors out of wood from evergreens; each door had two folding leaves.</VERS>\n\t\t\t<VERS vnumber=\"35\"> He carved cherubs, palm trees, and flowers in bloom and plated them with gold, leveled out over the carvings.</VERS>\n\t\t\t<VERS vnumber=\"36\"> He built the inner courtyard with three rows of chiseled stones and a row of cedar beams.</VERS>\n\t\t\t<VERS vnumber=\"37\"> In the month Ziv of the fourth year of Solomon's reign the foundation was laid for the LORD's temple. </VERS>\n\t\t\t<VERS vnumber=\"38\"> In the eleventh year, in the month Bul (the eighth month) the temple was completed in accordance with all its specifications and blueprints. It took seven years to build.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"7\">\n\t\t\t<VERS vnumber=\"1\"> Solomon took thirteen years to build his palace.</VERS>\n\t\t\t<VERS vnumber=\"2\"> He named it \"The Palace of the Lebanon Forest\"; it was 150 feet long, 75 feet wide, and 45 feet high. It had four rows of cedar pillars and cedar beams above the pillars.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The roof above the beams supported by the pillars was also made of cedar; there were forty-five beams, fifteen per row.</VERS>\n\t\t\t<VERS vnumber=\"4\"> There were three rows of windows arranged in sets of three.</VERS>\n\t\t\t<VERS vnumber=\"5\"> All of the entrances were rectangular in shape and they were arranged in sets of three.</VERS>\n\t\t\t<VERS vnumber=\"6\"> He made a colonnade 75 feet long and 45 feet wide. There was a porch in front of this and pillars and a roof in front of the porch.</VERS>\n\t\t\t<VERS vnumber=\"7\"> He also made a throne room, called \"The Hall of Judgment,\" where he made judicial decisions. It was paneled with cedar from the floor to the rafters.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The palace where he lived was constructed in a similar way. He also constructed a palace like this hall for Pharaoh's daughter, whom he had married.</VERS>\n\t\t\t<VERS vnumber=\"9\"> All of these were built with the best stones, chiseled to the right size and cut with a saw on all sides, from the foundation to the edge of the roof and from the outside to the great courtyard.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The foundation was made of large valuable stones, measuring either 15 feet or 12 feet.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Above the foundation the best stones, chiseled to the right size, were used along with cedar. </VERS>\n\t\t\t<VERS vnumber=\"12\"> Around the great courtyard were three rows of chiseled stones and one row of cedar beams, like the inner courtyard of the LORD's temple and the hall of the palace.</VERS>\n\t\t\t<VERS vnumber=\"13\"> King Solomon sent for Hiram of Tyre.</VERS>\n\t\t\t<VERS vnumber=\"14\"> He was the son of a widow from the tribe of Naphtali, and his father was a craftsman in bronze from Tyre. He had the skill and knowledge to make all kinds of works of bronze. He reported to King Solomon and did all the work he was assigned.</VERS>\n\t\t\t<VERS vnumber=\"15\"> He fashioned two bronze pillars; each pillar was 27 feet high and 18 feet in circumference. </VERS>\n\t\t\t<VERS vnumber=\"16\"> He made two bronze tops for the pillars; each was seven-and-a-half feet high.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The latticework on the tops of the pillars was adorned with ornamental wreaths and chains; the top of each pillar had seven groupings of ornaments.</VERS>\n\t\t\t<VERS vnumber=\"18\"> When he made the pillars, there were two rows of pomegranate-shaped ornaments around the latticework covering the top of each pillar.</VERS>\n\t\t\t<VERS vnumber=\"19\"> The tops of the two pillars in the porch were shaped like lilies and were six feet high.</VERS>\n\t\t\t<VERS vnumber=\"20\"> On the top of each pillar, right above the bulge beside the latticework, there were two hundred pomegranate-shaped ornaments arranged in rows all the way around.</VERS>\n\t\t\t<VERS vnumber=\"21\"> He set up the pillars on the porch in front of the main hall. He erected one pillar on the right side and called it Jakin; he erected the other pillar on the left side and called it Boaz.</VERS>\n\t\t\t<VERS vnumber=\"22\"> The tops of the pillars were shaped like lilies. So the construction of the pillars was completed.</VERS>\n\t\t\t<VERS vnumber=\"23\"> He also made the large bronze basin called \"The Sea.\" It measured 15 feet from rim to rim, was circular in shape, and stood seven-and-a-half feet high. Its circumference was 45 feet.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Under the rim all the way around it were round ornaments arranged in settings 15 feet long. The ornaments were in two rows and had been cast with \"The Sea.\"</VERS>\n\t\t\t<VERS vnumber=\"25\"> \"The Sea\" stood on top of twelve bulls. Three faced northward, three westward, three southward, and three eastward. \"The Sea\" was placed on top of them, and they all faced outward.</VERS>\n\t\t\t<VERS vnumber=\"26\"> It was four fingers thick and its rim was like that of a cup shaped like a lily blossom. It could hold about 12,000 gallons.</VERS>\n\t\t\t<VERS vnumber=\"27\"> He also made ten bronze movable stands. Each stand was six feet long, six feet wide, and four-and-a-half feet high. </VERS>\n\t\t\t<VERS vnumber=\"28\"> The stands were constructed with frames between the joints.</VERS>\n\t\t\t<VERS vnumber=\"29\"> On these frames and joints were ornamental lions, bulls, and cherubs. Under the lions and bulls were decorative wreaths.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Each stand had four bronze wheels with bronze axles and four supports. Under the basin the supports were fashioned on each side with wreaths.</VERS>\n\t\t\t<VERS vnumber=\"31\"> Inside the stand was a round opening that was a foot-and-a-half deep; it had a support that was two and one-quarter feet long. On the edge of the opening were carvings in square frames.</VERS>\n\t\t\t<VERS vnumber=\"32\"> The four wheels were under the frames and the crossbars of the axles were connected to the stand. Each wheel was two and one-quarter feet high. </VERS>\n\t\t\t<VERS vnumber=\"33\"> The wheels were constructed like chariot wheels; their crossbars, rims, spokes, and hubs were made of cast metal.</VERS>\n\t\t\t<VERS vnumber=\"34\"> Each stand had four supports, one per side projecting out from the stand.</VERS>\n\t\t\t<VERS vnumber=\"35\"> On top of each stand was a round opening three-quarters of a foot deep; there were also supports and frames on top of the stands. </VERS>\n\t\t\t<VERS vnumber=\"36\"> He engraved ornamental cherubs, lions, and palm trees on the plates of the supports and frames wherever there was room, with wreaths all around. </VERS>\n\t\t\t<VERS vnumber=\"37\"> He made the ten stands in this way. All of them were cast in one mold and were identical in measurements and shape.</VERS>\n\t\t\t<VERS vnumber=\"38\"> He also made ten bronze basins, each of which could hold about 240 gallons. Each basin was six feet in diameter; there was one basin for each stand. </VERS>\n\t\t\t<VERS vnumber=\"39\"> He put five basins on the south side of the temple and five on the north side. He put \"The Sea\" on the south side, in the southeast corner.</VERS>\n\t\t\t<VERS vnumber=\"40\"> Hiram also made basins, shovels, and bowls. He finished all the work on the LORD's temple he had been assigned by King Solomon.</VERS>\n\t\t\t<VERS vnumber=\"41\"> He made the two pillars, the two bowl-shaped tops of the pillars, the latticework for the bowl-shaped tops of the two pillars,</VERS>\n\t\t\t<VERS vnumber=\"42\"> the four hundred pomegranate-shaped ornaments for the latticework of the two pillars (each latticework had two rows of these ornaments at the bowl-shaped top of the pillar),</VERS>\n\t\t\t<VERS vnumber=\"43\"> the ten movable stands with their ten basins,</VERS>\n\t\t\t<VERS vnumber=\"44\"> the big bronze basin called \"The Sea\" with its twelve bulls underneath,</VERS>\n\t\t\t<VERS vnumber=\"45\"> and the pots, shovels, and bowls. All these items King Solomon assigned Hiram to make for the LORD's temple were made from polished bronze. </VERS>\n\t\t\t<VERS vnumber=\"46\"> The king had them cast in earth foundries in the region of the Jordan between Succoth and Zarethan. </VERS>\n\t\t\t<VERS vnumber=\"47\"> Solomon left all these items unweighed; there were so many of them they did not weigh the bronze.</VERS>\n\t\t\t<VERS vnumber=\"48\"> Solomon also made all these items for the LORD's temple: the gold altar, the gold table on which was kept the Bread of the Presence,</VERS>\n\t\t\t<VERS vnumber=\"49\"> the pure gold lampstands at the entrance to the inner sanctuary (five on the right and five on the left), the gold flower-shaped ornaments, lamps, and tongs,</VERS>\n\t\t\t<VERS vnumber=\"50\"> the pure gold bowls, trimming shears, basins, pans, and censers, and the gold door sockets for the inner sanctuary (the most holy place) and for the doors of the main hall of the temple.</VERS>\n\t\t\t<VERS vnumber=\"51\"> When King Solomon finished constructing the LORD's temple, he put the holy items that belonged to his father David (the silver, gold, and other articles) in the treasuries of the LORD's temple.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"8\">\n\t\t\t<VERS vnumber=\"1\">  Then Solomon convened in Jerusalem Israel's elders, all the leaders of the Israelite tribes and families, so they could witness the transferal of the ark of the LORD's covenant from the city of David (that is, Zion).</VERS>\n\t\t\t<VERS vnumber=\"2\"> All the men of Israel assembled before King Solomon during the festival in the month Ethanim (the seventh month). </VERS>\n\t\t\t<VERS vnumber=\"3\"> When all Israel's elders had arrived, the priests lifted the ark.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The priests and Levites carried the ark of the LORD, the tent of meeting, and all the holy items in the tent.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Now King Solomon and all the Israelites who had assembled with him went on ahead of the ark and sacrificed more sheep and cattle than could be counted or numbered.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The priests brought the ark of the LORD's covenant to its assigned place in the inner sanctuary of the temple, in the most holy place, under the wings of the cherubs. </VERS>\n\t\t\t<VERS vnumber=\"7\"> The cherubs' wings extended over the place where the ark sat; the cherubs overshadowed the ark and its poles.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The poles were so long their ends were visible from the holy place in front of the inner sanctuary, but they could not be seen from beyond that point. They have remained there to this very day. </VERS>\n\t\t\t<VERS vnumber=\"9\"> There was nothing in the ark except the two stone tablets Moses had placed there in Horeb. It was there that the LORD made an agreement with the Israelites after he brought them out of the land of Egypt. </VERS>\n\t\t\t<VERS vnumber=\"10\"> Once the priests left the holy place, a cloud filled the LORD's temple.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The priests could not carry out their duties because of the cloud; the LORD's glory filled his temple.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Then Solomon said, \"The LORD has said that he lives in thick darkness.</VERS>\n\t\t\t<VERS vnumber=\"13\"> O LORD, truly I have built a lofty temple for you, a place where you can live permanently.\" </VERS>\n\t\t\t<VERS vnumber=\"14\"> Then the king turned around and pronounced a blessing over the whole Israelite assembly as they stood there.</VERS>\n\t\t\t<VERS vnumber=\"15\"> He said, \"The LORD God of Israel is worthy of praise because he has fulfilled what he promised my father David. </VERS>\n\t\t\t<VERS vnumber=\"16\"> He told David, 'Since the day I brought my people Israel out of Egypt, I have not chosen a city from all the tribes of Israel to build a temple in which to live. But I have chosen David to lead my people Israel.' </VERS>\n\t\t\t<VERS vnumber=\"17\"> Now my father David had a strong desire to build a temple to honor the LORD God of Israel.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The LORD told my father David, 'It is right for you to have a strong desire to build a temple to honor me.</VERS>\n\t\t\t<VERS vnumber=\"19\"> But you will not build the temple; your very own son will build the temple for my honor.'</VERS>\n\t\t\t<VERS vnumber=\"20\"> The LORD has kept the promise he made. I have taken my father David's place and have occupied the throne of Israel, as the LORD promised. I have built this temple for the honor of the LORD God of Israel </VERS>\n\t\t\t<VERS vnumber=\"21\"> and set up in it a place for the ark containing the covenant the LORD made with our ancestors when he brought them out of the land of Egypt.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> Solomon stood before the altar of the LORD in front of the entire assembly of Israel and spread out his hands toward the sky.</VERS>\n\t\t\t<VERS vnumber=\"23\"> He prayed: \"O LORD, God of Israel, there is no god like you in heaven above or on earth below! You maintain covenantal loyalty to your servants who obey you with sincerity.</VERS>\n\t\t\t<VERS vnumber=\"24\"> You have kept your word to your servant, my father David; this very day you have fulfilled what you promised.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Now, O LORD, God of Israel, keep the promise you made to your servant, my father David, when you said, 'You will never fail to have a successor ruling before me on the throne of Israel, provided that your descendants watch their step and serve me as you have done.'</VERS>\n\t\t\t<VERS vnumber=\"26\"> Now, O God of Israel, may the promise you made to your servant, my father David, be realized.</VERS>\n\t\t\t<VERS vnumber=\"27\"> \"God does not really live on the earth! Look, if the sky and the highest heaven cannot contain you, how much less this temple I have built! </VERS>\n\t\t\t<VERS vnumber=\"28\"> But respond favorably to your servant's prayer and his request for help, O LORD my God. Answer the desperate prayer your servant is presenting to you today. </VERS>\n\t\t\t<VERS vnumber=\"29\"> Night and day may you watch over this temple, the place where you promised you would live. May you answer your servant's prayer for this place.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Respond to the request of your servant and your people Israel for this place. Hear from inside your heavenly dwelling place and respond favorably.</VERS>\n\t\t\t<VERS vnumber=\"31\"> \"When someone is accused of sinning against his neighbor and the latter pronounces a curse on the alleged offender before your altar in this temple, be willing to forgive the accused if the accusation is false.</VERS>\n\t\t\t<VERS vnumber=\"32\"> Listen from heaven and make a just decision about your servants' claims. Condemn the guilty party, declare the other innocent, and give both of them what they deserve.</VERS>\n\t\t\t<VERS vnumber=\"33\"> \"The time will come when your people Israel are defeated by an enemy because they sinned against you. If they come back to you, renew their allegiance to you, and pray for your help in this temple, </VERS>\n\t\t\t<VERS vnumber=\"34\"> then listen from heaven, forgive the sin of your people Israel, and bring them back to the land you gave to their ancestors.</VERS>\n\t\t\t<VERS vnumber=\"35\"> \"The time will come when the skies are shut up tightly and no rain falls because your people sinned against you. When they direct their prayers toward this place, renew their allegiance to you, and turn away from their sin because you punish them, </VERS>\n\t\t\t<VERS vnumber=\"36\"> then listen from heaven and forgive the sin of your servants, your people Israel. Certainly you will then teach them the right way to live and send rain on your land that you have given your people to possess.</VERS>\n\t\t\t<VERS vnumber=\"37\"> \"The time will come when the land suffers from a famine, a plague, blight and disease, or a locust invasion, or when their enemy lays siege to the cities of the land, or when some other type of plague or epidemic occurs. </VERS>\n\t\t\t<VERS vnumber=\"38\"> When all your people Israel pray and ask for help, as they acknowledge their pain and spread out their hands toward this temple, </VERS>\n\t\t\t<VERS vnumber=\"39\"> then listen from your heavenly dwelling place, forgive their sin, and act favorably toward each one based on your evaluation of his motives. (Indeed you are the only one who can correctly evaluate the motives of all people.)</VERS>\n\t\t\t<VERS vnumber=\"40\"> Then they will obey you throughout their lifetimes as they live on the land you gave to our ancestors.</VERS>\n\t\t\t<VERS vnumber=\"41\"> \"Foreigners, who do not belong to your people Israel, will come from a distant land because of your reputation.</VERS>\n\t\t\t<VERS vnumber=\"42\"> When they hear about your great reputation and your ability to accomplish mighty deeds, they will come and direct their prayers toward this temple. </VERS>\n\t\t\t<VERS vnumber=\"43\"> Then listen from your heavenly dwelling place and answer all the prayers of the foreigners. Then all the nations of the earth will acknowledge your reputation, obey you like your people Israel do, and recognize that this temple I built belongs to you.</VERS>\n\t\t\t<VERS vnumber=\"44\"> \"When you direct your people to march out and fight their enemies, and they direct their prayers to the LORD toward his chosen city and this temple I built for your honor,</VERS>\n\t\t\t<VERS vnumber=\"45\"> then listen from heaven to their prayers for help and vindicate them.</VERS>\n\t\t\t<VERS vnumber=\"46\"> \"The time will come when your people will sin against you (for there is no one who is sinless!) and you will be angry with them and deliver them over to their enemies, who will take them as prisoners to their own land, whether far away or close by.</VERS>\n\t\t\t<VERS vnumber=\"47\"> When your people come to their senses in the land where they are held prisoner, they will repent and beg for your mercy in the land of their imprisonment, admitting, 'We have sinned and gone astray; we have done evil.' </VERS>\n\t\t\t<VERS vnumber=\"48\"> When they return to you with all their heart and being in the land where they are held prisoner, and direct their prayers to you toward the land you gave to their ancestors, your chosen city, and the temple I built for your honor,</VERS>\n\t\t\t<VERS vnumber=\"49\"> then listen from your heavenly dwelling place to their prayers for help and vindicate them.</VERS>\n\t\t\t<VERS vnumber=\"50\"> Forgive all the rebellious acts of your sinful people and cause their captors to have mercy on them.</VERS>\n\t\t\t<VERS vnumber=\"51\"> After all, they are your people and your special possession whom you brought out of Egypt, from the middle of the iron-smelting furnace.</VERS>\n\t\t\t<VERS vnumber=\"52\"> \"May you be attentive to your servant's and your people Israel's requests for help and may you respond to all their prayers to you.</VERS>\n\t\t\t<VERS vnumber=\"53\"> After all, you picked them out of all the nations of the earth to be your special possession, just as you, O sovereign LORD, announced through your servant Moses when you brought our ancestors out of Egypt.\"</VERS>\n\t\t\t<VERS vnumber=\"54\"> When Solomon finished presenting all these prayers and requests to the LORD, he got up from before the altar of the LORD where he had kneeled and spread out his hands toward the sky.</VERS>\n\t\t\t<VERS vnumber=\"55\"> When he stood up, he pronounced a blessing over the entire assembly of Israel, saying in a loud voice:</VERS>\n\t\t\t<VERS vnumber=\"56\"> \"The LORD is worthy of praise because he has made Israel his people secure just as he promised! Not one of all the faithful promises he made through his servant Moses is left unfulfilled!</VERS>\n\t\t\t<VERS vnumber=\"57\"> May the LORD our God be with us, as he was with our ancestors. May he not abandon us or leave us.</VERS>\n\t\t\t<VERS vnumber=\"58\"> May he make us submissive, so we can follow all his instructions and obey the commandments, rules, and regulations he commanded our ancestors. </VERS>\n\t\t\t<VERS vnumber=\"59\"> May the LORD our God be constantly aware of these requests of mine I have presented to him, so that he might vindicate his servant and his people Israel as the need arises. </VERS>\n\t\t\t<VERS vnumber=\"60\"> Then all the nations of the earth will recognize that the LORD is the only genuine God.</VERS>\n\t\t\t<VERS vnumber=\"61\"> May you demonstrate wholehearted devotion to the LORD our God by following his rules and obeying his commandments, as you are presently doing.\"</VERS>\n\t\t\t<VERS vnumber=\"62\"> The king and all Israel with him were presenting sacrifices to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"63\"> Solomon offered as peace offerings to the LORD 22,000 cattle and 120,000 sheep. Then the king and all the Israelites dedicated the LORD's temple. </VERS>\n\t\t\t<VERS vnumber=\"64\"> That day the king consecrated the middle of the courtyard that is in front of the LORD's temple. He offered there burnt sacrifices, grain offerings, and the fat from the peace offerings, because the bronze altar that stood before the LORD was too small to hold all these offerings.</VERS>\n\t\t\t<VERS vnumber=\"65\"> At that time Solomon and all Israel with him celebrated a festival before the LORD our God for two entire weeks. This great assembly included people from all over the land, from Lebo Hamath in the north to the Brook of Egypt in the south.</VERS>\n\t\t\t<VERS vnumber=\"66\"> On the fifteenth day after the festival started, he dismissed the people. They asked God to empower the king and then went to their homes, happy and content because of all the good the LORD had done for his servant David and his people Israel.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"9\">\n\t\t\t<VERS vnumber=\"1\"> After Solomon finished building the LORD's temple, the royal palace, and all the other construction projects he had planned,</VERS>\n\t\t\t<VERS vnumber=\"2\"> the LORD appeared to Solomon a second time, in the same way he had appeared to him at Gibeon.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The LORD said to him, \"I have answered your prayer and your request for help that you made to me. I have consecrated this temple you built by making it my permanent home; I will be constantly present there.</VERS>\n\t\t\t<VERS vnumber=\"4\"> You must serve me with integrity and sincerity, just as your father David did. Do everything I commanded and obey my rules and regulations.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Then I will allow your dynasty to rule over Israel permanently, just as I promised your father David, 'You will not fail to have a successor on the throne of Israel.'</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"But if you or your sons ever turn away from me, fail to obey the regulations and rules I instructed you to keep, and decide to serve and worship other gods,</VERS>\n\t\t\t<VERS vnumber=\"7\"> then I will remove Israel from the land I have given them, I will abandon this temple I have consecrated with my presence, and Israel will be mocked and ridiculed among all the nations. </VERS>\n\t\t\t<VERS vnumber=\"8\"> This temple will become a heap of ruins; everyone who passes by it will be shocked and will hiss out their scorn, saying, 'Why did the LORD do this to this land and this temple?' </VERS>\n\t\t\t<VERS vnumber=\"9\"> Others will then answer, 'Because they abandoned the LORD their God, who led their ancestors out of Egypt. They embraced other gods whom they worshiped and served. That is why the LORD has brought all this disaster down on them.'\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> After twenty years, during which Solomon built the LORD's temple and the royal palace,</VERS>\n\t\t\t<VERS vnumber=\"11\"> King Solomon gave King Hiram of Tyre twenty cities in the region of Galilee, because Hiram had supplied Solomon with cedars, evergreens, and all the gold he wanted. </VERS>\n\t\t\t<VERS vnumber=\"12\"> When Hiram went out from Tyre to inspect the cities Solomon had given him, he was not pleased with them.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Hiram asked, \"Why did you give me these cities, my friend?\" He called that area the region of Cabul, a name which it has retained to this day.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Hiram had sent to the king one hundred twenty talents of gold.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Here are the details concerning the work crews King Solomon conscripted to build the LORD's temple, his palace, the terrace, the wall of Jerusalem, and the cities of Hazor, Megiddo, and Gezer. </VERS>\n\t\t\t<VERS vnumber=\"16\"> (Pharaoh, king of Egypt, had attacked and captured Gezer. He burned it and killed the Canaanites who lived in the city. He gave it as a wedding present to his daughter, who had married Solomon.)</VERS>\n\t\t\t<VERS vnumber=\"17\"> Solomon built up Gezer, lower Beth Horon,</VERS>\n\t\t\t<VERS vnumber=\"18\"> Baalath, Tadmor in the wilderness,</VERS>\n\t\t\t<VERS vnumber=\"19\"> all the storage cities that belonged to him, and the cities where chariots and horses were kept. He built whatever he wanted in Jerusalem, Lebanon, and throughout his entire kingdom.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Now several non-Israelite peoples were left in the land after the conquest of Joshua, including the Amorites, Hittites, Perizzites, Hivites, and Jebusites.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Their descendants remained in the land (the Israelites were unable to wipe them out completely). Solomon conscripted them for his work crews, and they continue in that role to this very day.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Solomon did not assign Israelites to these work crews; the Israelites served as his soldiers, attendants, officers, charioteers, and commanders of his chariot forces.</VERS>\n\t\t\t<VERS vnumber=\"23\"> These men were also in charge of Solomon's work projects; there were a total of 550 men who supervised the workers.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Solomon built the terrace as soon as Pharaoh's daughter moved up from the city of David to the palace Solomon built for her.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Three times a year Solomon offered burnt offerings and peace offerings on the altar he had built for the LORD, burning incense along with them before the LORD. He made the temple his official worship place.</VERS>\n\t\t\t<VERS vnumber=\"26\"> King Solomon also built ships in Ezion Geber, which is located near Elat in the land of Edom, on the shore of the Red Sea. </VERS>\n\t\t\t<VERS vnumber=\"27\"> Hiram sent his fleet and some of his sailors, who were well acquainted with the sea, to serve with Solomon's men.</VERS>\n\t\t\t<VERS vnumber=\"28\"> They sailed to Ophir, took from there four hundred twenty talents of gold, and then brought them to King Solomon.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"10\">\n\t\t\t<VERS vnumber=\"1\"> When the queen of Sheba heard about Solomon, she came to challenge him with difficult questions.</VERS>\n\t\t\t<VERS vnumber=\"2\"> She arrived in Jerusalem with a great display of pomp, bringing with her camels carrying spices, a very large quantity of gold, and precious gems. She visited Solomon and discussed with him everything that was on her mind. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Solomon answered all her questions; there was no question too complex for the king.</VERS>\n\t\t\t<VERS vnumber=\"4\"> When the queen of Sheba saw for herself Solomon's extensive wisdom, the palace he had built, </VERS>\n\t\t\t<VERS vnumber=\"5\"> the food in his banquet hall, his servants and attendants, their robes, his cupbearers, and his burnt offerings which he presented in the LORD's temple, she was amazed.</VERS>\n\t\t\t<VERS vnumber=\"6\"> She said to the king, \"The report I heard in my own country about your wise sayings and insight was true! </VERS>\n\t\t\t<VERS vnumber=\"7\"> I did not believe these things until I came and saw them with my own eyes. Indeed, I didn't hear even half the story! Your wisdom and wealth surpass what was reported to me. </VERS>\n\t\t\t<VERS vnumber=\"8\"> Your attendants, who stand before you at all times and hear your wise sayings, are truly happy!</VERS>\n\t\t\t<VERS vnumber=\"9\"> May the LORD your God be praised because he favored you by placing you on the throne of Israel! Because of the LORD's eternal love for Israel, he made you king so you could make just and right decisions.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> She gave the king 120 talents of gold, a very large quantity of spices, and precious gems. The quantity of spices the queen of Sheba gave King Solomon has never been matched.</VERS>\n\t\t\t<VERS vnumber=\"11\"> (Hiram's fleet, which carried gold from Ophir, also brought from Ophir a very large quantity of fine timber and precious gems.</VERS>\n\t\t\t<VERS vnumber=\"12\"> With the timber the king made supports for the LORD's temple and for the royal palace and stringed instruments for the musicians. No one has seen so much of this fine timber to this very day.)</VERS>\n\t\t\t<VERS vnumber=\"13\"> King Solomon gave the queen of Sheba everything she requested, besides what he had freely offered her. Then she left and returned to her homeland with her attendants.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Solomon received 666 talents of gold per year,</VERS>\n\t\t\t<VERS vnumber=\"15\"> besides what he collected from the merchants, traders, Arabian kings, and governors of the land. </VERS>\n\t\t\t<VERS vnumber=\"16\"> King Solomon made two hundred large shields of hammered gold; 600 measures of gold were used for each shield. </VERS>\n\t\t\t<VERS vnumber=\"17\"> He also made three hundred small shields of hammered gold; three minas of gold were used for each of these shields. The king placed them in the Palace of the Lebanon Forest.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The king made a large throne decorated with ivory and overlaid it with pure gold.</VERS>\n\t\t\t<VERS vnumber=\"19\"> There were six steps leading up to the throne, and the back of it was rounded on top. The throne had two armrests with a statue of a lion standing on each side.</VERS>\n\t\t\t<VERS vnumber=\"20\"> There were twelve statues of lions on the six steps, one lion at each end of each step. There was nothing like it in any other kingdom.</VERS>\n\t\t\t<VERS vnumber=\"21\"> All of King Solomon's cups were made of gold, and all the household items in the Palace of the Lebanon Forest were made of pure gold. There were no silver items, for silver was not considered very valuable in Solomon's time.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Along with Hiram's fleet, the king had a fleet of large merchant ships that sailed the sea. Once every three years the fleet came into port with cargoes of gold, silver, ivory, apes, and peacocks.</VERS>\n\t\t\t<VERS vnumber=\"23\"> King Solomon was wealthier and wiser than any of the kings of the earth.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Everyone in the world wanted to visit Solomon to see him display his God-given wisdom.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Year after year visitors brought their gifts, which included items of silver, items of gold, clothes, perfume, spices, horses, and mules.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Solomon accumulated chariots and horses. He had 1,400 chariots and 12,000 horses. He kept them in assigned cities and in Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"27\"> The king made silver as plentiful in Jerusalem as stones; cedar was as plentiful as sycamore fig trees are in the lowlands.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Solomon acquired his horses from Egypt and from Que; the king's traders purchased them from Que. </VERS>\n\t\t\t<VERS vnumber=\"29\"> They paid 600 silver pieces for each chariot from Egypt and 150 silver pieces for each horse. They also sold chariots and horses to all the kings of the Hittites and to the kings of Syria.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"11\">\n\t\t\t<VERS vnumber=\"1\"> King Solomon fell in love with many foreign women (besides Pharaoh's daughter), including Moabites, Ammonites, Edomites, Sidonians, and Hittites.</VERS>\n\t\t\t<VERS vnumber=\"2\"> They came from nations about which the LORD had warned the Israelites, \"You must not establish friendly relations with them! If you do, they will surely shift your allegiance to their gods.\" But Solomon was irresistibly attracted to them.</VERS>\n\t\t\t<VERS vnumber=\"3\"> He had 700 royal wives and 300 concubines; his wives had a powerful influence over him.</VERS>\n\t\t\t<VERS vnumber=\"4\"> When Solomon became old, his wives shifted his allegiance to other gods; he was not wholeheartedly devoted to the LORD his God, as his father David had been.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Solomon worshiped the Sidonian goddess Astarte and the detestable Ammonite god Milcom.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Solomon did evil in the LORD's sight; he did not remain loyal to the LORD, like his father David had. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Furthermore, on the hill east of Jerusalem Solomon built a high place for the detestable Moabite god Chemosh and for the detestable Ammonite god Milcom.</VERS>\n\t\t\t<VERS vnumber=\"8\"> He built high places for all his foreign wives so they could burn incense and make sacrifices to their gods.</VERS>\n\t\t\t<VERS vnumber=\"9\"> The LORD was angry with Solomon because he had shifted his allegiance away from the LORD, the God of Israel, who had appeared to him on two occasions</VERS>\n\t\t\t<VERS vnumber=\"10\"> and had warned him about this very thing, so that he would not follow other gods. But he did not obey the LORD's command. </VERS>\n\t\t\t<VERS vnumber=\"11\"> So the LORD said to Solomon, \"Because you insist on doing these things and have not kept the covenantal rules I gave you, I will surely tear the kingdom away from you and give it to your servant. </VERS>\n\t\t\t<VERS vnumber=\"12\"> However, for your father David's sake I will not do this while you are alive. I will tear it away from your son's hand instead.</VERS>\n\t\t\t<VERS vnumber=\"13\"> But I will not tear away the entire kingdom; I will leave your son one tribe for my servant David's sake and for the sake of my chosen city Jerusalem.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> The LORD brought against Solomon an enemy, Hadad the Edomite, a descendant of the Edomite king. </VERS>\n\t\t\t<VERS vnumber=\"15\"> During David's campaign against Edom, Joab, the commander of the army, while on a mission to bury the dead, killed every male in Edom. </VERS>\n\t\t\t<VERS vnumber=\"16\"> For six months Joab and the entire Israelite army stayed there until they had exterminated every male in Edom.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Hadad, who was only a small boy at the time, escaped with some of his father's Edomite servants and headed for Egypt.</VERS>\n\t\t\t<VERS vnumber=\"18\"> They went from Midian to Paran; they took some men from Paran and went to Egypt. Pharaoh, king of Egypt, supplied him with a house and food and even assigned him some land.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Pharaoh liked Hadad so well he gave him his sister-in-law (Queen Tahpenes' sister) as a wife.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Tahpenes' sister gave birth to his son, named Genubath. Tahpenes raised him in Pharaoh's palace; Genubath grew up in Pharaoh's palace among Pharaoh's sons. </VERS>\n\t\t\t<VERS vnumber=\"21\"> While in Egypt Hadad heard that David had passed away and that Joab, the commander of the army, was dead. So Hadad asked Pharaoh, \"Give me permission to leave so I can return to my homeland.\" </VERS>\n\t\t\t<VERS vnumber=\"22\"> Pharaoh said to him, \"What do you lack here that makes you want to go to your homeland?\" Hadad replied, \"Nothing, but please give me permission to leave.\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> God also brought against Solomon another enemy, Rezon son of Eliada who had run away from his master, King Hadadezer of Zobah. </VERS>\n\t\t\t<VERS vnumber=\"24\"> He gathered some men and organized a raiding band. When David tried to kill them, they went to Damascus, where they settled down and gained control of the city. </VERS>\n\t\t\t<VERS vnumber=\"25\"> He was Israel's enemy throughout Solomon's reign and, like Hadad, caused trouble. He loathed Israel and ruled over Syria.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Jeroboam son of Nebat, one of Solomon's servants, rebelled against the king. He was an Ephraimite from Zeredah whose mother was a widow named Zeruah. </VERS>\n\t\t\t<VERS vnumber=\"27\"> This is what prompted him to rebel against the king: Solomon built a terrace and he closed up a gap in the wall of the city of his father David.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Jeroboam was a talented man; when Solomon saw that the young man was an accomplished worker, he made him the leader of the work crew from the tribe of Joseph. </VERS>\n\t\t\t<VERS vnumber=\"29\"> At that time, when Jeroboam had left Jerusalem, the prophet Ahijah the Shilonite met him on the road; the two of them were alone in the open country. Ahijah was wearing a brand new robe, </VERS>\n\t\t\t<VERS vnumber=\"30\"> and he grabbed the robe and tore it into twelve pieces. </VERS>\n\t\t\t<VERS vnumber=\"31\"> Then he told Jeroboam, \"Take ten pieces, for this is what the LORD God of Israel says: 'Look, I am about to tear the kingdom from Solomon's hand and I will give ten tribes to you.</VERS>\n\t\t\t<VERS vnumber=\"32\"> He will retain one tribe, for my servant David's sake and for the sake of Jerusalem, the city I have chosen out of all the tribes of Israel.</VERS>\n\t\t\t<VERS vnumber=\"33\"> I am taking the kingdom from him because they have abandoned me and worshiped the Sidonian goddess Astarte, the Moabite god Chemosh, and the Ammonite god Milcom. They have not followed my instructions by doing what I approve and obeying my rules and regulations, like Solomon's father David did.</VERS>\n\t\t\t<VERS vnumber=\"34\"> I will not take the whole kingdom from his hand. I will allow him to be ruler for the rest of his life for the sake of my chosen servant David who kept my commandments and rules.</VERS>\n\t\t\t<VERS vnumber=\"35\"> I will take the kingdom from the hand of his son and give ten tribes to you.</VERS>\n\t\t\t<VERS vnumber=\"36\"> I will leave his son one tribe so my servant David's dynasty may continue to serve me in Jerusalem, the city I have chosen as my home.</VERS>\n\t\t\t<VERS vnumber=\"37\"> I will select you; you will rule over all you desire to have and you will be king over Israel. </VERS>\n\t\t\t<VERS vnumber=\"38\"> You must obey all I command you to do, follow my instructions, do what I approve, and keep my rules and commandments, like my servant David did. Then I will be with you and establish for you a lasting dynasty, as I did for David; I will give you Israel. </VERS>\n\t\t\t<VERS vnumber=\"39\"> I will humiliate David's descendants because of this, but not forever.\"</VERS>\n\t\t\t<VERS vnumber=\"40\"> Solomon tried to kill Jeroboam, but Jeroboam escaped to Egypt and found refuge with King Shishak of Egypt. He stayed in Egypt until Solomon died.</VERS>\n\t\t\t<VERS vnumber=\"41\"> The rest of the events of Solomon's reign, including all his accomplishments and his wise decisions, are recorded in the scroll called the Annals of Solomon.</VERS>\n\t\t\t<VERS vnumber=\"42\"> Solomon ruled over all Israel from Jerusalem for forty years. </VERS>\n\t\t\t<VERS vnumber=\"43\"> Then Solomon passed away and was buried in the city of his father David. His son Rehoboam replaced him as king.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"12\">\n\t\t\t<VERS vnumber=\"1\"> Rehoboam traveled to Shechem, for all Israel had gathered in Shechem to make Rehoboam king. </VERS>\n\t\t\t<VERS vnumber=\"2\">  When Jeroboam son of Nebat heard the news, he was still in Egypt, where he had fled from King Solomon and had been living ever since.</VERS>\n\t\t\t<VERS vnumber=\"3\"> They sent for him, and Jeroboam and the whole Israelite assembly came and spoke to Rehoboam, saying, </VERS>\n\t\t\t<VERS vnumber=\"4\"> \"Your father made us work too hard. Now if you lighten the demands he made and don't make us work as hard, we will serve you.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> He said to them, \"Go away for three days, then return to me.\" So the people went away.</VERS>\n\t\t\t<VERS vnumber=\"6\"> King Rehoboam consulted with the older advisers who had served his father Solomon when he had been alive. He asked them, \"How do you advise me to answer these people?\" </VERS>\n\t\t\t<VERS vnumber=\"7\"> They said to him, \"Today if you show a willingness to help these people and grant their request, they will be your servants from this time forward.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> But Rehoboam rejected their advice and consulted the young advisers who served him, with whom he had grown up.</VERS>\n\t\t\t<VERS vnumber=\"9\"> He asked them, \"How do you advise me to respond to these people who said to me, 'Lessen the demands your father placed on us'?\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> The young advisers with whom Rehoboam had grown up said to him, \"Say this to these people who have said to you, 'Your father made us work hard, but now lighten our burden.' Say this to them: 'I am a lot harsher than my father!</VERS>\n\t\t\t<VERS vnumber=\"11\"> My father imposed heavy demands on you; I will make them even heavier. My father punished you with ordinary whips; I will punish you with whips that really sting your flesh.'\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> Jeroboam and all the people reported to Rehoboam on the third day, just as the king had ordered when he said, \"Return to me on the third day.\" </VERS>\n\t\t\t<VERS vnumber=\"13\"> The king responded to the people harshly. He rejected the advice of the older men</VERS>\n\t\t\t<VERS vnumber=\"14\"> and followed the advice of the younger ones. He said, \"My father imposed heavy demands on you; I will make them even heavier. My father punished you with ordinary whips; I will punish you with whips that really sting your flesh.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> The king refused to listen to the people, because the LORD was instigating this turn of events so that he might bring to pass the prophetic announcement he had made through Ahijah the Shilonite to Jeroboam son of Nebat.</VERS>\n\t\t\t<VERS vnumber=\"16\"> When all Israel saw that the king refused to listen to them, the people answered the king, \"We have no portion in David, no share in the son of Jesse! Return to your homes, O Israel! Now, look after your own dynasty, O David!\" So Israel returned to their homes.</VERS>\n\t\t\t<VERS vnumber=\"17\"> (Rehoboam continued to rule over the Israelites who lived in the cities of Judah.)</VERS>\n\t\t\t<VERS vnumber=\"18\"> King Rehoboam sent Adoniram, the supervisor of the work crews, out after them, but all Israel stoned him to death. King Rehoboam managed to jump into his chariot and escape to Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"19\"> So Israel has been in rebellion against the Davidic dynasty to this very day.</VERS>\n\t\t\t<VERS vnumber=\"20\"> When all Israel heard that Jeroboam had returned, they summoned him to the assembly and made him king over all Israel. No one except the tribe of Judah remained loyal to the Davidic dynasty.</VERS>\n\t\t\t<VERS vnumber=\"21\"> When Rehoboam arrived in Jerusalem, he summoned 180,000 skilled warriors from all of Judah and the tribe of Benjamin to attack Israel and restore the kingdom to Rehoboam son of Solomon. </VERS>\n\t\t\t<VERS vnumber=\"22\"> But God told Shemaiah the prophet,</VERS>\n\t\t\t<VERS vnumber=\"23\"> \"Say this to King Rehoboam son of Solomon of Judah, and to all Judah and Benjamin, as well as the rest of the people,</VERS>\n\t\t\t<VERS vnumber=\"24\"> 'The LORD says this: \"Do not attack and make war with your brothers, the Israelites. Each of you go home, for I have caused this to happen.\"'\" They obeyed the LORD and went home as the LORD had ordered them to do.</VERS>\n\t\t\t<VERS vnumber=\"25\">  Jeroboam built up Shechem in the Ephraimite hill country and lived there. From there he went out and built up Penuel. </VERS>\n\t\t\t<VERS vnumber=\"26\"> Jeroboam then thought to himself: \"Now the Davidic dynasty could regain the kingdom.</VERS>\n\t\t\t<VERS vnumber=\"27\"> If these people go up to offer sacrifices in the LORD's temple in Jerusalem, their loyalty could shift to their former master, King Rehoboam of Judah. They might kill me and return to King Rehoboam of Judah.\" </VERS>\n\t\t\t<VERS vnumber=\"28\"> After the king had consulted with his advisers, he made two golden calves. Then he said to the people, \"It is too much trouble for you to go up to Jerusalem. Look, Israel, here are your gods who brought you up from the land of Egypt.\" </VERS>\n\t\t\t<VERS vnumber=\"29\"> He put one in Bethel and the other in Dan. </VERS>\n\t\t\t<VERS vnumber=\"30\"> This caused Israel to sin; the people went to Bethel and Dan to worship the calves.</VERS>\n\t\t\t<VERS vnumber=\"31\"> He built temples on the high places and appointed as priests people who were not Levites. </VERS>\n\t\t\t<VERS vnumber=\"32\"> Jeroboam inaugurated a festival on the fifteenth day of the eighth month, like the festival celebrated in Judah. On the altar in Bethel he offered sacrifices to the calves he had made. In Bethel he also appointed priests for the high places he had made.</VERS>\n\t\t\t<VERS vnumber=\"33\"> On the fifteenth day of the eighth month (a date he had arbitrarily chosen) Jeroboam offered sacrifices on the altar he had made in Bethel. He inaugurated a festival for the Israelites and went up to the altar to offer sacrifices. </VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"13\">\n\t\t\t<VERS vnumber=\"1\"> Just then a prophet from Judah, sent by the LORD, arrived in Bethel, as Jeroboam was standing near the altar ready to offer a sacrifice.</VERS>\n\t\t\t<VERS vnumber=\"2\"> With the authority of the LORD he cried out against the altar, \"O altar, altar! This is what the LORD says, 'Look, a son named Josiah will be born to the Davidic dynasty. He will sacrifice on you the priests of the high places who offer sacrifices on you. Human bones will be burned on you.'\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> That day he also announced a sign, \"This is the sign the LORD has predetermined: The altar will be split open and the ashes on it will fall to the ground.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> When the king heard what the prophet cried out against the altar in Bethel, Jeroboam, standing at the altar, extended his hand and ordered, \"Seize him!\" The hand he had extended shriveled up and he could not pull it back. </VERS>\n\t\t\t<VERS vnumber=\"5\"> The altar split open and the ashes fell from the altar to the ground, in fulfillment of the sign the prophet had announced with the LORD's authority.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The king pled with the prophet, \"Seek the favor of the LORD your God and pray for me, so that my hand may be restored.\" So the prophet sought the LORD's favor and the king's hand was restored to its former condition.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The king then said to the prophet, \"Come home with me and have something to eat. I'd like to give a present.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> But the prophet said to the king, \"Even if you were to give me half your possessions, I could not go with you and eat and drink in this place. </VERS>\n\t\t\t<VERS vnumber=\"9\"> For the LORD gave me strict orders, 'Do not eat or drink there and do not go home the way you came.'\" </VERS>\n\t\t\t<VERS vnumber=\"10\"> So he started back on another road; he did not travel back on the same road he had taken to Bethel.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Now there was an old prophet living in Bethel. When his sons came home, they told their father everything the prophet had done in Bethel that day and all the words he had spoken to the king.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Their father asked them, \"Which road did he take?\" His sons showed him the road the prophet from Judah had taken. </VERS>\n\t\t\t<VERS vnumber=\"13\"> He then told his sons, \"Saddle the donkey for me.\" When they had saddled the donkey for him, he mounted it</VERS>\n\t\t\t<VERS vnumber=\"14\"> and took off after the prophet, whom he found sitting under an oak tree. He asked him, \"Are you the prophet from Judah?\" He answered, \"Yes, I am.\" </VERS>\n\t\t\t<VERS vnumber=\"15\"> He then said to him, \"Come home with me and eat something.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> But he replied, \"I can't go back with you or eat and drink with you in this place. </VERS>\n\t\t\t<VERS vnumber=\"17\"> For the LORD gave me strict orders, 'Do not eat or drink there; do not go back the way you came.'\" </VERS>\n\t\t\t<VERS vnumber=\"18\"> The old prophet then said, \"I too am a prophet like you. An angel told me with the LORD's authority, 'Bring him back with you to your house so he can eat and drink.'\" But he was lying to him.</VERS>\n\t\t\t<VERS vnumber=\"19\"> So the prophet went back with him and ate and drank in his house.</VERS>\n\t\t\t<VERS vnumber=\"20\"> While they were sitting at the table, the LORD spoke through the old prophet</VERS>\n\t\t\t<VERS vnumber=\"21\"> and he cried out to the prophet from Judah, \"This is what the LORD says, 'You have rebelled against the LORD and have not obeyed the command the LORD your God gave you. </VERS>\n\t\t\t<VERS vnumber=\"22\"> You went back and ate and drank in this place, even though he said to you, \"Do not eat or drink there.\" Therefore your corpse will not be buried in your ancestral tomb.'\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> When the prophet from Judah finished his meal, the old prophet saddled his visitor's donkey for him.</VERS>\n\t\t\t<VERS vnumber=\"24\"> As the prophet from Judah was traveling, a lion attacked him on the road and killed him. His corpse was lying on the road, and the donkey and the lion just stood there beside it.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Some men came by and saw the corpse lying in the road with the lion standing beside it. They went and reported what they had seen in the city where the old prophet lived. </VERS>\n\t\t\t<VERS vnumber=\"26\"> When the old prophet who had invited him to his house heard the news, he said, \"It is the prophet who rebelled against the LORD. The LORD delivered him over to the lion and it ripped him up and killed him, just as the LORD warned him.\"</VERS>\n\t\t\t<VERS vnumber=\"27\"> He told his sons, \"Saddle my donkey,\" and they did so.</VERS>\n\t\t\t<VERS vnumber=\"28\"> He went and found the corpse lying in the road with the donkey and the lion standing beside it; the lion had neither eaten the corpse nor attacked the donkey. </VERS>\n\t\t\t<VERS vnumber=\"29\"> The old prophet picked up the corpse of the prophet, put it on the donkey, and brought it back. The old prophet then entered the city to mourn him and to bury him. </VERS>\n\t\t\t<VERS vnumber=\"30\"> He put the corpse into his own tomb, and they mourned over him, saying, \"Ah, my brother!\" </VERS>\n\t\t\t<VERS vnumber=\"31\"> After he buried him, he said to his sons, \"When I die, bury me in the tomb where the prophet is buried; put my bones right beside his bones, </VERS>\n\t\t\t<VERS vnumber=\"32\"> for the prophecy he announced with the LORD's authority against the altar in Bethel and against all the temples on the high places in the cities of the north will certainly be fulfilled.\"</VERS>\n\t\t\t<VERS vnumber=\"33\"> After this happened, Jeroboam still did not change his evil ways; he continued to appoint common people as priests at the high places. Anyone who wanted the job he consecrated as a priest.</VERS>\n\t\t\t<VERS vnumber=\"34\"> This sin caused Jeroboam's dynasty to come to an end and to be destroyed from the face of the earth.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"14\">\n\t\t\t<VERS vnumber=\"1\">  At that time Jeroboam's son Abijah became sick. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Jeroboam told his wife, \"Disguise yourself so that people cannot recognize you are Jeroboam's wife. Then go to Shiloh; Ahijah the prophet, who told me I would rule over this nation, lives there.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Take ten loaves of bread, some small cakes, and a container of honey and visit him. He will tell you what will happen to the boy.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> Jeroboam's wife did as she was told. She went to Shiloh and visited Ahijah. Now Ahijah could not see; he had lost his eyesight in his old age.</VERS>\n\t\t\t<VERS vnumber=\"5\"> But the LORD had told Ahijah, \"Look, Jeroboam's wife is coming to find out from you what will happen to her son, for he is sick. Tell her so-and-so. When she comes, she will be in a disguise.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> When Ahijah heard the sound of her footsteps as she came through the door, he said, \"Come on in, wife of Jeroboam! Why are you pretending to be someone else? I have been commissioned to give you bad news.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Go, tell Jeroboam, 'This is what the LORD God of Israel says: \"I raised you up from among the people and made you ruler over my people Israel. </VERS>\n\t\t\t<VERS vnumber=\"8\"> I tore the kingdom away from the Davidic dynasty and gave it to you. But you are not like my servant David, who kept my commandments and followed me wholeheartedly by doing only what I approve.</VERS>\n\t\t\t<VERS vnumber=\"9\"> You have sinned more than all who came before you. You went and angered me by making other gods, formed out of metal; you have completely disregarded me.</VERS>\n\t\t\t<VERS vnumber=\"10\"> So I am ready to bring disaster on the dynasty of Jeroboam. I will cut off every last male belonging to Jeroboam in Israel, including even the weak and incapacitated. I will burn up the dynasty of Jeroboam, just as one burns manure until it is completely consumed.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Dogs will eat the members of your family who die in the city, and the birds of the sky will eat the ones who die in the country.\"' Indeed, the LORD has announced it!</VERS>\n\t\t\t<VERS vnumber=\"12\"> \"As for you, get up and go home. When you set foot in the city, the boy will die.</VERS>\n\t\t\t<VERS vnumber=\"13\"> All Israel will mourn him and bury him. He is the only one in Jeroboam's family who will receive a decent burial, for he is the only one in whom the LORD God of Israel found anything good. </VERS>\n\t\t\t<VERS vnumber=\"14\"> The LORD will raise up a king over Israel who will cut off Jeroboam's dynasty. It is ready to happen!</VERS>\n\t\t\t<VERS vnumber=\"15\"> The LORD will attack Israel, making it like a reed that sways in the water. He will remove Israel from this good land he gave to their ancestors and scatter them beyond the Euphrates River, because they angered the LORD by making Asherah poles.</VERS>\n\t\t\t<VERS vnumber=\"16\"> He will hand Israel over to their enemies because of the sins which Jeroboam committed and which he made Israel commit.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> So Jeroboam's wife got up and went back to Tirzah. As she crossed the threshold of the house, the boy died. </VERS>\n\t\t\t<VERS vnumber=\"18\"> All Israel buried him and mourned for him, just as the LORD had predicted through his servant the prophet Ahijah.</VERS>\n\t\t\t<VERS vnumber=\"19\"> The rest of the events of Jeroboam's reign, including the details of his battles and rule, are recorded in the scroll called the Annals of the Kings of Israel.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Jeroboam ruled for twenty-two years; then he passed away. His son Nadab replaced him as king.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Now Rehoboam son of Solomon ruled in Judah. He was forty-one years old when he became king and he ruled for seventeen years in Jerusalem, the city the LORD chose from all the tribes of Israel to be his home. His mother was an Ammonite woman named Naamah.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Judah did evil in the sight of the LORD. They made him more jealous by their sins than their ancestors had done.</VERS>\n\t\t\t<VERS vnumber=\"23\"> They even built for themselves high places, sacred pillars, and Asherah poles on every high hill and under every green tree.</VERS>\n\t\t\t<VERS vnumber=\"24\"> There were also male cultic prostitutes in the land. They committed the same horrible sins as the nations that the LORD had driven out from before the Israelites.</VERS>\n\t\t\t<VERS vnumber=\"25\"> In King Rehoboam's fifth year, King Shishak of Egypt attacked Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"26\"> He took away the treasures of the LORD's temple and of the royal palace; he took everything, including all the golden shields that Solomon had made.</VERS>\n\t\t\t<VERS vnumber=\"27\"> King Rehoboam made bronze shields to replace them and assigned them to the officers of the royal guard who protected the entrance to the royal palace. </VERS>\n\t\t\t<VERS vnumber=\"28\"> Whenever the king visited the LORD's temple, the royal guard carried them and then brought them back to the guardroom.</VERS>\n\t\t\t<VERS vnumber=\"29\"> The rest of the events of Rehoboam's reign, including his accomplishments, are recorded in the scroll called the Annals of the Kings of Judah.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Rehoboam and Jeroboam were continually at war with each other.</VERS>\n\t\t\t<VERS vnumber=\"31\"> Rehoboam passed away and was buried with his ancestors in the city of David. His mother was an Ammonite named Naamah. His son Abijah replaced him as king.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"15\">\n\t\t\t<VERS vnumber=\"1\"> In the eighteenth year of the reign of Jeroboam son of Nebat, Abijah became king over Judah. </VERS>\n\t\t\t<VERS vnumber=\"2\"> He ruled for three years in Jerusalem. His mother was Maacah, the daughter of Abishalom.</VERS>\n\t\t\t<VERS vnumber=\"3\"> He followed all the sinful practices of his father before him. He was not wholeheartedly devoted to the LORD his God, as his ancestor David had been.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Nevertheless for David's sake the LORD his God maintained his dynasty in Jerusalem by giving him a son to succeed him and by protecting Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"5\"> He did this because David had done what he approved and had not disregarded any of his commandments his entire lifetime, except for the incident involving Uriah the Hittite. </VERS>\n\t\t\t<VERS vnumber=\"6\"> Rehoboam and Jeroboam were continually at war with each other throughout Abijah's lifetime. </VERS>\n\t\t\t<VERS vnumber=\"7\"> The rest of the events of Abijah's reign, including all his accomplishments, are recorded in the scroll called the Annals of the Kings of Judah. Abijah and Jeroboam had been at war with each other. </VERS>\n\t\t\t<VERS vnumber=\"8\"> Abijah passed away and was buried in the city of David. His son Asa replaced him as king.</VERS>\n\t\t\t<VERS vnumber=\"9\"> In the twentieth year of Jeroboam's reign over Israel, Asa became the king of Judah.</VERS>\n\t\t\t<VERS vnumber=\"10\"> He ruled for forty-one years in Jerusalem. His grandmother was Maacah daughter of Abishalom. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Asa did what the LORD approved like his ancestor David had done. </VERS>\n\t\t\t<VERS vnumber=\"12\"> He removed the male cultic prostitutes from the land and got rid of all the disgusting idols his ancestors had made. </VERS>\n\t\t\t<VERS vnumber=\"13\"> He also removed Maacah his grandmother from her position as queen because she had made a loathsome Asherah pole. Asa cut down her Asherah pole and burned it in the Kidron Valley. </VERS>\n\t\t\t<VERS vnumber=\"14\"> The high places were not eliminated, yet Asa was wholeheartedly devoted to the LORD throughout his lifetime.</VERS>\n\t\t\t<VERS vnumber=\"15\"> He brought the holy items that he and his father had made into the LORD's temple, including the silver, gold, and other articles.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Now Asa and King Baasha of Israel were continually at war with each other.</VERS>\n\t\t\t<VERS vnumber=\"17\"> King Baasha of Israel attacked Judah and established Ramah as a military outpost to prevent anyone from leaving or entering the land of King Asa of Judah.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Asa took all the silver and gold that was left in the treasuries of the LORD's temple and of the royal palace and handed it to his servants. He then told them to deliver it to Ben Hadad son of Tabrimmon, the son of Hezion, king of Syria, ruler in Damascus, along with this message: </VERS>\n\t\t\t<VERS vnumber=\"19\"> \"I want to make a treaty with you, like the one our fathers made. See, I have sent you silver and gold as a present. Break your treaty with King Baasha of Israel, so he will retreat from my land.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> Ben Hadad accepted King Asa's offer and ordered his army commanders to attack the cities of Israel. They conquered Ijon, Dan, Abel Beth Maacah, and all the territory of Naphtali, including the region of Kinnereth.</VERS>\n\t\t\t<VERS vnumber=\"21\"> When Baasha heard the news, he stopped fortifying Ramah and settled down in Tirzah. </VERS>\n\t\t\t<VERS vnumber=\"22\"> King Asa ordered all the men of Judah (no exemptions were granted) to carry away the stones and wood that Baasha had used to build Ramah. King Asa used the materials to build up Geba (in Benjamin) and Mizpah.</VERS>\n\t\t\t<VERS vnumber=\"23\"> The rest of the events of Asa's reign, including all his successes and accomplishments, as well as a record of the cities he built, are recorded in the scroll called the Annals of the Kings of Judah. Yet when he was very old he developed a foot disease.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Asa passed away and was buried with his ancestors in the city of his ancestor David. His son Jehoshaphat replaced him as king.</VERS>\n\t\t\t<VERS vnumber=\"25\"> In the second year of Asa's reign over Judah, Jeroboam's son Nadab became the king of Israel; he ruled Israel for two years.</VERS>\n\t\t\t<VERS vnumber=\"26\"> He did evil in the sight of the LORD. He followed in his father's footsteps and encouraged Israel to sin.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Baasha son of Ahijah, from the tribe of Issachar, conspired against Nadab and assassinated him in Gibbethon, which was in Philistine territory. This happened while Nadab and all the Israelite army were besieging Gibbethon. </VERS>\n\t\t\t<VERS vnumber=\"28\"> Baasha killed him in the third year of Asa's reign over Judah and replaced him as king.</VERS>\n\t\t\t<VERS vnumber=\"29\"> When he became king, he executed Jeroboam's entire family. He wiped out everyone who breathed, just as the LORD had predicted through his servant Ahijah the Shilonite. </VERS>\n\t\t\t<VERS vnumber=\"30\"> This happened because of the sins which Jeroboam committed and which he made Israel commit. These sins angered the LORD God of Israel.</VERS>\n\t\t\t<VERS vnumber=\"31\"> The rest of the events of Nadab's reign, including all his accomplishments, are recorded in the scroll called the Annals of the Kings of Israel.</VERS>\n\t\t\t<VERS vnumber=\"32\"> Asa and King Nadab of Israel were continually at war with each other.</VERS>\n\t\t\t<VERS vnumber=\"33\"> In the third year of Asa's reign over Judah, Baasha son of Ahijah became king over all Israel in Tirzah; he ruled for twenty-four years.</VERS>\n\t\t\t<VERS vnumber=\"34\"> He did evil in the sight of the LORD; he followed in Jeroboam's footsteps and encouraged Israel to sin.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"16\">\n\t\t\t<VERS vnumber=\"1\"> Jehu son of Hanani received from the LORD this message predicting Baasha's downfall:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"I raised you up from the dust and made you ruler over my people Israel. Yet you followed in Jeroboam's footsteps and encouraged my people Israel to sin; their sins have made me angry.</VERS>\n\t\t\t<VERS vnumber=\"3\"> So I am ready to burn up Baasha and his family, and make your family like the family of Jeroboam son of Nebat. </VERS>\n\t\t\t<VERS vnumber=\"4\"> Dogs will eat the members of Baasha's family who die in the city, and the birds of the sky will eat the ones who die in the country.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> The rest of the events of Baasha's reign, including his accomplishments and successes, are recorded in the scroll called the Annals of the Kings of Israel.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Baasha passed away and was buried in Tirzah. His son Elah replaced him as king. </VERS>\n\t\t\t<VERS vnumber=\"7\"> The prophet Jehu son of Hanani received from the LORD the message predicting the downfall of Baasha and his family because of all the evil Baasha had done in the sight of the LORD. His actions angered the LORD (including the way he had destroyed Jeroboam's dynasty), so that his family ended up like Jeroboam's.</VERS>\n\t\t\t<VERS vnumber=\"8\"> In the twenty-sixth year of King Asa's reign over Judah, Baasha's son Elah became king over Israel; he ruled in Tirzah for two years.</VERS>\n\t\t\t<VERS vnumber=\"9\"> His servant Zimri, a commander of half of his chariot force, conspired against him. While Elah was drinking heavily at the house of Arza, who supervised the palace in Tirzah, </VERS>\n\t\t\t<VERS vnumber=\"10\"> Zimri came in and struck him dead. (This happened in the twenty-seventh year of Asa's reign over Judah.) Zimri replaced Elah as king.</VERS>\n\t\t\t<VERS vnumber=\"11\"> When he became king and occupied the throne, he killed Baasha's entire family. He did not spare any male belonging to him; he killed his relatives and his friends.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Zimri destroyed Baasha's entire family, just as the LORD had predicted to Baasha through Jehu the prophet. </VERS>\n\t\t\t<VERS vnumber=\"13\"> This happened because of all the sins which Baasha and his son Elah committed and which they made Israel commit. They angered the LORD God of Israel with their worthless idols.</VERS>\n\t\t\t<VERS vnumber=\"14\"> The rest of the events of Elah's reign, including all his accomplishments, are recorded in the scroll called the Annals of the Kings of Israel.</VERS>\n\t\t\t<VERS vnumber=\"15\"> In the twenty-seventh year of Asa's reign over Judah, Zimri became king over Israel; he ruled for seven days in Tirzah. Zimri's revolt took place while the army was deployed in Gibbethon, which was in Philistine territory. </VERS>\n\t\t\t<VERS vnumber=\"16\"> While deployed there, the army received this report: \"Zimri has conspired against the king and assassinated him.\" So all Israel made Omri, the commander of the army, king over Israel that very day in the camp. </VERS>\n\t\t\t<VERS vnumber=\"17\"> Omri and all Israel went up from Gibbethon and besieged Tirzah.</VERS>\n\t\t\t<VERS vnumber=\"18\"> When Zimri saw that the city was captured, he went into the fortified area of the royal palace. He set the palace on fire and died in the flames.</VERS>\n\t\t\t<VERS vnumber=\"19\"> This happened because of the sins he committed. He did evil in the sight of the LORD and followed in Jeroboam's footsteps and encouraged Israel to continue sinning.</VERS>\n\t\t\t<VERS vnumber=\"20\"> The rest of the events of Zimri's reign, including the details of his revolt, are recorded in the scroll called the Annals of the Kings of Israel.</VERS>\n\t\t\t<VERS vnumber=\"21\"> At that time the people of Israel were divided in their loyalties. Half the people supported Tibni son of Ginath and wanted to make him king; the other half supported Omri.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Omri's supporters were stronger than those who supported Tibni son of Ginath. Tibni died; Omri became king.</VERS>\n\t\t\t<VERS vnumber=\"23\"> In the thirty-first year of Asa's reign over Judah, Omri became king over Israel. He ruled for twelve years, six of them in Tirzah.</VERS>\n\t\t\t<VERS vnumber=\"24\"> He purchased the hill of Samaria from Shemer for two talents of silver. He launched a construction project there and named the city he built after Shemer, the former owner of the hill of Samaria. </VERS>\n\t\t\t<VERS vnumber=\"25\"> Omri did more evil in the sight of the LORD than all who were before him. </VERS>\n\t\t\t<VERS vnumber=\"26\"> He followed in the footsteps of Jeroboam son of Nebat and encouraged Israel to sin; they angered the LORD God of Israel with their worthless idols.</VERS>\n\t\t\t<VERS vnumber=\"27\"> The rest of the events of Omri's reign, including his accomplishments and successes, are recorded in the scroll called the Annals of the Kings of Israel.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Omri passed away and was buried in Samaria. His son Ahab replaced him as king.</VERS>\n\t\t\t<VERS vnumber=\"29\"> In the thirty-eighth year of Asa's reign over Judah, Omri's son Ahab became king over Israel. Ahab son of Omri ruled over Israel for twenty-two years in Samaria.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Ahab son of Omri did more evil in the sight of the LORD than all who were before him. </VERS>\n\t\t\t<VERS vnumber=\"31\"> As if following in the sinful footsteps of Jeroboam son of Nebat were not bad enough, he married Jezebel the daughter of King Ethbaal of the Sidonians. Then he worshiped and bowed to Baal.</VERS>\n\t\t\t<VERS vnumber=\"32\"> He set up an altar for Baal in the temple of Baal he had built in Samaria.</VERS>\n\t\t\t<VERS vnumber=\"33\"> Ahab also made an Asherah pole; he did more to anger the LORD God of Israel than all the kings of Israel who were before him.</VERS>\n\t\t\t<VERS vnumber=\"34\"> During Ahab's reign, Hiel the Bethelite rebuilt Jericho. Abiram, his firstborn son, died when he laid the foundation; Segub, his youngest son, died when he erected its gates, just as the LORD had warned through Joshua son of Nun.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"17\">\n\t\t\t<VERS vnumber=\"1\"> Elijah the Tishbite, from Tishbe in Gilead, said to Ahab, \"As certainly as the LORD God of Israel lives (whom I serve), there will be no dew or rain in the years ahead unless I give the command.\"</VERS>\n\t\t\t<VERS vnumber=\"2\"> The LORD told him:</VERS>\n\t\t\t<VERS vnumber=\"3\"> \"Leave here and travel eastward. Hide out in the Kerith Valley near the Jordan.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Drink from the stream; I have already told the ravens to bring you food there.\" </VERS>\n\t\t\t<VERS vnumber=\"5\"> So he did as the LORD told him; he went and lived in the Kerith Valley near the Jordan. </VERS>\n\t\t\t<VERS vnumber=\"6\"> The ravens would bring him bread and meat each morning and evening, and he would drink from the stream.</VERS>\n\t\t\t<VERS vnumber=\"7\"> After a while, the stream dried up because there had been no rain in the land. </VERS>\n\t\t\t<VERS vnumber=\"8\"> The LORD told him,</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"Get up, go to Zarephath in Sidonian territory, and live there. I have already told a widow who lives there to provide for you.\" </VERS>\n\t\t\t<VERS vnumber=\"10\"> So he got up and went to Zarephath. When he went through the city gate, there was a widow gathering wood. He called out to her, \"Please give me a cup of water, so I can take a drink.\" </VERS>\n\t\t\t<VERS vnumber=\"11\"> As she went to get it, he called out to her, \"Please bring me a piece of bread.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> She said, \"As certainly as the LORD your God lives, I have no food, except for a handful of flour in a jar and a little olive oil in a jug. Right now I am gathering a couple of sticks for a fire. Then I'm going home to make one final meal for my son and myself. After we have eaten that, we will die of starvation.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> Elijah said to her, \"Don't be afraid. Go and do as you planned. But first make a small cake for me and bring it to me; then make something for yourself and your son. </VERS>\n\t\t\t<VERS vnumber=\"14\"> For this is what the LORD God of Israel says, 'The jar of flour will not be empty and the jug of oil will not run out until the day the LORD makes it rain on the surface of the ground.'\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> She went and did as Elijah told her; there was always enough food for Elijah and for her and her family.</VERS>\n\t\t\t<VERS vnumber=\"16\"> The jar of flour was never empty and the jug of oil never ran out, just as the LORD had promised through Elijah.</VERS>\n\t\t\t<VERS vnumber=\"17\"> After this the son of the woman who owned the house got sick. His illness was so severe he could no longer breathe. </VERS>\n\t\t\t<VERS vnumber=\"18\"> She asked Elijah, \"Why, prophet, have you come to me to confront me with my sin and kill my son?\" </VERS>\n\t\t\t<VERS vnumber=\"19\"> He said to her, \"Hand me your son.\" He took him from her arms, carried him to the upper room where he was staying, and laid him down on his bed.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Then he called out to the LORD, \"O LORD, my God, are you also bringing disaster on this widow I am staying with by killing her son?\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> He stretched out over the boy three times and called out to the LORD, \"O LORD, my God, please let this boy's breath return to him.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> The LORD answered Elijah's prayer; the boy's breath returned to him and he lived.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Elijah took the boy, brought him down from the upper room to the house, and handed him to his mother. Elijah then said, \"See, your son is alive!\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> The woman said to Elijah, \"Now I know that you are a prophet and that the LORD really does speak through you.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"18\">\n\t\t\t<VERS vnumber=\"1\"> Some time later, in the third year of the famine, the LORD told Elijah, \"Go, make an appearance before Ahab, so I may send rain on the surface of the ground.\" </VERS>\n\t\t\t<VERS vnumber=\"2\"> So Elijah went to make an appearance before Ahab. Now the famine was severe in Samaria.</VERS>\n\t\t\t<VERS vnumber=\"3\"> So Ahab summoned Obadiah, who supervised the palace. (Now Obadiah was a very loyal follower of the LORD.</VERS>\n\t\t\t<VERS vnumber=\"4\"> When Jezebel was killing the LORD's prophets, Obadiah took one hundred prophets and hid them in two caves in two groups of fifty. He also brought them food and water.) </VERS>\n\t\t\t<VERS vnumber=\"5\"> Ahab told Obadiah, \"Go through the land to all the springs and valleys. Maybe we can find some grazing areas so we can keep the horses and mules alive and not have to kill some of the animals.\" </VERS>\n\t\t\t<VERS vnumber=\"6\"> They divided up the land between them; Ahab went one way and Obadiah went the other.</VERS>\n\t\t\t<VERS vnumber=\"7\"> As Obadiah was traveling along, Elijah met him. When he recognized him, he fell facedown to the ground and said, \"Is it really you, my master, Elijah?\" </VERS>\n\t\t\t<VERS vnumber=\"8\"> He replied, \"Yes, go and say to your master, 'Elijah is back.'\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> Obadiah said, \"What sin have I committed that you are ready to hand your servant over to Ahab for execution?</VERS>\n\t\t\t<VERS vnumber=\"10\"> As certainly as the LORD your God lives, my master has sent to every nation and kingdom in an effort to find you. When they say, 'He's not here,' he makes them swear an oath that they could not find you. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Now you say, 'Go and say to your master, \"Elijah is back.\"'</VERS>\n\t\t\t<VERS vnumber=\"12\"> But when I leave you, the LORD's spirit will carry you away so I can't find you. If I go tell Ahab I've seen you, he won't be able to find you and he will kill me. That would not be fair, because your servant has been a loyal follower of the LORD from my youth. </VERS>\n\t\t\t<VERS vnumber=\"13\"> Certainly my master is aware of what I did when Jezebel was killing the LORD's prophets. I hid one hundred of the LORD's prophets in two caves in two groups of fifty and I brought them food and water. </VERS>\n\t\t\t<VERS vnumber=\"14\"> Now you say, 'Go and say to your master, \"Elijah is back,\"' but he will kill me.\" </VERS>\n\t\t\t<VERS vnumber=\"15\"> But Elijah said, \"As certainly as the LORD WHO RULES OVER ALL lives (whom I serve), I will make an appearance before him today.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> When Obadiah went and informed Ahab, the king went to meet Elijah.</VERS>\n\t\t\t<VERS vnumber=\"17\"> When Ahab saw Elijah, he said to him, \"Is it really you, the one who brings disaster on Israel?\" </VERS>\n\t\t\t<VERS vnumber=\"18\"> Elijah replied, \"I have not brought disaster on Israel. But you and your father's dynasty have, by abandoning the LORD's commandments and following the Baals. </VERS>\n\t\t\t<VERS vnumber=\"19\"> Now send out messengers and assemble all Israel before me at Mount Carmel, as well as the 450 prophets of Baal and 400 prophets of Asherah whom Jezebel supports.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Ahab sent messengers to all the Israelites and had the prophets assemble at Mount Carmel.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Elijah approached all the people and said, \"How long are you going to be paralyzed by indecision? If the LORD is the true God, then follow him, but if Baal is, follow him!\" But the people did not say a word. </VERS>\n\t\t\t<VERS vnumber=\"22\"> Elijah said to them: \"I am the only prophet of the LORD who is left, but there are 450 prophets of Baal. </VERS>\n\t\t\t<VERS vnumber=\"23\"> Let them bring us two bulls. Let them choose one of the bulls for themselves, cut it up into pieces, and place it on the wood. But they must not set it on fire. I will do the same to the other bull and place it on the wood. But I will not set it on fire.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Then you will invoke the name of your god, and I will invoke the name of the LORD. The god who responds with fire will demonstrate that he is the true God.\" All the people responded, \"This will be a fair test.\"</VERS>\n\t\t\t<VERS vnumber=\"25\"> Elijah told the prophets of Baal, \"Choose one of the bulls for yourselves and go first, for you are the majority. Invoke the name of your god, but do not light a fire.\"</VERS>\n\t\t\t<VERS vnumber=\"26\"> So they took a bull, as he had suggested, and prepared it. They invoked the name of Baal from morning until noon, saying, \"Baal, answer us.\" But there was no sound and no answer. They jumped around on the altar they had made.</VERS>\n\t\t\t<VERS vnumber=\"27\"> At noon Elijah mocked them, \"Yell louder! After all, he is a god; he may be deep in thought, or perhaps he stepped out for a moment or has taken a trip. Perhaps he is sleeping and needs to be awakened.\"</VERS>\n\t\t\t<VERS vnumber=\"28\"> So they yelled louder and, in accordance with their prescribed ritual, mutilated themselves with swords and spears until their bodies were covered with blood.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Throughout the afternoon they were in an ecstatic frenzy, but there was no sound, no answer, and no response.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Elijah then told all the people, \"Approach me.\" So all the people approached him. He repaired the altar of the LORD that had been torn down.</VERS>\n\t\t\t<VERS vnumber=\"31\"> Then Elijah took twelve stones, corresponding to the number of tribes that descended from Jacob, to whom the LORD had said, \"Israel will be your new name.\"</VERS>\n\t\t\t<VERS vnumber=\"32\"> With the stones he constructed an altar for the LORD. Around the altar he made a trench large enough to contain two seahs of seed. </VERS>\n\t\t\t<VERS vnumber=\"33\"> He arranged the wood, cut up the bull, and placed it on the wood.</VERS>\n\t\t\t<VERS vnumber=\"34\"> Then he said, \"Fill four water jars and pour the water on the offering and the wood.\" When they had done so, he said, \"Do it again.\" So they did it again. Then he said, \"Do it a third time.\" So they did it a third time. </VERS>\n\t\t\t<VERS vnumber=\"35\"> The water flowed down all sides of the altar and filled the trench.</VERS>\n\t\t\t<VERS vnumber=\"36\"> When it was time for the evening offering, Elijah the prophet approached the altar and prayed: \"O LORD God of Abraham, Isaac, and Israel, prove today that you are God in Israel and that I am your servant and have done all these things at your command.</VERS>\n\t\t\t<VERS vnumber=\"37\"> Answer me, O LORD, answer me, so these people will know that you, O LORD, are the true God and that you are winning back their allegiance.\"</VERS>\n\t\t\t<VERS vnumber=\"38\"> Then fire from the LORD fell from the sky. It consumed the offering, the wood, the stones, and the dirt, and licked up the water in the trench. </VERS>\n\t\t\t<VERS vnumber=\"39\"> When all the people saw this, they threw themselves down with their faces to the ground and said, \"The LORD is the true God! The LORD is the true God!\" </VERS>\n\t\t\t<VERS vnumber=\"40\"> Elijah told them, \"Seize the prophets of Baal! Don't let even one of them escape!\" So they seized them, and Elijah led them down to the Kishon Valley and executed them there.</VERS>\n\t\t\t<VERS vnumber=\"41\"> Then Elijah told Ahab, \"Go on up and eat and drink, for the sound of a heavy rainstorm can be heard.\"</VERS>\n\t\t\t<VERS vnumber=\"42\"> So Ahab went on up to eat and drink, while Elijah climbed to the top of Carmel. He bent down toward the ground and put his face between his knees.</VERS>\n\t\t\t<VERS vnumber=\"43\"> He told his servant, \"Go on up and look in the direction of the sea.\" So he went on up, looked, and reported, \"There is nothing.\" Seven times Elijah sent him to look.</VERS>\n\t\t\t<VERS vnumber=\"44\"> The seventh time the servant said, \"Look, a small cloud, the size of the palm of a man's hand, is rising up from the sea.\" Elijah then said, \"Go and tell Ahab, 'Hitch up the chariots and go down, so that the rain won't overtake you.'\"</VERS>\n\t\t\t<VERS vnumber=\"45\"> Meanwhile the sky was covered with dark clouds, the wind blew, and there was a heavy rainstorm. Ahab rode toward Jezreel. </VERS>\n\t\t\t<VERS vnumber=\"46\"> Now the LORD energized Elijah with power; he tucked his robe into his belt and ran ahead of Ahab all the way to Jezreel.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"19\">\n\t\t\t<VERS vnumber=\"1\"> Ahab told Jezebel all that Elijah had done, including a detailed account of how he killed all the prophets with the sword.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Jezebel sent a messenger to Elijah with this warning, \"May the gods judge me severely if by this time tomorrow I do not take your life as you did theirs!\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> Elijah was afraid, so he got up and fled for his life to Beer Sheba in Judah. He left his servant there, </VERS>\n\t\t\t<VERS vnumber=\"4\"> while he went a day's journey into the desert. He went and sat down under a shrub and asked the LORD to take his life: \"I've had enough! Now, O LORD, take my life. After all, I'm no better than my ancestors.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> He stretched out and fell asleep under the shrub. All of a sudden an angelic messenger touched him and said, \"Get up and eat.\" </VERS>\n\t\t\t<VERS vnumber=\"6\"> He looked and right there by his head was a cake baking on hot coals and a jug of water. He ate and drank and then slept some more.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The LORD's angelic messenger came back again, touched him, and said, \"Get up and eat, for otherwise you won't be able to make the journey.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> So he got up and ate and drank. That meal gave him the strength to travel forty days and forty nights until he reached Horeb, the mountain of God.</VERS>\n\t\t\t<VERS vnumber=\"9\"> He went into a cave there and spent the night. All of a sudden the LORD spoke to him, \"Why are you here, Elijah?\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> He answered, \"I have been absolutely loyal to the LORD, the sovereign God, even though the Israelites have abandoned the agreement they made with you, torn down your altars, and killed your prophets with the sword. I alone am left and now they want to take my life.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> The LORD said, \"Go out and stand on the mountain before the LORD. Look, the LORD is ready to pass by.\" A very powerful wind went before the LORD, digging into the mountain and causing landslides, but the LORD was not in the wind. After the windstorm there was an earthquake, but the LORD was not in the earthquake.</VERS>\n\t\t\t<VERS vnumber=\"12\"> After the earthquake, there was a fire, but the LORD was not in the fire. After the fire, there was a soft whisper.</VERS>\n\t\t\t<VERS vnumber=\"13\"> When Elijah heard it, he covered his face with his robe and went out and stood at the entrance to the cave. All of a sudden a voice asked him, \"Why are you here, Elijah?\" </VERS>\n\t\t\t<VERS vnumber=\"14\"> He answered, \"I have been absolutely loyal to the LORD, the sovereign God, even though the Israelites have abandoned the agreement they made with you, torn down your altars, and killed your prophets with the sword. I alone am left and now they want to take my life.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> The LORD said to him, \"Go back the way you came and then head for the Desert of Damascus. Go and anoint Hazael king over Syria.</VERS>\n\t\t\t<VERS vnumber=\"16\"> You must anoint Jehu son of Nimshi king over Israel, and Elisha son of Shaphat from Abel Meholah to take your place as prophet.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Jehu will kill anyone who escapes Hazael's sword, and Elisha will kill anyone who escapes Jehu's sword.</VERS>\n\t\t\t<VERS vnumber=\"18\"> I still have left in Israel seven thousand followers who have not bowed their knees to Baal or kissed the images of him.\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> Elijah went from there and found Elisha son of Shaphat. He was plowing with twelve pairs of oxen; he was near the twelfth pair. Elijah passed by him and threw his robe over him.</VERS>\n\t\t\t<VERS vnumber=\"20\"> He left the oxen, ran after Elijah, and said, \"Please let me kiss my father and mother goodbye, then I will follow you.\" Elijah said to him, \"Go back! Indeed, what have I done to you?\" </VERS>\n\t\t\t<VERS vnumber=\"21\"> Elisha went back and took his pair of oxen and slaughtered them. He cooked the meat over a fire that he made by burning the harness and yoke. He gave the people meat and they ate. Then he got up and followed Elijah and became his assistant.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"20\">\n\t\t\t<VERS vnumber=\"1\"> Now King Ben Hadad of Syria assembled all his army, along with thirty-two other kings with their horses and chariots. He marched against Samaria and besieged and attacked it.</VERS>\n\t\t\t<VERS vnumber=\"2\"> He sent messengers to King Ahab of Israel, who was in the city.</VERS>\n\t\t\t<VERS vnumber=\"3\"> He said to him, \"This is what Ben Hadad says, 'Your silver and your gold are mine, as well as the best of your wives and sons.'\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> The king of Israel replied, \"It is just as you say, my master, O king. I and all I own belong to you.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> The messengers came again and said, \"This is what Ben Hadad says, 'I sent this message to you, \"You must give me your silver, gold, wives, and sons.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> But now at this time tomorrow I will send my servants to you and they will search through your palace and your servants' houses. They will carry away all your valuables.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> The king of Israel summoned all the leaders of the land and said, \"Notice how this man is looking for trouble. Indeed, he demanded my wives, sons, silver, and gold, and I did not resist him.\" </VERS>\n\t\t\t<VERS vnumber=\"8\"> All the leaders and people said to him, \"Do not give in or agree to his demands.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> So he said to the messengers of Ben Hadad, \"Say this to my master, the king, 'I will give you everything you demanded at first from your servant, but I am unable to agree to this latest demand.'\" So the messengers went back and gave their report.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Ben Hadad sent another message to him, \"May the gods judge me severely if there is enough dirt left in Samaria for my soldiers to scoop up in their hands.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> The king of Israel replied, \"Tell him the one who puts on his battle gear should not boast like one who is taking it off.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> When Ben Hadad received this reply, he and the other kings were drinking in their quarters. He ordered his servants, \"Get ready to attack!\" So they got ready to attack the city.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Now a prophet visited King Ahab of Israel and said, \"This is what the LORD says, 'Do you see this huge army? Look, I am going to hand it over to you this very day. Then you will know that I am the LORD.'\" </VERS>\n\t\t\t<VERS vnumber=\"14\"> Ahab asked, \"By whom will this be accomplished?\" He answered, \"This is what the LORD says, 'By the servants of the district governors.'\" Ahab asked, \"Who will launch the attack?\" He answered, \"You will.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> So Ahab assembled the 232 servants of the district governors. After that he assembled all the Israelite army, numbering 7,000.</VERS>\n\t\t\t<VERS vnumber=\"16\"> They marched out at noon, while Ben Hadad and the thirty-two kings allied with him were drinking heavily in their quarters.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The servants of the district governors led the march. When Ben Hadad sent messengers, they reported back to him, \"Men are marching out of Samaria.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> He ordered, \"Whether they come in peace or to do battle, take them alive.\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> They marched out of the city with the servants of the district governors in the lead and the army behind them.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Each one struck down an enemy soldier; the Syrians fled and Israel chased them. King Ben Hadad of Syria escaped on horseback with some horsemen. </VERS>\n\t\t\t<VERS vnumber=\"21\"> Then the king of Israel marched out and struck down the horses and chariots; he thoroughly defeated Syria.</VERS>\n\t\t\t<VERS vnumber=\"22\"> The prophet visited the king of Israel and instructed him, \"Go, fortify your defenses. Determine what you must do, for in the spring the king of Syria will attack you.\" </VERS>\n\t\t\t<VERS vnumber=\"23\"> Now the advisers of the king of Syria said to him: \"Their God is a god of the mountains. That's why they overpowered us. But if we fight them in the plains, we will certainly overpower them. </VERS>\n\t\t\t<VERS vnumber=\"24\"> So do this: Dismiss the kings from their command, and replace them with military commanders.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Muster an army like the one you lost, with the same number of horses and chariots. Then we will fight them in the plains; we will certainly overpower them.\" He approved their plan and did as they advised.</VERS>\n\t\t\t<VERS vnumber=\"26\"> In the spring Ben Hadad mustered the Syrian army and marched to Aphek to fight Israel.</VERS>\n\t\t\t<VERS vnumber=\"27\"> When the Israelites had mustered and had received their supplies, they marched out to face them in battle. When the Israelites deployed opposite them, they were like two small flocks of goats, but the Syrians filled the land. </VERS>\n\t\t\t<VERS vnumber=\"28\"> The prophet visited the king of Israel and said, \"This is what the LORD says: 'Because the Syrians said, \"The LORD is a god of the mountains and not a god of the valleys,\" I will hand over to you this entire huge army. Then you will know that I am the LORD.'\"</VERS>\n\t\t\t<VERS vnumber=\"29\"> The armies were deployed opposite each other for seven days. On the seventh day the battle began, and the Israelites killed 100,000 Syrian foot soldiers in one day.</VERS>\n\t\t\t<VERS vnumber=\"30\"> The remaining 27,000 ran to Aphek and went into the city, but the wall fell on them. Now Ben Hadad ran into the city and hid in an inner room.</VERS>\n\t\t\t<VERS vnumber=\"31\"> His advisers said to him, \"Look, we have heard that the kings of the Israelite dynasty are kind. Allow us to put sackcloth around our waists and ropes on our heads and surrender to the king of Israel. Maybe he will spare our lives.\" </VERS>\n\t\t\t<VERS vnumber=\"32\"> So they put sackcloth around their waists and ropes on their heads and went to the king of Israel. They said, \"Your servant Ben Hadad says, 'Please let me live!'\" Ahab replied, \"Is he still alive? He is my brother.\"</VERS>\n\t\t\t<VERS vnumber=\"33\"> The men took this as a good omen and quickly accepted his offer, saying, \"Ben Hadad is your brother.\" Ahab then said, \"Go, get him.\" So Ben Hadad came out to him, and Ahab pulled him up into his chariot. </VERS>\n\t\t\t<VERS vnumber=\"34\"> Ben Hadad said, \"I will return the cities my father took from your father. You may set up markets in Damascus, just as my father did in Samaria.\" Ahab then said, \"I want to make a treaty with you before I dismiss you.\" So he made a treaty with him and then dismissed him.</VERS>\n\t\t\t<VERS vnumber=\"35\"> One of the members of the prophetic guild, speaking with divine authority, ordered his companion, \"Wound me!\" But the man refused to wound him. </VERS>\n\t\t\t<VERS vnumber=\"36\"> So the prophet said to him, \"Because you have disobeyed the LORD, as soon as you leave me a lion will kill you.\" When he left him, a lion attacked and killed him. </VERS>\n\t\t\t<VERS vnumber=\"37\"> He found another man and said, \"Wound me!\" So the man wounded him severely.</VERS>\n\t\t\t<VERS vnumber=\"38\"> The prophet then went and stood by the road, waiting for the king. He also disguised himself by putting a bandage down over his eyes.</VERS>\n\t\t\t<VERS vnumber=\"39\"> When the king passed by, he called out to the king, \"Your servant went out into the heat of the battle, and then a man turned aside and brought me a prisoner. He told me, 'Guard this prisoner. If he ends up missing for any reason, you will pay with your life or with a talent of silver.'</VERS>\n\t\t\t<VERS vnumber=\"40\"> Well, it just so happened that while your servant was doing this and that, he disappeared.\" The king of Israel said to him, \"Your punishment is already determined by your own testimony.\"</VERS>\n\t\t\t<VERS vnumber=\"41\"> The prophet quickly removed the bandage from his eyes and the king of Israel recognized he was one of the prophets. </VERS>\n\t\t\t<VERS vnumber=\"42\"> The prophet then said to him, \"This is what the LORD says, 'Because you released a man I had determined should die, you will pay with your life and your people will suffer instead of his people.'\"</VERS>\n\t\t\t<VERS vnumber=\"43\"> The king of Israel went home to Samaria bitter and angry.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"21\">\n\t\t\t<VERS vnumber=\"1\"> After this the following episode took place. Naboth the Jezreelite owned a vineyard in Jezreel adjacent to the palace of King Ahab of Samaria.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Ahab said to Naboth, \"Give me your vineyard so I can make a vegetable garden out of it, for it is adjacent to my palace. I will give you an even better vineyard in its place, or if you prefer, I will pay you silver for it.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> But Naboth replied to Ahab, \"The LORD forbid that I should sell you my ancestral inheritance.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> So Ahab went into his palace, bitter and angry that Naboth the Jezreelite had said, \"I will not sell to you my ancestral inheritance.\" He lay down on his bed, pouted, and would not eat. </VERS>\n\t\t\t<VERS vnumber=\"5\"> Then his wife Jezebel came in and said to him, \"Why do you have a bitter attitude and refuse to eat?\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> He answered her, \"While I was talking to Naboth the Jezreelite, I said to him, 'Sell me your vineyard for silver, or if you prefer, I will give you another vineyard in its place.' But he said, 'I will not sell you my vineyard.'\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> His wife Jezebel said to him, \"You are the king of Israel! Get up, eat some food, and have a good time. I will get the vineyard of Naboth the Jezreelite for you.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> She wrote out orders, signed Ahab's name to them, and sealed them with his seal. She then sent the orders to the leaders and to the nobles who lived in Naboth's city.</VERS>\n\t\t\t<VERS vnumber=\"9\"> This is what she wrote: \"Observe a time of fasting and seat Naboth in front of the people. </VERS>\n\t\t\t<VERS vnumber=\"10\"> Also seat two villains opposite him and have them testify, 'You cursed God and the king.' Then take him out and stone him to death.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> The men of the city, the leaders and the nobles who lived there, followed the written orders Jezebel had sent them.</VERS>\n\t\t\t<VERS vnumber=\"12\"> They observed a time of fasting and put Naboth in front of the people.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The two villains arrived and sat opposite him. Then the villains testified against Naboth right before the people, saying, \"Naboth cursed God and the king.\" So they dragged him outside the city and stoned him to death.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Then they reported to Jezebel, \"Naboth has been stoned to death.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> When Jezebel heard that Naboth had been stoned to death, she said to Ahab, \"Get up, take possession of the vineyard Naboth the Jezreelite refused to sell you for silver, for Naboth is no longer alive; he's dead.\" </VERS>\n\t\t\t<VERS vnumber=\"16\"> When Ahab heard that Naboth was dead, he got up and went down to take possession of the vineyard of Naboth the Jezreelite.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The LORD told Elijah the Tishbite:</VERS>\n\t\t\t<VERS vnumber=\"18\"> \"Get up, go down and meet King Ahab of Israel who lives in Samaria. He is at the vineyard of Naboth; he has gone down there to take possession of it.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Say to him, 'This is what the LORD says: \"Haven't you committed murder and taken possession of the property of the deceased?\"' Then say to him, 'This is what the LORD says: \"In the spot where dogs licked up Naboth's blood they will also lick up your blood, yes, yours!\"'\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> When Elijah arrived, Ahab said to him, \"So, you have found me, my enemy!\" Elijah replied, \"I have found you, because you are committed to doing evil in the sight of the LORD. </VERS>\n\t\t\t<VERS vnumber=\"21\"> The LORD says, 'Look, I am ready to bring disaster on you. I will destroy you and cut off every last male belonging to Ahab in Israel, including even the weak and incapacitated.</VERS>\n\t\t\t<VERS vnumber=\"22\"> I will make your dynasty like those of Jeroboam son of Nebat and Baasha son of Ahijah because you angered me and made Israel sin.'</VERS>\n\t\t\t<VERS vnumber=\"23\"> The LORD says this about Jezebel, 'Dogs will devour Jezebel by the outer wall of Jezreel.' </VERS>\n\t\t\t<VERS vnumber=\"24\"> As for Ahab's family, dogs will eat the ones who die in the city, and the birds of the sky will eat the ones who die in the country.\" </VERS>\n\t\t\t<VERS vnumber=\"25\"> (There had never been anyone like Ahab, who was firmly committed to doing evil in the sight of the LORD, urged on by his wife Jezebel.</VERS>\n\t\t\t<VERS vnumber=\"26\"> He was so wicked he worshiped the disgusting idols, just like the Amorites whom the LORD had driven out from before the Israelites.)</VERS>\n\t\t\t<VERS vnumber=\"27\"> When Ahab heard these words, he tore his clothes, put on sackcloth, and fasted. He slept in sackcloth and walked around dejected.</VERS>\n\t\t\t<VERS vnumber=\"28\"> The LORD said to Elijah the Tishbite,</VERS>\n\t\t\t<VERS vnumber=\"29\"> \"Have you noticed how Ahab shows remorse before me? Because he shows remorse before me, I will not bring disaster on his dynasty during his lifetime, but during the reign of his son.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"22\">\n\t\t\t<VERS vnumber=\"1\"> There was no war between Syria and Israel for three years.</VERS>\n\t\t\t<VERS vnumber=\"2\"> In the third year King Jehoshaphat of Judah came down to visit the king of Israel. </VERS>\n\t\t\t<VERS vnumber=\"3\"> The king of Israel said to his servants, \"Surely you recognize that Ramoth Gilead belongs to us, though we are hesitant to reclaim it from the king of Syria.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> Then he said to Jehoshaphat, \"Will you go with me to attack Ramoth Gilead?\" Jehoshaphat replied to the king of Israel, \"I will support you; my army and horses are at your disposal.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> Then Jehoshaphat added, \"First seek an oracle from the LORD.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> So the king of Israel assembled about four hundred prophets and asked them, \"Should I attack Ramoth Gilead or not?\" They said, \"Attack! The sovereign one will hand it over to the king.\" </VERS>\n\t\t\t<VERS vnumber=\"7\"> But Jehoshaphat asked, \"Is there not a prophet of the LORD still here, that we may ask him?\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> The king of Israel answered Jehoshaphat, \"There is still one man through whom we can seek the LORD's will. But I despise him because he does not prophesy prosperity for me, but disaster. His name is Micaiah son of Imlah. Jehoshaphat said, \"The king should not say such things.\" </VERS>\n\t\t\t<VERS vnumber=\"9\"> The king of Israel summoned an official and said, \"Quickly bring Micaiah son of Imlah.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> Now the king of Israel and King Jehoshaphat of Judah were sitting on their respective thrones, dressed in their robes, at the threshing floor at the entrance of the gate of Samaria. All the prophets were prophesying before them. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Zedekiah son of Kenaanah made iron horns and said, \"This is what the LORD says, 'With these you will gore Syria until they are destroyed.'\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> All the prophets were prophesying the same, saying, \"Attack Ramoth Gilead! You will succeed; the LORD will hand it over to the king.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> Now the messenger who went to summon Micaiah said to him, \"Look, the prophets are in complete agreement that the king will succeed. Your words must agree with theirs; you must predict success.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> But Micaiah said, \"As certainly as the LORD lives, I will say what the LORD tells me to say.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> When he came before the king, the king asked him, \"Micaiah, should we attack Ramoth Gilead or not?\" He answered him, \"Attack! You will succeed; the LORD will hand it over to the king.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> The king said to him, \"How many times must I make you solemnly promise in the name of the LORD to tell me only the truth?\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> Micaiah said, \"I saw all Israel scattered on the mountains like sheep that have no shepherd. Then the LORD said, 'They have no master. They should go home in peace.'\" </VERS>\n\t\t\t<VERS vnumber=\"18\"> The king of Israel said to Jehoshaphat, \"Didn't I tell you he does not prophesy prosperity for me, but disaster?\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> Micaiah said, \"That being the case, hear the word of the LORD. I saw the LORD sitting on his throne, with all the heavenly assembly standing on his right and on his left. </VERS>\n\t\t\t<VERS vnumber=\"20\"> The LORD said, 'Who will deceive Ahab, so he will attack Ramoth Gilead and die there?' One said this and another that. </VERS>\n\t\t\t<VERS vnumber=\"21\"> Then a spirit stepped forward and stood before the LORD. He said, 'I will deceive him.' The LORD asked him, 'How?' </VERS>\n\t\t\t<VERS vnumber=\"22\"> He replied, 'I will go out and be a lying spirit in the mouths of all his prophets.' The LORD said, 'Deceive and overpower him. Go out and do as you have proposed.' </VERS>\n\t\t\t<VERS vnumber=\"23\"> So now, look, the LORD has placed a lying spirit in the mouths of all these prophets of yours; but the LORD has decreed disaster for you.\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> Zedekiah son of Kenaanah approached, hit Micaiah on the jaw, and said, \"Which way did the LORD's spirit go when he went from me to speak to you?\"</VERS>\n\t\t\t<VERS vnumber=\"25\"> Micaiah replied, \"Look, you will see in the day when you go into an inner room to hide.\"</VERS>\n\t\t\t<VERS vnumber=\"26\"> Then the king of Israel said, \"Take Micaiah and return him to Amon the city official and Joash the king's son.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Say, 'This is what the king says, \"Put this man in prison. Give him only a little bread and water until I safely return.\"'\"</VERS>\n\t\t\t<VERS vnumber=\"28\"> Micaiah said, \"If you really do safely return, then the LORD has not spoken through me.\" Then he added, \"Take note, all you people.\"</VERS>\n\t\t\t<VERS vnumber=\"29\"> The king of Israel and King Jehoshaphat of Judah attacked Ramoth Gilead.</VERS>\n\t\t\t<VERS vnumber=\"30\"> The king of Israel said to Jehoshaphat, \"I will disguise myself and then enter into the battle; but you wear your royal robes.\" So the king of Israel disguised himself and then entered into the battle. </VERS>\n\t\t\t<VERS vnumber=\"31\"> Now the king of Syria had ordered his thirty-two chariot commanders, \"Do not fight common soldiers or high-ranking officers; fight only the king of Israel.\" </VERS>\n\t\t\t<VERS vnumber=\"32\"> When the chariot commanders saw Jehoshaphat, they said, \"He must be the king of Israel.\" So they turned and attacked him, but Jehoshaphat cried out.</VERS>\n\t\t\t<VERS vnumber=\"33\"> When the chariot commanders realized he was not the king of Israel, they turned away from him.</VERS>\n\t\t\t<VERS vnumber=\"34\"> Now an archer shot an arrow at random, and it struck the king of Israel between the plates of his armor. The king ordered his charioteer, \"Turn around and take me from the battle line, because I'm wounded.\" </VERS>\n\t\t\t<VERS vnumber=\"35\"> While the battle raged throughout the day, the king stood propped up in his chariot opposite the Syrians. He died in the evening; the blood from the wound ran down into the bottom of the chariot.</VERS>\n\t\t\t<VERS vnumber=\"36\"> As the sun was setting, a cry went through the camp, \"Each one should return to his city and to his homeland.\"</VERS>\n\t\t\t<VERS vnumber=\"37\"> So the king died and was taken to Samaria, where they buried him.</VERS>\n\t\t\t<VERS vnumber=\"38\"> They washed off the chariot at the pool of Samaria (this was where the prostitutes bathed); dogs licked his blood, just as the LORD had said would happen.</VERS>\n\t\t\t<VERS vnumber=\"39\"> The rest of the events of Ahab's reign, including a record of his accomplishments and how he built a luxurious palace and various cities, are recorded in the scroll called the Annals of the Kings of Israel.</VERS>\n\t\t\t<VERS vnumber=\"40\"> Ahab passed away. His son Ahaziah replaced him as king.</VERS>\n\t\t\t<VERS vnumber=\"41\"> In the fourth year of King Ahab's reign over Israel, Asa's son Jehoshaphat became king over Judah.</VERS>\n\t\t\t<VERS vnumber=\"42\"> Jehoshaphat was thirty-five years old when he became king and he reigned for twenty-five years in Jerusalem. His mother was Azubah, the daughter of Shilhi. </VERS>\n\t\t\t<VERS vnumber=\"43\"> He followed in his father Asa's footsteps and was careful to do what the LORD approved. However, the high places were not eliminated; the people continued to offer sacrifices and burn incense on the high places.</VERS>\n\t\t\t<VERS vnumber=\"44\">  Jehoshaphat was also at peace with the king of Israel.</VERS>\n\t\t\t<VERS vnumber=\"45\"> The rest of the events of Jehoshaphat's reign, including his successes and military exploits, are recorded in the scroll called the Annals of the Kings of Judah.</VERS>\n\t\t\t<VERS vnumber=\"46\"> He removed from the land any male cultic prostitutes who had managed to survive the reign of his father Asa.</VERS>\n\t\t\t<VERS vnumber=\"47\"> There was no king in Edom at this time; a governor ruled.</VERS>\n\t\t\t<VERS vnumber=\"48\"> Jehoshaphat built a fleet of large merchant ships to travel to Ophir for gold, but they never made the voyage because they were shipwrecked in Ezion Geber. </VERS>\n\t\t\t<VERS vnumber=\"49\"> Then Ahaziah son of Ahab said to Jehoshaphat, \"Let my sailors join yours in the fleet,\" but Jehoshaphat refused.</VERS>\n\t\t\t<VERS vnumber=\"50\"> Jehoshaphat passed away and was buried with his ancestors in the city of his ancestor David. His son Jehoram replaced him as king.</VERS>\n\t\t\t<VERS vnumber=\"51\"> In the seventeenth year of King Jehoshaphat's reign over Judah, Ahab's son Ahaziah became king over Israel in Samaria. He ruled for two years over Israel.</VERS>\n\t\t\t<VERS vnumber=\"52\"> He did evil in the sight of the LORD and followed in the footsteps of his father and mother; like Jeroboam son of Nebat, he encouraged Israel to sin.</VERS>\n\t\t\t<VERS vnumber=\"53\"> He worshiped and bowed down to Baal, angering the LORD God of Israel just as his father had done.</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"12\" bname=\"2 Kings\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> After Ahab died, Moab rebelled against Israel.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Ahaziah fell through a window lattice in his upper chamber in Samaria and was injured. He sent messengers with these orders, \"Go, ask Baal Zebub, the god of Ekron, if I will survive this injury.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> But the LORD's angelic messenger told Elijah the Tishbite, \"Get up, go to meet the messengers from the king of Samaria. Say this to them: 'You must think there is no God in Israel! That explains why you are on your way to seek an oracle from Baal Zebub the god of Ekron.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Therefore this is what the LORD says, \"You will not leave the bed you lie on, for you will certainly die!\"'\" So Elijah went on his way.</VERS>\n\t\t\t<VERS vnumber=\"5\"> When the messengers returned to the king, he asked them, \"Why have you returned?\" </VERS>\n\t\t\t<VERS vnumber=\"6\"> They replied, \"A man came up to meet us. He told us, \"Go back to the king who sent you and tell him, 'This is what the LORD says: \"You must think there is no God in Israel! That explains why you are sending for an oracle from Baal Zebub, the god of Ekron. Therefore you will not leave the bed you lie on, for you will certainly die.\"'\" </VERS>\n\t\t\t<VERS vnumber=\"7\"> The king asked them, \"Describe the appearance of this man who came up to meet you and told you these things.\" </VERS>\n\t\t\t<VERS vnumber=\"8\"> They replied, \"He was a hairy man and had a leather belt tied around his waist.\" The king said, \"He is Elijah the Tishbite.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> The king sent a captain and his fifty soldiers to retrieve Elijah. The captain went up to him, while he was sitting on the top of a hill. He told him, \"Prophet, the king says, 'Come down!'\" </VERS>\n\t\t\t<VERS vnumber=\"10\"> Elijah replied to the captain, \"If I am indeed a prophet, may fire come down from the sky and consume you and your fifty soldiers!\" Fire then came down from the sky and consumed him and his fifty soldiers.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The king sent another captain and his fifty soldiers to retrieve Elijah. He went up and told him, \"Prophet, this is what the king says, 'Come down at once!'\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> Elijah replied to them, \"If I am indeed a prophet, may fire come down from the sky and consume you and your fifty soldiers!\" Fire from God came down from the sky and consumed him and his fifty soldiers.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The king sent a third captain and his fifty soldiers. This third captain went up and fell on his knees before Elijah. He begged for mercy, \"Prophet, please have respect for my life and for the lives of these fifty servants of yours. </VERS>\n\t\t\t<VERS vnumber=\"14\"> Indeed, fire came down from the sky and consumed the two captains who came before me, along with their men. So now, please have respect for my life.\" </VERS>\n\t\t\t<VERS vnumber=\"15\"> The LORD's angelic messenger said to Elijah, \"Go down with him. Don't be afraid of him.\" So he got up and went down with him to the king.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Elijah said to the king, \"This is what the LORD says, 'You sent messengers to seek an oracle from Baal Zebub, the god of Ekron. You must think there is no God in Israel from whom you can seek an oracle! Therefore you will not leave the bed you lie on, for you will certainly die.'\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> He died just as the LORD had prophesied through Elijah. In the second year of the reign of King Jehoram son of Jehoshaphat over Judah, Ahaziah's brother Jehoram replaced him as king of Israel, because he had no son.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The rest of the events of Ahaziah's reign, including his accomplishments, are recorded in the scroll called the Annals of the Kings of Israel.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> Just before the LORD took Elijah up to heaven in a windstorm, Elijah and Elisha were traveling from Gilgal. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Elijah told Elisha, \"Stay here, for the LORD has sent me to Bethel.\" But Elisha said, \"As certainly as the LORD lives and as you live, I will not leave you.\" So they went down to Bethel. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Some members of the prophetic guild in Bethel came out to Elisha and said, \"Do you know that today the LORD is going to take your master from you?\" He answered, \"Yes, I know. Be quiet.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> Elijah said to him, \"Elisha, stay here, for the LORD has sent me to Jericho.\" But he replied, \"As certainly as the LORD lives and as you live, I will not leave you.\" So they went to Jericho. </VERS>\n\t\t\t<VERS vnumber=\"5\"> Some members of the prophetic guild in Jericho approached Elisha and said, \"Do you know that today the LORD is going to take your master from you?\" He answered, \"Yes, I know. Be quiet.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> Elijah said to him, \"Stay here, for the LORD has sent me to the Jordan.\" But he replied, \"As certainly as the LORD lives and as you live, I will not leave you.\" So they traveled on together.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The fifty members of the prophetic guild went and stood opposite them at a distance, while Elijah and Elisha stood by the Jordan. </VERS>\n\t\t\t<VERS vnumber=\"8\"> Elijah took his cloak, folded it up, and hit the water with it. The water divided, and the two of them crossed over on dry ground.</VERS>\n\t\t\t<VERS vnumber=\"9\"> When they had crossed over, Elijah said to Elisha, \"What can I do for you, before I am taken away from you?\" Elisha answered, \"May I receive a double portion of the prophetic spirit that energizes you.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> Elijah replied, \"That's a difficult request! If you see me taken from you, may it be so, but if you don't, it will not happen.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> As they were walking along and talking, suddenly a fiery chariot pulled by fiery horses appeared. They went between Elijah and Elisha, and Elijah went up to heaven in a windstorm. </VERS>\n\t\t\t<VERS vnumber=\"12\"> While Elisha was watching, he was crying out, \"My father, my father! The chariot and horsemen of Israel!\" Then he could no longer see him. He grabbed his clothes and tore them in two. </VERS>\n\t\t\t<VERS vnumber=\"13\"> He picked up Elijah's cloak, which had fallen off him, and went back and stood on the shore of the Jordan.</VERS>\n\t\t\t<VERS vnumber=\"14\"> He took the cloak that had fallen off Elijah, hit the water with it, and said, \"Where is the LORD, THE God of Elijah?\" When he hit the water, it divided and Elisha crossed over.</VERS>\n\t\t\t<VERS vnumber=\"15\"> When the members of the prophetic guild in Jericho, who were standing at a distance, saw him do this, they said, \"The spirit that energized Elijah rests upon Elisha.\" They went to meet him and bowed down to the ground before him. </VERS>\n\t\t\t<VERS vnumber=\"16\"> They said to him, \"Look, there are fifty capable men with your servants. Let them go and look for your master, for the wind sent from the LORD may have carried him away and dropped him on one of the hills or in one of the valleys.\" But Elisha replied, \"Don't send them out.\" </VERS>\n\t\t\t<VERS vnumber=\"17\"> But they were so insistent, he became embarrassed. So he said, \"Send them out.\" They sent the fifty men out and they looked for three days, but could not find Elijah.</VERS>\n\t\t\t<VERS vnumber=\"18\"> When they came back, Elisha was staying in Jericho. He said to them, \"Didn't I tell you, 'Don't go'?\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> The men of the city said to Elisha, \"Look, the city has a good location, as our master can see. But the water is bad and the land doesn't produce crops.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> Elisha said, \"Get me a new jar and put some salt in it.\" So they got it. </VERS>\n\t\t\t<VERS vnumber=\"21\"> He went out to the spring and threw the salt in. Then he said, \"This is what the LORD says, 'I have purified this water. It will no longer cause death or fail to produce crops.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> The water has been pure to this very day, just as Elisha prophesied.</VERS>\n\t\t\t<VERS vnumber=\"23\"> He went up from there to Bethel. As he was traveling up the road, some young boys came out of the city and made fun of him, saying, \"Go on up, baldy! Go on up, baldy!\" </VERS>\n\t\t\t<VERS vnumber=\"24\"> When he turned around and saw them, he called God's judgment down on them. Two female bears came out of the woods and ripped forty-two of the boys to pieces. </VERS>\n\t\t\t<VERS vnumber=\"25\"> From there he traveled to Mount Carmel and then back to Samaria.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> In the eighteenth year of King Jehoshaphat's reign over Judah, Ahab's son Jehoram became king over Israel in Samaria; he ruled for twelve years. </VERS>\n\t\t\t<VERS vnumber=\"2\"> He did evil in the sight of the LORD, but not to the same degree as his father and mother. He did remove the sacred pillar of Baal that his father had made.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Yet he persisted in the sins of Jeroboam son of Nebat, who encouraged Israel to sin; he did not turn from them.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Now King Mesha of Moab was a sheep breeder. He would send as tribute to the king of Israel 100,000 male lambs and the wool of 100,000 rams. </VERS>\n\t\t\t<VERS vnumber=\"5\"> When Ahab died, the king of Moab rebelled against the king of Israel.</VERS>\n\t\t\t<VERS vnumber=\"6\"> At that time King Jehoram left Samaria and assembled all Israel for war.</VERS>\n\t\t\t<VERS vnumber=\"7\"> He sent this message to King Jehoshaphat of Judah: \"The king of Moab has rebelled against me. Will you fight with me against Moab?\" Jehoshaphat replied, \"I will join you in the campaign; my army and horses are at your disposal.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> He then asked, \"Which invasion route are we going to take?\" Jehoram answered, \"By the road through the Desert of Edom.\" </VERS>\n\t\t\t<VERS vnumber=\"9\"> So the kings of Israel, Judah, and Edom set out together. They wandered around on the road for seven days and finally ran out of water for the men and animals they had with them. </VERS>\n\t\t\t<VERS vnumber=\"10\"> The king of Israel said, \"Oh no! Certainly the LORD has summoned these three kings so that he can hand them over to the king of Moab!\" </VERS>\n\t\t\t<VERS vnumber=\"11\"> Jehoshaphat asked, \"Is there no prophet of the LORD here that we might seek the LORD's direction?\" One of the servants of the king of Israel answered, \"Elisha son of Shapat is here; he used to be Elijah's servant.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> Jehoshaphat said, \"The LORD speaks through him.\" So the king of Israel and Jehoshaphat and the king of Edom went down to visit him.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Elisha said to the king of Israel, \"Why are you here? Go to your father's prophets or your mother's prophets!\" The king of Israel replied to him, \"No, for the LORD is the one who summoned these three kings so that he can hand them over to Moab.\" </VERS>\n\t\t\t<VERS vnumber=\"14\"> Elisha said, \"As certainly as the LORD who rules over all lives (whom I serve), if I did not respect King Jehoshaphat of Judah, I would not pay attention to you or acknowledge you.</VERS>\n\t\t\t<VERS vnumber=\"15\"> But now, get me a musician.\" When the musician played, the LORD energized him,</VERS>\n\t\t\t<VERS vnumber=\"16\"> and he said, \"This is what the LORD says, 'Make many cisterns in this valley,'</VERS>\n\t\t\t<VERS vnumber=\"17\"> for this is what the LORD says, 'You will not feel any wind or see any rain, but this valley will be full of water and you and your cattle and animals will drink.' </VERS>\n\t\t\t<VERS vnumber=\"18\"> This is an easy task for the LORD; he will also hand Moab over to you. </VERS>\n\t\t\t<VERS vnumber=\"19\"> You will defeat every fortified city and every important city. You must chop down every productive tree, stop up all the springs, and cover all the cultivated land with stones.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> Sure enough, the next morning, at the time of the morning sacrifice, water came flowing down from Edom and filled the land.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Now all Moab had heard that the kings were attacking, so everyone old enough to fight was mustered and placed at the border.</VERS>\n\t\t\t<VERS vnumber=\"22\"> When they got up early the next morning, the sun was shining on the water. To the Moabites, who were some distance away, the water looked red like blood.</VERS>\n\t\t\t<VERS vnumber=\"23\"> The Moabites said, \"It's blood! The kings are totally destroyed! They have struck one another down! Now, Moab, seize the plunder!\" </VERS>\n\t\t\t<VERS vnumber=\"24\"> When they approached the Israelite camp, the Israelites rose up and struck down the Moabites, who then ran from them. The Israelites thoroughly defeated Moab. </VERS>\n\t\t\t<VERS vnumber=\"25\"> They tore down the cities and each man threw a stone into every cultivated field until they were covered. They stopped up every spring and chopped down every productive tree. Only Kir Hareseth was left intact, but the slingers surrounded it and attacked it.</VERS>\n\t\t\t<VERS vnumber=\"26\"> When the king of Moab realized he was losing the battle, he and 700 swordsmen tried to break through and attack the king of Edom, but they failed. </VERS>\n\t\t\t<VERS vnumber=\"27\"> So he took his firstborn son, who was to succeed him as king, and offered him up as a burnt sacrifice on the wall. There was an outburst of divine anger against Israel, so they broke off the attack and returned to their homeland.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\"> Now a wife of one of the prophets appealed to Elisha for help, saying, \"Your servant, my husband is dead. You know that your servant was a loyal follower of the LORD. Now the creditor is coming to take away my two boys to be his servants.\" </VERS>\n\t\t\t<VERS vnumber=\"2\"> Elisha said to her, \"What can I do for you? Tell me, what do you have in the house?\" She answered, \"Your servant has nothing in the house except a small jar of olive oil.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> He said, \"Go and ask all your neighbors for empty containers. Get as many as you can.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Go and close the door behind you and your sons. Pour the olive oil into all the containers; set aside each one when you have filled it.\" </VERS>\n\t\t\t<VERS vnumber=\"5\"> So she left him and closed the door behind her and her sons. As they were bringing the containers to her, she was pouring the olive oil.</VERS>\n\t\t\t<VERS vnumber=\"6\"> When the containers were full, she said to one of her sons, \"Bring me another container.\" But he answered her, \"There are no more.\" Then the olive oil stopped flowing.</VERS>\n\t\t\t<VERS vnumber=\"7\"> She went and told the prophet. He said, \"Go, sell the olive oil. Repay your creditor, and then you and your sons can live off the rest of the profit.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> One day Elisha traveled to Shunem, where a prominent woman lived. She insisted that he stop for a meal. So whenever he was passing through, he would stop in there for a meal.</VERS>\n\t\t\t<VERS vnumber=\"9\"> She said to her husband, \"Look, I'm sure that the man who regularly passes through here is a very special prophet.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Let's make a small private upper room and furnish it with a bed, table, chair, and lamp. When he visits us, he can stay there.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> One day Elisha came for a visit; he went into the upper room and rested.</VERS>\n\t\t\t<VERS vnumber=\"12\"> He told his servant Gehazi, \"Ask the Shunammite woman to come here.\" So he did so and she came to him.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Elisha said to Gehazi, \"Tell her, 'Look, you have treated us with such great respect. What can I do for you? Can I put in a good word for you with the king or the commander of the army?'\" She replied, \"I'm quite secure.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> So he asked Gehazi, \"What can I do for her?\" Gehazi replied, \"She has no son, and her husband is old.\" </VERS>\n\t\t\t<VERS vnumber=\"15\"> Elisha told him, \"Ask her to come here.\" So he did so and she came and stood in the doorway.</VERS>\n\t\t\t<VERS vnumber=\"16\"> He said, \"About this time next year you will be holding a son.\" She said, \"No, my master! O prophet, do not lie to your servant!\" </VERS>\n\t\t\t<VERS vnumber=\"17\"> The woman did conceive, and at the specified time the next year she gave birth to a son, just as Elisha had told her.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The boy grew and one day he went out to see his father who was with the harvest workers.</VERS>\n\t\t\t<VERS vnumber=\"19\"> He said to his father, \"My head! My head!\" His father told a servant, \"Carry him to his mother.\" </VERS>\n\t\t\t<VERS vnumber=\"20\"> So he picked him up and took him to his mother. He sat on her lap until noon and then died. </VERS>\n\t\t\t<VERS vnumber=\"21\"> She went up and laid him down on the prophet's bed. She shut the door behind her and left.</VERS>\n\t\t\t<VERS vnumber=\"22\"> She called to her husband, \"Send me one of the servants and one of the donkeys, so I can go see the prophet quickly and then return.\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> He said, \"Why do you want to go see him today? It is not the new moon or the Sabbath.\" She said, \"Everything's fine.\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> She saddled the donkey and told her servant, \"Lead on. Do not stop unless I say so.\"</VERS>\n\t\t\t<VERS vnumber=\"25\"> So she went to visit the prophet at Mount Carmel. When he saw her at a distance, he said to his servant Gehazi, \"Look, it's the Shunammite woman. </VERS>\n\t\t\t<VERS vnumber=\"26\"> Now, run to meet her and ask her, 'Are you well? Are your husband and the boy well?'\" She told Gehazi, \"Everything's fine.\" </VERS>\n\t\t\t<VERS vnumber=\"27\"> But when she reached the prophet on the mountain, she grabbed hold of his feet. Gehazi came near to push her away, but the prophet said, \"Leave her alone, for she is very upset. The LORD has kept the matter hidden from me; he didn't tell me about it.\" </VERS>\n\t\t\t<VERS vnumber=\"28\"> She said, \"Did I ask my master for a son? Didn't I say, 'Don't mislead me?'\"</VERS>\n\t\t\t<VERS vnumber=\"29\"> Elisha told Gehazi, \"Tuck your robes into your belt, take my staff, and go! Don't stop to exchange greetings with anyone! Place my staff on the child's face.\" </VERS>\n\t\t\t<VERS vnumber=\"30\"> The mother of the child said, \"As certainly as the LORD lives and as you live, I will not leave you.\" So Elisha got up and followed her back.</VERS>\n\t\t\t<VERS vnumber=\"31\"> Now Gehazi went on ahead of them. He placed the staff on the child's face, but there was no sound or response. When he came back to Elisha he told him, \"The child did not wake up.\" </VERS>\n\t\t\t<VERS vnumber=\"32\"> When Elisha arrived at the house, there was the child lying dead on his bed. </VERS>\n\t\t\t<VERS vnumber=\"33\"> He went in by himself and closed the door. Then he prayed to the LORD. </VERS>\n\t\t\t<VERS vnumber=\"34\"> He got up on the bed and spread his body out over the boy; he put his mouth on the boy's mouth, his eyes over the boy's eyes, and the palms of his hands against the boy's palms. He bent down over him, and the boy's skin grew warm. </VERS>\n\t\t\t<VERS vnumber=\"35\"> Elisha went back and walked around in the house. Then he got up on the bed again and bent down over him. The child sneezed seven times and opened his eyes. </VERS>\n\t\t\t<VERS vnumber=\"36\"> Elisha called to Gehazi and said, \"Get the Shunammite woman.\" So he did so and she came to him. He said to her, \"Take your son.\" </VERS>\n\t\t\t<VERS vnumber=\"37\"> She came in, fell at his feet, and bowed down. Then she picked up her son and left.</VERS>\n\t\t\t<VERS vnumber=\"38\"> Now Elisha went back to Gilgal, while there was famine in the land. Some of the prophets were visiting him and he told his servant, \"Put the big pot on the fire and boil some stew for the prophets.\"</VERS>\n\t\t\t<VERS vnumber=\"39\"> Someone went out to the field to gather some herbs and found a wild vine. He picked some of its fruit, enough to fill up the fold of his robe. He came back, cut it up, and threw the slices into the stew pot, not knowing they were harmful.</VERS>\n\t\t\t<VERS vnumber=\"40\"> The stew was poured out for the men to eat. When they ate some of the stew, they cried out, \"Death is in the pot, O prophet!\" They could not eat it. </VERS>\n\t\t\t<VERS vnumber=\"41\"> He said, \"Get some flour.\" Then he threw it into the pot and said, \"Now pour some out for the men so they may eat.\" There was no longer anything harmful in the pot.</VERS>\n\t\t\t<VERS vnumber=\"42\"> Now a man from Baal Shalisha brought some food for the prophet, twenty loaves of bread made from the firstfruits of the barley harvest, as well as fresh ears of grain. Elisha said, \"Set it before the people so they may eat.\"</VERS>\n\t\t\t<VERS vnumber=\"43\"> But his attendant said, \"How can I feed a hundred men with this?\" He replied, \"Set it before the people so they may eat, for this is what the LORD says, 'They will eat and have some left over.'\"</VERS>\n\t\t\t<VERS vnumber=\"44\"> So he set it before them; they ate and had some left over, just as the LORD predicted.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"5\">\n\t\t\t<VERS vnumber=\"1\"> Now Naaman, the commander of the king of Syria's army, was esteemed and respected by his master, for through him the LORD had given Syria military victories. But this great warrior had a skin disease.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Raiding parties went out from Syria and took captive from the land of Israel a young girl, who became a servant to Naaman's wife.</VERS>\n\t\t\t<VERS vnumber=\"3\"> She told her mistress, \"If only my master were in the presence of the prophet who is in Samaria! Then he would cure him of his skin disease.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> Naaman went and told his master what the girl from the land of Israel had said. </VERS>\n\t\t\t<VERS vnumber=\"5\"> The king of Syria said, \"Go! I will send a letter to the king of Israel.\" So Naaman went, taking with him ten talents of silver, six thousand shekels of gold, and ten suits of clothes. </VERS>\n\t\t\t<VERS vnumber=\"6\"> He brought the letter to king of Israel. It read: \"This is a letter of introduction for my servant Naaman, whom I have sent to be cured of his skin disease.\" </VERS>\n\t\t\t<VERS vnumber=\"7\"> When the king of Israel read the letter, he tore his clothes and said, \"Am I God? Can I kill or restore life? Why does he ask me to cure a man of his skin disease? Certainly you must see that he is looking for an excuse to fight me!\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> When Elisha the prophet heard that the king had torn his clothes, he sent this message to the king, \"Why did you tear your clothes? Send him to me so he may know there is a prophet in Israel.\" </VERS>\n\t\t\t<VERS vnumber=\"9\"> So Naaman came with his horses and chariots and stood in the doorway of Elisha's house.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Elisha sent out a messenger who told him, \"Go and wash seven times in the Jordan; your skin will be restored and you will be healed.\" </VERS>\n\t\t\t<VERS vnumber=\"11\"> Naaman went away angry. He said, \"Look, I thought for sure he would come out, stand there, invoke the name of the LORD his God, wave his hand over the area, and cure the skin disease.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The rivers of Damascus, the Abana and Pharpar, are better than any of the waters of Israel! Could I not wash in them and be healed?\" So he turned around and went away angry. </VERS>\n\t\t\t<VERS vnumber=\"13\"> His servants approached and said to him, \"O master, if the prophet had told you to do some difficult task, you would have been willing to do it. It seems you should be happy that he simply said, \"Wash and you will be healed.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> So he went down and dipped in the Jordan seven times, as the prophet had instructed. His skin became as smooth as a young child's and he was healed.</VERS>\n\t\t\t<VERS vnumber=\"15\"> He and his entire entourage returned to the prophet. Naaman came and stood before him. He said, \"For sure I know that there is no God in all the earth except in Israel! Now, please accept a gift from your servant.\" </VERS>\n\t\t\t<VERS vnumber=\"16\"> But Elisha replied, \"As certainly as the LORD lives (whom I serve), I will take nothing from you.\" Naaman insisted that he take it, but he refused. </VERS>\n\t\t\t<VERS vnumber=\"17\"> Naaman said, \"If not, then please give your servant a load of dirt, enough for a pair of mules to carry, for your servant will never again offer a burnt offering or sacrifice to a god other than the LORD.</VERS>\n\t\t\t<VERS vnumber=\"18\"> May the LORD forgive your servant for this one thing: When my master enters the temple of Rimmon to worship, and he leans on my arm and I bow down in the temple of Rimmon, may the LORD forgive your servant for this.\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> Elisha said to him, \"Go in peace.\" When he had gone a short distance,</VERS>\n\t\t\t<VERS vnumber=\"20\"> Gehazi, the prophet Elisha's servant, thought, \"Look, my master did not accept what this Syrian Naaman offered him. As certainly as the LORD lives, I will run after him and accept something from him.\" </VERS>\n\t\t\t<VERS vnumber=\"21\"> So Gehazi ran after Naaman. When Naaman saw someone running after him, he got down from his chariot to meet him and asked, \"Is everything all right?\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> He answered, \"Everything is fine. My master sent me with this message, 'Look, two servants of the prophets just arrived from the Ephraimite hill country. Please give them a talent of silver and two suits of clothes.'\" </VERS>\n\t\t\t<VERS vnumber=\"23\"> Naaman said, \"Please accept two talents of silver. He insisted, and tied up two talents of silver in two bags, along with two suits of clothes. He gave them to two of his servants and they carried them for Gehazi.</VERS>\n\t\t\t<VERS vnumber=\"24\"> When he arrived at the hill, he took them from the servants and put them in the house. Then he sent the men on their way.</VERS>\n\t\t\t<VERS vnumber=\"25\"> When he came and stood before his master, Elisha asked him, \"Where have you been, Gehazi?\" He answered, \"Your servant hasn't been anywhere.\"</VERS>\n\t\t\t<VERS vnumber=\"26\"> Elisha replied, \"I was there in spirit when a man turned and got down from his chariot to meet you. This is not the proper time to accept silver or to accept clothes, olive groves, vineyards, sheep, cattle, and male and female servants.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Therefore Naaman's skin disease will afflict you and your descendants forever!\" When Gehazi went out from his presence, his skin was as white as snow.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"6\">\n\t\t\t<VERS vnumber=\"1\"> Some of the prophets said to Elisha, \"Look, the place where we meet with you is too cramped for us. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Let's go to the Jordan. Each of us will get a log from there and we will build a meeting place for ourselves there.\" He said, \"Go.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> One of them said, \"Please come along with your servants.\" He replied, \"All right, I'll come.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> So he went with them. When they arrived at the Jordan, they started cutting down trees.</VERS>\n\t\t\t<VERS vnumber=\"5\"> As one of them was felling a log, the ax head dropped into the water. He shouted, \"Oh no, my master! It was borrowed!\" </VERS>\n\t\t\t<VERS vnumber=\"6\"> The prophet asked, \"Where did it drop in?\" When he showed him the spot, Elisha cut off a branch, threw it in at that spot, and made the ax head float.</VERS>\n\t\t\t<VERS vnumber=\"7\"> He said, \"Lift it out.\" So he reached out his hand and grabbed it.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Now the king of Syria was at war with Israel. He consulted his advisers, who said, \"Invade at such and such a place.\" </VERS>\n\t\t\t<VERS vnumber=\"9\"> But the prophet sent this message to the king of Israel, \"Make sure you don't pass through this place because Syria is invading there.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> So the king of Israel sent a message to the place the prophet had pointed out, warning it to be on its guard. This happened on several occasions.</VERS>\n\t\t\t<VERS vnumber=\"11\"> This made the king of Syria upset. So he summoned his advisers and said to them, \"One of us must be helping the king of Israel.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> One of his advisers said, \"No, my master, O king. The prophet Elisha who lives in Israel keeps telling the king of Israel the things you say in your bedroom.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> The king ordered, \"Go, find out where he is, so I can send some men to capture him.\" The king was told, \"He is in Dothan.\" </VERS>\n\t\t\t<VERS vnumber=\"14\"> So he sent horses and chariots there, along with a good-sized army. They arrived during the night and surrounded the city.</VERS>\n\t\t\t<VERS vnumber=\"15\"> The prophet's attendant got up early in the morning. When he went outside there was an army surrounding the city, along with horses and chariots. He said to Elisha, \"Oh no, my master! What will we do?\" </VERS>\n\t\t\t<VERS vnumber=\"16\"> He replied, \"Don't be afraid, for our side outnumbers them.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> Then Elisha prayed, \"O LORD, open his eyes so he can see.\" The LORD opened the servant's eyes and he saw that the hill was full of horses and chariots of fire all around Elisha. </VERS>\n\t\t\t<VERS vnumber=\"18\"> As they approached him, Elisha prayed to the LORD, \"Strike these people with blindness.\" The LORD struck them with blindness as Elisha requested.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Then Elisha said to them, \"This is not the right road or city. Follow me, and I will lead you to the man you're looking for.\" He led them to Samaria.</VERS>\n\t\t\t<VERS vnumber=\"20\"> When they had entered Samaria, Elisha said, \"O LORD, open their eyes, so they can see.\" The LORD opened their eyes and they saw that they were in the middle of Samaria.</VERS>\n\t\t\t<VERS vnumber=\"21\"> When the king of Israel saw them, he asked Elisha, \"Should I strike them down, my master?\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> He replied, \"Do not strike them down! You did not capture them with your sword or bow, so what gives you the right to strike them down? Give them some food and water, so they can eat and drink and then go back to their master.\" </VERS>\n\t\t\t<VERS vnumber=\"23\"> So he threw a big banquet for them and they ate and drank. Then he sent them back to their master. After that no Syrian raiding parties again invaded the land of Israel.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Later King Ben Hadad of Syria assembled his entire army and attacked and besieged Samaria.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Samaria's food supply ran out. They laid siege to it so long that a donkey's head was selling for eighty shekels of silver and a quarter of a kab of dove's droppings for five shekels of silver.</VERS>\n\t\t\t<VERS vnumber=\"26\"> While the king of Israel was passing by on the city wall, a woman shouted to him, \"Help us, my master, O king!\"</VERS>\n\t\t\t<VERS vnumber=\"27\"> He replied, \"No, let the LORD help you. How can I help you? The threshing floor and winepress are empty.\"</VERS>\n\t\t\t<VERS vnumber=\"28\"> Then the king asked her, \"What's your problem?\" She answered, \"This woman said to me, 'Hand over your son; we'll eat him today and then eat my son tomorrow.'</VERS>\n\t\t\t<VERS vnumber=\"29\"> So we boiled my son and ate him. Then I said to her the next day, 'Hand over your son and we'll eat him.' But she hid her son!\"</VERS>\n\t\t\t<VERS vnumber=\"30\"> When the king heard what the woman said, he tore his clothes. As he was passing by on the wall, the people could see he was wearing sackcloth under his clothes.</VERS>\n\t\t\t<VERS vnumber=\"31\"> Then he said, \"May God judge me severely if Elisha son of Shaphat still has his head by the end of the day!\"</VERS>\n\t\t\t<VERS vnumber=\"32\"> Now Elisha was sitting in his house with the community leaders. The king sent a messenger on ahead, but before he arrived, Elisha said to the leaders, \"Do you realize this assassin intends to cut off my head?\" Look, when the messenger arrives, shut the door and lean against it. His master will certainly be right behind him.\"</VERS>\n\t\t\t<VERS vnumber=\"33\"> He was still talking to them when the messenger approached and said, \"Look, the LORD is responsible for this disaster! Why should I continue to wait for the LORD to help?\" </VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"7\">\n\t\t\t<VERS vnumber=\"1\"> Elisha replied, \"Hear the word of the LORD! This is what the LORD says, 'About this time tomorrow a seah of finely milled flour will sell for a shekel and two seahs of barley for a shekel at the gate of Samaria.'\" </VERS>\n\t\t\t<VERS vnumber=\"2\"> An officer who was the king's right-hand man responded to the prophet, \"Look, even if the LORD made it rain by opening holes in the sky, could this happen so soon?\" Elisha said, \"Look, you will see it happen with your own eyes, but you will not eat any of the food!\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> Now four men with a skin disease were sitting at the entrance of the city gate. They said to one another, \"Why are we just sitting here waiting to die?</VERS>\n\t\t\t<VERS vnumber=\"4\"> If we go into the city, we'll die of starvation, and if we stay here we'll die! So come on, let's defect to the Syrian camp! If they spare us, we'll live; if they kill us, well, we were going to die anyway.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> So they started toward the Syrian camp at dusk. When they reached the edge of the Syrian camp, there was no one there. </VERS>\n\t\t\t<VERS vnumber=\"6\"> The LORD had caused the Syrian camp to hear the sound of chariots and horses and a large army. Then they said to one another, \"Look, the king of Israel has paid the kings of the Hittites and Egypt to attack us!\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> So they got up and fled at dusk, leaving behind their tents, horses, and donkeys. They left the camp as it was and ran for their lives.</VERS>\n\t\t\t<VERS vnumber=\"8\"> When the men with a skin disease reached the edge of the camp, they entered a tent and had a meal. They also took some silver, gold, and clothes and went and hid it all. Then they went back and entered another tent. They looted it and went and hid what they had taken. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Then they said to one another, \"It's not right what we're doing! This is a day to celebrate, but we haven't told anyone. If we wait until dawn, we'll be punished. So come on, let's go and inform the royal palace.\" </VERS>\n\t\t\t<VERS vnumber=\"10\"> So they went and called out to the gatekeepers of the city. They told them, \"We entered the Syrian camp and there was no one there. We didn't even hear a man's voice. But the horses and donkeys are still tied up, and the tents remain up.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> The gatekeepers relayed the news to the royal palace.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The king got up in the night and said to his advisers, \"I will tell you what the Syrians have done to us. They know we are starving, so they left the camp and hid in the field, thinking, 'When they come out of the city, we will capture them alive and enter the city.'\" </VERS>\n\t\t\t<VERS vnumber=\"13\"> One of his advisers replied, \"Pick some men and have them take five of the horses that are left in the city. (Even if they are killed, their fate will be no different than that of all the Israelite people, we're all going to die!) Let's send them out so we can know for sure what's going on.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> So they picked two horsemen and the king sent them out to track the Syrian army. He ordered them, \"Go and find out what's going on.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> So they tracked them as far as the Jordan. The road was filled with clothes and equipment that the Syrians had discarded in their haste. The scouts went back and told the king. </VERS>\n\t\t\t<VERS vnumber=\"16\"> Then the people went out and looted the Syrian camp. A seah of finely milled flour sold for a shekel, and two seahs of barley for a shekel, just as the LORD had said they would.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Now the king had placed the officer who was his right-hand man at the city gate. When the people rushed out, they trampled him to death in the gate. This fulfilled the prophet's word which he had spoken when the king tried to arrest him.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The prophet told the king, \"Two seahs of barley will sell for a shekel, and a seah of finely milled flour for a shekel; this will happen about this time tomorrow in the gate of Samaria.\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> But the officer replied to the prophet, \"Look, even if the LORD made it rain by opening holes in the sky, could this happen so soon?\" Elisha said, \"Look, you will see it happen with your own eyes, but you will not eat any of the food!\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> This is exactly what happened to him. The people trampled him to death in the city gate.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"8\">\n\t\t\t<VERS vnumber=\"1\"> Now Elisha advised the woman whose son he had brought back to life, \"You and your family should go and live somewhere else for a while, for the LORD has decreed that a famine will overtake the land for seven years.\" </VERS>\n\t\t\t<VERS vnumber=\"2\"> So the woman did as the prophet said. She and her family went and lived in the land of the Philistines for seven years. </VERS>\n\t\t\t<VERS vnumber=\"3\"> After seven years the woman returned from the land of the Philistines and went to ask the king to give her back her house and field.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Now the king was talking to Gehazi, the prophet's servant, and said, \"Tell me all the great things which Elisha has done.\" </VERS>\n\t\t\t<VERS vnumber=\"5\"> While Gehazi was telling the king how Elisha had brought the dead back to life, the woman whose son he had brought back to life came to ask the king for her house and field. Gehazi said, \"My master, O king, this is the very woman and this is her son whom Elisha brought back to life!\" </VERS>\n\t\t\t<VERS vnumber=\"6\"> The king asked the woman about it, and she gave him the details. The king assigned a eunuch to take care of her request and ordered him, \"Give her back everything she owns, as well as the amount of crops her field produced from the day she left the land until now.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> Elisha traveled to Damascus while King Ben Hadad of Syria was sick. The king was told, \"The prophet has come here.\" </VERS>\n\t\t\t<VERS vnumber=\"8\"> So the king told Hazael, \"Take a gift and go visit the prophet. Request from him an oracle from the LORD. Ask him, 'Will I recover from this sickness?'\" </VERS>\n\t\t\t<VERS vnumber=\"9\"> So Hazael went to visit Elisha. He took along a gift, as well as forty camel loads of all the fine things of Damascus. When he arrived, he stood before him and said, \"Your son, King Ben Hadad of Syria, has sent me to you with this question, 'Will I recover from this sickness?'\" </VERS>\n\t\t\t<VERS vnumber=\"10\"> Elisha said to him, \"Go and tell him, 'You will surely recover,' but the LORD has revealed to me that he will surely die.\" </VERS>\n\t\t\t<VERS vnumber=\"11\"> Elisha just stared at him until Hazael became uncomfortable. Then the prophet started crying. </VERS>\n\t\t\t<VERS vnumber=\"12\"> Hazael asked, \"Why are you crying, my master?\" He replied, \"Because I know the trouble you will cause the Israelites. You will set fire to their fortresses, kill their young men with the sword, smash their children to bits, and rip open their pregnant women.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> Hazael said, \"How could your servant, who is as insignificant as a dog, accomplish this great military victory?\" Elisha answered, \"The LORD has revealed to me that you will be the king of Syria.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> He left Elisha and went to his master. Ben Hadad asked him, \"What did Elisha tell you?\" Hazael replied, \"He told me you would surely recover.\" </VERS>\n\t\t\t<VERS vnumber=\"15\"> The next day Hazael took a piece of cloth, dipped it in water, and spread it over Ben Hadad's face until he died. Then Hazael replaced him as king.</VERS>\n\t\t\t<VERS vnumber=\"16\"> In the fifth year of the reign of Israel's King Joram, son of Ahab, Jehoshaphat's son Jehoram became king over Judah.</VERS>\n\t\t\t<VERS vnumber=\"17\"> He was thirty-two years old when he became king and he reigned for eight years in Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"18\"> He followed in the footsteps of the kings of Israel, just as Ahab's dynasty had done, for he married Ahab's daughter. He did evil in the sight of the LORD. </VERS>\n\t\t\t<VERS vnumber=\"19\"> But the LORD was unwilling to destroy Judah. He preserved Judah for the sake of his servant David to whom he had promised a perpetual dynasty.</VERS>\n\t\t\t<VERS vnumber=\"20\"> During his reign Edom freed themselves from Judah's control and set up their own king.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Joram crossed over to Zair with all his chariots. The Edomites, who had surrounded him, attacked at night and defeated him and his chariot officers. The Israelite army retreated to their homeland.</VERS>\n\t\t\t<VERS vnumber=\"22\"> So Edom has remained free from Judah's control to this very day. At that same time Libnah also rebelled.</VERS>\n\t\t\t<VERS vnumber=\"23\"> The rest of the events of Joram's reign, including a record of his accomplishments, are recorded in the scroll called the Annals of the Kings of Judah.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Joram passed away and was buried with his ancestors in the city of David. His son Ahaziah replaced him as king.</VERS>\n\t\t\t<VERS vnumber=\"25\"> In the twelfth year of the reign of Israel's King Joram, son of Ahab, Jehoram's son Ahaziah became king over Judah.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Ahaziah was twenty-two years old when he became king and he reigned for one year in Jerusalem. His mother was Athaliah, the granddaughter of King Omri of Israel. </VERS>\n\t\t\t<VERS vnumber=\"27\"> He followed in the footsteps of Ahab's dynasty and did evil in the sight of the LORD, like Ahab's dynasty, for he was related to Ahab's family.</VERS>\n\t\t\t<VERS vnumber=\"28\"> He joined Ahab's son Joram in a battle against King Hazael of Syria at Ramoth Gilead in which the Syrians defeated Joram.</VERS>\n\t\t\t<VERS vnumber=\"29\"> King Joram returned to Jezreel to recover from the wounds he received from the Syrians in Ramah when he fought against King Hazael of Syria. King Ahaziah son of Jehoram of Judah went down to visit Joram son of Ahab in Jezreel, for he was ill.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"9\">\n\t\t\t<VERS vnumber=\"1\"> Now Elisha the prophet summoned a member of the prophetic guild and told him, \"Tuck your robes into your belt, take this container of olive oil in your hand, and go to Ramoth Gilead. </VERS>\n\t\t\t<VERS vnumber=\"2\"> When you arrive there, look for Jehu son of Jehoshaphat son of Nimshi and take him aside into an inner room.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Take the container of olive oil, pour it over his head, and say, 'This is what the LORD says, \"I have designated you as king over Israel.\"' Then open the door and run away quickly!\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> So the young prophet went to Ramoth Gilead. </VERS>\n\t\t\t<VERS vnumber=\"5\"> When he arrived, the officers of the army were sitting there. So he said, \"I have a message for you, O officer.\" Jehu asked, \"For which one of us?\" He replied, \"For you, O officer.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> So Jehu got up and went inside. Then the prophet poured the olive oil on his head and said to him, \"This is what the LORD God of Israel says, 'I have designated you as king over the LORD's people Israel. </VERS>\n\t\t\t<VERS vnumber=\"7\"> You will destroy the family of your master Ahab. I will get revenge against Jezebel for the shed blood of my servants the prophets and for the shed blood of all the LORD's servants.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Ahab's entire family will die. I will cut off every last male belonging to Ahab in Israel, including even the weak and incapacitated.</VERS>\n\t\t\t<VERS vnumber=\"9\"> I will make Ahab's dynasty like those of Jeroboam son of Nebat and Baasha son of Ahijah. </VERS>\n\t\t\t<VERS vnumber=\"10\"> Dogs will devour Jezebel on the plot of ground in Jezreel; she will not be buried.'\" Then he opened the door and ran away.</VERS>\n\t\t\t<VERS vnumber=\"11\"> When Jehu rejoined his master's servants, they asked him, \"Is everything all right? Why did this madman visit you?\" He replied, \"Ah, it's not important. You know what kind of man he is and the kinds of things he says.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> But they said, \"You're lying! Tell us what he said.\" So he told them what he had said. He also related how he had said, \"This is what the LORD says, 'I have designated you as king over Israel.'\" </VERS>\n\t\t\t<VERS vnumber=\"13\"> Each of them quickly took off his cloak and they spread them out at Jehu's feet on the steps. The trumpet was blown and they shouted, \"Jehu is king!\" </VERS>\n\t\t\t<VERS vnumber=\"14\"> Then Jehu son of Jehoshaphat son of Nimshi conspired against Joram. Now Joram had been in Ramoth Gilead with the whole Israelite army, guarding against an invasion by King Hazael of Syria. </VERS>\n\t\t\t<VERS vnumber=\"15\"> But King Joram had returned to Jezreel to recover from the wounds he received from the Syrians when he fought against King Hazael of Syria. Jehu told his supporters, \"If you really want me to be king, then don't let anyone escape from the city to go and warn Jezreel.\" </VERS>\n\t\t\t<VERS vnumber=\"16\"> Jehu drove his chariot to Jezreel, for Joram was recuperating there. (Now King Ahaziah of Judah had come down to visit Joram.)</VERS>\n\t\t\t<VERS vnumber=\"17\"> Now the watchman was standing on the tower in Jezreel and saw Jehu's troops approaching. He said, \"I see troops!\" Jehoram ordered, \"Send a rider out to meet them and have him ask, 'Is everything all right?'\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> So the horseman went to meet him and said, \"This is what the king says, 'Is everything all right?'\" Jehu replied, \"None of your business! Follow me.\" The watchman reported, \"The messenger reached them, but hasn't started back.\" </VERS>\n\t\t\t<VERS vnumber=\"19\"> So he sent a second horseman out to them and he said, \"This is what the king says, 'Is everything all right?'\" Jehu replied, \"None of your business! Follow me.\" </VERS>\n\t\t\t<VERS vnumber=\"20\"> The watchman reported, \"He reached them, but hasn't started back. The one who drives the lead chariot drives like Jehu son of Nimshi; he drives recklessly.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> Jehoram ordered, \"Hitch up my chariot.\" When his chariot had been hitched up, King Jehoram of Israel and King Ahaziah of Judah went out in their respective chariots to meet Jehu. They met up with him in the plot of land that had once belonged to Naboth of Jezreel.</VERS>\n\t\t\t<VERS vnumber=\"22\"> When Jehoram saw Jehu, he asked, \"Is everything all right, Jehu?\" He replied, \"How can everything be all right as long as your mother Jezebel promotes idolatry and pagan practices?\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> Jehoram turned his chariot around and took off. He said to Ahaziah, \"It's a trap, Ahaziah!\" </VERS>\n\t\t\t<VERS vnumber=\"24\"> Jehu aimed his bow and shot an arrow right between Jehoram's shoulders. The arrow went through his heart and he fell to his knees in his chariot. </VERS>\n\t\t\t<VERS vnumber=\"25\"> Jehu ordered his officer Bidkar, \"Pick him up and throw him into the part of the field that once belonged to Naboth of Jezreel. Remember, you and I were riding together behind his father Ahab, when the LORD pronounced this judgment on him, </VERS>\n\t\t\t<VERS vnumber=\"26\"> '\"Know for sure that I saw the shed blood of Naboth and his sons yesterday,\" says the LORD, \"and that I will give you what you deserve right here in this plot of land,\" says the LORD.' So now pick him up and throw him into this plot of land, just as the LORD said.\"</VERS>\n\t\t\t<VERS vnumber=\"27\"> When King Ahaziah of Judah saw what happened, he took off up the road to Beth Haggan. Jehu chased him and ordered, \"Shoot him too.\" They shot him while he was driving his chariot up the ascent of Gur near Ibleam. He fled to Megiddo and died there. </VERS>\n\t\t\t<VERS vnumber=\"28\"> His servants took his body back to Jerusalem and buried him in his tomb with his ancestors in the city of David. </VERS>\n\t\t\t<VERS vnumber=\"29\"> Ahaziah had become king over Judah in the eleventh year of Joram son of Ahab.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Jehu approached Jezreel. When Jezebel heard the news, she put on some eye liner, fixed up her hair, and leaned out the window. </VERS>\n\t\t\t<VERS vnumber=\"31\"> When Jehu came through the gate, she said, \"Is everything all right, Zimri, murderer of his master?\"</VERS>\n\t\t\t<VERS vnumber=\"32\"> He looked up at the window and said, \"Who is on my side? Who?\" Two or three eunuchs looked down at him. </VERS>\n\t\t\t<VERS vnumber=\"33\"> He said, \"Throw her down!\" So they threw her down, and when she hit the ground, her blood splattered against the wall and the horses, and Jehu drove his chariot over her.</VERS>\n\t\t\t<VERS vnumber=\"34\"> He went inside and had a meal. Then he said, \"Dispose of this accursed woman's corpse. Bury her, for after all, she was a king's daughter.\"</VERS>\n\t\t\t<VERS vnumber=\"35\"> But when they went to bury her, they found nothing left but the skull, feet, and palms of the hands. </VERS>\n\t\t\t<VERS vnumber=\"36\"> When they went back and told him, he said, \"The LORD's word through his servant, Elijah the Tishbite, has come to pass. He warned, 'In the plot of land at Jezreel, dogs will devour Jezebel's flesh. </VERS>\n\t\t\t<VERS vnumber=\"37\"> Jezebel's corpse will be like manure on the surface of the ground in the plot of land at Jezreel. People will not be able to even recognize her.'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"10\">\n\t\t\t<VERS vnumber=\"1\"> Ahab had seventy sons living in Samaria. So Jehu wrote letters and sent them to Samaria to the leading officials of Jezreel and to the guardians of Ahab's dynasty. This is what the letters said,</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"You have with you the sons of your master, chariots and horses, a fortified city, and weapons. So when this letter arrives,</VERS>\n\t\t\t<VERS vnumber=\"3\"> pick the best and most capable of your master's sons, place him on his father's throne, and defend your master's dynasty.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> They were absolutely terrified and said, \"Look, two kings could not stop him! How can we?\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> So the palace supervisor, the city commissioner, the leaders, and the guardians sent this message to Jehu, \"We are your subjects! Whatever you say, we will do. We will not make anyone king. Do what you consider proper.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> He wrote them a second letter, saying, \"If you are really on my side and are willing to obey me, then take the heads of your master's sons and come to me in Jezreel at this time tomorrow.\" Now the king had seventy sons, and the prominent men of the city were raising them. </VERS>\n\t\t\t<VERS vnumber=\"7\"> When they received the letter, they seized the king's sons and executed all seventy of them. They put their heads in baskets and sent them to him in Jezreel. </VERS>\n\t\t\t<VERS vnumber=\"8\"> The messenger came and told Jehu, \"They have brought the heads of the king's sons.\" Jehu said, \"Stack them in two piles at the entrance of the city gate until morning.\" </VERS>\n\t\t\t<VERS vnumber=\"9\"> In the morning he went out and stood there. Then he said to all the people, \"You are innocent. I conspired against my master and killed him. But who struck down all of these men?</VERS>\n\t\t\t<VERS vnumber=\"10\"> Therefore take note that not one of the judgments the LORD announced against Ahab's dynasty has failed to materialize. The LORD had done what he announced through his servant Elijah.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> Then Jehu killed all who were left of Ahab's family in Jezreel, and all his nobles, close friends, and priests. He left no survivors.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Jehu then left there and set out for Samaria. While he was traveling through Beth Eked of the Shepherds, </VERS>\n\t\t\t<VERS vnumber=\"13\"> Jehu encountered the relatives of King Ahaziah of Judah. He asked, \"Who are you?\" They replied, \"We are Ahaziah's relatives. We have come down to see how the king's sons and the queen mother's sons are doing.\" </VERS>\n\t\t\t<VERS vnumber=\"14\"> He said, \"Capture them alive!\" So they captured them alive and then executed all forty-two of them in the cistern at Beth Eked. He left no survivors.</VERS>\n\t\t\t<VERS vnumber=\"15\"> When he left there, he met Jehonadab, son of Rekab, who had been looking for him. Jehu greeted him and asked, \"Are you as committed to me as I am to you?\" Jehonadab answered, \"I am!\" Jehu replied, \"If so, give me your hand.\" So he offered his hand and Jehu pulled him up into the chariot.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Jehu said, \"Come with me and see how zealous I am for the LORD's cause.\" So he took him along in his chariot. </VERS>\n\t\t\t<VERS vnumber=\"17\"> He went to Samaria and exterminated all the members of Ahab's family who were still alive in Samaria, just as the LORD had announced to Elijah.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Jehu assembled all the people and said to them, \"Ahab worshiped Baal a little; Jehu will worship him with great devotion.</VERS>\n\t\t\t<VERS vnumber=\"19\"> So now, bring to me all the prophets of Baal, as well as all his servants and priests. None of them must be absent, for I am offering a great sacrifice to Baal. Any of them who fail to appear will lose their lives.\" But Jehu was tricking them so he could destroy the servants of Baal. </VERS>\n\t\t\t<VERS vnumber=\"20\"> Then Jehu ordered, \"Make arrangements for a celebration for Baal.\" So they announced it. </VERS>\n\t\t\t<VERS vnumber=\"21\"> Jehu sent invitations throughout Israel, and all the servants of Baal came; not one was absent. They arrived at the temple of Baal and filled it up from end to end.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Jehu ordered the one who was in charge of the wardrobe, \"Bring out robes for all the servants of Baal.\" So he brought out robes for them. </VERS>\n\t\t\t<VERS vnumber=\"23\"> Then Jehu and Jehonadab son of Rekab went to the temple of Baal. Jehu said to the servants of Baal, \"Make sure there are no servants of the LORD here with you; there must be only servants of Baal.\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> They went inside to offer sacrifices and burnt offerings. Now Jehu had stationed eighty men outside. He had told them, \"If any of the men inside get away, you will pay with your lives!\"</VERS>\n\t\t\t<VERS vnumber=\"25\"> When he finished offering the burnt sacrifice, Jehu ordered the royal guard and officers, \"Come in and strike them down! Don't let any escape!\" So the royal guard and officers struck them down with the sword and left their bodies lying there. Then they entered the inner sanctuary of the temple of Baal.</VERS>\n\t\t\t<VERS vnumber=\"26\"> They hauled out the sacred pillar of the temple of Baal and burned it.</VERS>\n\t\t\t<VERS vnumber=\"27\"> They demolished the sacred pillar of Baal and the temple of Baal; it is used as a latrine to this very day. </VERS>\n\t\t\t<VERS vnumber=\"28\"> So Jehu eradicated Baal worship from Israel.</VERS>\n\t\t\t<VERS vnumber=\"29\"> However, Jehu did not repudiate the sins which Jeroboam son of Nebat had encouraged Israel to commit; the golden calves remained in Bethel and Dan.</VERS>\n\t\t\t<VERS vnumber=\"30\"> The LORD said to Jehu, \"You have done well. You have accomplished my will and carried out my wishes with regard to Ahab's dynasty. Therefore four generations of your descendants will rule over Israel.\"</VERS>\n\t\t\t<VERS vnumber=\"31\"> But Jehu did not carefully and wholeheartedly obey the law of the LORD God of Israel. He did not repudiate the sins which Jeroboam had encouraged Israel to commit.</VERS>\n\t\t\t<VERS vnumber=\"32\"> In those days the LORD began to reduce the size of Israel's territory. Hazael attacked their eastern border.</VERS>\n\t\t\t<VERS vnumber=\"33\"> He conquered all the land of Gilead, including the territory of Gad, Reuben, and Manasseh, extending all the way from the Aroer in the Arnon Valley through Gilead to Bashan.</VERS>\n\t\t\t<VERS vnumber=\"34\"> The rest of the events of Jehu's reign, including all his accomplishments and successes, are recorded in the scroll called the Annals of the Kings of Israel.</VERS>\n\t\t\t<VERS vnumber=\"35\"> Jehu passed away and was buried in Samaria. His son Jehoahaz replaced him as king. </VERS>\n\t\t\t<VERS vnumber=\"36\"> Jehu reigned over Israel for twenty-eight years in Samaria.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"11\">\n\t\t\t<VERS vnumber=\"1\"> When Athaliah the mother of Ahaziah saw that her son was dead, she was determined to destroy the entire royal line.</VERS>\n\t\t\t<VERS vnumber=\"2\"> So Jehosheba, the daughter of King Joram and sister of Ahaziah, took Ahaziah's son Joash and sneaked him away from the rest of the royal descendants who were to be executed. She hid him and his nurse in the room where the bed covers were stored. So he was hidden from Athaliah and escaped execution.</VERS>\n\t\t\t<VERS vnumber=\"3\"> He hid out with his nurse in the LORD's temple for six years, while Athaliah was ruling over the land.</VERS>\n\t\t\t<VERS vnumber=\"4\"> In the seventh year Jehoiada summoned the officers of the units of hundreds of the Carians and the royal bodyguard. He met with them in the LORD's temple. He made an agreement with them and made them swear an oath of allegiance in the LORD's temple. Then he showed them the king's son. </VERS>\n\t\t\t<VERS vnumber=\"5\"> He ordered them, \"This is what you must do. One third of the unit that is on duty during the Sabbath will guard the royal palace.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Another third of you will be stationed at the Foundation Gate. Still another third of you will be stationed at the gate behind the royal guard. You will take turns guarding the palace.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The two units who are off duty on the Sabbath will guard the LORD's temple and protect the king.</VERS>\n\t\t\t<VERS vnumber=\"8\"> You must surround the king. Each of you must hold his weapon in his hand. Whoever approaches your ranks must be killed. You must accompany the king wherever he goes.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> The officers of the units of hundreds did just as Jehoiada the priest ordered. Each of them took his men, those who were on duty during the Sabbath as well as those who were off duty on the Sabbath, and reported to Jehoiada the priest. </VERS>\n\t\t\t<VERS vnumber=\"10\"> The priest gave to the officers of the units of hundreds King David's spears and the shields that were kept in the LORD's temple.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The royal bodyguard took their stations, each holding his weapon in his hand. They lined up from the south side of the temple to the north side and stood near the altar and the temple, surrounding the king.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Jehoiada led out the king's son and placed on him the crown and the royal insignia. They proclaimed him king and poured olive oil on his head. They clapped their hands and cried out, \"Long live the king!\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> When Athaliah heard the royal guard shout, she joined the crowd at the LORD's temple. </VERS>\n\t\t\t<VERS vnumber=\"14\"> Then she saw the king standing by the pillar, according to custom. The officers stood beside the king with their trumpets and all the people of the land were celebrating and blowing trumpets. Athaliah tore her clothes and screamed, \"Treason, treason!\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> Jehoiada the priest ordered the officers of the units of hundreds, who were in charge of the army, \"Bring her outside the temple to the guards. Put the sword to anyone who follows her.\" The priest gave this order because he had decided she should not be executed in the LORD's temple.</VERS>\n\t\t\t<VERS vnumber=\"16\"> They seized her and took her into the precincts of the royal palace through the horses' entrance. There she was executed.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Jehoiada then drew up a covenant between the LORD and the king and people, stipulating that they should be loyal to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"18\"> All the people of the land went and demolished the temple of Baal. They smashed its altars and idols to bits. They killed Mattan the priest of Baal in front of the altar. Jehoiada the priest then placed guards at the LORD's temple. </VERS>\n\t\t\t<VERS vnumber=\"19\"> He took the officers of the units of hundreds, the Carians, the royal bodyguard, and all the people of land, and together they led the king down from the LORD's temple. They entered the royal palace through the Gate of the Royal Bodyguard, and the king sat down on the royal throne.</VERS>\n\t\t\t<VERS vnumber=\"20\"> All the people of the land celebrated, for the city had rest now that they had killed Athaliah with the sword in the royal palace.</VERS>\n\t\t\t<VERS vnumber=\"21\">  Jehoash was seven years old when he began to reign. </VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"12\">\n\t\t\t<VERS vnumber=\"1\">  In Jehu's seventh year Jehoash became king; he reigned for forty years in Jerusalem. His mother was Zibiah, who was from Beer Sheba. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Throughout his lifetime Jehoash did what the LORD approved, just as Jehoiada the priest taught him. </VERS>\n\t\t\t<VERS vnumber=\"3\"> But the high places were not eliminated; the people continued to offer sacrifices and burn incense on the high places.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Jehoash said to the priests, \"I place at your disposal all the consecrated silver that has been brought to the LORD's temple, including the silver collected from the census tax, the silver received from those who have made vows, and all the silver that people have voluntarily contributed to the LORD's temple.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The priests should receive the silver they need from the treasurers and repair any damage to the temple they discover.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> By the twenty-third year of King Jehoash's reign the priests had still not repaired the damage to the temple.</VERS>\n\t\t\t<VERS vnumber=\"7\"> So King Jehoash summoned Jehoiada the priest along with the other priests, and said to them, \"Why have you not repaired the damage to the temple? Now, take no more silver from your treasurers unless you intend to use it to repair the damage.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> The priests agreed not to collect silver from the people and relieved themselves of personal responsibility for the temple repairs.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Jehoiada the priest took a chest and drilled a hole in its lid. He placed it on the right side of the altar near the entrance of the LORD's temple. The priests who guarded the entrance would put into it all the silver brought to the LORD's temple. </VERS>\n\t\t\t<VERS vnumber=\"10\"> When they saw the chest was full of silver, the royal secretary and the high priest counted the silver that had been brought to the LORD's temple and bagged it up.</VERS>\n\t\t\t<VERS vnumber=\"11\"> They would then hand over the silver that had been weighed to the construction foremen assigned to the LORD's temple. They hired carpenters and builders to work on the LORD's temple, </VERS>\n\t\t\t<VERS vnumber=\"12\"> as well as masons and stonecutters. They bought wood and chiseled stone to repair the damage to the LORD's temple and also paid for all the other expenses.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The silver brought to the LORD's temple was not used for silver bowls, trimming shears, basins, trumpets, or any kind of gold or silver implements.</VERS>\n\t\t\t<VERS vnumber=\"14\"> It was handed over to the foremen who used it to repair the LORD's temple. </VERS>\n\t\t\t<VERS vnumber=\"15\"> They did not audit the treasurers who disbursed the funds to the foremen, for they were honest.</VERS>\n\t\t\t<VERS vnumber=\"16\"> (The silver collected in conjunction with reparation offerings and sin offerings was not brought to the LORD's temple; it belonged to the priests.)</VERS>\n\t\t\t<VERS vnumber=\"17\"> At that time King Hazael of Syria attacked Gath and captured it. Hazael then decided to attack Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"18\"> King Jehoash of Judah collected all the sacred items that his ancestors Jehoshaphat, Jehoram, and Ahaziah, kings of Judah, had consecrated, as well as his own sacred items and all the gold that could be found in the treasuries of the LORD's temple and the royal palace. He sent it all to King Hazael of Syria, who then withdrew from Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"19\"> The rest of the events of Joash's reign, including all his accomplishments, are recorded in the scroll called the Annals of the Kings of Judah.</VERS>\n\t\t\t<VERS vnumber=\"20\"> His servants conspired against him and murdered Joash at Beth-Millo, on the road that goes down to Silla.</VERS>\n\t\t\t<VERS vnumber=\"21\"> His servants Jozabad son of Shimeath and Jehozabad son of Shomer murdered him. He was buried with his ancestors in the city of David. His son Amaziah replaced him as king.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"13\">\n\t\t\t<VERS vnumber=\"1\"> In the twenty-third year of the reign of Judah's King Joash son of Ahaziah, Jehu's son Jehoahaz became king over Israel. He reigned in Samaria for seventeen years. </VERS>\n\t\t\t<VERS vnumber=\"2\"> He did evil in the sight of the LORD. He continued in the sinful ways of Jeroboam son of Nebat who had encouraged Israel to sin; he did not repudiate those sins.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The LORD was furious with Israel and handed them over to King Hazael of Syria and to Hazael's son Ben Hadad for many years.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Jehoahaz asked for the LORD's mercy and the LORD responded favorably, for he saw that Israel was oppressed by the king of Syria.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The LORD provided a deliverer for Israel and they were freed from Syria's power. The Israelites once more lived in security.</VERS>\n\t\t\t<VERS vnumber=\"6\"> But they did not repudiate the sinful ways of the family of Jeroboam, who encouraged Israel to sin; they continued in those sins. There was even an Asherah pole standing in Samaria. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Jehoahaz had no army left except for fifty horsemen, ten chariots, and 10,000 foot soldiers. The king of Syria had destroyed his troops and trampled on them like dust.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The rest of the events of Jehoahaz's reign, including all his accomplishments and successes, are recorded in the scroll called the Annals of the Kings of Israel.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Jehoahaz passed away and was buried in Samaria. His son Joash replaced him as king.</VERS>\n\t\t\t<VERS vnumber=\"10\"> In the thirty-seventh year of King Joash's reign over Judah, Jehoahaz's son Jehoash became king over Israel. He reigned in Samaria for sixteen years. </VERS>\n\t\t\t<VERS vnumber=\"11\"> He did evil in the sight of the LORD. He did not repudiate the sinful ways of Jeroboam son of Nebat who encouraged Israel to sin; he continued in those sins.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The rest of the events of Joash's reign, including all his accomplishments and his successful war with King Amaziah of Judah, are recorded in the scroll called the Annals of the Kings of Israel.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Joash passed away and Jeroboam succeeded him on the throne. Joash was buried in Samaria with the kings of Israel.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Now Elisha had a terminal illness. King Joash of Israel went down to visit him. He wept before him and said, \"My father, my father! The chariot and horsemen of Israel!\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> Elisha told him, \"Take a bow and some arrows,\" and he did so.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Then Elisha told the king of Israel, \"Aim the bow.\" He did so, and Elisha placed his hands on the king's hands. </VERS>\n\t\t\t<VERS vnumber=\"17\"> Elisha said, \"Open the east window,\" and he did so. Elisha said, \"Shoot!\" and he did so. Elisha said, \"This arrow symbolizes the victory the LORD will give you over Syria. You will annihilate Syria in Aphek!\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> Then Elisha said, \"Take the arrows,\" and he did so. He told the king of Israel, \"Strike the ground!\" He struck the ground three times and stopped. </VERS>\n\t\t\t<VERS vnumber=\"19\"> The prophet got angry at him and said, \"If you had struck the ground five or six times, you would have annihilated Syria! But now, you will defeat Syria only three times.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> Elisha died and was buried. Moabite raiding parties invaded the land at the beginning of the year.</VERS>\n\t\t\t<VERS vnumber=\"21\"> One day some men were burying a man when they spotted a raiding party. So they threw the dead man into Elisha's tomb. When the body touched Elisha's bones, the dead man came to life and stood on his feet.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Now King Hazael of Syria oppressed Israel throughout Jehoahaz's reign.</VERS>\n\t\t\t<VERS vnumber=\"23\"> But the LORD had mercy on them and felt pity for them. He extended his favor to them because of the promise he had made to Abraham, Isaac, and Jacob. He has been unwilling to destroy them or remove them from his presence to this very day.</VERS>\n\t\t\t<VERS vnumber=\"24\"> When King Hazael of Syria died, his son Ben Hadad replaced him as king.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Jehoahaz's son Jehoash took back from Ben Hadad son of Hazael the cities that he had taken from his father Jehoahaz in war. Joash defeated him three times and recovered the Israelite cities.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"14\">\n\t\t\t<VERS vnumber=\"1\"> In the second year of the reign of Israel's King Joash son of Joahaz, Joash's son Amaziah became king over Judah. </VERS>\n\t\t\t<VERS vnumber=\"2\"> He was twenty-five years old when he began to reign, and he reigned for twenty-nine years in Jerusalem. His mother was Jehoaddan, who was from Jerusalem. </VERS>\n\t\t\t<VERS vnumber=\"3\"> He did what the LORD approved, but not like David his father. He followed the example of his father Joash.</VERS>\n\t\t\t<VERS vnumber=\"4\"> But the high places were not eliminated; the people continued to offer sacrifices and burn incense on the high places.</VERS>\n\t\t\t<VERS vnumber=\"5\"> When he had secured control of the kingdom, he executed the servants who had assassinated his father.</VERS>\n\t\t\t<VERS vnumber=\"6\"> But he did not execute the sons of the assassins. He obeyed the LORD's commandment as recorded in the law scroll of Moses, \"Fathers must not be put to death for what their sons do, and sons must not be put to death for what their fathers do. A man must be put to death only for his own sin.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> He defeated 10,000 Edomites in the Salt Valley; he captured Sela in battle and renamed it Joktheel, a name it has retained to this very day. </VERS>\n\t\t\t<VERS vnumber=\"8\"> Then Amaziah sent messengers to Jehoash son of Jehoahaz son of Jehu, king of Israel. He said, \"Come, let's meet face to face.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> King Jehoash of Israel sent this message back to King Amaziah of Judah, \"A thornbush in Lebanon sent this message to a cedar in Lebanon, 'Give your daughter to my son as a wife.' Then a wild animal of Lebanon came by and trampled down the thorn.</VERS>\n\t\t\t<VERS vnumber=\"10\"> You thoroughly defeated Edom and it has gone to your head! Gloat over your success, but stay in your palace. Why bring calamity on yourself? Why bring down yourself and Judah along with you?\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> But Amaziah would not heed the warning, so King Jehoash of Israel attacked. He and King Amaziah of Judah met face to face in Beth Shemesh of Judah. </VERS>\n\t\t\t<VERS vnumber=\"12\"> Judah was defeated by Israel, and each man ran back home.</VERS>\n\t\t\t<VERS vnumber=\"13\"> King Jehoash of Israel captured King Amaziah of Judah, son of Jehoash son of Ahaziah, in Beth Shemesh. He attacked Jerusalem and broke down the wall of Jerusalem from the Gate of Ephraim to the Corner Gate, a distance of about six hundred feet.</VERS>\n\t\t\t<VERS vnumber=\"14\"> He took away all the gold and silver, all the items found in the LORD's temple and in the treasuries of the royal palace, and some hostages. Then he went back to Samaria. (</VERS>\n\t\t\t<VERS vnumber=\"15\"> The rest of the events of Jehoash's reign, including all his accomplishments and his successful war with King Amaziah of Judah, are recorded in the scroll called the Annals of the Kings of Israel.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Jehoash passed away and was buried in Samaria with the kings of Israel. His son Jeroboam replaced him as king.)</VERS>\n\t\t\t<VERS vnumber=\"17\"> King Amaziah son of Joash of Judah lived for fifteen years after the death of King Jehoash son of Jehoahaz of Israel.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The rest of the events of Amaziah's reign are recorded in the scroll called the Annals of the Kings of Judah.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Conspirators plotted against him in Jerusalem, so he fled to Lachish. But they sent assassins after him and they killed him there. </VERS>\n\t\t\t<VERS vnumber=\"20\"> His body was carried back by horses and he was buried in Jerusalem with his ancestors in the city of David. </VERS>\n\t\t\t<VERS vnumber=\"21\"> All the people of Judah took Azariah, who was sixteen years old, and made him king in his father Amaziah's place.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Azariah built up Elat and restored it to Judah after the king had passed away.</VERS>\n\t\t\t<VERS vnumber=\"23\"> In the fifteenth year of the reign of Judah's King Amaziah, son of Joash, Jeroboam son of Joash became king over Israel. He reigned for forty-one years in Samaria.</VERS>\n\t\t\t<VERS vnumber=\"24\"> He did evil in the sight of the LORD; he did not repudiate the sinful ways of Jeroboam son of Nebat who encouraged Israel to sin. </VERS>\n\t\t\t<VERS vnumber=\"25\"> He restored the border of Israel from Lebo Hamath in the north to the sea of the Arabah in the south, in accordance with the word of the LORD God of Israel announced through his servant Jonah son of Amittai, the prophet from Gath Hepher. </VERS>\n\t\t\t<VERS vnumber=\"26\"> The LORD saw Israel's intense suffering; everyone was weak and incapacitated and Israel had no deliverer.</VERS>\n\t\t\t<VERS vnumber=\"27\"> The LORD had not decreed that he would blot out Israel's memory from under heaven, so he delivered them through Jeroboam son of Joash.</VERS>\n\t\t\t<VERS vnumber=\"28\"> The rest of the events of Jeroboam's reign, including all his accomplishments, his military success in restoring Israelite control over Damascus and Hamath, are recorded in the scroll called the Annals of the Kings of Israel.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Jeroboam passed away and was buried in Samaria with the kings of Israel. His son Zechariah replaced him as king.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"15\">\n\t\t\t<VERS vnumber=\"1\"> In the twenty-seventh year of King Jeroboam's reign over Israel, Amaziah's son Azariah became king over Judah.</VERS>\n\t\t\t<VERS vnumber=\"2\"> He was sixteen years old when he began to reign, and he reigned for fifty-two years in Jerusalem. His mother's name was Jecholiah, who was from Jerusalem. </VERS>\n\t\t\t<VERS vnumber=\"3\"> He did what the LORD approved, just as his father Amaziah had done.</VERS>\n\t\t\t<VERS vnumber=\"4\"> But the high places were not eliminated; the people continued to offer sacrifices and burn incense on the high places.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The LORD afflicted the king with an illness; he suffered from a skin disease until the day he died. He lived in separate quarters, while his son Jotham was in charge of the palace and ruled over the people of the land.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The rest of the events of Azariah's reign, including all his accomplishments, are recorded in the scroll called the Annals of the Kings of Judah.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Azariah passed away and was buried with his ancestors in the city of David. His son Jotham replaced him as king.</VERS>\n\t\t\t<VERS vnumber=\"8\"> In the thirty-eighth year of King Azariah's reign over Judah, Jeroboam's son Zechariah became king over Israel. He reigned in Samaria for six months. </VERS>\n\t\t\t<VERS vnumber=\"9\"> He did evil in the sight of the LORD, as his ancestors had done. He did not repudiate the sinful ways of Jeroboam son of Nebat who encouraged Israel to sin. </VERS>\n\t\t\t<VERS vnumber=\"10\"> Shallum son of Jabesh conspired against him; he assassinated him in Ibleam and took his place as king. </VERS>\n\t\t\t<VERS vnumber=\"11\"> The rest of the events of Zechariah's reign are recorded in the scroll called the Annals of the Kings of Israel.</VERS>\n\t\t\t<VERS vnumber=\"12\"> His assassination brought to fulfillment the LORD's word to Jehu, \"Four generations of your descendants will rule over Israel.\" That is exactly what happened.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Shallum son of Jabesh became king in the thirty-ninth year of King Uzziah's reign over Judah. He reigned for one month in Samaria. </VERS>\n\t\t\t<VERS vnumber=\"14\"> Menahem son of Gadi went up from Tirzah to Samaria and attacked Shallum son of Jabesh. He killed him and took his place as king. </VERS>\n\t\t\t<VERS vnumber=\"15\"> The rest of the events of Shallum's reign, including the conspiracy he organized, are recorded in the scroll called the Annals of the Kings of Israel.</VERS>\n\t\t\t<VERS vnumber=\"16\"> At that time Menahem came from Tirzah and attacked Tiphsah. He struck down all who lived in the city and the surrounding territory, because they would not surrender. He even ripped open the pregnant women.</VERS>\n\t\t\t<VERS vnumber=\"17\"> In the thirty-ninth year of King Azariah's reign over Judah, Menahem son of Gadi became king over Israel. He reigned for twelve years in Samaria.</VERS>\n\t\t\t<VERS vnumber=\"18\"> He did evil in the sight of the LORD; he did not repudiate the sinful ways of Jeroboam son of Nebat who encouraged Israel to sin. During his reign,</VERS>\n\t\t\t<VERS vnumber=\"19\"> Pul king of Assyria invaded the land, and Menahem paid him a thousand talents of silver to gain his support and to solidify his control of the kingdom.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Menahem got this silver by taxing all the wealthy men in Israel; he took fifty shekels of silver from each one of them and paid it to the king of Assyria. Then the king of Assyria left; he did not stay there in the land.</VERS>\n\t\t\t<VERS vnumber=\"21\"> The rest of the events of Menahem's reign, including all his accomplishments, are recorded in the scroll called the Annals of the Kings of Israel.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Menahem passed away and his son Pekahiah replaced him as king.</VERS>\n\t\t\t<VERS vnumber=\"23\"> In the fiftieth year of King Azariah's reign over Judah, Menahem's son Pekahiah became king over Israel. He reigned in Samaria for two years. </VERS>\n\t\t\t<VERS vnumber=\"24\"> He did evil in the sight of the LORD; he did not repudiate the sinful ways of Jeroboam son of Nebat who encouraged Israel to sin. </VERS>\n\t\t\t<VERS vnumber=\"25\"> His officer Pekah son of Remaliah conspired against him. He and fifty Gileadites assassinated Pekahiah, as well as Argob and Arieh, in Samaria in the fortress of the royal palace. Pekah then took his place as king.</VERS>\n\t\t\t<VERS vnumber=\"26\"> The rest of the events of Pekahiah's reign, including all his accomplishments, are recorded in the scroll called the Annals of the Kings of Israel.</VERS>\n\t\t\t<VERS vnumber=\"27\"> In the fifty-second year of King Azariah's reign over Judah, Pekah son of Remaliah became king over Israel. He reigned in Samaria for twenty years.</VERS>\n\t\t\t<VERS vnumber=\"28\"> He did evil in the sight of the LORD; he did not repudiate the sinful ways of Jeroboam son of Nebat who encouraged Israel to sin. </VERS>\n\t\t\t<VERS vnumber=\"29\"> During Pekah's reign over Israel, King Tiglath-pileser of Assyria came and captured Ijon, Abel Beth Maacah, Janoah, Kedesh, Hazor, Gilead, and Galilee, including all the territory of Naphtali. He deported the people to Assyria. </VERS>\n\t\t\t<VERS vnumber=\"30\"> Hoshea son of Elah conspired against Pekah son of Remaliah. He assassinated him and took his place as king, in the twentieth year of the reign of Jotham son of Uzziah.</VERS>\n\t\t\t<VERS vnumber=\"31\"> The rest of the events of Pekah's reign, including all his accomplishments, are recorded in the scroll called the Annals of the Kings of Israel.</VERS>\n\t\t\t<VERS vnumber=\"32\"> In the second year of the reign of Israel's King Pekah son of Remaliah, Uzziah's son Jotham became king over Judah.</VERS>\n\t\t\t<VERS vnumber=\"33\"> He was twenty-five years old when he began to reign, and he reigned for sixteen years in Jerusalem. His mother was Jerusha the daughter of Zadok.</VERS>\n\t\t\t<VERS vnumber=\"34\"> He did what the LORD approved, just as his father Uzziah had done.</VERS>\n\t\t\t<VERS vnumber=\"35\"> But the high places were not eliminated; the people continued to offer sacrifices and burn incense on the high places. He built the Upper Gate to the LORD's temple.</VERS>\n\t\t\t<VERS vnumber=\"36\"> The rest of the events of Jotham's reign, including his accomplishments, are recorded in the scroll called the Annals of the Kings of Judah.</VERS>\n\t\t\t<VERS vnumber=\"37\"> In those days the LORD prompted King Rezin of Syria and Pekah son of Remaliah to attack Judah.</VERS>\n\t\t\t<VERS vnumber=\"38\"> Jotham passed away and was buried with his ancestors in the city of his ancestor David. His son Ahaz replaced him as king.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"16\">\n\t\t\t<VERS vnumber=\"1\"> In the seventeenth year of the reign of Pekah son of Remaliah, Jotham's son Ahaz became king over Judah.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Ahaz was twenty years old when he began to reign, and he reigned for sixteen years in Jerusalem. He did not do what pleased the LORD his God, in contrast to his ancestor David.</VERS>\n\t\t\t<VERS vnumber=\"3\"> He followed in the footsteps of the kings of Israel. He passed his son through the fire, a horrible sin practiced by the nations whom the LORD drove out from before the Israelites. </VERS>\n\t\t\t<VERS vnumber=\"4\"> He offered sacrifices and burned incense on the high places, on the hills, and under every green tree.</VERS>\n\t\t\t<VERS vnumber=\"5\"> At that time King Rezin of Syria and King Pekah son of Remaliah of Israel attacked Jerusalem. They besieged Ahaz, but were unable to conquer him.</VERS>\n\t\t\t<VERS vnumber=\"6\"> (At that time King Rezin of Syria recovered Elat for Syria; he drove the Judahites from there. Syrians arrived in Elat and live there to this very day.) </VERS>\n\t\t\t<VERS vnumber=\"7\"> Ahaz sent messengers to King Tiglath-pileser of Assyria, saying, \"I am your servant and your dependent. March up and rescue me from the power of the king of Syria and the king of Israel, who have attacked me.\" </VERS>\n\t\t\t<VERS vnumber=\"8\"> Then Ahaz took the silver and gold that were in the LORD's temple and in the treasuries of the royal palace and sent it as tribute to the king of Assyria. </VERS>\n\t\t\t<VERS vnumber=\"9\"> The king of Assyria responded favorably to his request; he attacked Damascus and captured it. He deported the people to Kir and executed Rezin.</VERS>\n\t\t\t<VERS vnumber=\"10\"> When King Ahaz went to meet with King Tiglath-pileser of Assyria in Damascus, he saw the altar there. King Ahaz sent to Uriah the priest a drawing of the altar and a blueprint for its design.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Uriah the priest built an altar in conformity to the plans King Ahaz had sent from Damascus. Uriah the priest finished it before King Ahaz arrived back from Damascus.</VERS>\n\t\t\t<VERS vnumber=\"12\"> When the king arrived back from Damascus and saw the altar, he approached it and offered a sacrifice on it.</VERS>\n\t\t\t<VERS vnumber=\"13\"> He offered his burnt sacrifice and his grain offering. He poured out his libation and sprinkled the blood from his peace offerings on the altar.</VERS>\n\t\t\t<VERS vnumber=\"14\"> He moved the bronze altar that stood in the LORD's presence from the front of the temple (between the altar and the LORD's temple) and put it on the north side of the new altar. </VERS>\n\t\t\t<VERS vnumber=\"15\"> King Ahaz ordered Uriah the priest, \"On the large altar offer the morning burnt sacrifice, the evening grain offering, the royal burnt sacrifices and grain offering, the burnt sacrifice for all the people of Israel, their grain offering, and their libations. Sprinkle all the blood of the burnt sacrifice and other sacrifices on it. The bronze altar will be for my personal use.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> So Uriah the priest did exactly as King Ahaz ordered.</VERS>\n\t\t\t<VERS vnumber=\"17\"> King Ahaz took off the frames of the movable stands, and removed the basins from them. He took \"The Sea\" down from the bronze bulls that supported it and put it on the pavement. </VERS>\n\t\t\t<VERS vnumber=\"18\"> He also removed the Sabbath awning that had been built in the temple and the king's outer entranceway, on account of the king of Assyria.</VERS>\n\t\t\t<VERS vnumber=\"19\"> The rest of the events of Ahaz's reign, including his accomplishments, are recorded in the scroll called the Annals of the Kings of Judah.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Ahaz passed away and was buried with his ancestors in the city of David. His son Hezekiah replaced him as king.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"17\">\n\t\t\t<VERS vnumber=\"1\"> In the twelfth year of King Ahaz's reign over Judah, Hoshea son of Elah became king over Israel. He reigned in Samaria for nine years. </VERS>\n\t\t\t<VERS vnumber=\"2\"> He did evil in the sight of the LORD, but not to the same degree as the Israelite kings who preceded him. </VERS>\n\t\t\t<VERS vnumber=\"3\"> King Shalmaneser of Assyria threatened him; Hoshea became his subject and paid him tribute. </VERS>\n\t\t\t<VERS vnumber=\"4\"> The king of Assyria discovered that Hoshea was planning a revolt. Hoshea had sent messengers to King So of Egypt and had not sent his annual tribute to the king of Assyria. So the king of Assyria arrested him and imprisoned him.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The king of Assyria marched through the whole land. He attacked Samaria and besieged it for three years. </VERS>\n\t\t\t<VERS vnumber=\"6\"> In the ninth year of Hoshea's reign, the king of Assyria captured Samaria and deported the people of Israel to Assyria. He settled them in Halah, along the Habor (the river of Gozan), and in the cities of the Medes.</VERS>\n\t\t\t<VERS vnumber=\"7\"> This happened because the Israelites sinned against the LORD their God, who brought them up from the land of Egypt and freed them from the power of Pharaoh king of Egypt. They worshiped other gods; </VERS>\n\t\t\t<VERS vnumber=\"8\"> they observed the practices of the nations whom the LORD had driven out from before Israel, and followed the example of the kings of Israel.</VERS>\n\t\t\t<VERS vnumber=\"9\"> The Israelites said things about the LORD their God that were not right. They built high places in all their cities, from the watchtower to the fortress.</VERS>\n\t\t\t<VERS vnumber=\"10\"> They set up sacred pillars and Asherah poles on every high hill and under every green tree.</VERS>\n\t\t\t<VERS vnumber=\"11\"> They burned incense on all the high places just like the nations whom the LORD had driven away from before them. Their evil practices made the LORD angry.</VERS>\n\t\t\t<VERS vnumber=\"12\"> They worshiped the disgusting idols in blatant disregard of the LORD's command.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The LORD solemnly warned Israel and Judah through all his prophets and all the seers, \"Turn back from your evil ways; obey my commandments and rules that are recorded in the law. I ordered your ancestors to keep this law and sent my servants the prophets to remind you of its demands.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> But they did not pay attention and were as stubborn as their ancestors, who had not trusted the LORD their God. </VERS>\n\t\t\t<VERS vnumber=\"15\"> They rejected his rules, the covenant he had made with their ancestors, and the laws he had commanded them to obey. They paid allegiance to worthless idols, and so became worthless to the LORD. They copied the practices of the surrounding nations in blatant disregard of the LORD's command.</VERS>\n\t\t\t<VERS vnumber=\"16\"> They abandoned all the commandments of the LORD their God; they made two metal calves and an Asherah pole, bowed down to all the stars in the sky, and worshiped Baal. </VERS>\n\t\t\t<VERS vnumber=\"17\"> They passed their sons and daughters through the fire, and practiced divination and omen reading. They committed themselves to doing evil in the sight of the LORD and made him angry.</VERS>\n\t\t\t<VERS vnumber=\"18\"> So the LORD was furious with Israel and rejected them; only the tribe of Judah was left. </VERS>\n\t\t\t<VERS vnumber=\"19\"> Judah also failed to keep the commandments of the LORD their God; they followed Israel's example.</VERS>\n\t\t\t<VERS vnumber=\"20\"> So the LORD rejected all of Israel's descendants; he humiliated them and handed them over to robbers, until he had thrown them from his presence. </VERS>\n\t\t\t<VERS vnumber=\"21\"> He tore Israel away from David's dynasty, and Jeroboam son of Nebat became their king. Jeroboam drove Israel away from the LORD and encouraged them to commit a serious sin.</VERS>\n\t\t\t<VERS vnumber=\"22\"> The Israelites followed in the sinful ways of Jeroboam son of Nebat and did not repudiate them. </VERS>\n\t\t\t<VERS vnumber=\"23\"> Finally the LORD rejected Israel just as he had warned he would do through all his servants the prophets. Israel was deported from its land to Assyria and remains there to this very day.</VERS>\n\t\t\t<VERS vnumber=\"24\"> The king of Assyria brought foreigners from Babylon, Cuthah, Avva, Hamath, and Sepharvaim and settled them in the cities of Samaria in place of the Israelites. They took possession of Samaria and lived in its cities. </VERS>\n\t\t\t<VERS vnumber=\"25\"> When they first moved in, they did not worship the LORD. So the LORD sent lions among them and the lions were killing them. </VERS>\n\t\t\t<VERS vnumber=\"26\"> The king of Assyria was told, \"The nations whom you deported and settled in the cities of Samaria do not know the requirements of the God of the land, so he has sent lions among them. They are killing the people because they do not know the requirements of the God of the land.\" </VERS>\n\t\t\t<VERS vnumber=\"27\"> So the king of Assyria ordered, \"Take back one of the priests whom you deported from there. He must settle there and teach them the requirements of the God of the land.\"</VERS>\n\t\t\t<VERS vnumber=\"28\"> So one of the priests whom they had deported from Samaria went back and settled in Bethel. He taught them how to worship the LORD.</VERS>\n\t\t\t<VERS vnumber=\"29\"> But each of these nations made its own gods and put them in the shrines on the high places that the people of Samaria had made. Each nation did this in the cities where they lived.</VERS>\n\t\t\t<VERS vnumber=\"30\"> The people from Babylon made Succoth Benoth, the people from Cuth made Nergal, the people from Hamath made Ashima,</VERS>\n\t\t\t<VERS vnumber=\"31\"> the Avvites made Nibhaz and Tartak, and the Sepharvites burned their sons in the fire as an offering to Adrammelech and Anammelech, the gods of Sepharvaim. </VERS>\n\t\t\t<VERS vnumber=\"32\"> At the same time they worshiped the LORD. They appointed some of their own people to serve as priests in the shrines on the high places.</VERS>\n\t\t\t<VERS vnumber=\"33\"> They were worshiping the LORD and at the same time serving their own gods in accordance with the practices of the nations from which they had been deported.</VERS>\n\t\t\t<VERS vnumber=\"34\"> To this very day they observe their earlier practices. They do not worship the LORD; they do not obey the rules, regulations, law, and commandments that the LORD gave the descendants of Jacob, whom he renamed Israel. </VERS>\n\t\t\t<VERS vnumber=\"35\"> The LORD made an agreement with them and instructed them, \"You must not worship other gods. Do not bow down to them, serve them, or offer sacrifices to them. </VERS>\n\t\t\t<VERS vnumber=\"36\"> Instead you must worship the LORD, who brought you up from the land of Egypt by his great power and military ability; bow down to him and offer sacrifices to him. </VERS>\n\t\t\t<VERS vnumber=\"37\"> You must carefully obey at all times the rules, regulations, law, and commandments he wrote down for you. You must not worship other gods.</VERS>\n\t\t\t<VERS vnumber=\"38\"> You must never forget the agreement I made with you, and you must not worship other gods.</VERS>\n\t\t\t<VERS vnumber=\"39\"> Instead you must worship the LORD your God; then he will rescue you from the power of all your enemies.\"</VERS>\n\t\t\t<VERS vnumber=\"40\"> But they pay no attention; instead they observe their earlier practices. </VERS>\n\t\t\t<VERS vnumber=\"41\"> These nations are worshiping the LORD and at the same time serving their idols; their sons and grandsons do just as their fathers have done, to this very day.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"18\">\n\t\t\t<VERS vnumber=\"1\"> In the third year of the reign of Israel's King Hoshea son of Elah, Ahaz's son Hezekiah became king over Judah.</VERS>\n\t\t\t<VERS vnumber=\"2\"> He was twenty-five years old when he began to reign, and he reigned twenty-nine years in Jerusalem. His mother was Abi, the daughter of Zechariah. </VERS>\n\t\t\t<VERS vnumber=\"3\"> He did what the LORD approved, just as his ancestor David had done.</VERS>\n\t\t\t<VERS vnumber=\"4\"> He eliminated the high places, smashed the sacred pillars to bits, and cut down the Asherah pole. He also demolished the bronze serpent that Moses had made, for up to that time the Israelites had been offering incense to it; it was called Nehushtan.</VERS>\n\t\t\t<VERS vnumber=\"5\"> He trusted in the LORD God of Israel; in this regard there was none like him among the kings of Judah either before or after.</VERS>\n\t\t\t<VERS vnumber=\"6\"> He was loyal to the LORD and did not abandon him. He obeyed the commandments which the LORD had given to Moses. </VERS>\n\t\t\t<VERS vnumber=\"7\"> The LORD was with him; he succeeded in all his endeavors. He rebelled against the king of Assyria and refused to submit to him.</VERS>\n\t\t\t<VERS vnumber=\"8\"> He defeated the Philistines as far as Gaza and its territory, from the watchtower to the city fortress.</VERS>\n\t\t\t<VERS vnumber=\"9\"> In the fourth year of King Hezekiah's reign (it was the seventh year of the reign of Israel's King Hoshea, son of Elah), King Shalmaneser of Assyria marched up against Samaria and besieged it. </VERS>\n\t\t\t<VERS vnumber=\"10\"> After three years he captured it (in the sixth year of Hezekiah's reign); in the ninth year of King Hoshea's reign over Israel Samaria was captured.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The king of Assyria deported the people of Israel to Assyria. He settled them in Halah, along the Habor (the river of Gozan), and in the cities of the Medes. </VERS>\n\t\t\t<VERS vnumber=\"12\"> This happened because they did not obey the LORD their God and broke his agreement with them. They did not pay attention to and obey all that Moses, the LORD's servant, had commanded.</VERS>\n\t\t\t<VERS vnumber=\"13\"> In the fourteenth year of King Hezekiah's reign, King Sennacherib of Assyria marched up against all the fortified cities of Judah and captured them.</VERS>\n\t\t\t<VERS vnumber=\"14\"> King Hezekiah of Judah sent this message to the king of Assyria, who was at Lachish, \"I have violated our treaty. If you leave, I will do whatever you demand.\" So the king of Assyria demanded that King Hezekiah of Judah pay three hundred talents of silver and thirty talents of gold. </VERS>\n\t\t\t<VERS vnumber=\"15\"> Hezekiah gave him all the silver in the LORD's temple and in the treasuries of the royal palace. </VERS>\n\t\t\t<VERS vnumber=\"16\"> At that time King Hezekiah of Judah stripped the metal overlays from the doors of the LORD's temple and from the posts which he had plated and gave them to the king of Assyria.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The king of Assyria sent his commanding general, the chief eunuch, and the chief adviser from Lachish to King Hezekiah in Jerusalem, along with a large army. They went up and arrived at Jerusalem. They went and stood at the conduit of the upper pool which is located on the road to the field where they wash and dry cloth.</VERS>\n\t\t\t<VERS vnumber=\"18\"> They summoned the king, so Eliakim son of Hilkiah, the palace supervisor, accompanied by Shebna the scribe and Joah son of Asaph, the secretary, went out to meet them.</VERS>\n\t\t\t<VERS vnumber=\"19\"> The chief adviser said to them, \"Tell Hezekiah: 'This is what the great king, the king of Assyria, says: \"What is your source of confidence?</VERS>\n\t\t\t<VERS vnumber=\"20\"> Your claim to have a strategy and military strength is just empty talk. In whom are you trusting that you would dare to rebel against me? </VERS>\n\t\t\t<VERS vnumber=\"21\"> Now look, you must be trusting in Egypt, that splintered reed staff. If a man leans for support on it, it punctures his hand and wounds him. That is what Pharaoh king of Egypt does to all who trust in him.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Perhaps you will tell me, 'We are trusting in the LORD our God.' But Hezekiah is the one who eliminated his high places and altars and then told the people of Judah and Jerusalem, 'You must worship at this altar in Jerusalem.'</VERS>\n\t\t\t<VERS vnumber=\"23\"> Now make a deal with my master the king of Assyria, and I will give you two thousand horses, provided you can find enough riders for them. </VERS>\n\t\t\t<VERS vnumber=\"24\"> Certainly you will not refuse one of my master's minor officials and trust in Egypt for chariots and horsemen.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Furthermore it was by the command of the LORD that I marched up against this place to destroy it. The LORD told me, 'March up against this land and destroy it.'\"'\"</VERS>\n\t\t\t<VERS vnumber=\"26\"> Eliakim son of Hilkiah, Shebna, and Joah said to the chief adviser, \"Speak to your servants in Aramaic, for we understand it. Don't speak with us in the Judahite dialect in the hearing of the people who are on the wall.\" </VERS>\n\t\t\t<VERS vnumber=\"27\"> But the chief adviser said to them, \"My master did not send me to speak these words only to your master and to you. His message is also for the men who sit on the wall, for they will eat their own excrement and drink their own urine along with you.\"</VERS>\n\t\t\t<VERS vnumber=\"28\"> The chief adviser then stood there and called out loudly in the Judahite dialect, \"Listen to the message of the great king, the king of Assyria. </VERS>\n\t\t\t<VERS vnumber=\"29\"> This is what the king says: 'Don't let Hezekiah mislead you, for he is not able to rescue you from my hand!</VERS>\n\t\t\t<VERS vnumber=\"30\"> Don't let Hezekiah talk you into trusting in the LORD when he says, \"The LORD will certainly rescue us; this city will not be handed over to the king of Assyria.\"</VERS>\n\t\t\t<VERS vnumber=\"31\"> Don't listen to Hezekiah!' For this is what the king of Assyria says, 'Send me a token of your submission and surrender to me. Then each of you may eat from his own vine and fig tree and drink water from his own cistern, </VERS>\n\t\t\t<VERS vnumber=\"32\"> until I come and take you to a land just like your own, a land of grain and new wine, a land of bread and vineyards, a land of olive trees and honey. Then you will live and not die. Don't listen to Hezekiah, for he is misleading you when he says, \"The LORD will rescue us.\"</VERS>\n\t\t\t<VERS vnumber=\"33\"> Have any of the gods of the nations actually rescued his land from the power of the king of Assyria?</VERS>\n\t\t\t<VERS vnumber=\"34\"> Where are the gods of Hamath and Arpad? Where are the gods of Sepharvaim, Hena, and Ivvah? Indeed, did any gods rescue Samaria from my power?</VERS>\n\t\t\t<VERS vnumber=\"35\"> Who among all the gods of the lands has rescued their lands from my power? So how can the LORD rescue Jerusalem from my power?'\"</VERS>\n\t\t\t<VERS vnumber=\"36\"> The people were silent and did not respond, for the king had ordered, \"Don't respond to him.\"</VERS>\n\t\t\t<VERS vnumber=\"37\"> Eliakim son of Hilkiah, the palace supervisor, accompanied by Shebna the scribe and Joah son of Asaph, the secretary, went to Hezekiah with their clothes torn and reported to him what the chief adviser had said. </VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"19\">\n\t\t\t<VERS vnumber=\"1\"> When King Hezekiah heard this, he tore his clothes, put on sackcloth, and went to the LORD's temple.</VERS>\n\t\t\t<VERS vnumber=\"2\"> He sent Eliakim the palace supervisor, Shebna the scribe, and the leading priests, clothed in sackcloth, with this message to the prophet Isaiah son of Amoz: </VERS>\n\t\t\t<VERS vnumber=\"3\"> \"This is what Hezekiah says: 'This is a day of distress, insults, and humiliation, as when a baby is ready to leave the birth canal, but the mother lacks the strength to push it through.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Perhaps the LORD your God will hear all these things the chief adviser has spoken on behalf of his master, the king of Assyria, who sent him to taunt the living God. When the LORD your God hears, perhaps he will punish him for the things he has said. So pray for this remnant that remains.'\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> When King Hezekiah's servants came to Isaiah,</VERS>\n\t\t\t<VERS vnumber=\"6\"> Isaiah said to them, \"Tell your master this: 'This is what the LORD says: \"Don't be afraid because of the things you have heard, these insults the king of Assyria's servants have hurled against me.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Look, I will take control of his mind; he will receive a report and return to his own land. I will cut him down with a sword in his own land.\"'\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> When the chief adviser heard the king of Assyria had departed from Lachish, he left and went to Libnah, where the king was campaigning.</VERS>\n\t\t\t<VERS vnumber=\"9\"> The king heard that King Tirhakah of Ethiopia was marching out to fight him. He again sent messengers to Hezekiah, ordering them: </VERS>\n\t\t\t<VERS vnumber=\"10\"> \"Tell King Hezekiah of Judah this: 'Don't let your God in whom you trust mislead you when he says, \"Jerusalem will not be handed over to the king of Assyria.\" </VERS>\n\t\t\t<VERS vnumber=\"11\"> Certainly you have heard how the kings of Assyria have annihilated all lands. Do you really think you will be rescued?</VERS>\n\t\t\t<VERS vnumber=\"12\"> Were the nations whom my ancestors destroyed, the nations of Gozan, Haran, Rezeph, and the people of Eden in Telassar, rescued by their gods?</VERS>\n\t\t\t<VERS vnumber=\"13\"> Where are the king of Hamath, the king of Arpad, and the king of Lair, Sepharvaim, Hena, and Ivvah?'\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> Hezekiah took the letter from the messengers and read it. Then Hezekiah went up to the LORD's temple and spread it out before the LORD. </VERS>\n\t\t\t<VERS vnumber=\"15\"> Hezekiah prayed before the LORD: \"LORD God of Israel, who is enthroned on the cherubs! You alone are God over all the kingdoms of the earth. You made the sky and the earth. </VERS>\n\t\t\t<VERS vnumber=\"16\"> Pay attention, LORD, and hear! Open your eyes, LORD, and observe! Listen to the message Sennacherib sent and how he taunts the living God!</VERS>\n\t\t\t<VERS vnumber=\"17\"> It is true, LORD, that the kings of Assyria have destroyed the nations and their lands.</VERS>\n\t\t\t<VERS vnumber=\"18\"> They have burned the gods of the nations, for they are not really gods, but only the product of human hands manufactured from wood and stone. That is why the Assyrians could destroy them.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Now, O LORD our God, rescue us from his power, so that all the kingdoms of the earth will know that you, LORD, are the only God.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> Isaiah son of Amoz sent this message to Hezekiah: \"This is what the LORD God of Israel says: 'I have heard your prayer concerning King Sennacherib of Assyria.</VERS>\n\t\t\t<VERS vnumber=\"21\"> This is what the LORD says about him: \"The virgin daughter Zion despises you, she makes fun of you; Daughter Jerusalem shakes her head after you.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Whom have you taunted and hurled insults at? At whom have you shouted, and looked so arrogantly? At the Holy One of Israel!</VERS>\n\t\t\t<VERS vnumber=\"23\"> Through your messengers you taunted the sovereign master, 'With my many chariots I climbed up the high mountains, the slopes of Lebanon. I cut down its tall cedars, and its best evergreens. I invaded its most remote regions, its thickest woods.</VERS>\n\t\t\t<VERS vnumber=\"24\"> I dug wells and drank water in foreign lands. With the soles of my feet I dried up all the rivers of Egypt.'</VERS>\n\t\t\t<VERS vnumber=\"25\">  Certainly you must have heard! Long ago I worked it out, In ancient times I planned it; and now I am bringing it to pass. The plan is this: Fortified cities will crash into heaps of ruins.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Their residents are powerless, they are terrified and ashamed. They are as short-lived as plants in the field, or green vegetation. They are as short-lived as grass on the rooftops when it is scorched by the east wind.</VERS>\n\t\t\t<VERS vnumber=\"27\"> I know where you live, and everything you do.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Because you rage against me, and the uproar you create has reached my ears; I will put my hook in your nose, and my bridle between your lips, and I will lead you back the way you came.\"</VERS>\n\t\t\t<VERS vnumber=\"29\">  This will be your confirmation that I have spoken the truth: This year you will eat what grows wild, and next year what grows on its own from that. But in the third year you will plant seed and harvest crops; you will plant vines and consume their produce.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Those who remain in Judah will take root in the ground and bear fruit.</VERS>\n\t\t\t<VERS vnumber=\"31\"> For a remnant will leave Jerusalem; survivors will come out of Mount Zion. The intense devotion of the sovereign LORD to his people will accomplish this.</VERS>\n\t\t\t<VERS vnumber=\"32\"> So this is what the LORD says about the king of Assyria: \"He will not enter this city, nor will he shoot an arrow here. He will not attack it with his shield-carrying warriors, nor will he build siege works against it.</VERS>\n\t\t\t<VERS vnumber=\"33\"> He will go back the way he came. He will not enter this city,\" says the LORD.</VERS>\n\t\t\t<VERS vnumber=\"34\"> I will shield this city and rescue it for the sake of my reputation and because of my promise to David my servant.'\"</VERS>\n\t\t\t<VERS vnumber=\"35\"> That very night the LORD's messenger went out and killed 185,000 men in the Assyrian camp. When they got up early the next morning, there were all the corpses.</VERS>\n\t\t\t<VERS vnumber=\"36\"> So King Sennacherib of Assyria broke camp and went on his way. He went home and stayed in Nineveh.</VERS>\n\t\t\t<VERS vnumber=\"37\"> One day, as he was worshiping in the temple of his god Nisroch, his sons Adrammelech and Sharezer struck him down with the sword. They escaped to the land of Ararat; his son Esarhaddon replaced him as king.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"20\">\n\t\t\t<VERS vnumber=\"1\"> In those days Hezekiah was stricken with a terminal illness. The prophet Isaiah son of Amoz visited him and told him, \"This is what the LORD says, 'Give your household instructions, for you are about to die; you will not get well.'\"</VERS>\n\t\t\t<VERS vnumber=\"2\"> He turned his face to the wall and prayed to the LORD,</VERS>\n\t\t\t<VERS vnumber=\"3\"> \"Please, LORD. Remember how I have served you faithfully and with wholehearted devotion, and how I have carried out your will.\" Then Hezekiah wept bitterly.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Isaiah was still in the middle courtyard when the LORD told him,</VERS>\n\t\t\t<VERS vnumber=\"5\"> \"Go back and tell Hezekiah, the leader of my people: 'This is what the LORD God of your ancestor David says: \"I have heard your prayer; I have seen your tears. Look, I will heal you. The day after tomorrow you will go up to the LORD's temple. </VERS>\n\t\t\t<VERS vnumber=\"6\"> I will add fifteen years to your life and rescue you and this city from the king of Assyria. I will shield this city for the sake of my reputation and because of my promise to David my servant.\"'\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> Isaiah ordered, \"Get a fig cake.\" So they did as he ordered and placed it on the ulcerated sore, and he recovered.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Hezekiah had said to Isaiah, \"What is the confirming sign that the LORD will heal me and that I will go up to the LORD's temple the day after tomorrow?\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> Isaiah replied, \"This is your sign from the LORD confirming that the LORD will do what he has said. Do you want the shadow to move ahead ten steps or to go back ten steps?\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> Hezekiah answered, \"It is easy for the shadow to lengthen ten steps, but not for it to go back ten steps.\" </VERS>\n\t\t\t<VERS vnumber=\"11\"> Isaiah the prophet called out to the LORD, and the LORD made the shadow go back ten steps on the stairs of Ahaz.</VERS>\n\t\t\t<VERS vnumber=\"12\"> At that time Merodach-Baladan son of Baladan, king of Babylon, sent letters and a gift to Hezekiah, for he had heard that Hezekiah was ill. </VERS>\n\t\t\t<VERS vnumber=\"13\"> Hezekiah welcomed them and showed them his whole storehouse, with its silver, gold, spices, and high quality olive oil, as well as his armory and everything in his treasuries. Hezekiah showed them everything in his palace and in his whole kingdom.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Isaiah the prophet visited King Hezekiah and asked him, \"What did these men say? Where do they come from?\" Hezekiah replied, \"They come from the distant land of Babylon.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> Isaiah asked, \"What have they seen in your palace?\" Hezekiah replied, \"They have seen everything in my palace. I showed them everything in my treasuries.\" </VERS>\n\t\t\t<VERS vnumber=\"16\"> Isaiah said to Hezekiah, \"Listen to the word of the LORD,</VERS>\n\t\t\t<VERS vnumber=\"17\"> 'Look, a time is coming when everything in your palace and the things your ancestors have accumulated to this day will be carried away to Babylon; nothing will be left,' says the LORD. </VERS>\n\t\t\t<VERS vnumber=\"18\"> 'Some of your very own descendants whom you father will be taken away and will be made eunuchs in the palace of the king of Babylon.'\" </VERS>\n\t\t\t<VERS vnumber=\"19\"> Hezekiah said to Isaiah, \"The LORD's word which you have announced is appropriate.\" Then he added, \"At least there will be peace and stability during my lifetime.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> The rest of the events of Hezekiah's reign and all his accomplishments, including how he built a pool and conduit to bring water into the city, are recorded in the scroll called the Annals of the Kings of Judah.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Hezekiah passed away and his son Manasseh replaced him as king.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"21\">\n\t\t\t<VERS vnumber=\"1\"> Manasseh was twelve years old when he became king, and he reigned for fifty-five years in Jerusalem. His mother was Hephzibah. </VERS>\n\t\t\t<VERS vnumber=\"2\"> He did evil in the sight of the LORD and committed the same horrible sins practiced by the nations whom the LORD drove out from before the Israelites. </VERS>\n\t\t\t<VERS vnumber=\"3\"> He rebuilt the high places that his father Hezekiah had destroyed; he set up altars for Baal and made an Asherah pole just like King Ahab of Israel had done. He bowed down to all the stars in the sky and worshiped them. </VERS>\n\t\t\t<VERS vnumber=\"4\"> He built altars in the LORD's temple, about which the LORD had said, \"Jerusalem will be my home.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> In the two courtyards of the LORD's temple he built altars for all the stars in the sky.</VERS>\n\t\t\t<VERS vnumber=\"6\"> He passed his son through the fire and practiced divination and omen reading. He set up a ritual pit to conjure up underworld spirits, and appointed magicians to supervise it. He did a great amount of evil in the sight of the LORD, provoking him to anger.</VERS>\n\t\t\t<VERS vnumber=\"7\"> He put an idol of Asherah he had made in the temple, about which the LORD had said to David and to his son Solomon, \"This temple in Jerusalem, which I have chosen out of all the tribes of Israel, will be my permanent home.</VERS>\n\t\t\t<VERS vnumber=\"8\"> I will not make Israel again leave the land I gave to their ancestors, provided that they carefully obey all I commanded them, the whole law my servant Moses ordered them to obey.\" </VERS>\n\t\t\t<VERS vnumber=\"9\"> But they did not obey, and Manasseh misled them so that they sinned more than the nations whom the LORD had destroyed from before the Israelites.</VERS>\n\t\t\t<VERS vnumber=\"10\"> So the LORD announced through his servants the prophets: </VERS>\n\t\t\t<VERS vnumber=\"11\"> \"King Manasseh of Judah has committed horrible sins. He has sinned more than the Amorites before him and has encouraged Judah to sin by worshiping his disgusting idols.</VERS>\n\t\t\t<VERS vnumber=\"12\"> So this is what the LORD God of Israel says, 'I am about to bring disaster on Jerusalem and Judah. The news will reverberate in the ears of those who hear about it.</VERS>\n\t\t\t<VERS vnumber=\"13\"> I will destroy Jerusalem the same way I did Samaria and the dynasty of Ahab. I will wipe Jerusalem clean, just as one wipes a plate on both sides.</VERS>\n\t\t\t<VERS vnumber=\"14\"> I will abandon this last remaining tribe among my people and hand them over to their enemies; they will be plundered and robbed by all their enemies,</VERS>\n\t\t\t<VERS vnumber=\"15\"> because they have done evil in my sight and have angered me from the time their ancestors left Egypt right up to this very day!'\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> Furthermore Manasseh killed so many innocent people, he stained Jerusalem with their blood from end to end, in addition to encouraging Judah to sin by doing evil in the sight of the LORD.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The rest of the events of Manasseh's reign and all his accomplishments, as well as the sinful acts he committed, are recorded in the scroll called the Annals of the Kings of Judah.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Manasseh passed away and was buried in his palace garden, the garden of Uzzah, and his son Amon replaced him as king.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Amon was twenty-two years old when he became king, and he reigned for two years in Jerusalem. His mother was Meshullemeth, the daughter of Haruz, from Jotbah. </VERS>\n\t\t\t<VERS vnumber=\"20\"> He did evil in the sight of the LORD, just like his father Manasseh had done. </VERS>\n\t\t\t<VERS vnumber=\"21\"> He followed in the footsteps of his father and worshiped and bowed down to the disgusting idols which his father had worshiped.</VERS>\n\t\t\t<VERS vnumber=\"22\"> He abandoned the LORD God of his ancestors and did not follow the LORD's instructions.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Amon's servants conspired against him and killed the king in his palace.</VERS>\n\t\t\t<VERS vnumber=\"24\"> The people of the land executed all those who had conspired against King Amon, and they made his son Josiah king in his place.</VERS>\n\t\t\t<VERS vnumber=\"25\"> The rest of Amon's accomplishments are recorded in the scroll called the Annals of the Kings of Judah.</VERS>\n\t\t\t<VERS vnumber=\"26\"> He was buried in his tomb in the garden of Uzzah, and his son Josiah replaced him as king.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"22\">\n\t\t\t<VERS vnumber=\"1\"> Josiah was eight years old when he became king, and he reigned for thirty-one years in Jerusalem. His mother was Jedidah, daughter of Adaiah, from Bozkath.</VERS>\n\t\t\t<VERS vnumber=\"2\"> He did what the LORD approved and followed in his ancestor David's footsteps; he did not deviate to the right or the left.</VERS>\n\t\t\t<VERS vnumber=\"3\"> In the eighteenth year of King Josiah's reign, the king sent the scribe Shaphan son of Azaliah, son of Meshullam, to the LORD's temple with these orders:</VERS>\n\t\t\t<VERS vnumber=\"4\"> \"Go up to Hilkiah the high priest and have him melt down the silver that has been brought by the people to the LORD's temple and has been collected by the guards at the door. </VERS>\n\t\t\t<VERS vnumber=\"5\"> Have them hand it over to the construction foremen assigned to the LORD's temple. They in turn should pay the temple workers to repair it,</VERS>\n\t\t\t<VERS vnumber=\"6\"> including craftsmen, builders, and masons, and should buy wood and chiseled stone for the repair work.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Do not audit the foremen who disburse the silver, for they are honest.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> Hilkiah the high priest informed Shaphan the scribe, \"I found the law scroll in the LORD's temple.\" Hilkiah gave the scroll to Shaphan and he read it.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Shaphan the scribe went to the king and reported, \"Your servants melted down the silver in the temple and handed it over to the construction foremen assigned to the LORD's temple.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> Then Shaphan the scribe told the king, \"Hilkiah the priest has given me a scroll.\" Shaphan read it out loud before the king.</VERS>\n\t\t\t<VERS vnumber=\"11\"> When the king heard the words of the law scroll, he tore his clothes.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The king ordered Hilkiah the priest, Ahikam son of Shaphan, Acbor son of Micaiah, Shaphan the scribe, and Asaiah the king's servant,</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"Go, seek an oracle from the LORD for me and the people, for all Judah. Find out about the words of this scroll that has been discovered. For the LORD's fury has been ignited against us, because our ancestors have not obeyed the words of this scroll by doing all that it instructs us to do.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> So Hilkiah the priest, Ahikam, Acbor, Shaphan, and Asaiah went to Huldah the prophetess, the wife of Shullam son of Tikvah, the son of Harhas, the supervisor of the wardrobe. (She lived in Jerusalem in the Mishneh district.) They stated their business,</VERS>\n\t\t\t<VERS vnumber=\"15\"> and she said to them: \"This is what the LORD God of Israel says: 'Say this to the man who sent you to me:</VERS>\n\t\t\t<VERS vnumber=\"16\"> \"This is what the LORD says: 'I am about to bring disaster on this place and its residents, the details of which are recorded in the scroll which the king of Judah has read.</VERS>\n\t\t\t<VERS vnumber=\"17\"> This will happen because they have abandoned me and offered sacrifices to other gods, angering me with all the idols they have made. My anger will ignite against this place and will not be extinguished!'\" </VERS>\n\t\t\t<VERS vnumber=\"18\"> Say this to the king of Judah, who sent you to seek an oracle from the LORD: \"This is what the LORD God of Israel says concerning the words you have heard:</VERS>\n\t\t\t<VERS vnumber=\"19\"> 'You displayed a sensitive spirit and humbled yourself before the LORD when you heard how I intended to make this place and its residents into an appalling example of an accursed people. You tore your clothes and wept before me, and I have heard you,' says the LORD. </VERS>\n\t\t\t<VERS vnumber=\"20\"> 'Therefore I will allow you to die and be buried in peace. You will not have to witness all the disaster I will bring on this place.'\"'\" Then they reported back to the king.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"23\">\n\t\t\t<VERS vnumber=\"1\"> The king summoned all the leaders of Judah and Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"2\"> The king went up to the LORD's temple, accompanied by all the people of Judah, all the residents of Jerusalem, the priests, and the prophets. All the people were there, from the youngest to the oldest. He read aloud all the words of the scroll of the covenant that had been discovered in the LORD's temple. </VERS>\n\t\t\t<VERS vnumber=\"3\"> The king stood by the pillar and renewed the covenant before the LORD, agreeing to follow the LORD and to obey his commandments, laws, and rules with all his heart and being, by carrying out the terms of this covenant recorded on this scroll. All the people agreed to keep the covenant.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The king ordered Hilkiah the high priest, the high-ranking priests, and the guards to bring out of the LORD's temple all the items that were used in the worship of Baal, Asherah, and all the stars of the sky. The king burned them outside of Jerusalem in the terraces of Kidron, and carried their ashes to Bethel.</VERS>\n\t\t\t<VERS vnumber=\"5\"> He eliminated the pagan priests whom the kings of Judah had appointed to offer sacrifices on the high places in the cities of Judah and in the area right around Jerusalem. (They offered sacrifices to Baal, the sun god, the moon god, the constellations, and all the stars in the sky.) </VERS>\n\t\t\t<VERS vnumber=\"6\"> He removed the Asherah pole from the LORD's temple and took it outside Jerusalem to the Kidron Valley, where he burned it. He smashed it to dust and then threw the dust in the public graveyard.</VERS>\n\t\t\t<VERS vnumber=\"7\"> He tore down the quarters of the male cultic prostitutes in the LORD's temple, where women were weaving shrines for Asherah.</VERS>\n\t\t\t<VERS vnumber=\"8\"> He brought all the priests from the cities of Judah and ruined the high places where the priests had offered sacrifices, from Geba to Beer Sheba. He tore down the high place of the goat idols situated at the entrance of the gate of Joshua, the city official, on the left side of the city gate. </VERS>\n\t\t\t<VERS vnumber=\"9\"> (Now the priests of the high places did not go up to the altar of the LORD in Jerusalem, but they did eat unleavened cakes among their fellow priests.)</VERS>\n\t\t\t<VERS vnumber=\"10\"> The king ruined Topheth in the Valley of Ben Hinnom so that no one could pass his son or his daughter through the fire to Molech.</VERS>\n\t\t\t<VERS vnumber=\"11\"> He removed from the entrance to the LORD's temple the statues of horses that the kings of Judah had placed there in honor of the sun god. (They were kept near the room of Nathan Melech the eunuch, which was situated among the courtyards.) He burned up the chariots devoted to the sun god.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The king tore down the altars the kings of Judah had set up on the roof of Ahaz's upper room, as well as the altars Manasseh had set up in the two courtyards of the LORD's temple. He crushed them up and threw the dust in the Kidron Valley. </VERS>\n\t\t\t<VERS vnumber=\"13\"> The king ruined the high places east of Jerusalem, south of the Mount of Destruction, that King Solomon of Israel had built for the detestable Sidonian goddess Astarte, the detestable Moabite god Chemosh, and the horrible Ammonite god Milcom. </VERS>\n\t\t\t<VERS vnumber=\"14\"> He smashed the sacred pillars to bits, cut down the Asherah pole, and filled those shrines with human bones.</VERS>\n\t\t\t<VERS vnumber=\"15\"> He also tore down the altar in Bethel at the high place made by Jeroboam son of Nebat, who encouraged Israel to sin. He burned all the combustible items at that high place and crushed them to dust; including the Asherah pole.</VERS>\n\t\t\t<VERS vnumber=\"16\"> When Josiah turned around, he saw the tombs there on the hill. So he ordered the bones from the tombs to be brought; he burned them on the altar and defiled it. This fulfilled the LORD's announcement made by the prophet while Jeroboam stood by the altar during a festival. King Josiah turned and saw the grave of the prophet who had foretold this.</VERS>\n\t\t\t<VERS vnumber=\"17\"> He asked, \"What is this grave marker I see?\" The men from the city replied, \"It's the grave of the prophet who came from Judah and foretold these very things you have done to the altar of Bethel.\" </VERS>\n\t\t\t<VERS vnumber=\"18\"> The king said, \"Leave it alone! No one must touch his bones.\" So they left his bones undisturbed, as well as the bones of the Israelite prophet buried beside him.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Josiah also removed all the shrines on the high places in the cities of Samaria. The kings of Israel had made them and angered the LORD. He did to them what he had done to the high place in Bethel.</VERS>\n\t\t\t<VERS vnumber=\"20\"> He sacrificed all the priests of the high places on the altars located there, and burned human bones on them. Then he returned to Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"21\"> The king ordered all the people, \"Observe the Passover of the LORD your God, as prescribed in this scroll of the covenant.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> He issued this edict because a Passover like this had not been observed since the days of the judges; it was neglected for the entire period of the kings of Israel and Judah.</VERS>\n\t\t\t<VERS vnumber=\"23\"> But in the eighteenth year of King Josiah's reign, such a Passover of the LORD was observed in Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Josiah also got rid of the ritual pits used to conjure up spirits, the magicians, personal idols, disgusting images, and all the detestable idols that had appeared in the land of Judah and in Jerusalem. In this way he carried out the terms of the law recorded on the scroll that Hilkiah the priest had discovered in the LORD's temple. </VERS>\n\t\t\t<VERS vnumber=\"25\"> No king before or after repented before the LORD as he did, with his whole heart, soul, and being in accordance with the whole law of Moses.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Yet the LORD's great anger against Judah did not subside; he was still infuriated by all the things Manasseh had done.</VERS>\n\t\t\t<VERS vnumber=\"27\"> The LORD announced, \"I will also spurn Judah, just as I spurned Israel. I will reject this city that I chose, both Jerusalem and the temple, about which I said, \"I will live there.\"</VERS>\n\t\t\t<VERS vnumber=\"28\"> The rest of the events of Josiah's reign and all his accomplishments are recorded in the scroll called the Annals of the Kings of Judah.</VERS>\n\t\t\t<VERS vnumber=\"29\"> During Josiah's reign Pharaoh Necho king of Egypt marched toward the Euphrates River to help the king of Assyria. King Josiah marched out to fight him, but Necho killed him at Megiddo when he saw him. </VERS>\n\t\t\t<VERS vnumber=\"30\"> His servants transported his dead body from Megiddo in a chariot and brought it to Jerusalem, where they buried him in his tomb. The people of the land took Josiah's son Jehoahaz, poured olive oil on his head, and made him king in his father's place.</VERS>\n\t\t\t<VERS vnumber=\"31\"> Jehoahaz was twenty-three years old when he became king, and he reigned three months in Jerusalem. His mother was Hamutal the daughter of Jeremiah, from Libnah. </VERS>\n\t\t\t<VERS vnumber=\"32\"> He did evil in the sight of the LORD as his ancestors had done.</VERS>\n\t\t\t<VERS vnumber=\"33\"> Pharaoh Necho imprisoned him in Riblah in the land of Hamath and prevented him from ruling in Jerusalem. He imposed on the land a special tax of one hundred talents of silver and a talent of gold. </VERS>\n\t\t\t<VERS vnumber=\"34\"> Pharaoh Necho made Josiah's son Eliakim king in Josiah's place, and changed his name to Jehoiakim. He took Jehoahaz to Egypt, where he died.</VERS>\n\t\t\t<VERS vnumber=\"35\"> Jehoiakim paid Pharaoh the required amount of silver and gold, but to meet Pharaoh's demands Jehoiakim had to tax the land. He collected an assessed amount from each man among the people of the land in order to pay Pharaoh Necho.</VERS>\n\t\t\t<VERS vnumber=\"36\"> Jehoiakim was twenty-five years old when he became king, and he reigned for eleven years in Jerusalem. His mother was Zebidah the daughter of Pedaiah, from Rumah. </VERS>\n\t\t\t<VERS vnumber=\"37\"> He did evil in the sight of the LORD as his ancestors had done.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"24\">\n\t\t\t<VERS vnumber=\"1\"> During Jehoiakim's reign, King Nebuchadnezzar of Babylon attacked. Jehoiakim was his subject for three years, but then he rebelled against him.</VERS>\n\t\t\t<VERS vnumber=\"2\"> The LORD sent against him Babylonian, Syrian, Moabite, and Ammonite raiding bands; he sent them to destroy Judah, as he had warned he would do through his servants the prophets.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Just as the LORD had announced, he rejected Judah because of all the sins which Manasseh had committed.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Because he killed innocent people and stained Jerusalem with their blood, the LORD was unwilling to forgive them.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The rest of the events of Jehoiakim's reign and all his accomplishments, are recorded in the scroll called the Annals of the Kings of Judah.</VERS>\n\t\t\t<VERS vnumber=\"6\"> He passed away and his son Jehoiachin replaced him as king. </VERS>\n\t\t\t<VERS vnumber=\"7\"> The king of Egypt did not march out from his land again, for the king of Babylon conquered all the territory that the king of Egypt had formerly controlled between the Brook of Egypt and the Euphrates River.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Jehoiachin was eighteen years old when he became king, and he reigned three months in Jerusalem. His mother was Nehushta the daughter of Elnathan, from Jerusalem. </VERS>\n\t\t\t<VERS vnumber=\"9\"> He did evil in the sight of the LORD as his ancestors had done.</VERS>\n\t\t\t<VERS vnumber=\"10\"> At that time the generals of King Nebuchadnezzar of Babylon marched to Jerusalem and besieged the city.</VERS>\n\t\t\t<VERS vnumber=\"11\"> King Nebuchadnezzar of Babylon came to the city while his generals were besieging it.</VERS>\n\t\t\t<VERS vnumber=\"12\"> King Jehoiachin of Judah, along with his mother, his servants, his officials, and his eunuchs surrendered to the king of Babylon. The king of Babylon, in the eighth year of his reign, took Jehoiachin prisoner. </VERS>\n\t\t\t<VERS vnumber=\"13\"> Nebuchadnezzar took from there all the riches in the treasuries of the LORD's temple and of the royal palace. He removed all the gold items which King Solomon of Israel had made for the LORD's temple, just as the LORD had warned.</VERS>\n\t\t\t<VERS vnumber=\"14\"> He deported all the residents of Jerusalem, including all the officials and all the soldiers </VERS>\n\t\t\t<VERS vnumber=\"15\"> He deported Jehoiachin from Jerusalem to Babylon, along with the king's mother and wives, his eunuchs, and the high-ranking officials of the land.</VERS>\n\t\t\t<VERS vnumber=\"16\"> The king of Babylon deported to Babylon all the soldiers (there were 7,000), as well as 1,000 craftsmen and metal workers. This included all the best warriors.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The king of Babylon made Mattaniah, Jehoiachin's uncle, king in Jehoiachin's place. He renamed him Zedekiah.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Zedekiah was twenty-one years old when he became king, and he ruled for eleven years in Jerusalem. His mother was Hamutal, the daughter of Jeremiah, from Libnah. </VERS>\n\t\t\t<VERS vnumber=\"19\"> He did evil in the sight of the LORD, as Jehoiakim had done.</VERS>\n\t\t\t<VERS vnumber=\"20\"> What follows is a record of what happened to Jerusalem and Judah because of the LORD's anger; he finally threw them out of his presence. Zedekiah rebelled against the king of Babylon. </VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"25\">\n\t\t\t<VERS vnumber=\"1\"> So King Nebuchadnezzar of Babylon came against Jerusalem with his whole army and set up camp outside it. They built siege ramps all around it. He arrived on the tenth day of the tenth month in the ninth year of Zedekiah's reign.</VERS>\n\t\t\t<VERS vnumber=\"2\"> The city remained under siege until King Zedekiah's eleventh year.</VERS>\n\t\t\t<VERS vnumber=\"3\"> By the ninth day of the fourth month the famine in the city was so severe the residents had no food. </VERS>\n\t\t\t<VERS vnumber=\"4\"> The enemy broke through the city walls, and all the soldiers tried to escape. They left the city during the night. They went through the gate between the two walls that is near the king's garden. (The Babylonians were all around the city.) Then they headed for the Jordan Valley.</VERS>\n\t\t\t<VERS vnumber=\"5\"> But the Babylonian army chased after the king. They caught up with him in the plains of Jericho, and his entire army deserted him. </VERS>\n\t\t\t<VERS vnumber=\"6\"> They captured the king and brought him up to the king of Babylon at Riblah, where he passed sentence on him. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Zedekiah's sons were executed while Zedekiah was forced to watch. The king of Babylon then had Zedekiah's eyes put out, bound him in bronze chains, and carried him off to Babylon.</VERS>\n\t\t\t<VERS vnumber=\"8\"> On the seventh day of the fifth month, in the nineteenth year of King Nebuchadnezzar of Babylon, Nebuzaradan, the captain of the royal guard who served the king of Babylon, arrived in Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"9\"> He burned down the LORD's temple, the royal palace, and all the houses in Jerusalem, including every large house.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The whole Babylonian army that came with the captain of the royal guard tore down the walls that surrounded Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Nebuzaradan, the captain of the royal guard, deported the rest of the people who were left in the city, those who had deserted to the king of Babylon, and the rest of the craftsmen.</VERS>\n\t\t\t<VERS vnumber=\"12\"> But he left behind some of the poor of the land and gave them fields and vineyards.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The Babylonians broke the two bronze pillars in the LORD's temple, as well as the movable stands and the big bronze basin called the \"The Sea.\" They took the bronze to Babylon. </VERS>\n\t\t\t<VERS vnumber=\"14\"> They also took the pots, shovels, trimming shears, pans, and all the bronze utensils used by the priests.</VERS>\n\t\t\t<VERS vnumber=\"15\"> The captain of the royal guard took the golden and silver censers and basins. </VERS>\n\t\t\t<VERS vnumber=\"16\"> The bronze of the items that King Solomon made for the LORD's temple, including the two pillars, the big bronze basin called \"The Sea,\" the twelve bronze bulls under \"The Sea,\" and the movable stands, was too heavy to be weighed.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Each of the pillars was about twenty-seven feet high. The bronze top of one pillar was about four and a half feet high and had bronze latticework and pomegranate shaped ornaments all around it. The second pillar with its latticework was like it.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The captain of the royal guard took Seraiah the chief priest and Zephaniah, the priest who was second in rank, and the three doorkeepers.</VERS>\n\t\t\t<VERS vnumber=\"19\"> From the city he took a eunuch who was in charge of the soldiers, five of the king's advisers who were discovered in the city, an official army secretary who drafted citizens for military service, and sixty citizens from the people of the land who were discovered in the city.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Nebuzaradan, captain of the royal guard, took them and brought them to the king of Babylon at Riblah.</VERS>\n\t\t\t<VERS vnumber=\"21\"> The king of Babylon ordered them to be executed at Riblah in the territory of Hamath. So Judah was deported from its land.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Now King Nebuchadnezzar of Babylon appointed Gedaliah son of Ahikam, son of Shaphan, as governor over the people whom he allowed to remain in the land of Judah.</VERS>\n\t\t\t<VERS vnumber=\"23\"> All of the officers of the Judahite army and their troops heard that the king of Babylon had appointed Gedaliah to govern. So they came to Gedaliah at Mizpah. The officers who came were Ishmael son of Nethaniah, Johanan son of Kareah, Seraiah son of Tanhumeth the Netophathite, and Jaazaniah son of the Maacathite. </VERS>\n\t\t\t<VERS vnumber=\"24\"> Gedaliah took an oath so as to give them and their troops some assurance of safety. He said, \"You don't need to be afraid to submit to the Babylonian officials. Settle down in the land and submit to the king of Babylon. Then things will go well for you.\" </VERS>\n\t\t\t<VERS vnumber=\"25\"> But in the seventh month Ishmael son of Nethaniah, son of Elishama, who was a member of the royal family, came with ten of his men and murdered Gedaliah, as well as the Judeans and Babylonians who were with him at Mizpah. </VERS>\n\t\t\t<VERS vnumber=\"26\"> Then all the people, from the youngest to the oldest, as well as the army officers, left for Egypt, because they were afraid of what the Babylonians might do.</VERS>\n\t\t\t<VERS vnumber=\"27\"> In the thirty-seventh year of the exile of King Jehoiachin of Judah, on the twenty-seventh day of the twelfth month, King Evil-Merodach of Babylon, in the first year of his reign, pardoned King Jehoiachin of Judah and released him from prison. </VERS>\n\t\t\t<VERS vnumber=\"28\"> He spoke kindly to him and gave him a more prestigious position than the other kings who were with him in Babylon. </VERS>\n\t\t\t<VERS vnumber=\"29\"> Jehoiachin took off his prison clothes and ate daily in the king's presence for the rest of his life. </VERS>\n\t\t\t<VERS vnumber=\"30\"> He was given daily provisions by the king for the rest of his life until the day he died.</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"13\" bname=\"1 Chronicles\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> Adam, Seth, Enosh,</VERS>\n\t\t\t<VERS vnumber=\"2\"> Kenan, Mahalalel, Jered,</VERS>\n\t\t\t<VERS vnumber=\"3\"> Enoch, Methuselah, Lamech,</VERS>\n\t\t\t<VERS vnumber=\"4\"> Noah, Shem, Ham, and Japheth.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The sons of Japheth: Gomer, Magog, Madai, Javan, Tubal, Meshech, and Tiras.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The sons of Gomer: Ashkenaz, Riphath, and Togarmah.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The sons of Javan: Elishah, Tarshish, the Kittites, and the Rodanites.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The sons of Ham: Cush, Mizraim, Put, and Canaan.</VERS>\n\t\t\t<VERS vnumber=\"9\"> The sons of Cush: Seba, Havilah, Sabta, Raamah, and Sabteca. The sons of Raamah: Sheba and Dedan.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Cush was the father of Nimrod, who established himself as a mighty warrior on earth.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Mizraim was the father of the Ludites, Anamites, Lehabites, Naphtuhites,</VERS>\n\t\t\t<VERS vnumber=\"12\"> Pathrusites, Casluhites (from whom the Philistines descended), and the Caphtorites.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Canaan was the father of Sidon, his firstborn, and Heth,</VERS>\n\t\t\t<VERS vnumber=\"14\"> as well as the Jebusites, Amorites, Girgashites,</VERS>\n\t\t\t<VERS vnumber=\"15\"> Hivites, Arkites, Sinites,</VERS>\n\t\t\t<VERS vnumber=\"16\"> Arvadites, Zemarites, and Hamathites.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The sons of Shem: Elam, Asshur, Arphaxad, Lud, and Aram. The sons of Aram: Uz, Hul, Gether, and Meshech.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Arphaxad was the father of Shelah, and Shelah was the father of Eber.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Two sons were born to Eber: the first was named Peleg, for during his lifetime the earth was divided; his brother's name was Joktan.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Joktan was the father of Almodad, Sheleph, Hazarmaveth, Jerah,</VERS>\n\t\t\t<VERS vnumber=\"21\"> Hadoram, Uzal, Diklah,</VERS>\n\t\t\t<VERS vnumber=\"22\"> Ebal, Abimael, Sheba, </VERS>\n\t\t\t<VERS vnumber=\"23\"> Ophir, Havilah, and Jobab. All these were the sons of Joktan.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Shem, Arphaxad, Shelah,</VERS>\n\t\t\t<VERS vnumber=\"25\"> Eber, Peleg, Reu,</VERS>\n\t\t\t<VERS vnumber=\"26\"> Serug, Nahor, Terah,</VERS>\n\t\t\t<VERS vnumber=\"27\"> Abram (that is, Abraham).</VERS>\n\t\t\t<VERS vnumber=\"28\"> The sons of Abraham: Isaac and Ishmael.</VERS>\n\t\t\t<VERS vnumber=\"29\"> These were their descendants: Ishmael's firstborn son was Nebaioth; the others were Kedar, Adbeel, Mibsam, </VERS>\n\t\t\t<VERS vnumber=\"30\"> Mishma, Dumah, Massa, Hadad, Tema,</VERS>\n\t\t\t<VERS vnumber=\"31\"> Jetur, Naphish, and Kedemah. These were the sons of Ishmael.</VERS>\n\t\t\t<VERS vnumber=\"32\"> The sons to whom Keturah, Abraham's concubine, gave birth: Zimran, Jokshan, Medan, Midian, Ishbak, Shuah. The sons of Jokshan: Sheba and Dedan.</VERS>\n\t\t\t<VERS vnumber=\"33\"> The sons of Midian: Ephah, Epher, Hanoch, Abida, and Eldaah. All these were the sons of Keturah.</VERS>\n\t\t\t<VERS vnumber=\"34\"> Abraham was the father of Isaac. The sons of Isaac: Esau and Israel.</VERS>\n\t\t\t<VERS vnumber=\"35\"> The sons of Esau: Eliphaz, Reuel, Jeush, Jalam, and Korah.</VERS>\n\t\t\t<VERS vnumber=\"36\"> The sons of Eliphaz: Teman, Omar, Zephi, Gatam, Kenaz, and (by Timna) Amalek.</VERS>\n\t\t\t<VERS vnumber=\"37\"> The sons of Reuel: Nahath, Zerah, Shammah, and Mizzah.</VERS>\n\t\t\t<VERS vnumber=\"38\"> The sons of Seir: Lotan, Shobal, Zibeon, Anah, Dishon, Ezer, and Dishan.</VERS>\n\t\t\t<VERS vnumber=\"39\"> The sons of Lotan: Hori and Homam. (Timna was Lotan's sister.)</VERS>\n\t\t\t<VERS vnumber=\"40\"> The sons of Shobal: Alyan, Manahath, Ebal, Shephi, and Onam. The sons of Zibeon: Aiah and Anah.</VERS>\n\t\t\t<VERS vnumber=\"41\"> The son of Anah: Dishon. The sons of Dishon: Hamran, Eshban, Ithran, and Keran.</VERS>\n\t\t\t<VERS vnumber=\"42\"> The sons of Ezer: Bilhan, Zaavan, Jaakan. The sons of Dishan: Uz and Aran.</VERS>\n\t\t\t<VERS vnumber=\"43\"> These were the kings who reigned in the land of Edom before any king ruled over the Israelites: Bela son of Beor; the name of his city was Dinhabah.</VERS>\n\t\t\t<VERS vnumber=\"44\"> When Bela died, Jobab son of Zerah from Bozrah, succeeded him.</VERS>\n\t\t\t<VERS vnumber=\"45\"> When Jobab died, Husham from the land of the Temanites succeeded him.</VERS>\n\t\t\t<VERS vnumber=\"46\"> When Husham died, Hadad son of Bedad succeeded him. He struck down the Midianites in the plains of Moab; the name of his city was Avith.</VERS>\n\t\t\t<VERS vnumber=\"47\"> When Hadad died, Samlah from Masrekah succeeded him.</VERS>\n\t\t\t<VERS vnumber=\"48\"> When Samlah died, Shaul from Rehoboth on the river succeeded him.</VERS>\n\t\t\t<VERS vnumber=\"49\"> When Shaul died, Baal-Hanan son of Achbor succeeded him.</VERS>\n\t\t\t<VERS vnumber=\"50\"> When Baal-Hanan died, Hadad succeeded him; the name of his city was Pai. His wife was Mehetabel, daughter of Matred, daughter of Me-Zahab.</VERS>\n\t\t\t<VERS vnumber=\"51\"> Hadad died. The tribal chiefs of Edom were: Timna, Alvah, Jetheth,</VERS>\n\t\t\t<VERS vnumber=\"52\"> Oholibamah, Elah, Pinon,</VERS>\n\t\t\t<VERS vnumber=\"53\"> Kenaz, Teman, Mibzar,</VERS>\n\t\t\t<VERS vnumber=\"54\"> Magdiel, Iram. These were the tribal chiefs of Edom.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> These were the sons of Israel: Reuben, Simeon, Levi, and Judah; Issachar and Zebulun;</VERS>\n\t\t\t<VERS vnumber=\"2\"> Dan, Joseph, and Benjamin; Naphtali, Gad, and Asher.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The sons of Judah: Er, Onan, and Shelah. These three were born to him by Bathshua, a Canaanite woman. Er, Judah's firstborn, displeased the LORD, so the LORD killed him.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Tamar, Judah's daughter-in-law, bore to him Perez and Zerah. Judah had five sons in all.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The sons of Perez: Hezron and Hamul.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The sons of Zerah: Zimri, Ethan, Heman, Kalkol, Dara, five in all.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The son of Carmi: Achan, who brought the disaster on Israel when he stole what was devoted to God.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The son of Ethan: Azariah.</VERS>\n\t\t\t<VERS vnumber=\"9\"> The sons born to Hezron: Jerahmeel, Ram, and Caleb.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Ram was the father of Amminadab, and Amminadab was the father of Nahshon, the tribal chief of Judah.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Nahshon was the father of Salma, and Salma was the father of Boaz. </VERS>\n\t\t\t<VERS vnumber=\"12\"> Boaz was the father of Obed, and Obed was the father of Jesse.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Jesse was the father of Eliab, his firstborn; Abinadab was born second, Shimea third,</VERS>\n\t\t\t<VERS vnumber=\"14\"> Nethanel fourth, Raddai fifth,</VERS>\n\t\t\t<VERS vnumber=\"15\"> Ozem sixth, David seventh.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Their sisters were Zeruiah and Abigail. Zeruiah's three sons were Abshai, Joab, and Asahel. </VERS>\n\t\t\t<VERS vnumber=\"17\"> Abigail bore Amasa, whose father was Jether the Ishmaelite.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Caleb son of Hezron fathered sons by his wife Azubah (also known as Jerioth). Her sons were Jesher, Shobab, and Ardon. </VERS>\n\t\t\t<VERS vnumber=\"19\"> When Azubah died, Caleb married Ephrath, who bore him Hur. </VERS>\n\t\t\t<VERS vnumber=\"20\"> Hur was the father of Uri, and Uri was the father of Bezalel.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Later Hezron had sexual relations with the daughter of Makir, the father of Gilead. (He had married her when he was sixty years old.) She bore him Segub. </VERS>\n\t\t\t<VERS vnumber=\"22\"> Segub was the father of Jair, who owned twenty-three cities in the land of Gilead.</VERS>\n\t\t\t<VERS vnumber=\"23\"> (Geshur and Aram captured the towns of Jair, along with Kenath and its sixty surrounding towns.) All these were descendants of Makir, the father of Gilead.</VERS>\n\t\t\t<VERS vnumber=\"24\"> After Hezron's death, Caleb had sexual relations with Ephrath, his father Hezron's widow, and she bore to him Ashhur the father of Tekoa.</VERS>\n\t\t\t<VERS vnumber=\"25\"> The sons of Jerahmeel, Hezron's firstborn, were Ram, the firstborn, Bunah, Oren, Ozem, and Ahijah.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Jerahmeel had another wife named Atarah; she was Onam's mother.</VERS>\n\t\t\t<VERS vnumber=\"27\"> The sons of Ram, Jerahmeel's firstborn, were Maaz, Jamin, and Eker.</VERS>\n\t\t\t<VERS vnumber=\"28\"> The sons of Onam were Shammai and Jada. The sons of Shammai: Nadab and Abishur.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Abishur's wife was Abihail, who bore him Ahban and Molid.</VERS>\n\t\t\t<VERS vnumber=\"30\"> The sons of Nadab: Seled and Appaim. (Seled died without having sons.)</VERS>\n\t\t\t<VERS vnumber=\"31\"> The son of Appaim: Ishi. The son of Ishi: Sheshan. The son of Sheshan: Ahlai.</VERS>\n\t\t\t<VERS vnumber=\"32\"> The sons of Jada, Shammai's brother: Jether and Jonathan. (Jether died without having sons.)</VERS>\n\t\t\t<VERS vnumber=\"33\"> The sons of Jonathan: Peleth and Zaza. These were the descendants of Jerahmeel.</VERS>\n\t\t\t<VERS vnumber=\"34\"> Sheshan had no sons, only daughters. Sheshan had an Egyptian servant named Jarha.</VERS>\n\t\t\t<VERS vnumber=\"35\"> Sheshan gave his daughter to his servant Jarha as a wife; she bore him Attai.</VERS>\n\t\t\t<VERS vnumber=\"36\"> Attai was the father of Nathan, and Nathan was the father of Zabad.</VERS>\n\t\t\t<VERS vnumber=\"37\"> Zabad was the father of Ephlal, and Ephlal was the father of Obed.</VERS>\n\t\t\t<VERS vnumber=\"38\"> Obed was the father of Jehu, and Jehu was the father of Azariah.</VERS>\n\t\t\t<VERS vnumber=\"39\"> Azariah was the father of Helez, and Helez was the father of Eleasah.</VERS>\n\t\t\t<VERS vnumber=\"40\"> Eleasah was the father of Sismai, and Sismai was the father of Shallum.</VERS>\n\t\t\t<VERS vnumber=\"41\"> Shallum was the father of Jekamiah, and Jekamiah was the father of Elishama.</VERS>\n\t\t\t<VERS vnumber=\"42\"> The sons of Caleb, Jerahmeel's brother: His firstborn Mesha, the father of Ziph, and his second son Mareshah, the father of Hebron.</VERS>\n\t\t\t<VERS vnumber=\"43\"> The sons of Hebron: Korah, Tappuah, Rekem, and Shema.</VERS>\n\t\t\t<VERS vnumber=\"44\"> Shema was the father of Raham, the father of Jorkeam. Rekem was the father of Shammai.</VERS>\n\t\t\t<VERS vnumber=\"45\"> Shammai's son was Maon, who was the father of Beth-Zur.</VERS>\n\t\t\t<VERS vnumber=\"46\"> Caleb's concubine Ephah bore Haran, Moza, and Gazez. Haran was the father of Gazez.</VERS>\n\t\t\t<VERS vnumber=\"47\"> The sons of Jahdai: Regem, Jotham, Geshan, Pelet, Ephah, and Shaaph.</VERS>\n\t\t\t<VERS vnumber=\"48\"> Caleb's concubine Maacah bore Sheber and Tirhanah.</VERS>\n\t\t\t<VERS vnumber=\"49\"> She also bore Shaaph the father of Madmannah and Sheva the father of Machbenah and Gibea. Caleb's daughter was Achsah.</VERS>\n\t\t\t<VERS vnumber=\"50\"> These were the descendants of Caleb. The sons of Hur, the firstborn of Ephrath: Shobal, the father of Kiriath Jearim,</VERS>\n\t\t\t<VERS vnumber=\"51\"> Salma, the father of Bethlehem, Hareph, the father of Beth-Gader.</VERS>\n\t\t\t<VERS vnumber=\"52\"> The sons of Shobal, the father of Kiriath Jearim, were Haroeh, half of the Manahathites,</VERS>\n\t\t\t<VERS vnumber=\"53\"> the clans of Kiriath Jearim, the Ithrites, Puthites, Shumathites, and Mishraites. (The Zorathites and Eshtaolites descended from these groups.)</VERS>\n\t\t\t<VERS vnumber=\"54\"> The sons of Salma: Bethlehem, the Netophathites, Atroth Beth-Joab, half the Manahathites, the Zorites,</VERS>\n\t\t\t<VERS vnumber=\"55\"> and the clans of the scribes who lived in Jabez: the Tirathites, Shimeathites, and Sucathites. These are the Kenites who descended from Hammath, the father of Beth-Rechab.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> These were the sons of David who were born to him in Hebron: The firstborn was Amnon, whose mother was Ahinoam from Jezreel; the second was Daniel, whose mother was Abigail from Carmel;</VERS>\n\t\t\t<VERS vnumber=\"2\"> the third was Absalom whose mother was Maacah, daughter of King Talmai of Geshur; the fourth was Adonijah, whose mother was Haggith;</VERS>\n\t\t\t<VERS vnumber=\"3\"> the fifth was Shephatiah, whose mother was Abital; the sixth was Ithream, whose mother was Eglah.</VERS>\n\t\t\t<VERS vnumber=\"4\"> These six were born to David in Hebron, where he ruled for seven years and six months. He ruled thirty-three years in Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"5\"> These were the sons born to him in Jerusalem: Shimea, Shobab, Nathan, and Solomon, the mother of these four was Bathsheba the daughter of Ammiel.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The other nine were Ibhar, Elishua, Elpelet,</VERS>\n\t\t\t<VERS vnumber=\"7\"> Nogah, Nepheg, Japhia,</VERS>\n\t\t\t<VERS vnumber=\"8\"> Elishama, Eliada, and Eliphelet.</VERS>\n\t\t\t<VERS vnumber=\"9\"> These were all the sons of David, not counting the sons of his concubines. Tamar was their sister.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Solomon's son was Rehoboam, followed by Abijah his son, Asa his son, Jehoshaphat his son,</VERS>\n\t\t\t<VERS vnumber=\"11\"> Joram his son, Ahaziah his son, Joash his son,</VERS>\n\t\t\t<VERS vnumber=\"12\"> Amaziah his son, Azariah his son, Jotham his son,</VERS>\n\t\t\t<VERS vnumber=\"13\"> Ahaz his son, Hezekiah his son, Manasseh his son,</VERS>\n\t\t\t<VERS vnumber=\"14\"> Amon his son, Josiah his son.</VERS>\n\t\t\t<VERS vnumber=\"15\"> The sons of Josiah: Johanan was the firstborn; Jehoiakim was born second; Zedekiah third; and Shallum fourth.</VERS>\n\t\t\t<VERS vnumber=\"16\"> The sons of Jehoiakim: his son Jehoiachin and his son Zedekiah.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The sons of Jehoiachin the exile: Shealtiel his son,</VERS>\n\t\t\t<VERS vnumber=\"18\"> Malkiram, Pedaiah, Shenazzar, Jekamiah, Hoshama, and Nedabiah.</VERS>\n\t\t\t<VERS vnumber=\"19\"> The sons of Pedaiah: Zerubbabel and Shimei. The sons of Zerubbabel: Meshullam and Hananiah. Shelomith was their sister.</VERS>\n\t\t\t<VERS vnumber=\"20\"> The five others were Hashubah, Ohel, Berechiah, Hasadiah, and Jushab-Hesed.</VERS>\n\t\t\t<VERS vnumber=\"21\"> The descendants of Hananiah: Pelatiah, Jeshaiah, the sons of Rephaiah, of Arnan, of Obadiah, and of Shecaniah.</VERS>\n\t\t\t<VERS vnumber=\"22\"> The descendants of Shecaniah: Shemaiah and his sons: Hattush, Igal, Bariah, Neariah, and Shaphat, six in all.</VERS>\n\t\t\t<VERS vnumber=\"23\"> The sons of Neariah: Elioenai, Hizkiah, and Azrikam, three in all.</VERS>\n\t\t\t<VERS vnumber=\"24\"> The sons of Elioenai: Hodaviah, Eliashib, Pelaiah, Akkub, Johanan, Delaiah, and Anani, seven in all.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\"> The descendants of Judah: Perez, Hezron, Carmi, Hur, and Shobal.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Reaiah the son of Shobal was the father of Jahath, and Jahath was the father of Ahumai and Lahad. These were the clans of the Zorathites.</VERS>\n\t\t\t<VERS vnumber=\"3\"> These were the sons of Etam: Jezreel, Ishma, and Idbash. Their sister was Hazzelelponi.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Penuel was the father of Gedor, and Ezer was the father of Hushah. These were the descendants of Hur, the firstborn of Ephrathah and the father of Bethlehem.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Ashhur the father of Tekoa had two wives, Helah and Naarah.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Naarah bore him Ahuzzam, Hepher, Temeni, and Haahashtari. These were the sons of Naarah.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The sons of Helah: Zereth, Zohar, Ethnan,</VERS>\n\t\t\t<VERS vnumber=\"8\"> and Koz, who was the father of Anub, Hazzobebah, and the clans of Aharhel the son of Harum.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Jabez was more respected than his brothers. His mother had named him Jabez, for she said, \"I experienced pain when I gave birth to him.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> Jabez called out to the God of Israel, \"If only you would greatly bless me and expand my territory! May your hand be with me! Keep me from harm so I might not endure pain!\" God answered his prayer.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Kelub, the brother of Shuhah, was the father of Mehir, who was the father of Eshton.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Eshton was the father of Beth-Rapha, Paseah, and Tehinnah, the father of Ir Nahash. These were the men of Recah.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The sons of Kenaz: Othniel and Seraiah. The sons of Othniel: Hathath and Meonothai.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Meonothai was the father of Ophrah. Seraiah was the father of Joab, the father of those who live in Ge Harashim, who were craftsmen.</VERS>\n\t\t\t<VERS vnumber=\"15\"> The sons of Caleb son of Jephunneh: Iru, Elah, and Naam. The son of Elah: Kenaz.</VERS>\n\t\t\t<VERS vnumber=\"16\"> The sons of Jehallelel: Ziph, Ziphah, Tiria, and Asarel.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The sons of Ezrah: Jether, Mered, Epher, and Jalon. Mered's wife Bithiah gave birth to Miriam, Shammai, and Ishbah, the father of Eshtemoa. </VERS>\n\t\t\t<VERS vnumber=\"18\"> (His Judahite wife gave birth to Jered the father of Gedor, Heber the father of Soco, and Jekuthiel the father of Zanoah.) These were the sons of Pharaoh's daughter Bithiah, whom Mered married.</VERS>\n\t\t\t<VERS vnumber=\"19\"> The sons of Hodiah's wife, the sister of Naham: the father of Keilah the Garmite, and Eshtemoa the Maacathite.</VERS>\n\t\t\t<VERS vnumber=\"20\"> The sons of Shimon: Amnon, Rinnah, Ben-Hanan, and Tilon. The descendants of Ishi: Zoheth and Ben Zoheth.</VERS>\n\t\t\t<VERS vnumber=\"21\"> The sons of Shelah son of Judah: Er the father of Lecah, Laadah the father of Mareshah, the clans of the linen workers at Beth-Ashbea,</VERS>\n\t\t\t<VERS vnumber=\"22\"> Jokim, the men of Cozeba, and Joash and Saraph, both of whom ruled in Moab and Jashubi Lehem. (This information is from ancient records.)</VERS>\n\t\t\t<VERS vnumber=\"23\"> They were the potters who lived in Netaim and Gederah; they lived there and worked for the king.</VERS>\n\t\t\t<VERS vnumber=\"24\"> The descendants of Simeon: Nemuel, Jamin, Jarib, Zerah, Shaul,</VERS>\n\t\t\t<VERS vnumber=\"25\"> his son Shallum, his son Mibsam, and his son Mishma.</VERS>\n\t\t\t<VERS vnumber=\"26\"> The descendants of Mishma: His son Hammuel, his son Zaccur, and his son Shimei.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Shimei had sixteen sons and six daughters. But his brothers did not have many sons, so their whole clan was not as numerous as the sons of Judah.</VERS>\n\t\t\t<VERS vnumber=\"28\"> They lived in Beer Sheba, Moladah, Hazar Shual,</VERS>\n\t\t\t<VERS vnumber=\"29\"> Bilhah, Ezem, Tolad,</VERS>\n\t\t\t<VERS vnumber=\"30\"> Bethuel, Hormah, Ziklag,</VERS>\n\t\t\t<VERS vnumber=\"31\"> Beth Marcaboth, Hazar Susim, Beth Biri, and Shaaraim. These were their towns until the reign of David.</VERS>\n\t\t\t<VERS vnumber=\"32\"> Their settlements also included Etam, Ain, Rimmon, Tochen, and Ashan, five towns.</VERS>\n\t\t\t<VERS vnumber=\"33\"> They also lived in all the settlements that surrounded these towns as far as Baal. These were their settlements; they kept genealogical records.</VERS>\n\t\t\t<VERS vnumber=\"34\"> Their clan leaders were: Meshobab, Jamlech, Joshah son of Amaziah,</VERS>\n\t\t\t<VERS vnumber=\"35\"> Joel, Jehu son of Joshibiah (son of Seraiah, son of Asiel),</VERS>\n\t\t\t<VERS vnumber=\"36\"> Eleoenai, Jaakobah, Jeshohaiah, Asaiah, Adiel, Jesimiel, Benaiah,</VERS>\n\t\t\t<VERS vnumber=\"37\"> Ziza son of Shipi (son of Allon, son of Jedaiah, son of Shimri, son of Shemaiah).</VERS>\n\t\t\t<VERS vnumber=\"38\"> These who are named above were the leaders of their clans. Their extended families increased greatly in numbers.</VERS>\n\t\t\t<VERS vnumber=\"39\"> They went to the entrance of Gedor, to the east of the valley, looking for pasture for their sheep.</VERS>\n\t\t\t<VERS vnumber=\"40\"> They found fertile and rich pasture; the land was very broad, undisturbed and peaceful. Indeed some Hamites had been living there prior to that.</VERS>\n\t\t\t<VERS vnumber=\"41\"> The men whose names are listed came during the time of King Hezekiah of Judah and attacked the Hamites' settlements, as well as the Meunites they discovered there, and they wiped them out to this very day. They dispossessed them, for they found pasture for their sheep there. </VERS>\n\t\t\t<VERS vnumber=\"42\"> Five hundred men of Simeon, led by Pelatiah, Neariah, Rephaiah, and Uzziel, the sons of Ishi, went to the hill country of Seir</VERS>\n\t\t\t<VERS vnumber=\"43\"> and defeated the rest of the Amalekite refugees; they live there to this very day.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"5\">\n\t\t\t<VERS vnumber=\"1\"> The sons of Reuben, Israel's firstborn, (Now he was the firstborn, but when he defiled his father's bed, his rights as firstborn were given to the sons of Joseph, Israel's son. So Reuben is not listed as firstborn in the genealogical records.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Though Judah was the strongest among his brothers and a leader descended from him, the right of the firstborn belonged to Joseph.)</VERS>\n\t\t\t<VERS vnumber=\"3\"> The sons of Reuben, Israel's firstborn: Hanoch, Pallu, Hezron, and Carmi.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The descendants of Joel: His son Shemaiah, his son Gog, his son Shimei,</VERS>\n\t\t\t<VERS vnumber=\"5\"> his son Micah, his son Reaiah, his son Baal,</VERS>\n\t\t\t<VERS vnumber=\"6\"> and his son Beerah, whom King Tiglath-pileser of Assyria carried into exile. Beerah was the tribal leader of Reuben.</VERS>\n\t\t\t<VERS vnumber=\"7\"> His brothers by their clans, as listed in their genealogical records: The leader Jeiel, Zechariah,</VERS>\n\t\t\t<VERS vnumber=\"8\"> and Bela son of Azaz, son of Shema, son of Joel. They lived in Aroer as far as Nebo and Baal Meon.</VERS>\n\t\t\t<VERS vnumber=\"9\"> In the east they settled as far as the entrance to the desert that stretches to the Euphrates River, for their cattle had increased in numbers in the land of Gilead.</VERS>\n\t\t\t<VERS vnumber=\"10\"> During the time of Saul they attacked the Hagrites and defeated them. They took over their territory in the entire eastern region of Gilead.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The descendants of Gad lived near them in the land of Bashan, as far as Salecah.</VERS>\n\t\t\t<VERS vnumber=\"12\"> They included Joel the leader, Shapham the second in command, Janai, and Shaphat in Bashan.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Their relatives, listed according to their families, included Michael, Meshullam, Sheba, Jorai, Jacan, Zia, and Eber, seven in all.</VERS>\n\t\t\t<VERS vnumber=\"14\"> These were the sons of Abihail son of Huri, son of Jaroah, son of Gilead, son of Michael, son of Jeshishai, son of Jahdo, son of Buz.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Ahi son of Abdiel, son of Guni, was the leader of the family.</VERS>\n\t\t\t<VERS vnumber=\"16\"> They lived in Gilead, in Bashan and its surrounding settlements, and in the pasturelands of Sharon to their very borders.</VERS>\n\t\t\t<VERS vnumber=\"17\"> All of them were listed in the genealogical records in the time of King Jotham of Judah and in the time of King Jeroboam of Israel.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The Reubenites, Gadites, and the half-tribe of Manasseh had 44,760 men in their combined armies, warriors who carried shields and swords, were equipped with bows, and were trained for war.</VERS>\n\t\t\t<VERS vnumber=\"19\"> They attacked the Hagrites, Jetur, Naphish, and Nodab. </VERS>\n\t\t\t<VERS vnumber=\"20\"> They received divine help in fighting them, and the Hagrites and all their allies were handed over to them. They cried out to God during the battle; he responded to their prayers because they trusted in him.</VERS>\n\t\t\t<VERS vnumber=\"21\"> They seized the Hagrites' animals, including 50,000 camels, 250,000 sheep, and 2,000 donkeys. They also took captive 100,000 people. </VERS>\n\t\t\t<VERS vnumber=\"22\"> Because God fought for them, they killed many of the enemy. They dispossessed the Hagrites and lived in their land until the exile.</VERS>\n\t\t\t<VERS vnumber=\"23\"> The half-tribe of Manasseh settled in the land from Bashan as far as Baal Hermon, Senir, and Mount Hermon. They grew in number.</VERS>\n\t\t\t<VERS vnumber=\"24\"> These were the leaders of their families: Epher, Ishi, Eliel, Azriel, Jeremiah, Hodaviah, and Jahdiel. They were skilled warriors, men of reputation, and leaders of their families.</VERS>\n\t\t\t<VERS vnumber=\"25\"> But they were unfaithful to the God of their ancestors and worshiped instead the gods of the native peoples whom God had destroyed before them. </VERS>\n\t\t\t<VERS vnumber=\"26\"> So the God of Israel stirred up King Pul of Assyria (that is, King Tiglath-pileser of Assyria), and he carried away the Reubenites, Gadites, and half-tribe of Manasseh and took them to Halah, Habor, Hara, and the river of Gozan, where they remain to this very day.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"6\">\n\t\t\t<VERS vnumber=\"1\">  The sons of Levi: Gershon, Kohath, and Merari.</VERS>\n\t\t\t<VERS vnumber=\"2\"> The sons of Kohath: Amram, Izhar, Hebron, and Uzziel.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The children of Amram: Aaron, Moses, and Miriam. The sons of Aaron: Nadab, Abihu, Eleazar, and Ithamar.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Eleazar was the father of Phinehas, and Phinehas was the father of Abishua.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Abishua was the father of Bukki, and Bukki was the father of Uzzi.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Uzzi was the father of Zerahiah, and Zerahiah was the father of Meraioth.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Meraioth was the father of Amariah, and Amariah was the father of Ahitub.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Ahitub was the father of Zadok, and Zadok was the father of Ahimaaz.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Ahimaaz was the father of Azariah, and Azariah was the father of Johanan.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Johanan was the father of Azariah, who served as a priest in the temple Solomon built in Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Azariah was the father of Amariah, and Amariah was the father of Ahitub.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Ahitub was the father of Zadok, and Zadok was the father of Shallum.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Shallum was the father of Hilkiah, and Hilkiah was the father of Azariah.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Azariah was the father of Seraiah, and Seraiah was the father of Jehozadak.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Jehozadak went into exile when the LORD sent the people of Judah and Jerusalem into exile by the hand of Nebuchadnezzar.</VERS>\n\t\t\t<VERS vnumber=\"16\">  The sons of Levi: Gershom, Kohath, and Merari.</VERS>\n\t\t\t<VERS vnumber=\"17\"> These are the names of the sons Gershom: Libni and Shimei.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The sons of Kohath: Amram, Izhar, Hebron, and Uzziel.</VERS>\n\t\t\t<VERS vnumber=\"19\"> The sons of Merari: Mahli and Mushi. These are the clans of the Levites by their families.</VERS>\n\t\t\t<VERS vnumber=\"20\"> To Gershom: His son Libni, his son Jahath, his son Zimmah,</VERS>\n\t\t\t<VERS vnumber=\"21\"> his son Joah, his son Iddo, his son Zerah, and his son Jeatherai.</VERS>\n\t\t\t<VERS vnumber=\"22\"> The sons of Kohath: His son Amminadab, his son Korah, his son Assir, </VERS>\n\t\t\t<VERS vnumber=\"23\"> his son Elkanah, his son Ebiasaph, his son Assir,</VERS>\n\t\t\t<VERS vnumber=\"24\"> his son Tahath, his son Uriel, his son Uzziah, and his son Shaul.</VERS>\n\t\t\t<VERS vnumber=\"25\"> The sons of Elkanah: Amasai, Ahimoth,</VERS>\n\t\t\t<VERS vnumber=\"26\"> his son Elkanah, his son Zophai, his son Nahath, </VERS>\n\t\t\t<VERS vnumber=\"27\"> his son Eliab, his son Jeroham, and his son Elkanah.</VERS>\n\t\t\t<VERS vnumber=\"28\"> The sons of Samuel: Joel the firstborn and Abijah the second oldest.</VERS>\n\t\t\t<VERS vnumber=\"29\"> The descendants of Merari: Mahli, his son Libni, his son Shimei, his son Uzzah,</VERS>\n\t\t\t<VERS vnumber=\"30\"> his son Shimea, his son Haggiah, and his son Asaiah.</VERS>\n\t\t\t<VERS vnumber=\"31\"> These are the men David put in charge of music in the LORD's sanctuary, after the ark was placed there. </VERS>\n\t\t\t<VERS vnumber=\"32\"> They performed music before the sanctuary of the meeting tent until Solomon built the LORD's temple in Jerusalem. They carried out their tasks according to regulations.</VERS>\n\t\t\t<VERS vnumber=\"33\"> These are the ones who served along with their sons: From the Kohathites: Heman the musician, son of Joel, son of Samuel,</VERS>\n\t\t\t<VERS vnumber=\"34\"> son of Elkanah, son of Jeroham, son of Eliel, son of Toah,</VERS>\n\t\t\t<VERS vnumber=\"35\"> son of Zuph, son of Elkanah, son of Mahath, son of Amasai,</VERS>\n\t\t\t<VERS vnumber=\"36\"> son of Elkanah, son of Joel, son of Azariah, son of Zephaniah,</VERS>\n\t\t\t<VERS vnumber=\"37\"> son of Tahath, son of Assir, son of Ebiasaph, son of Korah,</VERS>\n\t\t\t<VERS vnumber=\"38\"> son of Izhar, son of Kohath, son of Levi, son of Israel.</VERS>\n\t\t\t<VERS vnumber=\"39\"> Serving beside him was his fellow Levite Asaph, son of Berechiah, son of Shimea, </VERS>\n\t\t\t<VERS vnumber=\"40\"> son of Michael, son of Baaseiah, son of Malkijah, </VERS>\n\t\t\t<VERS vnumber=\"41\"> son of Ethni, son of Zerah, son of Adaiah,</VERS>\n\t\t\t<VERS vnumber=\"42\"> son of Ethan, son of Zimmah, son of Shimei,</VERS>\n\t\t\t<VERS vnumber=\"43\"> son of Jahath, son of Gershom, son of Levi.</VERS>\n\t\t\t<VERS vnumber=\"44\"> Serving beside them were their fellow Levites, the descendants of Merari, led by Ethan, son of Kishi, son of Abdi, son of Malluch, </VERS>\n\t\t\t<VERS vnumber=\"45\"> son of Hashabiah, son of Amaziah, son of Hilkiah,</VERS>\n\t\t\t<VERS vnumber=\"46\"> son of Amzi, son of Bani, son of Shemer,</VERS>\n\t\t\t<VERS vnumber=\"47\"> son of Mahli, son of Mushi, son of Merari, son of Levi.</VERS>\n\t\t\t<VERS vnumber=\"48\"> The rest of their fellow Levites were assigned to perform the remaining tasks at God's sanctuary.</VERS>\n\t\t\t<VERS vnumber=\"49\"> But Aaron and his descendants offered sacrifices on the altar for burnt offerings and on the altar for incense as they had been assigned to do in the most holy sanctuary. They made atonement for Israel, just as God's servant Moses had ordered.</VERS>\n\t\t\t<VERS vnumber=\"50\"> These were the descendants of Aaron: His son Eleazar, his son Phinehas, his son Abishua,</VERS>\n\t\t\t<VERS vnumber=\"51\"> his son Bukki, his son Uzzi, his son Zerahiah,</VERS>\n\t\t\t<VERS vnumber=\"52\"> his son Meraioth, his son Amariah, his son Ahitub,</VERS>\n\t\t\t<VERS vnumber=\"53\"> his son Zadok, and his son Ahimaaz.</VERS>\n\t\t\t<VERS vnumber=\"54\"> These were the areas where Aaron's descendants lived: The following belonged to the Kohathite clan, for they received the first allotment:</VERS>\n\t\t\t<VERS vnumber=\"55\"> They were allotted Hebron in the territory of Judah, as well as its surrounding pasturelands.</VERS>\n\t\t\t<VERS vnumber=\"56\"> (But the city's land and nearby towns were allotted to Caleb son of Jephunneh.)</VERS>\n\t\t\t<VERS vnumber=\"57\"> The descendants of Aaron were also allotted as cities of refuge Hebron, Libnah and its pasturelands, Jattir, Eshtemoa and its pasturelands,</VERS>\n\t\t\t<VERS vnumber=\"58\"> Hilez and its pasturelands, Debir and its pasturelands, </VERS>\n\t\t\t<VERS vnumber=\"59\"> Ashan and its pasturelands, and Beth Shemesh and its pasturelands.</VERS>\n\t\t\t<VERS vnumber=\"60\"> Within the territory of the tribe of Benjamin they were allotted Geba and its pasturelands, Alemeth and its pasturelands, and Anathoth and its pasturelands. Their clans were allotted thirteen cities in all. </VERS>\n\t\t\t<VERS vnumber=\"61\"> The rest of Kohath's descendants were allotted ten cities in the territory of the half-tribe of Manasseh.</VERS>\n\t\t\t<VERS vnumber=\"62\"> The clans of Gershom's descendants received thirteen cities within the territory of the tribes of Issachar, Asher, Naphtali, and Manasseh (in Bashan).</VERS>\n\t\t\t<VERS vnumber=\"63\"> The clans of Merari's descendants were allotted twelve cities within the territory of the tribes of Reuben, Gad, and Zebulun.</VERS>\n\t\t\t<VERS vnumber=\"64\"> So the Israelites gave to the Levites these cities and their pasturelands.</VERS>\n\t\t\t<VERS vnumber=\"65\"> They allotted these previously named cities from the territory of the tribes of Judah, Simeon, and Benjamin.</VERS>\n\t\t\t<VERS vnumber=\"66\"> The clans of Kohath's descendants also received territory within the tribe of Ephraim.</VERS>\n\t\t\t<VERS vnumber=\"67\"> They were allotted as cities of refuge Shechem and its pasturelands (in the hill country of Ephraim), Gezer and its pasturelands, </VERS>\n\t\t\t<VERS vnumber=\"68\"> Jokmeam and its pasturelands, Beth Horon and its pasturelands,</VERS>\n\t\t\t<VERS vnumber=\"69\"> Aijalon and its pasturelands, and Gath Rimmon and its pasturelands.</VERS>\n\t\t\t<VERS vnumber=\"70\"> Within the territory of the half-tribe of Manasseh, the rest of Kohath's descendants received Aner and its pasturelands and Bileam and its pasturelands.</VERS>\n\t\t\t<VERS vnumber=\"71\"> The following belonged to Gershom's descendants: Within the territory of the half-tribe of Manasseh: Golan in Bashan and its pasturelands and Ashtaroth and its pasturelands.</VERS>\n\t\t\t<VERS vnumber=\"72\"> Within the territory of the tribe of Issachar: Kedesh and its pasturelands, Daberath and its pasturelands,</VERS>\n\t\t\t<VERS vnumber=\"73\"> Ramoth and its pasturelands, and Anem and its pasturelands.</VERS>\n\t\t\t<VERS vnumber=\"74\"> Within the territory of the tribe of Asher: Mashal and its pasturelands, Abdon and its pasturelands,</VERS>\n\t\t\t<VERS vnumber=\"75\"> Hukok and its pasturelands, and Rehob and its pasturelands.</VERS>\n\t\t\t<VERS vnumber=\"76\"> Within the territory of the tribe of Naphtali: Kedesh in Galilee and its pasturelands, Hammon and its pasturelands, and Kiriathaim and its pasturelands.</VERS>\n\t\t\t<VERS vnumber=\"77\"> The following belonged to the rest of Merari's descendants: Within the territory of the tribe of Zebulun: Rimmono and its pasturelands, and Tabor and its pasturelands.</VERS>\n\t\t\t<VERS vnumber=\"78\"> Within the territory of the tribe of Reuben across the Jordan River east of Jericho: Bezer in the desert and its pasturelands, Jahzah and its pasturelands, </VERS>\n\t\t\t<VERS vnumber=\"79\"> Kedemoth and its pasturelands, and Mephaath and its pasturelands.</VERS>\n\t\t\t<VERS vnumber=\"80\"> Within the territory of the tribe of Gad: Ramoth in Gilead and its pasturelands, Mahanaim and its pasturelands,</VERS>\n\t\t\t<VERS vnumber=\"81\"> Heshbon and its pasturelands, and Jazer and its pasturelands.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"7\">\n\t\t\t<VERS vnumber=\"1\"> The sons of Issachar: Tola, Puah, Jashub, and Shimron, four in all.</VERS>\n\t\t\t<VERS vnumber=\"2\"> The sons of Tola: Uzzi, Rephaiah, Jeriel, Jahmai, Jibsam, and Samuel. They were leaders of their families. In the time of David there were 22,600 warriors listed in Tola's genealogical records.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The son of Uzzi: Izrachiah. The sons of Izrahiah: Michael, Obadiah, Joel, and Isshiah. All five were leaders.</VERS>\n\t\t\t<VERS vnumber=\"4\"> According to the genealogical records of their families, they had 36,000 warriors available for battle, for they had numerous wives and sons.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Altogether the genealogical records of the clans of Issachar listed 87,000 warriors.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The sons of Benjamin: Bela, Beker, and Jediael, three in all.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The sons of Bela: Ezbon, Uzzi, Uzziel, Jerimoth, and Iri. The five of them were leaders of their families. There were 22,034 warriors listed in their genealogical records.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The sons of Beker: Zemirah, Joash, Eliezer, Elioenai, Omri, Jeremoth, Abijah, Anathoth, and Alameth. All these were the sons of Beker.</VERS>\n\t\t\t<VERS vnumber=\"9\"> There were 20,200 family leaders and warriors listed in their genealogical records.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The son of Jediael: Bilhan. The sons of Bilhan: Jeush, Benjamin, Ehud, Kenaanah, Zethan, Tarshish, and Ahishahar. </VERS>\n\t\t\t<VERS vnumber=\"11\"> All these were the sons of Jediael. Listed in their genealogical records were 17,200 family leaders and warriors who were capable of marching out to battle.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The Shuppites and Huppites were descendants of Ir; the Hushites were descendants of Aher.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The sons of Naphtali: Jahziel, Guni, Jezer, and Shallum, sons of Bilhah.</VERS>\n\t\t\t<VERS vnumber=\"14\"> The sons of Manasseh: Asriel, who was born to Manasseh's Aramean concubine. She also gave birth to Makir the father of Gilead. </VERS>\n\t\t\t<VERS vnumber=\"15\"> Now Makir married a wife from the Huppites and Shuppites. (His sister's name was Maacah.) Zelophehad was Manasseh's second son; he had only daughters.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Maacah, Makir's wife, gave birth to a son, whom she named Peresh. His brother was Sheresh, and his sons were Ulam and Rekem.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The son of Ulam: Bedan. These were the sons of Gilead, son of Makir, son of Manasseh.</VERS>\n\t\t\t<VERS vnumber=\"18\"> His sister Hammoleketh gave birth to Ishhod, Abiezer, and Mahlah.</VERS>\n\t\t\t<VERS vnumber=\"19\"> The sons of Shemida were Ahian, Shechem, Likhi, and Aniam.</VERS>\n\t\t\t<VERS vnumber=\"20\"> The descendants of Ephraim: Shuthelah, his son Bered, his son Tahath, his son Eleadah, his son Tahath,</VERS>\n\t\t\t<VERS vnumber=\"21\"> his son Zabad, his son Shuthelah (Ezer and Elead were killed by the men of Gath, who were natives of the land, when they went down to steal their cattle.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Their father Ephraim mourned for them many days and his brothers came to console him.</VERS>\n\t\t\t<VERS vnumber=\"23\"> He had sexual relations with his wife; she became pregnant and gave birth to a son. Ephraim named him Beriah because tragedy had come to his family.</VERS>\n\t\t\t<VERS vnumber=\"24\"> His daughter was Sheerah, who built Lower and Upper Beth Horon, as well as Uzzen Sheerah),</VERS>\n\t\t\t<VERS vnumber=\"25\"> his son Rephah, his son Resheph, his son Telah, his son Tahan, </VERS>\n\t\t\t<VERS vnumber=\"26\"> his son Ladan, his son Ammihud, his son Elishama,</VERS>\n\t\t\t<VERS vnumber=\"27\"> his son Nun, and his son Joshua.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Their property and settlements included Bethel and its surrounding towns, Naaran to the east, Gezer and its surrounding towns to the west, and Shechem and its surrounding towns as far as Ayyah and its surrounding towns. </VERS>\n\t\t\t<VERS vnumber=\"29\"> On the border of Manasseh's territory were Beth-Shean and its surrounding towns, Taanach and its surrounding towns, Megiddo and its surrounding towns, and Dor and its surrounding towns. The descendants of Joseph, Israel's son, lived here.</VERS>\n\t\t\t<VERS vnumber=\"30\"> The sons of Asher: Imnah, Ishvah, Ishvi, and Beriah. Serah was their sister.</VERS>\n\t\t\t<VERS vnumber=\"31\"> The sons of Beriah: Heber and Malkiel, who was the father of Birzaith.</VERS>\n\t\t\t<VERS vnumber=\"32\"> Heber was the father of Japhlet, Shomer, Hotham, and Shua their sister.</VERS>\n\t\t\t<VERS vnumber=\"33\"> The sons of Japhlet: Pasach, Bimhal, and Ashvath. These were Japhlet's sons.</VERS>\n\t\t\t<VERS vnumber=\"34\"> The sons of his brother Shemer: Rohgah, Hubbah, and Aram.</VERS>\n\t\t\t<VERS vnumber=\"35\"> The sons of his brother Helem: Zophah, Imna, Shelesh, and Amal.</VERS>\n\t\t\t<VERS vnumber=\"36\"> The sons of Zophah: Suah, Harnepher, Shual, Beri, Imrah,</VERS>\n\t\t\t<VERS vnumber=\"37\"> Bezer, Hod, Shamma, Shilshah, Ithran, and Beera.</VERS>\n\t\t\t<VERS vnumber=\"38\"> The sons of Jether: Jephunneh, Pispah, and Ara.</VERS>\n\t\t\t<VERS vnumber=\"39\"> The sons of Ulla: Arah, Hanniel, and Rizia.</VERS>\n\t\t\t<VERS vnumber=\"40\"> All these were the descendants of Asher. They were the leaders of their families, the most capable men, who were warriors and served as head chiefs. There were 26,000 warriors listed in their genealogical records as capable of doing battle.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"8\">\n\t\t\t<VERS vnumber=\"1\"> Benjamin was the father of Bela, his firstborn; Ashbel was born second, Aharah third, </VERS>\n\t\t\t<VERS vnumber=\"2\"> Nohah fourth, and Rapha fifth.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Bela's sons were Addar, Gera, Abihud,</VERS>\n\t\t\t<VERS vnumber=\"4\"> Abishua, Naaman, Ahoah,</VERS>\n\t\t\t<VERS vnumber=\"5\"> Gera, Shephuphan, and Huram.</VERS>\n\t\t\t<VERS vnumber=\"6\"> These were the descendants of Ehud who were leaders of the families living in Geba who were forced to move to Manahath:</VERS>\n\t\t\t<VERS vnumber=\"7\"> Naaman, Ahijah, and Gera, who moved them. Gera was the father of Uzzah and Ahihud.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Shaharaim fathered sons in Moab after he divorced his wives Hushim and Baara.</VERS>\n\t\t\t<VERS vnumber=\"9\"> By his wife Hodesh he fathered Jobab, Zibia, Mesha, Malkam,</VERS>\n\t\t\t<VERS vnumber=\"10\"> Jeuz, Sakia, and Mirmah. These were his sons; they were family leaders.</VERS>\n\t\t\t<VERS vnumber=\"11\"> By Hushim he fathered Abitub and Elpaal.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The sons of Elpaal: Eber, Misham, Shemed (who built Ono and Lod, as well as its surrounding towns),</VERS>\n\t\t\t<VERS vnumber=\"13\"> Beriah, and Shema. They were leaders of the families living in Aijalon and chased out the inhabitants of Gath.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Ahio, Shashak, Jeremoth,</VERS>\n\t\t\t<VERS vnumber=\"15\"> Zebadiah, Arad, Eder,</VERS>\n\t\t\t<VERS vnumber=\"16\"> Michael, Ishpah, and Joha were the sons of Beriah.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Zebadiah, Meshullam, Hizki, Heber,</VERS>\n\t\t\t<VERS vnumber=\"18\"> Ishmerai, Izliah, and Jobab were the sons of Elpaal.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Jakim, Zikri, Zabdi,</VERS>\n\t\t\t<VERS vnumber=\"20\"> Elienai, Zillethai, Eliel,</VERS>\n\t\t\t<VERS vnumber=\"21\"> Adaiah, Beraiah, and Shimrath were the sons of Shimei.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Ishpan, Eber, Eliel,</VERS>\n\t\t\t<VERS vnumber=\"23\"> Abdon, Zikri, Hanan,</VERS>\n\t\t\t<VERS vnumber=\"24\"> Hananiah, Elam, Anthothijah,</VERS>\n\t\t\t<VERS vnumber=\"25\"> Iphdeiah, and Penuel were the sons of Shashak.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Shamsherai, Shechariah, Athaliah,</VERS>\n\t\t\t<VERS vnumber=\"27\"> Jaareshiah, Elijah, and Zikri were the sons of Jeroham.</VERS>\n\t\t\t<VERS vnumber=\"28\"> These were the family leaders listed in the genealogical records; they lived in Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"29\"> The father of Gibeon lived in Gibeon; his wife's name was Maacah. </VERS>\n\t\t\t<VERS vnumber=\"30\"> His firstborn son was Abdon, followed by Zur, Kish, Baal, Nadab,</VERS>\n\t\t\t<VERS vnumber=\"31\"> Gedor, Ahio, Zeker, and Mikloth.</VERS>\n\t\t\t<VERS vnumber=\"32\"> Mikloth was the father of Shimeah. They also lived near their relatives in Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"33\"> Ner was the father of Kish, and Kish was the father of Saul. Saul was the father of Jonathan, Malki-Shua, Abinadab, and Eshbaal.</VERS>\n\t\t\t<VERS vnumber=\"34\"> The son of Jonathan: Meribbaal. Meribbaal was the father of Micah.</VERS>\n\t\t\t<VERS vnumber=\"35\"> The sons of Micah: Pithon, Melech, Tarea, and Ahaz.</VERS>\n\t\t\t<VERS vnumber=\"36\"> Ahaz was the father of Jehoaddah, and Jehoaddah was the father of Alemeth, Azmaveth, and Zimri. Zimri was the father of Moza,</VERS>\n\t\t\t<VERS vnumber=\"37\"> and Moza was the father of Binea. His son was Raphah, whose son was Eleasah, whose son was Azel.</VERS>\n\t\t\t<VERS vnumber=\"38\"> Azel had six sons: Azrikam his firstborn, followed by Ishmael, Sheariah, Obadiah, and Hanan. All these were the sons of Azel.</VERS>\n\t\t\t<VERS vnumber=\"39\"> The sons of his brother Eshek: Ulam was his firstborn, Jeush second, and Eliphelet third.</VERS>\n\t\t\t<VERS vnumber=\"40\"> The sons of Ulam were warriors who were adept archers. They had many sons and grandsons, a total of 150. All these were the descendants of Benjamin.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"9\">\n\t\t\t<VERS vnumber=\"1\"> Genealogical records were kept for all Israel; they are recorded in the Scroll of the Kings of Israel. The people of Judah were carried away to Babylon because of their unfaithfulness. </VERS>\n\t\t\t<VERS vnumber=\"2\"> The first to resettle on their property and in their cities were some Israelites, priests, Levites, and temple servants.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Some from the tribes of Judah, Benjamin, and Ephraim and Manasseh settled in Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The settlers included: Uthai son of Ammihud, son of Omri, son of Imri, son of Bani, who was a descendant of Perez son of Judah.</VERS>\n\t\t\t<VERS vnumber=\"5\"> From the Shilonites: Asaiah the firstborn and his sons.</VERS>\n\t\t\t<VERS vnumber=\"6\"> From the descendants of Zerah: Jeuel. Their relatives numbered 690.</VERS>\n\t\t\t<VERS vnumber=\"7\"> From the descendants of Benjamin: Sallu son of Meshullam, son of Hodaviah, son of Hassenuah;</VERS>\n\t\t\t<VERS vnumber=\"8\"> Ibneiah son of Jeroham; Elah son of Uzzi, son of Mikri; and Meshullam son of Shephatiah, son of Reuel, son of Ibnijah.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Their relatives, listed in their genealogical records, numbered 956. All these men were leaders of their families.</VERS>\n\t\t\t<VERS vnumber=\"10\"> From the priests: Jedaiah; Jehoiarib; Jakin;</VERS>\n\t\t\t<VERS vnumber=\"11\"> Azariah son of Hilkiah, son of Meshullam, son of Zadok, son of Meraioth, son of Ahitub the leader in God's temple;</VERS>\n\t\t\t<VERS vnumber=\"12\"> Adaiah son of Jeroham, son of Pashhur, son of Malkijah; and Maasai son of Adiel, son of Jahzerah, son of Meshullam, son of Meshillemith, son of Immer.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Their relatives, who were leaders of their families, numbered 1,760. They were capable men who were assigned to carry out the various tasks of service in God's temple.</VERS>\n\t\t\t<VERS vnumber=\"14\"> From the Levites: Shemaiah son of Hasshub, son of Azrikam, son of Hashabiah a descendant of Merari;</VERS>\n\t\t\t<VERS vnumber=\"15\"> Bakbakkar; Heresh; Galal; Mattaniah son of Mika, son of Zikri, son of Asaph;</VERS>\n\t\t\t<VERS vnumber=\"16\"> Obadiah son of Shemaiah, son of Galal, son of Jeduthun; and Berechiah son of Asa, son of Elkanah, who lived among the settlements of the Netophathites.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The gatekeepers were: Shallum, Akkub, Talmon, Ahiman, and their brothers. Shallum was the leader;</VERS>\n\t\t\t<VERS vnumber=\"18\"> he serves to this day at the King's Gate on the east. These were the gatekeepers from the camp of the descendants of Levi.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Shallum son of Kore, son of Ebiasaph, son of Korah, and his relatives from his family (the Korahites) were assigned to guard the entrance to the sanctuary. Their ancestors had guarded the entrance to the LORD's dwelling place.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Phinehas son of Eleazar had been their leader in earlier times, and the LORD was with him.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Zechariah son of Meshelemiah was the guard at the entrance to the meeting tent.</VERS>\n\t\t\t<VERS vnumber=\"22\"> All those selected to be gatekeepers at the entrances numbered 212. Their names were recorded in the genealogical records of their settlements. David and Samuel the prophet had appointed them to their positions.</VERS>\n\t\t\t<VERS vnumber=\"23\"> They and their descendants were assigned to guard the gates of the LORD's sanctuary (that is, the tabernacle).</VERS>\n\t\t\t<VERS vnumber=\"24\"> The gatekeepers were posted on all four sides, east, west, north, and south.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Their relatives, who lived in their settlements, came from time to time and served with them for seven-day periods.</VERS>\n\t\t\t<VERS vnumber=\"26\"> The four head gatekeepers, who were Levites, were assigned to guard the storerooms and treasuries in God's sanctuary.</VERS>\n\t\t\t<VERS vnumber=\"27\"> They would spend the night in their posts all around God's sanctuary, for they were assigned to guard it and would open it with the key every morning. </VERS>\n\t\t\t<VERS vnumber=\"28\"> Some of them were in charge of the articles used by those who served; they counted them when they brought them in and when they brought them out.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Some of them were in charge of the equipment and articles of the sanctuary, as well as the flour, wine, olive oil, incense, and spices. </VERS>\n\t\t\t<VERS vnumber=\"30\"> (But some of the priests mixed the spices.)</VERS>\n\t\t\t<VERS vnumber=\"31\"> Mattithiah, a Levite, the firstborn son of Shallum the Korahite, was in charge of baking the bread for offerings. </VERS>\n\t\t\t<VERS vnumber=\"32\"> Some of the Kohathites, their relatives, were in charge of preparing the bread that is displayed each Sabbath.</VERS>\n\t\t\t<VERS vnumber=\"33\"> The musicians and Levite family leaders stayed in rooms at the sanctuary and were exempt from other duties, for day and night they had to carry out their assigned tasks. </VERS>\n\t\t\t<VERS vnumber=\"34\"> These were the family leaders of the Levites, as listed in their genealogical records. They lived in Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"35\"> Jeiel (the father of Gibeon) lived in Gibeon. His wife was Maacah.</VERS>\n\t\t\t<VERS vnumber=\"36\"> His firstborn son was Abdon, followed by Zur, Kish, Baal, Ner, Nadab,</VERS>\n\t\t\t<VERS vnumber=\"37\"> Gedor, Ahio, Zechariah, and Mikloth.</VERS>\n\t\t\t<VERS vnumber=\"38\"> Mikloth was the father of Shimeam. They also lived near their relatives in Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"39\"> Ner was the father of Kish, and Kish was the father of Saul. Saul was the father of Jonathan, Malki-Shua, Abinadab, and Eshbaal.</VERS>\n\t\t\t<VERS vnumber=\"40\"> The son of Jonathan: Meribbaal, who was the father of Micah.</VERS>\n\t\t\t<VERS vnumber=\"41\"> The sons of Micah: Pithon, Melech, Tahrea, and Ahaz.</VERS>\n\t\t\t<VERS vnumber=\"42\"> Ahaz was the father of Jarah, and Jarah was the father of Alemeth, Azmaveth, and Zimri. Zimri was the father of Moza, </VERS>\n\t\t\t<VERS vnumber=\"43\"> and Moza was the father of Binea. His son was Rephaiah, whose son was Eleasah, whose son was Azel.</VERS>\n\t\t\t<VERS vnumber=\"44\"> Azel had six sons: Azrikam his firstborn, followed by Ishmael, Sheariah, Obadiah, and Hanan. These were the sons of Azel.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"10\">\n\t\t\t<VERS vnumber=\"1\"> Now the Philistines fought against Israel. The Israelites fled before the Philistines and many of them fell dead on Mount Gilboa.</VERS>\n\t\t\t<VERS vnumber=\"2\"> The Philistines stayed right on the heels of Saul and his sons. They struck down Saul's sons Jonathan, Abinadab, and Malki-Shua.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The battle was thick around Saul; the archers spotted him and wounded him.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Saul told his armor bearer, \"Draw your sword and stab me with it. Otherwise these uncircumcised people will come and torture me.\" But his armor bearer refused to do it, because he was very afraid. So Saul took the sword and fell on it. </VERS>\n\t\t\t<VERS vnumber=\"5\"> When his armor bearer saw that Saul was dead, he also fell on his sword and died.</VERS>\n\t\t\t<VERS vnumber=\"6\"> So Saul and his three sons died; his whole household died together. </VERS>\n\t\t\t<VERS vnumber=\"7\"> When all the Israelites who were in the valley saw that the army had fled and that Saul and his sons were dead, they abandoned their cities and fled. The Philistines came and occupied them.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The next day, when the Philistines came to strip loot from the corpses, they discovered Saul and his sons lying dead on Mount Gilboa.</VERS>\n\t\t\t<VERS vnumber=\"9\"> They stripped his corpse, and then carried off his head and his armor. They sent messengers throughout the land of the Philistines proclaiming the news to their idols and their people.</VERS>\n\t\t\t<VERS vnumber=\"10\"> They placed his armor in the temple of their gods and hung his head in the temple of Dagon. </VERS>\n\t\t\t<VERS vnumber=\"11\"> When all the residents of Jabesh Gilead heard about everything the Philistines had done to Saul,</VERS>\n\t\t\t<VERS vnumber=\"12\"> all the warriors went and recovered the bodies of Saul and his sons and brought them to Jabesh. They buried their remains under the oak tree in Jabesh and fasted for seven days.</VERS>\n\t\t\t<VERS vnumber=\"13\"> So Saul died because he was unfaithful to the LORD and did not obey the LORD's instructions; he even tried to conjure up underworld spirits.</VERS>\n\t\t\t<VERS vnumber=\"14\"> He did not seek the LORD's guidance, so the LORD killed him and transferred the kingdom to David son of Jesse.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"11\">\n\t\t\t<VERS vnumber=\"1\"> All Israel joined David at Hebron and said, \"Look, we are your very flesh and blood!</VERS>\n\t\t\t<VERS vnumber=\"2\"> In the past, even when Saul was king, you were Israel's commanding general. The LORD your God said to you, 'You will shepherd my people Israel; you will rule over my people Israel.'\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> When all the leaders of Israel came to the king at Hebron, David made an agreement with them in Hebron before the LORD. They anointed David king over Israel, just as the LORD had announced through Samuel.</VERS>\n\t\t\t<VERS vnumber=\"4\"> David and the whole Israelite army advanced to Jerusalem (that is, Jebus). (The Jebusites, the land's original inhabitants, lived there.)</VERS>\n\t\t\t<VERS vnumber=\"5\"> The residents of Jebus said to David, \"You cannot invade this place!\" But David captured the fortress of Zion (that is, the City of David).</VERS>\n\t\t\t<VERS vnumber=\"6\">  David said, \"Whoever attacks the Jebusites first will become commanding general!\" So Joab son of Zeruiah attacked first and became commander.</VERS>\n\t\t\t<VERS vnumber=\"7\"> David lived in the fortress; for this reason it is called the City of David.</VERS>\n\t\t\t<VERS vnumber=\"8\"> He built up the city around it, from the terrace to the surrounding walls; Joab restored the rest of the city. </VERS>\n\t\t\t<VERS vnumber=\"9\"> David's power steadily grew, for the LORD who commands armies was with him.</VERS>\n\t\t\t<VERS vnumber=\"10\"> These were the leaders of David's warriors who helped establish and stabilize his rule over all Israel, in accordance with the LORD's word.</VERS>\n\t\t\t<VERS vnumber=\"11\"> This is the list of David's warriors: Jashobeam, a Hacmonite, was head of the officers. He killed three hundred men with his spear in a single battle.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Next in command was Eleazar son of Dodo the Ahohite. He was one of the three elite warriors. </VERS>\n\t\t\t<VERS vnumber=\"13\"> He was with David in Pas Dammim when the Philistines assembled there for battle. In an area of the field that was full of barley, the army retreated before the Philistines, </VERS>\n\t\t\t<VERS vnumber=\"14\"> but then they made a stand in the middle of that area. They defended it and defeated the Philistines; the LORD gave them a great victory.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Three of the thirty leaders went down to David at the rocky cliff at the cave of Adullam, while a Philistine force was camped in the Valley of Rephaim.</VERS>\n\t\t\t<VERS vnumber=\"16\"> David was in the stronghold at the time, while a Philistine garrison was in Bethlehem.</VERS>\n\t\t\t<VERS vnumber=\"17\"> David was thirsty and said, \"How I wish someone would give me some water to drink from the cistern in Bethlehem near the city gate!\" </VERS>\n\t\t\t<VERS vnumber=\"18\"> So the three elite warriors broke through the Philistine forces and drew some water from the cistern in Bethlehem near the city gate. They carried it back to David, but David refused to drink it. He poured it out as a drink offering to the LORD</VERS>\n\t\t\t<VERS vnumber=\"19\"> and said, \"God forbid that I should do this! Should I drink the blood of these men who risked their lives?\" Because they risked their lives to bring it to him, he refused to drink it. Such were the exploits of the three elite warriors.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Abishai the brother of Joab was head of the three elite warriors. He killed three hundred men with his spear and gained fame along with the three elite warriors.</VERS>\n\t\t\t<VERS vnumber=\"21\"> From the three he was given double honor and he became their officer, even though he was not one of them.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Benaiah son of Jehoiada was a brave warrior from Kabzeel who performed great exploits. He struck down the two sons of Ariel of Moab; he also went down and killed a lion inside a cistern on a snowy day. </VERS>\n\t\t\t<VERS vnumber=\"23\"> He even killed an Egyptian who was seven and a half feet tall. The Egyptian had a spear as big as the crossbeam of a weaver's loom; Benaiah attacked him with a club. He grabbed the spear out of the Egyptian's hand and killed him with his own spear. </VERS>\n\t\t\t<VERS vnumber=\"24\"> Such were the exploits of Benaiah son of Jehoiada, who gained fame along with the three elite warriors.</VERS>\n\t\t\t<VERS vnumber=\"25\"> He received honor from the thirty warriors, though he was not one of the three elite warriors. David put him in charge of his bodyguard.</VERS>\n\t\t\t<VERS vnumber=\"26\"> The mighty warriors were: Asahel the brother of Joab, Elhanan son of Dodo, from Bethlehem,</VERS>\n\t\t\t<VERS vnumber=\"27\"> Shammoth the Harorite, Helez the Pelonite,</VERS>\n\t\t\t<VERS vnumber=\"28\"> Ira son of Ikkesh the Tekoite, Abiezer the Anathothite,</VERS>\n\t\t\t<VERS vnumber=\"29\"> Sibbekai the Hushathite, Ilai the Ahohite,</VERS>\n\t\t\t<VERS vnumber=\"30\"> Maharai the Netophathite, Heled son of Baanah the Netophathite,</VERS>\n\t\t\t<VERS vnumber=\"31\"> Ithai son of Ribai from Gibeah in Benjaminite territory, Benaiah the Pirathonite,</VERS>\n\t\t\t<VERS vnumber=\"32\"> Hurai from the valleys of Gaash, Abiel the Arbathite,</VERS>\n\t\t\t<VERS vnumber=\"33\"> Azmaveth the Baharumite, Eliahba the Shaalbonite,</VERS>\n\t\t\t<VERS vnumber=\"34\"> the sons of Hashem the Gizonite, Jonathan son of Shageh the Hararite,</VERS>\n\t\t\t<VERS vnumber=\"35\"> Ahiam son of Sakar the Hararite, Eliphal son of Ur,</VERS>\n\t\t\t<VERS vnumber=\"36\"> Hepher the Mekerathite, Ahijah the Pelonite,</VERS>\n\t\t\t<VERS vnumber=\"37\"> Hezro the Carmelite, Naarai son of Ezbai,</VERS>\n\t\t\t<VERS vnumber=\"38\"> Joel the brother of Nathan, Mibhar son of Hagri,</VERS>\n\t\t\t<VERS vnumber=\"39\"> Zelek the Ammonite, Naharai the Beerothite, the armor-bearer of Joab son of Zeruiah,</VERS>\n\t\t\t<VERS vnumber=\"40\"> Ira the Ithrite, Gareb the Ithrite,</VERS>\n\t\t\t<VERS vnumber=\"41\"> Uriah the Hittite, Zabad son of Achli,</VERS>\n\t\t\t<VERS vnumber=\"42\"> Adina son of Shiza the Reubenite, leader of the Reubenites and the thirty warriors with him,</VERS>\n\t\t\t<VERS vnumber=\"43\"> Hanan son of Maacah, Joshaphat the Mithnite,</VERS>\n\t\t\t<VERS vnumber=\"44\"> Uzzia the Ashterathite, Shama and Jeiel, the sons of Hotham the Aroerite,</VERS>\n\t\t\t<VERS vnumber=\"45\"> Jediael son of Shimri, and Joha his brother, the Tizite,</VERS>\n\t\t\t<VERS vnumber=\"46\"> Eliel the Mahavite, and Jeribai and Joshaviah, the sons of Elnaam, and Ithmah the Moabite,</VERS>\n\t\t\t<VERS vnumber=\"47\"> Eliel, and Obed, and Jaasiel the Mezobaite.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"12\">\n\t\t\t<VERS vnumber=\"1\"> These were the men who joined David in Ziklag, when he was banished from the presence of Saul son of Kish. (They were among the warriors who assisted him in battle. </VERS>\n\t\t\t<VERS vnumber=\"2\"> They were armed with bows and could shoot arrows or sling stones right or left-handed. They were fellow tribesmen of Saul from Benjamin.) These were:</VERS>\n\t\t\t<VERS vnumber=\"3\"> Ahiezer, the leader, and Joash, the sons of Shemaah the Gibeathite; Jeziel and Pelet, the sons of Azmaveth; Berachah, Jehu the Anathothite,</VERS>\n\t\t\t<VERS vnumber=\"4\"> Ishmaiah the Gibeonite, one of the thirty warriors and their leader, Jeremiah, Jahaziel, Johanan, Jozabad the Gederathite,</VERS>\n\t\t\t<VERS vnumber=\"5\">  Eluzai, Jerimoth, Bealiah, Shemariah, Shephatiah the Haruphite,</VERS>\n\t\t\t<VERS vnumber=\"6\"> Elkanah, Isshiah, Azarel, Joezer, and Jashobeam, who were Korahites,</VERS>\n\t\t\t<VERS vnumber=\"7\"> and Joelah and Zebadiah, the sons of Jeroham from Gedor.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Some of the Gadites joined David at the stronghold in the desert. They were warriors who were trained for battle; they carried shields and spears. They were as fierce as lions and could run as quickly as gazelles across the hills.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Ezer was the leader, Obadiah the second in command, Eliab the third,</VERS>\n\t\t\t<VERS vnumber=\"10\"> Mishmannah the fourth, Jeremiah the fifth,</VERS>\n\t\t\t<VERS vnumber=\"11\"> Attai the sixth, Eliel the seventh,</VERS>\n\t\t\t<VERS vnumber=\"12\"> Johanan the eighth, Elzabad the ninth,</VERS>\n\t\t\t<VERS vnumber=\"13\"> Jeremiah the tenth, and Machbannai the eleventh.</VERS>\n\t\t\t<VERS vnumber=\"14\"> These Gadites were military leaders; the least led a hundred men, the greatest a thousand.</VERS>\n\t\t\t<VERS vnumber=\"15\"> They crossed the Jordan River in the first month, when it was overflowing its banks, and routed those living in all the valleys to the east and west.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Some from Benjamin and Judah also came to David's stronghold.</VERS>\n\t\t\t<VERS vnumber=\"17\"> David went out to meet them and said, \"If you come to me in peace and want to help me, then I will make an alliance with you. But if you come to betray me to my enemies when I have not harmed you, may the God of our ancestors take notice and judge!\" </VERS>\n\t\t\t<VERS vnumber=\"18\"> But a spirit empowered Amasai, the leader of the thirty warriors, and he said: \"We are yours, O David! We support you, O son of Jesse! May you greatly prosper! May those who help you prosper! Indeed your God helps you!\" So David accepted them and made them leaders of raiding bands.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Some men from Manasseh joined David when he went with the Philistines to fight against Saul. (But in the end they did not help the Philistines because, after taking counsel, the Philistine lords sent David away, saying: \"It would be disastrous for us if he deserts to his master Saul.\")</VERS>\n\t\t\t<VERS vnumber=\"20\"> When David went to Ziklag, the men of Manasseh who joined him were Adnach, Jozabad, Jediael, Michael, Jozabad, Elihu, and Zillethai, leaders of a thousand soldiers each in the tribe of Manasseh. </VERS>\n\t\t\t<VERS vnumber=\"21\"> They helped David fight against raiding bands, for all of them were warriors and leaders in the army.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Each day men came to help David until his army became very large.</VERS>\n\t\t\t<VERS vnumber=\"23\"> The following is a record of the armed warriors who came with their leaders and joined David in Hebron in order to make David king in Saul's place, in accordance with the LORD's decree:</VERS>\n\t\t\t<VERS vnumber=\"24\"> From Judah came 6,800 trained warriors carrying shields and spears.</VERS>\n\t\t\t<VERS vnumber=\"25\"> From Simeon there were 7,100 warriors.</VERS>\n\t\t\t<VERS vnumber=\"26\"> From Levi there were 4,600.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Jehoiada, the leader of Aaron's descendants, brought 3,700 men with him,</VERS>\n\t\t\t<VERS vnumber=\"28\"> along with Zadok, a young warrior, and twenty-two leaders from his family.</VERS>\n\t\t\t<VERS vnumber=\"29\"> From Benjamin, Saul's tribe, there were 3,000, most of whom, up to that time, had been loyal to Saul.</VERS>\n\t\t\t<VERS vnumber=\"30\"> From Ephraim there were 20,800 warriors, who had brought fame to their families.</VERS>\n\t\t\t<VERS vnumber=\"31\"> From the half tribe of Manasseh there were 18,000 who had been designated by name to come and make David king.</VERS>\n\t\t\t<VERS vnumber=\"32\"> From Issachar there were 200 leaders and all their relatives at their command, they understood the times and knew what Israel should do.</VERS>\n\t\t\t<VERS vnumber=\"33\"> From Zebulun there were 50,000 warriors who were prepared for battle, equipped with all kinds of weapons, and ready to give their undivided loyalty.</VERS>\n\t\t\t<VERS vnumber=\"34\"> From Naphtali there were 1,000 officers, along with 37,000 men carrying shields and spears.</VERS>\n\t\t\t<VERS vnumber=\"35\"> From Dan there were 28,600 men prepared for battle.</VERS>\n\t\t\t<VERS vnumber=\"36\"> From Asher there were 40,000 warriors prepared for battle.</VERS>\n\t\t\t<VERS vnumber=\"37\"> From the other side of the Jordan, from Reuben, Gad, and the half tribe of Manasseh, there were 120,000 men armed with all kinds of weapons.</VERS>\n\t\t\t<VERS vnumber=\"38\"> All these men were warriors who were ready to march. They came to Hebron to make David king over all Israel by acclamation; all the rest of the Israelites also were in agreement that David should become king.</VERS>\n\t\t\t<VERS vnumber=\"39\"> They spent three days feasting there with David, for their relatives had given them provisions. </VERS>\n\t\t\t<VERS vnumber=\"40\"> Also their neighbors, from as far away as Issachar, Zebulun, and Naphtali, were bringing food on donkeys, camels, mules, and oxen. There were large supplies of flour, fig cakes, raisins, wine, olive oil, beef, and lamb, for Israel was celebrating.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"13\">\n\t\t\t<VERS vnumber=\"1\"> David consulted with his military officers, including those who led groups of a thousand and those who led groups of a hundred.</VERS>\n\t\t\t<VERS vnumber=\"2\"> David said to the whole Israelite assembly, \"If you so desire and the LORD our God approves, let's spread the word to our brothers who remain in all the regions of Israel, and to the priests and Levites in their cities, so they may join us. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Let's move the ark of our God back here, for we did not seek his will throughout Saul's reign.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> The whole assembly agreed to do this, for the proposal seemed right to all the people.</VERS>\n\t\t\t<VERS vnumber=\"5\"> So David assembled all Israel from the Shihor River in Egypt to Lebo Hamath, to bring the ark of God from Kiriath Jearim. </VERS>\n\t\t\t<VERS vnumber=\"6\"> David and all Israel went up to Baalah (that is, Kiriath Jearim) in Judah to bring up from there the ark of God the LORD, who sits enthroned between the cherubim, the ark that is called by his name.</VERS>\n\t\t\t<VERS vnumber=\"7\"> They transported the ark on a new cart from the house of Abinadab; Uzzah and Ahio were guiding the cart,</VERS>\n\t\t\t<VERS vnumber=\"8\"> while David and all Israel were energetically celebrating before God, singing and playing various stringed instruments, tambourines, cymbals, and trumpets. </VERS>\n\t\t\t<VERS vnumber=\"9\"> When they arrived at the threshing floor of Kidon, Uzzah reached out his hand to take hold of the ark, because the oxen stumbled.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The LORD was so furious with Uzzah, he killed him, because he reached out his hand and touched the ark. He died right there before God.</VERS>\n\t\t\t<VERS vnumber=\"11\"> David was angry because the LORD attacked Uzzah; so he called that place Perez Uzzah, which remains its name to this very day. </VERS>\n\t\t\t<VERS vnumber=\"12\"> David was afraid of God that day and said, \"How will I ever be able to bring the ark of God up here?\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> So David did not move the ark to the City of David; he left it in the house of Obed-Edom the Gittite. </VERS>\n\t\t\t<VERS vnumber=\"14\"> The ark of God remained in Obed-Edom's house for three months; the LORD blessed Obed-Edom's family and everything that belonged to him.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"14\">\n\t\t\t<VERS vnumber=\"1\"> King Hiram of Tyre sent messengers to David, along with cedar logs, stonemasons, and carpenters to build a palace for him. </VERS>\n\t\t\t<VERS vnumber=\"2\"> David realized that the LORD had established him as king over Israel and that he had elevated his kingdom for the sake of his people Israel.</VERS>\n\t\t\t<VERS vnumber=\"3\"> In Jerusalem David married more wives and fathered more sons and daughters. </VERS>\n\t\t\t<VERS vnumber=\"4\"> These are the names of children born to him in Jerusalem: Shammua, Shobab, Nathan, Solomon,</VERS>\n\t\t\t<VERS vnumber=\"5\"> Ibhar, Elishua, Elpelet,</VERS>\n\t\t\t<VERS vnumber=\"6\"> Nogah, Nepheg, Japhia,</VERS>\n\t\t\t<VERS vnumber=\"7\"> Elishama, Beeliada, and Eliphelet.</VERS>\n\t\t\t<VERS vnumber=\"8\"> When the Philistines heard that David had been anointed king of all Israel, all the Philistines marched up to confront him. When David heard about it, he marched out against them. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Now the Philistines had come and raided the Valley of Rephaim. </VERS>\n\t\t\t<VERS vnumber=\"10\"> David asked God, \"Should I march up against the Philistines? Will you hand them over to me?\" The LORD said to him, \"March up! I will hand them over to you!\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> So they marched against Baal Perazim and David defeated them there. David said, \"Using me as his instrument, God has burst out against my enemies like water bursts out.\" So that place is called Baal Perazim.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The Philistines left their idols there, so David ordered that they be burned.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The Philistines again raided the valley.</VERS>\n\t\t\t<VERS vnumber=\"14\"> So David again asked God what he should do. This time God told him, \"Don't march up after them; circle around them and come against them in front of the trees.</VERS>\n\t\t\t<VERS vnumber=\"15\"> When you hear the sound of marching in the tops of the trees, then attack. For at that moment the LORD is going before you to strike down the army of the Philistines.\" </VERS>\n\t\t\t<VERS vnumber=\"16\"> David did just as God commanded him, and they struck down the Philistine army from Gibeon to Gezer.</VERS>\n\t\t\t<VERS vnumber=\"17\"> So David became famous in all the lands; the LORD caused all the nations to fear him.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"15\">\n\t\t\t<VERS vnumber=\"1\"> David constructed buildings in the City of David; he then prepared a place for the ark of God and pitched a tent for it.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Then David said, \"Only the Levites may carry the ark of God, for the LORD chose them to carry the ark of the LORD and to serve before him perpetually.</VERS>\n\t\t\t<VERS vnumber=\"3\"> David assembled all Israel at Jerusalem to bring the ark of the LORD up to the place he had prepared for it. </VERS>\n\t\t\t<VERS vnumber=\"4\"> David gathered together the descendants of Aaron and the Levites:</VERS>\n\t\t\t<VERS vnumber=\"5\"> From the descendants of Kohath: Uriel the leader and 120 of his relatives.</VERS>\n\t\t\t<VERS vnumber=\"6\"> From the descendants of Merari: Asaiah the leader and 220 of his relatives.</VERS>\n\t\t\t<VERS vnumber=\"7\"> From the descendants of Gershom: Joel the leader and 130 of his relatives.</VERS>\n\t\t\t<VERS vnumber=\"8\"> From the descendants of Elizaphan: Shemaiah the leader and 200 of his relatives.</VERS>\n\t\t\t<VERS vnumber=\"9\"> From the descendants of Hebron: Eliel the leader and 80 of his relatives.</VERS>\n\t\t\t<VERS vnumber=\"10\"> From the descendants of Uzziel: Amminadab the leader and 112 of his relatives.</VERS>\n\t\t\t<VERS vnumber=\"11\"> David summoned the priests Zadok and Abiathar, along with the Levites Uriel, Asaiah, Joel, Shemaiah, Eliel, and Amminadab.</VERS>\n\t\t\t<VERS vnumber=\"12\"> He told them: \"You are the leaders of the Levites' families. You and your relatives must consecrate yourselves and bring the ark of the LORD God of Israel up to the place I have prepared for it.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The first time you did not carry it; that is why the LORD God attacked us, because we did not ask him about the proper way to carry it.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> The priests and Levites consecrated themselves so they could bring up the ark of the LORD God of Israel.</VERS>\n\t\t\t<VERS vnumber=\"15\"> The descendants of Levi carried the ark of God on their shoulders with poles, just as Moses had ordered according to the divine command.</VERS>\n\t\t\t<VERS vnumber=\"16\"> David told the leaders of the Levites to appoint some of their relatives as musicians; they were to play various instruments, including stringed instruments and cymbals, and to sing loudly and joyfully.</VERS>\n\t\t\t<VERS vnumber=\"17\"> So the Levites appointed Heman son of Joel; one of his relatives, Asaph son of Berechiah; one of the descendants of Merari, Ethan son of Kushaiah; </VERS>\n\t\t\t<VERS vnumber=\"18\"> along with some of their relatives who were second in rank, including Zechariah, Jaaziel, Shemiramoth, Jehiel, Unni, Eliab, Benaiah, Maaseiah, Mattithiah, Eliphelehu, Mikneiah, Obed-Edom, and Jeiel, the gatekeepers.</VERS>\n\t\t\t<VERS vnumber=\"19\"> The musicians Heman, Asaph, and Ethan were to sound the bronze cymbals;</VERS>\n\t\t\t<VERS vnumber=\"20\"> Zechariah, Aziel, Shemiramoth, Jehiel, Unni, Eliab, Maaseiah, and Benaiah were to play the harps according to the alamoth style;</VERS>\n\t\t\t<VERS vnumber=\"21\"> Mattithiah, Eliphelehu, Mikneiah, Obed-Edom, Jeiel, and Azaziah were to play the lyres according to the sheminith style, as led by the director; </VERS>\n\t\t\t<VERS vnumber=\"22\"> Kenaniah, the leader of the Levites, was in charge of transport, for he was well-informed on this matter;</VERS>\n\t\t\t<VERS vnumber=\"23\"> Berechiah and Elkanah were guardians of the ark; </VERS>\n\t\t\t<VERS vnumber=\"24\"> Shebaniah, Joshaphat, Nethanel, Amasai, Zechariah, Benaiah, and Eliezer the priests were to blow the trumpets before the ark of God; Obed-Edom and Jehiel were also guardians of the ark.</VERS>\n\t\t\t<VERS vnumber=\"25\"> So David, the leaders of Israel, and the commanders of units of a thousand went to bring up the ark of the LORD's covenant from the house of Obed-Edom with celebration.</VERS>\n\t\t\t<VERS vnumber=\"26\"> When God helped the Levites who were carrying the ark of the LORD's covenant, they sacrificed seven bulls and seven rams.</VERS>\n\t\t\t<VERS vnumber=\"27\"> David was wrapped in a linen robe, as were all the Levites carrying the ark, the musicians, and Kenaniah the supervisor of transport and the musicians; David also wore a linen ephod.</VERS>\n\t\t\t<VERS vnumber=\"28\"> All Israel brought up the ark of the LORD's covenant; they were shouting, blowing trumpets, sounding cymbals, and playing stringed instruments.</VERS>\n\t\t\t<VERS vnumber=\"29\"> As the ark of the LORD's covenant entered the City of David, Michal, Saul's daughter, looked out the window. When she saw King David jumping and celebrating, she despised him.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"16\">\n\t\t\t<VERS vnumber=\"1\"> They brought the ark of God and put it in the middle of the tent David had pitched for it. Then they offered burnt sacrifices and peace offerings before God. </VERS>\n\t\t\t<VERS vnumber=\"2\"> When David finished offering burnt sacrifices and peace offerings, he pronounced a blessing over the people in the LORD's name.</VERS>\n\t\t\t<VERS vnumber=\"3\"> He then handed out to each Israelite man and woman a loaf of bread, a date cake, and a raisin cake.</VERS>\n\t\t\t<VERS vnumber=\"4\"> He appointed some of the Levites to serve before the ark of the LORD, to offer prayers, songs of thanks, and hymns to the LORD God of Israel.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Asaph was the leader and Zechariah second in command, followed by Jeiel, Shemiramoth, Jehiel, Mattithiah, Eliab, Benaiah, Obed-Edom, and Jeiel. They were to play stringed instruments; Asaph was to sound the cymbals;</VERS>\n\t\t\t<VERS vnumber=\"6\"> and the priests Benaiah and Jahaziel were to blow trumpets regularly before the ark of God's covenant.</VERS>\n\t\t\t<VERS vnumber=\"7\"> That day David first gave to Asaph and his colleagues this song of thanks to the LORD:</VERS>\n\t\t\t<VERS vnumber=\"8\"> Give thanks to the LORD! Call on his name! Make known his accomplishments among the nations!</VERS>\n\t\t\t<VERS vnumber=\"9\"> Sing to him! Make music to him! Tell about all his miraculous deeds!</VERS>\n\t\t\t<VERS vnumber=\"10\"> Boast about his holy name! Let the hearts of those who seek the LORD rejoice!</VERS>\n\t\t\t<VERS vnumber=\"11\"> Seek the LORD and the strength he gives! Seek his presence continually!</VERS>\n\t\t\t<VERS vnumber=\"12\"> Recall the miraculous deeds he performed, his mighty acts and the judgments he decreed,</VERS>\n\t\t\t<VERS vnumber=\"13\"> O children of Israel, God's servant, you descendants of Jacob, God's chosen ones!</VERS>\n\t\t\t<VERS vnumber=\"14\"> He is the LORD our God; he carries out judgment throughout the earth.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Remember continually his covenantal decree, the promise he made to a thousand generations,</VERS>\n\t\t\t<VERS vnumber=\"16\"> the promise he made to Abraham, the promise he made by oath to Isaac!</VERS>\n\t\t\t<VERS vnumber=\"17\"> He gave it to Jacob as a decree, to Israel as a lasting promise,</VERS>\n\t\t\t<VERS vnumber=\"18\"> saying, \"To you I will give the land of Canaan as the portion of your inheritance.\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> When they were few in number, just a very few, and foreign residents within it,</VERS>\n\t\t\t<VERS vnumber=\"20\"> they wandered from nation to nation, and from one kingdom to another.</VERS>\n\t\t\t<VERS vnumber=\"21\"> He let no one oppress them, he disciplined kings for their sake,</VERS>\n\t\t\t<VERS vnumber=\"22\"> saying, \"Don't touch my anointed ones! Don't harm my prophets!\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> Sing to the LORD, all the earth! Announce every day how he delivers!</VERS>\n\t\t\t<VERS vnumber=\"24\"> Tell the nations about his splendor, tell all the nations about his miraculous deeds!</VERS>\n\t\t\t<VERS vnumber=\"25\"> For the LORD is great and certainly worthy of praise, he is more awesome than all gods.</VERS>\n\t\t\t<VERS vnumber=\"26\"> For all the gods of the nations are worthless, but the LORD made the heavens.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Majestic splendor emanates from him, he is the source of strength and joy.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Ascribe to the LORD, O families of the nations, ascribe to the LORD splendor and strength!</VERS>\n\t\t\t<VERS vnumber=\"29\"> Ascribe to the LORD the splendor he deserves! Bring an offering and enter his presence! Worship the LORD in holy attire!</VERS>\n\t\t\t<VERS vnumber=\"30\"> Tremble before him, all the earth! The world is established, it cannot be moved.</VERS>\n\t\t\t<VERS vnumber=\"31\"> Let the heavens rejoice, and the earth be happy! Let the nations say, 'The LORD reigns!'</VERS>\n\t\t\t<VERS vnumber=\"32\"> Let the sea and everything in it shout! Let the fields and everything in them celebrate!</VERS>\n\t\t\t<VERS vnumber=\"33\"> Then let the trees of the forest shout with joy before the LORD, for he comes to judge the earth!</VERS>\n\t\t\t<VERS vnumber=\"34\"> Give thanks to the LORD, for he is good and his loyal love endures.</VERS>\n\t\t\t<VERS vnumber=\"35\"> Say this prayer: \"Deliver us, O God who delivers us! Gather us! Rescue us from the nations! Then we will give thanks to your holy name, and boast about your praiseworthy deeds.\"</VERS>\n\t\t\t<VERS vnumber=\"36\"> May the LORD God of Israel be praised, in the future and forevermore. Then all the people said, \"We agree! Praise the LORD!\"</VERS>\n\t\t\t<VERS vnumber=\"37\"> David left Asaph and his colleagues there before the ark of the LORD's covenant to serve before the ark regularly and fulfill each day's requirements,</VERS>\n\t\t\t<VERS vnumber=\"38\"> including Obed-Edom and sixty-eight colleagues. Obed-Edom son of Jeduthun and Hosah were gatekeepers.</VERS>\n\t\t\t<VERS vnumber=\"39\"> Zadok the priest and his fellow priests served before the LORD's tabernacle at the worship center in Gibeon, </VERS>\n\t\t\t<VERS vnumber=\"40\"> regularly offering burnt sacrifices to the LORD on the altar for burnt sacrifice, morning and evening, according to what is prescribed in the law of the LORD which he charged Israel to observe.</VERS>\n\t\t\t<VERS vnumber=\"41\"> Joining them were Heman, Jeduthun, and the rest of those chosen and designated by name to give thanks to the LORD. (For his loyal love endures!)</VERS>\n\t\t\t<VERS vnumber=\"42\"> Heman and Jeduthun were in charge of the music, including the trumpets, cymbals, and the other musical instruments used in praising God. The sons of Jeduthun guarded the entrance.</VERS>\n\t\t\t<VERS vnumber=\"43\"> Then all the people returned to their homes, and David went to pronounce a blessing on his family.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"17\">\n\t\t\t<VERS vnumber=\"1\"> When David had settled into his palace, he said to Nathan the prophet, \"Look, I am living in a palace made from cedar, while the ark of the LORD's covenant is under a tent.\"</VERS>\n\t\t\t<VERS vnumber=\"2\"> Nathan said to David, \"You should do whatever you have in mind, for God is with you.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> That night God told Nathan the prophet,</VERS>\n\t\t\t<VERS vnumber=\"4\"> \"Go, tell my servant David: 'This is what the LORD says: \"You must not build me a house in which to live.</VERS>\n\t\t\t<VERS vnumber=\"5\"> For I have not lived in a house from the time I brought Israel up from Egypt to the present day. I have lived in a tent that has been in various places.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Wherever I moved throughout Israel, I did not say to any of the leaders whom I appointed to care for my people Israel, 'Why have you not built me a house made from cedar?'\"'</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"So now, say this to my servant David: 'This is what the LORD who commands armies says: \"I took you from the pasture and from your work as a shepherd to make you a leader of my people Israel.</VERS>\n\t\t\t<VERS vnumber=\"8\"> I was with you wherever you went and I defeated all your enemies before you. Now I will make you as famous as the great men of the earth.</VERS>\n\t\t\t<VERS vnumber=\"9\"> I will establish a place for my people Israel and settle them there; they will live there and not be disturbed anymore. Violent men will not oppress them again, as they did in the beginning</VERS>\n\t\t\t<VERS vnumber=\"10\"> and during the time when I appointed judges to lead my people Israel. I will subdue all your enemies. \"'\"I declare to you that the LORD will build a dynastic house for you! </VERS>\n\t\t\t<VERS vnumber=\"11\"> When the time comes for you to die, I will raise up your descendant, one of your own sons, to succeed you, and I will establish his kingdom. </VERS>\n\t\t\t<VERS vnumber=\"12\"> He will build me a house, and I will make his dynasty permanent.</VERS>\n\t\t\t<VERS vnumber=\"13\"> I will become his father and he will become my son. I will never withhold my loyal love from him, as I withheld it from the one who ruled before you.</VERS>\n\t\t\t<VERS vnumber=\"14\"> I will put him in permanent charge of my house and my kingdom; his dynasty will be permanent.\"'\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> Nathan told David all these words that were revealed to him.</VERS>\n\t\t\t<VERS vnumber=\"16\"> David went in, sat before the LORD, and said: \"Who am I, O LORD God, and what is my family, that you should have brought me to this point? </VERS>\n\t\t\t<VERS vnumber=\"17\"> And you did not stop there, O God! You have also spoken about the future of your servant's family. You have revealed to me what men long to know, O LORD God. </VERS>\n\t\t\t<VERS vnumber=\"18\"> What more can David say to you? You have honored your servant; you have given your servant special recognition.</VERS>\n\t\t\t<VERS vnumber=\"19\"> O LORD, for the sake of your servant and according to your will, you have done this great thing in order to reveal your greatness.</VERS>\n\t\t\t<VERS vnumber=\"20\"> O LORD, there is none like you; there is no God besides you! What we heard is true!</VERS>\n\t\t\t<VERS vnumber=\"21\"> And who is like your people, Israel, a unique nation in the earth? Their God went to claim a nation for himself! You made a name for yourself by doing great and awesome deeds when you drove out nations before your people whom you had delivered from the Egyptian empire and its gods.</VERS>\n\t\t\t<VERS vnumber=\"22\"> You made Israel your very own nation for all time. You, O LORD, became their God. </VERS>\n\t\t\t<VERS vnumber=\"23\"> So now, O LORD, may the promise you made about your servant and his family become a permanent reality! Do as you promised,</VERS>\n\t\t\t<VERS vnumber=\"24\"> so it may become a reality and you may gain lasting fame, as people say, 'The LORD who commands armies is the God of Israel.' David's dynasty will be established before you, </VERS>\n\t\t\t<VERS vnumber=\"25\"> for you, my God, have revealed to your servant that you will build a dynasty for him. That is why your servant has had the courage to pray to you.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Now, O LORD, you are the true God; you have made this good promise to your servant.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Now you are willing to bless your servant's dynasty so that it may stand permanently before you, for you, O LORD, have blessed it and it will be blessed from now on into the future.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"18\">\n\t\t\t<VERS vnumber=\"1\"> Later David defeated the Philistines and subdued them. He took Gath and its surrounding towns away from the Philistines.</VERS>\n\t\t\t<VERS vnumber=\"2\"> He defeated the Moabites; the Moabites became David's subjects and brought tribute.</VERS>\n\t\t\t<VERS vnumber=\"3\"> David defeated King Hadadezer of Zobah as far as Hamath, when he went to extend his authority to the Euphrates River.</VERS>\n\t\t\t<VERS vnumber=\"4\"> David seized from him 1,000 chariots, 7,000 charioteers, and 20,000 infantrymen. David cut the hamstrings of all but a hundred of Hadadezer's chariot horses.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The Arameans of Damascus came to help King Hadadezer of Zobah, but David killed 22,000 of the Arameans.</VERS>\n\t\t\t<VERS vnumber=\"6\"> David placed garrisons in the territory of the Arameans of Damascus; the Arameans became David's subjects and brought tribute. The LORD protected David wherever he campaigned.</VERS>\n\t\t\t<VERS vnumber=\"7\"> David took the golden shields which Hadadezer's servants had carried and brought them to Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"8\"> From Tibhath and Kun, Hadadezer's cities, David took a great deal of bronze. (Solomon used it to make the big bronze basin called \"The Sea,\" the pillars, and other bronze items.</VERS>\n\t\t\t<VERS vnumber=\"9\"> When King Tou of Hamath heard that David had defeated the entire army of King Hadadezer of Zobah, </VERS>\n\t\t\t<VERS vnumber=\"10\"> he sent his son Hadoram to King David to extend his best wishes and to pronounce a blessing on him for his victory over Hadadezer, for Tou had been at war with Hadadezer. He also sent various items made of gold, silver, and bronze.</VERS>\n\t\t\t<VERS vnumber=\"11\"> King David dedicated these things to the LORD, along with the silver and gold which he had carried off from all the nations, including Edom, Moab, the Ammonites, the Philistines, and Amalek.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Abishai son of Zeruiah killed 18,000 Edomites in the Valley of Salt. </VERS>\n\t\t\t<VERS vnumber=\"13\"> He placed garrisons in Edom, and all the Edomites became David's subjects. The LORD protected David wherever he campaigned.</VERS>\n\t\t\t<VERS vnumber=\"14\"> David reigned over all Israel; he guaranteed justice for all his people.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Joab son of Zeruiah was commanding general of the army; Jehoshaphat son of Ahilud was secretary; </VERS>\n\t\t\t<VERS vnumber=\"16\"> Zadok son of Ahitub and Abimelech son of Abiathar were priests; Shavsha was scribe; </VERS>\n\t\t\t<VERS vnumber=\"17\"> Benaiah son of Jehoiada supervised the Kerethites and Pelethites; and David's sons were the king's leading officials.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"19\">\n\t\t\t<VERS vnumber=\"1\"> Later King Nahash of the Ammonites died and his son succeeded him.</VERS>\n\t\t\t<VERS vnumber=\"2\"> David said, \"I will express my loyalty to Hanun son of Nahash, for his father was loyal to me.\" So David sent messengers to express his sympathy over his father's death. When David's servants entered Ammonite territory to visit Hanun and express the king's sympathy,</VERS>\n\t\t\t<VERS vnumber=\"3\"> the Ammonite officials said to Hanun, \"Do you really think David is trying to honor your father by sending these messengers to express his sympathy? No, his servants have come to you so they can get information and spy out the land!\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> So Hanun seized David's servants and shaved their beards off. He cut off the lower part of their robes so that their buttocks were exposed and then sent them away. </VERS>\n\t\t\t<VERS vnumber=\"5\"> Messengers came and told David what had happened to the men, so he summoned them, for the men were thoroughly humiliated. The king said, \"Stay in Jericho until your beards grow again; then you may come back.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> When the Ammonites realized that David was disgusted with them, Hanun and the Ammonites sent 1,000 talents of silver to hire chariots and charioteers from Aram Naharaim, Aram Maacah, and Zobah.</VERS>\n\t\t\t<VERS vnumber=\"7\"> They hired 32,000 chariots, along with the king of Maacah and his army, who came and camped in front of Medeba. The Ammonites also assembled from their cities and marched out to do battle.</VERS>\n\t\t\t<VERS vnumber=\"8\"> When David heard the news, he sent Joab and the entire army to meet them.</VERS>\n\t\t\t<VERS vnumber=\"9\"> The Ammonites marched out and were deployed for battle at the entrance to the city, while the kings who had come were by themselves in the field.</VERS>\n\t\t\t<VERS vnumber=\"10\"> When Joab saw that the battle would be fought on two fronts, he chose some of Israel's best men and deployed them against the Arameans.</VERS>\n\t\t\t<VERS vnumber=\"11\"> He put his brother Abishai in charge of the rest of the army and they were deployed against the Ammonites.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Joab said, \"If the Arameans start to overpower me, you come to my rescue. If the Ammonites start to overpower you, I will come to your rescue.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Be strong! Let's fight bravely for the sake of our people and the cities of our God! The LORD will do what he decides is best!\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> So Joab and his men marched toward the Arameans to do battle, and they fled before him. </VERS>\n\t\t\t<VERS vnumber=\"15\"> When the Ammonites saw the Arameans flee, they fled before Joab's brother Abishai and withdrew into the city. Joab went back to Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"16\"> When the Arameans realized they had been defeated by Israel, they sent for reinforcements from beyond the Euphrates River, led by Shophach the commanding general of Hadadezer's army.</VERS>\n\t\t\t<VERS vnumber=\"17\"> When David was informed, he gathered all Israel, crossed the Jordan River, and marched against them. David deployed his army against the Arameans for battle and they fought against him.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The Arameans fled before Israel. David killed 7,000 Aramean charioteers and 40,000 infantrymen; he also killed Shophach the commanding general. </VERS>\n\t\t\t<VERS vnumber=\"19\"> When Hadadezer's subjects saw they were defeated by Israel, they made peace with David and became his subjects. The Arameans were no longer willing to help the Ammonites.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"20\">\n\t\t\t<VERS vnumber=\"1\"> In the spring, at the time when kings normally conduct wars, Joab led the army into battle and devastated the land of the Ammonites. He went and besieged Rabbah, while David stayed in Jerusalem. Joab defeated Rabbah and tore it down.</VERS>\n\t\t\t<VERS vnumber=\"2\"> David took the crown from the head of their king and wore it (its weight was a talent of gold and it was set with precious stones). He took a large amount of plunder from the city. </VERS>\n\t\t\t<VERS vnumber=\"3\"> He removed the city's residents and made them do hard labor with saws, iron picks, and axes. This was his policy with all the Ammonite cities. Then David and all the army returned to Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Later there was a battle with the Philistines in Gezer. At that time Sibbekai the Hushathite killed Sippai, one of the descendants of the Rephaim, and the Philistines were subdued.</VERS>\n\t\t\t<VERS vnumber=\"5\"> There was another battle with the Philistines in which Elhanan son of Jair the Bethlehemite killed the brother of Goliath the Gittite, whose spear had a shaft as big as the crossbeam of a weaver's loom.</VERS>\n\t\t\t<VERS vnumber=\"6\"> In a battle in Gath there was a large man who had six fingers on each hand and six toes on each foot, twenty-four in all! He too was a descendant of Rapha.</VERS>\n\t\t\t<VERS vnumber=\"7\"> When he taunted Israel, Jonathan son of Shimea, David's brother, killed him.</VERS>\n\t\t\t<VERS vnumber=\"8\"> These were the descendants of Rapha who lived in Gath; they were killed by the hand of David and his soldiers.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"21\">\n\t\t\t<VERS vnumber=\"1\"> An adversary opposed Israel, inciting David to count how many warriors Israel had.</VERS>\n\t\t\t<VERS vnumber=\"2\"> David told Joab and the leaders of the army, \"Go, count the number of warriors from Beer Sheba to Dan. Then bring back a report to me so I may know how many we have.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> Joab replied, \"May the LORD make his army a hundred times larger! My master, O king, do not all of them serve my master? Why does my master want to do this? Why bring judgment on Israel?\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> But the king's edict stood, despite Joab's objections. So Joab left and traveled throughout Israel before returning to Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Joab reported to David the number of warriors. In all Israel there were 1,100,000 sword-wielding soldiers; Judah alone had 470,000 sword-wielding soldiers.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Now Joab did not number Levi and Benjamin, for the king's edict disgusted him. </VERS>\n\t\t\t<VERS vnumber=\"7\"> God was also offended by it, so he attacked Israel.</VERS>\n\t\t\t<VERS vnumber=\"8\"> David said to God, \"I have sinned greatly by doing this! Now, please remove the guilt of your servant, for I have acted very foolishly.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> The LORD told Gad, David's prophet,</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"Go, tell David, 'This is what the LORD says: \"I am offering you three forms of judgment from which to choose. Pick one of them.\"'\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> Gad went to David and told him, \"This is what the LORD says: 'Pick one of these:</VERS>\n\t\t\t<VERS vnumber=\"12\"> three years of famine, or three months being chased by your enemies and struck down by their swords, or three days being struck down by the LORD, during which a plague will invade the land and the LORD's messenger will destroy throughout Israel's territory.' Now, decide what I should tell the one who sent me.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> David said to Gad, \"I am very upset! I prefer to be attacked by the LORD, for his mercy is very great; I do not want to be attacked by men!\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> So the LORD sent a plague through Israel, and 70,000 Israelite men died.</VERS>\n\t\t\t<VERS vnumber=\"15\"> God sent an angel to ravage Jerusalem. As he was doing so, the LORD watched and relented from his judgment. He told the angel who was destroying, \"That's enough! Stop now!\" Now the LORD's angel was standing near the threshing floor of Ornan the Jebusite.</VERS>\n\t\t\t<VERS vnumber=\"16\"> David looked up and saw the LORD's messenger standing between the earth and sky with his sword drawn and in his hand, stretched out over Jerusalem. David and the leaders, covered with sackcloth, threw themselves down with their faces to the ground.</VERS>\n\t\t\t<VERS vnumber=\"17\"> David said to God, \"Was I not the one who decided to number the army? I am the one who sinned and committed this awful deed! As for these sheep, what have they done? O LORD my God, attack me and my family, but remove the plague from your people!\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> So the LORD's messenger told Gad to instruct David to go up and build an altar for the LORD on the threshing floor of Ornan the Jebusite. </VERS>\n\t\t\t<VERS vnumber=\"19\"> So David went up as Gad instructed him to do in the name of the LORD.</VERS>\n\t\t\t<VERS vnumber=\"20\"> While Ornan was threshing wheat, he turned and saw the messenger, and he and his four sons hid themselves.</VERS>\n\t\t\t<VERS vnumber=\"21\"> When David came to Ornan, Ornan looked and saw David; he came out from the threshing floor and bowed to David with his face to the ground. </VERS>\n\t\t\t<VERS vnumber=\"22\"> David said to Ornan, \"Sell me the threshing floor so I can build on it an altar for the LORD, I'll pay top price, so that the plague may be removed from the people.\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> Ornan told David, \"You can have it! My master, the king, may do what he wants. Look, I am giving you the oxen for burnt sacrifices, the threshing sledges for wood, and the wheat for an offering. I give it all to you.\" </VERS>\n\t\t\t<VERS vnumber=\"24\"> King David replied to Ornan, \"No, I insist on buying it for top price. I will not offer to the LORD what belongs to you or offer a burnt sacrifice that cost me nothing.</VERS>\n\t\t\t<VERS vnumber=\"25\"> So David bought the place from Ornan for 600 pieces of gold.</VERS>\n\t\t\t<VERS vnumber=\"26\"> David built there an altar to the LORD and offered burnt sacrifices and peace offerings. He called out to the LORD, and the LORD responded by sending fire from the sky and consuming the burnt sacrifice on the altar. </VERS>\n\t\t\t<VERS vnumber=\"27\"> The LORD ordered the messenger to put his sword back into its sheath.</VERS>\n\t\t\t<VERS vnumber=\"28\"> At that time, when David saw that the LORD responded to him at the threshing floor of Ornan the Jebusite, he sacrificed there.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Now the LORD's tabernacle (which Moses had made in the wilderness) and the altar for burnt sacrifices were at that time at the worship center in Gibeon. </VERS>\n\t\t\t<VERS vnumber=\"30\"> But David could not go before it to seek God's will, for he was afraid of the sword of the LORD's messenger.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"22\">\n\t\t\t<VERS vnumber=\"1\"> David then said, \"This is the place where the temple of the LORD God will be, along with the altar for burnt sacrifices for Israel.\"</VERS>\n\t\t\t<VERS vnumber=\"2\"> David ordered the resident foreigners in the land of Israel to be called together. He appointed some of them to be stonecutters to chisel stones for the building of God's temple.</VERS>\n\t\t\t<VERS vnumber=\"3\"> David supplied a large amount of iron for the nails of the doors of the gates and for braces, more bronze than could be weighed,</VERS>\n\t\t\t<VERS vnumber=\"4\"> and more cedar logs than could be counted. (The Sidonians and Tyrians had brought a large amount of cedar logs to David.)</VERS>\n\t\t\t<VERS vnumber=\"5\"> David said, \"My son Solomon is just an inexperienced young man, and the temple to be built for the LORD must be especially magnificent so it will become famous and be considered splendid by all the nations. Therefore I will make preparations for its construction.\" So David made extensive preparations before he died.</VERS>\n\t\t\t<VERS vnumber=\"6\"> He summoned his son Solomon and charged him to build a temple for the LORD God of Israel.</VERS>\n\t\t\t<VERS vnumber=\"7\"> David said to Solomon: \"My son, I really wanted to build a temple to honor the LORD my God. </VERS>\n\t\t\t<VERS vnumber=\"8\"> But the LORD said to me: 'You have spilled a great deal of blood and fought many battles. You must not build a temple to honor me, for you have spilled a great deal of blood on the ground before me. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Look, you will have a son, who will be a peaceful man. I will give him rest from all his enemies on every side. Indeed, Solomon will be his name; I will give Israel peace and quiet during his reign.</VERS>\n\t\t\t<VERS vnumber=\"10\"> He will build a temple to honor me; he will become my son, and I will become his father. I will grant to his dynasty permanent rule over Israel.'</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"Now, my son, may the LORD be with you! May you succeed and build a temple for the LORD your God, just as he announced you would.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Only may the LORD give you insight and understanding when he places you in charge of Israel, so you may obey the law of the LORD your God. </VERS>\n\t\t\t<VERS vnumber=\"13\"> Then you will succeed, if you carefully obey the rules and regulations which the LORD ordered Moses to give to Israel. Be strong and brave! Don't be afraid and don't panic!</VERS>\n\t\t\t<VERS vnumber=\"14\"> Now, look, I have made every effort to supply what is needed to build the LORD's temple. I have stored up 100,000 talents of gold, 1,000,000 talents of silver, and so much bronze and iron it cannot be weighed, as well as wood and stones. Feel free to add more!</VERS>\n\t\t\t<VERS vnumber=\"15\"> You also have available many workers, including stonecutters, masons, carpenters, and an innumerable array of workers who are skilled </VERS>\n\t\t\t<VERS vnumber=\"16\"> in using gold, silver, bronze, and iron. Get up and begin the work! May the LORD be with you!\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> David ordered all the officials of Israel to support his son Solomon. </VERS>\n\t\t\t<VERS vnumber=\"18\"> He told them, \"The LORD your God is with you! He has made you secure on every side, for he handed over to me the inhabitants of the region and the region is subdued before the LORD and his people. </VERS>\n\t\t\t<VERS vnumber=\"19\"> Now seek the LORD your God wholeheartedly and with your entire being! Get up and build the sanctuary of the LORD God! Then you can bring the ark of the LORD's covenant and the holy items dedicated to God's service into the temple that is built to honor the LORD.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"23\">\n\t\t\t<VERS vnumber=\"1\"> When David was old and approaching the end of his life, he made his son Solomon king over Israel.</VERS>\n\t\t\t<VERS vnumber=\"2\"> David assembled all the leaders of Israel, along with the priests and the Levites. </VERS>\n\t\t\t<VERS vnumber=\"3\"> The Levites who were thirty years old and up were counted; there were 38,000 men.</VERS>\n\t\t\t<VERS vnumber=\"4\"> David said, \"Of these, 24,000 are to direct the work of the LORD's temple; 6,000 are to be officials and judges; </VERS>\n\t\t\t<VERS vnumber=\"5\"> 4,000 are to be gatekeepers; and 4,000 are to praise the LORD with the instruments I supplied for worship.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> David divided them into groups corresponding to the sons of Levi: Gershon, Kohath, and Merari.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The Gershonites included Ladan and Shimei.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The sons of Ladan: Jehiel the oldest, Zetham, and Joel, three in all.</VERS>\n\t\t\t<VERS vnumber=\"9\"> The sons of Shimei: Shelomoth, Haziel, and Haran, three in all. These were the leaders of the family of Ladan.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The sons of Shimei: Jahath, Zina, Jeush, and Beriah. These were Shimei's sons, four in all.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Jahath was the oldest and Zizah the second oldest. Jeush and Beriah did not have many sons, so they were considered one family with one responsibility.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The sons of Kohath: Amram, Izhar, Hebron, and Uzziel, four in all.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The sons of Amram: Aaron and Moses. Aaron and his descendants were chosen on a permanent basis to consecrate the most holy items, to offer sacrifices before the LORD, to serve him, and to praise his name.</VERS>\n\t\t\t<VERS vnumber=\"14\"> The descendants of Moses the man of God were considered Levites.</VERS>\n\t\t\t<VERS vnumber=\"15\"> The sons of Moses: Gershom and Eliezer.</VERS>\n\t\t\t<VERS vnumber=\"16\"> The son of Gershom: Shebuel the oldest.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The son of Eliezer was Rehabiah, the oldest. Eliezer had no other sons, but Rehabiah had many descendants.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The son of Izhar: Shelomith the oldest.</VERS>\n\t\t\t<VERS vnumber=\"19\"> The sons of Hebron: Jeriah the oldest, Amariah the second, Jahaziel the third, and Jekameam the fourth.</VERS>\n\t\t\t<VERS vnumber=\"20\"> The sons of Uzziel: Micah the oldest, and Isshiah the second.</VERS>\n\t\t\t<VERS vnumber=\"21\"> The sons of Merari: Mahli and Mushi. The sons of Mahli: Eleazar and Kish.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Eleazar died without having sons; he had only daughters. The sons of Kish, their cousins, married them.</VERS>\n\t\t\t<VERS vnumber=\"23\"> The sons of Mushi: Mahli, Eder, and Jeremoth, three in all.</VERS>\n\t\t\t<VERS vnumber=\"24\"> These were the descendants of Levi according to their families, that is, the leaders of families as counted and individually listed who carried out assigned tasks in the LORD's temple and were twenty years old and up.</VERS>\n\t\t\t<VERS vnumber=\"25\"> For David said, \"The LORD God of Israel has given his people rest and has permanently settled in Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"26\"> So the Levites no longer need to carry the tabernacle or any of the items used in its service.\"</VERS>\n\t\t\t<VERS vnumber=\"27\"> According to David's final instructions, the Levites twenty years old and up were counted.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Their job was to help Aaron's descendants in the service of the LORD's temple. They were to take care of the courtyards, the rooms, ceremonial purification of all holy items, and other jobs related to the service of God's temple.</VERS>\n\t\t\t<VERS vnumber=\"29\"> They also took care of the bread that is displayed, the flour for offerings, the unleavened wafers, the round cakes, the mixing, and all the measuring.</VERS>\n\t\t\t<VERS vnumber=\"30\"> They also stood in a designated place every morning and offered thanks and praise to the LORD. They also did this in the evening </VERS>\n\t\t\t<VERS vnumber=\"31\"> and whenever burnt sacrifices were offered to the LORD on the Sabbath and at new moon festivals and assemblies. A designated number were to serve before the LORD regularly in accordance with regulations.</VERS>\n\t\t\t<VERS vnumber=\"32\"> They were in charge of the meeting tent and the holy place, and helped their relatives, the descendants of Aaron, in the service of the LORD's temple.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"24\">\n\t\t\t<VERS vnumber=\"1\"> The divisions of Aaron's descendants were as follows: The sons of Aaron: Nadab, Abihu, Eleazar, and Ithamar.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Nadab and Abihu died before their father did; they had no sons. Eleazar and Ithamar served as priests.</VERS>\n\t\t\t<VERS vnumber=\"3\"> David, Zadok (a descendant of Eleazar), and Ahimelech (a descendant of Ithamar) divided them into groups to carry out their assigned responsibilities.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The descendants of Eleazar had more leaders than the descendants of Ithamar, so they divided them up accordingly; the descendants of Eleazar had sixteen leaders, while the descendants of Ithamar had eight.</VERS>\n\t\t\t<VERS vnumber=\"5\"> They divided them by lots, for there were officials of the holy place and officials designated by God among the descendants of both Eleazar and Ithamar.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The scribe Shemaiah son of Nethanel, a Levite, wrote down their names before the king, the officials, Zadok the priest, Ahimelech son of Abiathar, and the leaders of the priestly and Levite families. One family was drawn by lot from Eleazar, and then the next from Ithamar.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The first lot went to Jehoiarib, the second to Jedaiah,</VERS>\n\t\t\t<VERS vnumber=\"8\"> the third to Harim, the fourth to Seorim,</VERS>\n\t\t\t<VERS vnumber=\"9\"> the fifth to Malkijah, the sixth to Mijamin,</VERS>\n\t\t\t<VERS vnumber=\"10\"> the seventh to Hakkoz, the eighth to Abijah,</VERS>\n\t\t\t<VERS vnumber=\"11\"> the ninth to Jeshua, the tenth to Shecaniah,</VERS>\n\t\t\t<VERS vnumber=\"12\"> the eleventh to Eliashib, the twelfth to Jakim,</VERS>\n\t\t\t<VERS vnumber=\"13\"> the thirteenth to Huppah, the fourteenth to Jeshebeab,</VERS>\n\t\t\t<VERS vnumber=\"14\"> the fifteenth to Bilgah, the sixteenth to Immer,</VERS>\n\t\t\t<VERS vnumber=\"15\"> the seventeenth to Hezir, the eighteenth to Happizzez,</VERS>\n\t\t\t<VERS vnumber=\"16\"> the nineteenth to Pethahiah, the twentieth to Jehezkel,</VERS>\n\t\t\t<VERS vnumber=\"17\"> the twenty-first to Jakin, the twenty-second to Gamul,</VERS>\n\t\t\t<VERS vnumber=\"18\"> the twenty-third to Delaiah, the twenty-fourth to Maaziah.</VERS>\n\t\t\t<VERS vnumber=\"19\"> This was the order in which they carried out their assigned responsibilities when they entered the LORD's temple, according to the regulations given them by their ancestor Aaron, just as the LORD God of Israel had instructed him.</VERS>\n\t\t\t<VERS vnumber=\"20\"> The rest of the Levites included: Shubael from the sons of Amram, Jehdeiah from the sons of Shubael,</VERS>\n\t\t\t<VERS vnumber=\"21\"> the firstborn Isshiah from Rehabiah and the sons of Rehabiah,</VERS>\n\t\t\t<VERS vnumber=\"22\"> Shelomoth from the Izharites, Jahath from the sons of Shelomoth.</VERS>\n\t\t\t<VERS vnumber=\"23\"> The sons of Hebron: Jeriah, Amariah the second, Jahaziel the third, and Jekameam the fourth.</VERS>\n\t\t\t<VERS vnumber=\"24\"> The son of Uzziel: Micah; Shamir from the sons of Micah.</VERS>\n\t\t\t<VERS vnumber=\"25\"> The brother of Micah: Isshiah. Zechariah from the sons of Isshiah.</VERS>\n\t\t\t<VERS vnumber=\"26\"> The sons of Merari: Mahli and Mushi. The son of Jaaziah: Beno.</VERS>\n\t\t\t<VERS vnumber=\"27\"> The sons of Merari, from Jaaziah: Beno, Shoham, Zaccur, and Ibri.</VERS>\n\t\t\t<VERS vnumber=\"28\"> From Mahli: Eleazar, who had no sons.</VERS>\n\t\t\t<VERS vnumber=\"29\"> From Kish: Jerahmeel.</VERS>\n\t\t\t<VERS vnumber=\"30\"> The sons of Mushi: Mahli, Eder, and Jerimoth. These were the Levites, listed by their families.</VERS>\n\t\t\t<VERS vnumber=\"31\"> Just like their relatives, the descendants of Aaron, they also cast lots before King David, Zadok, Ahimelech, the leaders of families, the priests, and the Levites. The families of the oldest son cast lots along with the those of the youngest.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"25\">\n\t\t\t<VERS vnumber=\"1\"> David and the army officers selected some of the sons of Asaph, Heman, and Jeduthun to prophesy as they played stringed instruments and cymbals. The following men were assigned this responsibility:</VERS>\n\t\t\t<VERS vnumber=\"2\"> From the sons of Asaph: Zaccur, Joseph, Nethaniah, and Asarelah. The sons of Asaph were supervised by Asaph, who prophesied under the king's supervision.</VERS>\n\t\t\t<VERS vnumber=\"3\"> From the sons of Jeduthun: Gedaliah, Zeri, Jeshaiah, Hashabiah, and Mattithiah, six in all, under supervision of their father Jeduthun, who prophesied as he played a harp, giving thanks and praise to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"4\"> From the sons of Heman: Bukkiah, Mattaniah, Uzziel, Shebuel, Jerimoth, Hananiah, Hanani, Eliathah, Giddalti, Romamti-Ezer, Joshbekashah, Mallothi, Hothir, and Mahazioth. </VERS>\n\t\t\t<VERS vnumber=\"5\"> All these were the sons of Heman, the king's prophet. God had promised him these sons in order to make him prestigious. God gave Heman fourteen sons and three daughters.</VERS>\n\t\t\t<VERS vnumber=\"6\"> All of these were under the supervision of their fathers; they were musicians in the LORD's temple, playing cymbals and stringed instruments as they served in God's temple. Asaph, Jeduthun, and Heman were under the supervision of the king.</VERS>\n\t\t\t<VERS vnumber=\"7\"> They and their relatives, all of them skilled and trained to make music to the LORD, numbered two hundred eighty-eight.</VERS>\n\t\t\t<VERS vnumber=\"8\"> They cast lots to determine their responsibilities, oldest as well as youngest, teacher as well as student.</VERS>\n\t\t\t<VERS vnumber=\"9\"> The first lot went to Asaph's son Joseph and his relatives and sons, twelve in all, the second to Gedaliah and his relatives and sons, twelve in all,</VERS>\n\t\t\t<VERS vnumber=\"10\"> the third to Zaccur and his sons and relatives, twelve in all,</VERS>\n\t\t\t<VERS vnumber=\"11\"> the fourth to Izri and his sons and relatives, twelve in all,</VERS>\n\t\t\t<VERS vnumber=\"12\"> the fifth to Nethaniah and his sons and relatives, twelve in all,</VERS>\n\t\t\t<VERS vnumber=\"13\"> the sixth to Bukkiah and his sons and relatives, twelve in all,</VERS>\n\t\t\t<VERS vnumber=\"14\"> the seventh to Jesharelah and his sons and relatives, twelve in all,</VERS>\n\t\t\t<VERS vnumber=\"15\"> the eighth to Jeshaiah and his sons and relatives, twelve in all,</VERS>\n\t\t\t<VERS vnumber=\"16\"> the ninth to Mattaniah and his sons and relatives, twelve in all,</VERS>\n\t\t\t<VERS vnumber=\"17\"> the tenth to Shimei and his sons and relatives, twelve in all,</VERS>\n\t\t\t<VERS vnumber=\"18\"> the eleventh to Azarel and his sons and relatives, twelve in all,</VERS>\n\t\t\t<VERS vnumber=\"19\"> the twelfth to Hashabiah and his sons and relatives, twelve in all,</VERS>\n\t\t\t<VERS vnumber=\"20\"> the thirteenth to Shubael and his sons and relatives, twelve in all,</VERS>\n\t\t\t<VERS vnumber=\"21\"> the fourteenth to Mattithiah and his sons and relatives, twelve in all,</VERS>\n\t\t\t<VERS vnumber=\"22\"> the fifteenth to Jerimoth and his sons and relatives, twelve in all,</VERS>\n\t\t\t<VERS vnumber=\"23\"> the sixteenth to Hananiah and his sons and relatives, twelve in all,</VERS>\n\t\t\t<VERS vnumber=\"24\"> the seventeenth to Joshbekashah and his sons and relatives, twelve in all,</VERS>\n\t\t\t<VERS vnumber=\"25\"> the eighteenth to Hanani and his sons and relatives, twelve in all,</VERS>\n\t\t\t<VERS vnumber=\"26\"> the nineteenth to Mallothi and his sons and relatives, twelve in all,</VERS>\n\t\t\t<VERS vnumber=\"27\"> the twentieth to Eliathah and his sons and relatives, twelve in all,</VERS>\n\t\t\t<VERS vnumber=\"28\"> the twenty-first to Hothir and his sons and relatives, twelve in all,</VERS>\n\t\t\t<VERS vnumber=\"29\"> the twenty-second to Giddalti and his sons and relatives, twelve in all,</VERS>\n\t\t\t<VERS vnumber=\"30\"> the twenty-third to Mahazioth and his sons and relatives, twelve in all,</VERS>\n\t\t\t<VERS vnumber=\"31\"> the twenty-fourth to Romamti-Ezer and his sons and relatives, twelve in all.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"26\">\n\t\t\t<VERS vnumber=\"1\"> The divisions of the gatekeepers: From the Korahites: Meshelemiah, son of Kore, one of the sons of Asaph.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Meshelemiah's sons: The firstborn Zechariah, the second Jediael, the third Zebadiah, the fourth Jathniel,</VERS>\n\t\t\t<VERS vnumber=\"3\"> the fifth Elam, the sixth Jehohanan, and the seventh Elihoenai.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Obed-Edom's sons: The firstborn Shemaiah, the second Jehozabad, the third Joah, the fourth Sakar, the fifth Nethanel,</VERS>\n\t\t\t<VERS vnumber=\"5\"> the sixth Ammiel, the seventh Issachar, and the eighth Peullethai. (Indeed, God blessed Obed-Edom.)</VERS>\n\t\t\t<VERS vnumber=\"6\"> His son Shemaiah also had sons, who were leaders of their families, for they were highly respected.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The sons of Shemaiah: Othni, Rephael, Obed, and Elzabad. His relatives Elihu and Semakiah were also respected.</VERS>\n\t\t\t<VERS vnumber=\"8\"> All these were the descendants of Obed-Edom. They and their sons and relatives were respected men, capable of doing their responsibilities. There were sixty-two of them related to Obed-Edom.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Meshelemiah had sons and relatives who were respected, eighteen in all.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Hosah, one of the descendants of Merari, had sons: The firstborn Shimri (he was not actually the firstborn, but his father gave him that status),</VERS>\n\t\t\t<VERS vnumber=\"11\"> the second Hilkiah, the third Tebaliah, and the fourth Zechariah. All of Hosah's sons and relatives numbered thirteen.</VERS>\n\t\t\t<VERS vnumber=\"12\"> These divisions of the gatekeepers, corresponding to their leaders, had assigned responsibilities, like their relatives, as they served in the LORD's temple.</VERS>\n\t\t\t<VERS vnumber=\"13\"> They cast lots, both young and old, according to their families, to determine which gate they would be responsible for.</VERS>\n\t\t\t<VERS vnumber=\"14\"> The lot for the east gate went to Shelemiah. They then cast lots for his son Zechariah, a wise adviser, and the lot for the north gate went to him. </VERS>\n\t\t\t<VERS vnumber=\"15\"> Obed-Edom was assigned the south gate, and his sons were assigned the storehouses.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Shuppim and Hosah were assigned the west gate, along with the Shalleketh gate on the upper road. One guard was adjacent to another.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Each day there were six Levites posted on the east, four on the north, and four on the south. At the storehouses they were posted in pairs.</VERS>\n\t\t\t<VERS vnumber=\"18\"> At the court on the west there were four posted on the road and two at the court.</VERS>\n\t\t\t<VERS vnumber=\"19\"> These were the divisions of the gatekeepers who were descendants of Korah and Merari.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Their fellow Levites were in charge of the storehouses in God's temple and the storehouses containing consecrated items. </VERS>\n\t\t\t<VERS vnumber=\"21\"> The descendants of Ladan, who were descended from Gershon through Ladan and were leaders of the families of Ladan the Gershonite, included Jehieli</VERS>\n\t\t\t<VERS vnumber=\"22\"> and the sons of Jehieli, Zetham and his brother Joel. They were in charge of the storehouses in the LORD's temple.</VERS>\n\t\t\t<VERS vnumber=\"23\"> As for the Amramites, Izharites, Hebronites, and Uzzielites:</VERS>\n\t\t\t<VERS vnumber=\"24\"> Shebuel son of Gershom, the son of Moses, was the supervisor of the storehouses. </VERS>\n\t\t\t<VERS vnumber=\"25\"> His relatives through Eliezer included: Rehabiah his son, Jeshaiah his son, Joram his son, Zikri his son, and Shelomith his son. </VERS>\n\t\t\t<VERS vnumber=\"26\"> Shelomith and his relatives were in charge of all the storehouses containing the consecrated items dedicated by King David, the family leaders who led units of a thousand and a hundred, and the army officers. </VERS>\n\t\t\t<VERS vnumber=\"27\"> They had dedicated some of the plunder taken in battles to be used for repairs on the LORD's temple.</VERS>\n\t\t\t<VERS vnumber=\"28\"> They were also in charge of everything dedicated by Samuel the prophet, Saul son of Kish, Abner son of Ner, and Joab son of Zeruiah; Shelomith and his relatives were in charge of everything that had been dedicated.</VERS>\n\t\t\t<VERS vnumber=\"29\"> As for the Izharites: Kenaniah and his sons were given responsibilities outside the temple as officers and judges over Israel.</VERS>\n\t\t\t<VERS vnumber=\"30\"> As for the Hebronites: Hashabiah and his relatives, 1,700 respected men, were assigned responsibilities in Israel west of the Jordan; they did the LORD's work and the king's service.</VERS>\n\t\t\t<VERS vnumber=\"31\"> As for the Hebronites: Jeriah was the leader of the Hebronites according to the genealogical records. In the fortieth year of David's reign, they examined the records and discovered there were highly respected men in Jazer in Gilead. </VERS>\n\t\t\t<VERS vnumber=\"32\"> Jeriah had 2,700 relatives who were respected family leaders. King David placed them in charge of the Reubenites, the Gadites, and the half-tribe of Manasseh; they took care of all matters pertaining to God and the king.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"27\">\n\t\t\t<VERS vnumber=\"1\"> What follows is a list of Israelite family leaders and commanders of units of a thousand and a hundred, as well as their officers who served the king in various matters. Each division was assigned to serve for one month during the year; each consisted of 24,000 men.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Jashobeam son of Zabdiel was in charge of the first division, which was assigned the first month. His division consisted of 24,000 men.</VERS>\n\t\t\t<VERS vnumber=\"3\"> He was a descendant of Perez; he was in charge of all the army officers for the first month.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Dodai the Ahohite was in charge of the division assigned the second month; Mikloth was the next in rank. His division consisted of 24,000 men.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The third army commander, assigned the third month, was Benaiah son of Jehoiada the priest. He was the leader of his division, which consisted of 24,000 men.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Benaiah was the leader of the thirty warriors and his division; his son was Ammizabad.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The fourth, assigned the fourth month, was Asahel, brother of Joab; his son Zebadiah succeeded him. His division consisted of 24,000 men.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The fifth, assigned the fifth month, was the commander Shamhuth the Izrahite. His division consisted of 24,000 men.</VERS>\n\t\t\t<VERS vnumber=\"9\"> The sixth, assigned the sixth month, was Ira son of Ikkesh the Tekoite. His division consisted of 24,000 men.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The seventh, assigned the seventh month, was Helez the Pelonite, an Ephraimite. His division consisted of 24,000 men.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The eighth, assigned the eighth month, was Sibbekai the Hushathite, a Zerahite. His division consisted of 24,000 men.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The ninth, assigned the ninth month, was Abiezer the Anathothite, a Benjaminite. His division consisted of 24,000 men.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The tenth, assigned the tenth month, was Maharai the Netophathite, a Zerahite. His division consisted of 24,000 men.</VERS>\n\t\t\t<VERS vnumber=\"14\"> The eleventh, assigned the eleventh month, was Benaiah the Pirathonite, an Ephraimite. His division consisted of 24,000 men.</VERS>\n\t\t\t<VERS vnumber=\"15\"> The twelfth, assigned the twelfth month, was Heldai the Netophathite, a descendant of Othniel. His division consisted of 24,000 men.</VERS>\n\t\t\t<VERS vnumber=\"16\"> The officers of the Israelite tribes: Eliezer son of Zikri was the leader of the Reubenites, Shephatiah son of Maacah led the Simeonites,</VERS>\n\t\t\t<VERS vnumber=\"17\"> Hashabiah son of Kemuel led the Levites, Zadok led the descendants of Aaron,</VERS>\n\t\t\t<VERS vnumber=\"18\"> Elihu, a brother of David, led Judah, Omri son of Michael led Issachar,</VERS>\n\t\t\t<VERS vnumber=\"19\"> Ishmaiah son of Obadiah led Zebulun, Jerimoth son of Azriel led Naphtali,</VERS>\n\t\t\t<VERS vnumber=\"20\"> Hoshea son of Azaziah led the Ephraimites, Joel son of Pedaiah led the half-tribe of Manasseh,</VERS>\n\t\t\t<VERS vnumber=\"21\"> Iddo son of Zechariah led the half-tribe of Manasseh in Gilead, Jaasiel son of Abner led Benjamin,</VERS>\n\t\t\t<VERS vnumber=\"22\"> Azarel son of Jeroham led Dan. These were the commanders of the Israelite tribes.</VERS>\n\t\t\t<VERS vnumber=\"23\"> David did not count the males twenty years old and under, for the LORD had promised to make Israel as numerous as the stars in the sky.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Joab son of Zeruiah started to count the men but did not finish. God was angry with Israel because of this, so the number was not recorded in the scroll called The Annals of King David.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Azmaveth son of Adiel was in charge of the king's storehouses; Jonathan son of Uzziah was in charge of the storehouses in the field, in the cities, in the towns, and in the towers.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Ezri son of Kelub was in charge of the field workers who farmed the land.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Shimei the Ramathite was in charge of the vineyards; Zabdi the Shiphmite was in charge of the wine stored in the vineyards.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Baal-Hanan the Gederite was in charge of the olive and sycamore trees in the lowlands; Joash was in charge of the storehouses of olive oil.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Shitrai the Sharonite was in charge of the cattle grazing in Sharon; Shaphat son of Adlai was in charge of the cattle in the valleys.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Obil the Ishmaelite was in charge of the camels; Jehdeiah the Meronothite was in charge of the donkeys.</VERS>\n\t\t\t<VERS vnumber=\"31\"> Jaziz the Hagrite was in charge of the sheep. All these were the officials in charge of King David's property.</VERS>\n\t\t\t<VERS vnumber=\"32\"> Jonathan, David's uncle, was a wise adviser and scribe; Jehiel son of Hacmoni cared for the king's sons.</VERS>\n\t\t\t<VERS vnumber=\"33\"> Ahithophel was the king's adviser; Hushai the Arkite was the king's confidant.</VERS>\n\t\t\t<VERS vnumber=\"34\"> Ahithophel was succeeded by Jehoiada son of Benaiah and by Abiathar. Joab was the commanding general of the king's army.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"28\">\n\t\t\t<VERS vnumber=\"1\"> David assembled in Jerusalem all the officials of Israel, including the commanders of the tribes, the commanders of the army divisions that served the king, the commanders of units of a thousand and a hundred, the officials who were in charge of all the property and livestock of the king and his sons, the eunuchs, and the warriors, including the most skilled of them.</VERS>\n\t\t\t<VERS vnumber=\"2\"> King David rose to his feet and said: \"Listen to me, my brothers and my people. I wanted to build a temple where the ark of the LORD's covenant could be placed as a footstool for our God. I have made the preparations for building it. </VERS>\n\t\t\t<VERS vnumber=\"3\"> But God said to me, 'You must not build a temple to honor me, for you are a warrior and have spilled blood.' </VERS>\n\t\t\t<VERS vnumber=\"4\"> The LORD God of Israel chose me out of my father's entire family to become king over Israel and have a permanent dynasty. Indeed, he chose Judah as leader, and my father's family within Judah, and then he picked me out from among my father's sons and made me king over all Israel.</VERS>\n\t\t\t<VERS vnumber=\"5\"> From all the many sons the LORD has given me, he chose Solomon my son to rule on his behalf over Israel.</VERS>\n\t\t\t<VERS vnumber=\"6\"> He said to me, 'Solomon your son is the one who will build my temple and my courts, for I have chosen him to become my son and I will become his father.</VERS>\n\t\t\t<VERS vnumber=\"7\"> I will establish his kingdom permanently, if he remains committed to obeying my commands and regulations, as you are doing this day.'</VERS>\n\t\t\t<VERS vnumber=\"8\"> So now, in the sight of all Israel, the LORD's assembly, and in the hearing of our God, I say this: Carefully observe all the commands of the LORD your God, so that you may possess this good land and may leave it as a permanent inheritance for your children after you.</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"And you, Solomon my son, obey the God of your father and serve him with a submissive attitude and a willing spirit, for the LORD examines all minds and understands every motive of one's thoughts. If you seek him, he will let you find him, but if you abandon him, he will reject you permanently. </VERS>\n\t\t\t<VERS vnumber=\"10\"> Realize now that the LORD has chosen you to build a temple as his sanctuary. Be strong and do it!\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> David gave to his son Solomon the blueprints for the temple porch, its buildings, its treasuries, its upper areas, its inner rooms, and the room for atonement. </VERS>\n\t\t\t<VERS vnumber=\"12\"> He gave him the blueprints of all he envisioned for the courts of the LORD's temple, all the surrounding rooms, the storehouses of God's temple, and the storehouses for the holy items.</VERS>\n\t\t\t<VERS vnumber=\"13\"> He gave him the regulations for the divisions of priests and Levites, for all the assigned responsibilities within the LORD's temple, and for all the items used in the service of the LORD's temple.</VERS>\n\t\t\t<VERS vnumber=\"14\"> He gave him the prescribed weight for all the gold items to be used in various types of service in the LORD's temple, for all the silver items to be used in various types of service,</VERS>\n\t\t\t<VERS vnumber=\"15\"> for the gold lampstands and their gold lamps, including the weight of each lampstand and its lamps, for the silver lampstands, including the weight of each lampstand and its lamps, according to the prescribed use of each lampstand,</VERS>\n\t\t\t<VERS vnumber=\"16\"> for the gold used in the display tables, including the amount to be used in each table, for the silver to be used in the silver tables,</VERS>\n\t\t\t<VERS vnumber=\"17\"> for the pure gold used for the meat forks, bowls, and jars, for the small gold bowls, including the weight for each bowl, for the small silver bowls, including the weight for each bowl,</VERS>\n\t\t\t<VERS vnumber=\"18\"> and for the refined gold of the incense altar. He gave him the blueprint for the seat of the gold cherubim that spread their wings and provide shelter for the ark of the LORD's covenant.</VERS>\n\t\t\t<VERS vnumber=\"19\"> David said, \"All of this I put in writing as the LORD directed me and gave me insight regarding the details of the blueprints.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> David said to his son Solomon: \"Be strong and brave! Do it! Don't be afraid and don't panic! For the LORD God, my God, is with you. He will not leave you or abandon you before all the work for the service of the LORD's temple is finished. </VERS>\n\t\t\t<VERS vnumber=\"21\"> Here are the divisions of the priests and Levites who will perform all the service of God's temple. All the willing and skilled men are ready to assist you in all the work and perform their service. The officials and all the people are ready to follow your instructions.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"29\">\n\t\t\t<VERS vnumber=\"1\"> King David said to the entire assembly: \"My son Solomon, the one whom God has chosen, is just an inexperienced young man, and the task is great, for this palace is not for man, but for the LORD God. </VERS>\n\t\t\t<VERS vnumber=\"2\"> So I have made every effort to provide what is needed for the temple of my God, including the gold, silver, bronze, iron, wood, as well as a large amount of onyx, settings of antimony and other stones, all kinds of precious stones, and alabaster. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Now, to show my commitment to the temple of my God, I donate my personal treasure of gold and silver to the temple of my God, in addition to all that I have already supplied for this holy temple.</VERS>\n\t\t\t<VERS vnumber=\"4\"> This includes 3,000 talents of gold from Ophir and 7,000 talents of refined silver for overlaying the walls of the buildings, </VERS>\n\t\t\t<VERS vnumber=\"5\"> for gold and silver items, and for all the work of the craftsmen. Who else wants to contribute to the LORD today?\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> The leaders of the families, the leaders of the Israelite tribes, the commanders of units of a thousand and a hundred, and the supervisors of the king's work contributed willingly.</VERS>\n\t\t\t<VERS vnumber=\"7\"> They donated for the service of God's temple 5,000 talents and ten thousand darics of gold, 10,000 talents of silver, 18,000 talents of bronze, and 100,000 talents of iron. </VERS>\n\t\t\t<VERS vnumber=\"8\"> All who possessed precious stones donated them to the treasury of the LORD's temple, which was under the supervision of Jehiel the Gershonite. </VERS>\n\t\t\t<VERS vnumber=\"9\"> The people were delighted with their donations, for they contributed to the LORD with a willing attitude; King David was also very happy.</VERS>\n\t\t\t<VERS vnumber=\"10\"> David praised the LORD before the entire assembly: \"O LORD God of our father Israel, you deserve praise forevermore!</VERS>\n\t\t\t<VERS vnumber=\"11\"> O LORD, you are great, mighty, majestic, magnificent, glorious, and sovereign over all the sky and earth! You have dominion and exalt yourself as the ruler of all. </VERS>\n\t\t\t<VERS vnumber=\"12\"> You are the source of wealth and honor; you rule over all. You possess strength and might to magnify and give strength to all.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Now, our God, we give thanks to you and praise your majestic name!</VERS>\n\t\t\t<VERS vnumber=\"14\"> \"But who am I and who are my people, that we should be in a position to contribute this much? Indeed, everything comes from you, and we have simply given back to you what is yours.</VERS>\n\t\t\t<VERS vnumber=\"15\"> For we are resident foreigners and nomads in your presence, like all our ancestors; our days are like a shadow on the earth, without security.</VERS>\n\t\t\t<VERS vnumber=\"16\"> O LORD our God, all this wealth, which we have collected to build a temple for you to honor your holy name, comes from you; it all belongs to you.</VERS>\n\t\t\t<VERS vnumber=\"17\"> I know, my God, that you examine thoughts and are pleased with integrity. With pure motives I contribute all this; and now I look with joy as your people who have gathered here contribute to you. </VERS>\n\t\t\t<VERS vnumber=\"18\"> O LORD God of our ancestors Abraham, Isaac, and Israel, maintain the motives of your people and keep them devoted to you.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Make my son Solomon willing to obey your commands, rules, and regulations, and to complete building the palace for which I have made preparations.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> David told the entire assembly: \"Praise the LORD your God!\" So the entire assembly praised the LORD God of their ancestors; they bowed down and stretched out flat on the ground before the LORD and the king.</VERS>\n\t\t\t<VERS vnumber=\"21\"> The next day they made sacrifices and offered burnt sacrifices to the LORD </VERS>\n\t\t\t<VERS vnumber=\"22\"> They held a feast before the LORD that day and celebrated. Then they designated Solomon, David's son, as king a second time; before the LORD they anointed him as ruler and Zadok as priest.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Solomon sat on the LORD's throne as king in place of his father David; he was successful and all Israel was loyal to him.</VERS>\n\t\t\t<VERS vnumber=\"24\"> All the officers and warriors, as well as all of King David's sons, pledged their allegiance to King Solomon.</VERS>\n\t\t\t<VERS vnumber=\"25\"> The LORD greatly magnified Solomon before all Israel and bestowed on him greater majesty than any king of Israel before him.</VERS>\n\t\t\t<VERS vnumber=\"26\"> David son of Jesse reigned over all Israel.</VERS>\n\t\t\t<VERS vnumber=\"27\"> He reigned over Israel forty years; he reigned in Hebron seven years and in Jerusalem thirty-three years. </VERS>\n\t\t\t<VERS vnumber=\"28\"> He died at a good old age, having enjoyed long life, wealth, and honor. His son Solomon succeeded him.</VERS>\n\t\t\t<VERS vnumber=\"29\"> King David's accomplishments, from start to finish, are recorded in the Annals of Samuel the prophet, the Annals of Nathan the prophet, and the Annals of Gad the prophet.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Recorded there are all the facts about his reign and accomplishments, and an account of the events that involved him, Israel, and all the neighboring kingdoms.</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"14\" bname=\"2 Chronicles\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> Solomon son of David solidified his royal authority, for the LORD his God was with him and magnified him greatly.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Solomon addressed all Israel, including those who commanded units of a thousand and a hundred, the judges, and all the leaders of all Israel who were heads of families.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Solomon and the entire assembly went to the worship center in Gibeon, for the tent where they met God was located there, which Moses the LORD's servant had made in the wilderness. </VERS>\n\t\t\t<VERS vnumber=\"4\"> (Now David had brought up the ark of God from Kiriath Jearim to the place he had prepared for it, for he had pitched a tent for it in Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"5\"> But the bronze altar made by Bezalel son of Uri, son of Hur, was in front of the LORD's tabernacle. Solomon and the entire assembly prayed to him there.) </VERS>\n\t\t\t<VERS vnumber=\"6\"> Solomon went up to the bronze altar before the LORD which was at the meeting tent, and he offered up a thousand burnt sacrifices.</VERS>\n\t\t\t<VERS vnumber=\"7\"> That night God appeared to Solomon and said to him, \"Tell me what I should give you.\" </VERS>\n\t\t\t<VERS vnumber=\"8\"> Solomon replied to God, \"You demonstrated great loyalty to my father David and have made me king in his place. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Now, LORD God, may your promise to my father David be realized, for you have made me king over a great nation as numerous as the dust of the earth. </VERS>\n\t\t\t<VERS vnumber=\"10\"> Now give me wisdom and discernment so I can effectively lead this nation. Otherwise no one is able to make judicial decisions for this great nation of yours.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> God said to Solomon, \"Because you desire this, and did not ask for riches, wealth, and honor, or for vengeance on your enemies, and because you did not ask for long life, but requested wisdom and discernment so you can make judicial decisions for my people over whom I have made you king, </VERS>\n\t\t\t<VERS vnumber=\"12\"> you are granted wisdom and discernment. Furthermore I am giving you riches, wealth, and honor surpassing that of any king before or after you.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> Solomon left the meeting tent at the worship center in Gibeon and went to Jerusalem, where he reigned over Israel.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Solomon accumulated chariots and horses. He had 1,400 chariots and 12,000 horses. He kept them in assigned cities and in Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"15\"> The king made silver and gold as plentiful in Jerusalem as stones; cedar was as plentiful as sycamore fig trees are in the lowlands.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Solomon acquired his horses from Egypt and from Que; the king's traders purchased them from Que. </VERS>\n\t\t\t<VERS vnumber=\"17\"> They paid 600 silver pieces for each chariot from Egypt, and 150 silver pieces for each horse. They also sold chariots and horses to all the kings of the Hittites and to the kings of Syria.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\">  Solomon ordered a temple to be built to honor the LORD, as well as a royal palace for himself.</VERS>\n\t\t\t<VERS vnumber=\"2\">  Solomon had 70,000 common laborers and 80,000 stonecutters in the hills, in addition to 3,600 supervisors.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Solomon sent a message to King Huram of Tyre: \"Help me as you did my father David, when you sent him cedar logs for the construction of his palace.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Look, I am ready to build a temple to honor the LORD my God and to dedicate it to him in order to burn fragrant incense before him, to set out the bread that is regularly displayed, and to offer burnt sacrifices each morning and evening, and on Sabbaths, new moon festivals, and at other times appointed by the LORD our God. This is something Israel must do on a permanent basis.</VERS>\n\t\t\t<VERS vnumber=\"5\"> I will build a great temple, for our God is greater than all gods.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Of course, who can really build a temple for him, since the sky and the highest heavens cannot contain him? Who am I that I should build him a temple! It will really be only a place to offer sacrifices before him.</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"Now send me a man who is skilled in working with gold, silver, bronze, and iron, as well as purple, crimson, and violet colored fabrics, and who knows how to engrave. He will work with my skilled craftsmen here in Jerusalem and Judah, whom my father David provided. </VERS>\n\t\t\t<VERS vnumber=\"8\"> Send me cedars, evergreens, and algum trees from Lebanon, for I know your servants are adept at cutting down trees in Lebanon. My servants will work with your servants </VERS>\n\t\t\t<VERS vnumber=\"9\"> to supply me with large quantities of timber, for I am building a great, magnificent temple.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Look, I will pay your servants who cut the timber 20,000 kors of ground wheat, 20,000 kors of barley, 120,000 gallons of wine, and 120,000 gallons of olive oil.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> King Huram of Tyre sent this letter to Solomon: \"Because the LORD loves his people, he has made you their king.\" </VERS>\n\t\t\t<VERS vnumber=\"12\"> Huram also said, \"Worthy of praise is the LORD God of Israel, who made the sky and the earth! He has given David a wise son who has discernment and insight and will build a temple for the LORD, as well as a royal palace for himself.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Now I am sending you Huram Abi, a skilled and capable man,</VERS>\n\t\t\t<VERS vnumber=\"14\"> whose mother is a Danite and whose father is a Tyrian. He knows how to work with gold, silver, bronze, iron, stones, and wood, as well as purple, violet, white, and crimson fabrics. He knows how to do all kinds of engraving and understands any design given to him. He will work with your skilled craftsmen and the skilled craftsmen of my lord David your father. </VERS>\n\t\t\t<VERS vnumber=\"15\"> Now let my lord send to his servants the wheat, barley, olive oil, and wine he has promised;</VERS>\n\t\t\t<VERS vnumber=\"16\"> we will get all the timber you need from Lebanon and bring it in raft-like bundles by sea to Joppa. You can then haul it on up to Jerusalem.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> Solomon took a census of all the male resident foreigners in the land of Israel, after the census his father David had taken. There were 153,600 in all. </VERS>\n\t\t\t<VERS vnumber=\"18\"> He designated 70,000 as common laborers, 80,000 as stonecutters in the hills, and 3,600 as supervisors to make sure the people completed the work.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> Solomon began building the LORD's temple in Jerusalem on Mount Moriah, where the LORD had appeared to his father David. This was the place that David prepared at the threshing floor of Ornan the Jebusite. </VERS>\n\t\t\t<VERS vnumber=\"2\"> He began building on the second day of the second month of the fourth year of his reign.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Solomon laid the foundation for God's temple; its length (determined according to the old standard of measure) was 90 feet, and its width 30 feet.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The porch in front of the main hall was 30 feet long, corresponding to the width of the temple, and its height was 30 feet. He plated the inside with pure gold. </VERS>\n\t\t\t<VERS vnumber=\"5\"> He paneled the main hall with boards made from evergreen trees and plated it with fine gold, decorated with palm trees and chains.</VERS>\n\t\t\t<VERS vnumber=\"6\"> He decorated the temple with precious stones; the gold he used came from Parvaim.</VERS>\n\t\t\t<VERS vnumber=\"7\"> He overlaid the temple's rafters, thresholds, walls and doors with gold; he carved decorative cherubim on the walls.</VERS>\n\t\t\t<VERS vnumber=\"8\"> He made the most holy place; its length was 30 feet, corresponding to the width of the temple, and its width 30 feet. He plated it with 600 talents of fine gold. </VERS>\n\t\t\t<VERS vnumber=\"9\"> The gold nails weighed 50 shekels; he also plated the upper areas with gold.</VERS>\n\t\t\t<VERS vnumber=\"10\"> In the most holy place he made two images of cherubim and plated them with gold.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The combined wing span of the cherubs was 30 feet. One of the first cherub's wings was seven and one-half feet long and touched one wall of the temple; its other wing was also seven and one-half feet long and touched one of the second cherub's wings.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Likewise one of the second cherub's wings was seven and one-half feet long and touched the other wall of the temple; its other wing was also seven and one-half feet long and touched one of the first cherub's wings.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The combined wingspan of these cherubim was 30 feet. They stood upright, facing inward.</VERS>\n\t\t\t<VERS vnumber=\"14\"> He made the curtain out of violet, purple, crimson, and white fabrics, and embroidered on it decorative cherubim.</VERS>\n\t\t\t<VERS vnumber=\"15\"> In front of the temple he made two pillars which had a combined length of 52, feet, with each having a plated capital seven and one-half feet high.</VERS>\n\t\t\t<VERS vnumber=\"16\"> He made ornamental chains and put them on top of the pillars. He also made one hundred pomegranate-shaped ornaments and arranged them within the chains. </VERS>\n\t\t\t<VERS vnumber=\"17\"> He set up the pillars in front of the temple, one on the right side and the other on the left. He named the one on the right Jachin, and the one on the left Boaz.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\"> He made a bronze altar, 30 feet long, 30 feet wide, and 15 feet high. </VERS>\n\t\t\t<VERS vnumber=\"2\"> He also made the big bronze basin called \"The Sea.\" It measured 15 feet from rim to rim, was circular in shape, and stood seven and one-half feet high. Its circumference was 45 feet.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Images of bulls were under it all the way around, ten every eighteen inches all the way around. The bulls were in two rows and had been cast with \"The Sea.\" </VERS>\n\t\t\t<VERS vnumber=\"4\"> \"The Sea\" stood on top of twelve bulls. Three faced northward, three westward, three southward, and three eastward. \"The Sea\" was placed on top of them, and they all faced outward.</VERS>\n\t\t\t<VERS vnumber=\"5\"> It was four fingers thick and its rim was like that of a cup shaped like a lily blossom. It could hold 18,000 gallons.</VERS>\n\t\t\t<VERS vnumber=\"6\"> He made ten washing basins; he put five on the south side and five on the north side. In them they rinsed the items used for burnt sacrifices; the priests washed in \"The Sea.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> He made ten gold lampstands according to specifications and put them in the temple, five on the right and five on the left.</VERS>\n\t\t\t<VERS vnumber=\"8\"> He made ten tables and set them in the temple, five on the right and five on the left. He also made one hundred gold bowls.</VERS>\n\t\t\t<VERS vnumber=\"9\"> He made the courtyard of the priests and the large enclosure and its doors; he plated their doors with bronze. </VERS>\n\t\t\t<VERS vnumber=\"10\"> He put \"The Sea\" on the south side, in the southeast corner.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Huram Abi made the pots, shovels, and bowls. He finished all the work on God's temple he had been assigned by King Solomon.</VERS>\n\t\t\t<VERS vnumber=\"12\"> He made the two pillars, the two bowl-shaped tops of the pillars, the latticework for the bowl-shaped tops of the two pillars, </VERS>\n\t\t\t<VERS vnumber=\"13\"> the four hundred pomegranate-shaped ornaments for the latticework of the two pillars (each latticework had two rows of these ornaments at the bowl-shaped top of the pillar),</VERS>\n\t\t\t<VERS vnumber=\"14\"> the ten movable stands with their ten basins, </VERS>\n\t\t\t<VERS vnumber=\"15\"> the big bronze basin called \"The Sea\" with its twelve bulls underneath,</VERS>\n\t\t\t<VERS vnumber=\"16\"> and the pots, shovels, and meat forks. All the items King Solomon assigned Huram Abi to make for the LORD's temple were made from polished bronze. </VERS>\n\t\t\t<VERS vnumber=\"17\"> The king had them cast in earthen foundries in the region of the Jordan between Succoth and Zarethan. </VERS>\n\t\t\t<VERS vnumber=\"18\"> Solomon made so many of these items they did not weigh the bronze.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Solomon also made these items for God's temple: the gold altar, the tables on which the Bread of the Presence was kept, </VERS>\n\t\t\t<VERS vnumber=\"20\"> the pure gold lampstands and their lamps which burned as specified at the entrance to the inner sanctuary,</VERS>\n\t\t\t<VERS vnumber=\"21\"> the pure gold flower-shaped ornaments, lamps, and tongs,</VERS>\n\t\t\t<VERS vnumber=\"22\"> the pure gold trimming shears, basins, pans, and censers, and the gold door sockets for the inner sanctuary (the most holy place) and for the doors of the main hall of the temple.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"5\">\n\t\t\t<VERS vnumber=\"1\"> When Solomon had finished constructing the LORD's temple, he put the holy items that belonged to his father David (the silver, gold, and all the other articles) in the treasuries of God's temple.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Then Solomon convened Israel's elders, all the leaders of the Israelite tribes and families, in Jerusalem, so they could witness the transferal of the ark of the covenant of the LORD from the City of David (that is, Zion).</VERS>\n\t\t\t<VERS vnumber=\"3\"> All the men of Israel assembled before the king during the festival in the seventh month.</VERS>\n\t\t\t<VERS vnumber=\"4\"> When all Israel's elders had arrived, the Levites lifted the ark.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The priests and Levites carried the ark, the tent where God appeared to his people, and all the holy items in the tent.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Now King Solomon and all the Israelites who had assembled with him went on ahead of the ark and sacrificed more sheep and cattle than could be counted or numbered.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The priests brought the ark of the covenant of the LORD to its assigned place in the inner sanctuary of the temple, in the most holy place under the wings of the cherubs. </VERS>\n\t\t\t<VERS vnumber=\"8\"> The cherubs' wings extended over the place where the ark sat; the cherubs overshadowed the ark and its poles.</VERS>\n\t\t\t<VERS vnumber=\"9\"> The poles were so long their ends extending out from the ark were visible from in front of the inner sanctuary, but they could not be seen from beyond that point. They have remained there to this very day. </VERS>\n\t\t\t<VERS vnumber=\"10\"> There was nothing in the ark except the two tablets Moses had placed there in Horeb. (It was there that the LORD made an agreement with the Israelites after he brought them out of the land of Egypt.)</VERS>\n\t\t\t<VERS vnumber=\"11\"> The priests left the holy place. All the priests who participated had consecrated themselves, no matter which division they represented.</VERS>\n\t\t\t<VERS vnumber=\"12\"> All the Levites who were musicians, including Asaph, Heman, Jeduthun, and their sons and relatives, wore linen. They played cymbals and stringed instruments as they stood east of the altar. They were accompanied by 120 priests who blew trumpets.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The trumpeters and musicians played together, praising and giving thanks to the LORD. Accompanied by trumpets, cymbals, and other instruments, they loudly praised the LORD, singing: \"Certainly he is good; certainly his loyal love endures!\" Then a cloud filled the LORD's temple.</VERS>\n\t\t\t<VERS vnumber=\"14\"> The priests could not carry out their duties because of the cloud; the LORD's splendor filled God's temple.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"6\">\n\t\t\t<VERS vnumber=\"1\"> Then Solomon said, \"The LORD has said that he lives in thick darkness.</VERS>\n\t\t\t<VERS vnumber=\"2\"> O LORD, I have built a lofty temple for you, a place where you can live permanently.\" </VERS>\n\t\t\t<VERS vnumber=\"3\"> Then the king turned around and pronounced a blessing over the whole Israelite assembly as they stood there.</VERS>\n\t\t\t<VERS vnumber=\"4\"> He said, \"The LORD God of Israel is worthy of praise because he has fulfilled what he promised my father David. </VERS>\n\t\t\t<VERS vnumber=\"5\"> He told David, 'Since the day I brought my people out of the land of Egypt, I have not chosen a city from all the tribes of Israel to build a temple in which to live. Nor did I choose a man as leader of my people Israel. </VERS>\n\t\t\t<VERS vnumber=\"6\"> But now I have chosen Jerusalem as a place to live, and I have chosen David to lead my people Israel.' </VERS>\n\t\t\t<VERS vnumber=\"7\"> Now my father David had a strong desire to build a temple to honor the LORD God of Israel.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The LORD told my father David, 'It is right for you to have a strong desire to build a temple to honor me.</VERS>\n\t\t\t<VERS vnumber=\"9\"> But you will not build the temple; your very own son will build the temple for my honor.'</VERS>\n\t\t\t<VERS vnumber=\"10\"> The LORD has kept the promise he made. I have taken my father David's place and have occupied the throne of Israel, as the LORD promised. I have built this temple for the honor of the LORD God of Israel</VERS>\n\t\t\t<VERS vnumber=\"11\"> and set up in it a place for the ark containing the covenant the LORD made with the Israelites.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> He stood before the altar of the LORD in front of the entire assembly of Israel and spread out his hands.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Solomon had made a bronze platform and had placed it in the middle of the enclosure. It was seven and one-half feet long, seven and one-half feet wide, and four and one-half feet high. He stood on it and then got down on his knees in front of the entire assembly of Israel. He spread out his hands toward the sky, </VERS>\n\t\t\t<VERS vnumber=\"14\"> and prayed: \"O LORD God of Israel, there is no god like you in heaven or on earth! You maintain covenantal loyalty to your servants who obey you with sincerity.</VERS>\n\t\t\t<VERS vnumber=\"15\"> You have kept your word to your servant, my father David; this very day you have fulfilled what you promised.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Now, O LORD God of Israel, keep the promise you made to your servant, my father David, when you said, 'You will never fail to have a successor ruling before me on the throne of Israel, provided that your descendants watch their step and obey my law as you have done.'</VERS>\n\t\t\t<VERS vnumber=\"17\"> Now, O LORD God of Israel, may the promise you made to your servant David be realized.</VERS>\n\t\t\t<VERS vnumber=\"18\"> \"God does not really live with humankind on the earth! Look, if the sky and the highest heaven cannot contain you, how much less this temple I have built! </VERS>\n\t\t\t<VERS vnumber=\"19\"> But respond favorably to your servant's prayer and his request for help, O LORD my God. Answer the desperate prayer your servant is presenting to you.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Night and day may you watch over this temple, the place where you promised you would live. May you answer your servant's prayer for this place.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Respond to the requests of your servant and your people Israel for this place. Hear from your heavenly dwelling place and respond favorably and forgive.</VERS>\n\t\t\t<VERS vnumber=\"22\"> \"When someone is accused of sinning against his neighbor and the latter pronounces a curse on the alleged offender before your altar in this temple,</VERS>\n\t\t\t<VERS vnumber=\"23\"> listen from heaven and make a just decision about your servants' claims. Condemn the guilty party, declare the other innocent, and give both of them what they deserve.</VERS>\n\t\t\t<VERS vnumber=\"24\"> \"If your people Israel are defeated by an enemy because they sinned against you, then if they come back to you, renew their allegiance to you, and pray for your help before you in this temple, </VERS>\n\t\t\t<VERS vnumber=\"25\"> then listen from heaven, forgive the sin of your people Israel, and bring them back to the land you gave to them and their ancestors.</VERS>\n\t\t\t<VERS vnumber=\"26\"> \"The time will come when the skies are shut up tightly and no rain falls because your people sinned against you. When they direct their prayers toward this place, renew their allegiance to you, and turn away from their sin because you punish them, </VERS>\n\t\t\t<VERS vnumber=\"27\"> then listen from heaven and forgive the sin of your servants, your people Israel. Certainly you will then teach them the right way to live and send rain on your land that you have given your people to possess.</VERS>\n\t\t\t<VERS vnumber=\"28\"> \"The time will come when the land suffers from a famine, a plague, blight, and disease, or a locust invasion, or when their enemy lays siege to the cities of the land, or when some other type of plague or epidemic occurs. </VERS>\n\t\t\t<VERS vnumber=\"29\"> When all your people Israel pray and ask for help, as they acknowledge their intense pain and spread out their hands toward this temple, </VERS>\n\t\t\t<VERS vnumber=\"30\"> then listen from your heavenly dwelling place, forgive their sin, and act favorably toward each one based on your evaluation of their motives. (Indeed you are the only one who can correctly evaluate the motives of all people.)</VERS>\n\t\t\t<VERS vnumber=\"31\"> Then they will honor you by obeying you throughout their lifetimes as they live on the land you gave to our ancestors.</VERS>\n\t\t\t<VERS vnumber=\"32\"> \"Foreigners, who do not belong to your people Israel, will come from a distant land because of your great reputation and your ability to accomplish mighty deeds; they will come and direct their prayers toward this temple. </VERS>\n\t\t\t<VERS vnumber=\"33\"> Then listen from your heavenly dwelling place and answer all the prayers of the foreigners. Then all the nations of the earth will acknowledge your reputation, obey you like your people Israel do, and recognize that this temple I built belongs to you.</VERS>\n\t\t\t<VERS vnumber=\"34\"> \"When you direct your people to march out and fight their enemies, and they direct their prayers to you toward this chosen city and this temple I built for your honor,</VERS>\n\t\t\t<VERS vnumber=\"35\"> then listen from heaven to their prayers for help and vindicate them.</VERS>\n\t\t\t<VERS vnumber=\"36\"> \"The time will come when your people will sin against you (for there is no one who is sinless!) and you will be angry at them and deliver them over to their enemies, who will take them as prisoners to their land, whether far away or close by. </VERS>\n\t\t\t<VERS vnumber=\"37\"> When your people come to their senses in the land where they are held prisoner, they will repent and beg for your mercy in the land of their imprisonment, admitting, 'We have sinned and gone astray, we have done evil!'</VERS>\n\t\t\t<VERS vnumber=\"38\"> When they return to you with all their heart and being in the land where they are held prisoner and direct their prayers toward the land you gave to their ancestors, your chosen city, and the temple I built for your honor,</VERS>\n\t\t\t<VERS vnumber=\"39\"> then listen from your heavenly dwelling place to their prayers for help, vindicate them, and forgive your sinful people.</VERS>\n\t\t\t<VERS vnumber=\"40\"> \"Now, my God, may you be attentive and responsive to the prayers offered in this place.</VERS>\n\t\t\t<VERS vnumber=\"41\"> Now ascend, O LORD God, to your resting place, you and the ark of your strength! May your priests, O LORD God, experience your deliverance! May your loyal followers rejoice in the prosperity you give!</VERS>\n\t\t\t<VERS vnumber=\"42\"> O LORD God, do not reject your chosen ones! Remember the faithful promises you made to your servant David!\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"7\">\n\t\t\t<VERS vnumber=\"1\"> When Solomon finished praying, fire came down from heaven and consumed the burnt offering and the sacrifices, and the LORD's splendor filled the temple. </VERS>\n\t\t\t<VERS vnumber=\"2\"> The priests were unable to enter the LORD's temple because the LORD's splendor filled the LORD's temple.</VERS>\n\t\t\t<VERS vnumber=\"3\"> When all the Israelites saw the fire come down and the LORD's splendor over the temple, they got on their knees with their faces downward toward the pavement. They worshiped and gave thanks to the LORD, saying, \"Certainly he is good; certainly his loyal love endures!\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> The king and all the people were presenting sacrifices to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"5\"> King Solomon sacrificed 22,000 cattle and 120,000 sheep. Then the king and all the people dedicated God's temple.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The priests stood in their assigned spots, along with the Levites who had the musical instruments used for praising the LORD. (These were the ones King David made for giving thanks to the LORD and which were used by David when he offered praise, saying, \"Certainly his loyal love endures.\") Opposite the Levites, the priests were blowing the trumpets, while all Israel stood there. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Solomon consecrated the middle of the courtyard that is in front of the LORD's temple. He offered burnt sacrifices, grain offerings, and the fat from the peace offerings there, because the bronze altar that Solomon had made was too small to hold all these offerings.</VERS>\n\t\t\t<VERS vnumber=\"8\"> At that time Solomon and all Israel with him celebrated a festival for seven days. This great assembly included people from Lebo Hamath in the north to the Brook of Egypt in the south.</VERS>\n\t\t\t<VERS vnumber=\"9\"> On the eighth day they held an assembly, for they had dedicated the altar for seven days and celebrated the festival for seven more days.</VERS>\n\t\t\t<VERS vnumber=\"10\"> On the twenty-third day of the seventh month, Solomon sent the people home. They left happy and contented because of the good the LORD had done for David, Solomon, and his people Israel.</VERS>\n\t\t\t<VERS vnumber=\"11\"> After Solomon finished building the LORD's temple and the royal palace, and accomplished all his plans for the LORD's temple and his royal palace,</VERS>\n\t\t\t<VERS vnumber=\"12\"> the LORD appeared to Solomon at night and said to him: \"I have answered your prayer and chosen this place to be my temple where sacrifices are to be made.</VERS>\n\t\t\t<VERS vnumber=\"13\"> When I close up the sky so that it doesn't rain, or command locusts to devour the land's vegetation, or send a plague among my people, </VERS>\n\t\t\t<VERS vnumber=\"14\"> if my people, who belong to me, humble themselves, pray, seek to please me, and repudiate their sinful practices, then I will respond from heaven, forgive their sin, and heal their land.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Now I will be attentive and responsive to the prayers offered in this place.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Now I have chosen and consecrated this temple by making it my permanent home; I will be constantly present there.</VERS>\n\t\t\t<VERS vnumber=\"17\"> You must serve me as your father David did. Do everything I commanded and obey my rules and regulations.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Then I will establish your dynasty, just as I promised your father David, 'You will not fail to have a successor ruling over Israel.'</VERS>\n\t\t\t<VERS vnumber=\"19\"> \"But if you people ever turn away from me, fail to obey the regulations and rules I instructed you to keep, and decide to serve and worship other gods,</VERS>\n\t\t\t<VERS vnumber=\"20\"> then I will remove you from my land I have given you, I will abandon this temple I have consecrated with my presence, and I will make you an object of mockery and ridicule among all the nations. </VERS>\n\t\t\t<VERS vnumber=\"21\"> As for this temple, which was once majestic, everyone who passes by it will be shocked and say, 'Why did the LORD do this to this land and this temple?' </VERS>\n\t\t\t<VERS vnumber=\"22\"> Others will then answer, 'Because they abandoned the LORD God of their ancestors, who led them out of Egypt. They embraced other gods whom they worshiped and served. That is why he brought all this disaster down on them.'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"8\">\n\t\t\t<VERS vnumber=\"1\"> After twenty years, during which Solomon built the LORD's temple and his royal palace,</VERS>\n\t\t\t<VERS vnumber=\"2\"> Solomon rebuilt the cities that Huram had given him and settled Israelites there. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Solomon went to Hamath Zobah and seized it.</VERS>\n\t\t\t<VERS vnumber=\"4\"> He built up Tadmor in the wilderness and all the storage cities he had built in Hamath.</VERS>\n\t\t\t<VERS vnumber=\"5\"> He made upper Beth Horon and lower Beth Horon fortified cities with walls and barred gates,</VERS>\n\t\t\t<VERS vnumber=\"6\"> and built up Baalath, all the storage cities that belonged to him, and all the cities where chariots and horses were kept. He built whatever he wanted in Jerusalem, Lebanon, and throughout his entire kingdom.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Now several non-Israelite peoples were left in the land after the conquest of Joshua, including the Hittites, Amorites, Perizzites, Hivites, and Jebusites.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Their descendants remained in the land (the Israelites were unable to wipe them out). Solomon conscripted them for his work crews and they continue in that role to this very day.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Solomon did not assign Israelites to these work crews; the Israelites served as his soldiers, officers, charioteers, and commanders of his chariot forces.</VERS>\n\t\t\t<VERS vnumber=\"10\"> These men worked for Solomon as supervisors; there were a total of 250 of them who were in charge of the people.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Solomon moved Pharaoh's daughter up from the City of David to the palace he had built for her, for he said, \"My wife must not live in the palace of King David of Israel, for the places where the ark of the LORD has entered are holy.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> Then Solomon offered burnt sacrifices to the LORD on the altar of the LORD which he had built in front of the temple's porch.</VERS>\n\t\t\t<VERS vnumber=\"13\"> He observed the daily requirements for sacrifices that Moses had specified for Sabbaths, new moon festivals, and the three annual celebrations, the Feast of Unleavened Bread, the Feast of Weeks, and the Feast of Temporary Shelters.</VERS>\n\t\t\t<VERS vnumber=\"14\"> As his father David had decreed, Solomon appointed the divisions of the priests to do their assigned tasks, the Levitical orders to lead worship and help the priests with their daily tasks, and the divisions of the gatekeepers to serve at their assigned gates. This was what David the man of God had ordered.</VERS>\n\t\t\t<VERS vnumber=\"15\"> They did not neglect any detail of the king's orders pertaining to the priests, Levites, and treasuries.</VERS>\n\t\t\t<VERS vnumber=\"16\"> All the work ordered by Solomon was completed, from the day the foundation of the LORD's temple was laid until it was finished; the LORD's temple was completed.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Then Solomon went to Ezion Geber and to Elat on the coast in the land of Edom.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Huram sent him ships and some of his sailors, men who were well acquainted with the sea. They sailed with Solomon's men to Ophir, and took from there 450 talents of gold, which they brought back to King Solomon.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"9\">\n\t\t\t<VERS vnumber=\"1\"> When the queen of Sheba heard about Solomon, she came to challenge him with difficult questions. She arrived in Jerusalem with a great display of pomp, bringing with her camels carrying spices, a very large quantity of gold, and precious gems. She visited Solomon and discussed with him everything that was on her mind. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Solomon answered all her questions; there was no question too complex for the king.</VERS>\n\t\t\t<VERS vnumber=\"3\"> When the queen of Sheba saw for herself Solomon's extensive wisdom, the palace he had built, </VERS>\n\t\t\t<VERS vnumber=\"4\"> the food in his banquet hall, his servants and attendants in their robes, his cupbearers in their robes, and his burnt sacrifices which he presented in the LORD's temple, she was amazed.</VERS>\n\t\t\t<VERS vnumber=\"5\"> She said to the king, \"The report I heard in my own country about your wise sayings and insight was true! </VERS>\n\t\t\t<VERS vnumber=\"6\"> I did not believe these things until I came and saw them with my own eyes. Indeed, I didn't hear even half the story! Your wisdom surpasses what was reported to me. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Your attendants, who stand before you at all times and hear your wise sayings, are truly happy!</VERS>\n\t\t\t<VERS vnumber=\"8\"> May the LORD your God be praised because he favored you by placing you on his throne as the one ruling on his behalf! Because of your God's love for Israel and his lasting commitment to them, he made you king over them so you could make just and right decisions.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> She gave the king 120 talents of gold and a very large quantity of spices and precious gems. The quantity of spices the queen of Sheba gave King Solomon has never been matched.</VERS>\n\t\t\t<VERS vnumber=\"10\"> (Huram's servants, aided by Solomon's servants, brought gold from Ophir, as well as fine timber and precious gems. </VERS>\n\t\t\t<VERS vnumber=\"11\"> With the timber the king made steps for the LORD's temple and royal palace as well as stringed instruments for the musicians. No one had seen anything like them in the land of Judah prior to that.)</VERS>\n\t\t\t<VERS vnumber=\"12\"> King Solomon gave the queen of Sheba everything she requested, more than what she had brought him. Then she left and returned to her homeland with her attendants.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Solomon received 666 talents of gold per year,</VERS>\n\t\t\t<VERS vnumber=\"14\"> besides what he collected from the merchants and traders. All the Arabian kings and the governors of the land also brought gold and silver to Solomon. </VERS>\n\t\t\t<VERS vnumber=\"15\"> King Solomon made two hundred large shields of hammered gold; 600 measures of hammered gold were used for each shield. </VERS>\n\t\t\t<VERS vnumber=\"16\"> He also made three hundred small shields of hammered gold; 300 measures of gold were used for each of those shields. The king placed them in the Palace of the Lebanon Forest.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The king made a large throne decorated with ivory and overlaid it with pure gold.</VERS>\n\t\t\t<VERS vnumber=\"18\"> There were six steps leading up to the throne, and a gold footstool was attached to the throne. The throne had two armrests with a statue of a lion standing on each side.</VERS>\n\t\t\t<VERS vnumber=\"19\"> There were twelve statues of lions on the six steps, one lion at each end of each step. There was nothing like it in any other kingdom.</VERS>\n\t\t\t<VERS vnumber=\"20\"> All of King Solomon's cups were made of gold, and all the household items in the Palace of the Lebanon Forest were made of pure gold. There were no silver items, for silver was not considered very valuable in Solomon's time.</VERS>\n\t\t\t<VERS vnumber=\"21\"> The king had a fleet of large merchant ships manned by Huram's men that sailed the sea. Once every three years the fleet came into port with cargoes of gold, silver, ivory, apes, and peacocks.</VERS>\n\t\t\t<VERS vnumber=\"22\"> King Solomon was wealthier and wiser than any of the kings of the earth.</VERS>\n\t\t\t<VERS vnumber=\"23\"> All the kings of the earth wanted to visit Solomon to see him display his God-given wisdom.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Year after year visitors brought their gifts, which included items of silver, items of gold, clothes, perfume, spices, horses, and mules.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Solomon had 4,000 stalls for his chariot horses and 12,000 horses. He kept them in assigned cities and in Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"26\"> He ruled all the kingdoms from the Euphrates River to the land of the Philistines as far as the border of Egypt. </VERS>\n\t\t\t<VERS vnumber=\"27\"> The king made silver as plentiful in Jerusalem as stones; cedar was as plentiful as sycamore fig trees are in the lowlands.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Solomon acquired horses from Egypt and from all the lands.</VERS>\n\t\t\t<VERS vnumber=\"29\"> The rest of the events of Solomon's reign, from start to finish, are recorded in the Annals of Nathan the Prophet, the Prophecy of Ahijah the Shilonite, and the Vision of Iddo the Seer pertaining to Jeroboam son of Nebat.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Solomon ruled over all Israel from Jerusalem for forty years.</VERS>\n\t\t\t<VERS vnumber=\"31\"> Then Solomon passed away and was buried in the city of his father David. His son Rehoboam replaced him as king.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"10\">\n\t\t\t<VERS vnumber=\"1\"> Rehoboam traveled to Shechem, for all Israel had gathered in Shechem to make Rehoboam king. </VERS>\n\t\t\t<VERS vnumber=\"2\"> When Jeroboam son of Nebat heard the news, he was still in Egypt, where he had fled from King Solomon. Jeroboam returned from Egypt.</VERS>\n\t\t\t<VERS vnumber=\"3\"> They sent for him and Jeroboam and all Israel came and spoke to Rehoboam, saying, </VERS>\n\t\t\t<VERS vnumber=\"4\"> \"Your father made us work too hard! Now if you lighten the demands he made and don't make us work as hard, we will serve you.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> He said to them, \"Go away for three days, then return to me.\" So the people went away.</VERS>\n\t\t\t<VERS vnumber=\"6\"> King Rehoboam consulted with the older advisers who had served his father Solomon when he had been alive. He asked them, \"How do you advise me to answer these people?\" </VERS>\n\t\t\t<VERS vnumber=\"7\"> They said to him, \"If you are fair to these people, grant their request, and are cordial to them, they will be your servants from this time forward.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> But Rehoboam rejected their advice and consulted the young advisers who served him, with whom he had grown up.</VERS>\n\t\t\t<VERS vnumber=\"9\"> He asked them, \"How do you advise me to respond to these people who said to me, 'Lessen the demands your father placed on us'?\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> The young advisers with whom Rehoboam had grown up said to him, \"Say this to these people who have said to you, 'Your father made us work hard, but now lighten our burden', say this to them: 'I am a lot harsher than my father!</VERS>\n\t\t\t<VERS vnumber=\"11\"> My father imposed heavy demands on you; I will make them even heavier. My father punished you with ordinary whips; I will punish you with whips that really sting your flesh.'\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> Jeroboam and all the people reported to Rehoboam on the third day, just as the king had ordered when he said, \"Return to me on the third day.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> The king responded to the people harshly. He rejected the advice of the older men </VERS>\n\t\t\t<VERS vnumber=\"14\"> and followed the advice of the younger ones. He said, \"My father imposed heavy demands on you; I will make them even heavier. My father punished you with ordinary whips; I will punish you with whips that really sting your flesh.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> The king refused to listen to the people, because God was instigating this turn of events so that he might bring to pass the prophetic announcement he had made through Ahijah the Shilonite to Jeroboam son of Nebat.</VERS>\n\t\t\t<VERS vnumber=\"16\"> When all Israel saw that the king refused to listen to them, the people answered the king, \"We have no portion in David, no share in the son of Jesse! Return to your homes, O Israel! Now, look after your own dynasty, O David!\" So all Israel returned to their homes.</VERS>\n\t\t\t<VERS vnumber=\"17\"> (Rehoboam continued to rule over the Israelites who lived in the cities of Judah.)</VERS>\n\t\t\t<VERS vnumber=\"18\"> King Rehoboam sent Hadoram, the supervisor of the work crews, out after them, but the Israelites stoned him to death. King Rehoboam managed to jump into his chariot and escape to Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"19\"> So Israel has been in rebellion against the Davidic dynasty to this very day.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"11\">\n\t\t\t<VERS vnumber=\"1\"> When Rehoboam arrived in Jerusalem, he summoned 180,000 skilled warriors from Judah and Benjamin to attack Israel and restore the kingdom to Rehoboam. </VERS>\n\t\t\t<VERS vnumber=\"2\"> But the LORD told Shemaiah the prophet,</VERS>\n\t\t\t<VERS vnumber=\"3\"> \"Say this to King Rehoboam son of Solomon of Judah and to all the Israelites in Judah and Benjamin,</VERS>\n\t\t\t<VERS vnumber=\"4\"> 'The LORD says this: \"Do not attack and make war with your brothers. Each of you go home, for I have caused this to happen.\"'\" They obeyed the LORD and called off the attack against Jeroboam.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Rehoboam lived in Jerusalem; he built up these fortified cities throughout Judah: </VERS>\n\t\t\t<VERS vnumber=\"6\"> Bethlehem, Etam, Tekoa, </VERS>\n\t\t\t<VERS vnumber=\"7\"> Beth Zur, Soco, Adullam,</VERS>\n\t\t\t<VERS vnumber=\"8\"> Gath, Mareshah, Ziph,</VERS>\n\t\t\t<VERS vnumber=\"9\"> Adoraim, Lachish, Azekah,</VERS>\n\t\t\t<VERS vnumber=\"10\"> Zorah, Aijalon, and Hebron. These were the fortified cities in Judah and Benjamin.</VERS>\n\t\t\t<VERS vnumber=\"11\"> He fortified these cities and placed officers in them, as well as storehouses of food, olive oil, and wine.</VERS>\n\t\t\t<VERS vnumber=\"12\"> In each city there were shields and spears; he strongly fortified them. Judah and Benjamin belonged to him.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The priests and Levites who lived throughout Israel supported him, no matter where they resided.</VERS>\n\t\t\t<VERS vnumber=\"14\"> The Levites even left their pasturelands and their property behind and came to Judah and Jerusalem, for Jeroboam and his sons prohibited them from serving as the LORD's priests.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Jeroboam appointed his own priests to serve at the worship centers and to lead in the worship of the goat idols and calf idols he had made.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Those among all the Israelite tribes who were determined to worship the LORD God of Israel followed them to Jerusalem to sacrifice to the LORD God of their ancestors.</VERS>\n\t\t\t<VERS vnumber=\"17\"> They supported the kingdom of Judah and were loyal to Rehoboam son of Solomon for three years; they followed the edicts of David and Solomon for three years.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Rehoboam married Mahalath the daughter of David's son Jerimoth and of Abihail, the daughter of Jesse's son Eliab. </VERS>\n\t\t\t<VERS vnumber=\"19\"> She bore him sons named Jeush, Shemariah, and Zaham.</VERS>\n\t\t\t<VERS vnumber=\"20\"> He later married Maacah the daughter of Absalom. She bore to him Abijah, Attai, Ziza, and Shelomith.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Rehoboam loved Maacah daughter of Absalom more than his other wives and concubines. He had eighteen wives and sixty concubines; he fathered twenty-eight sons and sixty daughters.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Rehoboam appointed Abijah son of Maacah as the leader over his brothers, for he intended to name him his successor.</VERS>\n\t\t\t<VERS vnumber=\"23\"> He wisely placed some of his many sons throughout the regions of Judah and Benjamin in the various fortified cities. He supplied them with abundant provisions and acquired many wives for them.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"12\">\n\t\t\t<VERS vnumber=\"1\"> After Rehoboam's rule was established and solidified, he and all Israel rejected the law of the LORD.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Because they were unfaithful to the LORD, in King Rehoboam's fifth year, King Shishak of Egypt attacked Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"3\"> He had 1,200 chariots, 60,000 horsemen, and an innumerable number of soldiers who accompanied him from Egypt, including Libyans, Sukkites, and Cushites.</VERS>\n\t\t\t<VERS vnumber=\"4\"> He captured the fortified cities of Judah and marched against Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Shemaiah the prophet visited Rehoboam and the leaders of Judah who were assembled in Jerusalem because of Shishak. He said to them, \"This is what the LORD says: 'You have rejected me, so I have rejected you and will hand you over to Shishak.'\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> The leaders of Israel and the king humbled themselves and said, \"The LORD is just.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> When the LORD saw that they humbled themselves, he gave this message to Shemaiah: \"They have humbled themselves, so I will not destroy them. I will deliver them soon. My anger will not be unleashed against Jerusalem through Shishak. </VERS>\n\t\t\t<VERS vnumber=\"8\"> Yet they will become his subjects, so they can experience how serving me differs from serving the surrounding nations.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> King Shishak of Egypt attacked Jerusalem and took away the treasures of the LORD's temple and of the royal palace; he took everything, including the gold shields that Solomon had made.</VERS>\n\t\t\t<VERS vnumber=\"10\"> King Rehoboam made bronze shields to replace them and assigned them to the officers of the royal guard who protected the entrance to the royal palace. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Whenever the king visited the LORD's temple, the royal guards carried them and then brought them back to the guardroom.</VERS>\n\t\t\t<VERS vnumber=\"12\"> So when Rehoboam humbled himself, the LORD relented from his anger and did not annihilate him; Judah experienced some good things.</VERS>\n\t\t\t<VERS vnumber=\"13\"> King Rehoboam solidified his rule in Jerusalem; he was forty-one years old when he became king and he ruled for seventeen years in Jerusalem, the city the LORD chose from all the tribes of Israel to be his home. Rehoboam's mother was an Ammonite named Naamah. </VERS>\n\t\t\t<VERS vnumber=\"14\"> He did evil because he was not determined to follow the LORD.</VERS>\n\t\t\t<VERS vnumber=\"15\"> The events of Rehoboam's reign, from start to finish, are recorded in the Annals of Shemaiah the prophet and of Iddo the seer that include genealogical records. </VERS>\n\t\t\t<VERS vnumber=\"16\"> Then Rehoboam passed away and was buried in the City of David. His son Abijah replaced him as king.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"13\">\n\t\t\t<VERS vnumber=\"1\"> In the eighteenth year of the reign of King Jeroboam, Abijah became king over Judah.</VERS>\n\t\t\t<VERS vnumber=\"2\"> He ruled for three years in Jerusalem. His mother was Michaiah, the daughter of Uriel from Gibeah. There was war between Abijah and Jeroboam.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Abijah launched the attack with 400,000 well-trained warriors, while Jeroboam deployed against him 800,000 well-trained warriors.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Abijah ascended Mount Zemaraim, in the Ephraimite hill country, and said: \"Listen to me, Jeroboam and all Israel!</VERS>\n\t\t\t<VERS vnumber=\"5\"> Don't you realize that the LORD God of Israel has given David and his dynasty lasting dominion over Israel by a formal agreement?</VERS>\n\t\t\t<VERS vnumber=\"6\"> Jeroboam son of Nebat, a servant of Solomon son of David, rose up and rebelled against his master.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Lawless good-for-nothing men gathered around him and conspired against Rehoboam son of Solomon, when Rehoboam was an inexperienced young man and could not resist them. </VERS>\n\t\t\t<VERS vnumber=\"8\"> Now you are declaring that you will resist the LORD's rule through the Davidic dynasty. You have a huge army, and bring with you the gold calves that Jeroboam made for you as gods. </VERS>\n\t\t\t<VERS vnumber=\"9\"> But you banished the LORD's priests, Aaron's descendants, and the Levites, and appointed your own priests just as the surrounding nations do! Anyone who comes to consecrate himself with a young bull or seven rams becomes a priest of these fake gods!</VERS>\n\t\t\t<VERS vnumber=\"10\"> But as for us, the LORD is our God and we have not rejected him. Aaron's descendants serve as the LORD's priests and the Levites assist them with the work.</VERS>\n\t\t\t<VERS vnumber=\"11\"> They offer burnt sacrifices to the LORD every morning and every evening, along with fragrant incense. They arrange the Bread of the Presence on a ritually clean table and light the lamps on the gold lampstand every evening. Certainly we are observing the LORD our God's regulations, but you have rejected him. </VERS>\n\t\t\t<VERS vnumber=\"12\"> Now look, God is with us as our leader. His priests are ready to blow the trumpets to signal the attack against you. You Israelites, don't fight against the LORD God of your ancestors, for you will not win!\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> Now Jeroboam had sent some men to ambush the Judahite army from behind. The main army was in front of the Judahite army; the ambushers were behind it. </VERS>\n\t\t\t<VERS vnumber=\"14\"> The men of Judah turned around and realized they were being attacked from the front and the rear. So they cried out for help to the LORD. The priests blew their trumpets, </VERS>\n\t\t\t<VERS vnumber=\"15\"> and the men of Judah gave the battle cry. As the men of Judah gave the battle cry, the LORD struck down Jeroboam and all Israel before Abijah and Judah. </VERS>\n\t\t\t<VERS vnumber=\"16\"> The Israelites fled from before the Judahite army, and God handed them over to the men of Judah.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Abijah and his army thoroughly defeated them; 500,000 well-trained Israelite men fell dead.</VERS>\n\t\t\t<VERS vnumber=\"18\"> That day the Israelites were defeated; the men of Judah prevailed because they relied on the LORD God of their ancestors.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Abijah chased Jeroboam; he seized from him these cities: Bethel and its surrounding towns, Jeshanah and its surrounding towns, and Ephron and its surrounding towns. </VERS>\n\t\t\t<VERS vnumber=\"20\"> Jeroboam did not regain power during the reign of Abijah. The LORD struck him down and he died. </VERS>\n\t\t\t<VERS vnumber=\"21\"> Abijah's power grew; he had fourteen wives and fathered twenty-two sons and sixteen daughters.</VERS>\n\t\t\t<VERS vnumber=\"22\"> The rest of the events of Abijah's reign, including his deeds and sayings, are recorded in the writings of the prophet Iddo.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"14\">\n\t\t\t<VERS vnumber=\"1\">  Abijah passed away and was buried in the City of David. His son Asa replaced him as king. During his reign the land had rest for ten years.</VERS>\n\t\t\t<VERS vnumber=\"2\">  Asa did what the LORD his God desired and approved.</VERS>\n\t\t\t<VERS vnumber=\"3\"> He removed the pagan altars and the high places, smashed the sacred pillars, and cut down the Asherah poles.</VERS>\n\t\t\t<VERS vnumber=\"4\"> He ordered Judah to seek the LORD God of their ancestors and to observe his law and commands.</VERS>\n\t\t\t<VERS vnumber=\"5\"> He removed the high places and the incense altars from all the cities of Judah. The kingdom had rest under his rule.</VERS>\n\t\t\t<VERS vnumber=\"6\"> He built fortified cities throughout Judah, for the land was at rest and there was no war during those years; the LORD gave him peace.</VERS>\n\t\t\t<VERS vnumber=\"7\"> He said to the people of Judah: \"Let's build these cities and fortify them with walls, towers, and barred gates. The land remains ours because we have followed the LORD our God and he has made us secure on all sides.\" So they built the cities and prospered.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Asa had an army of 300,000 men from Judah, equipped with large shields and spears. He also had 280,000 men from Benjamin who carried small shields and were adept archers; they were all skilled warriors.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Zerah the Cushite marched against them with an army of 1,000,000 men and 300 chariots. He arrived at Mareshah, </VERS>\n\t\t\t<VERS vnumber=\"10\"> and Asa went out to oppose him. They deployed for battle in the Valley of Zephathah near Mareshah.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Asa prayed to the LORD his God: \"O LORD, there is no one but you who can help the weak when they are vastly outnumbered. Help us, O LORD our God, for we rely on you and have marched on your behalf against this huge army. O LORD our God, don't let men prevail against you!\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> The LORD struck down the Cushites before Asa and Judah. The Cushites fled,</VERS>\n\t\t\t<VERS vnumber=\"13\"> and Asa and his army chased them as far as Gerar. The Cushites were wiped out; they were shattered before the LORD and his army. The men of Judah carried off a huge amount of plunder. </VERS>\n\t\t\t<VERS vnumber=\"14\"> They defeated all the cities surrounding Gerar, for the LORD caused them to panic. The men of Judah looted all the cities, for they contained a huge amount of goods.</VERS>\n\t\t\t<VERS vnumber=\"15\"> They also attacked the tents of the herdsmen in charge of the livestock. They carried off many sheep and camels and then returned to Jerusalem.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"15\">\n\t\t\t<VERS vnumber=\"1\"> God's Spirit came upon Azariah son of Oded.</VERS>\n\t\t\t<VERS vnumber=\"2\"> He met Asa and told him, \"Listen to me, Asa and all Judah and Benjamin! The LORD is with you when you are loyal to him. If you seek him, he will respond to you, but if you reject him, he will reject you. </VERS>\n\t\t\t<VERS vnumber=\"3\"> For a long time Israel had no true God, or priest to instruct them, or law. </VERS>\n\t\t\t<VERS vnumber=\"4\"> Because of their distress, they turned back to the LORD God of Israel. They sought him and he responded to them.</VERS>\n\t\t\t<VERS vnumber=\"5\"> In those days no one could travel safely, for total chaos had overtaken all the people of the surrounding lands.</VERS>\n\t\t\t<VERS vnumber=\"6\"> One nation was crushed by another, and one city by another, for God caused them to be in great turmoil.</VERS>\n\t\t\t<VERS vnumber=\"7\"> But as for you, be strong and don't get discouraged, for your work will be rewarded.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> When Asa heard these words and the prophecy of Oded the prophet, he was encouraged. He removed the detestable idols from the entire land of Judah and Benjamin and from the cities he had seized in the Ephraimite hill country. He repaired the altar of the LORD in front of the porch of the LORD's temple.</VERS>\n\t\t\t<VERS vnumber=\"9\"> He assembled all Judah and Benjamin, as well as the settlers from Ephraim, Manasseh, and Simeon who had come to live with them. Many people from Israel had come there to live when they saw that the LORD his God was with him. </VERS>\n\t\t\t<VERS vnumber=\"10\"> They assembled in Jerusalem in the third month of the fifteenth year of Asa's reign.</VERS>\n\t\t\t<VERS vnumber=\"11\"> At that time they sacrificed to the LORD some of the plunder they had brought back, including 700 head of cattle and 7,000 sheep.</VERS>\n\t\t\t<VERS vnumber=\"12\"> They solemnly agreed to seek the LORD God of their ancestors with their whole heart and being. </VERS>\n\t\t\t<VERS vnumber=\"13\"> Anyone who would not seek the LORD God of Israel would be executed, whether they were young or old, male or female. </VERS>\n\t\t\t<VERS vnumber=\"14\"> They swore their allegiance to the LORD, shouting their approval loudly and sounding trumpets and horns.</VERS>\n\t\t\t<VERS vnumber=\"15\"> All Judah was happy about the oath, because they made the vow with their whole heart. They willingly sought the LORD and he responded to them. He made them secure on every side.</VERS>\n\t\t\t<VERS vnumber=\"16\"> King Asa also removed Maacah his grandmother from her position as queen mother because she had made a loathsome Asherah pole. Asa cut down her Asherah pole and crushed and burned it in the Kidron Valley. </VERS>\n\t\t\t<VERS vnumber=\"17\"> The high places were not eliminated from Israel, yet Asa was wholeheartedly devoted to the LORD throughout his lifetime.</VERS>\n\t\t\t<VERS vnumber=\"18\"> He brought the holy items that his father and he had made into God's temple, including the silver, gold, and other articles.</VERS>\n\t\t\t<VERS vnumber=\"19\"> There was no more war until the thirty-fifth year of Asa's reign.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"16\">\n\t\t\t<VERS vnumber=\"1\"> In the thirty-sixth year of Asa's reign, King Baasha of Israel attacked Judah, and he established Ramah as a military outpost to prevent anyone from leaving or entering the land of King Asa of Judah.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Asa took all the silver and gold that was left in the treasuries of the LORD's temple and of the royal palace and sent it to King Ben Hadad of Syria, ruler in Damascus, along with this message:</VERS>\n\t\t\t<VERS vnumber=\"3\"> \"I want to make a treaty with you, like the one our fathers made. See, I have sent you silver and gold. Break your treaty with King Baasha of Israel, so he will retreat from my land.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> Ben Hadad accepted King Asa's offer and ordered his army commanders to attack the cities of Israel. They conquered Ijon, Dan, Abel Maim, and all the storage cities of Naphtali. </VERS>\n\t\t\t<VERS vnumber=\"5\"> When Baasha heard the news, he stopped fortifying Ramah and abandoned the project.</VERS>\n\t\t\t<VERS vnumber=\"6\"> King Asa ordered all the men of Judah to carry away the stones and wood that Baasha had used to build Ramah. He used the materials to build up Geba and Mizpah.</VERS>\n\t\t\t<VERS vnumber=\"7\"> At that time Hanani the prophet visited King Asa of Judah and said to him: \"Because you relied on the king of Syria and did not rely on the LORD your God, the army of the king of Syria has escaped from your hand. </VERS>\n\t\t\t<VERS vnumber=\"8\"> Did not the Cushites and Libyans have a huge army with chariots and a very large number of horsemen? But when you relied on the LORD, he handed them over to you!</VERS>\n\t\t\t<VERS vnumber=\"9\"> Certainly the LORD watches the whole earth carefully and is ready to strengthen those who are devoted to him. You have acted foolishly in this matter; from now on you will have war. </VERS>\n\t\t\t<VERS vnumber=\"10\"> Asa was so angry at the prophet, he put him in jail. Asa also oppressed some of the people at that time.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The events of Asa's reign, from start to finish, are recorded in the Scroll of the Kings of Judah and Israel.</VERS>\n\t\t\t<VERS vnumber=\"12\"> In the thirty-ninth year of his reign, Asa developed a foot disease. Though his disease was severe, he did not seek the LORD, but only the doctors.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Asa passed away in the forty-first year of his reign. </VERS>\n\t\t\t<VERS vnumber=\"14\"> He was buried in the tomb he had carved out in the City of David. They laid him to rest on a bier covered with spices and assorted mixtures of ointments. They made a huge bonfire to honor him.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"17\">\n\t\t\t<VERS vnumber=\"1\"> His son Jehoshaphat replaced him as king and solidified his rule over Israel.</VERS>\n\t\t\t<VERS vnumber=\"2\"> He placed troops in all of Judah's fortified cities and posted garrisons throughout the land of Judah and in the cities of Ephraim that his father Asa had seized.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The LORD was with Jehoshaphat because he followed in his ancestor David's footsteps at the beginning of his reign. He did not seek the Baals, </VERS>\n\t\t\t<VERS vnumber=\"4\"> but instead sought the God of his ancestors and obeyed his commands, unlike the Israelites.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The LORD made his kingdom secure; all Judah brought tribute to Jehoshaphat, and he became very wealthy and greatly respected.</VERS>\n\t\t\t<VERS vnumber=\"6\"> He was committed to following the LORD; he even removed the high places and Asherah poles from Judah.</VERS>\n\t\t\t<VERS vnumber=\"7\"> In the third year of his reign he sent his officials Ben-Hail, Obadiah, Zechariah, Nethanel, and Micaiah to teach in the cities of Judah.</VERS>\n\t\t\t<VERS vnumber=\"8\"> They were accompanied by the Levites Shemaiah, Nethaniah, Zebadiah, Asahel, Shemiramoth, Jehonathan, Adonijah, Tobijah, and Tob-Adonijah, and by the priests Elishama and Jehoram.</VERS>\n\t\t\t<VERS vnumber=\"9\"> They taught throughout Judah, taking with them the scroll of the law of the LORD. They traveled to all the cities of Judah and taught the people.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The LORD put fear into all the kingdoms surrounding Judah; they did not make war with Jehoshaphat. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Some of the Philistines brought Jehoshaphat tribute, including a load of silver. The Arabs brought him 7,700 rams and 7,700 goats from their flocks.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Jehoshaphat's power kept increasing. He built fortresses and storage cities throughout Judah.</VERS>\n\t\t\t<VERS vnumber=\"13\"> He had many supplies stored in the cities of Judah and an army of skilled warriors stationed in Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"14\"> These were their divisions by families: There were a thousand officers from Judah. Adnah the commander led 300,000 skilled warriors,</VERS>\n\t\t\t<VERS vnumber=\"15\"> Jehochanan the commander led 280,000,</VERS>\n\t\t\t<VERS vnumber=\"16\"> and Amasiah son of Zikri, who volunteered to serve the LORD, led 200,000 skilled warriors.</VERS>\n\t\t\t<VERS vnumber=\"17\"> From Benjamin, Eliada, a skilled warrior, led 200,000 men who were equipped with bows and shields,</VERS>\n\t\t\t<VERS vnumber=\"18\"> and Jehozabad led 180,000 trained warriors.</VERS>\n\t\t\t<VERS vnumber=\"19\"> These were the ones who served the king, besides those whom the king placed in the fortified cities throughout Judah.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"18\">\n\t\t\t<VERS vnumber=\"1\"> Jehoshaphat was very wealthy and greatly respected. He made an alliance by marriage with Ahab,</VERS>\n\t\t\t<VERS vnumber=\"2\"> and after several years went down to visit Ahab in Samaria. Ahab slaughtered many sheep and cattle to honor Jehoshaphat and those who came with him. He persuaded him to join in an attack against Ramoth Gilead.</VERS>\n\t\t\t<VERS vnumber=\"3\"> King Ahab of Israel said to Jehoshaphat, \"Will you go with me to attack Ramoth Gilead?\" Jehoshaphat replied to the king of Israel, \"I will support you; my army is at your disposal and will support you in battle.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> Then Jehoshaphat added, \"First seek an oracle from the LORD.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> So the king of Israel assembled 400 prophets and asked them, \"Should we attack Ramoth Gilead or not?\" They said, \"Attack! God will hand it over to the king.\" </VERS>\n\t\t\t<VERS vnumber=\"6\"> But Jehoshaphat asked, \"Is there not a prophet of the LORD still here, that we may ask him?\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> The king of Israel answered Jehoshaphat, \"There is still one man through whom we can seek the LORD's will. But I despise him because he does not prophesy prosperity for me, but always disaster. His name is Micaiah son of Imlah. Jehoshaphat said, \"The king should not say such things!\" </VERS>\n\t\t\t<VERS vnumber=\"8\"> The king of Israel summoned an officer and said, \"Quickly bring Micaiah son of Imlah.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> Now the king of Israel and King Jehoshaphat of Judah were sitting on their respective thrones, dressed in their royal robes, at the threshing floor at the entrance of the gate of Samaria. All the prophets were prophesying before them. </VERS>\n\t\t\t<VERS vnumber=\"10\"> Zedekiah son of Kenaanah made iron horns and said, \"This is what the LORD says, 'With these you will gore Syria until they are destroyed!'\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> All the prophets were prophesying the same, saying, \"Attack Ramoth Gilead! You will succeed; the LORD will hand it over to the king!\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> Now the messenger who went to summon Micaiah said to him, \"Look, the prophets are in complete agreement that the king will succeed. Your words must agree with theirs; you must predict success!\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> But Micaiah said, \"As certainly as the LORD lives, I will say what my God tells me to say!\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> Micaiah came before the king and the king asked him, \"Micaiah, should we attack Ramoth Gilead or not?\" He answered him, \"Attack! You will succeed; they will be handed over to you.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> The king said to him, \"How many times must I make you solemnly promise in the name of the LORD to tell me only the truth?\" </VERS>\n\t\t\t<VERS vnumber=\"16\"> Micaiah replied, \"I saw all Israel scattered on the mountains like sheep that have no shepherd. Then the LORD said, 'They have no master. They should go home in peace.'\" </VERS>\n\t\t\t<VERS vnumber=\"17\"> The king of Israel said to Jehoshaphat, \"Didn't I tell you he does not prophesy prosperity for me, but disaster?\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> Micaiah said, \"That being the case, hear the word of the LORD: I saw the LORD sitting on his throne, with all the heavenly assembly standing on his right and on his left. </VERS>\n\t\t\t<VERS vnumber=\"19\"> The LORD said, 'Who will deceive King Ahab of Israel, so he will attack Ramoth Gilead and die there?' One said this and another that.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Then a spirit stepped forward and stood before the LORD. He said, 'I will deceive him.' The LORD asked him, 'How?' </VERS>\n\t\t\t<VERS vnumber=\"21\"> He replied, 'I will go out and be a lying spirit in the mouths of all his prophets.' The LORD said, 'Deceive and overpower him. Go out and do as you have proposed.' </VERS>\n\t\t\t<VERS vnumber=\"22\"> So now, look, the LORD has placed a lying spirit in the mouths of all these prophets of yours; but the LORD has decreed disaster for you.\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> Zedekiah son of Kenaanah approached, hit Micaiah on the jaw, and said, \"Which way did the LORD's spirit go when he went from me to speak to you?\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> Micaiah replied, \"Look, you will see in the day when you go into an inner room to hide.\"</VERS>\n\t\t\t<VERS vnumber=\"25\"> Then the king of Israel said, \"Take Micaiah and return him to Amon the city official and Joash the king's son.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Say, 'This is what the king says: \"Put this man in prison. Give him only a little bread and water until I return safely.\"'\" </VERS>\n\t\t\t<VERS vnumber=\"27\"> Micaiah said, \"If you really do return safely, then the LORD has not spoken through me!\" Then he added, \"Take note, all you people.\"</VERS>\n\t\t\t<VERS vnumber=\"28\"> The king of Israel and King Jehoshaphat of Judah attacked Ramoth Gilead.</VERS>\n\t\t\t<VERS vnumber=\"29\"> The king of Israel said to Jehoshaphat, \"I will disguise myself and then enter the battle; but you wear your royal attire.\" So the king of Israel disguised himself and they entered the battle.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Now the king of Syria had ordered his chariot commanders, \"Do not fight common soldiers or high ranking officers; fight only the king of Israel!\" </VERS>\n\t\t\t<VERS vnumber=\"31\"> When the chariot commanders saw Jehoshaphat, they said, \"He must be the king of Israel!\" So they turned and attacked him, but Jehoshaphat cried out. The LORD helped him; God lured them away from him.</VERS>\n\t\t\t<VERS vnumber=\"32\"> When the chariot commanders realized he was not the king of Israel, they turned away from him.</VERS>\n\t\t\t<VERS vnumber=\"33\"> Now an archer shot an arrow at random and it struck the king of Israel between the plates of his armor. The king ordered his charioteer, \"Turn around and take me from the battle line, for I am wounded.\" </VERS>\n\t\t\t<VERS vnumber=\"34\"> While the battle raged throughout the day, the king stood propped up in his chariot opposite the Syrians. He died in the evening as the sun was setting.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"19\">\n\t\t\t<VERS vnumber=\"1\"> When King Jehoshaphat of Judah returned home safely to Jerusalem,</VERS>\n\t\t\t<VERS vnumber=\"2\"> the prophet Jehu son of Hanani confronted him; he said to King Jehoshaphat, \"Is it right to help the wicked and be an ally of those who oppose the LORD? Because you have done this the LORD is angry with you!</VERS>\n\t\t\t<VERS vnumber=\"3\"> Nevertheless you have done some good things; you removed the Asherah poles from the land and you were determined to follow the LORD.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> Jehoshaphat lived in Jerusalem. He went out among the people from Beer Sheba to the hill country of Ephraim and encouraged them to follow the LORD God of their ancestors.</VERS>\n\t\t\t<VERS vnumber=\"5\"> He appointed judges throughout the land and in each of the fortified cities of Judah.</VERS>\n\t\t\t<VERS vnumber=\"6\"> He told the judges, \"Be careful what you do, for you are not judging for men, but for the LORD, who will be with you when you make judicial decisions. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Respect the LORD and make careful decisions, for the LORD our God disapproves of injustice, partiality, and bribery.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> In Jerusalem Jehoshaphat appointed some Levites, priests, and Israelite family leaders to judge on behalf of the LORD and to settle disputes among the residents of Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"9\"> He commanded them: \"Carry out your duties with respect for the LORD, with honesty, and with pure motives.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Whenever your countrymen who live in the cities bring a case before you (whether it involves a violent crime or other matters related to the law, commandments, rules, and regulations), warn them that they must not sin against the LORD. If you fail to do so, God will be angry with you and your colleagues; but if you obey, you will be free of guilt.</VERS>\n\t\t\t<VERS vnumber=\"11\"> You will report to Amariah the chief priest in all matters pertaining to the LORD's law, and to Zebadiah son of Ishmael, the leader of the family of Judah, in all matters pertaining to the king. The Levites will serve as officials before you. Confidently carry out your duties! May the LORD be with those who do well!\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"20\">\n\t\t\t<VERS vnumber=\"1\"> Later the Moabites and Ammonites, along with some of the Meunites, attacked Jehoshaphat. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Messengers arrived and reported to Jehoshaphat, \"A huge army is attacking you from the other side of the Dead Sea, from the direction of Edom. Look, they are in Hazezon Tamar (that is, En Gedi).\" </VERS>\n\t\t\t<VERS vnumber=\"3\"> Jehoshaphat was afraid, so he decided to seek the LORD's advice. He decreed that all Judah should observe a fast. </VERS>\n\t\t\t<VERS vnumber=\"4\"> The people of Judah assembled to ask for the LORD's help; they came from all the cities of Judah to ask for the LORD's help.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Jehoshaphat stood before the assembly of Judah and Jerusalem at the LORD's temple, in front of the new courtyard. </VERS>\n\t\t\t<VERS vnumber=\"6\"> He prayed: \"O LORD God of our ancestors, you are the God who lives in heaven and rules over all the kingdoms of the nations. You possess strength and power; no one can stand against you. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Our God, you drove out the inhabitants of this land before your people Israel and gave it as a permanent possession to the descendants of your friend Abraham. </VERS>\n\t\t\t<VERS vnumber=\"8\"> They settled down in it and built in it a temple to honor you, saying, </VERS>\n\t\t\t<VERS vnumber=\"9\"> 'If disaster comes on us in the form of military attack, judgment, plague, or famine, we will stand in front of this temple before you, for you are present in this temple. We will cry out to you for help in our distress, so that you will hear and deliver us.' </VERS>\n\t\t\t<VERS vnumber=\"10\"> Now the Ammonites, Moabites, and men from Mount Seir are coming! When Israel came from the land of Egypt, you did not allow them to invade these lands. They bypassed them and did not destroy them. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Look how they are repaying us! They come to drive us out of our allotted land which you assigned to us!</VERS>\n\t\t\t<VERS vnumber=\"12\"> Our God, will you not judge them? For we are powerless against this huge army that attacks us! We don't know what we should do; we look to you for help.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> All the men of Judah were standing before the LORD, along with their infants, wives, and children. </VERS>\n\t\t\t<VERS vnumber=\"14\"> Then in the midst of the assembly, the LORD's Spirit came upon Jachaziel son of Zechariah, son of Benaiah, son of Jeiel, son of Mattaniah, a Levite and descendant of Asaph.</VERS>\n\t\t\t<VERS vnumber=\"15\"> He said: \"Pay attention, all you people of Judah, residents of Jerusalem, and King Jehoshaphat! This is what the LORD says to you: 'Don't be afraid and don't panic because of this huge army! For the battle is not yours, but God's. </VERS>\n\t\t\t<VERS vnumber=\"16\"> Tomorrow march down against them as they come up the Ascent of Ziz. You will find them at the end of the ravine in front of the Desert of Jeruel. </VERS>\n\t\t\t<VERS vnumber=\"17\"> You will not fight in this battle. Take your positions, stand, and watch the LORD deliver you, O Judah and Jerusalem. Don't be afraid and don't panic! Tomorrow march out toward them; the LORD is with you!'\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> Jehoshaphat bowed down with his face toward the ground, and all the people of Judah and the residents of Jerusalem fell down before the LORD and worshiped him.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Then some Levites, from the Kohathites and Korahites, got up and loudly praised the LORD God of Israel.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Early the next morning they marched out to the Desert of Tekoa. When they were ready to march, Jehoshaphat stood up and said: \"Listen to me, you people of Judah and residents of Jerusalem! Trust in the LORD your God and you will be safe! Trust in the message of his prophets and you will win.\" </VERS>\n\t\t\t<VERS vnumber=\"21\"> He met with the people and appointed musicians to play before the LORD and praise his majestic splendor. As they marched ahead of the warriors they said: \"Give thanks to the LORD, for his loyal love endures.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> When they began to shout and praise, the LORD suddenly attacked the Ammonites, Moabites, and men from Mount Seir who were invading Judah, and they were defeated. </VERS>\n\t\t\t<VERS vnumber=\"23\"> The Ammonites and Moabites attacked the men from Mount Seir and annihilated them. When they had finished off the men of Seir, they attacked and destroyed one another.</VERS>\n\t\t\t<VERS vnumber=\"24\"> When the men of Judah arrived at the observation post overlooking the desert and looked at the huge army, they saw dead bodies on the ground; there were no survivors!</VERS>\n\t\t\t<VERS vnumber=\"25\"> Jehoshaphat and his men went to gather the plunder; they found a huge amount of supplies, clothing and valuable items. They carried away everything they could. There was so much plunder, it took them three days to haul it off.</VERS>\n\t\t\t<VERS vnumber=\"26\"> On the fourth day they assembled in the Valley of Berachah, where they praised the LORD. So that place is called the Valley of Berachah to this very day. </VERS>\n\t\t\t<VERS vnumber=\"27\"> Then all the men of Judah and Jerusalem returned joyfully to Jerusalem with Jehoshaphat leading them; the LORD had given them reason to rejoice over their enemies.</VERS>\n\t\t\t<VERS vnumber=\"28\"> They entered Jerusalem to the sound of stringed instruments and trumpets and proceeded to the temple of the LORD.</VERS>\n\t\t\t<VERS vnumber=\"29\"> All the kingdoms of the surrounding lands were afraid of God when they heard how the LORD had fought against Israel's enemies. </VERS>\n\t\t\t<VERS vnumber=\"30\"> Jehoshaphat's kingdom enjoyed peace; his God made him secure on every side.</VERS>\n\t\t\t<VERS vnumber=\"31\"> Jehoshaphat reigned over Judah. He was thirty-five years old when he became king and he reigned for twenty-five years in Jerusalem. His mother was Azubah, the daughter of Shilhi. </VERS>\n\t\t\t<VERS vnumber=\"32\"> He followed in his father Asa's footsteps and was careful to do what the LORD approved.</VERS>\n\t\t\t<VERS vnumber=\"33\"> However, the high places were not eliminated; the people were still not devoted to the God of their ancestors.</VERS>\n\t\t\t<VERS vnumber=\"34\"> The rest of the events of Jehoshaphat's reign, from start to finish, are recorded in the Annals of Jehu son of Hanani which are included in Scroll of the Kings of Israel.</VERS>\n\t\t\t<VERS vnumber=\"35\"> Later King Jehoshaphat of Judah made an alliance with King Ahaziah of Israel, who did evil. </VERS>\n\t\t\t<VERS vnumber=\"36\"> They agreed to make large seagoing merchant ships; they built the ships in Ezion Geber. </VERS>\n\t\t\t<VERS vnumber=\"37\"> Eliezer son of Dodavahu from Mareshah prophesied against Jehoshaphat, \"Because you made an alliance with Ahaziah, the LORD will shatter what you have made.\" The ships were wrecked and unable to go to sea.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"21\">\n\t\t\t<VERS vnumber=\"1\"> Jehoshaphat passed away and was buried with his ancestors in the City of David. His son Jehoram replaced him as king.</VERS>\n\t\t\t<VERS vnumber=\"2\"> His brothers, Jehoshaphat's sons, were Azariah, Jechiel, Zechariah, Azariahu, Michael, and Shephatiah. All of these were sons of King Jehoshaphat of Israel.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Their father gave them many presents, including silver, gold, and other precious items, along with fortified cities in Judah. But he gave the kingdom to Jehoram because he was the firstborn.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Jehoram took control of his father's kingdom and became powerful. Then he killed all his brothers, as well as some of the officials of Israel. </VERS>\n\t\t\t<VERS vnumber=\"5\"> Jehoram was thirty-two years old when he became king and he reigned for eight years in Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"6\"> He followed in the footsteps of the kings of Israel, just as Ahab's dynasty had done, for he married Ahab's daughter. He did evil in the sight of the LORD. </VERS>\n\t\t\t<VERS vnumber=\"7\"> But the LORD was unwilling to destroy David's dynasty because of the promise he had made to give David a perpetual dynasty.</VERS>\n\t\t\t<VERS vnumber=\"8\"> During Jehoram's reign Edom freed themselves from Judah's control and set up their own king.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Jehoram crossed over to Zair with his officers and all his chariots. The Edomites, who had surrounded him, attacked at night and defeated him and his chariot officers.</VERS>\n\t\t\t<VERS vnumber=\"10\"> So Edom has remained free from Judah's control to this very day. At that same time Libnah also rebelled and freed themselves from Judah's control because Jehoram rejected the LORD God of his ancestors.</VERS>\n\t\t\t<VERS vnumber=\"11\"> He also built high places on the hills of Judah; he encouraged the residents of Jerusalem to be unfaithful to the LORD and led Judah away from the LORD.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Jehoram received this letter from Elijah the prophet: \"This is what the LORD God of your ancestor David says: 'You have not followed in the footsteps of your father Jehoshaphat and of King Asa of Judah,</VERS>\n\t\t\t<VERS vnumber=\"13\"> but have instead followed in the footsteps of the kings of Israel. You encouraged the people of Judah and the residents of Jerusalem to be unfaithful to the LORD, just as the family of Ahab does in Israel. You also killed your brothers, members of your father's family, who were better than you. </VERS>\n\t\t\t<VERS vnumber=\"14\"> So look, the LORD is about to severely afflict your people, your sons, your wives, and all you own. </VERS>\n\t\t\t<VERS vnumber=\"15\"> And you will get a serious, chronic intestinal disease which will cause your intestines to come out.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> The LORD stirred up against Jehoram the Philistines and the Arabs who lived beside the Cushites. </VERS>\n\t\t\t<VERS vnumber=\"17\"> They attacked Judah and swept through it. They carried off everything they found in the royal palace, including his sons and wives. None of his sons was left, except for his youngest, Ahaziah. </VERS>\n\t\t\t<VERS vnumber=\"18\"> After all this happened, the LORD afflicted him with an incurable intestinal disease.</VERS>\n\t\t\t<VERS vnumber=\"19\"> After about two years his intestines came out because of the disease, so that he died a very painful death. His people did not make a bonfire to honor him, as they had done for his ancestors.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Jehoram was thirty-two years old when he became king and he reigned eight years in Jerusalem. No one regretted his death; he was buried in the City of David, but not in the royal tombs.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"22\">\n\t\t\t<VERS vnumber=\"1\"> The residents of Jerusalem made his youngest son Ahaziah king in his place, for the raiding party that invaded the city with the Arabs had killed all the older sons. So Ahaziah son of Jehoram became king of Judah. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Ahaziah was twenty-two years old when he became king and he reigned for one year in Jerusalem. His mother was Athaliah, the granddaughter of Omri. </VERS>\n\t\t\t<VERS vnumber=\"3\"> He followed in the footsteps of Ahab's dynasty, for his mother gave him evil advice.</VERS>\n\t\t\t<VERS vnumber=\"4\"> He did evil in the sight of the LORD like Ahab's dynasty because, after his father's death, they gave him advice that led to his destruction. </VERS>\n\t\t\t<VERS vnumber=\"5\"> He followed their advice and joined Ahab's son King Joram of Israel in a battle against King Hazael of Syria at Ramoth Gilead in which the Syrians defeated Joram.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Joram returned to Jezreel to recover from the wounds he received from the Syrians in Ramah when he fought against King Hazael of Syria. Ahaziah son of King Jehoram of Judah went down to visit Joram son of Ahab in Jezreel, because he had been wounded.</VERS>\n\t\t\t<VERS vnumber=\"7\"> God brought about Ahaziah's downfall through his visit to Joram. When Ahaziah arrived, he went out with Joram to meet Jehu son of Nimshi, whom the LORD had commissioned to wipe out Ahab's family.</VERS>\n\t\t\t<VERS vnumber=\"8\"> While Jehu was dishing out punishment to Ahab's family, he discovered the officials of Judah and the sons of Ahaziah's relatives who were serving Ahaziah and killed them.</VERS>\n\t\t\t<VERS vnumber=\"9\"> He looked for Ahaziah, who was captured while hiding in Samaria. They brought him to Jehu and then executed him. They did give him a burial, for they reasoned, \"He is the son of Jehoshaphat, who sought the LORD with his whole heart.\" There was no one in Ahaziah's family strong enough to rule in his place.</VERS>\n\t\t\t<VERS vnumber=\"10\"> When Athaliah the mother of Ahaziah saw that her son was dead, she was determined to destroy the entire royal line of Judah.</VERS>\n\t\t\t<VERS vnumber=\"11\"> So Jehoshabeath, the daughter of King Jehoram, took Ahaziah's son Joash and sneaked him away from the rest of the royal descendants who were to be executed. She hid him and his nurse in the room where the bed covers were stored. So Jehoshabeath the daughter of King Jehoram, wife of Jehoiada the priest and sister of Ahaziah, hid him from Athaliah so she could not execute him. </VERS>\n\t\t\t<VERS vnumber=\"12\"> He remained in hiding in God's temple for six years, while Athaliah was ruling over the land.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"23\">\n\t\t\t<VERS vnumber=\"1\"> In the seventh year Jehoiada made a bold move. He made a pact with the officers of the units of hundreds: Azariah son of Jehoram, Ishmael son of Jehochanan, Azariah son of Obed, Maaseiah son of Adaiah, and Elishaphat son of Zikri. </VERS>\n\t\t\t<VERS vnumber=\"2\"> They traveled throughout Judah and assembled the Levites from all the cities of Judah, as well as the Israelite family leaders. They came to Jerusalem,</VERS>\n\t\t\t<VERS vnumber=\"3\"> and the whole assembly made a covenant with the king in the temple of God. Jehoiada said to them, \"The king's son will rule, just as the LORD promised David's descendants. </VERS>\n\t\t\t<VERS vnumber=\"4\"> This is what you must do. One third of you priests and Levites who are on duty during the Sabbath will guard the doors.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Another third of you will be stationed at the royal palace and still another third at the Foundation Gate. All the others will stand in the courtyards of the LORD's temple. </VERS>\n\t\t\t<VERS vnumber=\"6\"> No one must enter the LORD's temple except the priests and Levites who are on duty. They may enter because they are ceremonially pure. All the others should carry out their assigned service to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The Levites must surround the king. Each of you must hold his weapon in his hand. Whoever tries to enter the temple must be killed. You must accompany the king wherever he goes.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> The Levites and all the men of Judah did just as Jehoiada the priest ordered. Each of them took his men, those who were on duty during the Sabbath as well as those who were off duty on the Sabbath. Jehoiada the priest did not release his divisions from their duties. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Jehoiada the priest gave to the officers of the units of hundreds King David's spears and shields that were kept in God's temple. </VERS>\n\t\t\t<VERS vnumber=\"10\"> He placed the men at their posts, each holding his weapon in his hand. They lined up from the south side of the temple to the north side and stood near the altar and the temple, surrounding the king.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Jehoiada and his sons led out the king's son and placed on him the crown and the royal insignia. They proclaimed him king and poured olive oil on his head. They declared, \"Long live the king!\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> When Athaliah heard the royal guard shouting and praising the king, she joined the crowd at the LORD's temple. </VERS>\n\t\t\t<VERS vnumber=\"13\"> Then she saw the king standing by his pillar at the entrance. The officers and trumpeters stood beside the king and all the people of the land were celebrating and blowing trumpets, and the musicians with various instruments were leading the celebration. Athaliah tore her clothes and yelled, \"Treason! Treason!\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> Jehoiada the priest sent out the officers of the units of hundreds, who were in charge of the army, and ordered them, \"Bring her outside the temple to the guards. Put the sword to anyone who follows her.\" The priest gave this order because he had decided she should not be executed in the LORD's temple.</VERS>\n\t\t\t<VERS vnumber=\"15\"> They seized her and took her into the precincts of the royal palace through the horses' entrance. There they executed her.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Jehoiada then drew up a covenant stipulating that he, all the people, and the king should be loyal to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"17\"> All the people went and demolished the temple of Baal. They smashed its altars and idols. They killed Mattan the priest of Baal in front of the altars. </VERS>\n\t\t\t<VERS vnumber=\"18\"> Jehoiada then assigned the duties of the LORD's temple to the priests, the Levites whom David had assigned to the LORD's temple. They were responsible for offering burnt sacrifices to the LORD with joy and music, according to the law of Moses and the edict of David. </VERS>\n\t\t\t<VERS vnumber=\"19\"> He posted guards at the gates of the LORD's temple, so no one who was ceremonially unclean in any way could enter.</VERS>\n\t\t\t<VERS vnumber=\"20\"> He summoned the officers of the units of hundreds, the nobles, the rulers of the people, and all the people of land, and he then led the king down from the LORD's temple. They entered the royal palace through the Upper Gate and seated the king on the royal throne. </VERS>\n\t\t\t<VERS vnumber=\"21\"> All the people of the land celebrated, for the city had rest now that they had killed Athaliah.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"24\">\n\t\t\t<VERS vnumber=\"1\"> Joash was seven years old when he began to reign. He reigned for forty years in Jerusalem. His mother was Zibiah, who was from Beer Sheba. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Joash did what the LORD approved throughout the lifetime of Jehoiada the priest. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Jehoiada chose two wives for him who gave him sons and daughters.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Joash was determined to repair the LORD's temple.</VERS>\n\t\t\t<VERS vnumber=\"5\"> He assembled the priests and Levites and ordered them, \"Go out to the cities of Judah and collect the annual quota of silver from all Israel for repairs on the temple of your God. Be quick about it!\" But the Levites delayed.</VERS>\n\t\t\t<VERS vnumber=\"6\"> So the king summoned Jehoiada the chief priest, and said to him, \"Why have you not made the Levites collect from Judah and Jerusalem the tax authorized by Moses the LORD's servant and by the assembly of Israel at the tent containing the tablets of the law?\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> (Wicked Athaliah and her sons had broken into God's temple and used all the holy items of the LORD's temple in their worship of the Baals.)</VERS>\n\t\t\t<VERS vnumber=\"8\"> The king ordered a chest to be made and placed outside the gate of the LORD's temple.</VERS>\n\t\t\t<VERS vnumber=\"9\"> An edict was sent throughout Judah and Jerusalem requiring the people to bring to the LORD the tax that Moses, God's servant, imposed on Israel in the wilderness.</VERS>\n\t\t\t<VERS vnumber=\"10\"> All the officials and all the people gladly brought their silver and threw it into the chest until it was full.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Whenever the Levites brought the chest to the royal accountant and they saw there was a lot of silver, the royal scribe and the accountant of the high priest emptied the chest and then took it back to its place. They went through this routine every day and collected a large amount of silver.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The king and Jehoiada gave it to the construction foremen assigned to the LORD's temple. They hired carpenters and craftsmen to repair the LORD's temple, as well as those skilled in working with iron and bronze to restore the LORD's temple. </VERS>\n\t\t\t<VERS vnumber=\"13\"> They worked hard and made the repairs. They followed the measurements specified for God's temple and restored it.</VERS>\n\t\t\t<VERS vnumber=\"14\"> When they were finished, they brought the rest of the silver to the king and Jehoiada. They used it to make items for the LORD's temple, including items used in the temple service and for burnt sacrifices, pans, and various other gold and silver items. Throughout Jehoiada's lifetime, burnt sacrifices were offered regularly in the LORD's temple.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Jehoiada grew old and died at the age of 130.</VERS>\n\t\t\t<VERS vnumber=\"16\"> He was buried in the City of David with the kings, because he had accomplished good in Israel and for God and his temple.</VERS>\n\t\t\t<VERS vnumber=\"17\"> After Jehoiada died, the officials of Judah visited the king and declared their loyalty to him. The king listened to their advice.</VERS>\n\t\t\t<VERS vnumber=\"18\"> They abandoned the temple of the LORD God of their ancestors, and worshiped the Asherah poles and idols. Because of this sinful activity, God was angry with Judah and Jerusalem. </VERS>\n\t\t\t<VERS vnumber=\"19\"> The LORD sent prophets among them to lead them back to him. They warned the people, but they would not pay attention. </VERS>\n\t\t\t<VERS vnumber=\"20\"> God's Spirit energized Zechariah son of Jehoiada the priest. He stood up before the people and said to them, \"This is what God says: 'Why are you violating the commands of the LORD? You will not be prosperous! Because you have rejected the LORD, he has rejected you!'\" </VERS>\n\t\t\t<VERS vnumber=\"21\"> They plotted against him and by royal decree stoned him to death in the courtyard of the LORD's temple.</VERS>\n\t\t\t<VERS vnumber=\"22\"> King Joash disregarded the loyalty his father Jehoiada had shown him and killed Jehoiada's son. As Zechariah was dying, he said, \"May the LORD take notice and seek vengeance!\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> At the beginning of the year the Syrian army attacked Joash and invaded Judah and Jerusalem. They wiped out all the leaders of the people and sent all the plunder they gathered to the king of Damascus. </VERS>\n\t\t\t<VERS vnumber=\"24\"> Even though the invading Syrian army was relatively weak, the LORD handed over to them Judah's very large army, for the people of Judah had abandoned the LORD God of their ancestors. The Syrians gave Joash what he deserved.</VERS>\n\t\t\t<VERS vnumber=\"25\"> When they withdrew, they left Joash badly wounded. His servants plotted against him because of what he had done to the son of Jehoiada the priest. They murdered him on his bed. Thus he died and was buried in the City of David, but not in the tombs of the kings. </VERS>\n\t\t\t<VERS vnumber=\"26\"> The conspirators were Zabad son of Shimeath (an Ammonite woman) and Jehozabad son of Shimrith (a Moabite woman).</VERS>\n\t\t\t<VERS vnumber=\"27\"> The list of Joash's sons, the many prophetic oracles pertaining to him, and the account of his building project on God's temple are included in the record of the Scroll of the Kings. His son Amaziah replaced him as king.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"25\">\n\t\t\t<VERS vnumber=\"1\"> Amaziah was twenty-five years old when he began to reign, and he reigned for twenty-nine years in Jerusalem. His mother was Jehoaddan, who was from Jerusalem. </VERS>\n\t\t\t<VERS vnumber=\"2\"> He did what the LORD approved, but not with wholehearted devotion.</VERS>\n\t\t\t<VERS vnumber=\"3\"> When he had secured control of the kingdom, he executed the servants who had assassinated his father.</VERS>\n\t\t\t<VERS vnumber=\"4\"> However, he did not execute their sons. He obeyed the LORD's commandment as recorded in the law scroll of Moses, \"Fathers must not be executed for what their sons do, and sons must not be executed for what their fathers do. A man must be executed only for his own sin.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> Amaziah assembled the people of Judah and assigned them by families to the commanders of units of a thousand and the commanders of units of a hundred for all Judah and Benjamin. He counted those twenty years old and up and discovered there were 300,000 young men of fighting age equipped with spears and shields.</VERS>\n\t\t\t<VERS vnumber=\"6\"> He hired 100,000 Israelite warriors for a hundred talents of silver.</VERS>\n\t\t\t<VERS vnumber=\"7\"> But a prophet visited him and said: \"O king, the Israelite troops must not go with you, for the LORD is not with Israel or any of the Ephraimites.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Even if you go and fight bravely in battle, God will defeat you before the enemy. God is capable of helping or defeating.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> Amaziah asked the prophet: \"But what should I do about the hundred talents of silver I paid the Israelite troops?\" The prophet replied, \"The LORD is capable of giving you more than that.\" </VERS>\n\t\t\t<VERS vnumber=\"10\"> So Amaziah dismissed the troops that had come to him from Ephraim and sent them home. They were very angry at Judah and returned home incensed. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Amaziah boldly led his army to the Valley of Salt, where he defeated 10,000 Edomites.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The men of Judah captured 10,000 men alive. They took them to the top of a cliff and threw them over. All the captives fell to their death.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Now the troops Amaziah had dismissed and had not allowed to fight in the battle raided the cities of Judah from Samaria to Beth Horon. They killed 3,000 people and carried off a large amount of plunder.</VERS>\n\t\t\t<VERS vnumber=\"14\"> When Amaziah returned from defeating the Edomites, he brought back the gods of the people of Seir and made them his personal gods. He bowed down before them and offered them sacrifices. </VERS>\n\t\t\t<VERS vnumber=\"15\"> The LORD was angry at Amaziah and sent a prophet to him, who said, \"Why are you following these gods that could not deliver their own people from your power?\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> While he was speaking, Amaziah said to him, \"Did we appoint you to be a royal counselor? Stop prophesying or else you will be killed!\" So the prophet stopped, but added, \"I know that the LORD has decided to destroy you, because you have done this thing and refused to listen to my advice.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> After King Amaziah of Judah consulted with his advisers, he sent this message to the king of Israel, Joash son of Jehoahaz, the son of Jehu, \"Come, face me on the battlefield.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> King Joash of Israel sent this message back to King Amaziah of Judah, \"A thorn bush in Lebanon sent this message to a cedar in Lebanon, 'Give your daughter to my son as a wife.' Then a wild animal of Lebanon came by and trampled down the thorn bush.</VERS>\n\t\t\t<VERS vnumber=\"19\"> You defeated Edom and it has gone to your head. Gloat over your success, but stay in your palace. Why bring calamity on yourself? Why bring down yourself and Judah along with you?\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> But Amaziah did not heed the warning, for God wanted to hand them over to Joash because they followed the gods of Edom.</VERS>\n\t\t\t<VERS vnumber=\"21\"> So King Joash of Israel attacked. He and King Amaziah of Judah faced each other on the battlefield in Beth Shemesh of Judah. </VERS>\n\t\t\t<VERS vnumber=\"22\"> Judah was defeated by Israel, and each man ran back home.</VERS>\n\t\t\t<VERS vnumber=\"23\"> King Joash of Israel captured King Amaziah of Judah, son of Joash son of Jehoahaz, in Beth Shemesh and brought him to Jerusalem. He broke down the wall of Jerusalem from the Gate of Ephraim to the Corner Gate, a distance of about six hundred feet.</VERS>\n\t\t\t<VERS vnumber=\"24\"> He took away all the gold and silver, all the items found in God's temple that were in the care of Obed-Edom, the riches in the royal palace, and some hostages. Then he went back to Samaria.</VERS>\n\t\t\t<VERS vnumber=\"25\"> King Amaziah son of Joash of Judah lived for fifteen years after the death of King Joash son of Jehoahaz of Israel.</VERS>\n\t\t\t<VERS vnumber=\"26\"> The rest of the events of Amaziah's reign, from start to finish, are recorded in the Scroll of the Kings of Judah and Israel.</VERS>\n\t\t\t<VERS vnumber=\"27\"> From the time Amaziah turned from following the LORD, conspirators plotted against him in Jerusalem, so he fled to Lachish. But they sent assassins after him and they killed him there. </VERS>\n\t\t\t<VERS vnumber=\"28\"> His body was carried back by horses, and he was buried in Jerusalem with his ancestors in the City of David.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"26\">\n\t\t\t<VERS vnumber=\"1\"> All the people of Judah took Uzziah, who was sixteen years old, and made him king in his father Amaziah's place. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Uzziah built up Elat and restored it to Judah after King Amaziah had passed away.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Uzziah was sixteen years old when he began to reign, and he reigned for fifty-two years in Jerusalem. His mother's name was Jecholiah, who was from Jerusalem. </VERS>\n\t\t\t<VERS vnumber=\"4\"> He did what the LORD approved, just as his father Amaziah had done.</VERS>\n\t\t\t<VERS vnumber=\"5\"> He followed God during the lifetime of Zechariah, who taught him how to honor God. As long as he followed the LORD, God caused him to succeed.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Uzziah attacked the Philistines and broke down the walls of Gath, Jabneh, and Ashdod. He built cities in the region of Ashdod and throughout Philistine territory.</VERS>\n\t\t\t<VERS vnumber=\"7\"> God helped him in his campaigns against the Philistines, the Arabs living in Gur Baal, and the Meunites. </VERS>\n\t\t\t<VERS vnumber=\"8\"> The Ammonites paid tribute to Uzziah and his fame reached the border of Egypt, for he grew in power.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Uzziah built and fortified towers in Jerusalem at the Corner Gate, Valley Gate, and at the Angle.</VERS>\n\t\t\t<VERS vnumber=\"10\"> He built towers in the desert and dug many cisterns, for he owned many herds in the lowlands and on the plain. He had workers in the fields and vineyards in the hills and in Carmel, for he loved agriculture.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Uzziah had an army of skilled warriors trained for battle. They were organized by divisions according to the muster rolls made by Jeiel the scribe and Maaseiah the officer under the authority of Hananiah, a royal official.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The total number of family leaders who led warriors was 2,600.</VERS>\n\t\t\t<VERS vnumber=\"13\"> They commanded an army of 307,500 skilled and able warriors who were ready to defend the king against his enemies. </VERS>\n\t\t\t<VERS vnumber=\"14\"> Uzziah supplied shields, spears, helmets, breastplates, bows, and slingstones for the entire army.</VERS>\n\t\t\t<VERS vnumber=\"15\"> In Jerusalem he made war machines carefully designed to shoot arrows and large stones from the towers and corners of the walls. He became very famous, for he received tremendous support and became powerful.</VERS>\n\t\t\t<VERS vnumber=\"16\"> But once he became powerful, his pride destroyed him. He disobeyed the LORD his God. He entered the LORD's temple to offer incense on the incense altar. </VERS>\n\t\t\t<VERS vnumber=\"17\"> Azariah the priest and eighty other brave priests of the LORD followed him in.</VERS>\n\t\t\t<VERS vnumber=\"18\"> They confronted King Uzziah and said to him, \"It is not proper for you, Uzziah, to offer incense to the LORD. That is the responsibility of the priests, the descendants of Aaron, who are consecrated to offer incense. Leave the sanctuary, for you have disobeyed and the LORD God will not honor you!\" </VERS>\n\t\t\t<VERS vnumber=\"19\"> Uzziah, who had an incense censer in his hand, became angry. While he was ranting and raving at the priests, a skin disease appeared on his forehead right there in front of the priests in the LORD's temple near the incense altar. </VERS>\n\t\t\t<VERS vnumber=\"20\"> When Azariah the high priest and the other priests looked at him, there was a skin disease on his forehead. They hurried him out of there; even the king himself wanted to leave quickly because the LORD had afflicted him. </VERS>\n\t\t\t<VERS vnumber=\"21\"> King Uzziah suffered from a skin disease until the day he died. He lived in separate quarters, afflicted by a skin disease and banned from the LORD's temple. His son Jotham was in charge of the palace and ruled over the people of the land.</VERS>\n\t\t\t<VERS vnumber=\"22\"> The rest of the events of Uzziah's reign, from start to finish, were recorded by the prophet Isaiah son of Amoz.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Uzziah passed away and was buried near his ancestors in a cemetery belonging to the kings. (This was because he had a skin disease.) His son Jotham replaced him as king.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"27\">\n\t\t\t<VERS vnumber=\"1\"> Jotham was twenty-five years old when he began to reign, and he reigned for sixteen years in Jerusalem. His mother was Jerusha the daughter of Zadok. </VERS>\n\t\t\t<VERS vnumber=\"2\"> He did what the LORD approved, just as his father Uzziah had done. (He did not, however, have the audacity to enter the temple.) Yet the people were still sinning.</VERS>\n\t\t\t<VERS vnumber=\"3\"> He built the Upper Gate to the LORD's temple and did a lot of work on the wall in the area known as Ophel.</VERS>\n\t\t\t<VERS vnumber=\"4\"> He built cities in the hill country of Judah and fortresses and towers in the forests.</VERS>\n\t\t\t<VERS vnumber=\"5\"> He launched a military campaign against the king of the Ammonites and defeated them. That year the Ammonites paid him 100 talents of silver, 10,000 kors of wheat, and 10,000 kors of barley. The Ammonites also paid this same amount of annual tribute the next two years.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Jotham grew powerful because he was determined to please the LORD his God.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The rest of the events of Jotham's reign, including all his military campaigns and his accomplishments, are recorded in the scroll of the kings of Israel and Judah.</VERS>\n\t\t\t<VERS vnumber=\"8\"> He was twenty-five years old when he began to reign, and he reigned for sixteen years in Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Jotham passed away and was buried in the City of David. His son Ahaz replaced him as king.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"28\">\n\t\t\t<VERS vnumber=\"1\"> Ahaz was twenty years old when he began to reign, and he reigned for sixteen years in Jerusalem. He did not do what pleased the LORD, in contrast to his ancestor David.</VERS>\n\t\t\t<VERS vnumber=\"2\"> He followed in the footsteps of the kings of Israel; he also made images of the Baals. </VERS>\n\t\t\t<VERS vnumber=\"3\"> He offered sacrifices in the Valley of Ben-Hinnom and passed his sons through the fire, a horrible sin practiced by the nations whom the LORD drove out before the Israelites. </VERS>\n\t\t\t<VERS vnumber=\"4\"> He offered sacrifices and burned incense on the high places, on the hills, and under every green tree.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The LORD his God handed him over to the king of Syria. The Syrians defeated him and deported many captives to Damascus. He was also handed over to the king of Israel, who thoroughly defeated him.</VERS>\n\t\t\t<VERS vnumber=\"6\"> In one day King Pekah son of Remaliah of Israel killed 120,000 warriors in Judah, because they had abandoned the LORD God of their ancestors.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Zikri, an Ephraimite warrior, killed the king's son Maaseiah, Azrikam, the supervisor of the palace, and Elkanah, the king's second-in-command.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The Israelites seized from their brothers 200,000 wives, sons, and daughters. They also carried off a huge amount of plunder and took it back to Samaria.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Oded, a prophet of the LORD, was there. He went to meet the army as they arrived in Samaria and said to them: \"Look, because the LORD God of your ancestors was angry with Judah he handed them over to you. You have killed them so mercilessly that God has taken notice.</VERS>\n\t\t\t<VERS vnumber=\"10\"> And now you are planning to enslave the people of Judah and Jerusalem. Yet are you not also guilty before the LORD your God? </VERS>\n\t\t\t<VERS vnumber=\"11\"> Now listen to me! Send back those you have seized from your brothers, for the LORD is very angry at you!\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> So some of the Ephraimite family leaders, Azariah son of Jehochanan, Berechiah son of Meshillemoth, Jechizkiah son of Shallum, and Amasa son of Hadlai confronted those returning from the battle. </VERS>\n\t\t\t<VERS vnumber=\"13\"> They said to them, \"Don't bring those captives here! Are you planning on making us even more sinful and guilty before the LORD? Our guilt is already great and the LORD is very angry at Israel.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> So the soldiers released the captives and the plunder before the officials and the entire assembly.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Men were assigned to take the prisoners and find clothes among the plunder for those who were naked. So they clothed them, supplied them with sandals, gave them food and drink, and provided them with oil to rub on their skin. They put the ones who couldn't walk on donkeys. They brought them back to their brothers at Jericho, the city of the date palm trees, and then returned to Samaria.</VERS>\n\t\t\t<VERS vnumber=\"16\"> At that time King Ahaz asked the king of Assyria for help. </VERS>\n\t\t\t<VERS vnumber=\"17\"> The Edomites had again invaded and defeated Judah and carried off captives.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The Philistines had raided the cities of Judah in the lowlands and the Negev. They captured and settled in Beth Shemesh, Aijalon, Gederoth, Soco and its surrounding villages, Timnah and its surrounding villages, and Gimzo and its surrounding villages. </VERS>\n\t\t\t<VERS vnumber=\"19\"> The LORD humiliated Judah because of King Ahaz of Israel, for he encouraged Judah to sin and was very unfaithful to the LORD. </VERS>\n\t\t\t<VERS vnumber=\"20\"> King Tiglath-pileser of Assyria came, but he gave him more trouble than support.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Ahaz gathered riches from the LORD's temple, the royal palace, and the officials and gave them to the king of Assyria, but that did not help.</VERS>\n\t\t\t<VERS vnumber=\"22\"> During his time of trouble King Ahaz was even more unfaithful to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"23\"> He offered sacrifices to the gods of Damascus whom he thought had defeated him. He reasoned, \"Since the gods of the kings of Damascus helped them, I will sacrifice to them so they will help me.\" But they caused him and all Israel to stumble. </VERS>\n\t\t\t<VERS vnumber=\"24\"> Ahaz gathered the items in God's temple and removed them. He shut the doors of the LORD's temple and erected altars on every street corner in Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"25\"> In every city throughout Judah he set up high places to offer sacrifices to other gods. He angered the LORD God of his ancestors.</VERS>\n\t\t\t<VERS vnumber=\"26\"> The rest of the events of Ahaz's reign, including his accomplishments from start to finish, are recorded in the Scroll of the Kings of Judah and Israel.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Ahaz passed away and was buried in the City of David; they did not bring him to the tombs of the kings of Israel. His son Hezekiah replaced him as king.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"29\">\n\t\t\t<VERS vnumber=\"1\"> Hezekiah was twenty-five years old when he began to reign, and he reigned twenty-nine years in Jerusalem. His mother was Abijah, the daughter of Zechariah. </VERS>\n\t\t\t<VERS vnumber=\"2\"> He did what the LORD approved, just as his ancestor David had done.</VERS>\n\t\t\t<VERS vnumber=\"3\"> In the first month of the first year of his reign, he opened the doors of the LORD's temple and repaired them.</VERS>\n\t\t\t<VERS vnumber=\"4\"> He brought in the priests and Levites and assembled them in the square on the east side.</VERS>\n\t\t\t<VERS vnumber=\"5\"> He said to them: \"Listen to me, you Levites! Now consecrate yourselves, so you can consecrate the temple of the LORD God of your ancestors! Remove from the sanctuary what is ceremonially unclean! </VERS>\n\t\t\t<VERS vnumber=\"6\"> For our fathers were unfaithful; they did what is evil in the sight of the LORD our God and abandoned him! They turned away from the LORD's dwelling place and rejected him.</VERS>\n\t\t\t<VERS vnumber=\"7\"> They closed the doors of the temple porch and put out the lamps; they did not offer incense or burnt sacrifices in the sanctuary of the God of Israel.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The LORD was angry at Judah and Jerusalem and made them an appalling object of horror at which people hiss out their scorn, as you can see with your own eyes. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Look, our fathers died violently and our sons, daughters, and wives were carried off because of this. </VERS>\n\t\t\t<VERS vnumber=\"10\"> Now I intend to make a covenant with the LORD God of Israel, so that he may relent from his raging anger.</VERS>\n\t\t\t<VERS vnumber=\"11\"> My sons, do not be negligent now, for the LORD has chosen you to serve in his presence and offer sacrifices.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> The following Levites prepared to carry out the king's orders: From the Kohathites: Mahath son of Amasai and Joel son of Azariah; from the Merarites: Kish son of Abdi and Azariah son of Jehallelel; from the Gershonites: Joah son of Zimmah and Eden son of Joah;</VERS>\n\t\t\t<VERS vnumber=\"13\"> from the descendants of Elizaphan: Shimri and Jeiel; from the descendants of Asaph: Zechariah and Mattaniah;</VERS>\n\t\t\t<VERS vnumber=\"14\"> from the descendants of Heman: Jehiel and Shimei; from the descendants of Jeduthun: Shemaiah and Uzziel.</VERS>\n\t\t\t<VERS vnumber=\"15\"> They assembled their brothers and consecrated themselves. Then they went in to purify the LORD's temple, just as the king had ordered, in accordance with the word of the LORD. </VERS>\n\t\t\t<VERS vnumber=\"16\"> The priests then entered the LORD's temple to purify it; they brought out to the courtyard of the LORD's temple every ceremonially unclean thing they discovered inside. The Levites took them out to the Kidron Valley.</VERS>\n\t\t\t<VERS vnumber=\"17\"> On the first day of the first month they began consecrating; by the eighth day of the month they reached the porch of the LORD's temple. For eight more days they consecrated the LORD's temple. On the sixteenth day of the first month they were finished. </VERS>\n\t\t\t<VERS vnumber=\"18\"> They went to King Hezekiah and said: \"We have purified the entire temple of the LORD, including the altar of burnt sacrifice and all its equipment, and the table for the Bread of the Presence and all its equipment.</VERS>\n\t\t\t<VERS vnumber=\"19\"> We have prepared and consecrated all the items that King Ahaz removed during his reign when he acted unfaithfully. They are in front of the altar of the LORD.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> Early the next morning King Hezekiah assembled the city officials and went up to the LORD's temple.</VERS>\n\t\t\t<VERS vnumber=\"21\"> They brought seven bulls, seven rams, seven lambs, and seven goats as a sin offering for the kingdom, the sanctuary, and Judah. The king told the priests, the descendants of Aaron, to offer burnt sacrifices on the altar of the LORD. </VERS>\n\t\t\t<VERS vnumber=\"22\"> They slaughtered the bulls, and the priests took the blood and splashed it on the altar. Then they slaughtered the rams and splashed the blood on the altar; next they slaughtered the lambs and splashed the blood on the altar.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Finally they brought the goats for the sin offering before the king and the assembly, and they placed their hands on them.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Then the priests slaughtered them. They offered their blood as a sin offering on the altar to make atonement for all Israel, because the king had decreed that the burnt sacrifice and sin offering were for all Israel.</VERS>\n\t\t\t<VERS vnumber=\"25\"> King Hezekiah stationed the Levites in the LORD's temple with cymbals and stringed instruments, just as David, Gad the king's prophet, and Nathan the prophet had ordered. (The LORD had actually given these orders through his prophets.) </VERS>\n\t\t\t<VERS vnumber=\"26\"> The Levites had David's musical instruments and the priests had trumpets. </VERS>\n\t\t\t<VERS vnumber=\"27\"> Hezekiah ordered the burnt sacrifice to be offered on the altar. As they began to offer the sacrifice, they also began to sing to the LORD, accompanied by the trumpets and the musical instruments of King David of Israel.</VERS>\n\t\t\t<VERS vnumber=\"28\"> The entire assembly worshiped, as the singers sang and the trumpeters played. They continued until the burnt sacrifice was completed.</VERS>\n\t\t\t<VERS vnumber=\"29\"> When the sacrifices were completed, the king and all who were with him bowed down and worshiped.</VERS>\n\t\t\t<VERS vnumber=\"30\"> King Hezekiah and the officials told the Levites to praise the LORD, using the psalms of David and Asaph the prophet. So they joyfully offered praise and bowed down and worshiped. </VERS>\n\t\t\t<VERS vnumber=\"31\"> Hezekiah said, \"Now you have consecrated yourselves to the LORD. Come and bring sacrifices and thank offerings to the LORD's temple.\" So the assembly brought sacrifices and thank offerings, and whoever desired to do so brought burnt sacrifices.</VERS>\n\t\t\t<VERS vnumber=\"32\"> The assembly brought a total of 70 bulls, 100 rams, and 200 lambs as burnt sacrifices to the LORD,</VERS>\n\t\t\t<VERS vnumber=\"33\"> and 600 bulls and 3,000 sheep were consecrated. </VERS>\n\t\t\t<VERS vnumber=\"34\"> But there were not enough priests to skin all the animals, so their brothers, the Levites, helped them until the work was finished and the priests could consecrate themselves. (The Levites had been more conscientious about consecrating themselves than the priests.)</VERS>\n\t\t\t<VERS vnumber=\"35\"> There was a large number of burnt sacrifices, as well as fat from the peace offerings and drink offerings that accompanied the burnt sacrifices. So the service of the LORD's temple was reinstituted.</VERS>\n\t\t\t<VERS vnumber=\"36\"> Hezekiah and all the people were happy about what God had done for them, for it had been done quickly.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"30\">\n\t\t\t<VERS vnumber=\"1\"> Hezekiah sent messages throughout Israel and Judah; he even wrote letters to Ephraim and Manasseh, summoning them to come to the LORD's temple in Jerusalem and observe a Passover celebration for the LORD God of Israel. </VERS>\n\t\t\t<VERS vnumber=\"2\"> The king, his officials, and the entire assembly in Jerusalem decided to observe the Passover in the second month.</VERS>\n\t\t\t<VERS vnumber=\"3\"> They were unable to observe it at the regular time because not enough priests had consecrated themselves and the people had not assembled in Jerusalem. </VERS>\n\t\t\t<VERS vnumber=\"4\"> The proposal seemed appropriate to the king and the entire assembly. </VERS>\n\t\t\t<VERS vnumber=\"5\"> So they sent an edict throughout Israel from Beer Sheba to Dan, summoning the people to come and observe a Passover for the LORD God of Israel in Jerusalem, for they had not observed it on a nationwide scale as prescribed in the law.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Messengers delivered the letters from the king and his officials throughout Israel and Judah. This royal edict read: \"O Israelites, return to the LORD God of Abraham, Isaac, and Israel, so he may return to you who have been spared from the kings of Assyria.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Don't be like your fathers and brothers who were unfaithful to the LORD God of their ancestors, provoking him to destroy them, as you can see. </VERS>\n\t\t\t<VERS vnumber=\"8\"> Now, don't be stubborn like your fathers! Submit to the LORD and come to his sanctuary which he has permanently consecrated. Serve the LORD your God so that he might relent from his raging anger.</VERS>\n\t\t\t<VERS vnumber=\"9\"> For if you return to the LORD, your brothers and sons will be shown mercy by their captors and return to this land. The LORD your God is merciful and compassionate; he will not reject you if you return to him.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> The messengers journeyed from city to city through the land of Ephraim and Manasseh as far as Zebulun, but people mocked and ridiculed them.</VERS>\n\t\t\t<VERS vnumber=\"11\"> But some men from Asher, Manasseh, and Zebulun humbled themselves and came to Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"12\"> In Judah God moved the people to unite and carry out the edict the king and the officers had issued at the LORD's command.</VERS>\n\t\t\t<VERS vnumber=\"13\"> A huge crowd assembled in Jerusalem to observe the Feast of Unleavened Bread in the second month.</VERS>\n\t\t\t<VERS vnumber=\"14\"> They removed the altars in Jerusalem; they also removed all the incense altars and threw them into the Kidron Valley.</VERS>\n\t\t\t<VERS vnumber=\"15\"> They slaughtered the Passover lamb on the fourteenth day of the second month. The priests and Levites were ashamed, so they consecrated themselves and brought burnt sacrifices to the LORD's temple.</VERS>\n\t\t\t<VERS vnumber=\"16\"> They stood at their posts according to the regulations outlined in the law of Moses, the man of God. The priests were splashing the blood as the Levites handed it to them.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Because many in the assembly had not consecrated themselves, the Levites slaughtered the Passover lambs of all who were ceremonially unclean and could not consecrate their sacrifice to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The majority of the many people from Ephraim, Manasseh, Issachar, and Zebulun were ceremonially unclean, yet they ate the Passover in violation of what is prescribed in the law. For Hezekiah prayed for them, saying: \"May the LORD, who is good, forgive</VERS>\n\t\t\t<VERS vnumber=\"19\"> everyone who has determined to follow God, the LORD God of his ancestors, even if he is not ceremonially clean according to the standards of the temple.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> The LORD responded favorably to Hezekiah and forgave the people.</VERS>\n\t\t\t<VERS vnumber=\"21\"> The Israelites who were in Jerusalem observed the Feast of Unleavened Bread for seven days with great joy. The Levites and priests were praising the LORD every day with all their might.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Hezekiah expressed his appreciation to all the Levites, who demonstrated great skill in serving the LORD. They feasted for the seven days of the festival, and were making peace offerings and giving thanks to the LORD God of their ancestors.</VERS>\n\t\t\t<VERS vnumber=\"23\"> The entire assembly then decided to celebrate for seven more days; so they joyfully celebrated for seven more days.</VERS>\n\t\t\t<VERS vnumber=\"24\"> King Hezekiah of Judah supplied 1,000 bulls and 7,000 sheep for the assembly, while the officials supplied them with 1,000 bulls and 10,000 sheep. Many priests consecrated themselves. </VERS>\n\t\t\t<VERS vnumber=\"25\"> The celebration included the entire assembly of Judah, the priests, the Levites, the entire assembly of those who came from Israel, the resident foreigners who came from the land of Israel, and the residents of Judah. </VERS>\n\t\t\t<VERS vnumber=\"26\"> There was a great celebration in Jerusalem, unlike anything that had occurred in Jerusalem since the time of King Solomon son of David of Israel.</VERS>\n\t\t\t<VERS vnumber=\"27\"> The priests and Levites got up and pronounced blessings on the people. The LORD responded favorably to them as their prayers reached his holy dwelling place in heaven.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"31\">\n\t\t\t<VERS vnumber=\"1\"> When all this was over, the Israelites who were in the cities of Judah went out and smashed the sacred pillars, cut down the Asherah poles, and demolished all the high places and altars throughout Judah, Benjamin, Ephraim, and Manasseh. Then all the Israelites returned to their own homes in their cities.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Hezekiah appointed the divisions of the priests and Levites to do their assigned tasks, to offer burnt sacrifices and present offerings and to serve, give thanks, and offer praise in the gates of the LORD's sanctuary.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The king contributed some of what he owned for burnt sacrifices, including the morning and evening burnt sacrifices and the burnt sacrifices made on Sabbaths, new moon festivals, and at other appointed times prescribed in the law of the LORD. </VERS>\n\t\t\t<VERS vnumber=\"4\"> He ordered the people living in Jerusalem to contribute the portion prescribed for the priests and Levites so they might be obedient to the law of the LORD. </VERS>\n\t\t\t<VERS vnumber=\"5\"> When the edict was issued, the Israelites freely contributed the initial portion of their grain, wine, olive oil, honey, and all the produce of their fields. They brought a tenth of everything, which added up to a huge amount. </VERS>\n\t\t\t<VERS vnumber=\"6\"> The Israelites and people of Judah who lived in the cities of Judah also contributed a tenth of their cattle and sheep, as well as a tenth of the holy items consecrated to the LORD their God. They brought them and placed them in many heaps.</VERS>\n\t\t\t<VERS vnumber=\"7\"> In the third month they began piling their contributions in heaps and finished in the seventh month. </VERS>\n\t\t\t<VERS vnumber=\"8\"> When Hezekiah and the officials came and saw the heaps, they praised the LORD and pronounced blessings on his people Israel.</VERS>\n\t\t\t<VERS vnumber=\"9\"> When Hezekiah asked the priests and Levites about the heaps,</VERS>\n\t\t\t<VERS vnumber=\"10\"> Azariah, the head priest from the family of Zadok, said to him, \"Since the contributions began arriving in the LORD's temple, we have had plenty to eat and have a large quantity left over. For the LORD has blessed his people, and this large amount remains.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> Hezekiah ordered that storerooms be prepared in the LORD's temple. When this was done,</VERS>\n\t\t\t<VERS vnumber=\"12\"> they brought in the contributions, tithes, and consecrated items that had been offered. Konaniah, a Levite, was in charge of all this, assisted by his brother Shimei. </VERS>\n\t\t\t<VERS vnumber=\"13\"> Jehiel, Azaziah, Nahath, Asahel, Jerimoth, Jozabad, Eliel, Ismakiah, Mahath, and Benaiah worked under the supervision of Konaniah and his brother Shimei, as directed by King Hezekiah and Azariah, the supervisor of God's temple.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Kore son of Imnah, a Levite and the guard on the east side, was in charge of the voluntary offerings made to God and disbursed the contributions made to the LORD and the consecrated items.</VERS>\n\t\t\t<VERS vnumber=\"15\"> In the cities of the priests, Eden, Miniamin, Jeshua, Shemaiah, Amariah, and Shecaniah faithfully assisted him in making disbursements to their fellow priests according to their divisions, regardless of age.</VERS>\n\t\t\t<VERS vnumber=\"16\"> They made disbursements to all the males three years old and up who were listed in the genealogical records, to all who would enter the LORD's temple to serve on a daily basis and fulfill their duties as assigned to their divisions.</VERS>\n\t\t\t<VERS vnumber=\"17\"> They made disbursements to the priests listed in the genealogical records by their families, and to the Levites twenty years old and up, according to their duties as assigned to their divisions,</VERS>\n\t\t\t<VERS vnumber=\"18\"> and to all the infants, wives, sons, and daughters of the entire assembly listed in the genealogical records, for they faithfully consecrated themselves.</VERS>\n\t\t\t<VERS vnumber=\"19\"> As for the descendants of Aaron, the priests who lived in the outskirts of all their cities, men were assigned to disburse portions to every male among the priests and to every Levite listed in the genealogical records.</VERS>\n\t\t\t<VERS vnumber=\"20\"> This is what Hezekiah did throughout Judah. He did what the LORD his God considered good and right and faithful.</VERS>\n\t\t\t<VERS vnumber=\"21\"> He wholeheartedly and successfully reinstituted service in God's temple and obedience to the law, in order to follow his God.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"32\">\n\t\t\t<VERS vnumber=\"1\"> After these faithful deeds were accomplished, King Sennacherib of Assyria invaded Judah. He besieged the fortified cities, intending to seize them.</VERS>\n\t\t\t<VERS vnumber=\"2\"> When Hezekiah saw that Sennacherib had invaded and intended to attack Jerusalem,</VERS>\n\t\t\t<VERS vnumber=\"3\"> he consulted with his advisers and military officers about stopping up the springs outside the city, and they supported him. </VERS>\n\t\t\t<VERS vnumber=\"4\"> A large number of people gathered together and stopped up all the springs and the stream that flowed through the district. They reasoned, \"Why should the kings of Assyria come and find plenty of water?\" </VERS>\n\t\t\t<VERS vnumber=\"5\"> Hezekiah energetically rebuilt every broken wall. He erected towers and an outer wall, and fortified the terrace of the City of David. He made many weapons and shields.</VERS>\n\t\t\t<VERS vnumber=\"6\"> He appointed military officers over the army and assembled them in the square at the city gate. He encouraged them, saying, </VERS>\n\t\t\t<VERS vnumber=\"7\"> \"Be strong and brave! Don't be afraid and don't panic because of the king of Assyria and this huge army that is with him! We have with us one who is stronger than those who are with him.</VERS>\n\t\t\t<VERS vnumber=\"8\"> He has with him mere human strength, but the LORD our God is with us to help us and fight our battles!\" The army was encouraged by the words of King Hezekiah of Judah.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Afterward King Sennacherib of Assyria, while attacking Lachish with all his military might, sent his messengers to Jerusalem. The message was for King Hezekiah of Judah and all the people of Judah who were in Jerusalem. It read: </VERS>\n\t\t\t<VERS vnumber=\"10\"> \"This is what King Sennacherib of Assyria says: 'Why are you so confident that you remain in Jerusalem while it is under siege?</VERS>\n\t\t\t<VERS vnumber=\"11\"> Hezekiah says, \"The LORD our God will rescue us from the power of the king of Assyria.\" But he is misleading you and you will die of hunger and thirst!</VERS>\n\t\t\t<VERS vnumber=\"12\"> Hezekiah is the one who eliminated the LORD's high places and altars and then told Judah and Jerusalem, \"At one altar you must worship and offer sacrifices.\" </VERS>\n\t\t\t<VERS vnumber=\"13\"> Are you not aware of what I and my predecessors have done to all the nations of the surrounding lands? Have the gods of the surrounding lands actually been able to rescue their lands from my power?</VERS>\n\t\t\t<VERS vnumber=\"14\"> Who among all the gods of these nations whom my predecessors annihilated was able to rescue his people from my power?</VERS>\n\t\t\t<VERS vnumber=\"15\"> Now don't let Hezekiah deceive you or mislead you like this. Don't believe him, for no god of any nation or kingdom has been able to rescue his people from my power or the power of my predecessors. So how can your gods rescue you from my power?'\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> Sennacherib's servants further insulted the LORD God and his servant Hezekiah. </VERS>\n\t\t\t<VERS vnumber=\"17\"> He wrote letters mocking the LORD God of Israel and insulting him with these words: \"The gods of the surrounding nations could not rescue their people from my power. Neither can Hezekiah's god rescue his people from my power.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> They called out loudly in the Judahite dialect to the people of Jerusalem who were on the wall, trying to scare and terrify them so they could seize the city.</VERS>\n\t\t\t<VERS vnumber=\"19\"> They talked about the God of Jerusalem as if he were one of the man-made gods of the nations of the earth.</VERS>\n\t\t\t<VERS vnumber=\"20\"> King Hezekiah and the prophet Isaiah son of Amoz prayed about this and cried out to heaven.</VERS>\n\t\t\t<VERS vnumber=\"21\"> The LORD sent a messenger and he wiped out all the soldiers, princes, and officers in the army of the king of Assyria. So Sennacherib returned home humiliated. When he entered the temple of his god, some of his own sons struck him down with the sword. </VERS>\n\t\t\t<VERS vnumber=\"22\"> The LORD delivered Hezekiah and the residents of Jerusalem from the power of King Sennacherib of Assyria and from all the other nations. He made them secure on every side.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Many were bringing presents to the LORD in Jerusalem and precious gifts to King Hezekiah of Judah. From that time on he was respected by all the nations.</VERS>\n\t\t\t<VERS vnumber=\"24\"> In those days Hezekiah was stricken with a terminal illness. He prayed to the LORD, who answered him and gave him a sign confirming that he would be healed.</VERS>\n\t\t\t<VERS vnumber=\"25\"> But Hezekiah was ungrateful; he had a proud attitude, provoking God to be angry at him, as well as Judah and Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"26\"> But then Hezekiah and the residents of Jerusalem humbled themselves and abandoned their pride, and the LORD was not angry with them for the rest of Hezekiah's reign.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Hezekiah was very wealthy and greatly respected. He made storehouses for his silver, gold, precious stones, spices, and all his other valuable possessions.</VERS>\n\t\t\t<VERS vnumber=\"28\"> He made storerooms for the harvest of grain, wine, and olive oil, and stalls for all his various kinds of livestock and his flocks.</VERS>\n\t\t\t<VERS vnumber=\"29\"> He built royal cities and owned a large number of sheep and cattle, for God gave him a huge amount of possessions.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Hezekiah dammed up the source of the waters of the Upper Gihon and directed them down to the west side of the City of David. Hezekiah succeeded in all that he did.</VERS>\n\t\t\t<VERS vnumber=\"31\"> So when the envoys arrived from the Babylonian officials to visit him and inquire about the sign that occurred in the land, God left him alone to test him, in order to know his true motives.</VERS>\n\t\t\t<VERS vnumber=\"32\"> The rest of the events of Hezekiah's reign, including his faithful deeds, are recorded in the vision of the prophet Isaiah son of Amoz, included in the Scroll of the Kings of Judah and Israel.</VERS>\n\t\t\t<VERS vnumber=\"33\"> Hezekiah passed away and was buried on the ascent of the tombs of the descendants of David. All the people of Judah and the residents of Jerusalem buried him with great honor. His son Manasseh replaced him as king.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"33\">\n\t\t\t<VERS vnumber=\"1\"> Manasseh was twelve years old when he became king, and he reigned for fifty-five years in Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"2\"> He did evil in the sight of the LORD and committed the same horrible sins practiced by the nations whom the LORD drove out ahead of the Israelites. </VERS>\n\t\t\t<VERS vnumber=\"3\"> He rebuilt the high places that his father Hezekiah had destroyed; he set up altars for the Baals and made Asherah poles. He bowed down to all the stars in the sky and worshiped them. </VERS>\n\t\t\t<VERS vnumber=\"4\"> He built altars in the LORD's temple, about which the LORD had said, \"Jerusalem will be my permanent home.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> In the two courtyards of the LORD's temple he built altars for all the stars in the sky.</VERS>\n\t\t\t<VERS vnumber=\"6\"> He passed his sons through the fire in the Valley of Ben-Hinnom and practiced divination, omen reading, and sorcery. He set up a ritual pit to conjure up underworld spirits and appointed magicians to supervise it. He did a great amount of evil in the sight of the LORD and angered him.</VERS>\n\t\t\t<VERS vnumber=\"7\"> He put an idolatrous image he had made in God's temple, about which God had said to David and to his son Solomon, \"This temple in Jerusalem, which I have chosen out of all the tribes of Israel, will be my permanent home.</VERS>\n\t\t\t<VERS vnumber=\"8\"> I will not make Israel again leave the land I gave to their ancestors, provided that they carefully obey all I commanded them, the whole law, the rules and regulations given to Moses.\" </VERS>\n\t\t\t<VERS vnumber=\"9\"> But Manasseh misled the people of Judah and the residents of Jerusalem so that they sinned more than the nations whom the LORD had destroyed ahead of the Israelites.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The LORD confronted Manasseh and his people, but they paid no attention. </VERS>\n\t\t\t<VERS vnumber=\"11\"> So the LORD brought against them the commanders of the army of the king of Assyria. They seized Manasseh, put hooks in his nose, bound him with bronze chains, and carried him away to Babylon. </VERS>\n\t\t\t<VERS vnumber=\"12\"> In his pain Manasseh asked the LORD his God for mercy and truly humbled himself before the God of his ancestors.</VERS>\n\t\t\t<VERS vnumber=\"13\"> When he prayed to the LORD, the LORD responded to him and answered favorably his cry for mercy. The LORD brought him back to Jerusalem to his kingdom. Then Manasseh realized that the LORD is the true God.</VERS>\n\t\t\t<VERS vnumber=\"14\"> After this Manasseh built up the outer wall of the City of David on the west side of the Gihon in the valley to the entrance of the Fish Gate and all around the terrace; he made it much higher. He placed army officers in all the fortified cities in Judah.</VERS>\n\t\t\t<VERS vnumber=\"15\"> He removed the foreign gods and images from the LORD's temple and all the altars he had built on the hill of the LORD's temple and in Jerusalem; he threw them outside the city.</VERS>\n\t\t\t<VERS vnumber=\"16\"> He erected the altar of the LORD and offered on it peace offerings and thank offerings. He told the people of Judah to serve the LORD God of Israel. </VERS>\n\t\t\t<VERS vnumber=\"17\"> The people continued to offer sacrifices at the high places, but only to the LORD their God.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The rest of the events of Manasseh's reign, including his prayer to his God and the words the prophets spoke to him in the name of the LORD God of Israel, are recorded in the Annals of the Kings of Israel. </VERS>\n\t\t\t<VERS vnumber=\"19\"> The Annals of the Prophets include his prayer, give an account of how the LORD responded to it, record all his sins and unfaithful acts, and identify the sites where he built high places and erected Asherah poles and idols before he humbled himself.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Manasseh passed away and was buried in his palace. His son Amon replaced him as king.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Amon was twenty-two years old when he became king, and he reigned for two years in Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"22\"> He did evil in the sight of the LORD, just like his father Manasseh had done. He offered sacrifices to all the idols his father Manasseh had made, and worshiped them. </VERS>\n\t\t\t<VERS vnumber=\"23\"> He did not humble himself before the LORD as his father Manasseh had done. Amon was guilty of great sin.</VERS>\n\t\t\t<VERS vnumber=\"24\"> His servants conspired against him and killed him in his palace.</VERS>\n\t\t\t<VERS vnumber=\"25\"> The people of the land executed all who had conspired against King Amon, and they made his son Josiah king in his place.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"34\">\n\t\t\t<VERS vnumber=\"1\"> Josiah was eight years old when he became king, and he reigned for thirty-one years in Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"2\"> He did what the LORD approved and followed in his ancestor David's footsteps; he did not deviate to the right or the left.</VERS>\n\t\t\t<VERS vnumber=\"3\"> In the eighth year of his reign, while he was still young, he began to seek the God of his ancestor David. In his twelfth year he began ridding Judah and Jerusalem of the high places, Asherah poles, idols, and images. </VERS>\n\t\t\t<VERS vnumber=\"4\"> He ordered the altars of the Baals to be torn down, and broke the incense altars that were above them. He smashed the Asherah poles, idols and images, crushed them up and sprinkled the dust over the tombs of those who had sacrificed to them. </VERS>\n\t\t\t<VERS vnumber=\"5\"> He burned the bones of the pagan priests on their altars; he purified Judah and Jerusalem. </VERS>\n\t\t\t<VERS vnumber=\"6\"> In the cities of Manasseh, Ephraim, and Simeon, as far as Naphtali, and in the ruins around them, </VERS>\n\t\t\t<VERS vnumber=\"7\"> he tore down the altars and Asherah poles, demolished the idols, and smashed all the incense altars throughout the land of Israel. Then he returned to Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"8\"> In the eighteenth year of his reign, he continued his policy of purifying the land and the temple. He sent Shaphan son of Azaliah, Maaseiah the city official, and Joah son of Joahaz the secretary to repair the temple of the LORD his God. </VERS>\n\t\t\t<VERS vnumber=\"9\"> They went to Hilkiah the high priest and gave him the silver that had been brought to God's temple. The Levites who guarded the door had collected it from the people of Manasseh and Ephraim and from all who were left in Israel, as well as from all the people of Judah and Benjamin and the residents of Jerusalem. </VERS>\n\t\t\t<VERS vnumber=\"10\"> They handed it over to the construction foremen assigned to the LORD's temple. They in turn paid the temple workers to restore and repair it.</VERS>\n\t\t\t<VERS vnumber=\"11\"> They gave money to the craftsmen and builders to buy chiseled stone and wood for the braces and rafters of the buildings that the kings of Judah had allowed to fall into disrepair.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The men worked faithfully. Their supervisors were Jahath and Obadiah (Levites descended from Merari), as well as Zechariah and Meshullam (descendants of Kohath). The Levites, all of whom were skilled musicians,</VERS>\n\t\t\t<VERS vnumber=\"13\"> supervised the laborers and all the foremen on their various jobs. Some of the Levites were scribes, officials, and guards.</VERS>\n\t\t\t<VERS vnumber=\"14\"> When they took out the silver that had been brought to the LORD's temple, Hilkiah the priest found the law scroll the LORD had given to Moses.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Hilkiah informed Shaphan the scribe, \"I found the law scroll in the LORD's temple.\" Hilkiah gave the scroll to Shaphan.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Shaphan brought the scroll to the king and reported, \"Your servants are doing everything assigned to them. </VERS>\n\t\t\t<VERS vnumber=\"17\"> They melted down the silver in the LORD's temple and handed it over to the supervisors of the construction foremen.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> Then Shaphan the scribe told the king, \"Hilkiah the priest has given me a scroll.\" Shaphan read it out loud before the king.</VERS>\n\t\t\t<VERS vnumber=\"19\"> When the king heard the words of the law scroll, he tore his clothes.</VERS>\n\t\t\t<VERS vnumber=\"20\"> The king ordered Hilkiah, Ahikam son of Shaphan, Abdon son of Micah, Shaphan the scribe, and Asaiah the king's servant, </VERS>\n\t\t\t<VERS vnumber=\"21\"> \"Go, seek an oracle from the LORD for me and those who remain in Israel and Judah. Find out about the words of this scroll that has been discovered. For the LORD's fury has been ignited against us, because our ancestors have not obeyed the word of the LORD by doing all that this scroll instructs!\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> So Hilkiah and the others sent by the king went to Huldah the prophetess, the wife of Shallum son of Tokhath, the son of Hasrah, the supervisor of the wardrobe. (She lived in Jerusalem in the Mishneh district.) They stated their business,</VERS>\n\t\t\t<VERS vnumber=\"23\"> and she said to them: \"This is what the LORD God of Israel says: 'Say this to the man who sent you to me:</VERS>\n\t\t\t<VERS vnumber=\"24\"> \"This is what the LORD says: 'I am about to bring disaster on this place and its residents, the details of which are recorded in the scroll which they read before the king of Judah.</VERS>\n\t\t\t<VERS vnumber=\"25\"> This will happen because they have abandoned me and offered sacrifices to other gods, angering me with all the idols they have made. My anger will ignite against this place and will not be extinguished!'\" </VERS>\n\t\t\t<VERS vnumber=\"26\"> Say this to the king of Judah, who sent you to seek an oracle from the LORD: \"This is what the LORD God of Israel says concerning the words you have heard:</VERS>\n\t\t\t<VERS vnumber=\"27\"> 'You displayed a sensitive spirit and humbled yourself before God when you heard his words concerning this place and its residents. You humbled yourself before me, tore your clothes and wept before me, and I have heard you,' says the LORD. </VERS>\n\t\t\t<VERS vnumber=\"28\"> 'Therefore I will allow you to die and be buried in peace. You will not have to witness all the disaster I will bring on this place and its residents.'\"'\" Then they reported back to the king.</VERS>\n\t\t\t<VERS vnumber=\"29\"> The king summoned all the leaders of Judah and Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"30\"> The king went up to the LORD's temple, accompanied by all the people of Judah, the residents of Jerusalem, the priests, and the Levites. All the people were there, from the oldest to the youngest. He read aloud all the words of the scroll of the covenant that had been discovered in the LORD's temple.</VERS>\n\t\t\t<VERS vnumber=\"31\"> The king stood by his pillar and renewed the covenant before the LORD, agreeing to follow the LORD and to obey his commandments, laws, and rules with all his heart and being, by carrying out the terms of this covenant recorded on this scroll. </VERS>\n\t\t\t<VERS vnumber=\"32\"> He made all who were in Jerusalem and Benjamin agree to it. The residents of Jerusalem acted in accordance with the covenant of God, the God of their ancestors. </VERS>\n\t\t\t<VERS vnumber=\"33\"> Josiah removed all the detestable idols from all the areas belonging to the Israelites and encouraged all who were in Israel to worship the LORD their God. Throughout the rest of his reign they did not turn aside from following the LORD God of their ancestors.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"35\">\n\t\t\t<VERS vnumber=\"1\"> Josiah observed a Passover festival for the LORD in Jerusalem. They slaughtered the Passover lambs on the fourteenth day of the first month. </VERS>\n\t\t\t<VERS vnumber=\"2\"> He appointed the priests to fulfill their duties and encouraged them to carry out their service in the LORD's temple.</VERS>\n\t\t\t<VERS vnumber=\"3\"> He told the Levites, who instructed all Israel about things consecrated to the LORD, \"Place the holy ark in the temple which King Solomon son of David of Israel built. Don't carry it on your shoulders. Now serve the LORD your God and his people Israel!</VERS>\n\t\t\t<VERS vnumber=\"4\"> Prepare yourselves by your families according to your divisions, as instructed by King David of Israel and his son Solomon. </VERS>\n\t\t\t<VERS vnumber=\"5\"> Stand in the sanctuary and, together with the Levites, represent the family divisions of your countrymen.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Slaughter the Passover lambs, consecrate yourselves, and make preparations for your countrymen to do what the LORD commanded through Moses.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> From his own royal flocks and herds, Josiah supplied the people with 30,000 lambs and goats for the Passover sacrifice, as well as 3,000 cattle.</VERS>\n\t\t\t<VERS vnumber=\"8\"> His officials also willingly contributed to the people, priests, and Levites. Hilkiah, Zechariah, and Jehiel, the leaders of God's temple, supplied 2,600 Passover sacrifices and 300 cattle.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Konaniah and his brothers Shemaiah and Nethanel, along with Hashabiah, Jeiel, and Jozabad, the officials of the Levites, supplied the Levites with 5,000 Passover sacrifices and 500 cattle.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Preparations were made, and the priests stood at their posts and the Levites in their divisions as prescribed by the king. </VERS>\n\t\t\t<VERS vnumber=\"11\"> They slaughtered the Passover lambs and the priests splashed the blood, while the Levites skinned the animals. </VERS>\n\t\t\t<VERS vnumber=\"12\"> They reserved the burnt offerings and the cattle for the family divisions of the people to present to the LORD, as prescribed in the scroll of Moses.</VERS>\n\t\t\t<VERS vnumber=\"13\"> They cooked the Passover sacrifices over the open fire as prescribed and cooked the consecrated offerings in pots, kettles, and pans. They quickly served them to all the people.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Afterward they made preparations for themselves and for the priests, because the priests, the descendants of Aaron, were offering burnt sacrifices and fat portions until evening. The Levites made preparations for themselves and for the priests, the descendants of Aaron.</VERS>\n\t\t\t<VERS vnumber=\"15\"> The musicians, the descendants of Asaph, manned their posts, as prescribed by David, Asaph, Heman, and Jeduthun the king's prophet. The guards at the various gates did not need to leave their posts, for their fellow Levites made preparations for them. </VERS>\n\t\t\t<VERS vnumber=\"16\"> So all the preparations for the LORD's service were made that day, as the Passover was observed and the burnt sacrifices were offered on the altar of the LORD, as prescribed by King Josiah.</VERS>\n\t\t\t<VERS vnumber=\"17\"> So the Israelites who were present observed the Passover at that time, as well as the Feast of Unleavened Bread for seven days.</VERS>\n\t\t\t<VERS vnumber=\"18\"> A Passover like this had not been observed in Israel since the days of Samuel the prophet. None of the kings of Israel had observed a Passover like the one celebrated by Josiah, the priests, the Levites, all the people of Judah and Israel who were there, and the residents of Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"19\"> This Passover was observed in the eighteenth year of Josiah's reign.</VERS>\n\t\t\t<VERS vnumber=\"20\"> After Josiah had done all this for the temple, King Necho of Egypt marched up to do battle at Carchemish on the Euphrates River. Josiah marched out to oppose him. </VERS>\n\t\t\t<VERS vnumber=\"21\"> Necho sent messengers to him, saying, \"Why are you opposing me, O king of Judah? I am not attacking you today, but the kingdom with which I am at war. God told me to hurry. Stop opposing God, who is with me, or else he will destroy you.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> But Josiah did not turn back from him; he disguised himself for battle. He did not take seriously the words of Necho which he had received from God; he went to fight him in the Plain of Megiddo.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Archers shot King Josiah; the king ordered his servants, \"Take me out of this chariot, for I am seriously wounded.\" </VERS>\n\t\t\t<VERS vnumber=\"24\"> So his servants took him out of the chariot, put him in another chariot that he owned, and brought him to Jerusalem, where he died. He was buried in the tombs of his ancestors; all the people of Judah and Jerusalem mourned Josiah. </VERS>\n\t\t\t<VERS vnumber=\"25\"> Jeremiah composed laments for Josiah which all the male and female singers use to mourn Josiah to this very day. It has become customary in Israel to sing these; they are recorded in the Book of Laments.</VERS>\n\t\t\t<VERS vnumber=\"26\"> The rest of the events of Josiah's reign, including the faithful acts he did in obedience to what is written in the law of the LORD</VERS>\n\t\t\t<VERS vnumber=\"27\"> and his accomplishments, from start to finish, are recorded in the Scroll of the Kings of Israel and Judah.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"36\">\n\t\t\t<VERS vnumber=\"1\"> The people of the land took Jehoahaz son of Josiah and made him king in his father's place in Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Jehoahaz was twenty-three years old when he became king, and he reigned three months in Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The king of Egypt prevented him from ruling in Jerusalem and imposed on the land a special tax of one hundred talents of silver and a talent of gold. </VERS>\n\t\t\t<VERS vnumber=\"4\"> The king of Egypt made Jehoahaz's brother Eliakim king over Judah and Jerusalem, and changed his name to Jehoiakim. Necho seized his brother Jehoahaz and took him to Egypt.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Jehoiakim was twenty-five years old when he became king, and he reigned for eleven years in Jerusalem. He did evil in the sight of the LORD his God. </VERS>\n\t\t\t<VERS vnumber=\"6\"> King Nebuchadnezzar of Babylon attacked him, bound him with bronze chains, and carried him away to Babylon. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Nebuchadnezzar took some of the items in the LORD's temple to Babylon and put them in his palace there.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The rest of the events of Jehoiakim's reign, including the horrible sins he committed and his shortcomings, are recorded in the Scroll of the Kings of Israel and Judah. His son Jehoiachin replaced him as king.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Jehoiachin was eighteen years old when he became king, and he reigned three months and ten days in Jerusalem. He did evil in the sight of the LORD. </VERS>\n\t\t\t<VERS vnumber=\"10\"> At the beginning of the year King Nebuchadnezzar ordered him to be brought to Babylon, along with the valuable items in the LORD's temple. In his place he made his relative Zedekiah king over Judah and Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Zedekiah was twenty-one years old when he became king, and he ruled for eleven years in Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"12\"> He did evil in the sight of the LORD his God. He did not humble himself before Jeremiah the prophet, the LORD's spokesman. </VERS>\n\t\t\t<VERS vnumber=\"13\"> He also rebelled against King Nebuchadnezzar, who had made him vow allegiance in the name of God. He was stubborn and obstinate, and refused to return to the LORD God of Israel. </VERS>\n\t\t\t<VERS vnumber=\"14\"> All the leaders of the priests and people became more unfaithful and committed the same horrible sins practiced by the nations. They defiled the LORD's temple which he had consecrated in Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"15\"> The LORD God of their ancestors continually warned them through his messengers, for he felt compassion for his people and his dwelling place. </VERS>\n\t\t\t<VERS vnumber=\"16\"> But they mocked God's messengers, despised his warnings, and ridiculed his prophets. Finally the LORD got very angry at his people and there was no one who could prevent his judgment.</VERS>\n\t\t\t<VERS vnumber=\"17\"> He brought against them the king of the Babylonians, who slaughtered their young men in their temple. He did not spare young men or women, or even the old and aging. God handed everyone over to him.</VERS>\n\t\t\t<VERS vnumber=\"18\"> He carried away to Babylon all the items in God's temple, whether large or small, as well as what was in the treasuries of the LORD's temple and in the treasuries of the king and his officials.</VERS>\n\t\t\t<VERS vnumber=\"19\"> They burned down the LORD's temple and tore down the wall of Jerusalem. They burned all its fortified buildings and destroyed all its valuable items. </VERS>\n\t\t\t<VERS vnumber=\"20\"> He deported to Babylon all who escaped the sword. They served him and his sons until the Persian kingdom rose to power.</VERS>\n\t\t\t<VERS vnumber=\"21\"> This took place to fulfill the LORD's message delivered through Jeremiah. The land experienced its sabbatical years; it remained desolate for seventy years, as prophesied.</VERS>\n\t\t\t<VERS vnumber=\"22\"> In the first year of the reign of King Cyrus of Persia, in fulfillment of the promise he delivered through Jeremiah, the LORD moved King Cyrus of Persia to issue a written decree throughout his kingdom. </VERS>\n\t\t\t<VERS vnumber=\"23\"> It read: \"This is what King Cyrus of Persia says: 'The LORD God of the heavens has given to me all the kingdoms of the earth. He has appointed me to build for him a temple in Jerusalem in Judah. May the LORD your God energize you who belong to his people, so you may be able to go back there!\"</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"15\" bname=\"Ezra\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\">  In the first year of King Cyrus of Persia, in order to fulfill the LORD'S message spoken through Jeremiah, the LORD stirred the mind of King Cyrus of Persia. He disseminated a proclamation throughout his entire kingdom, announcing in a written edict the following:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Thus says King Cyrus of Persia: \"'The LORD God of heaven has given me all the kingdoms of the earth. He has instructed me to build a temple for him in Jerusalem, which is in Judah.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Anyone from his people among you (may his God be with him!) may go up to Jerusalem, which is in Judah, and may build the temple of the LORD God of Israel, he is the God who is in Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Anyone who survives in any of those places where he is a resident foreigner must be helped by his neighbors with silver, gold, equipment, and animals, along with voluntary offerings for the temple of God which is in Jerusalem.'\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> Then the leaders of Judah and Benjamin, along with the priests and the Levites, all those whose mind God had stirred, got ready to go up in order to build the temple of the LORD in Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"6\"> All their neighbors assisted them with silver utensils, gold, equipment, animals, and expensive gifts, not to mention all the voluntary offerings.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Then King Cyrus brought out the vessels of the LORD's temple which Nebuchadnezzar had brought from Jerusalem and had displayed in the temple of his gods. </VERS>\n\t\t\t<VERS vnumber=\"8\"> King Cyrus of Persia entrusted them to Mithredath the treasurer, who counted them out to Sheshbazzar the leader of the Judahite exiles.</VERS>\n\t\t\t<VERS vnumber=\"9\"> The inventory of these items was as follows: 30 gold basins, 1,000 silver basins, 29 silver utensils,</VERS>\n\t\t\t<VERS vnumber=\"10\"> 30 gold bowls, 410 other silver bowls, and 1,000 other vessels.</VERS>\n\t\t\t<VERS vnumber=\"11\"> All these gold and silver vessels totaled 5,400. Sheshbazzar brought them all along when the captives were brought up from Babylon to Jerusalem.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\">  These are the people of the province who were going up, from the captives of the exile whom King Nebuchadnezzar of Babylon had forced into exile in Babylon. They returned to Jerusalem and Judah, each to his own city. </VERS>\n\t\t\t<VERS vnumber=\"2\"> They came with Zerubbabel, Jeshua, Nehemiah, Seraiah, Reelaiah, Mordecai, Bilshan, Mispar, Bigvai, Rehum, and Baanah. The number of Israelites was as follows:</VERS>\n\t\t\t<VERS vnumber=\"3\"> the descendants of Parosh: 2,172;</VERS>\n\t\t\t<VERS vnumber=\"4\"> the descendants of Shephatiah: 372;</VERS>\n\t\t\t<VERS vnumber=\"5\"> the descendants of Arah: 775;</VERS>\n\t\t\t<VERS vnumber=\"6\"> the descendants of Pahath-Moab (from the line of Jeshua and Joab): 2,812;</VERS>\n\t\t\t<VERS vnumber=\"7\"> the descendants of Elam: 1,254;</VERS>\n\t\t\t<VERS vnumber=\"8\"> the descendants of Zattu: 945;</VERS>\n\t\t\t<VERS vnumber=\"9\"> the descendants of Zaccai: 760;</VERS>\n\t\t\t<VERS vnumber=\"10\"> the descendants of Bani: 642;</VERS>\n\t\t\t<VERS vnumber=\"11\"> the descendants of Bebai: 623;</VERS>\n\t\t\t<VERS vnumber=\"12\"> the descendants of Azgad: 1,222;</VERS>\n\t\t\t<VERS vnumber=\"13\"> the descendants of Adonikam: 666;</VERS>\n\t\t\t<VERS vnumber=\"14\"> the descendants of Bigvai: 2,056;</VERS>\n\t\t\t<VERS vnumber=\"15\"> the descendants of Adin: 454;</VERS>\n\t\t\t<VERS vnumber=\"16\"> the descendants of Ater (through Hezekiah): 98;</VERS>\n\t\t\t<VERS vnumber=\"17\"> the descendants of Bezai: 323;</VERS>\n\t\t\t<VERS vnumber=\"18\"> the descendants of Jorah: 112;</VERS>\n\t\t\t<VERS vnumber=\"19\"> the descendants of Hashum: 223;</VERS>\n\t\t\t<VERS vnumber=\"20\"> the descendants of Gibbar: 95.</VERS>\n\t\t\t<VERS vnumber=\"21\"> The men of Bethlehem: 123;</VERS>\n\t\t\t<VERS vnumber=\"22\"> the men of Netophah: 56;</VERS>\n\t\t\t<VERS vnumber=\"23\"> the men of Anathoth: 128;</VERS>\n\t\t\t<VERS vnumber=\"24\"> the men of the family of Azmaveth: 42;</VERS>\n\t\t\t<VERS vnumber=\"25\"> the men of Kiriath Jearim, Kephirah and Beeroth: 743;</VERS>\n\t\t\t<VERS vnumber=\"26\"> the men of Ramah and Geba: 621;</VERS>\n\t\t\t<VERS vnumber=\"27\"> the men of Micmash: 122;</VERS>\n\t\t\t<VERS vnumber=\"28\"> the men of Bethel and Ai: 223;</VERS>\n\t\t\t<VERS vnumber=\"29\"> the descendants of Nebo: 52;</VERS>\n\t\t\t<VERS vnumber=\"30\"> the descendants of Magbish: 156;</VERS>\n\t\t\t<VERS vnumber=\"31\"> the descendants of the other Elam: 1,254;</VERS>\n\t\t\t<VERS vnumber=\"32\"> the descendants of Harim: 320;</VERS>\n\t\t\t<VERS vnumber=\"33\"> the men of Lod, Hadid, and Ono: 725;</VERS>\n\t\t\t<VERS vnumber=\"34\"> the men of Jericho: 345;</VERS>\n\t\t\t<VERS vnumber=\"35\"> the descendants of Senaah: 3,630.</VERS>\n\t\t\t<VERS vnumber=\"36\"> The priests: the descendants of Jedaiah (through the family of Jeshua): 973;</VERS>\n\t\t\t<VERS vnumber=\"37\"> the descendants of Immer: 1,052;</VERS>\n\t\t\t<VERS vnumber=\"38\"> the descendants of Pashhur: 1,247;</VERS>\n\t\t\t<VERS vnumber=\"39\"> the descendants of Harim: 1,017.</VERS>\n\t\t\t<VERS vnumber=\"40\"> The Levites: the descendants of Jeshua and Kadmiel (through the line of Hodaviah): 74.</VERS>\n\t\t\t<VERS vnumber=\"41\"> The singers: the descendants of Asaph: 128.</VERS>\n\t\t\t<VERS vnumber=\"42\"> The gatekeepers: the descendants of Shallum, the descendants of Ater, the descendants of Talmon, the descendants of Akkub, the descendants of Hatita, and the descendants of Shobai: 139.</VERS>\n\t\t\t<VERS vnumber=\"43\"> The temple servants: the descendants of Ziha, the descendants of Hasupha, the descendants of Tabbaoth,</VERS>\n\t\t\t<VERS vnumber=\"44\"> the descendants of Keros, the descendants of Siaha, the descendants of Padon,</VERS>\n\t\t\t<VERS vnumber=\"45\"> the descendants of Lebanah, the descendants of Hagabah, the descendants of Akkub,</VERS>\n\t\t\t<VERS vnumber=\"46\"> the descendants of Hagab, the descendants of Shalmai, the descendants of Hanan,</VERS>\n\t\t\t<VERS vnumber=\"47\"> the descendants of Giddel, the descendants of Gahar, the descendants of Reaiah,</VERS>\n\t\t\t<VERS vnumber=\"48\"> the descendants of Rezin, the descendants of Nekoda, the descendants of Gazzam,</VERS>\n\t\t\t<VERS vnumber=\"49\"> the descendants of Uzzah, the descendants of Paseah, the descendants of Besai,</VERS>\n\t\t\t<VERS vnumber=\"50\"> the descendants of Asnah, the descendants of Meunim, the descendants of Nephussim,</VERS>\n\t\t\t<VERS vnumber=\"51\"> the descendants of Bakbuk, the descendants of Hakupha, the descendants of Harhur,</VERS>\n\t\t\t<VERS vnumber=\"52\"> the descendants of Bazluth, the descendants of Mehida, the descendants of Harsha,</VERS>\n\t\t\t<VERS vnumber=\"53\"> the descendants of Barkos, the descendants of Sisera, the descendants of Temah,</VERS>\n\t\t\t<VERS vnumber=\"54\"> the descendants of Neziah, and the descendants of Hatipha.</VERS>\n\t\t\t<VERS vnumber=\"55\"> The descendants of the servants of Solomon: the descendants of Sotai, the descendants of Hassophereth, the descendants of Peruda,</VERS>\n\t\t\t<VERS vnumber=\"56\"> the descendants of Jaala, the descendants of Darkon, the descendants of Giddel,</VERS>\n\t\t\t<VERS vnumber=\"57\"> the descendants of Shephatiah, the descendants of Hattil, the descendants of Pokereth-Hazzebaim, and the descendants of Ami.</VERS>\n\t\t\t<VERS vnumber=\"58\"> All the temple servants and the descendants of the servants of Solomon: 392.</VERS>\n\t\t\t<VERS vnumber=\"59\"> These are the ones that came up from Tel Melah, Tel Harsha, Kerub, Addon, and Immer (although they were unable to certify their family connection or their ancestry, as to whether they really were from Israel):</VERS>\n\t\t\t<VERS vnumber=\"60\"> the descendants of Delaiah, the descendants of Tobiah, and the descendants of Nekoda: 652.</VERS>\n\t\t\t<VERS vnumber=\"61\"> And from among the priests: the descendants of Hobaiah, the descendants of Hakkoz, and the descendants of Barzillai (who had taken a wife from the daughters of Barzillai the Gileadite and was called by that name). </VERS>\n\t\t\t<VERS vnumber=\"62\"> They searched for their records in the genealogical materials, but did not find them. They were therefore excluded from the priesthood. </VERS>\n\t\t\t<VERS vnumber=\"63\"> The governor instructed them not to eat any of the sacred food until there was a priest who could consult the Urim and Thummim.</VERS>\n\t\t\t<VERS vnumber=\"64\"> The entire group numbered 42,360,</VERS>\n\t\t\t<VERS vnumber=\"65\"> not counting their male and female servants, who numbered 7,337. They also had 200 male and female singers </VERS>\n\t\t\t<VERS vnumber=\"66\"> and 736 horses, 245 mules,</VERS>\n\t\t\t<VERS vnumber=\"67\"> 435 camels, and 6,720 donkeys.</VERS>\n\t\t\t<VERS vnumber=\"68\"> When they came to the LORD's temple in Jerusalem, some of the family leaders offered voluntary offerings for the temple of God in order to rebuild it on its site. </VERS>\n\t\t\t<VERS vnumber=\"69\"> As they were able, they gave to the treasury for this work 61,000 drachmas of gold, 5,000 minas of silver, and 100 priestly robes.</VERS>\n\t\t\t<VERS vnumber=\"70\"> The priests, the Levites, some of the people, the singers, the gatekeepers, and the temple servants lived in their towns, and all the rest of Israel lived in their towns.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> When the seventh month arrived and the Israelites were living in their towns, the people assembled in Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Then Jeshua the son of Jozadak and his priestly colleagues and Zerubbabel son of Shealtiel and his colleagues started to build the altar of the God of Israel so they could offer burnt offerings on it as required by the law of Moses the man of God. </VERS>\n\t\t\t<VERS vnumber=\"3\"> They established the altar on its foundations, even though they were in terror of the local peoples, and they offered burnt offerings on it to the LORD, both the morning and the evening offerings. </VERS>\n\t\t\t<VERS vnumber=\"4\"> They observed the Festival of Temporary Shelters as required and offered the proper number of daily burnt offerings according to the requirement for each day. </VERS>\n\t\t\t<VERS vnumber=\"5\"> Afterward they offered the continual burnt offerings and those for the new moons and those for all the holy assemblies of the LORD and all those that were being voluntarily offered to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"6\"> From the first day of the seventh month they began to offer burnt offerings to the LORD. However, the LORD's temple was not at that time established.</VERS>\n\t\t\t<VERS vnumber=\"7\"> So they provided money for the masons and carpenters, and food, beverages, and olive oil for the people of Sidon and Tyre, so that they would bring cedar timber from Lebanon to the seaport at Joppa, in accord with the edict of King Cyrus of Persia. </VERS>\n\t\t\t<VERS vnumber=\"8\"> In the second year after they had come to the temple of God in Jerusalem, in the second month, Zerubbabel the son of Shealtiel and Jeshua the son of Jozadak initiated the work, along with the rest of their associates, the priests and the Levites, and all those who were coming to Jerusalem from the exile. They appointed the Levites who were at least twenty years old to take charge of the work on the LORD's temple.</VERS>\n\t\t\t<VERS vnumber=\"9\"> So Jeshua appointed both his sons and his relatives, Kadmiel and his sons (the sons of Yehudah), to take charge of the workers in the temple of God, along with the sons of Henadad, their sons, and their relatives the Levites.</VERS>\n\t\t\t<VERS vnumber=\"10\"> When the builders established the LORD's temple, the priests, ceremonially attired and with their clarions, and the Levites (the sons of Asaph) with their cymbals, stood to praise the LORD according to the instructions left by King David of Israel.</VERS>\n\t\t\t<VERS vnumber=\"11\"> With antiphonal response they sang, praising and glorifying the LORD: \"For he is good; his loyal love toward Israel is forever.\" All the people gave a loud shout as they praised the LORD when the temple of the LORD was established.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Many of the priests, the Levites, and the leaders, older people who had seen with their own eyes the former temple while it was still established, were weeping loudly, and many others raised their voice in a joyous shout.</VERS>\n\t\t\t<VERS vnumber=\"13\"> People were unable to tell the difference between the sound of joyous shouting and the sound of the people's weeping, for the people were shouting so loudly that the sound was heard a long way off.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\"> When the enemies of Judah and Benjamin learned that the former exiles were building a temple for the LORD God of Israel, </VERS>\n\t\t\t<VERS vnumber=\"2\"> they came to Zerubbabel and the leaders and said to them, \"Let us help you build, for like you we seek your God and we have been sacrificing to him from the time of King Esarhaddon of Assyria, who brought us here.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> But Zerubbabel, Jeshua, and the rest of the leaders of Israel said to them, \"You have no right to help us build the temple of our God. We will build it by ourselves for the LORD God of Israel, just as King Cyrus, the king of Persia, has commanded us.\" </VERS>\n\t\t\t<VERS vnumber=\"4\"> Then the local people began to discourage the people of Judah and to dishearten them from building. </VERS>\n\t\t\t<VERS vnumber=\"5\"> They were hiring advisers to oppose them, so as to frustrate their plans, throughout the time of King Cyrus of Persia until the reign of King Darius of Persia.</VERS>\n\t\t\t<VERS vnumber=\"6\">  At the beginning of the reign of Ahasuerus they filed an accusation against the inhabitants of Judah and Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"7\"> And during the reign of Artaxerxes, Bishlam, Mithredath, Tabeel, and the rest of their colleagues wrote to King Artaxerxes of Persia. This letter was first written in Aramaic but then translated. [Aramaic:]</VERS>\n\t\t\t<VERS vnumber=\"8\"> Rehum the commander and Shimshai the scribe wrote a letter concerning Jerusalem to King Artaxerxes as follows: </VERS>\n\t\t\t<VERS vnumber=\"9\"> From Rehum the commander, Shimshai the scribe, and the rest of their colleagues, the judges, the rulers, the officials, the secretaries, the Erechites, the Babylonians, the people of Susa (that is, the Elamites),</VERS>\n\t\t\t<VERS vnumber=\"10\"> and the rest of nations whom the great and noble Ashurbanipal deported and settled in the cities of Samaria and other places in Trans-Euphrates.</VERS>\n\t\t\t<VERS vnumber=\"11\"> (This is a copy of the letter they sent to him:) \"To King Artaxerxes, from your servants in Trans-Euphrates: </VERS>\n\t\t\t<VERS vnumber=\"12\"> Now let the king be aware that the Jews who came up to us from you have gone to Jerusalem. They are rebuilding that rebellious and odious city. They are completing its walls and repairing its foundations. </VERS>\n\t\t\t<VERS vnumber=\"13\"> Let the king also be aware that if this city is built and its walls are completed, no more tax, custom, or toll will be paid, and the royal treasury will suffer loss. </VERS>\n\t\t\t<VERS vnumber=\"14\"> In light of the fact that we are loyal to the king, and since it does not seem appropriate to us that the king should sustain damage, we are sending the king this information</VERS>\n\t\t\t<VERS vnumber=\"15\"> so that he may initiate a search of the records of his predecessors and discover in those records that this city is rebellious and injurious to both kings and provinces, producing internal revolts from long ago. It is for this very reason that this city was destroyed. </VERS>\n\t\t\t<VERS vnumber=\"16\"> We therefore are informing the king that if this city is rebuilt and its walls are completed, you will not retain control of this portion of Trans-Euphrates.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> The king sent the following response: \"To Rehum the commander, Shimshai the scribe, and the rest of their colleagues who live in Samaria and other parts of Trans-Euphrates: Greetings!</VERS>\n\t\t\t<VERS vnumber=\"18\"> The letter you sent to us has been translated and read in my presence.</VERS>\n\t\t\t<VERS vnumber=\"19\"> So I gave orders, and it was determined that this city from long ago has been engaging in insurrection against kings. It has continually engaged in rebellion and revolt.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Powerful kings have been over Jerusalem who ruled throughout the entire Trans-Euphrates and who were the beneficiaries of tribute, custom, and toll. </VERS>\n\t\t\t<VERS vnumber=\"21\"> Now give orders that these men cease their work and that this city not be rebuilt until such time as I so instruct.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Exercise appropriate caution so that there is no negligence in this matter. Why should danger increase to the point that kings sustain damage?\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> Then, as soon as the copy of the letter from King Artaxerxes was read in the presence of Rehum, Shimshai the scribe, and their colleagues, they proceeded promptly to the Jews in Jerusalem and stopped them with threat of armed force.</VERS>\n\t\t\t<VERS vnumber=\"24\"> So the work on the temple of God in Jerusalem came to a halt. It remained halted until the second year of the reign of King Darius of Persia.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"5\">\n\t\t\t<VERS vnumber=\"1\"> Then the prophets Haggai and Zechariah son of Iddo prophesied concerning the Jews who were in Judah and Jerusalem in the name of the God of Israel who was over them. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Then Zerubbabel the son of Shealtiel and Jeshua the son of Jozadak began to rebuild the temple of God in Jerusalem. The prophets of God were with them, supporting them.</VERS>\n\t\t\t<VERS vnumber=\"3\"> At that time Tattenai governor of Trans-Euphrates, Shethar-Bozenai, and their colleagues came to them and asked, \"Who gave you authority to rebuild this temple and to complete this structure?\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> They also asked them, \"What are the names of the men who are building this edifice?\" </VERS>\n\t\t\t<VERS vnumber=\"5\"> But God was watching over the elders of Judah, and they were not stopped until a report could be dispatched to Darius and a letter could be sent back concerning this.</VERS>\n\t\t\t<VERS vnumber=\"6\"> This is a copy of the letter that Tattenai governor of Trans-Euphrates, Shethar-Bozenai, and his colleagues who were the officials of Trans-Euphrates sent to King Darius.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The report they sent to him was written as follows: \"To King Darius: All greetings!</VERS>\n\t\t\t<VERS vnumber=\"8\"> Let it be known to the king that we have gone to the province of Judah, to the temple of the great God. It is being built with large stones, and timbers are being placed in the walls. This work is being done with all diligence and is prospering in their hands. </VERS>\n\t\t\t<VERS vnumber=\"9\"> We inquired of those elders, asking them, 'Who gave you the authority to rebuild this temple and to complete this structure?'</VERS>\n\t\t\t<VERS vnumber=\"10\"> We also inquired of their names in order to inform you, so that we might write the names of the men who were their leaders.</VERS>\n\t\t\t<VERS vnumber=\"11\"> They responded to us in the following way: 'We are servants of the God of heaven and earth. We are rebuilding the temple which was previously built many years ago. A great king of Israel built it and completed it. </VERS>\n\t\t\t<VERS vnumber=\"12\"> But after our ancestors angered the God of heaven, he delivered them into the hands of King Nebuchadnezzar of Babylon, the Chaldean, who destroyed this temple and exiled the people to Babylon.</VERS>\n\t\t\t<VERS vnumber=\"13\"> But in the first year of King Cyrus of Babylon, King Cyrus enacted a decree to rebuild this temple of God. </VERS>\n\t\t\t<VERS vnumber=\"14\"> Even the gold and silver vessels of the temple of God that Nebuchadnezzar had taken from the temple in Jerusalem and had brought to the palace of Babylon, even those things King Cyrus brought from the palace of Babylon and presented to a man by the name of Sheshbazzar whom he had appointed as governor.</VERS>\n\t\t\t<VERS vnumber=\"15\"> He said to him, \"Take these vessels and go deposit them in the temple in Jerusalem, and let the house of God be rebuilt in its proper location.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> Then this Sheshbazzar went and laid the foundations of the temple of God in Jerusalem. From that time to the present moment it has been in the process of being rebuilt, although it is not yet finished.'</VERS>\n\t\t\t<VERS vnumber=\"17\"> \"Now if the king is so inclined, let a search be conducted in the royal archives there in Babylon in order to determine whether King Cyrus did in fact issue orders for this temple of God to be rebuilt in Jerusalem. Then let the king send us a decision concerning this matter.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"6\">\n\t\t\t<VERS vnumber=\"1\"> So Darius the king issued orders, and they searched in the archives of the treasury which were deposited there in Babylon. </VERS>\n\t\t\t<VERS vnumber=\"2\"> A scroll was found in the citadel of Ecbatana which is in the province of Media, and it was inscribed as follows: \"Memorandum: </VERS>\n\t\t\t<VERS vnumber=\"3\"> In the first year of his reign, King Cyrus gave orders concerning the temple of God in Jerusalem: 'Let the temple be rebuilt as a place where sacrifices are offered. Let its foundations be set in place. Its height is to be ninety feet and its width ninety feet,</VERS>\n\t\t\t<VERS vnumber=\"4\"> with three layers of large stones and one layer of timber. The expense is to be subsidized by the royal treasury.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Furthermore let the gold and silver vessels of the temple of God, which Nebuchadnezzar brought from the temple in Jerusalem and carried to Babylon, be returned and brought to their proper place in the temple in Jerusalem. Let them be deposited in the temple of God.'</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"Now Tattenai governor of Trans-Euphrates, Shethar Bozenai, and their colleagues, the officials of Trans-Euphrates, all of you stay far away from there!</VERS>\n\t\t\t<VERS vnumber=\"7\"> Leave the work on this temple of God alone. Let the governor of the Jews and the elders of the Jews rebuild this temple of God in its proper place.</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"I also hereby issue orders as to what you are to do with those elders of the Jews in order to rebuild this temple of God. From the royal treasury, from the taxes of Trans-Euphrates the complete costs are to be given to these men, so that there may be no interruption of the work.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Whatever is needed, whether oxen or rams or lambs or burnt offerings for the God of heaven or wheat or salt or wine or oil, as required by the priests who are in Jerusalem, must be given to them daily without any neglect,</VERS>\n\t\t\t<VERS vnumber=\"10\"> so that they may be offering incense to the God of heaven and may be praying for the good fortune of the king and his family.</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"I hereby give orders that if anyone changes this directive a beam is to be pulled out from his house and he is to be raised up and impaled on it, and his house is to be reduced to a rubbish heap for this indiscretion.</VERS>\n\t\t\t<VERS vnumber=\"12\"> May God who makes his name to reside there overthrow any king or nation who reaches out to cause such change so as to destroy this temple of God in Jerusalem. I, Darius, have given orders. Let them be carried out with precision!\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> Then Tattenai governor of Trans-Euphrates, Shethar-Bozenai, and their colleagues acted accordingly, with precision, just as Darius the king had given instructions.</VERS>\n\t\t\t<VERS vnumber=\"14\"> The elders of the Jews continued building and prospering, while at the same time Haggai the prophet and Zechariah the son of Iddo continued prophesying. They built and brought it to completion by the command of the God of Israel and by the command of Cyrus and Darius and Artaxerxes king of Persia. </VERS>\n\t\t\t<VERS vnumber=\"15\"> They finished this temple on the third day of the month Adar, which is the sixth year of the reign of King Darius.</VERS>\n\t\t\t<VERS vnumber=\"16\"> The people of Israel, the priests, the Levites, and the rest of the exiles, observed the dedication of this temple of God with joy.</VERS>\n\t\t\t<VERS vnumber=\"17\"> For the dedication of this temple of God they offered one hundred bulls, two hundred rams, four hundred lambs, and twelve male goats for the sin of all Israel, according to the number of the tribes of Israel.</VERS>\n\t\t\t<VERS vnumber=\"18\"> They appointed the priests by their divisions and the Levites by their divisions over the worship of God at Jerusalem, in accord with the book of Moses. </VERS>\n\t\t\t<VERS vnumber=\"19\">  The exiles observed the Passover on the fourteenth day of the first month. </VERS>\n\t\t\t<VERS vnumber=\"20\"> The priests and the Levites had purified themselves, every last one, and they all were ceremonially pure. They sacrificed the Passover lamb for all the exiles, for their colleagues the priests, and for themselves. </VERS>\n\t\t\t<VERS vnumber=\"21\"> The Israelites who were returning from the exile ate it, along with all those who had joined them in separating themselves from the uncleanness of the nations of the land to seek the LORD God of Israel. </VERS>\n\t\t\t<VERS vnumber=\"22\"> They observed the Feast of Unleavened Bread for seven days with joy, for the LORD had given them joy and had changed the opinion of the king of Assyria toward them, so that he assisted them in the work on the temple of God, the God of Israel.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"7\">\n\t\t\t<VERS vnumber=\"1\"> Now after these things had happened, during the reign of King Artaxerxes of Persia, Ezra came up from Babylon. Ezra was the son of Seraiah, who was the son of Azariah, who was the son of Hilkiah, </VERS>\n\t\t\t<VERS vnumber=\"2\"> who was the son of Shallum, who was the son of Zadok, who was the son of Ahitub,</VERS>\n\t\t\t<VERS vnumber=\"3\"> who was the son of Amariah, who was the son of Azariah, who was the son of Meraioth,</VERS>\n\t\t\t<VERS vnumber=\"4\"> who was the son of Zerahiah, who was the son of Uzzi, who was the son of Bukki,</VERS>\n\t\t\t<VERS vnumber=\"5\"> who was the son of Abishua, who was the son of Phinehas, who was the son of Eleazar, who was the son of Aaron the chief priest.</VERS>\n\t\t\t<VERS vnumber=\"6\"> This Ezra is the one who came up from Babylon. He was a scribe who was skilled in the law of Moses which the LORD God of Israel had given. The king supplied him with everything he requested, for the hand of the LORD his God was on him.</VERS>\n\t\t\t<VERS vnumber=\"7\"> In the seventh year of King Artaxerxes, Ezra brought up to Jerusalem some of the Israelites and some of the priests, the Levites, the attendants, the gatekeepers, and the temple servants.</VERS>\n\t\t\t<VERS vnumber=\"8\"> He entered Jerusalem in the fifth month of the seventh year of the king.</VERS>\n\t\t\t<VERS vnumber=\"9\"> On the first day of the first month he had determined to make the ascent from Babylon, and on the first day of the fifth month he arrived at Jerusalem, for the good hand of his God was on him. </VERS>\n\t\t\t<VERS vnumber=\"10\"> Now Ezra had dedicated himself to the study of the law of the LORD, to its observance, and to teaching its statutes and judgments in Israel.</VERS>\n\t\t\t<VERS vnumber=\"11\"> What follows is a copy of the letter that King Artaxerxes gave to Ezra the priestly scribe. Ezra was a scribe in matters pertaining to the commandments of the LORD and his statutes over Israel:</VERS>\n\t\t\t<VERS vnumber=\"12\">  \"Artaxerxes, king of kings, to Ezra the priest, a scribe of the perfect law of the God of heaven: </VERS>\n\t\t\t<VERS vnumber=\"13\"> I have now issued a decree that anyone in my kingdom from the people of Israel, even the priests and Levites, who wishes to do so may go up with you to Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"14\"> You are authorized by the king and his seven advisers to inquire concerning Judah and Jerusalem, according to the law of your God which is in your possession,</VERS>\n\t\t\t<VERS vnumber=\"15\"> and to bring silver and gold which the king and his advisers have freely contributed to the God of Israel, who resides in Jerusalem,</VERS>\n\t\t\t<VERS vnumber=\"16\"> along with all the silver and gold that you may collect throughout all the province of Babylon and the contributions of the people and the priests for the temple of their God which is in Jerusalem. </VERS>\n\t\t\t<VERS vnumber=\"17\"> With this money you should be sure to purchase bulls, rams, and lambs, along with the appropriate meal offerings and libations. You should bring them to the altar of the temple of your God which is in Jerusalem. </VERS>\n\t\t\t<VERS vnumber=\"18\"> You may do whatever seems appropriate to you and your colleagues with the rest of the silver and the gold, in keeping with the will of your God. </VERS>\n\t\t\t<VERS vnumber=\"19\"> Deliver to the God of Jerusalem the vessels that are given to you for the service of the temple of your God. </VERS>\n\t\t\t<VERS vnumber=\"20\"> The rest of the needs for the temple of your God that you may have to supply, you may do so from the royal treasury.</VERS>\n\t\t\t<VERS vnumber=\"21\"> \"I, King Artaxerxes, hereby issue orders to all the treasurers of Trans-Euphrates, that you precisely execute all that Ezra the priestly scribe of the law of the God of heaven may request of you,</VERS>\n\t\t\t<VERS vnumber=\"22\"> up to 100 talents of silver, 100 cors of wheat, 100 baths of wine, 100 baths of olive oil, and unlimited salt. </VERS>\n\t\t\t<VERS vnumber=\"23\"> Everything that the God of heaven has required should be precisely done for the temple of the God of heaven. Why should there be wrath against the empire of the king and his sons? </VERS>\n\t\t\t<VERS vnumber=\"24\"> Furthermore, be aware of the fact that you have no authority to impose tax, tribute, or toll on any of the priests, the Levites, the musicians, the doorkeepers, the temple servants, or the attendants at the temple of this God.</VERS>\n\t\t\t<VERS vnumber=\"25\"> \"Now you, Ezra, in keeping with the wisdom of your God which you possess, appoint judges and court officials who can arbitrate cases on behalf of all the people who are in Trans-Euphrates who know the laws of your God. Those who do not know this law should be taught. </VERS>\n\t\t\t<VERS vnumber=\"26\"> Everyone who does not observe both the law of your God and the law of the king will be completely liable to the appropriate penalty, whether it is death or banishment or confiscation of property or detainment in prison.\"</VERS>\n\t\t\t<VERS vnumber=\"27\">  Blessed be the LORD God of our fathers, who so moved in the heart of the king to so honor the temple of the LORD which is in Jerusalem! </VERS>\n\t\t\t<VERS vnumber=\"28\"> He has also conferred his favor on me before the king, his advisers, and all the influential leaders of the king. I gained strength as the hand of the LORD my God was on me, and I gathered leaders from Israel to go up with me.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"8\">\n\t\t\t<VERS vnumber=\"1\"> These are the leaders and those enrolled with them by genealogy who were coming up with me from Babylon during the reign of King Artaxerxes:</VERS>\n\t\t\t<VERS vnumber=\"2\"> from the descendants of Phinehas, Gershom; from the descendants of Ithamar, Daniel; from the descendants of David, Hattush</VERS>\n\t\t\t<VERS vnumber=\"3\"> the son of Shecaniah; from the descendants of Parosh, Zechariah, and with him were enrolled by genealogy 150 men;</VERS>\n\t\t\t<VERS vnumber=\"4\"> from the descendants of Pahath-Moab, Eliehoenai son of Zerahiah, and with him 200 men;</VERS>\n\t\t\t<VERS vnumber=\"5\"> from the descendants of Zattu, Shecaniah son of Jahaziel, and with him 300 men;</VERS>\n\t\t\t<VERS vnumber=\"6\"> from the descendants of Adin, Ebed son of Jonathan, and with him 50 men;</VERS>\n\t\t\t<VERS vnumber=\"7\"> from the descendants of Elam, Jeshaiah son of Athaliah, and with him 70 men;</VERS>\n\t\t\t<VERS vnumber=\"8\"> from the descendants of Shephatiah, Zebadiah son of Michael, and with him 80 men;</VERS>\n\t\t\t<VERS vnumber=\"9\"> from the descendants of Joab, Obadiah son of Jehiel, and with him 218 men;</VERS>\n\t\t\t<VERS vnumber=\"10\"> from the descendants of Bani, Shelomith son of Josiphiah, and with him 160 men;</VERS>\n\t\t\t<VERS vnumber=\"11\"> from the descendants of Bebai, Zechariah son of Bebai, and with him 28 men;</VERS>\n\t\t\t<VERS vnumber=\"12\"> from the descendants of Azgad, Johanan son of Hakkatan, and with him 110 men;</VERS>\n\t\t\t<VERS vnumber=\"13\"> from the descendants of Adonikam there were the latter ones. Their names were Eliphelet, Jeuel, and Shemaiah, and with them 60 men;</VERS>\n\t\t\t<VERS vnumber=\"14\"> from the descendants of Bigvai, Uthai, and Zaccur, and with them 70 men.</VERS>\n\t\t\t<VERS vnumber=\"15\"> I had them assemble at the canal that flows toward Ahava, and we camped there for three days. I observed that the people and the priests were present, but I found no Levites there. </VERS>\n\t\t\t<VERS vnumber=\"16\"> So I sent for Eliezer, Ariel, Shemaiah, Elnathan, Jarib, Elnathan, Nathan, Zechariah, and Meshullam, who were leaders, and Joiarib and Elnathan, who were teachers. </VERS>\n\t\t\t<VERS vnumber=\"17\"> I sent them to Iddo, who was the leader in the place called Casiphia. I told them what to say to Iddo and his relatives, who were the temple servants in Casiphia, so they would bring us attendants for the temple of our God.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Due to the fact that the good hand of our God was on us, they brought us a skilled man, from the descendants of Mahli the son of Levi son of Israel. This man was Sherebiah, who was accompanied by his sons and brothers, 18 men, </VERS>\n\t\t\t<VERS vnumber=\"19\"> and Hashabiah, along with Jeshaiah from the descendants of Merari, with his brothers and their sons, 20 men,</VERS>\n\t\t\t<VERS vnumber=\"20\"> and some of the temple servants that David and his officials had established for the work of the Levites, 220 of them. They were all designated by name.</VERS>\n\t\t\t<VERS vnumber=\"21\"> I called for a fast there by the Ahava Canal, so that we might humble ourselves before our God and seek from him a safe journey for us, our children, and all our property. </VERS>\n\t\t\t<VERS vnumber=\"22\"> I was embarrassed to request soldiers and horsemen from the king to protect us from the enemy along the way, because we had said to the king, \"The good hand of our God is on everyone who is seeking him, but his great anger is against everyone who forsakes him.\" </VERS>\n\t\t\t<VERS vnumber=\"23\"> So we fasted and prayed to our God about this, and he answered us.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Then I set apart twelve of the leading priests, together with Sherebiah, Hashabiah, and ten of their brothers,</VERS>\n\t\t\t<VERS vnumber=\"25\"> and I weighed out to them the silver, the gold, and the vessels intended for the temple of our God, items that the king, his advisers, his officials, and all Israel who were present had contributed.</VERS>\n\t\t\t<VERS vnumber=\"26\"> I weighed out to them 650 talents of silver, silver vessels worth 100 talents, 100 talents of gold, </VERS>\n\t\t\t<VERS vnumber=\"27\"> 20 gold bowls worth 1,000 darics, and two exquisite vessels of gleaming bronze, as valuable as gold.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Then I said to them, \"You are holy to the LORD, just as these vessels are holy. The silver and the gold are a voluntary offering to the LORD, the God of your fathers.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Be careful with them and protect them, until you weigh them out before the leading priests and the Levites and the family leaders of Israel in Jerusalem, in the storerooms of the temple of the LORD.\"</VERS>\n\t\t\t<VERS vnumber=\"30\"> Then the priests and the Levites took charge of the silver, the gold, and the vessels that had been weighed out, to transport them to Jerusalem to the temple of our God.</VERS>\n\t\t\t<VERS vnumber=\"31\"> On the twelfth day of the first month we began traveling from the Ahava Canal to go to Jerusalem. The hand of our God was on us, and he delivered us from our enemy and from bandits along the way.</VERS>\n\t\t\t<VERS vnumber=\"32\"> So we came to Jerusalem, and we stayed there for three days.</VERS>\n\t\t\t<VERS vnumber=\"33\"> On the fourth day we weighed out the silver, the gold, and the vessels in the house of our God into the care of Meremoth son of Uriah, the priest, and Eleazar son of Phinehas, who were accompanied by Jozabad son of Jeshua and Noadiah son of Binnui, who were Levites.</VERS>\n\t\t\t<VERS vnumber=\"34\"> Everything was verified by number and by weight, and the total weight was written down at that time.</VERS>\n\t\t\t<VERS vnumber=\"35\"> The exiles who were returning from the captivity offered burnt offerings to the God of Israel, twelve bulls for all Israel, ninety-six rams, seventy-seven male lambs, along with twelve male goats as a sin offering. All this was a burnt offering to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"36\"> Then they presented the decrees of the king to the king's satraps and to the governors of Trans-Euphrates, who gave help to the people and to the temple of God.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"9\">\n\t\t\t<VERS vnumber=\"1\"> Now when these things had been completed, the leaders approached me and said, \"The people of Israel, the priests, and the Levites have not separated themselves from the local residents who practice detestable things similar to those of the Canaanites, the Hittites, the Perizzites, the Jebusites, the Ammonites, the Moabites, the Egyptians, and the Amorites. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Indeed, they have taken some of their daughters as wives for themselves and for their sons, so that the holy race has become intermingled with the local residents. Worse still, the leaders and the officials have been at the forefront of all of this!\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> When I heard this report, I tore my tunic and my robe and ripped out some of the hair from my head and beard. Then I sat down, quite devastated.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Everyone who held the words of the God of Israel in awe gathered around me because of the unfaithful acts of the people of the exile. Devastated, I continued to sit there until the evening offering.</VERS>\n\t\t\t<VERS vnumber=\"5\"> At the time of the evening offering I got up from my self-abasement, with my tunic and robe torn, and then dropped to my knees and spread my hands to the LORD my God. </VERS>\n\t\t\t<VERS vnumber=\"6\"> I prayed, \"O my God, I am ashamed and embarrassed to lift my face to you, my God! For our iniquities have climbed higher than our heads, and our guilt extends to the heavens.</VERS>\n\t\t\t<VERS vnumber=\"7\"> From the days of our fathers until this very day our guilt has been great. Because of our iniquities we, along with our kings and priests, have been delivered over by the local kings to sword, captivity, plunder, and embarrassment, right up to the present time.</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"But now briefly we have received mercy from the LORD our God, in that he has left us a remnant and has given us a secure position in his holy place. Thus our God has enlightened our eyes and has given us a little relief in our time of servitude. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Although we are slaves, our God has not abandoned us in our servitude. He has extended kindness to us in the sight of the kings of Persia, in that he has revived us to restore the temple of our God and to raise up its ruins and to give us a protective wall in Judah and Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"And now what are we able to say after this, our God? For we have forsaken your commandments</VERS>\n\t\t\t<VERS vnumber=\"11\"> which you commanded us through your servants the prophets with these words: 'The land that you are entering to possess is a land defiled by the impurities of the local residents! With their abominations they have filled it from one end to the other with their filthiness. </VERS>\n\t\t\t<VERS vnumber=\"12\"> Therefore do not give your daughters in marriage to their sons, and do not take their daughters in marriage for your sons. Do not ever seek their peace or welfare, so that you may be strong and may eat the good of the land and may leave it as an inheritance for your children forever.'</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"Everything that has happened to us has come about because of our wicked actions and our great guilt. Even so, our God, you have exercised restraint toward our iniquities and have given us a remnant such as this. </VERS>\n\t\t\t<VERS vnumber=\"14\"> Shall we once again break your commandments and intermarry with these abominable peoples? Would you not be so angered by us that you would wipe us out, with no survivor or remnant?</VERS>\n\t\t\t<VERS vnumber=\"15\"> O LORD God of Israel, you are righteous, for we are left as a remnant this day. Indeed, we stand before you in our guilt. However, because of this guilt no one can really stand before you.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"10\">\n\t\t\t<VERS vnumber=\"1\"> While Ezra was praying and confessing, weeping and throwing himself to the ground before the temple of God, a very large crowd of Israelites, men, women, and children alike, gathered around him. The people wept loudly.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Then Shecaniah son of Jehiel, from the descendants of Elam, addressed Ezra: \"We have been unfaithful to our God by marrying foreign women from the local peoples. Nonetheless, there is still hope for Israel in this regard.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Therefore let us enact a covenant with our God to send away all these women and their offspring, in keeping with your counsel, my lord, and that of those who respect the commandments of our God. And let it be done according to the law. </VERS>\n\t\t\t<VERS vnumber=\"4\"> Get up, for this matter concerns you. We are with you, so be strong and act decisively!\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> So Ezra got up and made the leading priests and Levites and all Israel take an oath to carry out this plan. And they all took a solemn oath. </VERS>\n\t\t\t<VERS vnumber=\"6\"> Then Ezra got up from in front of the temple of God and went to the room of Jehohanan son of Eliashib. While he stayed there, he did not eat food or drink water, for he was in mourning over the infidelity of the exiles.</VERS>\n\t\t\t<VERS vnumber=\"7\"> A proclamation was circulated throughout Judah and Jerusalem that all the exiles were to be assembled in Jerusalem. </VERS>\n\t\t\t<VERS vnumber=\"8\"> Everyone who did not come within three days would thereby forfeit all his property, in keeping with the counsel of the officials and the elders. Furthermore, he himself would be excluded from the assembly of the exiles.</VERS>\n\t\t\t<VERS vnumber=\"9\"> All the men of Judah and Benjamin were gathered in Jerusalem within the three days. (It was in the ninth month, on the twentieth day of that month.) All the people sat in the square at the temple of God, trembling because of this matter and because of the rains.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Then Ezra the priest stood up and said to them, \"You have behaved in an unfaithful manner by taking foreign wives! This has contributed to the guilt of Israel.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Now give praise to the LORD God of your fathers, and do his will. Separate yourselves from the local residents and from these foreign wives.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> All the assembly replied in a loud voice: \"We will do just as you have said!</VERS>\n\t\t\t<VERS vnumber=\"13\"> However, the people are numerous and it is the rainy season. We are unable to stand here outside. Furthermore, this business cannot be resolved in a day or two, for we have sinned greatly in this matter. </VERS>\n\t\t\t<VERS vnumber=\"14\"> Let our leaders take steps on behalf of all the assembly. Let all those in our towns who have married foreign women come at an appointed time, and with them the elders of each town and its judges, until the hot anger of our God is turned away from us in this matter.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> Only Jonathan son of Asahel and Jahzeiah son of Tikvah were against this, assisted by Meshullam and Shabbethai the Levite. </VERS>\n\t\t\t<VERS vnumber=\"16\"> So the exiles proceeded accordingly. Ezra the priest separated out by name men who were leaders in their family groups. They sat down to consider this matter on the first day of the tenth month, </VERS>\n\t\t\t<VERS vnumber=\"17\"> and on the first day of the first month they finished considering all the men who had married foreign wives.</VERS>\n\t\t\t<VERS vnumber=\"18\"> It was determined that from the descendants of the priests, the following had taken foreign wives: from the descendants of Jeshua son of Jozadak, and his brothers: Maaseiah, Eliezer, Jarib, and Gedaliah. </VERS>\n\t\t\t<VERS vnumber=\"19\"> (They gave their word to send away their wives; their guilt offering was a ram from the flock for their guilt.)</VERS>\n\t\t\t<VERS vnumber=\"20\"> From the descendants of Immer: Hanani and Zebadiah.</VERS>\n\t\t\t<VERS vnumber=\"21\"> From the descendants of Harim: Maaseiah, Elijah, Shemaiah, Jehiel, and Uzziah.</VERS>\n\t\t\t<VERS vnumber=\"22\"> From the descendants of Pashhur: Elioenai, Maaseiah, Ishmael, Nethanel, Jozabad, and Elasah.</VERS>\n\t\t\t<VERS vnumber=\"23\"> From the Levites: Jozabad, Shimei, Kelaiah (also known as Kelita), Pethahiah, Judah, and Eliezer.</VERS>\n\t\t\t<VERS vnumber=\"24\"> From the singers: Eliashib. From the gatekeepers: Shallum, Telem, and Uri.</VERS>\n\t\t\t<VERS vnumber=\"25\"> From the Israelites: from the descendants of Parosh: Ramiah, Izziah, Malkijah, Mijamin, Eleazar, Malkijah, and Benaiah.</VERS>\n\t\t\t<VERS vnumber=\"26\"> From the descendants of Elam: Mattaniah, Zechariah, Jehiel, Abdi, Jeremoth, and Elijah.</VERS>\n\t\t\t<VERS vnumber=\"27\"> From the descendants of Zattu: Elioenai, Eliashib, Mattaniah, Jeremoth, Zabad, and Aziza.</VERS>\n\t\t\t<VERS vnumber=\"28\"> From the descendants of Bebai: Jehohanan, Hananiah, Zabbai, and Athlai.</VERS>\n\t\t\t<VERS vnumber=\"29\"> From the descendants of Bani: Meshullam, Malluch, Adaiah, Jashub, Sheal, and Jeremoth.</VERS>\n\t\t\t<VERS vnumber=\"30\"> From the descendants of Pahath-Moab: Adna, Kelal, Benaiah, Maaseiah, Mattaniah, Bezalel, Binnui, and Manasseh.</VERS>\n\t\t\t<VERS vnumber=\"31\"> From the descendants of Harim: Eliezer, Ishijah, Malkijah, Shemaiah, Shimeon, </VERS>\n\t\t\t<VERS vnumber=\"32\"> Benjamin, Malluch, and Shemariah.</VERS>\n\t\t\t<VERS vnumber=\"33\"> From the descendants of Hashum: Mattenai, Mattattah, Zabad, Eliphelet, Jeremai, Manasseh, and Shimei.</VERS>\n\t\t\t<VERS vnumber=\"34\"> From the descendants of Bani: Maadai, Amram, Uel,</VERS>\n\t\t\t<VERS vnumber=\"35\"> Benaiah, Bedeiah, Keluhi,</VERS>\n\t\t\t<VERS vnumber=\"36\"> Vaniah, Meremoth, Eliashib,</VERS>\n\t\t\t<VERS vnumber=\"37\"> Mattaniah, Mattenai, and Jaasu.</VERS>\n\t\t\t<VERS vnumber=\"38\"> From the descendants of Binnui: Shimei, </VERS>\n\t\t\t<VERS vnumber=\"39\"> Shelemiah, Nathan, Adaiah,</VERS>\n\t\t\t<VERS vnumber=\"40\"> Machnadebai, Shashai, Sharai,</VERS>\n\t\t\t<VERS vnumber=\"41\"> Azarel, Shelemiah, Shemariah,</VERS>\n\t\t\t<VERS vnumber=\"42\"> Shallum, Amariah, and Joseph.</VERS>\n\t\t\t<VERS vnumber=\"43\"> From the descendants of Nebo: Jeiel, Mattithiah, Zabad, Zebina, Jaddai, Joel, and Benaiah.</VERS>\n\t\t\t<VERS vnumber=\"44\"> All these had taken foreign wives, and some of them also had children by these women.</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"16\" bname=\"Nehemiah\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\">  These are the words of Nehemiah son of Hacaliah: It so happened that in the month of Kislev, in the twentieth year, I was in Susa the citadel. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Hanani, who was one of my relatives, along with some of the men from Judah, came to me, and I asked them about the Jews who had escaped and had survived the exile, and about Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"3\"> They said to me, \"The remnant that remains from the exile there in the province are experiencing considerable adversity and reproach. The wall of Jerusalem lies breached, and its gates have been burned down!\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> When I heard these things I sat down abruptly, crying and mourning for several days. I continued fasting and praying before the God of heaven. </VERS>\n\t\t\t<VERS vnumber=\"5\"> Then I said, \"Please, O LORD God of heaven, great and awesome God, who keeps his loving covenant with those who love him and obey his commandments, </VERS>\n\t\t\t<VERS vnumber=\"6\"> may your ear be attentive and your eyes be open to hear the prayer of your servant that I am praying to you today throughout both day and night on behalf of your servants the Israelites. I am confessing the sins of the Israelites that we have committed against you, both I myself and my family have sinned.</VERS>\n\t\t\t<VERS vnumber=\"7\"> We have behaved corruptly against you, not obeying the commandments, the statutes, and the judgments that you commanded your servant Moses.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Please recall the word you commanded your servant Moses: 'If you act unfaithfully, I will scatter you among the nations.</VERS>\n\t\t\t<VERS vnumber=\"9\"> But if you repent and obey my commandments and do them, then even if your dispersed people are in the most remote location, I will gather them from there and bring them to the place I have chosen for my name to reside.' </VERS>\n\t\t\t<VERS vnumber=\"10\"> They are your servants and your people, whom you have redeemed by your mighty strength and by your powerful hand.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Please, O Lord, listen attentively to the prayer of your servant and to the prayer of your servants who take pleasure in showing respect to your name. Grant your servant success today and show compassion to me in the presence of this man.\" Now I was cupbearer for the king.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> Then in the month of Nisan, in the twentieth year of King Artaxerxes, when wine was brought to me, I took the wine and gave it to the king. Previously I had not been depressed in the king's presence.</VERS>\n\t\t\t<VERS vnumber=\"2\"> So the king said to me, \"Why do you appear to be depressed when you aren't sick? What can this be other than sadness of heart?\" This made me very fearful.</VERS>\n\t\t\t<VERS vnumber=\"3\"> I replied to the king, \"O king, live forever! Why would I not appear dejected when the city with the graves of my ancestors lies desolate and its gates destroyed by fire?\" </VERS>\n\t\t\t<VERS vnumber=\"4\"> The king responded, \"What is it you are seeking?\" Then I quickly prayed to the God of heaven </VERS>\n\t\t\t<VERS vnumber=\"5\"> and said to the king, \"If the king is so inclined and if your servant has found favor in your sight, dispatch me to Judah, to the city with the graves of my ancestors, so that I can rebuild it.\" </VERS>\n\t\t\t<VERS vnumber=\"6\"> Then the king, with his consort sitting beside him, replied, \"How long would your trip take, and when would you return?\" Since the king was amenable to dispatching me, I gave him a time. </VERS>\n\t\t\t<VERS vnumber=\"7\"> I said to the king, \"If the king is so inclined, let him give me letters for the governors of Trans-Euphrates that will enable me to travel safely until I reach Judah, </VERS>\n\t\t\t<VERS vnumber=\"8\"> and a letter for Asaph the keeper of the king's nature preserve, so that he will give me timber for beams for the gates of the fortress adjacent to the temple and for the city wall and for the house to which I go.\" So the king granted me these requests, for the good hand of my God was on me. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Then I went to the governors of Trans-Euphrates, and I presented to them the letters from the king. The king had sent with me officers of the army and horsemen.</VERS>\n\t\t\t<VERS vnumber=\"10\"> When Sanballat the Horonite and Tobiah the Ammonite official heard all this, they were very displeased that someone had come to seek benefit for the Israelites.</VERS>\n\t\t\t<VERS vnumber=\"11\"> So I came to Jerusalem. When I had been there for three days, </VERS>\n\t\t\t<VERS vnumber=\"12\"> I got up during the night, along with a few men who were with me. But I did not tell anyone what my God was putting on my heart to do for Jerusalem. There were no animals with me, except for the one I was riding. </VERS>\n\t\t\t<VERS vnumber=\"13\"> I proceeded through the Valley Gate by night, in the direction of the Well of the Dragons and the Dung Gate, inspecting the walls of Jerusalem that had been breached and its gates that had been destroyed by fire. </VERS>\n\t\t\t<VERS vnumber=\"14\"> I passed on to the Gate of the Well and the King's Pool, where there was not enough room for my animal to pass with me.</VERS>\n\t\t\t<VERS vnumber=\"15\"> I continued up the valley during the night, inspecting the wall. Then I turned back and came to the Valley Gate, and so returned.</VERS>\n\t\t\t<VERS vnumber=\"16\"> The officials did not know where I had gone or what I had been doing, for up to this point I had not told any of the Jews or the priests or the nobles or the officials or the rest of the workers.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Then I said to them, \"You see the problem that we have: Jerusalem is desolate and its gates are burned. Come on! Let's rebuild the wall of Jerusalem so that this reproach will not continue.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> Then I related to them how the good hand of my God was on me and what the king had said to me. Then they replied, \"Let's begin rebuilding right away!\" So they readied themselves for this good project. </VERS>\n\t\t\t<VERS vnumber=\"19\"> But when Sanballat the Horonite, Tobiah the Ammonite official, and Geshem the Arab heard all this, they derided us and expressed contempt toward us. They said, \"What is this you are doing? Are you rebelling against the king?\" </VERS>\n\t\t\t<VERS vnumber=\"20\"> I responded to them by saying, \"The God of heaven will prosper us. We his servants will start the rebuilding. But you have no just or ancient right in Jerusalem.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> Then Eliashib the high priest and his priestly colleagues arose and built the Sheep Gate. They dedicated it and erected its doors, working as far as the Tower of the Hundred and the Tower of Hananel. </VERS>\n\t\t\t<VERS vnumber=\"2\"> The men of Jericho built adjacent to it, and Zaccur son of Imri built adjacent to them.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The sons of Hassenaah rebuilt the Fish Gate. They laid its beams and positioned its doors, its bolts, and its bars.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Meremoth son of Uriah, the son of Hakoz, worked on the section adjacent to them. Meshullam son of Berechiah the son of Meshezabel worked on the section next to them. And Zadok son of Baana worked on the section adjacent to them.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The men of Tekoa worked on the section adjacent to them, but their town leaders would not assist with the work of their master.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Joiada son of Paseah and Meshullam son of Besodeiah worked on the Jeshanah Gate. They laid its beams and positioned its doors, its bolts, and its bars. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Adjacent to them worked Melatiah the Gibeonite and Jadon the Meronothite, who were men of Gibeon and Mizpah. These towns were under the jurisdiction of the governor of Trans-Euphrates. </VERS>\n\t\t\t<VERS vnumber=\"8\"> Uzziel son of Harhaiah, a member of the goldsmiths' guild, worked on the section adjacent to him. Hananiah, a member of the perfumers' guild, worked on the section adjacent to him. They plastered the city wall of Jerusalem as far as the Broad Wall. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Rephaiah son of Hur, head of a half-district of Jerusalem, worked on the section adjacent to them.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Jedaiah son of Harumaph worked on the section adjacent to them opposite his house, and Hattush son of Hashabneiah worked on the section adjacent to him. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Malkijah son of Harim and Hasshub son of Pahath-Moab worked on another section and the Tower of the Fire Pots.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Shallum son of Hallohesh, head of a half-district of Jerusalem, worked on the section adjacent to him, assisted by his daughters.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Hanun and the residents of Zanoah worked on the Valley Gate. They rebuilt it and positioned its doors, its bolts, and its bars, in addition to working on fifteen hundred feet of the wall as far as the Dung Gate.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Malkijah son of Recab, head of the district of Beth Hakkerem, worked on the Dung Gate. He rebuilt it and positioned its doors, its bolts, and its bars.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Shallun son of Col-Hozeh, head of the district of Mizpah, worked on the Fountain Gate. He rebuilt it, put on its roof, and positioned its doors, its bolts, and its bars. In addition, he rebuilt the wall of the Pool of Siloam, by the royal garden, as far as the steps that go down from the City of David.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Nehemiah son of Azbuk, head of a half-district of Beth Zur, worked after him as far as the tombs of David and the artificial pool and the House of the Warriors.</VERS>\n\t\t\t<VERS vnumber=\"17\"> After him the Levites worked, Rehum son of Bani and after him Hashabiah, head of half the district of Keilah, for his district.</VERS>\n\t\t\t<VERS vnumber=\"18\"> After him their relatives worked, Binnui son of Henadad, head of a half-district of Keilah.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Adjacent to him Ezer son of Jeshua, head of Mizpah, worked on another section, opposite the ascent to the armory at the buttress.</VERS>\n\t\t\t<VERS vnumber=\"20\"> After him Baruch son of Zabbai worked on another section, from the buttress to the door of the house of Eliashib the high priest.</VERS>\n\t\t\t<VERS vnumber=\"21\"> After him Meremoth son of Uriah, the son of Hakkoz, worked on another section from the door of Eliashib's house to the end of it.</VERS>\n\t\t\t<VERS vnumber=\"22\"> After him the priests worked, men of the nearby district.</VERS>\n\t\t\t<VERS vnumber=\"23\"> After them Benjamin and Hasshub worked opposite their house. After them Azariah son of Maaseiah, the son of Ananiah, worked near his house.</VERS>\n\t\t\t<VERS vnumber=\"24\"> After him Binnui son of Henadad worked on another section, from the house of Azariah to the buttress and the corner.</VERS>\n\t\t\t<VERS vnumber=\"25\"> After him Palal son of Uzai worked opposite the buttress and the tower that protrudes from the upper palace of the court of the guard. After him Pedaiah son of Parosh</VERS>\n\t\t\t<VERS vnumber=\"26\"> and the temple servants who were living on Ophel worked up to the area opposite the Water Gate toward the east and the protruding tower. </VERS>\n\t\t\t<VERS vnumber=\"27\"> After them the men of Tekoa worked on another section, from opposite the great protruding tower to the wall of Ophel.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Above the Horse Gate the priests worked, each in front of his house.</VERS>\n\t\t\t<VERS vnumber=\"29\"> After them Zadok son of Immer worked opposite his house, and after him Shemaiah son of Shecaniah, guard at the East Gate, worked.</VERS>\n\t\t\t<VERS vnumber=\"30\"> After him Hananiah son of Shelemiah, and Hanun, the sixth son of Zalaph, worked on another section. After them Meshullam son of Berechiah worked opposite his quarters. </VERS>\n\t\t\t<VERS vnumber=\"31\"> After him Malkijah, one of the goldsmiths, worked as far as the house of the temple servants and the traders, opposite the Inspection Gate, and up to the room above the corner. </VERS>\n\t\t\t<VERS vnumber=\"32\"> And between the room above the corner and the Sheep Gate the goldsmiths and traders worked.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\">  Now when Sanballat heard that we were rebuilding the wall he became angry and was quite upset. He derided the Jews, </VERS>\n\t\t\t<VERS vnumber=\"2\"> and in the presence of his colleagues and the army of Samaria he said, \"What are these feeble Jews doing? Will they be left to themselves? Will they again offer sacrifice? Will they finish this in a day? Can they bring these burnt stones to life again from piles of dust?\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> Then Tobiah the Ammonite, who was close by, said, \"If even a fox were to climb up on what they are building, it would break down their wall of stones!\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> Hear, O our God, for we are despised! Return their reproach on their own head! Reduce them to plunder in a land of exile!</VERS>\n\t\t\t<VERS vnumber=\"5\"> Do not cover their iniquity, and do not wipe out their sin from before them. For they have bitterly offended the builders!</VERS>\n\t\t\t<VERS vnumber=\"6\"> So we rebuilt the wall, and the entire wall was joined together up to half its height. The people were enthusiastic in their work.</VERS>\n\t\t\t<VERS vnumber=\"7\">  When Sanballat, Tobiah, the Arabs, the Ammonites, and the people of Ashdod heard that the restoration of the walls of Jerusalem had moved ahead and that the breaches had begun to be closed, they were very angry. </VERS>\n\t\t\t<VERS vnumber=\"8\"> All of them conspired together to move with armed forces against Jerusalem and to create a disturbance in it. </VERS>\n\t\t\t<VERS vnumber=\"9\"> So we prayed to our God and stationed a guard to protect against them both day and night. </VERS>\n\t\t\t<VERS vnumber=\"10\"> Then those in Judah said, \"The strength of the laborers has failed! The debris is so great that we are unable to rebuild the wall.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> Our adversaries also boasted, \"Before they are aware or anticipate anything, we will come in among them and kill them, and we will bring this work to a halt!\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> So it happened that the Jews who were living near them came and warned us repeatedly about all the schemes they were plotting against us.</VERS>\n\t\t\t<VERS vnumber=\"13\"> So I stationed people at the lower places behind the wall in the exposed places. I stationed the people by families, with their swords, spears, and bows. </VERS>\n\t\t\t<VERS vnumber=\"14\"> When I had made an inspection, I stood up and said to the nobles, the officials, and the rest of the people, \"Don't be afraid of them. Remember the great and awesome Lord, and fight on behalf of your brothers, your sons, your daughters, your wives, and your families!\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> It so happened that when our adversaries heard that we were aware of these matters, God frustrated their intentions. Then all of us returned to the wall, each to his own work. </VERS>\n\t\t\t<VERS vnumber=\"16\"> From that day forward, half of my men were doing the work and half of them were taking up spears, shields, bows, and body armor. Now the officers were behind all the people of Judah </VERS>\n\t\t\t<VERS vnumber=\"17\"> who were rebuilding the wall. Those who were carrying loads did so by keeping one hand on the work and the other on their weapon. </VERS>\n\t\t\t<VERS vnumber=\"18\"> The builders to a man had their swords strapped to their sides while they were building. But the trumpeter remained with me.</VERS>\n\t\t\t<VERS vnumber=\"19\"> I said to the nobles, the officials, and the rest of the people, \"The work is demanding and extensive, and we are spread out on the wall, far removed from one another. </VERS>\n\t\t\t<VERS vnumber=\"20\"> Wherever you hear the sound of the trumpet, gather there with us. Our God will fight for us!\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> So we worked on, with half holding spears, from dawn till dusk.</VERS>\n\t\t\t<VERS vnumber=\"22\"> At that time I instructed the people, \"Let every man and his coworker spend the night in Jerusalem and let them be guards for us by night and workers by day. </VERS>\n\t\t\t<VERS vnumber=\"23\"> We did not change clothes, not I, nor my relatives, nor my workers, nor the watchmen who were with me. Each had his weapon, even when getting a drink of water.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"5\">\n\t\t\t<VERS vnumber=\"1\"> Then there was a great outcry from the people and their wives against their fellow Jews.</VERS>\n\t\t\t<VERS vnumber=\"2\"> There were those who said, \"With our sons and daughters, we are many. We must obtain grain in order to eat and stay alive.\" </VERS>\n\t\t\t<VERS vnumber=\"3\"> There were others who said, \"We are putting up our fields, our vineyards, and our houses as collateral in order to obtain grain during the famine.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> Then there were those who said, \"We have borrowed money to pay our taxes to the king on our fields and our vineyards. </VERS>\n\t\t\t<VERS vnumber=\"5\"> And now, though we share the same flesh and blood as our fellow countrymen, and our children are just like their children, still we have found it necessary to subject our sons and daughters to slavery. Some of our daughters have been subjected to slavery, while we are powerless to help, since our fields and vineyards now belong to other people.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> I was very angry when I heard their outcry and these complaints.</VERS>\n\t\t\t<VERS vnumber=\"7\"> I considered these things carefully and then registered a complaint with the wealthy and the officials. I said to them, \"Each one of you is seizing the collateral from your own countrymen!\" Because of them I called for a great public assembly. </VERS>\n\t\t\t<VERS vnumber=\"8\"> I said to them, \"To the extent possible we have bought back our fellow Jews who had been sold to the Gentiles. But now you yourselves want to sell your own countrymen, so that we can then buy them back!\" They were utterly silent, and could find nothing to say.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Then I said, \"The thing that you are doing is wrong! Should you not conduct yourselves in the fear of our God in order to avoid the reproach of the Gentiles who are our enemies? </VERS>\n\t\t\t<VERS vnumber=\"10\"> Even I and my relatives and my associates are lending them money and grain. But let us abandon this practice of seizing collateral!</VERS>\n\t\t\t<VERS vnumber=\"11\"> This very day return to them their fields, their vineyards, their olive trees, and their houses, along with the interest that you are exacting from them on the money, the grain, the new wine, and the olive oil.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> They replied, \"We will return these things, and we will no longer demand anything from them. We will do just as you say.\" Then I called the priests and made the wealthy and the officials swear to do what had been promised.</VERS>\n\t\t\t<VERS vnumber=\"13\"> I also shook out my garment, and I said, \"In this way may God shake out from his house and his property every person who does not carry out this matter. In this way may he be shaken out and emptied!\" All the assembly replied, \"So be it!\" and they praised the LORD. Then the people did as they had promised.</VERS>\n\t\t\t<VERS vnumber=\"14\"> From the day that I was appointed governor in the land of Judah, that is, from the twentieth year until the thirty-second year of King Artaxerxes, twelve years in all, neither I nor my relatives ate the food allotted to the governor.</VERS>\n\t\t\t<VERS vnumber=\"15\"> But the former governors who preceded me had burdened the people and had taken food and wine from them, in addition to forty shekels of silver. Their associates were also domineering over the people. But I did not behave in this way, due to my fear of God. </VERS>\n\t\t\t<VERS vnumber=\"16\"> I gave myself to the work on this wall, without even purchasing a field. All my associates were gathered there for the work.</VERS>\n\t\t\t<VERS vnumber=\"17\"> There were 150 Jews and officials who dined with me routinely, in addition to those who came to us from the nations all around us. </VERS>\n\t\t\t<VERS vnumber=\"18\"> Every day one ox, six select sheep, and some birds were prepared for me, and every ten days all kinds of wine in abundance. Despite all this I did not require the food allotted to the governor, for the work was demanding on this people.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Please remember me for good, O my God, for all that I have done for this people.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"6\">\n\t\t\t<VERS vnumber=\"1\"> When Sanballat, Tobiah, Geshem the Arab, and the rest of our enemies heard that I had rebuilt the wall and no breach remained in it (even though up to that time I had not positioned doors in the gates),</VERS>\n\t\t\t<VERS vnumber=\"2\"> Sanballat and Geshem sent word to me saying, \"Come on! Let's set up a time to meet together at Kephirim in the plain of Ono.\" Now they intended to do me harm.</VERS>\n\t\t\t<VERS vnumber=\"3\"> So I sent messengers to them saying, \"I am engaged in an important work, and I am unable to come down. Why should the work come to a halt when I leave it to come down to you?\" </VERS>\n\t\t\t<VERS vnumber=\"4\"> They contacted me four times in this way, and I responded the same way each time.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The fifth time that Sanballat sent his assistant to me in this way, he had an open letter in his hand.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Written in it were the following words: \"Among the nations it is rumored (and Geshem has substantiated this) that you and the Jews have intentions of revolting, and for this reason you are building the wall. Furthermore, according to these rumors you are going to become their king.</VERS>\n\t\t\t<VERS vnumber=\"7\"> You have also established prophets to announce in Jerusalem on your behalf, 'We have a king in Judah!' Now the king is going to hear about these rumors. So come on! Let's talk about this.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> I sent word back to him, \"We are not engaged in these activities you are describing. All of this is a figment of your imagination.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> All of them were wanting to scare us, supposing, \"Their hands will grow slack from the work, and it won't get done.\" So now, strengthen my hands!</VERS>\n\t\t\t<VERS vnumber=\"10\"> Then I went to the house of Shemaiah son of Delaiah, the son of Mehetabel. He was confined to his home. He said, \"Let's set up a time to meet in the house of God, within the temple. Let's close the doors of the temple, for they are coming to kill you. It will surely be at night that they will come to kill you.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> But I replied, \"Should a man like me run away? Would someone like me flee to the temple in order to save his life? I will not go!\" </VERS>\n\t\t\t<VERS vnumber=\"12\"> I recognized the fact that God had not sent him, for he had spoken the prophecy against me as a hired agent of Tobiah and Sanballat.</VERS>\n\t\t\t<VERS vnumber=\"13\"> He had been hired to scare me so that I would do this and thereby sin. They would thus bring reproach on me and I would be discredited.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Remember, O my God, Tobiah and Sanballat in light of these actions of theirs, also Noadiah the prophetess and the other prophets who were trying to scare me!</VERS>\n\t\t\t<VERS vnumber=\"15\"> So the wall was completed on the twenty-fifth day of Elul, in just fifty-two days.</VERS>\n\t\t\t<VERS vnumber=\"16\"> When all our enemies heard and all the nations who were around us saw this, they were greatly disheartened. They knew that this work had been accomplished with the help of our God.</VERS>\n\t\t\t<VERS vnumber=\"17\"> In those days the aristocrats of Judah repeatedly sent letters to Tobiah, and responses from Tobiah were repeatedly coming to them.</VERS>\n\t\t\t<VERS vnumber=\"18\"> For many in Judah had sworn allegiance to him, because he was the son-in-law of Shecaniah son of Arah. His son Jonathan had married the daughter of Meshullam son of Berechiah. </VERS>\n\t\t\t<VERS vnumber=\"19\"> They were telling me about his good deeds and then taking back to him the things I said. Tobiah, on the other hand, sent letters in order to scare me.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"7\">\n\t\t\t<VERS vnumber=\"1\"> When the wall had been rebuilt and I had positioned the doors, and the gatekeepers, the singers, and the Levites had been appointed,</VERS>\n\t\t\t<VERS vnumber=\"2\"> I then put in charge over Jerusalem my brother Hanani and Hananiah the chief of the citadel, for he was a faithful man and feared God more than many do. </VERS>\n\t\t\t<VERS vnumber=\"3\"> I said to them, \"The gates of Jerusalem must not be opened in the early morning, until those who are standing guard close the doors and lock them. Position residents of Jerusalem as guards, some at their guard stations and some near their homes.\" </VERS>\n\t\t\t<VERS vnumber=\"4\"> Now the city was spread out and large, and there were not a lot of people in it. At that time houses had not been rebuilt. </VERS>\n\t\t\t<VERS vnumber=\"5\"> My God placed it on my heart to gather the leaders, the officials, and the ordinary people so they could be enrolled on the basis of genealogy. I found the genealogical records of those who had formerly returned. Here is what I found written in that record:</VERS>\n\t\t\t<VERS vnumber=\"6\"> These are the people of the province who returned from the captivity of the exiles, whom King Nebuchadnezzar of Babylon had forced into exile. They returned to Jerusalem and to Judah, each to his own city. </VERS>\n\t\t\t<VERS vnumber=\"7\"> They came with Zerubbabel, Jeshua, Nehemiah, Azariah, Raamiah, Nahamani, Mordecai, Bilshan, Mispereth, Bigvai, Nehum, and Baanah. The number of Israelite men was as follows:</VERS>\n\t\t\t<VERS vnumber=\"8\"> the descendants of Parosh, 2,172;</VERS>\n\t\t\t<VERS vnumber=\"9\"> the descendants of Shephatiah, 372;</VERS>\n\t\t\t<VERS vnumber=\"10\"> the descendants of Arah, 652;</VERS>\n\t\t\t<VERS vnumber=\"11\"> the descendants of Pahath-Moab (from the line of Jeshua and Joab), 2,818;</VERS>\n\t\t\t<VERS vnumber=\"12\"> the descendants of Elam, 1,254;</VERS>\n\t\t\t<VERS vnumber=\"13\"> the descendants of Zattu, 845;</VERS>\n\t\t\t<VERS vnumber=\"14\"> the descendants of Zaccai, 760;</VERS>\n\t\t\t<VERS vnumber=\"15\"> the descendants of Binnui, 648;</VERS>\n\t\t\t<VERS vnumber=\"16\"> the descendants of Bebai, 628;</VERS>\n\t\t\t<VERS vnumber=\"17\"> the descendants of Azgad, 2,322;</VERS>\n\t\t\t<VERS vnumber=\"18\"> the descendants of Adonikam, 667;</VERS>\n\t\t\t<VERS vnumber=\"19\"> the descendants of Bigvai, 2,067;</VERS>\n\t\t\t<VERS vnumber=\"20\"> the descendants of Adin, 655;</VERS>\n\t\t\t<VERS vnumber=\"21\"> the descendants of Ater (through Hezekiah), 98;</VERS>\n\t\t\t<VERS vnumber=\"22\"> the descendants of Hashum, 328;</VERS>\n\t\t\t<VERS vnumber=\"23\"> the descendants of Bezai, 324;</VERS>\n\t\t\t<VERS vnumber=\"24\"> the descendants of Harif, 112;</VERS>\n\t\t\t<VERS vnumber=\"25\"> the descendants of Gibeon, 95;</VERS>\n\t\t\t<VERS vnumber=\"26\"> The men of Bethlehem and Netophah, 188;</VERS>\n\t\t\t<VERS vnumber=\"27\"> the men of Anathoth, 128;</VERS>\n\t\t\t<VERS vnumber=\"28\"> the men of the family of Azmaveth, 42;</VERS>\n\t\t\t<VERS vnumber=\"29\"> the men of Kiriath Jearim, Kephirah, and Beeroth, 743;</VERS>\n\t\t\t<VERS vnumber=\"30\"> the men of Ramah and Geba, 621;</VERS>\n\t\t\t<VERS vnumber=\"31\"> the men of Micmash, 122;</VERS>\n\t\t\t<VERS vnumber=\"32\"> the men of Bethel and Ai, 123;</VERS>\n\t\t\t<VERS vnumber=\"33\"> the men of the other Nebo, 52;</VERS>\n\t\t\t<VERS vnumber=\"34\"> the descendants of the other Elam, 1,254;</VERS>\n\t\t\t<VERS vnumber=\"35\"> the descendants of Harim, 320;</VERS>\n\t\t\t<VERS vnumber=\"36\"> the descendants of Jericho, 345;</VERS>\n\t\t\t<VERS vnumber=\"37\"> the descendants of Lod, Hadid, and Ono, 721;</VERS>\n\t\t\t<VERS vnumber=\"38\"> the descendants of Senaah, 3,930.</VERS>\n\t\t\t<VERS vnumber=\"39\"> The priests: the descendants of Jedaiah (through the family of Jeshua), 973;</VERS>\n\t\t\t<VERS vnumber=\"40\"> the descendants of Immer, 1,052;</VERS>\n\t\t\t<VERS vnumber=\"41\"> the descendants of Pashhur, 1,247;</VERS>\n\t\t\t<VERS vnumber=\"42\"> the descendants of Harim, 1,017.</VERS>\n\t\t\t<VERS vnumber=\"43\"> The Levites: the descendants of Jeshua (through Kadmiel, through the line of Hodaviah), 74.</VERS>\n\t\t\t<VERS vnumber=\"44\"> The singers: the descendants of Asaph, 148.</VERS>\n\t\t\t<VERS vnumber=\"45\"> The gatekeepers: the descendants of Shallum, the descendants of Ater, the descendants of Talmon, the descendants of Akkub, the descendants of Hatita, and the descendants of Shobai, 138.</VERS>\n\t\t\t<VERS vnumber=\"46\"> The temple servants: the descendants of Ziha, the descendants of Hasupha, the descendants of Tabbaoth,</VERS>\n\t\t\t<VERS vnumber=\"47\"> the descendants of Keros, the descendants of Sia, the descendants of Padon,</VERS>\n\t\t\t<VERS vnumber=\"48\"> the descendants of Lebanah, the descendants of Hagabah, the descendants of Shalmai,</VERS>\n\t\t\t<VERS vnumber=\"49\"> the descendants of Hanan, the descendants of Giddel, the descendants of Gahar,</VERS>\n\t\t\t<VERS vnumber=\"50\"> the descendants of Reaiah, the descendants of Rezin, the descendants of Nekoda,</VERS>\n\t\t\t<VERS vnumber=\"51\"> the descendants of Gazzam, the descendants of Uzzah, the descendants of Paseah,</VERS>\n\t\t\t<VERS vnumber=\"52\"> the descendants of Besai, the descendants of Meunim, the descendants of Nephussim,</VERS>\n\t\t\t<VERS vnumber=\"53\"> the descendants of Bakbuk, the descendants of Hakupha, the descendants of Harhur,</VERS>\n\t\t\t<VERS vnumber=\"54\"> the descendants of Bazluth, the descendants of Mehida, the descendants of Harsha,</VERS>\n\t\t\t<VERS vnumber=\"55\"> the descendants of Barkos, the descendants of Sisera, the descendants of Temah,</VERS>\n\t\t\t<VERS vnumber=\"56\"> the descendants of Neziah, the descendants of Hatipha.</VERS>\n\t\t\t<VERS vnumber=\"57\"> The descendants of the servants of Solomon: the descendants of Sotai, the descendants of Sophereth, the descendants of Perida,</VERS>\n\t\t\t<VERS vnumber=\"58\"> the descendants of Jaala, the descendants of Darkon, the descendants of Giddel,</VERS>\n\t\t\t<VERS vnumber=\"59\"> the descendants of Shephatiah, the descendants of Hattil, the descendants of Pokereth-Hazzebaim, and the descendants of Amon.</VERS>\n\t\t\t<VERS vnumber=\"60\"> All the temple servants and the descendants of the servants of Solomon, 392.</VERS>\n\t\t\t<VERS vnumber=\"61\"> These are the ones who came up from Tel Melah, Tel Harsha, Kerub, Addon, and Immer (although they were unable to certify their family connection or their ancestry, as to whether they were really from Israel):</VERS>\n\t\t\t<VERS vnumber=\"62\"> the descendants of Delaiah, the descendants of Tobiah, and the descendants of Nekoda, 642.</VERS>\n\t\t\t<VERS vnumber=\"63\"> And from among the priests: the descendants of Hobaiah, the descendants of Hakkoz, and the descendants of Barzillai (who had married a woman from the daughters of Barzillai the Gileadite and was called by that name).</VERS>\n\t\t\t<VERS vnumber=\"64\"> They searched for their records in the genealogical materials, but none were found. They were therefore excluded from the priesthood. </VERS>\n\t\t\t<VERS vnumber=\"65\"> The governor instructed them not to eat any of the sacred food until there was a priest who could consult the Urim and Thummim.</VERS>\n\t\t\t<VERS vnumber=\"66\"> The entire group numbered 42,360,</VERS>\n\t\t\t<VERS vnumber=\"67\"> not counting their 7,337 male and female servants. They also had 245 male and female singers.</VERS>\n\t\t\t<VERS vnumber=\"68\"> They had 736 horses, 245 mules,</VERS>\n\t\t\t<VERS vnumber=\"69\">  435 camels, and 6,720 donkeys. </VERS>\n\t\t\t<VERS vnumber=\"70\"> Some of the family leaders contributed to the work. The governor contributed to the treasury 1,000 gold drachmas, 50 bowls, and 530 priestly garments. </VERS>\n\t\t\t<VERS vnumber=\"71\"> Some of the family leaders gave to the project treasury 20,000 gold drachmas and 2,200 silver minas.</VERS>\n\t\t\t<VERS vnumber=\"72\"> What the rest of the people gave amounted to 20,000 gold drachmas, 2,000 silver minas, and 67 priestly garments.</VERS>\n\t\t\t<VERS vnumber=\"73\"> The priests, the Levites, the gatekeepers, the singers, some of the people, the temple servants, and all the rest of Israel lived in their cities. When the seventh month arrived and the Israelites were settled in their cities,</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"8\">\n\t\t\t<VERS vnumber=\"1\"> all the people gathered together in the plaza which was in front of the Water Gate. They asked Ezra the scribe to bring the book of the law of Moses which the LORD had commanded Israel. </VERS>\n\t\t\t<VERS vnumber=\"2\"> So Ezra the priest brought the law before the assembly which included men and women and all those able to understand what they heard. (This happened on the first day of the seventh month.)</VERS>\n\t\t\t<VERS vnumber=\"3\"> So he read it before the plaza in front of the Water Gate from dawn till noon before the men and women and those children who could understand. All the people were eager to hear the book of the law.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Ezra the scribe stood on a towering wooden platform constructed for this purpose. Standing near him on his right were Mattithiah, Shema, Anaiah, Uriah, Hilkiah, and Masseiah. On his left were Pedaiah, Mishael, Malkijah, Hashum, Hashbaddanah, Zechariah, and Meshullam. </VERS>\n\t\t\t<VERS vnumber=\"5\"> Ezra opened the book in plain view of all the people, for he was elevated above all the people. When he opened the book, all the people stood up. </VERS>\n\t\t\t<VERS vnumber=\"6\"> Ezra blessed the LORD, the great God, and all the people replied \"Amen! Amen!\" as they lifted their hands. Then they bowed down and worshiped the LORD with their faces to the ground.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Jeshua, Bani, Sherebiah, Jamin, Akkub, Shabbethai, Hodiah, Maaseiah, Kelita, Azariah, Jozabad, Hanan, and Pelaiah, all of whom were Levites, were teaching the people the law, as the people remained standing.</VERS>\n\t\t\t<VERS vnumber=\"8\"> They read from the book of God's law, explaining it and imparting insight. Thus the people gained understanding from what was read.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Then Nehemiah the governor, Ezra the priestly scribe, and the Levites who were imparting understanding to the people said to all of them, \"This day is holy to the LORD your God. Do not mourn or weep.\" For all the people had been weeping when they heard the words of the law. </VERS>\n\t\t\t<VERS vnumber=\"10\"> He said to them, \"Go and eat delicacies and drink sweet drinks and send portions to those for whom nothing is prepared. For this day is holy to our Lord. Do not grieve, for the joy of the LORD is your strength.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> Then the Levites quieted all the people saying, \"Be quiet, for this day is holy. Do not grieve.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> So all the people departed to eat and drink and to share their food with others and to enjoy tremendous joy, for they had gained insight in the matters that had been made known to them.</VERS>\n\t\t\t<VERS vnumber=\"13\"> On the second day of the month the family leaders met with Ezra the scribe, together with all the people, the priests, and the Levites, to consider the words of the law. </VERS>\n\t\t\t<VERS vnumber=\"14\"> They discovered written in the law that the LORD had commanded through Moses that the Israelites should live in temporary shelters during the festival of the seventh month, </VERS>\n\t\t\t<VERS vnumber=\"15\"> and that they should make a proclamation and disseminate this message in all their cities and in Jerusalem: \"Go to the hill country and bring back olive branches and branches of wild olive trees, myrtle trees, date palms, and other leafy trees to construct temporary shelters, as it is written.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> So the people went out and brought these things back and constructed temporary shelters for themselves, each on his roof and in his courtyard and in the courtyards of the temple of God and in the plaza of the Water Gate and the plaza of the Ephraim Gate. </VERS>\n\t\t\t<VERS vnumber=\"17\"> So all the assembly which had returned from the exile constructed temporary shelters and lived in them. The Israelites had not done so from the days of Joshua son of Nun until that day. Everyone experienced very great joy.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Ezra read in the book of the law of God day by day, from the first day to the last. They observed the festival for seven days, and on the eighth day they held an assembly as was required.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"9\">\n\t\t\t<VERS vnumber=\"1\"> On the twenty-fourth day of this same month the Israelites assembled; they were fasting and wearing sackcloth, their heads covered with dust.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Those truly of Israelite descent separated from all the foreigners, standing and confessing their sins and the iniquities of their ancestors.</VERS>\n\t\t\t<VERS vnumber=\"3\"> For one-fourth of the day they stood in their place and read from the book of the law of the LORD their God, and for another fourth they were confessing their sins and worshiping the LORD their God. </VERS>\n\t\t\t<VERS vnumber=\"4\"> Then the Levites, Jeshua, Binnui, Kadmiel, Shebaniah, Bunni, Sherebiah, Bani, and Kenani, stood on the steps and called out loudly to the LORD their God.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The Levites, Jeshua, Kadmiel, Bani, Hashabneiah, Sherebiah, Hodiah, Shebaniah, and Pethahiah, said, \"Stand up and bless the LORD your God!\" \"May you be blessed, O LORD our God, from age to age. May your glorious name be blessed; may it be lifted up above all blessing and praise.</VERS>\n\t\t\t<VERS vnumber=\"6\"> You alone are the LORD. You made the heavens, even the highest heavens, along with all their multitude of stars, the earth and all that is on it, the seas and all that is in them. You impart life to them all, and the multitudes of heaven worship you.</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"You are the LORD God who chose Abram and brought him forth from Ur of the Chaldeans. You changed his name to Abraham.</VERS>\n\t\t\t<VERS vnumber=\"8\"> When you perceived that his heart was faithful toward you, you established a covenant with him to give his descendants the land of the Canaanites, the Hittites, the Amorites, the Perizzites, the Jebusites, and the Girgashites. You have fulfilled your promise, for you are righteous.</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"You saw the affliction of our ancestors in Egypt, and you heard their cry at the Red Sea.</VERS>\n\t\t\t<VERS vnumber=\"10\"> You performed awesome signs against Pharaoh, against his servants, and against all the people of his land, for you knew that the Egyptians had acted presumptuously against them. You made for yourself a name that is celebrated to this day. </VERS>\n\t\t\t<VERS vnumber=\"11\"> You split the sea before them, and they crossed through the sea on dry ground! But you threw their pursuers into the depths, like a stone into surging waters. </VERS>\n\t\t\t<VERS vnumber=\"12\"> You guided them with a pillar of cloud by day and with a pillar of fire by night to illumine for them the path they were to travel.</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"You came down on Mount Sinai and spoke with them from heaven. You provided them with just judgments, true laws, and good statutes and commandments.</VERS>\n\t\t\t<VERS vnumber=\"14\"> You made known to them your holy Sabbath; you issued commandments, statutes, and law to them through Moses your servant. </VERS>\n\t\t\t<VERS vnumber=\"15\"> You provided bread from heaven for them in their time of hunger, and you brought forth water from the rock for them in their time of thirst. You told them to enter in order to possess the land that you had sworn to give them.</VERS>\n\t\t\t<VERS vnumber=\"16\"> \"But they, our ancestors, behaved presumptuously; they rebelled and did not obey your commandments.</VERS>\n\t\t\t<VERS vnumber=\"17\"> They refused to obey and did not recall your miracles that you had performed among them. Instead, they rebelled and appointed a leader to return to their bondage in Egypt. But you are a God of forgiveness, merciful and compassionate, slow to get angry and unfailing in your loyal love. You did not abandon them,</VERS>\n\t\t\t<VERS vnumber=\"18\"> even when they made a cast image of a calf for themselves and said, 'This is your God who brought you up from Egypt,' or when they committed atrocious blasphemies.</VERS>\n\t\t\t<VERS vnumber=\"19\"> \"Due to your great compassion you did not abandon them in the desert. The pillar of cloud did not stop guiding them in the path by day, nor did the pillar of fire stop illuminating for them by night the path on which they should travel. </VERS>\n\t\t\t<VERS vnumber=\"20\"> You imparted your good Spirit to instruct them. You did not withhold your manna from their mouths; you provided water for their thirst.</VERS>\n\t\t\t<VERS vnumber=\"21\"> For forty years you sustained them. Even in the desert they never lacked anything. Their clothes did not wear out and their feet did not swell.</VERS>\n\t\t\t<VERS vnumber=\"22\"> \"You gave them kingdoms and peoples, and you allocated them to every corner of the land. They inherited the land of King Sihon of Heshbon and the land of King Og of Bashan. </VERS>\n\t\t\t<VERS vnumber=\"23\"> You multiplied their descendants like the stars of the sky. You brought them to the land you had told their ancestors to enter in order to possess.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Their descendants entered and possessed the land. You subdued before them the Canaanites who were the inhabitants of the land. You delivered them into their hand, together with their kings and the peoples of the land, to deal with as they pleased. </VERS>\n\t\t\t<VERS vnumber=\"25\"> They captured fortified cities and fertile land. They took possession of houses full of all sorts of good things, wells previously dug, vineyards, olive trees, and fruit trees in abundance. They ate until they were full and grew fat. They enjoyed to the full your great goodness.</VERS>\n\t\t\t<VERS vnumber=\"26\"> \"Nonetheless they grew disobedient and rebelled against you; they disregarded your law. They killed your prophets who had solemnly admonished them in order to cause them to return to you. They committed atrocious blasphemies. </VERS>\n\t\t\t<VERS vnumber=\"27\"> Therefore you delivered them into the hand of their adversaries, who oppressed them. But in the time of their distress they called to you, and you heard from heaven. In your abundant compassion you provided them with deliverers to rescue them from their adversaries.</VERS>\n\t\t\t<VERS vnumber=\"28\"> \"Then, when they were at rest again, they went back to doing evil before you. Then you abandoned them to their enemies, and they gained dominion over them. When they again cried out to you, in your compassion you heard from heaven and rescued them time and again.</VERS>\n\t\t\t<VERS vnumber=\"29\"> And you solemnly admonished them in order to return them to your law, but they behaved presumptuously and did not obey your commandments. They sinned against your ordinances, those by which an individual, if he obeys them, will live. They boldly turned from you; they rebelled and did not obey.</VERS>\n\t\t\t<VERS vnumber=\"30\"> You prolonged your kindness with them for many years, and you solemnly admonished them by your Spirit through your prophets. Still they paid no attention, so you delivered them into the hands of the neighboring peoples.</VERS>\n\t\t\t<VERS vnumber=\"31\"> However, due to your abundant mercy you did not do away with them altogether; you did not abandon them. For you are a merciful and compassionate God.</VERS>\n\t\t\t<VERS vnumber=\"32\"> \"So now, our God, the great, powerful, and awesome God, who keeps covenant fidelity, do not regard as inconsequential all the hardship that has befallen us, our kings, our leaders, our priests, our prophets, our ancestors, and all your people, from the days of the kings of Assyria until this very day!</VERS>\n\t\t\t<VERS vnumber=\"33\"> You are righteous with regard to all that has happened to us, for you have acted faithfully. It is we who have been in the wrong! </VERS>\n\t\t\t<VERS vnumber=\"34\"> Our kings, our leaders, our priests, and our ancestors have not kept your law. They have not paid attention to your commandments or your testimonies by which you have solemnly admonished them.</VERS>\n\t\t\t<VERS vnumber=\"35\"> Even when they were in their kingdom and benefiting from your incredible goodness that you had lavished on them in the spacious and fertile land you had set before them, they did not serve you, nor did they turn from their evil practices.</VERS>\n\t\t\t<VERS vnumber=\"36\"> \"So today we are slaves! In the very land you gave to our ancestors to eat its fruit and to enjoy its good things, we are slaves!</VERS>\n\t\t\t<VERS vnumber=\"37\"> Its abundant produce goes to the kings you have placed over us due to our sins. They rule over our bodies and our livestock as they see fit, and we are in great distress!</VERS>\n\t\t\t<VERS vnumber=\"38\">  \"Because of all of this we are entering into a binding covenant in written form; our leaders, our Levites, and our priests have affixed their names on the sealed document.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"10\">\n\t\t\t<VERS vnumber=\"1\"> On the sealed documents were the following names: Nehemiah the governor, son of Hacaliah, along with Zedekiah,</VERS>\n\t\t\t<VERS vnumber=\"2\"> Seraiah, Azariah, Jeremiah,</VERS>\n\t\t\t<VERS vnumber=\"3\"> Pashhur, Amariah, Malkijah,</VERS>\n\t\t\t<VERS vnumber=\"4\"> Hattush, Shebaniah, Malluch,</VERS>\n\t\t\t<VERS vnumber=\"5\"> Harim, Meremoth, Obadiah,</VERS>\n\t\t\t<VERS vnumber=\"6\"> Daniel, Ginnethon, Baruch,</VERS>\n\t\t\t<VERS vnumber=\"7\"> Meshullam, Abijah, Mijamin,</VERS>\n\t\t\t<VERS vnumber=\"8\"> Maaziah, Bilgai, and Shemaiah. These were the priests.</VERS>\n\t\t\t<VERS vnumber=\"9\"> The Levites were as follows: Jeshua son of Azaniah, Binnui of the sons of Henadad, Kadmiel.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Their colleagues were as follows: Shebaniah, Hodiah, Kelita, Pelaiah, Hanan,</VERS>\n\t\t\t<VERS vnumber=\"11\"> Mica, Rehob, Hashabiah,</VERS>\n\t\t\t<VERS vnumber=\"12\"> Zaccur, Sherebiah, Shebaniah,</VERS>\n\t\t\t<VERS vnumber=\"13\"> Hodiah, Bani, and Beninu.</VERS>\n\t\t\t<VERS vnumber=\"14\"> The leaders of the people were as follows: Parosh, Pahath-Moab, Elam, Zattu, Bani,</VERS>\n\t\t\t<VERS vnumber=\"15\"> Bunni, Azgad, Bebai,</VERS>\n\t\t\t<VERS vnumber=\"16\"> Adonijah, Bigvai, Adin,</VERS>\n\t\t\t<VERS vnumber=\"17\"> Ater, Hezekiah, Azzur,</VERS>\n\t\t\t<VERS vnumber=\"18\"> Hodiah, Hashum, Bezai,</VERS>\n\t\t\t<VERS vnumber=\"19\"> Hariph, Anathoth, Nebai,</VERS>\n\t\t\t<VERS vnumber=\"20\"> Magpiash, Meshullam, Hezir,</VERS>\n\t\t\t<VERS vnumber=\"21\"> Meshezabel, Zadok, Jaddua,</VERS>\n\t\t\t<VERS vnumber=\"22\"> Pelatiah, Hanan, Anaiah,</VERS>\n\t\t\t<VERS vnumber=\"23\"> Hoshea, Hananiah, Hasshub,</VERS>\n\t\t\t<VERS vnumber=\"24\"> Hallohesh, Pilha, Shobek,</VERS>\n\t\t\t<VERS vnumber=\"25\"> Rehum, Hashabnah, Maaseiah,</VERS>\n\t\t\t<VERS vnumber=\"26\"> Ahiah, Hanan, Anan,</VERS>\n\t\t\t<VERS vnumber=\"27\"> Malluch, Harim, and Baanah.</VERS>\n\t\t\t<VERS vnumber=\"28\"> \"Now the rest of the people, the priests, the Levites, the gatekeepers, the singers, the temple attendants, and all those who have separated themselves from the neighboring peoples because of the law of God, along with their wives, their sons, and their daughters, all of whom are able to understand,</VERS>\n\t\t\t<VERS vnumber=\"29\"> hereby participate with their colleagues the town leaders and enter into a curse and an oath to adhere to the law of God which was given through Moses the servant of God, and to obey carefully all the commandments of the LORD our Lord, along with his ordinances and his statutes.</VERS>\n\t\t\t<VERS vnumber=\"30\"> \"We will not give our daughters in marriage to the neighboring peoples, and we will not take their daughters in marriage for our sons.</VERS>\n\t\t\t<VERS vnumber=\"31\"> We will not buy on the Sabbath or on a holy day from the neighboring peoples who bring their wares and all kinds of grain to sell on the Sabbath day. We will let the fields lie fallow every seventh year, and we will cancel every loan.</VERS>\n\t\t\t<VERS vnumber=\"32\"> We accept responsibility for fulfilling the commands to give one third of a shekel each year for the work of the temple of our God, </VERS>\n\t\t\t<VERS vnumber=\"33\"> for the loaves of presentation and for the regular grain offerings and regular burnt offerings, for the Sabbaths, for the new moons, for the appointed meetings, for the holy offerings, for the sin offerings to make atonement for Israel, and for all the work of the temple of our God.</VERS>\n\t\t\t<VERS vnumber=\"34\"> \"We, the priests, the Levites, and the people, have cast lots concerning the wood offerings, to bring them to the temple of our God according to our families at the designated times year by year to burn on the altar of the LORD our God, as is written in the law.</VERS>\n\t\t\t<VERS vnumber=\"35\"> We also accept responsibility for bringing the first fruits of our land and the first fruits of every fruit tree year by year to the temple of the LORD. </VERS>\n\t\t\t<VERS vnumber=\"36\"> We also accept responsibility, as is written in the law, for bringing the firstborn of our sons and our cattle and the firstborn of our herds and of our flocks to the temple of our God, to the priests who are ministering in the temple of our God.</VERS>\n\t\t\t<VERS vnumber=\"37\"> We will also bring the first of our coarse meal, of our contributions, of the fruit of every tree, of new wine, and of olive oil to the priests at the storerooms of the temple of our God, along with a tenth of the produce of our land to the Levites, for the Levites are the ones who collect the tithes in all the cities where we work.</VERS>\n\t\t\t<VERS vnumber=\"38\"> A priest of Aaron's line will be with the Levites when the Levites collect the tithes, and the Levites will bring up a tenth of the tithes to the temple of our God, to the storerooms of the treasury. </VERS>\n\t\t\t<VERS vnumber=\"39\"> The Israelites and the Levites will bring the contribution of the grain, the new wine, and the olive oil to the storerooms where the utensils of the sanctuary are kept, and where the priests who minister stay, along with the gatekeepers and the singers. We will not neglect the temple of our God.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"11\">\n\t\t\t<VERS vnumber=\"1\"> So the leaders of the people settled in Jerusalem, while the rest of the people cast lots to bring one out of every ten to settle in Jerusalem, the holy city, while the other nine remained in other cities. </VERS>\n\t\t\t<VERS vnumber=\"2\"> The people gave their blessing on all the men who volunteered to settle in Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"3\"> These are the provincial leaders who settled in Jerusalem. (While other Israelites, the priests, the Levites, the temple attendants, and the sons of the servants of Solomon settled in the cities of Judah, each on his own property in their cities, </VERS>\n\t\t\t<VERS vnumber=\"4\"> some of the descendants of Judah and some of the descendants of Benjamin settled in Jerusalem.) Of the descendants of Judah: Athaiah son of Uzziah, the son of Zechariah, the son of Amariah, the son of Shephatiah, the son of Mahalalel, from the descendants of Perez;</VERS>\n\t\t\t<VERS vnumber=\"5\"> and Maaseiah son of Baruch, the son of Col-Hozeh, the son of Hazaiah, the son of Adaiah, the son of Joiarib, the son of Zechariah, from the descendants of Shelah.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The sum total of the descendants of Perez who were settling in Jerusalem was 468 exceptional men.</VERS>\n\t\t\t<VERS vnumber=\"7\"> These are the descendants of Benjamin: Sallu 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 Jeshaiah,</VERS>\n\t\t\t<VERS vnumber=\"8\"> and his followers, Gabbai and Sallai, 928 in all.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Joel son of Zicri was the officer in charge of them, and Judah son of Hassenuah was second-in-command over the city.</VERS>\n\t\t\t<VERS vnumber=\"10\"> From the priests: Jedaiah son of Joiarib, Jakin,</VERS>\n\t\t\t<VERS vnumber=\"11\"> Seraiah son of Hilkiah, the son of Meshullam, the son of Zadok, the son of Meraioth, the son of Ahitub, supervisor in the temple of God,</VERS>\n\t\t\t<VERS vnumber=\"12\"> and their colleagues who were carrying out work for the temple, 822; and Adaiah son of Jeroham, the son of Pelaliah, the son of Amzi, the son of Zechariah, the son of Pashhur, the son of Malkijah,</VERS>\n\t\t\t<VERS vnumber=\"13\"> and his colleagues who were heads of families, 242; and Amashsai son of Azarel, the son of Ahzai, the son of Meshillemoth, the son of Immer,</VERS>\n\t\t\t<VERS vnumber=\"14\"> and his colleagues who were exceptional men, 128. The officer over them was Zabdiel the son of Haggedolim.</VERS>\n\t\t\t<VERS vnumber=\"15\"> From the Levites: Shemaiah son of Hasshub, the son of Azrikam, the son of Hashabiah, the son of Bunni;</VERS>\n\t\t\t<VERS vnumber=\"16\"> Shabbethai and Jozabad, leaders of the Levites, were in charge of the external work for the temple of God;</VERS>\n\t\t\t<VERS vnumber=\"17\"> Mattaniah son of Mica, the son of Zabdi, the son of Asaph, the praise leader who led in thanksgiving and prayer; Bakbukiah, second among his colleagues; and Abda son of Shammua, the son of Galal, the son of Jeduthun. </VERS>\n\t\t\t<VERS vnumber=\"18\"> The sum total of the Levites in the holy city was 284.</VERS>\n\t\t\t<VERS vnumber=\"19\"> And the gatekeepers: Akkub, Talmon and their colleagues who were guarding the gates, 172.</VERS>\n\t\t\t<VERS vnumber=\"20\"> And the rest of the Israelites, with the priests and the Levites, were in all the cities of Judah, each on his own property.</VERS>\n\t\t\t<VERS vnumber=\"21\"> The temple attendants were living on Ophel, and Ziha and Gishpa were over them.</VERS>\n\t\t\t<VERS vnumber=\"22\"> The overseer of the Levites in Jerusalem was Uzzi son of Bani, the son of Hashabiah, the son of Mattaniah, the son of Mica. He was one of Asaph's descendants who were the singers responsible for the service of the temple of God.</VERS>\n\t\t\t<VERS vnumber=\"23\"> For they were under royal orders which determined their activity day by day.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Pethahiah son of Meshezabel, one of the descendants of Zerah son of Judah, was an adviser to the king in every matter pertaining to the people.</VERS>\n\t\t\t<VERS vnumber=\"25\"> As for the settlements with their fields, some of the people of Judah settled in Kiriath Arba and its neighboring villages, in Dibon and its villages, in Jekabzeel and its settlements, </VERS>\n\t\t\t<VERS vnumber=\"26\"> in Jeshua, in Moladah, in Beth Pelet,</VERS>\n\t\t\t<VERS vnumber=\"27\"> in Hazar Shual, in Beer Sheba and its villages,</VERS>\n\t\t\t<VERS vnumber=\"28\"> in Ziklag, in Meconah and its villages,</VERS>\n\t\t\t<VERS vnumber=\"29\"> in En Rimmon, in Zorah, in Jarmuth,</VERS>\n\t\t\t<VERS vnumber=\"30\"> Zanoah, Adullam and their settlements, in Lachish and its fields, and in Azekah and its villages. So they were encamped from Beer Sheba to the Valley of Hinnom.</VERS>\n\t\t\t<VERS vnumber=\"31\"> Some of the descendants of Benjamin settled in Geba, Micmash, Aija, Bethel and its villages, </VERS>\n\t\t\t<VERS vnumber=\"32\"> in Anathoth, Nob, and Ananiah,</VERS>\n\t\t\t<VERS vnumber=\"33\"> in Hazor, Ramah, and Gittaim, </VERS>\n\t\t\t<VERS vnumber=\"34\"> in Hadid, Zeboim, and Neballat,</VERS>\n\t\t\t<VERS vnumber=\"35\"> in Lod, Ono, and the Valley of the Craftsmen.</VERS>\n\t\t\t<VERS vnumber=\"36\"> Some of the Judean divisions of the Levites settled in Benjamin.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"12\">\n\t\t\t<VERS vnumber=\"1\"> These are the priests and Levites who returned with Zerubbabel son of Shealtiel and Jeshua: Seraiah, Jeremiah, Ezra, </VERS>\n\t\t\t<VERS vnumber=\"2\"> Amariah, Malluch, Hattush,</VERS>\n\t\t\t<VERS vnumber=\"3\"> Shecaniah, Rehum, Meremoth,</VERS>\n\t\t\t<VERS vnumber=\"4\"> Iddo, Ginnethon, Abijah,</VERS>\n\t\t\t<VERS vnumber=\"5\"> Mijamin, Moadiah, Bilgah,</VERS>\n\t\t\t<VERS vnumber=\"6\"> Shemaiah, Joiarib, Jedaiah,</VERS>\n\t\t\t<VERS vnumber=\"7\"> Sallu, Amok, Hilkiah, and Jedaiah. These were the leaders of the priests and their colleagues in the days of Jeshua.</VERS>\n\t\t\t<VERS vnumber=\"8\"> And the Levites: Jeshua, Binnui, Kadmiel, Sherebiah, Judah, and Mattaniah, who together with his colleagues was in charge of the songs of thanksgiving. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Bakbukiah and Unni, their colleagues, stood opposite them in the services.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Jeshua was the father of Joiakim, Joiakim was the father of Eliashib, Eliashib was the father of Joiada, </VERS>\n\t\t\t<VERS vnumber=\"11\"> Joiada was the father of Jonathan, and Jonathan was the father of Jaddua.</VERS>\n\t\t\t<VERS vnumber=\"12\"> In the days of Joiakim, these were the priests who were leaders of the families: of Seraiah, Meraiah; of Jeremiah, Hananiah;</VERS>\n\t\t\t<VERS vnumber=\"13\"> of Ezra, Meshullam; of Amariah, Jehohanan;</VERS>\n\t\t\t<VERS vnumber=\"14\"> of Malluch, Jonathan; of Shecaniah, Joseph; </VERS>\n\t\t\t<VERS vnumber=\"15\"> of Harim, Adna; of Meremoth, Helkai; </VERS>\n\t\t\t<VERS vnumber=\"16\"> of Iddo, Zechariah; of Ginnethon, Meshullam; </VERS>\n\t\t\t<VERS vnumber=\"17\"> of Abijah, Zicri; of Miniamin and of Moadiah, Piltai; </VERS>\n\t\t\t<VERS vnumber=\"18\"> of Bilgah, Shammua; of Shemaiah, Jehonathan;</VERS>\n\t\t\t<VERS vnumber=\"19\"> of Joiarib, Mattenai; of Jedaiah, Uzzi;</VERS>\n\t\t\t<VERS vnumber=\"20\"> of Sallu, Kallai; of Amok, Eber; </VERS>\n\t\t\t<VERS vnumber=\"21\"> of Hilkiah, Hashabiah; of Jedaiah, Nethanel.</VERS>\n\t\t\t<VERS vnumber=\"22\"> As for the Levites, in the days of Eliashib, Joiada, Johanan and Jaddua the heads of families were recorded, as were the priests during the reign of Darius the Persian. </VERS>\n\t\t\t<VERS vnumber=\"23\"> The descendants of Levi were recorded in the Book of the Chronicles as heads of families up to the days of Johanan son of Eliashib. </VERS>\n\t\t\t<VERS vnumber=\"24\"> And the leaders of the Levites were Hashabiah, Sherebiah, Jeshua son of Kadmiel, and their colleagues, who stood opposite them to offer praise and thanks, one contingent corresponding to the other, as specified by David the man of God.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Mattaniah, Bakbukiah, Obadiah, Meshullam, Talmon, and Akkub were gatekeepers who were guarding the storerooms at the gates.</VERS>\n\t\t\t<VERS vnumber=\"26\"> These all served in the days of Joiakim son of Jeshua, the son of Jozadak, and in the days of Nehemiah the governor and of Ezra the priestly scribe.</VERS>\n\t\t\t<VERS vnumber=\"27\"> At the dedication of the wall of Jerusalem, they sought out the Levites from all the places they lived to bring them to Jerusalem to celebrate the dedication joyfully with songs of thanksgiving and songs accompanied by cymbals, harps, and lyres. </VERS>\n\t\t\t<VERS vnumber=\"28\"> The singers were also assembled from the district around Jerusalem and from the settlements of the Netophathites </VERS>\n\t\t\t<VERS vnumber=\"29\"> and from Beth Gilgal and from the fields of Geba and Azmaveth, for the singers had built settlements for themselves around Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"30\"> When the priests and Levites had purified themselves, they purified the people, the gates, and the wall.</VERS>\n\t\t\t<VERS vnumber=\"31\"> I brought the leaders of Judah up on top of the wall, and I appointed two large choirs to give thanks. One was to proceed on the top of the wall southward toward the Dung Gate. </VERS>\n\t\t\t<VERS vnumber=\"32\"> Going after them were Hoshaiah, half the leaders of Judah,</VERS>\n\t\t\t<VERS vnumber=\"33\"> Azariah, Ezra, Meshullam,</VERS>\n\t\t\t<VERS vnumber=\"34\"> Judah, Benjamin, Shemaiah, Jeremiah,</VERS>\n\t\t\t<VERS vnumber=\"35\"> some of the priests with trumpets, Zechariah son of Jonathan, the son of Shemaiah, the son of Mattaniah, the son of Micaiah, the son of Zaccur, the son of Asaph, </VERS>\n\t\t\t<VERS vnumber=\"36\"> and his colleagues, Shemaiah, Azarel, Milalai, Gilalai, Maai, Nethanel, Judah, and Hanani, with musical instruments of David the man of God. (Ezra the scribe led them.)</VERS>\n\t\t\t<VERS vnumber=\"37\"> They went over the Fountain Gate and continued directly up the steps of the City of David on the ascent to the wall. They passed the house of David and continued on to the Water Gate toward the east.</VERS>\n\t\t\t<VERS vnumber=\"38\"> The second choir was proceeding in the opposite direction. I followed them, along with half the people, on top of the wall, past the Tower of the Ovens to the Broad Wall, </VERS>\n\t\t\t<VERS vnumber=\"39\"> over the Ephraim Gate, the Jeshanah Gate, the Fish Gate, the Tower of Hananel, and the Tower of the Hundred, to the Sheep Gate. They stopped at the Gate of the Guard.</VERS>\n\t\t\t<VERS vnumber=\"40\"> Then the two choirs that gave thanks took their stations in the temple of God. I did also, along with half the officials with me, </VERS>\n\t\t\t<VERS vnumber=\"41\"> and the priests, Eliakim, Maaseiah, Miniamin, Micaiah, Elioenai, Zechariah, and Hananiah, with their trumpets,</VERS>\n\t\t\t<VERS vnumber=\"42\"> and also Maaseiah, Shemaiah, Eleazar, Uzzi, Jehohanan, Malkijah, Elam, and Ezer. The choirs sang loudly under the direction of Jezrahiah. </VERS>\n\t\t\t<VERS vnumber=\"43\"> And on that day they offered great sacrifices and rejoiced, for God had given them great joy. The women and children also rejoiced. The rejoicing in Jerusalem could be heard from far away.</VERS>\n\t\t\t<VERS vnumber=\"44\"> On that day men were appointed over the storerooms for the contributions, first fruits, and tithes, to gather into them from the fields of the cities the portions prescribed by the law for the priests and the Levites, for the people of Judah took delight in the priests and Levites who were ministering.</VERS>\n\t\t\t<VERS vnumber=\"45\"> They performed the service of their God and the service of purification, along with the singers and gatekeepers, according to the commandment of David and his son Solomon. </VERS>\n\t\t\t<VERS vnumber=\"46\"> For long ago, in the days of David and Asaph, there had been directors for the singers and for the songs of praise and thanks to God. </VERS>\n\t\t\t<VERS vnumber=\"47\"> So in the days of Zerubbabel and in the days of Nehemiah, all Israel was contributing the portions for the singers and gatekeepers, according to the daily need. They also set aside the portion for the Levites, and the Levites set aside the portion for the descendants of Aaron.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"13\">\n\t\t\t<VERS vnumber=\"1\"> On that day the book of Moses was read aloud in the hearing of the people. They found written in it that no Ammonite or Moabite may ever enter the assembly of God, </VERS>\n\t\t\t<VERS vnumber=\"2\"> for they had not met the Israelites with food and water, but instead had hired Balaam to curse them. (Our God, however, turned the curse into blessing.) </VERS>\n\t\t\t<VERS vnumber=\"3\"> When they heard the law, they removed from Israel all who were of mixed ancestry.</VERS>\n\t\t\t<VERS vnumber=\"4\"> But prior to this time, Eliashib the priest, a relative of Tobiah, had been appointed over the storerooms of the temple of our God. </VERS>\n\t\t\t<VERS vnumber=\"5\"> He made for himself a large storeroom where previously they had been keeping the grain offering, the incense, and the vessels, along with the tithes of the grain, the new wine, and the olive oil as commanded for the Levites, the singers, the gate keepers, and the offering for the priests.</VERS>\n\t\t\t<VERS vnumber=\"6\"> During all this time I was not in Jerusalem, for in the thirty-second year of King Artaxerxes of Babylon, I had gone back to the king. After some time I had requested leave of the king, </VERS>\n\t\t\t<VERS vnumber=\"7\"> and I returned to Jerusalem. Then I discovered the evil that Eliashib had done for Tobiah by supplying him with a storeroom in the courts of the temple of God.</VERS>\n\t\t\t<VERS vnumber=\"8\"> I was very upset, and I threw all of Tobiah's household possessions out of the storeroom.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Then I gave instructions that the storerooms should be purified, and I brought back the equipment of the temple of God, along with the grain offering and the incense.</VERS>\n\t\t\t<VERS vnumber=\"10\"> I also discovered that the grain offerings for the Levites had not been provided, and that as a result the Levites and the singers who performed this work had all gone off to their fields.</VERS>\n\t\t\t<VERS vnumber=\"11\"> So I registered a complaint with the leaders, asking \"Why is the temple of God neglected?\" Then I gathered them and reassigned them to their positions.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Then all of Judah brought the tithe of the grain, the new wine, and the olive oil to the storerooms.</VERS>\n\t\t\t<VERS vnumber=\"13\"> I gave instructions that Shelemiah the priest, Zadok the scribe, and a certain Levite named Pedaiah be put in charge of the storerooms, and that Hanan son of Zaccur, the son of Mattaniah, be their assistant, for they were regarded as trustworthy. It was then their responsibility to oversee the distribution to their colleagues.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Please remember me for this, O my God, and do not wipe out the kindness that I have done for the temple of my God and for its services!</VERS>\n\t\t\t<VERS vnumber=\"15\"> In those days I saw people in Judah treading winepresses on the Sabbath, bringing in heaps of grain and loading them onto donkeys, along with wine, grapes, figs, and all kinds of loads, and bringing them to Jerusalem on the Sabbath day. So I warned them on the day that they sold these provisions.</VERS>\n\t\t\t<VERS vnumber=\"16\"> The people from Tyre who lived there were bringing fish and all kinds of merchandise and were selling it on the Sabbath to the people of Judah, and in Jerusalem, of all places!</VERS>\n\t\t\t<VERS vnumber=\"17\"> So I registered a complaint with the nobles of Judah, saying to them, \"What is this evil thing that you are doing, profaning the Sabbath day?</VERS>\n\t\t\t<VERS vnumber=\"18\"> Isn't this the way your ancestors acted, causing our God to bring on them and on this city all this misfortune? And now you are causing even more wrath on Israel, profaning the Sabbath like this!\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> When the evening shadows began to fall on the gates of Jerusalem before the Sabbath, I ordered the doors to be closed. I further directed that they were not to be opened until after the Sabbath. I positioned some of my young men at the gates so that no load could enter on the Sabbath day. </VERS>\n\t\t\t<VERS vnumber=\"20\"> The traders and sellers of all kinds of merchandise spent the night outside Jerusalem once or twice.</VERS>\n\t\t\t<VERS vnumber=\"21\"> But I warned them and said, \"Why do you spend the night by the wall? If you repeat this, I will forcibly remove you!\" From that time on they did not show up on the Sabbath.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Then I directed the Levites to purify themselves and come and guard the gates in order to keep the Sabbath day holy. For this please remember me, O my God, and have pity on me in keeping with your great love.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Also in those days I saw the men of Judah who had married women from Ashdod, Ammon, and Moab.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Half of their children spoke the language of Ashdod (or the language of one of the other peoples mentioned) and were unable to speak the language of Judah.</VERS>\n\t\t\t<VERS vnumber=\"25\"> So I entered a complaint with them. I called down a curse on them, and I struck some of the men and pulled out their hair. I had them swear by God saying, \"You will not marry off your daughters to their sons, and you will not take any of their daughters as wives for your sons or for yourselves!</VERS>\n\t\t\t<VERS vnumber=\"26\"> Was it not because of things like these that King Solomon of Israel sinned? Among the many nations there was no king like him. He was loved by his God, and God made him king over all Israel. But the foreign wives made even him sin! </VERS>\n\t\t\t<VERS vnumber=\"27\"> Should we then in your case hear that you do all this great evil, thereby being unfaithful to our God by marrying foreign wives?\"</VERS>\n\t\t\t<VERS vnumber=\"28\"> Now one of the sons of Joiada son of Eliashib the high priest was a son-in-law of Sanballat the Horonite. So I banished him from my sight.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Please remember them, O my God, because they have defiled the priesthood, the covenant of the priesthood, and the Levites.</VERS>\n\t\t\t<VERS vnumber=\"30\"> So I purified them of everything foreign, and I assigned specific duties to the priests and the Levites. </VERS>\n\t\t\t<VERS vnumber=\"31\"> I also provided for the wood offering at the appointed times and also for the first fruits. Please remember me for good, O my God.</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"17\" bname=\"Esther\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\">  The following events happened in the days of Ahasuerus. (I am referring to that Ahasuerus who used to rule over a hundred and twenty-seven provinces extending all the way from India to Ethiopia.)</VERS>\n\t\t\t<VERS vnumber=\"2\"> In those days, as King Ahasuerus sat on his royal throne in Susa the citadel,</VERS>\n\t\t\t<VERS vnumber=\"3\"> in the third year of his reign he provided a banquet for all his officials and his servants. The army of Persia and Media was present, as well as the nobles and the officials of the provinces.</VERS>\n\t\t\t<VERS vnumber=\"4\"> He displayed the riches of his royal glory and the splendor of his majestic greatness for a lengthy period of time, a hundred and eighty days, to be exact!</VERS>\n\t\t\t<VERS vnumber=\"5\"> When those days were completed, the king then provided a seven-day banquet for all the people who were present in Susa the citadel, for those of highest standing to the most lowly. It was held in the court located in the garden of the royal palace. </VERS>\n\t\t\t<VERS vnumber=\"6\"> The furnishings included linen and purple curtains hung by cords of the finest linen and purple wool on silver rings, alabaster columns, gold and silver couches displayed on a floor made of valuable stones of alabaster, mother-of-pearl, and mineral stone. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Drinks were served in golden containers, all of which differed from one another. Royal wine was available in abundance at the king's expense. </VERS>\n\t\t\t<VERS vnumber=\"8\"> There were no restrictions on the drinking, for the king had instructed all of his supervisors that they should do as everyone so desired.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Queen Vashti also gave a banquet for the women in King Ahasuerus' royal palace.</VERS>\n\t\t\t<VERS vnumber=\"10\"> On the seventh day, as King Ahasuerus was feeling the effects of the wine, he ordered Mehuman, Biztha, Harbona, Bigtha, Abagtha, Zethar, and Carcas, the seven eunuchs who attended him,</VERS>\n\t\t\t<VERS vnumber=\"11\"> to bring Queen Vashti into the king's presence wearing her royal high turban. He wanted to show the people and the officials her beauty, for she was very attractive.</VERS>\n\t\t\t<VERS vnumber=\"12\"> But Queen Vashti refused to come at the king's bidding conveyed through the eunuchs. Then the king became extremely angry, and his rage consumed him.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The king then inquired of the wise men who were discerners of the times, for it was the royal custom to confer with all those who were proficient in laws and legalities.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Those who were closest to him were Carshena, Shethar, Admatha, Tarshish, Meres, Marsena, and Memucan. These men were the seven officials of Persia and Media who saw the king on a regular basis and had the most prominent offices in the kingdom. </VERS>\n\t\t\t<VERS vnumber=\"15\"> The king asked, \"By law, what should be done to Queen Vashti in light of the fact that she has not obeyed the instructions of King Ahasuerus conveyed through the eunuchs?\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> Memucan then replied to the king and the officials, \"The wrong of Queen Vashti is not against the king alone, but against all the officials and all the people who are throughout all the provinces of King Ahasuerus.</VERS>\n\t\t\t<VERS vnumber=\"17\"> For the matter concerning the queen will spread to all the women, leading them to treat their husbands with contempt, saying, 'When King Ahasuerus gave orders to bring Queen Vashti into his presence, she would not come.'</VERS>\n\t\t\t<VERS vnumber=\"18\"> And this very day the noble ladies of Persia and Media who have heard the matter concerning the queen will respond in the same way to all the royal officials, and there will be more than enough contempt and anger!</VERS>\n\t\t\t<VERS vnumber=\"19\"> If the king is so inclined, let a royal edict go forth from him, and let it be written in the laws of Persia and Media that cannot be repealed, that Vashti may not come into the presence of King Ahasuerus, and let the king convey her royalty to another who is more deserving than she.</VERS>\n\t\t\t<VERS vnumber=\"20\"> And let the king's decision which he will enact be disseminated throughout all his kingdom, vast though it is. Then all the women will give honor to their husbands, from the most prominent to the lowly.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> The matter seemed appropriate to the king and the officials. So the king acted on the advice of Memucan.</VERS>\n\t\t\t<VERS vnumber=\"22\"> He sent letters throughout all the royal provinces, to each province according to its own script and to each people according to its own language, that every man should be ruling his family and should be speaking the language of his own people.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> When these things had been accomplished and the rage of King Ahasuerus had diminished, he remembered Vashti and what she had done and what had been decided against her. </VERS>\n\t\t\t<VERS vnumber=\"2\"> The king's servants who attended him said, \"Let a search be conducted in the king's behalf for attractive young women.</VERS>\n\t\t\t<VERS vnumber=\"3\"> And let the king appoint officers throughout all the provinces of his kingdom to gather all the attractive young women to Susa the citadel, to the harem under the authority of Hegai, the king's eunuch who oversees the women, and let him provide whatever cosmetics they desire.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Let the young woman whom the king finds most attractive become queen in place of Vashti.\" This seemed like a good idea to the king, so he acted accordingly.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Now there happened to be a Jewish man in Susa the citadel whose name was Mordecai. He was the son of Jair, the son of Shimei, the son of Kish, a Benjaminite, </VERS>\n\t\t\t<VERS vnumber=\"6\"> who had been taken into exile from Jerusalem with the captives who had been carried into exile with Jeconiah king of Judah, whom Nebuchadnezzar king of Babylon had taken into exile. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Now he was acting as the guardian of Hadassah (that is, Esther), the daughter of his uncle, for neither her father nor her mother was alive. This young woman was very attractive and had a beautiful figure. When her father and mother died, Mordecai had raised her as if she were his own daughter.</VERS>\n\t\t\t<VERS vnumber=\"8\"> It so happened that when the king's edict and his law became known many young women were taken to Susa the citadel to be placed under the authority of Hegai. Esther also was taken to the royal palace to be under the authority of Hegai, who was overseeing the women. </VERS>\n\t\t\t<VERS vnumber=\"9\"> This young woman pleased him, and she found favor with him. He quickly provided her with her cosmetics and her rations; he also provided her with the seven specially chosen young women who were from the palace. He then transferred her and her young women to the best quarters in the harem.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Now Esther had not disclosed her people or her lineage, for Mordecai had instructed her not to do so.</VERS>\n\t\t\t<VERS vnumber=\"11\"> And day after day Mordecai used to walk back and forth in front of the court of the harem in order to learn how Esther was doing and what might happen to her.</VERS>\n\t\t\t<VERS vnumber=\"12\"> At the end of the twelve months that were required for the women, when the turn of each young woman arrived to go to King Ahasuerus, for in this way they had to fulfill their time of cosmetic treatment: six months with oil of myrrh, and six months with perfume and various ointments used by women,</VERS>\n\t\t\t<VERS vnumber=\"13\"> the woman would go to the king in the following way: Whatever she asked for would be provided for her to take with her from the harem to the royal palace.</VERS>\n\t\t\t<VERS vnumber=\"14\"> In the evening she went, and in the morning she returned to a separate part of the harem, to the authority of Shaashgaz the king's eunuch who was overseeing the concubines. She would not go back to the king unless the king was pleased with her and she was requested by name.</VERS>\n\t\t\t<VERS vnumber=\"15\"> When it became the turn of Esther daughter of Abihail the uncle of Mordecai (who had raised her as if she were his own daughter) to go to the king, she did not request anything except what Hegai the king's eunuch, who was overseer of the women, had recommended. Yet Esther met with the approval of all who saw her.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Then Esther was taken to King Ahasuerus at his royal residence in the tenth month (that is, the month of Tebeth) in the seventh year of his reign. </VERS>\n\t\t\t<VERS vnumber=\"17\"> And the king loved Esther more than all the other women, and she met with his loving approval more than all the other young women. So he placed the royal high turban on her head and appointed her queen in place of Vashti. </VERS>\n\t\t\t<VERS vnumber=\"18\"> Then the king prepared a large banquet for all his officials and his servants, it was actually Esther's banquet. He also set aside a holiday for the provinces, and he provided for offerings at the king's expense.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Now when the young women were being gathered again, Mordecai was sitting at the king's gate.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Esther was still not divulging her lineage or her people, just as Mordecai had instructed her. Esther continued to do whatever Mordecai said, just as she had done when he was raising her.</VERS>\n\t\t\t<VERS vnumber=\"21\"> In those days while Mordecai was sitting at the king's gate, Bigthan and Teresh, two of the king's eunuchs who protected the entrance, became angry and plotted to assassinate King Ahasuerus. </VERS>\n\t\t\t<VERS vnumber=\"22\"> When Mordecai learned of the conspiracy, he informed Queen Esther, and Esther told the king in Mordecai's behalf.</VERS>\n\t\t\t<VERS vnumber=\"23\"> The king then had the matter investigated and, finding it to be so, had the two conspirators hanged on a gallows. It was then recorded in the daily chronicles in the king's presence.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> Some time later King Ahasuerus promoted Haman the son of Hammedatha, the Agagite, exalting him and setting his position above that of all the officials who were with him. </VERS>\n\t\t\t<VERS vnumber=\"2\"> As a result, all the king's servants who were at the king's gate were bowing and paying homage to Haman, for the king had so commanded. However, Mordecai did not bow, nor did he pay him homage.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Then the servants of the king who were at the king's gate asked Mordecai, \"Why are you violating the king's commandment?\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> And after they had spoken to him day after day without his paying any attention to them, they informed Haman to see whether this attitude on Mordecai's part would be permitted. Furthermore, he had disclosed to them that he was a Jew.</VERS>\n\t\t\t<VERS vnumber=\"5\"> When Haman saw that Mordecai was not bowing or paying homage to him, he was filled with rage. </VERS>\n\t\t\t<VERS vnumber=\"6\"> But the thought of striking out against Mordecai alone was repugnant to him, for he had been informed of the identity of Mordecai's people. So Haman sought to destroy all the Jews (that is, the people of Mordecai) who were in all the kingdom of Ahasuerus.</VERS>\n\t\t\t<VERS vnumber=\"7\"> In the first month (that is, the month of Nisan), in the twelfth year of King Ahasuerus' reign, pur (that is, the lot) was cast before Haman in order to determine a day and a month. It turned out to be the twelfth month (that is, the month of Adar).</VERS>\n\t\t\t<VERS vnumber=\"8\"> Then Haman said to King Ahasuerus, \"There is a particular people that is dispersed and spread among the inhabitants throughout all the provinces of your kingdom whose laws differ from those of all other peoples. Furthermore, they do not observe the king's laws. It is not appropriate for the king to provide a haven for them.</VERS>\n\t\t\t<VERS vnumber=\"9\"> If the king is so inclined, let an edict be issued to destroy them. I will pay ten thousand talents of silver to be conveyed to the king's treasuries for the officials who carry out this business.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> So the king removed his signet ring from his hand and gave it to Haman the son of Hammedatha, the Agagite, who was hostile toward the Jews. </VERS>\n\t\t\t<VERS vnumber=\"11\"> The king replied to Haman, \"Keep your money, and do with those people whatever you wish.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> So the royal scribes were summoned in the first month, on the thirteenth day of the month. Everything Haman commanded was written to the king's satraps and governors who were in every province and to the officials of every people, province by province according to its script and people by people according to its language. In the name of King Ahasuerus it was written and sealed with the king's signet ring. </VERS>\n\t\t\t<VERS vnumber=\"13\"> Letters were sent by the runners to all the king's provinces stating that they should destroy, kill, and annihilate all the Jews, from youth to elderly, both women and children, on a particular day, namely the thirteenth day of the twelfth month (that is, the month of Adar), and to loot and plunder their possessions. </VERS>\n\t\t\t<VERS vnumber=\"14\"> A copy of this edict was to be presented as law throughout every province; it was to be made known to all the inhabitants, so that they would be prepared for this day. </VERS>\n\t\t\t<VERS vnumber=\"15\"> The messengers scurried forth with the king's order. The edict was issued in Susa the citadel. While the king and Haman sat down to drink, the city of Susa was in an uproar!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\"> Now when Mordecai became aware of all that had been done, he tore his garments and put on sackcloth and ashes. He went out into the city, crying out in a loud and bitter voice. </VERS>\n\t\t\t<VERS vnumber=\"2\"> But he went no further than the king's gate, for no one was permitted to enter the king's gate clothed in sackcloth.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Throughout each and every province where the king's edict and law were announced there was considerable mourning among the Jews, along with fasting, weeping, and sorrow. Sackcloth and ashes were characteristic of many. </VERS>\n\t\t\t<VERS vnumber=\"4\"> When Esther's female attendants and her eunuchs came and informed her about Mordecai's behavior, the queen was overcome with anguish. Although she sent garments for Mordecai to put on so that he could remove his sackcloth, he would not accept them. </VERS>\n\t\t\t<VERS vnumber=\"5\"> So Esther called for Hathach, one of the king's eunuchs who had been placed at her service, and instructed him to find out the cause and reason for Mordecai's behavior.</VERS>\n\t\t\t<VERS vnumber=\"6\"> So Hathach went to Mordecai at the plaza of the city in front of the king's gate.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Then Mordecai related to him everything that had happened to him, even the specific amount of money that Haman had offered to pay to the king's treasuries for the Jews to be destroyed.</VERS>\n\t\t\t<VERS vnumber=\"8\"> He also gave him a written copy of the law that had been disseminated in Susa for their destruction so that he could show it to Esther and talk to her about it. He also gave instructions that she should go to the king to implore him and petition him on behalf of her people. </VERS>\n\t\t\t<VERS vnumber=\"9\"> So Hathach returned and related Mordecai's instructions to Esther.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Then Esther replied to Hathach with instructions for Mordecai:</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"All the servants of the king and the people of the king's provinces know that there is only one law applicable to any man or woman who comes uninvited to the king in the inner court, that person will be put to death, unless the king extends to him the gold scepter, permitting him to be spared. Now I have not been invited to come to the king for some thirty days!\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> When Esther's reply was conveyed to Mordecai, </VERS>\n\t\t\t<VERS vnumber=\"13\"> he said to take back this answer to Esther: </VERS>\n\t\t\t<VERS vnumber=\"14\"> \"Don't imagine that because you are part of the king's household you will be the one Jew who will escape. If you keep quiet at this time, liberation and protection for the Jews will appear from another source, while you and your father's household perish. It may very well be that you have achieved royal status for such a time as this!\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> Then Esther sent this reply to Mordecai:</VERS>\n\t\t\t<VERS vnumber=\"16\"> \"Go, assemble all the Jews who are found in Susa and fast in my behalf. Don't eat and don't drink for three days, night or day. My female attendants and I will also fast in the same way. Afterward I will go to the king, even though it violates the law. If I perish, I perish!\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> So Mordecai set out to do everything that Esther had instructed him.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"5\">\n\t\t\t<VERS vnumber=\"1\"> It so happened that on the third day Esther put on her royal attire and stood in the inner court of the palace, opposite the king's quarters. The king was sitting on his royal throne in the palace, opposite the entrance.</VERS>\n\t\t\t<VERS vnumber=\"2\"> When the king saw Queen Esther standing in the court, she met with his approval. The king extended to Esther the gold scepter that was in his hand, and Esther approached and touched the end of the scepter.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The king said to her, \"What is on your mind, Queen Esther? What is your request? Even as much as half the kingdom will be given to you!\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> Esther replied, \"If the king is so inclined, let the king and Haman come today to the banquet that I have prepared for him.\" </VERS>\n\t\t\t<VERS vnumber=\"5\"> The king replied, \"Find Haman quickly so that we can do as Esther requests.\" So the king and Haman went to the banquet that Esther had prepared.</VERS>\n\t\t\t<VERS vnumber=\"6\"> While at the banquet of wine, the king said to Esther, \"What is your request? It shall be given to you. What is your petition? Ask for as much as half the kingdom, and it shall be done!\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> Esther responded, \"My request and my petition is this: </VERS>\n\t\t\t<VERS vnumber=\"8\"> If I have found favor in the king's sight and if the king is inclined to grant my request and perform my petition, let the king and Haman come tomorrow to the banquet that I will prepare for them. At that time I will do as the king wishes.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Now Haman went forth that day pleased and very much encouraged. But when Haman saw Mordecai at the king's gate, and he did not rise nor tremble in his presence, Haman was filled with rage toward Mordecai. </VERS>\n\t\t\t<VERS vnumber=\"10\"> But Haman restrained himself and went on to his home. He then sent for his friends to join him, along with his wife Zeresh. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Haman then recounted to them his fabulous wealth, his many sons, and how the king had magnified him and exalted him over the king's other officials and servants. </VERS>\n\t\t\t<VERS vnumber=\"12\"> Haman said, \"Furthermore, Queen Esther invited only me to accompany the king to the banquet that she prepared! And also tomorrow I am invited along with the king. </VERS>\n\t\t\t<VERS vnumber=\"13\"> Yet all of this fails to satisfy me so long as I have to see Mordecai the Jew sitting at the king's gate.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> Haman's wife Zeresh and all his friends said to him, \"Have a gallows seventy-five feet high built, and in the morning tell the king that Mordecai should be hanged on it. Then go with the king to the banquet contented.\" It seemed like a good idea to Haman, so he had the gallows built.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"6\">\n\t\t\t<VERS vnumber=\"1\"> Throughout that night the king was unable to sleep, so he asked for the book containing the historical records to be brought. As the records were being read in the king's presence, </VERS>\n\t\t\t<VERS vnumber=\"2\"> it was found written that Mordecai had disclosed that Bigthana and Teresh, two of the king's eunuchs who guarded the entrance, had plotted to assassinate King Ahasuerus.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The king asked, \"What great honor was bestowed on Mordecai because of this?\" The king's attendants who served him responded, \"Not a thing was done for him.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> Then the king said, \"Who is that in the courtyard?\" Now Haman had come to the outer courtyard of the palace to suggest that the king hang Mordecai on the gallows that he had constructed for him.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The king's attendants said to him, \"It is Haman who is standing in the courtyard.\" The king said, \"Let him enter.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> So Haman came in, and the king said to him, \"What should be done for the man whom the king wishes to honor?\" Haman thought to himself, \"Who is it that the king would want to honor more than me?\" </VERS>\n\t\t\t<VERS vnumber=\"7\"> So Haman said to the king, \"For the man whom the king wishes to honor,</VERS>\n\t\t\t<VERS vnumber=\"8\"> let them bring royal attire which the king himself has worn and a horse on which the king himself has ridden, one bearing the royal insignia!</VERS>\n\t\t\t<VERS vnumber=\"9\"> Then let this clothing and this horse be given to one of the king's noble officials. Let him then clothe the man whom the king wishes to honor, and let him lead him about through the plaza of the city on the horse, calling before him, 'So shall it be done to the man whom the king wishes to honor!'\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> The king then said to Haman, \"Go quickly! Take the clothing and the horse, just as you have described, and do as you just indicated to Mordecai the Jew who sits at the king's gate. Don't neglect a single thing of all that you have said.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> So Haman took the clothing and the horse, and he clothed Mordecai. He led him about on the horse throughout the plaza of the city, calling before him, \"So shall it be done to the man whom the king wishes to honor!\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> Then Mordecai again sat at the king's gate, while Haman hurried away to his home, mournful and with a veil over his head.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Haman then related to his wife Zeresh and to all his friends everything that had happened to him. These wise men, along with his wife Zeresh, said to him, \"If indeed this Mordecai before whom you have begun to fall is Jewish, you will not prevail against him. No, you will surely fall before him!\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> While they were still speaking with him, the king's eunuchs arrived. They quickly brought Haman to the banquet that Esther had prepared.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"7\">\n\t\t\t<VERS vnumber=\"1\"> So the king and Haman came to dine with Queen Esther. </VERS>\n\t\t\t<VERS vnumber=\"2\"> On the second day of the banquet of wine the king asked Esther, \"What is your request, Queen Esther? It shall be granted to you. And what is your petition? Ask up to half the kingdom, and it shall be done!\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> Queen Esther replied, \"If I have met with your approval, O king, and if the king is so inclined, grant me my life as my request, and my people as my petition. </VERS>\n\t\t\t<VERS vnumber=\"4\"> For we have been sold, both I and my people, to destruction and to slaughter and to annihilation! If we had simply been sold as male and female slaves, I would have remained silent, for such distress would not have been sufficient for troubling the king.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> Then King Ahasuerus responded to Queen Esther, \"Who is this individual? Where is this person to be found who is presumptuous enough to act in this way?\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> Esther replied, \"The oppressor and enemy is this evil Haman!\" Then Haman became terrified in the presence of the king and queen.</VERS>\n\t\t\t<VERS vnumber=\"7\"> In rage the king arose from the banquet of wine and withdrew to the palace garden. Meanwhile, Haman stood to beg Queen Esther for his life, for he realized that the king had now determined a catastrophic end for him.</VERS>\n\t\t\t<VERS vnumber=\"8\"> When the king returned from the palace garden to the banquet of wine, Haman was throwing himself down on the couch where Esther was lying. The king exclaimed, \"Will he also attempt to rape the queen while I am still in the building!\" As these words left the king's mouth, they covered Haman's face.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Harbona, one of the king's eunuchs, said, \"Indeed, there is the gallows that Haman made for Mordecai, who spoke out in the king's behalf. It stands near Haman's home and is seventy-five feet high.\" The king said, \"Hang him on it!\" </VERS>\n\t\t\t<VERS vnumber=\"10\"> So they hanged Haman on the very gallows that he had prepared for Mordecai. The king's rage then abated.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"8\">\n\t\t\t<VERS vnumber=\"1\"> On that same day King Ahasuerus gave the estate of Haman, that adversary of the Jews, to Queen Esther. Now Mordecai had come before the king, for Esther had revealed how he was related to her. </VERS>\n\t\t\t<VERS vnumber=\"2\"> The king then removed his signet ring (the very one he had taken back from Haman) and gave it to Mordecai. And Esther designated Mordecai to be in charge of Haman's estate.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Then Esther again spoke with the king, falling at his feet. She wept and begged him for mercy, that he might nullify the evil of Haman the Agagite which he had intended against the Jews.</VERS>\n\t\t\t<VERS vnumber=\"4\"> When the king extended to Esther the gold scepter, she arose and stood before the king.</VERS>\n\t\t\t<VERS vnumber=\"5\"> She said, \"If the king is so inclined and if I have met with his approval and if the matter is agreeable to the king and if I am attractive to him, let an edict be written rescinding those recorded intentions of Haman the son of Hammedatha, the Agagite, which he wrote in order to destroy the Jews who are throughout all the king's provinces. </VERS>\n\t\t\t<VERS vnumber=\"6\"> For how can I watch the calamity that will befall my people, and how can I watch the destruction of my relatives?\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> King Ahasuerus replied to Queen Esther and to Mordecai the Jew, \"Look, I have already given Haman's estate to Esther, and he has been hanged on the gallows because he took hostile action against the Jews. </VERS>\n\t\t\t<VERS vnumber=\"8\"> Now you write in the king's name whatever in your opinion is appropriate concerning the Jews and seal it with the king's signet ring. Any decree that is written in the king's name and sealed with the king's signet ring cannot be rescinded.</VERS>\n\t\t\t<VERS vnumber=\"9\"> The king's scribes were quickly summoned, in the third month (that is, the month of Sivan), on the twenty-third day. They wrote out everything that Mordecai instructed to the Jews and to the satraps and the governors and the officials of the provinces all the way from India to Ethiopia, a hundred and twenty-seven provinces in all, to each province in its own script and to each people in their own language, and to the Jews according to their own script and their own language.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Mordecai wrote in the name of King Ahasuerus and sealed it with the king's signet ring. He then sent letters by couriers on horses, who rode royal horses that were very swift.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The king thereby allowed the Jews who were in every city to assemble and to stand up for themselves, to destroy, to kill, and to annihilate any army of whatever people or province that should become their adversaries, including their women and children, and to confiscate their property.</VERS>\n\t\t\t<VERS vnumber=\"12\"> This was to take place on a certain day throughout all the provinces of King Ahasuerus, namely, on the thirteenth day of the twelfth month (that is, the month of Adar).</VERS>\n\t\t\t<VERS vnumber=\"13\"> A copy of the edict was to be presented as law throughout each and every province and made known to all peoples, so that the Jews might be prepared on that day to avenge themselves from their enemies.</VERS>\n\t\t\t<VERS vnumber=\"14\"> The couriers who were riding the royal horses went forth with the king's edict without delay. And the law was presented in Susa the citadel as well.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Now Mordecai went out from the king's presence in purple and white royal attire, with a large golden crown and a purple linen mantle. The city of Susa shouted with joy.</VERS>\n\t\t\t<VERS vnumber=\"16\"> For the Jews there was radiant happiness and joyous honor.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Throughout every province and throughout every city where the king's edict and his law arrived, the Jews experienced happiness and joy, banquets and holidays. Many of the resident peoples pretended to be Jews, because the fear of the Jews had overcome them.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"9\">\n\t\t\t<VERS vnumber=\"1\"> In the twelfth month (that is, the month of Adar), on its thirteenth day, the edict of the king and his law were to be executed. It was on this day that the enemies of the Jews had supposed that they would gain power over them. But contrary to expectations, the Jews gained power over their enemies.</VERS>\n\t\t\t<VERS vnumber=\"2\"> The Jews assembled themselves in their cities throughout all the provinces of King Ahasuerus to strike out against those who were seeking their harm. No one was able to stand before them, for dread of them fell on all the peoples.</VERS>\n\t\t\t<VERS vnumber=\"3\"> All the officials of the provinces, the satraps, the governors and those who performed the king's business were assisting the Jews, for the dread of Mordecai had fallen on them.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Mordecai was of high rank in the king's palace, and word about him was spreading throughout all the provinces. His influence continued to become greater and greater.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The Jews struck all their enemies with the sword, bringing death and destruction, and they did as they pleased with their enemies.</VERS>\n\t\t\t<VERS vnumber=\"6\"> In Susa the citadel the Jews killed and destroyed five hundred men.</VERS>\n\t\t\t<VERS vnumber=\"7\"> In addition, they also killed Parshandatha, Dalphon, Aspatha,</VERS>\n\t\t\t<VERS vnumber=\"8\"> Poratha, Adalia, Aridatha,</VERS>\n\t\t\t<VERS vnumber=\"9\"> Parmashta, Arisai, Aridai, and Vaizatha,</VERS>\n\t\t\t<VERS vnumber=\"10\"> the ten sons of Haman son of Hammedatha, the enemy of the Jews. But they did not confiscate their property.</VERS>\n\t\t\t<VERS vnumber=\"11\"> On that same day the number of those killed in Susa the citadel was brought to the king's attention.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Then the king said to Queen Esther, \"In Susa the citadel the Jews have killed and destroyed five hundred men and the ten sons of Haman! What then have they done in the rest of the king's provinces? What is your request? It shall be given to you. What other petition do you have? It shall be done.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> Esther replied, \"If the king is so inclined, let the Jews who are in Susa be permitted to act tomorrow also according to today's law, and let them hang the ten sons of Haman on the gallows.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> So the king issued orders for this to be done. A law was passed in Susa, and the ten sons of Haman were hanged.</VERS>\n\t\t\t<VERS vnumber=\"15\"> The Jews who were in Susa then assembled on the fourteenth day of the month of Adar, and they killed three hundred men in Susa. But they did not confiscate their property.</VERS>\n\t\t\t<VERS vnumber=\"16\"> The rest of the Jews who were throughout the provinces of the king assembled in order to stand up for themselves and to have rest from their enemies. They killed seventy-five thousand of their adversaries, but they did not confiscate their property. </VERS>\n\t\t\t<VERS vnumber=\"17\"> All of this happened on the thirteenth day of the month of Adar. They then rested on the fourteenth day and made it a day for banqueting and happiness.</VERS>\n\t\t\t<VERS vnumber=\"18\"> But the Jews who were in Susa assembled on the thirteenth and fourteenth days, and rested on the fifteenth, making it a day for banqueting and happiness.</VERS>\n\t\t\t<VERS vnumber=\"19\"> This is why the Jews who are in the rural country, those who live in rural cities, set aside the fourteenth day of the month of Adar as a holiday for happiness, banqueting, holiday, and sending gifts to one another.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Mordecai wrote these matters down and sent letters to all the Jews who were throughout all the provinces of King Ahasuerus, both near and far,</VERS>\n\t\t\t<VERS vnumber=\"21\"> to have them observe the fourteenth and the fifteenth day of the month of Adar each year</VERS>\n\t\t\t<VERS vnumber=\"22\"> as the time when the Jews gave themselves rest from their enemies, the month when their trouble was turned to happiness and their mourning to a holiday. These were to be days of banqueting, happiness, sending gifts to one another, and providing for the poor.</VERS>\n\t\t\t<VERS vnumber=\"23\"> So the Jews committed themselves to continue what they had begun to do and to what Mordecai had written to them.</VERS>\n\t\t\t<VERS vnumber=\"24\"> For Haman the son of Hammedatha, the Agagite, the enemy of all the Jews, had devised plans against the Jews to destroy them. He had cast pur (that is, the lot) in order to afflict and destroy them.</VERS>\n\t\t\t<VERS vnumber=\"25\"> But when the matter came to the king's attention, the king gave written orders that Haman's evil intentions that he had devised against the Jews should fall on his own head. He and his sons were hanged on the gallows. </VERS>\n\t\t\t<VERS vnumber=\"26\"> For this reason these days are known as Purim, after the name of pur.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Therefore, because of the account found in this letter and what they had faced in this regard and what had happened to them, the Jews established as binding on themselves, their descendants, and all who joined their company that they should observe these two days without fail, just as written and at the appropriate time on an annual basis.</VERS>\n\t\t\t<VERS vnumber=\"28\"> These days were to be remembered and to be celebrated in every generation and in every family, every province, and every city. The Jews were not to fail to observe these days of Purim; the remembrance of them was not to cease among their descendants.</VERS>\n\t\t\t<VERS vnumber=\"29\"> So Queen Esther, the daughter of Abihail, and Mordecai the Jew wrote with full authority to confirm this second letter about Purim. </VERS>\n\t\t\t<VERS vnumber=\"30\"> Letters were sent to all the Jews in the hundred and twenty-seven provinces of the empire of Ahasuerus, words of true peace,</VERS>\n\t\t\t<VERS vnumber=\"31\"> to establish these days of Purim in their proper times, just as Mordecai the Jew and Queen Esther had established, and just as they had established both for themselves and their descendants, matters pertaining to fasting and lamentation.</VERS>\n\t\t\t<VERS vnumber=\"32\"> Esther's command established these matters of Purim, and the matter was officially recorded.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"10\">\n\t\t\t<VERS vnumber=\"1\"> King Ahasuerus then imposed forced labor on the land and on the coastlands of the sea.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Now all the actions carried out under his authority and his great achievements, along with an exact statement concerning the greatness of Mordecai, whom the king promoted, are they not written in the Book of the Chronicles of the Kings of Media and Persia?</VERS>\n\t\t\t<VERS vnumber=\"3\"> Mordecai the Jew was second only to King Ahasuerus. He was the highest-ranking Jew, and he was admired by his numerous relatives. He worked enthusiastically for the good of his people and was an advocate for the welfare of all his descendants.</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"18\" bname=\"Job\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\">  There was a man in the land of Uz whose name was Job. And that man was pure and upright, one who feared God and turned away from evil.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Seven sons and three daughters were born to him.</VERS>\n\t\t\t<VERS vnumber=\"3\"> His possessions included 7,000 sheep, 3,000 camels, 500 yoke of oxen, and 500 female donkeys; in addition he had a very great household. Thus he was the greatest of all the people in the east.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Now his sons used to go and hold a feast in the house of each one in turn, and they would send and invite their three sisters to eat and to drink with them. </VERS>\n\t\t\t<VERS vnumber=\"5\"> When the days of their feasting were finished, Job would send for them and sanctify them; he would get up early in the morning and offer burnt offerings according to the number of them all. For Job thought, \"Perhaps my children have sinned and cursed God in their hearts.\" This was Job's customary practice.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Now the day came when the sons of God came to present themselves before the LORD, and Satan also arrived among them.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The LORD said to Satan, \"Where have you come from?\" And Satan answered the LORD, \"From roving about on the earth, and from walking back and forth across it.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> So the LORD said to Satan, \"Have you considered my servant Job? There is no one like him on the earth, a pure and upright man, one who fears God and turns away from evil.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> Then Satan answered the LORD, \"Is it for nothing that Job fears God?</VERS>\n\t\t\t<VERS vnumber=\"10\"> Have you not made a hedge around him and his household and all that he has on every side? You have blessed the work of his hands, and his livestock have increased in the land. </VERS>\n\t\t\t<VERS vnumber=\"11\"> But extend your hand and strike everything he has, and he will no doubt curse you to your face!\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> So the LORD said to Satan, \"All right then, everything he has is in your power. Only do not extend your hand against the man himself!\" So Satan went out from the presence of the LORD.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Now the day came when Job's sons and daughters were eating and drinking wine in their oldest brother's house, </VERS>\n\t\t\t<VERS vnumber=\"14\"> and a messenger came to Job, saying, \"The oxen were plowing and the donkeys were grazing beside them, </VERS>\n\t\t\t<VERS vnumber=\"15\"> and the Sabeans swooped down and carried them all away, and they killed the servants with the sword! And I, only I alone, escaped to tell you!\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> While this one was still speaking, another messenger arrived and said, \"The fire of God has fallen from heaven and has burned up the sheep and the servants, it has consumed them! And I, only I alone, escaped to tell you!\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> While this one was still speaking another messenger arrived and said, \"The Chaldeans formed three bands and made a raid on the camels and carried them all away, and they killed the servants with the sword! And I, only I alone, escaped to tell you!\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> While this one was still speaking another messenger arrived and said, \"Your sons and your daughters were eating and drinking wine in their oldest brother's house,</VERS>\n\t\t\t<VERS vnumber=\"19\"> and suddenly a great wind swept across the wilderness and struck the four corners of the house, and it fell on the young people, and they died! And I, only I alone, escaped to tell you!\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> Then Job got up and tore his robe. He shaved his head, and then he threw himself down with his face to the ground.</VERS>\n\t\t\t<VERS vnumber=\"21\"> He said, \"Naked I came from my mother's womb, and naked I will return there. The LORD gives, and the LORD takes away. May the name of the LORD be blessed!\" </VERS>\n\t\t\t<VERS vnumber=\"22\"> In all this Job did not sin, nor did he charge God with moral impropriety.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> Again the day came when the sons of God came to present themselves before the LORD, and Satan also arrived among them to present himself before the LORD.</VERS>\n\t\t\t<VERS vnumber=\"2\"> And the LORD said to Satan, \"Where do you come from?\" Satan answered the LORD, \"From roving about on the earth, and from walking back and forth across it.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> Then the LORD said to Satan, \"Have you considered my servant Job? For there is no one like him on the earth, a pure and upright man, one who fears God and turns away from evil. And he still holds firmly to his integrity, so that you stirred me up to destroy him without reason.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> But Satan answered the LORD, \"Skin for skin! Indeed, a man will give up all that he has to save his life!</VERS>\n\t\t\t<VERS vnumber=\"5\"> But extend your hand and strike his bone and his flesh, and he will no doubt curse you to your face!\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> So the LORD said to Satan, \"All right, he is in your power; only preserve his life.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> So Satan went out from the presence of the LORD, and he afflicted Job with a malignant ulcer from the sole of his feet to the top of his head.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Job took a shard of broken pottery to scrape himself with while he was sitting among the ashes.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Then his wife said to him, \"Are you still holding firmly to your integrity? Curse God, and die!\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> But he replied, \"You're talking like one of the godless women would do! Should we receive what is good from God, and not also receive what is evil?\" In all this Job did not sin by what he said.</VERS>\n\t\t\t<VERS vnumber=\"11\"> When Job's three friends heard about all this calamity that had happened to him, each of them came from his own country, Eliphaz the Temanite, Bildad the Shuhite, and Zophar the Naamathite. They met together to come to show sympathy for him and to console him.</VERS>\n\t\t\t<VERS vnumber=\"12\"> But when they gazed intently from a distance but did not recognize him, they began to weep loudly. Each of them tore his robes, and they threw dust into the air over their heads.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Then they sat down with him on the ground for seven days and seven nights, yet no one spoke a word to him, for they saw that his pain was very great. II. Job's Dialogue With His Friends</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> After this Job opened his mouth and cursed the day he was born.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Job spoke up and said:</VERS>\n\t\t\t<VERS vnumber=\"3\"> \"Let the day on which I was born perish, and the night that said, 'A man has been conceived!'</VERS>\n\t\t\t<VERS vnumber=\"4\"> That day, let it be darkness; let not God on high regard it, nor let light shine on it!</VERS>\n\t\t\t<VERS vnumber=\"5\"> Let darkness and the deepest shadow claim it; let a cloud settle on it; let whatever blackens the day terrify it!</VERS>\n\t\t\t<VERS vnumber=\"6\"> That night, let darkness seize it; let it not be included among the days of the year; let it not enter among the number of the months!</VERS>\n\t\t\t<VERS vnumber=\"7\"> Indeed, let that night be barren; let no shout of joy penetrate it!</VERS>\n\t\t\t<VERS vnumber=\"8\"> Let those who curse the day curse it, those who are prepared to rouse Leviathan.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Let its morning stars be darkened; let it wait for daylight but find none, nor let it see the first rays of dawn,</VERS>\n\t\t\t<VERS vnumber=\"10\"> because it did not shut the doors of my mother's womb on me, nor did it hide trouble from my eyes!</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"Why did I not die at birth, and why did I not expire as I came out of the womb?</VERS>\n\t\t\t<VERS vnumber=\"12\"> Why did the knees welcome me, and why were there two breasts that I might nurse at them?</VERS>\n\t\t\t<VERS vnumber=\"13\"> For now I would be lying down and would be quiet, I would be asleep and then at peace</VERS>\n\t\t\t<VERS vnumber=\"14\"> with kings and counselors of the earth who built for themselves places now desolate,</VERS>\n\t\t\t<VERS vnumber=\"15\"> or with princes who possessed gold, who filled their palaces with silver.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Or why was I not buried like a stillborn infant, like infants who have never seen the light?</VERS>\n\t\t\t<VERS vnumber=\"17\"> There the wicked cease from turmoil, and there the weary are at rest.</VERS>\n\t\t\t<VERS vnumber=\"18\"> There the prisoners relax together; they do not hear the voice of the oppressor.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Small and great are there, and the slave is free from his master.</VERS>\n\t\t\t<VERS vnumber=\"20\"> \"Why does God give light to one who is in misery, and life to those whose soul is bitter,</VERS>\n\t\t\t<VERS vnumber=\"21\"> to those who wait for death that does not come, and search for it more than for hidden treasures,</VERS>\n\t\t\t<VERS vnumber=\"22\"> who rejoice even to jubilation, and are exultant when they find the grave?</VERS>\n\t\t\t<VERS vnumber=\"23\"> Why is light given to a man whose way is hidden, and whom God has hedged in?</VERS>\n\t\t\t<VERS vnumber=\"24\"> For my sighing comes in place of my food, and my groanings flow forth like water.</VERS>\n\t\t\t<VERS vnumber=\"25\"> For the very thing I dreaded has happened to me, and what I feared has come upon me.</VERS>\n\t\t\t<VERS vnumber=\"26\"> I have no ease, I have no quietness; I cannot rest; turmoil has come upon me.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\"> Then Eliphaz the Temanite answered:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"If someone should attempt a word with you, will you be impatient? But who can refrain from speaking?</VERS>\n\t\t\t<VERS vnumber=\"3\"> Look, you have instructed many; you have strengthened feeble hands.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Your words have supported those who stumbled, and you have strengthened the knees that gave way.</VERS>\n\t\t\t<VERS vnumber=\"5\"> But now the same thing comes to you, and you are discouraged; it strikes you, and you are terrified.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Is not your piety your confidence, and your blameless ways your hope?</VERS>\n\t\t\t<VERS vnumber=\"7\"> Call to mind now: Who, being innocent, ever perished? And where were upright people ever destroyed?</VERS>\n\t\t\t<VERS vnumber=\"8\"> Even as I have seen, those who plow iniquity and those who sow trouble reap the same.</VERS>\n\t\t\t<VERS vnumber=\"9\"> By the breath of God they perish, and by the blast of his anger they are consumed.</VERS>\n\t\t\t<VERS vnumber=\"10\"> There is the roaring of the lion and the growling of the young lion, but the teeth of the young lions are broken.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The mighty lion perishes for lack of prey, and the cubs of the lioness are scattered.</VERS>\n\t\t\t<VERS vnumber=\"12\"> \"Now a word was secretly brought to me, and my ear caught a whisper of it.</VERS>\n\t\t\t<VERS vnumber=\"13\"> In the troubling thoughts of the dreams in the night when a deep sleep falls on men,</VERS>\n\t\t\t<VERS vnumber=\"14\"> a trembling gripped me, and a terror!, and made all my bones shake.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Then a breath of air passes by my face; it makes the hair of my flesh stand up.</VERS>\n\t\t\t<VERS vnumber=\"16\"> It stands still, but I cannot recognize its appearance; an image is before my eyes, and I hear a murmuring voice:</VERS>\n\t\t\t<VERS vnumber=\"17\"> \"Is a mortal man righteous before God? Or a man pure before his Creator?</VERS>\n\t\t\t<VERS vnumber=\"18\"> If God puts no trust in his servants and attributes folly to his angels,</VERS>\n\t\t\t<VERS vnumber=\"19\"> how much more to those who live in houses of clay, whose foundation is in the dust, who are crushed like a moth?</VERS>\n\t\t\t<VERS vnumber=\"20\"> They are destroyed between morning and evening; they perish forever without anyone regarding it.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Is not their excess wealth taken away from them? They die, yet without attaining wisdom.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"5\">\n\t\t\t<VERS vnumber=\"1\"> \"Call now! Is there anyone who will answer you? To which of the holy ones will you turn?</VERS>\n\t\t\t<VERS vnumber=\"2\"> For wrath kills the foolish person, and anger slays the silly one.</VERS>\n\t\t\t<VERS vnumber=\"3\"> I myself have seen the fool taking root, but suddenly I cursed his place of residence.</VERS>\n\t\t\t<VERS vnumber=\"4\"> His children are far from safety, and they are crushed at the place where judgment is rendered, nor is there anyone to deliver them.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The hungry eat up his harvest, and take it even from behind the thorns, and the thirsty swallow up their fortune.</VERS>\n\t\t\t<VERS vnumber=\"6\"> For evil does not come up from the dust, nor does trouble spring up from the ground,</VERS>\n\t\t\t<VERS vnumber=\"7\"> but people are born to trouble, as surely as the sparks fly upward.</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"But as for me, I would seek God, and to God I would set forth my case.</VERS>\n\t\t\t<VERS vnumber=\"9\"> He does great and unsearchable things, marvelous things without number;</VERS>\n\t\t\t<VERS vnumber=\"10\"> he gives rain on the earth, and sends water on the fields;</VERS>\n\t\t\t<VERS vnumber=\"11\"> he sets the lowly on high, that those who mourn are raised to safety.</VERS>\n\t\t\t<VERS vnumber=\"12\"> He frustrates the plans of the crafty so that their hands cannot accomplish what they had planned!</VERS>\n\t\t\t<VERS vnumber=\"13\"> He catches the wise in their own craftiness, and the counsel of the cunning is brought to a quick end.</VERS>\n\t\t\t<VERS vnumber=\"14\"> They meet with darkness in the daytime, and grope about in the noontime as if it were night.</VERS>\n\t\t\t<VERS vnumber=\"15\"> So he saves from the sword that comes from their mouth, even the poor from the hand of the powerful.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Thus the poor have hope, and iniquity shuts its mouth.</VERS>\n\t\t\t<VERS vnumber=\"17\"> \"Therefore, blessed is the man whom God corrects, so do not despise the discipline of the Almighty.</VERS>\n\t\t\t<VERS vnumber=\"18\"> For he wounds, but he also bandages; he strikes, but his hands also heal.</VERS>\n\t\t\t<VERS vnumber=\"19\"> He will deliver you from six calamities; yes, in seven no evil will touch you.</VERS>\n\t\t\t<VERS vnumber=\"20\"> In time of famine he will redeem you from death, and in time of war from the power of the sword.</VERS>\n\t\t\t<VERS vnumber=\"21\"> You will be protected from malicious gossip, and will not be afraid of the destruction when it comes.</VERS>\n\t\t\t<VERS vnumber=\"22\"> You will laugh at destruction and famine and need not be afraid of the beasts of the earth.</VERS>\n\t\t\t<VERS vnumber=\"23\"> For you will have a pact with the stones of the field, and the wild animals will be at peace with you.</VERS>\n\t\t\t<VERS vnumber=\"24\"> And you will know that your home will be secure, and when you inspect your domains, you will not be missing anything.</VERS>\n\t\t\t<VERS vnumber=\"25\"> You will also know that your children will be numerous, and your descendants like the grass of the earth.</VERS>\n\t\t\t<VERS vnumber=\"26\"> You will come to your grave in a full age, As stacks of grain are harvested in their season.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Look, we have investigated this, so it is true. Hear it, and apply it for your own good.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"6\">\n\t\t\t<VERS vnumber=\"1\"> Then Job responded:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Oh, if only my grief could be weighed, and my misfortune laid on the scales too!</VERS>\n\t\t\t<VERS vnumber=\"3\"> But because it is heavier than the sand of the sea, that is why my words have been wild.</VERS>\n\t\t\t<VERS vnumber=\"4\"> For the arrows of the Almighty are within me; my spirit drinks their poison; God's sudden terrors are arrayed against me.</VERS>\n\t\t\t<VERS vnumber=\"5\"> \"Does the wild donkey bray when it is near grass? Or does the ox low near its fodder?</VERS>\n\t\t\t<VERS vnumber=\"6\"> Can food that is tasteless be eaten without salt? Or is there any taste in the white of an egg?</VERS>\n\t\t\t<VERS vnumber=\"7\"> I have refused to touch such things; they are like loathsome food to me.</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"Oh that my request would be realized, and that God would grant me what I long for!</VERS>\n\t\t\t<VERS vnumber=\"9\"> And that God would be willing to crush me, that he would let loose his hand and kill me.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Then I would yet have my comfort, then I would rejoice, in spite of pitiless pain, for I have not concealed the words of the Holy One.</VERS>\n\t\t\t<VERS vnumber=\"11\"> What is my strength, that I should wait? and what is my end, that I should prolong my life?</VERS>\n\t\t\t<VERS vnumber=\"12\"> Is my strength like that of stones? or is my flesh made of bronze?</VERS>\n\t\t\t<VERS vnumber=\"13\"> Is not my power to help myself nothing, and has not every resource been driven from me?</VERS>\n\t\t\t<VERS vnumber=\"14\"> \"To the one in despair, kindness should come from his friend even if he forsakes the fear of the Almighty.</VERS>\n\t\t\t<VERS vnumber=\"15\"> My brothers have been as treacherous as a seasonal stream, and as the riverbeds of the intermittent streams that flow away.</VERS>\n\t\t\t<VERS vnumber=\"16\"> They are dark because of ice; snow is piled up over them.</VERS>\n\t\t\t<VERS vnumber=\"17\"> When they are scorched, they dry up, when it is hot, they vanish from their place.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Caravans turn aside from their routes; they go into the wasteland and perish.</VERS>\n\t\t\t<VERS vnumber=\"19\"> The caravans of Tema looked intently for these streams; the traveling merchants of Sheba hoped for them.</VERS>\n\t\t\t<VERS vnumber=\"20\"> They were distressed, because each one had been so confident; they arrived there, but were disappointed.</VERS>\n\t\t\t<VERS vnumber=\"21\"> For now you have become like these streams that are no help; you see a terror, and are afraid.</VERS>\n\t\t\t<VERS vnumber=\"22\"> \"Have I ever said, 'Give me something, and from your fortune make gifts in my favor'?</VERS>\n\t\t\t<VERS vnumber=\"23\"> Or 'Deliver me from the enemy's power, and from the hand of tyrants ransom me'?</VERS>\n\t\t\t<VERS vnumber=\"24\"> \"Teach me and I, for my part, will be silent; explain to me how I have been mistaken.</VERS>\n\t\t\t<VERS vnumber=\"25\"> How painful are honest words! But what does your reproof prove?</VERS>\n\t\t\t<VERS vnumber=\"26\"> Do you intend to criticize mere words, and treat the words of a despairing man as wind?</VERS>\n\t\t\t<VERS vnumber=\"27\"> Yes, you would gamble for the fatherless, and auction off your friend.</VERS>\n\t\t\t<VERS vnumber=\"28\"> \"Now then, be good enough to look at me; and I will not lie to your face!</VERS>\n\t\t\t<VERS vnumber=\"29\"> Relent, let there be no falsehood; reconsider, for my righteousness is intact!</VERS>\n\t\t\t<VERS vnumber=\"30\"> Is there any falsehood on my lips? Can my mouth not discern evil things?</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"7\">\n\t\t\t<VERS vnumber=\"1\"> \"Does not humanity have hard service on earth? Are not their days also like the days of a hired man?</VERS>\n\t\t\t<VERS vnumber=\"2\"> Like a servant longing for the evening shadow, and like a hired man looking for his wages,</VERS>\n\t\t\t<VERS vnumber=\"3\"> thus I have been made to inherit months of futility, and nights of sorrow have been appointed to me.</VERS>\n\t\t\t<VERS vnumber=\"4\"> If I lie down, I say, 'When will I arise?', and the night stretches on and I toss and turn restlessly until the day dawns.</VERS>\n\t\t\t<VERS vnumber=\"5\"> My body is clothed with worms and dirty scabs; my skin is broken and festering.</VERS>\n\t\t\t<VERS vnumber=\"6\"> My days are swifter than a weaver's shuttle and they come to an end without hope.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Remember that my life is but a breath, that my eyes will never again see happiness.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The eye of him who sees me now will see me no more; your eyes will look for me, but I will be gone.</VERS>\n\t\t\t<VERS vnumber=\"9\"> As a cloud is dispersed and then disappears, so the one who goes down to the grave does not come up again.</VERS>\n\t\t\t<VERS vnumber=\"10\"> He returns no more to his house, nor does his place of residence know him any more.</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"Therefore, I will not refrain my mouth; I will speak in the anguish of my spirit; I will complain in the bitterness of my soul.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Am I the sea, or the creature of the deep, that you must put me under guard?</VERS>\n\t\t\t<VERS vnumber=\"13\"> If I say, \"My bed will comfort me, my couch will ease my complaint,\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> then you scare me with dreams and terrify me with visions,</VERS>\n\t\t\t<VERS vnumber=\"15\"> so that I would prefer strangling, and death more than life.</VERS>\n\t\t\t<VERS vnumber=\"16\"> I loathe it; I do not want to live forever; leave me alone, for my days are a vapor!</VERS>\n\t\t\t<VERS vnumber=\"17\"> \"What is mankind that you make so much of them, and that you pay attention to them?</VERS>\n\t\t\t<VERS vnumber=\"18\"> And that you visit them every morning, and try them every moment?</VERS>\n\t\t\t<VERS vnumber=\"19\"> Will you never look away from me, will you not let me alone long enough to swallow my spittle?</VERS>\n\t\t\t<VERS vnumber=\"20\"> If I have sinned, what have I done to you, O watcher of men? Why have you set me as your target? Have I become a burden to you?</VERS>\n\t\t\t<VERS vnumber=\"21\"> And why do you not pardon my transgression, and take away my iniquity? For now I will lie down in the dust, and you will seek me diligently, but I will be gone.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"8\">\n\t\t\t<VERS vnumber=\"1\"> Then Bildad the Shuhite spoke up and said:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"How long will you speak these things, seeing that the words of your mouth are like a great wind?</VERS>\n\t\t\t<VERS vnumber=\"3\"> Does God pervert justice? Or does the Almighty pervert what is right?</VERS>\n\t\t\t<VERS vnumber=\"4\"> If your children sinned against him, he gave them over to the penalty of their sin.</VERS>\n\t\t\t<VERS vnumber=\"5\"> But if you will look to God, and make your supplication to the Almighty,</VERS>\n\t\t\t<VERS vnumber=\"6\"> if you become pure and upright, even now he will rouse himself for you, and will restore your righteous abode.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Your beginning will seem so small, since your future will flourish.</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"For inquire now of the former generation, and pay attention to the findings of their ancestors;</VERS>\n\t\t\t<VERS vnumber=\"9\"> For we were born yesterday and do not have knowledge, since our days on earth are but a shadow.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Will they not instruct you and speak to you, and bring forth words from their understanding?</VERS>\n\t\t\t<VERS vnumber=\"11\"> Can the papyrus plant grow tall where there is no marsh? Can reeds flourish without water?</VERS>\n\t\t\t<VERS vnumber=\"12\"> While they are still beginning to flower and not ripe for cutting, they can wither away faster than any grass!</VERS>\n\t\t\t<VERS vnumber=\"13\"> Such is the destiny of all who forget God; the hope of the godless perishes,</VERS>\n\t\t\t<VERS vnumber=\"14\"> whose trust is in something futile, whose security is a spider's web.</VERS>\n\t\t\t<VERS vnumber=\"15\"> He leans against his house but it does not hold up, he takes hold of it but it does not stand.</VERS>\n\t\t\t<VERS vnumber=\"16\"> He is a well-watered plant in the sun, its shoots spread over its garden.</VERS>\n\t\t\t<VERS vnumber=\"17\"> It wraps its roots around a heap of stones and it looks for a place among stones.</VERS>\n\t\t\t<VERS vnumber=\"18\"> If he is uprooted from his place, then that place will disown him, saying, 'I have never seen you!'</VERS>\n\t\t\t<VERS vnumber=\"19\"> Indeed, this is the joy of his way, and out of the earth others spring up.</VERS>\n\t\t\t<VERS vnumber=\"20\"> \"Surely, God does not reject a blameless man, nor does he grasp the hand of the evildoers.</VERS>\n\t\t\t<VERS vnumber=\"21\"> He will yet fill your mouth with laughter, and your lips with gladness.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Those who hate you will be clothed with shame, and the tent of the wicked will be no more.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"9\">\n\t\t\t<VERS vnumber=\"1\"> Then Job answered:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Truly, I know that this is so. But how can a human be just before God?</VERS>\n\t\t\t<VERS vnumber=\"3\"> If someone wishes to contend with him, he cannot answer him one time in a thousand.</VERS>\n\t\t\t<VERS vnumber=\"4\"> He is wise in heart and mighty in strength, who has resisted him and remained safe?</VERS>\n\t\t\t<VERS vnumber=\"5\"> He who removes mountains suddenly, who overturns them in his anger;</VERS>\n\t\t\t<VERS vnumber=\"6\"> he who shakes the earth out of its place so that its pillars tremble;</VERS>\n\t\t\t<VERS vnumber=\"7\"> he who commands the sun and it does not shine and seals up the stars;</VERS>\n\t\t\t<VERS vnumber=\"8\"> he alone spreads out the heavens, and treads on the waves of the sea;</VERS>\n\t\t\t<VERS vnumber=\"9\"> he makes the Bear, Orion, and the Pleiades, and the constellations of the southern sky;</VERS>\n\t\t\t<VERS vnumber=\"10\"> he does great and unsearchable things, and wonderful things without number.</VERS>\n\t\t\t<VERS vnumber=\"11\"> If he passes by me, I cannot see him, if he goes by, I cannot perceive him.</VERS>\n\t\t\t<VERS vnumber=\"12\"> If he snatches away, who can turn him back? Who dares to say to him, 'What are you doing?'</VERS>\n\t\t\t<VERS vnumber=\"13\"> God does not restrain his anger; under him the helpers of Rahab lie crushed.</VERS>\n\t\t\t<VERS vnumber=\"14\"> \"How much less, then, can I answer him and choose my words to argue with him!</VERS>\n\t\t\t<VERS vnumber=\"15\"> Although I am innocent, I could not answer him; I could only plead with my judge for mercy.</VERS>\n\t\t\t<VERS vnumber=\"16\"> If I summoned him, and he answered me, I would not believe that he would be listening to my voice,</VERS>\n\t\t\t<VERS vnumber=\"17\"> he who crushes me with a tempest, and multiplies my wounds for no reason.</VERS>\n\t\t\t<VERS vnumber=\"18\"> He does not allow me to recover my breath, for he fills me with bitterness.</VERS>\n\t\t\t<VERS vnumber=\"19\"> If it is a matter of strength, most certainly he is the strong one! And if it is a matter of justice, he will say, 'Who will summon me?'</VERS>\n\t\t\t<VERS vnumber=\"20\"> Although I am innocent, my mouth would condemn me; although I am blameless, it would declare me perverse.</VERS>\n\t\t\t<VERS vnumber=\"21\"> I am blameless. I do not know myself. I despise my life.</VERS>\n\t\t\t<VERS vnumber=\"22\"> \"It is all one! That is why I say, 'He destroys the blameless and the guilty.'</VERS>\n\t\t\t<VERS vnumber=\"23\"> If a scourge brings sudden death, he mocks at the despair of the innocent.</VERS>\n\t\t\t<VERS vnumber=\"24\"> If a land has been given into the hand of a wicked man, he covers the faces of its judges; if it is not he, then who is it?</VERS>\n\t\t\t<VERS vnumber=\"25\"> \"My days are swifter than a runner, they speed by without seeing happiness.</VERS>\n\t\t\t<VERS vnumber=\"26\"> They glide by like reed boats, like an eagle that swoops down on its prey.</VERS>\n\t\t\t<VERS vnumber=\"27\"> If I say, 'I will forget my complaint, I will change my expression and be cheerful,'</VERS>\n\t\t\t<VERS vnumber=\"28\"> I dread all my sufferings, for I know that you do not hold me blameless.</VERS>\n\t\t\t<VERS vnumber=\"29\"> If I am guilty, why then weary myself in vain?</VERS>\n\t\t\t<VERS vnumber=\"30\"> If I wash myself with snow water, and make my hands clean with lye,</VERS>\n\t\t\t<VERS vnumber=\"31\"> then you plunge me into a slimy pit and my own clothes abhor me.</VERS>\n\t\t\t<VERS vnumber=\"32\"> For he is not a human being like I am, that I might answer him, that we might come together in judgment.</VERS>\n\t\t\t<VERS vnumber=\"33\"> Nor is there an arbiter between us, who might lay his hand on us both,</VERS>\n\t\t\t<VERS vnumber=\"34\"> who would take his rod away from me so that his terror would not make me afraid.</VERS>\n\t\t\t<VERS vnumber=\"35\"> Then would I speak and not fear him, but it is not so with me.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"10\">\n\t\t\t<VERS vnumber=\"1\"> \"I am weary of my life; I will complain without restraint; I will speak in the bitterness of my soul.</VERS>\n\t\t\t<VERS vnumber=\"2\"> I will say to God, 'Do not condemn me; tell me why you are contending with me.'</VERS>\n\t\t\t<VERS vnumber=\"3\"> Is it good for you to oppress, to despise the work of your hands, while you smile on the schemes of the wicked?</VERS>\n\t\t\t<VERS vnumber=\"4\"> \"Do you have eyes of flesh, or do you see as a human being sees?</VERS>\n\t\t\t<VERS vnumber=\"5\"> Are your days like the days of a mortal, or your years like the years of a mortal,</VERS>\n\t\t\t<VERS vnumber=\"6\"> that you must search out my iniquity, and inquire about my sin,</VERS>\n\t\t\t<VERS vnumber=\"7\"> although you know that I am not guilty, and that there is no one who can deliver out of your hand?</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"Your hands have shaped me and made me, but now you destroy me completely.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Remember that you have made me as with the clay; will you return me to dust?</VERS>\n\t\t\t<VERS vnumber=\"10\"> Did you not pour me out like milk, and curdle me like cheese?</VERS>\n\t\t\t<VERS vnumber=\"11\"> You clothed me with skin and flesh and knit me together with bones and sinews.</VERS>\n\t\t\t<VERS vnumber=\"12\"> You gave me life and favor, and your intervention watched over my spirit.</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"But these things you have concealed in your heart; I know that this is with you:</VERS>\n\t\t\t<VERS vnumber=\"14\"> If I sinned, then you would watch me and you would not acquit me of my iniquity.</VERS>\n\t\t\t<VERS vnumber=\"15\"> If I am guilty, woe to me, and if I am innocent, I cannot lift my head; I am full of shame, and satiated with my affliction.</VERS>\n\t\t\t<VERS vnumber=\"16\"> If I lift myself up, you hunt me as a fierce lion, and again you display your power against me.</VERS>\n\t\t\t<VERS vnumber=\"17\"> You bring new witnesses against me, and increase your anger against me; relief troops come against me.</VERS>\n\t\t\t<VERS vnumber=\"18\"> \"Why then did you bring me out from the womb? I should have died and no eye would have seen me!</VERS>\n\t\t\t<VERS vnumber=\"19\"> I should have been as though I had never existed; I should have been carried right from the womb to the grave!</VERS>\n\t\t\t<VERS vnumber=\"20\"> Are not my days few? Cease, then, and leave me alone, that I may find a little comfort,</VERS>\n\t\t\t<VERS vnumber=\"21\"> before I depart, never to return, to the land of darkness and the deepest shadow,</VERS>\n\t\t\t<VERS vnumber=\"22\"> to the land of utter darkness, like the deepest darkness, and the deepest shadow and disorder, where even the light is like darkness.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"11\">\n\t\t\t<VERS vnumber=\"1\"> Then Zophar the Naamathite spoke up and said:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Should not this abundance of words be answered, or should this talkative man be vindicated?</VERS>\n\t\t\t<VERS vnumber=\"3\"> Will your idle talk reduce people to silence, and will no one rebuke you when you mock?</VERS>\n\t\t\t<VERS vnumber=\"4\"> For you have said, 'My teaching is flawless, and I am pure in your sight.'</VERS>\n\t\t\t<VERS vnumber=\"5\"> But if only God would speak, if only he would open his lips against you,</VERS>\n\t\t\t<VERS vnumber=\"6\"> and reveal to you the secrets of wisdom, for true wisdom has two sides, so that you would know that God has forgiven some of your sins.</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"Can you discover the essence of God? Can you find out the perfection of the Almighty?</VERS>\n\t\t\t<VERS vnumber=\"8\"> It is higher than the heavens, what can you do? It is deeper than Sheol, what can you know?</VERS>\n\t\t\t<VERS vnumber=\"9\"> Its measure is longer than the earth, and broader than the sea.</VERS>\n\t\t\t<VERS vnumber=\"10\"> If he comes by and confines you and convenes a court, then who can prevent him?</VERS>\n\t\t\t<VERS vnumber=\"11\"> For he knows deceitful men; when he sees evil, will he not consider it?</VERS>\n\t\t\t<VERS vnumber=\"12\"> But an empty man will become wise, when a wild donkey's colt is born a human being.</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"As for you, if you prove faithful, and if you stretch out your hands toward him,</VERS>\n\t\t\t<VERS vnumber=\"14\"> if iniquity is in your hand, put it far away, and do not let evil reside in your tents.</VERS>\n\t\t\t<VERS vnumber=\"15\"> For then you will lift up your face without blemish; you will be securely established and will not fear.</VERS>\n\t\t\t<VERS vnumber=\"16\"> For you will forget your trouble; you will remember it like water that has flowed away.</VERS>\n\t\t\t<VERS vnumber=\"17\"> And life will be brighter than the noonday; though there be darkness, it will be like the morning.</VERS>\n\t\t\t<VERS vnumber=\"18\"> And you will be secure, because there is hope; you will be protected and will take your rest in safety.</VERS>\n\t\t\t<VERS vnumber=\"19\"> You will lie down with no one to make you afraid, and many will seek your favor.</VERS>\n\t\t\t<VERS vnumber=\"20\"> But the eyes of the wicked fail, and escape eludes them; their one hope is to breathe their last.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"12\">\n\t\t\t<VERS vnumber=\"1\"> Then Job answered:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Without a doubt you are the people, and wisdom will die with you.</VERS>\n\t\t\t<VERS vnumber=\"3\"> I also have understanding as well as you; I am not inferior to you. Who does not know such things as these?</VERS>\n\t\t\t<VERS vnumber=\"4\"> I am a laughingstock to my friends, I, who called on God and whom he answered, a righteous and blameless man is a laughingstock!</VERS>\n\t\t\t<VERS vnumber=\"5\"> For calamity, there is derision (according to the ideas of the fortunate), a fate for those whose feet slip!</VERS>\n\t\t\t<VERS vnumber=\"6\"> But the tents of robbers are peaceful, and those who provoke God are confident, who carry their god in their hands.</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"But now, ask the animals and they will teach you, or the birds of the sky and they will tell you.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Or speak to the earth and it will teach you, or let the fish of the sea declare to you.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Which of all these does not know that the hand of the LORD has done this,</VERS>\n\t\t\t<VERS vnumber=\"10\"> in whose hand is the life of every creature and the breath of all the human race.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Does not the ear test words, as the tongue tastes food?</VERS>\n\t\t\t<VERS vnumber=\"12\"> Is not wisdom found among the aged? Does not long life bring understanding?</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"With God are wisdom and power; counsel and understanding are his.</VERS>\n\t\t\t<VERS vnumber=\"14\"> If he tears down, it cannot be rebuilt; if he imprisons a person, there is no escape.</VERS>\n\t\t\t<VERS vnumber=\"15\"> If he holds back the waters, then they dry up; if he releases them, they destroy the land.</VERS>\n\t\t\t<VERS vnumber=\"16\"> With him are strength and prudence; both the one who goes astray and the one who misleads are his.</VERS>\n\t\t\t<VERS vnumber=\"17\"> He leads counselors away stripped and makes judges into fools.</VERS>\n\t\t\t<VERS vnumber=\"18\"> He loosens the bonds of kings and binds a loincloth around their waist.</VERS>\n\t\t\t<VERS vnumber=\"19\"> He leads priests away stripped and overthrows the potentates.</VERS>\n\t\t\t<VERS vnumber=\"20\"> He deprives the trusted advisers of speech and takes away the discernment of elders.</VERS>\n\t\t\t<VERS vnumber=\"21\"> He pours contempt on noblemen and disarms the powerful.</VERS>\n\t\t\t<VERS vnumber=\"22\"> He reveals the deep things of darkness, and brings deep shadows into the light.</VERS>\n\t\t\t<VERS vnumber=\"23\"> He makes nations great, and destroys them; he extends the boundaries of nations and disperses them.</VERS>\n\t\t\t<VERS vnumber=\"24\"> He deprives the leaders of the earth of their understanding; he makes them wander in a trackless desert waste.</VERS>\n\t\t\t<VERS vnumber=\"25\"> They grope about in darkness without light; he makes them stagger like drunkards.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"13\">\n\t\t\t<VERS vnumber=\"1\"> \"Indeed, my eyes have seen all this, my ears have heard and understood it.</VERS>\n\t\t\t<VERS vnumber=\"2\"> What you know, I know also; I am not inferior to you!</VERS>\n\t\t\t<VERS vnumber=\"3\"> But I wish to speak to the Almighty, and I desire to argue my case with God.</VERS>\n\t\t\t<VERS vnumber=\"4\"> But you, however, are inventors of lies; all of you are worthless physicians!</VERS>\n\t\t\t<VERS vnumber=\"5\"> If only you would keep completely silent! For you, that would be wisdom.</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"Listen now to my argument, and be attentive to my lips' contentions.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Will you speak wickedly on God's behalf? Will you speak deceitfully for him?</VERS>\n\t\t\t<VERS vnumber=\"8\"> Will you show him partiality? Will you argue the case for God?</VERS>\n\t\t\t<VERS vnumber=\"9\"> Would it turn out well if he would examine you? Or as one deceives a man would you deceive him?</VERS>\n\t\t\t<VERS vnumber=\"10\"> He would certainly rebuke you if you secretly showed partiality!</VERS>\n\t\t\t<VERS vnumber=\"11\"> Would not his splendor terrify you and the fear he inspires fall on you?</VERS>\n\t\t\t<VERS vnumber=\"12\"> Your maxims are proverbs of ashes; your defenses are defenses of clay.</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"Refrain from talking with me so that I may speak; then let come to me what may.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Why do I put myself in peril, and take my life in my hands?</VERS>\n\t\t\t<VERS vnumber=\"15\"> Even if he slays me, I will hope in him; I will surely defend my ways to his face!</VERS>\n\t\t\t<VERS vnumber=\"16\"> Moreover, this will become my deliverance, for no godless person would come before him.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Listen carefully to my words; let your ears be attentive to my explanation.</VERS>\n\t\t\t<VERS vnumber=\"18\"> See now, I have prepared my case; I know that I am right.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Who will contend with me? If anyone can, I will be silent and die.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Only in two things spare me, O God, and then I will not hide from your face:</VERS>\n\t\t\t<VERS vnumber=\"21\"> Remove your hand far from me and stop making me afraid with your terror.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Then call, and I will answer, or I will speak, and you respond to me.</VERS>\n\t\t\t<VERS vnumber=\"23\"> How many are my iniquities and sins? Show me my transgression and my sin.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Why do you hide your face and regard me as your enemy?</VERS>\n\t\t\t<VERS vnumber=\"25\"> Do you wish to torment a windblown leaf and chase after dry chaff?</VERS>\n\t\t\t<VERS vnumber=\"26\"> For you write down bitter things against me and cause me to inherit the sins of my youth.</VERS>\n\t\t\t<VERS vnumber=\"27\"> And you put my feet in the stocks and you watch all my movements; you put marks on the soles of my feet.</VERS>\n\t\t\t<VERS vnumber=\"28\"> So I waste away like something rotten, like a garment eaten by moths.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"14\">\n\t\t\t<VERS vnumber=\"1\"> \"Man, born of woman, lives but a few days, and they are full of trouble.</VERS>\n\t\t\t<VERS vnumber=\"2\"> He grows up like a flower and then withers away; he flees like a shadow, and does not remain.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Do you fix your eye on such a one? And do you bring me before you for judgment?</VERS>\n\t\t\t<VERS vnumber=\"4\"> Who can make a clean thing come from an unclean? No one!</VERS>\n\t\t\t<VERS vnumber=\"5\"> Since man's days are determined, the number of his months is under your control; you have set his limit and he cannot pass it.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Look away from him and let him desist, until he fulfills his time like a hired man.</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"But there is hope for a tree: If it is cut down, it will sprout again, and its new shoots will not fail.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Although its roots may grow old in the ground and its stump begins to die in the soil,</VERS>\n\t\t\t<VERS vnumber=\"9\"> at the scent of water it will flourish and put forth shoots like a new plant.</VERS>\n\t\t\t<VERS vnumber=\"10\"> But man dies and is powerless; he expires, and where is he?</VERS>\n\t\t\t<VERS vnumber=\"11\"> As water disappears from the sea, or a river drains away and dries up,</VERS>\n\t\t\t<VERS vnumber=\"12\"> so man lies down and does not rise; until the heavens are no more, they will not awake nor arise from their sleep.</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"O that you would hide me in Sheol, and conceal me till your anger has passed! O that you would set me a time and then remember me!</VERS>\n\t\t\t<VERS vnumber=\"14\"> If a man dies, will he live again? All the days of my hard service I will wait until my release comes.</VERS>\n\t\t\t<VERS vnumber=\"15\"> You will call and I, I will answer you; you will long for the creature you have made.</VERS>\n\t\t\t<VERS vnumber=\"16\"> \"Surely now you count my steps; then you would not mark my sin.</VERS>\n\t\t\t<VERS vnumber=\"17\"> My offenses would be sealed up in a bag; you would cover over my sin.</VERS>\n\t\t\t<VERS vnumber=\"18\"> But as a mountain falls away and crumbles, and as a rock will be removed from its place,</VERS>\n\t\t\t<VERS vnumber=\"19\"> as water wears away stones, and torrents wash away the soil, so you destroy man's hope.</VERS>\n\t\t\t<VERS vnumber=\"20\"> You overpower him once for all, and he departs; you change his appearance and send him away.</VERS>\n\t\t\t<VERS vnumber=\"21\"> If his sons are honored, he does not know it; if they are brought low, he does not see it.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Only his flesh has pain for himself, and he mourns for himself.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"15\">\n\t\t\t<VERS vnumber=\"1\"> Then Eliphaz the Temanite answered:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Does a wise man answer with blustery knowledge, or fill his belly with the east wind?</VERS>\n\t\t\t<VERS vnumber=\"3\"> Does he argue with useless talk, with words that have no value in them?</VERS>\n\t\t\t<VERS vnumber=\"4\"> But you even break off piety, and hinder meditation before God.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Your sin inspires your mouth; you choose the language of the crafty.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Your own mouth condemns you, not I; your own lips testify against you.</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"Were you the first man ever born? Were you brought forth before the hills?</VERS>\n\t\t\t<VERS vnumber=\"8\"> Do you listen in on God's secret council? Do you limit wisdom to yourself?</VERS>\n\t\t\t<VERS vnumber=\"9\"> What do you know that we don't know? What do you understand that we don't understand?</VERS>\n\t\t\t<VERS vnumber=\"10\"> The gray-haired and the aged are on our side, men far older than your father.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Are God's consolations too trivial for you; or a word spoken in gentleness to you?</VERS>\n\t\t\t<VERS vnumber=\"12\"> Why has your heart carried you away, and why do your eyes flash,</VERS>\n\t\t\t<VERS vnumber=\"13\"> when you turn your rage against God and allow such words to escape from your mouth?</VERS>\n\t\t\t<VERS vnumber=\"14\"> What is man that he should be pure, or one born of woman, that he should be righteous?</VERS>\n\t\t\t<VERS vnumber=\"15\"> If God places no trust in his holy ones, if even the heavens are not pure in his eyes,</VERS>\n\t\t\t<VERS vnumber=\"16\"> how much less man, who is abominable and corrupt, who drinks in evil like water!</VERS>\n\t\t\t<VERS vnumber=\"17\"> \"I will explain to you; listen to me, and what I have seen, I will declare,</VERS>\n\t\t\t<VERS vnumber=\"18\"> what wise men declare, hiding nothing, from the tradition of their ancestors,</VERS>\n\t\t\t<VERS vnumber=\"19\"> to whom alone the land was given when no foreigner passed among them.</VERS>\n\t\t\t<VERS vnumber=\"20\"> All his days the wicked man suffers torment, throughout the number of the years that are stored up for the tyrant.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Terrifying sounds fill his ears; in a time of peace marauders attack him.</VERS>\n\t\t\t<VERS vnumber=\"22\"> He does not expect to escape from darkness; he is marked for the sword;</VERS>\n\t\t\t<VERS vnumber=\"23\"> he wanders about, food for vultures; he knows that the day of darkness is at hand.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Distress and anguish terrify him; they prevail against him like a king ready to launch an attack,</VERS>\n\t\t\t<VERS vnumber=\"25\"> for he stretches out his hand against God, and vaunts himself against the Almighty,</VERS>\n\t\t\t<VERS vnumber=\"26\"> defiantly charging against him with a thick, strong shield!</VERS>\n\t\t\t<VERS vnumber=\"27\"> Because he covered his face with fat, and made his hips bulge with fat,</VERS>\n\t\t\t<VERS vnumber=\"28\"> he lived in ruined towns and in houses where no one lives, where they are ready to crumble into heaps.</VERS>\n\t\t\t<VERS vnumber=\"29\"> He will not grow rich, and his wealth will not endure, nor will his possessions spread over the land.</VERS>\n\t\t\t<VERS vnumber=\"30\"> He will not escape the darkness; a flame will wither his shoots and he will depart by the breath of God's mouth.</VERS>\n\t\t\t<VERS vnumber=\"31\"> Let him not trust in what is worthless, deceiving himself; for worthlessness will be his reward.</VERS>\n\t\t\t<VERS vnumber=\"32\"> Before his time he will be paid in full, and his branches will not flourish.</VERS>\n\t\t\t<VERS vnumber=\"33\"> Like a vine he will let his sour grapes fall, and like an olive tree he will shed his blossoms.</VERS>\n\t\t\t<VERS vnumber=\"34\"> For the company of the godless is barren, and fire consumes the tents of those who accept bribes.</VERS>\n\t\t\t<VERS vnumber=\"35\"> They conceive trouble and bring forth evil; their belly prepares deception.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"16\">\n\t\t\t<VERS vnumber=\"1\"> Then Job replied:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"I have heard many things like these before. What miserable comforters are you all!</VERS>\n\t\t\t<VERS vnumber=\"3\"> Will there be an end to your windy words? Or what provokes you that you answer?</VERS>\n\t\t\t<VERS vnumber=\"4\"> I also could speak like you, if you were in my place; I could pile up words against you and I could shake my head at you.</VERS>\n\t\t\t<VERS vnumber=\"5\"> But I would strengthen you with my words; comfort from my lips would bring you relief.</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"But if I speak, my pain is not relieved, and if I refrain from speaking, how much of it goes away?</VERS>\n\t\t\t<VERS vnumber=\"7\"> Surely now he has worn me out, you have devastated my entire household.</VERS>\n\t\t\t<VERS vnumber=\"8\"> You have seized me, and it has become a witness; my leanness has risen up against me and testifies against me.</VERS>\n\t\t\t<VERS vnumber=\"9\"> His anger has torn me and persecuted me; he has gnashed at me with his teeth; my adversary locks his eyes on me.</VERS>\n\t\t\t<VERS vnumber=\"10\"> People have opened their mouths against me, they have struck my cheek in scorn; they unite together against me.</VERS>\n\t\t\t<VERS vnumber=\"11\"> God abandons me to evil men, and throws me into the hands of wicked men.</VERS>\n\t\t\t<VERS vnumber=\"12\"> I was in peace, and he has shattered me. He has seized me by the neck and crushed me. He has made me his target;</VERS>\n\t\t\t<VERS vnumber=\"13\"> his archers surround me. Without pity he pierces my kidneys and pours out my gall on the ground.</VERS>\n\t\t\t<VERS vnumber=\"14\"> He breaks through against me, time and time again; he rushes against me like a warrior.</VERS>\n\t\t\t<VERS vnumber=\"15\"> I have sewed sackcloth on my skin, and buried my horn in the dust;</VERS>\n\t\t\t<VERS vnumber=\"16\"> my face is reddened because of weeping, and on my eyelids there is a deep darkness,</VERS>\n\t\t\t<VERS vnumber=\"17\"> although there is no violence in my hands and my prayer is pure.</VERS>\n\t\t\t<VERS vnumber=\"18\"> \"O earth, do not cover my blood, nor let there be a secret place for my cry.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Even now my witness is in heaven; my advocate is on high.</VERS>\n\t\t\t<VERS vnumber=\"20\"> My intercessor is my friend as my eyes pour out tears to God;</VERS>\n\t\t\t<VERS vnumber=\"21\"> and he contends with God on behalf of man as a man pleads for his friend.</VERS>\n\t\t\t<VERS vnumber=\"22\"> For the years that lie ahead are few, and then I will go on the way of no return.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"17\">\n\t\t\t<VERS vnumber=\"1\"> My spirit is broken, my days have faded out, the grave awaits me.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Surely mockery is with me; my eyes must dwell on their hostility.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Make then my pledge with you. Who else will put up security for me?</VERS>\n\t\t\t<VERS vnumber=\"4\"> Because you have closed their minds to understanding, therefore you will not exalt them.</VERS>\n\t\t\t<VERS vnumber=\"5\"> If a man denounces his friends for personal gain, the eyes of his children will fail.</VERS>\n\t\t\t<VERS vnumber=\"6\"> He has made me a byword to people, I am the one in whose face they spit.</VERS>\n\t\t\t<VERS vnumber=\"7\"> My eyes have grown dim with grief; my whole frame is but a shadow.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Upright men are appalled at this; the innocent man is troubled with the godless.</VERS>\n\t\t\t<VERS vnumber=\"9\"> But the righteous man holds to his way, and the one with clean hands grows stronger.</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"But turn, all of you, and come now! I will not find a wise man among you.</VERS>\n\t\t\t<VERS vnumber=\"11\"> My days have passed, my plans are shattered, even the desires of my heart.</VERS>\n\t\t\t<VERS vnumber=\"12\"> These men change night into day; they say, 'The light is near in the face of darkness.'</VERS>\n\t\t\t<VERS vnumber=\"13\"> If I hope for the grave to be my home, if I spread out my bed in darkness,</VERS>\n\t\t\t<VERS vnumber=\"14\"> If I cry to corruption, 'You are my father,' and to the worm, 'My Mother,' or 'My sister,'</VERS>\n\t\t\t<VERS vnumber=\"15\"> where then is my hope? And my hope, who sees it?</VERS>\n\t\t\t<VERS vnumber=\"16\"> Will it go down to the barred gates of death? Will we descend together into the dust?\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"18\">\n\t\t\t<VERS vnumber=\"1\"> Then Bildad the Shuhite answered:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"How long until you make an end of words? You must consider, and then we can talk.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Why should we be regarded as beasts, and considered stupid in your sight?</VERS>\n\t\t\t<VERS vnumber=\"4\"> You who tear yourself to pieces in your anger, will the earth be abandoned for your sake? Or will a rock be moved from its place?</VERS>\n\t\t\t<VERS vnumber=\"5\"> \"Yes, the lamp of the wicked is extinguished; his flame of fire does not shine.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The light in his tent grows dark; his lamp above him is extinguished.</VERS>\n\t\t\t<VERS vnumber=\"7\"> His vigorous steps are restricted, and his own counsel throws him down.</VERS>\n\t\t\t<VERS vnumber=\"8\"> For he has been thrown into a net by his feet and he wanders into a mesh.</VERS>\n\t\t\t<VERS vnumber=\"9\"> A trap seizes him by the heel; a snare grips him.</VERS>\n\t\t\t<VERS vnumber=\"10\"> A rope is hidden for him on the ground and a trap for him lies on the path.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Terrors frighten him on all sides and dog his every step.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Calamity is hungry for him, and misfortune is ready at his side.</VERS>\n\t\t\t<VERS vnumber=\"13\"> It eats away parts of his skin; the most terrible death devours his limbs.</VERS>\n\t\t\t<VERS vnumber=\"14\"> He is dragged from the security of his tent, and marched off to the king of terrors.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Fire resides in his tent; over his residence burning sulfur is scattered.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Below his roots dry up, and his branches wither above.</VERS>\n\t\t\t<VERS vnumber=\"17\"> His memory perishes from the earth, he has no name in the land.</VERS>\n\t\t\t<VERS vnumber=\"18\"> He is driven from light into darkness and is banished from the world.</VERS>\n\t\t\t<VERS vnumber=\"19\"> He has neither children nor descendants among his people, no survivor in those places he once stayed.</VERS>\n\t\t\t<VERS vnumber=\"20\"> People of the west are appalled at his fate; people of the east are seized with horror, saying,</VERS>\n\t\t\t<VERS vnumber=\"21\"> 'Surely such is the residence of an evil man; and this is the place of one who has not known God.'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"19\">\n\t\t\t<VERS vnumber=\"1\"> Then Job answered:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"How long will you torment me and crush me with your words?</VERS>\n\t\t\t<VERS vnumber=\"3\"> These ten times you have been reproaching me; you are not ashamed to attack me!</VERS>\n\t\t\t<VERS vnumber=\"4\"> But even if it were true that I have erred, my error remains solely my concern!</VERS>\n\t\t\t<VERS vnumber=\"5\"> If indeed you would exalt yourselves above me and plead my disgrace against me,</VERS>\n\t\t\t<VERS vnumber=\"6\"> know then that God has wronged me and encircled me with his net.</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"If I cry out, 'Violence!' I receive no answer; I cry for help, but there is no justice.</VERS>\n\t\t\t<VERS vnumber=\"8\"> He has blocked my way so I cannot pass, and has set darkness over my paths.</VERS>\n\t\t\t<VERS vnumber=\"9\"> He has stripped me of my honor and has taken the crown off my head.</VERS>\n\t\t\t<VERS vnumber=\"10\"> He tears me down on every side until I perish; he uproots my hope like one uproots a tree.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Thus his anger burns against me, and he considers me among his enemies.</VERS>\n\t\t\t<VERS vnumber=\"12\"> His troops advance together; they throw up a siege ramp against me, and they camp around my tent.</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"He has put my relatives far from me; my acquaintances only turn away from me.</VERS>\n\t\t\t<VERS vnumber=\"14\"> My kinsmen have failed me; my friends have forgotten me.</VERS>\n\t\t\t<VERS vnumber=\"15\"> My guests and my servant girls consider me a stranger; I am a foreigner in their eyes.</VERS>\n\t\t\t<VERS vnumber=\"16\"> I summon my servant, but he does not respond, even though I implore him with my own mouth.</VERS>\n\t\t\t<VERS vnumber=\"17\"> My breath is repulsive to my wife; I am loathsome to my brothers.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Even youngsters have scorned me; when I get up, they scoff at me.</VERS>\n\t\t\t<VERS vnumber=\"19\"> All my closest friends detest me; and those whom I love have turned against me.</VERS>\n\t\t\t<VERS vnumber=\"20\"> My bones stick to my skin and my flesh; I have escaped alive with only the skin of my teeth.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Have pity on me, my friends, have pity on me, for the hand of God has struck me.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Why do you pursue me like God does? Will you never be satiated with my flesh?</VERS>\n\t\t\t<VERS vnumber=\"23\"> \"O that my words were written down, O that they were written on a scroll,</VERS>\n\t\t\t<VERS vnumber=\"24\"> that with an iron chisel and with lead they were engraved in a rock forever!</VERS>\n\t\t\t<VERS vnumber=\"25\"> As for me, I know that my Redeemer lives, and that as the last he will stand upon the earth.</VERS>\n\t\t\t<VERS vnumber=\"26\"> And after my skin has been destroyed, yet in my flesh I will see God,</VERS>\n\t\t\t<VERS vnumber=\"27\"> whom I will see for myself, and whom my own eyes will behold, and not another. My heart grows faint within me.</VERS>\n\t\t\t<VERS vnumber=\"28\"> If you say, 'How we will pursue him, since the root of the trouble is found in him!'</VERS>\n\t\t\t<VERS vnumber=\"29\"> Fear the sword yourselves, for wrath brings the punishment by the sword, so that you may know that there is judgment.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"20\">\n\t\t\t<VERS vnumber=\"1\"> Then Zophar the Naamathite answered:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"This is why my troubled thoughts bring me back, because of my feelings within me.</VERS>\n\t\t\t<VERS vnumber=\"3\"> When I hear a reproof that dishonors me, then my understanding prompts me to answer.</VERS>\n\t\t\t<VERS vnumber=\"4\"> \"Surely you know that it has been from old, ever since humankind was placed on the earth,</VERS>\n\t\t\t<VERS vnumber=\"5\"> that the elation of the wicked is brief, the joy of the godless lasts but a moment.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Even though his stature reaches to the heavens and his head touches the clouds,</VERS>\n\t\t\t<VERS vnumber=\"7\"> he will perish forever, like his own excrement; those who used to see him will say, 'Where is he?'</VERS>\n\t\t\t<VERS vnumber=\"8\"> Like a dream he flies away, never again to be found, and like a vision of the night he is put to flight.</VERS>\n\t\t\t<VERS vnumber=\"9\"> People who had seen him will not see him again, and the place where he was will recognize him no longer.</VERS>\n\t\t\t<VERS vnumber=\"10\"> His sons must recompense the poor; his own hands must return his wealth.</VERS>\n\t\t\t<VERS vnumber=\"11\"> His bones were full of his youthful vigor, but that vigor will lie down with him in the dust.</VERS>\n\t\t\t<VERS vnumber=\"12\"> \"If evil is sweet in his mouth and he hides it under his tongue,</VERS>\n\t\t\t<VERS vnumber=\"13\"> if he retains it for himself and does not let it go, and holds it fast in his mouth,</VERS>\n\t\t\t<VERS vnumber=\"14\"> his food is turned sour in his stomach; it becomes the venom of serpents within him.</VERS>\n\t\t\t<VERS vnumber=\"15\"> The wealth that he consumed he vomits up, God will make him throw it out of his stomach.</VERS>\n\t\t\t<VERS vnumber=\"16\"> He sucks the poison of serpents; the fangs of a viper kill him.</VERS>\n\t\t\t<VERS vnumber=\"17\"> He will not look on the streams, the rivers, which are the torrents of honey and butter.</VERS>\n\t\t\t<VERS vnumber=\"18\"> He gives back the ill-gotten gain without assimilating it; he will not enjoy the wealth from his commerce.</VERS>\n\t\t\t<VERS vnumber=\"19\"> For he has oppressed the poor and abandoned them; he has seized a house which he did not build.</VERS>\n\t\t\t<VERS vnumber=\"20\"> For he knows no satisfaction in his appetite; he does not let anything he desires escape.</VERS>\n\t\t\t<VERS vnumber=\"21\"> \"Nothing is left for him to devour; that is why his prosperity does not last.</VERS>\n\t\t\t<VERS vnumber=\"22\"> In the fullness of his sufficiency, distress overtakes him. the full force of misery will come upon him.</VERS>\n\t\t\t<VERS vnumber=\"23\"> \"While he is filling his belly, God sends his burning anger against him, and rains down his blows upon him.</VERS>\n\t\t\t<VERS vnumber=\"24\"> If he flees from an iron weapon, then an arrow from a bronze bow pierces him.</VERS>\n\t\t\t<VERS vnumber=\"25\"> When he pulls it out and it comes out of his back, the gleaming point out of his liver, terrors come over him.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Total darkness waits to receive his treasures; a fire which has not been kindled will consume him and devour what is left in his tent.</VERS>\n\t\t\t<VERS vnumber=\"27\"> The heavens reveal his iniquity; the earth rises up against him.</VERS>\n\t\t\t<VERS vnumber=\"28\"> A flood will carry off his house, rushing waters on the day of God's wrath.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Such is the lot God allots the wicked, and the heritage of his appointment from God.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"21\">\n\t\t\t<VERS vnumber=\"1\"> Then Job answered:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Listen carefully to my words; let this be the consolation you offer me.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Bear with me and I will speak, and after I have spoken you may mock.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Is my complaint against a man? If so, why should I not be impatient?</VERS>\n\t\t\t<VERS vnumber=\"5\"> Look at me and be appalled; put your hands over your mouths.</VERS>\n\t\t\t<VERS vnumber=\"6\"> For, when I think about this, I am terrified and my body feels a shudder.</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"Why do the wicked go on living, grow old, even increase in power?</VERS>\n\t\t\t<VERS vnumber=\"8\"> Their children are firmly established in their presence, their offspring before their eyes.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Their houses are safe and without fear; and no rod of punishment from God is upon them.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Their bulls breed without fail; their cows calve and do not miscarry.</VERS>\n\t\t\t<VERS vnumber=\"11\"> They allow their children to run like a flock; their little ones dance about.</VERS>\n\t\t\t<VERS vnumber=\"12\"> They sing to the accompaniment of tambourine and harp, and make merry to the sound of the flute.</VERS>\n\t\t\t<VERS vnumber=\"13\"> They live out their years in prosperity and go down to the grave in peace.</VERS>\n\t\t\t<VERS vnumber=\"14\"> So they say to God, 'Turn away from us! We do not want to know your ways.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Who is the Almighty, that we should serve him? What would we gain if we were to pray to him?'</VERS>\n\t\t\t<VERS vnumber=\"16\"> But their prosperity is not their own doing. The counsel of the wicked is far from me!</VERS>\n\t\t\t<VERS vnumber=\"17\"> \"How often is the lamp of the wicked extinguished? How often does their misfortune come upon them? How often does God apportion pain to them in his anger?</VERS>\n\t\t\t<VERS vnumber=\"18\"> How often are they like straw before the wind, and like chaff swept away by a whirlwind?</VERS>\n\t\t\t<VERS vnumber=\"19\"> You may say, 'God stores up a man's punishment for his children!' Instead let him repay the man himself so that he may know it!</VERS>\n\t\t\t<VERS vnumber=\"20\"> Let his own eyes see his destruction; let him drink of the anger of the Almighty.</VERS>\n\t\t\t<VERS vnumber=\"21\"> For what is his interest in his home after his death, when the number of his months has been broken off?</VERS>\n\t\t\t<VERS vnumber=\"22\"> Can anyone teach God knowledge, since he judges those that are on high?</VERS>\n\t\t\t<VERS vnumber=\"23\"> \"One man dies in his full vigor, completely secure and prosperous,</VERS>\n\t\t\t<VERS vnumber=\"24\"> his body well nourished, and the marrow of his bones moist.</VERS>\n\t\t\t<VERS vnumber=\"25\"> And another man dies in bitterness of soul, never having tasted anything good.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Together they lie down in the dust, and worms cover over them both.</VERS>\n\t\t\t<VERS vnumber=\"27\"> \"Yes, I know what you are thinking, the schemes by which you would wrong me.</VERS>\n\t\t\t<VERS vnumber=\"28\"> For you say, 'Where now is the nobleman's house, and where are the tents in which the wicked lived?'</VERS>\n\t\t\t<VERS vnumber=\"29\"> Have you never questioned those who travel the roads? Do you not recognize their accounts,</VERS>\n\t\t\t<VERS vnumber=\"30\"> that the evil man is spared from the day of his misfortune, that he is delivered from the day of God's wrath?</VERS>\n\t\t\t<VERS vnumber=\"31\"> No one denounces his conduct to his face; no one repays him for what he has done.</VERS>\n\t\t\t<VERS vnumber=\"32\"> And when he is carried to the tombs, and watch is kept over the funeral mound,</VERS>\n\t\t\t<VERS vnumber=\"33\"> The clods of the torrent valley are sweet to him; behind him everybody follows in procession, and before him goes a countless throng.</VERS>\n\t\t\t<VERS vnumber=\"34\"> So how can you console me with your futile words? Nothing is left of your answers but deception!\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"22\">\n\t\t\t<VERS vnumber=\"1\"> Then Eliphaz the Temanite answered:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Is it to God that a strong man is of benefit? Is it to him that even a wise man is profitable?</VERS>\n\t\t\t<VERS vnumber=\"3\"> Is it of any special benefit to the Almighty that you should be righteous, or is it any gain to him that you make your ways blameless?</VERS>\n\t\t\t<VERS vnumber=\"4\"> Is it because of your piety that he rebukes you and goes to judgment with you?</VERS>\n\t\t\t<VERS vnumber=\"5\"> Is not your wickedness great and is there no end to your iniquity?</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"For you took pledges from your brothers for no reason, and you stripped the clothing from the naked.</VERS>\n\t\t\t<VERS vnumber=\"7\"> You gave the weary no water to drink and from the hungry you withheld food.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Although you were a powerful man, owning land, an honored man living on it,</VERS>\n\t\t\t<VERS vnumber=\"9\"> you sent widows away empty-handed, and the arms of the orphans you crushed.</VERS>\n\t\t\t<VERS vnumber=\"10\"> That is why snares surround you, and why sudden fear terrifies you,</VERS>\n\t\t\t<VERS vnumber=\"11\"> why it is so dark you cannot see, and why a flood of water covers you.</VERS>\n\t\t\t<VERS vnumber=\"12\"> \"Is not God on high in heaven? And see the lofty stars, how high they are!</VERS>\n\t\t\t<VERS vnumber=\"13\"> But you have said, 'What does God know? Does he judge through such deep darkness?</VERS>\n\t\t\t<VERS vnumber=\"14\"> Thick clouds are a veil for him, so he does not see us, as he goes back and forth in the vault of heaven.'</VERS>\n\t\t\t<VERS vnumber=\"15\"> Will you keep to the old path that evil men have walked,</VERS>\n\t\t\t<VERS vnumber=\"16\"> men who were carried off before their time, when the flood was poured out on their foundations?</VERS>\n\t\t\t<VERS vnumber=\"17\"> They were saying to God, 'Turn away from us,' and 'What can the Almighty do to us?'</VERS>\n\t\t\t<VERS vnumber=\"18\"> But it was he who filled their houses with good things, yet the counsel of the wicked was far from me.</VERS>\n\t\t\t<VERS vnumber=\"19\"> The righteous see their destruction and rejoice; the innocent mock them scornfully, saying,</VERS>\n\t\t\t<VERS vnumber=\"20\"> 'Surely our enemies are destroyed, and fire consumes their wealth.'</VERS>\n\t\t\t<VERS vnumber=\"21\"> \"Reconcile yourself with God, and be at peace with him; in this way your prosperity will be good.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Accept instruction from his mouth and store up his words in your heart.</VERS>\n\t\t\t<VERS vnumber=\"23\"> If you return to the Almighty, you will be built up; if you remove wicked behavior far from your tent,</VERS>\n\t\t\t<VERS vnumber=\"24\"> and throw your gold in the dust, your gold of Ophir among the rocks in the ravines,</VERS>\n\t\t\t<VERS vnumber=\"25\"> then the Almighty himself will be your gold, and the choicest silver for you.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Surely then you will delight yourself in the Almighty, and will lift up your face toward God.</VERS>\n\t\t\t<VERS vnumber=\"27\"> You will pray to him and he will hear you, and you will fulfill your vows to him.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Whatever you decide on a matter, it will be established for you, and light will shine on your ways.</VERS>\n\t\t\t<VERS vnumber=\"29\"> When people are brought low and you say 'Lift them up!' then he will save the downcast;</VERS>\n\t\t\t<VERS vnumber=\"30\"> he will deliver even someone who is not innocent, who will escape through the cleanness of your hands.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"23\">\n\t\t\t<VERS vnumber=\"1\"> Then Job answered:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Even today my complaint is still bitter; his hand is heavy despite my groaning.</VERS>\n\t\t\t<VERS vnumber=\"3\"> O that I knew where I might find him, that I could come to his place of residence!</VERS>\n\t\t\t<VERS vnumber=\"4\"> I would lay out my case before him and fill my mouth with arguments.</VERS>\n\t\t\t<VERS vnumber=\"5\"> I would know with what words he would answer me, and understand what he would say to me.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Would he contend with me with great power? No, he would only pay attention to me.</VERS>\n\t\t\t<VERS vnumber=\"7\"> There an upright person could present his case before him, and I would be delivered forever from my judge.</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"If I go to the east, he is not there, and to the west, yet I do not perceive him.</VERS>\n\t\t\t<VERS vnumber=\"9\"> In the north when he is at work, I do not see him; when he turns to the south, I see no trace of him.</VERS>\n\t\t\t<VERS vnumber=\"10\"> But he knows the pathway that I take; if he tested me, I would come forth like gold.</VERS>\n\t\t\t<VERS vnumber=\"11\"> My feet have followed his steps closely; I have kept to his way and have not turned aside.</VERS>\n\t\t\t<VERS vnumber=\"12\"> I have not departed from the commands of his lips; I have treasured the words of his mouth more than my allotted portion.</VERS>\n\t\t\t<VERS vnumber=\"13\"> But he is unchangeable, and who can change him? Whatever he has desired, he does.</VERS>\n\t\t\t<VERS vnumber=\"14\"> For he fulfills his decree against me, and many such things are his plans.</VERS>\n\t\t\t<VERS vnumber=\"15\"> That is why I am terrified in his presence; when I consider, I am afraid because of him.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Indeed, God has made my heart faint; the Almighty has terrified me.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Yet I have not been silent because of the darkness, because of the thick darkness that covered my face.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"24\">\n\t\t\t<VERS vnumber=\"1\"> \"Why are times not appointed by the Almighty? Why do those who know him not see his days?</VERS>\n\t\t\t<VERS vnumber=\"2\"> Men move boundary stones; they seize the flock and pasture them.</VERS>\n\t\t\t<VERS vnumber=\"3\"> They drive away the orphan's donkey; they take the widow's ox as a pledge.</VERS>\n\t\t\t<VERS vnumber=\"4\"> They turn the needy from the pathway, and the poor of the land hide themselves together.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Like wild donkeys in the desert they go out to their labor, seeking diligently for food; the wasteland provides food for them and for their children.</VERS>\n\t\t\t<VERS vnumber=\"6\"> They reap fodder in the field, and glean in the vineyard of the wicked.</VERS>\n\t\t\t<VERS vnumber=\"7\"> They spend the night naked because they lack clothing; they have no covering against the cold.</VERS>\n\t\t\t<VERS vnumber=\"8\"> They are soaked by mountain rains and huddle in the rocks because they lack shelter.</VERS>\n\t\t\t<VERS vnumber=\"9\"> The fatherless child is snatched from the breast, the infant of the poor is taken as a pledge.</VERS>\n\t\t\t<VERS vnumber=\"10\"> They go about naked, without clothing, and go hungry while they carry the sheaves.</VERS>\n\t\t\t<VERS vnumber=\"11\"> They press out the olive oil between the rows of olive trees; they tread the winepresses while they are thirsty.</VERS>\n\t\t\t<VERS vnumber=\"12\"> From the city the dying groan, and the wounded cry out for help, but God charges no one with wrongdoing.</VERS>\n\t\t\t<VERS vnumber=\"13\"> There are those who rebel against the light; they do not know its ways and they do not stay on its paths.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Before daybreak the murderer rises up; he kills the poor and the needy; in the night he is like a thief.</VERS>\n\t\t\t<VERS vnumber=\"15\"> And the eye of the adulterer watches for the twilight, thinking, 'No eye can see me,' and covers his face with a mask.</VERS>\n\t\t\t<VERS vnumber=\"16\"> In the dark the robber breaks into houses, but by day they shut themselves in; they do not know the light.</VERS>\n\t\t\t<VERS vnumber=\"17\"> For all of them, the morning is to them like deep darkness; they are friends with the terrors of darkness.</VERS>\n\t\t\t<VERS vnumber=\"18\">  \"You say, 'He is foam on the face of the waters; their portion of the land is cursed so that no one goes to their vineyard.</VERS>\n\t\t\t<VERS vnumber=\"19\"> The drought as well as the heat carry away the melted snow; so the grave takes away those who have sinned.</VERS>\n\t\t\t<VERS vnumber=\"20\"> The womb forgets him, the worm feasts on him, no longer will he be remembered. Like a tree, wickedness will be broken down.</VERS>\n\t\t\t<VERS vnumber=\"21\"> He preys on the barren and childless woman, and does not treat the widow well.</VERS>\n\t\t\t<VERS vnumber=\"22\"> But God drags off the mighty by his power; when God rises up against him, he has no faith in his life.</VERS>\n\t\t\t<VERS vnumber=\"23\"> God may let them rest in a feeling of security, but he is constantly watching all their ways.</VERS>\n\t\t\t<VERS vnumber=\"24\"> They are exalted for a little while, and then they are gone, they are brought low like all others, and gathered in, and like a head of grain they are cut off.'</VERS>\n\t\t\t<VERS vnumber=\"25\"> \"If this is not so, who can prove me a liar and reduce my words to nothing?\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"25\">\n\t\t\t<VERS vnumber=\"1\"> Then Bildad the Shuhite answered:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Dominion and awesome might belong to God; he establishes peace in his heights.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Can his armies be numbered? On whom does his light not rise?</VERS>\n\t\t\t<VERS vnumber=\"4\"> How then can a human being be righteous before God? How can one born of a woman be pure?</VERS>\n\t\t\t<VERS vnumber=\"5\"> If even the moon is not bright, and the stars are not pure as far as he is concerned,</VERS>\n\t\t\t<VERS vnumber=\"6\"> how much less a mortal man, who is but a maggot, a son of man, who is only a worm!\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"26\">\n\t\t\t<VERS vnumber=\"1\"> Then Job replied:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"How you have helped the powerless! How you have saved the person who has no strength!</VERS>\n\t\t\t<VERS vnumber=\"3\"> How you have advised the one without wisdom, and abundantly revealed your insight!</VERS>\n\t\t\t<VERS vnumber=\"4\"> To whom did you utter these words? And whose spirit has come forth from your mouth?</VERS>\n\t\t\t<VERS vnumber=\"5\"> \"The dead tremble, those beneath the waters and all that live in them.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The underworld is naked before God; the place of destruction lies uncovered.</VERS>\n\t\t\t<VERS vnumber=\"7\"> He spreads out the northern skies over empty space; he suspends the earth on nothing.</VERS>\n\t\t\t<VERS vnumber=\"8\"> He locks the waters in his clouds, and the clouds do not burst with the weight of them.</VERS>\n\t\t\t<VERS vnumber=\"9\"> He conceals the face of the full moon, shrouding it with his clouds.</VERS>\n\t\t\t<VERS vnumber=\"10\"> He marks out the horizon on the surface of the waters as a boundary between light and darkness.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The pillars of the heavens tremble and are amazed at his rebuke.</VERS>\n\t\t\t<VERS vnumber=\"12\"> By his power he stills the sea; by his wisdom he cut Rahab the great sea monster to pieces.</VERS>\n\t\t\t<VERS vnumber=\"13\"> By his breath the skies became fair; his hand pierced the fleeing serpent.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Indeed, these are but the outer fringes of his ways! How faint is the whisper we hear of him! But who can understand the thunder of his power?\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"27\">\n\t\t\t<VERS vnumber=\"1\"> And Job took up his discourse again:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"As surely as God lives, who has denied me justice, the Almighty, who has made my life bitter,</VERS>\n\t\t\t<VERS vnumber=\"3\"> for while my spirit is still in me, and the breath from God is in my nostrils,</VERS>\n\t\t\t<VERS vnumber=\"4\"> my lips will not speak wickedness, and my tongue will whisper no deceit.</VERS>\n\t\t\t<VERS vnumber=\"5\"> I will never declare that you three are in the right; until I die, I will not set aside my integrity!</VERS>\n\t\t\t<VERS vnumber=\"6\"> I will maintain my righteousness and never let it go; my conscience will not reproach me for as long as I live.</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"May my enemy be like the wicked, my adversary like the unrighteous.</VERS>\n\t\t\t<VERS vnumber=\"8\"> For what hope does the godless have when he is cut off, when God takes away his life?</VERS>\n\t\t\t<VERS vnumber=\"9\"> Does God listen to his cry when distress overtakes him?</VERS>\n\t\t\t<VERS vnumber=\"10\"> Will he find delight in the Almighty? Will he call out to God at all times?</VERS>\n\t\t\t<VERS vnumber=\"11\"> I will teach you about the power of God; What is on the Almighty's mind I will not conceal.</VERS>\n\t\t\t<VERS vnumber=\"12\"> If you yourselves have all seen this, Why in the world do you continue this meaningless talk?</VERS>\n\t\t\t<VERS vnumber=\"13\"> This is the portion of the wicked man allotted by God, the inheritance that evildoers receive from the Almighty.</VERS>\n\t\t\t<VERS vnumber=\"14\"> If his children increase, it is for the sword! His offspring never have enough to eat.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Those who survive him are buried by the plague, and their widows do not mourn for them.</VERS>\n\t\t\t<VERS vnumber=\"16\"> If he piles up silver like dust and stores up clothing like mounds of clay,</VERS>\n\t\t\t<VERS vnumber=\"17\"> what he stores up a righteous man will wear, and an innocent man will inherit his silver.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The house he builds is as fragile as a moth's cocoon, like a hut that a watchman has made.</VERS>\n\t\t\t<VERS vnumber=\"19\"> He goes to bed wealthy, but will do so no more. When he opens his eyes, it is all gone.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Terrors overwhelm him like a flood; at night a whirlwind carries him off.</VERS>\n\t\t\t<VERS vnumber=\"21\"> The east wind carries him away, and he is gone; it sweeps him out of his place.</VERS>\n\t\t\t<VERS vnumber=\"22\"> It hurls itself against him without pity as he flees headlong from its power.</VERS>\n\t\t\t<VERS vnumber=\"23\"> It claps its hands at him in derision and hisses him away from his place. III. Job's Search for Wisdom</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"28\">\n\t\t\t<VERS vnumber=\"1\"> \"Surely there is a mine for silver, and a place where gold is refined.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Iron is taken from the ground, and rock is poured out as copper.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Man puts an end to the darkness; he searches the farthest recesses for the ore in the deepest darkness.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Far from where people live he sinks a shaft, in places travelers have long forgotten, far from other people he dangles and sways.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The earth, from which food comes, is overturned below as though by fire;</VERS>\n\t\t\t<VERS vnumber=\"6\"> a place whose stones are sapphires and which contains dust of gold;</VERS>\n\t\t\t<VERS vnumber=\"7\"> a hidden path no bird of prey knows, no falcon's eye has spotted it.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Proud beasts have not set foot on it, and no lion has passed along it.</VERS>\n\t\t\t<VERS vnumber=\"9\"> On the flinty rock man has set to work with his hand; he has overturned mountains at their bases.</VERS>\n\t\t\t<VERS vnumber=\"10\"> He has cut out channels through the rocks; his eyes have spotted every precious thing.</VERS>\n\t\t\t<VERS vnumber=\"11\"> He has searched the sources of the rivers and what was hidden he has brought into the light.</VERS>\n\t\t\t<VERS vnumber=\"12\"> \"But wisdom, where can it be found? Where is the place of understanding?</VERS>\n\t\t\t<VERS vnumber=\"13\"> Mankind does not know its place; it cannot be found in the land of the living.</VERS>\n\t\t\t<VERS vnumber=\"14\"> The deep says, 'It is not with me.' And the sea says, 'It is not with me.'</VERS>\n\t\t\t<VERS vnumber=\"15\"> Fine gold cannot be given in exchange for it, nor can its price be weighed out in silver.</VERS>\n\t\t\t<VERS vnumber=\"16\"> It cannot be measured out for purchase with the gold of Ophir, with precious onyx or sapphires.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Neither gold nor crystal can be compared with it, nor can a vase of gold match its worth.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Of coral and jasper no mention will be made; the price of wisdom is more than pearls.</VERS>\n\t\t\t<VERS vnumber=\"19\"> The topaz of Cush cannot be compared with it; it cannot be purchased with pure gold.</VERS>\n\t\t\t<VERS vnumber=\"20\"> \"But wisdom, where does it come from? Where is the place of understanding?</VERS>\n\t\t\t<VERS vnumber=\"21\"> For it has been hidden from the eyes of every living creature, and from the birds of the sky it has been concealed.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Destruction and Death say, 'With our ears we have heard a rumor about where it can be found.'</VERS>\n\t\t\t<VERS vnumber=\"23\"> God understands the way to it, and he alone knows its place.</VERS>\n\t\t\t<VERS vnumber=\"24\"> For he looks to the ends of the earth and observes everything under the heavens.</VERS>\n\t\t\t<VERS vnumber=\"25\"> When he made the force of the wind and measured the waters with a gauge.</VERS>\n\t\t\t<VERS vnumber=\"26\"> When he imposed a limit for the rain, and a path for the thunderstorm,</VERS>\n\t\t\t<VERS vnumber=\"27\"> then he looked at wisdom and assessed its value; he established it and examined it closely.</VERS>\n\t\t\t<VERS vnumber=\"28\"> And he said to mankind, 'The fear of the LORD, that is wisdom, and to turn away from evil is understanding.'\" IV. Job's Concluding Soliloquy</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"29\">\n\t\t\t<VERS vnumber=\"1\"> Then Job continued his speech:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"O that I could be as I was in the months now gone, in the days when God watched over me,</VERS>\n\t\t\t<VERS vnumber=\"3\"> when he caused his lamp to shine upon my head, and by his light I walked through darkness;</VERS>\n\t\t\t<VERS vnumber=\"4\"> just as I was in my most productive time, when God's intimate friendship was experienced in my tent,</VERS>\n\t\t\t<VERS vnumber=\"5\"> when the Almighty was still with me and my children were around me;</VERS>\n\t\t\t<VERS vnumber=\"6\"> when my steps were bathed with butter and the rock poured out for me streams of olive oil!</VERS>\n\t\t\t<VERS vnumber=\"7\"> When I went out to the city gate and secured my seat in the public square,</VERS>\n\t\t\t<VERS vnumber=\"8\"> the young men would see me and step aside, and the old men would get up and remain standing;</VERS>\n\t\t\t<VERS vnumber=\"9\"> the chief men refrained from talking and covered their mouths with their hands;</VERS>\n\t\t\t<VERS vnumber=\"10\"> the voices of the nobles fell silent, and their tongues stuck to the roof of their mouths.</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"As soon as the ear heard these things, it blessed me, and when the eye saw them, it bore witness to me,</VERS>\n\t\t\t<VERS vnumber=\"12\"> for I rescued the poor who cried out for help, and the orphan who had no one to assist him;</VERS>\n\t\t\t<VERS vnumber=\"13\"> the blessing of the dying man descended on me, and I made the widow's heart rejoice;</VERS>\n\t\t\t<VERS vnumber=\"14\"> I put on righteousness and it clothed me, my just dealing was like a robe and a turban;</VERS>\n\t\t\t<VERS vnumber=\"15\"> I was eyes for the blind and feet for the lame;</VERS>\n\t\t\t<VERS vnumber=\"16\"> I was a father to the needy, and I investigated the case of the person I did not know;</VERS>\n\t\t\t<VERS vnumber=\"17\"> I broke the fangs of the wicked, and made him drop his prey from his teeth.</VERS>\n\t\t\t<VERS vnumber=\"18\"> \"Then I thought, 'I will die in my own home, my days as numerous as the grains of sand.</VERS>\n\t\t\t<VERS vnumber=\"19\"> My roots reach the water, and the dew lies on my branches all night long.</VERS>\n\t\t\t<VERS vnumber=\"20\"> My glory will always be fresh in me, and my bow ever new in my hand.'</VERS>\n\t\t\t<VERS vnumber=\"21\"> \"People listened to me and waited silently; they kept silent for my advice.</VERS>\n\t\t\t<VERS vnumber=\"22\"> After I had spoken, they did not respond; my words fell on them drop by drop.</VERS>\n\t\t\t<VERS vnumber=\"23\"> They waited for me as people wait for the rain, and they opened their mouths as for the spring rains.</VERS>\n\t\t\t<VERS vnumber=\"24\"> If I smiled at them, they hardly believed it; and they did not cause the light of my face to darken.</VERS>\n\t\t\t<VERS vnumber=\"25\"> I chose the way for them and sat as their chief; I lived like a king among his troops; I was like one who comforts mourners.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"30\">\n\t\t\t<VERS vnumber=\"1\"> \"But now they mock me, those who are younger than I, whose fathers I disdained too much to put with my sheep dogs.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Moreover, the strength of their hands, what use was it to me? Men whose strength had perished;</VERS>\n\t\t\t<VERS vnumber=\"3\"> gaunt with want and hunger, they would gnaw the parched land, in former time desolate and waste.</VERS>\n\t\t\t<VERS vnumber=\"4\"> By the brush they would gather herbs from the salt marshes, and the root of the broom tree was their food.</VERS>\n\t\t\t<VERS vnumber=\"5\"> They were banished from the community, people shouted at them like they would shout at thieves,</VERS>\n\t\t\t<VERS vnumber=\"6\"> so that they had to live in the dry stream beds, in the holes of the ground, and among the rocks.</VERS>\n\t\t\t<VERS vnumber=\"7\"> They brayed like animals among the bushes and were huddled together under the nettles.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Sons of senseless and nameless people, they were driven out of the land with whips.</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"And now I have become their taunt song; I have become a byword among them.</VERS>\n\t\t\t<VERS vnumber=\"10\"> They detest me and maintain their distance; they do not hesitate to spit in my face.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Because God has untied my tent cord and afflicted me, people throw off all restraint in my presence.</VERS>\n\t\t\t<VERS vnumber=\"12\"> On my right the young rabble rise up; they drive me from place to place, and build up siege ramps against me.</VERS>\n\t\t\t<VERS vnumber=\"13\"> They destroy my path; they succeed in destroying me without anyone assisting them.</VERS>\n\t\t\t<VERS vnumber=\"14\"> They come in as through a wide breach; amid the crash they come rolling in.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Terrors are turned loose on me; they drive away my honor like the wind, and like a cloud my deliverance has passed away.</VERS>\n\t\t\t<VERS vnumber=\"16\"> \"And now my soul pours itself out within me; days of suffering take hold of me.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Night pierces my bones; my gnawing pains never cease.</VERS>\n\t\t\t<VERS vnumber=\"18\"> With great power God grasps my clothing; he binds me like the collar of my tunic.</VERS>\n\t\t\t<VERS vnumber=\"19\"> He has flung me into the mud, and I have come to resemble dust and ashes.</VERS>\n\t\t\t<VERS vnumber=\"20\"> I cry out to you, but you do not answer me; I stand up, and you only look at me.</VERS>\n\t\t\t<VERS vnumber=\"21\"> You have become cruel to me; with the strength of your hand you attack me.</VERS>\n\t\t\t<VERS vnumber=\"22\"> You pick me up on the wind and make me ride on it; you toss me about in the storm.</VERS>\n\t\t\t<VERS vnumber=\"23\"> I know that you are bringing me to death, to the meeting place for all the living.</VERS>\n\t\t\t<VERS vnumber=\"24\"> \"Surely one does not stretch out his hand against a broken man when he cries for help in his distress.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Have I not wept for the unfortunate? Was not my soul grieved for the poor?</VERS>\n\t\t\t<VERS vnumber=\"26\"> But when I hoped for good, trouble came; when I expected light, then darkness came.</VERS>\n\t\t\t<VERS vnumber=\"27\"> My heart is in turmoil unceasingly; the days of my affliction confront me.</VERS>\n\t\t\t<VERS vnumber=\"28\"> I go about blackened, but not by the sun; in the assembly I stand up and cry for help.</VERS>\n\t\t\t<VERS vnumber=\"29\"> I have become a brother to jackals and a companion of ostriches.</VERS>\n\t\t\t<VERS vnumber=\"30\"> My skin has turned dark on me; my body is hot with fever.</VERS>\n\t\t\t<VERS vnumber=\"31\"> My harp is used for mourning and my flute for the sound of weeping.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"31\">\n\t\t\t<VERS vnumber=\"1\"> \"I made a covenant with my eyes; how then could I entertain thoughts against a virgin?</VERS>\n\t\t\t<VERS vnumber=\"2\"> What then would be one's lot from God above, one's heritage from the Almighty on high?</VERS>\n\t\t\t<VERS vnumber=\"3\"> Is it not misfortune for the unjust, and disaster for those who work iniquity?</VERS>\n\t\t\t<VERS vnumber=\"4\"> Does he not see my ways and count all my steps?</VERS>\n\t\t\t<VERS vnumber=\"5\"> If I have walked in falsehood, and if my foot has hastened to deceit,</VERS>\n\t\t\t<VERS vnumber=\"6\"> let him weigh me with honest scales; then God will discover my integrity.</VERS>\n\t\t\t<VERS vnumber=\"7\"> If my footsteps have strayed from the way, if my heart has gone after my eyes, or if anything has defiled my hands,</VERS>\n\t\t\t<VERS vnumber=\"8\"> then let me sow and let another eat, and let my crops be uprooted.</VERS>\n\t\t\t<VERS vnumber=\"9\"> If my heart has been enticed by a woman, and I have lain in wait at my neighbor's door,</VERS>\n\t\t\t<VERS vnumber=\"10\"> then let my wife turn the millstone for another man, and may other men have sexual relations with her.</VERS>\n\t\t\t<VERS vnumber=\"11\"> For I would have committed a shameful act, an iniquity to be judged.</VERS>\n\t\t\t<VERS vnumber=\"12\"> For it is a fire that devours even to Destruction, and it would uproot all my harvest.</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"If I have disregarded the right of my male servants or my female servants when they disputed with me,</VERS>\n\t\t\t<VERS vnumber=\"14\"> then what will I do when God confronts me in judgment; when he intervenes, how will I respond to him?</VERS>\n\t\t\t<VERS vnumber=\"15\"> Did not the one who made me in the womb make them? Did not the same one form us in the womb?</VERS>\n\t\t\t<VERS vnumber=\"16\"> If I have refused to give the poor what they desired, or caused the eyes of the widow to fail,</VERS>\n\t\t\t<VERS vnumber=\"17\"> If I ate my morsel of bread myself, and did not share any of it with orphans,</VERS>\n\t\t\t<VERS vnumber=\"18\"> but from my youth I raised the orphan like a father, and from my mother's womb I guided the widow!</VERS>\n\t\t\t<VERS vnumber=\"19\"> If I have seen anyone about to perish for lack of clothing, or a poor man without a coat,</VERS>\n\t\t\t<VERS vnumber=\"20\"> whose heart did not bless me as he warmed himself with the fleece of my sheep,</VERS>\n\t\t\t<VERS vnumber=\"21\"> if I have raised my hand to vote against the orphan, when I saw my support in the court,</VERS>\n\t\t\t<VERS vnumber=\"22\"> then let my arm fall from the shoulder, let my arm be broken off at the socket.</VERS>\n\t\t\t<VERS vnumber=\"23\"> For the calamity from God was a terror to me, and by reason of his majesty I was powerless.</VERS>\n\t\t\t<VERS vnumber=\"24\"> \"If I have put my confidence in gold or said to pure gold, 'You are my security!'</VERS>\n\t\t\t<VERS vnumber=\"25\"> if I have rejoiced because of the extent of my wealth, or because of the great wealth my hand had gained,</VERS>\n\t\t\t<VERS vnumber=\"26\"> if I looked at the sun when it was shining, and the moon advancing as a precious thing,</VERS>\n\t\t\t<VERS vnumber=\"27\"> so that my heart was secretly enticed, and my hand threw them a kiss from my mouth,</VERS>\n\t\t\t<VERS vnumber=\"28\"> then this also would be iniquity to be judged, for I would have been false to God above.</VERS>\n\t\t\t<VERS vnumber=\"29\"> If I have rejoiced over the misfortune of my enemy or exulted because calamity found him,</VERS>\n\t\t\t<VERS vnumber=\"30\"> I have not even permitted my mouth to sin by asking for his life through a curse,</VERS>\n\t\t\t<VERS vnumber=\"31\"> if the members of my household have never said, 'If only there were someone who has not been satisfied from Job's meat!',</VERS>\n\t\t\t<VERS vnumber=\"32\"> But no stranger had to spend the night outside, for I opened my doors to the traveler,</VERS>\n\t\t\t<VERS vnumber=\"33\"> if I have covered my transgressions as men do, by hiding iniquity in my heart,</VERS>\n\t\t\t<VERS vnumber=\"34\"> because I was terrified of the great multitude, and the contempt of families terrified me, so that I remained silent and would not go outdoors,</VERS>\n\t\t\t<VERS vnumber=\"35\"> \"If only I had someone to hear me! Here is my signature, let the Almighty answer me! If only I had an indictment that my accuser had written.</VERS>\n\t\t\t<VERS vnumber=\"36\"> Surely I would wear it proudly on my shoulder, I would bind it on me like a crown;</VERS>\n\t\t\t<VERS vnumber=\"37\"> I would give him an accounting of my steps; like a prince I would approach him.</VERS>\n\t\t\t<VERS vnumber=\"38\"> \"If my land cried out against me and all its furrows wept together,</VERS>\n\t\t\t<VERS vnumber=\"39\"> if I have eaten its produce without paying, or caused the death of its owners,</VERS>\n\t\t\t<VERS vnumber=\"40\"> then let thorns sprout up in place of wheat, and in place of barley, weeds!\" The words of Job are ended. V. The Speeches of Elihu</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"32\">\n\t\t\t<VERS vnumber=\"1\"> So these three men refused to answer Job further, because he was righteous in his own eyes. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Then Elihu son of Barakel the Buzite, of the family of Ram, became very angry. He was angry with Job for justifying himself rather than God.</VERS>\n\t\t\t<VERS vnumber=\"3\"> With Job's three friends he was also angry, because they could not find an answer, and so declared Job guilty.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Now Elihu had waited before speaking to Job, because the others were older than he was. </VERS>\n\t\t\t<VERS vnumber=\"5\"> But when Elihu saw that the three men had no further reply, he became very angry.</VERS>\n\t\t\t<VERS vnumber=\"6\"> So Elihu son of Barakel the Buzite spoke up: \"I am young, but you are elderly; that is why I was fearful, and afraid to explain to you what I know.</VERS>\n\t\t\t<VERS vnumber=\"7\"> I said to myself, 'Age should speak, and length of years should make wisdom known.'</VERS>\n\t\t\t<VERS vnumber=\"8\"> But it is a spirit in people, the breath of the Almighty, that makes them understand.</VERS>\n\t\t\t<VERS vnumber=\"9\"> It is not the aged who are wise, nor old men who understand what is right.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Therefore I say, 'Listen to me. I, even I, will explain what I know.'</VERS>\n\t\t\t<VERS vnumber=\"11\"> Look, I waited for you to speak; I listened closely to your wise thoughts, while you were searching for words.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Now I was paying you close attention, yet there was no one proving Job wrong, not one of you was answering his statements!</VERS>\n\t\t\t<VERS vnumber=\"13\"> So do not say, 'We have found wisdom! God will refute him, not man!'</VERS>\n\t\t\t<VERS vnumber=\"14\"> Job has not directed his words to me, and so I will not reply to him with your arguments.</VERS>\n\t\t\t<VERS vnumber=\"15\"> \"They are dismayed and cannot answer any more; they have nothing left to say.</VERS>\n\t\t\t<VERS vnumber=\"16\"> And I have waited. But because they do not speak, because they stand there and answer no more,</VERS>\n\t\t\t<VERS vnumber=\"17\"> I too will answer my part, I too will explain what I know.</VERS>\n\t\t\t<VERS vnumber=\"18\"> For I am full of words, and the spirit within me constrains me.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Inside I am like wine which has no outlet, like new wineskins ready to burst!</VERS>\n\t\t\t<VERS vnumber=\"20\"> I will speak, so that I may find relief; I will open my lips, so that I may answer.</VERS>\n\t\t\t<VERS vnumber=\"21\"> I will not show partiality to anyone, nor will I confer a title on any man.</VERS>\n\t\t\t<VERS vnumber=\"22\"> for I do not know how to give honorary titles, if I did, my Creator would quickly do away with me.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"33\">\n\t\t\t<VERS vnumber=\"1\"> \"But now, O Job, listen to my words, and hear everything I have to say!</VERS>\n\t\t\t<VERS vnumber=\"2\"> See now, I have opened my mouth; my tongue in my mouth has spoken.</VERS>\n\t\t\t<VERS vnumber=\"3\"> My words come from the uprightness of my heart, and my lips will utter knowledge sincerely.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The Spirit of God has made me, and the breath of the Almighty gives me life.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Reply to me, if you can; set your arguments in order before me and take your stand!</VERS>\n\t\t\t<VERS vnumber=\"6\"> Look, I am just like you in relation to God; I too have been molded from clay.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Therefore no fear of me should terrify you, nor should my pressure be heavy on you.</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"Indeed, you have said in my hearing (I heard the sound of the words!):</VERS>\n\t\t\t<VERS vnumber=\"9\">  'I am pure, without transgression; I am clean and have no iniquity.</VERS>\n\t\t\t<VERS vnumber=\"10\">  Yet God finds occasions with me; he regards me as his enemy!</VERS>\n\t\t\t<VERS vnumber=\"11\">  He puts my feet in shackles; he watches closely all my paths.'</VERS>\n\t\t\t<VERS vnumber=\"12\"> Now in this, you are not right, I answer you, for God is greater than a human being.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Why do you contend against him, that he does not answer all a person's words?</VERS>\n\t\t\t<VERS vnumber=\"14\"> \"For God speaks, the first time in one way, the second time in another, though a person does not perceive it.</VERS>\n\t\t\t<VERS vnumber=\"15\"> In a dream, a night vision, when deep sleep falls on people as they sleep in their beds.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Then he gives a revelation to people, and terrifies them with warnings,</VERS>\n\t\t\t<VERS vnumber=\"17\"> to turn a person from his sin, and to cover a person's pride.</VERS>\n\t\t\t<VERS vnumber=\"18\"> He spares a person's life from corruption, his very life from crossing over the river.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Or a person is chastened by pain on his bed, and with the continual strife of his bones,</VERS>\n\t\t\t<VERS vnumber=\"20\"> so that his life loathes food, and his soul rejects appetizing fare.</VERS>\n\t\t\t<VERS vnumber=\"21\"> His flesh wastes away from sight, and his bones, which were not seen, are easily visible.</VERS>\n\t\t\t<VERS vnumber=\"22\"> He draws near to the place of corruption, and his life to the messengers of death.</VERS>\n\t\t\t<VERS vnumber=\"23\"> If there is an angel beside him, one mediator out of a thousand, to tell a person what constitutes his uprightness;</VERS>\n\t\t\t<VERS vnumber=\"24\"> and if God is gracious to him and says, 'Spare him from going down to the place of corruption, I have found a ransom for him,'</VERS>\n\t\t\t<VERS vnumber=\"25\"> then his flesh is restored like a youth's; he returns to the days of his youthful vigor.</VERS>\n\t\t\t<VERS vnumber=\"26\"> He entreats God, and God delights in him, he sees God's face with rejoicing, and God restores to him his righteousness.</VERS>\n\t\t\t<VERS vnumber=\"27\"> That person sings to others, saying: 'I have sinned and falsified what is right, but I was not punished according to what I deserved.</VERS>\n\t\t\t<VERS vnumber=\"28\"> He redeemed my life from going down to the place of corruption, and my life sees the light!'</VERS>\n\t\t\t<VERS vnumber=\"29\"> \"Indeed, God does all these things, twice, three times, in his dealings with a person,</VERS>\n\t\t\t<VERS vnumber=\"30\"> to turn back his life from the place of corruption, that he may be enlightened with the light of life.</VERS>\n\t\t\t<VERS vnumber=\"31\"> Pay attention, Job, listen to me; be silent, and I will speak.</VERS>\n\t\t\t<VERS vnumber=\"32\"> If you have any words, reply to me; speak, for I want to justify you.</VERS>\n\t\t\t<VERS vnumber=\"33\"> If not, you listen to me; be silent, and I will teach you wisdom.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"34\">\n\t\t\t<VERS vnumber=\"1\"> Elihu answered:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Listen to my words, you wise men; hear me, you learned men.</VERS>\n\t\t\t<VERS vnumber=\"3\"> For the ear assesses words as the mouth tastes food.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Let us evaluate for ourselves what is right; let us come to know among ourselves what is good.</VERS>\n\t\t\t<VERS vnumber=\"5\"> For Job says, 'I am innocent, but God turns away my right.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Concerning my right, should I lie? My wound is incurable, although I am without transgression.'</VERS>\n\t\t\t<VERS vnumber=\"7\"> What man is like Job, who drinks derision like water!</VERS>\n\t\t\t<VERS vnumber=\"8\"> He goes about in company with evildoers, he goes along with wicked men.</VERS>\n\t\t\t<VERS vnumber=\"9\"> For he says, 'It does not profit a man when he makes his delight with God.'</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"Therefore, listen to me, you men of understanding. Far be it from God to do wickedness, from the Almighty to do evil.</VERS>\n\t\t\t<VERS vnumber=\"11\"> For he repays a person for his work, and according to the conduct of a person, he causes the consequences to find him.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Indeed, in truth, God does not act wickedly, and the Almighty does not pervert justice.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Who entrusted to him the earth? And who put him over the whole world?</VERS>\n\t\t\t<VERS vnumber=\"14\"> If God were to set his heart on it, and gather in his spirit and his breath,</VERS>\n\t\t\t<VERS vnumber=\"15\"> all flesh would perish together and human beings would return to dust.</VERS>\n\t\t\t<VERS vnumber=\"16\"> \"If you have understanding, listen to this, hear what I have to say.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Do you really think that one who hates justice can govern? And will you declare guilty the supremely righteous One,</VERS>\n\t\t\t<VERS vnumber=\"18\"> who says to a king, 'Worthless man' and to nobles, 'Wicked men,'</VERS>\n\t\t\t<VERS vnumber=\"19\"> who shows no partiality to princes, and does not take note of the rich more than the poor, because all of them are the work of his hands?</VERS>\n\t\t\t<VERS vnumber=\"20\"> In a moment they die, in the middle of the night, people are shaken and they pass away. The mighty are removed effortlessly.</VERS>\n\t\t\t<VERS vnumber=\"21\"> For his eyes are on the ways of an individual, he observes all a person's steps.</VERS>\n\t\t\t<VERS vnumber=\"22\"> There is no darkness, and no deep darkness, where evildoers can hide themselves.</VERS>\n\t\t\t<VERS vnumber=\"23\"> For he does not still consider a person, that he should come before God in judgment.</VERS>\n\t\t\t<VERS vnumber=\"24\"> He shatters the great without inquiry, and sets up others in their place.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Therefore, he knows their deeds, he overthrows them in the night and they are crushed.</VERS>\n\t\t\t<VERS vnumber=\"26\"> He strikes them for their wickedness, in a place where people can see,</VERS>\n\t\t\t<VERS vnumber=\"27\"> because they have turned away from following him, and have not understood any of his ways,</VERS>\n\t\t\t<VERS vnumber=\"28\"> so that they caused the cry of the poor to come before him, so that he hears the cry of the needy.</VERS>\n\t\t\t<VERS vnumber=\"29\"> But if God is quiet, who can condemn him? If he hides his face, then who can see him? Yet he is over the individual and the nation alike,</VERS>\n\t\t\t<VERS vnumber=\"30\"> so that the godless man should not rule, and not lay snares for the people.</VERS>\n\t\t\t<VERS vnumber=\"31\"> \"Has anyone said to God, 'I have endured chastisement, but I will not act wrongly any more.</VERS>\n\t\t\t<VERS vnumber=\"32\"> Teach me what I cannot see. If I have done evil, I will do so no more.'</VERS>\n\t\t\t<VERS vnumber=\"33\"> Is it your opinion that God should recompense it, because you reject this? But you must choose, and not I, so tell us what you know.</VERS>\n\t\t\t<VERS vnumber=\"34\"> Men of understanding say to me, any wise man listening to me says,</VERS>\n\t\t\t<VERS vnumber=\"35\"> that Job speaks without knowledge and his words are without understanding.</VERS>\n\t\t\t<VERS vnumber=\"36\"> But Job will be tested to the end, because his answers are like those of wicked men.</VERS>\n\t\t\t<VERS vnumber=\"37\"> For he adds transgression to his sin; in our midst he claps his hands, and multiplies his words against God.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"35\">\n\t\t\t<VERS vnumber=\"1\"> Then Elihu answered:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Do you think this to be just: when you say, 'My right before God.'</VERS>\n\t\t\t<VERS vnumber=\"3\"> But you say, 'What will it profit you,' and, 'What do I gain by not sinning?'</VERS>\n\t\t\t<VERS vnumber=\"4\"> I will reply to you, and to your friends with you.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Gaze at the heavens and see; consider the clouds, which are higher than you!</VERS>\n\t\t\t<VERS vnumber=\"6\"> If you sin, how does it affect God? If your transgressions are many, what does it do to him?</VERS>\n\t\t\t<VERS vnumber=\"7\"> If you are righteous, what do you give to God, or what does he receive from your hand?</VERS>\n\t\t\t<VERS vnumber=\"8\"> Your wickedness affects only a person like yourself, and your righteousness only other people.</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"People cry out because of the excess of oppression; they cry out for help because of the power of the mighty.</VERS>\n\t\t\t<VERS vnumber=\"10\"> But no one says, 'Where is God, my Creator, who gives songs in the night,</VERS>\n\t\t\t<VERS vnumber=\"11\"> who teaches us more than the wild animals of the earth, and makes us wiser than the birds of the sky?'</VERS>\n\t\t\t<VERS vnumber=\"12\"> Then they cry out, but he does not answer, because of the arrogance of the wicked.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Surely it is an empty cry, God does not hear it; the Almighty does not take notice of it.</VERS>\n\t\t\t<VERS vnumber=\"14\"> How much less, then, when you say that you do not perceive him, that the case is before him and you are waiting for him!</VERS>\n\t\t\t<VERS vnumber=\"15\"> And further, when you say that his anger does not punish, and that he does not know transgression!</VERS>\n\t\t\t<VERS vnumber=\"16\"> So Job opens his mouth to no purpose; without knowledge he multiplies words.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"36\">\n\t\t\t<VERS vnumber=\"1\"> Elihu said further:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Be patient with me a little longer and I will instruct you, for I still have words to speak on God's behalf.</VERS>\n\t\t\t<VERS vnumber=\"3\"> With my knowledge I will speak comprehensively, and to my Creator I will ascribe righteousness.</VERS>\n\t\t\t<VERS vnumber=\"4\"> For in truth, my words are not false; it is one complete in knowledge who is with you.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Indeed, God is mighty; and he does not despise people, he is mighty, and firm in his intent.</VERS>\n\t\t\t<VERS vnumber=\"6\"> He does not allow the wicked to live, but he gives justice to the poor.</VERS>\n\t\t\t<VERS vnumber=\"7\"> He does not take his eyes off the righteous; but with kings on the throne he seats the righteous and exalts them forever.</VERS>\n\t\t\t<VERS vnumber=\"8\"> But if they are bound in chains, and held captive by the cords of affliction,</VERS>\n\t\t\t<VERS vnumber=\"9\"> then he reveals to them what they have done, and their transgressions, that they were behaving proudly.</VERS>\n\t\t\t<VERS vnumber=\"10\"> And he reveals this for correction, and says that they must turn from evil.</VERS>\n\t\t\t<VERS vnumber=\"11\"> If they obey and serve him, they live out their days in prosperity and their years in pleasantness.</VERS>\n\t\t\t<VERS vnumber=\"12\"> But if they refuse to listen, they pass over the river of death, and expire without knowledge.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The godless at heart nourish anger, they do not cry out even when he binds them.</VERS>\n\t\t\t<VERS vnumber=\"14\"> They die in their youth, and their life ends among the male cultic prostitutes.</VERS>\n\t\t\t<VERS vnumber=\"15\"> He delivers the afflicted by their afflictions, he reveals himself to them by their suffering.</VERS>\n\t\t\t<VERS vnumber=\"16\"> And surely, he drew you from the mouth of distress, to a wide place, unrestricted, and to the comfort of your table filled with rich food.</VERS>\n\t\t\t<VERS vnumber=\"17\"> But now you are preoccupied with the judgment due the wicked, judgment and justice take hold of you.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Be careful that no one entices you with riches; do not let a large bribe turn you aside.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Would your wealth sustain you, so that you would not be in distress, even all your mighty efforts?</VERS>\n\t\t\t<VERS vnumber=\"20\"> Do not long for the cover of night to drag people away from their homes.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Take heed, do not turn to evil, for because of this you have been tested by affliction.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Indeed, God is exalted in his power; who is a teacher like him?</VERS>\n\t\t\t<VERS vnumber=\"23\"> Who has prescribed his ways for him? Or said to him, 'You have done what is wicked'?</VERS>\n\t\t\t<VERS vnumber=\"24\"> Remember to extol his work, which people have praised in song.</VERS>\n\t\t\t<VERS vnumber=\"25\"> All humanity has seen it; people gaze on it from afar.</VERS>\n\t\t\t<VERS vnumber=\"26\"> \"Yes, God is great, beyond our knowledge! The number of his years is unsearchable.</VERS>\n\t\t\t<VERS vnumber=\"27\"> He draws up drops of water; they distill the rain into its mist,</VERS>\n\t\t\t<VERS vnumber=\"28\"> which the clouds pour down and shower on humankind abundantly.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Who can understand the spreading of the clouds, the thunderings of his pavilion?</VERS>\n\t\t\t<VERS vnumber=\"30\"> See how he scattered his lightning about him; he has covered the depths of the sea.</VERS>\n\t\t\t<VERS vnumber=\"31\"> It is by these that he judges the nations and supplies food in abundance.</VERS>\n\t\t\t<VERS vnumber=\"32\"> With his hands he covers the lightning, and directs it against its target.</VERS>\n\t\t\t<VERS vnumber=\"33\">  His thunder announces the coming storm, the cattle also, concerning the storm's approach.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"37\">\n\t\t\t<VERS vnumber=\"1\"> At this also my heart pounds and leaps from its place.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Listen carefully to the thunder of his voice, to the rumbling that proceeds from his mouth.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Under the whole heaven he lets it go, even his lightning to the far corners of the earth.</VERS>\n\t\t\t<VERS vnumber=\"4\"> After that a voice roars; he thunders with an exalted voice, and he does not hold back his lightning bolts when his voice is heard.</VERS>\n\t\t\t<VERS vnumber=\"5\"> God thunders with his voice in marvelous ways; he does great things beyond our understanding.</VERS>\n\t\t\t<VERS vnumber=\"6\"> For to the snow he says, 'Fall to earth,' and to the torrential rains, 'Pour down.'</VERS>\n\t\t\t<VERS vnumber=\"7\"> He causes everyone to stop working, so that all people may know his work.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The wild animals go to their lairs, and in their dens they remain.</VERS>\n\t\t\t<VERS vnumber=\"9\"> A tempest blows out from its chamber, icy cold from the driving winds.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The breath of God produces ice, and the breadth of the waters freeze solid.</VERS>\n\t\t\t<VERS vnumber=\"11\"> He loads the clouds with moisture; he scatters his lightning through the clouds.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The clouds go round in circles, wheeling about according to his plans, to carry out all that he commands them over the face of the whole inhabited world.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Whether it is for punishment for his land, or whether it is for mercy, he causes it to find its mark.</VERS>\n\t\t\t<VERS vnumber=\"14\"> \"Pay attention to this, Job! Stand still and consider the wonders God works.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Do you know how God commands them, how he makes lightning flash in his storm cloud?</VERS>\n\t\t\t<VERS vnumber=\"16\"> Do you know about the balancing of the clouds, that wondrous activity of him who is perfect in knowledge?</VERS>\n\t\t\t<VERS vnumber=\"17\"> You, whose garments are hot when the earth is still because of the south wind,</VERS>\n\t\t\t<VERS vnumber=\"18\"> will you, with him, spread out the clouds, solid as a mirror of molten metal?</VERS>\n\t\t\t<VERS vnumber=\"19\"> Tell us what we should say to him. We cannot prepare a case because of the darkness.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Should he be informed that I want to speak? If a man speaks, surely he would be swallowed up!</VERS>\n\t\t\t<VERS vnumber=\"21\"> But now, the sun cannot be looked at, it is bright in the skies, after a wind passed and swept the clouds away.</VERS>\n\t\t\t<VERS vnumber=\"22\"> From the north he comes in golden splendor; around God is awesome majesty.</VERS>\n\t\t\t<VERS vnumber=\"23\"> As for the Almighty, we cannot attain to him! He is great in power, but justice and abundant righteousness he does not oppress.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Therefore people fear him, for he does not regard all the wise in heart.\" VI. The Divine Speeches</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"38\">\n\t\t\t<VERS vnumber=\"1\"> Then the LORD answered Job out of the whirlwind:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Who is this who darkens counsel with words without knowledge?</VERS>\n\t\t\t<VERS vnumber=\"3\"> Get ready for a difficult task like a man; I will question you and you will inform me!</VERS>\n\t\t\t<VERS vnumber=\"4\"> \"Where were you when I laid the foundation of the earth? Tell me, if you possess understanding!</VERS>\n\t\t\t<VERS vnumber=\"5\"> Who set its measurements, if you know, or who stretched a measuring line across it?</VERS>\n\t\t\t<VERS vnumber=\"6\"> On what were its bases set, or who laid its cornerstone,</VERS>\n\t\t\t<VERS vnumber=\"7\"> when the morning stars sang in chorus, and all the sons of God shouted for joy?</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"Who shut up the sea with doors when it burst forth, coming out of the womb,</VERS>\n\t\t\t<VERS vnumber=\"9\"> when I made the storm clouds its garment, and thick darkness its swaddling band,</VERS>\n\t\t\t<VERS vnumber=\"10\"> when I prescribed its limits, and set in place its bolts and doors,</VERS>\n\t\t\t<VERS vnumber=\"11\"> when I said, 'To here you may come and no farther, here your proud waves will be confined'?</VERS>\n\t\t\t<VERS vnumber=\"12\"> Have you ever in your life commanded the morning, or made the dawn know its place,</VERS>\n\t\t\t<VERS vnumber=\"13\"> that it might seize the corners of the earth, and shake the wicked out of it?</VERS>\n\t\t\t<VERS vnumber=\"14\"> The earth takes shape like clay under a seal; its features are dyed like a garment.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Then from the wicked the light is withheld, and the arm raised in violence is broken.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Have you gone to the springs that fill the sea, or walked about in the recesses of the deep?</VERS>\n\t\t\t<VERS vnumber=\"17\"> Have the gates of death been revealed to you? Have you seen the gates of deepest darkness?</VERS>\n\t\t\t<VERS vnumber=\"18\"> Have you considered the vast expanses of the earth? Tell me, if you know it all!</VERS>\n\t\t\t<VERS vnumber=\"19\"> \"In what direction does light reside, and darkness, where is its place,</VERS>\n\t\t\t<VERS vnumber=\"20\"> that you may take them to their borders and perceive the pathways to their homes?</VERS>\n\t\t\t<VERS vnumber=\"21\"> You know, for you were born before them; and the number of your days is great!</VERS>\n\t\t\t<VERS vnumber=\"22\"> Have you entered the storehouse of the snow, or seen the armory of the hail,</VERS>\n\t\t\t<VERS vnumber=\"23\"> which I reserve for the time of trouble, for the day of war and battle?</VERS>\n\t\t\t<VERS vnumber=\"24\"> In what direction is lightning dispersed, or the east winds scattered over the earth?</VERS>\n\t\t\t<VERS vnumber=\"25\"> Who carves out a channel for the heavy rains, and a path for the rumble of thunder,</VERS>\n\t\t\t<VERS vnumber=\"26\"> to cause it to rain on an uninhabited land, a desert where there are no human beings,</VERS>\n\t\t\t<VERS vnumber=\"27\"> to satisfy a devastated and desolate land, and to cause it to sprout with vegetation?</VERS>\n\t\t\t<VERS vnumber=\"28\"> Does the rain have a father, or who has fathered the drops of the dew?</VERS>\n\t\t\t<VERS vnumber=\"29\"> From whose womb does the ice emerge, and the frost from the sky, who gives birth to it,</VERS>\n\t\t\t<VERS vnumber=\"30\"> when the waters become hard like stone, when the surface of the deep is frozen solid?</VERS>\n\t\t\t<VERS vnumber=\"31\"> Can you tie the bands of the Pleiades, or release the cords of Orion?</VERS>\n\t\t\t<VERS vnumber=\"32\"> Can you lead out the constellations in their seasons, or guide the Bear with its cubs?</VERS>\n\t\t\t<VERS vnumber=\"33\"> Do you know the laws of the heavens, or can you set up their rule over the earth?</VERS>\n\t\t\t<VERS vnumber=\"34\"> Can you raise your voice to the clouds so that a flood of water covers you?</VERS>\n\t\t\t<VERS vnumber=\"35\"> Can you send out lightning bolts, and they go? Will they say to you, 'Here we are'?</VERS>\n\t\t\t<VERS vnumber=\"36\"> Who has put wisdom in the heart, or has imparted understanding to the mind?</VERS>\n\t\t\t<VERS vnumber=\"37\"> Who by wisdom can count the clouds, and who can tip over the water jars of heaven,</VERS>\n\t\t\t<VERS vnumber=\"38\"> when the dust hardens into a mass, and the clumps of earth stick together?</VERS>\n\t\t\t<VERS vnumber=\"39\"> \"Do you hunt prey for the lioness, and satisfy the appetite of the lions,</VERS>\n\t\t\t<VERS vnumber=\"40\"> when they crouch in their dens, when they wait in ambush in the thicket?</VERS>\n\t\t\t<VERS vnumber=\"41\"> Who prepares prey for the raven, when its young cry out to God and wander about for lack of food?</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"39\">\n\t\t\t<VERS vnumber=\"1\"> \"Are you acquainted with the way the mountain goats give birth? Do you watch as the wild deer give birth to their young?</VERS>\n\t\t\t<VERS vnumber=\"2\"> Do you count the months they must fulfill, and do you know the time they give birth?</VERS>\n\t\t\t<VERS vnumber=\"3\"> They crouch, they bear their young, they bring forth the offspring they have carried.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Their young grow strong, and grow up in the open; they go off, and do not return to them.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Who let the wild donkey go free? Who released the bonds of the donkey,</VERS>\n\t\t\t<VERS vnumber=\"6\"> to whom I appointed the steppe for its home, the salt wastes as its dwelling place?</VERS>\n\t\t\t<VERS vnumber=\"7\"> It scorns the tumult in the town; it does not hear the shouts of a driver.</VERS>\n\t\t\t<VERS vnumber=\"8\"> It ranges the hills as its pasture, and searches after every green plant.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Is the wild ox willing to be your servant? Will it spend the night at your feeding trough?</VERS>\n\t\t\t<VERS vnumber=\"10\"> Can you bind the wild ox to a furrow with its rope, will it till the valleys, following after you?</VERS>\n\t\t\t<VERS vnumber=\"11\"> Will you rely on it because its strength is great? Will you commit your labor to it?</VERS>\n\t\t\t<VERS vnumber=\"12\"> Can you count on it to bring in your grain, and gather the grain to your threshing floor?</VERS>\n\t\t\t<VERS vnumber=\"13\">  \"The wings of the ostrich flap with joy, but are they the pinions and plumage of a stork?</VERS>\n\t\t\t<VERS vnumber=\"14\"> For she leaves her eggs on the ground, and lets them be warmed on the soil.</VERS>\n\t\t\t<VERS vnumber=\"15\"> She forgets that a foot might crush them, or that a wild animal might trample them.</VERS>\n\t\t\t<VERS vnumber=\"16\"> She is harsh with her young, as if they were not hers; she is unconcerned about the uselessness of her labor.</VERS>\n\t\t\t<VERS vnumber=\"17\"> For God deprived her of wisdom, and did not impart understanding to her.</VERS>\n\t\t\t<VERS vnumber=\"18\"> But as soon as she springs up, she laughs at the horse and its rider.</VERS>\n\t\t\t<VERS vnumber=\"19\"> \"Do you give the horse its strength? Do you clothe its neck with a mane?</VERS>\n\t\t\t<VERS vnumber=\"20\"> Do you make it leap like a locust? Its proud neighing is terrifying!</VERS>\n\t\t\t<VERS vnumber=\"21\"> It paws the ground in the valley, exulting mightily, it goes out to meet the weapons.</VERS>\n\t\t\t<VERS vnumber=\"22\"> It laughs at fear and is not dismayed; it does not shy away from the sword.</VERS>\n\t\t\t<VERS vnumber=\"23\"> On it the quiver rattles; the lance and javelin flash.</VERS>\n\t\t\t<VERS vnumber=\"24\"> In excitement and impatience it consumes the ground; it cannot stand still when the trumpet is blown.</VERS>\n\t\t\t<VERS vnumber=\"25\"> At the sound of the trumpet, it says, 'Aha!' And from a distance it catches the scent of battle, the thunderous shouting of commanders, and the battle cries.</VERS>\n\t\t\t<VERS vnumber=\"26\"> \"Is it by your understanding that the hawk soars, and spreads its wings toward the south?</VERS>\n\t\t\t<VERS vnumber=\"27\"> Is it at your command that the eagle soars, and builds its nest on high?</VERS>\n\t\t\t<VERS vnumber=\"28\"> It lives on a rock and spends the night there, on a rocky crag and a fortress.</VERS>\n\t\t\t<VERS vnumber=\"29\"> From there it spots its prey, its eyes gaze intently from a distance.</VERS>\n\t\t\t<VERS vnumber=\"30\"> And its young ones devour the blood, and where the dead carcasses are, there it is.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"40\">\n\t\t\t<VERS vnumber=\"1\"> Then the LORD answered Job:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Will the one who contends with the Almighty correct him? Let the person who accuses God give him an answer!\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> Then Job answered the LORD:</VERS>\n\t\t\t<VERS vnumber=\"4\"> \"Indeed, I am completely unworthy, how could I reply to you? I put my hand over my mouth to silence myself.</VERS>\n\t\t\t<VERS vnumber=\"5\"> I have spoken once, but I cannot answer; twice, but I will say no more.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> Then the LORD answered Job from the whirlwind:</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"Get ready for a difficult task like a man. I will question you and you will inform me!</VERS>\n\t\t\t<VERS vnumber=\"8\"> Would you indeed annul my justice? Would you declare me guilty so that you might be right?</VERS>\n\t\t\t<VERS vnumber=\"9\"> Do you have an arm as powerful as God's, and can you thunder with a voice like his?</VERS>\n\t\t\t<VERS vnumber=\"10\"> Adorn yourself, then, with majesty and excellency, and clothe yourself with glory and honor!</VERS>\n\t\t\t<VERS vnumber=\"11\"> Scatter abroad the abundance of your anger. Look at every proud man and bring him low;</VERS>\n\t\t\t<VERS vnumber=\"12\"> Look at every proud man and abase him; crush the wicked on the spot!</VERS>\n\t\t\t<VERS vnumber=\"13\"> Hide them in the dust together, imprison them in the grave.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Then I myself will acknowledge to you that your own right hand can save you.</VERS>\n\t\t\t<VERS vnumber=\"15\"> \"Look now at Behemoth, which I made as I made you; it eats grass like the ox.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Look at its strength in its loins, and its power in the muscles of its belly.</VERS>\n\t\t\t<VERS vnumber=\"17\"> It makes its tail stiff like a cedar, the sinews of its thighs are tightly wound.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Its bones are tubes of bronze, its limbs like bars of iron.</VERS>\n\t\t\t<VERS vnumber=\"19\"> It ranks first among the works of God, the One who made it has furnished it with a sword.</VERS>\n\t\t\t<VERS vnumber=\"20\"> For the hills bring it food, where all the wild animals play.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Under the lotus trees it lies, in the secrecy of the reeds and the marsh.</VERS>\n\t\t\t<VERS vnumber=\"22\"> The lotus trees conceal it in their shadow; the poplars by the stream conceal it.</VERS>\n\t\t\t<VERS vnumber=\"23\"> If the river rages, it is not disturbed, it is secure, though the Jordan should surge up to its mouth.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Can anyone catch it by its eyes, or pierce its nose with a snare?</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"41\">\n\t\t\t<VERS vnumber=\"1\">  \"Can you pull in Leviathan with a hook, and tie down its tongue with a rope?</VERS>\n\t\t\t<VERS vnumber=\"2\"> Can you put a cord through its nose, or pierce its jaw with a hook?</VERS>\n\t\t\t<VERS vnumber=\"3\"> Will it make numerous supplications to you, will it speak to you with tender words?</VERS>\n\t\t\t<VERS vnumber=\"4\"> Will it make a pact with you, so you could take it as your slave for life?</VERS>\n\t\t\t<VERS vnumber=\"5\"> Can you play with it, like a bird, or tie it on a leash for your girls?</VERS>\n\t\t\t<VERS vnumber=\"6\"> Will partners bargain for it? Will they divide it up among the merchants?</VERS>\n\t\t\t<VERS vnumber=\"7\"> Can you fill its hide with harpoons or its head with fishing spears?</VERS>\n\t\t\t<VERS vnumber=\"8\"> If you lay your hand on it, you will remember the fight, and you will never do it again!</VERS>\n\t\t\t<VERS vnumber=\"9\">  See, his expectation is wrong, he is laid low even at the sight of it.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Is it not fierce when it is awakened? Who is he, then, who can stand before it?</VERS>\n\t\t\t<VERS vnumber=\"11\"> (Who has confronted me that I should repay? Everything under heaven belongs to me!)</VERS>\n\t\t\t<VERS vnumber=\"12\"> I will not keep silent about its limbs, and the extent of its might, and the grace of its arrangement.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Who can uncover its outer covering? Who can penetrate to the inside of its armor?</VERS>\n\t\t\t<VERS vnumber=\"14\"> Who can open the doors of its mouth? Its teeth all around are fearsome.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Its back has rows of shields, shut up closely together as with a seal;</VERS>\n\t\t\t<VERS vnumber=\"16\"> each one is so close to the next that no air can come between them.</VERS>\n\t\t\t<VERS vnumber=\"17\"> They lock tightly together, one to the next; they cling together and cannot be separated.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Its snorting throws out flashes of light; its eyes are like the red glow of dawn.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Out of its mouth go flames, sparks of fire shoot forth!</VERS>\n\t\t\t<VERS vnumber=\"20\"> Smoke streams from its nostrils as from a boiling pot over burning rushes.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Its breath sets coals ablaze and a flame shoots from its mouth.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Strength lodges in its neck, and despair runs before it.</VERS>\n\t\t\t<VERS vnumber=\"23\"> The folds of its flesh are tightly joined; they are firm on it, immovable.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Its heart is hard as rock, hard as a lower millstone.</VERS>\n\t\t\t<VERS vnumber=\"25\"> When it rises up, the mighty are terrified, at its thrashing about they withdraw.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Whoever strikes it with a sword will have no effect, nor with the spear, arrow, or dart.</VERS>\n\t\t\t<VERS vnumber=\"27\"> It regards iron as straw and bronze as rotten wood.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Arrows do not make it flee; slingstones become like chaff to it.</VERS>\n\t\t\t<VERS vnumber=\"29\"> A club is counted as a piece of straw; it laughs at the rattling of the lance.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Its underparts are the sharp points of potsherds, it leaves its mark in the mud like a threshing sledge.</VERS>\n\t\t\t<VERS vnumber=\"31\"> It makes the deep boil like a cauldron and stirs up the sea like a pot of ointment,</VERS>\n\t\t\t<VERS vnumber=\"32\"> It leaves a glistening wake behind it; one would think the deep had a head of white hair.</VERS>\n\t\t\t<VERS vnumber=\"33\"> The likes of it is not on earth, a creature without fear.</VERS>\n\t\t\t<VERS vnumber=\"34\"> It looks on every haughty being; it is king over all that are proud.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"42\">\n\t\t\t<VERS vnumber=\"1\"> Then Job answered the LORD:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"I know that you can do all things; no purpose of yours can be thwarted;</VERS>\n\t\t\t<VERS vnumber=\"3\"> you asked, 'Who is this who darkens counsel without knowledge?' But I have declared without understanding things too wonderful for me to know.</VERS>\n\t\t\t<VERS vnumber=\"4\"> You said, 'Pay attention, and I will speak; I will question you, and you will answer me.'</VERS>\n\t\t\t<VERS vnumber=\"5\"> I had heard of you by the hearing of the ear, but now my eye has seen you.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Therefore I despise myself, and I repent in dust and ashes! VII. The Epilogue</VERS>\n\t\t\t<VERS vnumber=\"7\"> After the LORD had spoken these things to Job, he said to Eliphaz the Temanite, \"My anger is stirred up against you and your two friends, because you have not spoken about me what is right, as my servant Job has. </VERS>\n\t\t\t<VERS vnumber=\"8\"> So now take seven bulls and seven rams and go to my servant Job and offer a burnt offering for yourselves. And my servant Job will intercede for you, and I will respect him, so that I do not deal with you according to your folly, because you have not spoken about me what is right, as my servant Job has.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> So they went, Eliphaz the Temanite, Bildad the Shuhite, and Zophar the Naamathite, and did just as the LORD had told them; and the LORD had respect for Job.</VERS>\n\t\t\t<VERS vnumber=\"10\"> So the LORD restored what Job had lost after he prayed for his friends, and the LORD doubled all that had belonged to Job. </VERS>\n\t\t\t<VERS vnumber=\"11\"> So they came to him, all his brothers and sisters and all who had known him before, and they dined with him in his house. They comforted him and consoled him for all the trouble the LORD had brought on him, and each one gave him a piece of silver and a gold ring.</VERS>\n\t\t\t<VERS vnumber=\"12\"> So the LORD blessed the second part of Job's life more than the first. He had 14,000 sheep, 6,000 camels, 1,000 yoke of oxen, and 1,000 female donkeys.</VERS>\n\t\t\t<VERS vnumber=\"13\"> And he also had seven sons and three daughters. </VERS>\n\t\t\t<VERS vnumber=\"14\"> The first daughter he named Jemimah, the second Keziah, and the third Keren-Happuch.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Nowhere in all the land could women be found who were as beautiful as Job's daughters, and their father granted them an inheritance alongside their brothers.</VERS>\n\t\t\t<VERS vnumber=\"16\"> After this Job lived 140 years; he saw his children and their children to the fourth generation.</VERS>\n\t\t\t<VERS vnumber=\"17\"> And so Job died, old and full of days.</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"19\" bname=\"Psalm\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> How blessed is the one who does not follow the advice of the wicked, or stand in the pathway with sinners, or sit in the assembly of scoffers!</VERS>\n\t\t\t<VERS vnumber=\"2\"> Instead he finds pleasure in obeying the LORD's commands; he meditates on his commands day and night.</VERS>\n\t\t\t<VERS vnumber=\"3\"> He is like a tree planted by flowing streams; it yields its fruit at the proper time, and its leaves never fall off. He succeeds in everything he attempts.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Not so with the wicked! Instead they are like wind-driven chaff.</VERS>\n\t\t\t<VERS vnumber=\"5\"> For this reason the wicked cannot withstand judgment, nor can sinners join the assembly of the godly.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Certainly the LORD guards the way of the godly, but the way of the wicked ends in destruction.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> Why do the nations rebel? Why are the countries devising plots that will fail?</VERS>\n\t\t\t<VERS vnumber=\"2\"> The kings of the earth form a united front; the rulers collaborate against the LORD and his anointed king.</VERS>\n\t\t\t<VERS vnumber=\"3\"> They say, \"Let's tear off the shackles they've put on us! Let's free ourselves from their ropes!\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> The one enthroned in heaven laughs in disgust; the Lord taunts them.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Then he angrily speaks to them and terrifies them in his rage, saying,</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"I myself have installed my king on Zion, my holy hill.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> The king says, \"I will announce the LORD'S decree. He said to me: 'You are my son! This very day I have become your father!</VERS>\n\t\t\t<VERS vnumber=\"8\"> Ask me, and I will give you the nations as your inheritance, the ends of the earth as your personal property.</VERS>\n\t\t\t<VERS vnumber=\"9\"> You will break them with an iron scepter; you will smash them like a potter's jar!'\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> So now, you kings, do what is wise; you rulers of the earth, submit to correction!</VERS>\n\t\t\t<VERS vnumber=\"11\"> Serve the LORD in fear! Repent in terror!</VERS>\n\t\t\t<VERS vnumber=\"12\"> Give sincere homage! Otherwise he will be angry, and you will die because of your behavior, when his anger quickly ignites. How blessed are all who take shelter in him!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> [A psalm of David, written when he fled from his son Absalom.] LORD, how numerous are my enemies! Many attack me.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Many say about me, \"God will not deliver him.\" (Selah)</VERS>\n\t\t\t<VERS vnumber=\"3\"> But you, LORD, are a shield that protects me; you are my glory and the one who restores me.</VERS>\n\t\t\t<VERS vnumber=\"4\"> To the LORD I cried out, and he answered me from his holy hill. (Selah)</VERS>\n\t\t\t<VERS vnumber=\"5\"> I rested and slept; I awoke, for the LORD protects me.</VERS>\n\t\t\t<VERS vnumber=\"6\"> I am not afraid of the multitude of people who attack me from all directions.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Rise up, LORD! Deliver me, my God! Yes, you will strike all my enemies on the jaw; you will break the teeth of the wicked.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The LORD delivers; you show favor to your people. (Selah)</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director, to be accompanied by stringed instruments; a psalm of David.] When I call out, answer me, O God who vindicates me! Though I am hemmed in, you will lead me into a wide, open place. Have mercy on me and respond to my prayer!</VERS>\n\t\t\t<VERS vnumber=\"2\"> You men, how long will you try to turn my honor into shame? How long will you love what is worthless and search for what is deceptive? (Selah)</VERS>\n\t\t\t<VERS vnumber=\"3\"> Realize that the LORD shows the godly special favor; the LORD responds when I cry out to him.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Tremble with fear and do not sin! Meditate as you lie in bed, and repent of your ways! (Selah)</VERS>\n\t\t\t<VERS vnumber=\"5\"> Offer the prescribed sacrifices and trust in the LORD!</VERS>\n\t\t\t<VERS vnumber=\"6\"> Many say, \"Who can show us anything good?\" Smile upon us, LORD!</VERS>\n\t\t\t<VERS vnumber=\"7\"> You make me happier than those who have abundant grain and wine.</VERS>\n\t\t\t<VERS vnumber=\"8\"> I will lie down and sleep peacefully, for you, LORD, make me safe and secure.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"5\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director, to be accompanied by wind instruments; a psalm of David.] Listen to what I say, LORD! Carefully consider my complaint!</VERS>\n\t\t\t<VERS vnumber=\"2\"> Pay attention to my cry for help, my king and my God, for I am praying to you!</VERS>\n\t\t\t<VERS vnumber=\"3\"> LORD, in the morning you will hear me; in the morning I will present my case to you and then wait expectantly for an answer.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Certainly you are not a God who approves of evil; evil people cannot dwell with you.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Arrogant people cannot stand in your presence; you hate all who behave wickedly.</VERS>\n\t\t\t<VERS vnumber=\"6\"> You destroy liars; the LORD despises violent and deceitful people.</VERS>\n\t\t\t<VERS vnumber=\"7\"> But as for me, because of your great faithfulness I will enter your house; I will bow down toward your holy temple as I worship you.</VERS>\n\t\t\t<VERS vnumber=\"8\"> LORD, lead me in your righteousness because of those who wait to ambush me, remove the obstacles in the way in which you are guiding me!</VERS>\n\t\t\t<VERS vnumber=\"9\"> For they do not speak the truth; their stomachs are like the place of destruction, their throats like an open grave, their tongues like a steep slope leading into it.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Condemn them, O God! May their own schemes be their downfall! Drive them away because of their many acts of insurrection, for they have rebelled against you.</VERS>\n\t\t\t<VERS vnumber=\"11\"> But may all who take shelter in you be happy! May they continually shout for joy! Shelter them so that those who are loyal to you may rejoice!</VERS>\n\t\t\t<VERS vnumber=\"12\"> Certainly you reward the godly, LORD. Like a shield you protect them in your good favor.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"6\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director, to be accompanied by stringed instruments, according to the sheminith style; a psalm of David.] LORD, do not rebuke me in your anger! Do not discipline me in your raging fury!</VERS>\n\t\t\t<VERS vnumber=\"2\"> Have mercy on me, LORD, for I am frail! Heal me, LORD, for my bones are shaking!</VERS>\n\t\t\t<VERS vnumber=\"3\"> I am absolutely terrified, and you, LORD, how long will this continue?</VERS>\n\t\t\t<VERS vnumber=\"4\"> Relent, LORD, rescue me! Deliver me because of your faithfulness!</VERS>\n\t\t\t<VERS vnumber=\"5\"> For no one remembers you in the realm of death, In Sheol who gives you thanks?</VERS>\n\t\t\t<VERS vnumber=\"6\"> I am exhausted as I groan; all night long I drench my bed in tears; my tears saturate the cushion beneath me.</VERS>\n\t\t\t<VERS vnumber=\"7\"> My eyes grow dim from suffering; they grow weak because of all my enemies.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Turn back from me, all you who behave wickedly, for the LORD has heard the sound of my weeping!</VERS>\n\t\t\t<VERS vnumber=\"9\"> The LORD has heard my appeal for mercy; the LORD has accepted my prayer.</VERS>\n\t\t\t<VERS vnumber=\"10\"> May all my enemies be humiliated and absolutely terrified! May they turn back and be suddenly humiliated!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"7\">\n\t\t\t<VERS vnumber=\"1\"> [A musical composition by David, which he sang to the LORD concerning a Benjaminite named Cush.] O LORD my God, in you I have taken shelter. Deliver me from all who chase me! Rescue me!</VERS>\n\t\t\t<VERS vnumber=\"2\"> Otherwise they will rip me to shreds like a lion; they will tear me to bits and no one will be able to rescue me.</VERS>\n\t\t\t<VERS vnumber=\"3\"> O LORD my God, if I have done what they say, or am guilty of unjust actions,</VERS>\n\t\t\t<VERS vnumber=\"4\"> or have wronged my ally, or helped his lawless enemy,</VERS>\n\t\t\t<VERS vnumber=\"5\"> may an enemy relentlessly chase me and catch me; may he trample me to death and leave me lying dishonored in the dust. (Selah)</VERS>\n\t\t\t<VERS vnumber=\"6\"> Stand up angrily, LORD! Rise up with raging fury against my enemies! Wake up for my sake and execute the judgment you have decreed for them!</VERS>\n\t\t\t<VERS vnumber=\"7\"> The countries are assembled all around you; take once more your rightful place over them!</VERS>\n\t\t\t<VERS vnumber=\"8\"> The LORD judges the nations. Vindicate me, LORD, because I am innocent, because I am blameless, O Exalted One!</VERS>\n\t\t\t<VERS vnumber=\"9\"> May the evil deeds of the wicked come to an end! But make the innocent secure, O righteous God, you who examine inner thoughts and motives!</VERS>\n\t\t\t<VERS vnumber=\"10\"> The Exalted God is my shield, the one who delivers the morally upright.</VERS>\n\t\t\t<VERS vnumber=\"11\"> God is a just judge; he is angry throughout the day.</VERS>\n\t\t\t<VERS vnumber=\"12\"> If a person does not repent, God sharpens his sword and prepares to shoot his bow.</VERS>\n\t\t\t<VERS vnumber=\"13\"> He prepares to use deadly weapons against him; he gets ready to shoot flaming arrows.</VERS>\n\t\t\t<VERS vnumber=\"14\"> See the one who is pregnant with wickedness, who conceives destructive plans, and gives birth to harmful lies,</VERS>\n\t\t\t<VERS vnumber=\"15\"> he digs a pit and then falls into the hole he has made.</VERS>\n\t\t\t<VERS vnumber=\"16\"> He becomes the victim of his own destructive plans and the violence he intended for others falls on his own head.</VERS>\n\t\t\t<VERS vnumber=\"17\"> I will thank the LORD for his justice; I will sing praises to the sovereign LORD!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"8\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director, according to the gittith style; a psalm of David.] O LORD, our Lord, how magnificent is your reputation throughout the earth! You reveal your majesty in the heavens above!</VERS>\n\t\t\t<VERS vnumber=\"2\"> From the mouths of children and nursing babies you have ordained praise on account of your adversaries, so that you might put an end to the vindictive enemy.</VERS>\n\t\t\t<VERS vnumber=\"3\"> When I look up at the heavens, which your fingers made, and see the moon and the stars, which you set in place,</VERS>\n\t\t\t<VERS vnumber=\"4\"> Of what importance is the human race, that you should notice them? Of what importance is mankind, that you should pay attention to them,</VERS>\n\t\t\t<VERS vnumber=\"5\"> and make them a little less than the heavenly beings? You grant mankind honor and majesty;</VERS>\n\t\t\t<VERS vnumber=\"6\"> you appoint them to rule over your creation; you have placed everything under their authority,</VERS>\n\t\t\t<VERS vnumber=\"7\"> including all the sheep and cattle, as well as the wild animals,</VERS>\n\t\t\t<VERS vnumber=\"8\"> the birds in the sky, the fish in the sea and everything that moves through the currents of the seas.</VERS>\n\t\t\t<VERS vnumber=\"9\"> O LORD, our Lord, how magnificent is your reputation throughout the earth!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"9\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director; according to the alumoth-labben style; a psalm of David.] I will thank the LORD with all my heart! I will tell about all your amazing deeds!</VERS>\n\t\t\t<VERS vnumber=\"2\"> I will be happy and rejoice in you! I will sing praises to you, O sovereign One!</VERS>\n\t\t\t<VERS vnumber=\"3\"> When my enemies turn back, they trip and are defeated before you.</VERS>\n\t\t\t<VERS vnumber=\"4\"> For you defended my just cause; from your throne you pronounced a just decision.</VERS>\n\t\t\t<VERS vnumber=\"5\"> You terrified the nations with your battle cry; you destroyed the wicked; you permanently wiped out all memory of them.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The enemy's cities have been reduced to permanent ruins; you destroyed their cities; all memory of the enemies has perished.</VERS>\n\t\t\t<VERS vnumber=\"7\"> But the LORD rules forever; he reigns in a just manner.</VERS>\n\t\t\t<VERS vnumber=\"8\"> He judges the world fairly; he makes just legal decisions for the nations.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Consequently the LORD provides safety for the oppressed; he provides safety in times of trouble.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Your loyal followers trust in you, for you, LORD, do not abandon those who seek your help.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Sing praises to the LORD, who rules in Zion! Tell the nations what he has done!</VERS>\n\t\t\t<VERS vnumber=\"12\"> For the one who takes revenge against murderers took notice of the oppressed; he did not overlook their cry for help</VERS>\n\t\t\t<VERS vnumber=\"13\"> when they prayed: \"Have mercy on me, LORD! See how I am oppressed by those who hate me, O one who can snatch me away from the gates of death!</VERS>\n\t\t\t<VERS vnumber=\"14\"> Then I will tell about all your praiseworthy acts; in the gates of Daughter Zion I will rejoice because of your deliverance.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> The nations fell into the pit they had made; their feet were caught in the net they had hidden.</VERS>\n\t\t\t<VERS vnumber=\"16\"> The LORD revealed himself; he accomplished justice; the wicked were ensnared by their own actions. (Higgaion. Selah)</VERS>\n\t\t\t<VERS vnumber=\"17\"> The wicked are turned back and sent to Sheol; this is the destiny of all the nations that ignore God,</VERS>\n\t\t\t<VERS vnumber=\"18\"> for the needy are not permanently ignored, the hopes of the oppressed are not forever dashed.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Rise up, LORD! Don't let men be defiant! May the nations be judged in your presence!</VERS>\n\t\t\t<VERS vnumber=\"20\"> Terrify them, LORD! Let the nations know they are mere mortals! (Selah)</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"10\">\n\t\t\t<VERS vnumber=\"1\"> Why, LORD, do you stand far off? Why do you pay no attention during times of trouble?</VERS>\n\t\t\t<VERS vnumber=\"2\"> The wicked arrogantly chase the oppressed; the oppressed are trapped by the schemes the wicked have dreamed up.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Yes, the wicked man boasts because he gets what he wants; the one who robs others curses and rejects the LORD.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The wicked man is so arrogant he always thinks, \"God won't hold me accountable; he doesn't care.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> He is secure at all times. He has no regard for your commands; he disdains all his enemies.</VERS>\n\t\t\t<VERS vnumber=\"6\"> He says to himself, \"I will never be upended, because I experience no calamity.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> His mouth is full of curses and deceptive, harmful words; his tongue injures and destroys.</VERS>\n\t\t\t<VERS vnumber=\"8\"> He waits in ambush near the villages; in hidden places he kills the innocent. His eyes look for some unfortunate victim.</VERS>\n\t\t\t<VERS vnumber=\"9\"> He lies in ambush in a hidden place, like a lion in a thicket; he lies in ambush, waiting to catch the oppressed; he catches the oppressed by pulling in his net.</VERS>\n\t\t\t<VERS vnumber=\"10\"> His victims are crushed and beaten down; they are trapped in his sturdy nets.</VERS>\n\t\t\t<VERS vnumber=\"11\"> He says to himself, \"God overlooks it; he does not pay attention; he never notices.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> Rise up, LORD! O God, strike him down! Do not forget the oppressed!</VERS>\n\t\t\t<VERS vnumber=\"13\"> Why does the wicked man reject God? He says to himself, \"You will not hold me accountable.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> You have taken notice, for you always see one who inflicts pain and suffering. The unfortunate victim entrusts his cause to you; you deliver the fatherless.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Break the arm of the wicked and evil man! Hold him accountable for his wicked deeds, which he thought you would not discover.</VERS>\n\t\t\t<VERS vnumber=\"16\"> The LORD rules forever! The nations are driven out of his land.</VERS>\n\t\t\t<VERS vnumber=\"17\"> LORD, you have heard the request of the oppressed; you make them feel secure because you listen to their prayer.</VERS>\n\t\t\t<VERS vnumber=\"18\"> You defend the fatherless and oppressed, so that mere mortals may no longer terrorize them.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"11\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director; by David.] In the LORD I have taken shelter. How can you say to me, \"Flee to a mountain like a bird!</VERS>\n\t\t\t<VERS vnumber=\"2\"> For look, the wicked prepare their bows, they put their arrows on the strings, to shoot in the darkness at the morally upright.</VERS>\n\t\t\t<VERS vnumber=\"3\"> When the foundations are destroyed, what can the godly accomplish?\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> The LORD is in his holy temple; the LORD's throne is in heaven. His eyes watch; his eyes examine all people.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The LORD approves of the godly, but he hates the wicked and those who love to do violence.</VERS>\n\t\t\t<VERS vnumber=\"6\"> May the LORD rain down burning coals and brimstone on the wicked! A whirlwind is what they deserve!</VERS>\n\t\t\t<VERS vnumber=\"7\"> Certainly the LORD is just; he rewards godly deeds; the upright will experience his favor.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"12\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director; according to the sheminith style; a psalm of David.] Deliver, LORD! For the godly have disappeared; people of integrity have vanished.</VERS>\n\t\t\t<VERS vnumber=\"2\"> People lie to one another; they flatter and deceive.</VERS>\n\t\t\t<VERS vnumber=\"3\"> May the LORD cut off all flattering lips, and the tongue that boasts!</VERS>\n\t\t\t<VERS vnumber=\"4\"> They say, \"We speak persuasively; we know how to flatter and boast. Who is our master?\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> \"Because of the violence done to the oppressed, because of the painful cries of the needy, I will spring into action,\" says the LORD. \"I will provide the safety they so desperately desire.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> The LORD's words are absolutely reliable. They are as untainted as silver purified in a furnace on the ground, where it is thoroughly refined.</VERS>\n\t\t\t<VERS vnumber=\"7\"> You, LORD, will protect them; you will continually shelter each one from these evil people,</VERS>\n\t\t\t<VERS vnumber=\"8\"> for the wicked seem to be everywhere, when people promote evil.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"13\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director; a psalm of David.] How long, LORD, will you continue to ignore me? How long will you pay no attention to me?</VERS>\n\t\t\t<VERS vnumber=\"2\"> How long must I worry, and suffer in broad daylight? How long will my enemy gloat over me?</VERS>\n\t\t\t<VERS vnumber=\"3\"> Look at me! Answer me, O LORD my God! Revive me, or else I will die!</VERS>\n\t\t\t<VERS vnumber=\"4\"> Then my enemy will say, \"I have defeated him!\" Then my foes will rejoice because I am upended.</VERS>\n\t\t\t<VERS vnumber=\"5\"> But I trust in your faithfulness. May I rejoice because of your deliverance!</VERS>\n\t\t\t<VERS vnumber=\"6\"> I will sing praises to the LORD when he vindicates me.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"14\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director; by David.] Fools say to themselves, \"There is no God.\" They sin and commit evil deeds; none of them does what is right.</VERS>\n\t\t\t<VERS vnumber=\"2\"> The LORD looks down from heaven at the human race, to see if there is anyone who is wise and seeks God.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Everyone rejects God; they are all morally corrupt. None of them does what is right, not even one!</VERS>\n\t\t\t<VERS vnumber=\"4\"> All those who behave wickedly do not understand, those who devour my people as if they were eating bread, and do not call out to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"5\"> They are absolutely terrified, for God defends the godly.</VERS>\n\t\t\t<VERS vnumber=\"6\"> You want to humiliate the oppressed, even though the LORD is their shelter.</VERS>\n\t\t\t<VERS vnumber=\"7\"> I wish the deliverance of Israel would come from Zion! When the LORD restores the well-being of his people, may Jacob rejoice, may Israel be happy!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"15\">\n\t\t\t<VERS vnumber=\"1\"> [A psalm of David.] LORD, who may be a guest in your home? Who may live on your holy hill?</VERS>\n\t\t\t<VERS vnumber=\"2\"> Whoever lives a blameless life, does what is right, and speaks honestly.</VERS>\n\t\t\t<VERS vnumber=\"3\"> He does not slander, or do harm to others, or insult his neighbor.</VERS>\n\t\t\t<VERS vnumber=\"4\"> He despises a reprobate, but honors the LORD's loyal followers. He makes firm commitments and does not renege on his promise.</VERS>\n\t\t\t<VERS vnumber=\"5\"> He does not charge interest when he lends his money. He does not take bribes to testify against the innocent. The one who lives like this will never be upended.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"16\">\n\t\t\t<VERS vnumber=\"1\"> [A prayer of David.] Protect me, O God, for I have taken shelter in you.</VERS>\n\t\t\t<VERS vnumber=\"2\"> I say to the LORD, \"You are the Lord, my only source of well-being.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> As for God's chosen people who are in the land, and the leading officials I admired so much,</VERS>\n\t\t\t<VERS vnumber=\"4\"> their troubles multiply, they desire other gods. I will not pour out drink offerings of blood to their gods, nor will I make vows in the name of their gods.</VERS>\n\t\t\t<VERS vnumber=\"5\"> LORD, you give me stability and prosperity; you make my future secure.</VERS>\n\t\t\t<VERS vnumber=\"6\"> It is as if I have been given fertile fields or received a beautiful tract of land.</VERS>\n\t\t\t<VERS vnumber=\"7\"> I will praise the LORD who guides me; yes, during the night I reflect and learn.</VERS>\n\t\t\t<VERS vnumber=\"8\"> I constantly trust in the LORD; because he is at my right hand, I will not be upended.</VERS>\n\t\t\t<VERS vnumber=\"9\"> So my heart rejoices and I am happy; My life is safe.</VERS>\n\t\t\t<VERS vnumber=\"10\"> You will not abandon me to Sheol; you will not allow your faithful follower to see the Pit.</VERS>\n\t\t\t<VERS vnumber=\"11\"> You lead me in the path of life; I experience absolute joy in your presence; you always give me sheer delight.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"17\">\n\t\t\t<VERS vnumber=\"1\"> [A prayer of David.] LORD, consider my just cause! Pay attention to my cry for help! Listen to the prayer I sincerely offer!</VERS>\n\t\t\t<VERS vnumber=\"2\"> Make a just decision on my behalf! Decide what is right!</VERS>\n\t\t\t<VERS vnumber=\"3\"> You have scrutinized my inner motives; you have examined me during the night. You have carefully evaluated me, but you find no sin. I am determined I will say nothing sinful.</VERS>\n\t\t\t<VERS vnumber=\"4\"> As for the actions of people, just as you have commanded, I have not followed in the footsteps of violent men.</VERS>\n\t\t\t<VERS vnumber=\"5\"> I carefully obey your commands; I do not deviate from them.</VERS>\n\t\t\t<VERS vnumber=\"6\"> I call to you for you will answer me, O God. Listen to me! Hear what I say!</VERS>\n\t\t\t<VERS vnumber=\"7\"> Accomplish awesome, faithful deeds, you who powerfully deliver those who look to you for protection from their enemies.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Protect me as you would protect the pupil of your eye! Hide me in the shadow of your wings!</VERS>\n\t\t\t<VERS vnumber=\"9\"> Protect me from the wicked men who attack me, my enemies who crowd around me for the kill.</VERS>\n\t\t\t<VERS vnumber=\"10\"> They are calloused; they speak arrogantly.</VERS>\n\t\t\t<VERS vnumber=\"11\"> They attack me, now they surround me; they intend to throw me to the ground.</VERS>\n\t\t\t<VERS vnumber=\"12\"> He is like a lion that wants to tear its prey to bits, like a young lion crouching in hidden places.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Rise up, LORD! Confront him! Knock him down! Use your sword to rescue me from the wicked man!</VERS>\n\t\t\t<VERS vnumber=\"14\"> LORD, use your power to deliver me from these murderers, from the murderers of this world! They enjoy prosperity; you overwhelm them with the riches they desire. They have many children, and leave their wealth to their offspring.</VERS>\n\t\t\t<VERS vnumber=\"15\"> As for me, because I am innocent I will see your face; when I awake you will reveal yourself to me.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"18\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director; by the LORD's servant David, who sang to the LORD the words of this song when the LORD rescued him from the power of all his enemies, including Saul.] He said: \"I love you, LORD, my source of strength!</VERS>\n\t\t\t<VERS vnumber=\"2\"> The LORD is my high ridge, my stronghold, my deliverer. My God is my rocky summit where I take shelter, my shield, the horn that saves me, and my refuge.</VERS>\n\t\t\t<VERS vnumber=\"3\"> I called to the LORD, who is worthy of praise, and I was delivered from my enemies.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The waves of death engulfed me, the currents of chaos overwhelmed me.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The ropes of Sheol tightened around me, the snares of death trapped me.</VERS>\n\t\t\t<VERS vnumber=\"6\"> In my distress I called to the LORD; I cried out to my God. From his heavenly temple he heard my voice; he listened to my cry for help.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The earth heaved and shook; the roots of the mountains trembled; they heaved because he was angry.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Smoke ascended from his nose; fire devoured as it came from his mouth; he hurled down fiery coals.</VERS>\n\t\t\t<VERS vnumber=\"9\"> He made the sky sink as he descended; a thick cloud was under his feet.</VERS>\n\t\t\t<VERS vnumber=\"10\"> He mounted a winged angel and flew; he glided on the wings of the wind.</VERS>\n\t\t\t<VERS vnumber=\"11\"> He shrouded himself in darkness, in thick rain clouds.</VERS>\n\t\t\t<VERS vnumber=\"12\"> From the brightness in front of him came hail and fiery coals.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The LORD thundered in the sky; the sovereign One shouted.</VERS>\n\t\t\t<VERS vnumber=\"14\"> He shot his arrows and scattered them, many lightning bolts and routed them.</VERS>\n\t\t\t<VERS vnumber=\"15\"> The depths of the sea were exposed; the inner regions of the world were uncovered by your battle cry, LORD, by the powerful breath from your nose.</VERS>\n\t\t\t<VERS vnumber=\"16\"> He reached down from above and took hold of me; he pulled me from the surging water.</VERS>\n\t\t\t<VERS vnumber=\"17\"> He rescued me from my strong enemy, from those who hate me, for they were too strong for me.</VERS>\n\t\t\t<VERS vnumber=\"18\"> They confronted me in my day of calamity, but the LORD helped me.</VERS>\n\t\t\t<VERS vnumber=\"19\"> He brought me out into a wide open place; he delivered me because he was pleased with me.</VERS>\n\t\t\t<VERS vnumber=\"20\"> The LORD repaid me for my godly deeds; he rewarded my blameless behavior.</VERS>\n\t\t\t<VERS vnumber=\"21\"> For I have obeyed the LORD's commands; I have not rebelled against my God.</VERS>\n\t\t\t<VERS vnumber=\"22\"> For I am aware of all his regulations, and I do not reject his rules.</VERS>\n\t\t\t<VERS vnumber=\"23\"> I was innocent before him, and kept myself from sinning.</VERS>\n\t\t\t<VERS vnumber=\"24\"> The LORD rewarded me for my godly deeds; he took notice of my blameless behavior.</VERS>\n\t\t\t<VERS vnumber=\"25\"> You prove to be loyal to one who is faithful; you prove to be trustworthy to one who is innocent.</VERS>\n\t\t\t<VERS vnumber=\"26\"> You prove to be reliable to one who is blameless, but you prove to be deceptive to one who is perverse.</VERS>\n\t\t\t<VERS vnumber=\"27\"> For you deliver oppressed people, but you bring down those who have a proud look.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Indeed, you are my lamp, LORD. My God illuminates the darkness around me.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Indeed, with your help I can charge against an army; by my God's power I can jump over a wall.</VERS>\n\t\t\t<VERS vnumber=\"30\"> The one true God acts in a faithful manner; the LORD's promise is reliable; he is a shield to all who take shelter in him.</VERS>\n\t\t\t<VERS vnumber=\"31\"> Indeed, who is God besides the LORD? Who is a protector besides our God?</VERS>\n\t\t\t<VERS vnumber=\"32\"> The one true God gives me strength; he removes the obstacles in my way.</VERS>\n\t\t\t<VERS vnumber=\"33\"> He gives me the agility of a deer; he enables me to negotiate the rugged terrain.</VERS>\n\t\t\t<VERS vnumber=\"34\"> He trains my hands for battle; my arms can bend even the strongest bow.</VERS>\n\t\t\t<VERS vnumber=\"35\"> You give me your protective shield; your right hand supports me; your willingness to help enables me to prevail.</VERS>\n\t\t\t<VERS vnumber=\"36\"> You widen my path; my feet do not slip.</VERS>\n\t\t\t<VERS vnumber=\"37\"> I chase my enemies and catch them; I do not turn back until I wipe them out.</VERS>\n\t\t\t<VERS vnumber=\"38\"> I beat them to death; they fall at my feet.</VERS>\n\t\t\t<VERS vnumber=\"39\"> You give me strength for battle; you make my foes kneel before me.</VERS>\n\t\t\t<VERS vnumber=\"40\"> You make my enemies retreat; I destroy those who hate me.</VERS>\n\t\t\t<VERS vnumber=\"41\"> They cry out, but there is no one to help them; they cry out to the LORD, but he does not answer them.</VERS>\n\t\t\t<VERS vnumber=\"42\"> I grind them as fine windblown dust; I beat them underfoot like clay in the streets.</VERS>\n\t\t\t<VERS vnumber=\"43\"> You rescue me from a hostile army; you make me a leader of nations; people over whom I had no authority are now my subjects.</VERS>\n\t\t\t<VERS vnumber=\"44\"> When they hear of my exploits, they submit to me. Foreigners are powerless before me;</VERS>\n\t\t\t<VERS vnumber=\"45\"> foreigners lose their courage; they shake with fear as they leave their strongholds.</VERS>\n\t\t\t<VERS vnumber=\"46\"> The LORD is alive! My protector is praiseworthy! The God who delivers me is exalted as king!</VERS>\n\t\t\t<VERS vnumber=\"47\"> The one true God completely vindicates me; he makes nations submit to me.</VERS>\n\t\t\t<VERS vnumber=\"48\"> He delivers me from my enemies; you snatch me away from those who attack me; you rescue me from violent men.</VERS>\n\t\t\t<VERS vnumber=\"49\"> So I will give you thanks before the nations, O LORD! I will sing praises to you!</VERS>\n\t\t\t<VERS vnumber=\"50\"> He gives his chosen king magnificent victories; he is faithful to his chosen ruler, to David and his descendants forever.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"19\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director; a psalm of David.] The heavens declare the glory of God; the sky displays his handiwork.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Day after day it speaks out; night after night it reveals his greatness.</VERS>\n\t\t\t<VERS vnumber=\"3\"> There is no actual speech or word, nor is its voice literally heard.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Yet its voice echoes throughout the earth; its words carry to the distant horizon. In the sky he has pitched a tent for the sun.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Like a bridegroom it emerges from its chamber; like a strong man it enjoys running its course.</VERS>\n\t\t\t<VERS vnumber=\"6\"> It emerges from the distant horizon, and goes from one end of the sky to the other; nothing can escape its heat.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The law of the LORD is perfect and preserves one's life. The rules set down by the LORD are reliable and impart wisdom to the inexperienced.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The LORD's precepts are fair and make one joyful. The LORD's commands are pure and give insight for life.</VERS>\n\t\t\t<VERS vnumber=\"9\"> The commands to fear the LORD are right and endure forever. The judgments given by the LORD are trustworthy and absolutely just.</VERS>\n\t\t\t<VERS vnumber=\"10\"> They are of greater value than gold, than even a great amount of pure gold; they bring greater delight than honey, than even the sweetest honey from a honeycomb.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Yes, your servant finds moral guidance there; those who obey them receive a rich reward.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Who can know all his errors? Please do not punish me for sins I am unaware of.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Moreover, keep me from committing flagrant sins; do not allow such sins to control me. Then I will be blameless, and innocent of blatant rebellion.</VERS>\n\t\t\t<VERS vnumber=\"14\"> May my words and my thoughts be acceptable in your sight, O LORD, my sheltering rock and my redeemer.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"20\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director; a psalm of David.] May the LORD answer you when you are in trouble; may the God of Jacob make you secure!</VERS>\n\t\t\t<VERS vnumber=\"2\"> May he send you help from his temple; from Zion may he give you support!</VERS>\n\t\t\t<VERS vnumber=\"3\"> May he take notice of your offerings; may he accept your burnt sacrifice! (Selah)</VERS>\n\t\t\t<VERS vnumber=\"4\"> May he grant your heart's desire; may he bring all your plans to pass!</VERS>\n\t\t\t<VERS vnumber=\"5\"> Then we will shout for joy over your victory; we will rejoice in the name of our God! May the LORD grant all your requests!</VERS>\n\t\t\t<VERS vnumber=\"6\"> Now I am sure that the LORD will deliver his chosen king; he will intervene for him from his holy heavenly temple, and display his mighty ability to deliver.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Some trust in chariots and others in horses, but we depend on the LORD our God.</VERS>\n\t\t\t<VERS vnumber=\"8\"> They will fall down, but we will stand firm.</VERS>\n\t\t\t<VERS vnumber=\"9\"> The LORD will deliver the king; he will answer us when we call to him for help!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"21\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director; a psalm of David.] O LORD, the king rejoices in the strength you give; he takes great delight in the deliverance you provide.</VERS>\n\t\t\t<VERS vnumber=\"2\"> You grant him his heart's desire; you do not refuse his request. (Selah)</VERS>\n\t\t\t<VERS vnumber=\"3\"> For you bring him rich blessings; you place a golden crown on his head.</VERS>\n\t\t\t<VERS vnumber=\"4\"> He asked you to sustain his life, and you have granted him long life and an enduring dynasty.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Your deliverance brings him great honor; you give him majestic splendor.</VERS>\n\t\t\t<VERS vnumber=\"6\"> For you grant him lasting blessings; you give him great joy by allowing him into your presence.</VERS>\n\t\t\t<VERS vnumber=\"7\"> For the king trusts in the LORD, and because of the sovereign LORD's faithfulness he is not upended.</VERS>\n\t\t\t<VERS vnumber=\"8\"> You prevail over all your enemies; your power is too great for those who hate you.</VERS>\n\t\t\t<VERS vnumber=\"9\"> You burn them up like a fiery furnace when you appear; the LORD angrily devours them; the fire consumes them.</VERS>\n\t\t\t<VERS vnumber=\"10\"> You destroy their offspring from the earth, their descendants from among the human race.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Yes, they intend to do you harm; they dream up a scheme, but they do not succeed.</VERS>\n\t\t\t<VERS vnumber=\"12\"> For you make them retreat when you shoot your arrows at them.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Rise up, O LORD, in strength! We will sing and praise your power!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"22\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director; according to the tune \"Morning Doe;\" a psalm of David.] My God, my God, why have you abandoned me? I groan in prayer, but help seems far away.</VERS>\n\t\t\t<VERS vnumber=\"2\"> My God, I cry out during the day, but you do not answer, and during the night my prayers do not let up.</VERS>\n\t\t\t<VERS vnumber=\"3\"> You are holy; you sit as king receiving the praises of Israel.</VERS>\n\t\t\t<VERS vnumber=\"4\"> In you our ancestors trusted; they trusted in you and you rescued them.</VERS>\n\t\t\t<VERS vnumber=\"5\"> To you they cried out, and they were saved; in you they trusted and they were not disappointed.</VERS>\n\t\t\t<VERS vnumber=\"6\"> But I am a worm, not a man; people insult me and despise me.</VERS>\n\t\t\t<VERS vnumber=\"7\"> All who see me taunt me; they mock me and shake their heads.</VERS>\n\t\t\t<VERS vnumber=\"8\"> They say, \"Commit yourself to the LORD! Let the LORD rescue him! Let the LORD deliver him, for he delights in him.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> Yes, you are the one who brought me out from the womb and made me feel secure on my mother's breasts.</VERS>\n\t\t\t<VERS vnumber=\"10\"> I have been dependent on you since birth; from the time I came out of my mother's womb you have been my God.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Do not remain far away from me, for trouble is near and I have no one to help me.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Many bulls surround me; powerful bulls of Bashan hem me in.</VERS>\n\t\t\t<VERS vnumber=\"13\"> They open their mouths to devour me like a roaring lion that rips its prey.</VERS>\n\t\t\t<VERS vnumber=\"14\"> My strength drains away like water; all my bones are dislocated; my heart is like wax; it melts away inside me.</VERS>\n\t\t\t<VERS vnumber=\"15\"> The roof of my mouth is as dry as a piece of pottery; my tongue sticks to my gums. You set me in the dust of death.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Yes, wild dogs surround me, a gang of evil men crowd around me; like a lion they pin my hands and feet.</VERS>\n\t\t\t<VERS vnumber=\"17\"> I can count all my bones; my enemies are gloating over me in triumph.</VERS>\n\t\t\t<VERS vnumber=\"18\"> They are dividing up my clothes among themselves; they are rolling dice for my garments.</VERS>\n\t\t\t<VERS vnumber=\"19\"> But you, O LORD, do not remain far away! You are my source of strength! Hurry and help me!</VERS>\n\t\t\t<VERS vnumber=\"20\"> Deliver me from the sword! Save my life from the claws of the wild dogs!</VERS>\n\t\t\t<VERS vnumber=\"21\"> Rescue me from the mouth of the lion, and from the horns of the wild oxen! You have answered me!</VERS>\n\t\t\t<VERS vnumber=\"22\"> I will declare your name to my countrymen! In the middle of the assembly I will praise you!</VERS>\n\t\t\t<VERS vnumber=\"23\"> You loyal followers of the LORD, praise him! All you descendants of Jacob, honor him! All you descendants of Israel, stand in awe of him!</VERS>\n\t\t\t<VERS vnumber=\"24\"> For he did not despise or detest the suffering of the oppressed; he did not ignore him; when he cried out to him, he responded.</VERS>\n\t\t\t<VERS vnumber=\"25\"> You are the reason I offer praise in the great assembly; I will fulfill my promises before the LORD's loyal followers.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Let the oppressed eat and be filled! Let those who seek his help praise the LORD! May you live forever!</VERS>\n\t\t\t<VERS vnumber=\"27\"> Let all the people of the earth acknowledge the LORD and turn to him! Let all the nations worship you!</VERS>\n\t\t\t<VERS vnumber=\"28\"> For the LORD is king and rules over the nations.</VERS>\n\t\t\t<VERS vnumber=\"29\"> All of the thriving people of the earth will join the celebration and worship; all those who are descending into the grave will bow before him, including those who cannot preserve their lives.</VERS>\n\t\t\t<VERS vnumber=\"30\"> A whole generation will serve him; they will tell the next generation about the sovereign Lord.</VERS>\n\t\t\t<VERS vnumber=\"31\"> They will come and tell about his saving deeds; they will tell a future generation what he has accomplished.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"23\">\n\t\t\t<VERS vnumber=\"1\"> [A psalm of David.] The LORD is my shepherd, I lack nothing.</VERS>\n\t\t\t<VERS vnumber=\"2\"> He takes me to lush pastures, he leads me to refreshing water.</VERS>\n\t\t\t<VERS vnumber=\"3\"> He restores my strength. He leads me down the right paths for the sake of his reputation.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Even when I must walk through the darkest valley, I fear no danger, for you are with me; your rod and your staff reassure me.</VERS>\n\t\t\t<VERS vnumber=\"5\"> You prepare a feast before me in plain sight of my enemies. You refresh my head with oil; my cup is completely full.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Surely your goodness and faithfulness will pursue me all my days, and I will live in the LORD's house for the rest of my life.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"24\">\n\t\t\t<VERS vnumber=\"1\"> [A psalm of David.] The LORD owns the earth and all it contains, the world and all who live in it.</VERS>\n\t\t\t<VERS vnumber=\"2\"> For he set its foundation upon the seas, and established it upon the ocean currents.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Who is allowed to ascend the mountain of the LORD? Who may go up to his holy dwelling place?</VERS>\n\t\t\t<VERS vnumber=\"4\"> The one whose deeds are blameless and whose motives are pure, who does not lie, or make promises with no intention of keeping them.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Such godly people are rewarded by the LORD, and vindicated by the God who delivers them.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Such purity characterizes the people who seek his favor, Jacob's descendants, who pray to him. (Selah)</VERS>\n\t\t\t<VERS vnumber=\"7\"> Look up, you gates! Rise up, you eternal doors! Then the majestic king will enter!</VERS>\n\t\t\t<VERS vnumber=\"8\"> Who is this majestic king? The LORD who is strong and mighty! The LORD who is mighty in battle!</VERS>\n\t\t\t<VERS vnumber=\"9\"> Look up, you gates! Rise up, you eternal doors! Then the majestic king will enter!</VERS>\n\t\t\t<VERS vnumber=\"10\"> Who is this majestic king? The LORD who commands armies! He is the majestic king! (Selah)</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"25\">\n\t\t\t<VERS vnumber=\"1\"> [By David.] O LORD, I come before you in prayer.</VERS>\n\t\t\t<VERS vnumber=\"2\"> My God, I trust in you. Please do not let me be humiliated; do not let my enemies triumphantly rejoice over me!</VERS>\n\t\t\t<VERS vnumber=\"3\"> Certainly none who rely on you will be humiliated. Those who deal in treachery will be thwarted and humiliated.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Make me understand your ways, O LORD! Teach me your paths!</VERS>\n\t\t\t<VERS vnumber=\"5\"> Guide me into your truth and teach me. For you are the God who delivers me; on you I rely all day long.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Remember your compassionate and faithful deeds, O LORD, for you have always acted in this manner.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Do not hold against me the sins of my youth or my rebellious acts! Because you are faithful to me, extend to me your favor, O LORD!</VERS>\n\t\t\t<VERS vnumber=\"8\"> The LORD is both kind and fair; that is why he teaches sinners the right way to live.</VERS>\n\t\t\t<VERS vnumber=\"9\"> May he show the humble what is right! May he teach the humble his way!</VERS>\n\t\t\t<VERS vnumber=\"10\"> The LORD always proves faithful and reliable to those who follow the demands of his covenant.</VERS>\n\t\t\t<VERS vnumber=\"11\"> For the sake of your reputation, O LORD, forgive my sin, because it is great.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The LORD shows his faithful followers the way they should live.</VERS>\n\t\t\t<VERS vnumber=\"13\"> They experience his favor; their descendants inherit the land.</VERS>\n\t\t\t<VERS vnumber=\"14\"> The LORD's loyal followers receive his guidance, and he reveals his covenantal demands to them.</VERS>\n\t\t\t<VERS vnumber=\"15\"> I continually look to the LORD for help, for he will free my feet from the enemy's net.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Turn toward me and have mercy on me, for I am alone and oppressed!</VERS>\n\t\t\t<VERS vnumber=\"17\"> Deliver me from my distress; rescue me from my suffering!</VERS>\n\t\t\t<VERS vnumber=\"18\"> See my pain and suffering! Forgive all my sins!</VERS>\n\t\t\t<VERS vnumber=\"19\"> Watch my enemies, for they outnumber me; they hate me and want to harm me.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Protect me and deliver me! Please do not let me be humiliated, for I have taken shelter in you!</VERS>\n\t\t\t<VERS vnumber=\"21\"> May integrity and godliness protect me, for I rely on you!</VERS>\n\t\t\t<VERS vnumber=\"22\"> O God, rescue Israel from all their distress!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"26\">\n\t\t\t<VERS vnumber=\"1\"> [By David.] Vindicate me, O LORD, for I have integrity, and I trust in the LORD without wavering.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Examine me, O LORD, and test me! Evaluate my inner thoughts and motives!</VERS>\n\t\t\t<VERS vnumber=\"3\"> For I am ever aware of your faithfulness, and your loyalty continually motivates me.</VERS>\n\t\t\t<VERS vnumber=\"4\"> I do not associate with deceitful men, or consort with those who are dishonest.</VERS>\n\t\t\t<VERS vnumber=\"5\"> I hate the mob of evil men, and do not associate with the wicked.</VERS>\n\t\t\t<VERS vnumber=\"6\"> I maintain a pure lifestyle, so I can appear before your altar, O LORD,</VERS>\n\t\t\t<VERS vnumber=\"7\"> to give you thanks, and to tell about all your amazing deeds.</VERS>\n\t\t\t<VERS vnumber=\"8\"> O LORD, I love the temple where you live, the place where your splendor is revealed.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Do not sweep me away with sinners, or execute me along with violent people,</VERS>\n\t\t\t<VERS vnumber=\"10\"> who are always ready to do wrong or offer a bribe.</VERS>\n\t\t\t<VERS vnumber=\"11\"> But I have integrity! Rescue me and have mercy on me!</VERS>\n\t\t\t<VERS vnumber=\"12\"> I am safe, and among the worshipers I will praise the LORD.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"27\">\n\t\t\t<VERS vnumber=\"1\"> [By David.] The LORD delivers and vindicates me! I fear no one! The LORD protects my life! I am afraid of no one!</VERS>\n\t\t\t<VERS vnumber=\"2\"> When evil men attack me to devour my flesh, when my adversaries and enemies attack me, they stumble and fall.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Even when an army is deployed against me, I do not fear. Even when war is imminent, I remain confident.</VERS>\n\t\t\t<VERS vnumber=\"4\"> I have asked the LORD for one thing, this is what I desire! I want to live in the LORD's house all the days of my life, so I can gaze at the splendor of the LORD and contemplate in his temple.</VERS>\n\t\t\t<VERS vnumber=\"5\"> He will surely give me shelter in the day of danger; he will hide me in his home; he will place me on an inaccessible rocky summit.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Now I will triumph over my enemies who surround me! I will offer sacrifices in his dwelling place and shout for joy! I will sing praises to the LORD!</VERS>\n\t\t\t<VERS vnumber=\"7\"> Hear me, O LORD, when I cry out! Have mercy on me and answer me!</VERS>\n\t\t\t<VERS vnumber=\"8\"> My heart tells me to pray to you, and I do pray to you, O LORD.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Do not reject me! Do not push your servant away in anger! You are my deliverer! Do not forsake or abandon me, O God who vindicates me!</VERS>\n\t\t\t<VERS vnumber=\"10\"> Even if my father and mother abandoned me, the LORD would take me in.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Teach me how you want me to live; lead me along a level path because of those who wait to ambush me!</VERS>\n\t\t\t<VERS vnumber=\"12\"> Do not turn me over to my enemies, for false witnesses who want to destroy me testify against me.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Where would I be if I did not believe I would experience the LORD's favor in the land of the living?</VERS>\n\t\t\t<VERS vnumber=\"14\"> Rely on the LORD! Be strong and confident! Rely on the LORD!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"28\">\n\t\t\t<VERS vnumber=\"1\"> [By David.] To you, O LORD, I cry out! My protector, do not ignore me! If you do not respond to me, I will join those who are descending into the grave.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Hear my plea for mercy when I cry out to you for help, when I lift my hands toward your holy temple!</VERS>\n\t\t\t<VERS vnumber=\"3\"> Do not drag me away with evil men, with those who behave wickedly, who talk so friendly to their neighbors, while they plan to harm them!</VERS>\n\t\t\t<VERS vnumber=\"4\"> Pay them back for their evil deeds! Pay them back for what they do! Punish them!</VERS>\n\t\t\t<VERS vnumber=\"5\"> For they do not understand the LORD's actions, or the way he carries out justice. The LORD will permanently demolish them.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The LORD deserves praise, for he has heard my plea for mercy!</VERS>\n\t\t\t<VERS vnumber=\"7\"> The LORD strengthens and protects me; I trust in him with all my heart. I am rescued and my heart is full of joy; I will sing to him in gratitude.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The LORD strengthens his people; he protects and delivers his chosen king.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Deliver your people! Empower the nation that belongs to you! Care for them like a shepherd and carry them in your arms at all times!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"29\">\n\t\t\t<VERS vnumber=\"1\"> [A psalm of David.] Acknowledge the LORD, you heavenly beings, acknowledge the LORD's majesty and power!</VERS>\n\t\t\t<VERS vnumber=\"2\"> Acknowledge the majesty of the LORD's reputation! Worship the LORD in holy attire!</VERS>\n\t\t\t<VERS vnumber=\"3\"> The LORD's shout is heard over the water; the majestic God thunders, the LORD appears over the surging water.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The LORD's shout is powerful, the LORD's shout is majestic.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The LORD's shout breaks the cedars, the LORD shatters the cedars of Lebanon.</VERS>\n\t\t\t<VERS vnumber=\"6\"> He makes Lebanon skip like a calf and Sirion like a young ox.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The LORD's shout strikes with flaming fire.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The LORD's shout shakes the wilderness, the LORD shakes the wilderness of Kadesh.</VERS>\n\t\t\t<VERS vnumber=\"9\"> The LORD's shout bends the large trees and strips the leaves from the forests. Everyone in his temple says, \"Majestic!\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> The LORD sits enthroned over the engulfing waters, the LORD sits enthroned as the eternal king.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The LORD gives his people strength; the LORD grants his people security.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"30\">\n\t\t\t<VERS vnumber=\"1\"> [A psalm, a song used at the dedication of the temple; by David.] I will praise you, O LORD, for you lifted me up, and did not allow my enemies to gloat over me.</VERS>\n\t\t\t<VERS vnumber=\"2\"> O LORD my God, I cried out to you and you healed me.</VERS>\n\t\t\t<VERS vnumber=\"3\"> O LORD, you pulled me up from Sheol; you rescued me from among those descending into the grave.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Sing to the LORD, you faithful followers of his; give thanks to his holy name.</VERS>\n\t\t\t<VERS vnumber=\"5\"> For his anger lasts only a brief moment, and his good favor restores one's life. One may experience sorrow during the night, but joy arrives in the morning.</VERS>\n\t\t\t<VERS vnumber=\"6\"> In my self-confidence I said, \"I will never be upended.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> O LORD, in your good favor you made me secure. Then you rejected me and I was terrified.</VERS>\n\t\t\t<VERS vnumber=\"8\"> To you, O LORD, I cried out; I begged the Lord for mercy:</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"What profit is there in taking my life, in my descending into the Pit? Can the dust of the grave praise you? Can it declare your loyalty?</VERS>\n\t\t\t<VERS vnumber=\"10\"> Hear, O LORD, and have mercy on me! O LORD, deliver me!\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> Then you turned my lament into dancing; you removed my sackcloth and covered me with joy.</VERS>\n\t\t\t<VERS vnumber=\"12\"> So now my heart will sing to you and not be silent; O LORD my God, I will always give thanks to you.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"31\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director; a psalm of David.] In you, O LORD, I have taken shelter! Never let me be humiliated! Vindicate me by rescuing me!</VERS>\n\t\t\t<VERS vnumber=\"2\"> Listen to me! Quickly deliver me! Be my protector and refuge, a stronghold where I can be safe!</VERS>\n\t\t\t<VERS vnumber=\"3\"> For you are my high ridge and my stronghold; for the sake of your own reputation you lead me and guide me.</VERS>\n\t\t\t<VERS vnumber=\"4\"> You will free me from the net they hid for me, for you are my place of refuge.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Into your hand I entrust my life; you will rescue me, O LORD, the faithful God.</VERS>\n\t\t\t<VERS vnumber=\"6\"> I hate those who serve worthless idols, but I trust in the LORD.</VERS>\n\t\t\t<VERS vnumber=\"7\"> I will be happy and rejoice in your faithfulness, because you notice my pain and you are aware of how distressed I am.</VERS>\n\t\t\t<VERS vnumber=\"8\"> You do not deliver me over to the power of the enemy; you enable me to stand in a wide open place.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Have mercy on me, for I am in distress! My eyes grow dim from suffering. I have lost my strength.</VERS>\n\t\t\t<VERS vnumber=\"10\"> For my life nears its end in pain; my years draw to a close as I groan. My strength fails me because of my sin, and my bones become brittle.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Because of all my enemies, people disdain me; my neighbors are appalled by my suffering, those who know me are horrified by my condition; those who see me in the street run away from me.</VERS>\n\t\t\t<VERS vnumber=\"12\"> I am forgotten, like a dead man no one thinks about; I am regarded as worthless, like a broken jar.</VERS>\n\t\t\t<VERS vnumber=\"13\"> For I hear what so many are saying, the terrifying news that comes from every direction. When they plot together against me, they figure out how they can take my life.</VERS>\n\t\t\t<VERS vnumber=\"14\"> But I trust in you, O LORD! I declare, \"You are my God!\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> You determine my destiny! Rescue me from the power of my enemies and those who chase me.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Smile on your servant! Deliver me because of your faithfulness!</VERS>\n\t\t\t<VERS vnumber=\"17\"> O LORD, do not let me be humiliated, for I call out to you! May evil men be humiliated! May they go wailing to the grave!</VERS>\n\t\t\t<VERS vnumber=\"18\"> May lying lips be silenced, lips that speak defiantly against the innocent with arrogance and contempt!</VERS>\n\t\t\t<VERS vnumber=\"19\"> How great is your favor, which you store up for your loyal followers! In plain sight of everyone you bestow it on those who take shelter in you.</VERS>\n\t\t\t<VERS vnumber=\"20\"> You hide them with you, where they are safe from the attacks of men; you conceal them in a shelter, where they are safe from slanderous attacks.</VERS>\n\t\t\t<VERS vnumber=\"21\"> The LORD deserves praise for he demonstrated his amazing faithfulness to me when I was besieged by enemies.</VERS>\n\t\t\t<VERS vnumber=\"22\"> I jumped to conclusions and said, \"I am cut off from your presence!\" But you heard my plea for mercy when I cried out to you for help.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Love the LORD, all you faithful followers of his! The LORD protects those who have integrity, but he pays back in full the one who acts arrogantly.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Be strong and confident, all you who wait on the LORD!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"32\">\n\t\t\t<VERS vnumber=\"1\"> [By David; a well-written song.] How blessed is the one whose rebellious acts are forgiven, whose sin is pardoned!</VERS>\n\t\t\t<VERS vnumber=\"2\"> How blessed is the one whose wrongdoing the LORD does not punish, in whose spirit there is no deceit.</VERS>\n\t\t\t<VERS vnumber=\"3\"> When I refused to confess my sin, my whole body wasted away, while I groaned in pain all day long.</VERS>\n\t\t\t<VERS vnumber=\"4\"> For day and night you tormented me; you tried to destroy me in the intense heat of summer. (Selah)</VERS>\n\t\t\t<VERS vnumber=\"5\"> Then I confessed my sin; I no longer covered up my wrongdoing. I said, \"I will confess my rebellious acts to the LORD.\" And then you forgave my sins. (Selah)</VERS>\n\t\t\t<VERS vnumber=\"6\"> For this reason every one of your faithful followers should pray to you while there is a window of opportunity. Certainly when the surging water rises, it will not reach them.</VERS>\n\t\t\t<VERS vnumber=\"7\"> You are my hiding place; you protect me from distress. You surround me with shouts of joy from those celebrating deliverance. (Selah)</VERS>\n\t\t\t<VERS vnumber=\"8\"> I will instruct and teach you about how you should live. I will advise you as I look you in the eye.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Do not be like an unintelligent horse or mule, which will not obey you unless they are controlled by a bridle and bit.</VERS>\n\t\t\t<VERS vnumber=\"10\"> An evil person suffers much pain, but the LORD's faithfulness overwhelms the one who trusts in him.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Rejoice in the LORD and be happy, you who are godly! Shout for joy, all you who are morally upright!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"33\">\n\t\t\t<VERS vnumber=\"1\"> You godly ones, shout for joy because of the LORD! It is appropriate for the morally upright to offer him praise.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Give thanks to the LORD with the harp! Sing to him to the accompaniment of a ten-stringed instrument!</VERS>\n\t\t\t<VERS vnumber=\"3\"> Sing to him a new song! Play skillfully as you shout out your praises to him!</VERS>\n\t\t\t<VERS vnumber=\"4\"> For the LORD's decrees are just, and everything he does is fair.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The LORD promotes equity and justice; the LORD's faithfulness extends throughout the earth.</VERS>\n\t\t\t<VERS vnumber=\"6\"> By the LORD's decree the heavens were made; by a mere word from his mouth all the stars in the sky were created.</VERS>\n\t\t\t<VERS vnumber=\"7\"> He piles up the water of the sea; he puts the oceans in storehouses.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Let the whole earth fear the LORD! Let all who live in the world stand in awe of him!</VERS>\n\t\t\t<VERS vnumber=\"9\"> For he spoke, and it came into existence, he issued the decree, and it stood firm.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The LORD frustrates the decisions of the nations; he nullifies the plans of the peoples.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The LORD's decisions stand forever; his plans abide throughout the ages.</VERS>\n\t\t\t<VERS vnumber=\"12\"> How blessed is the nation whose God is the LORD, the people whom he has chosen to be his special possession.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The LORD watches from heaven; he sees all people.</VERS>\n\t\t\t<VERS vnumber=\"14\"> From the place where he lives he looks carefully at all the earth's inhabitants.</VERS>\n\t\t\t<VERS vnumber=\"15\"> He is the one who forms every human heart, and takes note of all their actions.</VERS>\n\t\t\t<VERS vnumber=\"16\"> No king is delivered by his vast army; a warrior is not saved by his great might.</VERS>\n\t\t\t<VERS vnumber=\"17\"> A horse disappoints those who trust in it for victory; despite its great strength, it cannot deliver.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Look, the LORD takes notice of his loyal followers, those who wait for him to demonstrate his faithfulness</VERS>\n\t\t\t<VERS vnumber=\"19\"> by saving their lives from death and sustaining them during times of famine.</VERS>\n\t\t\t<VERS vnumber=\"20\"> We wait for the LORD; he is our deliverer and shield.</VERS>\n\t\t\t<VERS vnumber=\"21\"> For our hearts rejoice in him, for we trust in his holy name.</VERS>\n\t\t\t<VERS vnumber=\"22\"> May we experience your faithfulness, O LORD, for we wait for you.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"34\">\n\t\t\t<VERS vnumber=\"1\"> [Written by David, when he pretended to be insane before Abimelech, causing the king to send him away.] I will praise the LORD at all times; my mouth will continually praise him.</VERS>\n\t\t\t<VERS vnumber=\"2\"> I will boast in the LORD; let the oppressed hear and rejoice!</VERS>\n\t\t\t<VERS vnumber=\"3\"> Magnify the LORD with me! Let's praise his name together!</VERS>\n\t\t\t<VERS vnumber=\"4\"> I sought the LORD's help and he answered me; he delivered me from all my fears.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Those who look to him for help are happy; their faces are not ashamed.</VERS>\n\t\t\t<VERS vnumber=\"6\"> This oppressed man cried out and the LORD heard; he saved him from all his troubles.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The LORD's angel camps around the LORD's loyal followers and delivers them.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Taste and see that the LORD is good! How blessed is the one who takes shelter in him!</VERS>\n\t\t\t<VERS vnumber=\"9\"> Remain loyal to the LORD, you chosen people of his, for his loyal followers lack nothing!</VERS>\n\t\t\t<VERS vnumber=\"10\"> Even young lions sometimes lack food and are hungry, but those who seek the LORD lack no good thing.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Come children! Listen to me! I will teach you what it means to fear the LORD.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Do you want to really live? Would you love to live a long, happy life?</VERS>\n\t\t\t<VERS vnumber=\"13\"> Then make sure you don't speak evil words or use deceptive speech!</VERS>\n\t\t\t<VERS vnumber=\"14\"> Turn away from evil and do what is right! Strive for peace and promote it!</VERS>\n\t\t\t<VERS vnumber=\"15\"> The LORD pays attention to the godly and hears their cry for help.</VERS>\n\t\t\t<VERS vnumber=\"16\"> But the LORD opposes evildoers and wipes out all memory of them from the earth.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The godly cry out and the LORD hears; he saves them from all their troubles.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The LORD is near the brokenhearted; he delivers those who are discouraged.</VERS>\n\t\t\t<VERS vnumber=\"19\"> The godly face many dangers, but the LORD saves them from each one of them.</VERS>\n\t\t\t<VERS vnumber=\"20\"> He protects all his bones; not one of them is broken.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Evil people self-destruct; those who hate the godly are punished.</VERS>\n\t\t\t<VERS vnumber=\"22\"> The LORD rescues his servants; all who take shelter in him escape punishment.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"35\">\n\t\t\t<VERS vnumber=\"1\"> [By David.] O LORD, fight those who fight with me! Attack those who attack me!</VERS>\n\t\t\t<VERS vnumber=\"2\"> Grab your small shield and large shield, and rise up to help me!</VERS>\n\t\t\t<VERS vnumber=\"3\"> Use your spear and lance against those who chase me! Assure me with these words: \"I am your deliverer!\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> May those who seek my life be embarrassed and humiliated! May those who plan to harm me be turned back and ashamed!</VERS>\n\t\t\t<VERS vnumber=\"5\"> May they be like wind-driven chaff, as the LORD's angel attacks them!</VERS>\n\t\t\t<VERS vnumber=\"6\"> May their path be dark and slippery, as the LORD's angel chases them!</VERS>\n\t\t\t<VERS vnumber=\"7\"> I did not harm them, but they hid a net to catch me and dug a pit to trap me.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Let destruction take them by surprise! Let the net they hid catch them! Let them fall into destruction!</VERS>\n\t\t\t<VERS vnumber=\"9\"> Then I will rejoice in the LORD and be happy because of his deliverance.</VERS>\n\t\t\t<VERS vnumber=\"10\"> With all my strength I will say, \"O LORD, who can compare to you? You rescue the oppressed from those who try to overpower them; the oppressed and needy from those who try to rob them.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> Violent men perjure themselves, and falsely accuse me.</VERS>\n\t\t\t<VERS vnumber=\"12\"> They repay me evil for the good I have done; I am overwhelmed with sorrow.</VERS>\n\t\t\t<VERS vnumber=\"13\"> When they were sick, I wore sackcloth, and refrained from eating food. (If I am lying, may my prayers go unanswered!)</VERS>\n\t\t\t<VERS vnumber=\"14\"> I mourned for them as I would for a friend or my brother. I bowed down in sorrow as if I were mourning for my mother.</VERS>\n\t\t\t<VERS vnumber=\"15\"> But when I stumbled, they rejoiced and gathered together; they gathered together to ambush me. They tore at me without stopping to rest.</VERS>\n\t\t\t<VERS vnumber=\"16\"> When I tripped, they taunted me relentlessly, and tried to bite me.</VERS>\n\t\t\t<VERS vnumber=\"17\"> O Lord, how long are you going to just stand there and watch this? Rescue me from their destructive attacks; guard my life from the young lions!</VERS>\n\t\t\t<VERS vnumber=\"18\"> Then I will give you thanks in the great assembly; I will praise you before a large crowd of people!</VERS>\n\t\t\t<VERS vnumber=\"19\"> Do not let those who are my enemies for no reason gloat over me! Do not let those who hate me without cause carry out their wicked schemes!</VERS>\n\t\t\t<VERS vnumber=\"20\"> For they do not try to make peace with others, but plan ways to deceive those who are unsuspecting.</VERS>\n\t\t\t<VERS vnumber=\"21\"> They are ready to devour me; they say, \"Aha! Aha! We've got you!\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> But you take notice, LORD! O Lord, do not remain far away from me!</VERS>\n\t\t\t<VERS vnumber=\"23\"> Rouse yourself, wake up and vindicate me! My God and Lord, defend my just cause!</VERS>\n\t\t\t<VERS vnumber=\"24\"> Vindicate me by your justice, O LORD my God! Do not let them gloat over me!</VERS>\n\t\t\t<VERS vnumber=\"25\"> Do not let them say to themselves, \"Aha! We have what we wanted!\" Do not let them say, \"We have devoured him!\"</VERS>\n\t\t\t<VERS vnumber=\"26\"> May those who want to harm me be totally embarrassed and ashamed! May those who arrogantly taunt me be covered with shame and humiliation!</VERS>\n\t\t\t<VERS vnumber=\"27\"> May those who desire my vindication shout for joy and rejoice! May they continually say, \"May the LORD be praised, for he wants his servant to be secure.\"</VERS>\n\t\t\t<VERS vnumber=\"28\"> Then I will tell others about your justice, and praise you all day long.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"36\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director; written by the LORD's servant, David; an oracle.] An evil man is rebellious to the core. He does not fear God,</VERS>\n\t\t\t<VERS vnumber=\"2\"> for he is too proud to recognize and give up his sin.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The words he speaks are sinful and deceitful; he does not care about doing what is wise and right.</VERS>\n\t\t\t<VERS vnumber=\"4\"> He plans ways to sin while he lies in bed; he is committed to a sinful lifestyle; he does not reject what is evil.</VERS>\n\t\t\t<VERS vnumber=\"5\"> O LORD, your loyal love reaches to the sky; your faithfulness to the clouds.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Your justice is like the highest mountains, your fairness like the deepest sea; you preserve mankind and the animal kingdom.</VERS>\n\t\t\t<VERS vnumber=\"7\"> How precious is your loyal love, O God! The human race finds shelter under your wings.</VERS>\n\t\t\t<VERS vnumber=\"8\"> They are filled with food from your house, and you allow them to drink from the river of your delicacies.</VERS>\n\t\t\t<VERS vnumber=\"9\"> For you are the one who gives and sustains life.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Extend your loyal love to your faithful followers, and vindicate the morally upright!</VERS>\n\t\t\t<VERS vnumber=\"11\"> Do not let arrogant men overtake me, or let evil men make me homeless!</VERS>\n\t\t\t<VERS vnumber=\"12\"> I can see the evildoers! They have fallen! They have been knocked down and are unable to get up!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"37\">\n\t\t\t<VERS vnumber=\"1\"> [By David.] Do not fret when wicked men seem to succeed! Do not envy evildoers!</VERS>\n\t\t\t<VERS vnumber=\"2\"> For they will quickly dry up like grass, and wither away like plants.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Trust in the LORD and do what is right! Settle in the land and maintain your integrity!</VERS>\n\t\t\t<VERS vnumber=\"4\"> Then you will take delight in the LORD, and he will answer your prayers.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Commit your future to the LORD! Trust in him, and he will act on your behalf.</VERS>\n\t\t\t<VERS vnumber=\"6\"> He will vindicate you in broad daylight, and publicly defend your just cause.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Wait patiently for the LORD! Wait confidently for him! Do not fret over the apparent success of a sinner, a man who carries out wicked schemes!</VERS>\n\t\t\t<VERS vnumber=\"8\"> Do not be angry and frustrated! Do not fret! That only leads to trouble!</VERS>\n\t\t\t<VERS vnumber=\"9\"> Wicked men will be wiped out, but those who rely on the LORD are the ones who will possess the land.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Evil men will soon disappear; you will stare at the spot where they once were, but they will be gone.</VERS>\n\t\t\t<VERS vnumber=\"11\"> But the oppressed will possess the land and enjoy great prosperity.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Evil men plot against the godly and viciously attack them.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The Lord laughs in disgust at them, for he knows that their day is coming.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Evil men draw their swords and prepare their bows, to bring down the oppressed and needy, and to slaughter those who are godly.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Their swords will pierce their own hearts, and their bows will be broken.</VERS>\n\t\t\t<VERS vnumber=\"16\"> The little bit that a godly man owns is better than the wealth of many evil men,</VERS>\n\t\t\t<VERS vnumber=\"17\"> for evil men will lose their power, but the LORD sustains the godly.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The LORD watches over the innocent day by day and they possess a permanent inheritance.</VERS>\n\t\t\t<VERS vnumber=\"19\"> They will not be ashamed when hard times come; when famine comes they will have enough to eat.</VERS>\n\t\t\t<VERS vnumber=\"20\"> But evil men will die; the LORD's enemies will be incinerated, they will go up in smoke.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Evil men borrow, but do not repay their debt, but the godly show compassion and are generous.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Surely those favored by the LORD will possess the land, but those rejected by him will be wiped out.</VERS>\n\t\t\t<VERS vnumber=\"23\"> The LORD grants success to the one whose behavior he finds commendable.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Even if he trips, he will not fall headlong, for the LORD holds his hand.</VERS>\n\t\t\t<VERS vnumber=\"25\"> I was once young, now I am old. I have never seen a godly man abandoned, or his children forced to search for food.</VERS>\n\t\t\t<VERS vnumber=\"26\"> All day long he shows compassion and lends to others, and his children are blessed.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Turn away from evil! Do what is right! Then you will enjoy lasting security.</VERS>\n\t\t\t<VERS vnumber=\"28\"> For the LORD promotes justice, and never abandons his faithful followers. They are permanently secure, but the children of evil men are wiped out.</VERS>\n\t\t\t<VERS vnumber=\"29\"> The godly will possess the land and will dwell in it permanently.</VERS>\n\t\t\t<VERS vnumber=\"30\"> The godly speak wise words and promote justice.</VERS>\n\t\t\t<VERS vnumber=\"31\"> The law of their God controls their thinking; their feet do not slip.</VERS>\n\t\t\t<VERS vnumber=\"32\"> Evil men set an ambush for the godly and try to kill them.</VERS>\n\t\t\t<VERS vnumber=\"33\"> But the LORD does not surrender the godly, or allow them to be condemned in a court of law.</VERS>\n\t\t\t<VERS vnumber=\"34\"> Rely on the LORD! Obey his commands! Then he will permit you to possess the land; you will see the demise of evil men.</VERS>\n\t\t\t<VERS vnumber=\"35\"> I have seen ruthless evil men growing in influence, like a green tree grows in its native soil.</VERS>\n\t\t\t<VERS vnumber=\"36\"> But then one passes by, and suddenly they have disappeared! I looked for them, but they could not be found.</VERS>\n\t\t\t<VERS vnumber=\"37\"> Take note of the one who has integrity! Observe the godly! For the one who promotes peace has a future.</VERS>\n\t\t\t<VERS vnumber=\"38\"> Sinful rebels are totally destroyed; evil men have no future.</VERS>\n\t\t\t<VERS vnumber=\"39\"> But the LORD delivers the godly; he protects them in times of trouble.</VERS>\n\t\t\t<VERS vnumber=\"40\"> The LORD helps them and rescues them; he rescues them from evil men and delivers them, for they seek his protection.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"38\">\n\t\t\t<VERS vnumber=\"1\"> [A psalm of David, written to get God's attention.] O LORD, do not continue to rebuke me in your anger! Do not continue to punish me in your raging fury!</VERS>\n\t\t\t<VERS vnumber=\"2\"> For your arrows pierce me, and your hand presses me down.</VERS>\n\t\t\t<VERS vnumber=\"3\"> My whole body is sick because of your judgment; I am deprived of health because of my sin.</VERS>\n\t\t\t<VERS vnumber=\"4\"> For my sins overwhelm me; like a heavy load, they are too much for me to bear.</VERS>\n\t\t\t<VERS vnumber=\"5\"> My wounds are infected and starting to smell, because of my foolish sins.</VERS>\n\t\t\t<VERS vnumber=\"6\"> I am dazed and completely humiliated; all day long I walk around mourning.</VERS>\n\t\t\t<VERS vnumber=\"7\"> For I am overcome with shame and my whole body is sick.</VERS>\n\t\t\t<VERS vnumber=\"8\"> I am numb with pain and severely battered; I groan loudly because of the anxiety I feel.</VERS>\n\t\t\t<VERS vnumber=\"9\"> O Lord, you understand my heart's desire; my groaning is not hidden from you.</VERS>\n\t\t\t<VERS vnumber=\"10\"> My heart beats quickly; my strength leaves me; I can hardly see.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Because of my condition, even my friends and acquaintances keep their distance; my neighbors stand far away.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Those who seek my life try to entrap me; those who want to harm me speak destructive words; all day long they say deceitful things.</VERS>\n\t\t\t<VERS vnumber=\"13\"> But I am like a deaf man, I hear nothing; I am like a mute who cannot speak.</VERS>\n\t\t\t<VERS vnumber=\"14\"> I am like a man who cannot hear and is incapable of arguing his defense.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Yet I wait for you, O LORD! You will respond, O Lord, my God!</VERS>\n\t\t\t<VERS vnumber=\"16\"> I have prayed for deliverance, because otherwise they will gloat over me; when my foot slips they will arrogantly taunt me.</VERS>\n\t\t\t<VERS vnumber=\"17\"> For I am about to stumble, and I am in constant pain.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Yes, I confess my wrongdoing, and I am concerned about my sins.</VERS>\n\t\t\t<VERS vnumber=\"19\"> But those who are my enemies for no reason are numerous; those who hate me without cause outnumber me.</VERS>\n\t\t\t<VERS vnumber=\"20\"> They repay me evil for the good I have done; though I have tried to do good to them, they hurl accusations at me.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Do not abandon me, O LORD! My God, do not remain far away from me!</VERS>\n\t\t\t<VERS vnumber=\"22\"> Hurry and help me, O Lord, my deliverer!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"39\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director, Jeduthun; a psalm of David.] I decided, \"I will watch what I say and make sure I do not sin with my tongue. I will put a muzzle over my mouth while in the presence of an evil man.\"</VERS>\n\t\t\t<VERS vnumber=\"2\"> I was stone silent; I held back the urge to speak. My frustration grew;</VERS>\n\t\t\t<VERS vnumber=\"3\"> my anxiety intensified. As I thought about it, I became impatient. Finally I spoke these words:</VERS>\n\t\t\t<VERS vnumber=\"4\"> \"O LORD, help me understand my mortality and the brevity of life! Let me realize how quickly my life will pass!</VERS>\n\t\t\t<VERS vnumber=\"5\"> Look, you make my days short-lived, and my life span is nothing from your perspective. Surely all people, even those who seem secure, are nothing but vapor.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Surely people go through life as mere ghosts. Surely they accumulate worthless wealth without knowing who will eventually haul it away.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> But now, O Lord, upon what am I relying? You are my only hope!</VERS>\n\t\t\t<VERS vnumber=\"8\"> Deliver me from all my sins of rebellion! Do not make me the object of fools' insults!</VERS>\n\t\t\t<VERS vnumber=\"9\"> I am silent and cannot open my mouth because of what you have done.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Please stop wounding me! You have almost beaten me to death!</VERS>\n\t\t\t<VERS vnumber=\"11\"> You severely discipline people for their sins; like a moth you slowly devour their strength. Surely all people are a mere vapor. (Selah)</VERS>\n\t\t\t<VERS vnumber=\"12\"> Hear my prayer, O LORD! Listen to my cry for help! Do not ignore my sobbing! For I am dependent on you, like one residing outside his native land; I am at your mercy, just as all my ancestors were.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Turn your angry gaze away from me, so I can be happy before I pass away.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"40\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director; By David, a psalm.] I relied completely on the LORD, and he turned toward me and heard my cry for help.</VERS>\n\t\t\t<VERS vnumber=\"2\"> He lifted me out of the watery pit, out of the slimy mud. He placed my feet on a rock and gave me secure footing.</VERS>\n\t\t\t<VERS vnumber=\"3\"> He gave me reason to sing a new song, praising our God. May many see what God has done, so that they might swear allegiance to him and trust in the LORD!</VERS>\n\t\t\t<VERS vnumber=\"4\"> How blessed is the one who trusts in the LORD and does not seek help from the proud or from liars!</VERS>\n\t\t\t<VERS vnumber=\"5\"> O LORD, my God, you have accomplished many things; you have done amazing things and carried out your purposes for us. No one can thwart you! I want to declare them and talk about them, but they are too numerous to recount!</VERS>\n\t\t\t<VERS vnumber=\"6\"> Receiving sacrifices and offerings are not your primary concern. You make that quite clear to me! You do not ask for burnt sacrifices and sin offerings.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Then I say, \"Look! I come! What is written in the scroll pertains to me.</VERS>\n\t\t\t<VERS vnumber=\"8\"> I want to do what pleases you, my God. Your law dominates my thoughts.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> I have told the great assembly about your justice. Look! I spare no words! O LORD, you know this is true.</VERS>\n\t\t\t<VERS vnumber=\"10\"> I have not failed to tell about your justice; I spoke about your reliability and deliverance; I have not neglected to tell the great assembly about your loyal love and faithfulness.</VERS>\n\t\t\t<VERS vnumber=\"11\"> O LORD, you do not withhold your compassion from me. May your loyal love and faithfulness continually protect me!</VERS>\n\t\t\t<VERS vnumber=\"12\"> For innumerable dangers surround me. My sins overtake me so I am unable to see; they outnumber the hairs of my head so my strength fails me.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Please be willing, O LORD, to rescue me! O LORD, hurry and help me!</VERS>\n\t\t\t<VERS vnumber=\"14\"> May those who are trying to snatch away my life be totally embarrassed and ashamed! May those who want to harm me be turned back and ashamed!</VERS>\n\t\t\t<VERS vnumber=\"15\"> May those who say to me, \"Aha! Aha!\" be humiliated and disgraced!</VERS>\n\t\t\t<VERS vnumber=\"16\"> May all those who seek you be happy and rejoice in you! May those who love to experience your deliverance say continually, \"May the LORD be praised!\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> I am oppressed and needy! May the Lord pay attention to me! You are my helper and my deliverer! O my God, do not delay!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"41\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director; a psalm of David.] How blessed is the one who treats the poor properly! When trouble comes, the LORD delivers him.</VERS>\n\t\t\t<VERS vnumber=\"2\"> May the LORD protect him and save his life! May he be blessed in the land! Do not turn him over to his enemies!</VERS>\n\t\t\t<VERS vnumber=\"3\"> The LORD supports him on his sickbed; you completely heal him from his illness.</VERS>\n\t\t\t<VERS vnumber=\"4\"> As for me, I said: \"O LORD, have mercy on me! Heal me, for I have sinned against you!</VERS>\n\t\t\t<VERS vnumber=\"5\"> My enemies ask this cruel question about me, 'When will he finally die and be forgotten?'</VERS>\n\t\t\t<VERS vnumber=\"6\"> When someone comes to visit, he pretends to be friendly; he thinks of ways to defame me, and when he leaves he slanders me.</VERS>\n\t\t\t<VERS vnumber=\"7\"> All who hate me whisper insults about me to one another; they plan ways to harm me.</VERS>\n\t\t\t<VERS vnumber=\"8\"> They say, 'An awful disease overwhelms him, and now that he is bed-ridden he will never recover.'</VERS>\n\t\t\t<VERS vnumber=\"9\"> Even my close friend whom I trusted, he who shared meals with me, has turned against me.</VERS>\n\t\t\t<VERS vnumber=\"10\"> As for you, O LORD, have mercy on me and raise me up, so I can pay them back!\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> By this I know that you are pleased with me, for my enemy does not triumph over me.</VERS>\n\t\t\t<VERS vnumber=\"12\"> As for me, you uphold me because of my integrity; you allow me permanent access to your presence.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The LORD God of Israel deserves praise in the future and forevermore! We agree! We agree! Book 2 (Psalms 42-72)</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"42\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director; a well-written song by the Korahites.] As a deer longs for streams of water, so I long for you, O God!</VERS>\n\t\t\t<VERS vnumber=\"2\"> I thirst for God, for the living God. I say, \"When will I be able to go and appear in God's presence?\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> I cannot eat, I weep day and night; all day long they say to me, \"Where is your God?\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> I will remember and weep! For I was once walking along with the great throng to the temple of God, shouting and giving thanks along with the crowd as we celebrated the holy festival.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Why are you depressed, O my soul? Why are you upset? Wait for God! For I will again give thanks to my God for his saving intervention.</VERS>\n\t\t\t<VERS vnumber=\"6\"> I am depressed, so I will pray to you while I am trapped here in the region of the upper Jordan, from Hermon, from Mount Mizar.</VERS>\n\t\t\t<VERS vnumber=\"7\"> One deep stream calls out to another at the sound of your waterfalls; all your billows and waves overwhelm me.</VERS>\n\t\t\t<VERS vnumber=\"8\"> By day the LORD decrees his loyal love, and by night he gives me a song, a prayer to the living God.</VERS>\n\t\t\t<VERS vnumber=\"9\"> I will pray to God, my high ridge: \"Why do you ignore me? Why must I walk around mourning because my enemies oppress me?\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> My enemies' taunts cut into me to the bone, as they say to me all day long, \"Where is your God?\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> Why are you depressed, O my soul? Why are you upset? Wait for God! For I will again give thanks to my God for his saving intervention.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"43\">\n\t\t\t<VERS vnumber=\"1\"> Vindicate me, O God! Fight for me against an ungodly nation! Deliver me from deceitful and evil men!</VERS>\n\t\t\t<VERS vnumber=\"2\"> For you are the God who shelters me. Why do you reject me? Why must I walk around mourning because my enemies oppress me?</VERS>\n\t\t\t<VERS vnumber=\"3\"> Reveal your light and your faithfulness! They will lead me, they will escort me back to your holy hill, and to the place where you live.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Then I will go to the altar of God, to the God who gives me ecstatic joy, so that I express my thanks to you, O God, my God, with a harp.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Why are you depressed, O my soul? Why are you upset? Wait for God! For I will again give thanks to my God for his saving intervention.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"44\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director; by the Korahites, a well-written song.] O God, we have clearly heard; our ancestors have told us what you did in their days, in ancient times.</VERS>\n\t\t\t<VERS vnumber=\"2\"> You, by your power, defeated nations and settled our fathers on their land; you crushed the people living there and enabled our ancestors to occupy it.</VERS>\n\t\t\t<VERS vnumber=\"3\"> For they did not conquer the land by their swords, and they did not prevail by their strength, but rather by your power, strength and good favor, for you were partial to them.</VERS>\n\t\t\t<VERS vnumber=\"4\"> You are my king, O God! Decree Jacob's deliverance!</VERS>\n\t\t\t<VERS vnumber=\"5\"> By your power we will drive back our enemies; by your strength we will trample down our foes!</VERS>\n\t\t\t<VERS vnumber=\"6\"> For I do not trust in my bow, and I do not prevail by my sword.</VERS>\n\t\t\t<VERS vnumber=\"7\"> For you deliver us from our enemies; you humiliate those who hate us.</VERS>\n\t\t\t<VERS vnumber=\"8\"> In God I boast all day long, and we will continually give thanks to your name. (Selah)</VERS>\n\t\t\t<VERS vnumber=\"9\"> But you rejected and embarrassed us! You did not go into battle with our armies.</VERS>\n\t\t\t<VERS vnumber=\"10\"> You made us retreat from the enemy. Those who hate us take whatever they want from us.</VERS>\n\t\t\t<VERS vnumber=\"11\"> You handed us over like sheep to be eaten; you scattered us among the nations.</VERS>\n\t\t\t<VERS vnumber=\"12\"> You sold your people for a pittance; you did not ask a high price for them.</VERS>\n\t\t\t<VERS vnumber=\"13\"> You made us an object of disdain to our neighbors; those who live on our borders taunt and insult us.</VERS>\n\t\t\t<VERS vnumber=\"14\"> You made us an object of ridicule among the nations; foreigners treat us with contempt.</VERS>\n\t\t\t<VERS vnumber=\"15\"> All day long I feel humiliated and am overwhelmed with shame,</VERS>\n\t\t\t<VERS vnumber=\"16\"> before the vindictive enemy who ridicules and insults me.</VERS>\n\t\t\t<VERS vnumber=\"17\"> All this has happened to us, even though we have not rejected you or violated your covenant with us.</VERS>\n\t\t\t<VERS vnumber=\"18\"> We have not been unfaithful, nor have we disobeyed your commands.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Yet you have battered us, leaving us a heap of ruins overrun by wild dogs; you have covered us with darkness.</VERS>\n\t\t\t<VERS vnumber=\"20\"> If we had rejected our God, and spread out our hands in prayer to another god,</VERS>\n\t\t\t<VERS vnumber=\"21\"> would not God discover it, for he knows one's thoughts?</VERS>\n\t\t\t<VERS vnumber=\"22\"> Yet because of you we are killed all day long; we are treated like sheep at the slaughtering block.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Rouse yourself! Why do you sleep, O Lord? Wake up! Do not reject us forever!</VERS>\n\t\t\t<VERS vnumber=\"24\"> Why do you look the other way, and ignore the way we are oppressed and mistreated?</VERS>\n\t\t\t<VERS vnumber=\"25\"> For we lie in the dirt, with our bellies pressed to the ground.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Rise up and help us! Rescue us because of your loyal love!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"45\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director; according to the tune of \"Lilies;\" by the Korahites, a well-written poem, a love song.] My heart is stirred by a beautiful song. I say, \"I have composed this special song for the king; my tongue is as skilled as the stylus of an experienced scribe.\"</VERS>\n\t\t\t<VERS vnumber=\"2\"> You are the most handsome of all men! You speak in an impressive and fitting manner! For this reason God grants you continual blessings.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Strap your sword to your thigh, O warrior! Appear in your majestic splendor!</VERS>\n\t\t\t<VERS vnumber=\"4\"> Appear in your majesty and be victorious! Ride forth for the sake of what is right, on behalf of justice! Then your right hand will accomplish mighty acts!</VERS>\n\t\t\t<VERS vnumber=\"5\"> Your arrows are sharp and penetrate the hearts of the king's enemies. Nations fall at your feet.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Your throne, O God, is permanent. The scepter of your kingdom is a scepter of justice.</VERS>\n\t\t\t<VERS vnumber=\"7\"> You love justice and hate evil. For this reason God, your God has anointed you with the oil of joy, elevating you above your companions.</VERS>\n\t\t\t<VERS vnumber=\"8\"> All your garments are perfumed with myrrh, aloes, and cassia. From the luxurious palaces comes the music of stringed instruments that makes you happy.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Princesses are among your honored guests, your bride stands at your right hand, wearing jewelry made with gold from Ophir.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Listen, O princess! Observe and pay attention! Forget your homeland and your family!</VERS>\n\t\t\t<VERS vnumber=\"11\"> Then the king will be attracted by your beauty. After all, he is your master! Submit to him!</VERS>\n\t\t\t<VERS vnumber=\"12\"> Rich people from Tyre will seek your favor by bringing a gift.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The princess looks absolutely magnificent, decked out in pearls and clothed in a brocade trimmed with gold.</VERS>\n\t\t\t<VERS vnumber=\"14\"> In embroidered robes she is escorted to the king. Her attendants, the maidens of honor who follow her, are led before you.</VERS>\n\t\t\t<VERS vnumber=\"15\"> They are bubbling with joy as they walk in procession and enter the royal palace.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Your sons will carry on the dynasty of your ancestors; you will make them princes throughout the land.</VERS>\n\t\t\t<VERS vnumber=\"17\"> I will proclaim your greatness through the coming years, then the nations will praise you forever.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"46\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director; by the Korahites; according to the alamoth style; a song.] God is our strong refuge; he is truly our helper in times of trouble.</VERS>\n\t\t\t<VERS vnumber=\"2\"> For this reason we do not fear when the earth shakes, and the mountains tumble into the depths of the sea,</VERS>\n\t\t\t<VERS vnumber=\"3\"> when its waves crash and foam, and the mountains shake before the surging sea. (Selah)</VERS>\n\t\t\t<VERS vnumber=\"4\"> The river's channels bring joy to the city of God, the special, holy dwelling place of the sovereign One.</VERS>\n\t\t\t<VERS vnumber=\"5\"> God lives within it, it cannot be moved. God rescues it at the break of dawn.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Nations are in uproar, kingdoms are overthrown. God gives a shout, the earth dissolves.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The LORD who commands armies is on our side! The God of Jacob is our protector! (Selah)</VERS>\n\t\t\t<VERS vnumber=\"8\"> Come! Witness the exploits of the LORD, who brings devastation to the earth!</VERS>\n\t\t\t<VERS vnumber=\"9\"> He brings an end to wars throughout the earth; he shatters the bow and breaks the spear; he burns the shields with fire.</VERS>\n\t\t\t<VERS vnumber=\"10\"> He says, \"Stop your striving and recognize that I am God! I will be exalted over the nations! I will be exalted over the earth!\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> The LORD who commands armies is on our side! The God of Jacob is our protector! (Selah)</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"47\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director; by the Korahites; a psalm.] All you nations, clap your hands! Shout out to God in celebration!</VERS>\n\t\t\t<VERS vnumber=\"2\"> For the sovereign LORD is awe-inspiring; he is the great king who rules the whole earth!</VERS>\n\t\t\t<VERS vnumber=\"3\"> He subdued nations beneath us and countries under our feet.</VERS>\n\t\t\t<VERS vnumber=\"4\"> He picked out for us a special land to be a source of pride for Jacob, whom he loves. (Selah)</VERS>\n\t\t\t<VERS vnumber=\"5\"> God has ascended his throne amid loud shouts; the LORD has ascended his throne amid the blaring of ram's horns.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Sing to God! Sing! Sing to our king! Sing!</VERS>\n\t\t\t<VERS vnumber=\"7\"> For God is king of the whole earth! Sing a well-written song!</VERS>\n\t\t\t<VERS vnumber=\"8\"> God reigns over the nations! God sits on his holy throne!</VERS>\n\t\t\t<VERS vnumber=\"9\"> The nobles of the nations assemble, along with the people of the God of Abraham, for God has authority over the rulers of the earth. He is highly exalted!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"48\">\n\t\t\t<VERS vnumber=\"1\"> [A song, a psalm by the Korahites.] The LORD is great and certainly worthy of praise in the city of our God, his holy hill.</VERS>\n\t\t\t<VERS vnumber=\"2\"> It is lofty and pleasing to look at, a source of joy to the whole earth. Mount Zion resembles the peaks of Zaphon; it is the city of the great king.</VERS>\n\t\t\t<VERS vnumber=\"3\"> God is in its fortresses; he reveals himself as its defender.</VERS>\n\t\t\t<VERS vnumber=\"4\"> For look, the kings assemble; they advance together.</VERS>\n\t\t\t<VERS vnumber=\"5\"> As soon as they see, they are shocked; they are terrified, they quickly retreat.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Look at them shake uncontrollably, like a woman writhing in childbirth.</VERS>\n\t\t\t<VERS vnumber=\"7\"> With an east wind you shatter the large ships.</VERS>\n\t\t\t<VERS vnumber=\"8\"> We heard about God's mighty deeds, now we have seen them, in the city of the LORD, the invincible Warrior, in the city of our God. God makes it permanently secure. (Selah)</VERS>\n\t\t\t<VERS vnumber=\"9\"> We reflect on your loyal love, O God, within your temple.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The praise you receive as far away as the ends of the earth is worthy of your reputation, O God. You execute justice!</VERS>\n\t\t\t<VERS vnumber=\"11\"> Mount Zion rejoices; the towns of Judah are happy, because of your acts of judgment.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Walk around Zion! Encircle it! Count its towers!</VERS>\n\t\t\t<VERS vnumber=\"13\"> Consider its defenses! Walk through its fortresses, so you can tell the next generation about it!</VERS>\n\t\t\t<VERS vnumber=\"14\"> For God, our God, is our defender forever! He guides us!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"49\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director, a psalm by the Korahites.] Listen to this, all you nations! Pay attention, all you inhabitants of the world!</VERS>\n\t\t\t<VERS vnumber=\"2\"> Pay attention, all you people, both rich and poor!</VERS>\n\t\t\t<VERS vnumber=\"3\"> I will declare a wise saying; I will share my profound thoughts.</VERS>\n\t\t\t<VERS vnumber=\"4\"> I will learn a song that imparts wisdom; I will then sing my insightful song to the accompaniment of a harp.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Why should I be afraid in times of trouble, when the sinful deeds of deceptive men threaten to overwhelm me?</VERS>\n\t\t\t<VERS vnumber=\"6\"> They trust in their wealth and boast in their great riches.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Certainly a man cannot rescue his brother; he cannot pay God an adequate ransom price</VERS>\n\t\t\t<VERS vnumber=\"8\"> (the ransom price for a human life is too high, and people go to their final destiny),</VERS>\n\t\t\t<VERS vnumber=\"9\"> so that he might continue to live forever and not experience death.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Surely one sees that even wise people die; fools and spiritually insensitive people all pass away and leave their wealth to others.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Their grave becomes their permanent residence, their eternal dwelling place. They name their lands after themselves,</VERS>\n\t\t\t<VERS vnumber=\"12\"> but, despite their wealth, people do not last, they are like animals that perish.</VERS>\n\t\t\t<VERS vnumber=\"13\"> This is the destiny of fools, and of those who approve of their philosophy. (Selah)</VERS>\n\t\t\t<VERS vnumber=\"14\"> They will travel to Sheol like sheep, with death as their shepherd. The godly will rule over them when the day of vindication dawns; Sheol will consume their bodies and they will no longer live in impressive houses.</VERS>\n\t\t\t<VERS vnumber=\"15\"> But God will rescue my life from the power of Sheol; certainly he will pull me to safety. (Selah)</VERS>\n\t\t\t<VERS vnumber=\"16\"> Do not be afraid when a man becomes rich and his wealth multiplies!</VERS>\n\t\t\t<VERS vnumber=\"17\"> For he will take nothing with him when he dies; his wealth will not follow him down into the grave.</VERS>\n\t\t\t<VERS vnumber=\"18\"> He pronounces this blessing on himself while he is alive: \"May men praise you, for you have done well!\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> But he will join his ancestors; they will never again see the light of day.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Wealthy people do not understand; they are like animals that perish.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"50\">\n\t\t\t<VERS vnumber=\"1\"> [A psalm by Asaph.] El, God, the LORD speaks, and summons the earth to come from the east and west.</VERS>\n\t\t\t<VERS vnumber=\"2\"> From Zion, the most beautiful of all places, God comes in splendor.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Our God approaches and is not silent; consuming fire goes ahead of him and all around him a storm rages.</VERS>\n\t\t\t<VERS vnumber=\"4\"> He summons the heavens above, as well as the earth, so that he might judge his people.</VERS>\n\t\t\t<VERS vnumber=\"5\"> He says: \"Assemble my covenant people before me, those who ratified a covenant with me by sacrifice!\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> The heavens declare his fairness, for God is judge. (Selah)</VERS>\n\t\t\t<VERS vnumber=\"7\"> He says: \"Listen my people! I am speaking! Listen Israel! I am accusing you! I am God, your God!</VERS>\n\t\t\t<VERS vnumber=\"8\"> I am not condemning you because of your sacrifices, or because of your burnt sacrifices that you continually offer me.</VERS>\n\t\t\t<VERS vnumber=\"9\"> I do not need to take a bull from your household or goats from your sheepfolds.</VERS>\n\t\t\t<VERS vnumber=\"10\"> For every wild animal in the forest belongs to me, as well as the cattle that graze on a thousand hills.</VERS>\n\t\t\t<VERS vnumber=\"11\"> I keep track of every bird in the hills, and the insects of the field are mine.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Even if I were hungry, I would not tell you, for the world and all it contains belong to me.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Do I eat the flesh of bulls? Do I drink the blood of goats?</VERS>\n\t\t\t<VERS vnumber=\"14\"> Present to God a thank-offering! Repay your vows to the sovereign One!</VERS>\n\t\t\t<VERS vnumber=\"15\"> Pray to me when you are in trouble! I will deliver you, and you will honor me!\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> God says this to the evildoer: \"How can you declare my commands, and talk about my covenant?</VERS>\n\t\t\t<VERS vnumber=\"17\"> For you hate instruction and reject my words.</VERS>\n\t\t\t<VERS vnumber=\"18\"> When you see a thief, you join him; you associate with men who are unfaithful to their wives.</VERS>\n\t\t\t<VERS vnumber=\"19\"> You do damage with words, and use your tongue to deceive.</VERS>\n\t\t\t<VERS vnumber=\"20\"> You plot against your brother; you slander your own brother.</VERS>\n\t\t\t<VERS vnumber=\"21\"> When you did these things, I was silent, so you thought I was exactly like you. But now I will condemn you and state my case against you!</VERS>\n\t\t\t<VERS vnumber=\"22\"> Carefully consider this, you who reject God! Otherwise I will rip you to shreds and no one will be able to rescue you.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Whoever presents a thank-offering honors me. To whoever obeys my commands, I will reveal my power to deliver.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"51\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director; a psalm of David, written when Nathan the prophet confronted him after David's affair with Bathsheba.] Have mercy on me, O God, because of your loyal love! Because of your great compassion, wipe away my rebellious acts!</VERS>\n\t\t\t<VERS vnumber=\"2\"> Wash away my wrongdoing! Cleanse me of my sin!</VERS>\n\t\t\t<VERS vnumber=\"3\"> For I am aware of my rebellious acts; I am forever conscious of my sin.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Against you, you above all, I have sinned; I have done what is evil in your sight. So you are just when you confront me; you are right when you condemn me.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Look, I was guilty of sin from birth, a sinner the moment my mother conceived me.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Look, you desire integrity in the inner man; you want me to possess wisdom.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Sprinkle me with water and I will be pure; wash me and I will be whiter than snow.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Grant me the ultimate joy of being forgiven! May the bones you crushed rejoice!</VERS>\n\t\t\t<VERS vnumber=\"9\"> Hide your face from my sins! Wipe away all my guilt!</VERS>\n\t\t\t<VERS vnumber=\"10\"> Create for me a pure heart, O God! Renew a resolute spirit within me!</VERS>\n\t\t\t<VERS vnumber=\"11\"> Do not reject me! Do not take your Holy Spirit away from me!</VERS>\n\t\t\t<VERS vnumber=\"12\"> Let me again experience the joy of your deliverance! Sustain me by giving me the desire to obey!</VERS>\n\t\t\t<VERS vnumber=\"13\"> Then I will teach rebels your merciful ways, and sinners will turn to you.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Rescue me from the guilt of murder, O God, the God who delivers me! Then my tongue will shout for joy because of your deliverance.</VERS>\n\t\t\t<VERS vnumber=\"15\"> O Lord, give me the words! Then my mouth will praise you.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Certainly you do not want a sacrifice, or else I would offer it; you do not desire a burnt sacrifice.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The sacrifices God desires are a humble spirit, O God, a humble and repentant heart you will not reject.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Because you favor Zion, do what is good for her! Fortify the walls of Jerusalem!</VERS>\n\t\t\t<VERS vnumber=\"19\"> Then you will accept the proper sacrifices, burnt sacrifices and whole offerings; then bulls will be sacrificed on your altar.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"52\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director; a well-written song by David. It was written when Doeg the Edomite went and informed Saul: \"David has arrived at the home of Ahimelech.\"] Why do you boast about your evil plans, O powerful man? God's loyal love protects me all day long!</VERS>\n\t\t\t<VERS vnumber=\"2\"> Your tongue carries out your destructive plans; it is as effective as a sharp razor, O deceiver.</VERS>\n\t\t\t<VERS vnumber=\"3\"> You love evil more than good, lies more than speaking the truth. (Selah)</VERS>\n\t\t\t<VERS vnumber=\"4\"> You love to use all the words that destroy, and the tongue that deceives.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Yet God will make you a permanent heap of ruins. He will scoop you up and remove you from your home; he will uproot you from the land of the living. (Selah)</VERS>\n\t\t\t<VERS vnumber=\"6\"> When the godly see this, they will be filled with awe, and will mock the evildoer, saying:</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"Look, here is the man who would not make God his protector! He trusted in his great wealth and was confident about his plans to destroy others.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> But I am like a flourishing olive tree in the house of God; I continually trust in God's loyal love.</VERS>\n\t\t\t<VERS vnumber=\"9\"> I will continually thank you when you execute judgment; I will rely on you, for your loyal followers know you are good.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"53\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director; according to the machalath style; a well-written song by David.] Fools say to themselves, \"There is no God.\" They sin and commit evil deeds; none of them does what is right.</VERS>\n\t\t\t<VERS vnumber=\"2\"> God looks down from heaven at the human race, to see if there is anyone who is wise and seeks God.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Everyone rejects God; they are all morally corrupt. None of them does what is right, not even one!</VERS>\n\t\t\t<VERS vnumber=\"4\"> All those who behave wickedly do not understand, those who devour my people as if they were eating bread, and do not call out to God.</VERS>\n\t\t\t<VERS vnumber=\"5\"> They are absolutely terrified, even by things that do not normally cause fear. For God annihilates those who attack you. You are able to humiliate them because God has rejected them.</VERS>\n\t\t\t<VERS vnumber=\"6\"> I wish the deliverance of Israel would come from Zion! When God restores the well-being of his people, may Jacob rejoice, may Israel be happy!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"54\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director, to be accompanied by stringed instruments; a well-written song by David. It was written when the Ziphites came and informed Saul: \"David is hiding with us.\"] O God, deliver me by your name! Vindicate me by your power!</VERS>\n\t\t\t<VERS vnumber=\"2\"> O God, listen to my prayer! Pay attention to what I say!</VERS>\n\t\t\t<VERS vnumber=\"3\"> For foreigners attack me; ruthless men, who do not respect God, seek my life. (Selah)</VERS>\n\t\t\t<VERS vnumber=\"4\"> Look, God is my deliverer! The Lord is among those who support me.</VERS>\n\t\t\t<VERS vnumber=\"5\"> May those who wait to ambush me be repaid for their evil! As a demonstration of your faithfulness, destroy them!</VERS>\n\t\t\t<VERS vnumber=\"6\"> With a freewill offering I will sacrifice to you! I will give thanks to your name, O LORD, for it is good!</VERS>\n\t\t\t<VERS vnumber=\"7\"> Surely he rescues me from all trouble, and I triumph over my enemies.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"55\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director, to be accompanied by stringed instruments; a well-written song by David.] Listen, O God, to my prayer! Do not ignore my appeal for mercy!</VERS>\n\t\t\t<VERS vnumber=\"2\"> Pay attention to me and answer me! I am so upset and distressed, I am beside myself,</VERS>\n\t\t\t<VERS vnumber=\"3\"> because of what the enemy says, and because of how the wicked pressure me, for they hurl trouble down upon me and angrily attack me.</VERS>\n\t\t\t<VERS vnumber=\"4\"> My heart beats violently within me; the horrors of death overcome me.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Fear and panic overpower me; terror overwhelms me.</VERS>\n\t\t\t<VERS vnumber=\"6\"> I say, \"I wish I had wings like a dove! I would fly away and settle in a safe place!</VERS>\n\t\t\t<VERS vnumber=\"7\"> Look, I will escape to a distant place; I will stay in the wilderness. (Selah)</VERS>\n\t\t\t<VERS vnumber=\"8\"> I will hurry off to a place that is safe from the strong wind and the gale.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> Confuse them, O Lord! Frustrate their plans! For I see violence and conflict in the city.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Day and night they walk around on its walls, while wickedness and destruction are within it.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Disaster is within it; violence and deceit do not depart from its public square.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Indeed, it is not an enemy who insults me, or else I could bear it; it is not one who hates me who arrogantly taunts me, or else I could hide from him.</VERS>\n\t\t\t<VERS vnumber=\"13\"> But it is you, a man like me, my close friend in whom I confided.</VERS>\n\t\t\t<VERS vnumber=\"14\"> We would share personal thoughts with each other; in God's temple we would walk together among the crowd.</VERS>\n\t\t\t<VERS vnumber=\"15\"> May death destroy them! May they go down alive into Sheol! For evil is in their dwelling place and in their midst.</VERS>\n\t\t\t<VERS vnumber=\"16\"> As for me, I will call out to God, and the LORD will deliver me.</VERS>\n\t\t\t<VERS vnumber=\"17\"> During the evening, morning, and noontime I will lament and moan, and he will hear me.</VERS>\n\t\t\t<VERS vnumber=\"18\"> He will rescue me and protect me from those who attack me, even though they greatly outnumber me.</VERS>\n\t\t\t<VERS vnumber=\"19\"> God, the one who has reigned as king from long ago, will hear and humiliate them. (Selah) They refuse to change, and do not fear God.</VERS>\n\t\t\t<VERS vnumber=\"20\"> He attacks his friends; he breaks his solemn promises to them.</VERS>\n\t\t\t<VERS vnumber=\"21\"> His words are as smooth as butter, but he harbors animosity in his heart. His words seem softer than oil, but they are really like sharp swords.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Throw your burden upon the LORD, and he will sustain you. He will never allow the godly to be upended.</VERS>\n\t\t\t<VERS vnumber=\"23\"> But you, O God, will bring them down to the deep Pit. Violent and deceitful people will not live even half a normal lifespan. But as for me, I trust in you.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"56\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director; according to the yonath-elem-rechovim style; a prayer of David, written when the Philistines captured him in Gath.] Have mercy on me, O God, for men are attacking me! All day long hostile enemies are tormenting me.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Those who anticipate my defeat attack me all day long. Indeed, many are fighting against me, O Exalted One.</VERS>\n\t\t\t<VERS vnumber=\"3\"> When I am afraid, I trust in you.</VERS>\n\t\t\t<VERS vnumber=\"4\"> In God, I boast in his promise, in God I trust, I am not afraid. What can mere men do to me?</VERS>\n\t\t\t<VERS vnumber=\"5\"> All day long they cause me trouble; they make a habit of plotting my demise.</VERS>\n\t\t\t<VERS vnumber=\"6\"> They stalk and lurk; they watch my every step, as they prepare to take my life.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Because they are bent on violence, do not let them escape! In your anger bring down the nations, O God!</VERS>\n\t\t\t<VERS vnumber=\"8\"> You keep track of my misery. Put my tears in your leather container! Are they not recorded in your scroll?</VERS>\n\t\t\t<VERS vnumber=\"9\"> My enemies will turn back when I cry out to you for help; I know that God is on my side.</VERS>\n\t\t\t<VERS vnumber=\"10\"> In God, I boast in his promise, in the LORD, I boast in his promise,</VERS>\n\t\t\t<VERS vnumber=\"11\"> in God I trust, I am not afraid. What can mere men do to me?</VERS>\n\t\t\t<VERS vnumber=\"12\"> I am obligated to fulfill the vows I made to you, O God; I will give you the thank-offerings you deserve,</VERS>\n\t\t\t<VERS vnumber=\"13\"> when you deliver my life from death. You keep my feet from stumbling, so that I might serve God as I enjoy life.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"57\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director; according to the al-tashcheth style; a prayer of David, written when he fled from Saul into the cave.] Have mercy on me, O God! Have mercy on me! For in you I have taken shelter. In the shadow of your wings I take shelter until trouble passes.</VERS>\n\t\t\t<VERS vnumber=\"2\"> I cry out for help to the sovereign God, to the God who vindicates me.</VERS>\n\t\t\t<VERS vnumber=\"3\"> May he send help from heaven and deliver me from my enemies who hurl insults! (Selah) May God send his loyal love and faithfulness!</VERS>\n\t\t\t<VERS vnumber=\"4\"> I am surrounded by lions; I lie down among those who want to devour me; men whose teeth are spears and arrows, whose tongues are a sharp sword.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Rise up above the sky, O God! May your splendor cover the whole earth!</VERS>\n\t\t\t<VERS vnumber=\"6\"> They have prepared a net to trap me; I am discouraged. They have dug a pit for me. They will fall into it! (Selah)</VERS>\n\t\t\t<VERS vnumber=\"7\"> I am determined, O God! I am determined! I will sing and praise you!</VERS>\n\t\t\t<VERS vnumber=\"8\"> Awake, my soul! Awake, O stringed instrument and harp! I will wake up at dawn!</VERS>\n\t\t\t<VERS vnumber=\"9\"> I will give you thanks before the nations, O Master! I will sing praises to you before foreigners!</VERS>\n\t\t\t<VERS vnumber=\"10\"> For your loyal love extends beyond the sky, and your faithfulness reaches the clouds.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Rise up above the sky, O God! May your splendor cover the whole earth!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"58\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director; according to the al-tashcheth style; a prayer of David.] Do you rulers really pronounce just decisions? Do you judge people fairly?</VERS>\n\t\t\t<VERS vnumber=\"2\"> No! You plan how to do what is unjust; you deal out violence in the earth.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The wicked turn aside from birth; liars go astray as soon as they are born.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Their venom is like that of a snake, like a deaf serpent that does not hear,</VERS>\n\t\t\t<VERS vnumber=\"5\"> that does not respond to the magicians, or to a skilled snake-charmer.</VERS>\n\t\t\t<VERS vnumber=\"6\"> O God, break the teeth in their mouths! Smash the jawbones of the lions, O LORD!</VERS>\n\t\t\t<VERS vnumber=\"7\"> Let them disappear like water that flows away! Let them wither like grass!</VERS>\n\t\t\t<VERS vnumber=\"8\"> Let them be like a snail that melts away as it moves along! Let them be like stillborn babies that never see the sun!</VERS>\n\t\t\t<VERS vnumber=\"9\"> Before the kindling is even placed under your pots, he will sweep it away along with both the raw and cooked meat.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The godly will rejoice when they see vengeance carried out; they will bathe their feet in the blood of the wicked.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Then observers will say, \"Yes indeed, the godly are rewarded! Yes indeed, there is a God who judges in the earth!\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"59\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director; according to the al-tashcheth style; a prayer of David, written when Saul sent men to surround his house and murder him.] Deliver me from my enemies, my God! Protect me from those who attack me!</VERS>\n\t\t\t<VERS vnumber=\"2\"> Deliver me from evildoers! Rescue me from violent men!</VERS>\n\t\t\t<VERS vnumber=\"3\"> For look, they wait to ambush me; powerful men stalk me, but not because I have rebelled or sinned, O LORD.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Though I have done nothing wrong, they are anxious to attack. Spring into action and help me! Take notice of me!</VERS>\n\t\t\t<VERS vnumber=\"5\"> You, O LORD God, the invincible warrior, the God of Israel, rouse yourself and punish all the nations! Have no mercy on any treacherous evildoers! (Selah)</VERS>\n\t\t\t<VERS vnumber=\"6\"> They return in the evening; they growl like a dog and prowl around outside the city.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Look, they hurl insults at me and openly threaten to kill me, for they say, \"Who hears?\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> But you, O LORD, laugh in disgust at them; you taunt all the nations.</VERS>\n\t\t\t<VERS vnumber=\"9\"> You are my source of strength! I will wait for you! For God is my refuge.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The God who loves me will help me; God will enable me to triumph over my enemies.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Do not strike them dead suddenly, because then my people might forget the lesson. Use your power to make them homeless vagabonds and then bring them down, O Lord who shields us!</VERS>\n\t\t\t<VERS vnumber=\"12\"> They speak sinful words. So let them be trapped by their own pride and by the curses and lies they speak!</VERS>\n\t\t\t<VERS vnumber=\"13\"> Angrily wipe them out! Wipe them out so they vanish! Let them know that God rules in Jacob and to the ends of the earth! (Selah)</VERS>\n\t\t\t<VERS vnumber=\"14\"> They return in the evening; they growl like a dog and prowl around outside the city.</VERS>\n\t\t\t<VERS vnumber=\"15\"> They wander around looking for something to eat; they refuse to sleep until they are full.</VERS>\n\t\t\t<VERS vnumber=\"16\"> As for me, I will sing about your strength; I will praise your loyal love in the morning. For you are my refuge and my place of shelter when I face trouble.</VERS>\n\t\t\t<VERS vnumber=\"17\"> You are my source of strength! I will sing praises to you! For God is my refuge, the God who loves me.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"60\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director; according to the shushan-eduth style; a prayer of David written to instruct others. It was written when he fought against Aram Naharaim and Aram-Zobah. That was when Joab turned back and struck down 12,000 Edomites in the Valley of Salt.] O God, you have rejected us. You suddenly turned on us in your anger. Please restore us!</VERS>\n\t\t\t<VERS vnumber=\"2\"> You made the earth quake; you split it open. Repair its breaches, for it is ready to fall.</VERS>\n\t\t\t<VERS vnumber=\"3\"> You have made your people experience hard times; you have made us drink intoxicating wine.</VERS>\n\t\t\t<VERS vnumber=\"4\"> You have given your loyal followers a rallying flag, so that they might seek safety from the bow. (Selah)</VERS>\n\t\t\t<VERS vnumber=\"5\"> Deliver by your power and answer me, so that the ones you love may be safe.</VERS>\n\t\t\t<VERS vnumber=\"6\"> God has spoken in his sanctuary: \"I will triumph! I will parcel out Shechem; the Valley of Succoth I will measure off.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Gilead belongs to me, as does Manasseh! Ephraim is my helmet, Judah my royal scepter.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Moab is my washbasin. I will make Edom serve me. I will shout in triumph over Philistia.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> Who will lead me into the fortified city? Who will bring me to Edom?</VERS>\n\t\t\t<VERS vnumber=\"10\"> Have you not rejected us, O God? O God, you do not go into battle with our armies.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Give us help against the enemy, for any help men might offer is futile.</VERS>\n\t\t\t<VERS vnumber=\"12\"> By God's power we will conquer; he will trample down our enemies.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"61\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director; to be played on a stringed instrument; written by David.] O God, hear my cry for help! Pay attention to my prayer!</VERS>\n\t\t\t<VERS vnumber=\"2\"> From the most remote place on earth I call out to you in my despair. Lead me up to an inaccessible rocky summit!</VERS>\n\t\t\t<VERS vnumber=\"3\"> Indeed, you are my shelter, a strong tower that protects me from the enemy.</VERS>\n\t\t\t<VERS vnumber=\"4\"> I will be a permanent guest in your home; I will find shelter in the protection of your wings. (Selah)</VERS>\n\t\t\t<VERS vnumber=\"5\"> For you, O God, hear my vows; you grant me the reward that belongs to your loyal followers.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Give the king long life! Make his lifetime span several generations!</VERS>\n\t\t\t<VERS vnumber=\"7\"> May he reign forever before God! Decree that your loyal love and faithfulness should protect him.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Then I will sing praises to your name continually, as I fulfill my vows day after day.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"62\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director, Jeduthun; a psalm of David.] For God alone I patiently wait; he is the one who delivers me.</VERS>\n\t\t\t<VERS vnumber=\"2\"> He alone is my protector and deliverer. He is my refuge; I will not be upended.</VERS>\n\t\t\t<VERS vnumber=\"3\"> How long will you threaten a man? All of you are murderers, as dangerous as a leaning wall or an unstable fence.</VERS>\n\t\t\t<VERS vnumber=\"4\"> They spend all their time planning how to bring him down. They love to use deceit; they pronounce blessings with their mouths, but inwardly they utter curses. (Selah)</VERS>\n\t\t\t<VERS vnumber=\"5\"> Patiently wait for God alone, my soul! For he is the one who gives me confidence.</VERS>\n\t\t\t<VERS vnumber=\"6\"> He alone is my protector and deliverer. He is my refuge; I will not be upended.</VERS>\n\t\t\t<VERS vnumber=\"7\"> God delivers me and exalts me; God is my strong protector and my shelter.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Trust in him at all times, you people! Pour out your hearts before him! God is our shelter! (Selah)</VERS>\n\t\t\t<VERS vnumber=\"9\"> Men are nothing but a mere breath; human beings are unreliable. When they are weighed in the scales, all of them together are lighter than air.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Do not trust in what you can gain by oppression! Do not put false confidence in what you can gain by robbery! If wealth increases, do not become attached to it!</VERS>\n\t\t\t<VERS vnumber=\"11\"> God has declared one principle; two principles I have heard: God is strong,</VERS>\n\t\t\t<VERS vnumber=\"12\"> and you, O Lord, demonstrate loyal love. For you repay men for what they do.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"63\">\n\t\t\t<VERS vnumber=\"1\"> [A psalm of David, written when he was in the Judean wilderness.] O God, you are my God! I long for you! My soul thirsts for you, my flesh yearns for you, in a dry and parched land where there is no water.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Yes, in the sanctuary I have seen you, and witnessed your power and splendor.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Because experiencing your loyal love is better than life itself, my lips will praise you.</VERS>\n\t\t\t<VERS vnumber=\"4\"> For this reason I will praise you while I live; in your name I will lift up my hands.</VERS>\n\t\t\t<VERS vnumber=\"5\"> As if with choice meat you satisfy my soul. My mouth joyfully praises you,</VERS>\n\t\t\t<VERS vnumber=\"6\"> whenever I remember you on my bed, and think about you during the nighttime hours.</VERS>\n\t\t\t<VERS vnumber=\"7\"> For you are my deliverer; under your wings I rejoice.</VERS>\n\t\t\t<VERS vnumber=\"8\"> My soul pursues you; your right hand upholds me.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Enemies seek to destroy my life, but they will descend into the depths of the earth.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Each one will be handed over to the sword; their corpses will be eaten by jackals.</VERS>\n\t\t\t<VERS vnumber=\"11\"> But the king will rejoice in God; everyone who takes oaths in his name will boast, for the mouths of those who speak lies will be shut up.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"64\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director; a psalm of David.] Listen to me, O God, as I offer my lament! Protect my life from the enemy's terrifying attacks.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Hide me from the plots of evil men, from the crowd of evildoers.</VERS>\n\t\t\t<VERS vnumber=\"3\"> They sharpen their tongues like a sword; they aim their arrow, a slanderous charge,</VERS>\n\t\t\t<VERS vnumber=\"4\"> in order to shoot down the innocent in secluded places. They shoot at him suddenly and are unafraid of retaliation.</VERS>\n\t\t\t<VERS vnumber=\"5\"> They encourage one another to carry out their evil deed. They plan how to hide snares, and boast, \"Who will see them?\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> They devise unjust schemes; they disguise a well-conceived plot. Man's inner thoughts cannot be discovered.</VERS>\n\t\t\t<VERS vnumber=\"7\"> But God will shoot at them; suddenly they will be wounded by an arrow.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Their slander will bring about their demise. All who see them will shudder,</VERS>\n\t\t\t<VERS vnumber=\"9\"> and all people will fear. They will proclaim what God has done, and reflect on his deeds.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The godly will rejoice in the LORD and take shelter in him. All the morally upright will boast.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"65\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director; a psalm of David, a song.] Praise awaits you, O God, in Zion. Vows made to you are fulfilled.</VERS>\n\t\t\t<VERS vnumber=\"2\"> You hear prayers; all people approach you.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Our record of sins overwhelms me, but you forgive our acts of rebellion.</VERS>\n\t\t\t<VERS vnumber=\"4\"> How blessed is the one whom you choose, and allow to live in your palace courts. May we be satisfied with the good things of your house, your holy palace.</VERS>\n\t\t\t<VERS vnumber=\"5\"> You answer our prayers by performing awesome acts of deliverance, O God, our savior. All the ends of the earth trust in you, as well as those living across the wide seas.</VERS>\n\t\t\t<VERS vnumber=\"6\"> You created the mountains by your power, and demonstrated your strength.</VERS>\n\t\t\t<VERS vnumber=\"7\"> You calm the raging seas and their roaring waves, as well as the commotion made by the nations.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Even those living in the most remote areas are awestruck by your acts; you cause those living in the east and west to praise you.</VERS>\n\t\t\t<VERS vnumber=\"9\"> You visit the earth and give it rain; you make it rich and fertile with overflowing streams full of water. You provide grain for them, for you prepare the earth to yield its crops.</VERS>\n\t\t\t<VERS vnumber=\"10\"> You saturate its furrows, and soak its plowed ground. With rain showers you soften its soil, and make its crops grow.</VERS>\n\t\t\t<VERS vnumber=\"11\"> You crown the year with your good blessings, and you leave abundance in your wake.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The pastures in the wilderness glisten with moisture, and the hills are clothed with joy.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The meadows are clothed with sheep, and the valleys are covered with grain. They shout joyfully, yes, they sing.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"66\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director; a song, a psalm.] Shout out praise to God, all the earth!</VERS>\n\t\t\t<VERS vnumber=\"2\"> Sing praises about the majesty of his reputation! Give him the honor he deserves!</VERS>\n\t\t\t<VERS vnumber=\"3\"> Say to God: \"How awesome are your deeds! Because of your great power your enemies cower in fear before you.</VERS>\n\t\t\t<VERS vnumber=\"4\"> All the earth worships you and sings praises to you! They sing praises to your name!\" (Selah)</VERS>\n\t\t\t<VERS vnumber=\"5\"> Come and witness God's exploits! His acts on behalf of people are awesome!</VERS>\n\t\t\t<VERS vnumber=\"6\"> He turned the sea into dry land; they passed through the river on foot. Let us rejoice in him there!</VERS>\n\t\t\t<VERS vnumber=\"7\"> He rules by his power forever; he watches the nations. Stubborn rebels should not exalt themselves. (Selah)</VERS>\n\t\t\t<VERS vnumber=\"8\"> Praise our God, you nations! Loudly proclaim his praise!</VERS>\n\t\t\t<VERS vnumber=\"9\"> He preserves our lives and does not allow our feet to slip.</VERS>\n\t\t\t<VERS vnumber=\"10\"> For you, O God, tested us; you purified us like refined silver.</VERS>\n\t\t\t<VERS vnumber=\"11\"> You led us into a trap; you caused us to suffer.</VERS>\n\t\t\t<VERS vnumber=\"12\"> You allowed men to ride over our heads; we passed through fire and water, but you brought us out into a wide open place.</VERS>\n\t\t\t<VERS vnumber=\"13\"> I will enter your temple with burnt sacrifices; I will fulfill the vows I made to you,</VERS>\n\t\t\t<VERS vnumber=\"14\"> which my lips uttered and my mouth spoke when I was in trouble.</VERS>\n\t\t\t<VERS vnumber=\"15\"> I will offer up to you fattened animals as burnt sacrifices, along with the smell of sacrificial rams. I will offer cattle and goats. (Selah)</VERS>\n\t\t\t<VERS vnumber=\"16\"> Come! Listen, all you who are loyal to God! I will declare what he has done for me.</VERS>\n\t\t\t<VERS vnumber=\"17\"> I cried out to him for help and praised him with my tongue.</VERS>\n\t\t\t<VERS vnumber=\"18\"> If I had harbored sin in my heart, the Lord would not have listened.</VERS>\n\t\t\t<VERS vnumber=\"19\"> However, God heard; he listened to my prayer.</VERS>\n\t\t\t<VERS vnumber=\"20\"> God deserves praise, for he did not reject my prayer or abandon his love for me!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"67\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director; to be accompanied by stringed instruments; a psalm, a song.] May God show us his favor and bless us! May he smile on us! (Selah)</VERS>\n\t\t\t<VERS vnumber=\"2\"> Then those living on earth will know what you are like; all nations will know how you deliver your people.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Let the nations thank you, O God! Let all the nations thank you!</VERS>\n\t\t\t<VERS vnumber=\"4\"> Let foreigners rejoice and celebrate! For you execute justice among the nations, and govern the people living on earth. (Selah)</VERS>\n\t\t\t<VERS vnumber=\"5\"> Let the nations thank you, O God! Let all the nations thank you!</VERS>\n\t\t\t<VERS vnumber=\"6\"> The earth yields its crops. May God, our God, bless us!</VERS>\n\t\t\t<VERS vnumber=\"7\"> May God bless us! Then all the ends of the earth will give him the honor he deserves.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"68\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director; by David, a psalm, a song.] God springs into action! His enemies scatter; his adversaries run from him.</VERS>\n\t\t\t<VERS vnumber=\"2\"> As smoke is driven away by the wind, so you drive them away. As wax melts before fire, so the wicked are destroyed before God.</VERS>\n\t\t\t<VERS vnumber=\"3\"> But the godly are happy; they rejoice before God and are overcome with joy.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Sing to God! Sing praises to his name! Exalt the one who rides on the clouds! For the LORD is his name! Rejoice before him!</VERS>\n\t\t\t<VERS vnumber=\"5\"> He is a father to the fatherless and an advocate for widows. God rules from his holy palace.</VERS>\n\t\t\t<VERS vnumber=\"6\"> God settles those who have been deserted in their own homes; he frees prisoners and grants them prosperity. But sinful rebels live in the desert.</VERS>\n\t\t\t<VERS vnumber=\"7\"> O God, when you lead your people into battle, when you march through the desert, (Selah)</VERS>\n\t\t\t<VERS vnumber=\"8\"> the earth shakes, yes, the heavens pour down rain before God, the God of Sinai, before God, the God of Israel.</VERS>\n\t\t\t<VERS vnumber=\"9\"> O God, you cause abundant showers to fall on your chosen people. When they are tired, you sustain them,</VERS>\n\t\t\t<VERS vnumber=\"10\"> for you live among them. You sustain the oppressed with your good blessings, O God.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The Lord speaks; many, many women spread the good news.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Kings leading armies run away, they run away! The lovely lady of the house divides up the loot.</VERS>\n\t\t\t<VERS vnumber=\"13\"> When you lie down among the sheepfolds, the wings of the dove are covered with silver and with glittering gold.</VERS>\n\t\t\t<VERS vnumber=\"14\"> When the sovereign judge scatters kings, let it snow on Zalmon!</VERS>\n\t\t\t<VERS vnumber=\"15\"> The mountain of Bashan is a towering mountain; the mountain of Bashan is a mountain with many peaks.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Why do you look with envy, O mountains with many peaks, at the mountain where God has decided to live? Indeed the LORD will live there permanently!</VERS>\n\t\t\t<VERS vnumber=\"17\"> God has countless chariots; they number in the thousands. The Lord comes from Sinai in holy splendor.</VERS>\n\t\t\t<VERS vnumber=\"18\"> You ascend on high, you have taken many captives. You receive tribute from men, including even sinful rebels. Indeed the LORD God lives there!</VERS>\n\t\t\t<VERS vnumber=\"19\"> The Lord deserves praise! Day after day he carries our burden, the God who delivers us. (Selah)</VERS>\n\t\t\t<VERS vnumber=\"20\"> Our God is a God who delivers; the LORD, the sovereign Lord, can rescue from death.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Indeed God strikes the heads of his enemies, the hairy foreheads of those who persist in rebellion.</VERS>\n\t\t\t<VERS vnumber=\"22\"> The Lord says, \"I will retrieve them from Bashan, I will bring them back from the depths of the sea,</VERS>\n\t\t\t<VERS vnumber=\"23\"> so that your feet may stomp in their blood, and your dogs may eat their portion of the enemies' corpses.\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> They see your processions, O God, the processions of my God, my king, who marches along in holy splendor.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Singers walk in front; musicians follow playing their stringed instruments, in the midst of young women playing tambourines.</VERS>\n\t\t\t<VERS vnumber=\"26\"> In your large assemblies praise God, the LORD, in the assemblies of Israel!</VERS>\n\t\t\t<VERS vnumber=\"27\"> There is little Benjamin, their ruler, and the princes of Judah in their robes, along with the princes of Zebulun and the princes of Naphtali.</VERS>\n\t\t\t<VERS vnumber=\"28\"> God has decreed that you will be powerful. O God, you who have acted on our behalf, demonstrate your power,</VERS>\n\t\t\t<VERS vnumber=\"29\"> as you come out of your temple in Jerusalem! Kings bring tribute to you.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Sound your battle cry against the wild beast of the reeds, and the nations that assemble like a herd of calves led by bulls! They humble themselves and offer gold and silver as tribute. God scatters the nations that like to do battle.</VERS>\n\t\t\t<VERS vnumber=\"31\"> They come with red cloth from Egypt, Ethiopia voluntarily offers tribute to God.</VERS>\n\t\t\t<VERS vnumber=\"32\"> O kingdoms of the earth, sing to God! Sing praises to the Lord, (Selah)</VERS>\n\t\t\t<VERS vnumber=\"33\"> to the one who rides through the sky from ancient times! Look! He thunders loudly.</VERS>\n\t\t\t<VERS vnumber=\"34\"> Acknowledge God's power, his sovereignty over Israel, and the power he reveals in the skies!</VERS>\n\t\t\t<VERS vnumber=\"35\"> You are awe-inspiring, O God, as you emerge from your holy temple! It is the God of Israel who gives the people power and strength. God deserves praise!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"69\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director; according to the tune of \"Lilies;\" by David.] Deliver me, O God, for the water has reached my neck.</VERS>\n\t\t\t<VERS vnumber=\"2\"> I sink into the deep mire where there is no solid ground; I am in deep water, and the current overpowers me.</VERS>\n\t\t\t<VERS vnumber=\"3\"> I am exhausted from shouting for help; my throat is sore; my eyes grow tired of looking for my God.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Those who hate me without cause are more numerous than the hairs of my head. Those who want to destroy me, my enemies for no reason, outnumber me. They make me repay what I did not steal!</VERS>\n\t\t\t<VERS vnumber=\"5\"> O God, you are aware of my foolish sins; my guilt is not hidden from you.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Let none who rely on you be disgraced because of me, O sovereign LORD and king! Let none who seek you be ashamed because of me, O God of Israel!</VERS>\n\t\t\t<VERS vnumber=\"7\"> For I suffer humiliation for your sake and am thoroughly disgraced.</VERS>\n\t\t\t<VERS vnumber=\"8\"> My own brothers treat me like a stranger; they act as if I were a foreigner.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Certainly zeal for your house consumes me; I endure the insults of those who insult you.</VERS>\n\t\t\t<VERS vnumber=\"10\"> I weep and refrain from eating food, which causes others to insult me.</VERS>\n\t\t\t<VERS vnumber=\"11\"> I wear sackcloth and they ridicule me.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Those who sit at the city gate gossip about me; drunkards mock me in their songs.</VERS>\n\t\t\t<VERS vnumber=\"13\"> O LORD, may you hear my prayer and be favorably disposed to me! O God, because of your great loyal love, answer me with your faithful deliverance!</VERS>\n\t\t\t<VERS vnumber=\"14\"> Rescue me from the mud! Don't let me sink! Deliver me from those who hate me, from the deep water!</VERS>\n\t\t\t<VERS vnumber=\"15\"> Don't let the current overpower me! Don't let the deep swallow me up! Don't let the pit devour me!</VERS>\n\t\t\t<VERS vnumber=\"16\"> Answer me, O LORD, for your loyal love is good! Because of your great compassion, turn toward me!</VERS>\n\t\t\t<VERS vnumber=\"17\"> Do not ignore your servant, for I am in trouble! Answer me right away!</VERS>\n\t\t\t<VERS vnumber=\"18\"> Come near me and redeem me! Because of my enemies, rescue me!</VERS>\n\t\t\t<VERS vnumber=\"19\"> You know how I am insulted, humiliated and disgraced; you can see all my enemies.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Their insults are painful and make me lose heart; I look for sympathy, but receive none, for comforters, but find none.</VERS>\n\t\t\t<VERS vnumber=\"21\"> They put bitter poison into my food, and to quench my thirst they give me vinegar to drink.</VERS>\n\t\t\t<VERS vnumber=\"22\"> May their dining table become a trap before them! May it be a snare for that group of friends!</VERS>\n\t\t\t<VERS vnumber=\"23\"> May their eyes be blinded! Make them shake violently!</VERS>\n\t\t\t<VERS vnumber=\"24\"> Pour out your judgment on them! May your raging anger overtake them!</VERS>\n\t\t\t<VERS vnumber=\"25\"> May their camp become desolate, their tents uninhabited!</VERS>\n\t\t\t<VERS vnumber=\"26\"> For they harass the one whom you discipline; they spread the news about the suffering of those whom you punish.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Hold them accountable for all their sins! Do not vindicate them!</VERS>\n\t\t\t<VERS vnumber=\"28\"> May their names be deleted from the scroll of the living! Do not let their names be listed with the godly!</VERS>\n\t\t\t<VERS vnumber=\"29\"> I am oppressed and suffering! O God, deliver and protect me!</VERS>\n\t\t\t<VERS vnumber=\"30\"> I will sing praises to God's name! I will magnify him as I give him thanks!</VERS>\n\t\t\t<VERS vnumber=\"31\"> That will please the LORD more than an ox or a bull with horns and hooves.</VERS>\n\t\t\t<VERS vnumber=\"32\"> The oppressed look on, let them rejoice! You who seek God, may you be encouraged!</VERS>\n\t\t\t<VERS vnumber=\"33\"> For the LORD listens to the needy; he does not despise his captive people.</VERS>\n\t\t\t<VERS vnumber=\"34\"> Let the heavens and the earth praise him, along with the seas and everything that swims in them!</VERS>\n\t\t\t<VERS vnumber=\"35\"> For God will deliver Zion and rebuild the cities of Judah, and his people will again live in them and possess Zion.</VERS>\n\t\t\t<VERS vnumber=\"36\"> The descendants of his servants will inherit it, and those who are loyal to him will live in it.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"70\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director; by David; written to get God's attention.] O God, please be willing to rescue me! O LORD, hurry and help me!</VERS>\n\t\t\t<VERS vnumber=\"2\"> May those who are trying to take my life be embarrassed and ashamed! May those who want to harm me be turned back and ashamed!</VERS>\n\t\t\t<VERS vnumber=\"3\"> May those who say, \"Aha! Aha!\" be driven back and disgraced!</VERS>\n\t\t\t<VERS vnumber=\"4\"> May all those who seek you be happy and rejoice in you! May those who love to experience your deliverance say continually, \"May God be praised!\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> I am oppressed and needy! O God, hurry to me! You are my helper and my deliverer! O LORD, do not delay!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"71\">\n\t\t\t<VERS vnumber=\"1\"> In you, O LORD, I have taken shelter! Never let me be humiliated!</VERS>\n\t\t\t<VERS vnumber=\"2\"> Vindicate me by rescuing me! Listen to me! Deliver me!</VERS>\n\t\t\t<VERS vnumber=\"3\"> Be my protector and refuge, a stronghold where I can be safe! For you are my high ridge and my stronghold.</VERS>\n\t\t\t<VERS vnumber=\"4\"> My God, rescue me from the power of the wicked, from the hand of the cruel oppressor!</VERS>\n\t\t\t<VERS vnumber=\"5\"> For you give me confidence, O Lord; O LORD, I have trusted in you since I was young.</VERS>\n\t\t\t<VERS vnumber=\"6\"> I have leaned on you since birth; you pulled me from my mother's womb. I praise you continually.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Many are appalled when they see me, but you are my secure shelter.</VERS>\n\t\t\t<VERS vnumber=\"8\"> I praise you constantly and speak of your splendor all day long.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Do not reject me in my old age! When my strength fails, do not abandon me!</VERS>\n\t\t\t<VERS vnumber=\"10\"> For my enemies talk about me; those waiting for a chance to kill me plot my demise.</VERS>\n\t\t\t<VERS vnumber=\"11\"> They say, \"God has abandoned him. Run and seize him, for there is no one who will rescue him!\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> O God, do not remain far away from me! My God, hurry and help me!</VERS>\n\t\t\t<VERS vnumber=\"13\"> May my accusers be humiliated and defeated! May those who want to harm me be covered with scorn and disgrace!</VERS>\n\t\t\t<VERS vnumber=\"14\"> As for me, I will wait continually, and will continue to praise you.</VERS>\n\t\t\t<VERS vnumber=\"15\"> I will tell about your justice, and all day long proclaim your salvation, though I cannot fathom its full extent.</VERS>\n\t\t\t<VERS vnumber=\"16\"> I will come and tell about the mighty acts of the sovereign LORD. I will proclaim your justice, yours alone.</VERS>\n\t\t\t<VERS vnumber=\"17\"> O God, you have taught me since I was young, and I am still declaring your amazing deeds.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Even when I am old and gray, O God, do not abandon me, until I tell the next generation about your strength, and those coming after me about your power.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Your justice, O God, extends to the skies above; you have done great things. O God, who can compare to you?</VERS>\n\t\t\t<VERS vnumber=\"20\"> Though you have allowed me to experience much trouble and distress, revive me once again! Bring me up once again from the depths of the earth!</VERS>\n\t\t\t<VERS vnumber=\"21\"> Raise me to a position of great honor! Turn and comfort me!</VERS>\n\t\t\t<VERS vnumber=\"22\"> I will express my thanks to you with a stringed instrument, praising your faithfulness, O my God! I will sing praises to you accompanied by a harp, O Holy One of Israel!</VERS>\n\t\t\t<VERS vnumber=\"23\"> My lips will shout for joy! Yes, I will sing your praises! I will praise you when you rescue me!</VERS>\n\t\t\t<VERS vnumber=\"24\"> All day long my tongue will also tell about your justice, for those who want to harm me will be embarrassed and ashamed.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"72\">\n\t\t\t<VERS vnumber=\"1\"> [For Solomon.] O God, grant the king the ability to make just decisions! Grant the king's son the ability to make fair decisions!</VERS>\n\t\t\t<VERS vnumber=\"2\"> Then he will judge your people fairly, and your oppressed ones equitably.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The mountains will bring news of peace to the people, and the hills will announce justice.</VERS>\n\t\t\t<VERS vnumber=\"4\"> He will defend the oppressed among the people; he will deliver the children of the poor and crush the oppressor.</VERS>\n\t\t\t<VERS vnumber=\"5\"> People will fear you as long as the sun and moon remain in the sky, for generation after generation.</VERS>\n\t\t\t<VERS vnumber=\"6\"> He will descend like rain on the mown grass, like showers that drench the earth.</VERS>\n\t\t\t<VERS vnumber=\"7\"> During his days the godly will flourish; peace will prevail as long as the moon remains in the sky.</VERS>\n\t\t\t<VERS vnumber=\"8\"> May he rule from sea to sea, and from the Euphrates River to the ends of the earth!</VERS>\n\t\t\t<VERS vnumber=\"9\"> Before him the coastlands will bow down, and his enemies will lick the dust.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The kings of Tarshish and the coastlands will offer gifts; the kings of Sheba and Seba will bring tribute.</VERS>\n\t\t\t<VERS vnumber=\"11\"> All kings will bow down to him; all nations will serve him.</VERS>\n\t\t\t<VERS vnumber=\"12\"> For he will rescue the needy when they cry out for help, and the oppressed who have no defender.</VERS>\n\t\t\t<VERS vnumber=\"13\"> He will take pity on the poor and needy; the lives of the needy he will save.</VERS>\n\t\t\t<VERS vnumber=\"14\"> From harm and violence he will defend them; he will value their lives.</VERS>\n\t\t\t<VERS vnumber=\"15\"> May he live! May they offer him gold from Sheba! May they continually pray for him! May they pronounce blessings on him all day long!</VERS>\n\t\t\t<VERS vnumber=\"16\"> May there be an abundance of grain in the earth; on the tops of the mountains may it sway! May its fruit trees flourish like the forests of Lebanon! May its crops be as abundant as the grass of the earth!</VERS>\n\t\t\t<VERS vnumber=\"17\"> May his fame endure! May his dynasty last as long as the sun remains in the sky! May they use his name when they formulate their blessings! May all nations consider him to be favored by God!</VERS>\n\t\t\t<VERS vnumber=\"18\"> The LORD God, the God of Israel, deserves praise! He alone accomplishes amazing things!</VERS>\n\t\t\t<VERS vnumber=\"19\"> His glorious name deserves praise forevermore! May his majestic splendor fill the whole earth! We agree! We agree!</VERS>\n\t\t\t<VERS vnumber=\"20\"> This collection of the prayers of David son of Jesse ends here. Book 3 (Psalms 73-89)</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"73\">\n\t\t\t<VERS vnumber=\"1\"> [A psalm by Asaph.] Certainly God is good to Israel, and to those whose motives are pure!</VERS>\n\t\t\t<VERS vnumber=\"2\"> But as for me, my feet almost slipped; my feet almost slid out from under me.</VERS>\n\t\t\t<VERS vnumber=\"3\"> For I envied those who are proud, as I observed the prosperity of the wicked.</VERS>\n\t\t\t<VERS vnumber=\"4\"> For they suffer no pain; their bodies are strong and well-fed.</VERS>\n\t\t\t<VERS vnumber=\"5\"> They are immune to the trouble common to men; they do not suffer as other men do.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Arrogance is their necklace, and violence their clothing.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Their prosperity causes them to do wrong; their thoughts are sinful.</VERS>\n\t\t\t<VERS vnumber=\"8\"> They mock and say evil things; they proudly threaten violence.</VERS>\n\t\t\t<VERS vnumber=\"9\"> They speak as if they rule in heaven, and lay claim to the earth.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Therefore they have more than enough food to eat, and even suck up the water of the sea.</VERS>\n\t\t\t<VERS vnumber=\"11\"> They say, \"How does God know what we do? Is the sovereign one aware of what goes on?\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> Take a good look! This is what the wicked are like, those who always have it so easy and get richer and richer.</VERS>\n\t\t\t<VERS vnumber=\"13\"> I concluded, \"Surely in vain I have kept my motives pure and maintained a pure lifestyle.</VERS>\n\t\t\t<VERS vnumber=\"14\"> I suffer all day long, and am punished every morning.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> If I had publicized these thoughts, I would have betrayed your loyal followers.</VERS>\n\t\t\t<VERS vnumber=\"16\"> When I tried to make sense of this, it was troubling to me.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Then I entered the precincts of God's temple, and understood the destiny of the wicked.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Surely you put them in slippery places; you bring them down to ruin.</VERS>\n\t\t\t<VERS vnumber=\"19\"> How desolate they become in a mere moment! Terrifying judgments make their demise complete!</VERS>\n\t\t\t<VERS vnumber=\"20\"> They are like a dream after one wakes up. O Lord, when you awake you will despise them.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Yes, my spirit was bitter, and my insides felt sharp pain.</VERS>\n\t\t\t<VERS vnumber=\"22\"> I was ignorant and lacked insight; I was as senseless as an animal before you.</VERS>\n\t\t\t<VERS vnumber=\"23\"> But I am continually with you; you hold my right hand.</VERS>\n\t\t\t<VERS vnumber=\"24\"> You guide me by your wise advice, and then you will lead me to a position of honor.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Whom do I have in heaven but you? I desire no one but you on earth.</VERS>\n\t\t\t<VERS vnumber=\"26\"> My flesh and my heart may grow weak, but God always protects my heart and gives me stability.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Yes, look! Those far from you die; you destroy everyone who is unfaithful to you.</VERS>\n\t\t\t<VERS vnumber=\"28\"> But as for me, God's presence is all I need. I have made the sovereign LORD my shelter, as I declare all the things you have done.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"74\">\n\t\t\t<VERS vnumber=\"1\"> [A well-written song by Asaph.] Why, O God, have you permanently rejected us? Why does your anger burn against the sheep of your pasture?</VERS>\n\t\t\t<VERS vnumber=\"2\"> Remember your people whom you acquired in ancient times, whom you rescued so they could be your very own nation, as well as Mount Zion, where you dwell!</VERS>\n\t\t\t<VERS vnumber=\"3\"> Hurry and look at the permanent ruins, and all the damage the enemy has done to the temple!</VERS>\n\t\t\t<VERS vnumber=\"4\"> Your enemies roar in the middle of your sanctuary; they set up their battle flags.</VERS>\n\t\t\t<VERS vnumber=\"5\"> They invade like lumberjacks swinging their axes in a thick forest.</VERS>\n\t\t\t<VERS vnumber=\"6\"> And now they are tearing down all its engravings with axes and crowbars.</VERS>\n\t\t\t<VERS vnumber=\"7\"> They set your sanctuary on fire; they desecrate your dwelling place by knocking it to the ground.</VERS>\n\t\t\t<VERS vnumber=\"8\"> They say to themselves, \"We will oppress all of them.\" They burn down all the places where people worship God in the land.</VERS>\n\t\t\t<VERS vnumber=\"9\"> We do not see any signs of God's presence; there are no longer any prophets and we have no one to tell us how long this will last.</VERS>\n\t\t\t<VERS vnumber=\"10\"> How long, O God, will the adversary hurl insults? Will the enemy blaspheme your name forever?</VERS>\n\t\t\t<VERS vnumber=\"11\"> Why do you remain inactive? Intervene and destroy him!</VERS>\n\t\t\t<VERS vnumber=\"12\"> But God has been my king from ancient times, performing acts of deliverance on the earth.</VERS>\n\t\t\t<VERS vnumber=\"13\"> You destroyed the sea by your strength; you shattered the heads of the sea monster in the water.</VERS>\n\t\t\t<VERS vnumber=\"14\"> You crushed the heads of Leviathan; you fed him to the people who live along the coast.</VERS>\n\t\t\t<VERS vnumber=\"15\"> You broke open the spring and the stream; you dried up perpetually flowing rivers.</VERS>\n\t\t\t<VERS vnumber=\"16\"> You established the cycle of day and night; you put the moon and sun in place.</VERS>\n\t\t\t<VERS vnumber=\"17\"> You set up all the boundaries of the earth; you created the cycle of summer and winter.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Remember how the enemy hurls insults, O LORD, and how a foolish nation blasphemes your name!</VERS>\n\t\t\t<VERS vnumber=\"19\"> Do not hand the life of your dove over to a wild animal! Do not continue to disregard the lives of your oppressed people!</VERS>\n\t\t\t<VERS vnumber=\"20\"> Remember your covenant promises, for the dark regions of the earth are full of places where violence rules.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Do not let the afflicted be turned back in shame! Let the oppressed and poor praise your name!</VERS>\n\t\t\t<VERS vnumber=\"22\"> Rise up, O God! Defend your honor! Remember how fools insult you all day long!</VERS>\n\t\t\t<VERS vnumber=\"23\"> Do not disregard what your enemies say, or the unceasing shouts of those who defy you.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"75\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director; according to the al-tashcheth style; a psalm of Asaph; a song.] We give thanks to you, O God! We give thanks! You reveal your presence; people tell about your amazing deeds.</VERS>\n\t\t\t<VERS vnumber=\"2\"> God says, \"At the appointed times, I judge fairly.</VERS>\n\t\t\t<VERS vnumber=\"3\"> When the earth and all its inhabitants dissolve in fear, I make its pillars secure.\" (Selah)</VERS>\n\t\t\t<VERS vnumber=\"4\">  I say to the proud, \"Do not be proud,\" and to the wicked, \"Do not be so confident of victory!</VERS>\n\t\t\t<VERS vnumber=\"5\"> Do not be so certain you have won! Do not speak with your head held so high!</VERS>\n\t\t\t<VERS vnumber=\"6\"> For victory does not come from the east or west, or from the wilderness.</VERS>\n\t\t\t<VERS vnumber=\"7\"> For God is the judge! He brings one down and exalts another.</VERS>\n\t\t\t<VERS vnumber=\"8\"> For the LORD holds in his hand a cup full of foaming wine mixed with spices, and pours it out. Surely all the wicked of the earth will slurp it up and drink it to its very last drop.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> As for me, I will continually tell what you have done; I will sing praises to the God of Jacob!</VERS>\n\t\t\t<VERS vnumber=\"10\"> God says, \"I will bring down all the power of the wicked; the godly will be victorious.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"76\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director; to be accompanied by stringed instruments; a psalm of Asaph, a song.] God has revealed himself in Judah; in Israel his reputation is great.</VERS>\n\t\t\t<VERS vnumber=\"2\"> He lives in Salem; he dwells in Zion.</VERS>\n\t\t\t<VERS vnumber=\"3\"> There he shattered the arrows, the shield, the sword, and the rest of the weapons of war. (Selah)</VERS>\n\t\t\t<VERS vnumber=\"4\"> You shine brightly and reveal your majesty, as you descend from the hills where you killed your prey.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The bravehearted were plundered; they \"fell asleep.\" All the warriors were helpless.</VERS>\n\t\t\t<VERS vnumber=\"6\"> At the sound of your battle cry, O God of Jacob, both rider and horse \"fell asleep.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> You are awesome! Yes, you! Who can withstand your intense anger?</VERS>\n\t\t\t<VERS vnumber=\"8\"> From heaven you announced what their punishment would be. The earth was afraid and silent</VERS>\n\t\t\t<VERS vnumber=\"9\"> when God arose to execute judgment, and to deliver all the oppressed of the earth. (Selah)</VERS>\n\t\t\t<VERS vnumber=\"10\"> Certainly your angry judgment upon men will bring you praise; you reveal your anger in full measure.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Make vows to the LORD your God and repay them! Let all those who surround him bring tribute to the awesome one!</VERS>\n\t\t\t<VERS vnumber=\"12\"> He humbles princes; the kings of the earth regard him as awesome.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"77\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director, Jeduthun; a psalm of Asaph.] I will cry out to God and call for help! I will cry out to God and he will pay attention to me.</VERS>\n\t\t\t<VERS vnumber=\"2\"> In my time of trouble I sought the Lord. I kept my hand raised in prayer throughout the night. I refused to be comforted.</VERS>\n\t\t\t<VERS vnumber=\"3\"> I said, \"I will remember God while I groan; I will think about him while my strength leaves me.\" (Selah)</VERS>\n\t\t\t<VERS vnumber=\"4\"> You held my eyelids open; I was troubled and could not speak.</VERS>\n\t\t\t<VERS vnumber=\"5\"> I thought about the days of old, about ancient times.</VERS>\n\t\t\t<VERS vnumber=\"6\"> I said, \"During the night I will remember the song I once sang; I will think very carefully.\" I tried to make sense of what was happening.</VERS>\n\t\t\t<VERS vnumber=\"7\"> I asked, \"Will the Lord reject me forever? Will he never again show me his favor?</VERS>\n\t\t\t<VERS vnumber=\"8\"> Has his loyal love disappeared forever? Has his promise failed forever?</VERS>\n\t\t\t<VERS vnumber=\"9\"> Has God forgotten to be merciful? Has his anger stifled his compassion?\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> Then I said, \"I am sickened by the thought that the sovereign One might become inactive.</VERS>\n\t\t\t<VERS vnumber=\"11\"> I will remember the works of the LORD. Yes, I will remember the amazing things you did long ago!</VERS>\n\t\t\t<VERS vnumber=\"12\"> I will think about all you have done; I will reflect upon your deeds!\"</VERS>\n\t\t\t<VERS vnumber=\"13\">  O God, your deeds are extraordinary! What god can compare to our great God?</VERS>\n\t\t\t<VERS vnumber=\"14\"> You are the God who does amazing things; you have revealed your strength among the nations.</VERS>\n\t\t\t<VERS vnumber=\"15\"> You delivered your people by your strength, the children of Jacob and Joseph. (Selah)</VERS>\n\t\t\t<VERS vnumber=\"16\"> The waters saw you, O God, the waters saw you and trembled. Yes, the depths of the sea shook with fear.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The clouds poured down rain; the skies thundered. Yes, your arrows flashed about.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Your thunderous voice was heard in the wind; the lightning bolts lit up the world; the earth trembled and shook.</VERS>\n\t\t\t<VERS vnumber=\"19\"> You walked through the sea; you passed through the surging waters, but left no footprints.</VERS>\n\t\t\t<VERS vnumber=\"20\"> You led your people like a flock of sheep, by the hand of Moses and Aaron.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"78\">\n\t\t\t<VERS vnumber=\"1\"> [A well-written song by Asaph.] Pay attention, my people, to my instruction! Listen to the words I speak!</VERS>\n\t\t\t<VERS vnumber=\"2\"> I will sing a song that imparts wisdom; I will make insightful observations about the past.</VERS>\n\t\t\t<VERS vnumber=\"3\"> What we have heard and learned, that which our ancestors have told us,</VERS>\n\t\t\t<VERS vnumber=\"4\"> we will not hide from their descendants. We will tell the next generation about the LORD's praiseworthy acts, about his strength and the amazing things he has done.</VERS>\n\t\t\t<VERS vnumber=\"5\"> He established a rule in Jacob; he set up a law in Israel. He commanded our ancestors to make his deeds known to their descendants,</VERS>\n\t\t\t<VERS vnumber=\"6\"> so that the next generation, children yet to be born, might know about them. They will grow up and tell their descendants about them.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Then they will place their confidence in God. They will not forget the works of God, and they will obey his commands.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Then they will not be like their ancestors, who were a stubborn and rebellious generation, a generation that was not committed and faithful to God.</VERS>\n\t\t\t<VERS vnumber=\"9\"> The Ephraimites were armed with bows, but they retreated in the day of battle.</VERS>\n\t\t\t<VERS vnumber=\"10\"> They did not keep their covenant with God, and they refused to obey his law.</VERS>\n\t\t\t<VERS vnumber=\"11\"> They forgot what he had done, the amazing things he had shown them.</VERS>\n\t\t\t<VERS vnumber=\"12\"> He did amazing things in the sight of their ancestors, in the land of Egypt, in the region of Zoan.</VERS>\n\t\t\t<VERS vnumber=\"13\"> He divided the sea and led them across it; he made the water stand in a heap.</VERS>\n\t\t\t<VERS vnumber=\"14\"> He led them with a cloud by day, and with the light of a fire all night long.</VERS>\n\t\t\t<VERS vnumber=\"15\"> He broke open rocks in the wilderness, and gave them enough water to fill the depths of the sea.</VERS>\n\t\t\t<VERS vnumber=\"16\"> He caused streams to flow from the rock, and made the water flow like rivers.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Yet they continued to sin against him, and rebelled against the sovereign One in the desert.</VERS>\n\t\t\t<VERS vnumber=\"18\"> They willfully challenged God by asking for food to satisfy their appetite.</VERS>\n\t\t\t<VERS vnumber=\"19\"> They insulted God, saying, \"Is God really able to give us food in the wilderness?</VERS>\n\t\t\t<VERS vnumber=\"20\"> Yes, he struck a rock and water flowed out, streams gushed forth. But can he also give us food? Will he provide meat for his people?\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> When the LORD heard this, he was furious. A fire broke out against Jacob, and his anger flared up against Israel,</VERS>\n\t\t\t<VERS vnumber=\"22\"> because they did not have faith in God, and did not trust his ability to deliver them.</VERS>\n\t\t\t<VERS vnumber=\"23\"> He gave a command to the clouds above, and opened the doors in the sky.</VERS>\n\t\t\t<VERS vnumber=\"24\"> He rained down manna for them to eat; he gave them the grain of heaven.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Man ate the food of the mighty ones. He sent them more than enough to eat.</VERS>\n\t\t\t<VERS vnumber=\"26\"> He brought the east wind through the sky, and by his strength led forth the south wind.</VERS>\n\t\t\t<VERS vnumber=\"27\"> He rained down meat on them like dust, birds as numerous as the sand on the seashores.</VERS>\n\t\t\t<VERS vnumber=\"28\"> He caused them to fall right in the middle of their camp, all around their homes.</VERS>\n\t\t\t<VERS vnumber=\"29\"> They ate until they were stuffed; he gave them what they desired.</VERS>\n\t\t\t<VERS vnumber=\"30\"> They were not yet filled up, their food was still in their mouths,</VERS>\n\t\t\t<VERS vnumber=\"31\"> when the anger of God flared up against them. He killed some of the strongest of them; he brought the young men of Israel to their knees.</VERS>\n\t\t\t<VERS vnumber=\"32\"> Despite all this, they continued to sin, and did not trust him to do amazing things.</VERS>\n\t\t\t<VERS vnumber=\"33\"> So he caused them to die unsatisfied and filled with terror.</VERS>\n\t\t\t<VERS vnumber=\"34\"> When he struck them down, they sought his favor; they turned back and longed for God.</VERS>\n\t\t\t<VERS vnumber=\"35\"> They remembered that God was their protector, and that the sovereign God was their deliverer.</VERS>\n\t\t\t<VERS vnumber=\"36\"> But they deceived him with their words, and lied to him.</VERS>\n\t\t\t<VERS vnumber=\"37\"> They were not really committed to him, and they were unfaithful to his covenant.</VERS>\n\t\t\t<VERS vnumber=\"38\"> Yet he is compassionate. He forgives sin and does not destroy. He often holds back his anger, and does not stir up his fury.</VERS>\n\t\t\t<VERS vnumber=\"39\"> He remembered that they were made of flesh, and were like a wind that blows past and does not return.</VERS>\n\t\t\t<VERS vnumber=\"40\"> How often they rebelled against him in the wilderness, and insulted him in the desert!</VERS>\n\t\t\t<VERS vnumber=\"41\"> They again challenged God, and offended the Holy One of Israel.</VERS>\n\t\t\t<VERS vnumber=\"42\"> They did not remember what he had done, how he delivered them from the enemy,</VERS>\n\t\t\t<VERS vnumber=\"43\"> when he performed his awesome deeds in Egypt, and his acts of judgment in the region of Zoan.</VERS>\n\t\t\t<VERS vnumber=\"44\"> He turned their rivers into blood, and they could not drink from their streams.</VERS>\n\t\t\t<VERS vnumber=\"45\"> He sent swarms of biting insects against them, as well as frogs that overran their land.</VERS>\n\t\t\t<VERS vnumber=\"46\"> He gave their crops to the grasshopper, the fruit of their labor to the locust.</VERS>\n\t\t\t<VERS vnumber=\"47\"> He destroyed their vines with hail, and their sycamore-fig trees with driving rain.</VERS>\n\t\t\t<VERS vnumber=\"48\"> He rained hail down on their cattle, and hurled lightning bolts down on their livestock.</VERS>\n\t\t\t<VERS vnumber=\"49\"> His raging anger lashed out against them, He sent fury, rage, and trouble as messengers who bring disaster.</VERS>\n\t\t\t<VERS vnumber=\"50\"> He sent his anger in full force; he did not spare them from death; he handed their lives over to destruction.</VERS>\n\t\t\t<VERS vnumber=\"51\"> He struck down all the firstborn in Egypt, the firstfruits of their reproductive power in the tents of Ham.</VERS>\n\t\t\t<VERS vnumber=\"52\"> Yet he brought out his people like sheep; he led them through the wilderness like a flock.</VERS>\n\t\t\t<VERS vnumber=\"53\"> He guided them safely along, while the sea covered their enemies.</VERS>\n\t\t\t<VERS vnumber=\"54\"> He brought them to the border of his holy land, to this mountainous land which his right hand acquired.</VERS>\n\t\t\t<VERS vnumber=\"55\"> He drove the nations out from before them; he assigned them their tribal allotments and allowed the tribes of Israel to settle down.</VERS>\n\t\t\t<VERS vnumber=\"56\"> Yet they challenged and defied the sovereign God, and did not obey his commands.</VERS>\n\t\t\t<VERS vnumber=\"57\"> They were unfaithful and acted as treacherously as their ancestors; they were as unreliable as a malfunctioning bow.</VERS>\n\t\t\t<VERS vnumber=\"58\"> They made him angry with their pagan shrines, and made him jealous with their idols.</VERS>\n\t\t\t<VERS vnumber=\"59\"> God heard and was angry; he completely rejected Israel.</VERS>\n\t\t\t<VERS vnumber=\"60\"> He abandoned the sanctuary at Shiloh, the tent where he lived among men.</VERS>\n\t\t\t<VERS vnumber=\"61\"> He allowed the symbol of his strong presence to be captured; he gave the symbol of his splendor into the hand of the enemy.</VERS>\n\t\t\t<VERS vnumber=\"62\"> He delivered his people over to the sword, and was angry with his chosen nation.</VERS>\n\t\t\t<VERS vnumber=\"63\"> Fire consumed their young men, and their virgins remained unmarried.</VERS>\n\t\t\t<VERS vnumber=\"64\"> Their priests fell by the sword, but their widows did not weep.</VERS>\n\t\t\t<VERS vnumber=\"65\"> But then the Lord awoke from his sleep; he was like a warrior in a drunken rage.</VERS>\n\t\t\t<VERS vnumber=\"66\"> He drove his enemies back; he made them a permanent target for insults.</VERS>\n\t\t\t<VERS vnumber=\"67\"> He rejected the tent of Joseph; he did not choose the tribe of Ephraim.</VERS>\n\t\t\t<VERS vnumber=\"68\"> He chose the tribe of Judah, and Mount Zion, which he loves.</VERS>\n\t\t\t<VERS vnumber=\"69\"> He made his sanctuary as enduring as the heavens above; as secure as the earth, which he established permanently.</VERS>\n\t\t\t<VERS vnumber=\"70\"> He chose David, his servant, and took him from the sheepfolds.</VERS>\n\t\t\t<VERS vnumber=\"71\"> He took him away from following the mother sheep, and made him the shepherd of Jacob, his people, and of Israel, his chosen nation.</VERS>\n\t\t\t<VERS vnumber=\"72\"> David cared for them with pure motives; he led them with skill.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"79\">\n\t\t\t<VERS vnumber=\"1\"> [A psalm of Asaph.] O God, foreigners have invaded your chosen land; they have polluted your holy temple and turned Jerusalem into a heap of ruins.</VERS>\n\t\t\t<VERS vnumber=\"2\"> They have given the corpses of your servants to the birds of the sky; the flesh of your loyal followers to the beasts of the earth.</VERS>\n\t\t\t<VERS vnumber=\"3\"> They have made their blood flow like water all around Jerusalem, and there is no one to bury them.</VERS>\n\t\t\t<VERS vnumber=\"4\"> We have become an object of disdain to our neighbors; those who live on our borders taunt and insult us.</VERS>\n\t\t\t<VERS vnumber=\"5\"> How long will this go on, O LORD? Will you stay angry forever? How long will your rage burn like fire?</VERS>\n\t\t\t<VERS vnumber=\"6\"> Pour out your anger on the nations that do not acknowledge you, on the kingdoms that do not pray to you!</VERS>\n\t\t\t<VERS vnumber=\"7\"> For they have devoured Jacob and destroyed his home.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Do not hold us accountable for the sins of earlier generations! Quickly send your compassion our way, for we are in serious trouble!</VERS>\n\t\t\t<VERS vnumber=\"9\"> Help us, O God, our deliverer! For the sake of your glorious reputation, rescue us! Forgive our sins for the sake of your reputation!</VERS>\n\t\t\t<VERS vnumber=\"10\"> Why should the nations say, \"Where is their God?\" Before our very eyes may the shed blood of your servants be avenged among the nations!</VERS>\n\t\t\t<VERS vnumber=\"11\"> Listen to the painful cries of the prisoners! Use your great strength to set free those condemned to die!</VERS>\n\t\t\t<VERS vnumber=\"12\"> Pay back our neighbors in full! May they be insulted the same way they insulted you, O Lord!</VERS>\n\t\t\t<VERS vnumber=\"13\"> Then we, your people, the sheep of your pasture, will continually thank you. We will tell coming generations of your praiseworthy acts.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"80\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director; according to the shushan-eduth style; a psalm of Asaph.] O shepherd of Israel, pay attention, you who lead Joseph like a flock of sheep! You who sit enthroned above the winged angels, reveal your splendor!</VERS>\n\t\t\t<VERS vnumber=\"2\"> In the sight of Ephraim, Benjamin, and Manasseh reveal your power! Come and deliver us!</VERS>\n\t\t\t<VERS vnumber=\"3\"> O God, restore us! Smile on us! Then we will be delivered!</VERS>\n\t\t\t<VERS vnumber=\"4\"> O LORD God, invincible warrior! How long will you remain angry at your people while they pray to you?</VERS>\n\t\t\t<VERS vnumber=\"5\"> You have given them tears as food; you have made them drink tears by the measure.</VERS>\n\t\t\t<VERS vnumber=\"6\"> You have made our neighbors dislike us, and our enemies insult us.</VERS>\n\t\t\t<VERS vnumber=\"7\"> O God, invincible warrior, restore us! Smile on us! Then we will be delivered!</VERS>\n\t\t\t<VERS vnumber=\"8\"> You uprooted a vine from Egypt; you drove out nations and transplanted it.</VERS>\n\t\t\t<VERS vnumber=\"9\"> You cleared the ground for it; it took root, and filled the land.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The mountains were covered by its shadow, the highest cedars by its branches.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Its branches reached the Mediterranean Sea, and its shoots the Euphrates River.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Why did you break down its walls, so that all who pass by pluck its fruit?</VERS>\n\t\t\t<VERS vnumber=\"13\"> The wild boars of the forest ruin it; the insects of the field feed on it.</VERS>\n\t\t\t<VERS vnumber=\"14\"> O God, invincible warrior, come back! Look down from heaven and take notice! Take care of this vine,</VERS>\n\t\t\t<VERS vnumber=\"15\"> the root your right hand planted, the shoot you made to grow!</VERS>\n\t\t\t<VERS vnumber=\"16\"> It is burned and cut down. They die because you are displeased with them.</VERS>\n\t\t\t<VERS vnumber=\"17\"> May you give support to the one you have chosen, to the one whom you raised up for yourself!</VERS>\n\t\t\t<VERS vnumber=\"18\"> Then we will not turn away from you. Revive us and we will pray to you!</VERS>\n\t\t\t<VERS vnumber=\"19\"> O LORD God, invincible warrior, restore us! Smile on us! Then we will be delivered!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"81\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director; according to the gittith style; by Asaph.] Shout for joy to God, our source of strength! Shout out to the God of Jacob!</VERS>\n\t\t\t<VERS vnumber=\"2\"> Sing a song and play the tambourine, the pleasant sounding harp, and the ten-stringed instrument!</VERS>\n\t\t\t<VERS vnumber=\"3\"> Sound the ram's horn on the day of the new moon, and on the day of the full moon when our festival begins.</VERS>\n\t\t\t<VERS vnumber=\"4\"> For observing the festival is a requirement for Israel; it is an ordinance given by the God of Jacob.</VERS>\n\t\t\t<VERS vnumber=\"5\"> He decreed it as a regulation in Joseph, when he attacked the land of Egypt. I heard a voice I did not recognize.</VERS>\n\t\t\t<VERS vnumber=\"6\"> It said: \"I removed the burden from his shoulder; his hands were released from holding the basket.</VERS>\n\t\t\t<VERS vnumber=\"7\"> In your distress you called out and I rescued you. I answered you from a dark thundercloud. I tested you at the waters of Meribah. (Selah)</VERS>\n\t\t\t<VERS vnumber=\"8\"> I said, 'Listen, my people! I will warn you! O Israel, if only you would obey me!</VERS>\n\t\t\t<VERS vnumber=\"9\"> There must be no other god among you. You must not worship a foreign god.</VERS>\n\t\t\t<VERS vnumber=\"10\"> I am the LORD, your God, the one who brought you out of the land of Egypt. Open your mouth wide and I will fill it!'</VERS>\n\t\t\t<VERS vnumber=\"11\"> But my people did not obey me; Israel did not submit to me.</VERS>\n\t\t\t<VERS vnumber=\"12\"> I gave them over to their stubborn desires; they did what seemed right to them.</VERS>\n\t\t\t<VERS vnumber=\"13\"> If only my people would obey me! If only Israel would keep my commands!</VERS>\n\t\t\t<VERS vnumber=\"14\"> Then I would quickly subdue their enemies, and attack their adversaries.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> (May those who hate the LORD cower in fear before him! May they be permanently humiliated!)</VERS>\n\t\t\t<VERS vnumber=\"16\"> \"I would feed Israel the best wheat, and would satisfy your appetite with honey from the rocky cliffs.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"82\">\n\t\t\t<VERS vnumber=\"1\"> [A psalm of Asaph.] God stands in the assembly of El; in the midst of the gods he renders judgment.</VERS>\n\t\t\t<VERS vnumber=\"2\"> He says, \"How long will you make unjust legal decisions and show favoritism to the wicked? (Selah)</VERS>\n\t\t\t<VERS vnumber=\"3\"> Defend the cause of the poor and the fatherless! Vindicate the oppressed and suffering!</VERS>\n\t\t\t<VERS vnumber=\"4\"> Rescue the poor and needy! Deliver them from the power of the wicked!</VERS>\n\t\t\t<VERS vnumber=\"5\"> They neither know nor understand. They stumble around in the dark, while all the foundations of the earth crumble.</VERS>\n\t\t\t<VERS vnumber=\"6\"> I thought, 'You are gods; all of you are sons of the Most High.'</VERS>\n\t\t\t<VERS vnumber=\"7\"> Yet you will die like mortals; you will fall like all the other rulers.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> Rise up, O God, and execute judgment on the earth! For you own all the nations.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"83\">\n\t\t\t<VERS vnumber=\"1\"> [A song, a psalm of Asaph.] O God, do not be silent! Do not ignore us! Do not be inactive, O God!</VERS>\n\t\t\t<VERS vnumber=\"2\"> For look, your enemies are making a commotion; those who hate you are hostile.</VERS>\n\t\t\t<VERS vnumber=\"3\"> They carefully plot against your people, and make plans to harm the ones you cherish.</VERS>\n\t\t\t<VERS vnumber=\"4\"> They say, \"Come on, let's annihilate them so they are no longer a nation! Then the name of Israel will be remembered no more.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> Yes, they devise a unified strategy; they form an alliance against you.</VERS>\n\t\t\t<VERS vnumber=\"6\"> It includes the tents of Edom and the Ishmaelites, Moab and the Hagrites,</VERS>\n\t\t\t<VERS vnumber=\"7\"> Gebal, Ammon, and Amalek, Philistia and the inhabitants of Tyre.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Even Assyria has allied with them, lending its strength to the descendants of Lot. (Selah)</VERS>\n\t\t\t<VERS vnumber=\"9\"> Do to them as you did to Midian, as you did to Sisera and Jabin at the Kishon River!</VERS>\n\t\t\t<VERS vnumber=\"10\"> They were destroyed at Endor; their corpses were like manure on the ground.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Make their nobles like Oreb and Zeeb, and all their rulers like Zebah and Zalmunna,</VERS>\n\t\t\t<VERS vnumber=\"12\"> who said, \"Let's take over the pastures of God!\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> O my God, make them like dead thistles, like dead weeds blown away by the wind!</VERS>\n\t\t\t<VERS vnumber=\"14\"> Like the fire that burns down the forest, or the flames that consume the mountainsides,</VERS>\n\t\t\t<VERS vnumber=\"15\"> chase them with your gale winds, and terrify them with your windstorm.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Cover their faces with shame, so they might seek you, O LORD.</VERS>\n\t\t\t<VERS vnumber=\"17\"> May they be humiliated and continually terrified! May they die in shame!</VERS>\n\t\t\t<VERS vnumber=\"18\"> Then they will know that you alone are the LORD, the sovereign king over all the earth.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"84\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director; according to the gittith style; written by the Korahites, a psalm.] How lovely is the place where you live, O LORD WHO RULES OVER ALL!</VERS>\n\t\t\t<VERS vnumber=\"2\"> I desperately want to be in the courts of the LORD's temple. My heart and my entire being shout for joy to the living God.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Even the birds find a home there, and the swallow builds a nest, where she can protect her young near your altars, O LORD WHO RULES OVER ALL, my king and my God.</VERS>\n\t\t\t<VERS vnumber=\"4\"> How blessed are those who live in your temple and praise you continually! (Selah)</VERS>\n\t\t\t<VERS vnumber=\"5\"> How blessed are those who find their strength in you, and long to travel the roads that lead to your temple!</VERS>\n\t\t\t<VERS vnumber=\"6\"> As they pass through the Baca Valley, he provides a spring for them. The rain even covers it with pools of water.</VERS>\n\t\t\t<VERS vnumber=\"7\"> They are sustained as they travel along; each one appears before God in Zion.</VERS>\n\t\t\t<VERS vnumber=\"8\"> O LORD, sovereign God, hear my prayer! Listen, O God of Jacob! (Selah)</VERS>\n\t\t\t<VERS vnumber=\"9\"> O God, take notice of our shield! Show concern for your chosen king!</VERS>\n\t\t\t<VERS vnumber=\"10\"> Certainly spending just one day in your temple courts is better than spending a thousand elsewhere. I would rather stand at the entrance to the temple of my God than live in the tents of the wicked.</VERS>\n\t\t\t<VERS vnumber=\"11\"> For the LORD God is our sovereign protector. The LORD bestows favor and honor; he withholds no good thing from those who have integrity.</VERS>\n\t\t\t<VERS vnumber=\"12\"> O LORD WHO RULES OVER ALL, how blessed are those who trust in you!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"85\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director; written by the Korahites, a psalm.] O LORD, you showed favor to your land; you restored the well-being of Jacob.</VERS>\n\t\t\t<VERS vnumber=\"2\"> You pardoned the wrongdoing of your people; you forgave all their sin. (Selah)</VERS>\n\t\t\t<VERS vnumber=\"3\"> You withdrew all your fury; you turned back from your raging anger.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Restore us, O God our deliverer! Do not be displeased with us!</VERS>\n\t\t\t<VERS vnumber=\"5\"> Will you stay mad at us forever? Will you remain angry throughout future generations?</VERS>\n\t\t\t<VERS vnumber=\"6\"> Will you not revive us once more? Then your people will rejoice in you!</VERS>\n\t\t\t<VERS vnumber=\"7\"> O LORD, show us your loyal love! Bestow on us your deliverance!</VERS>\n\t\t\t<VERS vnumber=\"8\"> I will listen to what God the LORD says. For he will make peace with his people, his faithful followers. Yet they must not return to their foolish ways.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Certainly his loyal followers will soon experience his deliverance; then his splendor will again appear in our land.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Loyal love and faithfulness meet; deliverance and peace greet each other with a kiss.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Faithfulness grows from the ground, and deliverance looks down from the sky.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Yes, the LORD will bestow his good blessings, and our land will yield its crops.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Deliverance goes before him, and prepares a pathway for him.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"86\">\n\t\t\t<VERS vnumber=\"1\"> [A prayer of David.] Listen O LORD! Answer me! For I am oppressed and needy.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Protect me, for I am loyal! O my God, deliver your servant, who trusts in you!</VERS>\n\t\t\t<VERS vnumber=\"3\"> Have mercy on me, O Lord, for I cry out to you all day long!</VERS>\n\t\t\t<VERS vnumber=\"4\"> Make your servant glad, for to you, O Lord, I pray!</VERS>\n\t\t\t<VERS vnumber=\"5\"> Certainly O Lord, you are kind and forgiving, and show great faithfulness to all who cry out to you.</VERS>\n\t\t\t<VERS vnumber=\"6\"> O LORD, hear my prayer! Pay attention to my plea for mercy!</VERS>\n\t\t\t<VERS vnumber=\"7\"> In my time of trouble I cry out to you, for you will answer me.</VERS>\n\t\t\t<VERS vnumber=\"8\"> None can compare to you among the gods, O Lord! Your exploits are incomparable!</VERS>\n\t\t\t<VERS vnumber=\"9\"> All the nations, whom you created, will come and worship you, O Lord. They will honor your name.</VERS>\n\t\t\t<VERS vnumber=\"10\"> For you are great and do amazing things. You alone are God.</VERS>\n\t\t\t<VERS vnumber=\"11\"> O LORD, teach me how you want me to live! Then I will obey your commands. Make me wholeheartedly committed to you!</VERS>\n\t\t\t<VERS vnumber=\"12\"> O Lord, my God, I will give you thanks with my whole heart! I will honor your name continually!</VERS>\n\t\t\t<VERS vnumber=\"13\"> For you will extend your great loyal love to me, and will deliver my life from the depths of Sheol.</VERS>\n\t\t\t<VERS vnumber=\"14\"> O God, arrogant men attack me; a gang of ruthless men, who do not respect you, seek my life.</VERS>\n\t\t\t<VERS vnumber=\"15\"> But you, O Lord, are a compassionate and merciful God. You are patient and demonstrate great loyal love and faithfulness.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Turn toward me and have mercy on me! Give your servant your strength! Deliver your slave!</VERS>\n\t\t\t<VERS vnumber=\"17\"> Show me evidence of your favor! Then those who hate me will see it and be ashamed, for you, O LORD, will help me and comfort me.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"87\">\n\t\t\t<VERS vnumber=\"1\"> [Written by the Korahites; a psalm, a song.] The LORD's city is in the holy hills.</VERS>\n\t\t\t<VERS vnumber=\"2\"> The LORD loves the gates of Zion more than all the dwelling places of Jacob.</VERS>\n\t\t\t<VERS vnumber=\"3\"> People say wonderful things about you, O city of God. (Selah)</VERS>\n\t\t\t<VERS vnumber=\"4\"> I mention Rahab and Babylon to my followers. Here are Philistia and Tyre, along with Ethiopia. It is said of them, \"This one was born there.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> But it is said of Zion's residents, \"Each one of these was born in her, and the sovereign One makes her secure.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> The LORD writes in the census book of the nations, \"This one was born there.\" (Selah)</VERS>\n\t\t\t<VERS vnumber=\"7\"> As for the singers, as well as the pipers, all of them sing within your walls.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"88\">\n\t\t\t<VERS vnumber=\"1\"> [A song, a psalm written by the Korahites; for the music director; according to the machalath-leannoth style; a well-written song by Heman the Ezrachite.] O LORD God who delivers me! By day I cry out and at night I pray before you.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Listen to my prayer! Pay attention to my cry for help!</VERS>\n\t\t\t<VERS vnumber=\"3\"> For my life is filled with troubles and I am ready to enter Sheol.</VERS>\n\t\t\t<VERS vnumber=\"4\"> They treat me like those who descend into the grave. I am like a helpless man,</VERS>\n\t\t\t<VERS vnumber=\"5\"> adrift among the dead, like corpses lying in the grave, whom you remember no more, and who are cut off from your power.</VERS>\n\t\t\t<VERS vnumber=\"6\"> You place me in the lowest regions of the pit, in the dark places, in the watery depths.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Your anger bears down on me, and you overwhelm me with all your waves. (Selah)</VERS>\n\t\t\t<VERS vnumber=\"8\"> You cause those who know me to keep their distance; you make me an appalling sight to them. I am trapped and cannot get free.</VERS>\n\t\t\t<VERS vnumber=\"9\"> My eyes grow weak because of oppression. I call out to you, O LORD, all day long; I spread out my hands in prayer to you.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Do you accomplish amazing things for the dead? Do the departed spirits rise up and give you thanks? (Selah)</VERS>\n\t\t\t<VERS vnumber=\"11\"> Is your loyal love proclaimed in the grave, or your faithfulness in the place of the dead?</VERS>\n\t\t\t<VERS vnumber=\"12\"> Are your amazing deeds experienced in the dark region, or your deliverance in the land of oblivion?</VERS>\n\t\t\t<VERS vnumber=\"13\"> As for me, I cry out to you, O LORD; in the morning my prayer confronts you.</VERS>\n\t\t\t<VERS vnumber=\"14\"> O LORD, why do you reject me, and pay no attention to me?</VERS>\n\t\t\t<VERS vnumber=\"15\"> I am oppressed and have been on the verge of death since my youth. I have been subjected to your horrors and am numb with pain.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Your anger overwhelms me; your terrors destroy me.</VERS>\n\t\t\t<VERS vnumber=\"17\"> They surround me like water all day long; they join forces and encircle me.</VERS>\n\t\t\t<VERS vnumber=\"18\"> You cause my friends and neighbors to keep their distance; those who know me leave me alone in the darkness.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"89\">\n\t\t\t<VERS vnumber=\"1\"> [A well-written song by Ethan the Ezrachite.] I will sing continually about the LORD's faithful deeds; to future generations I will proclaim your faithfulness.</VERS>\n\t\t\t<VERS vnumber=\"2\"> For I say, \"Loyal love is permanently established; in the skies you set up your faithfulness.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> The LORD said, \"I have made a covenant with my chosen one; I have made a promise on oath to David, my servant:</VERS>\n\t\t\t<VERS vnumber=\"4\"> 'I will give you an eternal dynasty and establish your throne throughout future generations.'\" (Selah)</VERS>\n\t\t\t<VERS vnumber=\"5\"> O LORD, the heavens praise your amazing deeds, as well as your faithfulness in the angelic assembly.</VERS>\n\t\t\t<VERS vnumber=\"6\"> For who in the skies can compare to the LORD? Who is like the LORD among the heavenly beings,</VERS>\n\t\t\t<VERS vnumber=\"7\"> a God who is honored in the great angelic assembly, and more awesome than all who surround him?</VERS>\n\t\t\t<VERS vnumber=\"8\"> O LORD, sovereign God! Who is strong like you, O LORD? Your faithfulness surrounds you.</VERS>\n\t\t\t<VERS vnumber=\"9\"> You rule over the proud sea. When its waves surge, you calm them.</VERS>\n\t\t\t<VERS vnumber=\"10\"> You crushed the Proud One and killed it; with your strong arm you scattered your enemies.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The heavens belong to you, as does the earth. You made the world and all it contains.</VERS>\n\t\t\t<VERS vnumber=\"12\"> You created the north and the south. Tabor and Hermon rejoice in your name.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Your arm is powerful, your hand strong, your right hand victorious.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Equity and justice are the foundation of your throne. Loyal love and faithfulness characterize your rule.</VERS>\n\t\t\t<VERS vnumber=\"15\"> How blessed are the people who worship you! O LORD, they experience your favor.</VERS>\n\t\t\t<VERS vnumber=\"16\"> They rejoice in your name all day long, and are vindicated by your justice.</VERS>\n\t\t\t<VERS vnumber=\"17\"> For you give them splendor and strength. By your favor we are victorious.</VERS>\n\t\t\t<VERS vnumber=\"18\"> For our shield belongs to the LORD, our king to the Holy One of Israel.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Then you spoke through a vision to your faithful followers and said: \"I have energized a warrior; I have raised up a young man from the people.</VERS>\n\t\t\t<VERS vnumber=\"20\"> I have discovered David, my servant. With my holy oil I have anointed him as king.</VERS>\n\t\t\t<VERS vnumber=\"21\"> My hand will support him, and my arm will strengthen him.</VERS>\n\t\t\t<VERS vnumber=\"22\"> No enemy will be able to exact tribute from him; a violent oppressor will not be able to humiliate him.</VERS>\n\t\t\t<VERS vnumber=\"23\"> I will crush his enemies before him; I will strike down those who hate him.</VERS>\n\t\t\t<VERS vnumber=\"24\"> He will experience my faithfulness and loyal love, and by my name he will win victories.</VERS>\n\t\t\t<VERS vnumber=\"25\"> I will place his hand over the sea, his right hand over the rivers.</VERS>\n\t\t\t<VERS vnumber=\"26\"> He will call out to me, 'You are my father, my God, and the protector who delivers me.'</VERS>\n\t\t\t<VERS vnumber=\"27\"> I will appoint him to be my firstborn son, the most exalted of the earth's kings.</VERS>\n\t\t\t<VERS vnumber=\"28\"> I will always extend my loyal love to him, and my covenant with him is secure.</VERS>\n\t\t\t<VERS vnumber=\"29\"> I will give him an eternal dynasty, and make his throne as enduring as the skies above.</VERS>\n\t\t\t<VERS vnumber=\"30\"> If his sons reject my law and disobey my regulations,</VERS>\n\t\t\t<VERS vnumber=\"31\"> if they break my rules and do not keep my commandments,</VERS>\n\t\t\t<VERS vnumber=\"32\"> I will punish their rebellion by beating them with a club, their sin by inflicting them with bruises.</VERS>\n\t\t\t<VERS vnumber=\"33\"> But I will not remove my loyal love from him, nor be unfaithful to my promise.</VERS>\n\t\t\t<VERS vnumber=\"34\"> I will not break my covenant or go back on what I promised.</VERS>\n\t\t\t<VERS vnumber=\"35\"> Once and for all I have vowed by my own holiness, I will never deceive David.</VERS>\n\t\t\t<VERS vnumber=\"36\"> His dynasty will last forever. His throne will endure before me, like the sun,</VERS>\n\t\t\t<VERS vnumber=\"37\"> it will remain stable, like the moon, his throne will endure like the skies.\" (Selah)</VERS>\n\t\t\t<VERS vnumber=\"38\"> But you have spurned and rejected him; you are angry with your chosen king.</VERS>\n\t\t\t<VERS vnumber=\"39\"> You have repudiated your covenant with your servant; you have thrown his crown to the ground.</VERS>\n\t\t\t<VERS vnumber=\"40\"> You have broken down all his walls; you have made his strongholds a heap of ruins.</VERS>\n\t\t\t<VERS vnumber=\"41\"> All who pass by have robbed him; he has become an object of disdain to his neighbors.</VERS>\n\t\t\t<VERS vnumber=\"42\"> You have allowed his adversaries to be victorious, and all his enemies to rejoice.</VERS>\n\t\t\t<VERS vnumber=\"43\"> You turn back his sword from the adversary, and have not sustained him in battle.</VERS>\n\t\t\t<VERS vnumber=\"44\"> You have brought to an end his splendor, and have knocked his throne to the ground.</VERS>\n\t\t\t<VERS vnumber=\"45\"> You have cut short his youth, and have covered him with shame. (Selah)</VERS>\n\t\t\t<VERS vnumber=\"46\"> How long, O LORD, will this last? Will you remain hidden forever? Will your anger continue to burn like fire?</VERS>\n\t\t\t<VERS vnumber=\"47\"> Take note of my brief lifespan! Why do you make all people so mortal?</VERS>\n\t\t\t<VERS vnumber=\"48\"> No man can live on without experiencing death, or deliver his life from the power of Sheol. (Selah)</VERS>\n\t\t\t<VERS vnumber=\"49\"> Where are your earlier faithful deeds, O Lord, the ones performed in accordance with your reliable oath to David?</VERS>\n\t\t\t<VERS vnumber=\"50\"> Take note, O Lord, of the way your servants are taunted, and of how I must bear so many insults from people!</VERS>\n\t\t\t<VERS vnumber=\"51\"> Your enemies, O LORD, hurl insults; they insult your chosen king as they dog his footsteps.</VERS>\n\t\t\t<VERS vnumber=\"52\">  The LORD deserves praise forevermore! We agree! We agree! Book 4 (Psalms 90-106)</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"90\">\n\t\t\t<VERS vnumber=\"1\"> [A prayer of Moses, the man of God.] O Lord, you have been our protector through all generations!</VERS>\n\t\t\t<VERS vnumber=\"2\"> Even before the mountains came into existence, or you brought the world into being, you were the eternal God.</VERS>\n\t\t\t<VERS vnumber=\"3\"> You make mankind return to the dust, and say, \"Return, O people!\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> Yes, in your eyes a thousand years are like yesterday that quickly passes, or like one of the divisions of the nighttime.</VERS>\n\t\t\t<VERS vnumber=\"5\"> You bring their lives to an end and they \"fall asleep.\" In the morning they are like the grass that sprouts up;</VERS>\n\t\t\t<VERS vnumber=\"6\"> in the morning it glistens and sprouts up; at evening time it withers and dries up.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Yes, we are consumed by your anger; we are terrified by your wrath.</VERS>\n\t\t\t<VERS vnumber=\"8\"> You are aware of our sins; you even know about our hidden sins.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Yes, throughout all our days we experience your raging fury; the years of our lives pass quickly, like a sigh.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The days of our lives add up to seventy years, or eighty, if one is especially strong. But even one's best years are marred by trouble and oppression. Yes, they pass quickly and we fly away.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Who can really fathom the intensity of your anger? Your raging fury causes people to fear you.</VERS>\n\t\t\t<VERS vnumber=\"12\"> So teach us to consider our mortality, so that we might live wisely.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Turn back toward us, O LORD! How long must this suffering last? Have pity on your servants!</VERS>\n\t\t\t<VERS vnumber=\"14\"> Satisfy us in the morning with your loyal love! Then we will shout for joy and be happy all our days!</VERS>\n\t\t\t<VERS vnumber=\"15\"> Make us happy in proportion to the days you have afflicted us, in proportion to the years we have experienced trouble!</VERS>\n\t\t\t<VERS vnumber=\"16\"> May your servants see your work! May their sons see your majesty!</VERS>\n\t\t\t<VERS vnumber=\"17\"> May our sovereign God extend his favor to us! Make our endeavors successful! Yes, make them successful!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"91\">\n\t\t\t<VERS vnumber=\"1\"> As for you, the one who lives in the shelter of the sovereign One, and resides in the protective shadow of the mighty king,</VERS>\n\t\t\t<VERS vnumber=\"2\"> I say this about the LORD, my shelter and my stronghold, my God in whom I trust,</VERS>\n\t\t\t<VERS vnumber=\"3\"> he will certainly rescue you from the snare of the hunter and from the destructive plague.</VERS>\n\t\t\t<VERS vnumber=\"4\"> He will shelter you with his wings; you will find safety under his wings. His faithfulness is like a shield or a protective wall.</VERS>\n\t\t\t<VERS vnumber=\"5\"> You need not fear the terrors of the night, the arrow that flies by day,</VERS>\n\t\t\t<VERS vnumber=\"6\"> the plague that comes in the darkness, or the disease that comes at noon.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Though a thousand may fall beside you, and a multitude on your right side, it will not reach you.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Certainly you will see it with your very own eyes, you will see the wicked paid back.</VERS>\n\t\t\t<VERS vnumber=\"9\"> For you have taken refuge in the LORD, my shelter, the sovereign One.</VERS>\n\t\t\t<VERS vnumber=\"10\"> No harm will overtake you; no illness will come near your home.</VERS>\n\t\t\t<VERS vnumber=\"11\"> For he will order his angels to protect you in all you do.</VERS>\n\t\t\t<VERS vnumber=\"12\"> They will lift you up in their hands, so you will not slip and fall on a stone.</VERS>\n\t\t\t<VERS vnumber=\"13\"> You will subdue a lion and a snake; you will trample underfoot a young lion and a serpent.</VERS>\n\t\t\t<VERS vnumber=\"14\"> The LORD says, \"Because he is devoted to me, I will deliver him; I will protect him because he is loyal to me.</VERS>\n\t\t\t<VERS vnumber=\"15\"> When he calls out to me, I will answer him. I will be with him when he is in trouble; I will rescue him and bring him honor.</VERS>\n\t\t\t<VERS vnumber=\"16\"> I will satisfy him with long life, and will let him see my salvation.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"92\">\n\t\t\t<VERS vnumber=\"1\"> [A psalm; a song for the Sabbath day.] It is fitting to thank the LORD, and to sing praises to your name, O sovereign One!</VERS>\n\t\t\t<VERS vnumber=\"2\"> It is fitting to proclaim your loyal love in the morning, and your faithfulness during the night,</VERS>\n\t\t\t<VERS vnumber=\"3\"> to the accompaniment of a ten-stringed instrument and a lyre, to the accompaniment of the meditative tone of the harp.</VERS>\n\t\t\t<VERS vnumber=\"4\"> For you, O LORD, have made me happy by your work. I will sing for joy because of what you have done.</VERS>\n\t\t\t<VERS vnumber=\"5\"> How great are your works, O LORD! Your plans are very intricate!</VERS>\n\t\t\t<VERS vnumber=\"6\"> The spiritually insensitive do not recognize this; the fool does not understand this.</VERS>\n\t\t\t<VERS vnumber=\"7\"> When the wicked sprout up like grass, and all the evildoers glisten, it is so that they may be annihilated.</VERS>\n\t\t\t<VERS vnumber=\"8\"> But you, O LORD, reign forever!</VERS>\n\t\t\t<VERS vnumber=\"9\"> Indeed, look at your enemies, O LORD! Indeed, look at how your enemies perish! All the evildoers are scattered!</VERS>\n\t\t\t<VERS vnumber=\"10\"> You exalt my horn like that of a wild ox. I am covered with fresh oil.</VERS>\n\t\t\t<VERS vnumber=\"11\"> I gloat in triumph over those who tried to ambush me; I hear the defeated cries of the evil foes who attacked me.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The godly grow like a palm tree; they grow high like a cedar in Lebanon.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Planted in the LORD's house, they grow in the courts of our God.</VERS>\n\t\t\t<VERS vnumber=\"14\"> They bear fruit even when they are old; they are filled with vitality and have many leaves.</VERS>\n\t\t\t<VERS vnumber=\"15\"> So they proclaim that the LORD, my protector, is just and never unfair.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"93\">\n\t\t\t<VERS vnumber=\"1\"> The LORD reigns! He is robed in majesty, the LORD is robed, he wears strength around his waist. Indeed, the world is established, it cannot be moved.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Your throne has been secure from ancient times; you have always been king.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The waves roar, O LORD, the waves roar, the waves roar and crash.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Above the sound of the surging water, and the mighty waves of the sea, the LORD sits enthroned in majesty.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The rules you set down are completely reliable. Holiness aptly adorns your house, O LORD, forever.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"94\">\n\t\t\t<VERS vnumber=\"1\"> O LORD, the God who avenges! O God who avenges, reveal your splendor!</VERS>\n\t\t\t<VERS vnumber=\"2\"> Rise up, O judge of the earth! Pay back the proud!</VERS>\n\t\t\t<VERS vnumber=\"3\"> O LORD, how long will the wicked, how long will the wicked celebrate?</VERS>\n\t\t\t<VERS vnumber=\"4\"> They spew out threats and speak defiantly; all the evildoers boast.</VERS>\n\t\t\t<VERS vnumber=\"5\"> O LORD, they crush your people; they oppress the nation that belongs to you.</VERS>\n\t\t\t<VERS vnumber=\"6\"> They kill the widow and the one residing outside his native land, and they murder the fatherless.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Then they say, \"The LORD does not see this; the God of Jacob does not take notice of it.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> Take notice of this, you ignorant people! You fools, when will you ever understand?</VERS>\n\t\t\t<VERS vnumber=\"9\"> Does the one who makes the human ear not hear? Does the one who forms the human eye not see?</VERS>\n\t\t\t<VERS vnumber=\"10\"> Does the one who disciplines the nations not punish? He is the one who imparts knowledge to human beings!</VERS>\n\t\t\t<VERS vnumber=\"11\"> The LORD knows that peoples' thoughts are morally bankrupt.</VERS>\n\t\t\t<VERS vnumber=\"12\"> How blessed is the one whom you instruct, O LORD, the one whom you teach from your law,</VERS>\n\t\t\t<VERS vnumber=\"13\"> in order to protect him from times of trouble, until the wicked are destroyed.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Certainly the LORD does not forsake his people; he does not abandon the nation that belongs to him.</VERS>\n\t\t\t<VERS vnumber=\"15\"> For justice will prevail, and all the morally upright will be vindicated.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Who will rise up to defend me against the wicked? Who will stand up for me against the evildoers?</VERS>\n\t\t\t<VERS vnumber=\"17\"> If the LORD had not helped me, I would have laid down in the silence of death.</VERS>\n\t\t\t<VERS vnumber=\"18\"> If I say, \"My foot is slipping,\" your loyal love, O LORD, supports me.</VERS>\n\t\t\t<VERS vnumber=\"19\"> When worries threaten to overwhelm me, your soothing touch makes me happy.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Cruel rulers are not your allies, those who make oppressive laws.</VERS>\n\t\t\t<VERS vnumber=\"21\"> They conspire against the blameless, and condemn to death the innocent.</VERS>\n\t\t\t<VERS vnumber=\"22\"> But the LORD will protect me, and my God will shelter me.</VERS>\n\t\t\t<VERS vnumber=\"23\"> He will pay them back for their sin. He will destroy them because of their evil; the LORD our God will destroy them.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"95\">\n\t\t\t<VERS vnumber=\"1\"> Come! Let's sing for joy to the LORD! Let's shout out praises to our protector who delivers us!</VERS>\n\t\t\t<VERS vnumber=\"2\"> Let's enter his presence with thanksgiving! Let's shout out to him in celebration!</VERS>\n\t\t\t<VERS vnumber=\"3\"> For the LORD is a great God, a great king who is superior to all gods.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The depths of the earth are in his hand, and the mountain peaks belong to him.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The sea is his, for he made it. His hands formed the dry land.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Come! Let's bow down and worship! Let's kneel before the LORD, our creator!</VERS>\n\t\t\t<VERS vnumber=\"7\"> For he is our God; we are the people of his pasture, the sheep he owns. Today, if only you would obey him!</VERS>\n\t\t\t<VERS vnumber=\"8\"> He says, \"Do not be stubborn like they were at Meribah, like they were that day at Massah in the wilderness,</VERS>\n\t\t\t<VERS vnumber=\"9\"> where your ancestors challenged my authority, and tried my patience, even though they had seen my work.</VERS>\n\t\t\t<VERS vnumber=\"10\"> For forty years I was continually disgusted with that generation, and I said, 'These people desire to go astray; they do not obey my commands.'</VERS>\n\t\t\t<VERS vnumber=\"11\"> So I made a vow in my anger, 'They will never enter into the resting place I had set aside for them.'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"96\">\n\t\t\t<VERS vnumber=\"1\"> Sing to the LORD a new song! Sing to the LORD, all the earth!</VERS>\n\t\t\t<VERS vnumber=\"2\"> Sing to the LORD! Praise his name! Announce every day how he delivers!</VERS>\n\t\t\t<VERS vnumber=\"3\"> Tell the nations about his splendor! Tell all the nations about his amazing deeds!</VERS>\n\t\t\t<VERS vnumber=\"4\"> For the LORD is great and certainly worthy of praise; he is more awesome than all gods.</VERS>\n\t\t\t<VERS vnumber=\"5\"> For all the gods of the nations are worthless, but the LORD made the sky.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Majestic splendor emanates from him; his sanctuary is firmly established and beautiful.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Ascribe to the LORD, O families of the nations, ascribe to the LORD splendor and strength!</VERS>\n\t\t\t<VERS vnumber=\"8\"> Ascribe to the LORD the splendor he deserves! Bring an offering and enter his courts!</VERS>\n\t\t\t<VERS vnumber=\"9\"> Worship the LORD in holy attire! Tremble before him, all the earth!</VERS>\n\t\t\t<VERS vnumber=\"10\"> Say among the nations, \"The LORD reigns! The world is established, it cannot be moved. He judges the nations fairly.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> Let the sky rejoice, and the earth be happy! Let the sea and everything in it shout!</VERS>\n\t\t\t<VERS vnumber=\"12\"> Let the fields and everything in them celebrate! Then let the trees of the forest shout with joy</VERS>\n\t\t\t<VERS vnumber=\"13\"> before the LORD, for he comes! For he comes to judge the earth! He judges the world fairly, and the nations in accordance with his justice.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"97\">\n\t\t\t<VERS vnumber=\"1\"> The LORD reigns! Let the earth be happy! Let the many coastlands rejoice!</VERS>\n\t\t\t<VERS vnumber=\"2\"> Dark clouds surround him; equity and justice are the foundation of his throne.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Fire goes before him; on every side it burns up his enemies.</VERS>\n\t\t\t<VERS vnumber=\"4\"> His lightning bolts light up the world; the earth sees and trembles.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The mountains melt like wax before the LORD, before the Lord of the whole earth.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The sky declares his justice, and all the nations see his splendor.</VERS>\n\t\t\t<VERS vnumber=\"7\"> All who worship idols are ashamed, those who boast about worthless idols. All the gods bow down before him.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Zion hears and rejoices, the towns of Judah are happy, because of your judgments, O LORD.</VERS>\n\t\t\t<VERS vnumber=\"9\"> For you, O LORD, are the sovereign king over the whole earth; you are elevated high above all gods.</VERS>\n\t\t\t<VERS vnumber=\"10\"> You who love the LORD, hate evil! He protects the lives of his faithful followers; he delivers them from the power of the wicked.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The godly bask in the light; the morally upright experience joy.</VERS>\n\t\t\t<VERS vnumber=\"12\"> You godly ones, rejoice in the LORD! Give thanks to his holy name.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"98\">\n\t\t\t<VERS vnumber=\"1\"> [A psalm.] Sing to the LORD a new song, for he performs amazing deeds! His right hand and his mighty arm accomplish deliverance.</VERS>\n\t\t\t<VERS vnumber=\"2\"> The LORD demonstrates his power to deliver; in the sight of the nations he reveals his justice.</VERS>\n\t\t\t<VERS vnumber=\"3\"> He remains loyal and faithful to the family of Israel. All the ends of the earth see our God deliver us.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Shout out praises to the LORD, all the earth! Break out in a joyful shout and sing!</VERS>\n\t\t\t<VERS vnumber=\"5\"> Sing to the LORD accompanied by a harp, accompanied by a harp and the sound of music!</VERS>\n\t\t\t<VERS vnumber=\"6\"> With trumpets and the blaring of the ram's horn, shout out praises before the king, the LORD!</VERS>\n\t\t\t<VERS vnumber=\"7\"> Let the sea and everything in it shout, along with the world and those who live in it!</VERS>\n\t\t\t<VERS vnumber=\"8\"> Let the rivers clap their hands! Let the mountains sing in unison</VERS>\n\t\t\t<VERS vnumber=\"9\"> before the LORD! For he comes to judge the earth! He judges the world fairly, and the nations in a just manner.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"99\">\n\t\t\t<VERS vnumber=\"1\"> The LORD reigns! The nations tremble. He sits enthroned above the winged angels; the earth shakes.</VERS>\n\t\t\t<VERS vnumber=\"2\"> The LORD is elevated in Zion; he is exalted over all the nations.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Let them praise your great and awesome name! He is holy!</VERS>\n\t\t\t<VERS vnumber=\"4\"> The king is strong; he loves justice. You ensure that legal decisions will be made fairly; you promote justice and equity in Jacob.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Praise the LORD our God! Worship before his footstool! He is holy!</VERS>\n\t\t\t<VERS vnumber=\"6\"> Moses and Aaron were among his priests; Samuel was one of those who prayed to him. They prayed to the LORD and he answered them.</VERS>\n\t\t\t<VERS vnumber=\"7\"> He spoke to them from a pillar of cloud; they obeyed his regulations and the ordinance he gave them.</VERS>\n\t\t\t<VERS vnumber=\"8\"> O LORD our God, you answered them. They found you to be a forgiving God, but also one who punished their sinful deeds.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Praise the LORD our God! Worship on his holy hill, for the LORD our God is holy!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"100\">\n\t\t\t<VERS vnumber=\"1\"> [A thanksgiving psalm.] Shout out praises to the LORD, all the earth!</VERS>\n\t\t\t<VERS vnumber=\"2\"> Worship the LORD with joy! Enter his presence with joyful singing!</VERS>\n\t\t\t<VERS vnumber=\"3\"> Acknowledge that the LORD is God! He made us and we belong to him; we are his people, the sheep of his pasture.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Enter his gates with thanksgiving, and his courts with praise! Give him thanks! Praise his name!</VERS>\n\t\t\t<VERS vnumber=\"5\"> For the LORD is good. His loyal love endures, and he is faithful through all generations.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"101\">\n\t\t\t<VERS vnumber=\"1\"> [A psalm of David.] I will sing about loyalty and justice! To you, O LORD, I will sing praises!</VERS>\n\t\t\t<VERS vnumber=\"2\"> I will walk in the way of integrity. When will you come to me? I will conduct my business with integrity in the midst of my palace.</VERS>\n\t\t\t<VERS vnumber=\"3\"> I will not even consider doing what is dishonest. I hate doing evil; I will have no part of it.</VERS>\n\t\t\t<VERS vnumber=\"4\"> I will have nothing to do with a perverse person; I will not permit evil.</VERS>\n\t\t\t<VERS vnumber=\"5\"> I will destroy anyone who slanders his neighbor in secret. I will not tolerate anyone who has a cocky demeanor and an arrogant attitude.</VERS>\n\t\t\t<VERS vnumber=\"6\"> I will favor the honest people of the land, and allow them to live with me. Those who walk in the way of integrity will attend me.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Deceitful people will not live in my palace. Liars will not be welcome in my presence.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Each morning I will destroy all the wicked people in the land, and remove all evildoers from the city of the LORD.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"102\">\n\t\t\t<VERS vnumber=\"1\"> [The prayer of an oppressed man, as he grows faint and pours out his lament before the LORD.] O LORD, hear my prayer! Pay attention to my cry for help!</VERS>\n\t\t\t<VERS vnumber=\"2\"> Do not ignore me in my time of trouble! Listen to me! When I call out to you, quickly answer me!</VERS>\n\t\t\t<VERS vnumber=\"3\"> For my days go up in smoke, and my bones are charred like a fireplace.</VERS>\n\t\t\t<VERS vnumber=\"4\"> My heart is parched and withered like grass, for I am unable to eat food.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Because of the anxiety that makes me groan, my bones protrude from my skin.</VERS>\n\t\t\t<VERS vnumber=\"6\"> I am like an owl in the wilderness; I am like a screech owl among the ruins.</VERS>\n\t\t\t<VERS vnumber=\"7\"> I stay awake; I am like a solitary bird on a roof.</VERS>\n\t\t\t<VERS vnumber=\"8\"> All day long my enemies taunt me; those who mock me use my name in their curses.</VERS>\n\t\t\t<VERS vnumber=\"9\"> For I eat ashes as if they were bread, and mix my drink with my tears,</VERS>\n\t\t\t<VERS vnumber=\"10\"> because of your anger and raging fury. Indeed, you pick me up and throw me away.</VERS>\n\t\t\t<VERS vnumber=\"11\"> My days are coming to an end, and I am withered like grass.</VERS>\n\t\t\t<VERS vnumber=\"12\"> But you, O LORD, rule forever, and your reputation endures.</VERS>\n\t\t\t<VERS vnumber=\"13\"> You will rise up and have compassion on Zion. For it is time to have mercy on her, for the appointed time has come.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Indeed, your servants take delight in her stones, and feel compassion for the dust of her ruins.</VERS>\n\t\t\t<VERS vnumber=\"15\"> The nations will respect the reputation of the LORD, and all the kings of the earth will respect his splendor,</VERS>\n\t\t\t<VERS vnumber=\"16\"> when the LORD rebuilds Zion, and reveals his splendor,</VERS>\n\t\t\t<VERS vnumber=\"17\"> when he responds to the prayer of the destitute, and does not reject their request.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The account of his intervention will be recorded for future generations; people yet to be born will praise the LORD.</VERS>\n\t\t\t<VERS vnumber=\"19\"> For he will look down from his sanctuary above; from heaven the LORD will look toward earth,</VERS>\n\t\t\t<VERS vnumber=\"20\"> in order to hear the painful cries of the prisoners, and to set free those condemned to die,</VERS>\n\t\t\t<VERS vnumber=\"21\"> so they may proclaim the name of the LORD in Zion, and praise him in Jerusalem,</VERS>\n\t\t\t<VERS vnumber=\"22\"> when the nations gather together, and the kingdoms pay tribute to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"23\"> He has taken away my strength in the middle of life; he has cut short my days.</VERS>\n\t\t\t<VERS vnumber=\"24\"> I say, \"O my God, please do not take me away in the middle of my life! You endure through all generations.</VERS>\n\t\t\t<VERS vnumber=\"25\"> In earlier times you established the earth; the skies are your handiwork.</VERS>\n\t\t\t<VERS vnumber=\"26\"> They will perish, but you will endure. They will wear out like a garment; like clothes you will remove them and they will disappear.</VERS>\n\t\t\t<VERS vnumber=\"27\"> But you remain; your years do not come to an end.</VERS>\n\t\t\t<VERS vnumber=\"28\"> The children of your servants will settle down here, and their descendants will live securely in your presence.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"103\">\n\t\t\t<VERS vnumber=\"1\"> [By David.] Praise the LORD, O my soul! With all that is within me, praise his holy name!</VERS>\n\t\t\t<VERS vnumber=\"2\"> Praise the LORD, O my soul! Do not forget all his kind deeds!</VERS>\n\t\t\t<VERS vnumber=\"3\"> He is the one who forgives all your sins, who heals all your diseases,</VERS>\n\t\t\t<VERS vnumber=\"4\"> who delivers your life from the Pit, who crowns you with his loyal love and compassion,</VERS>\n\t\t\t<VERS vnumber=\"5\"> who satisfies your life with good things, so your youth is renewed like an eagle's.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The LORD does what is fair, and executes justice for all the oppressed.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The LORD revealed his faithful acts to Moses, his deeds to the Israelites.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The LORD is compassionate and merciful; he is patient and demonstrates great loyal love.</VERS>\n\t\t\t<VERS vnumber=\"9\"> He does not always accuse, and does not stay angry.</VERS>\n\t\t\t<VERS vnumber=\"10\"> He does not deal with us as our sins deserve; he does not repay us as our misdeeds deserve.</VERS>\n\t\t\t<VERS vnumber=\"11\"> For as the skies are high above the earth, so his loyal love towers over his faithful followers.</VERS>\n\t\t\t<VERS vnumber=\"12\"> As far as the eastern horizon is from the west, so he removes the guilt of our rebellious actions from us.</VERS>\n\t\t\t<VERS vnumber=\"13\"> As a father has compassion on his children, so the LORD has compassion on his faithful followers.</VERS>\n\t\t\t<VERS vnumber=\"14\"> For he knows what we are made of; he realizes we are made of clay.</VERS>\n\t\t\t<VERS vnumber=\"15\"> A person's life is like grass. Like a flower in the field it flourishes,</VERS>\n\t\t\t<VERS vnumber=\"16\"> but when the hot wind blows by, it disappears, and one can no longer even spot the place where it once grew.</VERS>\n\t\t\t<VERS vnumber=\"17\"> But the LORD continually shows loyal love to his faithful followers, and is faithful to their descendants,</VERS>\n\t\t\t<VERS vnumber=\"18\"> to those who keep his covenant, who are careful to obey his commands.</VERS>\n\t\t\t<VERS vnumber=\"19\"> The LORD has established his throne in heaven; his kingdom extends over everything.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Praise the LORD, you angels of his, you powerful warriors who carry out his decrees and obey his orders!</VERS>\n\t\t\t<VERS vnumber=\"21\"> Praise the LORD, all you warriors of his, you servants of his who carry out his desires!</VERS>\n\t\t\t<VERS vnumber=\"22\"> Praise the LORD, all that he has made, in all the regions of his kingdom! Praise the LORD, O my soul!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"104\">\n\t\t\t<VERS vnumber=\"1\"> Praise the LORD, O my soul! O LORD my God, you are magnificent. You are robed in splendor and majesty.</VERS>\n\t\t\t<VERS vnumber=\"2\"> He covers himself with light as if it were a garment. He stretches out the skies like a tent curtain,</VERS>\n\t\t\t<VERS vnumber=\"3\"> and lays the beams of the upper rooms of his palace on the rain clouds. He makes the clouds his chariot, and travels along on the wings of the wind.</VERS>\n\t\t\t<VERS vnumber=\"4\"> He makes the winds his messengers, and the flaming fire his attendant.</VERS>\n\t\t\t<VERS vnumber=\"5\"> He established the earth on its foundations; it will never be upended.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The watery deep covered it like a garment; the waters reached above the mountains.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Your shout made the waters retreat; at the sound of your thunderous voice they hurried off,</VERS>\n\t\t\t<VERS vnumber=\"8\"> as the mountains rose up, and the valleys went down, to the place you appointed for them.</VERS>\n\t\t\t<VERS vnumber=\"9\"> You set up a boundary for them that they could not cross, so that they would not cover the earth again.</VERS>\n\t\t\t<VERS vnumber=\"10\"> He turns springs into streams; they flow between the mountains.</VERS>\n\t\t\t<VERS vnumber=\"11\"> They provide water for all the animals in the field; the wild donkeys quench their thirst.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The birds of the sky live beside them; they chirp among the bushes.</VERS>\n\t\t\t<VERS vnumber=\"13\"> He waters the mountains from the upper rooms of his palace; the earth is full of the fruit you cause to grow.</VERS>\n\t\t\t<VERS vnumber=\"14\"> He provides grass for the cattle, and crops for people to cultivate, so they can produce food from the ground,</VERS>\n\t\t\t<VERS vnumber=\"15\"> as well as wine that makes people feel so good, and so they can have oil to make their faces shine, as well as food that sustains people's lives.</VERS>\n\t\t\t<VERS vnumber=\"16\"> The trees of the LORD receive all the rain they need, the cedars of Lebanon which he planted,</VERS>\n\t\t\t<VERS vnumber=\"17\"> where the birds make nests, near the evergreens in which the herons live.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The wild goats live in the high mountains; the rock badgers find safety in the cliffs.</VERS>\n\t\t\t<VERS vnumber=\"19\"> He made the moon to mark the months, and the sun sets according to a regular schedule.</VERS>\n\t\t\t<VERS vnumber=\"20\"> You make it dark and night comes, during which all the beasts of the forest prowl around.</VERS>\n\t\t\t<VERS vnumber=\"21\"> The lions roar for prey, seeking their food from God.</VERS>\n\t\t\t<VERS vnumber=\"22\"> When the sun rises, they withdraw and sleep in their dens.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Men then go out to do their work, and labor away until evening.</VERS>\n\t\t\t<VERS vnumber=\"24\"> How many living things you have made, O LORD! You have exhibited great skill in making all of them; the earth is full of the living things you have made.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Over here is the deep, wide sea, which teems with innumerable swimming creatures, living things both small and large.</VERS>\n\t\t\t<VERS vnumber=\"26\"> The ships travel there, and over here swims the whale you made to play in it.</VERS>\n\t\t\t<VERS vnumber=\"27\"> All of your creatures wait for you to provide them with food on a regular basis.</VERS>\n\t\t\t<VERS vnumber=\"28\"> You give food to them and they receive it; you open your hand and they are filled with food.</VERS>\n\t\t\t<VERS vnumber=\"29\"> When you ignore them, they panic. When you take away their life's breath, they die and return to dust.</VERS>\n\t\t\t<VERS vnumber=\"30\"> When you send your life-giving breath, they are created, and you replenish the surface of the ground.</VERS>\n\t\t\t<VERS vnumber=\"31\"> May the splendor of the LORD endure! May the LORD find pleasure in the living things he has made!</VERS>\n\t\t\t<VERS vnumber=\"32\"> He looks down on the earth and it shakes; he touches the mountains and they start to smolder.</VERS>\n\t\t\t<VERS vnumber=\"33\"> I will sing to the LORD as long as I live; I will sing praise to my God as long as I exist!</VERS>\n\t\t\t<VERS vnumber=\"34\"> May my thoughts be pleasing to him! I will rejoice in the LORD.</VERS>\n\t\t\t<VERS vnumber=\"35\"> May sinners disappear from the earth, and the wicked vanish! Praise the LORD, O my soul! Praise the LORD!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"105\">\n\t\t\t<VERS vnumber=\"1\"> Give thanks to the LORD! Call on his name! Make known his accomplishments among the nations!</VERS>\n\t\t\t<VERS vnumber=\"2\"> Sing to him! Make music to him! Tell about all his miraculous deeds!</VERS>\n\t\t\t<VERS vnumber=\"3\"> Boast about his holy name! Let the hearts of those who seek the LORD rejoice!</VERS>\n\t\t\t<VERS vnumber=\"4\"> Seek the LORD and the strength he gives! Seek his presence continually!</VERS>\n\t\t\t<VERS vnumber=\"5\"> Recall the miraculous deeds he performed, his mighty acts and the judgments he decreed,</VERS>\n\t\t\t<VERS vnumber=\"6\"> O children of Abraham, God's servant, you descendants of Jacob, God's chosen ones!</VERS>\n\t\t\t<VERS vnumber=\"7\"> He is the LORD our God; he carries out judgment throughout the earth.</VERS>\n\t\t\t<VERS vnumber=\"8\"> He always remembers his covenantal decree, the promise he made to a thousand generations,</VERS>\n\t\t\t<VERS vnumber=\"9\"> the promise he made to Abraham, the promise he made by oath to Isaac!</VERS>\n\t\t\t<VERS vnumber=\"10\"> He gave it to Jacob as a decree, to Israel as a lasting promise,</VERS>\n\t\t\t<VERS vnumber=\"11\"> saying, \"To you I will give the land of Canaan as the portion of your inheritance.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> When they were few in number, just a very few, and resident aliens within it,</VERS>\n\t\t\t<VERS vnumber=\"13\"> they wandered from nation to nation, and from one kingdom to another.</VERS>\n\t\t\t<VERS vnumber=\"14\"> He let no one oppress them; he disciplined kings for their sake,</VERS>\n\t\t\t<VERS vnumber=\"15\"> saying, \"Don't touch my chosen ones! Don't harm my prophets!\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> He called down a famine upon the earth; he cut off all the food supply.</VERS>\n\t\t\t<VERS vnumber=\"17\"> He sent a man ahead of them, Joseph was sold as a servant.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The shackles hurt his feet; his neck was placed in an iron collar,</VERS>\n\t\t\t<VERS vnumber=\"19\"> until the time when his prediction came true. The LORD's word proved him right.</VERS>\n\t\t\t<VERS vnumber=\"20\"> The king authorized his release; the ruler of nations set him free.</VERS>\n\t\t\t<VERS vnumber=\"21\"> He put him in charge of his palace, and made him manager of all his property,</VERS>\n\t\t\t<VERS vnumber=\"22\"> giving him authority to imprison his officials and to teach his advisers.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Israel moved to Egypt; Jacob lived for a time in the land of Ham.</VERS>\n\t\t\t<VERS vnumber=\"24\"> The LORD made his people very fruitful, and made them more numerous than their enemies.</VERS>\n\t\t\t<VERS vnumber=\"25\"> He caused them to hate his people, and to mistreat his servants.</VERS>\n\t\t\t<VERS vnumber=\"26\"> He sent his servant Moses, and Aaron, whom he had chosen.</VERS>\n\t\t\t<VERS vnumber=\"27\"> They executed his miraculous signs among them, and his amazing deeds in the land of Ham.</VERS>\n\t\t\t<VERS vnumber=\"28\"> He made it dark; they did not disobey his orders.</VERS>\n\t\t\t<VERS vnumber=\"29\"> He turned their water into blood, and killed their fish.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Their land was overrun by frogs, which even got into the rooms of their kings.</VERS>\n\t\t\t<VERS vnumber=\"31\"> He ordered flies to come; gnats invaded their whole territory.</VERS>\n\t\t\t<VERS vnumber=\"32\"> He sent hail along with the rain; there was lightning in their land.</VERS>\n\t\t\t<VERS vnumber=\"33\"> He destroyed their vines and fig trees, and broke the trees throughout their territory.</VERS>\n\t\t\t<VERS vnumber=\"34\"> He ordered locusts to come, innumerable grasshoppers.</VERS>\n\t\t\t<VERS vnumber=\"35\"> They ate all the vegetation in their land, and devoured the crops of their fields.</VERS>\n\t\t\t<VERS vnumber=\"36\"> He struck down all the firstborn in their land, the firstfruits of their reproductive power.</VERS>\n\t\t\t<VERS vnumber=\"37\"> He brought his people out enriched with silver and gold; none of his tribes stumbled.</VERS>\n\t\t\t<VERS vnumber=\"38\"> Egypt was happy when they left, for they were afraid of them.</VERS>\n\t\t\t<VERS vnumber=\"39\"> He spread out a cloud for a cover, and provided a fire to light up the night.</VERS>\n\t\t\t<VERS vnumber=\"40\"> They asked for food, and he sent quails; he satisfied them with food from the sky.</VERS>\n\t\t\t<VERS vnumber=\"41\"> He opened up a rock and water flowed out; a river ran through dry regions.</VERS>\n\t\t\t<VERS vnumber=\"42\"> Yes, he remembered the sacred promise he made to Abraham his servant.</VERS>\n\t\t\t<VERS vnumber=\"43\"> When he led his people out, they rejoiced; his chosen ones shouted with joy.</VERS>\n\t\t\t<VERS vnumber=\"44\"> He handed the territory of nations over to them, and they took possession of what other peoples had produced,</VERS>\n\t\t\t<VERS vnumber=\"45\"> so that they might keep his commands and obey his laws. Praise the LORD!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"106\">\n\t\t\t<VERS vnumber=\"1\"> Praise the LORD! Give thanks to the LORD, for he is good, and his loyal love endures!</VERS>\n\t\t\t<VERS vnumber=\"2\"> Who can adequately recount the LORD's mighty acts, or relate all his praiseworthy deeds?</VERS>\n\t\t\t<VERS vnumber=\"3\"> How blessed are those who promote justice, and do what is right all the time!</VERS>\n\t\t\t<VERS vnumber=\"4\"> Remember me, O LORD, when you show favor to your people! Pay attention to me, when you deliver,</VERS>\n\t\t\t<VERS vnumber=\"5\"> so I may see the prosperity of your chosen ones, rejoice along with your nation, and boast along with the people who belong to you.</VERS>\n\t\t\t<VERS vnumber=\"6\"> We have sinned like our ancestors; we have done wrong, we have done evil.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Our ancestors in Egypt failed to appreciate your miraculous deeds, they failed to remember your many acts of loyal love, and they rebelled at the sea, by the Red Sea.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Yet he delivered them for the sake of his reputation, that he might reveal his power.</VERS>\n\t\t\t<VERS vnumber=\"9\"> He shouted at the Red Sea and it dried up; he led them through the deep water as if it were a desert.</VERS>\n\t\t\t<VERS vnumber=\"10\"> He delivered them from the power of the one who hated them, and rescued them from the power of the enemy.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The water covered their enemies; not even one of them survived.</VERS>\n\t\t\t<VERS vnumber=\"12\"> They believed his promises; they sang praises to him.</VERS>\n\t\t\t<VERS vnumber=\"13\"> They quickly forgot what he had done; they did not wait for his instructions.</VERS>\n\t\t\t<VERS vnumber=\"14\"> In the wilderness they had an insatiable craving for meat; they challenged God in the desert.</VERS>\n\t\t\t<VERS vnumber=\"15\"> He granted their request, then struck them with a disease.</VERS>\n\t\t\t<VERS vnumber=\"16\"> In the camp they resented Moses, and Aaron, the LORD's holy priest.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The earth opened up and swallowed Dathan; it engulfed the group led by Abiram.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Fire burned their group; the flames scorched the wicked.</VERS>\n\t\t\t<VERS vnumber=\"19\"> They made an image of a calf at Horeb, and worshiped a metal idol.</VERS>\n\t\t\t<VERS vnumber=\"20\"> They traded their majestic God for the image of an ox that eats grass.</VERS>\n\t\t\t<VERS vnumber=\"21\"> They rejected the God who delivered them, the one who performed great deeds in Egypt,</VERS>\n\t\t\t<VERS vnumber=\"22\"> amazing feats in the land of Ham, mighty acts by the Red Sea.</VERS>\n\t\t\t<VERS vnumber=\"23\"> He threatened to destroy them, but Moses, his chosen one, interceded with him and turned back his destructive anger.</VERS>\n\t\t\t<VERS vnumber=\"24\"> They rejected the fruitful land; they did not believe his promise.</VERS>\n\t\t\t<VERS vnumber=\"25\"> They grumbled in their tents; they did not obey the LORD.</VERS>\n\t\t\t<VERS vnumber=\"26\"> So he made a solemn vow that he would make them die in the desert,</VERS>\n\t\t\t<VERS vnumber=\"27\"> make their descendants die among the nations, and scatter them among foreign lands.</VERS>\n\t\t\t<VERS vnumber=\"28\"> They worshiped Baal of Peor, and ate sacrifices offered to the dead.</VERS>\n\t\t\t<VERS vnumber=\"29\"> They made the LORD angry by their actions, and a plague broke out among them.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Phinehas took a stand and intervened, and the plague subsided.</VERS>\n\t\t\t<VERS vnumber=\"31\"> This brought him a reward, an eternal gift.</VERS>\n\t\t\t<VERS vnumber=\"32\"> They made him angry by the waters of Meribah, and Moses suffered because of them,</VERS>\n\t\t\t<VERS vnumber=\"33\"> for they aroused his temper, and he spoke rashly.</VERS>\n\t\t\t<VERS vnumber=\"34\"> They did not destroy the nations, as the LORD had commanded them to do.</VERS>\n\t\t\t<VERS vnumber=\"35\"> They mixed in with the nations and learned their ways.</VERS>\n\t\t\t<VERS vnumber=\"36\"> They worshiped their idols, which became a snare to them.</VERS>\n\t\t\t<VERS vnumber=\"37\"> They sacrificed their sons and daughters to demons.</VERS>\n\t\t\t<VERS vnumber=\"38\"> They shed innocent blood, the blood of their sons and daughters, whom they sacrificed to the idols of Canaan. The land was polluted by bloodshed.</VERS>\n\t\t\t<VERS vnumber=\"39\"> They were defiled by their deeds, and unfaithful in their actions.</VERS>\n\t\t\t<VERS vnumber=\"40\"> So the LORD was angry with his people and despised the people who belong to him.</VERS>\n\t\t\t<VERS vnumber=\"41\"> He handed them over to the nations, and those who hated them ruled over them.</VERS>\n\t\t\t<VERS vnumber=\"42\"> Their enemies oppressed them; they were subject to their authority.</VERS>\n\t\t\t<VERS vnumber=\"43\"> Many times he delivered them, but they had a rebellious attitude, and degraded themselves by their sin.</VERS>\n\t\t\t<VERS vnumber=\"44\"> Yet he took notice of their distress, when he heard their cry for help.</VERS>\n\t\t\t<VERS vnumber=\"45\"> He remembered his covenant with them, and relented because of his great loyal love.</VERS>\n\t\t\t<VERS vnumber=\"46\"> He caused all their conquerors to have pity on them.</VERS>\n\t\t\t<VERS vnumber=\"47\"> Deliver us, O LORD, our God! Gather us from among the nations! Then we will give thanks to your holy name, and boast about your praiseworthy deeds.</VERS>\n\t\t\t<VERS vnumber=\"48\"> The LORD God of Israel deserves praise, in the future and forevermore. Let all the people say, \"We agree! Praise the LORD!\" Book 5 (Psalms 107-150)</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"107\">\n\t\t\t<VERS vnumber=\"1\"> Give thanks to the LORD, for he is good, and his loyal love endures!</VERS>\n\t\t\t<VERS vnumber=\"2\"> Let those delivered by the LORD speak out, those whom he delivered from the power of the enemy,</VERS>\n\t\t\t<VERS vnumber=\"3\"> and gathered from foreign lands, from east and west, from north and south.</VERS>\n\t\t\t<VERS vnumber=\"4\"> They wandered through the wilderness on a desert road; they found no city in which to live.</VERS>\n\t\t\t<VERS vnumber=\"5\"> They were hungry and thirsty; they fainted from exhaustion.</VERS>\n\t\t\t<VERS vnumber=\"6\"> They cried out to the LORD in their distress; he delivered them from their troubles.</VERS>\n\t\t\t<VERS vnumber=\"7\"> He led them on a level road, that they might find a city in which to live.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Let them give thanks to the LORD for his loyal love, and for the amazing things he has done for people!</VERS>\n\t\t\t<VERS vnumber=\"9\"> For he has satisfied those who thirst, and those who hunger he has filled with food.</VERS>\n\t\t\t<VERS vnumber=\"10\"> They sat in utter darkness, bound in painful iron chains,</VERS>\n\t\t\t<VERS vnumber=\"11\"> because they had rebelled against God's commands, and rejected the instructions of the sovereign king.</VERS>\n\t\t\t<VERS vnumber=\"12\"> So he used suffering to humble them; they stumbled and no one helped them up.</VERS>\n\t\t\t<VERS vnumber=\"13\"> They cried out to the LORD in their distress; he delivered them from their troubles.</VERS>\n\t\t\t<VERS vnumber=\"14\"> He brought them out of the utter darkness, and tore off their shackles.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Let them give thanks to the LORD for his loyal love, and for the amazing things he has done for people!</VERS>\n\t\t\t<VERS vnumber=\"16\"> For he shattered the bronze gates, and hacked through the iron bars.</VERS>\n\t\t\t<VERS vnumber=\"17\"> They acted like fools in their rebellious ways, and suffered because of their sins.</VERS>\n\t\t\t<VERS vnumber=\"18\"> They lost their appetite for all food, and they drew near the gates of death.</VERS>\n\t\t\t<VERS vnumber=\"19\"> They cried out to the LORD in their distress; he delivered them from their troubles.</VERS>\n\t\t\t<VERS vnumber=\"20\"> He sent them an assuring word and healed them; he rescued them from the pits where they were trapped.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Let them give thanks to the LORD for his loyal love, and for the amazing things he has done for people!</VERS>\n\t\t\t<VERS vnumber=\"22\"> Let them present thank offerings, and loudly proclaim what he has done!</VERS>\n\t\t\t<VERS vnumber=\"23\">  Some traveled on the sea in ships, and carried cargo over the vast waters.</VERS>\n\t\t\t<VERS vnumber=\"24\"> They witnessed the acts of the LORD, his amazing feats on the deep water.</VERS>\n\t\t\t<VERS vnumber=\"25\"> He gave the order for a windstorm, and it stirred up the waves of the sea.</VERS>\n\t\t\t<VERS vnumber=\"26\"> They reached up to the sky, then dropped into the depths. The sailors' strength left them because the danger was so great.</VERS>\n\t\t\t<VERS vnumber=\"27\"> They swayed and staggered like a drunk, and all their skill proved ineffective.</VERS>\n\t\t\t<VERS vnumber=\"28\"> They cried out to the LORD in their distress; he delivered them from their troubles.</VERS>\n\t\t\t<VERS vnumber=\"29\"> He calmed the storm, and the waves grew silent.</VERS>\n\t\t\t<VERS vnumber=\"30\"> The sailors rejoiced because the waves grew quiet, and he led them to the harbor they desired.</VERS>\n\t\t\t<VERS vnumber=\"31\"> Let them give thanks to the LORD for his loyal love, and for the amazing things he has done for people!</VERS>\n\t\t\t<VERS vnumber=\"32\"> Let them exalt him in the assembly of the people! Let them praise him in the place where the leaders preside!</VERS>\n\t\t\t<VERS vnumber=\"33\"> He turned streams into a desert, springs of water into arid land,</VERS>\n\t\t\t<VERS vnumber=\"34\"> and a fruitful land into a barren place, because of the sin of its inhabitants.</VERS>\n\t\t\t<VERS vnumber=\"35\"> As for his people, he turned a desert into a pool of water, and a dry land into springs of water.</VERS>\n\t\t\t<VERS vnumber=\"36\"> He allowed the hungry to settle there, and they established a city in which to live.</VERS>\n\t\t\t<VERS vnumber=\"37\"> They cultivated fields, and planted vineyards, which yielded a harvest of fruit.</VERS>\n\t\t\t<VERS vnumber=\"38\"> He blessed them so that they became very numerous. He would not allow their cattle to decrease in number.</VERS>\n\t\t\t<VERS vnumber=\"39\"> As for their enemies, they decreased in number and were beaten down, because of painful distress and suffering.</VERS>\n\t\t\t<VERS vnumber=\"40\"> He would pour contempt upon princes, and he made them wander in a wasteland with no road.</VERS>\n\t\t\t<VERS vnumber=\"41\"> Yet he protected the needy from oppression, and cared for his families like a flock of sheep.</VERS>\n\t\t\t<VERS vnumber=\"42\"> When the godly see this, they rejoice, and every sinner shuts his mouth.</VERS>\n\t\t\t<VERS vnumber=\"43\"> Whoever is wise, let him take note of these things! Let them consider the LORD's acts of loyal love!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"108\">\n\t\t\t<VERS vnumber=\"1\"> [A song, a psalm of David.] I am determined, O God! I will sing and praise you with my whole heart.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Awake, O stringed instrument and harp! I will wake up at dawn!</VERS>\n\t\t\t<VERS vnumber=\"3\"> I will give you thanks before the nations, O LORD! I will sing praises to you before foreigners!</VERS>\n\t\t\t<VERS vnumber=\"4\"> For your loyal love extends beyond the sky, and your faithfulness reaches the clouds.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Rise up above the sky, O God! May your splendor cover the whole earth!</VERS>\n\t\t\t<VERS vnumber=\"6\"> Deliver by your power and answer me, so that the ones you love may be safe.</VERS>\n\t\t\t<VERS vnumber=\"7\"> God has spoken in his sanctuary: \"I will triumph! I will parcel out Shechem, the valley of Succoth I will measure off.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Gilead belongs to me, as does Manasseh! Ephraim is my helmet, Judah my royal scepter.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Moab is my wash basin. I will make Edom serve me. I will shout in triumph over Philistia.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> Who will lead me into the fortified city? Who will bring me to Edom?</VERS>\n\t\t\t<VERS vnumber=\"11\"> Have you not rejected us, O God? O God, you do not go into battle with our armies.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Give us help against the enemy, for any help men might offer is futile.</VERS>\n\t\t\t<VERS vnumber=\"13\"> By God's power we will conquer; he will trample down our enemies.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"109\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director, a psalm of David.] O God whom I praise, do not ignore me!</VERS>\n\t\t\t<VERS vnumber=\"2\"> For they say cruel and deceptive things to me; they lie to me.</VERS>\n\t\t\t<VERS vnumber=\"3\"> They surround me and say hateful things; they attack me for no reason.</VERS>\n\t\t\t<VERS vnumber=\"4\"> They repay my love with accusations, but I continue to pray.</VERS>\n\t\t\t<VERS vnumber=\"5\"> They repay me evil for good, and hate for love.</VERS>\n\t\t\t<VERS vnumber=\"6\">  Appoint an evil man to testify against him! May an accuser stand at his right side!</VERS>\n\t\t\t<VERS vnumber=\"7\"> When he is judged, he will be found guilty! Then his prayer will be regarded as sinful.</VERS>\n\t\t\t<VERS vnumber=\"8\"> May his days be few! May another take his job!</VERS>\n\t\t\t<VERS vnumber=\"9\"> May his children be fatherless, and his wife a widow!</VERS>\n\t\t\t<VERS vnumber=\"10\"> May his children roam around begging, asking for handouts as they leave their ruined home!</VERS>\n\t\t\t<VERS vnumber=\"11\"> May the creditor seize all he owns! May strangers loot his property!</VERS>\n\t\t\t<VERS vnumber=\"12\"> May no one show him kindness! May no one have compassion on his fatherless children!</VERS>\n\t\t\t<VERS vnumber=\"13\"> May his descendants be cut off! May the memory of them be wiped out by the time the next generation arrives!</VERS>\n\t\t\t<VERS vnumber=\"14\"> May his ancestors' sins be remembered by the LORD! May his mother's sin not be forgotten!</VERS>\n\t\t\t<VERS vnumber=\"15\"> May the LORD be constantly aware of them, and cut off the memory of his children from the earth!</VERS>\n\t\t\t<VERS vnumber=\"16\"> For he never bothered to show kindness; he harassed the oppressed and needy, and killed the disheartened.</VERS>\n\t\t\t<VERS vnumber=\"17\"> He loved to curse others, so those curses have come upon him. He had no desire to bless anyone, so he has experienced no blessings.</VERS>\n\t\t\t<VERS vnumber=\"18\"> He made cursing a way of life, so curses poured into his stomach like water and seeped into his bones like oil.</VERS>\n\t\t\t<VERS vnumber=\"19\"> May a curse attach itself to him, like a garment one puts on, or a belt one wears continually!</VERS>\n\t\t\t<VERS vnumber=\"20\"> May the LORD repay my accusers in this way, those who say evil things about me!</VERS>\n\t\t\t<VERS vnumber=\"21\"> O sovereign LORD, intervene on my behalf for the sake of your reputation! Because your loyal love is good, deliver me!</VERS>\n\t\t\t<VERS vnumber=\"22\"> For I am oppressed and needy, and my heart beats violently within me.</VERS>\n\t\t\t<VERS vnumber=\"23\"> I am fading away like a shadow at the end of the day; I am shaken off like a locust.</VERS>\n\t\t\t<VERS vnumber=\"24\"> I am so starved my knees shake; I have turned into skin and bones.</VERS>\n\t\t\t<VERS vnumber=\"25\"> I am disdained by them. When they see me, they shake their heads.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Help me, O LORD my God! Because you are faithful to me, deliver me!</VERS>\n\t\t\t<VERS vnumber=\"27\"> Then they will realize this is your work, and that you, LORD, have accomplished it.</VERS>\n\t\t\t<VERS vnumber=\"28\"> They curse, but you will bless. When they attack, they will be humiliated, but your servant will rejoice.</VERS>\n\t\t\t<VERS vnumber=\"29\"> My accusers will be covered with shame, and draped in humiliation as if it were a robe.</VERS>\n\t\t\t<VERS vnumber=\"30\"> I will thank the LORD profusely, in the middle of a crowd I will praise him,</VERS>\n\t\t\t<VERS vnumber=\"31\"> because he stands at the right hand of the needy, to deliver him from those who threaten his life.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"110\">\n\t\t\t<VERS vnumber=\"1\"> [A psalm of David.] Here is the LORD's proclamation to my lord: \"Sit down at my right hand until I make your enemies your footstool!\"</VERS>\n\t\t\t<VERS vnumber=\"2\"> The LORD extends your dominion from Zion. Rule in the midst of your enemies!</VERS>\n\t\t\t<VERS vnumber=\"3\"> Your people willingly follow you when you go into battle. On the holy hills at sunrise the dew of your youth belongs to you.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The LORD makes this promise on oath and will not revoke it: \"You are an eternal priest after the pattern of Melchizedek.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> O sovereign LORD, at your right hand he strikes down kings in the day he unleashes his anger.</VERS>\n\t\t\t<VERS vnumber=\"6\"> He executes judgment against the nations; he fills the valleys with corpses; he shatters their heads over the vast battlefield.</VERS>\n\t\t\t<VERS vnumber=\"7\"> From the stream along the road he drinks; then he lifts up his head.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"111\">\n\t\t\t<VERS vnumber=\"1\"> Praise the LORD! I will give thanks to the LORD with my whole heart, in the assembly of the godly and the congregation.</VERS>\n\t\t\t<VERS vnumber=\"2\"> The LORD's deeds are great, eagerly awaited by all who desire them.</VERS>\n\t\t\t<VERS vnumber=\"3\"> His work is majestic and glorious, and his faithfulness endures forever.</VERS>\n\t\t\t<VERS vnumber=\"4\"> He does amazing things that will be remembered; the LORD is merciful and compassionate.</VERS>\n\t\t\t<VERS vnumber=\"5\"> He gives food to his faithful followers; he always remembers his covenant.</VERS>\n\t\t\t<VERS vnumber=\"6\"> He announced that he would do mighty deeds for his people, giving them a land that belonged to other nations.</VERS>\n\t\t\t<VERS vnumber=\"7\"> His acts are characterized by faithfulness and justice; all his precepts are reliable.</VERS>\n\t\t\t<VERS vnumber=\"8\"> They are forever firm, and should be faithfully and properly carried out.</VERS>\n\t\t\t<VERS vnumber=\"9\"> He delivered his people; he ordained that his covenant be observed forever. His name is holy and awesome.</VERS>\n\t\t\t<VERS vnumber=\"10\"> To obey the LORD is the fundamental principle for wise living; all who carry out his precepts acquire good moral insight. He will receive praise forever.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"112\">\n\t\t\t<VERS vnumber=\"1\"> Praise the LORD! How blessed is the one who obeys the LORD, who takes great delight in keeping his commands.</VERS>\n\t\t\t<VERS vnumber=\"2\"> His descendants will be powerful on the earth; the godly will be blessed.</VERS>\n\t\t\t<VERS vnumber=\"3\"> His house contains wealth and riches; his integrity endures.</VERS>\n\t\t\t<VERS vnumber=\"4\"> In the darkness a light shines for the godly, for each one who is merciful, compassionate, and just.</VERS>\n\t\t\t<VERS vnumber=\"5\"> It goes well for the one who generously lends money, and conducts his business honestly.</VERS>\n\t\t\t<VERS vnumber=\"6\"> For he will never be upended; others will always remember one who is just.</VERS>\n\t\t\t<VERS vnumber=\"7\"> He does not fear bad news. He is confident; he trusts in the LORD.</VERS>\n\t\t\t<VERS vnumber=\"8\"> His resolve is firm; he will not succumb to fear before he looks in triumph on his enemies.</VERS>\n\t\t\t<VERS vnumber=\"9\"> He generously gives to the needy; his integrity endures. He will be vindicated and honored.</VERS>\n\t\t\t<VERS vnumber=\"10\"> When the wicked see this, they will worry; they will grind their teeth in frustration and melt away; the desire of the wicked will perish.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"113\">\n\t\t\t<VERS vnumber=\"1\"> Praise the LORD! Praise, you servants of the LORD, praise the name of the LORD!</VERS>\n\t\t\t<VERS vnumber=\"2\"> May the LORD's name be praised now and forevermore!</VERS>\n\t\t\t<VERS vnumber=\"3\"> From east to west the LORD's name is deserving of praise.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The LORD is exalted over all the nations; his splendor reaches beyond the sky.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Who can compare to the LORD our God, who sits on a high throne?</VERS>\n\t\t\t<VERS vnumber=\"6\"> He bends down to look at the sky and the earth.</VERS>\n\t\t\t<VERS vnumber=\"7\"> He raises the poor from the dirt, and lifts up the needy from the garbage pile,</VERS>\n\t\t\t<VERS vnumber=\"8\"> that he might seat him with princes, with the princes of his people.</VERS>\n\t\t\t<VERS vnumber=\"9\"> He makes the barren woman of the family a happy mother of children. Praise the LORD!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"114\">\n\t\t\t<VERS vnumber=\"1\"> When Israel left Egypt, when the family of Jacob left a foreign nation behind,</VERS>\n\t\t\t<VERS vnumber=\"2\"> Judah became his sanctuary, Israel his kingdom.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The sea looked and fled; the Jordan River turned back.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The mountains skipped like rams, the hills like lambs.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Why do you flee, O sea? Why do you turn back, O Jordan River?</VERS>\n\t\t\t<VERS vnumber=\"6\"> Why do you skip like rams, O mountains, like lambs, O hills?</VERS>\n\t\t\t<VERS vnumber=\"7\"> Tremble, O earth, before the Lord, before the God of Jacob,</VERS>\n\t\t\t<VERS vnumber=\"8\"> who turned a rock into a pool of water, a hard rock into springs of water!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"115\">\n\t\t\t<VERS vnumber=\"1\"> Not to us, O LORD, not to us! But to your name bring honor, for the sake of your loyal love and faithfulness.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Why should the nations say, \"Where is their God?\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> Our God is in heaven! He does whatever he pleases!</VERS>\n\t\t\t<VERS vnumber=\"4\"> Their idols are made of silver and gold, they are man-made.</VERS>\n\t\t\t<VERS vnumber=\"5\"> They have mouths, but cannot speak, eyes, but cannot see,</VERS>\n\t\t\t<VERS vnumber=\"6\"> ears, but cannot hear, noses, but cannot smell,</VERS>\n\t\t\t<VERS vnumber=\"7\"> hands, but cannot touch, feet, but cannot walk. They cannot even clear their throats.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Those who make them will end up like them, as will everyone who trusts in them.</VERS>\n\t\t\t<VERS vnumber=\"9\"> O Israel, trust in the LORD! He is their deliverer and protector.</VERS>\n\t\t\t<VERS vnumber=\"10\"> O family of Aaron, trust in the LORD! He is their deliverer and protector.</VERS>\n\t\t\t<VERS vnumber=\"11\"> You loyal followers of the LORD, trust in the LORD! He is their deliverer and protector.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The LORD takes notice of us, he will bless, he will bless the family of Israel, he will bless the family of Aaron.</VERS>\n\t\t\t<VERS vnumber=\"13\"> He will bless his loyal followers, both young and old.</VERS>\n\t\t\t<VERS vnumber=\"14\"> May he increase your numbers, yours and your children's!</VERS>\n\t\t\t<VERS vnumber=\"15\"> May you be blessed by the LORD, the creator of heaven and earth!</VERS>\n\t\t\t<VERS vnumber=\"16\"> The heavens belong to the LORD, but the earth he has given to mankind.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The dead do not praise the LORD, nor do any of those who descend into the silence of death.</VERS>\n\t\t\t<VERS vnumber=\"18\"> But we will praise the LORD now and forevermore. Praise the LORD!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"116\">\n\t\t\t<VERS vnumber=\"1\"> I love the LORD because he heard my plea for mercy,</VERS>\n\t\t\t<VERS vnumber=\"2\"> and listened to me. As long as I live, I will call to him when I need help.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The ropes of death tightened around me, the snares of Sheol confronted me. I was confronted with trouble and sorrow.</VERS>\n\t\t\t<VERS vnumber=\"4\"> I called on the name of the LORD, \"Please LORD, rescue my life!\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> The LORD is merciful and fair; our God is compassionate.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The LORD protects the untrained; I was in serious trouble and he delivered me.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Rest once more, my soul, for the LORD has vindicated you.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Yes, LORD, you rescued my life from death, and kept my feet from stumbling.</VERS>\n\t\t\t<VERS vnumber=\"9\"> I will serve the LORD in the land of the living.</VERS>\n\t\t\t<VERS vnumber=\"10\"> I had faith when I said, \"I am severely oppressed.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> I rashly declared, \"All men are liars.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> How can I repay the LORD for all his acts of kindness to me?</VERS>\n\t\t\t<VERS vnumber=\"13\"> I will celebrate my deliverance, and call on the name of the LORD.</VERS>\n\t\t\t<VERS vnumber=\"14\"> I will fulfill my vows to the LORD before all his people.</VERS>\n\t\t\t<VERS vnumber=\"15\"> The LORD values the lives of his faithful followers.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Yes, LORD! I am indeed your servant; I am your lowest slave. You saved me from death.</VERS>\n\t\t\t<VERS vnumber=\"17\"> I will present a thank offering to you, and call on the name of the LORD.</VERS>\n\t\t\t<VERS vnumber=\"18\"> I will fulfill my vows to the LORD before all his people,</VERS>\n\t\t\t<VERS vnumber=\"19\"> in the courts of the LORD's temple, in your midst, O Jerusalem. Praise the LORD!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"117\">\n\t\t\t<VERS vnumber=\"1\"> Praise the LORD, all you nations! Applaud him, all you foreigners!</VERS>\n\t\t\t<VERS vnumber=\"2\"> For his loyal love towers over us, and the LORD's faithfulness endures. Praise the LORD!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"118\">\n\t\t\t<VERS vnumber=\"1\"> Give thanks to the LORD, for he is good and his loyal love endures!</VERS>\n\t\t\t<VERS vnumber=\"2\"> Let Israel say, \"Yes, his loyal love endures!\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> Let the family of Aaron say, \"Yes, his loyal love endures!\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> Let the loyal followers of the LORD say, \"Yes, his loyal love endures!\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> In my distress I cried out to the LORD. The LORD answered me and put me in a wide open place.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The LORD is on my side, I am not afraid! What can people do to me?</VERS>\n\t\t\t<VERS vnumber=\"7\"> The LORD is on my side as my helper. I look in triumph on those who hate me.</VERS>\n\t\t\t<VERS vnumber=\"8\"> It is better to take shelter in the LORD than to trust in people.</VERS>\n\t\t\t<VERS vnumber=\"9\"> It is better to take shelter in the LORD than to trust in princes.</VERS>\n\t\t\t<VERS vnumber=\"10\"> All the nations surrounded me. Indeed, in the name of the LORD I pushed them away.</VERS>\n\t\t\t<VERS vnumber=\"11\"> They surrounded me, yes, they surrounded me. Indeed, in the name of the LORD I pushed them away.</VERS>\n\t\t\t<VERS vnumber=\"12\"> They surrounded me like bees. But they disappeared as quickly as a fire among thorns. Indeed, in the name of the LORD I pushed them away.</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"You aggressively attacked me and tried to knock me down, but the LORD helped me.</VERS>\n\t\t\t<VERS vnumber=\"14\"> The LORD gives me strength and protects me; he has become my deliverer.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> They celebrate deliverance in the tents of the godly. The LORD's right hand conquers,</VERS>\n\t\t\t<VERS vnumber=\"16\"> the LORD's right hand gives victory, the LORD's right hand conquers.</VERS>\n\t\t\t<VERS vnumber=\"17\"> I will not die, but live, and I will proclaim what the LORD has done.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The LORD severely punished me, but he did not hand me over to death.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Open for me the gates of the just king's temple! I will enter through them and give thanks to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"20\"> This is the LORD's gate, the godly enter through it.</VERS>\n\t\t\t<VERS vnumber=\"21\"> I will give you thanks, for you answered me, and have become my deliverer.</VERS>\n\t\t\t<VERS vnumber=\"22\"> The stone which the builders discarded has become the cornerstone.</VERS>\n\t\t\t<VERS vnumber=\"23\"> This is the LORD's work. We consider it amazing!</VERS>\n\t\t\t<VERS vnumber=\"24\"> This is the day the LORD has brought about. We will be happy and rejoice in it.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Please LORD, deliver! Please LORD, grant us success!</VERS>\n\t\t\t<VERS vnumber=\"26\"> May the one who comes in the name of the LORD be blessed! We will pronounce blessings on you in the LORD's temple.</VERS>\n\t\t\t<VERS vnumber=\"27\"> The LORD is God and he has delivered us. Tie the offering with ropes to the horns of the altar!</VERS>\n\t\t\t<VERS vnumber=\"28\"> You are my God and I will give you thanks! You are my God and I will praise you!</VERS>\n\t\t\t<VERS vnumber=\"29\"> Give thanks to the LORD, for he is good and his loyal love endures!&amp;u05D0; (Alef)</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"119\">\n\t\t\t<VERS vnumber=\"1\"> How blessed are those whose actions are blameless, who obey the law of the LORD.</VERS>\n\t\t\t<VERS vnumber=\"2\"> How blessed are those who observe his rules, and seek him with all their heart,</VERS>\n\t\t\t<VERS vnumber=\"3\"> who, moreover, do no wrong, but follow in his footsteps.</VERS>\n\t\t\t<VERS vnumber=\"4\"> You demand that your precepts be carefully kept.</VERS>\n\t\t\t<VERS vnumber=\"5\"> If only I were predisposed to keep your statutes!</VERS>\n\t\t\t<VERS vnumber=\"6\"> Then I would not be ashamed, if I were focused on all your commands.</VERS>\n\t\t\t<VERS vnumber=\"7\"> I will give you sincere thanks, when I learn your just regulations.</VERS>\n\t\t\t<VERS vnumber=\"8\"> I will keep your statutes. Do not completely abandon me!&amp;u05D1; (Bet)</VERS>\n\t\t\t<VERS vnumber=\"9\"> How can a young person maintain a pure life? By guarding it according to your instructions!</VERS>\n\t\t\t<VERS vnumber=\"10\"> With all my heart I seek you. Do not allow me to stray from your commands!</VERS>\n\t\t\t<VERS vnumber=\"11\"> In my heart I store up your words, so I might not sin against you.</VERS>\n\t\t\t<VERS vnumber=\"12\"> You deserve praise, O LORD! Teach me your statutes!</VERS>\n\t\t\t<VERS vnumber=\"13\"> With my lips I proclaim all the regulations you have revealed.</VERS>\n\t\t\t<VERS vnumber=\"14\"> I rejoice in the lifestyle prescribed by your rules as if they were riches of all kinds.</VERS>\n\t\t\t<VERS vnumber=\"15\"> I will meditate on your precepts and focus on your behavior.</VERS>\n\t\t\t<VERS vnumber=\"16\"> I find delight in your statutes; I do not forget your instructions.&amp;u05D2; (Gimel)</VERS>\n\t\t\t<VERS vnumber=\"17\"> Be kind to your servant! Then I will live and keep your instructions.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Open my eyes so I can truly see the marvelous things in your law!</VERS>\n\t\t\t<VERS vnumber=\"19\"> I am like a foreigner in this land. Do not hide your commands from me!</VERS>\n\t\t\t<VERS vnumber=\"20\"> I desperately long to know your regulations at all times.</VERS>\n\t\t\t<VERS vnumber=\"21\"> You reprimand arrogant people. Those who stray from your commands are doomed.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Spare me shame and humiliation, for I observe your rules.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Though rulers plot and slander me, your servant meditates on your statutes.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Yes, I find delight in your rules; they give me guidance.&amp;u05D3; (Dalet)</VERS>\n\t\t\t<VERS vnumber=\"25\"> I collapse in the dirt. Revive me with your word!</VERS>\n\t\t\t<VERS vnumber=\"26\"> I told you about my ways and you answered me. Teach me your statutes!</VERS>\n\t\t\t<VERS vnumber=\"27\"> Help me to understand what your precepts mean! Then I can meditate on your marvelous teachings.</VERS>\n\t\t\t<VERS vnumber=\"28\"> I collapse from grief. Sustain me by your word!</VERS>\n\t\t\t<VERS vnumber=\"29\"> Remove me from the path of deceit! Graciously give me your law!</VERS>\n\t\t\t<VERS vnumber=\"30\"> I choose the path of faithfulness; I am committed to your regulations.</VERS>\n\t\t\t<VERS vnumber=\"31\"> I hold fast to your rules. O LORD, do not let me be ashamed!</VERS>\n\t\t\t<VERS vnumber=\"32\"> I run along the path of your commands, for you enable me to do so.&amp;u05D4; (He)</VERS>\n\t\t\t<VERS vnumber=\"33\"> Teach me, O LORD, the lifestyle prescribed by your statutes, so that I might observe it continually.</VERS>\n\t\t\t<VERS vnumber=\"34\"> Give me understanding so that I might observe your law, and keep it with all my heart.</VERS>\n\t\t\t<VERS vnumber=\"35\"> Guide me in the path of your commands, for I delight to walk in it.</VERS>\n\t\t\t<VERS vnumber=\"36\"> Give me a desire for your rules, rather than for wealth gained unjustly.</VERS>\n\t\t\t<VERS vnumber=\"37\"> Turn my eyes away from what is worthless! Revive me with your word!</VERS>\n\t\t\t<VERS vnumber=\"38\"> Confirm to your servant your promise, which you made to the one who honors you.</VERS>\n\t\t\t<VERS vnumber=\"39\"> Take away the insults that I dread! Indeed, your regulations are good.</VERS>\n\t\t\t<VERS vnumber=\"40\"> Look, I long for your precepts. Revive me with your deliverance!&amp;u05D5; (Vav)</VERS>\n\t\t\t<VERS vnumber=\"41\"> May I experience your loyal love, O LORD, and your deliverance, as you promised.</VERS>\n\t\t\t<VERS vnumber=\"42\"> Then I will have a reply for the one who insults me, for I trust in your word.</VERS>\n\t\t\t<VERS vnumber=\"43\"> Do not completely deprive me of a truthful testimony, for I await your justice.</VERS>\n\t\t\t<VERS vnumber=\"44\"> Then I will keep your law continually now and for all time.</VERS>\n\t\t\t<VERS vnumber=\"45\"> I will be secure, for I seek your precepts.</VERS>\n\t\t\t<VERS vnumber=\"46\"> I will speak about your regulations before kings and not be ashamed.</VERS>\n\t\t\t<VERS vnumber=\"47\"> I will find delight in your commands, which I love.</VERS>\n\t\t\t<VERS vnumber=\"48\"> I will lift my hands to your commands, which I love, and I will meditate on your statutes.&amp;u05D6; (Zayin)</VERS>\n\t\t\t<VERS vnumber=\"49\"> Remember your word to your servant, for you have given me hope.</VERS>\n\t\t\t<VERS vnumber=\"50\"> This is what comforts me in my trouble, for your promise revives me.</VERS>\n\t\t\t<VERS vnumber=\"51\"> Arrogant people do nothing but scoff at me. Yet I do not turn aside from your law.</VERS>\n\t\t\t<VERS vnumber=\"52\"> I remember your ancient regulations, O LORD, and console myself.</VERS>\n\t\t\t<VERS vnumber=\"53\"> Rage takes hold of me because of the wicked, those who reject your law.</VERS>\n\t\t\t<VERS vnumber=\"54\"> Your statutes have been my songs in the house where I live.</VERS>\n\t\t\t<VERS vnumber=\"55\"> I remember your name during the night, O LORD, and I will keep your law.</VERS>\n\t\t\t<VERS vnumber=\"56\"> This has been my practice, for I observe your precepts.&amp;u05D7; (Khet)</VERS>\n\t\t\t<VERS vnumber=\"57\"> The LORD is my source of security. I have determined to follow your instructions.</VERS>\n\t\t\t<VERS vnumber=\"58\"> I seek your favor with all my heart. Have mercy on me as you promised!</VERS>\n\t\t\t<VERS vnumber=\"59\"> I consider my actions and follow your rules.</VERS>\n\t\t\t<VERS vnumber=\"60\"> I keep your commands eagerly and without delay.</VERS>\n\t\t\t<VERS vnumber=\"61\"> The ropes of the wicked tighten around me, but I do not forget your law.</VERS>\n\t\t\t<VERS vnumber=\"62\"> In the middle of the night I arise to thank you for your just regulations.</VERS>\n\t\t\t<VERS vnumber=\"63\"> I am a friend to all your loyal followers, and to those who keep your precepts.</VERS>\n\t\t\t<VERS vnumber=\"64\"> O LORD, your loyal love fills the earth. Teach me your statutes!&amp;u05D8; (Tet)</VERS>\n\t\t\t<VERS vnumber=\"65\"> You are good to your servant, O LORD, just as you promised.</VERS>\n\t\t\t<VERS vnumber=\"66\"> Teach me proper discernment and understanding! For I consider your commands to be reliable.</VERS>\n\t\t\t<VERS vnumber=\"67\"> Before I was afflicted I used to stray off, but now I keep your instructions.</VERS>\n\t\t\t<VERS vnumber=\"68\"> You are good and you do good. Teach me your statutes!</VERS>\n\t\t\t<VERS vnumber=\"69\"> Arrogant people smear my reputation with lies, but I observe your precepts with all my heart.</VERS>\n\t\t\t<VERS vnumber=\"70\"> Their hearts are calloused, but I find delight in your law.</VERS>\n\t\t\t<VERS vnumber=\"71\"> It was good for me to suffer, so that I might learn your statutes.</VERS>\n\t\t\t<VERS vnumber=\"72\"> The law you have revealed is more important to me than thousands of pieces of gold and silver.&amp;u05D9; (Yod)</VERS>\n\t\t\t<VERS vnumber=\"73\"> Your hands made me and formed me. Give me understanding so that I might learn your commands.</VERS>\n\t\t\t<VERS vnumber=\"74\"> Your loyal followers will be glad when they see me, for I find hope in your word.</VERS>\n\t\t\t<VERS vnumber=\"75\"> I know, LORD, that your regulations are just. You disciplined me because of your faithful devotion to me.</VERS>\n\t\t\t<VERS vnumber=\"76\"> May your loyal love console me, as you promised your servant.</VERS>\n\t\t\t<VERS vnumber=\"77\"> May I experience your compassion, so I might live! For I find delight in your law.</VERS>\n\t\t\t<VERS vnumber=\"78\"> May the arrogant be humiliated, for they have slandered me! But I meditate on your precepts.</VERS>\n\t\t\t<VERS vnumber=\"79\"> May your loyal followers turn to me, those who know your rules.</VERS>\n\t\t\t<VERS vnumber=\"80\"> May I be fully committed to your statutes, so that I might not be ashamed.&amp;u05DB; (Kaf)</VERS>\n\t\t\t<VERS vnumber=\"81\"> I desperately long for your deliverance. I find hope in your word.</VERS>\n\t\t\t<VERS vnumber=\"82\"> My eyes grow tired as I wait for your promise to be fulfilled. I say, \"When will you comfort me?\"</VERS>\n\t\t\t<VERS vnumber=\"83\"> For I am like a wineskin dried up in smoke. I do not forget your statutes.</VERS>\n\t\t\t<VERS vnumber=\"84\"> How long must your servant endure this? When will you judge those who pursue me?</VERS>\n\t\t\t<VERS vnumber=\"85\"> The arrogant dig pits to trap me, which violates your law.</VERS>\n\t\t\t<VERS vnumber=\"86\"> All your commands are reliable. I am pursued without reason. Help me!</VERS>\n\t\t\t<VERS vnumber=\"87\"> They have almost destroyed me here on the earth, but I do not reject your precepts.</VERS>\n\t\t\t<VERS vnumber=\"88\"> Revive me with your loyal love, that I might keep the rules you have revealed.&amp;u05DC; (Lamed)</VERS>\n\t\t\t<VERS vnumber=\"89\"> O LORD, your instructions endure; they stand secure in heaven.</VERS>\n\t\t\t<VERS vnumber=\"90\"> You demonstrate your faithfulness to all generations. You established the earth and it stood firm.</VERS>\n\t\t\t<VERS vnumber=\"91\"> Today they stand firm by your decrees, for all things are your servants.</VERS>\n\t\t\t<VERS vnumber=\"92\"> If I had not found encouragement in your law, I would have died in my sorrow.</VERS>\n\t\t\t<VERS vnumber=\"93\"> I will never forget your precepts, for by them you have revived me.</VERS>\n\t\t\t<VERS vnumber=\"94\"> I belong to you. Deliver me! For I seek your precepts.</VERS>\n\t\t\t<VERS vnumber=\"95\"> The wicked prepare to kill me, yet I concentrate on your rules.</VERS>\n\t\t\t<VERS vnumber=\"96\"> I realize that everything has its limits, but your commands are beyond full comprehension.&amp;u05DE; (Mem)</VERS>\n\t\t\t<VERS vnumber=\"97\"> O how I love your law! All day long I meditate on it.</VERS>\n\t\t\t<VERS vnumber=\"98\"> Your commandments make me wiser than my enemies, for I am always aware of them.</VERS>\n\t\t\t<VERS vnumber=\"99\"> I have more insight than all my teachers, for I meditate on your rules.</VERS>\n\t\t\t<VERS vnumber=\"100\"> I am more discerning than those older than I, for I observe your precepts.</VERS>\n\t\t\t<VERS vnumber=\"101\"> I stay away from the evil path, so that I might keep your instructions.</VERS>\n\t\t\t<VERS vnumber=\"102\"> I do not turn aside from your regulations, for you teach me.</VERS>\n\t\t\t<VERS vnumber=\"103\"> Your words are sweeter in my mouth than honey!</VERS>\n\t\t\t<VERS vnumber=\"104\"> Your precepts give me discernment. Therefore I hate all deceitful actions.&amp;u05E0; (Nun)</VERS>\n\t\t\t<VERS vnumber=\"105\"> Your word is a lamp to walk by, and a light to illumine my path.</VERS>\n\t\t\t<VERS vnumber=\"106\"> I have vowed and solemnly sworn to keep your just regulations.</VERS>\n\t\t\t<VERS vnumber=\"107\"> I am suffering terribly. O LORD, revive me with your word!</VERS>\n\t\t\t<VERS vnumber=\"108\"> O LORD, please accept the freewill offerings of my praise! Teach me your regulations!</VERS>\n\t\t\t<VERS vnumber=\"109\"> My life is in continual danger, but I do not forget your law.</VERS>\n\t\t\t<VERS vnumber=\"110\"> The wicked lay a trap for me, but I do not wander from your precepts.</VERS>\n\t\t\t<VERS vnumber=\"111\"> I claim your rules as my permanent possession, for they give me joy.</VERS>\n\t\t\t<VERS vnumber=\"112\"> I am determined to obey your statutes at all times, to the very end.&amp;u05E1; (Samek)&amp;u05B9;119:113 I hate people with divided loyalties, but I love your law.</VERS>\n\t\t\t<VERS vnumber=\"113\"> </VERS>\n\t\t\t<VERS vnumber=\"114\"> You are my hiding place and my shield. I find hope in your word.</VERS>\n\t\t\t<VERS vnumber=\"115\"> Turn away from me, you evil men, so that I can observe the commands of my God.</VERS>\n\t\t\t<VERS vnumber=\"116\"> Sustain me as you promised, so that I will live. Do not disappoint me!</VERS>\n\t\t\t<VERS vnumber=\"117\"> Support me, so that I will be delivered. Then I will focus on your statutes continually.</VERS>\n\t\t\t<VERS vnumber=\"118\"> You despise all who stray from your statutes, for they are deceptive and unreliable.</VERS>\n\t\t\t<VERS vnumber=\"119\"> You remove all the wicked of the earth like slag. Therefore I love your rules.</VERS>\n\t\t\t<VERS vnumber=\"120\"> My body trembles because I fear you; I am afraid of your judgments.&amp;u05E2; (Ayin)</VERS>\n\t\t\t<VERS vnumber=\"121\"> I do what is fair and right. Do not abandon me to my oppressors!</VERS>\n\t\t\t<VERS vnumber=\"122\"> Guarantee the welfare of your servant! Do not let the arrogant oppress me!</VERS>\n\t\t\t<VERS vnumber=\"123\"> My eyes grow tired as I wait for your deliverance, for your reliable promise to be fulfilled.</VERS>\n\t\t\t<VERS vnumber=\"124\"> Show your servant your loyal love! Teach me your statutes!</VERS>\n\t\t\t<VERS vnumber=\"125\"> I am your servant. Give me insight, so that I can understand your rules.</VERS>\n\t\t\t<VERS vnumber=\"126\"> It is time for the LORD to act, they break your law!</VERS>\n\t\t\t<VERS vnumber=\"127\"> For this reason I love your commands more than gold, even purest gold.</VERS>\n\t\t\t<VERS vnumber=\"128\"> For this reason I carefully follow all your precepts. I hate all deceitful actions.&amp;u05E4; (Pe)</VERS>\n\t\t\t<VERS vnumber=\"129\"> Your rules are marvelous. Therefore I observe them.</VERS>\n\t\t\t<VERS vnumber=\"130\"> Your instructions are a doorway through which light shines. They give insight to the untrained.</VERS>\n\t\t\t<VERS vnumber=\"131\"> I open my mouth and pant, because I long for your commands.</VERS>\n\t\t\t<VERS vnumber=\"132\"> Turn toward me and extend mercy to me, as you typically do to your loyal followers.</VERS>\n\t\t\t<VERS vnumber=\"133\"> Direct my steps by your word! Do not let any sin dominate me!</VERS>\n\t\t\t<VERS vnumber=\"134\"> Deliver me from oppressive men, so that I can keep your precepts.</VERS>\n\t\t\t<VERS vnumber=\"135\"> Smile on your servant! Teach me your statutes!</VERS>\n\t\t\t<VERS vnumber=\"136\"> Tears stream down from my eyes, because people do not keep your law.&amp;u05E6; (Tsade)</VERS>\n\t\t\t<VERS vnumber=\"137\"> You are just, O LORD, and your judgments are fair.</VERS>\n\t\t\t<VERS vnumber=\"138\"> The rules you impose are just, and absolutely reliable.</VERS>\n\t\t\t<VERS vnumber=\"139\"> My zeal consumes me, for my enemies forget your instructions.</VERS>\n\t\t\t<VERS vnumber=\"140\"> Your word is absolutely pure, and your servant loves it!</VERS>\n\t\t\t<VERS vnumber=\"141\"> I am insignificant and despised, yet I do not forget your precepts.</VERS>\n\t\t\t<VERS vnumber=\"142\"> Your justice endures, and your law is reliable.</VERS>\n\t\t\t<VERS vnumber=\"143\"> Distress and hardship confront me, yet I find delight in your commands.</VERS>\n\t\t\t<VERS vnumber=\"144\"> Your rules remain just. Give me insight so that I can live.&amp;u05E7; (Qof)</VERS>\n\t\t\t<VERS vnumber=\"145\"> I cried out with all my heart, \"Answer me, O LORD! I will observe your statutes.\"</VERS>\n\t\t\t<VERS vnumber=\"146\"> I cried out to you, \"Deliver me, so that I can keep your rules.\"</VERS>\n\t\t\t<VERS vnumber=\"147\"> I am up before dawn crying for help. I find hope in your word.</VERS>\n\t\t\t<VERS vnumber=\"148\"> My eyes anticipate the nighttime hours, so that I can meditate on your word.</VERS>\n\t\t\t<VERS vnumber=\"149\"> Listen to me because of your loyal love! O LORD, revive me, as you typically do!</VERS>\n\t\t\t<VERS vnumber=\"150\"> Those who are eager to do wrong draw near; they are far from your law.</VERS>\n\t\t\t<VERS vnumber=\"151\"> You are near, O LORD, and all your commands are reliable.</VERS>\n\t\t\t<VERS vnumber=\"152\"> I learned long ago that you ordained your rules to last.&amp;u05E8; (Resh)</VERS>\n\t\t\t<VERS vnumber=\"153\"> See my pain and rescue me! For I do not forget your law.</VERS>\n\t\t\t<VERS vnumber=\"154\"> Fight for me and defend me! Revive me with your word!</VERS>\n\t\t\t<VERS vnumber=\"155\"> The wicked have no chance for deliverance, for they do not seek your statutes.</VERS>\n\t\t\t<VERS vnumber=\"156\"> Your compassion is great, O LORD. Revive me, as you typically do!</VERS>\n\t\t\t<VERS vnumber=\"157\"> The enemies who chase me are numerous. Yet I do not turn aside from your rules.</VERS>\n\t\t\t<VERS vnumber=\"158\"> I take note of the treacherous and despise them, because they do not keep your instructions.</VERS>\n\t\t\t<VERS vnumber=\"159\"> See how I love your precepts! O LORD, revive me with your loyal love!</VERS>\n\t\t\t<VERS vnumber=\"160\"> Your instructions are totally reliable; all your just regulations endure.&amp;u05E9;&amp;u05C2;/&amp;u05E9;&amp;u05C1; (Sin/Shin)</VERS>\n\t\t\t<VERS vnumber=\"161\"> Rulers pursue me for no reason, yet I am more afraid of disobeying your instructions.</VERS>\n\t\t\t<VERS vnumber=\"162\"> I rejoice in your instructions, like one who finds much plunder.</VERS>\n\t\t\t<VERS vnumber=\"163\"> I hate and despise deceit; I love your law.</VERS>\n\t\t\t<VERS vnumber=\"164\"> Seven times a day I praise you because of your just regulations.</VERS>\n\t\t\t<VERS vnumber=\"165\"> Those who love your law are completely secure; nothing causes them to stumble.</VERS>\n\t\t\t<VERS vnumber=\"166\"> I hope for your deliverance, O LORD, and I obey your commands.</VERS>\n\t\t\t<VERS vnumber=\"167\"> I keep your rules; I love them greatly.</VERS>\n\t\t\t<VERS vnumber=\"168\"> I keep your precepts and rules, for you are aware of everything I do.&amp;u05EA; (Tav)</VERS>\n\t\t\t<VERS vnumber=\"169\"> Listen to my cry for help, O LORD! Give me insight by your word!</VERS>\n\t\t\t<VERS vnumber=\"170\"> Listen to my appeal for mercy! Deliver me, as you promised.</VERS>\n\t\t\t<VERS vnumber=\"171\"> May praise flow freely from my lips, for you teach me your statutes.</VERS>\n\t\t\t<VERS vnumber=\"172\"> May my tongue sing about your instructions, for all your commands are just.</VERS>\n\t\t\t<VERS vnumber=\"173\"> May your hand help me, for I choose to obey your precepts.</VERS>\n\t\t\t<VERS vnumber=\"174\"> I long for your deliverance, O LORD; I find delight in your law.</VERS>\n\t\t\t<VERS vnumber=\"175\"> May I live and praise you! May your regulations help me!</VERS>\n\t\t\t<VERS vnumber=\"176\"> I have wandered off like a lost sheep. Come looking for your servant, for I do not forget your commands.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"120\">\n\t\t\t<VERS vnumber=\"1\"> [A song of ascents.] In my distress I cried out to the LORD and he answered me.</VERS>\n\t\t\t<VERS vnumber=\"2\"> I said, \"O LORD, rescue me from those who lie with their lips and those who deceive with their tongue.</VERS>\n\t\t\t<VERS vnumber=\"3\"> How will he severely punish you, you deceptive talker?</VERS>\n\t\t\t<VERS vnumber=\"4\"> Here's how! With the sharp arrows of warriors, with arrowheads forged over the hot coals.</VERS>\n\t\t\t<VERS vnumber=\"5\"> How miserable I am! For I have lived temporarily in Meshech; I have resided among the tents of Kedar.</VERS>\n\t\t\t<VERS vnumber=\"6\"> For too long I have had to reside with those who hate peace.</VERS>\n\t\t\t<VERS vnumber=\"7\"> I am committed to peace, but when I speak, they want to make war.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"121\">\n\t\t\t<VERS vnumber=\"1\"> [A song of ascents.] I look up toward the hills. From where does my help come?</VERS>\n\t\t\t<VERS vnumber=\"2\"> My help comes from the LORD, the Creator of heaven and earth!</VERS>\n\t\t\t<VERS vnumber=\"3\"> May he not allow your foot to slip! May your protector not sleep!</VERS>\n\t\t\t<VERS vnumber=\"4\"> Look! Israel's protector does not sleep or slumber!</VERS>\n\t\t\t<VERS vnumber=\"5\"> The LORD is your protector; the LORD is the shade at your right hand.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The sun will not harm you by day, or the moon by night.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The LORD will protect you from all harm; he will protect your life.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The LORD will protect you in all you do, now and forevermore.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"122\">\n\t\t\t<VERS vnumber=\"1\"> [A song of ascents, by David.] I was glad because they said to me, \"We will go to the LORD's temple.\"</VERS>\n\t\t\t<VERS vnumber=\"2\"> Our feet are standing inside your gates, O Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Jerusalem is a city designed to accommodate an assembly.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The tribes go up there, the tribes of the LORD, where it is required that Israel give thanks to the name of the LORD.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Indeed, the leaders sit there on thrones and make legal decisions, on the thrones of the house of David.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Pray for the peace of Jerusalem! May those who love her prosper!</VERS>\n\t\t\t<VERS vnumber=\"7\"> May there be peace inside your defenses, and prosperity inside your fortresses!</VERS>\n\t\t\t<VERS vnumber=\"8\"> For the sake of my brothers and my neighbors I will say, \"May there be peace in you!\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> For the sake of the temple of the LORD our God I will pray for you to prosper.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"123\">\n\t\t\t<VERS vnumber=\"1\"> [A song of ascents.] I look up toward you, the one enthroned in heaven.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Look, as the eyes of servants look to the hand of their master, as the eyes of a female servant look to the hand of her mistress, so my eyes will look to the LORD, our God, until he shows us favor.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Show us favor, O LORD, show us favor! For we have had our fill of humiliation, and then some.</VERS>\n\t\t\t<VERS vnumber=\"4\"> We have had our fill of the taunts of the self-assured, of the contempt of the proud.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"124\">\n\t\t\t<VERS vnumber=\"1\"> [A song of ascents, by David.] \"If the LORD had not been on our side\", let Israel say this!,</VERS>\n\t\t\t<VERS vnumber=\"2\"> if the LORD had not been on our side, when men attacked us,</VERS>\n\t\t\t<VERS vnumber=\"3\"> they would have swallowed us alive, when their anger raged against us.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The water would have overpowered us; the current would have overwhelmed us.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The raging water would have overwhelmed us.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The LORD deserves praise, for he did not hand us over as prey to their teeth.</VERS>\n\t\t\t<VERS vnumber=\"7\"> We escaped with our lives, like a bird from a hunter's snare. The snare broke, and we escaped.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Our deliverer is the LORD, the Creator of heaven and earth.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"125\">\n\t\t\t<VERS vnumber=\"1\"> [A song of ascents.] Those who trust in the LORD are like Mount Zion; it cannot be upended and will endure forever.</VERS>\n\t\t\t<VERS vnumber=\"2\"> As the mountains surround Jerusalem, so the LORD surrounds his people, now and forevermore.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Indeed, the scepter of a wicked king will not settle upon the allotted land of the godly. Otherwise the godly might do what is wrong.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Do good, O LORD, to those who are good, to the morally upright!</VERS>\n\t\t\t<VERS vnumber=\"5\"> As for those who are bent on traveling a sinful path, may the LORD remove them, along with those who behave wickedly! May Israel experience peace!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"126\">\n\t\t\t<VERS vnumber=\"1\"> [A song of ascents.] When the LORD restored the well-being of Zion, we thought we were dreaming.</VERS>\n\t\t\t<VERS vnumber=\"2\"> At that time we laughed loudly and shouted for joy. At that time the nations said, \"The LORD has accomplished great things for these people.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> The LORD did indeed accomplish great things for us. We were happy.</VERS>\n\t\t\t<VERS vnumber=\"4\"> O LORD, restore our well-being, just as the streams in the arid south are replenished.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Those who shed tears as they plant will shout for joy when they reap the harvest.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The one who weeps as he walks along, carrying his bag of seed, will certainly come in with a shout of joy, carrying his sheaves of grain.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"127\">\n\t\t\t<VERS vnumber=\"1\"> [A song of ascents, by Solomon.] If the LORD does not build a house, then those who build it work in vain. If the LORD does not guard a city, then the watchman stands guard in vain.</VERS>\n\t\t\t<VERS vnumber=\"2\"> It is vain for you to rise early, come home late, and work so hard for your food. Yes, he can provide for those whom he loves even when they sleep.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Yes, sons are a gift from the LORD, the fruit of the womb is a reward.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Sons born during one's youth are like arrows in a warrior's hand.</VERS>\n\t\t\t<VERS vnumber=\"5\"> How blessed is the man who fills his quiver with them! They will not be put to shame when they confront enemies at the city gate.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"128\">\n\t\t\t<VERS vnumber=\"1\"> [A song of ascents.] How blessed is every one of the LORD's loyal followers, each one who keeps his commands!</VERS>\n\t\t\t<VERS vnumber=\"2\"> You will eat what you worked so hard to grow. You will be blessed and secure.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Your wife will be like a fruitful vine in the inner rooms of your house; your children will be like olive branches, as they sit all around your table.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Yes indeed, the man who fears the LORD will be blessed in this way.</VERS>\n\t\t\t<VERS vnumber=\"5\"> May the LORD bless you from Zion, that you might see Jerusalem prosper all the days of your life,</VERS>\n\t\t\t<VERS vnumber=\"6\"> and that you might see your grandchildren. May Israel experience peace!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"129\">\n\t\t\t<VERS vnumber=\"1\"> [A song of ascents.] \"Since my youth they have often attacked me,\" let Israel say.</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Since my youth they have often attacked me, but they have not defeated me.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The plowers plowed my back; they made their furrows long.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The LORD is just; he cut the ropes of the wicked.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> May all who hate Zion be humiliated and turned back!</VERS>\n\t\t\t<VERS vnumber=\"6\"> May they be like the grass on the rooftops which withers before one can even pull it up,</VERS>\n\t\t\t<VERS vnumber=\"7\"> which cannot fill the reaper's hand, or the lap of the one who gathers the grain!</VERS>\n\t\t\t<VERS vnumber=\"8\"> Those who pass by will not say, \"May you experience the LORD's blessing! We pronounce a blessing on you in the name of the LORD.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"130\">\n\t\t\t<VERS vnumber=\"1\"> [A song of ascents.] From the deep water I cry out to you, O LORD.</VERS>\n\t\t\t<VERS vnumber=\"2\"> O Lord, listen to me! Pay attention to my plea for mercy!</VERS>\n\t\t\t<VERS vnumber=\"3\"> If you, O LORD, were to keep track of sins, O Lord, who could stand before you?</VERS>\n\t\t\t<VERS vnumber=\"4\"> But you are willing to forgive, so that you might be honored.</VERS>\n\t\t\t<VERS vnumber=\"5\"> I rely on the LORD, I rely on him with my whole being; I wait for his assuring word.</VERS>\n\t\t\t<VERS vnumber=\"6\"> I yearn for the Lord, more than watchmen do for the morning, yes, more than watchmen do for the morning.</VERS>\n\t\t\t<VERS vnumber=\"7\"> O Israel, hope in the LORD, for the LORD exhibits loyal love, and is more than willing to deliver.</VERS>\n\t\t\t<VERS vnumber=\"8\"> He will deliver Israel from all the consequences of their sins.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"131\">\n\t\t\t<VERS vnumber=\"1\"> [A song of ascents, by David.] O LORD, my heart is not proud, nor do I have a haughty look. I do not have great aspirations, or concern myself with things that are beyond me.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Indeed I am composed and quiet, like a young child carried by its mother; I am content like the young child I carry.</VERS>\n\t\t\t<VERS vnumber=\"3\"> O Israel, hope in the LORD now and forevermore!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"132\">\n\t\t\t<VERS vnumber=\"1\"> [A song of ascents.] O LORD, for David's sake remember all his strenuous effort,</VERS>\n\t\t\t<VERS vnumber=\"2\"> and how he made a vow to the LORD, and swore an oath to the powerful ruler of Jacob.</VERS>\n\t\t\t<VERS vnumber=\"3\"> He said, \"I will not enter my own home, or get into my bed.</VERS>\n\t\t\t<VERS vnumber=\"4\"> I will not allow my eyes to sleep, or my eyelids to slumber,</VERS>\n\t\t\t<VERS vnumber=\"5\"> until I find a place for the LORD, a fine dwelling place for the powerful ruler of Jacob.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> Look, we heard about it in Ephrathah, we found it in the territory of Jaar.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Let us go to his dwelling place! Let us worship before his footstool!</VERS>\n\t\t\t<VERS vnumber=\"8\"> Ascend, O LORD, to your resting place, you and the ark of your strength!</VERS>\n\t\t\t<VERS vnumber=\"9\"> May your priests be clothed with integrity! May your loyal followers shout for joy!</VERS>\n\t\t\t<VERS vnumber=\"10\"> For the sake of David, your servant, do not reject your chosen king!</VERS>\n\t\t\t<VERS vnumber=\"11\"> The LORD made a reliable promise to David; he will not go back on his word. He said, \"I will place one of your descendants on your throne.</VERS>\n\t\t\t<VERS vnumber=\"12\"> If your sons keep my covenant and the rules I teach them, their sons will also sit on your throne forever.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> Certainly the LORD has chosen Zion; he decided to make it his home.</VERS>\n\t\t\t<VERS vnumber=\"14\"> He said, \"This will be my resting place forever; I will live here, for I have chosen it.</VERS>\n\t\t\t<VERS vnumber=\"15\"> I will abundantly supply what she needs; I will give her poor all the food they need.</VERS>\n\t\t\t<VERS vnumber=\"16\"> I will protect her priests, and her godly people will shout exuberantly.</VERS>\n\t\t\t<VERS vnumber=\"17\"> There I will make David strong; I have determined that my chosen king's dynasty will continue.</VERS>\n\t\t\t<VERS vnumber=\"18\"> I will humiliate his enemies, and his crown will shine.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"133\">\n\t\t\t<VERS vnumber=\"1\"> [A song of ascents, by David.] Look! How good and how pleasant it is when brothers live together!</VERS>\n\t\t\t<VERS vnumber=\"2\"> It is like fine oil poured on the head which flows down the beard, Aaron's beard, and then flows down his garments.</VERS>\n\t\t\t<VERS vnumber=\"3\"> It is like the dew of Hermon, which flows down upon the hills of Zion. Indeed that is where the LORD has decreed a blessing will be available, eternal life.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"134\">\n\t\t\t<VERS vnumber=\"1\"> [A song of ascents.] Attention! Praise the LORD, all you servants of the LORD, who serve in the LORD's temple during the night.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Lift your hands toward the sanctuary and praise the LORD!</VERS>\n\t\t\t<VERS vnumber=\"3\"> May the LORD, the Creator of heaven and earth, bless you from Zion!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"135\">\n\t\t\t<VERS vnumber=\"1\"> Praise the LORD! Praise the name of the LORD! Offer praise, you servants of the LORD,</VERS>\n\t\t\t<VERS vnumber=\"2\"> who serve in the LORD's temple, in the courts of the temple of our God.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Praise the LORD, for the LORD is good! Sing praises to his name, for it is pleasant!</VERS>\n\t\t\t<VERS vnumber=\"4\"> Indeed, the LORD has chosen Jacob for himself, Israel to be his special possession.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Yes, I know the LORD is great, and our Lord is superior to all gods.</VERS>\n\t\t\t<VERS vnumber=\"6\"> He does whatever he pleases in heaven and on earth, in the seas and all the ocean depths.</VERS>\n\t\t\t<VERS vnumber=\"7\"> He causes the clouds to arise from the end of the earth, makes lightning bolts accompany the rain, and brings the wind out of his storehouses.</VERS>\n\t\t\t<VERS vnumber=\"8\"> He struck down the firstborn of Egypt, including both men and animals.</VERS>\n\t\t\t<VERS vnumber=\"9\"> He performed awesome deeds and acts of judgment in your midst, O Egypt, against Pharaoh and all his servants.</VERS>\n\t\t\t<VERS vnumber=\"10\"> He defeated many nations, and killed mighty kings,</VERS>\n\t\t\t<VERS vnumber=\"11\"> Sihon, king of the Amorites, and Og, king of Bashan, and all the kingdoms of Canaan.</VERS>\n\t\t\t<VERS vnumber=\"12\"> He gave their land as an inheritance, as an inheritance to Israel his people.</VERS>\n\t\t\t<VERS vnumber=\"13\"> O LORD, your name endures, your reputation, O LORD, lasts.</VERS>\n\t\t\t<VERS vnumber=\"14\"> For the LORD vindicates his people, and has compassion on his servants.</VERS>\n\t\t\t<VERS vnumber=\"15\"> The nations' idols are made of silver and gold, they are man-made.</VERS>\n\t\t\t<VERS vnumber=\"16\"> They have mouths, but cannot speak, eyes, but cannot see,</VERS>\n\t\t\t<VERS vnumber=\"17\"> and ears, but cannot hear. Indeed, they cannot breathe.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Those who make them will end up like them, as will everyone who trusts in them.</VERS>\n\t\t\t<VERS vnumber=\"19\"> O family of Israel, praise the LORD! O family of Aaron, praise the LORD!</VERS>\n\t\t\t<VERS vnumber=\"20\"> O family of Levi, praise the LORD! You loyal followers of the LORD, praise the LORD!</VERS>\n\t\t\t<VERS vnumber=\"21\"> The LORD deserves praise in Zion, he who dwells in Jerusalem. Praise the LORD!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"136\">\n\t\t\t<VERS vnumber=\"1\"> Give thanks to the LORD, for he is good, for his loyal love endures.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Give thanks to the God of gods, for his loyal love endures.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Give thanks to the Lord of lords, for his loyal love endures,</VERS>\n\t\t\t<VERS vnumber=\"4\"> to the one who performs magnificent, amazing deeds all by himself, for his loyal love endures,</VERS>\n\t\t\t<VERS vnumber=\"5\"> to the one who used wisdom to make the heavens, for his loyal love endures,</VERS>\n\t\t\t<VERS vnumber=\"6\"> to the one who spread out the earth over the water, for his loyal love endures,</VERS>\n\t\t\t<VERS vnumber=\"7\"> to the one who made the great lights, for his loyal love endures,</VERS>\n\t\t\t<VERS vnumber=\"8\"> the sun to rule by day, for his loyal love endures,</VERS>\n\t\t\t<VERS vnumber=\"9\"> the moon and stars to rule by night, for his loyal love endures,</VERS>\n\t\t\t<VERS vnumber=\"10\"> to the one who struck down the firstborn of Egypt, for his loyal love endures,</VERS>\n\t\t\t<VERS vnumber=\"11\"> and led Israel out from their midst, for his loyal love endures,</VERS>\n\t\t\t<VERS vnumber=\"12\"> with a strong hand and an outstretched arm, for his loyal love endures,</VERS>\n\t\t\t<VERS vnumber=\"13\"> to the one who divided the Red Sea in two, for his loyal love endures,</VERS>\n\t\t\t<VERS vnumber=\"14\"> and led Israel through its midst, for his loyal love endures,</VERS>\n\t\t\t<VERS vnumber=\"15\"> and tossed Pharaoh and his army into the Red Sea, for his loyal love endures,</VERS>\n\t\t\t<VERS vnumber=\"16\"> to the one who led his people through the wilderness, for his loyal love endures,</VERS>\n\t\t\t<VERS vnumber=\"17\"> to the one who struck down great kings, for his loyal love endures,</VERS>\n\t\t\t<VERS vnumber=\"18\"> and killed powerful kings, for his loyal love endures,</VERS>\n\t\t\t<VERS vnumber=\"19\"> Sihon, king of the Amorites, for his loyal love endures,</VERS>\n\t\t\t<VERS vnumber=\"20\"> Og, king of Bashan, for his loyal love endures,</VERS>\n\t\t\t<VERS vnumber=\"21\"> and gave their land as an inheritance, for his loyal love endures,</VERS>\n\t\t\t<VERS vnumber=\"22\"> as an inheritance to Israel his servant, for his loyal love endures,</VERS>\n\t\t\t<VERS vnumber=\"23\"> to the one who remembered us when we were down, for his loyal love endures,</VERS>\n\t\t\t<VERS vnumber=\"24\"> and snatched us away from our enemies, for his loyal love endures,</VERS>\n\t\t\t<VERS vnumber=\"25\"> to the one who gives food to all living things, for his loyal love endures.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Give thanks to the God of heaven, for his loyal love endures!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"137\">\n\t\t\t<VERS vnumber=\"1\"> By the rivers of Babylon we sit down and weep when we remember Zion.</VERS>\n\t\t\t<VERS vnumber=\"2\"> On the poplars in her midst we hang our harps,</VERS>\n\t\t\t<VERS vnumber=\"3\"> for there our captors ask us to compose songs; those who mock us demand that we be happy, saying: \"Sing for us a song about Zion!\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> How can we sing a song to the LORD in a foreign land?</VERS>\n\t\t\t<VERS vnumber=\"5\"> If I forget you, O Jerusalem, may my right hand be crippled!</VERS>\n\t\t\t<VERS vnumber=\"6\"> May my tongue stick to the roof of my mouth, if I do not remember you, and do not give Jerusalem priority over whatever gives me the most joy.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Remember, O LORD, what the Edomites did on the day Jerusalem fell. They said, \"Tear it down, tear it down, right to its very foundation!\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> O daughter Babylon, soon to be devastated! How blessed will be the one who repays you for what you dished out to us!</VERS>\n\t\t\t<VERS vnumber=\"9\"> How blessed will be the one who grabs your babies and smashes them on a rock!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"138\">\n\t\t\t<VERS vnumber=\"1\"> [By David.] I will give you thanks with all my heart; before the heavenly assembly I will sing praises to you.</VERS>\n\t\t\t<VERS vnumber=\"2\"> I will bow down toward your holy temple, and give thanks to your name, because of your loyal love and faithfulness, for you have exalted your promise above the entire sky.</VERS>\n\t\t\t<VERS vnumber=\"3\"> When I cried out for help, you answered me. You made me bold and energized me.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Let all the kings of the earth give thanks to you, O LORD, when they hear the words you speak.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Let them sing about the LORD's deeds, for the LORD's splendor is magnificent.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Though the LORD is exalted, he takes note of the lowly, and recognizes the proud from far away.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Even when I must walk in the midst of danger, you revive me. You oppose my angry enemies, and your right hand delivers me.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The LORD avenges me. O LORD, your loyal love endures. Do not abandon those whom you have made!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"139\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director, a psalm of David.] O LORD, you examine me and know.</VERS>\n\t\t\t<VERS vnumber=\"2\"> You know when I sit down and when I get up; even from far away you understand my motives.</VERS>\n\t\t\t<VERS vnumber=\"3\"> You carefully observe me when I travel or when I lie down to rest; you are aware of everything I do.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Certainly my tongue does not frame a word without you, O LORD, being thoroughly aware of it.</VERS>\n\t\t\t<VERS vnumber=\"5\"> You squeeze me in from behind and in front; you place your hand on me.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Your knowledge is beyond my comprehension; it is so far beyond me, I am unable to fathom it.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Where can I go to escape your spirit? Where can I flee to escape your presence?</VERS>\n\t\t\t<VERS vnumber=\"8\"> If I were to ascend to heaven, you would be there. If I were to sprawl out in Sheol, there you would be.</VERS>\n\t\t\t<VERS vnumber=\"9\"> If I were to fly away on the wings of the dawn, and settle down on the other side of the sea,</VERS>\n\t\t\t<VERS vnumber=\"10\"> even there your hand would guide me, your right hand would grab hold of me.</VERS>\n\t\t\t<VERS vnumber=\"11\"> If I were to say, \"Certainly the darkness will cover me, and the light will turn to night all around me,\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> even the darkness is not too dark for you to see, and the night is as bright as day; darkness and light are the same to you.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Certainly you made my mind and heart; you wove me together in my mother's womb.</VERS>\n\t\t\t<VERS vnumber=\"14\"> I will give you thanks because your deeds are awesome and amazing. You knew me thoroughly;</VERS>\n\t\t\t<VERS vnumber=\"15\"> my bones were not hidden from you, when I was made in secret and sewed together in the depths of the earth.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Your eyes saw me when I was inside the womb. All the days ordained for me were recorded in your scroll before one of them came into existence.</VERS>\n\t\t\t<VERS vnumber=\"17\"> How difficult it is for me to fathom your thoughts about me, O God! How vast is their sum total!</VERS>\n\t\t\t<VERS vnumber=\"18\"> If I tried to count them, they would outnumber the grains of sand. Even if I finished counting them, I would still have to contend with you.</VERS>\n\t\t\t<VERS vnumber=\"19\"> If only you would kill the wicked, O God! Get away from me, you violent men!</VERS>\n\t\t\t<VERS vnumber=\"20\"> They rebel against you and act deceitfully; your enemies lie.</VERS>\n\t\t\t<VERS vnumber=\"21\"> O LORD, do I not hate those who hate you, and despise those who oppose you?</VERS>\n\t\t\t<VERS vnumber=\"22\"> I absolutely hate them, they have become my enemies!</VERS>\n\t\t\t<VERS vnumber=\"23\"> Examine me, and probe my thoughts! Test me, and know my concerns!</VERS>\n\t\t\t<VERS vnumber=\"24\"> See if there is any idolatrous tendency in me, and lead me in the reliable ancient path!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"140\">\n\t\t\t<VERS vnumber=\"1\"> [For the music director; a psalm of David.] O LORD, rescue me from wicked men! Protect me from violent men,</VERS>\n\t\t\t<VERS vnumber=\"2\"> who plan ways to harm me. All day long they stir up conflict.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Their tongues wound like a serpent; a viper's venom is behind their lips. (Selah)</VERS>\n\t\t\t<VERS vnumber=\"4\"> O LORD, shelter me from the power of the wicked! Protect me from violent men, who plan to knock me over.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Proud men hide a snare for me; evil men spread a net by the path; they set traps for me. (Selah)</VERS>\n\t\t\t<VERS vnumber=\"6\"> I say to the LORD, \"You are my God.\" O LORD, pay attention to my plea for mercy!</VERS>\n\t\t\t<VERS vnumber=\"7\"> O sovereign LORD, my strong deliverer, you shield my head in the day of battle.</VERS>\n\t\t\t<VERS vnumber=\"8\"> O LORD, do not let the wicked have their way! Do not allow their plan to succeed when they attack! (Selah)</VERS>\n\t\t\t<VERS vnumber=\"9\"> As for the heads of those who surround me, may the harm done by their lips overwhelm them!</VERS>\n\t\t\t<VERS vnumber=\"10\"> May he rain down fiery coals upon them! May he throw them into the fire! From bottomless pits they will not escape.</VERS>\n\t\t\t<VERS vnumber=\"11\"> A slanderer will not endure on the earth; calamity will hunt down a violent man and strike him down.</VERS>\n\t\t\t<VERS vnumber=\"12\"> I know that the LORD defends the cause of the oppressed and vindicates the poor.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Certainly the godly will give thanks to your name; the morally upright will live in your presence.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"141\">\n\t\t\t<VERS vnumber=\"1\"> [A psalm of David.] O LORD, I cry out to you. Come quickly to me! Pay attention to me when I cry out to you!</VERS>\n\t\t\t<VERS vnumber=\"2\"> May you accept my prayer like incense, my uplifted hands like the evening offering!</VERS>\n\t\t\t<VERS vnumber=\"3\"> O LORD, place a guard on my mouth! Protect the opening of my lips!</VERS>\n\t\t\t<VERS vnumber=\"4\"> Do not let me have evil desires, or participate in sinful activities with men who behave wickedly. I will not eat their delicacies.</VERS>\n\t\t\t<VERS vnumber=\"5\"> May the godly strike me in love and correct me! May my head not refuse choice oil! Indeed, my prayer is a witness against their evil deeds.</VERS>\n\t\t\t<VERS vnumber=\"6\"> They will be thrown down the side of a cliff by their judges. They will listen to my words, for they are pleasant.</VERS>\n\t\t\t<VERS vnumber=\"7\"> As when one plows and breaks up the soil, so our bones are scattered at the mouth of Sheol.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Surely I am looking to you, O sovereign LORD. In you I take shelter. Do not expose me to danger!</VERS>\n\t\t\t<VERS vnumber=\"9\"> Protect me from the snare they have laid for me, and the traps the evildoers have set.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Let the wicked fall into their own nets, while I escape.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"142\">\n\t\t\t<VERS vnumber=\"1\"> [A well-written song by David, when he was in the cave; a prayer.] To the LORD I cry out; to the LORD I plead for mercy.</VERS>\n\t\t\t<VERS vnumber=\"2\"> I pour out my lament before him; I tell him about my troubles.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Even when my strength leaves me, you watch my footsteps. In the path where I walk they have hidden a trap for me.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Look to the right and see! No one cares about me. I have nowhere to run; no one is concerned about my life.</VERS>\n\t\t\t<VERS vnumber=\"5\"> I cry out to you, O LORD; I say, \"You are my shelter, my security in the land of the living.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> Listen to my cry for help, for I am in serious trouble! Rescue me from those who chase me, for they are stronger than I am.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Free me from prison, that I may give thanks to your name. Because of me the godly will assemble, for you will vindicate me.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"143\">\n\t\t\t<VERS vnumber=\"1\"> [A psalm of David.] O LORD, hear my prayer! Pay attention to my plea for help! Because of your faithfulness and justice, answer me!</VERS>\n\t\t\t<VERS vnumber=\"2\"> Do not sit in judgment on your servant, for no one alive is innocent before you.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Certainly my enemies chase me. They smash me into the ground. They force me to live in dark regions, like those who have been dead for ages.</VERS>\n\t\t\t<VERS vnumber=\"4\"> My strength leaves me; I am absolutely shocked.</VERS>\n\t\t\t<VERS vnumber=\"5\"> I recall the old days; I meditate on all you have done; I reflect on your accomplishments.</VERS>\n\t\t\t<VERS vnumber=\"6\"> I spread my hands out to you in prayer; my soul thirsts for you in a parched land.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Answer me quickly, LORD! My strength is fading. Do not reject me, or I will join those descending into the grave.</VERS>\n\t\t\t<VERS vnumber=\"8\"> May I hear about your loyal love in the morning, for I trust in you. Show me the way I should go, because I long for you.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Rescue me from my enemies, O LORD! I run to you for protection.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Teach me to do what pleases you, for you are my God. May your kind presence lead me into a level land.</VERS>\n\t\t\t<VERS vnumber=\"11\"> O LORD, for the sake of your reputation, revive me! Because of your justice, rescue me from trouble!</VERS>\n\t\t\t<VERS vnumber=\"12\"> As a demonstration of your loyal love, destroy my enemies! Annihilate all who threaten my life, for I am your servant.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"144\">\n\t\t\t<VERS vnumber=\"1\"> [By David.] The LORD, my protector, deserves praise, the one who trains my hands for battle, and my fingers for war,</VERS>\n\t\t\t<VERS vnumber=\"2\"> who loves me and is my stronghold, my refuge and my deliverer, my shield and the one in whom I take shelter, who makes nations submit to me.</VERS>\n\t\t\t<VERS vnumber=\"3\"> O LORD, of what importance is the human race, that you should notice them? Of what importance is mankind, that you should be concerned about them?</VERS>\n\t\t\t<VERS vnumber=\"4\"> People are like a vapor, their days like a shadow that disappears.</VERS>\n\t\t\t<VERS vnumber=\"5\"> O LORD, make the sky sink and come down! Touch the mountains and make them smolder!</VERS>\n\t\t\t<VERS vnumber=\"6\"> Hurl lightning bolts and scatter them! Shoot your arrows and rout them!</VERS>\n\t\t\t<VERS vnumber=\"7\"> Reach down from above! Grab me and rescue me from the surging water, from the power of foreigners,</VERS>\n\t\t\t<VERS vnumber=\"8\"> who speak lies, and make false promises.</VERS>\n\t\t\t<VERS vnumber=\"9\"> O God, I will sing a new song to you! Accompanied by a ten-stringed instrument, I will sing praises to you,</VERS>\n\t\t\t<VERS vnumber=\"10\"> the one who delivers kings, and rescued David his servant from a deadly sword.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Grab me and rescue me from the power of foreigners, who speak lies, and make false promises.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Then our sons will be like plants, that quickly grow to full size. Our daughters will be like corner pillars, carved like those in a palace.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Our storehouses will be full, providing all kinds of food. Our sheep will multiply by the thousands and fill our pastures.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Our cattle will be weighted down with produce. No one will break through our walls, no one will be taken captive, and there will be no terrified cries in our city squares.</VERS>\n\t\t\t<VERS vnumber=\"15\"> How blessed are the people who experience these things! How blessed are the people whose God is the LORD!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"145\">\n\t\t\t<VERS vnumber=\"1\"> [A psalm of praise, by David.] I will extol you, my God, O king! I will praise your name continually!</VERS>\n\t\t\t<VERS vnumber=\"2\"> Every day I will praise you! I will praise your name continually!</VERS>\n\t\t\t<VERS vnumber=\"3\"> The LORD is great and certainly worthy of praise! No one can fathom his greatness!</VERS>\n\t\t\t<VERS vnumber=\"4\"> One generation will praise your deeds to another, and tell about your mighty acts!</VERS>\n\t\t\t<VERS vnumber=\"5\"> I will focus on your honor and majestic splendor, and your amazing deeds!</VERS>\n\t\t\t<VERS vnumber=\"6\"> They will proclaim the power of your awesome acts! I will declare your great deeds!</VERS>\n\t\t\t<VERS vnumber=\"7\"> They will talk about the fame of your great kindness, and sing about your justice.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The LORD is merciful and compassionate; he is patient and demonstrates great loyal love.</VERS>\n\t\t\t<VERS vnumber=\"9\"> The LORD is good to all, and has compassion on all he has made.</VERS>\n\t\t\t<VERS vnumber=\"10\"> All he has made will give thanks to the LORD. Your loyal followers will praise you.</VERS>\n\t\t\t<VERS vnumber=\"11\"> They will proclaim the splendor of your kingdom; they will tell about your power,</VERS>\n\t\t\t<VERS vnumber=\"12\"> so that mankind might acknowledge your mighty acts, and the majestic splendor of your kingdom.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Your kingdom is an eternal kingdom, and your dominion endures through all generations.</VERS>\n\t\t\t<VERS vnumber=\"14\">  The LORD supports all who fall, and lifts up all who are bent over.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Everything looks to you in anticipation, and you provide them with food on a regular basis.</VERS>\n\t\t\t<VERS vnumber=\"16\"> You open your hand, and fill every living thing with the food they desire.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The LORD is just in all his actions, and exhibits love in all he does.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The LORD is near all who cry out to him, all who cry out to him sincerely.</VERS>\n\t\t\t<VERS vnumber=\"19\"> He satisfies the desire of his loyal followers; he hears their cry for help and delivers them.</VERS>\n\t\t\t<VERS vnumber=\"20\"> The LORD protects those who love him, but he destroys all the wicked.</VERS>\n\t\t\t<VERS vnumber=\"21\"> My mouth will praise the LORD. Let all who live praise his holy name forever!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"146\">\n\t\t\t<VERS vnumber=\"1\"> Praise the LORD! Praise the LORD, O my soul!</VERS>\n\t\t\t<VERS vnumber=\"2\"> I will praise the LORD as long as I live! I will sing praises to my God as long as I exist!</VERS>\n\t\t\t<VERS vnumber=\"3\"> Do not trust in princes, or in human beings, who cannot deliver!</VERS>\n\t\t\t<VERS vnumber=\"4\"> Their life's breath departs, they return to the ground; on that day their plans die.</VERS>\n\t\t\t<VERS vnumber=\"5\"> How blessed is the one whose helper is the God of Jacob, whose hope is in the LORD his God,</VERS>\n\t\t\t<VERS vnumber=\"6\"> the one who made heaven and earth, the sea, and all that is in them, who remains forever faithful,</VERS>\n\t\t\t<VERS vnumber=\"7\"> vindicates the oppressed, and gives food to the hungry. The LORD releases the imprisoned.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The LORD gives sight to the blind. The LORD lifts up all who are bent over. The LORD loves the godly.</VERS>\n\t\t\t<VERS vnumber=\"9\"> The LORD protects those residing outside their native land; he lifts up the fatherless and the widow, but he opposes the wicked.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The LORD rules forever, your God, O Zion, throughout the generations to come! Praise the LORD!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"147\">\n\t\t\t<VERS vnumber=\"1\"> Praise the LORD, for it is good to sing praises to our God! Yes, praise is pleasant and appropriate!</VERS>\n\t\t\t<VERS vnumber=\"2\"> The LORD rebuilds Jerusalem, and gathers the exiles of Israel.</VERS>\n\t\t\t<VERS vnumber=\"3\"> He heals the brokenhearted, and bandages their wounds.</VERS>\n\t\t\t<VERS vnumber=\"4\"> He counts the number of the stars; he names all of them.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Our Lord is great and has awesome power; there is no limit to his wisdom.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The LORD lifts up the oppressed, but knocks the wicked to the ground.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Offer to the LORD a song of thanks! Sing praises to our God to the accompaniment of a harp!</VERS>\n\t\t\t<VERS vnumber=\"8\"> He covers the sky with clouds, provides the earth with rain, and causes grass to grow on the hillsides.</VERS>\n\t\t\t<VERS vnumber=\"9\"> He gives food to the animals, and to the young ravens when they chirp.</VERS>\n\t\t\t<VERS vnumber=\"10\"> He is not enamored with the strength of a horse, nor is he impressed by the warrior's strong legs.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The LORD takes delight in his faithful followers, and in those who wait for his loyal love.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Extol the LORD, O Jerusalem! Praise your God, O Zion!</VERS>\n\t\t\t<VERS vnumber=\"13\"> For he makes the bars of your gates strong. He blesses your children within you.</VERS>\n\t\t\t<VERS vnumber=\"14\"> He brings peace to your territory. He abundantly provides for you the best grain.</VERS>\n\t\t\t<VERS vnumber=\"15\"> He sends his command through the earth; swiftly his order reaches its destination.</VERS>\n\t\t\t<VERS vnumber=\"16\"> He sends the snow that is white like wool; he spreads the frost that is white like ashes.</VERS>\n\t\t\t<VERS vnumber=\"17\"> He throws his hailstones like crumbs. Who can withstand the cold wind he sends?</VERS>\n\t\t\t<VERS vnumber=\"18\"> He then orders it all to melt; he breathes on it, and the water flows.</VERS>\n\t\t\t<VERS vnumber=\"19\"> He proclaims his word to Jacob, his statutes and regulations to Israel.</VERS>\n\t\t\t<VERS vnumber=\"20\"> He has not done so with any other nation; they are not aware of his regulations. Praise the LORD!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"148\">\n\t\t\t<VERS vnumber=\"1\"> Praise the LORD! Praise the LORD from the sky! Praise him in the heavens!</VERS>\n\t\t\t<VERS vnumber=\"2\"> Praise him, all his angels! Praise him, all his heavenly assembly!</VERS>\n\t\t\t<VERS vnumber=\"3\"> Praise him, O sun and moon! Praise him, all you shiny stars!</VERS>\n\t\t\t<VERS vnumber=\"4\"> Praise him, O highest heaven, and you waters above the sky!</VERS>\n\t\t\t<VERS vnumber=\"5\"> Let them praise the name of the LORD, for he gave the command and they came into existence.</VERS>\n\t\t\t<VERS vnumber=\"6\"> He established them so they would endure; he issued a decree that will not be revoked.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Praise the LORD from the earth, you sea creatures and all you ocean depths,</VERS>\n\t\t\t<VERS vnumber=\"8\"> O fire and hail, snow and clouds, O stormy wind that carries out his orders,</VERS>\n\t\t\t<VERS vnumber=\"9\"> you mountains and all you hills, you fruit trees and all you cedars,</VERS>\n\t\t\t<VERS vnumber=\"10\"> you animals and all you cattle, you creeping things and birds,</VERS>\n\t\t\t<VERS vnumber=\"11\"> you kings of the earth and all you nations, you princes and all you leaders on the earth,</VERS>\n\t\t\t<VERS vnumber=\"12\"> you young men and young women, you elderly, along with you children!</VERS>\n\t\t\t<VERS vnumber=\"13\"> Let them praise the name of the LORD, for his name alone is exalted; his majesty extends over the earth and sky.</VERS>\n\t\t\t<VERS vnumber=\"14\"> He has made his people victorious, and given all his loyal followers reason to praise, the Israelites, the people who are close to him. Praise the LORD!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"149\">\n\t\t\t<VERS vnumber=\"1\"> Praise the LORD! Sing to the LORD a new song! Praise him in the assembly of the godly!</VERS>\n\t\t\t<VERS vnumber=\"2\"> Let Israel rejoice in their Creator! Let the people of Zion delight in their king!</VERS>\n\t\t\t<VERS vnumber=\"3\"> Let them praise his name with dancing! Let them sing praises to him to the accompaniment of the tambourine and harp!</VERS>\n\t\t\t<VERS vnumber=\"4\"> For the LORD takes delight in his people; he exalts the oppressed by delivering them.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Let the godly rejoice because of their vindication! Let them shout for joy upon their beds!</VERS>\n\t\t\t<VERS vnumber=\"6\"> May they praise God while they hold a two-edged sword in their hand,</VERS>\n\t\t\t<VERS vnumber=\"7\"> in order to take revenge on the nations, and punish foreigners.</VERS>\n\t\t\t<VERS vnumber=\"8\"> They bind their kings in chains, and their nobles in iron shackles,</VERS>\n\t\t\t<VERS vnumber=\"9\"> and execute the judgment to which their enemies have been sentenced. All his loyal followers will be vindicated. Praise the LORD!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"150\">\n\t\t\t<VERS vnumber=\"1\"> Praise the LORD! Praise God in his sanctuary! Praise him in the sky, which testifies to his strength!</VERS>\n\t\t\t<VERS vnumber=\"2\"> Praise him for his mighty acts! Praise him for his surpassing greatness!</VERS>\n\t\t\t<VERS vnumber=\"3\"> Praise him with the blast of the horn! Praise him with the lyre and the harp!</VERS>\n\t\t\t<VERS vnumber=\"4\"> Praise him with the tambourine and with dancing! Praise him with stringed instruments and the flute!</VERS>\n\t\t\t<VERS vnumber=\"5\"> Praise him with loud cymbals! Praise him with clanging cymbals!</VERS>\n\t\t\t<VERS vnumber=\"6\"> Let everything that has breath praise the LORD! Praise the LORD!</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"20\" bname=\"Proverbs\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> The Proverbs of Solomon son of David, king of Israel:</VERS>\n\t\t\t<VERS vnumber=\"2\"> To learn wisdom and moral instruction, and to discern wise counsel.</VERS>\n\t\t\t<VERS vnumber=\"3\"> To receive moral instruction in skillful living, in righteousness, justice, and equity.</VERS>\n\t\t\t<VERS vnumber=\"4\"> To impart shrewdness to the morally naive, and a discerning plan to the young person.</VERS>\n\t\t\t<VERS vnumber=\"5\"> (Let the wise also hear and gain instruction, and let the discerning acquire guidance!)</VERS>\n\t\t\t<VERS vnumber=\"6\"> To discern the meaning of a proverb and a parable, the sayings of the wise and their riddles.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Fearing the LORD is the beginning of moral knowledge, but fools despise wisdom and instruction.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Listen, my child, to the instruction from your father, and do not forsake the teaching from your mother.</VERS>\n\t\t\t<VERS vnumber=\"9\"> For they will be like an elegant garland on your head, and like pendants around your neck.</VERS>\n\t\t\t<VERS vnumber=\"10\"> My child, if sinners try to entice you, do not consent!</VERS>\n\t\t\t<VERS vnumber=\"11\"> If they say, \"Come with us! We will lie in wait to shed blood; we will ambush an innocent person capriciously.</VERS>\n\t\t\t<VERS vnumber=\"12\"> We will swallow them alive like Sheol, those full of vigor like those going down to the Pit.</VERS>\n\t\t\t<VERS vnumber=\"13\"> We will seize all kinds of precious wealth; we will fill our houses with plunder.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Join with us! We will all share equally in what we steal.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> My child, do not go down their way, withhold yourself from their path;</VERS>\n\t\t\t<VERS vnumber=\"16\"> for they are eager to inflict harm, and they hasten to shed blood.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Surely it is futile to spread a net in plain sight of any bird,</VERS>\n\t\t\t<VERS vnumber=\"18\"> but these men lie in wait for their own blood, they ambush their own lives!</VERS>\n\t\t\t<VERS vnumber=\"19\"> Such are the ways of all who gain profit unjustly; it takes away the life of those who obtain it!</VERS>\n\t\t\t<VERS vnumber=\"20\"> Wisdom calls out in the street, she shouts loudly in the plazas;</VERS>\n\t\t\t<VERS vnumber=\"21\"> at the head of the noisy streets she calls, in the entrances of the gates in the city she utters her words:</VERS>\n\t\t\t<VERS vnumber=\"22\"> \"How long will you simpletons love naivet,? How long will mockers delight in mockery and fools hate knowledge?</VERS>\n\t\t\t<VERS vnumber=\"23\"> If only you will respond to my rebuke, then I will pour out my thoughts to you and I will make my words known to you.</VERS>\n\t\t\t<VERS vnumber=\"24\"> However, because I called but you refused to listen, because I stretched out my hand but no one paid attention,</VERS>\n\t\t\t<VERS vnumber=\"25\"> because you neglected all my advice, and did not comply with my rebuke,</VERS>\n\t\t\t<VERS vnumber=\"26\"> so I myself will laugh when disaster strikes you, I will mock when what you dread comes,</VERS>\n\t\t\t<VERS vnumber=\"27\"> when what you dread comes like a whirlwind, and disaster strikes you like a devastating storm, when distressing trouble comes on you.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Then they will call to me, but I will not answer; they will diligently seek me, but they will not find me.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Because they hated moral knowledge, and did not choose to fear the LORD,</VERS>\n\t\t\t<VERS vnumber=\"30\"> they did not comply with my advice, they spurned all my rebuke.</VERS>\n\t\t\t<VERS vnumber=\"31\"> Therefore they will eat from the fruit of their way, and they will be stuffed full of their own counsel.</VERS>\n\t\t\t<VERS vnumber=\"32\"> For the waywardness of the simpletons will kill them, and the careless ease of fools will destroy them.</VERS>\n\t\t\t<VERS vnumber=\"33\"> But the one who listens to me will live in security, and will be at ease from the dread of harm.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> My child, if you receive my words, and store up my commands within you,</VERS>\n\t\t\t<VERS vnumber=\"2\"> by making your ear attentive to wisdom, and by turning your heart to understanding,</VERS>\n\t\t\t<VERS vnumber=\"3\"> indeed, if you call out for discernment, raise your voice for understanding,</VERS>\n\t\t\t<VERS vnumber=\"4\"> if you seek it like silver, and search for it like hidden treasure,</VERS>\n\t\t\t<VERS vnumber=\"5\"> then you will understand how to fear the LORD, and you will discover knowledge about God.</VERS>\n\t\t\t<VERS vnumber=\"6\"> For the LORD gives wisdom, and from his mouth comes knowledge and understanding.</VERS>\n\t\t\t<VERS vnumber=\"7\"> He stores up effective counsel for the upright, and is like a shield for those who live with integrity,</VERS>\n\t\t\t<VERS vnumber=\"8\"> to guard the paths of the righteous and to protect the way of his pious ones.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Then you will understand righteousness and justice and equity, every good way.</VERS>\n\t\t\t<VERS vnumber=\"10\"> For wisdom will enter your heart, and moral knowledge will be attractive to you.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Discretion will protect you, understanding will guard you,</VERS>\n\t\t\t<VERS vnumber=\"12\"> to deliver you from the way of the wicked, from those speaking perversity,</VERS>\n\t\t\t<VERS vnumber=\"13\"> who leave the upright paths to walk on the dark ways,</VERS>\n\t\t\t<VERS vnumber=\"14\"> who delight in doing evil, they rejoice in perverse evil;</VERS>\n\t\t\t<VERS vnumber=\"15\"> whose paths are morally crooked, and who are devious in their ways;</VERS>\n\t\t\t<VERS vnumber=\"16\"> to deliver you from the adulteress, from the sexually loose woman who speaks flattering words;</VERS>\n\t\t\t<VERS vnumber=\"17\"> who leaves the husband from her younger days, and forgets her marriage covenant made before God.</VERS>\n\t\t\t<VERS vnumber=\"18\"> For her house sinks down to death, and her paths lead to the place of the departed spirits.</VERS>\n\t\t\t<VERS vnumber=\"19\"> None who go in to her will return, nor will they reach the paths of life.</VERS>\n\t\t\t<VERS vnumber=\"20\"> So you will walk in the way of good people, and will keep on the paths of the righteous.</VERS>\n\t\t\t<VERS vnumber=\"21\"> For the upright will reside in the land, and those with integrity will remain in it,</VERS>\n\t\t\t<VERS vnumber=\"22\"> but the wicked will be removed from the land, and the treacherous will be torn away from it.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> My child, do not forget my teaching, but let your heart keep my commandments,</VERS>\n\t\t\t<VERS vnumber=\"2\"> for they will provide a long and full life, and they will add well-being to you.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Do not let truth and mercy leave you; bind them around your neck, write them on the tablet of your heart.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Then you will find favor and good understanding, in the sight of God and people.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Trust in the LORD with all your heart, and do not rely on your own understanding.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Acknowledge him in all your ways, and he will make your paths straight.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Do not be wise in your own estimation; fear the LORD and turn away from evil.</VERS>\n\t\t\t<VERS vnumber=\"8\"> This will bring healing to your body, and refreshment to your inner self.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Honor the LORD from your wealth and from the first fruits of all your crops;</VERS>\n\t\t\t<VERS vnumber=\"10\"> then your barns will be filled completely, and your vats will overflow with new wine.</VERS>\n\t\t\t<VERS vnumber=\"11\"> My child, do not despise discipline from the LORD, and do not loathe his rebuke.</VERS>\n\t\t\t<VERS vnumber=\"12\"> For the LORD disciplines those he loves, just as a father disciplines the son in whom he delights.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Blessed is the one who finds wisdom, and the one who obtains understanding.</VERS>\n\t\t\t<VERS vnumber=\"14\"> For her benefit is more profitable than silver, and her gain is better than gold.</VERS>\n\t\t\t<VERS vnumber=\"15\"> She is more precious than rubies, and none of the things you desire can compare with her.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Long life is in her right hand; in her left hand are riches and honor.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Her ways are very pleasant, and all her paths are peaceful.</VERS>\n\t\t\t<VERS vnumber=\"18\"> She is like a tree of life to those who obtain her, and everyone who grasps hold of her will be blessed.</VERS>\n\t\t\t<VERS vnumber=\"19\"> By wisdom the LORD laid the foundation of the earth; he established the heavens by understanding.</VERS>\n\t\t\t<VERS vnumber=\"20\"> By his knowledge the primordial sea was broken open, and the clouds drip down dew.</VERS>\n\t\t\t<VERS vnumber=\"21\"> My child, do not let them escape from your sight; safeguard sound wisdom and discretion.</VERS>\n\t\t\t<VERS vnumber=\"22\"> So they will give life to you, and grace to adorn your neck.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Then you will walk on your way with security, and you will not stumble.</VERS>\n\t\t\t<VERS vnumber=\"24\"> When you lie down you will not be filled with fear; when you lie down your sleep will be pleasant.</VERS>\n\t\t\t<VERS vnumber=\"25\"> You will not be afraid of sudden disaster, or when destruction overtakes the wicked;</VERS>\n\t\t\t<VERS vnumber=\"26\"> for the LORD will be the source of your confidence, and he will guard your foot from being caught in a trap.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Do not withhold good from those who need it, when you have the ability to help.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Do not say to your neighbor, \"Go! Return tomorrow and I will give it,\" when you have it with you at the time.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Do not plot evil against your neighbor when he dwells by you unsuspectingly.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Do not accuse anyone without legitimate cause, if he has not treated you wrongly.</VERS>\n\t\t\t<VERS vnumber=\"31\"> Do not envy a violent man, and do not choose to imitate any of his ways;</VERS>\n\t\t\t<VERS vnumber=\"32\"> for one who goes astray is an abomination to the LORD, but he reveals his intimate counsel to the upright.</VERS>\n\t\t\t<VERS vnumber=\"33\"> The LORD's curse is on the household of the wicked, but he blesses the home of the righteous.</VERS>\n\t\t\t<VERS vnumber=\"34\"> Although he is scornful to arrogant scoffers, yet he shows favor to the humble.</VERS>\n\t\t\t<VERS vnumber=\"35\"> The wise inherit honor, but he holds fools up to public contempt.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\"> Listen, children, to a father's instruction, and pay attention so that you may gain discernment.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Because I give you good instruction, do not forsake my teaching.</VERS>\n\t\t\t<VERS vnumber=\"3\"> When I was a son to my father, a tender only child before my mother,</VERS>\n\t\t\t<VERS vnumber=\"4\"> he taught me, and he said to me: \"Let your heart lay hold of my words; keep my commands so that you will live.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Acquire wisdom, acquire understanding; do not forget and do not turn aside from the words I speak.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Do not forsake wisdom, and she will protect you; love her, and she will guard you.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Wisdom is supreme, so acquire wisdom, and whatever you acquire, acquire understanding!</VERS>\n\t\t\t<VERS vnumber=\"8\"> Esteem her highly and she will exalt you; she will honor you if you embrace her.</VERS>\n\t\t\t<VERS vnumber=\"9\"> She will place a fair garland on your head; she will bestow a beautiful crown on you.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> Listen, my child, and accept my words, so that the years of your life will be many.</VERS>\n\t\t\t<VERS vnumber=\"11\"> I will guide you in the way of wisdom and I will lead you in upright paths.</VERS>\n\t\t\t<VERS vnumber=\"12\"> When you walk, your steps will not be hampered, and when you run, you will not stumble.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Hold on to instruction, do not let it go; protect it, because it is your life.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Do not enter the path of the wicked or walk in the way of those who are evil.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Avoid it, do not go on it; turn away from it, and go on.</VERS>\n\t\t\t<VERS vnumber=\"16\"> For they cannot sleep unless they cause harm; they are robbed of sleep until they make someone stumble.</VERS>\n\t\t\t<VERS vnumber=\"17\"> For they eat bread gained from wickedness and drink wine obtained from violence.</VERS>\n\t\t\t<VERS vnumber=\"18\"> But the path of the righteous is like the bright morning light, growing brighter and brighter until full day.</VERS>\n\t\t\t<VERS vnumber=\"19\"> The way of the wicked is like gloomy darkness; they do not know what causes them to stumble.</VERS>\n\t\t\t<VERS vnumber=\"20\"> My child, pay attention to my words; listen attentively to my sayings.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Do not let them depart from your sight, guard them within your heart;</VERS>\n\t\t\t<VERS vnumber=\"22\"> for they are life to those who find them and healing to one's entire body.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Guard your heart with all vigilance, for from it are the sources of life.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Remove perverse speech from your mouth; keep devious talk far from your lips.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Let your eyes look directly in front of you and let your gaze look straight before you.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Make the path for your feet level, so that all your ways may be established.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Do not turn to the right or to the left; turn yourself away from evil.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"5\">\n\t\t\t<VERS vnumber=\"1\"> My child, be attentive to my wisdom, pay close attention to my understanding,</VERS>\n\t\t\t<VERS vnumber=\"2\"> in order to safeguard discretion, and that your lips may guard knowledge.</VERS>\n\t\t\t<VERS vnumber=\"3\"> For the lips of the adulterous woman drip honey, and her seductive words are smoother than olive oil,</VERS>\n\t\t\t<VERS vnumber=\"4\"> but in the end she is bitter as wormwood, sharp as a two-edged sword.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Her feet go down to death; her steps lead straight to the grave.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Lest she should make level the path leading to life, her paths are unstable but she does not know it.</VERS>\n\t\t\t<VERS vnumber=\"7\"> So now, children, listen to me; do not turn aside from the words I speak.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Keep yourself far from her, and do not go near the door of her house,</VERS>\n\t\t\t<VERS vnumber=\"9\"> lest you give your vigor to others and your years to a cruel person,</VERS>\n\t\t\t<VERS vnumber=\"10\"> lest strangers devour your strength, and your labor benefit another man's house.</VERS>\n\t\t\t<VERS vnumber=\"11\"> And at the end of your life you will groan when your flesh and your body are wasted away.</VERS>\n\t\t\t<VERS vnumber=\"12\"> And you will say, \"How I hated discipline! My heart spurned reproof!</VERS>\n\t\t\t<VERS vnumber=\"13\"> For I did not obey my teachers and I did not heed my instructors.</VERS>\n\t\t\t<VERS vnumber=\"14\"> I almost came to complete ruin in the midst of the whole congregation!\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> Drink water from your own cistern and running water from your own well.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Should your springs be dispersed outside, your streams of water in the wide plazas?</VERS>\n\t\t\t<VERS vnumber=\"17\"> Let them be for yourself alone, and not for strangers with you.</VERS>\n\t\t\t<VERS vnumber=\"18\"> May your fountain be blessed, and may you rejoice in your young wife,</VERS>\n\t\t\t<VERS vnumber=\"19\"> a loving doe, a graceful deer; may her breasts satisfy you at all times, may you be captivated by her love always.</VERS>\n\t\t\t<VERS vnumber=\"20\"> But why should you be captivated, my son, by an adulteress, and embrace the bosom of a different woman?</VERS>\n\t\t\t<VERS vnumber=\"21\"> For the ways of a person are in front of the LORD's eyes, and the LORD weighs all that person's paths.</VERS>\n\t\t\t<VERS vnumber=\"22\"> The wicked will be captured by his own iniquities, and he will be held by the cords of his own sin.</VERS>\n\t\t\t<VERS vnumber=\"23\"> He will die because there was no discipline; because of the greatness of his folly he will reel.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"6\">\n\t\t\t<VERS vnumber=\"1\"> My child, if you have made a pledge for your neighbor, and have become a guarantor for a stranger,</VERS>\n\t\t\t<VERS vnumber=\"2\"> if you have been ensnared by the words you have uttered, and have been caught by the words you have spoken,</VERS>\n\t\t\t<VERS vnumber=\"3\"> then, my child, do this in order to deliver yourself, because you have fallen into your neighbor's power: go, humble yourself, and appeal firmly to your neighbor.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Permit no sleep to your eyes or slumber to your eyelids.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Deliver yourself like a gazelle from a snare, and like a bird from the trap of the fowler.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Go to the ant, you sluggard; observe its ways and be wise!</VERS>\n\t\t\t<VERS vnumber=\"7\"> It has no commander, overseer, or ruler,</VERS>\n\t\t\t<VERS vnumber=\"8\"> yet it prepares its food in the summer; it gathers at the harvest what it will eat.</VERS>\n\t\t\t<VERS vnumber=\"9\"> How long, you sluggard, will you lie there? When will you rise from your sleep?</VERS>\n\t\t\t<VERS vnumber=\"10\"> A little sleep, a little slumber, a little folding of the hands to relax,</VERS>\n\t\t\t<VERS vnumber=\"11\"> and your poverty will come like a robber, and your need like an armed man.</VERS>\n\t\t\t<VERS vnumber=\"12\"> A worthless and wicked person walks around saying perverse things;</VERS>\n\t\t\t<VERS vnumber=\"13\"> he winks with his eyes, signals with his feet, and points with his fingers;</VERS>\n\t\t\t<VERS vnumber=\"14\"> he plots evil with perverse thoughts in his heart, he spreads contention at all times.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Therefore, his disaster will come suddenly; in an instant he will be broken, and there will be no remedy.</VERS>\n\t\t\t<VERS vnumber=\"16\"> There are six things that the LORD hates, even seven things that are an abomination to him:</VERS>\n\t\t\t<VERS vnumber=\"17\"> haughty eyes, a lying tongue, and hands that shed innocent blood,</VERS>\n\t\t\t<VERS vnumber=\"18\"> a heart that devises wicked plans, feet that are swift to run to evil,</VERS>\n\t\t\t<VERS vnumber=\"19\"> a false witness who pours out lies, and a person who spreads discord among family members.</VERS>\n\t\t\t<VERS vnumber=\"20\"> My child, guard the commands of your father and do not forsake the instruction of your mother.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Bind them on your heart continually; fasten them around your neck.</VERS>\n\t\t\t<VERS vnumber=\"22\"> When you walk about, they will guide you; when you lie down, they will watch over you; when you wake up, they will talk to you.</VERS>\n\t\t\t<VERS vnumber=\"23\"> For the commandments are like a lamp, instruction is like a light, and rebukes of discipline are like the road leading to life,</VERS>\n\t\t\t<VERS vnumber=\"24\"> by keeping you from the evil woman, from the smooth tongue of the loose woman.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Do not lust in your heart for her beauty, and do not let her captivate you with her alluring eyes;</VERS>\n\t\t\t<VERS vnumber=\"26\"> for on account of a prostitute one is brought down to a loaf of bread, but the wife of another man preys on your precious life.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Can a man hold fire against his chest without burning his clothes?</VERS>\n\t\t\t<VERS vnumber=\"28\"> Can a man walk on hot coals without scorching his feet?</VERS>\n\t\t\t<VERS vnumber=\"29\"> So it is with the one who has sex with his neighbor's wife; no one who touches her will escape punishment.</VERS>\n\t\t\t<VERS vnumber=\"30\"> People do not despise a thief when he steals to fulfill his need when he is hungry.</VERS>\n\t\t\t<VERS vnumber=\"31\"> Yet if he is caught he must repay seven times over, he might even have to give all the wealth of his house.</VERS>\n\t\t\t<VERS vnumber=\"32\"> A man who commits adultery with a woman lacks wisdom, whoever does it destroys his own life.</VERS>\n\t\t\t<VERS vnumber=\"33\"> He will be beaten and despised, and his reproach will not be wiped away;</VERS>\n\t\t\t<VERS vnumber=\"34\"> for jealousy kindles a husband's rage, and he will not show mercy when he takes revenge.</VERS>\n\t\t\t<VERS vnumber=\"35\"> He will not consider any compensation; he will not be willing, even if you multiply the compensation.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"7\">\n\t\t\t<VERS vnumber=\"1\"> My child, keep my words and treasure up my commands in your own keeping.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Keep my commands so that you may live, and obey my instruction as your most prized possession.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Bind them on your forearm; write them on the tablet of your heart.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Say to wisdom, \"You are my sister,\" and call understanding a close relative,</VERS>\n\t\t\t<VERS vnumber=\"5\"> so that they may keep you from the adulterous woman, from the loose woman who flatters you with her words.</VERS>\n\t\t\t<VERS vnumber=\"6\"> For at the window of my house through my window lattice I looked out</VERS>\n\t\t\t<VERS vnumber=\"7\"> and I saw among the naive, I discerned among the youths, a young man who lacked wisdom.</VERS>\n\t\t\t<VERS vnumber=\"8\"> He was passing by the street near her corner, making his way along the road to her house</VERS>\n\t\t\t<VERS vnumber=\"9\"> in the twilight, the evening, in the dark of the night.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Suddenly a woman came out to meet him! She was dressed like a prostitute and with secret intent.</VERS>\n\t\t\t<VERS vnumber=\"11\"> (She is loud and rebellious, she does not remain at home,</VERS>\n\t\t\t<VERS vnumber=\"12\"> at one time outside, at another in the wide plazas, and by every corner she lies in wait.)</VERS>\n\t\t\t<VERS vnumber=\"13\"> So she grabbed him and kissed him, and with a bold expression she said to him,</VERS>\n\t\t\t<VERS vnumber=\"14\"> \"I have fresh meat at home; today I have fulfilled my vows!</VERS>\n\t\t\t<VERS vnumber=\"15\"> That is why I came out to meet you, to look for you, and I found you!</VERS>\n\t\t\t<VERS vnumber=\"16\"> I have spread my bed with elegant coverings, with richly colored fabric from Egypt.</VERS>\n\t\t\t<VERS vnumber=\"17\"> I have perfumed my bed with myrrh, aloes, and cinnamon.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Come, let's drink deeply of lovemaking until morning, let's delight ourselves with sexual intercourse.</VERS>\n\t\t\t<VERS vnumber=\"19\"> For my husband is not at home; he has gone on a journey of some distance.</VERS>\n\t\t\t<VERS vnumber=\"20\"> He has taken a bag of money with him; he will not return until the end of the month.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> She persuaded him with persuasive words; with her smooth talk she compelled him.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Suddenly he went after her like an ox that goes to the slaughter, like a stag prancing into a trapper's snare</VERS>\n\t\t\t<VERS vnumber=\"23\"> till an arrow pierces his liver, like a bird hurrying into a trap, and he does not know that it will cost him his life.</VERS>\n\t\t\t<VERS vnumber=\"24\"> So now, sons, listen to me, and pay attention to the words I speak.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Do not let your heart turn aside to her ways, do not wander into her pathways;</VERS>\n\t\t\t<VERS vnumber=\"26\"> for she has brought down many fatally wounded, and all those she has slain are many.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Her house is the way to the grave, going down to the chambers of death.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"8\">\n\t\t\t<VERS vnumber=\"1\"> Does not wisdom call out? Does not understanding raise her voice?</VERS>\n\t\t\t<VERS vnumber=\"2\"> At the top of the elevated places along the way, at the intersection of the paths she takes her stand;</VERS>\n\t\t\t<VERS vnumber=\"3\"> beside the gates opening into the city, at the entrance of the doorways she cries out:</VERS>\n\t\t\t<VERS vnumber=\"4\"> \"To you, O people, I call out, and my voice calls to all mankind.</VERS>\n\t\t\t<VERS vnumber=\"5\"> You who are naive, discern wisdom! And you fools, understand discernment!</VERS>\n\t\t\t<VERS vnumber=\"6\"> Listen, for I will speak excellent things, and my lips will utter what is right.</VERS>\n\t\t\t<VERS vnumber=\"7\"> For my mouth speaks truth, and my lips hate wickedness.</VERS>\n\t\t\t<VERS vnumber=\"8\"> All the words of my mouth are righteous; there is nothing in them twisted or crooked.</VERS>\n\t\t\t<VERS vnumber=\"9\"> All of them are clear to the discerning and upright to those who find knowledge.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Receive my instruction rather than silver, and knowledge rather than choice gold.</VERS>\n\t\t\t<VERS vnumber=\"11\"> For wisdom is better than rubies, and desirable things cannot be compared to her.</VERS>\n\t\t\t<VERS vnumber=\"12\"> \"I, wisdom, live with prudence, and I find knowledge and discretion.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The fear of the LORD is to hate evil; I hate arrogant pride and the evil way and perverse utterances.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Counsel and sound wisdom belong to me; I possess understanding and might.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Kings reign by means of me, and potentates decree righteousness;</VERS>\n\t\t\t<VERS vnumber=\"16\"> by me princes rule, as well as nobles and all righteous judges.</VERS>\n\t\t\t<VERS vnumber=\"17\"> I love those who love me, and those who seek me find me.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Riches and honor are with me, long-lasting wealth and righteousness.</VERS>\n\t\t\t<VERS vnumber=\"19\"> My fruit is better than the purest gold, and what I produce is better than choice silver.</VERS>\n\t\t\t<VERS vnumber=\"20\"> I walk in the path of righteousness, in the pathway of justice,</VERS>\n\t\t\t<VERS vnumber=\"21\"> that I may cause those who love me to inherit wealth, and that I may fill their treasuries.</VERS>\n\t\t\t<VERS vnumber=\"22\"> The LORD created me as the beginning of his works, before his deeds of long ago.</VERS>\n\t\t\t<VERS vnumber=\"23\"> From eternity I was appointed, from the beginning, from before the world existed.</VERS>\n\t\t\t<VERS vnumber=\"24\"> When there were no deep oceans I was born, when there were no springs overflowing with water;</VERS>\n\t\t\t<VERS vnumber=\"25\"> before the mountains were set in place, before the hills, I was born,</VERS>\n\t\t\t<VERS vnumber=\"26\"> before he made the earth and its fields, or the beginning of the dust of the world.</VERS>\n\t\t\t<VERS vnumber=\"27\"> When he established the heavens, I was there; when he marked out the horizon over the face of the deep,</VERS>\n\t\t\t<VERS vnumber=\"28\"> when he established the clouds above, when the fountains of the deep grew strong,</VERS>\n\t\t\t<VERS vnumber=\"29\"> when he gave the sea his decree that the waters should not pass over his command, when he marked out the foundations of the earth,</VERS>\n\t\t\t<VERS vnumber=\"30\"> then I was beside him as a master craftsman, and I was his delight day by day, rejoicing before him at all times,</VERS>\n\t\t\t<VERS vnumber=\"31\"> rejoicing in the habitable part of his earth, and delighting in its people.</VERS>\n\t\t\t<VERS vnumber=\"32\"> \"So now, children, listen to me; blessed are those who keep my ways.</VERS>\n\t\t\t<VERS vnumber=\"33\"> Listen to my instruction so that you may be wise, and do not neglect it.</VERS>\n\t\t\t<VERS vnumber=\"34\"> Blessed is the one who listens to me, watching at my doors day by day, waiting beside my doorway.</VERS>\n\t\t\t<VERS vnumber=\"35\"> For the one who finds me finds life and receives favor from the LORD.</VERS>\n\t\t\t<VERS vnumber=\"36\"> But the one who does not find me brings harm to himself; all who hate me love death.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"9\">\n\t\t\t<VERS vnumber=\"1\"> Wisdom has built her house; she has carved out its seven pillars.</VERS>\n\t\t\t<VERS vnumber=\"2\"> She has prepared her meat, she has mixed her wine; she also has arranged her table.</VERS>\n\t\t\t<VERS vnumber=\"3\"> She has sent out her female servants; she calls out on the highest places of the city.</VERS>\n\t\t\t<VERS vnumber=\"4\"> \"Whoever is naive, let him turn in here,\" she says to those who lack understanding.</VERS>\n\t\t\t<VERS vnumber=\"5\"> \"Come, eat some of my food, and drink some of the wine I have mixed.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Abandon your foolish ways so that you may live, and proceed in the way of understanding.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> Whoever corrects a mocker is asking for insult; whoever reproves a wicked person receives abuse.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Do not reprove a mocker or he will hate you; reprove a wise person and he will love you.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Give instruction to a wise person, and he will become wiser still; teach a righteous person and he will add to his learning.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The beginning of wisdom is to fear the LORD, and acknowledging the Holy One is understanding.</VERS>\n\t\t\t<VERS vnumber=\"11\"> For because of me your days will be many, and years will be added to your life.</VERS>\n\t\t\t<VERS vnumber=\"12\"> If you are wise, you are wise to your own advantage, but if you are a mocker, you alone must bear it.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The woman called Folly is brash, she is naive and does not know anything.</VERS>\n\t\t\t<VERS vnumber=\"14\"> So she sits at the door of her house, on a seat at the highest point of the city,</VERS>\n\t\t\t<VERS vnumber=\"15\"> calling out to those who are passing by her in the way, who go straight on their way.</VERS>\n\t\t\t<VERS vnumber=\"16\"> \"Whoever is simple, let him turn in here,\" she says to those who lack understanding.</VERS>\n\t\t\t<VERS vnumber=\"17\"> \"Stolen waters are sweet, and food obtained in secret is pleasant!\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> But they do not realize that the dead are there, that her guests are in the depths of the grave.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"10\">\n\t\t\t<VERS vnumber=\"1\"> The Proverbs of Solomon: A wise child makes a father rejoice, but a foolish child is a grief to his mother.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Treasures gained by wickedness do not profit, but righteousness delivers from mortal danger.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The LORD satisfies the appetite of the righteous, but he thwarts the craving of the wicked.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The one who is lazy becomes poor, but the one who works diligently becomes wealthy.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The one who gathers crops in the summer is a wise son, but the one who sleeps during the harvest is a son who brings shame to himself.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Blessings are on the head of the righteous, but the speech of the wicked conceals violence.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The memory of the righteous is a blessing, but the reputation of the wicked will rot.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The wise person accepts instructions, but the one who speaks foolishness will come to ruin.</VERS>\n\t\t\t<VERS vnumber=\"9\"> The one who conducts himself in integrity will live securely, but the one who behaves perversely will be found out.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The one who winks his eye causes trouble, and the one who speaks foolishness will come to ruin.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The teaching of the righteous is a fountain of life, but the speech of the wicked conceals violence.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Hatred stirs up dissension, but love covers all transgressions.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Wisdom is found in the words of the discerning person, but the one who lacks wisdom will be disciplined.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Those who are wise store up knowledge, but foolish speech leads to imminent destruction.</VERS>\n\t\t\t<VERS vnumber=\"15\"> The wealth of a rich person is like a fortified city, but the poor are brought to ruin by their poverty.</VERS>\n\t\t\t<VERS vnumber=\"16\"> The reward which the righteous receive is life; the recompense which the wicked receive is judgment.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The one who heeds instruction is on the way to life, but the one who rejects rebuke goes astray.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The one who conceals hatred utters lies, and the one who spreads slander is certainly a fool.</VERS>\n\t\t\t<VERS vnumber=\"19\"> When words abound, transgression is inevitable, but the one who restrains his words is wise.</VERS>\n\t\t\t<VERS vnumber=\"20\"> What the righteous say is like the best silver, but what the wicked think is of little value.</VERS>\n\t\t\t<VERS vnumber=\"21\"> The teaching of the righteous feeds many, but fools die for lack of wisdom.</VERS>\n\t\t\t<VERS vnumber=\"22\"> The blessing from the LORD makes a person rich, and he adds no sorrow to it.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Carrying out a wicked scheme is enjoyable to a fool, and so is wisdom for the one who has discernment.</VERS>\n\t\t\t<VERS vnumber=\"24\"> What the wicked fears will come on him; what the righteous desire will be granted.</VERS>\n\t\t\t<VERS vnumber=\"25\"> When the storm passes through, the wicked are swept away, but the righteous are an everlasting foundation.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Like vinegar to the teeth and like smoke to the eyes, so is the sluggard to those who send him.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Fearing the LORD prolongs life, but the life span of the wicked will be shortened.</VERS>\n\t\t\t<VERS vnumber=\"28\"> The hope of the righteous is joy, but the expectation of the wicked will remain unfulfilled.</VERS>\n\t\t\t<VERS vnumber=\"29\"> The way of the LORD is like a stronghold for the upright, but it is destruction to evildoers.</VERS>\n\t\t\t<VERS vnumber=\"30\"> The righteous will never be moved, but the wicked will not inhabit the land.</VERS>\n\t\t\t<VERS vnumber=\"31\"> The speech of the righteous bears the fruit of wisdom, but the one who speaks perversion will be destroyed.</VERS>\n\t\t\t<VERS vnumber=\"32\"> The lips of the righteous know what is pleasing, but the speech of the wicked is perverse.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"11\">\n\t\t\t<VERS vnumber=\"1\"> The LORD abhors dishonest scales, but an accurate weight is his elight.</VERS>\n\t\t\t<VERS vnumber=\"2\"> When pride comes, then comes disgrace, but with humility comes wisdom.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The integrity of the upright guides them, but the crookedness of the unfaithful destroys them.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Wealth does not profit in the day of wrath, but righteousness delivers from mortal danger.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The righteousness of the blameless will make straight their way, but the wicked person will fall by his own wickedness.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The righteousness of the upright will deliver them, but the faithless will be captured by their own desires.</VERS>\n\t\t\t<VERS vnumber=\"7\"> When a wicked person dies, his expectation perishes, and the hope of his strength perishes.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The righteous person is delivered out of trouble, and the wicked turns up in his stead.</VERS>\n\t\t\t<VERS vnumber=\"9\"> With his speech the godless person destroys his neighbor, but by knowledge the righteous will be delivered.</VERS>\n\t\t\t<VERS vnumber=\"10\"> When the righteous do well, the city rejoices; when the wicked perish, there is joy.</VERS>\n\t\t\t<VERS vnumber=\"11\"> A city is exalted by the blessing provided from the upright, but it is destroyed by the counsel of the wicked.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The one who denounces his neighbor lacks wisdom, but the one who has discernment keeps silent.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The one who goes about slandering others reveals secrets, but the one who is trustworthy conceals a matter.</VERS>\n\t\t\t<VERS vnumber=\"14\"> When there is no guidance a nation falls, but there is success in the abundance of counselors.</VERS>\n\t\t\t<VERS vnumber=\"15\"> The one who puts up security for a stranger will surely have trouble, but whoever avoids shaking hands will be secure.</VERS>\n\t\t\t<VERS vnumber=\"16\"> A generous woman gains honor, and ruthless men seize wealth.</VERS>\n\t\t\t<VERS vnumber=\"17\"> A kind person benefits himself, but a cruel person brings himself trouble.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The wicked person earns deceitful wages, but the one who sows righteousness reaps a genuine reward.</VERS>\n\t\t\t<VERS vnumber=\"19\"> True righteousness leads to life, but the one who pursues evil pursues it to his own death.</VERS>\n\t\t\t<VERS vnumber=\"20\"> The LORD abhors those who are perverse in heart, but those who are blameless in their ways are his delight.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Be assured that the evil person will certainly be punished, but the descendants of the righteous will not suffer unjust judgment.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Like a gold ring in a pig's snout is a beautiful woman who rejects discretion.</VERS>\n\t\t\t<VERS vnumber=\"23\"> What the righteous desire leads only to good, but what the wicked hope for leads to wrath.</VERS>\n\t\t\t<VERS vnumber=\"24\"> One person is generous and yet grows more wealthy, but another withholds more than he should and comes to poverty.</VERS>\n\t\t\t<VERS vnumber=\"25\"> A generous person will be enriched, and the one who provides water for others will himself be satisfied.</VERS>\n\t\t\t<VERS vnumber=\"26\"> People will curse the one who withholds grain, but they will praise the one who sells it.</VERS>\n\t\t\t<VERS vnumber=\"27\"> The one who diligently seeks good seeks favor, but the one who searches for evil, it will come to him.</VERS>\n\t\t\t<VERS vnumber=\"28\"> The one who trusts in his riches will fall, but the righteous will flourish like a green leaf.</VERS>\n\t\t\t<VERS vnumber=\"29\"> The one who troubles his family will inherit nothing, and the fool will be a servant to the wise person.</VERS>\n\t\t\t<VERS vnumber=\"30\"> The fruit of the righteous is like a tree producing life, and the one who wins souls is wise.</VERS>\n\t\t\t<VERS vnumber=\"31\"> If the righteous are recompensed on earth, how much more the wicked sinner!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"12\">\n\t\t\t<VERS vnumber=\"1\"> The one who loves discipline loves knowledge, but the one who hates reproof is stupid.</VERS>\n\t\t\t<VERS vnumber=\"2\"> A good person obtains favor from the LORD, but the LORD condemns a person with wicked schemes.</VERS>\n\t\t\t<VERS vnumber=\"3\"> No one can be established through wickedness, but a righteous root cannot be moved.</VERS>\n\t\t\t<VERS vnumber=\"4\"> A noble wife is the crown of her husband, but the wife who acts shamefully is like rottenness in his bones.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The plans of the righteous are just; the counsels of the wicked are deceitful.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The words of the wicked lie in wait to shed innocent blood, but the words of the upright will deliver them.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The wicked are overthrown and perish, but the righteous household will stand.</VERS>\n\t\t\t<VERS vnumber=\"8\"> A person is praised in accordance with his wisdom, but the one who has a twisted mind is despised.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Better is a person of humble standing who nevertheless has a servant, than one who pretends to be somebody important yet has no food.</VERS>\n\t\t\t<VERS vnumber=\"10\"> A righteous person cares for the life of his animal, but even the most compassionate acts of the wicked are cruel.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The one who works his field will have plenty of food, but whoever chases daydreams lacks wisdom.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The wicked person desires a stronghold, but the righteous root endures.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The evil person is ensnared by the transgression of his speech, but the righteous person escapes out of trouble.</VERS>\n\t\t\t<VERS vnumber=\"14\"> A person will be satisfied with good from the fruit of his words, and the work of his hands will be rendered to him.</VERS>\n\t\t\t<VERS vnumber=\"15\"> The way of a fool is right in his own opinion, but the one who listens to advice is wise.</VERS>\n\t\t\t<VERS vnumber=\"16\"> A fool's annoyance is known at once, but the prudent overlooks an insult.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The faithful witness tells what is right, but a false witness speaks deceit.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Speaking recklessly is like the thrusts of a sword, but the words of the wise bring healing.</VERS>\n\t\t\t<VERS vnumber=\"19\"> The one who tells the truth will endure forever, but the one who lies will last only for a moment.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Deceit is in the heart of those who plot evil, but those who promote peace have joy.</VERS>\n\t\t\t<VERS vnumber=\"21\"> The righteous do not encounter any harm, but the wicked are filled with calamity.</VERS>\n\t\t\t<VERS vnumber=\"22\"> The LORD abhors a person who lies, but those who deal truthfully are his delight.</VERS>\n\t\t\t<VERS vnumber=\"23\"> The shrewd person conceals knowledge, but foolish people publicize folly.</VERS>\n\t\t\t<VERS vnumber=\"24\"> The diligent person will rule, but the slothful will become a slave.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Anxiety in a person's heart weighs him down, but an encouraging word brings him joy.</VERS>\n\t\t\t<VERS vnumber=\"26\"> The righteous person is cautious in his friendship, but the way of the wicked leads them astray.</VERS>\n\t\t\t<VERS vnumber=\"27\"> The lazy person does not roast his prey, but personal possessions are precious to the diligent.</VERS>\n\t\t\t<VERS vnumber=\"28\"> In the path of righteousness there is life, but another path leads to death.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"13\">\n\t\t\t<VERS vnumber=\"1\"> A wise son accepts his father's discipline, but a scoffer does not listen to rebuke.</VERS>\n\t\t\t<VERS vnumber=\"2\"> From the fruit of his speech a person eats good things, but the faithless desire the fruit of violence.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The one who guards his words guards his life, but whoever is talkative will come to ruin.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The appetite of the sluggard craves but gets nothing, but the desire of the diligent will be abundantly satisfied.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The righteous person hates anything false, but the wicked person acts in shameful disgrace.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Righteousness guards the one who lives with integrity, but wickedness overthrows the sinner.</VERS>\n\t\t\t<VERS vnumber=\"7\"> There is one who pretends to be rich and yet has nothing; another pretends to be poor and yet possesses great wealth.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The ransom of a person's life is his wealth, but the poor person hears no threat.</VERS>\n\t\t\t<VERS vnumber=\"9\"> The light of the righteous shines brightly, but the lamp of the wicked goes out.</VERS>\n\t\t\t<VERS vnumber=\"10\"> With pride comes only contention, but wisdom is with the well-advised.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Wealth gained quickly will dwindle away, but the one who gathers it little by little will become rich.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Hope deferred makes the heart sick, but a longing fulfilled is like a tree of life.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The one who despises instruction will pay the penalty, but whoever esteems instruction will be rewarded.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Instruction from the wise is like a life-giving fountain, to turn a person from deadly snares.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Keen insight wins favor, but the conduct of the unfaithful is harsh.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Every shrewd person acts with knowledge, but a fool displays his folly.</VERS>\n\t\t\t<VERS vnumber=\"17\"> An unreliable messenger falls into trouble, but a faithful envoy brings healing.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The one who neglects discipline ends up in poverty and shame, but the one who accepts reproof is honored.</VERS>\n\t\t\t<VERS vnumber=\"19\"> A desire fulfilled is sweet to the soul, but fools abhor turning away from evil.</VERS>\n\t\t\t<VERS vnumber=\"20\"> The one who associates with the wise grows wise, but a companion of fools suffers harm.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Calamity pursues sinners, but prosperity rewards the righteous.</VERS>\n\t\t\t<VERS vnumber=\"22\"> A benevolent person leaves an inheritance for his grandchildren, but the wealth of a sinner is stored up for the righteous.</VERS>\n\t\t\t<VERS vnumber=\"23\"> There is abundant food in the field of the poor, but it is swept away by injustice.</VERS>\n\t\t\t<VERS vnumber=\"24\"> The one who spares his rod hates his child, but the one who loves his child is diligent in disciplining him.</VERS>\n\t\t\t<VERS vnumber=\"25\"> The righteous has enough food to satisfy his appetite, but the belly of the wicked lacks food.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"14\">\n\t\t\t<VERS vnumber=\"1\"> Every wise woman builds her household, but a foolish woman tears it down with her own hands.</VERS>\n\t\t\t<VERS vnumber=\"2\"> The one who walks in his uprightness fears the LORD, but the one who is perverted in his ways despises him.</VERS>\n\t\t\t<VERS vnumber=\"3\"> In the speech of a fool is a rod for his back, but the words of the wise protect them.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Where there are no oxen, the feeding trough is clean, but an abundant harvest is produced by strong oxen.</VERS>\n\t\t\t<VERS vnumber=\"5\"> A truthful witness does not lie, but a false witness breathes out lies.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The scorner seeks wisdom but finds none, but understanding is easy for a discerning person.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Leave the presence of a foolish person, or you will not understand wise counsel.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The wisdom of the shrewd person is to discern his way, but the folly of fools is deception.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Fools mock at reparation, but among the upright there is favor.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The heart knows its own bitterness, and with its joy no one else can share.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The household of the wicked will be destroyed, but the tent of the upright will flourish.</VERS>\n\t\t\t<VERS vnumber=\"12\"> There is a way that seems right to a person, but its end is the way that leads to death.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Even in laughter the heart may ache, and the end of joy may be grief.</VERS>\n\t\t\t<VERS vnumber=\"14\"> The backslider will be paid back from his own ways, but a good person will be rewarded for his.</VERS>\n\t\t\t<VERS vnumber=\"15\"> A naive person believes everything, but the shrewd person discerns his steps.</VERS>\n\t\t\t<VERS vnumber=\"16\"> A wise person is cautious and turns from evil, but a fool throws off restraint and is overconfident.</VERS>\n\t\t\t<VERS vnumber=\"17\"> A person who has a quick temper does foolish things, and a person with crafty schemes is hated.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The naive inherit folly, but the shrewd are crowned with knowledge.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Those who are evil will bow before those who are good, and the wicked will bow at the gates of the righteous.</VERS>\n\t\t\t<VERS vnumber=\"20\"> A poor person is disliked even by his neighbors, but those who love the rich are many.</VERS>\n\t\t\t<VERS vnumber=\"21\"> The one who despises his neighbor sins, but whoever is kind to the needy is blessed.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Do not those who devise evil go astray? But those who plan good exhibit faithful covenant love.</VERS>\n\t\t\t<VERS vnumber=\"23\"> In all hard work there is profit, but merely talking about it only brings poverty.</VERS>\n\t\t\t<VERS vnumber=\"24\"> The crown of the wise is their riches, but the folly of fools is folly.</VERS>\n\t\t\t<VERS vnumber=\"25\"> A truthful witness rescues lives, but the one who breathes lies brings deception.</VERS>\n\t\t\t<VERS vnumber=\"26\"> In the fear of the LORD one has strong confidence, and it will be a refuge for his children.</VERS>\n\t\t\t<VERS vnumber=\"27\"> The fear of the LORD is like a life-giving fountain, to turn people from deadly snares.</VERS>\n\t\t\t<VERS vnumber=\"28\"> A king's glory is the abundance of people, but the lack of subjects is the ruin of a ruler.</VERS>\n\t\t\t<VERS vnumber=\"29\"> The one who is slow to anger has great understanding, but the one who has a quick temper exalts folly.</VERS>\n\t\t\t<VERS vnumber=\"30\"> A tranquil spirit revives the body, but envy is rottenness to the bones.</VERS>\n\t\t\t<VERS vnumber=\"31\"> The one who oppresses the poor insults his Creator, but whoever shows favor to the needy honors him.</VERS>\n\t\t\t<VERS vnumber=\"32\"> The wicked will be thrown down in his trouble, but the righteous have refuge even in the threat of death.</VERS>\n\t\t\t<VERS vnumber=\"33\"> Wisdom rests in the heart of the discerning; it is known even in the heart of fools.</VERS>\n\t\t\t<VERS vnumber=\"34\"> Righteousness exalts a nation, but sin is a disgrace to any people.</VERS>\n\t\t\t<VERS vnumber=\"35\"> The king shows favor to a wise servant, but his wrath falls on one who acts shamefully.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"15\">\n\t\t\t<VERS vnumber=\"1\"> A gentle response turns away anger, but a harsh word stirs up wrath.</VERS>\n\t\t\t<VERS vnumber=\"2\"> The tongue of the wise treats knowledge correctly, but the mouth of the fool spouts out folly.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The eyes of the LORD are in every place, keeping watch on those who are evil and those who are good.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Speech that heals is like a life-giving tree, but a perverse tongue breaks the spirit.</VERS>\n\t\t\t<VERS vnumber=\"5\"> A fool rejects his father's discipline, but whoever heeds reproof shows good sense.</VERS>\n\t\t\t<VERS vnumber=\"6\"> In the house of the righteous is abundant wealth, but the income of the wicked brings trouble.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The lips of the wise spread knowledge, but not so the heart of fools.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The LORD abhors the sacrifices of the wicked, but the prayer of the upright pleases him.</VERS>\n\t\t\t<VERS vnumber=\"9\"> The LORD abhors the way of the wicked, but he loves those who pursue righteousness.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Severe discipline is for the one who abandons the way; the one who hates reproof will die.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Death and Destruction are before the LORD, how much more the hearts of humans!</VERS>\n\t\t\t<VERS vnumber=\"12\"> The scorner does not love one who corrects him; he will not go to the wise.</VERS>\n\t\t\t<VERS vnumber=\"13\"> A joyful heart makes the face cheerful, but by a painful heart the spirit is broken.</VERS>\n\t\t\t<VERS vnumber=\"14\"> The discerning heart seeks knowledge, but the mouth of fools feeds on folly.</VERS>\n\t\t\t<VERS vnumber=\"15\"> All the days of the afflicted are bad, but one with a cheerful heart has a continual feast.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Better is little with the fear of the LORD than great wealth and turmoil with it.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Better a meal of vegetables where there is love than a fattened ox where there is hatred.</VERS>\n\t\t\t<VERS vnumber=\"18\"> A quick-tempered person stirs up dissension, but one who is slow to anger calms a quarrel.</VERS>\n\t\t\t<VERS vnumber=\"19\"> The way of the sluggard is like a hedge of thorns, but the path of the upright is like a highway.</VERS>\n\t\t\t<VERS vnumber=\"20\"> A wise child brings joy to his father, but a foolish person despises his mother.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Folly is a joy to one who lacks sense, but one who has understanding follows an upright course.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Plans fail when there is no counsel, but with abundant advisers they are established.</VERS>\n\t\t\t<VERS vnumber=\"23\"> A person has joy in giving an appropriate answer, and a word at the right time, how good it is!</VERS>\n\t\t\t<VERS vnumber=\"24\"> The path of life is upward for the wise person, to keep him from going downward to Sheol.</VERS>\n\t\t\t<VERS vnumber=\"25\"> The LORD tears down the house of the proud, but he maintains the boundaries of the widow.</VERS>\n\t\t\t<VERS vnumber=\"26\"> The LORD abhors the plans of the wicked, but pleasant words are pure.</VERS>\n\t\t\t<VERS vnumber=\"27\"> The one who is greedy for gain troubles his household, but whoever hates bribes will live.</VERS>\n\t\t\t<VERS vnumber=\"28\"> The heart of the righteous considers how to answer, but the mouth of the wicked pours out evil things.</VERS>\n\t\t\t<VERS vnumber=\"29\"> The LORD is far from the wicked, but he hears the prayer of the righteous.</VERS>\n\t\t\t<VERS vnumber=\"30\"> A bright look brings joy to the heart, and good news gives health to the body.</VERS>\n\t\t\t<VERS vnumber=\"31\"> The person who hears the reproof that leads to life is at home among the wise.</VERS>\n\t\t\t<VERS vnumber=\"32\"> The one who refuses correction despises himself, but whoever hears reproof acquires understanding.</VERS>\n\t\t\t<VERS vnumber=\"33\"> The fear of the LORD provides wise instruction, and before honor comes humility.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"16\">\n\t\t\t<VERS vnumber=\"1\"> The intentions of the heart belong to a man, but the answer of the tongue comes from the LORD.</VERS>\n\t\t\t<VERS vnumber=\"2\"> All a person's ways seem right in his own opinion, but the LORD evaluates the motives.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Commit your works to the LORD, and your plans will be established.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The LORD works everything for its own ends, even the wicked for the day of disaster.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The LORD abhors every arrogant person; rest assured that they will not go unpunished.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Through loyal love and truth iniquity is appeased; through fearing the LORD one avoids evil.</VERS>\n\t\t\t<VERS vnumber=\"7\"> When a person's ways are pleasing to the LORD, he even reconciles his enemies to himself.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Better to have a little with righteousness than to have abundant income without justice.</VERS>\n\t\t\t<VERS vnumber=\"9\"> A person plans his course, but the LORD directs his steps.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The divine verdict is in the words of the king, his pronouncements must not act treacherously against justice.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Honest scales and balances are from the LORD; all the weights in the bag are his handiwork.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Doing wickedness is an abomination to kings, because a throne is established in righteousness.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The delight of kings is righteous counsel, and they love the one who speaks uprightly.</VERS>\n\t\t\t<VERS vnumber=\"14\"> A king's wrath is like a messenger of death, but a wise person appeases it.</VERS>\n\t\t\t<VERS vnumber=\"15\"> In the light of the king's face there is life, and his favor is like the clouds of the spring rain.</VERS>\n\t\t\t<VERS vnumber=\"16\"> How much better it is to acquire wisdom than gold; to acquire understanding is more desirable than silver.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The highway of the upright is to turn away from evil; the one who guards his way safeguards his life.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Pride goes before destruction, and a haughty spirit before a fall.</VERS>\n\t\t\t<VERS vnumber=\"19\"> It is better to be lowly in spirit with the afflicted than to share the spoils with the proud.</VERS>\n\t\t\t<VERS vnumber=\"20\"> The one who deals wisely in a matter will find success, and blessed is the one who trusts in the LORD.</VERS>\n\t\t\t<VERS vnumber=\"21\"> The one who is wise in heart is called discerning, and kind speech increases persuasiveness.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Insight is like a life-giving fountain to the one who possesses it, but folly leads to the discipline of fools.</VERS>\n\t\t\t<VERS vnumber=\"23\"> A wise person's heart makes his speech wise and it adds persuasiveness to his words.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Pleasant words are like a honeycomb, sweet to the soul and healing to the bones.</VERS>\n\t\t\t<VERS vnumber=\"25\"> There is a way that seems right to a person, but its end is the way that leads to death.</VERS>\n\t\t\t<VERS vnumber=\"26\"> A laborer's appetite works on his behalf, for his hunger urges him to work.</VERS>\n\t\t\t<VERS vnumber=\"27\"> A wicked scoundrel digs up evil, and his slander is like a scorching fire.</VERS>\n\t\t\t<VERS vnumber=\"28\"> A perverse person spreads dissension, and a gossip separates the closest friends.</VERS>\n\t\t\t<VERS vnumber=\"29\"> A violent person entices his neighbor, and leads him down a path that is terrible.</VERS>\n\t\t\t<VERS vnumber=\"30\"> The one who winks his eyes devises perverse things, and one who compresses his lips brings about evil.</VERS>\n\t\t\t<VERS vnumber=\"31\"> Gray hair is like a crown of glory; it is attained in the path of righteousness.</VERS>\n\t\t\t<VERS vnumber=\"32\"> Better to be slow to anger than to be a mighty warrior, and one who controls his temper is better than one who captures a city.</VERS>\n\t\t\t<VERS vnumber=\"33\"> The dice are thrown into the lap, but their every decision is from the LORD.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"17\">\n\t\t\t<VERS vnumber=\"1\"> Better is a dry crust of bread where there is quietness than a house full of feasting with strife.</VERS>\n\t\t\t<VERS vnumber=\"2\"> A servant who acts wisely will rule over an heir who behaves shamefully, and will share the inheritance along with the relatives.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The crucible is for refining silver and the furnace is for gold, likewise the LORD tests hearts.</VERS>\n\t\t\t<VERS vnumber=\"4\"> One who acts wickedly pays attention to evil counsel; a liar listens to a malicious tongue.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The one who mocks the poor insults his Creator; whoever rejoices over disaster will not go unpunished.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Grandchildren are like a crown to the elderly, and the glory of children is their parents.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Excessive speech is not becoming for a fool; how much less are lies for a ruler!</VERS>\n\t\t\t<VERS vnumber=\"8\"> A bribe works like a charm for the one who offers it; in whatever he does he succeeds.</VERS>\n\t\t\t<VERS vnumber=\"9\"> The one who forgives an offense seeks love, but whoever repeats a matter separates close friends.</VERS>\n\t\t\t<VERS vnumber=\"10\"> A rebuke makes a greater impression on a discerning person than a hundred blows on a fool.</VERS>\n\t\t\t<VERS vnumber=\"11\"> An evil person seeks only rebellion, and so a cruel messenger will be sent against him.</VERS>\n\t\t\t<VERS vnumber=\"12\"> It is better for a person to meet a mother bear being robbed of her cubs, than to encounter a fool in his folly.</VERS>\n\t\t\t<VERS vnumber=\"13\"> As for the one who repays evil for good, evil will not leave his house.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Starting a quarrel is like letting out water; stop it before strife breaks out!</VERS>\n\t\t\t<VERS vnumber=\"15\"> The one who acquits the guilty and the one who condemns the innocent, both of them are an abomination to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Of what use is money in the hand of a fool, since he has no intention of acquiring wisdom?</VERS>\n\t\t\t<VERS vnumber=\"17\"> A friend loves at all times, and a relative is born to help in adversity.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The one who lacks wisdom strikes hands in pledge, and puts up financial security for his neighbor.</VERS>\n\t\t\t<VERS vnumber=\"19\"> The one who loves a quarrel loves transgression; whoever builds his gate high seeks destruction.</VERS>\n\t\t\t<VERS vnumber=\"20\"> The one who has a perverse heart does not find good, and the one who is deceitful in speech falls into trouble.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Whoever brings a fool into the world does so to his grief, and the father of a fool has no joy.</VERS>\n\t\t\t<VERS vnumber=\"22\"> A cheerful heart brings good healing, but a crushed spirit dries up the bones.</VERS>\n\t\t\t<VERS vnumber=\"23\"> A wicked person receives a bribe secretly to pervert the ways of justice.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Wisdom is directly in front of the discerning person, but the eyes of a fool run to the ends of the earth.</VERS>\n\t\t\t<VERS vnumber=\"25\"> A foolish child is a grief to his father, and bitterness to the mother who bore him.</VERS>\n\t\t\t<VERS vnumber=\"26\"> It is terrible to punish a righteous person, and to flog honorable men is wrong.</VERS>\n\t\t\t<VERS vnumber=\"27\"> The truly wise person restrains his words, and the one who stays calm is discerning.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Even a fool who remains silent is considered wise, and the one who holds his tongue is deemed discerning.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"18\">\n\t\t\t<VERS vnumber=\"1\"> One who has isolated himself seeks his own desires; he rejects all sound judgment.</VERS>\n\t\t\t<VERS vnumber=\"2\"> A fool takes no pleasure in understanding but only in disclosing what is on his mind.</VERS>\n\t\t\t<VERS vnumber=\"3\"> When a wicked person arrives, contempt shows up with him, and with shame comes a reproach.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The words of a person's mouth are like deep waters, and the fountain of wisdom is like a flowing brook.</VERS>\n\t\t\t<VERS vnumber=\"5\"> It is terrible to show partiality to the wicked, by depriving a righteous man of justice.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The lips of a fool enter into strife, and his mouth invites a flogging.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The mouth of a fool is his ruin, and his lips are a snare for his life.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The words of a gossip are like choice morsels; they go down into the person's innermost being.</VERS>\n\t\t\t<VERS vnumber=\"9\"> The one who is slack in his work is a brother to one who destroys.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The name of the LORD is like a strong tower; the righteous person runs to it and is set safely on high.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The wealth of a rich person is like a strong city, and it is like a high wall in his imagination.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Before destruction the heart of a person is proud, but humility comes before honor.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The one who gives an answer before he listens, that is his folly and his shame.</VERS>\n\t\t\t<VERS vnumber=\"14\"> A person's spirit sustains him through sickness, but who can bear a crushed spirit?</VERS>\n\t\t\t<VERS vnumber=\"15\"> The discerning person acquires knowledge, and the wise person seeks knowledge.</VERS>\n\t\t\t<VERS vnumber=\"16\"> A person's gift makes room for him, and leads him before important people.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The first to state his case seems right, until his opponent begins to cross-examine him.</VERS>\n\t\t\t<VERS vnumber=\"18\"> A toss of a coin ends disputes, and settles the issue between strong opponents.</VERS>\n\t\t\t<VERS vnumber=\"19\"> A relative offended is harder to reach than a strong city, and disputes are like the barred gates of a fortified citadel.</VERS>\n\t\t\t<VERS vnumber=\"20\"> From the fruit of a person's mouth his stomach is satisfied, with the product of his lips is he satisfied.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Death and life are in the power of the tongue, and those who love its use will eat its fruit.</VERS>\n\t\t\t<VERS vnumber=\"22\"> The one who finds a wife finds what is enjoyable, and receives a pleasurable gift from the LORD.</VERS>\n\t\t\t<VERS vnumber=\"23\"> A poor person makes supplications, but a rich man answers harshly.</VERS>\n\t\t\t<VERS vnumber=\"24\"> A person who has friends may be harmed by them, but there is a friend who sticks closer than a brother.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"19\">\n\t\t\t<VERS vnumber=\"1\"> Better is a poor person who walks in his integrity than one who is perverse in his speech and is a fool.</VERS>\n\t\t\t<VERS vnumber=\"2\"> It is dangerous to have zeal without knowledge, and the one who acts hastily makes poor choices.</VERS>\n\t\t\t<VERS vnumber=\"3\"> A person's folly subverts his way, and his heart rages against the LORD.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Wealth adds many friends, but a poor person is separated from his friend.</VERS>\n\t\t\t<VERS vnumber=\"5\"> A false witness will not go unpunished, and the one who spouts out lies will not escape punishment.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Many people entreat the favor of a generous person, and everyone is the friend of the person who gives gifts.</VERS>\n\t\t\t<VERS vnumber=\"7\"> All the relatives of a poor person hate him; how much more do his friends avoid him, he pursues them with words, but they do not respond.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The one who acquires wisdom loves himself; the one who preserves understanding will prosper.</VERS>\n\t\t\t<VERS vnumber=\"9\"> A false witness will not go unpunished, and the one who spouts out lies will perish.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Luxury is not appropriate for a fool; how much less for a servant to rule over princes!</VERS>\n\t\t\t<VERS vnumber=\"11\"> A person's wisdom makes him slow to anger, and it is his glory to overlook an offense.</VERS>\n\t\t\t<VERS vnumber=\"12\"> A king's wrath is like the roar of a lion, but his favor is like dew on the grass.</VERS>\n\t\t\t<VERS vnumber=\"13\"> A foolish child is the ruin of his father, and a contentious wife is like a constant dripping.</VERS>\n\t\t\t<VERS vnumber=\"14\"> A house and wealth are inherited from parents, but a prudent wife is from the LORD.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Laziness brings on a deep sleep, and the idle person will go hungry.</VERS>\n\t\t\t<VERS vnumber=\"16\"> The one who obeys commandments guards his life; the one who despises his ways will die.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The one who is gracious to the poor lends to the LORD, and the LORD will repay him for his good deed.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Discipline your child, for there is hope, but do not set your heart on causing his death.</VERS>\n\t\t\t<VERS vnumber=\"19\"> A person with great anger bears the penalty, but if you deliver him from it once, you will have to do it again.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Listen to advice and receive discipline, that you may become wise by the end of your life.</VERS>\n\t\t\t<VERS vnumber=\"21\"> There are many plans in a person's mind, but it is the counsel of the LORD which will stand.</VERS>\n\t\t\t<VERS vnumber=\"22\"> What is desirable for a person is to show loyal love, and a poor person is better than a liar.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Fearing the LORD leads to life, and one who does so will live satisfied; he will not be afflicted by calamity.</VERS>\n\t\t\t<VERS vnumber=\"24\"> The sluggard plunges his hand in the dish, and he will not even bring it back to his mouth!</VERS>\n\t\t\t<VERS vnumber=\"25\"> Flog a scorner, and as a result the simpleton will learn prudence; correct a discerning person, and as a result he will understand knowledge.</VERS>\n\t\t\t<VERS vnumber=\"26\"> The one who robs his father and chases away his mother is a son who brings shame and disgrace.</VERS>\n\t\t\t<VERS vnumber=\"27\"> If you stop listening to instruction, my child, you will stray from the words of knowledge.</VERS>\n\t\t\t<VERS vnumber=\"28\"> A crooked witness scorns justice, and the mouth of the wicked devours iniquity.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Judgments are prepared for scorners, and floggings for the backs of fools.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"20\">\n\t\t\t<VERS vnumber=\"1\"> Wine is a mocker and strong drink is a brawler; whoever goes astray by them is not wise.</VERS>\n\t\t\t<VERS vnumber=\"2\"> The king's terrifying anger is like the roar of a lion; whoever provokes him sins against himself.</VERS>\n\t\t\t<VERS vnumber=\"3\"> It is an honor for a person to cease from strife, but every fool quarrels.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The sluggard will not plow during the planting season, so at harvest time he looks for the crop but has nothing.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Counsel in a person's heart is like deep water, but an understanding person draws it out.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Many people profess their loyalty, but a faithful person, who can find?</VERS>\n\t\t\t<VERS vnumber=\"7\"> The righteous person behaves in integrity; blessed are his children after him.</VERS>\n\t\t\t<VERS vnumber=\"8\"> A king sitting on the throne to judge separates out all evil with his eyes.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Who can say, \"I have kept my heart clean; I am pure from my sin\"?</VERS>\n\t\t\t<VERS vnumber=\"10\"> Diverse weights and diverse measures, the LORD abhors both of them.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Even a young man is known by his actions, whether his activity is pure and whether it is right.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The ear that hears and the eye that sees, the LORD has made them both.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Do not love sleep, lest you become impoverished; open your eyes so that you might be satisfied with food.</VERS>\n\t\t\t<VERS vnumber=\"14\"> \"It's worthless! It's worthless!\" says the buyer, but when he goes on his way, he boasts.</VERS>\n\t\t\t<VERS vnumber=\"15\"> There is gold, and an abundance of rubies, but words of knowledge are like a precious jewel.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Take a man's garment when he has given security for a stranger, and when he gives surety for strangers, hold him in pledge.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Bread gained by deceit tastes sweet to a person, but afterward his mouth will be filled with gravel.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Plans are established by counsel, so make war with guidance.</VERS>\n\t\t\t<VERS vnumber=\"19\"> The one who goes about gossiping reveals secrets; therefore do not associate with someone who is always opening his mouth.</VERS>\n\t\t\t<VERS vnumber=\"20\"> The one who curses his father and his mother, his lamp will be extinguished in the blackest darkness.</VERS>\n\t\t\t<VERS vnumber=\"21\"> An inheritance gained easily in the beginning will not be blessed in the end.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Do not say, \"I will pay back evil!\" Wait for the LORD, so that he may vindicate you.</VERS>\n\t\t\t<VERS vnumber=\"23\"> The LORD abhors differing weights, and dishonest scales are wicked.</VERS>\n\t\t\t<VERS vnumber=\"24\"> The steps of a person are ordained by the LORD, so how can anyone understand his own way?</VERS>\n\t\t\t<VERS vnumber=\"25\"> It is a snare for a person to rashly cry, \"Holy!\" and only afterward to consider what he has vowed.</VERS>\n\t\t\t<VERS vnumber=\"26\"> A wise king separates out the wicked; he turns the threshing wheel over them.</VERS>\n\t\t\t<VERS vnumber=\"27\"> The human spirit is like the lamp of the LORD, searching all his innermost parts.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Loyal love and truth preserve a king, and his throne is upheld by loyal love.</VERS>\n\t\t\t<VERS vnumber=\"29\"> The glory of young men is their strength, and the splendor of old men is gray hair.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Beatings and wounds cleanse away evil, and floggings cleanse the innermost being.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"21\">\n\t\t\t<VERS vnumber=\"1\"> The king's heart is in the hand of the LORD like channels of water; he turns it wherever he wants.</VERS>\n\t\t\t<VERS vnumber=\"2\"> All of a person's ways seem right in his own opinion, but the LORD evaluates the motives.</VERS>\n\t\t\t<VERS vnumber=\"3\"> To do righteousness and justice is more acceptable to the LORD than sacrifice.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Haughty eyes and a proud heart, the agricultural product of the wicked is sin.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The plans of the diligent lead only to plenty, but everyone who is hasty comes only to poverty.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Making a fortune by a lying tongue is like a vapor driven back and forth; they seek death.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The violence done by the wicked will drag them away because they refuse to do what is right.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The way of the guilty person is devious, but as for the pure, his way is upright.</VERS>\n\t\t\t<VERS vnumber=\"9\"> It is better to live on a corner of the housetop than in a house in company with a quarrelsome wife.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The appetite of the wicked desires evil; his neighbor is shown no favor in his eyes.</VERS>\n\t\t\t<VERS vnumber=\"11\"> When a scorner is punished, the naive becomes wise; when a wise person is instructed, he gains knowledge.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The Righteous One considers the house of the wicked; he overthrows the wicked to their ruin.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The one who shuts his ears to the cry of the poor, he too will cry out and will not be answered.</VERS>\n\t\t\t<VERS vnumber=\"14\"> A gift given in secret subdues anger, and a bribe given secretly subdues strong wrath.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Doing justice brings joy to the righteous and terror to those who do evil.</VERS>\n\t\t\t<VERS vnumber=\"16\"> The one who wanders from the way of wisdom will end up in the company of the departed.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The one who loves pleasure will be a poor person; whoever loves wine and anointing oil will not be rich.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The wicked become a ransom for the righteous, and the faithless are taken in the place of the upright.</VERS>\n\t\t\t<VERS vnumber=\"19\"> It is better to live in a desert land than with a quarrelsome and easily-provoked woman.</VERS>\n\t\t\t<VERS vnumber=\"20\"> There is desirable treasure and olive oil in the dwelling of the wise, but a foolish person devours all he has.</VERS>\n\t\t\t<VERS vnumber=\"21\"> The one who pursues righteousness and love finds life, bounty, and honor.</VERS>\n\t\t\t<VERS vnumber=\"22\"> The wise person can scale the city of the mighty and bring down the stronghold in which they trust.</VERS>\n\t\t\t<VERS vnumber=\"23\"> The one who guards his mouth and his tongue keeps his life from troubles.</VERS>\n\t\t\t<VERS vnumber=\"24\"> A proud and arrogant person, whose name is \"Scoffer,\" acts with overbearing pride.</VERS>\n\t\t\t<VERS vnumber=\"25\"> What the sluggard desires will kill him, for his hands refuse to work.</VERS>\n\t\t\t<VERS vnumber=\"26\"> All day long he craves greedily, but the righteous gives and does not hold back.</VERS>\n\t\t\t<VERS vnumber=\"27\"> The wicked person's sacrifice is an abomination; how much more when he brings it with evil intent!</VERS>\n\t\t\t<VERS vnumber=\"28\"> A lying witness will perish, but the one who reports accurately speaks forever.</VERS>\n\t\t\t<VERS vnumber=\"29\"> A wicked person shows boldness with his face, but as for the upright, he discerns his ways.</VERS>\n\t\t\t<VERS vnumber=\"30\"> There is no wisdom and there is no understanding, and there is no counsel against the LORD.</VERS>\n\t\t\t<VERS vnumber=\"31\"> A horse is prepared for the day of battle, but the victory is from the LORD.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"22\">\n\t\t\t<VERS vnumber=\"1\"> A good name is to be chosen rather than great wealth, good favor more than silver or gold.</VERS>\n\t\t\t<VERS vnumber=\"2\"> The rich and the poor meet together; the LORD is the creator of them both.</VERS>\n\t\t\t<VERS vnumber=\"3\"> A shrewd person sees danger and hides himself, but the naive keep right on going and suffer for it.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The reward for humility and fearing the LORD is riches and honor and life.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Thorns and snares are in the path of the perverse, but the one who guards himself keeps far from them.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Train a child in the way that he should go, and when he is old he will not turn from it.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The rich rule over the poor, and the borrower is servant to the lender.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The one who sows iniquity will reap trouble, and the rod of his fury will end.</VERS>\n\t\t\t<VERS vnumber=\"9\"> A generous person will be blessed, for he gives some of his food to the poor.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Drive out the scorner and contention will leave; strife and insults will cease.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The one who loves a pure heart and whose speech is gracious, the king will be his friend.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The eyes of the LORD guard knowledge, but he overthrows the words of the faithless person.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The sluggard says, \"There is a lion outside! I will be killed in the middle of the streets!\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> The mouth of an adulteress is like a deep pit; the one against whom the LORD is angry will fall into it.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Folly is bound up in the heart of a child, but the rod of discipline will drive it far from him.</VERS>\n\t\t\t<VERS vnumber=\"16\"> The one who oppresses the poor to increase his own gain and the one who gives to the rich, both end up only in poverty.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Incline your ear and listen to the words of the wise, and apply your heart to my instruction.</VERS>\n\t\t\t<VERS vnumber=\"18\"> For it is pleasing if you keep these sayings within you, and they are ready on your lips.</VERS>\n\t\t\t<VERS vnumber=\"19\"> So that your confidence may be in the LORD, I am making them known to you today, even you.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Have I not written thirty sayings for you, sayings of counsel and knowledge,</VERS>\n\t\t\t<VERS vnumber=\"21\"> to show you true and reliable words, so that you may give accurate answers to those who sent you?</VERS>\n\t\t\t<VERS vnumber=\"22\"> Do not exploit a poor person because he is poor and do not crush the needy in court,</VERS>\n\t\t\t<VERS vnumber=\"23\"> for the LORD will plead their case and will rob those who are robbing them.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Do not make friends with an angry person, and do not associate with a wrathful person,</VERS>\n\t\t\t<VERS vnumber=\"25\"> lest you learn his ways and entangle yourself in a snare.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Do not be one who strikes hands in pledge or who puts up security for debts.</VERS>\n\t\t\t<VERS vnumber=\"27\"> If you do not have enough to pay, your bed will be taken right out from under you!</VERS>\n\t\t\t<VERS vnumber=\"28\"> Do not move an ancient boundary stone which was put in place by your ancestors.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Do you see a person skilled in his work? He will take his position before kings; he will not take his position before obscure people.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"23\">\n\t\t\t<VERS vnumber=\"1\"> When you sit down to eat with a ruler, consider carefully what is before you,</VERS>\n\t\t\t<VERS vnumber=\"2\"> and put a knife to your throat if you possess a large appetite.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Do not crave that ruler's delicacies, for that food is deceptive.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Do not wear yourself out to become rich; be wise enough to restrain yourself.</VERS>\n\t\t\t<VERS vnumber=\"5\"> When you gaze upon riches, they are gone, for they surely make wings for themselves, and fly off into the sky like an eagle!</VERS>\n\t\t\t<VERS vnumber=\"6\"> Do not eat the food of a stingy person, do not crave his delicacies;</VERS>\n\t\t\t<VERS vnumber=\"7\"> for he is like someone calculating the cost in his mind. \"Eat and drink,\" he says to you, but his heart is not with you;</VERS>\n\t\t\t<VERS vnumber=\"8\"> you will vomit up the little bit you have eaten, and will have wasted your pleasant words.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Do not speak in the ears of a fool, for he will despise the wisdom of your words.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Do not move an ancient boundary stone, or take over the fields of the fatherless,</VERS>\n\t\t\t<VERS vnumber=\"11\"> for their Protector is strong; he will plead their case against you.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Apply your heart to instruction and your ears to the words of knowledge.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Do not withhold discipline from a child; even if you strike him with the rod, he will not die.</VERS>\n\t\t\t<VERS vnumber=\"14\"> If you strike him with the rod, you will deliver him from death.</VERS>\n\t\t\t<VERS vnumber=\"15\"> My child, if your heart is wise, then my heart also will be glad;</VERS>\n\t\t\t<VERS vnumber=\"16\"> my soul will rejoice when your lips speak what is right.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Do not let your heart envy sinners, but rather be zealous in fearing the LORD all the time.</VERS>\n\t\t\t<VERS vnumber=\"18\"> For surely there is a future, and your hope will not be cut off.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Listen, my child, and be wise, and guide your heart on the right way.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Do not spend time among drunkards, among those who eat too much meat,</VERS>\n\t\t\t<VERS vnumber=\"21\"> because drunkards and gluttons become impoverished, and drowsiness clothes them with rags.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Listen to your father who begot you, and do not despise your mother when she is old.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Acquire truth and do not sell it, wisdom, and discipline, and understanding.</VERS>\n\t\t\t<VERS vnumber=\"24\"> The father of a righteous person will rejoice greatly; whoever fathers a wise child will have joy in him.</VERS>\n\t\t\t<VERS vnumber=\"25\"> May your father and your mother have joy; may she who bore you rejoice.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Give me your heart, my son, and let your eyes observe my ways;</VERS>\n\t\t\t<VERS vnumber=\"27\"> for a prostitute is like a deep pit; a harlot is like a narrow well.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Indeed, she lies in wait like a robber, and increases the unfaithful among men.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Who has woe? Who has sorrow? Who has contentions? Who has complaints? Who has wounds without cause? Who has dullness of the eyes?</VERS>\n\t\t\t<VERS vnumber=\"30\"> Those who linger over wine, those who go looking for mixed wine.</VERS>\n\t\t\t<VERS vnumber=\"31\"> Do not look on the wine when it is red, when it sparkles in the cup, when it goes down smoothly.</VERS>\n\t\t\t<VERS vnumber=\"32\"> Afterward it bites like a snake, and stings like a viper.</VERS>\n\t\t\t<VERS vnumber=\"33\"> Your eyes will see strange things, and your mind will speak perverse things.</VERS>\n\t\t\t<VERS vnumber=\"34\"> And you will be like one who lies down in the midst of the sea, and like one who lies down on the top of the rigging.</VERS>\n\t\t\t<VERS vnumber=\"35\"> You will say, \"They have struck me, but I am not harmed! They beat me, but I did not know it! When will I awake? I will look for another drink.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"24\">\n\t\t\t<VERS vnumber=\"1\"> Do not envy evil people, do not desire to be with them;</VERS>\n\t\t\t<VERS vnumber=\"2\"> for their hearts contemplate violence, and their lips speak harm.</VERS>\n\t\t\t<VERS vnumber=\"3\"> By wisdom a house is built, and through understanding it is established;</VERS>\n\t\t\t<VERS vnumber=\"4\"> by knowledge its rooms are filled with all kinds of precious and pleasing treasures.</VERS>\n\t\t\t<VERS vnumber=\"5\"> A wise warrior is strong, and a man of knowledge makes his strength stronger;</VERS>\n\t\t\t<VERS vnumber=\"6\"> for with guidance you wage your war, and with numerous advisers there is victory.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Wisdom is unattainable for a fool; in court he does not open his mouth.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The one who plans to do evil will be called a scheming person.</VERS>\n\t\t\t<VERS vnumber=\"9\"> A foolish scheme is sin, and the scorner is an abomination to people.</VERS>\n\t\t\t<VERS vnumber=\"10\"> If you faint in the day of trouble, your strength is small!</VERS>\n\t\t\t<VERS vnumber=\"11\"> Deliver those being taken away to death, and hold back those slipping to the slaughter.</VERS>\n\t\t\t<VERS vnumber=\"12\"> If you say, \"But we did not know about this,\" does not the one who evaluates hearts consider? Does not the one who guards your life know? Will he not repay each person according to his deeds?</VERS>\n\t\t\t<VERS vnumber=\"13\"> Eat honey, my child, for it is good, and honey from the honeycomb is sweet to your taste.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Likewise, know that wisdom is sweet to your soul; if you find it, you will have a future, and your hope will not be cut off.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Do not lie in wait like the wicked against the place where the righteous live; do not assault his home.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Although a righteous person may fall seven times, he gets up again, but the wicked will be brought down by calamity.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Do not rejoice when your enemy falls, and when he stumbles do not let your heart rejoice,</VERS>\n\t\t\t<VERS vnumber=\"18\"> lest the LORD see it, and be displeased, and turn his wrath away from him.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Do not fret because of evil people or be envious of wicked people,</VERS>\n\t\t\t<VERS vnumber=\"20\"> for the evil person has no future, and the lamp of the wicked will be extinguished.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Fear the LORD, my child, as well as the king, and do not associate with rebels,</VERS>\n\t\t\t<VERS vnumber=\"22\"> for suddenly their destruction will overtake them, and who knows the ruinous judgment both the LORD and the king can bring?</VERS>\n\t\t\t<VERS vnumber=\"23\"> These sayings also are from the wise: To show partiality in judgment is terrible:</VERS>\n\t\t\t<VERS vnumber=\"24\"> The one who says to the guilty, \"You are innocent,\" peoples will curse him, and nations will denounce him.</VERS>\n\t\t\t<VERS vnumber=\"25\"> But there will be delight for those who convict the guilty, and a pleasing blessing will come on them.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Like a kiss on the lips is the one who gives an honest answer.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Establish your work outside and get your fields ready; afterward build your house.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Do not be a witness against your neighbor without cause, and do not deceive with your words.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Do not say, \"I will do to him just as he has done to me; I will pay him back according to what he has done.\"</VERS>\n\t\t\t<VERS vnumber=\"30\"> I passed by the field of a sluggard, by the vineyard of one who lacks wisdom.</VERS>\n\t\t\t<VERS vnumber=\"31\"> I saw that thorns had grown up all over it, the ground was covered with weeds, and its stone wall was broken down.</VERS>\n\t\t\t<VERS vnumber=\"32\"> When I saw this, I gave careful consideration to it; I received instruction from what I saw:</VERS>\n\t\t\t<VERS vnumber=\"33\"> \"A little sleep, a little slumber, a little folding of the hands to relax,</VERS>\n\t\t\t<VERS vnumber=\"34\"> and your poverty will come like a bandit, and your need like an armed robber.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"25\">\n\t\t\t<VERS vnumber=\"1\"> These also are proverbs of Solomon, which the men of King Hezekiah of Judah copied:</VERS>\n\t\t\t<VERS vnumber=\"2\"> It is the glory of God to conceal a matter, and it is the glory of a king to search out a matter.</VERS>\n\t\t\t<VERS vnumber=\"3\"> As the heaven is high and the earth is deep so the hearts of kings are unsearchable.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Remove the dross from the silver, and material for the silversmith will emerge;</VERS>\n\t\t\t<VERS vnumber=\"5\"> remove the wicked from before the king, and his throne will be established in righteousness.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Do not honor yourself before the king, and do not stand in the place of great men;</VERS>\n\t\t\t<VERS vnumber=\"7\"> for it is better for him to say to you, \"Come up here,\" than to put you lower before a prince, whom your eyes have seen.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Do not go out hastily to litigation, or what will you do afterward when your neighbor puts you to shame?</VERS>\n\t\t\t<VERS vnumber=\"9\"> When you argue a case with your neighbor, do not reveal the secret of another person,</VERS>\n\t\t\t<VERS vnumber=\"10\"> lest the one who hears it put you to shame and your infamy will never go away.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Like apples of gold in settings of silver, so is a word skillfully spoken.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Like an earring of gold and an ornament of fine gold, so is a wise reprover to the ear of the one who listens.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Like the cold of snow in the time of harvest, so is a faithful messenger to those who send him, for he refreshes the heart of his masters.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Like cloudy skies and wind that produce no rain, so is the one who boasts of a gift not given.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Through patience a ruler can be persuaded, and a soft tongue can break a bone.</VERS>\n\t\t\t<VERS vnumber=\"16\"> When you find honey, eat only what is sufficient for you, lest you become stuffed with it and vomit it up.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Don't set foot too frequently in your neighbor's house, lest he become weary of you and hate you.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Like a club or a sword or a sharp arrow, so is the one who testifies against his neighbor as a false witness.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Like a bad tooth or a foot out of joint, so is confidence in an unfaithful person at the time of trouble.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Like one who takes off a garment on a cold day, or like vinegar poured on soda, so is one who sings songs to a heavy heart.</VERS>\n\t\t\t<VERS vnumber=\"21\"> If your enemy is hungry, give him food to eat, and if he is thirsty, give him water to drink,</VERS>\n\t\t\t<VERS vnumber=\"22\"> for you will heap coals of fire on his head, and the LORD will reward you.</VERS>\n\t\t\t<VERS vnumber=\"23\"> The north wind brings forth rain, and a gossiping tongue brings forth an angry look.</VERS>\n\t\t\t<VERS vnumber=\"24\"> It is better to live on a corner of the housetop than in a house in company with a quarrelsome wife.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Like cold water to a weary person, so is good news from a distant land.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Like a muddied spring and a polluted well, so is a righteous person who gives way before the wicked.</VERS>\n\t\t\t<VERS vnumber=\"27\"> It is not good to eat too much honey, nor is it honorable for people to seek their own glory.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Like a city that is broken down and without a wall, so is a person who cannot control his temper.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"26\">\n\t\t\t<VERS vnumber=\"1\"> Like snow in summer or rain in harvest, so honor is not fitting for a fool.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Like a fluttering bird or like a flying swallow, so a curse without cause does not come to rest.</VERS>\n\t\t\t<VERS vnumber=\"3\"> A whip for the horse and a bridle for the donkey, and a rod for the backs of fools!</VERS>\n\t\t\t<VERS vnumber=\"4\"> Do not answer a fool according to his folly, lest you yourself also be like him.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Answer a fool according to his folly, lest he be wise in his own estimation.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Like cutting off the feet or drinking violence, so is sending a message by the hand of a fool.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Like legs that hang limp from the lame, so is a proverb in the mouth of fools.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Like tying a stone in a sling, so is giving honor to a fool.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Like a thorn that goes into the hand of a drunkard, so is a proverb in the mouth of a fool.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Like an archer who wounds at random, so is the one who hires a fool or hires any passer-by.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Like a dog that returns to its vomit, so a fool repeats his folly.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Do you see a man wise in his own eyes? There is more hope for a fool than for him.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The sluggard says, \"There is a lion in the road! A lion in the streets!\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> Like a door that turns on its hinges, so a sluggard turns on his bed.</VERS>\n\t\t\t<VERS vnumber=\"15\"> The sluggard plunges his hand in the dish; he is too lazy to bring it back to his mouth.</VERS>\n\t\t\t<VERS vnumber=\"16\"> The sluggard is wiser in his own estimation than seven people who respond with good sense.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Like one who grabs a wild dog by the ears, so is the person passing by who becomes furious over a quarrel not his own.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Like a madman who shoots firebrands and deadly arrows,</VERS>\n\t\t\t<VERS vnumber=\"19\"> so is a person who deceives his neighbor, and says, \"Was I not only joking?\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> Where there is no wood, a fire goes out, and where there is no gossip, contention ceases.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Like charcoal is to burning coals, and wood to fire, so is a contentious person to kindle strife.</VERS>\n\t\t\t<VERS vnumber=\"22\"> The words of a gossip are like delicious morsels; they go down into a person's innermost being.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Like a coating of glaze over earthenware are fervent lips with an evil heart.</VERS>\n\t\t\t<VERS vnumber=\"24\"> The one who hates others disguises it with his lips, but he stores up deceit within him.</VERS>\n\t\t\t<VERS vnumber=\"25\"> When he speaks graciously, do not believe him, for there are seven abominations within him.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Though his hatred may be concealed by deceit, his evil will be uncovered in the assembly.</VERS>\n\t\t\t<VERS vnumber=\"27\"> The one who digs a pit will fall into it; the one who rolls a stone, it will come back on him.</VERS>\n\t\t\t<VERS vnumber=\"28\"> A lying tongue hates those crushed by it, and a flattering mouth works ruin.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"27\">\n\t\t\t<VERS vnumber=\"1\"> Do not boast about tomorrow; for you do not know what a day may bring forth.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Let another praise you, and not your own mouth; someone else, and not your own lips.</VERS>\n\t\t\t<VERS vnumber=\"3\"> A stone is heavy and sand is weighty, but vexation by a fool is more burdensome than the two of them.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Wrath is cruel and anger is overwhelming, but who can stand before jealousy?</VERS>\n\t\t\t<VERS vnumber=\"5\"> Better is open rebuke than hidden love.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Faithful are the wounds of a friend, but the kisses of an enemy are excessive.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The one whose appetite is satisfied loathes honey, but to the hungry mouth every bitter thing is sweet.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Like a bird that wanders from its nest, so is a person who wanders from his home.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Ointment and incense make the heart rejoice, likewise the sweetness of one's friend from sincere counsel.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Do not forsake your friend and your father's friend, and do not enter your brother's house in the day of your disaster; a neighbor nearby is better than a brother far away.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Be wise, my son, and make my heart glad, so that I may answer anyone who taunts me.</VERS>\n\t\t\t<VERS vnumber=\"12\"> A shrewd person sees danger and hides himself, but the naive keep right on going and suffer for it.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Take a man's garment when he has given security for a stranger, and when he gives surety for a stranger, hold him in pledge.</VERS>\n\t\t\t<VERS vnumber=\"14\"> If someone blesses his neighbor with a loud voice early in the morning, it will be counted as a curse to him.</VERS>\n\t\t\t<VERS vnumber=\"15\"> A continual dripping on a rainy day and a contentious wife are alike.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Whoever hides her hides the wind or grasps oil with his right hand.</VERS>\n\t\t\t<VERS vnumber=\"17\"> As iron sharpens iron, so a person sharpens his friend.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The one who tends a fig tree will eat its fruit, and whoever takes care of his master will be honored.</VERS>\n\t\t\t<VERS vnumber=\"19\"> As in water the face is reflected as a face, so a person's heart reflects the person.</VERS>\n\t\t\t<VERS vnumber=\"20\"> As Death and Destruction are never satisfied, so the eyes of a person are never satisfied.</VERS>\n\t\t\t<VERS vnumber=\"21\"> As the crucible is for silver and the furnace is for gold, so a person is proved by the praise he receives.</VERS>\n\t\t\t<VERS vnumber=\"22\"> If you should pound the fool in the mortar among the grain with the pestle, his foolishness would not depart from him.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Pay careful attention to the condition of your flocks, give careful attention to your herds,</VERS>\n\t\t\t<VERS vnumber=\"24\"> for riches do not last forever, nor does a crown last from generation to generation.</VERS>\n\t\t\t<VERS vnumber=\"25\"> When the hay is removed and new grass appears, and the grass from the hills is gathered in,</VERS>\n\t\t\t<VERS vnumber=\"26\"> the lambs will be for your clothing, and the goats will be for the price of a field.</VERS>\n\t\t\t<VERS vnumber=\"27\"> And there will be enough goat's milk for your food, for the food of your household, and for the sustenance of your servant girls.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"28\">\n\t\t\t<VERS vnumber=\"1\"> The wicked person flees when there is no one pursuing, but the righteous person is as confident as a lion.</VERS>\n\t\t\t<VERS vnumber=\"2\"> When a country is rebellious it has many princes, but by someone who is discerning and knowledgeable order is maintained.</VERS>\n\t\t\t<VERS vnumber=\"3\"> A poor person who oppresses the weak is like a driving rain without food.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Those who forsake the law praise the wicked, but those who keep the law contend with them.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Evil people do not understand justice, but those who seek the LORD understand it all.</VERS>\n\t\t\t<VERS vnumber=\"6\"> A poor person who walks in his integrity is better than one who is perverse in his ways even though he is rich.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The one who keeps the law is a discerning child, but a companion of gluttons brings shame to his parents.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The one who increases his wealth by increasing interest gathers it for someone who is gracious to the needy.</VERS>\n\t\t\t<VERS vnumber=\"9\"> The one who turns away his ear from hearing the law, even his prayer is an abomination.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The one who leads the upright astray in an evil way will himself fall into his own pit, but the blameless will inherit what is good.</VERS>\n\t\t\t<VERS vnumber=\"11\"> A rich person is wise in his own eyes, but a discerning poor person can evaluate him properly.</VERS>\n\t\t\t<VERS vnumber=\"12\"> When the righteous rejoice, great is the glory, but when the wicked rise to power, people are sought out.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The one who covers his transgressions will not prosper, but whoever confesses them and forsakes them will find mercy.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Blessed is the one who is always cautious, but whoever hardens his heart will fall into evil.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Like a roaring lion or a roving bear, so is a wicked ruler over a poor people.</VERS>\n\t\t\t<VERS vnumber=\"16\"> The prince who is a great oppressor lacks wisdom, but the one who hates unjust gain will prolong his days.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The one who is tormented by the murder of another will flee to the pit; let no one support him.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The one who walks blamelessly will be delivered, but whoever is perverse in his ways will fall at once.</VERS>\n\t\t\t<VERS vnumber=\"19\"> The one who works his land will be satisfied with food, but whoever chases daydreams will have his fill of poverty.</VERS>\n\t\t\t<VERS vnumber=\"20\"> A faithful person will have an abundance of blessings, but the one who hastens to gain riches will not go unpunished.</VERS>\n\t\t\t<VERS vnumber=\"21\"> To show partiality is terrible, for a person will transgress over the smallest piece of bread.</VERS>\n\t\t\t<VERS vnumber=\"22\"> The stingy person hastens after riches and does not know that poverty will overtake him.</VERS>\n\t\t\t<VERS vnumber=\"23\"> The one who reproves another will in the end find more favor than the one who flatters with the tongue.</VERS>\n\t\t\t<VERS vnumber=\"24\"> The one who robs his father and mother and says, \"There is no transgression,\" is a companion to the one who destroys.</VERS>\n\t\t\t<VERS vnumber=\"25\"> The greedy person stirs up dissension, but the one who trusts in the LORD will prosper.</VERS>\n\t\t\t<VERS vnumber=\"26\"> The one who trusts in his own heart is a fool, but the one who walks in wisdom will escape.</VERS>\n\t\t\t<VERS vnumber=\"27\"> The one who gives to the poor will not lack, but whoever shuts his eyes to them will receive many curses.</VERS>\n\t\t\t<VERS vnumber=\"28\"> When the wicked gain control, people hide themselves, but when they perish, the righteous increase.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"29\">\n\t\t\t<VERS vnumber=\"1\"> The one who stiffens his neck after numerous rebukes will suddenly be destroyed without remedy.</VERS>\n\t\t\t<VERS vnumber=\"2\"> When the righteous become numerous, the people rejoice; when the wicked rule, the people groan.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The man who loves wisdom brings joy to his father, but whoever associates with prostitutes wastes his wealth.</VERS>\n\t\t\t<VERS vnumber=\"4\"> A king brings stability to a land by justice, but one who exacts tribute tears it down.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The one who flatters his neighbor spreads a net for his steps.</VERS>\n\t\t\t<VERS vnumber=\"6\"> In the transgression of an evil person there is a snare, but a righteous person can sing and rejoice.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The righteous person cares for the legal rights of the poor; the wicked does not understand such knowledge.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Scornful people inflame a city, but those who are wise turn away wrath.</VERS>\n\t\t\t<VERS vnumber=\"9\"> If a wise person goes to court with a foolish person, there is no peace whether he is angry or laughs.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Bloodthirsty people hate someone with integrity; as for the upright, they seek his life.</VERS>\n\t\t\t<VERS vnumber=\"11\"> A fool lets fly with all his temper, but a wise person keeps it back.</VERS>\n\t\t\t<VERS vnumber=\"12\"> If a ruler listens to lies, all his ministers will be wicked.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The poor person and the oppressor have this in common: the LORD gives light to the eyes of them both.</VERS>\n\t\t\t<VERS vnumber=\"14\"> If a king judges the poor in truth, his throne will be established forever.</VERS>\n\t\t\t<VERS vnumber=\"15\"> A rod and reproof impart wisdom, but a child who is unrestrained brings shame to his mother.</VERS>\n\t\t\t<VERS vnumber=\"16\"> When the wicked increase, transgression increases, but the righteous will see their downfall.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Discipline your child, and he will give you rest; he will bring you happiness.</VERS>\n\t\t\t<VERS vnumber=\"18\"> When there is no prophetic vision the people cast off restraint, but the one who keeps the law, blessed is he!</VERS>\n\t\t\t<VERS vnumber=\"19\"> A servant cannot be corrected by words, for although he understands, there is no answer.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Do you see someone who is hasty in his words? There is more hope for a fool than for him.</VERS>\n\t\t\t<VERS vnumber=\"21\"> If someone pampers his servant from youth, he will be a weakling in the end.</VERS>\n\t\t\t<VERS vnumber=\"22\"> An angry person stirs up dissension, and a wrathful person is abounding in transgression.</VERS>\n\t\t\t<VERS vnumber=\"23\"> A person's pride will bring him low, but one who has a lowly spirit will gain honor.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Whoever shares with a thief is his own enemy; he hears the oath to testify, but does not talk.</VERS>\n\t\t\t<VERS vnumber=\"25\"> The fear of people becomes a snare, but whoever trusts in the LORD will be set on high.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Many people seek the face of a ruler, but it is from the LORD that one receives justice.</VERS>\n\t\t\t<VERS vnumber=\"27\"> An unjust person is an abomination to the righteous, and the one who lives an upright life is an abomination to the wicked.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"30\">\n\t\t\t<VERS vnumber=\"1\"> The words of Agur, the son of Jakeh; an oracle: This man says to Ithiel, to Ithiel and to Ukal:</VERS>\n\t\t\t<VERS vnumber=\"2\"> Surely I am more brutish than any other human being, and I do not have human understanding;</VERS>\n\t\t\t<VERS vnumber=\"3\"> I have not learned wisdom, nor do I have knowledge of the Holy One.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Who has ascended into heaven, and then descended? Who has gathered up the winds in his fists? Who has bound up the waters in his cloak? Who has established all the ends of the earth? What is his name, and what is his son's name?, if you know!</VERS>\n\t\t\t<VERS vnumber=\"5\"> Every word of God is purified; he is like a shield for those who take refuge in him.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Do not add to his words, lest he reprove you, and prove you to be a liar.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Two things I ask from you; do not refuse me before I die:</VERS>\n\t\t\t<VERS vnumber=\"8\"> Remove falsehood and lies far from me; do not give me poverty or riches, feed me with my allotted portion of bread,</VERS>\n\t\t\t<VERS vnumber=\"9\"> lest I become satisfied and act deceptively and say, \"Who is the LORD?\" Or lest I become poor and steal and demean the name of my God.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Do not slander a servant to his master, lest he curse you, and you are found guilty.</VERS>\n\t\t\t<VERS vnumber=\"11\"> There is a generation who curse their fathers and do not bless their mothers.</VERS>\n\t\t\t<VERS vnumber=\"12\"> There is a generation who are pure in their own eyes and yet are not washed from their filthiness.</VERS>\n\t\t\t<VERS vnumber=\"13\"> There is a generation whose eyes are so lofty, and whose eyelids are lifted up disdainfully.</VERS>\n\t\t\t<VERS vnumber=\"14\"> There is a generation whose teeth are like swords and whose molars are like knives to devour the poor from the earth and the needy from among the human race.</VERS>\n\t\t\t<VERS vnumber=\"15\"> The leech has two daughters: \"Give! Give!\" There are three things that are never satisfied, four that never say, \"Enough\",</VERS>\n\t\t\t<VERS vnumber=\"16\"> the grave, the barren womb, land that is not satisfied with water, and fire that never says, \"Enough!\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> The eye that mocks at a father and despises obeying a mother, the ravens of the valley will peck it out and the young vultures will eat it.</VERS>\n\t\t\t<VERS vnumber=\"18\"> There are three things that are too wonderful for me, four that I do not understand:</VERS>\n\t\t\t<VERS vnumber=\"19\"> the way of an eagle in the sky, the way of a snake on a rock, the way of a ship in the sea, and the way of a man with a woman.</VERS>\n\t\t\t<VERS vnumber=\"20\"> This is the way of an adulterous woman: she eats and wipes her mouth and says, \"I have not done wrong.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> Under three things the earth trembles, and under four things it cannot bear up:</VERS>\n\t\t\t<VERS vnumber=\"22\"> under a servant who becomes king, under a fool who is stuffed with food,</VERS>\n\t\t\t<VERS vnumber=\"23\"> under an unloved woman who is married, and under a female servant who dispossesses her mistress.</VERS>\n\t\t\t<VERS vnumber=\"24\"> There are four things on earth that are small, but they are exceedingly wise:</VERS>\n\t\t\t<VERS vnumber=\"25\"> ants are creatures with little strength, but they prepare their food in the summer;</VERS>\n\t\t\t<VERS vnumber=\"26\"> rock badgers are creatures with little power, but they make their homes in the crags;</VERS>\n\t\t\t<VERS vnumber=\"27\"> locusts have no king, but they all go forward by ranks;</VERS>\n\t\t\t<VERS vnumber=\"28\"> a lizard you can catch with the hand, but it gets into the palaces of the king.</VERS>\n\t\t\t<VERS vnumber=\"29\"> There are three things that are magnificent in their step, four things that move about magnificently:</VERS>\n\t\t\t<VERS vnumber=\"30\"> a lion, mightiest of the beasts, who does not retreat from anything;</VERS>\n\t\t\t<VERS vnumber=\"31\"> a strutting rooster, a male goat, and a king with his army around him.</VERS>\n\t\t\t<VERS vnumber=\"32\"> If you have done foolishly by exalting yourself or if you have planned evil, put your hand over your mouth!</VERS>\n\t\t\t<VERS vnumber=\"33\"> For as the churning of milk produces butter and as punching the nose produces blood, so stirring up anger produces strife.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"31\">\n\t\t\t<VERS vnumber=\"1\"> The words of King Lemuel, an oracle that his mother taught him:</VERS>\n\t\t\t<VERS vnumber=\"2\"> O my son, O son of my womb, O son of my vows,</VERS>\n\t\t\t<VERS vnumber=\"3\"> Do not give your strength to women, nor your ways to that which ruins kings.</VERS>\n\t\t\t<VERS vnumber=\"4\"> It is not for kings, O Lemuel, it is not for kings to drink wine, or for rulers to crave strong drink,</VERS>\n\t\t\t<VERS vnumber=\"5\"> lest they drink and forget what is decreed, and remove from all the poor their legal rights.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Give strong drink to the one who is perishing, and wine to those who are bitterly distressed;</VERS>\n\t\t\t<VERS vnumber=\"7\"> let them drink and forget their poverty, and remember their misery no more.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Open your mouth on behalf of those unable to speak, for the legal rights of all the dying.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Open your mouth, judge in righteousness, and plead the cause of the poor and needy.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Who can find a wife of noble character? For her value is far more than rubies.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The heart of her husband has confidence in her, and he has no lack of gain.</VERS>\n\t\t\t<VERS vnumber=\"12\"> She brings him good and not evil all the days of her life.</VERS>\n\t\t\t<VERS vnumber=\"13\"> She obtains wool and flax, and she is pleased to work with her hands.</VERS>\n\t\t\t<VERS vnumber=\"14\"> She is like the merchant ships; she brings her food from afar.</VERS>\n\t\t\t<VERS vnumber=\"15\"> She also gets up while it is still night, and provides food for her household and a portion to her female servants.</VERS>\n\t\t\t<VERS vnumber=\"16\"> She considers a field and buys it; from her own income she plants a vineyard.</VERS>\n\t\t\t<VERS vnumber=\"17\"> She begins her work vigorously, and she strengthens her arms.</VERS>\n\t\t\t<VERS vnumber=\"18\"> She knows that her merchandise is good, and her lamp does not go out in the night.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Her hands take hold of the distaff, and her hands grasp the spindle.</VERS>\n\t\t\t<VERS vnumber=\"20\"> She extends her hand to the poor, and reaches out her hand to the needy.</VERS>\n\t\t\t<VERS vnumber=\"21\"> She is not afraid of the snow for her household, for all of her household are clothed with scarlet.</VERS>\n\t\t\t<VERS vnumber=\"22\"> She makes for herself coverlets; her clothing is fine linen and purple.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Her husband is well-known in the city gate when he sits with the elders of the land.</VERS>\n\t\t\t<VERS vnumber=\"24\"> She makes linen garments and sells them, and supplies the merchants with sashes.</VERS>\n\t\t\t<VERS vnumber=\"25\"> She is clothed with strength and honor, and she can laugh at the time to come.</VERS>\n\t\t\t<VERS vnumber=\"26\"> She opens her mouth with wisdom, and loving instruction is on her tongue.</VERS>\n\t\t\t<VERS vnumber=\"27\"> She watches over the ways of her household, and does not eat the bread of idleness.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Her children rise up and call her blessed, her husband also praises her:</VERS>\n\t\t\t<VERS vnumber=\"29\"> \"Many daughters have done valiantly, but you surpass them all!\"</VERS>\n\t\t\t<VERS vnumber=\"30\"> Charm is deceitful and beauty is fleeting, but a woman who fears the LORD will be praised.</VERS>\n\t\t\t<VERS vnumber=\"31\"> Give her credit for what she has accomplished, and let her works praise her in the city gates.</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"21\" bname=\"Ecclesiastes\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> The words of the Teacher, the son of David, king in Jerusalem:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Futile! Futile!\" laments the Teacher, \"Absolutely futile! Everything is futile!\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> What benefit do people get from all the effort which they expend on earth?</VERS>\n\t\t\t<VERS vnumber=\"4\"> A generation comes and a generation goes, but the earth remains the same through the ages.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The sun rises and the sun sets; it hurries away to a place from which it rises again.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The wind goes to the south and circles around to the north; round and round the wind goes and on its rounds it returns.</VERS>\n\t\t\t<VERS vnumber=\"7\"> All the streams flow into the sea, but the sea is not full, and to the place where the streams flow, there they will flow again.</VERS>\n\t\t\t<VERS vnumber=\"8\"> All this monotony is tiresome; no one can bear to describe it: The eye is never satisfied with seeing, nor is the ear ever content with hearing.</VERS>\n\t\t\t<VERS vnumber=\"9\"> What exists now is what will be, and what has been done is what will be done; there is nothing truly new on earth.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Is there anything about which someone can say, \"Look at this! It is new!\"? It was already done long ago, before our time.</VERS>\n\t\t\t<VERS vnumber=\"11\"> No one remembers the former events, nor will anyone remember the events that are yet to happen; they will not be remembered by the future generations.</VERS>\n\t\t\t<VERS vnumber=\"12\"> I, the Teacher, have been king over Israel in Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"13\"> I decided to carefully and thoroughly examine all that has been accomplished on earth. I concluded: God has given people a burdensome task that keeps them occupied.</VERS>\n\t\t\t<VERS vnumber=\"14\"> I reflected on everything that is accomplished by man on earth, and I concluded: Everything he has accomplished is futile, like chasing the wind!</VERS>\n\t\t\t<VERS vnumber=\"15\"> What is bent cannot be straightened, and what is missing cannot be supplied.</VERS>\n\t\t\t<VERS vnumber=\"16\"> I thought to myself, \"I have become much wiser than any of my predecessors who ruled over Jerusalem; I have acquired much wisdom and knowledge.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> So I decided to discern the benefit of wisdom and knowledge over foolish behavior and ideas; however, I concluded that even this endeavor is like trying to chase the wind!</VERS>\n\t\t\t<VERS vnumber=\"18\"> For with great wisdom comes great frustration; whoever increases his knowledge merely increases his heartache.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> I thought to myself, \"Come now, I will try self-indulgent pleasure to see if it is worthwhile.\" But I found that it also is futile.</VERS>\n\t\t\t<VERS vnumber=\"2\"> I said of partying, \"It is folly,\" and of self-indulgent pleasure, \"It accomplishes nothing!\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> I thought deeply about the effects of indulging myself with wine (all the while my mind was guiding me with wisdom) and the effects of behaving foolishly, so that I might discover what is profitable for people to do on earth during the few days of their lives.</VERS>\n\t\t\t<VERS vnumber=\"4\"> I increased my possessions: I built houses for myself; I planted vineyards for myself.</VERS>\n\t\t\t<VERS vnumber=\"5\"> I designed royal gardens and parks for myself, and I planted all kinds of fruit trees in them.</VERS>\n\t\t\t<VERS vnumber=\"6\"> I constructed pools of water for myself, to irrigate my grove of flourishing trees.</VERS>\n\t\t\t<VERS vnumber=\"7\"> I purchased male and female slaves, and I owned slaves who were born in my house; I also possessed more livestock, both herds and flocks, than any of my predecessors in Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"8\"> I also amassed silver and gold for myself, as well as valuable treasures taken from kingdoms and provinces. I acquired male singers and female singers for myself, and what gives a man sensual delight, a harem of beautiful concubines!</VERS>\n\t\t\t<VERS vnumber=\"9\"> So I was far wealthier than all my predecessors in Jerusalem, yet I maintained my objectivity:</VERS>\n\t\t\t<VERS vnumber=\"10\"> I did not restrain myself from getting whatever I wanted; I did not deny myself anything that would bring me pleasure. So all my accomplishments gave me joy; this was my reward for all my effort.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Yet when I reflected on everything I had accomplished and on all the effort that I had expended to accomplish it, I concluded: \"All these achievements and possessions are ultimately profitless, like chasing the wind! There is nothing gained from them on earth.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> Next, I decided to consider wisdom, as well as foolish behavior and ideas. For what more can the king's successor do than what the king has already done?</VERS>\n\t\t\t<VERS vnumber=\"13\"> I realized that wisdom is preferable to folly, just as light is preferable to darkness:</VERS>\n\t\t\t<VERS vnumber=\"14\"> The wise man can see where he is going, but the fool walks in darkness. Yet I also realized that the same fate happens to them both.</VERS>\n\t\t\t<VERS vnumber=\"15\"> So I thought to myself, \"The fate of the fool will happen even to me! Then what did I gain by becoming so excessively wise?\" So I lamented to myself, \"The benefits of wisdom are ultimately meaningless!\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> For the wise man, like the fool, will not be remembered for very long, because in the days to come, both will already have been forgotten. Alas, the wise man dies, just like the fool!</VERS>\n\t\t\t<VERS vnumber=\"17\"> So I loathed life because what happens on earth seems awful to me; for all the benefits of wisdom are futile, like chasing the wind.</VERS>\n\t\t\t<VERS vnumber=\"18\"> So I loathed all the fruit of my effort, for which I worked so hard on earth, because I must leave it behind in the hands of my successor.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Who knows if he will be a wise man or a fool? Yet he will be master over all the fruit of my labor for which I worked so wisely on earth! This also is futile!</VERS>\n\t\t\t<VERS vnumber=\"20\"> So I began to despair about all the fruit of my labor for which I worked so hard on earth.</VERS>\n\t\t\t<VERS vnumber=\"21\"> For a man may do his work with wisdom, knowledge, and skill; however, he must hand over the fruit of his labor as an inheritance to someone else who did not work for it. This also is futile, and an awful injustice!</VERS>\n\t\t\t<VERS vnumber=\"22\"> What does a man acquire from all his labor and from the anxiety that accompanies his toil on earth?</VERS>\n\t\t\t<VERS vnumber=\"23\"> For all day long his work produces pain and frustration, and even at night his mind cannot relax! This also is futile!</VERS>\n\t\t\t<VERS vnumber=\"24\"> There is nothing better for people than to eat and drink, and to find enjoyment in their work. I also perceived that this ability to find enjoyment comes from God.</VERS>\n\t\t\t<VERS vnumber=\"25\"> For no one can eat and drink or experience joy apart from him.</VERS>\n\t\t\t<VERS vnumber=\"26\"> For to the one who pleases him, God gives wisdom, knowledge, and joy, but to the sinner, he gives the task of amassing wealth, only to give it to the one who pleases God. This task of the wicked is futile, like chasing the wind!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> For everything there is an appointed time, and an appropriate time for every activity on earth:</VERS>\n\t\t\t<VERS vnumber=\"2\"> A time to be born, and a time to die; a time to plant, and a time to uproot what was planted;</VERS>\n\t\t\t<VERS vnumber=\"3\"> A time to kill, and a time to heal; a time to break down, and a time to build up;</VERS>\n\t\t\t<VERS vnumber=\"4\"> A time to weep, and a time to laugh; a time to mourn, and a time to dance.</VERS>\n\t\t\t<VERS vnumber=\"5\"> A time to throw away stones, and a time to gather stones; a time to embrace, and a time to refrain from embracing;</VERS>\n\t\t\t<VERS vnumber=\"6\"> A time to search, and a time to give something up as lost; a time to keep, and a time to throw away;</VERS>\n\t\t\t<VERS vnumber=\"7\"> A time to rip, and a time to sew; a time to keep silent, and a time to speak.</VERS>\n\t\t\t<VERS vnumber=\"8\"> A time to love, and a time to hate; a time for war, and a time for peace.</VERS>\n\t\t\t<VERS vnumber=\"9\"> What benefit can a worker gain from his toil?</VERS>\n\t\t\t<VERS vnumber=\"10\"> I have observed the burden that God has given to people to keep them occupied.</VERS>\n\t\t\t<VERS vnumber=\"11\"> God has made everything fit beautifully in its appropriate time, but he has also placed ignorance in the human heart so that people cannot discover what God has ordained, from the beginning to the end of their lives.</VERS>\n\t\t\t<VERS vnumber=\"12\"> I have concluded that there is nothing better for people than to be happy and to enjoy themselves as long as they live,</VERS>\n\t\t\t<VERS vnumber=\"13\"> and also that everyone should eat and drink, and find enjoyment in all his toil, for these things are a gift from God.</VERS>\n\t\t\t<VERS vnumber=\"14\"> I also know that whatever God does will endure forever; nothing can be added to it, and nothing taken away from it. God has made it this way, so that men will fear him.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Whatever exists now has already been, and whatever will be has already been; for God will seek to do again what has occurred in the past.</VERS>\n\t\t\t<VERS vnumber=\"16\"> I saw something else on earth: In the place of justice, there was wickedness, and in the place of fairness, there was wickedness.</VERS>\n\t\t\t<VERS vnumber=\"17\"> I thought to myself, \"God will judge both the righteous and the wicked; for there is an appropriate time for every activity, and there is a time of judgment for every deed.</VERS>\n\t\t\t<VERS vnumber=\"18\"> I also thought to myself, \"It is for the sake of people, so God can clearly show them that they are like animals.</VERS>\n\t\t\t<VERS vnumber=\"19\"> For the fate of humans and the fate of animals are the same: As one dies, so dies the other; both have the same breath. There is no advantage for humans over animals, for both are fleeting.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Both go to the same place, both come from the dust, and to dust both return.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Who really knows if the human spirit ascends upward, and the animal's spirit descends into the earth?</VERS>\n\t\t\t<VERS vnumber=\"22\"> So I perceived there is nothing better than for people to enjoy their work, because that is their reward; for who can show them what the future holds?</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\"> So I again considered all the oppression that continually occurs on earth. This is what I saw: The oppressed were in tears, but no one was comforting them; no one delivers them from the power of their oppressors.</VERS>\n\t\t\t<VERS vnumber=\"2\"> So I considered those who are dead and gone more fortunate than those who are still alive.</VERS>\n\t\t\t<VERS vnumber=\"3\"> But better than both is the one who has not been born and has not seen the evil things that are done on earth.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Then I considered all the skillful work that is done: Surely it is nothing more than competition between one person and another. This also is profitless, like chasing the wind.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The fool folds his hands and does no work, so he has nothing to eat but his own flesh.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Better is one handful with some rest than two hands full of toil and chasing the wind.</VERS>\n\t\t\t<VERS vnumber=\"7\"> So I again considered another futile thing on earth:</VERS>\n\t\t\t<VERS vnumber=\"8\"> A man who is all alone with no companion, he has no children nor siblings; yet there is no end to all his toil, and he is never satisfied with riches. He laments, \"For whom am I toiling and depriving myself of pleasure?\" This also is futile and a burdensome task!</VERS>\n\t\t\t<VERS vnumber=\"9\"> Two people are better than one, because they can reap more benefit from their labor.</VERS>\n\t\t\t<VERS vnumber=\"10\"> For if they fall, one will help his companion up, but pity the person who falls down and has no one to help him up.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Furthermore, if two lie down together, they can keep each other warm, but how can one person keep warm by himself?</VERS>\n\t\t\t<VERS vnumber=\"12\"> Although an assailant may overpower one person, two can withstand him. Moreover, a three-stranded cord is not quickly broken.</VERS>\n\t\t\t<VERS vnumber=\"13\"> A poor but wise youth is better than an old and foolish king who no longer knows how to receive advice.</VERS>\n\t\t\t<VERS vnumber=\"14\"> For he came out of prison to become king, even though he had been born poor in what would become his kingdom.</VERS>\n\t\t\t<VERS vnumber=\"15\"> I considered all the living who walk on earth, as well as the successor who would arise in his place.</VERS>\n\t\t\t<VERS vnumber=\"16\"> There is no end to all the people nor to the past generations, yet future generations will not rejoice in him. This also is profitless and like chasing the wind.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"5\">\n\t\t\t<VERS vnumber=\"1\">  Be careful what you do when you go to the temple of God; draw near to listen rather than to offer a sacrifice like fools, for they do not realize that they are doing wrong.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Do not be rash with your mouth or hasty in your heart to bring up a matter before God, for God is in heaven and you are on earth! Therefore, let your words be few.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Just as dreams come when there are many cares, so the rash vow of a fool occurs when there are many words.</VERS>\n\t\t\t<VERS vnumber=\"4\"> When you make a vow to God, do not delay in paying it. For God takes no pleasure in fools: Pay what you vow!</VERS>\n\t\t\t<VERS vnumber=\"5\"> It is better for you not to vow than to vow and not pay it.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Do not let your mouth cause you to sin, and do not tell the priest, \"It was a mistake!\" Why make God angry at you so that he would destroy the work of your hands?\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> Just as there is futility in many dreams, so also in many words. Therefore, fear God!</VERS>\n\t\t\t<VERS vnumber=\"8\"> If you see the extortion of the poor, or the perversion of justice and fairness in the government, do not be astonished by the matter. For the high official is watched by a higher official, and there are higher ones over them!</VERS>\n\t\t\t<VERS vnumber=\"9\"> The produce of the land is seized by all of them, even the king is served by the fields.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The one who loves money will never be satisfied with money, he who loves wealth will never be satisfied with his income. This also is futile.</VERS>\n\t\t\t<VERS vnumber=\"11\"> When someone's prosperity increases, those who consume it also increase; so what does its owner gain, except that he gets to see it with his eyes?</VERS>\n\t\t\t<VERS vnumber=\"12\"> The sleep of the laborer is pleasant, whether he eats little or much, but the wealth of the rich will not allow him to sleep.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Here is a misfortune on earth that I have seen: Wealth hoarded by its owner to his own misery.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Then that wealth was lost through bad luck; although he fathered a son, he has nothing left to give him.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Just as he came forth from his mother's womb, naked will he return as he came, and he will take nothing in his hand that he may carry away from his toil.</VERS>\n\t\t\t<VERS vnumber=\"16\"> This is another misfortune: Just as he came, so will he go. What did he gain from toiling for the wind?</VERS>\n\t\t\t<VERS vnumber=\"17\"> Surely, he ate in darkness every day of his life, and he suffered greatly with sickness and anger.</VERS>\n\t\t\t<VERS vnumber=\"18\"> I have seen personally what is the only beneficial and appropriate course of action for people: to eat and drink, and find enjoyment in all their hard work on earth during the few days of their life which God has given them, for this is their reward.</VERS>\n\t\t\t<VERS vnumber=\"19\"> To every man whom God has given wealth, and possessions, he has also given him the ability to eat from them, to receive his reward and to find enjoyment in his toil; these things are the gift of God.</VERS>\n\t\t\t<VERS vnumber=\"20\"> For he does not think much about the fleeting days of his life because God keeps him preoccupied with the joy he derives from his activity.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"6\">\n\t\t\t<VERS vnumber=\"1\"> Here is another misfortune that I have seen on earth, and it weighs heavily on people:</VERS>\n\t\t\t<VERS vnumber=\"2\"> God gives a man riches, property, and wealth so that he lacks nothing that his heart desires, yet God does not enable him to enjoy the fruit of his labor, instead, someone else enjoys it! This is fruitless and a grave misfortune.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Even if a man fathers a hundred children and lives many years, even if he lives a long, long time, but cannot enjoy his prosperity, even if he were to live forever, I would say, \"A stillborn child is better off than he is!\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> Though the stillborn child came into the world for no reason and departed into darkness, though its name is shrouded in darkness,</VERS>\n\t\t\t<VERS vnumber=\"5\"> though it never saw the light of day nor knew anything, yet it has more rest than that man,</VERS>\n\t\t\t<VERS vnumber=\"6\"> if he should live a thousand years twice, yet does not enjoy his prosperity. For both of them die!</VERS>\n\t\t\t<VERS vnumber=\"7\"> All of man's labor is for nothing more than to fill his stomach, yet his appetite is never satisfied!</VERS>\n\t\t\t<VERS vnumber=\"8\"> So what advantage does a wise man have over a fool? And what advantage does a pauper gain by knowing how to survive?</VERS>\n\t\t\t<VERS vnumber=\"9\"> It is better to be content with what the eyes can see than for one's heart always to crave more. This continual longing is futile, like chasing the wind.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Whatever has happened was foreordained, and what happens to a person was also foreknown. It is useless for him to argue with God about his fate because God is more powerful than he is.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The more one argues with words, the less he accomplishes. How does that benefit him?</VERS>\n\t\t\t<VERS vnumber=\"12\"> For no one knows what is best for a person during his life, during the few days of his fleeting life, for they pass away like a shadow. Nor can anyone tell him what the future will hold for him on earth.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"7\">\n\t\t\t<VERS vnumber=\"1\"> A good reputation is better than precious perfume; likewise, the day of one's death is better than the day of one's birth.</VERS>\n\t\t\t<VERS vnumber=\"2\"> It is better to go to a funeral than a feast. For death is the destiny of every person, and the living should take this to heart.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Sorrow is better than laughter, because sober reflection is good for the heart.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The heart of the wise is in the house of mourning, but the heart of fools is in the house of merrymaking.</VERS>\n\t\t\t<VERS vnumber=\"5\"> It is better for a person to receive a rebuke from those who are wise than to listen to the song of fools.</VERS>\n\t\t\t<VERS vnumber=\"6\"> For like the crackling of quick-burning thorns under a cooking pot, so is the laughter of the fool. This kind of folly also is useless.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Surely oppression can turn a wise person into a fool; likewise, a bribe corrupts the heart.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The end of a matter is better than its beginning; likewise, patience is better than pride.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Do not let yourself be quickly provoked, for anger resides in the lap of fools.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Do not say, \"Why were the old days better than these days?\" for it is not wise to ask that.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Wisdom, like an inheritance, is a good thing; it benefits those who see the light of day.</VERS>\n\t\t\t<VERS vnumber=\"12\"> For wisdom provides protection, just as money provides protection. But the advantage of knowledge is this: Wisdom preserves the life of its owner.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Consider the work of God: For who can make straight what he has bent?</VERS>\n\t\t\t<VERS vnumber=\"14\"> In times of prosperity be joyful, but in times of adversity consider this: God has made one as well as the other, so that no one can discover what the future holds.</VERS>\n\t\t\t<VERS vnumber=\"15\"> During the days of my fleeting life I have seen both of these things: Sometimes a righteous person dies prematurely in spite of his righteousness, and sometimes a wicked person lives long in spite of his evil deeds.</VERS>\n\t\t\t<VERS vnumber=\"16\"> So do not be excessively righteous or excessively wise; otherwise you might be disappointed.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Do not be excessively wicked and do not be a fool; otherwise you might die before your time.</VERS>\n\t\t\t<VERS vnumber=\"18\"> It is best to take hold of one warning without letting go of the other warning; for the one who fears God will follow both warnings.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Wisdom gives a wise person more protection than ten rulers in a city.</VERS>\n\t\t\t<VERS vnumber=\"20\"> For there is not one truly righteous person on the earth who continually does good and never sins.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Also, do not pay attention to everything that people say; otherwise, you might even hear your servant cursing you.</VERS>\n\t\t\t<VERS vnumber=\"22\"> For you know in your own heart that you also have cursed others many times.</VERS>\n\t\t\t<VERS vnumber=\"23\"> I have examined all this by wisdom; I said, \"I am determined to comprehend this\", but it was beyond my grasp.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Whatever has happened is beyond human understanding; it is far deeper than anyone can fathom.</VERS>\n\t\t\t<VERS vnumber=\"25\"> I tried to understand, examine, and comprehend the role of wisdom in the scheme of things, and to understand the stupidity of wickedness and the insanity of folly.</VERS>\n\t\t\t<VERS vnumber=\"26\"> I discovered this: More bitter than death is the kind of woman who is like a hunter's snare; her heart is like a hunter's net and her hands are like prison chains. The man who pleases God escapes her, but the sinner is captured by her.</VERS>\n\t\t\t<VERS vnumber=\"27\"> The Teacher says: I discovered this while trying to discover the scheme of things, item by item.</VERS>\n\t\t\t<VERS vnumber=\"28\"> What I have continually sought, I have not found; I have found only one upright man among a thousand, but I have not found one upright woman among all of them.</VERS>\n\t\t\t<VERS vnumber=\"29\"> This alone have I discovered: God made humankind upright, but they have sought many evil schemes.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"8\">\n\t\t\t<VERS vnumber=\"1\"> Who is a wise person? Who knows the solution to a problem? A person's wisdom brightens his appearance, and softens his harsh countenance.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Obey the king's command, because you took an oath before God to be loyal to him.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Do not rush out of the king's presence in haste, do not delay when the matter is unpleasant, for he can do whatever he pleases.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Surely the king's authority is absolute; no one can say to him, \"What are you doing?\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> Whoever obeys his command will not experience harm, and a wise person knows the proper time and procedure.</VERS>\n\t\t\t<VERS vnumber=\"6\"> For there is a proper time and procedure for every matter, for the oppression of the king is severe upon his victim.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Surely no one knows the future, and no one can tell another person what will happen.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Just as no one has power over the wind to restrain it, so no one has power over the day of his death. Just as no one can be discharged during the battle, so wickedness cannot rescue the wicked.</VERS>\n\t\t\t<VERS vnumber=\"9\"> While applying my mind to everything that happens in this world, I have seen all this: Sometimes one person dominates other people to their harm.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Not only that, but I have seen the wicked approaching and entering the temple, and as they left the holy temple, they boasted in the city that they had done so. This also is an enigma.</VERS>\n\t\t\t<VERS vnumber=\"11\"> When a sentence is not executed at once against a crime, the human heart is encouraged to do evil.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Even though a sinner might commit a hundred crimes and still live a long time, yet I know that it will go well with God-fearing people, for they stand in fear before him.</VERS>\n\t\t\t<VERS vnumber=\"13\"> But it will not go well with the wicked, nor will they prolong their days like a shadow, because they do not stand in fear before God.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Here is another enigma that occurs on earth: Sometimes there are righteous people who get what the wicked deserve, and sometimes there are wicked people who get what the righteous deserve. I said, \"This also is an enigma.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> So I recommend the enjoyment of life, for there is nothing better on earth for a person to do except to eat, drink, and enjoy life. So joy will accompany him in his toil during the days of his life which God gives him on earth.</VERS>\n\t\t\t<VERS vnumber=\"16\"> When I tried to gain wisdom and to observe the activity on earth, even though it prevents anyone from sleeping day or night,</VERS>\n\t\t\t<VERS vnumber=\"17\"> then I discerned all that God has done: No one really comprehends what happens on earth. Despite all human efforts to discover it, no one can ever grasp it. Even if a wise person claimed that he understood, he would not really comprehend it.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"9\">\n\t\t\t<VERS vnumber=\"1\"> So I reflected on all this, attempting to clear it all up. I concluded that the righteous and the wise, as well as their works, are in the hand of God; whether a person will be loved or hated, no one knows what lies ahead.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Everyone shares the same fate, the righteous and the wicked, the good and the bad, the ceremonially clean and unclean, those who offer sacrifices and those who do not. What happens to the good person, also happens to the sinner; what happens to those who make vows, also happens to those who are afraid to make vows.</VERS>\n\t\t\t<VERS vnumber=\"3\"> This is the unfortunate fact about everything that happens on earth: the same fate awaits everyone. In addition to this, the hearts of all people are full of evil, and there is folly in their hearts during their lives, then they die.</VERS>\n\t\t\t<VERS vnumber=\"4\"> But whoever is among the living has hope; a live dog is better than a dead lion.</VERS>\n\t\t\t<VERS vnumber=\"5\"> For the living know that they will die, but the dead do not know anything; they have no further reward, and even the memory of them disappears.</VERS>\n\t\t\t<VERS vnumber=\"6\"> What they loved, as well as what they hated and envied, perished long ago, and they no longer have a part in anything that happens on earth.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Go, eat your food with joy, and drink your wine with a happy heart, because God has already approved your works.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Let your clothes always be white, and do not spare precious ointment on your head.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Enjoy life with your beloved wife during all the days of your fleeting life that God has given you on earth during all your fleeting days; for that is your reward in life and in your burdensome work on earth.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Whatever you find to do with your hands, do it with all your might, because there is neither work nor planning nor knowledge nor wisdom in the grave, the place where you will eventually go.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Again, I observed this on the earth: the race is not always won by the swiftest, the battle is not always won by the strongest; prosperity does not always belong to those who are the wisest, wealth does not always belong to those who are the most discerning, nor does success always come to those with the most knowledge, for time and chance may overcome them all.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Surely, no one knows his appointed time! Like fish that are caught in a deadly net, and like birds that are caught in a snare, just like them, all people are ensnared at an unfortunate time that falls upon them suddenly.</VERS>\n\t\t\t<VERS vnumber=\"13\"> This is what I also observed about wisdom on earth, and it is a great burden to me:</VERS>\n\t\t\t<VERS vnumber=\"14\"> There was once a small city with a few men in it, and a mighty king attacked it, besieging it and building strong siege works against it.</VERS>\n\t\t\t<VERS vnumber=\"15\"> However, a poor but wise man lived in the city, and he could have delivered the city by his wisdom, but no one listened to that poor man.</VERS>\n\t\t\t<VERS vnumber=\"16\"> So I concluded that wisdom is better than might, but a poor man's wisdom is despised; no one ever listens to his advice.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The words of the wise are heard in quiet, more than the shouting of a ruler is heard among fools.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Wisdom is better than weapons of war, but one sinner can destroy much that is good.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"10\">\n\t\t\t<VERS vnumber=\"1\"> One dead fly makes the perfumer's ointment give off a rancid stench, so a little folly can outweigh much wisdom.</VERS>\n\t\t\t<VERS vnumber=\"2\"> A wise person's good sense protects him, but a fool's lack of sense leaves him vulnerable.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Even when a fool walks along the road he lacks sense, and shows everyone what a fool he is.</VERS>\n\t\t\t<VERS vnumber=\"4\"> If the anger of the ruler flares up against you, do not resign from your position, for a calm response can undo great offenses.</VERS>\n\t\t\t<VERS vnumber=\"5\"> I have seen another misfortune on the earth: It is an error a ruler makes.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Fools are placed in many positions of authority, while wealthy men sit in lowly positions.</VERS>\n\t\t\t<VERS vnumber=\"7\"> I have seen slaves on horseback and princes walking on foot like slaves.</VERS>\n\t\t\t<VERS vnumber=\"8\"> One who digs a pit may fall into it, and one who breaks through a wall may be bitten by a snake.</VERS>\n\t\t\t<VERS vnumber=\"9\"> One who quarries stones may be injured by them; one who splits logs may be endangered by them.</VERS>\n\t\t\t<VERS vnumber=\"10\"> If an iron axhead is blunt and a workman does not sharpen its edge, he must exert a great deal of effort; so wisdom has the advantage of giving success.</VERS>\n\t\t\t<VERS vnumber=\"11\"> If the snake should bite before it is charmed, the snake charmer is in trouble.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The words of a wise person win him favor, but the words of a fool are self-destructive.</VERS>\n\t\t\t<VERS vnumber=\"13\"> At the beginning his words are foolish and at the end his talk is wicked madness,</VERS>\n\t\t\t<VERS vnumber=\"14\"> yet a fool keeps on babbling. No one knows what will happen; who can tell him what will happen in the future?</VERS>\n\t\t\t<VERS vnumber=\"15\"> The toil of a stupid fool wears him out, because he does not even know the way to the city.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Woe to you, O land, when your king is childish, and your princes feast in the morning!</VERS>\n\t\t\t<VERS vnumber=\"17\"> Blessed are you, O land, when your king is the son of nobility, and your princes feast at the proper time, with self-control and not in drunkenness.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Because of laziness the roof caves in, and because of idle hands the house leaks.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Feasts are made for laughter, and wine makes life merry, but money is the answer for everything.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Do not curse a king even in your thoughts, and do not curse the rich while in your bedroom; for a bird might report what you are thinking, or some winged creature might repeat your words.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"11\">\n\t\t\t<VERS vnumber=\"1\"> Send your grain overseas, for after many days you will get a return.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Divide your merchandise among seven or even eight investments, for you do not know what calamity may happen on earth.</VERS>\n\t\t\t<VERS vnumber=\"3\"> If the clouds are full of rain, they will empty themselves on the earth, and whether a tree falls to the south or to the north, the tree will lie wherever it falls.</VERS>\n\t\t\t<VERS vnumber=\"4\"> He who watches the wind will not sow, and he who observes the clouds will not reap.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Just as you do not know the path of the wind, or how the bones form in the womb of a pregnant woman, so you do not know the work of God who makes everything.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Sow your seed in the morning, and do not stop working until the evening; for you do not know which activity will succeed, whether this one or that one, or whether both will prosper equally.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Light is sweet, and it is pleasant for a person to see the sun.</VERS>\n\t\t\t<VERS vnumber=\"8\"> So, if a man lives many years, let him rejoice in them all, but let him remember that the days of darkness will be many, all that is about to come is obscure.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Rejoice, young man, while you are young, and let your heart cheer you in the days of your youth. Follow the impulses of your heart and the desires of your eyes, but know that God will judge your motives and actions.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Banish emotional stress from your mind. and put away pain from your body; for youth and the prime of life are fleeting.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"12\">\n\t\t\t<VERS vnumber=\"1\"> So remember your Creator in the days of your youth, before the difficult days come, and the years draw near when you will say, \"I have no pleasure in them\";</VERS>\n\t\t\t<VERS vnumber=\"2\"> before the sun and the light of the moon and the stars grow dark, and the clouds disappear after the rain;</VERS>\n\t\t\t<VERS vnumber=\"3\"> when those who keep watch over the house begin to tremble, and the virile men begin to stoop over, and the grinders begin to cease because they grow few, and those who look through the windows grow dim,</VERS>\n\t\t\t<VERS vnumber=\"4\"> and the doors along the street are shut; when the sound of the grinding mill grows low, and one is awakened by the sound of a bird, and all their songs grow faint,</VERS>\n\t\t\t<VERS vnumber=\"5\"> and they are afraid of heights and the dangers in the street; the almond blossoms grow white, and the grasshopper drags itself along, and the caper berry shrivels up, because man goes to his eternal home, and the mourners go about in the streets,</VERS>\n\t\t\t<VERS vnumber=\"6\"> before the silver cord is removed, or the golden bowl is broken, or the pitcher is shattered at the well, or the water wheel is broken at the cistern,</VERS>\n\t\t\t<VERS vnumber=\"7\"> and the dust returns to the earth as it was, and the life's breath returns to God who gave it.</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"Absolutely futile!\" laments the Teacher, \"All of these things are futile!\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> Not only was the Teacher wise, but he also taught knowledge to the people; he carefully evaluated and arranged many proverbs.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The Teacher sought to find delightful words, and to write accurately truthful sayings.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The words of the sages are like prods, and the collected sayings are like firmly fixed nails; they are given by one shepherd.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Be warned, my son, of anything in addition to them. There is no end to the making of many books, and much study is exhausting to the body.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Having heard everything, I have reached this conclusion: Fear God and keep his commandments, because this is the whole duty of man.</VERS>\n\t\t\t<VERS vnumber=\"14\"> For God will evaluate every deed, including every secret thing, whether good or evil.</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"22\" bname=\"Song of Solomon\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> Solomon's Most Excellent Love Song.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Oh, how I wish you would kiss me passionately! For your lovemaking is more delightful than wine.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The fragrance of your colognes is delightful; your name is like the finest perfume. No wonder the young women adore you!</VERS>\n\t\t\t<VERS vnumber=\"4\"> Draw me after you; let us hurry! May the king bring me into his bedroom chambers! We will rejoice and delight in you; we will praise your love more than wine. How rightly the young women adore you!</VERS>\n\t\t\t<VERS vnumber=\"5\"> I am dark but lovely, O maidens of Jerusalem, dark like the tents of Qedar, lovely like the tent curtains of Salmah.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Do not stare at me because I am dark, for the sun has burned my skin. My brothers were angry with me; they made me the keeper of the vineyards. Alas, my own vineyard I could not keep!</VERS>\n\t\t\t<VERS vnumber=\"7\"> Tell me, O you whom my heart loves, where do you pasture your sheep? Where do you rest your sheep during the midday heat? Tell me lest I wander around beside the flocks of your companions!</VERS>\n\t\t\t<VERS vnumber=\"8\"> If you do not know, O most beautiful of women, simply follow the tracks of my flock, and pasture your little lambs beside the tents of the shepherds.</VERS>\n\t\t\t<VERS vnumber=\"9\"> O my beloved, you are like a mare among Pharaoh's stallions.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Your cheeks are beautiful with ornaments; your neck is lovely with strings of jewels.</VERS>\n\t\t\t<VERS vnumber=\"11\"> We will make for you gold ornaments studded with silver.</VERS>\n\t\t\t<VERS vnumber=\"12\"> While the king was at his banqueting table, my nard gave forth its fragrance.</VERS>\n\t\t\t<VERS vnumber=\"13\"> My beloved is like a fragrant pouch of myrrh spending the night between my breasts.</VERS>\n\t\t\t<VERS vnumber=\"14\"> My beloved is like a cluster of henna blossoms in the vineyards of En-Gedi.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Oh, how beautiful you are, my beloved! Oh, how beautiful you are! Your eyes are like doves!</VERS>\n\t\t\t<VERS vnumber=\"16\"> Oh, how handsome you are, my lover! Oh, how delightful you are! The lush foliage is our canopied bed;</VERS>\n\t\t\t<VERS vnumber=\"17\"> the cedars are the beams of our bedroom chamber; the pines are the rafters of our bedroom.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> I am a meadow flower from Sharon, a lily from the valleys.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Like a lily among the thorns, so is my darling among the maidens.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Like an apple tree among the trees of the forest, so is my beloved among the young men. I delight to sit in his shade, and his fruit is sweet to my taste.</VERS>\n\t\t\t<VERS vnumber=\"4\"> He brought me into the banquet hall, and he looked at me lovingly.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Sustain me with raisin cakes, refresh me with apples, for I am faint with love. The Double Refrain: Embracing and Adjuration</VERS>\n\t\t\t<VERS vnumber=\"6\"> His left hand caresses my head, and his right hand stimulates me.</VERS>\n\t\t\t<VERS vnumber=\"7\"> I adjure you, O maidens of Jerusalem, by the gazelles and by the young does of the open fields: Do not awaken or arouse love until it pleases!</VERS>\n\t\t\t<VERS vnumber=\"8\"> Listen! My lover is approaching! Look! Here he comes, leaping over the mountains, bounding over the hills!</VERS>\n\t\t\t<VERS vnumber=\"9\"> My lover is like a gazelle or a young stag. Look! There he stands behind our wall, gazing through the window, peering through the lattice.</VERS>\n\t\t\t<VERS vnumber=\"10\"> My lover spoke to me, saying: \"Arise, my darling; My beautiful one, come away with me!</VERS>\n\t\t\t<VERS vnumber=\"11\"> Look! The winter has passed, the winter rains are over and gone.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The pomegranates have appeared in the land, the time for pruning and singing has come; the voice of the turtledove is heard in our land.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The fig tree has budded, the vines have blossomed and give off their fragrance. Arise, come away my darling; my beautiful one, come away with me!\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> O my dove, in the clefts of the rock, in the hiding places of the mountain crags, let me see your face, let me hear your voice; for your voice is sweet, and your face is lovely.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Catch the foxes for us, the little foxes, that ruin the vineyards, for our vineyard is in bloom.</VERS>\n\t\t\t<VERS vnumber=\"16\"> My lover is mine and I am his; he grazes among the lilies.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Until the dawn arrives and the shadows flee, turn, my beloved, be like a gazelle or a young stag on the mountain gorges.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> All night long on my bed I longed for my lover. I longed for him but he never appeared.</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"I will arise and look all around throughout the town, and throughout the streets and squares; I will search for my beloved.\" I searched for him but I did not find him.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The night watchmen found me, the ones who guard the city walls. \"Have you seen my beloved?\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> Scarcely had I passed them by when I found my beloved! I held onto him tightly and would not let him go until I brought him to my mother's house, to the bedroom chamber of the one who conceived me.</VERS>\n\t\t\t<VERS vnumber=\"5\">  I admonish you, O maidens of Jerusalem, by the gazelles and by the young does of the open fields: \"Do not awake or arouse love until it pleases!\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> Who is this coming up from the desert like a column of smoke, like a fragrant billow of myrrh and frankincense, every kind of fragrant powder of the traveling merchants?</VERS>\n\t\t\t<VERS vnumber=\"7\"> Look! It is Solomon's portable couch! It is surrounded by sixty warriors, some of Israel's mightiest warriors.</VERS>\n\t\t\t<VERS vnumber=\"8\"> All of them are skilled with a sword, well-trained in the art of warfare. Each has his sword at his side, to guard against the terrors of the night.</VERS>\n\t\t\t<VERS vnumber=\"9\"> King Solomon made a sedan chair for himself of wood imported from Lebanon.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Its posts were made of silver; its back was made of gold. Its seat was upholstered with purple wool; its interior was inlaid with leather by the maidens of Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Come out, O maidens of Zion, and gaze upon King Solomon! He is wearing the crown with which his mother crowned him on his wedding day, on the most joyous day of his life!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\"> Oh, you are beautiful, my darling! Oh, you are beautiful! Your eyes behind your veil are like doves. Your hair is like a flock of female goats descending from Mount Gilead.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Your teeth are like a flock of newly-shorn sheep coming up from the washing place; each of them has a twin, and not one of them is missing.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Your lips are like a scarlet thread; your mouth is lovely. Your forehead behind your veil is like a slice of pomegranate.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Your neck is like the tower of David built with courses of stones; one thousand shields are hung on it, all shields of valiant warriors.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Your two breasts are like two fawns, twins of the gazelle grazing among the lilies.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Until the dawn arrives and the shadows flee, I will go up to the mountain of myrrh, and to the hill of frankincense.</VERS>\n\t\t\t<VERS vnumber=\"7\"> You are altogether beautiful, my darling! There is no blemish in you!</VERS>\n\t\t\t<VERS vnumber=\"8\"> Come with me from Lebanon, my bride, come with me from Lebanon. Descend from the crest of Amana, from the top of Senir, the summit of Hermon, from the lions' dens and the mountain haunts of the leopards.</VERS>\n\t\t\t<VERS vnumber=\"9\"> You have stolen my heart, my sister, my bride! You have stolen my heart with one glance of your eyes, with one jewel of your necklace.</VERS>\n\t\t\t<VERS vnumber=\"10\"> How delightful is your love, my sister, my bride! How much better is your love than wine; the fragrance of your perfume is better than any spice!</VERS>\n\t\t\t<VERS vnumber=\"11\"> Your lips drip sweetness like the honeycomb, my bride, honey and milk are under your tongue. The fragrance of your garments is like the fragrance of Lebanon.</VERS>\n\t\t\t<VERS vnumber=\"12\"> You are a locked garden, my sister, my bride; you are an enclosed spring, a sealed-up fountain.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Your shoots are a royal garden full of pomegranates with choice fruits: henna with nard,</VERS>\n\t\t\t<VERS vnumber=\"14\"> nard and saffron; calamus and cinnamon with every kind of spice, myrrh and aloes with all the finest spices.</VERS>\n\t\t\t<VERS vnumber=\"15\"> You are a garden spring, a well of fresh water flowing down from Lebanon.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Awake, O north wind; come, O south wind! Blow on my garden so that its fragrant spices may send out their sweet smell. May my beloved come into his garden and eat its delightful fruit!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"5\">\n\t\t\t<VERS vnumber=\"1\"> I have entered my garden, O my sister, my bride; I have gathered my myrrh with my balsam spice. I have eaten my honeycomb and my honey; I have drunk my wine and my milk! Eat, friends, and drink! Drink freely, O lovers!</VERS>\n\t\t\t<VERS vnumber=\"2\"> I was asleep, but my mind was dreaming. Listen! My lover is knocking at the door! \"Open for me, my sister, my darling, my dove, my flawless one! My head is drenched with dew, my hair with the dampness of the night.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> \"I have already taken off my robe, must I put it on again? I have already washed my feet, must I soil them again?\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> My lover thrust his hand through the hole, and my feelings were stirred for him.</VERS>\n\t\t\t<VERS vnumber=\"5\"> I arose to open for my beloved; my hands dripped with myrrh, my fingers flowed with myrrh on the handles of the lock.</VERS>\n\t\t\t<VERS vnumber=\"6\"> I opened for my beloved, but my lover had already turned and gone away. I fell into despair when he departed. I looked for him but did not find him; I called him but he did not answer me.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The watchmen found me as they made their rounds in the city. They beat me, they bruised me; they took away my cloak, those watchmen on the walls!</VERS>\n\t\t\t<VERS vnumber=\"8\"> O maidens of Jerusalem, I command you, If you find my beloved, what will you tell him? Tell him that I am lovesick!</VERS>\n\t\t\t<VERS vnumber=\"9\"> Why is your beloved better than others, O most beautiful of women? Why is your beloved better than others, that you would command us in this manner?</VERS>\n\t\t\t<VERS vnumber=\"10\"> My beloved is dazzling and ruddy; he stands out in comparison to all other men.</VERS>\n\t\t\t<VERS vnumber=\"11\"> His head is like the most pure gold. His hair is curly, black like a raven.</VERS>\n\t\t\t<VERS vnumber=\"12\"> His eyes are like doves by streams of water, washed in milk, mounted like jewels.</VERS>\n\t\t\t<VERS vnumber=\"13\"> His cheeks are like garden beds full of balsam trees yielding perfume. His lips are like lilies dripping with drops of myrrh.</VERS>\n\t\t\t<VERS vnumber=\"14\"> His arms are like rods of gold set with chrysolite. His abdomen is like polished ivory inlaid with sapphires.</VERS>\n\t\t\t<VERS vnumber=\"15\"> His legs are like pillars of marble set on bases of pure gold. His appearance is like Lebanon, choice as its cedars.</VERS>\n\t\t\t<VERS vnumber=\"16\"> His mouth is very sweet; he is totally desirable. This is my beloved! This is my companion, O maidens of Jerusalem!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"6\">\n\t\t\t<VERS vnumber=\"1\"> Where has your beloved gone, O most beautiful among women? Where has your beloved turned? Tell us, that we may seek him with you.</VERS>\n\t\t\t<VERS vnumber=\"2\"> My beloved has gone down to his garden, to the flowerbeds of balsam spices, to graze in the gardens, and to gather lilies.</VERS>\n\t\t\t<VERS vnumber=\"3\"> I am my lover's and my lover is mine; he grazes among the lilies.</VERS>\n\t\t\t<VERS vnumber=\"4\"> My darling, you are as beautiful as Tirzah, as lovely as Jerusalem, as awe-inspiring as bannered armies!</VERS>\n\t\t\t<VERS vnumber=\"5\"> Turn your eyes away from me, they overwhelm me! Your hair is like a flock of goats descending from Mount Gilead.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Your teeth are like a flock of sheep coming up from the washing; each has its twin; not one of them is missing.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Like a slice of pomegranate is your forehead behind your veil.</VERS>\n\t\t\t<VERS vnumber=\"8\"> There may be sixty queens, and eighty concubines, and young women without number.</VERS>\n\t\t\t<VERS vnumber=\"9\"> But she is unique! My dove, my perfect one! She is the special daughter of her mother, she is the favorite of the one who bore her. The maidens saw her and complimented her; the queens and concubines praised her:</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"Who is this who appears like the dawn? Beautiful as the moon, bright as the sun, awe-inspiring as the stars in procession?\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> I went down to the orchard of walnut trees, to look for the blossoms of the valley, to see if the vines had budded or if the pomegranates were in bloom.</VERS>\n\t\t\t<VERS vnumber=\"12\">  I was beside myself with joy! There please give me your myrrh, O daughter of my princely people.</VERS>\n\t\t\t<VERS vnumber=\"13\">  Turn, turn, O Perfect One! Turn, turn, that I may stare at you! Why do you gaze upon the Perfect One like the dance of the Mahanaim?</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"7\">\n\t\t\t<VERS vnumber=\"1\">  How beautiful are your sandaled feet, O nobleman's daughter! The curves of your thighs are like jewels, the work of the hands of a master craftsman.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Your navel is a round mixing bowl, may it never lack mixed wine! Your belly is a mound of wheat, encircled by lilies.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Your two breasts are like two fawns, twins of a gazelle.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Your neck is like a tower made of ivory. Your eyes are the pools in Heshbon by the gate of Bath-Rabbim. Your nose is like the tower of Lebanon overlooking Damascus.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Your head crowns you like Mount Carmel. The locks of your hair are like royal tapestries, the king is held captive in its tresses!</VERS>\n\t\t\t<VERS vnumber=\"6\"> How beautiful you are! How lovely, O love, with your delights!</VERS>\n\t\t\t<VERS vnumber=\"7\"> Your stature is like a palm tree, and your breasts are like clusters of grapes.</VERS>\n\t\t\t<VERS vnumber=\"8\"> I want to climb the palm tree, and take hold of its fruit stalks. May your breasts be like the clusters of grapes, and may the fragrance of your breath be like apricots!</VERS>\n\t\t\t<VERS vnumber=\"9\"> May your mouth be like the best wine, flowing smoothly for my beloved, gliding gently over our lips as we sleep together.</VERS>\n\t\t\t<VERS vnumber=\"10\"> I am my beloved's, and he desires me!</VERS>\n\t\t\t<VERS vnumber=\"11\"> Come, my beloved, let us go to the countryside; let us spend the night in the villages.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Let us rise early to go to the vineyards, to see if the vines have budded, to see if their blossoms have opened, if the pomegranates are in bloom, there I will give you my love.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The mandrakes send out their fragrance; over our door is every delicacy, both new and old, which I have stored up for you, my lover.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"8\">\n\t\t\t<VERS vnumber=\"1\"> Oh, how I wish you were my little brother, nursing at my mother's breasts; if I saw you outside, I could kiss you, surely no one would despise me!</VERS>\n\t\t\t<VERS vnumber=\"2\"> I would lead you and bring you to my mother's house, the one who taught me. I would give you spiced wine to drink, the nectar of my pomegranates.</VERS>\n\t\t\t<VERS vnumber=\"3\"> His left hand caresses my head, and his right hand stimulates me.</VERS>\n\t\t\t<VERS vnumber=\"4\"> I admonish you, O maidens of Jerusalem: \"Do not arouse or awaken love until it pleases!\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> Who is this coming up from the desert, leaning on her beloved? Under the apple tree I aroused you; there your mother conceived you, there she who bore you was in labor of childbirth.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Set me like a cylinder seal over your heart, like a signet on your arm. For love is as strong as death, passion is as unrelenting as Sheol. Its flames burst forth, it is a blazing flame.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Surging waters cannot quench love; floodwaters cannot overflow it. If someone were to offer all his possessions to buy love, the offer would be utterly despised.</VERS>\n\t\t\t<VERS vnumber=\"8\"> We have a little sister, and as yet she has no breasts. What shall we do for our sister on the day when she is spoken for?</VERS>\n\t\t\t<VERS vnumber=\"9\"> If she is a wall, we will build on her a battlement of silver; but if she is a door, we will barricade her with boards of cedar.</VERS>\n\t\t\t<VERS vnumber=\"10\"> I was a wall, and my breasts were like fortress towers. Then I found favor in his eyes.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Solomon had a vineyard at Baal-Hamon; he leased out the vineyard to those who maintained it. Each was to bring a thousand shekels of silver for its fruit.</VERS>\n\t\t\t<VERS vnumber=\"12\"> My vineyard, which belongs to me, is at my disposal alone. The thousand shekels belong to you, O Solomon, and two hundred shekels belong to those who maintain it for its fruit.</VERS>\n\t\t\t<VERS vnumber=\"13\"> O you who stay in the gardens, my companions are listening attentively for your voice; let me be the one to hear it!</VERS>\n\t\t\t<VERS vnumber=\"14\"> Make haste, my beloved! Be like a gazelle or a young stag on the mountains of spices.</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"23\" bname=\"Isaiah\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> Here is the message about Judah and Jerusalem that was revealed to Isaiah son of Amoz during the time when Uzziah, Jotham, Ahaz, and Hezekiah reigned over Judah.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Listen, O heavens, pay attention, O earth! For the LORD speaks: \"I raised children, I brought them up, but they have rebelled against me!</VERS>\n\t\t\t<VERS vnumber=\"3\"> An ox recognizes its owner, a donkey recognizes where its owner puts its food; but Israel does not recognize me, my people do not understand.\"</VERS>\n\t\t\t<VERS vnumber=\"4\">  The sinful nation is as good as dead, the people weighed down by evil deeds. They are offspring who do wrong, children who do wicked things. They have abandoned the LORD, and rejected the Holy One of Israel. They are alienated from him.</VERS>\n\t\t\t<VERS vnumber=\"5\">  Why do you insist on being battered? Why do you continue to rebel? Your head has a massive wound, your whole body is weak.</VERS>\n\t\t\t<VERS vnumber=\"6\"> From the soles of your feet to your head, there is no spot that is unharmed. There are only bruises, cuts, and open wounds. They have not been cleansed or bandaged, nor have they been treated with olive oil.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Your land is devastated, your cities burned with fire. Right before your eyes your crops are being destroyed by foreign invaders. They leave behind devastation and destruction.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Daughter Zion is left isolated, like a hut in a vineyard, or a shelter in a cucumber field; she is a besieged city.</VERS>\n\t\t\t<VERS vnumber=\"9\"> If the LORD who commands armies had not left us a few survivors, we would have quickly become like Sodom, we would have become like Gomorrah.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Listen to the LORD's word, you leaders of Sodom! Pay attention to our God's rebuke, people of Gomorrah!</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"Of what importance to me are your many sacrifices?\" says the LORD. \"I am stuffed with burnt sacrifices of rams and the fat from steers. The blood of bulls, lambs, and goats I do not want.</VERS>\n\t\t\t<VERS vnumber=\"12\"> When you enter my presence, do you actually think I want this, animals trampling on my courtyards?</VERS>\n\t\t\t<VERS vnumber=\"13\"> Do not bring any more meaningless offerings; I consider your incense detestable! You observe new moon festivals, Sabbaths, and convocations, but I cannot tolerate sin-stained celebrations!</VERS>\n\t\t\t<VERS vnumber=\"14\"> I hate your new moon festivals and assemblies; they are a burden that I am tired of carrying.</VERS>\n\t\t\t<VERS vnumber=\"15\"> When you spread out your hands in prayer, I look the other way; when you offer your many prayers, I do not listen, because your hands are covered with blood.</VERS>\n\t\t\t<VERS vnumber=\"16\">  Wash! Cleanse yourselves! Remove your sinful deeds from my sight. Stop sinning!</VERS>\n\t\t\t<VERS vnumber=\"17\"> Learn to do what is right! Promote justice! Give the oppressed reason to celebrate! Take up the cause of the orphan! Defend the rights of the widow!</VERS>\n\t\t\t<VERS vnumber=\"18\">  Come, let's consider your options,\" says the LORD. \"Though your sins have stained you like the color red, you can become white like snow; though they are as easy to see as the color scarlet, you can become white like wool.</VERS>\n\t\t\t<VERS vnumber=\"19\"> If you have a willing attitude and obey, then you will again eat the good crops of the land.</VERS>\n\t\t\t<VERS vnumber=\"20\"> But if you refuse and rebel, you will be devoured by the sword.\" Know for certain that the LORD has spoken.</VERS>\n\t\t\t<VERS vnumber=\"21\"> How tragic that the once-faithful city has become a prostitute! She was once a center of justice, fairness resided in her, but now only murderers.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Your silver has become scum, your beer is diluted with water.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Your officials are rebels, they associate with thieves. All of them love bribery, and look for payoffs. They do not take up the cause of the orphan, or defend the rights of the widow.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Therefore, the sovereign LORD who commands armies, the powerful ruler of Israel, says this: \"Ah, I will seek vengeance against my adversaries, I will take revenge against my enemies.</VERS>\n\t\t\t<VERS vnumber=\"25\"> I will attack you; I will purify your metal with flux. I will remove all your slag.</VERS>\n\t\t\t<VERS vnumber=\"26\"> I will reestablish honest judges as in former times, wise advisers as in earlier days. Then you will be called, 'The Just City, Faithful Town.'\"</VERS>\n\t\t\t<VERS vnumber=\"27\">  Zion will be freed by justice, and her returnees by righteousness.</VERS>\n\t\t\t<VERS vnumber=\"28\"> All rebellious sinners will be shattered, those who abandon the LORD will perish.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Indeed, they will be ashamed of the sacred trees you find so desirable; you will be embarrassed because of the sacred orchards where you choose to worship.</VERS>\n\t\t\t<VERS vnumber=\"30\"> For you will be like a tree whose leaves wither, like an orchard that is unwatered.</VERS>\n\t\t\t<VERS vnumber=\"31\"> The powerful will be like a thread of yarn, their deeds like a spark; both will burn together, and no one will put out the fire.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> Here is the message about Judah and Jerusalem that was revealed to Isaiah son of Amoz.</VERS>\n\t\t\t<VERS vnumber=\"2\"> In the future the mountain of the LORD's temple will endure as the most important of mountains, and will be the most prominent of hills. All the nations will stream to it,</VERS>\n\t\t\t<VERS vnumber=\"3\"> many peoples will come and say, \"Come, let us go up to the LORD's mountain, to the temple of the God of Jacob, so he can teach us his requirements, and we can follow his standards.\" For Zion will be the center for moral instruction; the LORD will issue edicts from Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"4\"> He will judge disputes between nations; he will settle cases for many peoples. They will beat their swords into plowshares, and their spears into pruning hooks. Nations will not take up the sword against other nations, and they will no longer train for war.</VERS>\n\t\t\t<VERS vnumber=\"5\"> O descendants of Jacob, come, let us walk in the LORD's guiding light.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Indeed, O LORD, you have abandoned your people, the descendants of Jacob. For diviners from the east are everywhere; they consult omen readers like the Philistines do. Plenty of foreigners are around.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Their land is full of gold and silver; there is no end to their wealth. Their land is full of horses; there is no end to their chariots.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Their land is full of worthless idols; they worship the product of their own hands, what their own fingers have fashioned.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Men bow down to them in homage, they lie flat on the ground in worship. Don't spare them!</VERS>\n\t\t\t<VERS vnumber=\"10\"> Go up into the rocky cliffs, hide in the ground. Get away from the dreadful judgment of the LORD, from his royal splendor!</VERS>\n\t\t\t<VERS vnumber=\"11\"> Proud men will be brought low, arrogant men will be humiliated; the LORD alone will be exalted in that day.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Indeed, the LORD who commands armies has planned a day of judgment, for all the high and mighty, for all who are proud, they will be humiliated;</VERS>\n\t\t\t<VERS vnumber=\"13\"> for all the cedars of Lebanon, that are so high and mighty, for all the oaks of Bashan;</VERS>\n\t\t\t<VERS vnumber=\"14\"> for all the tall mountains, for all the high hills,</VERS>\n\t\t\t<VERS vnumber=\"15\"> for every high tower, for every fortified wall,</VERS>\n\t\t\t<VERS vnumber=\"16\"> for all the large ships, for all the impressive ships.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Proud men will be humiliated, arrogant men will be brought low; the LORD alone will be exalted in that day.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The worthless idols will be completely eliminated.</VERS>\n\t\t\t<VERS vnumber=\"19\"> They will go into caves in the rocky cliffs and into holes in the ground, trying to escape the dreadful judgment of the LORD and his royal splendor, when he rises up to terrify the earth.</VERS>\n\t\t\t<VERS vnumber=\"20\"> At that time men will throw their silver and gold idols, which they made for themselves to worship, into the caves where rodents and bats live,</VERS>\n\t\t\t<VERS vnumber=\"21\"> so they themselves can go into the crevices of the rocky cliffs and the openings under the rocky overhangs, trying to escape the dreadful judgment of the LORD and his royal splendor, when he rises up to terrify the earth.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Stop trusting in human beings, whose life's breath is in their nostrils. For why should they be given special consideration?</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> Look, the sovereign LORD who commands armies is about to remove from Jerusalem and Judah every source of security, including all the food and water,</VERS>\n\t\t\t<VERS vnumber=\"2\"> the mighty men and warriors, judges and prophets, omen readers and leaders,</VERS>\n\t\t\t<VERS vnumber=\"3\"> captains of groups of fifty, the respected citizens, advisers and those skilled in magical arts, and those who know incantations.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The LORD says, \"I will make youths their officials; malicious young men will rule over them.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The people will treat each other harshly; men will oppose each other; neighbors will fight. Youths will proudly defy the elderly and riffraff will challenge those who were once respected.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Indeed, a man will grab his brother right in his father's house and say, 'You own a coat, you be our leader! This heap of ruins will be under your control.'</VERS>\n\t\t\t<VERS vnumber=\"7\"> At that time the brother will shout, 'I am no doctor, I have no food or coat in my house; don't make me a leader of the people!'\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> Jerusalem certainly stumbles, Judah falls, for their words and their actions offend the LORD; they rebel against his royal authority.</VERS>\n\t\t\t<VERS vnumber=\"9\"> The look on their faces testifies to their guilt; like the people of Sodom they openly boast of their sin. Too bad for them! For they bring disaster on themselves.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Tell the innocent it will go well with them, for they will be rewarded for what they have done.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Too bad for the wicked sinners! For they will get exactly what they deserve.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Oppressors treat my people cruelly; creditors rule over them. My people's leaders mislead them; they give you confusing directions.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The LORD takes his position to judge; he stands up to pass sentence on his people.</VERS>\n\t\t\t<VERS vnumber=\"14\"> The LORD comes to pronounce judgment on the leaders of his people and their officials. He says, \"It is you who have ruined the vineyard! You have stashed in your houses what you have stolen from the poor.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Why do you crush my people and grind the faces of the poor?\" The sovereign LORD who commands armies has spoken.</VERS>\n\t\t\t<VERS vnumber=\"16\"> The LORD says, \"The women of Zion are proud. They walk with their heads high and flirt with their eyes. They skip along and the jewelry on their ankles jingles.</VERS>\n\t\t\t<VERS vnumber=\"17\"> So the sovereign master will afflict the foreheads of Zion's women with skin diseases, the LORD will make the front of their heads bald.\"</VERS>\n\t\t\t<VERS vnumber=\"18\">  At that time the sovereign master will remove their beautiful ankle jewelry, neck ornaments, crescent shaped ornaments, </VERS>\n\t\t\t<VERS vnumber=\"19\"> earrings, bracelets, veils,</VERS>\n\t\t\t<VERS vnumber=\"20\"> headdresses, ankle ornaments, sashes, sachets, amulets, </VERS>\n\t\t\t<VERS vnumber=\"21\"> rings, nose rings,</VERS>\n\t\t\t<VERS vnumber=\"22\"> festive dresses, robes, shawls, purses,</VERS>\n\t\t\t<VERS vnumber=\"23\"> garments, vests, head coverings, and gowns.</VERS>\n\t\t\t<VERS vnumber=\"24\"> A putrid stench will replace the smell of spices, a rope will replace a belt, baldness will replace braided locks of hair, a sackcloth garment will replace a fine robe, and a prisoner's brand will replace beauty.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Your men will fall by the sword, your strong men will die in battle.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Her gates will mourn and lament; deprived of her people, she will sit on the ground.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\"> Seven women will grab hold of one man at that time. They will say, \"We will provide our own food, we will provide our own clothes; but let us belong to you, take away our shame!\"</VERS>\n\t\t\t<VERS vnumber=\"2\"> At that time the crops given by the LORD will bring admiration and honor; the produce of the land will be a source of pride and delight to those who remain in Israel.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Those remaining in Zion, those left in Jerusalem, will be called \"holy,\" all in Jerusalem who are destined to live.</VERS>\n\t\t\t<VERS vnumber=\"4\"> At that time the sovereign master will wash the excrement from Zion's women, he will rinse the bloodstains from Jerusalem's midst, as he comes to judge and to bring devastation.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Then the LORD will create over all of Mount Zion and over its convocations a cloud and smoke by day and a bright flame of fire by night; indeed a canopy will accompany the LORD's glorious presence.</VERS>\n\t\t\t<VERS vnumber=\"6\"> By day it will be a shelter to provide shade from the heat, as well as safety and protection from the heavy downpour.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"5\">\n\t\t\t<VERS vnumber=\"1\"> I will sing to my love, a song to my lover about his vineyard. My love had a vineyard on a fertile hill.</VERS>\n\t\t\t<VERS vnumber=\"2\"> He built a hedge around it, removed its stones, and planted a vine. He built a tower in the middle of it, and constructed a winepress. He waited for it to produce edible grapes, but it produced sour ones instead.</VERS>\n\t\t\t<VERS vnumber=\"3\"> So now, residents of Jerusalem, people of Judah, you decide between me and my vineyard!</VERS>\n\t\t\t<VERS vnumber=\"4\"> What more can I do for my vineyard beyond what I have already done? When I waited for it to produce edible grapes, why did it produce sour ones instead?</VERS>\n\t\t\t<VERS vnumber=\"5\"> Now I will inform you what I am about to do to my vineyard: I will remove its hedge and turn it into pasture, I will break its wall and allow animals to graze there.</VERS>\n\t\t\t<VERS vnumber=\"6\"> I will make it a wasteland; no one will prune its vines or hoe its ground, and thorns and briers will grow there. I will order the clouds not to drop any rain on it.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Indeed Israel is the vineyard of the LORD who commands armies, the people of Judah are the cultivated place in which he took delight. He waited for justice, but look what he got, disobedience! He waited for fairness, but look what he got, cries for help!</VERS>\n\t\t\t<VERS vnumber=\"8\"> Those who accumulate houses are as good as dead, those who also accumulate landed property until there is no land left, and you are the only landowners remaining within the land.</VERS>\n\t\t\t<VERS vnumber=\"9\"> The LORD who commands armies told me this: \"Many houses will certainly become desolate, large, impressive houses will have no one living in them.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Indeed, a large vineyard will produce just a few gallons, and enough seed to yield several bushels will produce less than a bushel.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> Those who get up early to drink beer are as good as dead, those who keep drinking long after dark until they are intoxicated with wine.</VERS>\n\t\t\t<VERS vnumber=\"12\"> They have stringed instruments, tambourines, flutes, and wine at their parties. So they do not recognize what the LORD is doing, they do not perceive what he is bringing about.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Therefore my people will be deported because of their lack of understanding. Their leaders will have nothing to eat, their masses will have nothing to drink.</VERS>\n\t\t\t<VERS vnumber=\"14\"> So Death will open up its throat, and open wide its mouth; Zion's dignitaries and masses will descend into it, including those who revel and celebrate within her.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Men will be humiliated, they will be brought low; the proud will be brought low.</VERS>\n\t\t\t<VERS vnumber=\"16\"> The LORD who commands armies will be exalted when he punishes, the sovereign God's authority will be recognized when he judges.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Lambs will graze as if in their pastures, amid the ruins the rich sojourners will graze.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Those who pull evil along using cords of emptiness are as good as dead, who pull sin as with cart ropes.</VERS>\n\t\t\t<VERS vnumber=\"19\"> They say, \"Let him hurry, let him act quickly, so we can see; let the plan of the Holy One of Israel take shape and come to pass, then we will know it!\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> Those who call evil good and good evil are as good as dead, who turn darkness into light and light into darkness, who turn bitter into sweet and sweet into bitter.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Those who think they are wise are as good as dead, those who think they possess understanding.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Those who are champions at drinking wine are as good as dead, who display great courage when mixing strong drinks.</VERS>\n\t\t\t<VERS vnumber=\"23\"> They pronounce the guilty innocent for a payoff, they ignore the just cause of the innocent.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Therefore, as flaming fire devours straw, and dry grass disintegrates in the flames, so their root will rot, and their flower will blow away like dust. For they have rejected the law of the LORD who commands armies, they have spurned the commands of the Holy One of Israel.</VERS>\n\t\t\t<VERS vnumber=\"25\"> So the LORD is furious with his people; he lifts his hand and strikes them. The mountains shake, and corpses lie like manure in the middle of the streets. Despite all this, his anger does not subside, and his hand is ready to strike again.</VERS>\n\t\t\t<VERS vnumber=\"26\"> He lifts a signal flag for a distant nation, he whistles for it to come from the far regions of the earth. Look, they come quickly and swiftly.</VERS>\n\t\t\t<VERS vnumber=\"27\"> None tire or stumble, they don't stop to nap or sleep. They don't loosen their belts, or unstrap their sandals to rest.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Their arrows are sharpened, and all their bows are prepared. The hooves of their horses are hard as flint, and their chariot wheels are like a windstorm.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Their roar is like a lion's; they roar like young lions. They growl and seize their prey; they drag it away and no one can come to the rescue.</VERS>\n\t\t\t<VERS vnumber=\"30\"> At that time they will growl over their prey, it will sound like sea waves crashing against rocks. One will look out over the land and see the darkness of disaster, clouds will turn the light into darkness.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"6\">\n\t\t\t<VERS vnumber=\"1\"> In the year of King Uzziah's death, I saw the sovereign master seated on a high, elevated throne. The hem of his robe filled the temple. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Seraphs stood over him; each one had six wings. With two wings they covered their faces, with two they covered their feet, and they used the remaining two to fly. </VERS>\n\t\t\t<VERS vnumber=\"3\"> They called out to one another, \"Holy, holy, holy is the Lord who commands armies! His majestic splendor fills the entire earth!\" </VERS>\n\t\t\t<VERS vnumber=\"4\"> The sound of their voices shook the door frames, and the temple was filled with smoke.</VERS>\n\t\t\t<VERS vnumber=\"5\"> I said, \"Too bad for me! I am destroyed, for my lips are contaminated by sin, and I live among people whose lips are contaminated by sin. My eyes have seen the king, the LORD who commands armies.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> But then one of the seraphs flew toward me. In his hand was a hot coal he had taken from the altar with tongs.</VERS>\n\t\t\t<VERS vnumber=\"7\"> He touched my mouth with it and said, \"Look, this coal has touched your lips. Your evil is removed; your sin is forgiven.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> I heard the voice of the sovereign master say, \"Whom will I send? Who will go on our behalf?\" I answered, \"Here I am, send me!\" </VERS>\n\t\t\t<VERS vnumber=\"9\"> He said, \"Go and tell these people: 'Listen continually, but don't understand! Look continually, but don't perceive!'</VERS>\n\t\t\t<VERS vnumber=\"10\"> Make the hearts of these people calloused; make their ears deaf and their eyes blind! Otherwise they might see with their eyes and hear with their ears, their hearts might understand and they might repent and be healed.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> I replied, \"How long, sovereign master?\" He said, \"Until cities are in ruins and unpopulated, and houses are uninhabited, and the land is ruined and devastated,</VERS>\n\t\t\t<VERS vnumber=\"12\"> and the LORD has sent the people off to a distant place, and the very heart of the land is completely abandoned.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Even if only a tenth of the people remain in the land, it will again be destroyed, like one of the large sacred trees or an Asherah pole, when a sacred pillar on a high place is thrown down. That sacred pillar symbolizes the special chosen family.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"7\">\n\t\t\t<VERS vnumber=\"1\"> During the reign of Ahaz son of Jotham, son of Uzziah, king of Judah, King Rezin of Syria and King Pekah son of Remaliah of Israel marched up to Jerusalem to do battle, but they were unable to prevail against it.</VERS>\n\t\t\t<VERS vnumber=\"2\"> It was reported to the family of David, \"Syria has allied with Ephraim.\" They and their people were emotionally shaken, just as the trees of the forest shake before the wind.</VERS>\n\t\t\t<VERS vnumber=\"3\"> So the LORD told Isaiah, \"Go out with your son Shear-jashub and meet Ahaz at the end of the conduit of the upper pool which is located on the road to the field where they wash and dry cloth.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Tell him, 'Make sure you stay calm! Don't be afraid! Don't be intimidated by these two stubs of smoking logs, or by the raging anger of Rezin, Syria, and the son of Remaliah. </VERS>\n\t\t\t<VERS vnumber=\"5\"> Syria has plotted with Ephraim and the son of Remaliah to bring about your demise.</VERS>\n\t\t\t<VERS vnumber=\"6\"> They say, \"Let's attack Judah, terrorize it, and conquer it. Then we'll set up the son of Tabeel as its king.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> For this reason the sovereign master, the LORD, says: \"It will not take place; it will not happen.</VERS>\n\t\t\t<VERS vnumber=\"8\"> For Syria's leader is Damascus, and the leader of Damascus is Rezin. Within sixty-five years Ephraim will no longer exist as a nation.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Ephraim's leader is Samaria, and Samaria's leader is the son of Remaliah. If your faith does not remain firm, then you will not remain secure.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> The LORD again spoke to Ahaz:</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"Ask for a confirming sign from the LORD your God. You can even ask for something miraculous.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> But Ahaz responded, \"I don't want to ask; I don't want to put the LORD to a test.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> So Isaiah replied, \"Pay attention, family of David. Do you consider it too insignificant to try the patience of men? Is that why you are also trying the patience of my God? </VERS>\n\t\t\t<VERS vnumber=\"14\"> For this reason the sovereign master himself will give you a confirming sign. Look, this young woman is about to conceive and will give birth to a son. You, young woman, will name him Immanuel.</VERS>\n\t\t\t<VERS vnumber=\"15\"> He will eat sour milk and honey, which will help him know how to reject evil and choose what is right. </VERS>\n\t\t\t<VERS vnumber=\"16\"> Here is why this will be so: Before the child knows how to reject evil and choose what is right, the land whose two kings you fear will be desolate.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The LORD will bring on you, your people, and your father's family a time unlike any since Ephraim departed from Judah, the king of Assyria!\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> At that time the LORD will whistle for flies from the distant streams of Egypt and for bees from the land of Assyria.</VERS>\n\t\t\t<VERS vnumber=\"19\"> All of them will come and make their home in the ravines between the cliffs, and in the crevices of the cliffs, in all the thorn bushes, and in all the watering holes.</VERS>\n\t\t\t<VERS vnumber=\"20\"> At that time the sovereign master will use a razor hired from the banks of the Euphrates River, the king of Assyria, to shave the head and the pubic hair; it will also shave off the beard. </VERS>\n\t\t\t<VERS vnumber=\"21\"> At that time a man will keep alive a young cow from the herd and a couple of goats. </VERS>\n\t\t\t<VERS vnumber=\"22\"> From the abundance of milk they produce, he will have sour milk for his meals. Indeed, everyone left in the heart of the land will eat sour milk and honey. </VERS>\n\t\t\t<VERS vnumber=\"23\"> At that time every place where there had been a thousand vines worth a thousand shekels will be overrun with thorns and briers. </VERS>\n\t\t\t<VERS vnumber=\"24\"> With bow and arrow men will hunt there, for the whole land will be covered with thorns and briers. </VERS>\n\t\t\t<VERS vnumber=\"25\"> They will stay away from all the hills that were cultivated, for fear of the thorns and briers. Cattle will graze there and sheep will trample on them.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"8\">\n\t\t\t<VERS vnumber=\"1\"> The LORD told me, \"Take a large tablet and inscribe these words on it with an ordinary stylus: 'Maher-Shalal-Hash-Baz.'</VERS>\n\t\t\t<VERS vnumber=\"2\"> Then I will summon as my reliable witnesses Uriah the priest and Zechariah son of Jeberekiah.\" </VERS>\n\t\t\t<VERS vnumber=\"3\"> I then had sexual relations with the prophetess; she conceived and gave birth to a son. The LORD told me, \"Name him Maher-Shalal-Hash-Baz,</VERS>\n\t\t\t<VERS vnumber=\"4\"> for before the child knows how to cry out, 'My father' or 'My mother,' the wealth of Damascus and the plunder of Samaria will be carried off by the king of Assyria.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> The LORD spoke to me again:</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"These people have rejected the gently flowing waters of Shiloah and melt in fear over Rezin and the son of Remaliah.</VERS>\n\t\t\t<VERS vnumber=\"7\"> So look, the sovereign master is bringing up against them the turbulent and mighty waters of the Euphrates River, the king of Assyria and all his majestic power. It will reach flood stage and overflow its banks.</VERS>\n\t\t\t<VERS vnumber=\"8\"> It will spill into Judah, flooding and engulfing, as it reaches to the necks of its victims. He will spread his wings out over your entire land, O Immanuel.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> You will be broken, O nations; you will be shattered! Pay attention, all you distant lands of the earth! Get ready for battle, and you will be shattered! Get ready for battle, and you will be shattered!</VERS>\n\t\t\t<VERS vnumber=\"10\"> Devise your strategy, but it will be thwarted! Issue your orders, but they will not be executed! For God is with us!</VERS>\n\t\t\t<VERS vnumber=\"11\"> Indeed this is what the LORD told me. He took hold of me firmly and warned me not to act like these people:</VERS>\n\t\t\t<VERS vnumber=\"12\"> \"Do not say, 'Conspiracy,' every time these people say the word. Don't be afraid of what scares them; don't be terrified.</VERS>\n\t\t\t<VERS vnumber=\"13\"> You must recognize the authority of the LORD who commands armies. He is the one you must respect; he is the one you must fear.</VERS>\n\t\t\t<VERS vnumber=\"14\"> He will become a sanctuary, but a stone that makes a person trip, and a rock that makes one stumble, to the two houses of Israel. He will become a trap and a snare to the residents of Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Many will stumble over the stone and the rock, and will fall and be seriously injured, and will be ensnared and captured.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> Tie up the scroll as legal evidence, seal the official record of God's instructions and give it to my followers.</VERS>\n\t\t\t<VERS vnumber=\"17\"> I will wait patiently for the LORD, who has rejected the family of Jacob; I will wait for him.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Look, I and the sons whom the LORD has given me are reminders and object lessons in Israel, sent from the LORD who commands armies, who lives on Mount Zion.</VERS>\n\t\t\t<VERS vnumber=\"19\">  They will say to you, \"Seek oracles at the pits used to conjure up underworld spirits, from the magicians who chirp and mutter incantations. Should people not seek oracles from their gods, by asking the dead about the destiny of the living?\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> Then you must recall the LORD's instructions and the prophetic testimony of what would happen. Certainly they say such things because their minds are spiritually darkened.</VERS>\n\t\t\t<VERS vnumber=\"21\"> They will pass through the land destitute and starving. Their hunger will make them angry, and they will curse their king and their God as they look upward. </VERS>\n\t\t\t<VERS vnumber=\"22\"> When one looks out over the land, he sees distress and darkness, gloom and anxiety, darkness and people forced from the land.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"9\">\n\t\t\t<VERS vnumber=\"1\">  The gloom will be dispelled for those who were anxious. In earlier times he humiliated the land of Zebulun, and the land of Naphtali; but now he brings honor to the way of the sea, the region beyond the Jordan, and Galilee of the nations.</VERS>\n\t\t\t<VERS vnumber=\"2\">  The people walking in darkness see a bright light; light shines on those who live in a land of deep darkness.</VERS>\n\t\t\t<VERS vnumber=\"3\"> You have enlarged the nation; you give them great joy. They rejoice in your presence as harvesters rejoice; as warriors celebrate when they divide up the plunder.</VERS>\n\t\t\t<VERS vnumber=\"4\"> For their oppressive yoke and the club that strikes their shoulders, the cudgel the oppressor uses on them, you have shattered, as in the day of Midian's defeat.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Indeed every boot that marches and shakes the earth and every garment dragged through blood is used as fuel for the fire.</VERS>\n\t\t\t<VERS vnumber=\"6\"> For a child has been born to us, a son has been given to us. He shoulders responsibility and is called: Extraordinary Strategist, Mighty God, Everlasting Father, Prince of Peace.</VERS>\n\t\t\t<VERS vnumber=\"7\"> His dominion will be vast and he will bring immeasurable prosperity. He will rule on David's throne and over David's kingdom, establishing it and strengthening it by promoting justice and fairness, from this time forward and forevermore. The LORD's intense devotion to his people will accomplish this.</VERS>\n\t\t\t<VERS vnumber=\"8\">  The sovereign master decreed judgment on Jacob, and it fell on Israel.</VERS>\n\t\t\t<VERS vnumber=\"9\"> All the people were aware of it, the people of Ephraim and those living in Samaria. Yet with pride and an arrogant attitude, they said,</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"The bricks have fallen, but we will rebuild with chiseled stone; the sycamore fig trees have been cut down, but we will replace them with cedars.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> Then the LORD provoked their adversaries to attack them, he stirred up their enemies,</VERS>\n\t\t\t<VERS vnumber=\"12\"> Syria from the east, and the Philistines from the west, they gobbled up Israelite territory. Despite all this, his anger does not subside, and his hand is ready to strike again.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The people did not return to the one who struck them, they did not seek reconciliation with the LORD who commands armies.</VERS>\n\t\t\t<VERS vnumber=\"14\"> So the LORD cut off Israel's head and tail, both the shoots and stalk in one day.</VERS>\n\t\t\t<VERS vnumber=\"15\"> The leaders and the highly respected people are the head, the prophets who teach lies are the tail.</VERS>\n\t\t\t<VERS vnumber=\"16\"> The leaders of this nation were misleading people, and the people being led were destroyed.</VERS>\n\t\t\t<VERS vnumber=\"17\"> So the sovereign master was not pleased with their young men, he took no pity on their orphans and widows; for the whole nation was godless and did wicked things, every mouth was speaking disgraceful words. Despite all this, his anger does not subside, and his hand is ready to strike again.</VERS>\n\t\t\t<VERS vnumber=\"18\"> For evil burned like a fire, it consumed thorns and briers; it burned up the thickets of the forest, and they went up in smoke.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Because of the anger of the LORD who commands armies, the land was scorched, and the people became fuel for the fire. People had no compassion on one another.</VERS>\n\t\t\t<VERS vnumber=\"20\"> They devoured on the right, but were still hungry, they ate on the left, but were not satisfied. People even ate the flesh of their own arm!</VERS>\n\t\t\t<VERS vnumber=\"21\"> Manasseh fought against Ephraim, and Ephraim against Manasseh; together they fought against Judah. Despite all this, his anger does not subside, and his hand is ready to strike again.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"10\">\n\t\t\t<VERS vnumber=\"1\"> Those who enact unjust policies are as good as dead, those who are always instituting unfair regulations,</VERS>\n\t\t\t<VERS vnumber=\"2\"> to keep the poor from getting fair treatment, and to deprive the oppressed among my people of justice, so they can steal what widows own, and loot what belongs to orphans.</VERS>\n\t\t\t<VERS vnumber=\"3\"> What will you do on judgment day, when destruction arrives from a distant place? To whom will you run for help? Where will you leave your wealth?</VERS>\n\t\t\t<VERS vnumber=\"4\"> You will have no place to go, except to kneel with the prisoners, or to fall among those who have been killed. Despite all this, his anger does not subside, and his hand is ready to strike again.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Assyria, the club I use to vent my anger, is as good as dead, a cudgel with which I angrily punish.</VERS>\n\t\t\t<VERS vnumber=\"6\"> I sent him against a godless nation, I ordered him to attack the people with whom I was angry, to take plunder and to carry away loot, to trample them down like dirt in the streets.</VERS>\n\t\t\t<VERS vnumber=\"7\"> But he does not agree with this, his mind does not reason this way, for his goal is to destroy, and to eliminate many nations.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Indeed, he says: \"Are not my officials all kings?</VERS>\n\t\t\t<VERS vnumber=\"9\"> Is not Calneh like Carchemish? Hamath like Arpad? Samaria like Damascus?</VERS>\n\t\t\t<VERS vnumber=\"10\"> I overpowered kingdoms ruled by idols, whose carved images were more impressive than Jerusalem's or Samaria's.</VERS>\n\t\t\t<VERS vnumber=\"11\"> As I have done to Samaria and its idols, so I will do to Jerusalem and its idols.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> But when the sovereign master finishes judging Mount Zion and Jerusalem, then I will punish the king of Assyria for what he has proudly planned and for the arrogant attitude he displays.</VERS>\n\t\t\t<VERS vnumber=\"13\"> For he says: \"By my strong hand I have accomplished this, by my strategy that I devised. I invaded the territory of nations, and looted their storehouses. Like a mighty conqueror, I brought down rulers.</VERS>\n\t\t\t<VERS vnumber=\"14\"> My hand discovered the wealth of the nations, as if it were in a nest, as one gathers up abandoned eggs, I gathered up the whole earth. There was no wing flapping, or open mouth chirping.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> Does an ax exalt itself over the one who wields it, or a saw magnify itself over the one who cuts with it? As if a scepter should brandish the one who raises it, or a staff should lift up what is not made of wood!</VERS>\n\t\t\t<VERS vnumber=\"16\"> For this reason the sovereign master, the LORD who commands armies, will make his healthy ones emaciated. His majestic glory will go up in smoke.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The light of Israel will become a fire, their Holy One will become a flame; it will burn and consume the Assyrian king's briers and his thorns in one day.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The splendor of his forest and his orchard will be completely destroyed, as when a sick man's life ebbs away.</VERS>\n\t\t\t<VERS vnumber=\"19\"> There will be so few trees left in his forest, a child will be able to count them.</VERS>\n\t\t\t<VERS vnumber=\"20\"> At that time those left in Israel, those who remain of the family of Jacob, will no longer rely on a foreign leader that abuses them. Instead they will truly rely on the LORD, the Holy One of Israel.</VERS>\n\t\t\t<VERS vnumber=\"21\"> A remnant will come back, a remnant of Jacob, to the mighty God.</VERS>\n\t\t\t<VERS vnumber=\"22\"> For though your people, Israel, are as numerous as the sand on the seashore, only a remnant will come back. Destruction has been decreed; just punishment is about to engulf you.</VERS>\n\t\t\t<VERS vnumber=\"23\"> The sovereign master, the LORD who commands armies, is certainly ready to carry out the decreed destruction throughout the land.</VERS>\n\t\t\t<VERS vnumber=\"24\"> So here is what the sovereign master, the LORD who commands armies, says: \"My people who live in Zion, do not be afraid of Assyria, even though they beat you with a club and lift their cudgel against you as Egypt did.</VERS>\n\t\t\t<VERS vnumber=\"25\"> For very soon my fury will subside, and my anger will be directed toward their destruction.\" </VERS>\n\t\t\t<VERS vnumber=\"26\"> The LORD who commands armies is about to beat them with a whip, similar to the way he struck down Midian at the rock of Oreb. He will use his staff against the sea, lifting it up as he did in Egypt.</VERS>\n\t\t\t<VERS vnumber=\"27\"> At that time the LORD will remove their burden from your shoulders, and their yoke from your neck; the yoke will be taken off because your neck will be too large.</VERS>\n\t\t\t<VERS vnumber=\"28\">  They attacked Aiath, moved through Migron, depositing their supplies at Micmash.</VERS>\n\t\t\t<VERS vnumber=\"29\"> They went through the pass, spent the night at Geba. Ramah trembled, Gibeah of Saul ran away.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Shout out, daughter of Gallim! Pay attention, Laishah! Answer her, Anathoth!</VERS>\n\t\t\t<VERS vnumber=\"31\"> Madmenah flees, the residents of Gebim have hidden.</VERS>\n\t\t\t<VERS vnumber=\"32\"> This very day, standing in Nob, they shake their fist at Daughter Zion's mountain, at the hill of Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"33\"> Look, the sovereign master, the LORD who commands armies, is ready to cut off the branches with terrifying power. The tallest trees will be cut down, the loftiest ones will be brought low.</VERS>\n\t\t\t<VERS vnumber=\"34\"> The thickets of the forest will be chopped down with an ax, and mighty Lebanon will fall.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"11\">\n\t\t\t<VERS vnumber=\"1\"> A shoot will grow out of Jesse's root stock, a bud will sprout from his roots.</VERS>\n\t\t\t<VERS vnumber=\"2\"> The LORD's spirit will rest on him, a spirit that gives extraordinary wisdom, a spirit that provides the ability to execute plans, a spirit that produces absolute loyalty to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"3\"> He will take delight in obeying the LORD. He will not judge by mere appearances, or make decisions on the basis of hearsay.</VERS>\n\t\t\t<VERS vnumber=\"4\"> He will treat the poor fairly, and make right decisions for the downtrodden of the earth. He will strike the earth with the rod of his mouth, and order the wicked to be executed.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Justice will be like a belt around his waist, integrity will be like a belt around his hips.</VERS>\n\t\t\t<VERS vnumber=\"6\"> A wolf will reside with a lamb, and a leopard will lie down with a young goat; an ox and a young lion will graze together, as a small child leads them along.</VERS>\n\t\t\t<VERS vnumber=\"7\"> A cow and a bear will graze together, their young will lie down together. A lion, like an ox, will eat straw.</VERS>\n\t\t\t<VERS vnumber=\"8\"> A baby will play over the hole of a snake; over the nest of a serpent an infant will put his hand.</VERS>\n\t\t\t<VERS vnumber=\"9\"> They will no longer injure or destroy on my entire royal mountain. For there will be universal submission to the LORD's sovereignty, just as the waters completely cover the sea.</VERS>\n\t\t\t<VERS vnumber=\"10\"> At that time a root from Jesse will stand like a signal flag for the nations. Nations will look to him for guidance, and his residence will be majestic. </VERS>\n\t\t\t<VERS vnumber=\"11\"> At that time the sovereign master will again lift his hand to reclaim the remnant of his people from Assyria, Egypt, Pathros, Cush, Elam, Shinar, Hamath, and the seacoasts.</VERS>\n\t\t\t<VERS vnumber=\"12\"> He will lift a signal flag for the nations; he will gather Israel's dispersed people and assemble Judah's scattered people from the four corners of the earth.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Ephraim's jealousy will end, and Judah's hostility will be eliminated. Ephraim will no longer be jealous of Judah, and Judah will no longer be hostile toward Ephraim.</VERS>\n\t\t\t<VERS vnumber=\"14\"> They will swoop down on the Philistine hills to the west; together they will loot the people of the east. They will take over Edom and Moab, and the Ammonites will be their subjects.</VERS>\n\t\t\t<VERS vnumber=\"15\"> The LORD will divide the gulf of the Egyptian Sea; he will wave his hand over the Euphrates River and send a strong wind, he will turn it into seven dried-up streams, and enable them to walk across in their sandals.</VERS>\n\t\t\t<VERS vnumber=\"16\"> There will be a highway leading out of Assyria for the remnant of his people, just as there was for Israel, when they went up from the land of Egypt.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"12\">\n\t\t\t<VERS vnumber=\"1\"> At that time you will say: \"I praise you, O LORD, for even though you were angry with me, your anger subsided, and you consoled me.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Look, God is my deliverer! I will trust in him and not fear. For the LORD gives me strength and protects me; he has become my deliverer.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> Joyfully you will draw water from the springs of deliverance.</VERS>\n\t\t\t<VERS vnumber=\"4\"> At that time you will say: \"Praise the LORD! Ask him for help! Publicize his mighty acts among the nations! Make it known that he is unique!</VERS>\n\t\t\t<VERS vnumber=\"5\"> Sing to the LORD, for he has done magnificent things, let this be known throughout the earth!</VERS>\n\t\t\t<VERS vnumber=\"6\"> Cry out and shout for joy, O citizens of Zion, for the Holy One of Israel acts mightily among you!\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"13\">\n\t\t\t<VERS vnumber=\"1\">  This is a message about Babylon that God revealed to Isaiah son of Amoz:</VERS>\n\t\t\t<VERS vnumber=\"2\">  On a bare hill raise a signal flag, shout to them, wave your hand, so they might enter the gates of the princes!</VERS>\n\t\t\t<VERS vnumber=\"3\"> I have given orders to my chosen soldiers; I have summoned the warriors through whom I will vent my anger, my boasting, arrogant ones.</VERS>\n\t\t\t<VERS vnumber=\"4\">  There is a loud noise on the mountains, it sounds like a large army! There is great commotion among the kingdoms, nations are being assembled! The LORD who commands armies is mustering forces for battle.</VERS>\n\t\t\t<VERS vnumber=\"5\"> They come from a distant land, from the horizon. It is the LORD with his instruments of judgment, coming to destroy the whole earth.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Wail, for the LORD's day of judgment is near; it comes with all the destructive power of the sovereign judge.</VERS>\n\t\t\t<VERS vnumber=\"7\"> For this reason all hands hang limp, every human heart loses its courage.</VERS>\n\t\t\t<VERS vnumber=\"8\"> They panic, cramps and pain seize hold of them like those of a woman who is straining to give birth. They look at one another in astonishment; their faces are flushed red.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Look, the LORD's day of judgment is coming; it is a day of cruelty and savage, raging anger, destroying the earth and annihilating its sinners.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Indeed the stars in the sky and their constellations no longer give out their light; the sun is darkened as soon as it rises, and the moon does not shine.</VERS>\n\t\t\t<VERS vnumber=\"11\">  I will punish the world for its evil, and wicked people for their sin. I will put an end to the pride of the insolent, I will bring down the arrogance of tyrants.</VERS>\n\t\t\t<VERS vnumber=\"12\"> I will make human beings more scarce than pure gold, and people more scarce than gold from Ophir.</VERS>\n\t\t\t<VERS vnumber=\"13\"> So I will shake the heavens, and the earth will shake loose from its foundation, because of the fury of the LORD who commands armies, in the day he vents his raging anger.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Like a frightened gazelle or a sheep with no shepherd, each will turn toward home, each will run to his homeland.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Everyone who is caught will be stabbed; everyone who is seized will die by the sword.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Their children will be smashed to pieces before their very eyes; their houses will be looted and their wives raped.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Look, I am stirring up the Medes to attack them; they are not concerned about silver, nor are they interested in gold.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Their arrows will cut young men to ribbons; they have no compassion on a person's offspring, they will not look with pity on children.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Babylon, the most admired of kingdoms, the Chaldeans' source of honor and pride, will be destroyed by God just as Sodom and Gomorrah were.</VERS>\n\t\t\t<VERS vnumber=\"20\"> No one will live there again; no one will ever reside there again. No bedouin will camp there, no shepherds will rest their flocks there.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Wild animals will rest there, the ruined houses will be full of hyenas. Ostriches will live there, wild goats will skip among the ruins.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Wild dogs will yip in her ruined fortresses, jackals will yelp in the once-splendid palaces. Her time is almost up, her days will not be prolonged.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"14\">\n\t\t\t<VERS vnumber=\"1\"> The LORD will certainly have compassion on Jacob; he will again choose Israel as his special people and restore them to their land. Resident foreigners will join them and unite with the family of Jacob.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Nations will take them and bring them back to their own place. Then the family of Jacob will make foreigners their servants as they settle in the LORD's land. They will make their captors captives and rule over the ones who oppressed them. </VERS>\n\t\t\t<VERS vnumber=\"3\"> When the LORD gives you relief from your suffering and anxiety, and from the hard labor which you were made to perform, </VERS>\n\t\t\t<VERS vnumber=\"4\"> you will taunt the king of Babylon with these words: \"Look how the oppressor has met his end! Hostility has ceased!</VERS>\n\t\t\t<VERS vnumber=\"5\"> The LORD has broken the club of the wicked, the scepter of rulers.</VERS>\n\t\t\t<VERS vnumber=\"6\"> It furiously struck down nations with unceasing blows. It angrily ruled over nations, oppressing them without restraint.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The whole earth rests and is quiet; they break into song.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The evergreens also rejoice over your demise, as do the cedars of Lebanon, singing, 'Since you fell asleep, no woodsman comes up to chop us down!'</VERS>\n\t\t\t<VERS vnumber=\"9\"> Sheol below is stirred up about you, ready to meet you when you arrive. It rouses the spirits of the dead for you, all the former leaders of the earth; it makes all the former kings of the nations rise from their thrones.</VERS>\n\t\t\t<VERS vnumber=\"10\"> All of them respond to you, saying: 'You too have become weak like us! You have become just like us!</VERS>\n\t\t\t<VERS vnumber=\"11\"> Your splendor has been brought down to Sheol, as well as the sound of your stringed instruments. You lie on a bed of maggots, with a blanket of worms over you.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Look how you have fallen from the sky, O shining one, son of the dawn! You have been cut down to the ground, O conqueror of the nations!</VERS>\n\t\t\t<VERS vnumber=\"13\"> You said to yourself, \"I will climb up to the sky. Above the stars of El I will set up my throne. I will rule on the mountain of assembly on the remote slopes of Zaphon.</VERS>\n\t\t\t<VERS vnumber=\"14\"> I will climb up to the tops of the clouds; I will make myself like the Most High!\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> But you were brought down to Sheol, to the remote slopes of the pit.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Those who see you stare at you, they look at you carefully, thinking: \"Is this the man who shook the earth, the one who made kingdoms tremble?</VERS>\n\t\t\t<VERS vnumber=\"17\"> Is this the one who made the world like a desert, who ruined its cities, and refused to free his prisoners so they could return home?\"'</VERS>\n\t\t\t<VERS vnumber=\"18\">  As for all the kings of the nations, all of them lie down in splendor, each in his own tomb.</VERS>\n\t\t\t<VERS vnumber=\"19\"> But you have been thrown out of your grave like a shoot that is thrown away. You lie among the slain, among those who have been slashed by the sword, among those headed for the stones of the pit, as if you were a mangled corpse.</VERS>\n\t\t\t<VERS vnumber=\"20\"> You will not be buried with them, because you destroyed your land and killed your people. The offspring of the wicked will never be mentioned again.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Prepare to execute his sons for the sins their ancestors have committed. They must not rise up and take possession of the earth, or fill the surface of the world with cities.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> \"I will rise up against them,\" says the LORD who commands armies. \"I will blot out all remembrance of Babylon and destroy all her people, including the offspring she produces,\" says the LORD.</VERS>\n\t\t\t<VERS vnumber=\"23\"> \"I will turn her into a place that is overrun with wild animals and covered with pools of stagnant water. I will get rid of her, just as one sweeps away dirt with a broom,\" says the LORD who commands armies.</VERS>\n\t\t\t<VERS vnumber=\"24\">  The LORD who commands armies makes this solemn vow: \"Be sure of this: Just as I have intended, so it will be; just as I have planned, it will happen.</VERS>\n\t\t\t<VERS vnumber=\"25\"> I will break Assyria in my land, I will trample them underfoot on my hills. Their yoke will be removed from my people, the burden will be lifted from their shoulders.</VERS>\n\t\t\t<VERS vnumber=\"26\"> This is the plan I have devised for the whole earth; my hand is ready to strike all the nations.\"</VERS>\n\t\t\t<VERS vnumber=\"27\"> Indeed, the LORD who commands armies has a plan, and who can possibly frustrate it? His hand is ready to strike, and who can possibly stop it?</VERS>\n\t\t\t<VERS vnumber=\"28\"> In the year King Ahaz died, this message was revealed:</VERS>\n\t\t\t<VERS vnumber=\"29\"> Don't be so happy, all you Philistines, just because the club that beat you has been broken! For a viper will grow out of the serpent's root, and its fruit will be a darting adder.</VERS>\n\t\t\t<VERS vnumber=\"30\"> The poor will graze in my pastures; the needy will rest securely. But I will kill your root by famine; it will put to death all your survivors.</VERS>\n\t\t\t<VERS vnumber=\"31\"> Wail, O city gate! Cry out, O city! Melt with fear, all you Philistines! For out of the north comes a cloud of smoke, and there are no stragglers in its ranks.</VERS>\n\t\t\t<VERS vnumber=\"32\"> How will they respond to the messengers of this nation? Indeed, the LORD has made Zion secure; the oppressed among his people will find safety in her.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"15\">\n\t\t\t<VERS vnumber=\"1\"> Here is a message about Moab: Indeed, in a night it is devastated, Ar of Moab is destroyed! Indeed, in a night it is devastated, Kir of Moab is destroyed!</VERS>\n\t\t\t<VERS vnumber=\"2\"> They went up to the temple, the people of Dibon went up to the high places to lament. Because of what happened to Nebo and Medeba, Moab wails. Every head is shaved bare, every beard is trimmed off.</VERS>\n\t\t\t<VERS vnumber=\"3\"> In their streets they wear sackcloth; on their roofs and in their town squares all of them wail, they fall down weeping.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The people of Heshbon and Elealeh cry out, their voices are heard as far away as Jahaz. For this reason Moab's soldiers shout in distress; their courage wavers.</VERS>\n\t\t\t<VERS vnumber=\"5\"> My heart cries out because of Moab's plight, and for the fugitives stretched out as far as Zoar and Eglath Shelishiyah. For they weep as they make their way up the ascent of Luhith; they loudly lament their demise on the road to Horonaim.</VERS>\n\t\t\t<VERS vnumber=\"6\"> For the waters of Nimrim are gone; the grass is dried up, the vegetation has disappeared, and there are no plants.</VERS>\n\t\t\t<VERS vnumber=\"7\"> For this reason what they have made and stored up, they carry over the Stream of the Poplars.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Indeed, the cries of distress echo throughout Moabite territory; their wailing can be heard in Eglaim and Beer Elim.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Indeed, the waters of Dimon are full of blood! Indeed, I will heap even more trouble on Dimon. A lion will attack the Moabite fugitives and the people left in the land.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"16\">\n\t\t\t<VERS vnumber=\"1\"> Send rams as tribute to the ruler of the land, from Sela in the desert to the hill of Daughter Zion.</VERS>\n\t\t\t<VERS vnumber=\"2\"> At the fords of the Arnon the Moabite women are like a bird that flies about when forced from its nest.</VERS>\n\t\t\t<VERS vnumber=\"3\"> \"Bring a plan, make a decision! Provide some shade in the middle of the day! Hide the fugitives! Do not betray the one who tries to escape!</VERS>\n\t\t\t<VERS vnumber=\"4\"> Please let the Moabite fugitives live among you. Hide them from the destroyer!\" Certainly the one who applies pressure will cease, the destroyer will come to an end, those who trample will disappear from the earth.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Then a trustworthy king will be established; he will rule in a reliable manner, this one from David's family. He will be sure to make just decisions and will be experienced in executing justice.</VERS>\n\t\t\t<VERS vnumber=\"6\"> We have heard about Moab's pride, their great arrogance, their boasting, pride, and excess. But their boastful claims are empty!</VERS>\n\t\t\t<VERS vnumber=\"7\"> So Moab wails over its demise, they all wail! Completely devastated, they moan about what has happened to the raisin cakes of Kir Hareseth.</VERS>\n\t\t\t<VERS vnumber=\"8\"> For the fields of Heshbon are dried up, as well as the vines of Sibmah. The rulers of the nations trample all over its vines, which reach Jazer and spread to the desert; their shoots spread out and cross the sea.</VERS>\n\t\t\t<VERS vnumber=\"9\"> So I weep along with Jazer over the vines of Sibmah. I will saturate you with my tears, Heshbon and Elealeh, for the conquering invaders shout triumphantly over your fruit and crops.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Joy and happiness disappear from the orchards, and in the vineyards no one rejoices or shouts; no one treads out juice in the wine vats, I have brought the joyful shouts to an end.</VERS>\n\t\t\t<VERS vnumber=\"11\"> So my heart constantly sighs for Moab, like the strumming of a harp, my inner being sighs for Kir Hareseth.</VERS>\n\t\t\t<VERS vnumber=\"12\"> When the Moabites plead with all their might at their high places, and enter their temples to pray, their prayers will be ineffective!</VERS>\n\t\t\t<VERS vnumber=\"13\"> This is the message the LORD previously announced about Moab.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Now the LORD makes this announcement: \"Within exactly three years Moab's splendor will disappear, along with all her many people; there will be just a few, insignificant survivors left.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"17\">\n\t\t\t<VERS vnumber=\"1\"> Here is a message about Damascus: \"Look, Damascus is no longer a city, it is a heap of ruins!</VERS>\n\t\t\t<VERS vnumber=\"2\"> The cities of Aroer are abandoned. They will be used for herds, which will lie down there in peace.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Fortified cities will disappear from Ephraim, and Damascus will lose its kingdom. The survivors in Syria will end up like the splendor of the Israelites,\" says the LORD who commands armies.</VERS>\n\t\t\t<VERS vnumber=\"4\"> \"At that time Jacob's splendor will be greatly diminished, and he will become skin and bones.</VERS>\n\t\t\t<VERS vnumber=\"5\"> It will be as when one gathers the grain harvest, and his hand gleans the ear of grain. It will be like one gathering the ears of grain in the Valley of Rephaim.</VERS>\n\t\t\t<VERS vnumber=\"6\"> There will be some left behind, like when an olive tree is beaten, two or three ripe olives remain toward the very top, four or five on its fruitful branches,\" says the LORD God of Israel.</VERS>\n\t\t\t<VERS vnumber=\"7\"> At that time men will trust in their creator; they will depend on the Holy One of Israel.</VERS>\n\t\t\t<VERS vnumber=\"8\"> They will no longer trust in the altars their hands made, or depend on the Asherah poles and incense altars their fingers made.</VERS>\n\t\t\t<VERS vnumber=\"9\"> At that time their fortified cities will be like the abandoned summits of the Amorites, which they abandoned because of the Israelites; there will be desolation.</VERS>\n\t\t\t<VERS vnumber=\"10\"> For you ignore the God who rescues you; you pay no attention to your strong protector. So this is what happens: You cultivate beautiful plants and plant exotic vines.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The day you begin cultivating, you do what you can to make it grow; the morning you begin planting, you do what you can to make it sprout. Yet the harvest will disappear in the day of disease and incurable pain.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The many nations massing together are as good as dead, those who make a commotion as loud as the roaring of the sea's waves. The people making such an uproar are as good as dead, those who make an uproar as loud as the roaring of powerful waves.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Though these people make an uproar as loud as the roaring of powerful waves, when he shouts at them, they will flee to a distant land, driven before the wind like dead weeds on the hills, or like dead thistles before a strong gale.</VERS>\n\t\t\t<VERS vnumber=\"14\"> In the evening there is sudden terror; by morning they vanish. This is the fate of those who try to plunder us, the destiny of those who try to loot us!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"18\">\n\t\t\t<VERS vnumber=\"1\"> The land of buzzing wings is as good as dead, the one beyond the rivers of Cush,</VERS>\n\t\t\t<VERS vnumber=\"2\"> that sends messengers by sea, who glide over the water's surface in boats made of papyrus. Go, you swift messengers, to a nation of tall, smooth-skinned people, to a people that are feared far and wide, to a nation strong and victorious, whose land rivers divide.</VERS>\n\t\t\t<VERS vnumber=\"3\"> All you who live in the world, who reside on the earth, you will see a signal flag raised on the mountains; you will hear a trumpet being blown.</VERS>\n\t\t\t<VERS vnumber=\"4\"> For this is what the LORD has told me: \"I will wait and watch from my place, like scorching heat produced by the sunlight, like a cloud of mist in the heat of harvest.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> For before the harvest, when the bud has sprouted, and the ripening fruit appears, he will cut off the unproductive shoots with pruning knives; he will prune the tendrils.</VERS>\n\t\t\t<VERS vnumber=\"6\"> They will all be left for the birds of the hills and the wild animals; the birds will eat them during the summer, and all the wild animals will eat them during the winter.</VERS>\n\t\t\t<VERS vnumber=\"7\"> At that time tribute will be brought to the LORD who commands armies, by a people that are tall and smooth-skinned, a people that are feared far and wide, a nation strong and victorious, whose land rivers divide. The tribute will be brought to the place where the LORD who commands armies has chosen to reside, on Mount Zion.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"19\">\n\t\t\t<VERS vnumber=\"1\"> Here is a message about Egypt: Look, the LORD rides on a swift-moving cloud and approaches Egypt. The idols of Egypt tremble before him; the Egyptians lose their courage.</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"I will provoke civil strife in Egypt, brothers will fight with each other, as will neighbors, cities, and kingdoms.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The Egyptians will panic, and I will confuse their strategy. They will seek guidance from the idols and from the spirits of the dead, from the pits used to conjure up underworld spirits, and from the magicians.</VERS>\n\t\t\t<VERS vnumber=\"4\"> I will hand Egypt over to a harsh master; a powerful king will rule over them,\" says the sovereign master, the LORD who commands armies.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The water of the sea will be dried up, and the river will dry up and be empty.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The canals will stink; the streams of Egypt will trickle and then dry up; the bulrushes and reeds will decay,</VERS>\n\t\t\t<VERS vnumber=\"7\"> along with the plants by the mouth of the river. All the cultivated land near the river will turn to dust and be blown away.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The fishermen will mourn and lament, all those who cast a fishhook into the river, and those who spread out a net on the water's surface will grieve.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Those who make clothes from combed flax will be embarrassed; those who weave will turn pale.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Those who make cloth will be demoralized; all the hired workers will be depressed.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The officials of Zoan are nothing but fools; Pharaoh's wise advisers give stupid advice. How dare you say to Pharaoh, \"I am one of the sages, one well-versed in the writings of the ancient kings?\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> But where, oh where, are your wise men? Let them tell you, let them find out what the LORD who commands armies has planned for Egypt.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The officials of Zoan are fools, the officials of Memphis are misled; the rulers of her tribes lead Egypt astray.</VERS>\n\t\t\t<VERS vnumber=\"14\"> The LORD has made them undiscerning; they lead Egypt astray in all she does, so that she is like a drunk sliding around in his own vomit.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Egypt will not be able to do a thing, head or tail, shoots and stalk.</VERS>\n\t\t\t<VERS vnumber=\"16\"> At that time the Egyptians will be like women. They will tremble and fear because the LORD who commands armies brandishes his fist against them.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The land of Judah will humiliate Egypt. Everyone who hears about Judah will be afraid because of what the LORD who commands armies is planning to do to them.</VERS>\n\t\t\t<VERS vnumber=\"18\"> At that time five cities in the land of Egypt will speak the language of Canaan and swear allegiance to the LORD who commands armies. One will be called the City of the Sun.</VERS>\n\t\t\t<VERS vnumber=\"19\"> At that time there will be an altar for the LORD in the middle of the land of Egypt, as well as a sacred pillar dedicated to the LORD at its border. </VERS>\n\t\t\t<VERS vnumber=\"20\"> It will become a visual reminder in the land of Egypt of the LORD who commands armies. When they cry out to the LORD because of oppressors, he will send them a deliverer and defender who will rescue them. </VERS>\n\t\t\t<VERS vnumber=\"21\"> The LORD will reveal himself to the Egyptians, and they will acknowledge the LORD's authority at that time. They will present sacrifices and offerings; they will make vows to the LORD and fulfill them.</VERS>\n\t\t\t<VERS vnumber=\"22\"> The LORD will strike Egypt, striking and then healing them. They will turn to the LORD and he will listen to their prayers and heal them.</VERS>\n\t\t\t<VERS vnumber=\"23\"> At that time there will be a highway from Egypt to Assyria. The Assyrians will visit Egypt, and the Egyptians will visit Assyria. The Egyptians and Assyrians will worship together.</VERS>\n\t\t\t<VERS vnumber=\"24\"> At that time Israel will be the third member of the group, along with Egypt and Assyria, and will be a recipient of blessing in the earth.</VERS>\n\t\t\t<VERS vnumber=\"25\"> The LORD who commands armies will pronounce a blessing over the earth, saying, \"Blessed be my people, Egypt, and the work of my hands, Assyria, and my special possession, Israel!\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"20\">\n\t\t\t<VERS vnumber=\"1\"> The LORD revealed the following message during the year in which King Sargon of Assyria sent his commanding general to Ashdod, and he fought against it and captured it.</VERS>\n\t\t\t<VERS vnumber=\"2\"> At that time the LORD announced through Isaiah son of Amoz: \"Go, remove the sackcloth from your waist and take your sandals off your feet.\" He did as instructed and walked around in undergarments and barefoot.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Later the LORD explained, \"In the same way that my servant Isaiah has walked around in undergarments and barefoot for the past three years, as an object lesson and omen pertaining to Egypt and Cush,</VERS>\n\t\t\t<VERS vnumber=\"4\"> so the king of Assyria will lead away the captives of Egypt and the exiles of Cush, both young and old. They will be in undergarments and barefoot, with the buttocks exposed; the Egyptians will be publicly humiliated.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Those who put their hope in Cush and took pride in Egypt will be afraid and embarrassed.</VERS>\n\t\t\t<VERS vnumber=\"6\"> At that time those who live on this coast will say, 'Look what has happened to our source of hope to whom we fled for help, expecting to be rescued from the king of Assyria! How can we escape now?'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"21\">\n\t\t\t<VERS vnumber=\"1\"> Here is a message about the Desert by the Sea: Like strong winds blowing in the south, one invades from the desert, from a land that is feared.</VERS>\n\t\t\t<VERS vnumber=\"2\"> I have received a distressing message: \"The deceiver deceives, the destroyer destroys. Attack, you Elamites! Lay siege, you Medes! I will put an end to all the groaning!\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> For this reason my stomach churns; cramps overwhelm me like the contractions of a woman in labor. I am disturbed by what I hear, horrified by what I see.</VERS>\n\t\t\t<VERS vnumber=\"4\"> My heart palpitates, I shake in fear; the twilight I desired has brought me terror.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Arrange the table, lay out the carpet, eat and drink! Get up, you officers, smear oil on the shields!</VERS>\n\t\t\t<VERS vnumber=\"6\"> For this is what the sovereign master has told me: \"Go, post a guard! He must report what he sees.</VERS>\n\t\t\t<VERS vnumber=\"7\"> When he sees chariots, teams of horses, riders on donkeys, riders on camels, he must be alert, very alert.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> Then the guard cries out: \"On the watchtower, O sovereign master, I stand all day long; at my post I am stationed every night.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Look what's coming! A charioteer, a team of horses.\" When questioned, he replies, \"Babylon has fallen, fallen! All the idols of her gods lie shattered on the ground!\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> O my downtrodden people, crushed like stalks on the threshing floor, what I have heard from the LORD who commands armies, the God of Israel, I have reported to you.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Here is a message about Dumah: Someone calls to me from Seir, \"Watchman, what is left of the night? Watchman, what is left of the night?\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> The watchman replies, \"Morning is coming, but then night. If you want to ask, ask; come back again.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> Here is a message about Arabia: In the thicket of Arabia you spend the night, you Dedanite caravans.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Bring out some water for the thirsty. You who live in the land of Tema, bring some food for the fugitives.</VERS>\n\t\t\t<VERS vnumber=\"15\"> For they flee from the swords, from the drawn sword and from the battle-ready bow and from the severity of the battle.</VERS>\n\t\t\t<VERS vnumber=\"16\"> For this is what the sovereign master has told me: \"Within exactly one year all the splendor of Kedar will come to an end. </VERS>\n\t\t\t<VERS vnumber=\"17\"> Just a handful of archers, the warriors of Kedar, will be left.\" Indeed, the LORD God of Israel has spoken.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"22\">\n\t\t\t<VERS vnumber=\"1\"> Here is a message about the Valley of Vision: What is the reason that all of you go up to the rooftops?</VERS>\n\t\t\t<VERS vnumber=\"2\"> The noisy city is full of raucous sounds; the town is filled with revelry. Your slain were not cut down by the sword; they did not die in battle.</VERS>\n\t\t\t<VERS vnumber=\"3\">  All your leaders ran away together, they fled to a distant place; all your refugees were captured together, they were captured without a single arrow being shot.</VERS>\n\t\t\t<VERS vnumber=\"4\"> So I say: \"Don't look at me! I am weeping bitterly. Don't try to console me concerning the destruction of my defenseless people.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> For the sovereign master, the LORD who commands armies, has planned a day of panic, defeat, and confusion. In the Valley of Vision people shout and cry out to the hill.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The Elamites picked up the quiver, and came with chariots and horsemen; the men of Kir prepared the shield.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Your very best valleys were full of chariots; horsemen confidently took their positions at the gate.</VERS>\n\t\t\t<VERS vnumber=\"8\"> They removed the defenses of Judah. At that time you looked for the weapons in the House of the Forest.</VERS>\n\t\t\t<VERS vnumber=\"9\"> You saw the many breaks in the walls of the city of David; you stored up water in the lower pool.</VERS>\n\t\t\t<VERS vnumber=\"10\"> You counted the houses in Jerusalem, and demolished houses so you could have material to reinforce the wall.</VERS>\n\t\t\t<VERS vnumber=\"11\"> You made a reservoir between the two walls for the water of the old pool, but you did not trust in the one who made it; you did not depend on the one who formed it long ago!</VERS>\n\t\t\t<VERS vnumber=\"12\"> At that time the sovereign master, the LORD who commands armies, called for weeping and mourning, for shaved heads and sackcloth.</VERS>\n\t\t\t<VERS vnumber=\"13\"> But look, there is outright celebration! You say, \"Kill the ox and slaughter the sheep, eat meat and drink wine. Eat and drink, for tomorrow we die!\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> The LORD who commands armies told me this: \"Certainly this sin will not be forgiven as long as you live,\" says the sovereign master, the LORD who commands armies.</VERS>\n\t\t\t<VERS vnumber=\"15\"> This is what the sovereign master, the LORD who commands armies, says: \"Go visit this administrator, Shebna, who supervises the palace, and tell him:</VERS>\n\t\t\t<VERS vnumber=\"16\"> 'What right do you have to be here? What relatives do you have buried here? Why do you chisel out a tomb for yourself here? He chisels out his burial site in an elevated place, he carves out his tomb on a cliff.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Look, the LORD will throw you far away, you mere man! He will wrap you up tightly.</VERS>\n\t\t\t<VERS vnumber=\"18\"> He will wind you up tightly into a ball and throw you into a wide, open land. There you will die, and there with you will be your impressive chariots, which bring disgrace to the house of your master.</VERS>\n\t\t\t<VERS vnumber=\"19\"> I will remove you from your office; you will be thrown down from your position.</VERS>\n\t\t\t<VERS vnumber=\"20\"> \"At that time I will summon my servant Eliakim, son of Hilkiah. </VERS>\n\t\t\t<VERS vnumber=\"21\"> I will put your robe on him, tie your belt around him, and transfer your authority to him. He will become a protector of the residents of Jerusalem and of the people of Judah. </VERS>\n\t\t\t<VERS vnumber=\"22\"> I will place the key to the house of David on his shoulder. When he opens the door, no one can close it; when he closes the door, no one can open it. </VERS>\n\t\t\t<VERS vnumber=\"23\"> I will fasten him like a peg into a solid place; he will bring honor and respect to his father's family.</VERS>\n\t\t\t<VERS vnumber=\"24\"> His father's family will gain increasing prominence because of him, including the offspring and the offshoots. All the small containers, including the bowls and all the jars will hang from this peg.'</VERS>\n\t\t\t<VERS vnumber=\"25\"> \"At that time,\" says the LORD who commands armies, \"the peg fastened into a solid place will come loose. It will be cut off and fall, and the load hanging on it will be cut off.\" Indeed, the LORD has spoken.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"23\">\n\t\t\t<VERS vnumber=\"1\"> Here is a message about Tyre: Wail, you large ships, for the port is too devastated to enter! From the land of Cyprus this news is announced to them.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Lament, you residents of the coast, you merchants of Sidon who travel over the sea, whose agents sail over </VERS>\n\t\t\t<VERS vnumber=\"3\"> the deep waters! Grain from the Shihor region, crops grown near the Nile she receives; she is the trade center of the nations.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Be ashamed, O Sidon, for the sea says this, O fortress of the sea: \"I have not gone into labor or given birth; I have not raised young men or brought up young women.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> When the news reaches Egypt, they will be shaken by what has happened to Tyre.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Travel to Tarshish! Wail, you residents of the coast!</VERS>\n\t\t\t<VERS vnumber=\"7\"> Is this really your boisterous city whose origins are in the distant past, and whose feet led her to a distant land to reside?</VERS>\n\t\t\t<VERS vnumber=\"8\"> Who planned this for royal Tyre, whose merchants are princes, whose traders are the dignitaries of the earth?</VERS>\n\t\t\t<VERS vnumber=\"9\"> The LORD who commands armies planned it, to dishonor the pride that comes from all her beauty, to humiliate all the dignitaries of the earth.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Daughter Tarshish, travel back to your land, as one crosses the Nile; there is no longer any marketplace in Tyre.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The LORD stretched out his hand over the sea, he shook kingdoms; he gave the order to destroy Canaan's fortresses.</VERS>\n\t\t\t<VERS vnumber=\"12\"> He said, \"You will no longer celebrate, oppressed virgin daughter Sidon! Get up, travel to Cyprus, but you will find no relief there.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> Look at the land of the Chaldeans, these people who have lost their identity! The Assyrians have made it a home for wild animals. They erected their siege towers, demolished its fortresses, and turned it into a heap of ruins.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Wail, you large ships, for your fortress is destroyed!</VERS>\n\t\t\t<VERS vnumber=\"15\"> At that time Tyre will be forgotten for seventy years, the typical life span of a king. At the end of seventy years Tyre will try to attract attention again, like the prostitute in the popular song:</VERS>\n\t\t\t<VERS vnumber=\"16\"> \"Take the harp, go through the city, forgotten prostitute! Play it well, play lots of songs, so you'll be noticed!\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> At the end of seventy years the LORD will revive Tyre. She will start making money again by selling her services to all the earth's kingdoms.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Her profits and earnings will be set apart for the LORD. They will not be stored up or accumulated, for her profits will be given to those who live in the LORD's presence and will be used to purchase large quantities of food and beautiful clothes.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"24\">\n\t\t\t<VERS vnumber=\"1\"> Look, the LORD is ready to devastate the earth and leave it in ruins; he will mar its surface and scatter its inhabitants.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Everyone will suffer, the priest as well as the people, the master as well as the servant, the elegant lady as well as the female attendant, the seller as well as the buyer, the borrower as well as the lender, the creditor as well as the debtor.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The earth will be completely devastated and thoroughly ransacked. For the LORD has decreed this judgment.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The earth dries up and withers, the world shrivels up and withers; the prominent people of the earth fade away.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The earth is defiled by its inhabitants, for they have violated laws, disregarded the regulation, and broken the permanent treaty.</VERS>\n\t\t\t<VERS vnumber=\"6\"> So a treaty curse devours the earth; its inhabitants pay for their guilt. This is why the inhabitants of the earth disappear, and are reduced to just a handful of people.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The new wine dries up, the vines shrivel up, all those who like to celebrate groan.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The happy sound of the tambourines stops, the revelry of those who celebrate comes to a halt, the happy sound of the harp ceases.</VERS>\n\t\t\t<VERS vnumber=\"9\"> They no longer sing and drink wine; the beer tastes bitter to those who drink it.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The ruined town is shattered; all of the houses are shut up tight.</VERS>\n\t\t\t<VERS vnumber=\"11\"> They howl in the streets because of what happened to the wine; all joy turns to sorrow; celebrations disappear from the earth.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The city is left in ruins; the gate is reduced to rubble.</VERS>\n\t\t\t<VERS vnumber=\"13\"> This is what will happen throughout the earth, among the nations. It will be like when they beat an olive tree, and just a few olives are left at the end of the harvest.</VERS>\n\t\t\t<VERS vnumber=\"14\"> They lift their voices and shout joyfully; they praise the majesty of the LORD in the west.</VERS>\n\t\t\t<VERS vnumber=\"15\"> So in the east extol the LORD, along the seacoasts extol the fame of the LORD God of Israel.</VERS>\n\t\t\t<VERS vnumber=\"16\"> From the ends of the earth we hear songs, the Just One is majestic. But I say, \"I'm wasting away! I'm wasting away! I'm doomed! Deceivers deceive, deceivers thoroughly deceive!\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> Terror, pit, and snare are ready to overtake you inhabitants of the earth!</VERS>\n\t\t\t<VERS vnumber=\"18\"> The one who runs away from the sound of the terror will fall into the pit; the one who climbs out of the pit, will be trapped by the snare. For the floodgates of the heavens are opened up and the foundations of the earth shake.</VERS>\n\t\t\t<VERS vnumber=\"19\"> The earth is broken in pieces, the earth is ripped to shreds, the earth shakes violently.</VERS>\n\t\t\t<VERS vnumber=\"20\"> The earth will stagger around like a drunk; it will sway back and forth like a hut in a windstorm. Its sin will weigh it down, and it will fall and never get up again.</VERS>\n\t\t\t<VERS vnumber=\"21\"> At that time the LORD will punish the heavenly forces in the heavens and the earthly kings on the earth.</VERS>\n\t\t\t<VERS vnumber=\"22\"> They will be imprisoned in a pit, locked up in a prison, and after staying there for a long time, they will be punished.</VERS>\n\t\t\t<VERS vnumber=\"23\"> The full moon will be covered up, the bright sun will be darkened; for the LORD who commands armies will rule on Mount Zion in Jerusalem in the presence of his assembly, in majestic splendor.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"25\">\n\t\t\t<VERS vnumber=\"1\"> O LORD, you are my God! I will exalt you in praise, I will extol your fame. For you have done extraordinary things, and executed plans made long ago exactly as you decreed.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Indeed, you have made the city into a heap of rubble, the fortified town into a heap of ruins; the fortress of foreigners is no longer a city, it will never be rebuilt.</VERS>\n\t\t\t<VERS vnumber=\"3\"> So a strong nation will extol you; the towns of powerful nations will fear you.</VERS>\n\t\t\t<VERS vnumber=\"4\"> For you are a protector for the poor, a protector for the needy in their distress, a shelter from the rainstorm, a shade from the heat. Though the breath of tyrants is like a winter rainstorm,</VERS>\n\t\t\t<VERS vnumber=\"5\"> like heat in a dry land, you humble the boasting foreigners. Just as the shadow of a cloud causes the heat to subside, so he causes the song of tyrants to cease.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The LORD who commands armies will hold a banquet for all the nations on this mountain. At this banquet there will be plenty of meat and aged wine, tender meat and choicest wine.</VERS>\n\t\t\t<VERS vnumber=\"7\"> On this mountain he will swallow up the shroud that is over all the peoples, the woven covering that is over all the nations;</VERS>\n\t\t\t<VERS vnumber=\"8\"> he will swallow up death permanently. The sovereign LORD will wipe away the tears from every face, and remove his people's disgrace from all the earth. Indeed, the LORD has announced it!</VERS>\n\t\t\t<VERS vnumber=\"9\"> At that time they will say, \"Look, here is our God! We waited for him and he delivered us. Here is the LORD! We waited for him. Let's rejoice and celebrate his deliverance!\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> For the LORD's power will make this mountain secure. Moab will be trampled down where it stands, as a heap of straw is trampled down in a manure pile.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Moab will spread out its hands in the middle of it, just as a swimmer spreads his hands to swim; the LORD will bring down Moab's pride as it spreads its hands.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The fortified city (along with the very tops of your walls) he will knock down, he will bring it down, he will throw it down to the dusty ground.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"26\">\n\t\t\t<VERS vnumber=\"1\"> At that time this song will be sung in the land of Judah: \"We have a strong city! The LORD's deliverance, like walls and a rampart, makes it secure.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Open the gates so a righteous nation can enter, one that remains trustworthy.</VERS>\n\t\t\t<VERS vnumber=\"3\"> You keep completely safe the people who maintain their faith, for they trust in you.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Trust in the LORD from this time forward, even in Yah, the LORD, an enduring protector!</VERS>\n\t\t\t<VERS vnumber=\"5\"> Indeed, the LORD knocks down those who live in a high place, he brings down an elevated town; he brings it down to the ground, he throws it down to the dust.</VERS>\n\t\t\t<VERS vnumber=\"6\"> It is trampled underfoot by the feet of the oppressed, by the soles of the poor.\"</VERS>\n\t\t\t<VERS vnumber=\"7\">  The way of the righteous is level, the path of the righteous that you make is straight.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Yes, as your judgments unfold, O LORD, we wait for you. We desire your fame and reputation to grow.</VERS>\n\t\t\t<VERS vnumber=\"9\"> I look for you during the night, my spirit within me seeks you at dawn, for when your judgments come upon the earth, those who live in the world learn about justice.</VERS>\n\t\t\t<VERS vnumber=\"10\"> If the wicked are shown mercy, they do not learn about justice. Even in a land where right is rewarded, they act unjustly; they do not see the LORD's majesty revealed.</VERS>\n\t\t\t<VERS vnumber=\"11\"> O LORD, you are ready to act, but they don't even notice. They will see and be put to shame by your angry judgment against humankind, yes, fire will consume your enemies.</VERS>\n\t\t\t<VERS vnumber=\"12\"> O LORD, you make us secure, for even all we have accomplished, you have done for us.</VERS>\n\t\t\t<VERS vnumber=\"13\"> O LORD, our God, masters other than you have ruled us, but we praise your name alone.</VERS>\n\t\t\t<VERS vnumber=\"14\"> The dead do not come back to life, the spirits of the dead do not rise. That is because you came in judgment and destroyed them, you wiped out all memory of them.</VERS>\n\t\t\t<VERS vnumber=\"15\"> You have made the nation larger, O LORD, you have made the nation larger and revealed your splendor, you have extended all the borders of the land.</VERS>\n\t\t\t<VERS vnumber=\"16\"> O LORD, in distress they looked for you; they uttered incantations because of your discipline.</VERS>\n\t\t\t<VERS vnumber=\"17\"> As when a pregnant woman gets ready to deliver and strains and cries out because of her labor pains, so were we because of you, O LORD.</VERS>\n\t\t\t<VERS vnumber=\"18\"> We were pregnant, we strained, we gave birth, as it were, to wind. We cannot produce deliverance on the earth; people to populate the world are not born.</VERS>\n\t\t\t<VERS vnumber=\"19\">  Your dead will come back to life; your corpses will rise up. Wake up and shout joyfully, you who live in the ground! For you will grow like plants drenched with the morning dew, and the earth will bring forth its dead spirits.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Go, my people! Enter your inner rooms! Close your doors behind you! Hide for a little while, until his angry judgment is over!</VERS>\n\t\t\t<VERS vnumber=\"21\"> For look, the LORD is coming out of the place where he lives, to punish the sin of those who live on the earth. The earth will display the blood shed on it; it will no longer cover up its slain.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"27\">\n\t\t\t<VERS vnumber=\"1\"> At that time the LORD will punish with his destructive, great, and powerful sword Leviathan the fast-moving serpent, Leviathan the squirming serpent; he will kill the sea monster.</VERS>\n\t\t\t<VERS vnumber=\"2\"> When that time comes, sing about a delightful vineyard!</VERS>\n\t\t\t<VERS vnumber=\"3\"> I, the LORD, protect it; I water it regularly. I guard it night and day, so no one can harm it.</VERS>\n\t\t\t<VERS vnumber=\"4\"> I am not angry. I wish I could confront some thorns and briers! Then I would march against them for battle; I would set them all on fire,</VERS>\n\t\t\t<VERS vnumber=\"5\"> unless they became my subjects and made peace with me; let them make peace with me.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The time is coming when Jacob will take root; Israel will blossom and grow branches. The produce will fill the surface of the world.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Has the LORD struck down Israel like he did their oppressors? Has Israel been killed like their enemies?</VERS>\n\t\t\t<VERS vnumber=\"8\"> When you summon her for divorce, you prosecute her; he drives her away with his strong wind in the day of the east wind.</VERS>\n\t\t\t<VERS vnumber=\"9\"> So in this way Jacob's sin will be forgiven, and this is how they will show they are finished sinning: They will make all the stones of the altars like crushed limestone, and the Asherah poles and the incense altars will no longer stand.</VERS>\n\t\t\t<VERS vnumber=\"10\"> For the fortified city is left alone; it is a deserted settlement and abandoned like the desert. Calves graze there; they lie down there and eat its branches bare.</VERS>\n\t\t\t<VERS vnumber=\"11\"> When its branches get brittle, they break; women come and use them for kindling. For these people lack understanding, therefore the one who made them has no compassion on them; the one who formed them has no mercy on them.</VERS>\n\t\t\t<VERS vnumber=\"12\"> At that time the LORD will shake the tree, from the Euphrates River to the Stream of Egypt. Then you will be gathered up one by one, O Israelites.</VERS>\n\t\t\t<VERS vnumber=\"13\"> At that time a large trumpet will be blown, and the ones lost in the land of Assyria will come, as well as the refugees in the land of Egypt. They will worship the LORD on the holy mountain in Jerusalem.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"28\">\n\t\t\t<VERS vnumber=\"1\"> The splendid crown of Ephraim's drunkards is doomed, the withering flower, its beautiful splendor, situated at the head of a rich valley, the crown of those overcome with wine.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Look, the sovereign master sends a strong, powerful one. With the force of a hailstorm or a destructive windstorm, with the might of a driving, torrential rainstorm, he will knock that crown to the ground with his hand.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The splendid crown of Ephraim's drunkards will be trampled underfoot.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The withering flower, its beautiful splendor, situated at the head of a rich valley, will be like an early fig before harvest, as soon as someone notices it, he grabs it and swallows it.</VERS>\n\t\t\t<VERS vnumber=\"5\"> At that time the LORD who commands armies will become a beautiful crown and a splendid diadem for the remnant of his people.</VERS>\n\t\t\t<VERS vnumber=\"6\"> He will give discernment to the one who makes judicial decisions, and strength to those who defend the city from attackers.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Even these men stagger because of wine, they stumble around because of beer, priests and prophets stagger because of beer, they are confused because of wine, they stumble around because of beer; they stagger while seeing prophetic visions, they totter while making legal decisions.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Indeed, all the tables are covered with vomit; no place is untouched.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Who is the LORD trying to teach? To whom is he explaining a message? Those just weaned from milk! Those just taken from their mother's breast!</VERS>\n\t\t\t<VERS vnumber=\"10\"> Indeed, they will hear meaningless gibberish, senseless babbling, a syllable here, a syllable there.</VERS>\n\t\t\t<VERS vnumber=\"11\"> For with mocking lips and a foreign tongue he will speak to these people.</VERS>\n\t\t\t<VERS vnumber=\"12\"> In the past he said to them, \"This is where security can be found. Provide security for the one who is exhausted! This is where rest can be found.\" But they refused to listen.</VERS>\n\t\t\t<VERS vnumber=\"13\"> So the LORD's word to them will sound like meaningless gibberish, senseless babbling, a syllable here, a syllable there. As a result, they will fall on their backsides when they try to walk, and be injured, ensnared, and captured.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Therefore, listen to the LORD's word, you who mock, you rulers of these people who reside in Jerusalem!</VERS>\n\t\t\t<VERS vnumber=\"15\"> For you say, \"We have made a treaty with death, with Sheol we have made an agreement. When the overwhelming judgment sweeps by it will not reach us. For we have made a lie our refuge, we have hidden ourselves in a deceitful word.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> Therefore, this is what the sovereign master, the LORD, says: \"Look, I am laying a stone in Zion, an approved stone, set in place as a precious cornerstone for the foundation. The one who maintains his faith will not panic.</VERS>\n\t\t\t<VERS vnumber=\"17\"> I will make justice the measuring line, fairness the plumb line; hail will sweep away the unreliable refuge, the floodwaters will overwhelm the hiding place.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Your treaty with death will be dissolved; your agreement with Sheol will not last. When the overwhelming judgment sweeps by, you will be overrun by it.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Whenever it sweeps by, it will overtake you; indeed, every morning it will sweep by, it will come through during the day and the night.\" When this announcement is understood, it will cause nothing but terror.</VERS>\n\t\t\t<VERS vnumber=\"20\"> For the bed is too short to stretch out on, and the blanket is too narrow to wrap around oneself.</VERS>\n\t\t\t<VERS vnumber=\"21\"> For the LORD will rise up, as he did at Mount Perazim, he will rouse himself, as he did in the Valley of Gibeon, to accomplish his work, his peculiar work, to perform his task, his strange task.</VERS>\n\t\t\t<VERS vnumber=\"22\"> So now, do not mock, or your chains will become heavier! For I have heard a message about decreed destruction, from the sovereign master, the LORD who commands armies, against the entire land.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Pay attention and listen to my message! Be attentive and listen to what I have to say!</VERS>\n\t\t\t<VERS vnumber=\"24\"> Does a farmer just keep on plowing at planting time? Does he keep breaking up and harrowing his ground?</VERS>\n\t\t\t<VERS vnumber=\"25\"> Once he has leveled its surface, does he not scatter the seed of the caraway plant, sow the seed of the cumin plant, and plant the wheat, barley, and grain in their designated places?</VERS>\n\t\t\t<VERS vnumber=\"26\"> His God instructs him; he teaches him the principles of agriculture.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Certainly caraway seed is not threshed with a sledge, nor is the wheel of a cart rolled over cumin seed. Certainly caraway seed is beaten with a stick, and cumin seed with a flail.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Grain is crushed, though one certainly does not thresh it forever. The wheel of one's wagon rolls over it, but his horses do not crush it.</VERS>\n\t\t\t<VERS vnumber=\"29\"> This also comes from the LORD who commands armies, who gives supernatural guidance and imparts great wisdom.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"29\">\n\t\t\t<VERS vnumber=\"1\"> Ariel is as good as dead, Ariel, the town David besieged! Keep observing your annual rituals, celebrate your festivals on schedule.</VERS>\n\t\t\t<VERS vnumber=\"2\"> I will threaten Ariel, and she will mourn intensely and become like an altar hearth before me.</VERS>\n\t\t\t<VERS vnumber=\"3\"> I will lay siege to you on all sides; I will besiege you with troops; I will raise siege works against you.</VERS>\n\t\t\t<VERS vnumber=\"4\"> You will fall; while lying on the ground you will speak; from the dust where you lie, your words will be heard. Your voice will sound like a spirit speaking from the underworld; from the dust you will chirp as if muttering an incantation.</VERS>\n\t\t\t<VERS vnumber=\"5\"> But the horde of invaders will be like fine dust, the horde of tyrants like chaff that is blown away. It will happen suddenly, in a flash.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Judgment will come from the LORD who commands armies, accompanied by thunder, earthquake, and a loud noise, by a strong gale, a windstorm, and a consuming flame of fire.</VERS>\n\t\t\t<VERS vnumber=\"7\"> It will be like a dream, a night vision. There will be a horde from all the nations that fight against Ariel, those who attack her and her stronghold and besiege her.</VERS>\n\t\t\t<VERS vnumber=\"8\"> It will be like a hungry man dreaming that he is eating, only to awaken and find that his stomach is empty. It will be like a thirsty man dreaming that he is drinking, only to awaken and find that he is still weak and his thirst unquenched. So it will be for the horde from all the nations that fight against Mount Zion.</VERS>\n\t\t\t<VERS vnumber=\"9\"> You will be shocked and amazed! You are totally blind! They are drunk, but not because of wine; they stagger, but not because of beer.</VERS>\n\t\t\t<VERS vnumber=\"10\"> For the LORD has poured out on you a strong urge to sleep deeply. He has shut your eyes (the prophets), and covered your heads (the seers).</VERS>\n\t\t\t<VERS vnumber=\"11\"> To you this entire prophetic revelation is like words in a sealed scroll. When they hand it to one who can read and say, \"Read this,\" he responds, \"I can't, because it is sealed.\" </VERS>\n\t\t\t<VERS vnumber=\"12\"> Or when they hand the scroll to one who can't read and say, \"Read this,\" he says, \"I can't read.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> The sovereign master says, \"These people say they are loyal to me; they say wonderful things about me, but they are not really loyal to me. Their worship consists of nothing but man-made ritual.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Therefore I will again do an amazing thing for these people, an absolutely extraordinary deed. Wise men will have nothing to say, the sages will have no explanations.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> Those who try to hide their plans from the LORD are as good as dead, who do their work in secret and boast, \"Who sees us? Who knows what we're doing?\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> Your thinking is perverse! Should the potter be regarded as clay? Should the thing made say about its maker, \"He didn't make me\"? Or should the pottery say about the potter, \"He doesn't understand\"?</VERS>\n\t\t\t<VERS vnumber=\"17\"> In just a very short time Lebanon will turn into an orchard, and the orchard will be considered a forest.</VERS>\n\t\t\t<VERS vnumber=\"18\"> At that time the deaf will be able to hear words read from a scroll, and the eyes of the blind will be able to see through deep darkness.</VERS>\n\t\t\t<VERS vnumber=\"19\"> The downtrodden will again rejoice in the LORD; the poor among humankind will take delight in the Holy One of Israel.</VERS>\n\t\t\t<VERS vnumber=\"20\"> For tyrants will disappear, those who taunt will vanish, and all those who love to do wrong will be eliminated,</VERS>\n\t\t\t<VERS vnumber=\"21\"> those who bear false testimony against a person, who entrap the one who arbitrates at the city gate and deprive the innocent of justice by making false charges.</VERS>\n\t\t\t<VERS vnumber=\"22\"> So this is what the LORD, the one who delivered Abraham, says to the family of Jacob: \"Jacob will no longer be ashamed; their faces will no longer show their embarrassment.</VERS>\n\t\t\t<VERS vnumber=\"23\"> For when they see their children, whom I will produce among them, they will honor my name. They will honor the Holy One of Jacob; they will respect the God of Israel.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Those who stray morally will gain understanding; those who complain will acquire insight.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"30\">\n\t\t\t<VERS vnumber=\"1\"> \"The rebellious children are as good as dead,\" says the LORD, \"those who make plans without consulting me, who form alliances without consulting my Spirit, and thereby compound their sin.</VERS>\n\t\t\t<VERS vnumber=\"2\"> They travel down to Egypt without seeking my will, seeking Pharaoh's protection, and looking for safety in Egypt's protective shade.</VERS>\n\t\t\t<VERS vnumber=\"3\"> But Pharaoh's protection will bring you nothing but shame, and the safety of Egypt's protective shade nothing but humiliation.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Though his officials are in Zoan and his messengers arrive at Hanes,</VERS>\n\t\t\t<VERS vnumber=\"5\"> all will be put to shame because of a nation that cannot help them, who cannot give them aid or help, but only shame and disgrace.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> This is a message about the animals in the Negev: Through a land of distress and danger, inhabited by lionesses and roaring lions, by snakes and darting adders, they transport their wealth on the backs of donkeys, their riches on the humps of camels, to a nation that cannot help them.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Egypt is totally incapable of helping. For this reason I call her 'Proud one who is silenced.'\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> Now go, write it down on a tablet in their presence, inscribe it on a scroll, so that it might be preserved for a future time as an enduring witness.</VERS>\n\t\t\t<VERS vnumber=\"9\"> For these are rebellious people, they are lying children, children unwilling to obey the LORD's law.</VERS>\n\t\t\t<VERS vnumber=\"10\"> They say to the visionaries, \"See no more visions!\" and to the seers, \"Don't relate messages to us about what is right! Tell us nice things, relate deceptive messages.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Turn aside from the way, stray off the path. Remove from our presence the Holy One of Israel.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> For this reason this is what the Holy One of Israel says: \"You have rejected this message; you trust instead in your ability to oppress and trick, and rely on that kind of behavior.</VERS>\n\t\t\t<VERS vnumber=\"13\"> So this sin will become your downfall. You will be like a high wall that bulges and cracks and is ready to collapse; it crumbles suddenly, in a flash.</VERS>\n\t\t\t<VERS vnumber=\"14\"> It shatters in pieces like a clay jar, so shattered to bits that none of it can be salvaged. Among its fragments one cannot find a shard large enough to scoop a hot coal from a fire or to skim off water from a cistern.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> For this is what the master, the LORD, the Holy One of Israel says: \"If you repented and patiently waited for me, you would be delivered; if you calmly trusted in me you would find strength, but you are unwilling.</VERS>\n\t\t\t<VERS vnumber=\"16\"> You say, 'No, we will flee on horses,' so you will indeed flee. You say, 'We will ride on fast horses,' so your pursuers will be fast.</VERS>\n\t\t\t<VERS vnumber=\"17\"> One thousand will scurry at the battle cry of one enemy soldier; at the battle cry of five enemy soldiers you will all run away, until the remaining few are as isolated as a flagpole on a mountaintop or a signal flag on a hill.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> For this reason the LORD is ready to show you mercy; he sits on his throne, ready to have compassion on you. Indeed, the LORD is a just God; all who wait for him in faith will be blessed.</VERS>\n\t\t\t<VERS vnumber=\"19\"> For people will live in Zion; in Jerusalem you will weep no more. When he hears your cry of despair, he will indeed show you mercy; when he hears it, he will respond to you.</VERS>\n\t\t\t<VERS vnumber=\"20\"> The sovereign master will give you distress to eat and suffering to drink; but your teachers will no longer be hidden; your eyes will see them.</VERS>\n\t\t\t<VERS vnumber=\"21\"> You will hear a word spoken behind you, saying, \"This is the correct way, walk in it,\" whether you are heading to the right or the left.</VERS>\n\t\t\t<VERS vnumber=\"22\"> You will desecrate your silver-plated idols and your gold-plated images. You will throw them away as if they were a menstrual rag, saying to them, \"Get out!\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> He will water the seed you plant in the ground, and the ground will produce crops in abundance. At that time your cattle will graze in wide pastures.</VERS>\n\t\t\t<VERS vnumber=\"24\"> The oxen and donkeys used in plowing will eat seasoned feed winnowed with a shovel and pitchfork.</VERS>\n\t\t\t<VERS vnumber=\"25\"> On every high mountain and every high hill there will be streams flowing with water, at the time of great slaughter when the fortified towers collapse.</VERS>\n\t\t\t<VERS vnumber=\"26\"> The light of the full moon will be like the sun's glare and the sun's glare will be seven times brighter, like the light of seven days, when the LORD binds up his people's fractured bones and heals their severe wound.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Look, the name of the LORD comes from a distant place in raging anger and awesome splendor. He speaks angrily and his word is like destructive fire.</VERS>\n\t\t\t<VERS vnumber=\"28\"> His battle cry overwhelms like a flooding river that reaches one's neck. He shakes the nations in a sieve that isolates the chaff; he puts a bit into the mouth of the nations and leads them to destruction.</VERS>\n\t\t\t<VERS vnumber=\"29\"> You will sing as you do in the evening when you are celebrating a festival. You will be happy like one who plays a flute as he goes to the mountain of the LORD, the Rock who shelters Israel.</VERS>\n\t\t\t<VERS vnumber=\"30\"> The LORD will give a mighty shout and intervene in power, with furious anger and flaming, destructive fire, with a driving rainstorm and hailstones.</VERS>\n\t\t\t<VERS vnumber=\"31\"> Indeed, the LORD's shout will shatter Assyria; he will beat them with a club.</VERS>\n\t\t\t<VERS vnumber=\"32\"> Every blow from his punishing cudgel, with which the LORD will beat them, will be accompanied by music from the tambourine and harp, and he will attack them with his weapons.</VERS>\n\t\t\t<VERS vnumber=\"33\"> For the burial place is already prepared; it has been made deep and wide for the king. The firewood is piled high on it. The LORD's breath, like a stream flowing with brimstone, will ignite it.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"31\">\n\t\t\t<VERS vnumber=\"1\"> Those who go down to Egypt for help are as good as dead, those who rely on war horses, and trust in Egypt's many chariots and in their many, many horsemen. But they do not rely on the Holy One of Israel and do not seek help from the LORD.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Yet he too is wise and he will bring disaster; he does not retract his decree. He will attack the wicked nation, and the nation that helps those who commit sin.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The Egyptians are mere humans, not God; their horses are made of flesh, not spirit. The LORD will strike with his hand; the one who helps will stumble and the one being helped will fall. Together they will perish.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Indeed, this is what the LORD says to me: \"The LORD will be like a growling lion, like a young lion growling over its prey. Though a whole group of shepherds gathers against it, it is not afraid of their shouts or intimidated by their yelling. In this same way the LORD who commands armies will descend to do battle on Mount Zion and on its hill.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Just as birds hover over a nest, so the LORD who commands armies will protect Jerusalem. He will protect and deliver it; as he passes over he will rescue it.</VERS>\n\t\t\t<VERS vnumber=\"6\"> You Israelites! Return to the one against whom you have so blatantly rebelled!</VERS>\n\t\t\t<VERS vnumber=\"7\"> For at that time everyone will get rid of the silver and gold idols your hands sinfully made.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Assyria will fall by a sword, but not one human-made; a sword not made by humankind will destroy them. They will run away from this sword and their young men will be forced to do hard labor.</VERS>\n\t\t\t<VERS vnumber=\"9\"> They will surrender their stronghold because of fear; their officers will be afraid of the LORD's battle flag.\" This is what the LORD says, the one whose fire is in Zion, whose firepot is in Jerusalem.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"32\">\n\t\t\t<VERS vnumber=\"1\"> Look, a king will promote fairness; officials will promote justice.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Each of them will be like a shelter from the wind and a refuge from a rainstorm; like streams of water in a dry region and like the shade of a large cliff in a parched land.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Eyes will no longer be blind and ears will be attentive.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The mind that acts rashly will possess discernment and the tongue that stutters will speak with ease and clarity.</VERS>\n\t\t\t<VERS vnumber=\"5\"> A fool will no longer be called honorable; a deceiver will no longer be called principled.</VERS>\n\t\t\t<VERS vnumber=\"6\"> For a fool speaks disgraceful things; his mind plans out sinful deeds. He commits godless deeds and says misleading things about the LORD; he gives the hungry nothing to satisfy their appetite and gives the thirsty nothing to drink.</VERS>\n\t\t\t<VERS vnumber=\"7\"> A deceiver's methods are evil; he dreams up evil plans to ruin the poor with lies, even when the needy are in the right.</VERS>\n\t\t\t<VERS vnumber=\"8\"> An honorable man makes honorable plans; his honorable character gives him security.</VERS>\n\t\t\t<VERS vnumber=\"9\"> You complacent women, get up and listen to me! You carefree daughters, pay attention to what I say!</VERS>\n\t\t\t<VERS vnumber=\"10\"> In a year's time you carefree ones will shake with fear, for the grape harvest will fail, and the fruit harvest will not arrive.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Tremble, you complacent ones! Shake with fear, you carefree ones! Strip off your clothes and expose yourselves, put sackcloth on your waist!</VERS>\n\t\t\t<VERS vnumber=\"12\"> Mourn over the field, over the delightful fields and the fruitful vine!</VERS>\n\t\t\t<VERS vnumber=\"13\"> Mourn over the land of my people, which is overgrown with thorns and briers, and over all the once-happy houses in the city filled with revelry.</VERS>\n\t\t\t<VERS vnumber=\"14\"> For the fortress is neglected; the once-crowded city is abandoned. Hill and watchtower are permanently uninhabited. Wild donkeys love to go there, and flocks graze there.</VERS>\n\t\t\t<VERS vnumber=\"15\"> This desolation will continue until new life is poured out on us from heaven. Then the desert will become an orchard and the orchard will be considered a forest.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Justice will settle down in the desert and fairness will live in the orchard.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Fairness will produce peace and result in lasting security.</VERS>\n\t\t\t<VERS vnumber=\"18\"> My people will live in peaceful settlements, in secure homes, and in safe, quiet places.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Even if the forest is destroyed and the city is annihilated,</VERS>\n\t\t\t<VERS vnumber=\"20\"> you will be blessed, you who plant seed by all the banks of the streams, you who let your ox and donkey graze.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"33\">\n\t\t\t<VERS vnumber=\"1\"> The destroyer is as good as dead, you who have not been destroyed! The deceitful one is as good as dead, the one whom others have not deceived! When you are through destroying, you will be destroyed; when you finish deceiving, others will deceive you!</VERS>\n\t\t\t<VERS vnumber=\"2\"> LORD, be merciful to us! We wait for you. Give us strength each morning! Deliver us when distress comes.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The nations run away when they hear a loud noise; the nations scatter when you spring into action!</VERS>\n\t\t\t<VERS vnumber=\"4\"> Your plunder disappears as if locusts were eating it; they swarm over it like locusts!</VERS>\n\t\t\t<VERS vnumber=\"5\"> The LORD is exalted, indeed, he lives in heaven; he fills Zion with justice and fairness.</VERS>\n\t\t\t<VERS vnumber=\"6\"> He is your constant source of stability; he abundantly provides safety and great wisdom; he gives all this to those who fear him.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Look, ambassadors cry out in the streets; messengers sent to make peace weep bitterly.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Highways are empty, there are no travelers. Treaties are broken, witnesses are despised, human life is treated with disrespect.</VERS>\n\t\t\t<VERS vnumber=\"9\"> The land dries up and withers away; the forest of Lebanon shrivels up and decays. Sharon is like the desert; Bashan and Carmel are parched.</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"Now I will rise up,\" says the LORD. \"Now I will exalt myself; now I will magnify myself.</VERS>\n\t\t\t<VERS vnumber=\"11\"> You conceive straw, you give birth to chaff; your breath is a fire that destroys you.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The nations will be burned to ashes; like thorn bushes that have been cut down, they will be set on fire.</VERS>\n\t\t\t<VERS vnumber=\"13\"> You who are far away, listen to what I have done! You who are close by, recognize my strength!\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> Sinners are afraid in Zion; panic grips the godless. They say, 'Who among us can coexist with destructive fire? Who among us can coexist with unquenchable fire?'</VERS>\n\t\t\t<VERS vnumber=\"15\"> The one who lives uprightly and speaks honestly; the one who refuses to profit from oppressive measures and rejects a bribe; the one who does not plot violent crimes and does not seek to harm others,</VERS>\n\t\t\t<VERS vnumber=\"16\"> This is the person who will live in a secure place; he will find safety in the rocky, mountain strongholds; he will have food and a constant supply of water.</VERS>\n\t\t\t<VERS vnumber=\"17\"> You will see a king in his splendor; you will see a wide land.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Your mind will recall the terror you experienced, and you will ask yourselves, \"Where is the scribe? Where is the one who weighs the money? Where is the one who counts the towers?\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> You will no longer see a defiant people whose language you do not comprehend, whose derisive speech you do not understand.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Look at Zion, the city where we hold religious festivals! You will see Jerusalem, a peaceful settlement, a tent that stays put; its stakes will never be pulled up; none of its ropes will snap in two.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Instead the LORD will rule there as our mighty king. Rivers and wide streams will flow through it; no war galley will enter; no large ships will sail through.</VERS>\n\t\t\t<VERS vnumber=\"22\"> For the LORD, our ruler, the LORD, our commander, the LORD, our king, he will deliver us.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Though at this time your ropes are slack, the mast is not secured, and the sail is not unfurled, at that time you will divide up a great quantity of loot; even the lame will drag off plunder.</VERS>\n\t\t\t<VERS vnumber=\"24\"> No resident of Zion will say, \"I am ill\"; the people who live there will have their sin forgiven.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"34\">\n\t\t\t<VERS vnumber=\"1\"> Come near, you nations, and listen! Pay attention, you people! The earth and everything it contains must listen, the world and everything that lives in it.</VERS>\n\t\t\t<VERS vnumber=\"2\"> For the LORD is angry at all the nations and furious with all their armies. He will annihilate them and slaughter them.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Their slain will be left unburied, their corpses will stink; the hills will soak up their blood.</VERS>\n\t\t\t<VERS vnumber=\"4\"> All the stars in the sky will fade away, the sky will roll up like a scroll; all its stars will wither, like a leaf withers and falls from a vine or a fig withers and falls from a tree.</VERS>\n\t\t\t<VERS vnumber=\"5\"> He says, \"Indeed, my sword has slaughtered heavenly powers. Look, it now descends on Edom, on the people I will annihilate in judgment.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> The LORD's sword is dripping with blood, it is covered with fat; it drips with the blood of young rams and goats and is covered with the fat of rams' kidneys. For the LORD is holding a sacrifice in Bozrah, a bloody slaughter in the land of Edom.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Wild oxen will be slaughtered along with them, as well as strong bulls. Their land is drenched with blood, their soil is covered with fat.</VERS>\n\t\t\t<VERS vnumber=\"8\"> For the LORD has planned a day of revenge, a time when he will repay Edom for her hostility toward Zion.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Edom's streams will be turned into pitch and her soil into brimstone; her land will become burning pitch.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Night and day it will burn; its smoke will ascend continually. Generation after generation it will be a wasteland and no one will ever pass through it again.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Owls and wild animals will live there, all kinds of wild birds will settle in it. The LORD will stretch out over her the measuring line of ruin and the plumb line of destruction.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Her nobles will have nothing left to call a kingdom and all her officials will disappear.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Her fortresses will be overgrown with thorns; thickets and weeds will grow in her fortified cities. Jackals will settle there; ostriches will live there.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Wild animals and wild dogs will congregate there; wild goats will bleat to one another. Yes, nocturnal animals will rest there and make for themselves a nest.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Owls will make nests and lay eggs there; they will hatch them and protect them. Yes, hawks will gather there, each with its mate.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Carefully read the scroll of the LORD! Not one of these creatures will be missing, none will lack a mate. For the LORD has issued the decree, and his own spirit gathers them.</VERS>\n\t\t\t<VERS vnumber=\"17\"> He assigns them their allotment; he measures out their assigned place. They will live there permanently; they will settle in it through successive generations.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"35\">\n\t\t\t<VERS vnumber=\"1\"> Let the desert and dry region be happy; let the wilderness rejoice and bloom like a lily!</VERS>\n\t\t\t<VERS vnumber=\"2\"> Let it richly bloom; let it rejoice and shout with delight! It is given the grandeur of Lebanon, the splendor of Carmel and Sharon. They will see the grandeur of the LORD, the splendor of our God.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Strengthen the hands that have gone limp, steady the knees that shake!</VERS>\n\t\t\t<VERS vnumber=\"4\"> Tell those who panic, \"Be strong! Do not fear! Look, your God comes to avenge! With divine retribution he comes to deliver you.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> Then blind eyes will open, deaf ears will hear.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Then the lame will leap like a deer, the mute tongue will shout for joy; for water will flow in the desert, streams in the wilderness.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The dry soil will become a pool of water, the parched ground springs of water. Where jackals once lived and sprawled out, grass, reeds, and papyrus will grow.</VERS>\n\t\t\t<VERS vnumber=\"8\"> A thoroughfare will be there, it will be called the Way of Holiness. The unclean will not travel on it; it is reserved for those authorized to use it, fools will not stray into it.</VERS>\n\t\t\t<VERS vnumber=\"9\"> No lions will be there, no ferocious wild animals will be on it, they will not be found there. Those delivered from bondage will travel on it,</VERS>\n\t\t\t<VERS vnumber=\"10\"> those whom the LORD has ransomed will return that way. They will enter Zion with a happy shout. Unending joy will crown them, happiness and joy will overwhelm them; grief and suffering will disappear.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"36\">\n\t\t\t<VERS vnumber=\"1\"> In the fourteenth year of King Hezekiah's reign, King Sennacherib of Assyria marched up against all the fortified cities of Judah and captured them. </VERS>\n\t\t\t<VERS vnumber=\"2\"> The king of Assyria sent his chief adviser from Lachish to King Hezekiah in Jerusalem, along with a large army. The chief adviser stood at the conduit of the upper pool which is located on the road to the field where they wash and dry cloth.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Eliakim son of Hilkiah, the palace supervisor, accompanied by Shebna the scribe and Joah son of Asaph, the secretary, went out to meet him.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The chief adviser said to them, \"Tell Hezekiah: 'This is what the great king, the king of Assyria, says: \"What is your source of confidence?</VERS>\n\t\t\t<VERS vnumber=\"5\"> Your claim to have a strategy and military strength is just empty talk. In whom are you trusting, that you would dare to rebel against me?</VERS>\n\t\t\t<VERS vnumber=\"6\"> Look, you must be trusting in Egypt, that splintered reed staff. If someone leans on it for support, it punctures his hand and wounds him. That is what Pharaoh king of Egypt does to all who trust in him!</VERS>\n\t\t\t<VERS vnumber=\"7\"> Perhaps you will tell me, 'We are trusting in the LORD our God.' But Hezekiah is the one who eliminated his high places and altars and then told the people of Judah and Jerusalem, 'You must worship at this altar.'</VERS>\n\t\t\t<VERS vnumber=\"8\"> Now make a deal with my master the king of Assyria, and I will give you two thousand horses, provided you can find enough riders for them.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Certainly you will not refuse one of my master's minor officials and trust in Egypt for chariots and horsemen.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Furthermore it was by the command of the LORD that I marched up against this land to destroy it. The LORD told me, 'March up against this land and destroy it!'\"'\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> Eliakim, Shebna, and Joah said to the chief adviser, \"Speak to your servants in Aramaic, for we understand it. Don't speak with us in the Judahite dialect in the hearing of the people who are on the wall.\" </VERS>\n\t\t\t<VERS vnumber=\"12\"> But the chief adviser said, \"My master did not send me to speak these words only to your master and to you. His message is also for the men who sit on the wall, for they will eat their own excrement and drink their own urine along with you!\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> The chief adviser then stood there and called out loudly in the Judahite dialect, \"Listen to the message of the great king, the king of Assyria. </VERS>\n\t\t\t<VERS vnumber=\"14\"> This is what the king says: 'Don't let Hezekiah mislead you, for he is not able to rescue you!</VERS>\n\t\t\t<VERS vnumber=\"15\"> Don't let Hezekiah talk you into trusting in the LORD by saying, \"The LORD will certainly rescue us; this city will not be handed over to the king of Assyria.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> Don't listen to Hezekiah!' For this is what the king of Assyria says, 'Send me a token of your submission and surrender to me. Then each of you may eat from his own vine and fig tree and drink water from his own cistern, </VERS>\n\t\t\t<VERS vnumber=\"17\"> until I come and take you to a land just like your own, a land of grain and new wine, a land of bread and vineyards.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Hezekiah is misleading you when he says, \"The LORD will rescue us.\" Has any of the gods of the nations rescued his land from the power of the king of Assyria?</VERS>\n\t\t\t<VERS vnumber=\"19\"> Where are the gods of Hamath and Arpad? Where are the gods of Sepharvaim? Indeed, did any gods rescue Samaria from my power?</VERS>\n\t\t\t<VERS vnumber=\"20\"> Who among all the gods of these lands have rescued their lands from my power? So how can the LORD rescue Jerusalem from my power?'\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> They were silent and did not respond, for the king had ordered, \"Don't respond to him.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> Eliakim son of Hilkiah, the palace supervisor, accompanied by Shebna the scribe and Joah son of Asaph, the secretary, went to Hezekiah with their clothes torn in grief and reported to him what the chief adviser had said. </VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"37\">\n\t\t\t<VERS vnumber=\"1\"> When King Hezekiah heard this, he tore his clothes, put on sackcloth, and went to the LORD's temple. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Eliakim the palace supervisor, Shebna the scribe, and the leading priests, clothed in sackcloth, sent this message to the prophet Isaiah son of Amoz: </VERS>\n\t\t\t<VERS vnumber=\"3\"> \"This is what Hezekiah says: 'This is a day of distress, insults, and humiliation, as when a baby is ready to leave the birth canal, but the mother lacks the strength to push it through.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Perhaps the LORD your God will hear all these things the chief adviser has spoken on behalf of his master, the king of Assyria, who sent him to taunt the living God. When the LORD your God hears, perhaps he will punish him for the things he has said. So pray for this remnant that remains.'\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> When King Hezekiah's servants came to Isaiah,</VERS>\n\t\t\t<VERS vnumber=\"6\"> Isaiah said to them, \"Tell your master this: 'This is what the LORD says: \"Don't be afraid because of the things you have heard, these insults the king of Assyria's servants have hurled against me.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Look, I will take control of his mind; he will receive a report and return to his own land. I will cut him down with a sword in his own land.\"'\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> When the chief adviser heard the king of Assyria had departed from Lachish, he left and went to Libnah, where the king was campaigning.</VERS>\n\t\t\t<VERS vnumber=\"9\"> The king heard that King Tirhakah of Ethiopia was marching out to fight him. He again sent messengers to Hezekiah, ordering them: </VERS>\n\t\t\t<VERS vnumber=\"10\"> \"Tell King Hezekiah of Judah this: 'Don't let your God in whom you trust mislead you when he says, \"Jerusalem will not be handed over to the king of Assyria.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> Certainly you have heard how the kings of Assyria have annihilated all lands. Do you really think you will be rescued?</VERS>\n\t\t\t<VERS vnumber=\"12\"> Were the nations whom my predecessors destroyed, the nations of Gozan, Haran, Rezeph, and the people of Eden in Telassar, rescued by their gods?</VERS>\n\t\t\t<VERS vnumber=\"13\"> Where are the king of Hamath, the king of Arpad, and the kings of Lair, Sepharvaim, Hena, and Ivvah?'\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> Hezekiah took the letter from the messengers and read it. Then Hezekiah went up to the LORD's temple and spread it out before the LORD. </VERS>\n\t\t\t<VERS vnumber=\"15\"> Hezekiah prayed before the LORD:</VERS>\n\t\t\t<VERS vnumber=\"16\"> \"O LORD who commands armies, O God of Israel, who is enthroned on the cherubim! You alone are God over all the kingdoms of the earth. You made the sky and the earth. </VERS>\n\t\t\t<VERS vnumber=\"17\"> Pay attention, LORD, and hear! Open your eyes, LORD, and observe! Listen to this entire message Sennacherib sent and how he taunts the living God!</VERS>\n\t\t\t<VERS vnumber=\"18\"> It is true, LORD, that the kings of Assyria have destroyed all the nations and their lands. </VERS>\n\t\t\t<VERS vnumber=\"19\"> They have burned the gods of the nations, for they are not really gods, but only the product of human hands manufactured from wood and stone. That is why the Assyrians could destroy them.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Now, O LORD our God, rescue us from his power, so all the kingdoms of the earth may know that you alone are the LORD.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> Isaiah son of Amoz sent this message to Hezekiah: \"This is what the LORD God of Israel says: 'Because you prayed to me concerning King Sennacherib of Assyria,</VERS>\n\t\t\t<VERS vnumber=\"22\"> this is what the LORD says about him: \"The virgin daughter Zion despises you, she makes fun of you; daughter Jerusalem shakes her head after you.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Whom have you taunted and hurled insults at? At whom have you shouted and looked so arrogantly? At the Holy One of Israel!</VERS>\n\t\t\t<VERS vnumber=\"24\"> Through your messengers you taunted the sovereign master, 'With my many chariots I climbed up the high mountains, the slopes of Lebanon. I cut down its tall cedars and its best evergreens. I invaded its most remote regions, its thickest woods.</VERS>\n\t\t\t<VERS vnumber=\"25\"> I dug wells and drank water. With the soles of my feet I dried up all the rivers of Egypt.'</VERS>\n\t\t\t<VERS vnumber=\"26\">  Certainly you must have heard! Long ago I worked it out, in ancient times I planned it, and now I am bringing it to pass. The plan is this: Fortified cities will crash into heaps of ruins.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Their residents are powerless; they are terrified and ashamed. They are as short-lived as plants in the field or green vegetation. They are as short-lived as grass on the rooftops when it is scorched by the east wind.</VERS>\n\t\t\t<VERS vnumber=\"28\"> I know where you live and everything you do and how you rage against me.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Because you rage against me and the uproar you create has reached my ears, I will put my hook in your nose, and my bridle between your lips, and I will lead you back the way you came.\"</VERS>\n\t\t\t<VERS vnumber=\"30\">  \"This will be your reminder that I have spoken the truth: This year you will eat what grows wild, and next year what grows on its own. But the year after that you will plant seed and harvest crops; you will plant vines and consume their produce.</VERS>\n\t\t\t<VERS vnumber=\"31\"> Those who remain in Judah will take root in the ground and bear fruit.</VERS>\n\t\t\t<VERS vnumber=\"32\"> \"For a remnant will leave Jerusalem; survivors will come out of Mount Zion. The intense devotion of the LORD who commands armies will accomplish this.</VERS>\n\t\t\t<VERS vnumber=\"33\"> So this is what the LORD says about the king of Assyria: 'He will not enter this city, nor will he shoot an arrow here. He will not attack it with his shielded warriors, nor will he build siege works against it.</VERS>\n\t\t\t<VERS vnumber=\"34\"> He will go back the way he came, he will not enter this city,' says the LORD.</VERS>\n\t\t\t<VERS vnumber=\"35\"> I will shield this city and rescue it for the sake of my reputation and because of my promise to David my servant.\"'\"</VERS>\n\t\t\t<VERS vnumber=\"36\"> The LORD's messenger went out and killed 185,000 troops in the Assyrian camp. When they got up early the next morning, there were all the corpses!</VERS>\n\t\t\t<VERS vnumber=\"37\"> So King Sennacherib of Assyria broke camp and went on his way. He went home and stayed in Nineveh.</VERS>\n\t\t\t<VERS vnumber=\"38\"> One day, as he was worshiping in the temple of his god Nisroch, his sons Adrammelech and Sharezer struck him down with the sword. They ran away to the land of Ararat; his son Esarhaddon replaced him as king.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"38\">\n\t\t\t<VERS vnumber=\"1\"> In those days Hezekiah was stricken with a terminal illness. The prophet Isaiah son of Amoz visited him and told him, \"This is what the LORD says, 'Give instructions to your household, for you are about to die; you will not get well.'\" </VERS>\n\t\t\t<VERS vnumber=\"2\"> Hezekiah turned his face to the wall and prayed to the LORD,</VERS>\n\t\t\t<VERS vnumber=\"3\"> \"Please, LORD. Remember how I have served you faithfully and with wholehearted devotion, and how I have carried out your will.\" Then Hezekiah wept bitterly.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The LORD told Isaiah,</VERS>\n\t\t\t<VERS vnumber=\"5\"> \"Go and tell Hezekiah: 'This is what the LORD God of your ancestor David says: \"I have heard your prayer; I have seen your tears. Look, I will add fifteen years to your life, </VERS>\n\t\t\t<VERS vnumber=\"6\"> and rescue you and this city from the king of Assyria. I will shield this city.\"'\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> Isaiah replied, \"This is your sign from the LORD confirming that the LORD will do what he has said: </VERS>\n\t\t\t<VERS vnumber=\"8\"> Look, I will make the shadow go back ten steps on the stairs of Ahaz.\" And then the shadow went back ten steps.</VERS>\n\t\t\t<VERS vnumber=\"9\"> This is the prayer of King Hezekiah of Judah when he was sick and then recovered from his illness:</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"I thought, 'In the middle of my life I must walk through the gates of Sheol, I am deprived of the rest of my years.'</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"I thought, 'I will no longer see the LORD in the land of the living, I will no longer look on humankind with the inhabitants of the world.</VERS>\n\t\t\t<VERS vnumber=\"12\"> My dwelling place is removed and taken away from me like a shepherd's tent. I rolled up my life like a weaver rolls cloth; from the loom he cuts me off. You turn day into night and end my life.</VERS>\n\t\t\t<VERS vnumber=\"13\"> I cry out until morning; like a lion he shatters all my bones; you turn day into night and end my life.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Like a swallow or a thrush I chirp, I coo like a dove; my eyes grow tired from looking up to the sky. O sovereign master, I am oppressed; help me!</VERS>\n\t\t\t<VERS vnumber=\"15\"> What can I say? He has decreed and acted. I will walk slowly all my years because I am overcome with grief.</VERS>\n\t\t\t<VERS vnumber=\"16\"> O sovereign master, your decrees can give men life; may years of life be restored to me. Restore my health and preserve my life.'</VERS>\n\t\t\t<VERS vnumber=\"17\"> \"Look, the grief I experienced was for my benefit. You delivered me from the pit of oblivion. For you removed all my sins from your sight.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Indeed Sheol does not give you thanks; death does not praise you. Those who descend into the pit do not anticipate your faithfulness.</VERS>\n\t\t\t<VERS vnumber=\"19\"> The living person, the living person, he gives you thanks, as I do today. A father tells his sons about your faithfulness.</VERS>\n\t\t\t<VERS vnumber=\"20\"> The LORD is about to deliver me, and we will celebrate with music for the rest of our lives in the LORD's temple.\"</VERS>\n\t\t\t<VERS vnumber=\"21\">  Isaiah ordered, \"Let them take a fig cake and apply it to the ulcerated sore and he will get well.\" </VERS>\n\t\t\t<VERS vnumber=\"22\"> Hezekiah said, \"What is the confirming sign that I will go up to the LORD's temple?\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"39\">\n\t\t\t<VERS vnumber=\"1\"> At that time Merodach-Baladan son of Baladan, king of Babylon, sent letters and a gift to Hezekiah, for he heard that Hezekiah had been ill and had recovered.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Hezekiah welcomed them and showed them his storehouse with its silver, gold, spices, and high-quality olive oil, as well as his whole armory and everything in his treasuries. Hezekiah showed them everything in his palace and in his whole kingdom.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Isaiah the prophet visited King Hezekiah and asked him, \"What did these men say? Where do they come from?\" Hezekiah replied, \"They come from the distant land of Babylon.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> Isaiah asked, \"What have they seen in your palace?\" Hezekiah replied, \"They have seen everything in my palace. I showed them everything in my treasuries.\" </VERS>\n\t\t\t<VERS vnumber=\"5\"> Isaiah said to Hezekiah, \"Listen to the word of the LORD who commands armies:</VERS>\n\t\t\t<VERS vnumber=\"6\"> 'Look, a time is coming when everything in your palace and the things your ancestors have accumulated to this day will be carried away to Babylon; nothing will be left,' says the LORD. </VERS>\n\t\t\t<VERS vnumber=\"7\"> 'Some of your very own descendants whom you father will be taken away and will be made eunuchs in the palace of the king of Babylon.'\" </VERS>\n\t\t\t<VERS vnumber=\"8\"> Hezekiah said to Isaiah, \"The LORD's word which you have announced is appropriate.\" Then he thought, \"For there will be peace and stability during my lifetime.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"40\">\n\t\t\t<VERS vnumber=\"1\"> \"Comfort, comfort my people,\" says your God.</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Speak kindly to Jerusalem, and tell her that her time of warfare is over, that her punishment is completed. For the LORD has made her pay double for all her sins.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> A voice cries out, \"In the wilderness clear a way for the LORD; construct in the desert a road for our God.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Every valley must be elevated, and every mountain and hill leveled. The rough terrain will become a level plain, the rugged landscape a wide valley.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The splendor of the LORD will be revealed, and all people will see it at the same time. For the LORD has decreed it.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> A voice says, \"Cry out!\" Another asks, \"What should I cry out?\" The first voice responds: \"All people are like grass, and all their promises are like the flowers in the field.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The grass dries up, the flowers wither, when the wind sent by the LORD blows on them. Surely humanity is like grass.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The grass dries up, the flowers wither, but the decree of our God is forever reliable.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> Go up on a high mountain, O herald Zion! Shout out loudly, O herald Jerusalem! Shout, don't be afraid! Say to the towns of Judah, \"Here is your God!\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> Look, the sovereign LORD comes as a victorious warrior; his military power establishes his rule. Look, his reward is with him; his prize goes before him.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Like a shepherd he tends his flock; he gathers up the lambs with his arm; he carries them close to his heart; he leads the ewes along.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Who has measured out the waters in the hollow of his hand, or carefully measured the sky, or carefully weighed the soil of the earth, or weighed the mountains in a balance, or the hills on scales?</VERS>\n\t\t\t<VERS vnumber=\"13\"> Who comprehends the mind of the LORD, or gives him instruction as his counselor?</VERS>\n\t\t\t<VERS vnumber=\"14\"> From whom does he receive directions? Who teaches him the correct way to do things, or imparts knowledge to him, or instructs him in skillful design?</VERS>\n\t\t\t<VERS vnumber=\"15\"> Look, the nations are like a drop in a bucket; they are regarded as dust on the scales. He lifts the coastlands as if they were dust.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Not even Lebanon could supply enough firewood for a sacrifice; its wild animals would not provide enough burnt offerings.</VERS>\n\t\t\t<VERS vnumber=\"17\"> All the nations are insignificant before him; they are regarded as absolutely nothing.</VERS>\n\t\t\t<VERS vnumber=\"18\"> To whom can you compare God? To what image can you liken him?</VERS>\n\t\t\t<VERS vnumber=\"19\"> A craftsman casts an idol; a metalsmith overlays it with gold and forges silver chains for it.</VERS>\n\t\t\t<VERS vnumber=\"20\"> To make a contribution one selects wood that will not rot; he then seeks a skilled craftsman to make an idol that will not fall over.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Do you not know? Do you not hear? Has it not been told to you since the very beginning? Have you not understood from the time the earth's foundations were made?</VERS>\n\t\t\t<VERS vnumber=\"22\"> He is the one who sits on the earth's horizon; its inhabitants are like grasshoppers before him. He is the one who stretches out the sky like a thin curtain, and spreads it out like a pitched tent.</VERS>\n\t\t\t<VERS vnumber=\"23\"> He is the one who reduces rulers to nothing; he makes the earth's leaders insignificant.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Indeed, they are barely planted; yes, they are barely sown; yes, they barely take root in the earth, and then he blows on them, causing them to dry up, and the wind carries them away like straw.</VERS>\n\t\t\t<VERS vnumber=\"25\"> \"To whom can you compare me? Whom do I resemble?\" says the Holy One.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Look up at the sky! Who created all these heavenly lights? He is the one who leads out their ranks; he calls them all by name. Because of his absolute power and awesome strength, not one of them is missing.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Why do you say, Jacob, Why do you say, Israel, \"The LORD is not aware of what is happening to me, My God is not concerned with my vindication\"?</VERS>\n\t\t\t<VERS vnumber=\"28\"> Do you not know? Have you not heard? The LORD is an eternal God, the creator of the whole earth. He does not get tired or weary; there is no limit to his wisdom.</VERS>\n\t\t\t<VERS vnumber=\"29\"> He gives strength to those who are tired; to the ones who lack power, he gives renewed energy.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Even youths get tired and weary; even strong young men clumsily stumble.</VERS>\n\t\t\t<VERS vnumber=\"31\"> But those who wait for the LORD's help find renewed strength; they rise up as if they had eagles' wings, they run without growing weary, they walk without getting tired.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"41\">\n\t\t\t<VERS vnumber=\"1\"> \"Listen to me in silence, you coastlands! Let the nations find renewed strength! Let them approach and then speak; let us come together for debate!</VERS>\n\t\t\t<VERS vnumber=\"2\"> Who stirs up this one from the east? Who officially commissions him for service? He hands nations over to him, and enables him to subdue kings. He makes them like dust with his sword, like windblown straw with his bow.</VERS>\n\t\t\t<VERS vnumber=\"3\"> He pursues them and passes by unharmed; he advances with great speed.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Who acts and carries out decrees? Who summons the successive generations from the beginning? I, the LORD, am present at the very beginning, and at the very end, I am the one.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The coastlands see and are afraid; the whole earth trembles; they approach and come.</VERS>\n\t\t\t<VERS vnumber=\"6\"> They help one another; one says to the other, 'Be strong!'</VERS>\n\t\t\t<VERS vnumber=\"7\"> The craftsman encourages the metalsmith, the one who wields the hammer encourages the one who pounds on the anvil. He approves the quality of the welding, and nails it down so it won't fall over.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"You, my servant Israel, Jacob whom I have chosen, offspring of Abraham my friend,</VERS>\n\t\t\t<VERS vnumber=\"9\"> you whom I am bringing back from the earth's extremities, and have summoned from the remote regions, I told you, \"You are my servant.\" I have chosen you and not rejected you.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Don't be afraid, for I am with you! Don't be frightened, for I am your God! I strengthen you, yes, I help you, yes, I uphold you with my saving right hand!</VERS>\n\t\t\t<VERS vnumber=\"11\"> Look, all who were angry at you will be ashamed and humiliated; your adversaries will be reduced to nothing and perish.</VERS>\n\t\t\t<VERS vnumber=\"12\"> When you will look for your opponents, you will not find them; your enemies will be reduced to absolutely nothing.</VERS>\n\t\t\t<VERS vnumber=\"13\"> For I am the LORD your God, the one who takes hold of your right hand, who says to you, 'Don't be afraid, I am helping you.'</VERS>\n\t\t\t<VERS vnumber=\"14\"> Don't be afraid, despised insignificant Jacob, men of Israel. I am helping you,\" says the LORD, your protector, the Holy One of Israel.</VERS>\n\t\t\t<VERS vnumber=\"15\"> \"Look, I am making you like a sharp threshing sledge, new and double-edged. You will thresh the mountains and crush them; you will make the hills like straw.</VERS>\n\t\t\t<VERS vnumber=\"16\"> You will winnow them and the wind will blow them away; the wind will scatter them. You will rejoice in the LORD; you will boast in the Holy One of Israel.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The oppressed and the poor look for water, but there is none; their tongues are parched from thirst. I, the LORD, will respond to their prayers; I, the God of Israel, will not abandon them.</VERS>\n\t\t\t<VERS vnumber=\"18\"> I will make streams flow down the slopes and produce springs in the middle of the valleys. I will turn the desert into a pool of water and the arid land into springs.</VERS>\n\t\t\t<VERS vnumber=\"19\"> I will make cedars, acacias, myrtles, and olive trees grow in the wilderness; I will make evergreens, firs, and cypresses grow together in the desert.</VERS>\n\t\t\t<VERS vnumber=\"20\"> I will do this so people will observe and recognize, so they will pay attention and understand that the LORD's power has accomplished this, and that the Holy One of Israel has brought it into being.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> \"Present your argument,\" says the LORD. \"Produce your evidence,\" says Jacob's king.</VERS>\n\t\t\t<VERS vnumber=\"22\"> \"Let them produce evidence! Let them tell us what will happen! Tell us about your earlier predictive oracles, so we may examine them and see how they were fulfilled. Or decree for us some future events!</VERS>\n\t\t\t<VERS vnumber=\"23\"> Predict how future events will turn out, so we might know you are gods. Yes, do something good or bad, so we might be frightened and in awe.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Look, you are nothing, and your accomplishments are nonexistent; the one who chooses to worship you is disgusting.</VERS>\n\t\t\t<VERS vnumber=\"25\"> I have stirred up one out of the north and he advances, one from the eastern horizon who prays in my name. He steps on rulers as if they were clay, like a potter treading the clay.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Who decreed this from the beginning, so we could know? Who announced it ahead of time, so we could say, 'He's correct'? Indeed, none of them decreed it! Indeed, none of them announced it! Indeed, no one heard you say anything!</VERS>\n\t\t\t<VERS vnumber=\"27\"> I first decreed to Zion, 'Look, here's what will happen!' I sent a herald to Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"28\"> I look, but there is no one, among them there is no one who serves as an adviser, that I might ask questions and receive answers.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Look, all of them are nothing, their accomplishments are nonexistent; their metal images lack any real substance.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"42\">\n\t\t\t<VERS vnumber=\"1\">  \"Here is my servant whom I support, my chosen one in whom I take pleasure. I have placed my spirit on him; he will make just decrees for the nations.</VERS>\n\t\t\t<VERS vnumber=\"2\"> He will not cry out or shout; he will not publicize himself in the streets.</VERS>\n\t\t\t<VERS vnumber=\"3\"> A crushed reed he will not break, a dim wick he will not extinguish; he will faithfully make just decrees.</VERS>\n\t\t\t<VERS vnumber=\"4\"> He will not grow dim or be crushed before establishing justice on the earth; the coastlands will wait in anticipation for his decrees.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> This is what the true God, the LORD, says, the one who created the sky and stretched it out, the one who fashioned the earth and everything that lives on it, the one who gives breath to the people on it, and life to those who live on it:</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"I, the LORD, officially commission you; I take hold of your hand. I protect you and make you a covenant mediator for people, and a light to the nations,</VERS>\n\t\t\t<VERS vnumber=\"7\"> to open blind eyes, to release prisoners from dungeons, those who live in darkness from prisons.</VERS>\n\t\t\t<VERS vnumber=\"8\"> I am the LORD! That is my name! I will not share my glory with anyone else, or the praise due me with idols.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Look, my earlier predictive oracles have come to pass; now I announce new events. Before they begin to occur, I reveal them to you.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> Sing to the LORD a brand new song! Praise him from the horizon of the earth, you who go down to the sea, and everything that lives in it, you coastlands and those who live there!</VERS>\n\t\t\t<VERS vnumber=\"11\"> Let the desert and its cities shout out, the towns where the nomads of Kedar live! Let the residents of Sela shout joyfully; let them shout loudly from the mountaintops.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Let them give the LORD the honor he deserves; let them praise his deeds in the coastlands.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The LORD emerges like a hero, like a warrior he inspires himself for battle; he shouts, yes, he yells, he shows his enemies his power.</VERS>\n\t\t\t<VERS vnumber=\"14\"> \"I have been inactive for a long time; I kept quiet and held back. Like a woman in labor I groan; I pant and gasp.</VERS>\n\t\t\t<VERS vnumber=\"15\"> I will make the trees on the mountains and hills wither up; I will dry up all their vegetation. I will turn streams into islands, and dry up pools of water.</VERS>\n\t\t\t<VERS vnumber=\"16\"> I will lead the blind along an unfamiliar way; I will guide them down paths they have never traveled. I will turn the darkness in front of them into light, and level out the rough ground. This is what I will do for them. I will not abandon them.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Those who trust in idols will turn back and be utterly humiliated, those who say to metal images, 'You are our gods.'\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> \"Listen, you deaf ones! Take notice, you blind ones!</VERS>\n\t\t\t<VERS vnumber=\"19\"> My servant is truly blind, my messenger is truly deaf. My covenant partner, the servant of the LORD, is truly blind.</VERS>\n\t\t\t<VERS vnumber=\"20\"> You see many things, but don't comprehend; their ears are open, but do not hear.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> The LORD wanted to exhibit his justice by magnifying his law and displaying it.</VERS>\n\t\t\t<VERS vnumber=\"22\"> But these people are looted and plundered; all of them are trapped in pits and held captive in prisons. They were carried away as loot with no one to rescue them; they were carried away as plunder, and no one says, \"Bring that back!\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> Who among you will pay attention to this? Who will listen attentively in the future?</VERS>\n\t\t\t<VERS vnumber=\"24\"> Who handed Jacob over to the robber? Who handed Israel over to the looters? Was it not the LORD, against whom we sinned? They refused to follow his commands; they disobeyed his law.</VERS>\n\t\t\t<VERS vnumber=\"25\"> So he poured out his fierce anger on them, along with the devastation of war. Its flames encircled them, but they did not realize it; it burned against them, but they did notice.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"43\">\n\t\t\t<VERS vnumber=\"1\"> Now, this is what the LORD says, the one who created you, O Jacob, and formed you, O Israel: \"Don't be afraid, for I will protect you. I call you by name, you are mine.</VERS>\n\t\t\t<VERS vnumber=\"2\"> When you pass through the waters, I am with you; when you pass through the streams, they will not overwhelm you. When you walk through the fire, you will not be burned; the flames will not harm you.</VERS>\n\t\t\t<VERS vnumber=\"3\"> For I am the LORD your God, the Holy One of Israel, your deliverer. I have handed over Egypt as a ransom price, Ethiopia and Seba in place of you.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Since you are precious and special in my sight, and I love you, I will hand over people in place of you, nations in place of your life.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Don't be afraid, for I am with you. From the east I will bring your descendants; from the west I will gather you.</VERS>\n\t\t\t<VERS vnumber=\"6\"> I will say to the north, 'Hand them over!' and to the south, 'Don't hold any back!' Bring my sons from distant lands, and my daughters from the remote regions of the earth,</VERS>\n\t\t\t<VERS vnumber=\"7\"> everyone who belongs to me, whom I created for my glory, whom I formed, yes, whom I made!</VERS>\n\t\t\t<VERS vnumber=\"8\"> Bring out the people who are blind, even though they have eyes, those who are deaf, even though they have ears!</VERS>\n\t\t\t<VERS vnumber=\"9\"> All nations gather together, the peoples assemble. Who among them announced this? Who predicted earlier events for us? Let them produce their witnesses to testify they were right; let them listen and affirm, 'It is true.'</VERS>\n\t\t\t<VERS vnumber=\"10\"> You are my witnesses,\" says the LORD, \"my servant whom I have chosen, so that you may consider and believe in me, and understand that I am he. No god was formed before me, and none will outlive me.</VERS>\n\t\t\t<VERS vnumber=\"11\"> I, I am the LORD, and there is no deliverer besides me.</VERS>\n\t\t\t<VERS vnumber=\"12\"> I decreed and delivered and proclaimed, and there was no other god among you. You are my witnesses,\" says the LORD, \"that I am God.</VERS>\n\t\t\t<VERS vnumber=\"13\"> From this day forward I am he; no one can deliver from my power; I will act, and who can prevent it?\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> This is what the LORD says, your protector, the Holy One of Israel: \"For your sake I send to Babylon and make them all fugitives, turning the Babylonians' joyful shouts into mourning songs.</VERS>\n\t\t\t<VERS vnumber=\"15\"> I am the LORD, your Holy One, the one who created Israel, your king.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> This is what the LORD says, the one who made a road through the sea, a pathway through the surging waters,</VERS>\n\t\t\t<VERS vnumber=\"17\"> the one who led chariots and horses to destruction, together with a mighty army. They fell down, never to rise again; they were extinguished, put out like a burning wick:</VERS>\n\t\t\t<VERS vnumber=\"18\"> \"Don't remember these earlier events; don't recall these former events.</VERS>\n\t\t\t<VERS vnumber=\"19\"> \"Look, I am about to do something new. Now it begins to happen! Do you not recognize it? Yes, I will make a road in the desert and paths in the wilderness.</VERS>\n\t\t\t<VERS vnumber=\"20\"> The wild animals of the desert honor me, the jackals and ostriches, because I put water in the desert and streams in the wilderness, to quench the thirst of my chosen people,</VERS>\n\t\t\t<VERS vnumber=\"21\"> the people whom I formed for myself, so they might praise me.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> \"But you did not call for me, O Jacob; you did not long for me, O Israel.</VERS>\n\t\t\t<VERS vnumber=\"23\"> You did not bring me lambs for your burnt offerings; you did not honor me with your sacrifices. I did not burden you with offerings; I did not make you weary by demanding incense.</VERS>\n\t\t\t<VERS vnumber=\"24\"> You did not buy me aromatic reeds; you did not present to me the fat of your sacrifices. Yet you burdened me with your sins; you made me weary with your evil deeds.</VERS>\n\t\t\t<VERS vnumber=\"25\"> I, I am the one who blots out your rebellious deeds for my sake; your sins I do not remember.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Remind me of what happened! Let's debate! You, prove to me that you are right!</VERS>\n\t\t\t<VERS vnumber=\"27\"> The father of your nation sinned; your spokesmen rebelled against me.</VERS>\n\t\t\t<VERS vnumber=\"28\"> So I defiled your holy princes, and handed Jacob over to destruction, and subjected Israel to humiliating abuse.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"44\">\n\t\t\t<VERS vnumber=\"1\"> \"Now, listen, Jacob my servant, Israel whom I have chosen!\"</VERS>\n\t\t\t<VERS vnumber=\"2\"> This is what the LORD, the one who made you, says, the one who formed you in the womb and helps you: \"Don't be afraid, my servant Jacob, Jeshurun, whom I have chosen!</VERS>\n\t\t\t<VERS vnumber=\"3\"> For I will pour water on the parched ground and cause streams to flow on the dry land. I will pour my spirit on your offspring and my blessing on your children.</VERS>\n\t\t\t<VERS vnumber=\"4\"> They will sprout up like a tree in the grass, like poplars beside channels of water.</VERS>\n\t\t\t<VERS vnumber=\"5\"> One will say, 'I belong to the LORD,' and another will use the name 'Jacob.' One will write on his hand, 'The LORD's,' and use the name 'Israel.'\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> This is what the LORD, Israel's king, says, their protector, the LORD who commands armies: \"I am the first and I am the last, there is no God but me.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Who is like me? Let him make his claim! Let him announce it and explain it to me, since I established an ancient people, let them announce future events!</VERS>\n\t\t\t<VERS vnumber=\"8\"> Don't panic! Don't be afraid! Did I not tell you beforehand and decree it? You are my witnesses! Is there any God but me? There is no other sheltering rock; I know of none.</VERS>\n\t\t\t<VERS vnumber=\"9\"> All who form idols are nothing; the things in which they delight are worthless. Their witnesses cannot see; they recognize nothing, so they are put to shame.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Who forms a god and casts an idol that will prove worthless?</VERS>\n\t\t\t<VERS vnumber=\"11\"> Look, all his associates will be put to shame; the craftsmen are mere humans. Let them all assemble and take their stand! They will panic and be put to shame.</VERS>\n\t\t\t<VERS vnumber=\"12\"> A blacksmith works with his tool and forges metal over the coals. He forms it with hammers; he makes it with his strong arm. He gets hungry and loses his energy; he drinks no water and gets tired.</VERS>\n\t\t\t<VERS vnumber=\"13\"> A carpenter takes measurements; he marks out an outline of its form; he scrapes it with chisels, and marks it with a compass. He patterns it after the human form, like a well-built human being, and puts it in a shrine.</VERS>\n\t\t\t<VERS vnumber=\"14\"> He cuts down cedars and acquires a cypress or an oak. He gets trees from the forest; he plants a cedar and the rain makes it grow.</VERS>\n\t\t\t<VERS vnumber=\"15\"> A man uses it to make a fire; he takes some of it and warms himself. Yes, he kindles a fire and bakes bread. Then he makes a god and worships it; he makes an idol and bows down to it.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Half of it he burns in the fire, over that half he cooks meat; he roasts a meal and fills himself. Yes, he warms himself and says, 'Ah! I am warm as I look at the fire.'</VERS>\n\t\t\t<VERS vnumber=\"17\"> With the rest of it he makes a god, his idol; he bows down to it and worships it. He prays to it, saying, 'Rescue me, for you are my god!'</VERS>\n\t\t\t<VERS vnumber=\"18\"> They do not comprehend or understand, for their eyes are blind and cannot see; their minds do not discern.</VERS>\n\t\t\t<VERS vnumber=\"19\"> No one thinks to himself, nor do they comprehend or understand and say to themselves: 'I burned half of it in the fire, yes, I baked bread over the coals; I roasted meat and ate it. With the rest of it should I make a disgusting idol? Should I bow down to dry wood?'</VERS>\n\t\t\t<VERS vnumber=\"20\"> He feeds on ashes; his deceived mind misleads him. He cannot rescue himself, nor does he say, 'Is this not a false god I hold in my right hand?'</VERS>\n\t\t\t<VERS vnumber=\"21\"> Remember these things, O Jacob, O Israel, for you are my servant. I formed you to be my servant; O Israel, I will not forget you!</VERS>\n\t\t\t<VERS vnumber=\"22\"> I remove the guilt of your rebellious deeds as if they were a cloud, the guilt of your sins as if they were a cloud. Come back to me, for I protect you.\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> Shout for joy, O sky, for the LORD intervenes; shout out, you subterranean regions of the earth. O mountains, give a joyful shout; you too, O forest and all your trees! For the LORD protects Jacob; he reveals his splendor through Israel.</VERS>\n\t\t\t<VERS vnumber=\"24\"> This is what the LORD, your protector, says, the one who formed you in the womb: \"I am the LORD, who made everything, who alone stretched out the sky, who fashioned the earth all by myself,</VERS>\n\t\t\t<VERS vnumber=\"25\"> who frustrates the omens of the empty talkers and humiliates the omen readers, who overturns the counsel of the wise men and makes their advice seem foolish,</VERS>\n\t\t\t<VERS vnumber=\"26\"> who fulfills the oracles of his prophetic servants and brings to pass the announcements of his messengers, who says about Jerusalem, 'She will be inhabited,' and about the towns of Judah, 'They will be rebuilt, her ruins I will raise up,'</VERS>\n\t\t\t<VERS vnumber=\"27\"> who says to the deep sea, 'Be dry! I will dry up your sea currents,'</VERS>\n\t\t\t<VERS vnumber=\"28\"> who commissions Cyrus, the one I appointed as shepherd to carry out all my wishes and to decree concerning Jerusalem, 'She will be rebuilt,' and concerning the temple, 'It will be reconstructed.'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"45\">\n\t\t\t<VERS vnumber=\"1\"> This is what the LORD says to his chosen one, to Cyrus, whose right hand I hold in order to subdue nations before him, and disarm kings, to open doors before him, so gates remain unclosed:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"I will go before you and level mountains. Bronze doors I will shatter and iron bars I will hack through.</VERS>\n\t\t\t<VERS vnumber=\"3\"> I will give you hidden treasures, riches stashed away in secret places, so you may recognize that I am the LORD, the one who calls you by name, the God of Israel.</VERS>\n\t\t\t<VERS vnumber=\"4\"> For the sake of my servant Jacob, Israel, my chosen one, I call you by name and give you a title of respect, even though you do not recognize me.</VERS>\n\t\t\t<VERS vnumber=\"5\"> I am the LORD, I have no peer, there is no God but me. I arm you for battle, even though you do not recognize me.</VERS>\n\t\t\t<VERS vnumber=\"6\"> I do this so people will recognize from east to west that there is no God but me; I am the LORD, I have no peer.</VERS>\n\t\t\t<VERS vnumber=\"7\"> I am the one who forms light and creates darkness; the one who brings about peace and creates calamity. I am the LORD, who accomplishes all these things.</VERS>\n\t\t\t<VERS vnumber=\"8\"> O sky, rain down from above! Let the clouds send down showers of deliverance! Let the earth absorb it so salvation may grow, and deliverance may sprout up along with it. I, the LORD, create it.</VERS>\n\t\t\t<VERS vnumber=\"9\"> One who argues with his creator is in grave danger, one who is like a mere shard among the other shards on the ground! The clay should not say to the potter, \"What in the world are you doing? Your work lacks skill!\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> Danger awaits one who says to his father, \"What in the world are you fathering?\" and to his mother, \"What in the world are you bringing forth?\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> This is what the LORD says, the Holy One of Israel, the one who formed him, concerning things to come: \"How dare you question me about my children! How dare you tell me what to do with the work of my own hands!</VERS>\n\t\t\t<VERS vnumber=\"12\"> I made the earth, I created the people who live on it. It was me, my hands stretched out the sky, I give orders to all the heavenly lights.</VERS>\n\t\t\t<VERS vnumber=\"13\"> It is me, I stir him up and commission him; I will make all his ways level. He will rebuild my city; he will send my exiled people home, but not for a price or a bribe,\" says the LORD who commands armies.</VERS>\n\t\t\t<VERS vnumber=\"14\"> This is what the LORD says: \"The profit of Egypt and the revenue of Ethiopia, along with the Sabeans, those tall men, will be brought to you and become yours. They will walk behind you, coming along in chains. They will bow down to you and pray to you: 'Truly God is with you; he has no peer; there is no other God!'\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> Yes, you are a God who keeps hidden, O God of Israel, deliverer!</VERS>\n\t\t\t<VERS vnumber=\"16\"> They will all be ashamed and embarrassed; those who fashion idols will all be humiliated.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Israel will be delivered once and for all by the LORD; you will never again be ashamed or humiliated.</VERS>\n\t\t\t<VERS vnumber=\"18\"> For this is what the LORD says, the one who created the sky, he is the true God, the one who formed the earth and made it; he established it, he did not create it without order, he formed it to be inhabited, \"I am the LORD, I have no peer.</VERS>\n\t\t\t<VERS vnumber=\"19\"> I have not spoken in secret, in some hidden place. I did not tell Jacob's descendants, 'Seek me in vain!' I am the LORD, the one who speaks honestly, who makes reliable announcements.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Gather together and come! Approach together, you refugees from the nations! Those who carry wooden idols know nothing, those who pray to a god that cannot deliver.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Tell me! Present the evidence! Let them consult with one another! Who predicted this in the past? Who announced it beforehand? Was it not I, the LORD? I have no peer, there is no God but me, a God who vindicates and delivers; there is none but me.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Turn to me so you can be delivered, all you who live in the earth's remote regions! For I am God, and I have no peer.</VERS>\n\t\t\t<VERS vnumber=\"23\"> I solemnly make this oath, what I say is true and reliable: 'Surely every knee will bow to me, every tongue will solemnly affirm;</VERS>\n\t\t\t<VERS vnumber=\"24\"> they will say about me, \"Yes, the LORD is a powerful deliverer.\"'\" All who are angry at him will cower before him.</VERS>\n\t\t\t<VERS vnumber=\"25\"> All the descendants of Israel will be vindicated by the LORD and will boast in him.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"46\">\n\t\t\t<VERS vnumber=\"1\"> Bel kneels down, Nebo bends low. Their images weigh down animals and beasts. Your heavy images are burdensome to tired animals.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Together they bend low and kneel down; they are unable to rescue the images; they themselves head off into captivity.</VERS>\n\t\t\t<VERS vnumber=\"3\"> \"Listen to me, O family of Jacob, all you who are left from the family of Israel, you who have been carried from birth, you who have been supported from the time you left the womb.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Even when you are old, I will take care of you, even when you have gray hair, I will carry you. I made you and I will support you; I will carry you and rescue you.</VERS>\n\t\t\t<VERS vnumber=\"5\"> To whom can you compare and liken me? Tell me whom you think I resemble, so we can be compared!</VERS>\n\t\t\t<VERS vnumber=\"6\"> Those who empty out gold from a purse and weigh out silver on the scale hire a metalsmith, who makes it into a god. They then bow down and worship it.</VERS>\n\t\t\t<VERS vnumber=\"7\"> They put it on their shoulder and carry it; they put it in its place and it just stands there; it does not move from its place. Even when someone cries out to it, it does not reply; it does not deliver him from his distress.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Remember this, so you can be brave! Think about it, you rebels!</VERS>\n\t\t\t<VERS vnumber=\"9\"> Remember what I accomplished in antiquity! Truly I am God, I have no peer; I am God, and there is none like me,</VERS>\n\t\t\t<VERS vnumber=\"10\"> who announces the end from the beginning and reveals beforehand what has not yet occurred, who says, 'My plan will be realized, I will accomplish what I desire,'</VERS>\n\t\t\t<VERS vnumber=\"11\"> who summons an eagle from the east, from a distant land, one who carries out my plan. Yes, I have decreed, yes, I will bring it to pass; I have formulated a plan, yes, I will carry it out.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Listen to me, you stubborn people, you who distance yourself from doing what is right.</VERS>\n\t\t\t<VERS vnumber=\"13\"> I am bringing my deliverance near, it is not far away; I am bringing my salvation near, it does not wait. I will save Zion; I will adorn Israel with my splendor.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"47\">\n\t\t\t<VERS vnumber=\"1\"> \"Fall down! Sit in the dirt, O virgin daughter Babylon! Sit on the ground, not on a throne, O daughter of the Babylonians! Indeed, you will no longer be called delicate and pampered.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Pick up millstones and grind flour! Remove your veil, strip off your skirt, expose your legs, cross the streams!</VERS>\n\t\t\t<VERS vnumber=\"3\"> Let your private parts be exposed! Your genitals will be on display! I will get revenge; I will not have pity on anyone,\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> says our protector, the LORD who commands armies is his name, the Holy One of Israel.</VERS>\n\t\t\t<VERS vnumber=\"5\"> \"Sit silently! Go to a hiding place, O daughter of the Babylonians! Indeed, you will no longer be called 'Queen of kingdoms.'</VERS>\n\t\t\t<VERS vnumber=\"6\"> I was angry at my people; I defiled my special possession and handed them over to you. You showed them no mercy; you even placed a very heavy burden on old people.</VERS>\n\t\t\t<VERS vnumber=\"7\"> You said, 'I will rule forever as permanent queen!' You did not think about these things; you did not consider how it would turn out.</VERS>\n\t\t\t<VERS vnumber=\"8\"> So now, listen to this, O one who lives so lavishly, who lives securely, who says to herself, 'I am unique! No one can compare to me! I will never have to live as a widow; I will never lose my children.'</VERS>\n\t\t\t<VERS vnumber=\"9\"> Both of these will come upon you suddenly, in one day! You will lose your children and be widowed. You will be overwhelmed by these tragedies, despite your many incantations and your numerous amulets.</VERS>\n\t\t\t<VERS vnumber=\"10\"> You were complacent in your evil deeds; you thought, 'No one sees me.' Your self-professed wisdom and knowledge lead you astray, when you say, 'I am unique! No one can compare to me!'</VERS>\n\t\t\t<VERS vnumber=\"11\"> Disaster will overtake you; you will not know how to charm it away. Destruction will fall on you; you will not be able to appease it. Calamity will strike you suddenly, before you recognize it.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Persist in trusting your amulets and your many incantations, which you have faithfully recited since your youth! Maybe you will be successful, maybe you will scare away disaster.</VERS>\n\t\t\t<VERS vnumber=\"13\"> You are tired out from listening to so much advice. Let them take their stand, the ones who see omens in the sky, who gaze at the stars, who make monthly predictions, let them rescue you from the disaster that is about to overtake you!</VERS>\n\t\t\t<VERS vnumber=\"14\"> Look, they are like straw, which the fire burns up; they cannot rescue themselves from the heat of the flames. There are no coals to warm them, no firelight to enjoy.</VERS>\n\t\t\t<VERS vnumber=\"15\"> They will disappoint you, those you have so faithfully dealt with since your youth. Each strays off in his own direction, leaving no one to rescue you.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"48\">\n\t\t\t<VERS vnumber=\"1\"> Listen to this, O family of Jacob, you who are called by the name 'Israel,' and are descended from Judah, who take oaths in the name of the LORD, and invoke the God of Israel, but not in an honest and just manner.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Indeed, they live in the holy city; they trust in the God of Israel, whose name is the LORD who commands armies.</VERS>\n\t\t\t<VERS vnumber=\"3\"> \"I announced events beforehand, I issued the decrees and made the predictions; suddenly I acted and they came to pass.</VERS>\n\t\t\t<VERS vnumber=\"4\"> I did this because I know how stubborn you are. Your neck muscles are like iron and your forehead like bronze.</VERS>\n\t\t\t<VERS vnumber=\"5\"> I announced them to you beforehand; before they happened, I predicted them for you, so you could never say, 'My image did these things, my idol, my cast image, decreed them.'</VERS>\n\t\t\t<VERS vnumber=\"6\"> You have heard; now look at all the evidence! Will you not admit that what I say is true? From this point on I am announcing to you new events that are previously unrevealed and you do not know about.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Now they come into being, not in the past; before today you did not hear about them, so you could not say, 'Yes, I know about them.'</VERS>\n\t\t\t<VERS vnumber=\"8\"> You did not hear, you do not know, you were not told beforehand. For I know that you are very deceitful; you were labeled a rebel from birth.</VERS>\n\t\t\t<VERS vnumber=\"9\"> For the sake of my reputation I hold back my anger; for the sake of my prestige I restrain myself from destroying you.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Look, I have refined you, but not as silver; I have purified you in the furnace of misery.</VERS>\n\t\t\t<VERS vnumber=\"11\"> For my sake alone I will act, for how can I allow my name to be defiled? I will not share my glory with anyone else!</VERS>\n\t\t\t<VERS vnumber=\"12\"> Listen to me, O Jacob, Israel, whom I summoned! I am the one; I am present at the very beginning and at the very end.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Yes, my hand founded the earth; my right hand spread out the sky. I summon them; they stand together.</VERS>\n\t\t\t<VERS vnumber=\"14\"> All of you, gather together and listen! Who among them announced these things? The LORD's ally will carry out his desire against Babylon; he will exert his power against the Babylonians.</VERS>\n\t\t\t<VERS vnumber=\"15\"> I, I have spoken, yes, I have summoned him; I lead him and he will succeed.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Approach me! Listen to this! From the very first I have not spoken in secret; when it happens, I am there.\" So now, the sovereign LORD has sent me, accompanied by his spirit.</VERS>\n\t\t\t<VERS vnumber=\"17\"> This is what the LORD, your protector, says, the Holy One of Israel: \"I am the LORD your God, who teaches you how to succeed, who leads you in the way you should go.</VERS>\n\t\t\t<VERS vnumber=\"18\"> If only you had obeyed my commandments, prosperity would have flowed to you like a river, deliverance would have come to you like the waves of the sea.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Your descendants would have been as numerous as sand, and your children like its granules. Their name would not have been cut off and eliminated from my presence.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Leave Babylon! Flee from the Babylonians! Announce it with a shout of joy! Make this known! Proclaim it throughout the earth! Say, 'The LORD protects his servant Jacob.</VERS>\n\t\t\t<VERS vnumber=\"21\"> They do not thirst as he leads them through dry regions; he makes water flow out of a rock for them; he splits open a rock and water flows out.'</VERS>\n\t\t\t<VERS vnumber=\"22\"> There will be no prosperity for the wicked,\" says the LORD.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"49\">\n\t\t\t<VERS vnumber=\"1\"> Listen to me, you coastlands! Pay attention, you people who live far away! The LORD summoned me from birth; he commissioned me when my mother brought me into the world.</VERS>\n\t\t\t<VERS vnumber=\"2\"> He made my mouth like a sharp sword, he hid me in the hollow of his hand; he made me like a sharpened arrow, he hid me in his quiver.</VERS>\n\t\t\t<VERS vnumber=\"3\"> He said to me, \"You are my servant, Israel, through whom I will reveal my splendor.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> But I thought, \"I have worked in vain; I have expended my energy for absolutely nothing.\" But the LORD will vindicate me; my God will reward me.</VERS>\n\t\t\t<VERS vnumber=\"5\"> So now the LORD says, the one who formed me from birth to be his servant, he did this to restore Jacob to himself, so that Israel might be gathered to him; and I will be honored in the LORD's sight, for my God is my source of strength,</VERS>\n\t\t\t<VERS vnumber=\"6\"> he says, \"Is it too insignificant a task for you to be my servant, to reestablish the tribes of Jacob, and restore the remnant of Israel? I will make you a light to the nations, so you can bring my deliverance to the remote regions of the earth.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> This is what the LORD, the protector of Israel, their Holy One, says to the one who is despised and rejected by nations, a servant of rulers: \"Kings will see and rise in respect, princes will bow down, because of the faithful LORD, the Holy One of Israel who has chosen you.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> This is what the LORD says: \"At the time I decide to show my favor, I will respond to you; in the day of deliverance I will help you; I will protect you and make you a covenant mediator for people, to rebuild the land and to reassign the desolate property.</VERS>\n\t\t\t<VERS vnumber=\"9\"> You will say to the prisoners, 'Come out,' and to those who are in dark dungeons, 'Emerge.' They will graze beside the roads; on all the slopes they will find pasture.</VERS>\n\t\t\t<VERS vnumber=\"10\"> They will not be hungry or thirsty; the sun's oppressive heat will not beat down on them, for one who has compassion on them will guide them; he will lead them to springs of water.</VERS>\n\t\t\t<VERS vnumber=\"11\"> I will make all my mountains into a road; I will construct my roadways.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> Look, they come from far away! Look, some come from the north and west, and others from the land of Sinim!</VERS>\n\t\t\t<VERS vnumber=\"13\"> Shout for joy, O sky! Rejoice, O earth! Let the mountains give a joyful shout! For the LORD consoles his people and shows compassion to the oppressed.</VERS>\n\t\t\t<VERS vnumber=\"14\"> \"Zion said, 'The LORD has abandoned me, the sovereign master has forgotten me.'</VERS>\n\t\t\t<VERS vnumber=\"15\"> Can a woman forget her baby who nurses at her breast? Can she withhold compassion from the child she has borne? Even if mothers were to forget, I could never forget you!</VERS>\n\t\t\t<VERS vnumber=\"16\"> Look, I have inscribed your name on my palms; your walls are constantly before me.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Your children hurry back, while those who destroyed and devastated you depart.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Look all around you! All of them gather to you. As surely as I live,\" says the LORD, \"you will certainly wear all of them like jewelry; you will put them on as if you were a bride.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Yes, your land lies in ruins; it is desolate and devastated. But now you will be too small to hold your residents, and those who devoured you will be far away.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Yet the children born during your time of bereavement will say within your hearing, 'This place is too cramped for us, make room for us so we can live here.'</VERS>\n\t\t\t<VERS vnumber=\"21\"> Then you will think to yourself, 'Who bore these children for me? I was bereaved and barren, dismissed and divorced. Who raised these children? Look, I was left all alone; where did these children come from?'\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> This is what the sovereign LORD says: \"Look I will raise my hand to the nations; I will raise my signal flag to the peoples. They will bring your sons in their arms and carry your daughters on their shoulders.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Kings will be your children's guardians; their princesses will nurse your children. With their faces to the ground they will bow down to you and they will lick the dirt on your feet. Then you will recognize that I am the LORD; those who wait patiently for me are not put to shame.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Can spoils be taken from a warrior, or captives be rescued from a conqueror?</VERS>\n\t\t\t<VERS vnumber=\"25\"> Indeed,\" says the LORD, \"captives will be taken from a warrior; spoils will be rescued from a conqueror. I will oppose your adversary and I will rescue your children.</VERS>\n\t\t\t<VERS vnumber=\"26\"> I will make your oppressors eat their own flesh; they will get drunk on their own blood, as if it were wine. Then all humankind will recognize that I am the LORD, your deliverer, your protector, the powerful ruler of Jacob.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"50\">\n\t\t\t<VERS vnumber=\"1\"> This is what the LORD says: \"Where is your mother's divorce certificate by which I divorced her? Or to which of my creditors did I sell you? Look, you were sold because of your sins; because of your rebellious acts I divorced your mother.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Why does no one challenge me when I come? Why does no one respond when I call? Is my hand too weak to deliver you? Do I lack the power to rescue you? Look, with a mere shout I can dry up the sea; I can turn streams into a desert, so the fish rot away and die from lack of water.</VERS>\n\t\t\t<VERS vnumber=\"3\"> I can clothe the sky in darkness; I can cover it with sackcloth.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> The sovereign LORD has given me the capacity to be his spokesman, so that I know how to help the weary. He wakes me up every morning; he makes me alert so I can listen attentively as disciples do.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The sovereign LORD has spoken to me clearly; I have not rebelled, I have not turned back.</VERS>\n\t\t\t<VERS vnumber=\"6\"> I offered my back to those who attacked, my jaws to those who tore out my beard; I did not hide my face from insults and spitting.</VERS>\n\t\t\t<VERS vnumber=\"7\"> But the sovereign LORD helps me, so I am not humiliated. For that reason I am steadfastly resolved; I know I will not be put to shame.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The one who vindicates me is close by. Who dares to argue with me? Let us confront each other! Who is my accuser? Let him challenge me!</VERS>\n\t\t\t<VERS vnumber=\"9\"> Look, the sovereign LORD helps me. Who dares to condemn me? Look, all of them will wear out like clothes; a moth will eat away at them.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Who among you fears the LORD? Who obeys his servant? Whoever walks in deep darkness, without light, should trust in the name of the LORD and rely on his God.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Look, all of you who start a fire and who equip yourselves with flaming arrows, walk in the light of the fire you started and among the flaming arrows you ignited! This is what you will receive from me: you will lie down in a place of pain.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"51\">\n\t\t\t<VERS vnumber=\"1\"> \"Listen to me, you who pursue godliness, who seek the LORD! Look at the rock from which you were chiseled, at the quarry from which you were dug!</VERS>\n\t\t\t<VERS vnumber=\"2\"> Look at Abraham, your father, and Sarah, who gave you birth. When I summoned him, he was a lone individual, but I blessed him and gave him numerous descendants.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Certainly the LORD will console Zion; he will console all her ruins. He will make her wilderness like Eden, her desert like the Garden of the LORD. Happiness and joy will be restored to her, thanksgiving and the sound of music.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Pay attention to me, my people! Listen to me, my people! For I will issue a decree, I will make my justice a light to the nations.</VERS>\n\t\t\t<VERS vnumber=\"5\"> I am ready to vindicate, I am ready to deliver, I will establish justice among the nations. The coastlands wait patiently for me; they wait in anticipation for the revelation of my power.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Look up at the sky! Look at the earth below! For the sky will dissipate like smoke, and the earth will wear out like clothes; its residents will die like gnats. But the deliverance I give is permanent; the vindication I provide will not disappear.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Listen to me, you who know what is right, you people who are aware of my law! Don't be afraid of the insults of men; don't be discouraged because of their abuse!</VERS>\n\t\t\t<VERS vnumber=\"8\"> For a moth will eat away at them like clothes; a clothes moth will devour them like wool. But the vindication I provide will be permanent; the deliverance I give will last.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> Wake up! Wake up! Clothe yourself with strength, O arm of the LORD! Wake up as in former times, as in antiquity! Did you not smash the Proud One? Did you not wound the sea monster?</VERS>\n\t\t\t<VERS vnumber=\"10\"> Did you not dry up the sea, the waters of the great deep? Did you not make a path through the depths of the sea, so those delivered from bondage could cross over?</VERS>\n\t\t\t<VERS vnumber=\"11\"> Those whom the LORD has ransomed will return; they will enter Zion with a happy shout. Unending joy will crown them, happiness and joy will overwhelm them; grief and suffering will disappear.</VERS>\n\t\t\t<VERS vnumber=\"12\"> \"I, I am the one who consoles you. Why are you afraid of mortal men, of mere human beings who are as short-lived as grass?</VERS>\n\t\t\t<VERS vnumber=\"13\"> Why do you forget the LORD, who made you, who stretched out the sky and founded the earth? Why do you constantly tremble all day long at the anger of the oppressor, when he makes plans to destroy? Where is the anger of the oppressor?</VERS>\n\t\t\t<VERS vnumber=\"14\"> The one who suffers will soon be released; he will not die in prison, he will not go hungry.</VERS>\n\t\t\t<VERS vnumber=\"15\"> I am the LORD your God, who churns up the sea so that its waves surge. The LORD who commands armies is his name!</VERS>\n\t\t\t<VERS vnumber=\"16\"> I commission you as my spokesman; I cover you with the palm of my hand, to establish the sky and to found the earth, to say to Zion, 'You are my people.'\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> Wake up! Wake up! Get up, O Jerusalem! You drank from the cup the LORD passed to you, which was full of his anger! You drained dry the goblet full of intoxicating wine.</VERS>\n\t\t\t<VERS vnumber=\"18\"> There was no one to lead her among all the children she bore; there was no one to take her by the hand among all the children she raised.</VERS>\n\t\t\t<VERS vnumber=\"19\"> These double disasters confronted you. But who feels sorry for you? Destruction and devastation, famine and sword. But who consoles you?</VERS>\n\t\t\t<VERS vnumber=\"20\"> Your children faint; they lie at the head of every street like an antelope in a snare. They are left in a stupor by the LORD's anger, by the battle cry of your God.</VERS>\n\t\t\t<VERS vnumber=\"21\"> So listen to this, oppressed one, who is drunk, but not from wine!</VERS>\n\t\t\t<VERS vnumber=\"22\"> This is what your sovereign master, the LORD your God, says: \"Look, I have removed from your hand the cup of intoxicating wine, the goblet full of my anger. You will no longer have to drink it.</VERS>\n\t\t\t<VERS vnumber=\"23\"> I will put it into the hand of your tormentors who said to you, 'Lie down, so we can walk over you.' You made your back like the ground, and like the street for those who walked over you.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"52\">\n\t\t\t<VERS vnumber=\"1\"> Wake up! Wake up! Clothe yourself with strength, O Zion! Put on your beautiful clothes, O Jerusalem, holy city! For uncircumcised and unclean pagans will no longer invade you.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Shake off the dirt! Get up, captive Jerusalem! Take off the iron chains around your neck, O captive daughter Zion!</VERS>\n\t\t\t<VERS vnumber=\"3\"> For this is what the LORD says: \"You were sold for nothing, and you will not be redeemed for money.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> For this is what the sovereign LORD says: \"In the beginning my people went to live temporarily in Egypt; Assyria oppressed them for no good reason.</VERS>\n\t\t\t<VERS vnumber=\"5\"> And now, what do we have here?\" says the LORD. \"Indeed my people have been carried away for nothing, those who rule over them taunt,\" says the LORD, \"and my name is constantly slandered all day long.</VERS>\n\t\t\t<VERS vnumber=\"6\"> For this reason my people will know my name, for this reason they will know at that time that I am the one who says, 'Here I am.'\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> How delightful it is to see approaching over the mountains the feet of a messenger who announces peace, a messenger who brings good news, who announces deliverance, who says to Zion, \"Your God reigns!\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> Listen, your watchmen shout; in unison they shout for joy, for they see with their very own eyes the LORD's return to Zion.</VERS>\n\t\t\t<VERS vnumber=\"9\"> In unison give a joyful shout, O ruins of Jerusalem! For the LORD consoles his people; he protects Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The LORD reveals his royal power in the sight of all the nations; the entire earth sees our God deliver.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Leave! Leave! Get out of there! Don't touch anything unclean! Get out of it! Stay pure, you who carry the LORD's holy items!</VERS>\n\t\t\t<VERS vnumber=\"12\"> Yet do not depart quickly or leave in a panic. For the LORD goes before you; the God of Israel is your rear guard.</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"Look, my servant will succeed! He will be elevated, lifted high, and greatly exalted,</VERS>\n\t\t\t<VERS vnumber=\"14\"> (just as many were horrified by the sight of you) he was so disfigured he no longer looked like a man;</VERS>\n\t\t\t<VERS vnumber=\"15\"> his form was so marred he no longer looked human, so now he will startle many nations. Kings will be shocked by his exaltation, for they will witness something unannounced to them, and they will understand something they had not heard about.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"53\">\n\t\t\t<VERS vnumber=\"1\"> Who would have believed what we just heard? When was the LORD's power revealed through him?</VERS>\n\t\t\t<VERS vnumber=\"2\"> He sprouted up like a twig before God, like a root out of parched soil; he had no stately form or majesty that might catch our attention, no special appearance that we should want to follow him.</VERS>\n\t\t\t<VERS vnumber=\"3\"> He was despised and rejected by people, one who experienced pain and was acquainted with illness; people hid their faces from him; he was despised, and we considered him insignificant.</VERS>\n\t\t\t<VERS vnumber=\"4\"> But he lifted up our illnesses, he carried our pain; even though we thought he was being punished, attacked by God, and afflicted for something he had done.</VERS>\n\t\t\t<VERS vnumber=\"5\"> He was wounded because of our rebellious deeds, crushed because of our sins; he endured punishment that made us well; because of his wounds we have been healed.</VERS>\n\t\t\t<VERS vnumber=\"6\"> All of us had wandered off like sheep; each of us had strayed off on his own path, but the LORD caused the sin of all of us to attack him.</VERS>\n\t\t\t<VERS vnumber=\"7\"> He was treated harshly and afflicted, but he did not even open his mouth. Like a lamb led to the slaughtering block, like a sheep silent before her shearers, he did not even open his mouth.</VERS>\n\t\t\t<VERS vnumber=\"8\"> He was led away after an unjust trial, but who even cared? Indeed, he was cut off from the land of the living; because of the rebellion of his own people he was wounded.</VERS>\n\t\t\t<VERS vnumber=\"9\"> They intended to bury him with criminals, but he ended up in a rich man's tomb, because he had committed no violent deeds, nor had he spoken deceitfully.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Though the LORD desired to crush him and make him ill, once restitution is made, he will see descendants and enjoy long life, and the LORD's purpose will be accomplished through him.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Having suffered, he will reflect on his work, he will be satisfied when he understands what he has done. \"My servant will acquit many, for he carried their sins.</VERS>\n\t\t\t<VERS vnumber=\"12\"> So I will assign him a portion with the multitudes, he will divide the spoils of victory with the powerful, because he willingly submitted to death and was numbered with the rebels, when he lifted up the sin of many and intervened on behalf of the rebels.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"54\">\n\t\t\t<VERS vnumber=\"1\"> \"Shout for joy, O barren one who has not given birth! Give a joyful shout and cry out, you who have not been in labor! For the children of the desolate one are more numerous than the children of the married woman,\" says the LORD.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Make your tent larger, stretch your tent curtains farther out! Spare no effort, lengthen your ropes, and pound your stakes deep.</VERS>\n\t\t\t<VERS vnumber=\"3\"> For you will spread out to the right and to the left; your children will conquer nations and will resettle desolate cities.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Don't be afraid, for you will not be put to shame! Don't be intimidated, for you will not be humiliated! You will forget about the shame you experienced in your youth; you will no longer remember the disgrace of your abandonment.</VERS>\n\t\t\t<VERS vnumber=\"5\"> For your husband is the one who made you, the LORD who commands armies is his name. He is your protector, the Holy One of Israel. He is called \"God of the entire earth.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"Indeed, the LORD will call you back like a wife who has been abandoned and suffers from depression, like a young wife when she has been rejected,\" says your God.</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"For a short time I abandoned you, but with great compassion I will gather you.</VERS>\n\t\t\t<VERS vnumber=\"8\"> In a burst of anger I rejected you momentarily, but with lasting devotion I will have compassion on you,\" says your protector, the LORD.</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"As far as I am concerned, this is like in Noah's time, when I vowed that the waters of Noah's flood would never again cover the earth. In the same way I have vowed that I will not be angry at you or shout at you.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Even if the mountains are removed and the hills displaced, my devotion will not be removed from you, nor will my covenant of friendship be displaced,\" says the LORD, the one who has compassion on you.</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"O afflicted one, driven away, and unconsoled! Look, I am about to set your stones in antimony and I lay your foundation with lapis-lazuli.</VERS>\n\t\t\t<VERS vnumber=\"12\"> I will make your pinnacles out of gems, your gates out of beryl, and your outer wall out of beautiful stones.</VERS>\n\t\t\t<VERS vnumber=\"13\"> All your children will be followers of the LORD, and your children will enjoy great prosperity.</VERS>\n\t\t\t<VERS vnumber=\"14\"> You will be reestablished when I vindicate you. You will not experience oppression; indeed, you will not be afraid. You will not be terrified, for nothing frightening will come near you.</VERS>\n\t\t\t<VERS vnumber=\"15\"> If anyone dares to challenge you, it will not be my doing! Whoever tries to challenge you will be defeated.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Look, I create the craftsman, who fans the coals into a fire and forges a weapon. I create the destroyer so he might devastate.</VERS>\n\t\t\t<VERS vnumber=\"17\"> No weapon forged to be used against you will succeed; you will refute everyone who tries to accuse you. This is what the LORD will do for his servants, I will vindicate them,\" says the LORD.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"55\">\n\t\t\t<VERS vnumber=\"1\"> \"Hey, all who are thirsty, come to the water! You who have no money, come! Buy and eat! Come! Buy wine and milk without money and without cost!</VERS>\n\t\t\t<VERS vnumber=\"2\"> Why pay money for something that will not nourish you? Why spend your hard-earned money on something that will not satisfy? Listen carefully to me and eat what is nourishing! Enjoy fine food!</VERS>\n\t\t\t<VERS vnumber=\"3\"> Pay attention and come to me! Listen, so you can live! Then I will make an unconditional covenantal promise to you, just like the reliable covenantal promises I made to David.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Look, I made him a witness to nations, a ruler and commander of nations.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> Look, you will summon nations you did not previously know; nations that did not previously know you will run to you, because of the LORD your God, the Holy One of Israel, for he bestows honor on you.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Seek the LORD while he makes himself available; call to him while he is nearby!</VERS>\n\t\t\t<VERS vnumber=\"7\"> The wicked need to abandon their lifestyle and sinful people their plans. They should return to the LORD, and he will show mercy to them, and to their God, for he will freely forgive them.</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"Indeed, my plans are not like your plans, and my deeds are not like your deeds,</VERS>\n\t\t\t<VERS vnumber=\"9\"> for just as the sky is higher than the earth, so my deeds are superior to your deeds and my plans superior to your plans.</VERS>\n\t\t\t<VERS vnumber=\"10\">  The rain and snow fall from the sky and do not return, but instead water the earth and make it produce and yield crops, and provide seed for the planter and food for those who must eat.</VERS>\n\t\t\t<VERS vnumber=\"11\"> In the same way, the promise that I make does not return to me, having accomplished nothing. No, it is realized as I desire and is fulfilled as I intend.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> Indeed you will go out with joy; you will be led along in peace; the mountains and hills will give a joyful shout before you, and all the trees in the field will clap their hands.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Evergreens will grow in place of thorn bushes, firs will grow in place of nettles; they will be a monument to the LORD, a permanent reminder that will remain.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"56\">\n\t\t\t<VERS vnumber=\"1\"> This is what the LORD says, \"Promote justice! Do what is right! For I am ready to deliver you; I am ready to vindicate you openly.</VERS>\n\t\t\t<VERS vnumber=\"2\"> The people who do this will be blessed, the people who commit themselves to obedience, who observe the Sabbath and do not defile it, who refrain from doing anything that is wrong.</VERS>\n\t\t\t<VERS vnumber=\"3\"> No foreigner who becomes a follower of the LORD should say, 'The LORD will certainly exclude me from his people.' The eunuch should not say, 'Look, I am like a dried-up tree.'\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> For this is what the LORD says: \"For the eunuchs who observe my Sabbaths and choose what pleases me and are faithful to my covenant,</VERS>\n\t\t\t<VERS vnumber=\"5\"> I will set up within my temple and my walls a monument that will be better than sons and daughters. I will set up a permanent monument for them that will remain.</VERS>\n\t\t\t<VERS vnumber=\"6\"> As for foreigners who become followers of the LORD and serve him, who love the name of the LORD and want to be his servants, all who observe the Sabbath and do not defile it, and who are faithful to my covenant,</VERS>\n\t\t\t<VERS vnumber=\"7\"> I will bring them to my holy mountain; I will make them happy in the temple where people pray to me. Their burnt offerings and sacrifices will be accepted on my altar, for my temple will be known as a temple where all nations may pray.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> The sovereign LORD says this, the one who gathers the dispersed of Israel: \"I will still gather them up.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> All you wild animals in the fields, come and devour, all you wild animals in the forest!</VERS>\n\t\t\t<VERS vnumber=\"10\"> All their watchmen are blind, they are unaware. All of them are like mute dogs, unable to bark. They pant, lie down, and love to snooze.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The dogs have big appetites; they are never full. They are shepherds who have no understanding; they all go their own way, each one looking for monetary gain.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Each one says, 'Come on, I'll get some wine! Let's guzzle some beer! Tomorrow will be just like today! We'll have everything we want!'</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"57\">\n\t\t\t<VERS vnumber=\"1\"> The godly perish, but no one cares. Honest people disappear, when no one minds that the godly disappear because of evil.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Those who live uprightly enter a place of peace; they rest on their beds.</VERS>\n\t\t\t<VERS vnumber=\"3\"> But approach, you sons of omen readers, you offspring of adulteresses and prostitutes!</VERS>\n\t\t\t<VERS vnumber=\"4\"> At whom are you laughing? At whom are you opening your mouth and sticking out your tongue? You are the children of rebels, the offspring of liars,</VERS>\n\t\t\t<VERS vnumber=\"5\"> you who practice ritual sex under the oaks and every green tree, who slaughter children near the streams under the rocky overhangs.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Among the smooth stones of the stream are the idols you love; they, they are the object of your devotion. You pour out liquid offerings to them, you make an offering. Because of these things I will seek vengeance.</VERS>\n\t\t\t<VERS vnumber=\"7\"> On every high, elevated hill you prepare your bed; you go up there to offer sacrifices.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Behind the door and doorpost you put your symbols. Indeed, you depart from me and go up and invite them into bed with you. You purchase favors from them, you love their bed, and gaze longingly on their genitals.</VERS>\n\t\t\t<VERS vnumber=\"9\"> You take olive oil as tribute to your king, along with many perfumes. You send your messengers to a distant place; you go all the way to Sheol.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Because of the long distance you must travel, you get tired, but you do not say, 'I give up.' You get renewed energy, so you don't collapse.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Whom are you worried about? Whom do you fear, that you would act so deceitfully and not remember me or think about me? Because I have been silent for so long, you are not afraid of me.</VERS>\n\t\t\t<VERS vnumber=\"12\"> I will denounce your so-called righteousness and your deeds, but they will not help you.</VERS>\n\t\t\t<VERS vnumber=\"13\"> When you cry out for help, let your idols help you! The wind blows them all away, a breeze carries them away. But the one who looks to me for help will inherit the land and will have access to my holy mountain.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> He says, \"Build it! Build it! Clear a way! Remove all the obstacles out of the way of my people!\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> For this is what the high and exalted one says, the one who rules forever, whose name is holy: \"I dwell in an exalted and holy place, but also with the discouraged and humiliated, in order to cheer up the humiliated and to encourage the discouraged.</VERS>\n\t\t\t<VERS vnumber=\"16\"> For I will not be hostile forever or perpetually angry, for then man's spirit would grow faint before me, the life-giving breath I created.</VERS>\n\t\t\t<VERS vnumber=\"17\"> I was angry because of their sinful greed; I attacked them and angrily rejected them, yet they remained disobedient and stubborn.</VERS>\n\t\t\t<VERS vnumber=\"18\"> I have seen their behavior, but I will heal them and give them rest, and I will once again console those who mourn.</VERS>\n\t\t\t<VERS vnumber=\"19\"> I am the one who gives them reason to celebrate. Complete prosperity is available both to those who are far away and those who are nearby,\" says the LORD, \"and I will heal them.</VERS>\n\t\t\t<VERS vnumber=\"20\"> But the wicked are like a surging sea that is unable to be quiet; its waves toss up mud and sand.</VERS>\n\t\t\t<VERS vnumber=\"21\"> There will be no prosperity,\" says my God, \"for the wicked.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"58\">\n\t\t\t<VERS vnumber=\"1\"> \"Shout loudly! Don't be quiet! Yell as loud as a trumpet! Confront my people with their rebellious deeds; confront Jacob's family with their sin!</VERS>\n\t\t\t<VERS vnumber=\"2\"> They seek me day after day; they want to know my requirements, like a nation that does what is right and does not reject the law of their God. They ask me for just decrees; they want to be near God.</VERS>\n\t\t\t<VERS vnumber=\"3\"> They lament, 'Why don't you notice when we fast? Why don't you pay attention when we humble ourselves?' Look, at the same time you fast, you satisfy your selfish desires, you oppress your workers.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Look, your fasting is accompanied by arguments, brawls, and fistfights. Do not fast as you do today, trying to make your voice heard in heaven.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Is this really the kind of fasting I want? Do I want a day when people merely humble themselves, bowing their heads like a reed and stretching out on sackcloth and ashes? Is this really what you call a fast, a day that is pleasing to the LORD?</VERS>\n\t\t\t<VERS vnumber=\"6\"> No, this is the kind of fast I want. I want you to remove the sinful chains, to tear away the ropes of the burdensome yoke, to set free the oppressed, and to break every burdensome yoke.</VERS>\n\t\t\t<VERS vnumber=\"7\"> I want you to share your food with the hungry and to provide shelter for homeless, oppressed people. When you see someone naked, clothe him! Don't turn your back on your own flesh and blood!</VERS>\n\t\t\t<VERS vnumber=\"8\"> Then your light will shine like the sunrise; your restoration will quickly arrive; your godly behavior will go before you, and the LORD's splendor will be your rear guard.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Then you will call out, and the LORD will respond; you will cry out, and he will reply, 'Here I am.' You must remove the burdensome yoke from among you and stop pointing fingers and speaking sinfully.</VERS>\n\t\t\t<VERS vnumber=\"10\"> You must actively help the hungry and feed the oppressed. Then your light will dispel the darkness, and your darkness will be transformed into noonday.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The LORD will continually lead you; he will feed you even in parched regions. He will give you renewed strength, and you will be like a well-watered garden, like a spring that continually produces water.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Your perpetual ruins will be rebuilt; you will reestablish the ancient foundations. You will be called, 'The one who repairs broken walls, the one who makes the streets inhabitable again.'</VERS>\n\t\t\t<VERS vnumber=\"13\"> You must observe the Sabbath rather than doing anything you please on my holy day. You must look forward to the Sabbath and treat the LORD's holy day with respect. You must treat it with respect by refraining from your normal activities, and by refraining from your selfish pursuits and from making business deals.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Then you will find joy in your relationship to the LORD, and I will give you great prosperity, and cause crops to grow on the land I gave to your ancestor Jacob.\" Know for certain that the LORD has spoken.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"59\">\n\t\t\t<VERS vnumber=\"1\"> Look, the LORD's hand is not too weak to deliver you; his ear is not too deaf to hear you.</VERS>\n\t\t\t<VERS vnumber=\"2\"> But your sinful acts have alienated you from your God; your sins have caused him to reject you and not listen to your prayers.</VERS>\n\t\t\t<VERS vnumber=\"3\"> For your hands are stained with blood and your fingers with sin; your lips speak lies, your tongue utters malicious words.</VERS>\n\t\t\t<VERS vnumber=\"4\"> No one is concerned about justice; no one sets forth his case truthfully. They depend on false words and tell lies; they conceive of oppression and give birth to sin.</VERS>\n\t\t\t<VERS vnumber=\"5\"> They hatch the eggs of a poisonous snake and spin a spider's web. Whoever eats their eggs will die, a poisonous snake is hatched.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Their webs cannot be used for clothing; they cannot cover themselves with what they make. Their deeds are sinful; they commit violent crimes.</VERS>\n\t\t\t<VERS vnumber=\"7\"> They are eager to do evil, quick to shed innocent blood. Their thoughts are sinful; they crush and destroy.</VERS>\n\t\t\t<VERS vnumber=\"8\"> They are unfamiliar with peace; their deeds are unjust. They use deceitful methods, and whoever deals with them is unfamiliar with peace.</VERS>\n\t\t\t<VERS vnumber=\"9\"> For this reason deliverance is far from us and salvation does not reach us. We wait for light, but see only darkness; we wait for a bright light, but live in deep darkness.</VERS>\n\t\t\t<VERS vnumber=\"10\"> We grope along the wall like the blind, we grope like those who cannot see; we stumble at noontime as if it were evening. Though others are strong, we are like dead men.</VERS>\n\t\t\t<VERS vnumber=\"11\"> We all growl like bears, we coo mournfully like doves; we wait for deliverance, but there is none, for salvation, but it is far from us.</VERS>\n\t\t\t<VERS vnumber=\"12\"> For you are aware of our many rebellious deeds, and our sins testify against us; indeed, we are aware of our rebellious deeds; we know our sins all too well.</VERS>\n\t\t\t<VERS vnumber=\"13\"> We have rebelled and tried to deceive the LORD; we turned back from following our God. We stir up oppression and rebellion; we tell lies we concocted in our minds.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Justice is driven back; godliness stands far off. Indeed, honesty stumbles in the city square and morality is not even able to enter.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Honesty has disappeared; the one who tries to avoid evil is robbed. The LORD watches and is displeased, for there is no justice.</VERS>\n\t\t\t<VERS vnumber=\"16\"> He sees there is no advocate; he is shocked that no one intervenes. So he takes matters into his own hands; his desire for justice drives him on.</VERS>\n\t\t\t<VERS vnumber=\"17\"> He wears his desire for justice like body armor, and his desire to deliver is like a helmet on his head. He puts on the garments of vengeance and wears zeal like a robe.</VERS>\n\t\t\t<VERS vnumber=\"18\"> He repays them for what they have done, dispensing angry judgment to his adversaries and punishing his enemies. He repays the coastlands.</VERS>\n\t\t\t<VERS vnumber=\"19\"> In the west, people respect the LORD's reputation; in the east they recognize his splendor. For he comes like a rushing stream driven on by wind sent from the LORD.</VERS>\n\t\t\t<VERS vnumber=\"20\"> \"A protector comes to Zion, to those in Jacob who repent of their rebellious deeds,\" says the LORD.</VERS>\n\t\t\t<VERS vnumber=\"21\"> \"As for me, this is my promise to them,\" says the LORD. \"My spirit, who is upon you, and my words, which I have placed in your mouth, will not depart from your mouth or from the mouths of your children and descendants from this time forward,\" says the LORD.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"60\">\n\t\t\t<VERS vnumber=\"1\"> \"Arise! Shine! For your light arrives! The splendor of the LORD shines on you!</VERS>\n\t\t\t<VERS vnumber=\"2\"> For, look, darkness covers the earth and deep darkness covers the nations, but the LORD shines on you; his splendor appears over you.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Nations come to your light, kings to your bright light.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Look all around you! They all gather and come to you, your sons come from far away and your daughters are escorted by guardians.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Then you will look and smile, you will be excited and your heart will swell with pride. For the riches of distant lands will belong to you and the wealth of nations will come to you.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Camel caravans will cover your roads, young camels from Midian and Ephah. All the merchants of Sheba will come, bringing gold and incense and singing praises to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"7\"> All the sheep of Kedar will be gathered to you; the rams of Nebaioth will be available to you as sacrifices. They will go up on my altar acceptably, and I will bestow honor on my majestic temple.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Who are these who float along like a cloud, who fly like doves to their shelters?</VERS>\n\t\t\t<VERS vnumber=\"9\"> Indeed, the coastlands look eagerly for me, the large ships are in the lead, bringing your sons from far away, along with their silver and gold, to honor the LORD your God, the Holy One of Israel, for he has bestowed honor on you.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Foreigners will rebuild your walls; their kings will serve you. Even though I struck you down in my anger, I will restore my favor and have compassion on you.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Your gates will remain open at all times; they will not be shut during the day or at night, so that the wealth of nations may be delivered, with their kings leading the way.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Indeed, nations or kingdoms that do not serve you will perish; such nations will be totally destroyed.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The splendor of Lebanon will come to you, its evergreens, firs, and cypresses together, to beautify my palace; I will bestow honor on my throne room.</VERS>\n\t\t\t<VERS vnumber=\"14\"> The children of your oppressors will come bowing to you; all who treated you with disrespect will bow down at your feet. They will call you, 'The City of the LORD, Zion of the Holy One of Israel.'</VERS>\n\t\t\t<VERS vnumber=\"15\"> You were once abandoned and despised, with no one passing through, but I will make you a permanent source of pride and joy to coming generations.</VERS>\n\t\t\t<VERS vnumber=\"16\"> You will drink the milk of nations; you will nurse at the breasts of kings. Then you will recognize that I, the LORD, am your deliverer, your protector, the powerful ruler of Jacob.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Instead of bronze, I will bring you gold, instead of iron, I will bring you silver, instead of wood, I will bring you bronze, instead of stones, I will bring you iron. I will make prosperity your overseer, and vindication your sovereign ruler.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Sounds of violence will no longer be heard in your land, or the sounds of destruction and devastation within your borders. You will name your walls, 'Deliverance,' and your gates, 'Praise.'</VERS>\n\t\t\t<VERS vnumber=\"19\"> The sun will no longer supply light for you by day, nor will the moon's brightness shine on you; the LORD will be your permanent source of light, the splendor of your God will shine upon you.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Your sun will no longer set; your moon will not disappear; the LORD will be your permanent source of light; your time of sorrow will be over.</VERS>\n\t\t\t<VERS vnumber=\"21\"> All of your people will be godly; they will possess the land permanently. I will plant them like a shoot; they will be the product of my labor, through whom I reveal my splendor.</VERS>\n\t\t\t<VERS vnumber=\"22\"> The least of you will multiply into a thousand; the smallest of you will become a large nation. When the right time comes, I the LORD will quickly do this!\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"61\">\n\t\t\t<VERS vnumber=\"1\"> The spirit of the sovereign LORD is upon me, because the LORD has chosen me. He has commissioned me to encourage the poor, to help the brokenhearted, to decree the release of captives, and the freeing of prisoners,</VERS>\n\t\t\t<VERS vnumber=\"2\"> to announce the year when the LORD will show his favor, the day when our God will seek vengeance, to console all who mourn,</VERS>\n\t\t\t<VERS vnumber=\"3\"> to strengthen those who mourn in Zion, by giving them a turban, instead of ashes, oil symbolizing joy, instead of mourning, a garment symbolizing praise, instead of discouragement. They will be called oaks of righteousness, trees planted by the LORD to reveal his splendor.</VERS>\n\t\t\t<VERS vnumber=\"4\"> They will rebuild the perpetual ruins and restore the places that were desolate; they will reestablish the ruined cities, the places that have been desolate since ancient times.</VERS>\n\t\t\t<VERS vnumber=\"5\">  \"Foreigners will take care of your sheep; foreigners will work in your fields and vineyards.</VERS>\n\t\t\t<VERS vnumber=\"6\"> You will be called, 'the LORD's priests, servants of our God.' You will enjoy the wealth of nations and boast about the riches you receive from them.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Instead of shame, you will get a double portion; instead of humiliation, they will rejoice over the land they receive. Yes, they will possess a double portion in their land and experience lasting joy.</VERS>\n\t\t\t<VERS vnumber=\"8\"> For I, the LORD, love justice and hate robbery and sin. I will repay them because of my faithfulness; I will make a permanent covenant with them.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Their descendants will be known among the nations, their offspring among the peoples. All who see them will recognize that the LORD has blessed them.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> I will greatly rejoice in the LORD; I will be overjoyed because of my God. For he clothes me in garments of deliverance; he puts on me a robe symbolizing vindication. I look like a bridegroom when he wears a turban as a priest would; I look like a bride when she puts on her jewelry.</VERS>\n\t\t\t<VERS vnumber=\"11\"> For just as the ground produces its crops and a garden yields its produce, so the sovereign LORD will cause deliverance to grow, and give his people reason to praise him in the sight of all the nations.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"62\">\n\t\t\t<VERS vnumber=\"1\"> \"For the sake of Zion I will not be silent; for the sake of Jerusalem I will not be quiet, until her vindication shines brightly and her deliverance burns like a torch.\"</VERS>\n\t\t\t<VERS vnumber=\"2\"> Nations will see your vindication, and all kings your splendor. You will be called by a new name that the LORD himself will give you.</VERS>\n\t\t\t<VERS vnumber=\"3\"> You will be a majestic crown in the hand of the LORD, a royal turban in the hand of your God.</VERS>\n\t\t\t<VERS vnumber=\"4\"> You will no longer be called, \"Abandoned,\" and your land will no longer be called \"Desolate.\" Indeed, you will be called \"My Delight is in Her,\" and your land \"Married.\" For the LORD will take delight in you, and your land will be married to him.</VERS>\n\t\t\t<VERS vnumber=\"5\"> As a young man marries a young woman, so your sons will marry you. As a bridegroom rejoices over a bride, so your God will rejoice over you.</VERS>\n\t\t\t<VERS vnumber=\"6\"> I post watchmen on your walls, O Jerusalem; they should keep praying all day and all night. You who pray to the LORD, don't be silent!</VERS>\n\t\t\t<VERS vnumber=\"7\"> Don't allow him to rest until he reestablishes Jerusalem, until he makes Jerusalem the pride of the earth.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The LORD swears an oath by his right hand, by his strong arm: \"I will never again give your grain to your enemies as food, and foreigners will not drink your wine, which you worked hard to produce.</VERS>\n\t\t\t<VERS vnumber=\"9\"> But those who harvest the grain will eat it, and will praise the LORD. Those who pick the grapes will drink the wine in the courts of my holy sanctuary.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> Come through! Come through the gates! Prepare the way for the people! Build it! Build the roadway! Remove the stones! Lift a signal flag for the nations!</VERS>\n\t\t\t<VERS vnumber=\"11\"> Look, the LORD announces to the entire earth: \"Say to Daughter Zion, 'Look, your deliverer comes! Look, his reward is with him and his reward goes before him!'\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> They will be called, \"The Holy People, the Ones Protected by the LORD.\" You will be called, \"Sought After, City Not Abandoned.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"63\">\n\t\t\t<VERS vnumber=\"1\"> Who is this who comes from Edom, dressed in bright red, coming from Bozrah? Who is this one wearing royal attire, who marches confidently because of his great strength? \"It is I, the one who announces vindication, and who is able to deliver!\"</VERS>\n\t\t\t<VERS vnumber=\"2\"> Why are your clothes red? Why do you look like someone who has stomped on grapes in a vat?</VERS>\n\t\t\t<VERS vnumber=\"3\"> \"I have stomped grapes in the winepress all by myself; no one from the nations joined me. I stomped on them in my anger; I trampled them down in my rage. Their juice splashed on my garments, and stained all my clothes.</VERS>\n\t\t\t<VERS vnumber=\"4\"> For I looked forward to the day of vengeance, and then payback time arrived.</VERS>\n\t\t\t<VERS vnumber=\"5\"> I looked, but there was no one to help; I was shocked because there was no one offering support. So my right arm accomplished deliverance; my raging anger drove me on.</VERS>\n\t\t\t<VERS vnumber=\"6\"> I trampled nations in my anger, I made them drunk in my rage, I splashed their blood on the ground.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> I will tell of the faithful acts of the LORD, of the LORD's praiseworthy deeds. I will tell about all the LORD did for us, the many good things he did for the family of Israel, because of his compassion and great faithfulness.</VERS>\n\t\t\t<VERS vnumber=\"8\"> He said, \"Certainly they will be my people, children who are not disloyal.\" He became their deliverer.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Through all that they suffered, he suffered too. The messenger sent from his very presence delivered them. In his love and mercy he protected them; he lifted them up and carried them throughout ancient times.</VERS>\n\t\t\t<VERS vnumber=\"10\"> But they rebelled and offended his holy Spirit, so he turned into an enemy and fought against them.</VERS>\n\t\t\t<VERS vnumber=\"11\"> His people remembered the ancient times. Where is the one who brought them up out of the sea, along with the shepherd of his flock? Where is the one who placed his holy Spirit among them,</VERS>\n\t\t\t<VERS vnumber=\"12\"> the one who made his majestic power available to Moses, who divided the water before them, gaining for himself a lasting reputation,</VERS>\n\t\t\t<VERS vnumber=\"13\"> who led them through the deep water? Like a horse running on flat land they did not stumble.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Like an animal that goes down into a valley to graze, so the Spirit of the LORD granted them rest. In this way you guided your people, gaining for yourself an honored reputation.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Look down from heaven and take notice, from your holy, majestic palace! Where are your zeal and power? Do not hold back your tender compassion!</VERS>\n\t\t\t<VERS vnumber=\"16\"> For you are our father, though Abraham does not know us and Israel does not recognize us. You, LORD, are our father; you have been called our protector from ancient times.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Why, LORD, do you make us stray from your ways, and make our minds stubborn so that we do not obey you? Return for the sake of your servants, the tribes of your inheritance!</VERS>\n\t\t\t<VERS vnumber=\"18\"> For a short time your special nation possessed a land, but then our adversaries knocked down your holy sanctuary.</VERS>\n\t\t\t<VERS vnumber=\"19\"> We existed from ancient times, but you did not rule over them, they were not your subjects.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"64\">\n\t\t\t<VERS vnumber=\"1\">  If only you would tear apart the sky and come down! The mountains would tremble before you!</VERS>\n\t\t\t<VERS vnumber=\"2\">  As when fire ignites dry wood, or fire makes water boil, let your adversaries know who you are, and may the nations shake at your presence!</VERS>\n\t\t\t<VERS vnumber=\"3\"> When you performed awesome deeds that took us by surprise, you came down, and the mountains trembled before you.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Since ancient times no one has heard or perceived, no eye has seen any God besides you, who intervenes for those who wait for him.</VERS>\n\t\t\t<VERS vnumber=\"5\"> You assist those who delight in doing what is right, who observe your commandments. Look, you were angry because we violated them continually. How then can we be saved?</VERS>\n\t\t\t<VERS vnumber=\"6\"> We are all like one who is unclean, all our so-called righteous acts are like a menstrual rag in your sight. We all wither like a leaf; our sins carry us away like the wind.</VERS>\n\t\t\t<VERS vnumber=\"7\"> No one invokes your name, or makes an effort to take hold of you. For you have rejected us and handed us over to our own sins.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Yet, LORD, you are our father. We are the clay, and you are our potter; we are all the product of your labor.</VERS>\n\t\t\t<VERS vnumber=\"9\"> LORD, do not be too angry! Do not hold our sins against us continually! Take a good look at your people, at all of us!</VERS>\n\t\t\t<VERS vnumber=\"10\"> Your chosen cities have become a desert; Zion has become a desert, Jerusalem is a desolate ruin.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Our holy temple, our pride and joy, the place where our ancestors praised you, has been burned with fire; all our prized possessions have been destroyed.</VERS>\n\t\t\t<VERS vnumber=\"12\"> In light of all this, how can you still hold back, LORD? How can you be silent and continue to humiliate us?</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"65\">\n\t\t\t<VERS vnumber=\"1\"> \"I made myself available to those who did not ask for me; I appeared to those who did not look for me. I said, 'Here I am! Here I am!' to a nation that did not invoke my name.</VERS>\n\t\t\t<VERS vnumber=\"2\"> I spread out my hands all day long to my rebellious people, who lived in a way that is morally unacceptable, and who did what they desired.</VERS>\n\t\t\t<VERS vnumber=\"3\"> These people continually and blatantly offend me as they sacrifice in their sacred orchards and burn incense on brick altars.</VERS>\n\t\t\t<VERS vnumber=\"4\"> They sit among the tombs and keep watch all night long. They eat pork, and broth from unclean sacrificial meat is in their pans.</VERS>\n\t\t\t<VERS vnumber=\"5\"> They say, 'Keep to yourself! Don't get near me, for I am holier than you!' These people are like smoke in my nostrils, like a fire that keeps burning all day long.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Look, I have decreed: I will not keep silent, but will pay them back; I will pay them back exactly what they deserve,</VERS>\n\t\t\t<VERS vnumber=\"7\"> for your sins and your ancestors' sins,\" says the LORD. \"Because they burned incense on the mountains and offended me on the hills, I will punish them in full measure.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> This is what the LORD says: \"When juice is discovered in a cluster of grapes, someone says, 'Don't destroy it, for it contains juice.' So I will do for the sake of my servants, I will not destroy everyone.</VERS>\n\t\t\t<VERS vnumber=\"9\"> I will bring forth descendants from Jacob, and from Judah people to take possession of my mountains. My chosen ones will take possession of the land; my servants will live there.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Sharon will become a pasture for sheep, and the Valley of Achor a place where cattle graze; they will belong to my people, who seek me.</VERS>\n\t\t\t<VERS vnumber=\"11\"> But as for you who abandon the LORD and forget about worshiping at my holy mountain, who prepare a feast for the god called 'Fortune,' and fill up wine jugs for the god called 'Destiny',</VERS>\n\t\t\t<VERS vnumber=\"12\"> I predestine you to die by the sword, all of you will kneel down at the slaughtering block, because I called to you, and you did not respond, I spoke and you did not listen. You did evil before me; you chose to do what displeases me.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> So this is what the sovereign LORD says: \"Look, my servants will eat, but you will be hungry! Look, my servants will drink, but you will be thirsty! Look, my servants will rejoice, but you will be humiliated!</VERS>\n\t\t\t<VERS vnumber=\"14\"> Look, my servants will shout for joy as happiness fills their hearts! But you will cry out as sorrow fills your hearts; you will wail because your spirits will be crushed.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Your names will live on in the curse formulas of my chosen ones. The sovereign LORD will kill you, but he will give his servants another name.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Whoever pronounces a blessing in the earth will do so in the name of the faithful God; whoever makes an oath in the earth will do so in the name of the faithful God. For past problems will be forgotten; I will no longer think about them.</VERS>\n\t\t\t<VERS vnumber=\"17\"> For look, I am ready to create new heavens and a new earth! The former ones will not be remembered; no one will think about them anymore.</VERS>\n\t\t\t<VERS vnumber=\"18\"> But be happy and rejoice forevermore over what I am about to create! For look, I am ready to create Jerusalem to be a source of joy, and her people to be a source of happiness.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Jerusalem will bring me joy, and my people will bring me happiness. The sound of weeping or cries of sorrow will never be heard in her again.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Never again will one of her infants live just a few days or an old man die before his time. Indeed, no one will die before the age of a hundred, anyone who fails to reach the age of a hundred will be considered cursed.</VERS>\n\t\t\t<VERS vnumber=\"21\"> They will build houses and live in them; they will plant vineyards and eat their fruit.</VERS>\n\t\t\t<VERS vnumber=\"22\"> No longer will they build a house only to have another live in it, or plant a vineyard only to have another eat its fruit, for my people will live as long as trees, and my chosen ones will enjoy to the fullest what they have produced.</VERS>\n\t\t\t<VERS vnumber=\"23\"> They will not work in vain, or give birth to children that will experience disaster. For the LORD will bless their children and their descendants.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Before they even call out, I will respond; while they are still speaking, I will hear.</VERS>\n\t\t\t<VERS vnumber=\"25\"> A wolf and a lamb will graze together; a lion, like an ox, will eat straw, and a snake's food will be dirt. They will no longer injure or destroy on my entire royal mountain,\" says the LORD.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"66\">\n\t\t\t<VERS vnumber=\"1\"> This is what the LORD says: \"The heavens are my throne and the earth is my footstool. Where then is the house you will build for me? Where is the place where I will rest?</VERS>\n\t\t\t<VERS vnumber=\"2\"> My hand made them; that is how they came to be,\" says the LORD. I show special favor to the humble and contrite, who respect what I have to say.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The one who slaughters a bull also strikes down a man; the one who sacrifices a lamb also breaks a dog's neck; the one who presents an offering includes pig's blood with it; the one who offers incense also praises an idol. They have decided to behave this way; they enjoy these disgusting practices.</VERS>\n\t\t\t<VERS vnumber=\"4\"> So I will choose severe punishment for them; I will bring on them what they dread, because I called, and no one responded, I spoke and they did not listen. They did evil before me; they chose to do what displeases me.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> Hear the word of the LORD, you who respect what he has to say! Your countrymen, who hate you and exclude you, supposedly for the sake of my name, say, \"May the LORD be glorified, then we will witness your joy.\" But they will be put to shame.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The sound of battle comes from the city; the sound comes from the temple! It is the sound of the LORD paying back his enemies.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Before she goes into labor, she gives birth! Before her contractions begin, she delivers a boy!</VERS>\n\t\t\t<VERS vnumber=\"8\"> Who has ever heard of such a thing? Who has ever seen this? Can a country be brought forth in one day? Can a nation be born in a single moment? Yet as soon as Zion goes into labor she gives birth to sons!</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"Do I bring a baby to the birth opening and then not deliver it?\" asks the LORD. \"Or do I bring a baby to the point of delivery and then hold it back?\" asks your God.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Be happy for Jerusalem and rejoice with her, all you who love her! Share in her great joy, all you who have mourned over her!</VERS>\n\t\t\t<VERS vnumber=\"11\"> For you will nurse from her satisfying breasts and be nourished; you will feed with joy from her milk-filled breasts.</VERS>\n\t\t\t<VERS vnumber=\"12\"> For this is what the LORD says: \"Look, I am ready to extend to her prosperity that will flow like a river, the riches of nations will flow into her like a stream that floods its banks. You will nurse from her breast and be carried at her side; you will play on her knees.</VERS>\n\t\t\t<VERS vnumber=\"13\"> As a mother consoles a child, so I will console you, and you will be consoled over Jerusalem.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> When you see this, you will be happy, and you will be revived. The LORD will reveal his power to his servants and his anger to his enemies.</VERS>\n\t\t\t<VERS vnumber=\"15\"> For look, the LORD comes with fire, his chariots come like a windstorm, to reveal his raging anger, his battle cry, and his flaming arrows.</VERS>\n\t\t\t<VERS vnumber=\"16\"> For the LORD judges all humanity with fire and his sword; the LORD will kill many.</VERS>\n\t\t\t<VERS vnumber=\"17\"> \"As for those who consecrate and ritually purify themselves so they can follow their leader and worship in the sacred orchards, those who eat the flesh of pigs and other disgusting creatures, like mice, they will all be destroyed together,\" says the LORD.</VERS>\n\t\t\t<VERS vnumber=\"18\"> \"I hate their deeds and thoughts! So I am coming to gather all the nations and ethnic groups; they will come and witness my splendor. </VERS>\n\t\t\t<VERS vnumber=\"19\"> I will perform a mighty act among them and then send some of those who remain to the nations, to Tarshish, Pul, Lud (known for its archers), Tubal, Javan, and to the distant coastlands that have not heard about me or seen my splendor. They will tell the nations of my splendor.</VERS>\n\t\t\t<VERS vnumber=\"20\"> They will bring back all your countrymen from all the nations as an offering to the LORD. They will bring them on horses, in chariots, in wagons, on mules, and on camels to my holy hill Jerusalem,\" says the LORD, \"just as the Israelites bring offerings to the LORD's temple in ritually pure containers.</VERS>\n\t\t\t<VERS vnumber=\"21\"> And I will choose some of them as priests and Levites,\" says the LORD.</VERS>\n\t\t\t<VERS vnumber=\"22\"> \"For just as the new heavens and the new earth I am about to make will remain standing before me,\" says the LORD, \"so your descendants and your name will remain.</VERS>\n\t\t\t<VERS vnumber=\"23\"> From one month to the next and from one Sabbath to the next, all people will come to worship me,\" says the LORD. </VERS>\n\t\t\t<VERS vnumber=\"24\"> \"They will go out and observe the corpses of those who rebelled against me, for the maggots that eat them will not die, and the fire that consumes them will not die out. All people will find the sight abhorrent.\"</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"24\" bname=\"Jeremiah\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> The following is a record of what Jeremiah son of Hilkiah prophesied. He was one of the priests who lived at Anathoth in the territory of the tribe of Benjamin. </VERS>\n\t\t\t<VERS vnumber=\"2\"> The LORD began to speak to him in the thirteenth year that Josiah son of Amon ruled over Judah. </VERS>\n\t\t\t<VERS vnumber=\"3\"> The LORD also spoke to him when Jehoiakim son of Josiah ruled over Judah, and he continued to speak to him until the fifth month of the eleventh year that Zedekiah son of Josiah ruled over Judah. That was when the people of Jerusalem were taken into exile.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The LORD said to me,</VERS>\n\t\t\t<VERS vnumber=\"5\"> \"Before I formed you in your mother's womb I chose you. Before you were born I set you apart. I appointed you to be a prophet to the nations.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> I answered, \"Oh, Lord GOD, I really do not know how to speak well enough for that, for I am too young.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> The LORD said to me, \"Do not say, 'I am too young.' But go to whomever I send you and say whatever I tell you. </VERS>\n\t\t\t<VERS vnumber=\"8\"> Do not be afraid of those to whom I send you, for I will be with you to protect you,\" says the LORD. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Then the LORD reached out his hand and touched my mouth and said to me, \"I will most assuredly give you the words you are to speak for me.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Know for certain that I hereby give you the authority to announce to nations and kingdoms that they will be uprooted and torn down, destroyed and demolished, rebuilt and firmly planted.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> Later the LORD asked me, \"What do you see, Jeremiah?\" I answered, \"I see a branch of an almond tree.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> Then the LORD said, \"You have observed correctly. This means I am watching to make sure my threats are carried out.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> The LORD again asked me, \"What do you see?\" I answered, \"I see a pot of boiling water; it is tipped toward us from the north.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> Then the LORD said, \"This means destruction will break out from the north on all who live in the land. </VERS>\n\t\t\t<VERS vnumber=\"15\"> For I will soon summon all the peoples of the kingdoms of the north,\" says the LORD. \"They will come and their kings will set up their thrones near the entrances of the gates of Jerusalem. They will attack all the walls surrounding it, and all the towns in Judah.</VERS>\n\t\t\t<VERS vnumber=\"16\"> In this way I will pass sentence on the people of Jerusalem and Judah because of all their wickedness. For they rejected me and offered sacrifices to other gods, worshiping what they made with their own hands.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> \"But you, Jeremiah, get yourself ready! Go and tell these people everything I instruct you to say. Do not be terrified of them, or I will give you good reason to be terrified of them.</VERS>\n\t\t\t<VERS vnumber=\"18\"> I, the LORD, hereby promise to make you as strong as a fortified city, an iron pillar, and a bronze wall. You will be able to stand up against all who live in the land, including the kings of Judah, its officials, its priests and all the people of the land. </VERS>\n\t\t\t<VERS vnumber=\"19\"> They will attack you but they will not be able to overcome you, for I will be with you to rescue you,\" says the LORD.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to me. He said:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Go and declare in the hearing of the people of Jerusalem: 'This is what the LORD says: \"I have fond memories of you, how devoted you were to me in your early years. I remember how you loved me like a new bride; you followed me through the wilderness, through a land that had never been planted. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Israel was set apart to the LORD; they were like the first fruits of a harvest to him. All who tried to devour them were punished; disaster came upon them,\" says the LORD.'\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> Now listen to what the Lord has to say, you descendants of Jacob, all you family groups from the nation of Israel.</VERS>\n\t\t\t<VERS vnumber=\"5\"> This is what the Lord says: \"What fault could your ancestors have possibly found in me that they strayed so far from me? They paid allegiance to worthless idols, and so became worthless to me.</VERS>\n\t\t\t<VERS vnumber=\"6\"> They did not ask: 'Where is the LORD who delivered us out of Egypt, who brought us through the wilderness, through a land of desert sands and rift valleys, through a land of drought and deep darkness, through a land in which no one travels, and where no one lives?'</VERS>\n\t\t\t<VERS vnumber=\"7\"> I brought you into a fertile land so you could enjoy its fruits and its rich bounty. But when you entered my land, you defiled it; you made the land I call my own loathsome to me.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Your priests did not ask, 'Where is the LORD?' Those responsible for teaching my law did not really know me. Your rulers rebelled against me. Your prophets prophesied in the name of the god Baal. They all worshiped idols that could not help them.</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"So, once more I will state my case against you,\" says the LORD. \"I will also state it against your children and grandchildren.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Go west across the sea to the coasts of Cyprus and see. Send someone east to Kedar and have them look carefully. See if such a thing as this has ever happened:</VERS>\n\t\t\t<VERS vnumber=\"11\"> Has a nation ever changed its gods (even though they are not really gods at all)? But my people have exchanged me, their glorious God, for a god that cannot help them at all!</VERS>\n\t\t\t<VERS vnumber=\"12\"> Be amazed at this, O heavens! Be shocked and utterly dumbfounded,\" says the LORD.</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"Do so because my people have committed a double wrong: they have rejected me, the fountain of life-giving water, and they have dug cisterns for themselves, cracked cisterns which cannot even hold water.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> \"Israel is not a slave, is he? He was not born into slavery, was he? If not, why then is he being carried off?</VERS>\n\t\t\t<VERS vnumber=\"15\"> Like lions his enemies roar victoriously over him; they raise their voices in triumph. They have laid his land waste; his cities have been burned down and deserted.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Even the soldiers from Memphis and Tahpanhes have cracked your skulls, people of Israel.</VERS>\n\t\t\t<VERS vnumber=\"17\"> You have brought all this on yourself, Israel, by deserting the LORD your God when he was leading you along the right path.</VERS>\n\t\t\t<VERS vnumber=\"18\"> What good will it do you then to go down to Egypt to seek help from the Egyptians? What good will it do you to go over to Assyria to seek help from the Assyrians?</VERS>\n\t\t\t<VERS vnumber=\"19\"> Your own wickedness will bring about your punishment. Your unfaithful acts will bring down discipline on you. Know, then, and realize how utterly harmful it was for you to reject me, the LORD your God, to show no respect for me,\" says the Lord GOD who rules over all.</VERS>\n\t\t\t<VERS vnumber=\"20\"> \"Indeed, long ago you threw off my authority and refused to be subject to me. You said, 'I will not serve you.' Instead, you gave yourself to other gods on every high hill and under every green tree, like a prostitute sprawls out before her lovers.</VERS>\n\t\t\t<VERS vnumber=\"21\"> I planted you in the land like a special vine of the very best stock. Why in the world have you turned into something like a wild vine that produces rotten, foul-smelling grapes?</VERS>\n\t\t\t<VERS vnumber=\"22\"> You can try to wash away your guilt with a strong detergent. You can use as much soap as you want. But the stain of your guilt is still there for me to see,\" says the Lord GOD.</VERS>\n\t\t\t<VERS vnumber=\"23\"> \"How can you say, 'I have not made myself unclean. I have not paid allegiance to the gods called Baal.' Just look at the way you have behaved in the Valley of Hinnom! Think about the things you have done there! You are like a flighty, young female camel that rushes here and there, crisscrossing its path.</VERS>\n\t\t\t<VERS vnumber=\"24\"> You are like a wild female donkey brought up in the wilderness. In her lust she sniffs the wind to get the scent of a male. No one can hold her back when she is in heat. None of the males need wear themselves out chasing after her. At mating time she is easy to find.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Do not chase after other gods until your shoes wear out and your throats become dry. But you say, 'It is useless for you to try and stop me because I love those foreign gods and want to pursue them!'</VERS>\n\t\t\t<VERS vnumber=\"26\"> Just as a thief has to suffer dishonor when he is caught, so the people of Israel will suffer dishonor for what they have done. So will their kings and officials, their priests and their prophets.</VERS>\n\t\t\t<VERS vnumber=\"27\"> They say to a wooden idol, 'You are my father.' They say to a stone image, 'You gave birth to me.' Yes, they have turned away from me instead of turning to me. Yet when they are in trouble, they say, 'Come and save us!'</VERS>\n\t\t\t<VERS vnumber=\"28\"> But where are the gods you made for yourselves? Let them save you when you are in trouble. The sad fact is that you have as many gods as you have towns, Judah.</VERS>\n\t\t\t<VERS vnumber=\"29\"> \"Why do you try to refute me? All of you have rebelled against me,\" says the LORD.</VERS>\n\t\t\t<VERS vnumber=\"30\"> \"It did no good for me to punish your people. They did not respond to such correction. You slaughtered your prophets like a voracious lion.\"</VERS>\n\t\t\t<VERS vnumber=\"31\"> You people of this generation, listen to what the LORD says. \"Have I been like a wilderness to you, Israel? Have I been like a dark and dangerous land to you? Why then do you say, 'We are free to wander. We will not come to you any more?'</VERS>\n\t\t\t<VERS vnumber=\"32\"> Does a young woman forget to put on her jewels? Does a bride forget to put on her bridal attire? But my people have forgotten me for more days than can even be counted.</VERS>\n\t\t\t<VERS vnumber=\"33\"> \"My, how good you have become at chasing after your lovers! Why, you could even teach prostitutes a thing or two!</VERS>\n\t\t\t<VERS vnumber=\"34\"> Even your clothes are stained with the lifeblood of the poor who had not done anything wrong; you did not catch them breaking into your homes. Yet, in spite of all these things you have done,</VERS>\n\t\t\t<VERS vnumber=\"35\"> you say, 'I have not done anything wrong, so the LORD cannot really be angry with me any more.' But, watch out! I will bring down judgment on you because you say, 'I have not committed any sin.'</VERS>\n\t\t\t<VERS vnumber=\"36\"> Why do you constantly go about changing your political allegiances? You will get no help from Egypt just as you got no help from Assyria.</VERS>\n\t\t\t<VERS vnumber=\"37\"> Moreover, you will come away from Egypt with your hands covering your faces in sorrow and shame because the LORD will not allow your reliance on them to be successful and you will not gain any help from them.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> \"If a man divorces his wife and she leaves him and becomes another man's wife, he may not take her back again. Doing that would utterly defile the land. But you, Israel, have given yourself as a prostitute to many gods. So what makes you think you can return to me?\" says the LORD.</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Look up at the hilltops and consider this. You have had sex with other gods on every one of them. You waited for those gods like a thief lying in wait in the desert. You defiled the land by your wicked prostitution to other gods.</VERS>\n\t\t\t<VERS vnumber=\"3\"> That is why the rains have been withheld, and the spring rains have not come. Yet in spite of this you are obstinate as a prostitute. You refuse to be ashamed of what you have done.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Even now you say to me, 'You are my father! You have been my faithful companion ever since I was young.</VERS>\n\t\t\t<VERS vnumber=\"5\"> You will not always be angry with me, will you? You will not be mad at me forever, will you?' That is what you say, but you continually do all the evil that you can.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> When Josiah was king of Judah, the LORD said to me, \"Jeremiah, you have no doubt seen what wayward Israel has done. You have seen how she went up to every high hill and under every green tree to give herself like a prostitute to other gods.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Yet even after she had done all that, I thought that she might come back to me. But she did not. Her sister, unfaithful Judah, saw what she did.</VERS>\n\t\t\t<VERS vnumber=\"8\"> She also saw that I gave wayward Israel her divorce papers and sent her away because of her adulterous worship of other gods. Even after her unfaithful sister Judah had seen this, she still was not afraid, and she too went and gave herself like a prostitute to other gods.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Because she took her prostitution so lightly, she defiled the land through her adulterous worship of gods made of wood and stone.</VERS>\n\t\t\t<VERS vnumber=\"10\"> In spite of all this, Israel's sister, unfaithful Judah, has not turned back to me with any sincerity; she has only pretended to do so,\" says the LORD. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Then the LORD said to me, \"Under the circumstances, wayward Israel could even be considered less guilty than unfaithful Judah.</VERS>\n\t\t\t<VERS vnumber=\"12\"> \"Go and shout this message to my people in the countries in the north. Tell them, 'Come back to me, wayward Israel,' says the LORD. 'I will not continue to look on you with displeasure. For I am merciful,' says the LORD. 'I will not be angry with you forever.</VERS>\n\t\t\t<VERS vnumber=\"13\"> However, you must confess that you have done wrong, and that you have rebelled against the LORD your God. You must confess that you have given yourself to foreign gods under every green tree, and have not obeyed my commands,' says the LORD.</VERS>\n\t\t\t<VERS vnumber=\"14\"> \"Come back to me, my wayward sons,\" says the LORD, \"for I am your true master. If you do, I will take one of you from each town and two of you from each family group, and I will bring you back to Zion. </VERS>\n\t\t\t<VERS vnumber=\"15\"> I will give you leaders who will be faithful to me. They will lead you with knowledge and insight. </VERS>\n\t\t\t<VERS vnumber=\"16\"> In those days, your population will greatly increase in the land. At that time,\" says the LORD, \"people will no longer talk about having the ark that contains the LORD's covenant with us. They will not call it to mind, remember it, or miss it. No, that will not be done any more!</VERS>\n\t\t\t<VERS vnumber=\"17\"> At that time the city of Jerusalem will be called the LORD's throne. All nations will gather there in Jerusalem to honor the LORD's name. They will no longer follow the stubborn inclinations of their own evil hearts.</VERS>\n\t\t\t<VERS vnumber=\"18\"> At that time the nation of Judah and the nation of Israel will be reunited. Together they will come back from a land in the north to the land that I gave to your ancestors as a permanent possession. \"</VERS>\n\t\t\t<VERS vnumber=\"19\"> \"I thought to myself, 'Oh what a joy it would be for me to treat you like a son! What a joy it would be for me to give you a pleasant land, the most beautiful piece of property there is in all the world!' I thought you would call me, 'Father' and would never cease being loyal to me.</VERS>\n\t\t\t<VERS vnumber=\"20\"> But, you have been unfaithful to me, nation of Israel, like an unfaithful wife who has left her husband,\" says the LORD.</VERS>\n\t\t\t<VERS vnumber=\"21\"> \"A noise is heard on the hilltops. It is the sound of the people of Israel crying and pleading to their gods. Indeed they have followed sinful ways; they have forgotten to be true to the LORD their God.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Come back to me, you wayward people. I want to cure your waywardness. Say, 'Here we are. We come to you because you are the LORD our God.</VERS>\n\t\t\t<VERS vnumber=\"23\"> We know our noisy worship of false gods on the hills and mountains did not help us. We know that the LORD our God is the only one who can deliver Israel.</VERS>\n\t\t\t<VERS vnumber=\"24\"> From earliest times our worship of that shameful god, Baal, has taken away all that our ancestors worked for. It has taken away our flocks and our herds, and even our sons and daughters.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Let us acknowledge our shame. Let us bear the disgrace that we deserve. For we have sinned against the LORD our God, both we and our ancestors. From earliest times to this very day we have not obeyed the LORD our God.'</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\"> \"If you, Israel, want to come back,\" says the LORD, \"if you want to come back to me you must get those disgusting idols out of my sight and must no longer go astray.</VERS>\n\t\t\t<VERS vnumber=\"2\"> You must be truthful, honest and upright when you take an oath saying, 'As surely as the LORD lives!' If you do, the nations will pray to be as blessed by him as you are and will make him the object of their boasting.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> Yes, the LORD has this to say to the people of Judah and Jerusalem: \"Like a farmer breaking up hard unplowed ground, you must break your rebellious will and make a new beginning; just as a farmer must clear away thorns lest the seed is wasted, you must get rid of the sin that is ruining your lives.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Just as ritual circumcision cuts away the foreskin as an external symbol of dedicated covenant commitment, you must genuinely dedicate yourselves to the LORD and get rid of everything that hinders your commitment to me, people of Judah and inhabitants of Jerusalem. If you do not, my anger will blaze up like a flaming fire against you that no one will be able to extinguish. That will happen because of the evil you have done.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> The LORD said, \"Announce this in Judah and proclaim it in Jerusalem: 'Sound the trumpet throughout the land!' Shout out loudly, 'Gather together! Let us flee into the fortified cities!'</VERS>\n\t\t\t<VERS vnumber=\"6\"> Raise a signal flag that tells people to go to Zion. Run for safety! Do not delay! For I am about to bring disaster out of the north. It will bring great destruction.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Like a lion that has come up from its lair the one who destroys nations has set out from his home base. He is coming out to lay your land waste. Your cities will become ruins and lie uninhabited.</VERS>\n\t\t\t<VERS vnumber=\"8\"> So put on sackcloth! Mourn and wail, saying, 'The fierce anger of the LORD has not turned away from us!'\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"When this happens,\" says the LORD, \"the king and his officials will lose their courage. The priests will be struck with horror, and the prophets will be speechless in astonishment.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> In response to all this I said, \"Ah, Lord GOD, you have surely allowed the people of Judah and Jerusalem to be deceived by those who say, 'You will be safe!' But in fact a sword is already at our throats.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"At that time the people of Judah and Jerusalem will be told, 'A scorching wind will sweep down from the hilltops in the desert on my dear people. It will not be a gentle breeze for winnowing the grain and blowing away the chaff.</VERS>\n\t\t\t<VERS vnumber=\"12\"> No, a wind too strong for that will come at my bidding. Yes, even now I, myself, am calling down judgment on them.'</VERS>\n\t\t\t<VERS vnumber=\"13\"> Look! The enemy is approaching like gathering clouds. The roar of his chariots is like that of a whirlwind. His horses move more swiftly than eagles.\" I cry out, \"We are doomed, for we will be destroyed!\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> \"Oh people of Jerusalem, purify your hearts from evil so that you may yet be delivered. How long will you continue to harbor up wicked schemes within you?</VERS>\n\t\t\t<VERS vnumber=\"15\"> For messengers are coming, heralding disaster, from the city of Dan and from the hills of Ephraim.</VERS>\n\t\t\t<VERS vnumber=\"16\"> They are saying, 'Announce to the surrounding nations, \"The enemy is coming!\" Proclaim this message to Jerusalem: \"Those who besiege cities are coming from a distant land. They are ready to raise the battle cry against the towns in Judah.\"'</VERS>\n\t\t\t<VERS vnumber=\"17\"> They will surround Jerusalem like men guarding a field because they have rebelled against me,\" says the LORD.</VERS>\n\t\t\t<VERS vnumber=\"18\"> \"The way you have lived and the things you have done will bring this on you. This is the punishment you deserve, and it will be painful indeed. The pain will be so bad it will pierce your heart.\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> I said, \"Oh, the feeling in the pit of my stomach! I writhe in anguish. Oh, the pain in my heart! My heart pounds within me. I cannot keep silent. For I hear the sound of the trumpet; the sound of the battle cry pierces my soul!</VERS>\n\t\t\t<VERS vnumber=\"20\"> I see one destruction after another taking place, so that the whole land lies in ruins. I see our tents suddenly destroyed, their curtains torn down in a mere instant.</VERS>\n\t\t\t<VERS vnumber=\"21\"> \"How long must I see the enemy's battle flags and hear the military signals of their bugles?\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> The LORD answered, \"This will happen because my people are foolish. They do not know me. They are like children who have no sense. They have no understanding. They are skilled at doing evil. They do not know how to do good.\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> \"I looked at the land and saw that it was an empty wasteland. I looked up at the sky, and its light had vanished.</VERS>\n\t\t\t<VERS vnumber=\"24\"> I looked at the mountains and saw that they were shaking. All the hills were swaying back and forth!</VERS>\n\t\t\t<VERS vnumber=\"25\"> I looked and saw that there were no more people, and that all the birds in the sky had flown away.</VERS>\n\t\t\t<VERS vnumber=\"26\"> I looked and saw that the fruitful land had become a desert and that all of the cities had been laid in ruins. The LORD had brought this all about because of his blazing anger.</VERS>\n\t\t\t<VERS vnumber=\"27\"> All this will happen because the LORD said, \"The whole land will be desolate; however, I will not completely destroy it.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Because of this the land will mourn and the sky above will grow black. For I have made my purpose known and I will not relent or turn back from carrying it out.\"</VERS>\n\t\t\t<VERS vnumber=\"29\"> At the sound of the approaching horsemen and archers the people of every town will flee. Some of them will hide in the thickets. Others will climb up among the rocks. All the cities will be deserted. No one will remain in them.</VERS>\n\t\t\t<VERS vnumber=\"30\"> And you, Zion, city doomed to destruction, you accomplish nothing by wearing a beautiful dress, decking yourself out in jewels of gold, and putting on eye shadow! You are making yourself beautiful for nothing. Your lovers spurn you. They want to kill you.</VERS>\n\t\t\t<VERS vnumber=\"31\"> In fact, I hear a cry like that of a woman in labor, a cry of anguish like that of a woman giving birth to her first baby. It is the cry of Daughter Zion gasping for breath, reaching out for help, saying, \"I am done in! My life is ebbing away before these murderers!\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"5\">\n\t\t\t<VERS vnumber=\"1\"> The LORD said, \"Go up and down through the streets of Jerusalem. Look around and see for yourselves. Search through its public squares. See if any of you can find a single person who deals honestly and tries to be truthful. If you can, then I will not punish this city.</VERS>\n\t\t\t<VERS vnumber=\"2\"> These people make promises in the name of the LORD. But the fact is, what they swear to is really a lie.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> LORD, I know you look for faithfulness. But even when you punish these people, they feel no remorse. Even when you nearly destroy them, they refuse to be corrected. They have become as hardheaded as a rock. They refuse to change their ways.</VERS>\n\t\t\t<VERS vnumber=\"4\"> I thought, \"Surely it is only the ignorant poor who act this way. They act like fools because they do not know what the LORD demands. They do not know what their God requires of them.</VERS>\n\t\t\t<VERS vnumber=\"5\"> I will go to the leaders and speak with them. Surely they know what the LORD demands. Surely they know what their God requires of them.\" Yet all of them, too, have rejected his authority and refuse to submit to him.</VERS>\n\t\t\t<VERS vnumber=\"6\"> So like a lion from the thicket their enemies will kill them. Like a wolf from the desert they will destroy them. Like a leopard they will lie in wait outside their cities and totally destroy anyone who ventures out. For they have rebelled so much and done so many unfaithful things.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The LORD asked, \"How can I leave you unpunished, Jerusalem? Your people have rejected me and have worshiped gods that are not gods at all. Even though I supplied all their needs, they were like an unfaithful wife to me. They went flocking to the houses of prostitutes.</VERS>\n\t\t\t<VERS vnumber=\"8\"> They are like lusty, well-fed stallions. Each of them lusts after his neighbor's wife.</VERS>\n\t\t\t<VERS vnumber=\"9\"> I will surely punish them for doing such things!\" says the LORD. \"I will surely bring retribution on such a nation as this!\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> The LORD commanded the enemy, \"March through the vineyards of Israel and Judah and ruin them. But do not destroy them completely. Strip off their branches for these people do not belong to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"11\"> For the nations of Israel and Judah have been very unfaithful to me,\" says the LORD.</VERS>\n\t\t\t<VERS vnumber=\"12\"> \"These people have denied what the LORD says. They have said, 'That is not so! No harm will come to us. We will not experience war and famine.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The prophets will prove to be full of wind. The LORD has not spoken through them. So, let what they say happen to them.'\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> Because of that, the LORD, the God who rules over all, said to me, \"Because these people have spoken like this, I will make the words that I put in your mouth like fire. And I will make this people like wood which the fiery judgments you speak will burn up.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> The LORD says, \"Listen, nation of Israel! I am about to bring a nation from far away to attack you. It will be a nation that was founded long ago and has lasted for a long time. It will be a nation whose language you will not know. Its people will speak words that you will not be able to understand.</VERS>\n\t\t\t<VERS vnumber=\"16\"> All of its soldiers are strong and mighty. Their arrows will send you to your grave.</VERS>\n\t\t\t<VERS vnumber=\"17\"> They will eat up your crops and your food. They will kill off your sons and your daughters. They will eat up your sheep and your cattle. They will destroy your vines and your fig trees. Their weapons will batter down the fortified cities you trust in.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Yet even then I will not completely destroy you,\" says the LORD. </VERS>\n\t\t\t<VERS vnumber=\"19\"> \"So then, Jeremiah, when your people ask, 'Why has the LORD our God done all this to us?' tell them, 'It is because you rejected me and served foreign gods in your own land. So you must serve foreigners in a land that does not belong to you.'</VERS>\n\t\t\t<VERS vnumber=\"20\"> \"Proclaim this message among the descendants of Jacob. Make it known throughout Judah.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Tell them: 'Hear this, you foolish people who have no understanding, who have eyes but do not discern, who have ears but do not perceive:</VERS>\n\t\t\t<VERS vnumber=\"22\"> \"You should fear me!\" says the LORD. \"You should tremble in awe before me! I made the sand to be a boundary for the sea, a permanent barrier that it can never cross. Its waves may roll, but they can never prevail. They may roar, but they can never cross beyond that boundary.\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> But these people have stubborn and rebellious hearts. They have turned aside and gone their own way.</VERS>\n\t\t\t<VERS vnumber=\"24\"> They do not say to themselves, \"Let us revere the LORD our God. It is he who gives us the autumn rains and the spring rains at the proper time. It is he who assures us of the regular weeks of harvest.\"</VERS>\n\t\t\t<VERS vnumber=\"25\"> Your misdeeds have stopped these things from coming. Your sins have deprived you of my bounty.'</VERS>\n\t\t\t<VERS vnumber=\"26\"> \"Indeed, there are wicked scoundrels among my people. They lie in wait like bird catchers hiding in ambush. They set deadly traps to catch people.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Like a cage filled with the birds that have been caught, their houses are filled with the gains of their fraud and deceit. That is how they have gotten so rich and powerful.</VERS>\n\t\t\t<VERS vnumber=\"28\"> That is how they have grown fat and sleek. There is no limit to the evil things they do. They do not plead the cause of the fatherless in such a way as to win it. They do not defend the rights of the poor.</VERS>\n\t\t\t<VERS vnumber=\"29\"> I will certainly punish them for doing such things!\" says the LORD. \"I will certainly bring retribution on such a nation as this!</VERS>\n\t\t\t<VERS vnumber=\"30\"> \"Something horrible and shocking is going on in the land of Judah:</VERS>\n\t\t\t<VERS vnumber=\"31\"> The prophets prophesy lies. The priests exercise power by their own authority. And my people love to have it this way. But they will not be able to help you when the time of judgment comes!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"6\">\n\t\t\t<VERS vnumber=\"1\"> \"Run for safety, people of Benjamin! Get out of Jerusalem! Sound the trumpet in Tekoa! Light the signal fires at Beth Hakkerem! For disaster lurks out of the north; it will bring great destruction.</VERS>\n\t\t\t<VERS vnumber=\"2\"> I will destroy Daughter Zion, who is as delicate and defenseless as a young maiden.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Kings will come against it with their armies. They will encamp in siege all around it. Each of them will devastate the portion assigned to him.</VERS>\n\t\t\t<VERS vnumber=\"4\"> They will say, 'Prepare to do battle against it! Come on! Let's attack it at noon!' But later they will say, 'Oh, oh! Too bad! The day is almost over and the shadows of evening are getting long.</VERS>\n\t\t\t<VERS vnumber=\"5\"> So come on, let's go ahead and attack it by night and destroy all its fortified buildings.'</VERS>\n\t\t\t<VERS vnumber=\"6\"> All of this is because the LORD who rules over all has said: 'Cut down the trees around Jerusalem and build up a siege ramp against its walls. This is the city which is to be punished. Nothing but oppression happens in it.</VERS>\n\t\t\t<VERS vnumber=\"7\"> As a well continually pours out fresh water so it continually pours out wicked deeds. Sounds of violence and destruction echo throughout it. All I see are sick and wounded people.'</VERS>\n\t\t\t<VERS vnumber=\"8\"> So take warning, Jerusalem, or I will abandon you in disgust and make you desolate, a place where no one can live.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> This is what the LORD who rules over all said to me: \"Those who remain in Israel will be like the grapes thoroughly gleaned from a vine. So go over them again, as though you were a grape harvester passing your hand over the branches one last time.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> I answered, \"Who would listen if I spoke to them and warned them? Their ears are so closed that they cannot hear! Indeed, what the LORD says is offensive to them. They do not like it at all.</VERS>\n\t\t\t<VERS vnumber=\"11\"> I am as full of anger as you are, LORD, I am tired of trying to hold it in.\" The LORD answered, \"Vent it, then, on the children who play in the street and on the young men who are gathered together. Husbands and wives are to be included, as well as the old and those who are advanced in years.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Their houses will be turned over to others as will their fields and their wives. For I will unleash my power against those who live in this land,\" says the LORD.</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"That is because, from the least important to the most important of them, all of them are greedy for dishonest gain. Prophets and priests alike, all of them practice deceit.</VERS>\n\t\t\t<VERS vnumber=\"14\"> They offer only superficial help for the harm my people have suffered. They say, 'Everything will be all right!' But everything is not all right!</VERS>\n\t\t\t<VERS vnumber=\"15\"> Are they ashamed because they have done such shameful things? No, they are not at all ashamed. They do not even know how to blush! So they will die, just like others have died. They will be brought to ruin when I punish them,\" says the LORD.</VERS>\n\t\t\t<VERS vnumber=\"16\"> The LORD said to his people: \"You are standing at the crossroads. So consider your path. Ask where the old, reliable paths are. Ask where the path is that leads to blessing and follow it. If you do, you will find rest for your souls.\" But they said, \"We will not follow it!\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> The LORD said, \"I appointed prophets as watchmen to warn you, saying: 'Pay attention to the warning sound of the trumpet!'\" But they said, \"We will not pay attention!\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> So the LORD said, \"Hear, you nations! Be witnesses and take note of what will happen to these people.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Hear this, you peoples of the earth: 'Take note! I am about to bring disaster on these people. It will come as punishment for their scheming. For they have paid no attention to what I have said, and they have rejected my law.</VERS>\n\t\t\t<VERS vnumber=\"20\"> I take no delight when they offer up to me frankincense that comes from Sheba or sweet-smelling cane imported from a faraway land. I cannot accept the burnt offerings they bring me. I get no pleasure from the sacrifices they offer to me.'</VERS>\n\t\t\t<VERS vnumber=\"21\"> So, this is what the LORD says: 'I will assuredly make these people stumble to their doom. Parents and children will stumble and fall to their destruction. Friends and neighbors will die.'</VERS>\n\t\t\t<VERS vnumber=\"22\"> \"This is what the LORD says: 'Beware! An army is coming from a land in the north. A mighty nation is stirring into action in faraway parts of the earth.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Its soldiers are armed with bows and spears. They are cruel and show no mercy. They sound like the roaring sea as they ride forth on their horses. Lined up in formation like men going into battle to attack you, Daughter Zion.'\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> The people cry out, \"We have heard reports about them! We have become helpless with fear! Anguish grips us, agony like that of a woman giving birth to a baby!</VERS>\n\t\t\t<VERS vnumber=\"25\"> Do not go out into the countryside. Do not travel on the roads. For the enemy is there with sword in hand. They are spreading terror everywhere.\"</VERS>\n\t\t\t<VERS vnumber=\"26\"> So I said, \"Oh, my dear people, put on sackcloth and roll in ashes. Mourn with painful sobs as though you had lost your only child. For any moment now that destructive army will come against us.\"</VERS>\n\t\t\t<VERS vnumber=\"27\"> The LORD said to me, \"I have made you like a metal assayer to test my people like ore. You are to observe them and evaluate how they behave.\"</VERS>\n\t\t\t<VERS vnumber=\"28\"> I reported, \"All of them are the most stubborn of rebels! They are as hard as bronze or iron. They go about telling lies. They all deal corruptly.</VERS>\n\t\t\t<VERS vnumber=\"29\"> The fiery bellows of judgment burn fiercely. But there is too much dross to be removed. The process of refining them has proved useless. The wicked have not been purged.</VERS>\n\t\t\t<VERS vnumber=\"30\"> They are regarded as 'rejected silver' because the LORD rejects them.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"7\">\n\t\t\t<VERS vnumber=\"1\"> The LORD said to Jeremiah:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Stand in the gate of the LORD's temple and proclaim this message: 'Listen, all you people of Judah who have passed through these gates to worship the LORD. Hear what the LORD has to say. </VERS>\n\t\t\t<VERS vnumber=\"3\"> The LORD God of Israel who rules over all says: Change the way you have been living and do what is right. If you do, I will allow you to continue to live in this land.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Stop putting your confidence in the false belief that says, \"We are safe! The temple of the LORD is here! The temple of the LORD is here! The temple of the LORD is here!\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> You must change the way you have been living and do what is right. You must treat one another fairly.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Stop oppressing foreigners who live in your land, children who have lost their fathers, and women who have lost their husbands. Stop killing innocent people in this land. Stop paying allegiance to other gods. That will only bring about your ruin.</VERS>\n\t\t\t<VERS vnumber=\"7\"> If you stop doing these things, I will allow you to continue to live in this land which I gave to your ancestors as a lasting possession.</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"'But just look at you! You are putting your confidence in a false belief that will not deliver you.</VERS>\n\t\t\t<VERS vnumber=\"9\"> You steal. You murder. You commit adultery. You lie when you swear on oath. You sacrifice to the god Baal. You pay allegiance to other gods whom you have not previously known. </VERS>\n\t\t\t<VERS vnumber=\"10\"> Then you come and stand in my presence in this temple I have claimed as my own and say, \"We are safe!\" You think you are so safe that you go on doing all those hateful sins!</VERS>\n\t\t\t<VERS vnumber=\"11\"> Do you think this temple I have claimed as my own is to be a hideout for robbers? You had better take note! I have seen for myself what you have done! says the LORD. </VERS>\n\t\t\t<VERS vnumber=\"12\"> So, go to the place in Shiloh where I allowed myself to be worshiped in the early days. See what I did to it because of the wicked things my people Israel did. </VERS>\n\t\t\t<VERS vnumber=\"13\"> You also have done all these things, says the LORD, and I have spoken to you over and over again. But you have not listened! You have refused to respond when I called you to repent!</VERS>\n\t\t\t<VERS vnumber=\"14\"> So I will destroy this temple which I have claimed as my own, this temple that you are trusting to protect you. I will destroy this place that I gave to you and your ancestors, just like I destroyed Shiloh.</VERS>\n\t\t\t<VERS vnumber=\"15\"> And I will drive you out of my sight just like I drove out your relatives, the people of Israel.'\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> Then the LORD said, \"As for you, Jeremiah, do not pray for these people! Do not cry out to me or petition me on their behalf! Do not plead with me to save them, because I will not listen to you. </VERS>\n\t\t\t<VERS vnumber=\"17\"> Do you see what they are doing in the towns of Judah and in the streets of Jerusalem?</VERS>\n\t\t\t<VERS vnumber=\"18\"> Children are gathering firewood, fathers are building fires with it, and women are mixing dough to bake cakes to offer to the goddess they call the Queen of Heaven. They are also pouring out drink offerings to other gods. They seem to do all this just to trouble me. </VERS>\n\t\t\t<VERS vnumber=\"19\"> But I am not really the one being troubled!\" says the LORD. \"Rather they are bringing trouble on themselves to their own shame!</VERS>\n\t\t\t<VERS vnumber=\"20\"> So,\" the Lord GOD says, \"my raging fury will be poured out on this land. It will be poured out on human beings and animals, on trees and crops. And it will burn like a fire which cannot be extinguished.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> The LORD said to the people of Judah, \"The LORD God of Israel who rules over all says: 'You might as well go ahead and add the meat of your burnt offerings to that of the other sacrifices and eat it, too!</VERS>\n\t\t\t<VERS vnumber=\"22\"> Consider this: When I spoke to your ancestors after I brought them out of Egypt, I did not merely give them commands about burnt offerings and sacrifices. </VERS>\n\t\t\t<VERS vnumber=\"23\"> I also explicitly commanded them: \"Obey me. If you do, I will be your God and you will be my people. Live exactly the way I tell you and things will go well with you.\" </VERS>\n\t\t\t<VERS vnumber=\"24\"> But they did not listen to me or pay any attention to me. They followed the stubborn inclinations of their own wicked hearts. They acted worse and worse instead of better.</VERS>\n\t\t\t<VERS vnumber=\"25\"> From the time your ancestors departed the land of Egypt until now, I sent my servants the prophets to you again and again, day after day.</VERS>\n\t\t\t<VERS vnumber=\"26\"> But your ancestors did not listen to me nor pay attention to me. They became obstinate and were more wicked than even their own forefathers.'\"</VERS>\n\t\t\t<VERS vnumber=\"27\"> Then the LORD said to me, \"When you tell them all this, they will not listen to you. When you call out to them, they will not respond to you.</VERS>\n\t\t\t<VERS vnumber=\"28\"> So tell them: 'This is a nation that has not obeyed the LORD their God and has not accepted correction. Faithfulness is nowhere to be found in it. These people do not even profess it anymore.</VERS>\n\t\t\t<VERS vnumber=\"29\"> So, mourn, you people of this nation. Cut off your hair and throw it away. Sing a song of mourning on the hilltops. For the LORD has decided to reject and forsake this generation that has provoked his wrath!'\"</VERS>\n\t\t\t<VERS vnumber=\"30\"> The LORD says, \"I have rejected them because the people of Judah have done what I consider evil. They have set up their disgusting idols in the temple which I have claimed for my own and have defiled it. </VERS>\n\t\t\t<VERS vnumber=\"31\"> They have also built places of worship in a place called Topheth in the Valley of Ben Hinnom so that they can sacrifice their sons and daughters by fire. That is something I never commanded them to do! Indeed, it never even entered my mind to command such a thing!</VERS>\n\t\t\t<VERS vnumber=\"32\"> So, watch out!\" says the LORD. \"The time will soon come when people will no longer call those places Topheth or the Valley of Ben Hinnom. But they will call that valley the Valley of Slaughter and they will bury so many people in Topheth they will run out of room.</VERS>\n\t\t\t<VERS vnumber=\"33\"> Then the dead bodies of these people will be left on the ground for the birds and wild animals to eat. There will not be any survivors to scare them away. </VERS>\n\t\t\t<VERS vnumber=\"34\"> I will put an end to the sounds of joy and gladness, or the glad celebration of brides and grooms throughout the towns of Judah and the streets of Jerusalem. For the whole land will become a desolate wasteland.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"8\">\n\t\t\t<VERS vnumber=\"1\"> The LORD says, \"When that time comes, the bones of the kings of Judah and its leaders, the bones of the priests and prophets and of all the other people who lived in Jerusalem will be dug up from their graves.</VERS>\n\t\t\t<VERS vnumber=\"2\"> They will be spread out and exposed to the sun, the moon and the stars. These are things they adored and served, things to which they paid allegiance, from which they sought guidance, and worshiped. The bones of these people will never be regathered and reburied. They will be like manure used to fertilize the ground.</VERS>\n\t\t\t<VERS vnumber=\"3\"> However, I will leave some of these wicked people alive and banish them to other places. But wherever these people who survive may go, they will wish they had died rather than lived,\" says the LORD who rules over all.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The LORD said to me, \"Tell them, 'The LORD says, Do people not get back up when they fall down? Do they not turn around when they go the wrong way?</VERS>\n\t\t\t<VERS vnumber=\"5\"> Why, then, do these people of Jerusalem continually turn away from me in apostasy? They hold fast to their deception. They refuse to turn back to me.</VERS>\n\t\t\t<VERS vnumber=\"6\"> I have listened to them very carefully, but they do not speak honestly. None of them regrets the evil he has done. None of them says, \"I have done wrong!\" All of them persist in their own wayward course like a horse charging recklessly into battle.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Even the stork knows when it is time to move on. The turtledove, swallow, and crane recognize the normal times for their migration. But my people pay no attention to what I, the LORD, require of them.</VERS>\n\t\t\t<VERS vnumber=\"8\"> How can you say, \"We are wise! We have the law of the LORD\"? The truth is, those who teach it have used their writings to make it say what it does not really mean.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Your wise men will be put to shame. They will be dumbfounded and be brought to judgment. Since they have rejected the word of the LORD, what wisdom do they really have?</VERS>\n\t\t\t<VERS vnumber=\"10\">  So I will give their wives to other men and their fields to new owners. For from the least important to the most important of them, all of them are greedy for dishonest gain. Prophets and priests alike, all practice deceit.</VERS>\n\t\t\t<VERS vnumber=\"11\"> They offer only superficial help for the hurt my dear people have suffered. They say, \"Everything will be all right!\" But everything is not all right!</VERS>\n\t\t\t<VERS vnumber=\"12\"> Are they ashamed because they have done such disgusting things? No, they are not at all ashamed! They do not even know how to blush! So they will die just like others have died. They will be brought to ruin when I punish them, says the LORD.</VERS>\n\t\t\t<VERS vnumber=\"13\"> I will take away their harvests, says the LORD. There will be no grapes on their vines. There will be no figs on their fig trees. Even the leaves on their trees will wither. The crops that I gave them will be taken away.'\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> The people say, \"Why are we just sitting here? Let us gather together inside the fortified cities. Let us at least die there fighting, since the LORD our God has condemned us to die. He has condemned us to drink the poison waters of judgment because we have sinned against him.</VERS>\n\t\t\t<VERS vnumber=\"15\"> We hoped for good fortune, but nothing good has come of it. We hoped for a time of relief, but instead we experience terror.</VERS>\n\t\t\t<VERS vnumber=\"16\"> The snorting of the enemy's horses is already being heard in the city of Dan. The sound of the neighing of their stallions causes the whole land to tremble with fear. They are coming to destroy the land and everything in it! They are coming to destroy the cities and everyone who lives in them!\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> The LORD says, \"Yes indeed, I am sending an enemy against you that will be like poisonous snakes which cannot be charmed away. And they will inflict fatal wounds on you.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> Then I said, \"There is no cure for my grief! I am sick at heart!</VERS>\n\t\t\t<VERS vnumber=\"19\"> I hear my dear people crying out throughout the length and breadth of the land. They are crying, 'Is the LORD no longer in Zion? Is her divine King no longer there?'\" The LORD answers, \"Why then do they provoke me to anger with their images, with their worthless foreign idols?\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> \"They cry, 'Harvest time has come and gone, and the summer is over, and still we have not been delivered.'</VERS>\n\t\t\t<VERS vnumber=\"21\"> My heart is crushed because my dear people are being crushed. I go about crying and grieving. I am overwhelmed with dismay.</VERS>\n\t\t\t<VERS vnumber=\"22\"> There is still medicinal ointment available in Gilead! There is still a physician there! Why then have my dear people not been restored to health?</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"9\">\n\t\t\t<VERS vnumber=\"1\">  I wish that my head were a well full of water and my eyes were a fountain full of tears! If they were, I could cry day and night for those of my dear people who have been killed.</VERS>\n\t\t\t<VERS vnumber=\"2\">  I wish I had a lodging place in the desert where I could spend some time like a weary traveler. Then I would desert my people and walk away from them because they are all unfaithful to God, a congregation of people that has been disloyal to him.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The LORD says, \"These people are like soldiers who have readied their bows. Their tongues are always ready to shoot out lies. They have become powerful in the land, but they have not done so by honest means. Indeed, they do one evil thing after another and do not pay attention to me.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Everyone must be on his guard around his friends. He must not even trust any of his relatives. For every one of them will find some way to cheat him. And all of his friends will tell lies about him.</VERS>\n\t\t\t<VERS vnumber=\"5\"> One friend deceives another and no one tells the truth. These people have trained themselves to tell lies. They do wrong and are unable to repent.</VERS>\n\t\t\t<VERS vnumber=\"6\"> They do one act of violence after another, and one deceitful thing after another. They refuse to pay attention to me,\" says the LORD.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Therefore the LORD who rules over all says, \"I will now purify them in the fires of affliction and test them. The wickedness of my dear people has left me no choice. What else can I do?</VERS>\n\t\t\t<VERS vnumber=\"8\"> Their tongues are like deadly arrows. They are always telling lies. Friendly words for their neighbors come from their mouths. But their minds are thinking up ways to trap them.</VERS>\n\t\t\t<VERS vnumber=\"9\"> I will certainly punish them for doing such things!\" says the LORD. \"I will certainly bring retribution on such a nation as this!\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> I said, \"I will weep and mourn for the grasslands on the mountains, I will sing a mournful song for the pastures in the wilderness because they are so scorched no one travels through them. The sound of livestock is no longer heard there. Even the birds in the sky and the wild animals in the fields have fled and are gone.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> The LORD said, \"I will make Jerusalem a heap of ruins. Jackals will make their home there. I will destroy the towns of Judah so that no one will be able to live in them.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> I said, \"Who is wise enough to understand why this has happened? Who has a word from the LORD that can explain it? Why does the land lie in ruins? Why is it as scorched as a desert through which no one travels?\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> The LORD answered, \"This has happened because these people have rejected my laws which I gave them. They have not obeyed me or followed those laws.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Instead they have followed the stubborn inclinations of their own hearts. They have paid allegiance to the gods called Baal, as their fathers taught them to do. </VERS>\n\t\t\t<VERS vnumber=\"15\"> So then, listen to what I, the LORD God of Israel who rules over all, say. 'I will make these people eat the bitter food of suffering and drink the poison water of judgment.</VERS>\n\t\t\t<VERS vnumber=\"16\"> I will scatter them among nations that neither they nor their ancestors have known anything about. I will send people chasing after them with swords until I have destroyed them.'\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> The LORD who rules over all told me to say to this people, \"Take note of what I say. Call for the women who mourn for the dead! Summon those who are the most skilled at it!\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> I said, \"Indeed, let them come quickly and sing a song of mourning for us. Let them wail loudly until tears stream from our own eyes and our eyelids overflow with water.</VERS>\n\t\t\t<VERS vnumber=\"19\"> For the sound of wailing is soon to be heard in Zion. They will wail, 'We are utterly ruined! We are completely disgraced! For our houses have been torn down and we must leave our land.'\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> I said, \"So now, you wailing women, hear what the LORD says. Open your ears to the words from his mouth. Teach your daughters this mournful song, and each of you teach your neighbor this lament.</VERS>\n\t\t\t<VERS vnumber=\"21\"> 'Death has climbed in through our windows. It has entered into our fortified houses. It has taken away our children who play in the streets. It has taken away our young men who gather in the city squares.'</VERS>\n\t\t\t<VERS vnumber=\"22\"> Tell your daughters and neighbors, 'The LORD says, \"The dead bodies of people will lie scattered everywhere like manure scattered on a field. They will lie scattered on the ground like grain that has been cut down but has not been gathered.\"'\"</VERS>\n\t\t\t<VERS vnumber=\"23\">  The LORD says, \"Wise people should not boast that they are wise. Powerful people should not boast that they are powerful. Rich people should not boast that they are rich.</VERS>\n\t\t\t<VERS vnumber=\"24\"> If people want to boast, they should boast about this: They should boast that they understand and know me. They should boast that they know and understand that I, the LORD, act out of faithfulness, fairness, and justice in the earth and that I desire people to do these things,\" says the LORD.</VERS>\n\t\t\t<VERS vnumber=\"25\"> The LORD says, \"Watch out! The time is soon coming when I will punish all those who are circumcised only in the flesh.</VERS>\n\t\t\t<VERS vnumber=\"26\"> That is, I will punish the Egyptians, the Judeans, the Edomites, the Ammonites, the Moabites, and all the desert people who cut their hair short at the temples. I will do so because none of the people of those nations are really circumcised in the LORD's sight. Moreover, none of the people of Israel are circumcised when it comes to their hearts.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"10\">\n\t\t\t<VERS vnumber=\"1\"> You people of Israel, listen to what the LORD has to say to you.</VERS>\n\t\t\t<VERS vnumber=\"2\"> The LORD says, \"Do not start following pagan religious practices. Do not be in awe of signs that occur in the sky even though the nations hold them in awe.</VERS>\n\t\t\t<VERS vnumber=\"3\"> For the religion of these people is worthless. They cut down a tree in the forest, and a craftsman makes it into an idol with his tools.</VERS>\n\t\t\t<VERS vnumber=\"4\"> He decorates it with overlays of silver and gold. He uses hammer and nails to fasten it together so that it will not fall over.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Such idols are like scarecrows in a cucumber field. They cannot talk. They must be carried because they cannot walk. Do not be afraid of them because they cannot hurt you. And they do not have any power to help you.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> I said, \"There is no one like you, LORD. You are great. And you are renowned for your power.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Everyone should revere you, O King of all nations, because you deserve to be revered. For there is no one like you among any of the wise people of the nations nor among any of their kings.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The people of those nations are both stupid and foolish. Instruction from a wooden idol is worthless!</VERS>\n\t\t\t<VERS vnumber=\"9\"> Hammered-out silver is brought from Tarshish and gold is brought from Uphaz to cover those idols. They are the handiwork of carpenters and goldsmiths. They are clothed in blue and purple clothes. They are all made by skillful workers.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The LORD is the only true God. He is the living God and the everlasting King. When he shows his anger the earth shakes. None of the nations can stand up to his fury.</VERS>\n\t\t\t<VERS vnumber=\"11\"> You people of Israel should tell those nations this: 'These gods did not make heaven and earth. They will disappear from the earth and from under the heavens.'</VERS>\n\t\t\t<VERS vnumber=\"12\"> The LORD is the one who by his power made the earth. He is the one who by his wisdom established the world. And by his understanding he spread out the skies.</VERS>\n\t\t\t<VERS vnumber=\"13\"> When his voice thunders, the heavenly ocean roars. He makes the clouds rise from the far-off horizons. He makes the lightning flash out in the midst of the rain. He unleashes the wind from the places where he stores it.</VERS>\n\t\t\t<VERS vnumber=\"14\"> All these idolaters will prove to be stupid and ignorant. Every goldsmith will be disgraced by the idol he made. For the image he forges is merely a sham. There is no breath in any of those idols.</VERS>\n\t\t\t<VERS vnumber=\"15\"> They are worthless, mere objects to be mocked. When the time comes to punish them, they will be destroyed.</VERS>\n\t\t\t<VERS vnumber=\"16\"> The LORD, who is the inheritance of Jacob's descendants, is not like them. He is the one who created everything. And the people of Israel are those he claims as his own. He is known as the LORD who rules over all.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> Gather your belongings together and prepare to leave the land, you people of Jerusalem who are being besieged.</VERS>\n\t\t\t<VERS vnumber=\"18\"> For the LORD says, \"I will now throw out those who live in this land. I will bring so much trouble on them that they will actually feel it.\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> And I cried out, \"We are doomed! Our wound is severe! We once thought, 'This is only an illness. And we will be able to bear it!'</VERS>\n\t\t\t<VERS vnumber=\"20\"> But our tents have been destroyed. The ropes that held them in place have been ripped apart. Our children are gone and are not coming back. There is no survivor to put our tents back up, no one left to hang their tent curtains in place.</VERS>\n\t\t\t<VERS vnumber=\"21\"> For our leaders are stupid. They have not sought the LORD's advice. So they do not act wisely, and the people they are responsible for have all been scattered.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Listen! News is coming even now. The rumble of a great army is heard approaching from a land in the north. It is coming to turn the towns of Judah into rubble, places where only jackals live.</VERS>\n\t\t\t<VERS vnumber=\"23\"> LORD, we know that people do not control their own destiny. It is not in their power to determine what will happen to them.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Correct us, LORD, but only in due measure. Do not punish us in anger or you will reduce us to nothing.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Vent your anger on the nations that do not acknowledge you. Vent it on the peoples who do not worship you. For they have destroyed the people of Jacob. They have completely destroyed them and left their homeland in utter ruin.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"11\">\n\t\t\t<VERS vnumber=\"1\"> The LORD said to Jeremiah:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Hear the terms of the covenant I made with Israel and pass them on to the people of Judah and the citizens of Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Tell them that the LORD, the God of Israel, says, 'Anyone who does not keep the terms of the covenant will be under a curse.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Those are the terms that I charged your ancestors to keep when I brought them out of Egypt, that place which was like an iron-smelting furnace. I said at that time, \"Obey me and carry out the terms of the agreement exactly as I commanded you. If you do, you will be my people and I will be your God.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Then I will keep the promise I swore on oath to your ancestors to give them a land flowing with milk and honey.\" That is the very land that you still live in today.'\" And I responded, \"Amen! Let it be so, LORD!\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> The LORD said to me, \"Announce all the following words in the towns of Judah and in the streets of Jerusalem: 'Listen to the terms of my covenant with you and carry them out! </VERS>\n\t\t\t<VERS vnumber=\"7\"> For I solemnly warned your ancestors to obey me. I warned them again and again, ever since I delivered them out of Egypt until this very day. </VERS>\n\t\t\t<VERS vnumber=\"8\"> But they did not listen to me or pay any attention to me! Each one of them followed the stubborn inclinations of his own wicked heart. So I brought on them all the punishments threatened in the covenant because they did not carry out its terms as I commanded them to do.'\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> The LORD said to me, \"The people of Judah and the citizens of Jerusalem have plotted rebellion against me!</VERS>\n\t\t\t<VERS vnumber=\"10\"> They have gone back to the evil ways of their ancestors of old who refused to obey what I told them. They, too, have paid allegiance to other gods and worshiped them. Both the nation of Israel and the nation of Judah have violated the covenant I made with their ancestors.</VERS>\n\t\t\t<VERS vnumber=\"11\"> So I, the LORD, say this: 'I will soon bring disaster on them which they will not be able to escape! When they cry out to me for help, I will not listen to them. </VERS>\n\t\t\t<VERS vnumber=\"12\"> Then those living in the towns of Judah and in Jerusalem will go and cry out for help to the gods to whom they have been sacrificing. However, those gods will by no means be able to save them when disaster strikes them. </VERS>\n\t\t\t<VERS vnumber=\"13\"> This is in spite of the fact that the people of Judah have as many gods as they have towns and the citizens of Jerusalem have set up as many altars to sacrifice to that disgusting god, Baal, as they have streets in the city!'</VERS>\n\t\t\t<VERS vnumber=\"14\"> So, Jeremiah, do not pray for these people. Do not cry out to me or petition me on their behalf. Do not plead with me to save them. For I will not listen to them when they call out to me for help when disaster strikes them.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> The LORD says to the people of Judah, \"What right do you have to be in my temple, my beloved people? Many of you have done wicked things. Can your acts of treachery be so easily canceled by sacred offerings that you take joy in doing evil even while you make them?</VERS>\n\t\t\t<VERS vnumber=\"16\"> I, the LORD, once called you a thriving olive tree, one that produced beautiful fruit. But I will set you on fire, fire that will blaze with a mighty roar. Then all your branches will be good for nothing.</VERS>\n\t\t\t<VERS vnumber=\"17\"> For though I, the LORD who rules over all, planted you in the land, I now decree that disaster will come on you because the nations of Israel and Judah have done evil and have made me angry by offering sacrifices to the god Baal.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> The LORD gave me knowledge, that I might have understanding. Then he showed me what the people were doing.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Before this I had been like a docile lamb ready to be led to the slaughter. I did not know they were making plans to kill me. I did not know they were saying, \"Let's destroy the tree along with its fruit! Let's remove Jeremiah from the world of the living so people will not even be reminded of him any more.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> So I said to the LORD, \"O LORD who rules over all, you are a just judge! You examine people's hearts and minds. I want to see you pay them back for what they have done because I trust you to vindicate my cause.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> Then the LORD told me about some men from Anathoth who were threatening to kill me. They had threatened, \"Stop prophesying in the name of the LORD or we will kill you!\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> So the LORD who rules over all said, \"I will surely punish them! Their young men will be killed in battle. Their sons and daughters will die of starvation. </VERS>\n\t\t\t<VERS vnumber=\"23\"> Not one of them will survive. I will bring disaster on those men from Anathoth who threatened you. A day of reckoning is coming for them.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"12\">\n\t\t\t<VERS vnumber=\"1\"> LORD, you have always been fair whenever I have complained to you. However, I would like to speak with you about the disposition of justice. Why are wicked people successful? Why do all dishonest people have such easy lives?</VERS>\n\t\t\t<VERS vnumber=\"2\"> You plant them like trees and they put down their roots. They grow prosperous and are very fruitful. They always talk about you, but they really care nothing about you.</VERS>\n\t\t\t<VERS vnumber=\"3\"> But you, LORD, know all about me. You watch me and test my devotion to you. Drag these wicked men away like sheep to be slaughtered! Appoint a time when they will be killed!</VERS>\n\t\t\t<VERS vnumber=\"4\"> How long must the land be parched and the grass in every field be withered? How long must the animals and the birds die because of the wickedness of the people who live in this land? For these people boast, \"God will not see what happens to us.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> The LORD answered, \"If you have raced on foot against men and they have worn you out, how will you be able to compete with horses? And if you feel secure only in safe and open country, how will you manage in the thick undergrowth along the Jordan River?</VERS>\n\t\t\t<VERS vnumber=\"6\"> As a matter of fact, even your own brothers and the members of your own family have betrayed you too. Even they have plotted to do away with you. So do not trust them even when they say kind things to you.</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"I will abandon my nation. I will forsake the people I call my own. I will turn my beloved people over to the power of their enemies.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The people I call my own have turned on me like a lion in the forest. They have roared defiantly at me. So I will treat them as though I hate them.</VERS>\n\t\t\t<VERS vnumber=\"9\"> The people I call my own attack me like birds of prey or like hyenas. But other birds of prey are all around them. Let all the nations gather together like wild beasts. Let them come and destroy these people I call my own.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Many foreign rulers will ruin the land where I planted my people. They will trample all over my chosen land. They will turn my beautiful land into a desolate wasteland.</VERS>\n\t\t\t<VERS vnumber=\"11\"> They will lay it waste. It will lie parched and empty before me. The whole land will be laid waste. But no one living in it will pay any heed.</VERS>\n\t\t\t<VERS vnumber=\"12\"> A destructive army will come marching over the hilltops in the desert. For the LORD will use them as his destructive weapon against everyone from one end of the land to the other. No one will be safe.</VERS>\n\t\t\t<VERS vnumber=\"13\"> My people will sow wheat, but will harvest weeds. They will work until they are exhausted, but will get nothing from it. They will be disappointed in their harvests because the LORD will take them away in his fierce anger.</VERS>\n\t\t\t<VERS vnumber=\"14\"> \"I, the LORD, also have something to say concerning the wicked nations who surround my land and have attacked and plundered the land that I gave to my people as a permanent possession. I say: 'I will uproot the people of those nations from their lands and I will free the people of Judah who have been taken there.</VERS>\n\t\t\t<VERS vnumber=\"15\"> But after I have uprooted the people of those nations, I will relent and have pity on them. I will restore the people of each of those nations to their own lands and to their own country. </VERS>\n\t\t\t<VERS vnumber=\"16\"> But they must make sure you learn to follow the religious practices of my people. Once they taught my people to swear their oaths using the name of the god Baal. But then, they must swear oaths using my name, saying, \"As surely as the LORD lives, I swear.\" If they do these things, then they will be included among the people I call my own.</VERS>\n\t\t\t<VERS vnumber=\"17\"> But I will completely uproot and destroy any of those nations that will not pay heed,'\" says the LORD.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"13\">\n\t\t\t<VERS vnumber=\"1\"> The LORD said to me, \"Go and buy some linen shorts and put them on. Do not put them in water.\"</VERS>\n\t\t\t<VERS vnumber=\"2\"> So I bought the shorts as the LORD had told me to do and put them on.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Then the LORD spoke to me again and said,</VERS>\n\t\t\t<VERS vnumber=\"4\"> \"Take the shorts that you bought and are wearing and go at once to Perath. Bury the shorts there in a crack in the rocks.\" </VERS>\n\t\t\t<VERS vnumber=\"5\"> So I went and buried them at Perath as the LORD had ordered me to do. </VERS>\n\t\t\t<VERS vnumber=\"6\"> Many days later the LORD said to me, \"Go at once to Perath and get the shorts I ordered you to bury there.\" </VERS>\n\t\t\t<VERS vnumber=\"7\"> So I went to Perath and dug up the shorts from the place where I had buried them. I found that they were ruined; they were good for nothing.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Then the LORD said to me,</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"I, the LORD, say: 'This shows how I will ruin the highly exalted position in which Judah and Jerusalem take pride. </VERS>\n\t\t\t<VERS vnumber=\"10\"> These wicked people refuse to obey what I have said. They follow the stubborn inclinations of their own hearts and pay allegiance to other gods by worshiping and serving them. So they will become just like these linen shorts which are good for nothing.</VERS>\n\t\t\t<VERS vnumber=\"11\"> For,' I say, 'just as shorts cling tightly to a person's body, so I bound the whole nation of Israel and the whole nation of Judah tightly to me.' I intended for them to be my special people and to bring me fame, honor, and praise. But they would not obey me.</VERS>\n\t\t\t<VERS vnumber=\"12\"> \"So tell them, 'The LORD, the God of Israel, says, \"Every wine jar is made to be filled with wine.\"' And they will probably say to you, 'Do you not think we know that every wine jar is supposed to be filled with wine?' </VERS>\n\t\t\t<VERS vnumber=\"13\"> Then tell them, 'The LORD says, \"I will soon fill all the people who live in this land with stupor. I will also fill the kings from David's dynasty, the priests, the prophets, and the citizens of Jerusalem with stupor.</VERS>\n\t\t\t<VERS vnumber=\"14\"> And I will smash them like wine bottles against one another, children and parents alike. I will not show any pity, mercy, or compassion. Nothing will keep me from destroying them,' says the LORD.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> Then I said to the people of Judah, \"Listen and pay attention! Do not be arrogant! For the LORD has spoken.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Show the LORD your God the respect that is due him. Do it before he brings the darkness of disaster. Do it before you stumble into distress like a traveler on the mountains at twilight. Do it before he turns the light of deliverance you hope for into the darkness and gloom of exile.</VERS>\n\t\t\t<VERS vnumber=\"17\"> But if you will not pay attention to this warning, I will weep alone because of your arrogant pride. I will weep bitterly and my eyes will overflow with tears because you, the LORD's flock, will be carried into exile.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> The LORD told me, \"Tell the king and the queen mother, 'Surrender your thrones, for your glorious crowns will be removed from your heads.</VERS>\n\t\t\t<VERS vnumber=\"19\"> The gates of the towns in southern Judah will be shut tight. No one will be able to go in or out of them. All Judah will be carried off into exile. They will be completely carried off into exile.'\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> Then I said, \"Look up, Jerusalem, and see the enemy that is coming from the north. Where now is the flock of people that were entrusted to your care? Where now are the 'sheep' that you take such pride in?</VERS>\n\t\t\t<VERS vnumber=\"21\"> What will you say when the LORD appoints as rulers over you those allies that you, yourself, had actually prepared as such? Then anguish and agony will grip you like that of a woman giving birth to a baby.</VERS>\n\t\t\t<VERS vnumber=\"22\"> You will probably ask yourself, 'Why have these things happened to me? Why have I been treated like a disgraced adulteress whose skirt has been torn off and her limbs exposed?' It is because you have sinned so much.</VERS>\n\t\t\t<VERS vnumber=\"23\"> But there is little hope for you ever doing good, you who are so accustomed to doing evil. Can an Ethiopian change the color of his skin? Can a leopard remove its spots?</VERS>\n\t\t\t<VERS vnumber=\"24\"> \"The LORD says, 'That is why I will scatter your people like chaff that is blown away by a desert wind.</VERS>\n\t\t\t<VERS vnumber=\"25\"> This is your fate, the destiny to which I have appointed you, because you have forgotten me and have trusted in false gods.</VERS>\n\t\t\t<VERS vnumber=\"26\"> So I will pull your skirt up over your face and expose you to shame like a disgraced adulteress!</VERS>\n\t\t\t<VERS vnumber=\"27\"> People of Jerusalem, I have seen your adulterous worship, your shameless prostitution to, and your lustful pursuit of, other gods. I have seen your disgusting acts of worship on the hills throughout the countryside. You are doomed to destruction! How long will you continue to be unclean?'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"14\">\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Jeremiah about the drought.</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"The people of Judah are in mourning. The people in her cities are pining away. They lie on the ground expressing their sorrow. Cries of distress come up to me from Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The leading men of the cities send their servants for water. They go to the cisterns, but they do not find any water there. They return with their containers empty. Disappointed and dismayed, they bury their faces in their hands.</VERS>\n\t\t\t<VERS vnumber=\"4\"> They are dismayed because the ground is cracked because there has been no rain in the land. The farmers, too, are dismayed and bury their faces in their hands.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Even the doe abandons her newborn fawn in the field because there is no grass.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Wild donkeys stand on the hilltops and pant for breath like jackals. Their eyes are strained looking for food, because there is none to be found.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> Then I said, \"O LORD, intervene for the honor of your name even though our sins speak out against us. Indeed, we have turned away from you many times. We have sinned against you.</VERS>\n\t\t\t<VERS vnumber=\"8\"> You have been the object of Israel's hopes. You have saved them when they were in trouble. Why have you become like a resident foreigner in the land? Why have you become like a traveler who only stops in to spend the night?</VERS>\n\t\t\t<VERS vnumber=\"9\"> Why should you be like someone who is helpless, like a champion who cannot save anyone? You are indeed with us, and we belong to you. Do not abandon us!\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> Then the LORD spoke about these people. \"They truly love to go astray. They cannot keep from running away from me. So I am not pleased with them. I will now call to mind the wrongs they have done and punish them for their sins.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> Then the LORD said to me, \"Do not pray for good to come to these people!</VERS>\n\t\t\t<VERS vnumber=\"12\"> Even if they fast, I will not hear their cries for help. Even if they offer burnt offerings and grain offerings, I will not accept them. Instead, I will kill them through wars, famines, and plagues.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> Then I said, \"Oh, Lord GOD, look! The prophets are telling them that you said, 'You will not experience war or suffer famine. I will give you lasting peace and prosperity in this land.'\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> Then the LORD said to me, \"Those prophets are prophesying lies while claiming my authority! I did not send them. I did not commission them. I did not speak to them. They are prophesying to these people false visions, worthless predictions, and the delusions of their own mind. </VERS>\n\t\t\t<VERS vnumber=\"15\"> I did not send those prophets, though they claim to be prophesying in my name. They may be saying, 'No war or famine will happen in this land.' But I, the LORD, say this about them: 'War and starvation will kill those prophets.'</VERS>\n\t\t\t<VERS vnumber=\"16\"> The people to whom they are prophesying will die through war and famine. Their bodies will be thrown out into the streets of Jerusalem and there will be no one to bury them. This will happen to the men and their wives, their sons, and their daughters. For I will pour out on them the destruction they deserve.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> \"Tell these people this, Jeremiah: 'My eyes overflow with tears day and night without ceasing. For my people, my dear children, have suffered a crushing blow. They have suffered a serious wound.</VERS>\n\t\t\t<VERS vnumber=\"18\"> If I go out into the countryside, I see those who have been killed in battle. If I go into the city, I see those who are sick because of starvation. For both prophet and priest go about their own business in the land without having any real understanding.'\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> Then I said, \"LORD, have you completely rejected the nation of Judah? Do you despise the city of Zion? Why have you struck us with such force that we are beyond recovery? We hope for peace, but nothing good has come of it. We hope for a time of relief from our troubles, but experience terror.</VERS>\n\t\t\t<VERS vnumber=\"20\"> LORD, we confess that we have been wicked. We confess that our ancestors have done wrong. We have indeed sinned against you.</VERS>\n\t\t\t<VERS vnumber=\"21\"> For the honor of your name, do not treat Jerusalem with contempt. Do not treat with disdain the place where your glorious throne sits. Be mindful of your covenant with us. Do not break it!</VERS>\n\t\t\t<VERS vnumber=\"22\"> Do any of the worthless idols of the nations cause rain to fall? Do the skies themselves send showers? Is it not you, O Lord our God, who does this? So we put our hopes in you because you alone do all this.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"15\">\n\t\t\t<VERS vnumber=\"1\"> Then the LORD said to me, \"Even if Moses and Samuel stood before me pleading for these people, I would not feel pity for them! Get them away from me! Tell them to go away!</VERS>\n\t\t\t<VERS vnumber=\"2\"> If they ask you, 'Where should we go?' tell them the LORD says this: \"Those who are destined to die of disease will go to death by disease. Those who are destined to die in war will go to death in war. Those who are destined to die of starvation will go to death by starvation. Those who are destined to go into exile will go into exile.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> \"I will punish them in four different ways: I will have war kill them. I will have dogs drag off their dead bodies. I will have birds and wild beasts devour and destroy their corpses.</VERS>\n\t\t\t<VERS vnumber=\"4\"> I will make all the people in all the kingdoms of the world horrified at what has happened to them because of what Hezekiah's son Manasseh, king of Judah, did in Jerusalem.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> The LORD cried out, \"Who in the world will have pity on you, Jerusalem? Who will grieve over you? Who will stop long enough to inquire about how you are doing?</VERS>\n\t\t\t<VERS vnumber=\"6\"> I, the LORD, say: 'You people have deserted me! You keep turning your back on me.' So I have unleashed my power against you and have begun to destroy you. I have grown tired of feeling sorry for you!\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> The LORD continued, \"In every town in the land I will purge them like straw blown away by the wind. I will destroy my people. I will kill off their children. I will do so because they did not change their behavior.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Their widows will become in my sight more numerous than the grains of sand on the seashores. At noontime I will bring a destroyer against the mothers of their young men. I will cause anguish and terror to fall suddenly upon them.</VERS>\n\t\t\t<VERS vnumber=\"9\"> The mother who had seven children will grow faint. All the breath will go out of her. Her pride and joy will be taken from her in the prime of their life. It will seem as if the sun had set while it was still day. She will suffer shame and humiliation. I will cause any of them who are still left alive to be killed in war by the onslaughts of their enemies,\" says the LORD.</VERS>\n\t\t\t<VERS vnumber=\"10\"> I said, \"Oh, mother, how I regret that you ever gave birth to me! I am always starting arguments and quarrels with the people of this land. I have not lent money to anyone and I have not borrowed from anyone. Yet all of these people are treating me with contempt.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> The LORD said, \"Jerusalem, I will surely send you away for your own good. I will surely bring the enemy upon you in a time of trouble and distress.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Can you people who are like iron and bronze break that iron fist from the north?</VERS>\n\t\t\t<VERS vnumber=\"13\"> I will give away your wealth and your treasures as plunder. I will give it away free of charge for the sins you have committed throughout your land.</VERS>\n\t\t\t<VERS vnumber=\"14\"> I will make you serve your enemies in a land that you know nothing about. For my anger is like a fire that will burn against you.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> I said, \"LORD, you know how I suffer. Take thought of me and care for me. Pay back for me those who have been persecuting me. Do not be so patient with them that you allow them to kill me. Be mindful of how I have put up with their insults for your sake.</VERS>\n\t\t\t<VERS vnumber=\"16\"> As your words came to me I drank them in, and they filled my heart with joy and happiness because I belong to you.</VERS>\n\t\t\t<VERS vnumber=\"17\"> I did not spend my time in the company of other people, laughing and having a good time. I stayed to myself because I felt obligated to you and because I was filled with anger at what they had done.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Why must I continually suffer such painful anguish? Why must I endure the sting of their insults like an incurable wound? Will you let me down when I need you like a brook one goes to for water, but that cannot be relied on?\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> Because of this, the LORD said, \"You must repent of such words and thoughts! If you do, I will restore you to the privilege of serving me. If you say what is worthwhile instead of what is worthless, I will again allow you to be my spokesman. They must become as you have been. You must not become like them.</VERS>\n\t\t\t<VERS vnumber=\"20\"> I will make you as strong as a wall to these people, a fortified wall of bronze. They will attack you, but they will not be able to overcome you. For I will be with you to rescue you and deliver you,\" says the LORD.</VERS>\n\t\t\t<VERS vnumber=\"21\"> \"I will deliver you from the power of the wicked. I will free you from the clutches of violent people.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"16\">\n\t\t\t<VERS vnumber=\"1\"> The LORD said to me,</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Do not get married and do not have children here in this land.</VERS>\n\t\t\t<VERS vnumber=\"3\"> For I, the LORD, tell you what will happen to the children who are born here in this land and to the men and women who are their mothers and fathers.</VERS>\n\t\t\t<VERS vnumber=\"4\"> They will die of deadly diseases. No one will mourn for them. They will not be buried. Their dead bodies will lie like manure spread on the ground. They will be killed in war or die of starvation. Their corpses will be food for the birds and wild animals.</VERS>\n\t\t\t<VERS vnumber=\"5\"> \"Moreover I, the LORD, tell you: 'Do not go into a house where they are having a funeral meal. Do not go there to mourn and express your sorrow for them. For I have stopped showing them my good favor, my love, and my compassion. I, the LORD, so affirm it!</VERS>\n\t\t\t<VERS vnumber=\"6\"> Rich and poor alike will die in this land. They will not be buried or mourned. People will not cut their bodies or shave off their hair to show their grief for them.</VERS>\n\t\t\t<VERS vnumber=\"7\"> No one will take any food to those who mourn for the dead to comfort them. No one will give them any wine to drink to console them for the loss of their father or mother.</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"'Do not go to a house where people are feasting and sit down to eat and drink with them either.</VERS>\n\t\t\t<VERS vnumber=\"9\"> For I, the LORD God of Israel who rules over all, tell you what will happen. I will put an end to the sounds of joy and gladness, to the glad celebration of brides and grooms in this land. You and the rest of the people will live to see this happen.'\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"When you tell these people about all this, they will undoubtedly ask you, 'Why has the LORD threatened us with such great disaster? What wrong have we done? What sin have we done to offend the LORD our God?' </VERS>\n\t\t\t<VERS vnumber=\"11\"> Then tell them that the LORD says, 'It is because your ancestors rejected me and paid allegiance to other gods. They have served them and worshiped them. But they have rejected me and not obeyed my law.</VERS>\n\t\t\t<VERS vnumber=\"12\"> And you have acted even more wickedly than your ancestors! Each one of you has followed the stubborn inclinations of your own wicked heart and not obeyed me.</VERS>\n\t\t\t<VERS vnumber=\"13\"> So I will throw you out of this land into a land that neither you nor your ancestors have ever known. There you must worship other gods day and night, for I will show you no mercy.'\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> Yet I, the LORD, say: \"A new time will certainly come. People now affirm their oaths with 'I swear as surely as the LORD lives who delivered the people of Israel out of Egypt.' </VERS>\n\t\t\t<VERS vnumber=\"15\"> But in that time they will affirm them with 'I swear as surely as the LORD lives who delivered the people of Israel from the land of the north and from all the other lands where he had banished them.' At that time I will bring them back to the land I gave their ancestors.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> But for now I, the LORD, say: \"I will send many enemies who will catch these people like fishermen. After that I will send others who will hunt them out like hunters from all the mountains, all the hills, and the crevices in the rocks.</VERS>\n\t\t\t<VERS vnumber=\"17\"> For I see everything they do. Their wicked ways are not hidden from me. Their sin is not hidden away where I cannot see it.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Before I restore them I will punish them in full for their sins and the wrongs they have done. For they have polluted my land with the lifeless statues of their disgusting idols. They have filled the land I have claimed as my own with their detestable idols.\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> Then I said, \"LORD, you give me strength and protect me. You are the one I can run to for safety when I am in trouble. Nations from all over the earth will come to you and say, 'Our ancestors had nothing but false gods, worthless idols that could not help them at all.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Can people make their own gods? No, what they make are not gods at all.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> The LORD said, \"So I will now let this wicked people know, I will let them know my mighty power in judgment. Then they will know that my name is the LORD.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"17\">\n\t\t\t<VERS vnumber=\"1\">  The sin of Judah is engraved with an iron chisel on their stone-hard hearts. It is inscribed with a diamond point on the horns of their altars.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Their children are always thinking about their altars and their sacred poles dedicated to the goddess Asherah, set up beside the green trees on the high hills</VERS>\n\t\t\t<VERS vnumber=\"3\"> and on the mountains and in the fields. I will give your wealth and all your treasures away as plunder. I will give it away as the price for the sins you have committed throughout your land.</VERS>\n\t\t\t<VERS vnumber=\"4\"> You will lose your hold on the land which I gave to you as a permanent possession. I will make you serve your enemies in a land that you know nothing about. For you have made my anger burn like a fire that will never be put out.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> The LORD says, \"I will put a curse on people who trust in mere human beings, who depend on mere flesh and blood for their strength, and whose hearts have turned away from the LORD.</VERS>\n\t\t\t<VERS vnumber=\"6\"> They will be like a shrub in the desert. They will not experience good things even when they happen. It will be as though they were growing in the desert, in a salt land where no one can live.</VERS>\n\t\t\t<VERS vnumber=\"7\"> My blessing is on those people who trust in me, who put their confidence in me.</VERS>\n\t\t\t<VERS vnumber=\"8\"> They will be like a tree planted near a stream whose roots spread out toward the water. It has nothing to fear when the heat comes. Its leaves are always green. It has no need to be concerned in a year of drought. It does not stop bearing fruit.</VERS>\n\t\t\t<VERS vnumber=\"9\"> The human mind is more deceitful than anything else. It is incurably bad. Who can understand it?</VERS>\n\t\t\t<VERS vnumber=\"10\"> I, the LORD, probe into people's minds. I examine people's hearts. I deal with each person according to how he has behaved. I give them what they deserve based on what they have done.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The person who gathers wealth by unjust means is like the partridge that broods over eggs but does not hatch them. Before his life is half over he will lose his ill-gotten gains. At the end of his life it will be clear he was a fool.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> Then I said, \"LORD, from the very beginning you have been seated on your glorious throne on high. You are the place where we can find refuge.</VERS>\n\t\t\t<VERS vnumber=\"13\"> You are the one in whom Israel may find hope. All who leave you will suffer shame. Those who turn away from you will be consigned to the nether world. For they have rejected you, the LORD, the fountain of life.</VERS>\n\t\t\t<VERS vnumber=\"14\"> LORD, grant me relief from my suffering so that I may have some relief. Rescue me from those who persecute me so that I may be rescued.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Listen to what they are saying to me. They are saying, \"Where are the things the LORD threatens us with? Come on! Let's see them happen!\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> But I have not pestered you to bring disaster. I have not desired the time of irreparable devastation. You know that. You are fully aware of every word that I have spoken.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Do not cause me dismay! You are my source of safety in times of trouble.</VERS>\n\t\t\t<VERS vnumber=\"18\"> May those who persecute me be disgraced. Do not let me be disgraced. May they be dismayed. Do not let me be dismayed. Bring days of disaster on them. Bring on them the destruction they deserve.\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> The LORD told me, \"Go and stand in the People's Gate through which the kings of Judah enter and leave the city. Then go and stand in all the other gates of the city of Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"20\"> As you stand in those places announce, 'Listen, all you people who pass through these gates. Listen, all you kings of Judah, all you people of Judah and all you citizens of Jerusalem. Listen to what the LORD says.</VERS>\n\t\t\t<VERS vnumber=\"21\"> The LORD says, 'Be very careful if you value your lives! Do not carry any loads in through the gates of Jerusalem on the Sabbath day. </VERS>\n\t\t\t<VERS vnumber=\"22\"> Do not carry any loads out of your houses or do any work on the Sabbath day. But observe the Sabbath day as a day set apart to the LORD, as I commanded your ancestors.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Your ancestors, however, did not listen to me or pay any attention to me. They stubbornly refused to pay attention or to respond to any discipline.' </VERS>\n\t\t\t<VERS vnumber=\"24\"> The LORD says, 'You must make sure to obey me. You must not bring any loads through the gates of this city on the Sabbath day. You must set the Sabbath day apart to me. You must not do any work on that day. </VERS>\n\t\t\t<VERS vnumber=\"25\"> If you do this, then the kings and princes who follow in David's succession and ride in chariots or on horses will continue to enter through these gates, as well as their officials and the people of Judah and the citizens of Jerusalem. This city will always be filled with people.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Then people will come here from the towns in Judah, from the villages surrounding Jerusalem, from the territory of Benjamin, from the western foothills, from the southern hill country, and from the southern part of Judah. They will come bringing offerings to the temple of the LORD: burnt offerings, sacrifices, grain offerings, and incense along with their thank offerings.</VERS>\n\t\t\t<VERS vnumber=\"27\"> But you must obey me and set the Sabbath day apart to me. You must not carry any loads in through the gates of Jerusalem on the Sabbath day. If you disobey, I will set the gates of Jerusalem on fire. It will burn down all the fortified dwellings in Jerusalem and no one will be able to put it out.'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"18\">\n\t\t\t<VERS vnumber=\"1\"> The LORD said to Jeremiah:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Go down at once to the potter's house. I will speak to you further there.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> So I went down to the potter's house and found him working at his wheel.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Now and then there would be something wrong with the pot he was molding from the clay with his hands. So he would rework the clay into another kind of pot as he saw fit.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Then the LORD said to me,</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"I, the LORD, say: 'O nation of Israel, can I not deal with you as this potter deals with the clay? In my hands, you, O nation of Israel, are just like the clay in this potter's hand.' </VERS>\n\t\t\t<VERS vnumber=\"7\"> There are times, Jeremiah, when I threaten to uproot, tear down, and destroy a nation or kingdom.</VERS>\n\t\t\t<VERS vnumber=\"8\"> But if that nation I threatened stops doing wrong, I will cancel the destruction I intended to do to it. </VERS>\n\t\t\t<VERS vnumber=\"9\"> And there are times when I promise to build up and establish a nation or kingdom. </VERS>\n\t\t\t<VERS vnumber=\"10\"> But if that nation does what displeases me and does not obey me, then I will cancel the good I promised to do to it.</VERS>\n\t\t\t<VERS vnumber=\"11\"> So now, tell the people of Judah and the citizens of Jerusalem this: The LORD says, 'I am preparing to bring disaster on you! I am making plans to punish you. So, every one of you, stop the evil things you have been doing. Correct the way you have been living and do what is right.'</VERS>\n\t\t\t<VERS vnumber=\"12\"> But they just keep saying, 'We do not care what you say! We will do whatever we want to do! We will continue to behave wickedly and stubbornly!'\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> Therefore, the LORD says, \"Ask the people of other nations whether they have heard of anything like this. Israel should have been like a virgin. But she has done something utterly revolting!</VERS>\n\t\t\t<VERS vnumber=\"14\"> Does the snow ever completely vanish from the rocky slopes of Lebanon? Do the cool waters from those distant mountains ever cease to flow?</VERS>\n\t\t\t<VERS vnumber=\"15\"> Yet my people have forgotten me and offered sacrifices to worthless idols! This makes them stumble along in the way they live and leave the old reliable path of their fathers. They have left them to walk in bypaths, in roads that are not smooth and level.</VERS>\n\t\t\t<VERS vnumber=\"16\"> So their land will become an object of horror. People will forever hiss out their scorn over it. All who pass that way will be filled with horror and will shake their heads in derision.</VERS>\n\t\t\t<VERS vnumber=\"17\"> I will scatter them before their enemies like dust blowing in front of a burning east wind. I will turn my back on them and not look favorably on them when disaster strikes them.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> Then some people said, \"Come on! Let us consider how to deal with Jeremiah! There will still be priests to instruct us, wise men to give us advice, and prophets to declare God's word. Come on! Let's bring charges against him and get rid of him! Then we will not need to pay attention to anything he says.\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> Then I said, \"LORD, pay attention to me. Listen to what my enemies are saying.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Should good be paid back with evil? Yet they are virtually digging a pit to kill me. Just remember how I stood before you pleading on their behalf to keep you from venting your anger on them.</VERS>\n\t\t\t<VERS vnumber=\"21\"> So let their children die of starvation. Let them be cut down by the sword. Let their wives lose their husbands and children. Let the older men die of disease and the younger men die by the sword in battle.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Let cries of terror be heard in their houses when you send bands of raiders unexpectedly to plunder them. For they have virtually dug a pit to capture me and have hidden traps for me to step into.</VERS>\n\t\t\t<VERS vnumber=\"23\"> But you, LORD, know all their plots to kill me. Do not pardon their crimes! Do not ignore their sins as though you had erased them! Let them be brought down in defeat before you! Deal with them while you are still angry!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"19\">\n\t\t\t<VERS vnumber=\"1\"> The LORD told Jeremiah, \"Go and buy a clay jar from a potter. Take with you some of the leaders of the people and some of the leaders of the priests. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Go out to the part of the Hinnom Valley which is near the entrance of the Potsherd Gate. Announce there what I tell you.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Say, 'Listen to what the LORD says, you kings of Judah and citizens of Jerusalem! The LORD God of Israel who rules over all says, \"I will bring a disaster on this place that will make the ears of everyone who hears about it ring!</VERS>\n\t\t\t<VERS vnumber=\"4\"> I will do so because these people have rejected me and have defiled this place. They have offered sacrifices in it to other gods which neither they nor their ancestors nor the kings of Judah knew anything about. They have filled it with the blood of innocent children.</VERS>\n\t\t\t<VERS vnumber=\"5\"> They have built places here for worship of the god Baal so that they could sacrifice their children as burnt offerings to him in the fire. Such sacrifices are something I never commanded them to make! They are something I never told them to do! Indeed, such a thing never even entered my mind! </VERS>\n\t\t\t<VERS vnumber=\"6\"> So I, the LORD, say: \"The time will soon come that people will no longer call this place Topheth or the Hinnom Valley. But they will call this valley the Valley of Slaughter! </VERS>\n\t\t\t<VERS vnumber=\"7\"> In this place I will thwart the plans of the people of Judah and Jerusalem. I will deliver them over to the power of their enemies who are seeking to kill them. They will die by the sword at the hands of their enemies. I will make their dead bodies food for the birds and wild beasts to eat. </VERS>\n\t\t\t<VERS vnumber=\"8\"> I will make this city an object of horror, a thing to be hissed at. All who pass by it will be filled with horror and will hiss out their scorn because of all the disasters that have happened to it.</VERS>\n\t\t\t<VERS vnumber=\"9\"> I will reduce the people of this city to desperate straits during the siege imposed on it by their enemies who are seeking to kill them. I will make them so desperate that they will eat the flesh of their own sons and daughters and the flesh of one another.\"'\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> The LORD continued, \"Now break the jar in front of those who have come here with you. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Tell them the LORD who rules over all says, 'I will do just as Jeremiah has done. I will smash this nation and this city as though it were a potter's vessel which is broken beyond repair. The dead will be buried here in Topheth until there is no more room to bury them.'</VERS>\n\t\t\t<VERS vnumber=\"12\"> I, the LORD, say: 'That is how I will deal with this city and its citizens. I will make it like Topheth. </VERS>\n\t\t\t<VERS vnumber=\"13\"> The houses in Jerusalem and the houses of the kings of Judah will be defiled by dead bodies just like this place, Topheth. For they offered sacrifice to the stars and poured out drink offerings to other gods on the roofs of those houses.'\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> Then Jeremiah left Topheth where the LORD had sent him to give that prophecy. He went to the LORD's temple and stood in its courtyard and called out to all the people. </VERS>\n\t\t\t<VERS vnumber=\"15\"> \"The LORD God of Israel who rules over all says, 'I will soon bring on this city and all the towns surrounding it all the disaster I threatened to do to it. I will do so because they have stubbornly refused to pay any attention to what I have said!'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"20\">\n\t\t\t<VERS vnumber=\"1\"> Now Pashhur son of Immer heard Jeremiah prophesy these things. He was the priest who was chief of security in the LORD's temple. </VERS>\n\t\t\t<VERS vnumber=\"2\"> When he heard Jeremiah's prophecy, he had the prophet flogged. Then he put him in the stocks which were at the Upper Gate of Benjamin in the LORD's temple.</VERS>\n\t\t\t<VERS vnumber=\"3\"> But the next day Pashhur released Jeremiah from the stocks. When he did, Jeremiah said to him, \"The LORD's name for you is not 'Pashhur' but 'Terror is Everywhere.'</VERS>\n\t\t\t<VERS vnumber=\"4\"> For the LORD says, 'I will make both you and your friends terrified of what will happen to you. You will see all of them die by the swords of their enemies. I will hand all the people of Judah over to the king of Babylon. He will carry some of them away into exile in Babylon and he will kill others of them with the sword. </VERS>\n\t\t\t<VERS vnumber=\"5\"> I will hand over all the wealth of this city to their enemies. I will hand over to them all the fruits of the labor of the people of this city and all their prized possessions, as well as all the treasures of the kings of Judah. Their enemies will seize it all as plunder and carry it off to Babylon. </VERS>\n\t\t\t<VERS vnumber=\"6\"> You, Pashhur, and all your household will go into exile in Babylon. You will die there and you will be buried there. The same thing will happen to all your friends to whom you have prophesied lies.'\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> LORD, you coerced me into being a prophet, and I allowed you to do it. You overcame my resistance and prevailed over me. Now I have become a constant laughingstock. Everyone ridicules me.</VERS>\n\t\t\t<VERS vnumber=\"8\"> For whenever I prophesy, I must cry out, \"Violence and destruction are coming!\" This message from the LORD has made me an object of continual insults and derision.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Sometimes I think, \"I will make no mention of his message. I will not speak as his messenger any more.\" But then his message becomes like a fire locked up inside of me, burning in my heart and soul. I grow weary of trying to hold it in; I cannot contain it.</VERS>\n\t\t\t<VERS vnumber=\"10\"> I hear many whispering words of intrigue against me. Those who would cause me terror are everywhere! They are saying, \"Come on, let's publicly denounce him!\" All my so-called friends are just watching for something that would lead to my downfall. They say, \"Perhaps he can be enticed into slipping up, so we can prevail over him and get our revenge on him.</VERS>\n\t\t\t<VERS vnumber=\"11\"> But the LORD is with me to help me like an awe-inspiring warrior. Therefore those who persecute me will fail and will not prevail over me. They will be thoroughly disgraced because they did not succeed. Their disgrace will never be forgotten.</VERS>\n\t\t\t<VERS vnumber=\"12\"> O LORD who rules over all, you test and prove the righteous. You see into people's hearts and minds. Pay them back for what they have done because I trust you to vindicate my cause.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Sing to the LORD! Praise the LORD! For he rescues the oppressed from the clutches of evildoers.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Cursed be the day I was born! May that day not be blessed when my mother gave birth to me.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Cursed be the man who made my father very glad when he brought him the news that a baby boy had been born to him!</VERS>\n\t\t\t<VERS vnumber=\"16\"> May that man be like the cities that the LORD destroyed without showing any mercy. May he hear a cry of distress in the morning and a battle cry at noon.</VERS>\n\t\t\t<VERS vnumber=\"17\"> For he did not kill me before I came from the womb, making my pregnant mother's womb my grave forever.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Why did I ever come forth from my mother's womb? All I experience is trouble and grief, and I spend my days in shame.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"21\">\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Jeremiah when King Zedekiah sent to him Pashhur son of Malkijah and the priest Zephaniah son of Maaseiah. Zedekiah sent them to Jeremiah to ask,</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Please ask the LORD to come and help us, because King Nebuchadnezzar of Babylon is attacking us. Maybe the LORD will perform one of his miracles as in times past and make him stop attacking us and leave.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> Jeremiah answered them, \"Tell Zedekiah</VERS>\n\t\t\t<VERS vnumber=\"4\"> that the LORD, the God of Israel, says, 'The forces at your disposal are now outside the walls fighting against King Nebuchadnezzar of Babylon and the Babylonians who have you under siege. I will gather those forces back inside the city.</VERS>\n\t\t\t<VERS vnumber=\"5\"> In anger, in fury, and in wrath I myself will fight against you with my mighty power and great strength!</VERS>\n\t\t\t<VERS vnumber=\"6\"> I will kill everything living in Jerusalem, people and animals alike! They will die from terrible diseases. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Then I, the LORD, promise that I will hand over King Zedekiah of Judah, his officials, and any of the people who survive the war, starvation, and disease. I will hand them over to King Nebuchadnezzar of Babylon and to their enemies who want to kill them. He will slaughter them with the sword. He will not show them any mercy, compassion, or pity.'</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"But tell the people of Jerusalem that the LORD says, 'I will give you a choice between two courses of action. One will result in life; the other will result in death.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Those who stay in this city will die in battle or of starvation or disease. Those who leave the city and surrender to the Babylonians who are besieging it will live. They will escape with their lives.</VERS>\n\t\t\t<VERS vnumber=\"10\"> For I, the LORD, say that I am determined not to deliver this city but to bring disaster on it. It will be handed over to the king of Babylon and he will destroy it with fire.'\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> The LORD told me to say to the royal court of Judah, \"Listen to what the LORD says,</VERS>\n\t\t\t<VERS vnumber=\"12\"> O royal family descended from David. The LORD says: 'See to it that people each day are judged fairly. Deliver those who have been robbed from those who oppress them. Otherwise, my wrath will blaze out against you. It will burn like a fire that cannot be put out because of the evil that you have done.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Listen, you who sit enthroned above the valley on a rocky plateau. I am opposed to you,' says the LORD. 'You boast, \"No one can swoop down on us. No one can penetrate into our places of refuge.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> But I will punish you as your deeds deserve,' says the LORD. 'I will set fire to your palace; it will burn up everything around it.'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"22\">\n\t\t\t<VERS vnumber=\"1\"> The LORD told me, \"Go down to the palace of the king of Judah. Give him a message from me there.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Say: 'Listen, O king of Judah who follows in David's succession. You, your officials, and your subjects who pass through the gates of this palace must listen to what the LORD says.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The LORD says, \"Do what is just and right. Deliver those who have been robbed from those who oppress them. Do not exploit or mistreat foreigners who live in your land, children who have no fathers, or widows. Do not kill innocent people in this land. </VERS>\n\t\t\t<VERS vnumber=\"4\"> If you are careful to obey these commands, then the kings who follow in David's succession and ride in chariots or on horses will continue to come through the gates of this palace, as will their officials and their subjects.</VERS>\n\t\t\t<VERS vnumber=\"5\"> But, if you do not obey these commands, I solemnly swear that this palace will become a pile of rubble. I, the LORD, affirm it!\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"'For the LORD says concerning the palace of the king of Judah, \"This place looks like a veritable forest of Gilead to me. It is like the wooded heights of Lebanon in my eyes. But I swear that I will make it like a wilderness whose towns have all been deserted.</VERS>\n\t\t\t<VERS vnumber=\"7\"> I will send men against it to destroy it with their axes and hatchets. They will hack up its fine cedar panels and columns and throw them into the fire.</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"'People from other nations will pass by this city. They will ask one another, \"Why has the LORD done such a thing to this great city?\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> The answer will come back, \"It is because they broke their covenant with the LORD their God and worshiped and served other gods.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"'Do not weep for the king who was killed. Do not grieve for him. But weep mournfully for the king who has gone into exile. For he will never return to see his native land again.</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"'For the LORD has spoken about Shallum son of Josiah, who succeeded his father as king of Judah but was carried off into exile. He has said, \"He will never return to this land.</VERS>\n\t\t\t<VERS vnumber=\"12\"> For he will die in the country where they took him as a captive. He will never see this land again.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"'Sure to be judged is the king who builds his palace using injustice and treats people unfairly while adding its upper rooms. He makes his countrymen work for him for nothing. He does not pay them for their labor.</VERS>\n\t\t\t<VERS vnumber=\"14\"> He says, \"I will build myself a large palace with spacious upper rooms.\" He cuts windows in its walls, panels it with cedar, and paints its rooms red.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Does it make you any more of a king that you outstrip everyone else in building with cedar? Just think about your father. He was content that he had food and drink. He did what was just and right. So things went well with him.</VERS>\n\t\t\t<VERS vnumber=\"16\"> He upheld the cause of the poor and needy. So things went well for Judah.' The LORD says, 'That is a good example of what it means to know me.'</VERS>\n\t\t\t<VERS vnumber=\"17\"> But you are always thinking and looking for ways to increase your wealth by dishonest means. Your eyes and your heart are set on killing some innocent person and committing fraud and oppression.</VERS>\n\t\t\t<VERS vnumber=\"18\"> So the LORD has this to say about Josiah's son, King Jehoiakim of Judah: People will not mourn for him, saying, \"This makes me sad, my brother! This makes me sad, my sister!\" They will not mourn for him, saying, \"Poor, poor lord! Poor, poor majesty!\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> He will be left unburied just like a dead donkey. His body will be dragged off and thrown outside the gates of Jerusalem.'\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> People of Jerusalem, go up to Lebanon and cry out in mourning. Go to the land of Bashan and cry out loudly. Cry out in mourning from the mountains of Moab. For your allies have all been defeated.</VERS>\n\t\t\t<VERS vnumber=\"21\"> While you were feeling secure I gave you warning. But you said, \"I refuse to listen to you.\" That is the way you have acted from your earliest history onward. Indeed, you have never paid attention to me.</VERS>\n\t\t\t<VERS vnumber=\"22\"> My judgment will carry off all your leaders like a storm wind! Your allies will go into captivity. Then you will certainly be disgraced and put to shame because of all the wickedness you have done.</VERS>\n\t\t\t<VERS vnumber=\"23\"> You may feel as secure as a bird nesting in the cedars of Lebanon. But oh how you will groan when the pains of judgment come on you. They will be like those of a woman giving birth to a baby.</VERS>\n\t\t\t<VERS vnumber=\"24\"> The LORD says, \"As surely as I am the living God, you, Jeconiah, king of Judah, son of Jehoiakim, will not be the earthly representative of my authority. Indeed, I will take that right away from you.</VERS>\n\t\t\t<VERS vnumber=\"25\"> I will hand you over to those who want to take your life and of whom you are afraid. I will hand you over to King Nebuchadnezzar of Babylon and his Babylonian soldiers. </VERS>\n\t\t\t<VERS vnumber=\"26\"> I will force you and your mother who gave you birth into exile. You will be exiled to a country where neither of you were born, and you will both die there. </VERS>\n\t\t\t<VERS vnumber=\"27\"> You will never come back to this land to which you will long to return!\"</VERS>\n\t\t\t<VERS vnumber=\"28\"> This man, Jeconiah, will be like a broken pot someone threw away. He will be like a clay vessel that no one wants. Why will he and his children be forced into exile? Why will they be thrown out into a country they know nothing about?</VERS>\n\t\t\t<VERS vnumber=\"29\"> O land of Judah, land of Judah, land of Judah! Listen to what the LORD has to say!</VERS>\n\t\t\t<VERS vnumber=\"30\"> The LORD says, \"Enroll this man in the register as though he were childless. Enroll him as a man who will not enjoy success during his lifetime. For none of his sons will succeed in occupying the throne of David or ever succeed in ruling over Judah.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"23\">\n\t\t\t<VERS vnumber=\"1\"> The LORD says, \"The leaders of my people are sure to be judged. They were supposed to watch over my people like shepherds watch over their sheep. But they are causing my people to be destroyed and scattered.</VERS>\n\t\t\t<VERS vnumber=\"2\"> So the LORD God of Israel has this to say about the leaders who are ruling over his people: \"You have caused my people to be dispersed and driven into exile. You have not taken care of them. So I will punish you for the evil that you have done. I, the LORD, affirm it!</VERS>\n\t\t\t<VERS vnumber=\"3\"> Then I myself will regather those of my people who are still alive from all the countries where I have driven them. I will bring them back to their homeland. They will greatly increase in number. </VERS>\n\t\t\t<VERS vnumber=\"4\"> I will install rulers over them who will care for them. Then they will no longer need to fear or be terrified. None of them will turn up missing. I, the LORD, promise it!</VERS>\n\t\t\t<VERS vnumber=\"5\"> \"I, the LORD, promise that a new time will certainly come when I will raise up for them a righteous branch, a descendant of David. He will rule over them with wisdom and understanding and will do what is just and right in the land.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Under his rule Judah will enjoy safety and Israel will live in security. This is the name he will go by: 'The LORD has provided us with justice.'</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"So I, the LORD, say: 'A new time will certainly come. People now affirm their oaths with \"I swear as surely as the LORD lives who delivered the people of Israel out of Egypt.\" </VERS>\n\t\t\t<VERS vnumber=\"8\"> But at that time they will affirm them with \"I swear as surely as the LORD lives who delivered the descendants of the former nation of Israel from the land of the north and from all the other lands where he had banished them.\" At that time they will live in their own land.'\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> Here is what the LORD says concerning the false prophets: My heart and my mind are deeply disturbed. I tremble all over. I am like a drunk person, like a person who has had too much wine, because of the way the LORD and his holy word are being mistreated.</VERS>\n\t\t\t<VERS vnumber=\"10\"> For the land is full of people unfaithful to him. They live wicked lives and they misuse their power. So the land is dried up because it is under his curse. The pastures in the wilderness are withered.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Moreover, the LORD says, \"Both the prophets and priests are godless. I have even found them doing evil in my temple!</VERS>\n\t\t\t<VERS vnumber=\"12\"> So the paths they follow will be dark and slippery. They will stumble and fall headlong. For I will bring disaster on them. A day of reckoning is coming for them.\" The LORD affirms it!</VERS>\n\t\t\t<VERS vnumber=\"13\"> The LORD says, \"I saw the prophets of Samaria doing something that was disgusting. They prophesied in the name of the god Baal and led my people Israel astray.</VERS>\n\t\t\t<VERS vnumber=\"14\"> But I see the prophets of Jerusalem doing something just as shocking. They are unfaithful to me and continually prophesy lies. So they give encouragement to people who are doing evil, with the result that they do not stop their evildoing. I consider all of them as bad as the people of Sodom, and the citizens of Jerusalem as bad as the people of Gomorrah.</VERS>\n\t\t\t<VERS vnumber=\"15\"> So then I, the LORD who rules over all, have something to say concerning the prophets of Jerusalem: 'I will make these prophets eat the bitter food of suffering and drink the poison water of judgment. For the prophets of Jerusalem are the reason that ungodliness has spread throughout the land.'\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> The LORD who rules over all says to the people of Jerusalem: \"Do not listen to what those prophets are saying to you. They are filling you with false hopes. They are reporting visions of their own imaginations, not something the LORD has given them to say.</VERS>\n\t\t\t<VERS vnumber=\"17\"> They continually say to those who reject what the LORD has said, 'Things will go well for you!' They say to all those who follow the stubborn inclinations of their own hearts, 'Nothing bad will happen to you!'</VERS>\n\t\t\t<VERS vnumber=\"18\"> Yet which of them has ever stood in the LORD's inner circle so they could see and hear what he has to say? Which of them have ever paid attention or listened to what he has said?</VERS>\n\t\t\t<VERS vnumber=\"19\"> But just watch! The wrath of the LORD will come like a storm! Like a raging storm it will rage down on the heads of those who are wicked.</VERS>\n\t\t\t<VERS vnumber=\"20\"> The anger of the LORD will not turn back until he has fully carried out his intended purposes. In days to come you people will come to understand this clearly.</VERS>\n\t\t\t<VERS vnumber=\"21\"> I did not send those prophets. Yet they were in a hurry to give their message. I did not tell them anything. Yet they prophesied anyway.</VERS>\n\t\t\t<VERS vnumber=\"22\"> But if they had stood in my inner circle, they would have proclaimed my message to my people. They would have caused my people to turn from their wicked ways and stop doing the evil things they are doing.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Do you people think that I am some local deity and not the transcendent God?\" the LORD asks.</VERS>\n\t\t\t<VERS vnumber=\"24\"> \"Do you really think anyone can hide himself where I cannot see him?\" the LORD asks. \"Do you not know that I am everywhere?\" the LORD asks.</VERS>\n\t\t\t<VERS vnumber=\"25\"> The LORD says, \"I have heard what those prophets who are prophesying lies in my name are saying. They are saying, 'I have had a dream! I have had a dream!'</VERS>\n\t\t\t<VERS vnumber=\"26\"> Those prophets are just prophesying lies. They are prophesying the delusions of their own minds.</VERS>\n\t\t\t<VERS vnumber=\"27\"> How long will they go on plotting to make my people forget who I am through the dreams they tell one another? That is just as bad as what their ancestors did when they forgot who I am by worshiping the god Baal.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Let the prophet who has had a dream go ahead and tell his dream. Let the person who has received my message report that message faithfully. What is like straw cannot compare to what is like grain! I, the LORD, affirm it!</VERS>\n\t\t\t<VERS vnumber=\"29\"> My message is like a fire that purges dross! It is like a hammer that breaks a rock in pieces! I, the LORD, so affirm it!</VERS>\n\t\t\t<VERS vnumber=\"30\"> So I, the LORD, affirm that I am opposed to those prophets who steal messages from one another that they claim are from me.</VERS>\n\t\t\t<VERS vnumber=\"31\"> I, the LORD, AFFIRM that I am opposed to those prophets who are using their own tongues to declare, 'The LORD declares,.'</VERS>\n\t\t\t<VERS vnumber=\"32\"> I, the LORD, affirm that I am opposed to those prophets who dream up lies and report them. They are misleading my people with their reckless lies. I did not send them. I did not commission them. They are not helping these people at all. I, the LORD, affirm it!\"</VERS>\n\t\t\t<VERS vnumber=\"33\"> The LORD said to me, \"Jeremiah, when one of these people, or a prophet, or a priest asks you, 'What burdensome message do you have from the LORD?' Tell them, 'You are the burden, and I will cast you away. I, the LORD, affirm it!</VERS>\n\t\t\t<VERS vnumber=\"34\"> I will punish any prophet, priest, or other person who says \"The LORD's message is burdensome.\" I will punish both that person and his whole family.'\"</VERS>\n\t\t\t<VERS vnumber=\"35\"> So I, Jeremiah, tell you, \"Each of you people should say to his friend or his relative, 'How did the LORD answer? Or what did the LORD say?'</VERS>\n\t\t\t<VERS vnumber=\"36\"> You must no longer say that the LORD's message is burdensome. For what is 'burdensome' really pertains to what a person himself says. You are misrepresenting the words of our God, the living God, the LORD who rules over all.</VERS>\n\t\t\t<VERS vnumber=\"37\"> Each of you should merely ask the prophet, 'What answer did the LORD give you? Or what did the LORD say?'</VERS>\n\t\t\t<VERS vnumber=\"38\"> But just suppose you continue to say, 'The message of the LORD is burdensome.' Here is what the LORD says will happen: 'I sent word to you that you must not say, \"The LORD's message is burdensome.\" But you used the words \"The LORD's message is burdensome\" anyway.</VERS>\n\t\t\t<VERS vnumber=\"39\"> So I will carry you far off and throw you away. I will send both you and the city I gave to you and to your ancestors out of my sight.</VERS>\n\t\t\t<VERS vnumber=\"40\"> I will bring on you lasting shame and lasting disgrace which will never be forgotten!'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"24\">\n\t\t\t<VERS vnumber=\"1\"> The LORD showed me two baskets of figs sitting before his temple. This happened after King Nebuchadnezzar of Babylon deported Jehoiakim's son, King Jeconiah of Judah. He deported him and the leaders of Judah, along with the craftsmen and metal workers, and took them to Babylon.</VERS>\n\t\t\t<VERS vnumber=\"2\"> One basket had very good-looking figs in it. They looked like those that had ripened early. The other basket had very bad-looking figs in it, so bad they could not be eaten. </VERS>\n\t\t\t<VERS vnumber=\"3\"> The LORD said to me, \"What do you see, Jeremiah?\" I answered, \"I see figs. The good ones look very good. But the bad ones look very bad, so bad that they cannot be eaten.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> The LORD said to me,</VERS>\n\t\t\t<VERS vnumber=\"5\"> \"I, the LORD, the God of Israel, say: 'The exiles whom I sent away from here to the land of Babylon are like those good figs. I consider them to be good. </VERS>\n\t\t\t<VERS vnumber=\"6\"> I will look after their welfare and will restore them to this land. There I will build them up and will not tear them down. I will plant them firmly in the land and will not uproot them.</VERS>\n\t\t\t<VERS vnumber=\"7\"> I will give them the desire to acknowledge that I am the LORD. I will be their God and they will be my people. For they will wholeheartedly return to me.'</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"I, the LORD, also solemnly assert: 'King Zedekiah of Judah, his officials, and the people who remain in Jerusalem or who have gone to live in Egypt are like those bad figs. I consider them to be just like those bad figs that are so bad they cannot be eaten.</VERS>\n\t\t\t<VERS vnumber=\"9\"> I will bring such disaster on them that all the kingdoms of the earth will be horrified. I will make them an object of reproach, a proverbial example of disaster. I will make them an object of ridicule, an example to be used in curses. That is how they will be remembered wherever I banish them.</VERS>\n\t\t\t<VERS vnumber=\"10\"> I will bring war, starvation, and disease on them until they are completely destroyed from the land I gave them and their ancestors.'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"25\">\n\t\t\t<VERS vnumber=\"1\"> In the fourth year that Jehoiakim son of Josiah was king of Judah, the LORD spoke to Jeremiah concerning all the people of Judah. (That was the same as the first year that Nebuchadnezzar was king of Babylon.)</VERS>\n\t\t\t<VERS vnumber=\"2\"> So the prophet Jeremiah spoke to all the people of Judah and to all the people who were living in Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"3\"> \"For the last twenty-three years, from the thirteenth year that Josiah son of Amon was ruling in Judah until now, the LORD has been speaking to me. I told you over and over again what he said. But you would not listen. </VERS>\n\t\t\t<VERS vnumber=\"4\"> Over and over again the LORD has sent his servants the prophets to you. But you have not listened or paid attention.</VERS>\n\t\t\t<VERS vnumber=\"5\"> He said through them, 'Each of you must turn from your wicked ways and stop doing the evil things you are doing. If you do, I will allow you to continue to live here in the land that I gave to you and your ancestors as a lasting possession.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Do not pay allegiance to other gods and worship and serve them. Do not make me angry by the things that you do. Then I will not cause you any harm.' </VERS>\n\t\t\t<VERS vnumber=\"7\"> So, now the LORD says, 'You have not listened to me. But you have made me angry by the things that you have done. Thus you have brought harm on yourselves.'</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"Therefore, the LORD who rules over all says, 'You have not listened to what I said.</VERS>\n\t\t\t<VERS vnumber=\"9\"> So I, the LORD, affirm that I will send for all the peoples of the north and my servant, King Nebuchadnezzar of Babylon. I will bring them against this land and its inhabitants and all the nations that surround it. I will utterly destroy this land, its inhabitants, and all the nations that surround it and make them everlasting ruins. I will make them objects of horror and hissing scorn.</VERS>\n\t\t\t<VERS vnumber=\"10\"> I will put an end to the sounds of joy and gladness, to the glad celebration of brides and grooms in these lands. I will put an end to the sound of people grinding meal. I will put an end to lamps shining in their houses.</VERS>\n\t\t\t<VERS vnumber=\"11\"> This whole area will become a desolate wasteland. These nations will be subject to the king of Babylon for seventy years.'</VERS>\n\t\t\t<VERS vnumber=\"12\"> \"'But when the seventy years are over, I will punish the king of Babylon and his nation for their sins. I will make the land of Babylon an everlasting ruin. I, the LORD, affirm it!</VERS>\n\t\t\t<VERS vnumber=\"13\"> I will bring on that land everything that I said I would. I will bring on it everything that is written in this book. I will bring on it everything that Jeremiah has prophesied against all the nations.</VERS>\n\t\t\t<VERS vnumber=\"14\"> For many nations and great kings will make slaves of the king of Babylon and his nation too. I will repay them for all they have done!'\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> So the LORD, the God of Israel, spoke to me in a vision. \"Take this cup from my hand. It is filled with the wine of my wrath. Take it and make the nations to whom I send you drink it. </VERS>\n\t\t\t<VERS vnumber=\"16\"> When they have drunk it, they will stagger to and fro and act insane. For I will send wars sweeping through them.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> So I took the cup from the LORD's hand. I made all the nations to whom he sent me drink the wine of his wrath.</VERS>\n\t\t\t<VERS vnumber=\"18\"> I made Jerusalem and the cities of Judah, its kings and its officials drink it. I did it so Judah would become a ruin. I did it so Judah, its kings, and its officials would become an object of horror and of hissing scorn, an example used in curses. Such is already becoming the case!</VERS>\n\t\t\t<VERS vnumber=\"19\"> I made all of these other people drink it: Pharaoh, king of Egypt; his attendants, his officials, his people, </VERS>\n\t\t\t<VERS vnumber=\"20\"> the foreigners living in Egypt; all the kings of the land of Uz; all the kings of the land of the Philistines, the people of Ashkelon, Gaza, Ekron, the people who had been left alive from Ashdod;</VERS>\n\t\t\t<VERS vnumber=\"21\"> all the people of Edom, Moab, Ammon;</VERS>\n\t\t\t<VERS vnumber=\"22\"> all the kings of Tyre, all the kings of Sidon; all the kings of the coastlands along the sea;</VERS>\n\t\t\t<VERS vnumber=\"23\"> the people of Dedan, Tema, Buz, all the desert people who cut their hair short at the temples;</VERS>\n\t\t\t<VERS vnumber=\"24\"> all the kings of Arabia who live in the desert; </VERS>\n\t\t\t<VERS vnumber=\"25\"> all the kings of Zimri; all the kings of Elam; all the kings of Media;</VERS>\n\t\t\t<VERS vnumber=\"26\"> all the kings of the north, whether near or far from one another; and all the other kingdoms which are on the face of the earth. After all of them have drunk the wine of the LORD's wrath, the king of Babylon must drink it.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Then the LORD said to me, \"Tell them that the LORD God of Israel who rules over all says, 'Drink this cup until you get drunk and vomit. Drink until you fall down and can't get up. For I will send wars sweeping through you.'</VERS>\n\t\t\t<VERS vnumber=\"28\"> If they refuse to take the cup from your hand and drink it, tell them that the LORD who rules over all says 'You most certainly must drink it!</VERS>\n\t\t\t<VERS vnumber=\"29\"> For take note, I am already beginning to bring disaster on the city that I call my own. So how can you possibly avoid being punished? You will not go unpunished! For I am proclaiming war against all who live on the earth. I, the LORD who rules over all, affirm it!'</VERS>\n\t\t\t<VERS vnumber=\"30\"> \"Then, Jeremiah, make the following prophecy against them: 'Like a lion about to attack, the LORD will roar from the heights of heaven; from his holy dwelling on high he will roar loudly. He will roar mightily against his land. He will shout in triumph like those stomping juice from the grapes against all those who live on the earth.</VERS>\n\t\t\t<VERS vnumber=\"31\"> The sounds of battle will resound to the ends of the earth. For the LORD will bring charges against the nations. He will pass judgment on all humankind and will hand the wicked over to be killed in war.' The LORD so affirms it!</VERS>\n\t\t\t<VERS vnumber=\"32\"> The LORD who rules over all says, 'Disaster will soon come on one nation after another. A mighty storm of military destruction is rising up from the distant parts of the earth.'</VERS>\n\t\t\t<VERS vnumber=\"33\"> Those who have been killed by the LORD at that time will be scattered from one end of the earth to the other. They will not be mourned over, gathered up, or buried. Their dead bodies will lie scattered over the ground like manure.</VERS>\n\t\t\t<VERS vnumber=\"34\"> Wail and cry out in anguish, you rulers! Roll in the dust, you who shepherd flocks of people! The time for you to be slaughtered has come. You will lie scattered and fallen like broken pieces of fine pottery.</VERS>\n\t\t\t<VERS vnumber=\"35\"> The leaders will not be able to run away and hide. The shepherds of the flocks will not be able to escape.</VERS>\n\t\t\t<VERS vnumber=\"36\"> Listen to the cries of anguish of the leaders. Listen to the wails of the shepherds of the flocks. They are wailing because the LORD is about to destroy their lands.</VERS>\n\t\t\t<VERS vnumber=\"37\"> Their peaceful dwelling places will be laid waste by the fierce anger of the LORD.</VERS>\n\t\t\t<VERS vnumber=\"38\"> The LORD is like a lion who has left his lair. So their lands will certainly be laid waste by the warfare of the oppressive nation and by the fierce anger of the LORD.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"26\">\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Jeremiah at the beginning of the reign of Josiah's son, King Jehoiakim of Judah. </VERS>\n\t\t\t<VERS vnumber=\"2\"> The LORD said, \"Go stand in the courtyard of the LORD's temple. Speak out to all the people who are coming from the towns of Judah to worship in the LORD's temple. Tell them everything I command you to tell them. Do not leave out a single word! </VERS>\n\t\t\t<VERS vnumber=\"3\"> Maybe they will pay attention and each of them will stop living the evil way they do. If they do that, then I will forgo destroying them as I had intended to do because of the wicked things they have been doing.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Tell them that the LORD says, 'You must obey me! You must live according to the way I have instructed you in my laws.</VERS>\n\t\t\t<VERS vnumber=\"5\"> You must pay attention to the exhortations of my servants the prophets. I have sent them to you over and over again. But you have not paid any attention to them. </VERS>\n\t\t\t<VERS vnumber=\"6\"> If you do not obey me, then I will do to this temple what I did to Shiloh. And I will make this city an example to be used in curses by people from all the nations on the earth.'\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> The priests, the prophets, and all the people heard Jeremiah say these things in the LORD's temple.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Jeremiah had just barely finished saying all the LORD had commanded him to say to all the people. All at once some of the priests, the prophets, and the people grabbed him and shouted, \"You deserve to die!</VERS>\n\t\t\t<VERS vnumber=\"9\"> How dare you claim the LORD's authority to prophesy such things! How dare you claim his authority to prophesy that this temple will become like Shiloh and that this city will become an uninhabited ruin!\" Then all the people crowded around Jeremiah.</VERS>\n\t\t\t<VERS vnumber=\"10\"> However, some of the officials of Judah heard about what was happening and they rushed up to the LORD's temple from the royal palace. They set up court at the entrance of the New Gate of the LORD's temple.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Then the priests and the prophets made their charges before the officials and all the people. They said, \"This man should be condemned to die because he prophesied against this city. You have heard him do so with your own ears.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> Then Jeremiah made his defense before all the officials and all the people. \"The LORD sent me to prophesy everything you have heard me say against this temple and against this city. </VERS>\n\t\t\t<VERS vnumber=\"13\"> But correct the way you have been living and do what is right. Obey the LORD your God. If you do, the LORD will forgo destroying you as he threatened he would.</VERS>\n\t\t\t<VERS vnumber=\"14\"> As to my case, I am in your power. Do to me what you deem fair and proper. </VERS>\n\t\t\t<VERS vnumber=\"15\"> But you should take careful note of this: If you put me to death, you will bring on yourselves and this city and those who live in it the guilt of murdering an innocent man. For the LORD has sent me to speak all this where you can hear it. That is the truth!\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> Then the officials and all the people rendered their verdict to the priests and the prophets. They said, \"This man should not be condemned to die. For he has spoken to us under the authority of the LORD our God.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> Then some of the elders of Judah stepped forward and spoke to all the people gathered there. They said, </VERS>\n\t\t\t<VERS vnumber=\"18\"> \"Micah from Moresheth prophesied during the time Hezekiah was king of Judah. He told all the people of Judah, 'The LORD who rules over all says, \"Zion will become a plowed field. Jerusalem will become a pile of rubble. The temple mount will become a mere wooded ridge.\"'</VERS>\n\t\t\t<VERS vnumber=\"19\"> King Hezekiah and all the people of Judah did not put him to death, did they? Did not Hezekiah show reverence for the LORD and seek the LORD's favor? Did not the LORD forgo destroying them as he threatened he would? But we are on the verge of bringing great disaster on ourselves.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> Now there was another man who prophesied as the LORD's representative against this city and this land just as Jeremiah did. His name was Uriah son of Shemaiah from Kiriath Jearim.</VERS>\n\t\t\t<VERS vnumber=\"21\"> When the king and all his bodyguards and officials heard what he was prophesying, the king sought to have him executed. But Uriah found out about it and fled to Egypt out of fear.</VERS>\n\t\t\t<VERS vnumber=\"22\"> However, King Jehoiakim sent some men to Egypt, including Elnathan son of Achbor,</VERS>\n\t\t\t<VERS vnumber=\"23\"> and they brought Uriah back from there. They took him to King Jehoiakim, who had him executed and had his body thrown into the burial place of the common people.</VERS>\n\t\t\t<VERS vnumber=\"24\"> However, Ahikam son of Shaphan used his influence to keep Jeremiah from being handed over and executed by the people.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"27\">\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Jeremiah early in the reign of Josiah's son, King Zedekiah of Judah.</VERS>\n\t\t\t<VERS vnumber=\"2\"> The LORD told me, \"Make a yoke out of leather straps and wooden crossbars and put it on your neck. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Use it to send messages to the kings of Edom, Moab, Ammon, Tyre, and Sidon. Send them through the envoys who have come to Jerusalem to King Zedekiah of Judah.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Charge them to give their masters a message from me. Tell them, 'The LORD God of Israel who rules over all says to give your masters this message.</VERS>\n\t\t\t<VERS vnumber=\"5\"> \"I made the earth and the people and animals on it by my mighty power and great strength, and I give it to whomever I see fit.</VERS>\n\t\t\t<VERS vnumber=\"6\"> I have at this time placed all these nations of yours under the power of my servant, King Nebuchadnezzar of Babylon. I have even made all the wild animals subject to him.</VERS>\n\t\t\t<VERS vnumber=\"7\"> All nations must serve him and his son and grandson until the time comes for his own nation to fall. Then many nations and great kings will in turn subjugate Babylon.</VERS>\n\t\t\t<VERS vnumber=\"8\"> But suppose a nation or a kingdom will not be subject to King Nebuchadnezzar of Babylon. Suppose it will not submit to the yoke of servitude to him. I, the LORD, affirm that I will punish that nation. I will use the king of Babylon to punish it with war, starvation, and disease until I have destroyed it.</VERS>\n\t\t\t<VERS vnumber=\"9\"> So do not listen to your prophets or to those who claim to predict the future by divination, by dreams, by consulting the dead, or by practicing magic. They keep telling you, 'You do not need to be subject to the king of Babylon.' </VERS>\n\t\t\t<VERS vnumber=\"10\"> Do not listen to them, because their prophecies are lies. Listening to them will only cause you to be taken far away from your native land. I will drive you out of your country and you will die in exile.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Things will go better for the nation that submits to the yoke of servitude to the king of Babylon and is subject to him. I will leave that nation in its native land. Its people can continue to farm it and live in it. I, the LORD, affirm it!\"'\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> I told King Zedekiah of Judah the same thing. I said, \"Submit to the yoke of servitude to the king of Babylon. Be subject to him and his people. Then you will continue to live. </VERS>\n\t\t\t<VERS vnumber=\"13\"> There is no reason why you and your people should die in war or from starvation or disease! That's what the LORD says will happen to any nation that will not be subject to the king of Babylon. </VERS>\n\t\t\t<VERS vnumber=\"14\"> Do not listen to the prophets who are telling you that you do not need to serve the king of Babylon. For they are prophesying lies to you. </VERS>\n\t\t\t<VERS vnumber=\"15\"> For I, the LORD, affirm that I did not send them. They are prophesying lies to you. If you listen to them, I will drive you and the prophets who are prophesying lies out of the land and you will all die in exile.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> I also told the priests and all the people, \"The LORD says, 'Do not listen to what your prophets are saying. They are prophesying to you that the valuable articles taken from the LORD's temple will be brought back from Babylon very soon. But they are prophesying a lie to you. </VERS>\n\t\t\t<VERS vnumber=\"17\"> Do not listen to them. Be subject to the king of Babylon. Then you will continue to live. Why should this city be made a pile of rubble?'\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> I also told them, \"If they are really prophets and the LORD is speaking to them, let them pray earnestly to the LORD who rules over all. Let them plead with him not to let the valuable articles that are still left in the LORD's temple, in the royal palace, and in Jerusalem be taken away to Babylon. </VERS>\n\t\t\t<VERS vnumber=\"19\"> For the LORD who rules over all has already spoken about the two bronze pillars, the large bronze basin called 'The Sea,' and the movable bronze stands. He has already spoken about the rest of the valuable articles that are left in this city. </VERS>\n\t\t\t<VERS vnumber=\"20\"> He has already spoken about these things that King Nebuchadnezzar of Babylon did not take away when he carried Jehoiakim's son King Jeconiah of Judah and the nobles of Judah and Jerusalem away as captives.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Indeed, the LORD God of Israel who rules over all has already spoken about the valuable articles that are left in the LORD's temple, in the royal palace of Judah, and in Jerusalem. </VERS>\n\t\t\t<VERS vnumber=\"22\"> He has said, 'They will be carried off to Babylon. They will remain there until it is time for me to show consideration for them again. Then I will bring them back and restore them to this place.' I, the LORD, affirm this!\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"28\">\n\t\t\t<VERS vnumber=\"1\"> The following events occurred in that same year, early in the reign of King Zedekiah of Judah. To be more precise, it was the fifth month of the fourth year of his reign. The prophet Hananiah son of Azzur, who was from Gibeon, spoke to Jeremiah in the LORD's temple in the presence of the priests and all the people.</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"The LORD God of Israel who rules over all says, 'I will break the yoke of servitude to the king of Babylon. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Before two years are over, I will bring back to this place everything that King Nebuchadnezzar of Babylon took from it and carried away to Babylon.</VERS>\n\t\t\t<VERS vnumber=\"4\"> I will also bring back to this place Jehoiakim's son King Jeconiah of Judah and all the exiles who were taken to Babylon.' Indeed, the LORD affirms, 'I will break the yoke of servitude to the king of Babylon.'\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> Then the prophet Jeremiah responded to the prophet Hananiah in the presence of the priests and all the people who were standing in the LORD's temple.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The prophet Jeremiah said, \"Amen! May the LORD do all this! May the LORD make your prophecy come true! May he bring back to this place from Babylon all the valuable articles taken from the LORD's temple and the people who were carried into exile.</VERS>\n\t\t\t<VERS vnumber=\"7\"> But listen to what I say to you and to all these people.</VERS>\n\t\t\t<VERS vnumber=\"8\"> From earliest times, the prophets who preceded you and me invariably prophesied war, disaster, and plagues against many countries and great kingdoms. </VERS>\n\t\t\t<VERS vnumber=\"9\"> So if a prophet prophesied peace and prosperity, it was only known that the LORD truly sent him when what he prophesied came true.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> The prophet Hananiah then took the yoke off the prophet Jeremiah's neck and broke it.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Then he spoke up in the presence of all the people. \"The LORD says, 'In the same way I will break the yoke of servitude of all the nations to King Nebuchadnezzar of Babylon before two years are over.'\" After he heard this, the prophet Jeremiah departed and went on his way.</VERS>\n\t\t\t<VERS vnumber=\"12\"> But shortly after the prophet Hananiah had broken the yoke off the prophet Jeremiah's neck, the LORD spoke to Jeremiah.</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"Go and tell Hananiah that the LORD says, 'You have indeed broken the wooden yoke. But you have only succeeded in replacing it with an iron one!</VERS>\n\t\t\t<VERS vnumber=\"14\"> For the LORD God of Israel who rules over all says, \"I have put an irresistible yoke of servitude on all these nations so they will serve King Nebuchadnezzar of Babylon. And they will indeed serve him. I have even given him control over the wild animals.\"'\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> Then the prophet Jeremiah told the prophet Hananiah, \"Listen, Hananiah! The LORD did not send you! You are making these people trust in a lie!</VERS>\n\t\t\t<VERS vnumber=\"16\"> So the LORD says, 'I will most assuredly remove you from the face of the earth. You will die this very year because you have counseled rebellion against the LORD.'\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> In the seventh month of that very same year the prophet Hananiah died.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"29\">\n\t\t\t<VERS vnumber=\"1\"> The prophet Jeremiah sent a letter to the exiles Nebuchadnezzar had carried off from Jerusalem to Babylon. It was addressed to the elders who were left among the exiles, to the priests, to the prophets, and to all the other people who were exiled in Babylon.</VERS>\n\t\t\t<VERS vnumber=\"2\"> He sent it after King Jeconiah, the queen mother, the palace officials, the leaders of Judah and Jerusalem, the craftsmen, and the metal workers had been exiled from Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"3\"> He sent it with Elasah son of Shaphan and Gemariah son of Hilkiah. King Zedekiah of Judah had sent these men to Babylon to King Nebuchadnezzar of Babylon. The letter said:</VERS>\n\t\t\t<VERS vnumber=\"4\"> \"The LORD God of Israel who rules over all says to all those he sent into exile to Babylon from Jerusalem,</VERS>\n\t\t\t<VERS vnumber=\"5\"> 'Build houses and settle down. Plant gardens and eat what they produce.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Marry and have sons and daughters. Find wives for your sons and allow your daughters get married so that they too can have sons and daughters. Grow in number; do not dwindle away.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Work to see that the city where I sent you as exiles enjoys peace and prosperity. Pray to the LORD for it. For as it prospers you will prosper.'</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"For the LORD God of Israel who rules over all says, 'Do not let the prophets or those among you who claim to be able to predict the future by divination deceive you. And do not pay any attention to the dreams that you are encouraging them to dream. </VERS>\n\t\t\t<VERS vnumber=\"9\"> They are prophesying lies to you and claiming my authority to do so. But I did not send them. I, the LORD, affirm it!'</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"For the LORD says, 'Only when the seventy years of Babylonian rule are over will I again take up consideration for you. Then I will fulfill my gracious promise to you and restore you to your homeland.</VERS>\n\t\t\t<VERS vnumber=\"11\"> For I know what I have planned for you,' says the LORD. 'I have plans to prosper you, not to harm you. I have plans to give you a future filled with hope.</VERS>\n\t\t\t<VERS vnumber=\"12\"> When you call out to me and come to me in prayer, I will hear your prayers.</VERS>\n\t\t\t<VERS vnumber=\"13\"> When you seek me in prayer and worship, you will find me available to you. If you seek me with all your heart and soul,</VERS>\n\t\t\t<VERS vnumber=\"14\"> I will make myself available to you,' says the LORD. 'Then I will reverse your plight and will regather you from all the nations and all the places where I have exiled you,' says the LORD. 'I will bring you back to the place from which I exiled you.'</VERS>\n\t\t\t<VERS vnumber=\"15\"> \"You say, 'The LORD has raised up prophets of good news for us here in Babylon.' </VERS>\n\t\t\t<VERS vnumber=\"16\"> But just listen to what the LORD has to say about the king who occupies David's throne and all your fellow countrymen who are still living in this city of Jerusalem and were not carried off into exile with you. </VERS>\n\t\t\t<VERS vnumber=\"17\"> The LORD who rules over all says, 'I will bring war, starvation, and disease on them. I will treat them like figs that are so rotten they cannot be eaten. </VERS>\n\t\t\t<VERS vnumber=\"18\"> I will chase after them with war, starvation, and disease. I will make all the kingdoms of the earth horrified at what happens to them. I will make them examples of those who are cursed, objects of horror, hissing scorn, and ridicule among all the nations where I exile them. </VERS>\n\t\t\t<VERS vnumber=\"19\"> For they have not paid attention to what I said to them through my servants the prophets whom I sent to them over and over again,' says the LORD. 'And you exiles have not paid any attention to them either,' says the LORD.</VERS>\n\t\t\t<VERS vnumber=\"20\"> 'So pay attention to what I, the LORD, have said, all you exiles whom I have sent to Babylon from Jerusalem.'</VERS>\n\t\t\t<VERS vnumber=\"21\"> \"The LORD God of Israel who rules over all also has something to say about Ahab son of Kolaiah and Zedekiah son of Maaseiah, who are prophesying lies to you and claiming my authority to do so. 'I will hand them over to King Nebuchadnezzar of Babylon and he will execute them before your very eyes. </VERS>\n\t\t\t<VERS vnumber=\"22\"> And all the exiles of Judah who are in Babylon will use them as examples when they put a curse on anyone. They will say, \"May the LORD treat you like Zedekiah and Ahab whom the king of Babylon roasted to death in the fire!\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> This will happen to them because they have done what is shameful in Israel. They have committed adultery with their neighbors' wives and have spoken lies while claiming my authority. They have spoken words that I did not command them to speak. I know what they have done. I have been a witness to it,' says the LORD.\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> The LORD told Jeremiah, \"Tell Shemaiah the Nehelamite</VERS>\n\t\t\t<VERS vnumber=\"25\"> that the LORD God of Israel who rules over all has a message for him. Tell him, 'On your own initiative you sent a letter to the priest Zephaniah son of Maaseiah and to all the other priests and to all the people in Jerusalem. In your letter you said to Zephaniah,</VERS>\n\t\t\t<VERS vnumber=\"26\"> \"The LORD has made you priest in place of Jehoiada. He has put you in charge in the LORD's temple of controlling any lunatic who pretends to be a prophet. And it is your duty to put any such person in the stocks with an iron collar around his neck.</VERS>\n\t\t\t<VERS vnumber=\"27\"> You should have reprimanded Jeremiah from Anathoth who is pretending to be a prophet among you!</VERS>\n\t\t\t<VERS vnumber=\"28\"> For he has even sent a message to us here in Babylon. He wrote and told us, \"You will be there a long time. Build houses and settle down. Plant gardens and eat what they produce.\"'\"</VERS>\n\t\t\t<VERS vnumber=\"29\"> Zephaniah the priest read that letter to the prophet Jeremiah.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Then the LORD spoke to Jeremiah.</VERS>\n\t\t\t<VERS vnumber=\"31\"> \"Send a message to all the exiles in Babylon. Tell them, 'The LORD has spoken about Shemaiah the Nehelamite. \"Shemaiah has spoken to you as a prophet even though I did not send him. He is making you trust in a lie.</VERS>\n\t\t\t<VERS vnumber=\"32\"> Because he has done this,\" the LORD says, \"I will punish Shemaiah the Nehelamite and his whole family. There will not be any of them left to experience the good things that I will do for my people. I, the LORD, affirm it! For he counseled rebellion against the LORD.\"'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"30\">\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Jeremiah.</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"The LORD God of Israel says, 'Write everything that I am about to tell you in a scroll.</VERS>\n\t\t\t<VERS vnumber=\"3\"> For I, the LORD, affirm that the time will come when I will reverse the plight of my people, Israel and Judah,' says the LORD. 'I will bring them back to the land I gave their ancestors and they will take possession of it once again.'\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> So here is what the LORD has to say about Israel and Judah.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Yes, here is what he says: \"You hear cries of panic and of terror; there is no peace in sight.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Ask yourselves this and consider it carefully: Have you ever seen a man give birth to a baby? Why then do I see all these strong men grabbing their stomachs in pain like a woman giving birth? And why do their faces turn so deathly pale?</VERS>\n\t\t\t<VERS vnumber=\"7\"> Alas, what a terrible time of trouble it is! There has never been any like it. It is a time of trouble for the descendants of Jacob, but some of them will be rescued out of it.</VERS>\n\t\t\t<VERS vnumber=\"8\"> When the time for them to be rescued comes,\" says the LORD who rules over all, \"I will rescue you from foreign subjugation. I will deliver you from captivity. Foreigners will then no longer subjugate them.</VERS>\n\t\t\t<VERS vnumber=\"9\"> But they will be subject to the LORD their God and to the Davidic ruler whom I will raise up as king over them.</VERS>\n\t\t\t<VERS vnumber=\"10\"> So I, the LORD, tell you not to be afraid, you descendants of Jacob, my servants. Do not be terrified, people of Israel. For I will rescue you and your descendants from a faraway land where you are captives. The descendants of Jacob will return to their land and enjoy peace. They will be secure and no one will terrify them.</VERS>\n\t\t\t<VERS vnumber=\"11\"> For I, the LORD, affirm that I will be with you and will rescue you. I will completely destroy all the nations where I scattered you. But I will not completely destroy you. I will indeed discipline you, but only in due measure. I will not allow you to go entirely unpunished.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> Moreover, the LORD says to the people of Zion, \"Your injuries are incurable; your wounds are severe.</VERS>\n\t\t\t<VERS vnumber=\"13\"> There is no one to plead your cause. There are no remedies for your wounds. There is no healing for you.</VERS>\n\t\t\t<VERS vnumber=\"14\"> All your allies have abandoned you. They no longer have any concern for you. For I have attacked you like an enemy would. I have chastened you cruelly. For your wickedness is so great and your sin is so much.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Why do you complain about your injuries, that your pain is incurable? I have done all this to you because your wickedness is so great and your sin is so much.</VERS>\n\t\t\t<VERS vnumber=\"16\"> But all who destroyed you will be destroyed. All your enemies will go into exile. Those who plundered you will be plundered. I will cause those who pillaged you to be pillaged.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Yes, I will restore you to health. I will heal your wounds. I, the LORD, affirm it! For you have been called an outcast, Zion, whom no one cares for.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> The LORD says, \"I will restore the ruined houses of the descendants of Jacob. I will show compassion on their ruined homes. Every city will be rebuilt on its former ruins. Every fortified dwelling will occupy its traditional site.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Out of those places you will hear songs of thanksgiving and the sounds of laughter and merriment. I will increase their number and they will not dwindle away. I will bring them honor and they will no longer be despised.</VERS>\n\t\t\t<VERS vnumber=\"20\"> The descendants of Jacob will enjoy their former privileges. Their community will be reestablished in my favor and I will punish all who try to oppress them.</VERS>\n\t\t\t<VERS vnumber=\"21\"> One of their own people will be their leader. Their ruler will come from their own number. I will invite him to approach me, and he will do so. For no one would dare approach me on his own. I, the LORD, affirm it!</VERS>\n\t\t\t<VERS vnumber=\"22\"> Then you will again be my people and I will be your God.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Just watch! The wrath of the LORD will come like a storm. Like a raging storm it will rage down on the heads of those who are wicked.</VERS>\n\t\t\t<VERS vnumber=\"24\"> The anger of the LORD will not turn back until he has fully carried out his intended purposes. In days to come you will come to understand this.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"31\">\n\t\t\t<VERS vnumber=\"1\"> At that time I will be the God of all the clans of Israel and they will be my people. I, the LORD, affirm it!\"</VERS>\n\t\t\t<VERS vnumber=\"2\"> The LORD says, \"The people of Israel who survived death at the hands of the enemy will find favor in the wilderness as they journey to find rest for themselves.</VERS>\n\t\t\t<VERS vnumber=\"3\"> In a far-off land the LORD will manifest himself to them. He will say to them, 'I have loved you with an everlasting love. That is why I have continued to be faithful to you.</VERS>\n\t\t\t<VERS vnumber=\"4\"> I will rebuild you, my dear children Israel, so that you will once again be built up. Once again you will take up the tambourine and join in the happy throng of dancers.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Once again you will plant vineyards on the hills of Samaria. Those who plant them will once again enjoy their fruit.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Yes, a time is coming when watchmen will call out on the mountains of Ephraim, \"Come! Let us go to Zion to worship the LORD our God!\"'\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> Moreover, the LORD says, \"Sing for joy for the descendants of Jacob. Utter glad shouts for that foremost of the nations. Make your praises heard. Then say, 'LORD, rescue your people. Deliver those of Israel who remain alive.'</VERS>\n\t\t\t<VERS vnumber=\"8\"> Then I will reply, 'I will bring them back from the land of the north. I will gather them in from the distant parts of the earth. Blind and lame people will come with them, so will pregnant women and women about to give birth. A vast throng of people will come back here.</VERS>\n\t\t\t<VERS vnumber=\"9\"> They will come back shedding tears of contrition. I will bring them back praying prayers of repentance. I will lead them besides streams of water, along smooth paths where they will never stumble. I will do this because I am Israel's father; Ephraim is my firstborn son.'\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> Hear what the LORD has to say, O nations. Proclaim it in the faraway lands along the sea. Say, \"The one who scattered Israel will regather them. He will watch over his people like a shepherd watches over his flock.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> For the LORD will rescue the descendants of Jacob. He will secure their release from those who had overpowered them.</VERS>\n\t\t\t<VERS vnumber=\"12\"> They will come and shout for joy on Mount Zion. They will be radiant with joy over the good things the LORD provides, the grain, the fresh wine, the olive oil, the young sheep and calves he has given to them. They will be like a well-watered garden and will not grow faint or weary any more.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The LORD says, \"At that time young women will dance and be glad. Young men and old men will rejoice. I will turn their grief into gladness. I will give them comfort and joy in place of their sorrow.</VERS>\n\t\t\t<VERS vnumber=\"14\"> I will provide the priests with abundant provisions. My people will be filled to the full with the good things I provide.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> The LORD says, \"A sound is heard in Ramah, a sound of crying in bitter grief. It is the sound of Rachel weeping for her children and refusing to be comforted, because her children are gone.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> The LORD says to her, \"Stop crying! Do not shed any more tears! For your heartfelt repentance will be rewarded. Your children will return from the land of the enemy. I, the LORD, affirm it!</VERS>\n\t\t\t<VERS vnumber=\"17\"> Indeed, there is hope for your posterity. Your children will return to their own territory. I, the LORD, affirm it!</VERS>\n\t\t\t<VERS vnumber=\"18\"> I have indeed heard the people of Israel say mournfully, 'We were like a calf untrained to the yoke. You disciplined us and we learned from it. Let us come back to you and we will do so, for you are the LORD our God.</VERS>\n\t\t\t<VERS vnumber=\"19\"> For after we turned away from you we repented. After we came to our senses we beat our breasts in sorrow. We are ashamed and humiliated because of the disgraceful things we did previously.'</VERS>\n\t\t\t<VERS vnumber=\"20\"> Indeed, the people of Israel are my dear children. They are the children I take delight in. For even though I must often rebuke them, I still remember them with fondness. So I am deeply moved with pity for them and will surely have compassion on them. I, the LORD, affirm it!</VERS>\n\t\t\t<VERS vnumber=\"21\"> I will say, 'My dear children of Israel, keep in mind the road you took when you were carried off. Mark off in your minds the landmarks. Make a mental note of telltale signs marking the way back. Return, my dear children of Israel. Return to these cities of yours.</VERS>\n\t\t\t<VERS vnumber=\"22\"> How long will you vacillate, you who were once like an unfaithful daughter? For I, the LORD, promise to bring about something new on the earth, something as unique as a woman protecting a man!'\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> The LORD God of Israel who rules over all says, \"I will restore the people of Judah to their land and to their towns. When I do, they will again say of Jerusalem, 'May the LORD bless you, you holy mountain, the place where righteousness dwells.'</VERS>\n\t\t\t<VERS vnumber=\"24\"> The land of Judah will be inhabited by people who live in its towns as well as by farmers and shepherds with their flocks.</VERS>\n\t\t\t<VERS vnumber=\"25\"> I will fully satisfy the needs of those who are weary and fully refresh the souls of those who are faint.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Then they will say, 'Under these conditions I can enjoy sweet sleep when I wake up and look around.'\"</VERS>\n\t\t\t<VERS vnumber=\"27\"> \"Indeed, a time is coming,\" says the LORD, \"when I will cause people and animals to sprout up in the lands of Israel and Judah.</VERS>\n\t\t\t<VERS vnumber=\"28\"> In the past I saw to it that they were uprooted and torn down, that they were destroyed and demolished. But now I will see to it that they are built up and firmly planted. I, the LORD, affirm it!\"</VERS>\n\t\t\t<VERS vnumber=\"29\"> \"When that time comes, people will no longer say, 'The parents have eaten sour grapes, but the children's teeth have grown numb.'</VERS>\n\t\t\t<VERS vnumber=\"30\"> Rather, each person will die for his own sins. The teeth of the person who eats the sour grapes will themselves grow numb.</VERS>\n\t\t\t<VERS vnumber=\"31\"> \"Indeed, a time is coming,\" says the LORD, \"when I will make a new covenant with the people of Israel and Judah.</VERS>\n\t\t\t<VERS vnumber=\"32\"> It will not be like the old covenant that I made with their ancestors when I delivered them from Egypt. For they violated that covenant, even though I was like a faithful husband to them,\" says the LORD.</VERS>\n\t\t\t<VERS vnumber=\"33\"> \"But I will make a new covenant with the whole nation of Israel after I plant them back in the land,\" says the LORD. \"I will put my law within them and write it on their hearts and minds. I will be their God and they will be my people.</VERS>\n\t\t\t<VERS vnumber=\"34\"> \"People will no longer need to teach their neighbors and relatives to know me. For all of them, from the least important to the most important, will know me,\" says the LORD. \"For I will forgive their sin and will no longer call to mind the wrong they have done.\"</VERS>\n\t\t\t<VERS vnumber=\"35\"> The LORD has made a promise to Israel. He promises it as the one who fixed the sun to give light by day and the moon and stars to give light by night. He promises it as the one who stirs up the sea so that its waves roll. He promises it as the one who is known as the LORD who rules over all.</VERS>\n\t\t\t<VERS vnumber=\"36\"> The LORD affirms, \"The descendants of Israel will not cease forever to be a nation in my sight. That could only happen if the fixed ordering of the heavenly lights were to cease to operate before me.\"</VERS>\n\t\t\t<VERS vnumber=\"37\"> The LORD says, \"I will not reject all the descendants of Israel because of all that they have done. That could only happen if the heavens above could be measured or the foundations of the earth below could all be explored,\" says the LORD.</VERS>\n\t\t\t<VERS vnumber=\"38\"> \"Indeed a time is coming,\" says the LORD, \"when the city of Jerusalem will be rebuilt as my special city. It will be built from the Tower of Hananel westward to the Corner Gate.</VERS>\n\t\t\t<VERS vnumber=\"39\"> The boundary line will extend beyond that, straight west from there to the Hill of Gareb and then turn southward to Goah.</VERS>\n\t\t\t<VERS vnumber=\"40\"> The whole valley where dead bodies and sacrificial ashes are thrown and all the terraced fields out to the Kidron Valley on the east as far north as the Horse Gate will be included within this city that is sacred to the LORD. The city will never again be torn down or destroyed.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"32\">\n\t\t\t<VERS vnumber=\"1\"> In the tenth year that Zedekiah was ruling over Judah the LORD spoke to Jeremiah. That was the same as the eighteenth year of Nebuchadnezzar. 32:2 Now at that time, the armies of the king of Babylon were besieging Jerusalem. The prophet Jeremiah was confined in the courtyard of the guardhouse attached to the royal palace of Judah.</VERS>\n\t\t\t<VERS vnumber=\"2\"> </VERS>\n\t\t\t<VERS vnumber=\"3\"> For King Zedekiah had confined Jeremiah there after he had reproved him for prophesying as he did. He had asked Jeremiah, \"Why do you keep prophesying these things? Why do you keep saying that the LORD says, 'I will hand this city over to the king of Babylon? I will let him capture it.</VERS>\n\t\t\t<VERS vnumber=\"4\"> King Zedekiah of Judah will not escape from the Babylonians. He will certainly be handed over to the king of Babylon. He must answer personally to the king of Babylon and confront him face to face.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Zedekiah will be carried off to Babylon and will remain there until I have fully dealt with him. I, the LORD, affirm it! Even if you continue to fight against the Babylonians, you cannot win.'\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> So now, Jeremiah said, \"The LORD told me,</VERS>\n\t\t\t<VERS vnumber=\"7\"> 'Hanamel, the son of your uncle Shallum, will come to you soon. He will say to you, \"Buy my field at Anathoth because you are entitled as my closest relative to buy it.\"'</VERS>\n\t\t\t<VERS vnumber=\"8\"> Now it happened just as the LORD had said! My cousin Hanamel came to me in the courtyard of the guardhouse. He said to me, 'Buy my field which is at Anathoth in the territory of the tribe of Benjamin. Buy it for yourself since you are entitled as my closest relative to take possession of it for yourself.' When this happened, I recognized that the LORD had indeed spoken to me. </VERS>\n\t\t\t<VERS vnumber=\"9\"> So I bought the field at Anathoth from my cousin Hanamel. I weighed out seven ounces of silver and gave it to him to pay for it.</VERS>\n\t\t\t<VERS vnumber=\"10\"> I signed the deed of purchase, sealed it, and had some men serve as witnesses to the purchase. I weighed out the silver for him on a scale. </VERS>\n\t\t\t<VERS vnumber=\"11\"> There were two copies of the deed of purchase. One was sealed and contained the order of transfer and the conditions of purchase. The other was left unsealed. </VERS>\n\t\t\t<VERS vnumber=\"12\"> I took both copies of the deed of purchase and gave them to Baruch son of Neriah, the son of Mahseiah. I gave them to him in the presence of my cousin Hanamel, the witnesses who had signed the deed of purchase, and all the Judeans who were housed in the courtyard of the guardhouse. </VERS>\n\t\t\t<VERS vnumber=\"13\"> In the presence of all these people I instructed Baruch,</VERS>\n\t\t\t<VERS vnumber=\"14\"> 'The LORD God of Israel who rules over all says, \"Take these documents, both the sealed copy of the deed of purchase and the unsealed copy. Put them in a clay jar so that they may be preserved for a long time to come.\"'</VERS>\n\t\t\t<VERS vnumber=\"15\"> For the LORD God of Israel who rules over all says, \"Houses, fields, and vineyards will again be bought in this land.\"'</VERS>\n\t\t\t<VERS vnumber=\"16\"> \"After I had given the copies of the deed of purchase to Baruch son of Neriah, I prayed to the LORD,</VERS>\n\t\t\t<VERS vnumber=\"17\"> 'Oh, Lord GOD, you did indeed make heaven and earth by your mighty power and great strength. Nothing is too hard for you! </VERS>\n\t\t\t<VERS vnumber=\"18\"> You show unfailing love to thousands. But you also punish children for the sins of their parents. You are the great and powerful God who is known as the LORD who rules over all.</VERS>\n\t\t\t<VERS vnumber=\"19\"> You plan great things and you do mighty deeds. You see everything people do. You reward each of them for the way they live and for the things they do.</VERS>\n\t\t\t<VERS vnumber=\"20\"> You did miracles and amazing deeds in the land of Egypt which have had lasting effect. By this means you gained both in Israel and among humankind a renown that lasts to this day.</VERS>\n\t\t\t<VERS vnumber=\"21\"> You used your mighty power and your great strength to perform miracles and amazing deeds and to bring great terror on the Egyptians. By this means you brought your people Israel out of the land of Egypt.</VERS>\n\t\t\t<VERS vnumber=\"22\"> You kept the promise that you swore on oath to their ancestors. You gave them a land flowing with milk and honey.</VERS>\n\t\t\t<VERS vnumber=\"23\"> But when they came in and took possession of it, they did not obey you or live as you had instructed them. They did not do anything that you commanded them to do. So you brought all this disaster on them. </VERS>\n\t\t\t<VERS vnumber=\"24\"> Even now siege ramps have been built up around the city in order to capture it. War, starvation, and disease are sure to make the city fall into the hands of the Babylonians who are attacking it. LORD, you threatened that this would happen. Now you can see that it is already taking place.</VERS>\n\t\t\t<VERS vnumber=\"25\"> The city is sure to fall into the hands of the Babylonians. Yet, in spite of this, you, Lord GOD, have said to me, \"Buy that field with silver and have the transaction legally witnessed.\"'\"</VERS>\n\t\t\t<VERS vnumber=\"26\"> The LORD answered Jeremiah.</VERS>\n\t\t\t<VERS vnumber=\"27\"> \"I am the LORD, the God of all humankind. There is, indeed, nothing too difficult for me.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Therefore I, the LORD, say: 'I will indeed hand this city over to King Nebuchadnezzar of Babylon and the Babylonian army. They will capture it. </VERS>\n\t\t\t<VERS vnumber=\"29\"> The Babylonian soldiers that are attacking this city will break into it and set it on fire. They will burn it down along with the houses where people have made me angry by offering sacrifices to the god Baal and by pouring out drink offerings to other gods on their rooftops.</VERS>\n\t\t\t<VERS vnumber=\"30\"> This will happen because the people of Israel and Judah have repeatedly done what displeases me from their earliest history until now and because they have repeatedly made me angry by the things they have done. I, the LORD, affirm it!</VERS>\n\t\t\t<VERS vnumber=\"31\"> This will happen because the people of this city have aroused my anger and my wrath since the time they built it until now. They have made me so angry that I am determined to remove it from my sight. </VERS>\n\t\t\t<VERS vnumber=\"32\"> I am determined to do so because the people of Israel and Judah have made me angry with all their wickedness, they, their kings, their officials, their priests, their prophets, and especially the people of Judah and the citizens of Jerusalem have done this wickedness.</VERS>\n\t\t\t<VERS vnumber=\"33\"> They have turned away from me instead of turning to me. I tried over and over again to instruct them, but they did not listen and respond to correction.</VERS>\n\t\t\t<VERS vnumber=\"34\"> They set up their disgusting idols in the temple which I have claimed for my own and defiled it. </VERS>\n\t\t\t<VERS vnumber=\"35\"> They built places of worship for the god Baal in the Valley of Ben Hinnom so that they could sacrifice their sons and daughters to the god Molech. Such a disgusting practice was not something I commanded them to do! It never even entered my mind to command them to do such a thing! So Judah is certainly liable for punishment.'</VERS>\n\t\t\t<VERS vnumber=\"36\"> \"You and your people are right in saying, 'War, starvation, and disease are sure to make this city fall into the hands of the king of Babylon.' But now I, the LORD God of Israel, have something further to say about this city:</VERS>\n\t\t\t<VERS vnumber=\"37\"> 'I will certainly regather my people from all the countries where I will have exiled them in my anger, fury, and great wrath. I will bring them back to this place and allow them to live here in safety. </VERS>\n\t\t\t<VERS vnumber=\"38\"> They will be my people, and I will be their God.</VERS>\n\t\t\t<VERS vnumber=\"39\"> I will give them a single-minded purpose to live in a way that always shows respect for me. They will want to do that for their own good and the good of the children who descend from them. </VERS>\n\t\t\t<VERS vnumber=\"40\"> I will make a lasting covenant with them that I will never stop doing good to them. I will fill their hearts and minds with respect for me so that they will never again turn away from me.</VERS>\n\t\t\t<VERS vnumber=\"41\"> I will take delight in doing good to them. I will faithfully and wholeheartedly plant them firmly in the land.'</VERS>\n\t\t\t<VERS vnumber=\"42\"> \"For I, the LORD, say: 'I will surely bring on these people all the good fortune that I am hereby promising them. I will be just as sure to do that as I have been in bringing all this great disaster on them.</VERS>\n\t\t\t<VERS vnumber=\"43\"> You and your people are saying that this land will become desolate, uninhabited by either people or animals. You are saying that it will be handed over to the Babylonians. But fields will again be bought in this land.</VERS>\n\t\t\t<VERS vnumber=\"44\"> Fields will again be bought with silver, and deeds of purchase signed, sealed, and witnessed. This will happen in the territory of Benjamin, the villages surrounding Jerusalem, the towns in Judah, the southern hill country, the western foothills, and southern Judah. For I will restore them to their land. I, the LORD, affirm it!'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"33\">\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Jeremiah a second time while he was still confined in the courtyard of the guardhouse.</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"I, the LORD, do these things. I, the LORD, form the plan to bring them about. I am known as the LORD. I say to you, </VERS>\n\t\t\t<VERS vnumber=\"3\"> 'Call on me in prayer and I will answer you. I will show you great and mysterious things which you still do not know about.' </VERS>\n\t\t\t<VERS vnumber=\"4\"> For I, the LORD God of Israel, have something more to say about the houses in this city and the royal buildings which have been torn down for defenses against the siege ramps and military incursions of the Babylonians:</VERS>\n\t\t\t<VERS vnumber=\"5\"> 'The defenders of the city will go out and fight with the Babylonians. But they will only fill those houses and buildings with the dead bodies of the people that I will kill in my anger and my wrath. That will happen because I have decided to turn my back on this city on account of the wicked things they have done.</VERS>\n\t\t\t<VERS vnumber=\"6\"> But I will most surely heal the wounds of this city and restore it and its people to health. I will show them abundant peace and security. </VERS>\n\t\t\t<VERS vnumber=\"7\"> I will restore Judah and Israel and will rebuild them as they were in days of old.</VERS>\n\t\t\t<VERS vnumber=\"8\"> I will purify them from all the sin that they committed against me. I will forgive all their sins which they committed in rebelling against me.</VERS>\n\t\t\t<VERS vnumber=\"9\"> All the nations will hear about all the good things which I will do to them. This city will bring me fame, honor, and praise before them for the joy that I bring it. The nations will tremble in awe at all the peace and prosperity that I will provide for it.'</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"I, the LORD, say: 'You and your people are saying about this place, \"It lies in ruins. There are no people or animals in it.\" That is true. The towns of Judah and the streets of Jerusalem will soon be desolate, uninhabited either by people or by animals. But happy sounds will again be heard in these places. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Once again there will be sounds of joy and gladness and the glad celebrations of brides and grooms. Once again people will bring their thank offerings to the temple of the LORD and will say, \"Give thanks to the LORD who rules over all. For the LORD is good and his unfailing love lasts forever.\" For I, the LORD, affirm that I will restore the land to what it was in days of old.'</VERS>\n\t\t\t<VERS vnumber=\"12\"> \"I, the LORD who rules over all, say: 'This place will indeed lie in ruins. There will be no people or animals in it. But there will again be in it and in its towns sheepfolds where shepherds can rest their sheep. </VERS>\n\t\t\t<VERS vnumber=\"13\"> I, the LORD, say that shepherds will once again count their sheep as they pass into the fold. They will do this in all the towns in the southern hill country, the western foothills, the southern hill country, the territory of Benjamin, the villages surrounding Jerusalem, and the towns of Judah.'</VERS>\n\t\t\t<VERS vnumber=\"14\"> \"I, the LORD, affirm: 'The time will certainly come when I will fulfill my gracious promise concerning the nations of Israel and Judah.</VERS>\n\t\t\t<VERS vnumber=\"15\"> In those days and at that time I will raise up for them a righteous descendant of David. \"'He will do what is just and right in the land. </VERS>\n\t\t\t<VERS vnumber=\"16\"> Under his rule Judah will enjoy safety and Jerusalem will live in security. At that time Jerusalem will be called \"The LORD has provided us with justice.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> For I, the LORD, promise: \"David will never lack a successor to occupy the throne over the nation of Israel.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Nor will the Levitical priests ever lack someone to stand before me and continually offer up burnt offerings, sacrifice cereal offerings, and offer the other sacrifices.\"'\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> The LORD spoke further to Jeremiah.</VERS>\n\t\t\t<VERS vnumber=\"20\"> \"I, LORD, make the following promise: 'I have made a covenant with the day and with the night that they will always come at their proper times. Only if you people could break that covenant </VERS>\n\t\t\t<VERS vnumber=\"21\"> could my covenant with my servant David and my covenant with the Levites ever be broken. So David will by all means always have a descendant to occupy his throne as king and the Levites will by all means always have priests who will minister before me.</VERS>\n\t\t\t<VERS vnumber=\"22\"> I will make the children who follow one another in the line of my servant David very numerous. I will also make the Levites who minister before me very numerous. I will make them all as numerous as the stars in the sky and as the sands which are on the seashore.'\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> The LORD spoke still further to Jeremiah.</VERS>\n\t\t\t<VERS vnumber=\"24\"> \"You have surely noticed what these people are saying, haven't you? They are saying, 'The LORD has rejected the two families of Israel and Judah that he chose.' So they have little regard that my people will ever again be a nation.</VERS>\n\t\t\t<VERS vnumber=\"25\"> But I, the LORD, make the following promise: I have made a covenant governing the coming of day and night. I have established the fixed laws governing heaven and earth. </VERS>\n\t\t\t<VERS vnumber=\"26\"> Just as surely as I have done this, so surely will I never reject the descendants of Jacob. Nor will I ever refuse to choose one of my servant David's descendants to rule over the descendants of Abraham, Isaac, and Jacob. Indeed, I will restore them and show mercy to them.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"34\">\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Jeremiah while King Nebuchadnezzar of Babylon was attacking Jerusalem and the towns around it with a large army. This army consisted of troops from his own army and from the kingdoms and peoples of the lands under his dominion.</VERS>\n\t\t\t<VERS vnumber=\"2\"> The LORD God of Israel told Jeremiah to go and give King Zedekiah of Judah a message. He told Jeremiah to tell him, \"The LORD says, 'I am going to hand this city over to the king of Babylon and he will burn it down. </VERS>\n\t\t\t<VERS vnumber=\"3\"> You yourself will not escape his clutches, but will certainly be captured and handed over to him. You must confront the king of Babylon face to face and answer to him personally. Then you must go to Babylon. </VERS>\n\t\t\t<VERS vnumber=\"4\"> However, listen to what I, the LORD, promise you, King Zedekiah of Judah. I, the LORD, promise that you will not die in battle or be executed.</VERS>\n\t\t\t<VERS vnumber=\"5\"> You will die a peaceful death. They will burn incense at your burial just as they did at the burial of your ancestors, the former kings who preceded you. They will mourn for you, saying, \"Poor, poor master!\" Indeed, you have my own word on this. I, the LORD, affirm it!'\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> The prophet Jeremiah told all this to King Zedekiah of Judah in Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"7\"> He did this while the army of the king of Babylon was attacking Jerusalem and the cities of Lachish and Azekah. He was attacking these cities because they were the only fortified cities of Judah which were still holding out.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The LORD spoke to Jeremiah after King Zedekiah had made a covenant with all the people in Jerusalem to grant their slaves their freedom. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Everyone was supposed to free their male and female Hebrew slaves. No one was supposed to keep a fellow Judean enslaved.</VERS>\n\t\t\t<VERS vnumber=\"10\"> All the people and their leaders had agreed to this. They had agreed to free their male and female slaves and not keep them enslaved any longer. They originally complied with the covenant and freed them.</VERS>\n\t\t\t<VERS vnumber=\"11\"> But later they had changed their minds. They had taken back their male and female slaves that they had freed and forced them to be slaves again.</VERS>\n\t\t\t<VERS vnumber=\"12\"> That was when the LORD spoke to Jeremiah,</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"The LORD God of Israel has a message for you. 'I made a covenant with your ancestors when I brought them out of Egypt where they had been slaves. It stipulated,</VERS>\n\t\t\t<VERS vnumber=\"14\"> \"Every seven years each of you must free any fellow Hebrews who have sold themselves to you. After they have served you for six years, you shall set them free.\" But your ancestors did not obey me or pay any attention to me.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Recently, however, you yourselves showed a change of heart and did what is pleasing to me. You granted your fellow countrymen their freedom and you made a covenant to that effect in my presence in the house that I have claimed for my own.</VERS>\n\t\t\t<VERS vnumber=\"16\"> But then you turned right around and showed that you did not honor me. Each of you took back your male and female slaves whom you had freed as they desired, and you forced them to be your slaves again.</VERS>\n\t\t\t<VERS vnumber=\"17\"> So I, the LORD, say: \"You have not really obeyed me and granted freedom to your neighbor and fellow countryman. Therefore, I will grant you freedom, the freedom to die in war, or by starvation or disease. I, the LORD, affirm it! I will make all the kingdoms of the earth horrified at what happens to you.</VERS>\n\t\t\t<VERS vnumber=\"18\"> I will punish those people who have violated their covenant with me. I will make them like the calf they cut in two and passed between its pieces. I will do so because they did not keep the terms of the covenant they made in my presence.</VERS>\n\t\t\t<VERS vnumber=\"19\"> I will punish the leaders of Judah and Jerusalem, the court officials, the priests, and all the other people of the land who passed between the pieces of the calf.</VERS>\n\t\t\t<VERS vnumber=\"20\"> I will hand them over to their enemies who want to kill them. Their dead bodies will become food for the birds and the wild animals.</VERS>\n\t\t\t<VERS vnumber=\"21\"> I will also hand King Zedekiah of Judah and his officials over to their enemies who want to kill them. I will hand them over to the army of the king of Babylon, even though they have temporarily withdrawn from attacking you.</VERS>\n\t\t\t<VERS vnumber=\"22\"> For I, the LORD, affirm that I will soon give the order and bring them back to this city. They will fight against it and capture it and burn it down. I will also make the towns of Judah desolate so that there will be no one living in them.\"'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"35\">\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Jeremiah when Jehoiakim son of Josiah was ruling over Judah.</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Go to the Rechabite community. Invite them to come into one of the side rooms of the LORD's temple and offer them some wine to drink.\" </VERS>\n\t\t\t<VERS vnumber=\"3\"> So I went and got Jaazaniah son of Jeremiah the grandson of Habazziniah, his brothers, all his sons, and all the rest of the Rechabite community.</VERS>\n\t\t\t<VERS vnumber=\"4\"> I took them to the LORD's temple. I took them into the room where the disciples of the prophet Hanan son of Igdaliah stayed. That room was next to the one where the temple officers stayed and above the room where Maaseiah son of Shallum, one of the doorkeepers of the temple, stayed. </VERS>\n\t\t\t<VERS vnumber=\"5\"> Then I set cups and pitchers full of wine in front of the members of the Rechabite community and said to them, \"Have some wine.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> But they answered, \"We do not drink wine because our ancestor Jonadab son of Rechab commanded us not to. He told us, 'You and your children must never drink wine.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Do not build houses. Do not plant crops. Do not plant a vineyard or own one. Live in tents all your lives. If you do these things you will live a long time in the land that you wander about on.'</VERS>\n\t\t\t<VERS vnumber=\"8\"> We and our wives and our sons and daughters have obeyed everything our ancestor Jonadab commanded us. We have never drunk wine.</VERS>\n\t\t\t<VERS vnumber=\"9\"> We have not built any houses to live in. We do not own any vineyards, fields, or crops.</VERS>\n\t\t\t<VERS vnumber=\"10\"> We have lived in tents. We have obeyed our ancestor Jonadab and done exactly as he commanded us.</VERS>\n\t\t\t<VERS vnumber=\"11\"> But when King Nebuchadnezzar of Babylon invaded the land we said, 'Let's get up and go to Jerusalem to get away from the Babylonian and Aramean armies.' That is why we are staying here in Jerusalem.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> Then the LORD spoke to Jeremiah.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The LORD God of Israel who rules over all told him, \"Go and speak to the people of Judah and the citizens of Jerusalem. Tell them, 'I, the LORD, say: \"You must learn a lesson from this about obeying what I say!</VERS>\n\t\t\t<VERS vnumber=\"14\"> Jonadab son of Rechab ordered his descendants not to drink wine. His orders have been carried out. To this day his descendants have drunk no wine because they have obeyed what their ancestor commanded them. But I have spoken to you over and over again, but you have not obeyed me!</VERS>\n\t\t\t<VERS vnumber=\"15\"> I sent all my servants the prophets to warn you over and over again. They said, \"Every one of you, stop doing the evil things you have been doing and do what is right. Do not pay allegiance to other gods and worship them. Then you can continue to live in this land that I gave to you and your ancestors.\" But you did not pay any attention or listen to me. </VERS>\n\t\t\t<VERS vnumber=\"16\"> Yes, the descendants of Jonadab son of Rechab have carried out the orders that their ancestor gave them. But you people have not obeyed me! </VERS>\n\t\t\t<VERS vnumber=\"17\"> So I, the LORD, the God who rules over all, the God of Israel, say: \"I will soon bring on Judah and all the citizens of Jerusalem all the disaster that I threatened to bring on them. I will do this because I spoke to them but they did not listen. I called out to them but they did not answer.\"'\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> Then Jeremiah spoke to the Rechabite community, \"The LORD God of Israel who rules over all says, 'You have obeyed the orders of your ancestor Jonadab. You have followed all his instructions. You have done exactly as he commanded you.' </VERS>\n\t\t\t<VERS vnumber=\"19\"> So the LORD God of Israel who rules over all says, 'Jonadab son of Rechab will never lack a male descendant to serve me.'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"36\">\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Jeremiah in the fourth year that Jehoiakim son of Josiah was ruling over Judah.</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Get a scroll. Write on it everything I have told you to say about Israel, Judah, and all the other nations since I began to speak to you in the reign of Josiah until now.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Perhaps when the people of Judah hear about all the disaster I intend to bring on them, they will all stop doing the evil things they have been doing. If they do, I will forgive their sins and the wicked things they have done.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> So Jeremiah summoned Baruch son of Neriah. Then Jeremiah dictated to Baruch everything the LORD had told him to say and Baruch wrote it all down in a scroll.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Then Jeremiah told Baruch, \"I am no longer allowed to go into the LORD's temple. </VERS>\n\t\t\t<VERS vnumber=\"6\"> So you go there the next time all the people of Judah come in from their towns to fast in the LORD's temple. Read out loud where all of them can hear you what I told you the LORD said, which you wrote in the scroll.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Perhaps then they will ask the LORD for mercy and will all stop doing the evil things they have been doing. For the LORD has threatened to bring great anger and wrath against these people.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> So Baruch son of Neriah did exactly what the prophet Jeremiah had told him to do. He read what the LORD had said from the scroll in the temple of the LORD.</VERS>\n\t\t\t<VERS vnumber=\"9\"> All the people living in Jerusalem and all the people who came into Jerusalem from the towns of Judah came to observe a fast before the LORD. The fast took place in the ninth month of the fifth year that Jehoiakim son of Josiah was ruling over Judah.</VERS>\n\t\t\t<VERS vnumber=\"10\"> At that time Baruch went into the temple of the LORD. He stood in the entrance of the room of Gemariah the son of Shaphan who had been the royal secretary. That room was in the upper court near the entrance of the New Gate. There, where all the people could hear him, he read from the scroll what Jeremiah had said.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Micaiah, who was the son of Gemariah and the grandson of Shaphan, heard Baruch read from the scroll everything the LORD had said.</VERS>\n\t\t\t<VERS vnumber=\"12\"> He went down to the chamber of the royal secretary in the king's palace and found all the court officials in session there. Elishama the royal secretary, Delaiah son of Shemaiah, Elnathan son of Achbor, Gemariah son of Shaphan, Zedekiah son of Hananiah, and all the other officials were seated there. </VERS>\n\t\t\t<VERS vnumber=\"13\"> Micaiah told them everything he had heard Baruch read from the scroll in the hearing of the people.</VERS>\n\t\t\t<VERS vnumber=\"14\"> All the officials sent Jehudi, who was the son of Nethaniah and the grandson of Cushi, to Baruch. They ordered him to tell Baruch, \"Come here and bring with you the scroll you read in the hearing of the people.\" So Baruch son of Neriah went to them, carrying the scroll in his hand.</VERS>\n\t\t\t<VERS vnumber=\"15\"> They said to him, \"Please sit down and read it to us.\" So Baruch sat down and read it to them.</VERS>\n\t\t\t<VERS vnumber=\"16\"> When they had heard it all, they expressed their alarm to one another. Then they said to Baruch, \"We must certainly give the king a report about everything you have read!\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> Then they asked Baruch, \"How did you come to write all these words? Do they actually come from Jeremiah's mouth?\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> Baruch answered, \"Yes, they came from his own mouth. He dictated all these words to me and I wrote them down in ink on this scroll.\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> Then the officials said to Baruch, \"You and Jeremiah must go and hide. You must not let anyone know where you are.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> The officials put the scroll in the room of Elishama, the royal secretary, for safekeeping. Then they went to the court and reported everything to the king.</VERS>\n\t\t\t<VERS vnumber=\"21\"> The king sent Jehudi to get the scroll. He went and got it from the room of Elishama, the royal secretary. Then he himself read it to the king and all the officials who were standing around him. </VERS>\n\t\t\t<VERS vnumber=\"22\"> Since it was the ninth month of the year, the king was sitting in his winter quarters. A fire was burning in the firepot in front of him.</VERS>\n\t\t\t<VERS vnumber=\"23\"> As soon as Jehudi had read three or four columns of the scroll, the king would cut them off with a penknife and throw them on the fire in the firepot. He kept doing so until the whole scroll was burned up in the fire.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Neither he nor any of his attendants showed any alarm when they heard all that had been read. Nor did they tear their clothes to show any grief or sorrow.</VERS>\n\t\t\t<VERS vnumber=\"25\"> The king did not even listen to Elnathan, Delaiah, and Gemariah, who had urged him not to burn the scroll.</VERS>\n\t\t\t<VERS vnumber=\"26\"> He also ordered Jerahmeel, who was one of the royal princes, Seraiah son of Azriel, and Shelemiah son of Abdeel to arrest the scribe Baruch and the prophet Jeremiah. However, the LORD hid them.</VERS>\n\t\t\t<VERS vnumber=\"27\"> The LORD spoke to Jeremiah after Jehoiakim had burned the scroll containing what Jeremiah had spoken and Baruch had written down.</VERS>\n\t\t\t<VERS vnumber=\"28\"> \"Get another scroll and write on it everything that was written on the original scroll that King Jehoiakim of Judah burned. </VERS>\n\t\t\t<VERS vnumber=\"29\"> Tell King Jehoiakim of Judah, 'The LORD says, \"You burned the scroll. You asked Jeremiah, 'How dare you write in this scroll that the king of Babylon will certainly come and destroy this land and wipe out all the people and animals on it?'\"</VERS>\n\t\t\t<VERS vnumber=\"30\"> So the LORD says concerning King Jehoiakim of Judah, \"None of his line will occupy the throne of David. His dead body will be thrown out to be exposed to scorching heat by day and frost by night.</VERS>\n\t\t\t<VERS vnumber=\"31\"> I will punish him and his descendants and the officials who serve him for the wicked things they have done. I will bring on them, the citizens of Jerusalem, and the people of Judah all the disaster that I threatened to do to them. I will punish them because I threatened them but they still paid no heed.\"'\"</VERS>\n\t\t\t<VERS vnumber=\"32\"> Then Jeremiah got another scroll and gave it to the scribe Baruch son of Neriah. As Jeremiah dictated, Baruch wrote on this scroll everything that had been on the scroll that King Jehoiakim of Judah burned in the fire. They also added on this scroll several other messages of the same kind.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"37\">\n\t\t\t<VERS vnumber=\"1\"> Zedekiah son of Josiah succeeded Jeconiah son of Jehoiakim as king. He was elevated to the throne of the land of Judah by King Nebuchadnezzar of Babylon.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Neither he nor the officials who served him nor the people of Judah paid any attention to what the LORD said through the prophet Jeremiah.</VERS>\n\t\t\t<VERS vnumber=\"3\"> King Zedekiah sent Jehucal son of Shelemiah and the priest Zephaniah son of Maaseiah to the prophet Jeremiah. He told them to say, \"Please pray to the LORD our God on our behalf.\" </VERS>\n\t\t\t<VERS vnumber=\"4\"> (Now Jeremiah had not yet been put in prison. So he was still free to come and go among the people as he pleased.</VERS>\n\t\t\t<VERS vnumber=\"5\"> At that time the Babylonian forces had temporarily given up their siege against Jerusalem. They had had it under siege, but withdrew when they heard that the army of Pharaoh had set out from Egypt.)</VERS>\n\t\t\t<VERS vnumber=\"6\"> The LORD gave the prophet Jeremiah a message for them. He told him to tell them,</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"The LORD God of Israel says, 'Give a message to the king of Judah who sent you to ask me to help him. Tell him, \"The army of Pharaoh that was on its way to help you will go back home to Egypt.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Then the Babylonian forces will return. They will attack the city and will capture it and burn it down. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Moreover, I, the LORD, warn you not to deceive yourselves into thinking that the Babylonian forces will go away and leave you alone. For they will not go away.</VERS>\n\t\t\t<VERS vnumber=\"10\"> For even if you were to defeat all the Babylonian forces fighting against you so badly that only wounded men were left lying in their tents, they would get up and burn this city down.\"'\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> The following events also occurred while the Babylonian forces had temporarily withdrawn from Jerusalem because the army of Pharaoh was coming. </VERS>\n\t\t\t<VERS vnumber=\"12\"> Jeremiah started to leave Jerusalem to go to the territory of Benjamin. He wanted to make sure he got his share of the property that was being divided up among his family there.</VERS>\n\t\t\t<VERS vnumber=\"13\"> But he only got as far as the Benjamin Gate. There an officer in charge of the guards named Irijah, who was the son of Shelemiah and the grandson of Hananiah, stopped him. He seized Jeremiah and said, \"You are deserting to the Babylonians!\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> Jeremiah answered, \"That's a lie! I am not deserting to the Babylonians.\" But Irijah would not listen to him. Irijah put Jeremiah under arrest and took him to the officials. </VERS>\n\t\t\t<VERS vnumber=\"15\"> The officials were very angry at Jeremiah. They had him flogged and put in prison in the house of Jonathan, the royal secretary, which they had converted into a place for confining prisoners.</VERS>\n\t\t\t<VERS vnumber=\"16\"> So Jeremiah was put in prison in a cell in the dungeon in Jonathan's house. He was kept there for a long time. </VERS>\n\t\t\t<VERS vnumber=\"17\"> Then King Zedekiah had him brought to the palace. There he questioned him privately and asked him, \"Is there any message from the LORD?\" Jeremiah answered, \"Yes, there is.\" Then he announced, \"You will be handed over to the king of Babylon.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> Then Jeremiah asked King Zedekiah, \"What crime have I committed against you, or the officials who serve you, or the people of Judah? What have I done to make you people throw me into prison?</VERS>\n\t\t\t<VERS vnumber=\"19\"> Where now are the prophets who prophesied to you that the king of Babylon would not attack you or this land? </VERS>\n\t\t\t<VERS vnumber=\"20\"> But now please listen, your royal Majesty, and grant my plea for mercy. Do not send me back to the house of Jonathan, the royal secretary. If you do, I will die there.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> Then King Zedekiah ordered that Jeremiah be committed to the courtyard of the guardhouse. He also ordered that a loaf of bread be given to him every day from the baker's street until all the bread in the city was gone. So Jeremiah was kept in the courtyard of the guardhouse.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"38\">\n\t\t\t<VERS vnumber=\"1\"> Now Shephatiah son of Mattan, Gedaliah son of Pashhur, Jehucal son of Shelemiah, and Pashhur son of Malkijah had heard the things that Jeremiah had been telling the people. They had heard him say, </VERS>\n\t\t\t<VERS vnumber=\"2\"> \"The LORD says, 'Those who stay in this city will die in battle or of starvation or disease. Those who leave the city and surrender to the Babylonians will live. They will escape with their lives.'\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> They had also heard him say, \"The LORD says, 'This city will certainly be handed over to the army of the king of Babylon. They will capture it.'\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> So these officials said to the king, \"This man must be put to death. For he is demoralizing the soldiers who are left in the city as well as all the other people there by these things he is saying. This man is not seeking to help these people but is trying to harm them.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> King Zedekiah said to them, \"Very well, you can do what you want with him. For I cannot do anything to stop you.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> So the officials took Jeremiah and put him in the cistern of Malkijah, one of the royal princes, that was in the courtyard of the guardhouse. There was no water in the cistern, only mud. So when they lowered Jeremiah into the cistern with ropes he sank in the mud.</VERS>\n\t\t\t<VERS vnumber=\"7\"> An Ethiopian, Ebed Melech, a court official in the royal palace, heard that Jeremiah had been put in the cistern. While the king was holding court at the Benjamin Gate, </VERS>\n\t\t\t<VERS vnumber=\"8\"> Ebed Melech departed the palace and went to speak to the king. He said to him,</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"Your royal Majesty, those men have been very wicked in all that they have done to the prophet Jeremiah. They have thrown him into a cistern and he is sure to die of starvation there because there is no food left in the city.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Then the king gave Ebed Melech the Ethiopian the following order: \"Take thirty men with you from here and go pull the prophet Jeremiah out of the cistern before he dies.\" </VERS>\n\t\t\t<VERS vnumber=\"11\"> So Ebed Melech took the men with him and went to a room under the treasure room in the palace. He got some worn-out clothes and old rags from there and let them down by ropes to Jeremiah in the cistern. </VERS>\n\t\t\t<VERS vnumber=\"12\"> Ebed Melech called down to Jeremiah, \"Put these rags and worn-out clothes under your armpits to pad the ropes. Jeremiah did as Ebed Melech instructed.</VERS>\n\t\t\t<VERS vnumber=\"13\"> So they pulled Jeremiah up from the cistern with ropes. Jeremiah, however, still remained confined to the courtyard of the guardhouse.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Some time later Zedekiah sent and had Jeremiah brought to him at the third entrance of the LORD's temple. The king said to Jeremiah, \"I would like to ask you a question. Do not hide anything from me when you answer.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> Jeremiah said to Zedekiah, \"If I answer you, you will certainly kill me. If I give you advice, you will not listen to me.\" </VERS>\n\t\t\t<VERS vnumber=\"16\"> So King Zedekiah made a secret promise to Jeremiah and sealed it with an oath. He promised, \"As surely as the LORD lives who has given us life and breath, I promise you this: I will not kill you or hand you over to those men who want to kill you.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> Then Jeremiah said to Zedekiah, \"The LORD, the God who rules over all, the God of Israel, says, 'You must surrender to the officers of the king of Babylon. If you do, your life will be spared and this city will not be burned down. Indeed, you and your whole family will be spared. </VERS>\n\t\t\t<VERS vnumber=\"18\"> But if you do not surrender to the officers of the king of Babylon, this city will be handed over to the Babylonians and they will burn it down. You yourself will not escape from them.'\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> Then King Zedekiah said to Jeremiah, \"I am afraid of the Judeans who have deserted to the Babylonians. The Babylonians might hand me over to them and they will torture me.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> Then Jeremiah answered, \"You will not be handed over to them. Please obey the LORD by doing what I have been telling you. Then all will go well with you and your life will be spared.</VERS>\n\t\t\t<VERS vnumber=\"21\"> But if you refuse to surrender, the LORD has shown me a vision of what will happen. Here is what I saw:</VERS>\n\t\t\t<VERS vnumber=\"22\"> All the women who are left in the royal palace of Judah will be led out to the officers of the king of Babylon. They will taunt you saying, 'Your trusted friends misled you; they have gotten the best of you. Now that your feet are stuck in the mud, they have turned their backs on you.'</VERS>\n\t\t\t<VERS vnumber=\"23\"> \"All your wives and your children will be turned over to the Babylonians. You yourself will not escape from them but will be captured by the king of Babylon. This city will be burned down.\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> Then Zedekiah told Jeremiah, \"Do not let anyone know about the conversation we have had. If you do, you will die.</VERS>\n\t\t\t<VERS vnumber=\"25\"> The officials may hear that I have talked with you. They may come to you and say, 'Tell us what you said to the king and what the king said to you. Do not hide anything from us. If you do, we will kill you.'</VERS>\n\t\t\t<VERS vnumber=\"26\"> If they do this, tell them, 'I was pleading with the king not to send me back to die in the dungeon of Jonathan's house.'\"</VERS>\n\t\t\t<VERS vnumber=\"27\"> All the officials did indeed come and question Jeremiah. He told them exactly what the king had instructed him to say. They stopped questioning him any further because no one had actually heard their conversation.</VERS>\n\t\t\t<VERS vnumber=\"28\"> So Jeremiah remained confined in the courtyard of the guardhouse until the day Jerusalem was captured. The following events occurred when Jerusalem was captured.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"39\">\n\t\t\t<VERS vnumber=\"1\"> King Nebuchadnezzar of Babylon came against Jerusalem with his whole army and laid siege to it. The siege began in the tenth month of the ninth year that Zedekiah ruled over Judah.</VERS>\n\t\t\t<VERS vnumber=\"2\"> It lasted until the ninth day of the fourth month of Zedekiah's eleventh year. On that day they broke through the city walls. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Then Nergal-Sharezer of Samgar, Nebo-Sarsekim, who was a chief officer, Nergal-Sharezer, who was a high official, and all the other officers of the king of Babylon came and set up quarters in the Middle Gate.</VERS>\n\t\t\t<VERS vnumber=\"4\"> When King Zedekiah of Judah and all his soldiers saw them, they tried to escape. They departed from the city during the night. They took a path through the king's garden and passed out through the gate between the two walls. Then they headed for the Jordan Valley.</VERS>\n\t\t\t<VERS vnumber=\"5\"> But the Babylonian army chased after them. They caught up with Zedekiah in the plains of Jericho and captured him. They took him to King Nebuchadnezzar of Babylon at Riblah in the territory of Hamath and Nebuchadnezzar passed sentence on him there. </VERS>\n\t\t\t<VERS vnumber=\"6\"> There at Riblah the king of Babylon had Zedekiah's sons put to death while Zedekiah was forced to watch. The king of Babylon also had all the nobles of Judah put to death.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Then he had Zedekiah's eyes put out and had him bound in chains to be led off to Babylon. </VERS>\n\t\t\t<VERS vnumber=\"8\"> The Babylonians burned down the royal palace, the temple of the LORD, and the people's homes, and they tore down the wall of Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Then Nebuzaradan, the captain of the royal guard, took captive the rest of the people who were left in the city. He carried them off to Babylon along with the people who had deserted to him.</VERS>\n\t\t\t<VERS vnumber=\"10\"> But he left behind in the land of Judah some of the poor people who owned nothing. He gave them fields and vineyards at that time.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Now King Nebuchadnezzar of Babylon had issued orders concerning Jeremiah. He had passed them on through Nebuzaradan, the captain of his royal guard,</VERS>\n\t\t\t<VERS vnumber=\"12\"> \"Find Jeremiah and look out for him. Do not do anything to harm him, but do with him whatever he tells you.\" </VERS>\n\t\t\t<VERS vnumber=\"13\"> So Nebuzaradan, the captain of the royal guard, Nebushazban, who was a chief officer, Nergal-Sharezer, who was a high official, and all the other officers of the king of Babylon </VERS>\n\t\t\t<VERS vnumber=\"14\"> sent and had Jeremiah brought from the courtyard of the guardhouse. They turned him over to Gedaliah, the son of Ahikam and the grandson of Shaphan, to take him home with him. But Jeremiah stayed among the people.</VERS>\n\t\t\t<VERS vnumber=\"15\">  Now the LORD had spoken to Jeremiah while he was still confined in the courtyard of the guardhouse,</VERS>\n\t\t\t<VERS vnumber=\"16\"> \"Go and tell Ebed-Melech the Ethiopian, 'The LORD God of Israel who rules over all says, \"I will carry out against this city what I promised. It will mean disaster and not good fortune for it. When that disaster happens, you will be there to see it.</VERS>\n\t\t\t<VERS vnumber=\"17\"> But I will rescue you when it happens. I, the LORD, affirm it! You will not be handed over to those whom you fear.</VERS>\n\t\t\t<VERS vnumber=\"18\"> I will certainly save you. You will not fall victim to violence. You will escape with your life because you trust in me. I, the LORD, affirm it!\"'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"40\">\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Jeremiah after Nebuzaradan the captain of the royal guard had set him free at Ramah. He had taken him there in chains along with all the people from Jerusalem and Judah who were being carried off to exile to Babylon. </VERS>\n\t\t\t<VERS vnumber=\"2\"> The captain of the royal guard took Jeremiah aside and said to him, \"The LORD your God threatened this place with this disaster.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Now he has brought it about. The LORD has done just as he threatened to do. This disaster has happened because you people sinned against the LORD and did not obey him.</VERS>\n\t\t\t<VERS vnumber=\"4\"> But now, Jeremiah, today I will set you free from the chains on your wrists. If you would like to come to Babylon with me, come along and I will take care of you. But if you prefer not to come to Babylon with me, you are not required to do so. You are free to go anywhere in the land you want to go. Go wherever you choose.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> Before Jeremiah could turn to leave, the captain of the guard added, \"Go back to Gedaliah, the son of Ahikam and grandson of Shaphan, whom the king of Babylon appointed to govern the towns of Judah. Go back and live with him among the people. Or go wherever else you choose.\" Then the captain of the guard gave Jeremiah some food and a present and let him go. </VERS>\n\t\t\t<VERS vnumber=\"6\"> So Jeremiah went to Gedaliah son of Ahikam at Mizpah and lived there with him. He stayed there to live among the people who had been left in the land of Judah.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Now some of the officers of the Judean army and their troops had been hiding in the countryside. They heard that the king of Babylon had appointed Gedaliah son of Ahikam to govern the country. They also heard that he had been put in charge over the men, women, and children from the poorer classes of the land who had not been carried off into exile in Babylon.</VERS>\n\t\t\t<VERS vnumber=\"8\"> So all these officers and their troops came to Gedaliah at Mizpah. The officers who came were Ishmael son of Nethaniah, Johanan and Jonathan the sons of Kareah, Seraiah son of Tanhumeth, the sons of Ephai the Netophathite, and Jezaniah son of the Maacathite.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Gedaliah, the son of Ahikam and grandson of Shaphan, took an oath so as to give them and their troops some assurance of safety. \"Do not be afraid to submit to the Babylonians. Settle down in the land and submit to the king of Babylon. Then things will go well for you. </VERS>\n\t\t\t<VERS vnumber=\"10\"> I for my part will stay at Mizpah to represent you before the Babylonians whenever they come to us. You for your part go ahead and harvest the wine, the dates, the figs, and the olive oil, and store them in jars. Go ahead and settle down in the towns that you have taken over.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> Moreover, all the Judeans who were in Moab, Ammon, Edom, and all the other countries heard what had happened. They heard that the king of Babylon had allowed some people to stay in Judah and that he had appointed Gedaliah, the son of Ahikam and grandson of Shaphan, to govern them.</VERS>\n\t\t\t<VERS vnumber=\"12\"> So all these Judeans returned to the land of Judah from the places where they had been scattered. They came to Gedaliah at Mizpah. Thus they harvested a large amount of wine and dates and figs.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Johanan and all the officers of the troops that had been hiding in the open country came to Gedaliah at Mizpah.</VERS>\n\t\t\t<VERS vnumber=\"14\"> They said to him, \"Are you at all aware that King Baalis of Ammon has sent Ishmael son of Nethaniah to kill you?\" But Gedaliah son of Ahikam would not believe them. </VERS>\n\t\t\t<VERS vnumber=\"15\"> Then Johanan son of Kareah spoke privately to Gedaliah there at Mizpah, \"Let me go and kill Ishmael the son of Nethaniah before anyone knows about it. Otherwise he will kill you and all the Judeans who have rallied around you will be scattered. Then what remains of Judah will disappear.\" </VERS>\n\t\t\t<VERS vnumber=\"16\"> But Gedaliah son of Ahikam said to Johanan son of Kareah, \"Do not do that because what you are saying about Ishmael is not true.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"41\">\n\t\t\t<VERS vnumber=\"1\"> But in the seventh month Ishmael, the son of Nethaniah and grandson of Elishama who was a member of the royal family and had been one of Zedekiah's chief officers, came with ten of his men to Gedaliah son of Ahikam at Mizpah. While they were eating a meal together with him there at Mizpah, </VERS>\n\t\t\t<VERS vnumber=\"2\"> Ishmael son of Nethaniah and the ten men who were with him stood up, pulled out their swords, and killed Gedaliah, the son of Ahikam and grandson of Shaphan. Thus Ishmael killed the man that the king of Babylon had appointed to govern the country.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Ishmael also killed all the Judeans who were with Gedaliah at Mizpah and the Babylonian soldiers who happened to be there.</VERS>\n\t\t\t<VERS vnumber=\"4\"> On the day after Gedaliah had been murdered, before anyone even knew about it,</VERS>\n\t\t\t<VERS vnumber=\"5\"> eighty men arrived from Shechem, Shiloh, and Samaria. They had shaved off their beards, torn their clothes, and cut themselves to show they were mourning. They were carrying grain offerings and incense to present at the temple of the LORD in Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Ishmael son of Nethaniah went out from Mizpah to meet them. He was pretending to cry as he walked along. When he met them, he said to them, \"Come with me to meet Gedaliah son of Ahikam.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> But as soon as they were inside the city, Ishmael son of Nethaniah and the men who were with him slaughtered them and threw their bodies in a cistern. </VERS>\n\t\t\t<VERS vnumber=\"8\"> But there were ten men among them who said to Ishmael, \"Do not kill us. For we will give you the stores of wheat, barley, olive oil, and honey we have hidden in a field. So he spared their lives and did not kill them along with the rest.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Now the cistern where Ishmael threw all the dead bodies of those he had killed was a large one that King Asa had constructed as part of his defenses against King Baasha of Israel. Ishmael son of Nethaniah filled it with dead bodies.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Then Ishmael took captive all the people who were still left alive in Mizpah. This included the royal princesses and all the rest of the people in Mizpah that Nebuzaradan, the captain of the royal guard, had put under the authority of Gedaliah son of Ahikam. Ishmael son of Nethaniah took all these people captive and set out to cross over to the Ammonites.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Johanan son of Kareah and all the army officers who were with him heard about all the atrocities that Ishmael son of Nethaniah had committed. </VERS>\n\t\t\t<VERS vnumber=\"12\"> So they took all their troops and went to fight against Ishmael son of Nethaniah. They caught up with him near the large pool at Gibeon. </VERS>\n\t\t\t<VERS vnumber=\"13\"> When all the people that Ishmael had taken captive saw Johanan son of Kareah and all the army officers with him, they were glad. </VERS>\n\t\t\t<VERS vnumber=\"14\"> All those people that Ishmael had taken captive from Mizpah turned and went over to Johanan son of Kareah.</VERS>\n\t\t\t<VERS vnumber=\"15\"> But Ishmael son of Nethaniah managed to escape from Johanan along with eight of his men, and he went on over to Ammon.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Johanan son of Kareah and all the army officers who were with him led off all the people who had been left alive at Mizpah. They had rescued them from Ishmael son of Nethaniah after he killed Gedaliah son of Ahikam. They led off the men, women, children, soldiers, and court officials whom they had brought away from Gibeon.</VERS>\n\t\t\t<VERS vnumber=\"17\"> They set out to go to Egypt to get away from the Babylonians, but stopped at Geruth Kimham near Bethlehem.</VERS>\n\t\t\t<VERS vnumber=\"18\"> They were afraid of what the Babylonians might do because Ishmael son of Nethaniah had killed Gedaliah son of Ahikam, whom the king of Babylon had appointed to govern the country.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"42\">\n\t\t\t<VERS vnumber=\"1\"> Then all the army officers, including Johanan son of Kareah and Jezaniah son of Hoshaiah and all the people of every class, went to the prophet Jeremiah. </VERS>\n\t\t\t<VERS vnumber=\"2\"> They said to him, \"Please grant our request and pray to the LORD your God for all those of us who are still left alive here. For, as you yourself can see, there are only a few of us left out of the many there were before.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Pray that the LORD your God will tell us where we should go and what we should do.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> The prophet Jeremiah answered them, \"Agreed! I will indeed pray to the LORD your God as you have asked. I will tell you everything the LORD replies in response to you. I will not keep anything back from you.\" </VERS>\n\t\t\t<VERS vnumber=\"5\"> They answered Jeremiah, \"May the LORD be a true and faithful witness against us if we do not do just as the LORD sends you to tell us to do. </VERS>\n\t\t\t<VERS vnumber=\"6\"> We will obey what the LORD our God to whom we are sending you tells us to do. It does not matter whether we like what he tells us or not. We will obey what he tells us to do so that things will go well for us.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> Ten days later the LORD spoke to Jeremiah.</VERS>\n\t\t\t<VERS vnumber=\"8\"> So Jeremiah summoned Johanan son of Kareah and all the army officers who were with him and all the people of every class.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Then Jeremiah said to them, \"You sent me to the LORD God of Israel to make your request known to him. Here is what he says to you:</VERS>\n\t\t\t<VERS vnumber=\"10\"> 'If you will just stay in this land, I will build you up. I will not tear you down. I will firmly plant you. I will not uproot you. For I am filled with sorrow because of the disaster that I have brought on you.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Do not be afraid of the king of Babylon whom you now fear. Do not be afraid of him because I will be with you to save you and to rescue you from his power. I, the LORD, affirm it!</VERS>\n\t\t\t<VERS vnumber=\"12\"> I will have compassion on you so that he in turn will have mercy on you and allow you to return to your land.'</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"You must not disobey the LORD your God by saying, 'We will not stay in this land.'</VERS>\n\t\t\t<VERS vnumber=\"14\"> You must not say, 'No, we will not stay. Instead we will go and live in the land of Egypt where we will not face war, or hear the enemy's trumpet calls, or starve for lack of food.'</VERS>\n\t\t\t<VERS vnumber=\"15\"> If you people who remain in Judah do that, then listen to what the LORD says. The LORD God of Israel who rules over all says, 'If you are so determined to go to Egypt that you go and settle there, </VERS>\n\t\t\t<VERS vnumber=\"16\"> the wars you fear will catch up with you there in the land of Egypt. The starvation you are worried about will follow you there to Egypt. You will die there.</VERS>\n\t\t\t<VERS vnumber=\"17\"> All the people who are determined to go and settle in Egypt will die from war, starvation, or disease. No one will survive or escape the disaster I will bring on them.'</VERS>\n\t\t\t<VERS vnumber=\"18\"> For the LORD God of Israel who rules over all says, 'If you go to Egypt, I will pour out my wrath on you just as I poured out my anger and wrath on the citizens of Jerusalem. You will become an object of horror and ridicule, an example of those who have been cursed and that people use in pronouncing a curse. You will never see this place again.'</VERS>\n\t\t\t<VERS vnumber=\"19\"> \"The LORD has told you people who remain in Judah, 'Do not go to Egypt.' Be very sure of this: I warn you here and now.</VERS>\n\t\t\t<VERS vnumber=\"20\"> You are making a fatal mistake. For you sent me to the LORD your God and asked me, 'Pray to the LORD our God for us. Tell us what the LORD our God says and we will do it.'</VERS>\n\t\t\t<VERS vnumber=\"21\"> This day I have told you what he said. But you do not want to obey the LORD by doing what he sent me to tell you.</VERS>\n\t\t\t<VERS vnumber=\"22\"> So now be very sure of this: You will die from war, starvation, or disease in the place where you want to go and live.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"43\">\n\t\t\t<VERS vnumber=\"1\"> Jeremiah finished telling all the people all these things the LORD their God had sent him to tell them.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Then Azariah son of Hoshaiah, Johanan son of Kareah, and other arrogant men said to Jeremiah, \"You are telling a lie! The LORD our God did not send you to tell us, 'You must not go to Egypt and settle there.' </VERS>\n\t\t\t<VERS vnumber=\"3\"> But Baruch son of Neriah is stirring you up against us. He wants to hand us over to the Babylonians so that they will kill us or carry us off into exile in Babylon.\" </VERS>\n\t\t\t<VERS vnumber=\"4\"> So Johanan son of Kareah, all the army officers, and all the rest of the people did not obey the LORD's command to stay in the land.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Instead Johanan son of Kareah and all the army officers led off all the Judean remnant who had come back to live in the land of Judah from all the nations where they had been scattered.</VERS>\n\t\t\t<VERS vnumber=\"6\"> They also led off all the men, women, children, and royal princesses that Nebuzaradan, the captain of the royal guard, had left with Gedaliah, the son of Ahikam and grandson of Shaphan. This included the prophet Jeremiah and Baruch son of Neriah. </VERS>\n\t\t\t<VERS vnumber=\"7\"> They went on to Egypt because they refused to obey the LORD, and came to Tahpanhes.</VERS>\n\t\t\t<VERS vnumber=\"8\"> At Tahpanhes the LORD spoke to Jeremiah.</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"Take some large stones and bury them in the mortar of the clay pavement at the entrance of Pharaoh's residence here in Tahpanhes. Do it while the people of Judah present there are watching.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Then tell them, 'The LORD God of Israel who rules over all says, \"I will bring my servant King Nebuchadnezzar of Babylon. I will set his throne over these stones which I have buried. He will pitch his royal tent over them. </VERS>\n\t\t\t<VERS vnumber=\"11\"> He will come and attack Egypt. Those who are destined to die of disease will die of disease. Those who are destined to be carried off into exile will be carried off into exile. Those who are destined to die in war will die in war.</VERS>\n\t\t\t<VERS vnumber=\"12\"> He will set fire to the temples of the gods of Egypt. He will burn their gods or carry them off as captives. He will pick Egypt clean like a shepherd picks the lice from his clothing. He will leave there unharmed.</VERS>\n\t\t\t<VERS vnumber=\"13\"> He will demolish the sacred pillars in the temple of the sun in Egypt and will burn down the temples of the gods of Egypt.\"'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"44\">\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Jeremiah concerning all the Judeans who were living in the land of Egypt, those in Migdol, Tahpanhes, Memphis, and in the region of southern Egypt.</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"The LORD God of Israel who rules over all says, 'You have seen all the disaster I brought on Jerusalem and all the towns of Judah. Indeed, they now lie in ruins and are deserted.</VERS>\n\t\t\t<VERS vnumber=\"3\"> This happened because of the wickedness the people living there did. They made me angry by worshiping and offering sacrifice to other gods whom neither they nor you nor your ancestors previously knew.</VERS>\n\t\t\t<VERS vnumber=\"4\"> I sent my servants the prophets to you people over and over again warning you not to do this disgusting thing I hate.</VERS>\n\t\t\t<VERS vnumber=\"5\"> But the people of Jerusalem and Judah would not listen or pay any attention. They would not stop the wickedness they were doing nor quit sacrificing to other gods.</VERS>\n\t\t\t<VERS vnumber=\"6\"> So my anger and my wrath were poured out and burned like a fire through the towns of Judah and the streets of Jerusalem. That is why they have become the desolate ruins that they are today.'</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"So now the LORD, the God who rules over all, the God of Israel, asks, 'Why will you do such great harm to yourselves? Why should every man, woman, child, and baby of yours be destroyed from the midst of Judah? Why should you leave yourselves without a remnant? </VERS>\n\t\t\t<VERS vnumber=\"8\"> That is what will result from your making me angry by what you are doing. You are making me angry by sacrificing to other gods here in the land of Egypt where you live. You will be destroyed for doing that! You will become an example used in curses and an object of ridicule among all the nations of the earth.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Have you forgotten all the wicked things that have been done in the towns of Judah and in the streets of Jerusalem by your ancestors, by the kings of Judah and their wives, by you and your wives? </VERS>\n\t\t\t<VERS vnumber=\"10\"> To this day your people have shown no contrition! They have not revered me nor followed the laws and statutes I commanded you and your ancestors.'</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"Because of this, the LORD God of Israel who rules over all says, 'I am determined to bring disaster on you, even to the point of destroying all the Judeans here.</VERS>\n\t\t\t<VERS vnumber=\"12\"> I will see to it that all the Judean remnant that was determined to go and live in the land of Egypt will be destroyed. Here in the land of Egypt they will fall in battle or perish from starvation. People of every class will die in war or from starvation. They will become an object of horror and ridicule, an example of those who have been cursed and that people use in pronouncing a curse.</VERS>\n\t\t\t<VERS vnumber=\"13\"> I will punish those who live in the land of Egypt with war, starvation, and disease just as I punished Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"14\"> None of the Judean remnant who have come to live in the land of Egypt will escape or survive to return to the land of Judah. Though they long to return and live there, none of them shall return except a few fugitives.'\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> Then all the men who were aware that their wives were sacrificing to other gods, as well as all their wives, answered Jeremiah. There was a great crowd of them representing all the people who lived in northern and southern Egypt. They answered, </VERS>\n\t\t\t<VERS vnumber=\"16\"> \"We will not listen to what you claim the LORD has spoken to us!</VERS>\n\t\t\t<VERS vnumber=\"17\"> Instead we will do everything we vowed we would do. We will sacrifice and pour out drink offerings to the goddess called the Queen of Heaven just as we and our ancestors, our kings, and our leaders previously did in the towns of Judah and in the streets of Jerusalem. For then we had plenty of food, were well-off, and had no troubles.</VERS>\n\t\t\t<VERS vnumber=\"18\"> But ever since we stopped sacrificing and pouring out drink offerings to the Queen of Heaven, we have been in great need. Our people have died in wars or of starvation.\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> The women added, \"We did indeed sacrifice and pour out drink offerings to the Queen of Heaven. But it was with the full knowledge and approval of our husbands that we made cakes in her image and poured out drink offerings to her.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> Then Jeremiah replied to all the people, both men and women, who responded to him in this way.</VERS>\n\t\t\t<VERS vnumber=\"21\"> \"The LORD did indeed remember and call to mind what you did! He remembered the sacrifices you and your ancestors, your kings, your leaders, and all the rest of the people of the land offered to other gods in the towns of Judah and in the streets of Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Finally the LORD could no longer endure your wicked deeds and the disgusting things you did. That is why your land has become the desolate, uninhabited ruin that it is today. That is why it has become a proverbial example used in curses.</VERS>\n\t\t\t<VERS vnumber=\"23\"> You have sacrificed to other gods! You have sinned against the LORD! You have not obeyed the LORD! You have not followed his laws, his statutes, and his decrees! That is why this disaster that is evident to this day has happened to you.\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> Then Jeremiah spoke to all the people, particularly to all the women. \"Listen to what the LORD has to say all you people of Judah who are in Egypt. </VERS>\n\t\t\t<VERS vnumber=\"25\"> The LORD God of Israel who rules over all says, 'You women have confirmed by your actions what you vowed with your lips! You said, \"We will certainly carry out our vows to sacrifice and pour out drink offerings to the Queen of Heaven.\" Well, then fulfill your vows! Carry them out!'</VERS>\n\t\t\t<VERS vnumber=\"26\"> But listen to what the LORD has to say, all you people of Judah who are living in the land of Egypt. The LORD says, 'I hereby swear by my own great name that none of the people of Judah who are living anywhere in Egypt will ever again invoke my name in their oaths! Never again will any of them use it in an oath saying, \"As surely as the Lord GOD lives,.\"</VERS>\n\t\t\t<VERS vnumber=\"27\"> I will indeed see to it that disaster, not prosperity, happens to them. All the people of Judah who are in the land of Egypt will die in war or from starvation until not one of them is left. </VERS>\n\t\t\t<VERS vnumber=\"28\"> Some who survive in battle will return to the land of Judah from the land of Egypt. But they will be very few indeed! Then the Judean remnant who have come to live in the land of Egypt will know whose word proves true, mine or theirs.' </VERS>\n\t\t\t<VERS vnumber=\"29\"> Moreover the LORD says, 'I will make something happen to prove that I will punish you in this place. I will do it so that you will know that my threats to bring disaster on you will prove true.</VERS>\n\t\t\t<VERS vnumber=\"30\"> I, the LORD, promise that I will hand Pharaoh Hophra king of Egypt over to his enemies who are seeking to kill him. I will do that just as surely as I handed King Zedekiah of Judah over to King Nebuchadnezzar of Babylon, his enemy who was seeking to kill him.'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"45\">\n\t\t\t<VERS vnumber=\"1\"> The prophet Jeremiah spoke to Baruch son of Neriah while he was writing down in a scroll the words that Jeremiah spoke to him. This happened in the fourth year that Jehoiakim son of Josiah was ruling over Judah.</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"The LORD God of Israel has a message for you, Baruch.</VERS>\n\t\t\t<VERS vnumber=\"3\"> 'You have said, \"I feel so hopeless! For the LORD has added sorrow to my suffering. I am worn out from groaning. I can't find any rest.\"'\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> The LORD told Jeremiah, \"Tell Baruch, 'The LORD says, \"I am about to tear down what I have built and to uproot what I have planted. I will do this throughout the whole earth.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Are you looking for great things for yourself? Do not look for such things. For I, the LORD, affirm that I am about to bring disaster on all humanity. But I will allow you to escape with your life wherever you go.\"'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"46\">\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Jeremiah about the nations.</VERS>\n\t\t\t<VERS vnumber=\"2\"> He spoke about Egypt and the army of Pharaoh Necho king of Egypt which was encamped along the Euphrates River at Carchemish. Now this was the army that King Nebuchadnezzar of Babylon defeated in the fourth year that Jehoiakim son of Josiah was ruling over Judah.</VERS>\n\t\t\t<VERS vnumber=\"3\"> \"Fall into ranks with your shields ready! Prepare to march into battle!</VERS>\n\t\t\t<VERS vnumber=\"4\"> Harness the horses to the chariots! Mount your horses! Put on your helmets and take your positions! Sharpen you spears! Put on your armor!</VERS>\n\t\t\t<VERS vnumber=\"5\"> What do I see?\" says the LORD. \"The soldiers are terrified. They are retreating. They have been defeated. They are overcome with terror; they desert quickly without looking back.</VERS>\n\t\t\t<VERS vnumber=\"6\"> But even the swiftest cannot get away. Even the strongest cannot escape. There in the north by the Euphrates River they stumble and fall in defeat.</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"Who is this that rises like the Nile, like its streams turbulent at flood stage?</VERS>\n\t\t\t<VERS vnumber=\"8\"> Egypt rises like the Nile, like its streams turbulent at flood stage. Egypt says, 'I will arise and cover the earth. I will destroy cities and the people who inhabit them.'</VERS>\n\t\t\t<VERS vnumber=\"9\"> Go ahead and charge into battle, you horsemen! Drive furiously, you charioteers! Let the soldiers march out into battle, those from Ethiopia and Libya who carry shields, and those from Lydia who are armed with the bow.</VERS>\n\t\t\t<VERS vnumber=\"10\"> But that day belongs to the Lord God who rules over all. It is the day when he will pay back his enemies. His sword will devour them until its appetite is satisfied! It will drink their blood until it is full! For the Lord GOD who rules over all will offer them up as a sacrifice in the land of the north by the Euphrates River.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Go up to Gilead and get medicinal ointment, you dear poor people of Egypt. But it will prove useless no matter how much medicine you use; there will be no healing for you.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The nations will hear of your devastating defeat. your cries of distress will echo throughout the earth. In the panic of their flight one soldier will trip over another and both of them will fall down defeated.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> The LORD spoke to the prophet Jeremiah about Nebuchadnezzar coming to attack the land of Egypt.</VERS>\n\t\t\t<VERS vnumber=\"14\"> \"Make an announcement throughout Egypt. Proclaim it in Migdol, Memphis, and Tahpanhes. 'Take your positions and prepare to do battle. For the enemy army is destroying all the nations around you.'</VERS>\n\t\t\t<VERS vnumber=\"15\"> Why will your soldiers be defeated? They will not stand because I, the LORD, will thrust them down.</VERS>\n\t\t\t<VERS vnumber=\"16\"> I will make many stumble. They will fall over one another in their hurry to flee. They will say, 'Get up! Let's go back to our own people. Let's go back to our homelands because the enemy is coming to destroy us.'</VERS>\n\t\t\t<VERS vnumber=\"17\"> There at home they will say, 'Pharaoh king of Egypt is just a big noise! He has let the most opportune moment pass by.'</VERS>\n\t\t\t<VERS vnumber=\"18\"> I the King, whose name is the LORD who rules over all, swear this: I swear as surely as I live that a conqueror is coming. He will be as imposing as Mount Tabor is among the mountains, as Mount Carmel is against the backdrop of the sea.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Pack your bags for exile, you inhabitants of poor dear Egypt. For Memphis will be laid waste. It will lie in ruins and be uninhabited.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Egypt is like a beautiful young cow. But northern armies will attack her like swarms of stinging flies.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Even her mercenaries will prove to be like pampered, well-fed calves. For they too will turn and run away. They will not stand their ground when the time for them to be destroyed comes, the time for them to be punished.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Egypt will run away, hissing like a snake, as the enemy comes marching up in force. They will come against her with axes as if they were woodsmen chopping down trees.</VERS>\n\t\t\t<VERS vnumber=\"23\"> The population of Egypt is like a vast, impenetrable forest. But I, the LORD, affirm that the enemy will cut them down. For those who chop them down will be more numerous than locusts. They will be too numerous to count.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Poor dear Egypt will be put to shame. She will be handed over to the people from the north.\"</VERS>\n\t\t\t<VERS vnumber=\"25\"> The LORD God of Israel who rules over all says, \"I will punish Amon, the god of Thebes. I will punish Egypt, its gods, and its kings. I will punish Pharaoh and all who trust in him.</VERS>\n\t\t\t<VERS vnumber=\"26\"> I will hand them over to Nebuchadnezzar and his troops, who want to kill them. But later on, people will live in Egypt again as they did in former times. I, the LORD, affirm it!\"</VERS>\n\t\t\t<VERS vnumber=\"27\">  \"You descendants of Jacob, my servants, do not be afraid; do not be terrified, people of Israel. For I will rescue you and your descendants from the faraway lands where you are captives. The descendants of Jacob will return to their land and enjoy peace. They will be secure and no one will terrify them.</VERS>\n\t\t\t<VERS vnumber=\"28\"> I, the LORD, tell you not to be afraid, you descendants of Jacob, my servant, for I am with you. Though I completely destroy all the nations where I scatter you, I will not completely destroy you. I will indeed discipline you but only in due measure. I will not allow you to go entirely unpunished.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"47\">\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to the prophet Jeremiah about the Philistines before Pharaoh attacked Gaza.</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Look! Enemies are gathering in the north like water rising in a river. They will be like an overflowing stream. They will overwhelm the whole country and everything in it like a flood. They will overwhelm the cities and their inhabitants. People will cry out in alarm. Everyone living in the country will cry out in pain.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Fathers will hear the hoofbeats of the enemies' horses, the clatter of their chariots and the rumbling of their wheels. They will not turn back to save their children because they will be paralyzed with fear.</VERS>\n\t\t\t<VERS vnumber=\"4\"> For the time has come to destroy all the Philistines. The time has come to destroy all the help that remains for Tyre and Sidon. For I, the LORD, will destroy the Philistines, that remnant that came from the island of Crete.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The people of Gaza will shave their heads in mourning. The people of Ashkelon will be struck dumb. How long will you gash yourselves to show your sorrow, you who remain of Philistia's power?</VERS>\n\t\t\t<VERS vnumber=\"6\"> How long will you cry out, 'Oh, sword of the LORD, how long will it be before you stop killing? Go back into your sheath! Stay there and rest!'</VERS>\n\t\t\t<VERS vnumber=\"7\"> But how can it rest when I, the LORD, have given it orders? I have ordered it to attack the people of Ashkelon and the seacoast.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"48\">\n\t\t\t<VERS vnumber=\"1\"> The LORD God of Israel who rules over all spoke about Moab. \"Sure to be judged is Nebo! Indeed, it will be destroyed! Kiriathaim will suffer disgrace. It will be captured! Its fortress will suffer disgrace. It will be torn down!</VERS>\n\t\t\t<VERS vnumber=\"2\"> People will not praise Moab any more. The enemy will capture Heshbon and plot how to destroy Moab, saying, 'Come, let's put an end to that nation!' City of Madmen, you will also be destroyed. A destructive army will march against you.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Cries of anguish will arise in Horonaim, 'Oh, the ruin and great destruction!'</VERS>\n\t\t\t<VERS vnumber=\"4\"> \"Moab will be crushed. Her children will cry out in distress.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Indeed they will climb the slopes of Luhith, weeping continually as they go. For on the road down to Horonaim they will hear the cries of distress over the destruction.</VERS>\n\t\t\t<VERS vnumber=\"6\"> They will hear, 'Run! Save yourselves! Even if you must be like a lonely shrub in the desert!'</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"Moab, you trust in the things you do and in your riches. So you too will be conquered. Your god Chemosh will go into exile along with his priests and his officials.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The destroyer will come against every town. Not one town will escape. The towns in the valley will be destroyed. The cities on the high plain will be laid waste. I, the LORD, have spoken!</VERS>\n\t\t\t<VERS vnumber=\"9\"> Set up a gravestone for Moab, for it will certainly be laid in ruins! Its cities will be laid waste and become uninhabited.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> A curse on anyone who is lax in doing the LORD's work! A curse on anyone who keeps from carrying out his destruction!</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"From its earliest days Moab has lived undisturbed. It has never been taken into exile. Its people are like wine allowed to settle undisturbed on its dregs, never poured out from one jar to another. They are like wine which tastes like it always did, whose aroma has remained unchanged.</VERS>\n\t\t\t<VERS vnumber=\"12\"> But the time is coming when I will send men against Moab who will empty it out. They will empty the towns of their people, then will lay those towns in ruins. I, the LORD, affirm it!</VERS>\n\t\t\t<VERS vnumber=\"13\"> The people of Moab will be disappointed by their god Chemosh. They will be as disappointed as the people of Israel were when they put their trust in the calf god at Bethel.</VERS>\n\t\t\t<VERS vnumber=\"14\"> How can you men of Moab say, 'We are heroes, men who are mighty in battle?'</VERS>\n\t\t\t<VERS vnumber=\"15\"> Moab will be destroyed. Its towns will be invaded. Its finest young men will be slaughtered. I, the King, the LORD who rules over all, affirm it!</VERS>\n\t\t\t<VERS vnumber=\"16\"> Moab's destruction is at hand. Disaster will come on it quickly.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Mourn for that nation, all you nations living around it, all of you nations that know of its fame. Mourn and say, 'Alas, its powerful influence has been broken! Its glory and power have been done away!'</VERS>\n\t\t\t<VERS vnumber=\"18\"> Come down from your place of honor; sit on the dry ground, you who live in Dibon. For the one who will destroy Moab will attack you; he will destroy your fortifications.</VERS>\n\t\t\t<VERS vnumber=\"19\"> You who live in Aroer, stand by the road and watch. Question the man who is fleeing and the woman who is escaping. Ask them, 'What has happened?'</VERS>\n\t\t\t<VERS vnumber=\"20\"> They will answer, 'Moab is disgraced, for it has fallen! Wail and cry out in mourning! Announce along the Arnon River that Moab has been destroyed.'</VERS>\n\t\t\t<VERS vnumber=\"21\"> \"Judgment will come on the cities on the high plain: on Holon, Jahzah, and Mephaath, </VERS>\n\t\t\t<VERS vnumber=\"22\"> on Dibon, Nebo, and Beth Diblathaim,</VERS>\n\t\t\t<VERS vnumber=\"23\"> on Kiriathaim, Beth Gamul, and Beth Meon,</VERS>\n\t\t\t<VERS vnumber=\"24\"> on Kerioth and Bozrah. It will come on all the towns of Moab, both far and near.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Moab's might will be crushed. Its power will be broken. I, the LORD, affirm it!</VERS>\n\t\t\t<VERS vnumber=\"26\"> \"Moab has vaunted itself against me. So make him drunk with the wine of my wrath until he splashes around in his own vomit, until others treat him as a laughingstock.</VERS>\n\t\t\t<VERS vnumber=\"27\"> For did not you people of Moab laugh at the people of Israel? Did you think that they were nothing but thieves, that you shook your head in contempt every time you talked about them?</VERS>\n\t\t\t<VERS vnumber=\"28\"> Leave your towns, you inhabitants of Moab. Go and live in the cliffs. Be like a dove that makes its nest high on the sides of a ravine.</VERS>\n\t\t\t<VERS vnumber=\"29\"> I have heard how proud the people of Moab are, I know how haughty they are. I have heard how arrogant, proud, and haughty they are, what a high opinion they have of themselves.</VERS>\n\t\t\t<VERS vnumber=\"30\"> I, the LORD, affirm that I know how arrogant they are. But their pride is ill-founded. Their boastings will prove to be false.</VERS>\n\t\t\t<VERS vnumber=\"31\"> So I will weep with sorrow for Moab. I will cry out in sadness for all of Moab. I will moan for the people of Kir Heres.</VERS>\n\t\t\t<VERS vnumber=\"32\"> I will weep for the grapevines of Sibmah just like the town of Jazer weeps over them. Their branches once spread as far as the Dead Sea. They reached as far as the town of Jazer. The destroyer will ravage her fig, date, and grape crops.</VERS>\n\t\t\t<VERS vnumber=\"33\"> Joy and gladness will disappear from the fruitful land of Moab. I will stop the flow of wine from the winepresses. No one will stomp on the grapes there and shout for joy. The shouts there will be shouts of soldiers, not the shouts of those making wine.</VERS>\n\t\t\t<VERS vnumber=\"34\"> Cries of anguish raised from Heshbon and Elealeh will be sounded as far as Jahaz. They will be sounded from Zoar as far as Horonaim and Eglath Shelishiyah. For even the waters of Nimrim will be dried up.</VERS>\n\t\t\t<VERS vnumber=\"35\"> I will put an end in Moab to those who make offerings at her places of worship. I will put an end to those who sacrifice to other gods. I, the LORD, affirm it!</VERS>\n\t\t\t<VERS vnumber=\"36\"> So my heart moans for Moab like a flute playing a funeral song. Yes, like a flute playing a funeral song, my heart moans for the people of Kir Heres. For the wealth they have gained will perish.</VERS>\n\t\t\t<VERS vnumber=\"37\"> For all of them will shave their heads in mourning. They will all cut off their beards to show their sorrow. They will all make gashes in their hands. They will all put on sackcloth.</VERS>\n\t\t\t<VERS vnumber=\"38\"> On all the housetops in Moab and in all its public squares there will be nothing but mourning. For I will break Moab like an unwanted jar. I, the LORD, affirm it!</VERS>\n\t\t\t<VERS vnumber=\"39\"> Oh, how shattered Moab will be! Oh, how her people will wail! Oh, how she will turn away in shame! Moab will become an object of ridicule, a terrifying sight to all the nations that surround her.\"</VERS>\n\t\t\t<VERS vnumber=\"40\"> For the LORD says, \"Look! Like an eagle with outspread wings a nation will swoop down on Moab.</VERS>\n\t\t\t<VERS vnumber=\"41\"> Her towns will be captured. Her fortresses will be taken. At that time the soldiers of Moab will be frightened like a woman in labor.</VERS>\n\t\t\t<VERS vnumber=\"42\"> Moab will be destroyed and no longer be a nation, because she has vaunted herself against the LORD.</VERS>\n\t\t\t<VERS vnumber=\"43\"> Terror, pits, and traps are in store for the people who live in Moab. I, the LORD, affirm it!</VERS>\n\t\t\t<VERS vnumber=\"44\"> Anyone who flees at the sound of terror will fall into a pit. Anyone who climbs out of the pit will be caught in a trap. For the time is coming when I will punish the people of Moab. I, the LORD, affirm it!</VERS>\n\t\t\t<VERS vnumber=\"45\"> In the shadows of the walls of Heshbon those trying to escape will stand helpless. For a fire will burst forth from Heshbon. Flames will shoot out from the former territory of Sihon. They will burn the foreheads of the people of Moab, the skulls of those war-loving people.</VERS>\n\t\t\t<VERS vnumber=\"46\"> Moab, you are doomed! You people who worship Chemosh will be destroyed. Your sons will be taken away captive. Your daughters will be carried away into exile.</VERS>\n\t\t\t<VERS vnumber=\"47\"> Yet in days to come I will reverse Moab's ill fortune.\" says the LORD. The judgment against Moab ends here.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"49\">\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke about the Ammonites. \"Do you think there are not any people of the nation of Israel remaining? Do you think there are not any of them remaining to reinherit their land? Is that why you people who worship the god Milcom have taken possession of the territory of Gad and live in his cities?</VERS>\n\t\t\t<VERS vnumber=\"2\"> Because you did that, I, the LORD, affirm that a time is coming when I will make Rabbah, the capital city of Ammon, hear the sound of the battle cry. It will become a mound covered with ruins. Its villages will be burned to the ground. Then Israel will take back its land from those who took their land from them. I, the Lord, affirm it!</VERS>\n\t\t\t<VERS vnumber=\"3\"> Wail, you people in Heshbon, because Ai in Ammon is destroyed. Cry out in anguish, you people in the villages surrounding Rabbah. Put on sackcloth and cry out in mourning. Run about covered with gashes. For your god Milcom will go into exile along with his priests and officials.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Why do you brag about your great power? Your power is ebbing away, you rebellious people of Ammon, who trust in your riches and say, 'Who would dare to attack us?'</VERS>\n\t\t\t<VERS vnumber=\"5\"> I will bring terror on you from every side,\" says the Lord GOD who rules over all. \"You will be scattered in every direction. No one will gather the fugitives back together.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Yet in days to come I will reverse Ammon's ill fortune.\" says the LORD.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The LORD who rules over all spoke about Edom. \"Is wisdom no longer to be found in Teman? Can Edom's counselors not give her any good advice? Has all of their wisdom turned bad?</VERS>\n\t\t\t<VERS vnumber=\"8\"> Turn and flee! Take up refuge in remote places, you people who live in Dedan. For I will bring disaster on the descendants of Esau. I have decided it is time for me to punish them.</VERS>\n\t\t\t<VERS vnumber=\"9\"> If grape pickers came to pick your grapes, would they not leave a few grapes behind? If robbers came at night, would they not pillage only what they needed?</VERS>\n\t\t\t<VERS vnumber=\"10\"> But I will strip everything away from Esau's descendants. I will uncover their hiding places so they cannot hide. Their children, relatives, and neighbors will all be destroyed. Not one of them will be left!</VERS>\n\t\t\t<VERS vnumber=\"11\"> Leave your orphans behind and I will keep them alive. Your widows too can depend on me.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> For the LORD says, \"If even those who did not deserve to drink from the cup of my wrath must drink from it, do you think you will go unpunished? You will not go unpunished, but must certainly drink from the cup of my wrath.</VERS>\n\t\t\t<VERS vnumber=\"13\"> For I solemnly swear,\" says the LORD, \"that Bozrah will become a pile of ruins. It will become an object of horror and ridicule, an example to be used in curses. All the towns around it will lie in ruins forever.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> I said, \"I have heard a message from the LORD. A messenger has been sent among the nations to say, 'Gather your armies and march out against her! Prepare to do battle with her!'\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> The LORD says to Edom, \"I will certainly make you small among nations. I will make you despised by all humankind.</VERS>\n\t\t\t<VERS vnumber=\"16\"> The terror you inspire in others and the arrogance of your heart have deceived you. You may make your home in the clefts of the rocks; you may occupy the highest places in the hills. But even if you made your home where the eagles nest, I would bring you down from there,\" says the LORD.</VERS>\n\t\t\t<VERS vnumber=\"17\"> \"Edom will become an object of horror. All who pass by it will be filled with horror; they will hiss out their scorn because of all the disasters that have happened to it.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Edom will be destroyed like Sodom and Gomorrah and the towns that were around them. No one will live there. No human being will settle in it,\" says the LORD.</VERS>\n\t\t\t<VERS vnumber=\"19\"> \"A lion coming up from the thick undergrowth along the Jordan scatters the sheep in the pastureland around it. So too I will chase the Edomites off their land. Then I will appoint over it whomever I choose. For there is no one like me, and there is no one who can call me to account. There is no ruler who can stand up against me.</VERS>\n\t\t\t<VERS vnumber=\"20\"> So listen to what I, the LORD, have planned against Edom, what I intend to do to the people who live in Teman. Their little ones will be dragged off. I will completely destroy their land because of what they have done.</VERS>\n\t\t\t<VERS vnumber=\"21\"> The people of the earth will quake when they hear of their downfall. Their cries of anguish will be heard all the way to the Gulf of Aqaba.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Look! Like an eagle with outspread wings, a nation will soar up and swoop down on Bozrah. At that time the soldiers of Edom will be as fearful as a woman in labor.\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> The LORD spoke about Damascus. \"The people of Hamath and Arpad will be dismayed because they have heard bad news. Their courage will melt away because of worry. Their hearts will not be able to rest.</VERS>\n\t\t\t<VERS vnumber=\"24\"> The people of Damascus will lose heart and turn to flee. Panic will grip them. Pain and anguish will seize them like a woman in labor.</VERS>\n\t\t\t<VERS vnumber=\"25\"> How deserted will that once-famous city be, that city that was once filled with joy!</VERS>\n\t\t\t<VERS vnumber=\"26\"> For her young men will fall in her city squares. All her soldiers will be destroyed at that time,\" says the LORD who rules over all.</VERS>\n\t\t\t<VERS vnumber=\"27\"> \"I will set fire to the walls of Damascus; it will burn up the palaces of Ben Hadad.\"</VERS>\n\t\t\t<VERS vnumber=\"28\"> The LORD spoke about Kedar and the kingdoms of Hazor that King Nebuchadnezzar of Babylon conquered. \"Army of Babylon, go and attack Kedar. Lay waste those who live in the eastern desert.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Their tents and their flocks will be taken away. Their tent curtains, equipment, and camels will be carried off. People will shout to them, 'Terror is all around you!'\"</VERS>\n\t\t\t<VERS vnumber=\"30\"> The LORD says, \"Flee quickly, you who live in Hazor. Take up refuge in remote places. For King Nebuchadnezzar of Babylon has laid out plans to attack you. He has formed his strategy on how to defeat you.\"</VERS>\n\t\t\t<VERS vnumber=\"31\"> The LORD says, \"Army of Babylon, go and attack a nation that lives in peace and security. They have no gates or walls to protect them. They live all alone.</VERS>\n\t\t\t<VERS vnumber=\"32\"> Their camels will be taken as plunder. Their vast herds will be taken as spoil. I will scatter to the four winds those desert peoples who cut their hair short at the temples. I will bring disaster against them from every direction,\" says the LORD.</VERS>\n\t\t\t<VERS vnumber=\"33\"> \"Hazor will become a permanent wasteland, a place where only jackals live. No one will live there. No human being will settle in it.\"</VERS>\n\t\t\t<VERS vnumber=\"34\"> Early in the reign of King Zedekiah of Judah, the LORD spoke to the prophet Jeremiah about Elam.</VERS>\n\t\t\t<VERS vnumber=\"35\"> The LORD who rules over all said, \"I will kill all the archers of Elam, who are the chief source of her military might.</VERS>\n\t\t\t<VERS vnumber=\"36\"> I will cause enemies to blow through Elam from every direction like the winds blowing in from the four quarters of heaven. I will scatter the people of Elam to the four winds. There will not be any nation where the refugees of Elam will not go.</VERS>\n\t\t\t<VERS vnumber=\"37\"> I will make the people of Elam terrified of their enemies, who are seeking to kill them. I will vent my fierce anger and bring disaster upon them,\" says the LORD. \"I will send armies chasing after them until I have completely destroyed them.</VERS>\n\t\t\t<VERS vnumber=\"38\"> I will establish my sovereignty over Elam. I will destroy their king and their leaders,\" says the LORD.</VERS>\n\t\t\t<VERS vnumber=\"39\"> \"Yet in days to come I will reverse Elam's ill fortune.\" says the LORD.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"50\">\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke concerning Babylon and the land of Babylonia through the prophet Jeremiah.</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Announce the news among the nations! Proclaim it! Signal for people to pay attention! Declare the news! Do not hide it! Say: 'Babylon will be captured. Bel will be put to shame. Marduk will be dismayed. Babylon's idols will be put to shame. Her disgusting images will be dismayed.</VERS>\n\t\t\t<VERS vnumber=\"3\"> For a nation from the north will attack Babylon. It will lay her land waste. People and animals will flee out of it. No one will inhabit it.'</VERS>\n\t\t\t<VERS vnumber=\"4\"> \"When that time comes,\" says the LORD, \"the people of Israel and Judah will return to the land together. They will come back with tears of repentance as they seek the LORD their God.</VERS>\n\t\t\t<VERS vnumber=\"5\"> They will ask the way to Zion; they will turn their faces toward it. They will come and bind themselves to the LORD in a lasting covenant that will never be forgotten.</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"My people have been lost sheep. Their shepherds have allow them to go astray. They have wandered around in the mountains. They have roamed from one mountain and hill to another. They have forgotten their resting place.</VERS>\n\t\t\t<VERS vnumber=\"7\"> All who encountered them devoured them. Their enemies who did this said, 'We are not liable for punishment! For those people have sinned against the LORD, their true pasture. They have sinned against the LORD in whom their ancestors trusted.'</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"People of Judah, get out of Babylon quickly! Leave the land of Babylonia! Be the first to depart! Be like the male goats that lead the herd.</VERS>\n\t\t\t<VERS vnumber=\"9\"> For I will rouse into action and bring against Babylon a host of mighty nations from the land of the north. They will set up their battle lines against her. They will come from the north and capture her. Their arrows will be like a skilled soldier who does not return from the battle empty-handed.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Babylonia will be plundered. Those who plunder it will take all they want,\" says the LORD.</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"People of Babylonia, you plundered my people. That made you happy and glad. You frolic about like calves in a pasture. Your joyous sounds are like the neighs of a stallion.</VERS>\n\t\t\t<VERS vnumber=\"12\"> But Babylonia will be put to great shame. The land where you were born will be disgraced. Indeed, Babylonia will become the least important of all nations. It will become a dry and barren desert.</VERS>\n\t\t\t<VERS vnumber=\"13\"> After I vent my wrath on it Babylon will be uninhabited. It will be totally desolate. All who pass by will be filled with horror and will hiss out their scorn because of all the disasters that have happened to it.</VERS>\n\t\t\t<VERS vnumber=\"14\"> \"Take up your battle positions all around Babylon, all you soldiers who are armed with bows. Shoot all your arrows at her! Do not hold any back! For she has sinned against the LORD.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Shout the battle cry from all around the city. She will throw up her hands in surrender. Her towers will fall. Her walls will be torn down. Because I, the LORD, am wreaking revenge, take out your vengeance on her! Do to her as she has done!</VERS>\n\t\t\t<VERS vnumber=\"16\"> Kill all the farmers who sow the seed in the land of Babylon. Kill all those who wield the sickle at harvest time. Let all the foreigners return to their own people. Let them hurry back to their own lands to escape destruction by that enemy army.</VERS>\n\t\t\t<VERS vnumber=\"17\"> \"The people of Israel are like scattered sheep which lions have chased away. First the king of Assyria devoured them. Now last of all King Nebuchadnezzar of Babylon has gnawed their bones.</VERS>\n\t\t\t<VERS vnumber=\"18\"> So I, the LORD God of Israel who rules over all, say: 'I will punish the king of Babylon and his land just as I punished the king of Assyria.</VERS>\n\t\t\t<VERS vnumber=\"19\"> But I will restore the flock of Israel to their own pasture. They will graze on Mount Carmel and the land of Bashan. They will eat until they are full on the hills of Ephraim and the land of Gilead.</VERS>\n\t\t\t<VERS vnumber=\"20\"> When that time comes, no guilt will be found in Israel. No sin will be found in Judah. For I will forgive those of them I have allowed to survive. I, the LORD, affirm it!'\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> The LORD says, \"Attack the land of Merathaim and the people who live in Pekod! Pursue, kill, and completely destroy them! Do just as I have commanded you!</VERS>\n\t\t\t<VERS vnumber=\"22\"> The noise of battle can be heard in the land of Babylonia. There is the sound of great destruction.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Babylon hammered the whole world to pieces. But see how that 'hammer' has been broken and shattered! See what an object of horror Babylon has become among the nations!</VERS>\n\t\t\t<VERS vnumber=\"24\"> I set a trap for you, Babylon; you were caught before you knew it. You fought against me. So you were found and captured.</VERS>\n\t\t\t<VERS vnumber=\"25\"> I have opened up the place where my weapons are stored. I have brought out the weapons for carrying out my wrath. For I, the Lord GOD who rules over all, have work to carry out in the land of Babylonia.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Come from far away and attack Babylonia! Open up the places where she stores her grain! Pile her up in ruins! Destroy her completely! Do not leave anyone alive!</VERS>\n\t\t\t<VERS vnumber=\"27\"> Kill all her soldiers! Let them be slaughtered! They are doomed, for their day of reckoning has come, the time for them to be punished.\"</VERS>\n\t\t\t<VERS vnumber=\"28\"> Listen! Fugitives and refugees are coming from the land of Babylon. They are coming to Zion to declare there how the LORD our God is getting revenge, getting revenge for what they have done to his temple.</VERS>\n\t\t\t<VERS vnumber=\"29\"> \"Call for archers to come against Babylon! Summon against her all who draw the bow! Set up camp all around the city! Do not allow anyone to escape! Pay her back for what she has done. Do to her what she has done to others. For she has proudly defied me, the Holy One of Israel.</VERS>\n\t\t\t<VERS vnumber=\"30\"> So her young men will fall in her city squares. All her soldiers will be destroyed at that time,\" says the LORD.</VERS>\n\t\t\t<VERS vnumber=\"31\"> \"Listen! I am opposed to you, you proud city,\" says the Lord GOD who rules over all. \"Indeed, your day of reckoning has come, the time when I will punish you.</VERS>\n\t\t\t<VERS vnumber=\"32\"> You will stumble and fall, you proud city; no one will help you get up. I will set fire to your towns; it will burn up everything that surrounds you.\"</VERS>\n\t\t\t<VERS vnumber=\"33\"> The LORD who rules over all says, \"The people of Israel are oppressed. So too are the people of Judah. All those who took them captive are holding them prisoners. They refuse to set them free.</VERS>\n\t\t\t<VERS vnumber=\"34\"> But the one who will rescue them is strong. He is known as the LORD who rules over all. He will strongly champion their cause. As a result he will bring peace and rest to the earth, but trouble and turmoil to the people who inhabit Babylonia.</VERS>\n\t\t\t<VERS vnumber=\"35\"> \"Destructive forces will come against the Babylonians,\" says the LORD. \"They will come against the people who inhabit Babylonia, against her leaders and her men of wisdom.</VERS>\n\t\t\t<VERS vnumber=\"36\"> Destructive forces will come against her false prophets; they will be shown to be fools! Destructive forces will come against her soldiers; they will be filled with terror!</VERS>\n\t\t\t<VERS vnumber=\"37\"> Destructive forces will come against her horses and her chariots. Destructive forces will come against all the foreign troops within her; they will be as frightened as women! Destructive forces will come against her treasures; they will be taken away as plunder!</VERS>\n\t\t\t<VERS vnumber=\"38\"> A drought will come upon her land; her rivers and canals will be dried up. All of this will happen because her land is filled with idols. Her people act like madmen because of those idols they fear.</VERS>\n\t\t\t<VERS vnumber=\"39\"> Therefore desert creatures and jackals will live there. Ostriches will dwell in it too. But no people will ever live there again. No one will dwell there for all time to come.</VERS>\n\t\t\t<VERS vnumber=\"40\"> I will destroy Babylonia just like I did Sodom and Gomorrah and the neighboring towns. No one will live there. No human being will settle in it,\" says the LORD.</VERS>\n\t\t\t<VERS vnumber=\"41\"> \"Look! An army is about to come from the north. A mighty nation and many kings are stirring into action in faraway parts of the earth.</VERS>\n\t\t\t<VERS vnumber=\"42\"> Its soldiers are armed with bows and spears. They are cruel and show no mercy. They sound like the roaring sea as they ride forth on their horses. Lined up in formation like men going into battle, they are coming against you, fair Babylon!</VERS>\n\t\t\t<VERS vnumber=\"43\"> The king of Babylon will become paralyzed with fear when he hears news of their coming. Anguish will grip him, agony like that of a woman giving birth to a baby.</VERS>\n\t\t\t<VERS vnumber=\"44\"> \"A lion coming up from the thick undergrowth along the Jordan scatters the sheep in the pastureland around it. So too I will chase the Babylonians off of their land. Then I will appoint over it whomever I choose. For there is no one like me. There is no one who can call me to account. There is no ruler that can stand up against me.</VERS>\n\t\t\t<VERS vnumber=\"45\"> So listen to what I, the LORD, have planned against Babylon, what I intend to do to the people who inhabit the land of Babylonia. Their little ones will be dragged off. I will completely destroy their land because of what they have done.</VERS>\n\t\t\t<VERS vnumber=\"46\"> The people of the earth will quake when they hear Babylon has been captured. Her cries of anguish will be heard by the other nations.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"51\">\n\t\t\t<VERS vnumber=\"1\"> The LORD says, \"I will cause a destructive wind to blow against Babylon and the people who inhabit Babylonia.</VERS>\n\t\t\t<VERS vnumber=\"2\"> I will send people to winnow Babylonia like a wind blowing away chaff. They will winnow her and strip her land bare. This will happen when they come against her from every direction, when it is time to destroy her.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Do not give her archers time to string their bows or to put on their coats of armor. Do not spare any of her young men. Completely destroy her whole army.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Let them fall slain in the land of Babylonia, mortally wounded in the streets of her cities.</VERS>\n\t\t\t<VERS vnumber=\"5\"> \"For Israel and Judah will not be forsaken by their God, the LORD who rules over all. For the land of Babylonia is full of guilt against the Holy One of Israel.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Get out of Babylonia quickly, you foreign people. Flee to save your lives. Do not let yourselves be killed because of her sins. For it is time for the LORD to wreak his revenge. He will pay Babylonia back for what she has done.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Babylonia had been a gold cup in the LORD's hand. She had made the whole world drunk. The nations had drunk from the wine of her wrath. So they have all gone mad.</VERS>\n\t\t\t<VERS vnumber=\"8\"> But suddenly Babylonia will fall and be destroyed. Cry out in mourning over it! Get medicine for her wounds! Perhaps she can be healed!</VERS>\n\t\t\t<VERS vnumber=\"9\"> Foreigners living there will say, 'We tried to heal her, but she could not be healed. Let's leave Babylonia and each go back to his own country. For judgment on her will be vast in its proportions. It will be like it is piled up to heaven, stacked up into the clouds.'</VERS>\n\t\t\t<VERS vnumber=\"10\"> The exiles from Judah will say, 'The LORD has brought about a great deliverance for us! Come on, let's go and proclaim in Zion what the LORD our God has done!'</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"Sharpen your arrows! Fill your quivers! The LORD will arouse a spirit of hostility in the kings of Media. For he intends to destroy Babylonia. For that is how the LORD will get his revenge, how he will get his revenge for the Babylonians' destruction of his temple.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Give the signal to attack Babylon's wall! Bring more guards! Post them all around the city! Put men in ambush! For the LORD will do what he has planned. He will do what he said he would do to the people of Babylon.</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"You who live along the rivers of Babylon, the time of your end has come. You who are rich in plundered treasure, it is time for your lives to be cut off.</VERS>\n\t\t\t<VERS vnumber=\"14\"> The LORD who rules over all has solemnly sworn, 'I will fill your land with enemy soldiers. They will swarm over it like locusts. They will raise up shouts of victory over it.'</VERS>\n\t\t\t<VERS vnumber=\"15\"> He is the one who by his power made the earth. He is the one who by his wisdom fixed the world in place, by his understanding he spread out the heavens.</VERS>\n\t\t\t<VERS vnumber=\"16\"> When his voice thunders, the waters in the heavens roar. He makes the clouds rise from the far-off horizons. He makes the lightning flash out in the midst of the rain. He unleashes the wind from the places where he stores it.</VERS>\n\t\t\t<VERS vnumber=\"17\"> All idolaters will prove to be stupid and ignorant. Every goldsmith will be disgraced by the idol he made. For the image he forges is merely a sham. There is no breath in any of those idols.</VERS>\n\t\t\t<VERS vnumber=\"18\"> They are worthless, objects to be ridiculed. When the time comes to punish them, they will be destroyed.</VERS>\n\t\t\t<VERS vnumber=\"19\"> The LORD, who is the portion of the descendants of Jacob, is not like them. For he is the one who created everything, including the people of Israel whom he claims as his own. He is known as the LORD who rules over all.</VERS>\n\t\t\t<VERS vnumber=\"20\"> \"Babylon, you are my war club, my weapon for battle. I used you to smash nations. I used you to destroy kingdoms.</VERS>\n\t\t\t<VERS vnumber=\"21\"> I used you to smash horses and their riders. I used you to smash chariots and their drivers.</VERS>\n\t\t\t<VERS vnumber=\"22\"> I used you to smash men and women. I used you to smash old men and young men. I used you to smash young men and young women.</VERS>\n\t\t\t<VERS vnumber=\"23\"> I used you to smash shepherds and their flocks. I used you to smash farmers and their teams of oxen. I used you to smash governors and leaders.\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> \"But I will repay Babylon and all who live in Babylonia for all the wicked things they did in Zion right before the eyes of you Judeans,\" says the LORD.</VERS>\n\t\t\t<VERS vnumber=\"25\"> The LORD says, \"Beware! I am opposed to you, Babylon! You are like a destructive mountain that destroys all the earth. I will unleash my power against you; I will roll you off the cliffs and make you like a burned-out mountain.</VERS>\n\t\t\t<VERS vnumber=\"26\"> No one will use any of your stones as a cornerstone. No one will use any of them in the foundation of his house. For you will lie desolate forever,\" says the LORD.</VERS>\n\t\t\t<VERS vnumber=\"27\"> \"Raise up battle flags throughout the lands. Sound the trumpets calling the nations to do battle. Prepare the nations to do battle against Babylonia. Call for these kingdoms to attack her: Ararat, Minni, and Ashkenaz. Appoint a commander to lead the attack. Send horses against her like a swarm of locusts.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Prepare the nations to do battle against her. Prepare the kings of the Medes. Prepare their governors and all their leaders. Prepare all the countries they rule to do battle against her.</VERS>\n\t\t\t<VERS vnumber=\"29\"> The earth will tremble and writhe in agony. For the LORD will carry out his plan. He plans to make the land of Babylonia a wasteland where no one lives.</VERS>\n\t\t\t<VERS vnumber=\"30\"> The soldiers of Babylonia will stop fighting. They will remain in their fortified cities. They will lose their strength to do battle. They will be as frightened as women. The houses in her cities will be set on fire. The gates of her cities will be broken down.</VERS>\n\t\t\t<VERS vnumber=\"31\"> One runner after another will come to the king of Babylon. One messenger after another will come bringing news. They will bring news to the king of Babylon that his whole city has been captured.</VERS>\n\t\t\t<VERS vnumber=\"32\"> They will report that the fords have been captured, the reed marshes have been burned, the soldiers are terrified.</VERS>\n\t\t\t<VERS vnumber=\"33\"> For the LORD God of Israel who rules over all says, 'Fair Babylon will be like a threshing floor which has been trampled flat for harvest. The time for her to be cut down and harvested will come very soon.'</VERS>\n\t\t\t<VERS vnumber=\"34\"> \"King Nebuchadnezzar of Babylon devoured me and drove my people out. Like a monster from the deep he swallowed me. He filled his belly with my riches. He made me an empty dish. He completely cleaned me out.\"</VERS>\n\t\t\t<VERS vnumber=\"35\"> The person who lives in Zion says, \"May Babylon pay for the violence done to me and to my relatives.\" Jerusalem says, \"May those living in Babylonia pay for the bloodshed of my people.\"</VERS>\n\t\t\t<VERS vnumber=\"36\"> Therefore the LORD says, \"I will stand up for your cause. I will pay the Babylonians back for what they have done to you. I will dry up their sea. I will make their springs run dry.</VERS>\n\t\t\t<VERS vnumber=\"37\"> Babylon will become a heap of ruins. Jackals will make their home there. It will become an object of horror and of hissing scorn, a place where no one lives.</VERS>\n\t\t\t<VERS vnumber=\"38\"> The Babylonians are all like lions roaring for prey. They are like lion cubs growling for something to eat.</VERS>\n\t\t\t<VERS vnumber=\"39\"> When their appetites are all stirred up, I will set out a banquet for them. I will make them drunk so that they will pass out, they will fall asleep forever, they will never wake up,\" says the LORD.</VERS>\n\t\t\t<VERS vnumber=\"40\"> \"I will lead them off to be slaughtered like lambs, rams, and male goats.\"</VERS>\n\t\t\t<VERS vnumber=\"41\"> \"See how Babylon has been captured! See how the pride of the whole earth has been taken! See what an object of horror Babylon has become among the nations!</VERS>\n\t\t\t<VERS vnumber=\"42\"> The sea has swept over Babylon. She has been covered by a multitude of its waves.</VERS>\n\t\t\t<VERS vnumber=\"43\"> The towns of Babylonia have become heaps of ruins. She has become a dry and barren desert. No one lives in those towns any more. No one even passes through them.</VERS>\n\t\t\t<VERS vnumber=\"44\"> I will punish the god Bel in Babylon. I will make him spit out what he has swallowed. The nations will not come streaming to him any longer. Indeed, the walls of Babylon will fall.\"</VERS>\n\t\t\t<VERS vnumber=\"45\"> \"Get out of Babylon, my people! Flee to save your lives from the fierce anger of the LORD!</VERS>\n\t\t\t<VERS vnumber=\"46\"> Do not lose your courage or become afraid because of the reports that are heard in the land. For a report will come in one year. Another report will follow it in the next. There will be violence in the land with ruler fighting against ruler.\"</VERS>\n\t\t\t<VERS vnumber=\"47\"> \"So the time will certainly come when I will punish the idols of Babylon. Her whole land will be put to shame. All her mortally wounded will collapse in her midst.</VERS>\n\t\t\t<VERS vnumber=\"48\"> Then heaven and earth and all that is in them will sing for joy over Babylon. For destroyers from the north will attack it,\" says the LORD.</VERS>\n\t\t\t<VERS vnumber=\"49\"> \"Babylon must fall because of the Israelites she has killed, just as the earth's mortally wounded fell because of Babylon.</VERS>\n\t\t\t<VERS vnumber=\"50\"> You who have escaped the sword, go, do not delay. Remember the LORD in a faraway land. Think about Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"51\"> 'We are ashamed because we have been insulted. Our faces show our disgrace. For foreigners have invaded the holy rooms in the LORD's temple.'</VERS>\n\t\t\t<VERS vnumber=\"52\"> Yes, but the time will certainly come,\" says the LORD, \"when I will punish her idols. Throughout her land the mortally wounded will groan.</VERS>\n\t\t\t<VERS vnumber=\"53\"> Even if Babylon climbs high into the sky and fortifies her elevated stronghold, I will send destroyers against her,\" says the LORD.</VERS>\n\t\t\t<VERS vnumber=\"54\"> Cries of anguish will come from Babylon, the sound of great destruction from the land of the Babylonians.</VERS>\n\t\t\t<VERS vnumber=\"55\"> For the LORD is ready to destroy Babylon, and put an end to her loud noise. Their waves will roar like turbulent waters. They will make a deafening noise.</VERS>\n\t\t\t<VERS vnumber=\"56\"> For a destroyer is attacking Babylon. Her warriors will be captured; their bows will be broken. For the LORD is a God who punishes; he pays back in full.</VERS>\n\t\t\t<VERS vnumber=\"57\"> \"I will make her officials and wise men drunk, along with her governors, leaders, and warriors. They will fall asleep forever and never wake up,\" says the King whose name is the LORD who rules over all.</VERS>\n\t\t\t<VERS vnumber=\"58\"> This is what the LORD who rules over all says, \"Babylon's thick wall will be completely demolished. Her high gates will be set on fire. The peoples strive for what does not satisfy. The nations grow weary trying to get what will be destroyed.\"</VERS>\n\t\t\t<VERS vnumber=\"59\"> This is the order Jeremiah the prophet gave to Seraiah son of Neriah, son of Mahseiah, when he went to King Zedekiah of Judah in Babylon during the fourth year of his reign. (Seraiah was a quartermaster.)</VERS>\n\t\t\t<VERS vnumber=\"60\"> Jeremiah recorded on one scroll all the judgments that would come upon Babylon, all these prophecies written about Babylon.</VERS>\n\t\t\t<VERS vnumber=\"61\"> Then Jeremiah said to Seraiah, \"When you arrive in Babylon, make sure you read aloud all these prophecies.</VERS>\n\t\t\t<VERS vnumber=\"62\"> Then say, 'O LORD, you have announced that you will destroy this place so that no people or animals live in it any longer. Certainly it will lie desolate forever!'</VERS>\n\t\t\t<VERS vnumber=\"63\"> When you finish reading this scroll aloud, tie a stone to it and throw it into the middle of the Euphrates River.</VERS>\n\t\t\t<VERS vnumber=\"64\"> Then say, 'In the same way Babylon will sink and never rise again because of the judgments I am ready to bring upon her; they will grow faint.'\" The prophecies of Jeremiah end here.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"52\">\n\t\t\t<VERS vnumber=\"1\">  Zedekiah was twenty-one years old when he became king, and he ruled in Jerusalem for eleven years. His mother's name was Hamutal daughter of Jeremiah, from Libnah. </VERS>\n\t\t\t<VERS vnumber=\"2\"> He did what displeased the LORD just as Jehoiakim had done.</VERS>\n\t\t\t<VERS vnumber=\"3\"> What follows is a record of what happened to Jerusalem and Judah because of the LORD's anger when he drove them out of his sight. Zedekiah rebelled against the king of Babylon. </VERS>\n\t\t\t<VERS vnumber=\"4\"> King Nebuchadnezzar of Babylon came against Jerusalem with his whole army and set up camp outside it. They built siege ramps all around it. He arrived on the tenth day of the tenth month in the ninth year that Zedekiah ruled over Judah.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The city remained under siege until Zedekiah's eleventh year.</VERS>\n\t\t\t<VERS vnumber=\"6\"> By the ninth day of the fourth month the famine in the city was so severe the residents had no food. </VERS>\n\t\t\t<VERS vnumber=\"7\"> They broke through the city walls, and all the soldiers tried to escape. They left the city during the night. They went through the gate between the two walls that is near the king's garden. (The Babylonians had the city surrounded.) Then they headed for the Jordan Valley.</VERS>\n\t\t\t<VERS vnumber=\"8\"> But the Babylonian army chased after the king. They caught up with Zedekiah in the plains of Jericho, and his entire army deserted him. </VERS>\n\t\t\t<VERS vnumber=\"9\"> They captured him and brought him up to the king of Babylon at Riblah in the territory of Hamath and he passed sentence on him there. </VERS>\n\t\t\t<VERS vnumber=\"10\"> The king of Babylon had Zedekiah's sons put to death while Zedekiah was forced to watch. He also had all the nobles of Judah put to death there at Riblah.</VERS>\n\t\t\t<VERS vnumber=\"11\"> He had Zedekiah's eyes put out and had him bound in chains. Then the king of Babylon had him led off to Babylon and he was imprisoned there until the day he died.</VERS>\n\t\t\t<VERS vnumber=\"12\"> On the tenth day of the fifth month, in the nineteenth year of King Nebuchadnezzar of Babylon, Nebuzaradan, the captain of the royal guard who served the king of Babylon, arrived in Jerusalem. </VERS>\n\t\t\t<VERS vnumber=\"13\"> He burned down the LORD's temple, the royal palace, and all the houses in Jerusalem, including every large house.</VERS>\n\t\t\t<VERS vnumber=\"14\"> The whole Babylonian army that came with the captain of the royal guard tore down the walls that surrounded Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Nebuzaradan, the captain of the royal guard, took into exile some of the poor, the rest of the people who remained in the city, those who had deserted to him, and the rest of the craftsmen.</VERS>\n\t\t\t<VERS vnumber=\"16\"> But he left behind some of the poor and gave them fields and vineyards.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The Babylonians broke the two bronze pillars in the temple of the LORD, as well as the movable stands and the large bronze basin called the \"The Sea.\" They took all the bronze to Babylon.</VERS>\n\t\t\t<VERS vnumber=\"18\"> They also took the pots, shovels, trimming shears, basins, pans, and all the bronze utensils used by the priests.</VERS>\n\t\t\t<VERS vnumber=\"19\"> The captain of the royal guard took the gold and silver bowls, censers, basins, pots, lampstands, pans, and vessels.</VERS>\n\t\t\t<VERS vnumber=\"20\"> The bronze of the items that King Solomon made for the LORD's temple (including the two pillars, the large bronze basin called \"The Sea,\" the twelve bronze bulls under \"The Sea,\" and the movable stands) was too heavy to be weighed.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Each of the pillars was about 27 feet high, about 18 feet in circumference, three inches thick, and hollow. </VERS>\n\t\t\t<VERS vnumber=\"22\"> The bronze top of one pillar was about seven and one-half feet high and had bronze latticework and pomegranate-shaped ornaments all around it. The second pillar with its pomegranate-shaped ornaments was like it. </VERS>\n\t\t\t<VERS vnumber=\"23\"> There were ninety-six pomegranate-shaped ornaments on the sides; in all there were one hundred pomegranate-shaped ornaments over the latticework that went around it.</VERS>\n\t\t\t<VERS vnumber=\"24\"> The captain of the royal guard took Seraiah the chief priest, Zephaniah the priest who was second in rank, and the three doorkeepers.</VERS>\n\t\t\t<VERS vnumber=\"25\"> From the city he took an official who was in charge of the soldiers, seven of the king's advisers who were discovered in the city, an official army secretary who drafted citizens for military service, and sixty citizens who were discovered in the middle of the city. </VERS>\n\t\t\t<VERS vnumber=\"26\"> Nebuzaradan, the captain of the royal guard, took them and brought them to the king of Babylon at Riblah.</VERS>\n\t\t\t<VERS vnumber=\"27\"> The king of Babylon ordered them to be executed at Riblah in the territory of Hamath. So Judah was taken into exile away from its land. </VERS>\n\t\t\t<VERS vnumber=\"28\"> Here is the official record of the number of people Nebuchadnezzar carried into exile: In the seventh year, 3,023 Jews; </VERS>\n\t\t\t<VERS vnumber=\"29\"> in Nebuchadnezzar's eighteenth year, 832 people from Jerusalem; </VERS>\n\t\t\t<VERS vnumber=\"30\"> in Nebuchadnezzar's twenty-third year, Nebuzaradan, the captain of the royal guard, carried into exile 745 Judeans. In all 4,600 people went into exile.</VERS>\n\t\t\t<VERS vnumber=\"31\"> In the thirty-seventh year of the exile of King Jehoiachin of Judah, on the twenty-fifth day of the twelfth month, Evil-Merodach, in the first year of his reign, pardoned King Jehoiachin of Judah and released him from prison. </VERS>\n\t\t\t<VERS vnumber=\"32\"> He spoke kindly to him and gave him a more prestigious position than the other kings who were with him in Babylon. </VERS>\n\t\t\t<VERS vnumber=\"33\"> Jehoiachin took off his prison clothes and ate daily in the king's presence for the rest of his life. </VERS>\n\t\t\t<VERS vnumber=\"34\"> He was given daily provisions by the king of Babylon for the rest of his life until the day he died.</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"25\" bname=\"Lamentations\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\">  Alas! The city once full of people now sits all alone! The prominent lady among the nations has become a widow! The princess who once ruled the provinces has become a forced laborer!&amp;u05D1; (Bet)</VERS>\n\t\t\t<VERS vnumber=\"2\"> She weeps bitterly at night; tears stream down her cheeks. She has no one to comfort her among all her lovers. All her friends have betrayed her; they have become her enemies.&amp;u05D2; (Gimel)</VERS>\n\t\t\t<VERS vnumber=\"3\"> Judah has departed into exile under affliction and harsh oppression. She lives among the nations; she has found no resting place. All who pursued her overtook her in narrow straits.&amp;u05D3; (Dalet)</VERS>\n\t\t\t<VERS vnumber=\"4\"> The roads to Zion mourn because no one travels to the festivals. All her city gates are deserted; her priests groan. Her virgins grieve; she is in bitter anguish!&amp;u05D4; (He)</VERS>\n\t\t\t<VERS vnumber=\"5\"> Her foes subjugated her; her enemies are at ease. For the LORD afflicted her because of her many acts of rebellion. Her children went away captive before the enemy.&amp;u05D5; (Vav)</VERS>\n\t\t\t<VERS vnumber=\"6\"> All of Daughter Zion's splendor has departed. Her leaders became like deer; they found no pasture, so they were too exhausted to escape from the hunter.&amp;u05D6; (Zayin)</VERS>\n\t\t\t<VERS vnumber=\"7\"> Jerusalem remembers, when she became a poor homeless person, all her treasures that she owned in days of old. When her people fell into an enemy's grip, none of her allies came to her rescue. Her enemies gloated over her; they sneered at her downfall.&amp;u05D7; (Khet)</VERS>\n\t\t\t<VERS vnumber=\"8\"> Jerusalem committed terrible sin; therefore she became an object of scorn. All who admired her have despised her because they have seen her nakedness. She groans aloud and turns away in shame.&amp;u05D8; (Tet)</VERS>\n\t\t\t<VERS vnumber=\"9\"> Her menstrual flow has soiled her clothing; she did not consider the consequences of her sin. Her demise was astonishing, and there was no one to comfort her. She cried, \"Look, O LORD, on my affliction because my enemy boasts!\"&amp;u05D9; (Yod)</VERS>\n\t\t\t<VERS vnumber=\"10\"> An enemy grabbed all her valuables. Indeed she watched in horror as Gentiles invaded her holy temple, those whom you had commanded: \"They must not enter your assembly place.\"&amp;u05DB; (Kaf)</VERS>\n\t\t\t<VERS vnumber=\"11\"> All her people groaned as they searched for a morsel of bread. They exchanged their valuables for just enough food to stay alive. \"Look, O LORD! Consider that I have become worthless!\"&amp;u05DC; (Lamed)</VERS>\n\t\t\t<VERS vnumber=\"12\"> Is it nothing to you, all you who pass by on the road? Look and see! Is there any pain like mine? The Lord has afflicted me, he has inflicted it on me when he burned with anger.&amp;u05DE; (Mem)</VERS>\n\t\t\t<VERS vnumber=\"13\"> He sent down fire into my bones, and it overcame them. He spread out a trapper's net for my feet; he made me turn back. He has made me desolate; I am faint all day long.&amp;u05E0; (Nun)</VERS>\n\t\t\t<VERS vnumber=\"14\"> My sins are bound around my neck like a yoke; they are fastened together by his hand. He has placed his yoke on my neck; he has sapped my strength. The Lord has handed me over to those whom I cannot resist.&amp;u05E1; (Samek)</VERS>\n\t\t\t<VERS vnumber=\"15\"> He rounded up all my mighty ones; The Lord did this in my midst. He summoned an assembly against me to shatter my young men. The Lord has stomped like grapes the virgin daughter, Judah.&amp;u05E2; (Ayin)</VERS>\n\t\t\t<VERS vnumber=\"16\"> I weep because of these things; my eyes flow with tears. For there is no one in sight who can comfort me or encourage me. My children are desolated because an enemy has prevailed.&amp;u05E4; (Pe)</VERS>\n\t\t\t<VERS vnumber=\"17\"> Zion spread out her hands, but there is no one to comfort her. The LORD has issued a decree against Jacob; his neighbors have become his enemies. Jerusalem has become like filthy garbage in their midst.&amp;u05E6; (Tsade)</VERS>\n\t\t\t<VERS vnumber=\"18\"> The LORD is right to judge me! Yes, I rebelled against his commands. Please listen, all you nations, and look at my suffering! My young women and men have gone into exile.&amp;u05E7; (Qof)</VERS>\n\t\t\t<VERS vnumber=\"19\"> I called for my lovers, but they had deceived me. My priests and my elders perished in the city. Truly they had searched for food to keep themselves alive.&amp;u05E8; (Resh)</VERS>\n\t\t\t<VERS vnumber=\"20\"> Look, O LORD! I am distressed; my stomach is in knots! My heart is pounding inside me. Yes, I was terribly rebellious! Out in the street the sword bereaves a mother of her children; Inside the house death is present.&amp;u05E9; (Sin/Shin)</VERS>\n\t\t\t<VERS vnumber=\"21\"> They have heard that I groan, yet there is no one to comfort me. All my enemies have heard of my trouble; they are glad that you have brought it about. Bring about the day of judgment that you promised so that they may end up like me!&amp;u05EA; (Tav)</VERS>\n\t\t\t<VERS vnumber=\"22\"> Let all their wickedness come before you; afflict them just as you have afflicted me because of all my acts of rebellion. For my groans are many, and my heart is sick with sorrow.&amp;u05D0; (Alef)</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> Alas! The Lord has covered Daughter Zion with his anger. He has thrown down the splendor of Israel from heaven to earth; he did not protect his temple when he displayed his anger.&amp;u05D1; (Bet)</VERS>\n\t\t\t<VERS vnumber=\"2\"> The Lord destroyed mercilessly all the homes of Jacob's descendants. In his anger he tore down the fortified cities of Daughter Judah. He knocked to the ground and humiliated the kingdom and its rulers.&amp;u05D2; (Gimel)</VERS>\n\t\t\t<VERS vnumber=\"3\"> In fierce anger he destroyed the whole army of Israel. He withdrew his right hand as the enemy attacked. He was like a raging fire in the land of Jacob; it consumed everything around it.&amp;u05D3; (Dalet)</VERS>\n\t\t\t<VERS vnumber=\"4\"> He prepared his bow like an enemy; his right hand was ready to shoot. Like a foe he killed everyone, even our strong young men; he has poured out his anger like fire on the tent of Daughter Zion.&amp;u05D4; (He)</VERS>\n\t\t\t<VERS vnumber=\"5\"> The Lord, like an enemy, destroyed Israel. He destroyed all her palaces; he ruined her fortified cities. He made everyone in Daughter Judah mourn and lament.&amp;u05D5; (Vav)</VERS>\n\t\t\t<VERS vnumber=\"6\"> He destroyed his temple as if it were a vineyard; he destroyed his appointed meeting place. The LORD has made those in Zion forget both the festivals and the Sabbaths. In his fierce anger he has spurned both king and priest.&amp;u05D6; (Zayin)</VERS>\n\t\t\t<VERS vnumber=\"7\"> The Lord rejected his altar and abhorred his temple. He handed over to the enemy her palace walls; the enemy shouted in the LORD'S temple as if it were a feast day.&amp;u05D7; (Khet)</VERS>\n\t\t\t<VERS vnumber=\"8\"> The LORD was determined to tear down Daughter Zion's wall. He prepared to knock it down; he did not withdraw his hand from destroying. He made the ramparts and fortified walls lament; together they mourned their ruin.&amp;u05D8; (Tet)</VERS>\n\t\t\t<VERS vnumber=\"9\"> Her city gates have fallen to the ground; he smashed to bits the bars that lock her gates. Her king and princes were taken into exile; there is no more guidance available. As for her prophets, they no longer receive a vision from the LORD.&amp;u05D9; (Yod)</VERS>\n\t\t\t<VERS vnumber=\"10\"> The elders of Daughter Zion sit on the ground in silence. They have thrown dirt on their heads; They have dressed in sackcloth. Jerusalem's young women stare down at the ground.&amp;u05DB; (Kaf)</VERS>\n\t\t\t<VERS vnumber=\"11\"> My eyes are worn out from weeping; my stomach is in knots. My heart is poured out on the ground due to the destruction of my helpless people; children and infants faint in the town squares.&amp;u05DC; (Lamed)</VERS>\n\t\t\t<VERS vnumber=\"12\"> Children say to their mothers, \"Where are food and drink?\" They faint like a wounded warrior in the city squares. They die slowly in their mothers' arms.&amp;u05DE; (Mem)</VERS>\n\t\t\t<VERS vnumber=\"13\"> With what can I equate you? To what can I compare you, O Daughter Jerusalem? To what can I liken you so that I might comfort you, O Virgin Daughter Zion? Your wound is as deep as the sea. Who can heal you?&amp;u05E0; (Nun)</VERS>\n\t\t\t<VERS vnumber=\"14\"> Your prophets saw visions for you that were worthless lies. They failed to expose your sin so as to restore your fortunes. They saw oracles for you that were worthless lies.&amp;u05E1; (Samek)</VERS>\n\t\t\t<VERS vnumber=\"15\"> All who passed by on the road clapped their hands to mock you. They sneered and shook their heads at Daughter Jerusalem. \"Ha! Is this the city they called 'The perfection of beauty, the source of joy of the whole earth!'?\"&amp;u05E4; (Pe)</VERS>\n\t\t\t<VERS vnumber=\"16\"> All your enemies gloated over you. They sneered and gnashed their teeth; they said, \"We have destroyed her! Ha! We have waited a long time for this day. We have lived to see it!\"&amp;u05E2; (Ayin)</VERS>\n\t\t\t<VERS vnumber=\"17\"> The LORD has done what he planned; he has fulfilled his promise that he threatened long ago: He has overthrown you without mercy and has enabled the enemy to gloat over you; he has exalted your adversaries' power.&amp;u05E6; (Tsade)</VERS>\n\t\t\t<VERS vnumber=\"18\"> Cry out from your heart to the Lord, O wall of Daughter Zion! Make your tears flow like a river all day and all night long! Do not rest; do not let your tears stop!&amp;u05E7; (Qof)</VERS>\n\t\t\t<VERS vnumber=\"19\"> Get up! Cry out in the night when the night watches start! Pour out your heart like water before the face of the Lord! Lift up your hands to him for your children's lives; they are fainting at every street corner.&amp;u05E8; (Resh)</VERS>\n\t\t\t<VERS vnumber=\"20\"> Look, O LORD! Consider! Whom have you ever afflicted like this? Should women eat their offspring, their healthy infants? Should priest and prophet be killed in the Lord's sanctuary?&amp;u05E9; (Sin/Shin)</VERS>\n\t\t\t<VERS vnumber=\"21\"> The young boys and old men lie dead on the ground in the streets. My young women and my young men have fallen by the sword. You killed them when you were angry; you slaughtered them without mercy.&amp;u05EA; (Tav)</VERS>\n\t\t\t<VERS vnumber=\"22\"> As if it were a feast day, you call enemies to terrify me on every side. On the day of the Lord's anger no one escaped or survived. My enemy has finished off those healthy infants whom I bore and raised.&amp;u05D0; (Alef)</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> I am the man who has experienced affliction from the rod of his wrath.</VERS>\n\t\t\t<VERS vnumber=\"2\"> He drove me into captivity and made me walk in darkness and not light.</VERS>\n\t\t\t<VERS vnumber=\"3\"> He repeatedly attacks me, he turns his hand against me all day long.&amp;u05D1; (Bet)</VERS>\n\t\t\t<VERS vnumber=\"4\"> He has made my mortal skin waste away; he has broken my bones.</VERS>\n\t\t\t<VERS vnumber=\"5\"> He has besieged and surrounded me with bitter hardship.</VERS>\n\t\t\t<VERS vnumber=\"6\"> He has made me reside in deepest darkness like those who died long ago.&amp;u05D2; (Gimel)</VERS>\n\t\t\t<VERS vnumber=\"7\"> He has walled me in so that I cannot get out; he has weighted me down with heavy prison chains.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Also, when I cry out desperately for help, he has shut out my prayer.</VERS>\n\t\t\t<VERS vnumber=\"9\"> He has blocked every road I take with a wall of hewn stones; he has made every path impassable.&amp;u05D3; (Dalet)</VERS>\n\t\t\t<VERS vnumber=\"10\"> To me he is like a bear lying in ambush, like a hidden lion stalking its prey.</VERS>\n\t\t\t<VERS vnumber=\"11\"> He has obstructed my paths and torn me to pieces; he has made me desolate.</VERS>\n\t\t\t<VERS vnumber=\"12\"> He drew his bow and made me the target for his arrow.&amp;u05D4; (He)</VERS>\n\t\t\t<VERS vnumber=\"13\"> He shot his arrows into my heart.</VERS>\n\t\t\t<VERS vnumber=\"14\"> I have become the laughingstock of all people, their mocking song all day long.</VERS>\n\t\t\t<VERS vnumber=\"15\"> He has given me my fill of bitter herbs and made me drunk with bitterness.&amp;u05D5; (Vav)</VERS>\n\t\t\t<VERS vnumber=\"16\"> He ground my teeth in gravel; he trampled me in the dust.</VERS>\n\t\t\t<VERS vnumber=\"17\"> I am deprived of peace; I have forgotten what happiness is.</VERS>\n\t\t\t<VERS vnumber=\"18\"> So I said, \"My endurance has expired; I have lost all hope of deliverance from the LORD.\"&amp;u05D6; (Zayin)</VERS>\n\t\t\t<VERS vnumber=\"19\"> Remember my impoverished and homeless condition, which is a bitter poison.</VERS>\n\t\t\t<VERS vnumber=\"20\"> I continually think about this, and I am depressed.</VERS>\n\t\t\t<VERS vnumber=\"21\"> But this I call to mind; therefore I have hope:&amp;u05D7; (Khet)</VERS>\n\t\t\t<VERS vnumber=\"22\"> The LORD's loyal kindness never ceases; his compassions never end.</VERS>\n\t\t\t<VERS vnumber=\"23\"> They are fresh every morning; your faithfulness is abundant!</VERS>\n\t\t\t<VERS vnumber=\"24\"> \"My portion is the Lord,\" I have said to myself, so I will put my hope in him.&amp;u05D8; (Tet)</VERS>\n\t\t\t<VERS vnumber=\"25\"> The LORD is good to those who trust in him, to the one who seeks him.</VERS>\n\t\t\t<VERS vnumber=\"26\"> It is good to wait patiently for deliverance from the LORD.</VERS>\n\t\t\t<VERS vnumber=\"27\"> It is good for a man to bear the yoke while he is young.&amp;u05D9; (Yod)</VERS>\n\t\t\t<VERS vnumber=\"28\"> Let a person sit alone in silence, when the LORD is disciplining him.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Let him bury his face in the dust; perhaps there is hope.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Let him offer his cheek to the one who hits him; let him have his fill of insults.&amp;u05DB; (Kaf)</VERS>\n\t\t\t<VERS vnumber=\"31\"> For the Lord will not reject us forever.</VERS>\n\t\t\t<VERS vnumber=\"32\"> Though he causes us grief, he then has compassion on us according to the abundance of his loyal kindness.</VERS>\n\t\t\t<VERS vnumber=\"33\"> For he is not predisposed to afflict or to grieve people.&amp;u05DC; (Lamed)</VERS>\n\t\t\t<VERS vnumber=\"34\"> To crush underfoot all the earth's prisoners,</VERS>\n\t\t\t<VERS vnumber=\"35\"> to deprive a person of his rights in the presence of the Most High,</VERS>\n\t\t\t<VERS vnumber=\"36\"> to defraud a person in a lawsuit, the Lord does not approve of such things!&amp;u05DE; (Mem)</VERS>\n\t\t\t<VERS vnumber=\"37\"> Whose command was ever fulfilled unless the Lord decreed it?</VERS>\n\t\t\t<VERS vnumber=\"38\"> Is it not from the mouth of the Most High that everything comes, both calamity and blessing?</VERS>\n\t\t\t<VERS vnumber=\"39\"> Why should any living person complain when punished for his sins?&amp;u05E0; (Nun)</VERS>\n\t\t\t<VERS vnumber=\"40\"> Let us carefully examine our ways, and let us return to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"41\"> Let us lift up our hearts and our hands to God in heaven:</VERS>\n\t\t\t<VERS vnumber=\"42\"> \"We have blatantly rebelled; you have not forgiven.\"&amp;u05E1; (Samek)</VERS>\n\t\t\t<VERS vnumber=\"43\"> You shrouded yourself with anger and then pursued us; you killed without mercy.</VERS>\n\t\t\t<VERS vnumber=\"44\"> You shrouded yourself with a cloud so that no prayer can get through.</VERS>\n\t\t\t<VERS vnumber=\"45\"> You make us like filthy scum in the estimation of the nations.&amp;u05E4; (Pe)</VERS>\n\t\t\t<VERS vnumber=\"46\"> All our enemies have gloated over us;</VERS>\n\t\t\t<VERS vnumber=\"47\"> Panic and pitfall have come upon us, devastation and destruction.</VERS>\n\t\t\t<VERS vnumber=\"48\"> Streams of tears flow from my eyes because my people are destroyed.&amp;u05E2; (Ayin)</VERS>\n\t\t\t<VERS vnumber=\"49\"> Tears flow from my eyes and will not stop; there will be no break</VERS>\n\t\t\t<VERS vnumber=\"50\"> until the LORD looks down from heaven and sees what has happened.</VERS>\n\t\t\t<VERS vnumber=\"51\"> What my eyes see grieves me, all the suffering of the daughters in my city.&amp;u05E6; (Tsade)</VERS>\n\t\t\t<VERS vnumber=\"52\"> For no good reason my enemies hunted me down like a bird.</VERS>\n\t\t\t<VERS vnumber=\"53\"> They shut me up in a pit and threw stones at me.</VERS>\n\t\t\t<VERS vnumber=\"54\"> The waters closed over my head; I thought I was about to die.&amp;u05E7; (Qof)</VERS>\n\t\t\t<VERS vnumber=\"55\"> I have called on your name, O LORD, from the deepest pit.</VERS>\n\t\t\t<VERS vnumber=\"56\"> You heard my plea: \"Do not close your ears to my cry for relief!\"</VERS>\n\t\t\t<VERS vnumber=\"57\"> You came near on the day I called to you; you said, \"Do not fear!\"&amp;u05E8; (Resh)</VERS>\n\t\t\t<VERS vnumber=\"58\"> O Lord, you championed my cause, you redeemed my life.</VERS>\n\t\t\t<VERS vnumber=\"59\"> You have seen the wrong done to me, O LORD; pronounce judgment on my behalf!</VERS>\n\t\t\t<VERS vnumber=\"60\"> You have seen all their vengeance, all their plots against me.&amp;u05E9; (Sin/Shin)</VERS>\n\t\t\t<VERS vnumber=\"61\"> You have heard their taunts, O LORD, all their plots against me.</VERS>\n\t\t\t<VERS vnumber=\"62\"> My assailants revile and conspire against me all day long.</VERS>\n\t\t\t<VERS vnumber=\"63\"> Watch them from morning to evening; I am the object of their mocking songs.&amp;u05EA; (Tav)</VERS>\n\t\t\t<VERS vnumber=\"64\"> Pay them back what they deserve, O LORD, according to what they have done.</VERS>\n\t\t\t<VERS vnumber=\"65\"> Give them a distraught heart; may your curse be on them!</VERS>\n\t\t\t<VERS vnumber=\"66\"> Pursue them in anger and eradicate them from under the LORD's heaven.&amp;u05D0; (Alef)</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\">  Alas! Gold has lost its luster; pure gold loses value. Jewels are scattered on every street corner.&amp;u05D1; (Bet)</VERS>\n\t\t\t<VERS vnumber=\"2\"> The precious sons of Zion were worth their weight in gold, Alas!, but now they are treated like broken clay pots, made by a potter.&amp;u05D2; (Gimel)</VERS>\n\t\t\t<VERS vnumber=\"3\"> Even the jackals nurse their young at their breast, but my people are cruel, like ostriches in the desert.&amp;u05D3; (Dalet)</VERS>\n\t\t\t<VERS vnumber=\"4\"> The infant's tongue sticks to the roof of its mouth due to thirst; little children beg for bread, but no one gives them even a morsel.&amp;u05D4; (He)</VERS>\n\t\t\t<VERS vnumber=\"5\"> Those who once feasted on delicacies are now starving to death in the streets. Those who grew up wearing expensive clothes are now dying amid garbage.&amp;u05D5; (Vav)</VERS>\n\t\t\t<VERS vnumber=\"6\"> The punishment of my people exceeded that of of Sodom, which was overthrown in a moment with no one to help her.&amp;u05D6; (Zayin)</VERS>\n\t\t\t<VERS vnumber=\"7\"> Her consecrated ones were brighter than snow, whiter than milk; their bodies more ruddy than corals, their hair like lapis lazuli.&amp;u05D7; (Khet)</VERS>\n\t\t\t<VERS vnumber=\"8\"> Now their appearance is darker than soot; they are not recognized in the streets. Their skin has shriveled on their bones; it is dried up, like tree bark.&amp;u05D8; (Tet)</VERS>\n\t\t\t<VERS vnumber=\"9\"> Those who died by the sword are better off than those who die of hunger, those who waste away, struck down from lack of food.&amp;u05D9; (Yod)</VERS>\n\t\t\t<VERS vnumber=\"10\"> The hands of tenderhearted women cooked their own children, who became their food, when my people were destroyed.&amp;u05DB; (Kaf)</VERS>\n\t\t\t<VERS vnumber=\"11\"> The LORD fully vented his wrath; he poured out his fierce anger. He started a fire in Zion; it consumed her foundations.&amp;u05DC; (Lamed)</VERS>\n\t\t\t<VERS vnumber=\"12\"> Neither the kings of the earth nor the people of the lands ever thought that enemy or foe would enter the gates of Jerusalem.&amp;u05DE; (Mem)</VERS>\n\t\t\t<VERS vnumber=\"13\"> But it happened due to the sins of her prophets and the iniquities of her priests, who poured out in her midst the blood of the righteous.&amp;u05E0; (Nun)</VERS>\n\t\t\t<VERS vnumber=\"14\"> They wander blindly through the streets, defiled by the blood they shed, while no one dares to touch their garments.&amp;u05E1; (Samek)</VERS>\n\t\t\t<VERS vnumber=\"15\"> People cry to them, \"Turn away! You are unclean! Turn away! Turn away! Don't touch us!\" So they have fled and wander about; but the nations say, \"They may not stay here any longer.\"&amp;u05E4; (Pe)</VERS>\n\t\t\t<VERS vnumber=\"16\"> The LORD himself has scattered them; he no longer watches over them. They did not honor the priests; they did not show favor to the elders.&amp;u05E2; (Ayin)</VERS>\n\t\t\t<VERS vnumber=\"17\"> Our eyes continually failed us as we looked in vain for help. From our watchtowers we watched for a nation that could not rescue us.&amp;u05E6; (Tsade)</VERS>\n\t\t\t<VERS vnumber=\"18\"> Our enemies hunted us down at every step so that we could not walk about in our streets. Our end drew near, our days were numbered, for our end had come!&amp;u05E7; (Qof)</VERS>\n\t\t\t<VERS vnumber=\"19\"> Those who pursued us were swifter than eagles in the sky. They chased us over the mountains; they ambushed us in the wilderness.&amp;u05E8; (Resh)</VERS>\n\t\t\t<VERS vnumber=\"20\"> Our very life breath, the LORD's anointed king, was caught in their traps, of whom we thought, \"Under his protection we will survive among the nations.\"&amp;u05E9; (Sin/Shin)</VERS>\n\t\t\t<VERS vnumber=\"21\"> Rejoice and be glad for now, O people of Edom, who reside in the land of Uz. But the cup of judgment will pass to you also; you will get drunk and take off your clothes.&amp;u05EA; (Tav)</VERS>\n\t\t\t<VERS vnumber=\"22\"> O people of Zion, your punishment will come to an end; he will not prolong your exile. But, O people of Edom, he will punish your sin and reveal your offenses!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"5\">\n\t\t\t<VERS vnumber=\"1\">  O LORD, reflect on what has happened to us; consider and look at our disgrace.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Our inheritance is turned over to strangers; foreigners now occupy our homes.</VERS>\n\t\t\t<VERS vnumber=\"3\"> We have become fatherless orphans; our mothers have become widows.</VERS>\n\t\t\t<VERS vnumber=\"4\"> We must pay money for our own water; we must buy our own wood at a steep price.</VERS>\n\t\t\t<VERS vnumber=\"5\"> We are pursued, they are breathing down our necks; we are weary and have no rest.</VERS>\n\t\t\t<VERS vnumber=\"6\"> We have submitted to Egypt and Assyria in order to buy food to eat.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Our forefathers sinned and are dead, but we suffer their punishment.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Slaves rule over us; there is no one to rescue us from their power.</VERS>\n\t\t\t<VERS vnumber=\"9\"> At the risk of our lives we get our food because robbers lurk in the countryside.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Our skin is hot as an oven due to a fever from hunger.</VERS>\n\t\t\t<VERS vnumber=\"11\"> They raped women in Zion, virgins in the towns of Judah.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Princes were hung by their hands; elders were mistreated.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The young men perform menial labor; boys stagger from their labor.</VERS>\n\t\t\t<VERS vnumber=\"14\"> The elders are gone from the city gate; the young men have stopped playing their music.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Our hearts no longer have any joy; our dancing is turned to mourning.</VERS>\n\t\t\t<VERS vnumber=\"16\"> The crown has fallen from our head; woe to us, for we have sinned!</VERS>\n\t\t\t<VERS vnumber=\"17\"> Because of this, our hearts are sick; because of these things, we can hardly see through our tears.</VERS>\n\t\t\t<VERS vnumber=\"18\"> For wild animals are prowling over Mount Zion, which lies desolate.</VERS>\n\t\t\t<VERS vnumber=\"19\"> But you, O LORD, reign forever; your throne endures from generation to generation.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Why do you keep on forgetting us? Why do you forsake us so long?</VERS>\n\t\t\t<VERS vnumber=\"21\"> Bring us back to yourself, O LORD, so that we may return to you; renew our life as in days before,</VERS>\n\t\t\t<VERS vnumber=\"22\"> unless you have utterly rejected us and are angry with us beyond measure.</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"26\" bname=\"Ezekiel\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> In the thirtieth year, on the fifth day of the fourth month, while I was among the exiles at the Kebar River, the heavens opened and I saw a divine vision.</VERS>\n\t\t\t<VERS vnumber=\"2\"> (On the fifth day of the month, it was the fifth year of King Jehoiachin's exile,</VERS>\n\t\t\t<VERS vnumber=\"3\"> the word of the LORD came to the priest Ezekiel the son of Buzi, at the Kebar River in the land of the Babylonians. The hand of the LORD came on him there).</VERS>\n\t\t\t<VERS vnumber=\"4\"> As I watched, I noticed a windstorm coming from the north, an enormous cloud, with lightning flashing, such that bright light rimmed it and came from it like glowing amber from the middle of a fire.</VERS>\n\t\t\t<VERS vnumber=\"5\"> In the fire were what looked like four living beings. In their appearance they had human form,</VERS>\n\t\t\t<VERS vnumber=\"6\"> but each had four faces and four wings.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Their legs were straight, but the soles of their feet were like calves' feet. They gleamed like polished bronze. </VERS>\n\t\t\t<VERS vnumber=\"8\"> They had human hands under their wings on their four sides. As for the faces and wings of the four of them, </VERS>\n\t\t\t<VERS vnumber=\"9\"> their wings touched each other; they did not turn as they moved, but went straight ahead.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Their faces had this appearance: Each of the four had the face of a man, with the face of a lion on the right, the face of an ox on the left and also the face of an eagle.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Their wings were spread out above them; each had two wings touching the wings of one of the other beings on either side and two wings covering their bodies.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Each moved straight ahead, wherever the spirit would go, they would go, without turning as they went.</VERS>\n\t\t\t<VERS vnumber=\"13\"> In the middle of the living beings was something like burning coals of fire or like torches. It moved back and forth among the living beings. It was bright, and lightning was flashing out of the fire.</VERS>\n\t\t\t<VERS vnumber=\"14\"> The living beings moved backward and forward as quickly as flashes of lightning.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Then I looked, and I saw one wheel on the ground beside each of the four beings.</VERS>\n\t\t\t<VERS vnumber=\"16\"> The appearance of the wheels and their construction was like gleaming jasper, and all four wheels looked alike. Their structure was like a wheel within a wheel.</VERS>\n\t\t\t<VERS vnumber=\"17\"> When they moved they would go in any of the four directions they faced without turning as they moved.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Their rims were high and awesome, and the rims of all four wheels were full of eyes all around.</VERS>\n\t\t\t<VERS vnumber=\"19\"> When the living beings moved, the wheels beside them moved; when the living beings rose up from the ground, the wheels rose up too.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Wherever the spirit would go, they would go, and the wheels would rise up beside them because the spirit of the living being was in the wheel. </VERS>\n\t\t\t<VERS vnumber=\"21\"> When the living beings moved, the wheels moved, and when they stopped moving, the wheels stopped. When they rose up from the ground, the wheels rose up from the ground; the wheels rose up beside them because the spirit of the living being was in the wheel.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Over the heads of the living beings was something like a platform, glittering awesomely like ice, stretched out over their heads.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Under the platform their wings were stretched out, each toward the other. Each of the beings also had two wings covering its body. </VERS>\n\t\t\t<VERS vnumber=\"24\"> When they moved, I heard the sound of their wings, it was like the sound of rushing waters, or the voice of the Almighty, or the tumult of an army. When they stood still, they lowered their wings.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Then there was a voice from above the platform over their heads when they stood still.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Above the platform over their heads was something like a sapphire shaped like a throne. High above on the throne was a form that appeared to be a man.</VERS>\n\t\t\t<VERS vnumber=\"27\"> I saw an amber glow like a fire enclosed all around from his waist up. From his waist down I saw something that looked like fire. There was a brilliant light around it, </VERS>\n\t\t\t<VERS vnumber=\"28\"> like the appearance of a rainbow in the clouds after the rain. This was the appearance of the surrounding brilliant light; it looked like the glory of the LORD. When I saw it, I threw myself face down, and I heard a voice speaking.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> He said to me, \"Son of man, stand on your feet and I will speak with you.\" </VERS>\n\t\t\t<VERS vnumber=\"2\"> As he spoke to me, a wind came into me and stood me on my feet, and I heard the one speaking to me.</VERS>\n\t\t\t<VERS vnumber=\"3\"> He said to me, \"Son of man, I am sending you to the house of Israel, to rebellious nations who have rebelled against me; both they and their fathers have revolted against me to this very day. </VERS>\n\t\t\t<VERS vnumber=\"4\"> The people to whom I am sending you are obstinate and hard-hearted, and you must say to them, 'This is what the sovereign LORD says.'</VERS>\n\t\t\t<VERS vnumber=\"5\"> And as for them, whether they listen or not, for they are a rebellious house, they will know that a prophet has been among them.</VERS>\n\t\t\t<VERS vnumber=\"6\"> But you, son of man, do not fear them, and do not fear their words, even though briers and thorns surround you and you live among scorpions, do not fear their words and do not be terrified of the looks they give you, for they are a rebellious house!</VERS>\n\t\t\t<VERS vnumber=\"7\"> You must speak my words to them whether they listen or not, for they are rebellious.</VERS>\n\t\t\t<VERS vnumber=\"8\"> As for you, son of man, listen to what I am saying to you: Do not rebel like that rebellious house! Open your mouth and eat what I am giving you.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> Then I looked and realized a hand was stretched out to me, and in it was a written scroll.</VERS>\n\t\t\t<VERS vnumber=\"10\"> He unrolled it before me, and it had writing on the front and back; written on it were laments, mourning, and woe.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> He said to me, \"Son of man, eat what you see in front of you, eat this scroll, and then go and speak to the house of Israel.\"</VERS>\n\t\t\t<VERS vnumber=\"2\"> So I opened my mouth and he fed me the scroll.</VERS>\n\t\t\t<VERS vnumber=\"3\"> He said to me, \"Son of man, feed your stomach and fill your belly with this scroll I am giving to you.\" So I ate it, and it was sweet like honey in my mouth.</VERS>\n\t\t\t<VERS vnumber=\"4\"> He said to me, \"Son of man, go to the house of Israel and speak my words to them.</VERS>\n\t\t\t<VERS vnumber=\"5\"> For you are not being sent to a people of unintelligible speech and difficult language, but to the house of Israel,</VERS>\n\t\t\t<VERS vnumber=\"6\"> not to many peoples of unintelligible speech and difficult language, whose words you cannot understand, surely if I had sent you to them, they would listen to you!</VERS>\n\t\t\t<VERS vnumber=\"7\"> But the house of Israel is unwilling to listen to you, because they are not willing to listen to me, for the whole house of Israel is hard-headed and hard-hearted.</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"I have made your face adamant to match their faces, and your forehead hard to match their foreheads. </VERS>\n\t\t\t<VERS vnumber=\"9\"> I have made your forehead harder than flint, like diamond! Do not fear them or be terrified of the looks they give you, for they are a rebellious house.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> And he said to me, \"Son of man, take all my words that I speak to you to heart and listen carefully.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Go to the exiles, to your fellow countrymen, and speak to them, say to them, 'This is what the sovereign LORD says,' whether they pay attention or not.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> Then a wind lifted me up and I heard a great rumbling sound behind me as the glory of the LORD rose from its place,</VERS>\n\t\t\t<VERS vnumber=\"13\"> and the sound of the living beings' wings brushing against each other, and the sound of the wheels alongside them, a great rumbling sound.</VERS>\n\t\t\t<VERS vnumber=\"14\"> A wind lifted me up and carried me away. I went bitterly, my spirit full of fury, and the hand of the LORD rested powerfully on me. </VERS>\n\t\t\t<VERS vnumber=\"15\"> I came to the exiles at Tel Abib, who lived by the Kebar River. I sat dumbfounded among them there, where they were living, for seven days.</VERS>\n\t\t\t<VERS vnumber=\"16\"> At the end of seven days the word of the LORD came to me:</VERS>\n\t\t\t<VERS vnumber=\"17\"> \"Son of man, I have appointed you a watchman for the house of Israel. Whenever you hear a word from my mouth, you must give them a warning from me. </VERS>\n\t\t\t<VERS vnumber=\"18\"> When I say to the wicked, \"You will certainly die,\" and you do not warn him, you do not speak out to warn the wicked to turn from his wicked deed and wicked lifestyle so that he may live, that wicked person will die for his iniquity, but I will hold you accountable for his death.</VERS>\n\t\t\t<VERS vnumber=\"19\"> But as for you, if you warn the wicked and he does not turn from his wicked deed and from his wicked lifestyle, he will die for his iniquity but you will have saved your own life.</VERS>\n\t\t\t<VERS vnumber=\"20\"> \"When a righteous person turns from his righteousness and commits iniquity, and I set an obstacle before him, he will die. If you have not warned him, he will die for his sin. The righteous deeds he performed will not be considered, but I will hold you accountable for his death.</VERS>\n\t\t\t<VERS vnumber=\"21\"> However, if you warn the righteous person not to sin, and he does not sin, he will certainly live because he was warned, and you will have saved your own life.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> The hand of the LORD rested on me there, and he said to me, \"Get up, go out to the valley, and I will speak with you there.\" </VERS>\n\t\t\t<VERS vnumber=\"23\"> So I got up and went out to the valley, and the glory of the LORD was standing there, just like the glory I had seen by the Kebar River, and I threw myself face down.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Then a wind came into me and stood me on my feet. The LORD spoke to me and said, \"Go shut yourself in your house. </VERS>\n\t\t\t<VERS vnumber=\"25\"> As for you, son of man, they will put ropes on you and tie you up with them, so you cannot go out among them.</VERS>\n\t\t\t<VERS vnumber=\"26\"> I will make your tongue stick to the roof of your mouth so that you will be silent and unable to reprove them, for they are a rebellious house. </VERS>\n\t\t\t<VERS vnumber=\"27\"> But when I speak with you, I will loosen your tongue and you must say to them, 'This is what the sovereign LORD says.' Those who listen will listen, but the indifferent will refuse, for they are a rebellious house.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\"> \"And you, son of man, take a brick and set it in front of you. Inscribe a city on it, Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Lay siege to it! Build siege works against it. Erect a siege ramp against it! Post soldiers outside it and station battering rams around it. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Then for your part take an iron frying pan and set it up as an iron wall between you and the city. Set your face toward it. It is to be under siege; you are to besiege it. This is a sign for the house of Israel.</VERS>\n\t\t\t<VERS vnumber=\"4\"> \"Also for your part lie on your left side and place the iniquity of the house of Israel on it. For the number of days you lie on your side you will bear their iniquity.</VERS>\n\t\t\t<VERS vnumber=\"5\"> I have determined that the number of the years of their iniquity are to be the number of days for you, 390 days. So bear the iniquity of the house of Israel.</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"When you have completed these days, then lie down a second time, but on your right side, and bear the iniquity of the house of Judah 40 days, I have assigned one day for each year.</VERS>\n\t\t\t<VERS vnumber=\"7\"> You must turn your face toward the siege of Jerusalem with your arm bared and prophesy against it.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Look here, I will tie you up with ropes, so you cannot turn from one side to the other until you complete the days of your siege.</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"As for you, take wheat, barley, beans, lentils, millet, and spelt, put them in a single container, and make food from them for yourself. For the same number of days that you lie on your side, 390 days, you will eat it.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The food you eat will be eight ounces a day by weight; you must eat it at fixed times. </VERS>\n\t\t\t<VERS vnumber=\"11\"> And you must drink water by measure, a pint and a half; you must drink it at fixed times. </VERS>\n\t\t\t<VERS vnumber=\"12\"> And you must eat the food like you would a barley cake. You must bake it in front of them over a fire made with dried human excrement.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> And the LORD said, \"This is how the people of Israel will eat their unclean food among the nations where I will banish them.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> And I said, \"Ah, sovereign LORD, I have never been ceremonially defiled before. I have never eaten a carcass or an animal torn by wild beasts; from my youth up, unclean meat has never entered my mouth.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> So he said to me, \"All right then, I will substitute cow's manure instead of human excrement. You will cook your food over it.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> Then he said to me, \"Son of man, I am about to remove the bread supply in Jerusalem. They will eat their bread ration anxiously, and they will drink their water ration in terror </VERS>\n\t\t\t<VERS vnumber=\"17\"> because they will lack bread and water. Each one will be terrified, and they will rot for their iniquity.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"5\">\n\t\t\t<VERS vnumber=\"1\"> \"As for you, son of man, take a sharp sword and use it as a barber's razor. Shave off some of the hair from your head and your beard. Then take scales and divide up the hair you cut off. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Burn a third of it in the fire inside the city when the days of your siege are completed. Take a third and slash it with a sword all around the city. Scatter a third to the wind, and I will unleash a sword behind them.</VERS>\n\t\t\t<VERS vnumber=\"3\"> But take a few strands of hair from those and tie them in the ends of your garment.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Again, take more of them and throw them into the fire, and burn them up. From there a fire will spread to all the house of Israel.</VERS>\n\t\t\t<VERS vnumber=\"5\"> \"This is what the sovereign LORD says: This is Jerusalem; I placed her in the center of the nations with countries all around her.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Then she defied my regulations and my statutes, becoming more wicked than the nations and the countries around her. Indeed, they have rejected my regulations, and they do not follow my statutes.</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"Therefore this is what the sovereign LORD says: Because you are more arrogant than the nations around you, you have not followed my statutes and have not carried out my regulations. You have not even carried out the regulations of the nations around you!</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"Therefore this is what the sovereign LORD says: I, even I, am against you, and I will execute judgment among you while the nations watch.</VERS>\n\t\t\t<VERS vnumber=\"9\"> I will do to you what I have never done before and will never do again because of all your abominable practices.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Therefore fathers will eat their sons within you, Jerusalem, and sons will eat their fathers. I will execute judgments on you, and I will scatter any survivors to the winds.</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"Therefore, as surely as I live, says the sovereign LORD, because you defiled my sanctuary with all your detestable idols and with all your abominable practices, I will withdraw; my eye will not pity you, nor will I spare you. </VERS>\n\t\t\t<VERS vnumber=\"12\"> A third of your people will die of plague or be overcome by the famine within you. A third of your people will fall by the sword surrounding you, and a third I will scatter to the winds. I will unleash a sword behind them. </VERS>\n\t\t\t<VERS vnumber=\"13\"> Then my anger will be fully vented; I will exhaust my rage on them, and I will be appeased. Then they will know that I, the LORD, have spoken in my jealousy when I have fully vented my rage against them.</VERS>\n\t\t\t<VERS vnumber=\"14\"> \"I will make you desolate and an object of scorn among the nations around you, in the sight of everyone who passes by.</VERS>\n\t\t\t<VERS vnumber=\"15\"> You will be an object of scorn and taunting, a prime example of destruction among the nations around you when I execute judgments against you in anger and raging fury. I, the LORD, have spoken! </VERS>\n\t\t\t<VERS vnumber=\"16\"> I will shoot against them deadly, destructive arrows of famine, which I will shoot to destroy you. I will prolong a famine on you and will remove the bread supply.</VERS>\n\t\t\t<VERS vnumber=\"17\"> I will send famine and wild beasts against you and they will take your children from you. Plague and bloodshed will overwhelm you, and I will bring a sword against you. I, the LORD, have spoken!\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"6\">\n\t\t\t<VERS vnumber=\"1\"> The word of the LORD came to me:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Son of man, turn toward the mountains of Israel and prophesy against them: </VERS>\n\t\t\t<VERS vnumber=\"3\"> Say, 'Mountains of Israel, Hear the word of the sovereign LORD! This is what the sovereign LORD says to the mountains and the hills, to the ravines and the valleys: I am bringing a sword against you, and I will destroy your high places.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Your altars will be ruined and your incense altars will be broken. I will throw down your slain in front of your idols.</VERS>\n\t\t\t<VERS vnumber=\"5\"> I will place the corpses of the people of Israel in front of their idols, and I will scatter your bones around your altars. </VERS>\n\t\t\t<VERS vnumber=\"6\"> In all your dwellings, the cities will be laid waste and the high places ruined so that your altars will be laid waste and ruined, your idols will be shattered and demolished, your incense altars will be broken down, and your works wiped out.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The slain will fall among you and then you will know that I am the LORD.</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"'But I will spare some of you. Some will escape the sword when you are scattered in foreign lands.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Then your survivors will remember me among the nations where they are exiled. They will realize how I was crushed by their unfaithful heart which turned from me and by their eyes which lusted after their idols. They will loathe themselves because of the evil they have done and because of all their abominable practices. </VERS>\n\t\t\t<VERS vnumber=\"10\"> They will know that I am the LORD; my threats to bring this catastrophe on them were not empty.'</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"'This is what the sovereign LORD says: Clap your hands, stamp your feet, and say, \"Ah!\" because of all the evil, abominable practices of the house of Israel, for they will fall by the sword, famine, and pestilence.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The one far away will die by pestilence, the one close by will fall by the sword, and whoever is left and has escaped these will die by famine. I will fully vent my rage against them. </VERS>\n\t\t\t<VERS vnumber=\"13\"> Then you will know that I am the LORD, when their dead lie among their idols around their altars, on every high hill and all the mountaintops, under every green tree and every leafy oak, the places where they have offered fragrant incense to all their idols.</VERS>\n\t\t\t<VERS vnumber=\"14\"> I will stretch out my hand against them and make the land a desolate waste from the wilderness to Riblah, in all the places where they live. Then they will know that I am the LORD!\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"7\">\n\t\t\t<VERS vnumber=\"1\"> The word of the LORD came to me:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"You, son of man, this is what the sovereign LORD says to the land of Israel: An end! The end is coming on the four corners of the land!</VERS>\n\t\t\t<VERS vnumber=\"3\"> The end is now upon you, and I will release my anger against you; I will judge you according to your behavior, I will hold you accountable for all your abominable practices. </VERS>\n\t\t\t<VERS vnumber=\"4\"> My eye will not pity you; I will not spare you. For I will hold you responsible for your behavior, and you will suffer the consequences of your abominable practices. Then you will know that I am the LORD!</VERS>\n\t\t\t<VERS vnumber=\"5\"> \"This is what the sovereign LORD says: A disaster, a one-of-a-kind disaster, is coming!</VERS>\n\t\t\t<VERS vnumber=\"6\"> An end comes, the end comes! It has awakened against you, the end is upon you! Look, it is coming!</VERS>\n\t\t\t<VERS vnumber=\"7\"> Doom is coming upon you who live in the land! The time is coming, the day is near. There are sounds of tumult, not shouts of joy, on the mountains.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Soon now I will pour out my rage on you; I will fully vent my anger against you. I will judge you according to your behavior. I will hold you accountable for all your abominable practices. </VERS>\n\t\t\t<VERS vnumber=\"9\"> My eye will not pity you; I will not spare you. For your behavior I will hold you accountable, and you will suffer the consequences of your abominable practices. Then you will know that it is I, the LORD, who is striking you.</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"Look, the day! Look, it is coming! Doom has gone out! The staff has budded, pride has blossomed!</VERS>\n\t\t\t<VERS vnumber=\"11\"> Violence has grown into a staff that supports wickedness. Not one of them will be left, not from their crowd, not from their wealth, not from their prominence.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The time has come; the day has struck! The customer should not rejoice, nor the seller mourn; for divine wrath comes against their whole crowd. </VERS>\n\t\t\t<VERS vnumber=\"13\"> The customer will no longer pay the seller while both parties are alive, for the vision against their whole crowd will not be revoked. Each person, for his iniquity, will fail to preserve his life.</VERS>\n\t\t\t<VERS vnumber=\"14\"> \"They have blown the trumpet and everyone is ready, but no one goes to battle, because my anger is against their whole crowd.</VERS>\n\t\t\t<VERS vnumber=\"15\"> The sword is outside; pestilence and famine are inside the house. Whoever is in the open field will die by the sword, and famine and pestilence will consume everyone in the city.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Their survivors will escape to the mountains and become like doves of the valleys; all of them will moan, each one for his iniquity.</VERS>\n\t\t\t<VERS vnumber=\"17\"> All of their hands will hang limp; their knees will be wet with urine.</VERS>\n\t\t\t<VERS vnumber=\"18\"> They will wear sackcloth, terror will cover them; shame will be on all their faces, and all of their heads will be shaved bald.</VERS>\n\t\t\t<VERS vnumber=\"19\"> They will discard their silver in the streets, and their gold will be treated like filth. Their silver and gold will not be able to deliver them on the day of the LORD's fury. They will not satisfy their hunger or fill their stomachs because their wealth was the obstacle leading to their iniquity.</VERS>\n\t\t\t<VERS vnumber=\"20\"> They rendered the beauty of his ornaments into pride, and with it they made their abominable images, their detestable idols. Therefore I will render it filthy to them.</VERS>\n\t\t\t<VERS vnumber=\"21\"> I will give it to foreigners as loot, to the world's wicked ones as plunder, and they will desecrate it.</VERS>\n\t\t\t<VERS vnumber=\"22\"> I will turn my face away from them and they will desecrate my treasured place. Vandals will enter it and desecrate it.</VERS>\n\t\t\t<VERS vnumber=\"23\"> (Make the chain, because the land is full of murder and the city is full of violence.) </VERS>\n\t\t\t<VERS vnumber=\"24\"> I will bring the most wicked of the nations and they will take possession of their houses. I will put an end to the arrogance of the strong, and their sanctuaries will be desecrated. </VERS>\n\t\t\t<VERS vnumber=\"25\"> Terror is coming! They will seek peace, but find none. </VERS>\n\t\t\t<VERS vnumber=\"26\"> Disaster after disaster will come, and one rumor after another. They will seek a vision from a prophet; priestly instruction will disappear, along with counsel from the elders.</VERS>\n\t\t\t<VERS vnumber=\"27\"> The king will mourn and the prince will be clothed with shuddering; the hands of the people of the land will tremble. Based on their behavior I will deal with them, and by their standard of justice I will judge them. Then they will know that I am the LORD!\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"8\">\n\t\t\t<VERS vnumber=\"1\"> In the sixth year, in the sixth month, on the fifth of the month, as I was sitting in my house with the elders of Judah sitting in front of me, the hand of the sovereign LORD seized me.</VERS>\n\t\t\t<VERS vnumber=\"2\"> As I watched, I noticed a form that appeared to be a man. From his waist downward was something like fire, and from his waist upward something like a brightness, like an amber glow.</VERS>\n\t\t\t<VERS vnumber=\"3\"> He stretched out the form of a hand and grabbed me by a lock of hair on my head. Then a wind lifted me up between the earth and sky and brought me to Jerusalem by means of divine visions, to the door of the inner gate which faces north where the statue which provokes to jealousy was located. </VERS>\n\t\t\t<VERS vnumber=\"4\"> Then I perceived that the glory of the God of Israel was there, as in the vision I had seen earlier in the valley.</VERS>\n\t\t\t<VERS vnumber=\"5\"> He said to me, \"Son of man, look up toward the north.\" So I looked up toward the north, and I noticed to the north of the altar gate was this statue of jealousy at the entrance.</VERS>\n\t\t\t<VERS vnumber=\"6\"> He said to me, \"Son of man, do you see what they are doing, the great abominations that the people of Israel are practicing here, to drive me far from my sanctuary? But you will see greater abominations than these!\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> He brought me to the entrance of the court, and as I watched, I noticed a hole in the wall.</VERS>\n\t\t\t<VERS vnumber=\"8\"> He said to me, \"Son of man, dig into the wall.\" So I dug into the wall and discovered a doorway.</VERS>\n\t\t\t<VERS vnumber=\"9\"> He said to me, \"Go in and see the evil abominations they are practicing here.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> So I went in and looked. I noticed every figure of creeping thing and beast, detestable images, and every idol of the house of Israel, engraved on the wall all around.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Seventy men from the elders of the house of Israel (with Jaazaniah son of Shaphan standing among them) were standing in front of them, each with a censer in his hand, and fragrant vapors from a cloud of incense were swirling upward.</VERS>\n\t\t\t<VERS vnumber=\"12\"> He said to me, \"Do you see, son of man, what the elders of the house of Israel are doing in the dark, each in the chamber of his idolatrous images? For they think, 'The LORD does not see us! The LORD has abandoned the land!'\" </VERS>\n\t\t\t<VERS vnumber=\"13\"> He said to me, \"You will see them practicing even greater abominations!\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> Then he brought me to the entrance of the north gate of the LORD's house. I noticed women sitting there weeping for Tammuz.</VERS>\n\t\t\t<VERS vnumber=\"15\"> He said to me, \"Do you see this, son of man? You will see even greater abominations than these!\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> Then he brought me to the inner court of the LORD's house. Right there at the entrance to the LORD's temple, between the porch and the altar, were about twenty-five men with their backs to the LORD's temple, facing east, they were worshiping the sun toward the east!</VERS>\n\t\t\t<VERS vnumber=\"17\"> He said to me, \"Do you see, son of man? Is it a trivial thing that the house of Judah commits these abominations they are practicing here? For they have filled the land with violence and provoked me to anger still further. Look, they are putting the branch to their nose!</VERS>\n\t\t\t<VERS vnumber=\"18\"> Therefore I will act with fury! My eye will not pity them nor will I spare them. When they have shouted in my ears, I will not listen to them.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"9\">\n\t\t\t<VERS vnumber=\"1\"> Then he shouted in my ears, \"Approach, you who are to visit destruction on the city, each with his destructive weapon in his hand!\" </VERS>\n\t\t\t<VERS vnumber=\"2\"> Next, I noticed six men coming from the direction of the upper gate which faces north, each with his war club in his hand. Among them was a man dressed in linen with a writing kit at his side. They came and stood beside the bronze altar.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Then the glory of the God of Israel went up from the cherub where it had rested to the threshold of the temple. He called to the man dressed in linen who had the writing kit at his side. </VERS>\n\t\t\t<VERS vnumber=\"4\"> The LORD said to him, \"Go through the city of Jerusalem and put a mark on the foreheads of the people who moan and groan over all the abominations practiced in it.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> While I listened, he said to the others, \"Go through the city after him and strike people down; do no let your eye pity nor spare anyone! </VERS>\n\t\t\t<VERS vnumber=\"6\"> Old men, young men, young women, little children, and women, wipe them out! But do not touch anyone who has the mark. Begin at my sanctuary!\" So they began with the elders who were at the front of the temple.</VERS>\n\t\t\t<VERS vnumber=\"7\"> He said to them, \"Defile the temple and fill the courtyards with corpses. Go!\" So they went out and struck people down throughout the city.</VERS>\n\t\t\t<VERS vnumber=\"8\"> While they were striking them down, I was left alone, and I threw myself face down and cried out, \"Ah, sovereign LORD! Will you destroy the entire remnant of Israel when you pour out your fury on Jerusalem?\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> He said to me, \"The sin of the house of Israel and Judah is extremely great; the land is full of murder, and the city is full of corruption, for they say, 'The LORD has abandoned the land, and the LORD does not see!'</VERS>\n\t\t\t<VERS vnumber=\"10\"> But as for me, my eye will not pity them nor will I spare them; I hereby repay them for what they have done.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> Next I noticed the man dressed in linen with the writing kit at his side bringing back word: \"I have done just as you commanded me.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"10\">\n\t\t\t<VERS vnumber=\"1\"> As I watched, I saw on the platform above the top of the cherubim something like a sapphire, resembling the shape of a throne, appearing above them. </VERS>\n\t\t\t<VERS vnumber=\"2\"> The LORD said to the man dressed in linen, \"Go between the wheelwork underneath the cherubim. Fill your hands with burning coals from among the cherubim and scatter them over the city.\" He went as I watched.</VERS>\n\t\t\t<VERS vnumber=\"3\"> (The cherubim were standing on the south side of the temple when the man went in, and a cloud filled the inner court.) </VERS>\n\t\t\t<VERS vnumber=\"4\"> Then the glory of the LORD arose from the cherub and moved to the threshold of the temple. The temple was filled with the cloud while the court was filled with the brightness of the LORD's glory.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The sound of the wings of the cherubim could be heard from the outer court, like the sound of the sovereign God when he speaks.</VERS>\n\t\t\t<VERS vnumber=\"6\"> When the LORD commanded the man dressed in linen, \"Take fire from within the wheelwork, from among the cherubim,\" the man went in and stood by one of the wheels.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Then one of the cherubim stretched out his hand toward the fire which was among the cherubim. He took some and put it into the hands of the man dressed in linen, who took it and left. </VERS>\n\t\t\t<VERS vnumber=\"8\"> (The cherubim appeared to have the form of human hands under their wings.)</VERS>\n\t\t\t<VERS vnumber=\"9\"> As I watched, I noticed four wheels by the cherubim, one wheel beside each cherub; the wheels gleamed like jasper.</VERS>\n\t\t\t<VERS vnumber=\"10\"> As for their appearance, all four of them looked the same, something like a wheel within a wheel.</VERS>\n\t\t\t<VERS vnumber=\"11\"> When they moved, they would go in any of the four directions they faced without turning as they moved; in the direction the head would turn they would follow without turning as they moved, </VERS>\n\t\t\t<VERS vnumber=\"12\"> along with their entire bodies, their backs, their hands, and their wings. The wheels of the four of them were full of eyes all around. </VERS>\n\t\t\t<VERS vnumber=\"13\"> As for their wheels, they were called \"the wheelwork\" as I listened. </VERS>\n\t\t\t<VERS vnumber=\"14\"> Each of the cherubim had four faces: The first was the face of a cherub, the second that of a man, the third that of a lion, and the fourth that of an eagle.</VERS>\n\t\t\t<VERS vnumber=\"15\"> The cherubim rose up; these were the living beings I saw at the Kebar River. </VERS>\n\t\t\t<VERS vnumber=\"16\"> When the cherubim moved, the wheels moved beside them; when the cherubim spread their wings to rise from the ground, the wheels did not move from their side.</VERS>\n\t\t\t<VERS vnumber=\"17\"> When the cherubim stood still, the wheels stood still, and when they rose up, the wheels rose up with them, for the spirit of the living beings was in the wheels.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Then the glory of the LORD moved away from the threshold of the temple and stopped above the cherubim.</VERS>\n\t\t\t<VERS vnumber=\"19\"> The cherubim spread their wings, and they rose up from the earth while I watched (when they went the wheels went alongside them). They stopped at the entrance to the east gate of the LORD's temple as the glory of the God of Israel hovered above them.</VERS>\n\t\t\t<VERS vnumber=\"20\"> These were the living creatures which I saw at the Kebar River underneath the God of Israel; I knew that they were cherubim. </VERS>\n\t\t\t<VERS vnumber=\"21\"> Each had four faces; each had four wings and the form of human hands under the wings.</VERS>\n\t\t\t<VERS vnumber=\"22\"> As for the form of their faces, they were the faces whose appearance I had seen at the Kebar River. Each one moved straight ahead.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"11\">\n\t\t\t<VERS vnumber=\"1\"> A wind lifted me up and brought me to the east gate of the Lord's temple that faces the east. There, at the entrance of the gate, I noticed twenty-five men. Among them I saw Jaazaniah son of Azzur and Pelatiah son of Benaiah, officials of the people.</VERS>\n\t\t\t<VERS vnumber=\"2\"> The LORD said to me, \"Son of man, these are the men who plot evil and give wicked advice in this city. </VERS>\n\t\t\t<VERS vnumber=\"3\"> They say, 'The time is not near to build houses; the city is a cooking pot and we are the meat in it.' </VERS>\n\t\t\t<VERS vnumber=\"4\"> Therefore, prophesy against them! Prophesy, son of man!\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> Then the Spirit of the LORD came upon me and said to me, \"Say: This is what the LORD says: 'This is what you are thinking, O house of Israel; I know what goes through your minds.</VERS>\n\t\t\t<VERS vnumber=\"6\"> You have killed many people in this city; you have filled its streets with corpses.'</VERS>\n\t\t\t<VERS vnumber=\"7\"> Therefore, this is what the sovereign LORD says: 'The corpses you have dumped in the midst of the city are the meat, and this city is the cooking pot, but I will take you out of it.</VERS>\n\t\t\t<VERS vnumber=\"8\"> You fear the sword, so the sword I will bring against you,' declares the sovereign LORD.</VERS>\n\t\t\t<VERS vnumber=\"9\"> 'But I will take you out of the city. And I will hand you over to foreigners. I will execute judgments on you. </VERS>\n\t\t\t<VERS vnumber=\"10\"> You will die by the sword; I will judge you at the border of Israel. Then you will know that I am the LORD.</VERS>\n\t\t\t<VERS vnumber=\"11\"> This city will not be a cooking pot for you, and you will not be meat within it; I will judge you at the border of Israel. </VERS>\n\t\t\t<VERS vnumber=\"12\"> Then you will know that I am the LORD, whose statutes you have not followed and whose regulations you have not carried out. Instead you have behaved according to the regulations of the nations around you!'\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> Now, while I was prophesying, Pelatiah son of Benaiah died. Then I threw myself face down and cried out with a loud voice, \"Alas, sovereign LORD! You are completely wiping out the remnant of Israel!\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> Then the word of the LORD came to me:</VERS>\n\t\t\t<VERS vnumber=\"15\"> \"Son of man, your brothers, your relatives, and the whole house of Israel, all of them are those to whom the inhabitants of Jerusalem have said, 'They have gone far away from the LORD; to us this land has been given as a possession.'</VERS>\n\t\t\t<VERS vnumber=\"16\"> \"Therefore say: 'This is what the sovereign LORD says: Although I have removed them far away among the nations and have dispersed them among the countries, I have been a little sanctuary for them among the lands where they have gone.'</VERS>\n\t\t\t<VERS vnumber=\"17\"> \"Therefore say: 'This is what the sovereign LORD says: When I regather you from the peoples and assemble you from the lands where you have been dispersed, I will give you back the country of Israel.'</VERS>\n\t\t\t<VERS vnumber=\"18\"> \"When they return to it, they will remove from it all its detestable things and all its abominations.</VERS>\n\t\t\t<VERS vnumber=\"19\"> I will give them one heart and I will put a new spirit within them; I will remove the hearts of stone from their bodies and I will give them tender hearts,</VERS>\n\t\t\t<VERS vnumber=\"20\"> so that they may follow my statutes and observe my regulations and carry them out. Then they will be my people, and I will be their God.</VERS>\n\t\t\t<VERS vnumber=\"21\"> But those whose hearts are devoted to detestable things and abominations, I hereby repay them for what they have done, says the sovereign LORD.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> Then the cherubim spread their wings with their wheels alongside them while the glory of the God of Israel hovered above them. </VERS>\n\t\t\t<VERS vnumber=\"23\"> The glory of the LORD rose up from within the city and stopped over the mountain east of it. </VERS>\n\t\t\t<VERS vnumber=\"24\"> Then a wind lifted me up and carried me to the exiles in Babylonia, in the vision given to me by the Spirit of God. Then the vision I had seen went up from me.</VERS>\n\t\t\t<VERS vnumber=\"25\"> So I told the exiles everything the LORD had shown me.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"12\">\n\t\t\t<VERS vnumber=\"1\"> The word of the LORD came to me:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Son of man, you are living in the midst of a rebellious house. They have eyes to see, but do not see, and ears to hear, but do not hear, because they are a rebellious house.</VERS>\n\t\t\t<VERS vnumber=\"3\"> \"Therefore, son of man, pack up your belongings as if for exile. During the day, while they are watching, pretend to go into exile. Go from where you live to another place. Perhaps they will understand, although they are a rebellious house. </VERS>\n\t\t\t<VERS vnumber=\"4\"> Bring out your belongings packed for exile during the day while they are watching. And go out at evening, while they are watching, as if for exile.</VERS>\n\t\t\t<VERS vnumber=\"5\"> While they are watching, dig a hole in the wall and carry your belongings out through it.</VERS>\n\t\t\t<VERS vnumber=\"6\"> While they are watching, raise your baggage onto your shoulder and carry it out in the dark. You must cover your face so that you cannot see the ground because I have made you an object lesson to the house of Israel.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> So I did just as I was commanded. I carried out my belongings packed for exile during the day, and at evening I dug myself a hole through the wall with my hands. I went out in the darkness, carrying my baggage on my shoulder while they watched.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The word of the LORD came to me in the morning:</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"Son of man, has not the house of Israel, that rebellious house, said to you, 'What are you doing?'</VERS>\n\t\t\t<VERS vnumber=\"10\"> Say to them, 'This is what the sovereign LORD says: The prince will raise this burden in Jerusalem, and all the house of Israel within it.'</VERS>\n\t\t\t<VERS vnumber=\"11\"> Say, 'I am an object lesson for you. Just as I have done, it will be done to them; they will go into exile and captivity.'</VERS>\n\t\t\t<VERS vnumber=\"12\"> \"The prince who is among them will raise his belongings onto his shoulder in darkness, and will go out. He will dig a hole in the wall to leave through. He will cover his face so that he cannot see the land with his eyes. </VERS>\n\t\t\t<VERS vnumber=\"13\"> But I will throw my net over him, and he will be caught in my snare. I will bring him to Babylon, the land of the Chaldeans (but he will not see it), and there he will die.</VERS>\n\t\t\t<VERS vnumber=\"14\"> All his retinue, his attendants and his troops, I will scatter to every wind; I will unleash a sword behind them.</VERS>\n\t\t\t<VERS vnumber=\"15\"> \"Then they will know that I am the LORD when I disperse them among the nations and scatter them among foreign countries.</VERS>\n\t\t\t<VERS vnumber=\"16\"> But I will let a small number of them survive the sword, famine, and pestilence, so that they can confess all their abominable practices to the nations where they go. Then they will know that I am the LORD.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> The word of the LORD came to me:</VERS>\n\t\t\t<VERS vnumber=\"18\"> \"Son of man, eat your bread with trembling, and drink your water with anxious shaking. </VERS>\n\t\t\t<VERS vnumber=\"19\"> Then say to the people of the land, 'This is what the sovereign LORD says about the inhabitants of Jerusalem and of the land of Israel: They will eat their bread with anxiety and drink their water in fright, for their land will be stripped bare of all it contains because of the violence of all who live in it.</VERS>\n\t\t\t<VERS vnumber=\"20\"> The inhabited towns will be left in ruins and the land will be devastated. Then you will know that I am the LORD.'\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> The word of the LORD came to me:</VERS>\n\t\t\t<VERS vnumber=\"22\"> \"Son of man, what is this proverb you have in the land of Israel, 'The days pass slowly, and every vision fails'?</VERS>\n\t\t\t<VERS vnumber=\"23\"> Therefore tell them, 'This is what the sovereign LORD says: I hereby end this proverb; they will not recite it in Israel any longer.' But say to them, 'The days are at hand when every vision will be fulfilled.</VERS>\n\t\t\t<VERS vnumber=\"24\"> For there will no longer be any false visions or flattering omens amidst the house of Israel.</VERS>\n\t\t\t<VERS vnumber=\"25\"> For I, the LORD, will speak. Whatever word I speak will be accomplished. It will not be delayed any longer. Indeed in your days, O rebellious house, I will speak the word and accomplish it, declares the sovereign LORD.'\"</VERS>\n\t\t\t<VERS vnumber=\"26\"> The word of the LORD came to me:</VERS>\n\t\t\t<VERS vnumber=\"27\"> \"Take note, son of man, the house of Israel is saying, 'The vision that he sees is for distant days; he is prophesying about the far future.'</VERS>\n\t\t\t<VERS vnumber=\"28\"> Therefore say to them, 'This is what the sovereign LORD says: None of my words will be delayed any longer! The word I speak will come to pass, declares the sovereign LORD.'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"13\">\n\t\t\t<VERS vnumber=\"1\"> Then the word of the LORD came to me:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Son of man, prophesy against the prophets of Israel who are now prophesying. Say to the prophets who prophesy from their imagination: 'Hear the word of the LORD! </VERS>\n\t\t\t<VERS vnumber=\"3\"> This is what the sovereign LORD says: Woe to the foolish prophets who follow their own spirit but have seen nothing!</VERS>\n\t\t\t<VERS vnumber=\"4\"> Your prophets have become like jackals among the ruins, O Israel.</VERS>\n\t\t\t<VERS vnumber=\"5\"> You have not gone up in the breaks in the wall, nor repaired a wall for the house of Israel that it would stand strong in the battle on the day of the LORD.</VERS>\n\t\t\t<VERS vnumber=\"6\"> They see delusion and their omens are a lie. They say, \"the LORD declares,\" though the LORD has not sent them; yet they expect their word to be confirmed.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Have you not seen a false vision and announced a lying omen when you say, \"the LORD declares,\" although I myself never spoke?</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"'Therefore, this is what the sovereign LORD says: Because you have spoken false words and forecast delusion, look, I am against you, declares the sovereign LORD. </VERS>\n\t\t\t<VERS vnumber=\"9\"> My hand will be against the prophets who see delusion and announce lying omens. They will not be included in the council of my people, nor be written in the registry of the house of Israel, nor enter the land of Israel. Then you will know that I am the sovereign LORD.</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"'This is because they have led my people astray saying, \"All is well,\" when things are not well. When anyone builds a wall without mortar, they coat it with whitewash. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Tell the ones who coat it with whitewash that it will fall. When there is a deluge of rain, hailstones will fall and a violent wind will break out.</VERS>\n\t\t\t<VERS vnumber=\"12\"> When the wall has collapsed, people will ask you, \"Where is the whitewash you coated it with?\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"'Therefore this is what the sovereign LORD says: In my rage I will make a violent wind break out. In my anger there will be a deluge of rain and hailstones in destructive fury.</VERS>\n\t\t\t<VERS vnumber=\"14\"> I will break down the wall you coated with whitewash and knock it to the ground so that its foundation is exposed. When it falls you will be destroyed beneath it, and you will know that I am the LORD. </VERS>\n\t\t\t<VERS vnumber=\"15\"> I will vent my rage against the wall, and against those who coated it with whitewash. Then I will say to you, \"The wall is no more and those who whitewashed it are no more,</VERS>\n\t\t\t<VERS vnumber=\"16\"> those prophets of Israel who would prophesy about Jerusalem and would see visions of peace for it, when there was no peace,\" declares the sovereign LORD.'</VERS>\n\t\t\t<VERS vnumber=\"17\"> \"As for you, son of man, turn toward the daughters of your people who are prophesying from their imagination. Prophesy against them </VERS>\n\t\t\t<VERS vnumber=\"18\"> and say 'This is what the sovereign LORD says: Woe to those who sew bands on all their wrists and make headbands for heads of every size to entrap people's lives! Will you entrap my people's lives, yet preserve your own lives? </VERS>\n\t\t\t<VERS vnumber=\"19\"> You have profaned me among my people for handfuls of barley and scraps of bread. You have put to death people who should not die and kept alive those who should not live by your lies to my people, who listen to lies!</VERS>\n\t\t\t<VERS vnumber=\"20\"> \"'Therefore, this is what the sovereign LORD says: Take note that I am against your wristbands with which you entrap people's lives like birds. I will tear them from your arms and will release the people's lives, which you hunt like birds. </VERS>\n\t\t\t<VERS vnumber=\"21\"> I will tear off your headbands and rescue my people from your power; they will no longer be prey in your hands. Then you will know that I am the LORD. </VERS>\n\t\t\t<VERS vnumber=\"22\"> This is because you have disheartened the righteous person with lies (although I have not grieved him), and because you have encouraged the wicked person not to turn from his evil conduct and preserve his life.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Therefore you will no longer see false visions and practice divination. I will rescue my people from your power, and you will know that I am the LORD.'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"14\">\n\t\t\t<VERS vnumber=\"1\"> Then some men from Israel's elders came to me and sat down in front of me.</VERS>\n\t\t\t<VERS vnumber=\"2\"> The word of the LORD came to me:</VERS>\n\t\t\t<VERS vnumber=\"3\"> \"Son of man, these men have erected their idols in their hearts and placed the obstacle leading to their iniquity right before their faces. Should I really allow them to seek me? </VERS>\n\t\t\t<VERS vnumber=\"4\"> Therefore speak to them and say to them, 'This is what the sovereign LORD says: When any one from the house of Israel erects his idols in his heart and sets the obstacle leading to his iniquity before his face, and then consults a prophet, I the LORD am determined to answer him personally according to the enormity of his idolatry.</VERS>\n\t\t\t<VERS vnumber=\"5\"> I will do this in order to capture the hearts of the house of Israel, who have alienated themselves from me on account of all their idols.'</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"Therefore say to the house of Israel, 'This is what the sovereign LORD says: Return! Turn from your idols, and turn your faces away from your abominations.</VERS>\n\t\t\t<VERS vnumber=\"7\"> For when anyone from the house of Israel, or the foreigner who lives in Israel, separates himself from me and erects his idols in his heart and sets the obstacle leading to his iniquity before his face, and then consults a prophet to seek something from me, I the LORD am determined to answer him personally.</VERS>\n\t\t\t<VERS vnumber=\"8\"> I will set my face against that person and will make him an object lesson and a byword and will cut him off from among my people. Then you will know that I am the LORD.</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"'As for the prophet, if he is made a fool by being deceived into speaking a prophetic word, I, the LORD, have made a fool of that prophet, and I will stretch out my hand against him and destroy him from among my people Israel.</VERS>\n\t\t\t<VERS vnumber=\"10\"> They will bear their punishment; the punishment of the one who sought an oracle will be the same as the punishment of the prophet who gave it</VERS>\n\t\t\t<VERS vnumber=\"11\"> so that the house of Israel will no longer go astray from me, nor continue to defile themselves by all their sins. They will be my people and I will be their God, declares the sovereign LORD.'\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> The word of the LORD came to me:</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"Son of man, suppose a country sins against me by being unfaithful, and I stretch out my hand against it, cut off its bread supply, cause famine to come on it, and kill both people and animals.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Even if these three men, Noah, Daniel, and Job, were in it, they would save only their own lives by their righteousness, declares the sovereign LORD.</VERS>\n\t\t\t<VERS vnumber=\"15\"> \"Suppose I were to send wild animals through the land and kill its children, leaving it desolate, without travelers due to the wild animals.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Even if these three men were in it, as surely as I live, declares the sovereign LORD, they could not save their own sons or daughters; they would save only their own lives, and the land would become desolate.</VERS>\n\t\t\t<VERS vnumber=\"17\"> \"Or suppose I were to bring a sword against that land and say, 'Let a sword pass through the land,' and I were to kill both people and animals.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Even if these three men were in it, as surely as I live, declares the sovereign LORD, they could not save their own sons or daughters, they would save only their own lives.</VERS>\n\t\t\t<VERS vnumber=\"19\"> \"Or suppose I were to send a plague into that land, and pour out my rage on it with bloodshed, killing both people and animals.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Even if Noah, Daniel, and Job were in it, as surely as I live, declares the sovereign LORD, they could not save their own son or daughter; they would save only their own lives by their righteousness.</VERS>\n\t\t\t<VERS vnumber=\"21\"> \"For this is what the sovereign LORD says: How much worse will it be when I send my four terrible judgments, sword, famine, wild animals, and plague, to Jerusalem to kill both people and animals!</VERS>\n\t\t\t<VERS vnumber=\"22\"> Yet some survivors will be left in it, sons and daughters who will be brought out. They will come out to you, and when you see their behavior and their deeds, you will be consoled about the catastrophe I have brought on Jerusalem, for everything I brought on it.</VERS>\n\t\t\t<VERS vnumber=\"23\"> They will console you when you see their behavior and their deeds, because you will know that it was not without reason that I have done everything which I have done in it, declares the sovereign LORD.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"15\">\n\t\t\t<VERS vnumber=\"1\"> The word of the LORD came to me:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Son of man, of all the woody branches among the trees of the forest, what happens to the wood of the vine?</VERS>\n\t\t\t<VERS vnumber=\"3\"> Can wood be taken from it to make anything useful? Or can anyone make a peg from it to hang things on?</VERS>\n\t\t\t<VERS vnumber=\"4\"> No! It is thrown in the fire for fuel; when the fire has burned up both ends of it and it is charred in the middle, will it be useful for anything? </VERS>\n\t\t\t<VERS vnumber=\"5\"> Indeed! If it was not made into anything useful when it was whole, how much less can it be made into anything when the fire has burned it up and it is charred?</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"Therefore, this is what the sovereign LORD says: Like the wood of the vine is among the trees of the forest which I have provided as fuel for the fire, so I will provide the residents of Jerusalem as fuel.</VERS>\n\t\t\t<VERS vnumber=\"7\"> I will set my face against them, although they have escaped from the fire, the fire will still consume them! Then you will know that I am the LORD, when I set my face against them.</VERS>\n\t\t\t<VERS vnumber=\"8\"> I will make the land desolate because they have acted unfaithfully, declares the sovereign LORD.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"16\">\n\t\t\t<VERS vnumber=\"1\"> The word of the LORD came to me:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Son of man, confront Jerusalem with her abominable practices </VERS>\n\t\t\t<VERS vnumber=\"3\"> and say, 'This is what the sovereign LORD says to Jerusalem: Your origin and your birth were in the land of the Canaanites; your father was an Amorite and your mother a Hittite.</VERS>\n\t\t\t<VERS vnumber=\"4\"> As for your birth, on the day you were born your umbilical cord was not cut, nor were you washed in water; you were certainly not rubbed down with salt, nor wrapped with blankets.</VERS>\n\t\t\t<VERS vnumber=\"5\"> No eye took pity on you to do even one of these things for you to spare you; you were thrown out into the open field because you were detested on the day you were born.</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"'I passed by you and saw you kicking around helplessly in your blood. I said to you as you lay there in your blood, \"Live!\" I said to you as you lay there in your blood, \"Live!\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> I made you plentiful like sprouts in a field; you grew tall and came of age so that you could wear jewelry. Your breasts had formed and your hair had grown, but you were still naked and bare.</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"'Then I passed by you and watched you, noticing that you had reached the age for love. I spread my cloak over you and covered your nakedness. I swore a solemn oath to you and entered into a marriage covenant with you, declares the sovereign LORD, and you became mine.</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"'Then I bathed you in water, washed the blood off you, and anointed you with fragrant oil.</VERS>\n\t\t\t<VERS vnumber=\"10\"> I dressed you in embroidered clothing and put fine leather sandals on your feet. I wrapped you with fine linen and covered you with silk.</VERS>\n\t\t\t<VERS vnumber=\"11\"> I adorned you with jewelry. I put bracelets on your hands and a necklace around your neck.</VERS>\n\t\t\t<VERS vnumber=\"12\"> I put a ring in your nose, earrings on your ears, and a beautiful crown on your head.</VERS>\n\t\t\t<VERS vnumber=\"13\"> You were adorned with gold and silver, while your clothing was of fine linen, silk, and embroidery. You ate the finest flour, honey, and olive oil. You became extremely beautiful and attained the position of royalty.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Your fame spread among the nations because of your beauty; your beauty was perfect because of the splendor which I bestowed on you, declares the sovereign LORD.</VERS>\n\t\t\t<VERS vnumber=\"15\"> \"'But you trusted in your beauty and capitalized on your fame by becoming a prostitute. You offered your sexual favors to every man who passed by so that your beauty became his. </VERS>\n\t\t\t<VERS vnumber=\"16\"> You took some of your clothing and made for yourself decorated high places; you engaged in prostitution on them. You went to him to become his.</VERS>\n\t\t\t<VERS vnumber=\"17\"> You also took your beautiful jewelry, made of my gold and my silver I had given to you, and made for yourself male images and engaged in prostitution with them. </VERS>\n\t\t\t<VERS vnumber=\"18\"> You took your embroidered clothing and used it to cover them; you offered my olive oil and my incense to them.</VERS>\n\t\t\t<VERS vnumber=\"19\"> As for my food that I gave you, the fine flour, olive oil, and honey I fed you, you placed it before them as a soothing aroma. That is exactly what happened, declares the sovereign LORD.</VERS>\n\t\t\t<VERS vnumber=\"20\"> \"'You took your sons and your daughters whom you bore to me and you sacrificed them as food for the idols to eat. As if your prostitution not enough, </VERS>\n\t\t\t<VERS vnumber=\"21\"> you slaughtered my children and sacrificed them to the idols.</VERS>\n\t\t\t<VERS vnumber=\"22\"> And with all your abominable practices and prostitution you did not remember the days of your youth when you were naked and bare, kicking around in your blood.</VERS>\n\t\t\t<VERS vnumber=\"23\"> \"'After all of your evil, \"Woe! Woe to you!\" declares the sovereign LORD,</VERS>\n\t\t\t<VERS vnumber=\"24\"> you built yourself a chamber and put up a pavilion in every public square. </VERS>\n\t\t\t<VERS vnumber=\"25\"> At the head of every street you erected your pavilion and you disgraced your beauty when you spread your legs to every passerby and multiplied your promiscuity. </VERS>\n\t\t\t<VERS vnumber=\"26\"> You engaged in prostitution with the Egyptians, your sexually aroused neighbors, multiplying your promiscuity and provoking me to anger. </VERS>\n\t\t\t<VERS vnumber=\"27\"> So see here, I have stretched out my hand against you and cut off your rations. I have delivered you into the power of those who hate you, the daughters of the Philistines, who were ashamed by your obscene conduct.</VERS>\n\t\t\t<VERS vnumber=\"28\"> You engaged in prostitution with the Assyrians because your sexual desires were insatiable; you prostituted yourself with them and yet you were still not satisfied.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Then you multiplied your promiscuity to the land of merchants, Babylonia, but you were not satisfied there either.</VERS>\n\t\t\t<VERS vnumber=\"30\"> \"'How sick is your heart, declares the sovereign LORD, when you perform all of these acts, the deeds of a bold prostitute.</VERS>\n\t\t\t<VERS vnumber=\"31\"> When you built your chamber at the head of every street and put up your pavilion in every public square, you were not like a prostitute, because you scoffed at payment.</VERS>\n\t\t\t<VERS vnumber=\"32\"> \"'Adulterous wife, who prefers strangers instead of her own husband!</VERS>\n\t\t\t<VERS vnumber=\"33\"> All prostitutes receive payment, but instead you give gifts to every one of your lovers. You bribe them to come to you from all around for your sexual favors! </VERS>\n\t\t\t<VERS vnumber=\"34\"> You were different from other prostitutes because no one solicited you. When you gave payment and no payment was given to you, you became the opposite!</VERS>\n\t\t\t<VERS vnumber=\"35\"> \"'Therefore O prostitute, hear the word of the LORD:</VERS>\n\t\t\t<VERS vnumber=\"36\"> This is what the sovereign LORD says: Because your lust was poured out and your nakedness was uncovered in your prostitution with your lovers, and because of all your detestable idols, and because of the blood of your children you have given to them, </VERS>\n\t\t\t<VERS vnumber=\"37\"> therefore, take note: I am about to gather all your lovers whom you enjoyed, both all those you loved and all those you hated. I will gather them against you from all around, and I will expose your nakedness to them, and they will see all your nakedness.</VERS>\n\t\t\t<VERS vnumber=\"38\"> I will punish you as an adulteress and murderer deserves. I will avenge your bloody deeds with furious rage.</VERS>\n\t\t\t<VERS vnumber=\"39\"> I will give you into their hands and they will destroy your chambers and tear down your pavilions. They will strip you of your clothing and take your beautiful jewelry and leave you naked and bare.</VERS>\n\t\t\t<VERS vnumber=\"40\"> They will summon a mob who will stone you and hack you in pieces with their swords.</VERS>\n\t\t\t<VERS vnumber=\"41\"> They will burn down your houses and execute judgments on you in front of many women. Thus I will put a stop to your prostitution, and you will no longer give gifts to your clients.</VERS>\n\t\t\t<VERS vnumber=\"42\"> I will exhaust my rage on you, and then my fury will turn from you. I will calm down and no longer be angry.</VERS>\n\t\t\t<VERS vnumber=\"43\"> \"'Because you did not remember the days of your youth and have enraged me with all these deeds, I hereby repay you for what you have done, declares the sovereign LORD. Have you not engaged in prostitution on top of all your other abominable practices?</VERS>\n\t\t\t<VERS vnumber=\"44\"> \"'Observe, everyone who quotes proverbs will quote this proverb about you: \"Like mother, like daughter.\"</VERS>\n\t\t\t<VERS vnumber=\"45\"> You are the daughter of your mother, who detested her husband and her sons, and you are the sister of your sisters who detested their husbands and their sons. Your mother was a Hittite and your father an Amorite.</VERS>\n\t\t\t<VERS vnumber=\"46\"> Your older sister was Samaria, who lived north of you with her daughters, and your younger sister, who lived south of you, was Sodom with her daughters. </VERS>\n\t\t\t<VERS vnumber=\"47\"> Have you not copied their behavior and practiced their abominable deeds? In a short time you became even more depraved in all your conduct than they were! </VERS>\n\t\t\t<VERS vnumber=\"48\"> As surely as I live, declares the sovereign LORD, your sister Sodom and her daughters never behaved as wickedly as you and your daughters have behaved.</VERS>\n\t\t\t<VERS vnumber=\"49\"> \"'See here, this was the iniquity of your sister Sodom: She and her daughters had majesty, abundance of food, and enjoyed carefree ease, but they did not help the poor and needy.</VERS>\n\t\t\t<VERS vnumber=\"50\"> They were haughty and practiced abominable deeds before me. Therefore when I saw it I removed them.</VERS>\n\t\t\t<VERS vnumber=\"51\"> Samaria has not committed half the sins you have; you have done more abominable deeds than they did. You have made your sisters appear righteous with all the abominable things you have done. </VERS>\n\t\t\t<VERS vnumber=\"52\"> So now, bear your disgrace, because you have given your sisters reason to justify their behavior. Because the sins you have committed were more abominable than those of your sisters; they have become more righteous than you. So now, be ashamed and bear the disgrace of making your sisters appear righteous.</VERS>\n\t\t\t<VERS vnumber=\"53\"> \"'I will restore their fortunes, the fortunes of Sodom and her daughters, and the fortunes of Samaria and her daughters (along with your fortunes among them),</VERS>\n\t\t\t<VERS vnumber=\"54\"> so that you may bear your disgrace and be ashamed of all you have done in consoling them.</VERS>\n\t\t\t<VERS vnumber=\"55\"> As for your sisters, Sodom and her daughters will be restored to their former status, Samaria and her daughters will be restored to their former status, and you and your daughters will be restored to your former status.</VERS>\n\t\t\t<VERS vnumber=\"56\"> In your days of majesty, was not Sodom your sister a byword in your mouth, </VERS>\n\t\t\t<VERS vnumber=\"57\"> before your evil was exposed? Now you have become an object of scorn to the daughters of Aram and all those around her and to the daughters of the Philistines, those all around you who despise you.</VERS>\n\t\t\t<VERS vnumber=\"58\"> You must bear your punishment for your obscene conduct and your abominable practices, declares the LORD.</VERS>\n\t\t\t<VERS vnumber=\"59\"> \"'For this is what the sovereign LORD says: I will deal with you according to what you have done when you despised your oath by breaking your covenant.</VERS>\n\t\t\t<VERS vnumber=\"60\"> Yet I will remember the covenant I made with you in the days of your youth, and I will establish a lasting covenant with you. </VERS>\n\t\t\t<VERS vnumber=\"61\"> Then you will remember your conduct, and be ashamed when you receive your older and younger sisters. I will give them to you as daughters, but not on account of my covenant with you.</VERS>\n\t\t\t<VERS vnumber=\"62\"> I will establish my covenant with you, and then you will know that I am the LORD.</VERS>\n\t\t\t<VERS vnumber=\"63\"> Then you will remember, be ashamed, and remain silent when I make atonement for all you have done, declares the sovereign LORD.'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"17\">\n\t\t\t<VERS vnumber=\"1\"> The word of the LORD came to me:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Son of man, offer a riddle, and tell a parable to the house of Israel. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Say to them: 'This is what the sovereign LORD says: \"'A great eagle with broad wings, long feathers, with full plumage which was multi-hued, came to Lebanon and took the top of the cedar.</VERS>\n\t\t\t<VERS vnumber=\"4\"> He plucked off its topmost shoot; he brought it to a land of merchants and planted it in a city of traders.</VERS>\n\t\t\t<VERS vnumber=\"5\"> He took one of the seedlings of the land, placed it in a cultivated plot; a shoot by abundant water, like a willow he planted it.</VERS>\n\t\t\t<VERS vnumber=\"6\"> It sprouted and became a vine, spreading low to the ground; its branches turning toward him, its roots were under itself. So it became a vine; it produced shoots and sent out branches.</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"'There was another great eagle with broad wings and thick plumage. Now this vine twisted its roots toward him and sent its branches toward him to be watered from the soil where it was planted.</VERS>\n\t\t\t<VERS vnumber=\"8\"> In a good field, by abundant waters, it was planted to grow branches, bear fruit, and become a beautiful vine.</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"'Say to them: This is what the sovereign LORD says: \"'Will it prosper? Will he not rip out its roots and cause its fruit to rot and wither? All its foliage will wither. No strong arm or large army will be needed to pull it out by its roots.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Consider! It is planted, but will it prosper? Will it not wither completely when the east wind blows on it? Will it not wither in the soil where it sprouted?'\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> Then the word of the LORD came to me:</VERS>\n\t\t\t<VERS vnumber=\"12\"> \"Say to the rebellious house of Israel: 'Don't you know what these things mean?' Say: 'See here, the king of Babylon came to Jerusalem and took her king and her officials prisoner and brought them to himself in Babylon. </VERS>\n\t\t\t<VERS vnumber=\"13\"> He took one from the royal family, made a treaty with him, and put him under oath. He then took the leaders of the land </VERS>\n\t\t\t<VERS vnumber=\"14\"> so it would be a lowly kingdom which could not rise on its own but must keep its treaty with him in order to stand.</VERS>\n\t\t\t<VERS vnumber=\"15\"> But this one from Israel's royal family rebelled against the king of Babylon by sending his emissaries to Egypt to obtain horses and a large army. Will he prosper? Will the one doing these things escape? Can he break the covenant and escape?</VERS>\n\t\t\t<VERS vnumber=\"16\"> \"'As surely as I live, declares the sovereign LORD, surely in the city of the king who crowned him, whose oath he despised and whose covenant he broke, in the middle of Babylon he will die!</VERS>\n\t\t\t<VERS vnumber=\"17\"> Pharaoh with his great army and mighty horde will not help him in battle, when siege ramps are erected and siege-walls are built to kill many people. </VERS>\n\t\t\t<VERS vnumber=\"18\"> He despised the oath by breaking the covenant. Take note, he gave his promise and did all these things, he will not escape!</VERS>\n\t\t\t<VERS vnumber=\"19\"> \"'Therefore this is what the sovereign LORD says: As surely as I live, I will certainly repay him for despising my oath and breaking my covenant! </VERS>\n\t\t\t<VERS vnumber=\"20\"> I will throw my net over him and he will be caught in my snare; I will bring him to Babylon and judge him there because of the unfaithfulness he committed against me.</VERS>\n\t\t\t<VERS vnumber=\"21\"> All the choice men among his troops will die by the sword and the survivors will be scattered to every wind. Then you will know that I, the LORD, have spoken!</VERS>\n\t\t\t<VERS vnumber=\"22\"> \"'This is what the sovereign LORD says: \"'I will take a sprig from the lofty top of the cedar and plant it. I will pluck from the top one of its tender twigs; I myself will plant it on a high and lofty mountain.</VERS>\n\t\t\t<VERS vnumber=\"23\"> I will plant it on a high mountain of Israel, and it will raise branches and produce fruit and become a beautiful cedar. Every bird will live under it; Every winged creature will live in the shade of its branches.</VERS>\n\t\t\t<VERS vnumber=\"24\"> All the trees of the field will know that I am the LORD. I make the high tree low; I raise up the low tree. I make the green tree wither, and I make the dry tree sprout. I, the LORD, have spoken, and I will do it!'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"18\">\n\t\t\t<VERS vnumber=\"1\"> The word of the LORD came to me:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"What do you mean by quoting this proverb concerning the land of Israel, \"'The fathers eat sour grapes And the children's teeth become numb?'</VERS>\n\t\t\t<VERS vnumber=\"3\"> \"As surely as I live, declares the sovereign LORD, you will not quote this proverb in Israel anymore! </VERS>\n\t\t\t<VERS vnumber=\"4\"> Indeed! All lives are mine, the life of the father as well as the life of the son is mine. The one who sins will die.</VERS>\n\t\t\t<VERS vnumber=\"5\"> \"Suppose a man is righteous. He practices what is just and right,</VERS>\n\t\t\t<VERS vnumber=\"6\"> does not eat pagan sacrifices on the mountains or pray to the idols of the house of Israel, does not defile his neighbor's wife, does not have sexual relations with a woman during her period, </VERS>\n\t\t\t<VERS vnumber=\"7\"> does not oppress anyone, but gives the debtor back whatever was given in pledge, does not commit robbery, but gives his bread to the hungry and clothes the naked, </VERS>\n\t\t\t<VERS vnumber=\"8\"> does not engage in usury or charge interest, but refrains from wrongdoing, promotes true justice between men, </VERS>\n\t\t\t<VERS vnumber=\"9\"> and follows my statutes and observes my regulations by carrying them out. That man is righteous; he will certainly live, declares the sovereign LORD.</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"Suppose such a man has a violent son who sheds blood and does any of these things mentioned previously </VERS>\n\t\t\t<VERS vnumber=\"11\"> (though the father did not do any of them). He eats pagan sacrifices on the mountains, defiles his neighbor's wife, </VERS>\n\t\t\t<VERS vnumber=\"12\"> oppresses the poor and the needy, commits robbery, does not give back what was given in pledge, prays to idols, performs abominable acts, </VERS>\n\t\t\t<VERS vnumber=\"13\"> engages in usury and charges interest. Will he live? He will not! Because he has done all these abominable deeds he will certainly die. He will bear the responsibility for his own death.</VERS>\n\t\t\t<VERS vnumber=\"14\"> \"But suppose he in turn has a son who notices all the sins his father commits, considers them, and does not follow his father's example.</VERS>\n\t\t\t<VERS vnumber=\"15\"> He does not eat pagan sacrifices on the mountains, does not pray to the idols of the house of Israel, does not defile his neighbor's wife,</VERS>\n\t\t\t<VERS vnumber=\"16\"> does not oppress anyone or keep what has been given in pledge, does not commit robbery, gives his food to the hungry, and clothes the naked,</VERS>\n\t\t\t<VERS vnumber=\"17\"> refrains from wrongdoing, does not engage in usury or charge interest, carries out my regulations and follows my statutes. He will not die for his father's iniquity; he will surely live.</VERS>\n\t\t\t<VERS vnumber=\"18\"> As for his father, because he practices extortion, robs his brother, and does what is not good among his people, he will die for his iniquity.</VERS>\n\t\t\t<VERS vnumber=\"19\"> \"Yet you say, 'Why should the son not suffer for his father's iniquity?' When the son does what is just and right, and observes all my statutes and carries them out, he will surely live.</VERS>\n\t\t\t<VERS vnumber=\"20\"> The person who sins is the one who will die. A son will not suffer for his father's iniquity, and a father will not suffer for his son's iniquity; the righteous person will be judged according to his righteousness, and the wicked person according to his wickedness.</VERS>\n\t\t\t<VERS vnumber=\"21\"> \"But if the wicked person turns from all the sin he has committed and observes all my statutes and does what is just and right, he will surely live; he will not die.</VERS>\n\t\t\t<VERS vnumber=\"22\"> None of the sins he has committed will be held against him; because of the righteousness he has done, he will live. </VERS>\n\t\t\t<VERS vnumber=\"23\"> Do I actually delight in the death of the wicked, declares the sovereign LORD? Do I not prefer that he turn from his wicked conduct and live?</VERS>\n\t\t\t<VERS vnumber=\"24\"> \"But if a righteous man turns away from his righteousness and practices wrongdoing according to all the abominable practices the wicked carry out, will he live? All his righteous acts will not be remembered; because of the unfaithful acts he has done and the sin he has committed, he will die.</VERS>\n\t\t\t<VERS vnumber=\"25\"> \"Yet you say, 'The Lord's conduct is unjust!' Hear, O house of Israel: Is my conduct unjust? Is it not your conduct that is unjust? </VERS>\n\t\t\t<VERS vnumber=\"26\"> When a righteous person turns back from his righteousness and practices wrongdoing, he will die for it; because of the wrongdoing he has done, he will die. </VERS>\n\t\t\t<VERS vnumber=\"27\"> When a wicked person turns from the wickedness he has committed and does what is just and right, he will preserve his life.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Because he considered and turned from all the sins he had done, he will surely live; he will not die. </VERS>\n\t\t\t<VERS vnumber=\"29\"> Yet the house of Israel says, 'The Lord's conduct is unjust!' Is my conduct unjust, O house of Israel? Is it not your conduct that is unjust?</VERS>\n\t\t\t<VERS vnumber=\"30\"> \"Therefore I will judge each person according to his conduct, O house of Israel, declares the sovereign LORD. Repent and turn from all your wickedness; then it will not be an obstacle leading to iniquity.</VERS>\n\t\t\t<VERS vnumber=\"31\"> Throw away all your sins you have committed and fashion yourselves a new heart and a new spirit! Why should you die, O house of Israel? </VERS>\n\t\t\t<VERS vnumber=\"32\"> For I take no delight in the death of anyone, declares the sovereign LORD. Repent and live!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"19\">\n\t\t\t<VERS vnumber=\"1\"> \"And you, sing a lament for the princes of Israel, </VERS>\n\t\t\t<VERS vnumber=\"2\"> and say: \"'What a lioness was your mother among the lions! She lay among young lions; she reared her cubs.</VERS>\n\t\t\t<VERS vnumber=\"3\"> She reared one of her cubs; he became a young lion. He learned to tear prey; he devoured people.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The nations heard about him; he was trapped in their pit. They brought him with hooks to the land of Egypt.</VERS>\n\t\t\t<VERS vnumber=\"5\"> \"'When she realized that she waited in vain, her hope was lost. She took another of her cubs and made him a young lion.</VERS>\n\t\t\t<VERS vnumber=\"6\"> He walked about among the lions; he became a young lion. He learned to tear prey; he devoured people.</VERS>\n\t\t\t<VERS vnumber=\"7\"> He broke down their strongholds and devastated their cities. The land and everything in it was frightened at the sound of his roaring.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The nations, the surrounding regions, attacked him. They threw their net over him; he was caught in their pit.</VERS>\n\t\t\t<VERS vnumber=\"9\"> They put him in a collar with hooks; they brought him to the king of Babylon; they brought him to prison so that his voice would not be heard any longer on the mountains of Israel.</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"'Your mother was like a vine in your vineyard, planted by water. It was fruitful and full of branches because it was well-watered.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Its boughs were strong, fit for rulers' scepters; it reached up into the clouds. It stood out because of its height and its many branches.</VERS>\n\t\t\t<VERS vnumber=\"12\"> But it was plucked up in anger; it was thrown down to the ground. The east wind dried up its fruit; its strong branches broke off and withered, a fire consumed them.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Now it is planted in the wilderness, in a dry and thirsty land.</VERS>\n\t\t\t<VERS vnumber=\"14\"> A fire has gone out from its branch; it has consumed its shoot and its fruit. No strong branch was left in it, nor a scepter to rule.' This is a lament song, and has become a lament song.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"20\">\n\t\t\t<VERS vnumber=\"1\"> In the seventh year, in the fifth month, on the tenth of the month, some of the elders of Israel came to seek the LORD, and they sat down in front of me. </VERS>\n\t\t\t<VERS vnumber=\"2\"> The word of the LORD came to me:</VERS>\n\t\t\t<VERS vnumber=\"3\"> \"Son of man, speak to the elders of Israel, and tell them: 'This is what the sovereign LORD says: Are you coming to seek me? As surely as I live, I will not allow you to seek me, declares the sovereign LORD.' </VERS>\n\t\t\t<VERS vnumber=\"4\"> \"Are you willing to pronounce judgment? Are you willing to pronounce judgment, son of man? Then confront them with the abominable practices of their fathers, </VERS>\n\t\t\t<VERS vnumber=\"5\"> and say to them: \"'This is what the sovereign LORD says: On the day I chose Israel I swore to the descendants of the house of Jacob and made myself known to them in the land of Egypt. I swore to them, \"I am the LORD your God.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> On that day I swore to bring them out of the land of Egypt to a land which I had picked out for them, a land flowing with milk and honey, the most beautiful of all lands. </VERS>\n\t\t\t<VERS vnumber=\"7\"> I said to them, \"Each of you must get rid of the detestable idols you keep before you, and do not defile yourselves with the idols of Egypt; I am the LORD your God.\" </VERS>\n\t\t\t<VERS vnumber=\"8\"> But they rebelled against me, and refused to listen to me; no one got rid of their detestable idols, nor did they abandon the idols of Egypt. Then I decided to pour out my rage on them and fully vent my anger against them in the midst of the land of Egypt. </VERS>\n\t\t\t<VERS vnumber=\"9\"> I acted for the sake of my reputation, so that I would not be profaned before the nations among whom they lived, before whom I revealed myself by bringing them out of the land of Egypt.</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"'So I brought them out of the land of Egypt and led them to the wilderness.</VERS>\n\t\t\t<VERS vnumber=\"11\"> I gave them my statutes and revealed my regulations to them. The one who carries them out will live by them!</VERS>\n\t\t\t<VERS vnumber=\"12\"> I also gave them my Sabbaths as a reminder of our relationship, so that they would know that I, the LORD, sanctify them.</VERS>\n\t\t\t<VERS vnumber=\"13\"> But the house of Israel rebelled against me in the wilderness; they did not follow my statutes and they rejected my regulations (the one who obeys them will live by them), and they utterly desecrated my Sabbaths. So I decided to pour out my rage on them in the wilderness and destroy them.</VERS>\n\t\t\t<VERS vnumber=\"14\"> I acted for the sake of my reputation, so that I would not be profaned before the nations in whose sight I had brought them out.</VERS>\n\t\t\t<VERS vnumber=\"15\"> I also swore to them in the wilderness that I would not bring them to the land I had given them, a land flowing with milk and honey, the most beautiful of all lands.</VERS>\n\t\t\t<VERS vnumber=\"16\"> I did this because they rejected my regulations, did not follow my statutes, and desecrated my Sabbaths; for their hearts followed their idols.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Yet I had pity on them and did not destroy them, so I did not make an end of them in the wilderness.</VERS>\n\t\t\t<VERS vnumber=\"18\"> \"'But I said to their children in the wilderness, \"Do not follow the practices of your fathers; do not observe their regulations, nor defile yourselves with their idols. </VERS>\n\t\t\t<VERS vnumber=\"19\"> I am the LORD your God; follow my statutes, observe my regulations, and carry them out.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Treat my Sabbaths as holy and they will be a reminder of our relationship, and then you will know that I am the LORD your God.\" </VERS>\n\t\t\t<VERS vnumber=\"21\"> \"'But the children rebelled against me, did not follow my statutes, did not observe my regulations by carrying them out (the one who obeys them will live by them), and desecrated my Sabbaths. I decided to pour out my rage on them and fully vent my anger against them in the wilderness. </VERS>\n\t\t\t<VERS vnumber=\"22\"> But I refrained from doing so, and acted instead for the sake of my reputation, so that I would not be profaned before the nations in whose sight I had brought them out. </VERS>\n\t\t\t<VERS vnumber=\"23\"> I also swore to them in the wilderness that I would scatter them among the nations and disperse them throughout the lands.</VERS>\n\t\t\t<VERS vnumber=\"24\"> I did this because they did not observe my regulations, they rejected my statutes, they desecrated my Sabbaths, and their eyes were fixed on their fathers' idols. </VERS>\n\t\t\t<VERS vnumber=\"25\"> I also gave them decrees which were not good and regulations by which they could not live. </VERS>\n\t\t\t<VERS vnumber=\"26\"> I declared them to be defiled because of their sacrifices, they caused all their first born to pass through the fire, so that I would devastate them, so that they will know that I am the LORD.'</VERS>\n\t\t\t<VERS vnumber=\"27\"> \"Therefore, speak to the house of Israel, son of man, and tell them, 'This is what the sovereign LORD says: In this way too your fathers blasphemed me when they were unfaithful to me.</VERS>\n\t\t\t<VERS vnumber=\"28\"> I brought them to the land which I swore to give them, but whenever they saw any high hill or leafy tree, they offered their sacrifices there and presented the offerings that provoke me to anger. They offered their soothing aroma there and poured out their drink offerings. </VERS>\n\t\t\t<VERS vnumber=\"29\"> So I said to them, What is this high place you go to?'\" (So it is called \"High Place\" to this day.)</VERS>\n\t\t\t<VERS vnumber=\"30\"> \"Therefore say to the house of Israel, 'This is what the sovereign LORD says: Will you defile yourselves like your fathers and engage in prostitution with detestable idols? </VERS>\n\t\t\t<VERS vnumber=\"31\"> When you present your sacrifices, when you make your sons pass through the fire, you defile yourselves with all your idols to this very day. Will I allow you to seek me, O house of Israel? As surely as I live, declares the sovereign LORD, I will not allow you to seek me!</VERS>\n\t\t\t<VERS vnumber=\"32\"> \"'What you plan will never happen. You say, \"We will be like the nations, like the clans of the lands, who serve gods of wood and stone.\"</VERS>\n\t\t\t<VERS vnumber=\"33\"> As surely as I live, declares the sovereign LORD, with a powerful hand and an outstretched arm, and with an outpouring of rage, I will be king over you. </VERS>\n\t\t\t<VERS vnumber=\"34\"> I will bring you out from the nations, and will gather you from the lands where you are scattered, with a powerful hand and an outstretched arm and with an outpouring of rage!</VERS>\n\t\t\t<VERS vnumber=\"35\"> I will bring you into the wilderness of the nations, and there I will enter into judgment with you face to face.</VERS>\n\t\t\t<VERS vnumber=\"36\"> Just as I entered into judgment with your fathers in the wilderness of the land of Egypt, so I will enter into judgment with you, declares the sovereign LORD.</VERS>\n\t\t\t<VERS vnumber=\"37\"> I will make you pass under the shepherd's staff, and I will bring you into the bond of the covenant. </VERS>\n\t\t\t<VERS vnumber=\"38\"> I will eliminate from among you the rebels and those who revolt against me. I will bring them out from the land where they have been residing, but they will not come to the land of Israel. Then you will know that I am the LORD.</VERS>\n\t\t\t<VERS vnumber=\"39\"> \"'As for you, O house of Israel, this is what the sovereign LORD says: Each of you go and serve your idols, if you will not listen to me. But my holy name will not be profaned again by your sacrifices and your idols. </VERS>\n\t\t\t<VERS vnumber=\"40\"> For there on my holy mountain, the high mountain of Israel, declares the sovereign LORD, all the house of Israel will serve me, all of them in the land. I will accept them there, and there I will seek your contributions and your choice gifts, with all your holy things.</VERS>\n\t\t\t<VERS vnumber=\"41\"> When I bring you out from the nations and gather you from the lands where you are scattered, I will accept you along with your soothing aroma. I will display my holiness among you in the sight of the nations.</VERS>\n\t\t\t<VERS vnumber=\"42\"> Then you will know that I am the LORD when I bring you to the land of Israel, to the land I swore to give to your fathers. </VERS>\n\t\t\t<VERS vnumber=\"43\"> And there you will remember your conduct and all your deeds by which you defiled yourselves. You will despise yourselves because of all the evil deeds you have done. </VERS>\n\t\t\t<VERS vnumber=\"44\"> Then you will know that I am the LORD, when I deal with you for the sake of my reputation and not according to your wicked conduct and corrupt deeds, O house of Israel, declares the sovereign LORD.'\"</VERS>\n\t\t\t<VERS vnumber=\"45\">  The word of the LORD came to me: </VERS>\n\t\t\t<VERS vnumber=\"46\"> \"Son of man, turn toward the south, and speak out against the south. Prophesy against the open scrub land of the Negev, </VERS>\n\t\t\t<VERS vnumber=\"47\"> and say to the scrub land of the Negev, 'Hear the word of the LORD: This is what the sovereign LORD says: Look here, I am about to start a fire in you, and it will devour every green tree and every dry tree in you. The flaming fire will not be extinguished, and the whole surface of the ground from the Negev to the north will be scorched by it. </VERS>\n\t\t\t<VERS vnumber=\"48\"> And everyone will see that I, the LORD, have burned it; it will not be extinguished.'\"</VERS>\n\t\t\t<VERS vnumber=\"49\"> Then I said, \"O sovereign LORD! They are saying of me, 'Does he not simply speak in eloquent figures of speech?'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"21\">\n\t\t\t<VERS vnumber=\"1\">  The word of the LORD came to me: </VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Son of man, turn toward Jerusalem and speak out against the sanctuaries. Prophesy against the land of Israel </VERS>\n\t\t\t<VERS vnumber=\"3\"> and say to them, 'This is what the LORD says: Look, I am against you. I will draw my sword from its sheath and cut off from you both the righteous and the wicked.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Because I will cut off from you both the righteous and the wicked, my sword will go out from its sheath against everyone from the south to the north. </VERS>\n\t\t\t<VERS vnumber=\"5\"> Then everyone will know that I am the LORD, who drew my sword from its sheath, it will not be sheathed again!'</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"And you, son of man, groan with an aching heart and bitterness; groan before their eyes. </VERS>\n\t\t\t<VERS vnumber=\"7\"> When they ask you, 'Why are you groaning?' you will reply, 'Because of the report that has come. Every heart will melt with fear and every hand will be limp; everyone will faint and every knee will be wet with urine.' Pay attention, it is coming and it will happen, declares the sovereign LORD.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> The word of the LORD came to me:</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"Son of man, prophesy and say: 'This is what the Lord says: \"'A sword, a sword is sharpened, and also polished.</VERS>\n\t\t\t<VERS vnumber=\"10\"> It is sharpened for slaughter, it is polished to flash like lightning! \"'Should we rejoice in the scepter of my son? No! The sword despises every tree!</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"'He gave it to be polished, to be grasped in the hand, the sword is sharpened, it is polished, giving it into the hand of the executioner.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Cry out and moan, son of man, for it is wielded against my people; against all the princes of Israel. They are delivered up to the sword, along with my people. Therefore, strike your thigh.</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"'For testing will come, and what will happen when the scepter, which the sword despises, is no more? declares the sovereign LORD.'</VERS>\n\t\t\t<VERS vnumber=\"14\"> \"And you, son of man, prophesy, and clap your hands together. Let the sword strike twice, even three times! It is a sword for slaughter, a sword for the great slaughter surrounding them.</VERS>\n\t\t\t<VERS vnumber=\"15\"> So hearts melt with fear and many stumble. At all their gates I have stationed the sword for slaughter. Ah! It is made to flash, it is drawn for slaughter!</VERS>\n\t\t\t<VERS vnumber=\"16\"> Cut sharply on the right! Swing to the left, wherever your edge is appointed to strike.</VERS>\n\t\t\t<VERS vnumber=\"17\"> I too will clap my hands together, I will exhaust my rage; I the LORD have spoken.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> The word of the LORD came to me:</VERS>\n\t\t\t<VERS vnumber=\"19\"> \"You, son of man, mark out two routes for the king of Babylon's sword to take; both of them will originate in a single land. Make a signpost and put it at the beginning of the road leading to the city.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Mark out the routes for the sword to take: \"Rabbah of the Ammonites\" and \"Judah with Jerusalem in it.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> For the king of Babylon stands at the fork in the road at the head of the two routes. He looks for omens: He shakes arrows, he consults idols, he examines animal livers.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Into his right hand comes the portent for Jerusalem, to set up battering rams, to give the signal for slaughter, to shout out the battle cry, to set up battering rams against the gates, to erect a siege ramp, to build a siege wall.</VERS>\n\t\t\t<VERS vnumber=\"23\"> But those in Jerusalem will view it as a false omen. They have sworn solemn oaths, but the king of Babylon will accuse them of violations in order to seize them.</VERS>\n\t\t\t<VERS vnumber=\"24\"> \"Therefore this is what the sovereign LORD says: 'Because you have brought up your own guilt by uncovering your transgressions and revealing your sins through all your actions, for this reason you will be taken by force.</VERS>\n\t\t\t<VERS vnumber=\"25\"> \"'As for you, profane and wicked prince of Israel, whose day has come, the time of final punishment,</VERS>\n\t\t\t<VERS vnumber=\"26\"> this is what the sovereign LORD says: Tear off the turban, take off the crown! Things must change! Exalt the lowly, bring down the proud!</VERS>\n\t\t\t<VERS vnumber=\"27\"> A total ruin I will make it! It will come to an end when the one arrives to whom I have assigned judgment.'</VERS>\n\t\t\t<VERS vnumber=\"28\"> \"As for you, son of man, prophesy and say, 'This is what the sovereign LORD says concerning the Ammonites and their coming humiliation; say: \"'A sword, a sword drawn for slaughter, polished to consume, to flash like lightning,</VERS>\n\t\t\t<VERS vnumber=\"29\"> while seeing false visions for you and reading lying omens for you, to place that sword on the necks of the profane wicked, whose day has come, the time of final punishment.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Return it to its sheath! In the place where you were created, in your native land, I will judge you.</VERS>\n\t\t\t<VERS vnumber=\"31\"> I will pour out my anger on you; the fire of my fury I will blow on you. I will hand you over to brutal men, who are skilled in destruction.</VERS>\n\t\t\t<VERS vnumber=\"32\"> You will become fuel for the fire, your blood will stain the middle of the land; you will no longer be remembered, for I, the LORD, have spoken.'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"22\">\n\t\t\t<VERS vnumber=\"1\"> The word of the LORD came to me:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"As for you, son of man, are you willing to pronounce judgment, are you willing to pronounce judgment on the bloody city? Then confront her with all her abominable deeds!</VERS>\n\t\t\t<VERS vnumber=\"3\"> Then say, 'This is what the sovereign LORD says: O city, who spills blood within herself (which brings on her doom), and who makes herself idols (which results in impurity),</VERS>\n\t\t\t<VERS vnumber=\"4\"> you are guilty because of the blood you shed and defiled by the idols you made. You have hastened the day of your doom; the end of your years has come. Therefore I will make you an object of scorn to the nations, an object to be mocked by all lands. </VERS>\n\t\t\t<VERS vnumber=\"5\"> Those both near and far from you will mock you, you with your bad reputation, full of turmoil.</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"'See how each of the princes of Israel living within you has used his authority to shed blood.</VERS>\n\t\t\t<VERS vnumber=\"7\"> They have treated father and mother with contempt within you; they have oppressed the foreigner among you; they have wronged the orphan and the widow within you. </VERS>\n\t\t\t<VERS vnumber=\"8\"> You have despised my holy things and desecrated my Sabbaths!</VERS>\n\t\t\t<VERS vnumber=\"9\"> Slanderous men shed blood within you. Those who live within you eat pagan sacrifices on the mountains; they commit obscene acts among you.</VERS>\n\t\t\t<VERS vnumber=\"10\"> They have sex with their father's wife within you; they violate women during their menstrual period within you.</VERS>\n\t\t\t<VERS vnumber=\"11\"> One commits an abominable act with his neighbor's wife; another obscenely defiles his daughter-in-law; another violates his sister, his father's daughter, within you.</VERS>\n\t\t\t<VERS vnumber=\"12\"> They take bribes within you to shed blood. You engage in usury and charge interest; you extort money from your neighbors. You have forgotten me, declares the sovereign LORD.</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"'See, I strike my hands together at the dishonest profit you have made, and at the bloodshed they have done among you. </VERS>\n\t\t\t<VERS vnumber=\"14\"> Can your heart endure, or can your hands be strong when I deal with you? I, the LORD, have spoken, and I will do it!</VERS>\n\t\t\t<VERS vnumber=\"15\"> I will scatter you among the nations and disperse you among various countries; I will remove your impurity from you.</VERS>\n\t\t\t<VERS vnumber=\"16\"> You will be profaned within yourself in the sight of the nations; then you will know that I am the LORD.'\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> The word of the LORD came to me:</VERS>\n\t\t\t<VERS vnumber=\"18\"> \"Son of man, the house of Israel has become slag to me. All of them are like bronze, tin, iron, and lead in the furnace; they are the worthless slag of silver. </VERS>\n\t\t\t<VERS vnumber=\"19\"> Therefore this is what the sovereign LORD says: 'Because all of you have become slag, look out!, I am about to gather you in the middle of Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"20\"> As silver, bronze, iron, lead, and tin are gathered in a furnace so that the fire can melt them, so I will gather you in my anger and in my rage. I will deposit you there and melt you. </VERS>\n\t\t\t<VERS vnumber=\"21\"> I will gather you and blow on you with the fire of my fury, and you will be melted in it.</VERS>\n\t\t\t<VERS vnumber=\"22\"> As silver is melted in a furnace, so you will be melted in it, and you will know that I, the LORD, have poured out my anger on you.'\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> The word of the LORD came to me:</VERS>\n\t\t\t<VERS vnumber=\"24\"> \"Son of man, say to her: 'You are a land that receives no rain or showers in the day of my anger.'</VERS>\n\t\t\t<VERS vnumber=\"25\"> Her princes within her are like a roaring lion tearing its prey; they have devoured lives. They take away riches and valuable things; they have made many women widows within it. </VERS>\n\t\t\t<VERS vnumber=\"26\"> Her priests abuse my law and have desecrated my holy things. They do not distinguish between the holy and the profane, or recognize any distinction between the unclean and the clean. They ignore my Sabbaths and I am profaned in their midst. </VERS>\n\t\t\t<VERS vnumber=\"27\"> Her officials are like wolves in her midst rending their prey, shedding blood and destroying lives, so they can get dishonest profit.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Her prophets coat their messages with whitewash. They see false visions and announce lying omens for them, saying, 'This is what the sovereign LORD says,' when the LORD has not spoken. </VERS>\n\t\t\t<VERS vnumber=\"29\"> The people of the land have practiced extortion and committed robbery. They have wronged the poor and needy; they have oppressed the foreigner who lives among them and denied them justice.</VERS>\n\t\t\t<VERS vnumber=\"30\"> \"I looked for a man from among them who would repair the wall and stand in the gap before me on behalf of the land, so that I would not destroy it, but I found no one.</VERS>\n\t\t\t<VERS vnumber=\"31\"> So I have poured my anger on them, and destroyed them with the fire of my fury. I hereby repay them for what they have done, declares the sovereign LORD.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"23\">\n\t\t\t<VERS vnumber=\"1\"> The word of the LORD came to me:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Son of man, there were two women who were daughters of the same mother.</VERS>\n\t\t\t<VERS vnumber=\"3\"> They engaged in prostitution in Egypt; in their youth they engaged in prostitution. Their breasts were squeezed there; lovers fondled their virgin nipples there. </VERS>\n\t\t\t<VERS vnumber=\"4\"> Oholah was the name of the older and Oholibah the name of her younger sister. They became mine, and gave birth to sons and daughters. Oholah is Samaria and Oholibah is Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"5\"> \"Oholah engaged in prostitution while she was mine. She lusted after her lovers, the Assyrians, warriors</VERS>\n\t\t\t<VERS vnumber=\"6\"> clothed in blue, governors and officials, all of them desirable young men, horsemen riding on horses.</VERS>\n\t\t\t<VERS vnumber=\"7\"> She bestowed her sexual favors on them; all of them were the choicest young men of Assyria. She defiled herself with all whom she desired, with all their idols.</VERS>\n\t\t\t<VERS vnumber=\"8\"> She did not abandon the prostitution she had practiced in Egypt; for in her youth men had sex with her, fondled her virgin breasts, and ravished her.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Therefore I handed her over to her lovers, the Assyrians for whom she lusted. </VERS>\n\t\t\t<VERS vnumber=\"10\"> They exposed her nakedness, seized her sons and daughters, and killed her with the sword. She became notorious among women, and they executed judgments against her.</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"Her sister Oholibah watched this, but she became more corrupt in her lust than her sister had been, and her acts of prostitution were more numerous than those of her sister. </VERS>\n\t\t\t<VERS vnumber=\"12\"> She lusted after the Assyrians, governors and officials, warriors in full armor, horsemen riding on horses, all of them desirable young men.</VERS>\n\t\t\t<VERS vnumber=\"13\"> I saw that she was defiled; both of them followed the same path.</VERS>\n\t\t\t<VERS vnumber=\"14\"> But she increased her prostitution. She saw men carved on the wall, images of the Chaldeans carved in bright red,</VERS>\n\t\t\t<VERS vnumber=\"15\"> wearing belts on their waists and flowing turbans on their heads, all of them looking like officers, the image of Babylonians whose native land is Chaldea. </VERS>\n\t\t\t<VERS vnumber=\"16\"> When she saw them, she lusted after them and sent messengers to them in Chaldea.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The Babylonians crawled into bed with her. They defiled her with their lust; after she was defiled by them, she became disgusted with them. </VERS>\n\t\t\t<VERS vnumber=\"18\"> When she lustfully exposed her nakedness, I was disgusted with her, just as I had been disgusted with her sister. </VERS>\n\t\t\t<VERS vnumber=\"19\"> Yet she increased her prostitution, remembering the days of her youth when she engaged in prostitution in the land of Egypt.</VERS>\n\t\t\t<VERS vnumber=\"20\"> She lusted after their genitals, as large as those of donkeys, and their seminal emission was as strong as that of stallions.</VERS>\n\t\t\t<VERS vnumber=\"21\"> This is how you assessed the obscene conduct of your youth, when the Egyptians fondled your nipples and squeezed your young breasts.</VERS>\n\t\t\t<VERS vnumber=\"22\"> \"Therefore, Oholibah, this is what the sovereign LORD says: Look here, I am about to stir up against you the lovers with whom you were disgusted; I will bring them against you from every side: </VERS>\n\t\t\t<VERS vnumber=\"23\"> the Babylonians and all the Chaldeans, Pekod, Shoa, and Koa, and all the Assyrians with them, desirable young men, all of them governors and officials, officers and nobles, all of them riding on horses. </VERS>\n\t\t\t<VERS vnumber=\"24\"> They will attack you with weapons, chariots, wagons, and with a huge army; they will array themselves against you on every side with large shields, small shields, and helmets. I will assign them the task of judgment; they will punish you according to their laws.</VERS>\n\t\t\t<VERS vnumber=\"25\"> I will direct my jealous anger against you, and they will deal with you in rage. They will cut off your nose and your ears, and your survivors will die by the sword. They will seize your sons and daughters, and your survivors will be consumed by fire. </VERS>\n\t\t\t<VERS vnumber=\"26\"> They will strip your clothes off you and take away your beautiful jewelry.</VERS>\n\t\t\t<VERS vnumber=\"27\"> So I will put an end to your obscene conduct and your prostitution which you have practiced in the land of Egypt. You will not seek their help or remember Egypt anymore.</VERS>\n\t\t\t<VERS vnumber=\"28\"> \"For this is what the sovereign LORD says: Look here, I am about to deliver you over to those whom you hate, to those with whom you were disgusted. </VERS>\n\t\t\t<VERS vnumber=\"29\"> They will treat you with hatred, take away all you have labored for, and leave you naked and bare. Your nakedness will be exposed, just as when you engaged in prostitution and obscene conduct.</VERS>\n\t\t\t<VERS vnumber=\"30\"> I will do these things to you because you engaged in prostitution with the nations, polluting yourself with their idols. </VERS>\n\t\t\t<VERS vnumber=\"31\"> You have followed the ways of your sister, so I will place her cup of judgment in your hand. </VERS>\n\t\t\t<VERS vnumber=\"32\"> \"This is what the sovereign LORD says: \"You will drink your sister's deep and wide cup; you will be scorned and derided, for it holds a great deal. </VERS>\n\t\t\t<VERS vnumber=\"33\"> You will be overcome by drunkenness and sorrow. The cup of your sister Samaria is a cup of horror and desolation. </VERS>\n\t\t\t<VERS vnumber=\"34\"> You will drain it dry, gnaw its pieces, and tear out your breasts, for I have spoken, declares the sovereign LORD.</VERS>\n\t\t\t<VERS vnumber=\"35\"> \"Therefore this is what the sovereign LORD says: Because you have forgotten me and completely disregarded me, you must bear now the punishment for your obscene conduct and prostitution.\"</VERS>\n\t\t\t<VERS vnumber=\"36\"> The LORD said to me: \"Son of man, are you willing to pronounce judgment on Oholah and Oholibah? Then declare to them their abominable deeds! </VERS>\n\t\t\t<VERS vnumber=\"37\"> For they have committed adultery and blood is on their hands. They have committed adultery with their idols, and their sons, whom they bore to me, they have passed through the fire as food to their idols.</VERS>\n\t\t\t<VERS vnumber=\"38\"> Moreover, they have done this to me: In the very same day they desecrated my sanctuary and profaned my Sabbaths. </VERS>\n\t\t\t<VERS vnumber=\"39\"> On the same day they slaughtered their sons for their idols, they came to my sanctuary to desecrate it. This is what they have done in the middle of my house.</VERS>\n\t\t\t<VERS vnumber=\"40\"> \"They even sent for men from far away; when the messenger arrived, those men set out. For them you bathed, painted your eyes, and decorated yourself with jewelry. </VERS>\n\t\t\t<VERS vnumber=\"41\"> You sat on a magnificent couch, with a table arranged in front of it where you placed my incense and my olive oil.</VERS>\n\t\t\t<VERS vnumber=\"42\"> The sound of a carefree crowd accompanied her, including all kinds of men; even Sabeans were brought from the desert. The sisters put bracelets on their wrists and beautiful crowns on their heads. </VERS>\n\t\t\t<VERS vnumber=\"43\"> Then I said about the one worn out by adultery, 'Now they will commit immoral acts with her.'</VERS>\n\t\t\t<VERS vnumber=\"44\"> They had sex with her as one does with a prostitute. In this way they had sex with Oholah and Oholibah, promiscuous women. </VERS>\n\t\t\t<VERS vnumber=\"45\"> But upright men will punish them appropriately for their adultery and bloodshed, because they are adulteresses and blood is on their hands.</VERS>\n\t\t\t<VERS vnumber=\"46\"> \"For this is what the sovereign LORD says: Bring up an army against them and subject them to terror and plunder. </VERS>\n\t\t\t<VERS vnumber=\"47\"> That army will pelt them with stones and slash them with their swords; they will kill their sons and daughters and burn their houses.</VERS>\n\t\t\t<VERS vnumber=\"48\"> I will put an end to the obscene conduct in the land; all the women will learn a lesson from this and not engage in obscene conduct.</VERS>\n\t\t\t<VERS vnumber=\"49\"> They will repay you for your obscene conduct, and you will be punished for idol worship. Then you will know that I am the sovereign LORD.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"24\">\n\t\t\t<VERS vnumber=\"1\"> The word of the LORD came to me in the ninth year, in the tenth month, on the tenth day of the month:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Son of man, write down the name of this day, this very day. The king of Babylon has laid siege to Jerusalem this very day. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Recite a proverb to this rebellious house and say to them, 'This is what the sovereign LORD says: \"'Set on the pot, set it on, pour water in it too;</VERS>\n\t\t\t<VERS vnumber=\"4\"> add the pieces of meat to it, every good piece, the thigh and the shoulder; fill it with choice bones.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Take the choice bone of the flock, heap up bones under it; boil rapidly, and boil its bones in it.</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"'Therefore this is what the sovereign LORD says: Woe to the city of bloodshed, the pot whose rot is in it, whose rot has not been removed from it! Empty it piece by piece. No lot has fallen on it.</VERS>\n\t\t\t<VERS vnumber=\"7\"> For her blood was in it; she poured it on an exposed rock; she did not pour it on the ground to cover it up with dust.</VERS>\n\t\t\t<VERS vnumber=\"8\"> To arouse anger, to take vengeance, I have placed her blood on an exposed rock so that it cannot be covered up.</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"'Therefore this is what the sovereign LORD says: Woe to the city of bloodshed! I will also make the pile high.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Pile up the bones, kindle the fire; cook the meat well, mix in the spices, let the bones be charred.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Set the empty pot on the coals, until it becomes hot and its copper glows, until its uncleanness melts within it and its rot is consumed.</VERS>\n\t\t\t<VERS vnumber=\"12\"> It has tried my patience; yet its thick rot is not removed from it. Subject its rot to the fire!</VERS>\n\t\t\t<VERS vnumber=\"13\"> You mix uncleanness with obscene conduct. I tried to cleanse you, but you are not clean. You will not be cleansed from your uncleanness until I have exhausted my anger on you.</VERS>\n\t\t\t<VERS vnumber=\"14\"> \"'I the LORD have spoken; judgment is coming and I will act! I will not relent, or show pity, or be sorry! I will judge you according to your conduct and your deeds, declares the sovereign LORD.'\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> The word of LORD came to me:</VERS>\n\t\t\t<VERS vnumber=\"16\"> \"Son of man, realize that I am about to take the delight of your eyes away from you with a jolt, but you must not mourn or weep or shed tears. </VERS>\n\t\t\t<VERS vnumber=\"17\"> Groan in silence for the dead, but do not perform mourning rites. Bind on your turban and put your sandals on your feet. Do not cover your lip and do not eat food brought by others.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> So I spoke to the people in the morning, and my wife died in the evening. In the morning I acted just as I was commanded. </VERS>\n\t\t\t<VERS vnumber=\"19\"> Then the people said to me, \"Will you not tell us what these things you are doing mean for us?\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> So I said to them: \"The word of the LORD came to me:</VERS>\n\t\t\t<VERS vnumber=\"21\"> Say to the house of Israel, 'This is what the sovereign LORD says: Realize I am about to desecrate my sanctuary, the source of your confident pride, the object in which your eyes delight, and your life's passion. Your very own sons and daughters whom you have left behind will die by the sword.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Then you will do as I have done: You will not cover your lip or eat food brought by others.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Your turbans will be on your heads and your sandals on your feet; you will not mourn or weep, but you will rot for your iniquities and groan among yourselves. </VERS>\n\t\t\t<VERS vnumber=\"24\"> Ezekiel will be an object lesson for you; you will do all that he has done. When it happens, then you will know that I am the sovereign LORD.'</VERS>\n\t\t\t<VERS vnumber=\"25\"> \"And you, son of man, this is what will happen on the day I take from them their stronghold, their beautiful source of joy, the object in which their eyes delight, and the main concern of their lives, as well as their sons and daughters:</VERS>\n\t\t\t<VERS vnumber=\"26\"> On that day a fugitive will come to you to report the news.</VERS>\n\t\t\t<VERS vnumber=\"27\"> On that day you will be able to speak again; you will talk with the fugitive and be silent no longer. You will be an object lesson for them, and they will know that I am the LORD.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"25\">\n\t\t\t<VERS vnumber=\"1\"> The word of the LORD came to me:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Son of man, turn toward the Ammonites and prophesy against them. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Say to the Ammonites, 'Hear the word of the sovereign LORD: This is what the sovereign LORD says: You said \"Aha!\" about my sanctuary when it was desecrated, about the land of Israel when it was made desolate, and about the house of Judah when they went into exile.</VERS>\n\t\t\t<VERS vnumber=\"4\"> So take note, I am about to make you slaves of the tribes of the east. They will make camps among you and pitch their tents among you. They will eat your fruit and drink your milk. </VERS>\n\t\t\t<VERS vnumber=\"5\"> I will make Rabbah a pasture for camels and Ammon a resting place for sheep. Then you will know that I am the LORD. </VERS>\n\t\t\t<VERS vnumber=\"6\"> For this is what the sovereign LORD says: Because you clapped your hands, stamped your feet, and rejoiced with intense scorn over the land of Israel, </VERS>\n\t\t\t<VERS vnumber=\"7\"> take note, I have stretched out my hand against you, and I will hand you over as plunder to the nations. I will cut you off from the peoples and make you perish from the lands. I will destroy you; then you will know that I am the LORD.'\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"This is what the sovereign LORD says: 'Moab and Seir say, \"Look, the house of Judah is like all the other nations.\" </VERS>\n\t\t\t<VERS vnumber=\"9\"> So look, I am about to open up Moab's flank, eliminating the cities, including its frontier cities, the beauty of the land, Beth Jeshimoth, Baal Meon, and Kiriathaim.</VERS>\n\t\t\t<VERS vnumber=\"10\"> I will hand it over, along with the Ammonites, to the tribes of the east, so that the Ammonites will no longer be remembered among the nations. </VERS>\n\t\t\t<VERS vnumber=\"11\"> I will execute judgments against Moab. Then they will know that I am the LORD.'\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> \"This is what the sovereign LORD says: 'Edom has taken vengeance against the house of Judah; they have made themselves fully culpable by taking vengeance on them.</VERS>\n\t\t\t<VERS vnumber=\"13\"> So this is what the sovereign LORD says: I will stretch out my hand against Edom, and I will kill the people and animals within her, and I will make her desolate; from Teman to Dedan they will die by the sword. </VERS>\n\t\t\t<VERS vnumber=\"14\"> I will exact my vengeance upon Edom by the hand of my people Israel. They will carry out in Edom my anger and rage; they will experience my vengeance, declares the sovereign LORD.'\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> \"This is what the sovereign LORD says: 'The Philistines have exacted merciless revenge, showing intense scorn in their effort to destroy Judah with unrelenting hostility.</VERS>\n\t\t\t<VERS vnumber=\"16\"> So this is what the sovereign LORD says: Take note, I am about to stretch out my hand against the Philistines. I will kill the Cherethites and destroy those who remain on the seacoast. </VERS>\n\t\t\t<VERS vnumber=\"17\"> I will exact great vengeance upon them with angry rebukes. Then they will know that I am the LORD, when I exact my vengeance upon them.'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"26\">\n\t\t\t<VERS vnumber=\"1\"> In the eleventh year, on the first day of the month, the word of the LORD came to me: </VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Son of man, because Tyre has said about Jerusalem, 'Aha, the gateway of the peoples is broken; it has swung open to me. I will become rich, now that she has been destroyed,' </VERS>\n\t\t\t<VERS vnumber=\"3\"> therefore this is what the sovereign LORD says: Look, I am against you, O Tyre! I will bring up many nations against you, as the sea brings up its waves. </VERS>\n\t\t\t<VERS vnumber=\"4\"> They will destroy the walls of Tyre and break down her towers. I will scrape her soil from her and make her a bare rock. </VERS>\n\t\t\t<VERS vnumber=\"5\"> She will be a place where fishing nets are spread, surrounded by the sea. For I have spoken, declares the sovereign LORD. She will become plunder for the nations,</VERS>\n\t\t\t<VERS vnumber=\"6\"> and her daughters who are in the field will be slaughtered by the sword. Then they will know that I am the LORD.</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"For this is what the sovereign LORD says: Take note that I am about to bring King Nebuchadrezzar of Babylon, king of kings, against Tyre from the north, with horses, chariots, and horsemen, an army and hordes of people. </VERS>\n\t\t\t<VERS vnumber=\"8\"> He will kill your daughters in the field with the sword. He will build a siege wall against you, erect a siege ramp against you, and raise a great shield against you.</VERS>\n\t\t\t<VERS vnumber=\"9\"> He will direct the blows of his battering rams against your walls and tear down your towers with his weapons.</VERS>\n\t\t\t<VERS vnumber=\"10\"> He will cover you with the dust kicked up by his many horses. Your walls will shake from the noise of the horsemen, wheels, and chariots when he enters your gates like those who invade through a city's broken walls.</VERS>\n\t\t\t<VERS vnumber=\"11\"> With his horses' hoofs he will trample all your streets. He will kill your people with the sword, and your strong pillars will tumble down to the ground.</VERS>\n\t\t\t<VERS vnumber=\"12\"> They will steal your wealth and loot your merchandise. They will tear down your walls and destroy your luxurious homes. Your stones, your trees, and your soil he will throw into the water.</VERS>\n\t\t\t<VERS vnumber=\"13\"> I will silence the noise of your songs; the sound of your harps will be heard no more. </VERS>\n\t\t\t<VERS vnumber=\"14\"> I will make you a bare rock; you will be a place where fishing nets are spread. You will never be built again, for I, the LORD, have spoken, declares the sovereign LORD.</VERS>\n\t\t\t<VERS vnumber=\"15\"> \"This is what the sovereign LORD says to Tyre: Oh, how the coastlands will shake at the sound of your fall, when the wounded groan, at the massive slaughter in your midst!</VERS>\n\t\t\t<VERS vnumber=\"16\"> All the princes of the sea will vacate their thrones. They will remove their robes and strip off their embroidered clothes; they will clothe themselves with trembling. They will sit on the ground; they will tremble continually and be shocked at what has happened to you.</VERS>\n\t\t\t<VERS vnumber=\"17\"> They will sing this lament over you: \"'How you have perished, you have vanished from the seas, O renowned city, once mighty in the sea, she and her inhabitants, who spread their terror!</VERS>\n\t\t\t<VERS vnumber=\"18\"> Now the coastlands will tremble on the day of your fall; the coastlands by the sea will be terrified by your passing.'</VERS>\n\t\t\t<VERS vnumber=\"19\"> \"For this is what the sovereign LORD says: When I make you desolate like the uninhabited cities, when I bring up the deep over you and the surging waters overwhelm you, </VERS>\n\t\t\t<VERS vnumber=\"20\"> then I will bring you down to bygone people, to be with those who descend to the pit. I will make you live in the lower parts of the earth, among the primeval ruins, with those who descend to the pit, so that you will not be inhabited or stand in the land of the living.</VERS>\n\t\t\t<VERS vnumber=\"21\"> I will bring terrors on you, and you will be no more! Though you are sought after, you will never be found again, declares the sovereign LORD.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"27\">\n\t\t\t<VERS vnumber=\"1\"> The word of the LORD came to me:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"You, son of man, sing a lament for Tyre.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Say to Tyre, who sits at the entrance of the sea, merchant to the peoples on many coasts, 'This is what the sovereign LORD says: \"'O Tyre, you have said, \"I am perfectly beautiful.\"</VERS>\n\t\t\t<VERS vnumber=\"4\">  Your borders are in the heart of the seas; your builders have perfected your beauty.</VERS>\n\t\t\t<VERS vnumber=\"5\"> They crafted all your planks out of fir trees from Senir; they took a cedar from Lebanon to make your mast.</VERS>\n\t\t\t<VERS vnumber=\"6\"> They made your oars from oaks of Bashan; they made your deck with cypresses from the Kittean isles.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Fine linen from Egypt, woven with patterns, was used for your sail to serve as your banner; blue and purple from the coastlands of Elishah was used for your deck's awning.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The leaders of Sidon and Arvad were your rowers; your skilled men, O Tyre, were your captains.</VERS>\n\t\t\t<VERS vnumber=\"9\"> The elders of Gebal and her skilled men were within you, mending cracks; all the ships of the sea and their mariners were within you to trade for your merchandise.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Men of Persia, Lud, and Put were in your army, men of war. They hung shield and helmet on you; they gave you your splendor.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The Arvadites joined your army on your walls all around, and the Gammadites were in your towers. They hung their quivers on your walls all around; they perfected your beauty.</VERS>\n\t\t\t<VERS vnumber=\"12\"> \"'Tarshish was your trade partner because of your abundant wealth; they exchanged silver, iron, tin, and lead for your products. </VERS>\n\t\t\t<VERS vnumber=\"13\"> Javan, Tubal, and Meshech were your clients; they exchanged slaves and bronze items for your merchandise.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Beth Togarmah exchanged horses, chargers, and mules for your products. </VERS>\n\t\t\t<VERS vnumber=\"15\"> The Dedanites were your clients. Many coastlands were your customers; they paid you with ivory tusks and ebony. </VERS>\n\t\t\t<VERS vnumber=\"16\"> Edom was your trade partner because of the abundance of your goods; they exchanged turquoise, purple, embroidered work, fine linen, coral, and rubies for your products. </VERS>\n\t\t\t<VERS vnumber=\"17\"> Judah and the land of Israel were your clients; they traded wheat from Minnith, millet, honey, olive oil, and balm for your merchandise. </VERS>\n\t\t\t<VERS vnumber=\"18\"> Damascus was your trade partner because of the abundance of your goods and of all your wealth: wine from Helbon, white wool from Zahar,</VERS>\n\t\t\t<VERS vnumber=\"19\"> and casks of wine from Izal they exchanged for your products. Wrought iron, cassia, and sweet cane were among your merchandise. </VERS>\n\t\t\t<VERS vnumber=\"20\"> Dedan was your client in saddlecloths for riding.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Arabia and all the princes of Kedar were your trade partners; for lambs, rams, and goats they traded with you.</VERS>\n\t\t\t<VERS vnumber=\"22\"> The merchants of Sheba and Raamah engaged in trade with you; they traded the best kinds of spices along with precious stones and gold for your products.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Haran, Kanneh, Eden, merchants from Sheba, Asshur, and Kilmad were your clients.</VERS>\n\t\t\t<VERS vnumber=\"24\"> They traded with you choice garments, purple clothes and embroidered work, and multicolored carpets, bound and reinforced with cords; these were among your merchandise.</VERS>\n\t\t\t<VERS vnumber=\"25\"> The ships of Tarshish were the transports for your merchandise. \"'So you were filled and weighed down in the heart of the seas.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Your rowers have brought you into surging waters. The east wind has wrecked you in the heart of the seas.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Your wealth, products, and merchandise, your sailors and captains, your ship's carpenters, your merchants, and all your fighting men within you, along with all your crew who are in you, will fall into the heart of the seas on the day of your downfall.</VERS>\n\t\t\t<VERS vnumber=\"28\"> At the sound of your captains' cry the waves will surge;</VERS>\n\t\t\t<VERS vnumber=\"29\"> They will descend from their ships, all who handle the oar, the sailors and all the sea captains, they will stand on the land.</VERS>\n\t\t\t<VERS vnumber=\"30\"> They will lament loudly over you and cry bitterly. They will throw dust on their heads and roll in the ashes;</VERS>\n\t\t\t<VERS vnumber=\"31\"> they will tear out their hair because of you and put on sackcloth, and they will weep bitterly over you with intense mourning.</VERS>\n\t\t\t<VERS vnumber=\"32\"> As they wail they will lament over you, chanting: \"Who was like Tyre, like a tower in the midst of the sea?\"</VERS>\n\t\t\t<VERS vnumber=\"33\"> When your products went out from the seas, you satisfied many peoples; with the abundance of your wealth and merchandise you enriched the kings of the earth.</VERS>\n\t\t\t<VERS vnumber=\"34\"> Now you are wrecked by the seas, in the depths of the waters; your merchandise and all your company have sunk along with you.</VERS>\n\t\t\t<VERS vnumber=\"35\"> All the inhabitants of the coastlands are shocked at you, and their kings are horribly afraid, their faces are troubled.</VERS>\n\t\t\t<VERS vnumber=\"36\"> The traders among the peoples hiss at you; you have become a horror, and will be no more.'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"28\">\n\t\t\t<VERS vnumber=\"1\"> The word of the LORD came to me:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Son of man, say to the prince of Tyre, 'This is what the sovereign LORD says: \"'Your heart is proud and you said, \"I am a god; I sit in the seat of gods, in the heart of the seas\", yet you are a man and not a god, though you think you are godlike.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Look, you are wiser than Daniel; no secret is hidden from you.</VERS>\n\t\t\t<VERS vnumber=\"4\"> By your wisdom and understanding you have gained wealth for yourself; you have amassed gold and silver in your treasuries.</VERS>\n\t\t\t<VERS vnumber=\"5\"> By your great skill in trade you have increased your wealth, and your heart is proud because of your wealth.</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"'Therefore this is what the sovereign LORD says: Because you think you are godlike,</VERS>\n\t\t\t<VERS vnumber=\"7\"> I am about to bring foreigners against you, the most terrifying of nations. They will draw their swords against the grandeur made by your wisdom, and they will defile your splendor.</VERS>\n\t\t\t<VERS vnumber=\"8\"> They will bring you down to the pit, and you will die violently in the heart of the seas.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Will you still say, \"I am a god,\" before the one who kills you, though you are a man and not a god, when you are in the power of those who wound you?</VERS>\n\t\t\t<VERS vnumber=\"10\"> You will die the death of the uncircumcised by the hand of foreigners; for I have spoken, declares the sovereign LORD.'\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> The word of the LORD came to me:</VERS>\n\t\t\t<VERS vnumber=\"12\"> \"Son of man, sing a lament for the king of Tyre, and say to him, 'This is what the sovereign LORD says: \"'You were the sealer of perfection, full of wisdom, and perfect in beauty.</VERS>\n\t\t\t<VERS vnumber=\"13\"> You were in Eden, the garden of God. Every precious stone was your covering, the ruby, topaz, and emerald, the chrysolite, onyx, and jasper, the sapphire, turquoise, and beryl; your settings and mounts were made of gold. On the day you were created they were prepared.</VERS>\n\t\t\t<VERS vnumber=\"14\"> I placed you there with an anointed guardian cherub; you were on the holy mountain of God; you walked about amidst fiery stones.</VERS>\n\t\t\t<VERS vnumber=\"15\"> You were blameless in your behavior from the day you were created, until sin was discovered in you.</VERS>\n\t\t\t<VERS vnumber=\"16\"> In the abundance of your trade you were filled with violence, and you sinned; so I defiled you and banished you from the mountain of God, the guardian cherub expelled you from the midst of the stones of fire.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Your heart was proud because of your beauty; you corrupted your wisdom on account of your splendor. I threw you down to the ground; I placed you before kings, that they might see you.</VERS>\n\t\t\t<VERS vnumber=\"18\"> By the multitude of your iniquities, through the sinfulness of your trade, you desecrated your sanctuaries. So I drew fire out from within you; it consumed you, and I turned you to ashes on the earth before the eyes of all who saw you.</VERS>\n\t\t\t<VERS vnumber=\"19\"> All who know you among the peoples are shocked at you; you have become terrified and will be no more.'\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> The word of the LORD came to me:</VERS>\n\t\t\t<VERS vnumber=\"21\"> \"Son of man, turn toward Sidon and prophesy against it. </VERS>\n\t\t\t<VERS vnumber=\"22\"> Say, 'This is what the sovereign LORD says: \"'Look, I am against you, Sidon, and I will magnify myself in your midst. Then they will know that I am the LORD when I execute judgments on her and reveal my sovereign power in her.</VERS>\n\t\t\t<VERS vnumber=\"23\"> I will send a plague into the city and bloodshed into its streets; the slain will fall within it, by the sword that attacks it from every side. Then they will know that I am the LORD.</VERS>\n\t\t\t<VERS vnumber=\"24\"> \"'No longer will Israel suffer from the sharp briers or painful thorns of all who surround and scorn them. Then they will know that I am the sovereign LORD.</VERS>\n\t\t\t<VERS vnumber=\"25\"> \"'This is what the sovereign LORD says: When I regather the house of Israel from the peoples where they are dispersed, I will reveal my sovereign power over them in the sight of the nations, and they will live in their land that I gave to my servant Jacob. </VERS>\n\t\t\t<VERS vnumber=\"26\"> They will live securely in it; they will build houses and plant vineyards. They will live securely when I execute my judgments on all those who scorn them and surround them. Then they will know that I am the LORD their God.'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"29\">\n\t\t\t<VERS vnumber=\"1\"> In the tenth year, in the tenth month, on the twelfth day of the month, the word of the LORD came to me: </VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Son of man, turn toward Pharaoh king of Egypt, and prophesy against him and against all Egypt. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Tell them, 'This is what the sovereign LORD says: \"'Look, I am against you, Pharaoh king of Egypt, the great monster lying in the midst of its waterways, who has said, \"My Nile is my own, I made it for myself.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> I will put hooks in your jaws and stick the fish of your waterways to your scales. I will haul you up from the midst of your waterways, and all the fish of your waterways will stick to your scales.</VERS>\n\t\t\t<VERS vnumber=\"5\"> I will leave you in the wilderness, you and all the fish of your waterways; you will fall in the open field and will not be gathered up or collected. I have given you as food to the beasts of the earth and the birds of the skies.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Then all those living in Egypt will know that I am the LORD because they were a reed staff for the house of Israel;</VERS>\n\t\t\t<VERS vnumber=\"7\"> when they grasped you with their hand, you broke and tore their shoulders, and when they leaned on you, you splintered and caused their legs to be unsteady.</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"'Therefore, this is what the sovereign LORD says: Look, I am about to bring a sword against you, and I will kill every person and every animal. </VERS>\n\t\t\t<VERS vnumber=\"9\"> The land of Egypt will become a desolate ruin. Then they will know that I am the LORD. Because he said, \"The Nile is mine and I made it,\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> I am against you and your waterways. I will turn the land of Egypt into an utter desolate ruin from Migdol to Syene, as far as the border with Ethiopia. </VERS>\n\t\t\t<VERS vnumber=\"11\"> No human foot will pass through it, and no animal's foot will pass through it; it will be uninhabited for forty years.</VERS>\n\t\t\t<VERS vnumber=\"12\"> I will turn the land of Egypt into a desolation in the midst of desolate lands; for forty years her cities will lie desolate in the midst of ruined cities. I will scatter Egypt among the nations and disperse them among foreign countries.</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"'For this is what the sovereign LORD says: At the end of forty years I will gather Egypt from the peoples where they were scattered. </VERS>\n\t\t\t<VERS vnumber=\"14\"> I will restore the fortunes of Egypt, and will bring them back to the land of Pathros, to the land of their origin; there they will be an insignificant kingdom. </VERS>\n\t\t\t<VERS vnumber=\"15\"> It will be the most insignificant of the kingdoms; it will never again exalt itself over the nations. I will make them so small that they will not rule over the nations.</VERS>\n\t\t\t<VERS vnumber=\"16\"> It will never again be Israel's source of confidence, but a reminder of how they sinned by turning to Egypt for help. Then they will know that I am the sovereign LORD.'\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> In the twenty-seventh year, in the first month, on the first day of the month, the word of the LORD came to me: </VERS>\n\t\t\t<VERS vnumber=\"18\"> \"Son of man, King Nebuchadrezzar of Babylon made his army labor hard against Tyre. Every head was rubbed bald and every shoulder rubbed bare; yet he and his army received no wages from Tyre for the work he carried out against it. </VERS>\n\t\t\t<VERS vnumber=\"19\"> Therefore this is what the sovereign LORD says: Look, I am about to give the land of Egypt to King Nebuchadrezzar of Babylon. He will carry off her wealth, capture her loot, and seize her plunder; it will be his army's wages.</VERS>\n\t\t\t<VERS vnumber=\"20\"> I have given him the land of Egypt as his compensation for attacking Tyre, because they did it for me, declares the sovereign LORD.</VERS>\n\t\t\t<VERS vnumber=\"21\"> On that day I will make Israel powerful, and I will give you the right to be heard among them. Then they will know that I am the LORD.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"30\">\n\t\t\t<VERS vnumber=\"1\"> The word of the LORD came to me:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Son of man, prophesy and say, 'This is what the sovereign LORD says: \"'Wail, \"Alas, the day is here!\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> For the day is near, the day of the LORD is near; it will be a day of storm clouds, it will be a time of judgment for the nations.</VERS>\n\t\t\t<VERS vnumber=\"4\"> A sword will come against Egypt and panic will overtake Ethiopia when the slain fall in Egypt and they carry away her wealth and dismantle her foundations.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Ethiopia, Put, Lud, all the foreigners, Libya, and the people of the covenant land will die by the sword along with them.</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"'This is what the LORD says: Egypt's supporters will fall; her confident pride will crumble. From Migdol to Syene they will die by the sword within her, declares the sovereign LORD.</VERS>\n\t\t\t<VERS vnumber=\"7\"> They will be desolate among desolate lands, and their cities will be among ruined cities.</VERS>\n\t\t\t<VERS vnumber=\"8\"> They will know that I am the LORD when I ignite a fire in Egypt and all her allies are defeated.</VERS>\n\t\t\t<VERS vnumber=\"9\"> On that day messengers will go out from me in ships to frighten overly confident Ethiopia; panic will overtake them on the day of Egypt's doom; for beware, it is coming!</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"'This is what the sovereign LORD says: I will put an end to the hordes of Egypt, by the hand of King Nebuchadrezzar of Babylon.</VERS>\n\t\t\t<VERS vnumber=\"11\"> He and his people with him, the most terrifying of the nations, will be brought there to destroy the land. They will draw their swords against Egypt, and fill the land with corpses.</VERS>\n\t\t\t<VERS vnumber=\"12\"> I will dry up the waterways and hand the land over to evil men. I will make the land and everything in it desolate by the hand of foreigners. I, the LORD, have spoken!</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"'This is what the sovereign LORD says: I will destroy the idols, and put an end to the gods of Memphis. There will no longer be a prince from the land of Egypt; so I will make the land of Egypt fearful.</VERS>\n\t\t\t<VERS vnumber=\"14\"> I will desolate Pathros, I will ignite a fire in Zoan, and I will execute judgments on Thebes.</VERS>\n\t\t\t<VERS vnumber=\"15\"> I will pour out my anger upon Pelusium, the stronghold of Egypt; I will cut off the hordes of Thebes.</VERS>\n\t\t\t<VERS vnumber=\"16\"> I will ignite a fire in Egypt; Syene will writhe in agony, Thebes will be broken down, and Memphis will face enemies every day.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The young men of On and of Pi-beseth will die by the sword; and the cities will go into captivity.</VERS>\n\t\t\t<VERS vnumber=\"18\"> In Tahpanhes the day will be dark when I break the yoke of Egypt there. Her confident pride will cease within her; a cloud will cover her, and her daughters will go into captivity.</VERS>\n\t\t\t<VERS vnumber=\"19\"> I will execute judgments on Egypt. Then they will know that I am the LORD.'\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> In the eleventh year, in the first month, on the seventh day of the month, the word of the LORD came to me: </VERS>\n\t\t\t<VERS vnumber=\"21\"> \"Son of man, I have broken the arm of Pharaoh king of Egypt. Look, it has not been bandaged for healing or set with a dressing so that it might become strong enough to grasp a sword.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Therefore this is what the sovereign LORD says: Look, I am against Pharaoh king of Egypt, and I will break his arms, the strong arm and the broken one, and I will make the sword drop from his hand. </VERS>\n\t\t\t<VERS vnumber=\"23\"> I will scatter the Egyptians among the nations, and disperse them among foreign countries.</VERS>\n\t\t\t<VERS vnumber=\"24\"> I will strengthen the arms of the king of Babylon, and I will place my sword in his hand, but I will break the arms of Pharaoh, and he will groan like the fatally wounded before the king of Babylon.</VERS>\n\t\t\t<VERS vnumber=\"25\"> I will strengthen the arms of the king of Babylon, but the arms of Pharaoh will fall limp. Then they will know that I am the LORD when I place my sword in the hand of the king of Babylon and he extends it against the land of Egypt.</VERS>\n\t\t\t<VERS vnumber=\"26\"> I will scatter the Egyptians among the nations and disperse them among foreign countries. Then they will know that I am the LORD.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"31\">\n\t\t\t<VERS vnumber=\"1\"> In the eleventh year, in the third month, on the first day of the month, the word of the LORD came to me: </VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Son of man, say to Pharaoh king of Egypt and his hordes: \"'Who are you like in your greatness?</VERS>\n\t\t\t<VERS vnumber=\"3\"> Consider Assyria, a cedar in Lebanon, with beautiful branches, like a forest giving shade, and extremely tall; its top reached into the clouds.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The water made it grow; underground springs made it grow tall. Rivers flowed all around the place it was planted, while smaller channels watered all the trees of the field.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Therefore it grew taller than all the trees of the field; its boughs grew large and its branches grew long, because of the plentiful water in its shoots.</VERS>\n\t\t\t<VERS vnumber=\"6\"> All the birds of the sky nested in its boughs; under its branches all the beasts of the field gave birth, in its shade all the great nations lived.</VERS>\n\t\t\t<VERS vnumber=\"7\"> It was beautiful in its loftiness, in the length of its branches; for its roots went down deep to plentiful waters.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The cedars in the garden of God could not eclipse it, nor could the fir trees match its boughs; the plane trees were as nothing compared to its branches; no tree in the garden of God could rival its beauty.</VERS>\n\t\t\t<VERS vnumber=\"9\"> I made it beautiful with its many branches; all the trees of Eden, in the garden of God, envied it.</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"'Therefore this is what the sovereign LORD says: Because it was tall in stature, and its top reached into the clouds, and it was proud of its height,</VERS>\n\t\t\t<VERS vnumber=\"11\"> I gave it over to the leader of the nations. He has judged it thoroughly, as its sinfulness deserves. I have thrown it out. </VERS>\n\t\t\t<VERS vnumber=\"12\"> Foreigners from the most terrifying nations have cut it down and left it to lie there on the mountains. In all the valleys its branches have fallen, and its boughs lie broken in the ravines of the land. All the peoples of the land have departed from its shade and left it. </VERS>\n\t\t\t<VERS vnumber=\"13\"> On its ruins all the birds of the sky will live, and all the wild animals will walk on its branches.</VERS>\n\t\t\t<VERS vnumber=\"14\"> For this reason no watered trees will grow so tall; their tops will not reach into the clouds, nor will the well-watered ones grow that high. For all of them have been appointed to die in the lower parts of the earth; they will be among mere mortals, with those who descend to the pit.</VERS>\n\t\t\t<VERS vnumber=\"15\"> \"'This is what the sovereign LORD says: On the day it went down to Sheol I caused observers to lament. I covered it with the deep and held back its rivers; its plentiful water was restrained. I clothed Lebanon in black for it, and all the trees of the field wilted because of it. </VERS>\n\t\t\t<VERS vnumber=\"16\"> I made the nations shake at the sound of its fall, when I threw it down to Sheol, along with those who descend to the pit. Then all the trees of Eden, the choicest and the best of Lebanon, all that were well-watered, were comforted in the earth below. </VERS>\n\t\t\t<VERS vnumber=\"17\"> Those who lived in its shade, its allies among the nations, also went down with it to Sheol, to those killed by the sword. </VERS>\n\t\t\t<VERS vnumber=\"18\"> Which of the trees of Eden was like you in majesty and loftiness? You will be brought down with the trees of Eden to the lower parts of the earth; you will lie among the uncircumcised, with those killed by the sword! This is what will happen to Pharaoh and all his hordes, declares the sovereign LORD.'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"32\">\n\t\t\t<VERS vnumber=\"1\"> In the twelfth year, in the twelfth month, on the first of the month, the word of the LORD came to me: </VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Son of man, sing a lament for Pharaoh king of Egypt, and say to him: \"'You were like a lion among the nations, but you are a monster in the seas; you thrash about in your streams, stir up the water with your feet, and muddy your streams.</VERS>\n\t\t\t<VERS vnumber=\"3\"> \"'This is what the sovereign LORD says: \"'I will throw my net over you in the assembly of many peoples; and they will haul you up in my dragnet.</VERS>\n\t\t\t<VERS vnumber=\"4\"> I will leave you on the ground, I will fling you on the open field, I will allow all the birds of the sky to settle on you, and I will permit all the wild animals to gorge themselves on you.</VERS>\n\t\t\t<VERS vnumber=\"5\"> I will put your flesh on the mountains, and fill the valleys with your maggot-infested carcass.</VERS>\n\t\t\t<VERS vnumber=\"6\"> I will drench the land with the flow of your blood up to the mountains, and the ravines will be full of your blood.</VERS>\n\t\t\t<VERS vnumber=\"7\"> When I extinguish you, I will cover the sky; I will darken its stars. I will cover the sun with a cloud, and the moon will not shine.</VERS>\n\t\t\t<VERS vnumber=\"8\"> I will darken all the lights in the sky over you, and I will darken your land, declares the sovereign LORD.</VERS>\n\t\t\t<VERS vnumber=\"9\"> I will disturb many peoples, when I bring about your destruction among the nations, among countries you do not know.</VERS>\n\t\t\t<VERS vnumber=\"10\"> I will shock many peoples with you, and their kings will shiver with horror because of you. When I brandish my sword before them, every moment each one will tremble for his life, on the day of your fall.</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"'For this is what the sovereign LORD says: \"'The sword of the king of Babylon will attack you.</VERS>\n\t\t\t<VERS vnumber=\"12\"> By the swords of the mighty warriors I will cause your hordes to fall, all of them are the most terrifying among the nations. They will devastate the pride of Egypt, and all its hordes will be destroyed.</VERS>\n\t\t\t<VERS vnumber=\"13\"> I will destroy all its cattle beside the plentiful waters; and no human foot will disturb the waters again, nor will the hooves of cattle disturb them.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Then I will make their waters calm, and will make their streams flow like olive oil, declares the sovereign LORD.</VERS>\n\t\t\t<VERS vnumber=\"15\"> When I turn the land of Egypt into desolation and the land is destitute of everything that fills it, when I strike all those who live in it, then they will know that I am the LORD.'</VERS>\n\t\t\t<VERS vnumber=\"16\"> This is a lament; they will chant it. The daughters of the nations will chant it. They will chant it over Egypt and over all her hordes, declares the sovereign LORD.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> In the twelfth year, on the fifteenth day of the month, the word of the LORD came to me: </VERS>\n\t\t\t<VERS vnumber=\"18\"> \"Son of man, wail over the horde of Egypt. Bring it down; bring her and the daughters of powerful nations down to the lower parts of the earth, along with those who descend to the pit. </VERS>\n\t\t\t<VERS vnumber=\"19\"> Say to them, 'Whom do you surpass in beauty? Go down and be laid to rest with the uncircumcised!' </VERS>\n\t\t\t<VERS vnumber=\"20\"> They will fall among those killed by the sword. The sword is drawn; they carry her and all her hordes away.</VERS>\n\t\t\t<VERS vnumber=\"21\"> The bravest of the warriors will speak to him from the midst of Sheol along with his allies, saying: 'The uncircumcised have come down; they lie still, killed by the sword.'</VERS>\n\t\t\t<VERS vnumber=\"22\"> \"Assyria is there with all her assembly around her grave, all of them struck down by the sword.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Their graves are located in the remote slopes of the pit. Her assembly is around her grave, all of them struck down by the sword, those who spread terror in the land of the living.</VERS>\n\t\t\t<VERS vnumber=\"24\"> \"Elam is there with all her hordes around her grave; all of them struck down by the sword. They went down uncircumcised to the lower parts of the earth, those who spread terror in the land of the living. Now they will bear their shame with those who descend to the pit.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Among the dead they have made a bed for her, along with all her hordes around her grave. All of them are uncircumcised, killed by the sword, for their terror had spread in the land of the living. They bear their shame along with those who descend to the pit; they are placed among the dead.</VERS>\n\t\t\t<VERS vnumber=\"26\"> \"Meshech-Tubal is there, along with all her hordes around her grave. All of them are uncircumcised, killed by the sword, for they spread their terror in the land of the living. </VERS>\n\t\t\t<VERS vnumber=\"27\"> They do not lie with the fallen warriors of ancient times, who went down to Sheol with their weapons of war, having their swords placed under their heads and their shields on their bones, when the terror of these warriors was in the land of the living.</VERS>\n\t\t\t<VERS vnumber=\"28\"> \"But as for you, in the midst of the uncircumcised you will be broken, and you will lie with those killed by the sword.</VERS>\n\t\t\t<VERS vnumber=\"29\"> \"Edom is there with her kings and all her princes. Despite their might they are laid with those killed by the sword; they lie with the uncircumcised and those who descend to the pit.</VERS>\n\t\t\t<VERS vnumber=\"30\"> \"All the leaders of the north are there, along with all the Sidonians; despite their might they have gone down in shameful terror with the dead. They lie uncircumcised with those killed by the sword, and bear their shame with those who descend to the pit.</VERS>\n\t\t\t<VERS vnumber=\"31\"> \"Pharaoh will see them and be consoled over all his hordes who were killed by the sword, Pharaoh and all his army, declares the sovereign LORD.</VERS>\n\t\t\t<VERS vnumber=\"32\"> Indeed, I terrified him in the land of the living, yet he will lie in the midst of the uncircumcised with those killed by the sword, Pharaoh and all his hordes, declares the sovereign LORD.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"33\">\n\t\t\t<VERS vnumber=\"1\"> The word of the LORD came to me:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Son of man, speak to your people, and say to them, 'Suppose I bring a sword against the land, and the people of the land take one man from their borders and make him their watchman. </VERS>\n\t\t\t<VERS vnumber=\"3\"> He sees the sword coming against the land, blows the trumpet, and warns the people,</VERS>\n\t\t\t<VERS vnumber=\"4\"> but there is one who hears the sound of the trumpet yet does not heed the warning. Then the sword comes and sweeps him away. He will be responsible for his own death.</VERS>\n\t\t\t<VERS vnumber=\"5\"> He heard the sound of the trumpet but did not heed the warning, so he is responsible for himself. If he had heeded the warning, he would have saved his life. </VERS>\n\t\t\t<VERS vnumber=\"6\"> But suppose the watchman sees the sword coming and does not blow the trumpet to warn the people. Then the sword comes and takes one of their lives. He is swept away for his iniquity, but I will hold the watchman accountable for that person's death.'</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"As for you, son of man, I have made you a watchman for the house of Israel. Whenever you hear a word from my mouth, you must warn them on my behalf. </VERS>\n\t\t\t<VERS vnumber=\"8\"> When I say to the wicked, 'O wicked man, you must certainly die,' and you do not warn the wicked about his behavior, the wicked man will die for his iniquity, but I will hold you accountable for his death.</VERS>\n\t\t\t<VERS vnumber=\"9\"> But if you warn the wicked man to change his behavior, and he refuses to change, he will die for his iniquity, but you have saved your own life.</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"And you, son of man, say to the house of Israel, 'This is what you have said: \"Our rebellious acts and our sins have caught up with us, and we are wasting away because of them. How then can we live?\"' </VERS>\n\t\t\t<VERS vnumber=\"11\"> Say to them, 'As surely as I live, declares the sovereign LORD, I take no pleasure in the death of the wicked, but prefer that the wicked change his behavior and live. Turn back, turn back from your evil deeds! Why should you die, O house of Israel?'</VERS>\n\t\t\t<VERS vnumber=\"12\"> \"And you, son of man, say to your people, 'The righteousness of the righteous will not deliver him if he rebels. As for the wicked, his wickedness will not make him stumble if he turns from it. The righteous will not be able to live by his righteousness if he sins.'</VERS>\n\t\t\t<VERS vnumber=\"13\"> Suppose I tell the righteous that he will certainly live, but he becomes confident in his righteousness and commits iniquity. None of his righteous deeds will be remembered; because of the iniquity he has committed he will die.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Suppose I say to the wicked, 'You must certainly die,' but he turns from his sin and does what is just and right.</VERS>\n\t\t\t<VERS vnumber=\"15\"> He returns what was taken in pledge, pays back what he has stolen, and follows the statutes that give life, committing no iniquity. He will certainly live, he will not die.</VERS>\n\t\t\t<VERS vnumber=\"16\"> None of the sins he has committed will be counted against him. He has done what is just and right; he will certainly live.</VERS>\n\t\t\t<VERS vnumber=\"17\"> \"Yet your people say, 'The behavior of the Lord is not right,' when it is their behavior that is not right. </VERS>\n\t\t\t<VERS vnumber=\"18\"> When a righteous man turns from his godliness and commits iniquity, he will die for it.</VERS>\n\t\t\t<VERS vnumber=\"19\"> When the wicked turns from his sin and does what is just and right, he will live because of it.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Yet you say, 'The behavior of the Lord is not right.' House of Israel, I will judge each of you according to his behavior.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> In the twelfth year of our exile, in the tenth month, on the fifth of the month, a refugee came to me from Jerusalem saying, \"The city has been defeated!\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> Now the hand of the LORD had been on me the evening before the refugee reached me, but the LORD opened my mouth by the time the refugee arrived in the morning; he opened my mouth and I was no longer unable to speak.</VERS>\n\t\t\t<VERS vnumber=\"23\"> The word of the LORD came to me:</VERS>\n\t\t\t<VERS vnumber=\"24\"> \"Son of man, the ones living in these ruins in the land of Israel are saying, 'Abraham was only one man, yet he possessed the land, but we are many; surely the land has been given to us for a possession.'</VERS>\n\t\t\t<VERS vnumber=\"25\"> Therefore say to them, 'This is what the sovereign LORD says: You eat the meat with the blood still in it, pray to your idols, and shed blood. Do you really think you will possess the land? </VERS>\n\t\t\t<VERS vnumber=\"26\"> You rely on your swords and commit abominable deeds; each of you defiles his neighbor's wife. Will you possess the land?'</VERS>\n\t\t\t<VERS vnumber=\"27\"> \"This is what you must say to them, 'This is what the sovereign LORD says: As surely as I live, those living in the ruins will die by the sword, those in the open field I will give to the wild beasts for food, and those who are in the strongholds and caves will die of disease. </VERS>\n\t\t\t<VERS vnumber=\"28\"> I will turn the land into a desolate ruin; her confident pride will come to an end. The mountains of Israel will be so desolate no one will pass through them.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Then they will know that I am the LORD when I turn the land into a desolate ruin because of all the abominable deeds they have committed.'</VERS>\n\t\t\t<VERS vnumber=\"30\"> \"But as for you, son of man, your people (who are talking about you by the walls and at the doors of the houses) say to one another, 'Come hear the word that comes from the LORD.' </VERS>\n\t\t\t<VERS vnumber=\"31\"> They come to you in crowds, and they sit in front of you as my people. They hear your words, but do not obey them. For they talk lustfully, and their heart is set on their own advantage.</VERS>\n\t\t\t<VERS vnumber=\"32\"> Realize that to them you are like a sensual song, a beautiful voice and skilled musician. They hear your words, but they do not obey them.</VERS>\n\t\t\t<VERS vnumber=\"33\"> When all this comes true, and it certainly will, then they will know that a prophet was among them.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"34\">\n\t\t\t<VERS vnumber=\"1\"> The word of the LORD came to me:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Son of man, prophesy against the shepherds of Israel; prophesy, and say to them, to the shepherds: 'This is what the sovereign LORD says: Woe to the shepherds of Israel who have been feeding themselves! Should not shepherds feed the flock?</VERS>\n\t\t\t<VERS vnumber=\"3\"> You eat the fat, you clothe yourselves with the wool, you slaughter the choice animals, but you do not feed the sheep!</VERS>\n\t\t\t<VERS vnumber=\"4\"> You have not strengthened the weak, healed the sick, bandaged the injured, brought back the strays, or sought the lost, but with force and harshness you have ruled over them. </VERS>\n\t\t\t<VERS vnumber=\"5\"> They were scattered because they had no shepherd, and they became food for every wild beast.</VERS>\n\t\t\t<VERS vnumber=\"6\"> My sheep wandered over all the mountains and on every high hill. My sheep were scattered over the entire face of the earth with no one looking or searching for them.</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"'Therefore, you shepherds, hear the word of the LORD:</VERS>\n\t\t\t<VERS vnumber=\"8\"> As surely as I live, declares the sovereign LORD, my sheep have become prey and have become food for all the wild beasts. There was no shepherd, and my shepherds did not search for my flock, but fed themselves and did not feed my sheep,</VERS>\n\t\t\t<VERS vnumber=\"9\"> Therefore, you shepherds, hear the word of the LORD:</VERS>\n\t\t\t<VERS vnumber=\"10\"> This is what the sovereign LORD says: Look, I am against the shepherds, and I will demand my sheep from their hand. I will no longer let them be shepherds; the shepherds will not feed themselves anymore. I will rescue my sheep from their mouth, so that they will no longer be food for them.</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"'For this is what the sovereign LORD says: Look, I myself will search for my sheep and seek them out.</VERS>\n\t\t\t<VERS vnumber=\"12\"> As a shepherd seeks out his flock when he is among his scattered sheep, so I will seek out my flock. I will rescue them from all the places where they have been scattered on a cloudy, dark day.</VERS>\n\t\t\t<VERS vnumber=\"13\"> I will bring them out from among the peoples and gather them from foreign countries; I will bring them to their own land. I will feed them on the mountains of Israel, by the streams and all the inhabited places of the land.</VERS>\n\t\t\t<VERS vnumber=\"14\"> In a good pasture I will feed them; the mountain heights of Israel will be their pasture. There they will lie down in a lush pasture, and they will feed on rich grass on the mountains of Israel. </VERS>\n\t\t\t<VERS vnumber=\"15\"> I myself will feed my sheep and I myself will make them lie down, declares the sovereign LORD.</VERS>\n\t\t\t<VERS vnumber=\"16\"> I will seek the lost and bring back the strays; I will bandage the injured and strengthen the sick, but the fat and the strong I will destroy. I will feed them, with judgment!</VERS>\n\t\t\t<VERS vnumber=\"17\"> \"'As for you, my sheep, this is what the sovereign LORD says: Look, I am about to judge between one sheep and another, between rams and goats.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Is it not enough for you to feed on the good pasture, that you must trample the rest of your pastures with your feet? When you drink clean water, must you muddy the rest of the water by trampling it with your feet?</VERS>\n\t\t\t<VERS vnumber=\"19\"> As for my sheep, they must eat what you trampled with your feet, and drink what you have muddied with your feet!</VERS>\n\t\t\t<VERS vnumber=\"20\"> \"'Therefore, this is what the sovereign LORD says to them: Look, I myself will judge between the fat sheep and the lean sheep.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Because you push with your side and your shoulder, and thrust your horns at all the weak sheep until you scatter them abroad,</VERS>\n\t\t\t<VERS vnumber=\"22\"> I will save my sheep; they will no longer be prey. I will judge between one sheep and another.</VERS>\n\t\t\t<VERS vnumber=\"23\"> I will set one shepherd over them, and he will feed them, namely, my servant David. He will feed them and will be their shepherd.</VERS>\n\t\t\t<VERS vnumber=\"24\"> I, the LORD, will be their God, and my servant David will be prince among them; I, the LORD, have spoken!</VERS>\n\t\t\t<VERS vnumber=\"25\"> \"'I will make a covenant of peace with them and will rid the land of wild beasts, so that they can live securely in the wilderness and even sleep in the woods.</VERS>\n\t\t\t<VERS vnumber=\"26\"> I will turn them and the regions around my hill into a blessing. I will make showers come down in their season; they will be showers that bring blessing.</VERS>\n\t\t\t<VERS vnumber=\"27\"> The trees of the field will yield their fruit and the earth will yield its crops. They will live securely on their land; they will know that I am the LORD, when I break the bars of their yoke and rescue them from the hand of those who enslaved them.</VERS>\n\t\t\t<VERS vnumber=\"28\"> They will no longer be prey for the nations and the wild beasts will not devour them. They will live securely and no one will make them afraid.</VERS>\n\t\t\t<VERS vnumber=\"29\"> I will prepare for them a healthy planting. They will no longer be victims of famine in the land and will no longer bear the insults of the nations. </VERS>\n\t\t\t<VERS vnumber=\"30\"> Then they will know that I, the LORD their God, am with them, and that they are my people, the house of Israel, declares the sovereign LORD.</VERS>\n\t\t\t<VERS vnumber=\"31\"> And you, my sheep, the sheep of my pasture, are my people, and I am your God, declares the sovereign LORD.'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"35\">\n\t\t\t<VERS vnumber=\"1\"> The word of the LORD came to me:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Son of man, turn toward Mount Seir, and prophesy against it. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Say to it, 'This is what the sovereign LORD says: \"'Look, I am against you, Mount Seir; I will stretch out my hand against you and turn you into a desolate ruin.</VERS>\n\t\t\t<VERS vnumber=\"4\"> I will lay waste your cities; and you will become desolate. Then you will know that I am the LORD!</VERS>\n\t\t\t<VERS vnumber=\"5\"> \"'You have shown unrelenting hostility and poured the people of Israel onto the blades of a sword at the time of their calamity, at the time of their final punishment. </VERS>\n\t\t\t<VERS vnumber=\"6\"> Therefore, as surely as I live, declares the sovereign LORD, I will subject you to bloodshed, and bloodshed will pursue you. Since you did not hate bloodshed, bloodshed will pursue you.</VERS>\n\t\t\t<VERS vnumber=\"7\"> I will turn Mount Seir into a desolate ruin; I will cut off from it the one who passes through or returns. </VERS>\n\t\t\t<VERS vnumber=\"8\"> I will fill its mountains with its dead; on your hills and in your valleys and in all your ravines, those killed by the sword will fall.</VERS>\n\t\t\t<VERS vnumber=\"9\"> I will turn you into a perpetual desolation, and your cities will not be inhabited. Then you will know that I am the LORD.</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"'You said, \"These two nations, these two lands will be mine, and we will possess them,\", although the LORD was there,</VERS>\n\t\t\t<VERS vnumber=\"11\"> therefore, as surely as I live, declares the sovereign LORD, I will deal with you according to your anger, and according to your envy, by which you acted spitefully against them. I will reveal myself to them when I judge you.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Then you will know that I, the LORD, have heard all the insults you spoke against the mountains of Israel, saying, \"They are desolate, they have been given to us for food.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> You exalted yourselves against me with your speech and hurled many insults against me, I have heard them all!</VERS>\n\t\t\t<VERS vnumber=\"14\"> This is what the sovereign LORD says: While the whole earth rejoices, I will turn you into a desolation.</VERS>\n\t\t\t<VERS vnumber=\"15\"> As you rejoiced over the inheritance of the house of Israel because it was desolate, so will I deal with you, you will be desolate, Mount Seir, and all of Edom, all of it! Then they will know that I am the LORD.'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"36\">\n\t\t\t<VERS vnumber=\"1\"> \"As for you, son of man, prophesy to the mountains of Israel, and say: 'O mountains of Israel, hear the word of the LORD!</VERS>\n\t\t\t<VERS vnumber=\"2\"> This is what the sovereign LORD says: The enemy has spoken against you, saying \"Aha!\" and, \"The ancient heights have become our property!\"' </VERS>\n\t\t\t<VERS vnumber=\"3\"> So prophesy and say: 'This is what the sovereign LORD says: Surely because they have made you desolate and crushed you from all directions, so that you have become the property of the rest of the nations, and have become the subject of gossip and slander among the people, </VERS>\n\t\t\t<VERS vnumber=\"4\"> therefore, O mountains of Israel, hear the word of the sovereign LORD: This is what the sovereign LORD says to the mountains and hills, the ravines and valleys, and to the desolate ruins and the abandoned cities that have become prey and an object of derision to the rest of the nations round about,</VERS>\n\t\t\t<VERS vnumber=\"5\"> therefore this is what the sovereign LORD says: Surely I have spoken in the fire of my zeal against the rest of the nations, and against all Edom, who with great joy and utter contempt have made my land their property and prey, because of its pasture.'</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"Therefore prophesy concerning the land of Israel, and say to the mountains and hills, the ravines and valleys, 'This is what the sovereign LORD says: Look, I have spoken in my zeal and in my anger, because you have endured the insults of the nations.</VERS>\n\t\t\t<VERS vnumber=\"7\"> So this is what the sovereign LORD says: I vow that the nations around you will endure insults as well.</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"'But you, mountains of Israel, will grow your branches, and bear your fruit for my people Israel; for they will arrive soon.</VERS>\n\t\t\t<VERS vnumber=\"9\"> For indeed, I am on your side; I will turn to you, and you will be plowed and planted. </VERS>\n\t\t\t<VERS vnumber=\"10\"> I will multiply your people, the whole house of Israel, all of it. The cities will be populated and the ruins rebuilt.</VERS>\n\t\t\t<VERS vnumber=\"11\"> I will increase the number of people and animals on you; they will increase and be fruitful. I will cause you to be inhabited as in ancient times, and will do more good for you than at the beginning of your history. Then you will know that I am the LORD. </VERS>\n\t\t\t<VERS vnumber=\"12\"> I will lead people, my people Israel, across you; they will possess you and you will become their inheritance. No longer will you bereave them of their children.</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"'This is what the sovereign LORD says: Because they are saying to you, \"You are a devourer of men, and bereave your nation of children,\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> therefore you will no longer devour people and no longer bereave your nation of children, declares the sovereign LORD.</VERS>\n\t\t\t<VERS vnumber=\"15\"> I will no longer subject you to the nations' insults; no longer will you bear the shame of the peoples, and no longer will you bereave your nation, declares the sovereign LORD.'\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> The word of the LORD came to me:</VERS>\n\t\t\t<VERS vnumber=\"17\"> \"Son of man, when the house of Israel was living on their own land, they defiled it by their behavior and their deeds. In my sight their behavior was like the uncleanness of a woman having her monthly period. </VERS>\n\t\t\t<VERS vnumber=\"18\"> So I poured my anger on them because of the blood they shed on the land and because of the idols with which they defiled it.</VERS>\n\t\t\t<VERS vnumber=\"19\"> I scattered them among the nations; they were dispersed throughout foreign countries. In accordance with their behavior and their deeds I judged them.</VERS>\n\t\t\t<VERS vnumber=\"20\"> But when they arrived in the nations where they went, they profaned my holy name. It was said of them, 'These are the people of the LORD, yet they have departed from his land.'</VERS>\n\t\t\t<VERS vnumber=\"21\"> I was concerned for my holy reputation which the house of Israel profaned among the nations where they went.</VERS>\n\t\t\t<VERS vnumber=\"22\"> \"Therefore say to the house of Israel, 'This is what the sovereign LORD says: It is not for your sake that I am about to act, O house of Israel, but for the sake of my holy reputation which you profaned among the nations where you went. </VERS>\n\t\t\t<VERS vnumber=\"23\"> I will magnify my great name that has been profaned among the nations, that you have profaned among them. The nations will know that I am the LORD, declares the sovereign LORD, when I magnify myself among you in their sight.</VERS>\n\t\t\t<VERS vnumber=\"24\"> \"'I will take you from the nations and gather you from all the countries; then I will bring you to your land.</VERS>\n\t\t\t<VERS vnumber=\"25\"> I will sprinkle you with pure water and you will be clean from all your impurities. I will purify you from all your idols. </VERS>\n\t\t\t<VERS vnumber=\"26\"> I will give you a new heart, and I will put a new spirit within you. I will remove the heart of stone from your body and give you a heart of flesh.</VERS>\n\t\t\t<VERS vnumber=\"27\"> I will put my Spirit within you; I will take the initiative and you will obey my statutes and carefully observe my regulations.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Then you will live in the land I gave to your fathers; you will be my people, and I will be your God.</VERS>\n\t\t\t<VERS vnumber=\"29\"> I will save you from all your uncleanness. I will call for the grain and multiply it; I will not bring a famine on you.</VERS>\n\t\t\t<VERS vnumber=\"30\"> I will multiply the fruit of the trees and the produce of the fields, so that you will never again suffer the disgrace of famine among the nations.</VERS>\n\t\t\t<VERS vnumber=\"31\"> Then you will remember your evil behavior and your deeds which were not good; you will loathe yourselves on account of your sins and your abominable deeds. </VERS>\n\t\t\t<VERS vnumber=\"32\"> Understand that it is not for your sake I am about to act, declares the sovereign LORD. Be ashamed and embarrassed by your behavior, O house of Israel.</VERS>\n\t\t\t<VERS vnumber=\"33\"> \"'This is what the sovereign LORD says: In the day I cleanse you from all your sins, I will populate the cities and the ruins will be rebuilt.</VERS>\n\t\t\t<VERS vnumber=\"34\"> The desolate land will be plowed, instead of being desolate in the sight of everyone who passes by.</VERS>\n\t\t\t<VERS vnumber=\"35\"> They will say, \"This desolate land has become like the garden of Eden; the ruined, desolate, and destroyed cities are now fortified and inhabited.\"</VERS>\n\t\t\t<VERS vnumber=\"36\"> Then the nations which remain around you will know that I, the LORD, have rebuilt the ruins and replanted what was desolate. I, the LORD, have spoken, and I will do it!'</VERS>\n\t\t\t<VERS vnumber=\"37\"> \"This is what the sovereign LORD says: I will allow the house of Israel to ask me to do this for them: I will multiply their people like sheep.</VERS>\n\t\t\t<VERS vnumber=\"38\"> Like the sheep for offerings, like the sheep of Jerusalem during her appointed feasts, so will the ruined cities be filled with flocks of people. Then they will know that I am the LORD.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"37\">\n\t\t\t<VERS vnumber=\"1\"> The hand of the LORD was on me, and he brought me out by the Spirit of the LORD and placed me in the midst of the valley, and it was full of bones. </VERS>\n\t\t\t<VERS vnumber=\"2\"> He made me walk all around among them. I realized there were a great many bones in the valley and they were very dry. </VERS>\n\t\t\t<VERS vnumber=\"3\"> He said to me, \"Son of man, can these bones live?\" I said to him, \"Sovereign Lord, you know.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> Then he said to me, \"Prophesy over these bones, and tell them: 'Dry bones, hear the word of the LORD.</VERS>\n\t\t\t<VERS vnumber=\"5\"> This is what the sovereign LORD says to these bones: Look, I am about to infuse breath into you and you will live.</VERS>\n\t\t\t<VERS vnumber=\"6\"> I will put tendons on you and muscles over you and will cover you with skin; I will put breath in you and you will live. Then you will know that I am the LORD.'\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> So I prophesied as I was commanded. There was a sound when I prophesied, I heard a rattling, and the bones came together, bone to bone.</VERS>\n\t\t\t<VERS vnumber=\"8\"> As I watched, I saw tendons on them, then muscles appeared, and skin covered over them from above, but there was no breath in them.</VERS>\n\t\t\t<VERS vnumber=\"9\"> He said to me, \"Prophesy to the breath,, prophesy, son of man, and say to the breath: 'This is what the sovereign LORD says: Come from the four winds, O breath, and breathe on these corpses so that they may live.'\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> So I prophesied as I was commanded, and the breath came into them; they lived and stood on their feet, an extremely great army.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Then he said to me, \"Son of man, these bones are all the house of Israel. Look, they are saying, 'Our bones are dry, our hope has perished; we are cut off.'</VERS>\n\t\t\t<VERS vnumber=\"12\"> Therefore prophesy, and tell them, 'This is what the sovereign LORD says: Look, I am about to open your graves and will raise you from your graves, my people. I will bring you to the land of Israel.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Then you will know that I am the LORD, when I open your graves and raise you from your graves, my people.</VERS>\n\t\t\t<VERS vnumber=\"14\"> I will place my breath in you and you will live; I will give you rest in your own land. Then you will know that I am the LORD, I have spoken and I will act, declares the LORD.'\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> The word of the LORD came to me:</VERS>\n\t\t\t<VERS vnumber=\"16\"> \"As for you, son of man, take one branch, and write on it, 'For Judah, and for the Israelites associated with him.' Then take another branch and write on it, 'For Joseph, the branch of Ephraim and all the house of Israel associated with him.'</VERS>\n\t\t\t<VERS vnumber=\"17\"> Join them as one stick; they will be as one in your hand. </VERS>\n\t\t\t<VERS vnumber=\"18\"> When your people say to you, 'Will you not tell us what these things mean?' </VERS>\n\t\t\t<VERS vnumber=\"19\"> tell them, 'This is what the sovereign LORD says: Look, I am about to take the branch of Joseph which is in the hand of Ephraim and the tribes of Israel associated with him, and I will place them on the stick of Judah, and make them into one stick, they will be one in my hand.'</VERS>\n\t\t\t<VERS vnumber=\"20\"> The sticks you write on will be in your hand in front of them.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Then tell them, 'This is what the sovereign LORD says: Look, I am about to take the Israelites from among the nations where they have gone. I will gather them from round about and bring them to their land.</VERS>\n\t\t\t<VERS vnumber=\"22\"> I will make them one nation in the land, on the mountains of Israel, and one king will rule over them all. They will never again be two nations and never again be divided into two kingdoms.</VERS>\n\t\t\t<VERS vnumber=\"23\"> They will not defile themselves with their idols, their detestable things, and all their rebellious deeds. I will save them from all their unfaithfulness by which they sinned. I will purify them; they will become my people and I will become their God.</VERS>\n\t\t\t<VERS vnumber=\"24\"> \"'My servant David will be king over them; there will be one shepherd for all of them. They will follow my regulations and carefully observe my statutes.</VERS>\n\t\t\t<VERS vnumber=\"25\"> They will live in the land I gave to my servant Jacob, in which your fathers lived; they will live in it, they and their children and their grandchildren forever. David my servant will be prince over them forever.</VERS>\n\t\t\t<VERS vnumber=\"26\"> I will make a covenant of peace with them; it will be a perpetual covenant with them. I will establish them, increase their numbers, and place my sanctuary among them forever. </VERS>\n\t\t\t<VERS vnumber=\"27\"> My dwelling place will be with them; I will be their God, and they will be my people.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Then, when my sanctuary is among them forever, the nations will know that I, the LORD, sanctify Israel.'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"38\">\n\t\t\t<VERS vnumber=\"1\"> The word of the LORD came to me:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Son of man, turn toward Gog, of the land of Magog, the chief prince of Meshech and Tubal. Prophesy against him </VERS>\n\t\t\t<VERS vnumber=\"3\"> and say: 'This is what the sovereign LORD says: Look, I am against you, Gog, chief prince of Meshech and Tubal. </VERS>\n\t\t\t<VERS vnumber=\"4\"> I will turn you around, put hooks into your jaws, and bring you out with all your army, horses and horsemen, all of them fully armed, a great company with shields of different types, all of them armed with swords. </VERS>\n\t\t\t<VERS vnumber=\"5\"> Persia, Ethiopia, and Put are with them, all of them with shields and helmets. </VERS>\n\t\t\t<VERS vnumber=\"6\"> They are joined by Gomer with all its troops, and by Beth Togarmah from the remote parts of the north with all its troops, many peoples are with you.</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"'Be ready and stay ready, you and all your companies assembled around you, and be a guard for them.</VERS>\n\t\t\t<VERS vnumber=\"8\"> After many days you will be summoned; in the latter years you will come to a land restored from the ravages of war, with many peoples gathered on the mountains of Israel that had long been in ruins. Its people were brought out from the peoples, and all of them will be living securely. </VERS>\n\t\t\t<VERS vnumber=\"9\"> You will advance; you will come like a storm. You will be like a cloud covering the earth, you, all your troops, and the many other peoples with you.</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"'This is what the sovereign LORD says: On that day thoughts will come into your mind, and you will devise an evil plan. </VERS>\n\t\t\t<VERS vnumber=\"11\"> You will say, \"I will invade a land of unwalled towns; I will advance against those living quietly in security, all of them living without walls and barred gates,</VERS>\n\t\t\t<VERS vnumber=\"12\"> to loot and plunder, to attack the inhabited ruins and the people gathered from the nations, who are acquiring cattle and goods, who live at the center of the earth.\" </VERS>\n\t\t\t<VERS vnumber=\"13\"> Sheba and Dedan and the traders of Tarshish with all its young warriors will say to you, \"Have you come to loot? Have you assembled your armies to plunder, to carry away silver and gold, to take away cattle and goods, to haul away a great amount of spoils?\"'</VERS>\n\t\t\t<VERS vnumber=\"14\"> \"Therefore, prophesy, son of man, and say to Gog: 'This is what the sovereign LORD says: On that day when my people Israel are living securely, you will take notice</VERS>\n\t\t\t<VERS vnumber=\"15\"> and come from your place, from the remote parts of the north, you and many peoples with you, all of them riding on horses, a great company and a vast army.</VERS>\n\t\t\t<VERS vnumber=\"16\"> You will advance against my people Israel like a cloud covering the earth. In the latter days I will bring you against my land so that the nations may acknowledge me, when before their eyes I magnify myself through you, O Gog.</VERS>\n\t\t\t<VERS vnumber=\"17\"> \"'This is what the sovereign LORD says: Are you the one of whom I spoke in former days by my servants the prophets of Israel, who prophesied in those days that I would bring you against them? </VERS>\n\t\t\t<VERS vnumber=\"18\"> On that day, when Gog invades the land of Israel, declares the sovereign LORD, my rage will mount up in my anger. </VERS>\n\t\t\t<VERS vnumber=\"19\"> In my zeal, in the fire of my fury, I declare that on that day there will be a great earthquake in the land of Israel. </VERS>\n\t\t\t<VERS vnumber=\"20\"> The fish of the sea, the birds of the sky, the wild beasts, all the things that creep on the ground, and all people who live on the face of the earth will shake at my presence. The mountains will topple, the cliffs will fall, and every wall will fall to the ground. </VERS>\n\t\t\t<VERS vnumber=\"21\"> I will call for a sword to attack Gog on all my mountains, declares the sovereign LORD; every man's sword will be against his brother. </VERS>\n\t\t\t<VERS vnumber=\"22\"> I will judge him with plague and bloodshed. I will rain down on him, his troops and the many peoples who are with him a torrential downpour, hailstones, fire, and brimstone.</VERS>\n\t\t\t<VERS vnumber=\"23\"> I will exalt and magnify myself; I will reveal myself before many nations. Then they will know that I am the LORD.'</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"39\">\n\t\t\t<VERS vnumber=\"1\"> \"As for you, son of man, prophesy against Gog, and say: 'This is what the sovereign LORD says: Look, I am against you, O Gog, chief prince of Meshech and Tubal!</VERS>\n\t\t\t<VERS vnumber=\"2\"> I will turn you around and drag you along; I will lead you up from the remotest parts of the north and bring you against the mountains of Israel. </VERS>\n\t\t\t<VERS vnumber=\"3\"> I will knock your bow out of your left hand and make your arrows fall from your right hand.</VERS>\n\t\t\t<VERS vnumber=\"4\"> You will fall dead on the mountains of Israel, you and all your troops and the people who are with you. I give you as food to every kind of bird and every wild beast.</VERS>\n\t\t\t<VERS vnumber=\"5\"> You will fall dead in the open field; for I have spoken, declares the sovereign LORD.</VERS>\n\t\t\t<VERS vnumber=\"6\"> I will send fire on Magog and those who live securely in the coastlands; then they will know that I am the LORD.</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"'I will make my holy name known in the midst of my people Israel; I will not let my holy name be profaned anymore. Then the nations will know that I am the LORD, the Holy One of Israel.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Realize that it is coming and it will be done, declares the sovereign LORD. It is the day I have spoken about.</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"'Then those who live in the cities of Israel will go out and use the weapons for kindling, the shields, bows and arrows, war clubs and spears, they will burn them for seven years.</VERS>\n\t\t\t<VERS vnumber=\"10\"> They will not need to take wood from the field or cut down trees from the forests, because they will make fires with the weapons. They will take the loot from those who looted them and seize the plunder of those who plundered them, declares the sovereign LORD.</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"'On that day I will assign Gog a grave in Israel. It will be the valley of those who travel east of the sea; it will block the way of the travelers. There they will bury Gog and all his horde; they will call it the valley of Hamon-Gog.</VERS>\n\t\t\t<VERS vnumber=\"12\"> For seven months Israel will bury them, in order to cleanse the land. </VERS>\n\t\t\t<VERS vnumber=\"13\"> All the people of the land will bury them, and it will be a memorial for them on the day I magnify myself, declares the sovereign LORD. </VERS>\n\t\t\t<VERS vnumber=\"14\"> They will designate men to scout continually through the land, burying those who remain on the surface of the ground, in order to cleanse it. They will search for seven full months. </VERS>\n\t\t\t<VERS vnumber=\"15\"> When the scouts survey the land and see a human bone, they will place a sign by it, until those assigned to burial duty have buried it in the valley of Hamon-Gog. </VERS>\n\t\t\t<VERS vnumber=\"16\"> (A city by the name of Hamonah will also be there.) They will cleanse the land.'</VERS>\n\t\t\t<VERS vnumber=\"17\"> \"As for you, son of man, this is what the sovereign LORD says: Tell every kind of bird and every wild beast: 'Assemble and come! Gather from all around to my slaughter which I am going to make for you, a great slaughter on the mountains of Israel! You will eat flesh and drink blood. </VERS>\n\t\t\t<VERS vnumber=\"18\"> You will eat the flesh of warriors and drink the blood of the princes of the earth, the rams, lambs, goats, and bulls, all of them fattened animals of Bashan.</VERS>\n\t\t\t<VERS vnumber=\"19\"> You will eat fat until you are full, and drink blood until you are drunk, at my slaughter which I have made for you. </VERS>\n\t\t\t<VERS vnumber=\"20\"> You will fill up at my table with horses and charioteers, with warriors and all the soldiers,' declares the sovereign LORD.</VERS>\n\t\t\t<VERS vnumber=\"21\"> \"I will display my majesty among the nations. All the nations will witness the judgment I have executed, and the power I have exhibited among them. </VERS>\n\t\t\t<VERS vnumber=\"22\"> Then the house of Israel will know that I am the LORD their God, from that day forward.</VERS>\n\t\t\t<VERS vnumber=\"23\"> The nations will know that the house of Israel went into exile due to their iniquity, for they were unfaithful to me. So I hid my face from them and handed them over to their enemies; all of them died by the sword. </VERS>\n\t\t\t<VERS vnumber=\"24\"> According to their uncleanness and rebellion I have dealt with them, and I hid my face from them.</VERS>\n\t\t\t<VERS vnumber=\"25\"> \"Therefore this is what the sovereign LORD says: Now I will restore the fortunes of Jacob, and I will have mercy on the entire house of Israel. I will be zealous for my holy name. </VERS>\n\t\t\t<VERS vnumber=\"26\"> They will bear their shame for all their unfaithful acts against me, when they live securely on their land with no one to make them afraid.</VERS>\n\t\t\t<VERS vnumber=\"27\"> When I have brought them back from the peoples and gathered them from the countries of their enemies, I will magnify myself among them in the sight of many nations.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Then they will know that I am the LORD their God, because I sent them into exile among the nations, and then gathered them into their own land. I will not leave any of them in exile any longer. </VERS>\n\t\t\t<VERS vnumber=\"29\"> I will no longer hide my face from them, when I pour out my Spirit on the house of Israel, declares the sovereign LORD.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"40\">\n\t\t\t<VERS vnumber=\"1\"> In the twenty-fifth year of our exile, at the beginning of the year, on the tenth day of the month, in the fourteenth year after the city was struck down, on this very day, the hand of the LORD was on me, and he brought me there.</VERS>\n\t\t\t<VERS vnumber=\"2\"> By means of divine visions he brought me to the land of Israel and placed me on a very high mountain, and on it was a structure like a city, to the south. </VERS>\n\t\t\t<VERS vnumber=\"3\"> When he brought me there, I saw a man whose appearance was like bronze, with a linen cord and a measuring stick in his hand. He was standing in the gateway. </VERS>\n\t\t\t<VERS vnumber=\"4\"> The man said to me, \"Son of man, watch closely, listen carefully, and pay attention to everything I show you, for you have been brought here so that I can show it to you. Tell the house of Israel everything you see.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> I saw a wall all around the outside of the temple. In the man's hand was a measuring stick 10, feet long. He measured the thickness of the wall as 10, feet, and its height as 10, feet. </VERS>\n\t\t\t<VERS vnumber=\"6\"> Then he went to the gate facing east. He climbed its steps and measured the threshold of the gate as 10, feet deep.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The alcoves were 10, feet long and 10, feet wide; between the alcoves were 8, feet. The threshold of the gate by the porch of the gate facing inward was 10, feet. </VERS>\n\t\t\t<VERS vnumber=\"8\"> Then he measured the porch of the gate facing inward as 10, feet.</VERS>\n\t\t\t<VERS vnumber=\"9\"> He measured the porch of the gate as 14 feet, and its jambs as 3, feet; the porch of the gate faced inward. </VERS>\n\t\t\t<VERS vnumber=\"10\"> There were three alcoves on each side of the east gate; the three had the same measurement, and the jambs on either side had the same measurement.</VERS>\n\t\t\t<VERS vnumber=\"11\"> He measured the width of the entrance of the gateway as 17, feet, and the length of the gateway as 22, feet.</VERS>\n\t\t\t<VERS vnumber=\"12\"> There was a barrier in front of the alcoves, 1, feet on either side; the alcoves were 10, feet on either side. </VERS>\n\t\t\t<VERS vnumber=\"13\"> He measured the gateway from the roof of one alcove to the roof of the other, a width of 43, feet from one entrance to the opposite one. </VERS>\n\t\t\t<VERS vnumber=\"14\"> He measured the porch at 105 feet high; the gateway went all around to the jamb of the courtyard. </VERS>\n\t\t\t<VERS vnumber=\"15\"> From the front of the entrance gate to the porch of the inner gate was 87, feet.</VERS>\n\t\t\t<VERS vnumber=\"16\"> There were closed windows toward the alcoves and toward their jambs within the gate all around, and likewise for the porches. There were windows all around the inside, and on each jamb were decorative palm trees.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Then he brought me to the outer court. I saw chambers there, and a pavement made for the court all around; thirty chambers faced the pavement. </VERS>\n\t\t\t<VERS vnumber=\"18\"> The pavement was beside the gates, corresponding to the length of the gates; this was the lower pavement.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Then he measured the width from before the lower gate to the front of the exterior of the inner court as 175 feet on the east and on the north.</VERS>\n\t\t\t<VERS vnumber=\"20\"> He measured the length and width of the gate of the outer court which faces north.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Its alcoves, three on each side, and its jambs and porches had the same measurement as the first gate; 87, feet long and 43, feet wide. </VERS>\n\t\t\t<VERS vnumber=\"22\"> Its windows, its porches, and its decorative palm trees had the same measurement as the gate which faced east. Seven steps led up to it, and its porch was in front of them.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Opposite the gate on the north and the east was a gate of the inner court; he measured the distance from gate to gate at 175 feet.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Then he led me toward the south. I saw a gate on the south. He measured its jambs and its porches; they had the same dimensions as the others. </VERS>\n\t\t\t<VERS vnumber=\"25\"> There were windows all around it and its porches, like the windows of the others; 87, feet long and 43, feet wide. </VERS>\n\t\t\t<VERS vnumber=\"26\"> There were seven steps going up to it; its porches were in front of them. It had decorative palm trees on its jambs, one on either side.</VERS>\n\t\t\t<VERS vnumber=\"27\"> The inner court had a gate toward the south; he measured it from gate to gate toward the south as 175 feet.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Then he brought me to the inner court by the south gate. He measured the south gate; it had the same dimensions as the others.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Its alcoves, its jambs, and its porches had the same dimensions as the others, and there were windows all around it and its porches; its length was 87, feet and its width 43, feet.</VERS>\n\t\t\t<VERS vnumber=\"30\"> There were porches all around, 43, feet long and 8, feet wide. </VERS>\n\t\t\t<VERS vnumber=\"31\"> Its porches faced the outer court, and decorative palm trees were on its jambs, and its stairway had eight steps.</VERS>\n\t\t\t<VERS vnumber=\"32\"> Then he brought me to the inner court on the east side. He measured the gate; it had the same dimensions as the others.</VERS>\n\t\t\t<VERS vnumber=\"33\"> Its alcoves, its jambs, and its porches had the same dimensions as the others, and there were windows all around it and its porches; its length was 87, feet and its width 43, feet.</VERS>\n\t\t\t<VERS vnumber=\"34\"> Its porches faced the outer court, it had decorative palm trees on its jambs, and its stairway had eight steps.</VERS>\n\t\t\t<VERS vnumber=\"35\"> Then he brought me to the north gate, and he measured it; it had the same dimensions as the others,</VERS>\n\t\t\t<VERS vnumber=\"36\"> its alcoves, its jambs, and its porches. It had windows all around it; its length was 87, feet and its width 43, feet.</VERS>\n\t\t\t<VERS vnumber=\"37\"> Its jambs faced the outer court, and it had decorative palm trees on its jambs, on either side, and its stairway had eight steps.</VERS>\n\t\t\t<VERS vnumber=\"38\"> There was a chamber with its door by the porch of the gate; there they washed the burnt offering. </VERS>\n\t\t\t<VERS vnumber=\"39\"> In the porch of the gate were two tables on either side on which to slaughter the burnt offering, the sin offering, and the guilt offering.</VERS>\n\t\t\t<VERS vnumber=\"40\"> On the outside of the porch as one goes up at the entrance of the north gate were two tables, and on the other side of the porch of the gate were two tables.</VERS>\n\t\t\t<VERS vnumber=\"41\"> Four tables were on each side of the gate, eight tables on which the sacrifices were to be slaughtered.</VERS>\n\t\t\t<VERS vnumber=\"42\"> The four tables for the burnt offering were of carved stone, 32 inches long, 32 inches wide, and 21 inches high. They would put the instruments which they used to slaughter the burnt offering and the sacrifice on them. </VERS>\n\t\t\t<VERS vnumber=\"43\"> There were hooks three inches long, fastened in the house all around, and on the tables was the flesh of the offering.</VERS>\n\t\t\t<VERS vnumber=\"44\"> On the outside of the inner gate were chambers for the singers of the inner court, one at the side of the north gate facing south, and the other at the side of the south gate facing north. </VERS>\n\t\t\t<VERS vnumber=\"45\"> He said to me, \"This chamber which faces south is for the priests who keep charge of the temple,</VERS>\n\t\t\t<VERS vnumber=\"46\"> and the chamber which faces north is for the priests who keep charge of the altar. These are the descendants of Zadok, from the descendants of Levi, who may approach the LORD to minister to him.\"</VERS>\n\t\t\t<VERS vnumber=\"47\"> He measured the court as a square 175 feet long and 175 feet wide; the altar was in front of the temple.</VERS>\n\t\t\t<VERS vnumber=\"48\"> Then he brought me to the porch of the temple and measured the jambs of the porch as 8, feet on either side, and the width of the gate was 24, feet and the sides were 5, feet on each side. </VERS>\n\t\t\t<VERS vnumber=\"49\"> The length of the porch was 35 feet and the width 19, feet; steps led up to it, and there were pillars beside the jambs on either side.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"41\">\n\t\t\t<VERS vnumber=\"1\"> Then he brought me to the outer sanctuary, and measured the jambs; the jambs were 10, feet wide on each side. </VERS>\n\t\t\t<VERS vnumber=\"2\"> The width of the entrance was 17, feet, and the sides of the entrance were 8, feet on each side. He measured the length of the outer sanctuary as 70 feet, and its width as 35 feet.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Then he went into the inner sanctuary and measured the jambs of the entrance as 3, feet, the entrance as 10, feet, and the width of the entrance as 12, feet</VERS>\n\t\t\t<VERS vnumber=\"4\"> Then he measured its length as 35 feet, and its width as 35 feet, before the outer sanctuary. He said to me, \"This is the most holy place.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> Then he measured the wall of the temple as 10, feet, and the width of the side chambers as 7 feet, all around the temple. </VERS>\n\t\t\t<VERS vnumber=\"6\"> The side chambers were in three stories, one above the other, thirty in each story. There were offsets in the wall all around to serve as supports for the side chambers, so that the supports were not in the wall of the temple.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The side chambers surrounding the temple were wider at each successive story; for the structure surrounding the temple went up story by story all around the temple. For this reason the width of the temple increased as it went up, and one went up from the lowest story to the highest by the way of the middle story.</VERS>\n\t\t\t<VERS vnumber=\"8\"> I saw that the temple had a raised platform all around; the foundations of the side chambers were a full measuring stick of 10, feet high. </VERS>\n\t\t\t<VERS vnumber=\"9\"> The width of the outer wall of the side chambers was 8, feet, and the open area between the side chambers of the temple </VERS>\n\t\t\t<VERS vnumber=\"10\"> and the chambers of the court was 35 feet in width all around the temple on every side. </VERS>\n\t\t\t<VERS vnumber=\"11\"> There were entrances from the side chambers toward the open area, one entrance toward the north, and another entrance toward the south; the width of the open area was 8, feet all around.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The building that was facing the temple courtyard at the west side was 122, feet wide; the wall of the building was 8, feet all around, and its length 157, feet.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Then he measured the temple as 175 feet long, the courtyard of the temple and the building and its walls as 175 feet long, </VERS>\n\t\t\t<VERS vnumber=\"14\"> and also the width of the front of the temple and the courtyard on the east as 175 feet.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Then he measured the length of the building facing the courtyard at the rear of the temple, with its galleries on either side as 175 feet. The interior of the outer sanctuary and the porch of the court,</VERS>\n\t\t\t<VERS vnumber=\"16\"> as well as the thresholds, narrow windows and galleries all around on three sides facing the threshold were paneled with wood all around, from the ground up to the windows (now the windows were covered),</VERS>\n\t\t\t<VERS vnumber=\"17\"> to the space above the entrance, to the inner room, and on the outside, and on all the walls in the inner room and outside, by measurement.</VERS>\n\t\t\t<VERS vnumber=\"18\"> It was made with cherubim and decorative palm trees, with a palm tree between each cherub. Each cherub had two faces:</VERS>\n\t\t\t<VERS vnumber=\"19\"> a human face toward the palm tree on one side and a lion's face toward the palm tree on the other side. They were carved on the whole temple all around;</VERS>\n\t\t\t<VERS vnumber=\"20\"> from the ground to the area above the entrance, cherubim and decorative palm trees were carved on the wall of the outer sanctuary.</VERS>\n\t\t\t<VERS vnumber=\"21\"> The doorposts of the outer sanctuary were square. In front of the sanctuary one doorpost looked just like the other.</VERS>\n\t\t\t<VERS vnumber=\"22\"> The altar was of wood, 5, feet high, with its length 3, feet; its corners, its length, and its walls were of wood. He said to me, \"This is the table that is before the LORD.\" </VERS>\n\t\t\t<VERS vnumber=\"23\"> The outer sanctuary and the inner sanctuary each had a double door.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Each of the doors had two leaves, two swinging leaves; two leaves for one door and two leaves for the other. </VERS>\n\t\t\t<VERS vnumber=\"25\"> On the doors of the outer sanctuary were carved cherubim and palm trees, like those carved on the walls, and there was a canopy of wood on the front of the outside porch.</VERS>\n\t\t\t<VERS vnumber=\"26\"> There were narrow windows and decorative palm trees on either side of the side walls of the porch; this is what the side chambers of the temple and the canopies were like.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"42\">\n\t\t\t<VERS vnumber=\"1\"> Then he led me out to the outer court, toward the north, and brought me to the chamber which was opposite the courtyard and opposite the building on the north.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Its length was 175 feet on the north side, and its width 87, feet.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Opposite the 35 feet that belonged to the inner court, and opposite the pavement which belonged to the outer court, gallery faced gallery in the three stories. </VERS>\n\t\t\t<VERS vnumber=\"4\"> In front of the chambers was a walkway on the inner side, 17, feet wide at a distance of 1, feet, and their entrances were on the north. </VERS>\n\t\t\t<VERS vnumber=\"5\"> Now the upper chambers were narrower, because the galleries took more space from them than from the lower and middle chambers of the building.</VERS>\n\t\t\t<VERS vnumber=\"6\"> For they were in three stories and had no pillars like the pillars of the courts; therefore the upper chambers were set back from the ground more than the lower and upper ones. </VERS>\n\t\t\t<VERS vnumber=\"7\"> As for the outer wall by the side of the chambers, toward the outer court facing the chambers, it was 87, feet long. </VERS>\n\t\t\t<VERS vnumber=\"8\"> For the chambers on the outer court were 87, feet long, while those facing the temple were 175 feet long. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Below these chambers was a passage on the east side as one enters from the outer court.</VERS>\n\t\t\t<VERS vnumber=\"10\"> At the beginning of the wall of the court toward the south, facing the courtyard and the building, were chambers </VERS>\n\t\t\t<VERS vnumber=\"11\"> with a passage in front of them. They looked like the chambers on the north. Of the same length and width, and all their exits according to their arrangements and entrances</VERS>\n\t\t\t<VERS vnumber=\"12\"> were the chambers which were toward the south. There was an opening at the head of the passage, the passage in front of the corresponding wall toward the east when one enters.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Then he said to me, \"The north chambers and the south chambers which face the courtyard are holy chambers where the priests who approach the LORD will eat the most holy offerings. There they will place the most holy offerings, the grain offering, the sin offering, and the guilt offering, because the place is holy.</VERS>\n\t\t\t<VERS vnumber=\"14\"> When the priests enter, then they will not go out from the sanctuary to the outer court without taking off their garments in which they minister, for these are holy; they will put on other garments, then they will go near the places where the people are.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> Now when he had finished measuring the interior of the temple, he led me out by the gate which faces east and measured all around.</VERS>\n\t\t\t<VERS vnumber=\"16\"> He measured the east side with the measuring stick as 875 feet by the measuring stick. </VERS>\n\t\t\t<VERS vnumber=\"17\"> He measured the north side as 875 feet by the measuring stick.</VERS>\n\t\t\t<VERS vnumber=\"18\"> He measured the south side as 875 feet by the measuring stick.</VERS>\n\t\t\t<VERS vnumber=\"19\"> He turned to the west side and measured 875 feet by the measuring stick.</VERS>\n\t\t\t<VERS vnumber=\"20\"> He measured it on all four sides. It had a wall around it, 875 feet long and 875 feet wide, to separate the holy and common places.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"43\">\n\t\t\t<VERS vnumber=\"1\"> Then he brought me to the gate that faced toward the east.</VERS>\n\t\t\t<VERS vnumber=\"2\"> I saw the glory of the God of Israel coming from the east; the sound was like that of rushing water; and the earth radiated his glory. </VERS>\n\t\t\t<VERS vnumber=\"3\"> It was like the vision I saw when he came to destroy the city, and the vision I saw by the Kebar River. I threw myself face down. </VERS>\n\t\t\t<VERS vnumber=\"4\"> The glory of the LORD came into the temple by way of the gate that faces east.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Then a wind lifted me up and brought me to the inner court; I watched the glory of the LORD filling the temple.</VERS>\n\t\t\t<VERS vnumber=\"6\"> I heard someone speaking to me from the temple, while the man was standing beside me.</VERS>\n\t\t\t<VERS vnumber=\"7\"> He said to me: \"Son of man, this is the place of my throne and the place for the soles of my feet, where I will live among the people of Israel forever. The house of Israel will no longer profane my holy name, neither they nor their kings, by their spiritual prostitution or by the pillars of their kings set up when they die.</VERS>\n\t\t\t<VERS vnumber=\"8\"> When they placed their threshold by my threshold and their doorpost by my doorpost, with only the wall between me and them, they profaned my holy name by the abominable deeds they committed. So I consumed them in my anger.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Now they must put away their spiritual prostitution and the pillars of their kings far from me, and then I will live among them forever.</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"As for you, son of man, describe the temple to the house of Israel, so that they will be ashamed of their sins and measure the pattern.</VERS>\n\t\t\t<VERS vnumber=\"11\"> When they are ashamed of all that they have done, make known to them the design of the temple, its pattern, its exits and entrances, and its whole design, all its statutes, its entire design, and all its laws; write it all down in their sight, so that they may observe its entire design and all its statutes and do them.</VERS>\n\t\t\t<VERS vnumber=\"12\"> \"This is the law of the temple: The entire area on top of the mountain all around will be most holy. Indeed, this is the law of the temple.</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"And these are the measurements of the altar: Its base is 1, feet high, and 1, feet wide, and its border nine inches on its edge. This is to be the height of the altar. </VERS>\n\t\t\t<VERS vnumber=\"14\"> From the base of the ground to the lower edge is 3, feet, and the width 1, feet; and from the smaller ledge to the larger edge, 7 feet, and the width 1, feet; </VERS>\n\t\t\t<VERS vnumber=\"15\"> and the altar hearth, 7 feet, and from the altar hearth four horns projecting upward.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Now the altar hearth is a perfect square, 21 feet long and 21 feet wide. </VERS>\n\t\t\t<VERS vnumber=\"17\"> The ledge is 24, feet long and 24, feet wide on four sides; the border around it is 10, inches, and its surrounding base 1, feet. Its steps face east.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> Then he said to me: \"Son of man, this is what the sovereign LORD says: These are the statutes of the altar: On the day it is built to offer up burnt offerings on it and to sprinkle blood on it,</VERS>\n\t\t\t<VERS vnumber=\"19\"> you will give a young bull for a sin offering to the Levitical priests who are descended from Zadok, who approach me to minister to me, declares the sovereign LORD.</VERS>\n\t\t\t<VERS vnumber=\"20\"> You will take some of its blood, and place it on the four horns of the altar, on the four corners of the ledge, and on the border all around; you will cleanse it and make atonement for it.</VERS>\n\t\t\t<VERS vnumber=\"21\"> You will also take the bull for the sin offering, and it will be burned in the appointed place in the temple, outside the sanctuary.</VERS>\n\t\t\t<VERS vnumber=\"22\"> \"On the second day, you will offer a male goat without blemish for a sin offering. They will purify the altar just as they purified it with the bull.</VERS>\n\t\t\t<VERS vnumber=\"23\"> When you have finished purifying it, you will offer an unblemished young bull and an unblemished ram from the flock.</VERS>\n\t\t\t<VERS vnumber=\"24\"> You will present them before the LORD, and the priests will scatter salt on them and offer them up as a burnt offering to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"25\"> \"For seven days you will provide every day a goat for a sin offering; a young bull and a ram from the flock, both without blemish, will be provided.</VERS>\n\t\t\t<VERS vnumber=\"26\"> For seven days they will make atonement for the altar and cleanse it, so they will consecrate it.</VERS>\n\t\t\t<VERS vnumber=\"27\"> When the prescribed period is over, on the eighth day and thereafter the priests will offer up on the altar your burnt offerings and your peace offerings; I will accept you, declares the sovereign LORD.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"44\">\n\t\t\t<VERS vnumber=\"1\"> Then he brought me back by way of the outer gate of the sanctuary which faces east, but it was shut.</VERS>\n\t\t\t<VERS vnumber=\"2\"> The LORD said to me: \"This gate will be shut; it will not be opened, and no one will enter by it. For the LORD, the God of Israel, has entered by it; therefore it will remain shut.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Only the prince may sit in it to eat a sacrificial meal before the LORD; he will enter by way of the porch of the gate and will go out by the same way.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> Then he brought me by way of the north gate to the front of the temple. As I watched, I noticed the glory of the LORD filling the LORD's temple, and I threw myself face down. </VERS>\n\t\t\t<VERS vnumber=\"5\"> The LORD said to me: \"Son of man, pay attention, watch closely and listen carefully to everything I tell you concerning all the statutes of the LORD's house and all its laws. Pay attention to the entrances to the temple with all the exits of the sanctuary. </VERS>\n\t\t\t<VERS vnumber=\"6\"> Say to the rebellious, to the house of Israel, 'This is what the sovereign LORD says: Enough of all your abominable practices, O house of Israel! </VERS>\n\t\t\t<VERS vnumber=\"7\"> When you bring foreigners, those uncircumcised in heart and in flesh, into my sanctuary, you desecrate it, even my house, when you offer my food, the fat and the blood. You have broken my covenant by all your abominable practices.</VERS>\n\t\t\t<VERS vnumber=\"8\"> You have not kept charge of my holy things, but you have assigned foreigners to keep charge of my sanctuary for you. </VERS>\n\t\t\t<VERS vnumber=\"9\"> This is what the sovereign LORD says: No foreigner, who is uncircumcised in heart and flesh among all the foreigners who are among the people of Israel, will enter into my sanctuary.</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"'But the Levites who went far from me, straying off from me after their idols when Israel went astray, will be responsible for their sin. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Yet they will be ministers in my sanctuary, having oversight at the gates of the temple, and serving the temple. They will slaughter the burnt offerings and the sacrifices for the people, and they will stand before them to minister to them.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Because they used to minister to them before their idols, and became a sinful obstacle to the house of Israel, consequently I have made a vow concerning them, declares the sovereign LORD, that they will be responsible for their sin. </VERS>\n\t\t\t<VERS vnumber=\"13\"> They will not come near me to serve me as priest, nor will they come near any of my holy things, the things which are most sacred. They will bear the shame of the abominable deeds they have committed.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Yet I will appoint them to keep charge of the temple, all of its service and all that will be done in it.</VERS>\n\t\t\t<VERS vnumber=\"15\"> \"'But the Levitical priests, the descendants of Zadok who kept the charge of my sanctuary when the people of Israel went astray from me, will approach me to minister to me; they will stand before me to offer me the fat and the blood, declares the sovereign LORD. </VERS>\n\t\t\t<VERS vnumber=\"16\"> They will enter my sanctuary, and approach my table to minister to me; they will keep my charge.</VERS>\n\t\t\t<VERS vnumber=\"17\"> \"'When they enter the gates of the inner court, they must wear linen garments; they must not have any wool on them when they minister in the inner gates of the court and in the temple.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Linen turbans will be on their heads and linen undergarments will be around their waists; they must not bind themselves with anything that causes sweat.</VERS>\n\t\t\t<VERS vnumber=\"19\"> When they go out to the outer court to the people, they must remove the garments they were ministering in, and place them in the holy chambers; they must put on other garments so that they will not transmit holiness to the people with their garments.</VERS>\n\t\t\t<VERS vnumber=\"20\"> \"'They must not shave their heads nor let their hair grow long; they must only trim their heads. </VERS>\n\t\t\t<VERS vnumber=\"21\"> No priest may drink wine when he enters the inner court.</VERS>\n\t\t\t<VERS vnumber=\"22\"> They must not marry a widow or a divorcee, but they may marry a virgin from the house of Israel or a widow who is a priest's widow. </VERS>\n\t\t\t<VERS vnumber=\"23\"> Moreover, they will teach my people the difference between the holy and the common, and show them how to distinguish between the ceremonially unclean and the clean.</VERS>\n\t\t\t<VERS vnumber=\"24\"> \"'In a controversy they will act as judges; they will judge according to my ordinances. They will keep my laws and my statutes regarding all my appointed festivals and will observe my Sabbaths.</VERS>\n\t\t\t<VERS vnumber=\"25\"> \"'They must not come near a dead person or they will be defiled; however, for father, mother, son, daughter, brother or sister, they may defile themselves. </VERS>\n\t\t\t<VERS vnumber=\"26\"> After a priest has become ceremonially clean, they must count off a period of seven days for him. </VERS>\n\t\t\t<VERS vnumber=\"27\"> On the day he enters the sanctuary, into the inner court to serve in the sanctuary, he must offer his sin offering, declares the sovereign LORD.</VERS>\n\t\t\t<VERS vnumber=\"28\"> \"'This will be their inheritance: I am their inheritance, and you must give them no property in Israel; I am their property.</VERS>\n\t\t\t<VERS vnumber=\"29\"> They may eat the grain offering, the sin offering, and the guilt offering, and every devoted thing in Israel will be theirs.</VERS>\n\t\t\t<VERS vnumber=\"30\"> The first of all the first fruits and all contributions of any kind will be for the priests; you will also give to the priest the first portion of your dough, so that a blessing may rest on your house. </VERS>\n\t\t\t<VERS vnumber=\"31\"> The priests will not eat any bird or animal that has died a natural death or was torn to pieces by a wild animal.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"45\">\n\t\t\t<VERS vnumber=\"1\"> \"'When you allot the land as an inheritance, you will offer an allotment to the LORD, a holy portion from the land; the length will be eight and a quarter miles and the width three and one-third miles. This entire area will be holy.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Of this area a square 875 feet by 875 feet will be designated for the sanctuary, with 87, feet set aside for its open space round about. </VERS>\n\t\t\t<VERS vnumber=\"3\"> From this measured area you will measure a length of eight and a quarter miles and a width of three and one-third miles; in it will be the sanctuary, the most holy place. </VERS>\n\t\t\t<VERS vnumber=\"4\"> It will be a holy portion of the land; it will be for the priests, the ministers of the sanctuary who approach the LORD to minister to him. It will be a place for their houses and a holy place for the sanctuary.</VERS>\n\t\t\t<VERS vnumber=\"5\"> An area eight and a quarter miles in length and three and one-third miles in width will be for the Levites, who minister at the temple, as the place for the cities in which they will live.</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"'Alongside the portion set apart as the holy allotment, you will allot for the city an area one and two-thirds miles wide and eight and a quarter miles long; it will be for the whole house of Israel.</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"'For the prince there will be land on both sides of the holy allotment and the allotted city, alongside the holy allotment and the allotted city, on the west side and on the east side; it will be comparable in length to one of the portions, from the west border to the east border</VERS>\n\t\t\t<VERS vnumber=\"8\"> of the land. This will be his property in Israel. My princes will no longer oppress my people, but the land will be allotted to the house of Israel according to their tribes.</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"'This is what the sovereign LORD says: Enough, you princes of Israel! Put away violence and destruction, and do what is just and right. Put an end to your evictions of my people, declares the sovereign LORD. </VERS>\n\t\t\t<VERS vnumber=\"10\"> You must use just balances, a just dry measure (an ephah), and a just liquid measure (a bath).</VERS>\n\t\t\t<VERS vnumber=\"11\"> The dry and liquid measures will be the same, the bath will contain a tenth of a homer, and the ephah a tenth of a homer; the homer will be the standard measure. </VERS>\n\t\t\t<VERS vnumber=\"12\"> The shekel will be twenty gerahs. Sixty shekels will be a mina for you.</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"'This is the offering you must offer: a sixth of an ephah from a homer of wheat; a sixth of an ephah from a homer of barley,</VERS>\n\t\t\t<VERS vnumber=\"14\"> and as the prescribed portion of olive oil, one tenth of a bath from each kor (which is ten baths or a homer, for ten baths make a homer);</VERS>\n\t\t\t<VERS vnumber=\"15\"> and one sheep from each flock of two hundred, from the watered places of Israel, for a grain offering, burnt offering, and peace offering, to make atonement for them, declares the sovereign LORD.</VERS>\n\t\t\t<VERS vnumber=\"16\"> All the people of the land will contribute to this offering for the prince of Israel. </VERS>\n\t\t\t<VERS vnumber=\"17\"> It will be the duty of the prince to provide the burnt offerings, the grain offering, and the drink offering at festivals, on the new moons and Sabbaths, at all the appointed feasts of the house of Israel; he will provide the sin offering, the grain offering, the burnt offering, and the peace offerings to make atonement for the house of Israel.</VERS>\n\t\t\t<VERS vnumber=\"18\"> \"'This is what the sovereign LORD says: In the first month, on the first day of the month, you must take an unblemished young bull and purify the sanctuary.</VERS>\n\t\t\t<VERS vnumber=\"19\"> The priest will take some of the blood of the sin offering and place it on the doorpost of the temple, on the four corners of the ledge of the altar, and on the doorpost of the gate of the inner court.</VERS>\n\t\t\t<VERS vnumber=\"20\"> This is what you must do on the seventh day of the month for anyone who sins inadvertently or through ignorance; so you will make atonement for the temple.</VERS>\n\t\t\t<VERS vnumber=\"21\"> \"'In the first month, on the fourteenth day of the month, you will celebrate the Passover, and for seven days bread made without yeast will be eaten.</VERS>\n\t\t\t<VERS vnumber=\"22\"> On that day the prince will provide for himself and for all the people of the land a bull for a sin offering.</VERS>\n\t\t\t<VERS vnumber=\"23\"> And during the seven days of the feast he will provide as a burnt offering to the LORD seven bulls and seven rams, all without blemish, on each of the seven days, and a male goat daily for a sin offering.</VERS>\n\t\t\t<VERS vnumber=\"24\"> He will provide as a grain offering an ephah for each bull, an ephah for each ram, and a gallon of olive oil for each ephah of grain.</VERS>\n\t\t\t<VERS vnumber=\"25\"> In the seventh month, on the fifteenth day of the month, at the feast, he will make the same provisions for the sin offering, burnt offering, and grain offering, and for the olive oil, for the seven days.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"46\">\n\t\t\t<VERS vnumber=\"1\"> \"'This is what the sovereign LORD says: The gate of the inner court that faces east will be closed six working days, but on the Sabbath day it will be opened and on the day of the new moon it will be opened. </VERS>\n\t\t\t<VERS vnumber=\"2\"> The prince will enter by way of the porch of the gate from the outside, and will stand by the doorpost of the gate. The priests will provide his burnt offering and his peace offerings, and he will bow down at the threshold of the gate and then go out. But the gate will not be closed until evening.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The people of the land will bow down at the entrance of that gate before the LORD on the Sabbaths and on the new moons.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The burnt offering which the prince will offer to the LORD on the Sabbath day will be six unblemished lambs and one unblemished ram.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The grain offering will be an ephah with the ram, and the grain offering with the lambs will be as much as he is able to give, and a gallon of olive oil with an ephah. </VERS>\n\t\t\t<VERS vnumber=\"6\"> On the day of the new moon he will offer an unblemished young bull, and six lambs and a ram, all without blemish. </VERS>\n\t\t\t<VERS vnumber=\"7\"> He will provide a grain offering: an ephah with the bull and an ephah with the ram, and with the lambs as much as he wishes, and a gallon of olive oil with each ephah of grain.</VERS>\n\t\t\t<VERS vnumber=\"8\"> When the prince enters, he will come by way of the porch of the gate and will go out the same way.</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"'When the people of the land come before the LORD at the appointed feasts, whoever enters by way of the north gate to worship will go out by way of the south gate; whoever enters by way of the south gate will go out by way of the north gate. No one will return by way of the gate they entered but will go out straight ahead.</VERS>\n\t\t\t<VERS vnumber=\"10\"> When they come in, the prince will come in with them, and when they go out, he will go out.</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"'At the festivals and at the appointed feasts the grain offering will be an ephah with the bull and an ephah with the ram, and with the lambs as much as one is able, and a gallon of olive oil with each ephah of grain.</VERS>\n\t\t\t<VERS vnumber=\"12\"> When the prince provides a freewill offering, a burnt offering, or peace offerings as a voluntary offering to the LORD, the gate facing east will be opened for him, and he will provide his burnt offering and his peace offerings just as he did on the Sabbath. Then he will go out, and the gate will be closed after he goes out.</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"'You will provide a lamb a year old without blemish for a burnt offering daily to the LORD; morning by morning he will provide it. </VERS>\n\t\t\t<VERS vnumber=\"14\"> And you will provide a grain offering with it morning by morning, a sixth of an ephah, and a third of a gallon of olive oil to moisten the choice flour, as a grain offering to the LORD; this is a perpetual statute. </VERS>\n\t\t\t<VERS vnumber=\"15\"> Thus they will provide the lamb, the grain offering, and the olive oil morning by morning, as a perpetual burnt offering.</VERS>\n\t\t\t<VERS vnumber=\"16\"> \"'This is what the sovereign LORD says: If the prince should give a gift to one of his sons as his inheritance, it will belong to his sons, it is their property by inheritance. </VERS>\n\t\t\t<VERS vnumber=\"17\"> But if he gives a gift from his inheritance to one of his servants, it will be his until the year of liberty; then it will revert to the prince. His inheritance will only remain with his sons. </VERS>\n\t\t\t<VERS vnumber=\"18\"> The prince will not take away any of the people's inheritance by oppressively removing them from their property. He will give his sons an inheritance from his own possessions so that my people will not be scattered, each from his own property.'\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> Then he brought me through the entrance, which was at the side of the gate, into the holy chambers for the priests which faced north. There I saw a place at the extreme western end. </VERS>\n\t\t\t<VERS vnumber=\"20\"> He said to me, \"This is the place where the priests will boil the guilt offering and the sin offering, and where they will bake the grain offering, so that they do not bring them out to the outer court to transmit holiness to the people.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> Then he brought me out to the outer court and led me past the four corners of the court, and I noticed that in every corner of the court there was a court. </VERS>\n\t\t\t<VERS vnumber=\"22\"> In the four corners of the court were small courts, 70 feet in length and 52, feet in width; the four were all the same size. </VERS>\n\t\t\t<VERS vnumber=\"23\"> There was a row of masonry around each of the four courts, and places for boiling offerings were made under the rows all around.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Then he said to me, \"These are the houses for boiling, where the ministers of the temple boil the sacrifices of the people.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"47\">\n\t\t\t<VERS vnumber=\"1\"> Then he brought me back to the entrance of the temple. I noticed that water was flowing from under the threshold of the temple toward the east (for the temple faced east). The water was flowing down from under the right side of the temple, from south of the altar. </VERS>\n\t\t\t<VERS vnumber=\"2\"> He led me out by way of the north gate and brought me around the outside of the outer gate that faces toward the east; I noticed that the water was trickling out from the south side.</VERS>\n\t\t\t<VERS vnumber=\"3\"> When the man went out toward the east with a measuring line in his hand, he measured 1,750 feet, and then he led me through water, which was ankle deep. </VERS>\n\t\t\t<VERS vnumber=\"4\"> Again he measured 1,750 feet and led me through the water, which was now knee deep. Once more he measured 1,750 feet and led me through the water, which was waist deep.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Again he measured 1,750 feet and it was a river I could not cross, for the water had risen; it was deep enough to swim in, a river that could not be crossed.</VERS>\n\t\t\t<VERS vnumber=\"6\"> He said to me, \"Son of man, have you seen this?\" Then he led me back to the bank of the river.</VERS>\n\t\t\t<VERS vnumber=\"7\"> When I had returned, I noticed a vast number of trees on the banks of the river, on both sides. </VERS>\n\t\t\t<VERS vnumber=\"8\"> He said to me, \"These waters go out toward the eastern region and flow down into the Arabah; when they enter the Dead Sea, where the sea is stagnant, the waters become fresh.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Every living creature which swarms where the river flows will live; there will be many fish, for these waters flow there. It will become fresh and everything will live where the river flows. </VERS>\n\t\t\t<VERS vnumber=\"10\"> Fishermen will stand beside it; from Engedi to En-eglaim they will spread nets. They will catch many kinds of fish, like the fish of the Great Sea.</VERS>\n\t\t\t<VERS vnumber=\"11\"> But its swamps and its marshes will not become fresh; they will remain salty.</VERS>\n\t\t\t<VERS vnumber=\"12\"> On both sides of the river's banks, every kind of tree will grow for food. Their leaves will not wither nor will their fruit fail, but they will bear fruit every month, because their water source flows from the sanctuary. Their fruit will be for food and their leaves for healing.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> This is what the sovereign LORD says: \"Here are the borders you will observe as you allot the land to the twelve tribes of Israel. (Joseph will have two portions.)</VERS>\n\t\t\t<VERS vnumber=\"14\"> You must divide it equally just as I vowed to give it to your forefathers; this land will be assigned as your inheritance.</VERS>\n\t\t\t<VERS vnumber=\"15\"> \"This will be the border of the land: On the north side, from the Great Sea by way of Hethlon to the entrance of Zedad;</VERS>\n\t\t\t<VERS vnumber=\"16\"> Hamath, Berothah, Sibraim, which is between the border of Damascus and the border of Hamath, as far as Hazer-hattikon, which is on the border of Hauran.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The border will run from the sea to Hazar-enan, at the border of Damascus, and on the north is the border of Hamath. This is the north side.</VERS>\n\t\t\t<VERS vnumber=\"18\"> On the east side, between Hauran and Damascus, and between Gilead and the land of Israel, will be the Jordan. You will measure from the border to the eastern sea. This is the east side.</VERS>\n\t\t\t<VERS vnumber=\"19\"> On the south side it will run from Tamar to the waters of Meribath Kadesh, the river, to the Great Sea. This is the south side. </VERS>\n\t\t\t<VERS vnumber=\"20\"> On the west side the Great Sea will be the boundary to a point opposite Lebo-hamath. This is the west side.</VERS>\n\t\t\t<VERS vnumber=\"21\"> \"This is how you will divide this land for yourselves among the tribes of Israel.</VERS>\n\t\t\t<VERS vnumber=\"22\"> You must allot it as an inheritance among yourselves and for the foreigners who reside among you, who have fathered sons among you. You must treat them as native-born among the people of Israel; they will be allotted an inheritance with you among the tribes of Israel.</VERS>\n\t\t\t<VERS vnumber=\"23\"> In whatever tribe the foreigner resides, there you will give him his inheritance,\" declares the sovereign LORD.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"48\">\n\t\t\t<VERS vnumber=\"1\"> \"These are the names of the tribes: From the northern end beside the road of Hethlon to Lebo-hamath, as far as Hazar-enan (which is on the border of Damascus, toward the north beside Hamath), extending from the east side to the west, Dan will have one portion.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Next to the border of Dan, from the east side to the west, Asher will have one portion. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Next to the border of Asher from the east side to the west, Naphtali will have one portion.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Next to the border of Naphtali from the east side to the west, Manasseh will have one portion.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Next to the border of Manasseh from the east side to the west, Ephraim will have one portion.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Next to the border of Ephraim from the east side to the west, Reuben will have one portion.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Next to the border of Reuben from the east side to the west, Judah will have one portion.</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"Next to the border of Judah from the east side to the west will be the allotment you must set apart. It is to be eight and a quarter miles wide, and the same length as one of the tribal portions, from the east side to the west; the sanctuary will be in the middle of it. </VERS>\n\t\t\t<VERS vnumber=\"9\"> The allotment you set apart to the LORD will be eight and a quarter miles in length and three and one-third miles in width. </VERS>\n\t\t\t<VERS vnumber=\"10\"> These will be the allotments for the holy portion: for the priests, toward the north eight and a quarter miles in length, toward the west three and one-third miles in width, toward the east three and one-third miles in width, and toward the south eight and a quarter miles in length; the sanctuary of the LORD will be in the middle. </VERS>\n\t\t\t<VERS vnumber=\"11\"> This will be for the priests who are set apart from the descendants of Zadok who kept my charge and did not go astray when the people of Israel strayed off, like the Levites did.</VERS>\n\t\t\t<VERS vnumber=\"12\"> It will be their portion from the allotment of the land, a most holy place, next to the border of the Levites.</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"Alongside the border of the priests, the Levites will have an allotment eight and a quarter miles in length and three and one-third miles in width. The whole length will be eight and a quarter miles and the width three and one-third miles.</VERS>\n\t\t\t<VERS vnumber=\"14\"> They must not sell or exchange any of it; they must not transfer this choice portion of land, for it is set apart to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"15\"> \"The remainder, one and two-thirds miles in width and eight and a quarter miles in length, will be for common use by the city, for houses and for open space. The city will be in the middle of it; </VERS>\n\t\t\t<VERS vnumber=\"16\"> these will be its measurements: The north side will be one and one-half miles, the south side one and one-half miles, the east side one and one-half miles, and the west side one and one-half miles. </VERS>\n\t\t\t<VERS vnumber=\"17\"> The city will have open spaces: On the north there will be 437, feet, on the south 437, feet, on the east 437, feet, and on the west 437, feet. </VERS>\n\t\t\t<VERS vnumber=\"18\"> The remainder of the length alongside the holy allotment will be three and one-third miles to the east and three and one-third miles toward the west, and it will be beside the holy allotment. Its produce will be for food for the workers of the city. </VERS>\n\t\t\t<VERS vnumber=\"19\"> The workers of the city from all the tribes of Israel will cultivate it.</VERS>\n\t\t\t<VERS vnumber=\"20\"> The whole allotment will be eight and a quarter miles square, you must set apart the holy allotment with the possession of the city.</VERS>\n\t\t\t<VERS vnumber=\"21\"> \"The rest, on both sides of the holy allotment and the property of the city, will belong to the prince. Extending from the eight and a quarter miles of the holy allotment to the east border, and westward from the eight and a quarter miles to the west border, alongside the portions, it will belong to the prince. The holy allotment and the sanctuary of the temple will be in the middle of it. </VERS>\n\t\t\t<VERS vnumber=\"22\"> The property of the Levites and of the city will be in the middle of that which belongs to the prince. The portion between the border of Judah and the border of Benjamin will be for the prince.</VERS>\n\t\t\t<VERS vnumber=\"23\"> \"As for the rest of the tribes: From the east side to the west side, Benjamin will have one portion.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Next to the border of Benjamin, from the east side to the west side, Simeon will have one portion.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Next to the border of Simeon, from the east side to the west side, Issachar will have one portion.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Next to the border of Issachar, from the east side to the west side, Zebulun will have one portion.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Next to the border of Zebulun, from the east side to the west side, Gad will have one portion.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Next to the border of Gad, at the south side, the border will run from Tamar to the waters of Meribath Kadesh, to the Stream of Egypt and on to the Great Sea. </VERS>\n\t\t\t<VERS vnumber=\"29\"> This is the land which you will allot to the tribes of Israel, and these are their portions, declares the sovereign LORD.</VERS>\n\t\t\t<VERS vnumber=\"30\"> \"These are the exits of the city: On the north side, one and one-half miles by measure, </VERS>\n\t\t\t<VERS vnumber=\"31\"> the gates of the city will be named for the tribes of Israel; there will be three gates to the north: one gate for Reuben, one gate for Judah, and one gate for Levi. </VERS>\n\t\t\t<VERS vnumber=\"32\"> On the east side, one and one-half miles in length, there will be three gates: one gate for Joseph, one gate for Benjamin, and one gate for Dan.</VERS>\n\t\t\t<VERS vnumber=\"33\"> On the south side, one and one-half miles by measure, there will be three gates: one gate for Simeon, one gate for Issachar, and one gate for Zebulun.</VERS>\n\t\t\t<VERS vnumber=\"34\"> On the west side, one and one-half miles in length, there will be three gates: one gate for Gad, one gate for Asher, and one gate for Naphtali.</VERS>\n\t\t\t<VERS vnumber=\"35\"> The circumference of the city will be six miles. The name of the city from that day forward will be: 'The LORD Is There.'\"</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"27\" bname=\"Daniel\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> In the third year of the reign of King Jehoiakim of Judah, King Nebuchadnezzar of Babylon advanced against Jerusalem and laid it under siege.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Now the Lord delivered King Jehoiakim of Judah into his power, along with some of the vessels of the temple of God. He brought them to the land of Babylonia to the temple of his god and put the vessels in the treasury of his god.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The king commanded Ashpenaz, who was in charge of his court officials, to choose some of the Israelites who were of royal and noble descent,</VERS>\n\t\t\t<VERS vnumber=\"4\"> young men in whom there was no physical defect and who were handsome, well versed in all kinds of wisdom, well educated and having keen insight, and who were capable of entering the king's royal service, and to teach them the literature and language of the Babylonians.</VERS>\n\t\t\t<VERS vnumber=\"5\"> So the king assigned them a daily ration from his royal delicacies and from the wine he himself drank. They were to be trained for the next three years. At the end of that time they were to enter the king's service.</VERS>\n\t\t\t<VERS vnumber=\"6\"> As it turned out, among these young men were some from Judah: Daniel, Hananiah, Mishael, and Azariah.</VERS>\n\t\t\t<VERS vnumber=\"7\"> But the overseer of the court officials renamed them. He gave Daniel the name Belteshazzar, Hananiah he named Shadrach, Mishael he named Meshach, and Azariah he named Abednego.</VERS>\n\t\t\t<VERS vnumber=\"8\"> But Daniel made up his mind that he would not defile himself with the royal delicacies or the royal wine. He therefore asked the overseer of the court officials for permission not to defile himself. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Then God made the overseer of the court officials sympathetic to Daniel.</VERS>\n\t\t\t<VERS vnumber=\"10\"> But he responded to Daniel, \"I fear my master the king. He is the one who has decided your food and drink. What would happen if he saw that you looked malnourished in comparison to the other young men your age? If that happened, you would endanger my life with the king!\" </VERS>\n\t\t\t<VERS vnumber=\"11\"> Daniel then spoke to the warden whom the overseer of the court officials had appointed over Daniel, Hananiah, Mishael, and Azariah: </VERS>\n\t\t\t<VERS vnumber=\"12\"> \"Please test your servants for ten days by providing us with some vegetables to eat and water to drink.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Then compare our appearance with that of the young men who are eating the royal delicacies; deal with us in light of what you see.\" </VERS>\n\t\t\t<VERS vnumber=\"14\"> So the warden agreed to their proposal and tested them for ten days.</VERS>\n\t\t\t<VERS vnumber=\"15\"> At the end of the ten days their appearance was better and their bodies were healthier than all the young men who had been eating the royal delicacies. </VERS>\n\t\t\t<VERS vnumber=\"16\"> So the warden removed the delicacies and the wine from their diet and gave them a diet of vegetables instead. </VERS>\n\t\t\t<VERS vnumber=\"17\"> Now as for these four young men, God endowed them with knowledge and skill in all sorts of literature and wisdom, and Daniel had insight into all kinds of visions and dreams.</VERS>\n\t\t\t<VERS vnumber=\"18\"> When the time appointed by the king arrived, the overseer of the court officials brought them into Nebuchadnezzar's presence. </VERS>\n\t\t\t<VERS vnumber=\"19\"> When the king spoke with them, he did not find among the entire group anyone like Daniel, Hananiah, Mishael, or Azariah. So they entered the king's service.</VERS>\n\t\t\t<VERS vnumber=\"20\"> In every matter of wisdom and insight the king asked them about, he found them to be ten times better than any of the magicians and astrologers that were in his entire empire. </VERS>\n\t\t\t<VERS vnumber=\"21\"> Now Daniel lived on until the first year of Cyrus the king.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> In the second year of his reign Nebuchadnezzar had many dreams. His mind was disturbed and he suffered from insomnia.</VERS>\n\t\t\t<VERS vnumber=\"2\"> The king issued an order to summon the magicians, astrologers, sorcerers, and wise men in order to explain his dreams to him. So they came and awaited the king's instructions.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The king told them, \"I have had a dream, and I am anxious to understand the dream.\" </VERS>\n\t\t\t<VERS vnumber=\"4\"> The wise men replied to the king: [What follows is in Aramaic] \"O king, live forever! Tell your servants the dream, and we will disclose its interpretation.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> The king replied to the wise men, \"My decision is firm. If you do not inform me of both the dream and its interpretation, you will be dismembered and your homes reduced to rubble! </VERS>\n\t\t\t<VERS vnumber=\"6\"> But if you can disclose the dream and its interpretation, you will receive from me gifts, a reward, and considerable honor. So disclose to me the dream and its interpretation!\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> They again replied, \"Let the king inform us of the dream; then we will disclose its interpretation.\" </VERS>\n\t\t\t<VERS vnumber=\"8\"> The king replied, \"I know for sure that you are attempting to gain time, because you see that my decision is firm.</VERS>\n\t\t\t<VERS vnumber=\"9\"> If you don't inform me of the dream, there is only one thing that is going to happen to you. For you have agreed among yourselves to report to me something false and deceitful until such time as things might change. So tell me the dream, and I will have confidence that you can disclose its interpretation.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> The wise men replied to the king, \"There is no man on earth who is able to disclose the king's secret, for no king, regardless of his position and power, has ever requested such a thing from any magician, astrologer, or wise man. </VERS>\n\t\t\t<VERS vnumber=\"11\"> What the king is asking is too difficult, and no one exists who can disclose it to the king, except for the gods, but they don't live among mortals!\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> Because of this the king got furiously angry and gave orders to destroy all the wise men of Babylon. </VERS>\n\t\t\t<VERS vnumber=\"13\"> So a decree went out, and the wise men were about to be executed. They also sought Daniel and his friends so that they could be executed.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Then Daniel spoke with prudent counsel to Arioch, who was in charge of the king's executioners and who had gone out to execute the wise men of Babylon.</VERS>\n\t\t\t<VERS vnumber=\"15\"> He inquired of Arioch the king's deputy, \"Why is the decree from the king so urgent?\" Then Arioch informed Daniel about the matter. </VERS>\n\t\t\t<VERS vnumber=\"16\"> So Daniel went in and requested the king to grant him time, that he might disclose the interpretation to the king. </VERS>\n\t\t\t<VERS vnumber=\"17\"> Then Daniel went to his home and informed his friends Hananiah, Mishael, and Azariah of the matter.</VERS>\n\t\t\t<VERS vnumber=\"18\"> He asked them to pray for mercy from the God of heaven concerning this mystery so that he and his friends would not be destroyed along with the rest of the wise men of Babylon. </VERS>\n\t\t\t<VERS vnumber=\"19\"> Then in a night vision the mystery was revealed to Daniel. So Daniel praised the God of heaven, </VERS>\n\t\t\t<VERS vnumber=\"20\"> saying, \"Let the name of God be praised forever and ever, for wisdom and power belong to him.</VERS>\n\t\t\t<VERS vnumber=\"21\"> He changes times and seasons, deposing some kings and establishing others. He gives wisdom to the wise; he imparts knowledge to those with understanding;</VERS>\n\t\t\t<VERS vnumber=\"22\"> he reveals deep and hidden things. He knows what is in the darkness, and light resides with him.</VERS>\n\t\t\t<VERS vnumber=\"23\"> O God of my fathers, I acknowledge and glorify you, for you have bestowed wisdom and power on me. Now you have enabled me to understand what I requested from you. For you have enabled me to understand the king's dilemma.\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> Then Daniel went in to see Arioch (whom the king had appointed to destroy the wise men of Babylon). He came and said to him, \"Don't destroy the wise men of Babylon! Escort me to the king, and I will disclose the interpretation to him!\"</VERS>\n\t\t\t<VERS vnumber=\"25\"> So Arioch quickly ushered Daniel into the king's presence, saying to him, \"I have found a man from the captives of Judah who can make known the interpretation to the king.\" </VERS>\n\t\t\t<VERS vnumber=\"26\"> The king then asked Daniel (whose name was also Belteshazzar), \"Are you able to make known to me the dream that I saw, as well as its interpretation?\"</VERS>\n\t\t\t<VERS vnumber=\"27\"> Daniel replied to the king, \"The mystery that the king is asking about is such that no wise men, astrologers, magicians, or diviners can possibly disclose it to the king.</VERS>\n\t\t\t<VERS vnumber=\"28\"> However, there is a God in heaven who reveals mysteries, and he has made known to King Nebuchadnezzar what will happen in the times to come. The dream and the visions you had while lying on your bed are as follows.</VERS>\n\t\t\t<VERS vnumber=\"29\"> \"As for you, O king, while you were in your bed your thoughts turned to future things. The revealer of mysteries has made known to you what will take place. </VERS>\n\t\t\t<VERS vnumber=\"30\"> As for me, this mystery was revealed to me not because I possess more wisdom than any other living person, but so that the king may understand the interpretation and comprehend the thoughts of your mind.</VERS>\n\t\t\t<VERS vnumber=\"31\"> \"You, O king, were watching as a great statue, one of impressive size and extraordinary brightness, was standing before you. Its appearance caused alarm.</VERS>\n\t\t\t<VERS vnumber=\"32\"> As for that statue, its head was of fine gold, its chest and arms were of silver, its belly and thighs were of bronze.</VERS>\n\t\t\t<VERS vnumber=\"33\"> Its legs were of iron; its feet were partly of iron and partly of clay.</VERS>\n\t\t\t<VERS vnumber=\"34\"> You were watching as a stone was cut out, but not by human hands. It struck the statue on its iron and clay feet, breaking them in pieces. </VERS>\n\t\t\t<VERS vnumber=\"35\"> Then the iron, clay, bronze, silver, and gold were broken in pieces without distinction and became like chaff from the summer threshing floors that the wind carries away. Not a trace of them could be found. But the stone that struck the statue became a large mountain that filled the entire earth. </VERS>\n\t\t\t<VERS vnumber=\"36\"> This was the dream. Now we will set forth before the king its interpretation.</VERS>\n\t\t\t<VERS vnumber=\"37\"> \"You, O king, are the king of kings. The God of heaven has granted you sovereignty, power, strength, and honor.</VERS>\n\t\t\t<VERS vnumber=\"38\"> Wherever human beings, wild animals, and birds of the sky live, he has given them into your power. He has given you authority over them all. You are the head of gold.</VERS>\n\t\t\t<VERS vnumber=\"39\"> Now after you another kingdom will arise, one inferior to yours. Then a third kingdom, one of bronze, will rule in all the earth. </VERS>\n\t\t\t<VERS vnumber=\"40\"> Then there will be a fourth kingdom, one strong like iron. Just like iron breaks in pieces and shatters everything, and as iron breaks in pieces all of these metals, so it will break in pieces and crush the others.</VERS>\n\t\t\t<VERS vnumber=\"41\"> In that you were seeing feet and toes partly of wet clay and partly of iron, so this will be a divided kingdom. Some of the strength of iron will be in it, for you saw iron mixed with wet clay.</VERS>\n\t\t\t<VERS vnumber=\"42\"> In that the toes of the feet were partly of iron and partly of clay, the latter stages of this kingdom will be partly strong and partly fragile.</VERS>\n\t\t\t<VERS vnumber=\"43\"> And in that you saw iron mixed with wet clay, so people will be mixed with one another without adhering to one another, just as iron does not mix with clay. </VERS>\n\t\t\t<VERS vnumber=\"44\"> In the days of those kings the God of heaven will raise up an everlasting kingdom that will not be destroyed and a kingdom that will not be left to another people. It will break in pieces and bring about the demise of all these kingdoms. But it will stand forever.</VERS>\n\t\t\t<VERS vnumber=\"45\"> You saw that a stone was cut from a mountain, but not by human hands; it smashed the iron, bronze, clay, silver, and gold into pieces. The great God has made known to the king what will occur in the future. The dream is certain, and its interpretation is reliable.\"</VERS>\n\t\t\t<VERS vnumber=\"46\"> Then King Nebuchadnezzar bowed down with his face to the ground and paid homage to Daniel. He gave orders to offer sacrifice and incense to him. </VERS>\n\t\t\t<VERS vnumber=\"47\"> The king replied to Daniel, \"Certainly your God is a God of gods and Lord of kings and revealer of mysteries, for you were able to reveal this mystery!\"</VERS>\n\t\t\t<VERS vnumber=\"48\"> Then the king elevated Daniel to high position and bestowed on him many marvelous gifts. He granted him authority over the entire province of Babylon and made him the main prefect over all the wise men of Babylon.</VERS>\n\t\t\t<VERS vnumber=\"49\"> And at Daniel's request, the king appointed Shadrach, Meshach, and Abednego over the administration of the province of Babylon. Daniel himself served in the king's court.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\">  King Nebuchadnezzar had a golden statue made. It was ninety feet tall and nine feet wide. He erected it on the plain of Dura in the province of Babylon. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Then King Nebuchadnezzar sent out a summons to assemble the satraps, prefects, governors, counselors, treasurers, judges, magistrates, and all the other authorities of the province to attend the dedication of the statue that he had erected. </VERS>\n\t\t\t<VERS vnumber=\"3\"> So the satraps, prefects, governors, counselors, treasurers, judges, magistrates, and all the other provincial authorities assembled for the dedication of the statue that King Nebuchadnezzar had erected. They were standing in front of the statue that Nebuchadnezzar had erected.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Then the herald made a loud proclamation: \"To you, O peoples, nations, and language groups, the following command is given:</VERS>\n\t\t\t<VERS vnumber=\"5\"> When you hear the sound of the horn, flute, zither, trigon, harp, pipes, and all kinds of music, you must bow down and pay homage to the golden statue that King Nebuchadnezzar has erected. </VERS>\n\t\t\t<VERS vnumber=\"6\"> Whoever does not bow down and pay homage will immediately be thrown into the midst of a furnace of blazing fire!\" </VERS>\n\t\t\t<VERS vnumber=\"7\"> Therefore when they all heard the sound of the horn, flute, zither, trigon, harp, pipes, and all kinds of music, all the peoples, nations, and language groups began bowing down and paying homage to the golden statue that King Nebuchadnezzar had erected.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Now at that time certain Chaldeans came forward and brought malicious accusations against the Jews. </VERS>\n\t\t\t<VERS vnumber=\"9\"> They said to King Nebuchadnezzar, \"O king, live forever!</VERS>\n\t\t\t<VERS vnumber=\"10\"> You have issued an edict, O king, that everyone must bow down and pay homage to the golden statue when they hear the sound of the horn, flute, zither, trigon, harp, pipes, and all kinds of music.</VERS>\n\t\t\t<VERS vnumber=\"11\"> And whoever does not bow down and pay homage must be thrown into the midst of a furnace of blazing fire.</VERS>\n\t\t\t<VERS vnumber=\"12\"> But there are Jewish men whom you appointed over the administration of the province of Babylon, Shadrach, Meshach, and Abednego, and these men have not shown proper respect to you, O king. They don't serve your gods and they don't pay homage to the golden statue that you have erected.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> Then Nebuchadnezzar in a fit of rage demanded that they bring Shadrach, Meshach, and Abednego before him. So they brought them before the king. </VERS>\n\t\t\t<VERS vnumber=\"14\"> Nebuchadnezzar said to them, \"Is it true, Shadrach, Meshach, and Abednego, that you don't serve my gods and that you don't pay homage to the golden statue that I erected?</VERS>\n\t\t\t<VERS vnumber=\"15\"> Now if you are ready, when you hear the sound of the horn, flute, zither, trigon, harp, pipes, and all kinds of music, you must bow down and pay homage to the statue that I had made. If you don't pay homage to it, you will immediately be thrown into the midst of the furnace of blazing fire. Now, who is that god who can rescue you from my power?\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> Shadrach, Meshach, and Abednego replied to King Nebuchadnezzar, \"We do not need to give you a reply concerning this. </VERS>\n\t\t\t<VERS vnumber=\"17\"> If our God whom we are serving exists, he is able to rescue us from the furnace of blazing fire, and he will rescue us, O king, from your power as well. </VERS>\n\t\t\t<VERS vnumber=\"18\"> But if not, let it be known to you, O king, that we don't serve your gods, and we will not pay homage to the golden statue that you have erected.\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> Then Nebuchadnezzar was filled with rage, and his disposition changed toward Shadrach, Meshach, and Abednego. He gave orders to heat the furnace seven times hotter than it was normally heated. </VERS>\n\t\t\t<VERS vnumber=\"20\"> He ordered strong soldiers in his army to tie up Shadrach, Meshach, and Abednego and to throw them into the furnace of blazing fire. </VERS>\n\t\t\t<VERS vnumber=\"21\"> So those men were tied up while still wearing their cloaks, trousers, turbans, and other clothes, and were thrown into the furnace of blazing fire. </VERS>\n\t\t\t<VERS vnumber=\"22\"> But since the king's command was so urgent, and the furnace was so excessively hot, the men who escorted Shadrach, Meshach, and Abednego were killed by the leaping flames.</VERS>\n\t\t\t<VERS vnumber=\"23\"> But those three men, Shadrach, Meshach, and Abednego, fell into the furnace of blazing fire while still securely bound.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Then King Nebuchadnezzar was startled and quickly got up. He said to his ministers, \"Wasn't it three men that we tied up and threw into the fire?\" They replied to the king, \"For sure, O king.\" </VERS>\n\t\t\t<VERS vnumber=\"25\"> He answered, \"But I see four men, untied and walking around in the midst of the fire! No harm has come to them! And the appearance of the fourth is like that of a god!\"</VERS>\n\t\t\t<VERS vnumber=\"26\"> Then Nebuchadnezzar approached the door of the furnace of blazing fire. He called out, \"Shadrach, Meshach, and Abednego, servants of the most high God, come out! Come here!\" Then Shadrach, Meshach, and Abednego emerged from the fire.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Once the satraps, prefects, governors, and ministers of the king had gathered around, they saw that those men were physically unharmed by the fire. The hair of their heads was not singed, nor were their trousers damaged. Not even the smell of fire was to be found on them!</VERS>\n\t\t\t<VERS vnumber=\"28\"> Nebuchadnezzar exclaimed, \"Praised be the God of Shadrach, Meshach, and Abednego, who has sent forth his angel and has rescued his servants who trusted in him, ignoring the edict of the king and giving up their bodies rather than serve or pay homage to any god other than their God! </VERS>\n\t\t\t<VERS vnumber=\"29\"> I hereby decree that any people, nation, or language group that blasphemes the god of Shadrach, Meshach, or Abednego will be dismembered and his home reduced to rubble! For there exists no other god who can deliver in this way.\" </VERS>\n\t\t\t<VERS vnumber=\"30\"> Then Nebuchadnezzar promoted Shadrach, Meshach, and Abednego in the province of Babylon.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\">  \"King Nebuchadnezzar, to all peoples, nations, and language groups that live in all the land: Peace and prosperity!</VERS>\n\t\t\t<VERS vnumber=\"2\"> I am delighted to tell you about the signs and wonders that the most high God has done for me.</VERS>\n\t\t\t<VERS vnumber=\"3\"> \"How great are his signs! How mighty are his wonders! His kingdom will last forever, and his authority continues from one generation to the next.\"</VERS>\n\t\t\t<VERS vnumber=\"4\">  I, Nebuchadnezzar, was relaxing in my home, living luxuriously in my palace. </VERS>\n\t\t\t<VERS vnumber=\"5\"> I saw a dream that frightened me badly. The things I imagined while lying on my bed, these visions of my mind, were terrifying me.</VERS>\n\t\t\t<VERS vnumber=\"6\"> So I issued an order for all the wise men of Babylon to be brought before me so that they could make known to me the interpretation of the dream.</VERS>\n\t\t\t<VERS vnumber=\"7\"> When the magicians, astrologers, wise men, and diviners entered, I recounted the dream for them. But they were unable to make known its interpretation to me.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Later Daniel entered (whose name is Belteshazzar after the name of my god, and in whom there is a spirit of the holy gods). I recounted the dream for him as well, </VERS>\n\t\t\t<VERS vnumber=\"9\"> saying, \"Belteshazzar, chief of the magicians, in whom I know there to be a spirit of the holy gods and whom no mystery baffles, consider my dream that I saw and set forth its interpretation! </VERS>\n\t\t\t<VERS vnumber=\"10\"> Here are the visions of my mind while I was on my bed. While I was watching, there was a tree in the middle of the land. It was enormously tall.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The tree grew large and strong. Its top reached far into the sky; it could be seen from the borders of all the land.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Its foliage was attractive and its fruit plentiful; on it there was food enough for all. Under it the wild animals used to seek shade, and in its branches the birds of the sky used to nest. All creatures used to feed themselves from it.</VERS>\n\t\t\t<VERS vnumber=\"13\"> While I was watching in my mind's visions on my bed, a holy sentinel came down from heaven.</VERS>\n\t\t\t<VERS vnumber=\"14\"> He called out loudly as follows: 'Chop down the tree and lop off its branches! Strip off its foliage and scatter its fruit! Let the animals flee from under it and the birds from its branches!</VERS>\n\t\t\t<VERS vnumber=\"15\"> But leave its taproot in the ground, with a band of iron and bronze around it surrounded by the grass of the field. Let it become damp with the dew of the sky, and let it live with the animals in the grass of the land.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Let his mind be altered from that of a human being, and let an animal's mind be given to him, and let seven periods of time go by for him.</VERS>\n\t\t\t<VERS vnumber=\"17\"> This announcement is by the decree of the sentinels; this decision is by the pronouncement of the holy ones, so that those who are alive may understand that the Most High has authority over human kingdoms, and he bestows them on whomever he wishes. He establishes over them even the lowliest of human beings.'</VERS>\n\t\t\t<VERS vnumber=\"18\"> \"This is the dream that I, King Nebuchadnezzar, saw. Now you, Belteshazzar, declare its interpretation, for none of the wise men in my kingdom are able to make known to me the interpretation. But you can do so, for a spirit of the holy gods is in you.\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> Then Daniel (whose name is also Belteshazzar) was upset for a brief time; his thoughts were alarming him. The king said, \"Belteshazzar, don't let the dream and its interpretation alarm you.\" But Belteshazzar replied, \"Sir, if only the dream were for your enemies and its interpretation applied to your adversaries! </VERS>\n\t\t\t<VERS vnumber=\"20\"> The tree that you saw that grew large and strong, whose top reached to the sky, and which could be seen in all the land, </VERS>\n\t\t\t<VERS vnumber=\"21\"> whose foliage was attractive and its fruit plentiful, and from which there was food available for all, under whose branches wild animals used to live, and in whose branches birds of the sky used to nest,</VERS>\n\t\t\t<VERS vnumber=\"22\"> it is you, O king! For you have become great and strong. Your greatness is such that it reaches to heaven, and your authority to the ends of the earth. </VERS>\n\t\t\t<VERS vnumber=\"23\"> As for the king seeing a holy sentinel coming down from heaven and saying, 'Chop down the tree and destroy it, but leave its taproot in the ground, with a band of iron and bronze around it, surrounded by the grass of the field. Let it become damp with the dew of the sky, and let it live with the wild animals, until seven periods of time go by for him',</VERS>\n\t\t\t<VERS vnumber=\"24\"> this is the interpretation, O king! It is the decision of the Most High that this has happened to my lord the king.</VERS>\n\t\t\t<VERS vnumber=\"25\"> You will be driven from human society, and you will live with the wild animals. You will be fed grass like oxen, and you will become damp with the dew of the sky. Seven periods of time will pass by for you, before you understand that the Most High is ruler over human kingdoms and gives them to whomever he wishes. </VERS>\n\t\t\t<VERS vnumber=\"26\"> They said to leave the taproot of the tree, for your kingdom will be restored to you when you come to understand that heaven rules. </VERS>\n\t\t\t<VERS vnumber=\"27\"> Therefore, O king, may my advice be pleasing to you. Break away from your sins by doing what is right, and from your iniquities by showing mercy to the poor. Perhaps your prosperity will be prolonged.\"</VERS>\n\t\t\t<VERS vnumber=\"28\"> Now all of this happened to King Nebuchadnezzar. </VERS>\n\t\t\t<VERS vnumber=\"29\"> After twelve months, he happened to be walking around on the battlements of the royal palace of Babylon. </VERS>\n\t\t\t<VERS vnumber=\"30\"> The king uttered these words: \"Is this not the great Babylon that I have built for a royal residence by my own mighty strength and for my majestic honor?\"</VERS>\n\t\t\t<VERS vnumber=\"31\"> While these words were still on the king's lips, a voice came down from heaven: \"It is hereby announced to you, King Nebuchadnezzar, that your kingdom has been removed from you! </VERS>\n\t\t\t<VERS vnumber=\"32\"> You will be driven from human society, and you will live with the wild animals. You will be fed grass like oxen, and seven periods of time will pass by for you before you understand that the Most High is ruler over human kingdoms and gives them to whomever he wishes.\"</VERS>\n\t\t\t<VERS vnumber=\"33\"> Now in that very moment this pronouncement about Nebuchadnezzar came true. He was driven from human society, he ate grass like oxen, and his body became damp with the dew of the sky, until his hair became long like an eagle's feathers, and his nails like a bird's claws.</VERS>\n\t\t\t<VERS vnumber=\"34\"> But at the end of the appointed time I, Nebuchadnezzar, looked up toward heaven, and my sanity returned to me. I extolled the Most High, and I praised and glorified the one who lives forever. For his authority is an everlasting authority, and his kingdom extends from one generation to the next.</VERS>\n\t\t\t<VERS vnumber=\"35\"> All the inhabitants of the earth are regarded as nothing. He does as he wishes with the army of heaven and with those who inhabit the earth. No one slaps his hand and says to him, 'What have you done?'</VERS>\n\t\t\t<VERS vnumber=\"36\"> At that time my sanity returned to me. I was restored to the honor of my kingdom, and my splendor returned to me. My ministers and my nobles were seeking me out, and I was reinstated over my kingdom. I became even greater than before. </VERS>\n\t\t\t<VERS vnumber=\"37\"> Now I, Nebuchadnezzar, praise and exalt and glorify the King of heaven, for all his deeds are right and his ways are just. He is able to bring down those who live in pride.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"5\">\n\t\t\t<VERS vnumber=\"1\"> King Belshazzar prepared a great banquet for a thousand of his nobles, and he was drinking wine in front of them all.</VERS>\n\t\t\t<VERS vnumber=\"2\"> While under the influence of the wine, Belshazzar issued an order to bring in the gold and silver vessels, the ones that Nebuchadnezzar his father had confiscated from the temple in Jerusalem, so that the king and his nobles, together with his wives and his concubines, could drink from them.</VERS>\n\t\t\t<VERS vnumber=\"3\"> So they brought the gold and silver vessels that had been confiscated from the temple, the house of God in Jerusalem, and the king and his nobles, together with his wives and concubines, drank from them. </VERS>\n\t\t\t<VERS vnumber=\"4\"> As they drank wine, they praised the gods of gold and silver, bronze, iron, wood, and stone.</VERS>\n\t\t\t<VERS vnumber=\"5\"> At that very moment the fingers of a human hand appeared and wrote on the plaster of the royal palace wall, opposite the lampstand. The king was watching the back of the hand that was writing. </VERS>\n\t\t\t<VERS vnumber=\"6\"> Then all the color drained from the king's face and he became alarmed. The joints of his hips gave way, and his knees began knocking together. </VERS>\n\t\t\t<VERS vnumber=\"7\"> The king called out loudly to summon the astrologers, wise men, and diviners. The king proclaimed to the wise men of Babylon that anyone who could read this inscription and disclose its interpretation would be clothed in purple and have a golden collar placed on his neck and be third ruler in the kingdom.</VERS>\n\t\t\t<VERS vnumber=\"8\"> So all the king's wise men came in, but they were unable to read the writing or to make known its interpretation to the king. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Then King Belshazzar was very terrified, and he was visibly shaken. His nobles were completely dumbfounded.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Due to the noise caused by the king and his nobles, the queen mother then entered the banquet room. She said, \"O king, live forever! Don't be alarmed! Don't be shaken! </VERS>\n\t\t\t<VERS vnumber=\"11\"> There is a man in your kingdom who has within him a spirit of the holy gods. In the days of your father, he proved to have insight, discernment, and wisdom like that of the gods. King Nebuchadnezzar your father appointed him chief of the magicians, astrologers, wise men, and diviners.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Thus there was found in this man Daniel, whom the king renamed Belteshazzar, an extraordinary spirit, knowledge, and skill to interpret dreams, solve riddles, and decipher knotty problems. Now summon Daniel, and he will disclose the interpretation.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> So Daniel was brought in before the king. The king said to Daniel, \"Are you that Daniel who is one of the captives of Judah, whom my father the king brought from Judah?</VERS>\n\t\t\t<VERS vnumber=\"14\"> I have heard about you, how there is a spirit of the gods in you, and how you have insight, discernment, and extraordinary wisdom. </VERS>\n\t\t\t<VERS vnumber=\"15\"> Now the wise men and astrologers were brought before me to read this writing and make known to me its interpretation. But they were unable to disclose the interpretation of the message.</VERS>\n\t\t\t<VERS vnumber=\"16\"> However, I have heard that you are able to provide interpretations and to decipher knotty problems. Now if you are able to read this writing and make known to me its interpretation, you will wear purple and have a golden collar around your neck and be third ruler in the kingdom.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> But Daniel replied to the king, \"Keep your gifts, and give your rewards to someone else! However, I will read the writing for the king and make known its interpretation. </VERS>\n\t\t\t<VERS vnumber=\"18\"> As for you, O king, the most high God bestowed on your father Nebuchadnezzar a kingdom, greatness, honor, and majesty.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Due to the greatness that he bestowed on him, all peoples, nations, and language groups were trembling with fear before him. He killed whom he wished, he spared whom he wished, he exalted whom he wished, and he brought low whom he wished. </VERS>\n\t\t\t<VERS vnumber=\"20\"> And when his mind became arrogant and his spirit filled with pride, he was deposed from his royal throne and his honor was removed from him. </VERS>\n\t\t\t<VERS vnumber=\"21\"> He was driven from human society, his mind was changed to that of an animal, he lived with the wild donkeys, he was fed grass like oxen, and his body became damp with the dew of the sky, until he came to understand that the most high God rules over human kingdoms, and he appoints over them whomever he wishes.</VERS>\n\t\t\t<VERS vnumber=\"22\"> \"But you, his son Belshazzar, have not humbled yourself, although you knew all this. </VERS>\n\t\t\t<VERS vnumber=\"23\"> Instead, you have exalted yourself against the Lord of heaven. You brought before you the vessels from his temple, and you and your nobles, together with your wives and concubines, drank wine from them. You praised the gods of silver, gold, bronze, iron, wood, and stone, gods that cannot see or hear or comprehend! But you have not glorified the God who has in his control your very breath and all your ways!</VERS>\n\t\t\t<VERS vnumber=\"24\"> Therefore the palm of a hand was sent from him, and this writing was inscribed.</VERS>\n\t\t\t<VERS vnumber=\"25\"> \"This is the writing that was inscribed: MENE, MENE, TEQEL, and PHARSIN.</VERS>\n\t\t\t<VERS vnumber=\"26\"> This is the interpretation of the words: As for mene, God has numbered your kingdom's days and brought it to an end.</VERS>\n\t\t\t<VERS vnumber=\"27\"> As for teqel, you are weighed on the balances and found to be lacking.</VERS>\n\t\t\t<VERS vnumber=\"28\"> As for peres, your kingdom is divided and given over to the Medes and Persians.\"</VERS>\n\t\t\t<VERS vnumber=\"29\"> Then, on Belshazzar's orders, Daniel was clothed in purple, a golden collar was placed around his neck, and he was proclaimed third ruler in the kingdom. </VERS>\n\t\t\t<VERS vnumber=\"30\"> And in that very night Belshazzar, the Babylonian king, was killed.</VERS>\n\t\t\t<VERS vnumber=\"31\">  So Darius the Mede took control of the kingdom when he was about sixty-two years old.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"6\">\n\t\t\t<VERS vnumber=\"1\"> It seemed like a good idea to Darius to appoint over the kingdom 120 satraps who would be in charge of the entire kingdom. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Over them would be three supervisors, one of whom was Daniel. These satraps were accountable to them, so that the king's interests might not incur damage. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Now this Daniel was distinguishing himself above the other supervisors and the satraps, for he had an extraordinary spirit. In fact, the king intended to appoint him over the entire kingdom.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Consequently the supervisors and satraps were trying to find some pretext against Daniel in connection with administrative matters. But they were unable to find any such damaging evidence, because he was trustworthy and guilty of no negligence or corruption.</VERS>\n\t\t\t<VERS vnumber=\"5\"> So these men concluded, \"We won't find any pretext against this man Daniel unless it is in connection with the law of his God.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> So these supervisors and satraps came by collusion to the king and said to him, \"O King Darius, live forever! </VERS>\n\t\t\t<VERS vnumber=\"7\"> To all the supervisors of the kingdom, the prefects, satraps, counselors, and governors it seemed like a good idea for a royal edict to be issued and an interdict to be enforced. For the next thirty days anyone who prays to any god or human other than you, O king, should be thrown into a den of lions. </VERS>\n\t\t\t<VERS vnumber=\"8\"> Now let the king issue a written interdict so that it cannot be altered, according to the law of the Medes and Persians, which cannot be changed.</VERS>\n\t\t\t<VERS vnumber=\"9\"> So King Darius issued the written interdict.</VERS>\n\t\t\t<VERS vnumber=\"10\"> When Daniel realized that a written decree had been issued, he entered his home, where the windows in his upper room opened toward Jerusalem. Three times daily he was kneeling and offering prayers and thanks to his God just as he had been accustomed to do previously. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Then those officials who had gone to the king came by collusion and found Daniel praying and asking for help before his God. </VERS>\n\t\t\t<VERS vnumber=\"12\"> So they approached the king and said to him, \"Did you not issue an edict to the effect that for the next thirty days anyone who prays to any god or human other than to you, O king, would be thrown into a den of lions?\" The king replied, \"That is correct, according to the law of the Medes and Persians, which cannot be changed.\" </VERS>\n\t\t\t<VERS vnumber=\"13\"> Then they said to the king, \"Daniel, who is one of the captives from Judah, pays no attention to you, O king, or to the edict that you issued. Three times daily he offers his prayer.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> When the king heard this, he was very upset and began thinking about how he might rescue Daniel. Until late afternoon he was struggling to find a way to rescue him. </VERS>\n\t\t\t<VERS vnumber=\"15\"> Then those men came by collusion to the king and said to him, \"Recall, O king, that it is a law of the Medes and Persians that no edict or decree that the king issues can be changed.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> So the king gave the order, and Daniel was brought and thrown into a den of lions. The king consoled Daniel by saying, \"Your God whom you continually serve will rescue you!\" </VERS>\n\t\t\t<VERS vnumber=\"17\"> Then a stone was brought and placed over the opening to the den. The king sealed it with his signet ring and with those of his nobles so that nothing could be changed with regard to Daniel. </VERS>\n\t\t\t<VERS vnumber=\"18\"> Then the king departed to his palace. But he spent the night without eating, and no diversions were brought to him. He was unable to sleep.</VERS>\n\t\t\t<VERS vnumber=\"19\"> In the morning, at the earliest sign of daylight, the king got up and rushed to the lions' den.</VERS>\n\t\t\t<VERS vnumber=\"20\"> As he approached the den, he called out to Daniel in a worried voice, \"Daniel, servant of the living God, was your God whom you continually serve able to rescue you from the lions?\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> Then Daniel spoke to the king, \"O king, live forever! </VERS>\n\t\t\t<VERS vnumber=\"22\"> My God sent his angel and closed the lions' mouths so that they have not harmed me, because I was found to be innocent before him. Nor have I done any harm to you, O king.\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> Then the king was delighted and gave an order to haul Daniel up from the den. So Daniel was hauled up out of the den. He had no injury of any kind, because he had trusted in his God.</VERS>\n\t\t\t<VERS vnumber=\"24\"> The king gave another order, and those men who had maliciously accused Daniel were brought and thrown into the lions' den, they, their children, and their wives. They did not even reach the bottom of the den before the lions overpowered them and crushed all their bones.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Then King Darius wrote to all the peoples, nations, and language groups who were living in all the land: \"Peace and prosperity!</VERS>\n\t\t\t<VERS vnumber=\"26\"> I have issued an edict that throughout all the dominion of my kingdom people are to revere and fear the God of Daniel. \"For he is the living God; he endures forever. His kingdom will not be destroyed; his authority is forever.</VERS>\n\t\t\t<VERS vnumber=\"27\"> He rescues and delivers and performs signs and wonders in the heavens and on the earth. He has rescued Daniel from the power of the lions!\"</VERS>\n\t\t\t<VERS vnumber=\"28\"> So this Daniel prospered during the reign of Darius and the reign of Cyrus the Persian.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"7\">\n\t\t\t<VERS vnumber=\"1\"> In the first year of King Belshazzar of Babylon, Daniel had a dream filled with visions while he was lying on his bed. Then he wrote down the dream in summary fashion.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Daniel explained: \"I was watching in my vision during the night as the four winds of the sky were stirring up the great sea.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Then four large beasts came up from the sea; they were different from one another.</VERS>\n\t\t\t<VERS vnumber=\"4\"> \"The first one was like a lion with eagles' wings. As I watched, its wings were pulled off and it was lifted up from the ground. It was made to stand on two feet like a human being, and a human mind was given to it.</VERS>\n\t\t\t<VERS vnumber=\"5\"> \"Then a second beast appeared, like a bear. It was raised up on one side, and there were three ribs in its mouth between its teeth. It was told, 'Get up and devour much flesh!'</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"After these things, as I was watching, another beast like a leopard appeared, with four bird-like wings on its back. This beast had four heads, and ruling authority was given to it.</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"After these things, as I was watching in the night visions a fourth beast appeared, one dreadful, terrible, and very strong. It had two large rows of iron teeth. It devoured and crushed, and anything that was left it trampled with its feet. It was different from all the beasts that came before it, and it had ten horns.</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"As I was contemplating the horns, another horn, a small one, came up between them, and three of the former horns were torn out by the roots to make room for it. This horn had eyes resembling human eyes and a mouth speaking arrogant things.</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"While I was watching, thrones were set up, and the Ancient of Days took his seat. His attire was white like snow; the hair of his head was like lamb's wool. His throne was ablaze with fire and its wheels were all aflame.</VERS>\n\t\t\t<VERS vnumber=\"10\"> A river of fire was streaming forth and proceeding from his presence. Many thousands were ministering to him; Many tens of thousands stood ready to serve him. The court convened and the books were opened.</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"Then I kept on watching because of the arrogant words of the horn that was speaking. I was watching until the beast was killed and its body destroyed and thrown into the flaming fire. </VERS>\n\t\t\t<VERS vnumber=\"12\"> As for the rest of the beasts, their ruling authority had already been removed, though they were permitted to go on living for a time and a season. </VERS>\n\t\t\t<VERS vnumber=\"13\"> I was watching in the night visions, \"And with the clouds of the sky one like a son of man was approaching. He went up to the Ancient of Days and was escorted before him.</VERS>\n\t\t\t<VERS vnumber=\"14\"> To him was given ruling authority, honor, and sovereignty. All peoples, nations, and language groups were serving him. His authority is eternal and will not pass away. His kingdom will not be destroyed.</VERS>\n\t\t\t<VERS vnumber=\"15\"> \"As for me, Daniel, my spirit was distressed, and the visions of my mind were alarming me. </VERS>\n\t\t\t<VERS vnumber=\"16\"> I approached one of those standing nearby and asked him about the meaning of all this. So he spoke with me and revealed to me the interpretation of the vision:</VERS>\n\t\t\t<VERS vnumber=\"17\"> 'These large beasts, which are four in number, represent four kings who will arise from the earth.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The holy ones of the Most High will receive the kingdom and will take possession of the kingdom forever and ever.'</VERS>\n\t\t\t<VERS vnumber=\"19\"> \"Then I wanted to know the meaning of the fourth beast, which was different from all the others. It was very dreadful, with two rows of iron teeth and bronze claws, and it devoured, crushed, and trampled anything that was left with its feet.</VERS>\n\t\t\t<VERS vnumber=\"20\"> I also wanted to know the meaning of the ten horns on its head, and of that other horn which came up and before which three others fell. This was the horn that had eyes and a mouth speaking arrogant things, whose appearance was more formidable than the others.</VERS>\n\t\t\t<VERS vnumber=\"21\"> While I was watching, that horn began to wage war against the holy ones and was defeating them, </VERS>\n\t\t\t<VERS vnumber=\"22\"> until the Ancient of Days arrived and judgment was rendered in favor of the holy ones of the Most High. Then the time came for the holy ones to take possession of the kingdom.</VERS>\n\t\t\t<VERS vnumber=\"23\"> \"This is what he told me: 'The fourth beast means that there will be a fourth kingdom on earth that will differ from all the other kingdoms. It will devour all the earth and will trample and crush it.</VERS>\n\t\t\t<VERS vnumber=\"24\"> The ten horns mean that ten kings will arise from that kingdom. Another king will arise after them, but he will be different from the earlier ones. He will humiliate three kings.</VERS>\n\t\t\t<VERS vnumber=\"25\"> He will speak words against the Most High. He will harass the holy ones of the Most High continually. His intention will be to change times established by law. They will be delivered into his hand For a time, times, and half a time.</VERS>\n\t\t\t<VERS vnumber=\"26\"> But the court will convene, and his ruling authority will be removed, destroyed and abolished forever!</VERS>\n\t\t\t<VERS vnumber=\"27\"> Then the kingdom, authority, and greatness of the kingdoms under all of heaven will be delivered to the people of the holy ones of the Most High. His kingdom is an eternal kingdom; all authorities will serve him and obey him.'</VERS>\n\t\t\t<VERS vnumber=\"28\"> \"This is the conclusion of the matter. As for me, Daniel, my thoughts troubled me greatly, and the color drained from my face. But I kept the matter to myself.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"8\">\n\t\t\t<VERS vnumber=\"1\">  In the third year of King Belshazzar's reign, a vision appeared to me, Daniel, after the one that had appeared to me previously.</VERS>\n\t\t\t<VERS vnumber=\"2\"> In this vision I saw myself in Susa the citadel, which is located in the province of Elam. In the vision I saw myself at the Ulai Canal.</VERS>\n\t\t\t<VERS vnumber=\"3\"> I looked up and saw a ram with two horns standing at the canal. Its two horns were both long, but one was longer than the other. The longer one was coming up after the shorter one. </VERS>\n\t\t\t<VERS vnumber=\"4\"> I saw that the ram was butting westward, northward, and southward. No animal was able to stand before it, and there was none who could deliver from its power. It did as it pleased and acted arrogantly.</VERS>\n\t\t\t<VERS vnumber=\"5\"> While I was contemplating all this, a male goat was coming from the west over the surface of all the land without touching the ground. This goat had a conspicuous horn between its eyes. </VERS>\n\t\t\t<VERS vnumber=\"6\"> It came to the two-horned ram that I had seen standing beside the canal and rushed against it with raging strength.</VERS>\n\t\t\t<VERS vnumber=\"7\"> I saw it approaching the ram. It went into a fit of rage against the ram and struck it and broke off its two horns. The ram had no ability to resist it. The goat hurled the ram to the ground and trampled it. No one could deliver the ram from its power.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The male goat acted even more arrogantly. But no sooner had the large horn become strong than it was broken, and there arose four conspicuous horns in its place, extending toward the four winds of the sky.</VERS>\n\t\t\t<VERS vnumber=\"9\"> From one of them came a small horn. But it grew to be very big, toward the south and the east and toward the beautiful land.</VERS>\n\t\t\t<VERS vnumber=\"10\"> It grew so big it reached the army of heaven, and it brought about the fall of some of the army and some of the stars to the ground, where it trampled them. </VERS>\n\t\t\t<VERS vnumber=\"11\"> It also acted arrogantly against the Prince of the army, from whom the daily sacrifice was removed and whose sanctuary was thrown down. </VERS>\n\t\t\t<VERS vnumber=\"12\"> The army was given over, along with the daily sacrifice, in the course of his sinful rebellion. It hurled truth to the ground and enjoyed success.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Then I heard a holy one speaking. Another holy one said to the one who was speaking, \"To what period of time does the vision pertain, this vision concerning the daily sacrifice and the destructive act of rebellion and the giving over of both the sanctuary and army to be trampled?\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> He said to me, \"To 2,300 evenings and mornings; then the sanctuary will be put right again.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> While I, Daniel, was watching the vision, I sought to understand it. Now one who appeared to be a man was standing before me.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Then I heard a human voice coming from between the banks of the Ulai. It called out, \"Gabriel, enable this person to understand the vision.\" </VERS>\n\t\t\t<VERS vnumber=\"17\"> So he approached the place where I was standing. As he came, I felt terrified and fell flat on the ground. Then he said to me, \"Understand, son of man, that the vision pertains to the time of the end.\" </VERS>\n\t\t\t<VERS vnumber=\"18\"> As he spoke with me, I fell into a trance with my face to the ground. But he touched me and stood me upright.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Then he said, \"I am going to inform you about what will happen in the latter time of wrath, for the vision pertains to the appointed time of the end. </VERS>\n\t\t\t<VERS vnumber=\"20\"> The ram that you saw with the two horns stands for the kings of Media and Persia.</VERS>\n\t\t\t<VERS vnumber=\"21\"> The male goat is the king of Greece, and the large horn between its eyes is the first king. </VERS>\n\t\t\t<VERS vnumber=\"22\"> The horn that was broken and in whose place there arose four others stands for four kingdoms that will arise from his nation, though they will not have his strength. </VERS>\n\t\t\t<VERS vnumber=\"23\"> Toward the end of their rule, when rebellious acts are complete, a rash and deceitful king will arise.</VERS>\n\t\t\t<VERS vnumber=\"24\"> His power will be great, but it will not be by his strength alone. He will cause terrible destruction. He will be successful in what he undertakes. He will destroy powerful people and the people of the holy ones.</VERS>\n\t\t\t<VERS vnumber=\"25\"> By his treachery he will succeed through deceit. He will have an arrogant attitude, and he will destroy many who are unaware of his schemes. He will rise up against the Prince of princes, yet he will be broken apart, but not by human agency.</VERS>\n\t\t\t<VERS vnumber=\"26\"> The vision of the evenings and mornings that was told to you is correct. But you should seal up the vision, for it refers to a time many days from now.\"</VERS>\n\t\t\t<VERS vnumber=\"27\"> I, Daniel, was exhausted and sick for days. Then I got up and again carried out the king's business. But I was astonished at the vision, and there was no one to explain it.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"9\">\n\t\t\t<VERS vnumber=\"1\"> In the first year of Darius son of Ahasuerus, who was of Median descent and who had been appointed king over the Babylonian empire,</VERS>\n\t\t\t<VERS vnumber=\"2\"> in the first year of his reign I, Daniel, came to understand from the sacred books that, according to the word of the LORD disclosed to the prophet Jeremiah, the years for the fulfilling of the desolation of Jerusalem were seventy in number.</VERS>\n\t\t\t<VERS vnumber=\"3\"> So I turned my attention to the Lord God to implore him by prayer and requests, with fasting, sackcloth, and ashes.</VERS>\n\t\t\t<VERS vnumber=\"4\"> I prayed to the LORD my God, confessing in this way: \"O Lord, great and awesome God who is faithful to his covenant with those who love him and keep his commandments,</VERS>\n\t\t\t<VERS vnumber=\"5\"> we have sinned! We have done what is wrong and wicked; we have rebelled by turning away from your commandments and standards.</VERS>\n\t\t\t<VERS vnumber=\"6\"> We have not paid attention to your servants the prophets, who spoke by your authority to our kings, our leaders, and our ancestors, and to all the inhabitants of the land as well.</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"You are righteous, O Lord, but we are humiliated this day, the people of Judah and the inhabitants of Jerusalem and all Israel, both near and far away in all the countries in which you have scattered them, because they have behaved unfaithfully toward you.</VERS>\n\t\t\t<VERS vnumber=\"8\"> O LORD, we have been humiliated, our kings, our leaders, and our ancestors, because we have sinned against you.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Yet the Lord our God is compassionate and forgiving, even though we have rebelled against him. </VERS>\n\t\t\t<VERS vnumber=\"10\"> We have not obeyed the LORD our God by living according to his laws that he set before us through his servants the prophets.</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"All Israel has broken your law and turned away by not obeying you. Therefore you have poured out on us the judgment solemnly threatened in the law of Moses the servant of God, for we have sinned against you.</VERS>\n\t\t\t<VERS vnumber=\"12\"> He has carried out his threats against us and our rulers who were over us by bringing great calamity on us, what has happened to Jerusalem has never been equaled under all heaven!</VERS>\n\t\t\t<VERS vnumber=\"13\"> Just as it is written in the law of Moses, so all this calamity has come on us. Still we have not tried to pacify the LORD our God by turning back from our sin and by seeking wisdom from your reliable moral standards.</VERS>\n\t\t\t<VERS vnumber=\"14\"> The LORD was mindful of the calamity, and he brought it on us. For the LORD our God is just in all he has done, and we have not obeyed him.</VERS>\n\t\t\t<VERS vnumber=\"15\"> \"Now, O Lord our God, who brought your people out of the land of Egypt with great power and made a name for yourself that is remembered to this day, we have sinned and behaved wickedly.</VERS>\n\t\t\t<VERS vnumber=\"16\"> O Lord, according to all your justice, please turn your raging anger away from your city Jerusalem, your holy mountain. For due to our sins and the iniquities of our ancestors, Jerusalem and your people are mocked by all our neighbors.</VERS>\n\t\t\t<VERS vnumber=\"17\"> \"So now, our God, accept the prayer and requests of your servant, and show favor to your devastated sanctuary for your own sake.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Listen attentively, my God, and hear! Open your eyes and look on our desolated ruins and the city called by your name. For it is not because of our own righteous deeds that we are praying to you, but because your compassion is abundant.</VERS>\n\t\t\t<VERS vnumber=\"19\"> O Lord, hear! O Lord, forgive! O Lord, pay attention, and act! Don't delay, for your own sake, O my God! For your city and your people are called by your name.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> While I was still speaking and praying, confessing my sin and the sin of my people Israel and presenting my request before the LORD my God concerning his holy mountain,</VERS>\n\t\t\t<VERS vnumber=\"21\"> yes, while I was still praying, the man Gabriel, whom I had seen previously in a vision, was approaching me in my state of extreme weariness, around the time of the evening offering. </VERS>\n\t\t\t<VERS vnumber=\"22\"> He spoke with me, instructing me as follows: \"Daniel, I have now come to impart understanding to you. </VERS>\n\t\t\t<VERS vnumber=\"23\"> At the beginning of your requests a message went out, and I have come to convey it to you, for you are of great value in God's sight. Therefore consider the message and understand the vision:</VERS>\n\t\t\t<VERS vnumber=\"24\"> \"Seventy weeks have been determined concerning your people and your holy city to put an end to rebellion, to bring sin to completion, to atone for iniquity, to bring in perpetual righteousness, to seal up the prophetic vision, and to anoint a most holy place.</VERS>\n\t\t\t<VERS vnumber=\"25\"> So know and understand: From the issuing of the command to restore and rebuild Jerusalem until an anointed one, a prince arrives, there will be a period of seven weeks and sixty-two weeks. It will again be built, with plaza and moat, but in distressful times.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Now after the sixty-two weeks, an anointed one will be cut off and have nothing. As for the city and the sanctuary, the people of the coming prince will destroy them. But his end will come speedily like a flood. Until the end of the war that has been decreed there will be destruction.</VERS>\n\t\t\t<VERS vnumber=\"27\"> He will confirm a covenant with many for one week. But in the middle of that week he will bring sacrifices and offerings to a halt. On the wing of abominations will come one who destroys, until the decreed end is poured out on the one who destroys.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"10\">\n\t\t\t<VERS vnumber=\"1\">  In the third year of King Cyrus of Persia a message was revealed to Daniel (who was also called Belteshazzar). This message was true and concerned a great war. He understood the message and gained insight by the vision.</VERS>\n\t\t\t<VERS vnumber=\"2\"> In those days I, Daniel, was mourning for three whole weeks.</VERS>\n\t\t\t<VERS vnumber=\"3\"> I ate no choice food; no meat or wine came to my lips, nor did I anoint myself with oil until the end of those three weeks.</VERS>\n\t\t\t<VERS vnumber=\"4\"> On the twenty-fourth day of the first month I was beside the great river, the Tigris.</VERS>\n\t\t\t<VERS vnumber=\"5\"> I looked up and saw a man clothed in linen; around his waist was a belt made of gold from Upaz.</VERS>\n\t\t\t<VERS vnumber=\"6\"> His body resembled yellow jasper, and his face had an appearance like lightning. His eyes were like blazing torches; his arms and feet had the gleam of polished bronze. His voice thundered forth like the sound of a large crowd.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Only I, Daniel, saw the vision; the men who were with me did not see it. On the contrary, they were overcome with fright and ran away to hide. </VERS>\n\t\t\t<VERS vnumber=\"8\"> I alone was left to see this great vision. My strength drained from me, and my vigor disappeared; I was without energy.</VERS>\n\t\t\t<VERS vnumber=\"9\"> I listened to his voice, and as I did so I fell into a trance-like sleep with my face to the ground. </VERS>\n\t\t\t<VERS vnumber=\"10\"> Then a hand touched me and set me on my hands and knees.</VERS>\n\t\t\t<VERS vnumber=\"11\"> He said to me, \"Daniel, you are of great value. Understand the words that I am about to speak to you. So stand up, for I have now been sent to you.\" When he said this to me, I stood up shaking. </VERS>\n\t\t\t<VERS vnumber=\"12\"> Then he said to me, \"Don't be afraid, Daniel, for from the very first day you applied your mind to understand and to humble yourself before your God, your words were heard. I have come in response to your words. </VERS>\n\t\t\t<VERS vnumber=\"13\"> However, the prince of the kingdom of Persia was opposing me for twenty-one days. But Michael, one of the leading princes, came to help me, because I was left there with the kings of Persia. </VERS>\n\t\t\t<VERS vnumber=\"14\"> Now I have come to help you understand what will happen to your people in the latter days, for the vision pertains to future days.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> While he was saying this to me, I was flat on the ground and unable to speak. </VERS>\n\t\t\t<VERS vnumber=\"16\"> Then one who appeared to be a human being was touching my lips. I opened my mouth and started to speak, saying to the one who was standing before me, \"Sir, due to the vision, anxiety has gripped me and I have no strength. </VERS>\n\t\t\t<VERS vnumber=\"17\"> How, sir, am I able to speak with you? My strength is gone, and I am breathless.\" </VERS>\n\t\t\t<VERS vnumber=\"18\"> Then the one who appeared to be a human being touched me again and strengthened me. </VERS>\n\t\t\t<VERS vnumber=\"19\"> He said to me, \"Don't be afraid, you who are valued. Peace be to you! Be strong! Be really strong!\" When he spoke to me, I was strengthened. I said, \"Sir, you may speak now, for you have given me strength.\" </VERS>\n\t\t\t<VERS vnumber=\"20\"> He said, \"Do you know why I have come to you? Now I am about to return to engage in battle with the prince of Persia. When I go, the prince of Greece is coming. </VERS>\n\t\t\t<VERS vnumber=\"21\"> However, I will first tell you what is written in a dependable book. (There is no one who strengthens me against these princes, except Michael your prince. </VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"11\">\n\t\t\t<VERS vnumber=\"1\"> And in the first year of Darius the Mede, I stood to strengthen him and to provide protection for him.) </VERS>\n\t\t\t<VERS vnumber=\"2\"> Now I will tell you the truth. \"Three more kings will arise for Persia. Then a fourth king will be unusually rich, more so than all who preceded him. When he has amassed power through his riches, he will stir up everyone against the kingdom of Greece. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Then a powerful king will arise, exercising great authority and doing as he pleases. </VERS>\n\t\t\t<VERS vnumber=\"4\"> Shortly after his rise to power, his kingdom will be broken up and distributed toward the four winds of the sky, but not to his posterity or with the authority he exercised, for his kingdom will be uprooted and distributed to others besides these.</VERS>\n\t\t\t<VERS vnumber=\"5\"> \"Then the king of the south and one of his subordinates will grow strong. His subordinate will resist him and will rule a kingdom greater than his.</VERS>\n\t\t\t<VERS vnumber=\"6\"> After some years have passed, they will form an alliance. Then the daughter of the king of the south will come to the king of the north to make an agreement, but she will not retain her power, nor will he continue in his strength. She, together with the one who brought her, her child, and her benefactor will all be delivered over at that time.</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"There will arise in his place one from her family line who will come against their army and will enter the stronghold of the king of the north and will move against them successfully.</VERS>\n\t\t\t<VERS vnumber=\"8\"> He will also take their gods into captivity to Egypt, along with their cast images and prized utensils of silver and gold. Then he will withdraw for some years from the king of the north. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Then the king of the north will advance against the empire of the king of the south, but will withdraw to his own land.</VERS>\n\t\t\t<VERS vnumber=\"10\"> His sons will wage war, mustering a large army which will advance like an overflowing river and carrying the battle all the way to the enemy's fortress.</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"Then the king of the south will be enraged and will march out to fight against the king of the north, who will also muster a large army, but that army will be delivered into his hand.</VERS>\n\t\t\t<VERS vnumber=\"12\"> When the army is taken away, the king of the south will become arrogant. He will be responsible for the death of thousands and thousands of people, but he will not continue to prevail.</VERS>\n\t\t\t<VERS vnumber=\"13\"> For the king of the north will again muster an army, one larger than before. At the end of some years he will advance with a huge army and enormous supplies.</VERS>\n\t\t\t<VERS vnumber=\"14\"> \"In those times many will oppose the king of the south. Those who are violent among your own people will rise up in confirmation of the vision, but they will falter. </VERS>\n\t\t\t<VERS vnumber=\"15\"> Then the king of the north will advance and will build siege mounds and capture a well-fortified city. The forces of the south will not prevail, not even his finest contingents. They will have no strength to prevail. </VERS>\n\t\t\t<VERS vnumber=\"16\"> The one advancing against him will do as he pleases, and no one will be able to stand before him. He will prevail in the beautiful land, and its annihilation will be within his power.</VERS>\n\t\t\t<VERS vnumber=\"17\"> His intention will be to come with the strength of his entire kingdom, and he will form alliances. He will give the king of the south a daughter in marriage in order to destroy the kingdom, but it will not turn out to his advantage.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Then he will turn his attention to the coastal regions and will capture many of them. But a commander will bring his shameful conduct to a halt; in addition, he will make him pay for his shameful conduct.</VERS>\n\t\t\t<VERS vnumber=\"19\"> He will then turn his attention to the fortresses of his own land, but he will stumble and fall, not to be found again.</VERS>\n\t\t\t<VERS vnumber=\"20\"> There will arise after him one who will send out an exactor of tribute to enhance the splendor of the kingdom, but after a few days he will be destroyed, though not in anger or battle.</VERS>\n\t\t\t<VERS vnumber=\"21\"> \"Then there will arise in his place a despicable person to whom the royal honor has not been rightfully conferred. He will come on the scene in a time of prosperity and will seize the kingdom through deceit. </VERS>\n\t\t\t<VERS vnumber=\"22\"> Armies will be suddenly swept away in defeat before him; both they and a covenant leader will be destroyed.</VERS>\n\t\t\t<VERS vnumber=\"23\"> After entering into an alliance with him, he will behave treacherously; he will ascend to power with only a small force.</VERS>\n\t\t\t<VERS vnumber=\"24\"> In a time of prosperity for the most productive areas of the province he will come and accomplish what neither his fathers nor their fathers accomplished. He will distribute loot, spoils, and property to his followers, and he will devise plans against fortified cities, but not for long.</VERS>\n\t\t\t<VERS vnumber=\"25\"> He will rouse his strength and enthusiasm against the king of the south with a large army. The king of the south will wage war with a large and very powerful army, but he will not be able to prevail because of the plans devised against him. </VERS>\n\t\t\t<VERS vnumber=\"26\"> Those who share the king's fine food will attempt to destroy him, and his army will be swept away; many will be killed in battle. </VERS>\n\t\t\t<VERS vnumber=\"27\"> These two kings, their minds filled with evil intentions, will trade lies with one another at the same table. But it will not succeed, for there is still an end at the appointed time. </VERS>\n\t\t\t<VERS vnumber=\"28\"> Then the king of the north will return to his own land with much property. His mind will be set against the holy covenant. He will take action, and then return to his own land. </VERS>\n\t\t\t<VERS vnumber=\"29\"> At an appointed time he will again invade the south, but this latter visit will not turn out the way the former one did.</VERS>\n\t\t\t<VERS vnumber=\"30\"> The ships of Kittim will come against him, leaving him disheartened. He will turn back and direct his indignation against the holy covenant. He will return and honor those who forsake the holy covenant. </VERS>\n\t\t\t<VERS vnumber=\"31\"> His forces will rise up and profane the fortified sanctuary, stopping the daily sacrifice. In its place they will set up the abomination that causes desolation. </VERS>\n\t\t\t<VERS vnumber=\"32\"> Then with smooth words he will defile those who have rejected the covenant. But the people who are loyal to their God will act valiantly.</VERS>\n\t\t\t<VERS vnumber=\"33\"> These who are wise among the people will teach the masses. However, they will fall by the sword and by the flame, and they will be imprisoned and plundered for some time.</VERS>\n\t\t\t<VERS vnumber=\"34\"> When they stumble, they will be granted some help. But many will unite with them deceitfully.</VERS>\n\t\t\t<VERS vnumber=\"35\"> Even some of the wise will stumble, resulting in their refinement, purification, and cleansing until the time of the end, for it is still for the appointed time.</VERS>\n\t\t\t<VERS vnumber=\"36\"> \"Then the king will do as he pleases. He will exalt and magnify himself above every deity and he will utter presumptuous things against the God of gods. He will succeed until the time of wrath is completed, for what has been decreed must occur.</VERS>\n\t\t\t<VERS vnumber=\"37\"> He will not respect the gods of his fathers, not even the god loved by women. He will not respect any god; he will elevate himself above them all.</VERS>\n\t\t\t<VERS vnumber=\"38\"> What he will honor is a god of fortresses, a god his fathers did not acknowledge he will honor with gold, silver, valuable stones, and treasured commodities.</VERS>\n\t\t\t<VERS vnumber=\"39\"> He will attack mighty fortresses, aided by a foreign deity. To those who recognize him he will grant considerable honor. He will place them in authority over many people, and he will parcel out land for a price.</VERS>\n\t\t\t<VERS vnumber=\"40\"> \"At the time of the end the king of the south will attack him. Then the king of the north will storm against him with chariots, horsemen, and a large armada of ships. He will invade lands, passing through them like an overflowing river.</VERS>\n\t\t\t<VERS vnumber=\"41\"> Then he will enter the beautiful land. Many will fall, but these will escape: Edom, Moab, and the Ammonite leadership. </VERS>\n\t\t\t<VERS vnumber=\"42\"> He will extend his power against other lands; the land of Egypt will not escape.</VERS>\n\t\t\t<VERS vnumber=\"43\"> He will have control over the hidden stores of gold and silver, as well as all the treasures of Egypt. Libyans and Ethiopians will submit to him.</VERS>\n\t\t\t<VERS vnumber=\"44\"> But reports will trouble him from the east and north, and he will set out in a tremendous rage to destroy and wipe out many.</VERS>\n\t\t\t<VERS vnumber=\"45\"> He will pitch his royal tents between the seas toward the beautiful holy mountain. But he will come to his end, with no one to help him.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"12\">\n\t\t\t<VERS vnumber=\"1\"> \"At that time Michael, the great prince who watches over your people, will arise. There will be a time of distress unlike any other from the nation's beginning up to that time. But at that time your own people, all those whose names are found written in the book, will escape.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Many of those who sleep in the dusty ground will awake, some to everlasting life, and others to shame and everlasting abhorrence.</VERS>\n\t\t\t<VERS vnumber=\"3\"> But the wise will shine like the brightness of the heavenly expanse. And those bringing many to righteousness will be like the stars forever and ever.</VERS>\n\t\t\t<VERS vnumber=\"4\"> \"But you, Daniel, close up these words and seal the book until the time of the end. Many will dash about, and knowledge will increase.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> I, Daniel, watched as two others stood there, one on each side of the river.</VERS>\n\t\t\t<VERS vnumber=\"6\"> One said to the man clothed in linen who was above the waters of the river, \"When will the end of these wondrous events occur?\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> Then I heard the man clothed in linen who was over the waters of the river as he raised both his right and left hands to the sky and made an oath by the one who lives forever: \"It is for a time, times, and half a time. Then, when the power of the one who shatters the holy people has been exhausted, all these things will be finished.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> I heard, but I did not understand. So I said, \"Sir, what will happen after these things?\" </VERS>\n\t\t\t<VERS vnumber=\"9\"> He said, \"Go, Daniel. For these matters are closed and sealed until the time of the end.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Many will be purified, made clean, and refined, but the wicked will go on being wicked. None of the wicked will understand, though the wise will understand.</VERS>\n\t\t\t<VERS vnumber=\"11\"> From the time that the daily sacrifice is removed and the abomination that causes desolation is set in place, there are 1,290 days. </VERS>\n\t\t\t<VERS vnumber=\"12\"> Blessed is the one who waits and attains to the 1,335 days.</VERS>\n\t\t\t<VERS vnumber=\"13\"> But you should go your way until the end. You will rest and then at the end of the days you will arise to receive what you have been allotted.\"</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"28\" bname=\"Hosea\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\">  This is the word of the LORD which was revealed to Hosea son of Beeri during the time when Uzziah, Jotham, Ahaz, and Hezekiah ruled Judah, and during the time when Jeroboam son of Joash ruled Israel.</VERS>\n\t\t\t<VERS vnumber=\"2\"> When the LORD first spoke through Hosea, he said to him, \"Go marry a prostitute who will bear illegitimate children conceived through prostitution, because the nation continually commits spiritual prostitution by turning away from the LORD.\" </VERS>\n\t\t\t<VERS vnumber=\"3\"> So Hosea married Gomer, the daughter of Diblaim. Then she conceived and gave birth to a son for him. </VERS>\n\t\t\t<VERS vnumber=\"4\"> Then the LORD said to Hosea, \"Name him 'Jezreel,' because in a little while I will punish the dynasty of Jehu on account of the bloodshed in the valley of Jezreel, and I will put an end to the kingdom of Israel.</VERS>\n\t\t\t<VERS vnumber=\"5\"> At that time, I will destroy the military power of Israel in the valley of Jezreel.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> She conceived again and gave birth to a daughter. Then the LORD said to him, \"Name her 'No Pity' (Lo-Ruhamah) because I will no longer have pity on the nation of Israel. For I will certainly not forgive their guilt.</VERS>\n\t\t\t<VERS vnumber=\"7\"> But I will have pity on the nation of Judah. I will deliver them by the LORD their God; I will not deliver them by the warrior's bow, by sword, by military victory, by chariot horses, or by chariots.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> When she had weaned 'No Pity' (Lo-Ruhamah) she conceived again and gave birth to another son. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Then the LORD said: \"Name him 'Not My People' (Lo-Ammi), because you are not my people and I am not your God.\"</VERS>\n\t\t\t<VERS vnumber=\"10\">  However, in the future the number of the people of Israel will be like the sand of the sea which can be neither measured nor numbered. Although it was said to them, \"You are not my people,\" it will be said to them, \"You are children of the living God!\" </VERS>\n\t\t\t<VERS vnumber=\"11\"> Then the people of Judah and the people of Israel will be gathered together. They will appoint for themselves one leader, and will flourish in the land. Certainly, the day of Jezreel will be great! </VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> Then you will call your brother, \"My People\" (Ammi)! You will call your sister, \"Pity\" (Ruhamah)!</VERS>\n\t\t\t<VERS vnumber=\"2\"> Plead earnestly with your mother (for she is not my wife, and I am not her husband), so that she might put an end to her adulterous lifestyle, and turn away from her sexually immoral behavior.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Otherwise, I will strip her naked, and expose her like she was when she was born. I will turn her land into a wilderness and make her country a parched land, so that I might kill her with thirst.</VERS>\n\t\t\t<VERS vnumber=\"4\"> I will have no pity on her children, because they are children conceived in adultery.</VERS>\n\t\t\t<VERS vnumber=\"5\"> For their mother has committed adultery; she who conceived them has acted shamefully. For she said, \"I will seek out my lovers; they are the ones who give me my bread and my water, my wool, my flax, my olive oil, and my wine.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Therefore, I will soon fence her in with thorns; I will wall her in so that she cannot find her way.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Then she will pursue her lovers, but she will not catch them; she will seek them, but she will not find them. Then she will say, \"I will go back to my husband, because I was better off then than I am now.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> Yet until now she has refused to acknowledge that I was the one who gave her the grain, the new wine, and the olive oil; and that it was I who lavished on her the silver and gold, which they used in worshiping Baal!</VERS>\n\t\t\t<VERS vnumber=\"9\"> Therefore, I will take back my grain during the harvest time and my new wine when it ripens; I will take away my wool and my flax which I had provided in order to clothe her.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Soon I will expose her lewd nakedness in front of her lovers, and no one will be able to rescue her from me!</VERS>\n\t\t\t<VERS vnumber=\"11\"> I will put an end to all her celebration: her annual religious festivals, monthly new moon celebrations, and weekly Sabbath festivities, all her appointed festivals.</VERS>\n\t\t\t<VERS vnumber=\"12\"> I will destroy her vines and fig trees, about which she said, \"These are my wages for prostitution that my lovers gave to me!\" I will turn her cultivated vines and fig trees into an uncultivated thicket, so that wild animals will devour them.</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"I will punish her for the festival days when she burned incense to the Baal idols; she adorned herself with earrings and jewelry, and went after her lovers, but she forgot me!\" says the LORD.</VERS>\n\t\t\t<VERS vnumber=\"14\"> However, in the future I will allure her; I will lead her back into the wilderness, and speak tenderly to her.</VERS>\n\t\t\t<VERS vnumber=\"15\"> From there I will give back her vineyards to her, and turn the \"Valley of Trouble\" into an \"Opportunity for Hope.\" There she will sing as she did when she was young, when she came up from the land of Egypt.</VERS>\n\t\t\t<VERS vnumber=\"16\"> \"At that time,\" declares the LORD, \"you will call, 'My husband'; you will never again call me, 'My master.'</VERS>\n\t\t\t<VERS vnumber=\"17\"> For I will remove the names of the Baal idols from your lips, so that you will never again utter their names!\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> \"At that time I will make a covenant for them with the wild animals, the birds of the air, and the creatures that crawl on the ground. I will abolish the warrior's bow and sword, that is, every weapon of warfare, from the land, and I will allow them to live securely.\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> I will commit myself to you forever; I will commit myself to you in righteousness and justice, in steadfast love and tender compassion.</VERS>\n\t\t\t<VERS vnumber=\"20\"> I will commit myself to you in faithfulness; then you will acknowledge the LORD.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> \"At that time, I will willingly respond,\" declares the LORD. \"I will respond to the sky, and the sky will respond to the ground;</VERS>\n\t\t\t<VERS vnumber=\"22\"> then the ground will respond to the grain, the new wine, and the olive oil; and they will respond to 'God Plants' (Jezreel)!</VERS>\n\t\t\t<VERS vnumber=\"23\"> Then I will plant her as my own in the land. I will have pity on 'No Pity' (Lo-Ruhamah). I will say to 'Not My People' (Lo-Ammi), 'You are my people!' And he will say, 'You are my God!'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> The LORD said to me, \"Go, show love to your wife again, even though she loves another man and continually commits adultery. Likewise, the LORD loves the Israelites although they turn to other gods and love to offer raisin cakes to idols.\"</VERS>\n\t\t\t<VERS vnumber=\"2\"> So I paid fifteen shekels of silver and about seven bushels of barley to purchase her. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Then I told her, \"You must live with me many days; you must not commit adultery or have sexual intercourse with another man, and I also will wait for you.\" </VERS>\n\t\t\t<VERS vnumber=\"4\"> For the Israelites must live many days without a king or prince, without sacrifice or sacred fertility pillar, without ephod or idols. </VERS>\n\t\t\t<VERS vnumber=\"5\"> Afterward, the Israelites will turn and seek the LORD their God and their Davidic king. Then they will submit to the LORD in fear and receive his blessings in the future.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\"> Hear the word of the LORD, you Israelites! For the LORD has a covenant lawsuit against the people of Israel. For there is neither faithfulness nor loyalty in the land, nor do they acknowledge God.</VERS>\n\t\t\t<VERS vnumber=\"2\"> There is only cursing, lying, murder, stealing, and adultery. They resort to violence and bloodshed.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Therefore the land will mourn, and all its inhabitants will perish. The wild animals, the birds of the sky, and even the fish in the sea will perish.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Do not let anyone accuse or contend against anyone else: for my case is against you priests!</VERS>\n\t\t\t<VERS vnumber=\"5\"> You stumble day and night, and the false prophets stumble with you; You have destroyed your own people!</VERS>\n\t\t\t<VERS vnumber=\"6\"> You have destroyed my people by failing to acknowledge me! Because you refuse to acknowledge me, I will reject you as my priests. Because you reject the law of your God, I will reject your descendants.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The more the priests increased in numbers, the more they rebelled against me. They have turned their glorious calling into a shameful disgrace!</VERS>\n\t\t\t<VERS vnumber=\"8\"> They feed on the sin offerings of my people; their appetites long for their iniquity!</VERS>\n\t\t\t<VERS vnumber=\"9\"> I will deal with the people and priests together: I will punish them both for their ways, and I will repay them for their deeds.</VERS>\n\t\t\t<VERS vnumber=\"10\"> They will eat, but not be satisfied; they will engage in prostitution, but not increase in numbers; because they have abandoned the LORD by pursuing other gods.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Old and new wine take away the understanding of my people.</VERS>\n\t\t\t<VERS vnumber=\"12\"> They consult their wooden idols, and their diviner's staff answers with an oracle. The wind of prostitution blows them astray; they commit spiritual adultery against their God.</VERS>\n\t\t\t<VERS vnumber=\"13\"> They sacrifice on the mountaintops, and burn offerings on the hills; they sacrifice under oak, poplar, and terebinth, because their shade is so pleasant. As a result, your daughters have become cult prostitutes, and your daughters-in-law commit adultery!</VERS>\n\t\t\t<VERS vnumber=\"14\"> I will not punish your daughters when they commit prostitution, nor your daughters-in-law when they commit adultery. For the men consort with harlots, they sacrifice with temple prostitutes. It is true: \"A people that lacks understanding will come to ruin!\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> Although you, O Israel, commit adultery, do not let Judah become guilty! Do not journey to Gilgal! Do not go up to Beth Aven! Do not swear, \"As surely as the LORD lives!\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> Israel has rebelled like a stubborn heifer! Soon the LORD will put them out to pasture like a lamb in a broad field!</VERS>\n\t\t\t<VERS vnumber=\"17\"> Ephraim has attached himself to idols; Do not go near him!</VERS>\n\t\t\t<VERS vnumber=\"18\"> They consume their alcohol, then engage in cult prostitution; they dearly love their shameful behavior.</VERS>\n\t\t\t<VERS vnumber=\"19\"> A whirlwind has wrapped them in its wings; they will be brought to shame because of their idolatrous worship.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"5\">\n\t\t\t<VERS vnumber=\"1\"> Hear this, you priests! Pay attention, you Israelites! Listen closely, O king! For judgment is about to overtake you! For you were like a trap to Mizpah, like a net spread out to catch Tabor.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Those who revolt are knee-deep in slaughter, but I will discipline them all.</VERS>\n\t\t\t<VERS vnumber=\"3\"> I know Ephraim all too well; the evil of Israel is not hidden from me. For you have engaged in prostitution, O Ephraim; Israel has defiled itself.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Their wicked deeds do not allow them to return to their God; because a spirit of idolatry controls their heart, and they do not acknowledge the LORD.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The arrogance of Israel testifies against it; Israel and Ephraim will be overthrown because of their iniquity. Even Judah will be brought down with them.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Although they bring their flocks and herds to seek the favor of the LORD, They will not find him, he has withdrawn himself from them!</VERS>\n\t\t\t<VERS vnumber=\"7\"> They have committed treason against the LORD, because they bore illegitimate children. Soon the new moon festival will devour them and their fields.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Blow the ram's horn in Gibeah! Sound the trumpet in Ramah! Sound the alarm in Beth Aven! Tremble in fear, O Benjamin!</VERS>\n\t\t\t<VERS vnumber=\"9\"> Ephraim will be ruined in the day of judgment! What I am declaring to the tribes of Israel will certainly take place!</VERS>\n\t\t\t<VERS vnumber=\"10\"> The princes of Judah are like those who move boundary markers. I will pour out my rage on them like a torrential flood!</VERS>\n\t\t\t<VERS vnumber=\"11\"> Ephraim will be oppressed, crushed under judgment, because he was determined to pursue worthless idols.</VERS>\n\t\t\t<VERS vnumber=\"12\"> I will be like a moth to Ephraim, like wood rot to the house of Judah.</VERS>\n\t\t\t<VERS vnumber=\"13\"> When Ephraim saw his sickness and Judah saw his wound, then Ephraim turned to Assyria, and begged its great king for help. But he will not be able to heal you! He cannot cure your wound!</VERS>\n\t\t\t<VERS vnumber=\"14\"> I will be like a lion to Ephraim, like a young lion to the house of Judah. I myself will tear them to pieces, then I will carry them off, and no one will be able to rescue them!</VERS>\n\t\t\t<VERS vnumber=\"15\"> Then I will return again to my lair until they have suffered their punishment. Then they will seek me; in their distress they will earnestly seek me.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"6\">\n\t\t\t<VERS vnumber=\"1\"> \"Come on! Let's return to the LORD! He himself has torn us to pieces, but he will heal us! He has injured us, but he will bandage our wounds!</VERS>\n\t\t\t<VERS vnumber=\"2\"> He will restore us in a very short time; he will heal us in a little while, so that we may live in his presence.</VERS>\n\t\t\t<VERS vnumber=\"3\"> So let us acknowledge him! Let us seek to acknowledge the LORD! He will come to our rescue as certainly as the appearance of the dawn, as certainly as the winter rain comes, as certainly as the spring rain that waters the land.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> What am I going to do with you, O Ephraim? What am I going to do with you, O Judah? For your faithfulness is as fleeting as the morning mist; it disappears as quickly as dawn's dew!</VERS>\n\t\t\t<VERS vnumber=\"5\"> Therefore, I will certainly cut you into pieces at the hands of the prophets; I will certainly kill you in fulfillment of my oracles of judgment; for my judgment will come forth like the light of the dawn.</VERS>\n\t\t\t<VERS vnumber=\"6\"> For I delight in faithfulness, not simply in sacrifice; I delight in acknowledging God, not simply in whole burnt offerings.</VERS>\n\t\t\t<VERS vnumber=\"7\"> At Adam they broke the covenant; Oh how they were unfaithful to me!</VERS>\n\t\t\t<VERS vnumber=\"8\"> Gilead is a city full of evildoers; its streets are stained with bloody footprints!</VERS>\n\t\t\t<VERS vnumber=\"9\"> The company of priests is like a gang of robbers, lying in ambush to pounce on a victim. They commit murder on the road to Shechem; they have done heinous crimes!</VERS>\n\t\t\t<VERS vnumber=\"10\"> I have seen a disgusting thing in the temple of Israel: there Ephraim practices temple prostitution and Judah defiles itself.</VERS>\n\t\t\t<VERS vnumber=\"11\"> I have appointed a time to reap judgment for you also, O Judah! Whenever I want to restore the fortunes of my people,</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"7\">\n\t\t\t<VERS vnumber=\"1\"> whenever I want to heal Israel, the sin of Ephraim is revealed, and the evil deeds of Samaria are exposed. For they do what is wrong; thieves break into houses, and gangs rob people out in the streets.</VERS>\n\t\t\t<VERS vnumber=\"2\"> They do not realize that I remember all of their wicked deeds. Their evil deeds have now surrounded them; their sinful deeds are always before me.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The royal advisers delight the king with their evil schemes, the princes make him glad with their lies.</VERS>\n\t\t\t<VERS vnumber=\"4\"> They are all like bakers, they are like a smoldering oven; they are like a baker who does not stoke the fire until the kneaded dough is ready for baking.</VERS>\n\t\t\t<VERS vnumber=\"5\"> At the celebration of their king, his princes become inflamed with wine; they conspire with evildoers.</VERS>\n\t\t\t<VERS vnumber=\"6\"> They approach him, all the while plotting against him. Their hearts are like an oven; their anger smolders all night long, but in the morning it bursts into a flaming fire.</VERS>\n\t\t\t<VERS vnumber=\"7\"> All of them are blazing like an oven; they devour their rulers. All of their kings fall, and none of them call on me!</VERS>\n\t\t\t<VERS vnumber=\"8\"> Ephraim has mixed itself like flour among the nations; Ephraim is like a ruined cake of bread that is scorched on one side.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Foreigners are consuming what his strenuous labor produced, but he does not recognize it! His head is filled with gray hair, but he does not realize it!</VERS>\n\t\t\t<VERS vnumber=\"10\"> The arrogance of Israel testifies against him, yet they refuse to return to the LORD their God! In spite of all this they refuse to seek him!</VERS>\n\t\t\t<VERS vnumber=\"11\"> Ephraim has been like a dove, easily deceived and lacking discernment. They called to Egypt for help; they turned to Assyria for protection.</VERS>\n\t\t\t<VERS vnumber=\"12\"> I will throw my bird net over them while they are flying, I will bring them down like birds in the sky; I will discipline them when I hear them flocking together.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Woe to them! For they have fled from me! Destruction to them! For they have rebelled against me! I want to deliver them, but they have lied to me.</VERS>\n\t\t\t<VERS vnumber=\"14\"> They do not pray to me, but howl in distress on their beds; They slash themselves for grain and new wine, but turn away from me.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Although I trained and strengthened them, they plot evil against me!</VERS>\n\t\t\t<VERS vnumber=\"16\"> They turn to Baal; they are like an unreliable bow. Their leaders will fall by the sword because their prayers to Baal have made me angry. So people will disdain them in the land of Egypt.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"8\">\n\t\t\t<VERS vnumber=\"1\"> Sound the alarm! An eagle looms over the temple of the LORD! For they have broken their covenant with me, and have rebelled against my law.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Israel cries out to me, \"My God, we acknowledge you!\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> But Israel has rejected what is morally good; so an enemy will pursue him.</VERS>\n\t\t\t<VERS vnumber=\"4\"> They enthroned kings without my consent! They appointed princes without my approval! They made idols out of their silver and gold, but they will be destroyed!</VERS>\n\t\t\t<VERS vnumber=\"5\"> O Samaria, he has rejected your calf idol! My anger burns against them! They will not survive much longer without being punished, even though they are Israelites!</VERS>\n\t\t\t<VERS vnumber=\"6\"> That idol was made by a workman, it is not God! The calf idol of Samaria will be broken to bits.</VERS>\n\t\t\t<VERS vnumber=\"7\"> They sow the wind, and so they will reap the whirlwind! The stalk does not have any standing grain; it will not produce any flour. Even if it were to yield grain, foreigners would swallow it all up.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Israel will be swallowed up among the nations; they will be like a worthless piece of pottery.</VERS>\n\t\t\t<VERS vnumber=\"9\"> They have gone up to Assyria, like a wild donkey that wanders off. Ephraim has hired prostitutes as lovers.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Even though they have hired lovers among the nations, I will soon gather them together for judgment. Then they will begin to waste away under the oppression of a mighty king.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Although Ephraim has built many altars for sin offerings, these have become altars for sinning!</VERS>\n\t\t\t<VERS vnumber=\"12\"> I spelled out my law for him in great detail, but they regard it as something totally unknown to them!</VERS>\n\t\t\t<VERS vnumber=\"13\"> They offer up sacrificial gifts to me, and eat the meat, but the LORD does not accept their sacrifices. Soon he will remember their wrongdoing, he will punish their sins, and they will return to Egypt.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Israel has forgotten his Maker and built royal palaces, and Judah has built many fortified cities. But I will send fire on their cities; it will consume their royal citadels.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"9\">\n\t\t\t<VERS vnumber=\"1\"> O Israel, do not rejoice jubilantly like the nations, for you are unfaithful to your God. You love to receive a prostitute's wages on all the floors where you thresh your grain.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Threshing floors and wine vats will not feed the people, and new wine only deceives them.</VERS>\n\t\t\t<VERS vnumber=\"3\"> They will not remain in the LORD's land. Ephraim will return to Egypt; they will eat ritually unclean food in Assyria.</VERS>\n\t\t\t<VERS vnumber=\"4\"> They will not pour out drink offerings of wine to the LORD; they will not please him with their sacrifices. Their sacrifices will be like bread eaten while in mourning; all those who eat them will make themselves ritually unclean. For their bread will be only to satisfy their appetite; it will not come into the temple of the LORD.</VERS>\n\t\t\t<VERS vnumber=\"5\"> So what will you do on the festival day, on the festival days of the LORD?</VERS>\n\t\t\t<VERS vnumber=\"6\"> Look! Even if they flee from the destruction, Egypt will take hold of them, and Memphis will bury them. The weeds will inherit the silver they treasure, thorn bushes will occupy their homes.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The time of judgment is about to arrive! The time of retribution is imminent! Let Israel know! The prophet is considered a fool, the inspired man is viewed as a madman, because of the multitude of your sins and your intense animosity.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The prophet is a watchman over Ephraim on behalf of God, yet traps are laid for him along all of his paths; animosity rages against him in the land of his God.</VERS>\n\t\t\t<VERS vnumber=\"9\"> They have sunk deep into corruption as in the days of Gibeah. He will remember their wrongdoing. He will repay them for their sins.</VERS>\n\t\t\t<VERS vnumber=\"10\"> When I found Israel, it was like finding grapes in the wilderness. I viewed your ancestors like an early fig on a fig tree in its first season. Then they came to Baal-Peor and they dedicated themselves to shame, they became as detestable as what they loved.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Ephraim will be like a bird; what they value will fly away. They will not bear children, they will not enjoy pregnancy, they will not even conceive!</VERS>\n\t\t\t<VERS vnumber=\"12\"> Even if they raise their children, I will take away every last one of them. Woe to them! For I will turn away from them.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Just as lion cubs are born predators, so Ephraim will bear his sons for slaughter.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Give them, O LORD, what will you give them? Give them wombs that miscarry, and breasts that cannot nurse!</VERS>\n\t\t\t<VERS vnumber=\"15\"> Because of all their evil in Gilgal, I hate them there. On account of their evil deeds, I will drive them out of my land. I will no longer love them; all their rulers are rebels.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Ephraim will be struck down, their root will be dried up; they will not yield any fruit. Even if they do bear children, I will kill their precious offspring.</VERS>\n\t\t\t<VERS vnumber=\"17\"> My God will reject them, for they have not obeyed him; so they will be fugitives among the nations.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"10\">\n\t\t\t<VERS vnumber=\"1\"> Israel was a fertile vine that yielded fruit. As his fruit multiplied, he multiplied altars to Baal. As his land prospered, they adorned the fertility pillars.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Their heart is slipping; soon they will be punished for their guilt. The LORD will break their altars; he will completely destroy their fertility pillars.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Very soon they will say, \"We have no king since we did not fear the LORD. But what can a king do for us anyway?\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> They utter empty words, taking false oaths and making empty agreements. Therefore legal disputes sprout up like poisonous weeds in the furrows of a plowed field.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The inhabitants of Samaria will lament over the calf idol of Beth Aven. Its people will mourn over it; its idolatrous priests will wail over it, because its splendor will be taken from them into exile.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Even the calf idol will be carried to Assyria, as tribute for the great king. Ephraim will be disgraced; Israel will be put to shame because of its wooden idol.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Samaria and its king will be carried off like a twig on the surface of the waters.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The high places of the \"House of Wickedness\" will be destroyed; it is the place where Israel sins. Thorns and thistles will grow up over its altars. Then they will say to the mountains, \"Cover us!\" and to the hills, \"Fall on us!\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> O Israel, you have sinned since the time of Gibeah, and there you have remained. Did not war overtake the evildoers in Gibeah?</VERS>\n\t\t\t<VERS vnumber=\"10\"> When I please, I will discipline them; I will gather nations together to attack them, to bind them in chains for their two sins.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Ephraim was a well-trained heifer who loved to thresh grain; I myself put a fine yoke on her neck. I will harness Ephraim. Let Judah plow! Let Jacob break up the unplowed ground for himself!</VERS>\n\t\t\t<VERS vnumber=\"12\"> Sow righteousness for yourselves, reap unfailing love. Break up the unplowed ground for yourselves, for it is time to seek the LORD, until he comes and showers deliverance on you.</VERS>\n\t\t\t<VERS vnumber=\"13\"> But you have plowed wickedness; you have reaped injustice; you have eaten the fruit of deception. Because you have depended on your chariots; you have relied on your many warriors.</VERS>\n\t\t\t<VERS vnumber=\"14\"> The roar of battle will rise against your people; all your fortresses will be devastated, just as Shalman devastated Beth Arbel on the day of battle, when mothers were dashed to the ground with their children.</VERS>\n\t\t\t<VERS vnumber=\"15\"> So will it happen to you, O Bethel, because of your great wickedness! When that day dawns, the king of Israel will be destroyed.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"11\">\n\t\t\t<VERS vnumber=\"1\"> When Israel was a young man, I loved him like a son, and I summoned my son out of Egypt.</VERS>\n\t\t\t<VERS vnumber=\"2\"> But the more I summoned them, the farther they departed from me. They sacrificed to the Baal idols and burned incense to images.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Yet it was I who led Ephraim, I took them by the arm; but they did not acknowledge that I had healed them.</VERS>\n\t\t\t<VERS vnumber=\"4\"> I led them with leather cords, with leather ropes; I lifted the yoke from their neck, and gently fed them.</VERS>\n\t\t\t<VERS vnumber=\"5\"> They will return to Egypt! Assyria will rule over them because they refuse to repent!</VERS>\n\t\t\t<VERS vnumber=\"6\"> A sword will flash in their cities, it will destroy the bars of their city gates, and will devour them in their fortresses.</VERS>\n\t\t\t<VERS vnumber=\"7\"> My people are obsessed with turning away from me; they call to Baal, but he will never exalt them!</VERS>\n\t\t\t<VERS vnumber=\"8\"> How can I give you up, O Ephraim? How can I surrender you, O Israel? How can I treat you like Admah? How can I make you like Zeboiim? I have had a change of heart! All my tender compassions are aroused!</VERS>\n\t\t\t<VERS vnumber=\"9\"> I cannot carry out my fierce anger! I cannot totally destroy Ephraim! Because I am God, and not man, the Holy One among you, I will not come in wrath!</VERS>\n\t\t\t<VERS vnumber=\"10\"> He will roar like a lion, and they will follow the LORD; when he roars, his children will come trembling from the west.</VERS>\n\t\t\t<VERS vnumber=\"11\"> They will return in fear and trembling like birds from Egypt, like doves from Assyria, and I will settle them in their homes,\" declares the LORD.</VERS>\n\t\t\t<VERS vnumber=\"12\">  Ephraim has surrounded me with lies; the house of Israel has surrounded me with deceit. But Judah still roams about with God; he remains faithful to the Holy One.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"12\">\n\t\t\t<VERS vnumber=\"1\"> Ephraim continually feeds on the wind; he chases the east wind all day; he multiplies lies and violence. They make treaties with Assyria, and send olive oil as tribute to Egypt.</VERS>\n\t\t\t<VERS vnumber=\"2\"> The LORD also has a covenant lawsuit against Judah; he will punish Jacob according to his ways and repay him according to his deeds.</VERS>\n\t\t\t<VERS vnumber=\"3\"> In the womb he attacked his brother; in his manly vigor he struggled with God.</VERS>\n\t\t\t<VERS vnumber=\"4\"> He struggled with an angel and prevailed; he wept and begged for his favor. He found God at Bethel, and there he spoke with him!</VERS>\n\t\t\t<VERS vnumber=\"5\"> As for the LORD God Almighty, the LORD is the name by which he is remembered!</VERS>\n\t\t\t<VERS vnumber=\"6\"> But you must return to your God, by maintaining love and justice, and by waiting for your God to return to you.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The businessmen love to cheat; they use dishonest scales.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Ephraim boasts, \"I am very rich! I have become wealthy! In all that I have done to gain my wealth, no one can accuse me of any offense that is actually sinful.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"I am the LORD your God who brought you out of Egypt; I will make you live in tents again as in the days of old.</VERS>\n\t\t\t<VERS vnumber=\"10\"> I spoke to the prophets; I myself revealed many visions; I spoke in parables through the prophets.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> Is there idolatry in Gilead? Certainly its inhabitants will come to nothing! Do they sacrifice bulls in Gilgal? Surely their altars will be like stones heaped up on a plowed field!</VERS>\n\t\t\t<VERS vnumber=\"12\"> Jacob fled to the country of Aram, then Israel worked to acquire a wife; he tended sheep to pay for her.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The LORD brought Israel out of Egypt by a prophet, and due to a prophet Israel was preserved alive.</VERS>\n\t\t\t<VERS vnumber=\"14\"> But Ephraim bitterly provoked him to anger; so he will hold him accountable for the blood he has shed, his Lord will repay him for the contempt he has shown.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"13\">\n\t\t\t<VERS vnumber=\"1\"> When Ephraim spoke, there was terror; he was exalted in Israel, but he became guilty by worshiping Baal and died.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Even now they persist in sin! They make metal images for themselves, idols that they skillfully fashion from their own silver; all of them are nothing but the work of craftsmen! There is a saying about them: \"Those who sacrifice to the calf idol are calf kissers!\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> Therefore they will disappear like the morning mist, like early morning dew that evaporates, like chaff that is blown away from a threshing floor, like smoke that disappears through an open window.</VERS>\n\t\t\t<VERS vnumber=\"4\"> But I am the LORD your God, who brought you out of Egypt. Therefore, you must not acknowledge any God but me; except me there is no Savior.</VERS>\n\t\t\t<VERS vnumber=\"5\"> I cared for you in the wilderness, in the dry desert where no water was.</VERS>\n\t\t\t<VERS vnumber=\"6\"> When they were fed, they became satisfied; when they were satisfied, they became proud; as a result, they forgot me!</VERS>\n\t\t\t<VERS vnumber=\"7\"> So I will pounce on them like a lion; like a leopard I will lurk by the path.</VERS>\n\t\t\t<VERS vnumber=\"8\"> I will attack them like a bear robbed of her cubs, I will rip open their chests. I will devour them there like a lion, like a wild animal would tear them apart.</VERS>\n\t\t\t<VERS vnumber=\"9\"> I will destroy you, O Israel! Who is there to help you?</VERS>\n\t\t\t<VERS vnumber=\"10\"> Where then is your king, that he may save you in all your cities? Where are your rulers for whom you asked, saying, \"Give me a king and princes\"?</VERS>\n\t\t\t<VERS vnumber=\"11\"> I granted you a king in my anger, and I will take him away in my wrath!</VERS>\n\t\t\t<VERS vnumber=\"12\"> The punishment of Ephraim has been decreed; his punishment is being stored up for the future.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The labor pains of a woman will overtake him, but the baby will lack wisdom; when the time arrives, he will not come out of the womb!</VERS>\n\t\t\t<VERS vnumber=\"14\"> Will I deliver them from the power of Sheol? No, I will not! Will I redeem them from death? No, I will not! O Death, bring on your plagues! O Sheol, bring on your destruction! My eyes will not show any compassion!</VERS>\n\t\t\t<VERS vnumber=\"15\"> Even though he flourishes like a reed plant, a scorching east wind will come, a wind from the LORD rising up from the desert. As a result, his spring will dry up; his well will become dry. That wind will spoil all his delightful foods in the containers in his storehouse.</VERS>\n\t\t\t<VERS vnumber=\"16\">  Samaria will be held guilty, because she rebelled against her God. They will fall by the sword, their infants will be dashed to the ground, their pregnant women will be ripped open.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"14\">\n\t\t\t<VERS vnumber=\"1\"> Return, O Israel, to the LORD your God, for your sin has been your downfall!</VERS>\n\t\t\t<VERS vnumber=\"2\"> Return to the LORD and repent! Say to him: \"Completely forgive our iniquity; accept our penitential prayer, that we may offer the praise of our lips as sacrificial bulls.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Assyria cannot save us; we will not ride warhorses. We will never again say, 'Our gods' to what our own hands have made. For only you will show compassion to Orphan Israel!\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> \"I will heal their waywardness and love them freely, for my anger will turn away from them.</VERS>\n\t\t\t<VERS vnumber=\"5\"> I will be like the dew to Israel; he will blossom like a lily, he will send down his roots like a cedar of Lebanon.</VERS>\n\t\t\t<VERS vnumber=\"6\"> His young shoots will grow; his splendor will be like an olive tree, his fragrance like a cedar of Lebanon.</VERS>\n\t\t\t<VERS vnumber=\"7\"> People will reside again in his shade; they will plant and harvest grain in abundance. They will blossom like a vine, and his fame will be like the wine from Lebanon.</VERS>\n\t\t\t<VERS vnumber=\"8\"> O Ephraim, I do not want to have anything to do with idols anymore! I will answer him and care for him. I am like a luxuriant cypress tree; your fruitfulness comes from me!</VERS>\n\t\t\t<VERS vnumber=\"9\"> Who is wise? Let him discern these things! Who is discerning? Let him understand them! For the ways of the LORD are right; the godly walk in them, but in them the rebellious stumble.</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"29\" bname=\"Joel\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> This is the LORD's message that was given to Joel the son of Pethuel:</VERS>\n\t\t\t<VERS vnumber=\"2\"> Listen to this, you elders; pay attention, all inhabitants of the land. Has anything like this ever happened in your whole life or in the lifetime of your ancestors?</VERS>\n\t\t\t<VERS vnumber=\"3\"> Tell your children about it, have your children tell their children, and their children the following generation.</VERS>\n\t\t\t<VERS vnumber=\"4\"> What the gazam-locust left the 'arbeh-locust consumed, what the 'arbeh-locust left the yeleq-locust consumed, and what the yeleq-locust left the hasil-locust consumed!</VERS>\n\t\t\t<VERS vnumber=\"5\"> Wake up, you drunkards, and weep! Wail, all you wine drinkers, because the sweet wine has been taken away from you.</VERS>\n\t\t\t<VERS vnumber=\"6\"> For a nation has invaded our land. There are so many of them they are too numerous to count. Their teeth are like those of a lion; they tear apart their prey like a lioness.</VERS>\n\t\t\t<VERS vnumber=\"7\"> They have destroyed our vines; they have turned our fig trees into mere splinters. They have completely stripped off the bark and thrown them aside; the twigs are stripped bare.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Wail like a young virgin clothed in sackcloth, lamenting the death of her husband-to-be.</VERS>\n\t\t\t<VERS vnumber=\"9\"> No one brings grain offerings or drink offerings to the temple of the LORD anymore. So the priests, those who serve the LORD, are in mourning.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The crops of the fields have been destroyed. The ground is in mourning because the grain has perished. The fresh wine has dried up; the olive oil languishes.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Be distressed, farmers; wail, vinedressers, over the wheat and the barley. For the harvest of the field has perished.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The vine has dried up; the fig tree languishes, the pomegranate, date, and apple as well. In fact, all the trees of the field have dried up. Indeed, the joy of the people has dried up!</VERS>\n\t\t\t<VERS vnumber=\"13\"> Get dressed and lament, you priests! Wail, you who minister at the altar! Come, spend the night in sackcloth, you servants of my God, because no one brings grain offerings or drink offerings to the temple of your God anymore.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Announce a holy fast; proclaim a sacred assembly. Gather the elders and all the inhabitants of the land to the temple of the LORD your God, and cry out to the LORD.</VERS>\n\t\t\t<VERS vnumber=\"15\"> How awful that day will be! For the day of the LORD is near; it will come as destruction from the Divine Destroyer.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Our food has been cut off right before our eyes! There is no longer any joy or gladness in the temple of our God!</VERS>\n\t\t\t<VERS vnumber=\"17\"> The grains of seed have shriveled beneath their shovels. Storehouses have been decimated and granaries have been torn down, for the grain has dried up.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Listen to the cattle groan! The herds of livestock wander around in confusion because they have no pasture. Even the flocks of sheep are suffering.</VERS>\n\t\t\t<VERS vnumber=\"19\"> To you, O LORD, I call out for help, for fire has burned up the grassy pastures, flames have razed all the trees in the fields.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Even the wild animals cry out to you; for the river beds have dried up; fire has destroyed the grassy pastures.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> Blow the trumpet in Zion; sound the alarm signal on my holy mountain! Let all the inhabitants of the land shake with fear, for the day of the LORD is about to come. Indeed, it is near!</VERS>\n\t\t\t<VERS vnumber=\"2\"> It will be a day of dreadful darkness, a day of foreboding storm clouds, like blackness spread over the mountains. It is a huge and powerful army, there has never been anything like it ever before, and there will not be anything like it for many generations to come!</VERS>\n\t\t\t<VERS vnumber=\"3\"> Like fire they devour everything in their path; a flame blazes behind them. The land looks like the Garden of Eden before them, but behind them there is only a desolate wilderness, for nothing escapes them!</VERS>\n\t\t\t<VERS vnumber=\"4\"> They look like horses; they charge ahead like war horses.</VERS>\n\t\t\t<VERS vnumber=\"5\"> They sound like chariots rumbling over mountain tops, like the crackling of blazing fire consuming stubble, like the noise of a mighty army being drawn up for battle.</VERS>\n\t\t\t<VERS vnumber=\"6\"> People writhe in fear when they see them. All of their faces turn pale with fright.</VERS>\n\t\t\t<VERS vnumber=\"7\"> They charge like warriors; they scale walls like soldiers. Each one proceeds on his course; they do not alter their path.</VERS>\n\t\t\t<VERS vnumber=\"8\"> They do not jostle one another; each of them marches straight ahead. They burst through the city defenses and do not break ranks.</VERS>\n\t\t\t<VERS vnumber=\"9\"> They rush into the city; they scale its walls. They climb up into the houses; they go in through the windows like a thief.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The earth quakes before them; the sky reverberates. The sun and the moon grow dark; the stars refuse to shine.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The voice of the LORD thunders as he leads his army. Indeed, his warriors are innumerable; Surely his command is carried out! Yes, the day of the LORD is awesome and very terrifying, who can survive it?</VERS>\n\t\t\t<VERS vnumber=\"12\"> \"Yet even now,\" the LORD says, \"return to me with all your heart, with fasting, weeping, and mourning. Tear your hearts, not just your garments!\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> Return to the LORD your God, for he is merciful and compassionate, slow to anger and boundless in loyal love, often relenting from calamitous punishment.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Who knows? Perhaps he will be compassionate and grant a reprieve, and leave blessing in his wake, a meal offering and a drink offering for you to offer to the LORD your God!</VERS>\n\t\t\t<VERS vnumber=\"15\"> Blow the trumpet in Zion. Announce a holy fast; proclaim a sacred assembly!</VERS>\n\t\t\t<VERS vnumber=\"16\"> Gather the people; sanctify an assembly! Gather the elders; gather the children and the nursing infants. Let the bridegroom come out from his bedroom and the bride from her private quarters.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Let the priests, those who serve the LORD, weep from the vestibule all the way back to the altar. Let them say, \"Have pity, O LORD, on your people; please do not turn over your inheritance to be mocked, to become a proverb among the nations. Why should it be said among the peoples, \"Where is their God?\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> Then the LORD became zealous for his land; he had compassion on his people.</VERS>\n\t\t\t<VERS vnumber=\"19\"> The LORD responded to his people, \"Look! I am about to restore your grain as well as fresh wine and olive oil. You will be fully satisfied. I will never again make you an object of mockery among the nations.</VERS>\n\t\t\t<VERS vnumber=\"20\"> I will remove the one from the north far from you. I will drive him out to a dry and desolate place. Those in front will be driven eastward into the Dead Sea, and those in back westward into the Mediterranean Sea. His stench will rise up as a foul smell.\" Indeed, the LORD has accomplished great things.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Do not fear, my land! Rejoice and be glad, because the LORD has accomplished great things!</VERS>\n\t\t\t<VERS vnumber=\"22\"> Do not fear, wild animals! For the pastures of the wilderness are again green with grass. Indeed, the trees bear their fruit; the fig tree and the vine yield to their fullest.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Citizens of Zion, rejoice! Be glad because of what the LORD your God has done! For he has given to you the early rains as vindication. He has sent to you the rains, both the early and the late rains as formerly.</VERS>\n\t\t\t<VERS vnumber=\"24\"> The threshing floors are full of grain; the vats overflow with fresh wine and olive oil.</VERS>\n\t\t\t<VERS vnumber=\"25\"> I will make up for the years that the 'arbeh-locust consumed your crops, the yeleq-locust, the hasil-locust, and the gazam-locust, my great army that I sent against you.</VERS>\n\t\t\t<VERS vnumber=\"26\"> You will have plenty to eat, and your hunger will be fully satisfied; you will praise the name of the LORD your God, who has acted wondrously in your behalf. My people will never again be put to shame.</VERS>\n\t\t\t<VERS vnumber=\"27\"> You will be convinced that I am in the midst of Israel. I am the LORD your God; there is no other. My people will never again be put to shame.</VERS>\n\t\t\t<VERS vnumber=\"28\">  After all of this I will pour out my Spirit on all kinds of people. Your sons and daughters will prophesy. Your elderly will have revelatory dreams; your young men will see prophetic visions.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Even on male and female servants I will pour out my Spirit in those days.</VERS>\n\t\t\t<VERS vnumber=\"30\"> I will produce portents both in the sky and on the earth, blood, fire, and columns of smoke.</VERS>\n\t\t\t<VERS vnumber=\"31\"> The sunlight will be turned to darkness and the moon to the color of blood, before the day of the LORD comes, that great and terrible day!</VERS>\n\t\t\t<VERS vnumber=\"32\"> It will so happen that everyone who calls on the name of the LORD will be delivered. For on Mount Zion and in Jerusalem there will be those who survive, just as the LORD has promised; the remnant will be those whom the LORD will call.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\">  For look! In those days and at that time I will return the exiles to Judah and Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Then I will gather all the nations, and bring them down to the valley of Jehoshaphat. I will enter into judgment against them there concerning my people Israel who are my inheritance, whom they scattered among the nations. They partitioned my land,</VERS>\n\t\t\t<VERS vnumber=\"3\"> and they cast lots for my people. They traded a boy for a prostitute; they sold a little girl for wine so they could drink.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Why are you doing these things to me, Tyre and Sidon? Are you trying to get even with me, land of Philistia? I will very quickly repay you for what you have done!</VERS>\n\t\t\t<VERS vnumber=\"5\"> For you took my silver and my gold and brought my precious valuables to your own palaces.</VERS>\n\t\t\t<VERS vnumber=\"6\"> You sold Judeans and Jerusalemites to the Greeks, removing them far from their own country.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Look! I am rousing them from that place to which you sold them. I will repay you for what you have done!</VERS>\n\t\t\t<VERS vnumber=\"8\"> I will sell your sons and daughters to the people of Judah. They will sell them to the Sabeans, a nation far away. Indeed, the LORD has spoken!</VERS>\n\t\t\t<VERS vnumber=\"9\"> Proclaim this among the nations: \"Prepare for a holy war! Call out the warriors! Let all these fighting men approach and attack!</VERS>\n\t\t\t<VERS vnumber=\"10\"> Beat your plowshares into swords, and your pruning hooks into spears! Let the weak say, 'I too am a warrior!'</VERS>\n\t\t\t<VERS vnumber=\"11\"> Lend your aid and come, all you surrounding nations, and gather yourselves to that place.\" Bring down, O LORD, your warriors!</VERS>\n\t\t\t<VERS vnumber=\"12\"> Let the nations be roused and let them go up to the valley of Jehoshaphat, for there I will sit in judgment on all the surrounding nations.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Rush forth with the sickle, for the harvest is ripe! Come, stomp the grapes, for the winepress is full! The vats overflow. Indeed, their evil is great!</VERS>\n\t\t\t<VERS vnumber=\"14\"> Crowds, great crowds are in the valley of decision, for the day of the LORD is near in the valley of decision!</VERS>\n\t\t\t<VERS vnumber=\"15\"> The sun and moon are darkened; the stars withhold their brightness.</VERS>\n\t\t\t<VERS vnumber=\"16\"> The LORD roars from Zion; from Jerusalem his voice bellows out. The heavens and the earth shake. But the LORD is a refuge for his people; he is a stronghold for the citizens of Israel.</VERS>\n\t\t\t<VERS vnumber=\"17\"> You will be convinced that I the LORD am your God, dwelling on Zion, my holy mountain. Jerusalem will be holy, conquering armies will no longer pass through it.</VERS>\n\t\t\t<VERS vnumber=\"18\"> On that day the mountains will drip with sweet wine, and the hills will flow with milk. All the dry stream beds of Judah will flow with water. A spring will flow out from the temple of the LORD, watering the Valley of Acacia Trees.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Egypt will be desolate and Edom will be a desolate wilderness, because of the violence they did to the people of Judah, in whose land they shed innocent blood.</VERS>\n\t\t\t<VERS vnumber=\"20\"> But Judah will reside securely forever, and Jerusalem will be secure from one generation to the next.</VERS>\n\t\t\t<VERS vnumber=\"21\"> I will avenge their blood which I had not previously acquitted. It is the LORD who dwells in Zion!</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"30\" bname=\"Amos\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> The following is a record of what Amos prophesied. He was one of the herdsmen from Tekoa. These prophecies about Israel were revealed to him during the time of King Uzziah of Judah and King Jeroboam son of Joash of Israel, two years before the earthquake.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Amos said: \"The LORD comes roaring out of Zion; from Jerusalem he comes bellowing! The shepherds' pastures wilt; the summit of Carmel withers.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> This is what the LORD says: \"Because Damascus has committed three crimes, make that four!, I will not revoke my decree of judgment. They ripped through Gilead like threshing sledges with iron teeth.</VERS>\n\t\t\t<VERS vnumber=\"4\"> So I will set Hazael's house on fire; fire will consume Ben Hadad's fortresses.</VERS>\n\t\t\t<VERS vnumber=\"5\"> I will break the bar on the gate of Damascus. I will remove the ruler from Wicked Valley, the one who holds the royal scepter from Beth Eden. The people of Aram will be deported to Kir.\" The LORD has spoken!</VERS>\n\t\t\t<VERS vnumber=\"6\"> This is what the LORD says: \"Because Gaza has committed three crimes, make that four!, I will not revoke my decree of judgment. They deported a whole community and sold them to Edom.</VERS>\n\t\t\t<VERS vnumber=\"7\"> So I will set Gaza's city wall on fire; fire will consume her fortresses.</VERS>\n\t\t\t<VERS vnumber=\"8\"> I will remove the ruler from Ashdod, the one who holds the royal scepter from Ashkelon. I will strike Ekron with my hand; the rest of the Philistines will also die.\" The sovereign LORD has spoken!</VERS>\n\t\t\t<VERS vnumber=\"9\"> This is what the LORD says: \"Because Tyre has committed three crimes, make that four!, I will not revoke my decree of judgment. They sold a whole community to Edom; they failed to observe a treaty of brotherhood.</VERS>\n\t\t\t<VERS vnumber=\"10\"> So I will set fire to Tyre's city wall; fire will consume her fortresses.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> This is what the LORD says: \"Because Edom has committed three crimes, make that four!, I will not revoke my decree of judgment. He chased his brother with a sword; he wiped out his allies. In his anger he tore them apart without stopping to rest; in his fury he relentlessly attacked them.</VERS>\n\t\t\t<VERS vnumber=\"12\"> So I will set Teman on fire; fire will consume Bozrah's fortresses.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> This is what the LORD says: \"Because the Ammonites have committed three crimes, make that four!, I will not revoke my decree of judgment. They ripped open Gilead's pregnant women so they could expand their territory.</VERS>\n\t\t\t<VERS vnumber=\"14\"> So I will set fire to Rabbah's city wall; fire will consume her fortresses. War cries will be heard on the day of battle; a strong gale will blow on the day of the windstorm.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Ammon's king will be deported; he and his officials will be carried off together.\" The LORD has spoken!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> This is what the LORD says: \"Because Moab has committed three crimes, make that four!, I will not revoke my decree of judgment. They burned the bones of Edom's king into lime.</VERS>\n\t\t\t<VERS vnumber=\"2\"> So I will set Moab on fire, and it will consume Kerioth's fortresses. Moab will perish in the heat of battle amid war cries and the blaring of the ram's horn.</VERS>\n\t\t\t<VERS vnumber=\"3\"> I will remove Moab's leader; I will kill all Moab's officials with him.\" The LORD has spoken!</VERS>\n\t\t\t<VERS vnumber=\"4\"> This is what the LORD says: \"Because Judah has committed three covenant transgressions, make that four!, I will not revoke my decree of judgment. They rejected the LORD's law; they did not obey his commands. Their false gods, to which their fathers were loyal, led them astray.</VERS>\n\t\t\t<VERS vnumber=\"5\"> So I will set Judah on fire, and it will consume Jerusalem's fortresses.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> This is what the LORD says: \"Because Israel has committed three covenant transgressions, make that four!, I will not revoke my decree of judgment. They sold the innocent for silver, the needy for a pair of sandals.</VERS>\n\t\t\t<VERS vnumber=\"7\"> They trample on the dirt-covered heads of the poor; they push the destitute away. A man and his father go to the same girl; in this way they show disrespect for my moral purity.</VERS>\n\t\t\t<VERS vnumber=\"8\"> They stretch out on clothing seized as collateral; they do so right beside every altar! They drink wine bought with the fines they have levied; they do so right in the temple of their God!</VERS>\n\t\t\t<VERS vnumber=\"9\"> For Israel's sake I destroyed the Amorites. They were as tall as cedars and as strong as oaks, but I destroyed the fruit on their branches and their roots in the ground.</VERS>\n\t\t\t<VERS vnumber=\"10\"> I brought you up from the land of Egypt; I led you through the wilderness for forty years so you could take the Amorites' land as your own.</VERS>\n\t\t\t<VERS vnumber=\"11\"> I made some of your sons prophets and some of your young men Nazirites. Is this not true, you Israelites?\" The LORD is speaking!</VERS>\n\t\t\t<VERS vnumber=\"12\"> \"But you made the Nazirites drink wine; you commanded the prophets, 'Do not prophesy!'</VERS>\n\t\t\t<VERS vnumber=\"13\"> Look! I will press you down, like a cart loaded down with grain presses down.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Fast runners will find no place to hide; strong men will have no strength left; warriors will not be able to save their lives.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Archers will not hold their ground; fast runners will not save their lives, nor will those who ride horses.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Bravehearted warriors will run away naked in that day.\" The LORD is speaking!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> Listen, you Israelites, to this message which the LORD is proclaiming against you! This message is for the entire clan I brought up from the land of Egypt: </VERS>\n\t\t\t<VERS vnumber=\"2\"> \"I have chosen you alone from all the clans of the earth. Therefore I will punish you for all your sins.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> Do two walk together without having met?</VERS>\n\t\t\t<VERS vnumber=\"4\"> Does a lion roar in the woods if he has not cornered his prey? Does a young lion bellow from his den if he has not caught something?</VERS>\n\t\t\t<VERS vnumber=\"5\"> Does a bird swoop down into a trap on the ground if there is no bait? Does a trap spring up from the ground unless it has surely caught something?</VERS>\n\t\t\t<VERS vnumber=\"6\"> If an alarm sounds in a city, do people not fear? If disaster overtakes a city, is the LORD not responsible?</VERS>\n\t\t\t<VERS vnumber=\"7\"> Certainly the sovereign LORD does nothing without first revealing his plan to his servants the prophets.</VERS>\n\t\t\t<VERS vnumber=\"8\"> A lion has roared! Who is not afraid? The sovereign LORD has spoken! Who can refuse to prophesy?</VERS>\n\t\t\t<VERS vnumber=\"9\"> Make this announcement in the fortresses of Ashdod and in the fortresses in the land of Egypt. Say this: \"Gather on the hills around Samaria! Observe the many acts of violence taking place within the city, the oppressive deeds occurring in it.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"They do not know how to do what is right.\" (The LORD is speaking.) \"They store up the spoils of destructive violence in their fortresses.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Therefore,\" says the sovereign LORD, \"an enemy will encircle the land. He will take away your power; your fortresses will be looted.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> This is what the LORD says: \"Just as a shepherd salvages from the lion's mouth a couple of leg bones or a piece of an ear, so the Israelites who live in Samaria will be salvaged. They will be left with just a corner of a bed, and a part of a couch.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> Listen and warn the family of Jacob! The sovereign LORD, the God who commands armies, is speaking!</VERS>\n\t\t\t<VERS vnumber=\"14\"> \"Certainly when I punish Israel for their covenant transgressions, I will destroy Bethel's altars. The horns of the altar will be cut off and fall to the ground.</VERS>\n\t\t\t<VERS vnumber=\"15\"> I will destroy both the winter and summer houses. The houses filled with ivory will be ruined, the great houses will be swept away.\" The LORD is speaking!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\"> Listen to this message, you cows of Bashan who live on Mount Samaria! You oppress the poor; you crush the needy. You say to your husbands, \"Bring us more to drink!\"</VERS>\n\t\t\t<VERS vnumber=\"2\"> The sovereign LORD confirms this oath by his own holy character: \"Certainly the time is approaching when you will be carried away in baskets, every last one of you in fishermen's pots.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Each of you will go straight through the gaps in the walls; you will be thrown out toward Harmon.\" The LORD is speaking!</VERS>\n\t\t\t<VERS vnumber=\"4\"> \"Go to Bethel and rebel! At Gilgal rebel some more! Bring your sacrifices in the morning, your tithes on the third day!</VERS>\n\t\t\t<VERS vnumber=\"5\"> Burn a thank offering of bread made with yeast! Make a public display of your voluntary offerings! For you love to do this, you Israelites.\" The sovereign LORD is speaking!</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"But surely I gave you no food to eat in any of your cities; you lacked food everywhere you live. Still you did not come back to me.\" The LORD is speaking!</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"I withheld rain from you three months before the harvest. I gave rain to one city, but not to another. One field would get rain, but the field that received no rain dried up.</VERS>\n\t\t\t<VERS vnumber=\"8\"> People from two or three cities staggered into one city to get water, but remained thirsty. Still you did not come back to me.\" The LORD is speaking!</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"I destroyed your crops with blight and disease. Locusts kept devouring your orchards, vineyards, fig trees, and olive trees. Still you did not come back to me.\" The LORD is speaking!</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"I sent against you a plague like one of the Egyptian plagues. I killed your young men with the sword, along with the horses you had captured. I made the stench from the corpses rise up into your nostrils. Still you did not come back to me.\" The LORD is speaking!</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"I overthrew some of you the way God overthrew Sodom and Gomorrah. You were like a burning stick snatched from the flames. Still you did not come back to me.\" The LORD is speaking!</VERS>\n\t\t\t<VERS vnumber=\"12\"> \"Therefore this is what I will do to you, Israel. Because I will do this to you, prepare to meet your God, Israel!</VERS>\n\t\t\t<VERS vnumber=\"13\"> For here he is! He formed the mountains and created the wind. He reveals his plans to men. He turns the dawn into darkness and marches on the heights of the earth. The LORD, the God who commands armies, is his name!\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"5\">\n\t\t\t<VERS vnumber=\"1\"> Listen to this funeral song I am ready to sing about you, family of Israel:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"The virgin Israel has fallen down and will not get up again. She is abandoned on her own land with no one to help her get up.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> The sovereign LORD says this: \"The city that marches out with a thousand soldiers will have only a hundred left; the town that marches out with a hundred soldiers will have only ten left for the family of Israel.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> The LORD says this to the family of Israel: \"Seek me so you can live!</VERS>\n\t\t\t<VERS vnumber=\"5\"> Do not seek Bethel! Do not visit Gilgal! Do not journey down to Beer Sheba! For the people of Gilgal will certainly be carried into exile; and Bethel will become a place where disaster abounds.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> Seek the LORD so you can live! Otherwise he will break out like fire against Joseph's family; the fire will consume and no one will be able to quench it and save Bethel.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The Israelites turn justice into bitterness; they throw what is fair and right to the ground.</VERS>\n\t\t\t<VERS vnumber=\"8\"> (But there is one who made the constellations Pleiades and Orion; he can turn the darkness into morning and daylight into night. He summons the water of the seas and pours it out on the earth's surface. The LORD is his name!</VERS>\n\t\t\t<VERS vnumber=\"9\"> He flashes destruction down upon the strong so that destruction overwhelms the fortified places.)</VERS>\n\t\t\t<VERS vnumber=\"10\"> The Israelites hate anyone who arbitrates at the city gate; they despise anyone who speaks honestly.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Therefore, because you make the poor pay taxes on their crops and exact a grain tax from them, you will not live in the houses you built with chiseled stone, nor will you drink the wine from the fine vineyards you planted.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Certainly I am aware of your many rebellious acts and your numerous sins. You torment the innocent, you take bribes, and you deny justice to the needy at the city gate.</VERS>\n\t\t\t<VERS vnumber=\"13\"> For this reason whoever is smart keeps quiet in such a time, for it is an evil time.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Seek good and not evil so you can live! Then the LORD, the God who commands armies, just might be with you, as you claim he is.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Hate what is wrong, love what is right! Promote justice at the city gate! Maybe the LORD, the God who commands armies, will have mercy on those who are left from Joseph.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Because of Israel's sins this is what the LORD, the God who commands armies, the sovereign One, says: \"In all the squares there will be wailing, in all the streets they will mourn the dead. They will tell the field workers to lament and the professional mourners to wail.</VERS>\n\t\t\t<VERS vnumber=\"17\"> In all the vineyards there will be wailing, for I will pass through your midst,\" says the LORD.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Woe to those who wish for the day of the LORD! Why do you want the LORD's day of judgment to come? It will bring darkness, not light.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Disaster will be inescapable, as if a man ran from a lion only to meet a bear, then escaped into a house, leaned his hand against the wall, and was bitten by a poisonous snake.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Don't you realize the LORD's day of judgment will bring darkness, not light, gloomy blackness, not bright light?</VERS>\n\t\t\t<VERS vnumber=\"21\"> \"I absolutely despise your festivals! I get no pleasure from your religious assemblies!</VERS>\n\t\t\t<VERS vnumber=\"22\"> Even if you offer me burnt and grain offerings, I will not be satisfied; I will not look with favor on your peace offerings of fattened calves.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Take away from me your noisy songs; I don't want to hear the music of your stringed instruments.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Justice must flow like torrents of water, righteous actions like a stream that never dries up.</VERS>\n\t\t\t<VERS vnumber=\"25\"> You did not bring me sacrifices and grain offerings during the forty years you spent in the wilderness, family of Israel.</VERS>\n\t\t\t<VERS vnumber=\"26\"> You will pick up your images of Sikkuth, your king, and Kiyyun, your star god, which you made for yourselves,</VERS>\n\t\t\t<VERS vnumber=\"27\"> and I will drive you into exile beyond Damascus,\" says the LORD. He is called the God who commands armies!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"6\">\n\t\t\t<VERS vnumber=\"1\"> Woe to those who live in ease in Zion, to those who feel secure on Mount Samaria. They think of themselves as the elite class of the best nation. The family of Israel looks to them for leadership.</VERS>\n\t\t\t<VERS vnumber=\"2\"> They say to the people: \"Journey over to Calneh and look at it! Then go from there to Hamath-Rabbah! Then go down to Gath of the Philistines! Are they superior to our two kingdoms? Is their territory larger than yours?\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> You refuse to believe a day of disaster will come, but you establish a reign of violence.</VERS>\n\t\t\t<VERS vnumber=\"4\"> They lie around on beds decorated with ivory, and sprawl out on their couches. They eat lambs from the flock, and calves from the middle of the pen.</VERS>\n\t\t\t<VERS vnumber=\"5\"> They sing to the tune of stringed instruments; like David they invent musical instruments.</VERS>\n\t\t\t<VERS vnumber=\"6\"> They drink wine from sacrificial bowls, and pour the very best oils on themselves. Yet they are not concerned over the ruin of Joseph.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Therefore they will now be the first to go into exile, and the religious banquets where they sprawl on couches will end.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The sovereign LORD confirms this oath by his very own life. The LORD, the God who commands armies, is speaking: \"I despise Jacob's arrogance; I hate their fortresses. I will hand over to their enemies the city of Samaria and everything in it.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> If ten men are left in one house, they too will die.</VERS>\n\t\t\t<VERS vnumber=\"10\"> When their close relatives, the ones who will burn the corpses, pick up their bodies to remove the bones from the house, they will say to anyone who is in the inner rooms of the house, \"Is anyone else with you?\" He will respond, \"Be quiet! Don't invoke the LORD's name!\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> Indeed, look! The LORD is giving the command. He will smash the large house to bits, and the small house into little pieces.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Can horses run on rocky cliffs? Can one plow the sea with oxen? Yet you have turned justice into a poisonous plant, and the fruit of righteous actions into a bitter plant.</VERS>\n\t\t\t<VERS vnumber=\"13\"> You are happy because you conquered Lo-Debar. You say, \"Did we not conquer Karnaim by our own power?\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> \"Look! I am about to bring a nation against you, family of Israel.\" The LORD, the God who commands armies, is speaking. \"They will oppress you all the way from Lebo-Hamath to the Stream of the Arabah.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"7\">\n\t\t\t<VERS vnumber=\"1\"> The sovereign LORD showed me this: I saw him making locusts just as the crops planted late were beginning to sprout. (The crops planted late sprout after the royal harvest.)</VERS>\n\t\t\t<VERS vnumber=\"2\"> When they had completely consumed the earth's vegetation, I said, \"Sovereign LORD, forgive Israel! How can Jacob survive? He is too weak!\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> The LORD decided not to do this. \"It will not happen,\" the LORD said.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The sovereign LORD showed me this: I saw the sovereign LORD summoning a shower of fire. It consumed the great deep and devoured the fields.</VERS>\n\t\t\t<VERS vnumber=\"5\"> I said, \"Sovereign LORD, stop! How can Jacob survive? He is too weak!\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> The LORD decided not to do this. The sovereign LORD said, \"This will not happen either.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> He showed me this: I saw the sovereign One standing by a tin wall holding tin in his hand. </VERS>\n\t\t\t<VERS vnumber=\"8\"> The LORD said to me, \"What do you see, Amos?\" I said, \"Tin.\" The sovereign One then said, \"Look, I am about to place tin among my people Israel. I will no longer overlook their sin.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Isaac's centers of worship will become desolate; Israel's holy places will be in ruins. I will attack Jeroboam's dynasty with the sword.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> Amaziah the priest of Bethel sent this message to King Jeroboam of Israel: \"Amos is conspiring against you in the very heart of the kingdom of Israel! The land cannot endure all his prophecies.</VERS>\n\t\t\t<VERS vnumber=\"11\"> As a matter of fact, Amos is saying this: 'Jeroboam will die by the sword and Israel will certainly be carried into exile away from its land.'\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> Amaziah then said to Amos, \"Leave, you visionary! Run away to the land of Judah! Earn your living and prophesy there! </VERS>\n\t\t\t<VERS vnumber=\"13\"> Don't prophesy at Bethel any longer, for a royal temple and palace are here!\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> Amos replied to Amaziah, \"I was not a prophet by profession. No, I was a herdsman who also took care of sycamore fig trees.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Then the LORD took me from tending flocks and gave me this commission, 'Go! Prophesy to my people Israel!' </VERS>\n\t\t\t<VERS vnumber=\"16\"> So now listen to the LORD's message! You say, 'Don't prophesy against Israel! Don't preach against the family of Isaac!'</VERS>\n\t\t\t<VERS vnumber=\"17\"> \"Therefore this is what the LORD says: 'Your wife will become a prostitute in the streets and your sons and daughters will die violently. Your land will be given to others and you will die in a foreign land. Israel will certainly be carried into exile away from its land.'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"8\">\n\t\t\t<VERS vnumber=\"1\"> The sovereign LORD showed me this: I saw a basket of summer fruit.</VERS>\n\t\t\t<VERS vnumber=\"2\"> He said, \"What do you see, Amos?\" I replied, \"A basket of summer fruit.\" Then the LORD said to me, \"The end has come for my people Israel! I will no longer overlook their sins.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The women singing in the temple will wail in that day.\" The sovereign LORD is speaking. \"There will be many corpses littered everywhere! Be quiet!\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> Listen to this, you who trample the needy, and do away with the destitute in the land.</VERS>\n\t\t\t<VERS vnumber=\"5\"> You say, \"When will the new moon festival be over, so we can sell grain? When will the Sabbath end, so we can open up the grain bins? We're eager to sell less for a higher price, and to cheat the buyer with rigged scales!</VERS>\n\t\t\t<VERS vnumber=\"6\"> We're eager to trade silver for the poor, a pair of sandals for the needy! We want to mix in some chaff with the grain!\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> The LORD confirms this oath by the arrogance of Jacob: \"I swear I will never forget all you have done!</VERS>\n\t\t\t<VERS vnumber=\"8\"> Because of this the earth will quake, and all who live in it will mourn. The whole earth will rise like the River Nile, it will surge upward and then grow calm, like the Nile in Egypt.</VERS>\n\t\t\t<VERS vnumber=\"9\"> In that day,\" says the sovereign LORD, \"I will make the sun set at noon, and make the earth dark in the middle of the day.</VERS>\n\t\t\t<VERS vnumber=\"10\"> I will turn your festivals into funerals, and all your songs into funeral dirges. I will make everyone wear funeral clothes and cause every head to be shaved bald. I will make you mourn as if you had lost your only son; when it ends it will indeed have been a bitter day.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Be certain of this, the time is coming,\" says the sovereign LORD, \"when I will send a famine through the land, not a shortage of food or water but an end to divine revelation!</VERS>\n\t\t\t<VERS vnumber=\"12\"> People will stagger from sea to sea, and from the north around to the east. They will wander about looking for a revelation from the LORD, but they will not find any.</VERS>\n\t\t\t<VERS vnumber=\"13\"> In that day your beautiful young women and your young men will faint from thirst.</VERS>\n\t\t\t<VERS vnumber=\"14\"> These are the ones who now take oaths in the name of the sinful idol goddess of Samaria. They vow, 'As surely as your god lives, O Dan,' or 'As surely as your beloved one lives, O Beer Sheba!' But they will fall down and not get up again.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"9\">\n\t\t\t<VERS vnumber=\"1\"> I saw the sovereign One standing by the altar and he said, \"Strike the tops of the support pillars, so the thresholds shake! Knock them down on the heads of all the people, and I will kill the survivors with the sword. No one will be able to run away; no one will be able to escape.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Even if they could dig down into the netherworld, my hand would pull them up from there. Even if they could climb up to heaven, I would drag them down from there.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Even if they were to hide on the top of Mount Carmel, I would hunt them down and take them from there. Even if they tried to hide from me at the bottom of the sea, from there I would command the Sea Serpent to bite them.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Even when their enemies drive them into captivity, from there I will command the sword to kill them. I will not let them out of my sight; they will experience disaster, not prosperity.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> The sovereign LORD who commands armies will do this. He touches the earth and it dissolves; all who live on it mourn. The whole earth rises like the River Nile, and then grows calm like the Nile in Egypt.</VERS>\n\t\t\t<VERS vnumber=\"6\"> He builds the upper rooms of his palace in heaven and sets its foundation supports on the earth. He summons the water of the sea and pours it out on the earth's surface. The LORD is his name.</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"You Israelites are just like the Ethiopians in my sight,\" says the LORD. \"Certainly I brought Israel up from the land of Egypt, but I also brought the Philistines from Caphtor and the Arameans from Kir.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Look, the sovereign LORD is watching the sinful nation, and I will destroy it from the face of the earth. But I will not completely destroy the family of Jacob,\" says the LORD.</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"For look, I am giving a command and I will shake the family of Israel together with all the nations. It will resemble a sieve being shaken, when not even a pebble falls to the ground.</VERS>\n\t\t\t<VERS vnumber=\"10\"> All the sinners among my people will die by the sword, the ones who say, 'Disaster will not come near, it will not confront us.'</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"In that day I will rebuild the collapsing hut of David. I will seal its gaps, repair its ruins, and restore it to what it was like in days gone by.</VERS>\n\t\t\t<VERS vnumber=\"12\"> As a result they will conquer those left in Edom and all the nations subject to my rule.\" The LORD, who is about to do this, is speaking!</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"Be sure of this, the time is coming,\" says the LORD, \"when the plowman will catch up to the reaper and the one who stomps the grapes will overtake the planter. Juice will run down the slopes, it will flow down all the hillsides.</VERS>\n\t\t\t<VERS vnumber=\"14\"> I will bring back my people, Israel; they will rebuild the cities lying in rubble and settle down. They will plant vineyards and drink the wine they produce; they will grow orchards and eat the fruit they produce.</VERS>\n\t\t\t<VERS vnumber=\"15\"> I will plant them on their land and they will never again be uprooted from the land I have given them,\" says the LORD your God. </VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"31\" bname=\"Obadiah\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> The vision that Obadiah saw. The Lord GOD says this concerning Edom: We have heard a report from the LORD. An envoy was sent among the nations, saying, \"Arise! Let us make war against Edom!\"</VERS>\n\t\t\t<VERS vnumber=\"2\"> The LORD says, \"Look! I will make you a weak nation; you will be greatly despised!</VERS>\n\t\t\t<VERS vnumber=\"3\"> Your presumptuous heart has deceived you, you who reside in the safety of the rocky cliffs, whose home is high in the mountains. You think to yourself, 'No one can bring me down to the ground!'</VERS>\n\t\t\t<VERS vnumber=\"4\"> Even if you were to soar high like an eagle, even if you were to make your nest among the stars, I can bring you down even from there!\" says the LORD.</VERS>\n\t\t\t<VERS vnumber=\"5\"> \"If thieves came to rob you during the night, they would steal only as much as they wanted! If grape pickers came to harvest your vineyards, they would leave some behind for the poor! But you will be totally destroyed!</VERS>\n\t\t\t<VERS vnumber=\"6\"> How the people of Esau will be thoroughly plundered! Their hidden valuables will be ransacked!</VERS>\n\t\t\t<VERS vnumber=\"7\"> All your allies will force you from your homeland! Your treaty partners will deceive you and overpower you. Your trusted friends will set an ambush for you that will take you by surprise!</VERS>\n\t\t\t<VERS vnumber=\"8\"> At that time,\" the LORD says, \"I will destroy the wise sages of Edom! the advisers from Esau's mountain!</VERS>\n\t\t\t<VERS vnumber=\"9\"> Your warriors will be shattered, O Teman, so that everyone will be destroyed from Esau's mountain!</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"Because you violently slaughtered your relatives, the people of Jacob, shame will cover you, and you will be destroyed forever.</VERS>\n\t\t\t<VERS vnumber=\"11\"> You stood aloof while strangers took his army captive, and foreigners advanced to his gates. When they cast lots over Jerusalem, you behaved as though you were in league with them.</VERS>\n\t\t\t<VERS vnumber=\"12\"> You should not have gloated when your relatives suffered calamity. You should not have rejoiced over the people of Judah when they were destroyed. You should not have boasted when they suffered adversity.</VERS>\n\t\t\t<VERS vnumber=\"13\"> You should not have entered the city of my people when they experienced distress. You should not have joined in gloating over their misfortune when they suffered distress. You should not have looted their wealth when they endured distress.</VERS>\n\t\t\t<VERS vnumber=\"14\"> You should not have stood at the fork in the road to slaughter those trying to escape. You should not have captured their refugees when they suffered adversity.</VERS>\n\t\t\t<VERS vnumber=\"15\"> \"For the day of the LORD is approaching for all the nations! Just as you have done, so it will be done to you. You will get exactly what your deeds deserve.</VERS>\n\t\t\t<VERS vnumber=\"16\"> For just as you have drunk on my holy mountain, so all the nations will drink continually. They will drink, and they will gulp down; they will be as though they had never been.</VERS>\n\t\t\t<VERS vnumber=\"17\"> But on Mount Zion there will be a remnant of those who escape, and it will be a holy place once again. The descendants of Jacob will conquer those who had conquered them.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The descendants of Jacob will be a fire, and the descendants of Joseph a flame. The descendants of Esau will be like stubble. They will burn them up and devour them. There will not be a single survivor of the descendants of Esau!\" Indeed, the LORD has spoken it.</VERS>\n\t\t\t<VERS vnumber=\"19\"> The people of the Negev will take possession of Esau's mountain, and the people of the Shephelah will take possession of the land of the Philistines. They will also take possession of the territory of Ephraim and the territory of Samaria, and the people of Benjamin will take possession of Gilead.</VERS>\n\t\t\t<VERS vnumber=\"20\"> The exiles of this fortress of the people of Israel will take possession of what belongs to the people of Canaan, as far as Zarephath, and the exiles of Jerusalem who are in Sepharad will take possession of the towns of the Negev.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Those who have been delivered will go up on Mount Zion in order to rule over Esau's mountain. Then the LORD will reign as King!</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"32\" bname=\"Jonah\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> The LORD said to Jonah son of Amittai,</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Go immediately to Nineveh, that large capital city, and announce judgment against its people because their wickedness has come to my attention.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> Instead, Jonah immediately headed off to Tarshish to escape from the commission of the LORD. He traveled to Joppa and found a merchant ship heading to Tarshish. So he paid the fare and went aboard it to go with them to Tarshish far away from the LORD.</VERS>\n\t\t\t<VERS vnumber=\"4\"> But the LORD hurled a powerful wind on the sea. Such a violent tempest arose on the sea that the ship threatened to break up!</VERS>\n\t\t\t<VERS vnumber=\"5\"> The sailors were so afraid that each cried out to his own god and they flung the ship's cargo overboard to make the ship lighter. Jonah, meanwhile, had gone down into the hold below deck, had lain down, and was sound asleep.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The ship's captain approached him and said, \"What are you doing asleep? Get up! Cry out to your god! Perhaps your god might take notice of us so that we might not die!\" </VERS>\n\t\t\t<VERS vnumber=\"7\"> The sailors said to one another, \"Come on, let's cast lots to find out whose fault it is that this disaster has overtaken us. \" So they cast lots, and Jonah was singled out.</VERS>\n\t\t\t<VERS vnumber=\"8\"> They said to him, \"Tell us, whose fault is it that this disaster has overtaken us? What's your occupation? Where do you come from? What's your country? And who are your people?\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> He said to them, \"I am a Hebrew! And I worship the LORD, the God of heaven, who made the sea and the dry land.\" </VERS>\n\t\t\t<VERS vnumber=\"10\"> Hearing this, the men became even more afraid and said to him, \"What have you done?\" (The men said this because they knew that he was trying to escape from the LORD, because he had previously told them.)</VERS>\n\t\t\t<VERS vnumber=\"11\"> Because the storm was growing worse and worse, they said to him, \"What should we do to you to make the sea calm down for us?\" </VERS>\n\t\t\t<VERS vnumber=\"12\"> He said to them, \"Pick me up and throw me into the sea to make the sea quiet down, because I know it's my fault you are in this severe storm.\" </VERS>\n\t\t\t<VERS vnumber=\"13\"> Instead, they tried to row back to land, but they were not able to do so because the storm kept growing worse and worse.</VERS>\n\t\t\t<VERS vnumber=\"14\"> So they cried out to the LORD, \"Oh, please, LORD, don't let us die on account of this man! Don't hold us guilty of shedding innocent blood. After all, you, LORD, have done just as you pleased.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> So they picked Jonah up and threw him into the sea, and the sea stopped raging.</VERS>\n\t\t\t<VERS vnumber=\"16\"> The men feared the LORD greatly, and earnestly vowed to offer lavish sacrifices to the Lord. 1:17 The LORD sent a huge fish to swallow Jonah, and Jonah was in the stomach of the fish three days and three nights.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> Jonah prayed to the LORD his God from the stomach of the fish</VERS>\n\t\t\t<VERS vnumber=\"2\"> and said, \"I called out to the LORD from my distress, and he answered me; from the belly of Sheol I cried out for help, and you heard my prayer.</VERS>\n\t\t\t<VERS vnumber=\"3\"> You threw me into the deep waters, into the middle of the sea; the ocean current engulfed me; all the mighty waves you sent swept over me.</VERS>\n\t\t\t<VERS vnumber=\"4\"> I thought I had been banished from your sight, that I would never again see your holy temple!</VERS>\n\t\t\t<VERS vnumber=\"5\"> Water engulfed me up to my neck; the deep ocean surrounded me; seaweed was wrapped around my head.</VERS>\n\t\t\t<VERS vnumber=\"6\"> I went down to the very bottoms of the mountains; the gates of the netherworld barred me in forever; but you brought me up from the Pit, O LORD, my God.</VERS>\n\t\t\t<VERS vnumber=\"7\"> When my life was ebbing away, I called out to the LORD, and my prayer came to your holy temple.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Those who worship worthless idols forfeit the mercy that could be theirs.</VERS>\n\t\t\t<VERS vnumber=\"9\"> But as for me, I promise to offer a sacrifice to you with a public declaration of praise; I will surely do what I have promised. Salvation belongs to the LORD!\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> Then the LORD commanded the fish and it disgorged Jonah on dry land.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> The LORD said to Jonah a second time, </VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Go immediately to Nineveh, that large city, and proclaim to it the message that I tell you.\" </VERS>\n\t\t\t<VERS vnumber=\"3\"> So Jonah went immediately to Nineveh, as the LORD had said. (Now Nineveh was an enormous city, it required three days to walk through it!)</VERS>\n\t\t\t<VERS vnumber=\"4\"> When Jonah began to enter the city one day's walk, he announced, \"At the end of forty days, Nineveh will be overthrown!\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> The people of Nineveh believed in God, and they declared a fast and put on sackcloth, from the greatest to the least of them.</VERS>\n\t\t\t<VERS vnumber=\"6\"> When the news reached the king of Nineveh, he got up from his throne, took off his royal robe, put on sackcloth, and sat on ashes. </VERS>\n\t\t\t<VERS vnumber=\"7\"> He issued a proclamation and said, \"In Nineveh, by the decree of the king and his nobles: No human or animal, cattle or sheep, is to taste anything; they must not eat and they must not drink water. </VERS>\n\t\t\t<VERS vnumber=\"8\"> Every person and animal must put on sackcloth and must cry earnestly to God, and everyone must turn from their evil way of living and from the violence that they do.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Who knows? Perhaps God might be willing to change his mind and relent and turn from his fierce anger so that we might not die.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> When God saw their actions, they turned from their evil way of living!, God relented concerning the judgment he had threatened them with and he did not destroy them.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\"> This displeased Jonah terribly and he became very angry.</VERS>\n\t\t\t<VERS vnumber=\"2\"> He prayed to the LORD and said, \"Oh, LORD, this is just what I thought would happen when I was in my own country. This is what I tried to prevent by attempting to escape to Tarshish!, because I knew that you are gracious and compassionate, slow to anger and abounding in mercy, and one who relents concerning threatened judgment.</VERS>\n\t\t\t<VERS vnumber=\"3\"> So now, LORD, kill me instead, because I would rather die than live!\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> The LORD said, \"Are you really so very angry?\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> Jonah left the city and sat down east of it. He made a shelter for himself there and sat down under it in the shade to see what would happen to the city.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The LORD God appointed a little plant and caused it to grow up over Jonah to be a shade over his head to rescue him from his misery. Now Jonah was very delighted about the little plant.</VERS>\n\t\t\t<VERS vnumber=\"7\"> So God sent a worm at dawn the next day, and it attacked the little plant so that it dried up. </VERS>\n\t\t\t<VERS vnumber=\"8\"> When the sun began to shine, God sent a hot east wind. So the sun beat down on Jonah's head, and he grew faint. So he despaired of life, and said, \"I would rather die than live!\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> God said to Jonah, \"Are you really so very angry about the little plant?\" And he said, \"I am as angry as I could possibly be!\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> The LORD said, \"You were upset about this little plant, something for which you have not worked nor did you do anything to make it grow. It grew up overnight and died the next day.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Should I not be even more concerned about Nineveh, this enormous city? There are more than one hundred twenty thousand people in it who do not know right from wrong, as well as many animals!\"</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"33\" bname=\"Micah\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> This is the prophetic message that the LORD gave to Micah of Moresheth. He delivered this message during the reigns of Jotham, Ahaz, and Hezekiah, kings of Judah. The prophecies pertain to Samaria and Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Listen, all you nations! Pay attention, all inhabitants of earth! The sovereign LORD will testify against you; the LORD will accuse you from his majestic palace.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Look, the LORD is coming out of his dwelling place! He will descend and march on the earth's mountaintops!</VERS>\n\t\t\t<VERS vnumber=\"4\"> The mountains will disintegrate beneath him, and the valleys will be split in two. The mountains will melt like wax in a fire, the rocks will slide down like water cascading down a steep slope.</VERS>\n\t\t\t<VERS vnumber=\"5\"> All this is because of Jacob's rebellion and the sins of the nation of Israel. How has Jacob rebelled, you ask? Samaria epitomizes their rebellion! Where are Judah's pagan worship centers, you ask? They are right in Jerusalem!</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"I will turn Samaria into a heap of ruins in an open field, vineyards will be planted there! I will tumble the rubble of her stone walls down into the valley, and tear down her fortifications to their foundations.</VERS>\n\t\t\t<VERS vnumber=\"7\"> All her carved idols will be smashed to pieces; all her metal cult statues will be destroyed by fire. I will make a waste heap of all her images. Since she gathered the metal as a prostitute collects her wages, the idols will become a prostitute's wages again.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> For this reason I will mourn and wail; I will walk around barefoot and without my outer garments. I will howl like a wild dog, and screech like an owl.</VERS>\n\t\t\t<VERS vnumber=\"9\"> For Samaria's disease is incurable. It has infected Judah; it has spread to the leadership of my people and has even contaminated Jerusalem!</VERS>\n\t\t\t<VERS vnumber=\"10\"> Don't spread the news in Gath! Don't shed even a single tear! In Beth Leaphrah sit in the dust!</VERS>\n\t\t\t<VERS vnumber=\"11\"> Residents of Shaphir, pass by in nakedness and humiliation! The residents of Zaanan can't leave their city. Beth Ezel mourns, \"He takes from you what he desires.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> Indeed, the residents of Maroth hope for something good to happen, though the LORD has sent disaster against the city of Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Residents of Lachish, hitch the horses to the chariots! You influenced Daughter Zion to sin, for Israel's rebellious deeds can be traced back to you!</VERS>\n\t\t\t<VERS vnumber=\"14\"> Therefore you will have to say farewell to Moresheth Gath. The residents of Achzib will be as disappointing as a dried up well to the kings of Israel.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Residents of Mareshah, a conqueror will attack you, the leaders of Israel shall flee to Adullam.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Shave your heads bald as you mourn for the children you love; shave your foreheads as bald as an eagle, for they are taken from you into exile.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> Those who devise sinful plans are as good as dead, those who dream about doing evil as they lie in bed. As soon as morning dawns they carry out their plans, because they have the power to do so.</VERS>\n\t\t\t<VERS vnumber=\"2\"> They confiscate the fields they desire, and seize the houses they want. They defraud people of their homes, and deprive people of the land they have inherited.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Therefore the LORD says this: \"Look, I am devising disaster for this nation! It will be like a yoke from which you cannot free your neck. You will no longer walk proudly, for it will be a time of catastrophe.</VERS>\n\t\t\t<VERS vnumber=\"4\"> In that day people will sing this taunt song to you, they will mock you with this lament: 'We are completely destroyed; they sell off the property of my people. How they remove it from me! They assign our fields to the conqueror.'</VERS>\n\t\t\t<VERS vnumber=\"5\"> Therefore no one will assign you land in the LORD's community.</VERS>\n\t\t\t<VERS vnumber=\"6\"> 'Don't preach with such impassioned rhetoric,' they say excitedly. 'These prophets should not preach of such things; we will not be overtaken by humiliation.'</VERS>\n\t\t\t<VERS vnumber=\"7\"> Does the family of Jacob say, 'The LORD's patience can't be exhausted, he would never do such things'? To be sure, my commands bring a reward for those who obey them,</VERS>\n\t\t\t<VERS vnumber=\"8\"> but you rise up as an enemy against my people. You steal a robe from a friend, from those who pass by peacefully as if returning from a war.</VERS>\n\t\t\t<VERS vnumber=\"9\"> You wrongly evict widows among my people from their cherished homes. You defraud their children of their prized inheritance.</VERS>\n\t\t\t<VERS vnumber=\"10\"> But you are the ones who will be forced to leave! For this land is not secure! Sin will thoroughly destroy it!</VERS>\n\t\t\t<VERS vnumber=\"11\"> If a lying windbag should come and say, 'I'll promise you blessings of wine and beer,' he would be just the right preacher for these people!</VERS>\n\t\t\t<VERS vnumber=\"12\"> I will certainly gather all of you, O Jacob, I will certainly assemble those Israelites who remain. I will bring them together like sheep in a fold, like a flock in the middle of a pasture; they will be so numerous that they will make a lot of noise.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The one who can break through barriers will lead them out they will break out, pass through the gate, and leave. Their king will advance before them, The LORD himself will lead them.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> I said, \"Listen, you leaders of Jacob, you rulers of the nation of Israel! You ought to know what is just,</VERS>\n\t\t\t<VERS vnumber=\"2\"> yet you hate what is good, and love what is evil. You flay my people's skin and rip the flesh from their bones.</VERS>\n\t\t\t<VERS vnumber=\"3\"> You devour my people's flesh, strip off their skin, and crush their bones. You chop them up like flesh in a pot, like meat in a kettle.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Someday these sinners will cry to the LORD for help, but he will not answer them. He will hide his face from them at that time, because they have done such wicked deeds.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> This is what the LORD says: \"The prophets who mislead my people are as good as dead. If someone gives them enough to eat, they offer an oracle of peace. But if someone does not give them food, they are ready to declare war on him.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Therefore night will fall, and you will receive no visions; it will grow dark, and you will no longer be able to read the omens. The sun will set on these prophets, and the daylight will turn to darkness over their heads.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The prophets will be ashamed; the omen readers will be humiliated. All of them will cover their mouths, for they will receive no divine oracles.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> But I am full of the courage that the LORD's Spirit gives, and have a strong commitment to justice. This enables me to confront Jacob with its rebellion, and Israel with its sin.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Listen to this, you leaders of the family of Jacob, you rulers of the nation of Israel! You hate justice and pervert all that is right.</VERS>\n\t\t\t<VERS vnumber=\"10\"> You build Zion through bloody crimes, Jerusalem through unjust violence.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Her leaders take bribes when they decide legal cases, her priests proclaim rulings for profit, and her prophets read omens for pay. Yet they claim to trust the LORD and say, \"The LORD is among us. Disaster will not overtake us!\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> Therefore, because of you, Zion will be plowed up like a field, Jerusalem will become a heap of ruins, and the Temple Mount will become a hill overgrown with brush!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\"> In the future the LORD's Temple Mount will be the most important mountain of all; it will be more prominent than other hills. People will stream to it.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Many nations will come, saying, \"Come on! Let's go up to the LORD's mountain, to the temple of Jacob's God, so he can teach us his commands and we can live by his laws.\" For Zion will be the source of instruction; the LORD's teachings will proceed from Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"3\"> He will arbitrate between many peoples and settle disputes between many distant nations. They will beat their swords into plowshares, and their spears into pruning hooks. Nations will not use weapons against other nations, and they will no longer train for war.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Each will sit under his own grapevine or under his own fig tree without any fear. The LORD who commands armies has decreed it.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Though all the nations follow their respective gods, we will follow the LORD our God forever.</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"In that day,\" says the LORD, \"I will gather the lame, and assemble the outcasts whom I injured.</VERS>\n\t\t\t<VERS vnumber=\"7\"> I will transform the lame into the nucleus of a new nation, and those far off into a mighty nation. The LORD will reign over them on Mount Zion, from that day forward and forevermore.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> As for you, watchtower for the flock, fortress of Daughter Zion, your former dominion will be restored, the sovereignty that belongs to Daughter Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Jerusalem, why are you now shouting so loudly? Has your king disappeared? Has your wise leader been destroyed? Is this why pain grips you as if you were a woman in labor?</VERS>\n\t\t\t<VERS vnumber=\"10\"> Twist and strain, Daughter Zion, as if you were in labor! For you will leave the city and live in the open field. You will go to Babylon, but there you will be rescued. There the LORD will deliver you from the power of your enemies.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Many nations have now assembled against you. They say, \"Jerusalem must be desecrated, so we can gloat over Zion!\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> But they do not know what the LORD is planning; they do not understand his strategy. He has gathered them like stalks of grain to be threshed at the threshing floor.</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"Get up and thresh, Daughter Zion! For I will give you iron horns; I will give you bronze hooves, and you will crush many nations.\" You will devote to the LORD the spoils you take from them, and dedicate their wealth to the sovereign Ruler of the whole earth.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"5\">\n\t\t\t<VERS vnumber=\"1\">  But now slash yourself, daughter surrounded by soldiers! We are besieged! With a scepter they strike Israel's ruler on the side of his face.</VERS>\n\t\t\t<VERS vnumber=\"2\">  As for you, Bethlehem Ephrathah, seemingly insignificant among the clans of Judah, from you a king will emerge who will rule over Israel on my behalf, one whose origins are in the distant past.</VERS>\n\t\t\t<VERS vnumber=\"3\"> So the LORD will hand the people of Israel over to their enemies until the time when the woman in labor gives birth. Then the rest of the king's countrymen will return to be reunited with the people of Israel.</VERS>\n\t\t\t<VERS vnumber=\"4\"> He will assume his post and shepherd the people by the LORD's strength, by the sovereign authority of the LORD his God. They will live securely, for at that time he will be honored even in the distant regions of the earth.</VERS>\n\t\t\t<VERS vnumber=\"5\"> He will give us peace. Should the Assyrians try to invade our land and attempt to set foot in our fortresses, we will send against them seven shepherd-rulers, make that eight commanders.</VERS>\n\t\t\t<VERS vnumber=\"6\"> They will rule the land of Assyria with the sword, the land of Nimrod with a drawn sword. Our king will rescue us from the Assyrians should they attempt to invade our land and try to set foot in our territory.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Those survivors from Jacob will live in the midst of many nations. They will be like the dew the LORD sends, like the rain on the grass, that does not hope for men to come or wait around for humans to arrive.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Those survivors from Jacob will live among the nations, in the midst of many peoples. They will be like a lion among the animals of the forest, like a young lion among the flocks of sheep, which attacks when it passes through; it rips its prey and there is no one to stop it.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Lift your hand triumphantly against your adversaries; may all your enemies be destroyed!</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"In that day,\" says the LORD, \"I will destroy your horses from your midst, and smash your chariots.</VERS>\n\t\t\t<VERS vnumber=\"11\"> I will destroy the cities of your land, and tear down all your fortresses.</VERS>\n\t\t\t<VERS vnumber=\"12\"> I will remove the sorcery that you practice, and you will no longer have omen readers living among you.</VERS>\n\t\t\t<VERS vnumber=\"13\"> I will remove your idols and sacred pillars from your midst; you will no longer worship what your own hands made.</VERS>\n\t\t\t<VERS vnumber=\"14\"> I will uproot your images of Asherah from your midst, and destroy your idols.</VERS>\n\t\t\t<VERS vnumber=\"15\"> I will angrily seek vengeance on the nations that do not obey me.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"6\">\n\t\t\t<VERS vnumber=\"1\"> Listen to what the LORD says: \"Get up! Defend yourself before the mountains! Present your case before the hills!\"</VERS>\n\t\t\t<VERS vnumber=\"2\"> Hear the LORD's accusation, you mountains, you enduring foundations of the earth! For the LORD has a case against his people; he has a dispute with Israel!</VERS>\n\t\t\t<VERS vnumber=\"3\"> \"My people, how have I wronged you? How have I wearied you? Answer me!</VERS>\n\t\t\t<VERS vnumber=\"4\"> In fact, I brought you up from the land of Egypt, I delivered you from that place of slavery. I sent Moses, Aaron, and Miriam to lead you.</VERS>\n\t\t\t<VERS vnumber=\"5\"> My people, recall how King Balak of Moab planned to harm you, how Balaam son of Beor responded to him. Recall how you journeyed from Shittim to Gilgal, so you might acknowledge that the LORD has treated you fairly.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> With what should I enter the LORD's presence? With what should I bow before the sovereign God? Should I enter his presence with burnt offerings, with year-old calves?</VERS>\n\t\t\t<VERS vnumber=\"7\"> Will the LORD accept a thousand rams, or ten thousand streams of olive oil? Should I give him my firstborn child as payment for my rebellion, my offspring, my own flesh and blood, for my sin?</VERS>\n\t\t\t<VERS vnumber=\"8\"> He has told you, O man, what is good, and what the LORD really wants from you: He wants you to promote justice, to be faithful, and to live obediently before your God.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Listen! The LORD is calling to the city! It is wise to respect your authority, O LORD! Listen, O nation, and those assembled in the city!</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"I will not overlook, O sinful house, the dishonest gain you have hoarded away, or the smaller-than-standard measure I hate so much.</VERS>\n\t\t\t<VERS vnumber=\"11\"> I do not condone the use of rigged scales, or a bag of deceptive weights.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The city's rich men think nothing of resorting to violence; her inhabitants lie, their tongues speak deceptive words.</VERS>\n\t\t\t<VERS vnumber=\"13\"> I will strike you brutally and destroy you because of your sin.</VERS>\n\t\t\t<VERS vnumber=\"14\"> You will eat, but not be satisfied. Even if you have the strength to overtake some prey, you will not be able to carry it away; if you do happen to carry away something, I will deliver it over to the sword.</VERS>\n\t\t\t<VERS vnumber=\"15\"> You will plant crops, but will not harvest them; you will squeeze oil from the olives, but you will have no oil to rub on your bodies; you will squeeze juice from the grapes, but you will have no wine to drink.</VERS>\n\t\t\t<VERS vnumber=\"16\"> You implement the regulations of Omri, and all the practices of Ahab's dynasty; you follow their policies. Therefore I will make you an appalling sight, the city's inhabitants will be taunted derisively, and nations will mock all of you.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"7\">\n\t\t\t<VERS vnumber=\"1\"> I am depressed! Indeed, it is as if the summer fruit has been gathered, and the grapes have been harvested. There is no grape cluster to eat, no fresh figs that I crave so much.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Faithful men have disappeared from the land; there are no godly men left. They all wait in ambush so they can shed blood; they hunt their own brother with a net.</VERS>\n\t\t\t<VERS vnumber=\"3\"> They are determined to be experts at doing evil; government officials and judges take bribes, prominent men make demands, and they all do what is necessary to satisfy them.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The best of them is like a thorn; the most godly among them are more dangerous than a row of thorn bushes. The day you try to avoid by posting watchmen, your appointed time of punishment, is on the way, and then you will experience confusion.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Do not rely on a friend; do not trust a companion! Don't even share secrets with the one who lies in your arms!</VERS>\n\t\t\t<VERS vnumber=\"6\"> For a son thinks his father is a fool, a daughter challenges her mother, and a daughter-in-law her mother-in-law; a man's enemies are his own servants.</VERS>\n\t\t\t<VERS vnumber=\"7\"> But I will keep watching for the LORD; I will wait for the God who delivers me. My God will hear my lament.</VERS>\n\t\t\t<VERS vnumber=\"8\"> My enemies, do not gloat over me! Though I have fallen, I will get up. Though I sit in darkness, the LORD will be my light.</VERS>\n\t\t\t<VERS vnumber=\"9\"> I must endure the LORD's anger, for I have sinned against him. But then he will defend my cause, and accomplish justice on my behalf. He will lead me out into the light; I will experience firsthand his deliverance.</VERS>\n\t\t\t<VERS vnumber=\"10\"> When my enemies see this, they will be covered with shame. They say to me, \"Where is the LORD your God?\" I will gloat over them. Then they will be trampled down like mud in the streets.</VERS>\n\t\t\t<VERS vnumber=\"11\"> It will be a day for rebuilding your walls; in that day your boundary will be extended.</VERS>\n\t\t\t<VERS vnumber=\"12\"> In that day people will come to you from Assyria as far as Egypt, from Egypt as far as the Euphrates River, from the seacoasts and the mountains.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The earth will become desolate because of what its inhabitants have done.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Shepherd your people with your shepherd's rod, the flock that belongs to you, the one that lives alone in a thicket, in the midst of a pastureland. Allow them to graze in Bashan and Gilead, as they did in the old days.</VERS>\n\t\t\t<VERS vnumber=\"15\"> \"As in the days when you departed from the land of Egypt, I will show you miraculous deeds.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> Nations will see this and be disappointed by all their strength, they will put their hands over their mouths, and act as if they were deaf.</VERS>\n\t\t\t<VERS vnumber=\"17\"> They will lick the dust like a snake, like serpents crawling on the ground. They will come trembling from their strongholds to the LORD our God; they will be terrified of you.</VERS>\n\t\t\t<VERS vnumber=\"18\"> There is no other God like you! You forgive sin and pardon the rebellion of those who remain among your people. You do not remain angry forever, but delight in showing loyal love.</VERS>\n\t\t\t<VERS vnumber=\"19\"> You will once again have mercy on us; you will conquer our evil deeds; you will hurl our sins into the depths of the sea.</VERS>\n\t\t\t<VERS vnumber=\"20\"> You will be loyal to Jacob and extend your loyal love to Abraham, which you promised on oath to our ancestors in ancient times.</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"34\" bname=\"Nahum\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> The oracle against Nineveh; the book of the vision of Nahum the Elkoshite:</VERS>\n\t\t\t<VERS vnumber=\"2\"> The LORD is a zealous and avenging God; the LORD is avenging and very angry. The LORD takes vengeance against his foes; he sustains his rage against his enemies.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The LORD is slow to anger but great in power; the LORD will certainly not allow the wicked to go unpunished. He marches out in the whirlwind and the raging storm; dark storm clouds billow like dust under his feet.</VERS>\n\t\t\t<VERS vnumber=\"4\"> He shouts a battle cry against the sea and makes it dry up; he makes all the rivers run dry. Bashan and Carmel wither; the blossom of Lebanon withers.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The mountains tremble before him, the hills convulse; the earth is laid waste before him, the world and all its inhabitants are laid waste.</VERS>\n\t\t\t<VERS vnumber=\"6\"> No one can withstand his indignation! No one can resist his fierce anger! His wrath is poured out like volcanic fire, boulders are broken up as he approaches.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The LORD is good, indeed, he is a fortress in time of distress, and he protects those who seek refuge in him.</VERS>\n\t\t\t<VERS vnumber=\"8\"> But with an overwhelming flood he will make a complete end of Nineveh; he will drive his enemies into darkness.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Whatever you plot against the LORD, he will completely destroy! Distress will not arise a second time.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Surely they will be totally consumed like entangled thorn bushes, like the drink of drunkards, like very dry stubble.</VERS>\n\t\t\t<VERS vnumber=\"11\"> From you, O Nineveh, one has marched forth who plots evil against the LORD, a wicked military strategist.</VERS>\n\t\t\t<VERS vnumber=\"12\"> This is what the LORD says: \"Even though they are powerful, and what is more, even though their army is numerous, nevertheless, they will be destroyed and trickle away! Although I afflicted you, I will afflict you no more.</VERS>\n\t\t\t<VERS vnumber=\"13\"> And now, I will break Assyria's yoke bar from your neck; I will tear apart the shackles that are on you.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> The LORD has issued a decree against you: \"Your dynasty will come to an end. I will destroy the idols and images in the temples of your gods. I will desecrate your grave, because you are accursed!\"</VERS>\n\t\t\t<VERS vnumber=\"15\">  Look! A herald is running on the mountains! A messenger is proclaiming deliverance: \"Celebrate your sacred festivals, O Judah! Fulfill your sacred vows to praise God! For never again will the wicked Assyrians invade you, they have been completely destroyed.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\">  The watchmen of Nineveh shout: \"An enemy who will scatter you is marching out to attack you!\" \"Guard the rampart! Watch the road! Prepare yourselves for battle! Muster your mighty strength!\"</VERS>\n\t\t\t<VERS vnumber=\"2\"> For the LORD will restore the majesty of Jacob, as well as the majesty of Israel, though their enemies have plundered them and have destroyed their fields.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The shields of his warriors are dyed red; the mighty soldiers are dressed in scarlet garments. The metal fittings of the chariots shine like fire on the day of battle; the soldiers brandish their spears.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The chariots race madly through the streets, they rush back and forth in the broad plazas; they look like lightning bolts, they dash here and there like flashes of lightning.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The commander orders his officers; they stumble as they advance; they rush to the city wall and they set up the covered siege tower.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The sluice gates are opened; the royal palace is deluged and dissolves.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Nineveh is taken into exile and is led away; her slave girls moan like doves while they beat their breasts.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Nineveh was like a pool of water throughout her days, but now her people are running away; she cries out: \"Stop! Stop!\", but no one turns back.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Her conquerors cry out: \"Plunder the silver! Plunder the gold!\" There is no end to the treasure; riches of every kind of precious thing.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Destruction, devastation, and desolation! Their hearts faint, their knees tremble, each stomach churns, each face turns pale!</VERS>\n\t\t\t<VERS vnumber=\"11\"> Where now is the den of the lions, the feeding place of the young lions, where the lion, lioness, and lion cub once prowled and no one disturbed them?</VERS>\n\t\t\t<VERS vnumber=\"12\"> The lion tore apart as much prey as his cubs needed and strangled prey to provide food for his lionesses; he filled his lairs with prey and his dens with torn flesh.</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"I am against you!\" declares the LORD who commands armies: \"I will burn your chariots with fire; the sword will devour your young lions; you will no longer prey upon the land; the voices of your messengers will no longer be heard.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> Woe to the city guilty of bloodshed! She is full of lies; she is filled with plunder; she has hoarded her spoil!</VERS>\n\t\t\t<VERS vnumber=\"2\"> The chariot drivers will crack their whips; the chariot wheels will shake the ground; the chariot horses will gallop; the war chariots will bolt forward!</VERS>\n\t\t\t<VERS vnumber=\"3\"> The charioteers will charge ahead; their swords will flash and their spears will glimmer! There will be many people slain; there will be piles of the dead, and countless casualties, so many that people will stumble over the corpses.</VERS>\n\t\t\t<VERS vnumber=\"4\"> \"Because you have acted like a wanton prostitute, a seductive mistress who practices sorcery, who enslaves nations by her harlotry, and entices peoples by her sorcery,</VERS>\n\t\t\t<VERS vnumber=\"5\"> I am against you,\" declares the LORD who commands armies. \"I will strip off your clothes! I will show your nakedness to the nations and your shame to the kingdoms;</VERS>\n\t\t\t<VERS vnumber=\"6\"> I will pelt you with filth; I will treat you with contempt; I will make you a public spectacle.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Everyone who sees you will turn away from you in disgust; they will say, 'Nineveh has been devastated! Who will lament for her?' There will be no one to comfort you!\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> You are no more secure than Thebes, she was located on the banks of the Nile; the waters surrounded her, her rampart was the sea, the water was her wall.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Cush and Egypt had limitless strength; Put and the Libyans were among her allies.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Yet she went into captivity as an exile; even her infants were smashed to pieces at the head of every street. They cast lots for her nobility; all her dignitaries were bound with chains.</VERS>\n\t\t\t<VERS vnumber=\"11\"> You too will act like drunkards; you will go into hiding; you too will seek refuge from the enemy.</VERS>\n\t\t\t<VERS vnumber=\"12\"> All your fortifications will be like fig trees with first-ripe fruit: If they are shaken, their figs will fall into the mouth of the eater!</VERS>\n\t\t\t<VERS vnumber=\"13\"> Your warriors will be like women in your midst; the gates of your land will be wide open to your enemies; fire will consume the bars of your gates.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Draw yourselves water for a siege! Strengthen your fortifications! Trample the mud and tread the clay! Make mud bricks to strengthen your walls!</VERS>\n\t\t\t<VERS vnumber=\"15\"> There the fire will consume you; the sword will cut you down; it will devour you like the young locust would. Multiply yourself like the young locust; multiply yourself like the flying locust!</VERS>\n\t\t\t<VERS vnumber=\"16\"> Increase your merchants more than the stars of heaven! They are like the young locust which sheds its skin and flies away.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Your courtiers are like locusts, your officials are like a swarm of locusts! They encamp in the walls on a cold day, yet when the sun rises, they fly away; and no one knows where they are.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Your shepherds are sleeping, O king of Assyria! Your officers are slumbering! Your people are scattered like sheep on the mountains and there is no one to regather them!</VERS>\n\t\t\t<VERS vnumber=\"19\"> Your destruction is like an incurable wound; your demise is like a fatal injury! All who hear what has happened to you will clap their hands for joy, for no one ever escaped your endless cruelty!</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"35\" bname=\"Habakkuk\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> The following is the message which God revealed to Habakkuk the prophet:</VERS>\n\t\t\t<VERS vnumber=\"2\"> How long, LORD, must I cry for help? But you do not listen! I call out to you, \"Violence!\" But you do not intervene!</VERS>\n\t\t\t<VERS vnumber=\"3\"> Why do you force me to witness injustice? Why do you put up with wrongdoing? Destruction and violence confront me; conflict is present and one must endure strife.</VERS>\n\t\t\t<VERS vnumber=\"4\"> For this reason the law lacks power, and justice is never carried out. Indeed, the wicked intimidate the innocent. For this reason justice is perverted.</VERS>\n\t\t\t<VERS vnumber=\"5\"> \"Look at the nations and pay attention! You will be shocked and amazed! For I will do something in your lifetime that you will not believe even though you are forewarned.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Look, I am about to empower the Babylonians, that ruthless and greedy nation. They sweep across the surface of the earth, seizing dwelling places that do not belong to them.</VERS>\n\t\t\t<VERS vnumber=\"7\"> They are frightening and terrifying; they decide for themselves what is right.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Their horses are faster than leopards and more alert than wolves in the desert. Their horses gallop, their horses come a great distance; like a vulture they swoop down quickly to devour their prey.</VERS>\n\t\t\t<VERS vnumber=\"9\"> All of them intend to do violence; every face is determined. They take prisoners as easily as one scoops up sand.</VERS>\n\t\t\t<VERS vnumber=\"10\"> They mock kings and laugh at rulers. They laugh at every fortified city; they build siege ramps and capture them.</VERS>\n\t\t\t<VERS vnumber=\"11\"> They sweep by like the wind and pass on. But the one who considers himself a god will be held guilty.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> LORD, you have been active from ancient times; my sovereign God, you are immortal. LORD, you have made them your instrument of judgment. Protector, you have appointed them as your instrument of punishment.</VERS>\n\t\t\t<VERS vnumber=\"13\"> You are too just to tolerate evil; you are unable to condone wrongdoing. So why do you put up with such treacherous people? Why do you say nothing when the wicked devour those more righteous than they are?</VERS>\n\t\t\t<VERS vnumber=\"14\"> You made people like fish in the sea, like animals in the sea that have no ruler.</VERS>\n\t\t\t<VERS vnumber=\"15\"> The Babylonian tyrant pulls them all up with a fishhook; he hauls them in with his throw net. When he catches them in his dragnet, he is very happy.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Because of his success he offers sacrifices to his throw net and burns incense to his dragnet; for because of them he has plenty of food, and more than enough to eat.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Will he then continue to fill and empty his throw net? Will he always destroy nations and spare none?</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> I will stand at my watch post; I will remain stationed on the city wall. I will keep watching, so I can see what he says to me and can know how I should answer when he counters my argument.</VERS>\n\t\t\t<VERS vnumber=\"2\"> The LORD responded: \"Write down this message! Record it legibly on tablets, so the one who announces it may read it easily.</VERS>\n\t\t\t<VERS vnumber=\"3\"> For the message is a witness to what is decreed; it gives reliable testimony about how matters will turn out. Even if the message is not fulfilled right away, wait patiently; for it will certainly come to pass, it will not arrive late.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Look, the one whose desires are not upright will faint from exhaustion, but the person of integrity will live because of his faithfulness.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Indeed, wine will betray the proud, restless man! His appetite is as big as Sheol's; like death, he is never satisfied. He gathers all the nations; he seizes all peoples.</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"But all these nations will someday taunt him and ridicule him with proverbial sayings: 'The one who accumulates what does not belong to him is as good as dead (How long will this go on?), he who gets rich by extortion!'</VERS>\n\t\t\t<VERS vnumber=\"7\"> Your creditors will suddenly attack; those who terrify you will spring into action, and they will rob you.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Because you robbed many countries, all who are left among the nations will rob you. You have shed human blood and committed violent acts against lands, cities, and those who live in them.</VERS>\n\t\t\t<VERS vnumber=\"9\"> The one who builds his house by unjust gain is as good as dead. He does this so he can build his nest way up high and escape the clutches of disaster.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Your schemes will bring shame to your house. Because you destroyed many nations, you will self-destruct.</VERS>\n\t\t\t<VERS vnumber=\"11\"> For the stones in the walls will cry out, and the wooden rafters will answer back.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The one who builds a city by bloodshed is as good as dead, he who starts a town by unjust deeds.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Be sure of this! The LORD who commands armies has decreed: The nations' efforts will go up in smoke; their exhausting work will be for nothing.</VERS>\n\t\t\t<VERS vnumber=\"14\"> For recognition of the LORD's sovereign majesty will fill the earth just as the waters fill up the sea.</VERS>\n\t\t\t<VERS vnumber=\"15\"> \"You who force your neighbor to drink wine are as good as dead, you who make others intoxicated by forcing them to drink from the bowl of your furious anger, so you can look at their genitals.</VERS>\n\t\t\t<VERS vnumber=\"16\"> But you will become drunk with shame, not majesty. Now it is your turn to drink and expose your uncircumcised foreskin! The cup of wine in the LORD's right hand is coming to you, and disgrace will replace your majestic glory!</VERS>\n\t\t\t<VERS vnumber=\"17\"> For you will pay in full for your violent acts against Lebanon; terrifying judgment will come upon you because of the way you destroyed the wild animals living there. You have shed human blood and committed violent acts against lands, cities, and those who live in them.</VERS>\n\t\t\t<VERS vnumber=\"18\"> What good is an idol? Why would a craftsman make it? What good is a metal image that gives misleading oracles? Why would its creator place his trust in it and make such mute, worthless things?</VERS>\n\t\t\t<VERS vnumber=\"19\"> The one who says to wood, 'Wake up!' is as good as dead, he who says to speechless stone, 'Awake!' Can it give reliable guidance? It is overlaid with gold and silver; it has no life's breath inside it.</VERS>\n\t\t\t<VERS vnumber=\"20\"> But the LORD is in his majestic palace. The whole earth is speechless in his presence!\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> This is a prayer of Habakkuk the prophet:</VERS>\n\t\t\t<VERS vnumber=\"2\"> LORD, I have heard the report of what you did; I am awed, LORD, by what you accomplished. In our time repeat those deeds; in our time reveal them again. But when you cause turmoil, remember to show us mercy!</VERS>\n\t\t\t<VERS vnumber=\"3\"> God comes from Teman, the sovereign one from Mount Paran. Selah. His splendor covers the skies, his glory fills the earth.</VERS>\n\t\t\t<VERS vnumber=\"4\"> He is as bright as lightning; a two-pronged lightning bolt flashes from his hand. This is the outward display of his power.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Plague goes before him; pestilence marches right behind him.</VERS>\n\t\t\t<VERS vnumber=\"6\"> He takes his battle position and shakes the earth; with a mere look he frightens the nations. The ancient mountains disintegrate; the primeval hills are flattened. He travels on the ancient roads.</VERS>\n\t\t\t<VERS vnumber=\"7\"> I see the tents of Cushan overwhelmed by trouble; the tent curtains of the land of Midian are shaking.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Is the LORD mad at the rivers? Are you angry with the rivers? Are you enraged at the sea? Is this why you climb into your horse-drawn chariots, your victorious chariots?</VERS>\n\t\t\t<VERS vnumber=\"9\"> Your bow is ready for action; you commission your arrows. Selah. You cause flash floods on the earth's surface.</VERS>\n\t\t\t<VERS vnumber=\"10\"> When the mountains see you, they shake. The torrential downpour sweeps through. The great deep shouts out; it lifts its hands high.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The sun and moon stand still in their courses; the flash of your arrows drives them away, the bright light of your lightning-quick spear.</VERS>\n\t\t\t<VERS vnumber=\"12\"> You furiously stomp on the earth, you angrily trample down the nations.</VERS>\n\t\t\t<VERS vnumber=\"13\"> You march out to deliver your people, to deliver your special servant. You strike the leader of the wicked nation, laying him open from the lower body to the neck. Selah.</VERS>\n\t\t\t<VERS vnumber=\"14\"> You pierce the heads of his warriors with a spear. They storm forward to scatter us; they shout with joy as if they were plundering the poor with no opposition.</VERS>\n\t\t\t<VERS vnumber=\"15\"> But you trample on the sea with your horses, on the surging, raging waters.</VERS>\n\t\t\t<VERS vnumber=\"16\"> I listened and my stomach churned; the sound made my lips quiver. My frame went limp, as if my bones were decaying, and I shook as I tried to walk. I long for the day of distress to come upon the people who attack us.</VERS>\n\t\t\t<VERS vnumber=\"17\"> When the fig tree does not bud, and there are no grapes on the vines; when the olive trees do not produce, and the fields yield no crops; when the sheep disappear from the pen, and there are no cattle in the stalls,</VERS>\n\t\t\t<VERS vnumber=\"18\"> I will rejoice because of the LORD; I will be happy because of the God who delivers me!</VERS>\n\t\t\t<VERS vnumber=\"19\"> The sovereign LORD is my source of strength. He gives me the agility of a deer; he enables me to negotiate the rugged terrain. (This prayer is for the song leader. It is to be accompanied by stringed instruments.)</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"36\" bname=\"Zephaniah\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> This is the prophetic message that the LORD gave to Zephaniah son of Cushi, son of Gedaliah, son of Amariah, son of Hezekiah. Zephaniah delivered this message during the reign of King Josiah son of Amon of Judah:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"I will destroy everything from the face of the earth,\" says the LORD.</VERS>\n\t\t\t<VERS vnumber=\"3\"> \"I will destroy people and animals; I will destroy the birds in the sky and the fish in the sea. (The idolatrous images of these creatures will be destroyed along with evil people.) I will remove humanity from the face of the earth,\" says the LORD.</VERS>\n\t\t\t<VERS vnumber=\"4\"> \"I will attack Judah and all who live in Jerusalem. I will remove from this place every trace of Baal worship, as well as the very memory of the pagan priests.</VERS>\n\t\t\t<VERS vnumber=\"5\"> I will remove those who worship the stars in the sky from their rooftops, those who swear allegiance to the LORD while taking oaths in the name of their 'king,'</VERS>\n\t\t\t<VERS vnumber=\"6\"> and those who turn their backs on the LORD and do not want the LORD's help or guidance.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> Be silent before the Lord GOD, for the LORD's day of judgment is almost here. The LORD has prepared a sacrificial meal; he has ritually purified his guests.</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"On the day of the LORD's sacrificial meal, I will punish the princes and the king's sons, and all who wear foreign styles of clothing.</VERS>\n\t\t\t<VERS vnumber=\"9\"> On that day I will punish all who leap over the threshold, who fill the house of their master with wealth taken by violence and deceit.</VERS>\n\t\t\t<VERS vnumber=\"10\"> On that day,\" says the LORD, \"a loud cry will go up from the Fish Gate, wailing from the city's newer district, and a loud crash from the hills.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Wail, you who live in the market district, for all the merchants will disappear and those who count money will be removed.</VERS>\n\t\t\t<VERS vnumber=\"12\"> At that time I will search through Jerusalem with lamps. I will punish the people who are entrenched in their sin, those who think to themselves, 'The LORD neither rewards nor punishes.'</VERS>\n\t\t\t<VERS vnumber=\"13\"> Their wealth will be stolen and their houses ruined! They will not live in the houses they have built, nor will they drink the wine from the vineyards they have planted.</VERS>\n\t\t\t<VERS vnumber=\"14\"> The LORD's great day of judgment is almost here; it is approaching very rapidly! There will be a bitter sound on the LORD's day of judgment; at that time warriors will cry out in battle.</VERS>\n\t\t\t<VERS vnumber=\"15\"> That day will be a day of God's anger, a day of distress and hardship, a day of devastation and ruin, a day of darkness and gloom, a day of clouds and dark skies,</VERS>\n\t\t\t<VERS vnumber=\"16\"> a day of trumpet blasts and battle cries. Judgment will fall on the fortified cities and the high corner towers.</VERS>\n\t\t\t<VERS vnumber=\"17\"> I will bring distress on the people and they will stumble like blind men, for they have sinned against the LORD. Their blood will be poured out like dirt; their flesh will be scattered like manure.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Neither their silver nor their gold will be able to deliver them in the day of the LORD's angry judgment. The whole earth will be consumed by his fiery wrath. Indeed, he will bring terrifying destruction on all who live on the earth.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> Bunch yourselves together like straw, you undesirable nation,</VERS>\n\t\t\t<VERS vnumber=\"2\"> before God's decree becomes reality and the day of opportunity disappears like windblown chaff, before the LORD's raging anger overtakes you, before the day of the LORD's angry judgment overtakes you!</VERS>\n\t\t\t<VERS vnumber=\"3\"> Seek the LORD's favor, all you humble people of the land who have obeyed his commands! Strive to do what is right! Strive to be humble! Maybe you will be protected on the day of the LORD's angry judgment.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Indeed, Gaza will be deserted and Ashkelon will become a heap of ruins. Invaders will drive away the people of Ashdod by noon, and Ekron will be overthrown.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Those who live by the sea, the people who came from Crete, are as good as dead. The LORD has decreed your downfall, Canaan, land of the Philistines: \"I will destroy everyone who lives there!\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> The seacoast will be used as pasture lands by the shepherds and as pens for their flocks.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Those who are left from the kingdom of Judah will take possession of it. By the sea they will graze, in the houses of Ashkelon they will lie down in the evening, for the LORD their God will intervene for them and restore their prosperity.</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"I have heard Moab's taunts and the Ammonites' insults. They taunted my people and verbally harassed those living in Judah.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Therefore, as surely as I live,\" says the LORD who commands armies, the God of Israel, \"be certain that Moab will become like Sodom and the Ammonites like Gomorrah. They will be overrun by weeds, filled with salt pits, and permanently desolate. Those of my people who are left will plunder their belongings; those who are left in Judah will take possession of their land.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> This is how they will be repaid for their arrogance, for they taunted and verbally harassed the people of the LORD who commands armies.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The LORD will terrify them, for he will weaken all the gods of the earth. All the distant nations will worship the LORD in their own lands.</VERS>\n\t\t\t<VERS vnumber=\"12\"> \"You Ethiopians will also die by my sword!\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> The LORD will attack the north and destroy Assyria. He will make Nineveh a heap of ruins; it will be as barren as the desert.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Flocks and herds will lie down in the middle of it, as well as every kind of wild animal. Owls will sleep in the tops of its support pillars; they will hoot through the windows. Rubble will cover the thresholds; even the cedar work will be exposed to the elements.</VERS>\n\t\t\t<VERS vnumber=\"15\"> This is how the once-proud city will end up, the city that was so secure. She thought to herself, \"I am unique! No one can compare to me!\" What a heap of ruins she has become, a place where wild animals live! Everyone who passes by her taunts her and shakes his fist.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> The filthy, stained city is as good as dead; the city filled with oppressors is finished!</VERS>\n\t\t\t<VERS vnumber=\"2\"> She is disobedient; she refuses correction. She does not trust the LORD; she does not seek the advice of her God.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Her princes are as fierce as roaring lions; her rulers are as hungry as wolves in the desert, who completely devour their prey by morning.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Her prophets are proud; they are deceitful men. Her priests defile what is holy; they break God's laws.</VERS>\n\t\t\t<VERS vnumber=\"5\"> The just LORD resides within her; he commits no unjust acts. Every morning he reveals his justice. At dawn he appears without fail. Yet the unjust know no shame.</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"I destroyed nations; their walled cities are in ruins. I turned their streets into ruins; no one passes through them. Their cities are desolate; no one lives there.</VERS>\n\t\t\t<VERS vnumber=\"7\"> I thought, 'Certainly you will respect me! Now you will accept correction!' If she had done so, her home would not be destroyed by all the punishments I have threatened. But they eagerly sinned in everything they did.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Therefore you must wait patiently for me,\" says the LORD, \"for the day when I attack and take plunder. I have decided to gather nations together and assemble kingdoms, so I can pour out my fury on them, all my raging anger. For the whole earth will be consumed by my fiery anger.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Know for sure that I will then enable the nations to give me acceptable praise. All of them will invoke the LORD's name when they pray, and will worship him in unison.</VERS>\n\t\t\t<VERS vnumber=\"10\"> From beyond the rivers of Ethiopia, those who pray to me will bring me tribute.</VERS>\n\t\t\t<VERS vnumber=\"11\"> In that day you will not be ashamed of all your rebelliousness against me, for then I will remove from your midst those who proudly boast, and you will never again be arrogant on my holy hill.</VERS>\n\t\t\t<VERS vnumber=\"12\"> I will leave in your midst a humble and meek group of people, and they will find safety in the LORD's presence.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The Israelites who remain will not act deceitfully. They will not lie, and a deceitful tongue will not be found in their mouth. Indeed, they will graze peacefully like sheep and lie down; no one will terrify them.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> Shout for joy, Daughter Zion! Shout out, Israel! Be happy and boast with all your heart, Daughter Jerusalem!</VERS>\n\t\t\t<VERS vnumber=\"15\"> The LORD has removed the judgment against you; he has turned back your enemy. Israel's king, the LORD, is in your midst! You no longer need to fear disaster.</VERS>\n\t\t\t<VERS vnumber=\"16\"> On that day they will say to Jerusalem, \"Don't be afraid, Zion! Your hands must not be paralyzed from panic!</VERS>\n\t\t\t<VERS vnumber=\"17\"> The LORD your God is in your midst; he is a warrior who can deliver. He takes great delight in you; he renews you by his love; he shouts for joy over you.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> \"As for those who grieve because they cannot attend the festivals, I took them away from you; they became tribute and were a source of shame to you.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Look, at that time I will deal with those who mistreated you. I will rescue the lame sheep and gather together the scattered sheep. I will take away their humiliation and make the whole earth admire and respect them.</VERS>\n\t\t\t<VERS vnumber=\"20\"> At that time I will lead you, at the time I gather you together. Be sure of this! I will make all the nations of the earth respect and admire you when you see me restore you,\" says the LORD.</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"37\" bname=\"Haggai\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> On the first day of the sixth month of King Darius' second year, the LORD spoke this message through the prophet Haggai to Zerubbabel son of Shealtiel, governor of Judah, and to the high priest Joshua son of Jehozadak:</VERS>\n\t\t\t<VERS vnumber=\"2\"> The LORD who rules over all says this: \"These people have said, 'The time for rebuilding the LORD's temple has not yet come.'\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> So the LORD spoke through the prophet Haggai as follows:</VERS>\n\t\t\t<VERS vnumber=\"4\"> \"Is it right for you to live in richly paneled houses while my temple is in ruins?</VERS>\n\t\t\t<VERS vnumber=\"5\"> Here then is what the LORD who rules over all says: 'Think carefully about what you are doing.</VERS>\n\t\t\t<VERS vnumber=\"6\"> You have planted much, but have harvested little. You eat, but are never filled. You drink, but are still thirsty. You put on clothes, but are not warm. Those who earn wages end up with holes in their money bags.'\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"Moreover, the LORD who rules over all says: 'Pay close attention to these things also.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Go up to the hill country and bring back timber to build the temple. Then I will be pleased and honored,' says the LORD. </VERS>\n\t\t\t<VERS vnumber=\"9\"> 'You expected a large harvest, but instead there was little, and when you brought it home it disappeared right away. Why?' asks the LORD who rules over all. 'Because my temple remains in ruins, thanks to each of you favoring his own house!</VERS>\n\t\t\t<VERS vnumber=\"10\"> This is why the sky has held back its dew and the earth its produce.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Moreover, I have called for a drought that will affect the fields, the hill country, the grain, new wine, fresh olive oil, and everything that grows from the ground; it also will harm people, animals, and everything they produce.'\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> Then Zerubbabel son of Shealtiel and the high priest Joshua son of Jehozadak, along with the whole remnant of the people, obeyed the LORD their God. They responded favorably to the message of the prophet Haggai, who spoke just as the LORD their God had instructed him, and the people began to respect the LORD.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Then Haggai, the LORD's messenger, spoke the LORD's word to the people: \"I am with you!\" says the LORD. </VERS>\n\t\t\t<VERS vnumber=\"14\"> So the LORD energized and encouraged Zerubbabel son of Shealtiel, governor of Judah, the high priest Joshua son of Jehozadak, and the whole remnant of the people. They came and worked on the temple of their God, the LORD who rules over all. </VERS>\n\t\t\t<VERS vnumber=\"15\"> This took place on the twenty-fourth day of the sixth month of King Darius' second year.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> On the twenty-first day of the seventh month, the LORD spoke again through the prophet Haggai:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Ask the following questions to Zerubbabel son of Shealtiel, governor of Judah, the high priest Joshua son of Jehozadak, and the remnant of the people: </VERS>\n\t\t\t<VERS vnumber=\"3\"> 'Who among you survivors saw the former splendor of this temple? How does it look to you now? Isn't it nothing by comparison? </VERS>\n\t\t\t<VERS vnumber=\"4\"> Even so, take heart, Zerubbabel,' says the LORD. 'Take heart, Joshua son of Jehozadak, the high priest, and all you citizens of the land,' says the LORD, 'and begin to work. For I am with you,' says the LORD who rules over all. </VERS>\n\t\t\t<VERS vnumber=\"5\"> 'Do not fear, because I made a promise to your ancestors when they left Egypt, and my spirit even now testifies to you.'</VERS>\n\t\t\t<VERS vnumber=\"6\"> Moreover, the LORD who rules over all says: 'In just a little while I will once again shake the sky and the earth, the sea and the dry ground. </VERS>\n\t\t\t<VERS vnumber=\"7\"> I will also shake up all the nations, and they will offer their treasures; then I will fill this temple with glory,' says the LORD who rules over all.</VERS>\n\t\t\t<VERS vnumber=\"8\"> 'The silver and gold will be mine,' says the LORD who rules over all.</VERS>\n\t\t\t<VERS vnumber=\"9\"> 'The future splendor of this temple will be greater than that of former times,' the LORD who rules over all declares, 'and in this place I will give peace.'\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> On the twenty-fourth day of the ninth month of Darius' second year, the LORD spoke again to the prophet Haggai:</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"The LORD who rules over all says, 'Ask the priests about the law.</VERS>\n\t\t\t<VERS vnumber=\"12\"> If someone carries holy meat in a fold of his garment and that fold touches bread, a boiled dish, wine, olive oil, or any other food, will that item become holy?'\" The priests answered, \"It will not.\" </VERS>\n\t\t\t<VERS vnumber=\"13\"> Then Haggai asked, \"If a person who is ritually unclean because of touching a dead body comes in contact with one of these items, will it become unclean?\" The priests answered, \"It will be unclean.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> Then Haggai responded, \"'The people of this nation are unclean in my sight,' says the LORD. 'And so is all their effort; everything they offer is also unclean.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Now therefore reflect carefully on the recent past, before one stone was laid on another in the LORD's temple.</VERS>\n\t\t\t<VERS vnumber=\"16\"> From that time when one came expecting a heap of twenty measures, there were only ten; when one came to the wine vat to draw out fifty measures from it, there were only twenty. </VERS>\n\t\t\t<VERS vnumber=\"17\"> I struck all the products of your labor with blight, disease, and hail, and yet you brought nothing to me,' says the LORD. </VERS>\n\t\t\t<VERS vnumber=\"18\"> 'Think carefully about the past: from today, the twenty-fourth day of the ninth month, to the day work on the temple of the LORD was resumed, think about it.</VERS>\n\t\t\t<VERS vnumber=\"19\"> The seed is still in the storehouse, isn't it? And the vine, fig tree, pomegranate, and olive tree have not produced. Nevertheless, from today on I will bless you.'\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> Then the LORD spoke again to Haggai on the twenty-fourth day of the month:</VERS>\n\t\t\t<VERS vnumber=\"21\"> Tell Zerubbabel governor of Judah: 'I am ready to shake the sky and the earth. </VERS>\n\t\t\t<VERS vnumber=\"22\"> I will overthrow royal thrones and shatter the might of earthly kingdoms. I will overthrow chariots and those who ride them, and horses and their riders will fall as people kill one another.</VERS>\n\t\t\t<VERS vnumber=\"23\"> On that day,' says the LORD who rules over all, 'I will take you, Zerubbabel son of Shealtiel, my servant,' says the LORD, 'and I will make you like a signet ring, for I have chosen you,' says the LORD who rules over all.\"</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"38\" bname=\"Zechariah\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> In the eighth month of Darius' second year, the word of the LORD came to the prophet Zechariah, son of Berechiah son of Iddo, as follows:</VERS>\n\t\t\t<VERS vnumber=\"2\"> The LORD was very angry with your ancestors.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Therefore say to the people: The LORD who rules over all says, \"Turn to me,\" says the LORD who rules over all, \"and I will turn to you,\" says the LORD who rules over all. </VERS>\n\t\t\t<VERS vnumber=\"4\"> \"Do not be like your ancestors, to whom the former prophets called out, saying, 'The LORD who rules over all says, \"Turn now from your evil wickedness,\"' but they would by no means obey me,\" says the LORD.</VERS>\n\t\t\t<VERS vnumber=\"5\"> \"As for your ancestors, where are they? And did the prophets live forever?</VERS>\n\t\t\t<VERS vnumber=\"6\"> But have my words and statutes, which I commanded my servants the prophets, not outlived your fathers? Then they paid attention and confessed, 'The LORD who rules over all has indeed done what he said he would do to us, because of our sinful ways.'\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> On the twenty-fourth day of the eleventh month, the month Shebat, in Darius' second year, the word of the LORD came to the prophet Zechariah son of Berechiah son of Iddo, as follows:</VERS>\n\t\t\t<VERS vnumber=\"8\"> I was attentive that night and saw a man seated on a red horse that stood among some myrtle trees in the ravine. Behind him were red, sorrel, and white horses.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Then I asked one nearby, \"What are these, sir?\" The angelic messenger who replied to me said, \"I will show you what these are.\" </VERS>\n\t\t\t<VERS vnumber=\"10\"> Then the man standing among the myrtle trees spoke up and said, \"These are the ones whom the LORD has sent to walk about on the earth.\" </VERS>\n\t\t\t<VERS vnumber=\"11\"> The riders then agreed with the angel of the LORD, who was standing among the myrtle trees, \"We have been walking about on the earth, and now everything is at rest and quiet.\" </VERS>\n\t\t\t<VERS vnumber=\"12\"> The angel of the LORD then asked, \"LORD who rules over all, how long before you have compassion on Jerusalem and the other cities of Judah which you have been so angry with for these seventy years?\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> The LORD then addressed good, comforting words to the angelic messenger who was speaking to me.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Turning to me, the messenger then said, \"Cry out that the LORD who rules over all says, 'I am very much moved for Jerusalem and for Zion. </VERS>\n\t\t\t<VERS vnumber=\"15\"> But I am greatly displeased with the nations that take my grace for granted. I was a little displeased with them, but they have only made things worse for themselves.</VERS>\n\t\t\t<VERS vnumber=\"16\"> \"'Therefore,' says the LORD, 'I have become compassionate toward Jerusalem and will rebuild my temple in it,' says the LORD who rules over all. 'Once more a surveyor's measuring line will be stretched out over Jerusalem.' </VERS>\n\t\t\t<VERS vnumber=\"17\"> Speak up again with the message of the LORD who rules over all: 'My cities will once more overflow with prosperity, and once more the LORD will comfort Zion and validate his choice of Jerusalem.'\"</VERS>\n\t\t\t<VERS vnumber=\"18\">  Once again I looked and this time I saw four horns. </VERS>\n\t\t\t<VERS vnumber=\"19\"> So I asked the angelic messenger who spoke with me, \"What are these?\" He replied, \"These are the horns that have scattered Judah, Israel, and Jerusalem.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> Next the LORD showed me four blacksmiths.</VERS>\n\t\t\t<VERS vnumber=\"21\"> I asked, \"What are these going to do?\" He answered, \"These horns are the ones that have scattered Judah so that there is no one to be seen. But the blacksmiths have come to terrify Judah's enemies and cut off the horns of the nations that have thrust themselves against the land of Judah in order to scatter its people.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\">  I looked again, and there was a man with a measuring line in his hand.</VERS>\n\t\t\t<VERS vnumber=\"2\"> I asked, \"Where are you going?\" He replied, \"To measure Jerusalem in order to determine its width and its length.\" </VERS>\n\t\t\t<VERS vnumber=\"3\"> At this point the angelic messenger who spoke to me went out, and another messenger came to meet him </VERS>\n\t\t\t<VERS vnumber=\"4\"> and said to him, \"Hurry, speak to this young man as follows: 'Jerusalem will no longer be enclosed by walls because of the multitude of people and animals there. </VERS>\n\t\t\t<VERS vnumber=\"5\"> But I (the LORD says) will be a wall of fire surrounding Jerusalem and the source of glory in her midst.'\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"You there! Flee from the northland!\" says the LORD, \"for like the four winds of heaven I have scattered you,\" says the LORD. </VERS>\n\t\t\t<VERS vnumber=\"7\"> \"Escape, Zion, you who live among the Babylonians!\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> For the LORD who rules over all says to me that for his own glory he has sent me to the nations that plundered you, for anyone who touches you touches the pupil of his eye.</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"I am about to punish them in such a way,\" he says, \"that they will be looted by their own slaves.\" Then you will know that the LORD who rules over all has sent me.</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"Sing out and be happy, Zion my daughter! For look, I have come; I will settle in your midst,\" says the LORD. </VERS>\n\t\t\t<VERS vnumber=\"11\"> \"Many nations will join themselves to the LORD on the day of salvation, and they will also be my people. Indeed, I will settle in the midst of you all.\" Then you will know that the LORD who rules over all has sent me to you. </VERS>\n\t\t\t<VERS vnumber=\"12\"> The LORD will take possession of Judah as his portion in the holy land and he will choose Jerusalem once again. </VERS>\n\t\t\t<VERS vnumber=\"13\"> Be silent in the LORD's presence, all people everywhere, for he is being moved to action in his holy dwelling place.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> Next I saw Joshua the high priest standing before the angel of the LORD, with Satan standing at his right hand to accuse him. </VERS>\n\t\t\t<VERS vnumber=\"2\"> The LORD said to Satan, \"May the LORD rebuke you, Satan! May the LORD, who has chosen Jerusalem, rebuke you! Isn't this man like a burning stick snatched from the fire?\" </VERS>\n\t\t\t<VERS vnumber=\"3\"> Now Joshua was dressed in filthy clothes as he stood there before the angel. </VERS>\n\t\t\t<VERS vnumber=\"4\"> The angel spoke up to those standing all around, \"Remove his filthy clothes.\" Then he said to Joshua, \"I have freely forgiven your iniquity and will dress you in fine clothing.\" </VERS>\n\t\t\t<VERS vnumber=\"5\"> Then I spoke up, \"Let a clean turban be put on his head.\" So they put a clean turban on his head and clothed him, while the angel of the LORD stood nearby.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Then the angel of the LORD exhorted Joshua solemnly:</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"The LORD who rules over all says, 'If you live and work according to my requirements, you will be able to preside over my temple and attend to my courtyards, and I will allow you to come and go among these others who are standing by you. </VERS>\n\t\t\t<VERS vnumber=\"8\"> Listen now, Joshua the high priest, both you and your colleagues who are sitting before you, all of you are a symbol that I am about to introduce my servant, the Branch.</VERS>\n\t\t\t<VERS vnumber=\"9\"> As for the stone I have set before Joshua, on the one stone there are seven eyes. I am about to engrave an inscription on it,' says the LORD who rules over all, 'to the effect that I will remove the iniquity of this land in a single day.</VERS>\n\t\t\t<VERS vnumber=\"10\"> In that day,' says the LORD who rules over all, 'everyone will invite his friend to fellowship under his vine and under his fig tree.'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\"> The angelic messenger who had been speaking with me then returned and woke me, as a person is wakened from sleep. </VERS>\n\t\t\t<VERS vnumber=\"2\"> He asked me, \"What do you see?\" I replied, \"I see a menorah of pure gold with a receptacle at the top and seven lamps, with fourteen pipes going to the lamps. </VERS>\n\t\t\t<VERS vnumber=\"3\"> There are also two olive trees beside it, one on the right of the receptacle and the other on the left.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> Then I asked the messenger who spoke with me, \"What are these, sir?\" </VERS>\n\t\t\t<VERS vnumber=\"5\"> He replied, \"Don't you know what these are?\" So I responded, \"No, sir.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> Therefore he told me, \"These signify the word of the LORD to Zerubbabel: 'Not by strength and not by power, but by my Spirit,' says the LORD who rules over all.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"What are you, you great mountain? Because of Zerubbabel you will become a level plain! And he will bring forth the temple capstone with shoutings of 'Grace! Grace!' because of this.\" </VERS>\n\t\t\t<VERS vnumber=\"8\"> Moreover, the word of the LORD came to me as follows:</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"The hands of Zerubbabel have laid the foundations of this temple, and his hands will complete it.\" Then you will know that the LORD who rules over all has sent me to you. </VERS>\n\t\t\t<VERS vnumber=\"10\"> For who dares make light of small beginnings? These seven eyes will joyfully look on the tin tablet in Zerubbabel's hand. (These are the eyes of the LORD, which constantly range across the whole earth.)</VERS>\n\t\t\t<VERS vnumber=\"11\"> Next I asked the messenger, \"What are these two olive trees on the right and the left of the menorah?\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> Before he could reply I asked again, \"What are these two extensions of the olive trees, which are emptying out the golden oil through the two golden pipes?\" </VERS>\n\t\t\t<VERS vnumber=\"13\"> He replied, \"Don't you know what these are?\" And I said, \"No, sir.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> So he said, \"These are the two anointed ones who stand by the Lord of the whole earth.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"5\">\n\t\t\t<VERS vnumber=\"1\"> Then I turned to look, and there was a flying scroll!</VERS>\n\t\t\t<VERS vnumber=\"2\"> Someone asked me, \"What do you see?\" I replied, \"I see a flying scroll thirty feet long and fifteen feet wide.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> The speaker went on to say, \"This is a curse traveling across the whole earth. For example, according to the curse whoever steals will be removed from the community; or on the other hand (according to the curse) whoever swears falsely will suffer the same fate.\" </VERS>\n\t\t\t<VERS vnumber=\"4\"> \"I will send it out,\" says the LORD who rules over all, \"and it will enter the house of the thief and of the person who swears falsely in my name. It will land in the middle of his house and destroy both timber and stones.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> After this the angelic messenger who had been speaking to me went out and said, \"Look, see what is leaving.\" </VERS>\n\t\t\t<VERS vnumber=\"6\"> I asked, \"What is it?\" And he replied, \"It is a basket for measuring grain that is moving away from here.\" Moreover, he said, \"This is their 'eye' throughout all the earth.\" </VERS>\n\t\t\t<VERS vnumber=\"7\"> Then a round lead cover was raised up, revealing a woman sitting inside the basket.</VERS>\n\t\t\t<VERS vnumber=\"8\"> He then said, \"This woman represents wickedness,\" and he pushed her down into the basket and placed the lead cover on top.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Then I looked again and saw two women going forth with the wind in their wings (they had wings like those of a stork) and they lifted up the basket between the earth and the sky. </VERS>\n\t\t\t<VERS vnumber=\"10\"> I asked the messenger who was speaking to me, \"Where are they taking the basket?\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> He replied, \"To build a temple for her in the land of Babylonia. When it is finished, she will be placed there in her own residence.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"6\">\n\t\t\t<VERS vnumber=\"1\"> Once more I looked, and this time I saw four chariots emerging from between two mountains of bronze.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Harnessed to the first chariot were red horses, to the second black horses,</VERS>\n\t\t\t<VERS vnumber=\"3\"> to the third white horses, and to the fourth spotted horses, all of them strong.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Then I asked the angelic messenger who was speaking with me, \"What are these, sir?\" </VERS>\n\t\t\t<VERS vnumber=\"5\"> The messenger replied, \"These are the four spirits of heaven that have been presenting themselves before the Lord of all the earth.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The chariot with the black horses is going to the north country and the white ones are going after them, but the spotted ones are going to the south country.</VERS>\n\t\t\t<VERS vnumber=\"7\"> All these strong ones are scattering; they have sought permission to go and walk about over the earth.\" The Lord had said, \"Go! Walk about over the earth!\" So they are doing so.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Then he cried out to me, \"Look! The ones going to the northland have brought me peace about the northland.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> The word of the LORD came to me as follows:</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"Choose some people from among the exiles, namely, Heldai, Tobijah, and Jedaiah, all of whom have come from Babylon, and when you have done so go to the house of Josiah son of Zephaniah.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Then take some silver and gold to make a crown and set it on the head of Joshua son of Jehozadak, the high priest. </VERS>\n\t\t\t<VERS vnumber=\"12\"> Then say to him, 'The LORD who rules over all says, \"Look, here is the man whose name is Branch, who will sprout up from his place and build the temple of the LORD.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Indeed, he will build the temple of the LORD, and he will be clothed in splendor, sitting as king on his throne. Moreover, there will be a priest with him on his throne and they will see eye to eye on everything. </VERS>\n\t\t\t<VERS vnumber=\"14\"> The crown will then be turned over to Helem, Tobijah, Jedaiah, and Hen son of Zephaniah as a memorial in the temple of the LORD. </VERS>\n\t\t\t<VERS vnumber=\"15\"> Then those who are far away will come and build the temple of the LORD so that you may know that the LORD who rules over all has sent me to you. This will all come to pass if you completely obey the voice of the LORD your God.\"'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"7\">\n\t\t\t<VERS vnumber=\"1\"> In King Darius' fourth year, on the fourth day of Kislev, the ninth month, the word of the LORD came to Zechariah. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Now the people of Bethel had sent Sharezer and Regem-Melech and their companions to seek the LORD's favor </VERS>\n\t\t\t<VERS vnumber=\"3\"> by asking both the priests of the temple of the LORD WHO RULES OVER ALL and the prophets, \"Should we weep in the fifth month, fasting as we have done over the years?\" </VERS>\n\t\t\t<VERS vnumber=\"4\"> The word of the LORD who rules over all then came to me,</VERS>\n\t\t\t<VERS vnumber=\"5\"> \"Speak to all the people and priests of the land as follows: 'When you fasted and lamented in the fifth and seventh months through all these seventy years, did you truly fast for me, for me, indeed?</VERS>\n\t\t\t<VERS vnumber=\"6\"> And now when you eat and drink, are you not doing so for yourselves?'\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> Should you not have obeyed the words that the LORD cried out through the former prophets when Jerusalem was peacefully inhabited and her surrounding cities, the Negev, and the Shephelah were also populated?</VERS>\n\t\t\t<VERS vnumber=\"8\"> Again the word of the LORD came to Zechariah:</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"The LORD who rules over all said, 'Exercise true judgment and show brotherhood and compassion to each other.</VERS>\n\t\t\t<VERS vnumber=\"10\"> You must not oppress the widow, the orphan, the foreigner, or the poor, nor should anyone secretly plot evil against his fellow human being.'</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"But they refused to pay attention, turning away stubbornly and stopping their ears so they could not hear.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Indeed, they made their heart as hard as diamond, so that they could not obey the Torah and the other words the LORD who rules over all had sent by his Spirit through the former prophets. Therefore, the LORD who rules over all had poured out great wrath.</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"'It then came about that just as I cried out, but they would not obey, so they will cry out, but I will not listen,' the LORD LORD WHO RULES OVER ALL had said. </VERS>\n\t\t\t<VERS vnumber=\"14\"> 'Rather, I will sweep them away in a storm into all the nations they are not familiar with.' Thus the land had become desolate because of them, with no one crossing through or returning, for they had made the fruitful land a waste.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"8\">\n\t\t\t<VERS vnumber=\"1\"> Then the word of the LORD who rules over all came to me as follows: </VERS>\n\t\t\t<VERS vnumber=\"2\"> \"The LORD who rules over all says, 'I am very much concerned for Zion; indeed, I am so concerned for her that my rage will fall on those who hurt her.'</VERS>\n\t\t\t<VERS vnumber=\"3\"> The Lord says, 'I have returned to Zion and will live within Jerusalem. Now Jerusalem will be called \"truthful city,\" \"mountain of the LORD who rules over all,\" \"holy mountain.\"' </VERS>\n\t\t\t<VERS vnumber=\"4\"> Moreover, the LORD who rules over all says, 'Old men and women will once more live in the plazas of Jerusalem, each one leaning on a cane because of advanced age.</VERS>\n\t\t\t<VERS vnumber=\"5\"> And the streets of the city will be full of boys and girls playing.</VERS>\n\t\t\t<VERS vnumber=\"6\"> And,' says the LORD who rules over all, 'though such a thing may seem to be difficult in the opinion of the small community of those days, will it also appear difficult to me?' asks the LORD who rules over all.</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"The LORD who rules over all asserts, 'I am about to save my people from the lands of the east and the west.</VERS>\n\t\t\t<VERS vnumber=\"8\"> And I will bring them to settle within Jerusalem. They will be my people, and I will be their God, in truth and righteousness.'</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"The LORD who rules over all also says, 'Gather strength, you who are listening to these words today from the mouths of the prophets who were there at the founding of the house of the LORD who rules over all, so that the temple might be built. </VERS>\n\t\t\t<VERS vnumber=\"10\"> Before that time there was no compensation for man or animal, nor was there any relief from adversity for those who came and went, because I had pitted everybody, each one, against everyone else.</VERS>\n\t\t\t<VERS vnumber=\"11\"> But I will be different now to this remnant of my people from the way I was in those days,' says the LORD who rules over all,</VERS>\n\t\t\t<VERS vnumber=\"12\"> 'for there will be a peaceful time of sowing, the vine will produce its fruit and the ground its yield, and the skies will rain down dew. Then I will allow the remnant of my people to possess all these things. </VERS>\n\t\t\t<VERS vnumber=\"13\"> And it will come about that just as you (both Judah and Israel) were a curse to the nations, so I will save you and you will be a blessing. Do not be afraid! Instead, be strong!'</VERS>\n\t\t\t<VERS vnumber=\"14\"> \"For the LORD who rules over all says, 'As I had planned to hurt you when your fathers made me angry,' says the LORD who rules over all, 'and I was not sorry, </VERS>\n\t\t\t<VERS vnumber=\"15\"> so, to the contrary, I have planned in these days to do good to Jerusalem and Judah, do not fear!</VERS>\n\t\t\t<VERS vnumber=\"16\"> These are the things you must do: Speak the truth, each of you, to one another. Practice true and righteous judgment in your courts.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Do not plan evil in your hearts against one another. Do not favor a false oath, these are all things that I hate,' says the LORD.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> The word of the LORD who rules over all came to me as follows:</VERS>\n\t\t\t<VERS vnumber=\"19\"> \"The LORD who rules over all says, 'The fast of the fourth, fifth, seventh, and tenth months will become joyful and happy, pleasant feasts for the house of Judah, so love truth and peace.' </VERS>\n\t\t\t<VERS vnumber=\"20\"> The LORD who rules over all says, 'It will someday come to pass that people, residents of many cities, will come.</VERS>\n\t\t\t<VERS vnumber=\"21\"> The inhabitants of one will go to another and say, \"Let's go up at once to ask the favor of the LORD, to seek the LORD who rules over all. Indeed, I'll go with you.\"'</VERS>\n\t\t\t<VERS vnumber=\"22\"> Many peoples and powerful nations will come to Jerusalem to seek the LORD who rules over all and to ask his favor.</VERS>\n\t\t\t<VERS vnumber=\"23\"> The LORD who rules over all says, 'In those days ten people from all languages and nations will grasp hold of, indeed, grab, the robe of one Jew and say, \"Let us go with you, for we have heard that God is with you.\"'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"9\">\n\t\t\t<VERS vnumber=\"1\"> An oracle of the word of the LORD concerning the land of Hadrach, with its focus on Damascus: The eyes of all humanity, especially of the tribes of Israel, are toward the LORD,</VERS>\n\t\t\t<VERS vnumber=\"2\"> as are those of Hamath also, which adjoins Damascus, and Tyre and Sidon, though they consider themselves to be very wise. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Tyre built herself a fortification and piled up silver like dust and gold like the mud of the streets!</VERS>\n\t\t\t<VERS vnumber=\"4\"> Nevertheless the Lord will evict her and shove her fortifications into the sea, she will be consumed by fire.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Ashkelon will see and be afraid; Gaza will be in great anguish, as will Ekron, for her hope will have been dried up. Gaza will lose her king, and Ashkelon will no longer be inhabited. </VERS>\n\t\t\t<VERS vnumber=\"6\"> A mongrel people will live in Ashdod, for I will greatly humiliate the Philistines.</VERS>\n\t\t\t<VERS vnumber=\"7\"> I will take away their abominable religious practices; then those who survive will become a community of believers in our God, like a clan in Judah, and Ekron will be like the Jebusites. </VERS>\n\t\t\t<VERS vnumber=\"8\"> Then I will surround my temple to protect it like a guard from anyone crossing back and forth; so no one will cross over against them anymore as an oppressor, for now I myself have seen it.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Rejoice greatly, daughter of Zion! Shout, daughter of Jerusalem! Look! Your king is coming to you: he is legitimate and victorious, humble and riding on a donkey, on a young donkey, the foal of a female donkey.</VERS>\n\t\t\t<VERS vnumber=\"10\"> I will remove the chariot from Ephraim and the warhorse from Jerusalem, and the battle bow will be removed. Then he will announce peace to the nations. His dominion will be from sea to sea and from the Euphrates River to the ends of the earth.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Moreover, as for you, because of our covenant relationship secured with blood, I will release your prisoners from the waterless pit.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Return to the stronghold, you prisoners, with hope; today I declare that I will return double what was taken from you.</VERS>\n\t\t\t<VERS vnumber=\"13\"> I will bend Judah as my bow; I will load the bow with Ephraim, my arrow! I will stir up your sons, Zion, against yours, Greece, and I will make you, Zion, like a warrior's sword.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Then the LORD will appear above them, and his arrow will shoot forth like lightning; the Lord GOD will blow the trumpet and will sally forth on the southern storm winds.</VERS>\n\t\t\t<VERS vnumber=\"15\"> The LORD who rules over all will guard them, and they will prevail and overcome with sling stones. Then they will drink, and will become noisy like drunkards, full like the sacrificial basin or like the corners of the altar.</VERS>\n\t\t\t<VERS vnumber=\"16\"> On that day the LORD their God will deliver them as the flock of his people, for they are the precious stones of a crown sparkling over his land.</VERS>\n\t\t\t<VERS vnumber=\"17\"> How precious and fair! Grain will make the young men flourish and new wine the young women.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"10\">\n\t\t\t<VERS vnumber=\"1\"> Ask the LORD for rain in the season of the late spring rains, the LORD who causes thunderstorms, and he will give everyone showers of rain and green growth in the field.</VERS>\n\t\t\t<VERS vnumber=\"2\"> For the household gods have spoken wickedness, the soothsayers have seen a lie, and as for the dreamers, they have disclosed emptiness and give comfort in vain. Therefore the people set out like sheep and become scattered because they have no shepherd.</VERS>\n\t\t\t<VERS vnumber=\"3\"> I am enraged at the shepherds and will punish the lead-goats. For the LORD who rules over all has brought blessing to his flock, the house of Judah, and will transform them into his majestic warhorse.</VERS>\n\t\t\t<VERS vnumber=\"4\"> From him will come the cornerstone, the wall peg, the battle bow, and every ruler.</VERS>\n\t\t\t<VERS vnumber=\"5\"> And they will be like warriors trampling the mud of the streets in battle. They will fight, for the LORD will be with them, and will defeat the enemy cavalry.</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"I (says the LORD) will strengthen the kingdom of Judah and deliver the people of Joseph and will bring them back because of my compassion for them. They will be as though I had never rejected them, for I am the LORD their God and therefore I will hear them.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The Ephraimites will be like warriors and will rejoice as if they had drunk wine. Their children will see it and rejoice; they will celebrate in the things of the LORD.</VERS>\n\t\t\t<VERS vnumber=\"8\"> I will signal for them and gather them, for I have already redeemed them; then they will become as numerous as they were before.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Though I scatter them among the nations, they will remember in far-off places, they and their children will sprout forth and return.</VERS>\n\t\t\t<VERS vnumber=\"10\"> I will bring them back from Egypt and gather them from Assyria. I will bring them to the lands of Gilead and Lebanon, for there will not be enough room for them in their own land. </VERS>\n\t\t\t<VERS vnumber=\"11\"> The LORD will cross the sea of storms and will calm its turbulence. The depths of the Nile will dry up, the pride of Assyria will be humbled, and the domination of Egypt will be no more. </VERS>\n\t\t\t<VERS vnumber=\"12\"> Thus I will strengthen them by my power, and they will walk about in my name,\" says the LORD.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"11\">\n\t\t\t<VERS vnumber=\"1\"> Open your gates, Lebanon, so that the fire may consume your cedars.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Howl, fir tree, because the cedar has fallen; the majestic trees have been destroyed. Howl, oaks of Bashan, because the impenetrable forest has fallen.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Listen to the howling of shepherds, because their magnificence has been destroyed. Listen to the roaring of young lions, because the thickets of the Jordan have been devastated.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The LORD my God says this: \"Shepherd the flock set aside for slaughter.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Those who buy them slaughter them and are not held guilty; those who sell them say, 'Blessed be the LORD, for I am rich.' Their own shepherds have no compassion for them. </VERS>\n\t\t\t<VERS vnumber=\"6\"> Indeed, I will no longer have compassion on the people of the land,\" says the LORD, \"but instead I will turn every last person over to his neighbor and his king. They will devastate the land, and I will not deliver it from them.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> So I began to shepherd the flock destined for slaughter, the most afflicted of all the flock. Then I took two staffs, calling one \"Pleasantness\" and the other \"Binders,\" and I tended the flock. </VERS>\n\t\t\t<VERS vnumber=\"8\"> Next I eradicated the three shepherds in one month, for I ran out of patience with them and, indeed, they detested me as well. </VERS>\n\t\t\t<VERS vnumber=\"9\"> I then said, \"I will not shepherd you. What is to die, let it die, and what is to be eradicated, let it be eradicated. As for those who survive, let them eat each other's flesh!\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> Then I took my staff \"Pleasantness\" and cut it in two to annul my covenant that I had made with all the people.</VERS>\n\t\t\t<VERS vnumber=\"11\"> So it was annulled that very day, and then the most afflicted of the flock who kept faith with me knew that that was the word of the LORD.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Then I said to them, \"If it seems good to you, pay me my wages, but if not, forget it.\" So they weighed out my payment, thirty pieces of silver.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The LORD then said to me, \"Throw to the potter that exorbitant sum at which they valued me!\" So I took the thirty pieces of silver and threw them to the potter at the temple of the LORD. </VERS>\n\t\t\t<VERS vnumber=\"14\"> Then I cut the second staff \"Binders\" in two in order to annul the covenant of brotherhood between Judah and Israel.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Again the LORD said to me, \"Take up once more the equipment of a foolish shepherd.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Indeed, I am about to raise up a shepherd in the land who will not take heed to the sheep headed to slaughter, will not seek the scattered, and will not heal the injured. Moreover, he will not nourish the one that is healthy but instead will eat the meat of the fat sheep and tear off their hooves.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Woe to the worthless shepherd who abandons the flock! May a sword fall on his arm and his right eye! May his arm wither completely away, and his right eye become completely blind!\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"12\">\n\t\t\t<VERS vnumber=\"1\"> The revelation of the word of the LORD concerning Israel: The LORD, he who stretches out the heavens and lays the foundations of the earth, who forms the human spirit within a person, says,</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"I am about to make Jerusalem a cup that brings dizziness to all the surrounding nations; indeed, Judah will also be included when Jerusalem is besieged. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Moreover, on that day I will make Jerusalem a heavy burden for all the nations, and all who try to carry it will be seriously injured; yet all the peoples of the earth will be assembled against it. </VERS>\n\t\t\t<VERS vnumber=\"4\"> In that day,\" says the LORD, \"I will strike every horse with confusion and its rider with madness. I will pay close attention to the house of Judah, but will strike all the horses of the nations with blindness. </VERS>\n\t\t\t<VERS vnumber=\"5\"> Then the leaders of Judah will say to themselves, 'The inhabitants of Jerusalem are a means of strength to us through their God, the LORD who rules over all.'</VERS>\n\t\t\t<VERS vnumber=\"6\"> On that day I will make the leaders of Judah like an igniter among sticks and a burning torch among sheaves, and they will burn up all the surrounding nations right and left. Then the people of Jerusalem will settle once more in their place, the city of Jerusalem. </VERS>\n\t\t\t<VERS vnumber=\"7\"> The LORD also will deliver the homes of Judah first, so that the splendor of the kingship of David and of the people of Jerusalem may not exceed that of Judah. </VERS>\n\t\t\t<VERS vnumber=\"8\"> On that day the LORD himself will defend the inhabitants of Jerusalem, so that the weakest among them will be like mighty David, and the dynasty of David will be like God, like the angel of the LORD before them.</VERS>\n\t\t\t<VERS vnumber=\"9\"> So on that day I will set out to destroy all the nations that come against Jerusalem.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"I will pour out on the kingship of David and the population of Jerusalem a spirit of grace and supplication so that they will look to me, the one they have pierced. They will lament for him as one laments for an only son, and there will be a bitter cry for him like the bitter cry for a firstborn.</VERS>\n\t\t\t<VERS vnumber=\"11\"> On that day the lamentation in Jerusalem will be as great as the lamentation at Hadad-Rimmon in the plain of Megiddo.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The land will mourn, clan by clan, the clan of the royal household of David by itself and their wives by themselves; the clan of the family of Nathan by itself and their wives by themselves;</VERS>\n\t\t\t<VERS vnumber=\"13\"> the clan of the descendants of Levi by itself and their wives by themselves; and the clan of the Shimeites by itself and their wives by themselves,</VERS>\n\t\t\t<VERS vnumber=\"14\"> all the clans that remain, each separately with their wives.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"13\">\n\t\t\t<VERS vnumber=\"1\"> \"In that day there will be a fountain opened up for the dynasty of David and the people of Jerusalem to cleanse them from sin and impurity.</VERS>\n\t\t\t<VERS vnumber=\"2\"> And also on that day,\" says the LORD who rules over all, \"I will remove the names of the idols from the land and they will never again be remembered. Moreover, I will remove the prophets and the unclean spirit from the land. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Then, if anyone prophesies in spite of this, his father and mother to whom he was born will say to him, 'You cannot live, for you lie in the name of the LORD.' Then his father and mother to whom he was born will run him through with a sword when he prophesies.</VERS>\n\t\t\t<VERS vnumber=\"4\"> \"Therefore, on that day each prophet will be ashamed of his vision when he prophesies and will no longer wear the hairy garment of a prophet to deceive the people.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Instead he will say, 'I am no prophet, indeed, I am a farmer, for a man has made me his indentured servant since my youth.'</VERS>\n\t\t\t<VERS vnumber=\"6\"> Then someone will ask him, 'What are these wounds on your chest?' and he will answer, 'Some that I received in the house of my friends.'</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"Awake, sword, against my shepherd, against the man who is my associate,\" says the LORD who rules over all. Strike the shepherd that the flock may be scattered; I will turn my hand against the insignificant ones.</VERS>\n\t\t\t<VERS vnumber=\"8\"> It will happen in all the land, says the LORD, that two-thirds of the people in it will be cut off and die, but one-third will be left in it.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Then I will bring the remaining third into the fire; I will refine them like silver is refined and will test them like gold is tested. They will call on my name and I will answer; I will say, 'These are my people,' and they will say, 'The LORD is my God.'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"14\">\n\t\t\t<VERS vnumber=\"1\"> A day of the LORD is about to come when your possessions will be divided as plunder in your midst. </VERS>\n\t\t\t<VERS vnumber=\"2\"> For I will gather all the nations against Jerusalem to wage war; the city will be taken, its houses plundered, and the women raped. Then half of the city will go into exile, but the remainder of the people will not be taken away.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Then the LORD will go to battle and fight against those nations, just as he fought battles in ancient days.</VERS>\n\t\t\t<VERS vnumber=\"4\"> On that day his feet will stand on the Mount of Olives which lies to the east of Jerusalem, and the Mount of Olives will be split in half from east to west, leaving a great valley. Half the mountain will move northward and the other half southward.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Then you will escape through my mountain valley, for the mountains will extend to Azal. Indeed, you will flee as you fled from the earthquake in the days of King Uzziah of Judah. Then the LORD my God will come with all his holy ones with him. </VERS>\n\t\t\t<VERS vnumber=\"6\"> On that day there will be no light, the sources of light in the heavens will congeal.</VERS>\n\t\t\t<VERS vnumber=\"7\"> It will happen in one day (a day known to the LORD); not in the day or the night, but in the evening there will be light.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Moreover, on that day living waters will flow out from Jerusalem, half of them to the eastern sea and half of them to the western sea; it will happen both in summer and in winter.</VERS>\n\t\t\t<VERS vnumber=\"9\"> The LORD will then be king over all the earth. In that day the LORD will be seen as one with a single name.</VERS>\n\t\t\t<VERS vnumber=\"10\"> All the land will change and become like the Arabah from Geba to Rimmon, south of Jerusalem; and Jerusalem will be raised up and will stay in its own place from the Benjamin Gate to the site of the First Gate and on to the Corner Gate, and from the Tower of Hananel to the royal winepresses.</VERS>\n\t\t\t<VERS vnumber=\"11\"> And people will settle there, and there will no longer be the threat of divine extermination, Jerusalem will dwell in security.</VERS>\n\t\t\t<VERS vnumber=\"12\"> But this will be the nature of the plague with which the LORD will strike all the nations that have fought against Jerusalem: Their flesh will decay while they stand on their feet, their eyes will rot away in their sockets, and their tongues will dissolve in their mouths.</VERS>\n\t\t\t<VERS vnumber=\"13\"> On that day there will be great confusion from the LORD among them; they will seize each other and attack one another violently.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Moreover, Judah will fight at Jerusalem, and the wealth of all the surrounding nations will be gathered up, gold, silver, and clothing in great abundance.</VERS>\n\t\t\t<VERS vnumber=\"15\"> This is the kind of plague that will devastate horses, mules, camels, donkeys, and all the other animals in those camps.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Then all who survive from all the nations that came to attack Jerusalem will go up annually to worship the King, the LORD who rules over all, and to observe the Feast of Tabernacles.</VERS>\n\t\t\t<VERS vnumber=\"17\"> But if any of the nations anywhere on earth refuse to go up to Jerusalem to worship the King, the LORD who rules over all, they will get no rain. </VERS>\n\t\t\t<VERS vnumber=\"18\"> If the Egyptians will not do so, they will get no rain, instead there will be the kind of plague which the LORD inflicts on any nations that do not go up to celebrate the Feast of Tabernacles.</VERS>\n\t\t\t<VERS vnumber=\"19\"> This will be the punishment of Egypt and of all nations that do not go up to celebrate the Feast of Tabernacles.</VERS>\n\t\t\t<VERS vnumber=\"20\"> On that day the bells of the horses will bear the inscription \"HOLY TO THE LORD.\" The cooking pots in the LORD's temple will be as holy as the bowls in front of the altar.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Every cooking pot in Jerusalem and Judah will become holy in the sight of the LORD who rules over all, so that all who offer sacrifices may come and use some of them to boil their sacrifices in them. On that day there will no longer be a Canaanite in the house of the LORD who rules over all. </VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"39\" bname=\"Malachi\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> What follows is divine revelation. The word of the LORD came to Israel through Malachi:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"I have shown love to you,\" says the LORD, but you say, \"How have you shown love to us?\" \"Esau was Jacob's brother,\" the LORD explains, \"yet I chose Jacob</VERS>\n\t\t\t<VERS vnumber=\"3\"> and rejected Esau. I turned Esau's mountains into a deserted wasteland and gave his territory to the wild jackals.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> Edom says, \"Though we are devastated, we will once again build the ruined places.\" So the LORD who rules over all responds, \"They indeed may build, but I will overthrow. They will be known as the land of evil, the people with whom the LORD is permanently displeased. </VERS>\n\t\t\t<VERS vnumber=\"5\"> Your eyes will see it, and then you will say, 'May the LORD be magnified even beyond the border of Israel!'\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"A son naturally honors his father and a slave respects his master. If I am your father, where is my honor? If I am your master, where is my respect? The LORD who rules over all asks you this, you priests who make light of my name! But you reply, 'How have we made light of your name?' </VERS>\n\t\t\t<VERS vnumber=\"7\"> You are offering improper sacrifices on my altar, yet you ask, 'How have we offended you?' By treating the table of the LORD as if it is of no importance! </VERS>\n\t\t\t<VERS vnumber=\"8\"> For when you offer blind animals as a sacrifice, is that not wrong? And when you offer the lame and sick, is that not wrong as well? Indeed, try offering them to your governor! Will he be pleased with you or show you favor?\" asks the LORD who rules over all. </VERS>\n\t\t\t<VERS vnumber=\"9\"> But now plead for God's favor that he might be gracious to us. \"With this kind of offering in your hands, how can he be pleased with you?\" asks the LORD who rules over all.</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"I wish that one of you would close the temple doors, so that you no longer would light useless fires on my altar. I am not pleased with you,\" says the LORD who rules over all, \"and I will no longer accept an offering from you. </VERS>\n\t\t\t<VERS vnumber=\"11\"> For from the east to the west my name will be great among the nations. Incense and pure offerings will be offered in my name everywhere, for my name will be great among the nations,\" says the LORD who rules over all. </VERS>\n\t\t\t<VERS vnumber=\"12\"> \"But you are profaning it by saying that the table of the Lord is common and its offerings despicable. </VERS>\n\t\t\t<VERS vnumber=\"13\"> You also say, 'How tiresome it is.' You turn up your nose at it,\" says the LORD who rules over all, \"and instead bring what is stolen, lame, or sick. You bring these things for an offering! Should I accept this from you?\" asks the LORD. </VERS>\n\t\t\t<VERS vnumber=\"14\"> \"There will be harsh condemnation for the hypocrite who has a valuable male animal in his flock but vows and sacrifices something inferior to the Lord. For I am a great king,\" says the LORD who rules over all, \"and my name is awesome among the nations.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> \"Now, you priests, this commandment is for you.</VERS>\n\t\t\t<VERS vnumber=\"2\"> If you do not listen and take seriously the need to honor my name,\" says the LORD who rules over all, \"I will send judgment on you and turn your blessings into curses, indeed, I have already done so because you are not taking it to heart.</VERS>\n\t\t\t<VERS vnumber=\"3\"> I am about to discipline your children and will spread offal on your faces, the very offal produced at your festivals, and you will be carried away along with it. </VERS>\n\t\t\t<VERS vnumber=\"4\"> Then you will know that I sent this commandment to you so that my covenant may continue to be with Levi,\" says the LORD who rules over all. </VERS>\n\t\t\t<VERS vnumber=\"5\"> \"My covenant with him was designed to bring life and peace. I gave its statutes to him to fill him with awe, and he indeed revered me and stood in awe before me.</VERS>\n\t\t\t<VERS vnumber=\"6\"> He taught what was true; sinful words were not found on his lips. He walked with me in peace and integrity, and he turned many people away from sin. </VERS>\n\t\t\t<VERS vnumber=\"7\"> For the lips of a priest should preserve knowledge of sacred things, and people should seek instruction from him because he is the messenger of the LORD who rules over all.</VERS>\n\t\t\t<VERS vnumber=\"8\"> You, however, have turned from the way. You have caused many to violate the law; you have corrupted the covenant with Levi,\" says the LORD who rules over all. </VERS>\n\t\t\t<VERS vnumber=\"9\"> \"Therefore, I have caused you to be ignored and belittled before all people to the extent to which you are not following after me and are showing partiality in your instruction.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> Do we not all have one father? Did not one God create us? Why do we betray one another, in this way making light of the covenant of our ancestors? </VERS>\n\t\t\t<VERS vnumber=\"11\"> Judah has become disloyal, and unspeakable sins have been committed in Israel and Jerusalem. For Judah has profaned the holy things that the LORD loves and has turned to a foreign god!</VERS>\n\t\t\t<VERS vnumber=\"12\"> May the LORD cut off from the community of Jacob every last person who does this, as well as the person who presents improper offerings to the LORD who rules over all!</VERS>\n\t\t\t<VERS vnumber=\"13\"> You also do this: You cover the altar of the LORD with tears as you weep and groan, because he no longer pays any attention to the offering nor accepts it favorably from you. </VERS>\n\t\t\t<VERS vnumber=\"14\"> Yet you ask, \"Why?\" The LORD is testifying against you on behalf of the wife you married when you were young, to whom you have become unfaithful even though she is your companion and wife by law.</VERS>\n\t\t\t<VERS vnumber=\"15\"> No one who has even a small portion of the Spirit in him does this. What did our ancestor do when seeking a child from God? Be attentive, then, to your own spirit, for one should not be disloyal to the wife he took in his youth.</VERS>\n\t\t\t<VERS vnumber=\"16\"> \"I hate divorce,\" says the LORD God of Israel, \"and the one who is guilty of violence,\" says the LORD who rules over all. \"Pay attention to your conscience, and do not be unfaithful.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> You have wearied the LORD with your words. But you say, \"How have we wearied him?\" Because you say, \"Everyone who does evil is good in the Lord's opinion, and he delights in them,\" or \"Where is the God of justice?\" </VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> \"I am about to send my messenger, who will clear the way before me. Indeed, the Lord you are seeking will suddenly come to his temple, and the messenger of the covenant, whom you long for, is certainly coming,\" says the LORD who rules over all.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Who can endure the day of his coming? Who can keep standing when he appears? For he will be like a refiner's fire, like a launderer's soap. </VERS>\n\t\t\t<VERS vnumber=\"3\"> He will act like a refiner and purifier of silver and will cleanse the Levites and refine them like gold and silver. Then they will offer the LORD a proper offering.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The offerings of Judah and Jerusalem will be pleasing to the LORD as in former times and years past.</VERS>\n\t\t\t<VERS vnumber=\"5\"> \"I will come to you in judgment. I will be quick to testify against those who practice divination, those who commit adultery, those who break promises, and those who exploit workers, widows, and orphans, who refuse to help the immigrant and in this way show they do not fear me,\" says the LORD who rules over all.</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"Since, I, the LORD, do not go back on my promises, you, sons of Jacob, have not perished. </VERS>\n\t\t\t<VERS vnumber=\"7\"> From the days of your ancestors you have ignored my commandments and have not kept them! Return to me, and I will return to you,\" says the LORD who rules over all. \"But you say, 'How should we return?' </VERS>\n\t\t\t<VERS vnumber=\"8\"> Can a person rob God? You indeed are robbing me, but you say, 'How are we robbing you?' In tithes and contributions!</VERS>\n\t\t\t<VERS vnumber=\"9\"> You are bound for judgment because you are robbing me, this whole nation is guilty.</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"Bring the entire tithe into the storehouse so that there may be food in my temple. Test me in this matter,\" says the LORD who rules over all, \"to see if I will not open for you the windows of heaven and pour out for you a blessing until there is no room for it all. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Then I will stop the plague from ruining your crops, and the vine will not lose its fruit before harvest,\" says the LORD who rules over all. </VERS>\n\t\t\t<VERS vnumber=\"12\"> \"All nations will call you happy, for you indeed will live in a delightful land,\" says the LORD who rules over all.</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"You have criticized me sharply,\" says the LORD, \"but you ask, 'How have we criticized you?' </VERS>\n\t\t\t<VERS vnumber=\"14\"> You have said, 'It is useless to serve God. How have we been helped by keeping his requirements and going about like mourners before the LORD who rules over all?</VERS>\n\t\t\t<VERS vnumber=\"15\"> So now we consider the arrogant to be happy; indeed, those who practice evil are successful. In fact, those who challenge God escape!'\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> Then those who respected the LORD spoke to one another, and the LORD took notice. A scroll was prepared before him in which were recorded the names of those who respected the LORD and honored his name. </VERS>\n\t\t\t<VERS vnumber=\"17\"> \"They will belong to me,\" says the LORD who rules over all, \"in the day when I prepare my own special property. I will spare them as a man spares his son who serves him. </VERS>\n\t\t\t<VERS vnumber=\"18\"> Then once more you will see that I make a distinction between the righteous and the wicked, between the one who serves God and the one who does not.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\">  \"For indeed the day is coming, burning like a furnace, and all the arrogant evildoers will be chaff. The coming day will burn them up,\" says the LORD who rules over all. \"It will not leave even a root or branch. </VERS>\n\t\t\t<VERS vnumber=\"2\"> But for you who respect my name, the sun of vindication will rise with healing wings, and you will skip about like calves released from the stall. </VERS>\n\t\t\t<VERS vnumber=\"3\"> You will trample on the wicked, for they will be like ashes under the soles of your feet on the day which I am preparing,\" says the LORD who rules over all.</VERS>\n\t\t\t<VERS vnumber=\"4\"> \"Remember the law of my servant Moses, to whom at Horeb I gave rules and regulations for all Israel to obey.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Look, I will send you Elijah the prophet before the great and terrible day of the LORD arrives. </VERS>\n\t\t\t<VERS vnumber=\"6\"> He will encourage fathers and their children to return to me, so that I will not come and strike the earth with judgment.\"</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"40\" bname=\"Matthew\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> This is the record of the genealogy of Jesus Christ, the son of David, the son of Abraham.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Abraham was the father of Isaac, Isaac the father of Jacob, Jacob the father of Judah and his brothers, </VERS>\n\t\t\t<VERS vnumber=\"3\"> Judah the father of Perez and Zerah (by Tamar), Perez the father of Hezron, Hezron the father of Ram,</VERS>\n\t\t\t<VERS vnumber=\"4\"> Ram the father of Amminadab, Amminadab the father of Nahshon, Nahshon the father of Salmon,</VERS>\n\t\t\t<VERS vnumber=\"5\"> Salmon the father of Boaz (by Rahab), Boaz the father of Obed (by Ruth), Obed the father of Jesse,</VERS>\n\t\t\t<VERS vnumber=\"6\"> and Jesse the father of David the king. David was the father of Solomon (by the wife of Uriah),</VERS>\n\t\t\t<VERS vnumber=\"7\"> Solomon the father of Rehoboam, Rehoboam the father of Abijah, Abijah the father of Asa,</VERS>\n\t\t\t<VERS vnumber=\"8\"> Asa the father of Jehoshaphat, Jehoshaphat the father of Joram, Joram the father of Uzziah,</VERS>\n\t\t\t<VERS vnumber=\"9\"> Uzziah the father of Jotham, Jotham the father of Ahaz, Ahaz the father of Hezekiah,</VERS>\n\t\t\t<VERS vnumber=\"10\"> Hezekiah the father of Manasseh, Manasseh the father of Amon, Amon the father of Josiah,</VERS>\n\t\t\t<VERS vnumber=\"11\"> and Josiah the father of Jeconiah and his brothers, at the time of the deportation to Babylon.</VERS>\n\t\t\t<VERS vnumber=\"12\"> After the deportation to Babylon, Jeconiah became the father of Shealtiel, Shealtiel the father of Zerubbabel, </VERS>\n\t\t\t<VERS vnumber=\"13\"> Zerubbabel the father of Abiud, Abiud the father of Eliakim, Eliakim the father of Azor,</VERS>\n\t\t\t<VERS vnumber=\"14\"> Azor the father of Zadok, Zadok the father of Achim, Achim the father of Eliud,</VERS>\n\t\t\t<VERS vnumber=\"15\"> Eliud the father of Eleazar, Eleazar the father of Matthan, Matthan the father of Jacob,</VERS>\n\t\t\t<VERS vnumber=\"16\"> and Jacob the father of Joseph, the husband of Mary, by whom Jesus was born, who is called Christ.</VERS>\n\t\t\t<VERS vnumber=\"17\"> So all the generations from Abraham to David are fourteen generations, and from David to the deportation to Babylon, fourteen generations, and from the deportation to Babylon to Christ, fourteen generations.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Now the birth of Jesus Christ happened this way. While his mother Mary was engaged to Joseph, but before they came together, she was found to be pregnant through the Holy Spirit. </VERS>\n\t\t\t<VERS vnumber=\"19\"> Because Joseph, her husband to be, was a righteous man, and because he did not want to disgrace her, he intended to divorce her privately. </VERS>\n\t\t\t<VERS vnumber=\"20\"> When he had contemplated this, an angel of the Lord appeared to him in a dream and said, \"Joseph, son of David, do not be afraid to take Mary as your wife, because the child conceived in her is from the Holy Spirit. </VERS>\n\t\t\t<VERS vnumber=\"21\"> She will give birth to a son and you will name him Jesus, because he will save his people from their sins.\" </VERS>\n\t\t\t<VERS vnumber=\"22\"> This all happened so that what was spoken by the Lord through the prophet would be fulfilled:</VERS>\n\t\t\t<VERS vnumber=\"23\"> \"Look! The virgin will conceive and bear a son, and they will call him Emmanuel,\" which means \"God with us.\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> When Joseph awoke from sleep he did what the angel of the Lord told him. He took his wife, </VERS>\n\t\t\t<VERS vnumber=\"25\"> but did not have marital relations with her until she gave birth to a son, whom he named Jesus.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> After Jesus was born in Bethlehem in Judea, in the time of King Herod, wise men from the East came to Jerusalem</VERS>\n\t\t\t<VERS vnumber=\"2\"> saying, \"Where is the one who is born king of the Jews? For we saw his star when it rose and have come to worship him.\" </VERS>\n\t\t\t<VERS vnumber=\"3\"> When King Herod heard this he was alarmed, and all Jerusalem with him. </VERS>\n\t\t\t<VERS vnumber=\"4\"> After assembling all the chief priests and experts in the law, he asked them where the Christ was to be born. </VERS>\n\t\t\t<VERS vnumber=\"5\"> \"In Bethlehem of Judea,\" they said, \"for it is written this way by the prophet:</VERS>\n\t\t\t<VERS vnumber=\"6\"> 'And you, Bethlehem, in the land of Judah, are in no way least among the rulers of Judah, for out of you will come a ruler who will shepherd my people Israel.'\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> Then Herod privately summoned the wise men and determined from them when the star had appeared. </VERS>\n\t\t\t<VERS vnumber=\"8\"> He sent them to Bethlehem and said, \"Go and look carefully for the child. When you find him, inform me so that I can go and worship him as well.\" </VERS>\n\t\t\t<VERS vnumber=\"9\"> After listening to the king they left, and once again the star they saw when it rose led them until it stopped above the place where the child was. </VERS>\n\t\t\t<VERS vnumber=\"10\"> When they saw the star they shouted joyfully.</VERS>\n\t\t\t<VERS vnumber=\"11\"> As they came into the house and saw the child with Mary his mother, they bowed down and worshiped him. They opened their treasure boxes and gave him gifts of gold, frankincense, and myrrh.</VERS>\n\t\t\t<VERS vnumber=\"12\"> After being warned in a dream not to return to Herod, they went back by another route to their own country.</VERS>\n\t\t\t<VERS vnumber=\"13\"> After they had gone, an angel of the Lord appeared to Joseph in a dream and said, \"Get up, take the child and his mother and flee to Egypt, and stay there until I tell you, for Herod is going to look for the child to kill him.\" </VERS>\n\t\t\t<VERS vnumber=\"14\"> Then he got up, took the child and his mother during the night, and went to Egypt. </VERS>\n\t\t\t<VERS vnumber=\"15\"> He stayed there until Herod died. In this way what was spoken by the Lord through the prophet was fulfilled: \"I called my Son out of Egypt.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> When Herod saw that he had been tricked by the wise men, he became enraged. He sent men to kill all the children in Bethlehem and throughout the surrounding region from the age of two and under, according to the time he had learned from the wise men. </VERS>\n\t\t\t<VERS vnumber=\"17\"> Then what was spoken by Jeremiah the prophet was fulfilled:</VERS>\n\t\t\t<VERS vnumber=\"18\"> \"A voice was heard in Ramah, weeping and loud wailing, Rachel weeping for her children, and she did not want to be comforted, because they were gone.\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> After Herod had died, an angel of the Lord appeared in a dream to Joseph in Egypt </VERS>\n\t\t\t<VERS vnumber=\"20\"> saying, \"Get up, take the child and his mother, and go to the land of Israel, for those who were seeking the child's life are dead.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> So he got up and took the child and his mother and returned to the land of Israel. </VERS>\n\t\t\t<VERS vnumber=\"22\"> But when he heard that Archelaus was reigning over Judea in place of his father Herod, he was afraid to go there. After being warned in a dream, he went to the regions of Galilee. </VERS>\n\t\t\t<VERS vnumber=\"23\"> He came to a town called Nazareth and lived there. Then what had been spoken by the prophets was fulfilled, that Jesus would be called a Nazarene.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> In those days John the Baptist came into the wilderness of Judea proclaiming, </VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Repent, for the kingdom of heaven is near.\" </VERS>\n\t\t\t<VERS vnumber=\"3\"> For he is the one about whom Isaiah the prophet had spoken: \"The voice of one shouting in the wilderness, 'Prepare the way for the Lord, make his paths straight.'\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> Now John wore clothing made from camel's hair with a leather belt around his waist, and his diet consisted of locusts and wild honey.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Then people from Jerusalem, as well as all Judea and all the region around the Jordan, were going out to him, </VERS>\n\t\t\t<VERS vnumber=\"6\"> and he was baptizing them in the Jordan River as they confessed their sins.</VERS>\n\t\t\t<VERS vnumber=\"7\"> But when he saw many Pharisees and Sadducees coming to his baptism, he said to them, \"You offspring of vipers! Who warned you to flee from the coming wrath? </VERS>\n\t\t\t<VERS vnumber=\"8\"> Therefore produce fruit that proves your repentance, </VERS>\n\t\t\t<VERS vnumber=\"9\"> and don't think you can say to yourselves, 'We have Abraham as our father.' For I tell you that God can raise up children for Abraham from these stones!</VERS>\n\t\t\t<VERS vnumber=\"10\"> Even now the ax is laid at the root of the trees, and every tree that does not produce good fruit will be cut down and thrown into the fire.</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"I baptize you with water, for repentance, but the one coming after me is more powerful than I am, I am not worthy to carry his sandals. He will baptize you with the Holy Spirit and fire.</VERS>\n\t\t\t<VERS vnumber=\"12\"> His winnowing fork is in his hand, and he will clean out his threshing floor and will gather his wheat into the storehouse, but the chaff he will burn up with inextinguishable fire.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> Then Jesus came from Galilee to John to be baptized by him in the Jordan River.</VERS>\n\t\t\t<VERS vnumber=\"14\"> But John tried to prevent him, saying, \"I need to be baptized by you, and yet you come to me?\" </VERS>\n\t\t\t<VERS vnumber=\"15\"> So Jesus replied to him, \"Let it happen now, for it is right for us to fulfill all righteousness.\" Then John yielded to him. </VERS>\n\t\t\t<VERS vnumber=\"16\"> After Jesus was baptized, just as he was coming up out of the water, the heavens opened and he saw the Spirit of God descending like a dove and coming on him. </VERS>\n\t\t\t<VERS vnumber=\"17\"> And a voice from heaven said, \"This is my one dear Son; in him I take great delight.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\"> Then Jesus was led by the Spirit into the wilderness to be tempted by the devil. </VERS>\n\t\t\t<VERS vnumber=\"2\"> After he fasted forty days and forty nights he was famished.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The tempter came and said to him, \"If you are the Son of God, command these stones to become bread.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> But he answered, \"It is written, 'Man does not live by bread alone, but by every word that comes from the mouth of God.'\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> Then the devil took him to the holy city, had him stand on the highest point of the temple, </VERS>\n\t\t\t<VERS vnumber=\"6\"> and said to him, \"If you are the Son of God, throw yourself down. For it is written, 'He will command his angels concerning you' and 'with their hands they will lift you up, so that you will not strike your foot against a stone.'\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> Jesus said to him, \"Once again it is written: 'You are not to put the Lord your God to the test.'\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> Again, the devil took him to a very high mountain, and showed him all the kingdoms of the world and their grandeur.</VERS>\n\t\t\t<VERS vnumber=\"9\"> And he said to him, \"I will give you all these things if you throw yourself to the ground and worship me.\" </VERS>\n\t\t\t<VERS vnumber=\"10\"> Then Jesus said to him, \"Go away, Satan! For it is written: 'You are to worship the Lord your God and serve only him.'\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> Then the devil left him, and angels came and began ministering to his needs.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Now when Jesus heard that John had been imprisoned, he went into Galilee.</VERS>\n\t\t\t<VERS vnumber=\"13\"> While in Galilee, he moved from Nazareth to make his home in Capernaum by the sea, in the region of Zebulun and Naphtali, </VERS>\n\t\t\t<VERS vnumber=\"14\"> so that what was spoken by Isaiah the prophet would be fulfilled:</VERS>\n\t\t\t<VERS vnumber=\"15\"> \"Land of Zebulun and land of Naphtali, the way by the sea, beyond the Jordan, Galilee of the Gentiles,</VERS>\n\t\t\t<VERS vnumber=\"16\"> the people who sit in darkness have seen a great light, and on those who sit in the region and shadow of death a light has dawned.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> From that time Jesus began to preach this message: \"Repent, for the kingdom of heaven is near.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> As he was walking by the Sea of Galilee he saw two brothers, Simon (called Peter) and Andrew his brother, casting a net into the sea (for they were fishermen).</VERS>\n\t\t\t<VERS vnumber=\"19\"> He said to them, \"Follow me, and I will turn you into fishers of people.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> They left their nets immediately and followed him.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Going on from there he saw two other brothers, James the son of Zebedee and John his brother, in a boat with Zebedee their father, mending their nets. Then he called them. </VERS>\n\t\t\t<VERS vnumber=\"22\"> They immediately left the boat and their father and followed him.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Jesus went throughout all of Galilee, teaching in their synagogues, preaching the gospel of the kingdom, and healing all kinds of disease and sickness among the people.</VERS>\n\t\t\t<VERS vnumber=\"24\"> So a report about him spread throughout Syria. People brought to him all who suffered with various illnesses and afflictions, those who had seizures, paralytics, and those possessed by demons, and he healed them. </VERS>\n\t\t\t<VERS vnumber=\"25\"> And large crowds followed him from Galilee, the Decapolis, Jerusalem, Judea, and beyond the Jordan River.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"5\">\n\t\t\t<VERS vnumber=\"1\"> When he saw the crowds, he went up the mountain. After he sat down his disciples came to him. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Then he began to teach them by saying:</VERS>\n\t\t\t<VERS vnumber=\"3\"> \"Blessed are the poor in spirit, for the kingdom of heaven belongs to them.</VERS>\n\t\t\t<VERS vnumber=\"4\"> \"Blessed are those who mourn, for they will be comforted.</VERS>\n\t\t\t<VERS vnumber=\"5\"> \"Blessed are the meek, for they will inherit the earth.</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"Blessed are those who hunger and thirst for righteousness, for they will be satisfied.</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"Blessed are the merciful, for they will be shown mercy.</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"Blessed are the pure in heart, for they will see God.</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"Blessed are the peacemakers, for they will be called the children of God.</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"Blessed are those who are persecuted for righteousness, for the kingdom of heaven belongs to them.</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"Blessed are you when people insult you and persecute you and say all kinds of evil things about you falsely on account of me. </VERS>\n\t\t\t<VERS vnumber=\"12\"> Rejoice and be glad because your reward is great in heaven, for they persecuted the prophets before you in the same way.</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"You are the salt of the earth. But if salt loses its flavor, how can it be made salty again? It is no longer good for anything except to be thrown out and trampled on by people. </VERS>\n\t\t\t<VERS vnumber=\"14\"> You are the light of the world. A city located on a hill cannot be hidden.</VERS>\n\t\t\t<VERS vnumber=\"15\"> People do not light a lamp and put it under a basket but on a lampstand, and it gives light to all in the house. </VERS>\n\t\t\t<VERS vnumber=\"16\"> In the same way, let your light shine before people, so that they can see your good deeds and give honor to your Father in heaven.</VERS>\n\t\t\t<VERS vnumber=\"17\"> \"Do not think that I have come to abolish the law or the prophets. I have not come to abolish these things but to fulfill them.</VERS>\n\t\t\t<VERS vnumber=\"18\"> I tell you the truth, until heaven and earth pass away not the smallest letter or stroke of a letter will pass from the law until everything takes place. </VERS>\n\t\t\t<VERS vnumber=\"19\"> So anyone who breaks one of the least of these commands and teaches others to do so will be called least in the kingdom of heaven, but whoever obeys them and teaches others to do so will be called great in the kingdom of heaven.</VERS>\n\t\t\t<VERS vnumber=\"20\"> For I tell you, unless your righteousness goes beyond that of the experts in the law and the Pharisees, you will never enter the kingdom of heaven.</VERS>\n\t\t\t<VERS vnumber=\"21\"> \"You have heard that it was said to an older generation, 'Do not murder,' and 'whoever murders will be subjected to judgment.' </VERS>\n\t\t\t<VERS vnumber=\"22\"> But I say to you that anyone who is angry with a brother will be subjected to judgment. And whoever insults a brother will be brought before the council, and whoever says 'Fool' will be sent to fiery hell.</VERS>\n\t\t\t<VERS vnumber=\"23\"> So then, if you bring your gift to the altar and there remember that your brother has something against you,</VERS>\n\t\t\t<VERS vnumber=\"24\"> leave your gift there in front of the altar. First go and be reconciled to your brother and then come and present your gift.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Reach agreement quickly with your accuser while on the way to court, or he may hand you over to the judge, and the judge hand you over to the warden, and you will be thrown into prison. </VERS>\n\t\t\t<VERS vnumber=\"26\"> I tell you the truth, you will never get out of there until you have paid the last penny!</VERS>\n\t\t\t<VERS vnumber=\"27\"> \"You have heard that it was said, 'Do not commit adultery.'</VERS>\n\t\t\t<VERS vnumber=\"28\"> But I say to you that whoever looks at a woman to desire her has already committed adultery with her in his heart.</VERS>\n\t\t\t<VERS vnumber=\"29\"> If your right eye causes you to sin, tear it out and throw it away! It is better to lose one of your members than to have your whole body thrown into hell.</VERS>\n\t\t\t<VERS vnumber=\"30\"> If your right hand causes you to sin, cut it off and throw it away! It is better to lose one of your members than to have your whole body go into hell.</VERS>\n\t\t\t<VERS vnumber=\"31\"> \"It was said, 'Whoever divorces his wife must give her a legal document.'</VERS>\n\t\t\t<VERS vnumber=\"32\"> But I say to you that everyone who divorces his wife, except for immorality, makes her commit adultery, and whoever marries a divorced woman commits adultery.</VERS>\n\t\t\t<VERS vnumber=\"33\"> \"Again, you have heard that it was said to an older generation, 'Do not break an oath, but fulfill your vows to the Lord.'</VERS>\n\t\t\t<VERS vnumber=\"34\"> But I say to you, do not take oaths at all, not by heaven, because it is the throne of God,</VERS>\n\t\t\t<VERS vnumber=\"35\"> not by earth, because it is his footstool, and not by Jerusalem, because it is the city of the great King. </VERS>\n\t\t\t<VERS vnumber=\"36\"> Do not take an oath by your head, because you are not able to make one hair white or black.</VERS>\n\t\t\t<VERS vnumber=\"37\"> Let your word be 'Yes, yes' or 'No, no.' More than this is from the evil one.</VERS>\n\t\t\t<VERS vnumber=\"38\"> \"You have heard that it was said, 'An eye for an eye and a tooth for a tooth.'</VERS>\n\t\t\t<VERS vnumber=\"39\"> But I say to you, do not resist the evildoer. But whoever strikes you on the right cheek, turn the other to him as well.</VERS>\n\t\t\t<VERS vnumber=\"40\"> And if someone wants to sue you and to take your tunic, give him your coat also. </VERS>\n\t\t\t<VERS vnumber=\"41\"> And if anyone forces you to go one mile, go with him two. </VERS>\n\t\t\t<VERS vnumber=\"42\"> Give to the one who asks you, and do not reject the one who wants to borrow from you.</VERS>\n\t\t\t<VERS vnumber=\"43\"> \"You have heard that it was said, 'Love your neighbor' and 'hate your enemy.' </VERS>\n\t\t\t<VERS vnumber=\"44\"> But I say to you, love your enemy and pray for those who persecute you, </VERS>\n\t\t\t<VERS vnumber=\"45\"> so that you may be like your Father in heaven, since he causes the sun to rise on the evil and the good, and sends rain on the righteous and the unrighteous. </VERS>\n\t\t\t<VERS vnumber=\"46\"> For if you love those who love you, what reward do you have? Even the tax collectors do the same, don't they? </VERS>\n\t\t\t<VERS vnumber=\"47\"> And if you only greet your brothers, what more do you do? Even the Gentiles do the same, don't they?</VERS>\n\t\t\t<VERS vnumber=\"48\"> So then, be perfect, as your heavenly Father is perfect.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"6\">\n\t\t\t<VERS vnumber=\"1\"> \"Be careful not to display your righteousness merely to be seen by people. Otherwise you have no reward with your Father in heaven. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Thus whenever you do charitable giving, do not blow a trumpet before you, as the hypocrites do in synagogues and on streets so that people will praise them. I tell you the truth, they have their reward.</VERS>\n\t\t\t<VERS vnumber=\"3\"> But when you do your giving, do not let your left hand know what your right hand is doing,</VERS>\n\t\t\t<VERS vnumber=\"4\"> so that your gift may be in secret. And your Father, who sees in secret, will reward you.</VERS>\n\t\t\t<VERS vnumber=\"5\"> \"Whenever you pray, do not be like the hypocrites, because they love to pray while standing in synagogues and on street corners so that people can see them. Truly I say to you, they have their reward.</VERS>\n\t\t\t<VERS vnumber=\"6\"> But whenever you pray, go into your room, close the door, and pray to your Father in secret. And your Father, who sees in secret, will reward you.</VERS>\n\t\t\t<VERS vnumber=\"7\"> When you pray, do not babble repetitiously like the Gentiles, because they think that by their many words they will be heard. </VERS>\n\t\t\t<VERS vnumber=\"8\"> Do not be like them, for your Father knows what you need before you ask him. </VERS>\n\t\t\t<VERS vnumber=\"9\"> So pray this way: Our Father in heaven, may your name be honored,</VERS>\n\t\t\t<VERS vnumber=\"10\"> may your kingdom come, may your will be done on earth as it is in heaven.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Give us today our daily bread,</VERS>\n\t\t\t<VERS vnumber=\"12\"> and forgive us our debts, as we ourselves have forgiven our debtors.</VERS>\n\t\t\t<VERS vnumber=\"13\"> And do not lead us into temptation, but deliver us from the evil one.</VERS>\n\t\t\t<VERS vnumber=\"14\"> \"For if you forgive others their sins, your heavenly Father will also forgive you. </VERS>\n\t\t\t<VERS vnumber=\"15\"> But if you do not forgive others, your Father will not forgive you your sins.</VERS>\n\t\t\t<VERS vnumber=\"16\"> \"When you fast, do not look sullen like the hypocrites, for they make their faces unattractive so that people will see them fasting. I tell you the truth, they have their reward. </VERS>\n\t\t\t<VERS vnumber=\"17\"> When you fast, put oil on your head and wash your face, </VERS>\n\t\t\t<VERS vnumber=\"18\"> so that it will not be obvious to others when you are fasting, but only to your Father who is in secret. And your Father, who sees in secret, will reward you.</VERS>\n\t\t\t<VERS vnumber=\"19\"> \"Do not accumulate for yourselves treasures on earth, where moth and rust destroy and where thieves break in and steal. </VERS>\n\t\t\t<VERS vnumber=\"20\"> But accumulate for yourselves treasures in heaven, where moth and rust do not destroy, and thieves do not break in and steal.</VERS>\n\t\t\t<VERS vnumber=\"21\"> For where your treasure is, there your heart will be also.</VERS>\n\t\t\t<VERS vnumber=\"22\"> \"The eye is the lamp of the body. If then your eye is healthy, your whole body will be full of light. </VERS>\n\t\t\t<VERS vnumber=\"23\"> But if your eye is diseased, your whole body will be full of darkness. If then the light in you is darkness, how great is the darkness!</VERS>\n\t\t\t<VERS vnumber=\"24\"> \"No one can serve two masters, for either he will hate the one and love the other, or he will be devoted to the one and despise the other. You cannot serve God and money.</VERS>\n\t\t\t<VERS vnumber=\"25\"> \"Therefore I tell you, do not worry about your life, what you will eat or drink, or about your body, what you will wear. Isn't there more to life than food and more to the body than clothing? </VERS>\n\t\t\t<VERS vnumber=\"26\"> Look at the birds in the sky: They do not sow, or reap, or gather into barns, yet your heavenly Father feeds them. Aren't you more valuable than they are? </VERS>\n\t\t\t<VERS vnumber=\"27\"> And which of you by worrying can add even one hour to his life?</VERS>\n\t\t\t<VERS vnumber=\"28\"> Why do you worry about clothing? Think about how the flowers of the field grow; they do not work or spin. </VERS>\n\t\t\t<VERS vnumber=\"29\"> Yet I tell you that not even Solomon in all his glory was clothed like one of these!</VERS>\n\t\t\t<VERS vnumber=\"30\"> And if this is how God clothes the wild grass, which is here today and tomorrow is tossed into the fire to heat the oven, won't he clothe you even more, you people of little faith? </VERS>\n\t\t\t<VERS vnumber=\"31\"> So then, don't worry saying, 'What will we eat?' or 'What will we drink?' or 'What will we wear?'</VERS>\n\t\t\t<VERS vnumber=\"32\"> For the unconverted pursue these things, and your heavenly Father knows that you need them. </VERS>\n\t\t\t<VERS vnumber=\"33\"> But above all pursue his kingdom and righteousness, and all these things will be given to you as well. </VERS>\n\t\t\t<VERS vnumber=\"34\"> So then, do not worry about tomorrow, for tomorrow will worry about itself. Today has enough trouble of its own.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"7\">\n\t\t\t<VERS vnumber=\"1\"> \"Do not judge so that you will not be judged.</VERS>\n\t\t\t<VERS vnumber=\"2\"> For by the standard you judge you will be judged, and the measure you use will be the measure you receive.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Why do you see the speck in your brother's eye, but fail to see the beam of wood in your own? </VERS>\n\t\t\t<VERS vnumber=\"4\"> Or how can you say to your brother, 'Let me remove the speck from your eye,' while there is a beam in your own?</VERS>\n\t\t\t<VERS vnumber=\"5\"> You hypocrite! First remove the beam from your own eye, and then you can see clearly to remove the speck from your brother's eye.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Do not give what is holy to dogs or throw your pearls before pigs; otherwise they will trample them under their feet and turn around and tear you to pieces.</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"Ask and it will be given to you; seek and you will find; knock and the door will be opened for you. </VERS>\n\t\t\t<VERS vnumber=\"8\"> For everyone who asks receives, and the one who seeks finds, and to the one who knocks, the door will be opened. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Is there anyone among you who, if his son asks for bread, will give him a stone? </VERS>\n\t\t\t<VERS vnumber=\"10\"> Or if he asks for a fish, will give him a snake?</VERS>\n\t\t\t<VERS vnumber=\"11\"> If you then, although you are evil, know how to give good gifts to your children, how much more will your Father in heaven give good gifts to those who ask him! </VERS>\n\t\t\t<VERS vnumber=\"12\"> In everything, treat others as you would want them to treat you, for this fulfills the law and the prophets.</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"Enter through the narrow gate, because the gate is wide and the way is spacious that leads to destruction, and there are many who enter through it.</VERS>\n\t\t\t<VERS vnumber=\"14\"> But the gate is narrow and the way is difficult that leads to life, and there are few who find it.</VERS>\n\t\t\t<VERS vnumber=\"15\"> \"Watch out for false prophets, who come to you in sheep's clothing but inwardly are voracious wolves.</VERS>\n\t\t\t<VERS vnumber=\"16\"> You will recognize them by their fruit. Grapes are not gathered from thorns or figs from thistles, are they?</VERS>\n\t\t\t<VERS vnumber=\"17\"> In the same way, every good tree bears good fruit, but the bad tree bears bad fruit. </VERS>\n\t\t\t<VERS vnumber=\"18\"> A good tree is not able to bear bad fruit, nor a bad tree to bear good fruit.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Every tree that does not bear good fruit is cut down and thrown into the fire.</VERS>\n\t\t\t<VERS vnumber=\"20\"> So then, you will recognize them by their fruit.</VERS>\n\t\t\t<VERS vnumber=\"21\"> \"Not everyone who says to me, 'Lord, Lord,' will enter into the kingdom of heaven, only the one who does the will of my Father in heaven.</VERS>\n\t\t\t<VERS vnumber=\"22\"> On that day, many will say to me, 'Lord, Lord, didn't we prophesy in your name, and in your name cast out demons and do many powerful deeds?' </VERS>\n\t\t\t<VERS vnumber=\"23\"> Then I will declare to them, 'I never knew you. Go away from me, you lawbreakers!'</VERS>\n\t\t\t<VERS vnumber=\"24\"> \"Everyone who hears these words of mine and does them is like a wise man who built his house on rock. </VERS>\n\t\t\t<VERS vnumber=\"25\"> The rain fell, the flood came, and the winds beat against that house, but it did not collapse because it had been founded on rock. </VERS>\n\t\t\t<VERS vnumber=\"26\"> Everyone who hears these words of mine and does not do them is like a foolish man who built his house on sand.</VERS>\n\t\t\t<VERS vnumber=\"27\"> The rain fell, the flood came, and the winds beat against that house, and it collapsed; it was utterly destroyed!\"</VERS>\n\t\t\t<VERS vnumber=\"28\"> When Jesus finished saying these things, the crowds were amazed by his teaching, </VERS>\n\t\t\t<VERS vnumber=\"29\"> because he taught them like one who had authority, not like their experts in the law.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"8\">\n\t\t\t<VERS vnumber=\"1\"> After he came down from the mountain, large crowds followed him.</VERS>\n\t\t\t<VERS vnumber=\"2\"> And a leper approached, and bowed low before him, saying, \"Lord, if you are willing, you can make me clean.\" </VERS>\n\t\t\t<VERS vnumber=\"3\"> He stretched out his hand and touched him saying, \"I am willing. Be clean!\" Immediately his leprosy was cleansed.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Then Jesus said to him, \"See that you do not speak to anyone, but go, show yourself to a priest, and bring the offering that Moses commanded, as a testimony to them.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> When he entered Capernaum, a centurion came to him asking for help:</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"Lord, my servant is lying at home paralyzed, in terrible anguish.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> Jesus said to him, \"I will come and heal him.\" </VERS>\n\t\t\t<VERS vnumber=\"8\"> But the centurion replied, \"Lord, I am not worthy to have you come under my roof. Instead, just say the word and my servant will be healed. </VERS>\n\t\t\t<VERS vnumber=\"9\"> For I too am a man under authority, with soldiers under me. I say to this one, 'Go' and he goes, and to another 'Come' and he comes, and to my slave 'Do this' and he does it.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> When Jesus heard this he was amazed and said to those who followed him, \"I tell you the truth, I have not found such faith in anyone in Israel! </VERS>\n\t\t\t<VERS vnumber=\"11\"> I tell you, many will come from the east and west to share the banquet with Abraham, Isaac, and Jacob in the kingdom of heaven, </VERS>\n\t\t\t<VERS vnumber=\"12\"> but the sons of the kingdom will be thrown out into the outer darkness, where there will be weeping and gnashing of teeth.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> Then Jesus said to the centurion, \"Go; just as you believed, it will be done for you.\" And the servant was healed at that hour.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Now when Jesus entered Peter's house, he saw his mother-in-law lying down, sick with a fever. </VERS>\n\t\t\t<VERS vnumber=\"15\"> He touched her hand, and the fever left her. Then she got up and began to serve them. </VERS>\n\t\t\t<VERS vnumber=\"16\"> When it was evening, many demon-possessed people were brought to him. He drove out the spirits with a word, and healed all who were sick.</VERS>\n\t\t\t<VERS vnumber=\"17\"> In this way what was spoken by Isaiah the prophet was fulfilled: \"He took our weaknesses and carried our diseases.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> Now when Jesus saw a large crowd around him, he gave orders to go to the other side of the lake.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Then an expert in the law came to him and said, \"Teacher, I will follow you wherever you go.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> Jesus said to him, \"Foxes have dens, and the birds in the sky have nests, but the Son of Man has no place to lay his head.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> Another of the disciples said to him, \"Lord, let me first go and bury my father.\" </VERS>\n\t\t\t<VERS vnumber=\"22\"> But Jesus said to him, \"Follow me, and let the dead bury their own dead.\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> As he got into the boat, his disciples followed him.</VERS>\n\t\t\t<VERS vnumber=\"24\"> And a great storm developed on the sea so that the waves began to swamp the boat. But he was asleep.</VERS>\n\t\t\t<VERS vnumber=\"25\"> So they came and woke him up saying, \"Lord, save us! We are about to die!\" </VERS>\n\t\t\t<VERS vnumber=\"26\"> But he said to them, \"Why are you cowardly, you people of little faith?\" Then he got up and rebuked the winds and the sea, and it was dead calm. </VERS>\n\t\t\t<VERS vnumber=\"27\"> And the men were amazed and said, \"What sort of person is this? Even the winds and the sea obey him!\"</VERS>\n\t\t\t<VERS vnumber=\"28\"> When he came to the other side, to the region of the Gadarenes, two demon-possessed men coming from the tombs met him. They were extremely violent, so that no one was able to pass by that way. </VERS>\n\t\t\t<VERS vnumber=\"29\"> They cried out, \"Son of God, leave us alone! Have you come here to torment us before the time?\"</VERS>\n\t\t\t<VERS vnumber=\"30\"> A large herd of pigs was feeding some distance from them. </VERS>\n\t\t\t<VERS vnumber=\"31\"> Then the demons begged him, \"If you drive us out, send us into the herd of pigs.\" </VERS>\n\t\t\t<VERS vnumber=\"32\"> And he said, \"Go!\" So they came out and went into the pigs, and the herd rushed down the steep slope into the lake and drowned in the water. </VERS>\n\t\t\t<VERS vnumber=\"33\"> The herdsmen ran off, went into the town, and told everything that had happened to the demon-possessed men. </VERS>\n\t\t\t<VERS vnumber=\"34\"> Then the entire town came out to meet Jesus. And when they saw him, they begged him to leave their region.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"9\">\n\t\t\t<VERS vnumber=\"1\"> After getting into a boat he crossed to the other side and came to his own town.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Just then some people brought to him a paralytic lying on a stretcher. When Jesus saw their faith, he said to the paralytic, \"Have courage, son! Your sins are forgiven.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> Then some of the experts in the law said to themselves, \"This man is blaspheming!\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> When Jesus saw their reaction he said, \"Why do you respond with evil in your hearts?</VERS>\n\t\t\t<VERS vnumber=\"5\"> Which is easier, to say, 'Your sins are forgiven' or to say, 'Stand up and walk'? </VERS>\n\t\t\t<VERS vnumber=\"6\"> But so that you may know that the Son of Man has authority on earth to forgive sins\", then he said to the paralytic, \"Stand up, take your stretcher, and go home.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> And he stood up and went home.</VERS>\n\t\t\t<VERS vnumber=\"8\"> When the crowd saw this, they were afraid and honored God who had given such authority to men.</VERS>\n\t\t\t<VERS vnumber=\"9\"> As Jesus went on from there, he saw a man named Matthew sitting at the tax booth. \"Follow me,\" he said to him. And he got up and followed him. </VERS>\n\t\t\t<VERS vnumber=\"10\"> As Jesus was having a meal in Matthew's house, many tax collectors and sinners came and ate with Jesus and his disciples. </VERS>\n\t\t\t<VERS vnumber=\"11\"> When the Pharisees saw this they said to his disciples, \"Why does your teacher eat with tax collectors and sinners?\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> When Jesus heard this he said, \"Those who are healthy don't need a physician, but those who are sick do.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Go and learn what this saying means: 'I want mercy and not sacrifice.' For I did not come to call the righteous, but sinners.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> Then John's disciples came to Jesus and asked, \"Why do we and the Pharisees fast often, but your disciples don't fast?\" </VERS>\n\t\t\t<VERS vnumber=\"15\"> Jesus said to them, \"The wedding guests cannot mourn while the bridegroom is with them, can they? But the days are coming when the bridegroom will be taken from them, and then they will fast.</VERS>\n\t\t\t<VERS vnumber=\"16\"> No one sews a patch of unshrunk cloth on an old garment, because the patch will pull away from the garment and the tear will be worse.</VERS>\n\t\t\t<VERS vnumber=\"17\"> And no one pours new wine into old wineskins; otherwise the skins burst and the wine is spilled out and the skins are destroyed. Instead they put new wine into new wineskins and both are preserved.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> As he was saying these things, a ruler came, bowed low before him, and said, \"My daughter has just died, but come and lay your hand on her and she will live.\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> Jesus and his disciples got up and followed him.</VERS>\n\t\t\t<VERS vnumber=\"20\"> But a woman who had been suffering from a hemorrhage for twelve years came up behind him and touched the edge of his cloak.</VERS>\n\t\t\t<VERS vnumber=\"21\"> For she kept saying to herself, \"If only I touch his cloak, I will be healed.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> But when Jesus turned and saw her he said, \"Have courage, daughter! Your faith has made you well.\" And the woman was healed from that hour. </VERS>\n\t\t\t<VERS vnumber=\"23\"> When Jesus entered the ruler's house and saw the flute players and the disorderly crowd,</VERS>\n\t\t\t<VERS vnumber=\"24\"> he said, \"Go away, for the girl is not dead but asleep.\" And they began making fun of him.</VERS>\n\t\t\t<VERS vnumber=\"25\"> But when the crowd had been put outside, he went in and gently took her by the hand, and the girl got up.</VERS>\n\t\t\t<VERS vnumber=\"26\"> And the news of this spread throughout that region.</VERS>\n\t\t\t<VERS vnumber=\"27\"> As Jesus went on from there, two blind men followed him, shouting, \"Have mercy on us, Son of David!\"</VERS>\n\t\t\t<VERS vnumber=\"28\"> When he went into the house, the blind men came to him. Jesus said to them, \"Do you believe that I am able to do this?\" They said to him, \"Yes, Lord.\" </VERS>\n\t\t\t<VERS vnumber=\"29\"> Then he touched their eyes saying, \"Let it be done for you according to your faith.\"</VERS>\n\t\t\t<VERS vnumber=\"30\"> And their eyes were opened. Then Jesus sternly warned them, \"See that no one knows about this.\"</VERS>\n\t\t\t<VERS vnumber=\"31\"> But they went out and spread the news about him throughout that entire region.</VERS>\n\t\t\t<VERS vnumber=\"32\"> As they were going away, a man who could not talk and was demon-possessed was brought to him.</VERS>\n\t\t\t<VERS vnumber=\"33\"> After the demon was cast out, the man who had been mute spoke. The crowds were amazed and said, \"Never has anything like this been seen in Israel!\"</VERS>\n\t\t\t<VERS vnumber=\"34\"> But the Pharisees said, \"By the ruler of demons he casts out demons.\"</VERS>\n\t\t\t<VERS vnumber=\"35\"> Then Jesus went throughout all the towns and villages, teaching in their synagogues, preaching the good news of the kingdom, and healing every kind of disease and sickness.</VERS>\n\t\t\t<VERS vnumber=\"36\"> When he saw the crowds, he had compassion on them because they were bewildered and helpless, like sheep without a shepherd. </VERS>\n\t\t\t<VERS vnumber=\"37\"> Then he said to his disciples, \"The harvest is plentiful, but the workers are few.</VERS>\n\t\t\t<VERS vnumber=\"38\"> Therefore ask the Lord of the harvest to send out workers into his harvest.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"10\">\n\t\t\t<VERS vnumber=\"1\"> Jesus called his twelve disciples and gave them authority over unclean spirits so they could cast them out and heal every kind of disease and sickness.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Now these are the names of the twelve apostles: first, Simon (called Peter), and Andrew his brother; James son of Zebedee and John his brother; </VERS>\n\t\t\t<VERS vnumber=\"3\"> Philip and Bartholomew; Thomas and Matthew the tax collector; James the son of Alphaeus, and Thaddaeus;</VERS>\n\t\t\t<VERS vnumber=\"4\"> Simon the Zealot and Judas Iscariot, who betrayed him.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Jesus sent out these twelve, instructing them as follows: \"Do not go to Gentile regions and do not enter any Samaritan town.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Go instead to the lost sheep of the house of Israel. </VERS>\n\t\t\t<VERS vnumber=\"7\"> As you go, preach this message: 'The kingdom of heaven is near!'</VERS>\n\t\t\t<VERS vnumber=\"8\"> Heal the sick, raise the dead, cleanse lepers, cast out demons. Freely you received, freely give. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Do not take gold, silver, or copper in your belts,</VERS>\n\t\t\t<VERS vnumber=\"10\"> no bag for the journey, or an extra tunic, or sandals or staff, for the worker deserves his provisions. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Whenever you enter a town or village, find out who is worthy there and stay with them until you leave.</VERS>\n\t\t\t<VERS vnumber=\"12\"> As you enter the house, give it greetings.</VERS>\n\t\t\t<VERS vnumber=\"13\"> And if the house is worthy, let your peace come on it, but if it is not worthy, let your peace return to you.</VERS>\n\t\t\t<VERS vnumber=\"14\"> And if anyone will not welcome you or listen to your message, shake the dust off your feet as you leave that house or that town. </VERS>\n\t\t\t<VERS vnumber=\"15\"> I tell you the truth, it will be more bearable for the region of Sodom and Gomorrah on the day of judgment than for that town!</VERS>\n\t\t\t<VERS vnumber=\"16\"> \"I am sending you out like sheep surrounded by wolves, so be wise as serpents and innocent as doves. </VERS>\n\t\t\t<VERS vnumber=\"17\"> Beware of people, because they will hand you over to councils and flog you in their synagogues.</VERS>\n\t\t\t<VERS vnumber=\"18\"> And you will be brought before governors and kings because of me, as a witness to them and the Gentiles. </VERS>\n\t\t\t<VERS vnumber=\"19\"> Whenever they hand you over for trial, do not worry about how to speak or what to say, for what you should say will be given to you at that time.</VERS>\n\t\t\t<VERS vnumber=\"20\"> For it is not you speaking, but the Spirit of your Father speaking through you.</VERS>\n\t\t\t<VERS vnumber=\"21\"> \"Brother will hand over brother to death, and a father his child. Children will rise against parents and have them put to death. </VERS>\n\t\t\t<VERS vnumber=\"22\"> And you will be hated by everyone because of my name. But the one who endures to the end will be saved.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Whenever they persecute you in one place, flee to another. I tell you the truth, you will not finish going through all the towns of Israel before the Son of Man comes.</VERS>\n\t\t\t<VERS vnumber=\"24\"> \"A disciple is not greater than his teacher, nor a slave greater than his master. </VERS>\n\t\t\t<VERS vnumber=\"25\"> It is enough for the disciple to become like his teacher, and the slave like his master. If they have called the head of the house 'Beelzebul,' how much more will they defame the members of his household!</VERS>\n\t\t\t<VERS vnumber=\"26\"> \"Do not be afraid of them, for nothing is hidden that will not be revealed, and nothing is secret that will not be made known. </VERS>\n\t\t\t<VERS vnumber=\"27\"> What I say to you in the dark, tell in the light, and what is whispered in your ear, proclaim from the housetops.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Do not be afraid of those who kill the body but cannot kill the soul. Instead, fear the one who is able to destroy both soul and body in hell.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Aren't two sparrows sold for a penny? Yet not one of them falls to the ground apart from your Father's will.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Even all the hairs on your head are numbered.</VERS>\n\t\t\t<VERS vnumber=\"31\"> So do not be afraid; you are more valuable than many sparrows.</VERS>\n\t\t\t<VERS vnumber=\"32\"> \"Whoever, then, acknowledges me before people, I will acknowledge before my Father in heaven. </VERS>\n\t\t\t<VERS vnumber=\"33\"> But whoever denies me before people, I will deny him also before my Father in heaven.</VERS>\n\t\t\t<VERS vnumber=\"34\"> \"Do not think that I have come to bring peace to the earth. I have not come to bring peace but a sword. </VERS>\n\t\t\t<VERS vnumber=\"35\"> For I have come to set a man against his father, a daughter against her mother, and a daughter-in-law against her mother-in-law,</VERS>\n\t\t\t<VERS vnumber=\"36\"> and a man's enemies will be the members of his household.</VERS>\n\t\t\t<VERS vnumber=\"37\"> \"Whoever loves father or mother more than me is not worthy of me, and whoever loves son or daughter more than me is not worthy of me.</VERS>\n\t\t\t<VERS vnumber=\"38\"> And whoever does not take up his cross and follow me is not worthy of me. </VERS>\n\t\t\t<VERS vnumber=\"39\"> Whoever finds his life will lose it, and whoever loses his life because of me will find it.</VERS>\n\t\t\t<VERS vnumber=\"40\"> \"Whoever receives you receives me, and whoever receives me receives the one who sent me.</VERS>\n\t\t\t<VERS vnumber=\"41\"> Whoever receives a prophet in the name of a prophet will receive a prophet's reward. Whoever receives a righteous person in the name of a righteous person will receive a righteous person's reward. </VERS>\n\t\t\t<VERS vnumber=\"42\"> And whoever gives only a cup of cold water to one of these little ones in the name of a disciple, I tell you the truth, he will never lose his reward.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"11\">\n\t\t\t<VERS vnumber=\"1\"> When Jesus had finished instructing his twelve disciples, he went on from there to teach and preach in their towns.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Now when John heard in prison about the deeds Christ had done, he sent his disciples to ask a question:</VERS>\n\t\t\t<VERS vnumber=\"3\"> \"Are you the one who is to come, or should we look for another?\" </VERS>\n\t\t\t<VERS vnumber=\"4\"> Jesus answered them, \"Go tell John what you hear and see:</VERS>\n\t\t\t<VERS vnumber=\"5\"> The blind see, the lame walk, lepers are cleansed, the deaf hear, the dead are raised, and the poor have good news proclaimed to them. </VERS>\n\t\t\t<VERS vnumber=\"6\"> Blessed is anyone who takes no offense at me.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> While they were going away, Jesus began to speak to the crowd about John: \"What did you go out into the wilderness to see? A reed shaken by the wind?</VERS>\n\t\t\t<VERS vnumber=\"8\"> What did you go out to see? A man dressed in fancy clothes? Look, those who wear fancy clothes are in the homes of kings!</VERS>\n\t\t\t<VERS vnumber=\"9\"> What did you go out to see? A prophet? Yes, I tell you, and more than a prophet. </VERS>\n\t\t\t<VERS vnumber=\"10\"> This is the one about whom it is written: 'Look, I am sending my messenger ahead of you, who will prepare your way before you.'</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"I tell you the truth, among those born of women, no one has arisen greater than John the Baptist. Yet the one who is least in the kingdom of heaven is greater than he is. </VERS>\n\t\t\t<VERS vnumber=\"12\"> From the days of John the Baptist until now the kingdom of heaven has suffered violence, and forceful people lay hold of it.</VERS>\n\t\t\t<VERS vnumber=\"13\"> For all the prophets and the law prophesied until John appeared.</VERS>\n\t\t\t<VERS vnumber=\"14\"> And if you are willing to accept it, he is Elijah, who is to come.</VERS>\n\t\t\t<VERS vnumber=\"15\"> The one who has ears had better listen!</VERS>\n\t\t\t<VERS vnumber=\"16\"> \"To what should I compare this generation? They are like children sitting in the marketplaces who call out to one another,</VERS>\n\t\t\t<VERS vnumber=\"17\"> 'We played the flute for you, yet you did not dance; we wailed in mourning, yet you did not weep.'</VERS>\n\t\t\t<VERS vnumber=\"18\"> For John came neither eating nor drinking, and they say, 'He has a demon!'</VERS>\n\t\t\t<VERS vnumber=\"19\"> The Son of Man came eating and drinking, and they say, 'Look at him, a glutton and a drunk, a friend of tax collectors and sinners!' But wisdom is vindicated by her deeds.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> Then Jesus began to criticize openly the cities in which he had done many of his miracles, because they did not repent. </VERS>\n\t\t\t<VERS vnumber=\"21\"> \"Woe to you, Chorazin! Woe to you, Bethsaida! If the miracles done in you had been done in Tyre and Sidon, they would have repented long ago in sackcloth and ashes. </VERS>\n\t\t\t<VERS vnumber=\"22\"> But I tell you, it will be more bearable for Tyre and Sidon on the day of judgment than for you!</VERS>\n\t\t\t<VERS vnumber=\"23\"> And you, Capernaum, will you be exalted to heaven? No, you will be thrown down to Hades! For if the miracles done among you had been done in Sodom, it would have continued to this day. </VERS>\n\t\t\t<VERS vnumber=\"24\"> But I tell you, it will be more bearable for the region of Sodom on the day of judgment than for you!\"</VERS>\n\t\t\t<VERS vnumber=\"25\"> At that time Jesus said, \"I praise you, Father, Lord of heaven and earth, because you have hidden these things from the wise and intelligent, and revealed them to little children. </VERS>\n\t\t\t<VERS vnumber=\"26\"> Yes, Father, for this was your gracious will.</VERS>\n\t\t\t<VERS vnumber=\"27\"> All things have been handed over to me by my Father. No one knows the Son except the Father, and no one knows the Father except the Son and anyone to whom the Son decides to reveal him. </VERS>\n\t\t\t<VERS vnumber=\"28\"> Come to me, all you who are weary and burdened, and I will give you rest.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Take my yoke on you and learn from me, because I am gentle and humble in heart, and you will find rest for your souls. </VERS>\n\t\t\t<VERS vnumber=\"30\"> For my yoke is easy to bear, and my load is not hard to carry.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"12\">\n\t\t\t<VERS vnumber=\"1\"> At that time Jesus went through the grain fields on a Sabbath. His disciples were hungry, and they began to pick heads of wheat and eat them. </VERS>\n\t\t\t<VERS vnumber=\"2\"> But when the Pharisees saw this they said to him, \"Look, your disciples are doing what is against the law to do on the Sabbath.\" </VERS>\n\t\t\t<VERS vnumber=\"3\"> He said to them, \"Haven't you read what David did when he and his companions were hungry,</VERS>\n\t\t\t<VERS vnumber=\"4\"> how he entered the house of God and they ate the sacred bread, which was against the law for him or his companions to eat, but only for the priests?</VERS>\n\t\t\t<VERS vnumber=\"5\"> Or have you not read in the law that the priests in the temple desecrate the Sabbath and yet are not guilty?</VERS>\n\t\t\t<VERS vnumber=\"6\"> I tell you that something greater than the temple is here. </VERS>\n\t\t\t<VERS vnumber=\"7\"> If you had known what this means: 'I want mercy and not sacrifice,' you would not have condemned the innocent. </VERS>\n\t\t\t<VERS vnumber=\"8\"> For the Son of Man is lord of the Sabbath.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> Then Jesus left that place and entered their synagogue.</VERS>\n\t\t\t<VERS vnumber=\"10\"> A man was there who had a withered hand. And they asked Jesus, \"Is it lawful to heal on the Sabbath?\" so that they could accuse him. </VERS>\n\t\t\t<VERS vnumber=\"11\"> He said to them, \"Would not any one of you, if he had one sheep that fell into a pit on the Sabbath, take hold of it and lift it out?</VERS>\n\t\t\t<VERS vnumber=\"12\"> How much more valuable is a person than a sheep! So it is lawful to do good on the Sabbath.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> Then he said to the man, \"Stretch out your hand.\" He stretched it out and it was restored, as healthy as the other. </VERS>\n\t\t\t<VERS vnumber=\"14\"> But the Pharisees went out and plotted against him, as to how they could assassinate him.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Now when Jesus learned of this, he went away from there. Great crowds followed him, and he healed them all. </VERS>\n\t\t\t<VERS vnumber=\"16\"> But he sternly warned them not to make him known.</VERS>\n\t\t\t<VERS vnumber=\"17\"> This fulfilled what was spoken by Isaiah the prophet:</VERS>\n\t\t\t<VERS vnumber=\"18\"> \"Here is my servant whom I have chosen, the one I love, in whom I take great delight. I will put my Spirit on him, and he will proclaim justice to the nations.</VERS>\n\t\t\t<VERS vnumber=\"19\"> He will not quarrel or cry out, nor will anyone hear his voice in the streets.</VERS>\n\t\t\t<VERS vnumber=\"20\"> He will not break a bruised reed or extinguish a smoldering wick, until he brings justice to victory.</VERS>\n\t\t\t<VERS vnumber=\"21\"> And in his name the Gentiles will hope.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> Then they brought to him a demon-possessed man who was blind and mute. Jesus healed him so that he could speak and see.</VERS>\n\t\t\t<VERS vnumber=\"23\"> All the crowds were amazed and said, \"Could this one be the Son of David?\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> But when the Pharisees heard this they said, \"He does not cast out demons except by the power of Beelzebul, the ruler of demons!\" </VERS>\n\t\t\t<VERS vnumber=\"25\"> Now when Jesus realized what they were thinking, he said to them, \"Every kingdom divided against itself is destroyed, and no town or house divided against itself will stand. </VERS>\n\t\t\t<VERS vnumber=\"26\"> So if Satan casts out Satan, he is divided against himself. How then will his kingdom stand? </VERS>\n\t\t\t<VERS vnumber=\"27\"> And if I cast out demons by Beelzebul, by whom do your sons cast them out? For this reason they will be your judges. </VERS>\n\t\t\t<VERS vnumber=\"28\"> But if I cast out demons by the Spirit of God, then the kingdom of God has already overtaken you. </VERS>\n\t\t\t<VERS vnumber=\"29\"> How else can someone enter a strong man's house and steal his property, unless he first ties up the strong man? Then he can thoroughly plunder the house.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Whoever is not with me is against me, and whoever does not gather with me scatters.</VERS>\n\t\t\t<VERS vnumber=\"31\"> For this reason I tell you, people will be forgiven for every sin and blasphemy, but the blasphemy against the Spirit will not be forgiven. </VERS>\n\t\t\t<VERS vnumber=\"32\"> Whoever speaks a word against the Son of Man will be forgiven. But whoever speaks against the Holy Spirit will not be forgiven, either in this age or in the age to come.</VERS>\n\t\t\t<VERS vnumber=\"33\"> \"Make a tree good and its fruit will be good, or make a tree bad and its fruit will be bad, for a tree is known by its fruit. </VERS>\n\t\t\t<VERS vnumber=\"34\"> Offspring of vipers! How are you able to say anything good, since you are evil? For the mouth speaks from what fills the heart.</VERS>\n\t\t\t<VERS vnumber=\"35\"> The good person brings good things out of his good treasury, and the evil person brings evil things out of his evil treasury.</VERS>\n\t\t\t<VERS vnumber=\"36\"> I tell you that on the day of judgment, people will give an account for every worthless word they speak. </VERS>\n\t\t\t<VERS vnumber=\"37\"> For by your words you will be justified, and by your words you will be condemned.\"</VERS>\n\t\t\t<VERS vnumber=\"38\"> Then some of the experts in the law along with some Pharisees answered him, \"Teacher, we want to see a sign from you.\" </VERS>\n\t\t\t<VERS vnumber=\"39\"> But he answered them, \"An evil and adulterous generation asks for a sign, but no sign will be given to it except the sign of the prophet Jonah. </VERS>\n\t\t\t<VERS vnumber=\"40\"> For just as Jonah was in the belly of the huge fish for three days and three nights, so the Son of Man will be in the heart of the earth for three days and three nights.</VERS>\n\t\t\t<VERS vnumber=\"41\"> The people of Nineveh will stand up at the judgment with this generation and condemn it, because they repented when Jonah preached to them, and now, something greater than Jonah is here!</VERS>\n\t\t\t<VERS vnumber=\"42\"> The queen of the South will rise up at the judgment with this generation and condemn it, because she came from the ends of the earth to hear the wisdom of Solomon, and now, something greater than Solomon is here!</VERS>\n\t\t\t<VERS vnumber=\"43\"> \"When an unclean spirit goes out of a person, it passes through waterless places looking for rest but does not find it. </VERS>\n\t\t\t<VERS vnumber=\"44\"> Then it says, 'I will return to the home I left.' When it returns, it finds the house empty, swept clean, and put in order.</VERS>\n\t\t\t<VERS vnumber=\"45\"> Then it goes and brings with it seven other spirits more evil than itself, and they go in and live there, so the last state of that person is worse than the first. It will be that way for this evil generation as well!\"</VERS>\n\t\t\t<VERS vnumber=\"46\"> While Jesus was still speaking to the crowds, his mother and brothers came and stood outside, asking to speak to him. </VERS>\n\t\t\t<VERS vnumber=\"47\">  Someone told him, \"Look, your mother and your brothers are standing outside wanting to speak to you.\" </VERS>\n\t\t\t<VERS vnumber=\"48\"> To the one who had said this, Jesus replied, \"Who is my mother and who are my brothers?\" </VERS>\n\t\t\t<VERS vnumber=\"49\"> And pointing toward his disciples he said, \"Here are my mother and my brothers! </VERS>\n\t\t\t<VERS vnumber=\"50\"> For whoever does the will of my Father in heaven is my brother and sister and mother.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"13\">\n\t\t\t<VERS vnumber=\"1\"> On that day after Jesus went out of the house, he sat by the lake.</VERS>\n\t\t\t<VERS vnumber=\"2\"> And such a large crowd gathered around him that he got into a boat to sit while the whole crowd stood on the shore. </VERS>\n\t\t\t<VERS vnumber=\"3\"> He told them many things in parables, saying: \"Listen! A sower went out to sow.</VERS>\n\t\t\t<VERS vnumber=\"4\"> And as he sowed, some seeds fell along the path, and the birds came and devoured them. </VERS>\n\t\t\t<VERS vnumber=\"5\"> Other seeds fell on rocky ground where they did not have much soil. They sprang up quickly because the soil was not deep.</VERS>\n\t\t\t<VERS vnumber=\"6\"> But when the sun came up, they were scorched, and because they did not have sufficient root, they withered.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Other seeds fell among the thorns, and they grew up and choked them.</VERS>\n\t\t\t<VERS vnumber=\"8\"> But other seeds fell on good soil and produced grain, some a hundred times as much, some sixty, and some thirty.</VERS>\n\t\t\t<VERS vnumber=\"9\"> The one who has ears had better listen!\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> Then the disciples came to him and said, \"Why do you speak to them in parables?\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> He replied, \"You have been given the opportunity to know the secrets of the kingdom of heaven, but they have not. </VERS>\n\t\t\t<VERS vnumber=\"12\"> For whoever has will be given more, and will have an abundance. But whoever does not have, even what he has will be taken from him.</VERS>\n\t\t\t<VERS vnumber=\"13\"> For this reason I speak to them in parables: Although they see they do not see, and although they hear they do not hear nor do they understand.</VERS>\n\t\t\t<VERS vnumber=\"14\"> And concerning them the prophecy of Isaiah is fulfilled that says: 'You will listen carefully yet will never understand, you will look closely yet will never comprehend.</VERS>\n\t\t\t<VERS vnumber=\"15\"> For the heart of this people has become dull; they are hard of hearing, and they have shut their eyes, so that they would not see with their eyes and hear with their ears and understand with their hearts and turn, and I would heal them.'</VERS>\n\t\t\t<VERS vnumber=\"16\"> \"But your eyes are blessed because they see, and your ears because they hear. </VERS>\n\t\t\t<VERS vnumber=\"17\"> For I tell you the truth, many prophets and righteous people longed to see what you see but did not see it, and to hear what you hear but did not hear it.</VERS>\n\t\t\t<VERS vnumber=\"18\"> \"So listen to the parable of the sower:</VERS>\n\t\t\t<VERS vnumber=\"19\"> When anyone hears the word about the kingdom and does not understand it, the evil one comes and snatches what was sown in his heart; this is the seed sown along the path. </VERS>\n\t\t\t<VERS vnumber=\"20\"> The seed sown on rocky ground is the person who hears the word and immediately receives it with joy. </VERS>\n\t\t\t<VERS vnumber=\"21\"> But he has no root in himself and does not endure; when trouble or persecution comes because of the word, immediately he falls away. </VERS>\n\t\t\t<VERS vnumber=\"22\"> The seed sown among thorns is the person who hears the word, but worldly cares and the seductiveness of wealth choke the word, so it produces nothing. </VERS>\n\t\t\t<VERS vnumber=\"23\"> But as for the seed sown on good soil, this is the person who hears the word and understands. He bears fruit, yielding a hundred, sixty, or thirty times what was sown.\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> He presented them with another parable: \"The kingdom of heaven is like a person who sowed good seed in his field. </VERS>\n\t\t\t<VERS vnumber=\"25\"> But while everyone was sleeping, an enemy came and sowed weeds among the wheat and went away. </VERS>\n\t\t\t<VERS vnumber=\"26\"> When the plants sprouted and bore grain, then the weeds also appeared. </VERS>\n\t\t\t<VERS vnumber=\"27\"> So the slaves of the owner came and said to him, 'Sir, didn't you sow good seed in your field? Then where did the weeds come from?' </VERS>\n\t\t\t<VERS vnumber=\"28\"> He said, 'An enemy has done this.' So the slaves replied, 'Do you want us to go and gather them?' </VERS>\n\t\t\t<VERS vnumber=\"29\"> But he said, 'No, since in gathering the weeds you may uproot the wheat with them.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Let both grow together until the harvest. At harvest time I will tell the reapers, \"First collect the weeds and tie them in bundles to be burned, but then gather the wheat into my barn.\"'\"</VERS>\n\t\t\t<VERS vnumber=\"31\"> He gave them another parable: \"The kingdom of heaven is like a mustard seed that a man took and sowed in his field. </VERS>\n\t\t\t<VERS vnumber=\"32\"> It is the smallest of all the seeds, but when it has grown it is the greatest garden plant and becomes a tree, so that the wild birds come and nest in its branches.\"</VERS>\n\t\t\t<VERS vnumber=\"33\"> He told them another parable: \"The kingdom of heaven is like yeast that a woman took and mixed with three measures of flour until all the dough had risen.\"</VERS>\n\t\t\t<VERS vnumber=\"34\"> Jesus spoke all these things in parables to the crowds; he did not speak to them without a parable.</VERS>\n\t\t\t<VERS vnumber=\"35\"> This fulfilled what was spoken by the prophet: \"I will open my mouth in parables, I will announce what has been hidden from the foundation of the world.\"</VERS>\n\t\t\t<VERS vnumber=\"36\"> Then he left the crowds and went into the house. And his disciples came to him saying, \"Explain to us the parable of the weeds in the field.\"</VERS>\n\t\t\t<VERS vnumber=\"37\"> He answered, \"The one who sowed the good seed is the Son of Man. </VERS>\n\t\t\t<VERS vnumber=\"38\"> The field is the world and the good seed are the people of the kingdom. The weeds are the people of the evil one, </VERS>\n\t\t\t<VERS vnumber=\"39\"> and the enemy who sows them is the devil. The harvest is the end of the age, and the reapers are angels.</VERS>\n\t\t\t<VERS vnumber=\"40\"> As the weeds are collected and burned with fire, so it will be at the end of the age. </VERS>\n\t\t\t<VERS vnumber=\"41\"> The Son of Man will send his angels, and they will gather from his kingdom everything that causes sin as well as all lawbreakers.</VERS>\n\t\t\t<VERS vnumber=\"42\"> They will throw them into the fiery furnace, where there will be weeping and gnashing of teeth. </VERS>\n\t\t\t<VERS vnumber=\"43\"> Then the righteous will shine like the sun in the kingdom of their Father. The one who has ears had better listen!</VERS>\n\t\t\t<VERS vnumber=\"44\"> \"The kingdom of heaven is like a treasure, hidden in a field, that a person found and hid. Then because of joy he went and sold all that he had and bought that field.</VERS>\n\t\t\t<VERS vnumber=\"45\"> \"Again, the kingdom of heaven is like a merchant searching for fine pearls.</VERS>\n\t\t\t<VERS vnumber=\"46\"> When he found a pearl of great value, he went out and sold everything he had and bought it.</VERS>\n\t\t\t<VERS vnumber=\"47\"> \"Again, the kingdom of heaven is like a net that was cast into the sea that caught all kinds of fish.</VERS>\n\t\t\t<VERS vnumber=\"48\"> When it was full, they pulled it ashore, sat down, and put the good fish into containers and threw the bad away.</VERS>\n\t\t\t<VERS vnumber=\"49\"> It will be this way at the end of the age. Angels will come and separate the evil from the righteous</VERS>\n\t\t\t<VERS vnumber=\"50\"> and throw them into the fiery furnace, where there will be weeping and gnashing of teeth.</VERS>\n\t\t\t<VERS vnumber=\"51\"> \"Have you understood all these things?\" They replied, \"Yes.\"</VERS>\n\t\t\t<VERS vnumber=\"52\"> Then he said to them, \"Therefore every expert in the law who has been trained for the kingdom of heaven is like the owner of a house who brings out of his treasure what is new and old.\"</VERS>\n\t\t\t<VERS vnumber=\"53\"> Now when Jesus finished these parables, he moved on from there. </VERS>\n\t\t\t<VERS vnumber=\"54\"> Then he came to his hometown and began to teach the people in their synagogue. They were astonished and said, \"Where did this man get such wisdom and miraculous powers? </VERS>\n\t\t\t<VERS vnumber=\"55\"> Isn't this the carpenter's son? Isn't his mother named Mary? And aren't his brothers James, Joseph, Simon, and Judas? </VERS>\n\t\t\t<VERS vnumber=\"56\"> And aren't all his sisters here with us? Where did he get all this?\"</VERS>\n\t\t\t<VERS vnumber=\"57\"> And so they took offense at him. But Jesus said to them, \"A prophet is not without honor except in his hometown and in his own house.\"</VERS>\n\t\t\t<VERS vnumber=\"58\"> And he did not do many miracles there because of their unbelief.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"14\">\n\t\t\t<VERS vnumber=\"1\"> At that time Herod the tetrarch heard reports about Jesus, </VERS>\n\t\t\t<VERS vnumber=\"2\"> and he said to his servants, \"This is John the Baptist. He has been raised from the dead! And because of this, miraculous powers are at work in him.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> For Herod had arrested John, bound him, and put him in prison on account of Herodias, his brother Philip's wife, </VERS>\n\t\t\t<VERS vnumber=\"4\"> because John had repeatedly told him, \"It is not lawful for you to have her.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> Although Herod wanted to kill John, he feared the crowd because they accepted John as a prophet. </VERS>\n\t\t\t<VERS vnumber=\"6\"> But on Herod's birthday, the daughter of Herodias danced before them and pleased Herod,</VERS>\n\t\t\t<VERS vnumber=\"7\"> so much that he promised with an oath to give her whatever she asked. </VERS>\n\t\t\t<VERS vnumber=\"8\"> Instructed by her mother, she said, \"Give me the head of John the Baptist here on a platter.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> Although it grieved the king, because of his oath and the dinner guests he commanded it to be given. </VERS>\n\t\t\t<VERS vnumber=\"10\"> So he sent and had John beheaded in the prison. </VERS>\n\t\t\t<VERS vnumber=\"11\"> His head was brought on a platter and given to the girl, and she brought it to her mother. </VERS>\n\t\t\t<VERS vnumber=\"12\"> Then John's disciples came and took the body and buried it and went and told Jesus.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Now when Jesus heard this he went away from there privately in a boat to an isolated place. But when the crowd heard about it, they followed him on foot from the towns.</VERS>\n\t\t\t<VERS vnumber=\"14\"> As he got out he saw the large crowd, and he had compassion on them and healed their sick.</VERS>\n\t\t\t<VERS vnumber=\"15\"> When evening arrived, his disciples came to him saying, \"This is an isolated place and the hour is already late. Send the crowds away so that they can go into the villages and buy food for themselves.\" </VERS>\n\t\t\t<VERS vnumber=\"16\"> But he replied, \"They don't need to go. You give them something to eat.\" </VERS>\n\t\t\t<VERS vnumber=\"17\"> They said to him, \"We have here only five loaves and two fish.\" </VERS>\n\t\t\t<VERS vnumber=\"18\"> \"Bring them here to me,\" he replied.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Then he instructed the crowds to sit down on the grass. He took the five loaves and two fish, and looking up to heaven he gave thanks and broke the loaves. He gave them to the disciples, who in turn gave them to the crowds.</VERS>\n\t\t\t<VERS vnumber=\"20\"> They all ate and were satisfied, and they picked up the broken pieces left over, twelve baskets full.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Not counting women and children, there were about five thousand men who ate.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Immediately Jesus made the disciples get into the boat and go ahead of him to the other side, while he dispersed the crowds. </VERS>\n\t\t\t<VERS vnumber=\"23\"> And after he sent the crowds away, he went up the mountain by himself to pray. When evening came, he was there alone.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Meanwhile the boat, already far from land, was taking a beating from the waves because the wind was against it. </VERS>\n\t\t\t<VERS vnumber=\"25\"> As the night was ending, Jesus came to them walking on the sea.</VERS>\n\t\t\t<VERS vnumber=\"26\"> When the disciples saw him walking on the water they were terrified and said, \"It's a ghost!\" and cried out with fear. </VERS>\n\t\t\t<VERS vnumber=\"27\"> But immediately Jesus spoke to them: \"Have courage! It is I. Do not be afraid.\" </VERS>\n\t\t\t<VERS vnumber=\"28\"> Peter said to him, \"Lord, if it is you, order me to come to you on the water.\"</VERS>\n\t\t\t<VERS vnumber=\"29\"> So he said, \"Come.\" Peter got out of the boat, walked on the water, and came toward Jesus.</VERS>\n\t\t\t<VERS vnumber=\"30\"> But when he saw the strong wind he became afraid. And starting to sink, he cried out, \"Lord, save me!\" </VERS>\n\t\t\t<VERS vnumber=\"31\"> Immediately Jesus reached out his hand and caught him, saying to him, \"You of little faith, why did you doubt?\"</VERS>\n\t\t\t<VERS vnumber=\"32\"> When they went up into the boat, the wind ceased.</VERS>\n\t\t\t<VERS vnumber=\"33\"> Then those who were in the boat worshiped him, saying, \"Truly you are the Son of God.\"</VERS>\n\t\t\t<VERS vnumber=\"34\"> After they had crossed over, they came to land at Gennesaret.</VERS>\n\t\t\t<VERS vnumber=\"35\"> When the people there recognized him, they sent word into all the surrounding area, and they brought all their sick to him.</VERS>\n\t\t\t<VERS vnumber=\"36\"> They begged him if they could only touch the edge of his cloak, and all who touched it were healed.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"15\">\n\t\t\t<VERS vnumber=\"1\"> Then Pharisees and experts in the law came from Jerusalem to Jesus and said,</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Why do your disciples disobey the tradition of the elders? For they don't wash their hands when they eat.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> He answered them, \"And why do you disobey the commandment of God because of your tradition? </VERS>\n\t\t\t<VERS vnumber=\"4\"> For God said, 'Honor your father and mother' and 'Whoever insults his father or mother must be put to death.'</VERS>\n\t\t\t<VERS vnumber=\"5\"> But you say, 'If someone tells his father or mother, \"Whatever help you would have received from me is given to God,\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> he does not need to honor his father.' You have nullified the word of God on account of your tradition. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Hypocrites! Isaiah prophesied correctly about you when he said,</VERS>\n\t\t\t<VERS vnumber=\"8\"> 'This people honors me with their lips, but their heart is far from me,</VERS>\n\t\t\t<VERS vnumber=\"9\"> and they worship me in vain, teaching as doctrines the commandments of men.'\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> Then he called the crowd to him and said, \"Listen and understand. </VERS>\n\t\t\t<VERS vnumber=\"11\"> What defiles a person is not what goes into the mouth; it is what comes out of the mouth that defiles a person.\" </VERS>\n\t\t\t<VERS vnumber=\"12\"> Then the disciples came to him and said, \"Do you know that when the Pharisees heard this saying they were offended?\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> And he replied, \"Every plant that my heavenly Father did not plant will be uprooted. </VERS>\n\t\t\t<VERS vnumber=\"14\"> Leave them! They are blind guides. If someone who is blind leads another who is blind, both will fall into a pit.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> But Peter said to him, \"Explain this parable to us.\" </VERS>\n\t\t\t<VERS vnumber=\"16\"> Jesus said, \"Even after all this, are you still so foolish? </VERS>\n\t\t\t<VERS vnumber=\"17\"> Don't you understand that whatever goes into the mouth enters the stomach and then passes out into the sewer?</VERS>\n\t\t\t<VERS vnumber=\"18\"> But the things that come out of the mouth come from the heart, and these things defile a person.</VERS>\n\t\t\t<VERS vnumber=\"19\"> For out of the heart come evil ideas, murder, adultery, sexual immorality, theft, false testimony, slander.</VERS>\n\t\t\t<VERS vnumber=\"20\"> These are the things that defile a person; it is not eating with unwashed hands that defiles a person.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> After going out from there, Jesus went to the region of Tyre and Sidon.</VERS>\n\t\t\t<VERS vnumber=\"22\"> A Canaanite woman from that area came and cried out, \"Have mercy on me, Lord, Son of David! My daughter is horribly demon-possessed!\" </VERS>\n\t\t\t<VERS vnumber=\"23\"> But he did not answer her a word. Then his disciples came and begged him, \"Send her away, because she keeps on crying out after us.\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> So he answered, \"I was sent only to the lost sheep of the house of Israel.\" </VERS>\n\t\t\t<VERS vnumber=\"25\"> But she came and bowed down before him and said, \"Lord, help me!\" </VERS>\n\t\t\t<VERS vnumber=\"26\"> \"It is not right to take the children's bread and throw it to the dogs,\" he said.</VERS>\n\t\t\t<VERS vnumber=\"27\"> \"Yes, Lord,\" she replied, \"but even the dogs eat the crumbs that fall from their masters' table.\" </VERS>\n\t\t\t<VERS vnumber=\"28\"> Then Jesus answered her, \"Woman, your faith is great! Let what you want be done for you.\" And her daughter was healed from that hour.</VERS>\n\t\t\t<VERS vnumber=\"29\"> When he left there, Jesus went along the Sea of Galilee. Then he went up a mountain, where he sat down.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Then large crowds came to him bringing with them the lame, blind, crippled, mute, and many others. They laid them at his feet, and he healed them. </VERS>\n\t\t\t<VERS vnumber=\"31\"> As a result, the crowd was amazed when they saw the mute speaking, the crippled healthy, the lame walking, and the blind seeing, and they praised the God of Israel.</VERS>\n\t\t\t<VERS vnumber=\"32\"> Then Jesus called the disciples and said, \"I have compassion on the crowd, because they have already been here with me three days and they have nothing to eat. I don't want to send them away hungry since they may faint on the way.\" </VERS>\n\t\t\t<VERS vnumber=\"33\"> The disciples said to him, \"Where can we get enough bread in this desolate place to satisfy so great a crowd?\"</VERS>\n\t\t\t<VERS vnumber=\"34\"> Jesus said to them, \"How many loaves do you have?\" They replied, \"Seven, and a few small fish.\"</VERS>\n\t\t\t<VERS vnumber=\"35\"> After instructing the crowd to sit down on the ground,</VERS>\n\t\t\t<VERS vnumber=\"36\"> he took the seven loaves and the fish, and after giving thanks, he broke them and began giving them to the disciples, who then gave them to the crowds.</VERS>\n\t\t\t<VERS vnumber=\"37\"> They all ate and were satisfied, and they picked up the broken pieces left over, seven baskets full. </VERS>\n\t\t\t<VERS vnumber=\"38\"> Not counting children and women, there were four thousand men who ate.</VERS>\n\t\t\t<VERS vnumber=\"39\"> After sending away the crowd, he got into the boat and went to the region of Magadan.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"16\">\n\t\t\t<VERS vnumber=\"1\"> Now when the Pharisees and Sadducees came to test Jesus, they asked him to show them a sign from heaven.</VERS>\n\t\t\t<VERS vnumber=\"2\"> He said, \"When evening comes you say, 'It will be fair weather, because the sky is red,' </VERS>\n\t\t\t<VERS vnumber=\"3\"> and in the morning, 'It will be stormy today, because the sky is red and darkening.' You know how to judge correctly the appearance of the sky, but you cannot evaluate the signs of the times. </VERS>\n\t\t\t<VERS vnumber=\"4\"> A wicked and adulterous generation asks for a sign, but no sign will be given to it except the sign of Jonah.\" Then he left them and went away.</VERS>\n\t\t\t<VERS vnumber=\"5\"> When the disciples went to the other side, they forgot to take bread.</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"Watch out,\" Jesus said to them, \"beware of the yeast of the Pharisees and Sadducees.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> So they began to discuss this among themselves, saying, \"It is because we brought no bread.\" </VERS>\n\t\t\t<VERS vnumber=\"8\"> When Jesus learned of this, he said, \"You who have such little faith! Why are you arguing among yourselves about having no bread? </VERS>\n\t\t\t<VERS vnumber=\"9\"> Do you still not understand? Don't you remember the five loaves for the five thousand, and how many baskets you took up?</VERS>\n\t\t\t<VERS vnumber=\"10\"> Or the seven loaves for the four thousand and how many baskets you took up?</VERS>\n\t\t\t<VERS vnumber=\"11\"> How could you not understand that I was not speaking to you about bread? But beware of the yeast of the Pharisees and Sadducees!\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> Then they understood that he had not told them to be on guard against the yeast in bread, but against the teaching of the Pharisees and Sadducees.</VERS>\n\t\t\t<VERS vnumber=\"13\"> When Jesus came to the area of Caesarea Philippi, he asked his disciples, \"Who do people say that the Son of Man is?\" </VERS>\n\t\t\t<VERS vnumber=\"14\"> They answered, \"Some say John the Baptist, others Elijah, and others Jeremiah or one of the prophets.\" </VERS>\n\t\t\t<VERS vnumber=\"15\"> He said to them, \"But who do you say that I am?\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> Simon Peter answered, \"You are the Christ, the Son of the living God.\" </VERS>\n\t\t\t<VERS vnumber=\"17\"> And Jesus answered him, \"You are blessed, Simon son of Jonah, because flesh and blood did not reveal this to you, but my Father in heaven! </VERS>\n\t\t\t<VERS vnumber=\"18\"> And I tell you that you are Peter, and on this rock I will build my church, and the gates of Hades will not overpower it. </VERS>\n\t\t\t<VERS vnumber=\"19\"> I will give you the keys of the kingdom of heaven. Whatever you bind on earth will have been bound in heaven, and whatever you release on earth will have been released in heaven.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> Then he instructed his disciples not to tell anyone that he was the Christ.</VERS>\n\t\t\t<VERS vnumber=\"21\"> From that time on Jesus began to show his disciples that he must go to Jerusalem and suffer many things at the hands of the elders, chief priests, and experts in the law, and be killed, and on the third day be raised. </VERS>\n\t\t\t<VERS vnumber=\"22\"> So Peter took him aside and began to rebuke him: \"God forbid, Lord! This must not happen to you!\" </VERS>\n\t\t\t<VERS vnumber=\"23\"> But he turned and said to Peter, \"Get behind me, Satan! You are a stumbling block to me, because you are not setting your mind on God's interests, but on man's.\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> Then Jesus said to his disciples, \"If anyone wants to become my follower, he must deny himself, take up his cross, and follow me. </VERS>\n\t\t\t<VERS vnumber=\"25\"> For whoever wants to save his life will lose it, but whoever loses his life for my sake will find it. </VERS>\n\t\t\t<VERS vnumber=\"26\"> For what does it benefit a person if he gains the whole world but forfeits his life? Or what can a person give in exchange for his life? </VERS>\n\t\t\t<VERS vnumber=\"27\"> For the Son of Man will come with his angels in the glory of his Father, and then he will reward each person according to what he has done.</VERS>\n\t\t\t<VERS vnumber=\"28\"> I tell you the truth, there are some standing here who will not experience death before they see the Son of Man coming in his kingdom.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"17\">\n\t\t\t<VERS vnumber=\"1\"> Six days later Jesus took with him Peter, James, and John the brother of James, and led them privately up a high mountain. </VERS>\n\t\t\t<VERS vnumber=\"2\"> And he was transfigured before them. His face shone like the sun, and his clothes became white as light. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Then Moses and Elijah also appeared before them, talking with him. </VERS>\n\t\t\t<VERS vnumber=\"4\"> So Peter said to Jesus, \"Lord, it is good for us to be here. If you want, I will make three shelters, one for you, one for Moses, and one for Elijah.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> While he was still speaking, a bright cloud overshadowed them, and a voice from the cloud said, \"This is my one dear Son, in whom I take great delight. Listen to him!\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> When the disciples heard this, they were overwhelmed with fear and threw themselves down with their faces to the ground.</VERS>\n\t\t\t<VERS vnumber=\"7\"> But Jesus came and touched them. \"Get up,\" he said. \"Do not be afraid.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> When they looked up, all they saw was Jesus alone.</VERS>\n\t\t\t<VERS vnumber=\"9\"> As they were coming down from the mountain, Jesus commanded them, \"Do not tell anyone about the vision until the Son of Man is raised from the dead.\" </VERS>\n\t\t\t<VERS vnumber=\"10\"> The disciples asked him, \"Why then do the experts in the law say that Elijah must come first?\" </VERS>\n\t\t\t<VERS vnumber=\"11\"> He answered, \"Elijah does indeed come first and will restore all things. </VERS>\n\t\t\t<VERS vnumber=\"12\"> And I tell you that Elijah has already come. Yet they did not recognize him, but did to him whatever they wanted. In the same way, the Son of Man will suffer at their hands.\" </VERS>\n\t\t\t<VERS vnumber=\"13\"> Then the disciples understood that he was speaking to them about John the Baptist.</VERS>\n\t\t\t<VERS vnumber=\"14\"> When they came to the crowd, a man came to him, knelt before him, </VERS>\n\t\t\t<VERS vnumber=\"15\"> and said, \"Lord, have mercy on my son, because he has seizures and suffers terribly, for he often falls into the fire and into the water. </VERS>\n\t\t\t<VERS vnumber=\"16\"> I brought him to your disciples, but they were not able to heal him.\" </VERS>\n\t\t\t<VERS vnumber=\"17\"> Jesus answered, \"You unbelieving and perverse generation! How much longer must I be with you? How much longer must I endure you? Bring him here to me.\" </VERS>\n\t\t\t<VERS vnumber=\"18\"> Then Jesus rebuked the demon and it came out of him, and the boy was healed from that moment. </VERS>\n\t\t\t<VERS vnumber=\"19\"> Then the disciples came to Jesus privately and said, \"Why couldn't we cast it out?\" </VERS>\n\t\t\t<VERS vnumber=\"20\"> He told them, \"It was because of your little faith. I tell you the truth, if you have faith the size of a mustard seed, you will say to this mountain, 'Move from here to there,' and it will move; nothing will be impossible for you.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> </VERS>\n\t\t\t<VERS vnumber=\"22\"> When they gathered together in Galilee, Jesus told them, \"The Son of Man is going to be betrayed into the hands of men.</VERS>\n\t\t\t<VERS vnumber=\"23\"> They will kill him, and on the third day he will be raised.\" And they became greatly distressed.</VERS>\n\t\t\t<VERS vnumber=\"24\"> After they arrived in Capernaum, the collectors of the temple tax came to Peter and said, \"Your teacher pays the double drachma tax, doesn't he?\" </VERS>\n\t\t\t<VERS vnumber=\"25\"> He said, \"Yes.\" When Peter came into the house, Jesus spoke to him first, \"What do you think, Simon? From whom do earthly kings collect tolls or taxes, from their sons or from foreigners?\"</VERS>\n\t\t\t<VERS vnumber=\"26\"> After he said, \"From foreigners,\" Jesus said to him, \"Then the sons are free. </VERS>\n\t\t\t<VERS vnumber=\"27\"> But so that we don't offend them, go to the lake and throw out a hook. Take the first fish that comes up, and when you open its mouth, you will find a four drachma coin. Take that and give it to them for me and you.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"18\">\n\t\t\t<VERS vnumber=\"1\"> At that time the disciples came to Jesus saying, \"Who is the greatest in the kingdom of heaven?\"</VERS>\n\t\t\t<VERS vnumber=\"2\"> He called a child, had him stand among them,</VERS>\n\t\t\t<VERS vnumber=\"3\"> and said, \"I tell you the truth, unless you turn around and become like little children, you will never enter the kingdom of heaven! </VERS>\n\t\t\t<VERS vnumber=\"4\"> Whoever then humbles himself like this little child is the greatest in the kingdom of heaven.</VERS>\n\t\t\t<VERS vnumber=\"5\"> And whoever welcomes a child like this in my name welcomes me.</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"But if anyone causes one of these little ones who believe in me to sin, it would be better for him to have a huge millstone hung around his neck and to be drowned in the open sea.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Woe to the world because of stumbling blocks! It is necessary that stumbling blocks come, but woe to the person through whom they come. </VERS>\n\t\t\t<VERS vnumber=\"8\"> If your hand or your foot causes you to sin, cut it off and throw it away. It is better for you to enter life crippled or lame than to have two hands or two feet and be thrown into eternal fire. </VERS>\n\t\t\t<VERS vnumber=\"9\"> And if your eye causes you to sin, tear it out and throw it away. It is better for you to enter into life with one eye than to have two eyes and be thrown into fiery hell.</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"See that you do not disdain one of these little ones. For I tell you that their angels in heaven always see the face of my Father in heaven.</VERS>\n\t\t\t<VERS vnumber=\"11\"> </VERS>\n\t\t\t<VERS vnumber=\"12\"> What do you think? If someone owns a hundred sheep and one of them goes astray, will he not leave the ninety-nine on the mountains and go look for the one that went astray?</VERS>\n\t\t\t<VERS vnumber=\"13\"> And if he finds it, I tell you the truth, he will rejoice more over it than over the ninety-nine that did not go astray. </VERS>\n\t\t\t<VERS vnumber=\"14\"> In the same way, your Father in heaven is not willing that one of these little ones be lost.</VERS>\n\t\t\t<VERS vnumber=\"15\"> \"If your brother sins, go and show him his fault when the two of you are alone. If he listens to you, you have regained your brother. </VERS>\n\t\t\t<VERS vnumber=\"16\"> But if he does not listen, take one or two others with you, so that at the testimony of two or three witnesses every matter may be established.</VERS>\n\t\t\t<VERS vnumber=\"17\"> If he refuses to listen to them, tell it to the church. If he refuses to listen to the church, treat him like a Gentile or a tax collector.</VERS>\n\t\t\t<VERS vnumber=\"18\"> \"I tell you the truth, whatever you bind on earth will have been bound in heaven, and whatever you release on earth will have been released in heaven. </VERS>\n\t\t\t<VERS vnumber=\"19\"> Again, I tell you the truth, if two of you on earth agree about whatever you ask, my Father in heaven will do it for you.</VERS>\n\t\t\t<VERS vnumber=\"20\"> For where two or three are assembled in my name, I am there among them.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> Then Peter came to him and said, \"Lord, how many times must I forgive my brother who sins against me? As many as seven times?\" </VERS>\n\t\t\t<VERS vnumber=\"22\"> Jesus said to him, \"Not seven times, I tell you, but seventy-seven times!</VERS>\n\t\t\t<VERS vnumber=\"23\"> \"For this reason, the kingdom of heaven is like a king who wanted to settle accounts with his slaves.</VERS>\n\t\t\t<VERS vnumber=\"24\"> As he began settling his accounts, a man who owed ten thousand talents was brought to him. </VERS>\n\t\t\t<VERS vnumber=\"25\"> Because he was not able to repay it, the lord ordered him to be sold, along with his wife, children, and whatever he possessed, and repayment to be made. </VERS>\n\t\t\t<VERS vnumber=\"26\"> Then the slave threw himself to the ground before him, saying, 'Be patient with me, and I will repay you everything.' </VERS>\n\t\t\t<VERS vnumber=\"27\"> The lord had compassion on that slave and released him, and forgave him the debt.</VERS>\n\t\t\t<VERS vnumber=\"28\"> After he went out, that same slave found one of his fellow slaves who owed him one hundred silver coins. So he grabbed him by the throat and started to choke him, saying, 'Pay back what you owe me!'</VERS>\n\t\t\t<VERS vnumber=\"29\"> Then his fellow slave threw himself down and begged him, 'Be patient with me, and I will repay you.' </VERS>\n\t\t\t<VERS vnumber=\"30\"> But he refused. Instead, he went out and threw him in prison until he repaid the debt.</VERS>\n\t\t\t<VERS vnumber=\"31\"> When his fellow slaves saw what had happened, they were very upset and went and told their lord everything that had taken place. </VERS>\n\t\t\t<VERS vnumber=\"32\"> Then his lord called the first slave and said to him, 'Evil slave! I forgave you all that debt because you begged me! </VERS>\n\t\t\t<VERS vnumber=\"33\"> Should you not have shown mercy to your fellow slave, just as I showed it to you?'</VERS>\n\t\t\t<VERS vnumber=\"34\"> And in anger his lord turned him over to the prison guards to torture him until he repaid all he owed. </VERS>\n\t\t\t<VERS vnumber=\"35\"> So also my heavenly Father will do to you, if each of you does not forgive your brother from your heart.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"19\">\n\t\t\t<VERS vnumber=\"1\"> Now when Jesus finished these sayings, he left Galilee and went to the region of Judea beyond the Jordan River.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Large crowds followed him, and he healed them there.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Then some Pharisees came to him in order to test him. They asked, \"Is it lawful to divorce a wife for any cause?\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> He answered, \"Have you not read that from the beginning the Creator made them male and female,</VERS>\n\t\t\t<VERS vnumber=\"5\"> and said, 'For this reason a man will leave his father and mother and will be united with his wife, and the two will become one flesh'?</VERS>\n\t\t\t<VERS vnumber=\"6\"> So they are no longer two, but one flesh. Therefore what God has joined together, let no one separate.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> They said to him, \"Why then did Moses command us to give a certificate of dismissal and to divorce her?\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> Jesus said to them, \"Moses permitted you to divorce your wives because of your hard hearts, but from the beginning it was not this way.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Now I say to you that whoever divorces his wife, except for immorality, and marries another commits adultery.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> The disciples said to him, \"If this is the case of a husband with a wife, it is better not to marry!\" </VERS>\n\t\t\t<VERS vnumber=\"11\"> He said to them, \"Not everyone can accept this statement, except those to whom it has been given.</VERS>\n\t\t\t<VERS vnumber=\"12\"> For there are some eunuchs who were that way from birth, and some who were made eunuchs by others, and some who became eunuchs for the sake of the kingdom of heaven. The one who is able to accept this should accept it.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> Then little children were brought to him for him to lay his hands on them and pray. But the disciples scolded those who brought them.</VERS>\n\t\t\t<VERS vnumber=\"14\"> But Jesus said, \"Let the little children come to me and do not try to stop them, for the kingdom of heaven belongs to such as these.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> And he placed his hands on them and went on his way.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Now someone came up to him and said, \"Teacher, what good thing must I do to gain eternal life?\" </VERS>\n\t\t\t<VERS vnumber=\"17\"> He said to him, \"Why do you ask me about what is good? There is only one who is good. But if you want to enter into life, keep the commandments.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> \"Which ones?\" he asked. Jesus replied, \"Do not murder, do not commit adultery, do not steal, do not give false testimony,</VERS>\n\t\t\t<VERS vnumber=\"19\"> honor your father and mother, and love your neighbor as yourself.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> The young man said to him, \"I have wholeheartedly obeyed all these laws. What do I still lack?\" </VERS>\n\t\t\t<VERS vnumber=\"21\"> Jesus said to him, \"If you wish to be perfect, go sell your possessions and give the money to the poor, and you will have treasure in heaven. Then come, follow me.\" </VERS>\n\t\t\t<VERS vnumber=\"22\"> But when the young man heard this he went away sorrowful, for he was very rich.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Then Jesus said to his disciples, \"I tell you the truth, it will be hard for a rich person to enter the kingdom of heaven! </VERS>\n\t\t\t<VERS vnumber=\"24\"> Again I say, it is easier for a camel to go through the eye of a needle than for a rich person to enter into the kingdom of God.\" </VERS>\n\t\t\t<VERS vnumber=\"25\"> The disciples were greatly astonished when they heard this and said, \"Then who can be saved?\"</VERS>\n\t\t\t<VERS vnumber=\"26\"> Jesus looked at them and replied, \"This is impossible for mere humans, but for God all things are possible.\" </VERS>\n\t\t\t<VERS vnumber=\"27\"> Then Peter said to him, \"Look, we have left everything to follow you! What then will there be for us?\" </VERS>\n\t\t\t<VERS vnumber=\"28\"> Jesus said to them, \"I tell you the truth: In the age when all things are renewed, when the Son of Man sits on his glorious throne, you who have followed me will also sit on twelve thrones, judging the twelve tribes of Israel. </VERS>\n\t\t\t<VERS vnumber=\"29\"> And whoever has left houses or brothers or sisters or father or mother or children or fields for my sake will receive a hundred times as much and will inherit eternal life. </VERS>\n\t\t\t<VERS vnumber=\"30\"> But many who are first will be last, and the last first.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"20\">\n\t\t\t<VERS vnumber=\"1\"> \"For the kingdom of heaven is like a landowner who went out early in the morning to hire workers for his vineyard. </VERS>\n\t\t\t<VERS vnumber=\"2\"> And after agreeing with the workers for the standard wage, he sent them into his vineyard. </VERS>\n\t\t\t<VERS vnumber=\"3\"> When it was about nine o'clock in the morning, he went out again and saw others standing around in the marketplace without work. </VERS>\n\t\t\t<VERS vnumber=\"4\"> He said to them, 'You go into the vineyard too, and I will give you whatever is right.'</VERS>\n\t\t\t<VERS vnumber=\"5\"> So they went. When he went out again about noon and three o'clock that afternoon, he did the same thing. </VERS>\n\t\t\t<VERS vnumber=\"6\"> And about five o'clock that afternoon he went out and found others standing around, and said to them, 'Why are you standing here all day without work?' </VERS>\n\t\t\t<VERS vnumber=\"7\"> They said to him, 'Because no one hired us.' He said to them, 'You go and work in the vineyard too.'</VERS>\n\t\t\t<VERS vnumber=\"8\"> When it was evening the owner of the vineyard said to his manager, 'Call the workers and give the pay starting with the last hired until the first.' </VERS>\n\t\t\t<VERS vnumber=\"9\"> When those hired about five o'clock came, each received a full day's pay.</VERS>\n\t\t\t<VERS vnumber=\"10\"> And when those hired first came, they thought they would receive more. But each one also received the standard wage.</VERS>\n\t\t\t<VERS vnumber=\"11\"> When they received it, they began to complain against the landowner, </VERS>\n\t\t\t<VERS vnumber=\"12\"> saying, 'These last fellows worked one hour, and you have made them equal to us who bore the hardship and burning heat of the day.'</VERS>\n\t\t\t<VERS vnumber=\"13\"> And the landowner replied to one of them, 'Friend, I am not treating you unfairly. Didn't you agree with me to work for the standard wage?</VERS>\n\t\t\t<VERS vnumber=\"14\"> Take what is yours and go. I want to give to this last man the same as I gave to you. </VERS>\n\t\t\t<VERS vnumber=\"15\"> Am I not permitted to do what I want with what belongs to me? Or are you envious because I am generous?'</VERS>\n\t\t\t<VERS vnumber=\"16\"> So the last will be first, and the first last.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> As Jesus was going up to Jerusalem, he took the twelve aside privately and said to them on the way, </VERS>\n\t\t\t<VERS vnumber=\"18\"> \"Look, we are going up to Jerusalem, and the Son of Man will be handed over to the chief priests and the experts in the law. They will condemn him to death, </VERS>\n\t\t\t<VERS vnumber=\"19\"> and will turn him over to the Gentiles to be mocked and flogged severely and crucified. Yet on the third day, he will be raised.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> Then the mother of the sons of Zebedee came to him with her sons, and kneeling down she asked him for a favor.</VERS>\n\t\t\t<VERS vnumber=\"21\"> He said to her, \"What do you want?\" She replied, \"Permit these two sons of mine to sit, one at your right hand and one at your left, in your kingdom.\" </VERS>\n\t\t\t<VERS vnumber=\"22\"> Jesus answered, \"You don't know what you are asking! Are you able to drink the cup I am about to drink?\" They said to him, \"We are able.\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> He told them, \"You will drink my cup, but to sit at my right and at my left is not mine to give. Rather, it is for those for whom it has been prepared by my Father.\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> Now when the other ten heard this, they were angry with the two brothers. </VERS>\n\t\t\t<VERS vnumber=\"25\"> But Jesus called them and said, \"You know that the rulers of the Gentiles lord it over them, and those in high positions use their authority over them.</VERS>\n\t\t\t<VERS vnumber=\"26\"> It must not be this way among you! Instead whoever wants to be great among you must be your servant,</VERS>\n\t\t\t<VERS vnumber=\"27\"> and whoever wants to be first among you must be your slave,</VERS>\n\t\t\t<VERS vnumber=\"28\"> just as the Son of Man did not come to be served but to serve, and to give his life as a ransom for many.\"</VERS>\n\t\t\t<VERS vnumber=\"29\"> As they were leaving Jericho, a large crowd followed them. </VERS>\n\t\t\t<VERS vnumber=\"30\"> Two blind men were sitting by the road. When they heard that Jesus was passing by, they shouted, \"Have mercy on us, Lord, Son of David!\"</VERS>\n\t\t\t<VERS vnumber=\"31\"> The crowd scolded them to get them to be quiet. But they shouted even more loudly, \"Lord, have mercy on us, Son of David!\" </VERS>\n\t\t\t<VERS vnumber=\"32\"> Jesus stopped, called them, and said, \"What do you want me to do for you?\"</VERS>\n\t\t\t<VERS vnumber=\"33\"> They said to him, \"Lord, let our eyes be opened.\"</VERS>\n\t\t\t<VERS vnumber=\"34\"> Moved with compassion, Jesus touched their eyes. Immediately they received their sight and followed him.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"21\">\n\t\t\t<VERS vnumber=\"1\"> Now when they approached Jerusalem and came to Bethphage, at the Mount of Olives, Jesus sent two disciples, </VERS>\n\t\t\t<VERS vnumber=\"2\"> telling them, \"Go to the village ahead of you. Right away you will find a donkey tied there, and a colt with her. Untie them and bring them to me. </VERS>\n\t\t\t<VERS vnumber=\"3\"> If anyone says anything to you, you are to say, 'The Lord needs them,' and he will send them at once.\" </VERS>\n\t\t\t<VERS vnumber=\"4\"> This took place to fulfill what was spoken by the prophet:</VERS>\n\t\t\t<VERS vnumber=\"5\"> \"Tell the people of Zion, 'Look, your king is coming to you, unassuming and seated on a donkey, and on a colt, the foal of a donkey.'\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> So the disciples went and did as Jesus had instructed them. </VERS>\n\t\t\t<VERS vnumber=\"7\"> They brought the donkey and the colt and placed their cloaks on them, and he sat on them. </VERS>\n\t\t\t<VERS vnumber=\"8\"> A very large crowd spread their cloaks on the road. Others cut branches from the trees and spread them on the road. </VERS>\n\t\t\t<VERS vnumber=\"9\"> The crowds that went ahead of him and those following kept shouting, \"Hosanna to the Son of David! Blessed is the one who comes in the name of the Lord! Hosanna in the highest!\" </VERS>\n\t\t\t<VERS vnumber=\"10\"> As he entered Jerusalem the whole city was thrown into an uproar, saying, \"Who is this?\" </VERS>\n\t\t\t<VERS vnumber=\"11\"> And the crowds were saying, \"This is the prophet Jesus, from Nazareth in Galilee.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> Then Jesus entered the temple area and drove out all those who were selling and buying in the temple courts, and turned over the tables of the money changers and the chairs of those selling doves. </VERS>\n\t\t\t<VERS vnumber=\"13\"> And he said to them, \"It is written, 'My house will be called a house of prayer,' but you are turning it into a den of robbers!\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> The blind and lame came to him in the temple courts, and he healed them.</VERS>\n\t\t\t<VERS vnumber=\"15\"> But when the chief priests and the experts in the law saw the wonderful things he did and heard the children crying out in the temple courts, \"Hosanna to the Son of David,\" they became indignant </VERS>\n\t\t\t<VERS vnumber=\"16\"> and said to him, \"Do you hear what they are saying?\" Jesus said to them, \"Yes. Have you never read, 'Out of the mouths of children and nursing infants you have prepared praise for yourself'?\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> And leaving them, he went out of the city to Bethany and spent the night there.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Now early in the morning, as he returned to the city, he was hungry.</VERS>\n\t\t\t<VERS vnumber=\"19\"> After noticing a fig tree by the road he went to it, but found nothing on it except leaves. He said to it, \"Never again will there be fruit from you!\" And the fig tree withered at once. </VERS>\n\t\t\t<VERS vnumber=\"20\"> When the disciples saw it they were amazed, saying, \"How did the fig tree wither so quickly?\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> Jesus answered them, \"I tell you the truth, if you have faith and do not doubt, not only will you do what was done to the fig tree, but even if you say to this mountain, 'Be lifted up and thrown into the sea,' it will happen.</VERS>\n\t\t\t<VERS vnumber=\"22\"> And whatever you ask in prayer, if you believe, you will receive.\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> Now after Jesus entered the temple courts, the chief priests and elders of the people came up to him as he was teaching and said, \"By what authority are you doing these things, and who gave you this authority?\" </VERS>\n\t\t\t<VERS vnumber=\"24\"> Jesus answered them, \"I will also ask you one question. If you answer me then I will also tell you by what authority I do these things. </VERS>\n\t\t\t<VERS vnumber=\"25\"> Where did John's baptism come from? From heaven or from people?\" They discussed this among themselves, saying, \"If we say, 'From heaven,' he will say, 'Then why did you not believe him?' </VERS>\n\t\t\t<VERS vnumber=\"26\"> But if we say, 'From people,' we fear the crowd, for they all consider John to be a prophet.\"</VERS>\n\t\t\t<VERS vnumber=\"27\"> So they answered Jesus, \"We don't know.\" Then he said to them, \"Neither will I tell you by what authority I am doing these things.</VERS>\n\t\t\t<VERS vnumber=\"28\"> \"What do you think? A man had two sons. He went to the first and said, 'Son, go and work in the vineyard today.' </VERS>\n\t\t\t<VERS vnumber=\"29\"> The boy answered, 'I will not.' But later he had a change of heart and went. </VERS>\n\t\t\t<VERS vnumber=\"30\"> The father went to the other son and said the same thing. This boy answered, 'I will, sir,' but did not go. </VERS>\n\t\t\t<VERS vnumber=\"31\"> Which of the two did his father's will?\" They said, \"The first.\" Jesus said to them, \"I tell you the truth, tax collectors and prostitutes will go ahead of you into the kingdom of God! </VERS>\n\t\t\t<VERS vnumber=\"32\"> For John came to you in the way of righteousness, and you did not believe him. But the tax collectors and prostitutes did believe. Although you saw this, you did not later change your minds and believe him.</VERS>\n\t\t\t<VERS vnumber=\"33\"> \"Listen to another parable: There was a landowner who planted a vineyard. He put a fence around it, dug a pit for its winepress, and built a watchtower. Then he leased it to tenant farmers and went on a journey. </VERS>\n\t\t\t<VERS vnumber=\"34\"> When the harvest time was near, he sent his slaves to the tenants to collect his portion of the crop.</VERS>\n\t\t\t<VERS vnumber=\"35\"> But the tenants seized his slaves, beat one, killed another, and stoned another. </VERS>\n\t\t\t<VERS vnumber=\"36\"> Again he sent other slaves, more than the first, and they treated them the same way.</VERS>\n\t\t\t<VERS vnumber=\"37\"> Finally he sent his son to them, saying, 'They will respect my son.' </VERS>\n\t\t\t<VERS vnumber=\"38\"> But when the tenants saw the son, they said to themselves, 'This is the heir. Come, let's kill him and get his inheritance!'</VERS>\n\t\t\t<VERS vnumber=\"39\"> So they seized him, threw him out of the vineyard, and killed him. </VERS>\n\t\t\t<VERS vnumber=\"40\"> Now when the owner of the vineyard comes, what will he do to those tenants?\"</VERS>\n\t\t\t<VERS vnumber=\"41\"> They said to him, \"He will utterly destroy those evil men! Then he will lease the vineyard to other tenants who will give him his portion at the harvest.\"</VERS>\n\t\t\t<VERS vnumber=\"42\"> Jesus said to them, \"Have you never read in the scriptures: 'The stone the builders rejected has become the cornerstone. This is from the Lord, and it is marvelous in our eyes'?</VERS>\n\t\t\t<VERS vnumber=\"43\"> For this reason I tell you that the kingdom of God will be taken from you and given to a people who will produce its fruit. </VERS>\n\t\t\t<VERS vnumber=\"44\"> The one who falls on this stone will be broken to pieces, and the one on whom it falls will be crushed.\"</VERS>\n\t\t\t<VERS vnumber=\"45\"> When the chief priests and the Pharisees heard his parables, they realized that he was speaking about them. </VERS>\n\t\t\t<VERS vnumber=\"46\"> They wanted to arrest him, but they were afraid of the crowds, because the crowds regarded him as a prophet.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"22\">\n\t\t\t<VERS vnumber=\"1\"> Jesus spoke to them again in parables, saying: </VERS>\n\t\t\t<VERS vnumber=\"2\"> \"The kingdom of heaven can be compared to a king who gave a wedding banquet for his son.</VERS>\n\t\t\t<VERS vnumber=\"3\"> He sent his slaves to summon those who had been invited to the banquet, but they would not come. </VERS>\n\t\t\t<VERS vnumber=\"4\"> Again he sent other slaves, saying, 'Tell those who have been invited, \"Look! The feast I have prepared for you is ready. My oxen and fattened cattle have been slaughtered, and everything is ready. Come to the wedding banquet.\"'</VERS>\n\t\t\t<VERS vnumber=\"5\"> But they were indifferent and went away, one to his farm, another to his business.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The rest seized his slaves, insolently mistreated them, and killed them. </VERS>\n\t\t\t<VERS vnumber=\"7\"> The king was furious! He sent his soldiers, and they put those murderers to death and set their city on fire. </VERS>\n\t\t\t<VERS vnumber=\"8\"> Then he said to his slaves, 'The wedding is ready, but the ones who had been invited were not worthy.</VERS>\n\t\t\t<VERS vnumber=\"9\"> So go into the main streets and invite everyone you find to the wedding banquet.'</VERS>\n\t\t\t<VERS vnumber=\"10\"> And those slaves went out into the streets and gathered all they found, both bad and good, and the wedding hall was filled with guests.</VERS>\n\t\t\t<VERS vnumber=\"11\"> But when the king came in to see the wedding guests, he saw a man there who was not wearing wedding clothes.</VERS>\n\t\t\t<VERS vnumber=\"12\"> And he said to him, 'Friend, how did you get in here without wedding clothes?' But he had nothing to say.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Then the king said to his attendants, 'Tie him up hand and foot and throw him into the outer darkness, where there will be weeping and gnashing of teeth!'</VERS>\n\t\t\t<VERS vnumber=\"14\"> For many are called, but few are chosen.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> Then the Pharisees went out and planned together to entrap him with his own words.</VERS>\n\t\t\t<VERS vnumber=\"16\"> They sent to him their disciples along with the Herodians, saying, \"Teacher, we know that you are truthful, and teach the way of God in accordance with the truth. You do not court anyone's favor because you show no partiality.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Tell us then, what do you think? Is it right to pay taxes to Caesar or not?\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> But Jesus realized their evil intentions and said, \"Hypocrites! Why are you testing me?</VERS>\n\t\t\t<VERS vnumber=\"19\"> Show me the coin used for the tax.\" So they brought him a denarius.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Jesus said to them, \"Whose image is this, and whose inscription?\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> They replied, \"Caesar's.\" He said to them, \"Then give to Caesar the things that are Caesar's, and to God the things that are God's.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> Now when they heard this they were stunned, and they left him and went away.</VERS>\n\t\t\t<VERS vnumber=\"23\"> The same day Sadducees (who say there is no resurrection) came to him and asked him,</VERS>\n\t\t\t<VERS vnumber=\"24\"> \"Teacher, Moses said, 'If a man dies without having children, his brother must marry the widow and father children for his brother.'</VERS>\n\t\t\t<VERS vnumber=\"25\"> Now there were seven brothers among us. The first one married and died, and since he had no children he left his wife to his brother.</VERS>\n\t\t\t<VERS vnumber=\"26\"> The second did the same, and the third, down to the seventh.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Last of all, the woman died. </VERS>\n\t\t\t<VERS vnumber=\"28\"> In the resurrection, therefore, whose wife of the seven will she be? For they all had married her.\"</VERS>\n\t\t\t<VERS vnumber=\"29\"> Jesus answered them, \"You are deceived, because you don't know the scriptures or the power of God.</VERS>\n\t\t\t<VERS vnumber=\"30\"> For in the resurrection they neither marry nor are given in marriage, but are like angels in heaven. </VERS>\n\t\t\t<VERS vnumber=\"31\"> Now as for the resurrection of the dead, have you not read what was spoken to you by God,</VERS>\n\t\t\t<VERS vnumber=\"32\"> 'I am the God of Abraham, the God of Isaac, and the God of Jacob'? He is not the God of the dead but of the living!\"</VERS>\n\t\t\t<VERS vnumber=\"33\"> When the crowds heard this, they were amazed at his teaching.</VERS>\n\t\t\t<VERS vnumber=\"34\"> Now when the Pharisees heard that he had silenced the Sadducees, they assembled together.</VERS>\n\t\t\t<VERS vnumber=\"35\"> And one of them, an expert in religious law, asked him a question to test him: </VERS>\n\t\t\t<VERS vnumber=\"36\"> \"Teacher, which commandment in the law is the greatest?\"</VERS>\n\t\t\t<VERS vnumber=\"37\"> Jesus said to him, \"'Love the Lord your God with all your heart, with all your soul, and with all your mind.'</VERS>\n\t\t\t<VERS vnumber=\"38\"> This is the first and greatest commandment. </VERS>\n\t\t\t<VERS vnumber=\"39\"> The second is like it: 'Love your neighbor as yourself.'</VERS>\n\t\t\t<VERS vnumber=\"40\"> All the law and the prophets depend on these two commandments.\"</VERS>\n\t\t\t<VERS vnumber=\"41\"> While the Pharisees were assembled, Jesus asked them a question:</VERS>\n\t\t\t<VERS vnumber=\"42\"> \"What do you think about the Christ? Whose son is he?\" They said, \"The son of David.\"</VERS>\n\t\t\t<VERS vnumber=\"43\"> He said to them, \"How then does David by the Spirit call him 'Lord,' saying,</VERS>\n\t\t\t<VERS vnumber=\"44\"> 'The Lord said to my lord, \"Sit at my right hand, until I put your enemies under your feet\"'?</VERS>\n\t\t\t<VERS vnumber=\"45\"> If David then calls him 'Lord,' how can he be his son?\"</VERS>\n\t\t\t<VERS vnumber=\"46\"> No one was able to answer him a word, and from that day on no one dared to question him any longer.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"23\">\n\t\t\t<VERS vnumber=\"1\"> Then Jesus said to the crowds and to his disciples,</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"The experts in the law and the Pharisees sit on Moses' seat. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Therefore pay attention to what they tell you and do it. But do not do what they do, for they do not practice what they teach.</VERS>\n\t\t\t<VERS vnumber=\"4\"> They tie up heavy loads, hard to carry, and put them on men's shoulders, but they themselves are not willing even to lift a finger to move them. </VERS>\n\t\t\t<VERS vnumber=\"5\"> They do all their deeds to be seen by people, for they make their phylacteries wide and their tassels long. </VERS>\n\t\t\t<VERS vnumber=\"6\"> They love the place of honor at banquets and the best seats in the synagogues</VERS>\n\t\t\t<VERS vnumber=\"7\"> and elaborate greetings in the marketplaces, and to have people call them 'Rabbi.' </VERS>\n\t\t\t<VERS vnumber=\"8\"> But you are not to be called 'Rabbi,' for you have one Teacher and you are all brothers.</VERS>\n\t\t\t<VERS vnumber=\"9\"> And call no one your 'father' on earth, for you have one Father, who is in heaven.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Nor are you to be called 'teacher,' for you have one teacher, the Christ.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The greatest among you will be your servant. </VERS>\n\t\t\t<VERS vnumber=\"12\"> And whoever exalts himself will be humbled, and whoever humbles himself will be exalted.</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"But woe to you, experts in the law and you Pharisees, hypocrites! You keep locking people out of the kingdom of heaven! For you neither enter nor permit those trying to enter to go in.</VERS>\n\t\t\t<VERS vnumber=\"14\"> </VERS>\n\t\t\t<VERS vnumber=\"15\"> \"Woe to you, experts in the law and you Pharisees, hypocrites! You cross land and sea to make one convert, and when you get one, you make him twice as much a child of hell as yourselves!</VERS>\n\t\t\t<VERS vnumber=\"16\"> \"Woe to you, blind guides, who say, 'Whoever swears by the temple is bound by nothing. But whoever swears by the gold of the temple is bound by the oath.' </VERS>\n\t\t\t<VERS vnumber=\"17\"> Blind fools! Which is greater, the gold or the temple that makes the gold sacred?</VERS>\n\t\t\t<VERS vnumber=\"18\"> And, 'Whoever swears by the altar is bound by nothing. But if anyone swears by the gift on it he is bound by the oath.' </VERS>\n\t\t\t<VERS vnumber=\"19\"> You are blind! For which is greater, the gift or the altar that makes the gift sacred?</VERS>\n\t\t\t<VERS vnumber=\"20\"> So whoever swears by the altar swears by it and by everything on it.</VERS>\n\t\t\t<VERS vnumber=\"21\"> And whoever swears by the temple swears by it and the one who dwells in it.</VERS>\n\t\t\t<VERS vnumber=\"22\"> And whoever swears by heaven swears by the throne of God and the one who sits on it.</VERS>\n\t\t\t<VERS vnumber=\"23\"> \"Woe to you, experts in the law and you Pharisees, hypocrites! You give a tenth of mint, dill, and cumin, yet you neglect what is more important in the law, justice, mercy, and faithfulness! You should have done these things without neglecting the others.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Blind guides! You strain out a gnat yet swallow a camel!</VERS>\n\t\t\t<VERS vnumber=\"25\"> \"Woe to you, experts in the law and you Pharisees, hypocrites! You clean the outside of the cup and the dish, but inside they are full of greed and self-indulgence. </VERS>\n\t\t\t<VERS vnumber=\"26\"> Blind Pharisee! First clean the inside of the cup, so that the outside may become clean too!</VERS>\n\t\t\t<VERS vnumber=\"27\"> \"Woe to you, experts in the law and you Pharisees, hypocrites! You are like whitewashed tombs that look beautiful on the outside but inside are full of the bones of the dead and of everything unclean.</VERS>\n\t\t\t<VERS vnumber=\"28\"> In the same way, on the outside you look righteous to people, but inside you are full of hypocrisy and lawlessness.</VERS>\n\t\t\t<VERS vnumber=\"29\"> \"Woe to you, experts in the law and you Pharisees, hypocrites! You build tombs for the prophets and decorate the graves of the righteous. </VERS>\n\t\t\t<VERS vnumber=\"30\"> And you say, 'If we had lived in the days of our ancestors, we would not have participated with them in shedding the blood of the prophets.' </VERS>\n\t\t\t<VERS vnumber=\"31\"> By saying this you testify against yourselves that you are descendants of those who murdered the prophets.</VERS>\n\t\t\t<VERS vnumber=\"32\"> Fill up then the measure of your ancestors!</VERS>\n\t\t\t<VERS vnumber=\"33\"> You snakes, you offspring of vipers! How will you escape being condemned to hell?</VERS>\n\t\t\t<VERS vnumber=\"34\"> \"For this reason I am sending you prophets and wise men and experts in the law, some of whom you will kill and crucify, and some you will flog in your synagogues and pursue from town to town, </VERS>\n\t\t\t<VERS vnumber=\"35\"> so that on you will come all the righteous blood shed on earth, from the blood of righteous Abel to the blood of Zechariah son of Barachiah, whom you murdered between the temple and the altar. </VERS>\n\t\t\t<VERS vnumber=\"36\"> I tell you the truth, this generation will be held responsible for all these things!</VERS>\n\t\t\t<VERS vnumber=\"37\"> \"O Jerusalem, Jerusalem, you who kill the prophets and stone those who are sent to you! How often I have longed to gather your children together as a hen gathers her chicks under her wings, but you would have none of it!</VERS>\n\t\t\t<VERS vnumber=\"38\"> Look, your house is left to you desolate!</VERS>\n\t\t\t<VERS vnumber=\"39\"> For I tell you, you will not see me from now until you say, 'Blessed is the one who comes in the name of the Lord!'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"24\">\n\t\t\t<VERS vnumber=\"1\"> Now as Jesus was going out of the temple courts and walking away, his disciples came to show him the temple buildings.</VERS>\n\t\t\t<VERS vnumber=\"2\"> And he said to them, \"Do you see all these things? I tell you the truth, not one stone will be left on another. All will be torn down!\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> As he was sitting on the Mount of Olives, his disciples came to him privately and said, \"Tell us, when will these things happen? And what will be the sign of your coming and of the end of the age?\" </VERS>\n\t\t\t<VERS vnumber=\"4\"> Jesus answered them, \"Watch out that no one misleads you. </VERS>\n\t\t\t<VERS vnumber=\"5\"> For many will come in my name, saying, 'I am the Christ,' and they will mislead many. </VERS>\n\t\t\t<VERS vnumber=\"6\"> You will hear of wars and rumors of wars. Make sure that you are not alarmed, for this must happen, but the end is still to come.</VERS>\n\t\t\t<VERS vnumber=\"7\"> For nation will rise up in arms against nation, and kingdom against kingdom. And there will be famines and earthquakes in various places. </VERS>\n\t\t\t<VERS vnumber=\"8\"> All these things are the beginning of birth pains.</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"Then they will hand you over to be persecuted and will kill you. You will be hated by all the nations because of my name.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Then many will be led into sin, and they will betray one another and hate one another. </VERS>\n\t\t\t<VERS vnumber=\"11\"> And many false prophets will appear and deceive many, </VERS>\n\t\t\t<VERS vnumber=\"12\"> and because lawlessness will increase so much, the love of many will grow cold.</VERS>\n\t\t\t<VERS vnumber=\"13\"> But the person who endures to the end will be saved.</VERS>\n\t\t\t<VERS vnumber=\"14\"> And this gospel of the kingdom will be preached throughout the whole inhabited earth as a testimony to all the nations, and then the end will come.</VERS>\n\t\t\t<VERS vnumber=\"15\"> \"So when you see the abomination of desolation, spoken about by Daniel the prophet, standing in the holy place (let the reader understand),</VERS>\n\t\t\t<VERS vnumber=\"16\"> then those in Judea must flee to the mountains. </VERS>\n\t\t\t<VERS vnumber=\"17\"> The one on the roof must not come down to take anything out of his house, </VERS>\n\t\t\t<VERS vnumber=\"18\"> and the one in the field must not turn back to get his cloak.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Woe to those who are pregnant and to those who are nursing their babies in those days! </VERS>\n\t\t\t<VERS vnumber=\"20\"> Pray that your flight may not be in winter or on a Sabbath. </VERS>\n\t\t\t<VERS vnumber=\"21\"> For then there will be great suffering unlike anything that has happened from the beginning of the world until now, or ever will happen.</VERS>\n\t\t\t<VERS vnumber=\"22\"> And if those days had not been cut short, no one would be saved. But for the sake of the elect those days will be cut short.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Then if anyone says to you, 'Look, here is the Christ!' or 'There he is!' do not believe him. </VERS>\n\t\t\t<VERS vnumber=\"24\"> For false messiahs and false prophets will appear and perform great signs and wonders to deceive, if possible, even the elect. </VERS>\n\t\t\t<VERS vnumber=\"25\"> Remember, I have told you ahead of time. </VERS>\n\t\t\t<VERS vnumber=\"26\"> So then, if someone says to you, 'Look, he is in the wilderness,' do not go out, or 'Look, he is in the inner rooms,' do not believe him.</VERS>\n\t\t\t<VERS vnumber=\"27\"> For just like the lightning comes from the east and flashes to the west, so the coming of the Son of Man will be.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Wherever the corpse is, there the vultures will gather.</VERS>\n\t\t\t<VERS vnumber=\"29\"> \"Immediately after the suffering of those days, the sun will be darkened, and the moon will not give its light; the stars will fall from heaven, and the powers of heaven will be shaken.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Then the sign of the Son of Man will appear in heaven, and all the tribes of the earth will mourn. They will see the Son of Man arriving on the clouds of heaven with power and great glory. </VERS>\n\t\t\t<VERS vnumber=\"31\"> And he will send his angels with a loud trumpet blast, and they will gather his elect from the four winds, from one end of heaven to the other.</VERS>\n\t\t\t<VERS vnumber=\"32\"> \"Learn this parable from the fig tree: Whenever its branch becomes tender and puts out its leaves, you know that summer is near. </VERS>\n\t\t\t<VERS vnumber=\"33\"> So also you, when you see all these things, know that he is near, right at the door. </VERS>\n\t\t\t<VERS vnumber=\"34\"> I tell you the truth, this generation will not pass away until all these things take place. </VERS>\n\t\t\t<VERS vnumber=\"35\"> Heaven and earth will pass away, but my words will never pass away.</VERS>\n\t\t\t<VERS vnumber=\"36\"> \"But as for that day and hour no one knows it, not even the angels in heaven, except the Father alone.</VERS>\n\t\t\t<VERS vnumber=\"37\"> For just like the days of Noah were, so the coming of the Son of Man will be. </VERS>\n\t\t\t<VERS vnumber=\"38\"> For in those days before the flood, people were eating and drinking, marrying and giving in marriage, until the day Noah entered the ark. </VERS>\n\t\t\t<VERS vnumber=\"39\"> And they knew nothing until the flood came and took them all away. It will be the same at the coming of the Son of Man.</VERS>\n\t\t\t<VERS vnumber=\"40\"> Then there will be two men in the field; one will be taken and one left.</VERS>\n\t\t\t<VERS vnumber=\"41\"> There will be two women grinding grain with a mill; one will be taken and one left.</VERS>\n\t\t\t<VERS vnumber=\"42\"> \"Therefore stay alert, because you do not know on what day your Lord will come. </VERS>\n\t\t\t<VERS vnumber=\"43\"> But understand this: If the owner of the house had known at what time of night the thief was coming, he would have been alert and would not have let his house be broken into. </VERS>\n\t\t\t<VERS vnumber=\"44\"> Therefore you also must be ready, because the Son of Man will come at an hour when you do not expect him.</VERS>\n\t\t\t<VERS vnumber=\"45\"> \"Who then is the faithful and wise slave, whom the master has put in charge of his household, to give the other slaves their food at the proper time? </VERS>\n\t\t\t<VERS vnumber=\"46\"> Blessed is that slave whom the master finds at work when he comes. </VERS>\n\t\t\t<VERS vnumber=\"47\"> I tell you the truth, the master will put him in charge of all his possessions. </VERS>\n\t\t\t<VERS vnumber=\"48\"> But if that evil slave should say to himself, 'My master is staying away a long time,' </VERS>\n\t\t\t<VERS vnumber=\"49\"> and he begins to beat his fellow slaves and to eat and drink with drunkards,</VERS>\n\t\t\t<VERS vnumber=\"50\"> then the master of that slave will come on a day when he does not expect him and at an hour he does not foresee,</VERS>\n\t\t\t<VERS vnumber=\"51\"> and will cut him in two, and assign him a place with the hypocrites, where there will be weeping and gnashing of teeth.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"25\">\n\t\t\t<VERS vnumber=\"1\"> \"At that time the kingdom of heaven will be like ten virgins who took their lamps and went out to meet the bridegroom.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Five of the virgins were foolish, and five were wise. </VERS>\n\t\t\t<VERS vnumber=\"3\"> When the foolish ones took their lamps, they did not take extra olive oil with them. </VERS>\n\t\t\t<VERS vnumber=\"4\"> But the wise ones took flasks of olive oil with their lamps.</VERS>\n\t\t\t<VERS vnumber=\"5\"> When the bridegroom was delayed a long time, they all became drowsy and fell asleep. </VERS>\n\t\t\t<VERS vnumber=\"6\"> But at midnight there was a shout, 'Look, the bridegroom is here! Come out to meet him.'</VERS>\n\t\t\t<VERS vnumber=\"7\"> Then all the virgins woke up and trimmed their lamps.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The foolish ones said to the wise, 'Give us some of your oil, because our lamps are going out.' </VERS>\n\t\t\t<VERS vnumber=\"9\"> 'No,' they replied. 'There won't be enough for you and for us. Go instead to those who sell oil and buy some for yourselves.' </VERS>\n\t\t\t<VERS vnumber=\"10\"> But while they had gone to buy it, the bridegroom arrived, and those who were ready went inside with him to the wedding banquet. Then the door was shut. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Later, the other virgins came too, saying, 'Lord, lord! Let us in!'</VERS>\n\t\t\t<VERS vnumber=\"12\"> But he replied, 'I tell you the truth, I do not know you!' </VERS>\n\t\t\t<VERS vnumber=\"13\"> Therefore stay alert, because you do not know the day or the hour.</VERS>\n\t\t\t<VERS vnumber=\"14\"> \"For it is like a man going on a journey, who summoned his slaves and entrusted his property to them. </VERS>\n\t\t\t<VERS vnumber=\"15\"> To one he gave five talents, to another two, and to another one, each according to his ability. Then he went on his journey. </VERS>\n\t\t\t<VERS vnumber=\"16\"> The one who had received five talents went off right away and put his money to work and gained five more. </VERS>\n\t\t\t<VERS vnumber=\"17\"> In the same way, the one who had two gained two more.</VERS>\n\t\t\t<VERS vnumber=\"18\"> But the one who had received one talent went out and dug a hole in the ground and hid his master's money in it.</VERS>\n\t\t\t<VERS vnumber=\"19\"> After a long time, the master of those slaves came and settled his accounts with them. </VERS>\n\t\t\t<VERS vnumber=\"20\"> The one who had received the five talents came and brought five more, saying, 'Sir, you entrusted me with five talents. See, I have gained five more.' </VERS>\n\t\t\t<VERS vnumber=\"21\"> His master answered, 'Well done, good and faithful slave! You have been faithful in a few things. I will put you in charge of many things. Enter into the joy of your master.' </VERS>\n\t\t\t<VERS vnumber=\"22\"> The one with the two talents also came and said, 'Sir, you entrusted two talents to me. See, I have gained two more.' </VERS>\n\t\t\t<VERS vnumber=\"23\"> His master answered, 'Well done, good and faithful slave! You have been faithful with a few things. I will put you in charge of many things. Enter into the joy of your master.'</VERS>\n\t\t\t<VERS vnumber=\"24\"> Then the one who had received the one talent came and said, 'Sir, I knew that you were a hard man, harvesting where you did not sow, and gathering where you did not scatter seed,</VERS>\n\t\t\t<VERS vnumber=\"25\"> so I was afraid, and I went and hid your talent in the ground. See, you have what is yours.' </VERS>\n\t\t\t<VERS vnumber=\"26\"> But his master answered, 'Evil and lazy slave! So you knew that I harvest where I didn't sow and gather where I didn't scatter? </VERS>\n\t\t\t<VERS vnumber=\"27\"> Then you should have deposited my money with the bankers, and on my return I would have received my money back with interest!</VERS>\n\t\t\t<VERS vnumber=\"28\"> Therefore take the talent from him and give it to the one who has ten.</VERS>\n\t\t\t<VERS vnumber=\"29\"> For the one who has will be given more, and he will have more than enough. But the one who does not have, even what he has will be taken from him.</VERS>\n\t\t\t<VERS vnumber=\"30\"> And throw that worthless slave into the outer darkness, where there will be weeping and gnashing of teeth.'</VERS>\n\t\t\t<VERS vnumber=\"31\"> \"When the Son of Man comes in his glory and all the angels with him, then he will sit on his glorious throne. </VERS>\n\t\t\t<VERS vnumber=\"32\"> All the nations will be assembled before him, and he will separate people one from another like a shepherd separates the sheep from the goats. </VERS>\n\t\t\t<VERS vnumber=\"33\"> He will put the sheep on his right and the goats on his left. </VERS>\n\t\t\t<VERS vnumber=\"34\"> Then the king will say to those on his right, 'Come, you who are blessed by my Father, inherit the kingdom prepared for you from the foundation of the world.</VERS>\n\t\t\t<VERS vnumber=\"35\"> For I was hungry and you gave me food, I was thirsty and you gave me something to drink, I was a stranger and you invited me in,</VERS>\n\t\t\t<VERS vnumber=\"36\"> I was naked and you gave me clothing, I was sick and you took care of me, I was in prison and you visited me.'</VERS>\n\t\t\t<VERS vnumber=\"37\"> Then the righteous will answer him, 'Lord, when did we see you hungry and feed you, or thirsty and give you something to drink? </VERS>\n\t\t\t<VERS vnumber=\"38\"> When did we see you a stranger and invite you in, or naked and clothe you? </VERS>\n\t\t\t<VERS vnumber=\"39\"> When did we see you sick or in prison and visit you?' </VERS>\n\t\t\t<VERS vnumber=\"40\"> And the king will answer them, 'I tell you the truth, just as you did it for one of the least of these brothers or sisters of mine, you did it for me.'</VERS>\n\t\t\t<VERS vnumber=\"41\"> \"Then he will say to those on his left, 'Depart from me, you accursed, into the eternal fire that has been prepared for the devil and his angels! </VERS>\n\t\t\t<VERS vnumber=\"42\"> For I was hungry and you gave me nothing to eat, I was thirsty and you gave me nothing to drink.</VERS>\n\t\t\t<VERS vnumber=\"43\"> I was a stranger and you did not receive me as a guest, naked and you did not clothe me, sick and in prison and you did not visit me.'</VERS>\n\t\t\t<VERS vnumber=\"44\"> Then they too will answer, 'Lord, when did we see you hungry or thirsty or a stranger or naked or sick or in prison, and did not give you whatever you needed?' </VERS>\n\t\t\t<VERS vnumber=\"45\"> Then he will answer them, 'I tell you the truth, just as you did not do it for one of the least of these, you did not do it for me.' </VERS>\n\t\t\t<VERS vnumber=\"46\"> And these will depart into eternal punishment, but the righteous into eternal life.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"26\">\n\t\t\t<VERS vnumber=\"1\"> When Jesus had finished saying all these things, he told his disciples, </VERS>\n\t\t\t<VERS vnumber=\"2\"> \"You know that after two days the Passover is coming, and the Son of Man will be handed over to be crucified.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> Then the chief priests and the elders of the people met together in the palace of the high priest, who was named Caiaphas.</VERS>\n\t\t\t<VERS vnumber=\"4\"> They planned to arrest Jesus by stealth and kill him. </VERS>\n\t\t\t<VERS vnumber=\"5\"> But they said, \"Not during the feast, so that there won't be a riot among the people.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> Now while Jesus was in Bethany at the house of Simon the leper,</VERS>\n\t\t\t<VERS vnumber=\"7\"> a woman came to him with an alabaster jar of expensive perfumed oil, and she poured it on his head as he was at the table.</VERS>\n\t\t\t<VERS vnumber=\"8\"> When the disciples saw this, they became indignant and said, \"Why this waste? </VERS>\n\t\t\t<VERS vnumber=\"9\"> It could have been sold at a high price and the money given to the poor!\" </VERS>\n\t\t\t<VERS vnumber=\"10\"> When Jesus learned of this, he said to them, \"Why are you bothering this woman? She has done a good service for me. </VERS>\n\t\t\t<VERS vnumber=\"11\"> For you will always have the poor with you, but you will not always have me!</VERS>\n\t\t\t<VERS vnumber=\"12\"> When she poured this oil on my body, she did it to prepare me for burial.</VERS>\n\t\t\t<VERS vnumber=\"13\"> I tell you the truth, wherever this gospel is proclaimed in the whole world, what she has done will also be told in memory of her.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> Then one of the twelve, the one named Judas Iscariot, went to the chief priests</VERS>\n\t\t\t<VERS vnumber=\"15\"> and said, \"What will you give me to betray him into your hands?\" So they set out thirty silver coins for him. </VERS>\n\t\t\t<VERS vnumber=\"16\"> From that time on, Judas began looking for an opportunity to betray him.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Now on the first day of the feast of Unleavened Bread the disciples came to Jesus and said, \"Where do you want us to prepare for you to eat the Passover?\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> He said, \"Go into the city to a certain man and tell him, 'The Teacher says, \"My time is near. I will observe the Passover with my disciples at your house.\"'\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> So the disciples did as Jesus had instructed them, and they prepared the Passover. </VERS>\n\t\t\t<VERS vnumber=\"20\"> When it was evening, he took his place at the table with the twelve.</VERS>\n\t\t\t<VERS vnumber=\"21\"> And while they were eating he said, \"I tell you the truth, one of you will betray me.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> They became greatly distressed and each one began to say to him, \"Surely not I, Lord?\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> He answered, \"The one who has dipped his hand into the bowl with me will betray me. </VERS>\n\t\t\t<VERS vnumber=\"24\"> The Son of Man will go as it is written about him, but woe to that man by whom the Son of Man is betrayed! It would be better for him if he had never been born.\"</VERS>\n\t\t\t<VERS vnumber=\"25\"> Then Judas, the one who would betray him, said, \"Surely not I, Rabbi?\" Jesus replied, \"You have said it yourself.\"</VERS>\n\t\t\t<VERS vnumber=\"26\"> While they were eating, Jesus took bread, and after giving thanks he broke it, gave it to his disciples, and said, \"Take, eat, this is my body.\" </VERS>\n\t\t\t<VERS vnumber=\"27\"> And after taking the cup and giving thanks, he gave it to them, saying, \"Drink from it, all of you,</VERS>\n\t\t\t<VERS vnumber=\"28\"> for this is my blood, the blood of the covenant, that is poured out for many for the forgiveness of sins. </VERS>\n\t\t\t<VERS vnumber=\"29\"> I tell you, from now on I will not drink of this fruit of the vine until that day when I drink it new with you in my Father's kingdom.\" </VERS>\n\t\t\t<VERS vnumber=\"30\"> After singing a hymn, they went out to the Mount of Olives.</VERS>\n\t\t\t<VERS vnumber=\"31\"> Then Jesus said to them, \"This night you will all fall away because of me, for it is written: 'I will strike the shepherd, and the sheep of the flock will be scattered.'</VERS>\n\t\t\t<VERS vnumber=\"32\"> But after I am raised, I will go ahead of you into Galilee.\"</VERS>\n\t\t\t<VERS vnumber=\"33\"> Peter said to him, \"If they all fall away because of you, I will never fall away!\" </VERS>\n\t\t\t<VERS vnumber=\"34\"> Jesus said to him, \"I tell you the truth, on this night, before the rooster crows, you will deny me three times.\" </VERS>\n\t\t\t<VERS vnumber=\"35\"> Peter said to him, \"Even if I must die with you, I will never deny you.\" And all the disciples said the same thing.</VERS>\n\t\t\t<VERS vnumber=\"36\"> Then Jesus went with them to a place called Gethsemane, and he said to the disciples, \"Sit here while I go over there and pray.\"</VERS>\n\t\t\t<VERS vnumber=\"37\"> He took with him Peter and the two sons of Zebedee, and became anguished and distressed.</VERS>\n\t\t\t<VERS vnumber=\"38\"> Then he said to them, \"My soul is deeply grieved, even to the point of death. Remain here and stay awake with me.\"</VERS>\n\t\t\t<VERS vnumber=\"39\"> Going a little farther, he threw himself down with his face to the ground and prayed, \"My Father, if possible, let this cup pass from me! Yet not what I will, but what you will.\" </VERS>\n\t\t\t<VERS vnumber=\"40\"> Then he came to the disciples and found them sleeping. He said to Peter, \"So, couldn't you stay awake with me for one hour? </VERS>\n\t\t\t<VERS vnumber=\"41\"> Stay awake and pray that you will not fall into temptation. The spirit is willing, but the flesh is weak.\"</VERS>\n\t\t\t<VERS vnumber=\"42\"> He went away a second time and prayed, \"My Father, if this cup cannot be taken away unless I drink it, your will must be done.\" </VERS>\n\t\t\t<VERS vnumber=\"43\"> He came again and found them sleeping; they could not keep their eyes open.</VERS>\n\t\t\t<VERS vnumber=\"44\"> So leaving them again, he went away and prayed for the third time, saying the same thing once more.</VERS>\n\t\t\t<VERS vnumber=\"45\"> Then he came to the disciples and said to them, \"Are you still sleeping and resting? Look, the hour is approaching, and the Son of Man is betrayed into the hands of sinners.</VERS>\n\t\t\t<VERS vnumber=\"46\"> Get up, let us go. Look! My betrayer is approaching!\"</VERS>\n\t\t\t<VERS vnumber=\"47\"> While he was still speaking, Judas, one of the twelve, arrived. With him was a large crowd armed with swords and clubs, sent by the chief priests and elders of the people.</VERS>\n\t\t\t<VERS vnumber=\"48\"> (Now the betrayer had given them a sign, saying, \"The one I kiss is the man. Arrest him!\")</VERS>\n\t\t\t<VERS vnumber=\"49\"> Immediately he went up to Jesus and said, \"Greetings, Rabbi,\" and kissed him.</VERS>\n\t\t\t<VERS vnumber=\"50\"> Jesus said to him, \"Friend, do what you are here to do.\" Then they came and took hold of Jesus and arrested him. </VERS>\n\t\t\t<VERS vnumber=\"51\"> But one of those with Jesus grabbed his sword, drew it out, and struck the high priest's slave, cutting off his ear.</VERS>\n\t\t\t<VERS vnumber=\"52\"> Then Jesus said to him, \"Put your sword back in its place! For all who take hold of the sword will die by the sword.</VERS>\n\t\t\t<VERS vnumber=\"53\"> Or do you think that I cannot call on my Father, and that he would send me more than twelve legions of angels right now? </VERS>\n\t\t\t<VERS vnumber=\"54\"> How then would the scriptures that say it must happen this way be fulfilled?\"</VERS>\n\t\t\t<VERS vnumber=\"55\"> At that moment Jesus said to the crowd, \"Have you come out with swords and clubs to arrest me like you would an outlaw? Day after day I sat teaching in the temple courts, yet you did not arrest me. </VERS>\n\t\t\t<VERS vnumber=\"56\"> But this has happened so that the scriptures of the prophets would be fulfilled.\" Then all the disciples left him and fled.</VERS>\n\t\t\t<VERS vnumber=\"57\"> Now the ones who had arrested Jesus led him to Caiaphas, the high priest, in whose house the experts in the law and the elders had gathered. </VERS>\n\t\t\t<VERS vnumber=\"58\"> But Peter was following him from a distance, all the way to the high priest's courtyard. After going in, he sat with the guards to see the outcome. </VERS>\n\t\t\t<VERS vnumber=\"59\"> The chief priests and the whole Sanhedrin were trying to find false testimony against Jesus so that they could put him to death. </VERS>\n\t\t\t<VERS vnumber=\"60\"> But they did not find anything, though many false witnesses came forward. Finally two came forward </VERS>\n\t\t\t<VERS vnumber=\"61\"> and declared, \"This man said, 'I am able to destroy the temple of God and rebuild it in three days.'\" </VERS>\n\t\t\t<VERS vnumber=\"62\"> So the high priest stood up and said to him, \"Have you no answer? What is this that they are testifying against you?\" </VERS>\n\t\t\t<VERS vnumber=\"63\"> But Jesus was silent. The high priest said to him, \"I charge you under oath by the living God, tell us if you are the Christ, the Son of God.\" </VERS>\n\t\t\t<VERS vnumber=\"64\"> Jesus said to him, \"You have said it yourself. But I tell you, from now on you will see the Son of Man sitting at the right hand of the Power and coming on the clouds of heaven.\"</VERS>\n\t\t\t<VERS vnumber=\"65\"> Then the high priest tore his clothes and declared, \"He has blasphemed! Why do we still need witnesses? Now you have heard the blasphemy! </VERS>\n\t\t\t<VERS vnumber=\"66\"> What is your verdict?\" They answered, \"He is guilty and deserves death.\" </VERS>\n\t\t\t<VERS vnumber=\"67\"> Then they spat in his face and struck him with their fists. And some slapped him,</VERS>\n\t\t\t<VERS vnumber=\"68\"> saying, \"Prophesy for us, you Christ! Who hit you?\"</VERS>\n\t\t\t<VERS vnumber=\"69\"> Now Peter was sitting outside in the courtyard. A slave girl came to him and said, \"You also were with Jesus the Galilean.\" </VERS>\n\t\t\t<VERS vnumber=\"70\"> But he denied it in front of them all: \"I don't know what you're talking about!\" </VERS>\n\t\t\t<VERS vnumber=\"71\"> When he went out to the gateway, another slave girl saw him and said to the people there, \"This man was with Jesus the Nazarene.\" </VERS>\n\t\t\t<VERS vnumber=\"72\"> He denied it again with an oath, \"I do not know the man!\"</VERS>\n\t\t\t<VERS vnumber=\"73\"> After a little while, those standing there came up to Peter and said, \"You really are one of them too, even your accent gives you away!\"</VERS>\n\t\t\t<VERS vnumber=\"74\"> At that he began to curse, and he swore with an oath, \"I do not know the man!\" At that moment a rooster crowed.</VERS>\n\t\t\t<VERS vnumber=\"75\"> Then Peter remembered what Jesus had said: \"Before the rooster crows, you will deny me three times.\" And he went outside and wept bitterly.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"27\">\n\t\t\t<VERS vnumber=\"1\"> When it was early in the morning, all the chief priests and the elders of the people plotted against Jesus to execute him. </VERS>\n\t\t\t<VERS vnumber=\"2\"> They tied him up, led him away, and handed him over to Pilate the governor.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Now when Judas, who had betrayed him, saw that Jesus had been condemned, he regretted what he had done and returned the thirty silver coins to the chief priests and the elders,</VERS>\n\t\t\t<VERS vnumber=\"4\"> saying, \"I have sinned by betraying innocent blood!\" But they said, \"What is that to us? You take care of it yourself!\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> So Judas threw the silver coins into the temple and left. Then he went out and hanged himself. </VERS>\n\t\t\t<VERS vnumber=\"6\"> The chief priests took the silver and said, \"It is not lawful to put this into the temple treasury, since it is blood money.\" </VERS>\n\t\t\t<VERS vnumber=\"7\"> After consulting together they bought the Potter's Field with it, as a burial place for foreigners. </VERS>\n\t\t\t<VERS vnumber=\"8\"> For this reason that field has been called the \"Field of Blood\" to this day.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Then what was spoken by Jeremiah the prophet was fulfilled: \"They took the thirty silver coins, the price of the one whose price had been set by the people of Israel,</VERS>\n\t\t\t<VERS vnumber=\"10\"> and they gave them for the potter's field, as the Lord commanded me.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> Then Jesus stood before the governor, and the governor asked him, \"Are you the king of the Jews?\" Jesus said, \"You say so.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> But when he was accused by the chief priests and the elders, he did not respond.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Then Pilate said to him, \"Don't you hear how many charges they are bringing against you?\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> But he did not answer even one accusation, so that the governor was quite amazed.</VERS>\n\t\t\t<VERS vnumber=\"15\"> During the feast the governor was accustomed to release one prisoner to the crowd, whomever they wanted. </VERS>\n\t\t\t<VERS vnumber=\"16\"> At that time they had in custody a notorious prisoner named Jesus Barabbas. </VERS>\n\t\t\t<VERS vnumber=\"17\"> So after they had assembled, Pilate said to them, \"Whom do you want me to release for you, Jesus Barabbas or Jesus who is called the Christ?\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> (For he knew that they had handed him over because of envy.)</VERS>\n\t\t\t<VERS vnumber=\"19\"> As he was sitting on the judgment seat, his wife sent a message to him: \"Have nothing to do with that innocent man; I have suffered greatly as a result of a dream about him today.\" </VERS>\n\t\t\t<VERS vnumber=\"20\"> But the chief priests and the elders persuaded the crowds to ask for Barabbas and to have Jesus killed.</VERS>\n\t\t\t<VERS vnumber=\"21\"> The governor asked them, \"Which of the two do you want me to release for you?\" And they said, \"Barabbas!\" </VERS>\n\t\t\t<VERS vnumber=\"22\"> Pilate said to them, \"Then what should I do with Jesus who is called the Christ?\" They all said, \"Crucify him!\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> He asked, \"Why? What wrong has he done?\" But they shouted more insistently, \"Crucify him!\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> When Pilate saw that he could do nothing, but that instead a riot was starting, he took some water, washed his hands before the crowd and said, \"I am innocent of this man's blood. You take care of it yourselves!\"</VERS>\n\t\t\t<VERS vnumber=\"25\"> In reply all the people said, \"Let his blood be on us and on our children!\" </VERS>\n\t\t\t<VERS vnumber=\"26\"> Then he released Barabbas for them. But after he had Jesus flogged, he handed him over to be crucified.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Then the governor's soldiers took Jesus into the governor's residence and gathered the whole cohort around him. </VERS>\n\t\t\t<VERS vnumber=\"28\"> They stripped him and put a scarlet robe around him, </VERS>\n\t\t\t<VERS vnumber=\"29\"> and after braiding a crown of thorns, they put it on his head. They put a staff in his right hand, and kneeling down before him, they mocked him: \"Hail, king of the Jews!\"</VERS>\n\t\t\t<VERS vnumber=\"30\"> They spat on him and took the staff and struck him repeatedly on the head. </VERS>\n\t\t\t<VERS vnumber=\"31\"> When they had mocked him, they stripped him of the robe and put his own clothes back on him. Then they led him away to crucify him.</VERS>\n\t\t\t<VERS vnumber=\"32\"> As they were going out, they found a man from Cyrene named Simon, whom they forced to carry his cross.</VERS>\n\t\t\t<VERS vnumber=\"33\"> They came to a place called Golgotha (which means \"Place of the Skull\")</VERS>\n\t\t\t<VERS vnumber=\"34\"> and offered Jesus wine mixed with gall to drink. But after tasting it, he would not drink it. </VERS>\n\t\t\t<VERS vnumber=\"35\"> When they had crucified him, they divided his clothes by throwing dice.</VERS>\n\t\t\t<VERS vnumber=\"36\"> Then they sat down and kept guard over him there.</VERS>\n\t\t\t<VERS vnumber=\"37\"> Above his head they put the charge against him, which read: \"This is Jesus, the king of the Jews.\" </VERS>\n\t\t\t<VERS vnumber=\"38\"> Then two outlaws were crucified with him, one on his right and one on his left.</VERS>\n\t\t\t<VERS vnumber=\"39\"> Those who passed by defamed him, shaking their heads </VERS>\n\t\t\t<VERS vnumber=\"40\"> and saying, \"You who can destroy the temple and rebuild it in three days, save yourself! If you are God's Son, come down from the cross!\" </VERS>\n\t\t\t<VERS vnumber=\"41\"> In the same way even the chief priests, together with the experts in the law and elders, were mocking him:</VERS>\n\t\t\t<VERS vnumber=\"42\"> \"He saved others, but he cannot save himself! He is the king of Israel! If he comes down now from the cross, we will believe in him! </VERS>\n\t\t\t<VERS vnumber=\"43\"> He trusts in God, let God, if he wants to, deliver him now because he said, 'I am God's Son'!\"</VERS>\n\t\t\t<VERS vnumber=\"44\"> The robbers who were crucified with him also spoke abusively to him.</VERS>\n\t\t\t<VERS vnumber=\"45\"> Now from noon until three, darkness came over all the land.</VERS>\n\t\t\t<VERS vnumber=\"46\"> At about three o'clock Jesus shouted with a loud voice, \"Eli, Eli, lema sabachthani?\" that is, \"My God, my God, why have you forsaken me?\"</VERS>\n\t\t\t<VERS vnumber=\"47\"> When some of the bystanders heard it, they said, \"This man is calling for Elijah.\" </VERS>\n\t\t\t<VERS vnumber=\"48\"> Immediately one of them ran and got a sponge, filled it with sour wine, put it on a stick, and gave it to him to drink. </VERS>\n\t\t\t<VERS vnumber=\"49\"> But the rest said, \"Leave him alone! Let's see if Elijah will come to save him.\"</VERS>\n\t\t\t<VERS vnumber=\"50\"> Then Jesus cried out again with a loud voice and gave up his spirit.</VERS>\n\t\t\t<VERS vnumber=\"51\"> Just then the temple curtain was torn in two, from top to bottom. The earth shook and the rocks were split apart. </VERS>\n\t\t\t<VERS vnumber=\"52\"> And tombs were opened, and the bodies of many saints who had died were raised. </VERS>\n\t\t\t<VERS vnumber=\"53\"> (They came out of the tombs after his resurrection and went into the holy city and appeared to many people.) </VERS>\n\t\t\t<VERS vnumber=\"54\"> Now when the centurion and those with him who were guarding Jesus saw the earthquake and what took place, they were extremely terrified and said, \"Truly this one was God's Son!\" </VERS>\n\t\t\t<VERS vnumber=\"55\"> Many women who had followed Jesus from Galilee and given him support were also there, watching from a distance. </VERS>\n\t\t\t<VERS vnumber=\"56\"> Among them were Mary Magdalene, Mary the mother of James and Joseph, and the mother of the sons of Zebedee.</VERS>\n\t\t\t<VERS vnumber=\"57\"> Now when it was evening, there came a rich man from Arimathea, named Joseph, who was also a disciple of Jesus.</VERS>\n\t\t\t<VERS vnumber=\"58\"> He went to Pilate and asked for the body of Jesus. Then Pilate ordered that it be given to him. </VERS>\n\t\t\t<VERS vnumber=\"59\"> Joseph took the body, wrapped it in a clean linen cloth,</VERS>\n\t\t\t<VERS vnumber=\"60\"> and placed it in his own new tomb that he had cut in the rock. Then he rolled a great stone across the entrance of the tomb and went away. </VERS>\n\t\t\t<VERS vnumber=\"61\"> (Now Mary Magdalene and the other Mary were sitting there, opposite the tomb.)</VERS>\n\t\t\t<VERS vnumber=\"62\"> The next day (which is after the day of preparation) the chief priests and the Pharisees assembled before Pilate </VERS>\n\t\t\t<VERS vnumber=\"63\"> and said, \"Sir, we remember that while that deceiver was still alive he said, 'After three days I will rise again.'</VERS>\n\t\t\t<VERS vnumber=\"64\"> So give orders to secure the tomb until the third day. Otherwise his disciples may come and steal his body and say to the people, 'He has been raised from the dead,' and the last deception will be worse than the first.\"</VERS>\n\t\t\t<VERS vnumber=\"65\"> Pilate said to them, \"Take a guard of soldiers. Go and make it as secure as you can.\" </VERS>\n\t\t\t<VERS vnumber=\"66\"> So they went with the soldiers of the guard and made the tomb secure by sealing the stone.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"28\">\n\t\t\t<VERS vnumber=\"1\"> Now after the Sabbath, at dawn on the first day of the week, Mary Magdalene and the other Mary went to look at the tomb.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Suddenly there was a severe earthquake, for an angel of the Lord descending from heaven came and rolled away the stone and sat on it. </VERS>\n\t\t\t<VERS vnumber=\"3\"> His appearance was like lightning, and his clothes were white as snow. </VERS>\n\t\t\t<VERS vnumber=\"4\"> The guards were shaken and became like dead men because they were so afraid of him. </VERS>\n\t\t\t<VERS vnumber=\"5\"> But the angel said to the women, \"Do not be afraid; I know that you are looking for Jesus, who was crucified.</VERS>\n\t\t\t<VERS vnumber=\"6\"> He is not here, for he has been raised, just as he said. Come and see the place where he was lying. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Then go quickly and tell his disciples, 'He has been raised from the dead. He is going ahead of you into Galilee. You will see him there.' Listen, I have told you!\" </VERS>\n\t\t\t<VERS vnumber=\"8\"> So they left the tomb quickly, with fear and great joy, and ran to tell his disciples. </VERS>\n\t\t\t<VERS vnumber=\"9\"> But Jesus met them, saying, \"Greetings!\" They came to him, held on to his feet and worshiped him. </VERS>\n\t\t\t<VERS vnumber=\"10\"> Then Jesus said to them, \"Do not be afraid. Go and tell my brothers to go to Galilee. They will see me there.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> While they were going, some of the guard went into the city and told the chief priests everything that had happened. </VERS>\n\t\t\t<VERS vnumber=\"12\"> After they had assembled with the elders and formed a plan, they gave a large sum of money to the soldiers, </VERS>\n\t\t\t<VERS vnumber=\"13\"> telling them, \"You are to say, 'His disciples came at night and stole his body while we were asleep.' </VERS>\n\t\t\t<VERS vnumber=\"14\"> If this matter is heard before the governor, we will satisfy him and keep you out of trouble.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> So they took the money and did as they were instructed. And this story is told among the Jews to this day.</VERS>\n\t\t\t<VERS vnumber=\"16\"> So the eleven disciples went to Galilee to the mountain Jesus had designated. </VERS>\n\t\t\t<VERS vnumber=\"17\"> When they saw him, they worshiped him, but some doubted.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Then Jesus came up and said to them, \"All authority in heaven and on earth has been given to me. </VERS>\n\t\t\t<VERS vnumber=\"19\"> Therefore go and make disciples of all nations, baptizing them in the name of the Father and the Son and the Holy Spirit,</VERS>\n\t\t\t<VERS vnumber=\"20\"> teaching them to obey everything I have commanded you. And remember, I am with you always, to the end of the age.\"</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"41\" bname=\"Mark\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> The beginning of the gospel of Jesus Christ, the Son of God.</VERS>\n\t\t\t<VERS vnumber=\"2\"> As it is written in Isaiah the prophet, \"Look, I am sending my messenger ahead of you, who will prepare your way,</VERS>\n\t\t\t<VERS vnumber=\"3\"> the voice of one shouting in the wilderness, 'Prepare the way for the Lord, make his paths straight.'\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> In the wilderness John the baptizer began preaching a baptism of repentance for the forgiveness of sins.</VERS>\n\t\t\t<VERS vnumber=\"5\"> People from the whole Judean countryside and all of Jerusalem were going out to him, and he was baptizing them in the Jordan River as they confessed their sins.</VERS>\n\t\t\t<VERS vnumber=\"6\"> John wore a garment made of camel's hair with a leather belt around his waist, and he ate locusts and wild honey.</VERS>\n\t\t\t<VERS vnumber=\"7\"> He proclaimed, \"One more powerful than I am is coming after me; I am not worthy to bend down and untie the strap of his sandals. </VERS>\n\t\t\t<VERS vnumber=\"8\"> I baptize you with water, but he will baptize you with the Holy Spirit.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> Now in those days Jesus came from Nazareth in Galilee and was baptized by John in the Jordan River.</VERS>\n\t\t\t<VERS vnumber=\"10\"> And just as Jesus was coming up out of the water, he saw the heavens splitting apart and the Spirit descending on him like a dove.</VERS>\n\t\t\t<VERS vnumber=\"11\"> And a voice came from heaven: \"You are my one dear Son; in you I take great delight.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> The Spirit immediately drove him into the wilderness.</VERS>\n\t\t\t<VERS vnumber=\"13\"> He was in the wilderness forty days, enduring temptations from Satan. He was with wild animals, and angels were ministering to his needs.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Now after John was imprisoned, Jesus went into Galilee and proclaimed the gospel of God.</VERS>\n\t\t\t<VERS vnumber=\"15\"> He said, \"The time is fulfilled and the kingdom of God is near. Repent and believe the gospel!\" </VERS>\n\t\t\t<VERS vnumber=\"16\"> As he went along the Sea of Galilee, he saw Simon and Andrew, Simon's brother, casting a net into the sea (for they were fishermen).</VERS>\n\t\t\t<VERS vnumber=\"17\"> Jesus said to them, \"Follow me, and I will turn you into fishers of people.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> They left their nets immediately and followed him.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Going on a little farther, he saw James, the son of Zebedee, and John his brother in their boat mending nets. </VERS>\n\t\t\t<VERS vnumber=\"20\"> Immediately he called them, and they left their father Zebedee in the boat with the hired men and followed him.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Then they went to Capernaum. When the Sabbath came, Jesus went into the synagogue and began to teach. </VERS>\n\t\t\t<VERS vnumber=\"22\"> The people there were amazed by his teaching, because he taught them like one who had authority, not like the experts in the law.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Just then there was a man in their synagogue with an unclean spirit, and he cried out,</VERS>\n\t\t\t<VERS vnumber=\"24\"> \"Leave us alone, Jesus the Nazarene! Have you come to destroy us? I know who you are, the Holy One of God!\"</VERS>\n\t\t\t<VERS vnumber=\"25\"> But Jesus rebuked him: \"Silence! Come out of him!\"</VERS>\n\t\t\t<VERS vnumber=\"26\"> After throwing him into convulsions, the unclean spirit cried out with a loud voice and came out of him.</VERS>\n\t\t\t<VERS vnumber=\"27\"> They were all amazed so that they asked each other, \"What is this? A new teaching with authority! He even commands the unclean spirits and they obey him.\"</VERS>\n\t\t\t<VERS vnumber=\"28\"> So the news about him spread quickly throughout all the region around Galilee.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Now as soon as they left the synagogue, they entered Simon and Andrew's house, with James and John. </VERS>\n\t\t\t<VERS vnumber=\"30\"> Simon's mother-in-law was lying down, sick with a fever, so they spoke to Jesus at once about her.</VERS>\n\t\t\t<VERS vnumber=\"31\"> He came and raised her up by gently taking her hand. Then the fever left her and she began to serve them. </VERS>\n\t\t\t<VERS vnumber=\"32\"> When it was evening, after sunset, they brought to him all who were sick and demon-possessed.</VERS>\n\t\t\t<VERS vnumber=\"33\"> The whole town gathered by the door.</VERS>\n\t\t\t<VERS vnumber=\"34\"> So he healed many who were sick with various diseases and drove out many demons. But he would not permit the demons to speak, because they knew him.</VERS>\n\t\t\t<VERS vnumber=\"35\"> Then Jesus got up early in the morning when it was still very dark, departed, and went out to a deserted place, and there he spent time in prayer.</VERS>\n\t\t\t<VERS vnumber=\"36\"> Simon and his companions searched for him.</VERS>\n\t\t\t<VERS vnumber=\"37\"> When they found him, they said, \"Everyone is looking for you.\"</VERS>\n\t\t\t<VERS vnumber=\"38\"> He replied, \"Let us go elsewhere, into the surrounding villages, so that I can preach there too. For that is what I came out here to do.\"</VERS>\n\t\t\t<VERS vnumber=\"39\"> So he went into all of Galilee preaching in their synagogues and casting out demons.</VERS>\n\t\t\t<VERS vnumber=\"40\"> Now a leper came to him and fell to his knees, asking for help. \"If you are willing, you can make me clean,\" he said. </VERS>\n\t\t\t<VERS vnumber=\"41\"> Moved with compassion, Jesus stretched out his hand and touched him, saying, \"I am willing. Be clean!\" </VERS>\n\t\t\t<VERS vnumber=\"42\"> The leprosy left him at once, and he was clean.</VERS>\n\t\t\t<VERS vnumber=\"43\"> Immediately Jesus sent the man away with a very strong warning. </VERS>\n\t\t\t<VERS vnumber=\"44\"> He told him, \"See that you do not say anything to anyone, but go, show yourself to a priest, and bring the offering that Moses commanded for your cleansing, as a testimony to them.\"</VERS>\n\t\t\t<VERS vnumber=\"45\"> But as the man went out he began to announce it publicly and spread the story widely, so that Jesus was no longer able to enter any town openly but stayed outside in remote places. Still they kept coming to him from everywhere.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> Now after some days, when he returned to Capernaum, the news spread that he was at home. </VERS>\n\t\t\t<VERS vnumber=\"2\"> So many gathered that there was no longer any room, not even by the door, and he preached the word to them. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Some people came bringing to him a paralytic, carried by four of them.</VERS>\n\t\t\t<VERS vnumber=\"4\"> When they were not able to bring him in because of the crowd, they removed the roof above Jesus. Then, after tearing it out, they lowered the stretcher the paralytic was lying on. </VERS>\n\t\t\t<VERS vnumber=\"5\"> When Jesus saw their faith, he said to the paralytic, \"Son, your sins are forgiven.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> Now some of the experts in the law were sitting there, turning these things over in their minds:</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"Why does this man speak this way? He is blaspheming! Who can forgive sins but God alone?\" </VERS>\n\t\t\t<VERS vnumber=\"8\"> Now immediately, when Jesus realized in his spirit that they were contemplating such thoughts, he said to them, \"Why are you thinking such things in your hearts?</VERS>\n\t\t\t<VERS vnumber=\"9\"> Which is easier, to say to the paralytic, 'Your sins are forgiven,' or to say, 'Stand up, take your stretcher, and walk'? </VERS>\n\t\t\t<VERS vnumber=\"10\"> But so that you may know that the Son of Man has authority on earth to forgive sins,\", he said to the paralytic,</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"I tell you, stand up, take your stretcher, and go home.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> And immediately the man stood up, took his stretcher, and went out in front of them all. They were all amazed and glorified God, saying, \"We have never seen anything like this!\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> Jesus went out again by the sea. The whole crowd came to him, and he taught them. </VERS>\n\t\t\t<VERS vnumber=\"14\"> As he went along, he saw Levi, the son of Alphaeus, sitting at the tax booth. \"Follow me,\" he said to him. And he got up and followed him. </VERS>\n\t\t\t<VERS vnumber=\"15\"> As Jesus was having a meal in Levi's home, many tax collectors and sinners were eating with Jesus and his disciples, for there were many who followed him. </VERS>\n\t\t\t<VERS vnumber=\"16\"> When the experts in the law and the Pharisees saw that he was eating with sinners and tax collectors, they said to his disciples, \"Why does he eat with tax collectors and sinners?\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> When Jesus heard this he said to them, \"Those who are healthy don't need a physician, but those who are sick do. I have not come to call the righteous, but sinners.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> Now John's disciples and the Pharisees were fasting. So they came to Jesus and said, \"Why do the disciples of John and the disciples of the Pharisees fast, but your disciples don't fast?\" </VERS>\n\t\t\t<VERS vnumber=\"19\"> Jesus said to them, \"The wedding guests cannot fast while the bridegroom is with them, can they? As long as they have the bridegroom with them they do not fast. </VERS>\n\t\t\t<VERS vnumber=\"20\"> But the days are coming when the bridegroom will be taken from them, and at that time they will fast. </VERS>\n\t\t\t<VERS vnumber=\"21\"> No one sews a patch of unshrunk cloth on an old garment; otherwise, the patch pulls away from it, the new from the old, and the tear becomes worse.</VERS>\n\t\t\t<VERS vnumber=\"22\"> And no one pours new wine into old wineskins; otherwise, the wine will burst the skins, and both the wine and the skins will be destroyed. Instead new wine is poured into new wineskins.\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> Jesus was going through the grain fields on a Sabbath, and his disciples began to pick some heads of wheat as they made their way. </VERS>\n\t\t\t<VERS vnumber=\"24\"> So the Pharisees said to him, \"Look, why are they doing what is against the law on the Sabbath?\" </VERS>\n\t\t\t<VERS vnumber=\"25\"> He said to them, \"Have you never read what David did when he was in need and he and his companions were hungry,</VERS>\n\t\t\t<VERS vnumber=\"26\"> how he entered the house of God when Abiathar was high priest and ate the sacred bread, which is against the law for any but the priests to eat, and also gave it to his companions?\"</VERS>\n\t\t\t<VERS vnumber=\"27\"> Then he said to them, \"The Sabbath was made for people, not people for the Sabbath. </VERS>\n\t\t\t<VERS vnumber=\"28\"> For this reason the Son of Man is lord even of the Sabbath.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> Then Jesus entered the synagogue again, and a man was there who had a withered hand.</VERS>\n\t\t\t<VERS vnumber=\"2\"> They watched Jesus closely to see if he would heal him on the Sabbath, so that they could accuse him. </VERS>\n\t\t\t<VERS vnumber=\"3\"> So he said to the man who had the withered hand, \"Stand up among all these people.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> Then he said to them, \"Is it lawful to do good on the Sabbath, or evil, to save a life or destroy it?\" But they were silent. </VERS>\n\t\t\t<VERS vnumber=\"5\"> After looking around at them in anger, grieved by the hardness of their hearts, he said to the man, \"Stretch out your hand.\" He stretched it out, and his hand was restored.</VERS>\n\t\t\t<VERS vnumber=\"6\"> So the Pharisees went out immediately and began plotting with the Herodians, as to how they could assassinate him.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Then Jesus went away with his disciples to the sea, and a great multitude from Galilee followed him. And from Judea, </VERS>\n\t\t\t<VERS vnumber=\"8\"> Jerusalem, Idumea, beyond the Jordan River, and around Tyre and Sidon a great multitude came to him when they heard about the things he had done. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Because of the crowd, he told his disciples to have a small boat ready for him so the crowd would not press toward him. </VERS>\n\t\t\t<VERS vnumber=\"10\"> For he had healed many, so that all who were afflicted with diseases pressed toward him in order to touch him.</VERS>\n\t\t\t<VERS vnumber=\"11\"> And whenever the unclean spirits saw him, they fell down before him and cried out, \"You are the Son of God.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> But he sternly ordered them not to make him known.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Now Jesus went up the mountain and called for those he wanted, and they came to him. </VERS>\n\t\t\t<VERS vnumber=\"14\"> He appointed twelve (whom he named apostles), so that they would be with him and he could send them to preach</VERS>\n\t\t\t<VERS vnumber=\"15\"> and to have authority to cast out demons.</VERS>\n\t\t\t<VERS vnumber=\"16\"> He appointed twelve: To Simon he gave the name Peter; </VERS>\n\t\t\t<VERS vnumber=\"17\"> to James and his brother John, the sons of Zebedee, he gave the name Boanerges (that is, \"sons of thunder\");</VERS>\n\t\t\t<VERS vnumber=\"18\"> and Andrew, Philip, Bartholomew, Matthew, Thomas, James the son of Alphaeus, Thaddaeus, Simon the Zealot,</VERS>\n\t\t\t<VERS vnumber=\"19\"> and Judas Iscariot, who betrayed him.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Now Jesus went home, and a crowd gathered so that they were not able to eat. </VERS>\n\t\t\t<VERS vnumber=\"21\"> When his family heard this they went out to restrain him, for they said, \"He is out of his mind.\" </VERS>\n\t\t\t<VERS vnumber=\"22\"> The experts in the law who came down from Jerusalem said, \"He is possessed by Beelzebul,\" and, \"By the ruler of demons he casts out demons.\" </VERS>\n\t\t\t<VERS vnumber=\"23\"> So he called them and spoke to them in parables: \"How can Satan cast out Satan? </VERS>\n\t\t\t<VERS vnumber=\"24\"> If a kingdom is divided against itself, that kingdom will not be able to stand. </VERS>\n\t\t\t<VERS vnumber=\"25\"> If a house is divided against itself, that house will not be able to stand.</VERS>\n\t\t\t<VERS vnumber=\"26\"> And if Satan rises against himself and is divided, he is not able to stand and his end has come.</VERS>\n\t\t\t<VERS vnumber=\"27\"> But no one is able to enter a strong man's house and steal his property unless he first ties up the strong man. Then he can thoroughly plunder his house.</VERS>\n\t\t\t<VERS vnumber=\"28\"> I tell you the truth, people will be forgiven for all sins, even all the blasphemies they utter.</VERS>\n\t\t\t<VERS vnumber=\"29\"> But whoever blasphemes against the Holy Spirit will never be forgiven, but is guilty of an eternal sin\"</VERS>\n\t\t\t<VERS vnumber=\"30\"> (because they said, \"He has an unclean spirit\").</VERS>\n\t\t\t<VERS vnumber=\"31\"> Then Jesus' mother and his brothers came. Standing outside, they sent word to him, to summon him. </VERS>\n\t\t\t<VERS vnumber=\"32\"> A crowd was sitting around him and they said to him, \"Look, your mother and your brothers are outside looking for you.\" </VERS>\n\t\t\t<VERS vnumber=\"33\"> He answered them and said, \"Who are my mother and my brothers?\"</VERS>\n\t\t\t<VERS vnumber=\"34\"> And looking at those who were sitting around him in a circle, he said, \"Here are my mother and my brothers! </VERS>\n\t\t\t<VERS vnumber=\"35\"> For whoever does the will of God is my brother and sister and mother.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\"> Again he began to teach by the lake. Such a large crowd gathered around him that he got into a boat on the lake and sat there while the whole crowd was on the shore by the lake. </VERS>\n\t\t\t<VERS vnumber=\"2\"> He taught them many things in parables, and in his teaching said to them: </VERS>\n\t\t\t<VERS vnumber=\"3\"> \"Listen! A sower went out to sow.</VERS>\n\t\t\t<VERS vnumber=\"4\"> And as he sowed, some seed fell along the path, and the birds came and devoured it. </VERS>\n\t\t\t<VERS vnumber=\"5\"> Other seed fell on rocky ground where it did not have much soil. It sprang up at once because the soil was not deep.</VERS>\n\t\t\t<VERS vnumber=\"6\"> When the sun came up it was scorched, and because it did not have sufficient root, it withered. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Other seed fell among the thorns, and they grew up and choked it, and it did not produce grain. </VERS>\n\t\t\t<VERS vnumber=\"8\"> But other seed fell on good soil and produced grain, sprouting and growing; some yielded thirty times as much, some sixty, and some a hundred times.\" </VERS>\n\t\t\t<VERS vnumber=\"9\"> And he said, \"Whoever has ears to hear had better listen!\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> When he was alone, those around him with the twelve asked him about the parables.</VERS>\n\t\t\t<VERS vnumber=\"11\"> He said to them, \"The secret of the kingdom of God has been given to you. But to those outside, everything is in parables,</VERS>\n\t\t\t<VERS vnumber=\"12\"> so that although they look they may look but not see, and although they hear they may hear but not understand, so they may not repent and be forgiven.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> He said to them, \"Don't you understand this parable? Then how will you understand any parable? </VERS>\n\t\t\t<VERS vnumber=\"14\"> The sower sows the word.</VERS>\n\t\t\t<VERS vnumber=\"15\"> These are the ones on the path where the word is sown: Whenever they hear, immediately Satan comes and snatches the word that was sown in them. </VERS>\n\t\t\t<VERS vnumber=\"16\"> These are the ones sown on rocky ground: As soon as they hear the word, they receive it with joy.</VERS>\n\t\t\t<VERS vnumber=\"17\"> But they have no root in themselves and do not endure. Then, when trouble or persecution comes because of the word, immediately they fall away. </VERS>\n\t\t\t<VERS vnumber=\"18\"> Others are the ones sown among thorns: They are those who hear the word,</VERS>\n\t\t\t<VERS vnumber=\"19\"> but worldly cares, the seductiveness of wealth, and the desire for other things come in and choke the word, and it produces nothing. </VERS>\n\t\t\t<VERS vnumber=\"20\"> But these are the ones sown on good soil: They hear the word and receive it and bear fruit, one thirty times as much, one sixty, and one a hundred.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> He also said to them, \"A lamp isn't brought to be put under a basket or under a bed, is it? Isn't it to be placed on a lampstand? </VERS>\n\t\t\t<VERS vnumber=\"22\"> For nothing is hidden except to be revealed, and nothing concealed except to be brought to light. </VERS>\n\t\t\t<VERS vnumber=\"23\"> If anyone has ears to hear, he had better listen!\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> And he said to them, \"Take care about what you hear. The measure you use will be the measure you receive, and more will be added to you. </VERS>\n\t\t\t<VERS vnumber=\"25\"> For whoever has will be given more, but whoever does not have, even what he has will be taken from him.\"</VERS>\n\t\t\t<VERS vnumber=\"26\"> He also said, \"The kingdom of God is like someone who spreads seed on the ground.</VERS>\n\t\t\t<VERS vnumber=\"27\"> He goes to sleep and gets up, night and day, and the seed sprouts and grows, though he does not know how.</VERS>\n\t\t\t<VERS vnumber=\"28\"> By itself the soil produces a crop, first the stalk, then the head, then the full grain in the head.</VERS>\n\t\t\t<VERS vnumber=\"29\"> And when the grain is ripe, he sends in the sickle because the harvest has come.\"</VERS>\n\t\t\t<VERS vnumber=\"30\"> He also asked, \"To what can we compare the kingdom of God, or what parable can we use to present it?</VERS>\n\t\t\t<VERS vnumber=\"31\"> It is like a mustard seed that when sown in the ground, even though it is the smallest of all the seeds in the ground,</VERS>\n\t\t\t<VERS vnumber=\"32\"> when it is sown, it grows up, becomes the greatest of all garden plants, and grows large branches so that the wild birds can nest in its shade.\"</VERS>\n\t\t\t<VERS vnumber=\"33\"> So with many parables like these, he spoke the word to them, as they were able to hear. </VERS>\n\t\t\t<VERS vnumber=\"34\"> He did not speak to them without a parable. But privately he explained everything to his own disciples.</VERS>\n\t\t\t<VERS vnumber=\"35\"> On that day, when evening came, Jesus said to his disciples, \"Let's go across to the other side of the lake.\"</VERS>\n\t\t\t<VERS vnumber=\"36\"> So after leaving the crowd, they took him along, just as he was, in the boat, and other boats were with him.</VERS>\n\t\t\t<VERS vnumber=\"37\"> Now a great windstorm developed and the waves were breaking into the boat, so that the boat was nearly swamped. </VERS>\n\t\t\t<VERS vnumber=\"38\"> But he was in the stern, sleeping on a cushion. They woke him up and said to him, \"Teacher, don't you care that we are about to die?\" </VERS>\n\t\t\t<VERS vnumber=\"39\"> So he got up and rebuked the wind, and said to the sea, \"Be quiet! Calm down!\" Then the wind stopped, and it was dead calm. </VERS>\n\t\t\t<VERS vnumber=\"40\"> And he said to them, \"Why are you cowardly? Do you still not have faith?\"</VERS>\n\t\t\t<VERS vnumber=\"41\"> They were overwhelmed by fear and said to one another, \"Who then is this? Even the wind and sea obey him!\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"5\">\n\t\t\t<VERS vnumber=\"1\"> So they came to the other side of the lake, to the region of the Gerasenes.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Just as Jesus was getting out of the boat, a man with an unclean spirit came from the tombs and met him.</VERS>\n\t\t\t<VERS vnumber=\"3\"> He lived among the tombs, and no one could bind him anymore, not even with a chain.</VERS>\n\t\t\t<VERS vnumber=\"4\"> For his hands and feet had often been bound with chains and shackles, but he had torn the chains apart and broken the shackles in pieces. No one was strong enough to subdue him. </VERS>\n\t\t\t<VERS vnumber=\"5\"> Each night and every day among the tombs and in the mountains, he would cry out and cut himself with stones.</VERS>\n\t\t\t<VERS vnumber=\"6\"> When he saw Jesus from a distance, he ran and bowed down before him.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Then he cried out with a loud voice, \"Leave me alone, Jesus, Son of the Most High God! I implore you by God, do not torment me!\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> (For Jesus had said to him, \"Come out of that man, you unclean spirit!\")</VERS>\n\t\t\t<VERS vnumber=\"9\"> Jesus asked him, \"What is your name?\" And he said, \"My name is Legion, for we are many.\" </VERS>\n\t\t\t<VERS vnumber=\"10\"> He begged Jesus repeatedly not to send them out of the region. </VERS>\n\t\t\t<VERS vnumber=\"11\"> There on the hillside, a great herd of pigs was feeding. </VERS>\n\t\t\t<VERS vnumber=\"12\"> And the demonic spirits begged him, \"Send us into the pigs. Let us enter them.\" </VERS>\n\t\t\t<VERS vnumber=\"13\"> Jesus gave them permission. So the unclean spirits came out and went into the pigs. Then the herd rushed down the steep slope into the lake, and about two thousand were drowned in the lake.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Now the herdsmen ran off and spread the news in the town and countryside, and the people went out to see what had happened. </VERS>\n\t\t\t<VERS vnumber=\"15\"> They came to Jesus and saw the demon-possessed man sitting there, clothed and in his right mind, the one who had the \"Legion\", and they were afraid.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Those who had seen what had happened to the demon-possessed man reported it, and they also told about the pigs.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Then they asked Jesus to leave their region. </VERS>\n\t\t\t<VERS vnumber=\"18\"> As he was getting into the boat the man who had been demon-possessed asked if he could go with him. </VERS>\n\t\t\t<VERS vnumber=\"19\"> But Jesus did not permit him to do so. Instead, he said to him, \"Go to your home and to your people and tell them what the Lord has done for you, that he had mercy on you.\" </VERS>\n\t\t\t<VERS vnumber=\"20\"> So he went away and began to proclaim in the Decapolis what Jesus had done for him, and all were amazed.</VERS>\n\t\t\t<VERS vnumber=\"21\"> When Jesus had crossed again in a boat to the other side, a large crowd gathered around him, and he was by the sea.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Then one of the synagogue rulers, named Jairus, came up, and when he saw Jesus, he fell at his feet. </VERS>\n\t\t\t<VERS vnumber=\"23\"> He asked him urgently, \"My little daughter is near death. Come and lay your hands on her so that she may be healed and live.\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> Jesus went with him, and a large crowd followed and pressed around him.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Now a woman was there who had been suffering from a hemorrhage for twelve years.</VERS>\n\t\t\t<VERS vnumber=\"26\"> She had endured a great deal under the care of many doctors and had spent all that she had. Yet instead of getting better, she grew worse.</VERS>\n\t\t\t<VERS vnumber=\"27\"> When she heard about Jesus, she came up behind him in the crowd and touched his cloak,</VERS>\n\t\t\t<VERS vnumber=\"28\"> for she kept saying, \"If only I touch his clothes, I will be healed.\"</VERS>\n\t\t\t<VERS vnumber=\"29\"> At once the bleeding stopped, and she felt in her body that she was healed of her disease. </VERS>\n\t\t\t<VERS vnumber=\"30\"> Jesus knew at once that power had gone out from him. He turned around in the crowd and said, \"Who touched my clothes?\"</VERS>\n\t\t\t<VERS vnumber=\"31\"> His disciples said to him, \"You see the crowd pressing against you and you say, 'Who touched me?'\"</VERS>\n\t\t\t<VERS vnumber=\"32\"> But he looked around to see who had done it. </VERS>\n\t\t\t<VERS vnumber=\"33\"> Then the woman, with fear and trembling, knowing what had happened to her, came and fell down before him and told him the whole truth.</VERS>\n\t\t\t<VERS vnumber=\"34\"> He said to her, \"Daughter, your faith has made you well. Go in peace, and be healed of your disease.\"</VERS>\n\t\t\t<VERS vnumber=\"35\"> While he was still speaking, people came from the synagogue ruler's house saying, \"Your daughter has died. Why trouble the teacher any longer?\" </VERS>\n\t\t\t<VERS vnumber=\"36\"> But Jesus, paying no attention to what was said, told the synagogue ruler, \"Do not be afraid; just believe.\"</VERS>\n\t\t\t<VERS vnumber=\"37\"> He did not let anyone follow him except Peter, James, and John, the brother of James. </VERS>\n\t\t\t<VERS vnumber=\"38\"> They came to the house of the synagogue ruler where he saw noisy confusion and people weeping and wailing loudly.</VERS>\n\t\t\t<VERS vnumber=\"39\"> When he entered he said to them, \"Why are you distressed and weeping? The child is not dead but asleep.\"</VERS>\n\t\t\t<VERS vnumber=\"40\"> And they began making fun of him. But he put them all outside and he took the child's father and mother and his own companions and went into the room where the child was.</VERS>\n\t\t\t<VERS vnumber=\"41\"> Then, gently taking the child by the hand, he said to her, \"Talitha koum,\" which means, \"Little girl, I say to you, get up.\"</VERS>\n\t\t\t<VERS vnumber=\"42\"> The girl got up at once and began to walk around (she was twelve years old). They were completely astonished at this.</VERS>\n\t\t\t<VERS vnumber=\"43\"> He strictly ordered that no one should know about this, and told them to give her something to eat.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"6\">\n\t\t\t<VERS vnumber=\"1\"> Now Jesus left that place and came to his hometown, and his disciples followed him. </VERS>\n\t\t\t<VERS vnumber=\"2\"> When the Sabbath came, he began to teach in the synagogue. Many who heard him were astonished, saying, \"Where did he get these ideas? And what is this wisdom that has been given to him? What are these miracles that are done through his hands? </VERS>\n\t\t\t<VERS vnumber=\"3\"> Isn't this the carpenter, the son of Mary and brother of James, Joses, Judas, and Simon? And aren't his sisters here with us?\" And so they took offense at him. </VERS>\n\t\t\t<VERS vnumber=\"4\"> Then Jesus said to them, \"A prophet is not without honor except in his hometown, and among his relatives, and in his own house.\" </VERS>\n\t\t\t<VERS vnumber=\"5\"> He was not able to do a miracle there, except to lay his hands on a few sick people and heal them.</VERS>\n\t\t\t<VERS vnumber=\"6\"> And he was amazed because of their unbelief. Then he went around among the villages and taught.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Jesus called the twelve and began to send them out two by two. He gave them authority over the unclean spirits.</VERS>\n\t\t\t<VERS vnumber=\"8\"> He instructed them to take nothing for the journey except a staff, no bread, no bag, no money in their belts,</VERS>\n\t\t\t<VERS vnumber=\"9\"> and to put on sandals but not to wear two tunics.</VERS>\n\t\t\t<VERS vnumber=\"10\"> He said to them, \"Wherever you enter a house, stay there until you leave the area. </VERS>\n\t\t\t<VERS vnumber=\"11\"> If a place will not welcome you or listen to you, as you go out from there, shake the dust off your feet as a testimony against them.\" </VERS>\n\t\t\t<VERS vnumber=\"12\"> So they went out and preached that all should repent. </VERS>\n\t\t\t<VERS vnumber=\"13\"> They cast out many demons and anointed many sick people with oil and healed them.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Now King Herod heard this, for Jesus' name had become known. Some were saying, \"John the baptizer has been raised from the dead, and because of this, miraculous powers are at work in him.\" </VERS>\n\t\t\t<VERS vnumber=\"15\"> Others said, \"He is Elijah.\" Others said, \"He is a prophet, like one of the prophets from the past.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> But when Herod heard this, he said, \"John, whom I beheaded, has been raised!\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> For Herod himself had sent men, arrested John, and bound him in prison on account of Herodias, his brother Philip's wife, because Herod had married her. </VERS>\n\t\t\t<VERS vnumber=\"18\"> For John had repeatedly told Herod, \"It is not lawful for you to have your brother's wife.\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> So Herodias nursed a grudge against him and wanted to kill him. But she could not </VERS>\n\t\t\t<VERS vnumber=\"20\"> because Herod stood in awe of John and protected him, since he knew that John was a righteous and holy man. When Herod heard him, he was thoroughly baffled, and yet he liked to listen to John.</VERS>\n\t\t\t<VERS vnumber=\"21\"> But a suitable day came, when Herod gave a banquet on his birthday for his court officials, military commanders, and leaders of Galilee. </VERS>\n\t\t\t<VERS vnumber=\"22\"> When his daughter Herodias came in and danced, she pleased Herod and his dinner guests. The king said to the girl, \"Ask me for whatever you want and I will give it to you.\" </VERS>\n\t\t\t<VERS vnumber=\"23\"> He swore to her, \"Whatever you ask I will give you, up to half my kingdom.\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> So she went out and said to her mother, \"What should I ask for?\" Her mother said, \"The head of John the baptizer.\"</VERS>\n\t\t\t<VERS vnumber=\"25\"> Immediately she hurried back to the king and made her request: \"I want the head of John the Baptist on a platter immediately.\" </VERS>\n\t\t\t<VERS vnumber=\"26\"> Although it grieved the king deeply, he did not want to reject her request because of his oath and his guests. </VERS>\n\t\t\t<VERS vnumber=\"27\"> So the king sent an executioner at once to bring John's head, and he went and beheaded John in prison. </VERS>\n\t\t\t<VERS vnumber=\"28\"> He brought his head on a platter and gave it to the girl, and the girl gave it to her mother.</VERS>\n\t\t\t<VERS vnumber=\"29\"> When John's disciples heard this, they came and took his body and placed it in a tomb.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Then the apostles gathered around Jesus and told him everything they had done and taught. </VERS>\n\t\t\t<VERS vnumber=\"31\"> He said to them, \"Come with me privately to an isolated place and rest a while\" (for many were coming and going, and there was no time to eat).</VERS>\n\t\t\t<VERS vnumber=\"32\"> So they went away by themselves in a boat to some remote place.</VERS>\n\t\t\t<VERS vnumber=\"33\"> But many saw them leaving and recognized them, and they hurried on foot from all the towns and arrived there ahead of them.</VERS>\n\t\t\t<VERS vnumber=\"34\"> As Jesus came ashore he saw the large crowd and he had compassion on them, because they were like sheep without a shepherd. So he taught them many things.</VERS>\n\t\t\t<VERS vnumber=\"35\"> When it was already late, his disciples came to him and said, \"This is an isolated place and it is already very late. </VERS>\n\t\t\t<VERS vnumber=\"36\"> Send them away so that they can go into the surrounding countryside and villages and buy something for themselves to eat.\"</VERS>\n\t\t\t<VERS vnumber=\"37\"> But he answered them, \"You give them something to eat.\" And they said, \"Should we go and buy bread for two hundred silver coins and give it to them to eat?\" </VERS>\n\t\t\t<VERS vnumber=\"38\"> He said to them, \"How many loaves do you have? Go and see.\" When they found out, they said, \"Five, and two fish.\"</VERS>\n\t\t\t<VERS vnumber=\"39\"> Then he directed them all to sit down in groups on the green grass.</VERS>\n\t\t\t<VERS vnumber=\"40\"> So they reclined in groups of hundreds and fifties.</VERS>\n\t\t\t<VERS vnumber=\"41\"> He took the five loaves and the two fish, and looking up to heaven, he gave thanks and broke the loaves. He gave them to his disciples to serve the people, and he divided the two fish among them all. </VERS>\n\t\t\t<VERS vnumber=\"42\"> They all ate and were satisfied,</VERS>\n\t\t\t<VERS vnumber=\"43\"> and they picked up the broken pieces and fish that were left over, twelve baskets full.</VERS>\n\t\t\t<VERS vnumber=\"44\"> Now there were five thousand men who ate the bread.</VERS>\n\t\t\t<VERS vnumber=\"45\"> Immediately Jesus made his disciples get into the boat and go on ahead to the other side, to Bethsaida, while he dispersed the crowd. </VERS>\n\t\t\t<VERS vnumber=\"46\"> After saying good-bye to them, he went to the mountain to pray.</VERS>\n\t\t\t<VERS vnumber=\"47\"> When evening came, the boat was in the middle of the sea and he was alone on the land.</VERS>\n\t\t\t<VERS vnumber=\"48\"> He saw them straining at the oars, because the wind was against them. As the night was ending, he came to them walking on the sea, for he wanted to pass by them.</VERS>\n\t\t\t<VERS vnumber=\"49\"> When they saw him walking on the water they thought he was a ghost. They cried out, </VERS>\n\t\t\t<VERS vnumber=\"50\"> for they all saw him and were terrified. But immediately he spoke to them: \"Have courage! It is I. Do not be afraid.\" </VERS>\n\t\t\t<VERS vnumber=\"51\"> Then he went up with them into the boat, and the wind ceased. They were completely astonished,</VERS>\n\t\t\t<VERS vnumber=\"52\"> because they did not understand about the loaves, but their hearts were hardened.</VERS>\n\t\t\t<VERS vnumber=\"53\"> After they had crossed over, they came to land at Gennesaret and anchored there. </VERS>\n\t\t\t<VERS vnumber=\"54\"> As they got out of the boat, people immediately recognized Jesus.</VERS>\n\t\t\t<VERS vnumber=\"55\"> They ran through that whole region and began to bring the sick on mats to wherever he was rumored to be.</VERS>\n\t\t\t<VERS vnumber=\"56\"> And wherever he would go, into villages, towns, or countryside, they would place the sick in the marketplaces, and would ask him if they could just touch the edge of his cloak, and all who touched it were healed.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"7\">\n\t\t\t<VERS vnumber=\"1\"> Now the Pharisees and some of the experts in the law who came from Jerusalem gathered around him. </VERS>\n\t\t\t<VERS vnumber=\"2\"> And they saw that some of Jesus' disciples ate their bread with unclean hands, that is, unwashed.</VERS>\n\t\t\t<VERS vnumber=\"3\"> (For the Pharisees and all the Jews do not eat unless they perform a ritual washing, holding fast to the tradition of the elders. </VERS>\n\t\t\t<VERS vnumber=\"4\"> And when they come from the marketplace, they do not eat unless they wash. They hold fast to many other traditions: the washing of cups, pots, kettles, and dining couches.)</VERS>\n\t\t\t<VERS vnumber=\"5\"> The Pharisees and the experts in the law asked him, \"Why do your disciples not live according to the tradition of the elders, but eat with unwashed hands?\" </VERS>\n\t\t\t<VERS vnumber=\"6\"> He said to them, \"Isaiah prophesied correctly about you hypocrites, as it is written: 'This people honors me with their lips, but their heart is far from me.</VERS>\n\t\t\t<VERS vnumber=\"7\"> They worship me in vain, teaching as doctrine the commandments of men.'</VERS>\n\t\t\t<VERS vnumber=\"8\"> Having no regard for the command of God, you hold fast to human tradition.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> He also said to them, \"You neatly reject the commandment of God in order to set up your tradition. </VERS>\n\t\t\t<VERS vnumber=\"10\"> For Moses said, 'Honor your father and your mother,' and, 'Whoever insults his father or mother must be put to death.'</VERS>\n\t\t\t<VERS vnumber=\"11\"> But you say that if anyone tells his father or mother, 'Whatever help you would have received from me is corban' (that is, a gift for God), </VERS>\n\t\t\t<VERS vnumber=\"12\"> then you no longer permit him to do anything for his father or mother.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Thus you nullify the word of God by your tradition that you have handed down. And you do many things like this.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> Then he called the crowd again and said to them, \"Listen to me, everyone, and understand. </VERS>\n\t\t\t<VERS vnumber=\"15\"> There is nothing outside of a person that can defile him by going into him. Rather, it is what comes out of a person that defiles him.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> </VERS>\n\t\t\t<VERS vnumber=\"17\"> Now when Jesus had left the crowd and entered the house, his disciples asked him about the parable. </VERS>\n\t\t\t<VERS vnumber=\"18\"> He said to them, \"Are you so foolish? Don't you understand that whatever goes into a person from outside cannot defile him?</VERS>\n\t\t\t<VERS vnumber=\"19\"> For it does not enter his heart but his stomach, and then goes out into the sewer.\" (This means all foods are clean.)</VERS>\n\t\t\t<VERS vnumber=\"20\"> He said, \"What comes out of a person defiles him.</VERS>\n\t\t\t<VERS vnumber=\"21\"> For from within, out of the human heart, come evil ideas, sexual immorality, theft, murder,</VERS>\n\t\t\t<VERS vnumber=\"22\"> adultery, greed, evil, deceit, debauchery, envy, slander, pride, and folly.</VERS>\n\t\t\t<VERS vnumber=\"23\"> All these evils come from within and defile a person.\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> After Jesus left there, he went to the region of Tyre. When he went into a house, he did not want anyone to know, but he was not able to escape notice. </VERS>\n\t\t\t<VERS vnumber=\"25\"> Instead, a woman whose young daughter had an unclean spirit immediately heard about him and came and fell at his feet. </VERS>\n\t\t\t<VERS vnumber=\"26\"> The woman was a Greek, of Syrophoenician origin. She asked him to cast the demon out of her daughter. </VERS>\n\t\t\t<VERS vnumber=\"27\"> He said to her, \"Let the children be satisfied first, for it is not right to take the children's bread and to throw it to the dogs.\"</VERS>\n\t\t\t<VERS vnumber=\"28\"> She answered, \"Yes, Lord, but even the dogs under the table eat the children's crumbs.\"</VERS>\n\t\t\t<VERS vnumber=\"29\"> Then he said to her, \"Because you said this, you may go. The demon has left your daughter.\" </VERS>\n\t\t\t<VERS vnumber=\"30\"> She went home and found the child lying on the bed, and the demon gone.</VERS>\n\t\t\t<VERS vnumber=\"31\"> Then Jesus went out again from the region of Tyre and came through Sidon to the Sea of Galilee in the region of the Decapolis.</VERS>\n\t\t\t<VERS vnumber=\"32\"> They brought to him a deaf man who had difficulty speaking, and they asked him to place his hands on him.</VERS>\n\t\t\t<VERS vnumber=\"33\"> After Jesus took him aside privately, away from the crowd, he put his fingers in the man's ears, and after spitting, he touched his tongue.</VERS>\n\t\t\t<VERS vnumber=\"34\"> Then he looked up to heaven and said with a sigh, \"Ephphatha\" (that is, \"Be opened\").</VERS>\n\t\t\t<VERS vnumber=\"35\"> And immediately the man's ears were opened, his tongue loosened, and he spoke plainly. </VERS>\n\t\t\t<VERS vnumber=\"36\"> Jesus ordered them not to tell anything. But as much as he ordered them not to do this, they proclaimed it all the more.</VERS>\n\t\t\t<VERS vnumber=\"37\"> People were completely astounded and said, \"He has done everything well. He even makes the deaf hear and the mute speak.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"8\">\n\t\t\t<VERS vnumber=\"1\"> In those days there was another large crowd with nothing to eat. So Jesus called his disciples and said to them, </VERS>\n\t\t\t<VERS vnumber=\"2\"> \"I have compassion on the crowd, because they have already been here with me three days, and they have nothing to eat.</VERS>\n\t\t\t<VERS vnumber=\"3\"> If I send them home hungry, they will faint on the way, and some of them have come from a great distance.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> His disciples answered him, \"Where can someone get enough bread in this desolate place to satisfy these people?\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> He asked them, \"How many loaves do you have?\" They replied, \"Seven.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> Then he directed the crowd to sit down on the ground. After he took the seven loaves and gave thanks, he broke them and began giving them to the disciples to serve. So they served the crowd. </VERS>\n\t\t\t<VERS vnumber=\"7\"> They also had a few small fish. After giving thanks for these, he told them to serve these as well.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Everyone ate and was satisfied, and they picked up the broken pieces left over, seven baskets full. </VERS>\n\t\t\t<VERS vnumber=\"9\"> There were about four thousand who ate. Then he dismissed them.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Immediately he got into a boat with his disciples and went to the district of Dalmanutha.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Then the Pharisees came and began to argue with Jesus, asking for a sign from heaven to test him. </VERS>\n\t\t\t<VERS vnumber=\"12\"> Sighing deeply in his spirit he said, \"Why does this generation look for a sign? I tell you the truth, no sign will be given to this generation.\" </VERS>\n\t\t\t<VERS vnumber=\"13\"> Then he left them, got back into the boat, and went to the other side.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Now they had forgotten to take bread, except for one loaf they had with them in the boat. </VERS>\n\t\t\t<VERS vnumber=\"15\"> And Jesus ordered them, \"Watch out! Beware of the yeast of the Pharisees and the yeast of Herod!\" </VERS>\n\t\t\t<VERS vnumber=\"16\"> So they began to discuss with one another about having no bread.</VERS>\n\t\t\t<VERS vnumber=\"17\"> When he learned of this, Jesus said to them, \"Why are you arguing about having no bread? Do you still not see or understand? Have your hearts been hardened? </VERS>\n\t\t\t<VERS vnumber=\"18\"> Though you have eyes, don't you see? And though you have ears, can't you hear? Don't you remember? </VERS>\n\t\t\t<VERS vnumber=\"19\"> When I broke the five loaves for the five thousand, how many baskets full of pieces did you pick up?\" They replied, \"Twelve.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> \"When I broke the seven loaves for the four thousand, how many baskets full of pieces did you pick up?\" They replied, \"Seven.\" </VERS>\n\t\t\t<VERS vnumber=\"21\"> Then he said to them, \"Do you still not understand?\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> Then they came to Bethsaida. They brought a blind man to Jesus and asked him to touch him. </VERS>\n\t\t\t<VERS vnumber=\"23\"> He took the blind man by the hand and brought him outside of the village. Then he spit on his eyes, placed his hands on his eyes and asked, \"Do you see anything?\" </VERS>\n\t\t\t<VERS vnumber=\"24\"> Regaining his sight he said, \"I see people, but they look like trees walking.\" </VERS>\n\t\t\t<VERS vnumber=\"25\"> Then Jesus placed his hands on the man's eyes again. And he opened his eyes, his sight was restored, and he saw everything clearly. </VERS>\n\t\t\t<VERS vnumber=\"26\"> Jesus sent him home, saying, \"Do not even go into the village.\"</VERS>\n\t\t\t<VERS vnumber=\"27\"> Then Jesus and his disciples went to the villages of Caesarea Philippi. On the way he asked his disciples, \"Who do people say that I am?\" </VERS>\n\t\t\t<VERS vnumber=\"28\"> They said, \"John the Baptist, others say Elijah, and still others, one of the prophets.\" </VERS>\n\t\t\t<VERS vnumber=\"29\"> He asked them, \"But who do you say that I am?\" Peter answered him, \"You are the Christ.\"</VERS>\n\t\t\t<VERS vnumber=\"30\"> Then he warned them not to tell anyone about him.</VERS>\n\t\t\t<VERS vnumber=\"31\"> Then Jesus began to teach them that the Son of Man must suffer many things and be rejected by the elders, chief priests, and experts in the law, and be killed, and after three days rise again. </VERS>\n\t\t\t<VERS vnumber=\"32\"> He spoke openly about this. So Peter took him aside and began to rebuke him. </VERS>\n\t\t\t<VERS vnumber=\"33\"> But after turning and looking at his disciples, he rebuked Peter and said, \"Get behind me, Satan. You are not setting your mind on God's interests, but on man's.\"</VERS>\n\t\t\t<VERS vnumber=\"34\"> Then Jesus called the crowd, along with his disciples, and said to them, \"If anyone wants to become my follower, he must deny himself, take up his cross, and follow me. </VERS>\n\t\t\t<VERS vnumber=\"35\"> For whoever wants to save his life will lose it, but whoever loses his life for my sake and for the gospel will save it. </VERS>\n\t\t\t<VERS vnumber=\"36\"> For what benefit is it for a person to gain the whole world, yet forfeit his life? </VERS>\n\t\t\t<VERS vnumber=\"37\"> What can a person give in exchange for his life?</VERS>\n\t\t\t<VERS vnumber=\"38\"> For if anyone is ashamed of me and my words in this adulterous and sinful generation, the Son of Man will also be ashamed of him when he comes in the glory of his Father with the holy angels.\" </VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"9\">\n\t\t\t<VERS vnumber=\"1\"> And he said to them, \"I tell you the truth, there are some standing here who will not experience death before they see the kingdom of God come with power.\"</VERS>\n\t\t\t<VERS vnumber=\"2\"> Six days later Jesus took with him Peter, James, and John and led them alone up a high mountain privately. And he was transfigured before them,</VERS>\n\t\t\t<VERS vnumber=\"3\"> and his clothes became radiantly white, more so than any launderer in the world could bleach them.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Then Elijah appeared before them along with Moses, and they were talking with Jesus. </VERS>\n\t\t\t<VERS vnumber=\"5\"> So Peter said to Jesus, \"Rabbi, it is good for us to be here. Let us make three shelters, one for you, one for Moses, and one for Elijah.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> (For they were afraid, and he did not know what to say.)</VERS>\n\t\t\t<VERS vnumber=\"7\"> Then a cloud overshadowed them, and a voice came from the cloud, \"This is my one dear Son. Listen to him!\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> Suddenly when they looked around, they saw no one with them any more except Jesus.</VERS>\n\t\t\t<VERS vnumber=\"9\"> As they were coming down from the mountain, he gave them orders not to tell anyone what they had seen until after the Son of Man had risen from the dead.</VERS>\n\t\t\t<VERS vnumber=\"10\"> They kept this statement to themselves, discussing what this rising from the dead meant.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Then they asked him, \"Why do the experts in the law say that Elijah must come first?\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> He said to them, \"Elijah does indeed come first, and restores all things. And why is it written that the Son of Man must suffer many things and be despised?</VERS>\n\t\t\t<VERS vnumber=\"13\"> But I tell you that Elijah has certainly come, and they did to him whatever they wanted, just as it is written about him.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> When they came to the disciples, they saw a large crowd around them and experts in the law arguing with them. </VERS>\n\t\t\t<VERS vnumber=\"15\"> When the whole crowd saw him, they were amazed and ran at once and greeted him. </VERS>\n\t\t\t<VERS vnumber=\"16\"> He asked them, \"What are you arguing about with them?\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> A member of the crowd said to him, \"Teacher, I brought you my son, who is possessed by a spirit that makes him mute.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Whenever it seizes him, it throws him down, and he foams at the mouth, grinds his teeth, and becomes rigid. I asked your disciples to cast it out, but they were not able to do so.\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> He answered them, \"You unbelieving generation! How much longer must I be with you? How much longer must I endure you? Bring him to me.\" </VERS>\n\t\t\t<VERS vnumber=\"20\"> So they brought the boy to him. When the spirit saw him, it immediately threw the boy into a convulsion. He fell on the ground and rolled around, foaming at the mouth. </VERS>\n\t\t\t<VERS vnumber=\"21\"> Jesus asked his father, \"How long has this been happening to him?\" And he said, \"From childhood. </VERS>\n\t\t\t<VERS vnumber=\"22\"> It has often thrown him into fire or water to destroy him. But if you are able to do anything, have compassion on us and help us.\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> Then Jesus said to him, \"'If you are able?' All things are possible for the one who believes.\" </VERS>\n\t\t\t<VERS vnumber=\"24\"> Immediately the father of the boy cried out and said, \"I believe; help my unbelief!\"</VERS>\n\t\t\t<VERS vnumber=\"25\"> Now when Jesus saw that a crowd was quickly gathering, he rebuked the unclean spirit, saying to it, \"Mute and deaf spirit, I command you, come out of him and never enter him again.\" </VERS>\n\t\t\t<VERS vnumber=\"26\"> It shrieked, threw him into terrible convulsions, and came out. The boy looked so much like a corpse that many said, \"He is dead!\" </VERS>\n\t\t\t<VERS vnumber=\"27\"> But Jesus gently took his hand and raised him to his feet, and he stood up.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Then, after he went into the house, his disciples asked him privately, \"Why couldn't we cast it out?\" </VERS>\n\t\t\t<VERS vnumber=\"29\"> He told them, \"This kind can come out only by prayer.\"</VERS>\n\t\t\t<VERS vnumber=\"30\"> They went out from there and passed through Galilee. But Jesus did not want anyone to know, </VERS>\n\t\t\t<VERS vnumber=\"31\"> for he was teaching his disciples and telling them, \"The Son of Man will be betrayed into the hands of men. They will kill him, and after three days he will rise.\"</VERS>\n\t\t\t<VERS vnumber=\"32\"> But they did not understand this statement and were afraid to ask him.</VERS>\n\t\t\t<VERS vnumber=\"33\"> Then they came to Capernaum. After Jesus was inside the house he asked them, \"What were you discussing on the way?\" </VERS>\n\t\t\t<VERS vnumber=\"34\"> But they were silent, for on the way they had argued with one another about who was the greatest.</VERS>\n\t\t\t<VERS vnumber=\"35\"> After he sat down, he called the twelve and said to them, \"If anyone wants to be first, he must be last of all and servant of all.\"</VERS>\n\t\t\t<VERS vnumber=\"36\"> He took a little child and had him stand among them. Taking him in his arms, he said to them,</VERS>\n\t\t\t<VERS vnumber=\"37\"> \"Whoever welcomes one of these little children in my name welcomes me, and whoever welcomes me does not welcome me but the one who sent me.\"</VERS>\n\t\t\t<VERS vnumber=\"38\"> John said to him, \"Teacher, we saw someone casting out demons in your name, and we tried to stop him because he was not following us.\"</VERS>\n\t\t\t<VERS vnumber=\"39\"> But Jesus said, \"Do not stop him, because no one who does a miracle in my name will be able soon afterward to say anything bad about me.</VERS>\n\t\t\t<VERS vnumber=\"40\"> For whoever is not against us is for us.</VERS>\n\t\t\t<VERS vnumber=\"41\"> For I tell you the truth, whoever gives you a cup of water because you bear Christ's name will never lose his reward.</VERS>\n\t\t\t<VERS vnumber=\"42\"> \"If anyone causes one of these little ones who believe in me to sin, it would be better for him to have a huge millstone tied around his neck and to be thrown into the sea. </VERS>\n\t\t\t<VERS vnumber=\"43\"> If your hand causes you to sin, cut it off! It is better for you to enter into life crippled than to have two hands and go into hell, to the unquenchable fire.</VERS>\n\t\t\t<VERS vnumber=\"44\"> </VERS>\n\t\t\t<VERS vnumber=\"45\"> If your foot causes you to sin, cut it off! It is better to enter life lame than to have two feet and be thrown into hell.</VERS>\n\t\t\t<VERS vnumber=\"46\"> </VERS>\n\t\t\t<VERS vnumber=\"47\"> If your eye causes you to sin, tear it out! It is better to enter into the kingdom of God with one eye than to have two eyes and be thrown into hell, </VERS>\n\t\t\t<VERS vnumber=\"48\"> where their worm never dies and the fire is never quenched.</VERS>\n\t\t\t<VERS vnumber=\"49\"> Everyone will be salted with fire.</VERS>\n\t\t\t<VERS vnumber=\"50\"> Salt is good, but if it loses its saltiness, how can you make it salty again? Have salt in yourselves, and be at peace with each other.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"10\">\n\t\t\t<VERS vnumber=\"1\"> Then Jesus left that place and went to the region of Judea and beyond the Jordan River. Again crowds gathered to him, and again, as was his custom, he taught them. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Then some Pharisees came, and to test him they asked, \"Is it lawful for a man to divorce his wife?\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> He answered them, \"What did Moses command you?\" </VERS>\n\t\t\t<VERS vnumber=\"4\"> They said, \"Moses permitted a man to write a certificate of dismissal and to divorce her.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> But Jesus said to them, \"He wrote this commandment for you because of your hard hearts.</VERS>\n\t\t\t<VERS vnumber=\"6\"> But from the beginning of creation he made them male and female.</VERS>\n\t\t\t<VERS vnumber=\"7\"> For this reason a man will leave his father and mother,</VERS>\n\t\t\t<VERS vnumber=\"8\"> and the two will become one flesh. So they are no longer two, but one flesh. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Therefore what God has joined together, let no one separate.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> In the house once again, the disciples asked him about this.</VERS>\n\t\t\t<VERS vnumber=\"11\"> So he told them, \"Whoever divorces his wife and marries another commits adultery against her. </VERS>\n\t\t\t<VERS vnumber=\"12\"> And if she divorces her husband and marries another, she commits adultery.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> Now people were bringing little children to him for him to touch, but the disciples scolded those who brought them.</VERS>\n\t\t\t<VERS vnumber=\"14\"> But when Jesus saw this, he was indignant and said to them, \"Let the little children come to me and do not try to stop them, for the kingdom of God belongs to such as these.</VERS>\n\t\t\t<VERS vnumber=\"15\"> I tell you the truth, whoever does not receive the kingdom of God like a child will never enter it.\" </VERS>\n\t\t\t<VERS vnumber=\"16\"> After he took the children in his arms, he placed his hands on them and blessed them.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Now as Jesus was starting out on his way, someone ran up to him, fell on his knees, and said, \"Good teacher, what must I do to inherit eternal life?\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> Jesus said to him, \"Why do you call me good? No one is good except God alone. </VERS>\n\t\t\t<VERS vnumber=\"19\"> You know the commandments: 'Do not murder, do not commit adultery, do not steal, do not give false testimony, do not defraud, honor your father and mother.'\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> The man said to him, \"Teacher, I have wholeheartedly obeyed all these laws since my youth.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> As Jesus looked at him, he felt love for him and said, \"You lack one thing. Go, sell whatever you have and give the money to the poor, and you will have treasure in heaven. Then come, follow me.\" </VERS>\n\t\t\t<VERS vnumber=\"22\"> But at this statement, the man looked sad and went away sorrowful, for he was very rich.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Then Jesus looked around and said to his disciples, \"How hard it is for the rich to enter the kingdom of God!\" </VERS>\n\t\t\t<VERS vnumber=\"24\"> The disciples were astonished at these words. But again Jesus said to them, \"Children, how hard it is to enter the kingdom of God! </VERS>\n\t\t\t<VERS vnumber=\"25\"> It is easier for a camel to go through the eye of a needle than for a rich person to enter the kingdom of God.\" </VERS>\n\t\t\t<VERS vnumber=\"26\"> They were even more astonished and said to one another, \"Then who can be saved?\"</VERS>\n\t\t\t<VERS vnumber=\"27\"> Jesus looked at them and replied, \"This is impossible for mere humans, but not for God; all things are possible for God.\"</VERS>\n\t\t\t<VERS vnumber=\"28\"> Peter began to speak to him, \"Look, we have left everything to follow you!\"</VERS>\n\t\t\t<VERS vnumber=\"29\"> Jesus said, \"I tell you the truth, there is no one who has left home or brothers or sisters or mother or father or children or fields for my sake and for the sake of the gospel </VERS>\n\t\t\t<VERS vnumber=\"30\"> who will not receive in this age a hundred times as much, homes, brothers, sisters, mothers, children, fields, all with persecutions, and in the age to come, eternal life.</VERS>\n\t\t\t<VERS vnumber=\"31\"> But many who are first will be last, and the last first.\"</VERS>\n\t\t\t<VERS vnumber=\"32\"> They were on the way, going up to Jerusalem. Jesus was going ahead of them, and they were amazed, but those who followed were afraid. He took the twelve aside again and began to tell them what was going to happen to him. </VERS>\n\t\t\t<VERS vnumber=\"33\"> \"Look, we are going up to Jerusalem, and the Son of Man will be handed over to the chief priests and experts in the law. They will condemn him to death and will turn him over to the Gentiles. </VERS>\n\t\t\t<VERS vnumber=\"34\"> They will mock him, spit on him, flog him severely, and kill him. Yet after three days, he will rise again.\"</VERS>\n\t\t\t<VERS vnumber=\"35\"> Then James and John, the sons of Zebedee, came to him and said, \"Teacher, we want you to do for us whatever we ask.\" </VERS>\n\t\t\t<VERS vnumber=\"36\"> He said to them, \"What do you want me to do for you?\"</VERS>\n\t\t\t<VERS vnumber=\"37\"> They said to him, \"Permit one of us to sit at your right hand and the other at your left in your glory.\"</VERS>\n\t\t\t<VERS vnumber=\"38\"> But Jesus said to them, \"You don't know what you are asking! Are you able to drink the cup I drink or be baptized with the baptism I experience?\"</VERS>\n\t\t\t<VERS vnumber=\"39\"> They said to him, \"We are able.\" Then Jesus said to them, \"You will drink the cup I drink, and you will be baptized with the baptism I experience, </VERS>\n\t\t\t<VERS vnumber=\"40\"> but to sit at my right or at my left is not mine to give. It is for those for whom it has been prepared.\"</VERS>\n\t\t\t<VERS vnumber=\"41\"> Now when the other ten heard this, they became angry with James and John. </VERS>\n\t\t\t<VERS vnumber=\"42\"> Jesus called them and said to them, \"You know that those who are recognized as rulers of the Gentiles lord it over them, and those in high positions use their authority over them.</VERS>\n\t\t\t<VERS vnumber=\"43\"> But it is not this way among you. Instead whoever wants to be great among you must be your servant,</VERS>\n\t\t\t<VERS vnumber=\"44\"> and whoever wants to be first among you must be the slave of all. </VERS>\n\t\t\t<VERS vnumber=\"45\"> For even the Son of Man did not come to be served but to serve, and to give his life as a ransom for many.\"</VERS>\n\t\t\t<VERS vnumber=\"46\"> They came to Jericho. As Jesus and his disciples and a large crowd were leaving Jericho, Bartimaeus the son of Timaeus, a blind beggar, was sitting by the road. </VERS>\n\t\t\t<VERS vnumber=\"47\"> When he heard that it was Jesus the Nazarene, he began to shout, \"Jesus, Son of David, have mercy on me!\" </VERS>\n\t\t\t<VERS vnumber=\"48\"> Many scolded him to get him to be quiet, but he shouted all the more, \"Son of David, have mercy on me!\" </VERS>\n\t\t\t<VERS vnumber=\"49\"> Jesus stopped and said, \"Call him.\" So they called the blind man and said to him, \"Have courage! Get up! He is calling you.\" </VERS>\n\t\t\t<VERS vnumber=\"50\"> He threw off his cloak, jumped up, and came to Jesus.</VERS>\n\t\t\t<VERS vnumber=\"51\"> Then Jesus said to him, \"What do you want me to do for you?\" The blind man replied, \"Rabbi, let me see again.\"</VERS>\n\t\t\t<VERS vnumber=\"52\"> Jesus said to him, \"Go, your faith has healed you.\" Immediately he regained his sight and followed him on the road.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"11\">\n\t\t\t<VERS vnumber=\"1\"> Now as they approached Jerusalem, near Bethphage and Bethany, at the Mount of Olives, Jesus sent two of his disciples </VERS>\n\t\t\t<VERS vnumber=\"2\"> and said to them, \"Go to the village ahead of you. As soon as you enter it, you will find a colt tied there that has never been ridden. Untie it and bring it here. </VERS>\n\t\t\t<VERS vnumber=\"3\"> If anyone says to you, 'Why are you doing this?' say, 'The Lord needs it and will send it back here soon.'\" </VERS>\n\t\t\t<VERS vnumber=\"4\"> So they went and found a colt tied at a door, outside in the street, and untied it. </VERS>\n\t\t\t<VERS vnumber=\"5\"> Some people standing there said to them, \"What are you doing, untying that colt?\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> They replied as Jesus had told them, and the bystanders let them go. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Then they brought the colt to Jesus, threw their cloaks on it, and he sat on it.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Many spread their cloaks on the road and others spread branches they had cut in the fields.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Both those who went ahead and those who followed kept shouting, \"Hosanna! Blessed is the one who comes in the name of the Lord!</VERS>\n\t\t\t<VERS vnumber=\"10\"> Blessed is the coming kingdom of our father David! Hosanna in the highest!\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> Then Jesus entered Jerusalem and went to the temple. And after looking around at everything, he went out to Bethany with the twelve since it was already late.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Now the next day, as they went out from Bethany, he was hungry. </VERS>\n\t\t\t<VERS vnumber=\"13\"> After noticing in the distance a fig tree with leaves, he went to see if he could find any fruit on it. When he came to it he found nothing but leaves, for it was not the season for figs. </VERS>\n\t\t\t<VERS vnumber=\"14\"> He said to it, \"May no one ever eat fruit from you again.\" And his disciples heard it.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Then they came to Jerusalem. Jesus entered the temple area and began to drive out those who were selling and buying in the temple courts. He turned over the tables of the money changers and the chairs of those selling doves, </VERS>\n\t\t\t<VERS vnumber=\"16\"> and he would not permit anyone to carry merchandise through the temple courts.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Then he began to teach them and said, \"Is it not written: 'My house will be called a house of prayer for all nations'? But you have turned it into a den of robbers!\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> The chief priests and the experts in the law heard it and they considered how they could assassinate him, for they feared him, because the whole crowd was amazed by his teaching. </VERS>\n\t\t\t<VERS vnumber=\"19\"> When evening came, Jesus and his disciples went out of the city.</VERS>\n\t\t\t<VERS vnumber=\"20\"> In the morning as they passed by, they saw the fig tree withered from the roots.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Peter remembered and said to him, \"Rabbi, look! The fig tree you cursed has withered.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> Jesus said to them, \"Have faith in God.</VERS>\n\t\t\t<VERS vnumber=\"23\"> I tell you the truth, if someone says to this mountain, 'Be lifted up and thrown into the sea,' and does not doubt in his heart but believes that what he says will happen, it will be done for him. </VERS>\n\t\t\t<VERS vnumber=\"24\"> For this reason I tell you, whatever you pray and ask for, believe that you have received it, and it will be yours.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Whenever you stand praying, if you have anything against anyone, forgive him, so that your Father in heaven will also forgive you your sins.\"</VERS>\n\t\t\t<VERS vnumber=\"26\"> </VERS>\n\t\t\t<VERS vnumber=\"27\"> They came again to Jerusalem. While Jesus was walking in the temple courts, the chief priests, the experts in the law, and the elders came up to him </VERS>\n\t\t\t<VERS vnumber=\"28\"> and said, \"By what authority are you doing these things? Or who gave you this authority to do these things?\" </VERS>\n\t\t\t<VERS vnumber=\"29\"> Jesus said to them, \"I will ask you one question. Answer me and I will tell you by what authority I do these things:</VERS>\n\t\t\t<VERS vnumber=\"30\"> John's baptism, was it from heaven or from people? Answer me.\"</VERS>\n\t\t\t<VERS vnumber=\"31\"> They discussed with one another, saying, \"If we say, 'From heaven,' he will say, 'Then why did you not believe him?'</VERS>\n\t\t\t<VERS vnumber=\"32\"> But if we say, 'From people, '\" (they feared the crowd, for they all considered John to be truly a prophet).</VERS>\n\t\t\t<VERS vnumber=\"33\"> So they answered Jesus, \"We don't know.\" Then Jesus said to them, \"Neither will I tell you by what authority I am doing these things.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"12\">\n\t\t\t<VERS vnumber=\"1\"> Then he began to speak to them in parables: \"A man planted a vineyard. He put a fence around it, dug a pit for its winepress, and built a watchtower. Then he leased it to tenant farmers and went on a journey. </VERS>\n\t\t\t<VERS vnumber=\"2\"> At harvest time he sent a slave to the tenants to collect from them his portion of the crop.</VERS>\n\t\t\t<VERS vnumber=\"3\"> But those tenants seized his slave, beat him, and sent him away empty-handed.</VERS>\n\t\t\t<VERS vnumber=\"4\"> So he sent another slave to them again. This one they struck on the head and treated outrageously. </VERS>\n\t\t\t<VERS vnumber=\"5\"> He sent another, and that one they killed. This happened to many others, some of whom were beaten, others killed.</VERS>\n\t\t\t<VERS vnumber=\"6\"> He had one left, his one dear son. Finally he sent him to them, saying, 'They will respect my son.' </VERS>\n\t\t\t<VERS vnumber=\"7\"> But those tenants said to one another, 'This is the heir. Come, let's kill him and the inheritance will be ours!'</VERS>\n\t\t\t<VERS vnumber=\"8\"> So they seized him, killed him, and threw his body out of the vineyard.</VERS>\n\t\t\t<VERS vnumber=\"9\"> What then will the owner of the vineyard do? He will come and destroy those tenants and give the vineyard to others.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Have you not read this scripture: 'The stone the builders rejected has become the cornerstone.</VERS>\n\t\t\t<VERS vnumber=\"11\"> This is from the Lord, and it is marvelous in our eyes'?\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> Now they wanted to arrest him (but they feared the crowd), because they realized that he told this parable against them. So they left him and went away.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Then they sent some of the Pharisees and Herodians to trap him with his own words.</VERS>\n\t\t\t<VERS vnumber=\"14\"> When they came they said to him, \"Teacher, we know that you are truthful and do not court anyone's favor, because you show no partiality but teach the way of God in accordance with the truth. Is it right to pay taxes to Caesar or not? Should we pay or shouldn't we?\" </VERS>\n\t\t\t<VERS vnumber=\"15\"> But he saw through their hypocrisy and said to them, \"Why are you testing me? Bring me a denarius and let me look at it.\" </VERS>\n\t\t\t<VERS vnumber=\"16\"> So they brought one, and he said to them, \"Whose image is this, and whose inscription?\" They replied, \"Caesar's.\" </VERS>\n\t\t\t<VERS vnumber=\"17\"> Then Jesus said to them, \"Give to Caesar the things that are Caesar's, and to God the things that are God's.\" And they were utterly amazed at him.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Sadducees (who say there is no resurrection) also came to him and asked him,</VERS>\n\t\t\t<VERS vnumber=\"19\"> \"Teacher, Moses wrote for us: 'If a man's brother dies and leaves a wife but no children, that man must marry the widow and father children for his brother.'</VERS>\n\t\t\t<VERS vnumber=\"20\"> There were seven brothers. The first one married, and when he died he had no children.</VERS>\n\t\t\t<VERS vnumber=\"21\"> The second married her and died without any children, and likewise the third.</VERS>\n\t\t\t<VERS vnumber=\"22\"> None of the seven had children. Finally, the woman died too.</VERS>\n\t\t\t<VERS vnumber=\"23\"> In the resurrection, when they rise again, whose wife will she be? For all seven had married her.\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> Jesus said to them, \"Aren't you deceived for this reason, because you don't know the scriptures or the power of God? </VERS>\n\t\t\t<VERS vnumber=\"25\"> For when they rise from the dead, they neither marry nor are given in marriage, but are like angels in heaven. </VERS>\n\t\t\t<VERS vnumber=\"26\"> Now as for the dead being raised, have you not read in the book of Moses, in the passage about the bush, how God said to him, 'I am the God of Abraham, the God of Isaac, and the God of Jacob'?</VERS>\n\t\t\t<VERS vnumber=\"27\"> He is not the God of the dead but of the living. You are badly mistaken!\"</VERS>\n\t\t\t<VERS vnumber=\"28\"> Now one of the experts in the law came and heard them debating. When he saw that Jesus answered them well, he asked him, \"Which commandment is the most important of all?\" </VERS>\n\t\t\t<VERS vnumber=\"29\"> Jesus answered, \"The most important is: 'Listen, Israel, the Lord our God, the Lord is one.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Love the Lord your God with all your heart, with all your soul, with all your mind, and with all your strength.'</VERS>\n\t\t\t<VERS vnumber=\"31\"> The second is: 'Love your neighbor as yourself.' There is no other commandment greater than these.\" </VERS>\n\t\t\t<VERS vnumber=\"32\"> The expert in the law said to him, \"That is true, Teacher; you are right to say that he is one, and there is no one else besides him.</VERS>\n\t\t\t<VERS vnumber=\"33\"> And to love him with all your heart, with all your mind, and with all your strength and to love your neighbor as yourself is more important than all burnt offerings and sacrifices.\" </VERS>\n\t\t\t<VERS vnumber=\"34\"> When Jesus saw that he had answered thoughtfully, he said to him, \"You are not far from the kingdom of God.\" Then no one dared any longer to question him.</VERS>\n\t\t\t<VERS vnumber=\"35\"> While Jesus was teaching in the temple courts, he said, \"How is it that the experts in the law say that the Christ is David's son?</VERS>\n\t\t\t<VERS vnumber=\"36\"> David himself, by the Holy Spirit, said, 'The Lord said to my lord, \"Sit at my right hand, until I put your enemies under your feet.\"'</VERS>\n\t\t\t<VERS vnumber=\"37\"> If David himself calls him 'Lord,' how can he be his son?\" And the large crowd was listening to him with delight.</VERS>\n\t\t\t<VERS vnumber=\"38\"> In his teaching Jesus also said, \"Watch out for the experts in the law. They like walking around in long robes and elaborate greetings in the marketplaces, </VERS>\n\t\t\t<VERS vnumber=\"39\"> and the best seats in the synagogues and the places of honor at banquets. </VERS>\n\t\t\t<VERS vnumber=\"40\"> They devour widows' property, and as a show make long prayers. These men will receive a more severe punishment.\"</VERS>\n\t\t\t<VERS vnumber=\"41\"> Then he sat down opposite the offering box, and watched the crowd putting coins into it. Many rich people were throwing in large amounts. </VERS>\n\t\t\t<VERS vnumber=\"42\"> And a poor widow came and put in two small copper coins, worth less than a penny. </VERS>\n\t\t\t<VERS vnumber=\"43\"> He called his disciples and said to them, \"I tell you the truth, this poor widow has put more into the offering box than all the others.</VERS>\n\t\t\t<VERS vnumber=\"44\"> For they all gave out of their wealth. But she, out of her poverty, put in what she had to live on, everything she had.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"13\">\n\t\t\t<VERS vnumber=\"1\"> Now as Jesus was going out of the temple courts, one of his disciples said to him, \"Teacher, look at these tremendous stones and buildings!\"</VERS>\n\t\t\t<VERS vnumber=\"2\"> Jesus said to him, \"Do you see these great buildings? Not one stone will be left on another. All will be torn down!\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> So while he was sitting on the Mount of Olives opposite the temple, Peter, James, John, and Andrew asked him privately, </VERS>\n\t\t\t<VERS vnumber=\"4\"> \"Tell us, when will these things happen? And what will be the sign that all these things are about to take place?\" </VERS>\n\t\t\t<VERS vnumber=\"5\"> Jesus began to say to them, \"Watch out that no one misleads you. </VERS>\n\t\t\t<VERS vnumber=\"6\"> Many will come in my name, saying, 'I am he,' and they will mislead many. </VERS>\n\t\t\t<VERS vnumber=\"7\"> When you hear of wars and rumors of wars, do not be alarmed. These things must happen, but the end is still to come.</VERS>\n\t\t\t<VERS vnumber=\"8\"> For nation will rise up in arms against nation, and kingdom against kingdom. There will be earthquakes in various places, and there will be famines. These are but the beginning of birth pains.</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"You must watch out for yourselves. You will be handed over to councils and beaten in the synagogues. You will stand before governors and kings because of me, as a witness to them. </VERS>\n\t\t\t<VERS vnumber=\"10\"> First the gospel must be preached to all nations.</VERS>\n\t\t\t<VERS vnumber=\"11\"> When they arrest you and hand you over for trial, do not worry about what to speak. But say whatever is given you at that time, for it is not you speaking, but the Holy Spirit. </VERS>\n\t\t\t<VERS vnumber=\"12\"> Brother will hand over brother to death, and a father his child. Children will rise against parents and have them put to death. </VERS>\n\t\t\t<VERS vnumber=\"13\"> You will be hated by everyone because of my name. But the one who endures to the end will be saved.</VERS>\n\t\t\t<VERS vnumber=\"14\"> \"But when you see the abomination of desolation standing where it should not be (let the reader understand), then those in Judea must flee to the mountains. </VERS>\n\t\t\t<VERS vnumber=\"15\"> The one on the roof must not come down or go inside to take anything out of his house.</VERS>\n\t\t\t<VERS vnumber=\"16\"> The one in the field must not turn back to get his cloak.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Woe to those who are pregnant and to those who are nursing their babies in those days!</VERS>\n\t\t\t<VERS vnumber=\"18\"> Pray that it may not be in winter.</VERS>\n\t\t\t<VERS vnumber=\"19\"> For in those days there will be suffering unlike anything that has happened from the beginning of the creation that God created until now, or ever will happen. </VERS>\n\t\t\t<VERS vnumber=\"20\"> And if the Lord had not cut short those days, no one would be saved. But because of the elect, whom he chose, he has cut them short. </VERS>\n\t\t\t<VERS vnumber=\"21\"> Then if anyone says to you, 'Look, here is the Christ!' or 'Look, there he is!' do not believe him. </VERS>\n\t\t\t<VERS vnumber=\"22\"> For false messiahs and false prophets will appear and perform signs and wonders to deceive, if possible, the elect. </VERS>\n\t\t\t<VERS vnumber=\"23\"> Be careful! I have told you everything ahead of time.</VERS>\n\t\t\t<VERS vnumber=\"24\"> \"But in those days, after that suffering, the sun will be darkened and the moon will not give its light; </VERS>\n\t\t\t<VERS vnumber=\"25\"> the stars will be falling from heaven, and the powers in the heavens will be shaken.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Then everyone will see the Son of Man arriving in the clouds with great power and glory. </VERS>\n\t\t\t<VERS vnumber=\"27\"> Then he will send angels and they will gather his elect from the four winds, from the ends of the earth to the ends of heaven.</VERS>\n\t\t\t<VERS vnumber=\"28\"> \"Learn this parable from the fig tree: Whenever its branch becomes tender and puts out its leaves, you know that summer is near.</VERS>\n\t\t\t<VERS vnumber=\"29\"> So also you, when you see these things happening, know that he is near, right at the door. </VERS>\n\t\t\t<VERS vnumber=\"30\"> I tell you the truth, this generation will not pass away until all these things take place. </VERS>\n\t\t\t<VERS vnumber=\"31\"> Heaven and earth will pass away, but my words will never pass away.</VERS>\n\t\t\t<VERS vnumber=\"32\"> \"But as for that day or hour no one knows it, neither the angels in heaven, nor the Son, except the Father.</VERS>\n\t\t\t<VERS vnumber=\"33\"> Watch out! Stay alert! For you do not know when the time will come. </VERS>\n\t\t\t<VERS vnumber=\"34\"> It is like a man going on a journey. He left his house and put his slaves in charge, assigning to each his work, and commanded the doorkeeper to stay alert.</VERS>\n\t\t\t<VERS vnumber=\"35\"> Stay alert, then, because you do not know when the owner of the house will return, whether during evening, at midnight, when the rooster crows, or at dawn,</VERS>\n\t\t\t<VERS vnumber=\"36\"> or else he might find you asleep when he returns suddenly.</VERS>\n\t\t\t<VERS vnumber=\"37\"> What I say to you I say to everyone: Stay alert!\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"14\">\n\t\t\t<VERS vnumber=\"1\"> Two days before the Passover and the Feast of Unleavened Bread, the chief priests and the experts in the law were trying to find a way to arrest Jesus by stealth and kill him.</VERS>\n\t\t\t<VERS vnumber=\"2\"> For they said, \"Not during the feast, so there won't be a riot among the people.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> Now while Jesus was in Bethany at the house of Simon the leper, reclining at the table, a woman came with an alabaster jar of costly aromatic oil from pure nard. After breaking open the jar, she poured it on his head. </VERS>\n\t\t\t<VERS vnumber=\"4\"> But some who were present indignantly said to one another, \"Why this waste of expensive ointment? </VERS>\n\t\t\t<VERS vnumber=\"5\"> It could have been sold for more than three hundred silver coins and the money given to the poor!\" So they spoke angrily to her. </VERS>\n\t\t\t<VERS vnumber=\"6\"> But Jesus said, \"Leave her alone. Why are you bothering her? She has done a good service for me.</VERS>\n\t\t\t<VERS vnumber=\"7\"> For you will always have the poor with you, and you can do good for them whenever you want. But you will not always have me!</VERS>\n\t\t\t<VERS vnumber=\"8\"> She did what she could. She anointed my body beforehand for burial.</VERS>\n\t\t\t<VERS vnumber=\"9\"> I tell you the truth, wherever the gospel is proclaimed in the whole world, what she has done will also be told in memory of her.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> Then Judas Iscariot, one of the twelve, went to the chief priests to betray Jesus into their hands.</VERS>\n\t\t\t<VERS vnumber=\"11\"> When they heard this, they were delighted and promised to give him money. So Judas began looking for an opportunity to betray him.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Now on the first day of the feast of Unleavened Bread, when the Passover lamb is sacrificed, Jesus' disciples said to him, \"Where do you want us to prepare for you to eat the Passover?\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> He sent two of his disciples and told them, \"Go into the city, and a man carrying a jar of water will meet you. Follow him. </VERS>\n\t\t\t<VERS vnumber=\"14\"> Wherever he enters, tell the owner of the house, 'The Teacher says, \"Where is my guest room where I may eat the Passover with my disciples?\"'</VERS>\n\t\t\t<VERS vnumber=\"15\"> He will show you a large room upstairs, furnished and ready. Make preparations for us there.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> So the disciples left, went into the city, and found things just as he had told them, and they prepared the Passover.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Then, when it was evening, he came to the house with the twelve. </VERS>\n\t\t\t<VERS vnumber=\"18\"> While they were at the table eating, Jesus said, \"I tell you the truth, one of you eating with me will betray me.\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> They were distressed, and one by one said to him, \"Surely not I?\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> He said to them, \"It is one of the twelve, one who dips his hand with me into the bowl.</VERS>\n\t\t\t<VERS vnumber=\"21\"> For the Son of Man will go as it is written about him, but woe to that man by whom the Son of Man is betrayed! It would be better for him if he had never been born.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> While they were eating, he took bread, and after giving thanks he broke it, gave it to them, and said, \"Take it. This is my body.\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> And after taking the cup and giving thanks, he gave it to them, and they all drank from it.</VERS>\n\t\t\t<VERS vnumber=\"24\"> He said to them, \"This is my blood, the blood of the covenant, that is poured out for many. </VERS>\n\t\t\t<VERS vnumber=\"25\"> I tell you the truth, I will no longer drink of the fruit of the vine until that day when I drink it new in the kingdom of God.\"</VERS>\n\t\t\t<VERS vnumber=\"26\"> After singing a hymn, they went out to the Mount of Olives.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Then Jesus said to them, \"You will all fall away, for it is written, 'I will strike the shepherd, and the sheep will be scattered.'</VERS>\n\t\t\t<VERS vnumber=\"28\"> But after I am raised, I will go ahead of you into Galilee.\"</VERS>\n\t\t\t<VERS vnumber=\"29\"> Peter said to him, \"Even if they all fall away, I will not!\"</VERS>\n\t\t\t<VERS vnumber=\"30\"> Jesus said to him, \"I tell you the truth, today, this very night, before a rooster crows twice, you will deny me three times.\"</VERS>\n\t\t\t<VERS vnumber=\"31\"> But Peter insisted emphatically, \"Even if I must die with you, I will never deny you.\" And all of them said the same thing.</VERS>\n\t\t\t<VERS vnumber=\"32\"> Then they went to a place called Gethsemane, and Jesus said to his disciples, \"Sit here while I pray.\" </VERS>\n\t\t\t<VERS vnumber=\"33\"> He took Peter, James, and John with him, and became very troubled and distressed. </VERS>\n\t\t\t<VERS vnumber=\"34\"> He said to them, \"My soul is deeply grieved, even to the point of death. Remain here and stay alert.\"</VERS>\n\t\t\t<VERS vnumber=\"35\"> Going a little farther, he threw himself to the ground and prayed that if it were possible the hour would pass from him.</VERS>\n\t\t\t<VERS vnumber=\"36\"> He said, \"Abba, Father, all things are possible for you. Take this cup away from me. Yet not what I will, but what you will.\"</VERS>\n\t\t\t<VERS vnumber=\"37\"> Then he came and found them sleeping, and said to Peter, \"Simon, are you sleeping? Couldn't you stay awake for one hour? </VERS>\n\t\t\t<VERS vnumber=\"38\"> Stay awake and pray that you will not fall into temptation. The spirit is willing, but the flesh is weak.\"</VERS>\n\t\t\t<VERS vnumber=\"39\"> He went away again and prayed the same thing.</VERS>\n\t\t\t<VERS vnumber=\"40\"> When he came again he found them sleeping; they could not keep their eyes open. And they did not know what to tell him.</VERS>\n\t\t\t<VERS vnumber=\"41\"> He came a third time and said to them, \"Are you still sleeping and resting? Enough of that! The hour has come. Look, the Son of Man is betrayed into the hands of sinners. </VERS>\n\t\t\t<VERS vnumber=\"42\"> Get up, let us go. Look! My betrayer is approaching!\"</VERS>\n\t\t\t<VERS vnumber=\"43\"> Right away, while Jesus was still speaking, Judas, one of the twelve, arrived. With him came a crowd armed with swords and clubs, sent by the chief priests and experts in the law and elders. </VERS>\n\t\t\t<VERS vnumber=\"44\"> (Now the betrayer had given them a sign, saying, \"The one I kiss is the man. Arrest him and lead him away under guard.\")</VERS>\n\t\t\t<VERS vnumber=\"45\"> When Judas arrived, he went up to Jesus immediately and said, \"Rabbi!\" and kissed him. </VERS>\n\t\t\t<VERS vnumber=\"46\"> Then they took hold of him and arrested him. </VERS>\n\t\t\t<VERS vnumber=\"47\"> One of the bystanders drew his sword and struck the high priest's slave, cutting off his ear. </VERS>\n\t\t\t<VERS vnumber=\"48\"> Jesus said to them, \"Have you come with swords and clubs to arrest me like you would an outlaw?</VERS>\n\t\t\t<VERS vnumber=\"49\"> Day after day I was with you, teaching in the temple courts, yet you did not arrest me. But this has happened so that the scriptures would be fulfilled.\" </VERS>\n\t\t\t<VERS vnumber=\"50\"> Then all the disciples left him and fled. </VERS>\n\t\t\t<VERS vnumber=\"51\"> A young man was following him, wearing only a linen cloth. They tried to arrest him,</VERS>\n\t\t\t<VERS vnumber=\"52\"> but he ran off naked, leaving his linen cloth behind.</VERS>\n\t\t\t<VERS vnumber=\"53\"> Then they led Jesus to the high priest, and all the chief priests and elders and experts in the law came together. </VERS>\n\t\t\t<VERS vnumber=\"54\"> And Peter had followed him from a distance, up to the high priest's courtyard. He was sitting with the guards and warming himself by the fire. </VERS>\n\t\t\t<VERS vnumber=\"55\"> The chief priests and the whole Sanhedrin were looking for evidence against Jesus so that they could put him to death, but they did not find anything.</VERS>\n\t\t\t<VERS vnumber=\"56\"> Many gave false testimony against him, but their testimony did not agree.</VERS>\n\t\t\t<VERS vnumber=\"57\"> Some stood up and gave this false testimony against him:</VERS>\n\t\t\t<VERS vnumber=\"58\"> \"We heard him say, 'I will destroy this temple made with hands and in three days build another not made with hands.'\"</VERS>\n\t\t\t<VERS vnumber=\"59\"> Yet even on this point their testimony did not agree.</VERS>\n\t\t\t<VERS vnumber=\"60\"> Then the high priest stood up before them and asked Jesus, \"Have you no answer? What is this that they are testifying against you?\" </VERS>\n\t\t\t<VERS vnumber=\"61\"> But he was silent and did not answer. Again the high priest questioned him, \"Are you the Christ, the Son of the Blessed One?\" </VERS>\n\t\t\t<VERS vnumber=\"62\"> \"I am,\" said Jesus, \"and you will see the Son of Man sitting at the right hand of the Power and coming with the clouds of heaven.\"</VERS>\n\t\t\t<VERS vnumber=\"63\"> Then the high priest tore his clothes and said, \"Why do we still need witnesses?</VERS>\n\t\t\t<VERS vnumber=\"64\"> You have heard the blasphemy! What is your verdict?\" They all condemned him as deserving death. </VERS>\n\t\t\t<VERS vnumber=\"65\"> Then some began to spit on him, and to blindfold him, and to strike him with their fists, saying, \"Prophesy!\" The guards also took him and beat him.</VERS>\n\t\t\t<VERS vnumber=\"66\"> Now while Peter was below in the courtyard, one of the high priest's slave girls came by. </VERS>\n\t\t\t<VERS vnumber=\"67\"> When she saw Peter warming himself, she looked directly at him and said, \"You also were with that Nazarene, Jesus.\"</VERS>\n\t\t\t<VERS vnumber=\"68\"> But he denied it: \"I don't even understand what you're talking about!\" Then he went out to the gateway, and a rooster crowed.</VERS>\n\t\t\t<VERS vnumber=\"69\"> When the slave girl saw him, she began again to say to the bystanders, \"This man is one of them.\"</VERS>\n\t\t\t<VERS vnumber=\"70\"> But he denied it again. A short time later the bystanders again said to Peter, \"You must be one of them, because you are also a Galilean.\" </VERS>\n\t\t\t<VERS vnumber=\"71\"> Then he began to curse, and he swore with an oath, \"I do not know this man you are talking about!\"</VERS>\n\t\t\t<VERS vnumber=\"72\"> Immediately a rooster crowed a second time. Then Peter remembered what Jesus had said to him: \"Before a rooster crows twice, you will deny me three times.\" And he broke down and wept.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"15\">\n\t\t\t<VERS vnumber=\"1\"> Early in the morning, after forming a plan, the chief priests with the elders and the experts in the law and the whole Sanhedrin tied Jesus up, led him away, and handed him over to Pilate.</VERS>\n\t\t\t<VERS vnumber=\"2\"> So Pilate asked him, \"Are you the king of the Jews?\" He replied, \"You say so.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> Then the chief priests began to accuse him repeatedly. </VERS>\n\t\t\t<VERS vnumber=\"4\"> So Pilate asked him again, \"Have you nothing to say? See how many charges they are bringing against you!\" </VERS>\n\t\t\t<VERS vnumber=\"5\"> But Jesus made no further reply, so that Pilate was amazed.</VERS>\n\t\t\t<VERS vnumber=\"6\"> During the feast it was customary to release one prisoner to the people, whomever they requested. </VERS>\n\t\t\t<VERS vnumber=\"7\"> A man named Barabbas was imprisoned with rebels who had committed murder during an insurrection.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Then the crowd came up and began to ask Pilate to release a prisoner for them, as was his custom.</VERS>\n\t\t\t<VERS vnumber=\"9\"> So Pilate asked them, \"Do you want me to release the king of the Jews for you?\" </VERS>\n\t\t\t<VERS vnumber=\"10\"> (For he knew that the chief priests had handed him over because of envy.)</VERS>\n\t\t\t<VERS vnumber=\"11\"> But the chief priests stirred up the crowd to have him release Barabbas instead. </VERS>\n\t\t\t<VERS vnumber=\"12\"> So Pilate spoke to them again, \"Then what do you want me to do with the one you call king of the Jews?\" </VERS>\n\t\t\t<VERS vnumber=\"13\"> They shouted back, \"Crucify him!\" </VERS>\n\t\t\t<VERS vnumber=\"14\"> Pilate asked them, \"Why? What has he done wrong?\" But they shouted more insistently, \"Crucify him!\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> Because he wanted to satisfy the crowd, Pilate released Barabbas for them. Then, after he had Jesus flogged, he handed him over to be crucified.</VERS>\n\t\t\t<VERS vnumber=\"16\"> So the soldiers led him into the palace (that is, the governor's residence) and called together the whole cohort.</VERS>\n\t\t\t<VERS vnumber=\"17\"> They put a purple cloak on him and after braiding a crown of thorns, they put it on him. </VERS>\n\t\t\t<VERS vnumber=\"18\"> They began to salute him: \"Hail, king of the Jews!\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> Again and again they struck him on the head with a staff and spit on him. Then they knelt down and paid homage to him. </VERS>\n\t\t\t<VERS vnumber=\"20\"> When they had finished mocking him, they stripped him of the purple cloak and put his own clothes back on him. Then they led him away to crucify him.</VERS>\n\t\t\t<VERS vnumber=\"21\"> The soldiers forced a passerby to carry his cross, Simon of Cyrene, who was coming in from the country (he was the father of Alexander and Rufus).</VERS>\n\t\t\t<VERS vnumber=\"22\"> They brought Jesus to a place called Golgotha (which is translated, \"Place of the Skull\").</VERS>\n\t\t\t<VERS vnumber=\"23\"> They offered him wine mixed with myrrh, but he did not take it. </VERS>\n\t\t\t<VERS vnumber=\"24\"> Then they crucified him and divided his clothes, throwing dice for them, to decide what each would take. </VERS>\n\t\t\t<VERS vnumber=\"25\"> It was nine o'clock in the morning when they crucified him. </VERS>\n\t\t\t<VERS vnumber=\"26\"> The inscription of the charge against him read, \"The king of the Jews.\" </VERS>\n\t\t\t<VERS vnumber=\"27\"> And they crucified two outlaws with him, one on his right and one on his left.</VERS>\n\t\t\t<VERS vnumber=\"28\"> </VERS>\n\t\t\t<VERS vnumber=\"29\"> Those who passed by defamed him, shaking their heads and saying, \"Aha! You who can destroy the temple and rebuild it in three days,</VERS>\n\t\t\t<VERS vnumber=\"30\"> save yourself and come down from the cross!\"</VERS>\n\t\t\t<VERS vnumber=\"31\"> In the same way even the chief priests, together with the experts in the law, were mocking him among themselves: \"He saved others, but he cannot save himself!</VERS>\n\t\t\t<VERS vnumber=\"32\"> Let the Christ, the king of Israel, come down from the cross now, that we may see and believe!\" Those who were crucified with him also spoke abusively to him.</VERS>\n\t\t\t<VERS vnumber=\"33\"> Now when it was noon, darkness came over the whole land until three in the afternoon.</VERS>\n\t\t\t<VERS vnumber=\"34\"> Around three o'clock Jesus cried out with a loud voice, \"Eloi, Eloi, lema sabachthani?\" which means, \"My God, my God, why have you forsaken me?\"</VERS>\n\t\t\t<VERS vnumber=\"35\"> When some of the bystanders heard it they said, \"Listen, he is calling for Elijah!\"</VERS>\n\t\t\t<VERS vnumber=\"36\"> Then someone ran, filled a sponge with sour wine, put it on a stick, and gave it to him to drink, saying, \"Leave him alone! Let's see if Elijah will come to take him down!\" </VERS>\n\t\t\t<VERS vnumber=\"37\"> But Jesus cried out with a loud voice and breathed his last.</VERS>\n\t\t\t<VERS vnumber=\"38\"> And the temple curtain was torn in two, from top to bottom. </VERS>\n\t\t\t<VERS vnumber=\"39\"> Now when the centurion, who stood in front of him, saw how he died, he said, \"Truly this man was God's Son!\" </VERS>\n\t\t\t<VERS vnumber=\"40\"> There were also women, watching from a distance. Among them were Mary Magdalene, and Mary the mother of James the younger and of Joses, and Salome. </VERS>\n\t\t\t<VERS vnumber=\"41\"> When he was in Galilee, they had followed him and given him support. Many other women who had come up with him to Jerusalem were there too.</VERS>\n\t\t\t<VERS vnumber=\"42\"> Now when evening had already come, since it was the day of preparation (that is, the day before the Sabbath),</VERS>\n\t\t\t<VERS vnumber=\"43\"> Joseph of Arimathea, a highly regarded member of the council, who was himself looking forward to the kingdom of God, went boldly to Pilate and asked for the body of Jesus.</VERS>\n\t\t\t<VERS vnumber=\"44\"> Pilate was surprised that he was already dead. He called the centurion and asked him if he had been dead for some time. </VERS>\n\t\t\t<VERS vnumber=\"45\"> When Pilate was informed by the centurion, he gave the body to Joseph. </VERS>\n\t\t\t<VERS vnumber=\"46\"> After Joseph bought a linen cloth and took down the body, he wrapped it in the linen and placed it in a tomb cut out of the rock. Then he rolled a stone across the entrance of the tomb.</VERS>\n\t\t\t<VERS vnumber=\"47\"> Mary Magdalene and Mary the mother of Joses saw where the body was placed.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"16\">\n\t\t\t<VERS vnumber=\"1\"> When the Sabbath was over, Mary Magdalene, Mary the mother of James, and Salome bought aromatic spices so that they might go and anoint him. </VERS>\n\t\t\t<VERS vnumber=\"2\"> And very early on the first day of the week, at sunrise, they went to the tomb.</VERS>\n\t\t\t<VERS vnumber=\"3\"> They had been asking each other, \"Who will roll away the stone for us from the entrance to the tomb?\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> But when they looked up, they saw that the stone, which was very large, had been rolled back. </VERS>\n\t\t\t<VERS vnumber=\"5\"> Then as they went into the tomb, they saw a young man dressed in a white robe sitting on the right side; and they were alarmed. </VERS>\n\t\t\t<VERS vnumber=\"6\"> But he said to them, \"Do not be alarmed. You are looking for Jesus the Nazarene, who was crucified. He has been raised! He is not here. Look, there is the place where they laid him. </VERS>\n\t\t\t<VERS vnumber=\"7\"> But go, tell his disciples, even Peter, that he is going ahead of you into Galilee. You will see him there, just as he told you.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> Then they went out and ran from the tomb, for terror and bewilderment had seized them. And they said nothing to anyone, because they were afraid. is the place where they laid him.</VERS>\n\t\t\t<VERS vnumber=\"9\"> [[Early on the first day of the week, after he arose, he appeared first to Mary Magdalene, from whom he had driven out seven demons.</VERS>\n\t\t\t<VERS vnumber=\"10\"> She went out and told those who were with him, while they were mourning and weeping.</VERS>\n\t\t\t<VERS vnumber=\"11\"> And when they heard that he was alive and had been seen by her, they did not believe.</VERS>\n\t\t\t<VERS vnumber=\"12\"> After this he appeared in a different form to two of them while they were on their way to the country.</VERS>\n\t\t\t<VERS vnumber=\"13\"> They went back and told the rest, but they did not believe them.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Then he appeared to the eleven themselves, while they were eating, and he rebuked them for their unbelief and hardness of heart, because they did not believe those who had seen him resurrected.</VERS>\n\t\t\t<VERS vnumber=\"15\"> He said to them, \"Go into all the world and preach the gospel to every creature.</VERS>\n\t\t\t<VERS vnumber=\"16\"> The one who believes and is baptized will be saved, but the one who does not believe will be condemned.</VERS>\n\t\t\t<VERS vnumber=\"17\"> These signs will accompany those who believe: In my name they will drive out demons; they will speak in new languages;</VERS>\n\t\t\t<VERS vnumber=\"18\"> they will pick up snakes with their hands, and whatever poison they drink will not harm them; they will place their hands on the sick and they will be well.\" </VERS>\n\t\t\t<VERS vnumber=\"19\"> After the Lord Jesus had spoken to them, he was taken up into heaven and sat down at the right hand of God.</VERS>\n\t\t\t<VERS vnumber=\"20\"> They went out and proclaimed everywhere, while the Lord worked with them and confirmed the word through the accompanying signs.]]</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"42\" bname=\"Luke\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> Now many have undertaken to compile an account of the things that have been fulfilled among us, </VERS>\n\t\t\t<VERS vnumber=\"2\"> like the accounts passed on to us by those who were eyewitnesses and servants of the word from the beginning.</VERS>\n\t\t\t<VERS vnumber=\"3\"> So it seemed good to me as well, because I have followed all things carefully from the beginning, to write an orderly account for you, most excellent Theophilus, </VERS>\n\t\t\t<VERS vnumber=\"4\"> so that you may know for certain the things you were taught.</VERS>\n\t\t\t<VERS vnumber=\"5\"> During the reign of Herod king of Judea, there lived a priest named Zechariah who belonged to the priestly division of Abijah, and he had a wife named Elizabeth, who was a descendant of Aaron.</VERS>\n\t\t\t<VERS vnumber=\"6\"> They were both righteous in the sight of God, following all the commandments and ordinances of the Lord blamelessly.</VERS>\n\t\t\t<VERS vnumber=\"7\"> But they did not have a child, because Elizabeth was barren, and they were both very old.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Now while Zechariah was serving as priest before God when his division was on duty,</VERS>\n\t\t\t<VERS vnumber=\"9\"> he was chosen by lot, according to the custom of the priesthood, to enter the holy place of the Lord and burn incense. </VERS>\n\t\t\t<VERS vnumber=\"10\"> Now the whole crowd of people were praying outside at the hour of the incense offering.</VERS>\n\t\t\t<VERS vnumber=\"11\"> An angel of the Lord, standing on the right side of the altar of incense, appeared to him. </VERS>\n\t\t\t<VERS vnumber=\"12\"> And Zechariah, visibly shaken when he saw the angel, was seized with fear.</VERS>\n\t\t\t<VERS vnumber=\"13\"> But the angel said to him, \"Do not be afraid, Zechariah, for your prayer has been heard, and your wife Elizabeth will bear you a son; you will name him John.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Joy and gladness will come to you, and many will rejoice at his birth,</VERS>\n\t\t\t<VERS vnumber=\"15\"> for he will be great in the sight of the Lord. He must never drink wine or strong drink, and he will be filled with the Holy Spirit, even before his birth.</VERS>\n\t\t\t<VERS vnumber=\"16\"> He will turn many of the people of Israel to the Lord their God. </VERS>\n\t\t\t<VERS vnumber=\"17\"> And he will go as forerunner before the Lord in the spirit and power of Elijah, to turn the hearts of the fathers back to their children and the disobedient to the wisdom of the just, to make ready for the Lord a people prepared for him.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> Zechariah said to the angel, \"How can I be sure of this? For I am an old man, and my wife is old as well.\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> The angel answered him, \"I am Gabriel, who stands in the presence of God, and I was sent to speak to you and to bring you this good news. </VERS>\n\t\t\t<VERS vnumber=\"20\"> And now, because you did not believe my words, which will be fulfilled in their time, you will be silent, unable to speak, until the day these things take place.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> Now the people were waiting for Zechariah, and they began to wonder why he was delayed in the holy place.</VERS>\n\t\t\t<VERS vnumber=\"22\"> When he came out, he was not able to speak to them. They realized that he had seen a vision in the holy place, because he was making signs to them and remained unable to speak.</VERS>\n\t\t\t<VERS vnumber=\"23\"> When his time of service was over, he went to his home.</VERS>\n\t\t\t<VERS vnumber=\"24\"> After some time his wife Elizabeth became pregnant, and for five months she kept herself in seclusion. She said,</VERS>\n\t\t\t<VERS vnumber=\"25\"> \"This is what the Lord has done for me at the time when he has been gracious to me, to take away my disgrace among people.\"</VERS>\n\t\t\t<VERS vnumber=\"26\"> In the sixth month of Elizabeth's pregnancy, the angel Gabriel was sent by God to a town of Galilee called Nazareth,</VERS>\n\t\t\t<VERS vnumber=\"27\"> to a virgin engaged to a man whose name was Joseph, a descendant of David, and the virgin's name was Mary. </VERS>\n\t\t\t<VERS vnumber=\"28\"> The angel came to her and said, \"Greetings, favored one, the Lord is with you!\"</VERS>\n\t\t\t<VERS vnumber=\"29\"> But she was greatly troubled by his words and began to wonder about the meaning of this greeting.</VERS>\n\t\t\t<VERS vnumber=\"30\"> So the angel said to her, \"Do not be afraid, Mary, for you have found favor with God! </VERS>\n\t\t\t<VERS vnumber=\"31\"> Listen: You will become pregnant and give birth to a son, and you will name him Jesus.</VERS>\n\t\t\t<VERS vnumber=\"32\"> He will be great, and will be called the Son of the Most High, and the Lord God will give him the throne of his father David. </VERS>\n\t\t\t<VERS vnumber=\"33\"> He will reign over the house of Jacob forever, and his kingdom will never end.\" </VERS>\n\t\t\t<VERS vnumber=\"34\"> Mary said to the angel, \"How will this be, since I have not had sexual relations with a man?\" </VERS>\n\t\t\t<VERS vnumber=\"35\"> The angel replied, \"The Holy Spirit will come upon you, and the power of the Most High will overshadow you. Therefore the child to be born will be holy; he will be called the Son of God.</VERS>\n\t\t\t<VERS vnumber=\"36\"> \"And look, your relative Elizabeth has also become pregnant with a son in her old age, although she was called barren, she is now in her sixth month!</VERS>\n\t\t\t<VERS vnumber=\"37\"> For nothing will be impossible with God.\" </VERS>\n\t\t\t<VERS vnumber=\"38\"> So Mary said, \"Yes, I am a servant of the Lord; let this happen to me according to your word.\" Then the angel departed from her.</VERS>\n\t\t\t<VERS vnumber=\"39\"> In those days Mary got up and went hurriedly into the hill country, to a town of Judah,</VERS>\n\t\t\t<VERS vnumber=\"40\"> and entered Zechariah's house and greeted Elizabeth.</VERS>\n\t\t\t<VERS vnumber=\"41\"> When Elizabeth heard Mary's greeting, the baby leaped in her womb, and Elizabeth was filled with the Holy Spirit.</VERS>\n\t\t\t<VERS vnumber=\"42\"> She exclaimed with a loud voice, \"Blessed are you among women, and blessed is the child in your womb! </VERS>\n\t\t\t<VERS vnumber=\"43\"> And who am I that the mother of my Lord should come and visit me? </VERS>\n\t\t\t<VERS vnumber=\"44\"> For the instant the sound of your greeting reached my ears, the baby in my womb leaped for joy.</VERS>\n\t\t\t<VERS vnumber=\"45\"> And blessed is she who believed that what was spoken to her by the Lord would be fulfilled.\"</VERS>\n\t\t\t<VERS vnumber=\"46\"> And Mary said, \"My soul exalts the Lord,</VERS>\n\t\t\t<VERS vnumber=\"47\"> and my spirit has begun to rejoice in God my Savior,</VERS>\n\t\t\t<VERS vnumber=\"48\"> because he has looked upon the humble state of his servant. For from now on all generations will call me blessed,</VERS>\n\t\t\t<VERS vnumber=\"49\"> because he who is mighty has done great things for me, and holy is his name;</VERS>\n\t\t\t<VERS vnumber=\"50\"> from generation to generation he is merciful to those who fear him.</VERS>\n\t\t\t<VERS vnumber=\"51\"> He has demonstrated power with his arm; he has scattered those whose pride wells up from the sheer arrogance of their hearts.</VERS>\n\t\t\t<VERS vnumber=\"52\"> He has brought down the mighty from their thrones, and has lifted up those of lowly position;</VERS>\n\t\t\t<VERS vnumber=\"53\"> he has filled the hungry with good things, and has sent the rich away empty.</VERS>\n\t\t\t<VERS vnumber=\"54\"> He has helped his servant Israel, remembering his mercy,</VERS>\n\t\t\t<VERS vnumber=\"55\"> as he promised to our ancestors, to Abraham and to his descendants forever.\"</VERS>\n\t\t\t<VERS vnumber=\"56\"> So Mary stayed with Elizabeth about three months and then returned to her home.</VERS>\n\t\t\t<VERS vnumber=\"57\"> Now the time came for Elizabeth to have her baby, and she gave birth to a son.</VERS>\n\t\t\t<VERS vnumber=\"58\"> Her neighbors and relatives heard that the Lord had shown great mercy to her, and they rejoiced with her.</VERS>\n\t\t\t<VERS vnumber=\"59\"> On the eighth day they came to circumcise the child, and they wanted to name him Zechariah after his father. </VERS>\n\t\t\t<VERS vnumber=\"60\"> But his mother replied, \"No! He must be named John.\"</VERS>\n\t\t\t<VERS vnumber=\"61\"> They said to her, \"But none of your relatives bears this name.\"</VERS>\n\t\t\t<VERS vnumber=\"62\"> So they made signs to the baby's father, inquiring what he wanted to name his son.</VERS>\n\t\t\t<VERS vnumber=\"63\"> He asked for a writing tablet and wrote, \"His name is John.\" And they were all amazed.</VERS>\n\t\t\t<VERS vnumber=\"64\"> Immediately Zechariah's mouth was opened and his tongue released, and he spoke, blessing God. </VERS>\n\t\t\t<VERS vnumber=\"65\"> All their neighbors were filled with fear, and throughout the entire hill country of Judea all these things were talked about.</VERS>\n\t\t\t<VERS vnumber=\"66\"> All who heard these things kept them in their hearts, saying, \"What then will this child be?\" For the Lord's hand was indeed with him.</VERS>\n\t\t\t<VERS vnumber=\"67\"> Then his father Zechariah was filled with the Holy Spirit and prophesied,</VERS>\n\t\t\t<VERS vnumber=\"68\"> \"Blessed be the Lord God of Israel, because he has come to help and has redeemed his people.</VERS>\n\t\t\t<VERS vnumber=\"69\"> For he has raised up a horn of salvation for us in the house of his servant David,</VERS>\n\t\t\t<VERS vnumber=\"70\"> as he spoke through the mouth of his holy prophets from long ago,</VERS>\n\t\t\t<VERS vnumber=\"71\"> that we should be saved from our enemies, and from the hand of all who hate us.</VERS>\n\t\t\t<VERS vnumber=\"72\"> He has done this to show mercy to our ancestors, and to remember his holy covenant,</VERS>\n\t\t\t<VERS vnumber=\"73\"> the oath that he swore to our ancestor Abraham. This oath grants</VERS>\n\t\t\t<VERS vnumber=\"74\"> that we, being rescued from the hand of our enemies, may serve him without fear,</VERS>\n\t\t\t<VERS vnumber=\"75\"> in holiness and righteousness before him for as long as we live.</VERS>\n\t\t\t<VERS vnumber=\"76\"> And you, child, will be called the prophet of the Most High. For you will go before the Lord to prepare his ways,</VERS>\n\t\t\t<VERS vnumber=\"77\"> to give his people knowledge of salvation through the forgiveness of their sins.</VERS>\n\t\t\t<VERS vnumber=\"78\"> Because of our God's tender mercy the dawn will break upon us from on high</VERS>\n\t\t\t<VERS vnumber=\"79\"> to give light to those who sit in darkness and in the shadow of death, to guide our feet into the way of peace.\"</VERS>\n\t\t\t<VERS vnumber=\"80\"> And the child kept growing and becoming strong in spirit, and he was in the wilderness until the day he was revealed to Israel.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> Now in those days a decree went out from Caesar Augustus to register all the empire for taxes. </VERS>\n\t\t\t<VERS vnumber=\"2\"> This was the first registration, taken when Quirinius was governor of Syria. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Everyone went to his own town to be registered. </VERS>\n\t\t\t<VERS vnumber=\"4\"> So Joseph also went up from the town of Nazareth in Galilee to Judea, to the city of David called Bethlehem, because he was of the house and family line of David. </VERS>\n\t\t\t<VERS vnumber=\"5\"> He went to be registered with Mary, who was promised in marriage to him, and who was expecting a child. </VERS>\n\t\t\t<VERS vnumber=\"6\"> While they were there, the time came for her to deliver her child.</VERS>\n\t\t\t<VERS vnumber=\"7\"> And she gave birth to her firstborn son and wrapped him in strips of cloth and laid him in a manger, because there was no place for them in the inn.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Now there were shepherds nearby living out in the field, keeping guard over their flock at night.</VERS>\n\t\t\t<VERS vnumber=\"9\"> An angel of the Lord appeared to them, and the glory of the Lord shone around them, and they were absolutely terrified.</VERS>\n\t\t\t<VERS vnumber=\"10\"> But the angel said to them, \"Do not be afraid! Listen carefully, for I proclaim to you good news that brings great joy to all the people: </VERS>\n\t\t\t<VERS vnumber=\"11\"> Today your Savior is born in the city of David. He is Christ the Lord. </VERS>\n\t\t\t<VERS vnumber=\"12\"> This will be a sign for you: You will find a baby wrapped in strips of cloth and lying in a manger.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> Suddenly a vast, heavenly army appeared with the angel, praising God and saying,</VERS>\n\t\t\t<VERS vnumber=\"14\"> \"Glory to God in the highest, and on earth peace among people with whom he is pleased!\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> When the angels left them and went back to heaven, the shepherds said to one another, \"Let us go over to Bethlehem and see this thing that has taken place, that the Lord has made known to us.\" </VERS>\n\t\t\t<VERS vnumber=\"16\"> So they hurried off and located Mary and Joseph, and found the baby lying in a manger.</VERS>\n\t\t\t<VERS vnumber=\"17\"> When they saw him, they related what they had been told about this child, </VERS>\n\t\t\t<VERS vnumber=\"18\"> and all who heard it were astonished at what the shepherds said. </VERS>\n\t\t\t<VERS vnumber=\"19\"> But Mary treasured up all these words, pondering in her heart what they might mean.</VERS>\n\t\t\t<VERS vnumber=\"20\"> So the shepherds returned, glorifying and praising God for all they had heard and seen; everything was just as they had been told.</VERS>\n\t\t\t<VERS vnumber=\"21\"> At the end of eight days, when he was circumcised, he was named Jesus, the name given by the angel before he was conceived in the womb.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Now when the time came for their purification according to the law of Moses, Joseph and Mary brought Jesus up to Jerusalem to present him to the Lord </VERS>\n\t\t\t<VERS vnumber=\"23\"> (just as it is written in the law of the Lord, \"Every firstborn male will be set apart to the Lord\"),</VERS>\n\t\t\t<VERS vnumber=\"24\"> and to offer a sacrifice according to what is specified in the law of the Lord, a pair of doves or two young pigeons.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Now there was a man in Jerusalem named Simeon who was righteous and devout, looking for the restoration of Israel, and the Holy Spirit was upon him.</VERS>\n\t\t\t<VERS vnumber=\"26\"> It had been revealed to him by the Holy Spirit that he would not die before he had seen the Lord's Christ.</VERS>\n\t\t\t<VERS vnumber=\"27\"> So Simeon, directed by the Spirit, came into the temple courts, and when the parents brought in the child Jesus to do for him what was customary according to the law,</VERS>\n\t\t\t<VERS vnumber=\"28\"> Simeon took him in his arms and blessed God, saying,</VERS>\n\t\t\t<VERS vnumber=\"29\"> \"Now, according to your word, Sovereign Lord, permit your servant to depart in peace.</VERS>\n\t\t\t<VERS vnumber=\"30\"> For my eyes have seen your salvation</VERS>\n\t\t\t<VERS vnumber=\"31\"> that you have prepared in the presence of all peoples:</VERS>\n\t\t\t<VERS vnumber=\"32\"> a light, for revelation to the Gentiles, and for glory to your people Israel.\"</VERS>\n\t\t\t<VERS vnumber=\"33\"> So the child's father and mother were amazed at what was said about him. </VERS>\n\t\t\t<VERS vnumber=\"34\"> Then Simeon blessed them and said to his mother Mary, \"Listen carefully: This child is destined to be the cause of the falling and rising of many in Israel and to be a sign that will be rejected.</VERS>\n\t\t\t<VERS vnumber=\"35\"> Indeed, as a result of him the thoughts of many hearts will be revealed, and a sword will pierce your own soul as well!\"</VERS>\n\t\t\t<VERS vnumber=\"36\"> There was also a prophetess, Anna the daughter of Phanuel, of the tribe of Asher. She was very old, having been married to her husband for seven years until his death. </VERS>\n\t\t\t<VERS vnumber=\"37\"> She had lived as a widow since then for eighty-four years. She never left the temple, worshiping with fasting and prayer night and day.</VERS>\n\t\t\t<VERS vnumber=\"38\"> At that moment, she came up to them and began to give thanks to God and to speak about the child to all who were waiting for the redemption of Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"39\"> So when Joseph and Mary had performed everything according to the law of the Lord, they returned to Galilee, to their own town of Nazareth.</VERS>\n\t\t\t<VERS vnumber=\"40\"> And the child grew and became strong, filled with wisdom, and the favor of God was upon him.</VERS>\n\t\t\t<VERS vnumber=\"41\"> Now Jesus' parents went to Jerusalem every year for the feast of the Passover.</VERS>\n\t\t\t<VERS vnumber=\"42\"> When he was twelve years old, they went up according to custom. </VERS>\n\t\t\t<VERS vnumber=\"43\"> But when the feast was over, as they were returning home, the boy Jesus stayed behind in Jerusalem. His parents did not know it, </VERS>\n\t\t\t<VERS vnumber=\"44\"> but (because they assumed that he was in their group of travelers) they went a day's journey. Then they began to look for him among their relatives and acquaintances.</VERS>\n\t\t\t<VERS vnumber=\"45\"> When they did not find him, they returned to Jerusalem to look for him. </VERS>\n\t\t\t<VERS vnumber=\"46\"> After three days they found him in the temple courts, sitting among the teachers, listening to them and asking them questions. </VERS>\n\t\t\t<VERS vnumber=\"47\"> And all who heard Jesus were astonished at his understanding and his answers. </VERS>\n\t\t\t<VERS vnumber=\"48\"> When his parents saw him, they were overwhelmed. His mother said to him, \"Child, why have you treated us like this? Look, your father and I have been looking for you anxiously.\"</VERS>\n\t\t\t<VERS vnumber=\"49\"> But he replied, \"Why were you looking for me? Didn't you know that I must be in my Father's house?\"</VERS>\n\t\t\t<VERS vnumber=\"50\"> Yet his parents did not understand the remark he made to them. </VERS>\n\t\t\t<VERS vnumber=\"51\"> Then he went down with them and came to Nazareth, and was obedient to them. But his mother kept all these things in her heart.</VERS>\n\t\t\t<VERS vnumber=\"52\"> And Jesus increased in wisdom and in stature, and in favor with God and with people.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> In the fifteenth year of the reign of Tiberius Caesar, when Pontius Pilate was governor of Judea, and Herod was tetrarch of Galilee, and his brother Philip was tetrarch of the region of Iturea and Trachonitis, and Lysanias was tetrarch of Abilene, </VERS>\n\t\t\t<VERS vnumber=\"2\"> during the high priesthood of Annas and Caiaphas, the word of God came to John the son of Zechariah in the wilderness.</VERS>\n\t\t\t<VERS vnumber=\"3\"> He went into all the region around the Jordan River, preaching a baptism of repentance for the forgiveness of sins.</VERS>\n\t\t\t<VERS vnumber=\"4\"> As it is written in the book of the words of Isaiah the prophet, \"The voice of one shouting in the wilderness: 'Prepare the way for the Lord, make his paths straight.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Every valley will be filled, and every mountain and hill will be brought low, and the crooked will be made straight, and the rough ways will be made smooth,</VERS>\n\t\t\t<VERS vnumber=\"6\"> and all humanity will see the salvation of God.'\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> So John said to the crowds that came out to be baptized by him, \"You offspring of vipers! Who warned you to flee from the coming wrath? </VERS>\n\t\t\t<VERS vnumber=\"8\"> Therefore produce fruit that proves your repentance, and don't begin to say to yourselves, 'We have Abraham as our father.' For I tell you that God can raise up children for Abraham from these stones!</VERS>\n\t\t\t<VERS vnumber=\"9\"> Even now the ax is laid at the root of the trees, and every tree that does not produce good fruit will be cut down and thrown into the fire.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> So the crowds were asking him, \"What then should we do?\" </VERS>\n\t\t\t<VERS vnumber=\"11\"> John answered them, \"The person who has two tunics must share with the person who has none, and the person who has food must do likewise.\" </VERS>\n\t\t\t<VERS vnumber=\"12\"> Tax collectors also came to be baptized, and they said to him, \"Teacher, what should we do?\" </VERS>\n\t\t\t<VERS vnumber=\"13\"> He told them, \"Collect no more than you are required to.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> Then some soldiers also asked him, \"And as for us, what should we do?\" He told them, \"Take money from no one by violence or by false accusation, and be content with your pay.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> While the people were filled with anticipation and they all wondered whether perhaps John could be the Christ,</VERS>\n\t\t\t<VERS vnumber=\"16\"> John answered them all, \"I baptize you with water, but one more powerful than I am is coming, I am not worthy to untie the strap of his sandals. He will baptize you with the Holy Spirit and fire.</VERS>\n\t\t\t<VERS vnumber=\"17\"> His winnowing fork is in his hand to clean out his threshing floor and to gather the wheat into his storehouse, but the chaff he will burn up with inextinguishable fire.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> And in this way, with many other exhortations, John proclaimed good news to the people. </VERS>\n\t\t\t<VERS vnumber=\"19\"> But when John rebuked Herod the tetrarch because of Herodias, his brother's wife, and because of all the evil deeds that he had done, </VERS>\n\t\t\t<VERS vnumber=\"20\"> Herod added this to them all: He locked up John in prison.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Now when all the people were baptized, Jesus also was baptized. And while he was praying, the heavens opened, </VERS>\n\t\t\t<VERS vnumber=\"22\"> and the Holy Spirit descended on him in bodily form like a dove. And a voice came from heaven, \"You are my one dear Son; in you I take great delight.\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> So Jesus, when he began his ministry, was about thirty years old. He was the son (as was supposed) of Joseph, the son of Heli, </VERS>\n\t\t\t<VERS vnumber=\"24\"> the son of Matthat, the son of Levi, the son of Melchi, the son of Jannai, the son of Joseph,</VERS>\n\t\t\t<VERS vnumber=\"25\"> the son of Mattathias, the son of Amos, the son of Nahum, the son of Esli, the son of Naggai,</VERS>\n\t\t\t<VERS vnumber=\"26\"> the son of Maath, the son of Mattathias, the son of Semein, the son of Josech, the son of Joda,</VERS>\n\t\t\t<VERS vnumber=\"27\"> the son of Joanan, the son of Rhesa, the son of Zerubbabel, the son of Shealtiel, the son of Neri,</VERS>\n\t\t\t<VERS vnumber=\"28\"> the son of Melchi, the son of Addi, the son of Cosam, the son of Elmadam, the son of Er,</VERS>\n\t\t\t<VERS vnumber=\"29\"> the son of Joshua, the son of Eliezer, the son of Jorim, the son of Matthat, the son of Levi,</VERS>\n\t\t\t<VERS vnumber=\"30\"> the son of Simeon, the son of Judah, the son of Joseph, the son of Jonam, the son of Eliakim,</VERS>\n\t\t\t<VERS vnumber=\"31\"> the son of Melea, the son of Menna, the son of Mattatha, the son of Nathan, the son of David,</VERS>\n\t\t\t<VERS vnumber=\"32\"> the son of Jesse, the son of Obed, the son of Boaz, the son of Sala, the son of Nahshon, </VERS>\n\t\t\t<VERS vnumber=\"33\"> the son of Amminadab, the son of Admin, the son of Arni, the son of Hezron, the son of Perez, the son of Judah, </VERS>\n\t\t\t<VERS vnumber=\"34\"> the son of Jacob, the son of Isaac, the son of Abraham, the son of Terah, the son of Nahor, </VERS>\n\t\t\t<VERS vnumber=\"35\"> the son of Serug, the son of Reu, the son of Peleg, the son of Eber, the son of Shelah,</VERS>\n\t\t\t<VERS vnumber=\"36\"> the son of Cainan, the son of Arphaxad, the son of Shem, the son of Noah, the son of Lamech, </VERS>\n\t\t\t<VERS vnumber=\"37\"> the son of Methuselah, the son of Enoch, the son of Jared, the son of Mahalalel, the son of Kenan,</VERS>\n\t\t\t<VERS vnumber=\"38\"> the son of Enosh, the son of Seth, the son of Adam, the son of God.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\"> Then Jesus, full of the Holy Spirit, returned from the Jordan River and was led by the Spirit in the wilderness,</VERS>\n\t\t\t<VERS vnumber=\"2\"> where for forty days he endured temptations from the devil. He ate nothing during those days, and when they were completed, he was famished. </VERS>\n\t\t\t<VERS vnumber=\"3\"> The devil said to him, \"If you are the Son of God, command this stone to become bread.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> Jesus answered him, \"It is written, 'Man does not live by bread alone.'\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> Then the devil led him up to a high place and showed him in a flash all the kingdoms of the world. </VERS>\n\t\t\t<VERS vnumber=\"6\"> And he said to him, \"To you I will grant this whole realm, and the glory that goes along with it, for it has been relinquished to me, and I can give it to anyone I wish.</VERS>\n\t\t\t<VERS vnumber=\"7\"> So then, if you will worship me, all this will be yours.\" </VERS>\n\t\t\t<VERS vnumber=\"8\"> Jesus answered him, \"It is written, 'You are to worship the Lord your God and serve only him.'\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> Then the devil brought him to Jerusalem, had him stand on the highest point of the temple, and said to him, \"If you are the Son of God, throw yourself down from here,</VERS>\n\t\t\t<VERS vnumber=\"10\"> for it is written, 'He will command his angels concerning you, to protect you,'</VERS>\n\t\t\t<VERS vnumber=\"11\"> and 'with their hands they will lift you up, so that you will not strike your foot against a stone.'\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> Jesus answered him, \"It is said, 'You are not to put the Lord your God to the test.'\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> So when the devil had completed every temptation, he departed from him until a more opportune time.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Then Jesus, in the power of the Spirit, returned to Galilee, and news about him spread throughout the surrounding countryside.</VERS>\n\t\t\t<VERS vnumber=\"15\"> He began to teach in their synagogues and was praised by all.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Now Jesus came to Nazareth, where he had been brought up, and went into the synagogue on the Sabbath day, as was his custom. He stood up to read,</VERS>\n\t\t\t<VERS vnumber=\"17\"> and the scroll of the prophet Isaiah was given to him. He unrolled the scroll and found the place where it was written,</VERS>\n\t\t\t<VERS vnumber=\"18\"> \"The Spirit of the Lord is upon me, because he has anointed me to proclaim good news to the poor. He has sent me to proclaim release to the captives and the regaining of sight to the blind, to set free those who are oppressed,</VERS>\n\t\t\t<VERS vnumber=\"19\"> to proclaim the year of the Lord's favor.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> Then he rolled up the scroll, gave it back to the attendant, and sat down. The eyes of everyone in the synagogue were fixed on him. </VERS>\n\t\t\t<VERS vnumber=\"21\"> Then he began to tell them, \"Today this scripture has been fulfilled even as you heard it being read.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> All were speaking well of him, and were amazed at the gracious words coming out of his mouth. They said, \"Isn't this Joseph's son?\" </VERS>\n\t\t\t<VERS vnumber=\"23\"> Jesus said to them, \"No doubt you will quote to me the proverb, 'Physician, heal yourself!' and say, 'What we have heard that you did in Capernaum, do here in your hometown too.'\" </VERS>\n\t\t\t<VERS vnumber=\"24\"> And he added, \"I tell you the truth, no prophet is acceptable in his hometown. </VERS>\n\t\t\t<VERS vnumber=\"25\"> But in truth I tell you, there were many widows in Israel in Elijah's days, when the sky was shut up three and a half years, and there was a great famine over all the land. </VERS>\n\t\t\t<VERS vnumber=\"26\"> Yet Elijah was sent to none of them, but only to a woman who was a widow at Zarephath in Sidon.</VERS>\n\t\t\t<VERS vnumber=\"27\"> And there were many lepers in Israel in the time of the prophet Elisha, yet none of them was cleansed except Naaman the Syrian.\"</VERS>\n\t\t\t<VERS vnumber=\"28\"> When they heard this, all the people in the synagogue were filled with rage. </VERS>\n\t\t\t<VERS vnumber=\"29\"> They got up, forced him out of the town, and brought him to the brow of the hill on which their town was built, so that they could throw him down the cliff.</VERS>\n\t\t\t<VERS vnumber=\"30\"> But he passed through the crowd and went on his way.</VERS>\n\t\t\t<VERS vnumber=\"31\"> So he went down to Capernaum, a town in Galilee, and on the Sabbath he began to teach the people.</VERS>\n\t\t\t<VERS vnumber=\"32\"> They were amazed at his teaching, because he spoke with authority.</VERS>\n\t\t\t<VERS vnumber=\"33\"> Now in the synagogue there was a man who had the spirit of an unclean demon, and he cried out with a loud voice, </VERS>\n\t\t\t<VERS vnumber=\"34\"> \"Ha! Leave us alone, Jesus the Nazarene! Have you come to destroy us? I know who you are, the Holy One of God.\"</VERS>\n\t\t\t<VERS vnumber=\"35\"> But Jesus rebuked him: \"Silence! Come out of him!\" Then, after the demon threw the man down in their midst, he came out of him without hurting him.</VERS>\n\t\t\t<VERS vnumber=\"36\"> They were all amazed and began to say to one another, \"What's happening here? For with authority and power he commands the unclean spirits, and they come out!\" </VERS>\n\t\t\t<VERS vnumber=\"37\"> So the news about him spread into all areas of the region.</VERS>\n\t\t\t<VERS vnumber=\"38\"> After Jesus left the synagogue, he entered Simon's house. Now Simon's mother-in-law was suffering from a high fever, and they asked Jesus to help her.</VERS>\n\t\t\t<VERS vnumber=\"39\"> So he stood over her, commanded the fever, and it left her. Immediately she got up and began to serve them.</VERS>\n\t\t\t<VERS vnumber=\"40\"> As the sun was setting, all those who had any relatives sick with various diseases brought them to Jesus. He placed his hands on every one of them and healed them. </VERS>\n\t\t\t<VERS vnumber=\"41\"> Demons also came out of many, crying out, \"You are the Son of God!\" But he rebuked them, and would not allow them to speak, because they knew that he was the Christ.</VERS>\n\t\t\t<VERS vnumber=\"42\"> The next morning Jesus departed and went to a deserted place. Yet the crowds were seeking him, and they came to him and tried to keep him from leaving them. </VERS>\n\t\t\t<VERS vnumber=\"43\"> But Jesus said to them, \"I must proclaim the good news of the kingdom of God to the other towns too, for that is what I was sent to do.\"</VERS>\n\t\t\t<VERS vnumber=\"44\"> So he continued to preach in the synagogues of Judea.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"5\">\n\t\t\t<VERS vnumber=\"1\"> Now Jesus was standing by the Lake of Gennesaret, and the crowd was pressing around him to hear the word of God. </VERS>\n\t\t\t<VERS vnumber=\"2\"> He saw two boats by the lake, but the fishermen had gotten out of them and were washing their nets. </VERS>\n\t\t\t<VERS vnumber=\"3\"> He got into one of the boats, which was Simon's, and asked him to put out a little way from the shore. Then Jesus sat down and taught the crowds from the boat. </VERS>\n\t\t\t<VERS vnumber=\"4\"> When he had finished speaking, he said to Simon, \"Put out into the deep water and lower your nets for a catch.\" </VERS>\n\t\t\t<VERS vnumber=\"5\"> Simon answered, \"Master, we worked hard all night and caught nothing! But at your word I will lower the nets.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> When they had done this, they caught so many fish that their nets started to tear.</VERS>\n\t\t\t<VERS vnumber=\"7\"> So they motioned to their partners in the other boat to come and help them. And they came and filled both boats, so that they were about to sink.</VERS>\n\t\t\t<VERS vnumber=\"8\"> But when Simon Peter saw it, he fell down at Jesus' knees, saying, \"Go away from me, Lord, for I am a sinful man!\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> For Peter and all who were with him were astonished at the catch of fish that they had taken, </VERS>\n\t\t\t<VERS vnumber=\"10\"> and so were James and John, Zebedee's sons, who were Simon's business partners. Then Jesus said to Simon, \"Do not be afraid; from now on you will be catching people.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> So when they had brought their boats to shore, they left everything and followed him.</VERS>\n\t\t\t<VERS vnumber=\"12\"> While Jesus was in one of the towns, a man came to him who was covered with leprosy. When he saw Jesus, he bowed down with his face to the ground and begged him, \"Lord, if you are willing, you can make me clean.\" </VERS>\n\t\t\t<VERS vnumber=\"13\"> So he stretched out his hand and touched him, saying, \"I am willing. Be clean!\" And immediately the leprosy left him. </VERS>\n\t\t\t<VERS vnumber=\"14\"> Then he ordered the man to tell no one, but commanded him, \"Go and show yourself to a priest, and bring the offering for your cleansing, as Moses commanded, as a testimony to them.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> But the news about him spread even more, and large crowds were gathering together to hear him and to be healed of their illnesses. </VERS>\n\t\t\t<VERS vnumber=\"16\"> Yet Jesus himself frequently withdrew to the wilderness and prayed.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Now on one of those days, while he was teaching, there were Pharisees and teachers of the law sitting nearby (who had come from every village of Galilee and Judea and from Jerusalem), and the power of the Lord was with him to heal. </VERS>\n\t\t\t<VERS vnumber=\"18\"> Just then some men showed up, carrying a paralyzed man on a stretcher. They were trying to bring him in and place him before Jesus.</VERS>\n\t\t\t<VERS vnumber=\"19\"> But since they found no way to carry him in because of the crowd, they went up on the roof and let him down on the stretcher through the roof tiles right in front of Jesus.</VERS>\n\t\t\t<VERS vnumber=\"20\"> When Jesus saw their faith he said, \"Friend, your sins are forgiven.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> Then the experts in the law and the Pharisees began to think to themselves, \"Who is this man who is uttering blasphemies? Who can forgive sins but God alone?\" </VERS>\n\t\t\t<VERS vnumber=\"22\"> When Jesus perceived their hostile thoughts, he said to them, \"Why are you raising objections within yourselves? </VERS>\n\t\t\t<VERS vnumber=\"23\"> Which is easier, to say, 'Your sins are forgiven,' or to say, 'Stand up and walk'? </VERS>\n\t\t\t<VERS vnumber=\"24\"> But so that you may know that the Son of Man has authority on earth to forgive sins\", he said to the paralyzed man, \"I tell you, stand up, take your stretcher and go home.\"</VERS>\n\t\t\t<VERS vnumber=\"25\"> Immediately he stood up before them, picked up the stretcher he had been lying on, and went home, glorifying God. </VERS>\n\t\t\t<VERS vnumber=\"26\"> Then astonishment seized them all, and they glorified God. They were filled with awe, saying, \"We have seen incredible things today.\"</VERS>\n\t\t\t<VERS vnumber=\"27\"> After this, Jesus went out and saw a tax collector named Levi sitting at the tax booth. \"Follow me,\" he said to him. </VERS>\n\t\t\t<VERS vnumber=\"28\"> And he got up and followed him, leaving everything behind.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Then Levi gave a great banquet in his house for Jesus, and there was a large crowd of tax collectors and others sitting at the table with them. </VERS>\n\t\t\t<VERS vnumber=\"30\"> But the Pharisees and their experts in the law complained to his disciples, saying, \"Why do you eat and drink with tax collectors and sinners?\"</VERS>\n\t\t\t<VERS vnumber=\"31\"> Jesus answered them, \"Those who are well don't need a physician, but those who are sick do.</VERS>\n\t\t\t<VERS vnumber=\"32\"> I have not come to call the righteous, but sinners to repentance.\"</VERS>\n\t\t\t<VERS vnumber=\"33\"> Then they said to him, \"John's disciples frequently fast and pray, and so do the disciples of the Pharisees, but yours continue to eat and drink.\"</VERS>\n\t\t\t<VERS vnumber=\"34\"> So Jesus said to them, \"You cannot make the wedding guests fast while the bridegroom is with them, can you?</VERS>\n\t\t\t<VERS vnumber=\"35\"> But those days are coming, and when the bridegroom is taken from them, at that time they will fast.\" </VERS>\n\t\t\t<VERS vnumber=\"36\"> He also told them a parable: \"No one tears a patch from a new garment and sews it on an old garment. If he does, he will have torn the new, and the piece from the new will not match the old.</VERS>\n\t\t\t<VERS vnumber=\"37\"> And no one pours new wine into old wineskins. If he does, the new wine will burst the skins and will be spilled, and the skins will be destroyed. </VERS>\n\t\t\t<VERS vnumber=\"38\"> Instead new wine must be poured into new wineskins.</VERS>\n\t\t\t<VERS vnumber=\"39\">  No one after drinking old wine wants the new, for he says, 'The old is good enough.'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"6\">\n\t\t\t<VERS vnumber=\"1\"> Jesus was going through the grain fields on a Sabbath, and his disciples picked some heads of wheat, rubbed them in their hands, and ate them.</VERS>\n\t\t\t<VERS vnumber=\"2\"> But some of the Pharisees said, \"Why are you doing what is against the law on the Sabbath?\" </VERS>\n\t\t\t<VERS vnumber=\"3\"> Jesus answered them, \"Haven't you read what David did when he and his companions were hungry,</VERS>\n\t\t\t<VERS vnumber=\"4\"> how he entered the house of God, took and ate the sacred bread, which is not lawful for any to eat but the priests alone, and gave it to his companions?\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> Then he said to them, \"The Son of Man is lord of the Sabbath.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> On another Sabbath, Jesus entered the synagogue and was teaching. Now a man was there whose right hand was withered.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The experts in the law and the Pharisees watched Jesus closely to see if he would heal on the Sabbath, so that they could find a reason to accuse him. </VERS>\n\t\t\t<VERS vnumber=\"8\"> But he knew their thoughts, and said to the man who had the withered hand, \"Get up and stand here.\" So he rose and stood there. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Then Jesus said to them, \"I ask you, is it lawful to do good on the Sabbath or to do evil, to save a life or to destroy it?\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> After looking around at them all, he said to the man, \"Stretch out your hand.\" The man did so, and his hand was restored.</VERS>\n\t\t\t<VERS vnumber=\"11\"> But they were filled with mindless rage and began debating with one another what they would do to Jesus.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Now it was during this time that Jesus went out to the mountain to pray, and he spent all night in prayer to God.</VERS>\n\t\t\t<VERS vnumber=\"13\"> When morning came, he called his disciples and chose twelve of them, whom he also named apostles:</VERS>\n\t\t\t<VERS vnumber=\"14\"> Simon (whom he named Peter), and his brother Andrew; and James, John, Philip, Bartholomew,</VERS>\n\t\t\t<VERS vnumber=\"15\"> Matthew, Thomas, James the son of Alphaeus, Simon who was called the Zealot,</VERS>\n\t\t\t<VERS vnumber=\"16\"> Judas the son of James, and Judas Iscariot, who became a traitor.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Then he came down with them and stood on a level place. And a large number of his disciples had gathered along with a vast multitude from all over Judea, from Jerusalem, and from the seacoast of Tyre and Sidon. They came to hear him and to be healed of their diseases, </VERS>\n\t\t\t<VERS vnumber=\"18\"> and those who suffered from unclean spirits were cured. </VERS>\n\t\t\t<VERS vnumber=\"19\"> The whole crowd was trying to touch him, because power was coming out from him and healing them all.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Then he looked up at his disciples and said: \"Blessed are you who are poor, for the kingdom of God belongs to you.</VERS>\n\t\t\t<VERS vnumber=\"21\"> \"Blessed are you who hunger now, for you will be satisfied. \"Blessed are you who weep now, for you will laugh.</VERS>\n\t\t\t<VERS vnumber=\"22\"> \"Blessed are you when people hate you, and when they exclude you and insult you and reject you as evil on account of the Son of Man! </VERS>\n\t\t\t<VERS vnumber=\"23\"> Rejoice in that day, and jump for joy, because your reward is great in heaven. For their ancestors did the same things to the prophets.</VERS>\n\t\t\t<VERS vnumber=\"24\"> \"But woe to you who are rich, for you have received your comfort already.</VERS>\n\t\t\t<VERS vnumber=\"25\"> \"Woe to you who are well satisfied with food now, for you will be hungry. \"Woe to you who laugh now, for you will mourn and weep.</VERS>\n\t\t\t<VERS vnumber=\"26\"> \"Woe to you when all people speak well of you, for their ancestors did the same things to the false prophets.</VERS>\n\t\t\t<VERS vnumber=\"27\"> \"But I say to you who are listening: Love your enemies, do good to those who hate you, </VERS>\n\t\t\t<VERS vnumber=\"28\"> bless those who curse you, pray for those who mistreat you. </VERS>\n\t\t\t<VERS vnumber=\"29\"> To the person who strikes you on the cheek, offer the other as well, and from the person who takes away your coat, do not withhold your tunic either.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Give to everyone who asks you, and do not ask for your possessions back from the person who takes them away. </VERS>\n\t\t\t<VERS vnumber=\"31\"> Treat others in the same way that you would want them to treat you.</VERS>\n\t\t\t<VERS vnumber=\"32\"> \"If you love those who love you, what credit is that to you? For even sinners love those who love them.</VERS>\n\t\t\t<VERS vnumber=\"33\"> And if you do good to those who do good to you, what credit is that to you? Even sinners do the same.</VERS>\n\t\t\t<VERS vnumber=\"34\"> And if you lend to those from whom you hope to be repaid, what credit is that to you? Even sinners lend to sinners, so that they may be repaid in full.</VERS>\n\t\t\t<VERS vnumber=\"35\"> But love your enemies, and do good, and lend, expecting nothing back. Then your reward will be great, and you will be sons of the Most High, because he is kind to ungrateful and evil people.</VERS>\n\t\t\t<VERS vnumber=\"36\"> Be merciful, just as your Father is merciful.</VERS>\n\t\t\t<VERS vnumber=\"37\"> \"Do not judge, and you will not be judged; do not condemn, and you will not be condemned; forgive, and you will be forgiven. </VERS>\n\t\t\t<VERS vnumber=\"38\"> Give, and it will be given to you: A good measure, pressed down, shaken together, running over, will be poured into your lap. For the measure you use will be the measure you receive.\"</VERS>\n\t\t\t<VERS vnumber=\"39\"> He also told them a parable: \"Someone who is blind cannot lead another who is blind, can he? Won't they both fall into a pit? </VERS>\n\t\t\t<VERS vnumber=\"40\"> A disciple is not greater than his teacher, but everyone when fully trained will be like his teacher. </VERS>\n\t\t\t<VERS vnumber=\"41\"> Why do you see the speck in your brother's eye, but fail to see the beam of wood in your own? </VERS>\n\t\t\t<VERS vnumber=\"42\"> How can you say to your brother, 'Brother, let me remove the speck from your eye,' while you yourself don't see the beam in your own? You hypocrite! First remove the beam from your own eye, and then you can see clearly to remove the speck from your brother's eye.</VERS>\n\t\t\t<VERS vnumber=\"43\"> \"For no good tree bears bad fruit, nor again does a bad tree bear good fruit, </VERS>\n\t\t\t<VERS vnumber=\"44\"> for each tree is known by its own fruit. For figs are not gathered from thorns, nor are grapes picked from brambles.</VERS>\n\t\t\t<VERS vnumber=\"45\"> The good person out of the good treasury of his heart produces good, and the evil person out of his evil treasury produces evil, for his mouth speaks from what fills his heart.</VERS>\n\t\t\t<VERS vnumber=\"46\"> \"Why do you call me 'Lord, Lord,' and don't do what I tell you?</VERS>\n\t\t\t<VERS vnumber=\"47\"> \"Everyone who comes to me and listens to my words and puts them into practice, I will show you what he is like:</VERS>\n\t\t\t<VERS vnumber=\"48\"> He is like a man building a house, who dug down deep, and laid the foundation on bedrock. When a flood came, the river burst against that house but could not shake it, because it had been well built.</VERS>\n\t\t\t<VERS vnumber=\"49\"> But the person who hears and does not put my words into practice is like a man who built a house on the ground without a foundation. When the river burst against that house, it collapsed immediately, and was utterly destroyed!\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"7\">\n\t\t\t<VERS vnumber=\"1\"> After Jesus had finished teaching all this to the people, he entered Capernaum.</VERS>\n\t\t\t<VERS vnumber=\"2\"> A centurion there had a slave who was highly regarded, but who was sick and at the point of death. </VERS>\n\t\t\t<VERS vnumber=\"3\"> When the centurion heard about Jesus, he sent some Jewish elders to him, asking him to come and heal his slave. </VERS>\n\t\t\t<VERS vnumber=\"4\"> When they came to Jesus, they urged him earnestly, \"He is worthy to have you do this for him, </VERS>\n\t\t\t<VERS vnumber=\"5\"> because he loves our nation, and even built our synagogue.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> So Jesus went with them. When he was not far from the house, the centurion sent friends to say to him, \"Lord, do not trouble yourself, for I am not worthy to have you come under my roof. </VERS>\n\t\t\t<VERS vnumber=\"7\"> That is why I did not presume to come to you. Instead, say the word, and my servant must be healed.</VERS>\n\t\t\t<VERS vnumber=\"8\"> For I too am a man set under authority, with soldiers under me. I say to this one, 'Go,' and he goes, and to another, 'Come,' and he comes, and to my slave, 'Do this,' and he does it.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> When Jesus heard this, he was amazed at him. He turned and said to the crowd that followed him, \"I tell you, not even in Israel have I found such faith!\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> So when those who had been sent returned to the house, they found the slave well.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Soon afterward Jesus went to a town called Nain, and his disciples and a large crowd went with him. </VERS>\n\t\t\t<VERS vnumber=\"12\"> As he approached the town gate, a man who had died was being carried out, the only son of his mother (who was a widow), and a large crowd from the town was with her.</VERS>\n\t\t\t<VERS vnumber=\"13\"> When the Lord saw her, he had compassion for her and said to her, \"Do not weep.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> Then he came up and touched the bier, and those who carried it stood still. He said, \"Young man, I say to you, get up!\" </VERS>\n\t\t\t<VERS vnumber=\"15\"> So the dead man sat up and began to speak, and Jesus gave him back to his mother.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Fear seized them all, and they began to glorify God, saying, \"A great prophet has appeared among us!\" and \"God has come to help his people!\" </VERS>\n\t\t\t<VERS vnumber=\"17\"> This report about Jesus circulated throughout Judea and all the surrounding country.</VERS>\n\t\t\t<VERS vnumber=\"18\"> John's disciples informed him about all these things. So John called two of his disciples </VERS>\n\t\t\t<VERS vnumber=\"19\"> and sent them to Jesus to ask, \"Are you the one who is to come, or should we look for another?\" </VERS>\n\t\t\t<VERS vnumber=\"20\"> When the men came to Jesus, they said, \"John the Baptist has sent us to you to ask, 'Are you the one who is to come, or should we look for another?'\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> At that very time Jesus cured many people of diseases, sicknesses, and evil spirits, and granted sight to many who were blind. </VERS>\n\t\t\t<VERS vnumber=\"22\"> So he answered them, \"Go tell John what you have seen and heard: The blind see, the lame walk, lepers are cleansed, the deaf hear, the dead are raised, the poor have good news proclaimed to them. </VERS>\n\t\t\t<VERS vnumber=\"23\"> Blessed is anyone who takes no offense at me.\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> When John's messengers had gone, Jesus began to speak to the crowds about John: \"What did you go out into the wilderness to see? A reed shaken by the wind?</VERS>\n\t\t\t<VERS vnumber=\"25\"> What did you go out to see? A man dressed in fancy clothes? Look, those who wear fancy clothes and live in luxury are in kings' courts!</VERS>\n\t\t\t<VERS vnumber=\"26\"> What did you go out to see? A prophet? Yes, I tell you, and more than a prophet. </VERS>\n\t\t\t<VERS vnumber=\"27\"> This is the one about whom it is written, 'Look, I am sending my messenger ahead of you, who will prepare your way before you.'</VERS>\n\t\t\t<VERS vnumber=\"28\"> I tell you, among those born of women no one is greater than John. Yet the one who is least in the kingdom of God is greater than he is.\" </VERS>\n\t\t\t<VERS vnumber=\"29\"> (Now all the people who heard this, even the tax collectors, acknowledged God's justice, because they had been baptized with John's baptism. </VERS>\n\t\t\t<VERS vnumber=\"30\"> However, the Pharisees and the experts in religious law rejected God's purpose for themselves, because they had not been baptized by John.)</VERS>\n\t\t\t<VERS vnumber=\"31\"> \"To what then should I compare the people of this generation, and what are they like? </VERS>\n\t\t\t<VERS vnumber=\"32\"> They are like children sitting in the marketplace and calling out to one another, 'We played the flute for you, yet you did not dance; we wailed in mourning, yet you did not weep.'</VERS>\n\t\t\t<VERS vnumber=\"33\"> For John the Baptist has come eating no bread and drinking no wine, and you say, 'He has a demon!'</VERS>\n\t\t\t<VERS vnumber=\"34\"> The Son of Man has come eating and drinking, and you say, 'Look at him, a glutton and a drunk, a friend of tax collectors and sinners!'</VERS>\n\t\t\t<VERS vnumber=\"35\"> But wisdom is vindicated by all her children.\"</VERS>\n\t\t\t<VERS vnumber=\"36\"> Now one of the Pharisees asked Jesus to have dinner with him, so he went into the Pharisee's house and took his place at the table.</VERS>\n\t\t\t<VERS vnumber=\"37\"> Then when a woman of that town, who was a sinner, learned that Jesus was dining at the Pharisee's house, she brought an alabaster jar of perfumed oil.</VERS>\n\t\t\t<VERS vnumber=\"38\"> As she stood behind him at his feet, weeping, she began to wet his feet with her tears. She wiped them with her hair, kissed them, and anointed them with the perfumed oil. </VERS>\n\t\t\t<VERS vnumber=\"39\"> Now when the Pharisee who had invited him saw this, he said to himself, \"If this man were a prophet, he would know who and what kind of woman this is who is touching him, that she is a sinner.\" </VERS>\n\t\t\t<VERS vnumber=\"40\"> So Jesus answered him, \"Simon, I have something to say to you.\" He replied, \"Say it, Teacher.\" </VERS>\n\t\t\t<VERS vnumber=\"41\"> \"A certain creditor had two debtors; one owed him five hundred silver coins, and the other fifty.</VERS>\n\t\t\t<VERS vnumber=\"42\"> When they could not pay, he canceled the debts of both. Now which of them will love him more?\"</VERS>\n\t\t\t<VERS vnumber=\"43\"> Simon answered, \"I suppose the one who had the bigger debt canceled.\" Jesus said to him, \"You have judged rightly.\" </VERS>\n\t\t\t<VERS vnumber=\"44\"> Then, turning toward the woman, he said to Simon, \"Do you see this woman? I entered your house. You gave me no water for my feet, but she has wet my feet with her tears and wiped them with her hair. </VERS>\n\t\t\t<VERS vnumber=\"45\"> You gave me no kiss of greeting, but from the time I entered she has not stopped kissing my feet. </VERS>\n\t\t\t<VERS vnumber=\"46\"> You did not anoint my head with oil, but she has anointed my feet with perfumed oil. </VERS>\n\t\t\t<VERS vnumber=\"47\"> Therefore I tell you, her sins, which were many, are forgiven, thus she loved much; but the one who is forgiven little loves little.\" </VERS>\n\t\t\t<VERS vnumber=\"48\"> Then Jesus said to her, \"Your sins are forgiven.\"</VERS>\n\t\t\t<VERS vnumber=\"49\"> But those who were at the table with him began to say among themselves, \"Who is this, who even forgives sins?\" </VERS>\n\t\t\t<VERS vnumber=\"50\"> He said to the woman, \"Your faith has saved you; go in peace.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"8\">\n\t\t\t<VERS vnumber=\"1\"> Some time afterward he went on through towns and villages, preaching and proclaiming the good news of the kingdom of God. The twelve were with him, </VERS>\n\t\t\t<VERS vnumber=\"2\"> and also some women who had been healed of evil spirits and disabilities: Mary (called Magdalene), from whom seven demons had gone out, </VERS>\n\t\t\t<VERS vnumber=\"3\"> and Joanna the wife of Cuza (Herod's household manager), Susanna, and many others who provided for them out of their own resources.</VERS>\n\t\t\t<VERS vnumber=\"4\"> While a large crowd was gathering and people were coming to Jesus from one town after another, he spoke to them in a parable: </VERS>\n\t\t\t<VERS vnumber=\"5\"> \"A sower went out to sow his seed. And as he sowed, some fell along the path and was trampled on, and the wild birds devoured it.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Other seed fell on rock, and when it came up, it withered because it had no moisture. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Other seed fell among the thorns, and they grew up with it and choked it. </VERS>\n\t\t\t<VERS vnumber=\"8\"> But other seed fell on good soil and grew, and it produced a hundred times as much grain.\" As he said this, he called out, \"The one who has ears to hear had better listen!\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> Then his disciples asked him what this parable meant.</VERS>\n\t\t\t<VERS vnumber=\"10\"> He said, \"You have been given the opportunity to know the secrets of the kingdom of God, but for others they are in parables, so that although they see they may not see, and although they hear they may not understand.</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"Now the parable means this: The seed is the word of God. </VERS>\n\t\t\t<VERS vnumber=\"12\"> Those along the path are the ones who have heard; then the devil comes and takes away the word from their hearts, so that they may not believe and be saved. </VERS>\n\t\t\t<VERS vnumber=\"13\"> Those on the rock are the ones who receive the word with joy when they hear it, but they have no root. They believe for a while, but in a time of testing fall away.</VERS>\n\t\t\t<VERS vnumber=\"14\"> As for the seed that fell among thorns, these are the ones who hear, but as they go on their way they are choked by the worries and riches and pleasures of life, and their fruit does not mature.</VERS>\n\t\t\t<VERS vnumber=\"15\"> But as for the seed that landed on good soil, these are the ones who, after hearing the word, cling to it with an honest and good heart, and bear fruit with steadfast endurance.</VERS>\n\t\t\t<VERS vnumber=\"16\"> \"No one lights a lamp and then covers it with a jar or puts it under a bed, but puts it on a lampstand so that those who come in can see the light.</VERS>\n\t\t\t<VERS vnumber=\"17\"> For nothing is hidden that will not be revealed, and nothing concealed that will not be made known and brought to light. </VERS>\n\t\t\t<VERS vnumber=\"18\"> So listen carefully, for whoever has will be given more, but whoever does not have, even what he thinks he has will be taken from him.\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> Now Jesus' mother and his brothers came to him, but they could not get near him because of the crowd. </VERS>\n\t\t\t<VERS vnumber=\"20\"> So he was told, \"Your mother and your brothers are standing outside, wanting to see you.\" </VERS>\n\t\t\t<VERS vnumber=\"21\"> But he replied to them, \"My mother and my brothers are those who hear the word of God and do it.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> One day Jesus got into a boat with his disciples and said to them, \"Let's go across to the other side of the lake.\" So they set out, </VERS>\n\t\t\t<VERS vnumber=\"23\"> and as they sailed he fell asleep. Now a violent windstorm came down on the lake, and the boat started filling up with water, and they were in danger. </VERS>\n\t\t\t<VERS vnumber=\"24\"> They came and woke him, saying, \"Master, Master, we are about to die!\" So he got up and rebuked the wind and the raging waves; they died down, and it was calm. </VERS>\n\t\t\t<VERS vnumber=\"25\"> Then he said to them, \"Where is your faith?\" But they were afraid and amazed, saying to one another, \"Who then is this? He commands even the winds and the water, and they obey him!\"</VERS>\n\t\t\t<VERS vnumber=\"26\"> So they sailed over to the region of the Gerasenes, which is opposite Galilee. </VERS>\n\t\t\t<VERS vnumber=\"27\"> As Jesus stepped ashore, a certain man from the town met him who was possessed by demons. For a long time this man had worn no clothes and had not lived in a house, but among the tombs. </VERS>\n\t\t\t<VERS vnumber=\"28\"> When he saw Jesus, he cried out, fell down before him, and shouted with a loud voice, \"Leave me alone, Jesus, Son of the Most High God! I beg you, do not torment me!\" </VERS>\n\t\t\t<VERS vnumber=\"29\"> For Jesus had started commanding the evil spirit to come out of the man. (For it had seized him many times, so he would be bound with chains and shackles and kept under guard. But he would break the restraints and be driven by the demon into deserted places.)</VERS>\n\t\t\t<VERS vnumber=\"30\"> Jesus then asked him, \"What is your name?\" He said, \"Legion,\" because many demons had entered him. </VERS>\n\t\t\t<VERS vnumber=\"31\"> And they began to beg him not to order them to depart into the abyss.</VERS>\n\t\t\t<VERS vnumber=\"32\"> Now a large herd of pigs was feeding there on the hillside, and the demonic spirits begged Jesus to let them go into them. He gave them permission.</VERS>\n\t\t\t<VERS vnumber=\"33\"> So the demons came out of the man and went into the pigs, and the herd of pigs rushed down the steep slope into the lake and drowned. </VERS>\n\t\t\t<VERS vnumber=\"34\"> When the herdsmen saw what had happened, they ran off and spread the news in the town and countryside. </VERS>\n\t\t\t<VERS vnumber=\"35\"> So the people went out to see what had happened, and they came to Jesus. They found the man from whom the demons had gone out, sitting at Jesus' feet, clothed and in his right mind, and they were afraid. </VERS>\n\t\t\t<VERS vnumber=\"36\"> Those who had seen it told them how the man who had been demon-possessed had been healed.</VERS>\n\t\t\t<VERS vnumber=\"37\"> Then all the people of the Gerasenes and the surrounding region asked Jesus to leave them alone, for they were seized with great fear. So he got into the boat and left.</VERS>\n\t\t\t<VERS vnumber=\"38\"> The man from whom the demons had gone out begged to go with him, but Jesus sent him away, saying, </VERS>\n\t\t\t<VERS vnumber=\"39\"> \"Return to your home, and declare what God has done for you.\" So he went away, proclaiming throughout the whole town what Jesus had done for him.</VERS>\n\t\t\t<VERS vnumber=\"40\"> Now when Jesus returned, the crowd welcomed him, because they were all waiting for him. </VERS>\n\t\t\t<VERS vnumber=\"41\"> Then a man named Jairus, who was a ruler of the synagogue, came up. Falling at Jesus' feet, he pleaded with him to come to his house, </VERS>\n\t\t\t<VERS vnumber=\"42\"> because he had an only daughter, about twelve years old, and she was dying. As Jesus was on his way, the crowds pressed around him.</VERS>\n\t\t\t<VERS vnumber=\"43\"> Now a woman was there who had been suffering from a hemorrhage for twelve years but could not be healed by anyone. </VERS>\n\t\t\t<VERS vnumber=\"44\"> She came up behind Jesus and touched the edge of his cloak, and at once the bleeding stopped. </VERS>\n\t\t\t<VERS vnumber=\"45\"> Then Jesus asked, \"Who was it who touched me?\" When they all denied it, Peter said, \"Master, the crowds are surrounding you and pressing against you!\" </VERS>\n\t\t\t<VERS vnumber=\"46\"> But Jesus said, \"Someone touched me, for I know that power has gone out from me.\" </VERS>\n\t\t\t<VERS vnumber=\"47\"> When the woman saw that she could not escape notice, she came trembling and fell down before him. In the presence of all the people, she explained why she had touched him and how she had been immediately healed. </VERS>\n\t\t\t<VERS vnumber=\"48\"> Then he said to her, \"Daughter, your faith has made you well. Go in peace.\"</VERS>\n\t\t\t<VERS vnumber=\"49\"> While he was still speaking, someone from the synagogue ruler's house came and said, \"Your daughter is dead; do not trouble the teacher any longer.\" </VERS>\n\t\t\t<VERS vnumber=\"50\"> But when Jesus heard this, he told him, \"Do not be afraid; just believe, and she will be healed.\"</VERS>\n\t\t\t<VERS vnumber=\"51\"> Now when he came to the house, Jesus did not let anyone go in with him except Peter, John, and James, and the child's father and mother. </VERS>\n\t\t\t<VERS vnumber=\"52\"> Now they were all wailing and mourning for her, but he said, \"Stop your weeping; she is not dead but asleep.\" </VERS>\n\t\t\t<VERS vnumber=\"53\"> And they began making fun of him, because they knew that she was dead.</VERS>\n\t\t\t<VERS vnumber=\"54\"> But Jesus gently took her by the hand and said, \"Child, get up.\" </VERS>\n\t\t\t<VERS vnumber=\"55\"> Her spirit returned, and she got up immediately. Then he told them to give her something to eat. </VERS>\n\t\t\t<VERS vnumber=\"56\"> Her parents were astonished, but he ordered them to tell no one what had happened.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"9\">\n\t\t\t<VERS vnumber=\"1\"> After Jesus called the twelve together, he gave them power and authority over all demons and to cure diseases, </VERS>\n\t\t\t<VERS vnumber=\"2\"> and he sent them out to proclaim the kingdom of God and to heal the sick.</VERS>\n\t\t\t<VERS vnumber=\"3\"> He said to them, \"Take nothing for your journey, no staff, no bag, no bread, no money, and do not take an extra tunic.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Whatever house you enter, stay there until you leave the area.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Wherever they do not receive you, as you leave that town, shake the dust off your feet as a testimony against them.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> Then they departed and went throughout the villages, proclaiming the good news and healing people everywhere.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Now Herod the tetrarch heard about everything that was happening, and he was thoroughly perplexed, because some people were saying that John had been raised from the dead, </VERS>\n\t\t\t<VERS vnumber=\"8\"> while others were saying that Elijah had appeared, and still others that one of the prophets of long ago had risen.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Herod said, \"I had John beheaded, but who is this about whom I hear such things?\" So Herod wanted to learn about Jesus.</VERS>\n\t\t\t<VERS vnumber=\"10\"> When the apostles returned, they told Jesus everything they had done. Then he took them with him and they withdrew privately to a town called Bethsaida.</VERS>\n\t\t\t<VERS vnumber=\"11\"> But when the crowds found out, they followed him. He welcomed them, spoke to them about the kingdom of God, and cured those who needed healing.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Now the day began to draw to a close, so the twelve came and said to Jesus, \"Send the crowd away, so they can go into the surrounding villages and countryside and find lodging and food, because we are in an isolated place.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> But he said to them, \"You give them something to eat.\" They replied, \"We have no more than five loaves and two fish, unless we go and buy food for all these people.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> (Now about five thousand men were there.) Then he said to his disciples, \"Have them sit down in groups of about fifty each.\" </VERS>\n\t\t\t<VERS vnumber=\"15\"> So they did as Jesus directed, and the people all sat down.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Then he took the five loaves and the two fish, and looking up to heaven he gave thanks and broke them. He gave them to the disciples to set before the crowd. </VERS>\n\t\t\t<VERS vnumber=\"17\"> They all ate and were satisfied, and what was left over was picked up, twelve baskets of broken pieces.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Once when Jesus was praying by himself, and his disciples were nearby, he asked them, \"Who do the crowds say that I am?\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> They answered, \"John the Baptist; others say Elijah; and still others that one of the prophets of long ago has risen.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> Then he said to them, \"But who do you say that I am?\" Peter answered, \"The Christ of God.\" </VERS>\n\t\t\t<VERS vnumber=\"21\"> But he forcefully commanded them not to tell this to anyone,</VERS>\n\t\t\t<VERS vnumber=\"22\"> saying, \"The Son of Man must suffer many things and be rejected by the elders, chief priests, and experts in the law, and be killed, and on the third day be raised.\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> Then he said to them all, \"If anyone wants to become my follower, he must deny himself, take up his cross daily, and follow me. </VERS>\n\t\t\t<VERS vnumber=\"24\"> For whoever wants to save his life will lose it, but whoever loses his life for my sake will save it. </VERS>\n\t\t\t<VERS vnumber=\"25\"> For what does it benefit a person if he gains the whole world but loses or forfeits himself? </VERS>\n\t\t\t<VERS vnumber=\"26\"> For whoever is ashamed of me and my words, the Son of Man will be ashamed of that person when he comes in his glory and in the glory of the Father and of the holy angels. </VERS>\n\t\t\t<VERS vnumber=\"27\"> But I tell you most certainly, there are some standing here who will not experience death before they see the kingdom of God.\"</VERS>\n\t\t\t<VERS vnumber=\"28\"> Now about eight days after these sayings, Jesus took with him Peter, John, and James, and went up the mountain to pray. </VERS>\n\t\t\t<VERS vnumber=\"29\"> As he was praying, the appearance of his face was transformed, and his clothes became very bright, a brilliant white.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Then two men, Moses and Elijah, began talking with him.</VERS>\n\t\t\t<VERS vnumber=\"31\"> They appeared in glorious splendor and spoke about his departure that he was about to carry out at Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"32\"> Now Peter and those with him were quite sleepy, but as they became fully awake, they saw his glory and the two men standing with him. </VERS>\n\t\t\t<VERS vnumber=\"33\"> Then as the men were starting to leave, Peter said to Jesus, \"Master, it is good for us to be here. Let us make three shelters, one for you and one for Moses and one for Elijah\", not knowing what he was saying.</VERS>\n\t\t\t<VERS vnumber=\"34\"> As he was saying this, a cloud came and overshadowed them, and they were afraid as they entered the cloud. </VERS>\n\t\t\t<VERS vnumber=\"35\"> Then a voice came from the cloud, saying, \"This is my Son, my Chosen One. Listen to him!\"</VERS>\n\t\t\t<VERS vnumber=\"36\"> After the voice had spoken, Jesus was found alone. So they kept silent and told no one at that time anything of what they had seen.</VERS>\n\t\t\t<VERS vnumber=\"37\"> Now on the next day, when they had come down from the mountain, a large crowd met him. </VERS>\n\t\t\t<VERS vnumber=\"38\"> Then a man from the crowd cried out, \"Teacher, I beg you to look at my son, he is my only child!</VERS>\n\t\t\t<VERS vnumber=\"39\"> A spirit seizes him, and he suddenly screams; it throws him into convulsions and causes him to foam at the mouth. It hardly ever leaves him alone, torturing him severely. </VERS>\n\t\t\t<VERS vnumber=\"40\"> I begged your disciples to cast it out, but they could not do so.\"</VERS>\n\t\t\t<VERS vnumber=\"41\"> Jesus answered, \"You unbelieving and perverse generation! How much longer must I be with you and endure you? Bring your son here.\" </VERS>\n\t\t\t<VERS vnumber=\"42\"> As the boy was approaching, the demon threw him to the ground and shook him with convulsions. But Jesus rebuked the unclean spirit, healed the boy, and gave him back to his father. </VERS>\n\t\t\t<VERS vnumber=\"43\"> Then they were all astonished at the mighty power of God. But while the entire crowd was amazed at everything Jesus was doing, he said to his disciples, </VERS>\n\t\t\t<VERS vnumber=\"44\"> \"Take these words to heart, for the Son of Man is going to be betrayed into the hands of men.\"</VERS>\n\t\t\t<VERS vnumber=\"45\"> But they did not understand this statement; its meaning had been concealed from them, so that they could not grasp it. Yet they were afraid to ask him about this statement.</VERS>\n\t\t\t<VERS vnumber=\"46\"> Now an argument started among the disciples as to which of them might be the greatest. </VERS>\n\t\t\t<VERS vnumber=\"47\"> But when Jesus discerned their innermost thoughts, he took a child, had him stand by his side, </VERS>\n\t\t\t<VERS vnumber=\"48\"> and said to them, \"Whoever welcomes this child in my name welcomes me, and whoever welcomes me welcomes the one who sent me, for the one who is least among you all is the one who is great.\"</VERS>\n\t\t\t<VERS vnumber=\"49\"> John answered, \"Master, we saw someone casting out demons in your name, and we tried to stop him because he is not a disciple along with us.\" </VERS>\n\t\t\t<VERS vnumber=\"50\"> But Jesus said to him, \"Do not stop him, for whoever is not against you is for you.\"</VERS>\n\t\t\t<VERS vnumber=\"51\"> Now when the days drew near for him to be taken up, Jesus set out resolutely to go to Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"52\"> He sent messengers on ahead of him. As they went along, they entered a Samaritan village to make things ready in advance for him, </VERS>\n\t\t\t<VERS vnumber=\"53\"> but the villagers refused to welcome him, because he was determined to go to Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"54\"> Now when his disciples James and John saw this, they said, \"Lord, do you want us to call fire to come down from heaven and consume them?\"</VERS>\n\t\t\t<VERS vnumber=\"55\"> But Jesus turned and rebuked them,</VERS>\n\t\t\t<VERS vnumber=\"56\"> and they went on to another village.</VERS>\n\t\t\t<VERS vnumber=\"57\"> As they were walking along the road, someone said to him, \"I will follow you wherever you go.\"</VERS>\n\t\t\t<VERS vnumber=\"58\"> Jesus said to him, \"Foxes have dens and the birds in the sky have nests, but the Son of Man has no place to lay his head.\"</VERS>\n\t\t\t<VERS vnumber=\"59\"> Jesus said to another, \"Follow me.\" But he replied, \"Lord, first let me go and bury my father.\" </VERS>\n\t\t\t<VERS vnumber=\"60\"> But Jesus said to him, \"Let the dead bury their own dead, but as for you, go and proclaim the kingdom of God.\"</VERS>\n\t\t\t<VERS vnumber=\"61\"> Yet another said, \"I will follow you, Lord, but first let me say goodbye to my family.\"</VERS>\n\t\t\t<VERS vnumber=\"62\"> Jesus said to him, \"No one who puts his hand to the plow and looks back is fit for the kingdom of God.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"10\">\n\t\t\t<VERS vnumber=\"1\"> After this the Lord appointed seventy-two others and sent them on ahead of him two by two into every town and place where he himself was about to go. </VERS>\n\t\t\t<VERS vnumber=\"2\"> He said to them, \"The harvest is plentiful, but the workers are few. Therefore ask the Lord of the harvest to send out workers into his harvest. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Go! I am sending you out like lambs surrounded by wolves.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Do not carry a money bag, a traveler's bag, or sandals, and greet no one on the road.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Whenever you enter a house, first say, 'May peace be on this house!' </VERS>\n\t\t\t<VERS vnumber=\"6\"> And if a peace-loving person is there, your peace will remain on him, but if not, it will return to you.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Stay in that same house, eating and drinking what they give you, for the worker deserves his pay. Do not move around from house to house. </VERS>\n\t\t\t<VERS vnumber=\"8\"> Whenever you enter a town and the people welcome you, eat what is set before you. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Heal the sick in that town and say to them, 'The kingdom of God has come upon you!' </VERS>\n\t\t\t<VERS vnumber=\"10\"> But whenever you enter a town and the people do not welcome you, go into its streets and say, </VERS>\n\t\t\t<VERS vnumber=\"11\"> 'Even the dust of your town that clings to our feet we wipe off against you. Nevertheless know this: The kingdom of God has come.'</VERS>\n\t\t\t<VERS vnumber=\"12\"> I tell you, it will be more bearable on that day for Sodom than for that town!</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"Woe to you, Chorazin! Woe to you, Bethsaida! For if the miracles done in you had been done in Tyre and Sidon, they would have repented long ago, sitting in sackcloth and ashes. </VERS>\n\t\t\t<VERS vnumber=\"14\"> But it will be more bearable for Tyre and Sidon in the judgment than for you!</VERS>\n\t\t\t<VERS vnumber=\"15\"> And you, Capernaum, will you be exalted to heaven? No, you will be thrown down to Hades!</VERS>\n\t\t\t<VERS vnumber=\"16\"> \"The one who listens to you listens to me, and the one who rejects you rejects me, and the one who rejects me rejects the one who sent me.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> Then the seventy-two returned with joy, saying, \"Lord, even the demons submit to us in your name!\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> So he said to them, \"I saw Satan fall like lightning from heaven. </VERS>\n\t\t\t<VERS vnumber=\"19\"> Look, I have given you authority to tread on snakes and scorpions and on the full force of the enemy, and nothing will hurt you. </VERS>\n\t\t\t<VERS vnumber=\"20\"> Nevertheless, do not rejoice that the spirits submit to you, but rejoice that your names stand written in heaven.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> On that same occasion Jesus rejoiced in the Holy Spirit and said, \"I praise you, Father, Lord of heaven and earth, because you have hidden these things from the wise and intelligent, and revealed them to little children. Yes, Father, for this was your gracious will.</VERS>\n\t\t\t<VERS vnumber=\"22\"> All things have been given to me by my Father. No one knows who the Son is except the Father, or who the Father is except the Son and anyone to whom the Son decides to reveal him.\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> Then Jesus turned to his disciples and said privately, \"Blessed are the eyes that see what you see! </VERS>\n\t\t\t<VERS vnumber=\"24\"> For I tell you that many prophets and kings longed to see what you see but did not see it, and to hear what you hear but did not hear it.\"</VERS>\n\t\t\t<VERS vnumber=\"25\"> Now an expert in religious law stood up to test Jesus, saying, \"Teacher, what must I do to inherit eternal life?\"</VERS>\n\t\t\t<VERS vnumber=\"26\"> He said to him, \"What is written in the law? How do you understand it?\"</VERS>\n\t\t\t<VERS vnumber=\"27\"> The expert answered, \"Love the Lord your God with all your heart, with all your soul, with all your strength, and with all your mind, and love your neighbor as yourself.\"</VERS>\n\t\t\t<VERS vnumber=\"28\"> Jesus said to him, \"You have answered correctly; do this, and you will live.\"</VERS>\n\t\t\t<VERS vnumber=\"29\"> But the expert, wanting to justify himself, said to Jesus, \"And who is my neighbor?\" </VERS>\n\t\t\t<VERS vnumber=\"30\"> Jesus replied, \"A man was going down from Jerusalem to Jericho, and fell into the hands of robbers, who stripped him, beat him up, and went off, leaving him half dead.</VERS>\n\t\t\t<VERS vnumber=\"31\"> Now by chance a priest was going down that road, but when he saw the injured man he passed by on the other side.</VERS>\n\t\t\t<VERS vnumber=\"32\"> So too a Levite, when he came up to the place and saw him, passed by on the other side. </VERS>\n\t\t\t<VERS vnumber=\"33\"> But a Samaritan who was traveling came to where the injured man was, and when he saw him, he felt compassion for him.</VERS>\n\t\t\t<VERS vnumber=\"34\"> He went up to him and bandaged his wounds, pouring oil and wine on them. Then he put him on his own animal, brought him to an inn, and took care of him. </VERS>\n\t\t\t<VERS vnumber=\"35\"> The next day he took out two silver coins and gave them to the innkeeper, saying, 'Take care of him, and whatever else you spend, I will repay you when I come back this way.'</VERS>\n\t\t\t<VERS vnumber=\"36\"> Which of these three do you think became a neighbor to the man who fell into the hands of the robbers?\" </VERS>\n\t\t\t<VERS vnumber=\"37\"> The expert in religious law said, \"The one who showed mercy to him.\" So Jesus said to him, \"Go and do the same.\"</VERS>\n\t\t\t<VERS vnumber=\"38\"> Now as they went on their way, Jesus entered a certain village where a woman named Martha welcomed him as a guest.</VERS>\n\t\t\t<VERS vnumber=\"39\"> She had a sister named Mary, who sat at the Lord's feet and listened to what he said. </VERS>\n\t\t\t<VERS vnumber=\"40\"> But Martha was distracted with all the preparations she had to make, so she came up to him and said, \"Lord, don't you care that my sister has left me to do all the work alone? Tell her to help me.\" </VERS>\n\t\t\t<VERS vnumber=\"41\"> But the Lord answered her, \"Martha, Martha, you are worried and troubled about many things, </VERS>\n\t\t\t<VERS vnumber=\"42\"> but one thing is needed. Mary has chosen the best part; it will not be taken away from her.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"11\">\n\t\t\t<VERS vnumber=\"1\"> Now Jesus was praying in a certain place. When he stopped, one of his disciples said to him, \"Lord, teach us to pray, just as John taught his disciples.\" </VERS>\n\t\t\t<VERS vnumber=\"2\"> So he said to them, \"When you pray, say: Father, may your name be honored; may your kingdom come.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Give us each day our daily bread,</VERS>\n\t\t\t<VERS vnumber=\"4\"> and forgive us our sins, for we also forgive everyone who sins against us. And do not lead us into temptation.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> Then he said to them, \"Suppose one of you has a friend, and you go to him at midnight and say to him, 'Friend, lend me three loaves of bread,</VERS>\n\t\t\t<VERS vnumber=\"6\"> because a friend of mine has stopped here while on a journey, and I have nothing to set before him.' </VERS>\n\t\t\t<VERS vnumber=\"7\"> Then he will reply from inside, 'Do not bother me. The door is already shut, and my children and I are in bed. I cannot get up and give you anything.'</VERS>\n\t\t\t<VERS vnumber=\"8\"> I tell you, even though the man inside will not get up and give him anything because he is his friend, yet because of the first man's sheer persistence he will get up and give him whatever he needs.</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"So I tell you: Ask, and it will be given to you; seek, and you will find; knock, and the door will be opened for you. </VERS>\n\t\t\t<VERS vnumber=\"10\"> For everyone who asks receives, and the one who seeks finds, and to the one who knocks, the door will be opened. </VERS>\n\t\t\t<VERS vnumber=\"11\"> What father among you, if your son asks for a fish, will give him a snake instead of a fish? </VERS>\n\t\t\t<VERS vnumber=\"12\"> Or if he asks for an egg, will give him a scorpion?</VERS>\n\t\t\t<VERS vnumber=\"13\"> If you then, although you are evil, know how to give good gifts to your children, how much more will the heavenly Father give the Holy Spirit to those who ask him!\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> Now he was casting out a demon that was mute. When the demon had gone out, the man who had been mute began to speak, and the crowds were amazed. </VERS>\n\t\t\t<VERS vnumber=\"15\"> But some of them said, \"By the power of Beelzebul, the ruler of demons, he casts out demons.\" </VERS>\n\t\t\t<VERS vnumber=\"16\"> Others, to test him, began asking for a sign from heaven. </VERS>\n\t\t\t<VERS vnumber=\"17\"> But Jesus, realizing their thoughts, said to them, \"Every kingdom divided against itself is destroyed, and a divided household falls.</VERS>\n\t\t\t<VERS vnumber=\"18\"> So if Satan too is divided against himself, how will his kingdom stand? I ask you this because you claim that I cast out demons by Beelzebul.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Now if I cast out demons by Beelzebul, by whom do your sons cast them out? Therefore they will be your judges. </VERS>\n\t\t\t<VERS vnumber=\"20\"> But if I cast out demons by the finger of God, then the kingdom of God has already overtaken you. </VERS>\n\t\t\t<VERS vnumber=\"21\"> When a strong man, fully armed, guards his own palace, his possessions are safe.</VERS>\n\t\t\t<VERS vnumber=\"22\"> But when a stronger man attacks and conquers him, he takes away the first man's armor on which the man relied and divides up his plunder.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Whoever is not with me is against me, and whoever does not gather with me scatters.</VERS>\n\t\t\t<VERS vnumber=\"24\"> \"When an unclean spirit goes out of a person, it passes through waterless places looking for rest but not finding any. Then it says, 'I will return to the home I left.'</VERS>\n\t\t\t<VERS vnumber=\"25\"> When it returns, it finds the house swept clean and put in order.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Then it goes and brings seven other spirits more evil than itself, and they go in and live there, so the last state of that person is worse than the first.\"</VERS>\n\t\t\t<VERS vnumber=\"27\"> As he said these things, a woman in the crowd spoke out to him, \"Blessed is the womb that bore you and the breasts at which you nursed!\"</VERS>\n\t\t\t<VERS vnumber=\"28\"> But he replied, \"Blessed rather are those who hear the word of God and obey it!\"</VERS>\n\t\t\t<VERS vnumber=\"29\"> As the crowds were increasing, Jesus began to say, \"This generation is a wicked generation; it looks for a sign, but no sign will be given to it except the sign of Jonah.</VERS>\n\t\t\t<VERS vnumber=\"30\"> For just as Jonah became a sign to the people of Nineveh, so the Son of Man will be a sign to this generation.</VERS>\n\t\t\t<VERS vnumber=\"31\"> The queen of the South will rise up at the judgment with the people of this generation and condemn them, because she came from the ends of the earth to hear the wisdom of Solomon, and now, something greater than Solomon is here!</VERS>\n\t\t\t<VERS vnumber=\"32\"> The people of Nineveh will stand up at the judgment with this generation and condemn it, because they repented when Jonah preached to them, and now, something greater than Jonah is here!</VERS>\n\t\t\t<VERS vnumber=\"33\"> \"No one after lighting a lamp puts it in a hidden place or under a basket, but on a lampstand, so that those who come in can see the light. </VERS>\n\t\t\t<VERS vnumber=\"34\"> Your eye is the lamp of your body. When your eye is healthy, your whole body is full of light, but when it is diseased, your body is full of darkness. </VERS>\n\t\t\t<VERS vnumber=\"35\"> Therefore see to it that the light in you is not darkness. </VERS>\n\t\t\t<VERS vnumber=\"36\"> If then your whole body is full of light, with no part in the dark, it will be as full of light as when the light of a lamp shines on you.\"</VERS>\n\t\t\t<VERS vnumber=\"37\"> As he spoke, a Pharisee invited Jesus to have a meal with him, so he went in and took his place at the table.</VERS>\n\t\t\t<VERS vnumber=\"38\"> The Pharisee was astonished when he saw that Jesus did not first wash his hands before the meal. </VERS>\n\t\t\t<VERS vnumber=\"39\"> But the Lord said to him, \"Now you Pharisees clean the outside of the cup and the plate, but inside you are full of greed and wickedness.</VERS>\n\t\t\t<VERS vnumber=\"40\"> You fools! Didn't the one who made the outside make the inside as well?</VERS>\n\t\t\t<VERS vnumber=\"41\"> But give from your heart to those in need, and then everything will be clean for you.</VERS>\n\t\t\t<VERS vnumber=\"42\"> \"But woe to you Pharisees! You give a tenth of your mint, rue, and every herb, yet you neglect justice and love for God! But you should have done these things without neglecting the others.</VERS>\n\t\t\t<VERS vnumber=\"43\"> Woe to you Pharisees! You love the best seats in the synagogues and elaborate greetings in the marketplaces! </VERS>\n\t\t\t<VERS vnumber=\"44\"> Woe to you! You are like unmarked graves, and people walk over them without realizing it!\"</VERS>\n\t\t\t<VERS vnumber=\"45\"> One of the experts in religious law answered him, \"Teacher, when you say these things you insult us too.\"</VERS>\n\t\t\t<VERS vnumber=\"46\"> But Jesus replied, \"Woe to you experts in religious law as well! You load people down with burdens difficult to bear, yet you yourselves refuse to touch the burdens with even one of your fingers! </VERS>\n\t\t\t<VERS vnumber=\"47\"> Woe to you! You build the tombs of the prophets whom your ancestors killed. </VERS>\n\t\t\t<VERS vnumber=\"48\"> So you testify that you approve of the deeds of your ancestors, because they killed the prophets and you build their tombs!</VERS>\n\t\t\t<VERS vnumber=\"49\"> For this reason also the wisdom of God said, 'I will send them prophets and apostles, some of whom they will kill and persecute,' </VERS>\n\t\t\t<VERS vnumber=\"50\"> so that this generation may be held accountable for the blood of all the prophets that has been shed since the beginning of the world,</VERS>\n\t\t\t<VERS vnumber=\"51\"> from the blood of Abel to the blood of Zechariah, who was killed between the altar and the sanctuary. Yes, I tell you, it will be charged against this generation. </VERS>\n\t\t\t<VERS vnumber=\"52\"> Woe to you experts in religious law! You have taken away the key to knowledge! You did not go in yourselves, and you hindered those who were going in.\"</VERS>\n\t\t\t<VERS vnumber=\"53\"> When he went out from there, the experts in the law and the Pharisees began to oppose him bitterly, and to ask him hostile questions about many things,</VERS>\n\t\t\t<VERS vnumber=\"54\"> plotting against him, to catch him in something he might say.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"12\">\n\t\t\t<VERS vnumber=\"1\"> Meanwhile, when many thousands of the crowd had gathered so that they were trampling on one another, Jesus began to speak first to his disciples, \"Be on your guard against the yeast of the Pharisees, which is hypocrisy.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Nothing is hidden that will not be revealed, and nothing is secret that will not be made known. </VERS>\n\t\t\t<VERS vnumber=\"3\"> So then whatever you have said in the dark will be heard in the light, and what you have whispered in private rooms will be proclaimed from the housetops.</VERS>\n\t\t\t<VERS vnumber=\"4\"> \"I tell you, my friends, do not be afraid of those who kill the body, and after that have nothing more they can do. </VERS>\n\t\t\t<VERS vnumber=\"5\"> But I will warn you whom you should fear: Fear the one who, after the killing, has authority to throw you into hell. Yes, I tell you, fear him! </VERS>\n\t\t\t<VERS vnumber=\"6\"> Aren't five sparrows sold for two pennies? Yet not one of them is forgotten before God. </VERS>\n\t\t\t<VERS vnumber=\"7\"> In fact, even the hairs on your head are all numbered. Do not be afraid; you are more valuable than many sparrows.</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"I tell you, whoever acknowledges me before men, the Son of Man will also acknowledge before God's angels. </VERS>\n\t\t\t<VERS vnumber=\"9\"> But the one who denies me before men will be denied before God's angels.</VERS>\n\t\t\t<VERS vnumber=\"10\"> And everyone who speaks a word against the Son of Man will be forgiven, but the person who blasphemes against the Holy Spirit will not be forgiven.</VERS>\n\t\t\t<VERS vnumber=\"11\"> But when they bring you before the synagogues, the rulers, and the authorities, do not worry about how you should make your defense or what you should say,</VERS>\n\t\t\t<VERS vnumber=\"12\"> for the Holy Spirit will teach you at that moment what you must say.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> Then someone from the crowd said to him, \"Teacher, tell my brother to divide the inheritance with me.\" </VERS>\n\t\t\t<VERS vnumber=\"14\"> But Jesus said to him, \"Man, who made me a judge or arbitrator between you two?\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> Then he said to them, \"Watch out and guard yourself from all types of greed, because one's life does not consist in the abundance of his possessions.\" </VERS>\n\t\t\t<VERS vnumber=\"16\"> He then told them a parable: \"The land of a certain rich man produced an abundant crop, </VERS>\n\t\t\t<VERS vnumber=\"17\"> so he thought to himself, 'What should I do, for I have nowhere to store my crops?'</VERS>\n\t\t\t<VERS vnumber=\"18\"> Then he said, 'I will do this: I will tear down my barns and build bigger ones, and there I will store all my grain and my goods. </VERS>\n\t\t\t<VERS vnumber=\"19\"> And I will say to myself, \"You have plenty of goods stored up for many years; relax, eat, drink, celebrate!\"' </VERS>\n\t\t\t<VERS vnumber=\"20\"> But God said to him, 'You fool! This very night your life will be demanded back from you, but who will get what you have prepared for yourself?'</VERS>\n\t\t\t<VERS vnumber=\"21\"> So it is with the one who stores up riches for himself, but is not rich toward God.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> Then Jesus said to his disciples, \"Therefore I tell you, do not worry about your life, what you will eat, or about your body, what you will wear. </VERS>\n\t\t\t<VERS vnumber=\"23\"> For there is more to life than food, and more to the body than clothing.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Consider the ravens: They do not sow or reap, they have no storeroom or barn, yet God feeds them. How much more valuable are you than the birds!</VERS>\n\t\t\t<VERS vnumber=\"25\"> And which of you by worrying can add an hour to his life?</VERS>\n\t\t\t<VERS vnumber=\"26\"> So if you cannot do such a very little thing as this, why do you worry about the rest? </VERS>\n\t\t\t<VERS vnumber=\"27\"> Consider how the flowers grow; they do not work or spin. Yet I tell you, not even Solomon in all his glory was clothed like one of these! </VERS>\n\t\t\t<VERS vnumber=\"28\"> And if this is how God clothes the wild grass, which is here today and tomorrow is tossed into the fire to heat the oven, how much more will he clothe you, you people of little faith! </VERS>\n\t\t\t<VERS vnumber=\"29\"> So do not be overly concerned about what you will eat and what you will drink, and do not worry about such things.</VERS>\n\t\t\t<VERS vnumber=\"30\"> For all the nations of the world pursue these things, and your Father knows that you need them. </VERS>\n\t\t\t<VERS vnumber=\"31\"> Instead, pursue his kingdom, and these things will be given to you as well.</VERS>\n\t\t\t<VERS vnumber=\"32\"> \"Do not be afraid, little flock, for your Father is well pleased to give you the kingdom. </VERS>\n\t\t\t<VERS vnumber=\"33\"> Sell your possessions and give to the poor. Provide yourselves purses that do not wear out, a treasure in heaven that never decreases, where no thief approaches and no moth destroys.</VERS>\n\t\t\t<VERS vnumber=\"34\"> For where your treasure is, there your heart will be also.</VERS>\n\t\t\t<VERS vnumber=\"35\"> \"Get dressed for service and keep your lamps burning;</VERS>\n\t\t\t<VERS vnumber=\"36\"> be like people waiting for their master to come back from the wedding celebration, so that when he comes and knocks they can immediately open the door for him. </VERS>\n\t\t\t<VERS vnumber=\"37\"> Blessed are those slaves whom their master finds alert when he returns! I tell you the truth, he will dress himself to serve, have them take their place at the table, and will come and wait on them!</VERS>\n\t\t\t<VERS vnumber=\"38\"> Even if he comes in the second or third watch of the night and finds them alert, blessed are those slaves!</VERS>\n\t\t\t<VERS vnumber=\"39\"> But understand this: If the owner of the house had known at what hour the thief was coming, he would not have let his house be broken into. </VERS>\n\t\t\t<VERS vnumber=\"40\"> You also must be ready, because the Son of Man will come at an hour when you do not expect him.\"</VERS>\n\t\t\t<VERS vnumber=\"41\"> Then Peter said, \"Lord, are you telling this parable for us or for everyone?\"</VERS>\n\t\t\t<VERS vnumber=\"42\"> The Lord replied, \"Who then is the faithful and wise manager, whom the master puts in charge of his household servants, to give them their allowance of food at the proper time? </VERS>\n\t\t\t<VERS vnumber=\"43\"> Blessed is that slave whom his master finds at work when he returns. </VERS>\n\t\t\t<VERS vnumber=\"44\"> I tell you the truth, the master will put him in charge of all his possessions. </VERS>\n\t\t\t<VERS vnumber=\"45\"> But if that slave should say to himself, 'My master is delayed in returning,' and he begins to beat the other slaves, both men and women, and to eat, drink, and get drunk, </VERS>\n\t\t\t<VERS vnumber=\"46\"> then the master of that slave will come on a day when he does not expect him and at an hour he does not foresee, and will cut him in two, and assign him a place with the unfaithful.</VERS>\n\t\t\t<VERS vnumber=\"47\"> That servant who knew his master's will but did not get ready or do what his master asked will receive a severe beating. </VERS>\n\t\t\t<VERS vnumber=\"48\"> But the one who did not know his master's will and did things worthy of punishment will receive a light beating. From everyone who has been given much, much will be required, and from the one who has been entrusted with much, even more will be asked.</VERS>\n\t\t\t<VERS vnumber=\"49\"> \"I have come to bring fire on the earth, and how I wish it were already kindled!</VERS>\n\t\t\t<VERS vnumber=\"50\"> I have a baptism to undergo, and how distressed I am until it is finished! </VERS>\n\t\t\t<VERS vnumber=\"51\"> Do you think I have come to bring peace on earth? No, I tell you, but rather division!</VERS>\n\t\t\t<VERS vnumber=\"52\"> For from now on there will be five in one household divided, three against two and two against three. </VERS>\n\t\t\t<VERS vnumber=\"53\"> They will be divided, father against son and son against father, mother against daughter and daughter against mother, mother-in-law against her daughter-in-law and daughter-in-law against mother-in-law.\"</VERS>\n\t\t\t<VERS vnumber=\"54\"> Jesus also said to the crowds, \"When you see a cloud rising in the west, you say at once, 'A rainstorm is coming,' and it does. </VERS>\n\t\t\t<VERS vnumber=\"55\"> And when you see the south wind blowing, you say, 'There will be scorching heat,' and there is. </VERS>\n\t\t\t<VERS vnumber=\"56\"> You hypocrites! You know how to interpret the appearance of the earth and the sky, but how can you not know how to interpret the present time?</VERS>\n\t\t\t<VERS vnumber=\"57\"> \"And why don't you judge for yourselves what is right? </VERS>\n\t\t\t<VERS vnumber=\"58\"> As you are going with your accuser before the magistrate, make an effort to settle with him on the way, so that he will not drag you before the judge, and the judge hand you over to the officer, and the officer throw you into prison. </VERS>\n\t\t\t<VERS vnumber=\"59\"> I tell you, you will never get out of there until you have paid the very last cent!\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"13\">\n\t\t\t<VERS vnumber=\"1\"> Now there were some present on that occasion who told him about the Galileans whose blood Pilate had mixed with their sacrifices.</VERS>\n\t\t\t<VERS vnumber=\"2\"> He answered them, \"Do you think these Galileans were worse sinners than all the other Galileans, because they suffered these things? </VERS>\n\t\t\t<VERS vnumber=\"3\"> No, I tell you! But unless you repent, you will all perish as well!</VERS>\n\t\t\t<VERS vnumber=\"4\"> Or those eighteen who were killed when the tower in Siloam fell on them, do you think they were worse offenders than all the others who live in Jerusalem?</VERS>\n\t\t\t<VERS vnumber=\"5\"> No, I tell you! But unless you repent you will all perish as well!\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> Then Jesus told this parable: \"A man had a fig tree planted in his vineyard, and he came looking for fruit on it and found none. </VERS>\n\t\t\t<VERS vnumber=\"7\"> So he said to the worker who tended the vineyard, 'For three years now, I have come looking for fruit on this fig tree, and each time I inspect it I find none. Cut it down! Why should it continue to deplete the soil?' </VERS>\n\t\t\t<VERS vnumber=\"8\"> But the worker answered him, 'Sir, leave it alone this year too, until I dig around it and put fertilizer on it. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Then if it bears fruit next year, very well, but if not, you can cut it down.'\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> Now he was teaching in one of the synagogues on the Sabbath, </VERS>\n\t\t\t<VERS vnumber=\"11\"> and a woman was there who had been disabled by a spirit for eighteen years. She was bent over and could not straighten herself up completely.</VERS>\n\t\t\t<VERS vnumber=\"12\"> When Jesus saw her, he called her to him and said, \"Woman, you are freed from your infirmity.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> Then he placed his hands on her, and immediately she straightened up and praised God. </VERS>\n\t\t\t<VERS vnumber=\"14\"> But the president of the synagogue, indignant because Jesus had healed on the Sabbath, said to the crowd, \"There are six days on which work should be done! So come and be healed on those days, and not on the Sabbath day.\" </VERS>\n\t\t\t<VERS vnumber=\"15\"> Then the Lord answered him, \"You hypocrites! Does not each of you on the Sabbath untie his ox or his donkey from its stall, and lead it to water?</VERS>\n\t\t\t<VERS vnumber=\"16\"> Then shouldn't this woman, a daughter of Abraham whom Satan bound for eighteen long years, be released from this imprisonment on the Sabbath day?\" </VERS>\n\t\t\t<VERS vnumber=\"17\"> When he said this all his adversaries were humiliated, but the entire crowd was rejoicing at all the wonderful things he was doing.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Thus Jesus asked, \"What is the kingdom of God like? To what should I compare it? </VERS>\n\t\t\t<VERS vnumber=\"19\"> It is like a mustard seed that a man took and sowed in his garden. It grew and became a tree, and the wild birds nested in its branches.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> Again he said, \"To what should I compare the kingdom of God?</VERS>\n\t\t\t<VERS vnumber=\"21\"> It is like yeast that a woman took and mixed with three measures of flour until all the dough had risen.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> Then Jesus traveled throughout towns and villages, teaching and making his way toward Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Someone asked him, \"Lord, will only a few be saved?\" So he said to them, </VERS>\n\t\t\t<VERS vnumber=\"24\"> \"Exert every effort to enter through the narrow door, because many, I tell you, will try to enter and will not be able to. </VERS>\n\t\t\t<VERS vnumber=\"25\"> Once the head of the house gets up and shuts the door, then you will stand outside and start to knock on the door and beg him, 'Lord, let us in!' But he will answer you, 'I don't know where you come from.'</VERS>\n\t\t\t<VERS vnumber=\"26\"> Then you will begin to say, 'We ate and drank in your presence, and you taught in our streets.'</VERS>\n\t\t\t<VERS vnumber=\"27\"> But he will reply, 'I don't know where you come from! Go away from me, all you evildoers!'</VERS>\n\t\t\t<VERS vnumber=\"28\"> There will be weeping and gnashing of teeth when you see Abraham, Isaac, Jacob, and all the prophets in the kingdom of God but you yourselves thrown out.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Then people will come from east and west, and from north and south, and take their places at the banquet table in the kingdom of God.</VERS>\n\t\t\t<VERS vnumber=\"30\"> But indeed, some are last who will be first, and some are first who will be last.\"</VERS>\n\t\t\t<VERS vnumber=\"31\"> At that time, some Pharisees came up and said to Jesus, \"Get away from here, because Herod wants to kill you.\" </VERS>\n\t\t\t<VERS vnumber=\"32\"> But he said to them, \"Go and tell that fox, 'Look, I am casting out demons and performing healings today and tomorrow, and on the third day I will complete my work.</VERS>\n\t\t\t<VERS vnumber=\"33\"> Nevertheless I must go on my way today and tomorrow and the next day, because it is impossible that a prophet should be killed outside Jerusalem.'</VERS>\n\t\t\t<VERS vnumber=\"34\"> O Jerusalem, Jerusalem, you who kill the prophets and stone those who are sent to you! How often I have longed to gather your children together as a hen gathers her chicks under her wings, but you would have none of it!</VERS>\n\t\t\t<VERS vnumber=\"35\"> Look, your house is forsaken! And I tell you, you will not see me until you say, 'Blessed is the one who comes in the name of the Lord!'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"14\">\n\t\t\t<VERS vnumber=\"1\"> Now one Sabbath when Jesus went to dine at the house of a leader of the Pharisees, they were watching him closely. </VERS>\n\t\t\t<VERS vnumber=\"2\"> There right in front of him was a man suffering from dropsy.</VERS>\n\t\t\t<VERS vnumber=\"3\"> So Jesus asked the experts in religious law and the Pharisees, \"Is it lawful to heal on the Sabbath or not?\" </VERS>\n\t\t\t<VERS vnumber=\"4\"> But they remained silent. So Jesus took hold of the man, healed him, and sent him away.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Then he said to them, \"Which of you, if you have a son or an ox that has fallen into a well on a Sabbath day, will not immediately pull him out?\" </VERS>\n\t\t\t<VERS vnumber=\"6\"> But they could not reply to this.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Then when Jesus noticed how the guests chose the places of honor, he told them a parable. He said to them,</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"When you are invited by someone to a wedding feast, do not take the place of honor, because a person more distinguished than you may have been invited by your host.</VERS>\n\t\t\t<VERS vnumber=\"9\"> So the host who invited both of you will come and say to you, 'Give this man your place.' Then, ashamed, you will begin to move to the least important place. </VERS>\n\t\t\t<VERS vnumber=\"10\"> But when you are invited, go and take the least important place, so that when your host approaches he will say to you, 'Friend, move up here to a better place.' Then you will be honored in the presence of all who share the meal with you. </VERS>\n\t\t\t<VERS vnumber=\"11\"> For everyone who exalts himself will be humbled, but the one who humbles himself will be exalted.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> He said also to the man who had invited him, \"When you host a dinner or a banquet, don't invite your friends or your brothers or your relatives or rich neighbors so you can be invited by them in return and get repaid. </VERS>\n\t\t\t<VERS vnumber=\"13\"> But when you host an elaborate meal, invite the poor, the crippled, the lame, and the blind.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Then you will be blessed, because they cannot repay you, for you will be repaid at the resurrection of the righteous.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> When one of those at the meal with Jesus heard this, he said to him, \"Blessed is everyone who will feast in the kingdom of God!\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> But Jesus said to him, \"A man once gave a great banquet and invited many guests.</VERS>\n\t\t\t<VERS vnumber=\"17\"> At the time for the banquet he sent his slave to tell those who had been invited, 'Come, because everything is now ready.' </VERS>\n\t\t\t<VERS vnumber=\"18\"> But one after another they all began to make excuses. The first said to him, 'I have bought a field, and I must go out and see it. Please excuse me.'</VERS>\n\t\t\t<VERS vnumber=\"19\"> Another said, 'I have bought five yoke of oxen, and I am going out to examine them. Please excuse me.' </VERS>\n\t\t\t<VERS vnumber=\"20\"> Another said, 'I just got married, and I cannot come.'</VERS>\n\t\t\t<VERS vnumber=\"21\"> So the slave came back and reported this to his master. Then the master of the household was furious and said to his slave, 'Go out quickly to the streets and alleys of the city, and bring in the poor, the crippled, the blind, and the lame.' </VERS>\n\t\t\t<VERS vnumber=\"22\"> Then the slave said, 'Sir, what you instructed has been done, and there is still room.'</VERS>\n\t\t\t<VERS vnumber=\"23\"> So the master said to his slave, 'Go out to the highways and country roads and urge people to come in, so that my house will be filled.</VERS>\n\t\t\t<VERS vnumber=\"24\"> For I tell you, not one of those individuals who were invited will taste my banquet!'\"</VERS>\n\t\t\t<VERS vnumber=\"25\"> Now large crowds were accompanying Jesus, and turning to them he said, </VERS>\n\t\t\t<VERS vnumber=\"26\"> \"If anyone comes to me and does not hate his own father and mother, and wife and children, and brothers and sisters, and even his own life, he cannot be my disciple. </VERS>\n\t\t\t<VERS vnumber=\"27\"> Whoever does not carry his own cross and follow me cannot be my disciple. </VERS>\n\t\t\t<VERS vnumber=\"28\"> For which of you, wanting to build a tower, doesn't sit down first and compute the cost to see if he has enough money to complete it? </VERS>\n\t\t\t<VERS vnumber=\"29\"> Otherwise, when he has laid a foundation and is not able to finish the tower, all who see it will begin to make fun of him. </VERS>\n\t\t\t<VERS vnumber=\"30\"> They will say, 'This man began to build and was not able to finish!'</VERS>\n\t\t\t<VERS vnumber=\"31\"> Or what king, going out to confront another king in battle, will not sit down first and determine whether he is able with ten thousand to oppose the one coming against him with twenty thousand? </VERS>\n\t\t\t<VERS vnumber=\"32\"> If he cannot succeed, he will send a representative while the other is still a long way off and ask for terms of peace.</VERS>\n\t\t\t<VERS vnumber=\"33\"> In the same way therefore not one of you can be my disciple if he does not renounce all his own possessions.</VERS>\n\t\t\t<VERS vnumber=\"34\"> \"Salt is good, but if salt loses its flavor, how can its flavor be restored? </VERS>\n\t\t\t<VERS vnumber=\"35\"> It is of no value for the soil or for the manure pile; it is to be thrown out. The one who has ears to hear had better listen!\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"15\">\n\t\t\t<VERS vnumber=\"1\"> Now all the tax collectors and sinners were coming to hear him. </VERS>\n\t\t\t<VERS vnumber=\"2\"> But the Pharisees and the experts in the law were complaining, \"This man welcomes sinners and eats with them.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> So Jesus told them this parable:</VERS>\n\t\t\t<VERS vnumber=\"4\"> \"Which one of you, if he has a hundred sheep and loses one of them, would not leave the ninety-nine in the open pasture and go look for the one that is lost until he finds it?</VERS>\n\t\t\t<VERS vnumber=\"5\"> Then when he has found it, he places it on his shoulders, rejoicing. </VERS>\n\t\t\t<VERS vnumber=\"6\"> Returning home, he calls together his friends and neighbors, telling them, 'Rejoice with me, because I have found my sheep that was lost.' </VERS>\n\t\t\t<VERS vnumber=\"7\"> I tell you, in the same way there will be more joy in heaven over one sinner who repents than over ninety-nine righteous people who have no need to repent.</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"Or what woman, if she has ten silver coins and loses one of them, does not light a lamp, sweep the house, and search thoroughly until she finds it? </VERS>\n\t\t\t<VERS vnumber=\"9\"> Then when she has found it, she calls together her friends and neighbors, saying, 'Rejoice with me, for I have found the coin that I had lost.' </VERS>\n\t\t\t<VERS vnumber=\"10\"> In the same way, I tell you, there is joy in the presence of God's angels over one sinner who repents.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> Then Jesus said, \"A man had two sons. </VERS>\n\t\t\t<VERS vnumber=\"12\"> The younger of them said to his father, 'Father, give me the share of the estate that will belong to me.' So he divided his assets between them.</VERS>\n\t\t\t<VERS vnumber=\"13\"> After a few days, the younger son gathered together all he had and left on a journey to a distant country, and there he squandered his wealth with a wild lifestyle. </VERS>\n\t\t\t<VERS vnumber=\"14\"> Then after he had spent everything, a severe famine took place in that country, and he began to be in need. </VERS>\n\t\t\t<VERS vnumber=\"15\"> So he went and worked for one of the citizens of that country, who sent him to his fields to feed pigs.</VERS>\n\t\t\t<VERS vnumber=\"16\"> He was longing to eat the carob pods the pigs were eating, but no one gave him anything. </VERS>\n\t\t\t<VERS vnumber=\"17\"> But when he came to his senses he said, 'How many of my father's hired workers have food enough to spare, but here I am dying from hunger! </VERS>\n\t\t\t<VERS vnumber=\"18\"> I will get up and go to my father and say to him, \"Father, I have sinned against heaven and against you. </VERS>\n\t\t\t<VERS vnumber=\"19\"> I am no longer worthy to be called your son; treat me like one of your hired workers.\"' </VERS>\n\t\t\t<VERS vnumber=\"20\"> So he got up and went to his father. But while he was still a long way from home his father saw him, and his heart went out to him; he ran and hugged his son and kissed him.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Then his son said to him, 'Father, I have sinned against heaven and against you; I am no longer worthy to be called your son.'</VERS>\n\t\t\t<VERS vnumber=\"22\"> But the father said to his slaves, 'Hurry! Bring the best robe, and put it on him! Put a ring on his finger and sandals on his feet! </VERS>\n\t\t\t<VERS vnumber=\"23\"> Bring the fattened calf and kill it! Let us eat and celebrate, </VERS>\n\t\t\t<VERS vnumber=\"24\"> because this son of mine was dead, and is alive again, he was lost and is found!' So they began to celebrate.</VERS>\n\t\t\t<VERS vnumber=\"25\"> \"Now his older son was in the field. As he came and approached the house, he heard music and dancing. </VERS>\n\t\t\t<VERS vnumber=\"26\"> So he called one of the slaves and asked what was happening. </VERS>\n\t\t\t<VERS vnumber=\"27\"> The slave replied, 'Your brother has returned, and your father has killed the fattened calf because he got his son back safe and sound.' </VERS>\n\t\t\t<VERS vnumber=\"28\"> But the older son became angry and refused to go in. His father came out and appealed to him, </VERS>\n\t\t\t<VERS vnumber=\"29\"> but he answered his father, 'Look! These many years I have worked like a slave for you, and I never disobeyed your commands. Yet you never gave me even a goat so that I could celebrate with my friends! </VERS>\n\t\t\t<VERS vnumber=\"30\"> But when this son of yours came back, who has devoured your assets with prostitutes, you killed the fattened calf for him!' </VERS>\n\t\t\t<VERS vnumber=\"31\"> Then the father said to him, 'Son, you are always with me, and everything that belongs to me is yours. </VERS>\n\t\t\t<VERS vnumber=\"32\"> It was appropriate to celebrate and be glad, for your brother was dead, and is alive; he was lost and is found.'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"16\">\n\t\t\t<VERS vnumber=\"1\"> Jesus also said to the disciples, \"There was a rich man who was informed of accusations that his manager was wasting his assets. </VERS>\n\t\t\t<VERS vnumber=\"2\"> So he called the manager in and said to him, 'What is this I hear about you? Turn in the account of your administration, because you can no longer be my manager.' </VERS>\n\t\t\t<VERS vnumber=\"3\"> Then the manager said to himself, 'What should I do, since my master is taking my position away from me? I'm not strong enough to dig, and I'm too ashamed to beg. </VERS>\n\t\t\t<VERS vnumber=\"4\"> I know what to do so that when I am put out of management, people will welcome me into their homes.'</VERS>\n\t\t\t<VERS vnumber=\"5\"> So he contacted his master's debtors one by one. He asked the first, 'How much do you owe my master?' </VERS>\n\t\t\t<VERS vnumber=\"6\"> The man replied, 'A hundred measures of olive oil.' The manager said to him, 'Take your bill, sit down quickly, and write fifty.'</VERS>\n\t\t\t<VERS vnumber=\"7\"> Then he said to another, 'And how much do you owe?' The second man replied, 'A hundred measures of wheat.' The manager said to him, 'Take your bill, and write eighty.'</VERS>\n\t\t\t<VERS vnumber=\"8\"> The master commended the dishonest manager because he acted shrewdly. For the people of this world are more shrewd in dealing with their contemporaries than the people of light. </VERS>\n\t\t\t<VERS vnumber=\"9\"> And I tell you, make friends for yourselves by how you use worldly wealth, so that when it runs out you will be welcomed into the eternal homes.</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"The one who is faithful in a very little is also faithful in much, and the one who is dishonest in a very little is also dishonest in much. </VERS>\n\t\t\t<VERS vnumber=\"11\"> If then you haven't been trustworthy in handling worldly wealth, who will entrust you with the true riches?</VERS>\n\t\t\t<VERS vnumber=\"12\"> And if you haven't been trustworthy with someone else's property, who will give you your own?</VERS>\n\t\t\t<VERS vnumber=\"13\"> No servant can serve two masters, for either he will hate the one and love the other, or he will be devoted to the one and despise the other. You cannot serve God and money.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> The Pharisees (who loved money) heard all this and ridiculed him. </VERS>\n\t\t\t<VERS vnumber=\"15\"> But Jesus said to them, \"You are the ones who justify yourselves in men's eyes, but God knows your hearts. For what is highly prized among men is utterly detestable in God's sight.</VERS>\n\t\t\t<VERS vnumber=\"16\"> \"The law and the prophets were in force until John; since then, the good news of the kingdom of God has been proclaimed, and everyone is urged to enter it.</VERS>\n\t\t\t<VERS vnumber=\"17\"> But it is easier for heaven and earth to pass away than for one tiny stroke of a letter in the law to become void.</VERS>\n\t\t\t<VERS vnumber=\"18\"> \"Everyone who divorces his wife and marries someone else commits adultery, and the one who marries a woman divorced from her husband commits adultery.</VERS>\n\t\t\t<VERS vnumber=\"19\"> \"There was a rich man who dressed in purple and fine linen and who feasted sumptuously every day. </VERS>\n\t\t\t<VERS vnumber=\"20\"> But at his gate lay a poor man named Lazarus whose body was covered with sores,</VERS>\n\t\t\t<VERS vnumber=\"21\"> who longed to eat what fell from the rich man's table. In addition, the dogs came and licked his sores.</VERS>\n\t\t\t<VERS vnumber=\"22\"> \"Now the poor man died and was carried by the angels to Abraham's side. The rich man also died and was buried.</VERS>\n\t\t\t<VERS vnumber=\"23\"> And in hell, as he was in torment, he looked up and saw Abraham far off with Lazarus at his side.</VERS>\n\t\t\t<VERS vnumber=\"24\"> So he called out, 'Father Abraham, have mercy on me, and send Lazarus to dip the tip of his finger in water and cool my tongue, because I am in anguish in this fire.'</VERS>\n\t\t\t<VERS vnumber=\"25\"> But Abraham said, 'Child, remember that in your lifetime you received your good things and Lazarus likewise bad things, but now he is comforted here and you are in anguish.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Besides all this, a great chasm has been fixed between us, so that those who want to cross over from here to you cannot do so, and no one can cross from there to us.' </VERS>\n\t\t\t<VERS vnumber=\"27\"> So the rich man said, 'Then I beg you, father, send Lazarus to my father's house</VERS>\n\t\t\t<VERS vnumber=\"28\"> (for I have five brothers) to warn them so that they don't come into this place of torment.' </VERS>\n\t\t\t<VERS vnumber=\"29\"> But Abraham said, 'They have Moses and the prophets; they must respond to them.' </VERS>\n\t\t\t<VERS vnumber=\"30\"> Then the rich man said, 'No, father Abraham, but if someone from the dead goes to them, they will repent.' </VERS>\n\t\t\t<VERS vnumber=\"31\"> He replied to him, 'If they do not respond to Moses and the prophets, they will not be convinced even if someone rises from the dead.'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"17\">\n\t\t\t<VERS vnumber=\"1\"> Jesus said to his disciples, \"Stumbling blocks are sure to come, but woe to the one through whom they come! </VERS>\n\t\t\t<VERS vnumber=\"2\"> It would be better for him to have a millstone tied around his neck and be thrown into the sea than for him to cause one of these little ones to sin.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Watch yourselves! If your brother sins, rebuke him. If he repents, forgive him. </VERS>\n\t\t\t<VERS vnumber=\"4\"> Even if he sins against you seven times in a day, and seven times returns to you saying, 'I repent,' you must forgive him.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> The apostles said to the Lord, \"Increase our faith!\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> So the Lord replied, \"If you had faith the size of a mustard seed, you could say to this black mulberry tree, 'Be pulled out by the roots and planted in the sea,' and it would obey you.</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"Would any one of you say to your slave who comes in from the field after plowing or shepherding sheep, 'Come at once and sit down for a meal'?</VERS>\n\t\t\t<VERS vnumber=\"8\"> Won't the master instead say to him, 'Get my dinner ready, and make yourself ready to serve me while I eat and drink. Then you may eat and drink'? </VERS>\n\t\t\t<VERS vnumber=\"9\"> He won't thank the slave because he did what he was told, will he?</VERS>\n\t\t\t<VERS vnumber=\"10\"> So you too, when you have done everything you were commanded to do, should say, 'We are slaves undeserving of special praise; we have only done what was our duty.'\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> Now on the way to Jerusalem, Jesus was passing along between Samaria and Galilee. </VERS>\n\t\t\t<VERS vnumber=\"12\"> As he was entering a village, ten men with leprosy met him. They stood at a distance, </VERS>\n\t\t\t<VERS vnumber=\"13\"> raised their voices and said, \"Jesus, Master, have mercy on us.\" </VERS>\n\t\t\t<VERS vnumber=\"14\"> When he saw them he said, \"Go and show yourselves to the priests.\" And as they went along, they were cleansed. </VERS>\n\t\t\t<VERS vnumber=\"15\"> Then one of them, when he saw he was healed, turned back, praising God with a loud voice. </VERS>\n\t\t\t<VERS vnumber=\"16\"> He fell with his face to the ground at Jesus' feet and thanked him. (Now he was a Samaritan.)</VERS>\n\t\t\t<VERS vnumber=\"17\"> Then Jesus said, \"Were not ten cleansed? Where are the other nine? </VERS>\n\t\t\t<VERS vnumber=\"18\"> Was no one found to turn back and give praise to God except this foreigner?\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> Then he said to the man, \"Get up and go your way. Your faith has made you well.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> Now at one point the Pharisees asked Jesus when the kingdom of God was coming, so he answered, \"The kingdom of God is not coming with signs to be observed, </VERS>\n\t\t\t<VERS vnumber=\"21\"> nor will they say, 'Look, here it is!' or 'There!' For indeed, the kingdom of God is in your midst.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> Then he said to the disciples, \"The days are coming when you will desire to see one of the days of the Son of Man, and you will not see it. </VERS>\n\t\t\t<VERS vnumber=\"23\"> Then people will say to you, 'Look, there he is!' or 'Look, here he is!' Do not go out or chase after them.</VERS>\n\t\t\t<VERS vnumber=\"24\"> For just like the lightning flashes and lights up the sky from one side to the other, so will the Son of Man be in his day.</VERS>\n\t\t\t<VERS vnumber=\"25\"> But first he must suffer many things and be rejected by this generation. </VERS>\n\t\t\t<VERS vnumber=\"26\"> Just as it was in the days of Noah, so too it will be in the days of the Son of Man. </VERS>\n\t\t\t<VERS vnumber=\"27\"> People were eating, they were drinking, they were marrying, they were being given in marriage, right up to the day Noah entered the ark. Then the flood came and destroyed them all.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Likewise, just as it was in the days of Lot, people were eating, drinking, buying, selling, planting, building; </VERS>\n\t\t\t<VERS vnumber=\"29\"> but on the day Lot went out from Sodom, fire and sulfur rained down from heaven and destroyed them all.</VERS>\n\t\t\t<VERS vnumber=\"30\"> It will be the same on the day the Son of Man is revealed.</VERS>\n\t\t\t<VERS vnumber=\"31\"> On that day, anyone who is on the roof, with his goods in the house, must not come down to take them away, and likewise the person in the field must not turn back. </VERS>\n\t\t\t<VERS vnumber=\"32\"> Remember Lot's wife!</VERS>\n\t\t\t<VERS vnumber=\"33\"> Whoever tries to keep his life will lose it, but whoever loses his life will preserve it. </VERS>\n\t\t\t<VERS vnumber=\"34\"> I tell you, in that night there will be two people in one bed; one will be taken and the other left.</VERS>\n\t\t\t<VERS vnumber=\"35\"> There will be two women grinding grain together; one will be taken and the other left.\"</VERS>\n\t\t\t<VERS vnumber=\"36\"> </VERS>\n\t\t\t<VERS vnumber=\"37\"> Then the disciples said to him, \"Where, Lord?\" He replied to them, \"Where the dead body is, there the vultures will gather.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"18\">\n\t\t\t<VERS vnumber=\"1\"> Then Jesus told them a parable to show them they should always pray and not lose heart.</VERS>\n\t\t\t<VERS vnumber=\"2\"> He said, \"In a certain city there was a judge who neither feared God nor respected people.</VERS>\n\t\t\t<VERS vnumber=\"3\"> There was also a widow in that city who kept coming to him and saying, 'Give me justice against my adversary.' </VERS>\n\t\t\t<VERS vnumber=\"4\"> For a while he refused, but later on he said to himself, 'Though I neither fear God nor have regard for people,</VERS>\n\t\t\t<VERS vnumber=\"5\"> yet because this widow keeps on bothering me, I will give her justice, or in the end she will wear me out by her unending pleas.'\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> And the Lord said, \"Listen to what the unrighteous judge says!</VERS>\n\t\t\t<VERS vnumber=\"7\"> Won't God give justice to his chosen ones, who cry out to him day and night? Will he delay long to help them? </VERS>\n\t\t\t<VERS vnumber=\"8\"> I tell you, he will give them justice speedily. Nevertheless, when the Son of Man comes, will he find faith on earth?\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> Jesus also told this parable to some who were confident that they were righteous and looked down on everyone else. </VERS>\n\t\t\t<VERS vnumber=\"10\"> \"Two men went up to the temple to pray, one a Pharisee and the other a tax collector.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The Pharisee stood and prayed about himself like this: 'God, I thank you that I am not like other people: extortionists, unrighteous people, adulterers, or even like this tax collector.</VERS>\n\t\t\t<VERS vnumber=\"12\"> I fast twice a week; I give a tenth of everything I get.'</VERS>\n\t\t\t<VERS vnumber=\"13\"> The tax collector, however, stood far off and would not even look up to heaven, but beat his breast and said, 'God, be merciful to me, sinner that I am!'</VERS>\n\t\t\t<VERS vnumber=\"14\"> I tell you that this man went down to his home justified rather than the Pharisee. For everyone who exalts himself will be humbled, but he who humbles himself will be exalted.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> Now people were even bringing their babies to him for him to touch. But when the disciples saw it, they began to scold those who brought them.</VERS>\n\t\t\t<VERS vnumber=\"16\"> But Jesus called for the children, saying, \"Let the little children come to me and do not try to stop them, for the kingdom of God belongs to such as these.</VERS>\n\t\t\t<VERS vnumber=\"17\"> I tell you the truth, whoever does not receive the kingdom of God like a child will never enter it.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> Now a certain ruler asked him, \"Good teacher, what must I do to inherit eternal life?\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> Jesus said to him, \"Why do you call me good? No one is good except God alone. </VERS>\n\t\t\t<VERS vnumber=\"20\"> You know the commandments: 'Do not commit adultery, do not murder, do not steal, do not give false testimony, honor your father and mother.'\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> The man replied, \"I have wholeheartedly obeyed all these laws since my youth.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> When Jesus heard this, he said to him, \"One thing you still lack. Sell all that you have and give the money to the poor, and you will have treasure in heaven. Then come, follow me.\" </VERS>\n\t\t\t<VERS vnumber=\"23\"> But when the man heard this he became very sad, for he was extremely wealthy. </VERS>\n\t\t\t<VERS vnumber=\"24\"> When Jesus noticed this, he said, \"How hard it is for the rich to enter the kingdom of God!</VERS>\n\t\t\t<VERS vnumber=\"25\"> In fact, it is easier for a camel to go through the eye of a needle than for a rich person to enter the kingdom of God.\" </VERS>\n\t\t\t<VERS vnumber=\"26\"> Those who heard this said, \"Then who can be saved?\"</VERS>\n\t\t\t<VERS vnumber=\"27\"> He replied, \"What is impossible for mere humans is possible for God.\" </VERS>\n\t\t\t<VERS vnumber=\"28\"> And Peter said, \"Look, we have left everything we own to follow you!\"</VERS>\n\t\t\t<VERS vnumber=\"29\"> Then Jesus said to them, \"I tell you the truth, there is no one who has left home or wife or brothers or parents or children for the sake of God's kingdom </VERS>\n\t\t\t<VERS vnumber=\"30\"> who will not receive many times more in this age, and in the age to come, eternal life.\"</VERS>\n\t\t\t<VERS vnumber=\"31\"> Then Jesus took the twelve aside and said to them, \"Look, we are going up to Jerusalem, and everything that is written about the Son of Man by the prophets will be accomplished.</VERS>\n\t\t\t<VERS vnumber=\"32\"> For he will be handed over to the Gentiles; he will be mocked, mistreated, and spat on.</VERS>\n\t\t\t<VERS vnumber=\"33\"> They will flog him severely and kill him. Yet on the third day he will rise again.\" </VERS>\n\t\t\t<VERS vnumber=\"34\"> But the twelve understood none of these things. This saying was hidden from them, and they did not grasp what Jesus meant.</VERS>\n\t\t\t<VERS vnumber=\"35\"> As Jesus approached Jericho, a blind man was sitting by the road begging. </VERS>\n\t\t\t<VERS vnumber=\"36\"> When he heard a crowd going by, he asked what was going on.</VERS>\n\t\t\t<VERS vnumber=\"37\"> They told him, \"Jesus the Nazarene is passing by.\" </VERS>\n\t\t\t<VERS vnumber=\"38\"> So he called out, \"Jesus, Son of David, have mercy on me!\" </VERS>\n\t\t\t<VERS vnumber=\"39\"> And those who were in front scolded him to get him to be quiet, but he shouted even more, \"Son of David, have mercy on me!\"</VERS>\n\t\t\t<VERS vnumber=\"40\"> So Jesus stopped and ordered the beggar to be brought to him. When the man came near, Jesus asked him, </VERS>\n\t\t\t<VERS vnumber=\"41\"> \"What do you want me to do for you?\" He replied, \"Lord, let me see again.\"</VERS>\n\t\t\t<VERS vnumber=\"42\"> Jesus said to him, \"Receive your sight; your faith has healed you.\"</VERS>\n\t\t\t<VERS vnumber=\"43\"> And immediately he regained his sight and followed Jesus, praising God. When all the people saw it, they too gave praise to God.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"19\">\n\t\t\t<VERS vnumber=\"1\"> Jesus entered Jericho and was passing through it. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Now a man named Zacchaeus was there; he was a chief tax collector and was rich. </VERS>\n\t\t\t<VERS vnumber=\"3\"> He was trying to get a look at Jesus, but being a short man he could not see over the crowd.</VERS>\n\t\t\t<VERS vnumber=\"4\"> So he ran on ahead and climbed up into a sycamore tree to see him, because Jesus was going to pass that way. </VERS>\n\t\t\t<VERS vnumber=\"5\"> And when Jesus came to that place, he looked up and said to him, \"Zacchaeus, come down quickly, because I must stay at your house today.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> So he came down quickly and welcomed Jesus joyfully.</VERS>\n\t\t\t<VERS vnumber=\"7\"> And when the people saw it, they all complained, \"He has gone in to be the guest of a man who is a sinner.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> But Zacchaeus stopped and said to the Lord, \"Look, Lord, half of my possessions I now give to the poor, and if I have cheated anyone of anything, I am paying back four times as much!\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> Then Jesus said to him, \"Today salvation has come to this household, because he too is a son of Abraham!</VERS>\n\t\t\t<VERS vnumber=\"10\"> For the Son of Man came to seek and to save the lost.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> While the people were listening to these things, Jesus proceeded to tell a parable, because he was near to Jerusalem, and because they thought that the kingdom of God was going to appear immediately. </VERS>\n\t\t\t<VERS vnumber=\"12\"> Therefore he said, \"A nobleman went to a distant country to receive for himself a kingdom and then return.</VERS>\n\t\t\t<VERS vnumber=\"13\"> And he summoned ten of his slaves, gave them ten minas, and said to them, 'Do business with these until I come back.' </VERS>\n\t\t\t<VERS vnumber=\"14\"> But his citizens hated him and sent a delegation after him, saying, 'We do not want this man to be king over us!'</VERS>\n\t\t\t<VERS vnumber=\"15\"> When he returned after receiving the kingdom, he summoned these slaves to whom he had given the money. He wanted to know how much they had earned by trading. </VERS>\n\t\t\t<VERS vnumber=\"16\"> So the first one came before him and said, 'Sir, your mina has made ten minas more.' </VERS>\n\t\t\t<VERS vnumber=\"17\"> And the king said to him, 'Well done, good slave! Because you have been faithful in a very small matter, you will have authority over ten cities.' </VERS>\n\t\t\t<VERS vnumber=\"18\"> Then the second one came and said, 'Sir, your mina has made five minas.' </VERS>\n\t\t\t<VERS vnumber=\"19\"> So the king said to him, 'And you are to be over five cities.' </VERS>\n\t\t\t<VERS vnumber=\"20\"> Then another slave came and said, 'Sir, here is your mina that I put away for safekeeping in a piece of cloth.</VERS>\n\t\t\t<VERS vnumber=\"21\"> For I was afraid of you, because you are a severe man. You withdraw what you did not deposit and reap what you did not sow.' </VERS>\n\t\t\t<VERS vnumber=\"22\"> The king said to him, 'I will judge you by your own words, you wicked slave! So you knew, did you, that I was a severe man, withdrawing what I didn't deposit and reaping what I didn't sow? </VERS>\n\t\t\t<VERS vnumber=\"23\"> Why then didn't you put my money in the bank, so that when I returned I could have collected it with interest?' </VERS>\n\t\t\t<VERS vnumber=\"24\"> And he said to his attendants, 'Take the mina from him, and give it to the one who has ten.'</VERS>\n\t\t\t<VERS vnumber=\"25\"> But they said to him, 'Sir, he has ten minas already!'</VERS>\n\t\t\t<VERS vnumber=\"26\"> 'I tell you that everyone who has will be given more, but from the one who does not have, even what he has will be taken away.</VERS>\n\t\t\t<VERS vnumber=\"27\"> But as for these enemies of mine who did not want me to be their king, bring them here and slaughter them in front of me!'\"</VERS>\n\t\t\t<VERS vnumber=\"28\"> After Jesus had said this, he continued on ahead, going up to Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Now when he approached Bethphage and Bethany, at the place called the Mount of Olives, he sent two of the disciples, </VERS>\n\t\t\t<VERS vnumber=\"30\"> telling them, \"Go to the village ahead of you. When you enter it, you will find a colt tied there that has never been ridden. Untie it and bring it here. </VERS>\n\t\t\t<VERS vnumber=\"31\"> If anyone asks you, 'Why are you untying it?' just say, 'The Lord needs it.'\" </VERS>\n\t\t\t<VERS vnumber=\"32\"> So those who were sent ahead found it exactly as he had told them. </VERS>\n\t\t\t<VERS vnumber=\"33\"> As they were untying the colt, its owners asked them, \"Why are you untying that colt?\" </VERS>\n\t\t\t<VERS vnumber=\"34\"> They replied, \"The Lord needs it.\"</VERS>\n\t\t\t<VERS vnumber=\"35\"> Then they brought it to Jesus, threw their cloaks on the colt, and had Jesus get on it. </VERS>\n\t\t\t<VERS vnumber=\"36\"> As he rode along, they spread their cloaks on the road. </VERS>\n\t\t\t<VERS vnumber=\"37\"> As he approached the road leading down from the Mount of Olives, the whole crowd of his disciples began to rejoice and praise God with a loud voice for all the mighty works they had seen:</VERS>\n\t\t\t<VERS vnumber=\"38\"> \"Blessed is the king who comes in the name of the Lord! Peace in heaven and glory in the highest!\" </VERS>\n\t\t\t<VERS vnumber=\"39\"> But some of the Pharisees in the crowd said to him, \"Teacher, rebuke your disciples.\"</VERS>\n\t\t\t<VERS vnumber=\"40\"> He answered, \"I tell you, if they keep silent, the very stones will cry out!\"</VERS>\n\t\t\t<VERS vnumber=\"41\"> Now when Jesus approached and saw the city, he wept over it, </VERS>\n\t\t\t<VERS vnumber=\"42\"> saying, \"If you had only known on this day, even you, the things that make for peace! But now they are hidden from your eyes. </VERS>\n\t\t\t<VERS vnumber=\"43\"> For the days will come upon you when your enemies will build an embankment against you and surround you and close in on you from every side. </VERS>\n\t\t\t<VERS vnumber=\"44\"> They will demolish you, you and your children within your walls, and they will not leave within you one stone on top of another, because you did not recognize the time of your visitation from God.\"</VERS>\n\t\t\t<VERS vnumber=\"45\"> Then Jesus entered the temple courts and began to drive out those who were selling things there,</VERS>\n\t\t\t<VERS vnumber=\"46\"> saying to them, \"It is written, 'My house will be a house of prayer,' but you have turned it into a den of robbers!\"</VERS>\n\t\t\t<VERS vnumber=\"47\"> Jesus was teaching daily in the temple courts. The chief priests and the experts in the law and the prominent leaders among the people were seeking to assassinate him, </VERS>\n\t\t\t<VERS vnumber=\"48\"> but they could not find a way to do it, for all the people hung on his words.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"20\">\n\t\t\t<VERS vnumber=\"1\"> Now one day, as Jesus was teaching the people in the temple courts and proclaiming the gospel, the chief priests and the experts in the law with the elders came up</VERS>\n\t\t\t<VERS vnumber=\"2\"> and said to him, \"Tell us: By what authority are you doing these things? Or who it is who gave you this authority?\" </VERS>\n\t\t\t<VERS vnumber=\"3\"> He answered them, \"I will also ask you a question, and you tell me: </VERS>\n\t\t\t<VERS vnumber=\"4\"> John's baptism, was it from heaven or from people?\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> So they discussed it with one another, saying, \"If we say, 'From heaven,' he will say, 'Why did you not believe him?' </VERS>\n\t\t\t<VERS vnumber=\"6\"> But if we say, 'From people,' all the people will stone us, because they are convinced that John was a prophet.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> So they replied that they did not know where it came from. </VERS>\n\t\t\t<VERS vnumber=\"8\"> Then Jesus said to them, \"Neither will I tell you by whose authority I do these things.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> Then he began to tell the people this parable: \"A man planted a vineyard, leased it to tenant farmers, and went on a journey for a long time. </VERS>\n\t\t\t<VERS vnumber=\"10\"> When harvest time came, he sent a slave to the tenants so that they would give him his portion of the crop. However, the tenants beat his slave and sent him away empty-handed. </VERS>\n\t\t\t<VERS vnumber=\"11\"> So he sent another slave. They beat this one too, treated him outrageously, and sent him away empty-handed.</VERS>\n\t\t\t<VERS vnumber=\"12\"> So he sent still a third. They even wounded this one, and threw him out.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Then the owner of the vineyard said, 'What should I do? I will send my one dear son; perhaps they will respect him.' </VERS>\n\t\t\t<VERS vnumber=\"14\"> But when the tenants saw him, they said to one another, 'This is the heir; let's kill him so the inheritance will be ours!'</VERS>\n\t\t\t<VERS vnumber=\"15\"> So they threw him out of the vineyard and killed him. What then will the owner of the vineyard do to them? </VERS>\n\t\t\t<VERS vnumber=\"16\"> He will come and destroy those tenants and give the vineyard to others.\" When the people heard this, they said, \"May this never happen!\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> But Jesus looked straight at them and said, \"Then what is the meaning of that which is written: 'The stone the builders rejected has become the cornerstone'?</VERS>\n\t\t\t<VERS vnumber=\"18\"> Everyone who falls on this stone will be broken to pieces, and the one on whom it falls will be crushed.\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> Then the experts in the law and the chief priests wanted to arrest him that very hour, because they realized he had told this parable against them. But they were afraid of the people.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Then they watched him carefully and sent spies who pretended to be sincere. They wanted to take advantage of what he might say so that they could deliver him up to the authority and jurisdiction of the governor. </VERS>\n\t\t\t<VERS vnumber=\"21\"> Thus they asked him, \"Teacher, we know that you speak and teach correctly, and show no partiality, but teach the way of God in accordance with the truth.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Is it right for us to pay the tribute tax to Caesar or not?\" </VERS>\n\t\t\t<VERS vnumber=\"23\"> But Jesus perceived their deceit and said to them, </VERS>\n\t\t\t<VERS vnumber=\"24\"> \"Show me a denarius. Whose image and inscription are on it?\" They said, \"Caesar's.\" </VERS>\n\t\t\t<VERS vnumber=\"25\"> So he said to them, \"Then give to Caesar the things that are Caesar's, and to God the things that are God's.\"</VERS>\n\t\t\t<VERS vnumber=\"26\"> Thus they were unable in the presence of the people to trap him with his own words. And stunned by his answer, they fell silent.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Now some Sadducees (who contend that there is no resurrection) came to him. </VERS>\n\t\t\t<VERS vnumber=\"28\"> They asked him, \"Teacher, Moses wrote for us that if a man's brother dies leaving a wife but no children, that man must marry the widow and father children for his brother.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Now there were seven brothers. The first one married a woman and died without children. </VERS>\n\t\t\t<VERS vnumber=\"30\"> The second</VERS>\n\t\t\t<VERS vnumber=\"31\"> and then the third married her, and in this same way all seven died, leaving no children.</VERS>\n\t\t\t<VERS vnumber=\"32\"> Finally the woman died too.</VERS>\n\t\t\t<VERS vnumber=\"33\"> In the resurrection, therefore, whose wife will the woman be? For all seven had married her.\"</VERS>\n\t\t\t<VERS vnumber=\"34\"> So Jesus said to them, \"The people of this age marry and are given in marriage. </VERS>\n\t\t\t<VERS vnumber=\"35\"> But those who are regarded as worthy to share in that age and in the resurrection from the dead neither marry nor are given in marriage.</VERS>\n\t\t\t<VERS vnumber=\"36\"> In fact, they can no longer die, because they are equal to angels and are sons of God, since they are sons of the resurrection. </VERS>\n\t\t\t<VERS vnumber=\"37\"> But even Moses revealed that the dead are raised in the passage about the bush, where he calls the Lord the God of Abraham and the God of Isaac and the God of Jacob.</VERS>\n\t\t\t<VERS vnumber=\"38\"> Now he is not God of the dead, but of the living, for all live before him.\"</VERS>\n\t\t\t<VERS vnumber=\"39\"> Then some of the experts in the law answered, \"Teacher, you have spoken well!\"</VERS>\n\t\t\t<VERS vnumber=\"40\"> For they did not dare any longer to ask him anything.</VERS>\n\t\t\t<VERS vnumber=\"41\"> But he said to them, \"How is it that they say that the Christ is David's son?</VERS>\n\t\t\t<VERS vnumber=\"42\"> For David himself says in the book of Psalms, 'The Lord said to my lord, \"Sit at my right hand,</VERS>\n\t\t\t<VERS vnumber=\"43\"> until I make your enemies a footstool for your feet.\"'</VERS>\n\t\t\t<VERS vnumber=\"44\"> If David then calls him 'Lord,' how can he be his son?\"</VERS>\n\t\t\t<VERS vnumber=\"45\"> As all the people were listening, Jesus said to his disciples, </VERS>\n\t\t\t<VERS vnumber=\"46\"> \"Beware of the experts in the law. They like walking around in long robes, and they love elaborate greetings in the marketplaces and the best seats in the synagogues and the places of honor at banquets. </VERS>\n\t\t\t<VERS vnumber=\"47\"> They devour widows' property, and as a show make long prayers. They will receive a more severe punishment.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"21\">\n\t\t\t<VERS vnumber=\"1\"> Jesus looked up and saw the rich putting their gifts into the offering box.</VERS>\n\t\t\t<VERS vnumber=\"2\"> He also saw a poor widow put in two small copper coins.</VERS>\n\t\t\t<VERS vnumber=\"3\"> He said, \"I tell you the truth, this poor widow has put in more than all of them.</VERS>\n\t\t\t<VERS vnumber=\"4\"> For they all offered their gifts out of their wealth. But she, out of her poverty, put in everything she had to live on.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> Now while some were speaking about the temple, how it was adorned with beautiful stones and offerings, Jesus said, </VERS>\n\t\t\t<VERS vnumber=\"6\"> \"As for these things that you are gazing at, the days will come when not one stone will be left on another. All will be torn down!\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> So they asked him, \"Teacher, when will these things happen? And what will be the sign that these things are about to take place?\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> He said, \"Watch out that you are not misled. For many will come in my name, saying, 'I am he,' and, 'The time is near.' Do not follow them! </VERS>\n\t\t\t<VERS vnumber=\"9\"> And when you hear of wars and rebellions, do not be afraid. For these things must happen first, but the end will not come at once.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> Then he said to them, \"Nation will rise up in arms against nation, and kingdom against kingdom. </VERS>\n\t\t\t<VERS vnumber=\"11\"> There will be great earthquakes, and famines and plagues in various places, and there will be terrifying sights and great signs from heaven. </VERS>\n\t\t\t<VERS vnumber=\"12\"> But before all this, they will seize you and persecute you, handing you over to the synagogues and prisons. You will be brought before kings and governors because of my name. </VERS>\n\t\t\t<VERS vnumber=\"13\"> This will be a time for you to serve as witnesses.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Therefore be resolved not to rehearse ahead of time how to make your defense. </VERS>\n\t\t\t<VERS vnumber=\"15\"> For I will give you the words along with the wisdom that none of your adversaries will be able to withstand or contradict. </VERS>\n\t\t\t<VERS vnumber=\"16\"> You will be betrayed even by parents, brothers, relatives, and friends, and they will have some of you put to death. </VERS>\n\t\t\t<VERS vnumber=\"17\"> You will be hated by everyone because of my name.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Yet not a hair of your head will perish.</VERS>\n\t\t\t<VERS vnumber=\"19\"> By your endurance you will gain your lives.</VERS>\n\t\t\t<VERS vnumber=\"20\"> \"But when you see Jerusalem surrounded by armies, then know that its desolation has come near. </VERS>\n\t\t\t<VERS vnumber=\"21\"> Then those who are in Judea must flee to the mountains. Those who are inside the city must depart. Those who are out in the country must not enter it, </VERS>\n\t\t\t<VERS vnumber=\"22\"> because these are days of vengeance, to fulfill all that is written. </VERS>\n\t\t\t<VERS vnumber=\"23\"> Woe to those who are pregnant and to those who are nursing their babies in those days! For there will be great distress on the earth and wrath against this people. </VERS>\n\t\t\t<VERS vnumber=\"24\"> They will fall by the edge of the sword and be led away as captives among all nations. Jerusalem will be trampled down by the Gentiles until the times of the Gentiles are fulfilled.</VERS>\n\t\t\t<VERS vnumber=\"25\"> \"And there will be signs in the sun and moon and stars, and on the earth nations will be in distress, anxious over the roaring of the sea and the surging waves. </VERS>\n\t\t\t<VERS vnumber=\"26\"> People will be fainting from fear and from the expectation of what is coming on the world, for the powers of the heavens will be shaken.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Then they will see the Son of Man arriving in a cloud with power and great glory. </VERS>\n\t\t\t<VERS vnumber=\"28\"> But when these things begin to happen, stand up and raise your heads, because your redemption is drawing near.\"</VERS>\n\t\t\t<VERS vnumber=\"29\"> Then he told them a parable: \"Look at the fig tree and all the other trees.</VERS>\n\t\t\t<VERS vnumber=\"30\"> When they sprout leaves, you see for yourselves and know that summer is now near. </VERS>\n\t\t\t<VERS vnumber=\"31\"> So also you, when you see these things happening, know that the kingdom of God is near. </VERS>\n\t\t\t<VERS vnumber=\"32\"> I tell you the truth, this generation will not pass away until all these things take place. </VERS>\n\t\t\t<VERS vnumber=\"33\"> Heaven and earth will pass away, but my words will never pass away.</VERS>\n\t\t\t<VERS vnumber=\"34\"> \"But be on your guard so that your hearts are not weighed down with dissipation and drunkenness and the worries of this life, and that day close down upon you suddenly like a trap.</VERS>\n\t\t\t<VERS vnumber=\"35\"> For it will overtake all who live on the face of the whole earth.</VERS>\n\t\t\t<VERS vnumber=\"36\"> But stay alert at all times, praying that you may have strength to escape all these things that must happen, and to stand before the Son of Man.\"</VERS>\n\t\t\t<VERS vnumber=\"37\"> So every day Jesus was teaching in the temple courts, but at night he went and stayed on the Mount of Olives.</VERS>\n\t\t\t<VERS vnumber=\"38\"> And all the people came to him early in the morning to listen to him in the temple courts.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"22\">\n\t\t\t<VERS vnumber=\"1\"> Now the Feast of Unleavened Bread, which is called the Passover, was approaching. </VERS>\n\t\t\t<VERS vnumber=\"2\"> The chief priests and the experts in the law were trying to find some way to execute Jesus, for they were afraid of the people.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Then Satan entered Judas, the one called Iscariot, who was one of the twelve.</VERS>\n\t\t\t<VERS vnumber=\"4\"> He went away and discussed with the chief priests and officers of the temple guard how he might betray Jesus, handing him over to them.</VERS>\n\t\t\t<VERS vnumber=\"5\"> They were delighted and arranged to give him money.</VERS>\n\t\t\t<VERS vnumber=\"6\"> So Judas agreed and began looking for an opportunity to betray Jesus when no crowd was present.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Then the day for the feast of Unleavened Bread came, on which the Passover lamb had to be sacrificed.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Jesus sent Peter and John, saying, \"Go and prepare the Passover for us to eat.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> They said to him, \"Where do you want us to prepare it?\" </VERS>\n\t\t\t<VERS vnumber=\"10\"> He said to them, \"Listen, when you have entered the city, a man carrying a jar of water will meet you. Follow him into the house that he enters,</VERS>\n\t\t\t<VERS vnumber=\"11\"> and tell the owner of the house, 'The Teacher says to you, \"Where is the guest room where I may eat the Passover with my disciples?\"' </VERS>\n\t\t\t<VERS vnumber=\"12\"> Then he will show you a large furnished room upstairs. Make preparations there.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> So they went and found things just as he had told them, and they prepared the Passover.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Now when the hour came, Jesus took his place at the table and the apostles joined him.</VERS>\n\t\t\t<VERS vnumber=\"15\"> And he said to them, \"I have earnestly desired to eat this Passover with you before I suffer. </VERS>\n\t\t\t<VERS vnumber=\"16\"> For I tell you, I will not eat it again until it is fulfilled in the kingdom of God.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> Then he took a cup, and after giving thanks he said, \"Take this and divide it among yourselves. </VERS>\n\t\t\t<VERS vnumber=\"18\"> For I tell you that from now on I will not drink of the fruit of the vine until the kingdom of God comes.\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> Then he took bread, and after giving thanks he broke it and gave it to them, saying, \"This is my body which is given for you. Do this in remembrance of me.\" </VERS>\n\t\t\t<VERS vnumber=\"20\"> And in the same way he took the cup after they had eaten, saying, \"This cup that is poured out for you is the new covenant in my blood.</VERS>\n\t\t\t<VERS vnumber=\"21\"> \"But look, the hand of the one who betrays me is with me on the table.</VERS>\n\t\t\t<VERS vnumber=\"22\"> For the Son of Man is to go just as it has been determined, but woe to that man by whom he is betrayed!\" </VERS>\n\t\t\t<VERS vnumber=\"23\"> So they began to question one another as to which of them it could possibly be who would do this.</VERS>\n\t\t\t<VERS vnumber=\"24\"> A dispute also started among them over which of them was to be regarded as the greatest.</VERS>\n\t\t\t<VERS vnumber=\"25\"> So Jesus said to them, \"The kings of the Gentiles lord it over them, and those in authority over them are called 'benefactors.'</VERS>\n\t\t\t<VERS vnumber=\"26\"> Not so with you; instead the one who is greatest among you must become like the youngest, and the leader like the one who serves.</VERS>\n\t\t\t<VERS vnumber=\"27\"> For who is greater, the one who is seated at the table, or the one who serves? Is it not the one who is seated at the table? But I am among you as one who serves.</VERS>\n\t\t\t<VERS vnumber=\"28\"> \"You are the ones who have remained with me in my trials. </VERS>\n\t\t\t<VERS vnumber=\"29\"> Thus I grant to you a kingdom, just as my Father granted to me, </VERS>\n\t\t\t<VERS vnumber=\"30\"> that you may eat and drink at my table in my kingdom, and you will sit on thrones judging the twelve tribes of Israel.</VERS>\n\t\t\t<VERS vnumber=\"31\"> \"Simon, Simon, pay attention! Satan has demanded to have you all, to sift you like wheat,</VERS>\n\t\t\t<VERS vnumber=\"32\"> but I have prayed for you, Simon, that your faith may not fail. When you have turned back, strengthen your brothers.\"</VERS>\n\t\t\t<VERS vnumber=\"33\"> But Peter said to him, \"Lord, I am ready to go with you both to prison and to death!\"</VERS>\n\t\t\t<VERS vnumber=\"34\"> Jesus replied, \"I tell you, Peter, the rooster will not crow today until you have denied three times that you know me.\"</VERS>\n\t\t\t<VERS vnumber=\"35\"> Then Jesus said to them, \"When I sent you out with no money bag, or traveler's bag, or sandals, you didn't lack anything, did you?\" They replied, \"Nothing.\" </VERS>\n\t\t\t<VERS vnumber=\"36\"> He said to them, \"But now, the one who has a money bag must take it, and likewise a traveler's bag too. And the one who has no sword must sell his cloak and buy one. </VERS>\n\t\t\t<VERS vnumber=\"37\"> For I tell you that this scripture must be fulfilled in me, 'And he was counted with the transgressors.' For what is written about me is being fulfilled.\"</VERS>\n\t\t\t<VERS vnumber=\"38\"> So they said, \"Look, Lord, here are two swords.\" Then he told them, \"It is enough.\"</VERS>\n\t\t\t<VERS vnumber=\"39\"> Then Jesus went out and made his way, as he customarily did, to the Mount of Olives, and the disciples followed him. </VERS>\n\t\t\t<VERS vnumber=\"40\"> When he came to the place, he said to them, \"Pray that you will not fall into temptation.\"</VERS>\n\t\t\t<VERS vnumber=\"41\"> He went away from them about a stone's throw, knelt down, and prayed,</VERS>\n\t\t\t<VERS vnumber=\"42\"> \"Father, if you are willing, take this cup away from me. Yet not my will but yours be done.\" [ </VERS>\n\t\t\t<VERS vnumber=\"43\"> Then an angel from heaven appeared to him and strengthened him.</VERS>\n\t\t\t<VERS vnumber=\"44\"> And in his anguish he prayed more earnestly, and his sweat was like drops of blood falling to the ground.]</VERS>\n\t\t\t<VERS vnumber=\"45\"> When he got up from prayer, he came to the disciples and found them sleeping, exhausted from grief. </VERS>\n\t\t\t<VERS vnumber=\"46\"> So he said to them, \"Why are you sleeping? Get up and pray that you will not fall into temptation!\"</VERS>\n\t\t\t<VERS vnumber=\"47\"> While he was still speaking, suddenly a crowd appeared, and the man named Judas, one of the twelve, was leading them. He walked up to Jesus to kiss him.</VERS>\n\t\t\t<VERS vnumber=\"48\"> But Jesus said to him, \"Judas, would you betray the Son of Man with a kiss?\"</VERS>\n\t\t\t<VERS vnumber=\"49\"> When those who were around him saw what was about to happen, they said, \"Lord, should we use our swords?\"</VERS>\n\t\t\t<VERS vnumber=\"50\"> Then one of them struck the high priest's slave, cutting off his right ear.</VERS>\n\t\t\t<VERS vnumber=\"51\"> But Jesus said, \"Enough of this!\" And he touched the man's ear and healed him. </VERS>\n\t\t\t<VERS vnumber=\"52\"> Then Jesus said to the chief priests, the officers of the temple guard, and the elders who had come out to get him, \"Have you come out with swords and clubs like you would against an outlaw?</VERS>\n\t\t\t<VERS vnumber=\"53\"> Day after day when I was with you in the temple courts, you did not arrest me. But this is your hour, and that of the power of darkness!\"</VERS>\n\t\t\t<VERS vnumber=\"54\"> Then they arrested Jesus, led him away, and brought him into the high priest's house. But Peter was following at a distance. </VERS>\n\t\t\t<VERS vnumber=\"55\"> When they had made a fire in the middle of the courtyard and sat down together, Peter sat down among them.</VERS>\n\t\t\t<VERS vnumber=\"56\"> Then a slave girl, seeing him as he sat in the firelight, stared at him and said, \"This man was with him too!\" </VERS>\n\t\t\t<VERS vnumber=\"57\"> But Peter denied it: \"Woman, I don't know him!\" </VERS>\n\t\t\t<VERS vnumber=\"58\"> Then a little later someone else saw him and said, \"You are one of them too.\" But Peter said, \"Man, I am not!\" </VERS>\n\t\t\t<VERS vnumber=\"59\"> And after about an hour still another insisted, \"Certainly this man was with him, because he too is a Galilean.\"</VERS>\n\t\t\t<VERS vnumber=\"60\"> But Peter said, \"Man, I don't know what you're talking about!\" At that moment, while he was still speaking, a rooster crowed.</VERS>\n\t\t\t<VERS vnumber=\"61\"> Then the Lord turned and looked straight at Peter, and Peter remembered the word of the Lord, how he had said to him, \"Before a rooster crows today, you will deny me three times.\" </VERS>\n\t\t\t<VERS vnumber=\"62\"> And he went outside and wept bitterly.</VERS>\n\t\t\t<VERS vnumber=\"63\"> Now the men who were holding Jesus under guard began to mock him and beat him. </VERS>\n\t\t\t<VERS vnumber=\"64\"> They blindfolded him and asked him repeatedly, \"Prophesy! Who hit you?\"</VERS>\n\t\t\t<VERS vnumber=\"65\"> They also said many other things against him, reviling him.</VERS>\n\t\t\t<VERS vnumber=\"66\"> When day came, the council of the elders of the people gathered together, both the chief priests and the experts in the law. Then they led Jesus away to their council</VERS>\n\t\t\t<VERS vnumber=\"67\"> and said, \"If you are the Christ, tell us.\" But he said to them, \"If I tell you, you will not believe, </VERS>\n\t\t\t<VERS vnumber=\"68\"> and if I ask you, you will not answer. </VERS>\n\t\t\t<VERS vnumber=\"69\"> But from now on the Son of Man will be seated at the right hand of the power of God.\" </VERS>\n\t\t\t<VERS vnumber=\"70\"> So they all said, \"Are you the Son of God, then?\" He answered them, \"You say that I am.\" </VERS>\n\t\t\t<VERS vnumber=\"71\"> Then they said, \"Why do we need further testimony? We have heard it ourselves from his own lips!\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"23\">\n\t\t\t<VERS vnumber=\"1\"> Then the whole group of them rose up and brought Jesus before Pilate.</VERS>\n\t\t\t<VERS vnumber=\"2\"> They began to accuse him, saying, \"We found this man subverting our nation, forbidding us to pay the tribute tax to Caesar and claiming that he himself is Christ, a king.\" </VERS>\n\t\t\t<VERS vnumber=\"3\"> So Pilate asked Jesus, \"Are you the king of the Jews?\" He replied, \"You say so.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> Then Pilate said to the chief priests and the crowds, \"I find no basis for an accusation against this man.\" </VERS>\n\t\t\t<VERS vnumber=\"5\"> But they persisted in saying, \"He incites the people by teaching throughout all Judea. It started in Galilee and ended up here!\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> Now when Pilate heard this, he asked whether the man was a Galilean.</VERS>\n\t\t\t<VERS vnumber=\"7\"> When he learned that he was from Herod's jurisdiction, he sent him over to Herod, who also happened to be in Jerusalem at that time. </VERS>\n\t\t\t<VERS vnumber=\"8\"> When Herod saw Jesus, he was very glad, for he had long desired to see him, because he had heard about him and was hoping to see him perform some miraculous sign.</VERS>\n\t\t\t<VERS vnumber=\"9\"> So Herod questioned him at considerable length; Jesus gave him no answer. </VERS>\n\t\t\t<VERS vnumber=\"10\"> The chief priests and the experts in the law were there, vehemently accusing him.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Even Herod with his soldiers treated him with contempt and mocked him. Then, dressing him in elegant clothes, Herod sent him back to Pilate. </VERS>\n\t\t\t<VERS vnumber=\"12\"> That very day Herod and Pilate became friends with each other, for prior to this they had been enemies.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Then Pilate called together the chief priests, the rulers, and the people, </VERS>\n\t\t\t<VERS vnumber=\"14\"> and said to them, \"You brought me this man as one who was misleading the people. When I examined him before you, I did not find this man guilty of anything you accused him of doing. </VERS>\n\t\t\t<VERS vnumber=\"15\"> Neither did Herod, for he sent him back to us. Look, he has done nothing deserving death.</VERS>\n\t\t\t<VERS vnumber=\"16\"> I will therefore have him flogged and release him.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> </VERS>\n\t\t\t<VERS vnumber=\"18\"> But they all shouted out together, \"Take this man away! Release Barabbas for us!\" </VERS>\n\t\t\t<VERS vnumber=\"19\"> (This was a man who had been thrown into prison for an insurrection started in the city, and for murder.)</VERS>\n\t\t\t<VERS vnumber=\"20\"> Pilate addressed them once again because he wanted to release Jesus. </VERS>\n\t\t\t<VERS vnumber=\"21\"> But they kept on shouting, \"Crucify, crucify him!\" </VERS>\n\t\t\t<VERS vnumber=\"22\"> A third time he said to them, \"Why? What wrong has he done? I have found him guilty of no crime deserving death. I will therefore flog him and release him.\" </VERS>\n\t\t\t<VERS vnumber=\"23\"> But they were insistent, demanding with loud shouts that he be crucified. And their shouts prevailed. </VERS>\n\t\t\t<VERS vnumber=\"24\"> So Pilate decided that their demand should be granted. </VERS>\n\t\t\t<VERS vnumber=\"25\"> He released the man they asked for, who had been thrown in prison for insurrection and murder. But he handed Jesus over to their will.</VERS>\n\t\t\t<VERS vnumber=\"26\"> As they led him away, they seized Simon of Cyrene, who was coming in from the country. They placed the cross on his back and made him carry it behind Jesus.</VERS>\n\t\t\t<VERS vnumber=\"27\"> A great number of the people followed him, among them women who were mourning and wailing for him. </VERS>\n\t\t\t<VERS vnumber=\"28\"> But Jesus turned to them and said, \"Daughters of Jerusalem, do not weep for me, but weep for yourselves and for your children. </VERS>\n\t\t\t<VERS vnumber=\"29\"> For this is certain: The days are coming when they will say, 'Blessed are the barren, the wombs that never bore children, and the breasts that never nursed!'</VERS>\n\t\t\t<VERS vnumber=\"30\"> Then they will begin to say to the mountains, 'Fall on us!' and to the hills, 'Cover us!'</VERS>\n\t\t\t<VERS vnumber=\"31\"> For if such things are done when the wood is green, what will happen when it is dry?\"</VERS>\n\t\t\t<VERS vnumber=\"32\"> Two other criminals were also led away to be executed with him. </VERS>\n\t\t\t<VERS vnumber=\"33\"> So when they came to the place that is called \"The Skull,\" they crucified him there, along with the criminals, one on his right and one on his left. </VERS>\n\t\t\t<VERS vnumber=\"34\"> [But Jesus said, \"Father, forgive them, for they don't know what they are doing.\"] Then they threw dice to divide his clothes.</VERS>\n\t\t\t<VERS vnumber=\"35\"> The people also stood there watching, but the rulers ridiculed him, saying, \"He saved others. Let him save himself if he is the Christ of God, his chosen one!\" </VERS>\n\t\t\t<VERS vnumber=\"36\"> The soldiers also mocked him, coming up and offering him sour wine,</VERS>\n\t\t\t<VERS vnumber=\"37\"> and saying, \"If you are the king of the Jews, save yourself!\" </VERS>\n\t\t\t<VERS vnumber=\"38\"> There was also an inscription over him, \"This is the king of the Jews.\"</VERS>\n\t\t\t<VERS vnumber=\"39\"> One of the criminals who was hanging there railed at him, saying, \"Aren't you the Christ? Save yourself and us!\" </VERS>\n\t\t\t<VERS vnumber=\"40\"> But the other rebuked him, saying, \"Don't you fear God, since you are under the same sentence of condemnation?</VERS>\n\t\t\t<VERS vnumber=\"41\"> And we rightly so, for we are getting what we deserve for what we did, but this man has done nothing wrong.\"</VERS>\n\t\t\t<VERS vnumber=\"42\"> Then he said, \"Jesus, remember me when you come in your kingdom.\" </VERS>\n\t\t\t<VERS vnumber=\"43\"> And Jesus said to him, \"I tell you the truth, today you will be with me in paradise.\"</VERS>\n\t\t\t<VERS vnumber=\"44\"> It was now about noon, and darkness came over the whole land until three in the afternoon,</VERS>\n\t\t\t<VERS vnumber=\"45\"> because the sun's light failed. The temple curtain was torn in two. </VERS>\n\t\t\t<VERS vnumber=\"46\"> Then Jesus, calling out with a loud voice, said, \"Father, into your hands I commit my spirit!\" And after he said this he breathed his last.</VERS>\n\t\t\t<VERS vnumber=\"47\"> Now when the centurion saw what had happened, he praised God and said, \"Certainly this man was innocent!\"</VERS>\n\t\t\t<VERS vnumber=\"48\"> And all the crowds that had assembled for this spectacle, when they saw what had taken place, returned home beating their breasts.</VERS>\n\t\t\t<VERS vnumber=\"49\"> And all those who knew Jesus stood at a distance, and the women who had followed him from Galilee saw these things.</VERS>\n\t\t\t<VERS vnumber=\"50\"> Now there was a man named Joseph who was a member of the council, a good and righteous man. </VERS>\n\t\t\t<VERS vnumber=\"51\"> (He had not consented to their plan and action.) He was from the Judean town of Arimathea, and was looking forward to the kingdom of God.</VERS>\n\t\t\t<VERS vnumber=\"52\"> He went to Pilate and asked for the body of Jesus. </VERS>\n\t\t\t<VERS vnumber=\"53\"> Then he took it down, wrapped it in a linen cloth, and placed it in a tomb cut out of the rock, where no one had yet been buried.</VERS>\n\t\t\t<VERS vnumber=\"54\"> It was the day of preparation and the Sabbath was beginning.</VERS>\n\t\t\t<VERS vnumber=\"55\"> The women who had accompanied Jesus from Galilee followed, and they saw the tomb and how his body was laid in it. </VERS>\n\t\t\t<VERS vnumber=\"56\"> Then they returned and prepared aromatic spices and perfumes. On the Sabbath they rested according to the commandment.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"24\">\n\t\t\t<VERS vnumber=\"1\"> Now on the first day of the week, at early dawn, the women went to the tomb, taking the aromatic spices they had prepared. </VERS>\n\t\t\t<VERS vnumber=\"2\"> They found that the stone had been rolled away from the tomb,</VERS>\n\t\t\t<VERS vnumber=\"3\"> but when they went in, they did not find the body of the Lord Jesus.</VERS>\n\t\t\t<VERS vnumber=\"4\"> While they were perplexed about this, suddenly two men stood beside them in dazzling attire. </VERS>\n\t\t\t<VERS vnumber=\"5\"> The women were terribly frightened and bowed their faces to the ground, but the men said to them, \"Why do you look for the living among the dead? </VERS>\n\t\t\t<VERS vnumber=\"6\"> He is not here, but has been raised! Remember how he told you, while he was still in Galilee,</VERS>\n\t\t\t<VERS vnumber=\"7\"> that the Son of Man must be delivered into the hands of sinful men, and be crucified, and on the third day rise again.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> Then the women remembered his words,</VERS>\n\t\t\t<VERS vnumber=\"9\"> and when they returned from the tomb they told all these things to the eleven and to all the rest. </VERS>\n\t\t\t<VERS vnumber=\"10\"> Now it was Mary Magdalene, Joanna, Mary the mother of James, and the other women with them who told these things to the apostles. </VERS>\n\t\t\t<VERS vnumber=\"11\"> But these words seemed like pure nonsense to them, and they did not believe them. </VERS>\n\t\t\t<VERS vnumber=\"12\"> But Peter got up and ran to the tomb. He bent down and saw only the strips of linen cloth; then he went home, wondering what had happened.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Now that very day two of them were on their way to a village called Emmaus, about seven miles from Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"14\"> They were talking to each other about all the things that had happened. </VERS>\n\t\t\t<VERS vnumber=\"15\"> While they were talking and debating these things, Jesus himself approached and began to accompany them </VERS>\n\t\t\t<VERS vnumber=\"16\"> (but their eyes were kept from recognizing him).</VERS>\n\t\t\t<VERS vnumber=\"17\"> Then he said to them, \"What are these matters you are discussing so intently as you walk along?\" And they stood still, looking sad. </VERS>\n\t\t\t<VERS vnumber=\"18\"> Then one of them, named Cleopas, answered him, \"Are you the only visitor to Jerusalem who doesn't know the things that have happened there in these days?\" </VERS>\n\t\t\t<VERS vnumber=\"19\"> He said to them, \"What things?\" \"The things concerning Jesus the Nazarene,\" they replied, \"a man who, with his powerful deeds and words, proved to be a prophet before God and all the people;</VERS>\n\t\t\t<VERS vnumber=\"20\"> and how our chief priests and rulers handed him over to be condemned to death, and crucified him. </VERS>\n\t\t\t<VERS vnumber=\"21\"> But we had hoped that he was the one who was going to redeem Israel. Not only this, but it is now the third day since these things happened. </VERS>\n\t\t\t<VERS vnumber=\"22\"> Furthermore, some women of our group amazed us. They were at the tomb early this morning, </VERS>\n\t\t\t<VERS vnumber=\"23\"> and when they did not find his body, they came back and said they had seen a vision of angels, who said he was alive. </VERS>\n\t\t\t<VERS vnumber=\"24\"> Then some of those who were with us went to the tomb, and found it just as the women had said, but they did not see him.\"</VERS>\n\t\t\t<VERS vnumber=\"25\"> So he said to them, \"You foolish people, how slow of heart to believe all that the prophets have spoken!</VERS>\n\t\t\t<VERS vnumber=\"26\"> Wasn't it necessary for the Christ to suffer these things and enter into his glory?\" </VERS>\n\t\t\t<VERS vnumber=\"27\"> Then beginning with Moses and all the prophets, he interpreted to them the things written about himself in all the scriptures.</VERS>\n\t\t\t<VERS vnumber=\"28\"> So they approached the village where they were going. He acted as though he wanted to go farther,</VERS>\n\t\t\t<VERS vnumber=\"29\"> but they urged him, \"Stay with us, because it is getting toward evening and the day is almost done.\" So he went in to stay with them.</VERS>\n\t\t\t<VERS vnumber=\"30\"> When he had taken his place at the table with them, he took the bread, blessed and broke it, and gave it to them. </VERS>\n\t\t\t<VERS vnumber=\"31\"> At this point their eyes were opened and they recognized him. Then he vanished out of their sight. </VERS>\n\t\t\t<VERS vnumber=\"32\"> They said to each other, \"Didn't our hearts burn within us while he was speaking with us on the road, while he was explaining the scriptures to us?\" </VERS>\n\t\t\t<VERS vnumber=\"33\"> So they got up that very hour and returned to Jerusalem. They found the eleven and those with them gathered together </VERS>\n\t\t\t<VERS vnumber=\"34\"> and saying, \"The Lord has really risen, and has appeared to Simon!\"</VERS>\n\t\t\t<VERS vnumber=\"35\"> Then they told what had happened on the road, and how they recognized him when he broke the bread.</VERS>\n\t\t\t<VERS vnumber=\"36\"> While they were saying these things, Jesus himself stood among them and said to them, \"Peace be with you.\"</VERS>\n\t\t\t<VERS vnumber=\"37\"> But they were startled and terrified, thinking they saw a ghost.</VERS>\n\t\t\t<VERS vnumber=\"38\"> Then he said to them, \"Why are you frightened, and why do doubts arise in your hearts? </VERS>\n\t\t\t<VERS vnumber=\"39\"> Look at my hands and my feet; it's me! Touch me and see; a ghost does not have flesh and bones like you see I have.\" </VERS>\n\t\t\t<VERS vnumber=\"40\"> When he had said this, he showed them his hands and his feet.</VERS>\n\t\t\t<VERS vnumber=\"41\"> And while they still could not believe it (because of their joy) and were amazed, he said to them, \"Do you have anything here to eat?\"</VERS>\n\t\t\t<VERS vnumber=\"42\"> So they gave him a piece of broiled fish, </VERS>\n\t\t\t<VERS vnumber=\"43\"> and he took it and ate it in front of them.</VERS>\n\t\t\t<VERS vnumber=\"44\"> Then he said to them, \"These are my words that I spoke to you while I was still with you, that everything written about me in the law of Moses and the prophets and the psalms must be fulfilled.\" </VERS>\n\t\t\t<VERS vnumber=\"45\"> Then he opened their minds so they could understand the scriptures,</VERS>\n\t\t\t<VERS vnumber=\"46\"> and said to them, \"Thus it stands written that the Christ would suffer and would rise from the dead on the third day, </VERS>\n\t\t\t<VERS vnumber=\"47\"> and repentance for the forgiveness of sins would be proclaimed in his name to all nations, beginning from Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"48\"> You are witnesses of these things. </VERS>\n\t\t\t<VERS vnumber=\"49\"> And look, I am sending you what my Father promised. But stay in the city until you have been clothed with power from on high.\"</VERS>\n\t\t\t<VERS vnumber=\"50\"> Then Jesus led them out as far as Bethany, and lifting up his hands, he blessed them. </VERS>\n\t\t\t<VERS vnumber=\"51\"> Now during the blessing he departed and was taken up into heaven.</VERS>\n\t\t\t<VERS vnumber=\"52\"> So they worshiped him and returned to Jerusalem with great joy,</VERS>\n\t\t\t<VERS vnumber=\"53\"> and were continually in the temple courts blessing God.</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"43\" bname=\"John\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> In the beginning was the Word, and the Word was with God, and the Word was fully God.</VERS>\n\t\t\t<VERS vnumber=\"2\"> The Word was with God in the beginning. </VERS>\n\t\t\t<VERS vnumber=\"3\"> All things were created by him, and apart from him not one thing was created that has been created.</VERS>\n\t\t\t<VERS vnumber=\"4\"> In him was life, and the life was the light of mankind.</VERS>\n\t\t\t<VERS vnumber=\"5\"> And the light shines on in the darkness, but the darkness has not mastered it.</VERS>\n\t\t\t<VERS vnumber=\"6\"> A man came, sent from God, whose name was John.</VERS>\n\t\t\t<VERS vnumber=\"7\"> He came as a witness to testify about the light, so that everyone might believe through him. </VERS>\n\t\t\t<VERS vnumber=\"8\"> He himself was not the light, but he came to testify about the light. </VERS>\n\t\t\t<VERS vnumber=\"9\"> The true light, who gives light to everyone, was coming into the world.</VERS>\n\t\t\t<VERS vnumber=\"10\"> He was in the world, and the world was created by him, but the world did not recognize him.</VERS>\n\t\t\t<VERS vnumber=\"11\"> He came to what was his own, but his own people did not receive him.</VERS>\n\t\t\t<VERS vnumber=\"12\"> But to all who have received him, those who believe in his name, he has given the right to become God's children</VERS>\n\t\t\t<VERS vnumber=\"13\"> , children not born by human parents or by human desire or a husband's decision, but by God.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Now the Word became flesh and took up residence among us. We saw his glory, the glory of the one and only, full of grace and truth, who came from the Father.</VERS>\n\t\t\t<VERS vnumber=\"15\"> John testified about him and shouted out, \"This one was the one about whom I said, 'He who comes after me is greater than I am, because he existed before me.'\" </VERS>\n\t\t\t<VERS vnumber=\"16\"> For we have all received from his fullness one gracious gift after another.</VERS>\n\t\t\t<VERS vnumber=\"17\"> For the law was given through Moses, but grace and truth came about through Jesus Christ. </VERS>\n\t\t\t<VERS vnumber=\"18\"> No one has ever seen God. The only one, himself God, who is in closest fellowship with the Father, has made God known.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Now this was John's testimony when the Jewish leaders sent priests and Levites from Jerusalem to ask him, \"Who are you?\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> He confessed, he did not deny but confessed, \"I am not the Christ!\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> So they asked him, \"Then who are you? Are you Elijah?\" He said, \"I am not!\" \"Are you the Prophet?\" He answered, \"No!\" </VERS>\n\t\t\t<VERS vnumber=\"22\"> Then they said to him, \"Who are you? Tell us so that we can give an answer to those who sent us. What do you say about yourself?\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> John said, \"I am the voice of one shouting in the wilderness, 'Make straight the way for the Lord,' as Isaiah the prophet said.\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> (Now they had been sent from the Pharisees.)</VERS>\n\t\t\t<VERS vnumber=\"25\"> So they asked John, \"Why then are you baptizing if you are not the Christ, nor Elijah, nor the Prophet?\"</VERS>\n\t\t\t<VERS vnumber=\"26\"> John answered them, \"I baptize with water. Among you stands one whom you do not recognize,</VERS>\n\t\t\t<VERS vnumber=\"27\"> who is coming after me. I am not worthy to untie the strap of his sandal!\" </VERS>\n\t\t\t<VERS vnumber=\"28\"> These things happened in Bethany across the Jordan River where John was baptizing.</VERS>\n\t\t\t<VERS vnumber=\"29\"> On the next day John saw Jesus coming toward him and said, \"Look, the Lamb of God who takes away the sin of the world! </VERS>\n\t\t\t<VERS vnumber=\"30\"> This is the one about whom I said, 'After me comes a man who is greater than I am, because he existed before me.' </VERS>\n\t\t\t<VERS vnumber=\"31\"> I did not recognize him, but I came baptizing with water so that he could be revealed to Israel.\"</VERS>\n\t\t\t<VERS vnumber=\"32\"> Then John testified, \"I saw the Spirit descending like a dove from heaven, and it remained on him.</VERS>\n\t\t\t<VERS vnumber=\"33\"> And I did not recognize him, but the one who sent me to baptize with water said to me, 'The one on whom you see the Spirit descending and remaining, this is the one who baptizes with the Holy Spirit.'</VERS>\n\t\t\t<VERS vnumber=\"34\"> I have both seen and testified that this man is the Chosen One of God.\"</VERS>\n\t\t\t<VERS vnumber=\"35\"> Again the next day John was standing there with two of his disciples.</VERS>\n\t\t\t<VERS vnumber=\"36\"> Gazing at Jesus as he walked by, he said, \"Look, the Lamb of God!\"</VERS>\n\t\t\t<VERS vnumber=\"37\"> When John's two disciples heard him say this, they followed Jesus.</VERS>\n\t\t\t<VERS vnumber=\"38\"> Jesus turned around and saw them following and said to them, \"What do you want?\" So they said to him, \"Rabbi\" (which is translated Teacher), \"where are you staying?\" </VERS>\n\t\t\t<VERS vnumber=\"39\"> Jesus answered, \"Come and you will see.\" So they came and saw where he was staying, and they stayed with him that day. Now it was about four o'clock in the afternoon.</VERS>\n\t\t\t<VERS vnumber=\"40\"> Andrew, the brother of Simon Peter, was one of the two disciples who heard what John said and followed Jesus.</VERS>\n\t\t\t<VERS vnumber=\"41\"> He first found his own brother Simon and told him, \"We have found the Messiah!\" (which is translated Christ).</VERS>\n\t\t\t<VERS vnumber=\"42\"> Andrew brought Simon to Jesus. Jesus looked at him and said, \"You are Simon, the son of John. You will be called Cephas\" (which is translated Peter).</VERS>\n\t\t\t<VERS vnumber=\"43\"> On the next day Jesus wanted to set out for Galilee. He found Philip and said to him, \"Follow me.\" </VERS>\n\t\t\t<VERS vnumber=\"44\"> (Now Philip was from Bethsaida, the town of Andrew and Peter.) </VERS>\n\t\t\t<VERS vnumber=\"45\"> Philip found Nathanael and told him, \"We have found the one Moses wrote about in the law, and the prophets also wrote about, Jesus of Nazareth, the son of Joseph.\"</VERS>\n\t\t\t<VERS vnumber=\"46\"> Nathanael replied, \"Can anything good come out of Nazareth?\" Philip replied, \"Come and see.\"</VERS>\n\t\t\t<VERS vnumber=\"47\"> Jesus saw Nathanael coming toward him and exclaimed, \"Look, a true Israelite in whom there is no deceit!\"</VERS>\n\t\t\t<VERS vnumber=\"48\"> Nathanael asked him, \"How do you know me?\" Jesus replied, \"Before Philip called you, when you were under the fig tree, I saw you.\" </VERS>\n\t\t\t<VERS vnumber=\"49\"> Nathanael answered him, \"Rabbi, you are the Son of God; you are the king of Israel!\"</VERS>\n\t\t\t<VERS vnumber=\"50\"> Jesus said to him, \"Because I told you that I saw you under the fig tree, do you believe? You will see greater things than these.\"</VERS>\n\t\t\t<VERS vnumber=\"51\"> He continued, \"I tell all of you the solemn truth, you will see heaven opened and the angels of God ascending and descending on the Son of Man.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> Now on the third day there was a wedding at Cana in Galilee. Jesus' mother was there, </VERS>\n\t\t\t<VERS vnumber=\"2\"> and Jesus and his disciples were also invited to the wedding.</VERS>\n\t\t\t<VERS vnumber=\"3\"> When the wine ran out, Jesus' mother said to him, \"They have no wine left.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> Jesus replied, \"Woman, why are you saying this to me? My time has not yet come.\" </VERS>\n\t\t\t<VERS vnumber=\"5\"> His mother told the servants, \"Whatever he tells you, do it.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> Now there were six stone water jars there for Jewish ceremonial washing, each holding twenty or thirty gallons.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Jesus told the servants, \"Fill the water jars with water.\" So they filled them up to the very top. </VERS>\n\t\t\t<VERS vnumber=\"8\"> Then he told them, \"Now draw some out and take it to the head steward,\" and they did. </VERS>\n\t\t\t<VERS vnumber=\"9\"> When the head steward tasted the water that had been turned to wine, not knowing where it came from (though the servants who had drawn the water knew), he called the bridegroom </VERS>\n\t\t\t<VERS vnumber=\"10\"> and said to him, \"Everyone serves the good wine first, and then the cheaper wine when the guests are drunk. You have kept the good wine until now!\" </VERS>\n\t\t\t<VERS vnumber=\"11\"> Jesus did this as the first of his miraculous signs, in Cana of Galilee. In this way he revealed his glory, and his disciples believed in him.</VERS>\n\t\t\t<VERS vnumber=\"12\"> After this he went down to Capernaum with his mother and brothers and his disciples, and they stayed there a few days. </VERS>\n\t\t\t<VERS vnumber=\"13\"> Now the Jewish feast of Passover was near, so Jesus went up to Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"14\">  He found in the temple courts those who were selling oxen and sheep and doves, and the money changers sitting at tables.</VERS>\n\t\t\t<VERS vnumber=\"15\"> So he made a whip of cords and drove them all out of the temple courts, with the sheep and the oxen. He scattered the coins of the money changers and overturned their tables. </VERS>\n\t\t\t<VERS vnumber=\"16\"> To those who sold the doves he said, \"Take these things away from here! Do not make my Father's house a marketplace!\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> His disciples remembered that it was written, \"Zeal for your house will devour me.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> So then the Jewish leaders responded, \"What sign can you show us, since you are doing these things?\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> Jesus replied, \"Destroy this temple and in three days I will raise it up again.\" </VERS>\n\t\t\t<VERS vnumber=\"20\"> Then the Jewish leaders said to him, \"This temple has been under construction for forty-six years, and are you going to raise it up in three days?\" </VERS>\n\t\t\t<VERS vnumber=\"21\"> But Jesus was speaking about the temple of his body.</VERS>\n\t\t\t<VERS vnumber=\"22\"> So after he was raised from the dead, his disciples remembered that he had said this, and they believed the scripture and the saying that Jesus had spoken.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Now while Jesus was in Jerusalem at the feast of the Passover, many people believed in his name because they saw the miraculous signs he was doing.</VERS>\n\t\t\t<VERS vnumber=\"24\"> But Jesus would not entrust himself to them, because he knew all people.</VERS>\n\t\t\t<VERS vnumber=\"25\"> He did not need anyone to testify about man, for he knew what was in man.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> Now a certain man, a Pharisee named Nicodemus, who was a member of the Jewish ruling council,</VERS>\n\t\t\t<VERS vnumber=\"2\"> came to Jesus at night and said to him, \"Rabbi, we know that you are a teacher who has come from God. For no one could perform the miraculous signs that you do unless God is with him.\" </VERS>\n\t\t\t<VERS vnumber=\"3\"> Jesus replied, \"I tell you the solemn truth, unless a person is born from above, he cannot see the kingdom of God.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> Nicodemus said to him, \"How can a man be born when he is old? He cannot enter his mother's womb and be born a second time, can he?\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> Jesus answered, \"I tell you the solemn truth, unless a person is born of water and spirit, he cannot enter the kingdom of God. </VERS>\n\t\t\t<VERS vnumber=\"6\"> What is born of the flesh is flesh, and what is born of the Spirit is spirit. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Do not be amazed that I said to you, 'You must all be born from above.'</VERS>\n\t\t\t<VERS vnumber=\"8\"> The wind blows wherever it will, and you hear the sound it makes, but do not know where it comes from and where it is going. So it is with everyone who is born of the Spirit.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> Nicodemus replied, \"How can these things be?\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> Jesus answered, \"Are you the teacher of Israel and yet you don't understand these things?</VERS>\n\t\t\t<VERS vnumber=\"11\"> I tell you the solemn truth, we speak about what we know and testify about what we have seen, but you people do not accept our testimony.</VERS>\n\t\t\t<VERS vnumber=\"12\"> If I have told you people about earthly things and you don't believe, how will you believe if I tell you about heavenly things?</VERS>\n\t\t\t<VERS vnumber=\"13\"> No one has ascended into heaven except the one who descended from heaven, the Son of Man.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Just as Moses lifted up the serpent in the wilderness, so must the Son of Man be lifted up,</VERS>\n\t\t\t<VERS vnumber=\"15\"> so that everyone who believes in him may have eternal life.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> For this is the way God loved the world: He gave his one and only Son, so that everyone who believes in him will not perish but have eternal life.</VERS>\n\t\t\t<VERS vnumber=\"17\"> For God did not send his Son into the world to condemn the world, but that the world should be saved through him. </VERS>\n\t\t\t<VERS vnumber=\"18\"> The one who believes in him is not condemned. The one who does not believe has been condemned already, because he has not believed in the name of the one and only Son of God.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Now this is the basis for judging: that the light has come into the world and people loved the darkness rather than the light, because their deeds were evil. </VERS>\n\t\t\t<VERS vnumber=\"20\"> For everyone who does evil deeds hates the light and does not come to the light, so that their deeds will not be exposed.</VERS>\n\t\t\t<VERS vnumber=\"21\"> But the one who practices the truth comes to the light, so that it may be plainly evident that his deeds have been done in God.</VERS>\n\t\t\t<VERS vnumber=\"22\"> After this, Jesus and his disciples came into Judean territory, and there he spent time with them and was baptizing. </VERS>\n\t\t\t<VERS vnumber=\"23\"> John was also baptizing at Aenon near Salim, because water was plentiful there, and people were coming to him and being baptized. </VERS>\n\t\t\t<VERS vnumber=\"24\"> (For John had not yet been thrown into prison.)</VERS>\n\t\t\t<VERS vnumber=\"25\"> Now a dispute came about between some of John's disciples and a certain Jew concerning ceremonial washing.</VERS>\n\t\t\t<VERS vnumber=\"26\"> So they came to John and said to him, \"Rabbi, the one who was with you on the other side of the Jordan River, about whom you testified, see, he is baptizing, and everyone is flocking to him!\"</VERS>\n\t\t\t<VERS vnumber=\"27\"> John replied, \"No one can receive anything unless it has been given to him from heaven. </VERS>\n\t\t\t<VERS vnumber=\"28\"> You yourselves can testify that I said, 'I am not the Christ,' but rather, 'I have been sent before him.' </VERS>\n\t\t\t<VERS vnumber=\"29\"> The one who has the bride is the bridegroom. The friend of the bridegroom, who stands by and listens for him, rejoices greatly when he hears the bridegroom's voice. This then is my joy, and it is complete.</VERS>\n\t\t\t<VERS vnumber=\"30\"> He must become more important while I become less important.\"</VERS>\n\t\t\t<VERS vnumber=\"31\"> The one who comes from above is superior to all. The one who is from the earth belongs to the earth and speaks about earthly things. The one who comes from heaven is superior to all.</VERS>\n\t\t\t<VERS vnumber=\"32\"> He testifies about what he has seen and heard, but no one accepts his testimony.</VERS>\n\t\t\t<VERS vnumber=\"33\"> The one who has accepted his testimony has confirmed clearly that God is truthful.</VERS>\n\t\t\t<VERS vnumber=\"34\"> For the one whom God has sent speaks the words of God, for he does not give the Spirit sparingly.</VERS>\n\t\t\t<VERS vnumber=\"35\"> The Father loves the Son and has placed all things under his authority.</VERS>\n\t\t\t<VERS vnumber=\"36\"> The one who believes in the Son has eternal life. The one who rejects the Son will not see life, but God's wrath remains on him.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\"> Now when Jesus knew that the Pharisees had heard that he was winning and baptizing more disciples than John </VERS>\n\t\t\t<VERS vnumber=\"2\"> (although Jesus himself was not baptizing, but his disciples were),</VERS>\n\t\t\t<VERS vnumber=\"3\"> he left Judea and set out once more for Galilee.</VERS>\n\t\t\t<VERS vnumber=\"4\"> But he had to pass through Samaria.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Now he came to a Samaritan town called Sychar, near the plot of land that Jacob had given to his son Joseph.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Jacob's well was there, so Jesus, since he was tired from the journey, sat right down beside the well. It was about noon.</VERS>\n\t\t\t<VERS vnumber=\"7\"> A Samaritan woman came to draw water. Jesus said to her, \"Give me some water to drink.\" </VERS>\n\t\t\t<VERS vnumber=\"8\"> (For his disciples had gone off into the town to buy supplies.)</VERS>\n\t\t\t<VERS vnumber=\"9\"> So the Samaritan woman said to him, \"How can you, a Jew, ask me, a Samaritan woman, for water to drink?\" (For Jews use nothing in common with Samaritans.)</VERS>\n\t\t\t<VERS vnumber=\"10\"> Jesus answered her, \"If you had known the gift of God and who it is who said to you, 'Give me some water to drink,' you would have asked him, and he would have given you living water.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"Sir,\" the woman said to him, \"you have no bucket and the well is deep; where then do you get this living water?</VERS>\n\t\t\t<VERS vnumber=\"12\"> Surely you're not greater than our ancestor Jacob, are you? For he gave us this well and drank from it himself, along with his sons and his livestock.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> Jesus replied, \"Everyone who drinks some of this water will be thirsty again. </VERS>\n\t\t\t<VERS vnumber=\"14\"> But whoever drinks some of the water that I will give him will never be thirsty again, but the water that I will give him will become in him a fountain of water springing up to eternal life.\" </VERS>\n\t\t\t<VERS vnumber=\"15\"> The woman said to him, \"Sir, give me this water, so that I will not be thirsty or have to come here to draw water.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> He said to her, \"Go call your husband and come back here.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> The woman replied, \"I have no husband.\" Jesus said to her, \"Right you are when you said, 'I have no husband,'</VERS>\n\t\t\t<VERS vnumber=\"18\"> for you have had five husbands, and the man you are living with now is not your husband. This you said truthfully!\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> The woman said to him, \"Sir, I see that you are a prophet. </VERS>\n\t\t\t<VERS vnumber=\"20\"> Our fathers worshiped on this mountain, and you people say that the place where people must worship is in Jerusalem.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> Jesus said to her, \"Believe me, woman, a time is coming when you will worship the Father neither on this mountain nor in Jerusalem. </VERS>\n\t\t\t<VERS vnumber=\"22\"> You people worship what you do not know. We worship what we know, because salvation is from the Jews.</VERS>\n\t\t\t<VERS vnumber=\"23\"> But a time is coming, and now is here, when the true worshipers will worship the Father in spirit and truth, for the Father seeks such people to be his worshipers.</VERS>\n\t\t\t<VERS vnumber=\"24\"> God is spirit, and the people who worship him must worship in spirit and truth.\" </VERS>\n\t\t\t<VERS vnumber=\"25\"> The woman said to him, \"I know that Messiah is coming\" (the one called Christ); \"whenever he comes, he will tell us everything.\"</VERS>\n\t\t\t<VERS vnumber=\"26\"> Jesus said to her, \"I, the one speaking to you, am he.\"</VERS>\n\t\t\t<VERS vnumber=\"27\"> Now at that very moment his disciples came back. They were shocked because he was speaking with a woman. However, no one said, \"What do you want?\" or \"Why are you speaking with her?\" </VERS>\n\t\t\t<VERS vnumber=\"28\"> Then the woman left her water jar, went off into the town and said to the people,</VERS>\n\t\t\t<VERS vnumber=\"29\"> \"Come, see a man who told me everything I ever did. Surely he can't be the Messiah, can he?\"</VERS>\n\t\t\t<VERS vnumber=\"30\"> So they left the town and began coming to him.</VERS>\n\t\t\t<VERS vnumber=\"31\"> Meanwhile the disciples were urging him, \"Rabbi, eat something.\"</VERS>\n\t\t\t<VERS vnumber=\"32\"> But he said to them, \"I have food to eat that you know nothing about.\"</VERS>\n\t\t\t<VERS vnumber=\"33\"> So the disciples began to say to one another, \"No one brought him anything to eat, did they?\"</VERS>\n\t\t\t<VERS vnumber=\"34\"> Jesus said to them, \"My food is to do the will of the one who sent me and to complete his work.</VERS>\n\t\t\t<VERS vnumber=\"35\"> Don't you say, 'There are four more months and then comes the harvest?' I tell you, look up and see that the fields are already white for harvest! </VERS>\n\t\t\t<VERS vnumber=\"36\"> The one who reaps receives pay and gathers fruit for eternal life, so that the one who sows and the one who reaps can rejoice together. </VERS>\n\t\t\t<VERS vnumber=\"37\"> For in this instance the saying is true, 'One sows and another reaps.' </VERS>\n\t\t\t<VERS vnumber=\"38\"> I sent you to reap what you did not work for; others have labored and you have entered into their labor.\"</VERS>\n\t\t\t<VERS vnumber=\"39\"> Now many Samaritans from that town believed in him because of the report of the woman who testified, \"He told me everything I ever did.\" </VERS>\n\t\t\t<VERS vnumber=\"40\"> So when the Samaritans came to him, they began asking him to stay with them. He stayed there two days, </VERS>\n\t\t\t<VERS vnumber=\"41\"> and because of his word many more believed. </VERS>\n\t\t\t<VERS vnumber=\"42\"> They said to the woman, \"No longer do we believe because of your words, for we have heard for ourselves, and we know that this one really is the Savior of the world.\"</VERS>\n\t\t\t<VERS vnumber=\"43\"> After the two days he departed from there to Galilee.</VERS>\n\t\t\t<VERS vnumber=\"44\"> (For Jesus himself had testified that a prophet has no honor in his own country.)</VERS>\n\t\t\t<VERS vnumber=\"45\"> So when he came to Galilee, the Galileans welcomed him because they had seen all the things he had done in Jerusalem at the feast (for they themselves had gone to the feast).</VERS>\n\t\t\t<VERS vnumber=\"46\"> Now he came again to Cana in Galilee where he had made the water wine. In Capernaum there was a certain royal official whose son was sick. </VERS>\n\t\t\t<VERS vnumber=\"47\"> When he heard that Jesus had come back from Judea to Galilee, he went to him and begged him to come down and heal his son, who was about to die. </VERS>\n\t\t\t<VERS vnumber=\"48\"> So Jesus said to him, \"Unless you people see signs and wonders you will never believe!\"</VERS>\n\t\t\t<VERS vnumber=\"49\"> \"Sir,\" the official said to him, \"come down before my child dies.\"</VERS>\n\t\t\t<VERS vnumber=\"50\"> Jesus told him, \"Go home; your son will live.\" The man believed the word that Jesus spoke to him, and set off for home.</VERS>\n\t\t\t<VERS vnumber=\"51\"> While he was on his way down, his slaves met him and told him that his son was going to live. </VERS>\n\t\t\t<VERS vnumber=\"52\"> So he asked them the time when his condition began to improve, and they told him, \"Yesterday at one o'clock in the afternoon the fever left him.\" </VERS>\n\t\t\t<VERS vnumber=\"53\"> Then the father realized that it was the very time Jesus had said to him, \"Your son will live,\" and he himself believed along with his entire household. </VERS>\n\t\t\t<VERS vnumber=\"54\"> Jesus did this as his second miraculous sign when he returned from Judea to Galilee.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"5\">\n\t\t\t<VERS vnumber=\"1\"> After this there was a Jewish feast, and Jesus went up to Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Now there is in Jerusalem by the Sheep Gate a pool called Bethzatha in Aramaic, which has five covered walkways.</VERS>\n\t\t\t<VERS vnumber=\"3\"> A great number of sick, blind, lame, and paralyzed people were lying in these walkways.</VERS>\n\t\t\t<VERS vnumber=\"4\"> </VERS>\n\t\t\t<VERS vnumber=\"5\"> Now a man was there who had been disabled for thirty-eight years.</VERS>\n\t\t\t<VERS vnumber=\"6\"> When Jesus saw him lying there and when he realized that the man had been disabled a long time already, he said to him, \"Do you want to become well?\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> The sick man answered him, \"Sir, I have no one to put me into the pool when the water is stirred up. While I am trying to get into the water, someone else goes down there before me.\" </VERS>\n\t\t\t<VERS vnumber=\"8\"> Jesus said to him, \"Stand up! Pick up your mat and walk.\" </VERS>\n\t\t\t<VERS vnumber=\"9\"> Immediately the man was healed, and he picked up his mat and started walking. (Now that day was a Sabbath.)</VERS>\n\t\t\t<VERS vnumber=\"10\"> So the Jewish leaders said to the man who had been healed, \"It is the Sabbath, and you are not permitted to carry your mat.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> But he answered them, \"The man who made me well said to me, 'Pick up your mat and walk.'\" </VERS>\n\t\t\t<VERS vnumber=\"12\"> They asked him, \"Who is the man who said to you, 'Pick up your mat and walk'?\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> But the man who had been healed did not know who it was, for Jesus had slipped out, since there was a crowd in that place.</VERS>\n\t\t\t<VERS vnumber=\"14\"> After this Jesus found him at the temple and said to him, \"Look, you have become well. Don't sin any more, lest anything worse happen to you.\" </VERS>\n\t\t\t<VERS vnumber=\"15\"> The man went away and informed the Jewish leaders that Jesus was the one who had made him well.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Now because Jesus was doing these things on the Sabbath, the Jewish leaders began persecuting him. </VERS>\n\t\t\t<VERS vnumber=\"17\"> So he told them, \"My Father is working until now, and I too am working.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> For this reason the Jewish leaders were trying even harder to kill him, because not only was he breaking the Sabbath, but he was also calling God his own Father, thus making himself equal with God.</VERS>\n\t\t\t<VERS vnumber=\"19\"> So Jesus answered them, \"I tell you the solemn truth, the Son can do nothing on his own initiative, but only what he sees the Father doing. For whatever the Father does, the Son does likewise.</VERS>\n\t\t\t<VERS vnumber=\"20\"> For the Father loves the Son and shows him everything he does, and will show him greater deeds than these, so that you will be amazed.</VERS>\n\t\t\t<VERS vnumber=\"21\"> For just as the Father raises the dead and gives them life, so also the Son gives life to whomever he wishes.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Furthermore, the Father does not judge anyone, but has assigned all judgment to the Son, </VERS>\n\t\t\t<VERS vnumber=\"23\"> so that all people will honor the Son just as they honor the Father. The one who does not honor the Son does not honor the Father who sent him.</VERS>\n\t\t\t<VERS vnumber=\"24\"> \"I tell you the solemn truth, the one who hears my message and believes the one who sent me has eternal life and will not be condemned, but has crossed over from death to life. </VERS>\n\t\t\t<VERS vnumber=\"25\"> I tell you the solemn truth, a time is coming, and is now here, when the dead will hear the voice of the Son of God, and those who hear will live.</VERS>\n\t\t\t<VERS vnumber=\"26\"> For just as the Father has life in himself, thus he has granted the Son to have life in himself,</VERS>\n\t\t\t<VERS vnumber=\"27\"> and he has granted the Son authority to execute judgment, because he is the Son of Man.</VERS>\n\t\t\t<VERS vnumber=\"28\"> \"Do not be amazed at this, because a time is coming when all who are in the tombs will hear his voice </VERS>\n\t\t\t<VERS vnumber=\"29\"> and will come out, the ones who have done what is good to the resurrection resulting in life, and the ones who have done what is evil to the resurrection resulting in condemnation.</VERS>\n\t\t\t<VERS vnumber=\"30\"> I can do nothing on my own initiative. Just as I hear, I judge, and my judgment is just, because I do not seek my own will, but the will of the one who sent me.</VERS>\n\t\t\t<VERS vnumber=\"31\"> \"If I testify about myself, my testimony is not true.</VERS>\n\t\t\t<VERS vnumber=\"32\"> There is another who testifies about me, and I know the testimony he testifies about me is true. </VERS>\n\t\t\t<VERS vnumber=\"33\"> You have sent to John, and he has testified to the truth. </VERS>\n\t\t\t<VERS vnumber=\"34\"> (I do not accept human testimony, but I say this so that you may be saved.) </VERS>\n\t\t\t<VERS vnumber=\"35\"> He was a lamp that was burning and shining, and you wanted to rejoice greatly for a short time in his light.</VERS>\n\t\t\t<VERS vnumber=\"36\"> \"But I have a testimony greater than that from John. For the deeds that the Father has assigned me to complete, the deeds I am now doing, testify about me that the Father has sent me.</VERS>\n\t\t\t<VERS vnumber=\"37\"> And the Father who sent me has himself testified about me. You people have never heard his voice nor seen his form at any time,</VERS>\n\t\t\t<VERS vnumber=\"38\"> nor do you have his word residing in you, because you do not believe the one whom he sent.</VERS>\n\t\t\t<VERS vnumber=\"39\"> You study the scriptures thoroughly because you think in them you possess eternal life, and it is these same scriptures that testify about me, </VERS>\n\t\t\t<VERS vnumber=\"40\"> but you are not willing to come to me so that you may have life.</VERS>\n\t\t\t<VERS vnumber=\"41\"> \"I do not accept praise from people,</VERS>\n\t\t\t<VERS vnumber=\"42\"> but I know you, that you do not have the love of God within you. </VERS>\n\t\t\t<VERS vnumber=\"43\"> I have come in my Father's name, and you do not accept me. If someone else comes in his own name, you will accept him. </VERS>\n\t\t\t<VERS vnumber=\"44\"> How can you believe, if you accept praise from one another and don't seek the praise that comes from the only God?</VERS>\n\t\t\t<VERS vnumber=\"45\"> \"Do not suppose that I will accuse you before the Father. The one who accuses you is Moses, in whom you have placed your hope.</VERS>\n\t\t\t<VERS vnumber=\"46\"> If you believed Moses, you would believe me, because he wrote about me. </VERS>\n\t\t\t<VERS vnumber=\"47\"> But if you do not believe what Moses wrote, how will you believe my words?\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"6\">\n\t\t\t<VERS vnumber=\"1\"> After this Jesus went away to the other side of the Sea of Galilee (also called the Sea of Tiberias).</VERS>\n\t\t\t<VERS vnumber=\"2\"> A large crowd was following him because they were observing the miraculous signs he was performing on the sick.</VERS>\n\t\t\t<VERS vnumber=\"3\"> So Jesus went on up the mountainside and sat down there with his disciples. </VERS>\n\t\t\t<VERS vnumber=\"4\"> (Now the Jewish feast of the Passover was near.)</VERS>\n\t\t\t<VERS vnumber=\"5\"> Then Jesus, when he looked up and saw that a large crowd was coming to him, said to Philip, \"Where can we buy bread so that these people may eat?\" </VERS>\n\t\t\t<VERS vnumber=\"6\"> (Now Jesus said this to test him, for he knew what he was going to do.)</VERS>\n\t\t\t<VERS vnumber=\"7\"> Philip replied, \"Two hundred silver coins worth of bread would not be enough for them, for each one to get a little.\" </VERS>\n\t\t\t<VERS vnumber=\"8\"> One of Jesus' disciples, Andrew, Simon Peter's brother, said to him, </VERS>\n\t\t\t<VERS vnumber=\"9\"> \"Here is a boy who has five barley loaves and two fish, but what good are these for so many people?\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> Jesus said, \"Have the people sit down.\" (Now there was a lot of grass in that place.) So the men sat down, about five thousand in number. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Then Jesus took the loaves, and when he had given thanks, he distributed the bread to those who were seated. He then did the same with the fish, as much as they wanted. </VERS>\n\t\t\t<VERS vnumber=\"12\"> When they were all satisfied, Jesus said to his disciples, \"Gather up the broken pieces that are left over, so that nothing is wasted.\" </VERS>\n\t\t\t<VERS vnumber=\"13\"> So they gathered them up and filled twelve baskets with broken pieces from the five barley loaves left over by the people who had eaten.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Now when the people saw the miraculous sign that Jesus performed, they began to say to one another, \"This is certainly the Prophet who is to come into the world.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> Then Jesus, because he knew they were going to come and seize him by force to make him king, withdrew again up the mountainside alone.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Now when evening came, his disciples went down to the lake,</VERS>\n\t\t\t<VERS vnumber=\"17\"> got into a boat, and started to cross the lake to Capernaum. (It had already become dark, and Jesus had not yet come to them.)</VERS>\n\t\t\t<VERS vnumber=\"18\"> By now a strong wind was blowing and the sea was getting rough.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Then, when they had rowed about three or four miles, they caught sight of Jesus walking on the lake, approaching the boat, and they were frightened. </VERS>\n\t\t\t<VERS vnumber=\"20\"> But he said to them, \"It is I. Do not be afraid.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> Then they wanted to take him into the boat, and immediately the boat came to the land where they had been heading.</VERS>\n\t\t\t<VERS vnumber=\"22\"> The next day the crowd that remained on the other side of the lake realized that only one small boat had been there, and that Jesus had not boarded it with his disciples, but that his disciples had gone away alone. </VERS>\n\t\t\t<VERS vnumber=\"23\"> But some boats from Tiberias came to shore near the place where they had eaten the bread after the Lord had given thanks.</VERS>\n\t\t\t<VERS vnumber=\"24\"> So when the crowd realized that neither Jesus nor his disciples were there, they got into the boats and came to Capernaum looking for Jesus.</VERS>\n\t\t\t<VERS vnumber=\"25\"> When they found him on the other side of the lake, they said to him, \"Rabbi, when did you get here?\"</VERS>\n\t\t\t<VERS vnumber=\"26\"> Jesus replied, \"I tell you the solemn truth, you are looking for me not because you saw miraculous signs, but because you ate all the loaves of bread you wanted.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Do not work for the food that disappears, but for the food that remains to eternal life, the food which the Son of Man will give to you. For God the Father has put his seal of approval on him.\"</VERS>\n\t\t\t<VERS vnumber=\"28\"> So then they said to him, \"What must we do to accomplish the deeds God requires?\"</VERS>\n\t\t\t<VERS vnumber=\"29\"> Jesus replied, \"This is the deed God requires, to believe in the one whom he sent.\"</VERS>\n\t\t\t<VERS vnumber=\"30\"> So they said to him, \"Then what miraculous sign will you perform, so that we may see it and believe you? What will you do?</VERS>\n\t\t\t<VERS vnumber=\"31\"> Our ancestors ate the manna in the wilderness, just as it is written, 'He gave them bread from heaven to eat.'\"</VERS>\n\t\t\t<VERS vnumber=\"32\"> Then Jesus told them, \"I tell you the solemn truth, it is not Moses who has given you the bread from heaven, but my Father is giving you the true bread from heaven. </VERS>\n\t\t\t<VERS vnumber=\"33\"> For the bread of God is the one who comes down from heaven and gives life to the world.\" </VERS>\n\t\t\t<VERS vnumber=\"34\"> So they said to him, \"Sir, give us this bread all the time!\"</VERS>\n\t\t\t<VERS vnumber=\"35\"> Jesus said to them, \"I am the bread of life. The one who comes to me will never go hungry, and the one who believes in me will never be thirsty.</VERS>\n\t\t\t<VERS vnumber=\"36\"> But I told you that you have seen me and still do not believe. </VERS>\n\t\t\t<VERS vnumber=\"37\"> Everyone whom the Father gives me will come to me, and the one who comes to me I will never send away.</VERS>\n\t\t\t<VERS vnumber=\"38\"> For I have come down from heaven not to do my own will but the will of the one who sent me.</VERS>\n\t\t\t<VERS vnumber=\"39\"> Now this is the will of the one who sent me, that I should not lose one person of every one he has given me, but raise them all up at the last day.</VERS>\n\t\t\t<VERS vnumber=\"40\"> For this is the will of my Father, for everyone who looks on the Son and believes in him to have eternal life, and I will raise him up at the last day.\"</VERS>\n\t\t\t<VERS vnumber=\"41\"> Then the Jews who were hostile to Jesus began complaining about him because he said, \"I am the bread that came down from heaven,\" </VERS>\n\t\t\t<VERS vnumber=\"42\"> and they said, \"Isn't this Jesus the son of Joseph, whose father and mother we know? How can he now say, 'I have come down from heaven'?\"</VERS>\n\t\t\t<VERS vnumber=\"43\"> Jesus replied, \"Do not complain about me to one another.</VERS>\n\t\t\t<VERS vnumber=\"44\"> No one can come to me unless the Father who sent me draws him, and I will raise him up at the last day. </VERS>\n\t\t\t<VERS vnumber=\"45\"> It is written in the prophets, 'And they will all be taught by God.' Everyone who hears and learns from the Father comes to me. </VERS>\n\t\t\t<VERS vnumber=\"46\"> (Not that anyone has seen the Father except the one who is from God, he has seen the Father.)</VERS>\n\t\t\t<VERS vnumber=\"47\"> I tell you the solemn truth, the one who believes has eternal life.</VERS>\n\t\t\t<VERS vnumber=\"48\"> I am the bread of life.</VERS>\n\t\t\t<VERS vnumber=\"49\"> Your ancestors ate the manna in the wilderness, and they died. </VERS>\n\t\t\t<VERS vnumber=\"50\"> This is the bread that has come down from heaven, so that a person may eat from it and not die. </VERS>\n\t\t\t<VERS vnumber=\"51\"> I am the living bread that came down from heaven. If anyone eats from this bread he will live forever. The bread that I will give for the life of the world is my flesh.\"</VERS>\n\t\t\t<VERS vnumber=\"52\"> Then the Jews who were hostile to Jesus began to argue with one another, \"How can this man give us his flesh to eat?\" </VERS>\n\t\t\t<VERS vnumber=\"53\"> Jesus said to them, \"I tell you the solemn truth, unless you eat the flesh of the Son of Man and drink his blood, you have no life in yourselves. </VERS>\n\t\t\t<VERS vnumber=\"54\"> The one who eats my flesh and drinks my blood has eternal life, and I will raise him up on the last day.</VERS>\n\t\t\t<VERS vnumber=\"55\"> For my flesh is true food, and my blood is true drink. </VERS>\n\t\t\t<VERS vnumber=\"56\"> The one who eats my flesh and drinks my blood resides in me, and I in him.</VERS>\n\t\t\t<VERS vnumber=\"57\"> Just as the living Father sent me, and I live because of the Father, so the one who consumes me will live because of me. </VERS>\n\t\t\t<VERS vnumber=\"58\"> This is the bread that came down from heaven; it is not like the bread your ancestors ate, but then later died. The one who eats this bread will live forever.\"</VERS>\n\t\t\t<VERS vnumber=\"59\"> Jesus said these things while he was teaching in the synagogue in Capernaum.</VERS>\n\t\t\t<VERS vnumber=\"60\"> Then many of his disciples, when they heard these things, said, \"This is a difficult saying! Who can understand it?\"</VERS>\n\t\t\t<VERS vnumber=\"61\"> When Jesus was aware that his disciples were complaining about this, he said to them, \"Does this cause you to be offended?</VERS>\n\t\t\t<VERS vnumber=\"62\"> Then what if you see the Son of Man ascending where he was before?</VERS>\n\t\t\t<VERS vnumber=\"63\"> The Spirit is the one who gives life; human nature is of no help! The words that I have spoken to you are spirit and are life.</VERS>\n\t\t\t<VERS vnumber=\"64\"> But there are some of you who do not believe.\" (For Jesus had already known from the beginning who those were who did not believe, and who it was who would betray him.)</VERS>\n\t\t\t<VERS vnumber=\"65\"> So Jesus added, \"Because of this I told you that no one can come to me unless the Father has allowed him to come.\"</VERS>\n\t\t\t<VERS vnumber=\"66\"> After this many of his disciples quit following him and did not accompany him any longer. </VERS>\n\t\t\t<VERS vnumber=\"67\"> So Jesus said to the twelve, \"You don't want to go away too, do you?\"</VERS>\n\t\t\t<VERS vnumber=\"68\"> Simon Peter answered him, \"Lord, to whom would we go? You have the words of eternal life.</VERS>\n\t\t\t<VERS vnumber=\"69\"> We have come to believe and to know that you are the Holy One of God!\"</VERS>\n\t\t\t<VERS vnumber=\"70\"> Jesus replied, \"Didn't I choose you, the twelve, and yet one of you is the devil?\"</VERS>\n\t\t\t<VERS vnumber=\"71\"> (Now he said this about Judas son of Simon Iscariot, for Judas, one of the twelve, was going to betray him.)</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"7\">\n\t\t\t<VERS vnumber=\"1\"> After this Jesus traveled throughout Galilee. He stayed out of Judea because the Jewish leaders wanted to kill him.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Now the Jewish feast of Tabernacles was near.</VERS>\n\t\t\t<VERS vnumber=\"3\"> So Jesus' brothers advised him, \"Leave here and go to Judea so your disciples may see your miracles that you are performing.</VERS>\n\t\t\t<VERS vnumber=\"4\"> For no one who seeks to make a reputation for himself does anything in secret. If you are doing these things, show yourself to the world.\" </VERS>\n\t\t\t<VERS vnumber=\"5\"> (For not even his own brothers believed in him.)</VERS>\n\t\t\t<VERS vnumber=\"6\"> So Jesus replied, \"My time has not yet arrived, but you are ready at any opportunity!</VERS>\n\t\t\t<VERS vnumber=\"7\"> The world cannot hate you, but it hates me, because I am testifying about it that its deeds are evil.</VERS>\n\t\t\t<VERS vnumber=\"8\"> You go up to the feast yourselves. I am not going up to this feast because my time has not yet fully arrived.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> When he had said this, he remained in Galilee.</VERS>\n\t\t\t<VERS vnumber=\"10\"> But when his brothers had gone up to the feast, then Jesus himself also went up, not openly but in secret.</VERS>\n\t\t\t<VERS vnumber=\"11\"> So the Jewish leaders were looking for him at the feast, asking, \"Where is he?\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> There was a lot of grumbling about him among the crowds. Some were saying, \"He is a good man,\" but others, \"He deceives the common people.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> However, no one spoke openly about him for fear of the Jewish leaders.</VERS>\n\t\t\t<VERS vnumber=\"14\"> When the feast was half over, Jesus went up to the temple courts and began to teach.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Then the Jewish leaders were astonished and said, \"How does this man know so much when he has never had formal instruction?\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> So Jesus replied, \"My teaching is not from me, but from the one who sent me.</VERS>\n\t\t\t<VERS vnumber=\"17\"> If anyone wants to do God's will, he will know about my teaching, whether it is from God or whether I speak from my own authority.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The person who speaks on his own authority desires to receive honor for himself; the one who desires the honor of the one who sent him is a man of integrity, and there is no unrighteousness in him. </VERS>\n\t\t\t<VERS vnumber=\"19\"> Hasn't Moses given you the law? Yet not one of you keeps the law! Why do you want to kill me?\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> The crowd answered, \"You're possessed by a demon! Who is trying to kill you?\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> Jesus replied, \"I performed one miracle and you are all amazed.</VERS>\n\t\t\t<VERS vnumber=\"22\"> However, because Moses gave you the practice of circumcision (not that it came from Moses, but from the forefathers), you circumcise a male child on the Sabbath. </VERS>\n\t\t\t<VERS vnumber=\"23\"> But if a male child is circumcised on the Sabbath so that the law of Moses is not broken, why are you angry with me because I made a man completely well on the Sabbath? </VERS>\n\t\t\t<VERS vnumber=\"24\"> Do not judge according to external appearance, but judge with proper judgment.\"</VERS>\n\t\t\t<VERS vnumber=\"25\"> Then some of the residents of Jerusalem began to say, \"Isn't this the man they are trying to kill? </VERS>\n\t\t\t<VERS vnumber=\"26\"> Yet here he is, speaking publicly, and they are saying nothing to him. Do the rulers really know that this man is the Christ?</VERS>\n\t\t\t<VERS vnumber=\"27\"> But we know where this man comes from. Whenever the Christ comes, no one will know where he comes from.\"</VERS>\n\t\t\t<VERS vnumber=\"28\"> Then Jesus, while teaching in the temple courts, cried out, \"You both know me and know where I come from! And I have not come on my own initiative, but the one who sent me is true. You do not know him,</VERS>\n\t\t\t<VERS vnumber=\"29\"> but I know him, because I have come from him and he sent me.\"</VERS>\n\t\t\t<VERS vnumber=\"30\"> So then they tried to seize Jesus, but no one laid a hand on him, because his time had not yet come. </VERS>\n\t\t\t<VERS vnumber=\"31\"> Yet many of the crowd believed in him and said, \"Whenever the Christ comes, he won't perform more miraculous signs than this man did, will he?\"</VERS>\n\t\t\t<VERS vnumber=\"32\"> The Pharisees heard the crowd murmuring these things about Jesus, so the chief priests and the Pharisees sent officers to arrest him.</VERS>\n\t\t\t<VERS vnumber=\"33\"> Then Jesus said, \"I will be with you for only a little while longer, and then I am going to the one who sent me. </VERS>\n\t\t\t<VERS vnumber=\"34\"> You will look for me but will not find me, and where I am you cannot come.\"</VERS>\n\t\t\t<VERS vnumber=\"35\"> Then the Jewish leaders said to one another, \"Where is he going to go that we cannot find him? He is not going to go to the Jewish people dispersed among the Greeks and teach the Greeks, is he?</VERS>\n\t\t\t<VERS vnumber=\"36\"> What did he mean by saying, 'You will look for me but will not find me, and where I am you cannot come'?\"</VERS>\n\t\t\t<VERS vnumber=\"37\"> On the last day of the feast, the greatest day, Jesus stood up and shouted out, \"If anyone is thirsty, let him come to me, and </VERS>\n\t\t\t<VERS vnumber=\"38\"> let the one who believes in me drink. Just as the scripture says, 'From within him will flow rivers of living water.'\"</VERS>\n\t\t\t<VERS vnumber=\"39\"> (Now he said this about the Spirit, whom those who believed in him were going to receive, for the Spirit had not yet been given, because Jesus was not yet glorified.)</VERS>\n\t\t\t<VERS vnumber=\"40\"> When they heard these words, some of the crowd began to say, \"This really is the Prophet!\"</VERS>\n\t\t\t<VERS vnumber=\"41\"> Others said, \"This is the Christ!\" But still others said, \"No, for the Christ doesn't come from Galilee, does he?</VERS>\n\t\t\t<VERS vnumber=\"42\"> Don't the scriptures say that the Christ is a descendant of David and comes from Bethlehem, the village where David lived?\"</VERS>\n\t\t\t<VERS vnumber=\"43\"> So there was a division in the crowd because of Jesus.</VERS>\n\t\t\t<VERS vnumber=\"44\"> Some of them were wanting to seize him, but no one laid a hand on him.</VERS>\n\t\t\t<VERS vnumber=\"45\"> Then the officers returned to the chief priests and Pharisees, who said to them, \"Why didn't you bring him back with you?\"</VERS>\n\t\t\t<VERS vnumber=\"46\"> The officers replied, \"No one ever spoke like this man!\"</VERS>\n\t\t\t<VERS vnumber=\"47\"> Then the Pharisees answered, \"You haven't been deceived too, have you?</VERS>\n\t\t\t<VERS vnumber=\"48\"> None of the rulers or the Pharisees have believed in him, have they?</VERS>\n\t\t\t<VERS vnumber=\"49\"> But this rabble who do not know the law are accursed!\"</VERS>\n\t\t\t<VERS vnumber=\"50\"> Nicodemus, who had gone to Jesus before and who was one of the rulers, said,</VERS>\n\t\t\t<VERS vnumber=\"51\"> \"Our law doesn't condemn a man unless it first hears from him and learns what he is doing, does it?\"</VERS>\n\t\t\t<VERS vnumber=\"52\"> They replied, \"You aren't from Galilee too, are you? Investigate carefully and you will see that no prophet comes from Galilee!\"</VERS>\n\t\t\t<VERS vnumber=\"53\"> [[ And each one departed to his own house. </VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"8\">\n\t\t\t<VERS vnumber=\"1\"> But Jesus went to the Mount of Olives.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Early in the morning he came to the temple courts again. All the people came to him, and he sat down and began to teach them. </VERS>\n\t\t\t<VERS vnumber=\"3\"> The experts in the law and the Pharisees brought a woman who had been caught committing adultery. They made her stand in front of them </VERS>\n\t\t\t<VERS vnumber=\"4\"> and said to Jesus, \"Teacher, this woman was caught in the very act of adultery. </VERS>\n\t\t\t<VERS vnumber=\"5\"> In the law Moses commanded us to stone to death such women. What then do you say?\" </VERS>\n\t\t\t<VERS vnumber=\"6\"> (Now they were asking this in an attempt to trap him, so that they could bring charges against him.) Jesus bent down and wrote on the ground with his finger.</VERS>\n\t\t\t<VERS vnumber=\"7\"> When they persisted in asking him, he stood up straight and replied, \"Whoever among you is guiltless may be the first to throw a stone at her.\" </VERS>\n\t\t\t<VERS vnumber=\"8\"> Then he bent over again and wrote on the ground.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Now when they heard this, they began to drift away one at a time, starting with the older ones, until Jesus was left alone with the woman standing before him. </VERS>\n\t\t\t<VERS vnumber=\"10\"> Jesus stood up straight and said to her, \"Woman, where are they? Did no one condemn you?\" </VERS>\n\t\t\t<VERS vnumber=\"11\"> She replied, \"No one, Lord.\" And Jesus said, \"I do not condemn you either. Go, and from now on do not sin any more.\"]]</VERS>\n\t\t\t<VERS vnumber=\"12\"> Then Jesus spoke out again, \"I am the light of the world. The one who follows me will never walk in darkness, but will have the light of life.\" </VERS>\n\t\t\t<VERS vnumber=\"13\"> So the Pharisees objected, \"You testify about yourself; your testimony is not true!\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> Jesus answered, \"Even if I testify about myself, my testimony is true, because I know where I came from and where I am going. But you people do not know where I came from or where I am going.</VERS>\n\t\t\t<VERS vnumber=\"15\"> You people judge by outward appearances; I do not judge anyone.</VERS>\n\t\t\t<VERS vnumber=\"16\"> But if I judge, my evaluation is accurate, because I am not alone when I judge, but I and the Father who sent me do so together.</VERS>\n\t\t\t<VERS vnumber=\"17\"> It is written in your law that the testimony of two men is true.</VERS>\n\t\t\t<VERS vnumber=\"18\"> I testify about myself and the Father who sent me testifies about me.\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> Then they began asking him, \"Who is your father?\" Jesus answered, \"You do not know either me or my Father. If you knew me you would know my Father too.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> (Jesus spoke these words near the offering box while he was teaching in the temple courts. No one seized him because his time had not yet come.)</VERS>\n\t\t\t<VERS vnumber=\"21\"> Then Jesus said to them again, \"I am going away, and you will look for me but will die in your sin. Where I am going you cannot come.\" </VERS>\n\t\t\t<VERS vnumber=\"22\"> So the Jewish leaders began to say, \"Perhaps he is going to kill himself, because he says, 'Where I am going you cannot come.'\" </VERS>\n\t\t\t<VERS vnumber=\"23\"> Jesus replied, \"You people are from below; I am from above. You people are from this world; I am not from this world. </VERS>\n\t\t\t<VERS vnumber=\"24\"> Thus I told you that you will die in your sins. For unless you believe that I am he, you will die in your sins.\"</VERS>\n\t\t\t<VERS vnumber=\"25\"> So they said to him, \"Who are you?\" Jesus replied, \"What I have told you from the beginning. </VERS>\n\t\t\t<VERS vnumber=\"26\"> I have many things to say and to judge about you, but the Father who sent me is truthful, and the things I have heard from him I speak to the world.\"</VERS>\n\t\t\t<VERS vnumber=\"27\"> (They did not understand that he was telling them about his Father.)</VERS>\n\t\t\t<VERS vnumber=\"28\"> Then Jesus said, \"When you lift up the Son of Man, then you will know that I am he, and I do nothing on my own initiative, but I speak just what the Father taught me.</VERS>\n\t\t\t<VERS vnumber=\"29\"> And the one who sent me is with me. He has not left me alone, because I always do those things that please him.\" </VERS>\n\t\t\t<VERS vnumber=\"30\"> While he was saying these things, many people believed in him.</VERS>\n\t\t\t<VERS vnumber=\"31\"> Then Jesus said to those Judeans who had believed him, \"If you continue to follow my teaching, you are really my disciples </VERS>\n\t\t\t<VERS vnumber=\"32\"> and you will know the truth, and the truth will set you free.\"</VERS>\n\t\t\t<VERS vnumber=\"33\"> \"We are descendants of Abraham,\" they replied, \"and have never been anyone's slaves! How can you say, 'You will become free'?\" </VERS>\n\t\t\t<VERS vnumber=\"34\"> Jesus answered them, \"I tell you the solemn truth, everyone who practices sin is a slave of sin. </VERS>\n\t\t\t<VERS vnumber=\"35\"> The slave does not remain in the family forever, but the son remains forever.</VERS>\n\t\t\t<VERS vnumber=\"36\"> So if the son sets you free, you will be really free. </VERS>\n\t\t\t<VERS vnumber=\"37\"> I know that you are Abraham's descendants. But you want to kill me, because my teaching makes no progress among you.</VERS>\n\t\t\t<VERS vnumber=\"38\"> I am telling you the things I have seen while with the Father; as for you, practice the things you have heard from the Father!\"</VERS>\n\t\t\t<VERS vnumber=\"39\"> They answered him, \"Abraham is our father!\" Jesus replied, \"If you are Abraham's children, you would be doing the deeds of Abraham. </VERS>\n\t\t\t<VERS vnumber=\"40\"> But now you are trying to kill me, a man who has told you the truth I heard from God. Abraham did not do this!</VERS>\n\t\t\t<VERS vnumber=\"41\"> You people are doing the deeds of your father.\" Then they said to Jesus, \"We were not born as a result of immorality! We have only one Father, God himself.\" </VERS>\n\t\t\t<VERS vnumber=\"42\"> Jesus replied, \"If God were your Father, you would love me, for I have come from God and am now here. I have not come on my own initiative, but he sent me.</VERS>\n\t\t\t<VERS vnumber=\"43\"> Why don't you understand what I am saying? It is because you cannot accept my teaching.</VERS>\n\t\t\t<VERS vnumber=\"44\"> You people are from your father the devil, and you want to do what your father desires. He was a murderer from the beginning, and does not uphold the truth, because there is no truth in him. Whenever he lies, he speaks according to his own nature, because he is a liar and the father of lies.</VERS>\n\t\t\t<VERS vnumber=\"45\"> But because I am telling you the truth, you do not believe me. </VERS>\n\t\t\t<VERS vnumber=\"46\"> Who among you can prove me guilty of any sin? If I am telling you the truth, why don't you believe me? </VERS>\n\t\t\t<VERS vnumber=\"47\"> The one who belongs to God listens and responds to God's words. You don't listen and respond, because you don't belong to God.\"</VERS>\n\t\t\t<VERS vnumber=\"48\"> The Judeans replied, \"Aren't we correct in saying that you are a Samaritan and are possessed by a demon?\"</VERS>\n\t\t\t<VERS vnumber=\"49\"> Jesus answered, \"I am not possessed by a demon, but I honor my Father, and yet you dishonor me.</VERS>\n\t\t\t<VERS vnumber=\"50\"> I am not trying to get praise for myself. There is one who demands it, and he also judges.</VERS>\n\t\t\t<VERS vnumber=\"51\"> I tell you the solemn truth, if anyone obeys my teaching, he will never see death.\"</VERS>\n\t\t\t<VERS vnumber=\"52\"> Then the Judeans responded, \"Now we know you're possessed by a demon! Both Abraham and the prophets died, and yet you say, 'If anyone obeys my teaching, he will never experience death.'</VERS>\n\t\t\t<VERS vnumber=\"53\"> You aren't greater than our father Abraham who died, are you? And the prophets died too! Who do you claim to be?\" </VERS>\n\t\t\t<VERS vnumber=\"54\"> Jesus replied, \"If I glorify myself, my glory is worthless. The one who glorifies me is my Father, about whom you people say, 'He is our God.' </VERS>\n\t\t\t<VERS vnumber=\"55\"> Yet you do not know him, but I know him. If I were to say that I do not know him, I would be a liar like you. But I do know him, and I obey his teaching.</VERS>\n\t\t\t<VERS vnumber=\"56\"> Your father Abraham was overjoyed to see my day, and he saw it and was glad.\"</VERS>\n\t\t\t<VERS vnumber=\"57\"> Then the Judeans replied, \"You are not yet fifty years old! Have you seen Abraham?\" </VERS>\n\t\t\t<VERS vnumber=\"58\"> Jesus said to them, \"I tell you the solemn truth, before Abraham came into existence, I am!\"</VERS>\n\t\t\t<VERS vnumber=\"59\"> Then they picked up stones to throw at him, but Jesus hid himself and went out from the temple area.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"9\">\n\t\t\t<VERS vnumber=\"1\"> Now as Jesus was passing by, he saw a man who had been blind from birth. </VERS>\n\t\t\t<VERS vnumber=\"2\"> His disciples asked him, \"Rabbi, who committed the sin that caused him to be born blind, this man or his parents?\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> Jesus answered, \"Neither this man nor his parents sinned, but he was born blind so that the acts of God may be revealed through what happens to him.</VERS>\n\t\t\t<VERS vnumber=\"4\"> We must perform the deeds of the one who sent me as long as it is daytime. Night is coming when no one can work. </VERS>\n\t\t\t<VERS vnumber=\"5\"> As long as I am in the world, I am the light of the world.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> Having said this, he spat on the ground and made some mud with the saliva. He smeared the mud on the blind man's eyes </VERS>\n\t\t\t<VERS vnumber=\"7\"> and said to him, \"Go wash in the pool of Siloam\" (which is translated \"sent\"). So the blind man went away and washed, and came back seeing.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Then the neighbors and the people who had seen him previously as a beggar began saying, \"Is this not the man who used to sit and beg?\" </VERS>\n\t\t\t<VERS vnumber=\"9\"> Some people said, \"This is the man!\" while others said, \"No, but he looks like him.\" The man himself kept insisting, \"I am the one!\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> So they asked him, \"How then were you made to see?\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> He replied, \"The man called Jesus made mud, smeared it on my eyes and told me, 'Go to Siloam and wash.' So I went and washed, and was able to see.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> They said to him, \"Where is that man?\" He replied, \"I don't know.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> They brought the man who used to be blind to the Pharisees.</VERS>\n\t\t\t<VERS vnumber=\"14\"> (Now the day on which Jesus made the mud and caused him to see was a Sabbath.)</VERS>\n\t\t\t<VERS vnumber=\"15\"> So the Pharisees asked him again how he had gained his sight. He replied, \"He put mud on my eyes and I washed, and now I am able to see.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> Then some of the Pharisees began to say, \"This man is not from God, because he does not observe the Sabbath.\" But others said, \"How can a man who is a sinner perform such miraculous signs?\" Thus there was a division among them. </VERS>\n\t\t\t<VERS vnumber=\"17\"> So again they asked the man who used to be blind, \"What do you say about him, since he caused you to see?\" \"He is a prophet,\" the man replied.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Now the Jewish religious leaders refused to believe that he had really been blind and had gained his sight until at last they summoned the parents of the man who had become able to see.</VERS>\n\t\t\t<VERS vnumber=\"19\"> They asked the parents, \"Is this your son, whom you say was born blind? Then how does he now see?\" </VERS>\n\t\t\t<VERS vnumber=\"20\"> So his parents replied, \"We know that this is our son and that he was born blind. </VERS>\n\t\t\t<VERS vnumber=\"21\"> But we do not know how he is now able to see, nor do we know who caused him to see. Ask him, he is a mature adult. He will speak for himself.\" </VERS>\n\t\t\t<VERS vnumber=\"22\"> (His parents said these things because they were afraid of the Jewish religious leaders. For the Jewish leaders had already agreed that anyone who confessed Jesus to be the Christ would be put out of the synagogue.</VERS>\n\t\t\t<VERS vnumber=\"23\"> For this reason his parents said, \"He is a mature adult, ask him.\")</VERS>\n\t\t\t<VERS vnumber=\"24\"> Then they summoned the man who used to be blind a second time and said to him, \"Promise before God to tell the truth. We know that this man is a sinner.\" </VERS>\n\t\t\t<VERS vnumber=\"25\"> He replied, \"I do not know whether he is a sinner. I do know one thing, that although I was blind, now I can see.\"</VERS>\n\t\t\t<VERS vnumber=\"26\"> Then they said to him, \"What did he do to you? How did he cause you to see?\"</VERS>\n\t\t\t<VERS vnumber=\"27\"> He answered, \"I told you already and you didn't listen. Why do you want to hear it again? You people don't want to become his disciples too, do you?\"</VERS>\n\t\t\t<VERS vnumber=\"28\"> They heaped insults on him, saying, \"You are his disciple! We are disciples of Moses! </VERS>\n\t\t\t<VERS vnumber=\"29\"> We know that God has spoken to Moses! We do not know where this man comes from!\" </VERS>\n\t\t\t<VERS vnumber=\"30\"> The man replied, \"This is a remarkable thing, that you don't know where he comes from, and yet he caused me to see!</VERS>\n\t\t\t<VERS vnumber=\"31\"> We know that God doesn't listen to sinners, but if anyone is devout and does his will, God listens to him.</VERS>\n\t\t\t<VERS vnumber=\"32\"> Never before has anyone heard of someone causing a man born blind to see.</VERS>\n\t\t\t<VERS vnumber=\"33\"> If this man were not from God, he could do nothing.\" </VERS>\n\t\t\t<VERS vnumber=\"34\"> They replied, \"You were born completely in sinfulness, and yet you presume to teach us?\" So they threw him out.</VERS>\n\t\t\t<VERS vnumber=\"35\"> Jesus heard that they had thrown him out, so he found the man and said to him, \"Do you believe in the Son of Man?\"</VERS>\n\t\t\t<VERS vnumber=\"36\"> The man replied, \"And who is he, sir, that I may believe in him?\" </VERS>\n\t\t\t<VERS vnumber=\"37\"> Jesus told him, \"You have seen him; he is the one speaking with you.\" [ </VERS>\n\t\t\t<VERS vnumber=\"38\"> He said, \"Lord, I believe,\" and he worshiped him.</VERS>\n\t\t\t<VERS vnumber=\"39\"> Jesus said,] \"For judgment I have come into this world, so that those who do not see may gain their sight, and the ones who see may become blind.\"</VERS>\n\t\t\t<VERS vnumber=\"40\"> Some of the Pharisees who were with him heard this and asked him, \"We are not blind too, are we?\"</VERS>\n\t\t\t<VERS vnumber=\"41\"> Jesus replied, \"If you were blind, you would not be guilty of sin, but now because you claim that you can see, your guilt remains.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"10\">\n\t\t\t<VERS vnumber=\"1\"> \"I tell you the solemn truth, the one who does not enter the sheepfold by the door, but climbs in some other way, is a thief and a robber. </VERS>\n\t\t\t<VERS vnumber=\"2\"> The one who enters by the door is the shepherd of the sheep.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The doorkeeper opens the door for him, and the sheep hear his voice. He calls his own sheep by name and leads them out.</VERS>\n\t\t\t<VERS vnumber=\"4\"> When he has brought all his own sheep out, he goes ahead of them, and the sheep follow him because they recognize his voice. </VERS>\n\t\t\t<VERS vnumber=\"5\"> They will never follow a stranger, but will run away from him, because they do not recognize the stranger's voice.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> Jesus told them this parable, but they did not understand what he was saying to them.</VERS>\n\t\t\t<VERS vnumber=\"7\"> So Jesus said to them again, \"I tell you the solemn truth, I am the door for the sheep.</VERS>\n\t\t\t<VERS vnumber=\"8\"> All who came before me were thieves and robbers, but the sheep did not listen to them.</VERS>\n\t\t\t<VERS vnumber=\"9\"> I am the door. If anyone enters through me, he will be saved, and will come in and go out, and find pasture.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The thief comes only to steal and kill and destroy; I have come so that they may have life, and may have it abundantly.</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"I am the good shepherd. The good shepherd lays down his life for the sheep. </VERS>\n\t\t\t<VERS vnumber=\"12\"> The hired hand, who is not a shepherd and does not own sheep, sees the wolf coming and abandons the sheep and runs away. So the wolf attacks the sheep and scatters them. </VERS>\n\t\t\t<VERS vnumber=\"13\"> Because he is a hired hand and is not concerned about the sheep, he runs away.</VERS>\n\t\t\t<VERS vnumber=\"14\"> \"I am the good shepherd. I know my own and my own know me,</VERS>\n\t\t\t<VERS vnumber=\"15\"> just as the Father knows me and I know the Father, and I lay down my life for the sheep.</VERS>\n\t\t\t<VERS vnumber=\"16\"> I have other sheep that do not come from this sheepfold. I must bring them too, and they will listen to my voice, so that there will be one flock and one shepherd. </VERS>\n\t\t\t<VERS vnumber=\"17\"> This is why the Father loves me, because I lay down my life, so that I may take it back again.</VERS>\n\t\t\t<VERS vnumber=\"18\"> No one takes it away from me, but I lay it down of my own free will. I have the authority to lay it down, and I have the authority to take it back again. This commandment I received from my Father.\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> Another sharp division took place among the Jewish people because of these words. </VERS>\n\t\t\t<VERS vnumber=\"20\"> Many of them were saying, \"He is possessed by a demon and has lost his mind! Why do you listen to him?\" </VERS>\n\t\t\t<VERS vnumber=\"21\"> Others said, \"These are not the words of someone possessed by a demon. A demon cannot cause the blind to see, can it?\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> Then came the feast of the Dedication in Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"23\"> It was winter, and Jesus was walking in the temple area in Solomon's Portico.</VERS>\n\t\t\t<VERS vnumber=\"24\"> The Jewish leaders surrounded him and asked, \"How long will you keep us in suspense? If you are the Christ, tell us plainly.\"</VERS>\n\t\t\t<VERS vnumber=\"25\"> Jesus replied, \"I told you and you do not believe. The deeds I do in my Father's name testify about me. </VERS>\n\t\t\t<VERS vnumber=\"26\"> But you refuse to believe because you are not my sheep.</VERS>\n\t\t\t<VERS vnumber=\"27\"> My sheep listen to my voice, and I know them, and they follow me.</VERS>\n\t\t\t<VERS vnumber=\"28\"> I give them eternal life, and they will never perish; no one will snatch them from my hand. </VERS>\n\t\t\t<VERS vnumber=\"29\"> My Father, who has given them to me, is greater than all, and no one can snatch them from my Father's hand. </VERS>\n\t\t\t<VERS vnumber=\"30\"> The Father and I are one.\"</VERS>\n\t\t\t<VERS vnumber=\"31\"> The Jewish leaders picked up rocks again to stone him to death. </VERS>\n\t\t\t<VERS vnumber=\"32\"> Jesus said to them, \"I have shown you many good deeds from the Father. For which one of them are you going to stone me?\" </VERS>\n\t\t\t<VERS vnumber=\"33\"> The Jewish leaders replied, \"We are not going to stone you for a good deed but for blasphemy, because you, a man, are claiming to be God.\"</VERS>\n\t\t\t<VERS vnumber=\"34\"> Jesus answered, \"Is it not written in your law, 'I said, you are gods'?</VERS>\n\t\t\t<VERS vnumber=\"35\"> If those people to whom the word of God came were called 'gods' (and the scripture cannot be broken),</VERS>\n\t\t\t<VERS vnumber=\"36\"> do you say about the one whom the Father set apart and sent into the world, 'You are blaspheming,' because I said, 'I am the Son of God'?</VERS>\n\t\t\t<VERS vnumber=\"37\"> If I do not perform the deeds of my Father, do not believe me. </VERS>\n\t\t\t<VERS vnumber=\"38\"> But if I do them, even if you do not believe me, believe the deeds, so that you may come to know and understand that I am in the Father and the Father is in me.\" </VERS>\n\t\t\t<VERS vnumber=\"39\"> Then they attempted again to seize him, but he escaped their clutches.</VERS>\n\t\t\t<VERS vnumber=\"40\"> Jesus went back across the Jordan River again to the place where John had been baptizing at an earlier time, and he stayed there. </VERS>\n\t\t\t<VERS vnumber=\"41\"> Many came to him and began to say, \"John performed no miraculous sign, but everything John said about this man was true!\" </VERS>\n\t\t\t<VERS vnumber=\"42\"> And many believed in Jesus there.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"11\">\n\t\t\t<VERS vnumber=\"1\"> Now a certain man named Lazarus was sick. He was from Bethany, the village where Mary and her sister Martha lived.</VERS>\n\t\t\t<VERS vnumber=\"2\"> (Now it was Mary who anointed the Lord with perfumed oil and wiped his feet dry with her hair, whose brother Lazarus was sick.)</VERS>\n\t\t\t<VERS vnumber=\"3\"> So the sisters sent a message to Jesus, \"Lord, look, the one you love is sick.\" </VERS>\n\t\t\t<VERS vnumber=\"4\"> When Jesus heard this, he said, \"This sickness will not lead to death, but to God's glory, so that the Son of God may be glorified through it.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> (Now Jesus loved Martha and her sister and Lazarus.)</VERS>\n\t\t\t<VERS vnumber=\"6\"> So when he heard that Lazarus was sick, he remained in the place where he was for two more days. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Then after this, he said to his disciples, \"Let us go to Judea again.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> The disciples replied, \"Rabbi, the Jewish leaders were just now trying to stone you to death! Are you going there again?\" </VERS>\n\t\t\t<VERS vnumber=\"9\"> Jesus replied, \"Are there not twelve hours in a day? If anyone walks around in the daytime, he does not stumble, because he sees the light of this world.</VERS>\n\t\t\t<VERS vnumber=\"10\"> But if anyone walks around at night, he stumbles, because the light is not in him.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> After he said this, he added, \"Our friend Lazarus has fallen asleep. But I am going there to awaken him.\" </VERS>\n\t\t\t<VERS vnumber=\"12\"> Then the disciples replied, \"Lord, if he has fallen asleep, he will recover.\" </VERS>\n\t\t\t<VERS vnumber=\"13\"> (Now Jesus had been talking about his death, but they thought he had been talking about real sleep.)</VERS>\n\t\t\t<VERS vnumber=\"14\"> Then Jesus told them plainly, \"Lazarus has died,</VERS>\n\t\t\t<VERS vnumber=\"15\"> and I am glad for your sake that I was not there, so that you may believe. But let us go to him.\" </VERS>\n\t\t\t<VERS vnumber=\"16\"> So Thomas (called Didymus) said to his fellow disciples, \"Let us go too, so that we may die with him.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> When Jesus arrived, he found that Lazarus had been in the tomb four days already.</VERS>\n\t\t\t<VERS vnumber=\"18\"> (Now Bethany was less than two miles from Jerusalem,</VERS>\n\t\t\t<VERS vnumber=\"19\"> so many of the Jewish people of the region had come to Martha and Mary to console them over the loss of their brother.)</VERS>\n\t\t\t<VERS vnumber=\"20\"> So when Martha heard that Jesus was coming, she went out to meet him, but Mary was sitting in the house.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Martha said to Jesus, \"Lord, if you had been here, my brother would not have died. </VERS>\n\t\t\t<VERS vnumber=\"22\"> But even now I know that whatever you ask from God, God will grant you.\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> Jesus replied, \"Your brother will come back to life again.\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> Martha said, \"I know that he will come back to life again in the resurrection at the last day.\" </VERS>\n\t\t\t<VERS vnumber=\"25\"> Jesus said to her, \"I am the resurrection and the life. The one who believes in me will live even if he dies, </VERS>\n\t\t\t<VERS vnumber=\"26\"> and the one who lives and believes in me will never die. Do you believe this?\" </VERS>\n\t\t\t<VERS vnumber=\"27\"> She replied, \"Yes, Lord, I believe that you are the Christ, the Son of God who comes into the world.\"</VERS>\n\t\t\t<VERS vnumber=\"28\"> And when she had said this, Martha went and called her sister Mary, saying privately, \"The Teacher is here and is asking for you.\"</VERS>\n\t\t\t<VERS vnumber=\"29\"> So when Mary heard this, she got up quickly and went to him. </VERS>\n\t\t\t<VERS vnumber=\"30\"> (Now Jesus had not yet entered the village, but was still in the place where Martha had come out to meet him.)</VERS>\n\t\t\t<VERS vnumber=\"31\"> Then the people who were with Mary in the house consoling her saw her get up quickly and go out. They followed her, because they thought she was going to the tomb to weep there.</VERS>\n\t\t\t<VERS vnumber=\"32\"> Now when Mary came to the place where Jesus was and saw him, she fell at his feet and said to him, \"Lord, if you had been here, my brother would not have died.\"</VERS>\n\t\t\t<VERS vnumber=\"33\"> When Jesus saw her weeping, and the people who had come with her weeping, he was intensely moved in spirit and greatly distressed.</VERS>\n\t\t\t<VERS vnumber=\"34\"> He asked, \"Where have you laid him?\" They replied, \"Lord, come and see.\" </VERS>\n\t\t\t<VERS vnumber=\"35\"> Jesus wept.</VERS>\n\t\t\t<VERS vnumber=\"36\"> Thus the people who had come to mourn said, \"Look how much he loved him!\" </VERS>\n\t\t\t<VERS vnumber=\"37\"> But some of them said, \"This is the man who caused the blind man to see! Couldn't he have done something to keep Lazarus from dying?\"</VERS>\n\t\t\t<VERS vnumber=\"38\"> Jesus, intensely moved again, came to the tomb. (Now it was a cave, and a stone was placed across it.)</VERS>\n\t\t\t<VERS vnumber=\"39\"> Jesus said, \"Take away the stone.\" Martha, the sister of the deceased, replied, \"Lord, by this time the body will have a bad smell, because he has been buried four days.\"</VERS>\n\t\t\t<VERS vnumber=\"40\"> Jesus responded, \"Didn't I tell you that if you believe, you would see the glory of God?\" </VERS>\n\t\t\t<VERS vnumber=\"41\"> So they took away the stone. Jesus looked upward and said, \"Father, I thank you that you have listened to me.</VERS>\n\t\t\t<VERS vnumber=\"42\"> I knew that you always listen to me, but I said this for the sake of the crowd standing around here, that they may believe that you sent me.\" </VERS>\n\t\t\t<VERS vnumber=\"43\"> When he had said this, he shouted in a loud voice, \"Lazarus, come out!\" </VERS>\n\t\t\t<VERS vnumber=\"44\"> The one who had died came out, his feet and hands tied up with strips of cloth, and a cloth wrapped around his face. Jesus said to them, \"Unwrap him and let him go.\"</VERS>\n\t\t\t<VERS vnumber=\"45\"> Then many of the people, who had come with Mary and had seen the things Jesus did, believed in him. </VERS>\n\t\t\t<VERS vnumber=\"46\"> But some of them went to the Pharisees and reported to them what Jesus had done. </VERS>\n\t\t\t<VERS vnumber=\"47\"> So the chief priests and the Pharisees called the council together and said, \"What are we doing? For this man is performing many miraculous signs. </VERS>\n\t\t\t<VERS vnumber=\"48\"> If we allow him to go on in this way, everyone will believe in him, and the Romans will come and take away our sanctuary and our nation.\"</VERS>\n\t\t\t<VERS vnumber=\"49\"> Then one of them, Caiaphas, who was high priest that year, said, \"You know nothing at all! </VERS>\n\t\t\t<VERS vnumber=\"50\"> You do not realize that it is more to your advantage to have one man die for the people than for the whole nation to perish.\"</VERS>\n\t\t\t<VERS vnumber=\"51\"> (Now he did not say this on his own, but because he was high priest that year, he prophesied that Jesus was going to die for the Jewish nation,</VERS>\n\t\t\t<VERS vnumber=\"52\"> and not for the Jewish nation only, but to gather together into one the children of God who are scattered.)</VERS>\n\t\t\t<VERS vnumber=\"53\"> So from that day they planned together to kill him.</VERS>\n\t\t\t<VERS vnumber=\"54\"> Thus Jesus no longer went around publicly among the Judeans, but went away from there to the region near the wilderness, to a town called Ephraim, and stayed there with his disciples. </VERS>\n\t\t\t<VERS vnumber=\"55\"> Now the Jewish feast of Passover was near, and many people went up to Jerusalem from the rural areas before the Passover to cleanse themselves ritually.</VERS>\n\t\t\t<VERS vnumber=\"56\"> Thus they were looking for Jesus, and saying to one another as they stood in the temple courts, \"What do you think? That he won't come to the feast?\"</VERS>\n\t\t\t<VERS vnumber=\"57\"> (Now the chief priests and the Pharisees had given orders that anyone who knew where Jesus was should report it, so that they could arrest him.)</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"12\">\n\t\t\t<VERS vnumber=\"1\"> Then, six days before the Passover, Jesus came to Bethany, where Lazarus lived, whom he had raised from the dead. </VERS>\n\t\t\t<VERS vnumber=\"2\"> So they prepared a dinner for Jesus there. Martha was serving, and Lazarus was among those present at the table with him. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Then Mary took three quarters of a pound of expensive aromatic oil from pure nard and anointed the feet of Jesus. She then wiped his feet dry with her hair. (Now the house was filled with the fragrance of the perfumed oil.)</VERS>\n\t\t\t<VERS vnumber=\"4\"> But Judas Iscariot, one of his disciples (the one who was going to betray him) said, </VERS>\n\t\t\t<VERS vnumber=\"5\"> \"Why wasn't this oil sold for three hundred silver coins and the money given to the poor?\" </VERS>\n\t\t\t<VERS vnumber=\"6\"> (Now Judas said this not because he was concerned about the poor, but because he was a thief. As keeper of the money box, he used to steal what was put into it.)</VERS>\n\t\t\t<VERS vnumber=\"7\"> So Jesus said, \"Leave her alone. She has kept it for the day of my burial.</VERS>\n\t\t\t<VERS vnumber=\"8\"> For you will always have the poor with you, but you will not always have me!\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> Now a large crowd of Judeans learned that Jesus was there, and so they came not only because of him but also to see Lazarus whom he had raised from the dead.</VERS>\n\t\t\t<VERS vnumber=\"10\"> So the chief priests planned to kill Lazarus too,</VERS>\n\t\t\t<VERS vnumber=\"11\"> for on account of him many of the Jewish people from Jerusalem were going away and believing in Jesus.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The next day the large crowd that had come to the feast heard that Jesus was coming to Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"13\"> So they took branches of palm trees and went out to meet him. They began to shout, \"Hosanna! Blessed is the one who comes in the name of the Lord! Blessed is the king of Israel!\" </VERS>\n\t\t\t<VERS vnumber=\"14\"> Jesus found a young donkey and sat on it, just as it is written, </VERS>\n\t\t\t<VERS vnumber=\"15\"> \"Do not be afraid, people of Zion; look, your king is coming, seated on a donkey's colt!\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> (His disciples did not understand these things when they first happened, but when Jesus was glorified, then they remembered that these things were written about him and that these things had happened to him.)</VERS>\n\t\t\t<VERS vnumber=\"17\"> So the crowd who had been with him when he called Lazarus out of the tomb and raised him from the dead were continuing to testify about it.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Because they had heard that Jesus had performed this miraculous sign, the crowd went out to meet him. </VERS>\n\t\t\t<VERS vnumber=\"19\"> Thus the Pharisees said to one another, \"You see that you can do nothing. Look, the world has run off after him!\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> Now some Greeks were among those who had gone up to worship at the feast. </VERS>\n\t\t\t<VERS vnumber=\"21\"> So these approached Philip, who was from Bethsaida in Galilee, and requested, \"Sir, we would like to see Jesus.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> Philip went and told Andrew, and they both went and told Jesus. </VERS>\n\t\t\t<VERS vnumber=\"23\"> Jesus replied, \"The time has come for the Son of Man to be glorified.</VERS>\n\t\t\t<VERS vnumber=\"24\"> I tell you the solemn truth, unless a kernel of wheat falls into the ground and dies, it remains by itself alone. But if it dies, it produces much grain.</VERS>\n\t\t\t<VERS vnumber=\"25\"> The one who loves his life destroys it, and the one who hates his life in this world guards it for eternal life. </VERS>\n\t\t\t<VERS vnumber=\"26\"> If anyone wants to serve me, he must follow me, and where I am, my servant will be too. If anyone serves me, the Father will honor him.</VERS>\n\t\t\t<VERS vnumber=\"27\"> \"Now my soul is greatly distressed. And what should I say? 'Father, deliver me from this hour'? No, but for this very reason I have come to this hour.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Father, glorify your name.\" Then a voice came from heaven, \"I have glorified it, and I will glorify it again.\" </VERS>\n\t\t\t<VERS vnumber=\"29\"> The crowd that stood there and heard the voice said that it had thundered. Others said that an angel had spoken to him.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Jesus said, \"This voice has not come for my benefit but for yours. </VERS>\n\t\t\t<VERS vnumber=\"31\"> Now is the judgment of this world; now the ruler of this world will be driven out.</VERS>\n\t\t\t<VERS vnumber=\"32\"> And I, when I am lifted up from the earth, will draw all people to myself.\" </VERS>\n\t\t\t<VERS vnumber=\"33\"> (Now he said this to indicate clearly what kind of death he was going to die.)</VERS>\n\t\t\t<VERS vnumber=\"34\"> Then the crowd responded, \"We have heard from the law that the Christ will remain forever. How can you say, 'The Son of Man must be lifted up'? Who is this Son of Man?\" </VERS>\n\t\t\t<VERS vnumber=\"35\"> Jesus replied, \"The light is with you for a little while longer. Walk while you have the light, so that the darkness may not overtake you. The one who walks in the darkness does not know where he is going. </VERS>\n\t\t\t<VERS vnumber=\"36\"> While you have the light, believe in the light, so that you may become sons of light.\" When Jesus had said these things, he went away and hid himself from them.</VERS>\n\t\t\t<VERS vnumber=\"37\"> Although Jesus had performed so many miraculous signs before them, they still refused to believe in him, </VERS>\n\t\t\t<VERS vnumber=\"38\"> so that the word of Isaiah the prophet would be fulfilled. He said, \"Lord, who has believed our message, and to whom has the arm of the Lord been revealed?\"</VERS>\n\t\t\t<VERS vnumber=\"39\"> For this reason they could not believe, because again Isaiah said,</VERS>\n\t\t\t<VERS vnumber=\"40\"> \"He has blinded their eyes and hardened their heart, so that they would not see with their eyes and understand with their heart, and turn to me, and I would heal them.\"</VERS>\n\t\t\t<VERS vnumber=\"41\"> Isaiah said these things because he saw Christ's glory, and spoke about him.</VERS>\n\t\t\t<VERS vnumber=\"42\"> Nevertheless, even among the rulers many believed in him, but because of the Pharisees they would not confess Jesus to be the Christ, so that they would not be put out of the synagogue.</VERS>\n\t\t\t<VERS vnumber=\"43\"> For they loved praise from men more than praise from God.</VERS>\n\t\t\t<VERS vnumber=\"44\"> But Jesus shouted out, \"The one who believes in me does not believe in me, but in the one who sent me,</VERS>\n\t\t\t<VERS vnumber=\"45\"> and the one who sees me sees the one who sent me.</VERS>\n\t\t\t<VERS vnumber=\"46\"> I have come as a light into the world, so that everyone who believes in me should not remain in darkness.</VERS>\n\t\t\t<VERS vnumber=\"47\"> If anyone hears my words and does not obey them, I do not judge him. For I have not come to judge the world, but to save the world.</VERS>\n\t\t\t<VERS vnumber=\"48\"> The one who rejects me and does not accept my words has a judge; the word I have spoken will judge him at the last day. </VERS>\n\t\t\t<VERS vnumber=\"49\"> For I have not spoken from my own authority, but the Father himself who sent me has commanded me what I should say and what I should speak. </VERS>\n\t\t\t<VERS vnumber=\"50\"> And I know that his commandment is eternal life. Thus the things I say, I say just as the Father has told me.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"13\">\n\t\t\t<VERS vnumber=\"1\"> Just before the Passover feast, Jesus knew that his time had come to depart from this world to the Father. Having loved his own who were in the world, he now loved them to the very end.</VERS>\n\t\t\t<VERS vnumber=\"2\"> The evening meal was in progress, and the devil had already put into the heart of Judas Iscariot, Simon's son, that he should betray Jesus.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Because Jesus knew that the Father had handed all things over to him, and that he had come from God and was going back to God, </VERS>\n\t\t\t<VERS vnumber=\"4\"> he got up from the meal, removed his outer clothes, took a towel and tied it around himself.</VERS>\n\t\t\t<VERS vnumber=\"5\"> He poured water into the washbasin and began to wash the disciples' feet and to dry them with the towel he had wrapped around himself.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Then he came to Simon Peter. Peter said to him, \"Lord, are you going to wash my feet?\" </VERS>\n\t\t\t<VERS vnumber=\"7\"> Jesus replied, \"You do not understand what I am doing now, but you will understand after these things.\" </VERS>\n\t\t\t<VERS vnumber=\"8\"> Peter said to him, \"You will never wash my feet!\" Jesus replied, \"If I do not wash you, you have no share with me.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> Simon Peter said to him, \"Lord, wash not only my feet, but also my hands and my head!\" </VERS>\n\t\t\t<VERS vnumber=\"10\"> Jesus replied, \"The one who has bathed needs only to wash his feet, but is completely clean. And you disciples are clean, but not every one of you.\" </VERS>\n\t\t\t<VERS vnumber=\"11\"> (For Jesus knew the one who was going to betray him. For this reason he said, \"Not every one of you is clean.\")</VERS>\n\t\t\t<VERS vnumber=\"12\"> So when Jesus had washed their feet and put his outer clothing back on, he took his place at the table again and said to them, \"Do you understand what I have done for you? </VERS>\n\t\t\t<VERS vnumber=\"13\"> You call me 'Teacher' and 'Lord,' and do so correctly, for that is what I am.</VERS>\n\t\t\t<VERS vnumber=\"14\"> If I then, your Lord and Teacher, have washed your feet, you too ought to wash one another's feet.</VERS>\n\t\t\t<VERS vnumber=\"15\"> For I have given you an example, you should do just as I have done for you.</VERS>\n\t\t\t<VERS vnumber=\"16\"> I tell you the solemn truth, the slave is not greater than his master, nor is the one who is sent as a messenger greater than the one who sent him. </VERS>\n\t\t\t<VERS vnumber=\"17\"> If you understand these things, you will be blessed if you do them.</VERS>\n\t\t\t<VERS vnumber=\"18\"> \"What I am saying does not refer to all of you. I know the ones I have chosen. But this is to fulfill the scripture, 'The one who eats my bread has turned against me.'</VERS>\n\t\t\t<VERS vnumber=\"19\"> I am telling you this now, before it happens, so that when it happens you may believe that I am he.</VERS>\n\t\t\t<VERS vnumber=\"20\"> I tell you the solemn truth, whoever accepts the one I send accepts me, and whoever accepts me accepts the one who sent me.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> When he had said these things, Jesus was greatly distressed in spirit, and testified, \"I tell you the solemn truth, one of you will betray me.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> The disciples began to look at one another, worried and perplexed to know which of them he was talking about. </VERS>\n\t\t\t<VERS vnumber=\"23\"> One of his disciples, the one Jesus loved, was at the table to the right of Jesus in a place of honor.</VERS>\n\t\t\t<VERS vnumber=\"24\"> So Simon Peter gestured to this disciple to ask Jesus who it was he was referring to.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Then the disciple whom Jesus loved leaned back against Jesus' chest and asked him, \"Lord, who is it?\"</VERS>\n\t\t\t<VERS vnumber=\"26\"> Jesus replied, \"It is the one to whom I will give this piece of bread after I have dipped it in the dish.\" Then he dipped the piece of bread in the dish and gave it to Judas Iscariot, Simon's son. </VERS>\n\t\t\t<VERS vnumber=\"27\"> And after Judas took the piece of bread, Satan entered into him. Jesus said to him, \"What you are about to do, do quickly.\" </VERS>\n\t\t\t<VERS vnumber=\"28\"> (Now none of those present at the table understood why Jesus said this to Judas.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Some thought that, because Judas had the money box, Jesus was telling him to buy whatever they needed for the feast, or to give something to the poor.)</VERS>\n\t\t\t<VERS vnumber=\"30\"> Judas took the piece of bread and went out immediately. (Now it was night.)</VERS>\n\t\t\t<VERS vnumber=\"31\"> When Judas had gone out, Jesus said, \"Now the Son of Man is glorified, and God is glorified in him. </VERS>\n\t\t\t<VERS vnumber=\"32\"> If God is glorified in him, God will also glorify him in himself, and he will glorify him right away.</VERS>\n\t\t\t<VERS vnumber=\"33\"> Children, I am still with you for a little while. You will look for me, and just as I said to the Jewish religious leaders, 'Where I am going you cannot come,' now I tell you the same.</VERS>\n\t\t\t<VERS vnumber=\"34\"> \"I give you a new commandment, to love one another. Just as I have loved you, you also are to love one another.</VERS>\n\t\t\t<VERS vnumber=\"35\"> Everyone will know by this that you are my disciples, if you have love for one another.\"</VERS>\n\t\t\t<VERS vnumber=\"36\"> Simon Peter said to him, \"Lord, where are you going?\" Jesus replied, \"Where I am going, you cannot follow me now, but you will follow later.\" </VERS>\n\t\t\t<VERS vnumber=\"37\"> Peter said to him, \"Lord, why can't I follow you now? I will lay down my life for you!\"</VERS>\n\t\t\t<VERS vnumber=\"38\"> Jesus answered, \"Will you lay down your life for me? I tell you the solemn truth, the rooster will not crow until you have denied me three times!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"14\">\n\t\t\t<VERS vnumber=\"1\"> \"Do not let your hearts be distressed. You believe in God; believe also in me.</VERS>\n\t\t\t<VERS vnumber=\"2\"> There are many dwelling places in my Father's house. Otherwise, I would have told you, because I am going away to make ready a place for you.</VERS>\n\t\t\t<VERS vnumber=\"3\"> And if I go and make ready a place for you, I will come again and take you to be with me, so that where I am you may be too. </VERS>\n\t\t\t<VERS vnumber=\"4\"> And you know the way where I am going.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> Thomas said, \"Lord, we don't know where you are going. How can we know the way?\" </VERS>\n\t\t\t<VERS vnumber=\"6\"> Jesus replied, \"I am the way, and the truth, and the life. No one comes to the Father except through me. </VERS>\n\t\t\t<VERS vnumber=\"7\"> If you have known me, you will know my Father too. And from now on you do know him and have seen him.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> Philip said, \"Lord, show us the Father, and we will be content.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> Jesus replied, \"Have I been with you for so long, and you have not known me, Philip? The person who has seen me has seen the Father! How can you say, 'Show us the Father'? </VERS>\n\t\t\t<VERS vnumber=\"10\"> Do you not believe that I am in the Father, and the Father is in me? The words that I say to you, I do not speak on my own initiative, but the Father residing in me performs his miraculous deeds.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Believe me that I am in the Father, and the Father is in me, but if you do not believe me, believe because of the miraculous deeds themselves. </VERS>\n\t\t\t<VERS vnumber=\"12\"> I tell you the solemn truth, the person who believes in me will perform the miraculous deeds that I am doing, and will perform greater deeds than these, because I am going to the Father. </VERS>\n\t\t\t<VERS vnumber=\"13\"> And I will do whatever you ask in my name, so that the Father may be glorified in the Son. </VERS>\n\t\t\t<VERS vnumber=\"14\"> If you ask me anything in my name, I will do it.</VERS>\n\t\t\t<VERS vnumber=\"15\"> \"If you love me, you will obey my commandments.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Then I will ask the Father, and he will give you another Advocate to be with you forever,</VERS>\n\t\t\t<VERS vnumber=\"17\"> the Spirit of truth, whom the world cannot accept, because it does not see him or know him. But you know him, because he resides with you and will be in you.</VERS>\n\t\t\t<VERS vnumber=\"18\"> \"I will not abandon you as orphans, I will come to you.</VERS>\n\t\t\t<VERS vnumber=\"19\"> In a little while the world will not see me any longer, but you will see me; because I live, you will live too. </VERS>\n\t\t\t<VERS vnumber=\"20\"> You will know at that time that I am in my Father and you are in me and I am in you. </VERS>\n\t\t\t<VERS vnumber=\"21\"> The person who has my commandments and obeys them is the one who loves me. The one who loves me will be loved by my Father, and I will love him and will reveal myself to him.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> \"Lord,\" Judas (not Judas Iscariot) said, \"what has happened that you are going to reveal yourself to us and not to the world?\" </VERS>\n\t\t\t<VERS vnumber=\"23\"> Jesus replied, \"If anyone loves me, he will obey my word, and my Father will love him, and we will come to him and take up residence with him.</VERS>\n\t\t\t<VERS vnumber=\"24\"> The person who does not love me does not obey my words. And the word you hear is not mine, but the Father's who sent me.</VERS>\n\t\t\t<VERS vnumber=\"25\"> \"I have spoken these things while staying with you. </VERS>\n\t\t\t<VERS vnumber=\"26\"> But the Advocate, the Holy Spirit, whom the Father will send in my name, will teach you everything, and will cause you to remember everything I said to you.</VERS>\n\t\t\t<VERS vnumber=\"27\"> \"Peace I leave with you; my peace I give to you; I do not give it to you as the world does. Do not let your hearts be distressed or lacking in courage.</VERS>\n\t\t\t<VERS vnumber=\"28\"> You heard me say to you, 'I am going away and I am coming back to you.' If you loved me, you would be glad that I am going to the Father, because the Father is greater than I am.</VERS>\n\t\t\t<VERS vnumber=\"29\"> I have told you now before it happens, so that when it happens you may believe.</VERS>\n\t\t\t<VERS vnumber=\"30\"> I will not speak with you much longer, for the ruler of this world is coming. He has no power over me,</VERS>\n\t\t\t<VERS vnumber=\"31\"> but I am doing just what the Father commanded me, so that the world may know that I love the Father. Get up, let us go from here.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"15\">\n\t\t\t<VERS vnumber=\"1\"> \"I am the true vine and my Father is the gardener.</VERS>\n\t\t\t<VERS vnumber=\"2\"> He takes away every branch that does not bear fruit in me. He prunes every branch that bears fruit so that it will bear more fruit.</VERS>\n\t\t\t<VERS vnumber=\"3\"> You are clean already because of the word that I have spoken to you. </VERS>\n\t\t\t<VERS vnumber=\"4\"> Remain in me, and I will remain in you. Just as the branch cannot bear fruit by itself, unless it remains in the vine, so neither can you unless you remain in me.</VERS>\n\t\t\t<VERS vnumber=\"5\"> \"I am the vine; you are the branches. The one who remains in me, and I in him, bears much fruit, because apart from me you can accomplish nothing.</VERS>\n\t\t\t<VERS vnumber=\"6\"> If anyone does not remain in me, he is thrown out like a branch, and dries up; and such branches are gathered up and thrown into the fire, and are burned up.</VERS>\n\t\t\t<VERS vnumber=\"7\"> If you remain in me and my words remain in you, ask whatever you want, and it will be done for you.</VERS>\n\t\t\t<VERS vnumber=\"8\"> My Father is honored by this, that you bear much fruit and show that you are my disciples.</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"Just as the Father has loved me, I have also loved you; remain in my love. </VERS>\n\t\t\t<VERS vnumber=\"10\"> If you obey my commandments, you will remain in my love, just as I have obeyed my Father's commandments and remain in his love. </VERS>\n\t\t\t<VERS vnumber=\"11\"> I have told you these things so that my joy may be in you, and your joy may be complete. </VERS>\n\t\t\t<VERS vnumber=\"12\"> My commandment is this, to love one another just as I have loved you.</VERS>\n\t\t\t<VERS vnumber=\"13\"> No one has greater love than this, that one lays down his life for his friends.</VERS>\n\t\t\t<VERS vnumber=\"14\"> You are my friends if you do what I command you. </VERS>\n\t\t\t<VERS vnumber=\"15\"> I no longer call you slaves, because the slave does not understand what his master is doing. But I have called you friends, because I have revealed to you everything I heard from my Father. </VERS>\n\t\t\t<VERS vnumber=\"16\"> You did not choose me, but I chose you and appointed you to go and bear fruit, fruit that remains, so that whatever you ask the Father in my name he will give you. </VERS>\n\t\t\t<VERS vnumber=\"17\"> This I command you, to love one another.</VERS>\n\t\t\t<VERS vnumber=\"18\"> \"If the world hates you, be aware that it hated me first.</VERS>\n\t\t\t<VERS vnumber=\"19\"> If you belonged to the world, the world would love you as its own. However, because you do not belong to the world, but I chose you out of the world, for this reason the world hates you.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Remember what I told you, 'A slave is not greater than his master.' If they persecuted me, they will also persecute you. If they obeyed my word, they will obey yours too. </VERS>\n\t\t\t<VERS vnumber=\"21\"> But they will do all these things to you on account of my name, because they do not know the one who sent me.</VERS>\n\t\t\t<VERS vnumber=\"22\"> If I had not come and spoken to them, they would not be guilty of sin. But they no longer have any excuse for their sin. </VERS>\n\t\t\t<VERS vnumber=\"23\"> The one who hates me hates my Father too.</VERS>\n\t\t\t<VERS vnumber=\"24\"> If I had not performed among them the miraculous deeds that no one else did, they would not be guilty of sin. But now they have seen the deeds and have hated both me and my Father.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Now this happened to fulfill the word that is written in their law, 'They hated me without reason.'</VERS>\n\t\t\t<VERS vnumber=\"26\"> When the Advocate comes, whom I will send you from the Father, the Spirit of truth who goes out from the Father, he will testify about me,</VERS>\n\t\t\t<VERS vnumber=\"27\"> and you also will testify, because you have been with me from the beginning.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"16\">\n\t\t\t<VERS vnumber=\"1\"> \"I have told you all these things so that you will not fall away.</VERS>\n\t\t\t<VERS vnumber=\"2\"> They will put you out of the synagogue, yet a time is coming when the one who kills you will think he is offering service to God.</VERS>\n\t\t\t<VERS vnumber=\"3\"> They will do these things because they have not known the Father or me.</VERS>\n\t\t\t<VERS vnumber=\"4\"> But I have told you these things so that when their time comes, you will remember that I told you about them. \"I did not tell you these things from the beginning because I was with you.</VERS>\n\t\t\t<VERS vnumber=\"5\"> But now I am going to the one who sent me, and not one of you is asking me, 'Where are you going?'</VERS>\n\t\t\t<VERS vnumber=\"6\"> Instead your hearts are filled with sadness because I have said these things to you. </VERS>\n\t\t\t<VERS vnumber=\"7\"> But I tell you the truth, it is to your advantage that I am going away. For if I do not go away, the Advocate will not come to you, but if I go, I will send him to you. </VERS>\n\t\t\t<VERS vnumber=\"8\"> And when he comes, he will prove the world wrong concerning sin and righteousness and judgment,</VERS>\n\t\t\t<VERS vnumber=\"9\"> concerning sin, because they do not believe in me;</VERS>\n\t\t\t<VERS vnumber=\"10\"> concerning righteousness, because I am going to the Father and you will see me no longer; </VERS>\n\t\t\t<VERS vnumber=\"11\"> and concerning judgment, because the ruler of this world has been condemned.</VERS>\n\t\t\t<VERS vnumber=\"12\"> \"I have many more things to say to you, but you cannot bear them now. </VERS>\n\t\t\t<VERS vnumber=\"13\"> But when he, the Spirit of truth, comes, he will guide you into all truth. For he will not speak on his own authority, but will speak whatever he hears, and will tell you what is to come.</VERS>\n\t\t\t<VERS vnumber=\"14\"> He will glorify me, because he will receive from me what is mine and will tell it to you.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Everything that the Father has is mine; that is why I said the Spirit will receive from me what is mine and will tell it to you.</VERS>\n\t\t\t<VERS vnumber=\"16\"> In a little while you will see me no longer; again after a little while, you will see me.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> Then some of his disciples said to one another, \"What is the meaning of what he is saying, 'In a little while you will not see me; again after a little while, you will see me,' and, 'because I am going to the Father'?\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> So they kept on repeating, \"What is the meaning of what he says, 'In a little while'? We do not understand what he is talking about.\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> Jesus could see that they wanted to ask him about these things, so he said to them, \"Are you asking each other about this, that I said, 'In a little while you will not see me; again after a little while, you will see me'?</VERS>\n\t\t\t<VERS vnumber=\"20\"> I tell you the solemn truth, you will weep and wail, but the world will rejoice; you will be sad, but your sadness will turn into joy. </VERS>\n\t\t\t<VERS vnumber=\"21\"> When a woman gives birth, she has distress because her time has come, but when her child is born, she no longer remembers the suffering because of her joy that a human being has been born into the world.</VERS>\n\t\t\t<VERS vnumber=\"22\"> So also you have sorrow now, but I will see you again, and your hearts will rejoice, and no one will take your joy away from you.</VERS>\n\t\t\t<VERS vnumber=\"23\"> At that time you will ask me nothing. I tell you the solemn truth, whatever you ask the Father in my name he will give you.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Until now you have not asked for anything in my name. Ask and you will receive it, so that your joy may be complete.</VERS>\n\t\t\t<VERS vnumber=\"25\"> \"I have told you these things in obscure figures of speech; a time is coming when I will no longer speak to you in obscure figures, but will tell you plainly about the Father. </VERS>\n\t\t\t<VERS vnumber=\"26\"> At that time you will ask in my name, and I do not say that I will ask the Father on your behalf. </VERS>\n\t\t\t<VERS vnumber=\"27\"> For the Father himself loves you, because you have loved me and have believed that I came from God.</VERS>\n\t\t\t<VERS vnumber=\"28\"> I came from the Father and entered into the world, but in turn, I am leaving the world and going back to the Father.\"</VERS>\n\t\t\t<VERS vnumber=\"29\"> His disciples said, \"Look, now you are speaking plainly and not in obscure figures of speech!</VERS>\n\t\t\t<VERS vnumber=\"30\"> Now we know that you know everything and do not need anyone to ask you anything. Because of this we believe that you have come from God.\"</VERS>\n\t\t\t<VERS vnumber=\"31\"> Jesus replied, \"Do you now believe? </VERS>\n\t\t\t<VERS vnumber=\"32\"> Look, a time is coming, and has come, when you will be scattered, each one to his own home, and I will be left alone. Yet I am not alone, because my Father is with me.</VERS>\n\t\t\t<VERS vnumber=\"33\"> I have told you these things so that in me you may have peace. In the world you have trouble and suffering, but take courage, I have conquered the world.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"17\">\n\t\t\t<VERS vnumber=\"1\"> When Jesus had finished saying these things, he looked upward to heaven and said, \"Father, the time has come. Glorify your Son, so that your Son may glorify you,</VERS>\n\t\t\t<VERS vnumber=\"2\"> just as you have given him authority over all humanity, so that he may give eternal life to everyone you have given him.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Now this is eternal life, that they know you, the only true God, and Jesus Christ, whom you sent.</VERS>\n\t\t\t<VERS vnumber=\"4\"> I glorified you on earth by completing the work you gave me to do.</VERS>\n\t\t\t<VERS vnumber=\"5\"> And now, Father, glorify me at your side with the glory I had with you before the world was created.</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"I have revealed your name to the men you gave me out of the world. They belonged to you, and you gave them to me, and they have obeyed your word. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Now they understand that everything you have given me comes from you, </VERS>\n\t\t\t<VERS vnumber=\"8\"> because I have given them the words you have given me. They accepted them and really understand that I came from you, and they believed that you sent me. </VERS>\n\t\t\t<VERS vnumber=\"9\"> I am praying on behalf of them. I am not praying on behalf of the world, but on behalf of those you have given me, because they belong to you.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Everything I have belongs to you, and everything you have belongs to me, and I have been glorified by them.</VERS>\n\t\t\t<VERS vnumber=\"11\"> I am no longer in the world, but they are in the world, and I am coming to you. Holy Father, keep them safe in your name that you have given me, so that they may be one just as we are one.</VERS>\n\t\t\t<VERS vnumber=\"12\"> When I was with them I kept them safe and watched over them in your name that you have given me. Not one of them was lost except the one destined for destruction, so that the scripture could be fulfilled.</VERS>\n\t\t\t<VERS vnumber=\"13\"> But now I am coming to you, and I am saying these things in the world, so they may experience my joy completed in themselves. </VERS>\n\t\t\t<VERS vnumber=\"14\"> I have given them your word, and the world has hated them, because they do not belong to the world, just as I do not belong to the world.</VERS>\n\t\t\t<VERS vnumber=\"15\"> I am not asking you to take them out of the world, but that you keep them safe from the evil one.</VERS>\n\t\t\t<VERS vnumber=\"16\"> They do not belong to the world just as I do not belong to the world.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Set them apart in the truth; your word is truth. </VERS>\n\t\t\t<VERS vnumber=\"18\"> Just as you sent me into the world, so I sent them into the world.</VERS>\n\t\t\t<VERS vnumber=\"19\"> And I set myself apart on their behalf, so that they too may be truly set apart.</VERS>\n\t\t\t<VERS vnumber=\"20\"> \"I am not praying only on their behalf, but also on behalf of those who believe in me through their testimony,</VERS>\n\t\t\t<VERS vnumber=\"21\"> that they will all be one, just as you, Father, are in me and I am in you. I pray that they will be in us, so that the world will believe that you sent me. </VERS>\n\t\t\t<VERS vnumber=\"22\"> The glory you gave to me I have given to them, that they may be one just as we are one,</VERS>\n\t\t\t<VERS vnumber=\"23\"> I in them and you in me, that they may be completely one, so that the world will know that you sent me, and you have loved them just as you have loved me.</VERS>\n\t\t\t<VERS vnumber=\"24\"> \"Father, I want those you have given me to be with me where I am, so that they can see my glory that you gave me because you loved me before the creation of the world.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Righteous Father, even if the world does not know you, I know you, and these men know that you sent me. </VERS>\n\t\t\t<VERS vnumber=\"26\"> I made known your name to them, and I will continue to make it known, so that the love you have loved me with may be in them, and I may be in them.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"18\">\n\t\t\t<VERS vnumber=\"1\"> When he had said these things, Jesus went out with his disciples across the Kidron Valley. There was an orchard there, and he and his disciples went into it. </VERS>\n\t\t\t<VERS vnumber=\"2\"> (Now Judas, the one who betrayed him, knew the place too, because Jesus had met there many times with his disciples.)</VERS>\n\t\t\t<VERS vnumber=\"3\"> So Judas obtained a squad of soldiers and some officers of the chief priests and Pharisees. They came to the orchard with lanterns and torches and weapons.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Then Jesus, because he knew everything that was going to happen to him, came and asked them, \"Who are you looking for?\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> They replied, \"Jesus the Nazarene.\" He told them, \"I am he.\" (Now Judas, the one who betrayed him, was standing there with them.)</VERS>\n\t\t\t<VERS vnumber=\"6\"> So when Jesus said to them, \"I am he,\" they retreated and fell to the ground.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Then Jesus asked them again, \"Who are you looking for?\" And they said, \"Jesus the Nazarene.\" </VERS>\n\t\t\t<VERS vnumber=\"8\"> Jesus replied, \"I told you that I am he. If you are looking for me, let these men go.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> He said this to fulfill the word he had spoken, \"I have not lost a single one of those whom you gave me.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> Then Simon Peter, who had a sword, pulled it out and struck the high priest's slave, cutting off his right ear. (Now the slave's name was Malchus.)</VERS>\n\t\t\t<VERS vnumber=\"11\"> But Jesus said to Peter, \"Put your sword back into its sheath! Am I not to drink the cup that the Father has given me?\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> Then the squad of soldiers with their commanding officer and the officers of the Jewish leaders arrested Jesus and tied him up.</VERS>\n\t\t\t<VERS vnumber=\"13\"> They brought him first to Annas, for he was the father-in-law of Caiaphas, who was high priest that year.</VERS>\n\t\t\t<VERS vnumber=\"14\"> (Now it was Caiaphas who had advised the Jewish leaders that it was to their advantage that one man die for the people.)</VERS>\n\t\t\t<VERS vnumber=\"15\"> Simon Peter and another disciple followed them as they brought Jesus to Annas. (Now the other disciple was acquainted with the high priest, and he went with Jesus into the high priest's courtyard.)</VERS>\n\t\t\t<VERS vnumber=\"16\"> But Simon Peter was left standing outside by the door. So the other disciple who was acquainted with the high priest came out and spoke to the slave girl who watched the door, and brought Peter inside.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The girl who was the doorkeeper said to Peter, \"You're not one of this man's disciples too, are you?\" He replied, \"I am not.\" </VERS>\n\t\t\t<VERS vnumber=\"18\"> (Now the slaves and the guards were standing around a charcoal fire they had made, warming themselves because it was cold. Peter also was standing with them, warming himself.)</VERS>\n\t\t\t<VERS vnumber=\"19\"> While this was happening, the high priest questioned Jesus about his disciples and about his teaching.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Jesus replied, \"I have spoken publicly to the world. I always taught in the synagogues and in the temple courts, where all the Jewish people assemble together. I have said nothing in secret. </VERS>\n\t\t\t<VERS vnumber=\"21\"> Why do you ask me? Ask those who heard what I said. They know what I said.\" </VERS>\n\t\t\t<VERS vnumber=\"22\"> When Jesus had said this, one of the high priest's officers who stood nearby struck him on the face and said, \"Is that the way you answer the high priest?\" </VERS>\n\t\t\t<VERS vnumber=\"23\"> Jesus replied, \"If I have said something wrong, confirm what is wrong. But if I spoke correctly, why strike me?\" </VERS>\n\t\t\t<VERS vnumber=\"24\"> Then Annas sent him, still tied up, to Caiaphas the high priest.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Meanwhile Simon Peter was standing in the courtyard warming himself. They said to him, \"You aren't one of his disciples too, are you?\" Peter denied it: \"I am not!\" </VERS>\n\t\t\t<VERS vnumber=\"26\"> One of the high priest's slaves, a relative of the man whose ear Peter had cut off, said, \"Did I not see you in the orchard with him?\"</VERS>\n\t\t\t<VERS vnumber=\"27\"> Then Peter denied it again, and immediately a rooster crowed.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Then they brought Jesus from Caiaphas to the Roman governor's residence. (Now it was very early morning.) They did not go into the governor's residence so they would not be ceremonially defiled, but could eat the Passover meal. </VERS>\n\t\t\t<VERS vnumber=\"29\"> So Pilate came outside to them and said, \"What accusation do you bring against this man?\"</VERS>\n\t\t\t<VERS vnumber=\"30\"> They replied, \"If this man were not a criminal, we would not have handed him over to you.\"</VERS>\n\t\t\t<VERS vnumber=\"31\"> Pilate told them, \"Take him yourselves and pass judgment on him according to your own law!\" The Jewish leaders replied, \"We cannot legally put anyone to death.\"</VERS>\n\t\t\t<VERS vnumber=\"32\"> (This happened to fulfill the word Jesus had spoken when he indicated what kind of death he was going to die.)</VERS>\n\t\t\t<VERS vnumber=\"33\"> So Pilate went back into the governor's residence, summoned Jesus, and asked him, \"Are you the king of the Jews?\"</VERS>\n\t\t\t<VERS vnumber=\"34\"> Jesus replied, \"Are you saying this on your own initiative, or have others told you about me?\" </VERS>\n\t\t\t<VERS vnumber=\"35\"> Pilate answered, \"I am not a Jew, am I? Your own people and your chief priests handed you over to me. What have you done?\"</VERS>\n\t\t\t<VERS vnumber=\"36\"> Jesus replied, \"My kingdom is not from this world. If my kingdom were from this world, my servants would be fighting to keep me from being handed over to the Jewish authorities. But as it is, my kingdom is not from here.\" </VERS>\n\t\t\t<VERS vnumber=\"37\"> Then Pilate said, \"So you are a king!\" Jesus replied, \"You say that I am a king. For this reason I was born, and for this reason I came into the world, to testify to the truth. Everyone who belongs to the truth listens to my voice.\"</VERS>\n\t\t\t<VERS vnumber=\"38\"> Pilate asked, \"What is truth?\" When he had said this he went back outside to the Jewish leaders and announced, \"I find no basis for an accusation against him.</VERS>\n\t\t\t<VERS vnumber=\"39\"> But it is your custom that I release one prisoner for you at the Passover. So do you want me to release for you the king of the Jews?\" </VERS>\n\t\t\t<VERS vnumber=\"40\"> Then they shouted back, \"Not this man, but Barabbas!\" (Now Barabbas was a revolutionary.)</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"19\">\n\t\t\t<VERS vnumber=\"1\"> Then Pilate took Jesus and had him flogged severely.</VERS>\n\t\t\t<VERS vnumber=\"2\"> The soldiers braided a crown of thorns and put it on his head, and they clothed him in a purple robe.</VERS>\n\t\t\t<VERS vnumber=\"3\"> They came up to him again and again and said, \"Hail, king of the Jews!\" And they struck him repeatedly in the face.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Again Pilate went out and said to the Jewish leaders, \"Look, I am bringing him out to you, so that you may know that I find no reason for an accusation against him.\" </VERS>\n\t\t\t<VERS vnumber=\"5\"> So Jesus came outside, wearing the crown of thorns and the purple robe. Pilate said to them, \"Look, here is the man!\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> When the chief priests and their officers saw him, they shouted out, \"Crucify him! Crucify him!\" Pilate said, \"You take him and crucify him! Certainly I find no reason for an accusation against him!\" </VERS>\n\t\t\t<VERS vnumber=\"7\"> The Jewish leaders replied, \"We have a law, and according to our law he ought to die, because he claimed to be the Son of God!\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> When Pilate heard what they said, he was more afraid than ever,</VERS>\n\t\t\t<VERS vnumber=\"9\"> and he went back into the governor's residence and said to Jesus, \"Where do you come from?\" But Jesus gave him no answer. </VERS>\n\t\t\t<VERS vnumber=\"10\"> So Pilate said, \"Do you refuse to speak to me? Don't you know I have the authority to release you, and to crucify you?\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> Jesus replied, \"You would have no authority over me at all, unless it was given to you from above. Therefore the one who handed me over to you is guilty of greater sin.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> From this point on, Pilate tried to release him. But the Jewish leaders shouted out, \"If you release this man, you are no friend of Caesar! Everyone who claims to be a king opposes Caesar!\" </VERS>\n\t\t\t<VERS vnumber=\"13\"> When Pilate heard these words he brought Jesus outside and sat down on the judgment seat in the place called \"The Stone Pavement\" (Gabbatha in Aramaic).</VERS>\n\t\t\t<VERS vnumber=\"14\"> (Now it was the day of preparation for the Passover, about noon.) Pilate said to the Jewish leaders, \"Look, here is your king!\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> Then they shouted out, \"Away with him! Away with him! Crucify him!\" Pilate asked, \"Shall I crucify your king?\" The high priests replied, \"We have no king except Caesar!\" </VERS>\n\t\t\t<VERS vnumber=\"16\"> Then Pilate handed him over to them to be crucified. So they took Jesus, </VERS>\n\t\t\t<VERS vnumber=\"17\"> and carrying his own cross he went out to the place called \"The Place of the Skull\" (called in Aramaic Golgotha).</VERS>\n\t\t\t<VERS vnumber=\"18\"> There they crucified him along with two others, one on each side, with Jesus in the middle. </VERS>\n\t\t\t<VERS vnumber=\"19\"> Pilate also had a notice written and fastened to the cross, which read: \"Jesus the Nazarene, the king of the Jews.\" </VERS>\n\t\t\t<VERS vnumber=\"20\"> Thus many of the Jewish residents of Jerusalem read this notice, because the place where Jesus was crucified was near the city, and the notice was written in Aramaic, Latin, and Greek. </VERS>\n\t\t\t<VERS vnumber=\"21\"> Then the chief priests of the Jews said to Pilate, \"Do not write, 'The king of the Jews,' but rather, 'This man said, I am king of the Jews.'\" </VERS>\n\t\t\t<VERS vnumber=\"22\"> Pilate answered, \"What I have written, I have written.\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> Now when the soldiers crucified Jesus, they took his clothes and made four shares, one for each soldier, and the tunic remained. (Now the tunic was seamless, woven from top to bottom as a single piece.)</VERS>\n\t\t\t<VERS vnumber=\"24\"> So the soldiers said to one another, \"Let's not tear it, but throw dice to see who will get it.\" This took place to fulfill the scripture that says, \"They divided my garments among them, and for my clothing they threw dice.\" So the soldiers did these things.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Now standing beside Jesus' cross were his mother, his mother's sister, Mary the wife of Clopas, and Mary Magdalene.</VERS>\n\t\t\t<VERS vnumber=\"26\"> So when Jesus saw his mother and the disciple whom he loved standing there, he said to his mother, \"Woman, look, here is your son!\" </VERS>\n\t\t\t<VERS vnumber=\"27\"> He then said to his disciple, \"Look, here is your mother!\" From that very time the disciple took her into his own home.</VERS>\n\t\t\t<VERS vnumber=\"28\"> After this Jesus, realizing that by this time everything was completed, said (in order to fulfill the scripture), \"I am thirsty!\"</VERS>\n\t\t\t<VERS vnumber=\"29\"> A jar full of sour wine was there, so they put a sponge soaked in sour wine on a branch of hyssop and lifted it to his mouth.</VERS>\n\t\t\t<VERS vnumber=\"30\"> When he had received the sour wine, Jesus said, \"It is completed!\" Then he bowed his head and gave up his spirit.</VERS>\n\t\t\t<VERS vnumber=\"31\"> Then, because it was the day of preparation, so that the bodies should not stay on the crosses on the Sabbath (for that Sabbath was an especially important one), the Jewish leaders asked Pilate to have the victims' legs broken and the bodies taken down.</VERS>\n\t\t\t<VERS vnumber=\"32\"> So the soldiers came and broke the legs of the two men who had been crucified with Jesus, first the one and then the other.</VERS>\n\t\t\t<VERS vnumber=\"33\"> But when they came to Jesus and saw that he was already dead, they did not break his legs.</VERS>\n\t\t\t<VERS vnumber=\"34\"> But one of the soldiers pierced his side with a spear, and blood and water flowed out immediately. </VERS>\n\t\t\t<VERS vnumber=\"35\"> And the person who saw it has testified (and his testimony is true, and he knows that he is telling the truth), so that you also may believe. </VERS>\n\t\t\t<VERS vnumber=\"36\"> For these things happened so that the scripture would be fulfilled, \"Not a bone of his will be broken.\"</VERS>\n\t\t\t<VERS vnumber=\"37\"> And again another scripture says, \"They will look on the one whom they have pierced.\"</VERS>\n\t\t\t<VERS vnumber=\"38\"> After this, Joseph of Arimathea, a disciple of Jesus (but secretly, because he feared the Jewish leaders), asked Pilate if he could remove the body of Jesus. Pilate gave him permission, so he went and took the body away.</VERS>\n\t\t\t<VERS vnumber=\"39\"> Nicodemus, the man who had previously come to Jesus at night, accompanied Joseph, carrying a mixture of myrrh and aloes weighing about seventy-five pounds.</VERS>\n\t\t\t<VERS vnumber=\"40\"> Then they took Jesus' body and wrapped it, with the aromatic spices, in strips of linen cloth according to Jewish burial customs.</VERS>\n\t\t\t<VERS vnumber=\"41\"> Now at the place where Jesus was crucified there was a garden, and in the garden was a new tomb where no one had yet been buried.</VERS>\n\t\t\t<VERS vnumber=\"42\"> And so, because it was the Jewish day of preparation and the tomb was nearby, they placed Jesus' body there.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"20\">\n\t\t\t<VERS vnumber=\"1\"> Now very early on the first day of the week, while it was still dark, Mary Magdalene came to the tomb and saw that the stone had been moved away from the entrance.</VERS>\n\t\t\t<VERS vnumber=\"2\"> So she went running to Simon Peter and the other disciple whom Jesus loved and told them, \"They have taken the Lord from the tomb, and we don't know where they have put him!\" </VERS>\n\t\t\t<VERS vnumber=\"3\"> Then Peter and the other disciple set out to go to the tomb.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The two were running together, but the other disciple ran faster than Peter and reached the tomb first.</VERS>\n\t\t\t<VERS vnumber=\"5\"> He bent down and saw the strips of linen cloth lying there, but he did not go in. </VERS>\n\t\t\t<VERS vnumber=\"6\"> Then Simon Peter, who had been following him, arrived and went right into the tomb. He saw the strips of linen cloth lying there, </VERS>\n\t\t\t<VERS vnumber=\"7\"> and the face cloth, which had been around Jesus' head, not lying with the strips of linen cloth but rolled up in a place by itself.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Then the other disciple, who had reached the tomb first, came in, and he saw and believed.</VERS>\n\t\t\t<VERS vnumber=\"9\"> (For they did not yet understand the scripture that Jesus must rise from the dead.)</VERS>\n\t\t\t<VERS vnumber=\"10\"> So the disciples went back to their homes.</VERS>\n\t\t\t<VERS vnumber=\"11\"> But Mary stood outside the tomb weeping. As she wept, she bent down and looked into the tomb.</VERS>\n\t\t\t<VERS vnumber=\"12\"> And she saw two angels in white sitting where Jesus' body had been lying, one at the head and one at the feet.</VERS>\n\t\t\t<VERS vnumber=\"13\"> They said to her, \"Woman, why are you weeping?\" Mary replied, \"They have taken my Lord away, and I do not know where they have put him!\" </VERS>\n\t\t\t<VERS vnumber=\"14\"> When she had said this, she turned around and saw Jesus standing there, but she did not know that it was Jesus.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Jesus said to her, \"Woman, why are you weeping? Who are you looking for?\" Because she thought he was the gardener, she said to him, \"Sir, if you have carried him away, tell me where you have put him, and I will take him.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> Jesus said to her, \"Mary.\" She turned and said to him in Aramaic, \"Rabboni\" (which means Teacher).</VERS>\n\t\t\t<VERS vnumber=\"17\"> Jesus replied, \"Do not touch me, for I have not yet ascended to my Father. Go to my brothers and tell them, 'I am ascending to my Father and your Father, to my God and your God.'\" </VERS>\n\t\t\t<VERS vnumber=\"18\"> Mary Magdalene came and informed the disciples, \"I have seen the Lord!\" And she told them what Jesus had said to her.</VERS>\n\t\t\t<VERS vnumber=\"19\"> On the evening of that day, the first day of the week, the disciples had gathered together and locked the doors of the place because they were afraid of the Jewish leaders. Jesus came and stood among them and said to them, \"Peace be with you.\" </VERS>\n\t\t\t<VERS vnumber=\"20\"> When he had said this, he showed them his hands and his side. Then the disciples rejoiced when they saw the Lord.</VERS>\n\t\t\t<VERS vnumber=\"21\"> So Jesus said to them again, \"Peace be with you. Just as the Father has sent me, I also send you.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> And after he said this, he breathed on them and said, \"Receive the Holy Spirit.</VERS>\n\t\t\t<VERS vnumber=\"23\"> If you forgive anyone's sins, they are forgiven; if you retain anyone's sins, they are retained.\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> Now Thomas (called Didymus), one of the twelve, was not with them when Jesus came. </VERS>\n\t\t\t<VERS vnumber=\"25\"> The other disciples told him, \"We have seen the Lord!\" But he replied, \"Unless I see the wounds from the nails in his hands, and put my finger into the wounds from the nails, and put my hand into his side, I will never believe it!\"</VERS>\n\t\t\t<VERS vnumber=\"26\"> Eight days later the disciples were again together in the house, and Thomas was with them. Although the doors were locked, Jesus came and stood among them and said, \"Peace be with you!\" </VERS>\n\t\t\t<VERS vnumber=\"27\"> Then he said to Thomas, \"Put your finger here, and examine my hands. Extend your hand and put it into my side. Do not continue in your unbelief, but believe.\"</VERS>\n\t\t\t<VERS vnumber=\"28\"> Thomas replied to him, \"My Lord and my God!\"</VERS>\n\t\t\t<VERS vnumber=\"29\"> Jesus said to him, \"Have you believed because you have seen me? Blessed are the people who have not seen and yet have believed.\"</VERS>\n\t\t\t<VERS vnumber=\"30\"> Now Jesus performed many other miraculous signs in the presence of the disciples, which are not recorded in this book.</VERS>\n\t\t\t<VERS vnumber=\"31\"> But these are recorded so that you may believe that Jesus is the Christ, the Son of God, and that by believing you may have life in his name.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"21\">\n\t\t\t<VERS vnumber=\"1\"> After this Jesus revealed himself again to the disciples by the Sea of Tiberias. Now this is how he did so.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Simon Peter, Thomas (called Didymus), Nathanael (who was from Cana in Galilee), the sons of Zebedee, and two other disciples of his were together. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Simon Peter told them, \"I am going fishing.\" \"We will go with you,\" they replied. They went out and got into the boat, but that night they caught nothing.</VERS>\n\t\t\t<VERS vnumber=\"4\"> When it was already very early morning, Jesus stood on the beach, but the disciples did not know that it was Jesus.</VERS>\n\t\t\t<VERS vnumber=\"5\"> So Jesus said to them, \"Children, you don't have any fish, do you?\" They replied, \"No.\" </VERS>\n\t\t\t<VERS vnumber=\"6\"> He told them, \"Throw your net on the right side of the boat, and you will find some.\" So they threw the net, and were not able to pull it in because of the large number of fish.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Then the disciple whom Jesus loved said to Peter, \"It is the Lord!\" So Simon Peter, when he heard that it was the Lord, tucked in his outer garment (for he had nothing on underneath it), and plunged into the sea. </VERS>\n\t\t\t<VERS vnumber=\"8\"> Meanwhile the other disciples came with the boat, dragging the net full of fish, for they were not far from land, only about a hundred yards.</VERS>\n\t\t\t<VERS vnumber=\"9\"> When they got out on the beach, they saw a charcoal fire ready with a fish placed on it, and bread. </VERS>\n\t\t\t<VERS vnumber=\"10\"> Jesus said, \"Bring some of the fish you have just now caught.\" </VERS>\n\t\t\t<VERS vnumber=\"11\"> So Simon Peter went aboard and pulled the net to shore. It was full of large fish, one hundred fifty-three, but although there were so many, the net was not torn. </VERS>\n\t\t\t<VERS vnumber=\"12\"> \"Come, have breakfast,\" Jesus said. But none of the disciples dared to ask him, \"Who are you?\" because they knew it was the Lord. </VERS>\n\t\t\t<VERS vnumber=\"13\"> Jesus came and took the bread and gave it to them, and did the same with the fish.</VERS>\n\t\t\t<VERS vnumber=\"14\"> This was now the third time Jesus was revealed to the disciples after he was raised from the dead.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Then when they had finished breakfast, Jesus said to Simon Peter, \"Simon, son of John, do you love me more than these do?\" He replied, \"Yes, Lord, you know I love you.\" Jesus told him, \"Feed my lambs.\" </VERS>\n\t\t\t<VERS vnumber=\"16\"> Jesus said a second time, \"Simon, son of John, do you love me?\" He replied, \"Yes, Lord, you know I love you.\" Jesus told him, \"Shepherd my sheep.\" </VERS>\n\t\t\t<VERS vnumber=\"17\"> Jesus said a third time, \"Simon, son of John, do you love me?\" Peter was distressed that Jesus asked him a third time, \"Do you love me?\" and said, \"Lord, you know everything. You know that I love you.\" Jesus replied, \"Feed my sheep.</VERS>\n\t\t\t<VERS vnumber=\"18\"> I tell you the solemn truth, when you were young, you tied your clothes around you and went wherever you wanted, but when you are old, you will stretch out your hands, and others will tie you up and bring you where you do not want to go.\" </VERS>\n\t\t\t<VERS vnumber=\"19\"> (Now Jesus said this to indicate clearly by what kind of death Peter was going to glorify God.) After he said this, Jesus told Peter, \"Follow me.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> Peter turned around and saw the disciple whom Jesus loved following them. (This was the disciple who had leaned back against Jesus' chest at the meal and asked, \"Lord, who is the one who is going to betray you?\")</VERS>\n\t\t\t<VERS vnumber=\"21\"> So when Peter saw him, he asked Jesus, \"Lord, what about him?\" </VERS>\n\t\t\t<VERS vnumber=\"22\"> Jesus replied, \"If I want him to live until I come back, what concern is that of yours? You follow me!\" </VERS>\n\t\t\t<VERS vnumber=\"23\"> So the saying circulated among the brothers and sisters that this disciple was not going to die. But Jesus did not say to him that he was not going to die, but rather, \"If I want him to live until I come back, what concern is that of yours?\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> This is the disciple who testifies about these things and has written these things, and we know that his testimony is true.</VERS>\n\t\t\t<VERS vnumber=\"25\"> There are many other things that Jesus did. If every one of them were written down, I suppose the whole world would not have room for the books that would be written.</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"44\" bname=\"Acts\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> I wrote the former account, Theophilus, about all that Jesus began to do and teach </VERS>\n\t\t\t<VERS vnumber=\"2\"> until the day he was taken up to heaven, after he had given orders by the Holy Spirit to the apostles he had chosen. </VERS>\n\t\t\t<VERS vnumber=\"3\"> To the same apostles also, after his suffering, he presented himself alive with many convincing proofs. He was seen by them over a forty-day period and spoke about matters concerning the kingdom of God. </VERS>\n\t\t\t<VERS vnumber=\"4\"> While he was with them, he declared, \"Do not leave Jerusalem, but wait there for what my Father promised, which you heard about from me.</VERS>\n\t\t\t<VERS vnumber=\"5\"> For John baptized with water, but you will be baptized with the Holy Spirit not many days from now.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> So when they had gathered together, they began to ask him, \"Lord, is this the time when you are restoring the kingdom to Israel?\" </VERS>\n\t\t\t<VERS vnumber=\"7\"> He told them, \"You are not permitted to know the times or periods that the Father has set by his own authority. </VERS>\n\t\t\t<VERS vnumber=\"8\"> But you will receive power when the Holy Spirit has come upon you, and you will be my witnesses in Jerusalem, and in all Judea and Samaria, and to the farthest parts of the earth.\" </VERS>\n\t\t\t<VERS vnumber=\"9\"> After he had said this, while they were watching, he was lifted up and a cloud hid him from their sight. </VERS>\n\t\t\t<VERS vnumber=\"10\"> As they were still staring into the sky while he was going, suddenly two men in white clothing stood near them </VERS>\n\t\t\t<VERS vnumber=\"11\"> and said, \"Men of Galilee, why do you stand here looking up into the sky? This same Jesus who has been taken up from you into heaven will come back in the same way you saw him go into heaven.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> Then they returned to Jerusalem from the mountain called the Mount of Olives (which is near Jerusalem, a Sabbath day's journey away). </VERS>\n\t\t\t<VERS vnumber=\"13\"> When they had entered Jerusalem, they went to the upstairs room where they were staying. Peter and John, and James, and Andrew, Philip and Thomas, Bartholomew and Matthew, James son of Alphaeus and Simon the Zealot, and Judas son of James were there.</VERS>\n\t\t\t<VERS vnumber=\"14\"> All these continued together in prayer with one mind, together with the women, along with Mary the mother of Jesus, and his brothers.</VERS>\n\t\t\t<VERS vnumber=\"15\"> In those days Peter stood up among the believers (a gathering of about one hundred and twenty people) and said, </VERS>\n\t\t\t<VERS vnumber=\"16\"> \"Brothers, the scripture had to be fulfilled that the Holy Spirit foretold through David concerning Judas, who became the guide for those who arrested Jesus,</VERS>\n\t\t\t<VERS vnumber=\"17\"> for he was counted as one of us and received a share in this ministry.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> (Now this man Judas acquired a field with the reward of his unjust deed, and falling headfirst he burst open in the middle and all his intestines gushed out.</VERS>\n\t\t\t<VERS vnumber=\"19\"> This became known to all who lived in Jerusalem, so that in their own language they called that field Hakeldama, that is, \"Field of Blood.\") </VERS>\n\t\t\t<VERS vnumber=\"20\"> \"For it is written in the book of Psalms, 'Let his house become deserted, and let there be no one to live in it,' and 'Let another take his position of responsibility.'</VERS>\n\t\t\t<VERS vnumber=\"21\"> Thus one of the men who have accompanied us during all the time the Lord Jesus associated with us, </VERS>\n\t\t\t<VERS vnumber=\"22\"> beginning from his baptism by John until the day he was taken up from us, one of these must become a witness of his resurrection together with us.\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> So they proposed two candidates: Joseph called Barsabbas (also called Justus) and Matthias. </VERS>\n\t\t\t<VERS vnumber=\"24\"> Then they prayed, \"Lord, you know the hearts of all. Show us which one of these two you have chosen </VERS>\n\t\t\t<VERS vnumber=\"25\"> to assume the task of this service and apostleship from which Judas turned aside to go to his own place.\"</VERS>\n\t\t\t<VERS vnumber=\"26\"> Then they cast lots for them, and the one chosen was Matthias; so he was counted with the eleven apostles.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> Now when the day of Pentecost had come, they were all together in one place. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Suddenly a sound like a violent wind blowing came from heaven and filled the entire house where they were sitting. </VERS>\n\t\t\t<VERS vnumber=\"3\"> And tongues spreading out like a fire appeared to them and came to rest on each one of them. </VERS>\n\t\t\t<VERS vnumber=\"4\"> All of them were filled with the Holy Spirit, and they began to speak in other languages as the Spirit enabled them.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Now there were devout Jews from every nation under heaven residing in Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"6\"> When this sound occurred, a crowd gathered and was in confusion, because each one heard them speaking in his own language. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Completely baffled, they said, \"Aren't all these who are speaking Galileans? </VERS>\n\t\t\t<VERS vnumber=\"8\"> And how is it that each one of us hears them in our own native language?</VERS>\n\t\t\t<VERS vnumber=\"9\"> Parthians, Medes, Elamites, and residents of Mesopotamia, Judea and Cappadocia, Pontus and the province of Asia,</VERS>\n\t\t\t<VERS vnumber=\"10\"> Phrygia and Pamphylia, Egypt and the parts of Libya near Cyrene, and visitors from Rome,</VERS>\n\t\t\t<VERS vnumber=\"11\"> both Jews and proselytes, Cretans and Arabs, we hear them speaking in our own languages about the great deeds God has done!\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> All were astounded and greatly confused, saying to one another, \"What does this mean?\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> But others jeered at the speakers, saying, \"They are drunk on new wine!\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> But Peter stood up with the eleven, raised his voice, and addressed them: \"You men of Judea and all you who live in Jerusalem, know this and listen carefully to what I say. </VERS>\n\t\t\t<VERS vnumber=\"15\"> In spite of what you think, these men are not drunk, for it is only nine o'clock in the morning.</VERS>\n\t\t\t<VERS vnumber=\"16\"> But this is what was spoken about through the prophet Joel:</VERS>\n\t\t\t<VERS vnumber=\"17\"> 'And in the last days it will be,' God says, 'that I will pour out my Spirit on all people, and your sons and your daughters will prophesy, and your young men will see visions, and your old men will dream dreams.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Even on my servants, both men and women, I will pour out my Spirit in those days, and they will prophesy.</VERS>\n\t\t\t<VERS vnumber=\"19\"> And I will perform wonders in the sky above and miraculous signs on the earth below, blood and fire and clouds of smoke.</VERS>\n\t\t\t<VERS vnumber=\"20\"> The sun will be changed to darkness and the moon to blood before the great and glorious day of the Lord comes.</VERS>\n\t\t\t<VERS vnumber=\"21\"> And then everyone who calls on the name of the Lord will be saved.'</VERS>\n\t\t\t<VERS vnumber=\"22\"> \"Men of Israel, listen to these words: Jesus the Nazarene, a man clearly attested to you by God with powerful deeds, wonders, and miraculous signs that God performed among you through him, just as you yourselves know,</VERS>\n\t\t\t<VERS vnumber=\"23\"> this man, who was handed over by the predetermined plan and foreknowledge of God, you executed by nailing him to a cross at the hands of Gentiles.</VERS>\n\t\t\t<VERS vnumber=\"24\"> But God raised him up, having released him from the pains of death, because it was not possible for him to be held in its power.</VERS>\n\t\t\t<VERS vnumber=\"25\"> For David says about him, 'I saw the Lord always in front of me, for he is at my right hand so that I will not be shaken.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Therefore my heart was glad and my tongue rejoiced; my body also will live in hope,</VERS>\n\t\t\t<VERS vnumber=\"27\"> because you will not leave my soul in Hades, nor permit your Holy One to experience decay.</VERS>\n\t\t\t<VERS vnumber=\"28\"> You have made known to me the paths of life; you will make me full of joy with your presence.'</VERS>\n\t\t\t<VERS vnumber=\"29\"> \"Brothers, I can speak confidently to you about our forefather David, that he both died and was buried, and his tomb is with us to this day. </VERS>\n\t\t\t<VERS vnumber=\"30\"> So then, because he was a prophet and knew that God had sworn to him with an oath to seat one of his descendants on his throne,</VERS>\n\t\t\t<VERS vnumber=\"31\"> David by foreseeing this spoke about the resurrection of the Christ, that he was neither abandoned to Hades, nor did his body experience decay.</VERS>\n\t\t\t<VERS vnumber=\"32\"> This Jesus God raised up, and we are all witnesses of it.</VERS>\n\t\t\t<VERS vnumber=\"33\"> So then, exalted to the right hand of God, and having received the promise of the Holy Spirit from the Father, he has poured out what you both see and hear. </VERS>\n\t\t\t<VERS vnumber=\"34\"> For David did not ascend into heaven, but he himself says, 'The Lord said to my lord, \"Sit at my right hand</VERS>\n\t\t\t<VERS vnumber=\"35\"> until I make your enemies a footstool for your feet.\"'</VERS>\n\t\t\t<VERS vnumber=\"36\"> Therefore let all the house of Israel know beyond a doubt that God has made this Jesus whom you crucified both Lord and Christ.\"</VERS>\n\t\t\t<VERS vnumber=\"37\"> Now when they heard this, they were acutely distressed and said to Peter and the rest of the apostles, \"What should we do, brothers?\" </VERS>\n\t\t\t<VERS vnumber=\"38\"> Peter said to them, \"Repent, and each one of you be baptized in the name of Jesus Christ for the forgiveness of your sins, and you will receive the gift of the Holy Spirit.</VERS>\n\t\t\t<VERS vnumber=\"39\"> For the promise is for you and your children, and for all who are far away, as many as the Lord our God will call to himself.\" </VERS>\n\t\t\t<VERS vnumber=\"40\"> With many other words he testified and exhorted them saying, \"Save yourselves from this perverse generation!\" </VERS>\n\t\t\t<VERS vnumber=\"41\"> So those who accepted his message were baptized, and that day about three thousand people were added.</VERS>\n\t\t\t<VERS vnumber=\"42\"> They were devoting themselves to the apostles' teaching and to fellowship, to the breaking of bread and to prayer.</VERS>\n\t\t\t<VERS vnumber=\"43\"> Reverential awe came over everyone, and many wonders and miraculous signs came about by the apostles. </VERS>\n\t\t\t<VERS vnumber=\"44\"> All who believed were together and held everything in common, </VERS>\n\t\t\t<VERS vnumber=\"45\"> and they began selling their property and possessions and distributing the proceeds to everyone, as anyone had need. </VERS>\n\t\t\t<VERS vnumber=\"46\"> Every day they continued to gather together by common consent in the temple courts, breaking bread from house to house, sharing their food with glad and humble hearts,</VERS>\n\t\t\t<VERS vnumber=\"47\"> praising God and having the good will of all the people. And the Lord was adding to their number every day those who were being saved.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> Now Peter and John were going up to the temple at the time for prayer, at three o'clock in the afternoon.</VERS>\n\t\t\t<VERS vnumber=\"2\"> And a man lame from birth was being carried up, who was placed at the temple gate called \"the Beautiful Gate\" every day so he could beg for money from those going into the temple courts.</VERS>\n\t\t\t<VERS vnumber=\"3\"> When he saw Peter and John about to go into the temple courts, he asked them for money.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Peter looked directly at him (as did John) and said, \"Look at us!\" </VERS>\n\t\t\t<VERS vnumber=\"5\"> So the lame man paid attention to them, expecting to receive something from them. </VERS>\n\t\t\t<VERS vnumber=\"6\"> But Peter said, \"I have no silver or gold, but what I do have I give you. In the name of Jesus Christ the Nazarene, stand up and walk!\" </VERS>\n\t\t\t<VERS vnumber=\"7\"> Then Peter took hold of him by the right hand and raised him up, and at once the man's feet and ankles were made strong.</VERS>\n\t\t\t<VERS vnumber=\"8\"> He jumped up, stood and began walking around, and he entered the temple courts with them, walking and leaping and praising God. </VERS>\n\t\t\t<VERS vnumber=\"9\"> All the people saw him walking and praising God, </VERS>\n\t\t\t<VERS vnumber=\"10\"> and they recognized him as the man who used to sit and ask for donations at the Beautiful Gate of the temple, and they were filled with astonishment and amazement at what had happened to him.</VERS>\n\t\t\t<VERS vnumber=\"11\"> While the man was hanging on to Peter and John, all the people, completely astounded, ran together to them in the covered walkway called Solomon's Portico.</VERS>\n\t\t\t<VERS vnumber=\"12\"> When Peter saw this, he declared to the people, \"Men of Israel, why are you amazed at this? Why do you stare at us as if we had made this man walk by our own power or piety? </VERS>\n\t\t\t<VERS vnumber=\"13\"> The God of Abraham, Isaac, and Jacob, the God of our forefathers, has glorified his servant Jesus, whom you handed over and rejected in the presence of Pilate after he had decided to release him. </VERS>\n\t\t\t<VERS vnumber=\"14\"> But you rejected the Holy and Righteous One and asked that a man who was a murderer be released to you. </VERS>\n\t\t\t<VERS vnumber=\"15\"> You killed the Originator of life, whom God raised from the dead. To this fact we are witnesses!</VERS>\n\t\t\t<VERS vnumber=\"16\"> And on the basis of faith in Jesus' name, his very name has made this man, whom you see and know, strong. The faith that is through Jesus has given him this complete health in the presence of you all.</VERS>\n\t\t\t<VERS vnumber=\"17\"> And now, brothers, I know you acted in ignorance, as your rulers did too. </VERS>\n\t\t\t<VERS vnumber=\"18\"> But the things God foretold long ago through all the prophets, that his Christ would suffer, he has fulfilled in this way.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Therefore repent and turn back so that your sins may be wiped out,</VERS>\n\t\t\t<VERS vnumber=\"20\"> so that times of refreshing may come from the presence of the Lord, and so that he may send the Messiah appointed for you, that is, Jesus.</VERS>\n\t\t\t<VERS vnumber=\"21\"> This one heaven must receive until the time all things are restored, which God declared from times long ago through his holy prophets. </VERS>\n\t\t\t<VERS vnumber=\"22\"> Moses said, 'The Lord your God will raise up for you a prophet like me from among your brothers. You must obey him in everything he tells you.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Every person who does not obey that prophet will be destroyed and thus removed from the people.'</VERS>\n\t\t\t<VERS vnumber=\"24\"> And all the prophets, from Samuel and those who followed him, have spoken about and announced these days. </VERS>\n\t\t\t<VERS vnumber=\"25\"> You are the sons of the prophets and of the covenant that God made with your ancestors, saying to Abraham, 'And in your descendants all the nations of the earth will be blessed.'</VERS>\n\t\t\t<VERS vnumber=\"26\"> God raised up his servant and sent him first to you, to bless you by turning each one of you from your iniquities.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\"> While Peter and John were speaking to the people, the priests and the commander of the temple guard and the Sadducees came up to them, </VERS>\n\t\t\t<VERS vnumber=\"2\"> angry because they were teaching the people and announcing in Jesus the resurrection of the dead. </VERS>\n\t\t\t<VERS vnumber=\"3\"> So they seized them and put them in jail until the next day (for it was already evening). </VERS>\n\t\t\t<VERS vnumber=\"4\"> But many of those who had listened to the message believed, and the number of the men came to about five thousand.</VERS>\n\t\t\t<VERS vnumber=\"5\"> On the next day, their rulers, elders, and experts in the law came together in Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Annas the high priest was there, and Caiaphas, John, Alexander, and others who were members of the high priest's family.</VERS>\n\t\t\t<VERS vnumber=\"7\"> After making Peter and John stand in their midst, they began to inquire, \"By what power or by what name did you do this?\" </VERS>\n\t\t\t<VERS vnumber=\"8\"> Then Peter, filled with the Holy Spirit, replied, \"Rulers of the people and elders,</VERS>\n\t\t\t<VERS vnumber=\"9\"> if we are being examined today for a good deed done to a sick man, by what means this man was healed,</VERS>\n\t\t\t<VERS vnumber=\"10\"> let it be known to all of you and to all the people of Israel that by the name of Jesus Christ the Nazarene whom you crucified, whom God raised from the dead, this man stands before you healthy. </VERS>\n\t\t\t<VERS vnumber=\"11\"> This Jesus is the stone that was rejected by you, the builders, that has become the cornerstone.</VERS>\n\t\t\t<VERS vnumber=\"12\"> And there is salvation in no one else, for there is no other name under heaven given among people by which we must be saved.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> When they saw the boldness of Peter and John, and discovered that they were uneducated and ordinary men, they were amazed and recognized these men had been with Jesus. </VERS>\n\t\t\t<VERS vnumber=\"14\"> And because they saw the man who had been healed standing with them, they had nothing to say against this.</VERS>\n\t\t\t<VERS vnumber=\"15\"> But when they had ordered them to go outside the council, they began to confer with one another, </VERS>\n\t\t\t<VERS vnumber=\"16\"> saying, \"What should we do with these men? For it is plain to all who live in Jerusalem that a notable miraculous sign has come about through them, and we cannot deny it. </VERS>\n\t\t\t<VERS vnumber=\"17\"> But to keep this matter from spreading any further among the people, let us warn them to speak no more to anyone in this name.\" </VERS>\n\t\t\t<VERS vnumber=\"18\"> And they called them in and ordered them not to speak or teach at all in the name of Jesus. </VERS>\n\t\t\t<VERS vnumber=\"19\"> But Peter and John replied, \"Whether it is right before God to obey you rather than God, you decide, </VERS>\n\t\t\t<VERS vnumber=\"20\"> for it is impossible for us not to speak about what we have seen and heard.\" </VERS>\n\t\t\t<VERS vnumber=\"21\"> After threatening them further, they released them, for they could not find how to punish them on account of the people, because they were all praising God for what had happened. </VERS>\n\t\t\t<VERS vnumber=\"22\"> For the man, on whom this miraculous sign of healing had been performed, was over forty years old.</VERS>\n\t\t\t<VERS vnumber=\"23\"> When they were released, Peter and John went to their fellow believers and reported everything the high priests and the elders had said to them. </VERS>\n\t\t\t<VERS vnumber=\"24\"> When they heard this, they raised their voices to God with one mind and said, \"Master of all, you who made the heaven, the earth, the sea, and everything that is in them, </VERS>\n\t\t\t<VERS vnumber=\"25\"> who said by the Holy Spirit through your servant David our forefather, 'Why do the nations rage, and the peoples plot foolish things?</VERS>\n\t\t\t<VERS vnumber=\"26\"> The kings of the earth stood together, and the rulers assembled together, against the Lord and against his Christ.'</VERS>\n\t\t\t<VERS vnumber=\"27\"> \"For indeed both Herod and Pontius Pilate, with the Gentiles and the people of Israel, assembled together in this city against your holy servant Jesus, whom you anointed,</VERS>\n\t\t\t<VERS vnumber=\"28\"> to do as much as your power and your plan had decided beforehand would happen. </VERS>\n\t\t\t<VERS vnumber=\"29\"> And now, Lord, pay attention to their threats, and grant to your servants to speak your message with great courage,</VERS>\n\t\t\t<VERS vnumber=\"30\"> while you extend your hand to heal, and to bring about miraculous signs and wonders through the name of your holy servant Jesus.\" </VERS>\n\t\t\t<VERS vnumber=\"31\"> When they had prayed, the place where they were assembled together was shaken, and they were all filled with the Holy Spirit and began to speak the word of God courageously.</VERS>\n\t\t\t<VERS vnumber=\"32\"> The group of those who believed were of one heart and mind, and no one said that any of his possessions was his own, but everything was held in common.</VERS>\n\t\t\t<VERS vnumber=\"33\"> With great power the apostles were giving testimony to the resurrection of the Lord Jesus, and great grace was on them all. </VERS>\n\t\t\t<VERS vnumber=\"34\"> For there was no one needy among them, because those who were owners of land or houses were selling them and bringing the proceeds from the sales </VERS>\n\t\t\t<VERS vnumber=\"35\"> and placing them at the apostles' feet. The proceeds were distributed to each, as anyone had need. </VERS>\n\t\t\t<VERS vnumber=\"36\"> So Joseph, a Levite who was a native of Cyprus, called by the apostles Barnabas (which is translated \"son of encouragement\"),</VERS>\n\t\t\t<VERS vnumber=\"37\"> sold a field that belonged to him and brought the money and placed it at the apostles' feet.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"5\">\n\t\t\t<VERS vnumber=\"1\"> Now a man named Ananias, together with Sapphira his wife, sold a piece of property.</VERS>\n\t\t\t<VERS vnumber=\"2\"> He kept back for himself part of the proceeds with his wife's knowledge; he brought only part of it and placed it at the apostles' feet. </VERS>\n\t\t\t<VERS vnumber=\"3\"> But Peter said, \"Ananias, why has Satan filled your heart to lie to the Holy Spirit and keep back for yourself part of the proceeds from the sale of the land? </VERS>\n\t\t\t<VERS vnumber=\"4\"> Before it was sold, did it not belong to you? And when it was sold, was the money not at your disposal? How have you thought up this deed in your heart? You have not lied to people but to God!\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> When Ananias heard these words he collapsed and died, and great fear gripped all who heard about it. </VERS>\n\t\t\t<VERS vnumber=\"6\"> So the young men came, wrapped him up, carried him out, and buried him. </VERS>\n\t\t\t<VERS vnumber=\"7\"> After an interval of about three hours, his wife came in, but she did not know what had happened.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Peter said to her, \"Tell me, were the two of you paid this amount for the land?\" Sapphira said, \"Yes, that much.\" </VERS>\n\t\t\t<VERS vnumber=\"9\"> Peter then told her, \"Why have you agreed together to test the Spirit of the Lord? Look! The feet of those who have buried your husband are at the door, and they will carry you out!\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> At once she collapsed at his feet and died. So when the young men came in, they found her dead, and they carried her out and buried her beside her husband. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Great fear gripped the whole church and all who heard about these things.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Now many miraculous signs and wonders came about among the people through the hands of the apostles. By common consent they were all meeting together in Solomon's Portico.</VERS>\n\t\t\t<VERS vnumber=\"13\"> None of the rest dared to join them, but the people held them in high honor.</VERS>\n\t\t\t<VERS vnumber=\"14\"> More and more believers in the Lord were added to their number, crowds of both men and women. </VERS>\n\t\t\t<VERS vnumber=\"15\"> Thus they even carried the sick out into the streets, and put them on cots and pallets, so that when Peter came by at least his shadow would fall on some of them. </VERS>\n\t\t\t<VERS vnumber=\"16\"> A crowd of people from the towns around Jerusalem also came together, bringing the sick and those troubled by unclean spirits. They were all being healed.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Now the high priest rose up, and all those with him (that is, the religious party of the Sadducees), and they were filled with jealousy.</VERS>\n\t\t\t<VERS vnumber=\"18\"> They laid hands on the apostles and put them in a public jail. </VERS>\n\t\t\t<VERS vnumber=\"19\"> But during the night an angel of the Lord opened the doors of the prison, led them out, and said,</VERS>\n\t\t\t<VERS vnumber=\"20\"> \"Go and stand in the temple courts and proclaim to the people all the words of this life.\" </VERS>\n\t\t\t<VERS vnumber=\"21\"> When they heard this, they entered the temple courts at daybreak and began teaching. Now when the high priest and those who were with him arrived, they summoned the Sanhedrin, that is, the whole high council of the Israelites, and sent to the jail to have the apostles brought before them.</VERS>\n\t\t\t<VERS vnumber=\"22\"> But the officers who came for them did not find them in the prison, so they returned and reported,</VERS>\n\t\t\t<VERS vnumber=\"23\"> \"We found the jail locked securely and the guards standing at the doors, but when we opened them, we found no one inside.\" </VERS>\n\t\t\t<VERS vnumber=\"24\"> Now when the commander of the temple guard and the chief priests heard this report, they were greatly puzzled concerning it, wondering what this could be. </VERS>\n\t\t\t<VERS vnumber=\"25\"> But someone came and reported to them, \"Look! The men you put in prison are standing in the temple courts and teaching the people!\" </VERS>\n\t\t\t<VERS vnumber=\"26\"> Then the commander of the temple guard went with the officers and brought the apostles without the use of force (for they were afraid of being stoned by the people).</VERS>\n\t\t\t<VERS vnumber=\"27\"> When they had brought them, they stood them before the council, and the high priest questioned them, </VERS>\n\t\t\t<VERS vnumber=\"28\"> saying, \"We gave you strict orders not to teach in this name. Look, you have filled Jerusalem with your teaching, and you intend to bring this man's blood on us!\"</VERS>\n\t\t\t<VERS vnumber=\"29\"> But Peter and the apostles replied, \"We must obey God rather than people.</VERS>\n\t\t\t<VERS vnumber=\"30\"> The God of our forefathers raised up Jesus, whom you seized and killed by hanging him on a tree.</VERS>\n\t\t\t<VERS vnumber=\"31\"> God exalted him to his right hand as Leader and Savior, to give repentance to Israel and forgiveness of sins.</VERS>\n\t\t\t<VERS vnumber=\"32\"> And we are witnesses of these events, and so is the Holy Spirit whom God has given to those who obey him.\"</VERS>\n\t\t\t<VERS vnumber=\"33\"> Now when they heard this, they became furious and wanted to execute them.</VERS>\n\t\t\t<VERS vnumber=\"34\"> But a Pharisee whose name was Gamaliel, a teacher of the law who was respected by all the people, stood up in the council and ordered the men to be put outside for a short time. </VERS>\n\t\t\t<VERS vnumber=\"35\"> Then he said to the council, \"Men of Israel, pay close attention to what you are about to do to these men. </VERS>\n\t\t\t<VERS vnumber=\"36\"> For some time ago Theudas rose up, claiming to be somebody, and about four hundred men joined him. He was killed, and all who followed him were dispersed and nothing came of it.</VERS>\n\t\t\t<VERS vnumber=\"37\"> After him Judas the Galilean arose in the days of the census, and incited people to follow him in revolt. He too was killed, and all who followed him were scattered. </VERS>\n\t\t\t<VERS vnumber=\"38\"> So in this case I say to you, stay away from these men and leave them alone, because if this plan or this undertaking originates with people, it will come to nothing,</VERS>\n\t\t\t<VERS vnumber=\"39\"> but if it is from God, you will not be able to stop them, or you may even be found fighting against God.\" He convinced them,</VERS>\n\t\t\t<VERS vnumber=\"40\"> and they summoned the apostles and had them beaten. Then they ordered them not to speak in the name of Jesus and released them. </VERS>\n\t\t\t<VERS vnumber=\"41\"> So they left the council rejoicing because they had been considered worthy to suffer dishonor for the sake of the name.</VERS>\n\t\t\t<VERS vnumber=\"42\"> And every day both in the temple courts and from house to house, they did not stop teaching and proclaiming the good news that Jesus was the Christ.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"6\">\n\t\t\t<VERS vnumber=\"1\"> Now in those days, when the disciples were growing in number, a complaint arose on the part of the Greek-speaking Jews against the native Hebraic Jews, because their widows were being overlooked in the daily distribution of food.</VERS>\n\t\t\t<VERS vnumber=\"2\"> So the twelve called the whole group of the disciples together and said, \"It is not right for us to neglect the word of God to wait on tables.</VERS>\n\t\t\t<VERS vnumber=\"3\"> But carefully select from among you, brothers, seven men who are well-attested, full of the Spirit and of wisdom, whom we may put in charge of this necessary task.</VERS>\n\t\t\t<VERS vnumber=\"4\"> But we will devote ourselves to prayer and to the ministry of the word.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> The proposal pleased the entire group, so they chose Stephen, a man full of faith and of the Holy Spirit, with Philip, Prochorus, Nicanor, Timon, Parmenas, and Nicolas, a Gentile convert to Judaism from Antioch.</VERS>\n\t\t\t<VERS vnumber=\"6\"> They stood these men before the apostles, who prayed and placed their hands on them. </VERS>\n\t\t\t<VERS vnumber=\"7\"> The word of God continued to spread, the number of disciples in Jerusalem increased greatly, and a large group of priests became obedient to the faith.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Now Stephen, full of grace and power, was performing great wonders and miraculous signs among the people. </VERS>\n\t\t\t<VERS vnumber=\"9\"> But some men from the Synagogue of the Freedmen (as it was called), both Cyrenians and Alexandrians, as well as some from Cilicia and the province of Asia, stood up and argued with Stephen. </VERS>\n\t\t\t<VERS vnumber=\"10\"> Yet they were not able to resist the wisdom and the Spirit with which he spoke. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Then they secretly instigated some men to say, \"We have heard this man speaking blasphemous words against Moses and God.\" </VERS>\n\t\t\t<VERS vnumber=\"12\"> They incited the people, the elders, and the experts in the law; then they approached Stephen, seized him, and brought him before the council.</VERS>\n\t\t\t<VERS vnumber=\"13\"> They brought forward false witnesses who said, \"This man does not stop saying things against this holy place and the law.</VERS>\n\t\t\t<VERS vnumber=\"14\"> For we have heard him saying that Jesus the Nazarene will destroy this place and change the customs that Moses handed down to us.\" </VERS>\n\t\t\t<VERS vnumber=\"15\"> All who were sitting in the council looked intently at Stephen and saw his face was like the face of an angel.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"7\">\n\t\t\t<VERS vnumber=\"1\"> Then the high priest said, \"Are these things true?\"</VERS>\n\t\t\t<VERS vnumber=\"2\"> So he replied, \"Brothers and fathers, listen to me. The God of glory appeared to our forefather Abraham when he was in Mesopotamia, before he settled in Haran, </VERS>\n\t\t\t<VERS vnumber=\"3\"> and said to him, 'Go out from your country and from your relatives, and come to the land I will show you.'</VERS>\n\t\t\t<VERS vnumber=\"4\"> Then he went out from the country of the Chaldeans and settled in Haran. After his father died, God made him move to this country where you now live. </VERS>\n\t\t\t<VERS vnumber=\"5\"> He did not give any of it to him for an inheritance, not even a foot of ground, yet God promised to give it to him as his possession, and to his descendants after him, even though Abraham as yet had no child.</VERS>\n\t\t\t<VERS vnumber=\"6\"> But God spoke as follows: 'Your descendants will be foreigners in a foreign country, whose citizens will enslave them and mistreat them for four hundred years.</VERS>\n\t\t\t<VERS vnumber=\"7\"> But I will punish the nation they serve as slaves,' said God, 'and after these things they will come out of there and worship me in this place.'</VERS>\n\t\t\t<VERS vnumber=\"8\"> Then God gave Abraham the covenant of circumcision, and so he became the father of Isaac and circumcised him when he was eight days old, and Isaac became the father of Jacob, and Jacob of the twelve patriarchs.</VERS>\n\t\t\t<VERS vnumber=\"9\"> The patriarchs, because they were jealous of Joseph, sold him into Egypt. But God was with him, </VERS>\n\t\t\t<VERS vnumber=\"10\"> and rescued him from all his troubles, and granted him favor and wisdom in the presence of Pharaoh, king of Egypt, who made him ruler over Egypt and over all his household. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Then a famine occurred throughout Egypt and Canaan, causing great suffering, and our ancestors could not find food. </VERS>\n\t\t\t<VERS vnumber=\"12\"> So when Jacob heard that there was grain in Egypt, he sent our ancestors there the first time. </VERS>\n\t\t\t<VERS vnumber=\"13\"> On their second visit Joseph made himself known to his brothers again, and Joseph's family became known to Pharaoh. </VERS>\n\t\t\t<VERS vnumber=\"14\"> So Joseph sent a message and invited his father Jacob and all his relatives to come, seventy-five people in all.</VERS>\n\t\t\t<VERS vnumber=\"15\"> So Jacob went down to Egypt and died there, along with our ancestors,</VERS>\n\t\t\t<VERS vnumber=\"16\"> and their bones were later moved to Shechem and placed in the tomb that Abraham had bought for a certain sum of money from the sons of Hamor in Shechem.</VERS>\n\t\t\t<VERS vnumber=\"17\"> \"But as the time drew near for God to fulfill the promise he had declared to Abraham, the people increased greatly in number in Egypt, </VERS>\n\t\t\t<VERS vnumber=\"18\"> until another king who did not know about Joseph ruled over Egypt.</VERS>\n\t\t\t<VERS vnumber=\"19\"> This was the one who exploited our people and was cruel to our ancestors, forcing them to abandon their infants so they would die.</VERS>\n\t\t\t<VERS vnumber=\"20\"> At that time Moses was born, and he was beautiful to God. For three months he was brought up in his father's house, </VERS>\n\t\t\t<VERS vnumber=\"21\"> and when he had been abandoned, Pharaoh's daughter adopted him and brought him up as her own son. </VERS>\n\t\t\t<VERS vnumber=\"22\"> So Moses was trained in all the wisdom of the Egyptians and was powerful in his words and deeds.</VERS>\n\t\t\t<VERS vnumber=\"23\"> But when he was about forty years old, it entered his mind to visit his fellow countrymen the Israelites.</VERS>\n\t\t\t<VERS vnumber=\"24\"> When he saw one of them being hurt unfairly, Moses came to his defense and avenged the person who was mistreated by striking down the Egyptian. </VERS>\n\t\t\t<VERS vnumber=\"25\"> He thought his own people would understand that God was delivering them through him, but they did not understand.</VERS>\n\t\t\t<VERS vnumber=\"26\"> The next day Moses saw two men fighting, and tried to make peace between them, saying, 'Men, you are brothers; why are you hurting one another?' </VERS>\n\t\t\t<VERS vnumber=\"27\"> But the man who was unfairly hurting his neighbor pushed Moses aside, saying, 'Who made you a ruler and judge over us? </VERS>\n\t\t\t<VERS vnumber=\"28\"> You don't want to kill me the way you killed the Egyptian yesterday, do you?'</VERS>\n\t\t\t<VERS vnumber=\"29\"> When the man said this, Moses fled and became a foreigner in the land of Midian, where he became the father of two sons.</VERS>\n\t\t\t<VERS vnumber=\"30\"> \"After forty years had passed, an angel appeared to him in the desert of Mount Sinai, in the flame of a burning bush.</VERS>\n\t\t\t<VERS vnumber=\"31\"> When Moses saw it, he was amazed at the sight, and when he approached to investigate, there came the voice of the Lord,</VERS>\n\t\t\t<VERS vnumber=\"32\"> 'I am the God of your forefathers, the God of Abraham, Isaac, and Jacob.' Moses began to tremble and did not dare to look more closely.</VERS>\n\t\t\t<VERS vnumber=\"33\"> But the Lord said to him, 'Take the sandals off your feet, for the place where you are standing is holy ground.</VERS>\n\t\t\t<VERS vnumber=\"34\"> I have certainly seen the suffering of my people who are in Egypt and have heard their groaning, and I have come down to rescue them. Now come, I will send you to Egypt.'</VERS>\n\t\t\t<VERS vnumber=\"35\"> This same Moses they had rejected, saying, 'Who made you a ruler and judge?' God sent as both ruler and deliverer through the hand of the angel who appeared to him in the bush. </VERS>\n\t\t\t<VERS vnumber=\"36\"> This man led them out, performing wonders and miraculous signs in the land of Egypt, at the Red Sea, and in the wilderness for forty years. </VERS>\n\t\t\t<VERS vnumber=\"37\"> This is the Moses who said to the Israelites, 'God will raise up for you a prophet like me from among your brothers.'</VERS>\n\t\t\t<VERS vnumber=\"38\"> This is the man who was in the congregation in the wilderness with the angel who spoke to him at Mount Sinai, and with our ancestors, and he received living oracles to give to you.</VERS>\n\t\t\t<VERS vnumber=\"39\"> Our ancestors were unwilling to obey him, but pushed him aside and turned back to Egypt in their hearts, </VERS>\n\t\t\t<VERS vnumber=\"40\"> saying to Aaron, 'Make us gods who will go in front of us, for this Moses, who led us out of the land of Egypt, we do not know what has happened to him!'</VERS>\n\t\t\t<VERS vnumber=\"41\"> At that time they made an idol in the form of a calf, brought a sacrifice to the idol, and began rejoicing in the works of their hands.</VERS>\n\t\t\t<VERS vnumber=\"42\"> But God turned away from them and gave them over to worship the host of heaven, as it is written in the book of the prophets: 'It was not to me that you offered slain animals and sacrifices forty years in the wilderness, was it, house of Israel?</VERS>\n\t\t\t<VERS vnumber=\"43\"> But you took along the tabernacle of Moloch and the star of the god Rephan, the images you made to worship, but I will deport you beyond Babylon.'</VERS>\n\t\t\t<VERS vnumber=\"44\"> Our ancestors had the tabernacle of testimony in the wilderness, just as God who spoke to Moses ordered him to make it according to the design he had seen. </VERS>\n\t\t\t<VERS vnumber=\"45\"> Our ancestors received possession of it and brought it in with Joshua when they dispossessed the nations that God drove out before our ancestors, until the time of David. </VERS>\n\t\t\t<VERS vnumber=\"46\"> He found favor with God and asked that he could find a dwelling place for the house of Jacob. </VERS>\n\t\t\t<VERS vnumber=\"47\"> But Solomon built a house for him. </VERS>\n\t\t\t<VERS vnumber=\"48\"> Yet the Most High does not live in houses made by human hands, as the prophet says,</VERS>\n\t\t\t<VERS vnumber=\"49\"> 'Heaven is my throne, and earth is the footstool for my feet. What kind of house will you build for me, says the Lord, or what is my resting place?</VERS>\n\t\t\t<VERS vnumber=\"50\"> Did my hand not make all these things?'</VERS>\n\t\t\t<VERS vnumber=\"51\"> \"You stubborn people, with uncircumcised hearts and ears! You are always resisting the Holy Spirit, like your ancestors did! </VERS>\n\t\t\t<VERS vnumber=\"52\"> Which of the prophets did your ancestors not persecute? They killed those who foretold long ago the coming of the Righteous One, whose betrayers and murderers you have now become!</VERS>\n\t\t\t<VERS vnumber=\"53\"> You received the law by decrees given by angels, but you did not obey it.\"</VERS>\n\t\t\t<VERS vnumber=\"54\"> When they heard these things, they became furious and ground their teeth at him. </VERS>\n\t\t\t<VERS vnumber=\"55\"> But Stephen, full of the Holy Spirit, looked intently toward heaven and saw the glory of God, and Jesus standing at the right hand of God. </VERS>\n\t\t\t<VERS vnumber=\"56\"> \"Look!\" he said. \"I see the heavens opened, and the Son of Man standing at the right hand of God!\" </VERS>\n\t\t\t<VERS vnumber=\"57\"> But they covered their ears, shouting out with a loud voice, and rushed at him with one intent. </VERS>\n\t\t\t<VERS vnumber=\"58\"> When they had driven him out of the city, they began to stone him, and the witnesses laid their cloaks at the feet of a young man named Saul. </VERS>\n\t\t\t<VERS vnumber=\"59\"> They continued to stone Stephen while he prayed, \"Lord Jesus, receive my spirit!\" </VERS>\n\t\t\t<VERS vnumber=\"60\"> Then he fell to his knees and cried out with a loud voice, \"Lord, do not hold this sin against them!\" When he had said this, he died.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"8\">\n\t\t\t<VERS vnumber=\"1\"> And Saul agreed completely with killing him. Now on that day a great persecution began against the church in Jerusalem, and all except the apostles were forced to scatter throughout the regions of Judea and Samaria. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Some devout men buried Stephen and made loud lamentation over him.</VERS>\n\t\t\t<VERS vnumber=\"3\"> But Saul was trying to destroy the church; entering one house after another, he dragged off both men and women and put them in prison.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Now those who had been forced to scatter went around proclaiming the good news of the word.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Philip went down to the main city of Samaria and began proclaiming the Christ to them. </VERS>\n\t\t\t<VERS vnumber=\"6\"> The crowds were paying attention with one mind to what Philip said, as they heard and saw the miraculous signs he was performing. </VERS>\n\t\t\t<VERS vnumber=\"7\"> For unclean spirits, crying with loud shrieks, were coming out of many who were possessed, and many paralyzed and lame people were healed. </VERS>\n\t\t\t<VERS vnumber=\"8\"> So there was great joy in that city.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Now in that city was a man named Simon, who had been practicing magic and amazing the people of Samaria, claiming to be someone great. </VERS>\n\t\t\t<VERS vnumber=\"10\"> All the people, from the least to the greatest, paid close attention to him, saying, \"This man is the power of God that is called 'Great.'\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> And they paid close attention to him because he had amazed them for a long time with his magic.</VERS>\n\t\t\t<VERS vnumber=\"12\"> But when they believed Philip as he was proclaiming the good news about the kingdom of God and the name of Jesus Christ, they began to be baptized, both men and women. </VERS>\n\t\t\t<VERS vnumber=\"13\"> Even Simon himself believed, and after he was baptized, he stayed close to Philip constantly, and when he saw the signs and great miracles that were occurring, he was amazed.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Now when the apostles in Jerusalem heard that Samaria had accepted the word of God, they sent Peter and John to them. </VERS>\n\t\t\t<VERS vnumber=\"15\"> These two went down and prayed for them so that they would receive the Holy Spirit. </VERS>\n\t\t\t<VERS vnumber=\"16\"> (For the Spirit had not yet come upon any of them, but they had only been baptized in the name of the Lord Jesus.)</VERS>\n\t\t\t<VERS vnumber=\"17\"> Then Peter and John placed their hands on the Samaritans, and they received the Holy Spirit.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Now Simon, when he saw that the Spirit was given through the laying on of the apostles' hands, offered them money,</VERS>\n\t\t\t<VERS vnumber=\"19\"> saying, \"Give me this power too, so that everyone I place my hands on may receive the Holy Spirit.\" </VERS>\n\t\t\t<VERS vnumber=\"20\"> But Peter said to him, \"May your silver perish with you, because you thought you could acquire God's gift with money! </VERS>\n\t\t\t<VERS vnumber=\"21\"> You have no share or part in this matter because your heart is not right before God! </VERS>\n\t\t\t<VERS vnumber=\"22\"> Therefore repent of this wickedness of yours, and pray to the Lord that he may perhaps forgive you for the intent of your heart.</VERS>\n\t\t\t<VERS vnumber=\"23\"> For I see that you are bitterly envious and in bondage to sin.\" </VERS>\n\t\t\t<VERS vnumber=\"24\"> But Simon replied, \"You pray to the Lord for me so that nothing of what you have said may happen to me.\"</VERS>\n\t\t\t<VERS vnumber=\"25\"> So after Peter and John had solemnly testified and spoken the word of the Lord, they started back to Jerusalem, proclaiming the good news to many Samaritan villages as they went.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Then an angel of the Lord said to Philip, \"Get up and go south on the road that goes down from Jerusalem to Gaza.\" (This is a desert road.)</VERS>\n\t\t\t<VERS vnumber=\"27\"> So he got up and went. There he met an Ethiopian eunuch, a court official of Candace, queen of the Ethiopians, who was in charge of all her treasury. He had come to Jerusalem to worship,</VERS>\n\t\t\t<VERS vnumber=\"28\"> and was returning home, sitting in his chariot, reading the prophet Isaiah. </VERS>\n\t\t\t<VERS vnumber=\"29\"> Then the Spirit said to Philip, \"Go over and join this chariot.\"</VERS>\n\t\t\t<VERS vnumber=\"30\"> So Philip ran up to it and heard the man reading Isaiah the prophet. He asked him, \"Do you understand what you're reading?\" </VERS>\n\t\t\t<VERS vnumber=\"31\"> The man replied, \"How in the world can I, unless someone guides me?\" So he invited Philip to come up and sit with him. </VERS>\n\t\t\t<VERS vnumber=\"32\"> Now the passage of scripture the man was reading was this: \"He was led like a sheep to slaughter, and like a lamb before its shearer is silent, so he did not open his mouth.</VERS>\n\t\t\t<VERS vnumber=\"33\"> In humiliation justice was taken from him. Who can describe his posterity? For his life was taken away from the earth.\"</VERS>\n\t\t\t<VERS vnumber=\"34\"> Then the eunuch said to Philip, \"Please tell me, who is the prophet saying this about, himself or someone else?\"</VERS>\n\t\t\t<VERS vnumber=\"35\"> So Philip started speaking, and beginning with this scripture proclaimed the good news about Jesus to him. </VERS>\n\t\t\t<VERS vnumber=\"36\"> Now as they were going along the road, they came to some water, and the eunuch said, \"Look, there is water! What is to stop me from being baptized?\"</VERS>\n\t\t\t<VERS vnumber=\"37\"> </VERS>\n\t\t\t<VERS vnumber=\"38\"> So he ordered the chariot to stop, and both Philip and the eunuch went down into the water, and Philip baptized him. </VERS>\n\t\t\t<VERS vnumber=\"39\"> Now when they came up out of the water, the Spirit of the Lord snatched Philip away, and the eunuch did not see him any more, but went on his way rejoicing.</VERS>\n\t\t\t<VERS vnumber=\"40\"> Philip, however, found himself at Azotus, and as he passed through the area, he proclaimed the good news to all the towns until he came to Caesarea.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"9\">\n\t\t\t<VERS vnumber=\"1\"> Meanwhile Saul, still breathing out threats to murder the Lord's disciples, went to the high priest </VERS>\n\t\t\t<VERS vnumber=\"2\"> and requested letters from him to the synagogues in Damascus, so that if he found any who belonged to the Way, either men or women, he could bring them as prisoners to Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"3\"> As he was going along, approaching Damascus, suddenly a light from heaven flashed around him. </VERS>\n\t\t\t<VERS vnumber=\"4\"> He fell to the ground and heard a voice saying to him, \"Saul, Saul, why are you persecuting me?\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> So he said, \"Who are you, Lord?\" He replied, \"I am Jesus whom you are persecuting!</VERS>\n\t\t\t<VERS vnumber=\"6\"> But stand up and enter the city and you will be told what you must do.\" </VERS>\n\t\t\t<VERS vnumber=\"7\"> (Now the men who were traveling with him stood there speechless, because they heard the voice but saw no one.)</VERS>\n\t\t\t<VERS vnumber=\"8\"> So Saul got up from the ground, but although his eyes were open, he could see nothing. Leading him by the hand, his companions brought him into Damascus. </VERS>\n\t\t\t<VERS vnumber=\"9\"> For three days he could not see, and he neither ate nor drank anything.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Now there was a disciple in Damascus named Ananias. The Lord said to him in a vision, \"Ananias,\" and he replied, \"Here I am, Lord.\" </VERS>\n\t\t\t<VERS vnumber=\"11\"> Then the Lord told him, \"Get up and go to the street called 'Straight,' and at Judas' house look for a man from Tarsus named Saul. For he is praying, </VERS>\n\t\t\t<VERS vnumber=\"12\"> and he has seen in a vision a man named Ananias come in and place his hands on him so that he may see again.\" </VERS>\n\t\t\t<VERS vnumber=\"13\"> But Ananias replied, \"Lord, I have heard from many people about this man, how much harm he has done to your saints in Jerusalem, </VERS>\n\t\t\t<VERS vnumber=\"14\"> and here he has authority from the chief priests to imprison all who call on your name!\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> But the Lord said to him, \"Go, because this man is my chosen instrument to carry my name before Gentiles and kings and the people of Israel.</VERS>\n\t\t\t<VERS vnumber=\"16\"> For I will show him how much he must suffer for the sake of my name.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> So Ananias departed and entered the house, placed his hands on Saul and said, \"Brother Saul, the Lord Jesus, who appeared to you on the road as you came here, has sent me so that you may see again and be filled with the Holy Spirit.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> Immediately something like scales fell from his eyes, and he could see again. He got up and was baptized,</VERS>\n\t\t\t<VERS vnumber=\"19\"> and after taking some food, his strength returned. For several days he was with the disciples in Damascus, </VERS>\n\t\t\t<VERS vnumber=\"20\"> and immediately he began to proclaim Jesus in the synagogues, saying, \"This man is the Son of God.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> All who heard him were amazed and were saying, \"Is this not the man who in Jerusalem was ravaging those who call on this name, and who had come here to bring them as prisoners to the chief priests?\" </VERS>\n\t\t\t<VERS vnumber=\"22\"> But Saul became more and more capable, and was causing consternation among the Jews who lived in Damascus by proving that Jesus is the Christ.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Now after some days had passed, the Jews plotted together to kill him, </VERS>\n\t\t\t<VERS vnumber=\"24\"> but Saul learned of their plot against him. They were also watching the city gates day and night so that they could kill him. </VERS>\n\t\t\t<VERS vnumber=\"25\"> But his disciples took him at night and let him down through an opening in the wall by lowering him in a basket.</VERS>\n\t\t\t<VERS vnumber=\"26\"> When he arrived in Jerusalem, he attempted to associate with the disciples, and they were all afraid of him, because they did not believe that he was a disciple. </VERS>\n\t\t\t<VERS vnumber=\"27\"> But Barnabas took Saul, brought him to the apostles, and related to them how he had seen the Lord on the road, that the Lord had spoken to him, and how in Damascus he had spoken out boldly in the name of Jesus. </VERS>\n\t\t\t<VERS vnumber=\"28\"> So he was staying with them, associating openly with them in Jerusalem, speaking out boldly in the name of the Lord. </VERS>\n\t\t\t<VERS vnumber=\"29\"> He was speaking and debating with the Greek-speaking Jews, but they were trying to kill him. </VERS>\n\t\t\t<VERS vnumber=\"30\"> When the brothers found out about this, they brought him down to Caesarea and sent him away to Tarsus.</VERS>\n\t\t\t<VERS vnumber=\"31\"> Then the church throughout Judea, Galilee, and Samaria experienced peace and thus was strengthened. Living in the fear of the Lord and in the encouragement of the Holy Spirit, the church increased in numbers.</VERS>\n\t\t\t<VERS vnumber=\"32\"> Now as Peter was traveling around from place to place, he also came down to the saints who lived in Lydda.</VERS>\n\t\t\t<VERS vnumber=\"33\"> He found there a man named Aeneas who had been confined to a mattress for eight years because he was paralyzed. </VERS>\n\t\t\t<VERS vnumber=\"34\"> Peter said to him, \"Aeneas, Jesus the Christ heals you. Get up and make your own bed!\" And immediately he got up. </VERS>\n\t\t\t<VERS vnumber=\"35\"> All those who lived in Lydda and Sharon saw him, and they turned to the Lord.</VERS>\n\t\t\t<VERS vnumber=\"36\"> Now in Joppa there was a disciple named Tabitha (which in translation means Dorcas). She was continually doing good deeds and acts of charity.</VERS>\n\t\t\t<VERS vnumber=\"37\"> At that time she became sick and died. When they had washed her body, they placed it in an upstairs room. </VERS>\n\t\t\t<VERS vnumber=\"38\"> Because Lydda was near Joppa, when the disciples heard that Peter was there, they sent two men to him and urged him, \"Come to us without delay.\"</VERS>\n\t\t\t<VERS vnumber=\"39\"> So Peter got up and went with them, and when he arrived they brought him to the upper room. All the widows stood beside him, crying and showing him the tunics and other clothing Dorcas used to make while she was with them. </VERS>\n\t\t\t<VERS vnumber=\"40\"> But Peter sent them all outside, knelt down, and prayed. Turning to the body, he said, \"Tabitha, get up.\" Then she opened her eyes, and when she saw Peter, she sat up.</VERS>\n\t\t\t<VERS vnumber=\"41\"> He gave her his hand and helped her get up. Then he called the saints and widows and presented her alive. </VERS>\n\t\t\t<VERS vnumber=\"42\"> This became known throughout all Joppa, and many believed in the Lord.</VERS>\n\t\t\t<VERS vnumber=\"43\"> So Peter stayed many days in Joppa with a man named Simon, a tanner.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"10\">\n\t\t\t<VERS vnumber=\"1\"> Now there was a man in Caesarea named Cornelius, a centurion of what was known as the Italian Cohort.</VERS>\n\t\t\t<VERS vnumber=\"2\"> He was a devout, God-fearing man, as was all his household; he did many acts of charity for the people and prayed to God regularly. </VERS>\n\t\t\t<VERS vnumber=\"3\"> About three o'clock one afternoon he saw clearly in a vision an angel of God who came in and said to him, \"Cornelius.\" </VERS>\n\t\t\t<VERS vnumber=\"4\"> Staring at him and becoming greatly afraid, Cornelius replied, \"What is it, Lord?\" The angel said to him, \"Your prayers and your acts of charity have gone up as a memorial before God. </VERS>\n\t\t\t<VERS vnumber=\"5\"> Now send men to Joppa and summon a man named Simon, who is called Peter.</VERS>\n\t\t\t<VERS vnumber=\"6\"> This man is staying as a guest with a man named Simon, a tanner, whose house is by the sea.\" </VERS>\n\t\t\t<VERS vnumber=\"7\"> When the angel who had spoken to him departed, Cornelius called two of his personal servants and a devout soldier from among those who served him,</VERS>\n\t\t\t<VERS vnumber=\"8\"> and when he had explained everything to them, he sent them to Joppa.</VERS>\n\t\t\t<VERS vnumber=\"9\"> About noon the next day, while they were on their way and approaching the city, Peter went up on the roof to pray. </VERS>\n\t\t\t<VERS vnumber=\"10\"> He became hungry and wanted to eat, but while they were preparing the meal, a trance came over him.</VERS>\n\t\t\t<VERS vnumber=\"11\"> He saw heaven opened and an object something like a large sheet descending, being let down to earth by its four corners. </VERS>\n\t\t\t<VERS vnumber=\"12\"> In it were all kinds of four-footed animals and reptiles of the earth and wild birds.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Then a voice said to him, \"Get up, Peter; slaughter and eat!\" </VERS>\n\t\t\t<VERS vnumber=\"14\"> But Peter said, \"Certainly not, Lord, for I have never eaten anything defiled and ritually unclean!\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> The voice spoke to him again, a second time, \"What God has made clean, you must not consider ritually unclean!\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> This happened three times, and immediately the object was taken up into heaven.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Now while Peter was puzzling over what the vision he had seen could signify, the men sent by Cornelius had learned where Simon's house was and approached the gate. </VERS>\n\t\t\t<VERS vnumber=\"18\"> They called out to ask if Simon, known as Peter, was staying there as a guest. </VERS>\n\t\t\t<VERS vnumber=\"19\"> While Peter was still thinking seriously about the vision, the Spirit said to him, \"Look! Three men are looking for you. </VERS>\n\t\t\t<VERS vnumber=\"20\"> But get up, go down, and accompany them without hesitation, because I have sent them.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> So Peter went down to the men and said, \"Here I am, the person you're looking for. Why have you come?\" </VERS>\n\t\t\t<VERS vnumber=\"22\"> They said, \"Cornelius the centurion, a righteous and God-fearing man, well spoken of by the whole Jewish nation, was directed by a holy angel to summon you to his house and to hear a message from you.\" </VERS>\n\t\t\t<VERS vnumber=\"23\"> So Peter invited them in and entertained them as guests. On the next day he got up and set out with them, and some of the brothers from Joppa accompanied him. </VERS>\n\t\t\t<VERS vnumber=\"24\"> The following day he entered Caesarea. Now Cornelius was waiting anxiously for them and had called together his relatives and close friends. </VERS>\n\t\t\t<VERS vnumber=\"25\"> So when Peter came in, Cornelius met him, fell at his feet, and worshiped him. </VERS>\n\t\t\t<VERS vnumber=\"26\"> But Peter helped him up, saying, \"Stand up. I too am a mere mortal.\"</VERS>\n\t\t\t<VERS vnumber=\"27\"> Peter continued talking with him as he went in, and he found many people gathered together.</VERS>\n\t\t\t<VERS vnumber=\"28\"> He said to them, \"You know that it is unlawful for a Jew to associate with or visit a Gentile, yet God has shown me that I should call no person defiled or ritually unclean.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Therefore when you sent for me, I came without any objection. Now may I ask why you sent for me?\" </VERS>\n\t\t\t<VERS vnumber=\"30\"> Cornelius replied, \"Four days ago at this very hour, at three o'clock in the afternoon, I was praying in my house, and suddenly a man in shining clothing stood before me </VERS>\n\t\t\t<VERS vnumber=\"31\"> and said, 'Cornelius, your prayer has been heard and your acts of charity have been remembered before God.</VERS>\n\t\t\t<VERS vnumber=\"32\"> Therefore send to Joppa and summon Simon, who is called Peter. This man is staying as a guest in the house of Simon the tanner, by the sea.' </VERS>\n\t\t\t<VERS vnumber=\"33\"> Therefore I sent for you at once, and you were kind enough to come. So now we are all here in the presence of God to listen to everything the Lord has commanded you to say to us.\"</VERS>\n\t\t\t<VERS vnumber=\"34\"> Then Peter started speaking: \"I now truly understand that God does not show favoritism in dealing with people,</VERS>\n\t\t\t<VERS vnumber=\"35\"> but in every nation the person who fears him and does what is right is welcomed before him. </VERS>\n\t\t\t<VERS vnumber=\"36\"> You know the message he sent to the people of Israel, proclaiming the good news of peace through Jesus Christ (he is Lord of all),</VERS>\n\t\t\t<VERS vnumber=\"37\"> you know what happened throughout Judea, beginning from Galilee after the baptism that John announced:</VERS>\n\t\t\t<VERS vnumber=\"38\"> with respect to Jesus from Nazareth, that God anointed him with the Holy Spirit and with power. He went around doing good and healing all who were oppressed by the devil, because God was with him.</VERS>\n\t\t\t<VERS vnumber=\"39\"> We are witnesses of all the things he did both in Judea and in Jerusalem. They killed him by hanging him on a tree,</VERS>\n\t\t\t<VERS vnumber=\"40\"> but God raised him up on the third day and caused him to be seen,</VERS>\n\t\t\t<VERS vnumber=\"41\"> not by all the people, but by us, the witnesses God had already chosen, who ate and drank with him after he rose from the dead. </VERS>\n\t\t\t<VERS vnumber=\"42\"> He commanded us to preach to the people and to warn them that he is the one appointed by God as judge of the living and the dead. </VERS>\n\t\t\t<VERS vnumber=\"43\"> About him all the prophets testify, that everyone who believes in him receives forgiveness of sins through his name.\"</VERS>\n\t\t\t<VERS vnumber=\"44\"> While Peter was still speaking these words, the Holy Spirit fell on all those who heard the message.</VERS>\n\t\t\t<VERS vnumber=\"45\"> The circumcised believers who had accompanied Peter were greatly astonished that the gift of the Holy Spirit had been poured out even on the Gentiles, </VERS>\n\t\t\t<VERS vnumber=\"46\"> for they heard them speaking in tongues and praising God. Then Peter said, </VERS>\n\t\t\t<VERS vnumber=\"47\"> \"No one can withhold the water for these people to be baptized, who have received the Holy Spirit just as we did, can he?\"</VERS>\n\t\t\t<VERS vnumber=\"48\"> So he gave orders to have them baptized in the name of Jesus Christ. Then they asked him to stay for several days.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"11\">\n\t\t\t<VERS vnumber=\"1\"> Now the apostles and the brothers who were throughout Judea heard that the Gentiles too had accepted the word of God.</VERS>\n\t\t\t<VERS vnumber=\"2\"> So when Peter went up to Jerusalem, the circumcised believers took issue with him, </VERS>\n\t\t\t<VERS vnumber=\"3\"> saying, \"You went to uncircumcised men and shared a meal with them.\" </VERS>\n\t\t\t<VERS vnumber=\"4\"> But Peter began and explained it to them point by point, saying,</VERS>\n\t\t\t<VERS vnumber=\"5\"> \"I was in the city of Joppa praying, and in a trance I saw a vision, an object something like a large sheet descending, being let down from heaven by its four corners, and it came to me. </VERS>\n\t\t\t<VERS vnumber=\"6\"> As I stared I looked into it and saw four-footed animals of the earth, wild animals, reptiles, and wild birds.</VERS>\n\t\t\t<VERS vnumber=\"7\"> I also heard a voice saying to me, 'Get up, Peter; slaughter and eat!' </VERS>\n\t\t\t<VERS vnumber=\"8\"> But I said, 'Certainly not, Lord, for nothing defiled or ritually unclean has ever entered my mouth!' </VERS>\n\t\t\t<VERS vnumber=\"9\"> But the voice replied a second time from heaven, 'What God has made clean, you must not consider ritually unclean!' </VERS>\n\t\t\t<VERS vnumber=\"10\"> This happened three times, and then everything was pulled up to heaven again.</VERS>\n\t\t\t<VERS vnumber=\"11\"> At that very moment, three men sent to me from Caesarea approached the house where we were staying.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The Spirit told me to accompany them without hesitation. These six brothers also went with me, and we entered the man's house. </VERS>\n\t\t\t<VERS vnumber=\"13\"> He informed us how he had seen an angel standing in his house and saying, 'Send to Joppa and summon Simon, who is called Peter,</VERS>\n\t\t\t<VERS vnumber=\"14\"> who will speak a message to you by which you and your entire household will be saved.' </VERS>\n\t\t\t<VERS vnumber=\"15\"> Then as I began to speak, the Holy Spirit fell on them just as he did on us at the beginning.</VERS>\n\t\t\t<VERS vnumber=\"16\"> And I remembered the word of the Lord, as he used to say, 'John baptized with water, but you will be baptized with the Holy Spirit.'</VERS>\n\t\t\t<VERS vnumber=\"17\"> Therefore if God gave them the same gift as he also gave us after believing in the Lord Jesus Christ, who was I to hinder God?\" </VERS>\n\t\t\t<VERS vnumber=\"18\"> When they heard this, they ceased their objections and praised God, saying, \"So then, God has granted the repentance that leads to life even to the Gentiles.\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> Now those who had been scattered because of the persecution that took place over Stephen went as far as Phoenicia, Cyprus, and Antioch, speaking the message to no one but Jews. </VERS>\n\t\t\t<VERS vnumber=\"20\"> But there were some men from Cyprus and Cyrene among them who came to Antioch and began to speak to the Greeks too, proclaiming the good news of the Lord Jesus. </VERS>\n\t\t\t<VERS vnumber=\"21\"> The hand of the Lord was with them, and a great number who believed turned to the Lord. </VERS>\n\t\t\t<VERS vnumber=\"22\"> A report about them came to the attention of the church in Jerusalem, and they sent Barnabas to Antioch.</VERS>\n\t\t\t<VERS vnumber=\"23\"> When he came and saw the grace of God, he rejoiced and encouraged them all to remain true to the Lord with devoted hearts,</VERS>\n\t\t\t<VERS vnumber=\"24\"> because he was a good man, full of the Holy Spirit and of faith, and a significant number of people were brought to the Lord. </VERS>\n\t\t\t<VERS vnumber=\"25\"> Then Barnabas departed for Tarsus to look for Saul,</VERS>\n\t\t\t<VERS vnumber=\"26\"> and when he found him, he brought him to Antioch. So for a whole year Barnabas and Saul met with the church and taught a significant number of people. Now it was in Antioch that the disciples were first called Christians.</VERS>\n\t\t\t<VERS vnumber=\"27\"> At that time some prophets came down from Jerusalem to Antioch.</VERS>\n\t\t\t<VERS vnumber=\"28\"> One of them, named Agabus, got up and predicted by the Spirit that a severe famine was about to come over the whole inhabited world. (This took place during the reign of Claudius.)</VERS>\n\t\t\t<VERS vnumber=\"29\"> So the disciples, each in accordance with his financial ability, decided to send relief to the brothers living in Judea. </VERS>\n\t\t\t<VERS vnumber=\"30\"> They did so, sending their financial aid to the elders by Barnabas and Saul.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"12\">\n\t\t\t<VERS vnumber=\"1\"> About that time King Herod laid hands on some from the church to harm them.</VERS>\n\t\t\t<VERS vnumber=\"2\"> He had James, the brother of John, executed with a sword.</VERS>\n\t\t\t<VERS vnumber=\"3\"> When he saw that this pleased the Jews, he proceeded to arrest Peter too. (This took place during the feast of Unleavened Bread.)</VERS>\n\t\t\t<VERS vnumber=\"4\"> When he had seized him, he put him in prison, handing him over to four squads of soldiers to guard him. Herod planned to bring him out for public trial after the Passover. </VERS>\n\t\t\t<VERS vnumber=\"5\"> So Peter was kept in prison, but those in the church were earnestly praying to God for him.</VERS>\n\t\t\t<VERS vnumber=\"6\"> On that very night before Herod was going to bring him out for trial, Peter was sleeping between two soldiers, bound with two chains, while guards in front of the door were keeping watch over the prison. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Suddenly an angel of the Lord appeared, and a light shone in the prison cell. He struck Peter on the side and woke him up, saying, \"Get up quickly!\" And the chains fell off Peter's wrists.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The angel said to him, \"Fasten your belt and put on your sandals.\" Peter did so. Then the angel said to him, \"Put on your cloak and follow me.\" </VERS>\n\t\t\t<VERS vnumber=\"9\"> Peter went out and followed him; he did not realize that what was happening through the angel was real, but thought he was seeing a vision.</VERS>\n\t\t\t<VERS vnumber=\"10\"> After they had passed the first and second guards, they came to the iron gate leading into the city. It opened for them by itself, and they went outside and walked down one narrow street, when at once the angel left him.</VERS>\n\t\t\t<VERS vnumber=\"11\"> When Peter came to himself, he said, \"Now I know for certain that the Lord has sent his angel and rescued me from the hand of Herod and from everything the Jewish people were expecting to happen.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> When Peter realized this, he went to the house of Mary, the mother of John Mark, where many people had gathered together and were praying. </VERS>\n\t\t\t<VERS vnumber=\"13\"> When he knocked at the door of the outer gate, a slave girl named Rhoda answered.</VERS>\n\t\t\t<VERS vnumber=\"14\"> When she recognized Peter's voice, she was so overjoyed she did not open the gate, but ran back in and told them that Peter was standing at the gate. </VERS>\n\t\t\t<VERS vnumber=\"15\"> But they said to her, \"You've lost your mind!\" But she kept insisting that it was Peter, and they kept saying, \"It is his angel!\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> Now Peter continued knocking, and when they opened the door and saw him, they were greatly astonished.</VERS>\n\t\t\t<VERS vnumber=\"17\"> He motioned to them with his hand to be quiet and then related how the Lord had brought him out of the prison. He said, \"Tell James and the brothers these things,\" and then he left and went to another place.</VERS>\n\t\t\t<VERS vnumber=\"18\"> At daybreak there was great consternation among the soldiers over what had become of Peter. </VERS>\n\t\t\t<VERS vnumber=\"19\"> When Herod had searched for him and did not find him, he questioned the guards and commanded that they be led away to execution. Then Herod went down from Judea to Caesarea and stayed there.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Now Herod was having an angry quarrel with the people of Tyre and Sidon. So they joined together and presented themselves before him. And after convincing Blastus, the king's personal assistant, to help them, they asked for peace, because their country's food supply was provided by the king's country. </VERS>\n\t\t\t<VERS vnumber=\"21\"> On a day determined in advance, Herod put on his royal robes, sat down on the judgment seat, and made a speech to them. </VERS>\n\t\t\t<VERS vnumber=\"22\"> But the crowd began to shout, \"The voice of a god, and not of a man!\" </VERS>\n\t\t\t<VERS vnumber=\"23\"> Immediately an angel of the Lord struck Herod down because he did not give the glory to God, and he was eaten by worms and died.</VERS>\n\t\t\t<VERS vnumber=\"24\"> But the word of God kept on increasing and multiplying.</VERS>\n\t\t\t<VERS vnumber=\"25\"> So Barnabas and Saul returned to Jerusalem when they had completed their mission, bringing along with them John Mark.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"13\">\n\t\t\t<VERS vnumber=\"1\"> Now there were these prophets and teachers in the church at Antioch: Barnabas, Simeon called Niger, Lucius the Cyrenian, Manaen (a close friend of Herod the tetrarch from childhood) and Saul.</VERS>\n\t\t\t<VERS vnumber=\"2\"> While they were serving the Lord and fasting, the Holy Spirit said, \"Set apart for me Barnabas and Saul for the work to which I have called them.\" </VERS>\n\t\t\t<VERS vnumber=\"3\"> Then, after they had fasted and prayed and placed their hands on them, they sent them off.</VERS>\n\t\t\t<VERS vnumber=\"4\"> So Barnabas and Saul, sent out by the Holy Spirit, went down to Seleucia, and from there they sailed to Cyprus.</VERS>\n\t\t\t<VERS vnumber=\"5\"> When they arrived in Salamis, they began to proclaim the word of God in the Jewish synagogues. (Now they also had John as their assistant.)</VERS>\n\t\t\t<VERS vnumber=\"6\"> When they had crossed over the whole island as far as Paphos, they found a magician, a Jewish false prophet named Bar-Jesus,</VERS>\n\t\t\t<VERS vnumber=\"7\"> who was with the proconsul Sergius Paulus, an intelligent man. The proconsul summoned Barnabas and Saul and wanted to hear the word of God.</VERS>\n\t\t\t<VERS vnumber=\"8\"> But the magician Elymas (for that is the way his name is translated) opposed them, trying to turn the proconsul away from the faith. </VERS>\n\t\t\t<VERS vnumber=\"9\"> But Saul (also known as Paul), filled with the Holy Spirit, stared straight at him </VERS>\n\t\t\t<VERS vnumber=\"10\"> and said, \"You who are full of all deceit and all wrongdoing, you son of the devil, you enemy of all righteousness, will you not stop making crooked the straight paths of the Lord?</VERS>\n\t\t\t<VERS vnumber=\"11\"> Now look, the hand of the Lord is against you, and you will be blind, unable to see the sun for a time!\" Immediately mistiness and darkness came over him, and he went around seeking people to lead him by the hand. </VERS>\n\t\t\t<VERS vnumber=\"12\"> Then when the proconsul saw what had happened, he believed, because he was greatly astounded at the teaching about the Lord.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Then Paul and his companions put out to sea from Paphos and came to Perga in Pamphylia, but John left them and returned to Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Moving on from Perga, they arrived at Pisidian Antioch, and on the Sabbath day they went into the synagogue and sat down. </VERS>\n\t\t\t<VERS vnumber=\"15\"> After the reading from the law and the prophets, the leaders of the synagogue sent them a message, saying, \"Brothers, if you have any message of exhortation for the people, speak it.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> So Paul stood up, gestured with his hand and said, \"Men of Israel, and you Gentiles who fear God, listen: </VERS>\n\t\t\t<VERS vnumber=\"17\"> The God of this people Israel chose our ancestors and made the people great during their stay as foreigners in the country of Egypt, and with uplifted arm he led them out of it. </VERS>\n\t\t\t<VERS vnumber=\"18\"> For a period of about forty years he put up with them in the wilderness.</VERS>\n\t\t\t<VERS vnumber=\"19\"> After he had destroyed seven nations in the land of Canaan, he gave his people their land as an inheritance.</VERS>\n\t\t\t<VERS vnumber=\"20\"> All this took about four hundred fifty years. After this he gave them judges until the time of Samuel the prophet. </VERS>\n\t\t\t<VERS vnumber=\"21\"> Then they asked for a king, and God gave them Saul son of Kish, a man from the tribe of Benjamin, who ruled forty years. </VERS>\n\t\t\t<VERS vnumber=\"22\"> After removing him, God raised up David their king. He testified about him: 'I have found David the son of Jesse to be a man after my heart, who will accomplish everything I want him to do.'</VERS>\n\t\t\t<VERS vnumber=\"23\"> From the descendants of this man God brought to Israel a Savior, Jesus, just as he promised.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Before Jesus arrived, John had proclaimed a baptism for repentance to all the people of Israel. </VERS>\n\t\t\t<VERS vnumber=\"25\"> But while John was completing his mission, he said repeatedly, 'What do you think I am? I am not he. But look, one is coming after me. I am not worthy to untie the sandals on his feet!'</VERS>\n\t\t\t<VERS vnumber=\"26\"> Brothers, descendants of Abraham's family, and those Gentiles among you who fear God, the message of this salvation has been sent to us. </VERS>\n\t\t\t<VERS vnumber=\"27\"> For the people who live in Jerusalem and their rulers did not recognize him, and they fulfilled the sayings of the prophets that are read every Sabbath by condemning him.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Though they found no basis for a death sentence, they asked Pilate to have him executed. </VERS>\n\t\t\t<VERS vnumber=\"29\"> When they had accomplished everything that was written about him, they took him down from the cross and placed him in a tomb. </VERS>\n\t\t\t<VERS vnumber=\"30\"> But God raised him from the dead, </VERS>\n\t\t\t<VERS vnumber=\"31\"> and for many days he appeared to those who had accompanied him from Galilee to Jerusalem. These are now his witnesses to the people. </VERS>\n\t\t\t<VERS vnumber=\"32\"> And we proclaim to you the good news about the promise to our ancestors,</VERS>\n\t\t\t<VERS vnumber=\"33\"> that this promise God has fulfilled to us, their children, by raising Jesus, as also it is written in the second psalm, 'You are my Son; today I have fathered you.'</VERS>\n\t\t\t<VERS vnumber=\"34\"> But regarding the fact that he has raised Jesus from the dead, never again to be in a state of decay, God has spoken in this way: 'I will give you the holy and trustworthy promises made to David.'</VERS>\n\t\t\t<VERS vnumber=\"35\"> Therefore he also says in another psalm, 'You will not permit your Holy One to experience decay.'</VERS>\n\t\t\t<VERS vnumber=\"36\"> For David, after he had served God's purpose in his own generation, died, was buried with his ancestors, and experienced decay, </VERS>\n\t\t\t<VERS vnumber=\"37\"> but the one whom God raised up did not experience decay. </VERS>\n\t\t\t<VERS vnumber=\"38\"> Therefore let it be known to you, brothers, that through this one forgiveness of sins is proclaimed to you, </VERS>\n\t\t\t<VERS vnumber=\"39\"> and by this one everyone who believes is justified from everything from which the law of Moses could not justify you.</VERS>\n\t\t\t<VERS vnumber=\"40\"> Watch out, then, that what is spoken about by the prophets does not happen to you:</VERS>\n\t\t\t<VERS vnumber=\"41\"> 'Look, you scoffers; be amazed and perish! For I am doing a work in your days, a work you would never believe, even if someone tells you.'\"</VERS>\n\t\t\t<VERS vnumber=\"42\"> As Paul and Barnabas were going out, the people were urging them to speak about these things on the next Sabbath. </VERS>\n\t\t\t<VERS vnumber=\"43\"> When the meeting of the synagogue had broken up, many of the Jews and God-fearing proselytes followed Paul and Barnabas, who were speaking with them and were persuading them to continue in the grace of God.</VERS>\n\t\t\t<VERS vnumber=\"44\"> On the next Sabbath almost the whole city assembled together to hear the word of the Lord.</VERS>\n\t\t\t<VERS vnumber=\"45\"> But when the Jews saw the crowds, they were filled with jealousy, and they began to contradict what Paul was saying by reviling him.</VERS>\n\t\t\t<VERS vnumber=\"46\"> Both Paul and Barnabas replied courageously, \"It was necessary to speak the word of God to you first. Since you reject it and do not consider yourselves worthy of eternal life, we are turning to the Gentiles.</VERS>\n\t\t\t<VERS vnumber=\"47\"> For this is what the Lord has commanded us: 'I have appointed you to be a light for the Gentiles, to bring salvation to the ends of the earth.'\"</VERS>\n\t\t\t<VERS vnumber=\"48\"> When the Gentiles heard this, they began to rejoice and praise the word of the Lord, and all who had been appointed for eternal life believed.</VERS>\n\t\t\t<VERS vnumber=\"49\"> So the word of the Lord was spreading through the entire region. </VERS>\n\t\t\t<VERS vnumber=\"50\"> But the Jews incited the God-fearing women of high social standing and the prominent men of the city, stirred up persecution against Paul and Barnabas, and threw them out of their region. </VERS>\n\t\t\t<VERS vnumber=\"51\"> So after they shook the dust off their feet in protest against them, they went to Iconium.</VERS>\n\t\t\t<VERS vnumber=\"52\"> And the disciples were filled with joy and with the Holy Spirit.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"14\">\n\t\t\t<VERS vnumber=\"1\"> The same thing happened in Iconium when Paul and Barnabas went into the Jewish synagogue and spoke in such a way that a large group of both Jews and Greeks believed. </VERS>\n\t\t\t<VERS vnumber=\"2\"> But the Jews who refused to believe stirred up the Gentiles and poisoned their minds against the brothers. </VERS>\n\t\t\t<VERS vnumber=\"3\"> So they stayed there for a considerable time, speaking out courageously for the Lord, who testified to the message of his grace, granting miraculous signs and wonders to be performed through their hands. </VERS>\n\t\t\t<VERS vnumber=\"4\"> But the population of the city was divided; some sided with the Jews, and some with the apostles. </VERS>\n\t\t\t<VERS vnumber=\"5\"> When both the Gentiles and the Jews (together with their rulers) made an attempt to mistreat them and stone them,</VERS>\n\t\t\t<VERS vnumber=\"6\"> Paul and Barnabas learned about it and fled to the Lycaonian cities of Lystra and Derbe and the surrounding region. </VERS>\n\t\t\t<VERS vnumber=\"7\"> There they continued to proclaim the good news.</VERS>\n\t\t\t<VERS vnumber=\"8\"> In Lystra sat a man who could not use his feet, lame from birth, who had never walked. </VERS>\n\t\t\t<VERS vnumber=\"9\"> This man was listening to Paul as he was speaking. When Paul stared intently at him and saw he had faith to be healed, </VERS>\n\t\t\t<VERS vnumber=\"10\"> he said with a loud voice, \"Stand upright on your feet.\" And the man leaped up and began walking.</VERS>\n\t\t\t<VERS vnumber=\"11\"> So when the crowds saw what Paul had done, they shouted in the Lycaonian language, \"The gods have come down to us in human form!\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> They began to call Barnabas Zeus and Paul Hermes, because he was the chief speaker. </VERS>\n\t\t\t<VERS vnumber=\"13\"> The priest of the temple of Zeus, located just outside the city, brought bulls and garlands to the city gates; he and the crowds wanted to offer sacrifices to them.</VERS>\n\t\t\t<VERS vnumber=\"14\"> But when the apostles Barnabas and Paul heard about it, they tore their clothes and rushed out into the crowd, shouting,</VERS>\n\t\t\t<VERS vnumber=\"15\"> \"Men, why are you doing these things? We too are men, with human natures just like you! We are proclaiming the good news to you, so that you should turn from these worthless things to the living God, who made the heaven, the earth, the sea, and everything that is in them. </VERS>\n\t\t\t<VERS vnumber=\"16\"> In past generations he allowed all the nations to go their own ways, </VERS>\n\t\t\t<VERS vnumber=\"17\"> yet he did not leave himself without a witness by doing good, by giving you rain from heaven and fruitful seasons, satisfying you with food and your hearts with joy.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> Even by saying these things, they scarcely persuaded the crowds not to offer sacrifice to them.</VERS>\n\t\t\t<VERS vnumber=\"19\"> But Jews came from Antioch and Iconium, and after winning the crowds over, they stoned Paul and dragged him out of the city, presuming him to be dead. </VERS>\n\t\t\t<VERS vnumber=\"20\"> But after the disciples had surrounded him, he got up and went back into the city. On the next day he left with Barnabas for Derbe.</VERS>\n\t\t\t<VERS vnumber=\"21\"> After they had proclaimed the good news in that city and made many disciples, they returned to Lystra, to Iconium, and to Antioch.</VERS>\n\t\t\t<VERS vnumber=\"22\"> They strengthened the souls of the disciples and encouraged them to continue in the faith, saying, \"We must enter the kingdom of God through many persecutions.\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> When they had appointed elders for them in the various churches, with prayer and fasting they entrusted them to the protection of the Lord in whom they had believed.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Then they passed through Pisidia and came into Pamphylia,</VERS>\n\t\t\t<VERS vnumber=\"25\"> and when they had spoken the word in Perga, they went down to Attalia.</VERS>\n\t\t\t<VERS vnumber=\"26\"> From there they sailed back to Antioch, where they had been commended to the grace of God for the work they had now completed.</VERS>\n\t\t\t<VERS vnumber=\"27\"> When they arrived and gathered the church together, they reported all the things God had done with them, and that he had opened a door of faith for the Gentiles. </VERS>\n\t\t\t<VERS vnumber=\"28\"> So they spent considerable time with the disciples.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"15\">\n\t\t\t<VERS vnumber=\"1\"> Now some men came down from Judea and began to teach the brothers, \"Unless you are circumcised according to the custom of Moses, you cannot be saved.\" </VERS>\n\t\t\t<VERS vnumber=\"2\"> When Paul and Barnabas had a major argument and debate with them, the church appointed Paul and Barnabas and some others from among them to go up to meet with the apostles and elders in Jerusalem about this point of disagreement.</VERS>\n\t\t\t<VERS vnumber=\"3\"> So they were sent on their way by the church, and as they passed through both Phoenicia and Samaria, they were relating at length the conversion of the Gentiles and bringing great joy to all the brothers. </VERS>\n\t\t\t<VERS vnumber=\"4\"> When they arrived in Jerusalem, they were received by the church and the apostles and the elders, and they reported all the things God had done with them.</VERS>\n\t\t\t<VERS vnumber=\"5\"> But some from the religious party of the Pharisees who had believed stood up and said, \"It is necessary to circumcise the Gentiles and to order them to observe the law of Moses.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> Both the apostles and the elders met together to deliberate about this matter. </VERS>\n\t\t\t<VERS vnumber=\"7\"> After there had been much debate, Peter stood up and said to them, \"Brothers, you know that some time ago God chose me to preach to the Gentiles so they would hear the message of the gospel and believe.</VERS>\n\t\t\t<VERS vnumber=\"8\"> And God, who knows the heart, has testified to them by giving them the Holy Spirit just as he did to us,</VERS>\n\t\t\t<VERS vnumber=\"9\"> and he made no distinction between them and us, cleansing their hearts by faith. </VERS>\n\t\t\t<VERS vnumber=\"10\"> So now why are you putting God to the test by placing on the neck of the disciples a yoke that neither our ancestors nor we have been able to bear? </VERS>\n\t\t\t<VERS vnumber=\"11\"> On the contrary, we believe that we are saved through the grace of the Lord Jesus, in the same way as they are.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> The whole group kept quiet and listened to Barnabas and Paul while they explained all the miraculous signs and wonders God had done among the Gentiles through them. </VERS>\n\t\t\t<VERS vnumber=\"13\"> After they stopped speaking, James replied, \"Brothers, listen to me. </VERS>\n\t\t\t<VERS vnumber=\"14\"> Simeon has explained how God first concerned himself to select from among the Gentiles a people for his name. </VERS>\n\t\t\t<VERS vnumber=\"15\"> The words of the prophets agree with this, as it is written,</VERS>\n\t\t\t<VERS vnumber=\"16\"> 'After this I will return, and I will rebuild the fallen tent of David; I will rebuild its ruins and restore it,</VERS>\n\t\t\t<VERS vnumber=\"17\"> so that the rest of humanity may seek the Lord, namely, all the Gentiles I have called to be my own,' says the Lord, who makes these things</VERS>\n\t\t\t<VERS vnumber=\"18\"> known from long ago.</VERS>\n\t\t\t<VERS vnumber=\"19\"> \"Therefore I conclude that we should not cause extra difficulty for those among the Gentiles who are turning to God, </VERS>\n\t\t\t<VERS vnumber=\"20\"> but that we should write them a letter telling them to abstain from things defiled by idols and from sexual immorality and from what has been strangled and from blood. </VERS>\n\t\t\t<VERS vnumber=\"21\"> For Moses has had those who proclaim him in every town from ancient times, because he is read aloud in the synagogues every Sabbath.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> Then the apostles and elders, with the whole church, decided to send men chosen from among them, Judas called Barsabbas and Silas, leaders among the brothers, to Antioch with Paul and Barnabas. </VERS>\n\t\t\t<VERS vnumber=\"23\"> They sent this letter with them: From the apostles and elders, your brothers, to the Gentile brothers and sisters in Antioch, Syria, and Cilicia, greetings!</VERS>\n\t\t\t<VERS vnumber=\"24\"> Since we have heard that some have gone out from among us with no orders from us and have confused you, upsetting your minds by what they said,</VERS>\n\t\t\t<VERS vnumber=\"25\"> we have unanimously decided to choose men to send to you along with our dear friends Barnabas and Paul, </VERS>\n\t\t\t<VERS vnumber=\"26\"> who have risked their lives for the name of our Lord Jesus Christ.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Therefore we are sending Judas and Silas who will tell you these things themselves in person.</VERS>\n\t\t\t<VERS vnumber=\"28\"> For it seemed best to the Holy Spirit and to us not to place any greater burden on you than these necessary rules:</VERS>\n\t\t\t<VERS vnumber=\"29\"> that you abstain from meat that has been sacrificed to idols and from blood and from what has been strangled and from sexual immorality. If you keep yourselves from doing these things, you will do well. Farewell.</VERS>\n\t\t\t<VERS vnumber=\"30\"> So when they were dismissed, they went down to Antioch, and after gathering the entire group together, they delivered the letter. </VERS>\n\t\t\t<VERS vnumber=\"31\"> When they read it aloud, the people rejoiced at its encouragement.</VERS>\n\t\t\t<VERS vnumber=\"32\"> Both Judas and Silas, who were prophets themselves, encouraged and strengthened the brothers with a long speech.</VERS>\n\t\t\t<VERS vnumber=\"33\"> After they had spent some time there, they were sent off in peace by the brothers to those who had sent them.</VERS>\n\t\t\t<VERS vnumber=\"34\"> </VERS>\n\t\t\t<VERS vnumber=\"35\"> But Paul and Barnabas remained in Antioch, teaching and proclaiming (along with many others) the word of the Lord.</VERS>\n\t\t\t<VERS vnumber=\"36\"> After some days Paul said to Barnabas, \"Let's return and visit the brothers in every town where we proclaimed the word of the Lord to see how they are doing.\"</VERS>\n\t\t\t<VERS vnumber=\"37\"> Barnabas wanted to bring John called Mark along with them too,</VERS>\n\t\t\t<VERS vnumber=\"38\"> but Paul insisted that they should not take along this one who had left them in Pamphylia and had not accompanied them in the work. </VERS>\n\t\t\t<VERS vnumber=\"39\"> They had a sharp disagreement, so that they parted company. Barnabas took along Mark and sailed away to Cyprus,</VERS>\n\t\t\t<VERS vnumber=\"40\"> but Paul chose Silas and set out, commended to the grace of the Lord by the brothers and sisters.</VERS>\n\t\t\t<VERS vnumber=\"41\"> He passed through Syria and Cilicia, strengthening the churches.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"16\">\n\t\t\t<VERS vnumber=\"1\"> He also came to Derbe and to Lystra. A disciple named Timothy was there, the son of a Jewish woman who was a believer, but whose father was a Greek.</VERS>\n\t\t\t<VERS vnumber=\"2\"> The brothers in Lystra and Iconium spoke well of him.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Paul wanted Timothy to accompany him, and he took him and circumcised him because of the Jews who were in those places, for they all knew that his father was Greek.</VERS>\n\t\t\t<VERS vnumber=\"4\"> As they went through the towns, they passed on the decrees that had been decided on by the apostles and elders in Jerusalem for the Gentile believers to obey.</VERS>\n\t\t\t<VERS vnumber=\"5\"> So the churches were being strengthened in the faith and were increasing in number every day.</VERS>\n\t\t\t<VERS vnumber=\"6\"> They went through the region of Phrygia and Galatia, having been prevented by the Holy Spirit from speaking the message in the province of Asia.</VERS>\n\t\t\t<VERS vnumber=\"7\"> When they came to Mysia, they attempted to go into Bithynia, but the Spirit of Jesus did not allow them to do this,</VERS>\n\t\t\t<VERS vnumber=\"8\"> so they passed through Mysia and went down to Troas.</VERS>\n\t\t\t<VERS vnumber=\"9\"> A vision appeared to Paul during the night: A Macedonian man was standing there urging him, \"Come over to Macedonia and help us!\" </VERS>\n\t\t\t<VERS vnumber=\"10\"> After Paul saw the vision, we attempted immediately to go over to Macedonia, concluding that God had called us to proclaim the good news to them.</VERS>\n\t\t\t<VERS vnumber=\"11\"> We put out to sea from Troas and sailed a straight course to Samothrace, the next day to Neapolis,</VERS>\n\t\t\t<VERS vnumber=\"12\"> and from there to Philippi, which is a leading city of that district of Macedonia, a Roman colony. We stayed in this city for some days. </VERS>\n\t\t\t<VERS vnumber=\"13\"> On the Sabbath day we went outside the city gate to the side of the river, where we thought there would be a place of prayer, and we sat down and began to speak to the women who had assembled there.</VERS>\n\t\t\t<VERS vnumber=\"14\"> A woman named Lydia, a dealer in purple cloth from the city of Thyatira, a God-fearing woman, listened to us. The Lord opened her heart to respond to what Paul was saying. </VERS>\n\t\t\t<VERS vnumber=\"15\"> After she and her household were baptized, she urged us, \"If you consider me to be a believer in the Lord, come and stay in my house.\" And she persuaded us.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Now as we were going to the place of prayer, a slave girl met us who had a spirit that enabled her to foretell the future by supernatural means. She brought her owners a great profit by fortune-telling.</VERS>\n\t\t\t<VERS vnumber=\"17\"> She followed behind Paul and us and kept crying out, \"These men are servants of the Most High God, who are proclaiming to you the way of salvation.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> She continued to do this for many days. But Paul became greatly annoyed, and turned and said to the spirit, \"I command you in the name of Jesus Christ to come out of her!\" And it came out of her at once.</VERS>\n\t\t\t<VERS vnumber=\"19\"> But when her owners saw their hope of profit was gone, they seized Paul and Silas and dragged them into the marketplace before the authorities. </VERS>\n\t\t\t<VERS vnumber=\"20\"> When they had brought them before the magistrates, they said, \"These men are throwing our city into confusion. They are Jews </VERS>\n\t\t\t<VERS vnumber=\"21\"> and are advocating customs that are not lawful for us to accept or practice, since we are Romans.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> The crowd joined the attack against them, and the magistrates tore the clothes off Paul and Silas and ordered them to be beaten with rods.</VERS>\n\t\t\t<VERS vnumber=\"23\"> After they had beaten them severely, they threw them into prison and commanded the jailer to guard them securely. </VERS>\n\t\t\t<VERS vnumber=\"24\"> Receiving such orders, he threw them in the inner cell and fastened their feet in the stocks.</VERS>\n\t\t\t<VERS vnumber=\"25\"> About midnight Paul and Silas were praying and singing hymns to God, and the rest of the prisoners were listening to them. </VERS>\n\t\t\t<VERS vnumber=\"26\"> Suddenly a great earthquake occurred, so that the foundations of the prison were shaken. Immediately all the doors flew open, and the bonds of all the prisoners came loose. </VERS>\n\t\t\t<VERS vnumber=\"27\"> When the jailer woke up and saw the doors of the prison standing open, he drew his sword and was about to kill himself, because he assumed the prisoners had escaped. </VERS>\n\t\t\t<VERS vnumber=\"28\"> But Paul called out loudly, \"Do not harm yourself, for we are all here!\" </VERS>\n\t\t\t<VERS vnumber=\"29\"> Calling for lights, the jailer rushed in and fell down trembling at the feet of Paul and Silas. </VERS>\n\t\t\t<VERS vnumber=\"30\"> Then he brought them outside and asked, \"Sirs, what must I do to be saved?\" </VERS>\n\t\t\t<VERS vnumber=\"31\"> They replied, \"Believe in the Lord Jesus and you will be saved, you and your household.\" </VERS>\n\t\t\t<VERS vnumber=\"32\"> Then they spoke the word of the Lord to him, along with all those who were in his house. </VERS>\n\t\t\t<VERS vnumber=\"33\"> At that hour of the night he took them and washed their wounds; then he and all his family were baptized right away.</VERS>\n\t\t\t<VERS vnumber=\"34\"> The jailer brought them into his house and set food before them, and he rejoiced greatly that he had come to believe in God, together with his entire household.</VERS>\n\t\t\t<VERS vnumber=\"35\"> At daybreak the magistrates sent their police officers, saying, \"Release those men.\" </VERS>\n\t\t\t<VERS vnumber=\"36\"> The jailer reported these words to Paul, saying, \"The magistrates have sent orders to release you. So come out now and go in peace.\"</VERS>\n\t\t\t<VERS vnumber=\"37\"> But Paul said to the police officers, \"They had us beaten in public without a proper trial, even though we are Roman citizens, and they threw us in prison. And now they want to send us away secretly? Absolutely not! They themselves must come and escort us out!\"</VERS>\n\t\t\t<VERS vnumber=\"38\"> The police officers reported these words to the magistrates. They were frightened when they heard Paul and Silas were Roman citizens</VERS>\n\t\t\t<VERS vnumber=\"39\"> and came and apologized to them. After they brought them out, they asked them repeatedly to leave the city. </VERS>\n\t\t\t<VERS vnumber=\"40\"> When they came out of the prison, they entered Lydia's house, and when they saw the brothers, they encouraged them and then departed.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"17\">\n\t\t\t<VERS vnumber=\"1\"> After they traveled through Amphipolis and Apollonia, they came to Thessalonica, where there was a Jewish synagogue.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Paul went to the Jews in the synagogue, as he customarily did, and on three Sabbath days he addressed them from the scriptures, </VERS>\n\t\t\t<VERS vnumber=\"3\"> explaining and demonstrating that the Christ had to suffer and to rise from the dead, saying, \"This Jesus I am proclaiming to you is the Christ.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> Some of them were persuaded and joined Paul and Silas, along with a large group of God-fearing Greeks and quite a few prominent women. </VERS>\n\t\t\t<VERS vnumber=\"5\"> But the Jews became jealous, and gathering together some worthless men from the rabble in the marketplace, they formed a mob and set the city in an uproar. They attacked Jason's house, trying to find Paul and Silas to bring them out to the assembly.</VERS>\n\t\t\t<VERS vnumber=\"6\"> When they did not find them, they dragged Jason and some of the brothers before the city officials, screaming, \"These people who have stirred up trouble throughout the world have come here too, </VERS>\n\t\t\t<VERS vnumber=\"7\"> and Jason has welcomed them as guests! They are all acting against Caesar's decrees, saying there is another king named Jesus!\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> They caused confusion among the crowd and the city officials who heard these things. </VERS>\n\t\t\t<VERS vnumber=\"9\"> After the city officials had received bail from Jason and the others, they released them.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The brothers sent Paul and Silas off to Berea at once, during the night. When they arrived, they went to the Jewish synagogue.</VERS>\n\t\t\t<VERS vnumber=\"11\"> These Jews were more open-minded than those in Thessalonica, for they eagerly received the message, examining the scriptures carefully every day to see if these things were so. </VERS>\n\t\t\t<VERS vnumber=\"12\"> Therefore many of them believed, along with quite a few prominent Greek women and men. </VERS>\n\t\t\t<VERS vnumber=\"13\"> But when the Jews from Thessalonica heard that Paul had also proclaimed the word of God in Berea, they came there too, inciting and disturbing the crowds. </VERS>\n\t\t\t<VERS vnumber=\"14\"> Then the brothers sent Paul away to the coast at once, but Silas and Timothy remained in Berea.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Those who accompanied Paul escorted him as far as Athens, and after receiving an order for Silas and Timothy to come to him as soon as possible, they left.</VERS>\n\t\t\t<VERS vnumber=\"16\"> While Paul was waiting for them in Athens, his spirit was greatly upset because he saw the city was full of idols. </VERS>\n\t\t\t<VERS vnumber=\"17\"> So he was addressing the Jews and the God-fearing Gentiles in the synagogue, and in the marketplace every day those who happened to be there.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Also some of the Epicurean and Stoic philosophers were conversing with him, and some were asking, \"What does this foolish babbler want to say?\" Others said, \"He seems to be a proclaimer of foreign gods.\" (They said this because he was proclaiming the good news about Jesus and the resurrection.)</VERS>\n\t\t\t<VERS vnumber=\"19\"> So they took Paul and brought him to the Areopagus, saying, \"May we know what this new teaching is that you are proclaiming? </VERS>\n\t\t\t<VERS vnumber=\"20\"> For you are bringing some surprising things to our ears, so we want to know what they mean.\" </VERS>\n\t\t\t<VERS vnumber=\"21\"> (All the Athenians and the foreigners who lived there used to spend their time in nothing else than telling or listening to something new.)</VERS>\n\t\t\t<VERS vnumber=\"22\"> So Paul stood before the Areopagus and said, \"Men of Athens, I see that you are very religious in all respects.</VERS>\n\t\t\t<VERS vnumber=\"23\"> For as I went around and observed closely your objects of worship, I even found an altar with this inscription: 'To an unknown god.' Therefore what you worship without knowing it, this I proclaim to you. </VERS>\n\t\t\t<VERS vnumber=\"24\"> The God who made the world and everything in it, who is Lord of heaven and earth, does not live in temples made by human hands,</VERS>\n\t\t\t<VERS vnumber=\"25\"> nor is he served by human hands, as if he needed anything, because he himself gives life and breath and everything to everyone.</VERS>\n\t\t\t<VERS vnumber=\"26\"> From one man he made every nation of the human race to inhabit the entire earth, determining their set times and the fixed limits of the places where they would live,</VERS>\n\t\t\t<VERS vnumber=\"27\"> so that they would search for God and perhaps grope around for him and find him, though he is not far from each one of us. </VERS>\n\t\t\t<VERS vnumber=\"28\"> For in him we live and move about and exist, as even some of your own poets have said, 'For we too are his offspring.'</VERS>\n\t\t\t<VERS vnumber=\"29\"> So since we are God's offspring, we should not think the deity is like gold or silver or stone, an image made by human skill and imagination.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Therefore, although God has overlooked such times of ignorance, he now commands all people everywhere to repent,</VERS>\n\t\t\t<VERS vnumber=\"31\"> because he has set a day on which he is going to judge the world in righteousness, by a man whom he designated, having provided proof to everyone by raising him from the dead.\"</VERS>\n\t\t\t<VERS vnumber=\"32\"> Now when they heard about the resurrection from the dead, some began to scoff, but others said, \"We will hear you again about this.\" </VERS>\n\t\t\t<VERS vnumber=\"33\"> So Paul left the Areopagus.</VERS>\n\t\t\t<VERS vnumber=\"34\"> But some people joined him and believed. Among them were Dionysius, who was a member of the Areopagus, a woman named Damaris, and others with them.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"18\">\n\t\t\t<VERS vnumber=\"1\"> After this Paul departed from Athens and went to Corinth.</VERS>\n\t\t\t<VERS vnumber=\"2\"> There he found a Jew named Aquila, a native of Pontus, who had recently come from Italy with his wife Priscilla, because Claudius had ordered all the Jews to depart from Rome. Paul approached them, </VERS>\n\t\t\t<VERS vnumber=\"3\"> and because he worked at the same trade, he stayed with them and worked with them (for they were tentmakers by trade).</VERS>\n\t\t\t<VERS vnumber=\"4\"> He addressed both Jews and Greeks in the synagogue every Sabbath, attempting to persuade them.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Now when Silas and Timothy arrived from Macedonia, Paul became wholly absorbed with proclaiming the word, testifying to the Jews that Jesus was the Christ.</VERS>\n\t\t\t<VERS vnumber=\"6\"> When they opposed him and reviled him, he protested by shaking out his clothes and said to them, \"Your blood be on your own heads! I am guiltless! From now on I will go to the Gentiles!\" </VERS>\n\t\t\t<VERS vnumber=\"7\"> Then Paul left the synagogue and went to the house of a person named Titius Justus, a Gentile who worshiped God, whose house was next door to the synagogue. </VERS>\n\t\t\t<VERS vnumber=\"8\"> Crispus, the president of the synagogue, believed in the Lord together with his entire household, and many of the Corinthians who heard about it believed and were baptized. </VERS>\n\t\t\t<VERS vnumber=\"9\"> The Lord said to Paul by a vision in the night, \"Do not be afraid, but speak and do not be silent, </VERS>\n\t\t\t<VERS vnumber=\"10\"> because I am with you, and no one will assault you to harm you, because I have many people in this city.\" </VERS>\n\t\t\t<VERS vnumber=\"11\"> So he stayed there a year and six months, teaching the word of God among them.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Now while Gallio was proconsul of Achaia, the Jews attacked Paul together and brought him before the judgment seat,</VERS>\n\t\t\t<VERS vnumber=\"13\"> saying, \"This man is persuading people to worship God in a way contrary to the law!\" </VERS>\n\t\t\t<VERS vnumber=\"14\"> But just as Paul was about to speak, Gallio said to the Jews, \"If it were a matter of some crime or serious piece of villainy, I would have been justified in accepting the complaint of you Jews,</VERS>\n\t\t\t<VERS vnumber=\"15\"> but since it concerns points of disagreement about words and names and your own law, settle it yourselves. I will not be a judge of these things!\" </VERS>\n\t\t\t<VERS vnumber=\"16\"> Then he had them forced away from the judgment seat.</VERS>\n\t\t\t<VERS vnumber=\"17\"> So they all seized Sosthenes, the president of the synagogue, and began to beat him in front of the judgment seat. Yet none of these things were of any concern to Gallio.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Paul, after staying many more days in Corinth, said farewell to the brothers and sailed away to Syria accompanied by Priscilla and Aquila. He had his hair cut off at Cenchrea because he had made a vow.</VERS>\n\t\t\t<VERS vnumber=\"19\"> When they reached Ephesus, Paul left Priscilla and Aquila behind there, but he himself went into the synagogue and addressed the Jews. </VERS>\n\t\t\t<VERS vnumber=\"20\"> When they asked him to stay longer, he would not consent,</VERS>\n\t\t\t<VERS vnumber=\"21\"> but said farewell to them and added, \"I will come back to you again if God wills.\" Then he set sail from Ephesus, </VERS>\n\t\t\t<VERS vnumber=\"22\"> and when he arrived at Caesarea, he went up and greeted the church at Jerusalem and then went down to Antioch.</VERS>\n\t\t\t<VERS vnumber=\"23\"> After he spent some time there, Paul left and went through the region of Galatia and Phrygia, strengthening all the disciples.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Now a Jew named Apollos, a native of Alexandria, arrived in Ephesus. He was an eloquent speaker, well-versed in the scriptures. </VERS>\n\t\t\t<VERS vnumber=\"25\"> He had been instructed in the way of the Lord, and with great enthusiasm he spoke and taught accurately the facts about Jesus, although he knew only the baptism of John. </VERS>\n\t\t\t<VERS vnumber=\"26\"> He began to speak out fearlessly in the synagogue, but when Priscilla and Aquila heard him, they took him aside and explained the way of God to him more accurately. </VERS>\n\t\t\t<VERS vnumber=\"27\"> When Apollos wanted to cross over to Achaia, the brothers encouraged him and wrote to the disciples to welcome him. When he arrived, he assisted greatly those who had believed by grace, </VERS>\n\t\t\t<VERS vnumber=\"28\"> for he refuted the Jews vigorously in public debate, demonstrating from the scriptures that the Christ was Jesus.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"19\">\n\t\t\t<VERS vnumber=\"1\"> While Apollos was in Corinth, Paul went through the inland regions and came to Ephesus. He found some disciples there</VERS>\n\t\t\t<VERS vnumber=\"2\"> and said to them, \"Did you receive the Holy Spirit when you believed?\" They replied, \"No, we have not even heard that there is a Holy Spirit.\" </VERS>\n\t\t\t<VERS vnumber=\"3\"> So Paul said, \"Into what then were you baptized?\" \"Into John's baptism,\" they replied.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Paul said, \"John baptized with a baptism of repentance, telling the people to believe in the one who was to come after him, that is, in Jesus.\" </VERS>\n\t\t\t<VERS vnumber=\"5\"> When they heard this, they were baptized in the name of the Lord Jesus,</VERS>\n\t\t\t<VERS vnumber=\"6\"> and when Paul placed his hands on them, the Holy Spirit came upon them, and they began to speak in tongues and to prophesy.</VERS>\n\t\t\t<VERS vnumber=\"7\"> (Now there were about twelve men in all.)</VERS>\n\t\t\t<VERS vnumber=\"8\"> So Paul entered the synagogue and spoke out fearlessly for three months, addressing and convincing them about the kingdom of God.</VERS>\n\t\t\t<VERS vnumber=\"9\"> But when some were stubborn and refused to believe, reviling the Way before the congregation, he left them and took the disciples with him, addressing them every day in the lecture hall of Tyrannus.</VERS>\n\t\t\t<VERS vnumber=\"10\"> This went on for two years, so that all who lived in the province of Asia, both Jews and Greeks, heard the word of the Lord.</VERS>\n\t\t\t<VERS vnumber=\"11\"> God was performing extraordinary miracles by Paul's hands, </VERS>\n\t\t\t<VERS vnumber=\"12\"> so that when even handkerchiefs or aprons that had touched his body were brought to the sick, their diseases left them and the evil spirits went out of them.</VERS>\n\t\t\t<VERS vnumber=\"13\"> But some itinerant Jewish exorcists tried to invoke the name of the Lord Jesus over those who were possessed by evil spirits, saying, \"I sternly warn you by Jesus whom Paul preaches.\" </VERS>\n\t\t\t<VERS vnumber=\"14\"> (Now seven sons of a man named Sceva, a Jewish high priest, were doing this.)</VERS>\n\t\t\t<VERS vnumber=\"15\"> But the evil spirit replied to them, \"I know about Jesus and I am acquainted with Paul, but who are you?\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> Then the man who was possessed by the evil spirit jumped on them and beat them all into submission. He prevailed against them so that they fled from that house naked and wounded. </VERS>\n\t\t\t<VERS vnumber=\"17\"> This became known to all who lived in Ephesus, both Jews and Greeks; fear came over them all, and the name of the Lord Jesus was praised.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Many of those who had believed came forward, confessing and making their deeds known.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Large numbers of those who had practiced magic collected their books and burned them up in the presence of everyone. When the value of the books was added up, it was found to total fifty thousand silver coins.</VERS>\n\t\t\t<VERS vnumber=\"20\"> In this way the word of the Lord continued to grow in power and to prevail.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Now after all these things had taken place, Paul resolved to go to Jerusalem, passing through Macedonia and Achaia. He said, \"After I have been there, I must also see Rome.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> So after sending two of his assistants, Timothy and Erastus, to Macedonia, he himself stayed on for a while in the province of Asia.</VERS>\n\t\t\t<VERS vnumber=\"23\"> At that time a great disturbance took place concerning the Way.</VERS>\n\t\t\t<VERS vnumber=\"24\"> For a man named Demetrius, a silversmith who made silver shrines of Artemis, brought a great deal of business to the craftsmen. </VERS>\n\t\t\t<VERS vnumber=\"25\"> He gathered these together, along with the workmen in similar trades, and said, \"Men, you know that our prosperity comes from this business. </VERS>\n\t\t\t<VERS vnumber=\"26\"> And you see and hear that this Paul has persuaded and turned away a large crowd, not only in Ephesus but in practically all of the province of Asia, by saying that gods made by hands are not gods at all.</VERS>\n\t\t\t<VERS vnumber=\"27\"> There is danger not only that this business of ours will come into disrepute, but also that the temple of the great goddess Artemis will be regarded as nothing, and she whom all the province of Asia and the world worship will suffer the loss of her greatness.\"</VERS>\n\t\t\t<VERS vnumber=\"28\"> When they heard this they became enraged and began to shout, \"Great is Artemis of the Ephesians!\" </VERS>\n\t\t\t<VERS vnumber=\"29\"> The city was filled with the uproar, and the crowd rushed to the theater together, dragging with them Gaius and Aristarchus, the Macedonians who were Paul's traveling companions. </VERS>\n\t\t\t<VERS vnumber=\"30\"> But when Paul wanted to enter the public assembly, the disciples would not let him. </VERS>\n\t\t\t<VERS vnumber=\"31\"> Even some of the provincial authorities who were his friends sent a message to him, urging him not to venture into the theater. </VERS>\n\t\t\t<VERS vnumber=\"32\"> So then some were shouting one thing, some another, for the assembly was in confusion, and most of them did not know why they had met together.</VERS>\n\t\t\t<VERS vnumber=\"33\"> Some of the crowd concluded it was about Alexander because the Jews had pushed him to the front. Alexander, gesturing with his hand, was wanting to make a defense before the public assembly.</VERS>\n\t\t\t<VERS vnumber=\"34\"> But when they recognized that he was a Jew, they all shouted in unison, \"Great is Artemis of the Ephesians!\" for about two hours.</VERS>\n\t\t\t<VERS vnumber=\"35\"> After the city secretary quieted the crowd, he said, \"Men of Ephesus, what person is there who does not know that the city of the Ephesians is the keeper of the temple of the great Artemis and of her image that fell from heaven?</VERS>\n\t\t\t<VERS vnumber=\"36\"> So because these facts are indisputable, you must keep quiet and not do anything reckless.</VERS>\n\t\t\t<VERS vnumber=\"37\"> For you have brought these men here who are neither temple robbers nor blasphemers of our goddess.</VERS>\n\t\t\t<VERS vnumber=\"38\"> If then Demetrius and the craftsmen who are with him have a complaint against someone, the courts are open and there are proconsuls; let them bring charges against one another there.</VERS>\n\t\t\t<VERS vnumber=\"39\"> But if you want anything in addition, it will have to be settled in a legal assembly.</VERS>\n\t\t\t<VERS vnumber=\"40\"> For we are in danger of being charged with rioting today, since there is no cause we can give to explain this disorderly gathering.\"</VERS>\n\t\t\t<VERS vnumber=\"41\"> After he had said this, he dismissed the assembly.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"20\">\n\t\t\t<VERS vnumber=\"1\"> After the disturbance had ended, Paul sent for the disciples, and after encouraging them and saying farewell, he left to go to Macedonia.</VERS>\n\t\t\t<VERS vnumber=\"2\"> After he had gone through those regions and spoken many words of encouragement to the believers there, he came to Greece,</VERS>\n\t\t\t<VERS vnumber=\"3\"> where he stayed for three months. Because the Jews had made a plot against him as he was intending to sail for Syria, he decided to return through Macedonia.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Paul was accompanied by Sopater son of Pyrrhus from Berea, Aristarchus and Secundus from Thessalonica, Gaius from Derbe, and Timothy, as well as Tychicus and Trophimus from the province of Asia.</VERS>\n\t\t\t<VERS vnumber=\"5\"> These had gone on ahead and were waiting for us in Troas.</VERS>\n\t\t\t<VERS vnumber=\"6\"> We sailed away from Philippi after the days of Unleavened Bread, and within five days we came to the others in Troas, where we stayed for seven days. </VERS>\n\t\t\t<VERS vnumber=\"7\"> On the first day of the week, when we met to break bread, Paul began to speak to the people, and because he intended to leave the next day, he extended his message until midnight. </VERS>\n\t\t\t<VERS vnumber=\"8\"> (Now there were many lamps in the upstairs room where we were meeting.)</VERS>\n\t\t\t<VERS vnumber=\"9\"> A young man named Eutychus, who was sitting in the window, was sinking into a deep sleep while Paul continued to speak for a long time. Fast asleep, he fell down from the third story and was picked up dead. </VERS>\n\t\t\t<VERS vnumber=\"10\"> But Paul went down, threw himself on the young man, put his arms around him, and said, \"Do not be distressed, for he is still alive!\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> Then Paul went back upstairs, and after he had broken bread and eaten, he talked with them a long time, until dawn. Then he left.</VERS>\n\t\t\t<VERS vnumber=\"12\"> They took the boy home alive and were greatly comforted.</VERS>\n\t\t\t<VERS vnumber=\"13\"> We went on ahead to the ship and put out to sea for Assos, intending to take Paul aboard there, for he had arranged it this way. He himself was intending to go there by land.</VERS>\n\t\t\t<VERS vnumber=\"14\"> When he met us in Assos, we took him aboard and went to Mitylene.</VERS>\n\t\t\t<VERS vnumber=\"15\"> We set sail from there, and on the following day we arrived off Chios. The next day we approached Samos, and the day after that we arrived at Miletus.</VERS>\n\t\t\t<VERS vnumber=\"16\"> For Paul had decided to sail past Ephesus so as not to spend time in the province of Asia, for he was hurrying to arrive in Jerusalem, if possible, by the day of Pentecost.</VERS>\n\t\t\t<VERS vnumber=\"17\"> From Miletus he sent a message to Ephesus, telling the elders of the church to come to him.</VERS>\n\t\t\t<VERS vnumber=\"18\"> When they arrived, he said to them, \"You yourselves know how I lived the whole time I was with you, from the first day I set foot in the province of Asia,</VERS>\n\t\t\t<VERS vnumber=\"19\"> serving the Lord with all humility and with tears, and with the trials that happened to me because of the plots of the Jews. </VERS>\n\t\t\t<VERS vnumber=\"20\"> You know that I did not hold back from proclaiming to you anything that would be helpful, and from teaching you publicly and from house to house, </VERS>\n\t\t\t<VERS vnumber=\"21\"> testifying to both Jews and Greeks about repentance toward God and faith in our Lord Jesus.</VERS>\n\t\t\t<VERS vnumber=\"22\"> And now, compelled by the Spirit, I am going to Jerusalem without knowing what will happen to me there,</VERS>\n\t\t\t<VERS vnumber=\"23\"> except that the Holy Spirit warns me in town after town that imprisonment and persecutions are waiting for me. </VERS>\n\t\t\t<VERS vnumber=\"24\"> But I do not consider my life worth anything to myself, so that I may finish my task and the ministry that I received from the Lord Jesus, to testify to the good news of God's grace.</VERS>\n\t\t\t<VERS vnumber=\"25\"> \"And now I know that none of you among whom I went around proclaiming the kingdom will see me again. </VERS>\n\t\t\t<VERS vnumber=\"26\"> Therefore I declare to you today that I am innocent of the blood of you all.</VERS>\n\t\t\t<VERS vnumber=\"27\"> For I did not hold back from announcing to you the whole purpose of God. </VERS>\n\t\t\t<VERS vnumber=\"28\"> Watch out for yourselves and for all the flock of which the Holy Spirit has made you overseers, to shepherd the church of God that he obtained with the blood of his own Son.</VERS>\n\t\t\t<VERS vnumber=\"29\"> I know that after I am gone fierce wolves will come in among you, not sparing the flock. </VERS>\n\t\t\t<VERS vnumber=\"30\"> Even from among your own group men will arise, teaching perversions of the truth to draw the disciples away after them. </VERS>\n\t\t\t<VERS vnumber=\"31\"> Therefore be alert, remembering that night and day for three years I did not stop warning each one of you with tears. </VERS>\n\t\t\t<VERS vnumber=\"32\"> And now I entrust you to God and to the message of his grace. This message is able to build you up and give you an inheritance among all those who are sanctified. </VERS>\n\t\t\t<VERS vnumber=\"33\"> I have desired no one's silver or gold or clothing. </VERS>\n\t\t\t<VERS vnumber=\"34\"> You yourselves know that these hands of mine provided for my needs and the needs of those who were with me. </VERS>\n\t\t\t<VERS vnumber=\"35\"> By all these things, I have shown you that by working in this way we must help the weak, and remember the words of the Lord Jesus that he himself said, 'It is more blessed to give than to receive.'\"</VERS>\n\t\t\t<VERS vnumber=\"36\"> When he had said these things, he knelt down with them all and prayed. </VERS>\n\t\t\t<VERS vnumber=\"37\"> They all began to weep loudly, and hugged Paul and kissed him,</VERS>\n\t\t\t<VERS vnumber=\"38\"> especially saddened by what he had said, that they were not going to see him again. Then they accompanied him to the ship.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"21\">\n\t\t\t<VERS vnumber=\"1\"> After we tore ourselves away from them, we put out to sea, and sailing a straight course, we came to Cos, on the next day to Rhodes, and from there to Patara.</VERS>\n\t\t\t<VERS vnumber=\"2\"> We found a ship crossing over to Phoenicia, went aboard, and put out to sea.</VERS>\n\t\t\t<VERS vnumber=\"3\"> After we sighted Cyprus and left it behind on our port side, we sailed on to Syria and put in at Tyre, because the ship was to unload its cargo there. </VERS>\n\t\t\t<VERS vnumber=\"4\"> After we located the disciples, we stayed there seven days. They repeatedly told Paul through the Spirit not to set foot in Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"5\"> When our time was over, we left and went on our way. All of them, with their wives and children, accompanied us outside of the city. After kneeling down on the beach and praying,</VERS>\n\t\t\t<VERS vnumber=\"6\"> we said farewell to one another. Then we went aboard the ship, and they returned to their own homes.</VERS>\n\t\t\t<VERS vnumber=\"7\"> We continued the voyage from Tyre and arrived at Ptolemais, and when we had greeted the brothers, we stayed with them for one day. </VERS>\n\t\t\t<VERS vnumber=\"8\"> On the next day we left and came to Caesarea, and entered the house of Philip the evangelist, who was one of the seven, and stayed with him. </VERS>\n\t\t\t<VERS vnumber=\"9\"> (He had four unmarried daughters who prophesied.)</VERS>\n\t\t\t<VERS vnumber=\"10\"> While we remained there for a number of days, a prophet named Agabus came down from Judea.</VERS>\n\t\t\t<VERS vnumber=\"11\"> He came to us, took Paul's belt, tied his own hands and feet with it, and said, \"The Holy Spirit says this: 'This is the way the Jews in Jerusalem will tie up the man whose belt this is, and will hand him over to the Gentiles.'\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> When we heard this, both we and the local people begged him not to go up to Jerusalem. </VERS>\n\t\t\t<VERS vnumber=\"13\"> Then Paul replied, \"What are you doing, weeping and breaking my heart? For I am ready not only to be tied up, but even to die in Jerusalem for the name of the Lord Jesus.\" </VERS>\n\t\t\t<VERS vnumber=\"14\"> Because he could not be persuaded, we said no more except, \"The Lord's will be done.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> After these days we got ready and started up to Jerusalem. </VERS>\n\t\t\t<VERS vnumber=\"16\"> Some of the disciples from Caesarea came along with us too, and brought us to the house of Mnason of Cyprus, a disciple from the earliest times, with whom we were to stay. </VERS>\n\t\t\t<VERS vnumber=\"17\"> When we arrived in Jerusalem, the brothers welcomed us gladly.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The next day Paul went in with us to see James, and all the elders were there.</VERS>\n\t\t\t<VERS vnumber=\"19\"> When Paul had greeted them, he began to explain in detail what God had done among the Gentiles through his ministry. </VERS>\n\t\t\t<VERS vnumber=\"20\"> When they heard this, they praised God. Then they said to him, \"You see, brother, how many thousands of Jews there are who have believed, and they are all ardent observers of the law.</VERS>\n\t\t\t<VERS vnumber=\"21\"> They have been informed about you, that you teach all the Jews now living among the Gentiles to abandon Moses, telling them not to circumcise their children or live according to our customs.</VERS>\n\t\t\t<VERS vnumber=\"22\"> What then should we do? They will no doubt hear that you have come. </VERS>\n\t\t\t<VERS vnumber=\"23\"> So do what we tell you: We have four men who have taken a vow;</VERS>\n\t\t\t<VERS vnumber=\"24\"> take them and purify yourself along with them and pay their expenses, so that they may have their heads shaved. Then everyone will know there is nothing in what they have been told about you, but that you yourself live in conformity with the law.</VERS>\n\t\t\t<VERS vnumber=\"25\"> But regarding the Gentiles who have believed, we have written a letter, having decided that they should avoid meat that has been sacrificed to idols and blood and what has been strangled and sexual immorality.\" </VERS>\n\t\t\t<VERS vnumber=\"26\"> Then Paul took the men the next day, and after he had purified himself along with them, he went to the temple and gave notice of the completion of the days of purification, when the sacrifice would be offered for each of them. </VERS>\n\t\t\t<VERS vnumber=\"27\"> When the seven days were almost over, the Jews from the province of Asia who had seen him in the temple area stirred up the whole crowd and seized him, </VERS>\n\t\t\t<VERS vnumber=\"28\"> shouting, \"Men of Israel, help! This is the man who teaches everyone everywhere against our people, our law, and this sanctuary! Furthermore he has brought Greeks into the inner courts of the temple and made this holy place ritually unclean!\"</VERS>\n\t\t\t<VERS vnumber=\"29\"> (For they had seen Trophimus the Ephesian in the city with him previously, and they assumed Paul had brought him into the inner temple courts.)</VERS>\n\t\t\t<VERS vnumber=\"30\"> The whole city was stirred up, and the people rushed together. They seized Paul and dragged him out of the temple courts, and immediately the doors were shut. </VERS>\n\t\t\t<VERS vnumber=\"31\"> While they were trying to kill him, a report was sent up to the commanding officer of the cohort that all Jerusalem was in confusion.</VERS>\n\t\t\t<VERS vnumber=\"32\"> He immediately took soldiers and centurions and ran down to the crowd. When they saw the commanding officer and the soldiers, they stopped beating Paul. </VERS>\n\t\t\t<VERS vnumber=\"33\"> Then the commanding officer came up and arrested him and ordered him to be tied up with two chains; he then asked who he was and what he had done. </VERS>\n\t\t\t<VERS vnumber=\"34\"> But some in the crowd shouted one thing, and others something else, and when the commanding officer was unable to find out the truth because of the disturbance, he ordered Paul to be brought into the barracks.</VERS>\n\t\t\t<VERS vnumber=\"35\"> When he came to the steps, Paul had to be carried by the soldiers because of the violence of the mob, </VERS>\n\t\t\t<VERS vnumber=\"36\"> for a crowd of people followed them, screaming, \"Away with him!\" </VERS>\n\t\t\t<VERS vnumber=\"37\"> As Paul was about to be brought into the barracks, he said to the commanding officer, \"May I say something to you?\" The officer replied, \"Do you know Greek?</VERS>\n\t\t\t<VERS vnumber=\"38\"> Then you're not that Egyptian who started a rebellion and led the four thousand men of the 'Assassins' into the wilderness some time ago?\"</VERS>\n\t\t\t<VERS vnumber=\"39\"> Paul answered, \"I am a Jew from Tarsus in Cilicia, a citizen of an important city. Please allow me to speak to the people.\" </VERS>\n\t\t\t<VERS vnumber=\"40\"> When the commanding officer had given him permission, Paul stood on the steps and gestured to the people with his hand. When they had become silent, he addressed them in Aramaic,</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"22\">\n\t\t\t<VERS vnumber=\"1\"> \"Brothers and fathers, listen to my defense that I now make to you.\" </VERS>\n\t\t\t<VERS vnumber=\"2\"> (When they heard that he was addressing them in Aramaic, they became even quieter.) Then Paul said, </VERS>\n\t\t\t<VERS vnumber=\"3\"> \"I am a Jew, born in Tarsus in Cilicia, but brought up in this city, educated with strictness under Gamaliel according to the law of our ancestors, and was zealous for God just as all of you are today. </VERS>\n\t\t\t<VERS vnumber=\"4\"> I persecuted this Way even to the point of death, tying up both men and women and putting them in prison, </VERS>\n\t\t\t<VERS vnumber=\"5\"> as both the high priest and the whole council of elders can testify about me. From them I also received letters to the brothers in Damascus, and I was on my way to make arrests there and bring the prisoners to Jerusalem to be punished. </VERS>\n\t\t\t<VERS vnumber=\"6\"> As I was en route and near Damascus, about noon a very bright light from heaven suddenly flashed around me. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Then I fell to the ground and heard a voice saying to me, 'Saul, Saul, why are you persecuting me?' </VERS>\n\t\t\t<VERS vnumber=\"8\"> I answered, 'Who are you, Lord?' He said to me, 'I am Jesus the Nazarene, whom you are persecuting.'</VERS>\n\t\t\t<VERS vnumber=\"9\"> Those who were with me saw the light, but did not understand the voice of the one who was speaking to me. </VERS>\n\t\t\t<VERS vnumber=\"10\"> So I asked, 'What should I do, Lord?' The Lord said to me, 'Get up and go to Damascus; there you will be told about everything that you have been designated to do.' </VERS>\n\t\t\t<VERS vnumber=\"11\"> Since I could not see because of the brilliance of that light, I came to Damascus led by the hand of those who were with me. </VERS>\n\t\t\t<VERS vnumber=\"12\"> A man named Ananias, a devout man according to the law, well spoken of by all the Jews who live there,</VERS>\n\t\t\t<VERS vnumber=\"13\"> came to me and stood beside me and said to me, 'Brother Saul, regain your sight!' And at that very moment I looked up and saw him.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Then he said, 'The God of our ancestors has already chosen you to know his will, to see the Righteous One, and to hear a command from his mouth, </VERS>\n\t\t\t<VERS vnumber=\"15\"> because you will be his witness to all people of what you have seen and heard. </VERS>\n\t\t\t<VERS vnumber=\"16\"> And now what are you waiting for? Get up, be baptized, and have your sins washed away, calling on his name.'</VERS>\n\t\t\t<VERS vnumber=\"17\"> When I returned to Jerusalem and was praying in the temple, I fell into a trance</VERS>\n\t\t\t<VERS vnumber=\"18\"> and saw the Lord saying to me, 'Hurry and get out of Jerusalem quickly, because they will not accept your testimony about me.' </VERS>\n\t\t\t<VERS vnumber=\"19\"> I replied, 'Lord, they themselves know that I imprisoned and beat those in the various synagogues who believed in you. </VERS>\n\t\t\t<VERS vnumber=\"20\"> And when the blood of your witness Stephen was shed, I myself was standing nearby, approving, and guarding the cloaks of those who were killing him.'</VERS>\n\t\t\t<VERS vnumber=\"21\"> Then he said to me, 'Go, because I will send you far away to the Gentiles.'\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> The crowd was listening to him until he said this. Then they raised their voices and shouted, \"Away with this man from the earth! For he should not be allowed to live!\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> While they were screaming and throwing off their cloaks and tossing dust in the air, </VERS>\n\t\t\t<VERS vnumber=\"24\"> the commanding officer ordered Paul to be brought back into the barracks. He told them to interrogate Paul by beating him with a lash so that he could find out the reason the crowd was shouting at Paul in this way. </VERS>\n\t\t\t<VERS vnumber=\"25\"> When they had stretched him out for the lash, Paul said to the centurion standing nearby, \"Is it legal for you to lash a man who is a Roman citizen without a proper trial?\"</VERS>\n\t\t\t<VERS vnumber=\"26\"> When the centurion heard this, he went to the commanding officer and reported it, saying, \"What are you about to do? For this man is a Roman citizen.\"</VERS>\n\t\t\t<VERS vnumber=\"27\"> So the commanding officer came and asked Paul, \"Tell me, are you a Roman citizen?\" He replied, \"Yes.\" </VERS>\n\t\t\t<VERS vnumber=\"28\"> The commanding officer answered, \"I acquired this citizenship with a large sum of money.\" \"But I was even born a citizen,\" Paul replied.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Then those who were about to interrogate him stayed away from him, and the commanding officer was frightened when he realized that Paul was a Roman citizen and that he had had him tied up.</VERS>\n\t\t\t<VERS vnumber=\"30\"> The next day, because the commanding officer wanted to know the true reason Paul was being accused by the Jews, he released him and ordered the chief priests and the whole council to assemble. He then brought Paul down and had him stand before them.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"23\">\n\t\t\t<VERS vnumber=\"1\"> Paul looked directly at the council and said, \"Brothers, I have lived my life with a clear conscience before God to this day.\" </VERS>\n\t\t\t<VERS vnumber=\"2\"> At that the high priest Ananias ordered those standing near Paul to strike him on the mouth. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Then Paul said to him, \"God is going to strike you, you whitewashed wall! Do you sit there judging me according to the law, and in violation of the law you order me to be struck?\" </VERS>\n\t\t\t<VERS vnumber=\"4\"> Those standing near him said, \"Do you dare insult God's high priest?\" </VERS>\n\t\t\t<VERS vnumber=\"5\"> Paul replied, \"I did not realize, brothers, that he was the high priest, for it is written, 'You must not speak evil about a ruler of your people.'\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> Then when Paul noticed that part of them were Sadducees and the others Pharisees, he shouted out in the council, \"Brothers, I am a Pharisee, a son of Pharisees. I am on trial concerning the hope of the resurrection of the dead!\" </VERS>\n\t\t\t<VERS vnumber=\"7\"> When he said this, an argument began between the Pharisees and the Sadducees, and the assembly was divided. </VERS>\n\t\t\t<VERS vnumber=\"8\"> (For the Sadducees say there is no resurrection, or angel, or spirit, but the Pharisees acknowledge them all.)</VERS>\n\t\t\t<VERS vnumber=\"9\"> There was a great commotion, and some experts in the law from the party of the Pharisees stood up and protested strongly, \"We find nothing wrong with this man. What if a spirit or an angel has spoken to him?\" </VERS>\n\t\t\t<VERS vnumber=\"10\"> When the argument became so great the commanding officer feared that they would tear Paul to pieces, he ordered the detachment to go down, take him away from them by force, and bring him into the barracks.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The following night the Lord stood near Paul and said, \"Have courage, for just as you have testified about me in Jerusalem, so you must also testify in Rome.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> When morning came, the Jews formed a conspiracy and bound themselves with an oath not to eat or drink anything until they had killed Paul. </VERS>\n\t\t\t<VERS vnumber=\"13\"> There were more than forty of them who formed this conspiracy.</VERS>\n\t\t\t<VERS vnumber=\"14\"> They went to the chief priests and the elders and said, \"We have bound ourselves with a solemn oath not to partake of anything until we have killed Paul. </VERS>\n\t\t\t<VERS vnumber=\"15\"> So now you and the council request the commanding officer to bring him down to you, as if you were going to determine his case by conducting a more thorough inquiry. We are ready to kill him before he comes near this place.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> But when the son of Paul's sister heard about the ambush, he came and entered the barracks and told Paul. </VERS>\n\t\t\t<VERS vnumber=\"17\"> Paul called one of the centurions and said, \"Take this young man to the commanding officer, for he has something to report to him.\" </VERS>\n\t\t\t<VERS vnumber=\"18\"> So the centurion took him and brought him to the commanding officer and said, \"The prisoner Paul called me and asked me to bring this young man to you because he has something to tell you.\" </VERS>\n\t\t\t<VERS vnumber=\"19\"> The commanding officer took him by the hand, withdrew privately, and asked, \"What is it that you want to report to me?\" </VERS>\n\t\t\t<VERS vnumber=\"20\"> He replied, \"The Jews have agreed to ask you to bring Paul down to the council tomorrow, as if they were going to inquire more thoroughly about him. </VERS>\n\t\t\t<VERS vnumber=\"21\"> So do not let them persuade you to do this, because more than forty of them are lying in ambush for him. They have bound themselves with an oath not to eat or drink anything until they have killed him, and now they are ready, waiting for you to agree to their request.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> Then the commanding officer sent the young man away, directing him, \"Tell no one that you have reported these things to me.\" </VERS>\n\t\t\t<VERS vnumber=\"23\"> Then he summoned two of the centurions and said, \"Make ready two hundred soldiers to go to Caesarea along with seventy horsemen and two hundred spearmen by nine o'clock tonight,</VERS>\n\t\t\t<VERS vnumber=\"24\"> and provide mounts for Paul to ride so that he may be brought safely to Felix the governor.\"</VERS>\n\t\t\t<VERS vnumber=\"25\"> He wrote a letter that went like this:</VERS>\n\t\t\t<VERS vnumber=\"26\"> Claudius Lysias to His Excellency Governor Felix, greetings. </VERS>\n\t\t\t<VERS vnumber=\"27\"> This man was seized by the Jews and they were about to kill him, when I came up with the detachment and rescued him, because I had learned that he was a Roman citizen.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Since I wanted to know what charge they were accusing him of, I brought him down to their council.</VERS>\n\t\t\t<VERS vnumber=\"29\"> I found he was accused with reference to controversial questions about their law, but no charge against him deserved death or imprisonment.</VERS>\n\t\t\t<VERS vnumber=\"30\"> When I was informed there would be a plot against this man, I sent him to you at once, also ordering his accusers to state their charges against him before you.</VERS>\n\t\t\t<VERS vnumber=\"31\"> So the soldiers, in accordance with their orders, took Paul and brought him to Antipatris during the night. </VERS>\n\t\t\t<VERS vnumber=\"32\"> The next day they let the horsemen go on with him, and they returned to the barracks.</VERS>\n\t\t\t<VERS vnumber=\"33\"> When the horsemen came to Caesarea and delivered the letter to the governor, they also presented Paul to him. </VERS>\n\t\t\t<VERS vnumber=\"34\"> When the governor had read the letter, he asked what province he was from. When he learned that he was from Cilicia,</VERS>\n\t\t\t<VERS vnumber=\"35\"> he said, \"I will give you a hearing when your accusers arrive too.\" Then he ordered that Paul be kept under guard in Herod's palace.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"24\">\n\t\t\t<VERS vnumber=\"1\"> After five days the high priest Ananias came down with some elders and an attorney named Tertullus, and they brought formal charges against Paul to the governor. </VERS>\n\t\t\t<VERS vnumber=\"2\"> When Paul had been summoned, Tertullus began to accuse him, saying, \"We have experienced a lengthy time of peace through your rule, and reforms are being made in this nation through your foresight.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Most excellent Felix, we acknowledge this everywhere and in every way with all gratitude.</VERS>\n\t\t\t<VERS vnumber=\"4\"> But so that I may not delay you any further, I beg you to hear us briefly with your customary graciousness.</VERS>\n\t\t\t<VERS vnumber=\"5\"> For we have found this man to be a troublemaker, one who stirs up riots among all the Jews throughout the world, and a ringleader of the sect of the Nazarenes.</VERS>\n\t\t\t<VERS vnumber=\"6\"> He even tried to desecrate the temple, so we arrested him.</VERS>\n\t\t\t<VERS vnumber=\"7\"> </VERS>\n\t\t\t<VERS vnumber=\"8\"> When you examine him yourself, you will be able to learn from him about all these things we are accusing him of doing.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> The Jews also joined in the verbal attack, claiming that these things were true.</VERS>\n\t\t\t<VERS vnumber=\"10\"> When the governor gestured for him to speak, Paul replied, \"Because I know that you have been a judge over this nation for many years, I confidently make my defense.</VERS>\n\t\t\t<VERS vnumber=\"11\"> As you can verify for yourself, not more than twelve days ago I went up to Jerusalem to worship. </VERS>\n\t\t\t<VERS vnumber=\"12\"> They did not find me arguing with anyone or stirring up a crowd in the temple courts or in the synagogues or throughout the city,</VERS>\n\t\t\t<VERS vnumber=\"13\"> nor can they prove to you the things they are accusing me of doing.</VERS>\n\t\t\t<VERS vnumber=\"14\"> But I confess this to you, that I worship the God of our ancestors according to the Way (which they call a sect), believing everything that is according to the law and that is written in the prophets. </VERS>\n\t\t\t<VERS vnumber=\"15\"> I have a hope in God (a hope that these men themselves accept too) that there is going to be a resurrection of both the righteous and the unrighteous.</VERS>\n\t\t\t<VERS vnumber=\"16\"> This is the reason I do my best to always have a clear conscience toward God and toward people.</VERS>\n\t\t\t<VERS vnumber=\"17\"> After several years I came to bring to my people gifts for the poor and to present offerings,</VERS>\n\t\t\t<VERS vnumber=\"18\"> which I was doing when they found me in the temple, ritually purified, without a crowd or a disturbance.</VERS>\n\t\t\t<VERS vnumber=\"19\"> But there are some Jews from the province of Asia who should be here before you and bring charges, if they have anything against me. </VERS>\n\t\t\t<VERS vnumber=\"20\"> Or these men here should tell what crime they found me guilty of when I stood before the council,</VERS>\n\t\t\t<VERS vnumber=\"21\"> other than this one thing I shouted out while I stood before them: 'I am on trial before you today concerning the resurrection of the dead.'\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> Then Felix, who understood the facts concerning the Way more accurately, adjourned their hearing, saying, \"When Lysias the commanding officer comes down, I will decide your case.\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> He ordered the centurion to guard Paul, but to let him have some freedom, and not to prevent any of his friends from meeting his needs.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Some days later, when Felix arrived with his wife Drusilla, who was Jewish, he sent for Paul and heard him speak about faith in Christ Jesus.</VERS>\n\t\t\t<VERS vnumber=\"25\"> While Paul was discussing righteousness, self-control, and the coming judgment, Felix became frightened and said, \"Go away for now, and when I have an opportunity, I will send for you.\" </VERS>\n\t\t\t<VERS vnumber=\"26\"> At the same time he was also hoping that Paul would give him money, and for this reason he sent for Paul as often as possible and talked with him. </VERS>\n\t\t\t<VERS vnumber=\"27\"> After two years had passed, Porcius Festus succeeded Felix, and because he wanted to do the Jews a favor, Felix left Paul in prison.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"25\">\n\t\t\t<VERS vnumber=\"1\"> Now three days after Festus arrived in the province, he went up to Jerusalem from Caesarea.</VERS>\n\t\t\t<VERS vnumber=\"2\"> So the chief priests and the most prominent men of the Jews brought formal charges against Paul to him. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Requesting him to do them a favor against Paul, they urged Festus to summon him to Jerusalem, planning an ambush to kill him along the way. </VERS>\n\t\t\t<VERS vnumber=\"4\"> Then Festus replied that Paul was being kept at Caesarea, and he himself intended to go there shortly. </VERS>\n\t\t\t<VERS vnumber=\"5\"> \"So,\" he said, \"let your leaders go down there with me, and if this man has done anything wrong, they may bring charges against him.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> After Festus had stayed not more than eight or ten days among them, he went down to Caesarea, and the next day he sat on the judgment seat and ordered Paul to be brought. </VERS>\n\t\t\t<VERS vnumber=\"7\"> When he arrived, the Jews who had come down from Jerusalem stood around him, bringing many serious charges that they were not able to prove.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Paul said in his defense, \"I have committed no offense against the Jewish law or against the temple or against Caesar.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> But Festus, wanting to do the Jews a favor, asked Paul, \"Are you willing to go up to Jerusalem and be tried before me there on these charges?\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> Paul replied, \"I am standing before Caesar's judgment seat, where I should be tried. I have done nothing wrong to the Jews, as you also know very well.</VERS>\n\t\t\t<VERS vnumber=\"11\"> If then I am in the wrong and have done anything that deserves death, I am not trying to escape dying, but if not one of their charges against me is true, no one can hand me over to them. I appeal to Caesar!\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> Then, after conferring with his council, Festus replied, \"You have appealed to Caesar; to Caesar you will go!\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> After several days had passed, King Agrippa and Bernice arrived at Caesarea to pay their respects to Festus.</VERS>\n\t\t\t<VERS vnumber=\"14\"> While they were staying there many days, Festus explained Paul's case to the king to get his opinion, saying, \"There is a man left here as a prisoner by Felix. </VERS>\n\t\t\t<VERS vnumber=\"15\"> When I was in Jerusalem, the chief priests and the elders of the Jews informed me about him, asking for a sentence of condemnation against him. </VERS>\n\t\t\t<VERS vnumber=\"16\"> I answered them that it was not the custom of the Romans to hand over anyone before the accused had met his accusers face to face and had been given an opportunity to make a defense against the accusation.</VERS>\n\t\t\t<VERS vnumber=\"17\"> So after they came back here with me, I did not postpone the case, but the next day I sat on the judgment seat and ordered the man to be brought. </VERS>\n\t\t\t<VERS vnumber=\"18\"> When his accusers stood up, they did not charge him with any of the evil deeds I had suspected.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Rather they had several points of disagreement with him about their own religion and about a man named Jesus who was dead, whom Paul claimed to be alive. </VERS>\n\t\t\t<VERS vnumber=\"20\"> Because I was at a loss how I could investigate these matters, I asked if he were willing to go to Jerusalem and be tried there on these charges.</VERS>\n\t\t\t<VERS vnumber=\"21\"> But when Paul appealed to be kept in custody for the decision of His Majesty the Emperor, I ordered him to be kept under guard until I could send him to Caesar.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> Agrippa said to Festus, \"I would also like to hear the man myself.\" \"Tomorrow,\" he replied, \"you will hear him.\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> So the next day Agrippa and Bernice came with great pomp and entered the audience hall, along with the senior military officers and the prominent men of the city. When Festus gave the order, Paul was brought in. </VERS>\n\t\t\t<VERS vnumber=\"24\"> Then Festus said, \"King Agrippa, and all you who are present here with us, you see this man about whom the entire Jewish populace petitioned me both in Jerusalem and here, shouting loudly that he ought not to live any longer. </VERS>\n\t\t\t<VERS vnumber=\"25\"> But I found that he had done nothing that deserved death, and when he appealed to His Majesty the Emperor, I decided to send him.</VERS>\n\t\t\t<VERS vnumber=\"26\"> But I have nothing definite to write to my lord about him. Therefore I have brought him before you all, and especially before you, King Agrippa, so that after this preliminary hearing I may have something to write. </VERS>\n\t\t\t<VERS vnumber=\"27\"> For it seems unreasonable to me to send a prisoner without clearly indicating the charges against him.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"26\">\n\t\t\t<VERS vnumber=\"1\"> So Agrippa said to Paul, \"You have permission to speak for yourself.\" Then Paul held out his hand and began his defense:</VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Regarding all the things I have been accused of by the Jews, King Agrippa, I consider myself fortunate that I am about to make my defense before you today, </VERS>\n\t\t\t<VERS vnumber=\"3\"> because you are especially familiar with all the customs and controversial issues of the Jews. Therefore I ask you to listen to me patiently. </VERS>\n\t\t\t<VERS vnumber=\"4\"> Now all the Jews know the way I lived from my youth, spending my life from the beginning among my own people and in Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"5\"> They know, because they have known me from time past, if they are willing to testify, that according to the strictest party of our religion, I lived as a Pharisee.</VERS>\n\t\t\t<VERS vnumber=\"6\"> And now I stand here on trial because of my hope in the promise made by God to our ancestors,</VERS>\n\t\t\t<VERS vnumber=\"7\"> a promise that our twelve tribes hope to attain as they earnestly serve God night and day. Concerning this hope the Jews are accusing me, Your Majesty!</VERS>\n\t\t\t<VERS vnumber=\"8\"> Why do you people think it is unbelievable that God raises the dead? </VERS>\n\t\t\t<VERS vnumber=\"9\"> Of course, I myself was convinced that it was necessary to do many things hostile to the name of Jesus the Nazarene. </VERS>\n\t\t\t<VERS vnumber=\"10\"> And that is what I did in Jerusalem: Not only did I lock up many of the saints in prisons by the authority I received from the chief priests, but I also cast my vote against them when they were sentenced to death.</VERS>\n\t\t\t<VERS vnumber=\"11\"> I punished them often in all the synagogues and tried to force them to blaspheme. Because I was so furiously enraged at them, I went to persecute them even in foreign cities.</VERS>\n\t\t\t<VERS vnumber=\"12\"> \"While doing this very thing, as I was going to Damascus with authority and complete power from the chief priests, </VERS>\n\t\t\t<VERS vnumber=\"13\"> about noon along the road, Your Majesty, I saw a light from heaven, brighter than the sun, shining everywhere around me and those traveling with me. </VERS>\n\t\t\t<VERS vnumber=\"14\"> When we had all fallen to the ground, I heard a voice saying to me in Aramaic, 'Saul, Saul, why are you persecuting me? You are hurting yourself by kicking against the goads.'</VERS>\n\t\t\t<VERS vnumber=\"15\"> So I said, 'Who are you, Lord?' And the Lord replied, 'I am Jesus whom you are persecuting. </VERS>\n\t\t\t<VERS vnumber=\"16\"> But get up and stand on your feet, for I have appeared to you for this reason, to designate you in advance as a servant and witness to the things you have seen and to the things in which I will appear to you. </VERS>\n\t\t\t<VERS vnumber=\"17\"> I will rescue you from your own people and from the Gentiles, to whom I am sending you </VERS>\n\t\t\t<VERS vnumber=\"18\"> to open their eyes so that they turn from darkness to light and from the power of Satan to God, so that they may receive forgiveness of sins and a share among those who are sanctified by faith in me.'</VERS>\n\t\t\t<VERS vnumber=\"19\"> \"Therefore, King Agrippa, I was not disobedient to the heavenly vision, </VERS>\n\t\t\t<VERS vnumber=\"20\"> but I declared to those in Damascus first, and then to those in Jerusalem and in all Judea, and to the Gentiles, that they should repent and turn to God, performing deeds consistent with repentance.</VERS>\n\t\t\t<VERS vnumber=\"21\"> For this reason the Jews seized me in the temple courts and were trying to kill me. </VERS>\n\t\t\t<VERS vnumber=\"22\"> I have experienced help from God to this day, and so I stand testifying to both small and great, saying nothing except what the prophets and Moses said was going to happen: </VERS>\n\t\t\t<VERS vnumber=\"23\"> that the Christ was to suffer and be the first to rise from the dead, to proclaim light both to our people and to the Gentiles.\"</VERS>\n\t\t\t<VERS vnumber=\"24\"> As Paul was saying these things in his defense, Festus exclaimed loudly, \"You have lost your mind, Paul! Your great learning is driving you insane!\" </VERS>\n\t\t\t<VERS vnumber=\"25\"> But Paul replied, \"I have not lost my mind, most excellent Festus, but am speaking true and rational words. </VERS>\n\t\t\t<VERS vnumber=\"26\"> For the king knows about these things, and I am speaking freely to him, because I cannot believe that any of these things has escaped his notice, for this was not done in a corner.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Do you believe the prophets, King Agrippa? I know that you believe.\"</VERS>\n\t\t\t<VERS vnumber=\"28\"> Agrippa said to Paul, \"In such a short time are you persuading me to become a Christian?\"</VERS>\n\t\t\t<VERS vnumber=\"29\"> Paul replied, \"I pray to God that whether in a short or a long time not only you but also all those who are listening to me today could become such as I am, except for these chains.\"</VERS>\n\t\t\t<VERS vnumber=\"30\"> So the king got up, and with him the governor and Bernice and those sitting with them,</VERS>\n\t\t\t<VERS vnumber=\"31\"> and as they were leaving they said to one another, \"This man is not doing anything deserving death or imprisonment.\" </VERS>\n\t\t\t<VERS vnumber=\"32\"> Agrippa said to Festus, \"This man could have been released if he had not appealed to Caesar.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"27\">\n\t\t\t<VERS vnumber=\"1\"> When it was decided we would sail to Italy, they handed over Paul and some other prisoners to a centurion of the Augustan Cohort named Julius. </VERS>\n\t\t\t<VERS vnumber=\"2\"> We went on board a ship from Adramyttium that was about to sail to various ports along the coast of the province of Asia and put out to sea, accompanied by Aristarchus, a Macedonian from Thessalonica.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The next day we put in at Sidon, and Julius, treating Paul kindly, allowed him to go to his friends so they could provide him with what he needed.</VERS>\n\t\t\t<VERS vnumber=\"4\"> From there we put out to sea and sailed under the lee of Cyprus because the winds were against us. </VERS>\n\t\t\t<VERS vnumber=\"5\"> After we had sailed across the open sea off Cilicia and Pamphylia, we put in at Myra in Lycia.</VERS>\n\t\t\t<VERS vnumber=\"6\"> There the centurion found a ship from Alexandria sailing for Italy, and he put us aboard it.</VERS>\n\t\t\t<VERS vnumber=\"7\"> We sailed slowly for many days and arrived with difficulty off Cnidus. Because the wind prevented us from going any farther, we sailed under the lee of Crete off Salmone.</VERS>\n\t\t\t<VERS vnumber=\"8\"> With difficulty we sailed along the coast of Crete and came to a place called Fair Havens that was near the town of Lasea.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Since considerable time had passed and the voyage was now dangerous because the fast was already over, Paul advised them,</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"Men, I can see the voyage is going to end in disaster and great loss not only of the cargo and the ship, but also of our lives.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> But the centurion was more convinced by the captain and the ship's owner than by what Paul said.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Because the harbor was not suitable to spend the winter in, the majority decided to put out to sea from there. They hoped that somehow they could reach Phoenix, a harbor of Crete facing southwest and northwest, and spend the winter there. </VERS>\n\t\t\t<VERS vnumber=\"13\"> When a gentle south wind sprang up, they thought they could carry out their purpose, so they weighed anchor and sailed close along the coast of Crete. </VERS>\n\t\t\t<VERS vnumber=\"14\"> Not long after this, a hurricane-force wind called the northeaster blew down from the island.</VERS>\n\t\t\t<VERS vnumber=\"15\"> When the ship was caught in it and could not head into the wind, we gave way to it and were driven along. </VERS>\n\t\t\t<VERS vnumber=\"16\"> As we ran under the lee of a small island called Cauda, we were able with difficulty to get the ship's boat under control. </VERS>\n\t\t\t<VERS vnumber=\"17\"> After the crew had hoisted it aboard, they used supports to undergird the ship. Fearing they would run aground on the Syrtis, they lowered the sea anchor, thus letting themselves be driven along. </VERS>\n\t\t\t<VERS vnumber=\"18\"> The next day, because we were violently battered by the storm, they began throwing the cargo overboard,</VERS>\n\t\t\t<VERS vnumber=\"19\"> and on the third day they threw the ship's gear overboard with their own hands. </VERS>\n\t\t\t<VERS vnumber=\"20\"> When neither sun nor stars appeared for many days and a violent storm continued to batter us, we finally abandoned all hope of being saved.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Since many of them had no desire to eat, Paul stood up among them and said, \"Men, you should have listened to me and not put out to sea from Crete, thus avoiding this damage and loss. </VERS>\n\t\t\t<VERS vnumber=\"22\"> And now I advise you to keep up your courage, for there will be no loss of life among you, but only the ship will be lost.</VERS>\n\t\t\t<VERS vnumber=\"23\"> For last night an angel of the God to whom I belong and whom I serve came to me</VERS>\n\t\t\t<VERS vnumber=\"24\"> and said, 'Do not be afraid, Paul! You must stand before Caesar, and God has graciously granted you the safety of all who are sailing with you.'</VERS>\n\t\t\t<VERS vnumber=\"25\"> Therefore keep up your courage, men, for I have faith in God that it will be just as I have been told. </VERS>\n\t\t\t<VERS vnumber=\"26\"> But we must run aground on some island.\"</VERS>\n\t\t\t<VERS vnumber=\"27\"> When the fourteenth night had come, while we were being driven across the Adriatic Sea, about midnight the sailors suspected they were approaching some land.</VERS>\n\t\t\t<VERS vnumber=\"28\"> They took soundings and found the water was twenty fathoms deep; when they had sailed a little farther they took soundings again and found it was fifteen fathoms deep. </VERS>\n\t\t\t<VERS vnumber=\"29\"> Because they were afraid that we would run aground on the rocky coast, they threw out four anchors from the stern and wished for day to appear.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Then when the sailors tried to escape from the ship and were lowering the ship's boat into the sea, pretending that they were going to put out anchors from the bow,</VERS>\n\t\t\t<VERS vnumber=\"31\"> Paul said to the centurion and the soldiers, \"Unless these men stay with the ship, you cannot be saved.\" </VERS>\n\t\t\t<VERS vnumber=\"32\"> Then the soldiers cut the ropes of the ship's boat and let it drift away.</VERS>\n\t\t\t<VERS vnumber=\"33\"> As day was about to dawn, Paul urged them all to take some food, saying, \"Today is the fourteenth day you have been in suspense and have gone without food; you have eaten nothing.</VERS>\n\t\t\t<VERS vnumber=\"34\"> Therefore I urge you to take some food, for this is important for your survival. For not one of you will lose a hair from his head.\" </VERS>\n\t\t\t<VERS vnumber=\"35\"> After he said this, Paul took bread and gave thanks to God in front of them all, broke it, and began to eat. </VERS>\n\t\t\t<VERS vnumber=\"36\"> So all of them were encouraged and took food themselves.</VERS>\n\t\t\t<VERS vnumber=\"37\"> (We were in all two hundred seventy-six persons on the ship.)</VERS>\n\t\t\t<VERS vnumber=\"38\"> When they had eaten enough to be satisfied, they lightened the ship by throwing the wheat into the sea.</VERS>\n\t\t\t<VERS vnumber=\"39\"> When day came, they did not recognize the land, but they noticed a bay with a beach, where they decided to run the ship aground if they could. </VERS>\n\t\t\t<VERS vnumber=\"40\"> So they slipped the anchors and left them in the sea, at the same time loosening the linkage that bound the steering oars together. Then they hoisted the foresail to the wind and steered toward the beach. </VERS>\n\t\t\t<VERS vnumber=\"41\"> But they encountered a patch of crosscurrents and ran the ship aground; the bow stuck fast and could not be moved, but the stern was being broken up by the force of the waves. </VERS>\n\t\t\t<VERS vnumber=\"42\"> Now the soldiers' plan was to kill the prisoners so that none of them would escape by swimming away.</VERS>\n\t\t\t<VERS vnumber=\"43\"> But the centurion, wanting to save Paul's life, prevented them from carrying out their plan. He ordered those who could swim to jump overboard first and get to land,</VERS>\n\t\t\t<VERS vnumber=\"44\"> and the rest were to follow, some on planks and some on pieces of the ship. And in this way all were brought safely to land.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"28\">\n\t\t\t<VERS vnumber=\"1\"> After we had safely reached shore, we learned that the island was called Malta.</VERS>\n\t\t\t<VERS vnumber=\"2\"> The local inhabitants showed us extraordinary kindness, for they built a fire and welcomed us all because it had started to rain and was cold. </VERS>\n\t\t\t<VERS vnumber=\"3\"> When Paul had gathered a bundle of brushwood and was putting it on the fire, a viper came out because of the heat and fastened itself on his hand. </VERS>\n\t\t\t<VERS vnumber=\"4\"> When the local people saw the creature hanging from Paul's hand, they said to one another, \"No doubt this man is a murderer! Although he has escaped from the sea, Justice herself has not allowed him to live!\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> However, Paul shook the creature off into the fire and suffered no harm. </VERS>\n\t\t\t<VERS vnumber=\"6\"> But they were expecting that he was going to swell up or suddenly drop dead. So after they had waited a long time and had seen nothing unusual happen to him, they changed their minds and said he was a god.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Now in the region around that place were fields belonging to the chief official of the island, named Publius, who welcomed us and entertained us hospitably as guests for three days. </VERS>\n\t\t\t<VERS vnumber=\"8\"> The father of Publius lay sick in bed, suffering from fever and dysentery. Paul went in to see him and after praying, placed his hands on him and healed him. </VERS>\n\t\t\t<VERS vnumber=\"9\"> After this had happened, many of the people on the island who were sick also came and were healed.</VERS>\n\t\t\t<VERS vnumber=\"10\"> They also bestowed many honors, and when we were preparing to sail, they gave us all the supplies we needed.</VERS>\n\t\t\t<VERS vnumber=\"11\"> After three months we put out to sea in an Alexandrian ship that had wintered at the island and had the \"Heavenly Twins\" as its figurehead.</VERS>\n\t\t\t<VERS vnumber=\"12\"> We put in at Syracuse and stayed there three days. </VERS>\n\t\t\t<VERS vnumber=\"13\"> From there we cast off and arrived at Rhegium, and after one day a south wind sprang up and on the second day we came to Puteoli.</VERS>\n\t\t\t<VERS vnumber=\"14\"> There we found some brothers and were invited to stay with them seven days. And in this way we came to Rome.</VERS>\n\t\t\t<VERS vnumber=\"15\"> The brothers from there, when they heard about us, came as far as the Forum of Appius and Three Taverns to meet us. When he saw them, Paul thanked God and took courage. </VERS>\n\t\t\t<VERS vnumber=\"16\"> When we entered Rome, Paul was allowed to live by himself, with the soldier who was guarding him.</VERS>\n\t\t\t<VERS vnumber=\"17\"> After three days Paul called the local Jewish leaders together. When they had assembled, he said to them, \"Brothers, although I had done nothing against our people or the customs of our ancestors, from Jerusalem I was handed over as a prisoner to the Romans.</VERS>\n\t\t\t<VERS vnumber=\"18\"> When they had heard my case, they wanted to release me, because there was no basis for a death sentence against me. </VERS>\n\t\t\t<VERS vnumber=\"19\"> But when the Jews objected, I was forced to appeal to Caesar, not that I had some charge to bring against my own people.</VERS>\n\t\t\t<VERS vnumber=\"20\"> So for this reason I have asked to see you and speak with you, for I am bound with this chain because of the hope of Israel.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> They replied, \"We have received no letters from Judea about you, nor have any of the brothers come from there and reported or said anything bad about you. </VERS>\n\t\t\t<VERS vnumber=\"22\"> But we would like to hear from you what you think, for regarding this sect we know that people everywhere speak against it.\"</VERS>\n\t\t\t<VERS vnumber=\"23\"> They set a day to meet with him, and they came to him where he was staying in even greater numbers. From morning until evening he explained things to them, testifying about the kingdom of God and trying to convince them about Jesus from both the law of Moses and the prophets. </VERS>\n\t\t\t<VERS vnumber=\"24\"> Some were convinced by what he said, but others refused to believe. </VERS>\n\t\t\t<VERS vnumber=\"25\"> So they began to leave, unable to agree among themselves, after Paul made one last statement: \"The Holy Spirit spoke rightly to your ancestors through the prophet Isaiah </VERS>\n\t\t\t<VERS vnumber=\"26\"> when he said, 'Go to this people and say, \"You will keep on hearing, but will never understand, and you will keep on looking, but will never perceive.</VERS>\n\t\t\t<VERS vnumber=\"27\"> For the heart of this people has become dull, and their ears are hard of hearing, and they have closed their eyes, so that they would not see with their eyes and hear with their ears and understand with their heart and turn, and I would heal them.\"'</VERS>\n\t\t\t<VERS vnumber=\"28\"> \"Therefore be advised that this salvation from God has been sent to the Gentiles; they will listen!\"</VERS>\n\t\t\t<VERS vnumber=\"29\"> </VERS>\n\t\t\t<VERS vnumber=\"30\"> Paul lived there two whole years in his own rented quarters and welcomed all who came to him, </VERS>\n\t\t\t<VERS vnumber=\"31\"> proclaiming the kingdom of God and teaching about the Lord Jesus Christ with complete boldness and without restriction.</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"45\" bname=\"Romans\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> From Paul, a slave of Christ Jesus, called to be an apostle, set apart for the gospel of God.</VERS>\n\t\t\t<VERS vnumber=\"2\"> This gospel he promised beforehand through his prophets in the holy scriptures, </VERS>\n\t\t\t<VERS vnumber=\"3\"> concerning his Son who was a descendant of David with reference to the flesh,</VERS>\n\t\t\t<VERS vnumber=\"4\"> who was appointed the Son-of-God-in-power according to the Holy Spirit by the resurrection from the dead, Jesus Christ our Lord. </VERS>\n\t\t\t<VERS vnumber=\"5\"> Through him we have received grace and our apostleship to bring about the obedience of faith among all the Gentiles on behalf of his name. </VERS>\n\t\t\t<VERS vnumber=\"6\"> You also are among them, called to belong to Jesus Christ.</VERS>\n\t\t\t<VERS vnumber=\"7\"> To all those loved by God in Rome, called to be saints: Grace and peace to you from God our Father and the Lord Jesus Christ!</VERS>\n\t\t\t<VERS vnumber=\"8\"> First of all, I thank my God through Jesus Christ for all of you, because your faith is proclaimed throughout the whole world. </VERS>\n\t\t\t<VERS vnumber=\"9\"> For God, whom I serve in my spirit by preaching the gospel of his Son, is my witness that I continually remember you </VERS>\n\t\t\t<VERS vnumber=\"10\"> and I always ask in my prayers, if perhaps now at last I may succeed in visiting you according to the will of God.</VERS>\n\t\t\t<VERS vnumber=\"11\"> For I long to see you, so that I may impart to you some spiritual gift to strengthen you, </VERS>\n\t\t\t<VERS vnumber=\"12\"> that is, that we may be mutually comforted by one another's faith, both yours and mine. </VERS>\n\t\t\t<VERS vnumber=\"13\"> I do not want you to be unaware, brothers and sisters, that I often intended to come to you (and was prevented until now), so that I may have some fruit even among you, just as I already have among the rest of the Gentiles.</VERS>\n\t\t\t<VERS vnumber=\"14\"> I am a debtor both to the Greeks and to the barbarians, both to the wise and to the foolish. </VERS>\n\t\t\t<VERS vnumber=\"15\"> Thus I am eager also to preach the gospel to you who are in Rome.</VERS>\n\t\t\t<VERS vnumber=\"16\"> For I am not ashamed of the gospel, for it is God's power for salvation to everyone who believes, to the Jew first and also to the Greek.</VERS>\n\t\t\t<VERS vnumber=\"17\"> For the righteousness of God is revealed in the gospel from faith to faith, just as it is written, \"The righteous by faith will live.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> For the wrath of God is revealed from heaven against all ungodliness and unrighteousness of people who suppress the truth by their unrighteousness,</VERS>\n\t\t\t<VERS vnumber=\"19\"> because what can be known about God is plain to them, because God has made it plain to them. </VERS>\n\t\t\t<VERS vnumber=\"20\"> For since the creation of the world his invisible attributes, his eternal power and divine nature, have been clearly seen, because they are understood through what has been made. So people are without excuse.</VERS>\n\t\t\t<VERS vnumber=\"21\"> For although they knew God, they did not glorify him as God or give him thanks, but they became futile in their thoughts and their senseless hearts were darkened. </VERS>\n\t\t\t<VERS vnumber=\"22\"> Although they claimed to be wise, they became fools </VERS>\n\t\t\t<VERS vnumber=\"23\"> and exchanged the glory of the immortal God for an image resembling mortal human beings or birds or four-footed animals or reptiles.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Therefore God gave them over in the desires of their hearts to impurity, to dishonor their bodies among themselves.</VERS>\n\t\t\t<VERS vnumber=\"25\"> They exchanged the truth of God for a lie and worshiped and served the creation rather than the Creator, who is blessed forever! Amen.</VERS>\n\t\t\t<VERS vnumber=\"26\"> For this reason God gave them over to dishonorable passions. For their women exchanged the natural sexual relations for unnatural ones,</VERS>\n\t\t\t<VERS vnumber=\"27\"> and likewise the men also abandoned natural relations with women and were inflamed in their passions for one another. Men committed shameless acts with men and received in themselves the due penalty for their error.</VERS>\n\t\t\t<VERS vnumber=\"28\"> And just as they did not see fit to acknowledge God, God gave them over to a depraved mind, to do what should not be done.</VERS>\n\t\t\t<VERS vnumber=\"29\"> They are filled with every kind of unrighteousness, wickedness, covetousness, malice. They are rife with envy, murder, strife, deceit, hostility. They are gossips, </VERS>\n\t\t\t<VERS vnumber=\"30\"> slanderers, haters of God, insolent, arrogant, boastful, contrivers of all sorts of evil, disobedient to parents,</VERS>\n\t\t\t<VERS vnumber=\"31\"> senseless, covenant-breakers, heartless, ruthless. </VERS>\n\t\t\t<VERS vnumber=\"32\"> Although they fully know God's righteous decree that those who practice such things deserve to die, they not only do them but also approve of those who practice them.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\">  Therefore you are without excuse, whoever you are, when you judge someone else. For on whatever grounds you judge another, you condemn yourself, because you who judge practice the same things. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Now we know that God's judgment is in accordance with truth against those who practice such things. </VERS>\n\t\t\t<VERS vnumber=\"3\"> And do you think, whoever you are, when you judge those who practice such things and yet do them yourself, that you will escape God's judgment? </VERS>\n\t\t\t<VERS vnumber=\"4\"> Or do you have contempt for the wealth of his kindness, forbearance, and patience, and yet do not know that God's kindness leads you to repentance? </VERS>\n\t\t\t<VERS vnumber=\"5\"> But because of your stubbornness and your unrepentant heart, you are storing up wrath for yourselves in the day of wrath, when God's righteous judgment is revealed!</VERS>\n\t\t\t<VERS vnumber=\"6\"> He will reward each one according to his works:</VERS>\n\t\t\t<VERS vnumber=\"7\"> eternal life to those who by perseverance in good works seek glory and honor and immortality,</VERS>\n\t\t\t<VERS vnumber=\"8\"> but wrath and anger to those who live in selfish ambition and do not obey the truth but follow unrighteousness. </VERS>\n\t\t\t<VERS vnumber=\"9\"> There will be affliction and distress on everyone who does evil, on the Jew first and also the Greek,</VERS>\n\t\t\t<VERS vnumber=\"10\"> but glory and honor and peace for everyone who does good, for the Jew first and also the Greek. </VERS>\n\t\t\t<VERS vnumber=\"11\"> For there is no partiality with God.</VERS>\n\t\t\t<VERS vnumber=\"12\"> For all who have sinned apart from the law will also perish apart from the law, and all who have sinned under the law will be judged by the law. </VERS>\n\t\t\t<VERS vnumber=\"13\"> For it is not those who hear the law who are righteous before God, but those who do the law will be declared righteous.</VERS>\n\t\t\t<VERS vnumber=\"14\"> For whenever the Gentiles, who do not have the law, do by nature the things required by the law, these who do not have the law are a law to themselves. </VERS>\n\t\t\t<VERS vnumber=\"15\"> They show that the work of the law is written in their hearts, as their conscience bears witness and their conflicting thoughts accuse or else defend them,</VERS>\n\t\t\t<VERS vnumber=\"16\"> on the day when God will judge the secrets of human hearts, according to my gospel through Christ Jesus.</VERS>\n\t\t\t<VERS vnumber=\"17\"> But if you call yourself a Jew and rely on the law and boast of your relationship to God</VERS>\n\t\t\t<VERS vnumber=\"18\"> and know his will and approve the superior things because you receive instruction from the law,</VERS>\n\t\t\t<VERS vnumber=\"19\"> and if you are convinced that you yourself are a guide to the blind, a light to those who are in darkness, </VERS>\n\t\t\t<VERS vnumber=\"20\"> an educator of the senseless, a teacher of little children, because you have in the law the essential features of knowledge and of the truth,</VERS>\n\t\t\t<VERS vnumber=\"21\"> therefore you who teach someone else, do you not teach yourself? You who preach against stealing, do you steal? </VERS>\n\t\t\t<VERS vnumber=\"22\"> You who tell others not to commit adultery, do you commit adultery? You who abhor idols, do you rob temples? </VERS>\n\t\t\t<VERS vnumber=\"23\"> You who boast in the law dishonor God by transgressing the law!</VERS>\n\t\t\t<VERS vnumber=\"24\"> For just as it is written, \"the name of God is being blasphemed among the Gentiles because of you.\"</VERS>\n\t\t\t<VERS vnumber=\"25\"> For circumcision has its value if you practice the law, but if you break the law, your circumcision has become uncircumcision. </VERS>\n\t\t\t<VERS vnumber=\"26\"> Therefore if the uncircumcised man obeys the righteous requirements of the law, will not his uncircumcision be regarded as circumcision? </VERS>\n\t\t\t<VERS vnumber=\"27\"> And will not the physically uncircumcised man who keeps the law judge you who, despite the written code and circumcision, transgress the law? </VERS>\n\t\t\t<VERS vnumber=\"28\"> For a person is not a Jew who is one outwardly, nor is circumcision something that is outward in the flesh,</VERS>\n\t\t\t<VERS vnumber=\"29\"> but someone is a Jew who is one inwardly, and circumcision is of the heart by the Spirit and not by the written code. This person's praise is not from people but from God.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> Therefore what advantage does the Jew have, or what is the value of circumcision?</VERS>\n\t\t\t<VERS vnumber=\"2\"> Actually, there are many advantages. First of all, the Jews were entrusted with the oracles of God.</VERS>\n\t\t\t<VERS vnumber=\"3\"> What then? If some did not believe, does their unbelief nullify the faithfulness of God?</VERS>\n\t\t\t<VERS vnumber=\"4\"> Absolutely not! Let God be proven true, and every human being shown up as a liar, just as it is written: \"so that you will be justified in your words and will prevail when you are judged.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> But if our unrighteousness demonstrates the righteousness of God, what shall we say? The God who inflicts wrath is not unrighteous, is he? (I am speaking in human terms.)</VERS>\n\t\t\t<VERS vnumber=\"6\"> Absolutely not! For otherwise how could God judge the world?</VERS>\n\t\t\t<VERS vnumber=\"7\"> For if by my lie the truth of God enhances his glory, why am I still actually being judged as a sinner? </VERS>\n\t\t\t<VERS vnumber=\"8\"> And why not say, \"Let us do evil so that good may come of it\"?, as some who slander us allege that we say. (Their condemnation is deserved!)</VERS>\n\t\t\t<VERS vnumber=\"9\"> What then? Are we better off? Certainly not, for we have already charged that Jews and Greeks alike are all under sin,</VERS>\n\t\t\t<VERS vnumber=\"10\"> just as it is written: \"There is no one righteous, not even one,</VERS>\n\t\t\t<VERS vnumber=\"11\"> there is no one who understands, there is no one who seeks God.</VERS>\n\t\t\t<VERS vnumber=\"12\"> All have turned away, together they have become worthless; there is no one who shows kindness, not even one.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"Their throats are open graves, they deceive with their tongues, the poison of asps is under their lips.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> \"Their mouths are full of cursing and bitterness.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> \"Their feet are swift to shed blood,</VERS>\n\t\t\t<VERS vnumber=\"16\"> ruin and misery are in their paths,</VERS>\n\t\t\t<VERS vnumber=\"17\"> and the way of peace they have not known.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> \"There is no fear of God before their eyes.\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> Now we know that whatever the law says, it says to those who are under the law, so that every mouth may be silenced and the whole world may be held accountable to God. </VERS>\n\t\t\t<VERS vnumber=\"20\"> For no one is declared righteous before him by the works of the law, for through the law comes the knowledge of sin. </VERS>\n\t\t\t<VERS vnumber=\"21\"> But now apart from the law the righteousness of God (which is attested by the law and the prophets) has been disclosed,</VERS>\n\t\t\t<VERS vnumber=\"22\"> namely, the righteousness of God through the faithfulness of Jesus Christ for all who believe. For there is no distinction, </VERS>\n\t\t\t<VERS vnumber=\"23\"> for all have sinned and fall short of the glory of God.</VERS>\n\t\t\t<VERS vnumber=\"24\"> But they are justified freely by his grace through the redemption that is in Christ Jesus. </VERS>\n\t\t\t<VERS vnumber=\"25\"> God publicly displayed him at his death as the mercy seat accessible through faith. This was to demonstrate his righteousness, because God in his forbearance had passed over the sins previously committed.</VERS>\n\t\t\t<VERS vnumber=\"26\"> This was also to demonstrate his righteousness in the present time, so that he would be just and the justifier of the one who lives because of Jesus' faithfulness.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Where, then, is boasting? It is excluded! By what principle? Of works? No, but by the principle of faith! </VERS>\n\t\t\t<VERS vnumber=\"28\"> For we consider that a person is declared righteous by faith apart from the works of the law.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Or is God the God of the Jews only? Is he not the God of the Gentiles too? Yes, of the Gentiles too!</VERS>\n\t\t\t<VERS vnumber=\"30\"> Since God is one, he will justify the circumcised by faith and the uncircumcised through faith. </VERS>\n\t\t\t<VERS vnumber=\"31\"> Do we then nullify the law through faith? Absolutely not! Instead we uphold the law.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\"> What then shall we say that Abraham, our ancestor according to the flesh, has discovered regarding this matter?</VERS>\n\t\t\t<VERS vnumber=\"2\"> For if Abraham was declared righteous by the works of the law, he has something to boast about, but not before God.</VERS>\n\t\t\t<VERS vnumber=\"3\"> For what does the scripture say? \"Abraham believed God, and it was credited to him as righteousness.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> Now to the one who works, his pay is not credited due to grace but due to obligation.</VERS>\n\t\t\t<VERS vnumber=\"5\"> But to the one who does not work, but believes in the one who declares the ungodly righteous, his faith is credited as righteousness.</VERS>\n\t\t\t<VERS vnumber=\"6\"> So even David himself speaks regarding the blessedness of the man to whom God credits righteousness apart from works:</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"Blessed are those whose lawless deeds are forgiven, and whose sins are covered;</VERS>\n\t\t\t<VERS vnumber=\"8\"> blessed is the one against whom the Lord will never count sin.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> Is this blessedness then for the circumcision or also for the uncircumcision? For we say, \"faith was credited to Abraham as righteousness.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> How then was it credited to him? Was he circumcised at the time, or not? No, he was not circumcised but uncircumcised!</VERS>\n\t\t\t<VERS vnumber=\"11\"> And he received the sign of circumcision as a seal of the righteousness that he had by faith while he was still uncircumcised, so that he would become the father of all those who believe but have never been circumcised, that they too could have righteousness credited to them. </VERS>\n\t\t\t<VERS vnumber=\"12\"> And he is also the father of the circumcised, who are not only circumcised, but who also walk in the footsteps of the faith that our father Abraham possessed when he was still uncircumcised.</VERS>\n\t\t\t<VERS vnumber=\"13\"> For the promise to Abraham or to his descendants that he would inherit the world was not fulfilled through the law, but through the righteousness that comes by faith. </VERS>\n\t\t\t<VERS vnumber=\"14\"> For if they become heirs by the law, faith is empty and the promise is nullified.</VERS>\n\t\t\t<VERS vnumber=\"15\"> For the law brings wrath, because where there is no law there is no transgression either. </VERS>\n\t\t\t<VERS vnumber=\"16\"> For this reason it is by faith so that it may be by grace, with the result that the promise may be certain to all the descendants, not only to those who are under the law, but also to those who have the faith of Abraham, who is the father of us all</VERS>\n\t\t\t<VERS vnumber=\"17\"> (as it is written, \"I have made you the father of many nations\"). He is our father in the presence of God whom he believed, the God who makes the dead alive and summons the things that do not yet exist as though they already do.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Against hope Abraham believed in hope with the result that he became the father of many nations according to the pronouncement, \"so will your descendants be.\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> Without being weak in faith, he considered his own body as dead (because he was about one hundred years old) and the deadness of Sarah's womb. </VERS>\n\t\t\t<VERS vnumber=\"20\"> He did not waver in unbelief about the promise of God but was strengthened in faith, giving glory to God. </VERS>\n\t\t\t<VERS vnumber=\"21\"> He was fully convinced that what God promised he was also able to do. </VERS>\n\t\t\t<VERS vnumber=\"22\"> So indeed it was credited to Abraham as righteousness.</VERS>\n\t\t\t<VERS vnumber=\"23\"> But the statement it was credited to him was not written only for Abraham's sake,</VERS>\n\t\t\t<VERS vnumber=\"24\"> but also for our sake, to whom it will be credited, those who believe in the one who raised Jesus our Lord from the dead.</VERS>\n\t\t\t<VERS vnumber=\"25\"> He was given over because of our transgressions and was raised for the sake of our justification.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"5\">\n\t\t\t<VERS vnumber=\"1\">  Therefore, since we have been declared righteous by faith, we have peace with God through our Lord Jesus Christ, </VERS>\n\t\t\t<VERS vnumber=\"2\"> through whom we have also obtained access by faith into this grace in which we stand, and we rejoice in the hope of God's glory. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Not only this, but we also rejoice in sufferings, knowing that suffering produces endurance, </VERS>\n\t\t\t<VERS vnumber=\"4\"> and endurance, character, and character, hope.</VERS>\n\t\t\t<VERS vnumber=\"5\"> And hope does not disappoint, because the love of God has been poured out in our hearts through the Holy Spirit who was given to us.</VERS>\n\t\t\t<VERS vnumber=\"6\"> For while we were still helpless, at the right time Christ died for the ungodly.</VERS>\n\t\t\t<VERS vnumber=\"7\"> (For rarely will anyone die for a righteous person, though for a good person perhaps someone might possibly dare to die.)</VERS>\n\t\t\t<VERS vnumber=\"8\"> But God demonstrates his own love for us, in that while we were still sinners, Christ died for us.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Much more then, because we have now been declared righteous by his blood, we will be saved through him from God's wrath.</VERS>\n\t\t\t<VERS vnumber=\"10\"> For if while we were enemies we were reconciled to God through the death of his Son, how much more, since we have been reconciled, will we be saved by his life?</VERS>\n\t\t\t<VERS vnumber=\"11\"> Not only this, but we also rejoice in God through our Lord Jesus Christ, through whom we have now received this reconciliation.</VERS>\n\t\t\t<VERS vnumber=\"12\"> So then, just as sin entered the world through one man and death through sin, and so death spread to all people because all sinned,</VERS>\n\t\t\t<VERS vnumber=\"13\"> for before the law was given, sin was in the world, but there is no accounting for sin when there is no law. </VERS>\n\t\t\t<VERS vnumber=\"14\"> Yet death reigned from Adam until Moses even over those who did not sin in the same way that Adam (who is a type of the coming one) transgressed.</VERS>\n\t\t\t<VERS vnumber=\"15\"> But the gracious gift is not like the transgression. For if the many died through the transgression of the one man, how much more did the grace of God and the gift by the grace of the one man Jesus Christ multiply to the many!</VERS>\n\t\t\t<VERS vnumber=\"16\"> And the gift is not like the one who sinned. For judgment, resulting from the one transgression, led to condemnation, but the gracious gift from the many failures led to justification. </VERS>\n\t\t\t<VERS vnumber=\"17\"> For if, by the transgression of the one man, death reigned through the one, how much more will those who receive the abundance of grace and of the gift of righteousness reign in life through the one, Jesus Christ!</VERS>\n\t\t\t<VERS vnumber=\"18\"> Consequently, just as condemnation for all people came through one transgression, so too through the one righteous act came righteousness leading to life for all people. </VERS>\n\t\t\t<VERS vnumber=\"19\"> For just as through the disobedience of the one man many were made sinners, so also through the obedience of one man many will be made righteous. </VERS>\n\t\t\t<VERS vnumber=\"20\"> Now the law came in so that the transgression may increase, but where sin increased, grace multiplied all the more, </VERS>\n\t\t\t<VERS vnumber=\"21\"> so that just as sin reigned in death, so also grace will reign through righteousness to eternal life through Jesus Christ our Lord.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"6\">\n\t\t\t<VERS vnumber=\"1\"> What shall we say then? Are we to remain in sin so that grace may increase?</VERS>\n\t\t\t<VERS vnumber=\"2\"> Absolutely not! How can we who died to sin still live in it?</VERS>\n\t\t\t<VERS vnumber=\"3\"> Or do you not know that as many as were baptized into Christ Jesus were baptized into his death?</VERS>\n\t\t\t<VERS vnumber=\"4\"> Therefore we have been buried with him through baptism into death, in order that just as Christ was raised from the dead through the glory of the Father, so we too may live a new life.</VERS>\n\t\t\t<VERS vnumber=\"5\"> For if we have become united with him in the likeness of his death, we will certainly also be united in the likeness of his resurrection.</VERS>\n\t\t\t<VERS vnumber=\"6\"> We know that our old man was crucified with him so that the body of sin would no longer dominate us, so that we would no longer be enslaved to sin. </VERS>\n\t\t\t<VERS vnumber=\"7\"> (For someone who has died has been freed from sin.)</VERS>\n\t\t\t<VERS vnumber=\"8\"> Now if we died with Christ, we believe that we will also live with him.</VERS>\n\t\t\t<VERS vnumber=\"9\"> We know that since Christ has been raised from the dead, he is never going to die again; death no longer has mastery over him. </VERS>\n\t\t\t<VERS vnumber=\"10\"> For the death he died, he died to sin once for all, but the life he lives, he lives to God.</VERS>\n\t\t\t<VERS vnumber=\"11\"> So you too consider yourselves dead to sin, but alive to God in Christ Jesus.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Therefore do not let sin reign in your mortal body so that you obey its desires,</VERS>\n\t\t\t<VERS vnumber=\"13\"> and do not present your members to sin as instruments to be used for unrighteousness, but present yourselves to God as those who are alive from the dead and your members to God as instruments to be used for righteousness. </VERS>\n\t\t\t<VERS vnumber=\"14\"> For sin will have no mastery over you, because you are not under law but under grace.</VERS>\n\t\t\t<VERS vnumber=\"15\"> What then? Shall we sin because we are not under law but under grace? Absolutely not!</VERS>\n\t\t\t<VERS vnumber=\"16\"> Do you not know that if you present yourselves as obedient slaves, you are slaves of the one you obey, either of sin resulting in death, or obedience resulting in righteousness?</VERS>\n\t\t\t<VERS vnumber=\"17\"> But thanks be to God that though you were slaves to sin, you obeyed from the heart that pattern of teaching you were entrusted to, </VERS>\n\t\t\t<VERS vnumber=\"18\"> and having been freed from sin, you became enslaved to righteousness.</VERS>\n\t\t\t<VERS vnumber=\"19\"> (I am speaking in human terms because of the weakness of your flesh.) For just as you once presented your members as slaves to impurity and lawlessness leading to more lawlessness, so now present your members as slaves to righteousness leading to sanctification. </VERS>\n\t\t\t<VERS vnumber=\"20\"> For when you were slaves of sin, you were free with regard to righteousness.</VERS>\n\t\t\t<VERS vnumber=\"21\"> So what benefit did you then reap from those things that you are now ashamed of? For the end of those things is death. </VERS>\n\t\t\t<VERS vnumber=\"22\"> But now, freed from sin and enslaved to God, you have your benefit leading to sanctification, and the end is eternal life. </VERS>\n\t\t\t<VERS vnumber=\"23\"> For the payoff of sin is death, but the gift of God is eternal life in Christ Jesus our Lord.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"7\">\n\t\t\t<VERS vnumber=\"1\"> Or do you not know, brothers and sisters (for I am speaking to those who know the law), that the law is lord over a person as long as he lives? </VERS>\n\t\t\t<VERS vnumber=\"2\"> For a married woman is bound by law to her husband as long as he lives, but if her husband dies, she is released from the law of the marriage.</VERS>\n\t\t\t<VERS vnumber=\"3\"> So then, if she is joined to another man while her husband is alive, she will be called an adulteress. But if her husband dies, she is free from that law, and if she is joined to another man, she is not an adulteress. </VERS>\n\t\t\t<VERS vnumber=\"4\"> So, my brothers and sisters, you also died to the law through the body of Christ, so that you could be joined to another, to the one who was raised from the dead, to bear fruit to God.</VERS>\n\t\t\t<VERS vnumber=\"5\"> For when we were in the flesh, the sinful desires, aroused by the law, were active in the members of our body to bear fruit for death. </VERS>\n\t\t\t<VERS vnumber=\"6\"> But now we have been released from the law, because we have died to what controlled us, so that we may serve in the new life of the Spirit and not under the old written code.</VERS>\n\t\t\t<VERS vnumber=\"7\"> What shall we say then? Is the law sin? Absolutely not! Certainly, I would not have known sin except through the law. For indeed I would not have known what it means to desire something belonging to someone else if the law had not said, \"Do not covet.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> But sin, seizing the opportunity through the commandment, produced in me all kinds of wrong desires. For apart from the law, sin is dead. </VERS>\n\t\t\t<VERS vnumber=\"9\"> And I was once alive apart from the law, but with the coming of the commandment sin became alive</VERS>\n\t\t\t<VERS vnumber=\"10\"> and I died. So I found that the very commandment that was intended to bring life brought death!</VERS>\n\t\t\t<VERS vnumber=\"11\"> For sin, seizing the opportunity through the commandment, deceived me and through it I died.</VERS>\n\t\t\t<VERS vnumber=\"12\"> So then, the law is holy, and the commandment is holy, righteous, and good.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Did that which is good, then, become death to me? Absolutely not! But sin, so that it would be shown to be sin, produced death in me through what is good, so that through the commandment sin would become utterly sinful.</VERS>\n\t\t\t<VERS vnumber=\"14\"> For we know that the law is spiritual, but I am unspiritual, sold into slavery to sin.</VERS>\n\t\t\t<VERS vnumber=\"15\"> For I don't understand what I am doing. For I do not do what I want, instead, I do what I hate.</VERS>\n\t\t\t<VERS vnumber=\"16\"> But if I do what I don't want, I agree that the law is good.</VERS>\n\t\t\t<VERS vnumber=\"17\"> But now it is no longer me doing it, but sin that lives in me.</VERS>\n\t\t\t<VERS vnumber=\"18\"> For I know that nothing good lives in me, that is, in my flesh. For I want to do the good, but I cannot do it.</VERS>\n\t\t\t<VERS vnumber=\"19\"> For I do not do the good I want, but I do the very evil I do not want!</VERS>\n\t\t\t<VERS vnumber=\"20\"> Now if I do what I do not want, it is no longer me doing it but sin that lives in me.</VERS>\n\t\t\t<VERS vnumber=\"21\"> So, I find the law that when I want to do good, evil is present with me.</VERS>\n\t\t\t<VERS vnumber=\"22\"> For I delight in the law of God in my inner being.</VERS>\n\t\t\t<VERS vnumber=\"23\"> But I see a different law in my members waging war against the law of my mind and making me captive to the law of sin that is in my members.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Wretched man that I am! Who will rescue me from this body of death?</VERS>\n\t\t\t<VERS vnumber=\"25\"> Thanks be to God through Jesus Christ our Lord! So then, I myself serve the law of God with my mind, but with my flesh I serve the law of sin.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"8\">\n\t\t\t<VERS vnumber=\"1\"> There is therefore now no condemnation for those who are in Christ Jesus.</VERS>\n\t\t\t<VERS vnumber=\"2\"> For the law of the life-giving Spirit in Christ Jesus has set you free from the law of sin and death. </VERS>\n\t\t\t<VERS vnumber=\"3\"> For God achieved what the law could not do because it was weakened through the flesh. By sending his own Son in the likeness of sinful flesh and concerning sin, he condemned sin in the flesh, </VERS>\n\t\t\t<VERS vnumber=\"4\"> so that the righteous requirement of the law may be fulfilled in us, who do not walk according to the flesh but according to the Spirit.</VERS>\n\t\t\t<VERS vnumber=\"5\"> For those who live according to the flesh have their outlook shaped by the things of the flesh, but those who live according to the Spirit have their outlook shaped by the things of the Spirit. </VERS>\n\t\t\t<VERS vnumber=\"6\"> For the outlook of the flesh is death, but the outlook of the Spirit is life and peace, </VERS>\n\t\t\t<VERS vnumber=\"7\"> because the outlook of the flesh is hostile to God, for it does not submit to the law of God, nor is it able to do so.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Those who are in the flesh cannot please God.</VERS>\n\t\t\t<VERS vnumber=\"9\"> You, however, are not in the flesh but in the Spirit, if indeed the Spirit of God lives in you. Now if anyone does not have the Spirit of Christ, this person does not belong to him. </VERS>\n\t\t\t<VERS vnumber=\"10\"> But if Christ is in you, your body is dead because of sin, but the Spirit is your life because of righteousness. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Moreover if the Spirit of the one who raised Jesus from the dead lives in you, the one who raised Christ from the dead will also make your mortal bodies alive through his Spirit who lives in you.</VERS>\n\t\t\t<VERS vnumber=\"12\"> So then, brothers and sisters, we are under obligation, not to the flesh, to live according to the flesh </VERS>\n\t\t\t<VERS vnumber=\"13\"> (for if you live according to the flesh, you will die), but if by the Spirit you put to death the deeds of the body you will live. </VERS>\n\t\t\t<VERS vnumber=\"14\"> For all who are led by the Spirit of God are the sons of God. </VERS>\n\t\t\t<VERS vnumber=\"15\"> For you did not receive the spirit of slavery leading again to fear, but you received the Spirit of adoption, by whom we cry, \"Abba, Father.\" </VERS>\n\t\t\t<VERS vnumber=\"16\"> The Spirit himself bears witness to our spirit that we are God's children. </VERS>\n\t\t\t<VERS vnumber=\"17\"> And if children, then heirs (namely, heirs of God and also fellow heirs with Christ), if indeed we suffer with him so we may also be glorified with him.</VERS>\n\t\t\t<VERS vnumber=\"18\"> For I consider that our present sufferings cannot even be compared to the glory that will be revealed to us. </VERS>\n\t\t\t<VERS vnumber=\"19\"> For the creation eagerly waits for the revelation of the sons of God.</VERS>\n\t\t\t<VERS vnumber=\"20\"> For the creation was subjected to futility, not willingly but because of God who subjected it, in hope</VERS>\n\t\t\t<VERS vnumber=\"21\"> that the creation itself will also be set free from the bondage of decay into the glorious freedom of God's children.</VERS>\n\t\t\t<VERS vnumber=\"22\"> For we know that the whole creation groans and suffers together until now.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Not only this, but we ourselves also, who have the firstfruits of the Spirit, groan inwardly as we eagerly await our adoption, the redemption of our bodies.</VERS>\n\t\t\t<VERS vnumber=\"24\"> For in hope we were saved. Now hope that is seen is not hope, because who hopes for what he sees?</VERS>\n\t\t\t<VERS vnumber=\"25\"> But if we hope for what we do not see, we eagerly wait for it with endurance.</VERS>\n\t\t\t<VERS vnumber=\"26\"> In the same way, the Spirit helps us in our weakness, for we do not know how we should pray, but the Spirit himself intercedes for us with inexpressible groanings. </VERS>\n\t\t\t<VERS vnumber=\"27\"> And he who searches our hearts knows the mind of the Spirit, because the Spirit intercedes on behalf of the saints according to God's will. </VERS>\n\t\t\t<VERS vnumber=\"28\"> And we know that all things work together for good for those who love God, who are called according to his purpose, </VERS>\n\t\t\t<VERS vnumber=\"29\"> because those whom he foreknew he also predestined to be conformed to the image of his Son, that his Son would be the firstborn among many brothers and sisters.</VERS>\n\t\t\t<VERS vnumber=\"30\"> And those he predestined, he also called; and those he called, he also justified; and those he justified, he also glorified.</VERS>\n\t\t\t<VERS vnumber=\"31\"> What then shall we say about these things? If God is for us, who can be against us?</VERS>\n\t\t\t<VERS vnumber=\"32\"> Indeed, he who did not spare his own Son, but gave him up for us all, how will he not also, along with him, freely give us all things?</VERS>\n\t\t\t<VERS vnumber=\"33\"> Who will bring any charge against God's elect? It is God who justifies. </VERS>\n\t\t\t<VERS vnumber=\"34\"> Who is the one who will condemn? Christ is the one who died (and more than that, he was raised), who is at the right hand of God, and who also is interceding for us. </VERS>\n\t\t\t<VERS vnumber=\"35\"> Who will separate us from the love of Christ? Will trouble, or distress, or persecution, or famine, or nakedness, or danger, or sword?</VERS>\n\t\t\t<VERS vnumber=\"36\"> As it is written, \"For your sake we encounter death all day long; we were considered as sheep to be slaughtered.\"</VERS>\n\t\t\t<VERS vnumber=\"37\"> No, in all these things we have complete victory through him who loved us! </VERS>\n\t\t\t<VERS vnumber=\"38\"> For I am convinced that neither death, nor life, nor angels, nor heavenly rulers, nor things that are present, nor things to come, nor powers, </VERS>\n\t\t\t<VERS vnumber=\"39\"> nor height, nor depth, nor anything else in creation will be able to separate us from the love of God in Christ Jesus our Lord.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"9\">\n\t\t\t<VERS vnumber=\"1\">  I am telling the truth in Christ (I am not lying!), for my conscience assures me in the Holy Spirit,</VERS>\n\t\t\t<VERS vnumber=\"2\"> I have great sorrow and unceasing anguish in my heart.</VERS>\n\t\t\t<VERS vnumber=\"3\"> For I could wish that I myself were accursed, cut off from Christ, for the sake of my people, my fellow countrymen,</VERS>\n\t\t\t<VERS vnumber=\"4\"> who are Israelites. To them belong the adoption as sons, the glory, the covenants, the giving of the law, the temple worship, and the promises. </VERS>\n\t\t\t<VERS vnumber=\"5\"> To them belong the patriarchs, and from them, by human descent, came the Christ, who is God over all, blessed forever! Amen.</VERS>\n\t\t\t<VERS vnumber=\"6\"> It is not as though the word of God had failed. For not all those who are descended from Israel are truly Israel,</VERS>\n\t\t\t<VERS vnumber=\"7\"> nor are all the children Abraham's true descendants; rather \"through Isaac will your descendants be counted.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> This means it is not the children of the flesh who are the children of God; rather, the children of promise are counted as descendants. </VERS>\n\t\t\t<VERS vnumber=\"9\"> For this is what the promise declared: \"About a year from now I will return and Sarah will have a son.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> Not only that, but when Rebekah had conceived children by one man, our ancestor Isaac,</VERS>\n\t\t\t<VERS vnumber=\"11\"> even before they were born or had done anything good or bad (so that God's purpose in election would stand, not by works but by his calling),</VERS>\n\t\t\t<VERS vnumber=\"12\">  it was said to her, \"The older will serve the younger,\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> just as it is written: \"Jacob I loved, but Esau I hated.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> What shall we say then? Is there injustice with God? Absolutely not!</VERS>\n\t\t\t<VERS vnumber=\"15\"> For he says to Moses: \"I will have mercy on whom I have mercy, and I will have compassion on whom I have compassion.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> So then, it does not depend on human desire or exertion, but on God who shows mercy. </VERS>\n\t\t\t<VERS vnumber=\"17\"> For the scripture says to Pharaoh: \"For this very purpose I have raised you up, that I may demonstrate my power in you, and that my name may be proclaimed in all the earth.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> So then, God has mercy on whom he chooses to have mercy, and he hardens whom he chooses to harden.</VERS>\n\t\t\t<VERS vnumber=\"19\"> You will say to me then, \"Why does he still find fault? For who has ever resisted his will?\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> But who indeed are you, a mere human being, to talk back to God? Does what is molded say to the molder, \"Why have you made me like this?\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> Has the potter no right to make from the same lump of clay one vessel for special use and another for ordinary use?</VERS>\n\t\t\t<VERS vnumber=\"22\"> But what if God, willing to demonstrate his wrath and to make known his power, has endured with much patience the objects of wrath prepared for destruction?</VERS>\n\t\t\t<VERS vnumber=\"23\"> And what if he is willing to make known the wealth of his glory on the objects of mercy that he has prepared beforehand for glory,</VERS>\n\t\t\t<VERS vnumber=\"24\"> even us, whom he has called, not only from the Jews but also from the Gentiles?</VERS>\n\t\t\t<VERS vnumber=\"25\"> As he also says in Hosea: \"I will call those who were not my people, 'My people,' and I will call her who was unloved, 'My beloved.'\"</VERS>\n\t\t\t<VERS vnumber=\"26\"> \"And in the very place where it was said to them, 'You are not my people,' there they will be called 'sons of the living God.'\"</VERS>\n\t\t\t<VERS vnumber=\"27\"> And Isaiah cries out on behalf of Israel, \"Though the number of the children of Israel are as the sand of the sea, only the remnant will be saved, </VERS>\n\t\t\t<VERS vnumber=\"28\"> for the Lord will execute his sentence on the earth completely and quickly.\"</VERS>\n\t\t\t<VERS vnumber=\"29\"> Just as Isaiah predicted, \"If the Lord of armies had not left us descendants, we would have become like Sodom, and we would have resembled Gomorrah.\"</VERS>\n\t\t\t<VERS vnumber=\"30\"> What shall we say then?, that the Gentiles who did not pursue righteousness obtained it, that is, a righteousness that is by faith,</VERS>\n\t\t\t<VERS vnumber=\"31\"> but Israel even though pursuing a law of righteousness did not attain it.</VERS>\n\t\t\t<VERS vnumber=\"32\"> Why not? Because they pursued it not by faith but (as if it were possible) by works. They stumbled over the stumbling stone,</VERS>\n\t\t\t<VERS vnumber=\"33\"> just as it is written, \"Look, I am laying in Zion a stone that will cause people to stumble and a rock that will make them fall, yet the one who believes in him will not be put to shame.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"10\">\n\t\t\t<VERS vnumber=\"1\"> Brothers and sisters, my heart's desire and prayer to God on behalf of my fellow Israelites is for their salvation. </VERS>\n\t\t\t<VERS vnumber=\"2\"> For I can testify that they are zealous for God, but their zeal is not in line with the truth.</VERS>\n\t\t\t<VERS vnumber=\"3\"> For ignoring the righteousness that comes from God, and seeking instead to establish their own righteousness, they did not submit to God's righteousness.</VERS>\n\t\t\t<VERS vnumber=\"4\"> For Christ is the end of the law, with the result that there is righteousness for everyone who believes.</VERS>\n\t\t\t<VERS vnumber=\"5\"> For Moses writes about the righteousness that is by the law: \"The one who does these things will live by them.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> But the righteousness that is by faith says: \"Do not say in your heart, 'Who will ascend into heaven?'\" (that is, to bring Christ down) </VERS>\n\t\t\t<VERS vnumber=\"7\"> or \"Who will descend into the abyss?\" (that is, to bring Christ up from the dead). </VERS>\n\t\t\t<VERS vnumber=\"8\"> But what does it say? \"The word is near you, in your mouth and in your heart\" (that is, the word of faith that we preach), </VERS>\n\t\t\t<VERS vnumber=\"9\"> because if you confess with your mouth that Jesus is Lord and believe in your heart that God raised him from the dead, you will be saved. </VERS>\n\t\t\t<VERS vnumber=\"10\"> For with the heart one believes and thus has righteousness and with the mouth one confesses and thus has salvation.</VERS>\n\t\t\t<VERS vnumber=\"11\"> For the scripture says, \"Everyone who believes in him will not be put to shame.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> For there is no distinction between the Jew and the Greek, for the same Lord is Lord of all, who richly blesses all who call on him.</VERS>\n\t\t\t<VERS vnumber=\"13\"> For everyone who calls on the name of the Lord will be saved.</VERS>\n\t\t\t<VERS vnumber=\"14\"> How are they to call on one they have not believed in? And how are they to believe in one they have not heard of? And how are they to hear without someone preaching to them?</VERS>\n\t\t\t<VERS vnumber=\"15\"> And how are they to preach unless they are sent? As it is written, \"How timely is the arrival of those who proclaim the good news.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> But not all have obeyed the good news, for Isaiah says, \"Lord, who has believed our report?\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> Consequently faith comes from what is heard, and what is heard comes through the preached word of Christ.</VERS>\n\t\t\t<VERS vnumber=\"18\"> But I ask, have they not heard? Yes, they have: Their voice has gone out to all the earth, and their words to the ends of the world.</VERS>\n\t\t\t<VERS vnumber=\"19\"> But again I ask, didn't Israel understand? First Moses says, \"I will make you jealous by those who are not a nation; with a senseless nation I will provoke you to anger.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> And Isaiah is even bold enough to say, \"I was found by those who did not seek me; I became well known to those who did not ask for me.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> But about Israel he says, \"All day long I held out my hands to this disobedient and stubborn people!\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"11\">\n\t\t\t<VERS vnumber=\"1\"> So I ask, God has not rejected his people, has he? Absolutely not! For I too am an Israelite, a descendant of Abraham, from the tribe of Benjamin.</VERS>\n\t\t\t<VERS vnumber=\"2\"> God has not rejected his people whom he foreknew! Do you not know what the scripture says about Elijah, how he pleads with God against Israel?</VERS>\n\t\t\t<VERS vnumber=\"3\"> \"Lord, they have killed your prophets, they have demolished your altars; I alone am left and they are seeking my life!\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> But what was the divine response to him? \"I have kept for myself seven thousand people who have not bent the knee to Baal.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> So in the same way at the present time there is a remnant chosen by grace.</VERS>\n\t\t\t<VERS vnumber=\"6\"> And if it is by grace, it is no longer by works, otherwise grace would no longer be grace.</VERS>\n\t\t\t<VERS vnumber=\"7\"> What then? Israel failed to obtain what it was diligently seeking, but the elect obtained it. The rest were hardened, </VERS>\n\t\t\t<VERS vnumber=\"8\"> as it is written, \"God gave them a spirit of stupor, eyes that would not see and ears that would not hear, to this very day.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> And David says, \"Let their table become a snare and trap, a stumbling block and a retribution for them;</VERS>\n\t\t\t<VERS vnumber=\"10\"> let their eyes be darkened so that they may not see, and make their backs bend continually.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> I ask then, they did not stumble into an irrevocable fall, did they? Absolutely not! But by their transgression salvation has come to the Gentiles, to make Israel jealous.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Now if their transgression means riches for the world and their defeat means riches for the Gentiles, how much more will their full restoration bring?</VERS>\n\t\t\t<VERS vnumber=\"13\"> Now I am speaking to you Gentiles. Seeing that I am an apostle to the Gentiles, I magnify my ministry,</VERS>\n\t\t\t<VERS vnumber=\"14\"> if somehow I could provoke my people to jealousy and save some of them.</VERS>\n\t\t\t<VERS vnumber=\"15\"> For if their rejection is the reconciliation of the world, what will their acceptance be but life from the dead?</VERS>\n\t\t\t<VERS vnumber=\"16\"> If the first portion of the dough offered is holy, then the whole batch is holy, and if the root is holy, so too are the branches.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Now if some of the branches were broken off, and you, a wild olive shoot, were grafted in among them and participated in the richness of the olive root, </VERS>\n\t\t\t<VERS vnumber=\"18\"> do not boast over the branches. But if you boast, remember that you do not support the root, but the root supports you.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Then you will say, \"The branches were broken off so that I could be grafted in.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> Granted! They were broken off because of their unbelief, but you stand by faith. Do not be arrogant, but fear! </VERS>\n\t\t\t<VERS vnumber=\"21\"> For if God did not spare the natural branches, perhaps he will not spare you.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Notice therefore the kindness and harshness of God, harshness toward those who have fallen, but God's kindness toward you, provided you continue in his kindness; otherwise you also will be cut off.</VERS>\n\t\t\t<VERS vnumber=\"23\"> And even they, if they do not continue in their unbelief, will be grafted in, for God is able to graft them in again.</VERS>\n\t\t\t<VERS vnumber=\"24\"> For if you were cut off from what is by nature a wild olive tree, and grafted, contrary to nature, into a cultivated olive tree, how much more will these natural branches be grafted back into their own olive tree?</VERS>\n\t\t\t<VERS vnumber=\"25\"> For I do not want you to be ignorant of this mystery, brothers and sisters, so that you may not be conceited: A partial hardening has happened to Israel until the full number of the Gentiles has come in. </VERS>\n\t\t\t<VERS vnumber=\"26\"> And so all Israel will be saved, as it is written: \"The Deliverer will come out of Zion; he will remove ungodliness from Jacob.</VERS>\n\t\t\t<VERS vnumber=\"27\"> And this is my covenant with them, when I take away their sins.\"</VERS>\n\t\t\t<VERS vnumber=\"28\"> In regard to the gospel they are enemies for your sake, but in regard to election they are dearly loved for the sake of the fathers.</VERS>\n\t\t\t<VERS vnumber=\"29\"> For the gifts and the call of God are irrevocable.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Just as you were formerly disobedient to God, but have now received mercy due to their disobedience,</VERS>\n\t\t\t<VERS vnumber=\"31\"> so they too have now been disobedient in order that, by the mercy shown to you, they too may now receive mercy. </VERS>\n\t\t\t<VERS vnumber=\"32\"> For God has consigned all people to disobedience so that he may show mercy to them all.</VERS>\n\t\t\t<VERS vnumber=\"33\"> Oh, the depth of the riches and wisdom and knowledge of God! How unsearchable are his judgments and how fathomless his ways!</VERS>\n\t\t\t<VERS vnumber=\"34\"> For who has known the mind of the Lord, or who has been his counselor?</VERS>\n\t\t\t<VERS vnumber=\"35\"> Or who has first given to God, that God needs to repay him?</VERS>\n\t\t\t<VERS vnumber=\"36\"> For from him and through him and to him are all things. To him be glory forever! Amen.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"12\">\n\t\t\t<VERS vnumber=\"1\"> Therefore I exhort you, brothers and sisters, by the mercies of God, to present your bodies as a sacrifice, alive, holy, and pleasing to God, which is your reasonable service.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Do not be conformed to this present world, but be transformed by the renewing of your mind, so that you may test and approve what is the will of God, what is good and well-pleasing and perfect.</VERS>\n\t\t\t<VERS vnumber=\"3\"> For by the grace given to me I say to every one of you not to think more highly of yourself than you ought to think, but to think with sober discernment, as God has distributed to each of you a measure of faith.</VERS>\n\t\t\t<VERS vnumber=\"4\"> For just as in one body we have many members, and not all the members serve the same function,</VERS>\n\t\t\t<VERS vnumber=\"5\"> so we who are many are one body in Christ, and individually we are members who belong to one another.</VERS>\n\t\t\t<VERS vnumber=\"6\"> And we have different gifts according to the grace given to us. If the gift is prophecy, that individual must use it in proportion to his faith. </VERS>\n\t\t\t<VERS vnumber=\"7\"> If it is service, he must serve; if it is teaching, he must teach;</VERS>\n\t\t\t<VERS vnumber=\"8\"> if it is exhortation, he must exhort; if it is contributing, he must do so with sincerity; if it is leadership, he must do so with diligence; if it is showing mercy, he must do so with cheerfulness.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Love must be without hypocrisy. Abhor what is evil, cling to what is good. </VERS>\n\t\t\t<VERS vnumber=\"10\"> Be devoted to one another with mutual love, showing eagerness in honoring one another.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Do not lag in zeal, be enthusiastic in spirit, serve the Lord.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Rejoice in hope, endure in suffering, persist in prayer.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Contribute to the needs of the saints, pursue hospitality.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Bless those who persecute you, bless and do not curse.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Rejoice with those who rejoice, weep with those who weep.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Live in harmony with one another; do not be haughty but associate with the lowly. Do not be conceited.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Do not repay anyone evil for evil; consider what is good before all people.</VERS>\n\t\t\t<VERS vnumber=\"18\"> If possible, so far as it depends on you, live peaceably with all people.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Do not avenge yourselves, dear friends, but give place to God's wrath, for it is written, \"Vengeance is mine, I will repay,\" says the Lord. </VERS>\n\t\t\t<VERS vnumber=\"20\"> Rather, if your enemy is hungry, feed him; if he is thirsty, give him a drink; for in doing this you will be heaping burning coals on his head.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Do not be overcome by evil, but overcome evil with good.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"13\">\n\t\t\t<VERS vnumber=\"1\"> Let every person be subject to the governing authorities. For there is no authority except by God's appointment, and the authorities that exist have been instituted by God. </VERS>\n\t\t\t<VERS vnumber=\"2\"> So the person who resists such authority resists the ordinance of God, and those who resist will incur judgment </VERS>\n\t\t\t<VERS vnumber=\"3\"> (for rulers cause no fear for good conduct but for bad). Do you desire not to fear authority? Do good and you will receive its commendation,</VERS>\n\t\t\t<VERS vnumber=\"4\"> for it is God's servant for your good. But if you do wrong, be in fear, for it does not bear the sword in vain. It is God's servant to administer retribution on the wrongdoer.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Therefore it is necessary to be in subjection, not only because of the wrath of the authorities but also because of your conscience.</VERS>\n\t\t\t<VERS vnumber=\"6\"> For this reason you also pay taxes, for the authorities are God's servants devoted to governing.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Pay everyone what is owed: taxes to whom taxes are due, revenue to whom revenue is due, respect to whom respect is due, honor to whom honor is due.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Owe no one anything, except to love one another, for the one who loves his neighbor has fulfilled the law.</VERS>\n\t\t\t<VERS vnumber=\"9\"> For the commandments, \"Do not commit adultery, do not murder, do not steal, do not covet,\" (and if there is any other commandment) are summed up in this, \"Love your neighbor as yourself.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> Love does no wrong to a neighbor. Therefore love is the fulfillment of the law.</VERS>\n\t\t\t<VERS vnumber=\"11\"> And do this because we know the time, that it is already the hour for us to awake from sleep, for our salvation is now nearer than when we became believers. </VERS>\n\t\t\t<VERS vnumber=\"12\"> The night has advanced toward dawn; the day is near. So then we must lay aside the works of darkness, and put on the weapons of light.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Let us live decently as in the daytime, not in carousing and drunkenness, not in sexual immorality and sensuality, not in discord and jealousy.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Instead, put on the Lord Jesus Christ, and make no provision for the flesh to arouse its desires.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"14\">\n\t\t\t<VERS vnumber=\"1\"> Now receive the one who is weak in the faith, and do not have disputes over differing opinions.</VERS>\n\t\t\t<VERS vnumber=\"2\"> One person believes in eating everything, but the weak person eats only vegetables.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The one who eats everything must not despise the one who does not, and the one who abstains must not judge the one who eats everything, for God has accepted him.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Who are you to pass judgment on another's servant? Before his own master he stands or falls. And he will stand, for the Lord is able to make him stand.</VERS>\n\t\t\t<VERS vnumber=\"5\"> One person regards one day holier than other days, and another regards them all alike. Each must be fully convinced in his own mind. </VERS>\n\t\t\t<VERS vnumber=\"6\"> The one who observes the day does it for the Lord. The one who eats, eats for the Lord because he gives thanks to God, and the one who abstains from eating abstains for the Lord, and he gives thanks to God. </VERS>\n\t\t\t<VERS vnumber=\"7\"> For none of us lives for himself and none dies for himself.</VERS>\n\t\t\t<VERS vnumber=\"8\"> If we live, we live for the Lord; if we die, we die for the Lord. Therefore, whether we live or die, we are the Lord's.</VERS>\n\t\t\t<VERS vnumber=\"9\"> For this reason Christ died and returned to life, so that he may be the Lord of both the dead and the living.</VERS>\n\t\t\t<VERS vnumber=\"10\"> But you who eat vegetables only, why do you judge your brother or sister? And you who eat everything, why do you despise your brother or sister? For we will all stand before the judgment seat of God.</VERS>\n\t\t\t<VERS vnumber=\"11\"> For it is written, \"As I live, says the Lord, every knee will bow to me, and every tongue will give praise to God.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> Therefore, each of us will give an account of himself to God.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Therefore we must not pass judgment on one another, but rather determine never to place an obstacle or a trap before a brother or sister.</VERS>\n\t\t\t<VERS vnumber=\"14\"> I know and am convinced in the Lord Jesus that there is nothing unclean in itself; still, it is unclean to the one who considers it unclean.</VERS>\n\t\t\t<VERS vnumber=\"15\"> For if your brother or sister is distressed because of what you eat, you are no longer walking in love. Do not destroy by your food someone for whom Christ died. </VERS>\n\t\t\t<VERS vnumber=\"16\"> Therefore do not let what you consider good be spoken of as evil.</VERS>\n\t\t\t<VERS vnumber=\"17\"> For the kingdom of God does not consist of food and drink, but righteousness, peace, and joy in the Holy Spirit.</VERS>\n\t\t\t<VERS vnumber=\"18\"> For the one who serves Christ in this way is pleasing to God and approved by people.</VERS>\n\t\t\t<VERS vnumber=\"19\"> So then, let us pursue what makes for peace and for building up one another.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Do not destroy the work of God for the sake of food. For although all things are clean, it is wrong to cause anyone to stumble by what you eat. </VERS>\n\t\t\t<VERS vnumber=\"21\"> It is good not to eat meat or drink wine or to do anything that causes your brother to stumble.</VERS>\n\t\t\t<VERS vnumber=\"22\"> The faith you have, keep to yourself before God. Blessed is the one who does not judge himself by what he approves. </VERS>\n\t\t\t<VERS vnumber=\"23\"> But the man who doubts is condemned if he eats, because he does not do so from faith, and whatever is not from faith is sin.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"15\">\n\t\t\t<VERS vnumber=\"1\"> But we who are strong ought to bear with the failings of the weak, and not just please ourselves.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Let each of us please his neighbor for his good to build him up.</VERS>\n\t\t\t<VERS vnumber=\"3\"> For even Christ did not please himself, but just as it is written, \"The insults of those who insult you have fallen on me.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> For everything that was written in former times was written for our instruction, so that through endurance and through encouragement of the scriptures we may have hope.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Now may the God of endurance and comfort give you unity with one another in accordance with Christ Jesus, </VERS>\n\t\t\t<VERS vnumber=\"6\"> so that together you may with one voice glorify the God and Father of our Lord Jesus Christ.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Receive one another, then, just as Christ also received you, to God's glory.</VERS>\n\t\t\t<VERS vnumber=\"8\"> For I tell you that Christ has become a servant of the circumcised on behalf of God's truth to confirm the promises made to the fathers,</VERS>\n\t\t\t<VERS vnumber=\"9\"> and thus the Gentiles glorify God for his mercy. As it is written, \"Because of this I will confess you among the Gentiles, and I will sing praises to your name.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> And again it says: \"Rejoice, O Gentiles, with his people.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> And again, \"Praise the Lord all you Gentiles, and let all the peoples praise him.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> And again Isaiah says, \"The root of Jesse will come, and the one who rises to rule over the Gentiles, in him will the Gentiles hope.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> Now may the God of hope fill you with all joy and peace as you believe in him, so that you may abound in hope by the power of the Holy Spirit.</VERS>\n\t\t\t<VERS vnumber=\"14\"> But I myself am fully convinced about you, my brothers and sisters, that you yourselves are full of goodness, filled with all knowledge, and able to instruct one another. </VERS>\n\t\t\t<VERS vnumber=\"15\"> But I have written more boldly to you on some points so as to remind you, because of the grace given to me by God</VERS>\n\t\t\t<VERS vnumber=\"16\"> to be a minister of Christ Jesus to the Gentiles. I serve the gospel of God like a priest, so that the Gentiles may become an acceptable offering, sanctified by the Holy Spirit.</VERS>\n\t\t\t<VERS vnumber=\"17\"> So I boast in Christ Jesus about the things that pertain to God. </VERS>\n\t\t\t<VERS vnumber=\"18\"> For I will not dare to speak of anything except what Christ has accomplished through me in order to bring about the obedience of the Gentiles, by word and deed, </VERS>\n\t\t\t<VERS vnumber=\"19\"> in the power of signs and wonders, in the power of the Spirit of God. So from Jerusalem even as far as Illyricum I have fully preached the gospel of Christ.</VERS>\n\t\t\t<VERS vnumber=\"20\"> And in this way I desire to preach where Christ has not been named, so as not to build on another person's foundation,</VERS>\n\t\t\t<VERS vnumber=\"21\"> but as it is written: \"Those who were not told about him will see, and those who have not heard will understand.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> This is the reason I was often hindered from coming to you.</VERS>\n\t\t\t<VERS vnumber=\"23\"> But now there is nothing more to keep me in these regions, and I have for many years desired to come to you </VERS>\n\t\t\t<VERS vnumber=\"24\"> when I go to Spain. For I hope to visit you when I pass through and that you will help me on my journey there, after I have enjoyed your company for a while.</VERS>\n\t\t\t<VERS vnumber=\"25\"> But now I go to Jerusalem to minister to the saints.</VERS>\n\t\t\t<VERS vnumber=\"26\"> For Macedonia and Achaia are pleased to make some contribution for the poor among the saints in Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"27\"> For they were pleased to do this, and indeed they are indebted to the Jerusalem saints. For if the Gentiles have shared in their spiritual things, they are obligated also to minister to them in material things.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Therefore after I have completed this and have safely delivered this bounty to them, I will set out for Spain by way of you, </VERS>\n\t\t\t<VERS vnumber=\"29\"> and I know that when I come to you I will come in the fullness of Christ's blessing.</VERS>\n\t\t\t<VERS vnumber=\"30\"> Now I urge you, brothers and sisters, through our Lord Jesus Christ and through the love of the Spirit, to join fervently with me in prayer to God on my behalf. </VERS>\n\t\t\t<VERS vnumber=\"31\"> Pray that I may be rescued from those who are disobedient in Judea and that my ministry in Jerusalem may be acceptable to the saints, </VERS>\n\t\t\t<VERS vnumber=\"32\"> so that by God's will I may come to you with joy and be refreshed in your company.</VERS>\n\t\t\t<VERS vnumber=\"33\"> Now may the God of peace be with all of you. Amen.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"16\">\n\t\t\t<VERS vnumber=\"1\"> Now I commend to you our sister Phoebe, who is a servant of the church in Cenchrea, </VERS>\n\t\t\t<VERS vnumber=\"2\"> so that you may welcome her in the Lord in a way worthy of the saints and provide her with whatever help she may need from you, for she has been a great help to many, including me.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Greet Prisca and Aquila, my fellow workers in Christ Jesus, </VERS>\n\t\t\t<VERS vnumber=\"4\"> who risked their own necks for my life. Not only I, but all the churches of the Gentiles are grateful to them.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Also greet the church in their house. Greet my dear friend Epenetus, who was the first convert to Christ in the province of Asia.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Greet Mary, who has worked very hard for you.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Greet Andronicus and Junia, my compatriots and my fellow prisoners. They are well known to the apostles, and they were in Christ before me. </VERS>\n\t\t\t<VERS vnumber=\"8\"> Greet Ampliatus, my dear friend in the Lord.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Greet Urbanus, our fellow worker in Christ, and my good friend Stachys.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Greet Apelles, who is approved in Christ. Greet those who belong to the household of Aristobulus.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Greet Herodion, my compatriot. Greet those in the household of Narcissus who are in the Lord. </VERS>\n\t\t\t<VERS vnumber=\"12\"> Greet Tryphena and Tryphosa, laborers in the Lord. Greet my dear friend Persis, who has worked hard in the Lord. </VERS>\n\t\t\t<VERS vnumber=\"13\"> Greet Rufus, chosen in the Lord, and his mother who was also a mother to me.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Greet Asyncritus, Phlegon, Hermes, Patrobas, Hermas, and the brothers and sisters with them. </VERS>\n\t\t\t<VERS vnumber=\"15\"> Greet Philologus and Julia, Nereus and his sister, and Olympas, and all the believers who are with them. </VERS>\n\t\t\t<VERS vnumber=\"16\"> Greet one another with a holy kiss. All the churches of Christ greet you.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Now I urge you, brothers and sisters, to watch out for those who create dissensions and obstacles contrary to the teaching that you learned. Avoid them! </VERS>\n\t\t\t<VERS vnumber=\"18\"> For these are the kind who do not serve our Lord Christ, but their own appetites. By their smooth talk and flattery they deceive the minds of the naive. </VERS>\n\t\t\t<VERS vnumber=\"19\"> Your obedience is known to all and thus I rejoice over you. But I want you to be wise in what is good and innocent in what is evil.</VERS>\n\t\t\t<VERS vnumber=\"20\"> The God of peace will quickly crush Satan under your feet. The grace of our Lord Jesus be with you.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Timothy, my fellow worker, greets you; so do Lucius, Jason, and Sosipater, my compatriots.</VERS>\n\t\t\t<VERS vnumber=\"22\"> I, Tertius, who am writing this letter, greet you in the Lord.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Gaius, who is host to me and to the whole church, greets you. Erastus the city treasurer and our brother Quartus greet you.</VERS>\n\t\t\t<VERS vnumber=\"24\"> </VERS>\n\t\t\t<VERS vnumber=\"25\">  Now to him who is able to strengthen you according to my gospel and the proclamation of Jesus Christ, according to the revelation of the mystery that had been kept secret for long ages, </VERS>\n\t\t\t<VERS vnumber=\"26\"> but now is disclosed, and through the prophetic scriptures has been made known to all the nations, according to the command of the eternal God, to bring about the obedience of faith,</VERS>\n\t\t\t<VERS vnumber=\"27\"> to the only wise God, through Jesus Christ, be glory forever! Amen.</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"46\" bname=\"1 Corinthians\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> From Paul, called to be an apostle of Christ Jesus by the will of God, and Sosthenes, our brother, </VERS>\n\t\t\t<VERS vnumber=\"2\"> to the church of God that is in Corinth, to those who are sanctified in Christ Jesus, and called to be saints, with all those in every place who call on the name of our Lord Jesus Christ, their Lord and ours.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Grace and peace to you from God our Father and the Lord Jesus Christ!</VERS>\n\t\t\t<VERS vnumber=\"4\"> I always thank my God for you because of the grace of God that was given to you in Christ Jesus.</VERS>\n\t\t\t<VERS vnumber=\"5\"> For you were made rich in every way in him, in all your speech and in every kind of knowledge,</VERS>\n\t\t\t<VERS vnumber=\"6\"> just as the testimony about Christ has been confirmed among you,</VERS>\n\t\t\t<VERS vnumber=\"7\"> so that you do not lack any spiritual gift as you wait for the revelation of our Lord Jesus Christ. </VERS>\n\t\t\t<VERS vnumber=\"8\"> He will also strengthen you to the end, so that you will be blameless on the day of our Lord Jesus Christ. </VERS>\n\t\t\t<VERS vnumber=\"9\"> God is faithful, by whom you were called into fellowship with his son, Jesus Christ our Lord.</VERS>\n\t\t\t<VERS vnumber=\"10\"> I urge you, brothers and sisters, by the name of our Lord Jesus Christ, to agree together, to end your divisions, and to be united by the same mind and purpose.</VERS>\n\t\t\t<VERS vnumber=\"11\"> For members of Chloe's household have made it clear to me, my brothers and sisters, that there are quarrels among you. </VERS>\n\t\t\t<VERS vnumber=\"12\"> Now I mean this, that each of you is saying, \"I am with Paul,\" or \"I am with Apollos,\" or \"I am with Cephas,\" or \"I am with Christ.\" </VERS>\n\t\t\t<VERS vnumber=\"13\"> Is Christ divided? Paul wasn't crucified for you, was he? Or were you in fact baptized in the name of Paul?</VERS>\n\t\t\t<VERS vnumber=\"14\"> I thank God that I did not baptize any of you except Crispus and Gaius, </VERS>\n\t\t\t<VERS vnumber=\"15\"> so that no one can say that you were baptized in my name!</VERS>\n\t\t\t<VERS vnumber=\"16\"> (I also baptized the household of Stephanus. Otherwise, I do not remember whether I baptized anyone else.)</VERS>\n\t\t\t<VERS vnumber=\"17\"> For Christ did not send me to baptize, but to preach the gospel, and not with clever speech, so that the cross of Christ would not become useless.</VERS>\n\t\t\t<VERS vnumber=\"18\"> For the message about the cross is foolishness to those who are perishing, but to us who are being saved it is the power of God.</VERS>\n\t\t\t<VERS vnumber=\"19\"> For it is written, \"I will destroy the wisdom of the wise, and I will thwart the cleverness of the intelligent.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> Where is the wise man? Where is the expert in the Mosaic law? Where is the debater of this age? Has God not made the wisdom of the world foolish?</VERS>\n\t\t\t<VERS vnumber=\"21\"> For since in the wisdom of God the world by its wisdom did not know God, God was pleased to save those who believe by the foolishness of preaching.</VERS>\n\t\t\t<VERS vnumber=\"22\"> For Jews demand miraculous signs and Greeks ask for wisdom,</VERS>\n\t\t\t<VERS vnumber=\"23\"> but we preach about a crucified Christ, a stumbling block to Jews and foolishness to Gentiles. </VERS>\n\t\t\t<VERS vnumber=\"24\"> But to those who are called, both Jews and Greeks, Christ is the power of God and the wisdom of God.</VERS>\n\t\t\t<VERS vnumber=\"25\"> For the foolishness of God is wiser than human wisdom, and the weakness of God is stronger than human strength.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Think about the circumstances of your call, brothers and sisters. Not many were wise by human standards, not many were powerful, not many were born to a privileged position.</VERS>\n\t\t\t<VERS vnumber=\"27\"> But God chose what the world thinks foolish to shame the wise, and God chose what the world thinks weak to shame the strong.</VERS>\n\t\t\t<VERS vnumber=\"28\"> God chose what is low and despised in the world, what is regarded as nothing, to set aside what is regarded as something,</VERS>\n\t\t\t<VERS vnumber=\"29\"> so that no one can boast in his presence.</VERS>\n\t\t\t<VERS vnumber=\"30\"> He is the reason you have a relationship with Christ Jesus, who became for us wisdom from God, and righteousness and sanctification and redemption, </VERS>\n\t\t\t<VERS vnumber=\"31\"> so that, as it is written, \"Let the one who boasts, boast in the Lord.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> When I came to you, brothers and sisters, I did not come with superior eloquence or wisdom as I proclaimed the testimony of God. </VERS>\n\t\t\t<VERS vnumber=\"2\"> For I decided to be concerned about nothing among you except Jesus Christ, and him crucified. </VERS>\n\t\t\t<VERS vnumber=\"3\"> And I was with you in weakness and in fear and with much trembling.</VERS>\n\t\t\t<VERS vnumber=\"4\"> My conversation and my preaching were not with persuasive words of wisdom, but with a demonstration of the Spirit and of power,</VERS>\n\t\t\t<VERS vnumber=\"5\"> so that your faith would not be based on human wisdom but on the power of God.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Now we do speak wisdom among the mature, but not a wisdom of this age or of the rulers of this age, who are perishing. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Instead we speak the wisdom of God, hidden in a mystery, that God determined before the ages for our glory.</VERS>\n\t\t\t<VERS vnumber=\"8\"> None of the rulers of this age understood it. If they had known it, they would not have crucified the Lord of glory.</VERS>\n\t\t\t<VERS vnumber=\"9\"> But just as it is written, \"Things that no eye has seen, or ear heard, or mind imagined, are the things God has prepared for those who love him.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> God has revealed these to us by the Spirit. For the Spirit searches all things, even the deep things of God.</VERS>\n\t\t\t<VERS vnumber=\"11\"> For who among men knows the things of a man except the man's spirit within him? So too, no one knows the things of God except the Spirit of God.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Now we have not received the spirit of the world, but the Spirit who is from God, so that we may know the things that are freely given to us by God.</VERS>\n\t\t\t<VERS vnumber=\"13\"> And we speak about these things, not with words taught us by human wisdom, but with those taught by the Spirit, explaining spiritual things to spiritual people.</VERS>\n\t\t\t<VERS vnumber=\"14\"> The unbeliever does not receive the things of the Spirit of God, for they are foolishness to him. And he cannot understand them, because they are spiritually discerned. </VERS>\n\t\t\t<VERS vnumber=\"15\"> The one who is spiritual discerns all things, yet he himself is understood by no one. </VERS>\n\t\t\t<VERS vnumber=\"16\"> For who has known the mind of the Lord, so as to advise him? But we have the mind of Christ.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> So, brothers and sisters, I could not speak to you as spiritual people, but instead as people of the flesh, as infants in Christ. </VERS>\n\t\t\t<VERS vnumber=\"2\"> I fed you milk, not solid food, for you were not yet ready. In fact, you are still not ready, </VERS>\n\t\t\t<VERS vnumber=\"3\"> for you are still influenced by the flesh. For since there is still jealousy and dissension among you, are you not influenced by the flesh and behaving like unregenerate people?</VERS>\n\t\t\t<VERS vnumber=\"4\"> For whenever someone says, \"I am with Paul,\" or \"I am with Apollos,\" are you not merely human?</VERS>\n\t\t\t<VERS vnumber=\"5\"> What is Apollos, really? Or what is Paul? Servants through whom you came to believe, and each of us in the ministry the Lord gave us.</VERS>\n\t\t\t<VERS vnumber=\"6\"> I planted, Apollos watered, but God caused it to grow. </VERS>\n\t\t\t<VERS vnumber=\"7\"> So neither the one who plants counts for anything, nor the one who waters, but God who causes the growth. </VERS>\n\t\t\t<VERS vnumber=\"8\"> The one who plants and the one who waters work as one, but each will receive his reward according to his work. </VERS>\n\t\t\t<VERS vnumber=\"9\"> We are coworkers belonging to God. You are God's field, God's building. </VERS>\n\t\t\t<VERS vnumber=\"10\"> According to the grace of God given to me, like a skilled master-builder I laid a foundation, but someone else builds on it. And each one must be careful how he builds.</VERS>\n\t\t\t<VERS vnumber=\"11\"> For no one can lay any foundation other than what is being laid, which is Jesus Christ.</VERS>\n\t\t\t<VERS vnumber=\"12\"> If anyone builds on the foundation with gold, silver, precious stones, wood, hay, or straw,</VERS>\n\t\t\t<VERS vnumber=\"13\"> each builder's work will be plainly seen, for the Day will make it clear, because it will be revealed by fire. And the fire will test what kind of work each has done.</VERS>\n\t\t\t<VERS vnumber=\"14\"> If what someone has built survives, he will receive a reward.</VERS>\n\t\t\t<VERS vnumber=\"15\"> If someone's work is burned up, he will suffer loss. He himself will be saved, but only as through fire.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Do you not know that you are God's temple and that God's Spirit lives in you? </VERS>\n\t\t\t<VERS vnumber=\"17\"> If someone destroys God's temple, God will destroy him. For God's temple is holy, which is what you are.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Guard against self-deception, each of you. If someone among you thinks he is wise in this age, let him become foolish so that he can become wise. </VERS>\n\t\t\t<VERS vnumber=\"19\"> For the wisdom of this age is foolishness with God. As it is written, \"He catches the wise in their craftiness.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> And again, \"The Lord knows that the thoughts of the wise are futile.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> So then, no more boasting about mere mortals! For everything belongs to you, </VERS>\n\t\t\t<VERS vnumber=\"22\"> whether Paul or Apollos or Cephas or the world or life or death or the present or the future. Everything belongs to you,</VERS>\n\t\t\t<VERS vnumber=\"23\"> and you belong to Christ, and Christ belongs to God.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\"> One should think about us this way, as servants of Christ and stewards of the mysteries of God.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Now what is sought in stewards is that one be found faithful.</VERS>\n\t\t\t<VERS vnumber=\"3\"> So for me, it is a minor matter that I am judged by you or by any human court. In fact, I do not even judge myself.</VERS>\n\t\t\t<VERS vnumber=\"4\"> For I am not aware of anything against myself, but I am not acquitted because of this. The one who judges me is the Lord.</VERS>\n\t\t\t<VERS vnumber=\"5\"> So then, do not judge anything before the time. Wait until the Lord comes. He will bring to light the hidden things of darkness and reveal the motives of hearts. Then each will receive recognition from God.</VERS>\n\t\t\t<VERS vnumber=\"6\"> I have applied these things to myself and Apollos because of you, brothers and sisters, so that through us you may learn \"not to go beyond what is written,\" so that none of you will be puffed up in favor of the one against the other.</VERS>\n\t\t\t<VERS vnumber=\"7\"> For who concedes you any superiority? What do you have that you did not receive? And if you received it, why do you boast as though you did not?</VERS>\n\t\t\t<VERS vnumber=\"8\"> Already you are satisfied! Already you are rich! You have become kings without us! I wish you had become kings so that we could reign with you!</VERS>\n\t\t\t<VERS vnumber=\"9\"> For, I think, God has exhibited us apostles last of all, as men condemned to die, because we have become a spectacle to the world, both to angels and to people.</VERS>\n\t\t\t<VERS vnumber=\"10\"> We are fools for Christ, but you are wise in Christ! We are weak, but you are strong! You are distinguished, we are dishonored!</VERS>\n\t\t\t<VERS vnumber=\"11\"> To the present hour we are hungry and thirsty, poorly clothed, brutally treated, and without a roof over our heads.</VERS>\n\t\t\t<VERS vnumber=\"12\"> We do hard work, toiling with our own hands. When we are verbally abused, we respond with a blessing, when persecuted, we endure,</VERS>\n\t\t\t<VERS vnumber=\"13\"> when people lie about us, we answer in a friendly manner. We are the world's dirt and scum, even now.</VERS>\n\t\t\t<VERS vnumber=\"14\"> I am not writing these things to shame you, but to correct you as my dear children.</VERS>\n\t\t\t<VERS vnumber=\"15\"> For though you may have ten thousand guardians in Christ, you do not have many fathers, because I became your father in Christ Jesus through the gospel.</VERS>\n\t\t\t<VERS vnumber=\"16\"> I encourage you, then, be imitators of me.</VERS>\n\t\t\t<VERS vnumber=\"17\"> For this reason, I have sent Timothy to you, who is my dear and faithful son in the Lord. He will remind you of my ways in Christ, as I teach them everywhere in every church. </VERS>\n\t\t\t<VERS vnumber=\"18\"> Some have become arrogant, as if I were not coming to you. </VERS>\n\t\t\t<VERS vnumber=\"19\"> But I will come to you soon, if the Lord is willing, and I will find out not only the talk of these arrogant people, but also their power.</VERS>\n\t\t\t<VERS vnumber=\"20\"> For the kingdom of God is demonstrated not in idle talk but with power.</VERS>\n\t\t\t<VERS vnumber=\"21\"> What do you want? Shall I come to you with a rod of discipline or with love and a spirit of gentleness?</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"5\">\n\t\t\t<VERS vnumber=\"1\"> It is actually reported that sexual immorality exists among you, the kind of immorality that is not permitted even among the Gentiles, so that someone is cohabiting with his father's wife. </VERS>\n\t\t\t<VERS vnumber=\"2\"> And you are proud! Shouldn't you have been deeply sorrowful instead and removed the one who did this from among you? </VERS>\n\t\t\t<VERS vnumber=\"3\"> For even though I am absent physically, I am present in spirit. And I have already judged the one who did this, just as though I were present.</VERS>\n\t\t\t<VERS vnumber=\"4\"> When you gather together in the name of our Lord Jesus, and I am with you in spirit, along with the power of our Lord Jesus, </VERS>\n\t\t\t<VERS vnumber=\"5\"> turn this man over to Satan for the destruction of the flesh, so that his spirit may be saved in the day of the Lord.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Your boasting is not good. Don't you know that a little yeast affects the whole batch of dough? </VERS>\n\t\t\t<VERS vnumber=\"7\"> Clean out the old yeast so that you may be a new batch of dough, you are, in fact, without yeast. For Christ, our Passover lamb, has been sacrificed.</VERS>\n\t\t\t<VERS vnumber=\"8\"> So then, let us celebrate the festival, not with the old yeast, the yeast of vice and evil, but with the bread without yeast, the bread of sincerity and truth.</VERS>\n\t\t\t<VERS vnumber=\"9\"> I wrote you in my letter not to associate with sexually immoral people.</VERS>\n\t\t\t<VERS vnumber=\"10\"> In no way did I mean the immoral people of this world, or the greedy and swindlers and idolaters, since you would then have to go out of the world.</VERS>\n\t\t\t<VERS vnumber=\"11\"> But now I am writing to you not to associate with anyone who calls himself a Christian who is sexually immoral, or greedy, or an idolater, or verbally abusive, or a drunkard, or a swindler. Do not even eat with such a person. </VERS>\n\t\t\t<VERS vnumber=\"12\"> For what do I have to do with judging those outside? Are you not to judge those inside?</VERS>\n\t\t\t<VERS vnumber=\"13\"> But God will judge those outside. Remove the evil person from among you.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"6\">\n\t\t\t<VERS vnumber=\"1\"> When any of you has a legal dispute with another, does he dare go to court before the unrighteous rather than before the saints?</VERS>\n\t\t\t<VERS vnumber=\"2\"> Or do you not know that the saints will judge the world? And if the world is to be judged by you, are you not competent to settle trivial suits?</VERS>\n\t\t\t<VERS vnumber=\"3\"> Do you not know that we will judge angels? Why not ordinary matters!</VERS>\n\t\t\t<VERS vnumber=\"4\"> So if you have ordinary lawsuits, do you appoint as judges those who have no standing in the church?</VERS>\n\t\t\t<VERS vnumber=\"5\"> I say this to your shame! Is there no one among you wise enough to settle disputes between fellow Christians?</VERS>\n\t\t\t<VERS vnumber=\"6\"> Instead, does a Christian sue a Christian, and do this before unbelievers? </VERS>\n\t\t\t<VERS vnumber=\"7\"> The fact that you have lawsuits among yourselves demonstrates that you have already been defeated. Why not rather be wronged? Why not rather be cheated?</VERS>\n\t\t\t<VERS vnumber=\"8\"> But you yourselves wrong and cheat, and you do this to your brothers and sisters!</VERS>\n\t\t\t<VERS vnumber=\"9\"> Do you not know that the unrighteous will not inherit the kingdom of God? Do not be deceived! The sexually immoral, idolaters, adulterers, passive homosexual partners, practicing homosexuals,</VERS>\n\t\t\t<VERS vnumber=\"10\"> thieves, the greedy, drunkards, the verbally abusive, and swindlers will not inherit the kingdom of God. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Some of you once lived this way. But you were washed, you were sanctified, you were justified in the name of the Lord Jesus Christ and by the Spirit of our God.</VERS>\n\t\t\t<VERS vnumber=\"12\"> \"All things are lawful for me\", but not everything is beneficial. \"All things are lawful for me\", but I will not be controlled by anything.</VERS>\n\t\t\t<VERS vnumber=\"13\"> \"Food is for the stomach and the stomach is for food, but God will do away with both.\" The body is not for sexual immorality, but for the Lord, and the Lord for the body. </VERS>\n\t\t\t<VERS vnumber=\"14\"> Now God indeed raised the Lord and he will raise us by his power.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Do you not know that your bodies are members of Christ? Should I take the members of Christ and make them members of a prostitute? Never!</VERS>\n\t\t\t<VERS vnumber=\"16\"> Or do you not know that anyone who is united with a prostitute is one body with her? For it is said, \"The two will become one flesh.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> But the one united with the Lord is one spirit with him.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Flee sexual immorality! \"Every sin a person commits is outside of the body\", but the immoral person sins against his own body.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Or do you not know that your body is the temple of the Holy Spirit who is in you, whom you have from God, and you are not your own?</VERS>\n\t\t\t<VERS vnumber=\"20\"> For you were bought at a price. Therefore glorify God with your body.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"7\">\n\t\t\t<VERS vnumber=\"1\"> Now with regard to the issues you wrote about: \"It is good for a man not to have sexual relations with a woman.\"</VERS>\n\t\t\t<VERS vnumber=\"2\"> But because of immoralities, each man should have relations with his own wife and each woman with her own husband. </VERS>\n\t\t\t<VERS vnumber=\"3\"> A husband should give to his wife her sexual rights, and likewise a wife to her husband. </VERS>\n\t\t\t<VERS vnumber=\"4\"> It is not the wife who has the rights to her own body, but the husband. In the same way, it is not the husband who has the rights to his own body, but the wife.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Do not deprive each other, except by mutual agreement for a specified time, so that you may devote yourselves to prayer. Then resume your relationship, so that Satan may not tempt you because of your lack of self-control. </VERS>\n\t\t\t<VERS vnumber=\"6\"> I say this as a concession, not as a command.</VERS>\n\t\t\t<VERS vnumber=\"7\"> I wish that everyone was as I am. But each has his own gift from God, one this way, another that.</VERS>\n\t\t\t<VERS vnumber=\"8\"> To the unmarried and widows I say that it is best for them to remain as I am.</VERS>\n\t\t\t<VERS vnumber=\"9\"> But if they do not have self-control, let them get married. For it is better to marry than to burn with sexual desire.</VERS>\n\t\t\t<VERS vnumber=\"10\"> To the married I give this command, not I, but the Lord, a wife should not divorce a husband</VERS>\n\t\t\t<VERS vnumber=\"11\"> (but if she does, let her remain unmarried, or be reconciled to her husband), and a husband should not divorce his wife.</VERS>\n\t\t\t<VERS vnumber=\"12\"> To the rest I say, I, not the Lord, if a brother has a wife who is not a believer and she is happy to live with him, he should not divorce her.</VERS>\n\t\t\t<VERS vnumber=\"13\"> And if a woman has a husband who is not a believer and he is happy to live with her, she should not divorce him.</VERS>\n\t\t\t<VERS vnumber=\"14\"> For the unbelieving husband is sanctified because of the wife, and the unbelieving wife because of her husband. Otherwise your children are unclean, but now they are holy. </VERS>\n\t\t\t<VERS vnumber=\"15\"> But if the unbeliever wants a divorce, let it take place. In these circumstances the brother or sister is not bound. God has called you in peace.</VERS>\n\t\t\t<VERS vnumber=\"16\"> For how do you know, wife, whether you will bring your husband to salvation? Or how do you know, husband, whether you will bring your wife to salvation?</VERS>\n\t\t\t<VERS vnumber=\"17\"> Nevertheless, as the Lord has assigned to each one, as God has called each person, so must he live. I give this sort of direction in all the churches.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Was anyone called after he had been circumcised? He should not try to undo his circumcision. Was anyone called who is uncircumcised? He should not get circumcised. </VERS>\n\t\t\t<VERS vnumber=\"19\"> Circumcision is nothing and uncircumcision is nothing. Instead, keeping God's commandments is what counts.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Let each one remain in that situation in life in which he was called. </VERS>\n\t\t\t<VERS vnumber=\"21\"> Were you called as a slave? Do not worry about it. But if indeed you are able to be free, make the most of the opportunity. </VERS>\n\t\t\t<VERS vnumber=\"22\"> For the one who was called in the Lord as a slave is the Lord's freedman. In the same way, the one who was called as a free person is Christ's slave.</VERS>\n\t\t\t<VERS vnumber=\"23\"> You were bought with a price. Do not become slaves of men.</VERS>\n\t\t\t<VERS vnumber=\"24\"> In whatever situation someone was called, brothers and sisters, let him remain in it with God.</VERS>\n\t\t\t<VERS vnumber=\"25\"> With regard to the question about people who have never married, I have no command from the Lord, but I give my opinion as one shown mercy by the Lord to be trustworthy. </VERS>\n\t\t\t<VERS vnumber=\"26\"> Because of the impending crisis I think it best for you to remain as you are.</VERS>\n\t\t\t<VERS vnumber=\"27\"> The one bound to a wife should not seek divorce. The one released from a wife should not seek marriage.</VERS>\n\t\t\t<VERS vnumber=\"28\"> But if you marry, you have not sinned. And if a virgin marries, she has not sinned. But those who marry will face difficult circumstances, and I am trying to spare you such problems.</VERS>\n\t\t\t<VERS vnumber=\"29\"> And I say this, brothers and sisters: The time is short. So then those who have wives should be as those who have none, </VERS>\n\t\t\t<VERS vnumber=\"30\"> those with tears like those not weeping, those who rejoice like those not rejoicing, those who buy like those without possessions,</VERS>\n\t\t\t<VERS vnumber=\"31\"> those who use the world as though they were not using it to the full. For the present shape of this world is passing away.</VERS>\n\t\t\t<VERS vnumber=\"32\"> And I want you to be free from concern. An unmarried man is concerned about the things of the Lord, how to please the Lord.</VERS>\n\t\t\t<VERS vnumber=\"33\"> But a married man is concerned about the things of the world, how to please his wife,</VERS>\n\t\t\t<VERS vnumber=\"34\"> and he is divided. An unmarried woman or a virgin is concerned about the things of the Lord, to be holy both in body and spirit. But a married woman is concerned about the things of the world, how to please her husband. </VERS>\n\t\t\t<VERS vnumber=\"35\"> I am saying this for your benefit, not to place a limitation on you, but so that without distraction you may give notable and constant service to the Lord.</VERS>\n\t\t\t<VERS vnumber=\"36\"> If anyone thinks he is acting inappropriately toward his virgin, if she is past the bloom of youth and it seems necessary, he should do what he wishes; he does not sin. Let them marry. </VERS>\n\t\t\t<VERS vnumber=\"37\"> But the man who is firm in his commitment, and is under no necessity but has control over his will, and has decided in his own mind to keep his own virgin, does well.</VERS>\n\t\t\t<VERS vnumber=\"38\"> So then, the one who marries his own virgin does well, but the one who does not, does better.</VERS>\n\t\t\t<VERS vnumber=\"39\"> A wife is bound as long as her husband is living. But if her husband dies, she is free to marry anyone she wishes (only someone in the Lord). </VERS>\n\t\t\t<VERS vnumber=\"40\"> But in my opinion, she will be happier if she remains as she is, and I think that I too have the Spirit of God!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"8\">\n\t\t\t<VERS vnumber=\"1\"> With regard to food sacrificed to idols, we know that \"we all have knowledge.\" Knowledge puffs up, but love builds up. </VERS>\n\t\t\t<VERS vnumber=\"2\"> If someone thinks he knows something, he does not yet know to the degree that he needs to know.</VERS>\n\t\t\t<VERS vnumber=\"3\"> But if someone loves God, he is known by God.</VERS>\n\t\t\t<VERS vnumber=\"4\"> With regard then to eating food sacrificed to idols, we know that \"an idol in this world is nothing,\" and that \"there is no God but one.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> If after all there are so-called gods, whether in heaven or on earth (as there are many gods and many lords),</VERS>\n\t\t\t<VERS vnumber=\"6\"> yet for us there is one God, the Father, from whom are all things and for whom we live, and one Lord, Jesus Christ, through whom are all things and through whom we live.</VERS>\n\t\t\t<VERS vnumber=\"7\"> But this knowledge is not shared by all. And some, by being accustomed to idols in former times, eat this food as an idol sacrifice, and their conscience, because it is weak, is defiled.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Now food will not bring us close to God. We are no worse if we do not eat and no better if we do.</VERS>\n\t\t\t<VERS vnumber=\"9\"> But be careful that this liberty of yours does not become a hindrance to the weak.</VERS>\n\t\t\t<VERS vnumber=\"10\"> For if someone weak sees you who possess knowledge dining in an idol's temple, will not his conscience be \"strengthened\" to eat food offered to idols? </VERS>\n\t\t\t<VERS vnumber=\"11\"> So by your knowledge the weak brother or sister, for whom Christ died, is destroyed.</VERS>\n\t\t\t<VERS vnumber=\"12\"> If you sin against your brothers or sisters in this way and wound their weak conscience, you sin against Christ. </VERS>\n\t\t\t<VERS vnumber=\"13\"> For this reason, if food causes my brother or sister to sin, I will never eat meat again, so that I may not cause one of them to sin.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"9\">\n\t\t\t<VERS vnumber=\"1\"> Am I not free? Am I not an apostle? Have I not seen Jesus our Lord? Are you not my work in the Lord?</VERS>\n\t\t\t<VERS vnumber=\"2\"> If I am not an apostle to others, at least I am to you, for you are the confirming sign of my apostleship in the Lord. </VERS>\n\t\t\t<VERS vnumber=\"3\"> This is my defense to those who examine me.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Do we not have the right to financial support?</VERS>\n\t\t\t<VERS vnumber=\"5\"> Do we not have the right to the company of a believing wife, like the other apostles and the Lord's brothers and Cephas?</VERS>\n\t\t\t<VERS vnumber=\"6\"> Or do only Barnabas and I lack the right not to work?</VERS>\n\t\t\t<VERS vnumber=\"7\"> Who ever serves in the army at his own expense? Who plants a vineyard and does not eat its fruit? Who tends a flock and does not consume its milk?</VERS>\n\t\t\t<VERS vnumber=\"8\"> Am I saying these things only on the basis of common sense, or does the law not say this as well? </VERS>\n\t\t\t<VERS vnumber=\"9\"> For it is written in the law of Moses, \"Do not muzzle an ox while it is treading out the grain.\" God is not concerned here about oxen, is he? </VERS>\n\t\t\t<VERS vnumber=\"10\"> Or is he not surely speaking for our benefit? It was written for us, because the one plowing and threshing ought to work in hope of enjoying the harvest.</VERS>\n\t\t\t<VERS vnumber=\"11\"> If we sowed spiritual blessings among you, is it too much to reap material things from you?</VERS>\n\t\t\t<VERS vnumber=\"12\"> If others receive this right from you, are we not more deserving? But we have not made use of this right. Instead we endure everything so that we may not be a hindrance to the gospel of Christ.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Don't you know that those who serve in the temple eat food from the temple, and those who serve at the altar receive a part of the offerings? </VERS>\n\t\t\t<VERS vnumber=\"14\"> In the same way the Lord commanded those who proclaim the gospel to receive their living by the gospel.</VERS>\n\t\t\t<VERS vnumber=\"15\"> But I have not used any of these rights. And I am not writing these things so that something will be done for me. In fact, it would be better for me to die than, no one will deprive me of my reason for boasting!</VERS>\n\t\t\t<VERS vnumber=\"16\"> For if I preach the gospel, I have no reason for boasting, because I am compelled to do this. Woe to me if I do not preach the gospel!</VERS>\n\t\t\t<VERS vnumber=\"17\"> For if I do this voluntarily, I have a reward. But if I do it unwillingly, I am entrusted with a responsibility.</VERS>\n\t\t\t<VERS vnumber=\"18\"> What then is my reward? That when I preach the gospel I may offer the gospel free of charge, and so not make full use of my rights in the gospel.</VERS>\n\t\t\t<VERS vnumber=\"19\"> For since I am free from all I can make myself a slave to all, in order to gain even more people.</VERS>\n\t\t\t<VERS vnumber=\"20\"> To the Jews I became like a Jew to gain the Jews. To those under the law I became like one under the law (though I myself am not under the law) to gain those under the law. </VERS>\n\t\t\t<VERS vnumber=\"21\"> To those free from the law I became like one free from the law (though I am not free from God's law but under the law of Christ) to gain those free from the law.</VERS>\n\t\t\t<VERS vnumber=\"22\"> To the weak I became weak in order to gain the weak. I have become all things to all people, so that by all means I may save some.</VERS>\n\t\t\t<VERS vnumber=\"23\"> I do all these things because of the gospel, so that I can be a participant in it.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Do you not know that all the runners in a stadium compete, but only one receives the prize? So run to win.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Each competitor must exercise self-control in everything. They do it to receive a perishable crown, but we an imperishable one.</VERS>\n\t\t\t<VERS vnumber=\"26\"> So I do not run uncertainly or box like one who hits only air.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Instead I subdue my body and make it my slave, so that after preaching to others I myself will not be disqualified.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"10\">\n\t\t\t<VERS vnumber=\"1\"> For I do not want you to be unaware, brothers and sisters, that our fathers were all under the cloud and all passed through the sea, </VERS>\n\t\t\t<VERS vnumber=\"2\"> and all were baptized into Moses in the cloud and in the sea, </VERS>\n\t\t\t<VERS vnumber=\"3\"> and all ate the same spiritual food,</VERS>\n\t\t\t<VERS vnumber=\"4\"> and all drank the same spiritual drink. For they were all drinking from the spiritual rock that followed them, and the rock was Christ.</VERS>\n\t\t\t<VERS vnumber=\"5\"> But God was not pleased with most of them, for they were cut down in the wilderness.</VERS>\n\t\t\t<VERS vnumber=\"6\"> These things happened as examples for us, so that we will not crave evil things as they did.</VERS>\n\t\t\t<VERS vnumber=\"7\"> So do not be idolaters, as some of them were. As it is written, \"The people sat down to eat and drink and rose up to play.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> And let us not be immoral, as some of them were, and twenty-three thousand died in a single day.</VERS>\n\t\t\t<VERS vnumber=\"9\"> And let us not put Christ to the test, as some of them did, and were destroyed by snakes.</VERS>\n\t\t\t<VERS vnumber=\"10\"> And do not complain, as some of them did, and were killed by the destroying angel.</VERS>\n\t\t\t<VERS vnumber=\"11\"> These things happened to them as examples and were written for our instruction, on whom the ends of the ages have come.</VERS>\n\t\t\t<VERS vnumber=\"12\"> So let the one who thinks he is standing be careful that he does not fall.</VERS>\n\t\t\t<VERS vnumber=\"13\"> No trial has overtaken you that is not faced by others. And God is faithful: He will not let you be tried beyond what you are able to bear, but with the trial will also provide a way out so that you may be able to endure it.</VERS>\n\t\t\t<VERS vnumber=\"14\"> So then, my dear friends, flee from idolatry.</VERS>\n\t\t\t<VERS vnumber=\"15\"> I am speaking to thoughtful people. Consider what I say.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Is not the cup of blessing that we bless a sharing in the blood of Christ? Is not the bread that we break a sharing in the body of Christ?</VERS>\n\t\t\t<VERS vnumber=\"17\"> Because there is one bread, we who are many are one body, for we all share the one bread.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Look at the people of Israel. Are not those who eat the sacrifices partners in the altar? </VERS>\n\t\t\t<VERS vnumber=\"19\"> Am I saying that idols or food sacrificed to them amount to anything?</VERS>\n\t\t\t<VERS vnumber=\"20\"> No, I mean that what the pagans sacrifice is to demons and not to God. I do not want you to be partners with demons. </VERS>\n\t\t\t<VERS vnumber=\"21\"> You cannot drink the cup of the Lord and the cup of demons. You cannot take part in the table of the Lord and the table of demons.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Or are we trying to provoke the Lord to jealousy? Are we really stronger than he is?</VERS>\n\t\t\t<VERS vnumber=\"23\"> \"Everything is lawful,\" but not everything is beneficial. \"Everything is lawful,\" but not everything builds others up.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Do not seek your own good, but the good of the other person.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Eat anything that is sold in the marketplace without questions of conscience,</VERS>\n\t\t\t<VERS vnumber=\"26\"> for the earth and its abundance are the Lord's.</VERS>\n\t\t\t<VERS vnumber=\"27\"> If an unbeliever invites you to dinner and you want to go, eat whatever is served without asking questions of conscience.</VERS>\n\t\t\t<VERS vnumber=\"28\"> But if someone says to you, \"This is from a sacrifice,\" do not eat, because of the one who told you and because of conscience,</VERS>\n\t\t\t<VERS vnumber=\"29\"> I do not mean yours but the other person's. For why is my freedom being judged by another's conscience?</VERS>\n\t\t\t<VERS vnumber=\"30\"> If I partake with thankfulness, why am I blamed for the food that I give thanks for? </VERS>\n\t\t\t<VERS vnumber=\"31\"> So whether you eat or drink, or whatever you do, do everything for the glory of God.</VERS>\n\t\t\t<VERS vnumber=\"32\"> Do not give offense to Jews or Greeks or to the church of God,</VERS>\n\t\t\t<VERS vnumber=\"33\"> just as I also try to please everyone in all things. I do not seek my own benefit, but the benefit of many, so that they may be saved. </VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"11\">\n\t\t\t<VERS vnumber=\"1\"> Be imitators of me, just as I also am of Christ.</VERS>\n\t\t\t<VERS vnumber=\"2\"> I praise you because you remember me in everything and maintain the traditions just as I passed them on to you. </VERS>\n\t\t\t<VERS vnumber=\"3\"> But I want you to know that Christ is the head of every man, and the man is the head of a woman, and God is the head of Christ. </VERS>\n\t\t\t<VERS vnumber=\"4\"> Any man who prays or prophesies with his head covered disgraces his head.</VERS>\n\t\t\t<VERS vnumber=\"5\"> But any woman who prays or prophesies with her head uncovered disgraces her head, for it is one and the same thing as having a shaved head.</VERS>\n\t\t\t<VERS vnumber=\"6\"> For if a woman will not cover her head, she should cut off her hair. But if it is disgraceful for a woman to have her hair cut off or her head shaved, she should cover her head.</VERS>\n\t\t\t<VERS vnumber=\"7\"> For a man should not have his head covered, since he is the image and glory of God. But the woman is the glory of the man.</VERS>\n\t\t\t<VERS vnumber=\"8\"> For man did not come from woman, but woman from man.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Neither was man created for the sake of woman, but woman for man.</VERS>\n\t\t\t<VERS vnumber=\"10\"> For this reason a woman should have a symbol of authority on her head, because of the angels.</VERS>\n\t\t\t<VERS vnumber=\"11\"> In any case, in the Lord woman is not independent of man, nor is man independent of woman.</VERS>\n\t\t\t<VERS vnumber=\"12\"> For just as woman came from man, so man comes through woman. But all things come from God.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Judge for yourselves: Is it proper for a woman to pray to God with her head uncovered?</VERS>\n\t\t\t<VERS vnumber=\"14\"> Does not nature itself teach you that if a man has long hair, it is a disgrace for him,</VERS>\n\t\t\t<VERS vnumber=\"15\"> but if a woman has long hair, it is her glory? For her hair is given to her for a covering.</VERS>\n\t\t\t<VERS vnumber=\"16\"> If anyone intends to quarrel about this, we have no other practice, nor do the churches of God.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Now in giving the following instruction I do not praise you, because you come together not for the better but for the worse.</VERS>\n\t\t\t<VERS vnumber=\"18\"> For in the first place, when you come together as a church I hear there are divisions among you, and in part I believe it.</VERS>\n\t\t\t<VERS vnumber=\"19\"> For there must in fact be divisions among you, so that those of you who are approved may be evident.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Now when you come together at the same place, you are not really eating the Lord's Supper.</VERS>\n\t\t\t<VERS vnumber=\"21\"> For when it is time to eat, everyone proceeds with his own supper. One is hungry and another becomes drunk.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Do you not have houses so that you can eat and drink? Or are you trying to show contempt for the church of God by shaming those who have nothing? What should I say to you? Should I praise you? I will not praise you for this!</VERS>\n\t\t\t<VERS vnumber=\"23\"> For I received from the Lord what I also passed on to you, that the Lord Jesus on the night in which he was betrayed took bread,</VERS>\n\t\t\t<VERS vnumber=\"24\"> and after he had given thanks he broke it and said, \"This is my body, which is for you. Do this in remembrance of me.\"</VERS>\n\t\t\t<VERS vnumber=\"25\"> In the same way, he also took the cup after supper, saying, \"This cup is the new covenant in my blood. Do this, every time you drink it, in remembrance of me.\"</VERS>\n\t\t\t<VERS vnumber=\"26\"> For every time you eat this bread and drink the cup, you proclaim the Lord's death until he comes.</VERS>\n\t\t\t<VERS vnumber=\"27\"> For this reason, whoever eats the bread or drinks the cup of the Lord in an unworthy manner will be guilty of the body and blood of the Lord.</VERS>\n\t\t\t<VERS vnumber=\"28\"> A person should examine himself first, and in this way let him eat the bread and drink of the cup. </VERS>\n\t\t\t<VERS vnumber=\"29\"> For the one who eats and drinks without careful regard for the body eats and drinks judgment against himself. </VERS>\n\t\t\t<VERS vnumber=\"30\"> That is why many of you are weak and sick, and quite a few are dead.</VERS>\n\t\t\t<VERS vnumber=\"31\"> But if we examined ourselves, we would not be judged.</VERS>\n\t\t\t<VERS vnumber=\"32\"> But when we are judged by the Lord, we are disciplined so that we may not be condemned with the world.</VERS>\n\t\t\t<VERS vnumber=\"33\"> So then, my brothers and sisters, when you come together to eat, wait for one another. </VERS>\n\t\t\t<VERS vnumber=\"34\"> If anyone is hungry, let him eat at home, so that when you assemble it does not lead to judgment. I will give directions about other matters when I come.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"12\">\n\t\t\t<VERS vnumber=\"1\"> With regard to spiritual gifts, brothers and sisters, I do not want you to be uninformed.</VERS>\n\t\t\t<VERS vnumber=\"2\"> You know that when you were pagans you were often led astray by speechless idols, however you were led.</VERS>\n\t\t\t<VERS vnumber=\"3\"> So I want you to understand that no one speaking by the Spirit of God says, \"Jesus is cursed,\" and no one can say, \"Jesus is Lord,\" except by the Holy Spirit.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Now there are different gifts, but the same Spirit.</VERS>\n\t\t\t<VERS vnumber=\"5\"> And there are different ministries, but the same Lord.</VERS>\n\t\t\t<VERS vnumber=\"6\"> And there are different results, but the same God who produces all of them in everyone.</VERS>\n\t\t\t<VERS vnumber=\"7\"> To each person the manifestation of the Spirit is given for the benefit of all.</VERS>\n\t\t\t<VERS vnumber=\"8\"> For one person is given through the Spirit the message of wisdom, and another the message of knowledge according to the same Spirit,</VERS>\n\t\t\t<VERS vnumber=\"9\"> to another faith by the same Spirit, and to another gifts of healing by the one Spirit,</VERS>\n\t\t\t<VERS vnumber=\"10\"> to another performance of miracles, to another prophecy, and to another discernment of spirits, to another different kinds of tongues, and to another the interpretation of tongues.</VERS>\n\t\t\t<VERS vnumber=\"11\"> It is one and the same Spirit, distributing as he decides to each person, who produces all these things.</VERS>\n\t\t\t<VERS vnumber=\"12\"> For just as the body is one and yet has many members, and all the members of the body, though many, are one body, so too is Christ.</VERS>\n\t\t\t<VERS vnumber=\"13\"> For in one Spirit we were all baptized into one body. Whether Jews or Greeks or slaves or free, we were all made to drink of the one Spirit. </VERS>\n\t\t\t<VERS vnumber=\"14\"> For in fact the body is not a single member, but many.</VERS>\n\t\t\t<VERS vnumber=\"15\"> If the foot says, \"Since I am not a hand, I am not part of the body,\" it does not lose its membership in the body because of that.</VERS>\n\t\t\t<VERS vnumber=\"16\"> And if the ear says, \"Since I am not an eye, I am not part of the body,\" it does not lose its membership in the body because of that.</VERS>\n\t\t\t<VERS vnumber=\"17\"> If the whole body were an eye, what part would do the hearing? If the whole were an ear, what part would exercise the sense of smell?</VERS>\n\t\t\t<VERS vnumber=\"18\"> But as a matter of fact, God has placed each of the members in the body just as he decided.</VERS>\n\t\t\t<VERS vnumber=\"19\"> If they were all the same member, where would the body be?</VERS>\n\t\t\t<VERS vnumber=\"20\"> So now there are many members, but one body.</VERS>\n\t\t\t<VERS vnumber=\"21\"> The eye cannot say to the hand, \"I do not need you,\" nor in turn can the head say to the foot, \"I do not need you.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> On the contrary, those members that seem to be weaker are essential,</VERS>\n\t\t\t<VERS vnumber=\"23\"> and those members we consider less honorable we clothe with greater honor, and our unpresentable members are clothed with dignity,</VERS>\n\t\t\t<VERS vnumber=\"24\"> but our presentable members do not need this. Instead, God has blended together the body, giving greater honor to the lesser member,</VERS>\n\t\t\t<VERS vnumber=\"25\"> so that there may be no division in the body, but the members may have mutual concern for one another.</VERS>\n\t\t\t<VERS vnumber=\"26\"> If one member suffers, everyone suffers with it. If a member is honored, all rejoice with it.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Now you are Christ's body, and each of you is a member of it.</VERS>\n\t\t\t<VERS vnumber=\"28\"> And God has placed in the church first apostles, second prophets, third teachers, then miracles, gifts of healing, helps, gifts of leadership, different kinds of tongues.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Not all are apostles, are they? Not all are prophets, are they? Not all are teachers, are they? Not all perform miracles, do they?</VERS>\n\t\t\t<VERS vnumber=\"30\"> Not all have gifts of healing, do they? Not all speak in tongues, do they? Not all interpret, do they?</VERS>\n\t\t\t<VERS vnumber=\"31\"> But you should be eager for the greater gifts. And now I will show you a way that is beyond comparison.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"13\">\n\t\t\t<VERS vnumber=\"1\"> If I speak in the tongues of men and of angels, but I do not have love, I am a noisy gong or a clanging cymbal.</VERS>\n\t\t\t<VERS vnumber=\"2\"> And if I have prophecy, and know all mysteries and all knowledge, and if I have all faith so that I can remove mountains, but do not have love, I am nothing.</VERS>\n\t\t\t<VERS vnumber=\"3\"> If I give away everything I own, and if I give over my body in order to boast, but do not have love, I receive no benefit.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Love is patient, love is kind, it is not envious. Love does not brag, it is not puffed up.</VERS>\n\t\t\t<VERS vnumber=\"5\"> It is not rude, it is not self-serving, it is not easily angered or resentful.</VERS>\n\t\t\t<VERS vnumber=\"6\"> It is not glad about injustice, but rejoices in the truth.</VERS>\n\t\t\t<VERS vnumber=\"7\"> It bears all things, believes all things, hopes all things, endures all things.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Love never ends. But if there are prophecies, they will be set aside; if there are tongues, they will cease; if there is knowledge, it will be set aside.</VERS>\n\t\t\t<VERS vnumber=\"9\"> For we know in part, and we prophesy in part,</VERS>\n\t\t\t<VERS vnumber=\"10\"> but when what is perfect comes, the partial will be set aside. </VERS>\n\t\t\t<VERS vnumber=\"11\"> When I was a child, I talked like a child, I thought like a child, I reasoned like a child. But when I became an adult, I set aside childish ways. </VERS>\n\t\t\t<VERS vnumber=\"12\"> For now we see in a mirror indirectly, but then we will see face to face. Now I know in part, but then I will know fully, just as I have been fully known.</VERS>\n\t\t\t<VERS vnumber=\"13\"> And now these three remain: faith, hope, and love. But the greatest of these is love.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"14\">\n\t\t\t<VERS vnumber=\"1\"> Pursue love and be eager for the spiritual gifts, especially that you may prophesy.</VERS>\n\t\t\t<VERS vnumber=\"2\"> For the one speaking in a tongue does not speak to people but to God, for no one understands; he is speaking mysteries by the Spirit.</VERS>\n\t\t\t<VERS vnumber=\"3\"> But the one who prophesies speaks to people for their strengthening, encouragement, and consolation. </VERS>\n\t\t\t<VERS vnumber=\"4\"> The one who speaks in a tongue builds himself up, but the one who prophesies builds up the church. </VERS>\n\t\t\t<VERS vnumber=\"5\"> I wish you all spoke in tongues, but even more that you would prophesy. The one who prophesies is greater than the one who speaks in tongues, unless he interprets so that the church may be strengthened.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Now, brothers and sisters, if I come to you speaking in tongues, how will I help you unless I speak to you with a revelation or with knowledge or prophecy or teaching? </VERS>\n\t\t\t<VERS vnumber=\"7\"> It is similar for lifeless things that make a sound, like a flute or harp. Unless they make a distinction in the notes, how can what is played on the flute or harp be understood?</VERS>\n\t\t\t<VERS vnumber=\"8\"> If, for example, the trumpet makes an unclear sound, who will get ready for battle?</VERS>\n\t\t\t<VERS vnumber=\"9\"> It is the same for you. If you do not speak clearly with your tongue, how will anyone know what is being said? For you will be speaking into the air.</VERS>\n\t\t\t<VERS vnumber=\"10\"> There are probably many kinds of languages in the world, and none is without meaning.</VERS>\n\t\t\t<VERS vnumber=\"11\"> If then I do not know the meaning of a language, I will be a foreigner to the speaker and the speaker a foreigner to me.</VERS>\n\t\t\t<VERS vnumber=\"12\"> It is the same with you. Since you are eager for manifestations of the Spirit, seek to abound in order to strengthen the church.</VERS>\n\t\t\t<VERS vnumber=\"13\"> So then, one who speaks in a tongue should pray that he may interpret.</VERS>\n\t\t\t<VERS vnumber=\"14\"> If I pray in a tongue, my spirit prays, but my mind is unproductive.</VERS>\n\t\t\t<VERS vnumber=\"15\"> What should I do? I will pray with my spirit, but I will also pray with my mind. I will sing praises with my spirit, but I will also sing praises with my mind. </VERS>\n\t\t\t<VERS vnumber=\"16\"> Otherwise, if you are praising God with your spirit, how can someone without the gift say \"Amen\" to your thanksgiving, since he does not know what you are saying? </VERS>\n\t\t\t<VERS vnumber=\"17\"> For you are certainly giving thanks well, but the other person is not strengthened.</VERS>\n\t\t\t<VERS vnumber=\"18\"> I thank God that I speak in tongues more than all of you,</VERS>\n\t\t\t<VERS vnumber=\"19\"> but in the church I want to speak five words with my mind to instruct others, rather than ten thousand words in a tongue.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Brothers and sisters, do not be children in your thinking. Instead, be infants in evil, but in your thinking be mature.</VERS>\n\t\t\t<VERS vnumber=\"21\"> It is written in the law: \"By people with strange tongues and by the lips of strangers I will speak to this people, yet not even in this way will they listen to me,\" says the Lord. </VERS>\n\t\t\t<VERS vnumber=\"22\"> So then, tongues are a sign not for believers but for unbelievers. Prophecy, however, is not for unbelievers but for believers.</VERS>\n\t\t\t<VERS vnumber=\"23\"> So if the whole church comes together and all speak in tongues, and unbelievers or uninformed people enter, will they not say that you have lost your minds?</VERS>\n\t\t\t<VERS vnumber=\"24\"> But if all prophesy, and an unbeliever or uninformed person enters, he will be convicted by all, he will be called to account by all.</VERS>\n\t\t\t<VERS vnumber=\"25\"> The secrets of his heart are disclosed, and in this way he will fall down with his face to the ground and worship God, declaring, \"God is really among you.\"</VERS>\n\t\t\t<VERS vnumber=\"26\"> What should you do then, brothers and sisters? When you come together, each one has a song, has a lesson, has a revelation, has a tongue, has an interpretation. Let all these things be done for the strengthening of the church. </VERS>\n\t\t\t<VERS vnumber=\"27\"> If someone speaks in a tongue, it should be two, or at the most three, one after the other, and someone must interpret.</VERS>\n\t\t\t<VERS vnumber=\"28\"> But if there is no interpreter, he should be silent in the church. Let him speak to himself and to God.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Two or three prophets should speak and the others should evaluate what is said.</VERS>\n\t\t\t<VERS vnumber=\"30\"> And if someone sitting down receives a revelation, the person who is speaking should conclude.</VERS>\n\t\t\t<VERS vnumber=\"31\"> For you can all prophesy one after another, so all can learn and be encouraged.</VERS>\n\t\t\t<VERS vnumber=\"32\"> Indeed, the spirits of the prophets are subject to the prophets,</VERS>\n\t\t\t<VERS vnumber=\"33\"> for God is not characterized by disorder but by peace. As in all the churches of the saints,</VERS>\n\t\t\t<VERS vnumber=\"34\"> the women should be silent in the churches, for they are not permitted to speak. Rather, let them be in submission, as in fact the law says. </VERS>\n\t\t\t<VERS vnumber=\"35\"> If they want to find out about something, they should ask their husbands at home, because it is disgraceful for a woman to speak in church.</VERS>\n\t\t\t<VERS vnumber=\"36\"> Did the word of God begin with you, or did it come to you alone?</VERS>\n\t\t\t<VERS vnumber=\"37\"> If anyone considers himself a prophet or spiritual person, he should acknowledge that what I write to you is the Lord's command.</VERS>\n\t\t\t<VERS vnumber=\"38\"> If someone does not recognize this, he is not recognized.</VERS>\n\t\t\t<VERS vnumber=\"39\"> So then, brothers and sisters, be eager to prophesy, and do not forbid anyone from speaking in tongues.</VERS>\n\t\t\t<VERS vnumber=\"40\"> And do everything in a decent and orderly manner.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"15\">\n\t\t\t<VERS vnumber=\"1\"> Now I want to make clear for you, brothers and sisters, the gospel that I preached to you, that you received and on which you stand, </VERS>\n\t\t\t<VERS vnumber=\"2\"> and by which you are being saved, if you hold firmly to the message I preached to you, unless you believed in vain.</VERS>\n\t\t\t<VERS vnumber=\"3\"> For I passed on to you as of first importance what I also received, that Christ died for our sins according to the scriptures,</VERS>\n\t\t\t<VERS vnumber=\"4\"> and that he was buried, and that he was raised on the third day according to the scriptures, </VERS>\n\t\t\t<VERS vnumber=\"5\"> and that he appeared to Cephas, then to the twelve.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Then he appeared to more than five hundred of the brothers and sisters at one time, most of whom are still alive, though some have fallen asleep.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Then he appeared to James, then to all the apostles.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Last of all, as though to one born at the wrong time, he appeared to me also. </VERS>\n\t\t\t<VERS vnumber=\"9\"> For I am the least of the apostles, unworthy to be called an apostle, because I persecuted the church of God.</VERS>\n\t\t\t<VERS vnumber=\"10\"> But by the grace of God I am what I am, and his grace to me has not been in vain. In fact, I worked harder than all of them, yet not I, but the grace of God with me.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Whether then it was I or they, this is the way we preach and this is the way you believed.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Now if Christ is being preached as raised from the dead, how can some of you say there is no resurrection of the dead? </VERS>\n\t\t\t<VERS vnumber=\"13\"> But if there is no resurrection of the dead, then not even Christ has been raised.</VERS>\n\t\t\t<VERS vnumber=\"14\"> And if Christ has not been raised, then our preaching is futile and your faith is empty.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Also, we are found to be false witnesses about God, because we have testified against God that he raised Christ from the dead, when in reality he did not raise him, if indeed the dead are not raised.</VERS>\n\t\t\t<VERS vnumber=\"16\"> For if the dead are not raised, then not even Christ has been raised.</VERS>\n\t\t\t<VERS vnumber=\"17\"> And if Christ has not been raised, your faith is useless; you are still in your sins.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Furthermore, those who have fallen asleep in Christ have also perished. </VERS>\n\t\t\t<VERS vnumber=\"19\"> For if only in this life we have hope in Christ, we should be pitied more than anyone.</VERS>\n\t\t\t<VERS vnumber=\"20\"> But now Christ has been raised from the dead, the firstfruits of those who have fallen asleep.</VERS>\n\t\t\t<VERS vnumber=\"21\"> For since death came through a man, the resurrection of the dead also came through a man.</VERS>\n\t\t\t<VERS vnumber=\"22\"> For just as in Adam all die, so also in Christ all will be made alive.</VERS>\n\t\t\t<VERS vnumber=\"23\"> But each in his own order: Christ, the firstfruits; then when Christ comes, those who belong to him.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Then comes the end, when he hands over the kingdom to God the Father, when he has brought to an end all rule and all authority and power. </VERS>\n\t\t\t<VERS vnumber=\"25\"> For he must reign until he has put all his enemies under his feet.</VERS>\n\t\t\t<VERS vnumber=\"26\"> The last enemy to be eliminated is death.</VERS>\n\t\t\t<VERS vnumber=\"27\"> For he has put everything in subjection under his feet. But when it says \"everything\" has been put in subjection, it is clear that this does not include the one who put everything in subjection to him. </VERS>\n\t\t\t<VERS vnumber=\"28\"> And when all things are subjected to him, then the Son himself will be subjected to the one who subjected everything to him, so that God may be all in all.</VERS>\n\t\t\t<VERS vnumber=\"29\"> Otherwise, what will those do who are baptized for the dead? If the dead are not raised at all, then why are they baptized for them? </VERS>\n\t\t\t<VERS vnumber=\"30\"> Why too are we in danger every hour?</VERS>\n\t\t\t<VERS vnumber=\"31\"> Every day I am in danger of death! This is as sure as my boasting in you, which I have in Christ Jesus our Lord. </VERS>\n\t\t\t<VERS vnumber=\"32\"> If from a human point of view I fought with wild beasts at Ephesus, what did it benefit me? If the dead are not raised, let us eat and drink, for tomorrow we die.</VERS>\n\t\t\t<VERS vnumber=\"33\"> Do not be deceived: \"Bad company corrupts good morals.\"</VERS>\n\t\t\t<VERS vnumber=\"34\"> Sober up as you should, and stop sinning! For some have no knowledge of God, I say this to your shame!</VERS>\n\t\t\t<VERS vnumber=\"35\"> But someone will say, \"How are the dead raised? With what kind of body will they come?\"</VERS>\n\t\t\t<VERS vnumber=\"36\"> Fool! What you sow will not come to life unless it dies.</VERS>\n\t\t\t<VERS vnumber=\"37\"> And what you sow is not the body that is to be, but a bare seed, perhaps of wheat or something else.</VERS>\n\t\t\t<VERS vnumber=\"38\"> But God gives it a body just as he planned, and to each of the seeds a body of its own.</VERS>\n\t\t\t<VERS vnumber=\"39\"> All flesh is not the same: People have one flesh, animals have another, birds and fish another.</VERS>\n\t\t\t<VERS vnumber=\"40\"> And there are heavenly bodies and earthly bodies. The glory of the heavenly body is one sort and the earthly another.</VERS>\n\t\t\t<VERS vnumber=\"41\"> There is one glory of the sun, and another glory of the moon and another glory of the stars, for star differs from star in glory.</VERS>\n\t\t\t<VERS vnumber=\"42\"> It is the same with the resurrection of the dead. What is sown is perishable, what is raised is imperishable.</VERS>\n\t\t\t<VERS vnumber=\"43\"> It is sown in dishonor, it is raised in glory; it is sown in weakness, it is raised in power;</VERS>\n\t\t\t<VERS vnumber=\"44\"> it is sown a natural body, it is raised a spiritual body. If there is a natural body, there is also a spiritual body.</VERS>\n\t\t\t<VERS vnumber=\"45\"> So also it is written, \"The first man, Adam, became a living person\"; the last Adam became a life-giving spirit. </VERS>\n\t\t\t<VERS vnumber=\"46\"> However, the spiritual did not come first, but the natural, and then the spiritual.</VERS>\n\t\t\t<VERS vnumber=\"47\"> The first man is from the earth, made of dust; the second man is from heaven.</VERS>\n\t\t\t<VERS vnumber=\"48\"> Like the one made of dust, so too are those made of dust, and like the one from heaven, so too those who are heavenly.</VERS>\n\t\t\t<VERS vnumber=\"49\"> And just as we have borne the image of the man of dust, let us also bear the image of the man of heaven.</VERS>\n\t\t\t<VERS vnumber=\"50\"> Now this is what I am saying, brothers and sisters: Flesh and blood cannot inherit the kingdom of God, nor does the perishable inherit the imperishable. </VERS>\n\t\t\t<VERS vnumber=\"51\"> Listen, I will tell you a mystery: We will not all sleep, but we will all be changed,</VERS>\n\t\t\t<VERS vnumber=\"52\"> in a moment, in the blinking of an eye, at the last trumpet. For the trumpet will sound, and the dead will be raised imperishable, and we will be changed. </VERS>\n\t\t\t<VERS vnumber=\"53\"> For this perishable body must put on the imperishable, and this mortal body must put on immortality.</VERS>\n\t\t\t<VERS vnumber=\"54\"> Now when this perishable puts on the imperishable, and this mortal puts on immortality, then the saying that is written will happen, \"Death has been swallowed up in victory.\"</VERS>\n\t\t\t<VERS vnumber=\"55\"> \"Where, O death, is your victory? Where, O death, is your sting?\"</VERS>\n\t\t\t<VERS vnumber=\"56\"> The sting of death is sin, and the power of sin is the law.</VERS>\n\t\t\t<VERS vnumber=\"57\"> But thanks be to God, who gives us the victory through our Lord Jesus Christ!</VERS>\n\t\t\t<VERS vnumber=\"58\"> So then, dear brothers and sisters, be firm. Do not be moved! Always be outstanding in the work of the Lord, knowing that your labor is not in vain in the Lord.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"16\">\n\t\t\t<VERS vnumber=\"1\"> With regard to the collection for the saints, please follow the directions that I gave to the churches of Galatia:</VERS>\n\t\t\t<VERS vnumber=\"2\"> On the first day of the week, each of you should set aside some income and save it to the extent that God has blessed you, so that a collection will not have to be made when I come. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Then, when I arrive, I will send those whom you approve with letters of explanation to carry your gift to Jerusalem.</VERS>\n\t\t\t<VERS vnumber=\"4\"> And if it seems advisable that I should go also, they will go with me.</VERS>\n\t\t\t<VERS vnumber=\"5\"> But I will come to you after I have gone through Macedonia, for I will be going through Macedonia,</VERS>\n\t\t\t<VERS vnumber=\"6\"> and perhaps I will stay with you, or even spend the winter, so that you can send me on my journey, wherever I go.</VERS>\n\t\t\t<VERS vnumber=\"7\"> For I do not want to see you now in passing, since I hope to spend some time with you, if the Lord allows.</VERS>\n\t\t\t<VERS vnumber=\"8\"> But I will stay in Ephesus until Pentecost, </VERS>\n\t\t\t<VERS vnumber=\"9\"> because a door of great opportunity stands wide open for me, but there are many opponents.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Now if Timothy comes, see that he has nothing to fear among you, for he is doing the Lord's work, as I am too.</VERS>\n\t\t\t<VERS vnumber=\"11\"> So then, let no one treat him with contempt. But send him on his way in peace so that he may come to me. For I am expecting him with the brothers.</VERS>\n\t\t\t<VERS vnumber=\"12\"> With regard to our brother Apollos: I strongly encouraged him to visit you with the other brothers, but it was simply not his intention to come now. He will come when he has the opportunity.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Stay alert, stand firm in the faith, show courage, be strong.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Everything you do should be done in love.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Now, brothers and sisters, you know about the household of Stephanus, that as the first converts of Achaia, they devoted themselves to ministry for the saints. I urge you </VERS>\n\t\t\t<VERS vnumber=\"16\"> also to submit to people like this, and to everyone who cooperates in the work and labors hard.</VERS>\n\t\t\t<VERS vnumber=\"17\"> I was glad about the arrival of Stephanus, Fortunatus, and Achaicus because they have supplied the fellowship with you that I lacked.</VERS>\n\t\t\t<VERS vnumber=\"18\"> For they refreshed my spirit and yours. So then, recognize people like this.</VERS>\n\t\t\t<VERS vnumber=\"19\"> The churches in the province of Asia send greetings to you. Aquila and Prisca greet you warmly in the Lord, with the church that meets in their house. </VERS>\n\t\t\t<VERS vnumber=\"20\"> All the brothers and sisters send greetings. Greet one another with a holy kiss.</VERS>\n\t\t\t<VERS vnumber=\"21\"> I, Paul, send this greeting with my own hand.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Let anyone who has no love for the Lord be accursed. Our Lord, come!</VERS>\n\t\t\t<VERS vnumber=\"23\"> The grace of the Lord Jesus be with you.</VERS>\n\t\t\t<VERS vnumber=\"24\"> My love be with all of you in Christ Jesus.</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"47\" bname=\"2 Corinthians\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> From Paul, an apostle of Christ Jesus by the will of God, and Timothy our brother, to the church of God that is in Corinth, with all the saints who are in all Achaia.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Grace and peace to you from God our Father and the Lord Jesus Christ!</VERS>\n\t\t\t<VERS vnumber=\"3\"> Blessed is the God and Father of our Lord Jesus Christ, the Father of mercies and God of all comfort, </VERS>\n\t\t\t<VERS vnumber=\"4\"> who comforts us in all our troubles so that we may be able to comfort those experiencing any trouble with the comfort with which we ourselves are comforted by God.</VERS>\n\t\t\t<VERS vnumber=\"5\"> For just as the sufferings of Christ overflow toward us, so also our comfort through Christ overflows to you.</VERS>\n\t\t\t<VERS vnumber=\"6\"> But if we are afflicted, it is for your comfort and salvation; if we are comforted, it is for your comfort that you experience in your patient endurance of the same sufferings that we also suffer. </VERS>\n\t\t\t<VERS vnumber=\"7\"> And our hope for you is steadfast because we know that as you share in our sufferings, so also you will share in our comfort. </VERS>\n\t\t\t<VERS vnumber=\"8\"> For we do not want you to be unaware, brothers and sisters, regarding the affliction that happened to us in the province of Asia, that we were burdened excessively, beyond our strength, so that we despaired even of living. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Indeed we felt as if the sentence of death had been passed against us, so that we would not trust in ourselves but in God who raises the dead. </VERS>\n\t\t\t<VERS vnumber=\"10\"> He delivered us from so great a risk of death, and he will deliver us. We have set our hope on him that he will deliver us yet again, </VERS>\n\t\t\t<VERS vnumber=\"11\"> as you also join in helping us by prayer, so that many people may give thanks to God on our behalf for the gracious gift given to us through the help of many.</VERS>\n\t\t\t<VERS vnumber=\"12\"> For our reason for confidence is this: the testimony of our conscience, that with pure motives and sincerity which are from God, not by human wisdom but by the grace of God, we conducted ourselves in the world, and all the more toward you.</VERS>\n\t\t\t<VERS vnumber=\"13\"> For we do not write you anything other than what you can read and also understand. But I hope that you will understand completely</VERS>\n\t\t\t<VERS vnumber=\"14\"> just as also you have partly understood us, that we are your source of pride just as you also are ours in the day of the Lord Jesus.</VERS>\n\t\t\t<VERS vnumber=\"15\"> And with this confidence I intended to come to you first so that you would get a second opportunity to see us,</VERS>\n\t\t\t<VERS vnumber=\"16\"> and through your help to go on into Macedonia and then from Macedonia to come back to you and be helped on our way into Judea by you. </VERS>\n\t\t\t<VERS vnumber=\"17\"> Therefore when I was planning to do this, I did not do so without thinking about what I was doing, did I? Or do I make my plans according to mere human standards so that I would be saying both \"Yes, yes\" and \"No, no\" at the same time? </VERS>\n\t\t\t<VERS vnumber=\"18\"> But as God is faithful, our message to you is not \"Yes\" and \"No.\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> For the Son of God, Jesus Christ, the one who was proclaimed among you by us, by me and Silvanus and Timothy, was not \"Yes\" and \"No,\" but it has always been \"Yes\" in him.</VERS>\n\t\t\t<VERS vnumber=\"20\"> For every one of God's promises are \"Yes\" in him; therefore also through him the \"Amen\" is spoken, to the glory we give to God.</VERS>\n\t\t\t<VERS vnumber=\"21\"> But it is God who establishes us together with you in Christ and who anointed us,</VERS>\n\t\t\t<VERS vnumber=\"22\"> who also sealed us and gave us the Spirit in our hearts as a down payment.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Now I appeal to God as my witness, that to spare you I did not come again to Corinth.</VERS>\n\t\t\t<VERS vnumber=\"24\"> I do not mean that we rule over your faith, but we are workers with you for your joy, because by faith you stand firm.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> So I made up my own mind not to pay you another painful visit.</VERS>\n\t\t\t<VERS vnumber=\"2\"> For if I make you sad, who would be left to make me glad but the one I caused to be sad? </VERS>\n\t\t\t<VERS vnumber=\"3\"> And I wrote this very thing to you, so that when I came I would not have sadness from those who ought to make me rejoice, since I am confident in you all that my joy would be yours. </VERS>\n\t\t\t<VERS vnumber=\"4\"> For out of great distress and anguish of heart I wrote to you with many tears, not to make you sad, but to let you know the love that I have especially for you.</VERS>\n\t\t\t<VERS vnumber=\"5\"> But if anyone has caused sadness, he has not saddened me alone, but to some extent (not to exaggerate) he has saddened all of you as well. </VERS>\n\t\t\t<VERS vnumber=\"6\"> This punishment on such an individual by the majority is enough for him,</VERS>\n\t\t\t<VERS vnumber=\"7\"> so that now instead you should rather forgive and comfort him. This will keep him from being overwhelmed by excessive grief to the point of despair.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Therefore I urge you to reaffirm your love for him.</VERS>\n\t\t\t<VERS vnumber=\"9\"> For this reason also I wrote you: to test you to see if you are obedient in everything. </VERS>\n\t\t\t<VERS vnumber=\"10\"> If you forgive anyone for anything, I also forgive him, for indeed what I have forgiven (if I have forgiven anything) I did so for you in the presence of Christ,</VERS>\n\t\t\t<VERS vnumber=\"11\"> so that we may not be exploited by Satan (for we are not ignorant of his schemes). </VERS>\n\t\t\t<VERS vnumber=\"12\"> Now when I arrived in Troas to proclaim the gospel of Christ, even though the Lord had opened a door of opportunity for me, </VERS>\n\t\t\t<VERS vnumber=\"13\"> I had no relief in my spirit, because I did not find my brother Titus there. So I said good-bye to them and set out for Macedonia.</VERS>\n\t\t\t<VERS vnumber=\"14\"> But thanks be to God who always leads us in triumphal procession in Christ and who makes known through us the fragrance that consists of the knowledge of him in every place. </VERS>\n\t\t\t<VERS vnumber=\"15\"> For we are a sweet aroma of Christ to God among those who are being saved and among those who are perishing,</VERS>\n\t\t\t<VERS vnumber=\"16\"> to the latter an odor from death to death, but to the former a fragrance from life to life. And who is adequate for these things?</VERS>\n\t\t\t<VERS vnumber=\"17\"> For we are not like so many others, hucksters who peddle the word of God for profit, but we are speaking in Christ before God as persons of sincerity, as persons sent from God.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> Are we beginning to commend ourselves again? We don't need letters of recommendation to you or from you as some other people do, do we?</VERS>\n\t\t\t<VERS vnumber=\"2\"> You yourselves are our letter, written on our hearts, known and read by everyone, </VERS>\n\t\t\t<VERS vnumber=\"3\"> revealing that you are a letter of Christ, delivered by us, written not with ink but by the Spirit of the living God, not on stone tablets but on tablets of human hearts.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Now we have such confidence in God through Christ.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Not that we are adequate in ourselves to consider anything as if it were coming from ourselves, but our adequacy is from God, </VERS>\n\t\t\t<VERS vnumber=\"6\"> who made us adequate to be servants of a new covenant not based on the letter but on the Spirit, for the letter kills, but the Spirit gives life.</VERS>\n\t\t\t<VERS vnumber=\"7\"> But if the ministry that produced death, carved in letters on stone tablets, came with glory, so that the Israelites could not keep their eyes fixed on the face of Moses because of the glory of his face (a glory which was made ineffective),</VERS>\n\t\t\t<VERS vnumber=\"8\"> how much more glorious will the ministry of the Spirit be?</VERS>\n\t\t\t<VERS vnumber=\"9\"> For if there was glory in the ministry that produced condemnation, how much more does the ministry that produces righteousness excel in glory! </VERS>\n\t\t\t<VERS vnumber=\"10\"> For indeed, what had been glorious now has no glory because of the tremendously greater glory of what replaced it.</VERS>\n\t\t\t<VERS vnumber=\"11\"> For if what was made ineffective came with glory, how much more has what remains come in glory! </VERS>\n\t\t\t<VERS vnumber=\"12\"> Therefore, since we have such a hope, we behave with great boldness,</VERS>\n\t\t\t<VERS vnumber=\"13\"> and not like Moses who used to put a veil over his face to keep the Israelites from staring at the result of the glory that was made ineffective.</VERS>\n\t\t\t<VERS vnumber=\"14\"> But their minds were closed. For to this very day, the same veil remains when they hear the old covenant read. It has not been removed because only in Christ is it taken away.</VERS>\n\t\t\t<VERS vnumber=\"15\"> But until this very day whenever Moses is read, a veil lies over their minds,</VERS>\n\t\t\t<VERS vnumber=\"16\"> but when one turns to the Lord, the veil is removed.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Now the Lord is the Spirit, and where the Spirit of the Lord is present, there is freedom. </VERS>\n\t\t\t<VERS vnumber=\"18\"> And we all, with unveiled faces reflecting the glory of the Lord, are being transformed into the same image from one degree of glory to another, which is from the Lord, who is the Spirit.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\"> Therefore, since we have this ministry, just as God has shown us mercy, we do not become discouraged.</VERS>\n\t\t\t<VERS vnumber=\"2\"> But we have rejected shameful hidden deeds, not behaving with deceptiveness or distorting the word of God, but by open proclamation of the truth we commend ourselves to everyone's conscience before God. </VERS>\n\t\t\t<VERS vnumber=\"3\"> But even if our gospel is veiled, it is veiled only to those who are perishing,</VERS>\n\t\t\t<VERS vnumber=\"4\"> among whom the god of this age has blinded the minds of those who do not believe so they would not see the light of the glorious gospel of Christ, who is the image of God. </VERS>\n\t\t\t<VERS vnumber=\"5\"> For we do not proclaim ourselves, but Jesus Christ as Lord, and ourselves as your slaves for Jesus' sake. </VERS>\n\t\t\t<VERS vnumber=\"6\"> For God, who said \"Let light shine out of darkness,\" is the one who shined in our hearts to give us the light of the glorious knowledge of God in the face of Christ.</VERS>\n\t\t\t<VERS vnumber=\"7\"> But we have this treasure in clay jars, so that the extraordinary power belongs to God and does not come from us. </VERS>\n\t\t\t<VERS vnumber=\"8\"> We are experiencing trouble on every side, but are not crushed; we are perplexed, but not driven to despair; </VERS>\n\t\t\t<VERS vnumber=\"9\"> we are persecuted, but not abandoned; we are knocked down, but not destroyed, </VERS>\n\t\t\t<VERS vnumber=\"10\"> always carrying around in our body the death of Jesus, so that the life of Jesus may also be made visible in our body. </VERS>\n\t\t\t<VERS vnumber=\"11\"> For we who are alive are constantly being handed over to death for Jesus' sake, so that the life of Jesus may also be made visible in our mortal body.</VERS>\n\t\t\t<VERS vnumber=\"12\"> As a result, death is at work in us, but life is at work in you.</VERS>\n\t\t\t<VERS vnumber=\"13\"> But since we have the same spirit of faith as that shown in what has been written, \"I believed; therefore I spoke,\" we also believe, therefore we also speak. </VERS>\n\t\t\t<VERS vnumber=\"14\"> We do so because we know that the one who raised up Jesus will also raise us up with Jesus and will bring us with you into his presence. </VERS>\n\t\t\t<VERS vnumber=\"15\"> For all these things are for your sake, so that the grace that is including more and more people may cause thanksgiving to increase to the glory of God. </VERS>\n\t\t\t<VERS vnumber=\"16\"> Therefore we do not despair, but even if our physical body is wearing away, our inner person is being renewed day by day. </VERS>\n\t\t\t<VERS vnumber=\"17\"> For our momentary, light suffering is producing for us an eternal weight of glory far beyond all comparison </VERS>\n\t\t\t<VERS vnumber=\"18\"> because we are not looking at what can be seen but at what cannot be seen. For what can be seen is temporary, but what cannot be seen is eternal.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"5\">\n\t\t\t<VERS vnumber=\"1\"> For we know that if our earthly house, the tent we live in, is dismantled, we have a building from God, a house not built by human hands, that is eternal in the heavens. </VERS>\n\t\t\t<VERS vnumber=\"2\"> For in this earthly house we groan, because we desire to put on our heavenly dwelling, </VERS>\n\t\t\t<VERS vnumber=\"3\"> if indeed, after we have put on our heavenly house, we will not be found naked. </VERS>\n\t\t\t<VERS vnumber=\"4\"> For we groan while we are in this tent, since we are weighed down, because we do not want to be unclothed, but clothed, so that what is mortal may be swallowed up by life. </VERS>\n\t\t\t<VERS vnumber=\"5\"> Now the one who prepared us for this very purpose is God, who gave us the Spirit as a down payment.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Therefore we are always full of courage, and we know that as long as we are alive here on earth we are absent from the Lord,</VERS>\n\t\t\t<VERS vnumber=\"7\"> for we live by faith, not by sight. </VERS>\n\t\t\t<VERS vnumber=\"8\"> Thus we are full of courage and would prefer to be away from the body and at home with the Lord. </VERS>\n\t\t\t<VERS vnumber=\"9\"> So then whether we are alive or away, we make it our ambition to please him.</VERS>\n\t\t\t<VERS vnumber=\"10\"> For we must all appear before the judgment seat of Christ, so that each one may be paid back according to what he has done while in the body, whether good or evil.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Therefore, because we know the fear of the Lord, we try to persuade people, but we are well known to God, and I hope we are well known to your consciences too. </VERS>\n\t\t\t<VERS vnumber=\"12\"> We are not trying to commend ourselves to you again, but are giving you an opportunity to be proud of us, so that you may be able to answer those who take pride in outward appearance and not in what is in the heart. </VERS>\n\t\t\t<VERS vnumber=\"13\"> For if we are out of our minds, it is for God; if we are of sound mind, it is for you.</VERS>\n\t\t\t<VERS vnumber=\"14\"> For the love of Christ controls us, since we have concluded this, that Christ died for all; therefore all have died. </VERS>\n\t\t\t<VERS vnumber=\"15\"> And he died for all so that those who live should no longer live for themselves but for him who died for them and was raised.</VERS>\n\t\t\t<VERS vnumber=\"16\"> So then from now on we acknowledge no one from an outward human point of view. Even though we have known Christ from such a human point of view, now we do not know him in that way any longer. </VERS>\n\t\t\t<VERS vnumber=\"17\"> So then, if anyone is in Christ, he is a new creation; what is old has passed away, look, what is new has come!</VERS>\n\t\t\t<VERS vnumber=\"18\"> And all these things are from God who reconciled us to himself through Christ, and who has given us the ministry of reconciliation.</VERS>\n\t\t\t<VERS vnumber=\"19\"> In other words, in Christ God was reconciling the world to himself, not counting people's trespasses against them, and he has given us the message of reconciliation. </VERS>\n\t\t\t<VERS vnumber=\"20\"> Therefore we are ambassadors for Christ, as though God were making His plea through us. We plead with you on Christ's behalf, \"Be reconciled to God!\" </VERS>\n\t\t\t<VERS vnumber=\"21\"> God made the one who did not know sin to be sin for us, so that in him we would become the righteousness of God.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"6\">\n\t\t\t<VERS vnumber=\"1\"> Now because we are fellow workers, we also urge you not to receive the grace of God in vain.</VERS>\n\t\t\t<VERS vnumber=\"2\"> For he says, \"I heard you at the acceptable time, and in the day of salvation I helped you.\" Look, now is the acceptable time; look, now is the day of salvation! </VERS>\n\t\t\t<VERS vnumber=\"3\"> We do not give anyone an occasion for taking an offense in anything, so that no fault may be found with our ministry. </VERS>\n\t\t\t<VERS vnumber=\"4\"> But as God's servants, we have commended ourselves in every way, with great endurance, in persecutions, in difficulties, in distresses, </VERS>\n\t\t\t<VERS vnumber=\"5\"> in beatings, in imprisonments, in riots, in troubles, in sleepless nights, in hunger, </VERS>\n\t\t\t<VERS vnumber=\"6\"> by purity, by knowledge, by patience, by benevolence, by the Holy Spirit, by genuine love, </VERS>\n\t\t\t<VERS vnumber=\"7\"> by truthful teaching, by the power of God, with weapons of righteousness both for the right hand and for the left,</VERS>\n\t\t\t<VERS vnumber=\"8\"> through glory and dishonor, through slander and praise; regarded as impostors, and yet true; </VERS>\n\t\t\t<VERS vnumber=\"9\"> as unknown, and yet well-known; as dying and yet, see!, we continue to live; as those who are scourged and yet not executed;</VERS>\n\t\t\t<VERS vnumber=\"10\"> as sorrowful, but always rejoicing, as poor, but making many rich, as having nothing, and yet possessing everything.</VERS>\n\t\t\t<VERS vnumber=\"11\"> We have spoken freely to you, Corinthians; our heart has been opened wide to you. </VERS>\n\t\t\t<VERS vnumber=\"12\"> Our affection for you is not restricted, but you are restricted in your affections for us. </VERS>\n\t\t\t<VERS vnumber=\"13\"> Now as a fair exchange, I speak as to my children, open wide your hearts to us also.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Do not become partners with those who do not believe, for what partnership is there between righteousness and lawlessness, or what fellowship does light have with darkness? </VERS>\n\t\t\t<VERS vnumber=\"15\"> And what agreement does Christ have with Beliar? Or what does a believer share in common with an unbeliever? </VERS>\n\t\t\t<VERS vnumber=\"16\"> And what mutual agreement does the temple of God have with idols? For we are the temple of the living God, just as God said, \"I will live in them and will walk among them, and I will be their God, and they will be my people.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> Therefore \"come out from their midst, and be separate,\" says the Lord, \"and touch no unclean thing, and I will welcome you,</VERS>\n\t\t\t<VERS vnumber=\"18\"> and I will be a father to you, and you will be my sons and daughters,\" says the All-Powerful Lord.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"7\">\n\t\t\t<VERS vnumber=\"1\"> Therefore, since we have these promises, dear friends, let us cleanse ourselves from everything that could defile the body and the spirit, and thus accomplish holiness out of reverence for God.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Make room for us in your hearts; we have wronged no one, we have ruined no one, we have exploited no one.</VERS>\n\t\t\t<VERS vnumber=\"3\"> I do not say this to condemn you, for I told you before that you are in our hearts so that we die together and live together with you.</VERS>\n\t\t\t<VERS vnumber=\"4\"> I have great confidence in you; I take great pride on your behalf. I am filled with encouragement; I am overflowing with joy in the midst of all our suffering. </VERS>\n\t\t\t<VERS vnumber=\"5\"> For even when we came into Macedonia, our body had no rest at all, but we were troubled in every way, struggles from the outside, fears from within.</VERS>\n\t\t\t<VERS vnumber=\"6\"> But God, who encourages the downhearted, encouraged us by the arrival of Titus. </VERS>\n\t\t\t<VERS vnumber=\"7\"> We were encouraged not only by his arrival, but also by the encouragement you gave him, as he reported to us your longing, your mourning, your deep concern for me, so that I rejoiced more than ever. </VERS>\n\t\t\t<VERS vnumber=\"8\"> For even if I made you sad by my letter, I do not regret having written it (even though I did regret it, for I see that my letter made you sad, though only for a short time). </VERS>\n\t\t\t<VERS vnumber=\"9\"> Now I rejoice, not because you were made sad, but because you were made sad to the point of repentance. For you were made sad as God intended, so that you were not harmed in any way by us. </VERS>\n\t\t\t<VERS vnumber=\"10\"> For sadness as intended by God produces a repentance that leads to salvation, leaving no regret, but worldly sadness brings about death.</VERS>\n\t\t\t<VERS vnumber=\"11\"> For see what this very thing, this sadness as God intended, has produced in you: what eagerness, what defense of yourselves, what indignation, what alarm, what longing, what deep concern, what punishment! In everything you have proved yourselves to be innocent in this matter. </VERS>\n\t\t\t<VERS vnumber=\"12\"> So then, even though I wrote to you, it was not on account of the one who did wrong, or on account of the one who was wronged, but to reveal to you your eagerness on our behalf before God. </VERS>\n\t\t\t<VERS vnumber=\"13\"> Therefore we have been encouraged. And in addition to our own encouragement, we rejoiced even more at the joy of Titus, because all of you have refreshed his spirit.</VERS>\n\t\t\t<VERS vnumber=\"14\"> For if I have boasted to him about anything concerning you, I have not been embarrassed by you, but just as everything we said to you was true, so our boasting to Titus about you has proved true as well. </VERS>\n\t\t\t<VERS vnumber=\"15\"> And his affection for you is much greater when he remembers the obedience of you all, how you welcomed him with fear and trembling. </VERS>\n\t\t\t<VERS vnumber=\"16\"> I rejoice because in everything I am fully confident in you.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"8\">\n\t\t\t<VERS vnumber=\"1\"> Now we make known to you, brothers and sisters, the grace of God given to the churches of Macedonia, </VERS>\n\t\t\t<VERS vnumber=\"2\"> that during a severe ordeal of suffering, their abundant joy and their extreme poverty have overflowed in the wealth of their generosity. </VERS>\n\t\t\t<VERS vnumber=\"3\"> For I testify, they gave according to their means and beyond their means. They did so voluntarily,</VERS>\n\t\t\t<VERS vnumber=\"4\"> begging us with great earnestness for the blessing and fellowship of helping the saints. </VERS>\n\t\t\t<VERS vnumber=\"5\"> And they did this not just as we had hoped, but they gave themselves first to the Lord and to us by the will of God.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Thus we urged Titus that, just as he had previously begun this work, so also he should complete this act of kindness for you. </VERS>\n\t\t\t<VERS vnumber=\"7\"> But as you excel in everything, in faith, in speech, in knowledge, and in all eagerness and in the love from us that is in you, make sure that you excel in this act of kindness too.</VERS>\n\t\t\t<VERS vnumber=\"8\"> I am not saying this as a command, but I am testing the genuineness of your love by comparison with the eagerness of others.</VERS>\n\t\t\t<VERS vnumber=\"9\"> For you know the grace of our Lord Jesus Christ, that although he was rich, he became poor for your sakes, so that you by his poverty could become rich. </VERS>\n\t\t\t<VERS vnumber=\"10\"> So here is my opinion on this matter: It is to your advantage, since you made a good start last year both in your giving and your desire to give, </VERS>\n\t\t\t<VERS vnumber=\"11\"> to finish what you started, so that just as you wanted to do it eagerly, you can also complete it according to your means.</VERS>\n\t\t\t<VERS vnumber=\"12\"> For if the eagerness is present, the gift itself is acceptable according to whatever one has, not according to what he does not have. </VERS>\n\t\t\t<VERS vnumber=\"13\"> For I do not say this so there would be relief for others and suffering for you, but as a matter of equality.</VERS>\n\t\t\t<VERS vnumber=\"14\"> At the present time, your abundance will meet their need, so that one day their abundance may also meet your need, and thus there may be equality, </VERS>\n\t\t\t<VERS vnumber=\"15\"> as it is written: \"The one who gathered much did not have too much, and the one who gathered little did not have too little.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> But thanks be to God who put in the heart of Titus the same devotion I have for you, </VERS>\n\t\t\t<VERS vnumber=\"17\"> because he not only accepted our request, but since he was very eager, he is coming to you of his own accord.</VERS>\n\t\t\t<VERS vnumber=\"18\"> And we are sending along with him the brother who is praised by all the churches for his work in spreading the gospel.</VERS>\n\t\t\t<VERS vnumber=\"19\"> In addition, this brother has also been chosen by the churches as our traveling companion as we administer this generous gift to the glory of the Lord himself and to show our readiness to help.</VERS>\n\t\t\t<VERS vnumber=\"20\"> We did this as a precaution so that no one should blame us in regard to this generous gift we are administering. </VERS>\n\t\t\t<VERS vnumber=\"21\"> For we are concerned about what is right not only before the Lord but also before men.</VERS>\n\t\t\t<VERS vnumber=\"22\"> And we are sending with them our brother whom we have tested many times and found eager in many matters, but who now is much more eager than ever because of the great confidence he has in you.</VERS>\n\t\t\t<VERS vnumber=\"23\"> If there is any question about Titus, he is my partner and fellow worker among you; if there is any question about our brothers, they are messengers of the churches, a glory to Christ. </VERS>\n\t\t\t<VERS vnumber=\"24\"> Therefore show them openly before the churches the proof of your love and of our pride in you.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"9\">\n\t\t\t<VERS vnumber=\"1\"> For it is not necessary for me to write you about this service to the saints, </VERS>\n\t\t\t<VERS vnumber=\"2\"> because I know your eagerness to help. I keep boasting to the Macedonians about this eagerness of yours, that Achaia has been ready to give since last year, and your zeal to participate has stirred up most of them.</VERS>\n\t\t\t<VERS vnumber=\"3\"> But I am sending these brothers so that our boasting about you may not be empty in this case, so that you may be ready just as I kept telling them. </VERS>\n\t\t\t<VERS vnumber=\"4\"> For if any of the Macedonians should come with me and find that you are not ready to give, we would be humiliated (not to mention you) by this confidence we had in you.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Therefore I thought it necessary to urge these brothers to go to you in advance and to arrange ahead of time the generous contribution you had promised, so this may be ready as a generous gift and not as something you feel forced to do.</VERS>\n\t\t\t<VERS vnumber=\"6\"> My point is this: The person who sows sparingly will also reap sparingly, and the person who sows generously will also reap generously. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Each one of you should give just as he has decided in his heart, not reluctantly or under compulsion, because God loves a cheerful giver. </VERS>\n\t\t\t<VERS vnumber=\"8\"> And God is able to make all grace overflow to you so that because you have enough of everything in every way at all times, you will overflow in every good work. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Just as it is written, \"He has scattered widely, he has given to the poor; his righteousness remains forever.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> Now God who provides seed for the sower and bread for food will provide and multiply your supply of seed and will cause the harvest of your righteousness to grow. </VERS>\n\t\t\t<VERS vnumber=\"11\"> You will be enriched in every way so that you may be generous on every occasion, which is producing through us thanksgiving to God, </VERS>\n\t\t\t<VERS vnumber=\"12\"> because the service of this ministry is not only providing for the needs of the saints but is also overflowing with many thanks to God. </VERS>\n\t\t\t<VERS vnumber=\"13\"> Through the evidence of this service they will glorify God because of your obedience to your confession in the gospel of Christ and the generosity of your sharing with them and with everyone. </VERS>\n\t\t\t<VERS vnumber=\"14\"> And in their prayers on your behalf they long for you because of the extraordinary grace God has shown to you.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Thanks be to God for his indescribable gift!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"10\">\n\t\t\t<VERS vnumber=\"1\"> Now I, Paul, appeal to you personally by the meekness and gentleness of Christ (I who am meek when present among you, but am full of courage toward you when away!),</VERS>\n\t\t\t<VERS vnumber=\"2\"> now I ask that when I am present I may not have to be bold with the confidence that (I expect) I will dare to use against some who consider us to be behaving according to human standards.</VERS>\n\t\t\t<VERS vnumber=\"3\"> For though we live as human beings, we do not wage war according to human standards,</VERS>\n\t\t\t<VERS vnumber=\"4\"> for the weapons of our warfare are not human weapons, but are made powerful by God for tearing down strongholds. We tear down arguments</VERS>\n\t\t\t<VERS vnumber=\"5\"> and every arrogant obstacle that is raised up against the knowledge of God, and we take every thought captive to make it obey Christ.</VERS>\n\t\t\t<VERS vnumber=\"6\"> We are also ready to punish every act of disobedience, whenever your obedience is complete. </VERS>\n\t\t\t<VERS vnumber=\"7\"> You are looking at outward appearances. If anyone is confident that he belongs to Christ, he should reflect on this again: Just as he himself belongs to Christ, so too do we. </VERS>\n\t\t\t<VERS vnumber=\"8\"> For if I boast somewhat more about our authority that the Lord gave us for building you up and not for tearing you down, I will not be ashamed of doing so.</VERS>\n\t\t\t<VERS vnumber=\"9\"> I do not want to seem as though I am trying to terrify you with my letters,</VERS>\n\t\t\t<VERS vnumber=\"10\"> because some say, \"His letters are weighty and forceful, but his physical presence is weak and his speech is of no account.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> Let such a person consider this: What we say by letters when we are absent, we also are in actions when we are present.</VERS>\n\t\t\t<VERS vnumber=\"12\"> For we would not dare to classify or compare ourselves with some of those who recommend themselves. But when they measure themselves by themselves and compare themselves with themselves, they are without understanding.</VERS>\n\t\t\t<VERS vnumber=\"13\"> But we will not boast beyond certain limits, but will confine our boasting according to the limits of the work to which God has appointed us, that reaches even as far as you. </VERS>\n\t\t\t<VERS vnumber=\"14\"> For we were not overextending ourselves, as though we did not reach as far as you, because we were the first to reach as far as you with the gospel about Christ.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Nor do we boast beyond certain limits in the work done by others, but we hope that as your faith continues to grow, our work may be greatly expanded among you according to our limits,</VERS>\n\t\t\t<VERS vnumber=\"16\"> so that we may preach the gospel in the regions that lie beyond you, and not boast of work already done in another person's area.</VERS>\n\t\t\t<VERS vnumber=\"17\"> But the one who boasts must boast in the Lord.</VERS>\n\t\t\t<VERS vnumber=\"18\"> For it is not the person who commends himself who is approved, but the person the Lord commends.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"11\">\n\t\t\t<VERS vnumber=\"1\"> I wish that you would be patient with me in a little foolishness, but indeed you are being patient with me!</VERS>\n\t\t\t<VERS vnumber=\"2\"> For I am jealous for you with godly jealousy, because I promised you in marriage to one husband, to present you as a pure virgin to Christ. </VERS>\n\t\t\t<VERS vnumber=\"3\"> But I am afraid that just as the serpent deceived Eve by his treachery, your minds may be led astray from a sincere and pure devotion to Christ. </VERS>\n\t\t\t<VERS vnumber=\"4\"> For if someone comes and proclaims another Jesus different from the one we proclaimed, or if you receive a different spirit than the one you received, or a different gospel than the one you accepted, you put up with it well enough!</VERS>\n\t\t\t<VERS vnumber=\"5\"> For I consider myself not at all inferior to those \"super-apostles.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> And even if I am unskilled in speaking, yet I am certainly not so in knowledge. Indeed, we have made this plain to you in everything in every way. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Or did I commit a sin by humbling myself so that you could be exalted, because I proclaimed the gospel of God to you free of charge? </VERS>\n\t\t\t<VERS vnumber=\"8\"> I robbed other churches by receiving support from them so that I could serve you!</VERS>\n\t\t\t<VERS vnumber=\"9\"> When I was with you and was in need, I was not a burden to anyone, for the brothers who came from Macedonia fully supplied my needs. I kept myself from being a burden to you in any way, and will continue to do so. </VERS>\n\t\t\t<VERS vnumber=\"10\"> As the truth of Christ is in me, this boasting of mine will not be stopped in the regions of Achaia. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Why? Because I do not love you? God knows I do!</VERS>\n\t\t\t<VERS vnumber=\"12\"> And what I am doing I will continue to do, so that I may eliminate any opportunity for those who want a chance to be regarded as our equals in the things they boast about. </VERS>\n\t\t\t<VERS vnumber=\"13\"> For such people are false apostles, deceitful workers, disguising themselves as apostles of Christ. </VERS>\n\t\t\t<VERS vnumber=\"14\"> And no wonder, for even Satan disguises himself as an angel of light. </VERS>\n\t\t\t<VERS vnumber=\"15\"> Therefore it is not surprising his servants also disguise themselves as servants of righteousness, whose end will correspond to their actions.</VERS>\n\t\t\t<VERS vnumber=\"16\"> I say again, let no one think that I am a fool. But if you do, then at least accept me as a fool, so that I too may boast a little. </VERS>\n\t\t\t<VERS vnumber=\"17\"> What I am saying with this boastful confidence I do not say the way the Lord would. Instead it is, as it were, foolishness. </VERS>\n\t\t\t<VERS vnumber=\"18\"> Since many are boasting according to human standards, I too will boast. </VERS>\n\t\t\t<VERS vnumber=\"19\"> For since you are so wise, you put up with fools gladly. </VERS>\n\t\t\t<VERS vnumber=\"20\"> For you put up with it if someone makes slaves of you, if someone exploits you, if someone takes advantage of you, if someone behaves arrogantly toward you, if someone strikes you in the face. </VERS>\n\t\t\t<VERS vnumber=\"21\"> (To my disgrace I must say that we were too weak for that!) But whatever anyone else dares to boast about (I am speaking foolishly), I also dare to boast about the same thing.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Are they Hebrews? So am I. Are they Israelites? So am I. Are they descendants of Abraham? So am I.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Are they servants of Christ? (I am talking like I am out of my mind!) I am even more so: with much greater labors, with far more imprisonments, with more severe beatings, facing death many times.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Five times I received from the Jews forty lashes less one.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Three times I was beaten with a rod. Once I received a stoning. Three times I suffered shipwreck. A night and a day I spent adrift in the open sea. </VERS>\n\t\t\t<VERS vnumber=\"26\"> I have been on journeys many times, in dangers from rivers, in dangers from robbers, in dangers from my own countrymen, in dangers from Gentiles, in dangers in the city, in dangers in the wilderness, in dangers at sea, in dangers from false brothers, </VERS>\n\t\t\t<VERS vnumber=\"27\"> in hard work and toil, through many sleepless nights, in hunger and thirst, many times without food, in cold and without enough clothing.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Apart from other things, there is the daily pressure on me of my anxious concern for all the churches. </VERS>\n\t\t\t<VERS vnumber=\"29\"> Who is weak, and I am not weak? Who is led into sin, and I do not burn with indignation? </VERS>\n\t\t\t<VERS vnumber=\"30\"> If I must boast, I will boast about the things that show my weakness.</VERS>\n\t\t\t<VERS vnumber=\"31\"> The God and Father of the Lord Jesus, who is blessed forever, knows I am not lying.</VERS>\n\t\t\t<VERS vnumber=\"32\"> In Damascus, the governor under King Aretas was guarding the city of Damascus in order to arrest me, </VERS>\n\t\t\t<VERS vnumber=\"33\"> but I was let down in a rope-basket through a window in the city wall, and escaped his hands.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"12\">\n\t\t\t<VERS vnumber=\"1\"> It is necessary to go on boasting. Though it is not profitable, I will go on to visions and revelations from the Lord. </VERS>\n\t\t\t<VERS vnumber=\"2\"> I know a man in Christ who fourteen years ago (whether in the body or out of the body I do not know, God knows) was caught up to the third heaven.</VERS>\n\t\t\t<VERS vnumber=\"3\"> And I know that this man (whether in the body or apart from the body I do not know, God knows)</VERS>\n\t\t\t<VERS vnumber=\"4\"> was caught up into paradise and heard things too sacred to be put into words, things that a person is not permitted to speak. </VERS>\n\t\t\t<VERS vnumber=\"5\"> On behalf of such an individual I will boast, but on my own behalf I will not boast, except about my weaknesses.</VERS>\n\t\t\t<VERS vnumber=\"6\"> For even if I wish to boast, I will not be a fool, for I would be telling the truth, but I refrain from this so that no one may regard me beyond what he sees in me or what he hears from me, </VERS>\n\t\t\t<VERS vnumber=\"7\"> even because of the extraordinary character of the revelations. Therefore, so that I would not become arrogant, a thorn in the flesh was given to me, a messenger of Satan to trouble me, so that I would not become arrogant.</VERS>\n\t\t\t<VERS vnumber=\"8\"> I asked the Lord three times about this, that it would depart from me.</VERS>\n\t\t\t<VERS vnumber=\"9\"> But he said to me, \"My grace is enough for you, for my power is made perfect in weakness.\" So then, I will boast most gladly about my weaknesses, so that the power of Christ may reside in me. </VERS>\n\t\t\t<VERS vnumber=\"10\"> Therefore I am content with weaknesses, with insults, with troubles, with persecutions and difficulties for the sake of Christ, for whenever I am weak, then I am strong.</VERS>\n\t\t\t<VERS vnumber=\"11\"> I have become a fool. You yourselves forced me to do it, for I should have been commended by you. For I lack nothing in comparison to those \"super-apostles,\" even though I am nothing. </VERS>\n\t\t\t<VERS vnumber=\"12\"> Indeed, the signs of an apostle were performed among you with great perseverance by signs and wonders and powerful deeds.</VERS>\n\t\t\t<VERS vnumber=\"13\"> For how were you treated worse than the other churches, except that I myself was not a burden to you? Forgive me this injustice! </VERS>\n\t\t\t<VERS vnumber=\"14\"> Look, for the third time I am ready to come to you, and I will not be a burden to you, because I do not want your possessions, but you. For children should not have to save up for their parents, but parents for their children. </VERS>\n\t\t\t<VERS vnumber=\"15\"> Now I will most gladly spend and be spent for your lives! If I love you more, am I to be loved less? </VERS>\n\t\t\t<VERS vnumber=\"16\"> But be that as it may, I have not burdened you. Yet because I was a crafty person, I took you in by deceit!</VERS>\n\t\t\t<VERS vnumber=\"17\"> I have not taken advantage of you through anyone I have sent to you, have I?</VERS>\n\t\t\t<VERS vnumber=\"18\"> I urged Titus to visit you and I sent our brother along with him. Titus did not take advantage of you, did he? Did we not conduct ourselves in the same spirit? Did we not behave in the same way?</VERS>\n\t\t\t<VERS vnumber=\"19\"> Have you been thinking all this time that we have been defending ourselves to you? We are speaking in Christ before God, and everything we do, dear friends, is to build you up.</VERS>\n\t\t\t<VERS vnumber=\"20\"> For I am afraid that somehow when I come I will not find you what I wish, and you will find me not what you wish. I am afraid that somehow there may be quarreling, jealousy, intense anger, selfish ambition, slander, gossip, arrogance, and disorder. </VERS>\n\t\t\t<VERS vnumber=\"21\"> I am afraid that when I come again, my God may humiliate me before you, and I will grieve for many of those who previously sinned and have not repented of the impurity, sexual immorality, and licentiousness that they have practiced.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"13\">\n\t\t\t<VERS vnumber=\"1\"> This is the third time I am coming to visit you. By the testimony of two or three witnesses every matter will be established.</VERS>\n\t\t\t<VERS vnumber=\"2\"> I said before when I was present the second time and now, though absent, I say again to those who sinned previously and to all the rest, that if I come again, I will not spare anyone,</VERS>\n\t\t\t<VERS vnumber=\"3\"> since you are demanding proof that Christ is speaking through me. He is not weak toward you but is powerful among you. </VERS>\n\t\t\t<VERS vnumber=\"4\"> For indeed he was crucified by reason of weakness, but he lives because of God's power. For we also are weak in him, but we will live together with him, because of God's power toward you.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Put yourselves to the test to see if you are in the faith; examine yourselves! Or do you not recognize regarding yourselves that Jesus Christ is in you, unless, indeed, you fail the test!</VERS>\n\t\t\t<VERS vnumber=\"6\"> And I hope that you will realize that we have not failed the test!</VERS>\n\t\t\t<VERS vnumber=\"7\"> Now we pray to God that you may not do anything wrong, not so that we may appear to have passed the test, but so that you may do what is right even if we may appear to have failed the test.</VERS>\n\t\t\t<VERS vnumber=\"8\"> For we cannot do anything against the truth, but only for the sake of the truth.</VERS>\n\t\t\t<VERS vnumber=\"9\"> For we rejoice whenever we are weak, but you are strong. And we pray for this: that you may become fully qualified.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Because of this I am writing these things while absent, so that when I arrive I may not have to deal harshly with you by using my authority, the Lord gave it to me for building up, not for tearing down!</VERS>\n\t\t\t<VERS vnumber=\"11\"> Finally, brothers and sisters, rejoice, set things right, be encouraged, agree with one another, live in peace, and the God of love and peace will be with you. </VERS>\n\t\t\t<VERS vnumber=\"12\">  Greet one another with a holy kiss. All the saints greet you. </VERS>\n\t\t\t<VERS vnumber=\"13\"> The grace of the Lord Jesus Christ and the love of God and the fellowship of the Holy Spirit be with you all.</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"48\" bname=\"Galatians\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> From Paul, an apostle (not from men, nor by human agency, but by Jesus Christ and God the Father who raised him from the dead) </VERS>\n\t\t\t<VERS vnumber=\"2\"> and all the brothers with me, to the churches of Galatia.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Grace and peace to you from God the Father and our Lord Jesus Christ, </VERS>\n\t\t\t<VERS vnumber=\"4\"> who gave himself for our sins to rescue us from this present evil age according to the will of our God and Father,</VERS>\n\t\t\t<VERS vnumber=\"5\"> to whom be glory forever and ever! Amen.</VERS>\n\t\t\t<VERS vnumber=\"6\"> I am astonished that you are so quickly deserting the one who called you by the grace of Christ and are following a different gospel,</VERS>\n\t\t\t<VERS vnumber=\"7\"> not that there really is another gospel, but there are some who are disturbing you and wanting to distort the gospel of Christ. </VERS>\n\t\t\t<VERS vnumber=\"8\"> But even if we (or an angel from heaven) should preach a gospel contrary to the one we preached to you, let him be condemned to hell!</VERS>\n\t\t\t<VERS vnumber=\"9\"> As we have said before, and now I say again, if any one is preaching to you a gospel contrary to what you received, let him be condemned to hell!</VERS>\n\t\t\t<VERS vnumber=\"10\"> Am I now trying to gain the approval of people, or of God? Or am I trying to please people? If I were still trying to please people, I would not be a slave of Christ!</VERS>\n\t\t\t<VERS vnumber=\"11\"> Now I want you to know, brothers and sisters, that the gospel I preached is not of human origin.</VERS>\n\t\t\t<VERS vnumber=\"12\"> For I did not receive it or learn it from any human source; instead I received it by a revelation of Jesus Christ.</VERS>\n\t\t\t<VERS vnumber=\"13\"> For you have heard of my former way of life in Judaism, how I was savagely persecuting the church of God and trying to destroy it. </VERS>\n\t\t\t<VERS vnumber=\"14\"> I was advancing in Judaism beyond many of my contemporaries in my nation, and was extremely zealous for the traditions of my ancestors.</VERS>\n\t\t\t<VERS vnumber=\"15\"> But when the one who set me apart from birth and called me by his grace was pleased </VERS>\n\t\t\t<VERS vnumber=\"16\"> to reveal his Son in me so that I could preach him among the Gentiles, I did not go to ask advice from any human being,</VERS>\n\t\t\t<VERS vnumber=\"17\"> nor did I go up to Jerusalem to see those who were apostles before me, but right away I departed to Arabia, and then returned to Damascus.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Then after three years I went up to Jerusalem to visit Cephas and get information from him, and I stayed with him fifteen days. </VERS>\n\t\t\t<VERS vnumber=\"19\"> But I saw none of the other apostles except James the Lord's brother. </VERS>\n\t\t\t<VERS vnumber=\"20\"> I assure you that, before God, I am not lying about what I am writing to you!</VERS>\n\t\t\t<VERS vnumber=\"21\"> Afterward I went to the regions of Syria and Cilicia.</VERS>\n\t\t\t<VERS vnumber=\"22\"> But I was personally unknown to the churches of Judea that are in Christ. </VERS>\n\t\t\t<VERS vnumber=\"23\"> They were only hearing, \"The one who once persecuted us is now proclaiming the good news of the faith he once tried to destroy.\" </VERS>\n\t\t\t<VERS vnumber=\"24\"> So they glorified God because of me.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> Then after fourteen years I went up to Jerusalem again with Barnabas, taking Titus along too. </VERS>\n\t\t\t<VERS vnumber=\"2\"> I went there because of a revelation and presented to them the gospel that I preach among the Gentiles. But I did so only in a private meeting with the influential people, to make sure that I was not running, or had not run, in vain.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Yet not even Titus, who was with me, was compelled to be circumcised, although he was a Greek. </VERS>\n\t\t\t<VERS vnumber=\"4\"> Now this matter arose because of the false brothers with false pretenses who slipped in unnoticed to spy on our freedom that we have in Christ Jesus, to make us slaves.</VERS>\n\t\t\t<VERS vnumber=\"5\"> But we did not surrender to them even for a moment, in order that the truth of the gospel would remain with you.</VERS>\n\t\t\t<VERS vnumber=\"6\"> But from those who were influential (whatever they were makes no difference to me; God shows no favoritism between people), those influential leaders added nothing to my message.</VERS>\n\t\t\t<VERS vnumber=\"7\"> On the contrary, when they saw that I was entrusted with the gospel to the uncircumcised just as Peter was to the circumcised</VERS>\n\t\t\t<VERS vnumber=\"8\"> (for he who empowered Peter for his apostleship to the circumcised also empowered me for my apostleship to the Gentiles)</VERS>\n\t\t\t<VERS vnumber=\"9\"> and when James, Cephas, and John, who had a reputation as pillars, recognized the grace that had been given to me, they gave to Barnabas and me the right hand of fellowship, agreeing that we would go to the Gentiles and they to the circumcised.</VERS>\n\t\t\t<VERS vnumber=\"10\"> They requested only that we remember the poor, the very thing I also was eager to do.</VERS>\n\t\t\t<VERS vnumber=\"11\"> But when Cephas came to Antioch, I opposed him to his face, because he had clearly done wrong.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Until certain people came from James, he had been eating with the Gentiles. But when they arrived, he stopped doing this and separated himself because he was afraid of those who were pro-circumcision.</VERS>\n\t\t\t<VERS vnumber=\"13\"> And the rest of the Jews also joined with him in this hypocrisy, so that even Barnabas was led astray with them by their hypocrisy. </VERS>\n\t\t\t<VERS vnumber=\"14\"> But when I saw that they were not behaving consistently with the truth of the gospel, I said to Cephas in front of them all, \"If you, although you are a Jew, live like a Gentile and not like a Jew, how can you try to force the Gentiles to live like Jews?\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> We are Jews by birth and not Gentile sinners,</VERS>\n\t\t\t<VERS vnumber=\"16\"> yet we know that no one is justified by the works of the law but by the faithfulness of Jesus Christ. And we have come to believe in Christ Jesus, so that we may be justified by the faithfulness of Christ and not by the works of the law, because by the works of the law no one will be justified.</VERS>\n\t\t\t<VERS vnumber=\"17\"> But if while seeking to be justified in Christ we ourselves have also been found to be sinners, is Christ then one who encourages sin? Absolutely not! </VERS>\n\t\t\t<VERS vnumber=\"18\"> But if I build up again those things I once destroyed, I demonstrate that I am one who breaks God's law.</VERS>\n\t\t\t<VERS vnumber=\"19\"> For through the law I died to the law so that I may live to God.</VERS>\n\t\t\t<VERS vnumber=\"20\"> I have been crucified with Christ, and it is no longer I who live, but Christ lives in me. So the life I now live in the body, I live because of the faithfulness of the Son of God, who loved me and gave himself for me. </VERS>\n\t\t\t<VERS vnumber=\"21\"> I do not set aside God's grace, because if righteousness could come through the law, then Christ died for nothing!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> You foolish Galatians! Who has cast a spell on you? Before your eyes Jesus Christ was vividly portrayed as crucified! </VERS>\n\t\t\t<VERS vnumber=\"2\"> The only thing I want to learn from you is this: Did you receive the Spirit by doing the works of the law or by believing what you heard?</VERS>\n\t\t\t<VERS vnumber=\"3\"> Are you so foolish? Although you began with the Spirit, are you now trying to finish by human effort?</VERS>\n\t\t\t<VERS vnumber=\"4\"> Have you suffered so many things for nothing?, if indeed it was for nothing.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Does God then give you the Spirit and work miracles among you by your doing the works of the law or by your believing what you heard?</VERS>\n\t\t\t<VERS vnumber=\"6\"> Just as Abraham believed God, and it was credited to him as righteousness,</VERS>\n\t\t\t<VERS vnumber=\"7\"> so then, understand that those who believe are the sons of Abraham.</VERS>\n\t\t\t<VERS vnumber=\"8\"> And the scripture, foreseeing that God would justify the Gentiles by faith, proclaimed the gospel to Abraham ahead of time, saying, \"All the nations will be blessed in you.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> So then those who believe are blessed along with Abraham the believer. </VERS>\n\t\t\t<VERS vnumber=\"10\"> For all who rely on doing the works of the law are under a curse, because it is written, \"Cursed is everyone who does not keep on doing everything written in the book of the law.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> Now it is clear no one is justified before God by the law, because the righteous one will live by faith.</VERS>\n\t\t\t<VERS vnumber=\"12\"> But the law is not based on faith, but the one who does the works of the law will live by them.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Christ redeemed us from the curse of the law by becoming a curse for us (because it is written, \"Cursed is everyone who hangs on a tree\")</VERS>\n\t\t\t<VERS vnumber=\"14\"> in order that in Christ Jesus the blessing of Abraham would come to the Gentiles, so that we could receive the promise of the Spirit by faith.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Brothers and sisters, I offer an example from everyday life: When a covenant has been ratified, even though it is only a human contract, no one can set it aside or add anything to it. </VERS>\n\t\t\t<VERS vnumber=\"16\"> Now the promises were spoken to Abraham and to his descendant. Scripture does not say, \"and to the descendants,\" referring to many, but \"and to your descendant,\" referring to one, who is Christ. </VERS>\n\t\t\t<VERS vnumber=\"17\"> What I am saying is this: The law that came four hundred thirty years later does not cancel a covenant previously ratified by God, so as to invalidate the promise. </VERS>\n\t\t\t<VERS vnumber=\"18\"> For if the inheritance is based on the law, it is no longer based on the promise, but God graciously gave it to Abraham through the promise.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Why then was the law given? It was added because of transgressions, until the arrival of the descendant to whom the promise had been made. It was administered through angels by an intermediary.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Now an intermediary is not for one party alone, but God is one.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Is the law therefore opposed to the promises of God? Absolutely not! For if a law had been given that was able to give life, then righteousness would certainly have come by the law.</VERS>\n\t\t\t<VERS vnumber=\"22\"> But the scripture imprisoned everything and everyone under sin so that the promise could be given, because of the faithfulness of Jesus Christ, to those who believe.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Now before faith came we were held in custody under the law, being kept as prisoners until the coming faith would be revealed. </VERS>\n\t\t\t<VERS vnumber=\"24\"> Thus the law had become our guardian until Christ, so that we could be declared righteous by faith. </VERS>\n\t\t\t<VERS vnumber=\"25\"> But now that faith has come, we are no longer under a guardian.</VERS>\n\t\t\t<VERS vnumber=\"26\"> For in Christ Jesus you are all sons of God through faith.</VERS>\n\t\t\t<VERS vnumber=\"27\"> For all of you who were baptized into Christ have clothed yourselves with Christ. </VERS>\n\t\t\t<VERS vnumber=\"28\"> There is neither Jew nor Greek, there is neither slave nor free, there is neither male nor female, for all of you are one in Christ Jesus.</VERS>\n\t\t\t<VERS vnumber=\"29\"> And if you belong to Christ, then you are Abraham's descendants, heirs according to the promise.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\"> Now I mean that the heir, as long as he is a minor, is no different from a slave, though he is the owner of everything. </VERS>\n\t\t\t<VERS vnumber=\"2\"> But he is under guardians and managers until the date set by his father. </VERS>\n\t\t\t<VERS vnumber=\"3\"> So also we, when we were minors, were enslaved under the basic forces of the world. </VERS>\n\t\t\t<VERS vnumber=\"4\"> But when the appropriate time had come, God sent out his Son, born of a woman, born under the law, </VERS>\n\t\t\t<VERS vnumber=\"5\"> to redeem those who were under the law, so that we may be adopted as sons with full rights.</VERS>\n\t\t\t<VERS vnumber=\"6\"> And because you are sons, God sent the Spirit of his Son into our hearts, who calls \"Abba! Father!\" </VERS>\n\t\t\t<VERS vnumber=\"7\"> So you are no longer a slave but a son, and if you are a son, then you are also an heir through God.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Formerly when you did not know God, you were enslaved to beings that by nature are not gods at all.</VERS>\n\t\t\t<VERS vnumber=\"9\"> But now that you have come to know God (or rather to be known by God), how can you turn back again to the weak and worthless basic forces? Do you want to be enslaved to them all over again?</VERS>\n\t\t\t<VERS vnumber=\"10\"> You are observing religious days and months and seasons and years. </VERS>\n\t\t\t<VERS vnumber=\"11\"> I fear for you that my work for you may have been in vain.</VERS>\n\t\t\t<VERS vnumber=\"12\"> I beg you, brothers and sisters, become like me, because I have become like you. You have done me no wrong!</VERS>\n\t\t\t<VERS vnumber=\"13\"> But you know it was because of a physical illness that I first proclaimed the gospel to you,</VERS>\n\t\t\t<VERS vnumber=\"14\"> and though my physical condition put you to the test, you did not despise or reject me. Instead, you welcomed me as though I were an angel of God, as though I were Christ Jesus himself!</VERS>\n\t\t\t<VERS vnumber=\"15\"> Where then is your sense of happiness now? For I testify about you that if it were possible, you would have pulled out your eyes and given them to me! </VERS>\n\t\t\t<VERS vnumber=\"16\"> So then, have I become your enemy by telling you the truth?</VERS>\n\t\t\t<VERS vnumber=\"17\"> They court you eagerly, but for no good purpose; they want to exclude you, so that you would seek them eagerly.</VERS>\n\t\t\t<VERS vnumber=\"18\"> However, it is good to be sought eagerly for a good purpose at all times, and not only when I am present with you. </VERS>\n\t\t\t<VERS vnumber=\"19\"> My children, I am again undergoing birth pains until Christ is formed in you!</VERS>\n\t\t\t<VERS vnumber=\"20\"> I wish I could be with you now and change my tone of voice, because I am perplexed about you.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Tell me, you who want to be under the law, do you not understand the law?</VERS>\n\t\t\t<VERS vnumber=\"22\"> For it is written that Abraham had two sons, one by the slave woman and the other by the free woman. </VERS>\n\t\t\t<VERS vnumber=\"23\"> But one, the son by the slave woman, was born by natural descent, while the other, the son by the free woman, was born through the promise. </VERS>\n\t\t\t<VERS vnumber=\"24\"> These things may be treated as an allegory, for these women represent two covenants. One is from Mount Sinai bearing children for slavery; this is Hagar. </VERS>\n\t\t\t<VERS vnumber=\"25\"> Now Hagar represents Mount Sinai in Arabia and corresponds to the present Jerusalem, for she is in slavery with her children.</VERS>\n\t\t\t<VERS vnumber=\"26\"> But the Jerusalem above is free, and she is our mother. </VERS>\n\t\t\t<VERS vnumber=\"27\"> For it is written: \"Rejoice, O barren woman who does not bear children; break forth and shout, you who have no birth pains, because the children of the desolate woman are more numerous than those of the woman who has a husband.\"</VERS>\n\t\t\t<VERS vnumber=\"28\"> But you, brothers and sisters, are children of the promise like Isaac. </VERS>\n\t\t\t<VERS vnumber=\"29\"> But just as at that time the one born by natural descent persecuted the one born according to the Spirit, so it is now. </VERS>\n\t\t\t<VERS vnumber=\"30\"> But what does the scripture say? \"Throw out the slave woman and her son, for the son of the slave woman will not share the inheritance with the son\" of the free woman. </VERS>\n\t\t\t<VERS vnumber=\"31\"> Therefore, brothers and sisters, we are not children of the slave woman but of the free woman.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"5\">\n\t\t\t<VERS vnumber=\"1\"> For freedom Christ has set us free. Stand firm, then, and do not be subject again to the yoke of slavery. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Listen! I, Paul, tell you that if you let yourselves be circumcised, Christ will be of no benefit to you at all!</VERS>\n\t\t\t<VERS vnumber=\"3\"> And I testify again to every man who lets himself be circumcised that he is obligated to obey the whole law. </VERS>\n\t\t\t<VERS vnumber=\"4\"> You who are trying to be declared righteous by the law have been alienated from Christ; you have fallen away from grace! </VERS>\n\t\t\t<VERS vnumber=\"5\"> For through the Spirit, by faith, we wait expectantly for the hope of righteousness.</VERS>\n\t\t\t<VERS vnumber=\"6\"> For in Christ Jesus neither circumcision nor uncircumcision carries any weight, the only thing that matters is faith working through love.</VERS>\n\t\t\t<VERS vnumber=\"7\"> You were running well; who prevented you from obeying the truth? </VERS>\n\t\t\t<VERS vnumber=\"8\"> This persuasion does not come from the one who calls you! </VERS>\n\t\t\t<VERS vnumber=\"9\"> A little yeast makes the whole batch of dough rise!</VERS>\n\t\t\t<VERS vnumber=\"10\"> I am confident in the Lord that you will accept no other view. But the one who is confusing you will pay the penalty, whoever he may be.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Now, brothers and sisters, if I am still preaching circumcision, why am I still being persecuted? In that case the offense of the cross has been removed.</VERS>\n\t\t\t<VERS vnumber=\"12\"> I wish those agitators would go so far as to castrate themselves!</VERS>\n\t\t\t<VERS vnumber=\"13\"> For you were called to freedom, brothers and sisters; only do not use your freedom as an opportunity to indulge your flesh, but through love serve one another.</VERS>\n\t\t\t<VERS vnumber=\"14\"> For the whole law can be summed up in a single commandment, namely, \"You must love your neighbor as yourself.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> However, if you continually bite and devour one another, beware that you are not consumed by one another. </VERS>\n\t\t\t<VERS vnumber=\"16\"> But I say, live by the Spirit and you will not carry out the desires of the flesh.</VERS>\n\t\t\t<VERS vnumber=\"17\"> For the flesh has desires that are opposed to the Spirit, and the Spirit has desires that are opposed to the flesh, for these are in opposition to each other, so that you cannot do what you want. </VERS>\n\t\t\t<VERS vnumber=\"18\"> But if you are led by the Spirit, you are not under the law.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Now the works of the flesh are obvious: sexual immorality, impurity, depravity, </VERS>\n\t\t\t<VERS vnumber=\"20\"> idolatry, sorcery, hostilities, strife, jealousy, outbursts of anger, selfish rivalries, dissensions, factions, </VERS>\n\t\t\t<VERS vnumber=\"21\"> envying, murder, drunkenness, carousing, and similar things. I am warning you, as I had warned you before: Those who practice such things will not inherit the kingdom of God!</VERS>\n\t\t\t<VERS vnumber=\"22\"> But the fruit of the Spirit is love, joy, peace, patience, kindness, goodness, faithfulness,</VERS>\n\t\t\t<VERS vnumber=\"23\"> gentleness, and self-control. Against such things there is no law. </VERS>\n\t\t\t<VERS vnumber=\"24\"> Now those who belong to Christ have crucified the flesh with its passions and desires. </VERS>\n\t\t\t<VERS vnumber=\"25\"> If we live by the Spirit, let us also behave in accordance with the Spirit. </VERS>\n\t\t\t<VERS vnumber=\"26\"> Let us not become conceited, provoking one another, being jealous of one another.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"6\">\n\t\t\t<VERS vnumber=\"1\"> Brothers and sisters, if a person is discovered in some sin, you who are spiritual restore such a person in a spirit of gentleness. Pay close attention to yourselves, so that you are not tempted too. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Carry one another's burdens, and in this way you will fulfill the law of Christ.</VERS>\n\t\t\t<VERS vnumber=\"3\"> For if anyone thinks he is something when he is nothing, he deceives himself.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Let each one examine his own work. Then he can take pride in himself and not compare himself with someone else. </VERS>\n\t\t\t<VERS vnumber=\"5\"> For each one will carry his own load.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Now the one who receives instruction in the word must share all good things with the one who teaches it. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Do not be deceived. God will not be made a fool. For a person will reap what he sows, </VERS>\n\t\t\t<VERS vnumber=\"8\"> because the person who sows to his own flesh will reap corruption from the flesh, but the one who sows to the Spirit will reap eternal life from the Spirit. </VERS>\n\t\t\t<VERS vnumber=\"9\"> So we must not grow weary in doing good, for in due time we will reap, if we do not give up.</VERS>\n\t\t\t<VERS vnumber=\"10\"> So then, whenever we have an opportunity, let us do good to all people, and especially to those who belong to the family of faith.</VERS>\n\t\t\t<VERS vnumber=\"11\"> See what big letters I make as I write to you with my own hand!</VERS>\n\t\t\t<VERS vnumber=\"12\"> Those who want to make a good showing in external matters are trying to force you to be circumcised. They do so only to avoid being persecuted for the cross of Christ. </VERS>\n\t\t\t<VERS vnumber=\"13\"> For those who are circumcised do not obey the law themselves, but they want you to be circumcised so that they can boast about your flesh.</VERS>\n\t\t\t<VERS vnumber=\"14\"> But may I never boast except in the cross of our Lord Jesus Christ, through which the world has been crucified to me, and I to the world.</VERS>\n\t\t\t<VERS vnumber=\"15\"> For neither circumcision nor uncircumcision counts for anything; the only thing that matters is a new creation!</VERS>\n\t\t\t<VERS vnumber=\"16\"> And all who will behave in accordance with this rule, peace and mercy be on them, and on the Israel of God.</VERS>\n\t\t\t<VERS vnumber=\"17\"> From now on let no one cause me trouble, for I bear the marks of Jesus on my body.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The grace of our Lord Jesus Christ be with your spirit, brothers and sisters. Amen.</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"49\" bname=\"Ephesians\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> From Paul, an apostle of Christ Jesus by the will of God, to the saints [in Ephesus], the faithful in Christ Jesus. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Grace and peace to you from God our Father and the Lord Jesus Christ!</VERS>\n\t\t\t<VERS vnumber=\"3\"> Blessed is the God and Father of our Lord Jesus Christ, who has blessed us with every spiritual blessing in the heavenly realms in Christ.</VERS>\n\t\t\t<VERS vnumber=\"4\"> For he chose us in Christ before the foundation of the world that we may be holy and unblemished in his sight in love.</VERS>\n\t\t\t<VERS vnumber=\"5\"> He did this by predestining us to adoption as his sons through Jesus Christ, according to the pleasure of his will,</VERS>\n\t\t\t<VERS vnumber=\"6\"> to the praise of the glory of his grace that he has freely bestowed on us in his dearly loved Son.</VERS>\n\t\t\t<VERS vnumber=\"7\"> In him we have redemption through his blood, the forgiveness of our trespasses, according to the riches of his grace</VERS>\n\t\t\t<VERS vnumber=\"8\"> that he lavished on us in all wisdom and insight.</VERS>\n\t\t\t<VERS vnumber=\"9\"> He did this when he revealed to us the secret of his will, according to his good pleasure that he set forth in Christ,</VERS>\n\t\t\t<VERS vnumber=\"10\"> toward the administration of the fullness of the times, to head up all things in Christ, the things in heaven and the things on earth.</VERS>\n\t\t\t<VERS vnumber=\"11\"> In Christ we too have been claimed as God's own possession, since we were predestined according to the one purpose of him who accomplishes all things according to the counsel of his will </VERS>\n\t\t\t<VERS vnumber=\"12\"> so that we, who were the first to set our hope on Christ, would be to the praise of his glory. </VERS>\n\t\t\t<VERS vnumber=\"13\"> And when you heard the word of truth (the gospel of your salvation), when you believed in Christ, you were marked with the seal of the promised Holy Spirit,</VERS>\n\t\t\t<VERS vnumber=\"14\"> who is the down payment of our inheritance, until the redemption of God's own possession, to the praise of his glory.</VERS>\n\t\t\t<VERS vnumber=\"15\"> For this reason, because I have heard of your faith in the Lord Jesus and your love for all the saints, </VERS>\n\t\t\t<VERS vnumber=\"16\"> I do not cease to give thanks for you when I remember you in my prayers. </VERS>\n\t\t\t<VERS vnumber=\"17\"> I pray that the God of our Lord Jesus Christ, the Father of glory, may give you spiritual wisdom and revelation in your growing knowledge of him,</VERS>\n\t\t\t<VERS vnumber=\"18\"> , since the eyes of your heart have been enlightened, so that you may know what is the hope of his calling, what is the wealth of his glorious inheritance in the saints,</VERS>\n\t\t\t<VERS vnumber=\"19\"> and what is the incomparable greatness of his power toward us who believe, as displayed in the exercise of his immense strength.</VERS>\n\t\t\t<VERS vnumber=\"20\"> This power he exercised in Christ when he raised him from the dead and seated him at his right hand in the heavenly realms</VERS>\n\t\t\t<VERS vnumber=\"21\"> far above every rule and authority and power and dominion and every name that is named, not only in this age but also in the one to come.</VERS>\n\t\t\t<VERS vnumber=\"22\"> And God put all things under Christ's feet, and he gave him to the church as head over all things.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Now the church is his body, the fullness of him who fills all in all.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> And although you were dead in your transgressions and sins, </VERS>\n\t\t\t<VERS vnumber=\"2\"> in which you formerly lived according to this world's present path, according to the ruler of the kingdom of the air, the ruler of the spirit that is now energizing the sons of disobedience,</VERS>\n\t\t\t<VERS vnumber=\"3\"> among whom all of us also formerly lived out our lives in the cravings of our flesh, indulging the desires of the flesh and the mind, and were by nature children of wrath even as the rest,</VERS>\n\t\t\t<VERS vnumber=\"4\"> But God, being rich in mercy, because of his great love with which he loved us,</VERS>\n\t\t\t<VERS vnumber=\"5\"> even though we were dead in transgressions, made us alive together with Christ, by grace you are saved!,</VERS>\n\t\t\t<VERS vnumber=\"6\"> and he raised us up with him and seated us with him in the heavenly realms in Christ Jesus,</VERS>\n\t\t\t<VERS vnumber=\"7\"> to demonstrate in the coming ages the surpassing wealth of his grace in kindness toward us in Christ Jesus. </VERS>\n\t\t\t<VERS vnumber=\"8\"> For by grace you are saved through faith, and this is not from yourselves, it is the gift of God; </VERS>\n\t\t\t<VERS vnumber=\"9\"> it is not from works, so that no one can boast.</VERS>\n\t\t\t<VERS vnumber=\"10\"> For we are his workmanship, having been created in Christ Jesus for good works that God prepared beforehand so we may do them.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Therefore remember that formerly you, the Gentiles in the flesh, who are called \"uncircumcision\" by the so-called \"circumcision\" that is performed on the body by human hands,</VERS>\n\t\t\t<VERS vnumber=\"12\"> that you were at that time without the Messiah, alienated from the citizenship of Israel and strangers to the covenants of promise, having no hope and without God in the world. </VERS>\n\t\t\t<VERS vnumber=\"13\"> But now in Christ Jesus you who used to be far away have been brought near by the blood of Christ.</VERS>\n\t\t\t<VERS vnumber=\"14\"> For he is our peace, the one who made both groups into one and who destroyed the middle wall of partition, the hostility, </VERS>\n\t\t\t<VERS vnumber=\"15\"> when he nullified in his flesh the law of commandments in decrees. He did this to create in himself one new man out of two, thus making peace, </VERS>\n\t\t\t<VERS vnumber=\"16\"> and to reconcile them both in one body to God through the cross, by which the hostility has been killed.</VERS>\n\t\t\t<VERS vnumber=\"17\"> And he came and preached peace to you who were far off and peace to those who were near,</VERS>\n\t\t\t<VERS vnumber=\"18\"> so that through him we both have access in one Spirit to the Father. </VERS>\n\t\t\t<VERS vnumber=\"19\"> So then you are no longer foreigners and noncitizens, but you are fellow citizens with the saints and members of God's household,</VERS>\n\t\t\t<VERS vnumber=\"20\"> because you have been built on the foundation of the apostles and prophets, with Christ Jesus himself as the cornerstone.</VERS>\n\t\t\t<VERS vnumber=\"21\"> In him the whole building, being joined together, grows into a holy temple in the Lord, </VERS>\n\t\t\t<VERS vnumber=\"22\"> in whom you also are being built together into a dwelling place of God in the Spirit.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> For this reason I, Paul, the prisoner of Christ Jesus for the sake of you Gentiles,</VERS>\n\t\t\t<VERS vnumber=\"2\"> if indeed you have heard of the stewardship of God's grace that was given to me for you, </VERS>\n\t\t\t<VERS vnumber=\"3\"> that by revelation the divine secret was made known to me, as I wrote before briefly.</VERS>\n\t\t\t<VERS vnumber=\"4\"> When reading this, you will be able to understand my insight into this secret of Christ. </VERS>\n\t\t\t<VERS vnumber=\"5\"> Now this secret was not disclosed to people in former generations as it has now been revealed to his holy apostles and prophets by the Spirit, </VERS>\n\t\t\t<VERS vnumber=\"6\"> namely, that through the gospel the Gentiles are fellow heirs, fellow members of the body, and fellow partakers of the promise in Christ Jesus. </VERS>\n\t\t\t<VERS vnumber=\"7\"> I became a servant of this gospel according to the gift of God's grace that was given to me by the exercise of his power.</VERS>\n\t\t\t<VERS vnumber=\"8\"> To me, less than the least of all the saints, this grace was given, to proclaim to the Gentiles the unfathomable riches of Christ</VERS>\n\t\t\t<VERS vnumber=\"9\"> and to enlighten everyone about God's secret plan, a secret that has been hidden for ages in God who has created all things.</VERS>\n\t\t\t<VERS vnumber=\"10\"> The purpose of this enlightenment is that through the church the multifaceted wisdom of God should now be disclosed to the rulers and the authorities in the heavenly realms.</VERS>\n\t\t\t<VERS vnumber=\"11\"> This was according to the eternal purpose that he accomplished in Christ Jesus our Lord, </VERS>\n\t\t\t<VERS vnumber=\"12\"> in whom we have boldness and confident access to God because of Christ's faithfulness.</VERS>\n\t\t\t<VERS vnumber=\"13\"> For this reason I ask you not to lose heart because of what I am suffering for you, which is your glory.</VERS>\n\t\t\t<VERS vnumber=\"14\"> For this reason I kneel before the Father,</VERS>\n\t\t\t<VERS vnumber=\"15\"> from whom every family in heaven and on the earth is named. </VERS>\n\t\t\t<VERS vnumber=\"16\"> I pray that according to the wealth of his glory he may grant you to be strengthened with power through his Spirit in the inner person, </VERS>\n\t\t\t<VERS vnumber=\"17\"> that Christ may dwell in your hearts through faith, so that, because you have been rooted and grounded in love,</VERS>\n\t\t\t<VERS vnumber=\"18\"> you may be able to comprehend with all the saints what is the breadth and length and height and depth,</VERS>\n\t\t\t<VERS vnumber=\"19\"> and thus to know the love of Christ that surpasses knowledge, so that you may be filled up to all the fullness of God.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Now to him who by the power that is working within us is able to do far beyond all that we ask or think, </VERS>\n\t\t\t<VERS vnumber=\"21\"> to him be the glory in the church and in Christ Jesus to all generations, forever and ever. Amen.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\"> I, therefore, the prisoner for the Lord, urge you to live worthily of the calling with which you have been called,</VERS>\n\t\t\t<VERS vnumber=\"2\"> with all humility and gentleness, with patience, bearing with one another in love, </VERS>\n\t\t\t<VERS vnumber=\"3\"> making every effort to keep the unity of the Spirit in the bond of peace.</VERS>\n\t\t\t<VERS vnumber=\"4\"> There is one body and one Spirit, just as you too were called to the one hope of your calling,</VERS>\n\t\t\t<VERS vnumber=\"5\"> one Lord, one faith, one baptism,</VERS>\n\t\t\t<VERS vnumber=\"6\"> one God and Father of all, who is over all and through all and in all.</VERS>\n\t\t\t<VERS vnumber=\"7\"> But to each one of us grace was given according to the measure of the gift of Christ.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Therefore it says, \"When he ascended on high he captured captives; he gave gifts to men.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> Now what is the meaning of \"he ascended,\" except that he also descended to the lower regions, namely, the earth?</VERS>\n\t\t\t<VERS vnumber=\"10\"> He, the very one who descended, is also the one who ascended above all the heavens, in order to fill all things.</VERS>\n\t\t\t<VERS vnumber=\"11\"> It was he who gave some as apostles, some as prophets, some as evangelists, and some as pastors and teachers,</VERS>\n\t\t\t<VERS vnumber=\"12\"> to equip the saints for the work of ministry, that is, to build up the body of Christ, </VERS>\n\t\t\t<VERS vnumber=\"13\"> until we all attain to the unity of the faith and of the knowledge of the Son of God, a mature person, attaining to the measure of Christ's full stature.</VERS>\n\t\t\t<VERS vnumber=\"14\"> So we are no longer to be children, tossed back and forth by waves and carried about by every wind of teaching by the trickery of people who craftily carry out their deceitful schemes.</VERS>\n\t\t\t<VERS vnumber=\"15\"> But practicing the truth in love, we will in all things grow up into Christ, who is the head. </VERS>\n\t\t\t<VERS vnumber=\"16\"> From him the whole body grows, fitted and held together through every supporting ligament. As each one does its part, the body grows in love.</VERS>\n\t\t\t<VERS vnumber=\"17\"> So I say this, and insist in the Lord, that you no longer live as the Gentiles do, in the futility of their thinking.</VERS>\n\t\t\t<VERS vnumber=\"18\"> They are darkened in their understanding, being alienated from the life of God because of the ignorance that is in them due to the hardness of their hearts. </VERS>\n\t\t\t<VERS vnumber=\"19\"> Because they are callous, they have given themselves over to indecency for the practice of every kind of impurity with greediness.</VERS>\n\t\t\t<VERS vnumber=\"20\"> But you did not learn about Christ like this,</VERS>\n\t\t\t<VERS vnumber=\"21\"> if indeed you heard about him and were taught in him, just as the truth is in Jesus.</VERS>\n\t\t\t<VERS vnumber=\"22\"> You were taught with reference to your former way of life to lay aside the old man who is being corrupted in accordance with deceitful desires, </VERS>\n\t\t\t<VERS vnumber=\"23\"> to be renewed in the spirit of your mind,</VERS>\n\t\t\t<VERS vnumber=\"24\"> and to put on the new man who has been created in God's image, in righteousness and holiness that comes from truth.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Therefore, having laid aside falsehood, each one of you speak the truth with his neighbor, for we are members of one another. </VERS>\n\t\t\t<VERS vnumber=\"26\"> Be angry and do not sin; do not let the sun go down on the cause of your anger.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Do not give the devil an opportunity.</VERS>\n\t\t\t<VERS vnumber=\"28\"> The one who steals must steal no longer; rather he must labor, doing good with his own hands, so that he may have something to share with the one who has need.</VERS>\n\t\t\t<VERS vnumber=\"29\"> You must let no unwholesome word come out of your mouth, but only what is beneficial for the building up of the one in need, that it may give grace to those who hear. </VERS>\n\t\t\t<VERS vnumber=\"30\"> And do not grieve the Holy Spirit of God, by whom you were sealed for the day of redemption.</VERS>\n\t\t\t<VERS vnumber=\"31\"> You must put away every kind of bitterness, anger, wrath, quarreling, and evil, slanderous talk.</VERS>\n\t\t\t<VERS vnumber=\"32\"> Instead, be kind to one another, compassionate, forgiving one another, just as God in Christ also forgave you.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"5\">\n\t\t\t<VERS vnumber=\"1\"> Therefore, be imitators of God as dearly loved children </VERS>\n\t\t\t<VERS vnumber=\"2\"> and live in love, just as Christ also loved us and gave himself for us, a sacrificial and fragrant offering to God. </VERS>\n\t\t\t<VERS vnumber=\"3\"> But among you there must not be either sexual immorality, impurity of any kind, or greed, as these are not fitting for the saints.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Neither should there be vulgar speech, foolish talk, or coarse jesting, all of which are out of character, but rather thanksgiving.</VERS>\n\t\t\t<VERS vnumber=\"5\"> For you can be confident of this one thing: that no person who is immoral, impure, or greedy (such a person is an idolater) has any inheritance in the kingdom of Christ and God.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Let nobody deceive you with empty words, for because of these things God's wrath comes on the sons of disobedience.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Therefore do not be partakers with them,</VERS>\n\t\t\t<VERS vnumber=\"8\"> for you were at one time darkness, but now you are light in the Lord. Walk as children of the light,</VERS>\n\t\t\t<VERS vnumber=\"9\"> for the fruit of the light consists in all goodness, righteousness, and truth,</VERS>\n\t\t\t<VERS vnumber=\"10\"> trying to learn what is pleasing to the Lord. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Do not participate in the unfruitful deeds of darkness, but rather expose them.</VERS>\n\t\t\t<VERS vnumber=\"12\"> For the things they do in secret are shameful even to mention. </VERS>\n\t\t\t<VERS vnumber=\"13\"> But all things being exposed by the light are made evident.</VERS>\n\t\t\t<VERS vnumber=\"14\"> For everything made evident is light, and for this reason it says: \"Awake, O sleeper! Rise from the dead, and Christ will shine on you!\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> Therefore be very careful how you live, not as unwise but as wise,</VERS>\n\t\t\t<VERS vnumber=\"16\"> taking advantage of every opportunity, because the days are evil.</VERS>\n\t\t\t<VERS vnumber=\"17\"> For this reason do not be foolish, but be wise by understanding what the Lord's will is. </VERS>\n\t\t\t<VERS vnumber=\"18\"> And do not get drunk with wine, which is debauchery, but be filled by the Spirit,</VERS>\n\t\t\t<VERS vnumber=\"19\"> speaking to one another in psalms, hymns, and spiritual songs, singing and making music in your hearts to the Lord, </VERS>\n\t\t\t<VERS vnumber=\"20\"> always giving thanks to God the Father for each other in the name of our Lord Jesus Christ, </VERS>\n\t\t\t<VERS vnumber=\"21\"> and submitting to one another out of reverence for Christ.</VERS>\n\t\t\t<VERS vnumber=\"22\">  Wives, submit to your husbands as to the Lord, </VERS>\n\t\t\t<VERS vnumber=\"23\"> because the husband is the head of the wife as also Christ is the head of the church, he himself being the savior of the body.</VERS>\n\t\t\t<VERS vnumber=\"24\"> But as the church submits to Christ, so also wives should submit to their husbands in everything.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Husbands, love your wives just as Christ loved the church and gave himself for her </VERS>\n\t\t\t<VERS vnumber=\"26\"> to sanctify her by cleansing her with the washing of the water by the word, </VERS>\n\t\t\t<VERS vnumber=\"27\"> so that he may present the church to himself as glorious, not having a stain or wrinkle, or any such blemish, but holy and blameless.</VERS>\n\t\t\t<VERS vnumber=\"28\"> In the same way husbands ought to love their wives as their own bodies. He who loves his wife loves himself. </VERS>\n\t\t\t<VERS vnumber=\"29\"> For no one has ever hated his own body but he feeds it and takes care of it, just as Christ also does the church, </VERS>\n\t\t\t<VERS vnumber=\"30\"> for we are members of his body.</VERS>\n\t\t\t<VERS vnumber=\"31\"> For this reason a man will leave his father and mother and will be joined to his wife, and the two will become one flesh.</VERS>\n\t\t\t<VERS vnumber=\"32\"> This mystery is great, but I am actually speaking with reference to Christ and the church.</VERS>\n\t\t\t<VERS vnumber=\"33\"> Nevertheless, each one of you must also love his own wife as he loves himself, and the wife must respect her husband.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"6\">\n\t\t\t<VERS vnumber=\"1\"> Children, obey your parents in the Lord for this is right. </VERS>\n\t\t\t<VERS vnumber=\"2\"> \"Honor your father and mother,\" which is the first commandment accompanied by a promise, namely, </VERS>\n\t\t\t<VERS vnumber=\"3\"> \"that it may go well with you and that you will live a long time on the earth.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> Fathers, do not provoke your children to anger, but raise them up in the discipline and instruction of the Lord.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Slaves, obey your human masters with fear and trembling, in the sincerity of your heart as to Christ, </VERS>\n\t\t\t<VERS vnumber=\"6\"> not like those who do their work only when someone is watching, as people-pleasers, but as slaves of Christ doing the will of God from the heart.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Obey with enthusiasm, as though serving the Lord and not people, </VERS>\n\t\t\t<VERS vnumber=\"8\"> because you know that each person, whether slave or free, if he does something good, this will be rewarded by the Lord.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Masters, treat your slaves the same way, giving up the use of threats, because you know that both you and they have the same master in heaven, and there is no favoritism with him.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Finally, be strengthened in the Lord and in the strength of his power.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Clothe yourselves with the full armor of God so that you may be able to stand against the schemes of the devil. </VERS>\n\t\t\t<VERS vnumber=\"12\"> For our struggle is not against flesh and blood, but against the rulers, against the powers, against the world rulers of this darkness, against the spiritual forces of evil in the heavens.</VERS>\n\t\t\t<VERS vnumber=\"13\"> For this reason, take up the full armor of God so that you may be able to stand your ground on the evil day, and having done everything, to stand. </VERS>\n\t\t\t<VERS vnumber=\"14\"> Stand firm therefore, by fastening the belt of truth around your waist, by putting on the breastplate of righteousness, </VERS>\n\t\t\t<VERS vnumber=\"15\"> by fitting your feet with the preparation that comes from the good news of peace,</VERS>\n\t\t\t<VERS vnumber=\"16\"> and in all of this, by taking up the shield of faith with which you can extinguish all the flaming arrows of the evil one. </VERS>\n\t\t\t<VERS vnumber=\"17\"> And take the helmet of salvation and the sword of the Spirit, which is the word of God. </VERS>\n\t\t\t<VERS vnumber=\"18\"> With every prayer and petition, pray at all times in the Spirit, and to this end be alert, with all perseverance and requests for all the saints.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Pray for me also, that I may be given the message when I begin to speak, that I may confidently make known the mystery of the gospel,</VERS>\n\t\t\t<VERS vnumber=\"20\"> for which I am an ambassador in chains. Pray that I may be able to speak boldly as I ought to speak.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Tychicus, my dear brother and faithful servant in the Lord, will make everything known to you, so that you too may know about my circumstances, how I am doing. </VERS>\n\t\t\t<VERS vnumber=\"22\"> I have sent him to you for this very purpose, that you may know our circumstances and that he may encourage your hearts.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Peace to the brothers and sisters, and love with faith, from God the Father and the Lord Jesus Christ. </VERS>\n\t\t\t<VERS vnumber=\"24\"> Grace be with all of those who love our Lord Jesus Christ with an undying love.</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"50\" bname=\"Philippians\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> From Paul and Timothy, slaves of Christ Jesus, to all the saints in Christ Jesus who are in Philippi, with the overseers and deacons. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Grace and peace to you from God our Father and the Lord Jesus Christ!</VERS>\n\t\t\t<VERS vnumber=\"3\"> I thank my God every time I remember you.</VERS>\n\t\t\t<VERS vnumber=\"4\"> I always pray with joy in my every prayer for all of you</VERS>\n\t\t\t<VERS vnumber=\"5\"> because of your participation in the gospel from the first day until now.</VERS>\n\t\t\t<VERS vnumber=\"6\"> For I am sure of this very thing, that the one who began a good work in you will perfect it until the day of Christ Jesus. </VERS>\n\t\t\t<VERS vnumber=\"7\"> For it is right for me to think this about all of you, because I have you in my heart, since both in my imprisonment and in the defense and confirmation of the gospel all of you became partners in God's grace together with me.</VERS>\n\t\t\t<VERS vnumber=\"8\"> For God is my witness that I long for all of you with the affection of Christ Jesus.</VERS>\n\t\t\t<VERS vnumber=\"9\"> And I pray this, that your love may abound even more and more in knowledge and every kind of insight</VERS>\n\t\t\t<VERS vnumber=\"10\"> so that you can decide what is best, and thus be sincere and blameless for the day of Christ,</VERS>\n\t\t\t<VERS vnumber=\"11\"> filled with the fruit of righteousness that comes through Jesus Christ to the glory and praise of God.</VERS>\n\t\t\t<VERS vnumber=\"12\"> I want you to know, brothers and sisters, that my situation has actually turned out to advance the gospel:</VERS>\n\t\t\t<VERS vnumber=\"13\"> The whole imperial guard and everyone else knows that I am in prison for the sake of Christ, </VERS>\n\t\t\t<VERS vnumber=\"14\"> and most of the brothers and sisters, having confidence in the Lord because of my imprisonment, now more than ever dare to speak the word fearlessly.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Some, to be sure, are preaching Christ from envy and rivalry, but others from goodwill.</VERS>\n\t\t\t<VERS vnumber=\"16\"> The latter do so from love because they know that I am placed here for the defense of the gospel.</VERS>\n\t\t\t<VERS vnumber=\"17\"> The former proclaim Christ from selfish ambition, not sincerely, because they think they can cause trouble for me in my imprisonment.</VERS>\n\t\t\t<VERS vnumber=\"18\"> What is the result? Only that in every way, whether in pretense or in truth, Christ is being proclaimed, and in this I rejoice. Yes, and I will continue to rejoice, </VERS>\n\t\t\t<VERS vnumber=\"19\"> for I know that this will turn out for my deliverance through your prayers and the help of the Spirit of Jesus Christ. </VERS>\n\t\t\t<VERS vnumber=\"20\"> My confident hope is that I will in no way be ashamed but that with complete boldness, even now as always, Christ will be exalted in my body, whether I live or die.</VERS>\n\t\t\t<VERS vnumber=\"21\"> For to me, living is Christ and dying is gain.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Now if I am to go on living in the body, this will mean productive work for me, yet I don't know which I prefer:</VERS>\n\t\t\t<VERS vnumber=\"23\"> I feel torn between the two, because I have a desire to depart and be with Christ, which is better by far, </VERS>\n\t\t\t<VERS vnumber=\"24\"> but it is more vital for your sake that I remain in the body.</VERS>\n\t\t\t<VERS vnumber=\"25\"> And since I am sure of this, I know that I will remain and continue with all of you for the sake of your progress and joy in the faith,</VERS>\n\t\t\t<VERS vnumber=\"26\"> so that what you can be proud of may increase because of me in Christ Jesus, when I come back to you.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Only conduct yourselves in a manner worthy of the gospel of Christ so that, whether I come and see you or whether I remain absent, I should hear that you are standing firm in one spirit, with one mind, by contending side by side for the faith of the gospel,</VERS>\n\t\t\t<VERS vnumber=\"28\"> and by not being intimidated in any way by your opponents. This is a sign of their destruction, but of your salvation, a sign which is from God.</VERS>\n\t\t\t<VERS vnumber=\"29\"> For it has been granted to you not only to believe in Christ but also to suffer for him, </VERS>\n\t\t\t<VERS vnumber=\"30\"> since you are encountering the same conflict that you saw me face and now hear that I am facing.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> Therefore, if there is any encouragement in Christ, any comfort provided by love, any fellowship in the Spirit, any affection or mercy,</VERS>\n\t\t\t<VERS vnumber=\"2\"> complete my joy and be of the same mind, by having the same love, being united in spirit, and having one purpose. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Instead of being motivated by selfish ambition or vanity, each of you should, in humility, be moved to treat one another as more important than yourself. </VERS>\n\t\t\t<VERS vnumber=\"4\"> Each of you should be concerned not only about your own interests, but about the interests of others as well.</VERS>\n\t\t\t<VERS vnumber=\"5\"> You should have the same attitude toward one another that Christ Jesus had,</VERS>\n\t\t\t<VERS vnumber=\"6\">  who though he existed in the form of God did not regard equality with God as something to be grasped,</VERS>\n\t\t\t<VERS vnumber=\"7\"> but emptied himself by taking on the form of a slave, by looking like other men, and by sharing in human nature.</VERS>\n\t\t\t<VERS vnumber=\"8\"> He humbled himself, by becoming obedient to the point of death, even death on a cross!</VERS>\n\t\t\t<VERS vnumber=\"9\"> As a result God exalted him and gave him the name that is above every name,</VERS>\n\t\t\t<VERS vnumber=\"10\"> so that at the name of Jesus every knee will bow, in heaven and on earth and under the earth,</VERS>\n\t\t\t<VERS vnumber=\"11\"> and every tongue confess that Jesus Christ is Lord to the glory of God the Father.</VERS>\n\t\t\t<VERS vnumber=\"12\"> So then, my dear friends, just as you have always obeyed, not only in my presence but even more in my absence, continue working out your salvation with awe and reverence,</VERS>\n\t\t\t<VERS vnumber=\"13\"> for the one bringing forth in you both the desire and the effort, for the sake of his good pleasure, is God.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Do everything without grumbling or arguing,</VERS>\n\t\t\t<VERS vnumber=\"15\"> so that you may be blameless and pure, children of God without blemish though you live in a crooked and perverse society, in which you shine as lights in the world</VERS>\n\t\t\t<VERS vnumber=\"16\"> by holding on to the word of life so that on the day of Christ I will have a reason to boast that I did not run in vain nor labor in vain. </VERS>\n\t\t\t<VERS vnumber=\"17\"> But even if I am being poured out like a drink offering on the sacrifice and service of your faith, I am glad and rejoice together with all of you.</VERS>\n\t\t\t<VERS vnumber=\"18\"> And in the same way you also should be glad and rejoice together with me.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Now I hope in the Lord Jesus to send Timothy to you soon, so that I too may be encouraged by hearing news about you.</VERS>\n\t\t\t<VERS vnumber=\"20\"> For there is no one here like him who will readily demonstrate his deep concern for you.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Others are busy with their own concerns, not those of Jesus Christ.</VERS>\n\t\t\t<VERS vnumber=\"22\"> But you know his qualifications, that like a son working with his father, he served with me in advancing the gospel.</VERS>\n\t\t\t<VERS vnumber=\"23\"> So I hope to send him as soon as I know more about my situation,</VERS>\n\t\t\t<VERS vnumber=\"24\"> though I am confident in the Lord that I too will be coming to see you soon.</VERS>\n\t\t\t<VERS vnumber=\"25\"> But for now I have considered it necessary to send Epaphroditus to you. For he is my brother, coworker and fellow soldier, and your messenger and minister to me in my need.</VERS>\n\t\t\t<VERS vnumber=\"26\"> Indeed, he greatly missed all of you and was distressed because you heard that he had been ill.</VERS>\n\t\t\t<VERS vnumber=\"27\"> In fact he became so ill that he nearly died. But God showed mercy to him, and not to him only, but also to me, so that I would not have grief on top of grief.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Therefore I am all the more eager to send him, so that when you see him again you can rejoice and I can be free from anxiety. </VERS>\n\t\t\t<VERS vnumber=\"29\"> So welcome him in the Lord with great joy, and honor people like him,</VERS>\n\t\t\t<VERS vnumber=\"30\"> since it was because of the work of Christ that he almost died. He risked his life so that he could make up for your inability to serve me.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> Finally, my brothers and sisters, rejoice in the Lord! To write this again is no trouble to me, and it is a safeguard for you.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Beware of the dogs, beware of the evil workers, beware of those who mutilate the flesh!</VERS>\n\t\t\t<VERS vnumber=\"3\"> For we are the circumcision, the ones who worship by the Spirit of God, exult in Christ Jesus, and do not rely on human credentials</VERS>\n\t\t\t<VERS vnumber=\"4\"> , though mine too are significant. If someone thinks he has good reasons to put confidence in human credentials, I have more: </VERS>\n\t\t\t<VERS vnumber=\"5\"> I was circumcised on the eighth day, from the people of Israel and the tribe of Benjamin, a Hebrew of Hebrews. I lived according to the law as a Pharisee.</VERS>\n\t\t\t<VERS vnumber=\"6\"> In my zeal for God I persecuted the church. According to the righteousness stipulated in the law I was blameless.</VERS>\n\t\t\t<VERS vnumber=\"7\"> But these assets I have come to regard as liabilities because of Christ.</VERS>\n\t\t\t<VERS vnumber=\"8\"> More than that, I now regard all things as liabilities compared to the far greater value of knowing Christ Jesus my Lord, for whom I have suffered the loss of all things, indeed, I regard them as dung!, that I may gain Christ,</VERS>\n\t\t\t<VERS vnumber=\"9\"> and be found in him, not because I have my own righteousness derived from the law, but because I have the righteousness that comes by way of Christ's faithfulness, a righteousness from God that is in fact based on Christ's faithfulness.</VERS>\n\t\t\t<VERS vnumber=\"10\"> My aim is to know him, to experience the power of his resurrection, to share in his sufferings, and to be like him in his death, </VERS>\n\t\t\t<VERS vnumber=\"11\"> and so, somehow, to attain to the resurrection from the dead.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Not that I have already attained this, that is, I have not already been perfected, but I strive to lay hold of that for which Christ Jesus also laid hold of me.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Brothers and sisters, I do not consider myself to have attained this. Instead I am single-minded: Forgetting the things that are behind and reaching out for the things that are ahead, </VERS>\n\t\t\t<VERS vnumber=\"14\"> with this goal in mind, I strive toward the prize of the upward call of God in Christ Jesus. </VERS>\n\t\t\t<VERS vnumber=\"15\"> Therefore let those of us who are \"perfect\" embrace this point of view. If you think otherwise, God will reveal to you the error of your ways.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Nevertheless, let us live up to the standard that we have already attained.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Be imitators of me, brothers and sisters, and watch carefully those who are living this way, just as you have us as an example. </VERS>\n\t\t\t<VERS vnumber=\"18\"> For many live, about whom I have often told you, and now, with tears, I tell you that they are the enemies of the cross of Christ.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Their end is destruction, their god is the belly, they exult in their shame, and they think about earthly things.</VERS>\n\t\t\t<VERS vnumber=\"20\"> But our citizenship is in heaven, and we also await a savior from there, the Lord Jesus Christ,</VERS>\n\t\t\t<VERS vnumber=\"21\"> who will transform these humble bodies of ours into the likeness of his glorious body by means of that power by which he is able to subject all things to himself.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\"> So then, my brothers and sisters, dear friends whom I long to see, my joy and crown, stand in the Lord in this way, my dear friends!</VERS>\n\t\t\t<VERS vnumber=\"2\"> I appeal to Euodia and to Syntyche to agree in the Lord.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Yes, I say also to you, true companion, help them. They have struggled together in the gospel ministry along with me and Clement and my other coworkers, whose names are in the book of life. </VERS>\n\t\t\t<VERS vnumber=\"4\"> Rejoice in the Lord always. Again I say, rejoice!</VERS>\n\t\t\t<VERS vnumber=\"5\"> Let everyone see your gentleness. The Lord is near! </VERS>\n\t\t\t<VERS vnumber=\"6\"> Do not be anxious about anything. Instead, in every situation, through prayer and petition with thanksgiving, tell your requests to God.</VERS>\n\t\t\t<VERS vnumber=\"7\"> And the peace of God that surpasses all understanding will guard your hearts and minds in Christ Jesus.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Finally, brothers and sisters, whatever is true, whatever is worthy of respect, whatever is just, whatever is pure, whatever is lovely, whatever is commendable, if something is excellent or praiseworthy, think about these things. </VERS>\n\t\t\t<VERS vnumber=\"9\"> And what you learned and received and heard and saw in me, do these things. And the God of peace will be with you.</VERS>\n\t\t\t<VERS vnumber=\"10\"> I have great joy in the Lord because now at last you have again expressed your concern for me. (Now I know you were concerned before but had no opportunity to do anything.)</VERS>\n\t\t\t<VERS vnumber=\"11\"> I am not saying this because I am in need, for I have learned to be content in any circumstance.</VERS>\n\t\t\t<VERS vnumber=\"12\"> I have experienced times of need and times of abundance. In any and every circumstance I have learned the secret of contentment, whether I go satisfied or hungry, have plenty or nothing. </VERS>\n\t\t\t<VERS vnumber=\"13\"> I am able to do all things through the one who strengthens me. </VERS>\n\t\t\t<VERS vnumber=\"14\"> Nevertheless, you did well to share with me in my trouble.</VERS>\n\t\t\t<VERS vnumber=\"15\"> And as you Philippians know, at the beginning of my gospel ministry, when I left Macedonia, no church shared with me in this matter of giving and receiving except you alone.</VERS>\n\t\t\t<VERS vnumber=\"16\"> For even in Thessalonica on more than one occasion you sent something for my need. </VERS>\n\t\t\t<VERS vnumber=\"17\"> I do not say this because I am seeking a gift. Rather, I seek the credit that abounds to your account. </VERS>\n\t\t\t<VERS vnumber=\"18\"> For I have received everything, and I have plenty. I have all I need because I received from Epaphroditus what you sent, a fragrant offering, an acceptable sacrifice, very pleasing to God.</VERS>\n\t\t\t<VERS vnumber=\"19\"> And my God will supply your every need according to his glorious riches in Christ Jesus. </VERS>\n\t\t\t<VERS vnumber=\"20\"> May glory be given to God our Father forever and ever. Amen.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Give greetings to all the saints in Christ Jesus. The brothers with me here send greetings. </VERS>\n\t\t\t<VERS vnumber=\"22\"> All the saints greet you, especially those who belong to Caesar's household.</VERS>\n\t\t\t<VERS vnumber=\"23\"> The grace of the Lord Jesus Christ be with your spirit.</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"51\" bname=\"Colossians\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> From Paul, an apostle of Christ Jesus by the will of God, and Timothy our brother, </VERS>\n\t\t\t<VERS vnumber=\"2\"> to the saints, the faithful brothers and sisters in Christ, at Colossae. Grace and peace to you from God our Father!</VERS>\n\t\t\t<VERS vnumber=\"3\"> We always give thanks to God, the Father of our Lord Jesus Christ, when we pray for you, </VERS>\n\t\t\t<VERS vnumber=\"4\"> since we heard about your faith in Christ Jesus and the love that you have for all the saints. </VERS>\n\t\t\t<VERS vnumber=\"5\"> Your faith and love have arisen from the hope laid up for you in heaven, which you have heard about in the message of truth, the gospel</VERS>\n\t\t\t<VERS vnumber=\"6\"> that has come to you. Just as in the entire world this gospel is bearing fruit and growing, so it has also been bearing fruit and growing among you from the first day you heard it and understood the grace of God in truth. </VERS>\n\t\t\t<VERS vnumber=\"7\"> You learned the gospel from Epaphras, our dear fellow slave, a faithful minister of Christ on our behalf,</VERS>\n\t\t\t<VERS vnumber=\"8\"> who also told us of your love in the Spirit.</VERS>\n\t\t\t<VERS vnumber=\"9\"> For this reason we also, from the day we heard about you, have not ceased praying for you and asking God to fill you with the knowledge of his will in all spiritual wisdom and understanding, </VERS>\n\t\t\t<VERS vnumber=\"10\"> so that you may live worthily of the Lord and please him in all respects, bearing fruit in every good deed, growing in the knowledge of God,</VERS>\n\t\t\t<VERS vnumber=\"11\"> being strengthened with all power according to his glorious might for the display of all patience and steadfastness, joyfully </VERS>\n\t\t\t<VERS vnumber=\"12\"> giving thanks to the Father who has qualified you to share in the saints' inheritance in the light. </VERS>\n\t\t\t<VERS vnumber=\"13\"> He delivered us from the power of darkness and transferred us to the kingdom of the Son he loves,</VERS>\n\t\t\t<VERS vnumber=\"14\"> in whom we have redemption, the forgiveness of sins.</VERS>\n\t\t\t<VERS vnumber=\"15\">  He is the image of the invisible God, the firstborn over all creation,</VERS>\n\t\t\t<VERS vnumber=\"16\"> for all things in heaven and on earth were created by him, all things, whether visible or invisible, whether thrones or dominions, whether principalities or powers, all things were created through him and for him.</VERS>\n\t\t\t<VERS vnumber=\"17\"> He himself is before all things and all things are held together in him.</VERS>\n\t\t\t<VERS vnumber=\"18\"> He is the head of the body, the church, as well as the beginning, the firstborn from among the dead, so that he himself may become first in all things.</VERS>\n\t\t\t<VERS vnumber=\"19\"> For God was pleased to have all his fullness dwell in the Son</VERS>\n\t\t\t<VERS vnumber=\"20\"> and through him to reconcile all things to himself by making peace through the blood of his cross, through him, whether things on earth or things in heaven.</VERS>\n\t\t\t<VERS vnumber=\"21\"> And you were at one time strangers and enemies in your minds as expressed through your evil deeds, </VERS>\n\t\t\t<VERS vnumber=\"22\"> but now he has reconciled you by his physical body through death to present you holy, without blemish, and blameless before him,</VERS>\n\t\t\t<VERS vnumber=\"23\"> if indeed you remain in the faith, established and firm, without shifting from the hope of the gospel that you heard. This gospel has also been preached in all creation under heaven, and I, Paul, have become its servant.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Now I rejoice in my sufferings for you, and I fill up in my physical body, for the sake of his body, the church, what is lacking in the sufferings of Christ.</VERS>\n\t\t\t<VERS vnumber=\"25\"> I became a servant of the church according to the stewardship from God, given to me for you, in order to complete the word of God,</VERS>\n\t\t\t<VERS vnumber=\"26\"> that is, the mystery that has been kept hidden from ages and generations, but has now been revealed to his saints.</VERS>\n\t\t\t<VERS vnumber=\"27\"> God wanted to make known to them the glorious riches of this mystery among the Gentiles, which is Christ in you, the hope of glory.</VERS>\n\t\t\t<VERS vnumber=\"28\"> We proclaim him by instructing and teaching all people with all wisdom so that we may present every person mature in Christ. </VERS>\n\t\t\t<VERS vnumber=\"29\"> Toward this goal I also labor, struggling according to his power that powerfully works in me.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> For I want you to know how great a struggle I have for you, and for those in Laodicea, and for those who have not met me face to face.</VERS>\n\t\t\t<VERS vnumber=\"2\"> My goal is that their hearts, having been knit together in love, may be encouraged, and that they may have all the riches that assurance brings in their understanding of the knowledge of the mystery of God, namely, Christ,</VERS>\n\t\t\t<VERS vnumber=\"3\"> in whom are hidden all the treasures of wisdom and knowledge.</VERS>\n\t\t\t<VERS vnumber=\"4\"> I say this so that no one will deceive you through arguments that sound reasonable.</VERS>\n\t\t\t<VERS vnumber=\"5\"> For though I am absent from you in body, I am present with you in spirit, rejoicing to see your morale and the firmness of your faith in Christ.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Therefore, just as you received Christ Jesus as Lord, continue to live your lives in him, </VERS>\n\t\t\t<VERS vnumber=\"7\"> rooted and built up in him and firm in your faith just as you were taught, and overflowing with thankfulness. </VERS>\n\t\t\t<VERS vnumber=\"8\"> Be careful not to allow anyone to captivate you through an empty, deceitful philosophy that is according to human traditions and the elemental spirits of the world, and not according to Christ. </VERS>\n\t\t\t<VERS vnumber=\"9\"> For in him all the fullness of deity lives in bodily form, </VERS>\n\t\t\t<VERS vnumber=\"10\"> and you have been filled in him, who is the head over every ruler and authority.</VERS>\n\t\t\t<VERS vnumber=\"11\"> In him you also were circumcised, not, however, with a circumcision performed by human hands, but by the removal of the fleshly body, that is, through the circumcision done by Christ.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Having been buried with him in baptism, you also have been raised with him through your faith in the power of God who raised him from the dead. </VERS>\n\t\t\t<VERS vnumber=\"13\"> And even though you were dead in your transgressions and in the uncircumcision of your flesh, he nevertheless made you alive with him, having forgiven all your transgressions. </VERS>\n\t\t\t<VERS vnumber=\"14\"> He has destroyed what was against us, a certificate of indebtedness expressed in decrees opposed to us. He has taken it away by nailing it to the cross. </VERS>\n\t\t\t<VERS vnumber=\"15\"> Disarming the rulers and authorities, he has made a public disgrace of them, triumphing over them by the cross.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Therefore do not let anyone judge you with respect to food or drink, or in the matter of a feast, new moon, or Sabbath days,</VERS>\n\t\t\t<VERS vnumber=\"17\"> these are only the shadow of the things to come, but the reality is Christ!</VERS>\n\t\t\t<VERS vnumber=\"18\"> Let no one who delights in humility and the worship of angels pass judgment on you. That person goes on at great lengths about what he has supposedly seen, but he is puffed up with empty notions by his fleshly mind.</VERS>\n\t\t\t<VERS vnumber=\"19\"> He has not held fast to the head from whom the whole body, supported and knit together through its ligaments and sinews, grows with a growth that is from God.</VERS>\n\t\t\t<VERS vnumber=\"20\"> If you have died with Christ to the elemental spirits of the world, why do you submit to them as though you lived in the world? </VERS>\n\t\t\t<VERS vnumber=\"21\"> \"Do not handle! Do not taste! Do not touch!\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> These are all destined to perish with use, founded as they are on human commands and teachings.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Even though they have the appearance of wisdom with their self-imposed worship and false humility achieved by an unsparing treatment of the body, a wisdom with no true value, they in reality result in fleshly indulgence.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> Therefore, if you have been raised with Christ, keep seeking the things above, where Christ is, seated at the right hand of God.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Keep thinking about things above, not things on the earth,</VERS>\n\t\t\t<VERS vnumber=\"3\"> for you have died and your life is hidden with Christ in God.</VERS>\n\t\t\t<VERS vnumber=\"4\"> When Christ (who is your life) appears, then you too will be revealed in glory with him. </VERS>\n\t\t\t<VERS vnumber=\"5\"> So put to death whatever in your nature belongs to the earth: sexual immorality, impurity, shameful passion, evil desire, and greed which is idolatry. </VERS>\n\t\t\t<VERS vnumber=\"6\"> Because of these things the wrath of God is coming on the sons of disobedience.</VERS>\n\t\t\t<VERS vnumber=\"7\"> You also lived your lives in this way at one time, when you used to live among them. </VERS>\n\t\t\t<VERS vnumber=\"8\"> But now, put off all such things as anger, rage, malice, slander, abusive language from your mouth. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Do not lie to one another since you have put off the old man with its practices</VERS>\n\t\t\t<VERS vnumber=\"10\"> and have been clothed with the new man that is being renewed in knowledge according to the image of the one who created it. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Here there is neither Greek nor Jew, circumcised or uncircumcised, barbarian, Scythian, slave or free, but Christ is all and in all.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Therefore, as the elect of God, holy and dearly loved, clothe yourselves with a heart of mercy, kindness, humility, gentleness, and patience, </VERS>\n\t\t\t<VERS vnumber=\"13\"> bearing with one another and forgiving one another, if someone happens to have a complaint against anyone else. Just as the Lord has forgiven you, so you also forgive others.</VERS>\n\t\t\t<VERS vnumber=\"14\"> And to all these virtues add love, which is the perfect bond.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Let the peace of Christ be in control in your heart (for you were in fact called as one body to this peace), and be thankful. </VERS>\n\t\t\t<VERS vnumber=\"16\"> Let the word of Christ dwell in you richly, teaching and exhorting one another with all wisdom, singing psalms, hymns, and spiritual songs, all with grace in your hearts to God. </VERS>\n\t\t\t<VERS vnumber=\"17\"> And whatever you do in word or deed, do it all in the name of the Lord Jesus, giving thanks to God the Father through him.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Wives, submit to your husbands, as is fitting in the Lord. </VERS>\n\t\t\t<VERS vnumber=\"19\"> Husbands, love your wives and do not be embittered against them.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Children, obey your parents in everything, for this is pleasing in the Lord.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Fathers, do not provoke your children, so they will not become disheartened. </VERS>\n\t\t\t<VERS vnumber=\"22\"> Slaves, obey your earthly masters in every respect, not only when they are watching, like those who are strictly people-pleasers, but with a sincere heart, fearing the Lord.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Whatever you are doing, work at it with enthusiasm, as to the Lord and not for people,</VERS>\n\t\t\t<VERS vnumber=\"24\"> because you know that you will receive your inheritance from the Lord as the reward. Serve the Lord Christ. </VERS>\n\t\t\t<VERS vnumber=\"25\"> For the one who does wrong will be repaid for his wrong, and there are no exceptions.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\"> Masters, treat your slaves with justice and fairness, because you know that you also have a master in heaven.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Be devoted to prayer, keeping alert in it with thanksgiving.</VERS>\n\t\t\t<VERS vnumber=\"3\"> At the same time pray for us too, that God may open a door for the message so that we may proclaim the mystery of Christ, for which I am in chains.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Pray that I may make it known as I should.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Conduct yourselves with wisdom toward outsiders, making the most of the opportunities. </VERS>\n\t\t\t<VERS vnumber=\"6\"> Let your speech always be gracious, seasoned with salt, so that you may know how you should answer everyone.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Tychicus, a dear brother, faithful minister, and fellow slave in the Lord, will tell you all the news about me.</VERS>\n\t\t\t<VERS vnumber=\"8\"> I sent him to you for this very purpose, that you may know how we are doing and that he may encourage your hearts. </VERS>\n\t\t\t<VERS vnumber=\"9\"> I sent him with Onesimus, the faithful and dear brother, who is one of you. They will tell you about everything here.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Aristarchus, my fellow prisoner, sends you greetings, as does Mark, the cousin of Barnabas (about whom you received instructions; if he comes to you, welcome him).</VERS>\n\t\t\t<VERS vnumber=\"11\"> And Jesus who is called Justus also sends greetings. In terms of Jewish converts, these are the only fellow workers for the kingdom of God, and they have been a comfort to me. </VERS>\n\t\t\t<VERS vnumber=\"12\"> Epaphras, who is one of you and a slave of Christ, greets you. He is always struggling in prayer on your behalf, so that you may stand mature and fully assured in all the will of God. </VERS>\n\t\t\t<VERS vnumber=\"13\"> For I can testify that he has worked hard for you and for those in Laodicea and Hierapolis. </VERS>\n\t\t\t<VERS vnumber=\"14\"> Our dear friend Luke the physician and Demas greet you.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Give my greetings to the brothers and sisters who are in Laodicea and to Nympha and the church that meets in her house.</VERS>\n\t\t\t<VERS vnumber=\"16\"> And after you have read this letter, have it read to the church of Laodicea. In turn, read the letter from Laodicea as well. </VERS>\n\t\t\t<VERS vnumber=\"17\"> And tell Archippus, \"See to it that you complete the ministry you received in the Lord.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> I, Paul, write this greeting by my own hand. Remember my chains. Grace be with you.</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"52\" bname=\"1 Thessalonians\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> From Paul and Silvanus and Timothy, to the church of the Thessalonians in God the Father and the Lord Jesus Christ. Grace and peace to you!</VERS>\n\t\t\t<VERS vnumber=\"2\"> We thank God always for all of you as we mention you constantly in our prayers, </VERS>\n\t\t\t<VERS vnumber=\"3\"> because we recall in the presence of our God and Father your work of faith and labor of love and endurance of hope in our Lord Jesus Christ.</VERS>\n\t\t\t<VERS vnumber=\"4\"> We know, brothers and sisters loved by God, that he has chosen you,</VERS>\n\t\t\t<VERS vnumber=\"5\"> in that our gospel did not come to you merely in words, but in power and in the Holy Spirit and with deep conviction (surely you recall the character we displayed when we came among you to help you).</VERS>\n\t\t\t<VERS vnumber=\"6\"> And you became imitators of us and of the Lord, when you received the message with joy that comes from the Holy Spirit, despite great affliction. </VERS>\n\t\t\t<VERS vnumber=\"7\"> As a result you became an example to all the believers in Macedonia and in Achaia. </VERS>\n\t\t\t<VERS vnumber=\"8\"> For from you the message of the Lord has echoed forth not just in Macedonia and Achaia, but in every place reports of your faith in God have spread, so that we do not need to say anything. </VERS>\n\t\t\t<VERS vnumber=\"9\"> For people everywhere report how you welcomed us and how you turned to God from idols to serve the living and true God </VERS>\n\t\t\t<VERS vnumber=\"10\"> and to wait for his Son from heaven, whom he raised from the dead, Jesus our deliverer from the coming wrath.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> For you yourselves know, brothers and sisters, about our coming to you, it has not proven to be purposeless.</VERS>\n\t\t\t<VERS vnumber=\"2\"> But although we suffered earlier and were mistreated in Philippi, as you know, we had the courage in our God to declare to you the gospel of God in spite of much opposition. </VERS>\n\t\t\t<VERS vnumber=\"3\"> For the appeal we make does not come from error or impurity or with deceit,</VERS>\n\t\t\t<VERS vnumber=\"4\"> but just as we have been approved by God to be entrusted with the gospel, so we declare it, not to please people but God, who examines our hearts.</VERS>\n\t\t\t<VERS vnumber=\"5\"> For we never appeared with flattering speech, as you know, nor with a pretext for greed, God is our witness,</VERS>\n\t\t\t<VERS vnumber=\"6\"> nor to seek glory from people, either from you or from others,</VERS>\n\t\t\t<VERS vnumber=\"7\">  although we could have imposed our weight as apostles of Christ; instead we became little children among you. Like a nursing mother caring for her own children, </VERS>\n\t\t\t<VERS vnumber=\"8\"> with such affection for you we were happy to share with you not only the gospel of God but also our own lives, because you had become dear to us. </VERS>\n\t\t\t<VERS vnumber=\"9\"> For you recall, brothers and sisters, our toil and drudgery: By working night and day so as not to impose a burden on any of you, we preached to you the gospel of God. </VERS>\n\t\t\t<VERS vnumber=\"10\"> You are witnesses, and so is God, as to how holy and righteous and blameless our conduct was toward you who believe.</VERS>\n\t\t\t<VERS vnumber=\"11\"> As you know, we treated each one of you as a father treats his own children,</VERS>\n\t\t\t<VERS vnumber=\"12\"> exhorting and encouraging you and insisting that you live in a way worthy of God who calls you to his own kingdom and his glory.</VERS>\n\t\t\t<VERS vnumber=\"13\"> And so we too constantly thank God that when you received God's message that you heard from us, you accepted it not as a human message, but as it truly is, God's message, which is at work among you who believe. </VERS>\n\t\t\t<VERS vnumber=\"14\"> For you became imitators, brothers and sisters, of God's churches in Christ Jesus that are in Judea, because you too suffered the same things from your own countrymen as they in fact did from the Jews, </VERS>\n\t\t\t<VERS vnumber=\"15\"> who killed both the Lord Jesus and the prophets and persecuted us severely. They are displeasing to God and are opposed to all people, </VERS>\n\t\t\t<VERS vnumber=\"16\"> because they hinder us from speaking to the Gentiles so that they may be saved. Thus they constantly fill up their measure of sins, but wrath has come upon them completely.</VERS>\n\t\t\t<VERS vnumber=\"17\"> But when we were separated from you, brothers and sisters, for a short time (in presence, not in affection) we became all the more fervent in our great desire to see you in person.</VERS>\n\t\t\t<VERS vnumber=\"18\"> For we wanted to come to you (I, Paul, in fact tried again and again) but Satan thwarted us. </VERS>\n\t\t\t<VERS vnumber=\"19\"> For who is our hope or joy or crown to boast of before our Lord Jesus at his coming? Is it not of course you? </VERS>\n\t\t\t<VERS vnumber=\"20\"> For you are our glory and joy!</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> So when we could bear it no longer, we decided to stay on in Athens alone. </VERS>\n\t\t\t<VERS vnumber=\"2\"> We sent Timothy, our brother and fellow worker for God in the gospel of Christ, to strengthen you and encourage you about your faith, </VERS>\n\t\t\t<VERS vnumber=\"3\"> so that no one would be shaken by these afflictions. For you yourselves know that we are destined for this.</VERS>\n\t\t\t<VERS vnumber=\"4\"> For in fact when we were with you, we were telling you in advance that we would suffer affliction, and so it has happened, as you well know.</VERS>\n\t\t\t<VERS vnumber=\"5\"> So when I could bear it no longer, I sent to find out about your faith, for fear that the tempter somehow tempted you and our toil had proven useless.</VERS>\n\t\t\t<VERS vnumber=\"6\"> But now Timothy has come to us from you and given us the good news of your faith and love and that you always think of us with affection and long to see us just as we also long to see you!</VERS>\n\t\t\t<VERS vnumber=\"7\"> So in all our distress and affliction, we were reassured about you, brothers and sisters, through your faith. </VERS>\n\t\t\t<VERS vnumber=\"8\"> For now we are alive again, if you stand firm in the Lord. </VERS>\n\t\t\t<VERS vnumber=\"9\"> For how can we thank God enough for you, for all the joy we feel because of you before our God? </VERS>\n\t\t\t<VERS vnumber=\"10\"> We pray earnestly night and day to see you in person and make up what may be lacking in your faith.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Now may God our Father himself and our Lord Jesus direct our way to you.</VERS>\n\t\t\t<VERS vnumber=\"12\"> And may the Lord cause you to increase and abound in love for one another and for all, just as we do for you,</VERS>\n\t\t\t<VERS vnumber=\"13\"> so that your hearts are strengthened in holiness to be blameless before our God and Father at the coming of our Lord Jesus with all his saints.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\"> Finally then, brothers and sisters, we ask you and urge you in the Lord Jesus, that as you received instruction from us about how you must live and please God (as you are in fact living) that you do so more and more. </VERS>\n\t\t\t<VERS vnumber=\"2\"> For you know what commands we gave you through the Lord Jesus.</VERS>\n\t\t\t<VERS vnumber=\"3\"> For this is God's will: that you become holy, that you keep away from sexual immorality, </VERS>\n\t\t\t<VERS vnumber=\"4\"> that each of you know how to possess his own body in holiness and honor, </VERS>\n\t\t\t<VERS vnumber=\"5\"> not in lustful passion like the Gentiles who do not know God.</VERS>\n\t\t\t<VERS vnumber=\"6\"> In this matter no one should violate the rights of his brother or take advantage of him, because the Lord is the avenger in all these cases, as we also told you earlier and warned you solemnly. </VERS>\n\t\t\t<VERS vnumber=\"7\"> For God did not call us to impurity but in holiness.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Consequently the one who rejects this is not rejecting human authority but God, who gives his Holy Spirit to you.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Now on the topic of brotherly love you have no need for anyone to write you, for you yourselves are taught by God to love one another. </VERS>\n\t\t\t<VERS vnumber=\"10\"> And indeed you are practicing it toward all the brothers and sisters in all of Macedonia. But we urge you, brothers and sisters, to do so more and more,</VERS>\n\t\t\t<VERS vnumber=\"11\"> to aspire to lead a quiet life, to attend to your own business, and to work with your hands, as we commanded you.</VERS>\n\t\t\t<VERS vnumber=\"12\"> In this way you will live a decent life before outsiders and not be in need.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Now we do not want you to be uninformed, brothers and sisters, about those who are asleep, so that you will not grieve like the rest who have no hope.</VERS>\n\t\t\t<VERS vnumber=\"14\"> For if we believe that Jesus died and rose again, so also we believe that God will bring with him those who have fallen asleep as Christians.</VERS>\n\t\t\t<VERS vnumber=\"15\"> For we tell you this by the word of the Lord, that we who are alive, who are left until the coming of the Lord, will surely not go ahead of those who have fallen asleep. </VERS>\n\t\t\t<VERS vnumber=\"16\"> For the Lord himself will come down from heaven with a shout of command, with the voice of the archangel, and with the trumpet of God, and the dead in Christ will rise first. </VERS>\n\t\t\t<VERS vnumber=\"17\"> Then we who are alive, who are left, will be suddenly caught up together with them in the clouds to meet the Lord in the air. And so we will always be with the Lord. </VERS>\n\t\t\t<VERS vnumber=\"18\"> Therefore encourage one another with these words.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"5\">\n\t\t\t<VERS vnumber=\"1\"> Now on the topic of times and seasons, brothers and sisters, you have no need for anything to be written to you. </VERS>\n\t\t\t<VERS vnumber=\"2\"> For you know quite well that the day of the Lord will come in the same way as a thief in the night.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Now when they are saying, \"There is peace and security,\" then sudden destruction comes on them, like labor pains on a pregnant woman, and they will surely not escape. </VERS>\n\t\t\t<VERS vnumber=\"4\"> But you, brothers and sisters, are not in the darkness for the day to overtake you like a thief would. </VERS>\n\t\t\t<VERS vnumber=\"5\"> For you all are sons of the light and sons of the day. We are not of the night nor of the darkness.</VERS>\n\t\t\t<VERS vnumber=\"6\"> So then we must not sleep as the rest, but must stay alert and sober.</VERS>\n\t\t\t<VERS vnumber=\"7\"> For those who sleep, sleep at night and those who get drunk are drunk at night.</VERS>\n\t\t\t<VERS vnumber=\"8\"> But since we are of the day, we must stay sober by putting on the breastplate of faith and love and as a helmet our hope for salvation.</VERS>\n\t\t\t<VERS vnumber=\"9\"> For God did not destine us for wrath but for gaining salvation through our Lord Jesus Christ. </VERS>\n\t\t\t<VERS vnumber=\"10\"> He died for us so that whether we are alert or asleep we will come to life together with him. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Therefore encourage one another and build up each other, just as you are in fact doing.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Now we ask you, brothers and sisters, to acknowledge those who labor among you and preside over you in the Lord and admonish you, </VERS>\n\t\t\t<VERS vnumber=\"13\"> and to esteem them most highly in love because of their work. Be at peace among yourselves.</VERS>\n\t\t\t<VERS vnumber=\"14\"> And we urge you, brothers and sisters, admonish the undisciplined, comfort the discouraged, help the weak, be patient toward all. </VERS>\n\t\t\t<VERS vnumber=\"15\"> See that no one pays back evil for evil to anyone, but always pursue what is good for one another and for all.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Always rejoice,</VERS>\n\t\t\t<VERS vnumber=\"17\"> constantly pray,</VERS>\n\t\t\t<VERS vnumber=\"18\"> in everything give thanks. For this is God's will for you in Christ Jesus.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Do not extinguish the Spirit.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Do not treat prophecies with contempt.</VERS>\n\t\t\t<VERS vnumber=\"21\"> But examine all things; hold fast to what is good.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Stay away from every form of evil.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Now may the God of peace himself make you completely holy and may your spirit and soul and body be kept entirely blameless at the coming of our Lord Jesus Christ.</VERS>\n\t\t\t<VERS vnumber=\"24\"> He who calls you is trustworthy, and he will in fact do this.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Brothers and sisters, pray for us too. </VERS>\n\t\t\t<VERS vnumber=\"26\"> Greet all the brothers and sisters with a holy kiss. </VERS>\n\t\t\t<VERS vnumber=\"27\"> I call on you solemnly in the Lord to have this letter read to all the brothers and sisters.</VERS>\n\t\t\t<VERS vnumber=\"28\"> The grace of our Lord Jesus Christ be with you.</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"53\" bname=\"2 Thessalonians\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> From Paul and Silvanus and Timothy, to the church of the Thessalonians in God our Father and the Lord Jesus Christ. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Grace and peace to you from God the Father and the Lord Jesus Christ!</VERS>\n\t\t\t<VERS vnumber=\"3\"> We ought to thank God always for you, brothers and sisters, and rightly so, because your faith flourishes more and more and the love of each one of you all for one another is ever greater. </VERS>\n\t\t\t<VERS vnumber=\"4\"> As a result we ourselves boast about you in the churches of God for your perseverance and faith in all the persecutions and afflictions you are enduring.</VERS>\n\t\t\t<VERS vnumber=\"5\"> This is evidence of God's righteous judgment, to make you worthy of the kingdom of God, for which in fact you are suffering. </VERS>\n\t\t\t<VERS vnumber=\"6\"> For it is right for God to repay with affliction those who afflict you, </VERS>\n\t\t\t<VERS vnumber=\"7\"> and to you who are being afflicted to give rest together with us when the Lord Jesus is revealed from heaven with his mighty angels.</VERS>\n\t\t\t<VERS vnumber=\"8\"> With flaming fire he will mete out punishment on those who do not know God and do not obey the gospel of our Lord Jesus. </VERS>\n\t\t\t<VERS vnumber=\"9\"> They will undergo the penalty of eternal destruction, away from the presence of the Lord and from the glory of his strength,</VERS>\n\t\t\t<VERS vnumber=\"10\"> when he comes to be glorified among his saints and admired on that day among all who have believed, and you did in fact believe our testimony.</VERS>\n\t\t\t<VERS vnumber=\"11\"> And in this regard we pray for you always, that our God will make you worthy of his calling and fulfill by his power your every desire for goodness and every work of faith, </VERS>\n\t\t\t<VERS vnumber=\"12\"> that the name of our Lord Jesus may be glorified in you, and you in him, according to the grace of our God and the Lord Jesus Christ.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> Now regarding the arrival of our Lord Jesus Christ and our being gathered to be with him, we ask you, brothers and sisters,</VERS>\n\t\t\t<VERS vnumber=\"2\"> not to be easily shaken from your composure or disturbed by any kind of spirit or message or letter allegedly from us, to the effect that the day of the Lord is already here. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Let no one deceive you in any way. For that day will not arrive until the rebellion comes and the man of lawlessness is revealed, the son of destruction.</VERS>\n\t\t\t<VERS vnumber=\"4\"> He opposes and exalts himself above every so-called god or object of worship, and as a result he takes his seat in God's temple, displaying himself as God.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Surely you recall that I used to tell you these things while I was still with you. </VERS>\n\t\t\t<VERS vnumber=\"6\"> And so you know what holds him back, so that he will be revealed in his own time.</VERS>\n\t\t\t<VERS vnumber=\"7\"> For the hidden power of lawlessness is already at work. However, the one who holds him back will do so until he is taken out of the way, </VERS>\n\t\t\t<VERS vnumber=\"8\"> and then the lawless one will be revealed, whom the Lord will destroy by the breath of his mouth and wipe out by the manifestation of his arrival. </VERS>\n\t\t\t<VERS vnumber=\"9\"> The arrival of the lawless one will be by Satan's working with all kinds of miracles and signs and false wonders, </VERS>\n\t\t\t<VERS vnumber=\"10\"> and with every kind of evil deception directed against those who are perishing, because they found no place in their hearts for the truth so as to be saved. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Consequently God sends on them a deluding influence so that they will believe what is false. </VERS>\n\t\t\t<VERS vnumber=\"12\"> And so all of them who have not believed the truth but have delighted in evil will be condemned.</VERS>\n\t\t\t<VERS vnumber=\"13\"> But we ought to thank God always for you, brothers and sisters loved by the Lord, because God chose you from the beginning for salvation through sanctification by the Spirit and faith in the truth. </VERS>\n\t\t\t<VERS vnumber=\"14\"> He called you to this salvation through our gospel, so that you may possess the glory of our Lord Jesus Christ.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Therefore, brothers and sisters, stand firm and hold on to the traditions that we taught you, whether by speech or by letter.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Now may our Lord Jesus Christ himself and God our Father, who loved us and by grace gave us eternal comfort and good hope,</VERS>\n\t\t\t<VERS vnumber=\"17\"> encourage your hearts and strengthen you in every good thing you do or say.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> Finally, pray for us, brothers and sisters, that the Lord's message may spread quickly and be honored as in fact it was among you, </VERS>\n\t\t\t<VERS vnumber=\"2\"> and that we may be delivered from perverse and evil people. For not all have faith.</VERS>\n\t\t\t<VERS vnumber=\"3\"> But the Lord is faithful, and he will strengthen you and protect you from the evil one. </VERS>\n\t\t\t<VERS vnumber=\"4\"> And we are confident about you in the Lord that you are both doing, and will do, what we are commanding.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Now may the Lord direct your hearts toward the love of God and the endurance of Christ.</VERS>\n\t\t\t<VERS vnumber=\"6\"> But we command you, brothers and sisters, in the name of our Lord Jesus Christ, to keep away from any brother who lives an undisciplined life and not according to the tradition they received from us. </VERS>\n\t\t\t<VERS vnumber=\"7\"> For you know yourselves how you must imitate us, because we did not behave without discipline among you, </VERS>\n\t\t\t<VERS vnumber=\"8\"> and we did not eat anyone's food without paying. Instead, in toil and drudgery we worked night and day in order not to burden any of you. </VERS>\n\t\t\t<VERS vnumber=\"9\"> It was not because we do not have that right, but to give ourselves as an example for you to imitate.</VERS>\n\t\t\t<VERS vnumber=\"10\"> For even when we were with you, we used to give you this command: \"If anyone is not willing to work, neither should he eat.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> For we hear that some among you are living an undisciplined life, not doing their own work but meddling in the work of others.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Now such people we command and urge in the Lord Jesus Christ to work quietly and so provide their own food to eat.</VERS>\n\t\t\t<VERS vnumber=\"13\"> But you, brothers and sisters, do not grow weary in doing what is right. </VERS>\n\t\t\t<VERS vnumber=\"14\"> But if anyone does not obey our message through this letter, take note of him and do not associate closely with him, so that he may be ashamed.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Yet do not regard him as an enemy, but admonish him as a brother.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Now may the Lord of peace himself give you peace at all times and in every way. The Lord be with you all.</VERS>\n\t\t\t<VERS vnumber=\"17\"> I, Paul, write this greeting with my own hand, which is how I write in every letter.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The grace of our Lord Jesus Christ be with you all.</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"54\" bname=\"1 Timothy\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> From Paul, an apostle of Christ Jesus by the command of God our Savior and of Christ Jesus our hope, </VERS>\n\t\t\t<VERS vnumber=\"2\"> to Timothy, my genuine child in the faith. Grace, mercy, and peace from God the Father and Christ Jesus our Lord!</VERS>\n\t\t\t<VERS vnumber=\"3\"> As I urged you when I was leaving for Macedonia, stay on in Ephesus to instruct certain people not to spread false teachings,</VERS>\n\t\t\t<VERS vnumber=\"4\"> nor to occupy themselves with myths and interminable genealogies. Such things promote useless speculations rather than God's redemptive plan that operates by faith. </VERS>\n\t\t\t<VERS vnumber=\"5\"> But the aim of our instruction is love that comes from a pure heart, a good conscience, and a sincere faith.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Some have strayed from these and turned away to empty discussion.</VERS>\n\t\t\t<VERS vnumber=\"7\"> They want to be teachers of the law, but they do not understand what they are saying or the things they insist on so confidently.</VERS>\n\t\t\t<VERS vnumber=\"8\"> But we know that the law is good if someone uses it legitimately,</VERS>\n\t\t\t<VERS vnumber=\"9\"> realizing that law is not intended for a righteous person, but for lawless and rebellious people, for the ungodly and sinners, for the unholy and profane, for those who kill their fathers or mothers, for murderers, </VERS>\n\t\t\t<VERS vnumber=\"10\"> sexually immoral people, practicing homosexuals, kidnappers, liars, perjurers, in fact, for any who live contrary to sound teaching.</VERS>\n\t\t\t<VERS vnumber=\"11\"> This accords with the glorious gospel of the blessed God that was entrusted to me.</VERS>\n\t\t\t<VERS vnumber=\"12\"> I am grateful to the one who has strengthened me, Christ Jesus our Lord, because he considered me faithful in putting me into ministry,</VERS>\n\t\t\t<VERS vnumber=\"13\"> even though I was formerly a blasphemer and a persecutor, and an arrogant man. But I was treated with mercy because I acted ignorantly in unbelief, </VERS>\n\t\t\t<VERS vnumber=\"14\"> and our Lord's grace was abundant, bringing faith and love in Christ Jesus.</VERS>\n\t\t\t<VERS vnumber=\"15\"> This saying is trustworthy and deserves full acceptance: \"Christ Jesus came into the world to save sinners\", and I am the worst of them!</VERS>\n\t\t\t<VERS vnumber=\"16\"> But here is why I was treated with mercy: so that in me as the worst, Christ Jesus could demonstrate his utmost patience, as an example for those who are going to believe in him for eternal life. </VERS>\n\t\t\t<VERS vnumber=\"17\"> Now to the eternal king, immortal, invisible, the only God, be honor and glory forever and ever! Amen.</VERS>\n\t\t\t<VERS vnumber=\"18\"> I put this charge before you, Timothy my child, in keeping with the prophecies once spoken about you, in order that with such encouragement you may fight the good fight. </VERS>\n\t\t\t<VERS vnumber=\"19\"> To do this you must hold firmly to faith and a good conscience, which some have rejected and so have suffered shipwreck in regard to the faith. </VERS>\n\t\t\t<VERS vnumber=\"20\"> Among these are Hymenaeus and Alexander, whom I handed over to Satan to be taught not to blaspheme.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> First of all, then, I urge that requests, prayers, intercessions, and thanks be offered on behalf of all people,</VERS>\n\t\t\t<VERS vnumber=\"2\"> even for kings and all who are in authority, that we may lead a peaceful and quiet life in all godliness and dignity. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Such prayer for all is good and welcomed before God our Savior, </VERS>\n\t\t\t<VERS vnumber=\"4\"> since he wants all people to be saved and to come to a knowledge of the truth. </VERS>\n\t\t\t<VERS vnumber=\"5\"> For there is one God and one intermediary between God and humanity, Christ Jesus, himself human,</VERS>\n\t\t\t<VERS vnumber=\"6\"> who gave himself as a ransom for all, revealing God's purpose at his appointed time.</VERS>\n\t\t\t<VERS vnumber=\"7\"> For this I was appointed a preacher and apostle, I am telling the truth; I am not lying, and a teacher of the Gentiles in faith and truth.</VERS>\n\t\t\t<VERS vnumber=\"8\"> So I want the men to pray in every place, lifting up holy hands without anger or dispute.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Likewise the women are to dress in suitable apparel, with modesty and self-control. Their adornment must not be with braided hair and gold or pearls or expensive clothing, </VERS>\n\t\t\t<VERS vnumber=\"10\"> but with good deeds, as is proper for women who profess reverence for God.</VERS>\n\t\t\t<VERS vnumber=\"11\"> A woman must learn quietly with all submissiveness. </VERS>\n\t\t\t<VERS vnumber=\"12\"> But I do not allow a woman to teach or exercise authority over a man. She must remain quiet.</VERS>\n\t\t\t<VERS vnumber=\"13\"> For Adam was formed first and then Eve.</VERS>\n\t\t\t<VERS vnumber=\"14\"> And Adam was not deceived, but the woman, because she was fully deceived, fell into transgression.</VERS>\n\t\t\t<VERS vnumber=\"15\"> But she will be delivered through childbearing, if she continues in faith and love and holiness with self-control.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> This saying is trustworthy: \"If someone aspires to the office of overseer, he desires a good work.\" </VERS>\n\t\t\t<VERS vnumber=\"2\"> The overseer then must be above reproach, the husband of one wife, temperate, self-controlled, respectable, hospitable, an able teacher, </VERS>\n\t\t\t<VERS vnumber=\"3\"> not a drunkard, not violent, but gentle, not contentious, free from the love of money.</VERS>\n\t\t\t<VERS vnumber=\"4\"> He must manage his own household well and keep his children in control without losing his dignity.</VERS>\n\t\t\t<VERS vnumber=\"5\"> But if someone does not know how to manage his own household, how will he care for the church of God?</VERS>\n\t\t\t<VERS vnumber=\"6\"> He must not be a recent convert or he may become arrogant and fall into the punishment that the devil will exact.</VERS>\n\t\t\t<VERS vnumber=\"7\"> And he must be well thought of by those outside the faith, so that he may not fall into disgrace and be caught by the devil's trap.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Deacons likewise must be dignified, not two-faced, not given to excessive drinking, not greedy for gain, </VERS>\n\t\t\t<VERS vnumber=\"9\"> holding to the mystery of the faith with a clear conscience. </VERS>\n\t\t\t<VERS vnumber=\"10\"> And these also must be tested first and then let them serve as deacons if they are found blameless.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Likewise also their wives must be dignified, not slanderous, temperate, faithful in every respect. </VERS>\n\t\t\t<VERS vnumber=\"12\"> Deacons must be husbands of one wife and good managers of their children and their own households. </VERS>\n\t\t\t<VERS vnumber=\"13\"> For those who have served well as deacons gain a good standing for themselves and great boldness in the faith that is in Christ Jesus.</VERS>\n\t\t\t<VERS vnumber=\"14\"> I hope to come to you soon, but I am writing these instructions to you </VERS>\n\t\t\t<VERS vnumber=\"15\"> in case I am delayed, to let you know how people ought to conduct themselves in the household of God, because it is the church of the living God, the support and bulwark of the truth. </VERS>\n\t\t\t<VERS vnumber=\"16\"> And we all agree, our religion contains amazing revelation: He was revealed in the flesh, vindicated by the Spirit, seen by angels, proclaimed among Gentiles, believed on in the world, taken up in glory.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\"> Now the Spirit explicitly says that in the later times some will desert the faith and occupy themselves with deceiving spirits and demonic teachings,</VERS>\n\t\t\t<VERS vnumber=\"2\"> influenced by the hypocrisy of liars whose consciences are seared.</VERS>\n\t\t\t<VERS vnumber=\"3\"> They will prohibit marriage and require abstinence from foods that God created to be received with thanksgiving by those who believe and know the truth.</VERS>\n\t\t\t<VERS vnumber=\"4\"> For every creation of God is good and no food is to be rejected if it is received with thanksgiving. </VERS>\n\t\t\t<VERS vnumber=\"5\"> For it is sanctified by God's word and by prayer.</VERS>\n\t\t\t<VERS vnumber=\"6\"> By pointing out such things to the brothers and sisters, you will be a good servant of Christ Jesus, having nourished yourself on the words of the faith and of the good teaching that you have followed.</VERS>\n\t\t\t<VERS vnumber=\"7\"> But reject those myths fit only for the godless and gullible, and train yourself for godliness. </VERS>\n\t\t\t<VERS vnumber=\"8\"> For \"physical exercise has some value, but godliness is valuable in every way. It holds promise for the present life and for the life to come.\" </VERS>\n\t\t\t<VERS vnumber=\"9\"> This saying is trustworthy and deserves full acceptance. </VERS>\n\t\t\t<VERS vnumber=\"10\"> In fact this is why we work hard and struggle, because we have set our hope on the living God, who is the Savior of all people, especially of believers.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Command and teach these things.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Let no one look down on you because you are young, but set an example for the believers in your speech, conduct, love, faithfulness, and purity. </VERS>\n\t\t\t<VERS vnumber=\"13\"> Until I come, give attention to the public reading of scripture, to exhortation, to teaching. </VERS>\n\t\t\t<VERS vnumber=\"14\"> Do not neglect the spiritual gift you have, given to you and confirmed by prophetic words when the elders laid hands on you.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Take pains with these things; be absorbed in them, so that everyone will see your progress.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Be conscientious about how you live and what you teach. Persevere in this, because by doing so you will save both yourself and those who listen to you.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"5\">\n\t\t\t<VERS vnumber=\"1\"> Do not address an older man harshly but appeal to him as a father. Speak to younger men as brothers,</VERS>\n\t\t\t<VERS vnumber=\"2\"> older women as mothers, and younger women as sisters, with complete purity.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Honor widows who are truly in need.</VERS>\n\t\t\t<VERS vnumber=\"4\"> But if a widow has children or grandchildren, they should first learn to fulfill their duty toward their own household and so repay their parents what is owed them. For this is what pleases God.</VERS>\n\t\t\t<VERS vnumber=\"5\"> But the widow who is truly in need, and completely on her own, has set her hope on God and continues in her pleas and prayers night and day. </VERS>\n\t\t\t<VERS vnumber=\"6\"> But the one who lives for pleasure is dead even while she lives. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Reinforce these commands, so that they will be beyond reproach.</VERS>\n\t\t\t<VERS vnumber=\"8\"> But if someone does not provide for his own, especially his own family, he has denied the faith and is worse than an unbeliever.</VERS>\n\t\t\t<VERS vnumber=\"9\"> No widow should be put on the list unless she is at least sixty years old, was the wife of one husband,</VERS>\n\t\t\t<VERS vnumber=\"10\"> and has a reputation for good works: as one who has raised children, practiced hospitality, washed the feet of the saints, helped those in distress, as one who has exhibited all kinds of good works.</VERS>\n\t\t\t<VERS vnumber=\"11\"> But do not accept younger widows on the list, because their passions may lead them away from Christ and they will desire to marry, </VERS>\n\t\t\t<VERS vnumber=\"12\"> and so incur judgment for breaking their former pledge.</VERS>\n\t\t\t<VERS vnumber=\"13\"> And besides that, going around from house to house they learn to be lazy, and they are not only lazy, but also gossips and busybodies, talking about things they should not.</VERS>\n\t\t\t<VERS vnumber=\"14\"> So I want younger women to marry, raise children, and manage a household, in order to give the adversary no opportunity to vilify us.</VERS>\n\t\t\t<VERS vnumber=\"15\"> For some have already wandered away to follow Satan.</VERS>\n\t\t\t<VERS vnumber=\"16\"> If a believing woman has widows in her family, let her help them. The church should not be burdened, so that it may help the widows who are truly in need.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Elders who provide effective leadership must be counted worthy of double honor, especially those who work hard in speaking and teaching. </VERS>\n\t\t\t<VERS vnumber=\"18\"> For the scripture says, \"Do not muzzle an ox while it is treading out the grain,\" and, \"The worker deserves his pay.\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> Do not accept an accusation against an elder unless it can be confirmed by two or three witnesses.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Those guilty of sin must be rebuked before all, as a warning to the rest.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Before God and Christ Jesus and the elect angels, I solemnly charge you to carry out these commands without prejudice or favoritism of any kind.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Do not lay hands on anyone hastily and so identify with the sins of others. Keep yourself pure. </VERS>\n\t\t\t<VERS vnumber=\"23\"> (Stop drinking just water, but use a little wine for your digestion and your frequent illnesses.)</VERS>\n\t\t\t<VERS vnumber=\"24\"> The sins of some people are obvious, going before them into judgment, but for others, they show up later.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Similarly good works are also obvious, and the ones that are not cannot remain hidden.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"6\">\n\t\t\t<VERS vnumber=\"1\"> Those who are under the yoke as slaves must regard their own masters as deserving of full respect. This will prevent the name of God and Christian teaching from being discredited.</VERS>\n\t\t\t<VERS vnumber=\"2\"> But those who have believing masters must not show them less respect because they are brothers. Instead they are to serve all the more, because those who benefit from their service are believers and dearly loved. Teach them and exhort them about these things.</VERS>\n\t\t\t<VERS vnumber=\"3\"> If someone spreads false teachings and does not agree with sound words (that is, those of our Lord Jesus Christ) and with the teaching that accords with godliness, </VERS>\n\t\t\t<VERS vnumber=\"4\"> he is conceited and understands nothing, but has an unhealthy interest in controversies and verbal disputes. This gives rise to envy, dissension, slanders, evil suspicions,</VERS>\n\t\t\t<VERS vnumber=\"5\"> and constant bickering by people corrupted in their minds and deprived of the truth, who suppose that godliness is a way of making a profit. </VERS>\n\t\t\t<VERS vnumber=\"6\"> Now godliness combined with contentment brings great profit.</VERS>\n\t\t\t<VERS vnumber=\"7\"> For we have brought nothing into this world and so we cannot take a single thing out either. </VERS>\n\t\t\t<VERS vnumber=\"8\"> But if we have food and shelter, we will be satisfied with that.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Those who long to be rich, however, stumble into temptation and a trap and many senseless and harmful desires that plunge people into ruin and destruction.</VERS>\n\t\t\t<VERS vnumber=\"10\"> For the love of money is the root of all evils. Some people in reaching for it have strayed from the faith and stabbed themselves with many pains.</VERS>\n\t\t\t<VERS vnumber=\"11\"> But you, as a person dedicated to God, keep away from all that. Instead pursue righteousness, godliness, faithfulness, love, endurance, and gentleness. </VERS>\n\t\t\t<VERS vnumber=\"12\"> Compete well for the faith and lay hold of that eternal life you were called for and made your good confession for in the presence of many witnesses. </VERS>\n\t\t\t<VERS vnumber=\"13\"> I charge you before God who gives life to all things and Christ Jesus who made his good confession before Pontius Pilate, </VERS>\n\t\t\t<VERS vnumber=\"14\"> to obey this command without fault or failure until the appearing of our Lord Jesus Christ </VERS>\n\t\t\t<VERS vnumber=\"15\"> , whose appearing the blessed and only Sovereign, the King of kings and Lord of lords, will reveal at the right time. </VERS>\n\t\t\t<VERS vnumber=\"16\"> He alone possesses immortality and lives in unapproachable light, whom no human has ever seen or is able to see. To him be honor and eternal power! Amen.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Command those who are rich in this world's goods not to be haughty or to set their hope on riches, which are uncertain, but on God who richly provides us with all things for our enjoyment. </VERS>\n\t\t\t<VERS vnumber=\"18\"> Tell them to do good, to be rich in good deeds, to be generous givers, sharing with others.</VERS>\n\t\t\t<VERS vnumber=\"19\"> In this way they will save up a treasure for themselves as a firm foundation for the future and so lay hold of what is truly life.</VERS>\n\t\t\t<VERS vnumber=\"20\"> O Timothy, protect what has been entrusted to you. Avoid the profane chatter and absurdities of so-called \"knowledge.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> By professing it, some have strayed from the faith. Grace be with you all.</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"55\" bname=\"2 Timothy\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> From Paul, an apostle of Christ Jesus by the will of God, to further the promise of life in Christ Jesus, </VERS>\n\t\t\t<VERS vnumber=\"2\"> to Timothy, my dear child. Grace, mercy, and peace from God the Father and Christ Jesus our Lord!</VERS>\n\t\t\t<VERS vnumber=\"3\"> I am thankful to God, whom I have served with a clear conscience as my ancestors did, when I remember you in my prayers as I do constantly night and day.</VERS>\n\t\t\t<VERS vnumber=\"4\"> As I remember your tears, I long to see you, so that I may be filled with joy. </VERS>\n\t\t\t<VERS vnumber=\"5\"> I recall your sincere faith that was alive first in your grandmother Lois and in your mother Eunice, and I am sure is in you.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Because of this I remind you to rekindle God's gift that you possess through the laying on of my hands. </VERS>\n\t\t\t<VERS vnumber=\"7\"> For God did not give us a Spirit of fear but of power and love and self-control. </VERS>\n\t\t\t<VERS vnumber=\"8\"> So do not be ashamed of the testimony about our Lord or of me, a prisoner for his sake, but by God's power accept your share of suffering for the gospel.</VERS>\n\t\t\t<VERS vnumber=\"9\"> He is the one who saved us and called us with a holy calling, not based on our works but on his own purpose and grace, granted to us in Christ Jesus before time began,</VERS>\n\t\t\t<VERS vnumber=\"10\"> but now made visible through the appearing of our Savior Christ Jesus. He has broken the power of death and brought life and immortality to light through the gospel!</VERS>\n\t\t\t<VERS vnumber=\"11\"> For this gospel I was appointed a preacher and apostle and teacher.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Because of this, in fact, I suffer as I do. But I am not ashamed, because I know the one in whom my faith is set and I am convinced that he is able to protect what has been entrusted to me until that day.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Hold to the standard of sound words that you heard from me and do so with the faith and love that are in Christ Jesus.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Protect that good thing entrusted to you, through the Holy Spirit who lives within us.</VERS>\n\t\t\t<VERS vnumber=\"15\"> You know that everyone in the province of Asia deserted me, including Phygelus and Hermogenes. </VERS>\n\t\t\t<VERS vnumber=\"16\"> May the Lord grant mercy to the family of Onesiphorus, because he often refreshed me and was not ashamed of my imprisonment.</VERS>\n\t\t\t<VERS vnumber=\"17\"> But when he arrived in Rome, he eagerly searched for me and found me. </VERS>\n\t\t\t<VERS vnumber=\"18\"> May the Lord grant him to find mercy from the Lord on that day! And you know very well all the ways he served me in Ephesus.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> So you, my child, be strong in the grace that is in Christ Jesus.</VERS>\n\t\t\t<VERS vnumber=\"2\"> And entrust what you heard me say in the presence of many others as witnesses to faithful people who will be competent to teach others as well. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Take your share of suffering as a good soldier of Christ Jesus. </VERS>\n\t\t\t<VERS vnumber=\"4\"> No one in military service gets entangled in matters of everyday life; otherwise he will not please the one who recruited him. </VERS>\n\t\t\t<VERS vnumber=\"5\"> Also, if anyone competes as an athlete, he will not be crowned as the winner unless he competes according to the rules.</VERS>\n\t\t\t<VERS vnumber=\"6\"> The farmer who works hard ought to have the first share of the crops.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Think about what I am saying and the Lord will give you understanding of all this.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Remember Jesus Christ, raised from the dead, a descendant of David; such is my gospel,</VERS>\n\t\t\t<VERS vnumber=\"9\"> for which I suffer hardship to the point of imprisonment as a criminal, but God's message is not imprisoned!</VERS>\n\t\t\t<VERS vnumber=\"10\"> So I endure all things for the sake of those chosen by God, that they too may obtain salvation in Christ Jesus and its eternal glory.</VERS>\n\t\t\t<VERS vnumber=\"11\"> This saying is trustworthy: If we died with him, we will also live with him.</VERS>\n\t\t\t<VERS vnumber=\"12\"> If we endure, we will also reign with him. If we deny him, he will also deny us.</VERS>\n\t\t\t<VERS vnumber=\"13\"> If we are unfaithful, he remains faithful, since he cannot deny himself.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Remind people of these things and solemnly charge them before the Lord not to wrangle over words. This is of no benefit; it just brings ruin on those who listen.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Make every effort to present yourself before God as a proven worker who does not need to be ashamed, teaching the message of truth accurately.</VERS>\n\t\t\t<VERS vnumber=\"16\"> But avoid profane chatter, because those occupied with it will stray further and further into ungodliness,</VERS>\n\t\t\t<VERS vnumber=\"17\"> and their message will spread its infection like gangrene. Hymenaeus and Philetus are in this group.</VERS>\n\t\t\t<VERS vnumber=\"18\"> They have strayed from the truth by saying that the resurrection has already occurred, and they are undermining some people's faith. </VERS>\n\t\t\t<VERS vnumber=\"19\"> However, God's solid foundation remains standing, bearing this seal: \"The Lord knows those who are his,\" and \"Everyone who confesses the name of the Lord must turn away from evil.\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> Now in a wealthy home there are not only gold and silver vessels, but also ones made of wood and of clay, and some are for honorable use, but others for ignoble use.</VERS>\n\t\t\t<VERS vnumber=\"21\"> So if someone cleanses himself of such behavior, he will be a vessel for honorable use, set apart, useful for the Master, prepared for every good work. </VERS>\n\t\t\t<VERS vnumber=\"22\"> But keep away from youthful passions, and pursue righteousness, faithfulness, love, and peace, in company with others who call on the Lord from a pure heart.</VERS>\n\t\t\t<VERS vnumber=\"23\"> But reject foolish and ignorant controversies, because you know they breed infighting.</VERS>\n\t\t\t<VERS vnumber=\"24\"> And the Lord's slave must not engage in heated disputes but be kind toward all, an apt teacher, patient, </VERS>\n\t\t\t<VERS vnumber=\"25\"> correcting opponents with gentleness. Perhaps God will grant them repentance and then knowledge of the truth</VERS>\n\t\t\t<VERS vnumber=\"26\"> and they will come to their senses and escape the devil's trap where they are held captive to do his will.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> But understand this, that in the last days difficult times will come. </VERS>\n\t\t\t<VERS vnumber=\"2\"> For people will be lovers of themselves, lovers of money, boastful, arrogant, blasphemers, disobedient to parents, ungrateful, unholy, </VERS>\n\t\t\t<VERS vnumber=\"3\"> unloving, irreconcilable, slanderers, without self-control, savage, opposed to what is good,</VERS>\n\t\t\t<VERS vnumber=\"4\"> treacherous, reckless, conceited, loving pleasure rather than loving God.</VERS>\n\t\t\t<VERS vnumber=\"5\"> They will maintain the outward appearance of religion but will have repudiated its power. So avoid people like these.</VERS>\n\t\t\t<VERS vnumber=\"6\"> For some of these insinuate themselves into households and captivate weak women who are overwhelmed with sins and led along by various passions. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Such women are always seeking instruction, yet never able to arrive at a knowledge of the truth. </VERS>\n\t\t\t<VERS vnumber=\"8\"> And just as Jannes and Jambres opposed Moses, so these people, who have warped minds and are disqualified in the faith, also oppose the truth.</VERS>\n\t\t\t<VERS vnumber=\"9\"> But they will not go much further, for their foolishness will be obvious to everyone, just like it was with Jannes and Jambres.</VERS>\n\t\t\t<VERS vnumber=\"10\"> You, however, have followed my teaching, my way of life, my purpose, my faith, my patience, my love, my endurance, </VERS>\n\t\t\t<VERS vnumber=\"11\"> as well as the persecutions and sufferings that happened to me in Antioch, in Iconium, and in Lystra. I endured these persecutions and the Lord delivered me from them all. </VERS>\n\t\t\t<VERS vnumber=\"12\"> Now in fact all who want to live godly lives in Christ Jesus will be persecuted.</VERS>\n\t\t\t<VERS vnumber=\"13\"> But evil people and charlatans will go from bad to worse, deceiving others and being deceived themselves.</VERS>\n\t\t\t<VERS vnumber=\"14\"> You, however, must continue in the things you have learned and are confident about. You know who taught you</VERS>\n\t\t\t<VERS vnumber=\"15\"> and how from infancy you have known the holy writings, which are able to give you wisdom for salvation through faith in Christ Jesus.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Every scripture is inspired by God and useful for teaching, for reproof, for correction, and for training in righteousness, </VERS>\n\t\t\t<VERS vnumber=\"17\"> that the person dedicated to God may be capable and equipped for every good work.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\"> I solemnly charge you before God and Christ Jesus, who is going to judge the living and the dead, and by his appearing and his kingdom:</VERS>\n\t\t\t<VERS vnumber=\"2\"> Preach the message, be ready whether it is convenient or not, reprove, rebuke, exhort with complete patience and instruction. </VERS>\n\t\t\t<VERS vnumber=\"3\"> For there will be a time when people will not tolerate sound teaching. Instead, following their own desires, they will accumulate teachers for themselves, because they have an insatiable curiosity to hear new things.</VERS>\n\t\t\t<VERS vnumber=\"4\"> And they will turn away from hearing the truth, but on the other hand they will turn aside to myths.</VERS>\n\t\t\t<VERS vnumber=\"5\"> You, however, be self-controlled in all things, endure hardship, do an evangelist's work, fulfill your ministry. </VERS>\n\t\t\t<VERS vnumber=\"6\"> For I am already being poured out as an offering, and the time for me to depart is at hand. </VERS>\n\t\t\t<VERS vnumber=\"7\"> I have competed well; I have finished the race; I have kept the faith! </VERS>\n\t\t\t<VERS vnumber=\"8\"> Finally the crown of righteousness is reserved for me. The Lord, the righteous Judge, will award it to me in that day, and not to me only, but also to all who have set their affection on his appearing.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Make every effort to come to me soon.</VERS>\n\t\t\t<VERS vnumber=\"10\"> For Demas deserted me, since he loved the present age, and he went to Thessalonica. Crescens went to Galatia and Titus to Dalmatia. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Only Luke is with me. Get Mark and bring him with you, because he is a great help to me in ministry.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Now I have sent Tychicus to Ephesus.</VERS>\n\t\t\t<VERS vnumber=\"13\"> When you come, bring with you the cloak I left in Troas with Carpas and the scrolls, especially the parchments.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Alexander the coppersmith did me a great deal of harm. The Lord will repay him in keeping with his deeds.</VERS>\n\t\t\t<VERS vnumber=\"15\"> You be on guard against him too, because he vehemently opposed our words. </VERS>\n\t\t\t<VERS vnumber=\"16\"> At my first defense no one appeared in my support; instead they all deserted me, may they not be held accountable for it.</VERS>\n\t\t\t<VERS vnumber=\"17\"> But the Lord stood by me and strengthened me, so that through me the message would be fully proclaimed for all the Gentiles to hear. And so I was delivered from the lion's mouth! </VERS>\n\t\t\t<VERS vnumber=\"18\"> The Lord will deliver me from every evil deed and will bring me safely into his heavenly kingdom. To him be glory for ever and ever! Amen.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Greetings to Prisca and Aquila and the family of Onesiphorus. </VERS>\n\t\t\t<VERS vnumber=\"20\"> Erastus stayed in Corinth. Trophimus I left ill in Miletus. </VERS>\n\t\t\t<VERS vnumber=\"21\"> Make every effort to come before winter. Greetings to you from Eubulus, Pudens, Linus, Claudia, and all the brothers and sisters.</VERS>\n\t\t\t<VERS vnumber=\"22\"> The Lord be with your spirit. Grace be with you.</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"56\" bname=\"Titus\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> From Paul, a slave of God and apostle of Jesus Christ, to further the faith of God's chosen ones and the knowledge of the truth that is in keeping with godliness, </VERS>\n\t\t\t<VERS vnumber=\"2\"> in hope of eternal life, which God, who does not lie, promised before the ages began.</VERS>\n\t\t\t<VERS vnumber=\"3\"> But now in his own time he has made his message evident through the preaching I was entrusted with according to the command of God our Savior. </VERS>\n\t\t\t<VERS vnumber=\"4\"> To Titus, my genuine son in a common faith. Grace and peace from God the Father and Christ Jesus our Savior!</VERS>\n\t\t\t<VERS vnumber=\"5\"> The reason I left you in Crete was to set in order the remaining matters and to appoint elders in every town, as I directed you.</VERS>\n\t\t\t<VERS vnumber=\"6\"> An elder must be blameless, the husband of one wife, with faithful children who cannot be charged with dissipation or rebellion. </VERS>\n\t\t\t<VERS vnumber=\"7\"> For the overseer must be blameless as one entrusted with God's work, not arrogant, not prone to anger, not a drunkard, not violent, not greedy for gain. </VERS>\n\t\t\t<VERS vnumber=\"8\"> Instead he must be hospitable, devoted to what is good, sensible, upright, devout, and self-controlled.</VERS>\n\t\t\t<VERS vnumber=\"9\"> He must hold firmly to the faithful message as it has been taught, so that he will be able to give exhortation in such healthy teaching and correct those who speak against it.</VERS>\n\t\t\t<VERS vnumber=\"10\"> For there are many rebellious people, idle talkers, and deceivers, especially those with Jewish connections,</VERS>\n\t\t\t<VERS vnumber=\"11\"> who must be silenced because they mislead whole families by teaching for dishonest gain what ought not to be taught.</VERS>\n\t\t\t<VERS vnumber=\"12\"> A certain one of them, in fact, one of their own prophets, said, \"Cretans are always liars, evil beasts, lazy gluttons.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> Such testimony is true. For this reason rebuke them sharply that they may be healthy in the faith</VERS>\n\t\t\t<VERS vnumber=\"14\"> and not pay attention to Jewish myths and commands of people who reject the truth. </VERS>\n\t\t\t<VERS vnumber=\"15\"> All is pure to those who are pure. But to those who are corrupt and unbelieving, nothing is pure, but both their minds and consciences are corrupted.</VERS>\n\t\t\t<VERS vnumber=\"16\"> They profess to know God but with their deeds they deny him, since they are detestable, disobedient, and unfit for any good deed.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> But as for you, communicate the behavior that goes with sound teaching. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Older men are to be temperate, dignified, self-controlled, sound in faith, in love, and in endurance.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Older women likewise are to exhibit behavior fitting for those who are holy, not slandering, not slaves to excessive drinking, but teaching what is good.</VERS>\n\t\t\t<VERS vnumber=\"4\"> In this way they will train the younger women to love their husbands, to love their children, </VERS>\n\t\t\t<VERS vnumber=\"5\"> to be self-controlled, pure, fulfilling their duties at home, kind, being subject to their own husbands, so that the message of God may not be discredited.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Encourage younger men likewise to be self-controlled,</VERS>\n\t\t\t<VERS vnumber=\"7\"> showing yourself to be an example of good works in every way. In your teaching show integrity, dignity,</VERS>\n\t\t\t<VERS vnumber=\"8\"> and a sound message that cannot be criticized, so that any opponent will be at a loss, because he has nothing evil to say about us. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Slaves are to be subject to their own masters in everything, to do what is wanted and not talk back, </VERS>\n\t\t\t<VERS vnumber=\"10\"> not pilfering, but showing all good faith, in order to bring credit to the teaching of God our Savior in everything.</VERS>\n\t\t\t<VERS vnumber=\"11\"> For the grace of God has appeared, bringing salvation to all people.</VERS>\n\t\t\t<VERS vnumber=\"12\"> It trains us to reject godless ways and worldly desires and to live self-controlled, upright, and godly lives in the present age, </VERS>\n\t\t\t<VERS vnumber=\"13\"> as we wait for the happy fulfillment of our hope in the glorious appearing of our great God and Savior, Jesus Christ.</VERS>\n\t\t\t<VERS vnumber=\"14\"> He gave himself for us to set us free from every kind of lawlessness and to purify for himself a people who are truly his, who are eager to do good.</VERS>\n\t\t\t<VERS vnumber=\"15\"> So communicate these things with the sort of exhortation or rebuke that carries full authority. Don't let anyone look down on you.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> Remind them to be subject to rulers and authorities, to be obedient, to be ready for every good work. </VERS>\n\t\t\t<VERS vnumber=\"2\"> They must not slander anyone, but be peaceable, gentle, showing complete courtesy to all people. </VERS>\n\t\t\t<VERS vnumber=\"3\"> For we too were once foolish, disobedient, misled, enslaved to various passions and desires, spending our lives in evil and envy, hateful and hating one another.</VERS>\n\t\t\t<VERS vnumber=\"4\">  But \"when the kindness of God our Savior and his love for mankind appeared, </VERS>\n\t\t\t<VERS vnumber=\"5\"> he saved us not by works of righteousness that we have done but on the basis of his mercy, through the washing of the new birth and the renewing of the Holy Spirit,</VERS>\n\t\t\t<VERS vnumber=\"6\"> whom he poured out on us in full measure through Jesus Christ our Savior. </VERS>\n\t\t\t<VERS vnumber=\"7\"> And so, since we have been justified by his grace, we become heirs with the confident expectation of eternal life.\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> This saying is trustworthy, and I want you to insist on such truths, so that those who have placed their faith in God may be intent on engaging in good works. These things are good and beneficial for all people. </VERS>\n\t\t\t<VERS vnumber=\"9\"> But avoid foolish controversies, genealogies, quarrels, and fights about the law, because they are useless and empty. </VERS>\n\t\t\t<VERS vnumber=\"10\"> Reject a divisive person after one or two warnings.</VERS>\n\t\t\t<VERS vnumber=\"11\"> You know that such a person is twisted by sin and is conscious of it himself.</VERS>\n\t\t\t<VERS vnumber=\"12\"> When I send Artemas or Tychicus to you, do your best to come to me at Nicopolis, for I have decided to spend the winter there.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Make every effort to help Zenas the lawyer and Apollos on their way; make sure they have what they need.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Here is another way that our people can learn to engage in good works to meet pressing needs and so not be unfruitful. </VERS>\n\t\t\t<VERS vnumber=\"15\"> Everyone with me greets you. Greet those who love us in the faith. Grace be with you all.</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"57\" bname=\"Philemon\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> From Paul, a prisoner of Christ Jesus, and Timothy our brother, to Philemon, our dear friend and colaborer, </VERS>\n\t\t\t<VERS vnumber=\"2\"> to Apphia our sister, to Archippus our fellow soldier, and to the church that meets in your house. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Grace and peace to you from God our Father and the Lord Jesus Christ!</VERS>\n\t\t\t<VERS vnumber=\"4\"> I always thank my God as I remember you in my prayers,</VERS>\n\t\t\t<VERS vnumber=\"5\"> because I hear of your faith in the Lord Jesus and your love for all the saints.</VERS>\n\t\t\t<VERS vnumber=\"6\"> I pray that the faith you share with us may deepen your understanding of every blessing that belongs to you in Christ.</VERS>\n\t\t\t<VERS vnumber=\"7\"> I have had great joy and encouragement because of your love, for the hearts of the saints have been refreshed through you, brother.</VERS>\n\t\t\t<VERS vnumber=\"8\"> So, although I have quite a lot of confidence in Christ and could command you to do what is proper,</VERS>\n\t\t\t<VERS vnumber=\"9\"> I would rather appeal to you on the basis of love, I, Paul, an old man and even now a prisoner for the sake of Christ Jesus,</VERS>\n\t\t\t<VERS vnumber=\"10\"> I am appealing to you concerning my child, whose spiritual father I have become during my imprisonment, that is, Onesimus,</VERS>\n\t\t\t<VERS vnumber=\"11\"> who was formerly useless to you, but is now useful to you and me. </VERS>\n\t\t\t<VERS vnumber=\"12\"> I have sent him (who is my very heart) back to you. </VERS>\n\t\t\t<VERS vnumber=\"13\"> I wanted to keep him so that he could serve me in your place during my imprisonment for the sake of the gospel.</VERS>\n\t\t\t<VERS vnumber=\"14\"> However, without your consent I did not want to do anything, so that your good deed would not be out of compulsion, but from your own willingness. </VERS>\n\t\t\t<VERS vnumber=\"15\"> For perhaps it was for this reason that he was separated from you for a little while, so that you would have him back eternally,</VERS>\n\t\t\t<VERS vnumber=\"16\"> no longer as a slave, but more than a slave, as a dear brother. He is especially so to me, and even more so to you now, both humanly speaking and in the Lord. </VERS>\n\t\t\t<VERS vnumber=\"17\"> Therefore if you regard me as a partner, accept him as you would me.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Now if he has defrauded you of anything or owes you anything, charge what he owes to me. </VERS>\n\t\t\t<VERS vnumber=\"19\"> I, Paul, have written this letter with my own hand: I will repay it. I could also mention that you owe me your very self. </VERS>\n\t\t\t<VERS vnumber=\"20\"> Yes, brother, let me have some benefit from you in the Lord. Refresh my heart in Christ.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Since I was confident that you would obey, I wrote to you, because I knew that you would do even more than what I am asking you to do. </VERS>\n\t\t\t<VERS vnumber=\"22\"> At the same time also, prepare a place for me to stay, for I hope that through your prayers I will be given back to you.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Epaphras, my fellow prisoner in Christ Jesus, greets you. </VERS>\n\t\t\t<VERS vnumber=\"24\"> Mark, Aristarchus, Demas and Luke, my colaborers, greet you too. </VERS>\n\t\t\t<VERS vnumber=\"25\"> May the grace of the Lord Jesus Christ be with your spirit.</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"58\" bname=\"Hebrews\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> After God spoke long ago in various portions and in various ways to our ancestors through the prophets, </VERS>\n\t\t\t<VERS vnumber=\"2\"> in these last days he has spoken to us in a son, whom he appointed heir of all things, and through whom he created the world.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The Son is the radiance of his glory and the representation of his essence, and he sustains all things by his powerful word, and so when he had accomplished cleansing for sins, he sat down at the right hand of the Majesty on high.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Thus he became so far better than the angels as he has inherited a name superior to theirs.</VERS>\n\t\t\t<VERS vnumber=\"5\"> For to which of the angels did God ever say, \"You are my son! Today I have fathered you\"? And in another place he says, \"I will be his father and he will be my son.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> But when he again brings his firstborn into the world, he says, \"Let all the angels of God worship him!\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> And he says of the angels, \"He makes his angels spirits and his ministers a flame of fire,\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> but of the Son he says, \"Your throne, O God, is forever and ever, and a righteous scepter is the scepter of your kingdom.</VERS>\n\t\t\t<VERS vnumber=\"9\"> You have loved righteousness and hated lawlessness. So God, your God, has anointed you over your companions with the oil of rejoicing.\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> And, \"You founded the earth in the beginning, Lord, and the heavens are the works of your hands.</VERS>\n\t\t\t<VERS vnumber=\"11\"> They will perish, but you continue. And they will all grow old like a garment,</VERS>\n\t\t\t<VERS vnumber=\"12\"> and like a robe you will fold them up and like a garment they will be changed, but you are the same and your years will never run out.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> But to which of the angels has he ever said, \"Sit at my right hand until I make your enemies a footstool for your feet\"?</VERS>\n\t\t\t<VERS vnumber=\"14\"> Are they not all ministering spirits, sent out to serve those who will inherit salvation?</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> Therefore we must pay closer attention to what we have heard, so that we do not drift away.</VERS>\n\t\t\t<VERS vnumber=\"2\"> For if the message spoken through angels proved to be so firm that every violation or disobedience received its just penalty, </VERS>\n\t\t\t<VERS vnumber=\"3\"> how will we escape if we neglect such a great salvation? It was first communicated through the Lord and was confirmed to us by those who heard him,</VERS>\n\t\t\t<VERS vnumber=\"4\"> while God confirmed their witness with signs and wonders and various miracles and gifts of the Holy Spirit distributed according to his will.</VERS>\n\t\t\t<VERS vnumber=\"5\"> For he did not put the world to come, about which we are speaking, under the control of angels. </VERS>\n\t\t\t<VERS vnumber=\"6\"> Instead someone testified somewhere: \"What is man that you think of him or the son of man that you care for him?</VERS>\n\t\t\t<VERS vnumber=\"7\"> You made him lower than the angels for a little while. You crowned him with glory and honor.</VERS>\n\t\t\t<VERS vnumber=\"8\"> You put all things under his control.\" For when he put all things under his control, he left nothing outside of his control. At present we do not yet see all things under his control,</VERS>\n\t\t\t<VERS vnumber=\"9\"> but we see Jesus, who was made lower than the angels for a little while, now crowned with glory and honor because he suffered death, so that by God's grace he would experience death on behalf of everyone. </VERS>\n\t\t\t<VERS vnumber=\"10\"> For it was fitting for him, for whom and through whom all things exist, in bringing many sons to glory, to make the pioneer of their salvation perfect through sufferings. </VERS>\n\t\t\t<VERS vnumber=\"11\"> For indeed he who makes holy and those being made holy all have the same origin, and so he is not ashamed to call them brothers and sisters,</VERS>\n\t\t\t<VERS vnumber=\"12\"> saying, \"I will proclaim your name to my brothers; in the midst of the assembly I will praise you.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> Again he says, \"I will be confident in him,\" and again, \"Here I am, with the children God has given me.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> Therefore, since the children share in flesh and blood, he likewise shared in their humanity, so that through death he could destroy the one who holds the power of death (that is, the devil), </VERS>\n\t\t\t<VERS vnumber=\"15\"> and set free those who were held in slavery all their lives by their fear of death.</VERS>\n\t\t\t<VERS vnumber=\"16\"> For surely his concern is not for angels, but he is concerned for Abraham's descendants.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Therefore he had to be made like his brothers and sisters in every respect, so that he could become a merciful and faithful high priest in things relating to God, to make atonement for the sins of the people. </VERS>\n\t\t\t<VERS vnumber=\"18\"> For since he himself suffered when he was tempted, he is able to help those who are tempted.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> Therefore, holy brothers and sisters, partners in a heavenly calling, take note of Jesus, the apostle and high priest whom we confess,</VERS>\n\t\t\t<VERS vnumber=\"2\"> who is faithful to the one who appointed him, as Moses was also in God's house.</VERS>\n\t\t\t<VERS vnumber=\"3\"> For he has come to deserve greater glory than Moses, just as the builder of a house deserves greater honor than the house itself!</VERS>\n\t\t\t<VERS vnumber=\"4\"> For every house is built by someone, but the builder of all things is God.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Now Moses was faithful in all God's house as a servant, to testify to the things that would be spoken. </VERS>\n\t\t\t<VERS vnumber=\"6\"> But Christ is faithful as a son over God's house. We are of his house, if in fact we hold firmly to our confidence and the hope we take pride in.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Therefore, as the Holy Spirit says, \"Oh, that today you would listen as he speaks!</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"Do not harden your hearts as in the rebellion, in the day of testing in the wilderness.</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"There your fathers tested me and tried me, and they saw my works for forty years.</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"Therefore, I became provoked at that generation and said, 'Their hearts are always wandering and they have not known my ways.'</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"As I swore in my anger, 'They will never enter my rest!'\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> See to it, brothers and sisters, that none of you has an evil, unbelieving heart that forsakes the living God.</VERS>\n\t\t\t<VERS vnumber=\"13\"> But exhort one another each day, as long as it is called \"Today,\" that none of you may become hardened by sin's deception.</VERS>\n\t\t\t<VERS vnumber=\"14\"> For we have become partners with Christ, if in fact we hold our initial confidence firm until the end. </VERS>\n\t\t\t<VERS vnumber=\"15\"> As it says, \"Oh, that today you would listen as he speaks! Do not harden your hearts as in the rebellion.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> For which ones heard and rebelled? Was it not all who came out of Egypt under Moses' leadership?</VERS>\n\t\t\t<VERS vnumber=\"17\"> And against whom was God provoked for forty years? Was it not those who sinned, whose dead bodies fell in the wilderness?</VERS>\n\t\t\t<VERS vnumber=\"18\"> And to whom did he swear they would never enter into his rest, except those who were disobedient?</VERS>\n\t\t\t<VERS vnumber=\"19\"> So we see that they could not enter because of unbelief.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\"> Therefore we must be wary that, while the promise of entering his rest remains open, none of you may seem to have come short of it. </VERS>\n\t\t\t<VERS vnumber=\"2\"> For we had good news proclaimed to us just as they did. But the message they heard did them no good, since they did not join in with those who heard it in faith.</VERS>\n\t\t\t<VERS vnumber=\"3\"> For we who have believed enter that rest, as he has said, \"As I swore in my anger, 'They will never enter my rest!'\" And yet God's works were accomplished from the foundation of the world. </VERS>\n\t\t\t<VERS vnumber=\"4\"> For he has spoken somewhere about the seventh day in this way: \"And God rested on the seventh day from all his works,\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> but to repeat the text cited earlier: \"They will never enter my rest!\" </VERS>\n\t\t\t<VERS vnumber=\"6\"> Therefore it remains for some to enter it, yet those to whom it was previously proclaimed did not enter because of disobedience.</VERS>\n\t\t\t<VERS vnumber=\"7\"> So God again ordains a certain day, \"Today,\" speaking through David after so long a time, as in the words quoted before, \"O, that today you would listen as he speaks! Do not harden your hearts.\" </VERS>\n\t\t\t<VERS vnumber=\"8\"> For if Joshua had given them rest, God would not have spoken afterward about another day. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Consequently a Sabbath rest remains for the people of God.</VERS>\n\t\t\t<VERS vnumber=\"10\"> For the one who enters God's rest has also rested from his works, just as God did from his own works. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Thus we must make every effort to enter that rest, so that no one may fall by following the same pattern of disobedience.</VERS>\n\t\t\t<VERS vnumber=\"12\"> For the word of God is living and active and sharper than any double-edged sword, piercing even to the point of dividing soul from spirit, and joints from marrow; it is able to judge the desires and thoughts of the heart.</VERS>\n\t\t\t<VERS vnumber=\"13\"> And no creature is hidden from God, but everything is naked and exposed to the eyes of him to whom we must render an account.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Therefore since we have a great high priest who has passed through the heavens, Jesus the Son of God, let us hold fast to our confession.</VERS>\n\t\t\t<VERS vnumber=\"15\"> For we do not have a high priest incapable of sympathizing with our weaknesses, but one who has been tempted in every way just as we are, yet without sin.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Therefore let us confidently approach the throne of grace to receive mercy and find grace whenever we need help.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"5\">\n\t\t\t<VERS vnumber=\"1\"> For every high priest is taken from among the people and appointed to represent them before God, to offer both gifts and sacrifices for sins. </VERS>\n\t\t\t<VERS vnumber=\"2\"> He is able to deal compassionately with those who are ignorant and erring, since he also is subject to weakness,</VERS>\n\t\t\t<VERS vnumber=\"3\"> and for this reason he is obligated to make sin offerings for himself as well as for the people.</VERS>\n\t\t\t<VERS vnumber=\"4\"> And no one assumes this honor on his own initiative, but only when called to it by God, as in fact Aaron was.</VERS>\n\t\t\t<VERS vnumber=\"5\"> So also Christ did not glorify himself in becoming high priest, but the one who glorified him was God, who said to him, \"You are my Son! Today I have fathered you,\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> as also in another place God says, \"You are a priest forever in the order of Melchizedek.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> During his earthly life Christ offered both requests and supplications, with loud cries and tears, to the one who was able to save him from death and he was heard because of his devotion. </VERS>\n\t\t\t<VERS vnumber=\"8\"> Although he was a son, he learned obedience through the things he suffered.</VERS>\n\t\t\t<VERS vnumber=\"9\"> And by being perfected in this way, he became the source of eternal salvation to all who obey him,</VERS>\n\t\t\t<VERS vnumber=\"10\"> and he was designated by God as high priest in the order of Melchizedek.</VERS>\n\t\t\t<VERS vnumber=\"11\"> On this topic we have much to say and it is difficult to explain, since you have become sluggish in hearing. </VERS>\n\t\t\t<VERS vnumber=\"12\"> For though you should in fact be teachers by this time, you need someone to teach you the beginning elements of God's utterances. You have gone back to needing milk, not solid food. </VERS>\n\t\t\t<VERS vnumber=\"13\"> For everyone who lives on milk is inexperienced in the message of righteousness, because he is an infant.</VERS>\n\t\t\t<VERS vnumber=\"14\"> But solid food is for the mature, whose perceptions are trained by practice to discern both good and evil.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"6\">\n\t\t\t<VERS vnumber=\"1\"> Therefore we must progress beyond the elementary instructions about Christ and move on to maturity, not laying this foundation again: repentance from dead works and faith in God,</VERS>\n\t\t\t<VERS vnumber=\"2\"> teaching about baptisms, laying on of hands, resurrection of the dead, and eternal judgment.</VERS>\n\t\t\t<VERS vnumber=\"3\"> And this is what we intend to do, if God permits. </VERS>\n\t\t\t<VERS vnumber=\"4\"> For it is impossible in the case of those who have once been enlightened, tasted the heavenly gift, become partakers of the Holy Spirit,</VERS>\n\t\t\t<VERS vnumber=\"5\"> tasted the good word of God and the miracles of the coming age,</VERS>\n\t\t\t<VERS vnumber=\"6\"> and then have committed apostasy, to renew them again to repentance, since they are crucifying the Son of God for themselves all over again and holding him up to contempt. </VERS>\n\t\t\t<VERS vnumber=\"7\"> For the ground that has soaked up the rain that frequently falls on it and yields useful vegetation for those who tend it receives a blessing from God. </VERS>\n\t\t\t<VERS vnumber=\"8\"> But if it produces thorns and thistles, it is useless and about to be cursed; its fate is to be burned. </VERS>\n\t\t\t<VERS vnumber=\"9\"> But in your case, dear friends, even though we speak like this, we are convinced of better things relating to salvation.</VERS>\n\t\t\t<VERS vnumber=\"10\"> For God is not unjust so as to forget your work and the love you have demonstrated for his name, in having served and continuing to serve the saints.</VERS>\n\t\t\t<VERS vnumber=\"11\"> But we passionately want each of you to demonstrate the same eagerness for the fulfillment of your hope until the end,</VERS>\n\t\t\t<VERS vnumber=\"12\"> so that you may not be sluggish, but imitators of those who through faith and perseverance inherit the promises.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Now when God made his promise to Abraham, since he could swear by no one greater, he swore by himself,</VERS>\n\t\t\t<VERS vnumber=\"14\"> saying, \"Surely I will bless you greatly and multiply your descendants abundantly.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> And so by persevering, Abraham inherited the promise. </VERS>\n\t\t\t<VERS vnumber=\"16\"> For people swear by something greater than themselves, and the oath serves as a confirmation to end all dispute.</VERS>\n\t\t\t<VERS vnumber=\"17\"> In the same way God wanted to demonstrate more clearly to the heirs of the promise that his purpose was unchangeable, and so he intervened with an oath, </VERS>\n\t\t\t<VERS vnumber=\"18\"> so that we who have found refuge in him may find strong encouragement to hold fast to the hope set before us through two unchangeable things, since it is impossible for God to lie.</VERS>\n\t\t\t<VERS vnumber=\"19\"> We have this hope as an anchor for the soul, sure and steadfast, which reaches inside behind the curtain,</VERS>\n\t\t\t<VERS vnumber=\"20\"> where Jesus our forerunner entered on our behalf, since he became a priest forever in the order of Melchizedek.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"7\">\n\t\t\t<VERS vnumber=\"1\"> Now this Melchizedek, king of Salem, priest of the most high God, met Abraham as he was returning from defeating the kings and blessed him.</VERS>\n\t\t\t<VERS vnumber=\"2\"> To him also Abraham apportioned a tithe of everything. His name first means king of righteousness, then king of Salem, that is, king of peace. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Without father, without mother, without genealogy, he has neither beginning of days nor end of life but is like the son of God, and he remains a priest for all time.</VERS>\n\t\t\t<VERS vnumber=\"4\"> But see how great he must be, if Abraham the patriarch gave him a tithe of his plunder. </VERS>\n\t\t\t<VERS vnumber=\"5\"> And those of the sons of Levi who receive the priestly office have authorization according to the law to collect a tithe from the people, that is, from their fellow countrymen, although they too are descendants of Abraham.</VERS>\n\t\t\t<VERS vnumber=\"6\"> But Melchizedek who does not share their ancestry collected a tithe from Abraham and blessed the one who possessed the promise. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Now without dispute the inferior is blessed by the superior,</VERS>\n\t\t\t<VERS vnumber=\"8\"> and in one case tithes are received by mortal men, while in the other by him who is affirmed to be alive.</VERS>\n\t\t\t<VERS vnumber=\"9\"> And it could be said that Levi himself, who receives tithes, paid a tithe through Abraham.</VERS>\n\t\t\t<VERS vnumber=\"10\"> For he was still in his ancestor Abraham's loins when Melchizedek met him.</VERS>\n\t\t\t<VERS vnumber=\"11\"> So if perfection had in fact been possible through the Levitical priesthood, for on that basis the people received the law, what further need would there have been for another priest to arise, said to be in the order of Melchizedek and not in Aaron's order?</VERS>\n\t\t\t<VERS vnumber=\"12\"> For when the priesthood changes, a change in the law must come as well. </VERS>\n\t\t\t<VERS vnumber=\"13\"> Yet the one these things are spoken about belongs to a different tribe, and no one from that tribe has ever officiated at the altar. </VERS>\n\t\t\t<VERS vnumber=\"14\"> For it is clear that our Lord is descended from Judah, yet Moses said nothing about priests in connection with that tribe.</VERS>\n\t\t\t<VERS vnumber=\"15\"> And this is even clearer if another priest arises in the likeness of Melchizedek,</VERS>\n\t\t\t<VERS vnumber=\"16\"> who has become a priest not by a legal regulation about physical descent but by the power of an indestructible life. </VERS>\n\t\t\t<VERS vnumber=\"17\"> For here is the testimony about him: \"You are a priest forever in the order of Melchizedek.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> On the one hand a former command is set aside because it is weak and useless,</VERS>\n\t\t\t<VERS vnumber=\"19\"> for the law made nothing perfect. On the other hand a better hope is introduced, through which we draw near to God.</VERS>\n\t\t\t<VERS vnumber=\"20\"> And since this was not done without a sworn affirmation, for the others have become priests without a sworn affirmation,</VERS>\n\t\t\t<VERS vnumber=\"21\"> but Jesus did so with a sworn affirmation by the one who said to him, \"The Lord has sworn and will not change his mind, 'You are a priest forever'\",</VERS>\n\t\t\t<VERS vnumber=\"22\"> accordingly Jesus has become the guarantee of a better covenant. </VERS>\n\t\t\t<VERS vnumber=\"23\"> And the others who became priests were numerous, because death prevented them from continuing in office,</VERS>\n\t\t\t<VERS vnumber=\"24\"> but he holds his priesthood permanently since he lives forever.</VERS>\n\t\t\t<VERS vnumber=\"25\"> So he is able to save completely those who come to God through him, because he always lives to intercede for them.</VERS>\n\t\t\t<VERS vnumber=\"26\"> For it is indeed fitting for us to have such a high priest: holy, innocent, undefiled, separate from sinners, and exalted above the heavens.</VERS>\n\t\t\t<VERS vnumber=\"27\"> He has no need to do every day what those priests do, to offer sacrifices first for their own sins and then for the sins of the people, since he did this in offering himself once for all.</VERS>\n\t\t\t<VERS vnumber=\"28\"> For the law appoints as high priests men subject to weakness, but the word of solemn affirmation that came after the law appoints a son made perfect forever.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"8\">\n\t\t\t<VERS vnumber=\"1\"> Now the main point of what we are saying is this: We have such a high priest, one who sat down at the right hand of the throne of the Majesty in heaven,</VERS>\n\t\t\t<VERS vnumber=\"2\"> a minister in the sanctuary and the true tabernacle that the Lord, not man, set up.</VERS>\n\t\t\t<VERS vnumber=\"3\"> For every high priest is appointed to offer both gifts and sacrifices. So this one too had to have something to offer.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Now if he were on earth, he would not be a priest, since there are already priests who offer the gifts prescribed by the law. </VERS>\n\t\t\t<VERS vnumber=\"5\"> The place where they serve is a sketch and shadow of the heavenly sanctuary, just as Moses was warned by God as he was about to complete the tabernacle. For he says, \"See that you make everything according to the design shown to you on the mountain.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> But now Jesus has obtained a superior ministry, since the covenant that he mediates is also better and is enacted on better promises.</VERS>\n\t\t\t<VERS vnumber=\"7\"> For if that first covenant had been faultless, no one would have looked for a second one.</VERS>\n\t\t\t<VERS vnumber=\"8\"> But showing its fault, God says to them, \"Look, the days are coming, says the Lord, when I will complete a new covenant with the house of Israel and with the house of Judah.</VERS>\n\t\t\t<VERS vnumber=\"9\"> \"It will not be like the covenant that I made with their fathers, on the day when I took them by the hand to lead them out of Egypt, because they did not continue in my covenant and I had no regard for them, says the Lord.</VERS>\n\t\t\t<VERS vnumber=\"10\"> \"For this is the covenant that I will establish with the house of Israel after those days, says the Lord. I will put my laws in their minds and I will inscribe them on their hearts. And I will be their God and they will be my people.</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"And there will be no need at all for each one to teach his countryman or each one to teach his brother saying, 'Know the Lord,' since they will all know me, from the least to the greatest.</VERS>\n\t\t\t<VERS vnumber=\"12\"> \"For I will be merciful toward their evil deeds, and their sins I will remember no longer.\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> When he speaks of a new covenant, he makes the first obsolete. Now what is growing obsolete and aging is about to disappear.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"9\">\n\t\t\t<VERS vnumber=\"1\"> Now the first covenant, in fact, had regulations for worship and its earthly sanctuary. </VERS>\n\t\t\t<VERS vnumber=\"2\"> For a tent was prepared, the outer one, which contained the lampstand, the table, and the presentation of the loaves; this is called the holy place. </VERS>\n\t\t\t<VERS vnumber=\"3\"> And after the second curtain there was a tent called the holy of holies.</VERS>\n\t\t\t<VERS vnumber=\"4\"> It contained the golden altar of incense and the ark of the covenant covered entirely with gold. In this ark were the golden urn containing the manna, Aaron's rod that budded, and the stone tablets of the covenant. </VERS>\n\t\t\t<VERS vnumber=\"5\"> And above the ark were the cherubim of glory overshadowing the mercy seat. Now is not the time to speak of these things in detail. </VERS>\n\t\t\t<VERS vnumber=\"6\"> So with these things prepared like this, the priests enter continually into the outer tent as they perform their duties. </VERS>\n\t\t\t<VERS vnumber=\"7\"> But only the high priest enters once a year into the inner tent, and not without blood that he offers for himself and for the sins of the people committed in ignorance.</VERS>\n\t\t\t<VERS vnumber=\"8\"> The Holy Spirit is making clear that the way into the holy place had not yet appeared as long as the old tabernacle was standing. </VERS>\n\t\t\t<VERS vnumber=\"9\"> This was a symbol for the time then present, when gifts and sacrifices were offered that could not perfect the conscience of the worshiper.</VERS>\n\t\t\t<VERS vnumber=\"10\"> They served only for matters of food and drink and various washings; they are external regulations imposed until the new order came.</VERS>\n\t\t\t<VERS vnumber=\"11\"> But now Christ has come as the high priest of the good things to come. He passed through the greater and more perfect tent not made with hands, that is, not of this creation, </VERS>\n\t\t\t<VERS vnumber=\"12\"> and he entered once for all into the most holy place not by the blood of goats and calves but by his own blood, and so he himself secured eternal redemption. </VERS>\n\t\t\t<VERS vnumber=\"13\"> For if the blood of goats and bulls and the ashes of a young cow sprinkled on those who are defiled consecrated them and provided ritual purity,</VERS>\n\t\t\t<VERS vnumber=\"14\"> how much more will the blood of Christ, who through the eternal Spirit offered himself without blemish to God, purify our consciences from dead works to worship the living God.</VERS>\n\t\t\t<VERS vnumber=\"15\"> And so he is the mediator of a new covenant, so that those who are called may receive the eternal inheritance he has promised, since he died to set them free from the violations committed under the first covenant.</VERS>\n\t\t\t<VERS vnumber=\"16\"> For where there is a will, the death of the one who made it must be proven.</VERS>\n\t\t\t<VERS vnumber=\"17\"> For a will takes effect only at death, since it carries no force while the one who made it is alive.</VERS>\n\t\t\t<VERS vnumber=\"18\"> So even the first covenant was inaugurated with blood.</VERS>\n\t\t\t<VERS vnumber=\"19\"> For when Moses had spoken every command to all the people according to the law, he took the blood of calves and goats with water and scarlet wool and hyssop and sprinkled both the book itself and all the people,</VERS>\n\t\t\t<VERS vnumber=\"20\"> and said, \"This is the blood of the covenant that God has commanded you to keep.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> And both the tabernacle and all the utensils of worship he likewise sprinkled with blood.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Indeed according to the law almost everything was purified with blood, and without the shedding of blood there is no forgiveness.</VERS>\n\t\t\t<VERS vnumber=\"23\"> So it was necessary for the sketches of the things in heaven to be purified with these sacrifices, but the heavenly things themselves required better sacrifices than these. </VERS>\n\t\t\t<VERS vnumber=\"24\"> For Christ did not enter a sanctuary made with hands, the representation of the true sanctuary, but into heaven itself, and he appears now in God's presence for us.</VERS>\n\t\t\t<VERS vnumber=\"25\"> And he did not enter to offer himself again and again, the way the high priest enters the sanctuary year after year with blood that is not his own, </VERS>\n\t\t\t<VERS vnumber=\"26\"> for then he would have had to suffer again and again since the foundation of the world. But now he has appeared once for all at the consummation of the ages to put away sin by his sacrifice.</VERS>\n\t\t\t<VERS vnumber=\"27\"> And just as people are appointed to die once, and then to face judgment,</VERS>\n\t\t\t<VERS vnumber=\"28\"> so also, after Christ was offered once to bear the sins of many, to those who eagerly await him he will appear a second time, not to bear sin but to bring salvation.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"10\">\n\t\t\t<VERS vnumber=\"1\"> For the law possesses a shadow of the good things to come but not the reality itself, and is therefore completely unable, by the same sacrifices offered continually, year after year, to perfect those who come to worship.</VERS>\n\t\t\t<VERS vnumber=\"2\"> For otherwise would they not have ceased to be offered, since the worshipers would have been purified once for all and so have no further consciousness of sin? </VERS>\n\t\t\t<VERS vnumber=\"3\"> But in those sacrifices there is a reminder of sins year after year. </VERS>\n\t\t\t<VERS vnumber=\"4\"> For the blood of bulls and goats cannot take away sins.</VERS>\n\t\t\t<VERS vnumber=\"5\"> So when he came into the world, he said, \"Sacrifice and offering you did not desire, but a body you prepared for me.</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"Whole burnt offerings and sin-offerings you took no delight in.</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"Then I said, 'Here I am: I have come, it is written of me in the scroll of the book, to do your will, O God.'\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> When he says above, \"Sacrifices and offerings and whole burnt offerings and sin-offerings you did not desire nor did you take delight in them\" (which are offered according to the law), </VERS>\n\t\t\t<VERS vnumber=\"9\"> then he says, \"Here I am: I have come to do your will.\" He does away with the first to establish the second. </VERS>\n\t\t\t<VERS vnumber=\"10\"> By his will we have been made holy through the offering of the body of Jesus Christ once for all. </VERS>\n\t\t\t<VERS vnumber=\"11\"> And every priest stands day after day serving and offering the same sacrifices again and again, sacrifices that can never take away sins.</VERS>\n\t\t\t<VERS vnumber=\"12\"> But when this priest had offered one sacrifice for sins for all time, he sat down at the right hand of God, </VERS>\n\t\t\t<VERS vnumber=\"13\"> where he is now waiting until his enemies are made a footstool for his feet.</VERS>\n\t\t\t<VERS vnumber=\"14\"> For by one offering he has perfected for all time those who are made holy.</VERS>\n\t\t\t<VERS vnumber=\"15\"> And the Holy Spirit also witnesses to us, for after saying,</VERS>\n\t\t\t<VERS vnumber=\"16\"> \"This is the covenant that I will establish with them after those days, says the Lord. I will put my laws on their hearts and I will inscribe them on their minds,\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> then he says, \"Their sins and their lawless deeds I will remember no longer.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> Now where there is forgiveness of these, there is no longer any offering for sin.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Therefore, brothers and sisters, since we have confidence to enter the sanctuary by the blood of Jesus, </VERS>\n\t\t\t<VERS vnumber=\"20\"> by the fresh and living way that he inaugurated for us through the curtain, that is, through his flesh,</VERS>\n\t\t\t<VERS vnumber=\"21\"> and since we have a great priest over the house of God, </VERS>\n\t\t\t<VERS vnumber=\"22\"> let us draw near with a sincere heart in the assurance that faith brings, because we have had our hearts sprinkled clean from an evil conscience and our bodies washed in pure water.</VERS>\n\t\t\t<VERS vnumber=\"23\"> And let us hold unwaveringly to the hope that we confess, for the one who made the promise is trustworthy.</VERS>\n\t\t\t<VERS vnumber=\"24\"> And let us take thought of how to spur one another on to love and good works,</VERS>\n\t\t\t<VERS vnumber=\"25\"> not abandoning our own meetings, as some are in the habit of doing, but encouraging each other, and even more so because you see the day drawing near.</VERS>\n\t\t\t<VERS vnumber=\"26\"> For if we deliberately keep on sinning after receiving the knowledge of the truth, no further sacrifice for sins is left for us,</VERS>\n\t\t\t<VERS vnumber=\"27\"> but only a certain fearful expectation of judgment and a fury of fire that will consume God's enemies.</VERS>\n\t\t\t<VERS vnumber=\"28\"> Someone who rejected the law of Moses was put to death without mercy on the testimony of two or three witnesses.</VERS>\n\t\t\t<VERS vnumber=\"29\"> How much greater punishment do you think that person deserves who has contempt for the Son of God, and profanes the blood of the covenant that made him holy, and insults the Spirit of grace? </VERS>\n\t\t\t<VERS vnumber=\"30\"> For we know the one who said, \"Vengeance is mine, I will repay,\" and again, \"The Lord will judge his people.\"</VERS>\n\t\t\t<VERS vnumber=\"31\"> It is a terrifying thing to fall into the hands of the living God.</VERS>\n\t\t\t<VERS vnumber=\"32\"> But remember the former days when you endured a harsh conflict of suffering after you were enlightened.</VERS>\n\t\t\t<VERS vnumber=\"33\"> At times you were publicly exposed to abuse and afflictions, and at other times you came to share with others who were treated in that way.</VERS>\n\t\t\t<VERS vnumber=\"34\"> For in fact you shared the sufferings of those in prison, and you accepted the confiscation of your belongings with joy, because you knew that you certainly had a better and lasting possession. </VERS>\n\t\t\t<VERS vnumber=\"35\"> So do not throw away your confidence, because it has great reward. </VERS>\n\t\t\t<VERS vnumber=\"36\"> For you need endurance in order to do God's will and so receive what is promised.</VERS>\n\t\t\t<VERS vnumber=\"37\"> For just a little longer and he who is coming will arrive and not delay.</VERS>\n\t\t\t<VERS vnumber=\"38\"> But my righteous one will live by faith, and if he shrinks back, I take no pleasure in him.</VERS>\n\t\t\t<VERS vnumber=\"39\"> But we are not among those who shrink back and thus perish, but are among those who have faith and preserve their souls.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"11\">\n\t\t\t<VERS vnumber=\"1\"> Now faith is being sure of what we hope for, being convinced of what we do not see.</VERS>\n\t\t\t<VERS vnumber=\"2\"> For by it the people of old received God's commendation.</VERS>\n\t\t\t<VERS vnumber=\"3\"> By faith we understand that the worlds were set in order at God's command, so that the visible has its origin in the invisible.</VERS>\n\t\t\t<VERS vnumber=\"4\"> By faith Abel offered God a greater sacrifice than Cain, and through his faith he was commended as righteous, because God commended him for his offerings. And through his faith he still speaks, though he is dead. </VERS>\n\t\t\t<VERS vnumber=\"5\"> By faith Enoch was taken up so that he did not see death, and he was not to be found because God took him up. For before his removal he had been commended as having pleased God.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Now without faith it is impossible to please him, for the one who approaches God must believe that he exists and that he rewards those who seek him.</VERS>\n\t\t\t<VERS vnumber=\"7\"> By faith Noah, when he was warned about things not yet seen, with reverent regard constructed an ark for the deliverance of his family. Through faith he condemned the world and became an heir of the righteousness that comes by faith.</VERS>\n\t\t\t<VERS vnumber=\"8\"> By faith Abraham obeyed when he was called to go out to a place he would later receive as an inheritance, and he went out without understanding where he was going.</VERS>\n\t\t\t<VERS vnumber=\"9\"> By faith he lived as a foreigner in the promised land as though it were a foreign country, living in tents with Isaac and Jacob, who were fellow heirs of the same promise. </VERS>\n\t\t\t<VERS vnumber=\"10\"> For he was looking forward to the city with firm foundations, whose architect and builder is God. </VERS>\n\t\t\t<VERS vnumber=\"11\"> By faith, even though Sarah herself was barren and he was too old, he received the ability to procreate, because he regarded the one who had given the promise to be trustworthy. </VERS>\n\t\t\t<VERS vnumber=\"12\"> So in fact children were fathered by one man, and this one as good as dead, like the number of stars in the sky and like the innumerable grains of sand on the seashore.</VERS>\n\t\t\t<VERS vnumber=\"13\"> These all died in faith without receiving the things promised, but they saw them in the distance and welcomed them and acknowledged that they were strangers and foreigners on the earth. </VERS>\n\t\t\t<VERS vnumber=\"14\"> For those who speak in such a way make it clear that they are seeking a homeland.</VERS>\n\t\t\t<VERS vnumber=\"15\"> In fact, if they had been thinking of the land that they had left, they would have had opportunity to return.</VERS>\n\t\t\t<VERS vnumber=\"16\"> But as it is, they aspire to a better land, that is, a heavenly one. Therefore, God is not ashamed to be called their God, for he has prepared a city for them. </VERS>\n\t\t\t<VERS vnumber=\"17\"> By faith Abraham, when he was tested, offered up Isaac. He had received the promises, yet he was ready to offer up his only son. </VERS>\n\t\t\t<VERS vnumber=\"18\"> God had told him, \"Through Isaac descendants will carry on your name,\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> and he reasoned that God could even raise him from the dead, and in a sense he received him back from there. </VERS>\n\t\t\t<VERS vnumber=\"20\"> By faith also Isaac blessed Jacob and Esau concerning the future.</VERS>\n\t\t\t<VERS vnumber=\"21\"> By faith Jacob, as he was dying, blessed each of the sons of Joseph and worshiped as he leaned on his staff.</VERS>\n\t\t\t<VERS vnumber=\"22\"> By faith Joseph, at the end of his life, mentioned the exodus of the sons of Israel and gave instructions about his burial.</VERS>\n\t\t\t<VERS vnumber=\"23\"> By faith, when Moses was born, his parents hid him for three months, because they saw the child was beautiful and they were not afraid of the king's edict. </VERS>\n\t\t\t<VERS vnumber=\"24\"> By faith, when he grew up, Moses refused to be called the son of Pharaoh's daughter,</VERS>\n\t\t\t<VERS vnumber=\"25\"> choosing rather to be ill-treated with the people of God than to enjoy sin's fleeting pleasure.</VERS>\n\t\t\t<VERS vnumber=\"26\"> He regarded abuse suffered for Christ to be greater wealth than the treasures of Egypt, for his eyes were fixed on the reward. </VERS>\n\t\t\t<VERS vnumber=\"27\"> By faith he left Egypt without fearing the king's anger, for he persevered as though he could see the one who is invisible.</VERS>\n\t\t\t<VERS vnumber=\"28\"> By faith he kept the Passover and the sprinkling of the blood, so that the one who destroyed the firstborn would not touch them. </VERS>\n\t\t\t<VERS vnumber=\"29\"> By faith they crossed the Red Sea as if on dry ground, but when the Egyptians tried it, they were swallowed up.</VERS>\n\t\t\t<VERS vnumber=\"30\"> By faith the walls of Jericho fell after the people marched around them for seven days. </VERS>\n\t\t\t<VERS vnumber=\"31\"> By faith Rahab the prostitute escaped the destruction of the disobedient, because she welcomed the spies in peace.</VERS>\n\t\t\t<VERS vnumber=\"32\"> And what more shall I say? For time will fail me if I tell of Gideon, Barak, Samson, Jephthah, of David and Samuel and the prophets.</VERS>\n\t\t\t<VERS vnumber=\"33\"> Through faith they conquered kingdoms, administered justice, gained what was promised, shut the mouths of lions, </VERS>\n\t\t\t<VERS vnumber=\"34\"> quenched raging fire, escaped the edge of the sword, gained strength in weakness, became mighty in battle, put foreign armies to flight, </VERS>\n\t\t\t<VERS vnumber=\"35\"> and women received back their dead raised to life. But others were tortured, not accepting release, to obtain resurrection to a better life.</VERS>\n\t\t\t<VERS vnumber=\"36\"> And others experienced mocking and flogging, and even chains and imprisonment.</VERS>\n\t\t\t<VERS vnumber=\"37\"> They were stoned, sawed apart, murdered with the sword; they went about in sheepskins and goatskins; they were destitute, afflicted, ill-treated </VERS>\n\t\t\t<VERS vnumber=\"38\"> (the world was not worthy of them); they wandered in deserts and mountains and caves and openings in the earth.</VERS>\n\t\t\t<VERS vnumber=\"39\"> And these all were commended for their faith, yet they did not receive what was promised.</VERS>\n\t\t\t<VERS vnumber=\"40\"> For God had provided something better for us, so that they would be made perfect together with us.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"12\">\n\t\t\t<VERS vnumber=\"1\"> Therefore, since we are surrounded by such a great cloud of witnesses, we must get rid of every weight and the sin that clings so closely, and run with endurance the race set out for us, </VERS>\n\t\t\t<VERS vnumber=\"2\"> keeping our eyes fixed on Jesus, the pioneer and perfecter of our faith. For the joy set out for him he endured the cross, disregarding its shame, and has taken his seat at the right hand of the throne of God.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Think of him who endured such opposition against himself by sinners, so that you may not grow weary in your souls and give up.</VERS>\n\t\t\t<VERS vnumber=\"4\"> You have not yet resisted to the point of bloodshed in your struggle against sin. </VERS>\n\t\t\t<VERS vnumber=\"5\"> And have you forgotten the exhortation addressed to you as sons? \"My son, do not scorn the Lord's discipline or give up when he corrects you.</VERS>\n\t\t\t<VERS vnumber=\"6\"> \"For the Lord disciplines the one he loves and chastises every son he accepts.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> Endure your suffering as discipline; God is treating you as sons. For what son is there that a father does not discipline? </VERS>\n\t\t\t<VERS vnumber=\"8\"> But if you do not experience discipline, something all sons have shared in, then you are illegitimate and are not sons. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Besides, we have experienced discipline from our earthly fathers and we respected them; shall we not submit ourselves all the more to the Father of spirits and receive life?</VERS>\n\t\t\t<VERS vnumber=\"10\"> For they disciplined us for a little while as seemed good to them, but he does so for our benefit, that we may share his holiness.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Now all discipline seems painful at the time, not joyful. But later it produces the fruit of peace and righteousness for those trained by it. </VERS>\n\t\t\t<VERS vnumber=\"12\"> Therefore, strengthen your listless hands and your weak knees,</VERS>\n\t\t\t<VERS vnumber=\"13\"> and make straight paths for your feet, so that what is lame may not be put out of joint but be healed.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Pursue peace with everyone, and holiness, for without it no one will see the Lord. </VERS>\n\t\t\t<VERS vnumber=\"15\"> See to it that no one comes short of the grace of God, that no one be like a bitter root springing up and causing trouble, and through him many become defiled. </VERS>\n\t\t\t<VERS vnumber=\"16\"> And see to it that no one becomes an immoral or godless person like Esau, who sold his own birthright for a single meal.</VERS>\n\t\t\t<VERS vnumber=\"17\"> For you know that later when he wanted to inherit the blessing, he was rejected, for he found no opportunity for repentance, although he sought the blessing with tears. </VERS>\n\t\t\t<VERS vnumber=\"18\"> For you have not come to something that can be touched, to a burning fire and darkness and gloom and a whirlwind </VERS>\n\t\t\t<VERS vnumber=\"19\"> and the blast of a trumpet and a voice uttering words such that those who heard begged to hear no more.</VERS>\n\t\t\t<VERS vnumber=\"20\"> For they could not bear what was commanded: \"If even an animal touches the mountain, it must be stoned.\"</VERS>\n\t\t\t<VERS vnumber=\"21\"> In fact, the scene was so terrifying that Moses said, \"I shudder with fear.\"</VERS>\n\t\t\t<VERS vnumber=\"22\"> But you have come to Mount Zion, the city of the living God, the heavenly Jerusalem, and to myriads of angels, to the assembly </VERS>\n\t\t\t<VERS vnumber=\"23\"> and congregation of the firstborn, who are enrolled in heaven, and to God, the judge of all, and to the spirits of the righteous, who have been made perfect,</VERS>\n\t\t\t<VERS vnumber=\"24\"> and to Jesus, the mediator of a new covenant, and to the sprinkled blood that speaks of something better than Abel's does.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Take care not to refuse the one who is speaking! For if they did not escape when they refused the one who warned them on earth, how much less shall we, if we reject the one who warns from heaven?</VERS>\n\t\t\t<VERS vnumber=\"26\"> Then his voice shook the earth, but now he has promised, \"I will once more shake not only the earth but heaven too.\"</VERS>\n\t\t\t<VERS vnumber=\"27\"> Now this phrase \"once more\" indicates the removal of what is shaken, that is, of created things, so that what is unshaken may remain.</VERS>\n\t\t\t<VERS vnumber=\"28\"> So since we are receiving an unshakable kingdom, let us give thanks, and through this let us offer worship pleasing to God in devotion and awe.</VERS>\n\t\t\t<VERS vnumber=\"29\"> For our God is indeed a devouring fire.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"13\">\n\t\t\t<VERS vnumber=\"1\"> Brotherly love must continue.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Do not neglect hospitality, because through it some have entertained angels without knowing it.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Remember those in prison as though you were in prison with them, and those ill-treated as though you too felt their torment.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Marriage must be honored among all and the marriage bed kept undefiled, for God will judge sexually immoral people and adulterers.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Your conduct must be free from the love of money and you must be content with what you have, for he has said, \"I will never leave you and I will never abandon you.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> So we can say with confidence, \"The Lord is my helper, and I will not be afraid. What can man do to me?\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> Remember your leaders, who spoke God's message to you; reflect on the outcome of their lives and imitate their faith.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Jesus Christ is the same yesterday and today and forever!</VERS>\n\t\t\t<VERS vnumber=\"9\"> Do not be carried away by all sorts of strange teachings. For it is good for the heart to be strengthened by grace, not ritual meals, which have never benefited those who participated in them. </VERS>\n\t\t\t<VERS vnumber=\"10\"> We have an altar that those who serve in the tabernacle have no right to eat from.</VERS>\n\t\t\t<VERS vnumber=\"11\"> For the bodies of those animals whose blood the high priest brings into the sanctuary as an offering for sin are burned outside the camp. </VERS>\n\t\t\t<VERS vnumber=\"12\"> Therefore, to sanctify the people by his own blood, Jesus also suffered outside the camp.</VERS>\n\t\t\t<VERS vnumber=\"13\"> We must go out to him, then, outside the camp, bearing the abuse he experienced.</VERS>\n\t\t\t<VERS vnumber=\"14\"> For here we have no lasting city, but we seek the city that is to come.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Through him then let us continually offer up a sacrifice of praise to God, that is, the fruit of our lips, acknowledging his name.</VERS>\n\t\t\t<VERS vnumber=\"16\"> And do not neglect to do good and to share what you have, for God is pleased with such sacrifices.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Obey your leaders and submit to them, for they keep watch over your souls and will give an account for their work. Let them do this with joy and not with complaints, for this would be no advantage for you. </VERS>\n\t\t\t<VERS vnumber=\"18\"> Pray for us, for we are sure that we have a clear conscience and desire to conduct ourselves rightly in every respect.</VERS>\n\t\t\t<VERS vnumber=\"19\"> I especially ask you to pray that I may be restored to you very soon.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Now may the God of peace who by the blood of the eternal covenant brought back from the dead the great shepherd of the sheep, our Lord Jesus Christ,</VERS>\n\t\t\t<VERS vnumber=\"21\"> equip you with every good thing to do his will, working in us what is pleasing before him through Jesus Christ, to whom be glory forever. Amen.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Now I urge you, brothers and sisters, bear with my message of exhortation, for in fact I have written to you briefly. </VERS>\n\t\t\t<VERS vnumber=\"23\"> You should know that our brother Timothy has been released. If he comes soon, he will be with me when I see you.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Greetings to all your leaders and all the saints. Those from Italy send you greetings.</VERS>\n\t\t\t<VERS vnumber=\"25\"> Grace be with you all.</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"59\" bname=\"James\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> From James, a slave of God and the Lord Jesus Christ, to the twelve tribes dispersed abroad. Greetings!</VERS>\n\t\t\t<VERS vnumber=\"2\"> My brothers and sisters, consider it nothing but joy when you fall into all sorts of trials, </VERS>\n\t\t\t<VERS vnumber=\"3\"> because you know that the testing of your faith produces endurance.</VERS>\n\t\t\t<VERS vnumber=\"4\"> And let endurance have its perfect effect, so that you will be perfect and complete, not deficient in anything.</VERS>\n\t\t\t<VERS vnumber=\"5\"> But if anyone is deficient in wisdom, he should ask God, who gives to all generously and without reprimand, and it will be given to him.</VERS>\n\t\t\t<VERS vnumber=\"6\"> But he must ask in faith without doubting, for the one who doubts is like a wave of the sea, blown and tossed around by the wind.</VERS>\n\t\t\t<VERS vnumber=\"7\"> For that person must not suppose that he will receive anything from the Lord,</VERS>\n\t\t\t<VERS vnumber=\"8\"> since he is a double-minded individual, unstable in all his ways.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Now the believer of humble means should take pride in his high position.</VERS>\n\t\t\t<VERS vnumber=\"10\"> But the rich person's pride should be in his humiliation, because he will pass away like a wildflower in the meadow.</VERS>\n\t\t\t<VERS vnumber=\"11\"> For the sun rises with its heat and dries up the meadow; the petal of the flower falls off and its beauty is lost forever. So also the rich person in the midst of his pursuits will wither away. </VERS>\n\t\t\t<VERS vnumber=\"12\"> Happy is the one who endures testing, because when he has proven to be genuine, he will receive the crown of life that God promised to those who love him. </VERS>\n\t\t\t<VERS vnumber=\"13\"> Let no one say when he is tempted, \"I am tempted by God,\" for God cannot be tempted by evil, and he himself tempts no one. </VERS>\n\t\t\t<VERS vnumber=\"14\"> But each one is tempted when he is lured and enticed by his own desires.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Then when desire conceives, it gives birth to sin, and when sin is full grown, it gives birth to death.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Do not be led astray, my dear brothers and sisters.</VERS>\n\t\t\t<VERS vnumber=\"17\"> All generous giving and every perfect gift is from above, coming down from the Father of lights, with whom there is no variation or the slightest hint of change.</VERS>\n\t\t\t<VERS vnumber=\"18\"> By his sovereign plan he gave us birth through the message of truth, that we would be a kind of firstfruits of all he created.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Understand this, my dear brothers and sisters! Let every person be quick to listen, slow to speak, slow to anger. </VERS>\n\t\t\t<VERS vnumber=\"20\"> For human anger does not accomplish God's righteousness.</VERS>\n\t\t\t<VERS vnumber=\"21\"> So put away all filth and evil excess and humbly welcome the message implanted within you, which is able to save your souls.</VERS>\n\t\t\t<VERS vnumber=\"22\"> But be sure you live out the message and do not merely listen to it and so deceive yourselves.</VERS>\n\t\t\t<VERS vnumber=\"23\"> For if someone merely listens to the message and does not live it out, he is like someone who gazes at his own face in a mirror. </VERS>\n\t\t\t<VERS vnumber=\"24\"> For he gazes at himself and then goes out and immediately forgets what sort of person he was. </VERS>\n\t\t\t<VERS vnumber=\"25\"> But the one who peers into the perfect law of liberty and fixes his attention there, and does not become a forgetful listener but one who lives it out, he will be blessed in what he does.</VERS>\n\t\t\t<VERS vnumber=\"26\"> If someone thinks he is religious yet does not bridle his tongue, and so deceives his heart, his religion is futile.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Pure and undefiled religion before God the Father is this: to care for orphans and widows in their misfortune and to keep oneself unstained by the world.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> My brothers and sisters, do not show prejudice if you possess faith in our glorious Lord Jesus Christ.</VERS>\n\t\t\t<VERS vnumber=\"2\"> For if someone comes into your assembly wearing a gold ring and fine clothing, and a poor person enters in filthy clothes, </VERS>\n\t\t\t<VERS vnumber=\"3\"> do you pay attention to the one who is finely dressed and say, \"You sit here in a good place,\" and to the poor person, \"You stand over there,\" or \"Sit on the floor\"?</VERS>\n\t\t\t<VERS vnumber=\"4\"> If so, have you not made distinctions among yourselves and become judges with evil motives?</VERS>\n\t\t\t<VERS vnumber=\"5\"> Listen, my dear brothers and sisters! Did not God choose the poor in the world to be rich in faith and heirs of the kingdom that he promised to those who love him?</VERS>\n\t\t\t<VERS vnumber=\"6\"> But you have dishonored the poor! Are not the rich oppressing you and dragging you into the courts? </VERS>\n\t\t\t<VERS vnumber=\"7\"> Do they not blaspheme the good name of the one you belong to?</VERS>\n\t\t\t<VERS vnumber=\"8\"> But if you fulfill the royal law as expressed in this scripture, \"You shall love your neighbor as yourself,\" you are doing well. </VERS>\n\t\t\t<VERS vnumber=\"9\"> But if you show prejudice, you are committing sin and are convicted by the law as violators.</VERS>\n\t\t\t<VERS vnumber=\"10\"> For the one who obeys the whole law but fails in one point has become guilty of all of it.</VERS>\n\t\t\t<VERS vnumber=\"11\"> For he who said, \"Do not commit adultery,\" also said, \"Do not murder.\" Now if you do not commit adultery but do commit murder, you have become a violator of the law.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Speak and act as those who will be judged by a law that gives freedom.</VERS>\n\t\t\t<VERS vnumber=\"13\"> For judgment is merciless for the one who has shown no mercy. But mercy triumphs over judgment.</VERS>\n\t\t\t<VERS vnumber=\"14\"> What good is it, my brothers and sisters, if someone claims to have faith but does not have works? Can this kind of faith save him?</VERS>\n\t\t\t<VERS vnumber=\"15\"> If a brother or sister is poorly clothed and lacks daily food, </VERS>\n\t\t\t<VERS vnumber=\"16\"> and one of you says to them, \"Go in peace, keep warm and eat well,\" but you do not give them what the body needs, what good is it?</VERS>\n\t\t\t<VERS vnumber=\"17\"> So also faith, if it does not have works, is dead being by itself.</VERS>\n\t\t\t<VERS vnumber=\"18\"> But someone will say, \"You have faith and I have works.\" Show me your faith without works and I will show you faith by my works.</VERS>\n\t\t\t<VERS vnumber=\"19\"> You believe that God is one; well and good. Even the demons believe that, and tremble with fear.</VERS>\n\t\t\t<VERS vnumber=\"20\"> But would you like evidence, you empty fellow, that faith without works is useless?</VERS>\n\t\t\t<VERS vnumber=\"21\"> Was not Abraham our father justified by works when he offered Isaac his son on the altar?</VERS>\n\t\t\t<VERS vnumber=\"22\"> You see that his faith was working together with his works and his faith was perfected by works.</VERS>\n\t\t\t<VERS vnumber=\"23\"> And the scripture was fulfilled that says, \"Now Abraham believed God and it was counted to him for righteousness,\" and he was called God's friend.</VERS>\n\t\t\t<VERS vnumber=\"24\"> You see that a person is justified by works and not by faith alone.</VERS>\n\t\t\t<VERS vnumber=\"25\"> And similarly, was not Rahab the prostitute also justified by works when she welcomed the messengers and sent them out by another way?</VERS>\n\t\t\t<VERS vnumber=\"26\"> For just as the body without the spirit is dead, so also faith without works is dead.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> Not many of you should become teachers, my brothers and sisters, because you know that we will be judged more strictly.</VERS>\n\t\t\t<VERS vnumber=\"2\"> For we all stumble in many ways. If someone does not stumble in what he says, he is a perfect individual, able to control the entire body as well.</VERS>\n\t\t\t<VERS vnumber=\"3\"> And if we put bits into the mouths of horses to get them to obey us, then we guide their entire bodies.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Look at ships too: Though they are so large and driven by harsh winds, they are steered by a tiny rudder wherever the pilot's inclination directs.</VERS>\n\t\t\t<VERS vnumber=\"5\"> So too the tongue is a small part of the body, yet it has great pretensions. Think how small a flame sets a huge forest ablaze. </VERS>\n\t\t\t<VERS vnumber=\"6\"> And the tongue is a fire! The tongue represents the world of wrongdoing among the parts of our bodies. It pollutes the entire body and sets fire to the course of human existence, and is set on fire by hell.</VERS>\n\t\t\t<VERS vnumber=\"7\"> For every kind of animal, bird, reptile, and sea creature is subdued and has been subdued by humankind.</VERS>\n\t\t\t<VERS vnumber=\"8\"> But no human being can subdue the tongue; it is a restless evil, full of deadly poison. </VERS>\n\t\t\t<VERS vnumber=\"9\"> With it we bless the Lord and Father, and with it we curse people made in God's image.</VERS>\n\t\t\t<VERS vnumber=\"10\"> From the same mouth come blessing and cursing. These things should not be so, my brothers and sisters.</VERS>\n\t\t\t<VERS vnumber=\"11\"> A spring does not pour out fresh water and bitter water from the same opening, does it?</VERS>\n\t\t\t<VERS vnumber=\"12\"> Can a fig tree produce olives, my brothers and sisters, or a vine produce figs? Neither can a salt water spring produce fresh water.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Who is wise and understanding among you? By his good conduct he should show his works done in the gentleness that wisdom brings.</VERS>\n\t\t\t<VERS vnumber=\"14\"> But if you have bitter jealousy and selfishness in your hearts, do not boast and tell lies against the truth.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Such wisdom does not come from above but is earthly, natural, demonic. </VERS>\n\t\t\t<VERS vnumber=\"16\"> For where there is jealousy and selfishness, there is disorder and every evil practice.</VERS>\n\t\t\t<VERS vnumber=\"17\"> But the wisdom from above is first pure, then peaceable, gentle, accommodating, full of mercy and good fruit, impartial, and not hypocritical.</VERS>\n\t\t\t<VERS vnumber=\"18\"> And the fruit that consists of righteousness is planted in peace among those who make peace.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\"> Where do the conflicts and where do the quarrels among you come from? Is it not from this, from your passions that battle inside you?</VERS>\n\t\t\t<VERS vnumber=\"2\"> You desire and you do not have; you murder and envy and you cannot obtain; you quarrel and fight. You do not have because you do not ask;</VERS>\n\t\t\t<VERS vnumber=\"3\"> you ask and do not receive because you ask wrongly, so you can spend it on your passions.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Adulterers, do you not know that friendship with the world means hostility toward God? So whoever decides to be the world's friend makes himself God's enemy. </VERS>\n\t\t\t<VERS vnumber=\"5\"> Or do you think the scripture means nothing when it says, \"The spirit that God caused to live within us has an envious yearning\"?</VERS>\n\t\t\t<VERS vnumber=\"6\"> But he gives greater grace. Therefore it says, \"God opposes the proud, but he gives grace to the humble.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> So submit to God. But resist the devil and he will flee from you.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Draw near to God and he will draw near to you. Cleanse your hands, you sinners, and make your hearts pure, you double-minded.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Grieve, mourn, and weep. Turn your laughter into mourning and your joy into despair. </VERS>\n\t\t\t<VERS vnumber=\"10\"> Humble yourselves before the Lord and he will exalt you.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Do not speak against one another, brothers and sisters. He who speaks against a fellow believer or judges a fellow believer speaks against the law and judges the law. But if you judge the law, you are not a doer of the law but its judge.</VERS>\n\t\t\t<VERS vnumber=\"12\"> But there is only one who is lawgiver and judge, the one who is able to save and destroy. On the other hand, who are you to judge your neighbor?</VERS>\n\t\t\t<VERS vnumber=\"13\"> Come now, you who say, \"Today or tomorrow we will go into this or that town and spend a year there and do business and make a profit.\" </VERS>\n\t\t\t<VERS vnumber=\"14\"> You do not know about tomorrow. What is your life like? For you are a puff of smoke that appears for a short time and then vanishes. </VERS>\n\t\t\t<VERS vnumber=\"15\"> You ought to say instead, \"If the Lord is willing, then we will live and do this or that.\" </VERS>\n\t\t\t<VERS vnumber=\"16\"> But as it is, you boast in your arrogance. All such boasting is evil. </VERS>\n\t\t\t<VERS vnumber=\"17\"> So whoever knows what is good to do and does not do it is guilty of sin.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"5\">\n\t\t\t<VERS vnumber=\"1\"> Come now, you rich! Weep and cry aloud over the miseries that are coming on you. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Your riches have rotted and your clothing has become moth-eaten.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Your gold and silver have rusted and their rust will be a witness against you. It will consume your flesh like fire. It is in the last days that you have hoarded treasure!</VERS>\n\t\t\t<VERS vnumber=\"4\"> Look, the pay you have held back from the workers who mowed your fields cries out against you, and the cries of the reapers have reached the ears of the Lord of hosts.</VERS>\n\t\t\t<VERS vnumber=\"5\"> You have lived indulgently and luxuriously on the earth. You have fattened your hearts in a day of slaughter.</VERS>\n\t\t\t<VERS vnumber=\"6\"> You have condemned and murdered the righteous person, although he does not resist you.</VERS>\n\t\t\t<VERS vnumber=\"7\"> So be patient, brothers and sisters, until the Lord's return. Think of how the farmer waits for the precious fruit of the ground and is patient for it until it receives the early and late rains. </VERS>\n\t\t\t<VERS vnumber=\"8\"> You also be patient and strengthen your hearts, for the Lord's return is near.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Do not grumble against one another, brothers and sisters, so that you may not be judged. See, the judge stands before the gates!</VERS>\n\t\t\t<VERS vnumber=\"10\"> As an example of suffering and patience, brothers and sisters, take the prophets who spoke in the Lord's name. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Think of how we regard as blessed those who have endured. You have heard of Job's endurance and you have seen the Lord's purpose, that the Lord is full of compassion and mercy.</VERS>\n\t\t\t<VERS vnumber=\"12\"> And above all, my brothers and sisters, do not swear, either by heaven or by earth or by any other oath. But let your \"Yes\" be yes and your \"No\" be no, so that you may not fall into judgment.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Is anyone among you suffering? He should pray. Is anyone in good spirits? He should sing praises.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Is anyone among you ill? He should summon the elders of the church, and they should pray for him and anoint him with oil in the name of the Lord. </VERS>\n\t\t\t<VERS vnumber=\"15\"> And the prayer of faith will save the one who is sick and the Lord will raise him up, and if he has committed sins, he will be forgiven.</VERS>\n\t\t\t<VERS vnumber=\"16\"> So confess your sins to one another and pray for one another so that you may be healed. The prayer of a righteous person has great effectiveness.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Elijah was a human being like us, and he prayed earnestly that it would not rain and there was no rain on the land for three years and six months! </VERS>\n\t\t\t<VERS vnumber=\"18\"> Then he prayed again, and the sky gave rain and the land sprouted with a harvest.</VERS>\n\t\t\t<VERS vnumber=\"19\"> My brothers and sisters, if anyone among you wanders from the truth and someone turns him back, </VERS>\n\t\t\t<VERS vnumber=\"20\"> he should know that the one who turns a sinner back from his wandering path will save that person's soul from death and will cover a multitude of sins. </VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"60\" bname=\"1 Peter\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> From Peter, an apostle of Jesus Christ, to those temporarily residing abroad (in Pontus, Galatia, Cappadocia, the province of Asia, and Bithynia) who are chosen</VERS>\n\t\t\t<VERS vnumber=\"2\"> according to the foreknowledge of God the Father by being set apart by the Spirit for obedience and for sprinkling with Jesus Christ's blood. May grace and peace be yours in full measure!</VERS>\n\t\t\t<VERS vnumber=\"3\"> Blessed be the God and Father of our Lord Jesus Christ! By his great mercy he gave us new birth into a living hope through the resurrection of Jesus Christ from the dead, </VERS>\n\t\t\t<VERS vnumber=\"4\"> that is, into an inheritance imperishable, undefiled, and unfading. It is reserved in heaven for you, </VERS>\n\t\t\t<VERS vnumber=\"5\"> who by God's power are protected through faith for a salvation ready to be revealed in the last time.</VERS>\n\t\t\t<VERS vnumber=\"6\"> This brings you great joy, although you may have to suffer for a short time in various trials. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Such trials show the proven character of your faith, which is much more valuable than gold, gold that is tested by fire, even though it is passing away, and will bring praise and glory and honor when Jesus Christ is revealed.</VERS>\n\t\t\t<VERS vnumber=\"8\"> You have not seen him, but you love him. You do not see him now but you believe in him, and so you rejoice with an indescribable and glorious joy, </VERS>\n\t\t\t<VERS vnumber=\"9\"> because you are attaining the goal of your faith, the salvation of your souls.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Concerning this salvation, the prophets who predicted the grace that would come to you searched and investigated carefully. </VERS>\n\t\t\t<VERS vnumber=\"11\"> They probed into what person or time the Spirit of Christ within them was indicating when he testified beforehand about the sufferings appointed for Christ and his subsequent glory.</VERS>\n\t\t\t<VERS vnumber=\"12\"> They were shown that they were serving not themselves but you, in regard to the things now announced to you through those who proclaimed the gospel to you by the Holy Spirit sent from heaven, things angels long to catch a glimpse of.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Therefore, get your minds ready for action by being fully sober, and set your hope completely on the grace that will be brought to you when Jesus Christ is revealed.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Like obedient children, do not comply with the evil urges you used to follow in your ignorance,</VERS>\n\t\t\t<VERS vnumber=\"15\"> but, like the Holy One who called you, become holy yourselves in all of your conduct,</VERS>\n\t\t\t<VERS vnumber=\"16\"> for it is written, \"You shall be holy, because I am holy.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> And if you address as Father the one who impartially judges according to each one's work, live out the time of your temporary residence here in reverence. </VERS>\n\t\t\t<VERS vnumber=\"18\"> You know that from your empty way of life inherited from your ancestors you were ransomed, not by perishable things like silver or gold,</VERS>\n\t\t\t<VERS vnumber=\"19\"> but by precious blood like that of an unblemished and spotless lamb, namely Christ.</VERS>\n\t\t\t<VERS vnumber=\"20\"> He was foreknown before the foundation of the world but was manifested in these last times for your sake. </VERS>\n\t\t\t<VERS vnumber=\"21\"> Through him you now trust in God, who raised him from the dead and gave him glory, so that your faith and hope are in God.</VERS>\n\t\t\t<VERS vnumber=\"22\"> You have purified your souls by obeying the truth in order to show sincere mutual love. So love one another earnestly from a pure heart.</VERS>\n\t\t\t<VERS vnumber=\"23\"> You have been born anew, not from perishable but from imperishable seed, through the living and enduring word of God.</VERS>\n\t\t\t<VERS vnumber=\"24\"> For all flesh is like grass and all its glory like the flower of the grass; the grass withers and the flower falls off,</VERS>\n\t\t\t<VERS vnumber=\"25\"> but the word of the Lord endures forever. And this is the word that was proclaimed to you.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> So get rid of all evil and all deceit and hypocrisy and envy and all slander. </VERS>\n\t\t\t<VERS vnumber=\"2\"> And yearn like newborn infants for pure, spiritual milk, so that by it you may grow up to salvation,</VERS>\n\t\t\t<VERS vnumber=\"3\"> if you have experienced the Lord's kindness.</VERS>\n\t\t\t<VERS vnumber=\"4\"> So as you come to him, a living stone rejected by men but chosen and priceless in God's sight, </VERS>\n\t\t\t<VERS vnumber=\"5\"> you yourselves, as living stones, are built up as a spiritual house to be a holy priesthood and to offer spiritual sacrifices that are acceptable to God through Jesus Christ. </VERS>\n\t\t\t<VERS vnumber=\"6\"> For it says in scripture, \"Look, I lay in Zion a stone, a chosen and priceless cornerstone, and whoever believes in him will never be put to shame.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> So you who believe see his value, but for those who do not believe, the stone that the builders rejected has become the cornerstone,</VERS>\n\t\t\t<VERS vnumber=\"8\"> and a stumbling-stone and a rock to trip over. They stumble because they disobey the word, as they were destined to do.</VERS>\n\t\t\t<VERS vnumber=\"9\"> But you are a chosen race, a royal priesthood, a holy nation, a people of his own, so that you may proclaim the virtues of the one who called you out of darkness into his marvelous light. </VERS>\n\t\t\t<VERS vnumber=\"10\"> You once were not a people, but now you are God's people. You were shown no mercy, but now you have received mercy.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Dear friends, I urge you as foreigners and exiles to keep away from fleshly desires that do battle against the soul,</VERS>\n\t\t\t<VERS vnumber=\"12\"> and maintain good conduct among the non-Christians, so that though they now malign you as wrongdoers, they may see your good deeds and glorify God when he appears.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Be subject to every human institution for the Lord's sake, whether to a king as supreme </VERS>\n\t\t\t<VERS vnumber=\"14\"> or to governors as those he commissions to punish wrongdoers and praise those who do good. </VERS>\n\t\t\t<VERS vnumber=\"15\"> For God wants you to silence the ignorance of foolish people by doing good. </VERS>\n\t\t\t<VERS vnumber=\"16\"> Live as free people, not using your freedom as a pretext for evil, but as God's slaves.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Honor all people, love the family of believers, fear God, honor the king.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Slaves, be subject to your masters with all reverence, not only to those who are good and gentle, but also to those who are perverse. </VERS>\n\t\t\t<VERS vnumber=\"19\"> For this finds God's favor, if because of conscience toward God someone endures hardships in suffering unjustly. </VERS>\n\t\t\t<VERS vnumber=\"20\"> For what credit is it if you sin and are mistreated and endure it? But if you do good and suffer and so endure, this finds favor with God.</VERS>\n\t\t\t<VERS vnumber=\"21\"> For to this you were called, since Christ also suffered for you, leaving an example for you to follow in his steps.</VERS>\n\t\t\t<VERS vnumber=\"22\"> He committed no sin nor was deceit found in his mouth.</VERS>\n\t\t\t<VERS vnumber=\"23\"> When he was maligned, he did not answer back; when he suffered, he threatened no retaliation, but committed himself to God who judges justly. </VERS>\n\t\t\t<VERS vnumber=\"24\"> He himself bore our sins in his body on the tree, that we may cease from sinning and live for righteousness. By his wounds you were healed.</VERS>\n\t\t\t<VERS vnumber=\"25\"> For you were going astray like sheep but now you have turned back to the shepherd and guardian of your souls.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> In the same way, wives, be subject to your own husbands. Then, even if some are disobedient to the word, they will be won over without a word by the way you live,</VERS>\n\t\t\t<VERS vnumber=\"2\"> when they see your pure and reverent conduct.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Let your beauty not be external, the braiding of hair and wearing of gold jewelry or fine clothes,</VERS>\n\t\t\t<VERS vnumber=\"4\"> but the inner person of the heart, the lasting beauty of a gentle and tranquil spirit, which is precious in God's sight. </VERS>\n\t\t\t<VERS vnumber=\"5\"> For in the same way the holy women who hoped in God long ago adorned themselves by being subject to their husbands,</VERS>\n\t\t\t<VERS vnumber=\"6\"> like Sarah who obeyed Abraham, calling him lord. You become her children when you do what is good and have no fear in doing so.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Husbands, in the same way, treat your wives with consideration as the weaker partners and show them honor as fellow heirs of the grace of life. In this way nothing will hinder your prayers.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Finally, all of you be harmonious, sympathetic, affectionate, compassionate, and humble. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Do not return evil for evil or insult for insult, but instead bless others because you were called to inherit a blessing. </VERS>\n\t\t\t<VERS vnumber=\"10\"> For the one who wants to love life and see good days must keep his tongue from evil and his lips from uttering deceit.</VERS>\n\t\t\t<VERS vnumber=\"11\"> And he must turn away from evil and do good; he must seek peace and pursue it.</VERS>\n\t\t\t<VERS vnumber=\"12\"> For the eyes of the Lord are upon the righteous and his ears are open to their prayer. But the Lord's face is against those who do evil.</VERS>\n\t\t\t<VERS vnumber=\"13\"> For who is going to harm you if you are devoted to what is good? </VERS>\n\t\t\t<VERS vnumber=\"14\"> But in fact, if you happen to suffer for doing what is right, you are blessed. But do not be terrified of them or be shaken.</VERS>\n\t\t\t<VERS vnumber=\"15\"> But set Christ apart as Lord in your hearts and always be ready to give an answer to anyone who asks about the hope you possess.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Yet do it with courtesy and respect, keeping a good conscience, so that those who slander your good conduct in Christ may be put to shame when they accuse you.</VERS>\n\t\t\t<VERS vnumber=\"17\"> For it is better to suffer for doing good, if God wills it, than for doing evil.</VERS>\n\t\t\t<VERS vnumber=\"18\">  Because Christ also suffered once for sins, the just for the unjust, to bring you to God, by being put to death in the flesh but by being made alive in the spirit.</VERS>\n\t\t\t<VERS vnumber=\"19\"> In it he went and preached to the spirits in prison,</VERS>\n\t\t\t<VERS vnumber=\"20\"> after they were disobedient long ago when God patiently waited in the days of Noah as an ark was being constructed. In the ark a few, that is eight souls, were delivered through water. </VERS>\n\t\t\t<VERS vnumber=\"21\"> And this prefigured baptism, which now saves you, not the washing off of physical dirt but the pledge of a good conscience to God, through the resurrection of Jesus Christ,</VERS>\n\t\t\t<VERS vnumber=\"22\"> who went into heaven and is at the right hand of God with angels and authorities and powers subject to him.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\"> So, since Christ suffered in the flesh, you also arm yourselves with the same attitude, because the one who has suffered in the flesh has finished with sin,</VERS>\n\t\t\t<VERS vnumber=\"2\"> in that he spends the rest of his time on earth concerned about the will of God and not human desires. </VERS>\n\t\t\t<VERS vnumber=\"3\"> For the time that has passed was sufficient for you to do what the non-Christians desire. You lived then in debauchery, evil desires, drunkenness, carousing, drinking bouts, and wanton idolatries.</VERS>\n\t\t\t<VERS vnumber=\"4\"> So they are astonished when you do not rush with them into the same flood of wickedness, and they vilify you.</VERS>\n\t\t\t<VERS vnumber=\"5\"> They will face a reckoning before Jesus Christ who stands ready to judge the living and the dead. </VERS>\n\t\t\t<VERS vnumber=\"6\"> Now it was for this very purpose that the gospel was preached to those who are now dead, so that though they were judged in the flesh by human standards they may live spiritually by God's standards.</VERS>\n\t\t\t<VERS vnumber=\"7\"> For the culmination of all things is near. So be self-controlled and sober-minded for the sake of prayer.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Above all keep your love for one another fervent, because love covers a multitude of sins.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Show hospitality to one another without complaining. </VERS>\n\t\t\t<VERS vnumber=\"10\"> Just as each one has received a gift, use it to serve one another as good stewards of the varied grace of God. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Whoever speaks, let it be with God's words. Whoever serves, do so with the strength that God supplies, so that in everything God will be glorified through Jesus Christ. To him belong the glory and the power forever and ever. Amen.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Dear friends, do not be astonished that a trial by fire is occurring among you, as though something strange were happening to you. </VERS>\n\t\t\t<VERS vnumber=\"13\"> But rejoice in the degree that you have shared in the sufferings of Christ, so that when his glory is revealed you may also rejoice and be glad.</VERS>\n\t\t\t<VERS vnumber=\"14\"> If you are insulted for the name of Christ, you are blessed, because the Spirit of glory, who is the Spirit of God, rests on you. </VERS>\n\t\t\t<VERS vnumber=\"15\"> But let none of you suffer as a murderer or thief or criminal or as a troublemaker.</VERS>\n\t\t\t<VERS vnumber=\"16\"> But if you suffer as a Christian, do not be ashamed, but glorify God that you bear such a name.</VERS>\n\t\t\t<VERS vnumber=\"17\"> For it is time for judgment to begin, starting with the house of God. And if it starts with us, what will be the fate of those who are disobedient to the gospel of God? </VERS>\n\t\t\t<VERS vnumber=\"18\"> And if the righteous are barely saved, what will become of the ungodly and sinners?</VERS>\n\t\t\t<VERS vnumber=\"19\"> So then let those who suffer according to the will of God entrust their souls to a faithful Creator as they do good.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"5\">\n\t\t\t<VERS vnumber=\"1\"> So as your fellow elder and a witness of Christ's sufferings and as one who shares in the glory that will be revealed, I urge the elders among you:</VERS>\n\t\t\t<VERS vnumber=\"2\"> Give a shepherd's care to God's flock among you, exercising oversight not merely as a duty but willingly under God's direction, not for shameful profit but eagerly. </VERS>\n\t\t\t<VERS vnumber=\"3\"> And do not lord it over those entrusted to you, but be examples to the flock. </VERS>\n\t\t\t<VERS vnumber=\"4\"> Then when the Chief Shepherd appears, you will receive the crown of glory that never fades away.</VERS>\n\t\t\t<VERS vnumber=\"5\"> In the same way, you who are younger, be subject to the elders. And all of you, clothe yourselves with humility toward one another, because God opposes the proud but gives grace to the humble.</VERS>\n\t\t\t<VERS vnumber=\"6\"> And God will exalt you in due time, if you humble yourselves under his mighty hand</VERS>\n\t\t\t<VERS vnumber=\"7\"> by casting all your cares on him because he cares for you. </VERS>\n\t\t\t<VERS vnumber=\"8\"> Be sober and alert. Your enemy the devil, like a roaring lion, is on the prowl looking for someone to devour. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Resist him, strong in your faith, because you know that your brothers and sisters throughout the world are enduring the same kinds of suffering.</VERS>\n\t\t\t<VERS vnumber=\"10\"> And, after you have suffered for a little while, the God of all grace who called you to his eternal glory in Christ will himself restore, confirm, strengthen, and establish you.</VERS>\n\t\t\t<VERS vnumber=\"11\"> To him belongs the power forever. Amen.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Through Silvanus, whom I know to be a faithful brother, I have written to you briefly, in order to encourage you and testify that this is the true grace of God. Stand fast in it.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The church in Babylon, chosen together with you, greets you, and so does Mark, my son. </VERS>\n\t\t\t<VERS vnumber=\"14\"> Greet one another with a loving kiss. Peace to all of you who are in Christ.</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"61\" bname=\"2 Peter\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> From Simeon Peter, a slave and apostle of Jesus Christ, to those who through the righteousness of our God and Savior, Jesus Christ, have been granted a faith just as precious as ours. </VERS>\n\t\t\t<VERS vnumber=\"2\"> May grace and peace be lavished on you as you grow in the rich knowledge of God and of Jesus our Lord!</VERS>\n\t\t\t<VERS vnumber=\"3\"> I can pray this because his divine power has bestowed on us everything necessary for life and godliness through the rich knowledge of the one who called us by his own glory and excellence. </VERS>\n\t\t\t<VERS vnumber=\"4\"> Through these things he has bestowed on us his precious and most magnificent promises, so that by means of what was promised you may become partakers of the divine nature, after escaping the worldly corruption that is produced by evil desire.</VERS>\n\t\t\t<VERS vnumber=\"5\"> For this very reason, make every effort to add to your faith excellence, to excellence, knowledge; </VERS>\n\t\t\t<VERS vnumber=\"6\"> to knowledge, self-control; to self-control, perseverance; to perseverance, godliness; </VERS>\n\t\t\t<VERS vnumber=\"7\"> to godliness, brotherly affection; to brotherly affection, unselfish love.</VERS>\n\t\t\t<VERS vnumber=\"8\"> For if these things are really yours and are continually increasing, they will keep you from becoming ineffective and unproductive in your pursuit of knowing our Lord Jesus Christ more intimately.</VERS>\n\t\t\t<VERS vnumber=\"9\"> But concerning the one who lacks such things, he is blind. That is to say, he is nearsighted, since he has forgotten about the cleansing of his past sins.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Therefore, brothers and sisters, make every effort to be sure of your calling and election. For by doing this you will never stumble into sin.</VERS>\n\t\t\t<VERS vnumber=\"11\"> For thus an entrance into the eternal kingdom of our Lord and Savior, Jesus Christ, will be richly provided for you.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Therefore, I intend to remind you constantly of these things even though you know them and are well established in the truth that you now have. </VERS>\n\t\t\t<VERS vnumber=\"13\"> Indeed, as long as I am in this tabernacle, I consider it right to stir you up by way of a reminder, </VERS>\n\t\t\t<VERS vnumber=\"14\"> since I know that my tabernacle will soon be removed, because our Lord Jesus Christ revealed this to me.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Indeed, I will also make every effort that, after my departure, you have a testimony of these things.</VERS>\n\t\t\t<VERS vnumber=\"16\"> For we did not follow cleverly concocted fables when we made known to you the power and return of our Lord Jesus Christ; no, we were eyewitnesses of his grandeur.</VERS>\n\t\t\t<VERS vnumber=\"17\"> For he received honor and glory from God the Father, when that voice was conveyed to him by the Majestic Glory: \"This is my dear Son, in whom I am delighted.\"</VERS>\n\t\t\t<VERS vnumber=\"18\"> When this voice was conveyed from heaven, we ourselves heard it, for we were with him on the holy mountain.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Moreover, we possess the prophetic word as an altogether reliable thing. You do well if you pay attention to this as you would to a light shining in a murky place, until the day dawns and the morning star rises in your hearts.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Above all, you do well if you recognize this: No prophecy of scripture ever comes about by the prophet's own imagination,</VERS>\n\t\t\t<VERS vnumber=\"21\"> for no prophecy was ever borne of human impulse; rather, men carried along by the Holy Spirit spoke from God.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> But false prophets arose among the people, just as there will be false teachers among you. These false teachers will infiltrate your midst with destructive heresies, even to the point of denying the Master who bought them. As a result, they will bring swift destruction on themselves. </VERS>\n\t\t\t<VERS vnumber=\"2\"> And many will follow their debauched lifestyles. Because of these false teachers, the way of truth will be slandered.</VERS>\n\t\t\t<VERS vnumber=\"3\"> And in their greed they will exploit you with deceptive words. Their condemnation pronounced long ago is not sitting idly by; their destruction is not asleep.</VERS>\n\t\t\t<VERS vnumber=\"4\"> For if God did not spare the angels who sinned, but threw them into hell and locked them up in chains in utter darkness, to be kept until the judgment, </VERS>\n\t\t\t<VERS vnumber=\"5\"> and if he did not spare the ancient world, but did protect Noah, a herald of righteousness, along with seven others, when God brought a flood on an ungodly world,</VERS>\n\t\t\t<VERS vnumber=\"6\"> and if he turned to ashes the cities of Sodom and Gomorrah when he condemned them to destruction, having appointed them to serve as an example to future generations of the ungodly,</VERS>\n\t\t\t<VERS vnumber=\"7\"> and if he rescued Lot, a righteous man in anguish over the debauched lifestyle of lawless men,</VERS>\n\t\t\t<VERS vnumber=\"8\"> (for while he lived among them day after day, that righteous man was tormented in his righteous soul by the lawless deeds he saw and heard)</VERS>\n\t\t\t<VERS vnumber=\"9\"> , if so, then the Lord knows how to rescue the godly from their trials, and to reserve the unrighteous for punishment at the day of judgment, </VERS>\n\t\t\t<VERS vnumber=\"10\"> especially those who indulge their fleshly desires and who despise authority. Brazen and insolent, they are not afraid to insult the glorious ones,</VERS>\n\t\t\t<VERS vnumber=\"11\"> yet even angels, who are much more powerful, do not bring a slanderous judgment against them before the Lord.</VERS>\n\t\t\t<VERS vnumber=\"12\"> But these men, like irrational animals, creatures of instinct, born to be caught and destroyed, do not understand whom they are insulting, and consequently in their destruction they will be destroyed,</VERS>\n\t\t\t<VERS vnumber=\"13\"> suffering harm as the wages for their harmful ways. By considering it a pleasure to carouse in broad daylight, they are stains and blemishes, indulging in their deceitful pleasures when they feast together with you. </VERS>\n\t\t\t<VERS vnumber=\"14\"> Their eyes, full of adultery, never stop sinning; they entice unstable people. They have trained their hearts for greed, these cursed children!</VERS>\n\t\t\t<VERS vnumber=\"15\"> By forsaking the right path they have gone astray, because they followed the way of Balaam son of Bosor, who loved the wages of unrighteousness,</VERS>\n\t\t\t<VERS vnumber=\"16\"> yet was rebuked for his own transgression (a dumb donkey, speaking with a human voice, restrained the prophet's madness).</VERS>\n\t\t\t<VERS vnumber=\"17\"> These men are waterless springs and mists driven by a storm, for whom the utter depths of darkness have been reserved.</VERS>\n\t\t\t<VERS vnumber=\"18\"> For by speaking high-sounding but empty words they are able to entice, with fleshly desires and with debauchery, people who have just escaped from those who reside in error.</VERS>\n\t\t\t<VERS vnumber=\"19\"> Although these false teachers promise such people freedom, they themselves are enslaved to immorality. For whatever a person succumbs to, to that he is enslaved.</VERS>\n\t\t\t<VERS vnumber=\"20\"> For if after they have escaped the filthy things of the world through the rich knowledge of our Lord and Savior Jesus Christ, they again get entangled in them and succumb to them, their last state has become worse for them than their first. </VERS>\n\t\t\t<VERS vnumber=\"21\"> For it would have been better for them never to have known the way of righteousness than, having known it, to turn back from the holy commandment that had been delivered to them.</VERS>\n\t\t\t<VERS vnumber=\"22\"> They are illustrations of this true proverb: \"A dog returns to its own vomit,\" and \"A sow, after washing herself, wallows in the mire.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> Dear friends, this is already the second letter I have written you, in which I am trying to stir up your pure mind by way of reminder:</VERS>\n\t\t\t<VERS vnumber=\"2\"> I want you to recall both the predictions foretold by the holy prophets and the commandment of the Lord and Savior through your apostles.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Above all, understand this: In the last days blatant scoffers will come, being propelled by their own evil urges</VERS>\n\t\t\t<VERS vnumber=\"4\"> and saying, \"Where is his promised return? For ever since our ancestors died, all things have continued as they were from the beginning of creation.\" </VERS>\n\t\t\t<VERS vnumber=\"5\"> For they deliberately suppress this fact, that by the word of God heavens existed long ago and an earth was formed out of water and by means of water. </VERS>\n\t\t\t<VERS vnumber=\"6\"> Through these things the world existing at that time was destroyed when it was deluged with water. </VERS>\n\t\t\t<VERS vnumber=\"7\"> But by the same word the present heavens and earth have been reserved for fire, by being kept for the day of judgment and destruction of the ungodly.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Now, dear friends, do not let this one thing escape your notice, that a single day is like a thousand years with the Lord and a thousand years are like a single day. </VERS>\n\t\t\t<VERS vnumber=\"9\"> The Lord is not slow concerning his promise, as some regard slowness, but is being patient toward you, because he does not wish for any to perish but for all to come to repentance.</VERS>\n\t\t\t<VERS vnumber=\"10\"> But the day of the Lord will come like a thief; when it comes, the heavens will disappear with a horrific noise, and the celestial bodies will melt away in a blaze, and the earth and every deed done on it will be laid bare.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Since all these things are to melt away in this manner, what sort of people must we be, conducting our lives in holiness and godliness,</VERS>\n\t\t\t<VERS vnumber=\"12\"> while waiting for and hastening the coming of the day of God? Because of this day, the heavens will be burned up and dissolve, and the celestial bodies will melt away in a blaze!</VERS>\n\t\t\t<VERS vnumber=\"13\"> But, according to his promise, we are waiting for new heavens and a new earth, in which righteousness truly resides.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Therefore, dear friends, since you are waiting for these things, strive to be found at peace, without spot or blemish, when you come into his presence.</VERS>\n\t\t\t<VERS vnumber=\"15\"> And regard the patience of our Lord as salvation, just as also our dear brother Paul wrote to you, according to the wisdom given to him, </VERS>\n\t\t\t<VERS vnumber=\"16\"> speaking of these things in all his letters. Some things in these letters are hard to understand, things the ignorant and unstable twist to their own destruction, as they also do to the rest of the scriptures.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Therefore, dear friends, since you have been forewarned, be on your guard that you do not get led astray by the error of these unprincipled men and fall from your firm grasp on the truth.</VERS>\n\t\t\t<VERS vnumber=\"18\"> But grow in the grace and knowledge of our Lord and Savior Jesus Christ. To him be the honor both now and on that eternal day.</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"62\" bname=\"1 John\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> This is what we proclaim to you: what was from the beginning, what we have heard, what we have seen with our eyes, what we have looked at and our hands have touched (concerning the word of life,</VERS>\n\t\t\t<VERS vnumber=\"2\"> and the life was revealed, and we have seen and testify and announce to you the eternal life that was with the Father and was revealed to us).</VERS>\n\t\t\t<VERS vnumber=\"3\"> What we have seen and heard we announce to you too, so that you may have fellowship with us (and indeed our fellowship is with the Father and with his Son Jesus Christ). </VERS>\n\t\t\t<VERS vnumber=\"4\"> Thus we are writing these things so that our joy may be complete.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Now this is the gospel message we have heard from him and announce to you: God is light, and in him there is no darkness at all.</VERS>\n\t\t\t<VERS vnumber=\"6\"> If we say we have fellowship with him and yet keep on walking in the darkness, we are lying and not practicing the truth. </VERS>\n\t\t\t<VERS vnumber=\"7\"> But if we walk in the light as he himself is in the light, we have fellowship with one another and the blood of Jesus his Son cleanses us from all sin.</VERS>\n\t\t\t<VERS vnumber=\"8\"> If we say we do not bear the guilt of sin, we are deceiving ourselves and the truth is not in us. </VERS>\n\t\t\t<VERS vnumber=\"9\"> But if we confess our sins, he is faithful and righteous, forgiving us our sins and cleansing us from all unrighteousness. </VERS>\n\t\t\t<VERS vnumber=\"10\"> If we say we have not sinned, we make him a liar and his word is not in us.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> (My little children, I am writing these things to you so that you may not sin.) But if anyone does sin, we have an advocate with the Father, Jesus Christ the righteous One,</VERS>\n\t\t\t<VERS vnumber=\"2\"> and he himself is the atoning sacrifice for our sins, and not only for our sins but also for the whole world.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Now by this we know that we have come to know God: if we keep his commandments. </VERS>\n\t\t\t<VERS vnumber=\"4\"> The one who says \"I have come to know God\" and yet does not keep his commandments is a liar, and the truth is not in such a person. </VERS>\n\t\t\t<VERS vnumber=\"5\"> But whoever obeys his word, truly in this person the love of God has been perfected. By this we know that we are in him. </VERS>\n\t\t\t<VERS vnumber=\"6\"> The one who says he resides in God ought himself to walk just as Jesus walked.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Dear friends, I am not writing a new commandment to you, but an old commandment which you have had from the beginning. The old commandment is the word that you have already heard. </VERS>\n\t\t\t<VERS vnumber=\"8\"> On the other hand, I am writing a new commandment to you which is true in him and in you, because the darkness is passing away and the true light is already shining.</VERS>\n\t\t\t<VERS vnumber=\"9\"> The one who says he is in the light but still hates his fellow Christian is still in the darkness. </VERS>\n\t\t\t<VERS vnumber=\"10\"> The one who loves his fellow Christian resides in the light, and there is no cause for stumbling in him.</VERS>\n\t\t\t<VERS vnumber=\"11\"> But the one who hates his fellow Christian is in the darkness, walks in the darkness, and does not know where he is going, because the darkness has blinded his eyes.</VERS>\n\t\t\t<VERS vnumber=\"12\"> I am writing to you, little children, that your sins have been forgiven because of his name. </VERS>\n\t\t\t<VERS vnumber=\"13\"> I am writing to you, fathers, that you have known him who has been from the beginning. I am writing to you, young people, that you have conquered the evil one.</VERS>\n\t\t\t<VERS vnumber=\"14\"> I have written to you, children, that you have known the Father. I have written to you, fathers, that you have known him who has been from the beginning. I have written to you, young people, that you are strong, and the word of God resides in you, and you have conquered the evil one.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Do not love the world or the things in the world. If anyone loves the world, the love of the Father is not in him,</VERS>\n\t\t\t<VERS vnumber=\"16\"> because all that is in the world (the desire of the flesh and the desire of the eyes and the arrogance produced by material possessions) is not from the Father, but is from the world. </VERS>\n\t\t\t<VERS vnumber=\"17\"> And the world is passing away with all its desires, but the person who does the will of God remains forever.</VERS>\n\t\t\t<VERS vnumber=\"18\"> Children, it is the last hour, and just as you heard that the antichrist is coming, so now many antichrists have appeared. We know from this that it is the last hour. </VERS>\n\t\t\t<VERS vnumber=\"19\"> They went out from us, but they did not really belong to us, because if they had belonged to us, they would have remained with us. But they went out from us to demonstrate that all of them do not belong to us.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Nevertheless you have an anointing from the Holy One, and you all know.</VERS>\n\t\t\t<VERS vnumber=\"21\"> I have not written to you that you do not know the truth, but that you do know it, and that no lie is of the truth. </VERS>\n\t\t\t<VERS vnumber=\"22\"> Who is the liar but the person who denies that Jesus is the Christ? This one is the antichrist: the person who denies the Father and the Son.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Everyone who denies the Son does not have the Father either. The person who confesses the Son has the Father also.</VERS>\n\t\t\t<VERS vnumber=\"24\"> As for you, what you have heard from the beginning must remain in you. If what you heard from the beginning remains in you, you also will remain in the Son and in the Father. </VERS>\n\t\t\t<VERS vnumber=\"25\"> Now this is the promise that he himself made to us: eternal life.</VERS>\n\t\t\t<VERS vnumber=\"26\"> These things I have written to you about those who are trying to deceive you.</VERS>\n\t\t\t<VERS vnumber=\"27\"> Now as for you, the anointing that you received from him resides in you, and you have no need for anyone to teach you. But as his anointing teaches you about all things, it is true and is not a lie. Just as it has taught you, you reside in him.</VERS>\n\t\t\t<VERS vnumber=\"28\"> And now, little children, remain in him, so that when he appears we may have confidence and not shrink away from him in shame when he comes back.</VERS>\n\t\t\t<VERS vnumber=\"29\"> If you know that he is righteous, you also know that everyone who practices righteousness has been fathered by him.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> (See what sort of love the Father has given to us: that we should be called God's children, and indeed we are! For this reason the world does not know us: because it did not know him.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Dear friends, we are God's children now, and what we will be has not yet been revealed. We know that whenever it is revealed we will be like him, because we will see him just as he is.</VERS>\n\t\t\t<VERS vnumber=\"3\"> And everyone who has this hope focused on him purifies himself, just as Jesus is pure).</VERS>\n\t\t\t<VERS vnumber=\"4\"> Everyone who practices sin also practices lawlessness; indeed, sin is lawlessness. </VERS>\n\t\t\t<VERS vnumber=\"5\"> And you know that Jesus was revealed to take away sins, and in him there is no sin. </VERS>\n\t\t\t<VERS vnumber=\"6\"> Everyone who resides in him does not sin; everyone who sins has neither seen him nor known him. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Little children, let no one deceive you: The one who practices righteousness is righteous, just as Jesus is righteous. </VERS>\n\t\t\t<VERS vnumber=\"8\"> The one who practices sin is of the devil, because the devil has been sinning from the beginning. For this purpose the Son of God was revealed: to destroy the works of the devil. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Everyone who has been fathered by God does not practice sin, because God's seed resides in him, and thus he is not able to sin, because he has been fathered by God. </VERS>\n\t\t\t<VERS vnumber=\"10\"> By this the children of God and the children of the devil are revealed: Everyone who does not practice righteousness, the one who does not love his fellow Christian, is not of God.</VERS>\n\t\t\t<VERS vnumber=\"11\"> For this is the gospel message that you have heard from the beginning: that we should love one another,</VERS>\n\t\t\t<VERS vnumber=\"12\"> not like Cain who was of the evil one and brutally murdered his brother. And why did he murder him? Because his deeds were evil, but his brother's were righteous.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Therefore do not be surprised, brothers and sisters, if the world hates you.</VERS>\n\t\t\t<VERS vnumber=\"14\"> We know that we have crossed over from death to life because we love our fellow Christians. The one who does not love remains in death.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Everyone who hates his fellow Christian is a murderer, and you know that no murderer has eternal life residing in him. </VERS>\n\t\t\t<VERS vnumber=\"16\"> We have come to know love by this: that Jesus laid down his life for us; thus we ought to lay down our lives for our fellow Christians.</VERS>\n\t\t\t<VERS vnumber=\"17\"> But whoever has the world's possessions and sees his fellow Christian in need and shuts off his compassion against him, how can the love of God reside in such a person?</VERS>\n\t\t\t<VERS vnumber=\"18\"> Little children, let us not love with word or with tongue but in deed and truth.</VERS>\n\t\t\t<VERS vnumber=\"19\"> And by this we will know that we are of the truth and will convince our conscience in his presence,</VERS>\n\t\t\t<VERS vnumber=\"20\"> that if our conscience condemns us, that God is greater than our conscience and knows all things.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Dear friends, if our conscience does not condemn us, we have confidence in the presence of God,</VERS>\n\t\t\t<VERS vnumber=\"22\"> and whatever we ask we receive from him, because we keep his commandments and do the things that are pleasing to him. </VERS>\n\t\t\t<VERS vnumber=\"23\"> Now this is his commandment: that we believe in the name of his Son Jesus Christ and love one another, just as he gave us the commandment. </VERS>\n\t\t\t<VERS vnumber=\"24\"> And the person who keeps his commandments resides in God, and God in him. Now by this we know that God resides in us: by the Spirit he has given us.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\"> Dear friends, do not believe every spirit, but test the spirits to determine if they are from God, because many false prophets have gone out into the world. </VERS>\n\t\t\t<VERS vnumber=\"2\"> By this you know the Spirit of God: Every spirit that confesses Jesus as the Christ who has come in the flesh is from God, </VERS>\n\t\t\t<VERS vnumber=\"3\"> but every spirit that does not confess Jesus is not from God, and this is the spirit of the antichrist, which you have heard is coming, and now is already in the world.</VERS>\n\t\t\t<VERS vnumber=\"4\"> You are from God, little children, and have conquered them, because the one who is in you is greater than the one who is in the world. </VERS>\n\t\t\t<VERS vnumber=\"5\"> They are from the world; therefore they speak from the world's perspective and the world listens to them.</VERS>\n\t\t\t<VERS vnumber=\"6\"> We are from God; the person who knows God listens to us, but whoever is not from God does not listen to us. By this we know the Spirit of truth and the spirit of deceit.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Dear friends, let us love one another, because love is from God, and everyone who loves has been fathered by God and knows God. </VERS>\n\t\t\t<VERS vnumber=\"8\"> The person who does not love does not know God, because God is love.</VERS>\n\t\t\t<VERS vnumber=\"9\"> By this the love of God is revealed in us: that God has sent his one and only Son into the world so that we may live through him. </VERS>\n\t\t\t<VERS vnumber=\"10\"> In this is love: not that we have loved God, but that he loved us and sent his Son to be the atoning sacrifice for our sins.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Dear friends, if God so loved us, then we also ought to love one another.</VERS>\n\t\t\t<VERS vnumber=\"12\"> No one has seen God at any time. If we love one another, God resides in us, and his love is perfected in us.</VERS>\n\t\t\t<VERS vnumber=\"13\"> By this we know that we reside in God and he in us: in that he has given us of his Spirit.</VERS>\n\t\t\t<VERS vnumber=\"14\"> And we have seen and testify that the Father has sent the Son to be the Savior of the world.</VERS>\n\t\t\t<VERS vnumber=\"15\"> If anyone confesses that Jesus is the Son of God, God resides in him and he in God. </VERS>\n\t\t\t<VERS vnumber=\"16\"> And we have come to know and to believe the love that God has in us. God is love, and the one who resides in love resides in God, and God resides in him. </VERS>\n\t\t\t<VERS vnumber=\"17\"> By this love is perfected with us, so that we may have confidence in the day of judgment, because just as Jesus is, so also are we in this world. </VERS>\n\t\t\t<VERS vnumber=\"18\"> There is no fear in love, but perfect love drives out fear, because fear has to do with punishment. The one who fears punishment has not been perfected in love. </VERS>\n\t\t\t<VERS vnumber=\"19\"> We love because he loved us first.</VERS>\n\t\t\t<VERS vnumber=\"20\"> If anyone says \"I love God\" and yet hates his fellow Christian, he is a liar, because the one who does not love his fellow Christian whom he has seen cannot love God whom he has not seen.</VERS>\n\t\t\t<VERS vnumber=\"21\"> And the commandment we have from him is this: that the one who loves God should love his fellow Christian too. </VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"5\">\n\t\t\t<VERS vnumber=\"1\"> Everyone who believes that Jesus is the Christ has been fathered by God, and everyone who loves the father loves the child fathered by him.</VERS>\n\t\t\t<VERS vnumber=\"2\"> By this we know that we love the children of God: whenever we love God and obey his commandments. </VERS>\n\t\t\t<VERS vnumber=\"3\"> For this is the love of God: that we keep his commandments. And his commandments do not weigh us down, </VERS>\n\t\t\t<VERS vnumber=\"4\"> because everyone who has been fathered by God conquers the world. This is the conquering power that has conquered the world: our faith.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Now who is the person who has conquered the world except the one who believes that Jesus is the Son of God? </VERS>\n\t\t\t<VERS vnumber=\"6\"> Jesus Christ is the one who came by water and blood, not by the water only, but by the water and the blood. And the Spirit is the one who testifies, because the Spirit is the truth.</VERS>\n\t\t\t<VERS vnumber=\"7\"> For there are three that testify,</VERS>\n\t\t\t<VERS vnumber=\"8\"> the Spirit and the water and the blood, and these three are in agreement.</VERS>\n\t\t\t<VERS vnumber=\"9\"> If we accept the testimony of men, the testimony of God is greater, because this is the testimony of God that he has testified concerning his Son. </VERS>\n\t\t\t<VERS vnumber=\"10\"> (The one who believes in the Son of God has the testimony in himself; the one who does not believe God has made him a liar, because he has not believed in the testimony that God has testified concerning his Son.)</VERS>\n\t\t\t<VERS vnumber=\"11\"> And this is the testimony: God has given us eternal life, and this life is in his Son. </VERS>\n\t\t\t<VERS vnumber=\"12\"> The one who has the Son has this eternal life; the one who does not have the Son of God does not have this eternal life.</VERS>\n\t\t\t<VERS vnumber=\"13\"> I have written these things to you who believe in the name of the Son of God so that you may know that you have eternal life.</VERS>\n\t\t\t<VERS vnumber=\"14\"> And this is the confidence that we have before him: that whenever we ask anything according to his will, he hears us. </VERS>\n\t\t\t<VERS vnumber=\"15\"> And if we know that he hears us in regard to whatever we ask, then we know that we have the requests that we have asked from him. </VERS>\n\t\t\t<VERS vnumber=\"16\"> If anyone sees his fellow Christian committing a sin not resulting in death, he should ask, and God will grant life to the person who commits a sin not resulting in death. There is a sin resulting in death. I do not say that he should ask about that. </VERS>\n\t\t\t<VERS vnumber=\"17\"> All unrighteousness is sin, but there is sin not resulting in death.</VERS>\n\t\t\t<VERS vnumber=\"18\"> We know that everyone fathered by God does not sin, but God protects the one he has fathered, and the evil one cannot touch him. </VERS>\n\t\t\t<VERS vnumber=\"19\"> We know that we are from God, and the whole world lies in the power of the evil one. </VERS>\n\t\t\t<VERS vnumber=\"20\"> And we know that the Son of God has come and has given us insight to know him who is true, and we are in him who is true, in his Son Jesus Christ. This one is the true God and eternal life. </VERS>\n\t\t\t<VERS vnumber=\"21\"> Little children, guard yourselves from idols.</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"63\" bname=\"2 John\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> From the elder, to an elect lady and her children, whom I love in truth (and not I alone, but also all those who know the truth), </VERS>\n\t\t\t<VERS vnumber=\"2\"> because of the truth that resides in us and will be with us forever. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Grace, mercy, and peace will be with us from God the Father and from Jesus Christ the Son of the Father, in truth and love.</VERS>\n\t\t\t<VERS vnumber=\"4\"> I rejoiced greatly because I have found some of your children living according to the truth, just as the Father commanded us.</VERS>\n\t\t\t<VERS vnumber=\"5\"> But now I ask you, lady (not as if I were writing a new commandment to you, but the one we have had from the beginning), that we love one another. </VERS>\n\t\t\t<VERS vnumber=\"6\"> (Now this is love: that we walk according to his commandments.) This is the commandment, just as you have heard from the beginning; thus you should walk in it.</VERS>\n\t\t\t<VERS vnumber=\"7\"> For many deceivers have gone out into the world, people who do not confess Jesus as Christ coming in the flesh. This person is the deceiver and the antichrist!</VERS>\n\t\t\t<VERS vnumber=\"8\"> Watch out, so that you do not lose the things we have worked for, but receive a full reward.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Everyone who goes on ahead and does not remain in the teaching of Christ does not have God. The one who remains in this teaching has both the Father and the Son. </VERS>\n\t\t\t<VERS vnumber=\"10\"> If anyone comes to you and does not bring this teaching, do not receive him into your house and do not give him any greeting,</VERS>\n\t\t\t<VERS vnumber=\"11\"> because the person who gives him a greeting shares in his evil deeds.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Though I have many other things to write to you, I do not want to do so with paper and ink, but I hope to come visit you and speak face to face, so that our joy may be complete.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The children of your elect sister greet you.</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"64\" bname=\"3 John\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> From the elder, to Gaius my dear brother, whom I love in truth.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Dear friend, I pray that all may go well with you and that you may be in good health, just as it is well with your soul.</VERS>\n\t\t\t<VERS vnumber=\"3\"> For I rejoiced greatly when the brothers came and testified to your truth, just as you are living according to the truth.</VERS>\n\t\t\t<VERS vnumber=\"4\"> I have no greater joy than this: to hear that my children are living according to the truth.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Dear friend, you demonstrate faithfulness by whatever you do for the brothers (even though they are strangers). </VERS>\n\t\t\t<VERS vnumber=\"6\"> They have testified to your love before the church. You will do well to send them on their way in a manner worthy of God.</VERS>\n\t\t\t<VERS vnumber=\"7\"> For they have gone forth on behalf of \"The Name,\" accepting nothing from the pagans.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Therefore we ought to support such people, so that we become coworkers in cooperation with the truth.</VERS>\n\t\t\t<VERS vnumber=\"9\"> I wrote something to the church, but Diotrephes, who loves to be first among them, does not acknowledge us.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Therefore, if I come, I will call attention to the deeds he is doing, the bringing of unjustified charges against us with evil words! And not being content with that, he not only refuses to welcome the brothers himself, but hinders the people who want to do so and throws them out of the church!</VERS>\n\t\t\t<VERS vnumber=\"11\"> Dear friend, do not imitate what is bad but what is good. The one who does good is of God; the one who does what is bad has not seen God.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Demetrius has been testified to by all, even by the truth itself. We also testify to him, and you know that our testimony is true.</VERS>\n\t\t\t<VERS vnumber=\"13\"> I have many things to write to you, but I do not wish to write to you with pen and ink.</VERS>\n\t\t\t<VERS vnumber=\"14\"> But I hope to see you right away, and we will speak face to face.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Peace be with you. The friends here greet you. Greet the friends there by name. </VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"65\" bname=\"Jude\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> From Jude, a slave of Jesus Christ and brother of James, to those who are called, wrapped in the love of God the Father and kept for Jesus Christ. </VERS>\n\t\t\t<VERS vnumber=\"2\"> May mercy, peace, and love be lavished on you!</VERS>\n\t\t\t<VERS vnumber=\"3\"> Dear friends, although I have been eager to write to you about our common salvation, I now feel compelled instead to write to encourage you to contend earnestly for the faith that was once for all entrusted to the saints.</VERS>\n\t\t\t<VERS vnumber=\"4\"> For certain men have secretly slipped in among you, men who long ago were marked out for the condemnation I am about to describe, ungodly men who have turned the grace of our God into a license for evil and who deny our only Master and Lord, Jesus Christ.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Now I desire to remind you (even though you have been fully informed of these facts once for all) that Jesus, having saved the people out of the land of Egypt, later destroyed those who did not believe.</VERS>\n\t\t\t<VERS vnumber=\"6\"> You also know that the angels who did not keep within their proper domain but abandoned their own place of residence, he has kept in eternal chains in utter darkness, locked up for the judgment of the great Day. </VERS>\n\t\t\t<VERS vnumber=\"7\"> So also Sodom and Gomorrah and the neighboring towns, since they indulged in sexual immorality and pursued unnatural desire in a way similar to these angels, are now displayed as an example by suffering the punishment of eternal fire.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Yet these men, as a result of their dreams, defile the flesh, reject authority, and insult the glorious ones.</VERS>\n\t\t\t<VERS vnumber=\"9\"> But even when Michael the archangel was arguing with the devil and debating with him concerning Moses' body, he did not dare to bring a slanderous judgment, but said, \"May the Lord rebuke you!\" </VERS>\n\t\t\t<VERS vnumber=\"10\"> But these men do not understand the things they slander, and they are being destroyed by the very things that, like irrational animals, they instinctively comprehend.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Woe to them! For they have traveled down Cain's path, and because of greed have abandoned themselves to Balaam's error; hence, they will certainly perish in Korah's rebellion. </VERS>\n\t\t\t<VERS vnumber=\"12\"> These men are dangerous reefs at your love feasts, feasting without reverence, feeding only themselves. They are waterless clouds, carried along by the winds; autumn trees without fruit, twice dead, uprooted;</VERS>\n\t\t\t<VERS vnumber=\"13\"> wild sea waves, spewing out the foam of their shame; wayward stars for whom the utter depths of eternal darkness have been reserved.</VERS>\n\t\t\t<VERS vnumber=\"14\"> Now Enoch, the seventh in descent beginning with Adam, even prophesied of them, saying, \"Look! The Lord is coming with thousands and thousands of his holy ones, </VERS>\n\t\t\t<VERS vnumber=\"15\"> to execute judgment on all, and to convict every person of all their thoroughly ungodly deeds that they have committed, and of all the harsh words that ungodly sinners have spoken against him.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> These people are grumblers and fault-finders who go wherever their desires lead them, and they give bombastic speeches, enchanting folks for their own gain.</VERS>\n\t\t\t<VERS vnumber=\"17\"> But you, dear friends, recall the predictions foretold by the apostles of our Lord Jesus Christ.</VERS>\n\t\t\t<VERS vnumber=\"18\"> For they said to you, \"In the end time there will come scoffers, propelled by their own ungodly desires.\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> These people are divisive, worldly, devoid of the Spirit.</VERS>\n\t\t\t<VERS vnumber=\"20\"> But you, dear friends, by building yourselves up in your most holy faith, by praying in the Holy Spirit,</VERS>\n\t\t\t<VERS vnumber=\"21\"> maintain yourselves in the love of God, while anticipating the mercy of our Lord Jesus Christ that brings eternal life.</VERS>\n\t\t\t<VERS vnumber=\"22\"> And have mercy on those who waver;</VERS>\n\t\t\t<VERS vnumber=\"23\"> save others by snatching them out of the fire; have mercy on others, coupled with a fear of God, hating even the clothes stained by the flesh.</VERS>\n\t\t\t<VERS vnumber=\"24\"> Now to the one who is able to keep you from falling, and to cause you to stand, rejoicing, without blemish before his glorious presence,</VERS>\n\t\t\t<VERS vnumber=\"25\"> to the only God our Savior through Jesus Christ our Lord, be glory, majesty, power, and authority, before all time, and now, and for all eternity. Amen.</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n\t<BIBLEBOOK bnumber=\"66\" bname=\"Revelation\">\n\t\t<CHAPTER cnumber=\"1\">\n\t\t\t<VERS vnumber=\"1\"> The revelation of Jesus Christ, which God gave him to show his servants what must happen very soon. He made it clear by sending his angel to his servant John, </VERS>\n\t\t\t<VERS vnumber=\"2\"> who then testified to everything that he saw concerning the word of God and the testimony about Jesus Christ. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Blessed is the one who reads the words of this prophecy aloud, and blessed are those who hear and obey the things written in it, because the time is near!</VERS>\n\t\t\t<VERS vnumber=\"4\"> From John, to the seven churches that are in the province of Asia: Grace and peace to you from \"he who is,\" and who was, and who is still to come, and from the seven spirits who are before his throne, </VERS>\n\t\t\t<VERS vnumber=\"5\"> and from Jesus Christ, the faithful witness, the firstborn from among the dead, the ruler over the kings of the earth. To the one who loves us and has set us free from our sins at the cost of his own blood</VERS>\n\t\t\t<VERS vnumber=\"6\"> and has appointed us as a kingdom, as priests serving his God and Father, to him be the glory and the power for ever and ever! Amen.</VERS>\n\t\t\t<VERS vnumber=\"7\"> (Look! He is returning with the clouds, and every eye will see him, even those who pierced him, and all the tribes on the earth will mourn because of him. This will certainly come to pass! Amen.)</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"I am the Alpha and the Omega,\" says the Lord God, the one who is, and who was, and who is still to come, the All-Powerful!</VERS>\n\t\t\t<VERS vnumber=\"9\"> I, John, your brother and the one who shares with you in the persecution, kingdom, and endurance that are in Jesus, was on the island called Patmos because of the word of God and the testimony about Jesus.</VERS>\n\t\t\t<VERS vnumber=\"10\"> I was in the Spirit on the Lord's Day when I heard behind me a loud voice like a trumpet, </VERS>\n\t\t\t<VERS vnumber=\"11\"> saying: \"Write in a book what you see and send it to the seven churches, to Ephesus, Smyrna, Pergamum, Thyatira, Sardis, Philadelphia, and Laodicea.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> I turned to see whose voice was speaking to me, and when I did so, I saw seven golden lampstands, </VERS>\n\t\t\t<VERS vnumber=\"13\"> and in the midst of the lampstands was one like a son of man. He was dressed in a robe extending down to his feet and he wore a wide golden belt around his chest. </VERS>\n\t\t\t<VERS vnumber=\"14\"> His head and hair were as white as wool, even as white as snow, and his eyes were like a fiery flame. </VERS>\n\t\t\t<VERS vnumber=\"15\"> His feet were like polished bronze refined in a furnace, and his voice was like the roar of many waters. </VERS>\n\t\t\t<VERS vnumber=\"16\"> He held seven stars in his right hand, and a sharp double-edged sword extended out of his mouth. His face shone like the sun shining at full strength. </VERS>\n\t\t\t<VERS vnumber=\"17\"> When I saw him I fell down at his feet as though I were dead, but he placed his right hand on me and said: \"Do not be afraid! I am the first and the last, </VERS>\n\t\t\t<VERS vnumber=\"18\"> and the one who lives! I was dead, but look, now I am alive, forever and ever, and I hold the keys of death and of Hades!</VERS>\n\t\t\t<VERS vnumber=\"19\"> Therefore write what you saw, what is, and what will be after these things.</VERS>\n\t\t\t<VERS vnumber=\"20\"> The mystery of the seven stars that you saw in my right hand and the seven golden lampstands is this: The seven stars are the angels of the seven churches and the seven lampstands are the seven churches.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"2\">\n\t\t\t<VERS vnumber=\"1\"> \"To the angel of the church in Ephesus, write the following: \"This is the solemn pronouncement of the one who has a firm grasp on the seven stars in his right hand, the one who walks among the seven golden lampstands:</VERS>\n\t\t\t<VERS vnumber=\"2\"> 'I know your works as well as your labor and steadfast endurance, and that you cannot tolerate evil. You have even put to the test those who refer to themselves as apostles (but are not), and have discovered that they are false. </VERS>\n\t\t\t<VERS vnumber=\"3\"> I am also aware that you have persisted steadfastly, endured much for the sake of my name, and have not grown weary. </VERS>\n\t\t\t<VERS vnumber=\"4\"> But I have this against you: You have departed from your first love! </VERS>\n\t\t\t<VERS vnumber=\"5\"> Therefore, remember from what high state you have fallen and repent! Do the deeds you did at the first; if not, I will come to you and remove your lampstand from its place, that is, if you do not repent.</VERS>\n\t\t\t<VERS vnumber=\"6\"> But you do have this going for you: You hate what the Nicolaitans practice, practices I also hate.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The one who has an ear had better hear what the Spirit says to the churches. To the one who conquers, I will permit him to eat from the tree of life that is in the paradise of God.'</VERS>\n\t\t\t<VERS vnumber=\"8\"> \"To the angel of the church in Smyrna write the following: \"This is the solemn pronouncement of the one who is the first and the last, the one who was dead, but came to life:</VERS>\n\t\t\t<VERS vnumber=\"9\"> 'I know the distress you are suffering and your poverty (but you are rich). I also know the slander against you by those who call themselves Jews and really are not, but are a synagogue of Satan. </VERS>\n\t\t\t<VERS vnumber=\"10\"> Do not be afraid of the things you are about to suffer. The devil is about to have some of you thrown into prison so you may be tested, and you will experience suffering for ten days. Remain faithful even to the point of death, and I will give you the crown that is life itself.</VERS>\n\t\t\t<VERS vnumber=\"11\"> The one who has an ear had better hear what the Spirit says to the churches. The one who conquers will in no way be harmed by the second death.'</VERS>\n\t\t\t<VERS vnumber=\"12\"> \"To the angel of the church in Pergamum write the following: \"This is the solemn pronouncement of the one who has the sharp double-edged sword:</VERS>\n\t\t\t<VERS vnumber=\"13\"> 'I know where you live, where Satan's throne is. Yet you continue to cling to my name and you have not denied your faith in me, even in the days of Antipas, my faithful witness, who was killed in your city where Satan lives.</VERS>\n\t\t\t<VERS vnumber=\"14\"> But I have a few things against you: You have some people there who follow the teaching of Balaam, who instructed Balak to put a stumbling block before the people of Israel so they would eat food sacrificed to idols and commit sexual immorality.</VERS>\n\t\t\t<VERS vnumber=\"15\"> In the same way, there are also some among you who follow the teaching of the Nicolaitans.</VERS>\n\t\t\t<VERS vnumber=\"16\"> Therefore, repent! If not, I will come against you quickly and make war against those people with the sword of my mouth. </VERS>\n\t\t\t<VERS vnumber=\"17\"> The one who has an ear had better hear what the Spirit says to the churches. To the one who conquers, I will give him some of the hidden manna, and I will give him a white stone, and on that stone will be written a new name that no one can understand except the one who receives it.'</VERS>\n\t\t\t<VERS vnumber=\"18\"> \"To the angel of the church in Thyatira write the following: \"This is the solemn pronouncement of the Son of God, the one who has eyes like a fiery flame and whose feet are like polished bronze:</VERS>\n\t\t\t<VERS vnumber=\"19\"> 'I know your deeds: your love, faith, service, and steadfast endurance. In fact, your more recent deeds are greater than your earlier ones. </VERS>\n\t\t\t<VERS vnumber=\"20\"> But I have this against you: You tolerate that woman Jezebel, who calls herself a prophetess, and by her teaching deceives my servants to commit sexual immorality and to eat food sacrificed to idols.</VERS>\n\t\t\t<VERS vnumber=\"21\"> I have given her time to repent, but she is not willing to repent of her sexual immorality. </VERS>\n\t\t\t<VERS vnumber=\"22\"> Look! I am throwing her onto a bed of violent illness, and those who commit adultery with her into terrible suffering, unless they repent of her deeds. </VERS>\n\t\t\t<VERS vnumber=\"23\"> Furthermore, I will strike her followers with a deadly disease, and then all the churches will know that I am the one who searches minds and hearts. I will repay each one of you what your deeds deserve.</VERS>\n\t\t\t<VERS vnumber=\"24\"> But to the rest of you in Thyatira, all who do not hold to this teaching (who have not learned the so-called \"deep secrets of Satan\"), to you I say: I do not put any additional burden on you. </VERS>\n\t\t\t<VERS vnumber=\"25\"> However, hold on to what you have until I come.</VERS>\n\t\t\t<VERS vnumber=\"26\"> And to the one who conquers and who continues in my deeds until the end, I will give him authority over the nations,</VERS>\n\t\t\t<VERS vnumber=\"27\"> he will rule them with an iron rod and like clay jars he will break them to pieces,</VERS>\n\t\t\t<VERS vnumber=\"28\"> just as I have received the right to rule from my Father, and I will give him the morning star.</VERS>\n\t\t\t<VERS vnumber=\"29\"> The one who has an ear had better hear what the Spirit says to the churches.'</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"3\">\n\t\t\t<VERS vnumber=\"1\"> \"To the angel of the church in Sardis write the following: \"This is the solemn pronouncement of the one who holds the seven spirits of God and the seven stars: 'I know your deeds, that you have a reputation that you are alive, but in reality you are dead.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Wake up then, and strengthen what remains that was about to die, because I have not found your deeds complete in the sight of my God. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Therefore, remember what you received and heard, and obey it, and repent. If you do not wake up, I will come like a thief, and you will never know at what hour I will come against you. </VERS>\n\t\t\t<VERS vnumber=\"4\"> But you have a few individuals in Sardis who have not stained their clothes, and they will walk with me dressed in white, because they are worthy. </VERS>\n\t\t\t<VERS vnumber=\"5\"> The one who conquers will be dressed like them in white clothing, and I will never erase his name from the book of life, but will declare his name before my Father and before his angels. </VERS>\n\t\t\t<VERS vnumber=\"6\"> The one who has an ear had better hear what the Spirit says to the churches.'</VERS>\n\t\t\t<VERS vnumber=\"7\"> \"To the angel of the church in Philadelphia write the following: \"This is the solemn pronouncement of the Holy One, the True One, who holds the key of David, who opens doors no one can shut, and shuts doors no one can open:</VERS>\n\t\t\t<VERS vnumber=\"8\"> 'I know your deeds. (Look! I have put in front of you an open door that no one can shut.) I know that you have little strength, but you have obeyed my word and have not denied my name. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Listen! I am going to make those people from the synagogue of Satan, who say they are Jews yet are not, but are lying, Look, I will make them come and bow down at your feet and acknowledge that I have loved you.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Because you have kept my admonition to endure steadfastly, I will also keep you from the hour of testing that is about to come on the whole world to test those who live on the earth. </VERS>\n\t\t\t<VERS vnumber=\"11\"> I am coming soon. Hold on to what you have so that no one can take away your crown.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The one who conquers I will make a pillar in the temple of my God, and he will never depart from it. I will write on him the name of my God and the name of the city of my God (the new Jerusalem that comes down out of heaven from my God), and my new name as well. </VERS>\n\t\t\t<VERS vnumber=\"13\"> The one who has an ear had better hear what the Spirit says to the churches.'</VERS>\n\t\t\t<VERS vnumber=\"14\"> \"To the angel of the church in Laodicea write the following: \"This is the solemn pronouncement of the Amen, the faithful and true witness, the originator of God's creation:</VERS>\n\t\t\t<VERS vnumber=\"15\"> 'I know your deeds, that you are neither cold nor hot. I wish you were either cold or hot! </VERS>\n\t\t\t<VERS vnumber=\"16\"> So because you are lukewarm, and neither hot nor cold, I am going to vomit you out of my mouth! </VERS>\n\t\t\t<VERS vnumber=\"17\"> Because you say, \"I am rich and have acquired great wealth, and need nothing,\" but do not realize that you are wretched, pitiful, poor, blind, and naked, </VERS>\n\t\t\t<VERS vnumber=\"18\"> take my advice and buy gold from me refined by fire so you can become rich! Buy from me white clothing so you can be clothed and your shameful nakedness will not be exposed, and buy eye salve to put on your eyes so you can see! </VERS>\n\t\t\t<VERS vnumber=\"19\"> All those I love, I rebuke and discipline. So be earnest and repent! </VERS>\n\t\t\t<VERS vnumber=\"20\"> Listen! I am standing at the door and knocking! If anyone hears my voice and opens the door I will come into his home and share a meal with him, and he with me. </VERS>\n\t\t\t<VERS vnumber=\"21\"> I will grant the one who conquers permission to sit with me on my throne, just as I too conquered and sat down with my Father on his throne. </VERS>\n\t\t\t<VERS vnumber=\"22\"> The one who has an ear had better hear what the Spirit says to the churches.'\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"4\">\n\t\t\t<VERS vnumber=\"1\"> After these things I looked, and there was a door standing open in heaven! And the first voice I had heard speaking to me like a trumpet said: \"Come up here so that I can show you what must happen after these things.\" </VERS>\n\t\t\t<VERS vnumber=\"2\"> Immediately I was in the Spirit, and a throne was standing in heaven with someone seated on it! </VERS>\n\t\t\t<VERS vnumber=\"3\"> And the one seated on it was like jasper and carnelian in appearance, and a rainbow looking like it was made of emerald encircled the throne. </VERS>\n\t\t\t<VERS vnumber=\"4\"> In a circle around the throne were twenty-four other thrones, and seated on those thrones were twenty-four elders. They were dressed in white clothing and had golden crowns on their heads. </VERS>\n\t\t\t<VERS vnumber=\"5\"> From the throne came out flashes of lightning and roaring and crashes of thunder. Seven flaming torches, which are the seven spirits of God, were burning in front of the throne </VERS>\n\t\t\t<VERS vnumber=\"6\"> and in front of the throne was something like a sea of glass, like crystal. In the middle of the throne and around the throne were four living creatures full of eyes in front and in back.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The first living creature was like a lion, the second creature like an ox, the third creature had a face like a man's, and the fourth creature looked like an eagle flying. </VERS>\n\t\t\t<VERS vnumber=\"8\"> Each one of the four living creatures had six wings and was full of eyes all around and inside. They never rest day or night, saying: \"Holy Holy Holy is the Lord God, the All-Powerful, Who was and who is, and who is still to come!\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> And whenever the living creatures give glory, honor, and thanks to the one who sits on the throne, who lives forever and ever, </VERS>\n\t\t\t<VERS vnumber=\"10\"> the twenty-four elders throw themselves to the ground before the one who sits on the throne and worship the one who lives forever and ever, and they offer their crowns before his throne, saying:</VERS>\n\t\t\t<VERS vnumber=\"11\"> \"You are worthy, our Lord and God, to receive glory and honor and power, since you created all things, and because of your will they existed and were created!\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"5\">\n\t\t\t<VERS vnumber=\"1\"> Then I saw in the right hand of the one who was seated on the throne a scroll written on the front and back and sealed with seven seals.</VERS>\n\t\t\t<VERS vnumber=\"2\"> And I saw a powerful angel proclaiming in a loud voice: \"Who is worthy to open the scroll and to break its seals?\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> But no one in heaven or on earth or under the earth was able to open the scroll or look into it. </VERS>\n\t\t\t<VERS vnumber=\"4\"> So I began weeping bitterly because no one was found who was worthy to open the scroll or to look into it. </VERS>\n\t\t\t<VERS vnumber=\"5\"> Then one of the elders said to me, \"Stop weeping! Look, the Lion of the tribe of Judah, the root of David, has conquered; thus he can open the scroll and its seven seals.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> Then I saw standing in the middle of the throne and of the four living creatures, and in the middle of the elders, a Lamb that appeared to have been killed. He had seven horns and seven eyes, which are the seven spirits of God sent out into all the earth. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Then he came and took the scroll from the right hand of the one who was seated on the throne, </VERS>\n\t\t\t<VERS vnumber=\"8\"> and when he had taken the scroll, the four living creatures and the twenty-four elders threw themselves to the ground before the Lamb. Each of them had a harp and golden bowls full of incense (which are the prayers of the saints).</VERS>\n\t\t\t<VERS vnumber=\"9\"> They were singing a new song: \"You are worthy to take the scroll and to open its seals because you were killed, and at the cost of your own blood you have purchased for God persons from every tribe, language, people, and nation.</VERS>\n\t\t\t<VERS vnumber=\"10\"> You have appointed them as a kingdom and priests to serve our God, and they will reign on the earth.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> Then I looked and heard the voice of many angels in a circle around the throne, as well as the living creatures and the elders. Their number was ten thousand times ten thousand, thousands times thousands,</VERS>\n\t\t\t<VERS vnumber=\"12\"> all of whom were singing in a loud voice: \"Worthy is the lamb who was killed to receive power and wealth and wisdom and might and honor and glory and praise!\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> Then I heard every creature, in heaven, on earth, under the earth, in the sea, and all that is in them, singing: \"To the one seated on the throne and to the Lamb be praise, honor, glory, and ruling power forever and ever!\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> And the four living creatures were saying \"Amen,\" and the elders threw themselves to the ground and worshiped.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"6\">\n\t\t\t<VERS vnumber=\"1\"> I looked on when the Lamb opened one of the seven seals, and I heard one of the four living creatures saying with a thunderous voice, \"Come!\"</VERS>\n\t\t\t<VERS vnumber=\"2\"> So I looked, and here came a white horse! The one who rode it had a bow, and he was given a crown, and as a conqueror he rode out to conquer.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Then when the Lamb opened the second seal, I heard the second living creature saying, \"Come!\" </VERS>\n\t\t\t<VERS vnumber=\"4\"> And another horse, fiery red, came out, and the one who rode it was granted permission to take peace from the earth, so that people would butcher one another, and he was given a huge sword.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Then when the Lamb opened the third seal I heard the third living creature saying, \"Come!\" So I looked, and here came a black horse! The one who rode it had a balance scale in his hand. </VERS>\n\t\t\t<VERS vnumber=\"6\"> Then I heard something like a voice from among the four living creatures saying, \"A quart of wheat will cost a day's pay and three quarts of barley will cost a day's pay. But do not damage the olive oil and the wine!\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> Then when the Lamb opened the fourth seal I heard the voice of the fourth living creature saying, \"Come!\" </VERS>\n\t\t\t<VERS vnumber=\"8\"> So I looked and here came a pale green horse! The name of the one who rode it was Death, and Hades followed right behind. They were given authority over a fourth of the earth, to kill its population with the sword, famine, and disease, and by the wild animals of the earth.</VERS>\n\t\t\t<VERS vnumber=\"9\"> Now when the Lamb opened the fifth seal, I saw under the altar the souls of those who had been violently killed because of the word of God and because of the testimony they had given. </VERS>\n\t\t\t<VERS vnumber=\"10\"> They cried out with a loud voice, \"How long, Sovereign Master, holy and true, before you judge those who live on the earth and avenge our blood?\" </VERS>\n\t\t\t<VERS vnumber=\"11\"> Each of them was given a long white robe and they were told to rest for a little longer, until the full number was reached of both their fellow servants and their brothers who were going to be killed just as they had been.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Then I looked when the Lamb opened the sixth seal, and a huge earthquake took place; the sun became as black as sackcloth made of hair, and the full moon became blood red;</VERS>\n\t\t\t<VERS vnumber=\"13\"> and the stars in the sky fell to the earth like a fig tree dropping its unripe figs when shaken by a fierce wind. </VERS>\n\t\t\t<VERS vnumber=\"14\"> The sky was split apart like a scroll being rolled up, and every mountain and island was moved from its place.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Then the kings of the earth, the very important people, the generals, the rich, the powerful, and everyone, slave and free, hid themselves in the caves and among the rocks of the mountains. </VERS>\n\t\t\t<VERS vnumber=\"16\"> They said to the mountains and to the rocks, \"Fall on us and hide us from the face of the one who is seated on the throne and from the wrath of the Lamb,</VERS>\n\t\t\t<VERS vnumber=\"17\"> because the great day of their wrath has come, and who is able to withstand it?\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"7\">\n\t\t\t<VERS vnumber=\"1\"> After this I saw four angels standing at the four corners of the earth, holding back the four winds of the earth so no wind could blow on the earth, on the sea, or on any tree.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Then I saw another angel ascending from the east, who had the seal of the living God. He shouted out with a loud voice to the four angels who had been given permission to damage the earth and the sea:</VERS>\n\t\t\t<VERS vnumber=\"3\"> \"Do not damage the earth or the sea or the trees until we have put a seal on the foreheads of the servants of our God.\" </VERS>\n\t\t\t<VERS vnumber=\"4\"> Now I heard the number of those who were marked with the seal, one hundred and forty-four thousand, sealed from all the tribes of the people of Israel:</VERS>\n\t\t\t<VERS vnumber=\"5\"> From the tribe of Judah, twelve thousand were sealed, from the tribe of Reuben, twelve thousand, from the tribe of Gad, twelve thousand,</VERS>\n\t\t\t<VERS vnumber=\"6\"> from the tribe of Asher, twelve thousand, from the tribe of Naphtali, twelve thousand, from the tribe of Manasseh, twelve thousand,</VERS>\n\t\t\t<VERS vnumber=\"7\"> from the tribe of Simeon, twelve thousand, from the tribe of Levi, twelve thousand, from the tribe of Issachar, twelve thousand,</VERS>\n\t\t\t<VERS vnumber=\"8\"> from the tribe of Zebulun, twelve thousand, from the tribe of Joseph, twelve thousand, from the tribe of Benjamin, twelve thousand were sealed.</VERS>\n\t\t\t<VERS vnumber=\"9\"> After these things I looked, and here was an enormous crowd that no one could count, made up of persons from every nation, tribe, people, and language, standing before the throne and before the Lamb dressed in long white robes, and with palm branches in their hands. </VERS>\n\t\t\t<VERS vnumber=\"10\"> They were shouting out in a loud voice, \"Salvation belongs to our God, to the one seated on the throne, and to the Lamb!\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> And all the angels stood there in a circle around the throne and around the elders and the four living creatures, and they threw themselves down with their faces to the ground before the throne and worshiped God, </VERS>\n\t\t\t<VERS vnumber=\"12\"> saying, \"Amen! Praise and glory, and wisdom and thanksgiving, and honor and power and strength be to our God for ever and ever. Amen!\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> Then one of the elders asked me, \"These dressed in long white robes, who are they and where have they come from?\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> So I said to him, \"My lord, you know the answer.\" Then he said to me, \"These are the ones who have come out of the great tribulation. They have washed their robes and made them white in the blood of the Lamb! </VERS>\n\t\t\t<VERS vnumber=\"15\"> For this reason they are before the throne of God, and they serve him day and night in his temple, and the one seated on the throne will shelter them.</VERS>\n\t\t\t<VERS vnumber=\"16\"> They will never go hungry or be thirsty again, and the sun will not beat down on them, nor any burning heat,</VERS>\n\t\t\t<VERS vnumber=\"17\"> because the Lamb in the middle of the throne will shepherd them and lead them to springs of living water, and God will wipe away every tear from their eyes.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"8\">\n\t\t\t<VERS vnumber=\"1\"> Now when the Lamb opened the seventh seal there was silence in heaven for about half an hour. </VERS>\n\t\t\t<VERS vnumber=\"2\"> Then I saw the seven angels who stand before God, and seven trumpets were given to them. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Another angel holding a golden censer came and was stationed at the altar. A large amount of incense was given to him to offer up, with the prayers of all the saints, on the golden altar that is before the throne. </VERS>\n\t\t\t<VERS vnumber=\"4\"> The smoke coming from the incense, along with the prayers of the saints, ascended before God from the angel's hand. </VERS>\n\t\t\t<VERS vnumber=\"5\"> Then the angel took the censer, filled it with fire from the altar, and threw it on the earth, and there were crashes of thunder, roaring, flashes of lightning, and an earthquake.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Now the seven angels holding the seven trumpets prepared to blow them.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The first angel blew his trumpet, and there was hail and fire mixed with blood, and it was thrown at the earth so that a third of the earth was burned up, a third of the trees were burned up, and all the green grass was burned up.</VERS>\n\t\t\t<VERS vnumber=\"8\"> Then the second angel blew his trumpet, and something like a great mountain of burning fire was thrown into the sea. A third of the sea became blood, </VERS>\n\t\t\t<VERS vnumber=\"9\"> and a third of the creatures living in the sea died, and a third of the ships were completely destroyed.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Then the third angel blew his trumpet, and a huge star burning like a torch fell from the sky; it landed on a third of the rivers and on the springs of water. </VERS>\n\t\t\t<VERS vnumber=\"11\"> (Now the name of the star is Wormwood.) So a third of the waters became wormwood, and many people died from these waters because they were poisoned.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Then the fourth angel blew his trumpet, and a third of the sun was struck, and a third of the moon, and a third of the stars, so that a third of them were darkened. And there was no light for a third of the day and for a third of the night likewise. </VERS>\n\t\t\t<VERS vnumber=\"13\"> Then I looked, and I heard an eagle flying directly overhead, proclaiming with a loud voice, \"Woe! Woe! Woe to those who live on the earth because of the remaining sounds of the trumpets of the three angels who are about to blow them!\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"9\">\n\t\t\t<VERS vnumber=\"1\"> Then the fifth angel blew his trumpet, and I saw a star that had fallen from the sky to the earth, and he was given the key to the shaft of the abyss.</VERS>\n\t\t\t<VERS vnumber=\"2\"> He opened the shaft of the abyss and smoke rose out of it like smoke from a giant furnace. The sun and the air were darkened with smoke from the shaft. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Then out of the smoke came locusts onto the earth, and they were given power like that of the scorpions of the earth. </VERS>\n\t\t\t<VERS vnumber=\"4\"> They were told not to damage the grass of the earth, or any green plant or tree, but only those people who did not have the seal of God on their forehead. </VERS>\n\t\t\t<VERS vnumber=\"5\"> The locusts were not given permission to kill them, but only to torture them for five months, and their torture was like that of a scorpion when it stings a person.</VERS>\n\t\t\t<VERS vnumber=\"6\"> In those days people will seek death, but will not be able to find it; they will long to die, but death will flee from them.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Now the locusts looked like horses equipped for battle. On their heads were something like crowns similar to gold, and their faces looked like men's faces. </VERS>\n\t\t\t<VERS vnumber=\"8\"> They had hair like women's hair, and their teeth were like lions' teeth. </VERS>\n\t\t\t<VERS vnumber=\"9\"> They had breastplates like iron breastplates, and the sound of their wings was like the noise of many horse-drawn chariots charging into battle. </VERS>\n\t\t\t<VERS vnumber=\"10\"> They have tails and stingers like scorpions, and their ability to injure people for five months is in their tails. </VERS>\n\t\t\t<VERS vnumber=\"11\"> They have as king over them the angel of the abyss, whose name in Hebrew is Abaddon, and in Greek, Apollyon.</VERS>\n\t\t\t<VERS vnumber=\"12\"> The first woe has passed, but two woes are still coming after these things!</VERS>\n\t\t\t<VERS vnumber=\"13\"> Then the sixth angel blew his trumpet, and I heard a single voice coming from the horns on the golden altar that is before God, </VERS>\n\t\t\t<VERS vnumber=\"14\"> saying to the sixth angel, the one holding the trumpet, \"Set free the four angels who are bound at the great river Euphrates!\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> Then the four angels who had been prepared for this hour, day, month, and year were set free to kill a third of humanity. </VERS>\n\t\t\t<VERS vnumber=\"16\"> The number of soldiers on horseback was two hundred million; I heard their number. </VERS>\n\t\t\t<VERS vnumber=\"17\"> Now this is what the horses and their riders looked like in my vision: The riders had breastplates that were fiery red, dark blue, and sulfurous yellow in color. The heads of the horses looked like lions' heads, and fire, smoke, and sulfur came out of their mouths.</VERS>\n\t\t\t<VERS vnumber=\"18\"> A third of humanity was killed by these three plagues, that is, by the fire, the smoke, and the sulfur that came out of their mouths. </VERS>\n\t\t\t<VERS vnumber=\"19\"> For the power of the horses resides in their mouths and in their tails, because their tails are like snakes, having heads that inflict injuries. </VERS>\n\t\t\t<VERS vnumber=\"20\"> The rest of humanity, who had not been killed by these plagues, did not repent of the works of their hands, so that they did not stop worshiping demons and idols made of gold, silver, bronze, stone, and wood, idols that cannot see or hear or walk about.</VERS>\n\t\t\t<VERS vnumber=\"21\"> Furthermore, they did not repent of their murders, of their magic spells, of their sexual immorality, or of their stealing.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"10\">\n\t\t\t<VERS vnumber=\"1\"> Then I saw another powerful angel descending from heaven, wrapped in a cloud, with a rainbow above his head; his face was like the sun and his legs were like pillars of fire.</VERS>\n\t\t\t<VERS vnumber=\"2\"> He held in his hand a little scroll that was open, and he put his right foot on the sea and his left on the land. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Then he shouted in a loud voice like a lion roaring, and when he shouted, the seven thunders sounded their voices. </VERS>\n\t\t\t<VERS vnumber=\"4\"> When the seven thunders spoke, I was preparing to write, but just then I heard a voice from heaven say, \"Seal up what the seven thunders spoke and do not write it down.\" </VERS>\n\t\t\t<VERS vnumber=\"5\"> Then the angel I saw standing on the sea and on the land raised his right hand to heaven </VERS>\n\t\t\t<VERS vnumber=\"6\"> and swore by the one who lives forever and ever, who created heaven and what is in it, and the earth and what is in it, and the sea and what is in it, \"There will be no more delay!</VERS>\n\t\t\t<VERS vnumber=\"7\"> But in the days when the seventh angel is about to blow his trumpet, the mystery of God is completed, just as he has proclaimed to his servants the prophets.\" </VERS>\n\t\t\t<VERS vnumber=\"8\"> Then the voice I had heard from heaven began to speak to me again, \"Go and take the open scroll in the hand of the angel who is standing on the sea and on the land.\" </VERS>\n\t\t\t<VERS vnumber=\"9\"> So I went to the angel and asked him to give me the little scroll. He said to me, \"Take the scroll and eat it. It will make your stomach bitter, but it will be as sweet as honey in your mouth.\" </VERS>\n\t\t\t<VERS vnumber=\"10\"> So I took the little scroll from the angel's hand and ate it, and it did taste as sweet as honey in my mouth, but when I had eaten it, my stomach became bitter. </VERS>\n\t\t\t<VERS vnumber=\"11\"> Then they told me: \"You must prophesy again about many peoples, nations, languages, and kings.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"11\">\n\t\t\t<VERS vnumber=\"1\"> Then a measuring rod like a staff was given to me, and I was told, \"Get up and measure the temple of God, and the altar, and the ones who worship there. </VERS>\n\t\t\t<VERS vnumber=\"2\"> But do not measure the outer courtyard of the temple; leave it out, because it has been given to the Gentiles, and they will trample on the holy city for forty-two months. </VERS>\n\t\t\t<VERS vnumber=\"3\"> And I will grant my two witnesses authority to prophesy for 1,260 days, dressed in sackcloth. </VERS>\n\t\t\t<VERS vnumber=\"4\"> (These are the two olive trees and the two lampstands that stand before the Lord of the earth.)</VERS>\n\t\t\t<VERS vnumber=\"5\"> If anyone wants to harm them, fire comes out of their mouths and completely consumes their enemies. If anyone wants to harm them, they must be killed this way. </VERS>\n\t\t\t<VERS vnumber=\"6\"> These two have the power to close up the sky so that it does not rain during the time they are prophesying. They have power to turn the waters to blood and to strike the earth with every kind of plague whenever they want. </VERS>\n\t\t\t<VERS vnumber=\"7\"> When they have completed their testimony, the beast that comes up from the abyss will make war on them and conquer them and kill them. </VERS>\n\t\t\t<VERS vnumber=\"8\"> Their corpses will lie in the street of the great city that is symbolically called Sodom and Egypt, where their Lord was also crucified. </VERS>\n\t\t\t<VERS vnumber=\"9\"> For three and a half days those from every people, tribe, nation, and language will look at their corpses, because they will not permit them to be placed in a tomb.</VERS>\n\t\t\t<VERS vnumber=\"10\"> And those who live on the earth will rejoice over them and celebrate, even sending gifts to each other, because these two prophets had tormented those who live on the earth.</VERS>\n\t\t\t<VERS vnumber=\"11\"> But after three and a half days a breath of life from God entered them, and they stood on their feet, and tremendous fear seized those who were watching them. </VERS>\n\t\t\t<VERS vnumber=\"12\"> Then they heard a loud voice from heaven saying to them: \"Come up here!\" So the two prophets went up to heaven in a cloud while their enemies stared at them.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Just then a major earthquake took place and a tenth of the city collapsed; seven thousand people were killed in the earthquake, and the rest were terrified and gave glory to the God of heaven.</VERS>\n\t\t\t<VERS vnumber=\"14\"> The second woe has come and gone; the third is coming quickly.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Then the seventh angel blew his trumpet, and there were loud voices in heaven saying: \"The kingdom of the world has become the kingdom of our Lord and of his Christ, and he will reign for ever and ever.\"</VERS>\n\t\t\t<VERS vnumber=\"16\"> Then the twenty-four elders who are seated on their thrones before God threw themselves down with their faces to the ground and worshiped God </VERS>\n\t\t\t<VERS vnumber=\"17\"> with these words: \"We give you thanks, Lord God, the All-Powerful, the one who is and who was, because you have taken your great power and begun to reign.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The nations were enraged, but your wrath has come, and the time has come for the dead to be judged, and the time has come to give to your servants, the prophets, their reward, as well as to the saints and to those who revere your name, both small and great, and the time has come to destroy those who destroy the earth.\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> Then the temple of God in heaven was opened and the ark of his covenant was visible within his temple. And there were flashes of lightning, roaring, crashes of thunder, an earthquake, and a great hailstorm.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"12\">\n\t\t\t<VERS vnumber=\"1\"> Then a great sign appeared in heaven: a woman clothed with the sun, and with the moon under her feet, and on her head was a crown of twelve stars.</VERS>\n\t\t\t<VERS vnumber=\"2\"> She was pregnant and was screaming in labor pains, struggling to give birth. </VERS>\n\t\t\t<VERS vnumber=\"3\"> Then another sign appeared in heaven: a huge red dragon that had seven heads and ten horns, and on its heads were seven diadem crowns.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Now the dragon's tail swept away a third of the stars in heaven and hurled them to the earth. Then the dragon stood before the woman who was about to give birth, so that he might devour her child as soon as it was born. </VERS>\n\t\t\t<VERS vnumber=\"5\"> So the woman gave birth to a son, a male child, who is going to rule over all the nations with an iron rod. Her child was suddenly caught up to God and to his throne, </VERS>\n\t\t\t<VERS vnumber=\"6\"> and she fled into the wilderness where a place had been prepared for her by God, so she could be taken care of for 1,260 days.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Then war broke out in heaven: Michael and his angels fought against the dragon, and the dragon and his angels fought back. </VERS>\n\t\t\t<VERS vnumber=\"8\"> But the dragon was not strong enough to prevail, so there was no longer any place left in heaven for him and his angels.</VERS>\n\t\t\t<VERS vnumber=\"9\"> So that huge dragon, the ancient serpent, the one called the devil and Satan, who deceives the whole world, was thrown down to the earth, and his angels along with him.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Then I heard a loud voice in heaven saying, \"The salvation and the power and the kingdom of our God, and the ruling authority of his Christ, have now come, because the accuser of our brothers and sisters, the one who accuses them day and night before our God, has been thrown down.</VERS>\n\t\t\t<VERS vnumber=\"11\"> But they overcame him by the blood of the Lamb and by the word of their testimony, and they did not love their lives so much that they were afraid to die.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Therefore you heavens rejoice, and all who reside in them! But woe to the earth and the sea because the devil has come down to you! He is filled with terrible anger, for he knows that he only has a little time!\"</VERS>\n\t\t\t<VERS vnumber=\"13\"> Now when the dragon realized that he had been thrown down to the earth, he pursued the woman who had given birth to the male child. </VERS>\n\t\t\t<VERS vnumber=\"14\"> But the woman was given the two wings of a giant eagle so that she could fly out into the wilderness, to the place God prepared for her, where she is taken care of, away from the presence of the serpent, for a time, times, and half a time.</VERS>\n\t\t\t<VERS vnumber=\"15\"> Then the serpent spouted water like a river out of his mouth after the woman in an attempt to sweep her away by a flood, </VERS>\n\t\t\t<VERS vnumber=\"16\"> but the earth came to her rescue; the ground opened up and swallowed the river that the dragon had spewed from his mouth. </VERS>\n\t\t\t<VERS vnumber=\"17\"> So the dragon became enraged at the woman and went away to make war on the rest of her children, those who keep God's commandments and hold to the testimony about Jesus.</VERS>\n\t\t\t<VERS vnumber=\"18\"> And the dragon stood on the sand of the seashore.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"13\">\n\t\t\t<VERS vnumber=\"1\"> Then I saw a beast coming up out of the sea. It had ten horns and seven heads, and on its horns were ten diadem crowns, and on its heads a blasphemous name.</VERS>\n\t\t\t<VERS vnumber=\"2\"> Now the beast that I saw was like a leopard, but its feet were like a bear's, and its mouth was like a lion's mouth. The dragon gave the beast his power, his throne, and great authority to rule.</VERS>\n\t\t\t<VERS vnumber=\"3\"> One of the beast's heads appeared to have been killed, but the lethal wound had been healed. And the whole world followed the beast in amazement; </VERS>\n\t\t\t<VERS vnumber=\"4\"> they worshiped the dragon because he had given ruling authority to the beast, and they worshiped the beast too, saying: \"Who is like the beast?\" and \"Who is able to make war against him?\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> The beast was given a mouth speaking proud words and blasphemies, and he was permitted to exercise ruling authority for forty-two months. </VERS>\n\t\t\t<VERS vnumber=\"6\"> So the beast opened his mouth to blaspheme against God, to blaspheme both his name and his dwelling place, that is, those who dwell in heaven.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The beast was permitted to go to war against the saints and conquer them. He was given ruling authority over every tribe, people, language, and nation, </VERS>\n\t\t\t<VERS vnumber=\"8\"> and all those who live on the earth will worship the beast, everyone whose name has not been written since the foundation of the world in the book of life belonging to the Lamb who was killed.</VERS>\n\t\t\t<VERS vnumber=\"9\"> If anyone has an ear, he had better listen!</VERS>\n\t\t\t<VERS vnumber=\"10\"> If anyone is meant for captivity, into captivity he will go. If anyone is to be killed by the sword, then by the sword he must be killed. This requires steadfast endurance and faith from the saints.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Then I saw another beast coming up from the earth. He had two horns like a lamb, but was speaking like a dragon. </VERS>\n\t\t\t<VERS vnumber=\"12\"> He exercised all the ruling authority of the first beast on his behalf, and made the earth and those who inhabit it worship the first beast, the one whose lethal wound had been healed. </VERS>\n\t\t\t<VERS vnumber=\"13\"> He performed momentous signs, even making fire come down from heaven in front of people</VERS>\n\t\t\t<VERS vnumber=\"14\"> and, by the signs he was permitted to perform on behalf of the beast, he deceived those who live on the earth. He told those who live on the earth to make an image to the beast who had been wounded by the sword, but still lived. </VERS>\n\t\t\t<VERS vnumber=\"15\"> The second beast was empowered to give life to the image of the first beast so that it could speak, and could cause all those who did not worship the image of the beast to be killed. </VERS>\n\t\t\t<VERS vnumber=\"16\"> He also caused everyone (small and great, rich and poor, free and slave) to obtain a mark on their right hand or on their forehead.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Thus no one was allowed to buy or sell things unless he bore the mark of the beast, that is, his name or his number.</VERS>\n\t\t\t<VERS vnumber=\"18\"> This calls for wisdom: Let the one who has insight calculate the beast's number, for it is man's number, and his number is 666.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"14\">\n\t\t\t<VERS vnumber=\"1\"> Then I looked, and here was the Lamb standing on Mount Zion, and with him were one hundred and forty-four thousand, who had his name and his Father's name written on their foreheads. </VERS>\n\t\t\t<VERS vnumber=\"2\"> I also heard a sound coming out of heaven like the sound of many waters and like the sound of loud thunder. Now the sound I heard was like that made by harpists playing their harps,</VERS>\n\t\t\t<VERS vnumber=\"3\"> and they were singing a new song before the throne and before the four living creatures and the elders. No one was able to learn the song except the one hundred and forty-four thousand who had been redeemed from the earth.</VERS>\n\t\t\t<VERS vnumber=\"4\"> These are the ones who have not defiled themselves with women, for they are virgins. These are the ones who follow the Lamb wherever he goes. These were redeemed from humanity as firstfruits to God and to the Lamb, </VERS>\n\t\t\t<VERS vnumber=\"5\"> and no lie was found on their lips; they are blameless.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Then I saw another angel flying directly overhead, and he had an eternal gospel to proclaim to those who live on the earth, to every nation, tribe, language, and people.</VERS>\n\t\t\t<VERS vnumber=\"7\"> He declared in a loud voice: \"Fear God and give him glory, because the hour of his judgment has arrived, and worship the one who made heaven and earth, the sea and the springs of water!\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> A second angel followed the first, declaring: \"Fallen, fallen is Babylon the great city! She made all the nations drink of the wine of her immoral passion.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> A third angel followed the first two, declaring in a loud voice: \"If anyone worships the beast and his image, and takes the mark on his forehead or his hand,</VERS>\n\t\t\t<VERS vnumber=\"10\"> that person will also drink of the wine of God's anger that has been mixed undiluted in the cup of his wrath, and he will be tortured with fire and sulfur in front of the holy angels and in front of the Lamb. </VERS>\n\t\t\t<VERS vnumber=\"11\"> And the smoke from their torture will go up forever and ever, and those who worship the beast and his image will have no rest day or night, along with anyone who receives the mark of his name.\" </VERS>\n\t\t\t<VERS vnumber=\"12\"> This requires the steadfast endurance of the saints, those who obey God's commandments and hold to their faith in Jesus.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Then I heard a voice from heaven say, \"Write this: 'Blessed are the dead, those who die in the Lord from this moment on!'\" \"Yes,\" says the Spirit, \"so they can rest from their hard work, because their deeds will follow them.\"</VERS>\n\t\t\t<VERS vnumber=\"14\"> Then I looked, and a white cloud appeared, and seated on the cloud was one like a son of man! He had a golden crown on his head and a sharp sickle in his hand. </VERS>\n\t\t\t<VERS vnumber=\"15\"> Then another angel came out of the temple, shouting in a loud voice to the one seated on the cloud, \"Use your sickle and start to reap, because the time to reap has come, since the earth's harvest is ripe!\" </VERS>\n\t\t\t<VERS vnumber=\"16\"> So the one seated on the cloud swung his sickle over the earth, and the earth was reaped.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Then another angel came out of the temple in heaven, and he too had a sharp sickle. </VERS>\n\t\t\t<VERS vnumber=\"18\"> Another angel, who was in charge of the fire, came from the altar and called in a loud voice to the angel who had the sharp sickle, \"Use your sharp sickle and gather the clusters of grapes off the vine of the earth, because its grapes are now ripe.\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> So the angel swung his sickle over the earth and gathered the grapes from the vineyard of the earth and tossed them into the great winepress of the wrath of God. </VERS>\n\t\t\t<VERS vnumber=\"20\"> Then the winepress was stomped outside the city, and blood poured out of the winepress up to the height of horses' bridles for a distance of almost two hundred miles.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"15\">\n\t\t\t<VERS vnumber=\"1\"> Then I saw another great and astounding sign in heaven: seven angels who have seven final plagues (they are final because in them God's anger is completed).</VERS>\n\t\t\t<VERS vnumber=\"2\"> Then I saw something like a sea of glass mixed with fire, and those who had conquered the beast and his image and the number of his name. They were standing by the sea of glass, holding harps given to them by God.</VERS>\n\t\t\t<VERS vnumber=\"3\"> They sang the song of Moses the servant of God and the song of the Lamb: \"Great and astounding are your deeds, Lord God, the All-Powerful! Just and true are your ways, King over the nations!</VERS>\n\t\t\t<VERS vnumber=\"4\"> Who will not fear you, O Lord, and glorify your name, because you alone are holy? All nations will come and worship before you for your righteous acts have been revealed.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> After these things I looked, and the temple (the tent of the testimony) was opened in heaven, </VERS>\n\t\t\t<VERS vnumber=\"6\"> and the seven angels who had the seven plagues came out of the temple, dressed in clean bright linen, wearing wide golden belts around their chests. </VERS>\n\t\t\t<VERS vnumber=\"7\"> Then one of the four living creatures gave the seven angels seven golden bowls filled with the wrath of God who lives forever and ever, </VERS>\n\t\t\t<VERS vnumber=\"8\"> and the temple was filled with smoke from God's glory and from his power. Thus no one could enter the temple until the seven plagues from the seven angels were completed.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"16\">\n\t\t\t<VERS vnumber=\"1\"> Then I heard a loud voice from the temple declaring to the seven angels: \"Go and pour out on the earth the seven bowls containing God's wrath.\"</VERS>\n\t\t\t<VERS vnumber=\"2\"> So the first angel went and poured out his bowl on the earth. Then ugly and painful sores appeared on the people who had the mark of the beast and who worshiped his image.</VERS>\n\t\t\t<VERS vnumber=\"3\"> Next, the second angel poured out his bowl on the sea and it turned into blood, like that of a corpse, and every living creature that was in the sea died.</VERS>\n\t\t\t<VERS vnumber=\"4\"> Then the third angel poured out his bowl on the rivers and the springs of water, and they turned into blood. </VERS>\n\t\t\t<VERS vnumber=\"5\"> Now I heard the angel of the waters saying: \"You are just, the one who is and who was, the Holy One, because you have passed these judgments,</VERS>\n\t\t\t<VERS vnumber=\"6\"> because they poured out the blood of your saints and prophets, so you have given them blood to drink. They got what they deserved!\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> Then I heard the altar reply, \"Yes, Lord God, the All-Powerful, your judgments are true and just!\"</VERS>\n\t\t\t<VERS vnumber=\"8\"> Then the fourth angel poured out his bowl on the sun, and it was permitted to scorch people with fire. </VERS>\n\t\t\t<VERS vnumber=\"9\"> Thus people were scorched by the terrible heat, yet they blasphemed the name of God, who has ruling authority over these plagues, and they would not repent and give him glory.</VERS>\n\t\t\t<VERS vnumber=\"10\"> Then the fifth angel poured out his bowl on the throne of the beast so that darkness covered his kingdom, and people began to bite their tongues because of their pain. </VERS>\n\t\t\t<VERS vnumber=\"11\"> They blasphemed the God of heaven because of their sufferings and because of their sores, but nevertheless they still refused to repent of their deeds.</VERS>\n\t\t\t<VERS vnumber=\"12\"> Then the sixth angel poured out his bowl on the great river Euphrates and dried up its water to prepare the way for the kings from the east.</VERS>\n\t\t\t<VERS vnumber=\"13\"> Then I saw three unclean spirits that looked like frogs coming out of the mouth of the dragon, out of the mouth of the beast, and out of the mouth of the false prophet. </VERS>\n\t\t\t<VERS vnumber=\"14\"> For they are the spirits of the demons performing signs who go out to the kings of the earth to bring them together for the battle that will take place on the great day of God, the All-Powerful.</VERS>\n\t\t\t<VERS vnumber=\"15\"> (Look! I will come like a thief! Blessed is the one who stays alert and does not lose his clothes so that he will not have to walk around naked and his shameful condition be seen.)</VERS>\n\t\t\t<VERS vnumber=\"16\"> Now the spirits gathered the kings and their armies to the place that is called Armageddon in Hebrew.</VERS>\n\t\t\t<VERS vnumber=\"17\"> Finally the seventh angel poured out his bowl into the air and a loud voice came out of the temple from the throne, saying: \"It is done!\" </VERS>\n\t\t\t<VERS vnumber=\"18\"> Then there were flashes of lightning, roaring, and crashes of thunder, and there was a tremendous earthquake, an earthquake unequaled since humanity has been on the earth, so tremendous was that earthquake.</VERS>\n\t\t\t<VERS vnumber=\"19\"> The great city was split into three parts and the cities of the nations collapsed. So Babylon the great was remembered before God, and was given the cup filled with the wine made of God's furious wrath.</VERS>\n\t\t\t<VERS vnumber=\"20\"> Every island fled away and no mountains could be found.</VERS>\n\t\t\t<VERS vnumber=\"21\"> And gigantic hailstones, weighing about a hundred pounds each, fell from heaven on people, but they blasphemed God because of the plague of hail, since it was so horrendous.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"17\">\n\t\t\t<VERS vnumber=\"1\"> Then one of the seven angels who had the seven bowls came and spoke to me. \"Come,\" he said, \"I will show you the condemnation and punishment of the great prostitute who sits on many waters, </VERS>\n\t\t\t<VERS vnumber=\"2\"> with whom the kings of the earth committed sexual immorality and the earth's inhabitants got drunk with the wine of her immorality.\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> So he carried me away in the Spirit to a wilderness, and there I saw a woman sitting on a scarlet beast that was full of blasphemous names and had seven heads and ten horns. </VERS>\n\t\t\t<VERS vnumber=\"4\"> Now the woman was dressed in purple and scarlet clothing, and adorned with gold, precious stones, and pearls. She held in her hand a golden cup filled with detestable things and unclean things from her sexual immorality.</VERS>\n\t\t\t<VERS vnumber=\"5\"> On her forehead was written a name, a mystery: \"Babylon the Great, the Mother of prostitutes and of the detestable things of the earth.\" </VERS>\n\t\t\t<VERS vnumber=\"6\"> I saw that the woman was drunk with the blood of the saints and the blood of those who testified to Jesus. I was greatly astounded when I saw her. </VERS>\n\t\t\t<VERS vnumber=\"7\"> But the angel said to me, \"Why are you astounded? I will interpret for you the mystery of the woman and of the beast with the seven heads and ten horns that carries her. </VERS>\n\t\t\t<VERS vnumber=\"8\"> The beast you saw was, and is not, but is about to come up from the abyss and then go to destruction. The inhabitants of the earth, all those whose names have not been written in the book of life since the foundation of the world, will be astounded when they see that the beast was, and is not, but is to come.</VERS>\n\t\t\t<VERS vnumber=\"9\"> (This requires a mind that has wisdom.) The seven heads are seven mountains the woman sits on. They are also seven kings: </VERS>\n\t\t\t<VERS vnumber=\"10\"> five have fallen; one is, and the other has not yet come, but whenever he does come, he must remain for only a brief time. </VERS>\n\t\t\t<VERS vnumber=\"11\"> The beast that was, and is not, is himself an eighth king and yet is one of the seven, and is going to destruction. </VERS>\n\t\t\t<VERS vnumber=\"12\"> The ten horns that you saw are ten kings who have not yet received a kingdom, but will receive ruling authority as kings with the beast for one hour. </VERS>\n\t\t\t<VERS vnumber=\"13\"> These kings have a single intent, and they will give their power and authority to the beast. </VERS>\n\t\t\t<VERS vnumber=\"14\"> They will make war with the Lamb, but the Lamb will conquer them, because he is Lord of lords and King of kings, and those accompanying the Lamb are the called, chosen, and faithful.\"</VERS>\n\t\t\t<VERS vnumber=\"15\"> Then the angel said to me, \"The waters you saw (where the prostitute is seated) are peoples, multitudes, nations, and languages. </VERS>\n\t\t\t<VERS vnumber=\"16\"> The ten horns that you saw, and the beast, these will hate the prostitute and make her desolate and naked. They will consume her flesh and burn her up with fire.</VERS>\n\t\t\t<VERS vnumber=\"17\"> For God has put into their minds to carry out his purpose by making a decision to give their royal power to the beast until the words of God are fulfilled.</VERS>\n\t\t\t<VERS vnumber=\"18\"> As for the woman you saw, she is the great city that has sovereignty over the kings of the earth.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"18\">\n\t\t\t<VERS vnumber=\"1\"> After these things I saw another angel, who possessed great authority, coming down out of heaven, and the earth was lit up by his radiance.</VERS>\n\t\t\t<VERS vnumber=\"2\"> He shouted with a powerful voice: \"Fallen, fallen, is Babylon the great! She has become a lair for demons, a haunt for every unclean spirit, a haunt for every unclean bird, a haunt for every unclean and detested beast.</VERS>\n\t\t\t<VERS vnumber=\"3\"> For all the nations have fallen from the wine of her immoral passion, and the kings of the earth have committed sexual immorality with her, and the merchants of the earth have gotten rich from the power of her sensual behavior.\"</VERS>\n\t\t\t<VERS vnumber=\"4\"> Then I heard another voice from heaven saying, \"Come out of her, my people, so you will not take part in her sins and so you will not receive her plagues, </VERS>\n\t\t\t<VERS vnumber=\"5\"> because her sins have piled up all the way to heaven and God has remembered her crimes.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Repay her the same way she repaid others; pay her back double corresponding to her deeds. In the cup she mixed, mix double the amount for her. </VERS>\n\t\t\t<VERS vnumber=\"7\"> As much as she exalted herself and lived in sensual luxury, to this extent give her torment and grief because she said to herself, 'I rule as queen and am no widow; I will never experience grief!' </VERS>\n\t\t\t<VERS vnumber=\"8\"> For this reason, she will experience her plagues in a single day: disease, mourning, and famine, and she will be burned down with fire, because the Lord God who judges her is powerful!\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> Then the kings of the earth who committed immoral acts with her and lived in sensual luxury with her will weep and wail for her when they see the smoke from the fire that burns her up.</VERS>\n\t\t\t<VERS vnumber=\"10\"> They will stand a long way off because they are afraid of her torment, and will say, \"Woe, woe, O great city, Babylon the powerful city! For in a single hour your doom has come!\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> Then the merchants of the earth will weep and mourn for her because no one buys their cargo any longer,</VERS>\n\t\t\t<VERS vnumber=\"12\"> cargo such as gold, silver, precious stones, pearls, fine linen, purple cloth, silk, scarlet cloth, all sorts of things made of citron wood, all sorts of objects made of ivory, all sorts of things made of expensive wood, bronze, iron and marble, </VERS>\n\t\t\t<VERS vnumber=\"13\"> cinnamon, spice, incense, perfumed ointment, frankincense, wine, olive oil and costly flour, wheat, cattle and sheep, horses and four-wheeled carriages, slaves and human lives.</VERS>\n\t\t\t<VERS vnumber=\"14\"> (The ripe fruit you greatly desired has gone from you, and all your luxury and splendor have gone from you, they will never ever be found again!)</VERS>\n\t\t\t<VERS vnumber=\"15\"> The merchants who sold these things, who got rich from her, will stand a long way off because they are afraid of her torment. They will weep and mourn, </VERS>\n\t\t\t<VERS vnumber=\"16\"> saying, \"Woe, woe, O great city, dressed in fine linen, purple and scarlet clothing, and adorned with gold, precious stones, and pearls,</VERS>\n\t\t\t<VERS vnumber=\"17\"> because in a single hour such great wealth has been destroyed!\" And every ship's captain, and all who sail along the coast, seamen, and all who make their living from the sea, stood a long way off</VERS>\n\t\t\t<VERS vnumber=\"18\"> and began to shout when they saw the smoke from the fire that burned her up, \"Who is like the great city?\" </VERS>\n\t\t\t<VERS vnumber=\"19\"> And they threw dust on their heads and were shouting with weeping and mourning, \"Woe, Woe, O great city, in which all those who had ships on the sea got rich from her wealth, because in a single hour she has been destroyed!\"</VERS>\n\t\t\t<VERS vnumber=\"20\"> (Rejoice over her, O heaven, and you saints and apostles and prophets, for God has pronounced judgment against her on your behalf!)</VERS>\n\t\t\t<VERS vnumber=\"21\"> Then one powerful angel picked up a stone like a huge millstone, threw it into the sea, and said, \"With this kind of sudden violent force Babylon the great city will be thrown down and it will never be found again!</VERS>\n\t\t\t<VERS vnumber=\"22\"> And the sound of the harpists, musicians, flute players, and trumpeters will never be heard in you again. No craftsman who practices any trade will ever be found in you again; the noise of a mill will never be heard in you again.</VERS>\n\t\t\t<VERS vnumber=\"23\"> Even the light from a lamp will never shine in you again! The voices of the bridegroom and his bride will never be heard in you again. For your merchants were the tycoons of the world, because all the nations were deceived by your magic spells!</VERS>\n\t\t\t<VERS vnumber=\"24\"> The blood of the saints and prophets was found in her, along with the blood of all those who had been killed on the earth.\"</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"19\">\n\t\t\t<VERS vnumber=\"1\"> After these things I heard what sounded like the loud voice of a vast throng in heaven, saying, \"Hallelujah! Salvation and glory and power belong to our God,</VERS>\n\t\t\t<VERS vnumber=\"2\"> because his judgments are true and just. For he has judged the great prostitute who corrupted the earth with her sexual immorality, and has avenged the blood of his servants poured out by her own hands!\"</VERS>\n\t\t\t<VERS vnumber=\"3\"> Then a second time the crowd shouted, \"Hallelujah!\" The smoke rises from her forever and ever.</VERS>\n\t\t\t<VERS vnumber=\"4\"> The twenty-four elders and the four living creatures threw themselves to the ground and worshiped God, who was seated on the throne, saying: \"Amen! Hallelujah!\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> Then a voice came from the throne, saying: \"Praise our God all you his servants, and all you who fear Him, both the small and the great!\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> Then I heard what sounded like the voice of a vast throng, like the roar of many waters and like loud crashes of thunder. They were shouting: \"Hallelujah! For the Lord our God, the All-Powerful, reigns!</VERS>\n\t\t\t<VERS vnumber=\"7\"> Let us rejoice and exult and give him glory, because the wedding celebration of the Lamb has come, and his bride has made herself ready.</VERS>\n\t\t\t<VERS vnumber=\"8\"> She was permitted to be dressed in bright, clean, fine linen\" (for the fine linen is the righteous deeds of the saints).</VERS>\n\t\t\t<VERS vnumber=\"9\"> Then the angel said to me, \"Write the following: Blessed are those who are invited to the banquet at the wedding celebration of the Lamb!\" He also said to me, \"These are the true words of God.\" </VERS>\n\t\t\t<VERS vnumber=\"10\"> So I threw myself down at his feet to worship him, but he said, \"Do not do this! I am only a fellow servant with you and your brothers who hold to the testimony about Jesus. Worship God, for the testimony about Jesus is the spirit of prophecy.\"</VERS>\n\t\t\t<VERS vnumber=\"11\"> Then I saw heaven opened and here came a white horse! The one riding it was called \"Faithful\" and \"True,\" and with justice he judges and goes to war. </VERS>\n\t\t\t<VERS vnumber=\"12\"> His eyes are like a fiery flame and there are many diadem crowns on his head. He has a name written that no one knows except himself. </VERS>\n\t\t\t<VERS vnumber=\"13\"> He is dressed in clothing dipped in blood, and he is called the Word of God. </VERS>\n\t\t\t<VERS vnumber=\"14\"> The armies that are in heaven, dressed in white, clean, fine linen, were following him on white horses. </VERS>\n\t\t\t<VERS vnumber=\"15\"> From his mouth extends a sharp sword, so that with it he can strike the nations. He will rule them with an iron rod, and he stomps the winepress of the furious wrath of God, the All-Powerful.</VERS>\n\t\t\t<VERS vnumber=\"16\"> He has a name written on his clothing and on his thigh: \"King of kings and Lord of lords.\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> Then I saw one angel standing in the sun, and he shouted in a loud voice to all the birds flying high in the sky: \"Come, gather around for the great banquet of God,</VERS>\n\t\t\t<VERS vnumber=\"18\"> to eat your fill of the flesh of kings, the flesh of generals, the flesh of powerful people, the flesh of horses and those who ride them, and the flesh of all people, both free and slave, and small and great!\"</VERS>\n\t\t\t<VERS vnumber=\"19\"> Then I saw the beast and the kings of the earth and their armies assembled to do battle with the one who rode the horse and with his army. </VERS>\n\t\t\t<VERS vnumber=\"20\"> Now the beast was seized, and along with him the false prophet who had performed the signs on his behalf, signs by which he deceived those who had received the mark of the beast and those who worshiped his image. Both of them were thrown alive into the lake of fire burning with sulfur.</VERS>\n\t\t\t<VERS vnumber=\"21\"> The others were killed by the sword that extended from the mouth of the one who rode the horse, and all the birds gorged themselves with their flesh.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"20\">\n\t\t\t<VERS vnumber=\"1\"> Then I saw an angel descending from heaven, holding in his hand the key to the abyss and a huge chain. </VERS>\n\t\t\t<VERS vnumber=\"2\"> He seized the dragon, the ancient serpent, who is the devil and Satan, and tied him up for a thousand years.</VERS>\n\t\t\t<VERS vnumber=\"3\"> The angel then threw him into the abyss and locked and sealed it so that he could not deceive the nations until the one thousand years were finished. (After these things he must be released for a brief period of time.)</VERS>\n\t\t\t<VERS vnumber=\"4\"> Then I saw thrones and seated on them were those who had been given authority to judge. I also saw the souls of those who had been beheaded because of the testimony about Jesus and because of the word of God. These had not worshiped the beast or his image and had refused to receive his mark on their forehead or hand. They came to life and reigned with Christ for a thousand years. </VERS>\n\t\t\t<VERS vnumber=\"5\"> (The rest of the dead did not come to life until the thousand years were finished.) This is the first resurrection. </VERS>\n\t\t\t<VERS vnumber=\"6\"> Blessed and holy is the one who takes part in the first resurrection. The second death has no power over them, but they will be priests of God and of Christ, and they will reign with him for a thousand years.</VERS>\n\t\t\t<VERS vnumber=\"7\"> Now when the thousand years are finished, Satan will be released from his prison </VERS>\n\t\t\t<VERS vnumber=\"8\"> and will go out to deceive the nations at the four corners of the earth, Gog and Magog, to bring them together for the battle. They are as numerous as the grains of sand in the sea.</VERS>\n\t\t\t<VERS vnumber=\"9\"> They went up on the broad plain of the earth and encircled the camp of the saints and the beloved city, but fire came down from heaven and devoured them completely.</VERS>\n\t\t\t<VERS vnumber=\"10\"> And the devil who deceived them was thrown into the lake of fire and sulfur, where the beast and the false prophet are too, and they will be tormented there day and night forever and ever.</VERS>\n\t\t\t<VERS vnumber=\"11\"> Then I saw a large white throne and the one who was seated on it; the earth and the heaven fled from his presence, and no place was found for them. </VERS>\n\t\t\t<VERS vnumber=\"12\"> And I saw the dead, the great and the small, standing before the throne. Then books were opened, and another book was opened, the book of life. So the dead were judged by what was written in the books, according to their deeds.</VERS>\n\t\t\t<VERS vnumber=\"13\"> The sea gave up the dead that were in it, and Death and Hades gave up the dead that were in them, and each one was judged according to his deeds. </VERS>\n\t\t\t<VERS vnumber=\"14\"> Then Death and Hades were thrown into the lake of fire. This is the second death, the lake of fire.</VERS>\n\t\t\t<VERS vnumber=\"15\"> If anyone's name was not found written in the book of life, that person was thrown into the lake of fire.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"21\">\n\t\t\t<VERS vnumber=\"1\"> Then I saw a new heaven and a new earth, for the first heaven and earth had ceased to exist, and the sea existed no more. </VERS>\n\t\t\t<VERS vnumber=\"2\"> And I saw the holy city, the new Jerusalem, descending out of heaven from God, made ready like a bride adorned for her husband.</VERS>\n\t\t\t<VERS vnumber=\"3\"> And I heard a loud voice from the throne saying: \"Look! The residence of God is among human beings. He will live among them, and they will be his people, and God himself will be with them.</VERS>\n\t\t\t<VERS vnumber=\"4\"> He will wipe away every tear from their eyes, and death will not exist any more, or mourning, or crying, or pain, for the former things have ceased to exist.\"</VERS>\n\t\t\t<VERS vnumber=\"5\"> And the one seated on the throne said: \"Look! I am making all things new!\" Then he said to me, \"Write it down, because these words are reliable and true.\"</VERS>\n\t\t\t<VERS vnumber=\"6\"> He also said to me, \"It is done! I am the Alpha and the Omega, the beginning and the end. To the one who is thirsty I will give water free of charge from the spring of the water of life.</VERS>\n\t\t\t<VERS vnumber=\"7\"> The one who conquers will inherit these things, and I will be his God and he will be my son. </VERS>\n\t\t\t<VERS vnumber=\"8\"> But to the cowards, unbelievers, detestable persons, murderers, the sexually immoral, and those who practice magic spells, idol worshipers, and all those who lie, their place will be in the lake that burns with fire and sulfur. That is the second death.\"</VERS>\n\t\t\t<VERS vnumber=\"9\"> Then one of the seven angels who had the seven bowls full of the seven final plagues came and spoke to me, saying, \"Come, I will show you the bride, the wife of the Lamb!\" </VERS>\n\t\t\t<VERS vnumber=\"10\"> So he took me away in the Spirit to a huge, majestic mountain and showed me the holy city, Jerusalem, descending out of heaven from God. </VERS>\n\t\t\t<VERS vnumber=\"11\"> The city possesses the glory of God; its brilliance is like a precious jewel, like a stone of crystal-clear jasper.</VERS>\n\t\t\t<VERS vnumber=\"12\"> It has a massive, high wall with twelve gates, with twelve angels at the gates, and the names of the twelve tribes of the nation of Israel are written on the gates.</VERS>\n\t\t\t<VERS vnumber=\"13\"> There are three gates on the east side, three gates on the north side, three gates on the south side and three gates on the west side.</VERS>\n\t\t\t<VERS vnumber=\"14\"> The wall of the city has twelve foundations, and on them are the twelve names of the twelve apostles of the Lamb.</VERS>\n\t\t\t<VERS vnumber=\"15\"> The angel who spoke to me had a golden measuring rod with which to measure the city and its foundation stones and wall. </VERS>\n\t\t\t<VERS vnumber=\"16\"> Now the city is laid out as a square, its length and width the same. He measured the city with the measuring rod at fourteen hundred miles (its length and width and height are equal). </VERS>\n\t\t\t<VERS vnumber=\"17\"> He also measured its wall, one hundred forty-four cubits according to human measurement, which is also the angel's.</VERS>\n\t\t\t<VERS vnumber=\"18\"> The city's wall is made of jasper and the city is pure gold, like transparent glass.</VERS>\n\t\t\t<VERS vnumber=\"19\"> The foundations of the city's wall are decorated with every kind of precious stone. The first foundation is jasper, the second sapphire, the third agate, the fourth emerald, </VERS>\n\t\t\t<VERS vnumber=\"20\"> the fifth onyx, the sixth carnelian, the seventh chrysolite, the eighth beryl, the ninth topaz, the tenth chrysoprase, the eleventh jacinth, and the twelfth amethyst. </VERS>\n\t\t\t<VERS vnumber=\"21\"> And the twelve gates are twelve pearls, each one of the gates is made from just one pearl! The main street of the city is pure gold, like transparent glass.</VERS>\n\t\t\t<VERS vnumber=\"22\"> Now I saw no temple in the city, because the Lord God, the All-Powerful, and the Lamb are its temple.</VERS>\n\t\t\t<VERS vnumber=\"23\"> The city does not need the sun or the moon to shine on it, because the glory of God lights it up, and its lamp is the Lamb.</VERS>\n\t\t\t<VERS vnumber=\"24\"> The nations will walk by its light and the kings of the earth will bring their grandeur into it. </VERS>\n\t\t\t<VERS vnumber=\"25\"> Its gates will never be closed during the day (and there will be no night there).</VERS>\n\t\t\t<VERS vnumber=\"26\"> They will bring the grandeur and the wealth of the nations into it, </VERS>\n\t\t\t<VERS vnumber=\"27\"> but nothing ritually unclean will ever enter into it, nor anyone who does what is detestable or practices falsehood, but only those whose names are written in the Lamb's book of life.</VERS>\n\t\t</CHAPTER>\n\t\t<CHAPTER cnumber=\"22\">\n\t\t\t<VERS vnumber=\"1\"> Then the angel showed me the river of the water of life, water as clear as crystal, pouring out from the throne of God and of the Lamb,</VERS>\n\t\t\t<VERS vnumber=\"2\"> flowing down the middle of the city's main street. On each side of the river is the tree of life producing twelve kinds of fruit, yielding its fruit every month of the year. Its leaves are for the healing of the nations. </VERS>\n\t\t\t<VERS vnumber=\"3\"> And there will no longer be any curse, and the throne of God and the Lamb will be in the city. His servants will worship him, </VERS>\n\t\t\t<VERS vnumber=\"4\"> and they will see his face, and his name will be on their foreheads.</VERS>\n\t\t\t<VERS vnumber=\"5\"> Night will be no more, and they will not need the light of a lamp or the light of the sun, because the Lord God will shine on them, and they will reign forever and ever.</VERS>\n\t\t\t<VERS vnumber=\"6\"> Then the angel said to me, \"These words are reliable and true. The Lord, the God of the spirits of the prophets, has sent his angel to show his servants what must happen soon.\"</VERS>\n\t\t\t<VERS vnumber=\"7\"> (Look! I am coming soon! Blessed is the one who keeps the words of the prophecy expressed in this book.)</VERS>\n\t\t\t<VERS vnumber=\"8\"> I, John, am the one who heard and saw these things, and when I heard and saw them, I threw myself down to worship at the feet of the angel who was showing them to me. </VERS>\n\t\t\t<VERS vnumber=\"9\"> But he said to me, \"Do not do this! I am a fellow servant with you and with your brothers the prophets, and with those who obey the words of this book. Worship God!\"</VERS>\n\t\t\t<VERS vnumber=\"10\"> Then he said to me, \"Do not seal up the words of the prophecy contained in this book, because the time is near. </VERS>\n\t\t\t<VERS vnumber=\"11\"> The evildoer must continue to do evil, and the one who is morally filthy must continue to be filthy. The one who is righteous must continue to act righteously, and the one who is holy must continue to be holy.\"</VERS>\n\t\t\t<VERS vnumber=\"12\"> (Look! I am coming soon, and my reward is with me to pay each one according to what he has done!</VERS>\n\t\t\t<VERS vnumber=\"13\"> I am the Alpha and the Omega, the first and the last, the beginning and the end!)</VERS>\n\t\t\t<VERS vnumber=\"14\"> Blessed are those who wash their robes so they can have access to the tree of life and can enter into the city by the gates. </VERS>\n\t\t\t<VERS vnumber=\"15\"> Outside are the dogs and the sorcerers and the sexually immoral, and the murderers, and the idolaters and everyone who loves and practices falsehood!</VERS>\n\t\t\t<VERS vnumber=\"16\"> \"I, Jesus, have sent my angel to testify to you about these things for the churches. I am the root and the descendant of David, the bright morning star!\"</VERS>\n\t\t\t<VERS vnumber=\"17\"> And the Spirit and the bride say, \"Come!\" And let the one who hears say: \"Come!\" And let the one who is thirsty come; let the one who wants it take the water of life free of charge.</VERS>\n\t\t\t<VERS vnumber=\"18\"> I testify to the one who hears the words of the prophecy contained in this book: If anyone adds to them, God will add to him the plagues described in this book. </VERS>\n\t\t\t<VERS vnumber=\"19\"> And if anyone takes away from the words of this book of prophecy, God will take away his share in the tree of life and in the holy city that are described in this book.</VERS>\n\t\t\t<VERS vnumber=\"20\"> The one who testifies to these things says, \"Yes, I am coming soon!\" Amen! Come, Lord Jesus!</VERS>\n\t\t\t<VERS vnumber=\"21\"> The grace of the Lord Jesus be with all.</VERS>\n\t\t</CHAPTER>\n\t</BIBLEBOOK>\n</XMLBIBLE>\n"
  },
  {
    "path": "Quelea/bibles/rsv.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\r\n<XMLBIBLE xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" biblename=\"Revised Standard Version\">\r\n\t<BIBLEBOOK bnumber=\"1\" bname=\"Genesis\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> In the beginning when God created the heavens and the earth, </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> the earth was a formless void and darkness covered the face of the deep, while a wind from God swept over the face of the waters. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then God said, \"Let there be light\"; and there was light.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> And God saw that the light was good; and God separated the light from the darkness.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> God called the light Day, and the darkness he called Night. And there was evening and there was morning, the first day.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And God said, \"Let there be a dome in the midst of the waters, and let it separate the waters from the waters.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> So God made the dome and separated the waters that were under the dome from the waters that were above the dome. And it was so.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> God called the dome Sky. And there was evening and there was morning, the second day.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> And God said, \"Let the waters under the sky be gathered together into one place, and let the dry land appear.\" And it was so.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> God called the dry land Earth, and the waters that were gathered together he called Seas. And God saw that it was good.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then God said, \"Let the earth put forth vegetation: plants yielding seed, and fruit trees of every kind on earth that bear fruit with the seed in it.\" And it was so.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The earth brought forth vegetation: plants yielding seed of every kind, and trees of every kind bearing fruit with the seed in it. And God saw that it was good.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And there was evening and there was morning, the third day.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> And God said, \"Let there be lights in the dome of the sky to separate the day from the night; and let them be for signs and for seasons and for days and years,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> and let them be lights in the dome of the sky to give light upon the earth.\" And it was so.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> God made the two great lights-- the greater light to rule the day and the lesser light to rule the night-- and the stars.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> God set them in the dome of the sky to give light upon the earth,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> to rule over the day and over the night, and to separate the light from the darkness. And God saw that it was good.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> And there was evening and there was morning, the fourth day.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> And God said, \"Let the waters bring forth swarms of living creatures, and let birds fly above the earth across the dome of the sky.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> So God created the great sea monsters and every living creature that moves, of every kind, with which the waters swarm, and every winged bird of every kind. And God saw that it was good.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> God blessed them, saying, \"Be fruitful and multiply and fill the waters in the seas, and let birds multiply on the earth.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> And there was evening and there was morning, the fifth day.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> And God said, \"Let the earth bring forth living creatures of every kind: cattle and creeping things and wild animals of the earth of every kind.\" And it was so.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> God made the wild animals of the earth of every kind, and the cattle of every kind, and everything that creeps upon the ground of every kind. And God saw that it was good.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Then God said, \"Let us make humankind in our image, according to our likeness; and let them have dominion over the fish of the sea, and over the birds of the air, and over the cattle, and over all the wild animals of the earth, and over every creeping thing that creeps upon the earth.\" </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> So God created humankind in his image, in the image of God he created them; male and female he created them. </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> God blessed them, and God said to them, \"Be fruitful and multiply, and fill the earth and subdue it; and have dominion over the fish of the sea and over the birds of the air and over every living thing that moves upon the earth.\"</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> God said, \"See, I have given you every plant yielding seed that is upon the face of all the earth, and every tree with seed in its fruit; you shall have them for food.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> And to every beast of the earth, and to every bird of the air, and to everything that creeps on the earth, everything that has the breath of life, I have given every green plant for food.\" And it was so.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> God saw everything that he had made, and indeed, it was very good. And there was evening and there was morning, the sixth day.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> Thus the heavens and the earth were finished, and all their multitude.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And on the seventh day God finished the work that he had done, and he rested on the seventh day from all the work that he had done.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> So God blessed the seventh day and hallowed it, because on it God rested from all the work that he had done in creation.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> These are the generations of the heavens and the earth when they were created. In the day that the LORD God made the earth and the heavens,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> when no plant of the field was yet in the earth and no herb of the field had yet sprung up-- for the LORD God had not caused it to rain upon the earth, and there was no one to till the ground;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> but a stream would rise from the earth, and water the whole face of the ground--</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> then the LORD God formed man from the dust of the ground, and breathed into his nostrils the breath of life; and the man became a living being. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And the LORD God planted a garden in Eden, in the east; and there he put the man whom he had formed.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Out of the ground the LORD God made 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 the knowledge of good and evil.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> A river flows out of Eden to water the garden, and from there it divides and becomes four branches.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The name of the first is Pishon; it is the one that flows around the whole land of Havilah, where there is gold;</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> and the gold of that land is good; bdellium and onyx stone are there.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The name of the second river is Gihon; it is the one that flows around the whole land of Cush.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The name of the third river is Tigris, which flows east of Assyria. And the fourth river is the Euphrates.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The LORD God took the man and put him in the garden of Eden to till it and keep it.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> And the LORD God commanded the man, \"You may freely eat of every tree of the garden;</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> but of the tree of the knowledge of good and evil you shall not eat, for in the day that you eat of it you shall die.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then the LORD God said, \"It is not good that the man should be alone; I will make him a helper as his partner.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> So out of the ground the LORD God formed every animal of the field and every bird of the air, and brought them to the man to see what he would call them; and whatever the man called every living creature, that was its name.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The man gave names to all cattle, and to the birds of the air, and to every animal of the field; but for the man there was not found a helper as his partner. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> So the LORD God caused a deep sleep to fall upon the man, and he slept; then he took one of his ribs and closed up its place with flesh.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> And the rib that the LORD God had taken from the man he made into a woman and brought her to the man.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Then the man said, \"This at last is bone of my bones and flesh of my flesh; this one shall be called Woman, for out of Man this one was taken.\" </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Therefore a man leaves his father and his mother and clings to his wife, and they become one flesh.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> And the man and his wife were both naked, and were not ashamed.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> Now the serpent was more crafty than any other wild animal that the LORD God had made. He said to the woman, \"Did God say, 'You shall not eat from any tree in the garden'?\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The woman said to the serpent, \"We may eat of the fruit of the trees in the garden;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> but God said, 'You shall not eat of the fruit of the tree that is in the middle of the garden, nor shall you touch it, or you shall die.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But the serpent said to the woman, \"You will not die;</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> for God knows that when you eat of it your eyes will be opened, and you will be like God, knowing good and evil.\" </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> So when the woman saw that the tree was good for food, and that it was a delight to the eyes, and that the tree was to be desired to make one wise, she took of its fruit and ate; and she also gave some to her husband, who was with her, and he ate.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then the eyes of both were opened, and they knew that they were naked; and they sewed fig leaves together and made loincloths for themselves.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> They heard the sound of the LORD God walking in the garden at the time of the evening breeze, and the man and his wife hid themselves from the presence of the LORD God among the trees of the garden.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> But the LORD God called to the man, and said to him, \"Where are you?\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> He said, \"I heard the sound of you in the garden, and I was afraid, because I was naked; and I hid myself.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> He said, \"Who told you that you were naked? Have you eaten from the tree of which I commanded you not to eat?\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The man said, \"The woman whom you gave to be with me, she gave me fruit from the tree, and I ate.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then the LORD God said to the woman, \"What is this that you have done?\" The woman said, \"The serpent tricked me, and I ate.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The LORD God said to the serpent, \"Because you have done this, cursed are you among all animals and among all wild creatures; upon your belly you shall go, and dust you shall eat all the days of your life.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> I will put enmity between you and the woman, and between your offspring and hers; he will strike your head, and you will strike his heel.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> To the woman he said, \"I will greatly increase your pangs in childbearing; in pain you shall bring forth children, yet your desire shall be for your husband, and he shall rule over you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> And to the man he said, \"Because you have listened to the voice of your wife, and have eaten of the tree about which I commanded you, 'You shall not eat of it,' cursed is the ground because of you; in toil you shall eat of it all the days of your life; </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> thorns and thistles it shall bring forth for you; and you shall eat the plants of the field.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> By the sweat of your face you shall eat bread until you return to the ground, for out of it you were taken; you are dust, and to dust you shall return.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The man named his wife Eve, because she was the mother of all living. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> And the LORD God made garments of skins for the man and for his wife, and clothed them. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Then the LORD God said, \"See, the man has become like one of us, knowing good and evil; and now, he might reach out his hand and take also from the tree of life, and eat, and live forever\"--</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> therefore the LORD God sent him forth from the garden of Eden, to till the ground from which he was taken.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> He drove out the man; and at the east of the garden of Eden he placed the cherubim, and a sword flaming and turning to guard the way to the tree of life.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> Now the man knew his wife Eve, and she conceived and bore Cain, saying, \"I have produced a man with the help of the LORD.\" </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Next she bore his brother Abel. Now Abel was a keeper of sheep, and Cain a tiller of the ground.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> In the course of time Cain brought to the LORD an offering of the fruit of the ground,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> and Abel for his part brought of the firstlings of his flock, their fat portions. And the LORD had regard for Abel and his offering,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> but for Cain and his offering he had no regard. So Cain was very angry, and his countenance fell.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The LORD said to Cain, \"Why are you angry, and why has your countenance fallen?</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> If you do well, will you not be accepted? And if you do not do well, sin is lurking at the door; its desire is for you, but you must master it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Cain said to his brother Abel, \"Let us go out to the field.\" And when they were in the field, Cain rose up against his brother Abel, and killed him. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then the LORD said to Cain, \"Where is your brother Abel?\" He said, \"I do not know; am I my brother's keeper?\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And the LORD said, \"What have you done? Listen; your brother's blood is crying out to me from the ground!</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> And now you are cursed from the ground, which has opened its mouth to receive your brother's blood from your hand.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> When you till the ground, it will no longer yield to you its strength; you will be a fugitive and a wanderer on the earth.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Cain said to the LORD, \"My punishment is greater than I can bear!</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Today you have driven me away from the soil, and I shall be hidden from your face; I shall be a fugitive and a wanderer on the earth, and anyone who meets me may kill me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Then the LORD said to him, \"Not so! Whoever kills Cain will suffer a sevenfold vengeance.\" And the LORD put a mark on Cain, so that no one who came upon him would kill him. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then Cain went away from the presence of the LORD, and settled in the land of Nod, east of Eden. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Cain knew his wife, and she conceived and bore Enoch; and he built a city, and named it Enoch after his son Enoch.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> To Enoch was born Irad; and Irad was the father of Mehujael, and Mehujael the father of Methushael, and Methushael the father of Lamech.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Lamech took two wives; the name of the one was Adah, and the name of the other Zillah.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Adah bore Jabal; he was the ancestor of those who live in tents and have livestock.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> His brother's name was Jubal; he was the ancestor of all those who play the lyre and pipe.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Zillah bore Tubal-cain, who made all kinds of bronze and iron tools. The sister of Tubal-cain was Naamah.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Lamech said to his wives: \"Adah and Zillah, hear my voice; you wives of Lamech, listen to what I say: I have killed a man for wounding me, a young man for striking me.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> If Cain is avenged sevenfold, truly Lamech seventy-sevenfold.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Adam knew his wife again, and she bore a son and named him Seth, for she said, \"God has appointed for me another child instead of Abel, because Cain killed him.\" </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> To Seth also a son was born, and he named him Enosh. At that time people began to invoke the name of the LORD.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"5\">\r\n\t\t\t<VERS vnumber=\"1\"> This is the list of the descendants of Adam. When God created humankind, he made them in the likeness of God. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Male and female he created them, and he blessed them and named them \"Humankind\" when they were created. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> When Adam had lived one hundred thirty years, he became the father of a son in his likeness, according to his image, and named him Seth.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The days of Adam after he became the father of Seth were eight hundred years; and he had other sons and daughters.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Thus all the days that Adam lived were nine hundred thirty years; and he died.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> When Seth had lived one hundred five years, he became the father of Enosh.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Seth lived after the birth of Enosh eight hundred seven years, and had other sons and daughters.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Thus all the days of Seth were nine hundred twelve years; and he died.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> When Enosh had lived ninety years, he became the father of Kenan.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Enosh lived after the birth of Kenan eight hundred fifteen years, and had other sons and daughters.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Thus all the days of Enosh were nine hundred five years; and he died.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> When Kenan had lived seventy years, he became the father of Mahalalel.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Kenan lived after the birth of Mahalalel eight hundred and forty years, and had other sons and daughters.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Thus all the days of Kenan were nine hundred and ten years; and he died.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> When Mahalalel had lived sixty-five years, he became the father of Jared.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Mahalalel lived after the birth of Jared eight hundred thirty years, and had other sons and daughters.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Thus all the days of Mahalalel were eight hundred ninety-five years; and he died.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> When Jared had lived one hundred sixty-two years he became the father of Enoch.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Jared lived after the birth of Enoch eight hundred years, and had other sons and daughters.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Thus all the days of Jared were nine hundred sixty-two years; and he died.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> When Enoch had lived sixty-five years, he became the father of Methuselah.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Enoch walked with God after the birth of Methuselah three hundred years, and had other sons and daughters.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Thus all the days of Enoch were three hundred sixty-five years.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Enoch walked with God; then he was no more, because God took him.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> When Methuselah had lived one hundred eighty-seven years, he became the father of Lamech.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Methuselah lived after the birth of Lamech seven hundred eighty-two years, and had other sons and daughters.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Thus all the days of Methuselah were nine hundred sixty-nine years; and he died.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> When Lamech had lived one hundred eighty-two years, he became the father of a son;</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> he named him Noah, saying, \"Out of the ground that the LORD has cursed this one shall bring us relief from our work and from the toil of our hands.\"</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Lamech lived after the birth of Noah five hundred ninety-five years, and had other sons and daughters.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Thus all the days of Lamech were seven hundred seventy-seven years; and he died.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> After Noah was five hundred years old, Noah became the father of Shem, Ham, and Japheth.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"6\">\r\n\t\t\t<VERS vnumber=\"1\"> When people began to multiply on the face of the ground, and daughters were born to them,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> the sons of God saw that they were fair; and they took wives for themselves of all that they chose.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then the LORD said, \"My spirit shall not abide in mortals forever, for they are flesh; their days shall be one hundred twenty years.\" </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The Nephilim were on the earth in those days-- and also afterward-- when the sons of God went in to the daughters of humans, who bore children to them. These were the heroes that were of old, warriors of renown.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The LORD saw that the wickedness of humankind was great in the earth, and that every inclination of the thoughts of their hearts was only evil continually.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And the LORD was sorry that he had made humankind on the earth, and it grieved him to his heart.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> So the LORD said, \"I will blot out from the earth the human beings I have created-- people together with animals and creeping things and birds of the air, for I am sorry that I have made them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But Noah found favor in the sight of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> These are the descendants of Noah. Noah was a righteous man, blameless in his generation; Noah walked with God.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And Noah had three sons, Shem, Ham, and Japheth.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Now the earth was corrupt in God's sight, and the earth was filled with violence.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> And God saw that the earth was corrupt; for all flesh had corrupted its ways upon the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And God said to Noah, \"I have determined to make an end of all flesh, for the earth is filled with violence because of them; now I am going to destroy them along with the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Make yourself an ark of cypress wood; make rooms in the ark, and cover it inside and out with pitch. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> This is how you are to make it: the length of the ark three hundred cubits, its width fifty cubits, and its height thirty cubits.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Make a roof for the ark, and finish it to a cubit above; and put the door of the ark in its side; make it with lower, second, and third decks. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> For my part, I am going to bring a flood of waters on the earth, to destroy from under heaven all flesh in which is the breath of life; everything that is on the earth shall die.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> But I will establish my covenant with you; and you shall come into the ark, you, your sons, your wife, and your sons' wives with you.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> And of every living thing, of all flesh, you shall bring two of every kind into the ark, to keep them alive with you; they shall be male and female.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Of the birds according to their kinds, and of the animals according to their kinds, of every creeping thing of the ground according to its kind, two of every kind shall come in to you, to keep them alive.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Also take with you every kind of food that is eaten, and store it up; and it shall serve as food for you and for them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Noah did this; he did all that God commanded him.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"7\">\r\n\t\t\t<VERS vnumber=\"1\"> Then the LORD said to Noah, \"Go into the ark, you and all your household, for I have seen that you alone are righteous before me in this generation.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Take with you seven pairs of all clean animals, the male and its mate; and a pair of the animals that are not clean, the male and its mate;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> and seven pairs of the birds of the air also, male and female, to keep their kind alive on the face of all the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For in seven days I will send rain on the earth for forty days and forty nights; and every living thing that I have made I will blot out from the face of the ground.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> And Noah did all that the LORD had commanded him.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Noah was six hundred years old when the flood of waters came on the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> And Noah with his sons and his wife and his sons' wives went into the ark to escape the waters of the flood.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Of clean animals, and of animals that are not clean, and of birds, and of everything that creeps on the ground,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> two and two, male and female, went into the ark with Noah, as God had commanded Noah.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And after seven days the waters of the flood came on the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> In the six hundredth year of Noah's life, in the second month, on the seventeenth day of the month, on that day all the fountains of the great deep burst forth, and the windows of the heavens were opened.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The rain fell on the earth forty days and forty nights.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> On the very same day Noah with his sons, Shem and Ham and Japheth, and Noah's wife and the three wives of his sons entered the ark,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> they and every wild animal of every kind, and all domestic animals of every kind, and every creeping thing that creeps on the earth, and every bird of every kind-- every bird, every winged creature.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> They went into the ark with Noah, two and two of all flesh in which there was the breath of life.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> And those that entered, male and female of all flesh, went in as God had commanded him; and the LORD shut him in.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The flood continued forty days on the earth; and the waters increased, and bore up the ark, and it rose high above the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The waters swelled and increased greatly on the earth; and the ark floated on the face of the waters.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The waters swelled so mightily on the earth that all the high mountains under the whole heaven were covered;</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> the waters swelled above the mountains, covering them fifteen cubits deep.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> And all flesh died that moved on the earth, birds, domestic animals, wild animals, all swarming creatures that swarm on the earth, and all human beings;</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> everything on dry land in whose nostrils was the breath of life died.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> He blotted out every living thing that was on the face of the ground, human beings and animals and creeping things and birds of the air; they were blotted out from the earth. Only Noah was left, and those that were with him in the ark.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> And the waters swelled on the earth for one hundred fifty days.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"8\">\r\n\t\t\t<VERS vnumber=\"1\"> But God remembered Noah and all the wild animals and all the domestic animals that were with him in the ark. And God made a wind blow over the earth, and the waters subsided;</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> the fountains of the deep and the windows of the heavens were closed, the rain from the heavens was restrained,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> and the waters gradually receded from the earth. At the end of one hundred fifty days the waters had abated;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> and in the seventh month, on the seventeenth day of the month, the ark came to rest on the mountains of Ararat.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The waters continued to abate until the tenth month; in the tenth month, on the first day of the month, the tops of the mountains appeared.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> At the end of forty days Noah opened the window of the ark that he had made</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> and sent out the raven; and it went to and fro until the waters were dried up from the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then he sent out the dove from him, to see if the waters had subsided from the face of the ground;</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> but the dove found no place to set its foot, and it returned to him to the ark, for the waters were still on the face of the whole earth. So he put out his hand and took it and brought it into the ark with him.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> He waited another seven days, and again he sent out the dove from the ark;</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> and the dove came back to him in the evening, and there in its beak was a freshly plucked olive leaf; so Noah knew that the waters had subsided from the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then he waited another seven days, and sent out the dove; and it did not return to him any more.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> In the six hundred first year, in the first month, the first day of the month, the waters were dried up from the earth; and Noah removed the covering of the ark, and looked, and saw that the face of the ground was drying.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> In the second month, on the twenty-seventh day of the month, the earth was dry.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Then God said to Noah,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> \"Go out of the ark, you and your wife, and your sons and your sons' wives with you.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Bring out with you every living thing that is with you of all flesh-- birds and animals and every creeping thing that creeps on the earth-- so that they may abound on the earth, and be fruitful and multiply on the earth.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> So Noah went out with his sons and his wife and his sons' wives.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> And every animal, every creeping thing, and every bird, everything that moves on the earth, went out of the ark by families.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Then Noah built an altar to the LORD, and took of every clean animal and of every clean bird, and offered burnt offerings on the altar.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> And when the LORD smelled the pleasing odor, the LORD said in his heart, \"I will never again curse the ground because of humankind, for the inclination of the human heart is evil from youth; nor will I ever again destroy every living creature as I have done.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> As long as the earth endures, seedtime and harvest, cold and heat, summer and winter, day and night, shall not cease.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"9\">\r\n\t\t\t<VERS vnumber=\"1\"> God blessed Noah and his sons, and said to them, \"Be fruitful and multiply, and fill the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The fear and dread of you shall rest on every animal of the earth, and on every bird of the air, on everything that creeps on the ground, and on all the fish of the sea; into your hand they are delivered.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Every moving thing that lives shall be food for you; and just as I gave you the green plants, I give you everything.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Only, you shall not eat flesh with its life, that is, its blood.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> For your own lifeblood I will surely require a reckoning: from every animal I will require it and from human beings, each one for the blood of another, I will require a reckoning for human life.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Whoever sheds the blood of a human, by a human shall that person's blood be shed; for in his own image God made humankind.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> And you, be fruitful and multiply, abound on the earth and multiply in it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then God said to Noah and to his sons with him,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> \"As for me, I am establishing my covenant with you and your descendants after you,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> and with every living creature that is with you, the birds, the domestic animals, and every animal of the earth with you, as many as came out of the ark. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> I establish my covenant with you, that never again shall all flesh be cut off by the waters of a flood, and never again shall there be a flood to destroy the earth.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> God said, \"This is the sign of the covenant that I make between me and you and every living creature that is with you, for all future generations:</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> I have set my bow in the clouds, and it shall be a sign of the covenant between me and the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> When I bring clouds over the earth and the bow is seen in the clouds,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> I will remember my covenant that is between me and you and every living creature of all flesh; and the waters shall never again become a flood to destroy all flesh.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> When the bow is in the clouds, I will see it and remember the everlasting covenant between God and every living creature of all flesh that is on the earth.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> God said to Noah, \"This is the sign of the covenant that I have established between me and all flesh that is on the earth.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The sons of Noah who went out of the ark were Shem, Ham, and Japheth. Ham was the father of Canaan.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> These three were the sons of Noah; and from these the whole earth was peopled.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Noah, a man of the soil, was the first to plant a vineyard.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> He drank some of the wine and became drunk, and he lay uncovered in his tent.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> And Ham, the father of Canaan, saw the nakedness of his father, and told his two brothers outside.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Then Shem and Japheth took a garment, laid it on both their shoulders, and walked backward and covered the nakedness of their father; their faces were turned away, and they did not see their father's nakedness.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> When Noah awoke from his wine and knew what his youngest son had done to him,</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> he said, \"Cursed be Canaan; lowest of slaves shall he be to his brothers.\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> He also said, \"Blessed by the LORD my God be Shem; and let Canaan be his slave.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> May God make space for Japheth, and let him live in the tents of Shem; and let Canaan be his slave.\" </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> After the flood Noah lived three hundred fifty years.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> All the days of Noah were nine hundred fifty years; and he died.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"10\">\r\n\t\t\t<VERS vnumber=\"1\"> These are the descendants of Noah's sons, Shem, Ham, and Japheth; children were born to them after the flood.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The descendants of Japheth: Gomer, Magog, Madai, Javan, Tubal, Meshech, and Tiras.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The descendants of Gomer: Ashkenaz, Riphath, and Togarmah.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The descendants of Javan: Elishah, Tarshish, Kittim, and Rodanim. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> From these the coastland peoples spread. These are the descendants of Japheth in their lands, with their own language, by their families, in their nations. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The descendants of Ham: Cush, Egypt, Put, and Canaan.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The descendants of Cush: Seba, Havilah, Sabtah, Raamah, and Sabteca. The descendants of Raamah: Sheba and Dedan.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Cush became the father of Nimrod; he was the first on earth to become a mighty warrior.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> He was a mighty hunter before the LORD; therefore it is said, \"Like Nimrod a mighty hunter before the LORD.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The beginning of his kingdom was Babel, Erech, and Accad, all of them in the land of Shinar.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> From that land he went into Assyria, and built Nineveh, Rehoboth-ir, Calah, and</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Resen between Nineveh and Calah; that is the great city.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Egypt became the father of Ludim, Anamim, Lehabim, Naphtuhim,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Pathrusim, Casluhim, and Caphtorim, from which the Philistines come. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Canaan became the father of Sidon his firstborn, and Heth,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> and the Jebusites, the Amorites, the Girgashites,</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> the Hivites, the Arkites, the Sinites,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> the Arvadites, the Zemarites, and the Hamathites. Afterward the families of the Canaanites spread abroad.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> And the territory of the Canaanites extended from Sidon, in the direction of Gerar, as far as Gaza, and in the direction of Sodom, Gomorrah, Admah, and Zeboiim, as far as Lasha.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> These are the descendants of Ham, by their families, their languages, their lands, and their nations.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> To Shem also, the father of all the children of Eber, the elder brother of Japheth, children were born.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The descendants of Shem: Elam, Asshur, Arpachshad, Lud, and Aram.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> The descendants of Aram: Uz, Hul, Gether, and Mash.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Arpachshad became the father of Shelah; and Shelah became the father of Eber.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> To Eber were born two sons: the name of the one was Peleg, for in his days the earth was divided, and his brother's name was Joktan. </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Joktan became the father of Almodad, Sheleph, Hazarmaveth, Jerah,</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Hadoram, Uzal, Diklah,</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Obal, Abimael, Sheba,</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Ophir, Havilah, and Jobab; all these were the descendants of Joktan.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> The territory in which they lived extended from Mesha in the direction of Sephar, the hill country of the east.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> These are the descendants of Shem, by their families, their languages, their lands, and their nations.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> These are the families of Noah's sons, according to their genealogies, in their nations; and from these the nations spread abroad on the earth after the flood.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"11\">\r\n\t\t\t<VERS vnumber=\"1\"> Now the whole earth had one language and the same words.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And as they migrated from the east, they came upon a plain in the land of Shinar and settled there. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And they said to one another, \"Come, let us make bricks, and burn them thoroughly.\" And they had brick for stone, and bitumen for mortar.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then they said, \"Come, let us build ourselves a city, and a tower with its top in the heavens, and let us make a name for ourselves; otherwise we shall be scattered abroad upon the face of the whole earth.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The LORD came down to see the city and the tower, which mortals had built.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And the LORD said, \"Look, they are one people, and they have all one language; and this is only the beginning of what they will do; nothing that they propose to do will now be impossible for them.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Come, let us go down, and confuse their language there, so that they will not understand one another's speech.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> So the LORD scattered them abroad from there over the face of all the earth, and they left off building the city.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Therefore it was called Babel, because there the LORD confused the language of all the earth; and from there the LORD scattered them abroad over the face of all the earth. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> These are the descendants of Shem. When Shem was one hundred years old, he became the father of Arpachshad two years after the flood;</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> and Shem lived after the birth of Arpachshad five hundred years, and had other sons and daughters.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> When Arpachshad had lived thirty-five years, he became the father of Shelah;</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> and Arpachshad lived after the birth of Shelah four hundred three years, and had other sons and daughters.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> When Shelah had lived thirty years, he became the father of Eber;</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> and Shelah lived after the birth of Eber four hundred three years, and had other sons and daughters.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> When Eber had lived thirty-four years, he became the father of Peleg;</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> and Eber lived after the birth of Peleg four hundred thirty years, and had other sons and daughters.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> When Peleg had lived thirty years, he became the father of Reu;</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> and Peleg lived after the birth of Reu two hundred nine years, and had other sons and daughters.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> When Reu had lived thirty-two years, he became the father of Serug;</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> and Reu lived after the birth of Serug two hundred seven years, and had other sons and daughters.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> When Serug had lived thirty years, he became the father of Nahor;</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> and Serug lived after the birth of Nahor two hundred years, and had other sons and daughters.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> When Nahor had lived twenty-nine years, he became the father of Terah;</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> and Nahor lived after the birth of Terah one hundred nineteen years, and had other sons and daughters.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> When Terah had lived seventy years, he became the father of Abram, Nahor, and Haran.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Now these are the descendants of Terah. Terah was the father of Abram, Nahor, and Haran; and Haran was the father of Lot.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Haran died before his father Terah in the land of his birth, in Ur of the Chaldeans.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Abram and Nahor took wives; the name of Abram's wife was Sarai, and the name of Nahor's wife was Milcah. She was the daughter of Haran the father of Milcah and Iscah.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Now Sarai was barren; she had no child.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Terah took his son Abram and his grandson Lot son of Haran, and his daughter-in-law Sarai, his son Abram's wife, and they went out together from Ur of the Chaldeans to go into the land of Canaan; but when they came to Haran, they settled there.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> The days of Terah were two hundred five years; and Terah died in Haran.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"12\">\r\n\t\t\t<VERS vnumber=\"1\"> Now the LORD said to Abram, \"Go from your country and your kindred and your father's house to the land that I will show you.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> I will make of you a great nation, and I will bless you, and make your name great, so that you will be a blessing.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> I will bless those who bless you, and the one who curses you I will curse; and in you all the families of the earth shall be blessed.\" </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> So Abram went, as the LORD had told him; and Lot went with him. Abram was seventy-five years old when he departed from Haran.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Abram took his wife Sarai and his brother's son Lot, and all the possessions that they had gathered, and the persons whom they had acquired in Haran; and they set forth to go to the land of Canaan. When they had come to the land of Canaan,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Abram passed through the land to the place at Shechem, to the oak of Moreh. At that time the Canaanites were in the land. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then the LORD appeared to Abram, and said, \"To your offspring I will give this land.\" So he built there an altar to the LORD, who had appeared to him. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> From there he moved on to the hill country on the east of Bethel, and pitched his tent, with Bethel on the west and Ai on the east; and there he built an altar to the LORD and invoked the name of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> And Abram journeyed on by stages toward the Negeb.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Now there was a famine in the land. So Abram went down to Egypt to reside there as an alien, for the famine was severe in the land.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> When he was about to enter Egypt, he said to his wife Sarai, \"I know well that you are a woman beautiful in appearance;</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> and when the Egyptians see you, they will say, 'This is his wife'; then they will kill me, but they will let you live.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Say you are my sister, so that it may go well with me because of you, and that my life may be spared on your account.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> When Abram entered Egypt the Egyptians saw that the woman was very beautiful.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> When the officials of Pharaoh saw her, they praised her to Pharaoh. And the woman was taken into Pharaoh's house.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> And for her sake he dealt well with Abram; and he had sheep, oxen, male donkeys, male and female slaves, female donkeys, and camels.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> But the LORD afflicted Pharaoh and his house with great plagues because of Sarai, Abram's wife.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> So Pharaoh called Abram, and said, \"What is this you have done to me? Why did you not tell me that she was your wife?</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Why did you say, 'She is my sister,' so that I took her for my wife? Now then, here is your wife, take her, and be gone.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> And Pharaoh gave his men orders concerning him; and they set him on the way, with his wife and all that he had.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"13\">\r\n\t\t\t<VERS vnumber=\"1\"> So Abram went up from Egypt, he and his wife, and all that he had, and Lot with him, into the Negeb.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Now Abram was very rich in livestock, in silver, and in gold.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> He journeyed on by stages from the Negeb as far as Bethel, to the place where his tent had been at the beginning, between Bethel and Ai,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> to the place where he had made an altar at the first; and there Abram called on the name of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Now Lot, who went with Abram, also had flocks and herds and tents,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> so that the land could not support both of them living together; for their possessions were so great that they could not live together,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> and there was strife between the herders of Abram's livestock and the herders of Lot's livestock. At that time the Canaanites and the Perizzites lived in the land.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then Abram said to Lot, \"Let there be no strife between you and me, and between your herders and my herders; for we are kindred.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Is not the whole land before you? Separate yourself from me. If you take the left hand, then I will go to the right; or if you take the right hand, then I will go to the left.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Lot looked about him, and saw that the plain of the Jordan was well watered everywhere like the garden of the LORD, like the land of Egypt, in the direction of Zoar; this was before the LORD had destroyed Sodom and Gomorrah.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> So Lot chose for himself all the plain of the Jordan, and Lot journeyed eastward; thus they separated from each other.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Abram settled in the land of Canaan, while Lot settled among the cities of the Plain and moved his tent as far as Sodom.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Now the people of Sodom were wicked, great sinners against the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The LORD said to Abram, after Lot had separated from him, \"Raise your eyes now, and look from the place where you are, northward and southward and eastward and westward;</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> for all the land that you see I will give to you and to your offspring forever. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> I will make your offspring like the dust of the earth; so that if one can count the dust of the earth, your offspring also can be counted.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Rise up, walk through the length and the breadth of the land, for I will give it to you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> So Abram moved his tent, and came and settled by the oaks of Mamre, which are at Hebron; and there he built an altar to the LORD. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"14\">\r\n\t\t\t<VERS vnumber=\"1\"> In the days of King Amraphel of Shinar, King Arioch of Ellasar, King Chedorlaomer of Elam, and King Tidal of Goiim,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> these kings made war with King Bera of Sodom, King Birsha of Gomorrah, King Shinab of Admah, King Shemeber of Zeboiim, and the king of Bela (that is, Zoar).</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> All these joined forces in the Valley of Siddim (that is, the Dead Sea). </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Twelve years they had served Chedorlaomer, but in the thirteenth year they rebelled.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> In the fourteenth year Chedorlaomer and the kings who were with him came and subdued the Rephaim in Ashteroth-karnaim, the Zuzim in Ham, the Emim in Shaveh-kiriathaim,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> and the Horites in the hill country of Seir as far as El-paran on the edge of the wilderness;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> then they turned back and came to En-mishpat (that is, Kadesh), and subdued all the country of the Amalekites, and also the Amorites who lived in Hazazon-tamar.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then the king of Sodom, the king of Gomorrah, the king of Admah, the king of Zeboiim, and the king of Bela (that is, Zoar) went out, and they joined battle in the Valley of Siddim</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> with King Chedorlaomer of Elam, King Tidal of Goiim, King Amraphel of Shinar, and King Arioch of Ellasar, four kings against five.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Now the Valley of Siddim was full of bitumen pits; and as the kings of Sodom and Gomorrah fled, some fell into them, and the rest fled to the hill country.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> So the enemy took all the goods of Sodom and Gomorrah, and all their provisions, and went their way;</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> they also took Lot, the son of Abram's brother, who lived in Sodom, and his goods, and departed.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then one who had escaped came and told Abram the Hebrew, who was living by the oaks of Mamre the Amorite, brother of Eshcol and of Aner; these were allies of Abram. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> When Abram heard that his nephew had been taken captive, he led forth his trained men, born in his house, three hundred eighteen of them, and went in pursuit as far as Dan.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> He divided his forces against them by night, he and his servants, and routed them and pursued them to Hobah, north of Damascus.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then he brought back all the goods, and also brought back his nephew Lot with his goods, and the women and the people.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> After his return from the defeat of Chedorlaomer and the kings who were with him, the king of Sodom went out to meet him at the Valley of Shaveh (that is, the King's Valley).</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> And King Melchizedek of Salem brought out bread and wine; he was priest of God Most High. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> He blessed him and said, \"Blessed be Abram by God Most High, maker of heaven and earth; </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> and blessed be God Most High, who has delivered your enemies into your hand!\" And Abram gave him one tenth of everything. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then the king of Sodom said to Abram, \"Give me the persons, but take the goods for yourself.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> But Abram said to the king of Sodom, \"I have sworn to the LORD, God Most High, maker of heaven and earth, </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> that I would not take a thread or a sandal-thong or anything that is yours, so that you might not say, 'I have made Abram rich.'</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> I will take nothing but what the young men have eaten, and the share of the men who went with me-- Aner, Eshcol, and Mamre. Let them take their share.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"15\">\r\n\t\t\t<VERS vnumber=\"1\"> After these things the word of the LORD came to Abram in a vision, \"Do not be afraid, Abram, I am your shield; your reward shall be very great.\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> But Abram said, \"O Lord GOD, what will you give me, for I continue childless, and the heir of my house is Eliezer of Damascus?\" </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And Abram said, \"You have given me no offspring, and so a slave born in my house is to be my heir.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But the word of the LORD came to him, \"This man shall not be your heir; no one but your very own issue shall be your heir.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> He brought him outside and said, \"Look toward heaven and count the stars, if you are able to count them.\" Then he said to him, \"So shall your descendants be.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And he believed the LORD; and the LORD reckoned it to him as righteousness.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then he said to him, \"I am the LORD who brought you from Ur of the Chaldeans, to give you this land to possess.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But he said, \"O Lord GOD, how am I to know that I shall possess it?\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> He said to him, \"Bring me a heifer three years old, a female goat three years old, a ram three years old, a turtledove, and a young pigeon.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> He brought him all these and cut them in two, laying each half over against the other; but he did not cut the birds in two.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> And when birds of prey came down on the carcasses, Abram drove them away.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> As the sun was going down, a deep sleep fell upon Abram, and a deep and terrifying darkness descended upon him.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then the LORD said to Abram, \"Know this for certain, that your offspring shall be aliens in a land that is not theirs, and shall be slaves there, and they shall be oppressed for four hundred years;</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> but I will bring judgment on the nation that they serve, and afterward they shall come out with great possessions.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> As for yourself, you shall go to your ancestors in peace; you shall be buried in a good old age.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> And they shall come back here in the fourth generation; for the iniquity of the Amorites is not yet complete.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> When the sun had gone down and it was dark, a smoking fire pot and a flaming torch passed between these pieces.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> On that day the LORD made a covenant with Abram, saying, \"To your descendants I give this land, from the river of Egypt to the great river, the river Euphrates,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> the land of the Kenites, the Kenizzites, the Kadmonites,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> the Hittites, the Perizzites, the Rephaim,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> the Amorites, the Canaanites, the Girgashites, and the Jebusites.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"16\">\r\n\t\t\t<VERS vnumber=\"1\"> Now Sarai, Abram's wife, bore him no children. She had an Egyptian slave-girl whose name was Hagar,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> and Sarai said to Abram, \"You see that the LORD has prevented me from bearing children; go in to my slave-girl; it may be that I shall obtain children by her.\" And Abram listened to the voice of Sarai.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> So, after Abram had lived ten years in the land of Canaan, Sarai, Abram's wife, took Hagar the Egyptian, her slave-girl, and gave her to her husband Abram as a wife.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> He went in to Hagar, and she conceived; and when she saw that she had conceived, she looked with contempt on her mistress.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then Sarai said to Abram, \"May the wrong done to me be on you! I gave my slave-girl to your embrace, and when she saw that she had conceived, she looked on me with contempt. May the LORD judge between you and me!\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> But Abram said to Sarai, \"Your slave-girl is in your power; do to her as you please.\" Then Sarai dealt harshly with her, and she ran away from her.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The angel of the LORD found her by a spring of water in the wilderness, the spring on the way to Shur.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And he said, \"Hagar, slave-girl of Sarai, where have you come from and where are you going?\" She said, \"I am running away from my mistress Sarai.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The angel of the LORD said to her, \"Return to your mistress, and submit to her.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The angel of the LORD also said to her, \"I will so greatly multiply your offspring that they cannot be counted for multitude.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> And the angel of the LORD said to her, \"Now you have conceived and shall bear a son; you shall call him Ishmael, for the LORD has given heed to your affliction. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> He shall be a wild ass of a man, with his hand against everyone, and everyone's hand against him; and he shall live at odds with all his kin.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> So she named the LORD who spoke to her, \"You are El-roi\"; for she said, \"Have I really seen God and remained alive after seeing him?\" </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Therefore the well was called Beer-lahai-roi; it lies between Kadesh and Bered. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Hagar bore Abram a son; and Abram named his son, whom Hagar bore, Ishmael.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Abram was eighty-six years old when Hagar bore him Ishmael. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"17\">\r\n\t\t\t<VERS vnumber=\"1\"> When Abram was ninety-nine years old, the LORD appeared to Abram, and said to him, \"I am God Almighty; walk before me, and be blameless. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And I will make my covenant between me and you, and will make you exceedingly numerous.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then Abram fell on his face; and God said to him,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> \"As for me, this is my covenant with you: You shall be the ancestor of a multitude of nations.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> No longer shall your name be Abram, but your name shall be Abraham; for I have made you the ancestor of a multitude of nations. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> I will make you exceedingly fruitful; and I will make nations of you, and kings shall come from you.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> I will establish my covenant between me and you, and your offspring after you throughout their generations, for an everlasting covenant, to be God to you and to your offspring after you. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And I will give to you, and to your offspring after you, the land where you are now an alien, all the land of Canaan, for a perpetual holding; and I will be their God.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> God said to Abraham, \"As for you, you shall keep my covenant, you and your offspring after you throughout their generations.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> This is my covenant, which you shall keep, between me and you and your offspring after you: Every male among you shall be circumcised.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> You shall circumcise the flesh of your foreskins, and it shall be a sign of the covenant between me and you.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Throughout your generations every male among you shall be circumcised when he is eight days old, including the slave born in your house and the one bought with your money from any foreigner who is not of your offspring.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Both the slave born in your house and the one bought with your money must be circumcised. So shall my covenant be in your flesh an everlasting covenant.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Any uncircumcised male who is not circumcised in the flesh of his foreskin shall be cut off from his people; he has broken my covenant.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> God said to Abraham, \"As for Sarai your wife, you shall not call her Sarai, but Sarah shall be her name.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> I will bless her, and moreover I will give you a son by her. I will bless her, and she shall give rise to nations; kings of peoples shall come from her.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then Abraham fell on his face and laughed, and said to himself, \"Can a child be born to a man who is a hundred years old? Can Sarah, who is ninety years old, bear a child?\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> And Abraham said to God, \"O that Ishmael might live in your sight!\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> God said, \"No, but your wife Sarah shall bear you a son, and you shall name him Isaac. I will establish my covenant with him as an everlasting covenant for his offspring after him. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> As for Ishmael, I have heard you; I will bless him and make him fruitful and exceedingly numerous; he shall be the father of twelve princes, and I will make him a great nation.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> But my covenant I will establish with Isaac, whom Sarah shall bear to you at this season next year.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> And when he had finished talking with him, God went up from Abraham.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Then Abraham took his son Ishmael and all the slaves born in his house or bought with his money, every male among the men of Abraham's house, and he circumcised the flesh of their foreskins that very day, as God had said to him.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Abraham was ninety-nine years old when he was circumcised in the flesh of his foreskin.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> And his son Ishmael was thirteen years old when he was circumcised in the flesh of his foreskin.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> That very day Abraham and his son Ishmael were circumcised;</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> and all the men of his house, slaves born in the house and those bought with money from a foreigner, were circumcised with him.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"18\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD appeared to Abraham by the oaks of Mamre, as he sat at the entrance of his tent in the heat of the day. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He looked up and saw three men standing near him. When he saw them, he ran from the tent entrance to meet them, and bowed down to the ground.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> He said, \"My lord, if I find favor with you, do not pass by your servant.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Let a little water be brought, and wash your feet, and rest yourselves under the tree.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Let me bring a little bread, that you may refresh yourselves, and after that you may pass on-- since you have come to your servant.\" So they said, \"Do as you have said.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And Abraham hastened into the tent to Sarah, and said, \"Make ready quickly three measures of choice flour, knead it, and make cakes.\" </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Abraham ran to the herd, and took a calf, tender and good, and gave it to the servant, who hastened to prepare it.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then he took curds and milk and the calf that he had prepared, and set it before them; and he stood by them under the tree while they ate.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> They said to him, \"Where is your wife Sarah?\" And he said, \"There, in the tent.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then one said, \"I will surely return to you in due season, and your wife Sarah shall have a son.\" And Sarah was listening at the tent entrance behind him.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Now Abraham and Sarah were old, advanced in age; it had ceased to be with Sarah after the manner of women.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> So Sarah laughed to herself, saying, \"After I have grown old, and my husband is old, shall I have pleasure?\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The LORD said to Abraham, \"Why did Sarah laugh, and say, 'Shall I indeed bear a child, now that I am old?'</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Is anything too wonderful for the LORD? At the set time I will return to you, in due season, and Sarah shall have a son.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> But Sarah denied, saying, \"I did not laugh\"; for she was afraid. He said, \"Oh yes, you did laugh.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then the men set out from there, and they looked toward Sodom; and Abraham went with them to set them on their way.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The LORD said, \"Shall I hide from Abraham what I am about to do,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> seeing that Abraham shall become a great and mighty nation, and all the nations of the earth shall be blessed in him?</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> No, for I have chosen him, that he may charge his children and his household after him to keep the way of the LORD by doing righteousness and justice; so that the LORD may bring about for Abraham what he has promised him.\" </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Then the LORD said, \"How great is the outcry against Sodom and Gomorrah and how very grave their sin!</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> I must go down and see whether they have done altogether according to the outcry that has come to me; and if not, I will know.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> So the men turned from there, and went toward Sodom, while Abraham remained standing before the LORD. </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Then Abraham came near and said, \"Will you indeed sweep away the righteous with the wicked?</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Suppose there are fifty righteous within the city; will you then sweep away the place and not forgive it for the fifty righteous who are in it?</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Far be it from you to do such a thing, to slay the righteous with the wicked, so that the righteous fare as the wicked! Far be that from you! Shall not the Judge of all the earth do what is just?\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> And the LORD said, \"If I find at Sodom fifty righteous in the city, I will forgive the whole place for their sake.\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Abraham answered, \"Let me take it upon myself to speak to the Lord, I who am but dust and ashes.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Suppose five of the fifty righteous are lacking? Will you destroy the whole city for lack of five?\" And he said, \"I will not destroy it if I find forty-five there.\"</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Again he spoke to him, \"Suppose forty are found there.\" He answered, \"For the sake of forty I will not do it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Then he said, \"Oh do not let the Lord be angry if I speak. Suppose thirty are found there.\" He answered, \"I will not do it, if I find thirty there.\"</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> He said, \"Let me take it upon myself to speak to the Lord. Suppose twenty are found there.\" He answered, \"For the sake of twenty I will not destroy it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Then he said, \"Oh do not let the Lord be angry if I speak just once more. Suppose ten are found there.\" He answered, \"For the sake of ten I will not destroy it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> And the LORD went his way, when he had finished speaking to Abraham; and Abraham returned to his place.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"19\">\r\n\t\t\t<VERS vnumber=\"1\"> The two angels came to Sodom in the evening, and Lot was sitting in the gateway of Sodom. When Lot saw them, he rose to meet them, and bowed down with his face to the ground.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He said, \"Please, my lords, turn aside to your servant's house and spend the night, and wash your feet; then you can rise early and go on your way.\" They said, \"No; we will spend the night in the square.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> But he urged them strongly; so they turned aside to him and entered his house; and he made them a feast, and baked unleavened bread, and they ate.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But before they lay down, the men of the city, the men of Sodom, both young and old, all the people to the last man, surrounded the house;</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> and they called to Lot, \"Where are the men who came to you tonight? Bring them out to us, so that we may know them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Lot went out of the door to the men, shut the door after him,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> and said, \"I beg you, my brothers, do not act so wickedly.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Look, I have two daughters who have not known a man; let me bring them out to you, and do to them as you please; only do nothing to these men, for they have come under the shelter of my roof.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> But they replied, \"Stand back!\" And they said, \"This fellow came here as an alien, and he would play the judge! Now we will deal worse with you than with them.\" Then they pressed hard against the man Lot, and came near the door to break it down.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> But the men inside reached out their hands and brought Lot into the house with them, and shut the door.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> And they struck with blindness the men who were at the door of the house, both small and great, so that they were unable to find the door.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then the men said to Lot, \"Have you anyone else here? Sons-in-law, sons, daughters, or anyone you have in the city-- bring them out of the place.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> For we are about to destroy this place, because the outcry against its people has become great before the LORD, and the LORD has sent us to destroy it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> So Lot went out and said to his sons-in-law, who were to marry his daughters, \"Up, get out of this place; for the LORD is about to destroy the city.\" But he seemed to his sons-in-law to be jesting.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> When morning dawned, the angels urged Lot, saying, \"Get up, take your wife and your two daughters who are here, or else you will be consumed in the punishment of the city.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> But he lingered; so the men seized him and his wife and his two daughters by the hand, the LORD being merciful to him, and they brought him out and left him outside the city.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> When they had brought them outside, they said, \"Flee for your life; do not look back or stop anywhere in the Plain; flee to the hills, or else you will be consumed.\" </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> And Lot said to them, \"Oh, no, my lords;</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> your servant has found favor with you, and you have shown me great kindness in saving my life; but I cannot flee to the hills, for fear the disaster will overtake me and I die.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Look, that city is near enough to flee to, and it is a little one. Let me escape there-- is it not a little one?-- and my life will be saved!\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> He said to him, \"Very well, I grant you this favor too, and will not overthrow the city of which you have spoken.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Hurry, escape there, for I can do nothing until you arrive there.\" Therefore the city was called Zoar. </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> The sun had risen on the earth when Lot came to Zoar.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Then the LORD rained on Sodom and Gomorrah sulfur and fire from the LORD out of heaven;</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> and he overthrew those cities, and all the Plain, and all the inhabitants of the cities, and what grew on the ground.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> But Lot's wife, behind him, looked back, and she became a pillar of salt.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Abraham went early in the morning to the place where he had stood before the LORD;</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> and he looked down toward Sodom and Gomorrah and toward all the land of the Plain and saw the smoke of the land going up like the smoke of a furnace.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> So it was that, when God destroyed the cities of the Plain, God remembered Abraham, and sent Lot out of the midst of the overthrow, when he overthrew the cities in which Lot had settled.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Now Lot went up out of Zoar and settled in the hills with his two daughters, for he was afraid to stay in Zoar; so he lived in a cave with his two daughters.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> And the firstborn said to the younger, \"Our father is old, and there is not a man on earth to come in to us after the manner of all the world.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Come, let us make our father drink wine, and we will lie with him, so that we may preserve offspring through our father.\"</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> So they made their father drink wine that night; and the firstborn went in, and lay with her father; he did not know when she lay down or when she rose.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> On the next day, the firstborn said to the younger, \"Look, I lay last night with my father; let us make him drink wine tonight also; then you go in and lie with him, so that we may preserve offspring through our father.\"</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> So they made their father drink wine that night also; and the younger rose, and lay with him; and he did not know when she lay down or when she rose.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Thus both the daughters of Lot became pregnant by their father.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> The firstborn bore a son, and named him Moab; he is the ancestor of the Moabites to this day.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> The younger also bore a son and named him Ben-ammi; he is the ancestor of the Ammonites to this day.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"20\">\r\n\t\t\t<VERS vnumber=\"1\"> From there Abraham journeyed toward the region of the Negeb, and settled between Kadesh and Shur. While residing in Gerar as an alien,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Abraham said of his wife Sarah, \"She is my sister.\" And King Abimelech of Gerar sent and took Sarah.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> But God came to Abimelech in a dream by night, and said to him, \"You are about to die because of the woman whom you have taken; for she is a married woman.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Now Abimelech had not approached her; so he said, \"Lord, will you destroy an innocent people?</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Did he not himself say to me, 'She is my sister'? And she herself said, 'He is my brother.' I did this in the integrity of my heart and the innocence of my hands.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then God said to him in the dream, \"Yes, I know that you did this in the integrity of your heart; furthermore it was I who kept you from sinning against me. Therefore I did not let you touch her.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Now then, return the man's wife; for he is a prophet, and he will pray for you and you shall live. But if you do not restore her, know that you shall surely die, you and all that are yours.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> So Abimelech rose early in the morning, and called all his servants and told them all these things; and the men were very much afraid.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then Abimelech called Abraham, and said to him, \"What have you done to us? How have I sinned against you, that you have brought such great guilt on me and my kingdom? You have done things to me that ought not to be done.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And Abimelech said to Abraham, \"What were you thinking of, that you did this thing?\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Abraham said, \"I did it because I thought, There is no fear of God at all in this place, and they will kill me because of my wife.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Besides, she is indeed my sister, the daughter of my father but not the daughter of my mother; and she became my wife.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And when God caused me to wander from my father's house, I said to her, 'This is the kindness you must do me: at every place to which we come, say of me, He is my brother.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then Abimelech took sheep and oxen, and male and female slaves, and gave them to Abraham, and restored his wife Sarah to him.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Abimelech said, \"My land is before you; settle where it pleases you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> To Sarah he said, \"Look, I have given your brother a thousand pieces of silver; it is your exoneration before all who are with you; you are completely vindicated.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then Abraham prayed to God; and God healed Abimelech, and also healed his wife and female slaves so that they bore children.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> For the LORD had closed fast all the wombs of the house of Abimelech because of Sarah, Abraham's wife.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"21\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD dealt with Sarah as he had said, and the LORD did for Sarah as he had promised.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Sarah conceived and bore Abraham a son in his old age, at the time of which God had spoken to him.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Abraham gave the name Isaac to his son whom Sarah bore him.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> And Abraham circumcised his son Isaac when he was eight days old, as God had commanded him.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Abraham was a hundred years old when his son Isaac was born to him.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Now Sarah said, \"God has brought laughter for me; everyone who hears will laugh with me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> And she said, \"Who would ever have said to Abraham that Sarah would nurse children? Yet I have borne him a son in his old age.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The child grew, and was weaned; and Abraham made a great feast on the day that Isaac was weaned.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> But Sarah saw the son of Hagar the Egyptian, whom she had borne to Abraham, playing with her son Isaac. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> So she said to Abraham, \"Cast out this slave woman with her son; for the son of this slave woman shall not inherit along with my son Isaac.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The matter was very distressing to Abraham on account of his son.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> But God said to Abraham, \"Do not be distressed because of the boy and because of your slave woman; whatever Sarah says to you, do as she tells you, for it is through Isaac that offspring shall be named for you.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> As for the son of the slave woman, I will make a nation of him also, because he is your offspring.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> So Abraham rose early in the morning, and took bread and a skin of water, and gave it to Hagar, putting it on her shoulder, along with the child, and sent her away. And she departed, and wandered about in the wilderness of Beer-sheba.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> When the water in the skin was gone, she cast the child under one of the bushes.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then she went and sat down opposite him a good way off, about the distance of a bowshot; for she said, \"Do not let me look on the death of the child.\" And as she sat opposite him, she lifted up her voice and wept.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> And God heard the voice of the boy; and the angel of God called to Hagar from heaven, and said to her, \"What troubles you, Hagar? Do not be afraid; for God has heard the voice of the boy where he is.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Come, lift up the boy and hold him fast with your hand, for I will make a great nation of him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Then God opened her eyes and she saw a well of water. She went, and filled the skin with water, and gave the boy a drink.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> God was with the boy, and he grew up; he lived in the wilderness, and became an expert with the bow.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> He lived in the wilderness of Paran; and his mother got a wife for him from the land of Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> At that time Abimelech, with Phicol the commander of his army, said to Abraham, \"God is with you in all that you do;</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> now therefore swear to me here by God that you will not deal falsely with me or with my offspring or with my posterity, but as I have dealt loyally with you, you will deal with me and with the land where you have resided as an alien.\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> And Abraham said, \"I swear it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> When Abraham complained to Abimelech about a well of water that Abimelech's servants had seized,</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Abimelech said, \"I do not know who has done this; you did not tell me, and I have not heard of it until today.\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> So Abraham took sheep and oxen and gave them to Abimelech, and the two men made a covenant.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Abraham set apart seven ewe lambs of the flock.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> And Abimelech said to Abraham, \"What is the meaning of these seven ewe lambs that you have set apart?\"</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> He said, \"These seven ewe lambs you shall accept from my hand, in order that you may be a witness for me that I dug this well.\"</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Therefore that place was called Beer-sheba; because there both of them swore an oath. </VERS>\r\n\t\t\t<VERS vnumber=\"32\"> When they had made a covenant at Beer-sheba, Abimelech, with Phicol the commander of his army, left and returned to the land of the Philistines.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Abraham planted a tamarisk tree in Beer-sheba, and called there on the name of the LORD, the Everlasting God. </VERS>\r\n\t\t\t<VERS vnumber=\"34\"> And Abraham resided as an alien many days in the land of the Philistines.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"22\">\r\n\t\t\t<VERS vnumber=\"1\"> After these things God tested Abraham. He said to him, \"Abraham!\" And he said, \"Here I am.\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He said, \"Take your son, your only son Isaac, whom you love, and go to the land of Moriah, and offer him there as a burnt offering on one of the mountains that I shall show you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> So Abraham rose early in the morning, saddled his donkey, and took two of his young men with him, and his son Isaac; he cut the wood for the burnt offering, and set out and went to the place in the distance that God had shown him.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> On the third day Abraham looked up and saw the place far away.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then Abraham said to his young men, \"Stay here with the donkey; the boy and I will go over there; we will worship, and then we will come back to you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Abraham took the wood of the burnt offering and laid it on his son Isaac, and he himself carried the fire and the knife. So the two of them walked on together.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Isaac said to his father Abraham, \"Father!\" And he said, \"Here I am, my son.\" He said, \"The fire and the wood are here, but where is the lamb for a burnt offering?\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Abraham said, \"God himself will provide the lamb for a burnt offering, my son.\" So the two of them walked on together.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> When they came to the place that God had shown him, Abraham built an altar there and laid the wood in order. He bound his son Isaac, and laid him on the altar, on top of the wood.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then Abraham reached out his hand and took the knife to kill his son. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But the angel of the LORD called to him from heaven, and said, \"Abraham, Abraham!\" And he said, \"Here I am.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> He said, \"Do not lay your hand on the boy or do anything to him; for now I know that you fear God, since you have not withheld your son, your only son, from me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And Abraham looked up and saw a ram, caught in a thicket by its horns. Abraham went and took the ram and offered it up as a burnt offering instead of his son.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> So Abraham called that place \"The LORD will provide\"; as it is said to this day, \"On the mount of the LORD it shall be provided.\" </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The angel of the LORD called to Abraham a second time from heaven,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> and said, \"By myself I have sworn, says the LORD: Because you have done this, and have not withheld your son, your only son,</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> I will indeed bless you, and I will make your offspring as numerous as the stars of heaven and as the sand that is on the seashore. And your offspring shall possess the gate of their enemies,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> and by your offspring shall all the nations of the earth gain blessing for themselves, because you have obeyed my voice.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> So Abraham returned to his young men, and they arose and went together to Beer-sheba; and Abraham lived at Beer-sheba.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Now after these things it was told Abraham, \"Milcah also has borne children, to your brother Nahor:</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Uz the firstborn, Buz his brother, Kemuel the father of Aram,</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Chesed, Hazo, Pildash, Jidlaph, and Bethuel.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Bethuel became the father of Rebekah. These eight Milcah bore to Nahor, Abraham's brother.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Moreover, his concubine, whose name was Reumah, bore Tebah, Gaham, Tahash, and Maacah.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"23\">\r\n\t\t\t<VERS vnumber=\"1\"> Sarah lived one hundred twenty-seven years; this was the length of Sarah's life.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And Sarah died at Kiriath-arba (that is, Hebron) in the land of Canaan; and Abraham went in to mourn for Sarah and to weep for her.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Abraham rose up from beside his dead, and said to the Hittites,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> \"I am a stranger and an alien residing among you; give me property among you for a burying place, so that I may bury my dead out of my sight.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The Hittites answered Abraham,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> \"Hear us, my lord; you are a mighty prince among us. Bury your dead in the choicest of our burial places; none of us will withhold from you any burial ground for burying your dead.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Abraham rose and bowed to the Hittites, the people of the land.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> He said to them, \"If you are willing that I should bury my dead out of my sight, hear me, and entreat for me Ephron son of Zohar,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> so that he may give me the cave of Machpelah, which he owns; it is at the end of his field. For the full price let him give it to me in your presence as a possession for a burying place.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Now Ephron was sitting among the Hittites; and Ephron the Hittite answered Abraham in the hearing of the Hittites, of all who went in at the gate of his city,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> \"No, my lord, hear me; I give you the field, and I give you the cave that is in it; in the presence of my people I give it to you; bury your dead.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then Abraham bowed down before the people of the land.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> He said to Ephron in the hearing of the people of the land, \"If you only will listen to me! I will give the price of the field; accept it from me, so that I may bury my dead there.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Ephron answered Abraham,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> \"My lord, listen to me; a piece of land worth four hundred shekels of silver-- what is that between you and me? Bury your dead.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Abraham agreed with Ephron; and Abraham weighed out for Ephron the silver that he had named in the hearing of the Hittites, four hundred shekels of silver, according to the weights current among the merchants.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> So the field of Ephron in Machpelah, which was to the east of Mamre, the field with the cave that was in it and all the trees that were in the field, throughout its whole area, passed</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> to Abraham as a possession in the presence of the Hittites, in the presence of all who went in at the gate of his city.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> After this, Abraham buried Sarah his wife in the cave of the field of Machpelah facing Mamre (that is, Hebron) in the land of Canaan.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The field and the cave that is in it passed from the Hittites into Abraham's possession as a burying place.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"24\">\r\n\t\t\t<VERS vnumber=\"1\"> Now Abraham was old, well advanced in years; and the LORD had blessed Abraham in all things.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Abraham said to his servant, the oldest of his house, who had charge of all that he had, \"Put your hand under my thigh</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> and I will make you swear by the LORD, the God of heaven and earth, that you will not get a wife for my son from the daughters of the Canaanites, among whom I live,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> but will go to my country and to my kindred and get a wife for my son Isaac.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The servant said to him, \"Perhaps the woman may not be willing to follow me to this land; must I then take your son back to the land from which you came?\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Abraham said to him, \"See to it that you do not take my son back there.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The LORD, the God of heaven, who took me from my father's house and from the land of my birth, and who spoke to me and swore to me, 'To your offspring I will give this land,' he will send his angel before you, and you shall take a wife for my son from there.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But if the woman is not willing to follow you, then you will be free from this oath of mine; only you must not take my son back there.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> So the servant put his hand under the thigh of Abraham his master and swore to him concerning this matter.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then the servant took ten of his master's camels and departed, taking all kinds of choice gifts from his master; and he set out and went to Aram-naharaim, to the city of Nahor.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> He made the camels kneel down outside the city by the well of water; it was toward evening, the time when women go out to draw water.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> And he said, \"O LORD, God of my master Abraham, please grant me success today and show steadfast love to my master Abraham.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> I am standing here by the spring of water, and the daughters of the townspeople are coming out to draw water.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Let the girl to whom I shall say, 'Please offer your jar that I may drink,' and who shall say, 'Drink, and I will water your camels'-- let her be the one whom you have appointed for your servant Isaac. By this I shall know that you have shown steadfast love to my master.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Before he had finished speaking, there was Rebekah, who was born to Bethuel son of Milcah, the wife of Nahor, Abraham's brother, coming out with her water jar on her shoulder.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The girl was very fair to look upon, a virgin, whom no man had known. She went down to the spring, filled her jar, and came up.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then the servant ran to meet her and said, \"Please let me sip a little water from your jar.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> \"Drink, my lord,\" she said, and quickly lowered her jar upon her hand and gave him a drink.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> When she had finished giving him a drink, she said, \"I will draw for your camels also, until they have finished drinking.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> So she quickly emptied her jar into the trough and ran again to the well to draw, and she drew for all his camels.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> The man gazed at her in silence to learn whether or not the LORD had made his journey successful.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> When the camels had finished drinking, the man took a gold nose-ring weighing a half shekel, and two bracelets for her arms weighing ten gold shekels,</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> and said, \"Tell me whose daughter you are. Is there room in your father's house for us to spend the night?\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> She said to him, \"I am the daughter of Bethuel son of Milcah, whom she bore to Nahor.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> She added, \"We have plenty of straw and fodder and a place to spend the night.\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> The man bowed his head and worshiped the LORD</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> and said, \"Blessed be the LORD, the God of my master Abraham, who has not forsaken his steadfast love and his faithfulness toward my master. As for me, the LORD has led me on the way to the house of my master's kin.\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Then the girl ran and told her mother's household about these things.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Rebekah had a brother whose name was Laban; and Laban ran out to the man, to the spring.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> As soon as he had seen the nose-ring, and the bracelets on his sister's arms, and when he heard the words of his sister Rebekah, \"Thus the man spoke to me,\" he went to the man; and there he was, standing by the camels at the spring.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> He said, \"Come in, O blessed of the LORD. Why do you stand outside when I have prepared the house and a place for the camels?\"</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> So the man came into the house; and Laban unloaded the camels, and gave him straw and fodder for the camels, and water to wash his feet and the feet of the men who were with him.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Then food was set before him to eat; but he said, \"I will not eat until I have told my errand.\" He said, \"Speak on.\"</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> So he said, \"I am Abraham's servant.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> The LORD has greatly blessed my master, and he has become wealthy; he has given him flocks and herds, silver and gold, male and female slaves, camels and donkeys.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> And Sarah my master's wife bore a son to my master when she was old; and he has given him all that he has.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> My master made me swear, saying, 'You shall not take a wife for my son from the daughters of the Canaanites, in whose land I live;</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> but you shall go to my father's house, to my kindred, and get a wife for my son.'</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> I said to my master, 'Perhaps the woman will not follow me.'</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> But he said to me, 'The LORD, before whom I walk, will send his angel with you and make your way successful. You shall get a wife for my son from my kindred, from my father's house.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> Then you will be free from my oath, when you come to my kindred; even if they will not give her to you, you will be free from my oath.'</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> \"I came today to the spring, and said, 'O LORD, the God of my master Abraham, if now you will only make successful the way I am going!</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> I am standing here by the spring of water; let the young woman who comes out to draw, to whom I shall say, \"Please give me a little water from your jar to drink,\"</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> and who will say to me, \"Drink, and I will draw for your camels also\"-- let her be the woman whom the LORD has appointed for my master's son.'</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> \"Before I had finished speaking in my heart, there was Rebekah coming out with her water jar on her shoulder; and she went down to the spring, and drew. I said to her, 'Please let me drink.'</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> She quickly let down her jar from her shoulder, and said, 'Drink, and I will also water your camels.' So I drank, and she also watered the camels.</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> Then I asked her, 'Whose daughter are you?' She said, 'The daughter of Bethuel, Nahor's son, whom Milcah bore to him.' So I put the ring on her nose, and the bracelets on her arms.</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> Then I bowed my head and worshiped the LORD, and blessed the LORD, the God of my master Abraham, who had led me by the right way to obtain the daughter of my master's kinsman for his son.</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> Now then, if you will deal loyally and truly with my master, tell me; and if not, tell me, so that I may turn either to the right hand or to the left.\"</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> Then Laban and Bethuel answered, \"The thing comes from the LORD; we cannot speak to you anything bad or good.</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> Look, Rebekah is before you, take her and go, and let her be the wife of your master's son, as the LORD has spoken.\"</VERS>\r\n\t\t\t<VERS vnumber=\"52\"> When Abraham's servant heard their words, he bowed himself to the ground before the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"53\"> And the servant brought out jewelry of silver and of gold, and garments, and gave them to Rebekah; he also gave to her brother and to her mother costly ornaments.</VERS>\r\n\t\t\t<VERS vnumber=\"54\"> Then he and the men who were with him ate and drank, and they spent the night there. When they rose in the morning, he said, \"Send me back to my master.\"</VERS>\r\n\t\t\t<VERS vnumber=\"55\"> Her brother and her mother said, \"Let the girl remain with us a while, at least ten days; after that she may go.\"</VERS>\r\n\t\t\t<VERS vnumber=\"56\"> But he said to them, \"Do not delay me, since the LORD has made my journey successful; let me go that I may go to my master.\"</VERS>\r\n\t\t\t<VERS vnumber=\"57\"> They said, \"We will call the girl, and ask her.\"</VERS>\r\n\t\t\t<VERS vnumber=\"58\"> And they called Rebekah, and said to her, \"Will you go with this man?\" She said, \"I will.\"</VERS>\r\n\t\t\t<VERS vnumber=\"59\"> So they sent away their sister Rebekah and her nurse along with Abraham's servant and his men.</VERS>\r\n\t\t\t<VERS vnumber=\"60\"> And they blessed Rebekah and said to her, \"May you, our sister, become thousands of myriads; may your offspring gain possession of the gates of their foes.\"</VERS>\r\n\t\t\t<VERS vnumber=\"61\"> Then Rebekah and her maids rose up, mounted the camels, and followed the man; thus the servant took Rebekah, and went his way.</VERS>\r\n\t\t\t<VERS vnumber=\"62\"> Now Isaac had come from Beer-lahai-roi, and was settled in the Negeb. </VERS>\r\n\t\t\t<VERS vnumber=\"63\"> Isaac went out in the evening to walk in the field; and looking up, he saw camels coming. </VERS>\r\n\t\t\t<VERS vnumber=\"64\"> And Rebekah looked up, and when she saw Isaac, she slipped quickly from the camel,</VERS>\r\n\t\t\t<VERS vnumber=\"65\"> and said to the servant, \"Who is the man over there, walking in the field to meet us?\" The servant said, \"It is my master.\" So she took her veil and covered herself.</VERS>\r\n\t\t\t<VERS vnumber=\"66\"> And the servant told Isaac all the things that he had done.</VERS>\r\n\t\t\t<VERS vnumber=\"67\"> Then Isaac brought her into his mother Sarah's tent. He took Rebekah, and she became his wife; and he loved her. So Isaac was comforted after his mother's death.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"25\">\r\n\t\t\t<VERS vnumber=\"1\"> Abraham took another wife, whose name was Keturah.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> She bore him Zimran, Jokshan, Medan, Midian, Ishbak, and Shuah.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Jokshan was the father of Sheba and Dedan. The sons of Dedan were Asshurim, Letushim, and Leummim.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The sons of Midian were Ephah, Epher, Hanoch, Abida, and Eldaah. All these were the children of Keturah.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Abraham gave all he had to Isaac.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> But to the sons of his concubines Abraham gave gifts, while he was still living, and he sent them away from his son Isaac, eastward to the east country.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> This is the length of Abraham's life, one hundred seventy-five years.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Abraham breathed his last and died in a good old age, an old man and full of years, and was gathered to his people.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> His sons Isaac and Ishmael buried him in the cave of Machpelah, in the field of Ephron son of Zohar the Hittite, east of Mamre,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> the field that Abraham purchased from the Hittites. There Abraham was buried, with his wife Sarah.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> After the death of Abraham God blessed his son Isaac. And Isaac settled at Beer-lahai-roi.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> These are the descendants of Ishmael, Abraham's son, whom Hagar the Egyptian, Sarah's slave-girl, bore to Abraham.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> These are the names of the sons of Ishmael, named in the order of their birth: Nebaioth, the firstborn of Ishmael; and Kedar, Adbeel, Mibsam,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Mishma, Dumah, Massa,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Hadad, Tema, Jetur, Naphish, and Kedemah.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> These are the sons of Ishmael and these are their names, by their villages and by their encampments, twelve princes according to their tribes.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> (This is the length of the life of Ishmael, one hundred thirty-seven years; he breathed his last and died, and was gathered to his people.)</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> They settled from Havilah to Shur, which is opposite Egypt in the direction of Assyria; he settled down alongside of all his people. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> These are the descendants of Isaac, Abraham's son: Abraham was the father of Isaac,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> and Isaac was forty years old when he married Rebekah, daughter of Bethuel the Aramean of Paddan-aram, sister of Laban the Aramean.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Isaac prayed to the LORD for his wife, because she was barren; and the LORD granted his prayer, and his wife Rebekah conceived.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The children struggled together within her; and she said, \"If it is to be this way, why do I live?\" So she went to inquire of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> And the LORD said to her, \"Two nations are in your womb, and two peoples born of you shall be divided; the one shall be stronger than the other, the elder shall serve the younger.\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> When her time to give birth was at hand, there were twins in her womb.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> The first came out red, all his body like a hairy mantle; so they named him Esau.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Afterward his brother came out, with his hand gripping Esau's heel; so he was named Jacob. Isaac was sixty years old when she bore them. </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> When the boys grew up, Esau was a skillful hunter, a man of the field, while Jacob was a quiet man, living in tents.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Isaac loved Esau, because he was fond of game; but Rebekah loved Jacob.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Once when Jacob was cooking a stew, Esau came in from the field, and he was famished.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Esau said to Jacob, \"Let me eat some of that red stuff, for I am famished!\" (Therefore he was called Edom.)</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Jacob said, \"First sell me your birthright.\"</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Esau said, \"I am about to die; of what use is a birthright to me?\"</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Jacob said, \"Swear to me first.\" So he swore to him, and sold his birthright to Jacob. </VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Then Jacob gave Esau bread and lentil stew, and he ate and drank, and rose and went his way. Thus Esau despised his birthright.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"26\">\r\n\t\t\t<VERS vnumber=\"1\"> Now there was a famine in the land, besides the former famine that had occurred in the days of Abraham. And Isaac went to Gerar, to King Abimelech of the Philistines.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The LORD appeared to Isaac and said, \"Do not go down to Egypt; settle in the land that I shall show you. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Reside in this land as an alien, and I will be with you, and will bless you; for to you and to your descendants I will give all these lands, and I will fulfill the oath that I swore to your father Abraham.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> I will make your offspring as numerous as the stars of heaven, and will give to your offspring all these lands; and all the nations of the earth shall gain blessing for themselves through your offspring,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> because Abraham obeyed my voice and kept my charge, my commandments, my statutes, and my laws.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> So Isaac settled in Gerar.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> When the men of the place asked him about his wife, he said, \"She is my sister\"; for he was afraid to say, \"My wife,\" thinking, \"or else the men of the place might kill me for the sake of Rebekah, because she is attractive in appearance.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> When Isaac had been there a long time, King Abimelech of the Philistines looked out of a window and saw him fondling his wife Rebekah.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> So Abimelech called for Isaac, and said, \"So she is your wife! Why then did you say, 'She is my sister'?\" Isaac said to him, \"Because I thought I might die because of her.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Abimelech said, \"What is this you have done to us? One of the people might easily have lain with your wife, and you would have brought guilt upon us.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> So Abimelech warned all the people, saying, \"Whoever touches this man or his wife shall be put to death.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Isaac sowed seed in that land, and in the same year reaped a hundredfold. The LORD blessed him,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> and the man became rich; he prospered more and more until he became very wealthy.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> He had possessions of flocks and herds, and a great household, so that the Philistines envied him.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> (Now the Philistines had stopped up and filled with earth all the wells that his father's servants had dug in the days of his father Abraham.)</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> And Abimelech said to Isaac, \"Go away from us; you have become too powerful for us.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> So Isaac departed from there and camped in the valley of Gerar and settled there.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Isaac dug again the wells of water that had been dug in the days of his father Abraham; for the Philistines had stopped them up after the death of Abraham; and he gave them the names that his father had given them.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> But when Isaac's servants dug in the valley and found there a well of spring water,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> the herders of Gerar quarreled with Isaac's herders, saying, \"The water is ours.\" So he called the well Esek, because they contended with him. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then they dug another well, and they quarreled over that one also; so he called it Sitnah. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> He moved from there and dug another well, and they did not quarrel over it; so he called it Rehoboth, saying, \"Now the LORD has made room for us, and we shall be fruitful in the land.\" </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> From there he went up to Beer-sheba.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> And that very night the LORD appeared to him and said, \"I am the God of your father Abraham; do not be afraid, for I am with you and will bless you and make your offspring numerous for my servant Abraham's sake.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> So he built an altar there, called on the name of the LORD, and pitched his tent there. And there Isaac's servants dug a well.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Then Abimelech went to him from Gerar, with Ahuzzath his adviser and Phicol the commander of his army.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Isaac said to them, \"Why have you come to me, seeing that you hate me and have sent me away from you?\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> They said, \"We see plainly that the LORD has been with you; so we say, let there be an oath between you and us, and let us make a covenant with you</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> so that you will do us no harm, just as we have not touched you and have done to you nothing but good and have sent you away in peace. You are now the blessed of the LORD.\"</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> So he made them a feast, and they ate and drank.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> In the morning they rose early and exchanged oaths; and Isaac set them on their way, and they departed from him in peace.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> That same day Isaac's servants came and told him about the well that they had dug, and said to him, \"We have found water!\"</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> He called it Shibah; therefore the name of the city is Beer-sheba to this day. </VERS>\r\n\t\t\t<VERS vnumber=\"34\"> When Esau was forty years old, he married Judith daughter of Beeri the Hittite, and Basemath daughter of Elon the Hittite;</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> and they made life bitter for Isaac and Rebekah.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"27\">\r\n\t\t\t<VERS vnumber=\"1\"> When Isaac was old and his eyes were dim so that he could not see, he called his elder son Esau and said to him, \"My son\"; and he answered, \"Here I am.\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He said, \"See, I am old; I do not know the day of my death.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Now then, take your weapons, your quiver and your bow, and go out to the field, and hunt game for me.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then prepare for me savory food, such as I like, and bring it to me to eat, so that I may bless you before I die.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Now Rebekah was listening when Isaac spoke to his son Esau. So when Esau went to the field to hunt for game and bring it,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Rebekah said to her son Jacob, \"I heard your father say to your brother Esau,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> 'Bring me game, and prepare for me savory food to eat, that I may bless you before the LORD before I die.'</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Now therefore, my son, obey my word as I command you.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Go to the flock, and get me two choice kids, so that I may prepare from them savory food for your father, such as he likes;</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> and you shall take it to your father to eat, so that he may bless you before he dies.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But Jacob said to his mother Rebekah, \"Look, my brother Esau is a hairy man, and I am a man of smooth skin.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Perhaps my father will feel me, and I shall seem to be mocking him, and bring a curse on myself and not a blessing.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> His mother said to him, \"Let your curse be on me, my son; only obey my word, and go, get them for me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> So he went and got them and brought them to his mother; and his mother prepared savory food, such as his father loved.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Then Rebekah took the best garments of her elder son Esau, which were with her in the house, and put them on her younger son Jacob;</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> and she put the skins of the kids on his hands and on the smooth part of his neck.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then she handed the savory food, and the bread that she had prepared, to her son Jacob.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> So he went in to his father, and said, \"My father\"; and he said, \"Here I am; who are you, my son?\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Jacob said to his father, \"I am Esau your firstborn. I have done as you told me; now sit up and eat of my game, so that you may bless me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> But Isaac said to his son, \"How is it that you have found it so quickly, my son?\" He answered, \"Because the LORD your God granted me success.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then Isaac said to Jacob, \"Come near, that I may feel you, my son, to know whether you are really my son Esau or not.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> So Jacob went up to his father Isaac, who felt him and said, \"The voice is Jacob's voice, but the hands are the hands of Esau.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> He did not recognize him, because his hands were hairy like his brother Esau's hands; so he blessed him.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> He said, \"Are you really my son Esau?\" He answered, \"I am.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Then he said, \"Bring it to me, that I may eat of my son's game and bless you.\" So he brought it to him, and he ate; and he brought him wine, and he drank.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Then his father Isaac said to him, \"Come near and kiss me, my son.\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> So he came near and kissed him; and he smelled the smell of his garments, and blessed him, and said, \"Ah, the smell of my son is like the smell of a field that the LORD has blessed.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> May God give you of the dew of heaven, and of the fatness of the earth, and plenty of grain and wine.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Let peoples serve you, and nations bow down to you. Be lord over your brothers, and may your mother's sons bow down to you. Cursed be everyone who curses you, and blessed be everyone who blesses you!\"</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> As soon as Isaac had finished blessing Jacob, when Jacob had scarcely gone out from the presence of his father Isaac, his brother Esau came in from his hunting.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> He also prepared savory food, and brought it to his father. And he said to his father, \"Let my father sit up and eat of his son's game, so that you may bless me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> His father Isaac said to him, \"Who are you?\" He answered, \"I am your firstborn son, Esau.\"</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Then Isaac trembled violently, and said, \"Who was it then that hunted game and brought it to me, and I ate it all before you came, and I have blessed him?-- yes, and blessed he shall be!\"</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> When Esau heard his father's words, he cried out with an exceedingly great and bitter cry, and said to his father, \"Bless me, me also, father!\"</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> But he said, \"Your brother came deceitfully, and he has taken away your blessing.\"</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Esau said, \"Is he not rightly named Jacob? For he has supplanted me these two times. He took away my birthright; and look, now he has taken away my blessing.\" Then he said, \"Have you not reserved a blessing for me?\" </VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Isaac answered Esau, \"I have already made him your lord, and I have given him all his brothers as servants, and with grain and wine I have sustained him. What then can I do for you, my son?\"</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Esau said to his father, \"Have you only one blessing, father? Bless me, me also, father!\" And Esau lifted up his voice and wept.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> Then his father Isaac answered him: \"See, away from the fatness of the earth shall your home be, and away from the dew of heaven on high. </VERS>\r\n\t\t\t<VERS vnumber=\"40\"> By your sword you shall live, and you shall serve your brother; but when you break loose, you shall break his yoke from your neck.\" </VERS>\r\n\t\t\t<VERS vnumber=\"41\"> Now Esau hated Jacob because of the blessing with which his father had blessed him, and Esau said to himself, \"The days of mourning for my father are approaching; then I will kill my brother Jacob.\"</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> But the words of her elder son Esau were told to Rebekah; so she sent and called her younger son Jacob and said to him, \"Your brother Esau is consoling himself by planning to kill you.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> Now therefore, my son, obey my voice; flee at once to my brother Laban in Haran,</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> and stay with him a while, until your brother's fury turns away--</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> until your brother's anger against you turns away, and he forgets what you have done to him; then I will send, and bring you back from there. Why should I lose both of you in one day?\"</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> Then Rebekah said to Isaac, \"I am weary of my life because of the Hittite women. If Jacob marries one of the Hittite women such as these, one of the women of the land, what good will my life be to me?\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"28\">\r\n\t\t\t<VERS vnumber=\"1\"> Then Isaac called Jacob and blessed him, and charged him, \"You shall not marry one of the Canaanite women.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Go at once to Paddan-aram to the house of Bethuel, your mother's father; and take as wife from there one of the daughters of Laban, your mother's brother.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> May God Almighty bless you and make you fruitful and numerous, that you may become a company of peoples. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> May he give to you the blessing of Abraham, to you and to your offspring with you, so that you may take possession of the land where you now live as an alien-- land that God gave to Abraham.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Thus Isaac sent Jacob away; and he went to Paddan-aram, to Laban son of Bethuel the Aramean, the brother of Rebekah, Jacob's and Esau's mother.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Now Esau saw that Isaac had blessed Jacob and sent him away to Paddan-aram to take a wife from there, and that as he blessed him he charged him, \"You shall not marry one of the Canaanite women,\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> and that Jacob had obeyed his father and his mother and gone to Paddan-aram.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> So when Esau saw that the Canaanite women did not please his father Isaac,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Esau went to Ishmael and took Mahalath daughter of Abraham's son Ishmael, and sister of Nebaioth, to be his wife in addition to the wives he had.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Jacob left Beer-sheba and went toward Haran.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> He came to a certain place and stayed there for the night, because the sun had set. Taking one of the stones of the place, he put it under his head and lay down in that place.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> And he dreamed that there was a ladder set up on the earth, the top of it reaching to heaven; and the angels of God were ascending and descending on it. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And the LORD stood beside him and said, \"I am the LORD, the God of Abraham your father and the God of Isaac; the land on which you lie I will give to you and to your offspring; </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> and your offspring shall be like the dust of the earth, and you shall spread abroad to the west and to the east and to the north and to the south; and all the families of the earth shall be blessed in you and in your offspring. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Know that I am with you and will keep you wherever you go, and will bring you back to this land; for I will not leave you until I have done what I have promised you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then Jacob woke from his sleep and said, \"Surely the LORD is in this place-- and I did not know it!\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> And he was afraid, and said, \"How awesome is this place! This is none other than the house of God, and this is the gate of heaven.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> So Jacob rose early in the morning, and he took the stone that he had put under his head and set it up for a pillar and poured oil on the top of it.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> He called that place Bethel; but the name of the city was Luz at the first. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Then Jacob made 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 clothing to wear,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> so that I come again to my father's house in peace, then the LORD shall be my God,</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> and this stone, which I have set up for a pillar, shall be God's house; and of all that you give me I will surely give one tenth to you.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"29\">\r\n\t\t\t<VERS vnumber=\"1\"> Then Jacob went on his journey, and came to the land of the people of the east.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> As he looked, he saw a well in the field and three flocks of sheep lying there beside it; for out of that well the flocks were watered. The stone on the well's mouth was large,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> and when all the flocks were gathered there, the shepherds would roll the stone from the mouth of the well, and water the sheep, and put the stone back in its place on the mouth of the well.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Jacob said to them, \"My brothers, where do you come from?\" They said, \"We are from Haran.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> He said to them, \"Do you know Laban son of Nahor?\" They said, \"We do.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> He said to them, \"Is it well with him?\" \"Yes,\" they replied, \"and here is his daughter Rachel, coming with the sheep.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> He said, \"Look, it is still broad daylight; it is not time for the animals to be gathered together. Water the sheep, and go, pasture them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But they said, \"We cannot until all the flocks are gathered together, and the stone is rolled from the mouth of the well; then we water the sheep.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> While he was still speaking with them, Rachel came with her father's sheep; for she kept them.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Now when Jacob saw Rachel, the daughter of his mother's brother Laban, and the sheep of his mother's brother Laban, Jacob went up and rolled the stone from the well's mouth, and watered the flock of his mother's brother Laban.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then Jacob kissed Rachel, and wept aloud.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> And Jacob told Rachel that he was her father's kinsman, and that he was Rebekah's son; and she ran and told her father.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> When Laban heard the news about his sister's son Jacob, he ran to meet him; he embraced him and kissed him, and brought him to his house. Jacob told Laban all these things, </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> and Laban said to him, \"Surely you are my bone and my flesh!\" And he stayed with him a month.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Then Laban said to Jacob, \"Because you are my kinsman, should you therefore serve me for nothing? Tell me, what shall your wages be?\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Now Laban had two daughters; the name of the elder was Leah, and the name of the younger was Rachel.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Leah's eyes were lovely, and Rachel was graceful and beautiful. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Jacob loved Rachel; so he said, \"I will serve you seven years for your younger daughter Rachel.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Laban said, \"It is better that I give her to you than that I should give her to any other man; stay with me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> So Jacob served seven years for Rachel, and they seemed to him but a few days because of the love he had for her.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then Jacob said to Laban, \"Give me my wife that I may go in to her, for my time is completed.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> So Laban gathered together all the people of the place, and made a feast.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> But in the evening he took his daughter Leah and brought her to Jacob; and he went in to her.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> (Laban gave his maid Zilpah to his daughter Leah to be her maid.)</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> When morning came, it was Leah! And Jacob said to Laban, \"What is this you have done to me? Did I not serve with you for Rachel? Why then have you deceived me?\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Laban said, \"This is not done in our country-- giving the younger before the firstborn.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Complete the week of this one, and we will give you the other also in return for serving me another seven years.\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Jacob did so, and completed her week; then Laban gave him his daughter Rachel as a wife.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> (Laban gave his maid Bilhah to his daughter Rachel to be her maid.)</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> So Jacob went in to Rachel also, and he loved Rachel more than Leah. He served Laban for another seven years.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> When the LORD saw that Leah was unloved, he opened her womb; but Rachel was barren.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Leah conceived and bore a son, and she named him Reuben; for she said, \"Because the LORD has looked on my affliction; surely now my husband will love me.\" </VERS>\r\n\t\t\t<VERS vnumber=\"33\"> She conceived again and bore a son, and said, \"Because the LORD has heard that I am hated, he has given me this son also\"; and she named him Simeon. </VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Again she conceived and bore a son, and said, \"Now this time my husband will be joined to me, because I have borne him three sons\"; therefore he was named Levi. </VERS>\r\n\t\t\t<VERS vnumber=\"35\"> She conceived again and bore a son, and said, \"This time I will praise the LORD\"; therefore she named him Judah; then she ceased bearing. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"30\">\r\n\t\t\t<VERS vnumber=\"1\"> When Rachel saw that she bore Jacob no children, she envied her sister; and she said to Jacob, \"Give me children, or I shall die!\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Jacob became very angry with Rachel and said, \"Am I in the place of God, who has withheld from you the fruit of the womb?\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then she said, \"Here is my maid Bilhah; go in to her, that she may bear upon my knees and that I too may have children through her.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> So she gave him her maid Bilhah as a wife; and Jacob went in to her.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> And Bilhah conceived and bore Jacob a son.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then Rachel said, \"God has judged me, and has also heard my voice and given me a son\"; therefore she named him Dan. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Rachel's maid Bilhah conceived again and bore Jacob a second son.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then Rachel said, \"With mighty wrestlings I have wrestled with my sister, and have prevailed\"; so she named him Naphtali. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> When Leah saw that she had ceased bearing children, she took her maid Zilpah and gave her to Jacob as a wife.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then Leah's maid Zilpah bore Jacob a son.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> And Leah said, \"Good fortune!\" so she named him Gad. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Leah's maid Zilpah bore Jacob a second son.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And Leah said, \"Happy am I! For the women will call me happy\"; so she named him Asher. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> In the days of wheat harvest Reuben went and found mandrakes in the field, and brought them to his mother Leah. Then Rachel said to Leah, \"Please give me some of your son's mandrakes.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> But she said to her, \"Is it a small matter that you have taken away my husband? Would you take away my son's mandrakes also?\" Rachel said, \"Then he may lie with you tonight for your son's mandrakes.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> When Jacob came from the field in the evening, Leah went out to meet him, and said, \"You must come in to me; for I have hired you with my son's mandrakes.\" So he lay with her that night.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> And God heeded Leah, and she conceived and bore Jacob a fifth son.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Leah said, \"God has given me my hire because I gave my maid to my husband\"; so she named him Issachar. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> And Leah conceived again, and she bore Jacob a sixth son.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Then Leah said, \"God has endowed me with a good dowry; now my husband will honor me, because I have borne him six sons\"; so she named him Zebulun. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Afterwards she bore a daughter, and named her Dinah.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Then God remembered Rachel, and God heeded her and opened her womb.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> She conceived and bore a son, and said, \"God has taken away my reproach\";</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> and she named him Joseph, saying, \"May the LORD add to me another son!\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> When Rachel had borne Joseph, Jacob said to Laban, \"Send me away, that I may go to my own home and country.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Give me my wives and my children for whom I have served you, and let me go; for you know very well the service I have given you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> But Laban said to him, \"If you will allow me to say so, I have learned by divination that the LORD has blessed me because of you;</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> name your wages, and I will give it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Jacob said to him, \"You yourself know how I have served you, and how your cattle have fared with me.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> For you had little before I came, and it has increased abundantly; and the LORD has blessed you wherever I turned. But now when shall I provide for my own household also?\"</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> He said, \"What shall I give you?\" Jacob said, \"You shall not give me anything; if you will do this for me, I will again feed your flock and keep it:</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> let me pass through all your flock today, removing from it every speckled and spotted sheep and every black lamb, and the spotted and speckled among the goats; and such shall be my wages.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> So my honesty will answer for me later, when you come to look into my wages with you. Every one that is not speckled and spotted among the goats and black among the lambs, if found with me, shall be counted stolen.\"</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Laban said, \"Good! Let it be as you have said.\"</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> But that day Laban removed the male goats that were striped and spotted, and all the female goats that were speckled and spotted, every one that had white on it, and every lamb that was black, and put them in charge of his sons;</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> and he set a distance of three days' journey between himself and Jacob, while Jacob was pasturing the rest of Laban's flock.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Then Jacob took fresh rods of poplar and almond and plane, and peeled white streaks in them, exposing the white of the rods.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> He set the rods that he had peeled in front of the flocks in the troughs, that is, the watering places, where the flocks came to drink. And since they bred when they came to drink,</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> the flocks bred in front of the rods, and so the flocks produced young that were striped, speckled, and spotted.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> Jacob separated the lambs, and set the faces of the flocks toward the striped and the completely black animals in the flock of Laban; and he put his own droves apart, and did not put them with Laban's flock.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> Whenever the stronger of the flock were breeding, Jacob laid the rods in the troughs before the eyes of the flock, that they might breed among the rods,</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> but for the feebler of the flock he did not lay them there; so the feebler were Laban's, and the stronger Jacob's.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> Thus the man grew exceedingly rich, and had large flocks, and male and female slaves, and camels and donkeys.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"31\">\r\n\t\t\t<VERS vnumber=\"1\"> Now Jacob heard that the sons of Laban were saying, \"Jacob has taken all that was our father's; he has gained all this wealth from what belonged to our father.\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And Jacob saw that Laban did not regard him as favorably as he did before.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then the LORD said to Jacob, \"Return to the land of your ancestors and to your kindred, and I will be with you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> So Jacob sent and called Rachel and Leah into the field where his flock was,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> and said to them, \"I see that your father does not regard me as favorably as he did before. But the God of my father has been with me.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> You know that I have served your father with all my strength;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> yet your father has cheated me and changed my wages ten times, but God did not permit him to harm me.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> If he said, 'The speckled shall be your wages,' then all the flock bore speckled; and if he said, 'The striped shall be your wages,' then all the flock bore striped.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Thus God has taken away the livestock of your father, and given them to me.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> During the mating of the flock I once had a dream in which I looked up and saw that the male goats that leaped upon the flock were striped, speckled, and mottled.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then the angel of God said to me in the dream, 'Jacob,' and I said, 'Here I am!'</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> And he said, 'Look up and see that all the goats that leap on the flock are striped, speckled, and mottled; for I have seen all that Laban is doing to you.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> I am the God of Bethel, where you anointed a pillar and made a vow to me. Now leave this land at once and return to the land of your birth.'\" </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then Rachel and Leah answered him, \"Is there any portion or inheritance left to us in our father's house?</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Are we not regarded by him as foreigners? For he has sold us, and he has been using up the money given for us.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> All the property that God has taken away from our father belongs to us and to our children; now then, do whatever God has said to you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> So Jacob arose, and set his children and his wives on camels;</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> and he drove away all his livestock, all the property that he had gained, the livestock in his possession that he had acquired in Paddan-aram, to go to his father Isaac in the land of Canaan.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Now Laban had gone to shear his sheep, and Rachel stole her father's household gods.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> And Jacob deceived Laban the Aramean, in that he did not tell him that he intended to flee.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> So he fled with all that he had; starting out he crossed the Euphrates, and set his face toward the hill country of Gilead. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> On the third day Laban was told that Jacob had fled.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> So he took his kinsfolk with him and pursued him for seven days until he caught up with him in the hill country of Gilead.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> But God came to Laban the Aramean in a dream by night, and said to him, \"Take heed that you say not a word to Jacob, either good or bad.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Laban overtook Jacob. Now Jacob had pitched his tent in the hill country, and Laban with his kinsfolk camped in the hill country of Gilead.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Laban said to Jacob, \"What have you done? You have deceived me, and carried away my daughters like captives of the sword.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Why did you flee secretly and deceive me and not tell me? I would have sent you away with mirth and songs, with tambourine and lyre.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> And why did you not permit me to kiss my sons and my daughters farewell? What you have done is foolish.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> It is in my power to do you harm; but the God of your father spoke to me last night, saying, 'Take heed that you speak to Jacob neither good nor bad.'</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Even though you had to go because you longed greatly for your father's house, why did you steal my gods?\"</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Jacob answered Laban, \"Because I was afraid, for I thought that you would take your daughters from me by force.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> But anyone with whom you find your gods shall not live. In the presence of our kinsfolk, point out what I have that is yours, and take it.\" Now Jacob did not know that Rachel had stolen the gods. </VERS>\r\n\t\t\t<VERS vnumber=\"33\"> So Laban went into Jacob's tent, and into Leah's tent, and into the tent of the two maids, but he did not find them. And he went out of Leah's tent, and entered Rachel's.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Now Rachel had taken the household gods and put them in the camel's saddle, and sat on them. Laban felt all about in the tent, but did not find them.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> And she said to her father, \"Let not my lord be angry that I cannot rise before you, for the way of women is upon me.\" So he searched, but did not find the household gods.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Then Jacob became angry, and upbraided Laban. Jacob said to Laban, \"What is my offense? What is my sin, that you have hotly pursued me?</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Although you have felt about through all my goods, what have you found of all your household goods? Set it here before my kinsfolk and your kinsfolk, so that they may decide between us two.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> These twenty years I have been with you; your ewes and your female goats have not miscarried, and I have not eaten the rams of your flocks.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> That which was torn by wild beasts I did not bring to you; I bore the loss of it myself; of my hand you required it, whether stolen by day or stolen by night.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> It was like this with me: by day the heat consumed me, and the cold by night, and my sleep fled from my eyes.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> These twenty years I have been in your house; I served you fourteen years for your two daughters, and six years for your flock, and you have changed my wages ten times.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> If the God of my father, the God of Abraham and the Fear of Isaac, had not been on my side, surely now you would have sent me away empty-handed. God saw my affliction and the labor of my hands, and rebuked you last night.\" </VERS>\r\n\t\t\t<VERS vnumber=\"43\"> Then Laban answered and said to Jacob, \"The daughters are my daughters, the children are my children, the flocks are my flocks, and all that you see is mine. But what can I do today about these daughters of mine, or about their children whom they have borne?</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> Come now, let us make a covenant, you and I; and let it be a witness between you and me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> So Jacob took a stone, and set it up as a pillar.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> And Jacob said to his kinsfolk, \"Gather stones,\" and they took stones, and made a heap; and they ate there by the heap.</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> Laban called it Jegar-sahadutha: but Jacob called it Galeed. </VERS>\r\n\t\t\t<VERS vnumber=\"48\"> Laban said, \"This heap is a witness between you and me today.\" Therefore he called it Galeed,</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> and the pillar Mizpah, for he said, \"The LORD watch between you and me, when we are absent one from the other. </VERS>\r\n\t\t\t<VERS vnumber=\"50\"> If you ill-treat my daughters, or if you take wives in addition to my daughters, though no one else is with us, remember that God is witness between you and me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> Then Laban said to Jacob, \"See this heap and see the pillar, which I have set between you and me.</VERS>\r\n\t\t\t<VERS vnumber=\"52\"> This heap is a witness, and the pillar is a witness, that I will not pass beyond this heap to you, and you will not pass beyond this heap and this pillar to me, for harm.</VERS>\r\n\t\t\t<VERS vnumber=\"53\"> May the God of Abraham and the God of Nahor\"-- the God of their father-- \"judge between us.\" So Jacob swore by the Fear of his father Isaac,</VERS>\r\n\t\t\t<VERS vnumber=\"54\"> and Jacob offered a sacrifice on the height and called his kinsfolk to eat bread; and they ate bread and tarried all night in the hill country.</VERS>\r\n\t\t\t<VERS vnumber=\"55\"> Early in the morning Laban rose up, and kissed his grandchildren and his daughters and blessed them; then he departed and returned home.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"32\">\r\n\t\t\t<VERS vnumber=\"1\"> Jacob went on his way and the angels of God met him;</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> and when Jacob saw them he said, \"This is God's camp!\" So he called that place Mahanaim. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Jacob sent messengers before him to his brother Esau in the land of Seir, the country of Edom,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> instructing them, \"Thus you shall say to my lord Esau: Thus says your servant Jacob, 'I have lived with Laban as an alien, and stayed until now;</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> and I have oxen, donkeys, flocks, male and female slaves; and I have sent to tell my lord, in order that I may find favor in your sight.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The messengers returned to Jacob, saying, \"We came to your brother Esau, and he is coming to meet you, and four hundred men are with him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then Jacob was greatly afraid and distressed; and he divided the people that were with him, and the flocks and herds and camels, into two companies,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> thinking, \"If Esau comes to the one company and destroys it, then the company that is left will escape.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> And Jacob said, \"O God of my father Abraham and God of my father Isaac, O LORD who said to me, 'Return to your country and to your kindred, and I will do you good,'</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> I am not worthy of the least of all the steadfast love and all the faithfulness that you have shown to your servant, for with only my staff I crossed this Jordan; and now I have become two companies.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Deliver me, please, from the hand of my brother, from the hand of Esau, for I am afraid of him; he may come and kill us all, the mothers with the children.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Yet you have said, 'I will surely do you good, and make your offspring as the sand of the sea, which cannot be counted because of their number.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> So he spent that night there, and from what he had with him he took a present for his brother Esau,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> two hundred female goats and twenty male goats, two hundred ewes and twenty rams,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> thirty milch camels and their colts, forty cows and ten bulls, twenty female donkeys and ten male donkeys.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> These he delivered into the hand of his servants, every drove by itself, and said to his servants, \"Pass on ahead of me, and put a space between drove and drove.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> He instructed the foremost, \"When Esau my brother meets you, and asks you, 'To whom do you belong? Where are you going? And whose are these ahead of you?'</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> then you shall say, 'They belong to your servant Jacob; they are a present sent to my lord Esau; and moreover he is behind us.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> He likewise instructed the second and the third and all who followed the droves, \"You shall say the same thing to Esau when you meet him,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> and you shall say, 'Moreover your servant Jacob is behind us.'\" For he thought, \"I may appease him with the present that goes ahead of me, and afterwards I shall see his face; perhaps he will accept me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> So the present passed on ahead of him; and he himself spent that night in the camp.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The same night he got up and took his two wives, his two maids, and his eleven children, and crossed the ford of the Jabbok.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> He took them and sent them across the stream, and likewise everything that he had.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Jacob was left alone; and a man wrestled with him until daybreak.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> When the man saw that he did not prevail against Jacob, he struck him on the hip socket; and Jacob's hip was put out of joint as he wrestled with him.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Then he said, \"Let me go, for the day is breaking.\" But Jacob said, \"I will not let you go, unless you bless me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> So he said to him, \"What is your name?\" And he said, \"Jacob.\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Then the man said, \"You shall no longer be called Jacob, but Israel, for you have striven with God and with humans, and have prevailed.\" </VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Then Jacob asked him, \"Please tell me your name.\" But he said, \"Why is it that you ask my name?\" And there he blessed him.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> So Jacob called the place Peniel, saying, \"For I have seen God face to face, and yet my life is preserved.\" </VERS>\r\n\t\t\t<VERS vnumber=\"31\"> The sun rose upon him as he passed Penuel, limping because of his hip.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Therefore to this day the Israelites do not eat the thigh muscle that is on the hip socket, because he struck Jacob on the hip socket at the thigh muscle.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"33\">\r\n\t\t\t<VERS vnumber=\"1\"> Now Jacob looked up and saw Esau coming, and four hundred men with him. So he divided the children among Leah and Rachel and the two maids.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He put the maids with their children in front, then Leah with her children, and Rachel and Joseph last of all.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> He himself went on ahead of them, bowing himself to the ground seven times, until he came near his brother.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But Esau ran to meet him, and embraced him, and fell on his neck and kissed him, and they wept.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> When Esau looked up and saw the women and children, he said, \"Who are these with you?\" Jacob said, \"The children whom God has graciously given your servant.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then the maids drew near, they and their children, and bowed down;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Leah likewise and her children drew near and bowed down; and finally Joseph and Rachel drew near, and they bowed down.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Esau said, \"What do you mean by all this company that I met?\" Jacob answered, \"To find favor with my lord.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> But Esau said, \"I have enough, my brother; keep what you have for yourself.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Jacob said, \"No, please; if I find favor with you, then accept my present from my hand; for truly to see your face is like seeing the face of God-- since you have received me with such favor.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Please accept my gift that is brought to you, because God has dealt graciously with me, and because I have everything I want.\" So he urged him, and he took it.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then Esau said, \"Let us journey on our way, and I will go alongside you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> But Jacob said to him, \"My lord knows that the children are frail and that the flocks and herds, which are nursing, are a care to me; and if they are overdriven for one day, all the flocks will die.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Let my lord pass on ahead of his servant, and I will lead on slowly, according to the pace of the cattle that are before me and according to the pace of the children, until I come to my lord in Seir.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> So Esau said, \"Let me leave with you some of the people who are with me.\" But he said, \"Why should my lord be so kind to me?\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> So Esau returned that day on his way to Seir.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> But Jacob journeyed to Succoth, and built himself a house, and made booths for his cattle; therefore the place is called Succoth. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Jacob came safely to the city of Shechem, which is in the land of Canaan, on his way from Paddan-aram; and he camped before the city.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> And from the sons of Hamor, Shechem's father, he bought for one hundred pieces of money the plot of land on which he had pitched his tent. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> There he erected an altar and called it El-Elohe-Israel. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"34\">\r\n\t\t\t<VERS vnumber=\"1\"> Now Dinah the daughter of Leah, whom she had borne to Jacob, went out to visit the women of the region.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> When Shechem son of Hamor the Hivite, prince of the region, saw her, he seized her and lay with her by force.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And his soul was drawn to Dinah daughter of Jacob; he loved the girl, and spoke tenderly to her.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> So Shechem spoke to his father Hamor, saying, \"Get me this girl to be my wife.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Now Jacob heard that Shechem had defiled his daughter Dinah; but his sons were with his cattle in the field, so Jacob held his peace until they came. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And Hamor the father of Shechem went out to Jacob to speak with him,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> just as the sons of Jacob came in from the field. When they heard of it, the men were indignant and very angry, because he had committed an outrage in Israel by lying with Jacob's daughter, for such a thing ought not to be done.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But Hamor spoke with them, saying, \"The heart of my son Shechem longs for your daughter; please give her to him in marriage.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Make marriages with us; give your daughters to us, and take our daughters for yourselves.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> You shall live with us; and the land shall be open to you; live and trade in it, and get property in it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Shechem also said to her father and to her brothers, \"Let me find favor with you, and whatever you say to me I will give.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Put the marriage present and gift as high as you like, and I will give whatever you ask me; only give me the girl to be my wife.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The sons of Jacob answered Shechem and his father Hamor deceitfully, because he had defiled their sister Dinah.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> They said to them, \"We cannot do this thing, to give our sister to one who is uncircumcised, for that would be a disgrace to us.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Only on this condition will we consent to you: that you will become as we are and every male among you be circumcised.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then we will give our daughters to you, and we will take your daughters for ourselves, and we will live among you and become one people.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> But if you will not listen to us and be circumcised, then we will take our daughter and be gone.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Their words pleased Hamor and Hamor's son Shechem.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> And the young man did not delay to do the thing, because he was delighted with Jacob's daughter. Now he was the most honored of all his family.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> So Hamor and his son Shechem came to the gate of their city and spoke to the men of their city, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> \"These people are friendly with us; let them live in the land and trade in it, for the land is large enough for them; let us take their daughters in marriage, and let us give them our daughters.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Only on this condition will they agree to live among us, to become one people: that every male among us be circumcised as they are circumcised.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Will not their livestock, their property, and all their animals be ours? Only let us agree with them, and they will live among us.\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> And all who went out of the city gate heeded Hamor and his son Shechem; and every male was circumcised, all who went out of the gate of his city.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> On the third day, when they were still in pain, two of the sons of Jacob, Simeon and Levi, Dinah's brothers, took their swords and came against the city unawares, and killed all the males.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> They killed Hamor and his son Shechem with the sword, and took Dinah out of Shechem's house, and went away.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> And the other sons of Jacob came upon the slain, and plundered the city, because their sister had been defiled.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> They took their flocks and their herds, their donkeys, and whatever was in the city and in the field.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> All their wealth, all their little ones and their wives, all that was in the houses, they captured and made their prey.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Then Jacob said to Simeon and Levi, \"You have brought trouble on me by making me odious to the inhabitants of the land, the Canaanites and the Perizzites; my numbers are few, and if they gather themselves against me and attack me, I shall be destroyed, both I and my household.\"</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> But they said, \"Should our sister be treated like a whore?\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"35\">\r\n\t\t\t<VERS vnumber=\"1\"> God said to Jacob, \"Arise, go up to Bethel, and settle there. Make an altar there to the God who appeared to you when you fled from your brother Esau.\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> So Jacob said to his household and to all who were with him, \"Put away the foreign gods that are among you, and purify yourselves, and change your clothes;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> then come, let us go up to Bethel, that I may make an altar there to the God who answered me in the day of my distress and has been with me wherever I have gone.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> So they gave to Jacob all the foreign gods that they had, and the rings that were in their ears; and Jacob hid them under the oak that was near Shechem.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> As they journeyed, a terror from God fell upon the cities all around them, so that no one pursued them.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Jacob came to Luz (that is, Bethel), which is in the land of Canaan, he and all the people who were with him,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> and there he built an altar and called the place El-bethel, because it was there that God had revealed himself to him when he fled from his brother. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And Deborah, Rebekah's nurse, died, and she was buried under an oak below Bethel. So it was called Allon-bacuth. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> God appeared to Jacob again when he came from Paddan-aram, and he blessed him.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> God said to him, \"Your name is Jacob; no longer shall you be called Jacob, but Israel shall be your name.\" So he was called Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> God said to him, \"I am God Almighty: be fruitful and multiply; a nation and a company of nations shall come from you, and kings shall spring from you.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The land that I gave to Abraham and Isaac I will give to you, and I will give the land to your offspring after you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then God went up from him at the place where he had spoken with him.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Jacob set up a pillar in the place where he had spoken with him, a pillar of stone; and he poured out a drink offering on it, and poured oil on it.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> So Jacob called the place where God had spoken with him Bethel.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then they journeyed from Bethel; and when they were still some distance from Ephrath, Rachel was in childbirth, and she had hard labor.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> When she was in her hard labor, the midwife said to her, \"Do not be afraid; for now you will have another son.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> As her soul was departing (for she died), she named him Ben-oni; but his father called him Benjamin. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> So Rachel died, and she was buried on the way to Ephrath (that is, Bethlehem),</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> and Jacob set up a pillar at her grave; it is the pillar of Rachel's tomb, which is there to this day.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Israel journeyed on, and pitched his tent beyond the tower of Eder.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> While Israel lived in that land, Reuben went and lay with Bilhah his father's concubine; and Israel heard of it. Now the sons of Jacob were twelve.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> The sons of Leah: Reuben (Jacob's firstborn), Simeon, Levi, Judah, Issachar, and Zebulun.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> The sons of Rachel: Joseph and Benjamin.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> The sons of Bilhah, Rachel's maid: Dan and Naphtali.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> The sons of Zilpah, Leah's maid: Gad and Asher. These were the sons of Jacob who were born to him in Paddan-aram.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Jacob came to his father Isaac at Mamre, or Kiriath-arba (that is, Hebron), where Abraham and Isaac had resided as aliens.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Now the days of Isaac were one hundred eighty years.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> And Isaac breathed his last; he died and was gathered to his people, old and full of days; and his sons Esau and Jacob buried him.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"36\">\r\n\t\t\t<VERS vnumber=\"1\"> These are the descendants of Esau (that is, Edom).</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Esau took his wives from the Canaanites: Adah daughter of Elon the Hittite, Oholibamah daughter of Anah son of Zibeon the Hivite, </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> and Basemath, Ishmael's daughter, sister of Nebaioth.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Adah bore Eliphaz to Esau; Basemath bore Reuel;</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> and Oholibamah bore Jeush, Jalam, and Korah. These are the sons of Esau who were born to him in the land of Canaan.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then Esau took his wives, his sons, his daughters, and all the members of his household, his cattle, all his livestock, and all the property he had acquired in the land of Canaan; and he moved to a land some distance from his brother Jacob.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> For their possessions were too great for them to live together; the land where they were staying could not support them because of their livestock.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> So Esau settled in the hill country of Seir; Esau is Edom.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> These are the descendants of Esau, ancestor of the Edomites, in the hill country of Seir.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> These are the names of Esau's sons: Eliphaz son of Adah the wife of Esau; Reuel, the son of Esau's wife Basemath.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The sons of Eliphaz were Teman, Omar, Zepho, Gatam, and Kenaz.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> (Timna was a concubine of Eliphaz, Esau's son; she bore Amalek to Eliphaz.) These were the sons of Adah, Esau's wife.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> These were the sons of Reuel: Nahath, Zerah, Shammah, and Mizzah. These were the sons of Esau's wife, Basemath.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> These were the sons of Esau's wife Oholibamah, daughter of Anah son of Zibeon: she bore to Esau Jeush, Jalam, and Korah. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> These are the clans of the sons of Esau. The sons of Eliphaz the firstborn of Esau: the clans Teman, Omar, Zepho, Kenaz, </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Korah, Gatam, and Amalek; these are the clans of Eliphaz in the land of Edom; they are the sons of Adah. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> These are the sons of Esau's son Reuel: the clans Nahath, Zerah, Shammah, and Mizzah; these are the clans of Reuel in the land of Edom; they are the sons of Esau's wife Basemath. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> These are the sons of Esau's wife Oholibamah: the clans Jeush, Jalam, and Korah; these are the clans born of Esau's wife Oholibamah, the daughter of Anah. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> These are the sons of Esau (that is, Edom), and these are their clans. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> These are the sons of Seir the Horite, the inhabitants of the land: Lotan, Shobal, Zibeon, Anah,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Dishon, Ezer, and Dishan; these are the clans of the Horites, the sons of Seir in the land of Edom. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The sons of Lotan were Hori and Heman; and Lotan's sister was Timna.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> These are the sons of Shobal: Alvan, Manahath, Ebal, Shepho, and Onam.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> These are the sons of Zibeon: Aiah and Anah; he is the Anah who found the springs in the wilderness, as he pastured the donkeys of his father Zibeon. </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> These are the children of Anah: Dishon and Oholibamah daughter of Anah.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> These are the sons of Dishon: Hemdan, Eshban, Ithran, and Cheran.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> These are the sons of Ezer: Bilhan, Zaavan, and Akan.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> These are the sons of Dishan: Uz and Aran.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> These are the clans of the Horites: the clans Lotan, Shobal, Zibeon, Anah, </VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Dishon, Ezer, and Dishan; these are the clans of the Horites, clan by clan in the land of Seir. </VERS>\r\n\t\t\t<VERS vnumber=\"31\"> These are the kings who reigned in the land of Edom, before any king reigned over the Israelites.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Bela son of Beor reigned in Edom, the name of his city being Dinhabah.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Bela died, and Jobab son of Zerah of Bozrah succeeded him as king.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Jobab died, and Husham of the land of the Temanites succeeded him as king.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Husham died, and Hadad son of Bedad, who defeated Midian in the country of Moab, succeeded him as king, the name of his city being Avith.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Hadad died, and Samlah of Masrekah succeeded him as king.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Samlah died, and Shaul of Rehoboth on the Euphrates succeeded him as king.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Shaul died, and Baal-hanan son of Achbor succeeded him as king.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> Baal-hanan son of Achbor died, and Hadar succeeded him as king, the name of his city being Pau; his wife's name was Mehetabel, the daughter of Matred, daughter of Me-zahab.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> These are the names of the clans of Esau, according to their families and their localities by their names: the clans Timna, Alvah, Jetheth, </VERS>\r\n\t\t\t<VERS vnumber=\"41\"> Oholibamah, Elah, Pinon,</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> Kenaz, Teman, Mibzar,</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> Magdiel, and Iram; these are the clans of Edom (that is, Esau, the father of Edom), according to their settlements in the land that they held. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"37\">\r\n\t\t\t<VERS vnumber=\"1\"> Jacob settled in the land where his father had lived as an alien, the land of Canaan.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> This is the story of the family of Jacob. Joseph, being seventeen years old, was shepherding the flock with his brothers; he was a helper to the sons of Bilhah and Zilpah, his father's wives; and Joseph brought a bad report of them to their father.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Now Israel loved Joseph more than any other of his children, because he was the son of his old age; and he had made him a long robe with sleeves. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But when his brothers saw that their father loved him more than all his brothers, they hated him, and could not speak peaceably to him.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Once Joseph had a dream, and when he told it to his brothers, they hated him even more.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> He said to them, \"Listen to this dream that I dreamed.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> There we were, binding sheaves in the field. Suddenly my sheaf rose and stood upright; then your sheaves gathered around it, and bowed down to my sheaf.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> His brothers said to him, \"Are you indeed to reign over us? Are you indeed to have dominion over us?\" So they hated him even more because of his dreams and his words.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> He had another dream, and told it to his brothers, saying, \"Look, I have had another dream: the sun, the moon, and eleven stars were bowing down to me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> But when he told it to his father and to his brothers, his father rebuked him, and said to him, \"What kind of dream is this that you have had? Shall we indeed come, I and your mother and your brothers, and bow to the ground before you?\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> So his brothers were jealous of him, but his father kept the matter in mind.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Now his brothers went to pasture their father's flock near Shechem.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And Israel said to Joseph, \"Are not your brothers pasturing the flock at Shechem? Come, I will send you to them.\" He answered, \"Here I am.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> So he said to him, \"Go now, see if it is well with your brothers and with the flock; and bring word back to me.\" So he sent him from the valley of Hebron. He came to Shechem,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> and a man found him wandering in the fields; the man asked him, \"What are you seeking?\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> \"I am seeking my brothers,\" he said; \"tell me, please, where they are pasturing the flock.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The man said, \"They have gone away, for I heard them say, 'Let us go to Dothan.'\" So Joseph went after his brothers, and found them at Dothan.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> They saw him from a distance, and before he came near to them, they conspired to kill him.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> They said to one another, \"Here comes this dreamer.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Come now, let us kill him and throw him into one of the pits; then we shall say that a wild animal has devoured him, and we shall see what will become of his dreams.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> But when Reuben heard it, he delivered him out of their hands, saying, \"Let us not take his life.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Reuben said to them, \"Shed no blood; throw him into this pit here in the wilderness, but lay no hand on him\"-- that he might rescue him out of their hand and restore him to his father.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> So when Joseph came to his brothers, they stripped him of his robe, the long robe with sleeves that he wore; </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> and they took him and threw him into a pit. The pit was empty; there was no water in it.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Then they sat down to eat; and looking up they saw a caravan of Ishmaelites coming from Gilead, with their camels carrying gum, balm, and resin, on their way to carry it down to Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Then Judah said to his brothers, \"What profit is it if we kill our brother and conceal his blood?</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Come, let us sell him to the Ishmaelites, and not lay our hands on him, for he is our brother, our own flesh.\" And his brothers agreed.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> When some Midianite traders passed by, they drew Joseph up, lifting him out of the pit, and sold him to the Ishmaelites for twenty pieces of silver. And they took Joseph to Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> When Reuben returned to the pit and saw that Joseph was not in the pit, he tore his clothes.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> He returned to his brothers, and said, \"The boy is gone; and I, where can I turn?\"</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Then they took Joseph's robe, slaughtered a goat, and dipped the robe in the blood.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> They had the long robe with sleeves taken to their father, and they said, \"This we have found; see now whether it is your son's robe or not.\" </VERS>\r\n\t\t\t<VERS vnumber=\"33\"> He recognized it, and said, \"It is my son's robe! A wild animal has devoured him; Joseph is without doubt torn to pieces.\"</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Then Jacob tore his garments, and put sackcloth on his loins, and mourned for his son many days.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> All his sons and all his daughters sought to comfort him; but he refused to be comforted, and said, \"No, I shall go down to Sheol to my son, mourning.\" Thus his father bewailed him.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Meanwhile the Midianites had sold him in Egypt to Potiphar, one of Pharaoh's officials, the captain of the guard.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"38\">\r\n\t\t\t<VERS vnumber=\"1\"> It happened at that time that Judah went down from his brothers and settled near a certain Adullamite whose name was Hirah.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> There Judah saw the daughter of a certain Canaanite whose name was Shua; he married her and went in to her.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> She conceived and bore a son; and he named him Er.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Again she conceived and bore a son whom she named Onan.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Yet again she bore a son, and she named him Shelah. She was in Chezib when she bore him. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Judah took a wife for Er his firstborn; her name was Tamar.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But Er, Judah's firstborn, was wicked in the sight of the LORD, and the LORD put him to death.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then Judah said to Onan, \"Go in to your brother's wife and perform the duty of a brother-in-law to her; raise up offspring for your brother.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> But since Onan knew that the offspring would not be his, he spilled his semen on the ground whenever he went in to his brother's wife, so that he would not give offspring to his brother.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> What he did was displeasing in the sight of the LORD, and he put him to death also.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then Judah said to his daughter-in-law Tamar, \"Remain a widow in your father's house until my son Shelah grows up\"-- for he feared that he too would die, like his brothers. So Tamar went to live in her father's house.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> In course of time the wife of Judah, Shua's daughter, died; when Judah's time of mourning was over, he went up to Timnah to his sheepshearers, he and his friend Hirah the Adullamite. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> When Tamar was told, \"Your father-in-law is going up to Timnah to shear his sheep,\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> she put off her widow's garments, put on a veil, wrapped herself up, and sat down at the entrance to Enaim, which is on the road to Timnah. She saw that Shelah was grown up, yet she had not been given to him in marriage.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> When Judah saw her, he thought her to be a prostitute, for she had covered her face.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> He went over to her at the road side, and said, \"Come, let me come in to you,\" for he did not know that she was his daughter-in-law. She said, \"What will you give me, that you may come in to me?\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> He answered, \"I will send you a kid from the flock.\" And she said, \"Only if you give me a pledge, until you send it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> He said, \"What pledge shall I give you?\" She replied, \"Your signet and your cord, and the staff that is in your hand.\" So he gave them to her, and went in to her, and she conceived by him.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Then she got up and went away, and taking off her veil she put on the garments of her widowhood.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> When Judah sent the kid by his friend the Adullamite, to recover the pledge from the woman, he could not find her.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> He asked the townspeople, \"Where is the temple prostitute who was at Enaim by the wayside?\" But they said, \"No prostitute has been here.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> So he returned to Judah, and said, \"I have not found her; moreover the townspeople said, 'No prostitute has been here.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Judah replied, \"Let her keep the things as her own, otherwise we will be laughed at; you see, I sent this kid, and you could not find her.\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> About three months later Judah was told, \"Your daughter-in-law Tamar has played the whore; moreover she is pregnant as a result of whoredom.\" And Judah said, \"Bring her out, and let her be burned.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> As she was being brought out, she sent word to her father-in-law, \"It was the owner of these who made me pregnant.\" And she said, \"Take note, please, whose these are, the signet and the cord and the staff.\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Then Judah acknowledged them and said, \"She is more in the right than I, since I did not give her to my son Shelah.\" And he did not lie with her again.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> When the time of her delivery came, there were twins in her womb.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> While she was in labor, one put out a hand; and the midwife took and bound on his hand a crimson thread, saying, \"This one came out first.\"</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> But just then he drew back his hand, and out came his brother; and she said, \"What a breach you have made for yourself!\" Therefore he was named Perez. </VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Afterward his brother came out with the crimson thread on his hand; and he was named Zerah. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"39\">\r\n\t\t\t<VERS vnumber=\"1\"> Now Joseph was taken down to Egypt, and Potiphar, an officer of Pharaoh, the captain of the guard, an Egyptian, bought him from the Ishmaelites who had brought him down there.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The LORD was with Joseph, and he became a successful man; he was in the house of his Egyptian master.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> His master saw that the LORD was with him, and that the LORD caused all that he did to prosper in his hands.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> So Joseph found favor in his sight and attended him; he made him overseer of his house and put him in charge of all that he had.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> From the time that he made him overseer in his house and over all that he had, the LORD blessed the Egyptian's house for Joseph's sake; the blessing of the LORD was on all that he had, in house and field.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> So he left all that he had in Joseph's charge; and, with him there, he had no concern for anything but the food that he ate. Now Joseph was handsome and good-looking.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> And after a time his master's wife cast her eyes on Joseph and said, \"Lie with me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But he refused and said to his master's wife, \"Look, with me here, my master has no concern about anything in the house, and he has put everything that he has in my hand.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> He is not greater in this house than I am, nor has he kept back anything from me except yourself, because you are his wife. How then could I do this great wickedness, and sin against God?\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And although she spoke to Joseph day after day, he would not consent to lie beside her or to be with her.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> One day, however, when he went into the house to do his work, and while no one else was in the house,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> she caught hold of his garment, saying, \"Lie with me!\" But he left his garment in her hand, and fled and ran outside.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> When she saw that he had left his garment in her hand and had fled outside,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> she called out to the members of her household and said to them, \"See, my husband has brought among us a Hebrew to insult us! He came in to me to lie with me, and I cried out with a loud voice; </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> and when he heard me raise my voice and cry out, he left his garment beside me, and fled outside.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then she kept his garment by her until his master came home,</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> and she told him the same story, saying, \"The Hebrew servant, whom you have brought among us, came in to me to insult me;</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> but as soon as I raised my voice and cried out, he left his garment beside me, and fled outside.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> When his master heard the words that his wife spoke to him, saying, \"This is the way your servant treated me,\" he became enraged.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> And Joseph's master took him and put him into the prison, the place where the king's prisoners were confined; he remained there in prison.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> But the LORD was with Joseph and showed him steadfast love; he gave him favor in the sight of the chief jailer.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The chief jailer committed to Joseph's care all the prisoners who were in the prison, and whatever was done there, he was the one who did it.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> The chief jailer paid no heed to anything that was in Joseph's care, because the LORD was with him; and whatever he did, the LORD made it prosper.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"40\">\r\n\t\t\t<VERS vnumber=\"1\"> Some time after this, the cupbearer of the king of Egypt and his baker offended their lord the king of Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Pharaoh was angry with his two officers, the chief cupbearer and the chief baker,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> and he put them in custody in the house of the captain of the guard, in the prison where Joseph was confined.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The captain of the guard charged Joseph with them, and he waited on them; and they continued for some time in custody.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> One night they both dreamed-- the cupbearer and the baker of the king of Egypt, who were confined in the prison-- each his own dream, and each dream with its own meaning.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> When Joseph came to them in the morning, he saw that they were troubled.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> So he asked Pharaoh's officers, who were with him in custody in his master's house, \"Why are your faces downcast today?\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> They said to him, \"We have had dreams, and there is no one to interpret them.\" And Joseph said to them, \"Do not interpretations belong to God? Please tell them to me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> So the chief cupbearer told his dream to Joseph, and said to him, \"In my dream there was a vine before me,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> and on the vine there were three branches. As soon as it budded, its blossoms came out and the clusters ripened into grapes.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Pharaoh's cup was in my hand; and I took the grapes and pressed them into Pharaoh's cup, and placed the cup in Pharaoh's hand.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then Joseph said to him, \"This is its interpretation: the three branches are three days;</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> within three days Pharaoh will lift up your head and restore you to your office; and you shall place Pharaoh's cup in his hand, just as you used to do when you were his cupbearer.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But remember me when it is well with you; please do me the kindness to make mention of me to Pharaoh, and so get me out of this place.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> For in fact I was stolen out of the land of the Hebrews; and here also I have done nothing that they should have put me into the dungeon.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> When the chief baker saw that the interpretation was favorable, he said to Joseph, \"I also had a dream: there were three cake baskets on my head,</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> and in the uppermost basket there were all sorts of baked food for Pharaoh, but the birds were eating it out of the basket on my head.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> And Joseph answered, \"This is its interpretation: the three baskets are three days;</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> within three days Pharaoh will lift up your head-- from you!-- and hang you on a pole; and the birds will eat the flesh from you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> On the third day, which was Pharaoh's birthday, he made a feast for all his servants, and lifted up the head of the chief cupbearer and the head of the chief baker among his servants.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> He restored the chief cupbearer to his cupbearing, and he placed the cup in Pharaoh's hand;</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> but the chief baker he hanged, just as Joseph had interpreted to them.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Yet the chief cupbearer did not remember Joseph, but forgot him.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"41\">\r\n\t\t\t<VERS vnumber=\"1\"> After two whole years, Pharaoh dreamed that he was standing by the Nile,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> and there came up out of the Nile seven sleek and fat cows, and they grazed in the reed grass.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then seven other cows, ugly and thin, came up out of the Nile after them, and stood by the other cows on the bank of the Nile.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The ugly and thin cows ate up the seven sleek and fat cows. And Pharaoh awoke.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then he fell asleep and dreamed a second time; seven ears of grain, plump and good, were growing on one stalk.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then seven ears, thin and blighted by the east wind, sprouted after them.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The thin ears swallowed up the seven plump and full ears. Pharaoh awoke, and it was a dream.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> In the morning his spirit was troubled; so he sent and called for all the magicians of Egypt and all its wise men. Pharaoh told them his dreams, but there was no one who could interpret them to Pharaoh.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then the chief cupbearer said to Pharaoh, \"I remember my faults today.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Once Pharaoh was angry with his servants, and put me and the chief baker in custody in the house of the captain of the guard.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> We dreamed on the same night, he and I, each having a dream with its own meaning.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> A young Hebrew was there with us, a servant of the captain of the guard. When we told him, he interpreted our dreams to us, giving an interpretation to each according to his dream.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> As he interpreted to us, so it turned out; I was restored to my office, and the baker was hanged.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then Pharaoh sent for Joseph, and he was hurriedly brought out of the dungeon. When he had shaved himself and changed his clothes, he came in before Pharaoh.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And Pharaoh said to Joseph, \"I have had a dream, and there is no one who can interpret it. I have heard it said of you that when you hear a dream you can interpret it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Joseph answered Pharaoh, \"It is not I; God will give Pharaoh a favorable answer.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then Pharaoh said to Joseph, \"In my dream I was standing on the banks of the Nile;</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> and seven cows, fat and sleek, came up out of the Nile and fed in the reed grass.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Then seven other cows came up after them, poor, very ugly, and thin. Never had I seen such ugly ones in all the land of Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The thin and ugly cows ate up the first seven fat cows,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> but when they had eaten them no one would have known that they had done so, for they were still as ugly as before. Then I awoke.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> I fell asleep a second time and I saw in my dream seven ears of grain, full and good, growing on one stalk, </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> and seven ears, withered, thin, and blighted by the east wind, sprouting after them;</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> and the thin ears swallowed up the seven good ears. But when I told it to the magicians, there was no one who could explain it to me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Then Joseph said to Pharaoh, \"Pharaoh's dreams are one and the same; God has revealed to Pharaoh what he is about to do.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> The seven good cows are seven years, and the seven good ears are seven years; the dreams are one.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> The seven lean and ugly cows that came up after them are seven years, as are the seven empty ears blighted by the east wind. They are seven years of famine.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> It is as I told Pharaoh; God has shown to Pharaoh what he is about to do.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> There will come seven years of great plenty throughout all the land of Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> After them there will arise seven years of famine, and all the plenty will be forgotten in the land of Egypt; the famine will consume the land.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> The plenty will no longer be known in the land because of the famine that will follow, for it will be very grievous.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> And the doubling of Pharaoh's dream means that the thing is fixed by God, and God will shortly bring it about.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Now therefore let Pharaoh select a man who is discerning and wise, and set him over the land of Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Let Pharaoh proceed to appoint overseers over the land, and take one-fifth of the produce of the land of Egypt during the seven plenteous years.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Let them gather all the food of these good years that are coming, and lay up grain under the authority of Pharaoh for food in the cities, and let them keep it.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> That food shall be a reserve for the land against the seven years of famine that are to befall the land of Egypt, so that the land may not perish through the famine.\"</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> The proposal pleased Pharaoh and all his servants.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Pharaoh said to his servants, \"Can we find anyone else like this-- one in whom is the spirit of God?\"</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> So Pharaoh said to Joseph, \"Since God has shown you all this, there is no one so discerning and wise as you.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> You shall be over my house, and all my people shall order themselves as you command; only with regard to the throne will I be greater than you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> And Pharaoh said to Joseph, \"See, I have set you over all the land of Egypt.\"</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> Removing his signet ring from his hand, Pharaoh put it on Joseph's hand; he arrayed him in garments of fine linen, and put a gold chain around his neck.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> He had him ride in the chariot of his second-in-command; and they cried out in front of him, \"Bow the knee!\" Thus he set him over all the land of Egypt. </VERS>\r\n\t\t\t<VERS vnumber=\"44\"> Moreover Pharaoh said to Joseph, \"I am Pharaoh, and without your consent no one shall lift up hand or foot in all the land of Egypt.\"</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> Pharaoh gave Joseph the name Zaphenath-paneah; and he gave him Asenath daughter of Potiphera, priest of On, as his wife. Thus Joseph gained authority over the land of Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> Joseph was thirty years old when he entered the service of Pharaoh king of Egypt. And Joseph went out from the presence of Pharaoh, and went through all the land of Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> During the seven plenteous years the earth produced abundantly.</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> He gathered up all the food of the seven years when there was plenty in the land of Egypt, and stored up food in the cities; he stored up in every city the food from the fields around it. </VERS>\r\n\t\t\t<VERS vnumber=\"49\"> So Joseph stored up grain in such abundance-- like the sand of the sea-- that he stopped measuring it; it was beyond measure.</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> Before the years of famine came, Joseph had two sons, whom Asenath daughter of Potiphera, priest of On, bore to him.</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> Joseph named the firstborn Manasseh, \"For,\" he said, \"God has made me forget all my hardship and all my father's house.\" </VERS>\r\n\t\t\t<VERS vnumber=\"52\"> The second he named Ephraim, \"For God has made me fruitful in the land of my misfortunes.\" </VERS>\r\n\t\t\t<VERS vnumber=\"53\"> The seven years of plenty that prevailed in the land of Egypt came to an end;</VERS>\r\n\t\t\t<VERS vnumber=\"54\"> and the seven years of famine began to come, just as Joseph had said. There was famine in every country, but throughout the land of Egypt there was bread.</VERS>\r\n\t\t\t<VERS vnumber=\"55\"> When all the land of Egypt was famished, the people cried to Pharaoh for bread. Pharaoh said to all the Egyptians, \"Go to Joseph; what he says to you, do.\"</VERS>\r\n\t\t\t<VERS vnumber=\"56\"> And since the famine had spread over all the land, Joseph opened all the storehouses, and sold to the Egyptians, for the famine was severe in the land of Egypt. </VERS>\r\n\t\t\t<VERS vnumber=\"57\"> Moreover, all the world came to Joseph in Egypt to buy grain, because the famine became severe throughout the world.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"42\">\r\n\t\t\t<VERS vnumber=\"1\"> When Jacob learned that there was grain in Egypt, he said to his sons, \"Why do you keep looking at one another?</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> I have heard,\" he said, \"that there is grain in Egypt; go down and buy grain for us there, that we may live and not die.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> So ten of Joseph's brothers went down to buy grain in Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But Jacob did not send Joseph's brother Benjamin with his brothers, for he feared that harm might come to him.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Thus the sons of Israel were among the other people who came to buy grain, for the famine had reached the land of Canaan.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Now Joseph was governor over the land; it was he who sold to all the people of the land. And Joseph's brothers came and bowed themselves before him with their faces to the ground.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> When Joseph saw his brothers, he recognized them, but he treated them like strangers and spoke harshly to them. \"Where do you come from?\" he said. They said, \"From the land of Canaan, to buy food.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Although Joseph had recognized his brothers, they did not recognize him.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Joseph also remembered the dreams that he had dreamed about them. He said to them, \"You are spies; you have come to see the nakedness of the land!\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> They said to him, \"No, my lord; your servants have come to buy food.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> We are all sons of one man; we are honest men; your servants have never been spies.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> But he said to them, \"No, you have come to see the nakedness of the land!\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> They said, \"We, your servants, are twelve brothers, the sons of a certain man in the land of Canaan; the youngest, however, is now with our father, and one is no more.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But Joseph said to them, \"It is just as I have said to you; you are spies!</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Here is how you shall be tested: as Pharaoh lives, you shall not leave this place unless your youngest brother comes here!</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Let one of you go and bring your brother, while the rest of you remain in prison, in order that your words may be tested, whether there is truth in you; or else, as Pharaoh lives, surely you are spies.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> And he put them all together in prison for three days.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> On the third day Joseph said to them, \"Do this and you will live, for I fear God:</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> if you are honest men, let one of your brothers stay here where you are imprisoned. The rest of you shall go and carry grain for the famine of your households,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> and bring your youngest brother to me. Thus your words will be verified, and you shall not die.\" And they agreed to do so.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> They said to one another, \"Alas, we are paying the penalty for what we did to our brother; we saw his anguish when he pleaded with us, but we would not listen. That is why this anguish has come upon us.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Then Reuben answered them, \"Did I not tell you not to wrong the boy? But you would not listen. So now there comes a reckoning for his blood.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> They did not know that Joseph understood them, since he spoke with them through an interpreter.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> He turned away from them and wept; then he returned and spoke to them. And he picked out Simeon and had him bound before their eyes.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Joseph then gave orders to fill their bags with grain, to return every man's money to his sack, and to give them provisions for their journey. This was done for them.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> They loaded their donkeys with their grain, and departed.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> When one of them opened his sack to give his donkey fodder at the lodging place, he saw his money at the top of the sack.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> He said to his brothers, \"My money has been put back; here it is in my sack!\" At this they lost heart and turned trembling to one another, saying, \"What is this that God has done to us?\"</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> When they came to their father Jacob in the land of Canaan, they told him all that had happened to them, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> \"The man, the lord of the land, spoke harshly to us, and charged us with spying on the land.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> But we said to him, 'We are honest men, we are not spies.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> We are twelve brothers, sons of our father; one is no more, and the youngest is now with our father in the land of Canaan.'</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Then the man, the lord of the land, said to us, 'By this I shall know that you are honest men: leave one of your brothers with me, take grain for the famine of your households, and go your way.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Bring your youngest brother to me, and I shall know that you are not spies but honest men. Then I will release your brother to you, and you may trade in the land.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> As they were emptying their sacks, there in each one's sack was his bag of money. When they and their father saw their bundles of money, they were dismayed.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> And their father Jacob said to them, \"I am the one you have bereaved of children: Joseph is no more, and Simeon is no more, and now you would take Benjamin. All this has happened to me!\"</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Then Reuben said to his father, \"You may kill my two sons if I do not bring him back to you. Put him in my hands, and I will bring him back to you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> But he said, \"My son shall not go down with you, for his brother is dead, and he alone is left. If harm should come to him on the journey that you are to make, you would bring down my gray hairs with sorrow to Sheol.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"43\">\r\n\t\t\t<VERS vnumber=\"1\"> Now the famine was severe in the land.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And when they had eaten up the grain that they had brought from Egypt, their father said to them, \"Go again, buy us a little more food.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> But Judah said to him, \"The man solemnly warned us, saying, 'You shall not see my face unless your brother is with you.'</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> If you will send our brother with us, we will go down and buy you food;</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> but if you will not send him, we will not go down, for the man said to us, 'You shall not see my face, unless your brother is with you.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Israel said, \"Why did you treat me so badly as to tell the man that you had another brother?\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> They replied, \"The man questioned us carefully about ourselves and our kindred, saying, 'Is your father still alive? Have you another brother?' What we told him was in answer to these questions. Could we in any way know that he would say, 'Bring your brother down'?\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then Judah said to his father Israel, \"Send the boy with me, and let us be on our way, so that we may live and not die-- you and we and also our little ones.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> I myself will be surety for him; you can hold me accountable for him. If I do not bring him back to you and set him before you, then let me bear the blame forever.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> If we had not delayed, we would now have returned twice.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then their father Israel said to them, \"If it must be so, then do this: take some of the choice fruits of the land in your bags, and carry them down as a present to the man-- a little balm and a little honey, gum, resin, pistachio nuts, and almonds.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Take double the money with you. Carry back with you the money that was returned in the top of your sacks; perhaps it was an oversight.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Take your brother also, and be on your way again to the man;</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> may God Almighty grant you mercy before the man, so that he may send back your other brother and Benjamin. As for me, if I am bereaved of my children, I am bereaved.\" </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> So the men took the present, and they took double the money with them, as well as Benjamin. Then they went on their way down to Egypt, and stood before Joseph.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> When Joseph saw Benjamin with them, he said to the steward of his house, \"Bring the men into the house, and slaughter an animal and make ready, for the men are to dine with me at noon.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The man did as Joseph said, and brought the men to Joseph's house.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Now the men were afraid because they were brought to Joseph's house, and they said, \"It is because of the money, replaced in our sacks the first time, that we have been brought in, so that he may have an opportunity to fall upon us, to make slaves of us and take our donkeys.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> So they went up to the steward of Joseph's house and spoke with him at the entrance to the house.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> They said, \"Oh, my lord, we came down the first time to buy food;</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> and when we came to the lodging place we opened our sacks, and there was each one's money in the top of his sack, our money in full weight. So we have brought it back with us.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Moreover we have brought down with us additional money to buy food. We do not know who put our money in our sacks.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> He replied, \"Rest assured, do not be afraid; your God and the God of your father must have put treasure in your sacks for you; I received your money.\" Then he brought Simeon out to them.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> When the steward had brought the men into Joseph's house, and given them water, and they had washed their feet, and when he had given their donkeys fodder, </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> they made the present ready for Joseph's coming at noon, for they had heard that they would dine there.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> When Joseph came home, they brought him the present that they had carried into the house, and bowed to the ground before him.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> He inquired about their welfare, and said, \"Is your father well, the old man of whom you spoke? Is he still alive?\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> They said, \"Your servant our father is well; he is still alive.\" And they bowed their heads and did obeisance.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Then he looked up and saw his brother Benjamin, his mother's son, and said, \"Is this your youngest brother, of whom you spoke to me? God be gracious to you, my son!\"</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> With that, Joseph hurried out, because he was overcome with affection for his brother, and he was about to weep. So he went into a private room and wept there.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Then he washed his face and came out; and controlling himself he said, \"Serve the meal.\"</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> They served him by himself, and them by themselves, and the Egyptians who ate with him by themselves, because the Egyptians could not eat with the Hebrews, for that is an abomination to the Egyptians.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> When they were seated before him, the firstborn according to his birthright and the youngest according to his youth, the men looked at one another in amazement.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Portions were taken to them from Joseph's table, but Benjamin's portion was five times as much as any of theirs. So they drank and were merry with him.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"44\">\r\n\t\t\t<VERS vnumber=\"1\"> Then he commanded the steward of his house, \"Fill the men's sacks with food, as much as they can carry, and put each man's money in the top of his sack.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Put my cup, the silver cup, in the top of the sack of the youngest, with his money for the grain.\" And he did as Joseph told him.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> As soon as the morning was light, the men were sent away with their donkeys.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> When they had gone only a short distance from the city, Joseph said to his steward, \"Go, follow after the men; and when you overtake them, say to them, 'Why have you returned evil for good? Why have you stolen my silver cup? </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Is it not from this that my lord drinks? Does he not indeed use it for divination? You have done wrong in doing this.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> When he overtook them, he repeated these words to them.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> They said to him, \"Why does my lord speak such words as these? Far be it from your servants that they should do such a thing!</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Look, the money that we found at the top of our sacks, we brought back to you from the land of Canaan; why then would we steal silver or gold from your lord's house?</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Should it be found with any one of your servants, let him die; moreover the rest of us will become my lord's slaves.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> He said, \"Even so; in accordance with your words, let it be: he with whom it is found shall become my slave, but the rest of you shall go free.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then each one quickly lowered his sack to the ground, and each opened his sack.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> He searched, beginning with the eldest and ending with the youngest; and the cup was found in Benjamin's sack.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> At this they tore their clothes. Then each one loaded his donkey, and they returned to the city.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Judah and his brothers came to Joseph's house while he was still there; and they fell to the ground before him.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Joseph said to them, \"What deed is this that you have done? Do you not know that one such as I can practice divination?\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> And Judah said, \"What can we say to my lord? What can we speak? How can we clear ourselves? God has found out the guilt of your servants; here we are then, my lord's slaves, both we and also the one in whose possession the cup has been found.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> But he said, \"Far be it from me that I should do so! Only the one in whose possession the cup was found shall be my slave; but as for you, go up in peace to your father.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then Judah stepped up to him and said, \"O my lord, let your servant please speak a word in my lord's ears, and do not be angry with your servant; for you are like Pharaoh himself.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> My lord asked his servants, saying, 'Have you a father or a brother?'</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> And we said to my lord, 'We have a father, an old man, and a young brother, the child of his old age. His brother is dead; he alone is left of his mother's children, and his father loves him.'</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then you said to your servants, 'Bring him down to me, so that I may set my eyes on him.'</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> We said to my lord, 'The boy cannot leave his father, for if he should leave his father, his father would die.'</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Then you said to your servants, 'Unless your youngest brother comes down with you, you shall see my face no more.'</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> When we went back to your servant my father we told him the words of my lord.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> And when our father said, 'Go again, buy us a little food,'</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> we said, 'We cannot go down. Only if our youngest brother goes with us, will we go down; for we cannot see the man's face unless our youngest brother is with us.'</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Then your servant my father said to us, 'You know that my wife bore me two sons;</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> one left me, and I said, Surely he has been torn to pieces; and I have never seen him since.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> If you take this one also from me, and harm comes to him, you will bring down my gray hairs in sorrow to Sheol.'</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Now therefore, when I come to your servant my father and the boy is not with us, then, as his life is bound up in the boy's life,</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> when he sees that the boy is not with us, he will die; and your servants will bring down the gray hairs of your servant our father with sorrow to Sheol.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> For your servant became surety for the boy to my father, saying, 'If I do not bring him back to you, then I will bear the blame in the sight of my father all my life.'</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Now therefore, please let your servant remain as a slave to my lord in place of the boy; and let the boy go back with his brothers.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> For how can I go back to my father if the boy is not with me? I fear to see the suffering that would come upon my father.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"45\">\r\n\t\t\t<VERS vnumber=\"1\"> Then Joseph could no longer control himself before all those who stood by him, and he cried out, \"Send everyone away from me.\" So no one stayed with him when Joseph made himself known to his brothers.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And he wept so loudly that the Egyptians heard it, and the household of Pharaoh heard it.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Joseph said to his brothers, \"I am Joseph. Is my father still alive?\" But his brothers could not answer him, so dismayed were they at his presence.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then Joseph said to his brothers, \"Come closer to me.\" And they came closer. He said, \"I am your brother, Joseph, whom you sold into Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> And now do not be distressed, or angry with yourselves, because you sold me here; for God sent me before you to preserve life.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For the famine has been in the land these two years; and there are five more years in which there will be neither plowing nor harvest.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> God sent me before you to preserve for you a remnant on earth, and to keep alive for you many survivors.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> So it was not you who sent me here, but God; he has made me a father to Pharaoh, and lord of all his house and ruler over all the land of Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Hurry and go up to my father and say to him, 'Thus says your son Joseph, God has made me lord of all Egypt; come down to me, do not delay.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> You shall settle in the land of Goshen, and you shall be near me, you and your children and your children's children, as well as your flocks, your herds, and all that you have.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> I will provide for you there-- since there are five more years of famine to come-- so that you and your household, and all that you have, will not come to poverty.'</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> And now your eyes and the eyes of my brother Benjamin see that it is my own mouth that speaks to you.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> You must tell my father how greatly I am honored in Egypt, and all that you have seen. Hurry and bring my father down here.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then he fell upon his brother Benjamin's neck and wept, while Benjamin wept upon his neck.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And he kissed all his brothers and wept upon them; and after that his brothers talked with him.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> When the report was heard in Pharaoh's house, \"Joseph's brothers have come,\" Pharaoh and his servants were pleased.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Pharaoh said to Joseph, \"Say to your brothers, 'Do this: load your animals and go back to the land of Canaan.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Take your father and your households and come to me, so that I may give you the best of the land of Egypt, and you may enjoy the fat of the land.'</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> You are further charged to say, 'Do this: take wagons from the land of Egypt for your little ones and for your wives, and bring your father, and come.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Give no thought to your possessions, for the best of all the land of Egypt is yours.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> The sons of Israel did so. Joseph gave them wagons according to the instruction of Pharaoh, and he gave them provisions for the journey.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> To each one of them he gave a set of garments; but to Benjamin he gave three hundred pieces of silver and five sets of garments.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> To his father he sent the following: ten donkeys loaded with the good things of Egypt, and ten female donkeys loaded with grain, bread, and provision for his father on the journey.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Then he sent his brothers on their way, and as they were leaving he said to them, \"Do not quarrel along the way.\" </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> So they went up out of Egypt and came to their father Jacob in the land of Canaan.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> And they told him, \"Joseph is still alive! He is even ruler over all the land of Egypt.\" He was stunned; he could not believe them.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> But when they told him all the words of Joseph that he had said to them, and when he saw the wagons that Joseph had sent to carry him, the spirit of their father Jacob revived.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Israel said, \"Enough! My son Joseph is still alive. I must go and see him before I die.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"46\">\r\n\t\t\t<VERS vnumber=\"1\"> When Israel set out on his journey with all that he had and came to Beer-sheba, he offered sacrifices to the God of his father Isaac.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> God spoke to Israel in visions of the night, and said, \"Jacob, Jacob.\" And he said, \"Here I am.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then he said, \"I am God, the God of your father; do not be afraid to go down to Egypt, for I will make of you a great nation there.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> I myself will go down with you to Egypt, and I will also bring you up again; and Joseph's own hand shall close your eyes.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then Jacob set out from Beer-sheba; and the sons of Israel carried their father Jacob, their little ones, and their wives, in the wagons that Pharaoh had sent to carry him.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> They also took their livestock and the goods that they had acquired in the land of Canaan, and they came into Egypt, Jacob and all his offspring with him,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> his sons, and his sons' sons with him, his daughters, and his sons' daughters; all his offspring he brought with him into Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Now these are the names of the Israelites, Jacob and his offspring, who came to Egypt. Reuben, Jacob's firstborn,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> and the children of Reuben: Hanoch, Pallu, Hezron, and Carmi.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The children of Simeon: Jemuel, Jamin, Ohad, Jachin, Zohar, and Shaul, the son of a Canaanite woman. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The children of Levi: Gershon, Kohath, and Merari.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The children of Judah: Er, Onan, Shelah, Perez, and Zerah (but Er and Onan died in the land of Canaan); and the children of Perez were Hezron and Hamul.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The children of Issachar: Tola, Puvah, Jashub, and Shimron. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The children of Zebulun: Sered, Elon, and Jahleel</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> (these are the sons of Leah, whom she bore to Jacob in Paddan-aram, together with his daughter Dinah; in all his sons and his daughters numbered thirty-three).</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The children of Gad: Ziphion, Haggi, Shuni, Ezbon, Eri, Arodi, and Areli.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The children of Asher: Imnah, Ishvah, Ishvi, Beriah, and their sister Serah. The children of Beriah: Heber and Malchiel</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> (these are the children of Zilpah, whom Laban gave to his daughter Leah; and these she bore to Jacob-- sixteen persons).</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The children of Jacob's wife Rachel: Joseph and Benjamin.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> To Joseph in the land of Egypt were born Manasseh and Ephraim, whom Asenath daughter of Potiphera, priest of On, bore to him.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> The children of Benjamin: Bela, Becher, Ashbel, Gera, Naaman, Ehi, Rosh, Muppim, Huppim, and Ard</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> (these are the children of Rachel, who were born to Jacob-- fourteen persons in all).</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> The children of Dan: Hashum. </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> The children of Naphtali: Jahzeel, Guni, Jezer, and Shillem</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> (these are the children of Bilhah, whom Laban gave to his daughter Rachel, and these she bore to Jacob-- seven persons in all).</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> All the persons belonging to Jacob who came into Egypt, who were his own offspring, not including the wives of his sons, were sixty-six persons in all.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> The children of Joseph, who were born to him in Egypt, were two; all the persons of the house of Jacob who came into Egypt were seventy.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Israel sent Judah ahead to Joseph to lead the way before him into Goshen. When they came to the land of Goshen, </VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Joseph made ready his chariot and went up to meet his father Israel in Goshen. He presented himself to him, fell on his neck, and wept on his neck a good while.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Israel said to Joseph, \"I can die now, having seen for myself that you are still alive.\"</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Joseph said to his brothers and to his father's household, \"I will go up and tell Pharaoh, and will say to him, 'My brothers and my father's household, who were in the land of Canaan, have come to me.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> The men are shepherds, for they have been keepers of livestock; and they have brought their flocks, and their herds, and all that they have.'</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> When Pharaoh calls you, and says, 'What is your occupation?'</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> you shall say, 'Your servants have been keepers of livestock from our youth even until now, both we and our ancestors'-- in order that you may settle in the land of Goshen, because all shepherds are abhorrent to the Egyptians.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"47\">\r\n\t\t\t<VERS vnumber=\"1\"> So Joseph went and told Pharaoh, \"My father and my brothers, with their flocks and herds and all that they possess, have come from the land of Canaan; they are now in the land of Goshen.\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> From among his brothers he took five men and presented them to Pharaoh.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Pharaoh said to his brothers, \"What is your occupation?\" And they said to Pharaoh, \"Your servants are shepherds, as our ancestors were.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> They said to Pharaoh, \"We have come to reside as aliens in the land; for there is no pasture for your servants' flocks because the famine is severe in the land of Canaan. Now, we ask you, let your servants settle in the land of Goshen.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then Pharaoh said to Joseph, \"Your father and your brothers have come to you.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The land of Egypt is before you; settle your father and your brothers in the best part of the land; let them live in the land of Goshen; and if you know that there are capable men among them, put them in charge of my livestock.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then Joseph brought in his father Jacob, and presented him before Pharaoh, and Jacob blessed Pharaoh.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Pharaoh said to Jacob, \"How many are the years of your life?\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Jacob said to Pharaoh, \"The years of my earthly sojourn are one hundred thirty; few and hard have been the years of my life. They do not compare with the years of the life of my ancestors during their long sojourn.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then Jacob blessed Pharaoh, and went out from the presence of Pharaoh.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Joseph settled his father and his brothers, and granted them a holding in the land of Egypt, in the best part of the land, in the land of Rameses, as Pharaoh had instructed.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> And Joseph provided his father, his brothers, and all his father's household with food, according to the number of their dependents.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Now there was no food in all the land, for the famine was very severe. The land of Egypt and the land of Canaan languished because of the famine.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Joseph collected all the money to be found in the land of Egypt and in the land of Canaan, in exchange for the grain that they bought; and Joseph brought the money into Pharaoh's house.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> When the money from the land of Egypt and from the land of Canaan was spent, all the Egyptians came to Joseph, and said, \"Give us food! Why should we die before your eyes? For our money is gone.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> And Joseph answered, \"Give me your livestock, and I will give you food in exchange for your livestock, if your money is gone.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> So they brought their livestock to Joseph; and Joseph gave them food in exchange for the horses, the flocks, the herds, and the donkeys. That year he supplied them with food in exchange for all their livestock.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> When that year was ended, they came to him the following year, and said to him, \"We can not hide from my lord that our money is all spent; and the herds of cattle are my lord's. There is nothing left in the sight of my lord but our bodies and our lands.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Shall we die before your eyes, both we and our land? Buy us and our land in exchange for food. We with our land will become slaves to Pharaoh; just give us seed, so that we may live and not die, and that the land may not become desolate.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> So Joseph bought all the land of Egypt for Pharaoh. All the Egyptians sold their fields, because the famine was severe upon them; and the land became Pharaoh's.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> As for the people, he made slaves of them from one end of Egypt to the other. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Only the land of the priests he did not buy; for the priests had a fixed allowance from Pharaoh, and lived on the allowance that Pharaoh gave them; therefore they did not sell their land.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Then Joseph said to the people, \"Now that I have this day bought you and your land for Pharaoh, here is seed for you; sow the land.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> And at the harvests you shall give one-fifth to Pharaoh, and four-fifths shall be your own, as seed for the field and as food for yourselves and your households, and as food for your little ones.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> They said, \"You have saved our lives; may it please my lord, we will be slaves to Pharaoh.\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> So Joseph made it a statute concerning the land of Egypt, and it stands to this day, that Pharaoh should have the fifth. The land of the priests alone did not become Pharaoh's.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Thus Israel settled in the land of Egypt, in the region of Goshen; and they gained possessions in it, and were fruitful and multiplied exceedingly.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Jacob lived in the land of Egypt seventeen years; so the days of Jacob, the years of his life, were one hundred forty-seven years.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> When the time of Israel's death drew near, he called his son Joseph and said to him, \"If I have found favor with you, put your hand under my thigh and promise to deal loyally and truly with me. Do not bury me in Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> When I lie down with my ancestors, carry me out of Egypt and bury me in their burial place.\" He answered, \"I will do as you have said.\"</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> And he said, \"Swear to me\"; and he swore to him. Then Israel bowed himself on the head of his bed.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"48\">\r\n\t\t\t<VERS vnumber=\"1\"> After this Joseph was told, \"Your father is ill.\" So he took with him his two sons, Manasseh and Ephraim.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> When Jacob was told, \"Your son Joseph has come to you,\" he summoned his strength and sat up in bed. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And Jacob said to Joseph, \"God Almighty appeared to me at Luz in the land of Canaan, and he blessed me,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> and said to me, 'I am going to make you fruitful and increase your numbers; I will make of you a company of peoples, and will give this land to your offspring after you for a perpetual holding.'</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Therefore your two sons, who were born to you in the land of Egypt before I came to you in Egypt, are now mine; Ephraim and Manasseh shall be mine, just as Reuben and Simeon are.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> As for the offspring born to you after them, they shall be yours. They shall be recorded under the names of their brothers with regard to their inheritance.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> For when I came from Paddan, Rachel, alas, died in the land of Canaan on the way, while there was still some distance to go to Ephrath; and I buried her there on the way to Ephrath\" (that is, Bethlehem).</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> When Israel saw Joseph's sons, he said, \"Who are these?\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Joseph said to his father, \"They are my sons, whom God has given me here.\" And he said, \"Bring them to me, please, that I may bless them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Now the eyes of Israel were dim with age, and he could not see well. So Joseph brought them near him; and he kissed them and embraced them.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Israel said to Joseph, \"I did not expect to see your face; and here God has let me see your children also.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then Joseph removed them from his father's knees, and he bowed himself with his face to the earth. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Joseph took them both, Ephraim in his right hand toward Israel's left, and Manasseh in his left hand toward Israel's right, and brought them near him.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But Israel stretched out his right hand and laid it on the head of Ephraim, who was the younger, and his left hand on the head of Manasseh, crossing his hands, for Manasseh was the firstborn.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> He blessed Joseph, and said, \"The God before whom my ancestors Abraham and Isaac walked, the God who has been my shepherd all my life to this day,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> the angel who has redeemed me from all harm, bless the boys; and in them let my name be perpetuated, and the name of my ancestors Abraham and Isaac; and let them grow into a multitude on the earth.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> When Joseph saw that his father laid his right hand on the head of Ephraim, it displeased him; so he took his father's hand, to remove it from Ephraim's head to Manasseh's head.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Joseph said to his father, \"Not so, my father! Since this one is the firstborn, put your right hand on his head.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> But his father refused, and said, \"I know, my son, I know; he also shall become a people, and he also shall be great. Nevertheless his younger brother shall be greater than he, and his offspring shall become a multitude of nations.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> So he blessed them that day, saying, \"By you Israel will invoke blessings, saying, 'God make you like Ephraim and like Manasseh.'\" So he put Ephraim ahead of Manasseh. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then Israel said to Joseph, \"I am about to die, but God will be with you and will bring you again to the land of your ancestors.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> I now give to you one portion more than to your brothers, the portion that I took from the hand of the Amorites with my sword and with my bow.\" </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"49\">\r\n\t\t\t<VERS vnumber=\"1\"> Then Jacob called his sons, and said: \"Gather around, that I may tell you what will happen to you in days to come.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Assemble and hear, O sons of Jacob; listen to Israel your father.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Reuben, you are my firstborn, my might and the first fruits of my vigor, excelling in rank and excelling in power.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Unstable as water, you shall no longer excel because you went up onto your father's bed; then you defiled it-- you went up onto my couch!</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Simeon and Levi are brothers; weapons of violence are their swords.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> May I never come into their council; may I not be joined to their company-- for in their anger they killed men, and at their whim they hamstrung oxen.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Cursed be their anger, for it is fierce, and their wrath, for it is cruel! I will divide them in Jacob, and scatter them in Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Judah, your brothers shall praise you; your hand shall be on the neck of your enemies; your father's sons shall bow down before you.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Judah is a lion's whelp; from the prey, my son, you have gone up. He crouches down, he stretches out like a lion, like a lioness-- who dares rouse him up?</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The scepter shall not depart from Judah, nor the ruler's staff from between his feet, until tribute comes to him; and the obedience of the peoples is his. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Binding his foal to the vine and his donkey's colt to the choice vine, he washes his garments in wine and his robe in the blood of grapes;</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> his eyes are darker than wine, and his teeth whiter than milk.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Zebulun shall settle at the shore of the sea; he shall be a haven for ships, and his border shall be at Sidon.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Issachar is a strong donkey, lying down between the sheepfolds;</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> he saw that a resting place was good, and that the land was pleasant; so he bowed his shoulder to the burden, and became a slave at forced labor.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Dan shall judge his people as one of the tribes of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Dan shall be a snake by the roadside, a viper along the path, that bites the horse's heels so that its rider falls backward.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> I wait for your salvation, O LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Gad shall be raided by raiders, but he shall raid at their heels.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Asher's food shall be rich, and he shall provide royal delicacies. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Naphtali is a doe let loose that bears lovely fawns. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Joseph is a fruitful bough, a fruitful bough by a spring; his branches run over the wall. </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> The archers fiercely attacked him; they shot at him and pressed him hard.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Yet his bow remained taut, and his arms were made agile by the hands of the Mighty One of Jacob, by the name of the Shepherd, the Rock of Israel, </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> by the God of your father, who will help you, by the Almighty who will bless you with blessings of heaven above, blessings of the deep that lies beneath, blessings of the breasts and of the womb. </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> The blessings of your father are stronger than the blessings of the eternal mountains, the bounties of the everlasting hills; may they be on the head of Joseph, on the brow of him who was set apart from his brothers. </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Benjamin is a ravenous wolf, in the morning devouring the prey, and at evening dividing the spoil.\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> All these are the twelve tribes of Israel, and this is what their father said to them when he blessed them, blessing each one of them with a suitable blessing.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Then he charged them, saying to them, \"I am about to be gathered to my people. Bury me with my ancestors-- in the cave in the field of Ephron the Hittite,</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> in the cave in the field at Machpelah, near Mamre, in the land of Canaan, in the field that Abraham bought from Ephron the Hittite as a burial site.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> There Abraham and his wife Sarah were buried; there Isaac and his wife Rebekah were buried; and there I buried Leah--</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> the field and the cave that is in it were purchased from the Hittites.\"</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> When Jacob ended his charge to his sons, he drew up his feet into the bed, breathed his last, and was gathered to his people.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"50\">\r\n\t\t\t<VERS vnumber=\"1\"> Then Joseph threw himself on his father's face and wept over him and kissed him.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Joseph commanded the physicians in his service to embalm his father. So the physicians embalmed Israel;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> they spent forty days in doing this, for that is the time required for embalming. And the Egyptians wept for him seventy days.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> When the days of weeping for him were past, Joseph addressed the household of Pharaoh, \"If now I have found favor with you, please speak to Pharaoh as follows:</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> My father made me swear an oath; he said, 'I am about to die. In the tomb that I hewed out for myself in the land of Canaan, there you shall bury me.' Now therefore let me go up, so that I may bury my father; then I will return.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Pharaoh answered, \"Go up, and bury your father, as he made you swear to do.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> So Joseph went up to bury his father. With him went up all the servants of Pharaoh, the elders of his household, and all the elders of the land of Egypt,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> as well as all the household of Joseph, his brothers, and his father's household. Only their children, their flocks, and their herds were left in the land of Goshen.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Both chariots and charioteers went up with him. It was a very great company.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> When they came to the threshing floor of Atad, which is beyond the Jordan, they held there a very great and sorrowful lamentation; and he observed a time of mourning for his father seven days.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> When the Canaanite inhabitants of the land saw the mourning on the threshing floor of Atad, they said, \"This is a grievous mourning on the part of the Egyptians.\" Therefore the place was named Abel-mizraim; it is beyond the Jordan. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Thus his sons did for him as he had instructed them.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> They carried him to the land of Canaan and buried him in the cave of the field at Machpelah, the field near Mamre, which Abraham bought as a burial site from Ephron the Hittite.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> After he had buried his father, Joseph returned to Egypt with his brothers and all who had gone up with him to bury his father.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Realizing that their father was dead, Joseph's brothers said, \"What if Joseph still bears a grudge against us and pays us back in full for all the wrong that we did to him?\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> So they approached Joseph, saying, \"Your father gave this instruction before he died, </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> 'Say to Joseph: I beg you, forgive the crime of your brothers and the wrong they did in harming you.' Now therefore please forgive the crime of the servants of the God of your father.\" Joseph wept when they spoke to him.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then his brothers also wept, fell down before him, and said, \"We are here as your slaves.\" </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> But Joseph said to them, \"Do not be afraid! Am I in the place of God?</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Even though you intended to do harm to me, God intended it for good, in order to preserve a numerous people, as he is doing today.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> So have no fear; I myself will provide for you and your little ones.\" In this way he reassured them, speaking kindly to them.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> So Joseph remained in Egypt, he and his father's household; and Joseph lived one hundred ten years.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Joseph saw Ephraim's children of the third generation; the children of Machir son of Manasseh were also born on Joseph's knees.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Then Joseph said to his brothers, \"I am about to die; but God will surely come to you, and bring you up out of this land to the land that he swore to Abraham, to Isaac, and to Jacob.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> So Joseph made the Israelites swear, saying, \"When God comes to you, you shall carry up my bones from here.\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> And Joseph died, being one hundred ten years old; he was embalmed and placed in a coffin in Egypt.</VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"2\" bname=\"Exodus\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> These are the names of the sons of Israel who came to Egypt with Jacob, each with his household:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Reuben, Simeon, Levi, and Judah,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Issachar, Zebulun, and Benjamin,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Dan and Naphtali, Gad and Asher.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The total number of people born to Jacob was seventy. Joseph was already in Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then Joseph died, and all his brothers, and that whole generation.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But the Israelites were fruitful and prolific; they multiplied and grew exceedingly strong, so that the land was filled with them.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Now a new king arose over Egypt, who did not know Joseph.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> He said to his people, \"Look, the Israelite people are more numerous and more powerful than we.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Come, let us deal shrewdly with them, or they will increase and, in the event of war, join our enemies and fight against us and escape from the land.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Therefore they set taskmasters over them to oppress them with forced labor. They built supply cities, Pithom and Rameses, for Pharaoh.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> But the more they were oppressed, the more they multiplied and spread, so that the Egyptians came to dread the Israelites.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The Egyptians became ruthless in imposing tasks on the Israelites,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> and made their lives bitter with hard service in mortar and brick and in every kind of field labor. They were ruthless in all the tasks that they imposed on them.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The king of Egypt said to the Hebrew midwives, one of whom was named Shiphrah and the other Puah,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> \"When you act as midwives to the Hebrew women, and see them on the birthstool, if it is a boy, kill him; but if it is a girl, she shall live.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> But the midwives feared God; they did not do as the king of Egypt commanded them, but they let the boys live.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> So the king of Egypt summoned the midwives and said to them, \"Why have you done this, and allowed the boys to live?\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The midwives said to Pharaoh, \"Because the Hebrew women are not like the Egyptian women; for they are vigorous and give birth before the midwife comes to them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> So God dealt well with the midwives; and the people multiplied and became very strong.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> And because the midwives feared God, he gave them families.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Then Pharaoh commanded all his people, \"Every boy that is born to the Hebrews you shall throw into the Nile, but you shall let every girl live.\" </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> Now a man from the house of Levi went and married a Levite woman.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The woman conceived and bore a son; and when she saw that he was a fine baby, she hid him three months.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> When she could hide him no longer she got a papyrus basket for him, and plastered it with bitumen and pitch; she put the child in it and placed it among the reeds on the bank of the river.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> His sister stood at a distance, to see what would happen to him.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The daughter of Pharaoh came down to bathe at the river, while her attendants walked beside the river. She saw the basket among the reeds and sent her maid to bring it.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> When she opened it, she saw the child. He was crying, and she took pity on him, \"This must be one of the Hebrews' children,\" she said.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then his sister said to Pharaoh's daughter, \"Shall I go and get you a nurse from the Hebrew women to nurse the child for you?\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Pharaoh's daughter said to her, \"Yes.\" So the girl went and called the child's mother.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Pharaoh's daughter said to her, \"Take this child and nurse it for me, and I will give you your wages.\" So the woman took the child and nursed it.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> When the child grew up, she brought him to Pharaoh's daughter, and she took him as her son. She named him Moses, \"because,\" she said, \"I drew him out of the water.\" </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> One day, after Moses had grown up, he went out to his people and saw their forced labor. He saw an Egyptian beating a Hebrew, one of his kinsfolk.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> He looked this way and that, and seeing no one he killed the Egyptian and hid him in the sand.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> When he went out the next day, he saw two Hebrews fighting; and he said to the one who was in the wrong, \"Why do you strike your fellow Hebrew?\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> He answered, \"Who made you a ruler and judge over us? Do you mean to kill me as you killed the Egyptian?\" Then Moses was afraid and thought, \"Surely the thing is known.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> When Pharaoh heard of it, he sought to kill Moses. But Moses fled from Pharaoh. He settled in the land of Midian, and sat down by a well.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The priest of Midian had seven daughters. They came to draw water, and filled the troughs to water their father's flock.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> But some shepherds came and drove them away. Moses got up and came to their defense and watered their flock.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> When they returned to their father Reuel, he said, \"How is it that you have come back so soon today?\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> They said, \"An Egyptian helped us against the shepherds; he even drew water for us and watered the flock.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> He said to his daughters, \"Where is he? Why did you leave the man? Invite him to break bread.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Moses agreed to stay with the man, and he gave Moses his daughter Zipporah in marriage.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> She bore a son, and he named him Gershom; for he said, \"I have been an alien residing in a foreign land.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> After a long time the king of Egypt died. The Israelites groaned under their slavery, and cried out. Out of the slavery their cry for help rose up to God.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> God heard their groaning, and God remembered his covenant with Abraham, Isaac, and Jacob.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> God looked upon the Israelites, and God took notice of them.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> Moses was keeping the flock of his father-in-law Jethro, the priest of Midian; he led his flock beyond the wilderness, and came to Horeb, the mountain of God.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> There the angel of the LORD appeared to him in a flame of fire out of a bush; he looked, and the bush was blazing, yet it was not consumed.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then Moses said, \"I must turn aside and look at this great sight, and see why the bush is not burned up.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> When the LORD saw that he had turned aside to see, God called to him out of the bush, \"Moses, Moses!\" And he said, \"Here I am.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then he said, \"Come no closer! Remove the sandals from your feet, for the place on which you are standing is holy ground.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> He said further, \"I am the God of your 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 at God.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then the LORD said, \"I have observed the misery of my people who are in Egypt; I have heard their cry on account of their taskmasters. Indeed, I know their sufferings,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> and I have come down to deliver them from the Egyptians, and to bring them up out of that land to a good and broad land, a land flowing with milk and honey, to the country of the Canaanites, the Hittites, the Amorites, the Perizzites, the Hivites, and the Jebusites.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The cry of the Israelites has now come to me; I have also seen how the Egyptians oppress them.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> So come, I will send you to Pharaoh to bring my people, the Israelites, out of Egypt.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But Moses said to God, \"Who am I that I should go to Pharaoh, and bring the Israelites out of Egypt?\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> He said, \"I will be with you; and this shall be the sign for you that it is I who sent you: when you have brought the people out of Egypt, you shall worship God on this mountain.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> But Moses said to God, \"If I come to the Israelites and say to them, 'The God of your ancestors has sent me to you,' and they ask me, 'What is his name?' what shall I say to them?\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> God said to Moses, \"I AM WHO I AM.\" He said further, \"Thus you shall say to the Israelites, 'I AM has sent me to you.'\" </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> God also said to Moses, \"Thus you shall say to the Israelites, 'The LORD, the God of your ancestors, the God of Abraham, the God of Isaac, and the God of Jacob, has sent me to you': This is my name forever, and this my title for all generations. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Go and assemble the elders of Israel, and say to them, 'The LORD, the God of your ancestors, the God of Abraham, of Isaac, and of Jacob, has appeared to me, saying: I have given heed to you and to what has been done to you in Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> I declare that I will bring you up out of the misery of Egypt, to the land of the Canaanites, the Hittites, the Amorites, the Perizzites, the Hivites, and the Jebusites, a land flowing with milk and honey.'</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> They will listen to your voice; and you and the elders of Israel shall go to the king of Egypt and say to him, 'The LORD, the God of the Hebrews, has met with us; let us now go a three days' journey into the wilderness, so that we may sacrifice to the LORD our God.'</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> I know, however, that the king of Egypt will not let you go unless compelled by a mighty hand. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> So I will stretch out my hand and strike Egypt with all my wonders that I will perform in it; after that he will let you go.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> I will bring this people into such favor with the Egyptians that, when you go, you will not go empty-handed;</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> each woman shall ask her neighbor and any woman living in the neighbor's house for jewelry of silver and of gold, and clothing, and you shall put them on your sons and on your daughters; and so you shall plunder the Egyptians.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> Then Moses answered, \"But suppose they do not believe me or listen to me, but say, 'The LORD did not appear to you.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The LORD said to him, \"What is that in your hand?\" He said, \"A staff.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And he said, \"Throw it on the ground.\" So he threw the staff on the ground, and it became a snake; and Moses drew back from it.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then the LORD said to Moses, \"Reach out your hand, and seize it by the tail\"-- so he reached out his hand and grasped it, and it became a staff in his hand--</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> \"so that they may believe that the LORD, the God of their ancestors, the God of Abraham, the God of Isaac, and the God of Jacob, has appeared to you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Again, the LORD said to him, \"Put your hand inside your cloak.\" He put his hand into his cloak; and when he took it out, his hand was leprous, as white as snow. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then God said, \"Put your hand back into your cloak\"-- so he put his hand back into his cloak, and when he took it out, it was restored like the rest of his body--</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> \"If they will not believe you or heed the first sign, they may believe the second sign.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> If they will not believe even these two signs or heed you, you shall take some water from the Nile and pour it on the dry ground; and the water that you shall take from the Nile will become blood on the dry ground.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> But Moses said to the LORD, \"O my Lord, I have never been eloquent, neither in the past nor even now that you have spoken to your servant; but I am slow of speech and slow of tongue.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then the LORD said to him, \"Who gives speech to mortals? Who makes them mute or deaf, seeing or blind? Is it not I, the LORD?</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Now go, and I will be with your mouth and teach you what you are to speak.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> But he said, \"O my Lord, please send someone else.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then the anger of the LORD was kindled against Moses and he said, \"What of your brother Aaron, the Levite? I know that he can speak fluently; even now he is coming out to meet you, and when he sees you his heart will be glad.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> You shall speak to him and put the words in his mouth; and I will be with your mouth and with his mouth, and will teach you what you shall do.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> He indeed shall speak for you to the people; he shall serve as a mouth for you, and you shall serve as God for him.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Take in your hand this staff, with which you shall perform the signs.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Moses went back to his father-in-law Jethro and said to him, \"Please let me go back to my kindred in Egypt and see whether they are still living.\" And Jethro said to Moses, \"Go in peace.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The LORD said to Moses in Midian, \"Go back to Egypt; for all those who were seeking your life are dead.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> So Moses took his wife and his sons, put them on a donkey and went back to the land of Egypt; and Moses carried the staff of God in his hand.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> And the LORD said to Moses, \"When you go back to Egypt, see that you perform before Pharaoh all the wonders that I have put in your power; but I will harden his heart, so that he will not let the people go.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Then you shall say to Pharaoh, 'Thus says the LORD: Israel is my firstborn son.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> I said to you, \"Let my son go that he may worship me.\" But you refused to let him go; now I will kill your firstborn son.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> On the way, at a place where they spent the night, the LORD met him and tried to kill him.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> But Zipporah took a flint and cut off her son's foreskin, and touched Moses' feet with it, and said, \"Truly you are a bridegroom of blood to me!\" </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> So he let him alone. It was then she said, \"A bridegroom of blood by circumcision.\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> The LORD said to Aaron, \"Go into the wilderness to meet Moses.\" So he went; and he met him at the mountain of God and kissed him.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Moses told Aaron all the words of the LORD with which he had sent him, and all the signs with which he had charged him.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Then Moses and Aaron went and assembled all the elders of the Israelites.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Aaron spoke all the words that the LORD had spoken to Moses, and performed the signs in the sight of the people.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> The people believed; and when they heard that the LORD had given heed to the Israelites and that he had seen their misery, they bowed down and worshiped.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"5\">\r\n\t\t\t<VERS vnumber=\"1\"> Afterward Moses and Aaron went to Pharaoh and said, \"Thus says the LORD, the God of Israel, 'Let my people go, so that they may celebrate a festival to me in the wilderness.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> But Pharaoh said, \"Who is the LORD, that I should heed him and let Israel go? I do not know the LORD, and I will not let Israel go.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then they said, \"The God of the Hebrews has revealed himself to us; let us go a three days' journey into the wilderness to sacrifice to the LORD our God, or he will fall upon us with pestilence or sword.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But the king of Egypt said to them, \"Moses and Aaron, why are you taking the people away from their work? Get to your labors!\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Pharaoh continued, \"Now they are more numerous than the people of the land and yet you want them to stop working!\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> That same day Pharaoh commanded the taskmasters of the people, as well as their supervisors,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> \"You shall no longer give the people straw to make bricks, as before; let them go and gather straw for themselves.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But you shall require of them the same quantity of bricks as they have made previously; do not diminish it, for they are lazy; that is why they cry, 'Let us go and offer sacrifice to our God.'</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Let heavier work be laid on them; then they will labor at it and pay no attention to deceptive words.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> So the taskmasters and the supervisors of the people went out and said to the people, \"Thus says Pharaoh, 'I will not give you straw.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Go and get straw yourselves, wherever you can find it; but your work will not be lessened in the least.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> So the people scattered throughout the land of Egypt, to gather stubble for straw.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The taskmasters were urgent, saying, \"Complete your work, the same daily assignment as when you were given straw.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> And the supervisors of the Israelites, whom Pharaoh's taskmasters had set over them, were beaten, and were asked, \"Why did you not finish the required quantity of bricks yesterday and today, as you did before?\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Then the Israelite supervisors came to Pharaoh and cried, \"Why do you treat your servants like this?</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> No straw is given to your servants, yet they say to us, 'Make bricks!' Look how your servants are beaten! You are unjust to your own people.\" </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> He said, \"You are lazy, lazy; that is why you say, 'Let us go and sacrifice to the LORD.'</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Go now, and work; for no straw shall be given you, but you shall still deliver the same number of bricks.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The Israelite supervisors saw that they were in trouble when they were told, \"You shall not lessen your daily number of bricks.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> As they left Pharaoh, they came upon Moses and Aaron who were waiting to meet them.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> They said to them, \"The LORD look upon you and judge! You have brought us into bad odor with Pharaoh and his officials, and have put a sword in their hand to kill us.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Then Moses turned again to the LORD and said, \"O LORD, why have you mistreated this people? Why did you ever send me?</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Since I first came to Pharaoh to speak in your name, he has mistreated this people, and you have done nothing at all to deliver your people.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"6\">\r\n\t\t\t<VERS vnumber=\"1\"> Then the LORD said to Moses, \"Now you shall see what I will do to Pharaoh: Indeed, by a mighty hand he will let them go; by a mighty hand he will drive them out of his land.\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> God also spoke to Moses and said to him: \"I am the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> I appeared to Abraham, Isaac, and Jacob as God Almighty, but by my name 'The LORD' I did not make myself known to them. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> I also established my covenant with them, to give them the land of Canaan, the land in which they resided as aliens.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> I have also heard the groaning of the Israelites whom the Egyptians are holding as slaves, and I have remembered my covenant.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Say therefore to the Israelites, 'I am the LORD, and I will free you from the burdens of the Egyptians and deliver you from slavery to them. I will redeem you with an outstretched arm and with mighty acts of judgment.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> I will take you as my people, and I will be your God. You shall know that I am the LORD your God, who has freed you from the burdens of the Egyptians.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> I will bring you into the land that I swore to give to Abraham, Isaac, and Jacob; I will give it to you for a possession. I am the LORD.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Moses told this to the Israelites; but they would not listen to Moses, because of their broken spirit and their cruel slavery.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then the LORD spoke to Moses,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> \"Go and tell Pharaoh king of Egypt to let the Israelites go out of his land.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> But Moses spoke to the LORD, \"The Israelites have not listened to me; how then shall Pharaoh listen to me, poor speaker that I am?\" </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Thus the LORD spoke to Moses and Aaron, and gave them orders regarding the Israelites and Pharaoh king of Egypt, charging them to free the Israelites from the land of Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The following are the heads of their ancestral houses: the sons of Reuben, the firstborn of Israel: Hanoch, Pallu, Hezron, and Carmi; these are the families of Reuben.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The sons of Simeon: Jemuel, Jamin, Ohad, Jachin, Zohar, and Shaul, the son of a Canaanite woman; these are the families of Simeon.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The following are the names of the sons of Levi according to their genealogies: Gershon, Kohath, and Merari, and the length of Levi's life was one hundred thirty-seven years. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The sons of Gershon: Libni and Shimei, by their families. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The sons of Kohath: Amram, Izhar, Hebron, and Uzziel, and the length of Kohath's life was one hundred thirty-three years.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The sons of Merari: Mahli and Mushi. These are the families of the Levites according to their genealogies.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Amram married Jochebed his father's sister and she bore him Aaron and Moses, and the length of Amram's life was one hundred thirty-seven years.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> The sons of Izhar: Korah, Nepheg, and Zichri.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The sons of Uzziel: Mishael, Elzaphan, and Sithri.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Aaron married Elisheba, daughter of Amminadab and sister of Nahshon, and she bore him Nadab, Abihu, Eleazar, and Ithamar.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> The sons of Korah: Assir, Elkanah, and Abiasaph; these are the families of the Korahites.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Aaron's son Eleazar married one of the daughters of Putiel, and she bore him Phinehas. These are the heads of the ancestral houses of the Levites by their families.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> It was this same Aaron and Moses to whom the LORD said, \"Bring the Israelites out of the land of Egypt, company by company.\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> It was they who spoke to Pharaoh king of Egypt to bring the Israelites out of Egypt, the same Moses and Aaron.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> On the day when the LORD spoke to Moses in the land of Egypt,</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> he said to him, \"I am the LORD; tell Pharaoh king of Egypt all that I am speaking to you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> But Moses said in the LORD's presence, \"Since I am a poor speaker, why would Pharaoh listen to me?\" </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"7\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD said to Moses, \"See, I have made you like God to Pharaoh, and your brother Aaron shall be your prophet.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> You shall speak all that I command you, and your brother Aaron shall tell Pharaoh to let the Israelites go out of his land.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> But I will harden Pharaoh's heart, and I will multiply my signs and wonders in the land of Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> When Pharaoh does not listen to you, I will lay my hand upon Egypt and bring my people the Israelites, company by company, out of the land of Egypt by great acts of judgment.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The Egyptians shall know that I am the LORD, when I stretch out my hand against Egypt and bring the Israelites out from among them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Moses and Aaron did so; they did just as the LORD commanded them.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Moses was eighty years old and Aaron eighty-three when they spoke to Pharaoh.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The LORD said to Moses and Aaron,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> \"When Pharaoh says to you, 'Perform a wonder,' then you shall say to Aaron, 'Take your staff and throw it down before Pharaoh, and it will become a snake.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> So Moses and Aaron went to Pharaoh and did as the LORD had commanded; Aaron threw down his staff before Pharaoh and his officials, and it became a snake.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then Pharaoh summoned the wise men and the sorcerers; and they also, the magicians of Egypt, did the same by their secret arts.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Each one threw down his staff, and they became snakes; but Aaron's staff swallowed up theirs.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Still Pharaoh's heart was hardened, and he would not listen to them, as the LORD had said.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then the LORD said to Moses, \"Pharaoh's heart is hardened; he refuses to let the people go.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Go to Pharaoh in the morning, as he is going out to the water; stand by at the river bank to meet him, and take in your hand the staff that was turned into a snake.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Say to him, 'The LORD, the God of the Hebrews, sent me to you to say, \"Let my people go, so that they may worship me in the wilderness.\" But until now you have not listened.'</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Thus says the LORD, \"By this you shall know that I am the LORD.\" See, with the staff that is in my hand I will strike the water that is in the Nile, and it shall be turned to blood.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The fish in the river shall die, the river itself shall stink, and the Egyptians shall be unable to drink water from the Nile.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The LORD said to Moses, \"Say to Aaron, 'Take your staff and stretch out your hand over the waters of Egypt-- over its rivers, its canals, and its ponds, and all its pools of water-- so that they may become blood; and there shall be blood throughout the whole land of Egypt, even in vessels of wood and in vessels of stone.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Moses and Aaron did just as the LORD commanded. In the sight of Pharaoh and of his officials he lifted up the staff and struck the water in the river, and all the water in the river was turned into blood,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> and the fish in the river died. The river stank so that the Egyptians could not drink its water, and there was blood throughout the whole land of Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> But the magicians of Egypt did the same by their secret arts; so Pharaoh's heart remained hardened, and he would not listen to them; as the LORD had said.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Pharaoh turned and went into his house, and he did not take even this to heart.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> And all the Egyptians had to dig along the Nile for water to drink, for they could not drink the water of the river.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Seven days passed after the LORD had struck the Nile.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"8\">\r\n\t\t\t<VERS vnumber=\"1\"> Then the LORD said to Moses, \"Go to Pharaoh and say to him, 'Thus says the LORD: Let my people go, so that they may worship me.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> If you refuse to let them go, I will plague your whole country with frogs.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The river shall swarm with frogs; they shall come up into your palace, into your bedchamber and your bed, and into the houses of your officials and of your people, and into your ovens and your kneading bowls. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The frogs shall come up on you and on your people and on all your officials.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> And the LORD said to Moses, \"Say to Aaron, 'Stretch out your hand with your staff over the rivers, the canals, and the pools, and make frogs come up on the land of Egypt.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> So Aaron stretched out his hand over the waters of Egypt; and the frogs came up and covered the land of Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But the magicians did the same by their secret arts, and brought frogs up on the land of Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then Pharaoh called Moses and Aaron, and said, \"Pray to the LORD to take away the frogs from me and my people, and I will let the people go to sacrifice to the LORD.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Moses said to Pharaoh, \"Kindly tell me when I am to pray for you and for your officials and for your people, that the frogs may be removed from you and your houses and be left only in the Nile.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And he said, \"Tomorrow.\" Moses said, \"As you say! So that you may know that there is no one like the LORD our God,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> the frogs shall leave you and your houses and your officials and your people; they shall be left only in the Nile.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then Moses and Aaron went out from Pharaoh; and Moses cried out to the LORD concerning the frogs that he had brought upon Pharaoh. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And the LORD did as Moses requested: the frogs died in the houses, the courtyards, and the fields.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> And they gathered them together in heaps, and the land stank.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> But when Pharaoh saw that there was a respite, he hardened his heart, and would not listen to them, just as the LORD had said.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then the LORD said to Moses, \"Say to Aaron, 'Stretch out your staff and strike the dust of the earth, so that it may become gnats throughout the whole land of Egypt.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> And they did so; Aaron stretched out his hand with his staff and struck the dust of the earth, and gnats came on humans and animals alike; all the dust of the earth turned into gnats throughout the whole land of Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The magicians tried to produce gnats by their secret arts, but they could not. There were gnats on both humans and animals.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> And the magicians said to Pharaoh, \"This is the finger of God!\" But Pharaoh's heart was hardened, and he would not listen to them, just as the LORD had said.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Then the LORD said to Moses, \"Rise early in the morning and present yourself before Pharaoh, as he goes out to the water, and say to him, 'Thus says the LORD: Let my people go, so that they may worship me.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> For if you will not let my people go, I will send swarms of flies on you, your officials, and your people, and into your houses; and the houses of the Egyptians shall be filled with swarms of flies; so also the land where they live.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> But on that day I will set apart the land of Goshen, where my people live, so that no swarms of flies shall be there, that you may know that I the LORD am in this land.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Thus I will make a distinction between my people and your people. This sign shall appear tomorrow.'\" </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> The LORD did so, and great swarms of flies came into the house of Pharaoh and into his officials' houses; in all of Egypt the land was ruined because of the flies.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Then Pharaoh summoned Moses and Aaron, and said, \"Go, sacrifice to your God within the land.\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> But Moses said, \"It would not be right to do so; for the sacrifices that we offer to the LORD our God are offensive to the Egyptians. If we offer in the sight of the Egyptians sacrifices that are offensive to them, will they not stone us?</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> We must go a three days' journey into the wilderness and sacrifice to the LORD our God as he commands us.\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> So Pharaoh said, \"I will let you go to sacrifice to the LORD your God in the wilderness, provided you do not go very far away. Pray for me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Then Moses said, \"As soon as I leave you, I will pray to the LORD that the swarms of flies may depart tomorrow from Pharaoh, from his officials, and from his people; only do not let Pharaoh again deal falsely by not letting the people go to sacrifice to the LORD.\"</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> So Moses went out from Pharaoh and prayed to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> And the LORD did as Moses asked: he removed the swarms of flies from Pharaoh, from his officials, and from his people; not one remained.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> But Pharaoh hardened his heart this time also, and would not let the people go.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"9\">\r\n\t\t\t<VERS vnumber=\"1\"> Then the LORD said to Moses, \"Go to Pharaoh, and say to him, 'Thus says the LORD, the God of the Hebrews: Let my people go, so that they may worship me.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> For if you refuse to let them go and still hold them,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> the hand of the LORD will strike with a deadly pestilence your livestock in the field: the horses, the donkeys, the camels, the herds, and the flocks.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But the LORD will make a distinction between the livestock of Israel and the livestock of Egypt, so that nothing shall die of all that belongs to the Israelites.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The LORD set a time, saying, \"Tomorrow the LORD will do this thing in the land.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And on the next day the LORD did so; all the livestock of the Egyptians died, but of the livestock of the Israelites not one died.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Pharaoh inquired and found that not one of the livestock of the Israelites was dead. But the heart of Pharaoh was hardened, and he would not let the people go.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then the LORD said to Moses and Aaron, \"Take handfuls of soot from the kiln, and let Moses throw it in the air in the sight of Pharaoh.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> It shall become fine dust all over the land of Egypt, and shall cause festering boils on humans and animals throughout the whole land of Egypt.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> So they took soot from the kiln, and stood before Pharaoh, and Moses threw it in the air, and it caused festering boils on humans and animals.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The magicians could not stand before Moses because of the boils, for the boils afflicted the magicians as well as all the Egyptians.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> But the LORD hardened the heart of Pharaoh, and he would not listen to them, just as the LORD had spoken to Moses.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then the LORD said to Moses, \"Rise up early in the morning and present yourself before Pharaoh, and say to him, 'Thus says the LORD, the God of the Hebrews: Let my people go, so that they may worship me.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> For this time I will send all my plagues upon you yourself, and upon your officials, and upon your people, so that you may know that there is no one like me in all the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> For by now I could have stretched out my hand and struck you and your people with pestilence, and you would have been cut off from the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> But this is why I have let you live: to show you my power, and to make my name resound through all the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> You are still exalting yourself against my people, and will not let them go.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Tomorrow at this time I will cause the heaviest hail to fall that has ever fallen in Egypt from the day it was founded until now.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Send, therefore, and have your livestock and everything that you have in the open field brought to a secure place; every human or animal that is in the open field and is not brought under shelter will die when the hail comes down upon them.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Those officials of Pharaoh who feared the word of the LORD hurried their slaves and livestock off to a secure place.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Those who did not regard the word of the LORD left their slaves and livestock in the open field.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The LORD said to Moses, \"Stretch out your hand toward heaven so that hail may fall on the whole land of Egypt, on humans and animals and all the plants of the field in the land of Egypt.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Then Moses stretched out his staff toward heaven, and the LORD sent thunder and hail, and fire came down on the earth. And the LORD rained hail on the land of Egypt;</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> there was hail with fire flashing continually in the midst of it, such heavy hail as had never fallen in all the land of Egypt since it became a nation.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> The hail struck down everything that was in the open field throughout all the land of Egypt, both human and animal; the hail also struck down all the plants of the field, and shattered every tree in the field.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Only in the land of Goshen, where the Israelites were, there was no hail.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Then Pharaoh summoned Moses and Aaron, and said to them, \"This time I have sinned; the LORD is in the right, and I and my people are in the wrong.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Pray to the LORD! Enough of God's thunder and hail! I will let you go; you need stay no longer.\"</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Moses said to him, \"As soon as I have gone out of the city, I will stretch out my hands to the LORD; the thunder will cease, and there will be no more hail, so that you may know that the earth is the LORD's.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> But as for you and your officials, I know that you do not yet fear the LORD God.\"</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> (Now the flax and the barley were ruined, for the barley was in the ear and the flax was in bud.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> But the wheat and the spelt were not ruined, for they are late in coming up.)</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> So Moses left Pharaoh, went out of the city, and stretched out his hands to the LORD; then the thunder and the hail ceased, and the rain no longer poured down on the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> But when Pharaoh saw that the rain and the hail and the thunder had ceased, he sinned once more and hardened his heart, he and his officials.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> So the heart of Pharaoh was hardened, and he would not let the Israelites go, just as the LORD had spoken through Moses.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"10\">\r\n\t\t\t<VERS vnumber=\"1\"> Then the LORD said to Moses, \"Go to Pharaoh; for I have hardened his heart and the heart of his officials, in order that I may show these signs of mine among them,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> and that you may tell your children and grandchildren how I have made fools of the Egyptians and what signs I have done among them-- so that you may know that I am the LORD.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> So Moses and Aaron went to Pharaoh, and said to him, \"Thus says the LORD, the God of the Hebrews, 'How long will you refuse to humble yourself before me? Let my people go, so that they may worship me.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For if you refuse to let my people go, tomorrow I will bring locusts into your country.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> They shall cover the surface of the land, so that no one will be able to see the land. They shall devour the last remnant left you after the hail, and they shall devour every tree of yours that grows in the field.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> They shall fill your houses, and the houses of all your officials and of all the Egyptians-- something that neither your parents nor your grandparents have seen, from the day they came on earth to this day.'\" Then he turned and went out from Pharaoh.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Pharaoh's officials said to him, \"How long shall this fellow be a snare to us? Let the people go, so that they may worship the LORD their God; do you not yet understand that Egypt is ruined?\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> So Moses and Aaron were brought back to Pharaoh, and he said to them, \"Go, worship the LORD your God! But which ones are to go?\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Moses said, \"We will go with our young and our old; we will go with our sons and daughters and with our flocks and herds, because we have the LORD's festival to celebrate.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> He said to them, \"The LORD indeed will be with you, if ever I let your little ones go with you! Plainly, you have some evil purpose in mind.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> No, never! Your men may go and worship the LORD, for that is what you are asking.\" And they were driven out from Pharaoh's presence.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then the LORD said to Moses, \"Stretch out your hand over the land of Egypt, so that the locusts may come upon it and eat every plant in the land, all that the hail has left.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> So Moses stretched out his staff over the land of Egypt, and the LORD brought an east wind upon the land all that day and all that night; when morning came, the east wind had brought the locusts.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The locusts came upon all the land of Egypt and settled on the whole country of Egypt, such a dense swarm of locusts as had never been before, nor ever shall be again.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> They covered the surface of the whole land, so that the land was black; and they ate all the plants in the land and all the fruit of the trees that the hail had left; nothing green was left, no tree, no plant in the field, in all the land of Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Pharaoh hurriedly summoned Moses and Aaron and said, \"I have sinned against the LORD your God, and against you.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Do forgive my sin just this once, and pray to the LORD your God that at the least he remove this deadly thing from me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> So he went out from Pharaoh and prayed to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The LORD changed the wind into a very strong west wind, which lifted the locusts and drove them into the Red Sea; not a single locust was left in all the country of Egypt. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> But the LORD hardened Pharaoh's heart, and he would not let the Israelites go.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then the LORD said to Moses, \"Stretch out your hand toward heaven so that there may be darkness over the land of Egypt, a darkness that can be felt.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> So Moses stretched out his hand toward heaven, and there was dense darkness in all the land of Egypt for three days.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> People could not see one another, and for three days they could not move from where they were; but all the Israelites had light where they lived.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Then Pharaoh summoned Moses, and said, \"Go, worship the LORD. Only your flocks and your herds shall remain behind. Even your children may go with you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> But Moses said, \"You must also let us have sacrifices and burnt offerings to sacrifice to the LORD our God.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Our livestock also must go with us; not a hoof shall be left behind, for we must choose some of them for the worship of the LORD our God, and we will not know what to use to worship the LORD until we arrive there.\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> But the LORD hardened Pharaoh's heart, and he was unwilling to let them go.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Then Pharaoh said to him, \"Get away from me! Take care that you do not see my face again, for on the day you see my face you shall die.\"</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Moses said, \"Just as you say! I will never see your face again.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"11\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD said to Moses, \"I will bring one more plague upon Pharaoh and upon Egypt; afterwards he will let you go from here; indeed, when he lets you go, he will drive you away.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Tell the people that every man is to ask his neighbor and every woman is to ask her neighbor for objects of silver and gold.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The LORD gave the people favor in the sight of the Egyptians. Moreover, Moses himself was a man of great importance in the land of Egypt, in the sight of Pharaoh's officials and in the sight of the people.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Moses said, \"Thus says the LORD: About midnight I will go out through Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Every firstborn in the land of Egypt shall die, from the firstborn of Pharaoh who sits on his throne to the firstborn of the female slave who is behind the handmill, and all the firstborn of the livestock.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then there will be a loud cry throughout the whole land of Egypt, such as has never been or will ever be again.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But not a dog shall growl at any of the Israelites-- not at people, not at animals-- so that you may know that the LORD makes a distinction between Egypt and Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then all these officials of yours shall come down to me, and bow low to me, saying, 'Leave us, you and all the people who follow you.' After that I will leave.\" And in hot anger he left Pharaoh.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The LORD said to Moses, \"Pharaoh will not listen to you, in order that my wonders may be multiplied in the land of Egypt.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Moses and Aaron performed all these wonders before Pharaoh; but the LORD hardened Pharaoh's heart, and he did not let the people of Israel go out of his land.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"12\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD said to Moses and Aaron in the land of Egypt:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> This month shall mark for you the beginning of months; it shall be the first month of the year for you.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Tell the whole congregation of Israel that on the tenth of this month they are to take a lamb for each family, a lamb for each household.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> If a household is too small for a whole lamb, it shall join its closest neighbor in obtaining one; the lamb shall be divided in proportion to the number of people who eat of it.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Your lamb shall be without blemish, a year-old male; you may take it from the sheep or from the goats.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> You shall keep it until the fourteenth day of this month; then the whole assembled congregation of Israel shall slaughter it at twilight.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> They shall take some of the blood and put it on the two doorposts and the lintel of the houses in which they eat it.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> They shall eat the lamb that same night; they shall eat it roasted over the fire with unleavened bread and bitter herbs.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Do not eat any of it raw or boiled in water, but roasted over the fire, with its head, legs, and inner organs.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> You shall let none of it remain until the morning; anything that remains until the morning you shall burn.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> This is how you shall eat it: your loins girded, your sandals on your feet, and your staff in your hand; and you shall eat it hurriedly. It is the passover of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> For I will pass through the land of Egypt that night, and I will strike down every firstborn in the land of Egypt, both human beings and animals; on all the gods of Egypt I will execute judgments: I am the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The blood shall be a sign for you on the houses where you live: when I see the blood, I will pass over you, and no plague shall destroy you when I strike the land of Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> This day shall be a day of remembrance for you. You shall celebrate it as a festival to the LORD; throughout your generations you shall observe it as a perpetual ordinance.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Seven days you shall eat unleavened bread; on the first day you shall remove leaven from your houses, for whoever eats leavened bread from the first day until the seventh day shall be cut off from Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> On the first day you shall hold a solemn assembly, and on the seventh day a solemn assembly; no work shall be done on those days; only what everyone must eat, that alone may be prepared by you.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> You shall observe the festival of unleavened bread, for on this very day I brought your companies out of the land of Egypt: you shall observe this day throughout your generations as a perpetual ordinance.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> In the first month, from the evening of the fourteenth day until the evening of the twenty-first day, you shall eat unleavened bread.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> For seven days no leaven shall be found in your houses; for whoever eats what is leavened shall be cut off from the congregation of Israel, whether an alien or a native of the land.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> You shall eat nothing leavened; in all your settlements you shall eat unleavened bread.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then Moses called all the elders of Israel and said to them, \"Go, select lambs for your families, and slaughter the passover lamb.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Take a bunch of hyssop, dip it in the blood that is in the basin, and touch the lintel and the two doorposts with the blood in the basin. None of you shall go outside the door of your house until morning.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> For the LORD will pass through to strike down the Egyptians; when he sees the blood on the lintel and on the two doorposts, the LORD will pass over that door and will not allow the destroyer to enter your houses to strike you down.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> You shall observe this rite as a perpetual ordinance for you and your children.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> When you come to the land that the LORD will give you, as he has promised, you shall keep this observance.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> And when your children ask you, 'What do you mean by this observance?'</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> you shall say, 'It is the passover sacrifice to the LORD, for he passed over the houses of the Israelites in Egypt, when he struck down the Egyptians but spared our houses.'\" And the people bowed down and worshiped.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> The Israelites went and did just as the LORD had commanded Moses and Aaron.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> At midnight the LORD struck down all the firstborn in the land of Egypt, from the firstborn of Pharaoh who sat on his throne to the firstborn of the prisoner who was in the dungeon, and all the firstborn of the livestock.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Pharaoh arose in the night, he and all his officials and all the Egyptians; and there was a loud cry in Egypt, for there was not a house without someone dead.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Then he summoned Moses and Aaron in the night, and said, \"Rise up, go away from my people, both you and the Israelites! Go, worship the LORD, as you said.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Take your flocks and your herds, as you said, and be gone. And bring a blessing on me too!\"</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> The Egyptians urged the people to hasten their departure from the land, for they said, \"We shall all be dead.\"</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> So the people took their dough before it was leavened, with their kneading bowls wrapped up in their cloaks on their shoulders.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> The Israelites had done as Moses told them; they had asked the Egyptians for jewelry of silver and gold, and for clothing,</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> and the LORD had given the people favor in the sight of the Egyptians, so that they let them have what they asked. And so they plundered the Egyptians.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> The Israelites journeyed from Rameses to Succoth, about six hundred thousand men on foot, besides children.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> A mixed crowd also went up with them, and livestock in great numbers, both flocks and herds.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> They baked unleavened cakes of the dough that they had brought out of Egypt; it was not leavened, because they were driven out of Egypt and could not wait, nor had they prepared any provisions for themselves.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> The time that the Israelites had lived in Egypt was four hundred thirty years.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> At the end of four hundred thirty years, on that very day, all the companies of the LORD went out from the land of Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> That was for the LORD a night of vigil, to bring them out of the land of Egypt. That same night is a vigil to be kept for the LORD by all the Israelites throughout their generations.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> The LORD said to Moses and Aaron: This is the ordinance for the passover: no foreigner shall eat of it,</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> but any slave who has been purchased may eat of it after he has been circumcised;</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> no bound or hired servant may eat of it.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> It shall be eaten in one house; you shall not take any of the animal outside the house, and you shall not break any of its bones.</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> The whole congregation of Israel shall celebrate it.</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> If an alien who resides with you wants to celebrate the passover to the LORD, all his males shall be circumcised; then he may draw near to celebrate it; he shall be regarded as a native of the land. But no uncircumcised person shall eat of it;</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> there shall be one law for the native and for the alien who resides among you.</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> All the Israelites did just as the LORD had commanded Moses and Aaron.</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> That very day the LORD brought the Israelites out of the land of Egypt, company by company.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"13\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD said to Moses:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Consecrate to me all the firstborn; whatever is the first to open the womb among the Israelites, of human beings and animals, is mine.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Moses said to the people, \"Remember this day on which you came out of Egypt, out of the house of slavery, because the LORD brought you out from there by strength of hand; no leavened bread shall be eaten.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Today, in the month of Abib, you are going out.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> When the LORD brings you into the land of the Canaanites, the Hittites, the Amorites, the Hivites, and the Jebusites, which he swore to your ancestors to give you, a land flowing with milk and honey, you shall keep this observance in this month.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Seven days you shall eat unleavened bread, and on the seventh day there shall be a festival to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Unleavened bread shall be eaten for seven days; no leavened bread shall be seen in your possession, and no leaven shall be seen among you in all your territory.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> You shall tell your child on that day, 'It is because of what the LORD did for me when I came out of Egypt.'</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> It shall serve for you as a sign on your hand and as a reminder on your forehead, so that the teaching of the LORD may be on your lips; for with a strong hand the LORD brought you out of Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> You shall keep this ordinance at its proper time from year to year.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> \"When the LORD has brought you into the land of the Canaanites, as he swore to you and your ancestors, and has given it to you,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> you shall set apart to the LORD all that first opens the womb. All the firstborn of your livestock that are males shall be the LORD's.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> But every firstborn donkey you shall redeem with a sheep; if you do not redeem it, you must break its neck. Every firstborn male among your children you shall redeem.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> When in the future your child asks you, 'What does this mean?' you shall answer, 'By strength of hand the LORD brought us out of Egypt, from the house of slavery.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> When Pharaoh stubbornly refused to let us go, the LORD killed all the firstborn in the land of Egypt, from human firstborn to the firstborn of animals. Therefore I sacrifice to the LORD every male that first opens the womb, but every firstborn of my sons I redeem.'</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> It shall serve as a sign on your hand and as an emblem on your forehead that by strength of hand the LORD brought us out of Egypt.\" </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> When Pharaoh let the people go, God did not lead them by way of the land of the Philistines, although that was nearer; for God thought, \"If the people face war, they may change their minds and return to Egypt.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> So God led the people by the roundabout way of the wilderness toward the Red Sea. The Israelites went up out of the land of Egypt prepared for battle. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> And Moses took with him the bones of Joseph who had required a solemn oath of the Israelites, saying, \"God will surely take notice of you, and then you must carry my bones with you from here.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> They set out from Succoth, and camped at Etham, on the edge of the wilderness.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> The LORD went in front of them in a pillar of cloud by day, to lead them along the way, and in a pillar of fire by night, to give them light, so that they might travel by day and by night.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Neither the pillar of cloud by day nor the pillar of fire by night left its place in front of the people.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"14\">\r\n\t\t\t<VERS vnumber=\"1\"> Then the LORD said to Moses:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Tell the Israelites to turn back and camp in front of Pi-hahiroth, between Migdol and the sea, in front of Baal-zephon; you shall camp opposite it, by the sea.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Pharaoh will say of the Israelites, \"They are wandering aimlessly in the land; the wilderness has closed in on them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> I will harden Pharaoh's heart, and he will pursue them, so that I will gain glory for myself over Pharaoh and all his army; and the Egyptians shall know that I am the LORD. And they did so.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> When the king of Egypt was told that the people had fled, the minds of Pharaoh and his officials were changed toward the people, and they said, \"What have we done, letting Israel leave our service?\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> So he had his chariot made ready, and took his army with him;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> he took six hundred picked chariots and all the other chariots of Egypt with officers over all of them.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The LORD hardened the heart of Pharaoh king of Egypt and he pursued the Israelites, who were going out boldly.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The Egyptians pursued them, all Pharaoh's horses and chariots, his chariot drivers and his army; they overtook them camped by the sea, by Pi-hahiroth, in front of Baal-zephon.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> As Pharaoh drew near, the Israelites looked back, and there were the Egyptians advancing on them. In great fear the Israelites cried out to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> They said to Moses, \"Was it because there were no graves in Egypt that you have taken us away to die in the wilderness? What have you done to us, bringing us out of Egypt?</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Is this not the very thing we told you in Egypt, 'Let us alone and let us serve the Egyptians'? For it would have been better for us to serve the Egyptians than to die in the wilderness.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> But Moses said to the people, \"Do not be afraid, stand firm, and see the deliverance that the LORD will accomplish for you today; for the Egyptians whom you see today you shall never see again.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The LORD will fight for you, and you have only to keep still.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Then the LORD said to Moses, \"Why do you cry out to me? Tell the Israelites to go forward.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> But you lift up your staff, and stretch out your hand over the sea and divide it, that the Israelites may go into the sea on dry ground.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then I will harden the hearts of the Egyptians so that they will go in after them; and so I will gain glory for myself over Pharaoh and all his army, his chariots, and his chariot drivers.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> And the Egyptians shall know that I am the LORD, when I have gained glory for myself over Pharaoh, his chariots, and his chariot drivers.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The angel of God who was going before the Israelite army moved and went behind them; and the pillar of cloud moved from in front of them and took its place behind them.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> It came between the army of Egypt and the army of Israel. And so the cloud was there with the darkness, and it lit up the night; one did not come near the other all night.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then Moses stretched out his hand over the sea. The LORD drove the sea back by a strong east wind all night, and turned the sea into dry land; and the waters were divided.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The Israelites went into the sea on dry ground, the waters forming a wall for them on their right and on their left.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> The Egyptians pursued, and went into the sea after them, all of Pharaoh's horses, chariots, and chariot drivers.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> At the morning watch the LORD in the pillar of fire and cloud looked down upon the Egyptian army, and threw the Egyptian army into panic.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> He clogged their chariot wheels so that they turned with difficulty. The Egyptians said, \"Let us flee from the Israelites, for the LORD is fighting for them against Egypt.\" </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Then the LORD said to Moses, \"Stretch out your hand over the sea, so that the water may come back upon the Egyptians, upon their chariots and chariot drivers.\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> So Moses stretched out his hand over the sea, and at dawn the sea returned to its normal depth. As the Egyptians fled before it, the LORD tossed the Egyptians into the sea.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> The waters returned and covered the chariots and the chariot drivers, the entire army of Pharaoh that had followed them into the sea; not one of them remained.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> But the Israelites walked on dry ground through the sea, the waters forming a wall for them on their right and on their left.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Thus the LORD saved Israel that day from the Egyptians; and Israel saw the Egyptians dead on the seashore.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Israel saw the great work that the LORD did against the Egyptians. So the people feared the LORD and believed in the LORD and in his servant Moses.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"15\">\r\n\t\t\t<VERS vnumber=\"1\"> Then Moses and the Israelites sang this song to the LORD: \"I will sing to the LORD, for he has triumphed gloriously; horse and rider he has thrown into the sea.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The LORD is my strength and my might, and he has become my salvation; this is my God, and I will praise him, my father's God, and I will exalt him. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The LORD is a warrior; the LORD is his name.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> \"Pharaoh's chariots and his army he cast into the sea; his picked officers were sunk in the Red Sea. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The floods covered them; they went down into the depths like a stone.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Your right hand, O LORD, glorious in power-- your right hand, O LORD, shattered the enemy.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> In the greatness of your majesty you overthrew your adversaries; you sent out your fury, it consumed them like stubble.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> At the blast of your nostrils the waters piled up, the floods stood up in a heap; the deeps congealed in the heart of the sea.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The enemy said, 'I will pursue, I will overtake, I will divide the spoil, my desire shall have its fill of them. I will draw my sword, my hand shall destroy them.'</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> You blew with your wind, the sea covered them; they sank like lead in the mighty waters.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> \"Who is like you, O LORD, among the gods? Who is like you, majestic in holiness, awesome in splendor, doing wonders?</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> You stretched out your right hand, the earth swallowed them.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> \"In your steadfast love you led the people whom you redeemed; you guided them by your strength to your holy abode.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The peoples heard, they trembled; pangs seized the inhabitants of Philistia.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Then the chiefs of Edom were dismayed; trembling seized the leaders of Moab; all the inhabitants of Canaan melted away.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Terror and dread fell upon them; by the might of your arm, they became still as a stone until your people, O LORD, passed by, until the people whom you acquired passed by.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> You brought them in and planted them on the mountain of your own possession, the place, O LORD, that you made your abode, the sanctuary, O LORD, that your hands have established.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The LORD will reign forever and ever.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> When the horses of Pharaoh with his chariots and his chariot drivers went into the sea, the LORD brought back the waters of the sea upon them; but the Israelites walked through the sea on dry ground.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Then the prophet Miriam, Aaron's sister, took a tambourine in her hand; and all the women went out after her with tambourines and with dancing.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> And Miriam sang to them: \"Sing to the LORD, for he has triumphed gloriously; horse and rider he has thrown into the sea.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Then Moses ordered Israel to set out from the Red Sea, and they went into the wilderness of Shur. They went three days in the wilderness and found no water. </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> When they came to Marah, they could not drink the water of Marah because it was bitter. That is why it was called Marah. </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> And the people complained against Moses, saying, \"What shall we drink?\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> He cried out to the LORD; and the LORD showed him a piece of wood; he threw it into the water, and the water became sweet. There the LORD made for them a statute and an ordinance and there he put them to the test.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> He said, \"If you will listen carefully to the voice of the LORD your God, and do what is right in his sight, and give heed to his commandments and keep all his statutes, I will not bring upon you any of the diseases that I brought upon the Egyptians; for I am the LORD who heals you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Then they came to Elim, where there were twelve springs of water and seventy palm trees; and they camped there by the water.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"16\">\r\n\t\t\t<VERS vnumber=\"1\"> The whole congregation of the Israelites set out from Elim; and Israel came to the wilderness of Sin, which is between Elim and Sinai, on the fifteenth day of the second month after they had departed from the land of Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The whole congregation of the Israelites complained against Moses and Aaron in the wilderness.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The Israelites said to them, \"If only we had died by the hand of the LORD in the land of Egypt, when we sat by the fleshpots and ate our fill of bread; for you have brought us out into this wilderness to kill this whole assembly with hunger.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then the LORD said to Moses, \"I am going to rain bread from heaven for you, and each day the people shall go out and gather enough for that day. In that way I will test them, whether they will follow my instruction or not.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> On the sixth day, when they prepare what they bring in, it will be twice as much as they gather on other days.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> So Moses and Aaron said to all the Israelites, \"In the evening you shall know that it was the LORD who brought you out of the land of Egypt,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> and in the morning you shall see the glory of the LORD, because he has heard your complaining against the LORD. For what are we, that you complain against us?\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And Moses said, \"When the LORD gives you meat to eat in the evening and your fill of bread in the morning, because the LORD has heard the complaining that you utter against him-- what are we? Your complaining is not against us but against the LORD.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then Moses said to Aaron, \"Say to the whole congregation of the Israelites, 'Draw near to the LORD, for he has heard your complaining.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And as Aaron spoke to the whole congregation of the Israelites, they looked toward the wilderness, and the glory of the LORD appeared in the cloud.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The LORD spoke to Moses and said,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> \"I have heard the complaining of the Israelites; say to them, 'At twilight you shall eat meat, and in the morning you shall have your fill of bread; then you shall know that I am the LORD your God.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> In the evening quails came up and covered the camp; and in the morning there was a layer of dew around the camp.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> When the layer of dew lifted, there on the surface of the wilderness was a fine flaky substance, as fine as frost on the ground.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> When the Israelites saw it, they said to one another, \"What is it?\" For they did not know what it was. Moses said to them, \"It is the bread that the LORD has given you to eat. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> This is what the LORD has commanded: 'Gather as much of it as each of you needs, an omer to a person according to the number of persons, all providing for those in their own tents.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The Israelites did so, some gathering more, some less.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> But when they measured it with an omer, those who gathered much had nothing over, and those who gathered little had no shortage; they gathered as much as each of them needed.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> And Moses said to them, \"Let no one leave any of it over until morning.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> But they did not listen to Moses; some left part of it until morning, and it bred worms and became foul. And Moses was angry with them.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Morning by morning they gathered it, as much as each needed; but when the sun grew hot, it melted.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> On the sixth day they gathered twice as much food, two omers apiece. When all the leaders of the congregation came and told Moses,</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> he said to them, \"This is what the LORD has commanded: 'Tomorrow is a day of solemn rest, a holy sabbath to the LORD; bake what you want to bake and boil what you want to boil, and all that is left over put aside to be kept until morning.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> So they put it aside until morning, as Moses commanded them; and it did not become foul, and there were no worms in it.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Moses said, \"Eat it today, for today is a sabbath to the LORD; today you will not find it in the field.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Six days you shall gather it; but on the seventh day, which is a sabbath, there will be none.\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> On the seventh day some of the people went out to gather, and they found none.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> The LORD said to Moses, \"How long will you refuse to keep my commandments and instructions?</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> See! The LORD has given you the sabbath, therefore on the sixth day he gives you food for two days; each of you stay where you are; do not leave your place on the seventh day.\"</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> So the people rested on the seventh day.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> The house of Israel called it manna; it was like coriander seed, white, and the taste of it was like wafers made with honey.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Moses said, \"This is what the LORD has commanded: 'Let an omer of it be kept throughout your generations, in order that they may see the food with which I fed you in the wilderness, when I brought you out of the land of Egypt.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> And Moses said to Aaron, \"Take a jar, and put an omer of manna in it, and place it before the LORD, to be kept throughout your generations.\"</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> As the LORD commanded Moses, so Aaron placed it before the covenant, for safekeeping. </VERS>\r\n\t\t\t<VERS vnumber=\"35\"> The Israelites ate manna forty years, until they came to a habitable land; they ate manna, until they came to the border of the land of Canaan.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> An omer is a tenth of an ephah.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"17\">\r\n\t\t\t<VERS vnumber=\"1\"> From the wilderness of Sin the whole congregation of the Israelites journeyed by stages, as the LORD commanded. They camped at Rephidim, but there was no water for the people to drink.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The people quarreled with Moses, and said, \"Give us water to drink.\" Moses said to them, \"Why do you quarrel with me? Why do you test the LORD?\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> But the people thirsted there for water; and the people complained against Moses and said, \"Why did you bring us out of Egypt, to kill us and our children and livestock with thirst?\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> So Moses cried out to the LORD, \"What shall I do with this people? They are almost ready to stone me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The LORD said to Moses, \"Go on ahead of the people, and take some of the elders of Israel with you; take in your hand the staff with which you struck the Nile, and go.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> I will be standing there in front of you on the rock at Horeb. Strike the rock, and water will come out of it, so that the people may drink.\" Moses did so, in the sight of the elders of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> He called the place Massah and Meribah, because the Israelites quarreled and tested the LORD, saying, \"Is the LORD among us or not?\" </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then Amalek came and fought with Israel at Rephidim.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Moses said to Joshua, \"Choose some men for us and go out, fight with Amalek. Tomorrow I will stand on the top of the hill with the staff of God in my hand.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> So Joshua did as Moses told him, and fought with Amalek, while Moses, Aaron, and Hur went up to the top of the hill.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Whenever Moses held up his hand, Israel prevailed; and whenever he lowered his hand, Amalek prevailed.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> But Moses' hands grew weary; so they took a stone and put it under him, and he sat on it. Aaron and Hur held up his hands, one on one side, and the other on the other side; so his hands were steady until the sun set.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And Joshua defeated Amalek and his people with the sword.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then the LORD said to Moses, \"Write this as a reminder in a book and recite it in the hearing of Joshua: I will utterly blot out the remembrance of Amalek from under heaven.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And Moses built an altar and called it, The LORD is my banner.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> He said, \"A hand upon the banner of the LORD The LORD will have war with Amalek from generation to generation.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"18\">\r\n\t\t\t<VERS vnumber=\"1\"> Jethro, the priest of Midian, Moses' father-in-law, heard of all that God had done for Moses and for his people Israel, how the LORD had brought Israel out of Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> After Moses had sent away his wife Zipporah, his father-in-law Jethro took her back,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> along with her two sons. The name of the one was Gershom (for he said, \"I have been an alien in a foreign land\"), </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> and the name of the other, Eliezer (for he said, \"The God of my father was my help, and delivered me from the sword of Pharaoh\"). </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Jethro, Moses' father-in-law, came into the wilderness where Moses was encamped at the mountain of God, bringing Moses' sons and wife to him.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> He sent word to Moses, \"I, your father-in-law Jethro, am coming to you, with your wife and her two sons.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Moses went out to meet his father-in-law; he bowed down and kissed him; each asked after the other's welfare, and they went into the tent.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then Moses told his father-in-law all that the LORD had done to Pharaoh and to the Egyptians for Israel's sake, all the hardship that had beset them on the way, and how the LORD had delivered them.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Jethro rejoiced for all the good that the LORD had done to Israel, in delivering them from the Egyptians.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Jethro said, \"Blessed be the LORD, who has delivered you from the Egyptians and from Pharaoh.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Now I know that the LORD is greater than all gods, because he delivered the people from the Egyptians, when they dealt arrogantly with them.\" </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> And Jethro, Moses' father-in-law, brought a burnt offering and sacrifices to God; and Aaron came with all the elders of Israel to eat bread with Moses' father-in-law in the presence of God.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The next day Moses sat as judge for the people, while the people stood around him from morning until evening.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> When Moses' father-in-law saw all that he was doing for the people, he said, \"What is this that you are doing for the people? Why do you sit alone, while all the people stand around you from morning until evening?\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Moses said to his father-in-law, \"Because the people come to me to inquire of God.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> When they have a dispute, they come to me and I decide between one person and another, and I make known to them the statutes and instructions of God.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Moses' father-in-law said to him, \"What you are doing is not good.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> You will surely wear yourself out, both you and these people with you. For the task is too heavy for you; you cannot do it alone.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Now listen to me. I will give you counsel, and God be with you! You should represent the people before God, and you should bring their cases before God;</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> teach them the statutes and instructions and make known to them the way they are to go and the things they are to do.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> You should also look for able men among all the people, men who fear God, are trustworthy, and hate dishonest gain; set such men over them as officers over thousands, hundreds, fifties and tens.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Let them sit as judges for the people at all times; let them bring every important case to you, but decide every minor case themselves. So it will be easier for you, and they will bear the burden with you.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> If you do this, and God so commands you, then you will be able to endure, and all these people will go to their home in peace.\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> So Moses listened to his father-in-law and did all that he had said.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Moses chose able men from all Israel and appointed them as heads over the people, as officers over thousands, hundreds, fifties, and tens.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> And they judged the people at all times; hard cases they brought to Moses, but any minor case they decided themselves.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Then Moses let his father-in-law depart, and he went off to his own country.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"19\">\r\n\t\t\t<VERS vnumber=\"1\"> On the third new moon after the Israelites had gone out of the land of Egypt, on that very day, they came into the wilderness of Sinai.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> They had journeyed from Rephidim, entered the wilderness of Sinai, and camped in the wilderness; Israel camped there in front of the mountain.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then Moses went up to God; the LORD called to him from the mountain, saying, \"Thus you shall say to the house of Jacob, and tell the Israelites:</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> You have seen what I did to the Egyptians, and how I bore you on eagles' wings and brought you to myself.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Now therefore, if you obey my voice and keep my covenant, you shall be my treasured possession out of all the peoples. Indeed, the whole earth is mine,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> but you shall be for me a priestly kingdom and a holy nation. These are the words that you shall speak to the Israelites.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> So Moses came, summoned the elders of the people, and set before them all these words that the LORD had commanded him.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The people all answered as one: \"Everything that the LORD has spoken we will do.\" Moses reported the words of the people to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then the LORD said to Moses, \"I am going to come to you in a dense cloud, in order that the people may hear when I speak with you and so trust you ever after.\" When Moses had told the words of the people to the LORD,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> the LORD said to Moses: \"Go to the people and consecrate them today and tomorrow. Have them wash their clothes</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> and prepare for the third day, because on the third day the LORD will come down upon Mount Sinai in the sight of all the people.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> You shall set limits for the people all around, saying, 'Be careful not to go up the mountain or to touch the edge of it. Any who touch the mountain shall be put to death.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> No hand shall touch them, but they shall be stoned or shot with arrows; whether animal or human being, they shall not live.' When the trumpet sounds a long blast, they may go up on the mountain.\" </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> So Moses went down from the mountain to the people. He consecrated the people, and they washed their clothes.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And he said to the people, \"Prepare for the third day; do not go near a woman.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> On the morning of the third day there was thunder and lightning, as well as a thick cloud on the mountain, and a blast of a trumpet so loud that all the people who were in the camp trembled.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Moses brought the people out of the camp to meet God. They took their stand at the foot of the mountain.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Now Mount Sinai was wrapped in smoke, because the LORD had descended upon it in fire; the smoke went up like the smoke of a kiln, while the whole mountain shook violently.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> As the blast of the trumpet grew louder and louder, Moses would speak and God would answer him in thunder.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> When the LORD descended upon Mount Sinai, to the top of the mountain, the LORD summoned Moses to the top of the mountain, and Moses went up.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then the LORD said to Moses, \"Go down and warn the people not to break through to the LORD to look; otherwise many of them will perish.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Even the priests who approach the LORD must consecrate themselves or the LORD will break out against them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Moses said to the LORD, \"The people are not permitted to come up to Mount Sinai; for you yourself warned us, saying, 'Set limits around the mountain and keep it holy.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> The LORD said to him, \"Go down, and come up bringing Aaron with you; but do not let either the priests or the people break through to come up to the LORD; otherwise he will break out against them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> So Moses went down to the people and told them.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"20\">\r\n\t\t\t<VERS vnumber=\"1\"> Then God spoke all these words:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> I am the LORD your God, who brought you out of the land of Egypt, out of the house of slavery;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> you shall have no other gods before me. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> You shall not make for yourself an idol, whether in the form of anything that is in heaven above, or that is on the earth beneath, or that is in the water under the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> You shall not bow down to them or worship them; for I the LORD your God am a jealous God, punishing children for the iniquity of parents, to the third and the fourth generation of those who reject me,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> but showing steadfast love to the thousandth generation of those who love me and keep my commandments. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> You shall not make wrongful use of the name of the LORD your God, for the LORD will not acquit anyone who misuses his name.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Remember the sabbath day, and keep it holy.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Six days you shall labor and do all your work.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> But the seventh day is a sabbath to the LORD your God; you shall not do any work-- you, your son or your daughter, your male or female slave, your livestock, or the alien resident in your towns.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> For in six days the LORD made heaven and earth, the sea, and all that is in them, but rested the seventh day; therefore the LORD blessed the sabbath day and consecrated it.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Honor your father and your mother, so that your days may be long in the land that the LORD your God is giving you.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> You shall not murder. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> You shall not commit adultery.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> You shall not steal.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> You shall not bear false witness against your neighbor.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> You shall not covet your neighbor's house; you shall not covet your neighbor's wife, or male or female slave, or ox, or donkey, or anything that belongs to your neighbor.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> When all the people witnessed the thunder and lightning, the sound of the trumpet, and the mountain smoking, they were afraid and trembled and stood at a distance, </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> and said to Moses, \"You speak to us, and we will listen; but do not let God speak to us, or we will die.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Moses said to the people, \"Do not be afraid; for God has come only to test you and to put the fear of him upon you so that you do not sin.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then the people stood at a distance, while Moses drew near to the thick darkness where God was.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The LORD said to Moses: Thus you shall say to the Israelites: \"You have seen for yourselves that I spoke with you from heaven.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> You shall not make gods of silver alongside me, nor shall you make for yourselves gods of gold.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> You need make for me only an altar of earth and sacrifice on it your burnt offerings and your offerings of well-being, your sheep and your oxen; in every place where I cause my name to be remembered I will come to you and bless you.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> But if you make for me an altar of stone, do not build it of hewn stones; for if you use a chisel upon it you profane it.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> You shall not go up by steps to my altar, so that your nakedness may not be exposed on it.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"21\">\r\n\t\t\t<VERS vnumber=\"1\"> These are the ordinances that you shall set before them:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> When you buy a male Hebrew slave, he shall serve six years, but in the seventh he shall go out a free person, without debt.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> If he comes in single, he shall go out single; if he comes in married, then his wife shall go out with him.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> If his master gives him a wife and she bears him sons or daughters, the wife and her children shall be her master's and he shall go out alone.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> But if the slave declares, \"I love my master, my wife, and my children; I will not go out a free person,\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> then his master shall bring him before God. He shall be brought to the door or the doorpost; and his master shall pierce his ear with an awl; and he shall serve him for life. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> When a man sells his daughter as a slave, she shall not go out as the male slaves do.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> If she does not please her master, who designated her for himself, then he shall let her be redeemed; he shall have no right to sell her to a foreign people, since he has dealt unfairly with her.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> If he designates her for his son, he shall deal with her as with a daughter.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> If he takes another wife to himself, he shall not diminish the food, clothing, or marital rights of the first wife. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> And if he does not do these three things for her, she shall go out without debt, without payment of money.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Whoever strikes a person mortally shall be put to death.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> If it was not premeditated, but came about by an act of God, then I will appoint for you a place to which the killer may flee.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But if someone willfully attacks and kills another by treachery, you shall take the killer from my altar for execution.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Whoever strikes father or mother shall be put to death.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Whoever kidnaps a person, whether that person has been sold or is still held in possession, shall be put to death.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Whoever curses father or mother shall be put to death.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> When individuals quarrel and one strikes the other with a stone or fist so that the injured party, though not dead, is confined to bed,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> but recovers and walks around outside with the help of a staff, then the assailant shall be free of liability, except to pay for the loss of time, and to arrange for full recovery.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> When a slaveowner strikes a male or female slave with a rod and the slave dies immediately, the owner shall be punished.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> But if the slave survives a day or two, there is no punishment; for the slave is the owner's property.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> When people who are fighting injure a pregnant woman so that there is a miscarriage, and yet no further harm follows, the one responsible shall be fined what the woman's husband demands, paying as much as the judges determine.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> If any harm follows, then you shall give life for life,</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> eye for eye, tooth for tooth, hand for hand, foot for foot,</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> burn for burn, wound for wound, stripe for stripe.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> When a slaveowner strikes the eye of a male or female slave, destroying it, the owner shall let the slave go, a free person, to compensate for the eye.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> If the owner knocks out a tooth of a male or female slave, the slave shall be let go, a free person, to compensate for the tooth.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> When an ox gores a man or a woman to death, the ox shall be stoned, and its flesh shall not be eaten; but the owner of the ox shall not be liable.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> If the ox has been accustomed to gore in the past, and its owner has been warned but has not restrained it, and it kills a man or a woman, the ox shall be stoned, and its owner also shall be put to death.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> If a ransom is imposed on the owner, then the owner shall pay whatever is imposed for the redemption of the victim's life.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> If it gores a boy or a girl, the owner shall be dealt with according to this same rule.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> If the ox gores a male or female slave, the owner shall pay to the slaveowner thirty shekels of silver, and the ox shall be stoned.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> If someone leaves a pit open, or digs a pit and does not cover it, and an ox or a donkey falls into it,</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> the owner of the pit shall make restitution, giving money to its owner, but keeping the dead animal.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> If someone's ox hurts the ox of another, so that it dies, then they shall sell the live ox and divide the price of it; and the dead animal they shall also divide.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> But if it was known that the ox was accustomed to gore in the past, and its owner has not restrained it, the owner shall restore ox for ox, but keep the dead animal.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"22\">\r\n\t\t\t<VERS vnumber=\"1\"> When someone steals an ox or a sheep, and slaughters it or sells it, the thief shall pay five oxen for an ox, and four sheep for a sheep. The thief shall make restitution, but if unable to do so, shall be sold for the theft.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> If a thief is found breaking in, and is beaten to death, no bloodguilt is incurred;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> but if it happens after sunrise, bloodguilt is incurred.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> When the animal, whether ox or donkey or sheep, is found alive in the thief's possession, the thief shall pay double.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> When someone causes a field or vineyard to be grazed over, or lets livestock loose to graze in someone else's field, restitution shall be made from the best in the owner's field or vineyard.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> When fire breaks out and catches in thorns so that the stacked grain or the standing grain or the field is consumed, the one who started the fire shall make full restitution.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> When someone delivers to a neighbor money or goods for safekeeping, and they are stolen from the neighbor's house, then the thief, if caught, shall pay double.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> If the thief is not caught, the owner of the house shall be brought before God, to determine whether or not the owner had laid hands on the neighbor's goods.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> In any case of disputed ownership involving ox, donkey, sheep, clothing, or any other loss, of which one party says, \"This is mine,\" the case of both parties shall come before God; the one whom God condemns shall pay double to the other. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> When someone delivers to another a donkey, ox, sheep, or any other animal for safekeeping, and it dies or is injured or is carried off, without anyone seeing it,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> an oath before the LORD shall decide between the two of them that the one has not laid hands on the property of the other; the owner shall accept the oath, and no restitution shall be made.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> But if it was stolen, restitution shall be made to its owner.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> If it was mangled by beasts, let it be brought as evidence; restitution shall not be made for the mangled remains.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> When someone borrows an animal from another and it is injured or dies, the owner not being present, full restitution shall be made.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> If the owner was present, there shall be no restitution; if it was hired, only the hiring fee is due.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> When a man seduces a virgin who is not engaged to be married, and lies with her, he shall give the bride-price for her and make her his wife.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> But if her father refuses to give her to him, he shall pay an amount equal to the bride-price for virgins.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> You shall not permit a female sorcerer to live.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Whoever lies with an animal shall be put to death.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Whoever sacrifices to any god, other than the LORD alone, shall be devoted to destruction.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> You shall not wrong or oppress a resident alien, for you were aliens in the land of Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> You shall not abuse any widow or orphan.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> If you do abuse them, when they cry out to me, I will surely heed their cry;</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> my wrath will burn, and I will kill you with the sword, and your wives shall become widows and your children orphans.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> If you lend money to my people, to the poor among you, you shall not deal with them as a creditor; you shall not exact interest from them.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> If you take your neighbor's cloak in pawn, you shall restore it before the sun goes down;</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> for it may be your neighbor's only clothing to use as cover; in what else shall that person sleep? And if your neighbor cries out to me, I will listen, for I am compassionate.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> You shall not revile God, or curse a leader of your people.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> You shall not delay to make offerings from the fullness of your harvest and from the outflow of your presses. The firstborn of your sons you shall give to me. </VERS>\r\n\t\t\t<VERS vnumber=\"30\"> You shall do the same with your oxen and with your sheep: seven days it shall remain with its mother; on the eighth day you shall give it to me.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> You shall be people consecrated to me; therefore you shall not eat any meat that is mangled by beasts in the field; you shall throw it to the dogs.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"23\">\r\n\t\t\t<VERS vnumber=\"1\"> You shall not spread a false report. You shall not join hands with the wicked to act as a malicious witness.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> You shall not follow a majority in wrongdoing; when you bear witness in a lawsuit, you shall not side with the majority so as to pervert justice;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> nor shall you be partial to the poor in a lawsuit.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> When you come upon your enemy's ox or donkey going astray, you shall bring it back.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> When you see the donkey of one who hates you lying under its burden and you would hold back from setting it free, you must help to set it free.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> You shall not pervert the justice due to your poor in their lawsuits.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Keep far from a false charge, and do not kill the innocent and those in the right, for I will not acquit the guilty.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> You shall take no bribe, for a bribe blinds the officials, and subverts the cause of those who are in the right.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> You shall not oppress a resident alien; you know the heart of an alien, for you were aliens in the land of Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For six years you shall sow your land and gather in its yield;</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> but the seventh year you shall let it rest and lie fallow, so that the poor of your people may eat; and what they leave the wild animals may eat. You shall do the same with your vineyard, and with your olive orchard.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Six days you shall do your work, but on the seventh day you shall rest, so that your ox and your donkey may have relief, and your homeborn slave and the resident alien may be refreshed.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Be attentive to all that I have said to you. Do not invoke the names of other gods; do not let them be heard on your lips.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Three times in the year you shall hold a festival for me.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> You shall observe the festival of unleavened bread; as I commanded you, you shall eat unleavened bread for seven days at the appointed time in the month of Abib, for in it you came out of Egypt. No one shall appear before me empty-handed.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> You shall observe the festival of harvest, of the first fruits of your labor, of what you sow in the field. You shall observe the festival of ingathering at the end of the year, when you gather in from the field the fruit of your labor.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Three times in the year all your males shall appear before the Lord GOD.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> You shall not offer the blood of my sacrifice with anything leavened, or let the fat of my festival remain until the morning.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The choicest of the first fruits of your ground you shall bring into the house of the LORD your God. You shall not boil a kid in its mother's milk.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> I am going to send an angel in front of you, to guard you on the way and to bring you to the place that I have prepared.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Be attentive to him and listen to his voice; do not rebel against him, for he will not pardon your transgression; for my name is in him.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> But if you listen attentively to his voice and do all that I say, then I will be an enemy to your enemies and a foe to your foes.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> When my angel goes in front of you, and brings you to the Amorites, the Hittites, the Perizzites, the Canaanites, the Hivites, and the Jebusites, and I blot them out,</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> you shall not bow down to their gods, or worship them, or follow their practices, but you shall utterly demolish them and break their pillars in pieces.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> You shall worship the LORD your God, and I will bless your bread and your water; and I will take sickness away from among you. </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> No one shall miscarry or be barren in your land; I will fulfill the number of your days.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> I will send my terror in front of you, and will throw into confusion all the people against whom you shall come, and I will make all your enemies turn their backs to you.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> And I will send the pestilence in front of you, which shall drive out the Hivites, the Canaanites, and the Hittites from before you. </VERS>\r\n\t\t\t<VERS vnumber=\"29\"> I will not drive them out from before you in one year, or the land would become desolate and the wild animals would multiply against you.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Little by little I will drive them out from before you, until you have increased and possess the land.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> I will set your borders from the Red Sea to the sea of the Philistines, and from the wilderness to the Euphrates; for I will hand over to you the inhabitants of the land, and you shall drive them out before you. </VERS>\r\n\t\t\t<VERS vnumber=\"32\"> You shall make no covenant with them and their gods.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> They shall not live in your land, or they will make you sin against me; for if you worship their gods, it will surely be a snare to you.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"24\">\r\n\t\t\t<VERS vnumber=\"1\"> Then he said to Moses, \"Come up to the LORD, you and Aaron, Nadab, and Abihu, and seventy of the elders of Israel, and worship at a distance.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Moses alone shall come near the LORD; but the others shall not come near, and the people shall not come up with him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Moses came and told the people all the words of the LORD and all the ordinances; and all the people answered with one voice, and said, \"All the words that the LORD has spoken we will do.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> And Moses wrote down all the words of the LORD. He rose early in the morning, and built an altar at the foot of the mountain, and set up twelve pillars, corresponding to the twelve tribes of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> He sent young men of the people of Israel, who offered burnt offerings and sacrificed oxen as offerings of well-being to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Moses took half of the blood and put it in basins, and half of the blood he dashed against the altar.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then he took the book of the covenant, and read it in the hearing of the people; and they said, \"All that the LORD has spoken we will do, and we will be obedient.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Moses took the blood and dashed it on the people, and said, \"See the blood of the covenant that the LORD has made with you in accordance with all these words.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then Moses and Aaron, Nadab, and Abihu, and seventy of the elders of Israel went up,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> and they saw the God of Israel. Under his feet there was something like a pavement of sapphire stone, like the very heaven for clearness.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> God did not lay his hand on the chief men of the people of Israel; also they beheld God, and they ate and drank. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The LORD said to Moses, \"Come up to me on the mountain, and wait there; and I will give you the tablets of stone, with the law and the commandment, which I have written for their instruction.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> So Moses set out with his assistant Joshua, and Moses went up into the mountain of God.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> To the elders he had said, \"Wait here for us, until we come to you again; for Aaron and Hur are with you; whoever has a dispute may go to them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Then Moses went up on the mountain, and the cloud covered the mountain.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The glory of the LORD settled on Mount Sinai, and the cloud covered it for six days; on the seventh day he called to Moses out of the cloud.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Now the appearance of the glory of the LORD was like a devouring fire on the top of the mountain in the sight of the people of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Moses entered the cloud, and went up on the mountain. Moses was on the mountain for forty days and forty nights.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"25\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD said to Moses:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Tell the Israelites to take for me an offering; from all whose hearts prompt them to give you shall receive the offering for me.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> This is the offering that you shall receive from them: gold, silver, and bronze,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> blue, purple, and crimson yarns and fine linen, goats' hair,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> tanned rams' skins, fine leather, acacia wood, </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> oil for the lamps, spices for the anointing oil and for the fragrant incense,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> onyx stones and gems to be set in the ephod and for the breastpiece.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And have them make me a sanctuary, so that I may dwell among them.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> In accordance with all that I show you concerning the pattern of the tabernacle and of all its furniture, so you shall make it.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> They shall make an ark of acacia wood; it shall be two and a half cubits long, a cubit and a half wide, and a cubit and a half high.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> You shall overlay it with pure gold, inside and outside you shall overlay it, and you shall make a molding of gold upon it all around.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> You shall cast four rings of gold for it and put them on its four feet, two rings on the one side of it, and two rings on the other side.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> You shall make poles of acacia wood, and overlay them with gold.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> And you shall put the poles into the rings on the sides of the ark, by which to carry the ark.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The poles shall remain in the rings of the ark; they shall not be taken from it.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> You shall put into the ark the covenant that I shall give you.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then you shall make a mercy seat of pure gold; two cubits and a half shall be its length, and a cubit and a half its width.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> You shall make two cherubim of gold; you shall make them of hammered work, at the two ends of the mercy seat. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Make one cherub at the one end, and one cherub at the other; of one piece with the mercy seat you shall make the cherubim at its two ends.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The cherubim shall spread out their wings above, overshadowing the mercy seat with their wings. They shall face one to another; the faces of the cherubim shall be turned toward the mercy seat. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> You shall put the mercy seat on the top of the ark; and in the ark you shall put the covenant that I shall give you. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> There I will meet with you, and from above the mercy seat, from between the two cherubim that are on the ark of the covenant, I will deliver to you all my commands for the Israelites. </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> You shall make a table of acacia wood, two cubits long, one cubit wide, and a cubit and a half high.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> You shall overlay it with pure gold, and make a molding of gold around it.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> You shall make around it a rim a handbreadth wide, and a molding of gold around the rim.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> You shall make for it four rings of gold, and fasten the rings to the four corners at its four legs.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> The rings that hold the poles used for carrying the table shall be close to the rim.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> You shall make the poles of acacia wood, and overlay them with gold, and the table shall be carried with these.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> You shall make its plates and dishes for incense, and its flagons and bowls with which to pour drink offerings; you shall make them of pure gold.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> And you shall set the bread of the Presence on the table before me always.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> You shall make a lampstand of pure gold. The base and the shaft of the lampstand shall be made of hammered work; its cups, its calyxes, and its petals shall be of one piece with it;</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> and there shall be six branches going out of its sides, three branches of the lampstand out of one side of it and three branches of the lampstand out of the other side of it;</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> three cups shaped like almond blossoms, each with calyx and petals, on one branch, and three cups shaped like almond blossoms, each with calyx and petals, on the other branch-- so for the six branches going out of the lampstand.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> On the lampstand itself there shall be four cups shaped like almond blossoms, each with its calyxes and petals.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> There shall be a calyx of one piece with it under the first pair of branches, a calyx of one piece with it under the next pair of branches, and a calyx of one piece with it under the last pair of branches-- so for the six branches that go out of the lampstand.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Their calyxes and their branches shall be of one piece with it, the whole of it one hammered piece of pure gold.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> You shall make the seven lamps for it; and the lamps shall be set up so as to give light on the space in front of it.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Its snuffers and trays shall be of pure gold.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> It, and all these utensils, shall be made from a talent of pure gold.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> And see that you make them according to the pattern for them, which is being shown you on the mountain.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"26\">\r\n\t\t\t<VERS vnumber=\"1\"> Moreover you shall make the tabernacle with ten curtains of fine twisted linen, and blue, purple, and crimson yarns; you shall make them with cherubim skillfully worked into them.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The length of each curtain shall be twenty-eight cubits, and the width of each curtain four cubits; all the curtains shall be of the same size.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Five curtains shall be joined to one another; and the other five curtains shall be joined to one another.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> You shall make loops of blue on the edge of the outermost curtain in the first set; and likewise you shall make loops on the edge of the outermost curtain in the second set.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> You shall make fifty loops on the one curtain, and you shall make fifty loops on the edge of the curtain that is in the second set; the loops shall be opposite one another.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> You shall make fifty clasps of gold, and join the curtains to one another with the clasps, so that the tabernacle may be one whole.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> You shall also make curtains of goats' hair for a tent over the tabernacle; you shall make eleven curtains.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The length of each curtain shall be thirty cubits, and the width of each curtain four cubits; the eleven curtains shall be of the same size.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> You shall join five curtains by themselves, and six curtains by themselves, and the sixth curtain you shall double over at the front of the tent.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> You shall make fifty loops on the edge of the curtain that is outermost in one set, and fifty loops on the edge of the curtain that is outermost in the second set.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> You shall make fifty clasps of bronze, and put the clasps into the loops, and join the tent together, so that it may be one whole.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The part that remains of the curtains of the tent, the half curtain that remains, shall hang over the back of the tabernacle.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The cubit on the one side, and the cubit on the other side, of what remains in the length of the curtains of the tent, shall hang over the sides of the tabernacle, on this side and that side, to cover it.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> You shall make for the tent a covering of tanned rams' skins and an outer covering of fine leather. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> You shall make upright frames of acacia wood for the tabernacle.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Ten cubits shall be the length of a frame, and a cubit and a half the width of each frame.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> There shall be two pegs in each frame to fit the frames together; you shall make these for all the frames of the tabernacle.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> You shall make the frames for the tabernacle: twenty frames for the south side;</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> and you shall make forty bases of silver under the twenty frames, two bases under the first frame for its two pegs, and two bases under the next frame for its two pegs;</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> and for the second side of the tabernacle, on the north side twenty frames,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> and their forty bases of silver, two bases under the first frame, and two bases under the next frame;</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> and for the rear of the tabernacle westward you shall make six frames.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> You shall make two frames for corners of the tabernacle in the rear;</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> they shall be separate beneath, but joined at the top, at the first ring; it shall be the same with both of them; they shall form the two corners.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> And so there shall be eight frames, with their bases of silver, sixteen bases; two bases under the first frame, and two bases under the next frame.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> You shall make bars of acacia wood, five for the frames of the one side of the tabernacle,</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> and five bars for the frames of the other side of the tabernacle, and five bars for the frames of the side of the tabernacle at the rear westward.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> The middle bar, halfway up the frames, shall pass through from end to end.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> You shall overlay the frames with gold, and shall make their rings of gold to hold the bars; and you shall overlay the bars with gold.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Then you shall erect the tabernacle according to the plan for it that you were shown on the mountain.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> You shall make a curtain of blue, purple, and crimson yarns, and of fine twisted linen; it shall be made with cherubim skillfully worked into it.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> You shall hang it on four pillars of acacia overlaid with gold, which have hooks of gold and rest on four bases of silver.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> You shall hang the curtain under the clasps, and bring the ark of the covenant in there, within the curtain; and the curtain shall separate for you the holy place from the most holy.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> You shall put the mercy seat on the ark of the covenant in the most holy place.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> You shall set the table outside the curtain, and the lampstand on the south side of the tabernacle opposite the table; and you shall put the table on the north side.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> You shall make a screen for the entrance of the tent, of blue, purple, and crimson yarns, and of fine twisted linen, embroidered with needlework.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> You shall make for the screen five pillars of acacia, and overlay them with gold; their hooks shall be of gold, and you shall cast five bases of bronze for them.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"27\">\r\n\t\t\t<VERS vnumber=\"1\"> You shall make the altar of acacia wood, five cubits long and five cubits wide; the altar shall be square, and it shall be three cubits high.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> You shall make horns for it on its four corners; its horns shall be of one piece with it, and you shall overlay it with bronze.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> You shall make pots for it to receive its ashes, and shovels and basins and forks and firepans; you shall make all its utensils of bronze.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> You shall also make for it a grating, a network of bronze; and on the net you shall make four bronze rings at its four corners.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> You shall set it under the ledge of the altar so that the net shall extend halfway down the altar.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> You shall make poles for the altar, poles of acacia wood, and overlay them with bronze;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> the poles shall be put through the rings, so that the poles shall be on the two sides of the altar when it is carried.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> You shall make it hollow, with boards. They shall be made just as you were shown on the mountain.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> You shall make the court of the tabernacle. On the south side the court shall have hangings of fine twisted linen one hundred cubits long for that side;</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> its twenty pillars and their twenty bases shall be of bronze, but the hooks of the pillars and their bands shall be of silver.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Likewise for its length on the north side there shall be hangings one hundred cubits long, their pillars twenty and their bases twenty, of bronze, but the hooks of the pillars and their bands shall be of silver.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> For the width of the court on the west side there shall be fifty cubits of hangings, with ten pillars and ten bases.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The width of the court on the front to the east shall be fifty cubits.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> There shall be fifteen cubits of hangings on the one side, with three pillars and three bases.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> There shall be fifteen cubits of hangings on the other side, with three pillars and three bases.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> For the gate of the court there shall be a screen twenty cubits long, of blue, purple, and crimson yarns, and of fine twisted linen, embroidered with needlework; it shall have four pillars and with them four bases.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> All the pillars around the court shall be banded with silver; their hooks shall be of silver, and their bases of bronze.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The length of the court shall be one hundred cubits, the width fifty, and the height five cubits, with hangings of fine twisted linen and bases of bronze.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> All the utensils of the tabernacle for every use, and all its pegs and all the pegs of the court, shall be of bronze.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> You shall further command the Israelites to bring you pure oil of beaten olives for the light, so that a lamp may be set up to burn regularly.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> In the tent of meeting, outside the curtain that is before the covenant, Aaron and his sons shall tend it from evening to morning before the LORD. It shall be a perpetual ordinance to be observed throughout their generations by the Israelites. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"28\">\r\n\t\t\t<VERS vnumber=\"1\"> Then bring near to you your brother Aaron, and his sons with him, from among the Israelites, to serve me as priests-- Aaron and Aaron's sons, Nadab and Abihu, Eleazar and Ithamar.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> You shall make sacred vestments for the glorious adornment of your brother Aaron.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And you shall speak to all who have ability, whom I have endowed with skill, that they make Aaron's vestments to consecrate him for my priesthood.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> These are the vestments that they shall make: a breastpiece, an ephod, a robe, a checkered tunic, a turban, and a sash. When they make these sacred vestments for your brother Aaron and his sons to serve me as priests,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> they shall use gold, blue, purple, and crimson yarns, and fine linen.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> They shall make the ephod of gold, of blue, purple, and crimson yarns, and of fine twisted linen, skillfully worked.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> It shall have two shoulder-pieces attached to its two edges, so that it may be joined together.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The decorated band on it shall be of the same workmanship and materials, of gold, of blue, purple, and crimson yarns, and of fine twisted linen.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> You shall take two onyx stones, and engrave on them the names of the sons of Israel,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> six of their names on the one stone, and the names of the remaining six on the other stone, in the order of their birth.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> As a gem-cutter engraves signets, so you shall engrave the two stones with the names of the sons of Israel; you shall mount them in settings of gold filigree.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> You shall set the two stones on the shoulder-pieces of the ephod, as stones of remembrance for the sons of Israel; and Aaron shall bear their names before the LORD on his two shoulders for remembrance.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> You shall make settings of gold filigree,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> and two chains of pure gold, twisted like cords; and you shall attach the corded chains to the settings.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> You shall make a breastpiece of judgment, in skilled work; you shall make it in the style of the ephod; of gold, of blue and purple and crimson yarns, and of fine twisted linen you shall make it.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> It shall be square and doubled, a span in length and a span in width.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> You shall set in it four rows of stones. A row of carnelian, chrysolite, and emerald shall be the first row; </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> and the second row a turquoise, a sapphire and a moonstone; </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> and the third row a jacinth, an agate, and an amethyst;</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> and the fourth row a beryl, an onyx, and a jasper; they shall be set in gold filigree.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> There shall be twelve stones with names corresponding to the names of the sons of Israel; they shall be like signets, each engraved with its name, for the twelve tribes.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> You shall make for the breastpiece chains of pure gold, twisted like cords;</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> and you shall make for the breastpiece two rings of gold, and put the two rings on the two edges of the breastpiece.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> You shall put the two cords of gold in the two rings at the edges of the breastpiece;</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> the two ends of the two cords you shall attach to the two settings, and so attach it in front to the shoulder-pieces of the ephod.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> You shall make two rings of gold, and put them at the two ends of the breastpiece, on its inside edge next to the ephod.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> You shall make two rings of gold, and attach them in front to the lower part of the two shoulder-pieces of the ephod, at its joining above the decorated band of the ephod.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> The breastpiece shall be bound by its rings to the rings of the ephod with a blue cord, so that it may lie on the decorated band of the ephod, and so that the breastpiece shall not come loose from the ephod.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> So Aaron shall bear the names of the sons of Israel in the breastpiece of judgment on his heart when he goes into the holy place, for a continual remembrance before the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> In the breastpiece of judgment you shall put the Urim and the Thummim, and they shall be on Aaron's heart when he goes in before the LORD; thus Aaron shall bear the judgment of the Israelites on his heart before the LORD continually.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> You shall make the robe of the ephod all of blue.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> It shall have an opening for the head in the middle of it, with a woven binding around the opening, like the opening in a coat of mail, so that it may not be torn. </VERS>\r\n\t\t\t<VERS vnumber=\"33\"> On its lower hem you shall make pomegranates of blue, purple, and crimson yarns, all around the lower hem, with bells of gold between them all around--</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> a golden bell and a pomegranate alternating all around the lower hem of the robe.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Aaron shall wear it when he ministers, and its sound shall be heard when he goes into the holy place before the LORD, and when he comes out, so that he may not die.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> You shall make a rosette of pure gold, and engrave on it, like the engraving of a signet, \"Holy to the LORD.\"</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> You shall fasten it on the turban with a blue cord; it shall be on the front of the turban.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> It shall be on Aaron's forehead, and Aaron shall take on himself any guilt incurred in the holy offering that the Israelites consecrate as their sacred donations; it shall always be on his forehead, in order that they may find favor before the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> You shall make the checkered tunic of fine linen, and you shall make a turban of fine linen, and you shall make a sash embroidered with needlework.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> For Aaron's sons you shall make tunics and sashes and headdresses; you shall make them for their glorious adornment.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> You shall put them on your brother Aaron, and on his sons with him, and shall anoint them and ordain them and consecrate them, so that they may serve me as priests.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> You shall make for them linen undergarments to cover their naked flesh; they shall reach from the hips to the thighs;</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> Aaron and his sons shall wear them when they go into the tent of meeting, or when they come near the altar to minister in the holy place; or they will bring guilt on themselves and die. This shall be a perpetual ordinance for him and for his descendants after him.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"29\">\r\n\t\t\t<VERS vnumber=\"1\"> Now this is what you shall do to them to consecrate them, so that they may serve me as priests. Take one young bull and two rams without blemish,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> and unleavened bread, unleavened cakes mixed with oil, and unleavened wafers spread with oil. You shall make them of choice wheat flour.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> You shall put them in one basket and bring them in the basket, and bring the bull and the two rams.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> You shall bring Aaron and his sons to the entrance of the tent of meeting, and wash them with water.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then you shall take the vestments, and put on Aaron the tunic and the robe of the ephod, and the ephod, and the breastpiece, and gird him with the decorated band of the ephod;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> and you shall set the turban on his head, and put the holy diadem on the turban.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> You shall take the anointing oil, and pour it on his head and anoint him.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then you shall bring his sons, and put tunics on them,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> and you shall gird them with sashes and tie headdresses on them; and the priesthood shall be theirs by a perpetual ordinance. You shall then ordain Aaron and his sons. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> You shall bring the bull in front of the tent of meeting. Aaron and his sons shall lay their hands on the head of the bull,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> and you shall slaughter the bull before the LORD, at the entrance of the tent of meeting,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> and shall take some of the blood of the bull and put it on the horns of the altar with your finger, and all the rest of the blood you shall pour out at the base of the altar.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> You shall take all the fat that covers the entrails, and the appendage of the liver, and the two kidneys with the fat that is on them, and turn them into smoke on the altar.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But the flesh of the bull, and its skin, and its dung, you shall burn with fire outside the camp; it is a sin offering.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Then you shall take one of the rams, and Aaron and his sons shall lay their hands on the head of the ram,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> and you shall slaughter the ram, and shall take its blood and dash it against all sides of the altar.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then you shall cut the ram into its parts, and wash its entrails and its legs, and put them with its parts and its head,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> and turn the whole ram into smoke on the altar; it is a burnt offering to the LORD; it is a pleasing odor, an offering by fire to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> You shall take the other ram; and Aaron and his sons shall lay their hands on the head of the ram,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> and you shall slaughter the ram, and take some of its blood and put it on the lobe of Aaron's right ear and on the lobes of the right ears of his sons, and on the thumbs of their right hands, and on the big toes of their right feet, and dash the rest of the blood against all sides of the altar.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then you shall take some of the blood that is on the altar, and some of the anointing oil, and sprinkle it on Aaron and his vestments and on his sons and his sons' vestments with him; then he and his vestments shall be holy, as well as his sons and his sons' vestments.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> You shall also take the fat of the ram, the fat tail, the fat that covers the entrails, the appendage of the liver, the two kidneys with the fat that is on them, and the right thigh (for it is a ram of ordination),</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> and one loaf of bread, one cake of bread made with oil, and one wafer, out of the basket of unleavened bread that is before the LORD;</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> and you shall place all these on the palms of Aaron and on the palms of his sons, and raise them as an elevation offering before the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Then you shall take them from their hands, and turn them into smoke on the altar on top of the burnt offering of pleasing odor before the LORD; it is an offering by fire to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> You shall take the breast of the ram of Aaron's ordination and raise it as an elevation offering before the LORD; and it shall be your portion.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> You shall consecrate the breast that was raised as an elevation offering and the thigh that was raised as an elevation offering from the ram of ordination, from that which belonged to Aaron and his sons.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> These things shall be a perpetual ordinance for Aaron and his sons from the Israelites, for this is an offering; and it shall be an offering by the Israelites from their sacrifice of offerings of well-being, their offering to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> The sacred vestments of Aaron shall be passed on to his sons after him; they shall be anointed in them and ordained in them.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> The son who is priest in his place shall wear them seven days, when he comes into the tent of meeting to minister in the holy place.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> You shall take the ram of ordination, and boil its flesh in a holy place;</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> and Aaron and his sons shall eat the flesh of the ram and the bread that is in the basket, at the entrance of the tent of meeting.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> They themselves shall eat the food by which atonement is made, to ordain and consecrate them, but no one else shall eat of them, because they are holy.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> If any of the flesh for the ordination, or of the bread, remains until the morning, then you shall burn the remainder with fire; it shall not be eaten, because it is holy.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Thus you shall do to Aaron and to his sons, just as I have commanded you; through seven days you shall ordain them.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Also every day you shall offer a bull as a sin offering for atonement. Also you shall offer a sin offering for the altar, when you make atonement for it, and shall anoint it, to consecrate it.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Seven days you shall make atonement for the altar, and consecrate it, and the altar shall be most holy; whatever touches the altar shall become holy.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Now this is what you shall offer on the altar: two lambs a year old regularly each day.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> One lamb you shall offer in the morning, and the other lamb you shall offer in the evening;</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> and with the first lamb one-tenth of a measure of choice flour mixed with one-fourth of a hin of beaten oil, and one-fourth of a hin of wine for a drink offering.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> And the other lamb you shall offer in the evening, and shall offer with it a grain offering and its drink offering, as in the morning, for a pleasing odor, an offering by fire to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> It shall be a regular burnt offering throughout your generations at the entrance of the tent of meeting before the LORD, where I will meet with you, to speak to you there.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> I will meet with the Israelites there, and it shall be sanctified by my glory;</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> I will consecrate the tent of meeting and the altar; Aaron also and his sons I will consecrate, to serve me as priests.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> I will dwell among the Israelites, and I will be their God.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> And they shall know that I am the LORD their God, who brought them out of the land of Egypt that I might dwell among them; I am the LORD their God.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"30\">\r\n\t\t\t<VERS vnumber=\"1\"> You shall make an altar on which to offer incense; you shall make it of acacia wood.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> It shall be one cubit long, and one cubit wide; it shall be square, and shall be two cubits high; its horns shall be of one piece with it.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> You shall overlay it with pure gold, its top, and its sides all around and its horns; and you shall make for it a molding of gold all around.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> And you shall make two golden rings for it; under its molding on two opposite sides of it you shall make them, and they shall hold the poles with which to carry it.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> You shall make the poles of acacia wood, and overlay them with gold.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> You shall place it in front of the curtain that is above the ark of the covenant, in front of the mercy seat that is over the covenant, where I will meet with you. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Aaron shall offer fragrant incense on it; every morning when he dresses the lamps he shall offer it,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> and when Aaron sets up the lamps in the evening, he shall offer it, a regular incense offering before the LORD throughout your generations.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> You shall not offer unholy incense on it, or a burnt offering, or a grain offering; and you shall not pour a drink offering on it.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Once a year Aaron shall perform the rite of atonement on its horns. Throughout your generations he shall perform the atonement for it once a year with the blood of the atoning sin offering. It is most holy to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The LORD spoke to Moses:</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> When you take a census of the Israelites to register them, at registration all of them shall give a ransom for their lives to the LORD, so that no plague may come upon them for being registered.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> This is what each one who is registered shall give: half a shekel according to the shekel of the sanctuary (the shekel is twenty gerahs), half a shekel as an offering to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Each one who is registered, from twenty years old and upward, shall give the LORD's offering.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The rich shall not give more, and the poor shall not give less, than the half shekel, when you bring this offering to the LORD to make atonement for your lives.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> You shall take the atonement money from the Israelites and shall designate it for the service of the tent of meeting; before the LORD it will be a reminder to the Israelites of the ransom given for your lives.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The LORD spoke to Moses:</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> You shall make a bronze basin with a bronze stand for washing. You shall put it between the tent of meeting and the altar, and you shall put water in it;</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> with the water Aaron and his sons shall wash their hands and their feet. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> When they go into the tent of meeting, or when they come near the altar to minister, to make an offering by fire to the LORD, they shall wash with water, so that they may not die.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> They shall wash their hands and their feet, so that they may not die: it shall be a perpetual ordinance for them, for him and for his descendants throughout their generations.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The LORD spoke to Moses:</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Take the finest spices: of liquid myrrh five hundred shekels, and of sweet-smelling cinnamon half as much, that is, two hundred fifty, and two hundred fifty of aromatic cane,</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> and five hundred of cassia-- measured by the sanctuary shekel-- and a hin of olive oil;</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> and you shall make of these a sacred anointing oil blended as by the perfumer; it shall be a holy anointing oil.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> With it you shall anoint the tent of meeting and the ark of the covenant, </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> and the table and all its utensils, and the lampstand and its utensils, and the altar of incense,</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> and the altar of burnt offering with all its utensils, and the basin with its stand;</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> you shall consecrate them, so that they may be most holy; whatever touches them will become holy.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> You shall anoint Aaron and his sons, and consecrate them, in order that they may serve me as priests.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> You shall say to the Israelites, \"This shall be my holy anointing oil throughout your generations.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> It shall not be used in any ordinary anointing of the body, and you shall make no other like it in composition; it is holy, and it shall be holy to you.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Whoever compounds any like it or whoever puts any of it on an unqualified person shall be cut off from the people.\"</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> The LORD said to Moses: Take sweet spices, stacte, and onycha, and galbanum, sweet spices with pure frankincense (an equal part of each),</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> and make an incense blended as by the perfumer, seasoned with salt, pure and holy;</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> and you shall beat some of it into powder, and put part of it before the covenant in the tent of meeting where I shall meet with you; it shall be for you most holy. </VERS>\r\n\t\t\t<VERS vnumber=\"37\"> When you make incense according to this composition, you shall not make it for yourselves; it shall be regarded by you as holy to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Whoever makes any like it to use as perfume shall be cut off from the people.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"31\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Moses:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> See, I have called by name Bezalel son of Uri son of Hur, of the tribe of Judah:</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> and I have filled him with divine spirit, with ability, intelligence, and knowledge in every kind of craft, </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> to devise artistic designs, to work in gold, silver, and bronze,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> in cutting stones for setting, and in carving wood, in every kind of craft.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Moreover, I have appointed with him Oholiab son of Ahisamach, of the tribe of Dan; and I have given skill to all the skillful, so that they may make all that I have commanded you:</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> the tent of meeting, and the ark of the covenant, and the mercy seat that is on it, and all the furnishings of the tent, </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> the table and its utensils, and the pure lampstand with all its utensils, and the altar of incense,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> and the altar of burnt offering with all its utensils, and the basin with its stand,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> and the finely worked vestments, the holy vestments for the priest Aaron and the vestments of his sons, for their service as priests,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> and the anointing oil and the fragrant incense for the holy place. They shall do just as I have commanded you.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The LORD said to Moses:</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> You yourself are to speak to the Israelites: \"You shall keep my sabbaths, for this is a sign between me and you throughout your generations, given in order that you may know that I, the LORD, sanctify you.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> You shall keep the sabbath, because it is holy for you; everyone who profanes it shall be put to death; whoever does any work on it shall be cut off from among the people.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Six days shall work be done, but the seventh day is a sabbath of solemn rest, holy to the LORD; whoever does any work on the sabbath day shall be put to death.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Therefore the Israelites shall keep the sabbath, observing the sabbath throughout their generations, as a perpetual covenant.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> It is a sign forever between me and the people of Israel that in six days the LORD made heaven and earth, and on the seventh day he rested, and was refreshed.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> When God finished speaking with Moses on Mount Sinai, he gave him the two tablets of the covenant, tablets of stone, written with the finger of God. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"32\">\r\n\t\t\t<VERS vnumber=\"1\"> When the people saw that Moses delayed to come down from the mountain, the people gathered around Aaron, and said to him, \"Come, make gods for us, who shall go before us; as for this Moses, the man who brought us up out of the land of Egypt, we do not know what has become of him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Aaron said to them, \"Take off the gold rings that are on the ears of your wives, your sons, and your daughters, and bring them to me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> So all the people took off the gold rings from their ears, and brought them to Aaron.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> He took the gold from them, formed it in a mold, and cast an image of a calf; and they said, \"These are your gods, O Israel, who brought you up out of the land of Egypt!\" </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> When Aaron saw this, he built an altar before it; and Aaron made proclamation and said, \"Tomorrow shall be a festival to the LORD.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> They rose early the next day, and offered burnt offerings and brought sacrifices of well-being; and the people sat down to eat and drink, and rose up to revel.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The LORD said to Moses, \"Go down at once! Your people, whom you brought up out of the land of Egypt, have acted perversely;</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> they have been quick to turn aside from the way that I commanded them; they have cast for themselves an image of a calf, and have worshiped it and sacrificed to it, and said, 'These are your gods, O Israel, who brought you up out of the land of Egypt!'\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The LORD said to Moses, \"I have seen this people, how stiff-necked they are.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Now let me alone, so that my wrath may burn hot against them and I may consume them; and of you I will make a great nation.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But Moses implored the LORD his God, and said, \"O LORD, why does your wrath burn hot against your people, whom you brought out of the land of Egypt with great power and with a mighty hand?</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Why should the Egyptians say, 'It was with evil intent that he brought them out to kill them in the mountains, and to consume them from the face of the earth'? Turn from your fierce wrath; change your mind and do not bring disaster on your people.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Remember Abraham, Isaac, and Israel, your servants, how you swore to them by your own self, saying to them, 'I will multiply your descendants like the stars of heaven, and all this land that I have promised I will give to your descendants, and they shall inherit it forever.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> And the LORD changed his mind about the disaster that he planned to bring on his people.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Then Moses turned and went down from the mountain, carrying the two tablets of the covenant in his hands, tablets that were written on both sides, written on the front and on the back. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The tablets were the work of God, and the writing was the writing of God, engraved upon the tablets.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> When Joshua heard the noise of the people as they shouted, he said to Moses, \"There is a noise of war in the camp.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> But he said, \"It is not the sound made by victors, or the sound made by losers; it is the sound of revelers that I hear.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> As soon as he came near the camp and saw the calf and the dancing, Moses' anger burned hot, and he threw the tablets from his hands and broke them at the foot of the mountain.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> He took the calf that they had made, burned it with fire, ground it to powder, scattered it on the water, and made the Israelites drink it.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Moses said to Aaron, \"What did this people do to you that you have brought so great a sin upon them?\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> And Aaron said, \"Do not let the anger of my lord burn hot; you know the people, that they are bent on evil.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> They said to me, 'Make us gods, who shall go before us; as for this Moses, the man who brought us up out of the land of Egypt, we do not know what has become of him.'</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> So I said to them, 'Whoever has gold, take it off'; so they gave it to me, and I threw it into the fire, and out came this calf!\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> When Moses saw that the people were running wild (for Aaron had let them run wild, to the derision of their enemies),</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> then Moses stood in the gate of the camp, and said, \"Who is on the LORD's side? Come to me!\" And all the sons of Levi gathered around him.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> He said to them, \"Thus says the LORD, the God of Israel, 'Put your sword on your side, each of you! Go back and forth from gate to gate throughout the camp, and each of you kill your brother, your friend, and your neighbor.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> The sons of Levi did as Moses commanded, and about three thousand of the people fell on that day.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Moses said, \"Today you have ordained yourselves for the service of the LORD, each one at the cost of a son or a brother, and so have brought a blessing on yourselves this day.\" </VERS>\r\n\t\t\t<VERS vnumber=\"30\"> On the next day Moses said to the people, \"You have sinned a great sin. But now I will go up to the LORD; perhaps I can make atonement for your sin.\"</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> So Moses returned to the LORD and said, \"Alas, this people has sinned a great sin; they have made for themselves gods of gold.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> But now, if you will only forgive their sin-- but if not, blot me out of the book that you have written.\"</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> But the LORD said to Moses, \"Whoever has sinned against me I will blot out of my book.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> But now go, lead the people to the place about which I have spoken to you; see, my angel shall go in front of you. Nevertheless, when the day comes for punishment, I will punish them for their sin.\"</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Then the LORD sent a plague on the people, because they made the calf-- the one that Aaron made.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"33\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD said to Moses, \"Go, leave this place, you and the people whom you have brought up out of the land of Egypt, and go to the land of which I swore to Abraham, Isaac, and Jacob, saying, 'To your descendants I will give it.'</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> I will send an angel before you, and I will drive out the Canaanites, the Amorites, the Hittites, the Perizzites, the Hivites, and the Jebusites.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Go up to a land flowing with milk and honey; but I will not go up among you, or I would consume you on the way, for you are a stiff-necked people.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> When the people heard these harsh words, they mourned, and no one put on ornaments.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> For the LORD had said to Moses, \"Say to the Israelites, 'You are a stiff-necked people; if for a single moment I should go up among you, I would consume you. So now take off your ornaments, and I will decide what to do to you.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Therefore the Israelites stripped themselves of their ornaments, from Mount Horeb onward.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Now Moses used to take the tent and pitch it outside the camp, far off from the camp; he called it the tent of meeting. And everyone who sought the LORD would go out to the tent of meeting, which was outside the camp.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Whenever Moses went out to the tent, all the people would rise and stand, each of them, at the entrance of their tents and watch Moses until he had gone into the tent.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> When Moses entered the tent, the pillar of cloud would descend and stand at the entrance of the tent, and the LORD would speak with Moses.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> When all the people saw the pillar of cloud standing at the entrance of the tent, all the people would rise and bow down, all of them, at the entrance of their tent.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Thus the LORD used to speak to Moses face to face, as one speaks to a friend. Then he would return to the camp; but his young assistant, Joshua son of Nun, would not leave the tent.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Moses said to the LORD, \"See, you have said to me, 'Bring up this people'; but you have not let me know whom you will send with me. Yet you have said, 'I know you by name, and you have also found favor in my sight.'</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Now if I have found favor in your sight, show me your ways, so that I may know you and find favor in your sight. Consider too that this nation is your people.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> He said, \"My presence will go with you, and I will give you rest.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And he said to him, \"If your presence will not go, do not carry us up from here.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> For how shall it be known that I have found favor in your sight, I and your people, unless you go with us? In this way, we shall be distinct, I and your people, from every people on the face of the earth.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The LORD said to Moses, \"I will do the very thing that you have asked; for you have found favor in my sight, and I know you by name.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Moses said, \"Show me your glory, I pray.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> And he said, \"I will make all my goodness pass before you, and will proclaim before you the name, 'The LORD'; and I will be gracious to whom I will be gracious, and will show mercy on whom I will show mercy. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> But,\" he said, \"you cannot see my face; for no one shall see me and live.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> And the LORD continued, \"See, there is a place by me where you shall stand on the rock;</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> and while my glory passes by I will put you in a cleft of the rock, and I will cover you with my hand until I have passed by;</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> then I will take away my hand, and you shall see my back; but my face shall not be seen.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"34\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD said to Moses, \"Cut two tablets of stone like the former ones, and I will write on the tablets the words that were on the former tablets, which you broke.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Be ready in the morning, and come up in the morning to Mount Sinai and present yourself there to me, on the top of the mountain.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> No one shall come up with you, and do not let anyone be seen throughout all the mountain; and do not let flocks or herds graze in front of that mountain.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> So Moses cut two tablets of stone like the former ones; and he rose early in the morning and went up on Mount Sinai, as the LORD had commanded him, and took in his hand the two tablets of stone.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The LORD descended in the cloud and stood with him there, and proclaimed the name, \"The LORD.\" </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The LORD passed before him, and proclaimed, \"The LORD, the LORD, a God merciful and gracious, slow to anger, and abounding in steadfast love and faithfulness,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> keeping steadfast love for the thousandth generation, forgiving iniquity and transgression and sin, yet by no means clearing the guilty, but visiting the iniquity of the parents upon the children and the children's children, to the third and the fourth generation.\" </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And Moses quickly bowed his head toward the earth, and worshiped.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> He said, \"If now I have found favor in your sight, O Lord, I pray, let the Lord go with us. Although this is a stiff-necked people, pardon our iniquity and our sin, and take us for your inheritance.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> He said: I hereby make a covenant. Before all your people I will perform marvels, such as have not been performed in all the earth or in any nation; and all the people among whom you live shall see the work of the LORD; for it is an awesome thing that I will do with you.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Observe what I command you today. See, I will drive out before you the Amorites, the Canaanites, the Hittites, the Perizzites, the Hivites, and the Jebusites.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Take care not to make a covenant with the inhabitants of the land to which you are going, or it will become a snare among you.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> You shall tear down their altars, break their pillars, and cut down their sacred poles</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> (for you shall worship no other god, because the LORD, whose name is Jealous, is a jealous God).</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> You shall not make a covenant with the inhabitants of the land, for when they prostitute themselves to their gods and sacrifice to their gods, someone among them will invite you, and you will eat of the sacrifice.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> And you will take wives from among their daughters for your sons, and their daughters who prostitute themselves to their gods will make your sons also prostitute themselves to their gods.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> You shall not make cast idols.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> You shall keep the festival of unleavened bread. Seven days you shall eat unleavened bread, as I commanded you, at the time appointed in the month of Abib; for in the month of Abib you came out from Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> All that first opens the womb is mine, all your male livestock, the firstborn of cow and sheep. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The firstborn of a donkey you shall redeem with a lamb, or if you will not redeem it you shall break its neck. All the firstborn of your sons you shall redeem. No one shall appear before me empty-handed.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Six days you shall work, but on the seventh day you shall rest; even in plowing time and in harvest time you shall rest.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> You shall observe the festival of weeks, the first fruits of wheat harvest, and the festival of ingathering at the turn of the year.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Three times in the year all your males shall appear before the LORD God, the God of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> For I will cast out nations before you, and enlarge your borders; no one shall covet your land when you go up to appear before the LORD your God three times in the year.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> You shall not offer the blood of my sacrifice with leaven, and the sacrifice of the festival of the passover shall not be left until the morning.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> The best of the first fruits of your ground you shall bring to the house of the LORD your God. You shall not boil a kid in its mother's milk.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> The LORD said to Moses: Write these words; in accordance with these words I have made a covenant with you and with Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> He was there with the LORD forty days and forty nights; he neither ate bread nor drank water. And he wrote on the tablets the words of the covenant, the ten commandments. </VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Moses came down from Mount Sinai. As he came down from the mountain with the two tablets of the covenant in his hand, Moses did not know that the skin of his face shone because he had been talking with God. </VERS>\r\n\t\t\t<VERS vnumber=\"30\"> When Aaron and all the Israelites saw Moses, the skin of his face was shining, and they were afraid to come near him.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> But Moses called to them; and Aaron and all the leaders of the congregation returned to him, and Moses spoke with them.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Afterward all the Israelites came near, and he gave them in commandment all that the LORD had spoken with him on Mount Sinai.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> When Moses had finished speaking with them, he put a veil on his face;</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> but whenever Moses went in before the LORD to speak with him, he would take the veil off, until he came out; and when he came out, and told the Israelites what he had been commanded,</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> the Israelites would see the face of Moses, that the skin of his face was shining; and Moses would put the veil on his face again, until he went in to speak with him.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"35\">\r\n\t\t\t<VERS vnumber=\"1\"> Moses assembled all the congregation of the Israelites and said to them: These are the things that the LORD has commanded you to do:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Six days shall work be done, but on the seventh day you shall have a holy sabbath of solemn rest to the LORD; whoever does any work on it shall be put to death.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> You shall kindle no fire in all your dwellings on the sabbath day.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Moses said to all the congregation of the Israelites: This is the thing that the LORD has commanded:</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Take from among you an offering to the LORD; let whoever is of a generous heart bring the LORD's offering: gold, silver, and bronze;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> blue, purple, and crimson yarns, and fine linen; goats' hair,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> tanned rams' skins, and fine leather; acacia wood, </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> oil for the light, spices for the anointing oil and for the fragrant incense,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> and onyx stones and gems to be set in the ephod and the breastpiece.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> All who are skillful among you shall come and make all that the LORD has commanded: the tabernacle,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> its tent and its covering, its clasps and its frames, its bars, its pillars, and its bases;</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> the ark with its poles, the mercy seat, and the curtain for the screen; </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> the table with its poles and all its utensils, and the bread of the Presence;</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> the lampstand also for the light, with its utensils and its lamps, and the oil for the light;</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> and the altar of incense, with its poles, and the anointing oil and the fragrant incense, and the screen for the entrance, the entrance of the tabernacle;</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> the altar of burnt offering, with its grating of bronze, its poles, and all its utensils, the basin with its stand;</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> the hangings of the court, its pillars and its bases, and the screen for the gate of the court;</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> the pegs of the tabernacle and the pegs of the court, and their cords;</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> the finely worked vestments for ministering in the holy place, the holy vestments for the priest Aaron, and the vestments of his sons, for their service as priests.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Then all the congregation of the Israelites withdrew from the presence of Moses.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> And they came, everyone whose heart was stirred, and everyone whose spirit was willing, and brought the LORD's offering to be used for the tent of meeting, and for all its service, and for the sacred vestments.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> So they came, both men and women; all who were of a willing heart brought brooches and earrings and signet rings and pendants, all sorts of gold objects, everyone bringing an offering of gold to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> And everyone who possessed blue or purple or crimson yarn or fine linen or goats' hair or tanned rams' skins or fine leather, brought them. </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Everyone who could make an offering of silver or bronze brought it as the LORD's offering; and everyone who possessed acacia wood of any use in the work, brought it.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> All the skillful women spun with their hands, and brought what they had spun in blue and purple and crimson yarns and fine linen;</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> all the women whose hearts moved them to use their skill spun the goats' hair.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> And the leaders brought onyx stones and gems to be set in the ephod and the breastpiece,</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> and spices and oil for the light, and for the anointing oil, and for the fragrant incense.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> All the Israelite men and women whose hearts made them willing to bring anything for the work that the LORD had commanded by Moses to be done, brought it as a freewill offering to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Then Moses said to the Israelites: See, the LORD has called by name Bezalel son of Uri son of Hur, of the tribe of Judah;</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> he has filled him with divine spirit, with skill, intelligence, and knowledge in every kind of craft, </VERS>\r\n\t\t\t<VERS vnumber=\"32\"> to devise artistic designs, to work in gold, silver, and bronze,</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> in cutting stones for setting, and in carving wood, in every kind of craft.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> And he has inspired him to teach, both him and Oholiab son of Ahisamach, of the tribe of Dan.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> He has filled them with skill to do every kind of work done by an artisan or by a designer or by an embroiderer in blue, purple, and crimson yarns, and in fine linen, or by a weaver-- by any sort of artisan or skilled designer.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"36\">\r\n\t\t\t<VERS vnumber=\"1\"> Bezalel and Oholiab and every skillful one to whom the LORD has given skill and understanding to know how to do any work in the construction of the sanctuary shall work in accordance with all that the LORD has commanded.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Moses then called Bezalel and Oholiab and every skillful one to whom the LORD had given skill, everyone whose heart was stirred to come to do the work;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> and they received from Moses all the freewill offerings that the Israelites had brought for doing the work on the sanctuary. They still kept bringing him freewill offerings every morning,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> so that all the artisans who were doing every sort of task on the sanctuary came, each from the task being performed,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> and said to Moses, \"The people are bringing much more than enough for doing the work that the LORD has commanded us to do.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> So Moses gave command, and word was proclaimed throughout the camp: \"No man or woman is to make anything else as an offering for the sanctuary.\" So the people were restrained from bringing;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> for what they had already brought was more than enough to do all the work.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> All those with skill among the workers made the tabernacle with ten curtains; they were made of fine twisted linen, and blue, purple, and crimson yarns, with cherubim skillfully worked into them.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The length of each curtain was twenty-eight cubits, and the width of each curtain four cubits; all the curtains were of the same size.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> He joined five curtains to one another, and the other five curtains he joined to one another.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> He made loops of blue on the edge of the outermost curtain of the first set; likewise he made them on the edge of the outermost curtain of the second set;</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> he made fifty loops on the one curtain, and he made fifty loops on the edge of the curtain that was in the second set; the loops were opposite one another.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And he made fifty clasps of gold, and joined the curtains one to the other with clasps; so the tabernacle was one whole.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> He also made curtains of goats' hair for a tent over the tabernacle; he made eleven curtains.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The length of each curtain was thirty cubits, and the width of each curtain four cubits; the eleven curtains were of the same size.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> He joined five curtains by themselves, and six curtains by themselves.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> He made fifty loops on the edge of the outermost curtain of the one set, and fifty loops on the edge of the other connecting curtain.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> He made fifty clasps of bronze to join the tent together so that it might be one whole.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> And he made for the tent a covering of tanned rams' skins and an outer covering of fine leather. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Then he made the upright frames for the tabernacle of acacia wood.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Ten cubits was the length of a frame, and a cubit and a half the width of each frame.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Each frame had two pegs for fitting together; he did this for all the frames of the tabernacle.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> The frames for the tabernacle he made in this way: twenty frames for the south side;</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> and he made forty bases of silver under the twenty frames, two bases under the first frame for its two pegs, and two bases under the next frame for its two pegs.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> For the second side of the tabernacle, on the north side, he made twenty frames</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> and their forty bases of silver, two bases under the first frame and two bases under the next frame.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> For the rear of the tabernacle westward he made six frames.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> He made two frames for corners of the tabernacle in the rear.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> They were separate beneath, but joined at the top, at the first ring; he made two of them in this way, for the two corners.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> There were eight frames with their bases of silver: sixteen bases, under every frame two bases.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> He made bars of acacia wood, five for the frames of the one side of the tabernacle,</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> and five bars for the frames of the other side of the tabernacle, and five bars for the frames of the tabernacle at the rear westward.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> He made the middle bar to pass through from end to end halfway up the frames.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> And he overlaid the frames with gold, and made rings of gold for them to hold the bars, and overlaid the bars with gold.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> He made the curtain of blue, purple, and crimson yarns, and fine twisted linen, with cherubim skillfully worked into it.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> For it he made four pillars of acacia, and overlaid them with gold; their hooks were of gold, and he cast for them four bases of silver.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> He also made a screen for the entrance to the tent, of blue, purple, and crimson yarns, and fine twisted linen, embroidered with needlework;</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> and its five pillars with their hooks. He overlaid their capitals and their bases with gold, but their five bases were of bronze.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"37\">\r\n\t\t\t<VERS vnumber=\"1\"> Bezalel made the ark of acacia wood; it was two and a half cubits long, a cubit and a half wide, and a cubit and a half high.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He overlaid it with pure gold inside and outside, and made a molding of gold around it.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> He cast for it four rings of gold for its four feet, two rings on its one side and two rings on its other side.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> He made poles of acacia wood, and overlaid them with gold,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> and put the poles into the rings on the sides of the ark, to carry the ark.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> He made a mercy seat of pure gold; two cubits and a half was its length, and a cubit and a half its width. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> He made two cherubim of hammered gold; at the two ends of the mercy seat he made them, </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> one cherub at the one end, and one cherub at the other end; of one piece with the mercy seat he made the cherubim at its two ends. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The cherubim spread out their wings above, overshadowing the mercy seat with their wings. They faced one another; the faces of the cherubim were turned toward the mercy seat. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> He also made the table of acacia wood, two cubits long, one cubit wide, and a cubit and a half high.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> He overlaid it with pure gold, and made a molding of gold around it.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> He made around it a rim a handbreadth wide, and made a molding of gold around the rim.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> He cast for it four rings of gold, and fastened the rings to the four corners at its four legs.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The rings that held the poles used for carrying the table were close to the rim.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> He made the poles of acacia wood to carry the table, and overlaid them with gold.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> And he made the vessels of pure gold that were to be on the table, its plates and dishes for incense, and its bowls and flagons with which to pour drink offerings.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> He also made the lampstand of pure gold. The base and the shaft of the lampstand were made of hammered work; its cups, its calyxes, and its petals were of one piece with it.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> There were six branches going out of its sides, three branches of the lampstand out of one side of it and three branches of the lampstand out of the other side of it;</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> three cups shaped like almond blossoms, each with calyx and petals, on one branch, and three cups shaped like almond blossoms, each with calyx and petals, on the other branch-- so for the six branches going out of the lampstand.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> On the lampstand itself there were four cups shaped like almond blossoms, each with its calyxes and petals.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> There was a calyx of one piece with it under the first pair of branches, a calyx of one piece with it under the next pair of branches, and a calyx of one piece with it under the last pair of branches.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Their calyxes and their branches were of one piece with it, the whole of it one hammered piece of pure gold.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> He made its seven lamps and its snuffers and its trays of pure gold.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> He made it and all its utensils of a talent of pure gold.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> He made the altar of incense of acacia wood, one cubit long, and one cubit wide; it was square, and was two cubits high; its horns were of one piece with it.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> He overlaid it with pure gold, its top, and its sides all around, and its horns; and he made for it a molding of gold all around,</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> and made two golden rings for it under its molding, on two opposite sides of it, to hold the poles with which to carry it.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> And he made the poles of acacia wood, and overlaid them with gold.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> He made the holy anointing oil also, and the pure fragrant incense, blended as by the perfumer.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"38\">\r\n\t\t\t<VERS vnumber=\"1\"> He made the altar of burnt offering also of acacia wood; it was five cubits long, and five cubits wide; it was square, and three cubits high.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He made horns for it on its four corners; its horns were of one piece with it, and he overlaid it with bronze.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> He made all the utensils of the altar, the pots, the shovels, the basins, the forks, and the firepans: all its utensils he made of bronze.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> He made for the altar a grating, a network of bronze, under its ledge, extending halfway down.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> He cast four rings on the four corners of the bronze grating to hold the poles;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> he made the poles of acacia wood, and overlaid them with bronze.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> And he put the poles through the rings on the sides of the altar, to carry it with them; he made it hollow, with boards.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> He made the basin of bronze with its stand of bronze, from the mirrors of the women who served at the entrance to the tent of meeting.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> He made the court; for the south side the hangings of the court were of fine twisted linen, one hundred cubits long;</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> its twenty pillars and their twenty bases were of bronze, but the hooks of the pillars and their bands were of silver.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> For the north side there were hangings one hundred cubits long; its twenty pillars and their twenty bases were of bronze, but the hooks of the pillars and their bands were of silver.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> For the west side there were hangings fifty cubits long, with ten pillars and ten bases; the hooks of the pillars and their bands were of silver.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And for the front to the east, fifty cubits.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The hangings for one side of the gate were fifteen cubits, with three pillars and three bases.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And so for the other side; on each side of the gate of the court were hangings of fifteen cubits, with three pillars and three bases.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> All the hangings around the court were of fine twisted linen.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The bases for the pillars were of bronze, but the hooks of the pillars and their bands were of silver; the overlaying of their capitals was also of silver, and all the pillars of the court were banded with silver.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The screen for the entrance to the court was embroidered with needlework in blue, purple, and crimson yarns and fine twisted linen. It was twenty cubits long and, along the width of it, five cubits high, corresponding to the hangings of the court.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> There were four pillars; their four bases were of bronze, their hooks of silver, and the overlaying of their capitals and their bands of silver.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> All the pegs for the tabernacle and for the court all around were of bronze.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> These are the records of the tabernacle, the tabernacle of the covenant, which were drawn up at the commandment of Moses, the work of the Levites being under the direction of Ithamar son of the priest Aaron. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Bezalel son of Uri son of Hur, of the tribe of Judah, made all that the LORD commanded Moses;</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> and with him was Oholiab son of Ahisamach, of the tribe of Dan, engraver, designer, and embroiderer in blue, purple, and crimson yarns, and in fine linen.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> All the gold that was used for the work, in all the construction of the sanctuary, the gold from the offering, was twenty-nine talents and seven hundred thirty shekels, measured by the sanctuary shekel.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> The silver from those of the congregation who were counted was one hundred talents and one thousand seven hundred seventy-five shekels, measured by the sanctuary shekel;</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> a beka a head (that is, half a shekel, measured by the sanctuary shekel), for everyone who was counted in the census, from twenty years old and upward, for six hundred three thousand, five hundred fifty men.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> The hundred talents of silver were for casting the bases of the sanctuary, and the bases of the curtain; one hundred bases for the hundred talents, a talent for a base.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Of the thousand seven hundred seventy-five shekels he made hooks for the pillars, and overlaid their capitals and made bands for them.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> The bronze that was contributed was seventy talents, and two thousand four hundred shekels;</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> with it he made the bases for the entrance of the tent of meeting, the bronze altar and the bronze grating for it and all the utensils of the altar,</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> the bases all around the court, and the bases of the gate of the court, all the pegs of the tabernacle, and all the pegs around the court.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"39\">\r\n\t\t\t<VERS vnumber=\"1\"> Of the blue, purple, and crimson yarns they made finely worked vestments, for ministering in the holy place; they made the sacred vestments for Aaron; as the LORD had commanded Moses.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He made the ephod of gold, of blue, purple, and crimson yarns, and of fine twisted linen.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Gold leaf was hammered out and cut into threads to work into the blue, purple, and crimson yarns and into the fine twisted linen, in skilled design.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> They made for the ephod shoulder-pieces, joined to it at its two edges.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The decorated band on it was of the same materials and workmanship, of gold, of blue, purple, and crimson yarns, and of fine twisted linen; as the LORD had commanded Moses.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The onyx stones were prepared, enclosed in settings of gold filigree and engraved like the engravings of a signet, according to the names of the sons of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> He set them on the shoulder-pieces of the ephod, to be stones of remembrance for the sons of Israel; as the LORD had commanded Moses.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> He made the breastpiece, in skilled work, like the work of the ephod, of gold, of blue, purple, and crimson yarns, and of fine twisted linen.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> It was square; the breastpiece was made double, a span in length and a span in width when doubled.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> They set in it four rows of stones. A row of carnelian, chrysolite, and emerald was the first row; </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> and the second row, a turquoise, a sapphire, and a moonstone; </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> and the third row, a jacinth, an agate, and an amethyst;</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> and the fourth row, a beryl, an onyx, and a jasper; they were enclosed in settings of gold filigree.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> There were twelve stones with names corresponding to the names of the sons of Israel; they were like signets, each engraved with its name, for the twelve tribes.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> They made on the breastpiece chains of pure gold, twisted like cords;</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> and they made two settings of gold filigree and two gold rings, and put the two rings on the two edges of the breastpiece;</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> and they put the two cords of gold in the two rings at the edges of the breastpiece.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Two ends of the two cords they had attached to the two settings of filigree; in this way they attached it in front to the shoulder-pieces of the ephod.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Then they made two rings of gold, and put them at the two ends of the breastpiece, on its inside edge next to the ephod.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> They made two rings of gold, and attached them in front to the lower part of the two shoulder-pieces of the ephod, at its joining above the decorated band of the ephod.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> They bound the breastpiece by its rings to the rings of the ephod with a blue cord, so that it should lie on the decorated band of the ephod, and that the breastpiece should not come loose from the ephod; as the LORD had commanded Moses.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> He also made the robe of the ephod woven all of blue yarn;</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> and the opening of the robe in the middle of it was like the opening in a coat of mail, with a binding around the opening, so that it might not be torn. </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> On the lower hem of the robe they made pomegranates of blue, purple, and crimson yarns, and of fine twisted linen.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> They also made bells of pure gold, and put the bells between the pomegranates on the lower hem of the robe all around, between the pomegranates;</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> a bell and a pomegranate, a bell and a pomegranate all around on the lower hem of the robe for ministering; as the LORD had commanded Moses.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> They also made the tunics, woven of fine linen, for Aaron and his sons,</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> and the turban of fine linen, and the headdresses of fine linen, and the linen undergarments of fine twisted linen,</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> and the sash of fine twisted linen, and of blue, purple, and crimson yarns, embroidered with needlework; as the LORD had commanded Moses.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> They made the rosette of the holy diadem of pure gold, and wrote on it an inscription, like the engraving of a signet, \"Holy to the LORD.\"</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> They tied to it a blue cord, to fasten it on the turban above; as the LORD had commanded Moses.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> In this way all the work of the tabernacle of the tent of meeting was finished; the Israelites had done everything just as the LORD had commanded Moses.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Then they brought the tabernacle to Moses, the tent and all its utensils, its hooks, its frames, its bars, its pillars, and its bases;</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> the covering of tanned rams' skins and the covering of fine leather, and the curtain for the screen; </VERS>\r\n\t\t\t<VERS vnumber=\"35\"> the ark of the covenant with its poles and the mercy seat; </VERS>\r\n\t\t\t<VERS vnumber=\"36\"> the table with all its utensils, and the bread of the Presence;</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> the pure lampstand with its lamps set on it and all its utensils, and the oil for the light;</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> the golden altar, the anointing oil and the fragrant incense, and the screen for the entrance of the tent;</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> the bronze altar, and its grating of bronze, its poles, and all its utensils; the basin with its stand;</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> the hangings of the court, its pillars, and its bases, and the screen for the gate of the court, its cords, and its pegs; and all the utensils for the service of the tabernacle, for the tent of meeting;</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> the finely worked vestments for ministering in the holy place, the sacred vestments for the priest Aaron, and the vestments of his sons to serve as priests.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> The Israelites had done all of the work just as the LORD had commanded Moses.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> When Moses saw that they had done all the work just as the LORD had commanded, he blessed them.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"40\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Moses:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> On the first day of the first month you shall set up the tabernacle of the tent of meeting.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> You shall put in it the ark of the covenant, and you shall screen the ark with the curtain. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> You shall bring in the table, and arrange its setting; and you shall bring in the lampstand, and set up its lamps.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> You shall put the golden altar for incense before the ark of the covenant, and set up the screen for the entrance of the tabernacle. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> You shall set the altar of burnt offering before the entrance of the tabernacle of the tent of meeting,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> and place the basin between the tent of meeting and the altar, and put water in it.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> You shall set up the court all around, and hang up the screen for the gate of the court.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then you shall take the anointing oil, and anoint the tabernacle and all that is in it, and consecrate it and all its furniture, so that it shall become holy.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> You shall also anoint the altar of burnt offering and all its utensils, and consecrate the altar, so that the altar shall be most holy.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> You shall also anoint the basin with its stand, and consecrate it.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then you shall bring Aaron and his sons to the entrance of the tent of meeting, and shall wash them with water,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> and put on Aaron the sacred vestments, and you shall anoint him and consecrate him, so that he may serve me as priest.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> You shall bring his sons also and put tunics on them,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> and anoint them, as you anointed their father, that they may serve me as priests: and their anointing shall admit them to a perpetual priesthood throughout all generations to come.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Moses did everything just as the LORD had commanded him.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> In the first month in the second year, on the first day of the month, the tabernacle was set up.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Moses set up the tabernacle; he laid its bases, and set up its frames, and put in its poles, and raised up its pillars;</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> and he spread the tent over the tabernacle, and put the covering of the tent over it; as the LORD had commanded Moses.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> He took the covenant and put it into the ark, and put the poles on the ark, and set the mercy seat above the ark; </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> and he brought the ark into the tabernacle, and set up the curtain for screening, and screened the ark of the covenant; as the LORD had commanded Moses. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> He put the table in the tent of meeting, on the north side of the tabernacle, outside the curtain,</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> and set the bread in order on it before the LORD; as the LORD had commanded Moses.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> He put the lampstand in the tent of meeting, opposite the table on the south side of the tabernacle,</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> and set up the lamps before the LORD; as the LORD had commanded Moses.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> He put the golden altar in the tent of meeting before the curtain,</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> and offered fragrant incense on it; as the LORD had commanded Moses.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> He also put in place the screen for the entrance of the tabernacle.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> He set the altar of burnt offering at the entrance of the tabernacle of the tent of meeting, and offered on it the burnt offering and the grain offering as the LORD had commanded Moses.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> He set the basin between the tent of meeting and the altar, and put water in it for washing,</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> with which Moses and Aaron and his sons washed their hands and their feet.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> When they went into the tent of meeting, and when they approached the altar, they washed; as the LORD had commanded Moses.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> He set up the court around the tabernacle and the altar, and put up the screen at the gate of the court. So Moses finished the work.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Then the cloud covered the tent of meeting, and the glory of the LORD filled the tabernacle.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Moses was not able to enter the tent of meeting because the cloud settled upon it, and the glory of the LORD filled the tabernacle.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Whenever the cloud was taken up from the tabernacle, the Israelites would set out on each stage of their journey;</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> but if the cloud was not taken up, then they did not set out until the day that it was taken up.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> For the cloud of the LORD was on the tabernacle by day, and fire was in the cloud by night, before the eyes of all the house of Israel at each stage of their journey. </VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"3\" bname=\"Leviticus\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD summoned Moses and spoke to him from the tent of meeting, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Speak to the people of Israel and say to them: When any of you bring an offering of livestock to the LORD, you shall bring your offering from the herd or from the flock.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> If the offering is a burnt offering from the herd, you shall offer a male without blemish; you shall bring it to the entrance of the tent of meeting, for acceptance in your behalf before the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> You shall lay your hand on the head of the burnt offering, and it shall be acceptable in your behalf as atonement for you.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The bull shall be slaughtered before the LORD; and Aaron's sons the priests shall offer the blood, dashing the blood against all sides of the altar that is at the entrance of the tent of meeting.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The burnt offering shall be flayed and cut up into its parts.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The sons of the priest Aaron shall put fire on the altar and arrange wood on the fire.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Aaron's sons the priests shall arrange the parts, with the head and the suet, on the wood that is on the fire on the altar;</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> but its entrails and its legs shall be washed with water. Then the priest shall turn the whole into smoke on the altar as a burnt offering, an offering by fire of pleasing odor to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> If your gift for a burnt offering is from the flock, from the sheep or goats, your offering shall be a male without blemish.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> It shall be slaughtered on the north side of the altar before the LORD, and Aaron's sons the priests shall dash its blood against all sides of the altar.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> It shall be cut up into its parts, with its head and its suet, and the priest shall arrange them on the wood that is on the fire on the altar;</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> but the entrails and the legs shall be washed with water. Then the priest shall offer the whole and turn it into smoke on the altar; it is a burnt offering, an offering by fire of pleasing odor to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> If your offering to the LORD is a burnt offering of birds, you shall choose your offering from turtledoves or pigeons.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The priest shall bring it to the altar and wring off its head, and turn it into smoke on the altar; and its blood shall be drained out against the side of the altar.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> He shall remove its crop with its contents and throw it at the east side of the altar, in the place for ashes. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> He shall tear it open by its wings without severing it. Then the priest shall turn it into smoke on the altar, on the wood that is on the fire; it is a burnt offering, an offering by fire of pleasing odor to the LORD.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> When anyone presents a grain offering to the LORD, the offering shall be of choice flour; the worshiper shall pour oil on it, and put frankincense on it,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> and bring it to Aaron's sons the priests. After taking from it a handful of the choice flour and oil, with all its frankincense, the priest shall turn this token portion into smoke on the altar, an offering by fire of pleasing odor to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And what is left of the grain offering shall be for Aaron and his sons, a most holy part of the offerings by fire to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> When you present a grain offering baked in the oven, it shall be of choice flour: unleavened cakes mixed with oil, or unleavened wafers spread with oil.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> If your offering is grain prepared on a griddle, it shall be of choice flour mixed with oil, unleavened;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> break it in pieces, and pour oil on it; it is a grain offering.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> If your offering is grain prepared in a pan, it shall be made of choice flour in oil.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> You shall bring to the LORD the grain offering that is prepared in any of these ways; and when it is presented to the priest, he shall take it to the altar.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The priest shall remove from the grain offering its token portion and turn this into smoke on the altar, an offering by fire of pleasing odor to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And what is left of the grain offering shall be for Aaron and his sons; it is a most holy part of the offerings by fire to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> No grain offering that you bring to the LORD shall be made with leaven, for you must not turn any leaven or honey into smoke as an offering by fire to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> You may bring them to the LORD as an offering of choice products, but they shall not be offered on the altar for a pleasing odor.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> You shall not omit from your grain offerings the salt of the covenant with your God; with all your offerings you shall offer salt.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> If you bring a grain offering of first fruits to the LORD, you shall bring as the grain offering of your first fruits coarse new grain from fresh ears, parched with fire.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> You shall add oil to it and lay frankincense on it; it is a grain offering.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> And the priest shall turn a token portion of it into smoke-- some of the coarse grain and oil with all its frankincense; it is an offering by fire to the LORD.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> If the offering is a sacrifice of well-being, if you offer an animal of the herd, whether male or female, you shall offer one without blemish before the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> You shall lay your hand on the head of the offering and slaughter it at the entrance of the tent of meeting; and Aaron's sons the priests shall dash the blood against all sides of the altar.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> You shall offer from the sacrifice of well-being, as an offering by fire to the LORD, the fat that covers the entrails and all the fat that is around the entrails;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> the two kidneys with the fat that is on them at the loins, and the appendage of the liver, which he shall remove with the kidneys.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then Aaron's sons shall turn these into smoke on the altar, with the burnt offering that is on the wood on the fire, as an offering by fire of pleasing odor to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> If your offering for a sacrifice of well-being to the LORD is from the flock, male or female, you shall offer one without blemish.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> If you present a sheep as your offering, you shall bring it before the LORD</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> and lay your hand on the head of the offering. It shall be slaughtered before the tent of meeting, and Aaron's sons shall dash its blood against all sides of the altar.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> You shall present its fat from the sacrifice of well-being, as an offering by fire to the LORD: the whole broad tail, which shall be removed close to the backbone, the fat that covers the entrails, and all the fat that is around the entrails;</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> the two kidneys with the fat that is on them at the loins, and the appendage of the liver, which you shall remove with the kidneys.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then the priest shall turn these into smoke on the altar as a food offering by fire to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> If your offering is a goat, you shall bring it before the LORD</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> and lay your hand on its head; it shall be slaughtered before the tent of meeting; and the sons of Aaron shall dash its blood against all sides of the altar.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> You shall present as your offering from it, as an offering by fire to the LORD, the fat that covers the entrails, and all the fat that is around the entrails;</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> the two kidneys with the fat that is on them at the loins, and the appendage of the liver, which you shall remove with the kidneys.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then the priest shall turn these into smoke on the altar as a food offering by fire for a pleasing odor. All fat is the LORD's.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> It shall be a perpetual statute throughout your generations, in all your settlements: you must not eat any fat or any blood.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Moses, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Speak to the people of Israel, saying: When anyone sins unintentionally in any of the LORD's commandments about things not to be done, and does any one of them:</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> If it is the anointed priest who sins, thus bringing guilt on the people, he shall offer for the sin that he has committed a bull of the herd without blemish as a sin offering to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> He shall bring the bull to the entrance of the tent of meeting before the LORD and lay his hand on the head of the bull; the bull shall be slaughtered before the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The anointed priest shall take some of the blood of the bull and bring it into the tent of meeting.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The priest shall dip his finger in the blood and sprinkle some of the blood seven times before the LORD in front of the curtain of the sanctuary.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The priest shall put some of the blood on the horns of the altar of fragrant incense that is in the tent of meeting before the LORD; and the rest of the blood of the bull he shall pour out at the base of the altar of burnt offering, which is at the entrance of the tent of meeting.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> He shall remove all the fat from the bull of sin offering: the fat that covers the entrails and all the fat that is around the entrails;</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> the two kidneys with the fat that is on them at the loins; and the appendage of the liver, which he shall remove with the kidneys,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> just as these are removed from the ox of the sacrifice of well-being. The priest shall turn them into smoke upon the altar of burnt offering.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But the skin of the bull and all its flesh, as well as its head, its legs, its entrails, and its dung--</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> all the rest of the bull-- he shall carry out to a clean place outside the camp, to the ash heap, and shall burn it on a wood fire; at the ash heap it shall be burned.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> If the whole congregation of Israel errs unintentionally and the matter escapes the notice of the assembly, and they do any one of the things that by the LORD's commandments ought not to be done and incur guilt;</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> when the sin that they have committed becomes known, the assembly shall offer a bull of the herd for a sin offering and bring it before the tent of meeting.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The elders of the congregation shall lay their hands on the head of the bull before the LORD, and the bull shall be slaughtered before the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The anointed priest shall bring some of the blood of the bull into the tent of meeting,</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> and the priest shall dip his finger in the blood and sprinkle it seven times before the LORD, in front of the curtain.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> He shall put some of the blood on the horns of the altar that is before the LORD in the tent of meeting; and the rest of the blood he shall pour out at the base of the altar of burnt offering that is at the entrance of the tent of meeting.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> He shall remove all its fat and turn it into smoke on the altar.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> He shall do with the bull just as is done with the bull of sin offering; he shall do the same with this. The priest shall make atonement for them, and they shall be forgiven.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> He shall carry the bull outside the camp, and burn it as he burned the first bull; it is the sin offering for the assembly.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> When a ruler sins, doing unintentionally any one of all the things that by commandments of the LORD his God ought not to be done and incurs guilt,</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> once the sin that he has committed is made known to him, he shall bring as his offering a male goat without blemish.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> He shall lay his hand on the head of the goat; it shall be slaughtered at the spot where the burnt offering is slaughtered before the LORD; it is a sin offering.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> The priest shall take some of the blood of the sin offering with his finger and put it on the horns of the altar of burnt offering, and pour out the rest of its blood at the base of the altar of burnt offering.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> All its fat he shall turn into smoke on the altar, like the fat of the sacrifice of well-being. Thus the priest shall make atonement on his behalf for his sin, and he shall be forgiven.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> If anyone of the ordinary people among you sins unintentionally in doing any one of the things that by the LORD's commandments ought not to be done and incurs guilt,</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> when the sin that you have committed is made known to you, you shall bring a female goat without blemish as your offering, for the sin that you have committed.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> You shall lay your hand on the head of the sin offering; and the sin offering shall be slaughtered at the place of the burnt offering.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> The priest shall take some of its blood with his finger and put it on the horns of the altar of burnt offering, and he shall pour out the rest of its blood at the base of the altar.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> He shall remove all its fat, as the fat is removed from the offering of well-being, and the priest shall turn it into smoke on the altar for a pleasing odor to the LORD. Thus the priest shall make atonement on your behalf, and you shall be forgiven.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> If the offering you bring as a sin offering is a sheep, you shall bring a female without blemish.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> You shall lay your hand on the head of the sin offering; and it shall be slaughtered as a sin offering at the spot where the burnt offering is slaughtered.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> The priest shall take some of the blood of the sin offering with his finger and put it on the horns of the altar of burnt offering, and pour out the rest of its blood at the base of the altar.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> You shall remove all its fat, as the fat of the sheep is removed from the sacrifice of well-being, and the priest shall turn it into smoke on the altar, with the offerings by fire to the LORD. Thus the priest shall make atonement on your behalf for the sin that you have committed, and you shall be forgiven.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"5\">\r\n\t\t\t<VERS vnumber=\"1\"> When any of you sin in that you have heard a public adjuration to testify and-- though able to testify as one who has seen or learned of the matter-- does not speak up, you are subject to punishment.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Or when any of you touch any unclean thing-- whether the carcass of an unclean beast or the carcass of unclean livestock or the carcass of an unclean swarming thing-- and are unaware of it, you have become unclean, and are guilty.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Or when you touch human uncleanness-- any uncleanness by which one can become unclean-- and are unaware of it, when you come to know it, you shall be guilty.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Or when any of you utter aloud a rash oath for a bad or a good purpose, whatever people utter in an oath, and are unaware of it, when you come to know it, you shall in any of these be guilty.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> When you realize your guilt in any of these, you shall confess the sin that you have committed.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And you shall bring to the LORD, as your penalty for the sin that you have committed, a female from the flock, a sheep or a goat, as a sin offering; and the priest shall make atonement on your behalf for your sin.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But if you cannot afford a sheep, you shall bring to the LORD, as your penalty for the sin that you have committed, two turtledoves or two pigeons, one for a sin offering and the other for a burnt offering.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> You shall bring them to the priest, who shall offer first the one for the sin offering, wringing its head at the nape without severing it.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> He shall sprinkle some of the blood of the sin offering on the side of the altar, while the rest of the blood shall be drained out at the base of the altar; it is a sin offering.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And the second he shall offer for a burnt offering according to the regulation. Thus the priest shall make atonement on your behalf for the sin that you have committed, and you shall be forgiven.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But if you cannot afford two turtledoves or two pigeons, you shall bring as your offering for the sin that you have committed one-tenth of an ephah of choice flour for a sin offering; you shall not put oil on it or lay frankincense on it, for it is a sin offering.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> You shall bring it to the priest, and the priest shall scoop up a handful of it as its memorial portion, and turn this into smoke on the altar, with the offerings by fire to the LORD; it is a sin offering.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Thus the priest shall make atonement on your behalf for whichever of these sins you have committed, and you shall be forgiven. Like the grain offering, the rest shall be for the priest.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> When any of you commit a trespass and sin unintentionally in any of the holy things of the LORD, you shall bring, as your guilt offering to the LORD, a ram without blemish from the flock, convertible into silver by the sanctuary shekel; it is a guilt offering.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> And you shall make restitution for the holy thing in which you were remiss, and shall add one-fifth to it and give it to the priest. The priest shall make atonement on your behalf with the ram of the guilt offering, and you shall be forgiven.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> If any of you sin without knowing it, doing any of the things that by the LORD's commandments ought not to be done, you have incurred guilt, and are subject to punishment.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> You shall bring to the priest a ram without blemish from the flock, or the equivalent, as a guilt offering; and the priest shall make atonement on your behalf for the error that you committed unintentionally, and you shall be forgiven.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> It is a guilt offering; you have incurred guilt before the LORD.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"6\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> When any of you sin and commit a trespass against the LORD by deceiving a neighbor in a matter of a deposit or a pledge, or by robbery, or if you have defrauded a neighbor,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> or have found something lost and lied about it-- if you swear falsely regarding any of the various things that one may do and sin thereby--</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> when you have sinned and realize your guilt, and would restore what you took by robbery or by fraud or the deposit that was committed to you, or the lost thing that you found,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> or anything else about which you have sworn falsely, you shall repay the principal amount and shall add one-fifth to it. You shall pay it to its owner when you realize your guilt.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And you shall bring to the priest, as your guilt offering to the LORD, a ram without blemish from the flock, or its equivalent, for a guilt offering.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The priest shall make atonement on your behalf before the LORD, and you shall be forgiven for any of the things that one may do and incur guilt thereby.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Command Aaron and his sons, saying: This is the ritual of the burnt offering. The burnt offering itself shall remain on the hearth upon the altar all night until the morning, while the fire on the altar shall be kept burning.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The priest shall put on his linen vestments after putting on his linen undergarments next to his body; and he shall take up the ashes to which the fire has reduced the burnt offering on the altar, and place them beside the altar.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then he shall take off his vestments and put on other garments, and carry the ashes out to a clean place outside the camp.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The fire on the altar shall be kept burning; it shall not go out. Every morning the priest shall add wood to it, lay out the burnt offering on it, and turn into smoke the fat pieces of the offerings of well-being.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> A perpetual fire shall be kept burning on the altar; it shall not go out.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> This is the ritual of the grain offering: The sons of Aaron shall offer it before the LORD, in front of the altar.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> They shall take from it a handful of the choice flour and oil of the grain offering, with all the frankincense that is on the offering, and they shall turn its memorial portion into smoke on the altar as a pleasing odor to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Aaron and his sons shall eat what is left of it; it shall be eaten as unleavened cakes in a holy place; in the court of the tent of meeting they shall eat it.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> It shall not be baked with leaven. I have given it as their portion of my offerings by fire; it is most holy, like the sin offering and the guilt offering.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Every male among the descendants of Aaron shall eat of it, as their perpetual due throughout your generations, from the LORD's offerings by fire; anything that touches them shall become holy.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> This is the offering that Aaron and his sons shall offer to the LORD on the day when he is anointed: one-tenth of an ephah of choice flour as a regular offering, half of it in the morning and half in the evening.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> It shall be made with oil on a griddle; you shall bring it well soaked, as a grain offering of baked pieces, and you shall present it as a pleasing odor to the LORD. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> And so the priest, anointed from among Aaron's descendants as a successor, shall prepare it; it is the LORD's-- a perpetual due-- to be turned entirely into smoke.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Every grain offering of a priest shall be wholly burned; it shall not be eaten.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> The LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Speak to Aaron and his sons, saying: This is the ritual of the sin offering. The sin offering shall be slaughtered before the LORD at the spot where the burnt offering is slaughtered; it is most holy.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> The priest who offers it as a sin offering shall eat of it; it shall be eaten in a holy place, in the court of the tent of meeting.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Whatever touches its flesh shall become holy; and when any of its blood is spattered on a garment, you shall wash the bespattered part in a holy place.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> An earthen vessel in which it was boiled shall be broken; but if it is boiled in a bronze vessel, that shall be scoured and rinsed in water.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Every male among the priests shall eat of it; it is most holy.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> But no sin offering shall be eaten from which any blood is brought into the tent of meeting for atonement in the holy place; it shall be burned with fire.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"7\">\r\n\t\t\t<VERS vnumber=\"1\"> This is the ritual of the guilt offering. It is most holy;</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> at the spot where the burnt offering is slaughtered, they shall slaughter the guilt offering, and its blood shall be dashed against all sides of the altar.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> All its fat shall be offered: the broad tail, the fat that covers the entrails,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> the two kidneys with the fat that is on them at the loins, and the appendage of the liver, which shall be removed with the kidneys.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The priest shall turn them into smoke on the altar as an offering by fire to the LORD; it is a guilt offering.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Every male among the priests shall eat of it; it shall be eaten in a holy place; it is most holy.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The guilt offering is like the sin offering, there is the same ritual for them; the priest who makes atonement with it shall have it.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> So, too, the priest who offers anyone's burnt offering shall keep the skin of the burnt offering that he has offered.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> And every grain offering baked in the oven, and all that is prepared in a pan or on a griddle, shall belong to the priest who offers it.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> But every other grain offering, mixed with oil or dry, shall belong to all the sons of Aaron equally.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> This is the ritual of the sacrifice of the offering of well-being that one may offer to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> If you offer it for thanksgiving, you shall offer with the thank offering unleavened cakes mixed with oil, unleavened wafers spread with oil, and cakes of choice flour well soaked in oil.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> With your thanksgiving sacrifice of well-being you shall bring your offering with cakes of leavened bread.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> From this you shall offer one cake from each offering, as a gift to the LORD; it shall belong to the priest who dashes the blood of the offering of well-being.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And the flesh of your thanksgiving sacrifice of well-being shall be eaten on the day it is offered; you shall not leave any of it until morning.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> But if the sacrifice you offer is a votive offering or a freewill offering, it shall be eaten on the day that you offer your sacrifice, and what is left of it shall be eaten the next day;</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> but what is left of the flesh of the sacrifice shall be burned up on the third day.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> If any of the flesh of your sacrifice of well-being is eaten on the third day, it shall not be acceptable, nor shall it be credited to the one who offers it; it shall be an abomination, and the one who eats of it shall incur guilt.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Flesh that touches any unclean thing shall not be eaten; it shall be burned up. As for other flesh, all who are clean may eat such flesh.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> But those who eat flesh from the LORD's sacrifice of well-being while in a state of uncleanness shall be cut off from their kin.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> When any one of you touches any unclean thing-- human uncleanness or an unclean animal or any unclean creature-- and then eats flesh from the LORD's sacrifice of well-being, you shall be cut off from your kin.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Speak to the people of Israel, saying: You shall eat no fat of ox or sheep or goat.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> The fat of an animal that died or was torn by wild animals may be put to any use, but you must not eat it.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> If any one of you eats the fat from an animal of which an offering by fire may be made to the LORD, you who eat it shall be cut off from your kin.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> You must not eat any blood whatever, either of bird or of animal, in any of your settlements.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Any one of you who eats any blood shall be cut off from your kin.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> The LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Speak to the people of Israel, saying: Any one of you who would offer to the LORD your sacrifice of well-being must yourself bring to the LORD your offering from your sacrifice of well-being.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Your own hands shall bring the LORD's offering by fire; you shall bring the fat with the breast, so that the breast may be raised as an elevation offering before the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> The priest shall turn the fat into smoke on the altar, but the breast shall belong to Aaron and his sons.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> And the right thigh from your sacrifices of well-being you shall give to the priest as an offering;</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> the one among the sons of Aaron who offers the blood and fat of the offering of well-being shall have the right thigh for a portion.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> For I have taken the breast of the elevation offering, and the thigh that is offered, from the people of Israel, from their sacrifices of well-being, and have given them to Aaron the priest and to his sons, as a perpetual due from the people of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> This is the portion allotted to Aaron and to his sons from the offerings made by fire to the LORD, once they have been brought forward to serve the LORD as priests;</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> these the LORD commanded to be given them, when he anointed them, as a perpetual due from the people of Israel throughout their generations.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> This is the ritual of the burnt offering, the grain offering, the sin offering, the guilt offering, the offering of ordination, and the sacrifice of well-being,</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> which the LORD commanded Moses on Mount Sinai, when he commanded the people of Israel to bring their offerings to the LORD, in the wilderness of Sinai.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"8\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Take Aaron and his sons with him, the vestments, the anointing oil, the bull of sin offering, the two rams, and the basket of unleavened bread;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> and assemble the whole congregation at the entrance of the tent of meeting.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> And Moses did as the LORD commanded him. When the congregation was assembled at the entrance of the tent of meeting,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Moses said to the congregation, \"This is what the LORD has commanded to be done.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then Moses brought Aaron and his sons forward, and washed them with water.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> He put the tunic on him, fastened the sash around him, clothed him with the robe, and put the ephod on him. He then put the decorated band of the ephod around him, tying the ephod to him with it.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> He placed the breastpiece on him, and in the breastpiece he put the Urim and the Thummim.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> And he set the turban on his head, and on the turban, in front, he set the golden ornament, the holy crown, as the LORD commanded Moses.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then Moses took the anointing oil and anointed the tabernacle and all that was in it, and consecrated them.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> He sprinkled some of it on the altar seven times, and anointed the altar and all its utensils, and the basin and its base, to consecrate them.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> He poured some of the anointing oil on Aaron's head and anointed him, to consecrate him.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And Moses brought forward Aaron's sons, and clothed them with tunics, and fastened sashes around them, and tied headdresses on them, as the LORD commanded Moses.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> He led forward the bull of sin offering; and Aaron and his sons laid their hands upon the head of the bull of sin offering,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> and it was slaughtered. Moses took the blood and with his finger put some on each of the horns of the altar, purifying the altar; then he poured out the blood at the base of the altar. Thus he consecrated it, to make atonement for it.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Moses took all the fat that was around the entrails, and the appendage of the liver, and the two kidneys with their fat, and turned them into smoke on the altar.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> But the bull itself, its skin and flesh and its dung, he burned with fire outside the camp, as the LORD commanded Moses.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then he brought forward the ram of burnt offering. Aaron and his sons laid their hands on the head of the ram,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> and it was slaughtered. Moses dashed the blood against all sides of the altar.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The ram was cut into its parts, and Moses turned into smoke the head and the parts and the suet.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> And after the entrails and the legs were washed with water, Moses turned into smoke the whole ram on the altar; it was a burnt offering for a pleasing odor, an offering by fire to the LORD, as the LORD commanded Moses.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Then he brought forward the second ram, the ram of ordination. Aaron and his sons laid their hands on the head of the ram,</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> and it was slaughtered. Moses took some of its blood and put it on the lobe of Aaron's right ear and on the thumb of his right hand and on the big toe of his right foot.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> After Aaron's sons were brought forward, Moses put some of the blood on the lobes of their right ears and on the thumbs of their right hands and on the big toes of their right feet; and Moses dashed the rest of the blood against all sides of the altar.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> He took the fat-- the broad tail, all the fat that was around the entrails, the appendage of the liver, and the two kidneys with their fat-- and the right thigh.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> From the basket of unleavened bread that was before the LORD, he took one cake of unleavened bread, one cake of bread with oil, and one wafer, and placed them on the fat and on the right thigh.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> He placed all these on the palms of Aaron and on the palms of his sons, and raised them as an elevation offering before the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Then Moses took them from their hands and turned them into smoke on the altar with the burnt offering. This was an ordination offering for a pleasing odor, an offering by fire to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Moses took the breast and raised it as an elevation offering before the LORD; it was Moses' portion of the ram of ordination, as the LORD commanded Moses.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Then Moses took some of the anointing oil and some of the blood that was on the altar and sprinkled them on Aaron and his vestments, and also on his sons and their vestments. Thus he consecrated Aaron and his vestments, and also his sons and their vestments.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> And Moses said to Aaron and his sons, \"Boil the flesh at the entrance of the tent of meeting, and eat it there with the bread that is in the basket of ordination offerings, as I was commanded, 'Aaron and his sons shall eat it';</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> and what remains of the flesh and the bread you shall burn with fire.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> You shall not go outside the entrance of the tent of meeting for seven days, until the day when your period of ordination is completed. For it will take seven days to ordain you;</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> as has been done today, the LORD has commanded to be done to make atonement for you.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> You shall remain at the entrance of the tent of meeting day and night for seven days, keeping the LORD's charge so that you do not die; for so I am commanded.\"</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Aaron and his sons did all the things that the LORD commanded through Moses.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"9\">\r\n\t\t\t<VERS vnumber=\"1\"> On the eighth day Moses summoned Aaron and his sons and the elders of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He said to Aaron, \"Take a bull calf for a sin offering and a ram for a burnt offering, without blemish, and offer them before the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And say to the people of Israel, 'Take a male goat for a sin offering; a calf and a lamb, yearlings without blemish, for a burnt offering;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> and an ox and a ram for an offering of well-being to sacrifice before the LORD; and a grain offering mixed with oil. For today the LORD will appear to you.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> They brought what Moses commanded to the front of the tent of meeting; and the whole congregation drew near and stood before the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And Moses said, \"This is the thing that the LORD commanded you to do, so that the glory of the LORD may appear to you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then Moses said to Aaron, \"Draw near to the altar and sacrifice your sin offering and your burnt offering, and make atonement for yourself and for the people; and sacrifice the offering of the people, and make atonement for them; as the LORD has commanded.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Aaron drew near to the altar, and slaughtered the calf of the sin offering, which was for himself.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The sons of Aaron presented the blood to him, and he dipped his finger in the blood and put it on the horns of the altar; and the rest of the blood he poured out at the base of the altar.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> But the fat, the kidneys, and the appendage of the liver from the sin offering he turned into smoke on the altar, as the LORD commanded Moses;</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> and the flesh and the skin he burned with fire outside the camp.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then he slaughtered the burnt offering. Aaron's sons brought him the blood, and he dashed it against all sides of the altar.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And they brought him the burnt offering piece by piece, and the head, which he turned into smoke on the altar.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> He washed the entrails and the legs and, with the burnt offering, turned them into smoke on the altar.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Next he presented the people's offering. He took the goat of the sin offering that was for the people, and slaughtered it, and presented it as a sin offering like the first one.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> He presented the burnt offering, and sacrificed it according to regulation.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> He presented the grain offering, and, taking a handful of it, he turned it into smoke on the altar, in addition to the burnt offering of the morning.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> He slaughtered the ox and the ram as a sacrifice of well-being for the people. Aaron's sons brought him the blood, which he dashed against all sides of the altar,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> and the fat of the ox and of the ram-- the broad tail, the fat that covers the entrails, the two kidneys and the fat on them, and the appendage of the liver.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> They first laid the fat on the breasts, and the fat was turned into smoke on the altar;</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> and the breasts and the right thigh Aaron raised as an elevation offering before the LORD, as Moses had commanded.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Aaron lifted his hands toward the people and blessed them; and he came down after sacrificing the sin offering, the burnt offering, and the offering of well-being.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Moses and Aaron entered the tent of meeting, and then came out and blessed the people; and the glory of the LORD appeared to all the people.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Fire came out from the LORD and consumed the burnt offering and the fat on the altar; and when all the people saw it, they shouted and fell on their faces.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"10\">\r\n\t\t\t<VERS vnumber=\"1\"> Now Aaron's sons, Nadab and Abihu, each took his censer, put fire in it, and laid incense on it; and they offered unholy fire before the LORD, such as he had not commanded them.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And fire came out from the presence of the LORD and consumed them, and they died before the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then Moses said to Aaron, \"This is what the LORD meant when he said, 'Through those who are near me I will show myself holy, and before all the people I will be glorified.'\" And Aaron was silent.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Moses summoned Mishael and Elzaphan, sons of Uzziel the uncle of Aaron, and said to them, \"Come forward, and carry your kinsmen away from the front of the sanctuary to a place outside the camp.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> They came forward and carried them by their tunics out of the camp, as Moses had ordered.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And Moses said to Aaron and to his sons Eleazar and Ithamar, \"Do not dishevel your hair, and do not tear your vestments, or you will die and wrath will strike all the congregation; but your kindred, the whole house of Israel, may mourn the burning that the LORD has sent.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> You shall not go outside the entrance of the tent of meeting, or you will die; for the anointing oil of the LORD is on you.\" And they did as Moses had ordered.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And the LORD spoke to Aaron:</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Drink no wine or strong drink, neither you nor your sons, when you enter the tent of meeting, that you may not die; it is a statute forever throughout your generations.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> You are to distinguish between the holy and the common, and between the unclean and the clean;</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> and you are to teach the people of Israel all the statutes that the LORD has spoken to them through Moses.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Moses spoke to Aaron and to his remaining sons, Eleazar and Ithamar: Take the grain offering that is left from the LORD's offerings by fire, and eat it unleavened beside the altar, for it is most holy;</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> you shall eat it in a holy place, because it is your due and your sons' due, from the offerings by fire to the LORD; for so I am commanded.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But the breast that is elevated and the thigh that is raised, you and your sons and daughters as well may eat in any clean place; for they have been assigned to you and your children from the sacrifices of the offerings of well-being of the people of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The thigh that is raised and the breast that is elevated they shall bring, together with the offerings by fire of the fat, to raise for an elevation offering before the LORD; they are to be your due and that of your children forever, as the LORD has commanded.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then Moses made inquiry about the goat of the sin offering, and-- it had already been burned! He was angry with Eleazar and Ithamar, Aaron's remaining sons, and said,</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> \"Why did you not eat the sin offering in the sacred area? For it is most holy, and God has given it to you that you may remove the guilt of the congregation, to make atonement on their behalf before the LORD. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Its blood was not brought into the inner part of the sanctuary. You should certainly have eaten it in the sanctuary, as I commanded.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> And Aaron spoke to Moses, \"See, today they offered their sin offering and their burnt offering before the LORD; and yet such things as these have befallen me! If I had eaten the sin offering today, would it have been agreeable to the LORD?\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> And when Moses heard that, he agreed.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"11\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Moses and Aaron, saying to them:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Speak to the people of Israel, saying: From among all the land animals, these are the creatures that you may eat.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Any animal that has divided hoofs and is cleft-footed and chews the cud-- such you may eat.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But among those that chew the cud or have divided hoofs, you shall not eat the following: the camel, for even though it chews the cud, it does not have divided hoofs; it is unclean for you.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The rock badger, for even though it chews the cud, it does not have divided hoofs; it is unclean for you.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The hare, for even though it chews the cud, it does not have divided hoofs; it is unclean for you.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The pig, for even though it has divided hoofs and is cleft-footed, it does not chew the cud; it is unclean for you.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Of their flesh you shall not eat, and their carcasses you shall not touch; they are unclean for you.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> These you may eat, of all that are in the waters. Everything in the waters that has fins and scales, whether in the seas or in the streams-- such you may eat.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> But anything in the seas or the streams that does not have fins and scales, of the swarming creatures in the waters and among all the other living creatures that are in the waters-- they are detestable to you</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> and detestable they shall remain. Of their flesh you shall not eat, and their carcasses you shall regard as detestable.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Everything in the waters that does not have fins and scales is detestable to you.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> These you shall regard as detestable among the birds. They shall not be eaten; they are an abomination: the eagle, the vulture, the osprey,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> the buzzard, the kite of any kind;</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> every raven of any kind;</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> the ostrich, the nighthawk, the sea gull, the hawk of any kind;</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> the little owl, the cormorant, the great owl,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> the water hen, the desert owl, the carrion vulture, </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> the stork, the heron of any kind, the hoopoe, and the bat. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> All winged insects that walk upon all fours are detestable to you.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> But among the winged insects that walk on all fours you may eat those that have jointed legs above their feet, with which to leap on the ground.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Of them you may eat: the locust according to its kind, the bald locust according to its kind, the cricket according to its kind, and the grasshopper according to its kind.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> But all other winged insects that have four feet are detestable to you.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> By these you shall become unclean; whoever touches the carcass of any of them shall be unclean until the evening,</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> and whoever carries any part of the carcass of any of them shall wash his clothes and be unclean until the evening.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Every animal that has divided hoofs but is not cleft-footed or does not chew the cud is unclean for you; everyone who touches one of them shall be unclean.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> All that walk on their paws, among the animals that walk on all fours, are unclean for you; whoever touches the carcass of any of them shall be unclean until the evening,</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> and the one who carries the carcass shall wash his clothes and be unclean until the evening; they are unclean for you.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> These are unclean for you among the creatures that swarm upon the earth: the weasel, the mouse, the great lizard according to its kind,</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> the gecko, the land crocodile, the lizard, the sand lizard, and the chameleon.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> These are unclean for you among all that swarm; whoever touches one of them when they are dead shall be unclean until the evening.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> And anything upon which any of them falls when they are dead shall be unclean, whether an article of wood or cloth or skin or sacking, any article that is used for any purpose; it shall be dipped into water, and it shall be unclean until the evening, and then it shall be clean.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> And if any of them falls into any earthen vessel, all that is in it shall be unclean, and you shall break the vessel.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Any food that could be eaten shall be unclean if water from any such vessel comes upon it; and any liquid that could be drunk shall be unclean if it was in any such vessel.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Everything on which any part of the carcass falls shall be unclean; whether an oven or stove, it shall be broken in pieces; they are unclean, and shall remain unclean for you.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> But a spring or a cistern holding water shall be clean, while whatever touches the carcass in it shall be unclean.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> If any part of their carcass falls upon any seed set aside for sowing, it is clean;</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> but if water is put on the seed and any part of their carcass falls on it, it is unclean for you.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> If an animal of which you may eat dies, anyone who touches its carcass shall be unclean until the evening.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> Those who eat of its carcass shall wash their clothes and be unclean until the evening; and those who carry the carcass shall wash their clothes and be unclean until the evening.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> All creatures that swarm upon the earth are detestable; they shall not be eaten.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> Whatever moves on its belly, and whatever moves on all fours, or whatever has many feet, all the creatures that swarm upon the earth, you shall not eat; for they are detestable.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> You shall not make yourselves detestable with any creature that swarms; you shall not defile yourselves with them, and so become unclean.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> For I am the LORD your God; sanctify yourselves therefore, and be holy, for I am holy. You shall not defile yourselves with any swarming creature that moves on the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> For I am the LORD who brought you up from the land of Egypt, to be your God; you shall be holy, for I am holy.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> This is the law pertaining to land animal and bird and every living creature that moves through the waters and every creature that swarms upon the earth,</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> to make a distinction between the unclean and the clean, and between the living creature that may be eaten and the living creature that may not be eaten.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"12\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Speak to the people of Israel, saying: If a woman conceives and bears a male child, she shall be ceremonially unclean seven days; as at the time of her menstruation, she shall be unclean.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> On the eighth day the flesh of his foreskin shall be circumcised.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Her time of blood purification shall be thirty-three days; she shall not touch any holy thing, or come into the sanctuary, until the days of her purification are completed.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> If she bears a female child, she shall be unclean two weeks, as in her menstruation; her time of blood purification shall be sixty-six days.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> When the days of her purification are completed, whether for a son or for a daughter, she shall bring to the priest at the entrance of the tent of meeting a lamb in its first year for a burnt offering, and a pigeon or a turtledove for a sin offering.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> He shall offer it before the LORD, and make atonement on her behalf; then she shall be clean from her flow of blood. This is the law for her who bears a child, male or female.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> If she cannot afford a sheep, she shall take two turtledoves or two pigeons, one for a burnt offering and the other for a sin offering; and the priest shall make atonement on her behalf, and she shall be clean.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"13\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Moses and Aaron, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> When a person has on the skin of his body a swelling or an eruption or a spot, and it turns into a leprous disease on the skin of his body, he shall be brought to Aaron the priest or to one of his sons the priests. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The priest shall examine the disease on the skin of his body, and if the hair in the diseased area has turned white and the disease appears to be deeper than the skin of his body, it is a leprous disease; after the priest has examined him he shall pronounce him ceremonially unclean. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But if the spot is white in the skin of his body, and appears no deeper than the skin, and the hair in it has not turned white, the priest shall confine the diseased person for seven days.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The priest shall examine him on the seventh day, and if he sees that the disease is checked and the disease has not spread in the skin, then the priest shall confine him seven days more.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The priest shall examine him again on the seventh day, and if the disease has abated and the disease has not spread in the skin, the priest shall pronounce him clean; it is only an eruption; and he shall wash his clothes, and be clean.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But if the eruption spreads in the skin after he has shown himself to the priest for his cleansing, he shall appear again before the priest.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The priest shall make an examination, and if the eruption has spread in the skin, the priest shall pronounce him unclean; it is a leprous disease. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> When a person contracts a leprous disease, he shall be brought to the priest. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The priest shall make an examination, and if there is a white swelling in the skin that has turned the hair white, and there is quick raw flesh in the swelling,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> it is a chronic leprous disease in the skin of his body. The priest shall pronounce him unclean; he shall not confine him, for he is unclean. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> But if the disease breaks out in the skin, so that it covers all the skin of the diseased person from head to foot, so far as the priest can see,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> then the priest shall make an examination, and if the disease has covered all his body, he shall pronounce him clean of the disease; since it has all turned white, he is clean.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But if raw flesh ever appears on him, he shall be unclean;</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> the priest shall examine the raw flesh and pronounce him unclean. Raw flesh is unclean, for it is a leprous disease. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> But if the raw flesh again turns white, he shall come to the priest;</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> the priest shall examine him, and if the disease has turned white, the priest shall pronounce the diseased person clean. He is clean.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> When there is on the skin of one's body a boil that has healed,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> and in the place of the boil there appears a white swelling or a reddish-white spot, it shall be shown to the priest.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The priest shall make an examination, and if it appears deeper than the skin and its hair has turned white, the priest shall pronounce him unclean; this is a leprous disease, broken out in the boil. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> But if the priest examines it and the hair on it is not white, nor is it deeper than the skin but has abated, the priest shall confine him seven days.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> If it spreads in the skin, the priest shall pronounce him unclean; it is diseased.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> But if the spot remains in one place and does not spread, it is the scar of the boil; the priest shall pronounce him clean.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Or, when the body has a burn on the skin and the raw flesh of the burn becomes a spot, reddish-white or white,</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> the priest shall examine it. If the hair in the spot has turned white and it appears deeper than the skin, it is a leprous disease; it has broken out in the burn, and the priest shall pronounce him unclean. This is a leprous disease.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> But if the priest examines it and the hair in the spot is not white, and it is no deeper than the skin but has abated, the priest shall confine him seven days.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> The priest shall examine him the seventh day; if it is spreading in the skin, the priest shall pronounce him unclean. This is a leprous disease. </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> But if the spot remains in one place and does not spread in the skin but has abated, it is a swelling from the burn, and the priest shall pronounce him clean; for it is the scar of the burn.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> When a man or woman has a disease on the head or in the beard,</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> the priest shall examine the disease. If it appears deeper than the skin and the hair in it is yellow and thin, the priest shall pronounce him unclean; it is an itch, a leprous disease of the head or the beard. </VERS>\r\n\t\t\t<VERS vnumber=\"31\"> If the priest examines the itching disease, and it appears no deeper than the skin and there is no black hair in it, the priest shall confine the person with the itching disease for seven days.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> On the seventh day the priest shall examine the itch; if the itch has not spread, and there is no yellow hair in it, and the itch appears to be no deeper than the skin,</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> he shall shave, but the itch he shall not shave. The priest shall confine the person with the itch for seven days more.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> On the seventh day the priest shall examine the itch; if the itch has not spread in the skin and it appears to be no deeper than the skin, the priest shall pronounce him clean. He shall wash his clothes and be clean.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> But if the itch spreads in the skin after he was pronounced clean,</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> the priest shall examine him. If the itch has spread in the skin, the priest need not seek for the yellow hair; he is unclean.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> But if in his eyes the itch is checked, and black hair has grown in it, the itch is healed, he is clean; and the priest shall pronounce him clean.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> When a man or a woman has spots on the skin of the body, white spots,</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> the priest shall make an examination, and if the spots on the skin of the body are of a dull white, it is a rash that has broken out on the skin; he is clean.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> If anyone loses the hair from his head, he is bald but he is clean.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> If he loses the hair from his forehead and temples, he has baldness of the forehead but he is clean.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> But if there is on the bald head or the bald forehead a reddish-white diseased spot, it is a leprous disease breaking out on his bald head or his bald forehead. </VERS>\r\n\t\t\t<VERS vnumber=\"43\"> The priest shall examine him; if the diseased swelling is reddish-white on his bald head or on his bald forehead, which resembles a leprous disease in the skin of the body, </VERS>\r\n\t\t\t<VERS vnumber=\"44\"> he is leprous, he is unclean. The priest shall pronounce him unclean; the disease is on his head. </VERS>\r\n\t\t\t<VERS vnumber=\"45\"> The person who has the leprous disease shall wear torn clothes and let the hair of his head be disheveled; and he shall cover his upper lip and cry out, \"Unclean, unclean.\" </VERS>\r\n\t\t\t<VERS vnumber=\"46\"> He shall remain unclean as long as he has the disease; he is unclean. He shall live alone; his dwelling shall be outside the camp.</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> Concerning clothing: when a leprous disease appears in it, in woolen or linen cloth, </VERS>\r\n\t\t\t<VERS vnumber=\"48\"> in warp or woof of linen or wool, or in a skin or in anything made of skin,</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> if the disease shows greenish or reddish in the garment, whether in warp or woof or in skin or in anything made of skin, it is a leprous disease and shall be shown to the priest. </VERS>\r\n\t\t\t<VERS vnumber=\"50\"> The priest shall examine the disease, and put the diseased article aside for seven days.</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> He shall examine the disease on the seventh day. If the disease has spread in the cloth, in warp or woof, or in the skin, whatever be the use of the skin, this is a spreading leprous disease; it is unclean. </VERS>\r\n\t\t\t<VERS vnumber=\"52\"> He shall burn the clothing, whether diseased in warp or woof, woolen or linen, or anything of skin, for it is a spreading leprous disease; it shall be burned in fire. </VERS>\r\n\t\t\t<VERS vnumber=\"53\"> If the priest makes an examination, and the disease has not spread in the clothing, in warp or woof or in anything of skin,</VERS>\r\n\t\t\t<VERS vnumber=\"54\"> the priest shall command them to wash the article in which the disease appears, and he shall put it aside seven days more.</VERS>\r\n\t\t\t<VERS vnumber=\"55\"> The priest shall examine the diseased article after it has been washed. If the diseased spot has not changed color, though the disease has not spread, it is unclean; you shall burn it in fire, whether the leprous spot is on the inside or on the outside. </VERS>\r\n\t\t\t<VERS vnumber=\"56\"> If the priest makes an examination, and the disease has abated after it is washed, he shall tear the spot out of the cloth, in warp or woof, or out of skin.</VERS>\r\n\t\t\t<VERS vnumber=\"57\"> If it appears again in the garment, in warp or woof, or in anything of skin, it is spreading; you shall burn with fire that in which the disease appears.</VERS>\r\n\t\t\t<VERS vnumber=\"58\"> But the cloth, warp or woof, or anything of skin from which the disease disappears when you have washed it, shall then be washed a second time, and it shall be clean.</VERS>\r\n\t\t\t<VERS vnumber=\"59\"> This is the ritual for a leprous disease in a cloth of wool or linen, either in warp or woof, or in anything of skin, to decide whether it is clean or unclean. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"14\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> This shall be the ritual for the leprous person at the time of his cleansing: He shall be brought to the priest; </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> the priest shall go out of the camp, and the priest shall make an examination. If the disease is healed in the leprous person, </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> the priest shall command that two living clean birds and cedarwood and crimson yarn and hyssop be brought for the one who is to be cleansed.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The priest shall command that one of the birds be slaughtered over fresh water in an earthen vessel.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> He shall take the living bird with the cedarwood and the crimson yarn and the hyssop, and dip them and the living bird in the blood of the bird that was slaughtered over the fresh water.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> He shall sprinkle it seven times upon the one who is to be cleansed of the leprous disease; then he shall pronounce him clean, and he shall let the living bird go into the open field.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The one who is to be cleansed shall wash his clothes, and shave off all his hair, and bathe himself in water, and he shall be clean. After that he shall come into the camp, but shall live outside his tent seven days.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> On the seventh day he shall shave all his hair: of head, beard, eyebrows; he shall shave all his hair. Then he shall wash his clothes, and bathe his body in water, and he shall be clean.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> On the eighth day he shall take two male lambs without blemish, and one ewe lamb in its first year without blemish, and a grain offering of three-tenths of an ephah of choice flour mixed with oil, and one log of oil. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The priest who cleanses shall set the person to be cleansed, along with these things, before the LORD, at the entrance of the tent of meeting.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The priest shall take one of the lambs, and offer it as a guilt offering, along with the log of oil, and raise them as an elevation offering before the LORD. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> He shall slaughter the lamb in the place where the sin offering and the burnt offering are slaughtered in the holy place; for the guilt offering, like the sin offering, belongs to the priest: it is most holy.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The priest shall take some of the blood of the guilt offering and put it on the lobe of the right ear of the one to be cleansed, and on the thumb of the right hand, and on the big toe of the right foot.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The priest shall take some of the log of oil and pour it into the palm of his own left hand, </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> and dip his right finger in the oil that is in his left hand and sprinkle some oil with his finger seven times before the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Some of the oil that remains in his hand the priest shall put on the lobe of the right ear of the one to be cleansed, and on the thumb of the right hand, and on the big toe of the right foot, on top of the blood of the guilt offering.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The rest of the oil that is in the priest's hand he shall put on the head of the one to be cleansed. Then the priest shall make atonement on his behalf before the LORD:</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> the priest shall offer the sin offering, to make atonement for the one to be cleansed from his uncleanness. Afterward he shall slaughter the burnt offering;</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> and the priest shall offer the burnt offering and the grain offering on the altar. Thus the priest shall make atonement on his behalf and he shall be clean.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> But if he is poor and cannot afford so much, he shall take one male lamb for a guilt offering to be elevated, to make atonement on his behalf, and one-tenth of an ephah of choice flour mixed with oil for a grain offering and a log of oil; </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> also two turtledoves or two pigeons, such as he can afford, one for a sin offering and the other for a burnt offering.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> On the eighth day he shall bring them for his cleansing to the priest, to the entrance of the tent of meeting, before the LORD;</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> and the priest shall take the lamb of the guilt offering and the log of oil, and the priest shall raise them as an elevation offering before the LORD. </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> The priest shall slaughter the lamb of the guilt offering and shall take some of the blood of the guilt offering, and put it on the lobe of the right ear of the one to be cleansed, and on the thumb of the right hand, and on the big toe of the right foot.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> The priest shall pour some of the oil into the palm of his own left hand,</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> and shall sprinkle with his right finger some of the oil that is in his left hand seven times before the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> The priest shall put some of the oil that is in his hand on the lobe of the right ear of the one to be cleansed, and on the thumb of the right hand, and the big toe of the right foot, where the blood of the guilt offering was placed.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> The rest of the oil that is in the priest's hand he shall put on the head of the one to be cleansed, to make atonement on his behalf before the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> And he shall offer, of the turtledoves or pigeons such as he can afford,</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> one for a sin offering and the other for a burnt offering, along with a grain offering; and the priest shall make atonement before the LORD on behalf of the one being cleansed. </VERS>\r\n\t\t\t<VERS vnumber=\"32\"> This is the ritual for the one who has a leprous disease, who cannot afford the offerings for his cleansing. </VERS>\r\n\t\t\t<VERS vnumber=\"33\"> The LORD spoke to Moses and Aaron, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> When you come into the land of Canaan, which I give you for a possession, and I put a leprous disease in a house in the land of your possession, </VERS>\r\n\t\t\t<VERS vnumber=\"35\"> the owner of the house shall come and tell the priest, saying, \"There seems to me to be some sort of disease in my house.\"</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> The priest shall command that they empty the house before the priest goes to examine the disease, or all that is in the house will become unclean; and afterward the priest shall go in to inspect the house.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> He shall examine the disease; if the disease is in the walls of the house with greenish or reddish spots, and if it appears to be deeper than the surface,</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> the priest shall go outside to the door of the house and shut up the house seven days.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> The priest shall come again on the seventh day and make an inspection; if the disease has spread in the walls of the house,</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> the priest shall command that the stones in which the disease appears be taken out and thrown into an unclean place outside the city.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> He shall have the inside of the house scraped thoroughly, and the plaster that is scraped off shall be dumped in an unclean place outside the city.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> They shall take other stones and put them in the place of those stones, and take other plaster and plaster the house.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> If the disease breaks out again in the house, after he has taken out the stones and scraped the house and plastered it,</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> the priest shall go and make inspection; if the disease has spread in the house, it is a spreading leprous disease in the house; it is unclean. </VERS>\r\n\t\t\t<VERS vnumber=\"45\"> He shall have the house torn down, its stones and timber and all the plaster of the house, and taken outside the city to an unclean place.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> All who enter the house while it is shut up shall be unclean until the evening;</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> and all who sleep in the house shall wash their clothes; and all who eat in the house shall wash their clothes.</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> If the priest comes and makes an inspection, and the disease has not spread in the house after the house was plastered, the priest shall pronounce the house clean; the disease is healed.</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> For the cleansing of the house he shall take two birds, with cedarwood and crimson yarn and hyssop,</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> and shall slaughter one of the birds over fresh water in an earthen vessel,</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> and shall take the cedarwood and the hyssop and the crimson yarn, along with the living bird, and dip them in the blood of the slaughtered bird and the fresh water, and sprinkle the house seven times.</VERS>\r\n\t\t\t<VERS vnumber=\"52\"> Thus he shall cleanse the house with the blood of the bird, and with the fresh water, and with the living bird, and with the cedarwood and hyssop and crimson yarn;</VERS>\r\n\t\t\t<VERS vnumber=\"53\"> and he shall let the living bird go out of the city into the open field; so he shall make atonement for the house, and it shall be clean.</VERS>\r\n\t\t\t<VERS vnumber=\"54\"> This is the ritual for any leprous disease: for an itch, </VERS>\r\n\t\t\t<VERS vnumber=\"55\"> for leprous diseases in clothing and houses, </VERS>\r\n\t\t\t<VERS vnumber=\"56\"> and for a swelling or an eruption or a spot,</VERS>\r\n\t\t\t<VERS vnumber=\"57\"> to determine when it is unclean and when it is clean. This is the ritual for leprous diseases. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"15\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Moses and Aaron, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Speak to the people of Israel and say to them: When any man has a discharge from his member, his discharge makes him ceremonially unclean. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The uncleanness of his discharge is this: whether his member flows with his discharge, or his member is stopped from discharging, it is uncleanness for him. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Every bed on which the one with the discharge lies shall be unclean; and everything on which he sits shall be unclean.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Anyone who touches his bed shall wash his clothes, and bathe in water, and be unclean until the evening.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> All who sit on anything on which the one with the discharge has sat shall wash their clothes, and bathe in water, and be unclean until the evening.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> All who touch the body of the one with the discharge shall wash their clothes, and bathe in water, and be unclean until the evening.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> If the one with the discharge spits on persons who are clean, then they shall wash their clothes, and bathe in water, and be unclean until the evening.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Any saddle on which the one with the discharge rides shall be unclean.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> All who touch anything that was under him shall be unclean until the evening, and all who carry such a thing shall wash their clothes, and bathe in water, and be unclean until the evening.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> All those whom the one with the discharge touches without his having rinsed his hands in water shall wash their clothes, and bathe in water, and be unclean until the evening.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Any earthen vessel that the one with the discharge touches shall be broken; and every vessel of wood shall be rinsed in water.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> When the one with a discharge is cleansed of his discharge, he shall count seven days for his cleansing; he shall wash his clothes and bathe his body in fresh water, and he shall be clean.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> On the eighth day he shall take two turtledoves or two pigeons and come before the LORD to the entrance of the tent of meeting and give them to the priest.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The priest shall offer them, one for a sin offering and the other for a burnt offering; and the priest shall make atonement on his behalf before the LORD for his discharge.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> If a man has an emission of semen, he shall bathe his whole body in water, and be unclean until the evening.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Everything made of cloth or of skin on which the semen falls shall be washed with water, and be unclean until the evening.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> If a man lies with a woman and has an emission of semen, both of them shall bathe in water, and be unclean until the evening.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> When a woman has a discharge of blood that is her regular discharge from her body, she shall be in her impurity for seven days, and whoever touches her shall be unclean until the evening.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Everything upon which she lies during her impurity shall be unclean; everything also upon which she sits shall be unclean.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Whoever touches her bed shall wash his clothes, and bathe in water, and be unclean until the evening.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Whoever touches anything upon which she sits shall wash his clothes, and bathe in water, and be unclean until the evening;</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> whether it is the bed or anything upon which she sits, when he touches it he shall be unclean until the evening.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> If any man lies with her, and her impurity falls on him, he shall be unclean seven days; and every bed on which he lies shall be unclean.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> If a woman has a discharge of blood for many days, not at the time of her impurity, or if she has a discharge beyond the time of her impurity, all the days of the discharge she shall continue in uncleanness; as in the days of her impurity, she shall be unclean.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Every bed on which she lies during all the days of her discharge shall be treated as the bed of her impurity; and everything on which she sits shall be unclean, as in the uncleanness of her impurity.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Whoever touches these things shall be unclean, and shall wash his clothes, and bathe in water, and be unclean until the evening.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> If she is cleansed of her discharge, she shall count seven days, and after that she shall be clean.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> On the eighth day she shall take two turtledoves or two pigeons and bring them to the priest to the entrance of the tent of meeting.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> The priest shall offer one for a sin offering and the other for a burnt offering; and the priest shall make atonement on her behalf before the LORD for her unclean discharge.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Thus you shall keep the people of Israel separate from their uncleanness, so that they do not die in their uncleanness by defiling my tabernacle that is in their midst.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> This is the ritual for those who have a discharge: for him who has an emission of semen, becoming unclean thereby,</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> for her who is in the infirmity of her period, for anyone, male or female, who has a discharge, and for the man who lies with a woman who is unclean.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"16\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Moses after the death of the two sons of Aaron, when they drew near before the LORD and died.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The LORD said to Moses: Tell your brother Aaron not to come just at any time into the sanctuary inside the curtain before the mercy seat that is upon the ark, or he will die; for I appear in the cloud upon the mercy seat. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Thus shall Aaron come into the holy place: with a young bull for a sin offering and a ram for a burnt offering.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> He shall put on the holy linen tunic, and shall have the linen undergarments next to his body, fasten the linen sash, and wear the linen turban; these are the holy vestments. He shall bathe his body in water, and then put them on.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> He shall take from the congregation of the people of Israel two male goats for a sin offering, and one ram for a burnt offering.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Aaron shall offer the bull as a sin offering for himself, and shall make atonement for himself and for his house.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> He shall take the two goats and set them before the LORD at the entrance of the tent of meeting;</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> and Aaron shall cast lots on the two goats, one lot for the LORD and the other lot for Azazel.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Aaron shall present the goat on which the lot fell for the LORD, and offer it as a sin offering;</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> but the goat on which the lot fell for Azazel shall be presented alive before the LORD to make atonement over it, that it may be sent away into the wilderness to Azazel. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Aaron shall present the bull as a sin offering for himself, and shall make atonement for himself and for his house; he shall slaughter the bull as a sin offering for himself.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> He shall take a censer full of coals of fire from the altar before the LORD, and two handfuls of crushed sweet incense, and he shall bring it inside the curtain</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> and put the incense on the fire before the LORD, that the cloud of the incense may cover the mercy seat that is upon the covenant, or he will die. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> He shall take some of the blood of the bull, and sprinkle it with his finger on the front of the mercy seat, and before the mercy seat he shall sprinkle the blood with his finger seven times. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> He shall slaughter the goat of the sin offering that is for the people and bring its blood inside the curtain, and do with its blood as he did with the blood of the bull, sprinkling it upon the mercy seat and before the mercy seat. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Thus he shall make atonement for the sanctuary, because of the uncleannesses of the people of Israel, and because of their transgressions, all their sins; and so he shall do for the tent of meeting, which remains with them in the midst of their uncleannesses.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> No one shall be in the tent of meeting from the time he enters to make atonement in the sanctuary until he comes out and has made atonement for himself and for his house and for all the assembly of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then he shall go out to the altar that is before the LORD and make atonement on its behalf, and shall take some of the blood of the bull and of the blood of the goat, and put it on each of the horns of the altar.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> He shall sprinkle some of the blood on it with his finger seven times, and cleanse it and hallow it from the uncleannesses of the people of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> When he has finished atoning for the holy place and the tent of meeting and the altar, he shall present the live goat.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then Aaron shall lay both his hands on the head of the live goat, and confess over it all the iniquities of the people of Israel, and all their transgressions, all their sins, putting them on the head of the goat, and sending it away into the wilderness by means of someone designated for the task. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The goat shall bear on itself all their iniquities to a barren region; and the goat shall be set free in the wilderness.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Then Aaron shall enter the tent of meeting, and shall take off the linen vestments that he put on when he went into the holy place, and shall leave them there.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> He shall bathe his body in water in a holy place, and put on his vestments; then he shall come out and offer his burnt offering and the burnt offering of the people, making atonement for himself and for the people.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> The fat of the sin offering he shall turn into smoke on the altar.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> The one who sets the goat free for Azazel shall wash his clothes and bathe his body in water, and afterward may come into the camp. </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> The bull of the sin offering and the goat of the sin offering, whose blood was brought in to make atonement in the holy place, shall be taken outside the camp; their skin and their flesh and their dung shall be consumed in fire.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> The one who burns them shall wash his clothes and bathe his body in water, and afterward may come into the camp.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> This shall be a statute to you forever: In the seventh month, on the tenth day of the month, you shall deny yourselves, and shall do no work, neither the citizen nor the alien who resides among you. </VERS>\r\n\t\t\t<VERS vnumber=\"30\"> For on this day atonement shall be made for you, to cleanse you; from all your sins you shall be clean before the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> It is a sabbath of complete rest to you, and you shall deny yourselves; it is a statute forever. </VERS>\r\n\t\t\t<VERS vnumber=\"32\"> The priest who is anointed and consecrated as priest in his father's place shall make atonement, wearing the linen vestments, the holy vestments.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> He shall make atonement for the sanctuary, and he shall make atonement for the tent of meeting and for the altar, and he shall make atonement for the priests and for all the people of the assembly.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> This shall be an everlasting statute for you, to make atonement for the people of Israel once in the year for all their sins. And Moses did as the LORD had commanded him.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"17\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Moses:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Speak to Aaron and his sons and to all the people of Israel and say to them: This is what the LORD has commanded.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> If anyone of the house of Israel slaughters an ox or a lamb or a goat in the camp, or slaughters it outside the camp,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> and does not bring it to the entrance of the tent of meeting, to present it as an offering to the LORD before the tabernacle of the LORD, he shall be held guilty of bloodshed; he has shed blood, and he shall be cut off from the people.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> This is in order that the people of Israel may bring their sacrifices that they offer in the open field, that they may bring them to the LORD, to the priest at the entrance of the tent of meeting, and offer them as sacrifices of well-being to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The priest shall dash the blood against the altar of the LORD at the entrance of the tent of meeting, and turn the fat into smoke as a pleasing odor to the LORD,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> so that they may no longer offer their sacrifices for goat-demons, to whom they prostitute themselves. This shall be a statute forever to them throughout their generations.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And say to them further: Anyone of the house of Israel or of the aliens who reside among them who offers a burnt offering or sacrifice,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> and does not bring it to the entrance of the tent of meeting, to sacrifice it to the LORD, shall be cut off from the people.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> If anyone of the house of Israel or of the aliens who reside among them eats any blood, I will set my face against that person who eats blood, and will cut that person off from the people.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> For the life of the flesh is in the blood; and I have given it to you for making atonement for your lives on the altar; for, as life, it is the blood that makes atonement.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Therefore I have said to the people of Israel: No person among you shall eat blood, nor shall any alien who resides among you eat blood.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And anyone of the people of Israel, or of the aliens who reside among them, who hunts down an animal or bird that may be eaten shall pour out its blood and cover it with earth.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> For the life of every creature-- its blood is its life; therefore I have said to the people of Israel: You shall not eat the blood of any creature, for the life of every creature is its blood; whoever eats it shall be cut off.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> All persons, citizens or aliens, who eat what dies of itself or what has been torn by wild animals, shall wash their clothes, and bathe themselves in water, and be unclean until the evening; then they shall be clean.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> But if they do not wash themselves or bathe their body, they shall bear their guilt.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"18\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Speak to the people of Israel and say to them: I am the LORD your God.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> You shall not do as they do in the land of Egypt, where you lived, and you shall not do as they do in the land of Canaan, to which I am bringing you. You shall not follow their statutes.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> My ordinances you shall observe and my statutes you shall keep, following them: I am the LORD your God.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> You shall keep my statutes and my ordinances; by doing so one shall live: I am the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> None of you shall approach anyone near of kin to uncover nakedness: I am the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> You shall not uncover the nakedness of your father, which is the nakedness of your mother; she is your mother, you shall not uncover her nakedness.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> You shall not uncover the nakedness of your father's wife; it is the nakedness of your father.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> You shall not uncover the nakedness of your sister, your father's daughter or your mother's daughter, whether born at home or born abroad.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> You shall not uncover the nakedness of your son's daughter or of your daughter's daughter, for their nakedness is your own nakedness.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> You shall not uncover the nakedness of your father's wife's daughter, begotten by your father, since she is your sister.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> You shall not uncover the nakedness of your father's sister; she is your father's flesh.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> You shall not uncover the nakedness of your mother's sister, for she is your mother's flesh.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> You shall not uncover the nakedness of your father's brother, that is, you shall not approach his wife; she is your aunt.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> You shall not uncover the nakedness of your daughter-in-law: she is your son's wife; you shall not uncover her nakedness.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> You shall not uncover the nakedness of your brother's wife; it is your brother's nakedness.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> You shall not uncover the nakedness of a woman and her daughter, and you shall not take her son's daughter or her daughter's daughter to uncover her nakedness; they are your flesh; it is depravity. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> And you shall not take a woman as a rival to her sister, uncovering her nakedness while her sister is still alive. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> You shall not approach a woman to uncover her nakedness while she is in her menstrual uncleanness.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> You shall not have sexual relations with your kinsman's wife, and defile yourself with her.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> You shall not give any of your offspring to sacrifice them to Molech, and so profane the name of your God: I am the LORD. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> You shall not lie with a male as with a woman; it is an abomination.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> You shall not have sexual relations with any animal and defile yourself with it, nor shall any woman give herself to an animal to have sexual relations with it: it is perversion.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Do not defile yourselves in any of these ways, for by all these practices the nations I am casting out before you have defiled themselves.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Thus the land became defiled; and I punished it for its iniquity, and the land vomited out its inhabitants.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> But you shall keep my statutes and my ordinances and commit none of these abominations, either the citizen or the alien who resides among you</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> (for the inhabitants of the land, who were before you, committed all of these abominations, and the land became defiled);</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> otherwise the land will vomit you out for defiling it, as it vomited out the nation that was before you.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> For whoever commits any of these abominations shall be cut off from their people.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> So keep my charge not to commit any of these abominations that were done before you, and not to defile yourselves by them: I am the LORD your God.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"19\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Speak to all the congregation of the people of Israel and say to them: You shall be holy, for I the LORD your God am holy.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> You shall each revere your mother and father, and you shall keep my sabbaths: I am the LORD your God.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Do not turn to idols or make cast images for yourselves: I am the LORD your God.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> When you offer a sacrifice of well-being to the LORD, offer it in such a way that it is acceptable on your behalf.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> It shall be eaten on the same day you offer it, or on the next day; and anything left over until the third day shall be consumed in fire.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> If it is eaten at all on the third day, it is an abomination; it will not be acceptable.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> All who eat it shall be subject to punishment, because they have profaned what is holy to the LORD; and any such person shall be cut off from the people.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> When you reap the harvest of your land, you shall not reap to the very edges of your field, or gather the gleanings of your harvest.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> You shall not strip your vineyard bare, or gather the fallen grapes of your vineyard; you shall leave them for the poor and the alien: I am the LORD your God.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> You shall not steal; you shall not deal falsely; and you shall not lie to one another.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> And you shall not swear falsely by my name, profaning the name of your God: I am the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> You shall not defraud your neighbor; you shall not steal; and you shall not keep for yourself the wages of a laborer until morning.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> You shall not revile the deaf or put a stumbling block before the blind; you shall fear your God: I am the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> You shall not render an unjust judgment; you shall not be partial to the poor or defer to the great: with justice you shall judge your neighbor.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> You shall not go around as a slanderer among your people, and you shall not profit by the blood of your neighbor: I am the LORD. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> You shall not hate in your heart anyone of your kin; you shall reprove your neighbor, or you will incur guilt yourself.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> You shall not take vengeance or bear a grudge against any of your people, but you shall love your neighbor as yourself: I am the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> You shall keep my statutes. You shall not let your animals breed with a different kind; you shall not sow your field with two kinds of seed; nor shall you put on a garment made of two different materials.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> If a man has sexual relations with a woman who is a slave, designated for another man but not ransomed or given her freedom, an inquiry shall be held. They shall not be put to death, since she has not been freed;</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> but he shall bring a guilt offering for himself to the LORD, at the entrance of the tent of meeting, a ram as guilt offering.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> And the priest shall make atonement for him with the ram of guilt offering before the LORD for his sin that he committed; and the sin he committed shall be forgiven him.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> When you come into the land and plant all kinds of trees for food, then you shall regard their fruit as forbidden; three years it shall be forbidden to you, it must not be eaten. </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> In the fourth year all their fruit shall be set apart for rejoicing in the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> But in the fifth year you may eat of their fruit, that their yield may be increased for you: I am the LORD your God.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> You shall not eat anything with its blood. You shall not practice augury or witchcraft.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> You shall not round off the hair on your temples or mar the edges of your beard.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> You shall not make any gashes in your flesh for the dead or tattoo any marks upon you: I am the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Do not profane your daughter by making her a prostitute, that the land not become prostituted and full of depravity.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> You shall keep my sabbaths and reverence my sanctuary: I am the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Do not turn to mediums or wizards; do not seek them out, to be defiled by them: I am the LORD your God.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> You shall rise before the aged, and defer to the old; and you shall fear your God: I am the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> When an alien resides with you in your land, you shall not oppress the alien.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> The alien who resides with you shall be to you as the citizen among you; you shall love the alien as yourself, for you were aliens in the land of Egypt: I am the LORD your God.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> You shall not cheat in measuring length, weight, or quantity.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> You shall have honest balances, honest weights, an honest ephah, and an honest hin: I am the LORD your God, who brought you out of the land of Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> You shall keep all my statutes and all my ordinances, and observe them: I am the LORD.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"20\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Say further to the people of Israel: Any of the people of Israel, or of the aliens who reside in Israel, who give any of their offspring to Molech shall be put to death; the people of the land shall stone them to death.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> I myself will set my face against them, and will cut them off from the people, because they have given of their offspring to Molech, defiling my sanctuary and profaning my holy name.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> And if the people of the land should ever close their eyes to them, when they give of their offspring to Molech, and do not put them to death,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> I myself will set my face against them and against their family, and will cut them off from among their people, them and all who follow them in prostituting themselves to Molech.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> If any turn to mediums and wizards, prostituting themselves to them, I will set my face against them, and will cut them off from the people.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Consecrate yourselves therefore, and be holy; for I am the LORD your God.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Keep my statutes, and observe them; I am the LORD; I sanctify you.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> All who curse father or mother shall be put to death; having cursed father or mother, their blood is upon them.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> If a man commits adultery with the wife of his neighbor, both the adulterer and the adulteress shall be put to death. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The man who lies with his father's wife has uncovered his father's nakedness; both of them shall be put to death; their blood is upon them.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> If a man lies with his daughter-in-law, both of them shall be put to death; they have committed perversion, their blood is upon them.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> If a man lies with a male as with a woman, both of them have committed an abomination; they shall be put to death; their blood is upon them.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> If a man takes a wife and her mother also, it is depravity; they shall be burned to death, both he and they, that there may be no depravity among you.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> If a man has sexual relations with an animal, he shall be put to death; and you shall kill the animal.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> If a woman approaches any animal and has sexual relations with it, you shall kill the woman and the animal; they shall be put to death, their blood is upon them.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> If a man takes his sister, a daughter of his father or a daughter of his mother, and sees her nakedness, and she sees his nakedness, it is a disgrace, and they shall be cut off in the sight of their people; he has uncovered his sister's nakedness, he shall be subject to punishment.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> If a man lies with a woman having her sickness and uncovers her nakedness, he has laid bare her flow and she has laid bare her flow of blood; both of them shall be cut off from their people.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> You shall not uncover the nakedness of your mother's sister or of your father's sister, for that is to lay bare one's own flesh; they shall be subject to punishment.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> If a man lies with his uncle's wife, he has uncovered his uncle's nakedness; they shall be subject to punishment; they shall die childless.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> If a man takes his brother's wife, it is impurity; he has uncovered his brother's nakedness; they shall be childless.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> You shall keep all my statutes and all my ordinances, and observe them, so that the land to which I bring you to settle in may not vomit you out.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> You shall not follow the practices of the nation that I am driving out before you. Because they did all these things, I abhorred them.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> But I have said to you: You shall inherit their land, and I will give it to you to possess, a land flowing with milk and honey. I am the LORD your God; I have separated you from the peoples.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> You shall therefore make a distinction between the clean animal and the unclean, and between the unclean bird and the clean; you shall not bring abomination on yourselves by animal or by bird or by anything with which the ground teems, which I have set apart for you to hold unclean.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> You shall be holy to me; for I the LORD am holy, and I have separated you from the other peoples to be mine.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> A man or a woman who is a medium or a wizard shall be put to death; they shall be stoned to death, their blood is upon them.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"21\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD said to Moses: Speak to the priests, the sons of Aaron, and say to them: No one shall defile himself for a dead person among his relatives,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> except for his nearest kin: his mother, his father, his son, his daughter, his brother;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> likewise, for a virgin sister, close to him because she has had no husband, he may defile himself for her.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But he shall not defile himself as a husband among his people and so profane himself.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> They shall not make bald spots upon their heads, or shave off the edges of their beards, or make any gashes in their flesh.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> They shall be holy to their God, and not profane the name of their God; for they offer the LORD's offerings by fire, the food of their God; therefore they shall be holy.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> They shall not marry a prostitute or a woman who has been defiled; neither shall they marry a woman divorced from her husband. For they are holy to their God,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> and you shall treat them as holy, since they offer the food of your God; they shall be holy to you, for I the LORD, I who sanctify you, am holy.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> When the daughter of a priest profanes herself through prostitution, she profanes her father; she shall be burned to death.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The priest who is exalted above his fellows, on whose head the anointing oil has been poured and who has been consecrated to wear the vestments, shall not dishevel his hair, nor tear his vestments.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> He shall not go where there is a dead body; he shall not defile himself even for his father or mother.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> He shall not go outside the sanctuary and thus profane the sanctuary of his God; for the consecration of the anointing oil of his God is upon him: I am the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> He shall marry only a woman who is a virgin.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> A widow, or a divorced woman, or a woman who has been defiled, a prostitute, these he shall not marry. He shall marry a virgin of his own kin,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> that he may not profane his offspring among his kin; for I am the LORD; I sanctify him.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Speak to Aaron and say: No one of your offspring throughout their generations who has a blemish may approach to offer the food of his God.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> For no one who has a blemish shall draw near, one who is blind or lame, or one who has a mutilated face or a limb too long,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> or one who has a broken foot or a broken hand,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> or a hunchback, or a dwarf, or a man with a blemish in his eyes or an itching disease or scabs or crushed testicles.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> No descendant of Aaron the priest who has a blemish shall come near to offer the LORD's offerings by fire; since he has a blemish, he shall not come near to offer the food of his God.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> He may eat the food of his God, of the most holy as well as of the holy.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> But he shall not come near the curtain or approach the altar, because he has a blemish, that he may not profane my sanctuaries; for I am the LORD; I sanctify them.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Thus Moses spoke to Aaron and to his sons and to all the people of Israel.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"22\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Direct Aaron and his sons to deal carefully with the sacred donations of the people of Israel, which they dedicate to me, so that they may not profane my holy name; I am the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Say to them: If anyone among all your offspring throughout your generations comes near the sacred donations, which the people of Israel dedicate to the LORD, while he is in a state of uncleanness, that person shall be cut off from my presence: I am the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> No one of Aaron's offspring who has a leprous disease or suffers a discharge may eat of the sacred donations until he is clean. Whoever touches anything made unclean by a corpse or a man who has had an emission of semen, </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> and whoever touches any swarming thing by which he may be made unclean or any human being by whom he may be made unclean-- whatever his uncleanness may be--</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> the person who touches any such shall be unclean until evening and shall not eat of the sacred donations unless he has washed his body in water.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> When the sun sets he shall be clean; and afterward he may eat of the sacred donations, for they are his food.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> That which died or was torn by wild animals he shall not eat, becoming unclean by it: I am the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> They shall keep my charge, so that they may not incur guilt and die in the sanctuary for having profaned it: I am the LORD; I sanctify them. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> No lay person shall eat of the sacred donations. No bound or hired servant of the priest shall eat of the sacred donations;</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> but if a priest acquires anyone by purchase, the person may eat of them; and those that are born in his house may eat of his food.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> If a priest's daughter marries a layman, she shall not eat of the offering of the sacred donations;</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> but if a priest's daughter is widowed or divorced, without offspring, and returns to her father's house, as in her youth, she may eat of her father's food. No lay person shall eat of it.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> If a man eats of the sacred donation unintentionally, he shall add one-fifth of its value to it, and give the sacred donation to the priest.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> No one shall profane the sacred donations of the people of Israel, which they offer to the LORD,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> causing them to bear guilt requiring a guilt offering, by eating their sacred donations: for I am the LORD; I sanctify them.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Speak to Aaron and his sons and all the people of Israel and say to them: When anyone of the house of Israel or of the aliens residing in Israel presents an offering, whether in payment of a vow or as a freewill offering that is offered to the LORD as a burnt offering,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> to be acceptable in your behalf it shall be a male without blemish, of the cattle or the sheep or the goats.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> You shall not offer anything that has a blemish, for it will not be acceptable in your behalf.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> When anyone offers a sacrifice of well-being to the LORD, in fulfillment of a vow or as a freewill offering, from the herd or from the flock, to be acceptable it must be perfect; there shall be no blemish in it.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Anything blind, or injured, or maimed, or having a discharge or an itch or scabs-- these you shall not offer to the LORD or put any of them on the altar as offerings by fire to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> An ox or a lamb that has a limb too long or too short you may present for a freewill offering; but it will not be accepted for a vow.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Any animal that has its testicles bruised or crushed or torn or cut, you shall not offer to the LORD; such you shall not do within your land,</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> nor shall you accept any such animals from a foreigner to offer as food to your God; since they are mutilated, with a blemish in them, they shall not be accepted in your behalf.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> The LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> When an ox or a sheep or a goat is born, it shall remain seven days with its mother, and from the eighth day on it shall be acceptable as the LORD's offering by fire.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> But you shall not slaughter, from the herd or the flock, an animal with its young on the same day.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> When you sacrifice a thanksgiving offering to the LORD, you shall sacrifice it so that it may be acceptable in your behalf.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> It shall be eaten on the same day; you shall not leave any of it until morning: I am the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Thus you shall keep my commandments and observe them: I am the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> You shall not profane my holy name, that I may be sanctified among the people of Israel: I am the LORD; I sanctify you,</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> I who brought you out of the land of Egypt to be your God: I am the LORD.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"23\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Speak to the people of Israel and say to them: These are the appointed festivals of the LORD that you shall proclaim as holy convocations, my appointed festivals.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Six days shall work be done; but the seventh day is a sabbath of complete rest, a holy convocation; you shall do no work: it is a sabbath to the LORD throughout your settlements.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> These are the appointed festivals of the LORD, the holy convocations, which you shall celebrate at the time appointed for them.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> In the first month, on the fourteenth day of the month, at twilight, there shall be a passover offering to the LORD, </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> and on the fifteenth day of the same month is the festival of unleavened bread to the LORD; seven days you shall eat unleavened bread.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> On the first day you shall have a holy convocation; you shall not work at your occupations.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> For seven days you shall present the LORD's offerings by fire; on the seventh day there shall be a holy convocation: you shall not work at your occupations.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The LORD spoke to Moses:</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Speak to the people of Israel and say to them: When you enter the land that I am giving you and you reap its harvest, you shall bring the sheaf of the first fruits of your harvest to the priest.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> He shall raise the sheaf before the LORD, that you may find acceptance; on the day after the sabbath the priest shall raise it.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> On the day when you raise the sheaf, you shall offer a lamb a year old, without blemish, as a burnt offering to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And the grain offering with it shall be two-tenths of an ephah of choice flour mixed with oil, an offering by fire of pleasing odor to the LORD; and the drink offering with it shall be of wine, one-fourth of a hin.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> You shall eat no bread or parched grain or fresh ears until that very day, until you have brought the offering of your God: it is a statute forever throughout your generations in all your settlements.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And from the day after the sabbath, from the day on which you bring the sheaf of the elevation offering, you shall count off seven weeks; they shall be complete.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> You shall count until the day after the seventh sabbath, fifty days; then you shall present an offering of new grain to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> You shall bring from your settlements two loaves of bread as an elevation offering, each made of two-tenths of an ephah; they shall be of choice flour, baked with leaven, as first fruits to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> You shall present with the bread seven lambs a year old without blemish, one young bull, and two rams; they shall be a burnt offering to the LORD, along with their grain offering and their drink offerings, an offering by fire of pleasing odor to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> You shall also offer one male goat for a sin offering, and two male lambs a year old as a sacrifice of well-being.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The priest shall raise them with the bread of the first fruits as an elevation offering before the LORD, together with the two lambs; they shall be holy to the LORD for the priest.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> On that same day you shall make proclamation; you shall hold a holy convocation; you shall not work at your occupations. This is a statute forever in all your settlements throughout your generations.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> When you reap the harvest of your land, you shall not reap to the very edges of your field, or gather the gleanings of your harvest; you shall leave them for the poor and for the alien: I am the LORD your God.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> The LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Speak to the people of Israel, saying: In the seventh month, on the first day of the month, you shall observe a day of complete rest, a holy convocation commemorated with trumpet blasts.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> You shall not work at your occupations; and you shall present the LORD's offering by fire.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> The LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Now, the tenth day of this seventh month is the day of atonement; it shall be a holy convocation for you: you shall deny yourselves and present the LORD's offering by fire; </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> and you shall do no work during that entire day; for it is a day of atonement, to make atonement on your behalf before the LORD your God.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> For anyone who does not practice self-denial during that entire day shall be cut off from the people. </VERS>\r\n\t\t\t<VERS vnumber=\"30\"> And anyone who does any work during that entire day, such a one I will destroy from the midst of the people.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> You shall do no work: it is a statute forever throughout your generations in all your settlements.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> It shall be to you a sabbath of complete rest, and you shall deny yourselves; on the ninth day of the month at evening, from evening to evening you shall keep your sabbath. </VERS>\r\n\t\t\t<VERS vnumber=\"33\"> The LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Speak to the people of Israel, saying: On the fifteenth day of this seventh month, and lasting seven days, there shall be the festival of booths to the LORD. </VERS>\r\n\t\t\t<VERS vnumber=\"35\"> The first day shall be a holy convocation; you shall not work at your occupations.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Seven days you shall present the LORD's offerings by fire; on the eighth day you shall observe a holy convocation and present the LORD's offerings by fire; it is a solemn assembly; you shall not work at your occupations.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> These are the appointed festivals of the LORD, which you shall celebrate as times of holy convocation, for presenting to the LORD offerings by fire-- burnt offerings and grain offerings, sacrifices and drink offerings, each on its proper day--</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> apart from the sabbaths of the LORD, and apart from your gifts, and apart from all your votive offerings, and apart from all your freewill offerings, which you give to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> Now, the fifteenth day of the seventh month, when you have gathered in the produce of the land, you shall keep the festival of the LORD, lasting seven days; a complete rest on the first day, and a complete rest on the eighth day.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> On the first day you shall take the fruit of majestic trees, branches of palm trees, boughs of leafy trees, and willows of the brook; and you shall rejoice before the LORD your God for seven days. </VERS>\r\n\t\t\t<VERS vnumber=\"41\"> You shall keep it as a festival to the LORD seven days in the year; you shall keep it in the seventh month as a statute forever throughout your generations.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> You shall live in booths for seven days; all that are citizens in Israel shall live in booths,</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> so that your generations may know that I made the people of Israel live in booths when I brought them out of the land of Egypt: I am the LORD your God.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> Thus Moses declared to the people of Israel the appointed festivals of the LORD.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"24\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Command the people of Israel to bring you pure oil of beaten olives for the lamp, that a light may be kept burning regularly.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Aaron shall set it up in the tent of meeting, outside the curtain of the covenant, to burn from evening to morning before the LORD regularly; it shall be a statute forever throughout your generations. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> He shall set up the lamps on the lampstand of pure gold before the LORD regularly. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> You shall take choice flour, and bake twelve loaves of it; two-tenths of an ephah shall be in each loaf.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> You shall place them in two rows, six in a row, on the table of pure gold. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> You shall put pure frankincense with each row, to be a token offering for the bread, as an offering by fire to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Every sabbath day Aaron shall set them in order before the LORD regularly as a commitment of the people of Israel, as a covenant forever.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> They shall be for Aaron and his descendants, who shall eat them in a holy place, for they are most holy portions for him from the offerings by fire to the LORD, a perpetual due.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> A man whose mother was an Israelite and whose father was an Egyptian came out among the people of Israel; and the Israelite woman's son and a certain Israelite began fighting in the camp.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The Israelite woman's son blasphemed the Name in a curse. And they brought him to Moses-- now his mother's name was Shelomith, daughter of Dibri, of the tribe of Dan--</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> and they put him in custody, until the decision of the LORD should be made clear to them.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The LORD said to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Take the blasphemer outside the camp; and let all who were within hearing lay their hands on his head, and let the whole congregation stone him.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And speak to the people of Israel, saying: Anyone who curses God shall bear the sin.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> One who blasphemes the name of the LORD shall be put to death; the whole congregation shall stone the blasphemer. Aliens as well as citizens, when they blaspheme the Name, shall be put to death.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Anyone who kills a human being shall be put to death.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Anyone who kills an animal shall make restitution for it, life for life.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Anyone who maims another shall suffer the same injury in return:</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> fracture for fracture, eye for eye, tooth for tooth; the injury inflicted is the injury to be suffered.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> One who kills an animal shall make restitution for it; but one who kills a human being shall be put to death.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> You shall have one law for the alien and for the citizen: for I am the LORD your God.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Moses spoke thus to the people of Israel; and they took the blasphemer outside the camp, and stoned him to death. The people of Israel did as the LORD had commanded Moses.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"25\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Moses on Mount Sinai, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Speak to the people of Israel and say to them: When you enter the land that I am giving you, the land shall observe a sabbath for the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Six years you shall sow your field, and six years you shall prune your vineyard, and gather in their yield;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> but in the seventh year there shall be a sabbath of complete rest for the land, a sabbath for the LORD: you shall not sow your field or prune your vineyard.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> You shall not reap the aftergrowth of your harvest or gather the grapes of your unpruned vine: it shall be a year of complete rest for the land.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> You may eat what the land yields during its sabbath-- you, your male and female slaves, your hired and your bound laborers who live with you;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> for your livestock also, and for the wild animals in your land all its yield shall be for food.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> You shall count off seven weeks of years, seven times seven years, so that the period of seven weeks of years gives forty-nine years. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then you shall have the trumpet sounded loud; on the tenth day of the seventh month-- on the day of atonement-- you shall have the trumpet sounded throughout all your land.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And you shall hallow the fiftieth year and you shall proclaim liberty throughout the land to all its inhabitants. It shall be a jubilee for you: you shall return, every one of you, to your property and every one of you to your family.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> That fiftieth year shall be a jubilee for you: you shall not sow, or reap the aftergrowth, or harvest the unpruned vines.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> For it is a jubilee; it shall be holy to you: you shall eat only what the field itself produces.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> In this year of jubilee you shall return, every one of you, to your property.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> When you make a sale to your neighbor or buy from your neighbor, you shall not cheat one another.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> When you buy from your neighbor, you shall pay only for the number of years since the jubilee; the seller shall charge you only for the remaining crop years.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> If the years are more, you shall increase the price, and if the years are fewer, you shall diminish the price; for it is a certain number of harvests that are being sold to you.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> You shall not cheat one another, but you shall fear your God; for I am the LORD your God.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> You shall observe my statutes and faithfully keep my ordinances, so that you may live on the land securely.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The land will yield its fruit, and you will eat your fill and live on it securely.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Should you ask, What shall we eat in the seventh year, if we may not sow or gather in our crop?</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> I will order my blessing for you in the sixth year, so that it will yield a crop for three years.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> When you sow in the eighth year, you will be eating from the old crop; until the ninth year, when its produce comes in, you shall eat the old.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> The land shall not be sold in perpetuity, for the land is mine; with me you are but aliens and tenants.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Throughout the land that you hold, you shall provide for the redemption of the land.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> If anyone of your kin falls into difficulty and sells a piece of property, then the next of kin shall come and redeem what the relative has sold.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> If the person has no one to redeem it, but then prospers and finds sufficient means to do so,</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> the years since its sale shall be computed and the difference shall be refunded to the person to whom it was sold, and the property shall be returned.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> But if there is not sufficient means to recover it, what was sold shall remain with the purchaser until the year of jubilee; in the jubilee it shall be released, and the property shall be returned.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> If anyone sells a dwelling house in a walled city, it may be redeemed until a year has elapsed since its sale; the right of redemption shall be one year.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> If it is not redeemed before a full year has elapsed, a house that is in a walled city shall pass in perpetuity to the purchaser, throughout the generations; it shall not be released in the jubilee.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> But houses in villages that have no walls around them shall be classed as open country; they may be redeemed, and they shall be released in the jubilee.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> As for the cities of the Levites, the Levites shall forever have the right of redemption of the houses in the cities belonging to them.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Such property as may be redeemed from the Levites-- houses sold in a city belonging to them-- shall be released in the jubilee; because the houses in the cities of the Levites are their possession among the people of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> But the open land around their cities may not be sold; for that is their possession for all time.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> If any of your kin fall into difficulty and become dependent on you, you shall support them; they shall live with you as though resident aliens. </VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Do not take interest in advance or otherwise make a profit from them, but fear your God; let them live with you.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> You shall not lend them your money at interest taken in advance, or provide them food at a profit.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> I am the LORD your God, who brought you out of the land of Egypt, to give you the land of Canaan, to be your God.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> If any who are dependent on you become so impoverished that they sell themselves to you, you shall not make them serve as slaves.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> They shall remain with you as hired or bound laborers. They shall serve with you until the year of the jubilee.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> Then they and their children with them shall be free from your authority; they shall go back to their own family and return to their ancestral property.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> For they are my servants, whom I brought out of the land of Egypt; they shall not be sold as slaves are sold.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> You shall not rule over them with harshness, but shall fear your God.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> As for the male and female slaves whom you may have, it is from the nations around you that you may acquire male and female slaves.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> You may also acquire them from among the aliens residing with you, and from their families that are with you, who have been born in your land; and they may be your property.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> You may keep them as a possession for your children after you, for them to inherit as property. These you may treat as slaves, but as for your fellow Israelites, no one shall rule over the other with harshness.</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> If resident aliens among you prosper, and if any of your kin fall into difficulty with one of them and sell themselves to an alien, or to a branch of the alien's family,</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> after they have sold themselves they shall have the right of redemption; one of their brothers may redeem them,</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> or their uncle or their uncle's son may redeem them, or anyone of their family who is of their own flesh may redeem them; or if they prosper they may redeem themselves.</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> They shall compute with the purchaser the total from the year when they sold themselves to the alien until the jubilee year; the price of the sale shall be applied to the number of years: the time they were with the owner shall be rated as the time of a hired laborer.</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> If many years remain, they shall pay for their redemption in proportion to the purchase price;</VERS>\r\n\t\t\t<VERS vnumber=\"52\"> and if few years remain until the jubilee year, they shall compute thus: according to the years involved they shall make payment for their redemption.</VERS>\r\n\t\t\t<VERS vnumber=\"53\"> As a laborer hired by the year they shall be under the alien's authority, who shall not, however, rule with harshness over them in your sight.</VERS>\r\n\t\t\t<VERS vnumber=\"54\"> And if they have not been redeemed in any of these ways, they and their children with them shall go free in the jubilee year.</VERS>\r\n\t\t\t<VERS vnumber=\"55\"> For to me the people of Israel are servants; they are my servants whom I brought out from the land of Egypt: I am the LORD your God.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"26\">\r\n\t\t\t<VERS vnumber=\"1\"> You shall make for yourselves no idols and erect no carved images or pillars, and you shall not place figured stones in your land, to worship at them; for I am the LORD your God.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> You shall keep my sabbaths and reverence my sanctuary: I am the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> If you follow my statutes and keep my commandments and observe them faithfully,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> I will give you your rains in their season, and the land shall yield its produce, and the trees of the field shall yield their fruit.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Your threshing shall overtake the vintage, and the vintage shall overtake the sowing; you shall eat your bread to the full, and live securely in your land.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And I will grant peace in the land, and you shall lie down, and no one shall make you afraid; I will remove dangerous animals from the land, and no sword shall go through your land.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> You shall give chase to your enemies, and they shall fall before you by the sword.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Five of you shall give chase to a hundred, and a hundred of you shall give chase to ten thousand; your enemies shall fall before you by the sword.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> I will look with favor upon you and make you fruitful and multiply you; and I will maintain my covenant with you.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> You shall eat old grain long stored, and you shall have to clear out the old to make way for the new.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> I will place my dwelling in your midst, and I shall not abhor you.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> And I will walk among you, and will be your God, and you shall be my people.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> I am the LORD your God who brought you out of the land of Egypt, to be their slaves no more; I have broken the bars of your yoke and made you walk erect.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But if you will not obey me, and do not observe all these commandments,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> if you spurn my statutes, and abhor my ordinances, so that you will not observe all my commandments, and you break my covenant,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> I in turn will do this to you: I will bring terror on you; consumption and fever that waste the eyes and cause life to pine away. You shall sow your seed in vain, for your enemies shall eat it.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> I will set my face against you, and you shall be struck down by your enemies; your foes shall rule over you, and you shall flee though no one pursues you.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> And if in spite of this you will not obey me, I will continue to punish you sevenfold for your sins.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> I will break your proud glory, and I will make your sky like iron and your earth like copper.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Your strength shall be spent to no purpose: your land shall not yield its produce, and the trees of the land shall not yield their fruit.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> If you continue hostile to me, and will not obey me, I will continue to plague you sevenfold for your sins.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> I will let loose wild animals against you, and they shall bereave you of your children and destroy your livestock; they shall make you few in number, and your roads shall be deserted.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> If in spite of these punishments you have not turned back to me, but continue hostile to me,</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> then I too will continue hostile to you: I myself will strike you sevenfold for your sins.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> I will bring the sword against you, executing vengeance for the covenant; and if you withdraw within your cities, I will send pestilence among you, and you shall be delivered into enemy hands.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> When I break your staff of bread, ten women shall bake your bread in a single oven, and they shall dole out your bread by weight; and though you eat, you shall not be satisfied.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> But if, despite this, you disobey me, and continue hostile to me,</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> I will continue hostile to you in fury; I in turn will punish you myself sevenfold for your sins.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> You shall eat the flesh of your sons, and you shall eat the flesh of your daughters.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> I will destroy your high places and cut down your incense altars; I will heap your carcasses on the carcasses of your idols. I will abhor you.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> I will lay your cities waste, will make your sanctuaries desolate, and I will not smell your pleasing odors.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> I will devastate the land, so that your enemies who come to settle in it shall be appalled at it.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> And you I will scatter among the nations, and I will unsheathe the sword against you; your land shall be a desolation, and your cities a waste.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Then the land shall enjoy its sabbath years as long as it lies desolate, while you are in the land of your enemies; then the land shall rest, and enjoy its sabbath years. </VERS>\r\n\t\t\t<VERS vnumber=\"35\"> As long as it lies desolate, it shall have the rest it did not have on your sabbaths when you were living on it.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> And as for those of you who survive, I will send faintness into their hearts in the lands of their enemies; the sound of a driven leaf shall put them to flight, and they shall flee as one flees from the sword, and they shall fall though no one pursues.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> They shall stumble over one another, as if to escape a sword, though no one pursues; and you shall have no power to stand against your enemies.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> You shall perish among the nations, and the land of your enemies shall devour you.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> And those of you who survive shall languish in the land of your enemies because of their iniquities; also they shall languish because of the iniquities of their ancestors.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> But if they confess their iniquity and the iniquity of their ancestors, in that they committed treachery against me and, moreover, that they continued hostile to me--</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> so that I, in turn, continued hostile to them and brought them into the land of their enemies; if then their uncircumcised heart is humbled and they make amends for their iniquity,</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> then will I remember my covenant with Jacob; I will remember also my covenant with Isaac and also my covenant with Abraham, and I will remember the land.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> For the land shall be deserted by them, and enjoy its sabbath years by lying desolate without them, while they shall make amends for their iniquity, because they dared to spurn my ordinances, and they abhorred my statutes. </VERS>\r\n\t\t\t<VERS vnumber=\"44\"> Yet for all that, when they are in the land of their enemies, I will not spurn them, or abhor them so as to destroy them utterly and break my covenant with them; for I am the LORD their God;</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> but I will remember in their favor the covenant with their ancestors whom I brought out of the land of Egypt in the sight of the nations, to be their God: I am the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> These are the statutes and ordinances and laws that the LORD established between himself and the people of Israel on Mount Sinai through Moses.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"27\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Speak to the people of Israel and say to them: When a person makes an explicit vow to the LORD concerning the equivalent for a human being,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> the equivalent for a male shall be: from twenty to sixty years of age the equivalent shall be fifty shekels of silver by the sanctuary shekel.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> If the person is a female, the equivalent is thirty shekels.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> If the age is from five to twenty years of age, the equivalent is twenty shekels for a male and ten shekels for a female.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> If the age is from one month to five years, the equivalent for a male is five shekels of silver, and for a female the equivalent is three shekels of silver.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> And if the person is sixty years old or over, then the equivalent for a male is fifteen shekels, and for a female ten shekels.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> If any cannot afford the equivalent, they shall be brought before the priest and the priest shall assess them; the priest shall assess them according to what each one making a vow can afford.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> If it concerns an animal that may be brought as an offering to the LORD, any such that may be given to the LORD shall be holy.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Another shall not be exchanged or substituted for it, either good for bad or bad for good; and if one animal is substituted for another, both that one and its substitute shall be holy.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> If it concerns any unclean animal that may not be brought as an offering to the LORD, the animal shall be presented before the priest.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The priest shall assess it: whether good or bad, according to the assessment of the priest, so it shall be.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> But if it is to be redeemed, one-fifth must be added to the assessment.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> If a person consecrates a house to the LORD, the priest shall assess it: whether good or bad, as the priest assesses it, so it shall stand.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And if the one who consecrates the house wishes to redeem it, one-fifth shall be added to its assessed value, and it shall revert to the original owner.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> If a person consecrates to the LORD any inherited landholding, its assessment shall be in accordance with its seed requirements: fifty shekels of silver to a homer of barley seed.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> If the person consecrates the field as of the year of jubilee, that assessment shall stand;</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> but if the field is consecrated after the jubilee, the priest shall compute the price for it according to the years that remain until the year of jubilee, and the assessment shall be reduced.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> And if the one who consecrates the field wishes to redeem it, then one-fifth shall be added to its assessed value, and it shall revert to the original owner;</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> but if the field is not redeemed, or if it has been sold to someone else, it shall no longer be redeemable.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> But when the field is released in the jubilee, it shall be holy to the LORD as a devoted field; it becomes the priest's holding.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> If someone consecrates to the LORD a field that has been purchased, which is not a part of the inherited landholding,</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> the priest shall compute for it the proportionate assessment up to the year of jubilee, and the assessment shall be paid as of that day, a sacred donation to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> In the year of jubilee the field shall return to the one from whom it was bought, whose holding the land is.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> All assessments shall be by the sanctuary shekel: twenty gerahs shall make a shekel.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> A firstling of animals, however, which as a firstling belongs to the LORD, cannot be consecrated by anyone; whether ox or sheep, it is the LORD's.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> If it is an unclean animal, it shall be ransomed at its assessment, with one-fifth added; if it is not redeemed, it shall be sold at its assessment.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Nothing that a person owns that has been devoted to destruction for the LORD, be it human or animal, or inherited landholding, may be sold or redeemed; every devoted thing is most holy to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> No human beings who have been devoted to destruction can be ransomed; they shall be put to death.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> All tithes from the land, whether the seed from the ground or the fruit from the tree, are the LORD's; they are holy to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> If persons wish to redeem any of their tithes, they must add one-fifth to them.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> All tithes of herd and flock, every tenth one that passes under the shepherd's staff, shall be holy to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Let no one inquire whether it is good or bad, or make substitution for it; if one makes substitution for it, then both it and the substitute shall be holy and cannot be redeemed.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> These are the commandments that the LORD gave to Moses for the people of Israel on Mount Sinai.</VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"4\" bname=\"Numbers\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Moses in the wilderness of Sinai, in the tent of meeting, on the first day of the second month, in the second year after they had come out of the land of Egypt, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Take a census of the whole congregation of Israelites, in their clans, by ancestral houses, according to the number of names, every male individually;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> from twenty years old and upward, everyone in Israel able to go to war. You and Aaron shall enroll them, company by company.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> A man from each tribe shall be with you, each man the head of his ancestral house.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> These are the names of the men who shall assist you: From Reuben, Elizur son of Shedeur.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> From Simeon, Shelumiel son of Zurishaddai.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> From Judah, Nahshon son of Amminadab.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> From Issachar, Nethanel son of Zuar.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> From Zebulun, Eliab son of Helon.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> From the sons of Joseph: from Ephraim, Elishama son of Ammihud; from Manasseh, Gamaliel son of Pedahzur.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> From Benjamin, Abidan son of Gideoni.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> From Dan, Ahiezer son of Ammishaddai.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> From Asher, Pagiel son of Ochran.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> From Gad, Eliasaph son of Deuel.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> From Naphtali, Ahira son of Enan.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> These were the ones chosen from the congregation, the leaders of their ancestral tribes, the heads of the divisions of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Moses and Aaron took these men who had been designated by name,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> and on the first day of the second month they assembled the whole congregation together. They registered themselves in their clans, by their ancestral houses, according to the number of names from twenty years old and upward, individually,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> as the LORD commanded Moses. So he enrolled them in the wilderness of Sinai.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The descendants of Reuben, Israel's firstborn, their lineage, in their clans, by their ancestral houses, according to the number of names, individually, every male from twenty years old and upward, everyone able to go to war:</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> those enrolled of the tribe of Reuben were forty-six thousand five hundred.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The descendants of Simeon, their lineage, in their clans, by their ancestral houses, those of them that were numbered, according to the number of names, individually, every male from twenty years old and upward, everyone able to go to war:</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> those enrolled of the tribe of Simeon were fifty-nine thousand three hundred.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> The descendants of Gad, their lineage, in their clans, by their ancestral houses, according to the number of the names, from twenty years old and upward, everyone able to go to war:</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> those enrolled of the tribe of Gad were forty-five thousand six hundred fifty.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> The descendants of Judah, their lineage, in their clans, by their ancestral houses, according to the number of names, from twenty years old and upward, everyone able to go to war:</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> those enrolled of the tribe of Judah were seventy-four thousand six hundred.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> The descendants of Issachar, their lineage, in their clans, by their ancestral houses, according to the number of names, from twenty years old and upward, everyone able to go to war:</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> those enrolled of the tribe of Issachar were fifty-four thousand four hundred.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> The descendants of Zebulun, their lineage, in their clans, by their ancestral houses, according to the number of names, from twenty years old and upward, everyone able to go to war:</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> those enrolled of the tribe of Zebulun were fifty-seven thousand four hundred.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> The descendants of Joseph, namely, the descendants of Ephraim, their lineage, in their clans, by their ancestral houses, according to the number of names, from twenty years old and upward, everyone able to go to war:</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> those enrolled of the tribe of Ephraim were forty thousand five hundred.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> The descendants of Manasseh, their lineage, in their clans, by their ancestral houses, according to the number of names, from twenty years old and upward, everyone able to go to war:</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> those enrolled of the tribe of Manasseh were thirty-two thousand two hundred.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> The descendants of Benjamin, their lineage, in their clans, by their ancestral houses, according to the number of names, from twenty years old and upward, everyone able to go to war:</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> those enrolled of the tribe of Benjamin were thirty-five thousand four hundred.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> The descendants of Dan, their lineage, in their clans, by their ancestral houses, according to the number of names, from twenty years old and upward, everyone able to go to war:</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> those enrolled of the tribe of Dan were sixty-two thousand seven hundred.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> The descendants of Asher, their lineage, in their clans, by their ancestral houses, according to the number of names, from twenty years old and upward, everyone able to go to war:</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> those enrolled of the tribe of Asher were forty-one thousand five hundred.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> The descendants of Naphtali, their lineage, in their clans, by their ancestral houses, according to the number of names, from twenty years old and upward, everyone able to go to war:</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> those enrolled of the tribe of Naphtali were fifty-three thousand four hundred.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> These are those who were enrolled, whom Moses and Aaron enrolled with the help of the leaders of Israel, twelve men, each representing his ancestral house.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> So the whole number of the Israelites, by their ancestral houses, from twenty years old and upward, everyone able to go to war in Israel--</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> their whole number was six hundred three thousand five hundred fifty.</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> The Levites, however, were not numbered by their ancestral tribe along with them.</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> The LORD had said to Moses:</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> Only the tribe of Levi you shall not enroll, and you shall not take a census of them with the other Israelites.</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> Rather you shall appoint the Levites over the tabernacle of the covenant, and over all its equipment, and over all that belongs to it; they are to carry the tabernacle and all its equipment, and they shall tend it, and shall camp around the tabernacle. </VERS>\r\n\t\t\t<VERS vnumber=\"51\"> When the tabernacle is to set out, the Levites shall take it down; and when the tabernacle is to be pitched, the Levites shall set it up. And any outsider who comes near shall be put to death.</VERS>\r\n\t\t\t<VERS vnumber=\"52\"> The other Israelites shall camp in their respective regimental camps, by companies;</VERS>\r\n\t\t\t<VERS vnumber=\"53\"> but the Levites shall camp around the tabernacle of the covenant, that there may be no wrath on the congregation of the Israelites; and the Levites shall perform the guard duty of the tabernacle of the covenant.</VERS>\r\n\t\t\t<VERS vnumber=\"54\"> The Israelites did so; they did just as the LORD commanded Moses.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Moses and Aaron, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The Israelites shall camp each in their respective regiments, under ensigns by their ancestral houses; they shall camp facing the tent of meeting on every side.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Those to camp on the east side toward the sunrise shall be of the regimental encampment of Judah by companies. The leader of the people of Judah shall be Nahshon son of Amminadab,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> with a company as enrolled of seventy-four thousand six hundred.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Those to camp next to him shall be the tribe of Issachar. The leader of the Issacharites shall be Nethanel son of Zuar,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> with a company as enrolled of fifty-four thousand four hundred.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then the tribe of Zebulun: The leader of the Zebulunites shall be Eliab son of Helon,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> with a company as enrolled of fifty-seven thousand four hundred.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The total enrollment of the camp of Judah, by companies, is one hundred eighty-six thousand four hundred. They shall set out first on the march.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> On the south side shall be the regimental encampment of Reuben by companies. The leader of the Reubenites shall be Elizur son of Shedeur,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> with a company as enrolled of forty-six thousand five hundred.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> And those to camp next to him shall be the tribe of Simeon. The leader of the Simeonites shall be Shelumiel son of Zurishaddai,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> with a company as enrolled of fifty-nine thousand three hundred.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then the tribe of Gad: The leader of the Gadites shall be Eliasaph son of Reuel,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> with a company as enrolled of forty-five thousand six hundred fifty.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The total enrollment of the camp of Reuben, by companies, is one hundred fifty-one thousand four hundred fifty. They shall set out second.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The tent of meeting, with the camp of the Levites, shall set out in the center of the camps; they shall set out just as they camp, each in position, by their regiments.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> On the west side shall be the regimental encampment of Ephraim by companies. The leader of the people of Ephraim shall be Elishama son of Ammihud,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> with a company as enrolled of forty thousand five hundred.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Next to him shall be the tribe of Manasseh. The leader of the people of Manasseh shall be Gamaliel son of Pedahzur,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> with a company as enrolled of thirty-two thousand two hundred.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Then the tribe of Benjamin: The leader of the Benjaminites shall be Abidan son of Gideoni,</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> with a company as enrolled of thirty-five thousand four hundred.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> The total enrollment of the camp of Ephraim, by companies, is one hundred eight thousand one hundred. They shall set out third on the march.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> On the north side shall be the regimental encampment of Dan by companies. The leader of the Danites shall be Ahiezer son of Ammishaddai,</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> with a company as enrolled of sixty-two thousand seven hundred.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Those to camp next to him shall be the tribe of Asher. The leader of the Asherites shall be Pagiel son of Ochran,</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> with a company as enrolled of forty-one thousand five hundred.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Then the tribe of Naphtali: The leader of the Naphtalites shall be Ahira son of Enan,</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> with a company as enrolled of fifty-three thousand four hundred.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> The total enrollment of the camp of Dan is one hundred fifty-seven thousand six hundred. They shall set out last, by companies. </VERS>\r\n\t\t\t<VERS vnumber=\"32\"> This was the enrollment of the Israelites by their ancestral houses; the total enrollment in the camps by their companies was six hundred three thousand five hundred fifty.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Just as the LORD had commanded Moses, the Levites were not enrolled among the other Israelites.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> The Israelites did just as the LORD had commanded Moses: They camped by regiments, and they set out the same way, everyone by clans, according to ancestral houses.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> This is the lineage of Aaron and Moses at the time when the LORD spoke with Moses on Mount Sinai.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> These are the names of the sons of Aaron: Nadab the firstborn, and Abihu, Eleazar, and Ithamar;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> these are the names of the sons of Aaron, the anointed priests, whom he ordained to minister as priests.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Nadab and Abihu died before the LORD when they offered illicit fire before the LORD in the wilderness of Sinai, and they had no children. Eleazar and Ithamar served as priests in the lifetime of their father Aaron.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then the LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Bring the tribe of Levi near, and set them before Aaron the priest, so that they may assist him.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> They shall perform duties for him and for the whole congregation in front of the tent of meeting, doing service at the tabernacle;</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> they shall be in charge of all the furnishings of the tent of meeting, and attend to the duties for the Israelites as they do service at the tabernacle.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> You shall give the Levites to Aaron and his descendants; they are unreservedly given to him from among the Israelites.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> But you shall make a register of Aaron and his descendants; it is they who shall attend to the priesthood, and any outsider who comes near shall be put to death.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then the LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> I hereby accept the Levites from among the Israelites as substitutes for all the firstborn that open the womb among the Israelites. The Levites shall be mine,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> for all the firstborn are mine; when I killed all the firstborn in the land of Egypt, I consecrated for my own all the firstborn in Israel, both human and animal; they shall be mine. I am the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then the LORD spoke to Moses in the wilderness of Sinai, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Enroll the Levites by ancestral houses and by clans. You shall enroll every male from a month old and upward.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> So Moses enrolled them according to the word of the LORD, as he was commanded.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The following were the sons of Levi, by their names: Gershon, Kohath, and Merari.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> These are the names of the sons of Gershon by their clans: Libni and Shimei.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The sons of Kohath by their clans: Amram, Izhar, Hebron, and Uzziel.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The sons of Merari by their clans: Mahli and Mushi. These are the clans of the Levites, by their ancestral houses.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> To Gershon belonged the clan of the Libnites and the clan of the Shimeites; these were the clans of the Gershonites.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Their enrollment, counting all the males from a month old and upward, was seven thousand five hundred.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> The clans of the Gershonites were to camp behind the tabernacle on the west,</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> with Eliasaph son of Lael as head of the ancestral house of the Gershonites.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> The responsibility of the sons of Gershon in the tent of meeting was to be the tabernacle, the tent with its covering, the screen for the entrance of the tent of meeting,</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> the hangings of the court, the screen for the entrance of the court that is around the tabernacle and the altar, and its cords-- all the service pertaining to these.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> To Kohath belonged the clan of the Amramites, the clan of the Izharites, the clan of the Hebronites, and the clan of the Uzzielites; these are the clans of the Kohathites.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Counting all the males, from a month old and upward, there were eight thousand six hundred, attending to the duties of the sanctuary.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> The clans of the Kohathites were to camp on the south side of the tabernacle,</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> with Elizaphan son of Uzziel as head of the ancestral house of the clans of the Kohathites.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Their responsibility was to be the ark, the table, the lampstand, the altars, the vessels of the sanctuary with which the priests minister, and the screen-- all the service pertaining to these.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Eleazar son of Aaron the priest was to be chief over the leaders of the Levites, and to have oversight of those who had charge of the sanctuary.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> To Merari belonged the clan of the Mahlites and the clan of the Mushites: these are the clans of Merari.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Their enrollment, counting all the males from a month old and upward, was six thousand two hundred.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> The head of the ancestral house of the clans of Merari was Zuriel son of Abihail; they were to camp on the north side of the tabernacle.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> The responsibility assigned to the sons of Merari was to be the frames of the tabernacle, the bars, the pillars, the bases, and all their accessories-- all the service pertaining to these;</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> also the pillars of the court all around, with their bases and pegs and cords.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Those who were to camp in front of the tabernacle on the east-- in front of the tent of meeting toward the east-- were Moses and Aaron and Aaron's sons, having charge of the rites within the sanctuary, whatever had to be done for the Israelites; and any outsider who came near was to be put to death.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> The total enrollment of the Levites whom Moses and Aaron enrolled at the commandment of the LORD, by their clans, all the males from a month old and upward, was twenty-two thousand.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> Then the LORD said to Moses: Enroll all the firstborn males of the Israelites, from a month old and upward, and count their names.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> But you shall accept the Levites for me-- I am the LORD-- as substitutes for all the firstborn among the Israelites, and the livestock of the Levites as substitutes for all the firstborn among the livestock of the Israelites.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> So Moses enrolled all the firstborn among the Israelites, as the LORD commanded him.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> The total enrollment, all the firstborn males from a month old and upward, counting the number of names, was twenty-two thousand two hundred seventy-three.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> Then the LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> Accept the Levites as substitutes for all the firstborn among the Israelites, and the livestock of the Levites as substitutes for their livestock; and the Levites shall be mine. I am the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> As the price of redemption of the two hundred seventy-three of the firstborn of the Israelites, over and above the number of the Levites,</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> you shall accept five shekels apiece, reckoning by the shekel of the sanctuary, a shekel of twenty gerahs.</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> Give to Aaron and his sons the money by which the excess number of them is redeemed.</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> So Moses took the redemption money from those who were over and above those redeemed by the Levites;</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> from the firstborn of the Israelites he took the money, one thousand three hundred sixty-five shekels, reckoned by the shekel of the sanctuary;</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> and Moses gave the redemption money to Aaron and his sons, according to the word of the LORD, as the LORD had commanded Moses.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Moses and Aaron, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Take a census of the Kohathites separate from the other Levites, by their clans and their ancestral houses,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> from thirty years old up to fifty years old, all who qualify to do work relating to the tent of meeting.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The service of the Kohathites relating to the tent of meeting concerns the most holy things.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> When the camp is to set out, Aaron and his sons shall go in and take down the screening curtain, and cover the ark of the covenant with it; </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> then they shall put on it a covering of fine leather, and spread over that a cloth all of blue, and shall put its poles in place. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Over the table of the bread of the Presence they shall spread a blue cloth, and put on it the plates, the dishes for incense, the bowls, and the flagons for the drink offering; the regular bread also shall be on it;</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> then they shall spread over them a crimson cloth, and cover it with a covering of fine leather, and shall put its poles in place. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> They shall take a blue cloth, and cover the lampstand for the light, with its lamps, its snuffers, its trays, and all the vessels for oil with which it is supplied;</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> and they shall put it with all its utensils in a covering of fine leather, and put it on the carrying frame. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Over the golden altar they shall spread a blue cloth, and cover it with a covering of fine leather, and shall put its poles in place; </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> and they shall take all the utensils of the service that are used in the sanctuary, and put them in a blue cloth, and cover them with a covering of fine leather, and put them on the carrying frame. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> They shall take away the ashes from the altar, and spread a purple cloth over it;</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> and they shall put on it all the utensils of the altar, which are used for the service there, the firepans, the forks, the shovels, and the basins, all the utensils of the altar; and they shall spread on it a covering of fine leather, and shall put its poles in place. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> When Aaron and his sons have finished covering the sanctuary and all the furnishings of the sanctuary, as the camp sets out, after that the Kohathites shall come to carry these, but they must not touch the holy things, or they will die. These are the things of the tent of meeting that the Kohathites are to carry.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Eleazar son of Aaron the priest shall have charge of the oil for the light, the fragrant incense, the regular grain offering, and the anointing oil, the oversight of all the tabernacle and all that is in it, in the sanctuary and in its utensils.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then the LORD spoke to Moses and Aaron, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> You must not let the tribe of the clans of the Kohathites be destroyed from among the Levites.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> This is how you must deal with them in order that they may live and not die when they come near to the most holy things: Aaron and his sons shall go in and assign each to a particular task or burden.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> But the Kohathites must not go in to look on the holy things even for a moment; otherwise they will die. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then the LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Take a census of the Gershonites also, by their ancestral houses and by their clans;</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> from thirty years old up to fifty years old you shall enroll them, all who qualify to do work in the tent of meeting.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> This is the service of the clans of the Gershonites, in serving and bearing burdens:</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> They shall carry the curtains of the tabernacle, and the tent of meeting with its covering, and the outer covering of fine leather that is on top of it, and the screen for the entrance of the tent of meeting, </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> and the hangings of the court, and the screen for the entrance of the gate of the court that is around the tabernacle and the altar, and their cords, and all the equipment for their service; and they shall do all that needs to be done with regard to them.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> All the service of the Gershonites shall be at the command of Aaron and his sons, in all that they are to carry, and in all that they have to do; and you shall assign to their charge all that they are to carry.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> This is the service of the clans of the Gershonites relating to the tent of meeting, and their responsibilities are to be under the oversight of Ithamar son of Aaron the priest.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> As for the Merarites, you shall enroll them by their clans and their ancestral houses;</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> from thirty years old up to fifty years old you shall enroll them, everyone who qualifies to do the work of the tent of meeting.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> This is what they are charged to carry, as the whole of their service in the tent of meeting: the frames of the tabernacle, with its bars, pillars, and bases,</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> and the pillars of the court all around with their bases, pegs, and cords, with all their equipment and all their related service; and you shall assign by name the objects that they are required to carry.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> This is the service of the clans of the Merarites, the whole of their service relating to the tent of meeting, under the hand of Ithamar son of Aaron the priest.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> So Moses and Aaron and the leaders of the congregation enrolled the Kohathites, by their clans and their ancestral houses,</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> from thirty years old up to fifty years old, everyone who qualified for work relating to the tent of meeting;</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> and their enrollment by clans was two thousand seven hundred fifty.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> This was the enrollment of the clans of the Kohathites, all who served at the tent of meeting, whom Moses and Aaron enrolled according to the commandment of the LORD by Moses.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> The enrollment of the Gershonites, by their clans and their ancestral houses,</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> from thirty years old up to fifty years old, everyone who qualified for work relating to the tent of meeting--</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> their enrollment by their clans and their ancestral houses was two thousand six hundred thirty.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> This was the enrollment of the clans of the Gershonites, all who served at the tent of meeting, whom Moses and Aaron enrolled according to the commandment of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> The enrollment of the clans of the Merarites, by their clans and their ancestral houses,</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> from thirty years old up to fifty years old, everyone who qualified for work relating to the tent of meeting--</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> their enrollment by their clans was three thousand two hundred.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> This is the enrollment of the clans of the Merarites, whom Moses and Aaron enrolled according to the commandment of the LORD by Moses.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> All those who were enrolled of the Levites, whom Moses and Aaron and the leaders of Israel enrolled, by their clans and their ancestral houses,</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> from thirty years old up to fifty years old, everyone who qualified to do the work of service and the work of bearing burdens relating to the tent of meeting,</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> their enrollment was eight thousand five hundred eighty.</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> According to the commandment of the LORD through Moses they were appointed to their several tasks of serving or carrying; thus they were enrolled by him, as the LORD commanded Moses.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"5\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Command the Israelites to put out of the camp everyone who is leprous, or has a discharge, and everyone who is unclean through contact with a corpse; </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> you shall put out both male and female, putting them outside the camp; they must not defile their camp, where I dwell among them.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The Israelites did so, putting them outside the camp; as the LORD had spoken to Moses, so the Israelites did.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Speak to the Israelites: When a man or a woman wrongs another, breaking faith with the LORD, that person incurs guilt</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> and shall confess the sin that has been committed. The person shall make full restitution for the wrong, adding one fifth to it, and giving it to the one who was wronged.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> If the injured party has no next of kin to whom restitution may be made for the wrong, the restitution for wrong shall go to the LORD for the priest, in addition to the ram of atonement with which atonement is made for the guilty party.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Among all the sacred donations of the Israelites, every gift that they bring to the priest shall be his.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The sacred donations of all are their own; whatever anyone gives to the priest shall be his.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Speak to the Israelites and say to them: If any man's wife goes astray and is unfaithful to him,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> if a man has had intercourse with her but it is hidden from her husband, so that she is undetected though she has defiled herself, and there is no witness against her since she was not caught in the act;</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> if a spirit of jealousy comes on him, and he is jealous of his wife who has defiled herself; or if a spirit of jealousy comes on him, and he is jealous of his wife, though she has not defiled herself;</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> then the man shall bring his wife to the priest. And he shall bring the offering required for her, one-tenth of an ephah of barley flour. He shall pour no oil on it and put no frankincense on it, for it is a grain offering of jealousy, a grain offering of remembrance, bringing iniquity to remembrance.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then the priest shall bring her near, and set her before the LORD;</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> the priest shall take holy water in an earthen vessel, and take some of the dust that is on the floor of the tabernacle and put it into the water.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The priest shall set the woman before the LORD, dishevel the woman's hair, and place in her hands the grain offering of remembrance, which is the grain offering of jealousy. In his own hand the priest shall have the water of bitterness that brings the curse.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Then the priest shall make her take an oath, saying, \"If no man has lain with you, if you have not turned aside to uncleanness while under your husband's authority, be immune to this water of bitterness that brings the curse.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> But if you have gone astray while under your husband's authority, if you have defiled yourself and some man other than your husband has had intercourse with you,\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> -- let the priest make the woman take the oath of the curse and say to the woman-- \"the LORD make you an execration and an oath among your people, when the LORD makes your uterus drop, your womb discharge;</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> now may this water that brings the curse enter your bowels and make your womb discharge, your uterus drop!\" And the woman shall say, \"Amen. Amen.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Then the priest shall put these curses in writing, and wash them off into the water of bitterness.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> He shall make the woman drink the water of bitterness that brings the curse, and the water that brings the curse shall enter her and cause bitter pain.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> The priest shall take the grain offering of jealousy out of the woman's hand, and shall elevate the grain offering before the LORD and bring it to the altar;</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> and the priest shall take a handful of the grain offering, as its memorial portion, and turn it into smoke on the altar, and afterward shall make the woman drink the water.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> When he has made her drink the water, then, if she has defiled herself and has been unfaithful to her husband, the water that brings the curse shall enter into her and cause bitter pain, and her womb shall discharge, her uterus drop, and the woman shall become an execration among her people.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> But if the woman has not defiled herself and is clean, then she shall be immune and be able to conceive children.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> This is the law in cases of jealousy, when a wife, while under her husband's authority, goes astray and defiles herself,</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> or when a spirit of jealousy comes on a man and he is jealous of his wife; then he shall set the woman before the LORD, and the priest shall apply this entire law to her.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> The man shall be free from iniquity, but the woman shall bear her iniquity.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"6\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Speak to the Israelites and say to them: When either men or women make a special vow, the vow of a nazirite, to separate themselves to the LORD, </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> they shall separate themselves from wine and strong drink; they shall drink no wine vinegar or other vinegar, and shall not drink any grape juice or eat grapes, fresh or dried.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> All their days as nazirites they shall eat nothing that is produced by the grapevine, not even the seeds or the skins. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> All the days of their nazirite vow no razor shall come upon the head; until the time is completed for which they separate themselves to the LORD, they shall be holy; they shall let the locks of the head grow long.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> All the days that they separate themselves to the LORD they shall not go near a corpse.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Even if their father or mother, brother or sister, should die, they may not defile themselves; because their consecration to God is upon the head.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> All their days as nazirites they are holy to the LORD. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> If someone dies very suddenly nearby, defiling the consecrated head, then they shall shave the head on the day of their cleansing; on the seventh day they shall shave it.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> On the eighth day they shall bring two turtledoves or two young pigeons to the priest at the entrance of the tent of meeting,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> and the priest shall offer one as a sin offering and the other as a burnt offering, and make atonement for them, because they incurred guilt by reason of the corpse. They shall sanctify the head that same day,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> and separate themselves to the LORD for their days as nazirites, and bring a male lamb a year old as a guilt offering. The former time shall be void, because the consecrated head was defiled. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> This is the law for the nazirites when the time of their consecration has been completed: they shall be brought to the entrance of the tent of meeting, </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> and they shall offer their gift to the LORD, one male lamb a year old without blemish as a burnt offering, one ewe lamb a year old without blemish as a sin offering, one ram without blemish as an offering of well-being,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> and a basket of unleavened bread, cakes of choice flour mixed with oil and unleavened wafers spread with oil, with their grain offering and their drink offerings.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The priest shall present them before the LORD and offer their sin offering and burnt offering,</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> and shall offer the ram as a sacrifice of well-being to the LORD, with the basket of unleavened bread; the priest also shall make the accompanying grain offering and drink offering.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then the nazirites shall shave the consecrated head at the entrance of the tent of meeting, and shall take the hair from the consecrated head and put it on the fire under the sacrifice of well-being. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The priest shall take the shoulder of the ram, when it is boiled, and one unleavened cake out of the basket, and one unleavened wafer, and shall put them in the palms of the nazirites, after they have shaved the consecrated head. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Then the priest shall elevate them as an elevation offering before the LORD; they are a holy portion for the priest, together with the breast that is elevated and the thigh that is offered. After that the nazirites may drink wine.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> This is the law for the nazirites who take a vow. Their offering to the LORD must be in accordance with the nazirite vow, apart from what else they can afford. In accordance with whatever vow they take, so they shall do, following the law for their consecration. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Speak to Aaron and his sons, saying, Thus you shall bless the Israelites: You shall say to them,</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> The LORD bless you and keep you;</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> the LORD make his face to shine upon you, and be gracious to you;</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> the LORD lift up his countenance upon you, and give you peace.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> So they shall put my name on the Israelites, and I will bless them.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"7\">\r\n\t\t\t<VERS vnumber=\"1\"> On the day when Moses had finished setting up the tabernacle, and had anointed and consecrated it with all its furnishings, and had anointed and consecrated the altar with all its utensils,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> the leaders of Israel, heads of their ancestral houses, the leaders of the tribes, who were over those who were enrolled, made offerings.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> They brought their offerings before the LORD, six covered wagons and twelve oxen, a wagon for every two of the leaders, and for each one an ox; they presented them before the tabernacle.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then the LORD said to Moses:</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Accept these from them, that they may be used in doing the service of the tent of meeting, and give them to the Levites, to each according to his service.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> So Moses took the wagons and the oxen, and gave them to the Levites.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Two wagons and four oxen he gave to the Gershonites, according to their service;</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> and four wagons and eight oxen he gave to the Merarites, according to their service, under the direction of Ithamar son of Aaron the priest.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> But to the Kohathites he gave none, because they were charged with the care of the holy things that had to be carried on the shoulders.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The leaders also presented offerings for the dedication of the altar at the time when it was anointed; the leaders presented their offering before the altar.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The LORD said to Moses: They shall present their offerings, one leader each day, for the dedication of the altar.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The one who presented his offering the first day was Nahshon son of Amminadab, of the tribe of Judah;</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> his offering was one silver plate weighing one hundred thirty shekels, one silver basin weighing seventy shekels, according to the shekel of the sanctuary, both of them full of choice flour mixed with oil for a grain offering;</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> one golden dish weighing ten shekels, full of incense;</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> one young bull, one ram, one male lamb a year old, for a burnt offering;</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> one male goat for a sin offering;</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> and for the sacrifice of well-being, two oxen, five rams, five male goats, and five male lambs a year old. This was the offering of Nahshon son of Amminadab.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> On the second day Nethanel son of Zuar, the leader of Issachar, presented an offering;</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> he presented for his offering one silver plate weighing one hundred thirty shekels, one silver basin weighing seventy shekels, according to the shekel of the sanctuary, both of them full of choice flour mixed with oil for a grain offering;</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> one golden dish weighing ten shekels, full of incense;</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> one young bull, one ram, one male lamb a year old, as a burnt offering;</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> one male goat as a sin offering;</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> and for the sacrifice of well-being, two oxen, five rams, five male goats, and five male lambs a year old. This was the offering of Nethanel son of Zuar.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> On the third day Eliab son of Helon, the leader of the Zebulunites:</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> his offering was one silver plate weighing one hundred thirty shekels, one silver basin weighing seventy shekels, according to the shekel of the sanctuary, both of them full of choice flour mixed with oil for a grain offering;</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> one golden dish weighing ten shekels, full of incense;</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> one young bull, one ram, one male lamb a year old, for a burnt offering;</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> one male goat for a sin offering;</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> and for the sacrifice of well-being, two oxen, five rams, five male goats, and five male lambs a year old. This was the offering of Eliab son of Helon.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> On the fourth day Elizur son of Shedeur, the leader of the Reubenites:</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> his offering was one silver plate weighing one hundred thirty shekels, one silver basin weighing seventy shekels, according to the shekel of the sanctuary, both of them full of choice flour mixed with oil for a grain offering;</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> one golden dish weighing ten shekels, full of incense;</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> one young bull, one ram, one male lamb a year old, for a burnt offering;</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> one male goat for a sin offering;</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> and for the sacrifice of well-being, two oxen, five rams, five male goats, and five male lambs a year old. This was the offering of Elizur son of Shedeur.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> On the fifth day Shelumiel son of Zurishaddai, the leader of the Simeonites:</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> his offering was one silver plate weighing one hundred thirty shekels, one silver basin weighing seventy shekels, according to the shekel of the sanctuary, both of them full of choice flour mixed with oil for a grain offering;</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> one golden dish weighing ten shekels, full of incense;</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> one young bull, one ram, one male lamb a year old, for a burnt offering;</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> one male goat for a sin offering;</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> and for the sacrifice of well-being, two oxen, five rams, five male goats, and five male lambs a year old. This was the offering of Shelumiel son of Zurishaddai.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> On the sixth day Eliasaph son of Deuel, the leader of the Gadites:</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> his offering was one silver plate weighing one hundred thirty shekels, one silver basin weighing seventy shekels, according to the shekel of the sanctuary, both of them full of choice flour mixed with oil for a grain offering;</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> one golden dish weighing ten shekels, full of incense;</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> one young bull, one ram, one male lamb a year old, for a burnt offering;</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> one male goat for a sin offering;</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> and for the sacrifice of well-being, two oxen, five rams, five male goats, and five male lambs a year old. This was the offering of Eliasaph son of Deuel.</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> On the seventh day Elishama son of Ammihud, the leader of the Ephraimites:</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> his offering was one silver plate weighing one hundred thirty shekels, one silver basin weighing seventy shekels, according to the shekel of the sanctuary, both of them full of choice flour mixed with oil for a grain offering;</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> one golden dish weighing ten shekels, full of incense;</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> one young bull, one ram, one male lamb a year old, for a burnt offering;</VERS>\r\n\t\t\t<VERS vnumber=\"52\"> one male goat for a sin offering;</VERS>\r\n\t\t\t<VERS vnumber=\"53\"> and for the sacrifice of well-being, two oxen, five rams, five male goats, and five male lambs a year old. This was the offering of Elishama son of Ammihud.</VERS>\r\n\t\t\t<VERS vnumber=\"54\"> On the eighth day Gamaliel son of Pedahzur, the leader of the Manassites:</VERS>\r\n\t\t\t<VERS vnumber=\"55\"> his offering was one silver plate weighing one hundred thirty shekels, one silver basin weighing seventy shekels, according to the shekel of the sanctuary, both of them full of choice flour mixed with oil for a grain offering;</VERS>\r\n\t\t\t<VERS vnumber=\"56\"> one golden dish weighing ten shekels, full of incense;</VERS>\r\n\t\t\t<VERS vnumber=\"57\"> one young bull, one ram, one male lamb a year old, for a burnt offering;</VERS>\r\n\t\t\t<VERS vnumber=\"58\"> one male goat for a sin offering;</VERS>\r\n\t\t\t<VERS vnumber=\"59\"> and for the sacrifice of well-being, two oxen, five rams, five male goats, and five male lambs a year old. This was the offering of Gamaliel son of Pedahzur.</VERS>\r\n\t\t\t<VERS vnumber=\"60\"> On the ninth day Abidan son of Gideoni, the leader of the Benjaminites:</VERS>\r\n\t\t\t<VERS vnumber=\"61\"> his offering was one silver plate weighing one hundred thirty shekels, one silver basin weighing seventy shekels, according to the shekel of the sanctuary, both of them full of choice flour mixed with oil for a grain offering;</VERS>\r\n\t\t\t<VERS vnumber=\"62\"> one golden dish weighing ten shekels, full of incense;</VERS>\r\n\t\t\t<VERS vnumber=\"63\"> one young bull, one ram, one male lamb a year old, for a burnt offering;</VERS>\r\n\t\t\t<VERS vnumber=\"64\"> one male goat for a sin offering;</VERS>\r\n\t\t\t<VERS vnumber=\"65\"> and for the sacrifice of well-being, two oxen, five rams, five male goats, and five male lambs a year old. This was the offering of Abidan son of Gideoni.</VERS>\r\n\t\t\t<VERS vnumber=\"66\"> On the tenth day Ahiezer son of Ammishaddai, the leader of the Danites:</VERS>\r\n\t\t\t<VERS vnumber=\"67\"> his offering was one silver plate weighing one hundred thirty shekels, one silver basin weighing seventy shekels, according to the shekel of the sanctuary, both of them full of choice flour mixed with oil for a grain offering;</VERS>\r\n\t\t\t<VERS vnumber=\"68\"> one golden dish weighing ten shekels, full of incense;</VERS>\r\n\t\t\t<VERS vnumber=\"69\"> one young bull, one ram, one male lamb a year old, for a burnt offering;</VERS>\r\n\t\t\t<VERS vnumber=\"70\"> one male goat for a sin offering;</VERS>\r\n\t\t\t<VERS vnumber=\"71\"> and for the sacrifice of well-being, two oxen, five rams, five male goats, and five male lambs a year old. This was the offering of Ahiezer son of Ammishaddai.</VERS>\r\n\t\t\t<VERS vnumber=\"72\"> On the eleventh day Pagiel son of Ochran, the leader of the Asherites:</VERS>\r\n\t\t\t<VERS vnumber=\"73\"> his offering was one silver plate weighing one hundred thirty shekels, one silver basin weighing seventy shekels, according to the shekel of the sanctuary, both of them full of choice flour mixed with oil for a grain offering;</VERS>\r\n\t\t\t<VERS vnumber=\"74\"> one golden dish weighing ten shekels, full of incense;</VERS>\r\n\t\t\t<VERS vnumber=\"75\"> one young bull, one ram, one male lamb a year old, for a burnt offering;</VERS>\r\n\t\t\t<VERS vnumber=\"76\"> one male goat for a sin offering;</VERS>\r\n\t\t\t<VERS vnumber=\"77\"> and for the sacrifice of well-being, two oxen, five rams, five male goats, and five male lambs a year old. This was the offering of Pagiel son of Ochran.</VERS>\r\n\t\t\t<VERS vnumber=\"78\"> On the twelfth day Ahira son of Enan, the leader of the Naphtalites:</VERS>\r\n\t\t\t<VERS vnumber=\"79\"> his offering was one silver plate weighing one hundred thirty shekels, one silver basin weighing seventy shekels, according to the shekel of the sanctuary, both of them full of choice flour mixed with oil for a grain offering;</VERS>\r\n\t\t\t<VERS vnumber=\"80\"> one golden dish weighing ten shekels, full of incense;</VERS>\r\n\t\t\t<VERS vnumber=\"81\"> one young bull, one ram, one male lamb a year old, for a burnt offering;</VERS>\r\n\t\t\t<VERS vnumber=\"82\"> one male goat for a sin offering;</VERS>\r\n\t\t\t<VERS vnumber=\"83\"> and for the sacrifice of well-being, two oxen, five rams, five male goats, and five male lambs a year old. This was the offering of Ahira son of Enan.</VERS>\r\n\t\t\t<VERS vnumber=\"84\"> This was the dedication offering for the altar, at the time when it was anointed, from the leaders of Israel: twelve silver plates, twelve silver basins, twelve golden dishes,</VERS>\r\n\t\t\t<VERS vnumber=\"85\"> each silver plate weighing one hundred thirty shekels and each basin seventy, all the silver of the vessels two thousand four hundred shekels according to the shekel of the sanctuary,</VERS>\r\n\t\t\t<VERS vnumber=\"86\"> the twelve golden dishes, full of incense, weighing ten shekels apiece according to the shekel of the sanctuary, all the gold of the dishes being one hundred twenty shekels;</VERS>\r\n\t\t\t<VERS vnumber=\"87\"> all the livestock for the burnt offering twelve bulls, twelve rams, twelve male lambs a year old, with their grain offering; and twelve male goats for a sin offering;</VERS>\r\n\t\t\t<VERS vnumber=\"88\"> and all the livestock for the sacrifice of well-being twenty-four bulls, the rams sixty, the male goats sixty, the male lambs a year old sixty. This was the dedication offering for the altar, after it was anointed.</VERS>\r\n\t\t\t<VERS vnumber=\"89\"> When Moses went into the tent of meeting to speak with the LORD, he would hear the voice speaking to him from above the mercy seat that was on the ark of the covenant from between the two cherubim; thus it spoke to him. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"8\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Speak to Aaron and say to him: When you set up the lamps, the seven lamps shall give light in front of the lampstand.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Aaron did so; he set up its lamps to give light in front of the lampstand, as the LORD had commanded Moses.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Now this was how the lampstand was made, out of hammered work of gold. From its base to its flowers, it was hammered work; according to the pattern that the LORD had shown Moses, so he made the lampstand.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Take the Levites from among the Israelites and cleanse them.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Thus you shall do to them, to cleanse them: sprinkle the water of purification on them, have them shave their whole body with a razor and wash their clothes, and so cleanse themselves.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then let them take a young bull and its grain offering of choice flour mixed with oil, and you shall take another young bull for a sin offering.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> You shall bring the Levites before the tent of meeting, and assemble the whole congregation of the Israelites.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> When you bring the Levites before the LORD, the Israelites shall lay their hands on the Levites,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> and Aaron shall present the Levites before the LORD as an elevation offering from the Israelites, that they may do the service of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The Levites shall lay their hands on the heads of the bulls, and he shall offer the one for a sin offering and the other for a burnt offering to the LORD, to make atonement for the Levites.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then you shall have the Levites stand before Aaron and his sons, and you shall present them as an elevation offering to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Thus you shall separate the Levites from among the other Israelites, and the Levites shall be mine.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Thereafter the Levites may go in to do service at the tent of meeting, once you have cleansed them and presented them as an elevation offering.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> For they are unreservedly given to me from among the Israelites; I have taken them for myself, in place of all that open the womb, the firstborn of all the Israelites.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> For all the firstborn among the Israelites are mine, both human and animal. On the day that I struck down all the firstborn in the land of Egypt I consecrated them for myself,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> but I have taken the Levites in place of all the firstborn among the Israelites.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Moreover, I have given the Levites as a gift to Aaron and his sons from among the Israelites, to do the service for the Israelites at the tent of meeting, and to make atonement for the Israelites, in order that there may be no plague among the Israelites for coming too close to the sanctuary.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Moses and Aaron and the whole congregation of the Israelites did with the Levites accordingly; the Israelites did with the Levites just as the LORD had commanded Moses concerning them.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> The Levites purified themselves from sin and washed their clothes; then Aaron presented them as an elevation offering before the LORD, and Aaron made atonement for them to cleanse them.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Thereafter the Levites went in to do their service in the tent of meeting in attendance on Aaron and his sons. As the LORD had commanded Moses concerning the Levites, so they did with them.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> The LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> This applies to the Levites: from twenty-five years old and upward they shall begin to do duty in the service of the tent of meeting;</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> and from the age of fifty years they shall retire from the duty of the service and serve no more.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> They may assist their brothers in the tent of meeting in carrying out their duties, but they shall perform no service. Thus you shall do with the Levites in assigning their duties.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"9\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Moses in the wilderness of Sinai, in the first month of the second year after they had come out of the land of Egypt, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Let the Israelites keep the passover at its appointed time.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> On the fourteenth day of this month, at twilight, you shall keep it at its appointed time; according to all its statutes and all its regulations you shall keep it. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> So Moses told the Israelites that they should keep the passover.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> They kept the passover in the first month, on the fourteenth day of the month, at twilight, in the wilderness of Sinai. Just as the LORD had commanded Moses, so the Israelites did. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Now there were certain people who were unclean through touching a corpse, so that they could not keep the passover on that day. They came before Moses and Aaron on that day,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> and said to him, \"Although we are unclean through touching a corpse, why must we be kept from presenting the LORD's offering at its appointed time among the Israelites?\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Moses spoke to them, \"Wait, so that I may hear what the LORD will command concerning you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Speak to the Israelites, saying: Anyone of you or your descendants who is unclean through touching a corpse, or is away on a journey, shall still keep the passover to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> In the second month on the fourteenth day, at twilight, they shall keep it; they shall eat it with unleavened bread and bitter herbs. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> They shall leave none of it until morning, nor break a bone of it; according to all the statute for the passover they shall keep it.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> But anyone who is clean and is not on a journey, and yet refrains from keeping the passover, shall be cut off from the people for not presenting the LORD's offering at its appointed time; such a one shall bear the consequences for the sin.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Any alien residing among you who wishes to keep the passover to the LORD shall do so according to the statute of the passover and according to its regulation; you shall have one statute for both the resident alien and the native.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> On the day the tabernacle was set up, the cloud covered the tabernacle, the tent of the covenant; and from evening until morning it was over the tabernacle, having the appearance of fire. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> It was always so: the cloud covered it by day and the appearance of fire by night. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Whenever the cloud lifted from over the tent, then the Israelites would set out; and in the place where the cloud settled down, there the Israelites would camp.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> At the command of the LORD the Israelites would set out, and at the command of the LORD they would camp. As long as the cloud rested over the tabernacle, they would remain in camp.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Even when the cloud continued over the tabernacle many days, the Israelites would keep the charge of the LORD, and would not set out.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Sometimes the cloud would remain a few days over the tabernacle, and according to the command of the LORD they would remain in camp; then according to the command of the LORD they would set out.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Sometimes the cloud would remain from evening until morning; and when the cloud lifted in the morning, they would set out, or if it continued for a day and a night, when the cloud lifted they would set out.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Whether it was two days, or a month, or a longer time, that the cloud continued over the tabernacle, resting upon it, the Israelites would remain in camp and would not set out; but when it lifted they would set out.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> At the command of the LORD they would camp, and at the command of the LORD they would set out. They kept the charge of the LORD, at the command of the LORD by Moses.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"10\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Make two silver trumpets; you shall make them of hammered work; and you shall use them for summoning the congregation, and for breaking camp.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> When both are blown, the whole congregation shall assemble before you at the entrance of the tent of meeting.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But if only one is blown, then the leaders, the heads of the tribes of Israel, shall assemble before you.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> When you blow an alarm, the camps on the east side shall set out;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> when you blow a second alarm, the camps on the south side shall set out. An alarm is to be blown whenever they are to set out.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But when the assembly is to be gathered, you shall blow, but you shall not sound an alarm.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The sons of Aaron, the priests, shall blow the trumpets; this shall be a perpetual institution for you throughout your generations.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> When you go to war in your land against the adversary who oppresses you, you shall sound an alarm with the trumpets, so that you may be remembered before the LORD your God and be saved from your enemies.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Also on your days of rejoicing, at your appointed festivals, and at the beginnings of your months, you shall blow the trumpets over your burnt offerings and over your sacrifices of well-being; they shall serve as a reminder on your behalf before the LORD your God: I am the LORD your God.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> In the second year, in the second month, on the twentieth day of the month, the cloud lifted from over the tabernacle of the covenant. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then the Israelites set out by stages from the wilderness of Sinai, and the cloud settled down in the wilderness of Paran.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> They set out for the first time at the command of the LORD by Moses.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The standard of the camp of Judah set out first, company by company, and over the whole company was Nahshon son of Amminadab.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Over the company of the tribe of Issachar was Nethanel son of Zuar;</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> and over the company of the tribe of Zebulun was Eliab son of Helon.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then the tabernacle was taken down, and the Gershonites and the Merarites, who carried the tabernacle, set out.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Next the standard of the camp of Reuben set out, company by company; and over the whole company was Elizur son of Shedeur.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Over the company of the tribe of Simeon was Shelumiel son of Zurishaddai,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> and over the company of the tribe of Gad was Eliasaph son of Deuel.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then the Kohathites, who carried the holy things, set out; and the tabernacle was set up before their arrival.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Next the standard of the Ephraimite camp set out, company by company, and over the whole company was Elishama son of Ammihud.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Over the company of the tribe of Manasseh was Gamaliel son of Pedahzur,</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> and over the company of the tribe of Benjamin was Abidan son of Gideoni.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Then the standard of the camp of Dan, acting as the rear guard of all the camps, set out, company by company, and over the whole company was Ahiezer son of Ammishaddai.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Over the company of the tribe of Asher was Pagiel son of Ochran,</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> and over the company of the tribe of Naphtali was Ahira son of Enan.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> This was the order of march of the Israelites, company by company, when they set out.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Moses said to Hobab son of Reuel the Midianite, Moses' father-in-law, \"We are setting out for the place of which the LORD said, 'I will give it to you'; come with us, and we will treat you well; for the LORD has promised good to Israel.\"</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> But he said to him, \"I will not go, but I will go back to my own land and to my kindred.\"</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> He said, \"Do not leave us, for you know where we should camp in the wilderness, and you will serve as eyes for us.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Moreover, if you go with us, whatever good the LORD does for us, the same we will do for you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> So they set out from the mount of the LORD three days' journey with the ark of the covenant of the LORD going before them three days' journey, to seek out a resting place for them,</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> the cloud of the LORD being over them by day when they set out from the camp.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Whenever the ark set out, Moses would say, \"Arise, O LORD, let your enemies be scattered, and your foes flee before you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> And whenever it came to rest, he would say, \"Return, O LORD of the ten thousand thousands of Israel.\" </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"11\">\r\n\t\t\t<VERS vnumber=\"1\"> Now when the people complained in the hearing of the LORD about their misfortunes, the LORD heard it and his anger was kindled. Then the fire of the LORD burned against them, and consumed some outlying parts of the camp.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> But the people cried out to Moses; and Moses prayed to the LORD, and the fire abated.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> So that place was called Taberah, because the fire of the LORD burned against them.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The rabble among them had a strong craving; and the Israelites also wept again, and said, \"If only we had meat to eat!</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> We remember the fish we used to eat in Egypt for nothing, the cucumbers, the melons, the leeks, the onions, and the garlic;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> but now our strength is dried up, and there is nothing at all but this manna to look at.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Now the manna was like coriander seed, and its color was like the color of gum resin.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The people went around and gathered it, ground it in mills or beat it in mortars, then boiled it in pots and made cakes of it; and the taste of it was like the taste of cakes baked with oil.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> When the dew fell on the camp in the night, the manna would fall with it.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Moses heard the people weeping throughout their families, all at the entrances of their tents. Then the LORD became very angry, and Moses was displeased.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> So Moses said to the LORD, \"Why have you treated your servant so badly? Why have I not found favor in your sight, that you lay the burden of all this people on me?</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Did I conceive all this people? Did I give birth to them, that you should say to me, 'Carry them in your bosom, as a nurse carries a sucking child,' to the land that you promised on oath to their ancestors?</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Where am I to get meat to give to all this people? For they come weeping to me and say, 'Give us meat to eat!'</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> I am not able to carry all this people alone, for they are too heavy for me.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> If this is the way you are going to treat me, put me to death at once-- if I have found favor in your sight-- and do not let me see my misery.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> So the LORD said to Moses, \"Gather for me seventy of the elders of Israel, whom you know to be the elders of the people and officers over them; bring them to the tent of meeting, and have them take their place there with you.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> I will come down and talk with you there; and I will take some of the spirit that is on you and put it on them; and they shall bear the burden of the people along with you so that you will not bear it all by yourself.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> And say to the people: Consecrate yourselves for tomorrow, and you shall eat meat; for you have wailed in the hearing of the LORD, saying, 'If only we had meat to eat! Surely it was better for us in Egypt.' Therefore the LORD will give you meat, and you shall eat.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> You shall eat not only one day, or two days, or five days, or ten days, or twenty days,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> but for a whole month-- until it comes out of your nostrils and becomes loathsome to you-- because you have rejected the LORD who is among you, and have wailed before him, saying, 'Why did we ever leave Egypt?'\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> But Moses said, \"The people I am with number six hundred thousand on foot; and you say, 'I will give them meat, that they may eat for a whole month'!</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Are there enough flocks and herds to slaughter for them? Are there enough fish in the sea to catch for them?\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> The LORD said to Moses, \"Is the LORD's power limited? Now you shall see whether my word will come true for you or not.\" </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> So Moses went out and told the people the words of the LORD; and he gathered seventy elders of the people, and placed them all around the tent.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Then the LORD came down in the cloud and spoke to him, and took some of the spirit that was on him and put it on the seventy elders; and when the spirit rested upon them, they prophesied. But they did not do so again.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Two men remained in the camp, one named Eldad, and the other named Medad, and the spirit rested on them; they were among those registered, but they had not gone out to the tent, and so they prophesied in the camp.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> And a young man ran and told Moses, \"Eldad and Medad are prophesying in the camp.\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> And Joshua son of Nun, the assistant of Moses, one of his chosen men, said, \"My lord Moses, stop them!\" </VERS>\r\n\t\t\t<VERS vnumber=\"29\"> But Moses said to him, \"Are you jealous for my sake? Would that all the LORD's people were prophets, and that the LORD would put his spirit on them!\"</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> And Moses and the elders of Israel returned to the camp.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Then a wind went out from the LORD, and it brought quails from the sea and let them fall beside the camp, about a day's journey on this side and a day's journey on the other side, all around the camp, about two cubits deep on the ground.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> So the people worked all that day and night and all the next day, gathering the quails; the least anyone gathered was ten homers; and they spread them out for themselves all around the camp.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> But while the meat was still between their teeth, before it was consumed, the anger of the LORD was kindled against the people, and the LORD struck the people with a very great plague.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> So that place was called Kibroth-hattaavah, because there they buried the people who had the craving. </VERS>\r\n\t\t\t<VERS vnumber=\"35\"> From Kibroth-hattaavah the people journeyed to Hazeroth.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"12\">\r\n\t\t\t<VERS vnumber=\"1\"> While they were at Hazeroth, Miriam and Aaron spoke against Moses because of the Cushite woman whom he had married (for he had indeed married a Cushite woman);</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> and they said, \"Has the LORD spoken only through Moses? Has he not spoken through us also?\" And the LORD heard it.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Now the man Moses was very humble, more so than anyone else on the face of the earth. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Suddenly the LORD said to Moses, Aaron, and Miriam, \"Come out, you three, to the tent of meeting.\" So the three of them came out.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then the LORD came down in a pillar of cloud, and stood at the entrance of the tent, and called Aaron and Miriam; and they both came forward.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And he said, \"Hear my words: When there are prophets among you, I the LORD make myself known to them in visions; I speak to them in dreams.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Not so with my servant Moses; he is entrusted with all my house.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> With him I speak face to face-- clearly, not in riddles; and he beholds the form of the LORD. Why then were you not afraid to speak against my servant Moses?\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> And the anger of the LORD was kindled against them, and he departed.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> When the cloud went away from over the tent, Miriam had become leprous, as white as snow. And Aaron turned towards Miriam and saw that she was leprous. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then Aaron said to Moses, \"Oh, my lord, do not punish us for a sin that we have so foolishly committed. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Do not let her be like one stillborn, whose flesh is half consumed when it comes out of its mother's womb.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And Moses cried to the LORD, \"O God, please heal her.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But the LORD said to Moses, \"If her father had but spit in her face, would she not bear her shame for seven days? Let her be shut out of the camp for seven days, and after that she may be brought in again.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> So Miriam was shut out of the camp for seven days; and the people did not set out on the march until Miriam had been brought in again.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> After that the people set out from Hazeroth, and camped in the wilderness of Paran.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"13\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD said to Moses,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"Send men to spy out the land of Canaan, which I am giving to the Israelites; from each of their ancestral tribes you shall send a man, every one a leader among them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> So Moses sent them from the wilderness of Paran, according to the command of the LORD, all of them leading men among the Israelites.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> These were their names: From the tribe of Reuben, Shammua son of Zaccur;</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> from the tribe of Simeon, Shaphat son of Hori;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> from the tribe of Judah, Caleb son of Jephunneh;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> from the tribe of Issachar, Igal son of Joseph;</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> from the tribe of Ephraim, Hoshea son of Nun;</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> from the tribe of Benjamin, Palti son of Raphu;</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> from the tribe of Zebulun, Gaddiel son of Sodi;</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> from the tribe of Joseph (that is, from the tribe of Manasseh), Gaddi son of Susi;</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> from the tribe of Dan, Ammiel son of Gemalli;</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> from the tribe of Asher, Sethur son of Michael;</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> from the tribe of Naphtali, Nahbi son of Vophsi;</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> from the tribe of Gad, Geuel son of Machi.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> These were the names of the men whom Moses sent to spy out the land. And Moses changed the name of Hoshea son of Nun to Joshua.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Moses sent them to spy out the land of Canaan, and said to them, \"Go up there into the Negeb, and go up into the hill country,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> and see what the land is like, and whether the people who live in it are strong or weak, whether they are few or many,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> and whether the land they live in is good or bad, and whether the towns that they live in are unwalled or fortified,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> and whether the land is rich or poor, and whether there are trees in it or not. Be bold, and bring some of the fruit of the land.\" Now it was the season of the first ripe grapes.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> So they went up and spied out the land from the wilderness of Zin to Rehob, near Lebo-hamath.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> They went up into the Negeb, and came to Hebron; and Ahiman, Sheshai, and Talmai, the Anakites, were there. (Hebron was built seven years before Zoan in Egypt.)</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> And they came to the Wadi Eshcol, and cut down from there a branch with a single cluster of grapes, and they carried it on a pole between two of them. They also brought some pomegranates and figs.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> That place was called the Wadi Eshcol, because of the cluster that the Israelites cut down from there. </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> At the end of forty days they returned from spying out the land.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> And they came to Moses and Aaron and to all the congregation of the Israelites in the wilderness of Paran, at Kadesh; they brought back word to them and to all the congregation, and showed them the fruit of the land.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> And they told him, \"We came to the land to which you sent us; it flows with milk and honey, and this is its fruit.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Yet the people who live in the land are strong, and the towns are fortified and very large; and besides, we saw the descendants of Anak there.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> The Amalekites live in the land of the Negeb; the Hittites, the Jebusites, and the Amorites live in the hill country; and the Canaanites live by the sea, and along the Jordan.\"</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> But Caleb quieted the people before Moses, and said, \"Let us go up at once and occupy it, for we are well able to overcome it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Then the men who had gone up with him said, \"We are not able to go up against this people, for they are stronger than we.\"</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> So they brought to the Israelites an unfavorable report of the land that they had spied out, saying, \"The land that we have gone through as spies is a land that devours its inhabitants; and all the people that we saw in it are of great size.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> There we saw the Nephilim (the Anakites come from the Nephilim); and to ourselves we seemed like grasshoppers, and so we seemed to them.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"14\">\r\n\t\t\t<VERS vnumber=\"1\"> Then all the congregation raised a loud cry, and the people wept that night.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And all the Israelites complained against Moses and Aaron; the whole congregation said to them, \"Would that we had died in the land of Egypt! Or would that we had died in this wilderness!</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Why is the LORD bringing us into this land to fall by the sword? Our wives and our little ones will become booty; would it not be better for us to go back to Egypt?\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> So they said to one another, \"Let us choose a captain, and go back to Egypt.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then Moses and Aaron fell on their faces before all the assembly of the congregation of the Israelites.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And Joshua son of Nun and Caleb son of Jephunneh, who were among those who had spied out the land, tore their clothes</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> and said to all the congregation of the Israelites, \"The land that we went through as spies is an exceedingly good land.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> If the LORD is pleased with us, he will bring us into this land and give it to us, a land that flows with milk and honey.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Only, do not rebel against the LORD; and do not fear the people of the land, for they are no more than bread for us; their protection is removed from them, and the LORD is with us; do not fear them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> But the whole congregation threatened to stone them. Then the glory of the LORD appeared at the tent of meeting to all the Israelites.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> And the LORD said to Moses, \"How long will this people despise me? And how long will they refuse to believe in me, in spite of all the signs that I have done among them?</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> I will strike them with pestilence and disinherit them, and I will make of you a nation greater and mightier than they.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> But Moses said to the LORD, \"Then the Egyptians will hear of it, for in your might you brought up this people from among them,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> and they will tell the inhabitants of this land. They have heard that you, O LORD, are in the midst of this people; for you, O LORD, are seen face to face, and your cloud stands over them and you go in front of them, in a pillar of cloud by day and in a pillar of fire by night.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Now if you kill this people all at one time, then the nations who have heard about you will say,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> 'It is because the LORD was not able to bring this people into the land he swore to give them that he has slaughtered them in the wilderness.'</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> And now, therefore, let the power of the LORD be great in the way that you promised when you spoke, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> 'The LORD is slow to anger, and abounding in steadfast love, forgiving iniquity and transgression, but by no means clearing the guilty, visiting the iniquity of the parents upon the children to the third and the fourth generation.'</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Forgive the iniquity of this people according to the greatness of your steadfast love, just as you have pardoned this people, from Egypt even until now.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Then the LORD said, \"I do forgive, just as you have asked;</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> nevertheless-- as I live, and as all the earth shall be filled with the glory of the LORD--</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> none of the people who have seen my glory and the signs that I did in Egypt and in the wilderness, and yet have tested me these ten times and have not obeyed my voice,</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> shall see the land that I swore to give to their ancestors; none of those who despised me shall see it.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> But my servant Caleb, because he has a different spirit and has followed me wholeheartedly, I will bring into the land into which he went, and his descendants shall possess it.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Now, since the Amalekites and the Canaanites live in the valleys, turn tomorrow and set out for the wilderness by the way to the Red Sea.\" </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> And the LORD spoke to Moses and to Aaron, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> How long shall this wicked congregation complain against me? I have heard the complaints of the Israelites, which they complain against me.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Say to them, \"As I live,\" says the LORD, \"I will do to you the very things I heard you say:</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> your dead bodies shall fall in this very wilderness; and of all your number, included in the census, from twenty years old and upward, who have complained against me,</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> not one of you shall come into the land in which I swore to settle you, except Caleb son of Jephunneh and Joshua son of Nun.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> But your little ones, who you said would become booty, I will bring in, and they shall know the land that you have despised.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> But as for you, your dead bodies shall fall in this wilderness.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> And your children shall be shepherds in the wilderness for forty years, and shall suffer for your faithlessness, until the last of your dead bodies lies in the wilderness.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> According to the number of the days in which you spied out the land, forty days, for every day a year, you shall bear your iniquity, forty years, and you shall know my displeasure.\"</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> I the LORD have spoken; surely I will do thus to all this wicked congregation gathered together against me: in this wilderness they shall come to a full end, and there they shall die.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> And the men whom Moses sent to spy out the land, who returned and made all the congregation complain against him by bringing a bad report about the land--</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> the men who brought an unfavorable report about the land died by a plague before the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> But Joshua son of Nun and Caleb son of Jephunneh alone remained alive, of those men who went to spy out the land.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> When Moses told these words to all the Israelites, the people mourned greatly.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> They rose early in the morning and went up to the heights of the hill country, saying, \"Here we are. We will go up to the place that the LORD has promised, for we have sinned.\"</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> But Moses said, \"Why do you continue to transgress the command of the LORD? That will not succeed.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> Do not go up, for the LORD is not with you; do not let yourselves be struck down before your enemies.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> For the Amalekites and the Canaanites will confront you there, and you shall fall by the sword; because you have turned back from following the LORD, the LORD will not be with you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> But they presumed to go up to the heights of the hill country, even though the ark of the covenant of the LORD, and Moses, had not left the camp.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> Then the Amalekites and the Canaanites who lived in that hill country came down and defeated them, pursuing them as far as Hormah.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"15\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Speak to the Israelites and say to them: When you come into the land you are to inhabit, which I am giving you,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> and you make an offering by fire to the LORD from the herd or from the flock-- whether a burnt offering or a sacrifice, to fulfill a vow or as a freewill offering or at your appointed festivals-- to make a pleasing odor for the LORD,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> then whoever presents such an offering to the LORD shall present also a grain offering, one-tenth of an ephah of choice flour, mixed with one-fourth of a hin of oil.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Moreover, you shall offer one-fourth of a hin of wine as a drink offering with the burnt offering or the sacrifice, for each lamb.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For a ram, you shall offer a grain offering, two-tenths of an ephah of choice flour mixed with one-third of a hin of oil;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> and as a drink offering you shall offer one-third of a hin of wine, a pleasing odor to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> When you offer a bull as a burnt offering or a sacrifice, to fulfill a vow or as an offering of well-being to the LORD,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> then you shall present with the bull a grain offering, three-tenths of an ephah of choice flour, mixed with half a hin of oil,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> and you shall present as a drink offering half a hin of wine, as an offering by fire, a pleasing odor to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Thus it shall be done for each ox or ram, or for each of the male lambs or the kids.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> According to the number that you offer, so you shall do with each and every one.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Every native Israelite shall do these things in this way, in presenting an offering by fire, a pleasing odor to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> An alien who lives with you, or who takes up permanent residence among you, and wishes to offer an offering by fire, a pleasing odor to the LORD, shall do as you do.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> As for the assembly, there shall be for both you and the resident alien a single statute, a perpetual statute throughout your generations; you and the alien shall be alike before the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> You and the alien who resides with you shall have the same law and the same ordinance.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Speak to the Israelites and say to them: After you come into the land to which I am bringing you,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> whenever you eat of the bread of the land, you shall present a donation to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> From your first batch of dough you shall present a loaf as a donation; you shall present it just as you present a donation from the threshing floor.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Throughout your generations you shall give to the LORD a donation from the first of your batch of dough.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> But if you unintentionally fail to observe all these commandments that the LORD has spoken to Moses--</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> everything that the LORD has commanded you by Moses, from the day the LORD gave commandment and thereafter, throughout your generations--</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> then if it was done unintentionally without the knowledge of the congregation, the whole congregation shall offer one young bull for a burnt offering, a pleasing odor to the LORD, together with its grain offering and its drink offering, according to the ordinance, and one male goat for a sin offering.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> The priest shall make atonement for all the congregation of the Israelites, and they shall be forgiven; it was unintentional, and they have brought their offering, an offering by fire to the LORD, and their sin offering before the LORD, for their error.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> All the congregation of the Israelites shall be forgiven, as well as the aliens residing among them, because the whole people was involved in the error.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> An individual who sins unintentionally shall present a female goat a year old for a sin offering.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> And the priest shall make atonement before the LORD for the one who commits an error, when it is unintentional, to make atonement for the person, who then shall be forgiven.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> For both the native among the Israelites and the alien residing among them-- you shall have the same law for anyone who acts in error.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> But whoever acts high-handedly, whether a native or an alien, affronts the LORD, and shall be cut off from among the people.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Because of having despised the word of the LORD and broken his commandment, such a person shall be utterly cut off and bear the guilt.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> When the Israelites were in the wilderness, they found a man gathering sticks on the sabbath day.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Those who found him gathering sticks brought him to Moses, Aaron, and to the whole congregation.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> They put him in custody, because it was not clear what should be done to him.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Then the LORD said to Moses, \"The man shall be put to death; all the congregation shall stone him outside the camp.\"</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> The whole congregation brought him outside the camp and stoned him to death, just as the LORD had commanded Moses.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> The LORD said to Moses:</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Speak to the Israelites, and tell them to make fringes on the corners of their garments throughout their generations and to put a blue cord on the fringe at each corner.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> You have the fringe so that, when you see it, you will remember all the commandments of the LORD and do them, and not follow the lust of your own heart and your own eyes.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> So you shall remember and do all my commandments, and you shall be holy to your God.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> I am the LORD your God, who brought you out of the land of Egypt, to be your God: I am the LORD your God.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"16\">\r\n\t\t\t<VERS vnumber=\"1\"> Now Korah son of Izhar son of Kohath son of Levi, along with Dathan and Abiram sons of Eliab, and On son of Peleth-- descendants of Reuben-- took</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> two hundred fifty Israelite men, leaders of the congregation, chosen from the assembly, well-known men, and they confronted Moses. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> They assembled against Moses and against Aaron, and said to them, \"You have gone too far! All the congregation are holy, every one of them, and the LORD is among them. So why then do you exalt yourselves above the assembly of the LORD?\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> When Moses heard it, he fell on his face.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then he said to Korah and all his company, \"In the morning the LORD will make known who is his, and who is holy, and who will be allowed to approach him; the one whom he will choose he will allow to approach him.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Do this: take censers, Korah and all your company, </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> and tomorrow put fire in them, and lay incense on them before the LORD; and the man whom the LORD chooses shall be the holy one. You Levites have gone too far!\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then Moses said to Korah, \"Hear now, you Levites!</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Is it too little for you that the God of Israel has separated you from the congregation of Israel, to allow you to approach him in order to perform the duties of the LORD's tabernacle, and to stand before the congregation and serve them?</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> He has allowed you to approach him, and all your brother Levites with you; yet you seek the priesthood as well!</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Therefore you and all your company have gathered together against the LORD. What is Aaron that you rail against him?\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Moses sent for Dathan and Abiram sons of Eliab; but they said, \"We will not come!</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Is it too little that you have brought us up out of a land flowing with milk and honey to kill us in the wilderness, that you must also lord it over us?</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> It is clear you have not brought us into a land flowing with milk and honey, or given us an inheritance of fields and vineyards. Would you put out the eyes of these men? We will not come!\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Moses was very angry and said to the LORD, \"Pay no attention to their offering. I have not taken one donkey from them, and I have not harmed any one of them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> And Moses said to Korah, \"As for you and all your company, be present tomorrow before the LORD, you and they and Aaron;</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> and let each one of you take his censer, and put incense on it, and each one of you present his censer before the LORD, two hundred fifty censers; you also, and Aaron, each his censer.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> So each man took his censer, and they put fire in the censers and laid incense on them, and they stood at the entrance of the tent of meeting with Moses and Aaron.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Then Korah assembled the whole congregation against them at the entrance of the tent of meeting. And the glory of the LORD appeared to the whole congregation.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Then the LORD spoke to Moses and to Aaron, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Separate yourselves from this congregation, so that I may consume them in a moment.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> They fell on their faces, and said, \"O God, the God of the spirits of all flesh, shall one person sin and you become angry with the whole congregation?\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> And the LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Say to the congregation: Get away from the dwellings of Korah, Dathan, and Abiram.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> So Moses got up and went to Dathan and Abiram; the elders of Israel followed him.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> He said to the congregation, \"Turn away from the tents of these wicked men, and touch nothing of theirs, or you will be swept away for all their sins.\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> So they got away from the dwellings of Korah, Dathan, and Abiram; and Dathan and Abiram came out and stood at the entrance of their tents, together with their wives, their children, and their little ones.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> And Moses said, \"This is how you shall know that the LORD has sent me to do all these works; it has not been of my own accord:</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> If these people die a natural death, or if a natural fate comes on them, then the LORD has not sent me.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> But if the LORD creates something new, and the ground opens its mouth and swallows them up, with all that belongs to them, and they go down alive into Sheol, then you shall know that these men have despised the LORD.\"</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> As soon as he finished speaking all these words, the ground under them was split apart.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> The earth opened its mouth and swallowed them up, along with their households-- everyone who belonged to Korah and all their goods.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> So they with all that belonged to them went down alive into Sheol; the earth closed over them, and they perished from the midst of the assembly.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> All Israel around them fled at their outcry, for they said, \"The earth will swallow us too!\"</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> And fire came out from the LORD and consumed the two hundred fifty men offering the incense.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Then the LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Tell Eleazar son of Aaron the priest to take the censers out of the blaze; then scatter the fire far and wide.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> For the censers of these sinners have become holy at the cost of their lives. Make them into hammered plates as a covering for the altar, for they presented them before the LORD and they became holy. Thus they shall be a sign to the Israelites.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> So Eleazar the priest took the bronze censers that had been presented by those who were burned; and they were hammered out as a covering for the altar--</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> a reminder to the Israelites that no outsider, who is not of the descendants of Aaron, shall approach to offer incense before the LORD, so as not to become like Korah and his company-- just as the LORD had said to him through Moses.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> On the next day, however, the whole congregation of the Israelites rebelled against Moses and against Aaron, saying, \"You have killed the people of the LORD.\"</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> And when the congregation had assembled against them, Moses and Aaron turned toward the tent of meeting; the cloud had covered it and the glory of the LORD appeared.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> Then Moses and Aaron came to the front of the tent of meeting,</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> and the LORD spoke to Moses, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> \"Get away from this congregation, so that I may consume them in a moment.\" And they fell on their faces.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> Moses said to Aaron, \"Take your censer, put fire on it from the altar and lay incense on it, and carry it quickly to the congregation and make atonement for them. For wrath has gone out from the LORD; the plague has begun.\"</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> So Aaron took it as Moses had ordered, and ran into the middle of the assembly, where the plague had already begun among the people. He put on the incense, and made atonement for the people.</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> He stood between the dead and the living; and the plague was stopped.</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> Those who died by the plague were fourteen thousand seven hundred, besides those who died in the affair of Korah.</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> When the plague was stopped, Aaron returned to Moses at the entrance of the tent of meeting.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"17\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Speak to the Israelites, and get twelve staffs from them, one for each ancestral house, from all the leaders of their ancestral houses. Write each man's name on his staff,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> and write Aaron's name on the staff of Levi. For there shall be one staff for the head of each ancestral house.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Place them in the tent of meeting before the covenant, where I meet with you. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> And the staff of the man whom I choose shall sprout; thus I will put a stop to the complaints of the Israelites that they continually make against you.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Moses spoke to the Israelites; and all their leaders gave him staffs, one for each leader, according to their ancestral houses, twelve staffs; and the staff of Aaron was among theirs.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> So Moses placed the staffs before the LORD in the tent of the covenant. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> When Moses went into the tent of the covenant on the next day, the staff of Aaron for the house of Levi had sprouted. It put forth buds, produced blossoms, and bore ripe almonds. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then Moses brought out all the staffs from before the LORD to all the Israelites; and they looked, and each man took his staff.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And the LORD said to Moses, \"Put back the staff of Aaron before the covenant, to be kept as a warning to rebels, so that you may make an end of their complaints against me, or else they will die.\" </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Moses did so; just as the LORD commanded him, so he did.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The Israelites said to Moses, \"We are perishing; we are lost, all of us are lost!</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Everyone who approaches the tabernacle of the LORD will die. Are we all to perish?\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"18\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD said to Aaron: You and your sons and your ancestral house with you shall bear responsibility for offenses connected with the sanctuary, while you and your sons alone shall bear responsibility for offenses connected with the priesthood.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> So bring with you also your brothers of the tribe of Levi, your ancestral tribe, in order that they may be joined to you, and serve you while you and your sons with you are in front of the tent of the covenant. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> They shall perform duties for you and for the whole tent. But they must not approach either the utensils of the sanctuary or the altar, otherwise both they and you will die.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> They are attached to you in order to perform the duties of the tent of meeting, for all the service of the tent; no outsider shall approach you.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> You yourselves shall perform the duties of the sanctuary and the duties of the altar, so that wrath may never again come upon the Israelites.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> It is I who now take your brother Levites from among the Israelites; they are now yours as a gift, dedicated to the LORD, to perform the service of the tent of meeting.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But you and your sons with you shall diligently perform your priestly duties in all that concerns the altar and the area behind the curtain. I give your priesthood as a gift; any outsider who approaches shall be put to death.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The LORD spoke to Aaron: I have given you charge of the offerings made to me, all the holy gifts of the Israelites; I have given them to you and your sons as a priestly portion due you in perpetuity.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> This shall be yours from the most holy things, reserved from the fire: every offering of theirs that they render to me as a most holy thing, whether grain offering, sin offering, or guilt offering, shall belong to you and your sons.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> As a most holy thing you shall eat it; every male may eat it; it shall be holy to you.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> This also is yours: I have given to you, together with your sons and daughters, as a perpetual due, whatever is set aside from the gifts of all the elevation offerings of the Israelites; everyone who is clean in your house may eat them.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> All the best of the oil and all the best of the wine and of the grain, the choice produce that they give to the LORD, I have given to you.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The first fruits of all that is in their land, which they bring to the LORD, shall be yours; everyone who is clean in your house may eat of it.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Every devoted thing in Israel shall be yours.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The first issue of the womb of all creatures, human and animal, which is offered to the LORD, shall be yours; but the firstborn of human beings you shall redeem, and the firstborn of unclean animals you shall redeem.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Their redemption price, reckoned from one month of age, you shall fix at five shekels of silver, according to the shekel of the sanctuary (that is, twenty gerahs).</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> But the firstborn of a cow, or the firstborn of a sheep, or the firstborn of a goat, you shall not redeem; they are holy. You shall dash their blood on the altar, and shall turn their fat into smoke as an offering by fire for a pleasing odor to the LORD;</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> but their flesh shall be yours, just as the breast that is elevated and as the right thigh are yours.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> All the holy offerings that the Israelites present to the LORD I have given to you, together with your sons and daughters, as a perpetual due; it is a covenant of salt forever before the LORD for you and your descendants as well.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Then the LORD said to Aaron: You shall have no allotment in their land, nor shall you have any share among them; I am your share and your possession among the Israelites.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> To the Levites I have given every tithe in Israel for a possession in return for the service that they perform, the service in the tent of meeting.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> From now on the Israelites shall no longer approach the tent of meeting, or else they will incur guilt and die.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> But the Levites shall perform the service of the tent of meeting, and they shall bear responsibility for their own offenses; it shall be a perpetual statute throughout your generations. But among the Israelites they shall have no allotment,</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> because I have given to the Levites as their portion the tithe of the Israelites, which they set apart as an offering to the LORD. Therefore I have said of them that they shall have no allotment among the Israelites.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Then the LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> You shall speak to the Levites, saying: When you receive from the Israelites the tithe that I have given you from them for your portion, you shall set apart an offering from it to the LORD, a tithe of the tithe.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> It shall be reckoned to you as your gift, the same as the grain of the threshing floor and the fullness of the wine press.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Thus you also shall set apart an offering to the LORD from all the tithes that you receive from the Israelites; and from them you shall give the LORD's offering to the priest Aaron.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Out of all the gifts to you, you shall set apart every offering due to the LORD; the best of all of them is the part to be consecrated.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Say also to them: When you have set apart the best of it, then the rest shall be reckoned to the Levites as produce of the threshing floor, and as produce of the wine press.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> You may eat it in any place, you and your households; for it is your payment for your service in the tent of meeting.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> You shall incur no guilt by reason of it, when you have offered the best of it. But you shall not profane the holy gifts of the Israelites, on pain of death.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"19\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Moses and Aaron, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> This is a statute of the law that the LORD has commanded: Tell the Israelites to bring you a red heifer without defect, in which there is no blemish and on which no yoke has been laid.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> You shall give it to the priest Eleazar, and it shall be taken outside the camp and slaughtered in his presence.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The priest Eleazar shall take some of its blood with his finger and sprinkle it seven times towards the front of the tent of meeting.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then the heifer shall be burned in his sight; its skin, its flesh, and its blood, with its dung, shall be burned.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The priest shall take cedarwood, hyssop, and crimson material, and throw them into the fire in which the heifer is burning.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then the priest shall wash his clothes and bathe his body in water, and afterwards he may come into the camp; but the priest shall remain unclean until evening.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The one who burns the heifer shall wash his clothes in water and bathe his body in water; he shall remain unclean until evening. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then someone who is clean shall gather up the ashes of the heifer, and deposit them outside the camp in a clean place; and they shall be kept for the congregation of the Israelites for the water for cleansing. It is a purification offering.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The one who gathers the ashes of the heifer shall wash his clothes and be unclean until evening. This shall be a perpetual statute for the Israelites and for the alien residing among them.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Those who touch the dead body of any human being shall be unclean seven days.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> They shall purify themselves with the water on the third day and on the seventh day, and so be clean; but if they do not purify themselves on the third day and on the seventh day, they will not become clean.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> All who touch a corpse, the body of a human being who has died, and do not purify themselves, defile the tabernacle of the LORD; such persons shall be cut off from Israel. Since water for cleansing was not dashed on them, they remain unclean; their uncleanness is still on them.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> This is the law when someone dies in a tent: everyone who comes into the tent, and everyone who is in the tent, shall be unclean seven days.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And every open vessel with no cover fastened on it is unclean.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Whoever in the open field touches one who has been killed by a sword, or who has died naturally, or a human bone, or a grave, shall be unclean seven days. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> For the unclean they shall take some ashes of the burnt purification offering, and running water shall be added in a vessel;</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> then a clean person shall take hyssop, dip it in the water, and sprinkle it on the tent, on all the furnishings, on the persons who were there, and on whoever touched the bone, the slain, the corpse, or the grave.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The clean person shall sprinkle the unclean ones on the third day and on the seventh day, thus purifying them on the seventh day. Then they shall wash their clothes and bathe themselves in water, and at evening they shall be clean.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Any who are unclean but do not purify themselves, those persons shall be cut off from the assembly, for they have defiled the sanctuary of the LORD. Since the water for cleansing has not been dashed on them, they are unclean.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> It shall be a perpetual statute for them. The one who sprinkles the water for cleansing shall wash his clothes, and whoever touches the water for cleansing shall be unclean until evening.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Whatever the unclean person touches shall be unclean, and anyone who touches it shall be unclean until evening.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"20\">\r\n\t\t\t<VERS vnumber=\"1\"> The Israelites, the whole congregation, came into the wilderness of Zin in the first month, and the people stayed in Kadesh. Miriam died there, and was buried there.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Now there was no water for the congregation; so they gathered together against Moses and against Aaron.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The people quarreled with Moses and said, \"Would that we had died when our kindred died before the LORD!</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Why have you brought the assembly of the LORD into this wilderness for us and our livestock to die here?</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Why have you brought us up out of Egypt, to bring us to this wretched place? It is no place for grain, or figs, or vines, or pomegranates; and there is no water to drink.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then Moses and Aaron went away from the assembly to the entrance of the tent of meeting; they fell on their faces, and the glory of the LORD appeared to them.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Take the staff, and assemble the congregation, you and your brother Aaron, and command the rock before their eyes to yield its water. Thus you shall bring water out of the rock for them; thus you shall provide drink for the congregation and their livestock.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> So Moses took the staff from before the LORD, as he had commanded him.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Moses and Aaron gathered the assembly together before the rock, and he said to them, \"Listen, you rebels, shall we bring water for you out of this rock?\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then Moses lifted up his hand and struck the rock twice with his staff; water came out abundantly, and the congregation and their livestock drank.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> But the LORD said to Moses and Aaron, \"Because you did not trust in me, to show my holiness before the eyes of the Israelites, therefore you shall not bring this assembly into the land that I have given them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> These are the waters of Meribah, where the people of Israel quarreled with the LORD, and by which he showed his holiness. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Moses sent messengers from Kadesh to the king of Edom, \"Thus says your brother Israel: You know all the adversity that has befallen us:</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> how our ancestors went down to Egypt, and we lived in Egypt a long time; and the Egyptians oppressed us and our ancestors;</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> and when we cried to the LORD, he heard our voice, and sent an angel and brought us out of Egypt; and here we are in Kadesh, a town on the edge of your territory.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Now let us pass through your land. We will not pass through field or vineyard, or drink water from any well; we will go along the King's Highway, not turning aside to the right hand or to the left until we have passed through your territory.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> But Edom said to him, \"You shall not pass through, or we will come out with the sword against you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The Israelites said to him, \"We will stay on the highway; and if we drink of your water, we and our livestock, then we will pay for it. It is only a small matter; just let us pass through on foot.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> But he said, \"You shall not pass through.\" And Edom came out against them with a large force, heavily armed.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Thus Edom refused to give Israel passage through their territory; so Israel turned away from them.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> They set out from Kadesh, and the Israelites, the whole congregation, came to Mount Hor.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Then the LORD said to Moses and Aaron at Mount Hor, on the border of the land of Edom,</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> \"Let Aaron be gathered to his people. For he shall not enter the land that I have given to the Israelites, because you rebelled against my command at the waters of Meribah.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Take Aaron and his son Eleazar, and bring them up Mount Hor;</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> strip Aaron of his vestments, and put them on his son Eleazar. But Aaron shall be gathered to his people, and shall die there.\" </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Moses did as the LORD had commanded; they went up Mount Hor in the sight of the whole congregation.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Moses stripped Aaron of his vestments, and put them on his son Eleazar; and Aaron died there on the top of the mountain. Moses and Eleazar came down from the mountain.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> When all the congregation saw that Aaron had died, all the house of Israel mourned for Aaron thirty days.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"21\">\r\n\t\t\t<VERS vnumber=\"1\"> When the Canaanite, the king of Arad, who lived in the Negeb, heard that Israel was coming by the way of Atharim, he fought against Israel and took some of them captive.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Then Israel made a vow to the LORD and said, \"If you will indeed give this people into our hands, then we will utterly destroy their towns.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The LORD listened to the voice of Israel, and handed over the Canaanites; and they utterly destroyed them and their towns; so the place was called Hormah. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> From Mount Hor they set out by the way to the Red Sea, to go around the land of Edom; but the people became impatient on the way. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The people spoke against God and against Moses, \"Why have you brought us up out of Egypt to die in the wilderness? For there is no food and no water, and we detest this miserable food.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then the LORD sent poisonous serpents among the people, and they bit the people, so that many Israelites died. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The people came to Moses and said, \"We have sinned by speaking against the LORD and against you; pray to the LORD to take away the serpents from us.\" So Moses prayed for the people.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And the LORD said to Moses, \"Make a poisonous serpent, and set it on a pole; and everyone who is bitten shall look at it and live.\" </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> So Moses made a serpent of bronze, and put it upon a pole; and whenever a serpent bit someone, that person would look at the serpent of bronze and live.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The Israelites set out, and camped in Oboth.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> They set out from Oboth, and camped at Iye-abarim, in the wilderness bordering Moab toward the sunrise.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> From there they set out, and camped in the Wadi Zered.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> From there they set out, and camped on the other side of the Arnon, in the wilderness that extends from the boundary of the Amorites; for the Arnon is the boundary of Moab, between Moab and the Amorites. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Wherefore it is said in the Book of the Wars of the LORD, \"Waheb in Suphah and the wadis. The Arnon</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> and the slopes of the wadis that extend to the seat of Ar, and lie along the border of Moab.\" </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> From there they continued to Beer; that is the well of which the LORD said to Moses, \"Gather the people together, and I will give them water.\" </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then Israel sang this song: \"Spring up, O well!-- Sing to it!--</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> the well that the leaders sank, that the nobles of the people dug, with the scepter, with the staff.\" From the wilderness to Mattanah,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> from Mattanah to Nahaliel, from Nahaliel to Bamoth,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> and from Bamoth to the valley lying in the region of Moab by the top of Pisgah that overlooks the wasteland. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then Israel sent messengers to King Sihon of the Amorites, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> \"Let me pass through your land; we will not turn aside into field or vineyard; we will not drink the water of any well; we will go by the King's Highway until we have passed through your territory.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> But Sihon would not allow Israel to pass through his territory. Sihon gathered all his people together, and went out against Israel to the wilderness; he came to Jahaz, and fought against Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Israel put him to the sword, and took possession of his land from the Arnon to the Jabbok, as far as to the Ammonites; for the boundary of the Ammonites was strong.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Israel took all these towns, and Israel settled in all the towns of the Amorites, in Heshbon, and in all its villages.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> For Heshbon was the city of King Sihon of the Amorites, who had fought against the former king of Moab and captured all his land as far as the Arnon.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Therefore the ballad singers say, \"Come to Heshbon, let it be built; let the city of Sihon be established.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> For fire came out from Heshbon, flame from the city of Sihon. It devoured Ar of Moab, and swallowed up the heights of the Arnon. </VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Woe to you, O Moab! You are undone, O people of Chemosh! He has made his sons fugitives, and his daughters captives, to an Amorite king, Sihon.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> So their posterity perished from Heshbon to Dibon, and we laid waste until fire spread to Medeba.\" </VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Thus Israel settled in the land of the Amorites.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Moses sent to spy out Jazer; and they captured its villages, and dispossessed the Amorites who were there.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Then they turned and went up the road to Bashan; and King Og of Bashan came out against them, he and all his people, to battle at Edrei.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> But the LORD said to Moses, \"Do not be afraid of him; for I have given him into your hand, with all his people, and all his land. You shall do to him as you did to King Sihon of the Amorites, who ruled in Heshbon.\"</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> So they killed him, his sons, and all his people, until there was no survivor left; and they took possession of his land.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"22\">\r\n\t\t\t<VERS vnumber=\"1\"> The Israelites set out, and camped in the plains of Moab across the Jordan from Jericho.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Now Balak son of Zippor saw all that Israel had done to the Amorites.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Moab was in great dread of the people, because they were so numerous; Moab was overcome with fear of the people of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> And Moab said to the elders of Midian, \"This horde will now lick up all that is around us, as an ox licks up the grass of the field.\" Now Balak son of Zippor was king of Moab at that time.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> He sent messengers to Balaam son of Beor at Pethor, which is on the Euphrates, in the land of Amaw, to summon him, saying, \"A people has come out of Egypt; they have spread over the face of the earth, and they have settled next to me. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Come now, curse this people for me, since they are stronger than I; perhaps I shall be able to defeat them and drive them from the land; for I know that whomever you bless is blessed, and whomever you curse is cursed.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> So the elders of Moab and the elders of Midian departed with the fees for divination in their hand; and they came to Balaam, and gave him Balak's message.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> He said to them, \"Stay here tonight, and I will bring back word to you, just as the LORD speaks to me\"; so the officials of Moab stayed with Balaam.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> God came to Balaam and said, \"Who are these men with you?\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Balaam said to God, \"King Balak son of Zippor of Moab, has sent me this message:</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> 'A people has come out of Egypt and has spread over the face of the earth; now come, curse them for me; perhaps I shall be able to fight against them and drive them out.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> God said to Balaam, \"You shall not go with them; you shall not curse the people, for they are blessed.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> So Balaam rose in the morning, and said to the officials of Balak, \"Go to your own land, for the LORD has refused to let me go with you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> So the officials of Moab rose and went to Balak, and said, \"Balaam refuses to come with us.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Once again Balak sent officials, more numerous and more distinguished than these.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> They came to Balaam and said to him, \"Thus says Balak son of Zippor: 'Do not let anything hinder you from coming to me;</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> for I will surely do you great honor, and whatever you say to me I will do; come, curse this people for me.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> But Balaam replied to the servants of Balak, \"Although Balak were to give me his house full of silver and gold, I could not go beyond the command of the LORD my God, to do less or more.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> You remain here, as the others did, so that I may learn what more the LORD may say to me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> That night God came to Balaam and said to him, \"If the men have come to summon you, get up and go with them; but do only what I tell you to do.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> So Balaam got up in the morning, saddled his donkey, and went with the officials of Moab.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> God's anger was kindled because he was going, and the angel of the LORD took his stand in the road as his adversary. Now he was riding on the donkey, and his two servants were with him.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> The donkey saw the angel of the LORD standing in the road, with a drawn sword in his hand; so the donkey turned off the road, and went into the field; and Balaam struck the donkey, to turn it back onto the road.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Then the angel of the LORD stood in a narrow path between the vineyards, with a wall on either side.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> When the donkey saw the angel of the LORD, it scraped against the wall, and scraped Balaam's foot against the wall; so he struck it again.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Then the angel of the LORD went ahead, and stood in a narrow place, where there was no way to turn either to the right or to the left.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> When the donkey saw the angel of the LORD, it lay down under Balaam; and Balaam's anger was kindled, and he struck the donkey with his staff.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Then the LORD opened the mouth of the donkey, and it said to Balaam, \"What have I done to you, that you have struck me these three times?\"</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Balaam said to the donkey, \"Because you have made a fool of me! I wish I had a sword in my hand! I would kill you right now!\"</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> But the donkey said to Balaam, \"Am I not your donkey, which you have ridden all your life to this day? Have I been in the habit of treating you this way?\" And he said, \"No.\"</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Then the LORD opened the eyes of Balaam, and he saw the angel of the LORD standing in the road, with his drawn sword in his hand; and he bowed down, falling on his face.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> The angel of the LORD said to him, \"Why have you struck your donkey these three times? I have come out as an adversary, because your way is perverse before me. </VERS>\r\n\t\t\t<VERS vnumber=\"33\"> The donkey saw me, and turned away from me these three times. If it had not turned away from me, surely just now I would have killed you and let it live.\"</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Then Balaam said to the angel of the LORD, \"I have sinned, for I did not know that you were standing in the road to oppose me. Now therefore, if it is displeasing to you, I will return home.\"</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> The angel of the LORD said to Balaam, \"Go with the men; but speak only what I tell you to speak.\" So Balaam went on with the officials of Balak.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> When Balak heard that Balaam had come, he went out to meet him at Ir-moab, on the boundary formed by the Arnon, at the farthest point of the boundary.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Balak said to Balaam, \"Did I not send to summon you? Why did you not come to me? Am I not able to honor you?\"</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Balaam said to Balak, \"I have come to you now, but do I have power to say just anything? The word God puts in my mouth, that is what I must say.\"</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> Then Balaam went with Balak, and they came to Kiriath-huzoth.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> Balak sacrificed oxen and sheep, and sent them to Balaam and to the officials who were with him.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> On the next day Balak took Balaam and brought him up to Bamoth-baal; and from there he could see part of the people of Israel. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"23\">\r\n\t\t\t<VERS vnumber=\"1\"> Then Balaam said to Balak, \"Build me seven altars here, and prepare seven bulls and seven rams for me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Balak did as Balaam had said; and Balak and Balaam offered a bull and a ram on each altar.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then Balaam said to Balak, \"Stay here beside your burnt offerings while I go aside. Perhaps the LORD will come to meet me. Whatever he shows me I will tell you.\" And he went to a bare height.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then God met Balaam; and Balaam said to him, \"I have arranged the seven altars, and have offered a bull and a ram on each altar.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The LORD put a word in Balaam's mouth, and said, \"Return to Balak, and this is what you must say.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> So he returned to Balak, who was standing beside his burnt offerings with all the officials of Moab. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then Balaam uttered his oracle, saying: \"Balak has brought me from Aram, the king of Moab from the eastern mountains: 'Come, curse Jacob for me; Come, denounce Israel!' </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> How can I curse whom God has not cursed? How can I denounce those whom the LORD has not denounced?</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> For from the top of the crags I see him, from the hills I behold him; Here is a people living alone, and not reckoning itself among the nations!</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Who can count the dust of Jacob, or number the dust-cloud of Israel? Let me die the death of the upright, and let my end be like his!\" </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then Balak said to Balaam, \"What have you done to me? I brought you to curse my enemies, but now you have done nothing but bless them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> He answered, \"Must I not take care to say what the LORD puts into my mouth?\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> So Balak said to him, \"Come with me to another place from which you may see them; you shall see only part of them, and shall not see them all; then curse them for me from there.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> So he took him to the field of Zophim, to the top of Pisgah. He built seven altars, and offered a bull and a ram on each altar.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Balaam said to Balak, \"Stand here beside your burnt offerings, while I meet the LORD over there.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The LORD met Balaam, put a word into his mouth, and said, \"Return to Balak, and this is what you shall say.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> When he came to him, he was standing beside his burnt offerings with the officials of Moab. Balak said to him, \"What has the LORD said?\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then Balaam uttered his oracle, saying: \"Rise, Balak, and hear; listen to me, O son of Zippor:</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> God is not a human being, that he should lie, or a mortal, that he should change his mind. Has he promised, and will he not do it? Has he spoken, and will he not fulfill it?</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> See, I received a command to bless; he has blessed, and I cannot revoke it.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> He has not beheld misfortune in Jacob; nor has he seen trouble in Israel. The LORD their God is with them, acclaimed as a king among them.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> God, who brings them out of Egypt, is like the horns of a wild ox for them.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Surely there is no enchantment against Jacob, no divination against Israel; now it shall be said of Jacob and Israel, 'See what God has done!'</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Look, a people rising up like a lioness, and rousing itself like a lion! It does not lie down until it has eaten the prey and drunk the blood of the slain.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Then Balak said to Balaam, \"Do not curse them at all, and do not bless them at all.\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> But Balaam answered Balak, \"Did I not tell you, 'Whatever the LORD says, that is what I must do'?\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> So Balak said to Balaam, \"Come now, I will take you to another place; perhaps it will please God that you may curse them for me from there.\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> So Balak took Balaam to the top of Peor, which overlooks the wasteland. </VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Balaam said to Balak, \"Build me seven altars here, and prepare seven bulls and seven rams for me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> So Balak did as Balaam had said, and offered a bull and a ram on each altar.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"24\">\r\n\t\t\t<VERS vnumber=\"1\"> Now Balaam saw that it pleased the LORD to bless Israel, so he did not go, as at other times, to look for omens, but set his face toward the wilderness.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Balaam looked up and saw Israel camping tribe by tribe. Then the spirit of God came upon him,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> and he uttered his oracle, saying: \"The oracle of Balaam son of Beor, the oracle of the man whose eye is clear, </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> the oracle of one who hears the words of God, who sees the vision of the Almighty, who falls down, but with eyes uncovered: </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> how fair are your tents, O Jacob, your encampments, O Israel!</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Like palm groves that stretch far away, like gardens beside a river, like aloes that the LORD has planted, like cedar trees beside the waters.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Water shall flow from his buckets, and his seed shall have abundant water, his king shall be higher than Agag, and his kingdom shall be exalted.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> God who brings him out of Egypt, is like the horns of a wild ox for him; he shall devour the nations that are his foes and break their bones. He shall strike with his arrows.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> He crouched, he lay down like a lion, and like a lioness; who will rouse him up? Blessed is everyone who blesses you, and cursed is everyone who curses you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then Balak's anger was kindled against Balaam, and he struck his hands together. Balak said to Balaam, \"I summoned you to curse my enemies, but instead you have blessed them these three times.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Now be off with you! Go home! I said, 'I will reward you richly,' but the LORD has denied you any reward.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> And Balaam said to Balak, \"Did I not tell your messengers whom you sent to me,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> 'If Balak should give me his house full of silver and gold, I would not be able to go beyond the word of the LORD, to do either good or bad of my own will; what the LORD says, that is what I will say'?</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> So now, I am going to my people; let me advise you what this people will do to your people in days to come.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> So he uttered his oracle, saying: \"The oracle of Balaam son of Beor, the oracle of the man whose eye is clear, </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> the oracle of one who hears the words of God, and knows the knowledge of the Most High, who sees the vision of the Almighty, who falls down, but with his eyes uncovered: </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> I see him, but not now; I behold him, but not near-- a star shall come out of Jacob, and a scepter shall rise out of Israel; it shall crush the borderlands of Moab, and the territory of all the Shethites.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Edom will become a possession, Seir a possession of its enemies, while Israel does valiantly. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> One out of Jacob shall rule, and destroy the survivors of Ir.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Then he looked on Amalek, and uttered his oracle, saying: \"First among the nations was Amalek, but its end is to perish forever.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then he looked on the Kenite, and uttered his oracle, saying: \"Enduring is your dwelling place, and your nest is set in the rock;</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> yet Kain is destined for burning. How long shall Asshur take you away captive?\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Again he uttered his oracle, saying: \"Alas, who shall live when God does this?</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> But ships shall come from Kittim and shall afflict Asshur and Eber; and he also shall perish forever.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Then Balaam got up and went back to his place, and Balak also went his way.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"25\">\r\n\t\t\t<VERS vnumber=\"1\"> While Israel was staying at Shittim, the people began to have sexual relations with the women of Moab.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> These invited the people to the sacrifices of their gods, and the people ate and bowed down to their gods.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Thus Israel yoked itself to the Baal of Peor, and the LORD's anger was kindled against Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The LORD said to Moses, \"Take all the chiefs of the people, and impale them in the sun before the LORD, in order that the fierce anger of the LORD may turn away from Israel.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> And Moses said to the judges of Israel, \"Each of you shall kill any of your people who have yoked themselves to the Baal of Peor.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Just then one of the Israelites came and brought a Midianite woman into his family, in the sight of Moses and in the sight of the whole congregation of the Israelites, while they were weeping at the entrance of the tent of meeting.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> When Phinehas son of Eleazar, son of Aaron the priest, saw it, he got up and left the congregation. Taking a spear in his hand,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> he went after the Israelite man into the tent, and pierced the two of them, the Israelite and the woman, through the belly. So the plague was stopped among the people of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Nevertheless those that died by the plague were twenty-four thousand.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> \"Phinehas son of Eleazar, son of Aaron the priest, has turned back my wrath from the Israelites by manifesting such zeal among them on my behalf that in my jealousy I did not consume the Israelites.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Therefore say, 'I hereby grant him my covenant of peace.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> It shall be for him and for his descendants after him a covenant of perpetual priesthood, because he was zealous for his God, and made atonement for the Israelites.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The name of the slain Israelite man, who was killed with the Midianite woman, was Zimri son of Salu, head of an ancestral house belonging to the Simeonites.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The name of the Midianite woman who was killed was Cozbi daughter of Zur, who was the head of a clan, an ancestral house in Midian.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The LORD said to Moses,</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> \"Harass the Midianites, and defeat them;</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> for they have harassed you by the trickery with which they deceived you in the affair of Peor, and in the affair of Cozbi, the daughter of a leader of Midian, their sister; she was killed on the day of the plague that resulted from Peor.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"26\">\r\n\t\t\t<VERS vnumber=\"1\"> After the plague the LORD said to Moses and to Eleazar son of Aaron the priest,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"Take a census of the whole congregation of the Israelites, from twenty years old and upward, by their ancestral houses, everyone in Israel able to go to war.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Moses and Eleazar the priest spoke with them in the plains of Moab by the Jordan opposite Jericho, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> \"Take a census of the people, from twenty years old and upward,\" as the LORD commanded Moses. The Israelites, who came out of the land of Egypt, were: </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Reuben, the firstborn of Israel. The descendants of Reuben: of Hanoch, the clan of the Hanochites; of Pallu, the clan of the Palluites;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> of Hezron, the clan of the Hezronites; of Carmi, the clan of the Carmites.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> These are the clans of the Reubenites; the number of those enrolled was forty-three thousand seven hundred thirty.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And the descendants of Pallu: Eliab.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The descendants of Eliab: Nemuel, Dathan, and Abiram. These are the same Dathan and Abiram, chosen from the congregation, who rebelled against Moses and Aaron in the company of Korah, when they rebelled against the LORD,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> and the earth opened its mouth and swallowed them up along with Korah, when that company died, when the fire devoured two hundred fifty men; and they became a warning.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Notwithstanding, the sons of Korah did not die.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The descendants of Simeon by their clans: of Nemuel, the clan of the Nemuelites; of Jamin, the clan of the Jaminites; of Jachin, the clan of the Jachinites;</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> of Zerah, the clan of the Zerahites; of Shaul, the clan of the Shaulites. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> These are the clans of the Simeonites, twenty-two thousand two hundred.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The children of Gad by their clans: of Zephon, the clan of the Zephonites; of Haggi, the clan of the Haggites; of Shuni, the clan of the Shunites;</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> of Ozni, the clan of the Oznites; of Eri, the clan of the Erites;</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> of Arod, the clan of the Arodites; of Areli, the clan of the Arelites.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> These are the clans of the Gadites: the number of those enrolled was forty thousand five hundred.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The sons of Judah: Er and Onan; Er and Onan died in the land of Canaan.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The descendants of Judah by their clans were: of Shelah, the clan of the Shelanites; of Perez, the clan of the Perezites; of Zerah, the clan of the Zerahites.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> The descendants of Perez were: of Hezron, the clan of the Hezronites; of Hamul, the clan of the Hamulites.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> These are the clans of Judah: the number of those enrolled was seventy-six thousand five hundred.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> The descendants of Issachar by their clans: of Tola, the clan of the Tolaites; of Puvah, the clan of the Punites;</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> of Jashub, the clan of the Jashubites; of Shimron, the clan of the Shimronites.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> These are the clans of Issachar: sixty-four thousand three hundred enrolled.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> The descendants of Zebulun by their clans: of Sered, the clan of the Seredites; of Elon, the clan of the Elonites; of Jahleel, the clan of the Jahleelites.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> These are the clans of the Zebulunites; the number of those enrolled was sixty thousand five hundred.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> The sons of Joseph by their clans: Manasseh and Ephraim.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> The descendants of Manasseh: of Machir, the clan of the Machirites; and Machir was the father of Gilead; of Gilead, the clan of the Gileadites.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> These are the descendants of Gilead: of Iezer, the clan of the Iezerites; of Helek, the clan of the Helekites;</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> and of Asriel, the clan of the Asrielites; and of Shechem, the clan of the Shechemites;</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> and of Shemida, the clan of the Shemidaites; and of Hepher, the clan of the Hepherites.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Now Zelophehad son of Hepher had no sons, but daughters: and the names of the daughters of Zelophehad were Mahlah, Noah, Hoglah, Milcah, and Tirzah.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> These are the clans of Manasseh; the number of those enrolled was fifty-two thousand seven hundred.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> These are the descendants of Ephraim according to their clans: of Shuthelah, the clan of the Shuthelahites; of Becher, the clan of the Becherites; of Tahan, the clan of the Tahanites.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> And these are the descendants of Shuthelah: of Eran, the clan of the Eranites.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> These are the clans of the Ephraimites: the number of those enrolled was thirty-two thousand five hundred. These are the descendants of Joseph by their clans.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> The descendants of Benjamin by their clans: of Bela, the clan of the Belaites; of Ashbel, the clan of the Ashbelites; of Ahiram, the clan of the Ahiramites;</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> of Shephupham, the clan of the Shuphamites; of Hupham, the clan of the Huphamites.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> And the sons of Bela were Ard and Naaman: of Ard, the clan of the Ardites; of Naaman, the clan of the Naamites.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> These are the descendants of Benjamin by their clans; the number of those enrolled was forty-five thousand six hundred.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> These are the descendants of Dan by their clans: of Shuham, the clan of the Shuhamites. These are the clans of Dan by their clans.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> All the clans of the Shuhamites: sixty-four thousand four hundred enrolled.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> The descendants of Asher by their families: of Imnah, the clan of the Imnites; of Ishvi, the clan of the Ishvites; of Beriah, the clan of the Beriites.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> Of the descendants of Beriah: of Heber, the clan of the Heberites; of Malchiel, the clan of the Malchielites.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> And the name of the daughter of Asher was Serah.</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> These are the clans of the Asherites: the number of those enrolled was fifty-three thousand four hundred.</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> The descendants of Naphtali by their clans: of Jahzeel, the clan of the Jahzeelites; of Guni, the clan of the Gunites;</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> of Jezer, the clan of the Jezerites; of Shillem, the clan of the Shillemites.</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> These are the Naphtalites by their clans: the number of those enrolled was forty-five thousand four hundred. </VERS>\r\n\t\t\t<VERS vnumber=\"51\"> This was the number of the Israelites enrolled: six hundred and one thousand seven hundred thirty.</VERS>\r\n\t\t\t<VERS vnumber=\"52\"> The LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"53\"> To these the land shall be apportioned for inheritance according to the number of names.</VERS>\r\n\t\t\t<VERS vnumber=\"54\"> To a large tribe you shall give a large inheritance, and to a small tribe you shall give a small inheritance; every tribe shall be given its inheritance according to its enrollment.</VERS>\r\n\t\t\t<VERS vnumber=\"55\"> But the land shall be apportioned by lot; according to the names of their ancestral tribes they shall inherit.</VERS>\r\n\t\t\t<VERS vnumber=\"56\"> Their inheritance shall be apportioned according to lot between the larger and the smaller.</VERS>\r\n\t\t\t<VERS vnumber=\"57\"> This is the enrollment of the Levites by their clans: of Gershon, the clan of the Gershonites; of Kohath, the clan of the Kohathites; of Merari, the clan of the Merarites.</VERS>\r\n\t\t\t<VERS vnumber=\"58\"> These are the clans of Levi: the clan of the Libnites, the clan of the Hebronites, the clan of the Mahlites, the clan of the Mushites, the clan of the Korahites. Now Kohath was the father of Amram.</VERS>\r\n\t\t\t<VERS vnumber=\"59\"> The name of Amram's wife was Jochebed daughter of Levi, who was born to Levi in Egypt; and she bore to Amram: Aaron, Moses, and their sister Miriam.</VERS>\r\n\t\t\t<VERS vnumber=\"60\"> To Aaron were born Nadab, Abihu, Eleazar, and Ithamar.</VERS>\r\n\t\t\t<VERS vnumber=\"61\"> But Nadab and Abihu died when they offered illicit fire before the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"62\"> The number of those enrolled was twenty-three thousand, every male one month old and up; for they were not enrolled among the Israelites because there was no allotment given to them among the Israelites.</VERS>\r\n\t\t\t<VERS vnumber=\"63\"> These were those enrolled by Moses and Eleazar the priest, who enrolled the Israelites in the plains of Moab by the Jordan opposite Jericho.</VERS>\r\n\t\t\t<VERS vnumber=\"64\"> Among these there was not one of those enrolled by Moses and Aaron the priest, who had enrolled the Israelites in the wilderness of Sinai.</VERS>\r\n\t\t\t<VERS vnumber=\"65\"> For the LORD had said of them, \"They shall die in the wilderness.\" Not one of them was left, except Caleb son of Jephunneh and Joshua son of Nun.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"27\">\r\n\t\t\t<VERS vnumber=\"1\"> Then the daughters of Zelophehad came forward. Zelophehad was son of Hepher son of Gilead son of Machir son of Manasseh son of Joseph, a member of the Manassite clans. The names of his daughters were: Mahlah, Noah, Hoglah, Milcah, and Tirzah.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> They stood before Moses, Eleazar the priest, the leaders, and all the congregation, at the entrance of the tent of meeting, and they said,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> \"Our father died in the wilderness; he was not among the company of those who gathered themselves together against the LORD in the company of Korah, but died for his own sin; and he had no sons.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Why should the name of our father be taken away from his clan because he had no son? Give to us a possession among our father's brothers.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Moses brought their case before the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And the LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The daughters of Zelophehad are right in what they are saying; you shall indeed let them possess an inheritance among their father's brothers and pass the inheritance of their father on to them.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> You shall also say to the Israelites, \"If a man dies, and has no son, then you shall pass his inheritance on to his daughter.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> If he has no daughter, then you shall give his inheritance to his brothers.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> If he has no brothers, then you shall give his inheritance to his father's brothers.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> And if his father has no brothers, then you shall give his inheritance to the nearest kinsman of his clan, and he shall possess it. It shall be for the Israelites a statute and ordinance, as the LORD commanded Moses.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The LORD said to Moses, \"Go up this mountain of the Abarim range, and see the land that I have given to the Israelites.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> When you have seen it, you also shall be gathered to your people, as your brother Aaron was,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> because you rebelled against my word in the wilderness of Zin when the congregation quarreled with me. You did not show my holiness before their eyes at the waters.\" (These are the waters of Meribath-kadesh in the wilderness of Zin.) </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Moses spoke to the LORD, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> \"Let the LORD, the God of the spirits of all flesh, appoint someone over the congregation</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> who shall go out before them and come in before them, who shall lead them out and bring them in, so that the congregation of the LORD may not be like sheep without a shepherd.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> So the LORD said to Moses, \"Take Joshua son of Nun, a man in whom is the spirit, and lay your hand upon him;</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> have him stand before Eleazar the priest and all the congregation, and commission him in their sight.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> You shall give him some of your authority, so that all the congregation of the Israelites may obey.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> But he shall stand before Eleazar the priest, who shall inquire for him by the decision of the Urim before the LORD; at his word they shall go out, and at his word they shall come in, both he and all the Israelites with him, the whole congregation.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> So Moses did as the LORD commanded him. He took Joshua and had him stand before Eleazar the priest and the whole congregation;</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> he laid his hands on him and commissioned him-- as the LORD had directed through Moses.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"28\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Command the Israelites, and say to them: My offering, the food for my offerings by fire, my pleasing odor, you shall take care to offer to me at its appointed time.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And you shall say to them, This is the offering by fire that you shall offer to the LORD: two male lambs a year old without blemish, daily, as a regular offering.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> One lamb you shall offer in the morning, and the other lamb you shall offer at twilight </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> also one-tenth of an ephah of choice flour for a grain offering, mixed with one-fourth of a hin of beaten oil.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> It is a regular burnt offering, ordained at Mount Sinai for a pleasing odor, an offering by fire to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Its drink offering shall be one-fourth of a hin for each lamb; in the sanctuary you shall pour out a drink offering of strong drink to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The other lamb you shall offer at twilight with a grain offering and a drink offering like the one in the morning; you shall offer it as an offering by fire, a pleasing odor to the LORD. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> On the sabbath day: two male lambs a year old without blemish, and two-tenths of an ephah of choice flour for a grain offering, mixed with oil, and its drink offering--</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> this is the burnt offering for every sabbath, in addition to the regular burnt offering and its drink offering.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> At the beginnings of your months you shall offer a burnt offering to the LORD: two young bulls, one ram, seven male lambs a year old without blemish;</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> also three-tenths of an ephah of choice flour for a grain offering, mixed with oil, for each bull; and two-tenths of choice flour for a grain offering, mixed with oil, for the one ram;</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> and one-tenth of choice flour mixed with oil as a grain offering for every lamb-- a burnt offering of pleasing odor, an offering by fire to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Their drink offerings shall be half a hin of wine for a bull, one-third of a hin for a ram, and one-fourth of a hin for a lamb. This is the burnt offering of every month throughout the months of the year.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And there shall be one male goat for a sin offering to the LORD; it shall be offered in addition to the regular burnt offering and its drink offering.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> On the fourteenth day of the first month there shall be a passover offering to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> And on the fifteenth day of this month is a festival; seven days shall unleavened bread be eaten.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> On the first day there shall be a holy convocation. You shall not work at your occupations.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> You shall offer an offering by fire, a burnt offering to the LORD: two young bulls, one ram, and seven male lambs a year old; see that they are without blemish.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Their grain offering shall be of choice flour mixed with oil: three-tenths of an ephah shall you offer for a bull, and two-tenths for a ram;</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> one-tenth shall you offer for each of the seven lambs;</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> also one male goat for a sin offering, to make atonement for you.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> You shall offer these in addition to the burnt offering of the morning, which belongs to the regular burnt offering.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> In the same way you shall offer daily, for seven days, the food of an offering by fire, a pleasing odor to the LORD; it shall be offered in addition to the regular burnt offering and its drink offering.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> And on the seventh day you shall have a holy convocation; you shall not work at your occupations.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> On the day of the first fruits, when you offer a grain offering of new grain to the LORD at your festival of weeks, you shall have a holy convocation; you shall not work at your occupations.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> You shall offer a burnt offering, a pleasing odor to the LORD: two young bulls, one ram, seven male lambs a year old.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Their grain offering shall be of choice flour mixed with oil, three-tenths of an ephah for each bull, two-tenths for one ram,</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> one-tenth for each of the seven lambs;</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> with one male goat, to make atonement for you.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> In addition to the regular burnt offering with its grain offering, you shall offer them and their drink offering. They shall be without blemish.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"29\">\r\n\t\t\t<VERS vnumber=\"1\"> On the first day of the seventh month you shall have a holy convocation; you shall not work at your occupations. It is a day for you to blow the trumpets,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> and you shall offer a burnt offering, a pleasing odor to the LORD: one young bull, one ram, seven male lambs a year old without blemish.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Their grain offering shall be of choice flour mixed with oil, three-tenths of one ephah for the bull, two-tenths for the ram,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> and one-tenth for each of the seven lambs;</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> with one male goat for a sin offering, to make atonement for you.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> These are in addition to the burnt offering of the new moon and its grain offering, and the regular burnt offering and its grain offering, and their drink offerings, according to the ordinance for them, a pleasing odor, an offering by fire to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> On the tenth day of this seventh month you shall have a holy convocation, and deny yourselves; you shall do no work. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> You shall offer a burnt offering to the LORD, a pleasing odor: one young bull, one ram, seven male lambs a year old. They shall be without blemish.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Their grain offering shall be of choice flour mixed with oil, three-tenths of an ephah for the bull, two-tenths for the one ram,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> one-tenth for each of the seven lambs;</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> with one male goat for a sin offering, in addition to the sin offering of atonement, and the regular burnt offering and its grain offering, and their drink offerings.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> On the fifteenth day of the seventh month you shall have a holy convocation; you shall not work at your occupations. You shall celebrate a festival to the LORD seven days.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> You shall offer a burnt offering, an offering by fire, a pleasing odor to the LORD: thirteen young bulls, two rams, fourteen male lambs a year old. They shall be without blemish.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Their grain offering shall be of choice flour mixed with oil, three-tenths of an ephah for each of the thirteen bulls, two-tenths for each of the two rams,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> and one-tenth for each of the fourteen lambs;</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> also one male goat for a sin offering, in addition to the regular burnt offering, its grain offering and its drink offering.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> On the second day: twelve young bulls, two rams, fourteen male lambs a year old without blemish,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> with the grain offering and the drink offerings for the bulls, for the rams, and for the lambs, as prescribed in accordance with their number;</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> also one male goat for a sin offering, in addition to the regular burnt offering and its grain offering, and their drink offerings.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> On the third day: eleven bulls, two rams, fourteen male lambs a year old without blemish,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> with the grain offering and the drink offerings for the bulls, for the rams, and for the lambs, as prescribed in accordance with their number;</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> also one male goat for a sin offering, in addition to the regular burnt offering and its grain offering and its drink offering.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> On the fourth day: ten bulls, two rams, fourteen male lambs a year old without blemish,</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> with the grain offering and the drink offerings for the bulls, for the rams, and for the lambs, as prescribed in accordance with their number;</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> also one male goat for a sin offering, in addition to the regular burnt offering, its grain offering and its drink offering.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> On the fifth day: nine bulls, two rams, fourteen male lambs a year old without blemish,</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> with the grain offering and the drink offerings for the bulls, for the rams, and for the lambs, as prescribed in accordance with their number;</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> also one male goat for a sin offering, in addition to the regular burnt offering and its grain offering and its drink offering.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> On the sixth day: eight bulls, two rams, fourteen male lambs a year old without blemish,</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> with the grain offering and the drink offerings for the bulls, for the rams, and for the lambs, as prescribed in accordance with their number;</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> also one male goat for a sin offering, in addition to the regular burnt offering, its grain offering, and its drink offerings.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> On the seventh day: seven bulls, two rams, fourteen male lambs a year old without blemish,</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> with the grain offering and the drink offerings for the bulls, for the rams, and for the lambs, as prescribed in accordance with their number;</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> also one male goat for a sin offering, besides the regular burnt offering, its grain offering, and its drink offering.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> On the eighth day you shall have a solemn assembly; you shall not work at your occupations.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> You shall offer a burnt offering, an offering by fire, a pleasing odor to the LORD: one bull, one ram, seven male lambs a year old without blemish,</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> and the grain offering and the drink offerings for the bull, for the ram, and for the lambs, as prescribed in accordance with their number;</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> also one male goat for a sin offering, in addition to the regular burnt offering and its grain offering and its drink offering.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> These you shall offer to the LORD at your appointed festivals, in addition to your votive offerings and your freewill offerings, as your burnt offerings, your grain offerings, your drink offerings, and your offerings of well-being.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> So Moses told the Israelites everything just as the LORD had commanded Moses.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"30\">\r\n\t\t\t<VERS vnumber=\"1\"> Then Moses said to the heads of the tribes of the Israelites: This is what the LORD has commanded.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> When a man makes a vow to the LORD, or swears an oath to bind himself by a pledge, he shall not break his word; he shall do according to all that proceeds out of his mouth.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> When a woman makes a vow to the LORD, or binds herself by a pledge, while within her father's house, in her youth,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> and her father hears of her vow or her pledge by which she has bound herself, and says nothing to her; then all her vows shall stand, and any pledge by which she has bound herself shall stand.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> But if her father expresses disapproval to her at the time that he hears of it, no vow of hers, and no pledge by which she has bound herself, shall stand; and the LORD will forgive her, because her father had expressed to her his disapproval.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> If she marries, while obligated by her vows or any thoughtless utterance of her lips by which she has bound herself,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> and her husband hears of it and says nothing to her at the time that he hears, then her vows shall stand, and her pledges by which she has bound herself shall stand.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But if, at the time that her husband hears of it, he expresses disapproval to her, then he shall nullify the vow by which she was obligated, or the thoughtless utterance of her lips, by which she bound herself; and the LORD will forgive her.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> (But every vow of a widow or of a divorced woman, by which she has bound herself, shall be binding upon her.)</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And if she made a vow in her husband's house, or bound herself by a pledge with an oath,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> and her husband heard it and said nothing to her, and did not express disapproval to her, then all her vows shall stand, and any pledge by which she bound herself shall stand.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> But if her husband nullifies them at the time that he hears them, then whatever proceeds out of her lips concerning her vows, or concerning her pledge of herself, shall not stand. Her husband has nullified them, and the LORD will forgive her.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Any vow or any binding oath to deny herself, her husband may allow to stand, or her husband may nullify. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But if her husband says nothing to her from day to day, then he validates all her vows, or all her pledges, by which she is obligated; he has validated them, because he said nothing to her at the time that he heard of them. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> But if he nullifies them some time after he has heard of them, then he shall bear her guilt.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> These are the statutes that the LORD commanded Moses concerning a husband and his wife, and a father and his daughter while she is still young and in her father's house.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"31\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Moses, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"Avenge the Israelites on the Midianites; afterward you shall be gathered to your people.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> So Moses said to the people, \"Arm some of your number for the war, so that they may go against Midian, to execute the LORD's vengeance on Midian.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> You shall send a thousand from each of the tribes of Israel to the war.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> So out of the thousands of Israel, a thousand from each tribe were conscripted, twelve thousand armed for battle.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Moses sent them to the war, a thousand from each tribe, along with Phinehas son of Eleazar the priest, with the vessels of the sanctuary and the trumpets for sounding the alarm in his hand. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> They did battle against Midian, as the LORD had commanded Moses, and killed every male.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> They killed the kings of Midian: Evi, Rekem, Zur, Hur, and Reba, the five kings of Midian, in addition to others who were slain by them; and they also killed Balaam son of Beor with the sword.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The Israelites took the women of Midian and their little ones captive; and they took all their cattle, their flocks, and all their goods as booty.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> All their towns where they had settled, and all their encampments, they burned,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> but they took all the spoil and all the booty, both people and animals.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then they brought the captives and the booty and the spoil to Moses, to Eleazar the priest, and to the congregation of the Israelites, at the camp on the plains of Moab by the Jordan at Jericho.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Moses, Eleazar the priest, and all the leaders of the congregation went to meet them outside the camp.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Moses became angry with the officers of the army, the commanders of thousands and the commanders of hundreds, who had come from service in the war.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Moses said to them, \"Have you allowed all the women to live?</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> These women here, on Balaam's advice, made the Israelites act treacherously against the LORD in the affair of Peor, so that the plague came among the congregation of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Now therefore, kill every male among the little ones, and kill every woman who has known a man by sleeping with him.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> But all the young girls who have not known a man by sleeping with him, keep alive for yourselves.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Camp outside the camp seven days; whoever of you has killed any person or touched a corpse, purify yourselves and your captives on the third and on the seventh day.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> You shall purify every garment, every article of skin, everything made of goats' hair, and every article of wood.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Eleazar the priest said to the troops who had gone to battle: \"This is the statute of the law that the LORD has commanded Moses:</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> gold, silver, bronze, iron, tin, and lead--</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> everything that can withstand fire, shall be passed through fire, and it shall be clean. Nevertheless it shall also be purified with the water for purification; and whatever cannot withstand fire, shall be passed through the water.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> You must wash your clothes on the seventh day, and you shall be clean; afterward you may come into the camp.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> The LORD spoke to Moses, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> \"You and Eleazar the priest and the heads of the ancestral houses of the congregation make an inventory of the booty captured, both human and animal.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Divide the booty into two parts, between the warriors who went out to battle and all the congregation.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> From the share of the warriors who went out to battle, set aside as tribute for the LORD, one item out of every five hundred, whether persons, oxen, donkeys, sheep, or goats.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Take it from their half and give it to Eleazar the priest as an offering to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> But from the Israelites' half you shall take one out of every fifty, whether persons, oxen, donkeys, sheep, or goats-- all the animals-- and give them to the Levites who have charge of the tabernacle of the LORD.\"</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Then Moses and Eleazar the priest did as the LORD had commanded Moses:</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> The booty remaining from the spoil that the troops had taken totaled six hundred seventy-five thousand sheep,</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> seventy-two thousand oxen,</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> sixty-one thousand donkeys,</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> and thirty-two thousand persons in all, women who had not known a man by sleeping with him.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> The half-share, the portion of those who had gone out to war, was in number three hundred thirty-seven thousand five hundred sheep and goats,</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> and the LORD's tribute of sheep and goats was six hundred seventy-five.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> The oxen were thirty-six thousand, of which the LORD's tribute was seventy-two.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> The donkeys were thirty thousand five hundred, of which the LORD's tribute was sixty-one.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> The persons were sixteen thousand, of which the LORD's tribute was thirty-two persons.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> Moses gave the tribute, the offering for the LORD, to Eleazar the priest, as the LORD had commanded Moses.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> As for the Israelites' half, which Moses separated from that of the troops,</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> the congregation's half was three hundred thirty-seven thousand five hundred sheep and goats,</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> thirty-six thousand oxen,</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> thirty thousand five hundred donkeys,</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> and sixteen thousand persons.</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> From the Israelites' half Moses took one of every fifty, both of persons and of animals, and gave them to the Levites who had charge of the tabernacle of the LORD; as the LORD had commanded Moses.</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> Then the officers who were over the thousands of the army, the commanders of thousands and the commanders of hundreds, approached Moses,</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> and said to Moses, \"Your servants have counted the warriors who are under our command, and not one of us is missing.</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> And we have brought the LORD's offering, what each of us found, articles of gold, armlets and bracelets, signet rings, earrings, and pendants, to make atonement for ourselves before the LORD.\"</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> Moses and Eleazar the priest received the gold from them, all in the form of crafted articles.</VERS>\r\n\t\t\t<VERS vnumber=\"52\"> And all the gold of the offering that they offered to the LORD, from the commanders of thousands and the commanders of hundreds, was sixteen thousand seven hundred fifty shekels.</VERS>\r\n\t\t\t<VERS vnumber=\"53\"> (The troops had all taken plunder for themselves.)</VERS>\r\n\t\t\t<VERS vnumber=\"54\"> So Moses and Eleazar the priest received the gold from the commanders of thousands and of hundreds, and brought it into the tent of meeting as a memorial for the Israelites before the LORD.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"32\">\r\n\t\t\t<VERS vnumber=\"1\"> Now the Reubenites and the Gadites owned a very great number of cattle. When they saw that the land of Jazer and the land of Gilead was a good place for cattle,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> the Gadites and the Reubenites came and spoke to Moses, to Eleazar the priest, and to the leaders of the congregation, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> \"Ataroth, Dibon, Jazer, Nimrah, Heshbon, Elealeh, Sebam, Nebo, and Beon--</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> the land that the LORD subdued before the congregation of Israel-- is a land for cattle; and your servants have cattle.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> They continued, \"If we have found favor in your sight, let this land be given to your servants for a possession; do not make us cross the Jordan.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> But Moses said to the Gadites and to the Reubenites, \"Shall your brothers go to war while you sit here?</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Why will you discourage the hearts of the Israelites from going over into the land that the LORD has given them?</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Your fathers did this, when I sent them from Kadesh-barnea to see the land.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> When they went up to the Wadi Eshcol and saw the land, they discouraged the hearts of the Israelites from going into the land that the LORD had given them.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The LORD's anger was kindled on that day and he swore, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> 'Surely none of the people who came up out of Egypt, from twenty years old and upward, shall see the land that I swore to give to Abraham, to Isaac, and to Jacob, because they have not unreservedly followed me--</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> none except Caleb son of Jephunneh the Kenizzite and Joshua son of Nun, for they have unreservedly followed the LORD.'</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And the LORD's anger was kindled against Israel, and he made them wander in the wilderness for forty years, until all the generation that had done evil in the sight of the LORD had disappeared.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> And now you, a brood of sinners, have risen in place of your fathers, to increase the LORD's fierce anger against Israel!</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> If you turn away from following him, he will again abandon them in the wilderness; and you will destroy all this people.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then they came up to him and said, \"We will build sheepfolds here for our flocks, and towns for our little ones,</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> but we will take up arms as a vanguard before the Israelites, until we have brought them to their place. Meanwhile our little ones will stay in the fortified towns because of the inhabitants of the land. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> We will not return to our homes until all the Israelites have obtained their inheritance.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> We will not inherit with them on the other side of the Jordan and beyond, because our inheritance has come to us on this side of the Jordan to the east.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> So Moses said to them, \"If you do this-- if you take up arms to go before the LORD for the war,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> and all those of you who bear arms cross the Jordan before the LORD, until he has driven out his enemies from before him</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> and the land is subdued before the LORD-- then after that you may return and be free of obligation to the LORD and to Israel, and this land shall be your possession before the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> But if you do not do this, you have sinned against the LORD; and be sure your sin will find you out.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Build towns for your little ones, and folds for your flocks; but do what you have promised.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Then the Gadites and the Reubenites said to Moses, \"Your servants will do as my lord commands.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Our little ones, our wives, our flocks, and all our livestock shall remain there in the towns of Gilead;</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> but your servants will cross over, everyone armed for war, to do battle for the LORD, just as my lord orders.\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> So Moses gave command concerning them to Eleazar the priest, to Joshua son of Nun, and to the heads of the ancestral houses of the Israelite tribes.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> And Moses said to them, \"If the Gadites and the Reubenites, everyone armed for battle before the LORD, will cross over the Jordan with you and the land shall be subdued before you, then you shall give them the land of Gilead for a possession;</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> but if they will not cross over with you armed, they shall have possessions among you in the land of Canaan.\"</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> The Gadites and the Reubenites answered, \"As the LORD has spoken to your servants, so we will do.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> We will cross over armed before the LORD into the land of Canaan, but the possession of our inheritance shall remain with us on this side of the Jordan.\" </VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Moses gave to them-- to the Gadites and to the Reubenites and to the half-tribe of Manasseh son of Joseph-- the kingdom of King Sihon of the Amorites and the kingdom of King Og of Bashan, the land and its towns, with the territories of the surrounding towns.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> And the Gadites rebuilt Dibon, Ataroth, Aroer,</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Atroth-shophan, Jazer, Jogbehah,</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Beth-nimrah, and Beth-haran, fortified cities, and folds for sheep.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> And the Reubenites rebuilt Heshbon, Elealeh, Kiriathaim,</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Nebo, and Baal-meon (some names being changed), and Sibmah; and they gave names to the towns that they rebuilt.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> The descendants of Machir son of Manasseh went to Gilead, captured it, and dispossessed the Amorites who were there;</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> so Moses gave Gilead to Machir son of Manasseh, and he settled there.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> Jair son of Manasseh went and captured their villages, and renamed them Havvoth-jair. </VERS>\r\n\t\t\t<VERS vnumber=\"42\"> And Nobah went and captured Kenath and its villages, and renamed it Nobah after himself.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"33\">\r\n\t\t\t<VERS vnumber=\"1\"> These are the stages by which the Israelites went out of the land of Egypt in military formation under the leadership of Moses and Aaron.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Moses wrote down their starting points, stage by stage, by command of the LORD; and these are their stages according to their starting places.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> They set out from Rameses in the first month, on the fifteenth day of the first month; on the day after the passover the Israelites went out boldly in the sight of all the Egyptians,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> while the Egyptians were burying all their firstborn, whom the LORD had struck down among them. The LORD executed judgments even against their gods.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> So the Israelites set out from Rameses, and camped at Succoth.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> They set out from Succoth, and camped at Etham, which is on the edge of the wilderness.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> They set out from Etham, and turned back to Pi-hahiroth, which faces Baal-zephon; and they camped before Migdol.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> They set out from Pi-hahiroth, passed through the sea into the wilderness, went a three days' journey in the wilderness of Etham, and camped at Marah.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> They set out from Marah and came to Elim; at Elim there were twelve springs of water and seventy palm trees, and they camped there.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> They set out from Elim and camped by the Red Sea. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> They set out from the Red Sea and camped in the wilderness of Sin. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> They set out from the wilderness of Sin and camped at Dophkah.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> They set out from Dophkah and camped at Alush.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> They set out from Alush and camped at Rephidim, where there was no water for the people to drink.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> They set out from Rephidim and camped in the wilderness of Sinai.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> They set out from the wilderness of Sinai and camped at Kibroth-hattaavah.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> They set out from Kibroth-hattaavah and camped at Hazeroth.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> They set out from Hazeroth and camped at Rithmah.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> They set out from Rithmah and camped at Rimmon-perez.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> They set out from Rimmon-perez and camped at Libnah.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> They set out from Libnah and camped at Rissah.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> They set out from Rissah and camped at Kehelathah.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> They set out from Kehelathah and camped at Mount Shepher.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> They set out from Mount Shepher and camped at Haradah.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> They set out from Haradah and camped at Makheloth.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> They set out from Makheloth and camped at Tahath.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> They set out from Tahath and camped at Terah.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> They set out from Terah and camped at Mithkah.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> They set out from Mithkah and camped at Hashmonah.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> They set out from Hashmonah and camped at Moseroth.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> They set out from Moseroth and camped at Bene-jaakan.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> They set out from Bene-jaakan and camped at Hor-haggidgad.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> They set out from Hor-haggidgad and camped at Jotbathah.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> They set out from Jotbathah and camped at Abronah.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> They set out from Abronah and camped at Ezion-geber.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> They set out from Ezion-geber and camped in the wilderness of Zin (that is, Kadesh).</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> They set out from Kadesh and camped at Mount Hor, on the edge of the land of Edom.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Aaron the priest went up Mount Hor at the command of the LORD and died there in the fortieth year after the Israelites had come out of the land of Egypt, on the first day of the fifth month.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> Aaron was one hundred twenty-three years old when he died on Mount Hor.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> The Canaanite, the king of Arad, who lived in the Negeb in the land of Canaan, heard of the coming of the Israelites.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> They set out from Mount Hor and camped at Zalmonah.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> They set out from Zalmonah and camped at Punon.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> They set out from Punon and camped at Oboth.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> They set out from Oboth and camped at Iye-abarim, in the territory of Moab.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> They set out from Iyim and camped at Dibon-gad.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> They set out from Dibon-gad and camped at Almon-diblathaim.</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> They set out from Almon-diblathaim and camped in the mountains of Abarim, before Nebo.</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> They set out from the mountains of Abarim and camped in the plains of Moab by the Jordan at Jericho;</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> they camped by the Jordan from Beth-jeshimoth as far as Abel-shittim in the plains of Moab.</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> In the plains of Moab by the Jordan at Jericho, the LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> Speak to the Israelites, and say to them: When you cross over the Jordan into the land of Canaan,</VERS>\r\n\t\t\t<VERS vnumber=\"52\"> you shall drive out all the inhabitants of the land from before you, destroy all their figured stones, destroy all their cast images, and demolish all their high places.</VERS>\r\n\t\t\t<VERS vnumber=\"53\"> You shall take possession of the land and settle in it, for I have given you the land to possess.</VERS>\r\n\t\t\t<VERS vnumber=\"54\"> You shall apportion the land by lot according to your clans; to a large one you shall give a large inheritance, and to a small one you shall give a small inheritance; the inheritance shall belong to the person on whom the lot falls; according to your ancestral tribes you shall inherit.</VERS>\r\n\t\t\t<VERS vnumber=\"55\"> But if you do not drive out the inhabitants of the land from before you, then those whom you let remain shall be as barbs in your eyes and thorns in your sides; they shall trouble you in the land where you are settling.</VERS>\r\n\t\t\t<VERS vnumber=\"56\"> And I will do to you as I thought to do to them.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"34\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Command the Israelites, and say to them: When you enter the land of Canaan (this is the land that shall fall to you for an inheritance, the land of Canaan, defined by its boundaries),</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> your south sector shall extend from the wilderness of Zin along the side of Edom. Your southern boundary shall begin from the end of the Dead Sea on the east; </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> your boundary shall turn south of the ascent of Akrabbim, and cross to Zin, and its outer limit shall be south of Kadesh-barnea; then it shall go on to Hazar-addar, and cross to Azmon;</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> the boundary shall turn from Azmon to the Wadi of Egypt, and its termination shall be at the Sea.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For the western boundary, you shall have the Great Sea and its coast; this shall be your western boundary. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> This shall be your northern boundary: from the Great Sea you shall mark out your line to Mount Hor;</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> from Mount Hor you shall mark it out to Lebo-hamath, and the outer limit of the boundary shall be at Zedad;</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> then the boundary shall extend to Ziphron, and its end shall be at Hazar-enan; this shall be your northern boundary.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> You shall mark out your eastern boundary from Hazar-enan to Shepham;</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> and the boundary shall continue down from Shepham to Riblah on the east side of Ain; and the boundary shall go down, and reach the eastern slope of the sea of Chinnereth;</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> and the boundary shall go down to the Jordan, and its end shall be at the Dead Sea. This shall be your land with its boundaries all around. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Moses commanded the Israelites, saying: This is the land that you shall inherit by lot, which the LORD has commanded to give to the nine tribes and to the half-tribe;</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> for the tribe of the Reubenites by their ancestral houses and the tribe of the Gadites by their ancestral houses have taken their inheritance, and also the half-tribe of Manasseh;</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> the two tribes and the half-tribe have taken their inheritance beyond the Jordan at Jericho eastward, toward the sunrise.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> These are the names of the men who shall apportion the land to you for inheritance: the priest Eleazar and Joshua son of Nun.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> You shall take one leader of every tribe to apportion the land for inheritance.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> These are the names of the men: Of the tribe of Judah, Caleb son of Jephunneh.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Of the tribe of the Simeonites, Shemuel son of Ammihud.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Of the tribe of Benjamin, Elidad son of Chislon.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Of the tribe of the Danites a leader, Bukki son of Jogli.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Of the Josephites: of the tribe of the Manassites a leader, Hanniel son of Ephod,</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> and of the tribe of the Ephraimites a leader, Kemuel son of Shiphtan.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Of the tribe of the Zebulunites a leader, Eli-zaphan son of Parnach.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Of the tribe of the Issacharites a leader, Paltiel son of Azzan.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> And of the tribe of the Asherites a leader, Ahihud son of Shelomi.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Of the tribe of the Naphtalites a leader, Pedahel son of Ammihud.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> These were the ones whom the LORD commanded to apportion the inheritance for the Israelites in the land of Canaan.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"35\">\r\n\t\t\t<VERS vnumber=\"1\"> In the plains of Moab by the Jordan at Jericho, the LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Command the Israelites to give, from the inheritance that they possess, towns for the Levites to live in; you shall also give to the Levites pasture lands surrounding the towns.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The towns shall be theirs to live in, and their pasture lands shall be for their cattle, for their livestock, and for all their animals.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The pasture lands of the towns, which you shall give to the Levites, shall reach from the wall of the town outward a thousand cubits all around.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> You shall measure, outside the town, for the east side two thousand cubits, for the south side two thousand cubits, for the west side two thousand cubits, and for the north side two thousand cubits, with the town in the middle; this shall belong to them as pasture land for their towns.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The towns that you give to the Levites shall include the six cities of refuge, where you shall permit a slayer to flee, and in addition to them you shall give forty-two towns.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The towns that you give to the Levites shall total forty-eight, with their pasture lands.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And as for the towns that you shall give from the possession of the Israelites, from the larger tribes you shall take many, and from the smaller tribes you shall take few; each, in proportion to the inheritance that it obtains, shall give of its towns to the Levites.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The LORD spoke to Moses, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Speak to the Israelites, and say to them: When you cross the Jordan into the land of Canaan,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> then you shall select cities to be cities of refuge for you, so that a slayer who kills a person without intent may flee there.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The cities shall be for you a refuge from the avenger, so that the slayer may not die until there is a trial before the congregation.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The cities that you designate shall be six cities of refuge for you:</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> you shall designate three cities beyond the Jordan, and three cities in the land of Canaan, to be cities of refuge.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> These six cities shall serve as refuge for the Israelites, for the resident or transient alien among them, so that anyone who kills a person without intent may flee there.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> But anyone who strikes another with an iron object, and death ensues, is a murderer; the murderer shall be put to death.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Or anyone who strikes another with a stone in hand that could cause death, and death ensues, is a murderer; the murderer shall be put to death.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Or anyone who strikes another with a weapon of wood in hand that could cause death, and death ensues, is a murderer; the murderer shall be put to death.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The avenger of blood is the one who shall put the murderer to death; when they meet, the avenger of blood shall execute the sentence.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Likewise, if someone pushes another from hatred, or hurls something at another, lying in wait, and death ensues,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> or in enmity strikes another with the hand, and death ensues, then the one who struck the blow shall be put to death; that person is a murderer; the avenger of blood shall put the murderer to death, when they meet.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> But if someone pushes another suddenly without enmity, or hurls any object without lying in wait,</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> or, while handling any stone that could cause death, unintentionally drops it on another and death ensues, though they were not enemies, and no harm was intended, </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> then the congregation shall judge between the slayer and the avenger of blood, in accordance with these ordinances;</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> and the congregation shall rescue the slayer from the avenger of blood. Then the congregation shall send the slayer back to the original city of refuge. The slayer shall live in it until the death of the high priest who was anointed with the holy oil.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> But if the slayer shall at any time go outside the bounds of the original city of refuge,</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> and is found by the avenger of blood outside the bounds of the city of refuge, and is killed by the avenger, no bloodguilt shall be incurred.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> For the slayer must remain in the city of refuge until the death of the high priest; but after the death of the high priest the slayer may return home.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> These things shall be a statute and ordinance for you throughout your generations wherever you live.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> If anyone kills another, the murderer shall be put to death on the evidence of witnesses; but no one shall be put to death on the testimony of a single witness.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Moreover you shall accept no ransom for the life of a murderer who is subject to the death penalty; a murderer must be put to death.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Nor shall you accept ransom for one who has fled to a city of refuge, enabling the fugitive to return to live in the land before the death of the high priest.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> You shall not pollute the land in which you live; for blood pollutes the land, and no expiation can be made for the land, for the blood that is shed in it, except by the blood of the one who shed it.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> You shall not defile the land in which you live, in which I also dwell; for I the LORD dwell among the Israelites.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"36\">\r\n\t\t\t<VERS vnumber=\"1\"> The heads of the ancestral houses of the clans of the descendants of Gilead son of Machir son of Manasseh, of the Josephite clans, came forward and spoke in the presence of Moses and the leaders, the heads of the ancestral houses of the Israelites;</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> they said, \"The LORD commanded my lord to give the land for inheritance by lot to the Israelites; and my lord was commanded by the LORD to give the inheritance of our brother Zelophehad to his daughters.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> But if they are married into another Israelite tribe, then their inheritance will be taken from the inheritance of our ancestors and added to the inheritance of the tribe into which they marry; so it will be taken away from the allotted portion of our inheritance.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> And when the jubilee of the Israelites comes, then their inheritance will be added to the inheritance of the tribe into which they have married; and their inheritance will be taken from the inheritance of our ancestral tribe.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then Moses commanded the Israelites according to the word of the LORD, saying, \"The descendants of the tribe of Joseph are right in what they are saying.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> This is what the LORD commands concerning the daughters of Zelophehad, 'Let them marry whom they think best; only it must be into a clan of their father's tribe that they are married,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> so that no inheritance of the Israelites shall be transferred from one tribe to another; for all Israelites shall retain the inheritance of their ancestral tribes.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Every daughter who possesses an inheritance in any tribe of the Israelites shall marry one from the clan of her father's tribe, so that all Israelites may continue to possess their ancestral inheritance.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> No inheritance shall be transferred from one tribe to another; for each of the tribes of the Israelites shall retain its own inheritance.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The daughters of Zelophehad did as the LORD had commanded Moses.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Mahlah, Tirzah, Hoglah, Milcah, and Noah, the daughters of Zelophehad, married sons of their father's brothers.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> They were married into the clans of the descendants of Manasseh son of Joseph, and their inheritance remained in the tribe of their father's clan.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> These are the commandments and the ordinances that the LORD commanded through Moses to the Israelites in the plains of Moab by the Jordan at Jericho.</VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"5\" bname=\"Deuteronomy\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> These are the words that Moses spoke to all Israel beyond the Jordan-- in the wilderness, on the plain opposite Suph, between Paran and Tophel, Laban, Hazeroth, and Di-zahab.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> (By the way of Mount Seir it takes eleven days to reach Kadesh-barnea from Horeb.)</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> In the fortieth year, on the first day of the eleventh month, Moses spoke to the Israelites just as the LORD had commanded him to speak to them.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> This was after he had defeated King Sihon of the Amorites, who reigned in Heshbon, and King Og of Bashan, who reigned in Ashtaroth and in Edrei. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Beyond the Jordan in the land of Moab, Moses undertook to expound this law as follows:</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The LORD our God spoke to us at Horeb, saying, \"You have stayed long enough at this mountain.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Resume your journey, and go into the hill country of the Amorites as well as into the neighboring regions-- the Arabah, the hill country, the Shephelah, the Negeb, and the seacoast-- the land of the Canaanites and the Lebanon, as far as the great river, the river Euphrates.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> See, I have set the land before you; go in and take possession of the land that I swore to your ancestors, to Abraham, to Isaac, and to Jacob, to give to them and to their descendants after them.\" </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> At that time I said to you, \"I am unable by myself to bear you.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The LORD your God has multiplied you, so that today you are as numerous as the stars of heaven.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> May the LORD, the God of your ancestors, increase you a thousand times more and bless you, as he has promised you!</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> But how can I bear the heavy burden of your disputes all by myself?</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Choose for each of your tribes individuals who are wise, discerning, and reputable to be your leaders.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> You answered me, \"The plan you have proposed is a good one.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> So I took the leaders of your tribes, wise and reputable individuals, and installed them as leaders over you, commanders of thousands, commanders of hundreds, commanders of fifties, commanders of tens, and officials, throughout your tribes.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> I charged your judges at that time: \"Give the members of your community a fair hearing, and judge rightly between one person and another, whether citizen or resident alien.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> You must not be partial in judging: hear out the small and the great alike; you shall not be intimidated by anyone, for the judgment is God's. Any case that is too hard for you, bring to me, and I will hear it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> So I charged you at that time with all the things that you should do.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Then, just as the LORD our God had ordered us, we set out from Horeb and went through all that great and terrible wilderness that you saw, on the way to the hill country of the Amorites, until we reached Kadesh-barnea.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> I said to you, \"You have reached the hill country of the Amorites, which the LORD our God is giving us.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> See, the LORD your God has given the land to you; go up, take possession, as the LORD, the God of your ancestors, has promised you; do not fear or be dismayed.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> All of you came to me and said, \"Let us send men ahead of us to explore the land for us and bring back a report to us regarding the route by which we should go up and the cities we will come to.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> The plan seemed good to me, and I selected twelve of you, one from each tribe.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> They set out and went up into the hill country, and when they reached the Valley of Eshcol they spied it out</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> and gathered some of the land's produce, which they brought down to us. They brought back a report to us, and said, \"It is a good land that the LORD our God is giving us.\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> But you were unwilling to go up. You rebelled against the command of the LORD your God;</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> you grumbled in your tents and said, \"It is because the LORD hates us that he has brought us out of the land of Egypt, to hand us over to the Amorites to destroy us.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Where are we headed? Our kindred have made our hearts melt by reporting, 'The people are stronger and taller than we; the cities are large and fortified up to heaven! We actually saw there the offspring of the Anakim!'\"</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> I said to you, \"Have no dread or fear of them.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> The LORD your God, who goes before you, is the one who will fight for you, just as he did for you in Egypt before your very eyes,</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> and in the wilderness, where you saw how the LORD your God carried you, just as one carries a child, all the way that you traveled until you reached this place.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> But in spite of this, you have no trust in the LORD your God,</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> who goes before you on the way to seek out a place for you to camp, in fire by night, and in the cloud by day, to show you the route you should take.\"</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> When the LORD heard your words, he was wrathful and swore:</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> \"Not one of these-- not one of this evil generation-- shall see the good land that I swore to give to your ancestors,</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> except Caleb son of Jephunneh. He shall see it, and to him and to his descendants I will give the land on which he set foot, because of his complete fidelity to the LORD.\"</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Even with me the LORD was angry on your account, saying, \"You also shall not enter there.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Joshua son of Nun, your assistant, shall enter there; encourage him, for he is the one who will secure Israel's possession of it.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> And as for your little ones, who you thought would become booty, your children, who today do not yet know right from wrong, they shall enter there; to them I will give it, and they shall take possession of it.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> But as for you, journey back into the wilderness, in the direction of the Red Sea.\" </VERS>\r\n\t\t\t<VERS vnumber=\"41\"> You answered me, \"We have sinned against the LORD! We are ready to go up and fight, just as the LORD our God commanded us.\" So all of you strapped on your battle gear, and thought it easy to go up into the hill country.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> The LORD said to me, \"Say to them, 'Do not go up and do not fight, for I am not in the midst of you; otherwise you will be defeated by your enemies.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> Although I told you, you would not listen. You rebelled against the command of the LORD and presumptuously went up into the hill country.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> The Amorites who lived in that hill country then came out against you and chased you as bees do. They beat you down in Seir as far as Hormah.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> When you returned and wept before the LORD, the LORD would neither heed your voice nor pay you any attention.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> After you had stayed at Kadesh as many days as you did,</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> we journeyed back into the wilderness, in the direction of the Red Sea, as the LORD had told me and skirted Mount Seir for many days. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Then the LORD said to me:</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> \"You have been skirting this hill country long enough. Head north,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> and charge the people as follows: You are about to pass through the territory of your kindred, the descendants of Esau, who live in Seir. They will be afraid of you, so, be very careful</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> not to engage in battle with them, for I will not give you even so much as a foot's length of their land, since I have given Mount Seir to Esau as a possession.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> You shall purchase food from them for money, so that you may eat; and you shall also buy water from them for money, so that you may drink.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Surely the LORD your God has blessed you in all your undertakings; he knows your going through this great wilderness. These forty years the LORD your God has been with you; you have lacked nothing.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> So we passed by our kin, the descendants of Esau who live in Seir, leaving behind the route of the Arabah, and leaving behind Elath and Ezion-geber. When we had headed out along the route of the wilderness of Moab,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> the LORD said to me: \"Do not harass Moab or engage them in battle, for I will not give you any of its land as a possession, since I have given Ar as a possession to the descendants of Lot.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> (The Emim-- a large and numerous people, as tall as the Anakim-- had formerly inhabited it.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Like the Anakim, they are usually reckoned as Rephaim, though the Moabites call them Emim.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Moreover, the Horim had formerly inhabited Seir, but the descendants of Esau dispossessed them, destroying them and settling in their place, as Israel has done in the land that the LORD gave them as a possession.)</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> \"Now then, proceed to cross over the Wadi Zered.\" So we crossed over the Wadi Zered.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> And the length of time we had traveled from Kadesh-barnea until we crossed the Wadi Zered was thirty-eight years, until the entire generation of warriors had perished from the camp, as the LORD had sworn concerning them.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Indeed, the LORD's own hand was against them, to root them out from the camp, until all had perished.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Just as soon as all the warriors had died off from among the people,</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> the LORD spoke to me, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> \"Today you are going to cross the boundary of Moab at Ar.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> When you approach the frontier of the Ammonites, do not harass them or engage them in battle, for I will not give the land of the Ammonites to you as a possession, because I have given it to the descendants of Lot.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> (It also is usually reckoned as a land of Rephaim. Rephaim formerly inhabited it, though the Ammonites call them Zamzummim,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> a strong and numerous people, as tall as the Anakim. But the LORD destroyed them from before the Ammonites so that they could dispossess them and settle in their place.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> He did the same for the descendants of Esau, who live in Seir, by destroying the Horim before them so that they could dispossess them and settle in their place even to this day.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> As for the Avvim, who had lived in settlements in the vicinity of Gaza, the Caphtorim, who came from Caphtor, destroyed them and settled in their place.)</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> \"Proceed on your journey and cross the Wadi Arnon. See, I have handed over to you King Sihon the Amorite of Heshbon, and his land. Begin to take possession by engaging him in battle.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> This day I will begin to put the dread and fear of you upon the peoples everywhere under heaven; when they hear report of you, they will tremble and be in anguish because of you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> So I sent messengers from the wilderness of Kedemoth to King Sihon of Heshbon with the following terms of peace:</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> \"If you let me pass through your land, I will travel only along the road; I will turn aside neither to the right nor to the left.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> You shall sell me food for money, so that I may eat, and supply me water for money, so that I may drink. Only allow me to pass through on foot--</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> just as the descendants of Esau who live in Seir have done for me and likewise the Moabites who live in Ar-- until I cross the Jordan into the land that the LORD our God is giving us.\"</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> But King Sihon of Heshbon was not willing to let us pass through, for the LORD your God had hardened his spirit and made his heart defiant in order to hand him over to you, as he has now done.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> The LORD said to me, \"See, I have begun to give Sihon and his land over to you. Begin now to take possession of his land.\"</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> So when Sihon came out against us, he and all his people for battle at Jahaz,</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> the LORD our God gave him over to us; and we struck him down, along with his offspring and all his people.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> At that time we captured all his towns, and in each town we utterly destroyed men, women, and children. We left not a single survivor.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Only the livestock we kept as spoil for ourselves, as well as the plunder of the towns that we had captured.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> From Aroer on the edge of the Wadi Arnon (including the town that is in the wadi itself) as far as Gilead, there was no citadel too high for us. The LORD our God gave everything to us.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> You did not encroach, however, on the land of the Ammonites, avoiding the whole upper region of the Wadi Jabbok as well as the towns of the hill country, just as the LORD our God had charged. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> When we headed up the road to Bashan, King Og of Bashan came out against us, he and all his people, for battle at Edrei.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The LORD said to me, \"Do not fear him, for I have handed him over to you, along with his people and his land. Do to him as you did to King Sihon of the Amorites, who reigned in Heshbon.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> So the LORD our God also handed over to us King Og of Bashan and all his people. We struck him down until not a single survivor was left.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> At that time we captured all his towns; there was no citadel that we did not take from them-- sixty towns, the whole region of Argob, the kingdom of Og in Bashan.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> All these were fortress towns with high walls, double gates, and bars, besides a great many villages.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And we utterly destroyed them, as we had done to King Sihon of Heshbon, in each city utterly destroying men, women, and children.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But all the livestock and the plunder of the towns we kept as spoil for ourselves.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> So at that time we took from the two kings of the Amorites the land beyond the Jordan, from the Wadi Arnon to Mount Hermon</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> (the Sidonians call Hermon Sirion, while the Amorites call it Senir),</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> all the towns of the tableland, the whole of Gilead, and all of Bashan, as far as Salecah and Edrei, towns of Og's kingdom in Bashan.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> (Now only King Og of Bashan was left of the remnant of the Rephaim. In fact his bed, an iron bed, can still be seen in Rabbah of the Ammonites. By the common cubit it is nine cubits long and four cubits wide.)</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> As for the land that we took possession of at that time, I gave to the Reubenites and Gadites the territory north of Aroer, that is on the edge of the Wadi Arnon, as well as half the hill country of Gilead with its towns, </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> and I gave to the half-tribe of Manasseh the rest of Gilead and all of Bashan, Og's kingdom. (The whole region of Argob: all that portion of Bashan used to be called a land of Rephaim;</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Jair the Manassite acquired the whole region of Argob as far as the border of the Geshurites and the Maacathites, and he named them-- that is, Bashan-- after himself, Havvoth-jair, as it is to this day.)</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> To Machir I gave Gilead.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> And to the Reubenites and the Gadites I gave the territory from Gilead as far as the Wadi Arnon, with the middle of the wadi as a boundary, and up to the Jabbok, the wadi being boundary of the Ammonites;</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> the Arabah also, with the Jordan and its banks, from Chinnereth down to the sea of the Arabah, the Dead Sea, with the lower slopes of Pisgah on the east. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> At that time, I charged you as follows: \"Although the LORD your God has given you this land to occupy, all your troops shall cross over armed as the vanguard of your Israelite kin.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Only your wives, your children, and your livestock-- I know that you have much livestock-- shall stay behind in the towns that I have given to you.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> When the LORD gives rest to your kindred, as to you, and they too have occupied the land that the LORD your God is giving them beyond the Jordan, then each of you may return to the property that I have given to you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> And I charged Joshua as well at that time, saying: \"Your own eyes have seen everything that the LORD your God has done to these two kings; so the LORD will do to all the kingdoms into which you are about to cross.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Do not fear them, for it is the LORD your God who fights for you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> At that time, too, I entreated the LORD, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> \"O Lord GOD, you have only begun to show your servant your greatness and your might; what god in heaven or on earth can perform deeds and mighty acts like yours!</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Let me cross over to see the good land beyond the Jordan, that good hill country and the Lebanon.\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> But the LORD was angry with me on your account and would not heed me. The LORD said to me, \"Enough from you! Never speak to me of this matter again!</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Go up to the top of Pisgah and look around you to the west, to the north, to the south, and to the east. Look well, for you shall not cross over this Jordan.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> But charge Joshua, and encourage and strengthen him, because it is he who shall cross over at the head of this people and who shall secure their possession of the land that you will see.\"</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> So we remained in the valley opposite Beth-peor.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> So now, Israel, give heed to the statutes and ordinances that I am teaching you to observe, so that you may live to enter and occupy the land that the LORD, the God of your ancestors, is giving you.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> You must neither add anything to what I command you nor take away anything from it, but keep the commandments of the LORD your God with which I am charging you.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> You have seen for yourselves what the LORD did with regard to the Baal of Peor-- how the LORD your God destroyed from among you everyone who followed the Baal of Peor,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> while those of you who held fast to the LORD your God are all alive today.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> See, just as the LORD my God has charged me, I now teach you statutes and ordinances for you to observe in the land that you are about to enter and occupy.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> You must observe them diligently, for this will show your wisdom and discernment to the peoples, who, when they hear all these statutes, will say, \"Surely this great nation is a wise and discerning people!\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> For what other great nation has a god so near to it as the LORD our God is whenever we call to him?</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And what other great nation has statutes and ordinances as just as this entire law that I am setting before you today?</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> But take care and watch yourselves closely, so as neither to forget the things that your eyes have seen nor to let them slip from your mind all the days of your life; make them known to your children and your children's children--</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> how you once stood before the LORD your God at Horeb, when the LORD said to me, \"Assemble the people for me, and I will let them hear my words, so that they may learn to fear me as long as they live on the earth, and may teach their children so\";</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> you approached and stood at the foot of the mountain while the mountain was blazing up to the very heavens, shrouded in dark clouds.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then the LORD spoke to you out of the fire. You heard the sound of words but saw no form; there was only a voice.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> He declared to you his covenant, which he charged you to observe, that is, the ten commandments; and he wrote them on two stone tablets. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> And the LORD charged me at that time to teach you statutes and ordinances for you to observe in the land that you are about to cross into and occupy.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Since you saw no form when the LORD spoke to you at Horeb out of the fire, take care and watch yourselves closely,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> so that you do not act corruptly by making an idol for yourselves, in the form of any figure-- the likeness of male or female,</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> the likeness of any animal that is on the earth, the likeness of any winged bird that flies in the air,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> the likeness of anything that creeps on the ground, the likeness of any fish that is in the water under the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> And when you look up to the heavens and see the sun, the moon, and the stars, all the host of heaven, do not be led astray and bow down to them and serve them, things that the LORD your God has allotted to all the peoples everywhere under heaven.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> But the LORD has taken you and brought you out of the iron-smelter, out of Egypt, to become a people of his very own possession, as you are now.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> The LORD was angry with me because of you, and he vowed that I should not cross the Jordan and that I should not enter the good land that the LORD your God is giving for your possession.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> For I am going to die in this land without crossing over the Jordan, but you are going to cross over to take possession of that good land.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> So be careful not to forget the covenant that the LORD your God made with you, and not to make for yourselves an idol in the form of anything that the LORD your God has forbidden you.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> For the LORD your God is a devouring fire, a jealous God.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> When you have had children and children's children, and become complacent in the land, if you act corruptly by making an idol in the form of anything, thus doing what is evil in the sight of the LORD your God, and provoking him to anger,</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> I call heaven and earth to witness against you today that you will soon utterly perish from the land that you are crossing the Jordan to occupy; you will not live long on it, but will be utterly destroyed.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> The LORD will scatter you among the peoples; only a few of you will be left among the nations where the LORD will lead you.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> There you will serve other gods made by human hands, objects of wood and stone that neither see, nor hear, nor eat, nor smell.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> From there you will seek the LORD your God, and you will find him if you search after him with all your heart and soul.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> In your distress, when all these things have happened to you in time to come, you will return to the LORD your God and heed him.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Because the LORD your God is a merciful God, he will neither abandon you nor destroy you; he will not forget the covenant with your ancestors that he swore to them.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> For ask now about former ages, long before your own, ever since the day that God created human beings on the earth; ask from one end of heaven to the other: has anything so great as this ever happened or has its like ever been heard of?</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Has any people ever heard the voice of a god speaking out of a fire, as you have heard, and lived?</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Or has any god ever attempted to go and take a nation for himself from the midst of another nation, by trials, by signs and wonders, by war, by a mighty hand and an outstretched arm, and by terrifying displays of power, as the LORD your God did for you in Egypt before your very eyes?</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> To you it was shown so that you would acknowledge that the LORD is God; there is no other besides him.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> From heaven he made you hear his voice to discipline you. On earth he showed you his great fire, while you heard his words coming out of the fire.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> And because he loved your ancestors, he chose their descendants after them. He brought you out of Egypt with his own presence, by his great power,</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> driving out before you nations greater and mightier than yourselves, to bring you in, giving you their land for a possession, as it is still today.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> So acknowledge today and take to heart that the LORD is God in heaven above and on the earth beneath; there is no other.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> Keep his statutes and his commandments, which I am commanding you today for your own well-being and that of your descendants after you, so that you may long remain in the land that the LORD your God is giving you for all time.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> Then Moses set apart on the east side of the Jordan three cities</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> to which a homicide could flee, someone who unintentionally kills another person, the two not having been at enmity before; the homicide could flee to one of these cities and live:</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> Bezer in the wilderness on the tableland belonging to the Reubenites, Ramoth in Gilead belonging to the Gadites, and Golan in Bashan belonging to the Manassites.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> This is the law that Moses set before the Israelites.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> These are the decrees and the statutes and ordinances that Moses spoke to the Israelites when they had come out of Egypt,</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> beyond the Jordan in the valley opposite Beth-peor, in the land of King Sihon of the Amorites, who reigned at Heshbon, whom Moses and the Israelites defeated when they came out of Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> They occupied his land and the land of King Og of Bashan, the two kings of the Amorites on the eastern side of the Jordan:</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> from Aroer, which is on the edge of the Wadi Arnon, as far as Mount Sirion (that is, Hermon), </VERS>\r\n\t\t\t<VERS vnumber=\"49\"> together with all the Arabah on the east side of the Jordan as far as the Sea of the Arabah, under the slopes of Pisgah.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"5\">\r\n\t\t\t<VERS vnumber=\"1\"> Moses convened all Israel, and said to them: Hear, O Israel, the statutes and ordinances that I am addressing to you today; you shall learn them and observe them diligently.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The LORD our God made a covenant with us at Horeb.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Not with our ancestors did the LORD make this covenant, but with us, who are all of us here alive today.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The LORD spoke with you face to face at the mountain, out of the fire.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> (At that time I was standing between the LORD and you to declare to you the words of the LORD; for you were afraid because of the fire and did not go up the mountain.) And he said:</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> I am the LORD your God, who brought you out of the land of Egypt, out of the house of slavery;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> you shall have no other gods before me. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> You shall not make for yourself an idol, whether in the form of anything that is in heaven above, or that is on the earth beneath, or that is in the water under the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> You shall not bow down to them or worship them; for I the LORD your God am a jealous God, punishing children for the iniquity of parents, to the third and fourth generation of those who reject me,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> but showing steadfast love to the thousandth generation of those who love me and keep my commandments. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> You shall not make wrongful use of the name of the LORD your God, for the LORD will not acquit anyone who misuses his name.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Observe the sabbath day and keep it holy, as the LORD your God commanded you.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Six days you shall labor and do all your work.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But the seventh day is a sabbath to the LORD your God; you shall not do any work-- you, or your son or your daughter, or your male or female slave, or your ox or your donkey, or any of your livestock, or the resident alien in your towns, so that your male and female slave may rest as well as you.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Remember that you were a slave in the land of Egypt, and the LORD your God brought you out from there with a mighty hand and an outstretched arm; therefore the LORD your God commanded you to keep the sabbath day.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Honor your father and your mother, as the LORD your God commanded you, so that your days may be long and that it may go well with you in the land that the LORD your God is giving you.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> You shall not murder. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Neither shall you commit adultery.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Neither shall you steal.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Neither shall you bear false witness against your neighbor.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Neither shall you covet your neighbor's wife. Neither shall you desire your neighbor's house, or field, or male or female slave, or ox, or donkey, or anything that belongs to your neighbor.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> These words the LORD spoke with a loud voice to your whole assembly at the mountain, out of the fire, the cloud, and the thick darkness, and he added no more. He wrote them on two stone tablets, and gave them to me.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> When you heard the voice out of the darkness, while the mountain was burning with fire, you approached me, all the heads of your tribes and your elders;</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> and you said, \"Look, the LORD our God has shown us his glory and greatness, and we have heard his voice out of the fire. Today we have seen that God may speak to someone and the person may still live.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> So now why should we die? For this great fire will consume us; if we hear the voice of the LORD our God any longer, we shall die.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> For who is there of all flesh that has heard the voice of the living God speaking out of fire, as we have, and remained alive?</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Go near, you yourself, and hear all that the LORD our God will say. Then tell us everything that the LORD our God tells you, and we will listen and do it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> The LORD heard your words when you spoke to me, and the LORD said to me: \"I have heard the words of this people, which they have spoken to you; they are right in all that they have spoken.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> If only they had such a mind as this, to fear me and to keep all my commandments always, so that it might go well with them and with their children forever!</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Go say to them, 'Return to your tents.'</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> But you, stand here by me, and I will tell you all the commandments, the statutes and the ordinances, that you shall teach them, so that they may do them in the land that I am giving them to possess.\"</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> You must therefore be careful to do as the LORD your God has commanded you; you shall not turn to the right or to the left.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> You must follow exactly the path that the LORD your God has commanded you, so that you may live, and that it may go well with you, and that you may live long in the land that you are to possess.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"6\">\r\n\t\t\t<VERS vnumber=\"1\"> Now this is the commandment-- the statutes and the ordinances-- that the LORD your God charged me to teach you to observe in the land that you are about to cross into and occupy,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> so that you and your children and your children's children may fear the LORD your God all the days of your life, and keep all his decrees and his commandments that I am commanding you, so that your days may be long.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Hear therefore, O Israel, and observe them diligently, so that it may go well with you, and so that you may multiply greatly in a land flowing with milk and honey, as the LORD, the God of your ancestors, has promised you.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Hear, O Israel: The LORD is our God, the LORD alone. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> You shall love the LORD your God with all your heart, and with all your soul, and with all your might.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Keep these words that I am commanding you today in your heart.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Recite them to your children and talk about them when you are at home and when you are away, when you lie down and when you rise.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Bind them as a sign on your hand, fix them as an emblem on your forehead, </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> and write them on the doorposts of your house and on your gates.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> When the LORD your God has brought you into the land that he swore to your ancestors, to Abraham, to Isaac, and to Jacob, to give you-- a land with fine, large cities that you did not build,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> houses filled with all sorts of goods that you did not fill, hewn cisterns that you did not hew, vineyards and olive groves that you did not plant-- and when you have eaten your fill,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> take care that you do not forget the LORD, who brought you out of the land of Egypt, out of the house of slavery.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The LORD your God you shall fear; him you shall serve, and by his name alone you shall swear.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Do not follow other gods, any of the gods of the peoples who are all around you,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> because the LORD your God, who is present with you, is a jealous God. The anger of the LORD your God would be kindled against you and he would destroy you from the face of the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Do not put the LORD your God to the test, as you tested him at Massah.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> You must diligently keep the commandments of the LORD your God, and his decrees, and his statutes that he has commanded you.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Do what is right and good in the sight of the LORD, so that it may go well with you, and so that you may go in and occupy the good land that the LORD swore to your ancestors to give you,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> thrusting out all your enemies from before you, as the LORD has promised.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> When your children ask you in time to come, \"What is the meaning of the decrees and the statutes and the ordinances that the LORD our God has commanded you?\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> then you shall say to your children, \"We were Pharaoh's slaves in Egypt, but the LORD brought us out of Egypt with a mighty hand.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The LORD displayed before our eyes great and awesome signs and wonders against Egypt, against Pharaoh and all his household.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> He brought us out from there in order to bring us in, to give us the land that he promised on oath to our ancestors.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Then the LORD commanded us to observe all these statutes, to fear the LORD our God, for our lasting good, so as to keep us alive, as is now the case.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> If we diligently observe this entire commandment before the LORD our God, as he has commanded us, we will be in the right.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"7\">\r\n\t\t\t<VERS vnumber=\"1\"> When the LORD your God brings you into the land that you are about to enter and occupy, and he clears away many nations before you-- the Hittites, the Girgashites, the Amorites, the Canaanites, the Perizzites, the Hivites, and the Jebusites, seven nations mightier and more numerous than you--</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> and when the LORD your God gives them over to you and you defeat them, then you must utterly destroy them. Make no covenant with them and show them no mercy.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Do not intermarry with them, giving your daughters to their sons or taking their daughters for your sons,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> for that would turn away your children from following me, to serve other gods. Then the anger of the LORD would be kindled against you, and he would destroy you quickly.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> But this is how you must deal with them: break down their altars, smash their pillars, hew down their sacred poles, and burn their idols with fire. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For you are a people holy to the LORD your God; the LORD your God has chosen you out of all the peoples on earth to be his people, his treasured possession.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> It was not because you were more numerous than any other people that the LORD set his heart on you and chose you-- for you were the fewest of all peoples.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> It was because the LORD loved you and kept the oath that he swore to your ancestors, that the LORD has brought you out with a mighty hand, and redeemed you from the house of slavery, from the hand of Pharaoh king of Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Know therefore that the LORD your God is God, the faithful God who maintains covenant loyalty with those who love him and keep his commandments, to a thousand generations,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> and who repays in their own person those who reject him. He does not delay but repays in their own person those who reject him.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Therefore, observe diligently the commandment-- the statutes, and the ordinances-- that I am commanding you today.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> If you heed these ordinances, by diligently observing them, the LORD your God will maintain with you the covenant loyalty that he swore to your ancestors;</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> he will love you, bless you, and multiply you; he will bless the fruit of your womb and the fruit of your ground, your grain and your wine and your oil, the increase of your cattle and the issue of your flock, in the land that he swore to your ancestors to give you.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> You shall be the most blessed of peoples, with neither sterility nor barrenness among you or your livestock.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The LORD will turn away from you every illness; all the dread diseases of Egypt that you experienced, he will not inflict on you, but he will lay them on all who hate you.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> You shall devour all the peoples that the LORD your God is giving over to you, showing them no pity; you shall not serve their gods, for that would be a snare to you.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> If you say to yourself, \"These nations are more numerous than I; how can I dispossess them?\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> do not be afraid of them. Just remember what the LORD your God did to Pharaoh and to all Egypt,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> the great trials that your eyes saw, the signs and wonders, the mighty hand and the outstretched arm by which the LORD your God brought you out. The LORD your God will do the same to all the peoples of whom you are afraid.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Moreover, the LORD your God will send the pestilence against them, until even the survivors and the fugitives are destroyed. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Have no dread of them, for the LORD your God, who is present with you, is a great and awesome God.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The LORD your God will clear away these nations before you little by little; you will not be able to make a quick end of them, otherwise the wild animals would become too numerous for you.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> But the LORD your God will give them over to you, and throw them into great panic, until they are destroyed.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> He will hand their kings over to you and you shall blot out their name from under heaven; no one will be able to stand against you, until you have destroyed them.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> The images of their gods you shall burn with fire. Do not covet the silver or the gold that is on them and take it for yourself, because you could be ensnared by it; for it is abhorrent to the LORD your God.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Do not bring an abhorrent thing into your house, or you will be set apart for destruction like it. You must utterly detest and abhor it, for it is set apart for destruction.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"8\">\r\n\t\t\t<VERS vnumber=\"1\"> This entire commandment that I command you today you must diligently observe, so that you may live and increase, and go in and occupy the land that the LORD promised on oath to your ancestors.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Remember the long way that the LORD your God has led you these forty years in the wilderness, in order to humble you, testing you to know what was in your heart, whether or not you would keep his commandments.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> He humbled you by letting you hunger, then by feeding you with manna, with which neither you nor your ancestors were acquainted, in order to make you understand that one does not live by bread alone, but by every word that comes from the mouth of the LORD. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The clothes on your back did not wear out and your feet did not swell these forty years.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Know then in your heart that as a parent disciplines a child so the LORD your God disciplines you.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Therefore keep the commandments of the LORD your God, by walking in his ways and by fearing him.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> For the LORD your God is bringing you into a good land, a land with flowing streams, with springs and underground waters welling up in valleys and hills,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> a land of wheat and barley, of vines and fig trees and pomegranates, a land of olive trees and honey,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> a land where you may eat bread without scarcity, where you will lack nothing, a land whose stones are iron and from whose hills you may mine copper.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> You shall eat your fill and bless the LORD your God for the good land that he has given you.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Take care that you do not forget the LORD your God, by failing to keep his commandments, his ordinances, and his statutes, which I am commanding you today.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> When you have eaten your fill and have built fine houses and live in them,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> and when your herds and flocks have multiplied, and your silver and gold is multiplied, and all that you have is multiplied,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> then do not exalt yourself, forgetting the LORD your God, who brought you out of the land of Egypt, out of the house of slavery,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> who led you through the great and terrible wilderness, an arid wasteland with poisonous snakes and scorpions. He made water flow for you from flint rock,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> and fed you in the wilderness with manna that your ancestors did not know, to humble you and to test you, and in the end to do you good.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Do not say to yourself, \"My power and the might of my own hand have gotten me this wealth.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> But remember the LORD your God, for it is he who gives you power to get wealth, so that he may confirm his covenant that he swore to your ancestors, as he is doing today.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> If you do forget the LORD your God and follow other gods to serve and worship them, I solemnly warn you today that you shall surely perish.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Like the nations that the LORD is destroying before you, so shall you perish, because you would not obey the voice of the LORD your God.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"9\">\r\n\t\t\t<VERS vnumber=\"1\"> Hear, O Israel! You are about to cross the Jordan today, to go in and dispossess nations larger and mightier than you, great cities, fortified to the heavens,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> a strong and tall people, the offspring of the Anakim, whom you know. You have heard it said of them, \"Who can stand up to the Anakim?\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Know then today that the LORD your God is the one who crosses over before you as a devouring fire; he will defeat them and subdue them before you, so that you may dispossess and destroy them quickly, as the LORD has promised you.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> When the LORD your God thrusts them out before you, do not say to yourself, \"It is because of my righteousness that the LORD has brought me in to occupy this land\"; it is rather because of the wickedness of these nations that the LORD is dispossessing them before you.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> It is not because of your righteousness or the uprightness of your heart that you are going in to occupy their land; but because of the wickedness of these nations the LORD your God is dispossessing them before you, in order to fulfill the promise that the LORD made on oath to your ancestors, to Abraham, to Isaac, and to Jacob.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Know, then, that the LORD your God is not giving you this good land to occupy because of your righteousness; for you are a stubborn people.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Remember and do not forget how you provoked the LORD your God to wrath in the wilderness; you have been rebellious against the LORD from the day you came out of the land of Egypt until you came to this place.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Even at Horeb you provoked the LORD to wrath, and the LORD was so angry with you that he was ready to destroy you.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> When I went up the mountain to receive the stone tablets, the tablets of the covenant that the LORD made with you, I remained on the mountain forty days and forty nights; I neither ate bread nor drank water.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And the LORD gave me the two stone tablets written with the finger of God; on them were all the words that the LORD had spoken to you at the mountain out of the fire on the day of the assembly.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> At the end of forty days and forty nights the LORD gave me the two stone tablets, the tablets of the covenant.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then the LORD said to me, \"Get up, go down quickly from here, for your people whom you have brought from Egypt have acted corruptly. They have been quick to turn from the way that I commanded them; they have cast an image for themselves.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Furthermore the LORD said to me, \"I have seen that this people is indeed a stubborn people.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Let me alone that I may destroy them and blot out their name from under heaven; and I will make of you a nation mightier and more numerous than they.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> So I turned and went down from the mountain, while the mountain was ablaze; the two tablets of the covenant were in my two hands.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then I saw that you had indeed sinned against the LORD your God, by casting for yourselves an image of a calf; you had been quick to turn from the way that the LORD had commanded you.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> So I took hold of the two tablets and flung them from my two hands, smashing them before your eyes.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then I lay prostrate before the LORD as before, forty days and forty nights; I neither ate bread nor drank water, because of all the sin you had committed, provoking the LORD by doing what was evil in his sight.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> For I was afraid that the anger that the LORD bore against you was so fierce that he would destroy you. But the LORD listened to me that time also.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The LORD was so angry with Aaron that he was ready to destroy him, but I interceded also on behalf of Aaron at that same time.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then I took the sinful thing you had made, the calf, and burned it with fire and crushed it, grinding it thoroughly, until it was reduced to dust; and I threw the dust of it into the stream that runs down the mountain.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> At Taberah also, and at Massah, and at Kibroth-hattaavah, you provoked the LORD to wrath.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> And when the LORD sent you from Kadesh-barnea, saying, \"Go up and occupy the land that I have given you,\" you rebelled against the command of the LORD your God, neither trusting him nor obeying him.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> You have been rebellious against the LORD as long as he has known you. </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Throughout the forty days and forty nights that I lay prostrate before the LORD when the LORD intended to destroy you,</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> I prayed to the LORD and said, \"Lord GOD, do not destroy the people who are your very own possession, whom you redeemed in your greatness, whom you brought out of Egypt with a mighty hand.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Remember your servants, Abraham, Isaac, and Jacob; pay no attention to the stubbornness of this people, their wickedness and their sin,</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> otherwise the land from which you have brought us might say, 'Because the LORD was not able to bring them into the land that he promised them, and because he hated them, he has brought them out to let them die in the wilderness.'</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> For they are the people of your very own possession, whom you brought out by your great power and by your outstretched arm.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"10\">\r\n\t\t\t<VERS vnumber=\"1\"> At that time the LORD said to me, \"Carve out two tablets of stone like the former ones, and come up to me on the mountain, and make an ark of wood.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> I will write on the tablets the words that were on the former tablets, which you smashed, and you shall put them in the ark.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> So I made an ark of acacia wood, cut two tablets of stone like the former ones, and went up the mountain with the two tablets in my hand.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then he wrote on the tablets the same words as before, the ten commandments that the LORD had spoken to you on the mountain out of the fire on the day of the assembly; and the LORD gave them to me. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> So I turned and came down from the mountain, and put the tablets in the ark that I had made; and there they are, as the LORD commanded me.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> (The Israelites journeyed from Beeroth-bene-jaakan to Moserah. There Aaron died, and there he was buried; his son Eleazar succeeded him as priest. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> From there they journeyed to Gudgodah, and from Gudgodah to Jotbathah, a land with flowing streams.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> At that time the LORD set apart the tribe of Levi to carry the ark of the covenant of the LORD, to stand before the LORD to minister to him, and to bless in his name, to this day.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Therefore Levi has no allotment or inheritance with his kindred; the LORD is his inheritance, as the LORD your God promised him.)</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> I stayed on the mountain forty days and forty nights, as I had done the first time. And once again the LORD listened to me. The LORD was unwilling to destroy you.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The LORD said to me, \"Get up, go on your journey at the head of the people, that they may go in and occupy the land that I swore to their ancestors to give them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> So now, O Israel, what does the LORD your God require of you? Only to fear the LORD your God, to walk in all his ways, to love him, to serve the LORD your God with all your heart and with all your soul,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> and to keep the commandments of the LORD your God and his decrees that I am commanding you today, for your own well-being. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Although heaven and the heaven of heavens belong to the LORD your God, the earth with all that is in it,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> yet the LORD set his heart in love on your ancestors alone and chose you, their descendants after them, out of all the peoples, as it is today.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Circumcise, then, the foreskin of your heart, and do not be stubborn any longer.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> For the LORD your God is God of gods and Lord of lords, the great God, mighty and awesome, who is not partial and takes no bribe,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> who executes justice for the orphan and the widow, and who loves the strangers, providing them food and clothing.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> You shall also love the stranger, for you were strangers in the land of Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> You shall fear the LORD your God; him alone you shall worship; to him you shall hold fast, and by his name you shall swear.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> He is your praise; he is your God, who has done for you these great and awesome things that your own eyes have seen.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Your ancestors went down to Egypt seventy persons; and now the LORD your God has made you as numerous as the stars in heaven.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"11\">\r\n\t\t\t<VERS vnumber=\"1\"> You shall love the LORD your God, therefore, and keep his charge, his decrees, his ordinances, and his commandments always.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Remember today that it was not your children (who have not known or seen the discipline of the LORD your God), but it is you who must acknowledge his greatness, his mighty hand and his outstretched arm,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> his signs and his deeds that he did in Egypt to Pharaoh, the king of Egypt, and to all his land;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> what he did to the Egyptian army, to their horses and chariots, how he made the water of the Red Sea flow over them as they pursued you, so that the LORD has destroyed them to this day; </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> what he did to you in the wilderness, until you came to this place;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> and what he did to Dathan and Abiram, sons of Eliab son of Reuben, how in the midst of all Israel the earth opened its mouth and swallowed them up, along with their households, their tents, and every living being in their company;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> for it is your own eyes that have seen every great deed that the LORD did.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Keep, then, this entire commandment that I am commanding you today, so that you may have strength to go in and occupy the land that you are crossing over to occupy,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> and so that you may live long in the land that the LORD swore to your ancestors to give them and to their descendants, a land flowing with milk and honey.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For the land that you are about to enter to occupy is not like the land of Egypt, from which you have come, where you sow your seed and irrigate by foot like a vegetable garden.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But the land that you are crossing over to occupy is a land of hills and valleys, watered by rain from the sky,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> a land that the LORD your God looks after. The eyes of the LORD your God are always on it, from the beginning of the year to the end of the year.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> If you will only heed his every commandment that I am commanding you today-- loving the LORD your God, and serving him with all your heart and with all your soul--</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> then he will give the rain for your land in its season, the early rain and the later rain, and you will gather in your grain, your wine, and your oil; </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> and he will give grass in your fields for your livestock, and you will eat your fill. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Take care, or you will be seduced into turning away, serving other gods and worshiping them,</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> for then the anger of the LORD will be kindled against you and he will shut up the heavens, so that there will be no rain and the land will yield no fruit; then you will perish quickly off the good land that the LORD is giving you.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> You shall put these words of mine in your heart and soul, and you shall bind them as a sign on your hand, and fix them as an emblem on your forehead. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Teach them to your children, talking about them when you are at home and when you are away, when you lie down and when you rise.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Write them on the doorposts of your house and on your gates,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> so that your days and the days of your children may be multiplied in the land that the LORD swore to your ancestors to give them, as long as the heavens are above the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> If you will diligently observe this entire commandment that I am commanding you, loving the LORD your God, walking in all his ways, and holding fast to him,</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> then the LORD will drive out all these nations before you, and you will dispossess nations larger and mightier than yourselves.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Every place on which you set foot shall be yours; your territory shall extend from the wilderness to the Lebanon and from the River, the river Euphrates, to the Western Sea.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> No one will be able to stand against you; the LORD your God will put the fear and dread of you on all the land on which you set foot, as he promised you.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> See, I am setting before you today a blessing and a curse:</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> the blessing, if you obey the commandments of the LORD your God that I am commanding you today;</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> and the curse, if you do not obey the commandments of the LORD your God, but turn from the way that I am commanding you today, to follow other gods that you have not known.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> When the LORD your God has brought you into the land that you are entering to occupy, you shall set the blessing on Mount Gerizim and the curse on Mount Ebal.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> As you know, they are beyond the Jordan, some distance to the west, in the land of the Canaanites who live in the Arabah, opposite Gilgal, beside the oak of Moreh. </VERS>\r\n\t\t\t<VERS vnumber=\"31\"> When you cross the Jordan to go in to occupy the land that the LORD your God is giving you, and when you occupy it and live in it,</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> you must diligently observe all the statutes and ordinances that I am setting before you today.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"12\">\r\n\t\t\t<VERS vnumber=\"1\"> These are the statutes and ordinances that you must diligently observe in the land that the LORD, the God of your ancestors, has given you to occupy all the days that you live on the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> You must demolish completely all the places where the nations whom you are about to dispossess served their gods, on the mountain heights, on the hills, and under every leafy tree.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Break down their altars, smash their pillars, burn their sacred poles with fire, and hew down the idols of their gods, and thus blot out their name from their places. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> You shall not worship the LORD your God in such ways.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> But you shall seek the place that the LORD your God will choose out of all your tribes as his habitation to put his name there. You shall go there,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> bringing there your burnt offerings and your sacrifices, your tithes and your donations, your votive gifts, your freewill offerings, and the firstlings of your herds and flocks.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> And you shall eat there in the presence of the LORD your God, you and your households together, rejoicing in all the undertakings in which the LORD your God has blessed you.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> You shall not act as we are acting here today, all of us according to our own desires,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> for you have not yet come into the rest and the possession that the LORD your God is giving you.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> When you cross over the Jordan and live in the land that the LORD your God is allotting to you, and when he gives you rest from your enemies all around so that you live in safety,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> then you shall bring everything that I command you to the place that the LORD your God will choose as a dwelling for his name: your burnt offerings and your sacrifices, your tithes and your donations, and all your choice votive gifts that you vow to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> And you shall rejoice before the LORD your God, you together with your sons and your daughters, your male and female slaves, and the Levites who reside in your towns (since they have no allotment or inheritance with you).</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Take care that you do not offer your burnt offerings at any place you happen to see.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But only at the place that the LORD will choose in one of your tribes-- there you shall offer your burnt offerings and there you shall do everything I command you.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Yet whenever you desire you may slaughter and eat meat within any of your towns, according to the blessing that the LORD your God has given you; the unclean and the clean may eat of it, as they would of gazelle or deer.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The blood, however, you must not eat; you shall pour it out on the ground like water.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Nor may you eat within your towns the tithe of your grain, your wine, and your oil, the firstlings of your herds and your flocks, any of your votive gifts that you vow, your freewill offerings, or your donations;</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> these you shall eat in the presence of the LORD your God at the place that the LORD your God will choose, you together with your son and your daughter, your male and female slaves, and the Levites resident in your towns, rejoicing in the presence of the LORD your God in all your undertakings.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Take care that you do not neglect the Levite as long as you live in your land.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> When the LORD your God enlarges your territory, as he has promised you, and you say, \"I am going to eat some meat,\" because you wish to eat meat, you may eat meat whenever you have the desire.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> If the place where the LORD your God will choose to put his name is too far from you, and you slaughter as I have commanded you any of your herd or flock that the LORD has given you, then you may eat within your towns whenever you desire.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Indeed, just as gazelle or deer is eaten, so you may eat it; the unclean and the clean alike may eat it.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Only be sure that you do not eat the blood; for the blood is the life, and you shall not eat the life with the meat.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Do not eat it; you shall pour it out on the ground like water.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Do not eat it, so that all may go well with you and your children after you, because you do what is right in the sight of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> But the sacred donations that are due from you, and your votive gifts, you shall bring to the place that the LORD will choose.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> You shall present your burnt offerings, both the meat and the blood, on the altar of the LORD your God; the blood of your other sacrifices shall be poured out beside the altar of the LORD your God, but the meat you may eat. </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Be careful to obey all these words that I command you today, so that it may go well with you and with your children after you forever, because you will be doing what is good and right in the sight of the LORD your God. </VERS>\r\n\t\t\t<VERS vnumber=\"29\"> When the LORD your God has cut off before you the nations whom you are about to enter to dispossess them, when you have dispossessed them and live in their land,</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> take care that you are not snared into imitating them, after they have been destroyed before you: do not inquire concerning their gods, saying, \"How did these nations worship their gods? I also want to do the same.\"</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> You must not do the same for the LORD your God, because every abhorrent thing that the LORD hates they have done for their gods. They would even burn their sons and their daughters in the fire to their gods.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> You must diligently observe everything that I command you; do not add to it or take anything from it.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"13\">\r\n\t\t\t<VERS vnumber=\"1\"> If prophets or those who divine by dreams appear among you and promise you omens or portents,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> and the omens or the portents declared by them take place, and they say, \"Let us follow other gods\" (whom you have not known) \"and let us serve them,\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> you must not heed the words of those prophets or those who divine by dreams; for the LORD your God is testing you, to know whether you indeed love the LORD your God with all your heart and soul.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The LORD your God you shall follow, him alone you shall fear, his commandments you shall keep, his voice you shall obey, him you shall serve, and to him you shall hold fast.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> But those prophets or those who divine by dreams shall be put to death for having spoken treason against the LORD your God-- who brought you out of the land of Egypt and redeemed you from the house of slavery-- to turn you from the way in which the LORD your God commanded you to walk. So you shall purge the evil from your midst.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> If anyone secretly entices you-- even if it is your brother, your father's son or your mother's son, or your own son or daughter, or the wife you embrace, or your most intimate friend-- saying, \"Let us go worship other gods,\" whom neither you nor your ancestors have known,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> any of the gods of the peoples that are around you, whether near you or far away from you, from one end of the earth to the other,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> you must not yield to or heed any such persons. Show them no pity or compassion and do not shield them.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> But you shall surely kill them; your own hand shall be first against them to execute them, and afterwards the hand of all the people.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Stone them to death for trying to turn you away from the LORD your God, who brought you out of the land of Egypt, out of the house of slavery.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then all Israel shall hear and be afraid, and never again do any such wickedness.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> If you hear it said about one of the towns that the LORD your God is giving you to live in,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> that scoundrels from among you have gone out and led the inhabitants of the town astray, saying, \"Let us go and worship other gods,\" whom you have not known,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> then you shall inquire and make a thorough investigation. If the charge is established that such an abhorrent thing has been done among you,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> you shall put the inhabitants of that town to the sword, utterly destroying it and everything in it-- even putting its livestock to the sword.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> All of its spoil you shall gather into its public square; then burn the town and all its spoil with fire, as a whole burnt offering to the LORD your God. It shall remain a perpetual ruin, never to be rebuilt.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Do not let anything devoted to destruction stick to your hand, so that the LORD may turn from his fierce anger and show you compassion, and in his compassion multiply you, as he swore to your ancestors,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> if you obey the voice of the LORD your God by keeping all his commandments that I am commanding you today, doing what is right in the sight of the LORD your God.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"14\">\r\n\t\t\t<VERS vnumber=\"1\"> You are children of the LORD your God. You must not lacerate yourselves or shave your forelocks for the dead.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> For you are a people holy to the LORD your God; it is you the LORD has chosen out of all the peoples on earth to be his people, his treasured possession.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> You shall not eat any abhorrent thing.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> These are the animals you may eat: the ox, the sheep, the goat,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> the deer, the gazelle, the roebuck, the wild goat, the ibex, the antelope, and the mountain-sheep.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Any animal that divides the hoof and has the hoof cleft in two, and chews the cud, among the animals, you may eat.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Yet of those that chew the cud or have the hoof cleft you shall not eat these: the camel, the hare, and the rock badger, because they chew the cud but do not divide the hoof; they are unclean for you.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And the pig, because it divides the hoof but does not chew the cud, is unclean for you. You shall not eat their meat, and you shall not touch their carcasses.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Of all that live in water you may eat these: whatever has fins and scales you may eat.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And whatever does not have fins and scales you shall not eat; it is unclean for you.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> You may eat any clean birds.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> But these are the ones that you shall not eat: the eagle, the vulture, the osprey,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> the buzzard, the kite, of any kind;</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> every raven of any kind;</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> the ostrich, the nighthawk, the sea gull, the hawk, of any kind;</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> the little owl and the great owl, the water hen</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> and the desert owl, the carrion vulture and the cormorant, </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> the stork, the heron, of any kind; the hoopoe and the bat. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> And all winged insects are unclean for you; they shall not be eaten.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> You may eat any clean winged creature.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> You shall not eat anything that dies of itself; you may give it to aliens residing in your towns for them to eat, or you may sell it to a foreigner. For you are a people holy to the LORD your God. You shall not boil a kid in its mother's milk.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Set apart a tithe of all the yield of your seed that is brought in yearly from the field.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> In the presence of the LORD your God, in the place that he will choose as a dwelling for his name, you shall eat the tithe of your grain, your wine, and your oil, as well as the firstlings of your herd and flock, so that you may learn to fear the LORD your God always.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> But if, when the LORD your God has blessed you, the distance is so great that you are unable to transport it, because the place where the LORD your God will choose to set his name is too far away from you,</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> then you may turn it into money. With the money secure in hand, go to the place that the LORD your God will choose;</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> spend the money for whatever you wish-- oxen, sheep, wine, strong drink, or whatever you desire. And you shall eat there in the presence of the LORD your God, you and your household rejoicing together.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> As for the Levites resident in your towns, do not neglect them, because they have no allotment or inheritance with you.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Every third year you shall bring out the full tithe of your produce for that year, and store it within your towns;</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> the Levites, because they have no allotment or inheritance with you, as well as the resident aliens, the orphans, and the widows in your towns, may come and eat their fill so that the LORD your God may bless you in all the work that you undertake.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"15\">\r\n\t\t\t<VERS vnumber=\"1\"> Every seventh year you shall grant a remission of debts.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And this is the manner of the remission: every creditor shall remit the claim that is held against a neighbor, not exacting it of a neighbor who is a member of the community, because the LORD's remission has been proclaimed.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Of a foreigner you may exact it, but you must remit your claim on whatever any member of your community owes you.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> There will, however, be no one in need among you, because the LORD is sure to bless you in the land that the LORD your God is giving you as a possession to occupy,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> if only you will obey the LORD your God by diligently observing this entire commandment that I command you today.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> When the LORD your God has blessed you, as he promised you, you will lend to many nations, but you will not borrow; you will rule over many nations, but they will not rule over you.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> If there is among you anyone in need, a member of your community in any of your towns within the land that the LORD your God is giving you, do not be hard-hearted or tight-fisted toward your needy neighbor.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> You should rather open your hand, willingly lending enough to meet the need, whatever it may be.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Be careful that you do not entertain a mean thought, thinking, \"The seventh year, the year of remission, is near,\" and therefore view your needy neighbor with hostility and give nothing; your neighbor might cry to the LORD against you, and you would incur guilt.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Give liberally and be ungrudging when you do so, for on this account the LORD your God will bless you in all your work and in all that you undertake.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Since there will never cease to be some in need on the earth, I therefore command you, \"Open your hand to the poor and needy neighbor in your land.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> If a member of your community, whether a Hebrew man or a Hebrew woman, is sold to you and works for you six years, in the seventh year you shall set that person free. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And when you send a male slave out from you a free person, you shall not send him out empty-handed. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Provide liberally out of your flock, your threshing floor, and your wine press, thus giving to him some of the bounty with which the LORD your God has blessed you.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Remember that you were a slave in the land of Egypt, and the LORD your God redeemed you; for this reason I lay this command upon you today.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> But if he says to you, \"I will not go out from you,\" because he loves you and your household, since he is well off with you,</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> then you shall take an awl and thrust it through his earlobe into the door, and he shall be your slave forever. You shall do the same with regard to your female slave. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Do not consider it a hardship when you send them out from you free persons, because for six years they have given you services worth the wages of hired laborers; and the LORD your God will bless you in all that you do.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Every firstling male born of your herd and flock you shall consecrate to the LORD your God; you shall not do work with your firstling ox nor shear the firstling of your flock.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> You shall eat it, you together with your household, in the presence of the LORD your God year by year at the place that the LORD will choose.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> But if it has any defect-- any serious defect, such as lameness or blindness-- you shall not sacrifice it to the LORD your God;</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> within your towns you may eat it, the unclean and the clean alike, as you would a gazelle or deer.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Its blood, however, you must not eat; you shall pour it out on the ground like water.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"16\">\r\n\t\t\t<VERS vnumber=\"1\"> Observe the month of Abib by keeping the passover for the LORD your God, for in the month of Abib the LORD your God brought you out of Egypt by night. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> You shall offer the passover sacrifice for the LORD your God, from the flock and the herd, at the place that the LORD will choose as a dwelling for his name.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> You must not eat with it anything leavened. For seven days you shall eat unleavened bread with it-- the bread of affliction-- because you came out of the land of Egypt in great haste, so that all the days of your life you may remember the day of your departure from the land of Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> No leaven shall be seen with you in all your territory for seven days; and none of the meat of what you slaughter on the evening of the first day shall remain until morning.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> You are not permitted to offer the passover sacrifice within any of your towns that the LORD your God is giving you.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> But at the place that the LORD your God will choose as a dwelling for his name, only there shall you offer the passover sacrifice, in the evening at sunset, the time of day when you departed from Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> You shall cook it and eat it at the place that the LORD your God will choose; the next morning you may go back to your tents.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> For six days you shall continue to eat unleavened bread, and on the seventh day there shall be a solemn assembly for the LORD your God, when you shall do no work.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> You shall count seven weeks; begin to count the seven weeks from the time the sickle is first put to the standing grain.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then you shall keep the festival of weeks for the LORD your God, contributing a freewill offering in proportion to the blessing that you have received from the LORD your God.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Rejoice before the LORD your God-- you and your sons and your daughters, your male and female slaves, the Levites resident in your towns, as well as the strangers, the orphans, and the widows who are among you-- at the place that the LORD your God will choose as a dwelling for his name.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Remember that you were a slave in Egypt, and diligently observe these statutes.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> You shall keep the festival of booths for seven days, when you have gathered in the produce from your threshing floor and your wine press. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Rejoice during your festival, you and your sons and your daughters, your male and female slaves, as well as the Levites, the strangers, the orphans, and the widows resident in your towns.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Seven days you shall keep the festival for the LORD your God at the place that the LORD will choose; for the LORD your God will bless you in all your produce and in all your undertakings, and you shall surely celebrate.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Three times a year all your males shall appear before the LORD your God at the place that he will choose: at the festival of unleavened bread, at the festival of weeks, and at the festival of booths. They shall not appear before the LORD empty-handed; </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> all shall give as they are able, according to the blessing of the LORD your God that he has given you.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> You shall appoint judges and officials throughout your tribes, in all your towns that the LORD your God is giving you, and they shall render just decisions for the people.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> You must not distort justice; you must not show partiality; and you must not accept bribes, for a bribe blinds the eyes of the wise and subverts the cause of those who are in the right.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Justice, and only justice, you shall pursue, so that you may live and occupy the land that the LORD your God is giving you.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> You shall not plant any tree as a sacred pole beside the altar that you make for the LORD your God; </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> nor shall you set up a stone pillar-- things that the LORD your God hates.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"17\">\r\n\t\t\t<VERS vnumber=\"1\"> You must not sacrifice to the LORD your God an ox or a sheep that has a defect, anything seriously wrong; for that is abhorrent to the LORD your God.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> If there is found among you, in one of your towns that the LORD your God is giving you, a man or woman who does what is evil in the sight of the LORD your God, and transgresses his covenant</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> by going to serve other gods and worshiping them-- whether the sun or the moon or any of the host of heaven, which I have forbidden--</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> and if it is reported to you or you hear of it, and you make a thorough inquiry, and the charge is proved true that such an abhorrent thing has occurred in Israel,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> then you shall bring out to your gates that man or that woman who has committed this crime and you shall stone the man or woman to death.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> On the evidence of two or three witnesses the death sentence shall be executed; a person must not be put to death on the evidence of only one witness.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The hands of the witnesses shall be the first raised against the person to execute the death penalty, and afterward the hands of all the people. So you shall purge the evil from your midst.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> If a judicial decision is too difficult for you to make between one kind of bloodshed and another, one kind of legal right and another, or one kind of assault and another-- any such matters of dispute in your towns-- then you shall immediately go up to the place that the LORD your God will choose,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> where you shall consult with the levitical priests and the judge who is in office in those days; they shall announce to you the decision in the case.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Carry out exactly the decision that they announce to you from the place that the LORD will choose, diligently observing everything they instruct you.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> You must carry out fully the law that they interpret for you or the ruling that they announce to you; do not turn aside from the decision that they announce to you, either to the right or to the left.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> As for anyone who presumes to disobey the priest appointed to minister there to the LORD your God, or the judge, that person shall die. So you shall purge the evil from Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> All the people will hear and be afraid, and will not act presumptuously again.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> When you have come into the land that the LORD your God is giving you, and have taken possession of it and settled in it, and you say, \"I will set a king over me, like all the nations that are around me,\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> you may indeed set over you a king whom the LORD your God will choose. One of your own community you may set as king over you; you are not permitted to put a foreigner over you, who is not of your own community.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Even so, he must not acquire many horses for himself, or return the people to Egypt in order to acquire more horses, since the LORD has said to you, \"You must never return that way again.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> And he must not acquire many wives for himself, or else his heart will turn away; also silver and gold he must not acquire in great quantity for himself.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> When he has taken the throne of his kingdom, he shall have a copy of this law written for him in the presence of the levitical priests.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> It shall remain with him and he shall read in it all the days of his life, so that he may learn to fear the LORD his God, diligently observing all the words of this law and these statutes,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> neither exalting himself above other members of the community nor turning aside from the commandment, either to the right or to the left, so that he and his descendants may reign long over his kingdom in Israel.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"18\">\r\n\t\t\t<VERS vnumber=\"1\"> The levitical priests, the whole tribe of Levi, shall have no allotment or inheritance within Israel. They may eat the sacrifices that are the LORD's portion </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> but they shall have no inheritance among the other members of the community; the LORD is their inheritance, as he promised them.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> This shall be the priests' due from the people, from those offering a sacrifice, whether an ox or a sheep: they shall give to the priest the shoulder, the two jowls, and the stomach.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The first fruits of your grain, your wine, and your oil, as well as the first of the fleece of your sheep, you shall give him.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> For the LORD your God has chosen Levi out of all your tribes, to stand and minister in the name of the LORD, him and his sons for all time. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> If a Levite leaves any of your towns, from wherever he has been residing in Israel, and comes to the place that the LORD will choose (and he may come whenever he wishes),</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> then he may minister in the name of the LORD his God, like all his fellow-Levites who stand to minister there before the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> They shall have equal portions to eat, even though they have income from the sale of family possessions. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> When you come into the land that the LORD your God is giving you, you must not learn to imitate the abhorrent practices of those nations.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> No one shall be found among you who makes a son or daughter pass through fire, or who practices divination, or is a soothsayer, or an augur, or a sorcerer,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> or one who casts spells, or who consults ghosts or spirits, or who seeks oracles from the dead.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> For whoever does these things is abhorrent to the LORD; it is because of such abhorrent practices that the LORD your God is driving them out before you.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> You must remain completely loyal to the LORD your God.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Although these nations that you are about to dispossess do give heed to soothsayers and diviners, as for you, the LORD your God does not permit you to do so.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The LORD your God will raise up for you a prophet like me from among your own people; you shall heed such a prophet. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> This is what you requested of the LORD your God at Horeb on the day of the assembly when you said: \"If I hear the voice of the LORD my God any more, or ever again see this great fire, I will die.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then the LORD replied to me: \"They are right in what they have said.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> I will raise up for them a prophet like you from among their own people; I will put my words in the mouth of the prophet, who shall speak to them everything that I command. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Anyone who does not heed the words that the prophet shall speak in my name, I myself will hold accountable. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> But any prophet who speaks in the name of other gods, or who presumes to speak in my name a word that I have not commanded the prophet to speak-- that prophet shall die.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> You may say to yourself, \"How can we recognize a word that the LORD has not spoken?\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> If a prophet speaks in the name of the LORD but the thing does not take place or prove true, it is a word that the LORD has not spoken. The prophet has spoken it presumptuously; do not be frightened by it.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"19\">\r\n\t\t\t<VERS vnumber=\"1\"> When the LORD your God has cut off the nations whose land the LORD your God is giving you, and you have dispossessed them and settled in their towns and in their houses,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> you shall set apart three cities in the land that the LORD your God is giving you to possess.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> You shall calculate the distances and divide into three regions the land that the LORD your God gives you as a possession, so that any homicide can flee to one of them. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Now this is the case of a homicide who might flee there and live, that is, someone who has killed another person unintentionally when the two had not been at enmity before:</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Suppose someone goes into the forest with another to cut wood, and when one of them swings the ax to cut down a tree, the head slips from the handle and strikes the other person who then dies; the killer may flee to one of these cities and live.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> But if the distance is too great, the avenger of blood in hot anger might pursue and overtake and put the killer to death, although a death sentence was not deserved, since the two had not been at enmity before.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Therefore I command you: You shall set apart three cities.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> If the LORD your God enlarges your territory, as he swore to your ancestors-- and he will give you all the land that he promised your ancestors to give you,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> provided you diligently observe this entire commandment that I command you today, by loving the LORD your God and walking always in his ways-- then you shall add three more cities to these three,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> so that the blood of an innocent person may not be shed in the land that the LORD your God is giving you as an inheritance, thereby bringing bloodguilt upon you.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But if someone at enmity with another lies in wait and attacks and takes the life of that person, and flees into one of these cities,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> then the elders of the killer's city shall send to have the culprit taken from there and handed over to the avenger of blood to be put to death.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Show no pity; you shall purge the guilt of innocent blood from Israel, so that it may go well with you.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> You must not move your neighbor's boundary marker, set up by former generations, on the property that will be allotted to you in the land that the LORD your God is giving you to possess.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> A single witness shall not suffice to convict a person of any crime or wrongdoing in connection with any offense that may be committed. Only on the evidence of two or three witnesses shall a charge be sustained.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> If a malicious witness comes forward to accuse someone of wrongdoing,</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> then both parties to the dispute shall appear before the LORD, before the priests and the judges who are in office in those days,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> and the judges shall make a thorough inquiry. If the witness is a false witness, having testified falsely against another,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> then you shall do to the false witness just as the false witness had meant to do to the other. So you shall purge the evil from your midst.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The rest shall hear and be afraid, and a crime such as this shall never again be committed among you.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Show no pity: life for life, eye for eye, tooth for tooth, hand for hand, foot for foot.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"20\">\r\n\t\t\t<VERS vnumber=\"1\"> When you go out to war against your enemies, and see horses and chariots, an army larger than your own, you shall not be afraid of them; for the LORD your God is with you, who brought you up from the land of Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Before you engage in battle, the priest shall come forward and speak to the troops,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> and shall say to them: \"Hear, O Israel! Today you are drawing near to do battle against your enemies. Do not lose heart, or be afraid, or panic, or be in dread of them;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> for it is the LORD your God who goes with you, to fight for you against your enemies, to give you victory.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then the officials shall address the troops, saying, \"Has anyone built a new house but not dedicated it? He should go back to his house, or he might die in the battle and another dedicate it.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Has anyone planted a vineyard but not yet enjoyed its fruit? He should go back to his house, or he might die in the battle and another be first to enjoy its fruit.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Has anyone become engaged to a woman but not yet married her? He should go back to his house, or he might die in the battle and another marry her.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The officials shall continue to address the troops, saying, \"Is anyone afraid or disheartened? He should go back to his house, or he might cause the heart of his comrades to melt like his own.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> When the officials have finished addressing the troops, then the commanders shall take charge of them.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> When you draw near to a town to fight against it, offer it terms of peace.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> If it accepts your terms of peace and surrenders to you, then all the people in it shall serve you at forced labor.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> If it does not submit to you peacefully, but makes war against you, then you shall besiege it;</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> and when the LORD your God gives it into your hand, you shall put all its males to the sword.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> You may, however, take as your booty the women, the children, livestock, and everything else in the town, all its spoil. You may enjoy the spoil of your enemies, which the LORD your God has given you.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Thus you shall treat all the towns that are very far from you, which are not towns of the nations here.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> But as for the towns of these peoples that the LORD your God is giving you as an inheritance, you must not let anything that breathes remain alive.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> You shall annihilate them-- the Hittites and the Amorites, the Canaanites and the Perizzites, the Hivites and the Jebusites-- just as the LORD your God has commanded,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> so that they may not teach you to do all the abhorrent things that they do for their gods, and you thus sin against the LORD your God.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> If you besiege a town for a long time, making war against it in order to take it, you must not destroy its trees by wielding an ax against them. Although you may take food from them, you must not cut them down. Are trees in the field human beings that they should come under siege from you?</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> You may destroy only the trees that you know do not produce food; you may cut them down for use in building siegeworks against the town that makes war with you, until it falls.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"21\">\r\n\t\t\t<VERS vnumber=\"1\"> If, in the land that the LORD your God is giving you to possess, a body is found lying in open country, and it is not known who struck the person down,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> then your elders and your judges shall come out to measure the distances to the towns that are near the body.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The elders of the town nearest the body shall take a heifer that has never been worked, one that has not pulled in the yoke;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> the elders of that town shall bring the heifer down to a wadi with running water, which is neither plowed nor sown, and shall break the heifer's neck there in the wadi.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then the priests, the sons of Levi, shall come forward, for the LORD your God has chosen them to minister to him and to pronounce blessings in the name of the LORD, and by their decision all cases of dispute and assault shall be settled.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> All the elders of that town nearest the body shall wash their hands over the heifer whose neck was broken in the wadi,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> and they shall declare: \"Our hands did not shed this blood, nor were we witnesses to it.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Absolve, O LORD, your people Israel, whom you redeemed; do not let the guilt of innocent blood remain in the midst of your people Israel.\" Then they will be absolved of bloodguilt.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> So you shall purge the guilt of innocent blood from your midst, because you must do what is right in the sight of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> When you go out to war against your enemies, and the LORD your God hands them over to you and you take them captive,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> suppose you see among the captives a beautiful woman whom you desire and want to marry,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> and so you bring her home to your house: she shall shave her head, pare her nails,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> discard her captive's garb, and shall remain in your house a full month, mourning for her father and mother; after that you may go in to her and be her husband, and she shall be your wife.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But if you are not satisfied with her, you shall let her go free and not sell her for money. You must not treat her as a slave, since you have dishonored her.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> If a man has two wives, one of them loved and the other disliked, and if both the loved and the disliked have borne him sons, the firstborn being the son of the one who is disliked,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> then on the day when he wills his possessions to his sons, he is not permitted to treat the son of the loved as the firstborn in preference to the son of the disliked, who is the firstborn.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> He must acknowledge as firstborn the son of the one who is disliked, giving him a double portion of all that he has; since he is the first issue of his virility, the right of the firstborn is his. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> If someone has a stubborn and rebellious son who will not obey his father and mother, who does not heed them when they discipline him,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> then his father and his mother shall take hold of him and bring him out to the elders of his town at the gate of that place.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> They shall say to the elders of his town, \"This son of ours is stubborn and rebellious. He will not obey us. He is a glutton and a drunkard.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then all the men of the town shall stone him to death. So you shall purge the evil from your midst; and all Israel will hear, and be afraid.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> When someone is convicted of a crime punishable by death and is executed, and you hang him on a tree,</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> his corpse must not remain all night upon the tree; you shall bury him that same day, for anyone hung on a tree is under God's curse. You must not defile the land that the LORD your God is giving you for possession.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"22\">\r\n\t\t\t<VERS vnumber=\"1\"> You shall not watch your neighbor's ox or sheep straying away and ignore them; you shall take them back to their owner.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> If the owner does not reside near you or you do not know who the owner is, you shall bring it to your own house, and it shall remain with you until the owner claims it; then you shall return it.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> You shall do the same with a neighbor's donkey; you shall do the same with a neighbor's garment; and you shall do the same with anything else that your neighbor loses and you find. You may not withhold your help.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> You shall not see your neighbor's donkey or ox fallen on the road and ignore it; you shall help to lift it up.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> A woman shall not wear a man's apparel, nor shall a man put on a woman's garment; for whoever does such things is abhorrent to the LORD your God.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> If you come on a bird's nest, in any tree or on the ground, with fledglings or eggs, with the mother sitting on the fledglings or on the eggs, you shall not take the mother with the young.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Let the mother go, taking only the young for yourself, in order that it may go well with you and you may live long.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> When you build a new house, you shall make a parapet for your roof; otherwise you might have bloodguilt on your house, if anyone should fall from it.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> You shall not sow your vineyard with a second kind of seed, or the whole yield will have to be forfeited, both the crop that you have sown and the yield of the vineyard itself.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> You shall not plow with an ox and a donkey yoked together.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> You shall not wear clothes made of wool and linen woven together.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> You shall make tassels on the four corners of the cloak with which you cover yourself.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Suppose a man marries a woman, but after going in to her, he dislikes her</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> and makes up charges against her, slandering her by saying, \"I married this woman; but when I lay with her, I did not find evidence of her virginity.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The father of the young woman and her mother shall then submit the evidence of the young woman's virginity to the elders of the city at the gate.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The father of the young woman shall say to the elders: \"I gave my daughter in marriage to this man but he dislikes her;</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> now he has made up charges against her, saying, 'I did not find evidence of your daughter's virginity.' But here is the evidence of my daughter's virginity.\" Then they shall spread out the cloth before the elders of the town.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The elders of that town shall take the man and punish him;</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> they shall fine him one hundred shekels of silver (which they shall give to the young woman's father) because he has slandered a virgin of Israel. She shall remain his wife; he shall not be permitted to divorce her as long as he lives.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> If, however, this charge is true, that evidence of the young woman's virginity was not found,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> then they shall bring the young woman out to the entrance of her father's house and the men of her town shall stone her to death, because she committed a disgraceful act in Israel by prostituting herself in her father's house. So you shall purge the evil from your midst.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> If a man is caught lying with the wife of another man, both of them shall die, the man who lay with the woman as well as the woman. So you shall purge the evil from Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> If there is a young woman, a virgin already engaged to be married, and a man meets her in the town and lies with her,</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> you shall bring both of them to the gate of that town and stone them to death, the young woman because she did not cry for help in the town and the man because he violated his neighbor's wife. So you shall purge the evil from your midst.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> But if the man meets the engaged woman in the open country, and the man seizes her and lies with her, then only the man who lay with her shall die.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> You shall do nothing to the young woman; the young woman has not committed an offense punishable by death, because this case is like that of someone who attacks and murders a neighbor.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Since he found her in the open country, the engaged woman may have cried for help, but there was no one to rescue her.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> If a man meets a virgin who is not engaged, and seizes her and lies with her, and they are caught in the act,</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> the man who lay with her shall give fifty shekels of silver to the young woman's father, and she shall become his wife. Because he violated her he shall not be permitted to divorce her as long as he lives.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> A man shall not marry his father's wife, thereby violating his father's rights. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"23\">\r\n\t\t\t<VERS vnumber=\"1\"> No one whose testicles are crushed or whose penis is cut off shall be admitted to the assembly of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Those born of an illicit union shall not be admitted to the assembly of the LORD. Even to the tenth generation, none of their descendants shall be admitted to the assembly of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> No Ammonite or Moabite shall be admitted to the assembly of the LORD. Even to the tenth generation, none of their descendants shall be admitted to the assembly of the LORD,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> because they did not meet you with food and water on your journey out of Egypt, and because they hired against you Balaam son of Beor, from Pethor of Mesopotamia, to curse you.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> (Yet the LORD your God refused to heed Balaam; the LORD your God turned the curse into a blessing for you, because the LORD your God loved you.)</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> You shall never promote their welfare or their prosperity as long as you live.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> You shall not abhor any of the Edomites, for they are your kin. You shall not abhor any of the Egyptians, because you were an alien residing in their land.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The children of the third generation that are born to them may be admitted to the assembly of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> When you are encamped against your enemies you shall guard against any impropriety.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> If one of you becomes unclean because of a nocturnal emission, then he shall go outside the camp; he must not come within the camp.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> When evening comes, he shall wash himself with water, and when the sun has set, he may come back into the camp.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> You shall have a designated area outside the camp to which you shall go.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> With your utensils you shall have a trowel; when you relieve yourself outside, you shall dig a hole with it and then cover up your excrement.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Because the LORD your God travels along with your camp, to save you and to hand over your enemies to you, therefore your camp must be holy, so that he may not see anything indecent among you and turn away from you.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Slaves who have escaped to you from their owners shall not be given back to them.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> They shall reside with you, in your midst, in any place they choose in any one of your towns, wherever they please; you shall not oppress them.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> None of the daughters of Israel shall be a temple prostitute; none of the sons of Israel shall be a temple prostitute.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> You shall not bring the fee of a prostitute or the wages of a male prostitute into the house of the LORD your God in payment for any vow, for both of these are abhorrent to the LORD your God. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> You shall not charge interest on loans to another Israelite, interest on money, interest on provisions, interest on anything that is lent.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> On loans to a foreigner you may charge interest, but on loans to another Israelite you may not charge interest, so that the LORD your God may bless you in all your undertakings in the land that you are about to enter and possess.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> If you make a vow to the LORD your God, do not postpone fulfilling it; for the LORD your God will surely require it of you, and you would incur guilt.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> But if you refrain from vowing, you will not incur guilt.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Whatever your lips utter you must diligently perform, just as you have freely vowed to the LORD your God with your own mouth.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> If you go into your neighbor's vineyard, you may eat your fill of grapes, as many as you wish, but you shall not put any in a container.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> If you go into your neighbor's standing grain, you may pluck the ears with your hand, but you shall not put a sickle to your neighbor's standing grain.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"24\">\r\n\t\t\t<VERS vnumber=\"1\"> Suppose a man enters into marriage with a woman, but she does not please him because he finds something objectionable about her, and so he writes her a certificate of divorce, puts it in her hand, and sends her out of his house; she then leaves his house</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> and goes off to become another man's wife.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then suppose the second man dislikes her, writes her a bill of divorce, puts it in her hand, and sends her out of his house (or the second man who married her dies);</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> her first husband, who sent her away, is not permitted to take her again to be his wife after she has been defiled; for that would be abhorrent to the LORD, and you shall not bring guilt on the land that the LORD your God is giving you as a possession.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> When a man is newly married, he shall not go out with the army or be charged with any related duty. He shall be free at home one year, to be happy with the wife whom he has married.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> No one shall take a mill or an upper millstone in pledge, for that would be taking a life in pledge.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> If someone is caught kidnaping another Israelite, enslaving or selling the Israelite, then that kidnaper shall die. So you shall purge the evil from your midst.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Guard against an outbreak of a leprous skin disease by being very careful; you shall carefully observe whatever the levitical priests instruct you, just as I have commanded them.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Remember what the LORD your God did to Miriam on your journey out of Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> When you make your neighbor a loan of any kind, you shall not go into the house to take the pledge.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> You shall wait outside, while the person to whom you are making the loan brings the pledge out to you.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> If the person is poor, you shall not sleep in the garment given you as the pledge. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> You shall give the pledge back by sunset, so that your neighbor may sleep in the cloak and bless you; and it will be to your credit before the LORD your God.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> You shall not withhold the wages of poor and needy laborers, whether other Israelites or aliens who reside in your land in one of your towns.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> You shall pay them their wages daily before sunset, because they are poor and their livelihood depends on them; otherwise they might cry to the LORD against you, and you would incur guilt.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Parents shall not be put to death for their children, nor shall children be put to death for their parents; only for their own crimes may persons be put to death.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> You shall not deprive a resident alien or an orphan of justice; you shall not take a widow's garment in pledge.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Remember that you were a slave in Egypt and the LORD your God redeemed you from there; therefore I command you to do this.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> When you reap your harvest in your field and forget a sheaf in the field, you shall not go back to get it; it shall be left for the alien, the orphan, and the widow, so that the LORD your God may bless you in all your undertakings.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> When you beat your olive trees, do not strip what is left; it shall be for the alien, the orphan, and the widow.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> When you gather the grapes of your vineyard, do not glean what is left; it shall be for the alien, the orphan, and the widow.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Remember that you were a slave in the land of Egypt; therefore I am commanding you to do this.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"25\">\r\n\t\t\t<VERS vnumber=\"1\"> Suppose two persons have a dispute and enter into litigation, and the judges decide between them, declaring one to be in the right and the other to be in the wrong.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> If the one in the wrong deserves to be flogged, the judge shall make that person lie down and be beaten in his presence with the number of lashes proportionate to the offense.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Forty lashes may be given but not more; if more lashes than these are given, your neighbor will be degraded in your sight.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> You shall not muzzle an ox while it is treading out the grain.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> When brothers reside together, and one of them dies and has no son, the wife of the deceased shall not be married outside the family to a stranger. Her husband's brother shall go in to her, taking her in marriage, and performing the duty of a husband's brother to her,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> and the firstborn whom she bears shall succeed to the name of the deceased brother, so that his name may not be blotted out of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But if the man has no desire to marry his brother's widow, then his brother's widow shall go up to the elders at the gate and say, \"My husband's brother refuses to perpetuate his brother's name in Israel; he will not perform the duty of a husband's brother to me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then the elders of his town shall summon him and speak to him. If he persists, saying, \"I have no desire to marry her,\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> then his brother's wife shall go up to him in the presence of the elders, pull his sandal off his foot, spit in his face, and declare, \"This is what is done to the man who does not build up his brother's house.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Throughout Israel his family shall be known as \"the house of him whose sandal was pulled off.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> If men get into a fight with one another, and the wife of one intervenes to rescue her husband from the grip of his opponent by reaching out and seizing his genitals,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> you shall cut off her hand; show no pity.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> You shall not have in your bag two kinds of weights, large and small.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> You shall not have in your house two kinds of measures, large and small.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> You shall have only a full and honest weight; you shall have only a full and honest measure, so that your days may be long in the land that the LORD your God is giving you.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> For all who do such things, all who act dishonestly, are abhorrent to the LORD your God.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Remember what Amalek did to you on your journey out of Egypt,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> how he attacked you on the way, when you were faint and weary, and struck down all who lagged behind you; he did not fear God.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Therefore when the LORD your God has given you rest from all your enemies on every hand, in the land that the LORD your God is giving you as an inheritance to possess, you shall blot out the remembrance of Amalek from under heaven; do not forget.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"26\">\r\n\t\t\t<VERS vnumber=\"1\"> When you have come into the land that the LORD your God is giving you as an inheritance to possess, and you possess it, and settle in it,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> you shall take some of the first of all the fruit of the ground, which you harvest from the land that the LORD your God is giving you, and you shall put it in a basket and go to the place that the LORD your God will choose as a dwelling for his name.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> You shall go to the priest who is in office at that time, and say to him, \"Today I declare to the LORD your God that I have come into the land that the LORD swore to our ancestors to give us.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> When the priest takes the basket from your hand and sets it down before the altar of the LORD your God,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> you shall make this response before the LORD your God: \"A wandering Aramean was my ancestor; he went down into Egypt and lived there as an alien, few in number, and there he became a great nation, mighty and populous.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> When the Egyptians treated us harshly and afflicted us, by imposing hard labor on us,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> we cried to the LORD, the God of our ancestors; the LORD heard our voice and saw our affliction, our toil, and our oppression.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The LORD brought us out of Egypt with a mighty hand and an outstretched arm, with a terrifying display of power, and with signs and wonders;</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> and he brought us into this place and gave us this land, a land flowing with milk and honey.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> So now I bring the first of the fruit of the ground that you, O LORD, have given me.\" You shall set it down before the LORD your God and bow down before the LORD your God.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then you, together with the Levites and the aliens who reside among you, shall celebrate with all the bounty that the LORD your God has given to you and to your house.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> When you have finished paying all the tithe of your produce in the third year (which is the year of the tithe), giving it to the Levites, the aliens, the orphans, and the widows, so that they may eat their fill within your towns,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> then you shall say before the LORD your God: \"I have removed the sacred portion from the house, and I have given it to the Levites, the resident aliens, the orphans, and the widows, in accordance with your entire commandment that you commanded me; I have neither transgressed nor forgotten any of your commandments:</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> I have not eaten of it while in mourning; I have not removed any of it while I was unclean; and I have not offered any of it to the dead. I have obeyed the LORD my God, doing just as you commanded me.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Look down from your holy habitation, from heaven, and bless your people Israel and the ground that you have given us, as you swore to our ancestors-- a land flowing with milk and honey.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> This very day the LORD your God is commanding you to observe these statutes and ordinances; so observe them diligently with all your heart and with all your soul.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Today you have obtained the LORD's agreement: to be your God; and for you to walk in his ways, to keep his statutes, his commandments, and his ordinances, and to obey him.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Today the LORD has obtained your agreement: to be his treasured people, as he promised you, and to keep his commandments;</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> for him to set you high above all nations that he has made, in praise and in fame and in honor; and for you to be a people holy to the LORD your God, as he promised.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"27\">\r\n\t\t\t<VERS vnumber=\"1\"> Then Moses and the elders of Israel charged all the people as follows: Keep the entire commandment that I am commanding you today.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> On the day that you cross over the Jordan into the land that the LORD your God is giving you, you shall set up large stones and cover them with plaster.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> You shall write on them all the words of this law when you have crossed over, to enter the land that the LORD your God is giving you, a land flowing with milk and honey, as the LORD, the God of your ancestors, promised you.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> So when you have crossed over the Jordan, you shall set up these stones, about which I am commanding you today, on Mount Ebal, and you shall cover them with plaster.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> And you shall build an altar there to the LORD your God, an altar of stones on which you have not used an iron tool.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> You must build the altar of the LORD your God of unhewn stones. Then offer up burnt offerings on it to the LORD your God, </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> make sacrifices of well-being, and eat them there, rejoicing before the LORD your God.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> You shall write on the stones all the words of this law very clearly.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then Moses and the levitical priests spoke to all Israel, saying: Keep silence and hear, O Israel! This very day you have become the people of the LORD your God.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Therefore obey the LORD your God, observing his commandments and his statutes that I am commanding you today.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The same day Moses charged the people as follows:</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> When you have crossed over the Jordan, these shall stand on Mount Gerizim for the blessing of the people: Simeon, Levi, Judah, Issachar, Joseph, and Benjamin.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And these shall stand on Mount Ebal for the curse: Reuben, Gad, Asher, Zebulun, Dan, and Naphtali.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then the Levites shall declare in a loud voice to all the Israelites:</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> \"Cursed be anyone who makes an idol or casts an image, anything abhorrent to the LORD, the work of an artisan, and sets it up in secret.\" All the people shall respond, saying, \"Amen!\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> \"Cursed be anyone who dishonors father or mother.\" All the people shall say, \"Amen!\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> \"Cursed be anyone who moves a neighbor's boundary marker.\" All the people shall say, \"Amen!\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> \"Cursed be anyone who misleads a blind person on the road.\" All the people shall say, \"Amen!\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> \"Cursed be anyone who deprives the alien, the orphan, and the widow of justice.\" All the people shall say, \"Amen!\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> \"Cursed be anyone who lies with his father's wife, because he has violated his father's rights.\" All the people shall say, \"Amen!\" </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> \"Cursed be anyone who lies with any animal.\" All the people shall say, \"Amen!\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> \"Cursed be anyone who lies with his sister, whether the daughter of his father or the daughter of his mother.\" All the people shall say, \"Amen!\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> \"Cursed be anyone who lies with his mother-in-law.\" All the people shall say, \"Amen!\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> \"Cursed be anyone who strikes down a neighbor in secret.\" All the people shall say, \"Amen!\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> \"Cursed be anyone who takes a bribe to shed innocent blood.\" All the people shall say, \"Amen!\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> \"Cursed be anyone who does not uphold the words of this law by observing them.\" All the people shall say, \"Amen!\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"28\">\r\n\t\t\t<VERS vnumber=\"1\"> If you will only obey the LORD your God, by diligently observing all his commandments that I am commanding you today, the LORD your God will set you high above all the nations of the earth;</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> all these blessings shall come upon you and overtake you, if you obey the LORD your God:</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Blessed shall you be in the city, and blessed shall you be in the field.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Blessed shall be the fruit of your womb, the fruit of your ground, and the fruit of your livestock, both the increase of your cattle and the issue of your flock.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Blessed shall be your basket and your kneading bowl.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Blessed shall you be when you come in, and blessed shall you be when you go out.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The LORD will cause your enemies who rise against you to be defeated before you; they shall come out against you one way, and flee before you seven ways.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The LORD will command the blessing upon you in your barns, and in all that you undertake; he will bless you in the land that the LORD your God is giving you.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The LORD will establish you as his holy people, as he has sworn to you, if you keep the commandments of the LORD your God and walk in his ways.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> All the peoples of the earth shall see that you are called by the name of the LORD, and they shall be afraid of you.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The LORD will make you abound in prosperity, in the fruit of your womb, in the fruit of your livestock, and in the fruit of your ground in the land that the LORD swore to your ancestors to give you.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The LORD will open for you his rich storehouse, the heavens, to give the rain of your land in its season and to bless all your undertakings. You will lend to many nations, but you will not borrow.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The LORD will make you the head, and not the tail; you shall be only at the top, and not at the bottom-- if you obey the commandments of the LORD your God, which I am commanding you today, by diligently observing them,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> and if you do not turn aside from any of the words that I am commanding you today, either to the right or to the left, following other gods to serve them.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> But if you will not obey the LORD your God by diligently observing all his commandments and decrees, which I am commanding you today, then all these curses shall come upon you and overtake you:</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Cursed shall you be in the city, and cursed shall you be in the field.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Cursed shall be your basket and your kneading bowl.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Cursed shall be the fruit of your womb, the fruit of your ground, the increase of your cattle and the issue of your flock.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Cursed shall you be when you come in, and cursed shall you be when you go out.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The LORD will send upon you disaster, panic, and frustration in everything you attempt to do, until you are destroyed and perish quickly, on account of the evil of your deeds, because you have forsaken me.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> The LORD will make the pestilence cling to you until it has consumed you off the land that you are entering to possess.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The LORD will afflict you with consumption, fever, inflammation, with fiery heat and drought, and with blight and mildew; they shall pursue you until you perish.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> The sky over your head shall be bronze, and the earth under you iron.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> The LORD will change the rain of your land into powder, and only dust shall come down upon you from the sky until you are destroyed.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> The LORD will cause you to be defeated before your enemies; you shall go out against them one way and flee before them seven ways. You shall become an object of horror to all the kingdoms of the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Your corpses shall be food for every bird of the air and animal of the earth, and there shall be no one to frighten them away.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> The LORD will afflict you with the boils of Egypt, with ulcers, scurvy, and itch, of which you cannot be healed.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> The LORD will afflict you with madness, blindness, and confusion of mind;</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> you shall grope about at noon as blind people grope in darkness, but you shall be unable to find your way; and you shall be continually abused and robbed, without anyone to help.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> You shall become engaged to a woman, but another man shall lie with her. You shall build a house, but not live in it. You shall plant a vineyard, but not enjoy its fruit.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Your ox shall be butchered before your eyes, but you shall not eat of it. Your donkey shall be stolen in front of you, and shall not be restored to you. Your sheep shall be given to your enemies, without anyone to help you.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Your sons and daughters shall be given to another people, while you look on; you will strain your eyes looking for them all day but be powerless to do anything.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> A people whom you do not know shall eat up the fruit of your ground and of all your labors; you shall be continually abused and crushed,</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> and driven mad by the sight that your eyes shall see.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> The LORD will strike you on the knees and on the legs with grievous boils of which you cannot be healed, from the sole of your foot to the crown of your head.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> The LORD will bring you, and the king whom you set over you, to a nation that neither you nor your ancestors have known, where you shall serve other gods, of wood and stone.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> You shall become an object of horror, a proverb, and a byword among all the peoples where the LORD will lead you.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> You shall carry much seed into the field but shall gather little in, for the locust shall consume it.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> You shall plant vineyards and dress them, but you shall neither drink the wine nor gather the grapes, for the worm shall eat them.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> You shall have olive trees throughout all your territory, but you shall not anoint yourself with the oil, for your olives shall drop off.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> You shall have sons and daughters, but they shall not remain yours, for they shall go into captivity.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> All your trees and the fruit of your ground the cicada shall take over.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> Aliens residing among you shall ascend above you higher and higher, while you shall descend lower and lower.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> They shall lend to you but you shall not lend to them; they shall be the head and you shall be the tail.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> All these curses shall come upon you, pursuing and overtaking you until you are destroyed, because you did not obey the LORD your God, by observing the commandments and the decrees that he commanded you.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> They shall be among you and your descendants as a sign and a portent forever.</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> Because you did not serve the LORD your God joyfully and with gladness of heart for the abundance of everything,</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> therefore you shall serve your enemies whom the LORD will send against you, in hunger and thirst, in nakedness and lack of everything. He will put an iron yoke on your neck until he has destroyed you.</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> The LORD will bring a nation from far away, from the end of the earth, to swoop down on you like an eagle, a nation whose language you do not understand,</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> a grim-faced nation showing no respect to the old or favor to the young.</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> It shall consume the fruit of your livestock and the fruit of your ground until you are destroyed, leaving you neither grain, wine, and oil, nor the increase of your cattle and the issue of your flock, until it has made you perish.</VERS>\r\n\t\t\t<VERS vnumber=\"52\"> It shall besiege you in all your towns until your high and fortified walls, in which you trusted, come down throughout your land; it shall besiege you in all your towns throughout the land that the LORD your God has given you.</VERS>\r\n\t\t\t<VERS vnumber=\"53\"> In the desperate straits to which the enemy siege reduces you, you will eat the fruit of your womb, the flesh of your own sons and daughters whom the LORD your God has given you.</VERS>\r\n\t\t\t<VERS vnumber=\"54\"> Even the most refined and gentle of men among you will begrudge food to his own brother, to the wife whom he embraces, and to the last of his remaining children,</VERS>\r\n\t\t\t<VERS vnumber=\"55\"> giving to none of them any of the flesh of his children whom he is eating, because nothing else remains to him, in the desperate straits to which the enemy siege will reduce you in all your towns.</VERS>\r\n\t\t\t<VERS vnumber=\"56\"> She who is the most refined and gentle among you, so gentle and refined that she does not venture to set the sole of her foot on the ground, will begrudge food to the husband whom she embraces, to her own son, and to her own daughter,</VERS>\r\n\t\t\t<VERS vnumber=\"57\"> begrudging even the afterbirth that comes out from between her thighs, and the children that she bears, because she is eating them in secret for lack of anything else, in the desperate straits to which the enemy siege will reduce you in your towns.</VERS>\r\n\t\t\t<VERS vnumber=\"58\"> If you do not diligently observe all the words of this law that are written in this book, fearing this glorious and awesome name, the LORD your God,</VERS>\r\n\t\t\t<VERS vnumber=\"59\"> then the LORD will overwhelm both you and your offspring with severe and lasting afflictions and grievous and lasting maladies.</VERS>\r\n\t\t\t<VERS vnumber=\"60\"> He will bring back upon you all the diseases of Egypt, of which you were in dread, and they shall cling to you.</VERS>\r\n\t\t\t<VERS vnumber=\"61\"> Every other malady and affliction, even though not recorded in the book of this law, the LORD will inflict on you until you are destroyed.</VERS>\r\n\t\t\t<VERS vnumber=\"62\"> Although once you were as numerous as the stars in heaven, you shall be left few in number, because you did not obey the LORD your God.</VERS>\r\n\t\t\t<VERS vnumber=\"63\"> And just as the LORD took delight in making you prosperous and numerous, so the LORD will take delight in bringing you to ruin and destruction; you shall be plucked off the land that you are entering to possess.</VERS>\r\n\t\t\t<VERS vnumber=\"64\"> The LORD will scatter you among all peoples, from one end of the earth to the other; and there you shall serve other gods, of wood and stone, which neither you nor your ancestors have known.</VERS>\r\n\t\t\t<VERS vnumber=\"65\"> Among those nations you shall find no ease, no resting place for the sole of your foot. There the LORD will give you a trembling heart, failing eyes, and a languishing spirit.</VERS>\r\n\t\t\t<VERS vnumber=\"66\"> Your life shall hang in doubt before you; night and day you shall be in dread, with no assurance of your life.</VERS>\r\n\t\t\t<VERS vnumber=\"67\"> In the morning you shall say, \"If only it were evening!\" and at evening you shall say, \"If only it were morning!\"-- because of the dread that your heart shall feel and the sights that your eyes shall see.</VERS>\r\n\t\t\t<VERS vnumber=\"68\"> The LORD will bring you back in ships to Egypt, by a route that I promised you would never see again; and there you shall offer yourselves for sale to your enemies as male and female slaves, but there will be no buyer.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"29\">\r\n\t\t\t<VERS vnumber=\"1\"> These are the words of the covenant that the LORD commanded Moses to make with the Israelites in the land of Moab, in addition to the covenant that he had made with them at Horeb.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Moses summoned all Israel and said to them: You have seen all that the LORD did before your eyes in the land of Egypt, to Pharaoh and to all his servants and to all his land,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> the great trials that your eyes saw, the signs, and those great wonders.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But to this day the LORD has not given you a mind to understand, or eyes to see, or ears to hear.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> I have led you forty years in the wilderness. The clothes on your back have not worn out, and the sandals on your feet have not worn out;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> you have not eaten bread, and you have not drunk wine or strong drink-- so that you may know that I am the LORD your God.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> When you came to this place, King Sihon of Heshbon and King Og of Bashan came out against us for battle, but we defeated them.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> We took their land and gave it as an inheritance to the Reubenites, the Gadites, and the half-tribe of Manasseh.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Therefore diligently observe the words of this covenant, in order that you may succeed in everything that you do. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> You stand assembled today, all of you, before the LORD your God-- the leaders of your tribes, your elders, and your officials, all the men of Israel,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> your children, your women, and the aliens who are in your camp, both those who cut your wood and those who draw your water--</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> to enter into the covenant of the LORD your God, sworn by an oath, which the LORD your God is making with you today;</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> in order that he may establish you today as his people, and that he may be your God, as he promised you and as he swore to your ancestors, to Abraham, to Isaac, and to Jacob.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> I am making this covenant, sworn by an oath, not only with you who stand here with us today before the LORD our God,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> but also with those who are not here with us today.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> You know how we lived in the land of Egypt, and how we came through the midst of the nations through which you passed.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> You have seen their detestable things, the filthy idols of wood and stone, of silver and gold, that were among them.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> It may be that there is among you a man or woman, or a family or tribe, whose heart is already turning away from the LORD our God to serve the gods of those nations. It may be that there is among you a root sprouting poisonous and bitter growth.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> All who hear the words of this oath and bless themselves, thinking in their hearts, \"We are safe even though we go our own stubborn ways\" (thus bringing disaster on moist and dry alike)--</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> the LORD will be unwilling to pardon them, for the LORD's anger and passion will smoke against them. All the curses written in this book will descend on them, and the LORD will blot out their names from under heaven.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> The LORD will single them out from all the tribes of Israel for calamity, in accordance with all the curses of the covenant written in this book of the law.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The next generation, your children who rise up after you, as well as the foreigner who comes from a distant country, will see the devastation of that land and the afflictions with which the LORD has afflicted it--</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> all its soil burned out by sulfur and salt, nothing planted, nothing sprouting, unable to support any vegetation, like the destruction of Sodom and Gomorrah, Admah and Zeboiim, which the LORD destroyed in his fierce anger--</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> they and indeed all the nations will wonder, \"Why has the LORD done thus to this land? What caused this great display of anger?\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> They will conclude, \"It is because they abandoned the covenant of the LORD, the God of their ancestors, which he made with them when he brought them out of the land of Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> They turned and served other gods, worshiping them, gods whom they had not known and whom he had not allotted to them;</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> so the anger of the LORD was kindled against that land, bringing on it every curse written in this book.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> The LORD uprooted them from their land in anger, fury, and great wrath, and cast them into another land, as is now the case.\"</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> The secret things belong to the LORD our God, but the revealed things belong to us and to our children forever, to observe all the words of this law.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"30\">\r\n\t\t\t<VERS vnumber=\"1\"> When all these things have happened to you, the blessings and the curses that I have set before you, if you call them to mind among all the nations where the LORD your God has driven you,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> and return to the LORD your God, and you and your children obey him with all your heart and with all your soul, just as I am commanding you today,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> then the LORD your God will restore your fortunes and have compassion on you, gathering you again from all the peoples among whom the LORD your God has scattered you.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Even if you are exiled to the ends of the world, from there the LORD your God will gather you, and from there he will bring you back. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The LORD your God will bring you into the land that your ancestors possessed, and you will possess it; he will make you more prosperous and numerous than your ancestors.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Moreover, the LORD your God will circumcise your heart and the heart of your descendants, so that you will love the LORD your God with all your heart and with all your soul, in order that you may live.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The LORD your God will put all these curses on your enemies and on the adversaries who took advantage of you.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then you shall again obey the LORD, observing all his commandments that I am commanding you today,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> and the LORD your God will make you abundantly prosperous in all your undertakings, in the fruit of your body, in the fruit of your livestock, and in the fruit of your soil. For the LORD will again take delight in prospering you, just as he delighted in prospering your ancestors,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> when you obey the LORD your God by observing his commandments and decrees that are written in this book of the law, because you turn to the LORD your God with all your heart and with all your soul.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Surely, this commandment that I am commanding you today is not too hard for you, nor is it too far away.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> It is not in heaven, that you should say, \"Who will go up to heaven for us, and get it for us so that we may hear it and observe it?\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Neither is it beyond the sea, that you should say, \"Who will cross to the other side of the sea for us, and get it for us so that we may hear it and observe it?\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> No, the word is very near to you; it is in your mouth and in your heart for you to observe.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> See, I have set before you today life and prosperity, death and adversity.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> If you obey the commandments of the LORD your God that I am commanding you today, by loving the LORD your God, walking in his ways, and observing his commandments, decrees, and ordinances, then you shall live and become numerous, and the LORD your God will bless you in the land that you are entering to possess.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> But if your heart turns away and you do not hear, but are led astray to bow down to other gods and serve them,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> I declare to you today that you shall perish; you shall not live long in the land that you are crossing the Jordan to enter and possess.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> I call heaven and earth to witness against you today that I have set before you life and death, blessings and curses. Choose life so that you and your descendants may live,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> loving the LORD your God, obeying him, and holding fast to him; for that means life to you and length of days, so that you may live in the land that the LORD swore to give to your ancestors, to Abraham, to Isaac, and to Jacob.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"31\">\r\n\t\t\t<VERS vnumber=\"1\"> When Moses had finished speaking all these words to all Israel, </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> he said to them: \"I am now one hundred twenty years old. I am no longer able to get about, and the LORD has told me, 'You shall not cross over this Jordan.'</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The LORD your God himself will cross over before you. He will destroy these nations before you, and you shall dispossess them. Joshua also will cross over before you, as the LORD promised.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The LORD will do to them as he did to Sihon and Og, the kings of the Amorites, and to their land, when he destroyed them.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The LORD will give them over to you and you shall deal with them in full accord with the command that I have given to you.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Be strong and bold; have no fear or dread of them, because it is the LORD your God who goes with you; he will not fail you or forsake you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then Moses summoned Joshua and said to him in the sight of all Israel: \"Be strong and bold, for you are the one who will go with this people into the land that the LORD has sworn to their ancestors to give them; and you will put them in possession of it.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> It is the LORD who goes before you. He will be with you; he will not fail you or forsake you. Do not fear or be dismayed.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then Moses wrote down this law, and gave it to the priests, the sons of Levi, who carried the ark of the covenant of the LORD, and to all the elders of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Moses commanded them: \"Every seventh year, in the scheduled year of remission, during the festival of booths, </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> when all Israel comes to appear before the LORD your God at the place that he will choose, you shall read this law before all Israel in their hearing.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Assemble the people-- men, women, and children, as well as the aliens residing in your towns-- so that they may hear and learn to fear the LORD your God and to observe diligently all the words of this law,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> and so that their children, who have not known it, may hear and learn to fear the LORD your God, as long as you live in the land that you are crossing over the Jordan to possess.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The LORD said to Moses, \"Your time to die is near; call Joshua and present yourselves in the tent of meeting, so that I may commission him.\" So Moses and Joshua went and presented themselves in the tent of meeting,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> and the LORD appeared at the tent in a pillar of cloud; the pillar of cloud stood at the entrance to the tent.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The LORD said to Moses, \"Soon you will lie down with your ancestors. Then this people will begin to prostitute themselves to the foreign gods in their midst, the gods of the land into which they are going; they will forsake me, breaking my covenant that I have made with them.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> My anger will be kindled against them in that day. I will forsake them and hide my face from them; they will become easy prey, and many terrible troubles will come upon them. In that day they will say, 'Have not these troubles come upon us because our God is not in our midst?'</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> On that day I will surely hide my face on account of all the evil they have done by turning to other gods.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Now therefore write this song, and teach it to the Israelites; put it in their mouths, in order that this song may be a witness for me against the Israelites.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> For when I have brought them into the land flowing with milk and honey, which I promised on oath to their ancestors, and they have eaten their fill and grown fat, they will turn to other gods and serve them, despising me and breaking my covenant.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> And when many terrible troubles come upon them, this song will confront them as a witness, because it will not be lost from the mouths of their descendants. For I know what they are inclined to do even now, before I have brought them into the land that I promised them on oath.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> That very day Moses wrote this song and taught it to the Israelites.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Then the LORD commissioned Joshua son of Nun and said, \"Be strong and bold, for you shall bring the Israelites into the land that I promised them; I will be with you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> When Moses had finished writing down in a book the words of this law to the very end,</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Moses commanded the Levites who carried the ark of the covenant of the LORD, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> \"Take this book of the law and put it beside the ark of the covenant of the LORD your God; let it remain there as a witness against you.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> For I know well how rebellious and stubborn you are. If you already have been so rebellious toward the LORD while I am still alive among you, how much more after my death!</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Assemble to me all the elders of your tribes and your officials, so that I may recite these words in their hearing and call heaven and earth to witness against them.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> For I know that after my death you will surely act corruptly, turning aside from the way that I have commanded you. In time to come trouble will befall you, because you will do what is evil in the sight of the LORD, provoking him to anger through the work of your hands.\"</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Then Moses recited the words of this song, to the very end, in the hearing of the whole assembly of Israel:</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"32\">\r\n\t\t\t<VERS vnumber=\"1\"> Give ear, O heavens, and I will speak; let the earth hear the words of my mouth.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> May my teaching drop like the rain, my speech condense like the dew; like gentle rain on grass, like showers on new growth.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For I will proclaim the name of the LORD; ascribe greatness to our God!</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The Rock, his work is perfect, and all his ways are just. A faithful God, without deceit, just and upright is he;</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> yet his degenerate children have dealt falsely with him, a perverse and crooked generation. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Do you thus repay the LORD, O foolish and senseless people? Is not he your father, who created you, who made you and established you?</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Remember the days of old, consider the years long past; ask your father, and he will inform you; your elders, and they will tell you.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> When the Most High apportioned the nations, when he divided humankind, he fixed the boundaries of the peoples according to the number of the gods; </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> the LORD's own portion was his people, Jacob his allotted share.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> He sustained him in a desert land, in a howling wilderness waste; he shielded him, cared for him, guarded him as the apple of his eye. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> As an eagle stirs up its nest, and hovers over its young; as it spreads its wings, takes them up, and bears them aloft on its pinions,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> the LORD alone guided him; no foreign god was with him.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> He set him atop the heights of the land, and fed him with produce of the field; he nursed him with honey from the crags, with oil from flinty rock; </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> curds from the herd, and milk from the flock, with fat of lambs and rams; Bashan bulls and goats, together with the choicest wheat-- you drank fine wine from the blood of grapes.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Jacob ate his fill; Jeshurun grew fat, and kicked. You grew fat, bloated, and gorged! He abandoned God who made him, and scoffed at the Rock of his salvation. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> They made him jealous with strange gods, with abhorrent things they provoked him.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> They sacrificed to demons, not God, to deities they had never known, to new ones recently arrived, whom your ancestors had not feared.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> You were unmindful of the Rock that bore you; you forgot the God who gave you birth. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The LORD saw it, and was jealous he spurned his sons and daughters. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> He said: I will hide my face from them, I will see what their end will be; for they are a perverse generation, children in whom there is no faithfulness.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> They made me jealous with what is no god, provoked me with their idols. So I will make them jealous with what is no people, provoke them with a foolish nation.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> For a fire is kindled by my anger, and burns to the depths of Sheol; it devours the earth and its increase, and sets on fire the foundations of the mountains.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> I will heap disasters upon them, spend my arrows against them:</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> wasting hunger, burning consumption, bitter pestilence. The teeth of beasts I will send against them, with venom of things crawling in the dust.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> In the street the sword shall bereave, and in the chambers terror, for young man and woman alike, nursing child and old gray head.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> I thought to scatter them and blot out the memory of them from humankind; </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> but I feared provocation by the enemy, for their adversaries might misunderstand and say, \"Our hand is triumphant; it was not the LORD who did all this.\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> They are a nation void of sense; there is no understanding in them.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> If they were wise, they would understand this; they would discern what the end would be.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> How could one have routed a thousand, and two put a myriad to flight, unless their Rock had sold them, the LORD had given them up?</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Indeed their rock is not like our Rock; our enemies are fools. </VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Their vine comes from the vinestock of Sodom, from the vineyards of Gomorrah; their grapes are grapes of poison, their clusters are bitter;</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> their wine is the poison of serpents, the cruel venom of asps.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Is not this laid up in store with me, sealed up in my treasuries?</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Vengeance is mine, and recompense, for the time when their foot shall slip; because the day of their calamity is at hand, their doom comes swiftly.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Indeed the LORD will vindicate his people, have compassion on his servants, when he sees that their power is gone, neither bond nor free remaining.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Then he will say: Where are their gods, the rock in which they took refuge,</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> who ate the fat of their sacrifices, and drank the wine of their libations? Let them rise up and help you, let them be your protection!</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> See now that I, even I, am he; there is no god besides me. I kill and I make alive; I wound and I heal; and no one can deliver from my hand.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> For I lift up my hand to heaven, and swear: As I live forever,</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> when I whet my flashing sword, and my hand takes hold on judgment; I will take vengeance on my adversaries, and will repay those who hate me.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> I will make my arrows drunk with blood, and my sword shall devour flesh-- with the blood of the slain and the captives, from the long-haired enemy.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> Praise, O heavens, his people, worship him, all you gods! For he will avenge the blood of his children, and take vengeance on his adversaries; he will repay those who hate him, and cleanse the land for his people. </VERS>\r\n\t\t\t<VERS vnumber=\"44\"> Moses came and recited all the words of this song in the hearing of the people, he and Joshua son of Nun. </VERS>\r\n\t\t\t<VERS vnumber=\"45\"> When Moses had finished reciting all these words to all Israel,</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> he said to them: \"Take to heart all the words that I am giving in witness against you today; give them as a command to your children, so that they may diligently observe all the words of this law.</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> This is no trifling matter for you, but rather your very life; through it you may live long in the land that you are crossing over the Jordan to possess.\"</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> On that very day the LORD addressed Moses as follows:</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> \"Ascend this mountain of the Abarim, Mount Nebo, which is in the land of Moab, across from Jericho, and view the land of Canaan, which I am giving to the Israelites for a possession;</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> you shall die there on the mountain that you ascend and shall be gathered to your kin, as your brother Aaron died on Mount Hor and was gathered to his kin;</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> because both of you broke faith with me among the Israelites at the waters of Meribath-kadesh in the wilderness of Zin, by failing to maintain my holiness among the Israelites.</VERS>\r\n\t\t\t<VERS vnumber=\"52\"> Although you may view the land from a distance, you shall not enter it-- the land that I am giving to the Israelites.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"33\">\r\n\t\t\t<VERS vnumber=\"1\"> This is the blessing with which Moses, the man of God, blessed the Israelites before his death.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He said: The LORD came from Sinai, and dawned from Seir upon us; he shone forth from Mount Paran. With him were myriads of holy ones; at his right, a host of his own. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Indeed, O favorite among peoples, all his holy ones were in your charge; they marched at your heels, accepted direction from you. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Moses charged us with the law, as a possession for the assembly of Jacob.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> There arose a king in Jeshurun, when the leaders of the people assembled-- the united tribes of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> May Reuben live, and not die out, even though his numbers are few.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> And this he said of Judah: O LORD, give heed to Judah, and bring him to his people; strengthen his hands for him, and be a help against his adversaries. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And of Levi he said: Give to Levi your Thummim, and your Urim to your loyal one, whom you tested at Massah, with whom you contended at the waters of Meribah; </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> who said of his father and mother, \"I regard them not\"; he ignored his kin, and did not acknowledge his children. For they observed your word, and kept your covenant.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> They teach Jacob your ordinances, and Israel your law; they place incense before you, and whole burnt offerings on your altar.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Bless, O LORD, his substance, and accept the work of his hands; crush the loins of his adversaries, of those that hate him, so that they do not rise again.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Of Benjamin he said: The beloved of the LORD rests in safety-- the High God surrounds him all day long-- the beloved rests between his shoulders.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And of Joseph he said: Blessed by the LORD be his land, with the choice gifts of heaven above, and of the deep that lies beneath;</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> with the choice fruits of the sun, and the rich yield of the months;</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> with the finest produce of the ancient mountains, and the abundance of the everlasting hills;</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> with the choice gifts of the earth and its fullness, and the favor of the one who dwells on Sinai. Let these come on the head of Joseph, on the brow of the prince among his brothers. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> A firstborn bull-- majesty is his! His horns are the horns of a wild ox; with them he gores the peoples, driving them to the ends of the earth; such are the myriads of Ephraim, such the thousands of Manasseh.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> And of Zebulun he said: Rejoice, Zebulun, in your going out; and Issachar, in your tents.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> They call peoples to the mountain; there they offer the right sacrifices; for they suck the affluence of the seas and the hidden treasures of the sand.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> And of Gad he said: Blessed be the enlargement of Gad! Gad lives like a lion; he tears at arm and scalp.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> He chose the best for himself, for there a commander's allotment was reserved; he came at the head of the people, he executed the justice of the LORD, and his ordinances for Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> And of Dan he said: Dan is a lion's whelp that leaps forth from Bashan.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> And of Naphtali he said: O Naphtali, sated with favor, full of the blessing of the LORD, possess the west and the south.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> And of Asher he said: Most blessed of sons be Asher; may he be the favorite of his brothers, and may he dip his foot in oil.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Your bars are iron and bronze; and as your days, so is your strength.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> There is none like God, O Jeshurun, who rides through the heavens to your help, majestic through the skies.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> He subdues the ancient gods, shatters the forces of old; he drove out the enemy before you, and said, \"Destroy!\" </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> So Israel lives in safety, untroubled is Jacob's abode in a land of grain and wine, where the heavens drop down dew. </VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Happy are you, O Israel! Who is like you, a people saved by the LORD, the shield of your help, and the sword of your triumph! Your enemies shall come fawning to you, and you shall tread on their backs.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"34\">\r\n\t\t\t<VERS vnumber=\"1\"> Then Moses went up from the plains of Moab to Mount Nebo, to the top of Pisgah, which is opposite Jericho, and the LORD showed him the whole land: Gilead as far as Dan,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> all Naphtali, the land of Ephraim and Manasseh, all the land of Judah as far as the Western Sea,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> the Negeb, and the Plain-- that is, the valley of Jericho, the city of palm trees-- as far as Zoar.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The LORD said to him, \"This is the land of which I swore to Abraham, to Isaac, and to Jacob, saying, 'I will give it to your descendants'; I have let you see it with your eyes, but you shall not cross over there.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then Moses, the servant of the LORD, died there in the land of Moab, at the LORD's command.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> He was buried in a valley in the land of Moab, opposite Beth-peor, but no one knows his burial place to this day.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Moses was one hundred twenty years old when he died; his sight was unimpaired and his vigor had not abated.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The Israelites wept for Moses in the plains of Moab thirty days; then the period of mourning for Moses was ended.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Joshua son of Nun was full of the spirit of wisdom, because Moses had laid his hands on him; and the Israelites obeyed him, doing as the LORD had commanded Moses.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Never since has there arisen a prophet in Israel like Moses, whom the LORD knew face to face.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> He was unequaled for all the signs and wonders that the LORD sent him to perform in the land of Egypt, against Pharaoh and all his servants and his entire land,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> and for all the mighty deeds and all the terrifying displays of power that Moses performed in the sight of all Israel.</VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"6\" bname=\"Joshua\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> After the death of Moses the servant of the LORD, the LORD spoke to Joshua son of Nun, Moses' assistant, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"My servant Moses is dead. Now proceed to cross the Jordan, you and all this people, into the land that I am giving to them, to the Israelites.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Every place that the sole of your foot will tread upon I have given to you, as I promised to Moses.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> From the wilderness and the Lebanon as far as the great river, the river Euphrates, all the land of the Hittites, to the Great Sea in the west shall be your territory.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> No one shall be able to stand against you all the days of your life. As I was with Moses, so I will be with you; I will not fail you or forsake you.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Be strong and courageous; for you shall put this people in possession of the land that I swore to their ancestors to give them.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Only be strong and very courageous, being careful to act in accordance with all the law that my servant Moses commanded you; do not turn from it to the right hand or to the left, so that you may be successful wherever you go.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> This book of the law shall not depart out of your mouth; you shall meditate on it day and night, so that you may be careful to act in accordance with all that is written in it. For then you shall make your way prosperous, and then you shall be successful.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> I hereby command you: Be strong and courageous; do not be frightened or dismayed, for the LORD your God is with you wherever you go.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then Joshua commanded the officers of the people,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> \"Pass through the camp, and command the people: 'Prepare your provisions; for in three days you are to cross over the Jordan, to go in to take possession of the land that the LORD your God gives you to possess.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> To the Reubenites, the Gadites, and the half-tribe of Manasseh Joshua said,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> \"Remember the word that Moses the servant of the LORD commanded you, saying, 'The LORD your God is providing you a place of rest, and will give you this land.'</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Your wives, your little ones, and your livestock shall remain in the land that Moses gave you beyond the Jordan. But all the warriors among you shall cross over armed before your kindred and shall help them,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> until the LORD gives rest to your kindred as well as to you, and they too take possession of the land that the LORD your God is giving them. Then you shall return to your own land and take possession of it, the land that Moses the servant of the LORD gave you beyond the Jordan to the east.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> They answered Joshua: \"All that you have commanded us we will do, and wherever you send us we will go.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Just as we obeyed Moses in all things, so we will obey you. Only may the LORD your God be with you, as he was with Moses!</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Whoever rebels against your orders and disobeys your words, whatever you command, shall be put to death. Only be strong and courageous.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> Then Joshua son of Nun sent two men secretly from Shittim as spies, saying, \"Go, view the land, especially Jericho.\" So they went, and entered the house of a prostitute whose name was Rahab, and spent the night there.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The king of Jericho was told, \"Some Israelites have come here tonight to search out the land.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then the king of Jericho sent orders to Rahab, \"Bring out the men who have come to you, who entered your house, for they have come only to search out the whole land.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But the woman took the two men and hid them. Then she said, \"True, the men came to me, but I did not know where they came from.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> And when it was time to close the gate at dark, the men went out. Where the men went I do not know. Pursue them quickly, for you can overtake them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> She had, however, brought them up to the roof and hidden them with the stalks of flax that she had laid out on the roof.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> So the men pursued them on the way to the Jordan as far as the fords. As soon as the pursuers had gone out, the gate was shut.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Before they went to sleep, she came up to them on the roof</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> and said to the men: \"I know that the LORD has given you the land, and that dread of you has fallen on us, and that all the inhabitants of the land melt in fear before you.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For we have heard how the LORD dried up the water of the Red Sea before you when you came out of Egypt, and what you did to the two kings of the Amorites that were beyond the Jordan, to Sihon and Og, whom you utterly destroyed. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> As soon as we heard it, our hearts melted, and there was no courage left in any of us because of you. The LORD your God is indeed God in heaven above and on earth below.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Now then, since I have dealt kindly with you, swear to me by the LORD that you in turn will deal kindly with my family. Give me a sign of good faith</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> that you will spare my father and mother, my brothers and sisters, and all who belong to them, and deliver our lives from death.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The men said to her, \"Our life for yours! If you do not tell this business of ours, then we will deal kindly and faithfully with you when the LORD gives us the land.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Then she let them down by a rope through the window, for her house was on the outer side of the city wall and she resided within the wall itself.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> She said to them, \"Go toward the hill country, so that the pursuers may not come upon you. Hide yourselves there three days, until the pursuers have returned; then afterward you may go your way.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The men said to her, \"We will be released from this oath that you have made us swear to you</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> if we invade the land and you do not tie this crimson cord in the window through which you let us down, and you do not gather into your house your father and mother, your brothers, and all your family.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> If any of you go out of the doors of your house into the street, they shall be responsible for their own death, and we shall be innocent; but if a hand is laid upon any who are with you in the house, we shall bear the responsibility for their death.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> But if you tell this business of ours, then we shall be released from this oath that you made us swear to you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> She said, \"According to your words, so be it.\" She sent them away and they departed. Then she tied the crimson cord in the window.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> They departed and went into the hill country and stayed there three days, until the pursuers returned. The pursuers had searched all along the way and found nothing.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Then the two men came down again from the hill country. They crossed over, came to Joshua son of Nun, and told him all that had happened to them.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> They said to Joshua, \"Truly the LORD has given all the land into our hands; moreover all the inhabitants of the land melt in fear before us.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> Early in the morning Joshua rose and set out from Shittim with all the Israelites, and they came to the Jordan. They camped there before crossing over.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> At the end of three days the officers went through the camp</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> and commanded the people, \"When you see the ark of the covenant of the LORD your God being carried by the levitical priests, then you shall set out from your place. Follow it,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> so that you may know the way you should go, for you have not passed this way before. Yet there shall be a space between you and it, a distance of about two thousand cubits; do not come any nearer to it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then Joshua said to the people, \"Sanctify yourselves; for tomorrow the LORD will do wonders among you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> To the priests Joshua said, \"Take up the ark of the covenant, and pass on in front of the people.\" So they took up the ark of the covenant and went in front of the people.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The LORD said to Joshua, \"This day I will begin to exalt you in the sight of all Israel, so that they may know that I will be with you as I was with Moses.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> You are the one who shall command the priests who bear the ark of the covenant, 'When you come to the edge of the waters of the Jordan, you shall stand still in the Jordan.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Joshua then said to the Israelites, \"Draw near and hear the words of the LORD your God.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Joshua said, \"By this you shall know that among you is the living God who without fail will drive out from before you the Canaanites, Hittites, Hivites, Perizzites, Girgashites, Amorites, and Jebusites:</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> the ark of the covenant of the Lord of all the earth is going to pass before you into the Jordan.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> So now select twelve men from the tribes of Israel, one from each tribe.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> When the soles of the feet of the priests who bear the ark of the LORD, the Lord of all the earth, rest in the waters of the Jordan, the waters of the Jordan flowing from above shall be cut off; they shall stand in a single heap.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> When the people set out from their tents to cross over the Jordan, the priests bearing the ark of the covenant were in front of the people.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Now the Jordan overflows all its banks throughout the time of harvest. So when those who bore the ark had come to the Jordan, and the feet of the priests bearing the ark were dipped in the edge of the water,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> the waters flowing from above stood still, rising up in a single heap far off at Adam, the city that is beside Zarethan, while those flowing toward the sea of the Arabah, the Dead Sea, were wholly cut off. Then the people crossed over opposite Jericho. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> While all Israel were crossing over on dry ground, the priests who bore the ark of the covenant of the LORD stood on dry ground in the middle of the Jordan, until the entire nation finished crossing over the Jordan.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> When the entire nation had finished crossing over the Jordan, the LORD said to Joshua:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"Select twelve men from the people, one from each tribe,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> and command them, 'Take twelve stones from here out of the middle of the Jordan, from the place where the priests' feet stood, carry them over with you, and lay them down in the place where you camp tonight.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then Joshua summoned the twelve men from the Israelites, whom he had appointed, one from each tribe.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Joshua said to them, \"Pass on before the ark of the LORD your God into the middle of the Jordan, and each of you take up a stone on his shoulder, one for each of the tribes of the Israelites,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> so that this may be a sign among you. When your children ask in time to come, 'What do those stones mean to you?'</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> then you shall tell them that the waters of the Jordan were cut off in front of the ark of the covenant of the LORD. When it crossed over the Jordan, the waters of the Jordan were cut off. So these stones shall be to the Israelites a memorial forever.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The Israelites did as Joshua commanded. They took up twelve stones out of the middle of the Jordan, according to the number of the tribes of the Israelites, as the LORD told Joshua, carried them over with them to the place where they camped, and laid them down there.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> (Joshua set up twelve stones in the middle of the Jordan, in the place where the feet of the priests bearing the ark of the covenant had stood; and they are there to this day.)</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The priests who bore the ark remained standing in the middle of the Jordan, until everything was finished that the LORD commanded Joshua to tell the people, according to all that Moses had commanded Joshua. The people crossed over in haste.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> As soon as all the people had finished crossing over, the ark of the LORD, and the priests, crossed over in front of the people.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The Reubenites, the Gadites, and the half-tribe of Manasseh crossed over armed before the Israelites, as Moses had ordered them.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> About forty thousand armed for war crossed over before the LORD to the plains of Jericho for battle.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> On that day the LORD exalted Joshua in the sight of all Israel; and they stood in awe of him, as they had stood in awe of Moses, all the days of his life.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The LORD said to Joshua,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> \"Command the priests who bear the ark of the covenant, to come up out of the Jordan.\" </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Joshua therefore commanded the priests, \"Come up out of the Jordan.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> When the priests bearing the ark of the covenant of the LORD came up from the middle of the Jordan, and the soles of the priests' feet touched dry ground, the waters of the Jordan returned to their place and overflowed all its banks, as before.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The people came up out of the Jordan on the tenth day of the first month, and they camped in Gilgal on the east border of Jericho.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Those twelve stones, which they had taken out of the Jordan, Joshua set up in Gilgal,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> saying to the Israelites, \"When your children ask their parents in time to come, 'What do these stones mean?'</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> then you shall let your children know, 'Israel crossed over the Jordan here on dry ground.'</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> For the LORD your God dried up the waters of the Jordan for you until you crossed over, as the LORD your God did to the Red Sea, which he dried up for us until we crossed over, </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> so that all the peoples of the earth may know that the hand of the LORD is mighty, and so that you may fear the LORD your God forever.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"5\">\r\n\t\t\t<VERS vnumber=\"1\"> When all the kings of the Amorites beyond the Jordan to the west, and all the kings of the Canaanites by the sea, heard that the LORD had dried up the waters of the Jordan for the Israelites until they had crossed over, their hearts melted, and there was no longer any spirit in them, because of the Israelites.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> At that time the LORD said to Joshua, \"Make flint knives and circumcise the Israelites a second time.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> So Joshua made flint knives, and circumcised the Israelites at Gibeath-haaraloth. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> This is the reason why Joshua circumcised them: all the males of the people who came out of Egypt, all the warriors, had died during the journey through the wilderness after they had come out of Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Although all the people who came out had been circumcised, yet all the people born on the journey through the wilderness after they had come out of Egypt had not been circumcised.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For the Israelites traveled forty years in the wilderness, until all the nation, the warriors who came out of Egypt, perished, not having listened to the voice of the LORD. To them the LORD swore that he would not let them see the land that he had sworn to their ancestors to give us, a land flowing with milk and honey.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> So it was their children, whom he raised up in their place, that Joshua circumcised; for they were uncircumcised, because they had not been circumcised on the way.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> When the circumcising of all the nation was done, they remained in their places in the camp until they were healed.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The LORD said to Joshua, \"Today I have rolled away from you the disgrace of Egypt.\" And so that place is called Gilgal to this day. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> While the Israelites were camped in Gilgal they kept the passover in the evening on the fourteenth day of the month in the plains of Jericho.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> On the day after the passover, on that very day, they ate the produce of the land, unleavened cakes and parched grain.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The manna ceased on the day they ate the produce of the land, and the Israelites no longer had manna; they ate the crops of the land of Canaan that year.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Once when Joshua was by Jericho, he looked up and saw a man standing before him with a drawn sword in his hand. Joshua went to him and said to him, \"Are you one of us, or one of our adversaries?\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> He replied, \"Neither; but as commander of the army of the LORD I have now come.\" And Joshua fell on his face to the earth and worshiped, and he said to him, \"What do you command your servant, my lord?\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The commander of the army of the LORD said to Joshua, \"Remove the sandals from your feet, for the place where you stand is holy.\" And Joshua did so.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"6\">\r\n\t\t\t<VERS vnumber=\"1\"> Now Jericho was shut up inside and out because of the Israelites; no one came out and no one went in.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The LORD said to Joshua, \"See, I have handed Jericho over to you, along with its king and soldiers.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> You shall march around the city, all the warriors circling the city once. Thus you shall do for six days,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> with seven priests bearing seven trumpets of rams' horns before the ark. On the seventh day you shall march around the city seven times, the priests blowing the trumpets.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> When they make a long blast with the ram's horn, as soon as you hear the sound of the trumpet, then all the people shall shout with a great shout; and the wall of the city will fall down flat, and all the people shall charge straight ahead.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> So Joshua son of Nun summoned the priests and said to them, \"Take up the ark of the covenant, and have seven priests carry seven trumpets of rams' horns in front of the ark of the LORD.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> To the people he said, \"Go forward and march around the city; have the armed men pass on before the ark of the LORD.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> As Joshua had commanded the people, the seven priests carrying the seven trumpets of rams' horns before the LORD went forward, blowing the trumpets, with the ark of the covenant of the LORD following them.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> And the armed men went before the priests who blew the trumpets; the rear guard came after the ark, while the trumpets blew continually.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> To the people Joshua gave this command: \"You shall not shout or let your voice be heard, nor shall you utter a word, until the day I tell you to shout. Then you shall shout.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> So the ark of the LORD went around the city, circling it once; and they came into the camp, and spent the night in the camp.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then Joshua rose early in the morning, and the priests took up the ark of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The seven priests carrying the seven trumpets of rams' horns before the ark of the LORD passed on, blowing the trumpets continually. The armed men went before them, and the rear guard came after the ark of the LORD, while the trumpets blew continually.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> On the second day they marched around the city once and then returned to the camp. They did this for six days.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> On the seventh day they rose early, at dawn, and marched around the city in the same manner seven times. It was only on that day that they marched around the city seven times.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> And at the seventh time, when the priests had blown the trumpets, Joshua said to the people, \"Shout! For the LORD has given you the city.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The city and all that is in it shall be devoted to the LORD for destruction. Only Rahab the prostitute and all who are with her in her house shall live because she hid the messengers we sent.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> As for you, keep away from the things devoted to destruction, so as not to covet and take any of the devoted things and make the camp of Israel an object for destruction, bringing trouble upon it. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> But all silver and gold, and vessels of bronze and iron, are sacred to the LORD; they shall go into the treasury of the LORD.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> So the people shouted, and the trumpets were blown. As soon as the people heard the sound of the trumpets, they raised a great shout, and the wall fell down flat; so the people charged straight ahead into the city and captured it.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then they devoted to destruction by the edge of the sword all in the city, both men and women, young and old, oxen, sheep, and donkeys.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Joshua said to the two men who had spied out the land, \"Go into the prostitute's house, and bring the woman out of it and all who belong to her, as you swore to her.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> So the young men who had been spies went in and brought Rahab out, along with her father, her mother, her brothers, and all who belonged to her-- they brought all her kindred out-- and set them outside the camp of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> They burned down the city, and everything in it; only the silver and gold, and the vessels of bronze and iron, they put into the treasury of the house of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> But Rahab the prostitute, with her family and all who belonged to her, Joshua spared. Her family has lived in Israel ever since. For she hid the messengers whom Joshua sent to spy out Jericho. </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Joshua then pronounced this oath, saying, \"Cursed before the LORD be anyone who tries to build this city-- this Jericho! At the cost of his firstborn he shall lay its foundation, and at the cost of his youngest he shall set up its gates!\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> So the LORD was with Joshua; and his fame was in all the land.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"7\">\r\n\t\t\t<VERS vnumber=\"1\"> But the Israelites broke faith in regard to the devoted things: Achan son of Carmi son of Zabdi son of Zerah, of the tribe of Judah, took some of the devoted things; and the anger of the LORD burned against the Israelites.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Joshua sent men from Jericho to Ai, which is near Beth-aven, east of Bethel, and said to them, \"Go up and spy out the land.\" And the men went up and spied out Ai.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then they returned to Joshua and said to him, \"Not all the people need go up; about two or three thousand men should go up and attack Ai. Since they are so few, do not make the whole people toil up there.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> So about three thousand of the people went up there; and they fled before the men of Ai.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The men of Ai killed about thirty-six of them, chasing them from outside the gate as far as Shebarim and killing them on the slope. The hearts of the people melted and turned to water.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then Joshua tore his clothes, and fell to the ground on his face before the ark of the LORD until the evening, he and the elders of Israel; and they put dust on their heads.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Joshua said, \"Ah, Lord GOD! Why have you brought this people across the Jordan at all, to hand us over to the Amorites so as to destroy us? Would that we had been content to settle beyond the Jordan!</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> O Lord, what can I say, now that Israel has turned their backs to their enemies!</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The Canaanites and all the inhabitants of the land will hear of it, and surround us, and cut off our name from the earth. Then what will you do for your great name?\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The LORD said to Joshua, \"Stand up! Why have you fallen upon your face?</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Israel has sinned; they have transgressed my covenant that I imposed on them. They have taken some of the devoted things; they have stolen, they have acted deceitfully, and they have put them among their own belongings.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Therefore the Israelites are unable to stand before their enemies; they turn their backs to their enemies, because they have become a thing devoted for destruction themselves. I will be with you no more, unless you destroy the devoted things from among you.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Proceed to sanctify the people, and say, 'Sanctify yourselves for tomorrow; for thus says the LORD, the God of Israel, \"There are devoted things among you, O Israel; you will be unable to stand before your enemies until you take away the devoted things from among you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> In the morning therefore you shall come forward tribe by tribe. The tribe that the LORD takes shall come near by clans, the clan that the LORD takes shall come near by households, and the household that the LORD takes shall come near one by one.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And the one who is taken as having the devoted things shall be burned with fire, together with all that he has, for having transgressed the covenant of the LORD, and for having done an outrageous thing in Israel.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> So Joshua rose early in the morning, and brought Israel near tribe by tribe, and the tribe of Judah was taken.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> He brought near the clans of Judah, and the clan of the Zerahites was taken; and he brought near the clan of the Zerahites, family by family, and Zabdi was taken. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> And he brought near his household one by one, and Achan son of Carmi son of Zabdi son of Zerah, of the tribe of Judah, was taken.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Then Joshua said to Achan, \"My son, give glory to the LORD God of Israel and make confession to him. Tell me now what you have done; do not hide it from me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> And Achan answered Joshua, \"It is true; I am the one who sinned against the LORD God of Israel. This is what I did:</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> when I saw among the spoil a beautiful mantle from Shinar, and two hundred shekels of silver, and a bar of gold weighing fifty shekels, then I coveted them and took them. They now lie hidden in the ground inside my tent, with the silver underneath.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> So Joshua sent messengers, and they ran to the tent; and there it was, hidden in his tent with the silver underneath.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> They took them out of the tent and brought them to Joshua and all the Israelites; and they spread them out before the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Then Joshua and all Israel with him took Achan son of Zerah, with the silver, the mantle, and the bar of gold, with his sons and daughters, with his oxen, donkeys, and sheep, and his tent and all that he had; and they brought them up to the Valley of Achor.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Joshua said, \"Why did you bring trouble on us? The LORD is bringing trouble on you today.\" And all Israel stoned him to death; they burned them with fire, cast stones on them,</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> and raised over him a great heap of stones that remains to this day. Then the LORD turned from his burning anger. Therefore that place to this day is called the Valley of Achor. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"8\">\r\n\t\t\t<VERS vnumber=\"1\"> Then the LORD said to Joshua, \"Do not fear or be dismayed; take all the fighting men with you, and go up now to Ai. See, I have handed over to you the king of Ai with his people, his city, and his land.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> You shall do to Ai and its king as you did to Jericho and its king; only its spoil and its livestock you may take as booty for yourselves. Set an ambush against the city, behind it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> So Joshua and all the fighting men set out to go up against Ai. Joshua chose thirty thousand warriors and sent them out by night</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> with the command, \"You shall lie in ambush against the city, behind it; do not go very far from the city, but all of you stay alert.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> I and all the people who are with me will approach the city. When they come out against us, as before, we shall flee from them.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> They will come out after us until we have drawn them away from the city; for they will say, 'They are fleeing from us, as before.' While we flee from them,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> you shall rise up from the ambush and seize the city; for the LORD your God will give it into your hand.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And when you have taken the city, you shall set the city on fire, doing as the LORD has ordered; see, I have commanded you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> So Joshua sent them out; and they went to the place of ambush, and lay between Bethel and Ai, to the west of Ai; but Joshua spent that night in the camp.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> In the morning Joshua rose early and mustered the people, and went up, with the elders of Israel, before the people to Ai.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> All the fighting men who were with him went up, and drew near before the city, and camped on the north side of Ai, with a ravine between them and Ai.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Taking about five thousand men, he set them in ambush between Bethel and Ai, to the west of the city.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> So they stationed the forces, the main encampment that was north of the city and its rear guard west of the city. But Joshua spent that night in the valley.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> When the king of Ai saw this, he and all his people, the inhabitants of the city, hurried out early in the morning to the meeting place facing the Arabah to meet Israel in battle; but he did not know that there was an ambush against him behind the city.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And Joshua and all Israel made a pretense of being beaten before them, and fled in the direction of the wilderness.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> So all the people who were in the city were called together to pursue them, and as they pursued Joshua they were drawn away from the city.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> There was not a man left in Ai or Bethel who did not go out after Israel; they left the city open, and pursued Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then the LORD said to Joshua, \"Stretch out the sword that is in your hand toward Ai; for I will give it into your hand.\" And Joshua stretched out the sword that was in his hand toward the city.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> As soon as he stretched out his hand, the troops in ambush rose quickly out of their place and rushed forward. They entered the city, took it, and at once set the city on fire.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> So when the men of Ai looked back, the smoke of the city was rising to the sky. They had no power to flee this way or that, for the people who fled to the wilderness turned back against the pursuers.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> When Joshua and all Israel saw that the ambush had taken the city and that the smoke of the city was rising, then they turned back and struck down the men of Ai.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> And the others came out from the city against them; so they were surrounded by Israelites, some on one side, and some on the other; and Israel struck them down until no one was left who survived or escaped.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> But the king of Ai was taken alive and brought to Joshua.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> When Israel had finished slaughtering all the inhabitants of Ai in the open wilderness where they pursued them, and when all of them to the very last had fallen by the edge of the sword, all Israel returned to Ai, and attacked it with the edge of the sword.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> The total of those who fell that day, both men and women, was twelve thousand-- all the people of Ai.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> For Joshua did not draw back his hand, with which he stretched out the sword, until he had utterly destroyed all the inhabitants of Ai.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Only the livestock and the spoil of that city Israel took as their booty, according to the word of the LORD that he had issued to Joshua.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> So Joshua burned Ai, and made it forever a heap of ruins, as it is to this day.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> And he hanged the king of Ai on a tree until evening; and at sunset Joshua commanded, and they took his body down from the tree, threw it down at the entrance of the gate of the city, and raised over it a great heap of stones, which stands there to this day.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Then Joshua built on Mount Ebal an altar to the LORD, the God of Israel,</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> just as Moses the servant of the LORD had commanded the Israelites, as it is written in the book of the law of Moses, \"an altar of unhewn stones, on which no iron tool has been used\"; and they offered on it burnt offerings to the LORD, and sacrificed offerings of well-being. </VERS>\r\n\t\t\t<VERS vnumber=\"32\"> And there, in the presence of the Israelites, Joshua wrote on the stones a copy of the law of Moses, which he had written. </VERS>\r\n\t\t\t<VERS vnumber=\"33\"> All Israel, alien as well as citizen, with their elders and officers and their judges, stood on opposite sides of the ark in front of the levitical priests who carried the ark of the covenant of the LORD, half of them in front of Mount Gerizim and half of them in front of Mount Ebal, as Moses the servant of the LORD had commanded at the first, that they should bless the people of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> And afterward he read all the words of the law, blessings and curses, according to all that is written in the book of the law.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> There was not a word of all that Moses commanded that Joshua did not read before all the assembly of Israel, and the women, and the little ones, and the aliens who resided among them.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"9\">\r\n\t\t\t<VERS vnumber=\"1\"> Now when all the kings who were beyond the Jordan in the hill country and in the lowland all along the coast of the Great Sea toward Lebanon-- the Hittites, the Amorites, the Canaanites, the Perizzites, the Hivites, and the Jebusites-- heard of this,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> they gathered together with one accord to fight Joshua and Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> But when the inhabitants of Gibeon heard what Joshua had done to Jericho and to Ai,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> they on their part acted with cunning: they went and prepared provisions, and took worn-out sacks for their donkeys, and wineskins, worn-out and torn and mended, </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> with worn-out, patched sandals on their feet, and worn-out clothes; and all their provisions were dry and moldy.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> They went to Joshua in the camp at Gilgal, and said to him and to the Israelites, \"We have come from a far country; so now make a treaty with us.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But the Israelites said to the Hivites, \"Perhaps you live among us; then how can we make a treaty with you?\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> They said to Joshua, \"We are your servants.\" And Joshua said to them, \"Who are you? And where do you come from?\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> They said to him, \"Your servants have come from a very far country, because of the name of the LORD your God; for we have heard a report of him, of all that he did in Egypt,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> and of all that he did to the two kings of the Amorites who were beyond the Jordan, King Sihon of Heshbon, and King Og of Bashan who lived in Ashtaroth.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> So our elders and all the inhabitants of our country said to us, 'Take provisions in your hand for the journey; go to meet them, and say to them, \"We are your servants; come now, make a treaty with us.\"'</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Here is our bread; it was still warm when we took it from our houses as our food for the journey, on the day we set out to come to you, but now, see, it is dry and moldy;</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> these wineskins were new when we filled them, and see, they are burst; and these garments and sandals of ours are worn out from the very long journey.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> So the leaders partook of their provisions, and did not ask direction from the LORD. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And Joshua made peace with them, guaranteeing their lives by a treaty; and the leaders of the congregation swore an oath to them.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> But when three days had passed after they had made a treaty with them, they heard that they were their neighbors and were living among them.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> So the Israelites set out and reached their cities on the third day. Now their cities were Gibeon, Chephirah, Beeroth, and Kiriath-jearim.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> But the Israelites did not attack them, because the leaders of the congregation had sworn to them by the LORD, the God of Israel. Then all the congregation murmured against the leaders.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> But all the leaders said to all the congregation, \"We have sworn to them by the LORD, the God of Israel, and now we must not touch them.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> This is what we will do to them: We will let them live, so that wrath may not come upon us, because of the oath that we swore to them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> The leaders said to them, \"Let them live.\" So they became hewers of wood and drawers of water for all the congregation, as the leaders had decided concerning them.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Joshua summoned them, and said to them, \"Why did you deceive us, saying, 'We are very far from you,' while in fact you are living among us?</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Now therefore you are cursed, and some of you shall always be slaves, hewers of wood and drawers of water for the house of my God.\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> They answered Joshua, \"Because it was told to your servants for a certainty that the LORD your God had commanded his servant Moses to give you all the land, and to destroy all the inhabitants of the land before you; so we were in great fear for our lives because of you, and did this thing.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> And now we are in your hand: do as it seems good and right in your sight to do to us.\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> This is what he did for them: he saved them from the Israelites; and they did not kill them.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> But on that day Joshua made them hewers of wood and drawers of water for the congregation and for the altar of the LORD, to continue to this day, in the place that he should choose.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"10\">\r\n\t\t\t<VERS vnumber=\"1\"> When King Adoni-zedek of Jerusalem heard how Joshua had taken Ai, and had utterly destroyed it, doing to Ai and its king as he had done to Jericho and its king, and how the inhabitants of Gibeon had made peace with Israel and were among them,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> he became greatly frightened, because Gibeon was a large city, like one of the royal cities, and was larger than Ai, and all its men were warriors. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> So King Adoni-zedek of Jerusalem sent a message to King Hoham of Hebron, to King Piram of Jarmuth, to King Japhia of Lachish, and to King Debir of Eglon, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> \"Come up and help me, and let us attack Gibeon; for it has made peace with Joshua and with the Israelites.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then the five kings of the Amorites-- the king of Jerusalem, the king of Hebron, the king of Jarmuth, the king of Lachish, and the king of Eglon-- gathered their forces, and went up with all their armies and camped against Gibeon, and made war against it.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And the Gibeonites sent to Joshua at the camp in Gilgal, saying, \"Do not abandon your servants; come up to us quickly, and save us, and help us; for all the kings of the Amorites who live in the hill country are gathered against us.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> So Joshua went up from Gilgal, he and all the fighting force with him, all the mighty warriors.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The LORD said to Joshua, \"Do not fear them, for I have handed them over to you; not one of them shall stand before you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> So Joshua came upon them suddenly, having marched up all night from Gilgal.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And the LORD threw them into a panic before Israel, who inflicted a great slaughter on them at Gibeon, chased them by the way of the ascent of Beth-horon, and struck them down as far as Azekah and Makkedah.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> As they fled before Israel, while they were going down the slope of Beth-horon, the LORD threw down huge stones from heaven on them as far as Azekah, and they died; there were more who died because of the hailstones than the Israelites killed with the sword.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> On the day when the LORD gave the Amorites over to the Israelites, Joshua spoke to the LORD; and he said in the sight of Israel, \"Sun, stand still at Gibeon, and Moon, in the valley of Aijalon.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And the sun stood still, and the moon stopped, until the nation took vengeance on their enemies. Is this not written in the Book of Jashar? The sun stopped in midheaven, and did not hurry to set for about a whole day.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> There has been no day like it before or since, when the LORD heeded a human voice; for the LORD fought for Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Then Joshua returned, and all Israel with him, to the camp at Gilgal.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Meanwhile, these five kings fled and hid themselves in the cave at Makkedah.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> And it was told Joshua, \"The five kings have been found, hidden in the cave at Makkedah.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Joshua said, \"Roll large stones against the mouth of the cave, and set men by it to guard them;</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> but do not stay there yourselves; pursue your enemies, and attack them from the rear. Do not let them enter their towns, for the LORD your God has given them into your hand.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> When Joshua and the Israelites had finished inflicting a very great slaughter on them, until they were wiped out, and when the survivors had entered into the fortified towns,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> all the people returned safe to Joshua in the camp at Makkedah; no one dared to speak against any of the Israelites. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Then Joshua said, \"Open the mouth of the cave, and bring those five kings out to me from the cave.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> They did so, and brought the five kings out to him from the cave, the king of Jerusalem, the king of Hebron, the king of Jarmuth, the king of Lachish, and the king of Eglon.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> When they brought the kings out to Joshua, Joshua summoned all the Israelites, and said to the chiefs of the warriors who had gone with him, \"Come near, put your feet on the necks of these kings.\" Then they came near and put their feet on their necks.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> And Joshua said to them, \"Do not be afraid or dismayed; be strong and courageous; for thus the LORD will do to all the enemies against whom you fight.\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Afterward Joshua struck them down and put them to death, and he hung them on five trees. And they hung on the trees until evening.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> At sunset Joshua commanded, and they took them down from the trees and threw them into the cave where they had hidden themselves; they set large stones against the mouth of the cave, which remain to this very day.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Joshua took Makkedah on that day, and struck it and its king with the edge of the sword; he utterly destroyed every person in it; he left no one remaining. And he did to the king of Makkedah as he had done to the king of Jericho.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Then Joshua passed on from Makkedah, and all Israel with him, to Libnah, and fought against Libnah.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> The LORD gave it also and its king into the hand of Israel; and he struck it with the edge of the sword, and every person in it; he left no one remaining in it; and he did to its king as he had done to the king of Jericho.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Next Joshua passed on from Libnah, and all Israel with him, to Lachish, and laid siege to it, and assaulted it.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> The LORD gave Lachish into the hand of Israel, and he took it on the second day, and struck it with the edge of the sword, and every person in it, as he had done to Libnah.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Then King Horam of Gezer came up to help Lachish; and Joshua struck him and his people, leaving him no survivors.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> From Lachish Joshua passed on with all Israel to Eglon; and they laid siege to it, and assaulted it;</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> and they took it that day, and struck it with the edge of the sword; and every person in it he utterly destroyed that day, as he had done to Lachish.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Then Joshua went up with all Israel from Eglon to Hebron; they assaulted it,</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> and took it, and struck it with the edge of the sword, and its king and its towns, and every person in it; he left no one remaining, just as he had done to Eglon, and utterly destroyed it with every person in it.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Then Joshua, with all Israel, turned back to Debir and assaulted it,</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> and he took it with its king and all its towns; they struck them with the edge of the sword, and utterly destroyed every person in it; he left no one remaining; just as he had done to Hebron, and, as he had done to Libnah and its king, so he did to Debir and its king.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> So Joshua defeated the whole land, the hill country and the Negeb and the lowland and the slopes, and all their kings; he left no one remaining, but utterly destroyed all that breathed, as the LORD God of Israel commanded.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> And Joshua defeated them from Kadesh-barnea to Gaza, and all the country of Goshen, as far as Gibeon.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> Joshua took all these kings and their land at one time, because the LORD God of Israel fought for Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> Then Joshua returned, and all Israel with him, to the camp at Gilgal.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"11\">\r\n\t\t\t<VERS vnumber=\"1\"> When King Jabin of Hazor heard of this, he sent to King Jobab of Madon, to the king of Shimron, to the king of Achshaph,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> and to the kings who were in the northern hill country, and in the Arabah south of Chinneroth, and in the lowland, and in Naphoth-dor on the west,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> to the Canaanites in the east and the west, the Amorites, the Hittites, the Perizzites, and the Jebusites in the hill country, and the Hivites under Hermon in the land of Mizpah.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> They came out, with all their troops, a great army, in number like the sand on the seashore, with very many horses and chariots.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> All these kings joined their forces, and came and camped together at the waters of Merom, to fight with Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And the LORD said to Joshua, \"Do not be afraid of them, for tomorrow at this time I will hand over all of them, slain, to Israel; you shall hamstring their horses, and burn their chariots with fire.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> So Joshua came suddenly upon them with all his fighting force, by the waters of Merom, and fell upon them.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And the LORD handed them over to Israel, who attacked them and chased them as far as Great Sidon and Misrephoth-maim, and eastward as far as the valley of Mizpeh. They struck them down, until they had left no one remaining.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> And Joshua did to them as the LORD commanded him; he hamstrung their horses, and burned their chariots with fire.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Joshua turned back at that time, and took Hazor, and struck its king down with the sword. Before that time Hazor was the head of all those kingdoms.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> And they put to the sword all who were in it, utterly destroying them; there was no one left who breathed, and he burned Hazor with fire.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> And all the towns of those kings, and all their kings, Joshua took, and struck them with the edge of the sword, utterly destroying them, as Moses the servant of the LORD had commanded.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> But Israel burned none of the towns that stood on mounds except Hazor, which Joshua did burn.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> All the spoil of these towns, and the livestock, the Israelites took for their booty; but all the people they struck down with the edge of the sword, until they had destroyed them, and they did not leave any who breathed.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> As the LORD had commanded his servant Moses, so Moses commanded Joshua, and so Joshua did; he left nothing undone of all that the LORD had commanded Moses.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> So Joshua took all that land: the hill country and all the Negeb and all the land of Goshen and the lowland and the Arabah and the hill country of Israel and its lowland,</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> from Mount Halak, which rises toward Seir, as far as Baal-gad in the valley of Lebanon below Mount Hermon. He took all their kings, struck them down, and put them to death.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Joshua made war a long time with all those kings.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> There was not a town that made peace with the Israelites, except the Hivites, the inhabitants of Gibeon; all were taken in battle.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> For it was the LORD's doing to harden their hearts so that they would come against Israel in battle, in order that they might be utterly destroyed, and might receive no mercy, but be exterminated, just as the LORD had commanded Moses.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> At that time Joshua came and wiped out the Anakim from the hill country, from Hebron, from Debir, from Anab, and from all the hill country of Judah, and from all the hill country of Israel; Joshua utterly destroyed them with their towns.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> None of the Anakim was left in the land of the Israelites; some remained only in Gaza, in Gath, and in Ashdod.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> So Joshua took the whole land, according to all that the LORD had spoken to Moses; and Joshua gave it for an inheritance to Israel according to their tribal allotments. And the land had rest from war.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"12\">\r\n\t\t\t<VERS vnumber=\"1\"> Now these are the kings of the land, whom the Israelites defeated, whose land they occupied beyond the Jordan toward the east, from the Wadi Arnon to Mount Hermon, with all the Arabah eastward:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> King Sihon of the Amorites who lived at Heshbon, and ruled from Aroer, which is on the edge of the Wadi Arnon, and from the middle of the valley as far as the river Jabbok, the boundary of the Ammonites, that is, half of Gilead,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> and the Arabah to the Sea of Chinneroth eastward, and in the direction of Beth-jeshimoth, to the sea of the Arabah, the Dead Sea, southward to the foot of the slopes of Pisgah; </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> and King Og of Bashan, one of the last of the Rephaim, who lived at Ashtaroth and at Edrei </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> and ruled over Mount Hermon and Salecah and all Bashan to the boundary of the Geshurites and the Maacathites, and over half of Gilead to the boundary of King Sihon of Heshbon.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Moses, the servant of the LORD, and the Israelites defeated them; and Moses the servant of the LORD gave their land for a possession to the Reubenites and the Gadites and the half-tribe of Manasseh.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The following are the kings of the land whom Joshua and the Israelites defeated on the west side of the Jordan, from Baal-gad in the valley of Lebanon to Mount Halak, that rises toward Seir (and Joshua gave their land to the tribes of Israel as a possession according to their allotments,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> in the hill country, in the lowland, in the Arabah, in the slopes, in the wilderness, and in the Negeb, the land of the Hittites, Amorites, Canaanites, Perizzites, Hivites, and Jebusites):</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> the king of Jericho one the king of Ai, which is next to Bethel one</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> the king of Jerusalem one the king of Hebron one</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> the king of Jarmuth one the king of Lachish one</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> the king of Eglon one the king of Gezer one</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> the king of Debir one the king of Geder one</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> the king of Hormah one the king of Arad one</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> the king of Libnah one the king of Adullam one</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> the king of Makkedah one the king of Bethel one</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> the king of Tappuah one the king of Hepher one</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> the king of Aphek one the king of Lasharon one</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> the king of Madon one the king of Hazor one</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> the king of Shimron-meron one the king of Achshaph one</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> the king of Taanach one the king of Megiddo one</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> the king of Kedesh one the king of Jokneam in Carmel one</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> the king of Dor in Naphath-dor one the king of Goiim in Galilee, one </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> the king of Tirzah one thirty-one kings in all.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"13\">\r\n\t\t\t<VERS vnumber=\"1\"> Now Joshua was old and advanced in years; and the LORD said to him, \"You are old and advanced in years, and very much of the land still remains to be possessed.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> This is the land that still remains: all the regions of the Philistines, and all those of the Geshurites</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> (from the Shihor, which is east of Egypt, northward to the boundary of Ekron, it is reckoned as Canaanite; there are five rulers of the Philistines, those of Gaza, Ashdod, Ashkelon, Gath, and Ekron), and those of the Avvim,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> in the south, all the land of the Canaanites, and Mearah that belongs to the Sidonians, to Aphek, to the boundary of the Amorites,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> and the land of the Gebalites, and all Lebanon, toward the east, from Baal-gad below Mount Hermon to Lebo-hamath,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> all the inhabitants of the hill country from Lebanon to Misrephoth-maim, even all the Sidonians. I will myself drive them out from before the Israelites; only allot the land to Israel for an inheritance, as I have commanded you.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Now therefore divide this land for an inheritance to the nine tribes and the half-tribe of Manasseh.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> With the other half-tribe of Manasseh the Reubenites and the Gadites received their inheritance, which Moses gave them, beyond the Jordan eastward, as Moses the servant of the LORD gave them: </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> from Aroer, which is on the edge of the Wadi Arnon, and the town that is in the middle of the valley, and all the tableland from Medeba as far as Dibon; </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> and all the cities of King Sihon of the Amorites, who reigned in Heshbon, as far as the boundary of the Ammonites;</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> and Gilead, and the region of the Geshurites and Maacathites, and all Mount Hermon, and all Bashan to Salecah;</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> all the kingdom of Og in Bashan, who reigned in Ashtaroth and in Edrei (he alone was left of the survivors of the Rephaim); these Moses had defeated and driven out.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Yet the Israelites did not drive out the Geshurites or the Maacathites; but Geshur and Maacath live within Israel to this day.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> To the tribe of Levi alone Moses gave no inheritance; the offerings by fire to the LORD God of Israel are their inheritance, as he said to them.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Moses gave an inheritance to the tribe of the Reubenites according to their clans.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Their territory was from Aroer, which is on the edge of the Wadi Arnon, and the town that is in the middle of the valley, and all the tableland by Medeba;</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> with Heshbon, and all its towns that are in the tableland; Dibon, and Bamoth-baal, and Beth-baal-meon,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> and Jahaz, and Kedemoth, and Mephaath,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> and Kiriathaim, and Sibmah, and Zereth-shahar on the hill of the valley,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> and Beth-peor, and the slopes of Pisgah, and Beth-jeshimoth,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> that is, all the towns of the tableland, and all the kingdom of King Sihon of the Amorites, who reigned in Heshbon, whom Moses defeated with the leaders of Midian, Evi and Rekem and Zur and Hur and Reba, as princes of Sihon, who lived in the land.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Along with the rest of those they put to death, the Israelites also put to the sword Balaam son of Beor, who practiced divination.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> And the border of the Reubenites was the Jordan and its banks. This was the inheritance of the Reubenites, according to their families with their towns and villages.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Moses gave an inheritance also to the tribe of the Gadites, according to their families.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Their territory was Jazer, and all the towns of Gilead, and half the land of the Ammonites, to Aroer, which is east of Rabbah,</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> and from Heshbon to Ramath-mizpeh and Betonim, and from Mahanaim to the territory of Debir, </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> and in the valley Beth-haram, Beth-nimrah, Succoth, and Zaphon, the rest of the kingdom of King Sihon of Heshbon, the Jordan and its banks, as far as the lower end of the Sea of Chinnereth, eastward beyond the Jordan.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> This is the inheritance of the Gadites according to their clans, with their towns and villages.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Moses gave an inheritance to the half-tribe of Manasseh; it was allotted to the half-tribe of the Manassites according to their families.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Their territory extended from Mahanaim, through all Bashan, the whole kingdom of King Og of Bashan, and all the settlements of Jair, which are in Bashan, sixty towns,</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> and half of Gilead, and Ashtaroth, and Edrei, the towns of the kingdom of Og in Bashan; these were allotted to the people of Machir son of Manasseh according to their clans-- for half the Machirites.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> These are the inheritances that Moses distributed in the plains of Moab, beyond the Jordan east of Jericho.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> But to the tribe of Levi Moses gave no inheritance; the LORD God of Israel is their inheritance, as he said to them.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"14\">\r\n\t\t\t<VERS vnumber=\"1\"> These are the inheritances that the Israelites received in the land of Canaan, which the priest Eleazar, and Joshua son of Nun, and the heads of the families of the tribes of the Israelites distributed to them.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Their inheritance was by lot, as the LORD had commanded Moses for the nine and one-half tribes.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For Moses had given an inheritance to the two and one-half tribes beyond the Jordan; but to the Levites he gave no inheritance among them.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For the people of Joseph were two tribes, Manasseh and Ephraim; and no portion was given to the Levites in the land, but only towns to live in, with their pasture lands for their flocks and herds.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The Israelites did as the LORD commanded Moses; they allotted the land.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then the people of Judah came to Joshua at Gilgal; and Caleb son of Jephunneh the Kenizzite said to him, \"You know what the LORD said to Moses the man of God in Kadesh-barnea concerning you and me.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> I was forty years old when Moses the servant of the LORD sent me from Kadesh-barnea to spy out the land; and I brought him an honest report.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But my companions who went up with me made the heart of the people melt; yet I wholeheartedly followed the LORD my God.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> And Moses swore on that day, saying, 'Surely the land on which your foot has trodden shall be an inheritance for you and your children forever, because you have wholeheartedly followed the LORD my God.'</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And now, as you see, the LORD has kept me alive, as he said, these forty-five years since the time that the LORD spoke this word to Moses, while Israel was journeying through the wilderness; and here I am today, eighty-five years old.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> I am still as strong today as I was on the day that Moses sent me; my strength now is as my strength was then, for war, and for going and coming.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> So now give me this hill country of which the LORD spoke on that day; for you heard on that day how the Anakim were there, with great fortified cities; it may be that the LORD will be with me, and I shall drive them out, as the LORD said.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then Joshua blessed him, and gave Hebron to Caleb son of Jephunneh for an inheritance.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> So Hebron became the inheritance of Caleb son of Jephunneh the Kenizzite to this day, because he wholeheartedly followed the LORD, the God of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Now the name of Hebron formerly was Kiriath-arba; this Arba was the greatest man among the Anakim. And the land had rest from war. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"15\">\r\n\t\t\t<VERS vnumber=\"1\"> The lot for the tribe of the people of Judah according to their families reached southward to the boundary of Edom, to the wilderness of Zin at the farthest south.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And their south boundary ran from the end of the Dead Sea, from the bay that faces southward; </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> it goes out southward of the ascent of Akrabbim, passes along to Zin, and goes up south of Kadesh-barnea, along by Hezron, up to Addar, makes a turn to Karka,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> passes along to Azmon, goes out by the Wadi of Egypt, and comes to its end at the sea. This shall be your south boundary.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> And the east boundary is the Dead Sea, to the mouth of the Jordan. And the boundary on the north side runs from the bay of the sea at the mouth of the Jordan; </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> and the boundary goes up to Beth-hoglah, and passes along north of Beth-arabah; and the boundary goes up to the Stone of Bohan, Reuben's son;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> and the boundary goes up to Debir from the Valley of Achor, and so northward, turning toward Gilgal, which is opposite the ascent of Adummim, which is on the south side of the valley; and the boundary passes along to the waters of En-shemesh, and ends at En-rogel;</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> then the boundary goes up by the valley of the son of Hinnom at the southern slope of the Jebusites (that is, Jerusalem); and the boundary goes up to the top of the mountain that lies over against the valley of Hinnom, on the west, at the northern end of the valley of Rephaim;</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> then the boundary extends from the top of the mountain to the spring of the Waters of Nephtoah, and from there to the towns of Mount Ephron; then the boundary bends around to Baalah (that is, Kiriath-jearim);</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> and the boundary circles west of Baalah to Mount Seir, passes along to the northern slope of Mount Jearim (that is, Chesalon), and goes down to Beth-shemesh, and passes along by Timnah;</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> the boundary goes out to the slope of the hill north of Ekron, then the boundary bends around to Shikkeron, and passes along to Mount Baalah, and goes out to Jabneel; then the boundary comes to an end at the sea.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> And the west boundary was the Mediterranean with its coast. This is the boundary surrounding the people of Judah according to their families.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> According to the commandment of the LORD to Joshua, he gave to Caleb son of Jephunneh a portion among the people of Judah, Kiriath-arba, that is, Hebron (Arba was the father of Anak). </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> And Caleb drove out from there the three sons of Anak: Sheshai, Ahiman, and Talmai, the descendants of Anak.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> From there he went up against the inhabitants of Debir; now the name of Debir formerly was Kiriath-sepher.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> And Caleb said, \"Whoever attacks Kiriath-sepher and takes it, to him I will give my daughter Achsah as wife.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Othniel son of Kenaz, the brother of Caleb, took it; and he gave him his daughter Achsah as wife.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> When she came to him, she urged him to ask her father for a field. As she dismounted from her donkey, Caleb said to her, \"What do you wish?\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> She said to him, \"Give me a present; since you have set me in the land of the Negeb, give me springs of water as well.\" So Caleb gave her the upper springs and the lower springs.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> This is the inheritance of the tribe of the people of Judah according to their families.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> The towns belonging to the tribe of the people of Judah in the extreme South, toward the boundary of Edom, were Kabzeel, Eder, Jagur,</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Kinah, Dimonah, Adadah,</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Kedesh, Hazor, Ithnan,</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Ziph, Telem, Bealoth,</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Hazor-hadattah, Kerioth-hezron (that is, Hazor),</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Amam, Shema, Moladah,</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Hazar-gaddah, Heshmon, Beth-pelet,</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Hazar-shual, Beer-sheba, Biziothiah,</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Baalah, Iim, Ezem,</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Eltolad, Chesil, Hormah,</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Ziklag, Madmannah, Sansannah,</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Lebaoth, Shilhim, Ain, and Rimmon: in all, twenty-nine towns, with their villages.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> And in the Lowland, Eshtaol, Zorah, Ashnah,</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Zanoah, En-gannim, Tappuah, Enam,</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Jarmuth, Adullam, Socoh, Azekah,</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Shaaraim, Adithaim, Gederah, Gederothaim: fourteen towns with their villages.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Zenan, Hadashah, Migdal-gad,</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Dilan, Mizpeh, Jokthe-el,</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> Lachish, Bozkath, Eglon,</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> Cabbon, Lahmam, Chitlish,</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> Gederoth, Beth-dagon, Naamah, and Makkedah: sixteen towns with their villages.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> Libnah, Ether, Ashan,</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> Iphtah, Ashnah, Nezib,</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> Keilah, Achzib, and Mareshah: nine towns with their villages.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> Ekron, with its dependencies and its villages;</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> from Ekron to the sea, all that were near Ashdod, with their villages.</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> Ashdod, its towns and its villages; Gaza, its towns and its villages; to the Wadi of Egypt, and the Great Sea with its coast.</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> And in the hill country, Shamir, Jattir, Socoh,</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> Dannah, Kiriath-sannah (that is, Debir),</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> Anab, Eshtemoh, Anim,</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> Goshen, Holon, and Giloh: eleven towns with their villages.</VERS>\r\n\t\t\t<VERS vnumber=\"52\"> Arab, Dumah, Eshan,</VERS>\r\n\t\t\t<VERS vnumber=\"53\"> Janim, Beth-tappuah, Aphekah,</VERS>\r\n\t\t\t<VERS vnumber=\"54\"> Humtah, Kiriath-arba (that is, Hebron), and Zior: nine towns with their villages.</VERS>\r\n\t\t\t<VERS vnumber=\"55\"> Maon, Carmel, Ziph, Juttah,</VERS>\r\n\t\t\t<VERS vnumber=\"56\"> Jezreel, Jokdeam, Zanoah,</VERS>\r\n\t\t\t<VERS vnumber=\"57\"> Kain, Gibeah, and Timnah: ten towns with their villages.</VERS>\r\n\t\t\t<VERS vnumber=\"58\"> Halhul, Beth-zur, Gedor,</VERS>\r\n\t\t\t<VERS vnumber=\"59\"> Maarath, Beth-anoth, and Eltekon: six towns with their villages.</VERS>\r\n\t\t\t<VERS vnumber=\"60\"> Kiriath-baal (that is, Kiriath-jearim), and Rabbah: two towns with their villages.</VERS>\r\n\t\t\t<VERS vnumber=\"61\"> In the wilderness, Beth-arabah, Middin, Secacah,</VERS>\r\n\t\t\t<VERS vnumber=\"62\"> Nibshan, the City of Salt, and En-gedi: six towns with their villages.</VERS>\r\n\t\t\t<VERS vnumber=\"63\"> But the people of Judah could not drive out the Jebusites, the inhabitants of Jerusalem; so the Jebusites live with the people of Judah in Jerusalem to this day.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"16\">\r\n\t\t\t<VERS vnumber=\"1\"> The allotment of the Josephites went from the Jordan by Jericho, east of the waters of Jericho, into the wilderness, going up from Jericho into the hill country to Bethel;</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> then going from Bethel to Luz, it passes along to Ataroth, the territory of the Archites;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> then it goes down westward to the territory of the Japhletites, as far as the territory of Lower Beth-horon, then to Gezer, and it ends at the sea.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The Josephites-- Manasseh and Ephraim-- received their inheritance.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The territory of the Ephraimites by their families was as follows: the boundary of their inheritance on the east was Ataroth-addar as far as Upper Beth-horon,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> and the boundary goes from there to the sea; on the north is Michmethath; then on the east the boundary makes a turn toward Taanath-shiloh, and passes along beyond it on the east to Janoah,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> then it goes down from Janoah to Ataroth and to Naarah, and touches Jericho, ending at the Jordan.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> From Tappuah the boundary goes westward to the Wadi Kanah, and ends at the sea. Such is the inheritance of the tribe of the Ephraimites by their families,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> together with the towns that were set apart for the Ephraimites within the inheritance of the Manassites, all those towns with their villages.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> They did not, however, drive out the Canaanites who lived in Gezer: so the Canaanites have lived within Ephraim to this day but have been made to do forced labor.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"17\">\r\n\t\t\t<VERS vnumber=\"1\"> Then allotment was made to the tribe of Manasseh, for he was the firstborn of Joseph. To Machir the firstborn of Manasseh, the father of Gilead, were allotted Gilead and Bashan, because he was a warrior.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And allotments were made to the rest of the tribe of Manasseh, by their families, Abiezer, Helek, Asriel, Shechem, Hepher, and Shemida; these were the male descendants of Manasseh son of Joseph, by their families.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Now Zelophehad son of Hepher son of Gilead son of Machir son of Manasseh had no sons, but only daughters; and these are the names of his daughters: Mahlah, Noah, Hoglah, Milcah, and Tirzah.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> They came before the priest Eleazar and Joshua son of Nun and the leaders, and said, \"The LORD commanded Moses to give us an inheritance along with our male kin.\" So according to the commandment of the LORD he gave them an inheritance among the kinsmen of their father.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Thus there fell to Manasseh ten portions, besides the land of Gilead and Bashan, which is on the other side of the Jordan,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> because the daughters of Manasseh received an inheritance along with his sons. The land of Gilead was allotted to the rest of the Manassites.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The territory of Manasseh reached from Asher to Michmethath, which is east of Shechem; then the boundary goes along southward to the inhabitants of En-tappuah.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The land of Tappuah belonged to Manasseh, but the town of Tappuah on the boundary of Manasseh belonged to the Ephraimites.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then the boundary went down to the Wadi Kanah. The towns here, to the south of the wadi, among the towns of Manasseh, belong to Ephraim. Then the boundary of Manasseh goes along the north side of the wadi and ends at the sea.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The land to the south is Ephraim's and that to the north is Manasseh's, with the sea forming its boundary; on the north Asher is reached, and on the east Issachar.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Within Issachar and Asher, Manasseh had Beth-shean and its villages, Ibleam and its villages, the inhabitants of Dor and its villages, the inhabitants of En-dor and its villages, the inhabitants of Taanach and its villages, and the inhabitants of Megiddo and its villages (the third is Naphath). </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Yet the Manassites could not take possession of those towns; but the Canaanites continued to live in that land.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> But when the Israelites grew strong, they put the Canaanites to forced labor, but did not utterly drive them out.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The tribe of Joseph spoke to Joshua, saying, \"Why have you given me but one lot and one portion as an inheritance, since we are a numerous people, whom all along the LORD has blessed?\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And Joshua said to them, \"If you are a numerous people, go up to the forest, and clear ground there for yourselves in the land of the Perizzites and the Rephaim, since the hill country of Ephraim is too narrow for you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The tribe of Joseph said, \"The hill country is not enough for us; yet all the Canaanites who live in the plain have chariots of iron, both those in Beth-shean and its villages and those in the Valley of Jezreel.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then Joshua said to the house of Joseph, to Ephraim and Manasseh, \"You are indeed a numerous people, and have great power; you shall not have one lot only,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> but the hill country shall be yours, for though it is a forest, you shall clear it and possess it to its farthest borders; for you shall drive out the Canaanites, though they have chariots of iron, and though they are strong.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"18\">\r\n\t\t\t<VERS vnumber=\"1\"> Then the whole congregation of the Israelites assembled at Shiloh, and set up the tent of meeting there. The land lay subdued before them.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> There remained among the Israelites seven tribes whose inheritance had not yet been apportioned.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> So Joshua said to the Israelites, \"How long will you be slack about going in and taking possession of the land that the LORD, the God of your ancestors, has given you?</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Provide three men from each tribe, and I will send them out that they may begin to go throughout the land, writing a description of it with a view to their inheritances. Then come back to me.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> They shall divide it into seven portions, Judah continuing in its territory on the south, and the house of Joseph in their territory on the north.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> You shall describe the land in seven divisions and bring the description here to me; and I will cast lots for you here before the LORD our God.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The Levites have no portion among you, for the priesthood of the LORD is their heritage; and Gad and Reuben and the half-tribe of Manasseh have received their inheritance beyond the Jordan eastward, which Moses the servant of the LORD gave them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> So the men started on their way; and Joshua charged those who went to write the description of the land, saying, \"Go throughout the land and write a description of it, and come back to me; and I will cast lots for you here before the LORD in Shiloh.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> So the men went and traversed the land and set down in a book a description of it by towns in seven divisions; then they came back to Joshua in the camp at Shiloh,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> and Joshua cast lots for them in Shiloh before the LORD; and there Joshua apportioned the land to the Israelites, to each a portion.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The lot of the tribe of Benjamin according to its families came up, and the territory allotted to it fell between the tribe of Judah and the tribe of Joseph.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> On the north side their boundary began at the Jordan; then the boundary goes up to the slope of Jericho on the north, then up through the hill country westward; and it ends at the wilderness of Beth-aven.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> From there the boundary passes along southward in the direction of Luz, to the slope of Luz (that is, Bethel), then the boundary goes down to Ataroth-addar, on the mountain that lies south of Lower Beth-horon.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then the boundary goes in another direction, turning on the western side southward from the mountain that lies to the south, opposite Beth-horon, and it ends at Kiriath-baal (that is, Kiriath-jearim), a town belonging to the tribe of Judah. This forms the western side.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The southern side begins at the outskirts of Kiriath-jearim; and the boundary goes from there to Ephron, to the spring of the Waters of Nephtoah; </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> then the boundary goes down to the border of the mountain that overlooks the valley of the son of Hinnom, which is at the north end of the valley of Rephaim; and it then goes down the valley of Hinnom, south of the slope of the Jebusites, and downward to En-rogel;</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> then it bends in a northerly direction going on to En-shemesh, and from there goes to Geliloth, which is opposite the ascent of Adummim; then it goes down to the Stone of Bohan, Reuben's son;</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> and passing on to the north of the slope of Beth-arabah it goes down to the Arabah; </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> then the boundary passes on to the north of the slope of Beth-hoglah; and the boundary ends at the northern bay of the Dead Sea, at the south end of the Jordan: this is the southern border.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The Jordan forms its boundary on the eastern side. This is the inheritance of the tribe of Benjamin, according to its families, boundary by boundary all around.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Now the towns of the tribe of Benjamin according to their families were Jericho, Beth-hoglah, Emek-keziz,</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Beth-arabah, Zemaraim, Bethel,</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Avvim, Parah, Ophrah,</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Chephar-ammoni, Ophni, and Geba-- twelve towns with their villages:</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Gibeon, Ramah, Beeroth,</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Mizpeh, Chephirah, Mozah,</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Rekem, Irpeel, Taralah,</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Zela, Haeleph, Jebus (that is, Jerusalem), Gibeah and Kiriath-jearim-- fourteen towns with their villages. This is the inheritance of the tribe of Benjamin according to its families.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"19\">\r\n\t\t\t<VERS vnumber=\"1\"> The second lot came out for Simeon, for the tribe of Simeon, according to its families; its inheritance lay within the inheritance of the tribe of Judah.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> It had for its inheritance Beer-sheba, Sheba, Moladah,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Hazar-shual, Balah, Ezem,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Eltolad, Bethul, Hormah,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Ziklag, Beth-marcaboth, Hazar-susah,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Beth-lebaoth, and Sharuhen-- thirteen towns with their villages;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Ain, Rimmon, Ether, and Ashan-- four towns with their villages;</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> together with all the villages all around these towns as far as Baalath-beer, Ramah of the Negeb. This was the inheritance of the tribe of Simeon according to its families.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The inheritance of the tribe of Simeon formed part of the territory of Judah; because the portion of the tribe of Judah was too large for them, the tribe of Simeon obtained an inheritance within their inheritance.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The third lot came up for the tribe of Zebulun, according to its families. The boundary of its inheritance reached as far as Sarid;</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> then its boundary goes up westward, and on to Maralah, and touches Dabbesheth, then the wadi that is east of Jokneam;</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> from Sarid it goes in the other direction eastward toward the sunrise to the boundary of Chisloth-tabor; from there it goes to Daberath, then up to Japhia;</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> from there it passes along on the east toward the sunrise to Gath-hepher, to Eth-kazin, and going on to Rimmon it bends toward Neah;</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> then on the north the boundary makes a turn to Hannathon, and it ends at the valley of Iphtah-el;</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> and Kattath, Nahalal, Shimron, Idalah, and Bethlehem-- twelve towns with their villages.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> This is the inheritance of the tribe of Zebulun, according to its families-- these towns with their villages.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The fourth lot came out for Issachar, for the tribe of Issachar, according to its families.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Its territory included Jezreel, Chesulloth, Shunem,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Hapharaim, Shion, Anaharath,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Rabbith, Kishion, Ebez,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Remeth, En-gannim, En-haddah, Beth-pazzez;</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> the boundary also touches Tabor, Shahazumah, and Beth-shemesh, and its boundary ends at the Jordan-- sixteen towns with their villages.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> This is the inheritance of the tribe of Issachar, according to its families-- the towns with their villages.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> The fifth lot came out for the tribe of Asher according to its families.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Its boundary included Helkath, Hali, Beten, Achshaph,</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Allammelech, Amad, and Mishal; on the west it touches Carmel and Shihor-libnath,</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> then it turns eastward, goes to Beth-dagon, and touches Zebulun and the valley of Iphtah-el northward to Beth-emek and Neiel; then it continues in the north to Cabul,</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Ebron, Rehob, Hammon, Kanah, as far as Great Sidon;</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> then the boundary turns to Ramah, reaching to the fortified city of Tyre; then the boundary turns to Hosah, and it ends at the sea; Mahalab, Achzib, </VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Ummah, Aphek, and Rehob-- twenty-two towns with their villages.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> This is the inheritance of the tribe of Asher according to its families-- these towns with their villages.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> The sixth lot came out for the tribe of Naphtali, for the tribe of Naphtali, according to its families.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> And its boundary ran from Heleph, from the oak in Zaanannim, and Adami-nekeb, and Jabneel, as far as Lakkum; and it ended at the Jordan;</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> then the boundary turns westward to Aznoth-tabor, and goes from there to Hukkok, touching Zebulun at the south, and Asher on the west, and Judah on the east at the Jordan.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> The fortified towns are Ziddim, Zer, Hammath, Rakkath, Chinnereth,</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Adamah, Ramah, Hazor,</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Kedesh, Edrei, En-hazor,</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Iron, Migdal-el, Horem, Beth-anath, and Beth-shemesh-- nineteen towns with their villages.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> This is the inheritance of the tribe of Naphtali according to its families-- the towns with their villages.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> The seventh lot came out for the tribe of Dan, according to its families.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> The territory of its inheritance included Zorah, Eshtaol, Ir-shemesh,</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> Shaalabbin, Aijalon, Ithlah,</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> Elon, Timnah, Ekron,</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> Eltekeh, Gibbethon, Baalath,</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> Jehud, Bene-berak, Gath-rimmon,</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> Me-jarkon, and Rakkon at the border opposite Joppa.</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> When the territory of the Danites was lost to them, the Danites went up and fought against Leshem, and after capturing it and putting it to the sword, they took possession of it and settled in it, calling Leshem, Dan, after their ancestor Dan.</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> This is the inheritance of the tribe of Dan, according to their families-- these towns with their villages.</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> When they had finished distributing the several territories of the land as inheritances, the Israelites gave an inheritance among them to Joshua son of Nun.</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> By command of the LORD they gave him the town that he asked for, Timnath-serah in the hill country of Ephraim; he rebuilt the town, and settled in it.</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> These are the inheritances that the priest Eleazar and Joshua son of Nun and the heads of the families of the tribes of the Israelites distributed by lot at Shiloh before the LORD, at the entrance of the tent of meeting. So they finished dividing the land.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"20\">\r\n\t\t\t<VERS vnumber=\"1\"> Then the LORD spoke to Joshua, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"Say to the Israelites, 'Appoint the cities of refuge, of which I spoke to you through Moses,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> so that anyone who kills a person without intent or by mistake may flee there; they shall be for you a refuge from the avenger of blood.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The slayer shall flee to one of these cities and shall stand at the entrance of the gate of the city, and explain the case to the elders of that city; then the fugitive shall be taken into the city, and given a place, and shall remain with them.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> And if the avenger of blood is in pursuit, they shall not give up the slayer, because the neighbor was killed by mistake, there having been no enmity between them before.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The slayer shall remain in that city until there is a trial before the congregation, until the death of the one who is high priest at the time: then the slayer may return home, to the town in which the deed was done.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> So they set apart Kedesh in Galilee in the hill country of Naphtali, and Shechem in the hill country of Ephraim, and Kiriath-arba (that is, Hebron) in the hill country of Judah.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And beyond the Jordan east of Jericho, they appointed Bezer in the wilderness on the tableland, from the tribe of Reuben, and Ramoth in Gilead, from the tribe of Gad, and Golan in Bashan, from the tribe of Manasseh.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> These were the cities designated for all the Israelites, and for the aliens residing among them, that anyone who killed a person without intent could flee there, so as not to die by the hand of the avenger of blood, until there was a trial before the congregation.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"21\">\r\n\t\t\t<VERS vnumber=\"1\"> Then the heads of the families of the Levites came to the priest Eleazar and to Joshua son of Nun and to the heads of the families of the tribes of the Israelites;</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> they said to them at Shiloh in the land of Canaan, \"The LORD commanded through Moses that we be given towns to live in, along with their pasture lands for our livestock.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> So by command of the LORD the Israelites gave to the Levites the following towns and pasture lands out of their inheritance.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The lot came out for the families of the Kohathites. So those Levites who were descendants of Aaron the priest received by lot thirteen towns from the tribes of Judah, Simeon, and Benjamin.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The rest of the Kohathites received by lot ten towns from the families of the tribe of Ephraim, from the tribe of Dan, and the half-tribe of Manasseh.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The Gershonites received by lot thirteen towns from the families of the tribe of Issachar, from the tribe of Asher, from the tribe of Naphtali, and from the half-tribe of Manasseh in Bashan.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The Merarites according to their families received twelve towns from the tribe of Reuben, the tribe of Gad, and the tribe of Zebulun.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> These towns and their pasture lands the Israelites gave by lot to the Levites, as the LORD had commanded through Moses.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Out of the tribe of Judah and the tribe of Simeon they gave the following towns mentioned by name,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> which went to the descendants of Aaron, one of the families of the Kohathites who belonged to the Levites, since the lot fell to them first.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> They gave them Kiriath-arba (Arba being the father of Anak), that is Hebron, in the hill country of Judah, along with the pasture lands around it.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> But the fields of the town and its villages had been given to Caleb son of Jephunneh as his holding.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> To the descendants of Aaron the priest they gave Hebron, the city of refuge for the slayer, with its pasture lands, Libnah with its pasture lands,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Jattir with its pasture lands, Eshtemoa with its pasture lands,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Holon with its pasture lands, Debir with its pasture lands,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Ain with its pasture lands, Juttah with its pasture lands, and Beth-shemesh with its pasture lands-- nine towns out of these two tribes.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Out of the tribe of Benjamin: Gibeon with its pasture lands, Geba with its pasture lands,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Anathoth with its pasture lands, and Almon with its pasture lands-- four towns.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The towns of the descendants of Aaron-- the priests-- were thirteen in all, with their pasture lands.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> As to the rest of the Kohathites belonging to the Kohathite families of the Levites, the towns allotted to them were out of the tribe of Ephraim.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> To them were given Shechem, the city of refuge for the slayer, with its pasture lands in the hill country of Ephraim, Gezer with its pasture lands,</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Kibzaim with its pasture lands, and Beth-horon with its pasture lands-- four towns.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Out of the tribe of Dan: Elteke with its pasture lands, Gibbethon with its pasture lands,</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Aijalon with its pasture lands, Gath-rimmon with its pasture lands-- four towns.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Out of the half-tribe of Manasseh: Taanach with its pasture lands, and Gath-rimmon with its pasture lands-- two towns.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> The towns of the families of the rest of the Kohathites were ten in all, with their pasture lands.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> To the Gershonites, one of the families of the Levites, were given out of the half-tribe of Manasseh, Golan in Bashan with its pasture lands, the city of refuge for the slayer, and Beeshterah with its pasture lands-- two towns.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Out of the tribe of Issachar: Kishion with its pasture lands, Daberath with its pasture lands,</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Jarmuth with its pasture lands, En-gannim with its pasture lands-- four towns;</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Out of the tribe of Asher: Mishal with its pasture lands, Abdon with its pasture lands,</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Helkath with its pasture lands, and Rehob with its pasture lands-- four towns.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Out of the tribe of Naphtali: Kedesh in Galilee with its pasture lands, the city of refuge for the slayer, Hammoth-dor with its pasture lands, and Kartan with its pasture lands-- three towns.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> The towns of the several families of the Gershonites were in all thirteen, with their pasture lands.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> To the rest of the Levites-- the Merarite families-- were given out of the tribe of Zebulun: Jokneam with its pasture lands, Kartah with its pasture lands,</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Dimnah with its pasture lands, Nahalal with its pasture lands-- four towns.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Out of the tribe of Reuben: Bezer with its pasture lands, Jahzah with its pasture lands,</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Kedemoth with its pasture lands, and Mephaath with its pasture lands-- four towns.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Out of the tribe of Gad: Ramoth in Gilead with its pasture lands, the city of refuge for the slayer, Mahanaim with its pasture lands,</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> Heshbon with its pasture lands, Jazer with its pasture lands-- four towns in all.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> As for the towns of the several Merarite families, that is, the remainder of the families of the Levites, those allotted to them were twelve in all.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> The towns of the Levites within the holdings of the Israelites were in all forty-eight towns with their pasture lands.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> Each of these towns had its pasture lands around it; so it was with all these towns.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> Thus the LORD gave to Israel all the land that he swore to their ancestors that he would give them; and having taken possession of it, they settled there.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> And the LORD gave them rest on every side just as he had sworn to their ancestors; not one of all their enemies had withstood them, for the LORD had given all their enemies into their hands.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> Not one of all the good promises that the LORD had made to the house of Israel had failed; all came to pass.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"22\">\r\n\t\t\t<VERS vnumber=\"1\"> Then Joshua summoned the Reubenites, the Gadites, and the half-tribe of Manasseh,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> and said to them, \"You have observed all that Moses the servant of the LORD commanded you, and have obeyed me in all that I have commanded you;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> you have not forsaken your kindred these many days, down to this day, but have been careful to keep the charge of the LORD your God.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> And now the LORD your God has given rest to your kindred, as he promised them; therefore turn and go to your tents in the land where your possession lies, which Moses the servant of the LORD gave you on the other side of the Jordan.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Take good care to observe the commandment and instruction that Moses the servant of the LORD commanded you, to love the LORD your God, to walk in all his ways, to keep his commandments, and to hold fast to him, and to serve him with all your heart and with all your soul.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> So Joshua blessed them and sent them away, and they went to their tents.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Now to the one half of the tribe of Manasseh Moses had given a possession in Bashan; but to the other half Joshua had given a possession beside their fellow Israelites in the land west of the Jordan. And when Joshua sent them away to their tents and blessed them,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> he said to them, \"Go back to your tents with much wealth, and with very much livestock, with silver, gold, bronze, and iron, and with a great quantity of clothing; divide the spoil of your enemies with your kindred.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> So the Reubenites and the Gadites and the half-tribe of Manasseh returned home, parting from the Israelites at Shiloh, which is in the land of Canaan, to go to the land of Gilead, their own land of which they had taken possession by command of the LORD through Moses.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> When they came to the region near the Jordan that lies in the land of Canaan, the Reubenites and the Gadites and the half-tribe of Manasseh built there an altar by the Jordan, an altar of great size. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The Israelites heard that the Reubenites and the Gadites and the half-tribe of Manasseh had built an altar at the frontier of the land of Canaan, in the region near the Jordan, on the side that belongs to the Israelites. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> And when the people of Israel heard of it, the whole assembly of the Israelites gathered at Shiloh, to make war against them.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then the Israelites sent the priest Phinehas son of Eleazar to the Reubenites and the Gadites and the half-tribe of Manasseh, in the land of Gilead,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> and with him ten chiefs, one from each of the tribal families of Israel, every one of them the head of a family among the clans of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> They came to the Reubenites, the Gadites, and the half-tribe of Manasseh, in the land of Gilead, and they said to them,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> \"Thus says the whole congregation of the LORD, 'What is this treachery that you have committed against the God of Israel in turning away today from following the LORD, by building yourselves an altar today in rebellion against the LORD?</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Have we not had enough of the sin at Peor from which even yet we have not cleansed ourselves, and for which a plague came upon the congregation of the LORD,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> that you must turn away today from following the LORD! If you rebel against the LORD today, he will be angry with the whole congregation of Israel tomorrow.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> But now, if your land is unclean, cross over into the LORD's land where the LORD's tabernacle now stands, and take for yourselves a possession among us; only do not rebel against the LORD, or rebel against us by building yourselves an altar other than the altar of the LORD our God. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Did not Achan son of Zerah break faith in the matter of the devoted things, and wrath fell upon all the congregation of Israel? And he did not perish alone for his iniquity!'\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then the Reubenites, the Gadites, and the half-tribe of Manasseh said in answer to the heads of the families of Israel,</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> \"The LORD, God of gods! The LORD, God of gods! He knows; and let Israel itself know! If it was in rebellion or in breach of faith toward the LORD, do not spare us today</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> for building an altar to turn away from following the LORD; or if we did so to offer burnt offerings or grain offerings or offerings of well-being on it, may the LORD himself take vengeance.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> No! We did it from fear that in time to come your children might say to our children, 'What have you to do with the LORD, the God of Israel?</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> For the LORD has made the Jordan a boundary between us and you, you Reubenites and Gadites; you have no portion in the LORD.' So your children might make our children cease to worship the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Therefore we said, 'Let us now build an altar, not for burnt offering, nor for sacrifice,</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> but to be a witness between us and you, and between the generations after us, that we do perform the service of the LORD in his presence with our burnt offerings and sacrifices and offerings of well-being; so that your children may never say to our children in time to come, \"You have no portion in the LORD.\"'</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> And we thought, If this should be said to us or to our descendants in time to come, we could say, 'Look at this copy of the altar of the LORD, which our ancestors made, not for burnt offerings, nor for sacrifice, but to be a witness between us and you.'</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Far be it from us that we should rebel against the LORD, and turn away this day from following the LORD by building an altar for burnt offering, grain offering, or sacrifice, other than the altar of the LORD our God that stands before his tabernacle!\"</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> When the priest Phinehas and the chiefs of the congregation, the heads of the families of Israel who were with him, heard the words that the Reubenites and the Gadites and the Manassites spoke, they were satisfied.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> The priest Phinehas son of Eleazar said to the Reubenites and the Gadites and the Manassites, \"Today we know that the LORD is among us, because you have not committed this treachery against the LORD; now you have saved the Israelites from the hand of the LORD.\"</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Then the priest Phinehas son of Eleazar and the chiefs returned from the Reubenites and the Gadites in the land of Gilead to the land of Canaan, to the Israelites, and brought back word to them.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> The report pleased the Israelites; and the Israelites blessed God and spoke no more of making war against them, to destroy the land where the Reubenites and the Gadites were settled.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> The Reubenites and the Gadites called the altar Witness; \"For,\" said they, \"it is a witness between us that the LORD is God.\" </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"23\">\r\n\t\t\t<VERS vnumber=\"1\"> A long time afterward, when the LORD had given rest to Israel from all their enemies all around, and Joshua was old and well advanced in years,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Joshua summoned all Israel, their elders and heads, their judges and officers, and said to them, \"I am now old and well advanced in years;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> and you have seen all that the LORD your God has done to all these nations for your sake, for it is the LORD your God who has fought for you.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> I have allotted to you as an inheritance for your tribes those nations that remain, along with all the nations that I have already cut off, from the Jordan to the Great Sea in the west.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The LORD your God will push them back before you, and drive them out of your sight; and you shall possess their land, as the LORD your God promised you.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Therefore be very steadfast to observe and do all that is written in the book of the law of Moses, turning aside from it neither to the right nor to the left,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> so that you may not be mixed with these nations left here among you, or make mention of the names of their gods, or swear by them, or serve them, or bow yourselves down to them,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> but hold fast to the LORD your God, as you have done to this day.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> For the LORD has driven out before you great and strong nations; and as for you, no one has been able to withstand you to this day.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> One of you puts to flight a thousand, since it is the LORD your God who fights for you, as he promised you.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Be very careful, therefore, to love the LORD your God.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> For if you turn back, and join the survivors of these nations left here among you, and intermarry with them, so that you marry their women and they yours,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> know assuredly that the LORD your God will not continue to drive out these nations before you; but they shall be a snare and a trap for you, a scourge on your sides, and thorns in your eyes, until you perish from this good land that the LORD your God has given you.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> \"And now I am about to go the way of all the earth, and you know in your hearts and souls, all of you, that not one thing has failed of all the good things that the LORD your God promised concerning you; all have come to pass for you, not one of them has failed.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> But just as all the good things that the LORD your God promised concerning you have been fulfilled for you, so the LORD will bring upon you all the bad things, until he has destroyed you from this good land that the LORD your God has given you.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> If you transgress the covenant of the LORD your God, which he enjoined on you, and go and serve other gods and bow down to them, then the anger of the LORD will be kindled against you, and you shall perish quickly from the good land that he has given to you.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"24\">\r\n\t\t\t<VERS vnumber=\"1\"> Then Joshua gathered all the tribes of Israel to Shechem, and summoned the elders, the heads, the judges, and the officers of Israel; and they presented themselves before God.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And Joshua said to all the people, \"Thus says the LORD, the God of Israel: Long ago your ancestors-- Terah and his sons Abraham and Nahor-- lived beyond the Euphrates and served other gods.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then I took your father Abraham from beyond the River and led him through all the land of Canaan and made his offspring many. I gave him Isaac;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> and to Isaac I gave Jacob and Esau. I gave Esau the hill country of Seir to possess, but Jacob and his children went down to Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then I sent Moses and Aaron, and I plagued Egypt with what I did in its midst; and afterwards I brought you out.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> When I brought your ancestors out of Egypt, you came to the sea; and the Egyptians pursued your ancestors with chariots and horsemen to the Red Sea. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> When they cried out to the LORD, he put darkness between you and the Egyptians, and made the sea come upon them and cover them; and your eyes saw what I did to Egypt. Afterwards you lived in the wilderness a long time.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then I brought you to the land of the Amorites, who lived on the other side of the Jordan; they fought with you, and I handed them over to you, and you took possession of their land, and I destroyed them before you.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then King Balak son of Zippor of Moab, set out to fight against Israel. He sent and invited Balaam son of Beor to curse you,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> but I would not listen to Balaam; therefore he blessed you; so I rescued you out of his hand.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> When you went over the Jordan and came to Jericho, the citizens of Jericho fought against you, and also the Amorites, the Perizzites, the Canaanites, the Hittites, the Girgashites, the Hivites, and the Jebusites; and I handed them over to you.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> I sent the hornet ahead of you, which drove out before you the two kings of the Amorites; it was not by your sword or by your bow.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> I gave you a land on which you had not labored, and towns that you had not built, and you live in them; you eat the fruit of vineyards and oliveyards that you did not plant.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> \"Now therefore revere the LORD, and serve him in sincerity and in faithfulness; put away the gods that your ancestors served beyond the River and in Egypt, and serve the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Now if you are unwilling to serve the LORD, choose this day whom you will serve, whether the gods your ancestors served in the region beyond the River or the gods of the Amorites in whose land you are living; but as for me and my household, we will serve the LORD.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then the people answered, \"Far be it from us that we should forsake the LORD to serve other gods;</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> for it is the LORD our God who brought us and our ancestors up from the land of Egypt, out of the house of slavery, and who did those great signs in our sight. He protected us along all the way that we went, and among all the peoples through whom we passed;</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> and the LORD drove out before us all the peoples, the Amorites who lived in the land. Therefore we also will serve the LORD, for he is our God.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> But Joshua said to the people, \"You cannot serve the LORD, for he is a holy God. He is a jealous God; he will not forgive your transgressions or your sins.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> If you forsake the LORD and serve foreign gods, then he will turn and do you harm, and consume you, after having done you good.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> And the people said to Joshua, \"No, we will serve the LORD!\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Then Joshua said to the people, \"You are witnesses against yourselves that you have chosen the LORD, to serve him.\" And they said, \"We are witnesses.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> He said, \"Then put away the foreign gods that are among you, and incline your hearts to the LORD, the God of Israel.\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> The people said to Joshua, \"The LORD our God we will serve, and him we will obey.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> So Joshua made a covenant with the people that day, and made statutes and ordinances for them at Shechem.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Joshua wrote these words in the book of the law of God; and he took a large stone, and set it up there under the oak in the sanctuary of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Joshua said to all the people, \"See, this stone shall be a witness against us; for it has heard all the words of the LORD that he spoke to us; therefore it shall be a witness against you, if you deal falsely with your God.\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> So Joshua sent the people away to their inheritances.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> After these things Joshua son of Nun, the servant of the LORD, died, being one hundred ten years old.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> They buried him in his own inheritance at Timnath-serah, which is in the hill country of Ephraim, north of Mount Gaash.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Israel served the LORD all the days of Joshua, and all the days of the elders who outlived Joshua and had known all the work that the LORD did for Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> The bones of Joseph, which the Israelites had brought up from Egypt, were buried at Shechem, in the portion of ground that Jacob had bought from the children of Hamor, the father of Shechem, for one hundred pieces of money; it became an inheritance of the descendants of Joseph. </VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Eleazar son of Aaron died; and they buried him at Gibeah, the town of his son Phinehas, which had been given him in the hill country of Ephraim.</VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"7\" bname=\"Judges\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> After the death of Joshua, the Israelites inquired of the LORD, \"Who shall go up first for us against the Canaanites, to fight against them?\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The LORD said, \"Judah shall go up. I hereby give the land into his hand.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Judah said to his brother Simeon, \"Come up with me into the territory allotted to me, that we may fight against the Canaanites; then I too will go with you into the territory allotted to you.\" So Simeon went with him.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then Judah went up and the LORD gave the Canaanites and the Perizzites into their hand; and they defeated ten thousand of them at Bezek.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> They came upon Adoni-bezek at Bezek, and fought against him, and defeated the Canaanites and the Perizzites.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Adoni-bezek fled; but they pursued him, and caught him, and cut off his thumbs and big toes.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Adoni-bezek said, \"Seventy kings with their thumbs and big toes cut off used to pick up scraps under my table; as I have done, so God has paid me back.\" They brought him to Jerusalem, and he died there.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then the people of Judah fought against Jerusalem and took it. They put it to the sword and set the city on fire.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Afterward the people of Judah went down to fight against the Canaanites who lived in the hill country, in the Negeb, and in the lowland.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Judah went against the Canaanites who lived in Hebron (the name of Hebron was formerly Kiriath-arba); and they defeated Sheshai and Ahiman and Talmai.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> From there they went against the inhabitants of Debir (the name of Debir was formerly Kiriath-sepher).</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then Caleb said, \"Whoever attacks Kiriath-sepher and takes it, I will give him my daughter Achsah as wife.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And Othniel son of Kenaz, Caleb's younger brother, took it; and he gave him his daughter Achsah as wife.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> When she came to him, she urged him to ask her father for a field. As she dismounted from her donkey, Caleb said to her, \"What do you wish?\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> She said to him, \"Give me a present; since you have set me in the land of the Negeb, give me also Gulloth-mayim.\" So Caleb gave her Upper Gulloth and Lower Gulloth. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The descendants of Hobab the Kenite, Moses' father-in-law, went up with the people of Judah from the city of palms into the wilderness of Judah, which lies in the Negeb near Arad. Then they went and settled with the Amalekites. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Judah went with his brother Simeon, and they defeated the Canaanites who inhabited Zephath, and devoted it to destruction. So the city was called Hormah.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Judah took Gaza with its territory, Ashkelon with its territory, and Ekron with its territory.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The LORD was with Judah, and he took possession of the hill country, but could not drive out the inhabitants of the plain, because they had chariots of iron.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Hebron was given to Caleb, as Moses had said; and he drove out from it the three sons of Anak.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> But the Benjaminites did not drive out the Jebusites who lived in Jerusalem; so the Jebusites have lived in Jerusalem among the Benjaminites to this day.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The house of Joseph also went up against Bethel; and the LORD was with them.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> The house of Joseph sent out spies to Bethel (the name of the city was formerly Luz).</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> When the spies saw a man coming out of the city, they said to him, \"Show us the way into the city, and we will deal kindly with you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> So he showed them the way into the city; and they put the city to the sword, but they let the man and all his family go.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> So the man went to the land of the Hittites and built a city, and named it Luz; that is its name to this day.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Manasseh did not drive out the inhabitants of Beth-shean and its villages, or Taanach and its villages, or the inhabitants of Dor and its villages, or the inhabitants of Ibleam and its villages, or the inhabitants of Megiddo and its villages; but the Canaanites continued to live in that land.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> When Israel grew strong, they put the Canaanites to forced labor, but did not in fact drive them out.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> And Ephraim did not drive out the Canaanites who lived in Gezer; but the Canaanites lived among them in Gezer.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Zebulun did not drive out the inhabitants of Kitron, or the inhabitants of Nahalol; but the Canaanites lived among them, and became subject to forced labor.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Asher did not drive out the inhabitants of Acco, or the inhabitants of Sidon, or of Ahlab, or of Achzib, or of Helbah, or of Aphik, or of Rehob;</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> but the Asherites lived among the Canaanites, the inhabitants of the land; for they did not drive them out.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Naphtali did not drive out the inhabitants of Beth-shemesh, or the inhabitants of Beth-anath, but lived among the Canaanites, the inhabitants of the land; nevertheless the inhabitants of Beth-shemesh and of Beth-anath became subject to forced labor for them.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> The Amorites pressed the Danites back into the hill country; they did not allow them to come down to the plain.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> The Amorites continued to live in Har-heres, in Aijalon, and in Shaalbim, but the hand of the house of Joseph rested heavily on them, and they became subject to forced labor.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> The border of the Amorites ran from the ascent of Akrabbim, from Sela and upward.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> Now the angel of the LORD went up from Gilgal to Bochim, and said, \"I brought you up from Egypt, and brought you into the land that I had promised to your ancestors. I said, 'I will never break my covenant with you.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> For your part, do not make a covenant with the inhabitants of this land; tear down their altars.' But you have not obeyed my command. See what you have done!</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> So now I say, I will not drive them out before you; but they shall become adversaries to you, and their gods shall be a snare to you.\" </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> When the angel of the LORD spoke these words to all the Israelites, the people lifted up their voices and wept.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> So they named that place Bochim, and there they sacrificed to the LORD. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> When Joshua dismissed the people, the Israelites all went to their own inheritances to take possession of the land.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The people worshiped the LORD all the days of Joshua, and all the days of the elders who outlived Joshua, who had seen all the great work that the LORD had done for Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Joshua son of Nun, the servant of the LORD, died at the age of one hundred ten years.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> So they buried him within the bounds of his inheritance in Timnath-heres, in the hill country of Ephraim, north of Mount Gaash.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Moreover, that whole generation was gathered to their ancestors, and another generation grew up after them, who did not know the LORD or the work that he had done for Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then the Israelites did what was evil in the sight of the LORD and worshiped the Baals;</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> and they abandoned the LORD, the God of their ancestors, who had brought them out of the land of Egypt; they followed other gods, from among the gods of the peoples who were all around them, and bowed down to them; and they provoked the LORD to anger.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> They abandoned the LORD, and worshiped Baal and the Astartes.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> So the anger of the LORD was kindled against Israel, and he gave them over to plunderers who plundered them, and he sold them into the power of their enemies all around, so that they could no longer withstand their enemies.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Whenever they marched out, the hand of the LORD was against them to bring misfortune, as the LORD had warned them and sworn to them; and they were in great distress.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then the LORD raised up judges, who delivered them out of the power of those who plundered them.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Yet they did not listen even to their judges; for they lusted after other gods and bowed down to them. They soon turned aside from the way in which their ancestors had walked, who had obeyed the commandments of the LORD; they did not follow their example.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Whenever the LORD raised up judges for them, the LORD was with the judge, and he delivered them from the hand of their enemies all the days of the judge; for the LORD would be moved to pity by their groaning because of those who persecuted and oppressed them.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> But whenever the judge died, they would relapse and behave worse than their ancestors, following other gods, worshiping them and bowing down to them. They would not drop any of their practices or their stubborn ways.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> So the anger of the LORD was kindled against Israel; and he said, \"Because this people have transgressed my covenant that I commanded their ancestors, and have not obeyed my voice,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> I will no longer drive out before them any of the nations that Joshua left when he died.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> In order to test Israel, whether or not they would take care to walk in the way of the LORD as their ancestors did,</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> the LORD had left those nations, not driving them out at once, and had not handed them over to Joshua.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> Now these are the nations that the LORD left to test all those in Israel who had no experience of any war in Canaan</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> (it was only that successive generations of Israelites might know war, to teach those who had no experience of it before):</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> the five lords of the Philistines, and all the Canaanites, and the Sidonians, and the Hivites who lived on Mount Lebanon, from Mount Baal-hermon as far as Lebo-hamath.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> They were for the testing of Israel, to know whether Israel would obey the commandments of the LORD, which he commanded their ancestors by Moses.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> So the Israelites lived among the Canaanites, the Hittites, the Amorites, the Perizzites, the Hivites, and the Jebusites;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> and they took their daughters as wives for themselves, and their own daughters they gave to their sons; and they worshiped their gods.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The Israelites did what was evil in the sight of the LORD, forgetting the LORD their God, and worshiping the Baals and the Asherahs.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Therefore the anger of the LORD was kindled against Israel, and he sold them into the hand of King Cushan-rishathaim of Aram-naharaim; and the Israelites served Cushan-rishathaim eight years.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> But when the Israelites cried out to the LORD, the LORD raised up a deliverer for the Israelites, who delivered them, Othniel son of Kenaz, Caleb's younger brother.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The spirit of the LORD came upon him, and he judged Israel; he went out to war, and the LORD gave King Cushan-rishathaim of Aram into his hand; and his hand prevailed over Cushan-rishathaim.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> So the land had rest forty years. Then Othniel son of Kenaz died.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The Israelites again did what was evil in the sight of the LORD; and the LORD strengthened King Eglon of Moab against Israel, because they had done what was evil in the sight of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> In alliance with the Ammonites and the Amalekites, he went and defeated Israel; and they took possession of the city of palms.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> So the Israelites served King Eglon of Moab eighteen years.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> But when the Israelites cried out to the LORD, the LORD raised up for them a deliverer, Ehud son of Gera, the Benjaminite, a left-handed man. The Israelites sent tribute by him to King Eglon of Moab.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Ehud made for himself a sword with two edges, a cubit in length; and he fastened it on his right thigh under his clothes.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then he presented the tribute to King Eglon of Moab. Now Eglon was a very fat man.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> When Ehud had finished presenting the tribute, he sent the people who carried the tribute on their way.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> But he himself turned back at the sculptured stones near Gilgal, and said, \"I have a secret message for you, O king.\" So the king said, \"Silence!\" and all his attendants went out from his presence.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Ehud came to him, while he was sitting alone in his cool roof chamber, and said, \"I have a message from God for you.\" So he rose from his seat.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then Ehud reached with his left hand, took the sword from his right thigh, and thrust it into Eglon's belly; </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> the hilt also went in after the blade, and the fat closed over the blade, for he did not draw the sword out of his belly; and the dirt came out. </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Then Ehud went out into the vestibule, and closed the doors of the roof chamber on him, and locked them. </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> After he had gone, the servants came. When they saw that the doors of the roof chamber were locked, they thought, \"He must be relieving himself in the cool chamber.\" </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> So they waited until they were embarrassed. When he still did not open the doors of the roof chamber, they took the key and opened them. There was their lord lying dead on the floor.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Ehud escaped while they delayed, and passed beyond the sculptured stones, and escaped to Seirah.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> When he arrived, he sounded the trumpet in the hill country of Ephraim; and the Israelites went down with him from the hill country, having him at their head.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> He said to them, \"Follow after me; for the LORD has given your enemies the Moabites into your hand.\" So they went down after him, and seized the fords of the Jordan against the Moabites, and allowed no one to cross over.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> At that time they killed about ten thousand of the Moabites, all strong, able-bodied men; no one escaped.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> So Moab was subdued that day under the hand of Israel. And the land had rest eighty years.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> After him came Shamgar son of Anath, who killed six hundred of the Philistines with an oxgoad. He too delivered Israel.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> The Israelites again did what was evil in the sight of the LORD, after Ehud died.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> So the LORD sold them into the hand of King Jabin of Canaan, who reigned in Hazor; the commander of his army was Sisera, who lived in Harosheth-ha-goiim.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then the Israelites cried out to the LORD for help; for he had nine hundred chariots of iron, and had oppressed the Israelites cruelly twenty years.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> At that time Deborah, a prophetess, wife of Lappidoth, was judging Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> She used to sit under the palm of Deborah between Ramah and Bethel in the hill country of Ephraim; and the Israelites came up to her for judgment.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> She sent and summoned Barak son of Abinoam from Kedesh in Naphtali, and said to him, \"The LORD, the God of Israel, commands you, 'Go, take position at Mount Tabor, bringing ten thousand from the tribe of Naphtali and the tribe of Zebulun.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> I will draw out Sisera, the general of Jabin's army, to meet you by the Wadi Kishon with his chariots and his troops; and I will give him into your hand.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Barak said to her, \"If you will go with me, I will go; but if you will not go with me, I will not go.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> And she said, \"I will surely go with you; nevertheless, the road on which you are going will not lead to your glory, for the LORD will sell Sisera into the hand of a woman.\" Then Deborah got up and went with Barak to Kedesh.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Barak summoned Zebulun and Naphtali to Kedesh; and ten thousand warriors went up behind him; and Deborah went up with him.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Now Heber the Kenite had separated from the other Kenites, that is, the descendants of Hobab the father-in-law of Moses, and had encamped as far away as Elon-bezaanannim, which is near Kedesh. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> When Sisera was told that Barak son of Abinoam had gone up to Mount Tabor,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Sisera called out all his chariots, nine hundred chariots of iron, and all the troops who were with him, from Harosheth-ha-goiim to the Wadi Kishon.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then Deborah said to Barak, \"Up! For this is the day on which the LORD has given Sisera into your hand. The LORD is indeed going out before you.\" So Barak went down from Mount Tabor with ten thousand warriors following him.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And the LORD threw Sisera and all his chariots and all his army into a panic before Barak; Sisera got down from his chariot and fled away on foot, </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> while Barak pursued the chariots and the army to Harosheth-ha-goiim. All the army of Sisera fell by the sword; no one was left.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Now Sisera had fled away on foot to the tent of Jael wife of Heber the Kenite; for there was peace between King Jabin of Hazor and the clan of Heber the Kenite.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Jael came out to meet Sisera, and said to him, \"Turn aside, my lord, turn aside to me; have no fear.\" So he turned aside to her into the tent, and she covered him with a rug.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Then he said to her, \"Please give me a little water to drink; for I am thirsty.\" So she opened a skin of milk and gave him a drink and covered him.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> He said to her, \"Stand at the entrance of the tent, and if anybody comes and asks you, 'Is anyone here?' say, 'No.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> But Jael wife of Heber took a tent peg, and took a hammer in her hand, and went softly to him and drove the peg into his temple, until it went down into the ground-- he was lying fast asleep from weariness-- and he died.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Then, as Barak came in pursuit of Sisera, Jael went out to meet him, and said to him, \"Come, and I will show you the man whom you are seeking.\" So he went into her tent; and there was Sisera lying dead, with the tent peg in his temple.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> So on that day God subdued King Jabin of Canaan before the Israelites.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Then the hand of the Israelites bore harder and harder on King Jabin of Canaan, until they destroyed King Jabin of Canaan.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"5\">\r\n\t\t\t<VERS vnumber=\"1\"> Then Deborah and Barak son of Abinoam sang on that day, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"When locks are long in Israel, when the people offer themselves willingly-- bless the LORD!</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> \"Hear, O kings; give ear, O princes; to the LORD I will sing, I will make melody to the LORD, the God of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> \"LORD, when you went out from Seir, when you marched from the region of Edom, the earth trembled, and the heavens poured, the clouds indeed poured water.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The mountains quaked before the LORD, the One of Sinai, before the LORD, the God of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> \"In the days of Shamgar son of Anath, in the days of Jael, caravans ceased and travelers kept to the byways.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The peasantry prospered in Israel, they grew fat on plunder, because you arose, Deborah, arose as a mother in Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> When new gods were chosen, then war was in the gates. Was shield or spear to be seen among forty thousand in Israel?</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> My heart goes out to the commanders of Israel who offered themselves willingly among the people. Bless the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> \"Tell of it, you who ride on white donkeys, you who sit on rich carpets and you who walk by the way. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> To the sound of musicians at the watering places, there they repeat the triumphs of the LORD, the triumphs of his peasantry in Israel. \"Then down to the gates marched the people of the LORD. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> \"Awake, awake, Deborah! Awake, awake, utter a song! Arise, Barak, lead away your captives, O son of Abinoam.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then down marched the remnant of the noble; the people of the LORD marched down for him against the mighty. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> From Ephraim they set out into the valley, following you, Benjamin, with your kin; from Machir marched down the commanders, and from Zebulun those who bear the marshal's staff; </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> the chiefs of Issachar came with Deborah, and Issachar faithful to Barak; into the valley they rushed out at his heels. Among the clans of Reuben there were great searchings of heart.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Why did you tarry among the sheepfolds, to hear the piping for the flocks? Among the clans of Reuben there were great searchings of heart.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Gilead stayed beyond the Jordan; and Dan, why did he abide with the ships? Asher sat still at the coast of the sea, settling down by his landings.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Zebulun is a people that scorned death; Naphtali too, on the heights of the field.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> \"The kings came, they fought; then fought the kings of Canaan, at Taanach, by the waters of Megiddo; they got no spoils of silver.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The stars fought from heaven, from their courses they fought against Sisera.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> The torrent Kishon swept them away, the onrushing torrent, the torrent Kishon. March on, my soul, with might!</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> \"Then loud beat the horses' hoofs with the galloping, galloping of his steeds.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> \"Curse Meroz, says the angel of the LORD, curse bitterly its inhabitants, because they did not come to the help of the LORD, to the help of the LORD against the mighty.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> \"Most blessed of women be Jael, the wife of Heber the Kenite, of tent-dwelling women most blessed.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> He asked water and she gave him milk, she brought him curds in a lordly bowl.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> She put her hand to the tent peg and her right hand to the workmen's mallet; she struck Sisera a blow, she crushed his head, she shattered and pierced his temple.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> He sank, he fell, he lay still at her feet; at her feet he sank, he fell; where he sank, there he fell dead.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> \"Out of the window she peered, the mother of Sisera gazed through the lattice: 'Why is his chariot so long in coming? Why tarry the hoofbeats of his chariots?'</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Her wisest ladies make answer, indeed, she answers the question herself:</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> 'Are they not finding and dividing the spoil?-- A girl or two for every man; spoil of dyed stuffs for Sisera, spoil of dyed stuffs embroidered, two pieces of dyed work embroidered for my neck as spoil?'</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> \"So perish all your enemies, O LORD! But may your friends be like the sun as it rises in its might.\" And the land had rest forty years.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"6\">\r\n\t\t\t<VERS vnumber=\"1\"> The Israelites did what was evil in the sight of the LORD, and the LORD gave them into the hand of Midian seven years.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The hand of Midian prevailed over Israel; and because of Midian the Israelites provided for themselves hiding places in the mountains, caves and strongholds.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For whenever the Israelites put in seed, the Midianites and the Amalekites and the people of the east would come up against them.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> They would encamp against them and destroy the produce of the land, as far as the neighborhood of Gaza, and leave no sustenance in Israel, and no sheep or ox or donkey.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> For they and their livestock would come up, and they would even bring their tents, as thick as locusts; neither they nor their camels could be counted; so they wasted the land as they came in.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Thus Israel was greatly impoverished because of Midian; and the Israelites cried out to the LORD for help.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> When the Israelites cried to the LORD on account of the Midianites,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> the LORD sent a prophet to the Israelites; and he said to them, \"Thus says the LORD, the God of Israel: I led you up from Egypt, and brought you out of the house of slavery;</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> and I delivered you from the hand of the Egyptians, and from the hand of all who oppressed you, and drove them out before you, and gave you their land;</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> and I said to you, 'I am the LORD your God; you shall not pay reverence to the gods of the Amorites, in whose land you live.' But you have not given heed to my voice.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Now the angel of the LORD came and sat under the oak at Ophrah, which belonged to Joash the Abiezrite, as his son Gideon was beating out wheat in the wine press, to hide it from the Midianites.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The angel of the LORD appeared to him and said to him, \"The LORD is with you, you mighty warrior.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Gideon answered him, \"But sir, if the LORD is with us, why then has all this happened to us? And where are all his wonderful deeds that our ancestors recounted to us, saying, 'Did not the LORD bring us up from Egypt?' But now the LORD has cast us off, and given us into the hand of Midian.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then the LORD turned to him and said, \"Go in this might of yours and deliver Israel from the hand of Midian; I hereby commission you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> He responded, \"But sir, how can I deliver Israel? My clan is the weakest in Manasseh, and I am the least in my family.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The LORD said to him, \"But I will be with you, and you shall strike down the Midianites, every one of them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then he said to him, \"If now I have found favor with you, then show me a sign that it is you who speak with me.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Do not depart from here until I come to you, and bring out my present, and set it before you.\" And he said, \"I will stay until you return.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> So Gideon went into his house and prepared a kid, and unleavened cakes from an ephah of flour; the meat he put in a basket, and the broth he put in a pot, and brought them to him under the oak and presented them.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The angel of God said to him, \"Take the meat and the unleavened cakes, and put them on this rock, and pour out the broth.\" And he did so.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then the angel of the LORD reached out the tip of the staff that was in his hand, and touched the meat and the unleavened cakes; and fire sprang up from the rock and consumed the meat and the unleavened cakes; and the angel of the LORD vanished from his sight.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Then Gideon perceived that it was the angel of the LORD; and Gideon said, \"Help me, Lord GOD! For I have seen the angel of the LORD face to face.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> But the LORD said to him, \"Peace be to you; do not fear, you shall not die.\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Then Gideon built an altar there to the LORD, and called it, The LORD is peace. To this day it still stands at Ophrah, which belongs to the Abiezrites.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> That night the LORD said to him, \"Take your father's bull, the second bull seven years old, and pull down the altar of Baal that belongs to your father, and cut down the sacred pole that is beside it; </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> and build an altar to the LORD your God on the top of the stronghold here, in proper order; then take the second bull, and offer it as a burnt offering with the wood of the sacred pole that you shall cut down.\" </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> So Gideon took ten of his servants, and did as the LORD had told him; but because he was too afraid of his family and the townspeople to do it by day, he did it by night.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> When the townspeople rose early in the morning, the altar of Baal was broken down, and the sacred pole beside it was cut down, and the second bull was offered on the altar that had been built. </VERS>\r\n\t\t\t<VERS vnumber=\"29\"> So they said to one another, \"Who has done this?\" After searching and inquiring, they were told, \"Gideon son of Joash did it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Then the townspeople said to Joash, \"Bring out your son, so that he may die, for he has pulled down the altar of Baal and cut down the sacred pole beside it.\" </VERS>\r\n\t\t\t<VERS vnumber=\"31\"> But Joash said to all who were arrayed against him, \"Will you contend for Baal? Or will you defend his cause? Whoever contends for him shall be put to death by morning. If he is a god, let him contend for himself, because his altar has been pulled down.\"</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Therefore on that day Gideon was called Jerubbaal, that is to say, \"Let Baal contend against him,\" because he pulled down his altar. </VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Then all the Midianites and the Amalekites and the people of the east came together, and crossing the Jordan they encamped in the Valley of Jezreel.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> But the spirit of the LORD took possession of Gideon; and he sounded the trumpet, and the Abiezrites were called out to follow him.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> He sent messengers throughout all Manasseh, and they too were called out to follow him. He also sent messengers to Asher, Zebulun, and Naphtali, and they went up to meet them.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Then Gideon said to God, \"In order to see whether you will deliver Israel by my hand, as you have said,</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> I am going to lay a fleece of wool on the threshing floor; if there is dew on the fleece alone, and it is dry on all the ground, then I shall know that you will deliver Israel by my hand, as you have said.\"</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> And it was so. When he rose early next morning and squeezed the fleece, he wrung enough dew from the fleece to fill a bowl with water.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> Then Gideon said to God, \"Do not let your anger burn against me, let me speak one more time; let me, please, make trial with the fleece just once more; let it be dry only on the fleece, and on all the ground let there be dew.\"</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> And God did so that night. It was dry on the fleece only, and on all the ground there was dew.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"7\">\r\n\t\t\t<VERS vnumber=\"1\"> Then Jerubbaal (that is, Gideon) and all the troops that were with him rose early and encamped beside the spring of Harod; and the camp of Midian was north of them, below the hill of Moreh, in the valley. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The LORD said to Gideon, \"The troops with you are too many for me to give the Midianites into their hand. Israel would only take the credit away from me, saying, 'My own hand has delivered me.'</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Now therefore proclaim this in the hearing of the troops, 'Whoever is fearful and trembling, let him return home.'\" Thus Gideon sifted them out; twenty-two thousand returned, and ten thousand remained.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then the LORD said to Gideon, \"The troops are still too many; take them down to the water and I will sift them out for you there. When I say, 'This one shall go with you,' he shall go with you; and when I say, 'This one shall not go with you,' he shall not go.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> So he brought the troops down to the water; and the LORD said to Gideon, \"All those who lap the water with their tongues, as a dog laps, you shall put to one side; all those who kneel down to drink, putting their hands to their mouths, you shall put to the other side.\" </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The number of those that lapped was three hundred; but all the rest of the troops knelt down to drink water.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then the LORD said to Gideon, \"With the three hundred that lapped I will deliver you, and give the Midianites into your hand. Let all the others go to their homes.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> So he took the jars of the troops from their hands, and their trumpets; and he sent all the rest of Israel back to their own tents, but retained the three hundred. The camp of Midian was below him in the valley. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> That same night the LORD said to him, \"Get up, attack the camp; for I have given it into your hand.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> But if you fear to attack, go down to the camp with your servant Purah;</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> and you shall hear what they say, and afterward your hands shall be strengthened to attack the camp.\" Then he went down with his servant Purah to the outposts of the armed men that were in the camp.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The Midianites and the Amalekites and all the people of the east lay along the valley as thick as locusts; and their camels were without number, countless as the sand on the seashore.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> When Gideon arrived, there was a man telling a dream to his comrade; and he said, \"I had a dream, and in it a cake of barley bread tumbled into the camp of Midian, and came to the tent, and struck it so that it fell; it turned upside down, and the tent collapsed.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> And his comrade answered, \"This is no other than the sword of Gideon son of Joash, a man of Israel; into his hand God has given Midian and all the army.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> When Gideon heard the telling of the dream and its interpretation, he worshiped; and he returned to the camp of Israel, and said, \"Get up; for the LORD has given the army of Midian into your hand.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> After he divided the three hundred men into three companies, and put trumpets into the hands of all of them, and empty jars, with torches inside the jars,</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> he said to them, \"Look at me, and do the same; when I come to the outskirts of the camp, do as I do.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> When I blow the trumpet, I and all who are with me, then you also blow the trumpets around the whole camp, and shout, 'For the LORD and for Gideon!'\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> So Gideon and the hundred who were with him came to the outskirts of the camp at the beginning of the middle watch, when they had just set the watch; and they blew the trumpets and smashed the jars that were in their hands.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> So the three companies blew the trumpets and broke the jars, holding in their left hands the torches, and in their right hands the trumpets to blow; and they cried, \"A sword for the LORD and for Gideon!\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Every man stood in his place all around the camp, and all the men in camp ran; they cried out and fled.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> When they blew the three hundred trumpets, the LORD set every man's sword against his fellow and against all the army; and the army fled as far as Beth-shittah toward Zererah, as far as the border of Abel-meholah, by Tabbath. </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> And the men of Israel were called out from Naphtali and from Asher and from all Manasseh, and they pursued after the Midianites.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Then Gideon sent messengers throughout all the hill country of Ephraim, saying, \"Come down against the Midianites and seize the waters against them, as far as Beth-barah, and also the Jordan.\" So all the men of Ephraim were called out, and they seized the waters as far as Beth-barah, and also the Jordan.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> They captured the two captains of Midian, Oreb and Zeeb; they killed Oreb at the rock of Oreb, and Zeeb they killed at the wine press of Zeeb, as they pursued the Midianites. They brought the heads of Oreb and Zeeb to Gideon beyond the Jordan.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"8\">\r\n\t\t\t<VERS vnumber=\"1\"> Then the Ephraimites said to him, \"What have you done to us, not to call us when you went to fight against the Midianites?\" And they upbraided him violently.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> So he said to them, \"What have I done now in comparison with you? Is not the gleaning of the grapes of Ephraim better than the vintage of Abiezer?</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> God has given into your hands the captains of Midian, Oreb and Zeeb; what have I been able to do in comparison with you?\" When he said this, their anger against him subsided.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then Gideon came to the Jordan and crossed over, he and the three hundred who were with him, exhausted and famished. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> So he said to the people of Succoth, \"Please give some loaves of bread to my followers, for they are exhausted, and I am pursuing Zebah and Zalmunna, the kings of Midian.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> But the officials of Succoth said, \"Do you already have in your possession the hands of Zebah and Zalmunna, that we should give bread to your army?\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Gideon replied, \"Well then, when the LORD has given Zebah and Zalmunna into my hand, I will trample your flesh on the thorns of the wilderness and on briers.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> From there he went up to Penuel, and made the same request of them; and the people of Penuel answered him as the people of Succoth had answered.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> So he said to the people of Penuel, \"When I come back victorious, I will break down this tower.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Now Zebah and Zalmunna were in Karkor with their army, about fifteen thousand men, all who were left of all the army of the people of the east; for one hundred twenty thousand men bearing arms had fallen.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> So Gideon went up by the caravan route east of Nobah and Jogbehah, and attacked the army; for the army was off its guard.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Zebah and Zalmunna fled; and he pursued them and took the two kings of Midian, Zebah and Zalmunna, and threw all the army into a panic.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> When Gideon son of Joash returned from the battle by the ascent of Heres,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> he caught a young man, one of the people of Succoth, and questioned him; and he listed for him the officials and elders of Succoth, seventy-seven people.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Then he came to the people of Succoth, and said, \"Here are Zebah and Zalmunna, about whom you taunted me, saying, 'Do you already have in your possession the hands of Zebah and Zalmunna, that we should give bread to your troops who are exhausted?'\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> So he took the elders of the city and he took thorns of the wilderness and briers and with them he trampled the people of Succoth. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> He also broke down the tower of Penuel, and killed the men of the city.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then he said to Zebah and Zalmunna, \"What about the men whom you killed at Tabor?\" They answered, \"As you are, so were they, every one of them; they resembled the sons of a king.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> And he replied, \"They were my brothers, the sons of my mother; as the LORD lives, if you had saved them alive, I would not kill you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> So he said to Jether his firstborn, \"Go kill them!\" But the boy did not draw his sword, for he was afraid, because he was still a boy.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then Zebah and Zalmunna said, \"You come and kill us; for as the man is, so is his strength.\" So Gideon proceeded to kill Zebah and Zalmunna; and he took the crescents that were on the necks of their camels.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Then the Israelites said to Gideon, \"Rule over us, you and your son and your grandson also; for you have delivered us out of the hand of Midian.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Gideon said to them, \"I will not rule over you, and my son will not rule over you; the LORD will rule over you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Then Gideon said to them, \"Let me make a request of you; each of you give me an earring he has taken as booty.\" (For the enemy had golden earrings, because they were Ishmaelites.) </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> \"We will willingly give them,\" they answered. So they spread a garment, and each threw into it an earring he had taken as booty.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> The weight of the golden earrings that he requested was one thousand seven hundred shekels of gold (apart from the crescents and the pendants and the purple garments worn by the kings of Midian, and the collars that were on the necks of their camels).</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Gideon made an ephod of it and put it in his town, in Ophrah; and all Israel prostituted themselves to it there, and it became a snare to Gideon and to his family.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> So Midian was subdued before the Israelites, and they lifted up their heads no more. So the land had rest forty years in the days of Gideon.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Jerubbaal son of Joash went to live in his own house.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Now Gideon had seventy sons, his own offspring, for he had many wives.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> His concubine who was in Shechem also bore him a son, and he named him Abimelech.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Then Gideon son of Joash died at a good old age, and was buried in the tomb of his father Joash at Ophrah of the Abiezrites.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> As soon as Gideon died, the Israelites relapsed and prostituted themselves with the Baals, making Baal-berith their god.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> The Israelites did not remember the LORD their God, who had rescued them from the hand of all their enemies on every side;</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> and they did not exhibit loyalty to the house of Jerubbaal (that is, Gideon) in return for all the good that he had done to Israel.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"9\">\r\n\t\t\t<VERS vnumber=\"1\"> Now Abimelech son of Jerubbaal went to Shechem to his mother's kinsfolk and said to them and to the whole clan of his mother's family,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"Say in the hearing of all the lords of Shechem, 'Which is better for you, that all seventy of the sons of Jerubbaal rule over you, or that one rule over you?' Remember also that I am your bone and your flesh.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> So his mother's kinsfolk spoke all these words on his behalf in the hearing of all the lords of Shechem; and their hearts inclined to follow Abimelech, for they said, \"He is our brother.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> They gave him seventy pieces of silver out of the temple of Baal-berith with which Abimelech hired worthless and reckless fellows, who followed him.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> He went to his father's house at Ophrah, and killed his brothers the sons of Jerubbaal, seventy men, on one stone; but Jotham, the youngest son of Jerubbaal, survived, for he hid himself.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then all the lords of Shechem and all Beth-millo came together, and they went and made Abimelech king, by the oak of the pillar at Shechem. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> When it was told to Jotham, he went and stood on the top of Mount Gerizim, and cried aloud and said to them, \"Listen to me, you lords of Shechem, so that God may listen to you.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The trees once went out to anoint a king over themselves. So they said to the olive tree, 'Reign over us.'</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The olive tree answered them, 'Shall I stop producing my rich oil by which gods and mortals are honored, and go to sway over the trees?'</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then the trees said to the fig tree, 'You come and reign over us.'</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But the fig tree answered them, 'Shall I stop producing my sweetness and my delicious fruit, and go to sway over the trees?'</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then the trees said to the vine, 'You come and reign over us.'</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> But the vine said to them, 'Shall I stop producing my wine that cheers gods and mortals, and go to sway over the trees?'</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> So all the trees said to the bramble, 'You come and reign over us.'</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And the bramble said to the trees, 'If in good faith you are anointing me king over you, then come and take refuge in my shade; but if not, let fire come out of the bramble and devour the cedars of Lebanon.'</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> \"Now therefore, if you acted in good faith and honor when you made Abimelech king, and if you have dealt well with Jerubbaal and his house, and have done to him as his actions deserved--</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> for my father fought for you, and risked his life, and rescued you from the hand of Midian;</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> but you have risen up against my father's house this day, and have killed his sons, seventy men on one stone, and have made Abimelech, the son of his slave woman, king over the lords of Shechem, because he is your kinsman--</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> if, I say, you have acted in good faith and honor with Jerubbaal and with his house this day, then rejoice in Abimelech, and let him also rejoice in you;</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> but if not, let fire come out from Abimelech, and devour the lords of Shechem, and Beth-millo; and let fire come out from the lords of Shechem, and from Beth-millo, and devour Abimelech.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then Jotham ran away and fled, going to Beer, where he remained for fear of his brother Abimelech.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Abimelech ruled over Israel three years.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> But God sent an evil spirit between Abimelech and the lords of Shechem; and the lords of Shechem dealt treacherously with Abimelech.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> This happened so that the violence done to the seventy sons of Jerubbaal might be avenged and their blood be laid on their brother Abimelech, who killed them, and on the lords of Shechem, who strengthened his hands to kill his brothers. </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> So, out of hostility to him, the lords of Shechem set ambushes on the mountain tops. They robbed all who passed by them along that way; and it was reported to Abimelech.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> When Gaal son of Ebed moved into Shechem with his kinsfolk, the lords of Shechem put confidence in him.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> They went out into the field and gathered the grapes from their vineyards, trod them, and celebrated. Then they went into the temple of their god, ate and drank, and ridiculed Abimelech.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Gaal son of Ebed said, \"Who is Abimelech, and who are we of Shechem, that we should serve him? Did not the son of Jerubbaal and Zebul his officer serve the men of Hamor father of Shechem? Why then should we serve him?</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> If only this people were under my command! Then I would remove Abimelech; I would say to him, 'Increase your army, and come out.'\" </VERS>\r\n\t\t\t<VERS vnumber=\"30\"> When Zebul the ruler of the city heard the words of Gaal son of Ebed, his anger was kindled.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> He sent messengers to Abimelech at Arumah, saying, \"Look, Gaal son of Ebed and his kinsfolk have come to Shechem, and they are stirring up the city against you. </VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Now therefore, go by night, you and the troops that are with you, and lie in wait in the fields.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Then early in the morning, as soon as the sun rises, get up and rush on the city; and when he and the troops that are with him come out against you, you may deal with them as best you can.\"</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> So Abimelech and all the troops with him got up by night and lay in wait against Shechem in four companies.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> When Gaal son of Ebed went out and stood in the entrance of the gate of the city, Abimelech and the troops with him rose from the ambush.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> And when Gaal saw them, he said to Zebul, \"Look, people are coming down from the mountain tops!\" And Zebul said to him, \"The shadows on the mountains look like people to you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Gaal spoke again and said, \"Look, people are coming down from Tabbur-erez, and one company is coming from the direction of Elon-meonenim.\" </VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Then Zebul said to him, \"Where is your boast now, you who said, 'Who is Abimelech, that we should serve him?' Are not these the troops you made light of? Go out now and fight with them.\" </VERS>\r\n\t\t\t<VERS vnumber=\"39\"> So Gaal went out at the head of the lords of Shechem, and fought with Abimelech.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> Abimelech chased him, and he fled before him. Many fell wounded, up to the entrance of the gate.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> So Abimelech resided at Arumah; and Zebul drove out Gaal and his kinsfolk, so that they could not live on at Shechem.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> On the following day the people went out into the fields. When Abimelech was told,</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> he took his troops and divided them into three companies, and lay in wait in the fields. When he looked and saw the people coming out of the city, he rose against them and killed them.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> Abimelech and the company that was with him rushed forward and stood at the entrance of the gate of the city, while the two companies rushed on all who were in the fields and killed them.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> Abimelech fought against the city all that day; he took the city, and killed the people that were in it; and he razed the city and sowed it with salt.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> When all the lords of the Tower of Shechem heard of it, they entered the stronghold of the temple of El-berith.</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> Abimelech was told that all the lords of the Tower of Shechem were gathered together.</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> So Abimelech went up to Mount Zalmon, he and all the troops that were with him. Abimelech took an ax in his hand, cut down a bundle of brushwood, and took it up and laid it on his shoulder. Then he said to the troops with him, \"What you have seen me do, do quickly, as I have done.\"</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> So every one of the troops cut down a bundle and following Abimelech put it against the stronghold, and they set the stronghold on fire over them, so that all the people of the Tower of Shechem also died, about a thousand men and women.</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> Then Abimelech went to Thebez, and encamped against Thebez, and took it.</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> But there was a strong tower within the city, and all the men and women and all the lords of the city fled to it and shut themselves in; and they went to the roof of the tower.</VERS>\r\n\t\t\t<VERS vnumber=\"52\"> Abimelech came to the tower, and fought against it, and came near to the entrance of the tower to burn it with fire.</VERS>\r\n\t\t\t<VERS vnumber=\"53\"> But a certain woman threw an upper millstone on Abimelech's head, and crushed his skull.</VERS>\r\n\t\t\t<VERS vnumber=\"54\"> Immediately he called to the young man who carried his armor and said to him, \"Draw your sword and kill me, so people will not say about me, 'A woman killed him.'\" So the young man thrust him through, and he died.</VERS>\r\n\t\t\t<VERS vnumber=\"55\"> When the Israelites saw that Abimelech was dead, they all went home.</VERS>\r\n\t\t\t<VERS vnumber=\"56\"> Thus God repaid Abimelech for the crime he committed against his father in killing his seventy brothers;</VERS>\r\n\t\t\t<VERS vnumber=\"57\"> and God also made all the wickedness of the people of Shechem fall back on their heads, and on them came the curse of Jotham son of Jerubbaal.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"10\">\r\n\t\t\t<VERS vnumber=\"1\"> After Abimelech, Tola son of Puah son of Dodo, a man of Issachar, who lived at Shamir in the hill country of Ephraim, rose to deliver Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He judged Israel twenty-three years. Then he died, and was buried at Shamir.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> After him came Jair the Gileadite, who judged Israel twenty-two years.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> He had thirty sons who rode on thirty donkeys; and they had thirty towns, which are in the land of Gilead, and are called Havvoth-jair to this day.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Jair died, and was buried in Kamon.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The Israelites again did what was evil in the sight of the LORD, worshiping the Baals and the Astartes, the gods of Aram, the gods of Sidon, the gods of Moab, the gods of the Ammonites, and the gods of the Philistines. Thus they abandoned the LORD, and did not worship him.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> So the anger of the LORD was kindled against Israel, and he sold them into the hand of the Philistines and into the hand of the Ammonites,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> and they crushed and oppressed the Israelites that year. For eighteen years they oppressed all the Israelites that were beyond the Jordan in the land of the Amorites, which is in Gilead.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The Ammonites also crossed the Jordan to fight against Judah and against Benjamin and against the house of Ephraim; so that Israel was greatly distressed.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> So the Israelites cried to the LORD, saying, \"We have sinned against you, because we have abandoned our God and have worshiped the Baals.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> And the LORD said to the Israelites, \"Did I not deliver you from the Egyptians and from the Amorites, from the Ammonites and from the Philistines? </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The Sidonians also, and the Amalekites, and the Maonites, oppressed you; and you cried to me, and I delivered you out of their hand.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Yet you have abandoned me and worshiped other gods; therefore I will deliver you no more.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Go and cry to the gods whom you have chosen; let them deliver you in the time of your distress.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And the Israelites said to the LORD, \"We have sinned; do to us whatever seems good to you; but deliver us this day!\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> So they put away the foreign gods from among them and worshiped the LORD; and he could no longer bear to see Israel suffer.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then the Ammonites were called to arms, and they encamped in Gilead; and the Israelites came together, and they encamped at Mizpah.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The commanders of the people of Gilead said to one another, \"Who will begin the fight against the Ammonites? He shall be head over all the inhabitants of Gilead.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"11\">\r\n\t\t\t<VERS vnumber=\"1\"> Now Jephthah the Gileadite, the son of a prostitute, was a mighty warrior. Gilead was the father of Jephthah.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Gilead's wife also bore him sons; and when his wife's sons grew up, they drove Jephthah away, saying to him, \"You shall not inherit anything in our father's house; for you are the son of another woman.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then Jephthah fled from his brothers and lived in the land of Tob. Outlaws collected around Jephthah and went raiding with him.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> After a time the Ammonites made war against Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> And when the Ammonites made war against Israel, the elders of Gilead went to bring Jephthah from the land of Tob.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> They said to Jephthah, \"Come and be our commander, so that we may fight with the Ammonites.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But Jephthah said to the elders of Gilead, \"Are you not the very ones who rejected me and drove me out of my father's house? So why do you come to me now when you are in trouble?\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The elders of Gilead said to Jephthah, \"Nevertheless, we have now turned back to you, so that you may go with us and fight with the Ammonites, and become head over us, over all the inhabitants of Gilead.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Jephthah said to the elders of Gilead, \"If you bring me home again to fight with the Ammonites, and the LORD gives them over to me, I will be your head.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And the elders of Gilead said to Jephthah, \"The LORD will be witness between us; we will surely do as you say.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> So Jephthah went with the elders of Gilead, and the people made him head and commander over them; and Jephthah spoke all his words before the LORD at Mizpah.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then Jephthah sent messengers to the king of the Ammonites and said, \"What is there between you and me, that you have come to me to fight against my land?\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The king of the Ammonites answered the messengers of Jephthah, \"Because Israel, on coming from Egypt, took away my land from the Arnon to the Jabbok and to the Jordan; now therefore restore it peaceably.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Once again Jephthah sent messengers to the king of the Ammonites</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> and said to him: \"Thus says Jephthah: Israel did not take away the land of Moab or the land of the Ammonites,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> but when they came up from Egypt, Israel went through the wilderness to the Red Sea and came to Kadesh. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Israel then sent messengers to the king of Edom, saying, 'Let us pass through your land'; but the king of Edom would not listen. They also sent to the king of Moab, but he would not consent. So Israel remained at Kadesh.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then they journeyed through the wilderness, went around the land of Edom and the land of Moab, arrived on the east side of the land of Moab, and camped on the other side of the Arnon. They did not enter the territory of Moab, for the Arnon was the boundary of Moab.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Israel then sent messengers to King Sihon of the Amorites, king of Heshbon; and Israel said to him, 'Let us pass through your land to our country.'</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> But Sihon did not trust Israel to pass through his territory; so Sihon gathered all his people together, and encamped at Jahaz, and fought with Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then the LORD, the God of Israel, gave Sihon and all his people into the hand of Israel, and they defeated them; so Israel occupied all the land of the Amorites, who inhabited that country.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> They occupied all the territory of the Amorites from the Arnon to the Jabbok and from the wilderness to the Jordan.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> So now the LORD, the God of Israel, has conquered the Amorites for the benefit of his people Israel. Do you intend to take their place?</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Should you not possess what your god Chemosh gives you to possess? And should we not be the ones to possess everything that the LORD our God has conquered for our benefit?</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Now are you any better than King Balak son of Zippor of Moab? Did he ever enter into conflict with Israel, or did he ever go to war with them?</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> While Israel lived in Heshbon and its villages, and in Aroer and its villages, and in all the towns that are along the Arnon, three hundred years, why did you not recover them within that time?</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> It is not I who have sinned against you, but you are the one who does me wrong by making war on me. Let the LORD, who is judge, decide today for the Israelites or for the Ammonites.\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> But the king of the Ammonites did not heed the message that Jephthah sent him.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Then the spirit of the LORD came upon Jephthah, and he passed through Gilead and Manasseh. He passed on to Mizpah of Gilead, and from Mizpah of Gilead he passed on to the Ammonites.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> And Jephthah made a vow to the LORD, and said, \"If you will give the Ammonites into my hand,</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> then whoever comes out of the doors of my house to meet me, when I return victorious from the Ammonites, shall be the LORD's, to be offered up by me as a burnt offering.\"</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> So Jephthah crossed over to the Ammonites to fight against them; and the LORD gave them into his hand.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> He inflicted a massive defeat on them from Aroer to the neighborhood of Minnith, twenty towns, and as far as Abel-keramim. So the Ammonites were subdued before the people of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Then Jephthah came to his home at Mizpah; and there was his daughter coming out to meet him with timbrels and with dancing. She was his only child; he had no son or daughter except her.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> When he saw her, he tore his clothes, and said, \"Alas, my daughter! You have brought me very low; you have become the cause of great trouble to me. For I have opened my mouth to the LORD, and I cannot take back my vow.\"</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> She said to him, \"My father, if you have opened your mouth to the LORD, do to me according to what has gone out of your mouth, now that the LORD has given you vengeance against your enemies, the Ammonites.\"</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> And she said to her father, \"Let this thing be done for me: Grant me two months, so that I may go and wander on the mountains, and bewail my virginity, my companions and I.\" </VERS>\r\n\t\t\t<VERS vnumber=\"38\"> \"Go,\" he said and sent her away for two months. So she departed, she and her companions, and bewailed her virginity on the mountains.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> At the end of two months, she returned to her father, who did with her according to the vow he had made. She had never slept with a man. So there arose an Israelite custom that</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> for four days every year the daughters of Israel would go out to lament the daughter of Jephthah the Gileadite.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"12\">\r\n\t\t\t<VERS vnumber=\"1\"> The men of Ephraim were called to arms, and they crossed to Zaphon and said to Jephthah, \"Why did you cross over to fight against the Ammonites, and did not call us to go with you? We will burn your house down over you!\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Jephthah said to them, \"My people and I were engaged in conflict with the Ammonites who oppressed us severely. But when I called you, you did not deliver me from their hand. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> When I saw that you would not deliver me, I took my life in my hand, and crossed over against the Ammonites, and the LORD gave them into my hand. Why then have you come up to me this day, to fight against me?\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then Jephthah gathered all the men of Gilead and fought with Ephraim; and the men of Gilead defeated Ephraim, because they said, \"You are fugitives from Ephraim, you Gileadites-- in the heart of Ephraim and Manasseh.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then the Gileadites took the fords of the Jordan against the Ephraimites. Whenever one of the fugitives of Ephraim said, \"Let me go over,\" the men of Gilead would say to him, \"Are you an Ephraimite?\" When he said, \"No,\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> they said to him, \"Then say Shibboleth,\" and he said, \"Sibboleth,\" for he could not pronounce it right. Then they seized him and killed him at the fords of the Jordan. Forty-two thousand of the Ephraimites fell at that time.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Jephthah judged Israel six years. Then Jephthah the Gileadite died, and was buried in his town in Gilead. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> After him Ibzan of Bethlehem judged Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> He had thirty sons. He gave his thirty daughters in marriage outside his clan and brought in thirty young women from outside for his sons. He judged Israel seven years.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then Ibzan died, and was buried at Bethlehem.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> After him Elon the Zebulunite judged Israel; and he judged Israel ten years.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then Elon the Zebulunite died, and was buried at Aijalon in the land of Zebulun.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> After him Abdon son of Hillel the Pirathonite judged Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> He had forty sons and thirty grandsons, who rode on seventy donkeys; he judged Israel eight years.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Then Abdon son of Hillel the Pirathonite died, and was buried at Pirathon in the land of Ephraim, in the hill country of the Amalekites.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"13\">\r\n\t\t\t<VERS vnumber=\"1\"> The Israelites again did what was evil in the sight of the LORD, and the LORD gave them into the hand of the Philistines forty years.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> There was a certain man of Zorah, of the tribe of the Danites, whose name was Manoah. His wife was barren, having borne no children.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And the angel of the LORD appeared to the woman and said to her, \"Although you are barren, having borne no children, you shall conceive and bear a son.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Now be careful not to drink wine or strong drink, or to eat anything unclean,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> for you shall conceive and bear a son. No razor is to come on his head, for the boy shall be a nazirite to God from birth. It is he who shall begin to deliver Israel from the hand of the Philistines.\" </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then the woman came and told her husband, \"A man of God came to me, and his appearance was like that of an angel of God, most awe-inspiring; I did not ask him where he came from, and he did not tell me his name; </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> but he said to me, 'You shall conceive and bear a son. So then drink no wine or strong drink, and eat nothing unclean, for the boy shall be a nazirite to God from birth to the day of his death.'\" </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then Manoah entreated the LORD, and said, \"O, LORD, I pray, let the man of God whom you sent come to us again and teach us what we are to do concerning the boy who will be born.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> God listened to Manoah, and the angel of God came again to the woman as she sat in the field; but her husband Manoah was not with her.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> So the woman ran quickly and told her husband, \"The man who came to me the other day has appeared to me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Manoah got up and followed his wife, and came to the man and said to him, \"Are you the man who spoke to this woman?\" And he said, \"I am.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then Manoah said, \"Now when your words come true, what is to be the boy's rule of life; what is he to do?\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The angel of the LORD said to Manoah, \"Let the woman give heed to all that I said to her.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> She may not eat of anything that comes from the vine. She is not to drink wine or strong drink, or eat any unclean thing. She is to observe everything that I commanded her.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Manoah said to the angel of the LORD, \"Allow us to detain you, and prepare a kid for you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The angel of the LORD said to Manoah, \"If you detain me, I will not eat your food; but if you want to prepare a burnt offering, then offer it to the LORD.\" (For Manoah did not know that he was the angel of the LORD.)</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then Manoah said to the angel of the LORD, \"What is your name, so that we may honor you when your words come true?\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> But the angel of the LORD said to him, \"Why do you ask my name? It is too wonderful.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> So Manoah took the kid with the grain offering, and offered it on the rock to the LORD, to him who works wonders.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> When the flame went up toward heaven from the altar, the angel of the LORD ascended in the flame of the altar while Manoah and his wife looked on; and they fell on their faces to the ground.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> The angel of the LORD did not appear again to Manoah and his wife. Then Manoah realized that it was the angel of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> And Manoah said to his wife, \"We shall surely die, for we have seen God.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> But his wife said to him, \"If the LORD had meant to kill us, he would not have accepted a burnt offering and a grain offering at our hands, or shown us all these things, or now announced to us such things as these.\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> The woman bore a son, and named him Samson. The boy grew, and the LORD blessed him.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> The spirit of the LORD began to stir him in Mahaneh-dan, between Zorah and Eshtaol.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"14\">\r\n\t\t\t<VERS vnumber=\"1\"> Once Samson went down to Timnah, and at Timnah he saw a Philistine woman.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Then he came up, and told his father and mother, \"I saw a Philistine woman at Timnah; now get her for me as my wife.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> But his father and mother said to him, \"Is there not a woman among your kin, or among all our people, that you must go to take a wife from the uncircumcised Philistines?\" But Samson said to his father, \"Get her for me, because she pleases me.\" </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> His father and mother did not know that this was from the LORD; for he was seeking a pretext to act against the Philistines. At that time the Philistines had dominion over Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then Samson went down with his father and mother to Timnah. When he came to the vineyards of Timnah, suddenly a young lion roared at him.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The spirit of the LORD rushed on him, and he tore the lion apart barehanded as one might tear apart a kid. But he did not tell his father or his mother what he had done.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then he went down and talked with the woman, and she pleased Samson.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> After a while he returned to marry her, and he turned aside to see the carcass of the lion, and there was a swarm of bees in the body of the lion, and honey.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> He scraped it out into his hands, and went on, eating as he went. When he came to his father and mother, he gave some to them, and they ate it. But he did not tell them that he had taken the honey from the carcass of the lion.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> His father went down to the woman, and Samson made a feast there as the young men were accustomed to do.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> When the people saw him, they brought thirty companions to be with him.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Samson said to them, \"Let me now put a riddle to you. If you can explain it to me within the seven days of the feast, and find it out, then I will give you thirty linen garments and thirty festal garments.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> But if you cannot explain it to me, then you shall give me thirty linen garments and thirty festal garments.\" So they said to him, \"Ask your riddle; let us hear it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> He said to them, \"Out of the eater came something to eat. Out of the strong came something sweet.\" But for three days they could not explain the riddle.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> On the fourth day they said to Samson's wife, \"Coax your husband to explain the riddle to us, or we will burn you and your father's house with fire. Have you invited us here to impoverish us?\" </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> So Samson's wife wept before him, saying, \"You hate me; you do not really love me. You have asked a riddle of my people, but you have not explained it to me.\" He said to her, \"Look, I have not told my father or my mother. Why should I tell you?\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> She wept before him the seven days that their feast lasted; and because she nagged him, on the seventh day he told her. Then she explained the riddle to her people.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The men of the town said to him on the seventh day before the sun went down, \"What is sweeter than honey? What is stronger than a lion?\" And he said to them, \"If you had not plowed with my heifer, you would not have found out my riddle.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Then the spirit of the LORD rushed on him, and he went down to Ashkelon. He killed thirty men of the town, took their spoil, and gave the festal garments to those who had explained the riddle. In hot anger he went back to his father's house.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> And Samson's wife was given to his companion, who had been his best man.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"15\">\r\n\t\t\t<VERS vnumber=\"1\"> After a while, at the time of the wheat harvest, Samson went to visit his wife, bringing along a kid. He said, \"I want to go into my wife's room.\" But her father would not allow him to go in.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Her father said, \"I was sure that you had rejected her; so I gave her to your companion. Is not her younger sister prettier than she? Why not take her instead?\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Samson said to them, \"This time, when I do mischief to the Philistines, I will be without blame.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> So Samson went and caught three hundred foxes, and took some torches; and he turned the foxes tail to tail, and put a torch between each pair of tails. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> When he had set fire to the torches, he let the foxes go into the standing grain of the Philistines, and burned up the shocks and the standing grain, as well as the vineyards and olive groves. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then the Philistines asked, \"Who has done this?\" And they said, \"Samson, the son-in-law of the Timnite, because he has taken Samson's wife and given her to his companion.\" So the Philistines came up, and burned her and her father.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Samson said to them, \"If this is what you do, I swear I will not stop until I have taken revenge on you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> He struck them down hip and thigh with great slaughter; and he went down and stayed in the cleft of the rock of Etam.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then the Philistines came up and encamped in Judah, and made a raid on Lehi.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The men of Judah said, \"Why have you come up against us?\" They said, \"We have come up to bind Samson, to do to him as he did to us.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then three thousand men of Judah went down to the cleft of the rock of Etam, and they said to Samson, \"Do you not know that the Philistines are rulers over us? What then have you done to us?\" He replied, \"As they did to me, so I have done to them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> They said to him, \"We have come down to bind you, so that we may give you into the hands of the Philistines.\" Samson answered them, \"Swear to me that you yourselves will not attack me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> They said to him, \"No, we will only bind you and give you into their hands; we will not kill you.\" So they bound him with two new ropes, and brought him up from the rock.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> When he came to Lehi, the Philistines came shouting to meet him; and the spirit of the LORD rushed on him, and the ropes that were on his arms became like flax that has caught fire, and his bonds melted off his hands.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Then he found a fresh jawbone of a donkey, reached down and took it, and with it he killed a thousand men.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> And Samson said, \"With the jawbone of a donkey, heaps upon heaps, with the jawbone of a donkey I have slain a thousand men.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> When he had finished speaking, he threw away the jawbone; and that place was called Ramath-lehi. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> By then he was very thirsty, and he called on the LORD, saying, \"You have granted this great victory by the hand of your servant. Am I now to die of thirst, and fall into the hands of the uncircumcised?\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> So God split open the hollow place that is at Lehi, and water came from it. When he drank, his spirit returned, and he revived. Therefore it was named En-hakkore, which is at Lehi to this day. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> And he judged Israel in the days of the Philistines twenty years.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"16\">\r\n\t\t\t<VERS vnumber=\"1\"> Once Samson went to Gaza, where he saw a prostitute and went in to her.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The Gazites were told, \"Samson has come here.\" So they circled around and lay in wait for him all night at the city gate. They kept quiet all night, thinking, \"Let us wait until the light of the morning; then we will kill him.\" </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> But Samson lay only until midnight. Then at midnight he rose up, took hold of the doors of the city gate and the two posts, pulled them up, bar and all, put them on his shoulders, and carried them to the top of the hill that is in front of Hebron.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> After this he fell in love with a woman in the valley of Sorek, whose name was Delilah.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The lords of the Philistines came to her and said to her, \"Coax him, and find out what makes his strength so great, and how we may overpower him, so that we may bind him in order to subdue him; and we will each give you eleven hundred pieces of silver.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> So Delilah said to Samson, \"Please tell me what makes your strength so great, and how you could be bound, so that one could subdue you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Samson said to her, \"If they bind me with seven fresh bowstrings that are not dried out, then I shall become weak, and be like anyone else.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then the lords of the Philistines brought her seven fresh bowstrings that had not dried out, and she bound him with them.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> While men were lying in wait in an inner chamber, she said to him, \"The Philistines are upon you, Samson!\" But he snapped the bowstrings, as a strand of fiber snaps when it touches the fire. So the secret of his strength was not known.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then Delilah said to Samson, \"You have mocked me and told me lies; please tell me how you could be bound.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> He said to her, \"If they bind me with new ropes that have not been used, then I shall become weak, and be like anyone else.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> So Delilah took new ropes and bound him with them, and said to him, \"The Philistines are upon you, Samson!\" (The men lying in wait were in an inner chamber.) But he snapped the ropes off his arms like a thread.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then Delilah said to Samson, \"Until now you have mocked me and told me lies; tell me how you could be bound.\" He said to her, \"If you weave the seven locks of my head with the web and make it tight with the pin, then I shall become weak, and be like anyone else.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> So while he slept, Delilah took the seven locks of his head and wove them into the web, and made them tight with the pin. Then she said to him, \"The Philistines are upon you, Samson!\" But he awoke from his sleep, and pulled away the pin, the loom, and the web. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Then she said to him, \"How can you say, 'I love you,' when your heart is not with me? You have mocked me three times now and have not told me what makes your strength so great.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Finally, after she had nagged him with her words day after day, and pestered him, he was tired to death.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> So he told her his whole secret, and said to her, \"A razor has never come upon my head; for I have been a nazirite to God from my mother's womb. If my head were shaved, then my strength would leave me; I would become weak, and be like anyone else.\" </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> When Delilah realized that he had told her his whole secret, she sent and called the lords of the Philistines, saying, \"This time come up, for he has told his whole secret to me.\" Then the lords of the Philistines came up to her, and brought the money in their hands.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> She let him fall asleep on her lap; and she called a man, and had him shave off the seven locks of his head. He began to weaken, and his strength left him. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Then she said, \"The Philistines are upon you, Samson!\" When he awoke from his sleep, he thought, \"I will go out as at other times, and shake myself free.\" But he did not know that the LORD had left him.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> So the Philistines seized him and gouged out his eyes. They brought him down to Gaza and bound him with bronze shackles; and he ground at the mill in the prison.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> But the hair of his head began to grow again after it had been shaved.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Now the lords of the Philistines gathered to offer a great sacrifice to their god Dagon, and to rejoice; for they said, \"Our god has given Samson our enemy into our hand.\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> When the people saw him, they praised their god; for they said, \"Our god has given our enemy into our hand, the ravager of our country, who has killed many of us.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> And when their hearts were merry, they said, \"Call Samson, and let him entertain us.\" So they called Samson out of the prison, and he performed for them. They made him stand between the pillars;</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> and Samson said to the attendant who held him by the hand, \"Let me feel the pillars on which the house rests, so that I may lean against them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Now the house was full of men and women; all the lords of the Philistines were there, and on the roof there were about three thousand men and women, who looked on while Samson performed.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Then Samson called to the LORD and said, \"Lord GOD, remember me and strengthen me only this once, O God, so that with this one act of revenge I may pay back the Philistines for my two eyes.\" </VERS>\r\n\t\t\t<VERS vnumber=\"29\"> And Samson grasped the two middle pillars on which the house rested, and he leaned his weight against them, his right hand on the one and his left hand on the other.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Then Samson said, \"Let me die with the Philistines.\" He strained with all his might; and the house fell on the lords and all the people who were in it. So those he killed at his death were more than those he had killed during his life.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Then his brothers and all his family came down and took him and brought him up and buried him between Zorah and Eshtaol in the tomb of his father Manoah. He had judged Israel twenty years.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"17\">\r\n\t\t\t<VERS vnumber=\"1\"> There was a man in the hill country of Ephraim whose name was Micah.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He said to his mother, \"The eleven hundred pieces of silver that were taken from you, about which you uttered a curse, and even spoke it in my hearing,-- that silver is in my possession; I took it; but now I will return it to you.\" And his mother said, \"May my son be blessed by the LORD!\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then he returned the eleven hundred pieces of silver to his mother; and his mother said, \"I consecrate the silver to the LORD from my hand for my son, to make an idol of cast metal.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> So when he returned the money to his mother, his mother took two hundred pieces of silver, and gave it to the silversmith, who made it into an idol of cast metal; and it was in the house of Micah.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> This man Micah had a shrine, and he made an ephod and teraphim, and installed one of his sons, who became his priest.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> In those days there was no king in Israel; all the people did what was right in their own eyes.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Now there was a young man of Bethlehem in Judah, of the clan of Judah. He was a Levite residing there.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> This man left the town of Bethlehem in Judah, to live wherever he could find a place. He came to the house of Micah in the hill country of Ephraim to carry on his work. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Micah said to him, \"From where do you come?\" He replied, \"I am a Levite of Bethlehem in Judah, and I am going to live wherever I can find a place.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then Micah said to him, \"Stay with me, and be to me a father and a priest, and I will give you ten pieces of silver a year, a set of clothes, and your living.\" </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The Levite agreed to stay with the man; and the young man became to him like one of his sons.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> So Micah installed the Levite, and the young man became his priest, and was in the house of Micah.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then Micah said, \"Now I know that the LORD will prosper me, because the Levite has become my priest.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"18\">\r\n\t\t\t<VERS vnumber=\"1\"> In those days there was no king in Israel. And in those days the tribe of the Danites was seeking for itself a territory to live in; for until then no territory among the tribes of Israel had been allotted to them.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> So the Danites sent five valiant men from the whole number of their clan, from Zorah and from Eshtaol, to spy out the land and to explore it; and they said to them, \"Go, explore the land.\" When they came to the hill country of Ephraim, to the house of Micah, they stayed there.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> While they were at Micah's house, they recognized the voice of the young Levite; so they went over and asked him, \"Who brought you here? What are you doing in this place? What is your business here?\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> He said to them, \"Micah did such and such for me, and he hired me, and I have become his priest.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then they said to him, \"Inquire of God that we may know whether the mission we are undertaking will succeed.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The priest replied, \"Go in peace. The mission you are on is under the eye of the LORD.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The five men went on, and when they came to Laish, they observed the people who were there living securely, after the manner of the Sidonians, quiet and unsuspecting, lacking nothing on earth, and possessing wealth. Furthermore, they were far from the Sidonians and had no dealings with Aram. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> When they came to their kinsfolk at Zorah and Eshtaol, they said to them, \"What do you report?\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> They said, \"Come, let us go up against them; for we have seen the land, and it is very good. Will you do nothing? Do not be slow to go, but enter in and possess the land.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> When you go, you will come to an unsuspecting people. The land is broad-- God has indeed given it into your hands-- a place where there is no lack of anything on earth.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Six hundred men of the Danite clan, armed with weapons of war, set out from Zorah and Eshtaol,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> and went up and encamped at Kiriath-jearim in Judah. On this account that place is called Mahaneh-dan to this day; it is west of Kiriath-jearim. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> From there they passed on to the hill country of Ephraim, and came to the house of Micah.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then the five men who had gone to spy out the land (that is, Laish) said to their comrades, \"Do you know that in these buildings there are an ephod, teraphim, and an idol of cast metal? Now therefore consider what you will do.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> So they turned in that direction and came to the house of the young Levite, at the home of Micah, and greeted him.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> While the six hundred men of the Danites, armed with their weapons of war, stood by the entrance of the gate,</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> the five men who had gone to spy out the land proceeded to enter and take the idol of cast metal, the ephod, and the teraphim. The priest was standing by the entrance of the gate with the six hundred men armed with weapons of war. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> When the men went into Micah's house and took the idol of cast metal, the ephod, and the teraphim, the priest said to them, \"What are you doing?\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> They said to him, \"Keep quiet! Put your hand over your mouth, and come with us, and be to us a father and a priest. Is it better for you to be priest to the house of one person, or to be priest to a tribe and clan in Israel?\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Then the priest accepted the offer. He took the ephod, the teraphim, and the idol, and went along with the people.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> So they resumed their journey, putting the little ones, the livestock, and the goods in front of them.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> When they were some distance from the home of Micah, the men who were in the houses near Micah's house were called out, and they overtook the Danites.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> They shouted to the Danites, who turned around and said to Micah, \"What is the matter that you come with such a company?\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> He replied, \"You take my gods that I made, and the priest, and go away, and what have I left? How then can you ask me, 'What is the matter?'\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> And the Danites said to him, \"You had better not let your voice be heard among us or else hot-tempered fellows will attack you, and you will lose your life and the lives of your household.\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Then the Danites went their way. When Micah saw that they were too strong for him, he turned and went back to his home.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> The Danites, having taken what Micah had made, and the priest who belonged to him, came to Laish, to a people quiet and unsuspecting, put them to the sword, and burned down the city.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> There was no deliverer, because it was far from Sidon and they had no dealings with Aram. It was in the valley that belongs to Beth-rehob. They rebuilt the city, and lived in it. </VERS>\r\n\t\t\t<VERS vnumber=\"29\"> They named the city Dan, after their ancestor Dan, who was born to Israel; but the name of the city was formerly Laish.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Then the Danites set up the idol for themselves. Jonathan son of Gershom, son of Moses, and his sons were priests to the tribe of the Danites until the time the land went into captivity. </VERS>\r\n\t\t\t<VERS vnumber=\"31\"> So they maintained as their own Micah's idol that he had made, as long as the house of God was at Shiloh.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"19\">\r\n\t\t\t<VERS vnumber=\"1\"> In those days, when there was no king in Israel, a certain Levite, residing in the remote parts of the hill country of Ephraim, took to himself a concubine from Bethlehem in Judah.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> But his concubine became angry with him, and she went away from him to her father's house at Bethlehem in Judah, and was there some four months. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then her husband set out after her, to speak tenderly to her and bring her back. He had with him his servant and a couple of donkeys. When he reached her father's house, the girl's father saw him and came with joy to meet him. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> His father-in-law, the girl's father, made him stay, and he remained with him three days; so they ate and drank, and he stayed there. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> On the fourth day they got up early in the morning, and he prepared to go; but the girl's father said to his son-in-law, \"Fortify yourself with a bit of food, and after that you may go.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> So the two men sat and ate and drank together; and the girl's father said to the man, \"Why not spend the night and enjoy yourself?\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> When the man got up to go, his father-in-law kept urging him until he spent the night there again.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> On the fifth day he got up early in the morning to leave; and the girl's father said, \"Fortify yourself.\" So they lingered until the day declined, and the two of them ate and drank. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> When the man with his concubine and his servant got up to leave, his father-in-law, the girl's father, said to him, \"Look, the day has worn on until it is almost evening. Spend the night. See, the day has drawn to a close. Spend the night here and enjoy yourself. Tomorrow you can get up early in the morning for your journey, and go home.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> But the man would not spend the night; he got up and departed, and arrived opposite Jebus (that is, Jerusalem). He had with him a couple of saddled donkeys, and his concubine was with him.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> When they were near Jebus, the day was far spent, and the servant said to his master, \"Come now, let us turn aside to this city of the Jebusites, and spend the night in it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> But his master said to him, \"We will not turn aside into a city of foreigners, who do not belong to the people of Israel; but we will continue on to Gibeah.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then he said to his servant, \"Come, let us try to reach one of these places, and spend the night at Gibeah or at Ramah.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> So they passed on and went their way; and the sun went down on them near Gibeah, which belongs to Benjamin.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> They turned aside there, to go in and spend the night at Gibeah. He went in and sat down in the open square of the city, but no one took them in to spend the night.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then at evening there was an old man coming from his work in the field. The man was from the hill country of Ephraim, and he was residing in Gibeah. (The people of the place were Benjaminites.)</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> When the old man looked up and saw the wayfarer in the open square of the city, he said, \"Where are you going and where do you come from?\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> He answered him, \"We are passing from Bethlehem in Judah to the remote parts of the hill country of Ephraim, from which I come. I went to Bethlehem in Judah; and I am going to my home. Nobody has offered to take me in. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> We your servants have straw and fodder for our donkeys, with bread and wine for me and the woman and the young man along with us. We need nothing more.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The old man said, \"Peace be to you. I will care for all your wants; only do not spend the night in the square.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> So he brought him into his house, and fed the donkeys; they washed their feet, and ate and drank.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> While they were enjoying themselves, the men of the city, a perverse lot, surrounded the house, and started pounding on the door. They said to the old man, the master of the house, \"Bring out the man who came into your house, so that we may have intercourse with him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> And the man, the master of the house, went out to them and said to them, \"No, my brothers, do not act so wickedly. Since this man is my guest, do not do this vile thing.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Here are my virgin daughter and his concubine; let me bring them out now. Ravish them and do whatever you want to them; but against this man do not do such a vile thing.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> But the men would not listen to him. So the man seized his concubine, and put her out to them. They wantonly raped her, and abused her all through the night until the morning. And as the dawn began to break, they let her go.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> As morning appeared, the woman came and fell down at the door of the man's house where her master was, until it was light.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> In the morning her master got up, opened the doors of the house, and when he went out to go on his way, there was his concubine lying at the door of the house, with her hands on the threshold.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> \"Get up,\" he said to her, \"we are going.\" But there was no answer. Then he put her on the donkey; and the man set out for his home.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> When he had entered his house, he took a knife, and grasping his concubine he cut her into twelve pieces, limb by limb, and sent her throughout all the territory of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Then he commanded the men whom he sent, saying, \"Thus shall you say to all the Israelites, 'Has such a thing ever happened since the day that the Israelites came up from the land of Egypt until this day? Consider it, take counsel, and speak out.'\" </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"20\">\r\n\t\t\t<VERS vnumber=\"1\"> Then all the Israelites came out, from Dan to Beer-sheba, including the land of Gilead, and the congregation assembled in one body before the LORD at Mizpah.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The chiefs of all the people, of all the tribes of Israel, presented themselves in the assembly of the people of God, four hundred thousand foot-soldiers bearing arms.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> (Now the Benjaminites heard that the people of Israel had gone up to Mizpah.) And the Israelites said, \"Tell us, how did this criminal act come about?\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The Levite, the husband of the woman who was murdered, answered, \"I came to Gibeah that belongs to Benjamin, I and my concubine, to spend the night.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The lords of Gibeah rose up against me, and surrounded the house at night. They intended to kill me, and they raped my concubine until she died.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then I took my concubine and cut her into pieces, and sent her throughout the whole extent of Israel's territory; for they have committed a vile outrage in Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> So now, you Israelites, all of you, give your advice and counsel here.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> All the people got up as one, saying, \"We will not any of us go to our tents, nor will any of us return to our houses.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> But now this is what we will do to Gibeah: we will go up against it by lot. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> We will take ten men of a hundred throughout all the tribes of Israel, and a hundred of a thousand, and a thousand of ten thousand, to bring provisions for the troops, who are going to repay Gibeah of Benjamin for all the disgrace that they have done in Israel.\" </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> So all the men of Israel gathered against the city, united as one.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The tribes of Israel sent men through all the tribe of Benjamin, saying, \"What crime is this that has been committed among you?</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Now then, hand over those scoundrels in Gibeah, so that we may put them to death, and purge the evil from Israel.\" But the Benjaminites would not listen to their kinsfolk, the Israelites.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The Benjaminites came together out of the towns to Gibeah, to go out to battle against the Israelites.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> On that day the Benjaminites mustered twenty-six thousand armed men from their towns, besides the inhabitants of Gibeah.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Of all this force, there were seven hundred picked men who were left-handed; every one could sling a stone at a hair, and not miss.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> And the Israelites, apart from Benjamin, mustered four hundred thousand armed men, all of them warriors.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The Israelites proceeded to go up to Bethel, where they inquired of God, \"Which of us shall go up first to battle against the Benjaminites?\" And the LORD answered, \"Judah shall go up first.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Then the Israelites got up in the morning, and encamped against Gibeah.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The Israelites went out to battle against Benjamin; and the Israelites drew up the battle line against them at Gibeah.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> The Benjaminites came out of Gibeah, and struck down on that day twenty-two thousand of the Israelites.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The Israelites took courage, and again formed the battle line in the same place where they had formed it on the first day.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> The Israelites went up and wept before the LORD until the evening; and they inquired of the LORD, \"Shall we again draw near to battle against our kinsfolk the Benjaminites?\" And the LORD said, \"Go up against them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> So the Israelites advanced against the Benjaminites the second day.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Benjamin moved out against them from Gibeah the second day, and struck down eighteen thousand of the Israelites, all of them armed men.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Then all the Israelites, the whole army, went back to Bethel and wept, sitting there before the LORD; they fasted that day until evening. Then they offered burnt offerings and sacrifices of well-being before the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> And the Israelites inquired of the LORD (for the ark of the covenant of God was there in those days,</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> and Phinehas son of Eleazar, son of Aaron, ministered before it in those days), saying, \"Shall we go out once more to battle against our kinsfolk the Benjaminites, or shall we desist?\" The LORD answered, \"Go up, for tomorrow I will give them into your hand.\"</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> So Israel stationed men in ambush around Gibeah.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Then the Israelites went up against the Benjaminites on the third day, and set themselves in array against Gibeah, as before.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> When the Benjaminites went out against the army, they were drawn away from the city. As before they began to inflict casualties on the troops, along the main roads, one of which goes up to Bethel and the other to Gibeah, as well as in the open country, killing about thirty men of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> The Benjaminites thought, \"They are being routed before us, as previously.\" But the Israelites said, \"Let us retreat and draw them away from the city toward the roads.\"</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> The main body of the Israelites drew back its battle line to Baal-tamar, while those Israelites who were in ambush rushed out of their place west of Geba. </VERS>\r\n\t\t\t<VERS vnumber=\"34\"> There came against Gibeah ten thousand picked men out of all Israel, and the battle was fierce. But the Benjaminites did not realize that disaster was close upon them.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> The LORD defeated Benjamin before Israel; and the Israelites destroyed twenty-five thousand one hundred men of Benjamin that day, all of them armed.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Then the Benjaminites saw that they were defeated. The Israelites gave ground to Benjamin, because they trusted to the troops in ambush that they had stationed against Gibeah. </VERS>\r\n\t\t\t<VERS vnumber=\"37\"> The troops in ambush rushed quickly upon Gibeah. Then they put the whole city to the sword.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Now the agreement between the main body of Israel and the men in ambush was that when they sent up a cloud of smoke out of the city</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> the main body of Israel should turn in battle. But Benjamin had begun to inflict casualties on the Israelites, killing about thirty of them; so they thought, \"Surely they are defeated before us, as in the first battle.\"</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> But when the cloud, a column of smoke, began to rise out of the city, the Benjaminites looked behind them-- and there was the whole city going up in smoke toward the sky!</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> Then the main body of Israel turned, and the Benjaminites were dismayed, for they saw that disaster was close upon them.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> Therefore they turned away from the Israelites in the direction of the wilderness; but the battle overtook them, and those who came out of the city were slaughtering them in between. </VERS>\r\n\t\t\t<VERS vnumber=\"43\"> Cutting down the Benjaminites, they pursued them from Nohah and trod them down as far as a place east of Gibeah. </VERS>\r\n\t\t\t<VERS vnumber=\"44\"> Eighteen thousand Benjaminites fell, all of them courageous fighters.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> When they turned and fled toward the wilderness to the rock of Rimmon, five thousand of them were cut down on the main roads, and they were pursued as far as Gidom, and two thousand of them were slain.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> So all who fell that day of Benjamin were twenty-five thousand arms-bearing men, all of them courageous fighters.</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> But six hundred turned and fled toward the wilderness to the rock of Rimmon, and remained at the rock of Rimmon for four months.</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> Meanwhile, the Israelites turned back against the Benjaminites, and put them to the sword-- the city, the people, the animals, and all that remained. Also the remaining towns they set on fire.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"21\">\r\n\t\t\t<VERS vnumber=\"1\"> Now the Israelites had sworn at Mizpah, \"No one of us shall give his daughter in marriage to Benjamin.\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And the people came to Bethel, and sat there until evening before God, and they lifted up their voices and wept bitterly.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> They said, \"O LORD, the God of Israel, why has it come to pass that today there should be one tribe lacking in Israel?\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> On the next day, the people got up early, and built an altar there, and offered burnt offerings and sacrifices of well-being.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then the Israelites said, \"Which of all the tribes of Israel did not come up in the assembly to the LORD?\" For a solemn oath had been taken concerning whoever did not come up to the LORD to Mizpah, saying, \"That one shall be put to death.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> But the Israelites had compassion for Benjamin their kin, and said, \"One tribe is cut off from Israel this day.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> What shall we do for wives for those who are left, since we have sworn by the LORD that we will not give them any of our daughters as wives?\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then they said, \"Is there anyone from the tribes of Israel who did not come up to the LORD to Mizpah?\" It turned out that no one from Jabesh-gilead had come to the camp, to the assembly.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> For when the roll was called among the people, not one of the inhabitants of Jabesh-gilead was there.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> So the congregation sent twelve thousand soldiers there and commanded them, \"Go, put the inhabitants of Jabesh-gilead to the sword, including the women and the little ones.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> This is what you shall do; every male and every woman that has lain with a male you shall devote to destruction.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> And they found among the inhabitants of Jabesh-gilead four hundred young virgins who had never slept with a man and brought them to the camp at Shiloh, which is in the land of Canaan.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then the whole congregation sent word to the Benjaminites who were at the rock of Rimmon, and proclaimed peace to them.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Benjamin returned at that time; and they gave them the women whom they had saved alive of the women of Jabesh-gilead; but they did not suffice for them.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The people had compassion on Benjamin because the LORD had made a breach in the tribes of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> So the elders of the congregation said, \"What shall we do for wives for those who are left, since there are no women left in Benjamin?\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> And they said, \"There must be heirs for the survivors of Benjamin, in order that a tribe may not be blotted out from Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Yet we cannot give any of our daughters to them as wives.\" For the Israelites had sworn, \"Cursed be anyone who gives a wife to Benjamin.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> So they said, \"Look, the yearly festival of the LORD is taking place at Shiloh, which is north of Bethel, on the east of the highway that goes up from Bethel to Shechem, and south of Lebonah.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> And they instructed the Benjaminites, saying, \"Go and lie in wait in the vineyards,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> and watch; when the young women of Shiloh come out to dance in the dances, then come out of the vineyards and each of you carry off a wife for himself from the young women of Shiloh, and go to the land of Benjamin.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Then if their fathers or their brothers come to complain to us, we will say to them, 'Be generous and allow us to have them; because we did not capture in battle a wife for each man. But neither did you incur guilt by giving your daughters to them.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> The Benjaminites did so; they took wives for each of them from the dancers whom they abducted. Then they went and returned to their territory, and rebuilt the towns, and lived in them.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> So the Israelites departed from there at that time by tribes and families, and they went out from there to their own territories.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> In those days there was no king in Israel; all the people did what was right in their own eyes.</VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"8\" bname=\"Ruth\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> In the days when the judges ruled, there was a famine in the land, and a certain man of Bethlehem in Judah went to live in the country of Moab, he and his wife and two sons.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The name of the man was Elimelech and the name of his wife Naomi, and the names of his two sons were Mahlon and Chilion; they were Ephrathites from Bethlehem in Judah. They went into the country of Moab and remained there.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> But Elimelech, the husband of Naomi, died, and she was left with her two sons.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> These took Moabite wives; the name of the one was Orpah and the name of the other Ruth. When they had lived there about ten years,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> both Mahlon and Chilion also died, so that the woman was left without her two sons and her husband.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then she started to return with her daughters-in-law from the country of Moab, for she had heard in the country of Moab that the LORD had considered his people and given them food.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> So she set out from the place where she had been living, she and her two daughters-in-law, and they went on their way to go back to the land of Judah.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But Naomi said to her two daughters-in-law, \"Go back each of you to your mother's house. May the LORD deal kindly with you, as you have dealt with the dead and with me.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The LORD grant that you may find security, each of you in the house of your husband.\" Then she kissed them, and they wept aloud.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> They said to her, \"No, we will return with you to your people.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But Naomi said, \"Turn back, my daughters, why will you go with me? Do I still have sons in my womb that they may become your husbands?</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Turn back, my daughters, go your way, for I am too old to have a husband. Even if I thought there was hope for me, even if I should have a husband tonight and bear sons,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> would you then wait until they were grown? Would you then refrain from marrying? No, my daughters, it has been far more bitter for me than for you, because the hand of the LORD has turned against me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then they wept aloud again. Orpah kissed her mother-in-law, but Ruth clung to her.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> So she said, \"See, your sister-in-law has gone back to her people and to her gods; return after your sister-in-law.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> But Ruth said, \"Do not press me to leave you or to turn back from following you! Where you go, I will go; where you lodge, I will lodge; your people shall be my people, and your God my God.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Where you die, I will die-- there will I be buried. May the LORD do thus and so to me, and more as well, if even death parts me from you!\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> When Naomi saw that she was determined to go with her, she said no more to her.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> So the two of them went on until they came to Bethlehem. When they came to Bethlehem, the whole town was stirred because of them; and the women said, \"Is this Naomi?\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> She said to them, \"Call me no longer Naomi, call me Mara, for the Almighty has dealt bitterly with me. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> I went away full, but the LORD has brought me back empty; why call me Naomi when the LORD has dealt harshly with me, and the Almighty has brought calamity upon me?\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> So Naomi returned together with Ruth the Moabite, her daughter-in-law, who came back with her from the country of Moab. They came to Bethlehem at the beginning of the barley harvest.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> Now Naomi had a kinsman on her husband's side, a prominent rich man, of the family of Elimelech, whose name was Boaz.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And Ruth the Moabite said to Naomi, \"Let me go to the field and glean among the ears of grain, behind someone in whose sight I may find favor.\" She said to her, \"Go, my daughter.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> So she went. She came and gleaned in the field behind the reapers. As it happened, she came to the part of the field belonging to Boaz, who was of the family of Elimelech.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Just then Boaz came from Bethlehem. He said to the reapers, \"The LORD be with you.\" They answered, \"The LORD bless you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then Boaz said to his servant who was in charge of the reapers, \"To whom does this young woman belong?\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The servant who was in charge of the reapers answered, \"She is the Moabite who came back with Naomi from the country of Moab.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> She said, 'Please, let me glean and gather among the sheaves behind the reapers.' So she came, and she has been on her feet from early this morning until now, without resting even for a moment.\" </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then Boaz said to Ruth, \"Now listen, my daughter, do not go to glean in another field or leave this one, but keep close to my young women.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Keep your eyes on the field that is being reaped, and follow behind them. I have ordered the young men not to bother you. If you get thirsty, go to the vessels and drink from what the young men have drawn.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then she fell prostrate, with her face to the ground, and said to him, \"Why have I found favor in your sight, that you should take notice of me, when I am a foreigner?\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But Boaz answered her, \"All that you have done for your mother-in-law since the death of your husband has been fully told me, and how you left your father and mother and your native land and came to a people that you did not know before.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> May the LORD reward you for your deeds, and may you have a full reward from the LORD, the God of Israel, under whose wings you have come for refuge!\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then she said, \"May I continue to find favor in your sight, my lord, for you have comforted me and spoken kindly to your servant, even though I am not one of your servants.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> At mealtime Boaz said to her, \"Come here, and eat some of this bread, and dip your morsel in the sour wine.\" So she sat beside the reapers, and he heaped up for her some parched grain. She ate until she was satisfied, and she had some left over.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> When she got up to glean, Boaz instructed his young men, \"Let her glean even among the standing sheaves, and do not reproach her.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> You must also pull out some handfuls for her from the bundles, and leave them for her to glean, and do not rebuke her.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> So she gleaned in the field until evening. Then she beat out what she had gleaned, and it was about an ephah of barley.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> She picked it up and came into the town, and her mother-in-law saw how much she had gleaned. Then she took out and gave her what was left over after she herself had been satisfied.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Her mother-in-law said to her, \"Where did you glean today? And where have you worked? Blessed be the man who took notice of you.\" So she told her mother-in-law with whom she had worked, and said, \"The name of the man with whom I worked today is Boaz.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Then Naomi said to her daughter-in-law, \"Blessed be he by the LORD, whose kindness has not forsaken the living or the dead!\" Naomi also said to her, \"The man is a relative of ours, one of our nearest kin.\" </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then Ruth the Moabite said, \"He even said to me, 'Stay close by my servants, until they have finished all my harvest.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Naomi said to Ruth, her daughter-in-law, \"It is better, my daughter, that you go out with his young women, otherwise you might be bothered in another field.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> So she stayed close to the young women of Boaz, gleaning until the end of the barley and wheat harvests; and she lived with her mother-in-law.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> Naomi her mother-in-law said to her, \"My daughter, I need to seek some security for you, so that it may be well with you.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Now here is our kinsman Boaz, with whose young women you have been working. See, he is winnowing barley tonight at the threshing floor.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Now wash and anoint yourself, and put on your best clothes and go down to the threshing floor; but do not make yourself known to the man until he has finished eating and drinking.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> When he lies down, observe the place where he lies; then, go and uncover his feet and lie down; and he will tell you what to do.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> She said to her, \"All that you tell me I will do.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> So she went down to the threshing floor and did just as her mother-in-law had instructed her.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> When Boaz had eaten and drunk, and he was in a contented mood, he went to lie down at the end of the heap of grain. Then she came stealthily and uncovered his feet, and lay down.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> At midnight the man was startled, and turned over, and there, lying at his feet, was a woman!</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> He said, \"Who are you?\" And she answered, \"I am Ruth, your servant; spread your cloak over your servant, for you are next-of-kin.\" </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> He said, \"May you be blessed by the LORD, my daughter; this last instance of your loyalty is better than the first; you have not gone after young men, whether poor or rich.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> And now, my daughter, do not be afraid, I will do for you all that you ask, for all the assembly of my people know that you are a worthy woman.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> But now, though it is true that I am a near kinsman, there is another kinsman more closely related than I.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Remain this night, and in the morning, if he will act as next-of-kin for you, good; let him do it. If he is not willing to act as next-of-kin for you, then, as the LORD lives, I will act as next-of-kin for you. Lie down until the morning.\" </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> So she lay at his feet until morning, but got up before one person could recognize another; for he said, \"It must not be known that the woman came to the threshing floor.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Then he said, \"Bring the cloak you are wearing and hold it out.\" So she held it, and he measured out six measures of barley, and put it on her back; then he went into the city.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> She came to her mother-in-law, who said, \"How did things go with you, my daughter?\" Then she told her all that the man had done for her, </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> saying, \"He gave me these six measures of barley, for he said, 'Do not go back to your mother-in-law empty-handed.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> She replied, \"Wait, my daughter, until you learn how the matter turns out, for the man will not rest, but will settle the matter today.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> No sooner had Boaz gone up to the gate and sat down there than the next-of-kin, of whom Boaz had spoken, came passing by. So Boaz said, \"Come over, friend; sit down here.\" And he went over and sat down. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Then Boaz took ten men of the elders of the city, and said, \"Sit down here\"; so they sat down.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> He then said to the next-of-kin, \"Naomi, who has come back from the country of Moab, is selling the parcel of land that belonged to our kinsman Elimelech. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> So I thought I would tell you of it, and say: Buy it in the presence of those sitting here, and in the presence of the elders of my people. If you will redeem it, redeem it; but if you will not, tell me, so that I may know; for there is no one prior to you to redeem it, and I come after you.\" So he said, \"I will redeem it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then Boaz said, \"The day you acquire the field from the hand of Naomi, you are also acquiring Ruth the Moabite, the widow of the dead man, to maintain the dead man's name on his inheritance.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> At this, the next-of-kin said, \"I cannot redeem it for myself without damaging my own inheritance. Take my right of redemption yourself, for I cannot redeem it.\" </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Now this was the custom in former times in Israel concerning redeeming and exchanging: to confirm a transaction, the one took off a sandal and gave it to the other; this was the manner of attesting in Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> So when the next-of-kin said to Boaz, \"Acquire it for yourself,\" he took off his sandal. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then Boaz said to the elders and all the people, \"Today you are witnesses that I have acquired from the hand of Naomi all that belonged to Elimelech and all that belonged to Chilion and Mahlon.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> I have also acquired Ruth the Moabite, the wife of Mahlon, to be my wife, to maintain the dead man's name on his inheritance, in order that the name of the dead may not be cut off from his kindred and from the gate of his native place; today you are witnesses.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then all the people who were at the gate, along with the elders, said, \"We are witnesses. May the LORD make the woman who is coming into your house like Rachel and Leah, who together built up the house of Israel. May you produce children in Ephrathah and bestow a name in Bethlehem;</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> and, through the children that the LORD will give you by this young woman, may your house be like the house of Perez, whom Tamar bore to Judah.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> So Boaz took Ruth and she became his wife. When they came together, the LORD made her conceive, and she bore a son.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then the women said to Naomi, \"Blessed be the LORD, who has not left you this day without next-of-kin; and may his name be renowned in Israel!</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> He shall be to you a restorer of life and a nourisher of your old age; for your daughter-in-law who loves you, who is more to you than seven sons, has borne him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then Naomi took the child and laid him in her bosom, and became his nurse.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The women of the neighborhood gave him a name, saying, \"A son has been born to Naomi.\" They named him Obed; he became the father of Jesse, the father of David.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Now these are the descendants of Perez: Perez became the father of Hezron,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Hezron of Ram, Ram of Amminadab,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Amminadab of Nahshon, Nahshon of Salmon,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Salmon of Boaz, Boaz of Obed,</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Obed of Jesse, and Jesse of David.</VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"9\" bname=\"1 Samuel\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> There was a certain man of Ramathaim, a Zuphite from the hill country of Ephraim, whose name was Elkanah son of Jeroham son of Elihu son of Tohu son of Zuph, an Ephraimite. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He had two wives; the name of the one was Hannah, and the name of the other Peninnah. Peninnah had children, but Hannah had no children.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Now this man used to go up year by year from his town to worship and to sacrifice to the LORD of hosts at Shiloh, where the two sons of Eli, Hophni and Phinehas, were priests of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> On the day when Elkanah sacrificed, he would give portions to his wife Peninnah and to all her sons and daughters;</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> but to Hannah he gave a double portion, because he loved her, though the LORD had closed her womb. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Her rival used to provoke her severely, to irritate her, because the LORD had closed her womb.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> So it went on year by year; as often as she went up to the house of the LORD, she used to provoke her. Therefore Hannah wept and would not eat.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Her husband Elkanah said to her, \"Hannah, why do you weep? Why do you not eat? Why is your heart sad? Am I not more to you than ten sons?\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> After they had eaten and drunk at Shiloh, Hannah rose and presented herself before the LORD. Now Eli the priest was sitting on the seat beside the doorpost of the temple of the LORD. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> She was deeply distressed and prayed to the LORD, and wept bitterly.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> She made this vow: \"O LORD of hosts, if only you will look on the misery of your servant, and remember me, and not forget your servant, but will give to your servant a male child, then I will set him before you as a nazirite until the day of his death. He shall drink neither wine nor intoxicants, and no razor shall touch his head.\" </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> As she continued praying before the LORD, Eli observed her mouth.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Hannah was praying silently; only her lips moved, but her voice was not heard; therefore Eli thought she was drunk.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> So Eli said to her, \"How long will you make a drunken spectacle of yourself? Put away your wine.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> But Hannah answered, \"No, my lord, I am a woman deeply troubled; I have drunk neither wine nor strong drink, but I have been pouring out my soul before the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Do not regard your servant as a worthless woman, for I have been speaking out of my great anxiety and vexation all this time.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then Eli answered, \"Go in peace; the God of Israel grant the petition you have made to him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> And she said, \"Let your servant find favor in your sight.\" Then the woman went to her quarters, ate and drank with her husband, and her countenance was sad no longer. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> They rose early in the morning and worshiped before the LORD; then they went back to their house at Ramah. Elkanah knew his wife Hannah, and the LORD remembered her.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> In due time Hannah conceived and bore a son. She named him Samuel, for she said, \"I have asked him of the LORD.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> The man Elkanah and all his household went up to offer to the LORD the yearly sacrifice, and to pay his vow.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> But Hannah did not go up, for she said to her husband, \"As soon as the child is weaned, I will bring him, that he may appear in the presence of the LORD, and remain there forever; I will offer him as a nazirite for all time.\" </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Her husband Elkanah said to her, \"Do what seems best to you, wait until you have weaned him; only-- may the LORD establish his word.\" So the woman remained and nursed her son, until she weaned him.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> When she had weaned him, she took him up with her, along with a three-year-old bull, an ephah of flour, and a skin of wine. She brought him to the house of the LORD at Shiloh; and the child was young. </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Then they slaughtered the bull, and they brought the child to Eli.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> And she said, \"Oh, my lord! As you live, my lord, I am the woman who was standing here in your presence, praying to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> For this child I prayed; and the LORD has granted me the petition that I made to him.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Therefore I have lent him to the LORD; as long as he lives, he is given to the LORD.\" She left him there for the LORD. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> Hannah prayed and said, \"My heart exults in the LORD; my strength is exalted in my God. My mouth derides my enemies, because I rejoice in my victory. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"There is no Holy One like the LORD, no one besides you; there is no Rock like our God.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Talk no more so very proudly, let not arrogance come from your mouth; for the LORD is a God of knowledge, and by him actions are weighed.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The bows of the mighty are broken, but the feeble gird on strength.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Those who were full have hired themselves out for bread, but those who were hungry are fat with spoil. The barren has borne seven, but she who has many children is forlorn.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The LORD kills and brings to life; he brings down to Sheol and raises up.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The LORD makes poor and makes rich; he brings low, he also exalts.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> He raises up the poor from the dust; he lifts the needy from the ash heap, to make them sit with princes and inherit a seat of honor. For the pillars of the earth are the LORD's, and on them he has set the world. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> \"He will guard the feet of his faithful ones, but the wicked shall be cut off in darkness; for not by might does one prevail.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The LORD! His adversaries shall be shattered; the Most High will thunder in heaven. The LORD will judge the ends of the earth; he will give strength to his king, and exalt the power of his anointed.\" </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then Elkanah went home to Ramah, while the boy remained to minister to the LORD, in the presence of the priest Eli.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Now the sons of Eli were scoundrels; they had no regard for the LORD</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> or for the duties of the priests to the people. When anyone offered sacrifice, the priest's servant would come, while the meat was boiling, with a three-pronged fork in his hand,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> and he would thrust it into the pan, or kettle, or caldron, or pot; all that the fork brought up the priest would take for himself. This is what they did at Shiloh to all the Israelites who came there. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Moreover, before the fat was burned, the priest's servant would come and say to the one who was sacrificing, \"Give meat for the priest to roast; for he will not accept boiled meat from you, but only raw.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> And if the man said to him, \"Let them burn the fat first, and then take whatever you wish,\" he would say, \"No, you must give it now; if not, I will take it by force.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Thus the sin of the young men was very great in the sight of the LORD; for they treated the offerings of the LORD with contempt.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Samuel was ministering before the LORD, a boy wearing a linen ephod.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> His mother used to make for him a little robe and take it to him each year, when she went up with her husband to offer the yearly sacrifice.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Then Eli would bless Elkanah and his wife, and say, \"May the LORD repay you with children by this woman for the gift that she made to the LORD\"; and then they would return to their home.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> And the LORD took note of Hannah; she conceived and bore three sons and two daughters. And the boy Samuel grew up in the presence of the LORD. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Now Eli was very old. He heard all that his sons were doing to all Israel, and how they lay with the women who served at the entrance to the tent of meeting.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> He said to them, \"Why do you do such things? For I hear of your evil dealings from all these people.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> No, my sons; it is not a good report that I hear the people of the LORD spreading abroad.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> If one person sins against another, someone can intercede for the sinner with the LORD; but if someone sins against the LORD, who can make intercession?\" But they would not listen to the voice of their father; for it was the will of the LORD to kill them. </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Now the boy Samuel continued to grow both in stature and in favor with the LORD and with the people.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> A man of God came to Eli and said to him, \"Thus the LORD has said, 'I revealed myself to the family of your ancestor in Egypt when they were slaves to the house of Pharaoh. </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> I chose him out of all the tribes of Israel to be my priest, to go up to my altar, to offer incense, to wear an ephod before me; and I gave to the family of your ancestor all my offerings by fire from the people of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Why then look with greedy eye at my sacrifices and my offerings that I commanded, and honor your sons more than me by fattening yourselves on the choicest parts of every offering of my people Israel?' </VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Therefore the LORD the God of Israel declares: 'I promised that your family and the family of your ancestor should go in and out before me forever'; but now the LORD declares: 'Far be it from me; for those who honor me I will honor, and those who despise me shall be treated with contempt.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> See, a time is coming when I will cut off your strength and the strength of your ancestor's family, so that no one in your family will live to old age.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Then in distress you will look with greedy eye on all the prosperity that shall be bestowed upon Israel; and no one in your family shall ever live to old age. </VERS>\r\n\t\t\t<VERS vnumber=\"33\"> The only one of you whom I shall not cut off from my altar shall be spared to weep out his eyes and grieve his heart; all the members of your household shall die by the sword. </VERS>\r\n\t\t\t<VERS vnumber=\"34\"> The fate of your two sons, Hophni and Phinehas, shall be the sign to you-- both of them shall die on the same day.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> I will raise up for myself a faithful priest, who shall do according to what is in my heart and in my mind. I will build him a sure house, and he shall go in and out before my anointed one forever.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Everyone who is left in your family shall come to implore him for a piece of silver or a loaf of bread, and shall say, Please put me in one of the priest's places, that I may eat a morsel of bread.'\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> Now the boy Samuel was ministering to the LORD under Eli. The word of the LORD was rare in those days; visions were not widespread.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> At that time Eli, whose eyesight had begun to grow dim so that he could not see, was lying down in his room;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> the lamp of God had not yet gone out, and Samuel was lying down in the temple of the LORD, where the ark of God was.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then the LORD called, \"Samuel! Samuel!\" and he said, \"Here I am!\" </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> and ran to Eli, and said, \"Here I am, for you called me.\" But he said, \"I did not call; lie down again.\" So he went and lay down.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The LORD called again, \"Samuel!\" Samuel got up and went to Eli, and said, \"Here I am, for you called me.\" But he said, \"I did not call, my son; lie down again.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Now Samuel did not yet know the LORD, and the word of the LORD had not yet been revealed to him.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The LORD called Samuel again, a third time. And he got up and went to Eli, and said, \"Here I am, for you called me.\" Then Eli perceived that the LORD was calling the boy.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Therefore Eli said to Samuel, \"Go, lie down; and if he calls you, you shall say, 'Speak, LORD, for your servant is listening.'\" So Samuel went and lay down in his place.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Now the LORD came and stood there, calling as before, \"Samuel! Samuel!\" And Samuel said, \"Speak, for your servant is listening.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then the LORD said to Samuel, \"See, I am about to do something in Israel that will make both ears of anyone who hears of it tingle.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> On that day I will fulfill against Eli all that I have spoken concerning his house, from beginning to end.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> For I have told him that I am about to punish his house forever, for the iniquity that he knew, because his sons were blaspheming God, and he did not restrain them. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Therefore I swear to the house of Eli that the iniquity of Eli's house shall not be expiated by sacrifice or offering forever.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Samuel lay there until morning; then he opened the doors of the house of the LORD. Samuel was afraid to tell the vision to Eli.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> But Eli called Samuel and said, \"Samuel, my son.\" He said, \"Here I am.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Eli said, \"What was it that he told you? Do not hide it from me. May God do so to you and more also, if you hide anything from me of all that he told you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> So Samuel told him everything and hid nothing from him. Then he said, \"It is the LORD; let him do what seems good to him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> As Samuel grew up, the LORD was with him and let none of his words fall to the ground.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> And all Israel from Dan to Beer-sheba knew that Samuel was a trustworthy prophet of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> The LORD continued to appear at Shiloh, for the LORD revealed himself to Samuel at Shiloh by the word of the LORD.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> And the word of Samuel came to all Israel. In those days the Philistines mustered for war against Israel, and Israel went out to battle against them; they encamped at Ebenezer, and the Philistines encamped at Aphek. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The Philistines drew up in line against Israel, and when the battle was joined, Israel was defeated by the Philistines, who killed about four thousand men on the field of battle. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> When the troops came to the camp, the elders of Israel said, \"Why has the LORD put us to rout today before the Philistines? Let us bring the ark of the covenant of the LORD here from Shiloh, so that he may come among us and save us from the power of our enemies.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> So the people sent to Shiloh, and brought from there the ark of the covenant of the LORD of hosts, who is enthroned on the cherubim. The two sons of Eli, Hophni and Phinehas, were there with the ark of the covenant of God.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> When the ark of the covenant of the LORD came into the camp, all Israel gave a mighty shout, so that the earth resounded.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> When the Philistines heard the noise of the shouting, they said, \"What does this great shouting in the camp of the Hebrews mean?\" When they learned that the ark of the LORD had come to the camp,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> the Philistines were afraid; for they said, \"Gods have come into the camp.\" They also said, \"Woe to us! For nothing like this has happened before. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Woe to us! Who can deliver us from the power of these mighty gods? These are the gods who struck the Egyptians with every sort of plague in the wilderness.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Take courage, and be men, O Philistines, in order not to become slaves to the Hebrews as they have been to you; be men and fight.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> So the Philistines fought; Israel was defeated, and they fled, everyone to his home. There was a very great slaughter, for there fell of Israel thirty thousand foot soldiers.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The ark of God was captured; and the two sons of Eli, Hophni and Phinehas, died.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> A man of Benjamin ran from the battle line, and came to Shiloh the same day, with his clothes torn and with earth upon his head.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> When he arrived, Eli was sitting upon his seat by the road watching, for his heart trembled for the ark of God. When the man came into the city and told the news, all the city cried out.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> When Eli heard the sound of the outcry, he said, \"What is this uproar?\" Then the man came quickly and told Eli.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Now Eli was ninety-eight years old and his eyes were set, so that he could not see.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The man said to Eli, \"I have just come from the battle; I fled from the battle today.\" He said, \"How did it go, my son?\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The messenger replied, \"Israel has fled before the Philistines, and there has also been a great slaughter among the troops; your two sons also, Hophni and Phinehas, are dead, and the ark of God has been captured.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> When he mentioned the ark of God, Eli fell over backward from his seat by the side of the gate; and his neck was broken and he died, for he was an old man, and heavy. He had judged Israel forty years. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Now his daughter-in-law, the wife of Phinehas, was pregnant, about to give birth. When she heard the news that the ark of God was captured, and that her father-in-law and her husband were dead, she bowed and gave birth; for her labor pains overwhelmed her.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> As she was about to die, the women attending her said to her, \"Do not be afraid, for you have borne a son.\" But she did not answer or give heed.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> She named the child Ichabod, meaning, \"The glory has departed from Israel,\" because the ark of God had been captured and because of her father-in-law and her husband.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> She said, \"The glory has departed from Israel, for the ark of God has been captured.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"5\">\r\n\t\t\t<VERS vnumber=\"1\"> When the Philistines captured the ark of God, they brought it from Ebenezer to Ashdod;</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> then the Philistines took the ark of God and brought it into the house of Dagon and placed it beside Dagon.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> When the people of Ashdod rose early the next day, there was Dagon, fallen on his face to the ground before the ark of the LORD. So they took Dagon and put him back in his place.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But when they rose early on the next morning, Dagon had fallen on his face to the ground before the ark of the LORD, and the head of Dagon and both his hands were lying cut off upon the threshold; only the trunk of Dagon was left to him. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> This is why the priests of Dagon and all who enter the house of Dagon do not step on the threshold of Dagon in Ashdod to this day.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The hand of the LORD was heavy upon the people of Ashdod, and he terrified and struck them with tumors, both in Ashdod and in its territory.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> And when the inhabitants of Ashdod saw how things were, they said, \"The ark of the God of Israel must not remain with us; for his hand is heavy on us and on our god Dagon.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> So they sent and gathered together all the lords of the Philistines, and said, \"What shall we do with the ark of the God of Israel?\" The inhabitants of Gath replied, \"Let the ark of God be moved on to us.\" So they moved the ark of the God of Israel to Gath. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> But after they had brought it to Gath, the hand of the LORD was against the city, causing a very great panic; he struck the inhabitants of the city, both young and old, so that tumors broke out on them. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> So they sent the ark of the God of Israel to Ekron. But when the ark of God came to Ekron, the people of Ekron cried out, \"Why have they brought around to us the ark of the God of Israel to kill us and our people?\" </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> They sent therefore and gathered together all the lords of the Philistines, and said, \"Send away the ark of the God of Israel, and let it return to its own place, that it may not kill us and our people.\" For there was a deathly panic throughout the whole city. The hand of God was very heavy there; </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> those who did not die were stricken with tumors, and the cry of the city went up to heaven.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"6\">\r\n\t\t\t<VERS vnumber=\"1\"> The ark of the LORD was in the country of the Philistines seven months.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Then the Philistines called for the priests and the diviners and said, \"What shall we do with the ark of the LORD? Tell us what we should send with it to its place.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> They said, \"If you send away the ark of the God of Israel, do not send it empty, but by all means return him a guilt offering. Then you will be healed and will be ransomed; will not his hand then turn from you?\" </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> And they said, \"What is the guilt offering that we shall return to him?\" They answered, \"Five gold tumors and five gold mice, according to the number of the lords of the Philistines; for the same plague was upon all of you and upon your lords.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> So you must make images of your tumors and images of your mice that ravage the land, and give glory to the God of Israel; perhaps he will lighten his hand on you and your gods and your land.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Why should you harden your hearts as the Egyptians and Pharaoh hardened their hearts? After he had made fools of them, did they not let the people go, and they departed?</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Now then, get ready a new cart and two milch cows that have never borne a yoke, and yoke the cows to the cart, but take their calves home, away from them.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Take the ark of the LORD and place it on the cart, and put in a box at its side the figures of gold, which you are returning to him as a guilt offering. Then send it off, and let it go its way.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> And watch; if it goes up on the way to its own land, to Beth-shemesh, then it is he who has done us this great harm; but if not, then we shall know that it is not his hand that struck us; it happened to us by chance.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The men did so; they took two milch cows and yoked them to the cart, and shut up their calves at home.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> They put the ark of the LORD on the cart, and the box with the gold mice and the images of their tumors.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The cows went straight in the direction of Beth-shemesh along one highway, lowing as they went; they turned neither to the right nor to the left, and the lords of the Philistines went after them as far as the border of Beth-shemesh.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Now the people of Beth-shemesh were reaping their wheat harvest in the valley. When they looked up and saw the ark, they went with rejoicing to meet it. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The cart came into the field of Joshua of Beth-shemesh, and stopped there. A large stone was there; so they split up the wood of the cart and offered the cows as a burnt offering to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The Levites took down the ark of the LORD and the box that was beside it, in which were the gold objects, and set them upon the large stone. Then the people of Beth-shemesh offered burnt offerings and presented sacrifices on that day to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> When the five lords of the Philistines saw it, they returned that day to Ekron.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> These are the gold tumors, which the Philistines returned as a guilt offering to the LORD: one for Ashdod, one for Gaza, one for Ashkelon, one for Gath, one for Ekron;</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> also the gold mice, according to the number of all the cities of the Philistines belonging to the five lords, both fortified cities and unwalled villages. The great stone, beside which they set down the ark of the LORD, is a witness to this day in the field of Joshua of Beth-shemesh.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The descendants of Jeconiah did not rejoice with the people of Beth-shemesh when they greeted the ark of the LORD; and he killed seventy men of them. The people mourned because the LORD had made a great slaughter among the people. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Then the people of Beth-shemesh said, \"Who is able to stand before the LORD, this holy God? To whom shall he go so that we may be rid of him?\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> So they sent messengers to the inhabitants of Kiriath-jearim, saying, \"The Philistines have returned the ark of the LORD. Come down and take it up to you.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"7\">\r\n\t\t\t<VERS vnumber=\"1\"> And the people of Kiriath-jearim came and took up the ark of the LORD, and brought it to the house of Abinadab on the hill. They consecrated his son, Eleazar, to have charge of the ark of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> From the day that the ark was lodged at Kiriath-jearim, a long time passed, some twenty years, and all the house of Israel lamented after the LORD. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then Samuel said to all the house of Israel, \"If you are returning to the LORD with all your heart, then put away the foreign gods and the Astartes from among you. Direct your heart to the LORD, and serve him only, and he will deliver you out of the hand of the Philistines.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> So Israel put away the Baals and the Astartes, and they served the LORD only.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then Samuel said, \"Gather all Israel at Mizpah, and I will pray to the LORD for you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> So they gathered at Mizpah, and drew water and poured it out before the LORD. They fasted that day, and said, \"We have sinned against the LORD.\" And Samuel judged the people of Israel at Mizpah.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> When the Philistines heard that the people of Israel had gathered at Mizpah, the lords of the Philistines went up against Israel. And when the people of Israel heard of it they were afraid of the Philistines.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The people of Israel said to Samuel, \"Do not cease to cry out to the LORD our God for us, and pray that he may save us from the hand of the Philistines.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> So Samuel took a sucking lamb and offered it as a whole burnt offering to the LORD; Samuel cried out to the LORD for Israel, and the LORD answered him.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> As Samuel was offering up the burnt offering, the Philistines drew near to attack Israel; but the LORD thundered with a mighty voice that day against the Philistines and threw them into confusion; and they were routed before Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> And the men of Israel went out of Mizpah and pursued the Philistines, and struck them down as far as beyond Beth-car.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then Samuel took a stone and set it up between Mizpah and Jeshanah, and named it Ebenezer; for he said, \"Thus far the LORD has helped us.\" </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> So the Philistines were subdued and did not again enter the territory of Israel; the hand of the LORD was against the Philistines all the days of Samuel.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The towns that the Philistines had taken from Israel were restored to Israel, from Ekron to Gath; and Israel recovered their territory from the hand of the Philistines. There was peace also between Israel and the Amorites.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Samuel judged Israel all the days of his life.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> He went on a circuit year by year to Bethel, Gilgal, and Mizpah; and he judged Israel in all these places.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then he would come back to Ramah, for his home was there; he administered justice there to Israel, and built there an altar to the LORD.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"8\">\r\n\t\t\t<VERS vnumber=\"1\"> When Samuel became old, he made his sons judges over Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The name of his firstborn son was Joel, and the name of his second, Abijah; they were judges in Beer-sheba.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Yet his sons did not follow in his ways, but turned aside after gain; they took bribes and perverted justice.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then all the elders of Israel gathered together and came to Samuel at Ramah,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> and said to him, \"You are old and your sons do not follow in your ways; appoint for us, then, a king to govern us, like other nations.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> But the thing displeased Samuel when they said, \"Give us a king to govern us.\" Samuel prayed to the LORD,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> and the LORD said to Samuel, \"Listen to the voice of the people in all that they say to you; for they have not rejected you, but they have rejected me from being king over them.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Just as they have done to me, from the day I brought them up out of Egypt to this day, forsaking me and serving other gods, so also they are doing to you. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Now then, listen to their voice; only-- you shall solemnly warn them, and show them the ways of the king who shall reign over them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> So Samuel reported all the words of the LORD to the people who were asking him for a king.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> He said, \"These will be the ways of the king who will reign over you: he will take your sons and appoint them to his chariots and to be his horsemen, and to run before his chariots;</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> and he will appoint for himself commanders of thousands and commanders of fifties, and some to plow his ground and to reap his harvest, and to make his implements of war and the equipment of his chariots.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> He will take your daughters to be perfumers and cooks and bakers.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> He will take the best of your fields and vineyards and olive orchards and give them to his courtiers.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> He will take one-tenth of your grain and of your vineyards and give it to his officers and his courtiers.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> He will take your male and female slaves, and the best of your cattle and donkeys, and put them to his work. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> He will take one-tenth of your flocks, and you shall be his slaves.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> And in that day you will cry out because of your king, whom you have chosen for yourselves; but the LORD will not answer you in that day.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> But the people refused to listen to the voice of Samuel; they said, \"No! but we are determined to have a king over us,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> so that we also may be like other nations, and that our king may govern us and go out before us and fight our battles.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> When Samuel had heard all the words of the people, he repeated them in the ears of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The LORD said to Samuel, \"Listen to their voice and set a king over them.\" Samuel then said to the people of Israel, \"Each of you return home.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"9\">\r\n\t\t\t<VERS vnumber=\"1\"> There was a man of Benjamin whose name was Kish son of Abiel son of Zeror son of Becorath son of Aphiah, a Benjaminite, a man of wealth.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He had a son whose name was Saul, a handsome young man. There was not a man among the people of Israel more handsome than he; he stood head and shoulders above everyone else.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Now the donkeys of Kish, Saul's father, had strayed. So Kish said to his son Saul, \"Take one of the boys with you; go and look for the donkeys.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> He passed through the hill country of Ephraim and passed through the land of Shalishah, but they did not find them. And they passed through the land of Shaalim, but they were not there. Then he passed through the land of Benjamin, but they did not find them.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> When they came to the land of Zuph, Saul said to the boy who was with him, \"Let us turn back, or my father will stop worrying about the donkeys and worry about us.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> But he said to him, \"There is a man of God in this town; he is a man held in honor. Whatever he says always comes true. Let us go there now; perhaps he will tell us about the journey on which we have set out.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then Saul replied to the boy, \"But if we go, what can we bring the man? For the bread in our sacks is gone, and there is no present to bring to the man of God. What have we?\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The boy answered Saul again, \"Here, I have with me a quarter shekel of silver; I will give it to the man of God, to tell us our way.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> (Formerly in Israel, anyone who went to inquire of God would say, \"Come, let us go to the seer\"; for the one who is now called a prophet was formerly called a seer.)</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Saul said to the boy, \"Good; come, let us go.\" So they went to the town where the man of God was.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> As they went up the hill to the town, they met some girls coming out to draw water, and said to them, \"Is the seer here?\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> They answered, \"Yes, there he is just ahead of you. Hurry; he has come just now to the town, because the people have a sacrifice today at the shrine.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> As soon as you enter the town, you will find him, before he goes up to the shrine to eat. For the people will not eat until he comes, since he must bless the sacrifice; afterward those eat who are invited. Now go up, for you will meet him immediately.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> So they went up to the town. As they were entering the town, they saw Samuel coming out toward them on his way up to the shrine.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Now the day before Saul came, the LORD had revealed to Samuel:</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> \"Tomorrow about this time I will send to you a man from the land of Benjamin, and you shall anoint him to be ruler over my people Israel. He shall save my people from the hand of the Philistines; for I have seen the suffering of my people, because their outcry has come to me.\" </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> When Samuel saw Saul, the LORD told him, \"Here is the man of whom I spoke to you. He it is who shall rule over my people.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then Saul approached Samuel inside the gate, and said, \"Tell me, please, where is the house of the seer?\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Samuel answered Saul, \"I am the seer; go up before me to the shrine, for today you shall eat with me, and in the morning I will let you go and will tell you all that is on your mind.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> As for your donkeys that were lost three days ago, give no further thought to them, for they have been found. And on whom is all Israel's desire fixed, if not on you and on all your ancestral house?\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Saul answered, \"I am only a Benjaminite, from the least of the tribes of Israel, and my family is the humblest of all the families of the tribe of Benjamin. Why then have you spoken to me in this way?\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Then Samuel took Saul and his servant-boy and brought them into the hall, and gave them a place at the head of those who had been invited, of whom there were about thirty.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> And Samuel said to the cook, \"Bring the portion I gave you, the one I asked you to put aside.\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> The cook took up the thigh and what went with it and set them before Saul. Samuel said, \"See, what was kept is set before you. Eat; for it is set before you at the appointed time, so that you might eat with the guests.\" So Saul ate with Samuel that day. </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> When they came down from the shrine into the town, a bed was spread for Saul on the roof, and he lay down to sleep. </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Then at the break of dawn Samuel called to Saul upon the roof, \"Get up, so that I may send you on your way.\" Saul got up, and both he and Samuel went out into the street. </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> As they were going down to the outskirts of the town, Samuel said to Saul, \"Tell the boy to go on before us, and when he has passed on, stop here yourself for a while, that I may make known to you the word of God.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"10\">\r\n\t\t\t<VERS vnumber=\"1\"> Samuel took a vial of oil and poured it on his head, and kissed him; he said, \"The LORD has anointed you ruler over his people Israel. You shall reign over the people of the LORD and you will save them from the hand of their enemies all around. Now this shall be the sign to you that the LORD has anointed you ruler over his heritage: </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> When you depart from me today you will meet two men by Rachel's tomb in the territory of Benjamin at Zelzah; they will say to you, 'The donkeys that you went to seek are found, and now your father has stopped worrying about them and is worrying about you, saying: What shall I do about my son?'</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then you shall go on from there further and come to the oak of Tabor; three men going up to God at Bethel will meet you there, one carrying three kids, another carrying three loaves of bread, and another carrying a skin of wine.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> They will greet you and give you two loaves of bread, which you shall accept from them.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> After that you shall come to Gibeath-elohim, at the place where the Philistine garrison is; there, as you come to the town, you will meet a band of prophets coming down from the shrine with harp, tambourine, flute, and lyre playing in front of them; they will be in a prophetic frenzy. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then the spirit of the LORD will possess you, and you will be in a prophetic frenzy along with them and be turned into a different person.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Now when these signs meet you, do whatever you see fit to do, for God is with you.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And you shall go down to Gilgal ahead of me; then I will come down to you to present burnt offerings and offer sacrifices of well-being. Seven days you shall wait, until I come to you and show you what you shall do.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> As he turned away to leave Samuel, God gave him another heart; and all these signs were fulfilled that day.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> When they were going from there to Gibeah, a band of prophets met him; and the spirit of God possessed him, and he fell into a prophetic frenzy along with them.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> When all who knew him before saw how he prophesied with the prophets, the people said to one another, \"What has come over the son of Kish? Is Saul also among the prophets?\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> A man of the place answered, \"And who is their father?\" Therefore it became a proverb, \"Is Saul also among the prophets?\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> When his prophetic frenzy had ended, he went home. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Saul's uncle said to him and to the boy, \"Where did you go?\" And he replied, \"To seek the donkeys; and when we saw they were not to be found, we went to Samuel.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Saul's uncle said, \"Tell me what Samuel said to you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Saul said to his uncle, \"He told us that the donkeys had been found.\" But about the matter of the kingship, of which Samuel had spoken, he did not tell him anything.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Samuel summoned the people to the LORD at Mizpah</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> and said to them, \"Thus says the LORD, the God of Israel, 'I brought up Israel out of Egypt, and I rescued you from the hand of the Egyptians and from the hand of all the kingdoms that were oppressing you.' </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> But today you have rejected your God, who saves you from all your calamities and your distresses; and you have said, 'No! but set a king over us.' Now therefore present yourselves before the LORD by your tribes and by your clans.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Then Samuel brought all the tribes of Israel near, and the tribe of Benjamin was taken by lot.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> He brought the tribe of Benjamin near by its families, and the family of the Matrites was taken by lot. Finally he brought the family of the Matrites near man by man, and Saul the son of Kish was taken by lot. But when they sought him, he could not be found. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> So they inquired again of the LORD, \"Did the man come here?\" and the LORD said, \"See, he has hidden himself among the baggage.\" </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Then they ran and brought him from there. When he took his stand among the people, he was head and shoulders taller than any of them.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Samuel said to all the people, \"Do you see the one whom the LORD has chosen? There is no one like him among all the people.\" And all the people shouted, \"Long live the king!\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Samuel told the people the rights and duties of the kingship; and he wrote them in a book and laid it up before the LORD. Then Samuel sent all the people back to their homes.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Saul also went to his home at Gibeah, and with him went warriors whose hearts God had touched.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> But some worthless fellows said, \"How can this man save us?\" They despised him and brought him no present. But he held his peace. Now Nahash, king of the Ammonites, had been grievously oppressing the Gadites and the Reubenites. He would gouge out the right eye of each of them and would not grant Israel a deliverer. No one was left of the Israelites across the Jordan whose right eye Nahash, king of the Ammonites, had not gouged out. But there were seven thousand men who had escaped from the Ammonites and had entered Jabesh-gilead. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"11\">\r\n\t\t\t<VERS vnumber=\"1\"> About a month later, Nahash the Ammonite went up and besieged Jabesh-gilead; and all the men of Jabesh said to Nahash, \"Make a treaty with us, and we will serve you.\" </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> But Nahash the Ammonite said to them, \"On this condition I will make a treaty with you, namely that I gouge out everyone's right eye, and thus put disgrace upon all Israel.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The elders of Jabesh said to him, \"Give us seven days' respite that we may send messengers through all the territory of Israel. Then, if there is no one to save us, we will give ourselves up to you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> When the messengers came to Gibeah of Saul, they reported the matter in the hearing of the people; and all the people wept aloud.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Now Saul was coming from the field behind the oxen; and Saul said, \"What is the matter with the people, that they are weeping?\" So they told him the message from the inhabitants of Jabesh.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And the spirit of God came upon Saul in power when he heard these words, and his anger was greatly kindled.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> He took a yoke of oxen, and cut them in pieces and sent them throughout all the territory of Israel by messengers, saying, \"Whoever does not come out after Saul and Samuel, so shall it be done to his oxen!\" Then the dread of the LORD fell upon the people, and they came out as one.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> When he mustered them at Bezek, those from Israel were three hundred thousand, and those from Judah seventy thousand. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> They said to the messengers who had come, \"Thus shall you say to the inhabitants of Jabesh-gilead: 'Tomorrow, by the time the sun is hot, you shall have deliverance.'\" When the messengers came and told the inhabitants of Jabesh, they rejoiced.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> So the inhabitants of Jabesh said, \"Tomorrow we will give ourselves up to you, and you may do to us whatever seems good to you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The next day Saul put the people in three companies. At the morning watch they came into the camp and cut down the Ammonites until the heat of the day; and those who survived were scattered, so that no two of them were left together.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The people said to Samuel, \"Who is it that said, 'Shall Saul reign over us?' Give them to us so that we may put them to death.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> But Saul said, \"No one shall be put to death this day, for today the LORD has brought deliverance to Israel.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Samuel said to the people, \"Come, let us go to Gilgal and there renew the kingship.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> So all the people went to Gilgal, and there they made Saul king before the LORD in Gilgal. There they sacrificed offerings of well-being before the LORD, and there Saul and all the Israelites rejoiced greatly.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"12\">\r\n\t\t\t<VERS vnumber=\"1\"> Samuel said to all Israel, \"I have listened to you in all that you have said to me, and have set a king over you.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> See, it is the king who leads you now; I am old and gray, but my sons are with you. I have led you from my youth until this day.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Here I am; testify against me before the LORD and before his anointed. Whose ox have I taken? Or whose donkey have I taken? Or whom have I defrauded? Whom have I oppressed? Or from whose hand have I taken a bribe to blind my eyes with it? Testify against me and I will restore it to you.\" </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> They said, \"You have not defrauded us or oppressed us or taken anything from the hand of anyone.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> He said to them, \"The LORD is witness against you, and his anointed is witness this day, that you have not found anything in my hand.\" And they said, \"He is witness.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Samuel said to the people, \"The LORD is witness, who appointed Moses and Aaron and brought your ancestors up out of the land of Egypt. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Now therefore take your stand, so that I may enter into judgment with you before the LORD, and I will declare to you all the saving deeds of the LORD that he performed for you and for your ancestors. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> When Jacob went into Egypt and the Egyptians oppressed them, then your ancestors cried to the LORD and the LORD sent Moses and Aaron, who brought forth your ancestors out of Egypt, and settled them in this place. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> But they forgot the LORD their God; and he sold them into the hand of Sisera, commander of the army of King Jabin of Hazor, and into the hand of the Philistines, and into the hand of the king of Moab; and they fought against them. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then they cried to the LORD, and said, 'We have sinned, because we have forsaken the LORD, and have served the Baals and the Astartes; but now rescue us out of the hand of our enemies, and we will serve you.'</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> And the LORD sent Jerubbaal and Barak, and Jephthah, and Samson, and rescued you out of the hand of your enemies on every side; and you lived in safety. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> But when you saw that King Nahash of the Ammonites came against you, you said to me, 'No, but a king shall reign over us,' though the LORD your God was your king.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> See, here is the king whom you have chosen, for whom you have asked; see, the LORD has set a king over you.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> If you will fear the LORD and serve him and heed his voice and not rebel against the commandment of the LORD, and if both you and the king who reigns over you will follow the LORD your God, it will be well;</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> but if you will not heed the voice of the LORD, but rebel against the commandment of the LORD, then the hand of the LORD will be against you and your king. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Now therefore take your stand and see this great thing that the LORD will do before your eyes.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Is it not the wheat harvest today? I will call upon the LORD, that he may send thunder and rain; and you shall know and see that the wickedness that you have done in the sight of the LORD is great in demanding a king for yourselves.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> So Samuel called upon the LORD, and the LORD sent thunder and rain that day; and all the people greatly feared the LORD and Samuel.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> All the people said to Samuel, \"Pray to the LORD your God for your servants, so that we may not die; for we have added to all our sins the evil of demanding a king for ourselves.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> And Samuel said to the people, \"Do not be afraid; you have done all this evil, yet do not turn aside from following the LORD, but serve the LORD with all your heart;</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> and do not turn aside after useless things that cannot profit or save, for they are useless.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> For the LORD will not cast away his people, for his great name's sake, because it has pleased the LORD to make you a people for himself.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Moreover as for me, far be it from me that I should sin against the LORD by ceasing to pray for you; and I will instruct you in the good and the right way.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Only fear the LORD, and serve him faithfully with all your heart; for consider what great things he has done for you.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> But if you still do wickedly, you shall be swept away, both you and your king.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"13\">\r\n\t\t\t<VERS vnumber=\"1\"> Saul was... years old when he began to reign; and he reigned... and two years over Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Saul chose three thousand out of Israel; two thousand were with Saul in Michmash and the hill country of Bethel, and a thousand were with Jonathan in Gibeah of Benjamin; the rest of the people he sent home to their tents.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Jonathan defeated the garrison of the Philistines that was at Geba; and the Philistines heard of it. And Saul blew the trumpet throughout all the land, saying, \"Let the Hebrews hear!\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> When all Israel heard that Saul had defeated the garrison of the Philistines, and also that Israel had become odious to the Philistines, the people were called out to join Saul at Gilgal.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The Philistines mustered to fight with Israel, thirty thousand chariots, and six thousand horsemen, and troops like the sand on the seashore in multitude; they came up and encamped at Michmash, to the east of Beth-aven.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> When the Israelites saw that they were in distress (for the troops were hard pressed), the people hid themselves in caves and in holes and in rocks and in tombs and in cisterns.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Some Hebrews crossed the Jordan to the land of Gad and Gilead. Saul was still at Gilgal, and all the people followed him trembling.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> He waited seven days, the time appointed by Samuel; but Samuel did not come to Gilgal, and the people began to slip away from Saul. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> So Saul said, \"Bring the burnt offering here to me, and the offerings of well-being.\" And he offered the burnt offering.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> As soon as he had finished offering the burnt offering, Samuel arrived; and Saul went out to meet him and salute him.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Samuel said, \"What have you done?\" Saul replied, \"When I saw that the people were slipping away from me, and that you did not come within the days appointed, and that the Philistines were mustering at Michmash,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> I said, 'Now the Philistines will come down upon me at Gilgal, and I have not entreated the favor of the LORD'; so I forced myself, and offered the burnt offering.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Samuel said to Saul, \"You have done foolishly; you have not kept the commandment of the LORD your God, which he commanded you. The LORD would have established your kingdom over Israel forever,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> but now your kingdom will not continue; the LORD has sought out a man after his own heart; and the LORD has appointed him to be ruler over his people, because you have not kept what the LORD commanded you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And Samuel left and went on his way from Gilgal. The rest of the people followed Saul to join the army; they went up from Gilgal toward Gibeah of Benjamin. Saul counted the people who were present with him, about six hundred men.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Saul, his son Jonathan, and the people who were present with them stayed in Geba of Benjamin; but the Philistines encamped at Michmash.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> And raiders came out of the camp of the Philistines in three companies; one company turned toward Ophrah, to the land of Shual,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> another company turned toward Beth-horon, and another company turned toward the mountain that looks down upon the valley of Zeboim toward the wilderness. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Now there was no smith to be found throughout all the land of Israel; for the Philistines said, \"The Hebrews must not make swords or spears for themselves\";</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> so all the Israelites went down to the Philistines to sharpen their plowshare, mattocks, axes, or sickles; </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> The charge was two-thirds of a shekel for the plowshares and for the mattocks, and one-third of a shekel for sharpening the axes and for setting the goads. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> So on the day of the battle neither sword nor spear was to be found in the possession of any of the people with Saul and Jonathan; but Saul and his son Jonathan had them.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Now a garrison of the Philistines had gone out to the pass of Michmash.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"14\">\r\n\t\t\t<VERS vnumber=\"1\"> One day Jonathan son of Saul said to the young man who carried his armor, \"Come, let us go over to the Philistine garrison on the other side.\" But he did not tell his father.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Saul was staying in the outskirts of Gibeah under the pomegranate tree that is at Migron; the troops that were with him were about six hundred men,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> along with Ahijah son of Ahitub, Ichabod's brother, son of Phinehas son of Eli, the priest of the LORD in Shiloh, carrying an ephod. Now the people did not know that Jonathan had gone.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> In the pass, by which Jonathan tried to go over to the Philistine garrison, there was a rocky crag on one side and a rocky crag on the other; the name of the one was Bozez, and the name of the other Seneh. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> One crag rose on the north in front of Michmash, and the other on the south in front of Geba.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Jonathan said to the young man who carried his armor, \"Come, let us go over to the garrison of these uncircumcised; it may be that the LORD will act for us; for nothing can hinder the LORD from saving by many or by few.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> His armor-bearer said to him, \"Do all that your mind inclines to. I am with you; as your mind is, so is mine.\" </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then Jonathan said, \"Now we will cross over to those men and will show ourselves to them.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> If they say to us, 'Wait until we come to you,' then we will stand still in our place, and we will not go up to them.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> But if they say, 'Come up to us,' then we will go up; for the LORD has given them into our hand. That will be the sign for us.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> So both of them showed themselves to the garrison of the Philistines; and the Philistines said, \"Look, Hebrews are coming out of the holes where they have hidden themselves.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The men of the garrison hailed Jonathan and his armor-bearer, saying, \"Come up to us, and we will show you something.\" Jonathan said to his armor-bearer, \"Come up after me; for the LORD has given them into the hand of Israel.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then Jonathan climbed up on his hands and feet, with his armor-bearer following after him. The Philistines fell before Jonathan, and his armor-bearer, coming after him, killed them. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> In that first slaughter Jonathan and his armor-bearer killed about twenty men within an area about half a furrow long in an acre of land. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> There was a panic in the camp, in the field, and among all the people; the garrison and even the raiders trembled; the earth quaked; and it became a very great panic.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Saul's lookouts in Gibeah of Benjamin were watching as the multitude was surging back and forth. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then Saul said to the troops that were with him, \"Call the roll and see who has gone from us.\" When they had called the roll, Jonathan and his armor-bearer were not there.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Saul said to Ahijah, \"Bring the ark of God here.\" For at that time the ark of God went with the Israelites. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> While Saul was talking to the priest, the tumult in the camp of the Philistines increased more and more; and Saul said to the priest, \"Withdraw your hand.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Then Saul and all the people who were with him rallied and went into the battle; and every sword was against the other, so that there was very great confusion.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Now the Hebrews who previously had been with the Philistines and had gone up with them into the camp turned and joined the Israelites who were with Saul and Jonathan.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Likewise, when all the Israelites who had gone into hiding in the hill country of Ephraim heard that the Philistines were fleeing, they too followed closely after them in the battle.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> So the LORD gave Israel the victory that day. The battle passed beyond Beth-aven, and the troops with Saul numbered altogether about ten thousand men. The battle spread out over the hill country of Ephraim.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Now Saul committed a very rash act on that day. He had laid an oath on the troops, saying, \"Cursed be anyone who eats food before it is evening and I have been avenged on my enemies.\" So none of the troops tasted food. </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> All the troops came upon a honeycomb; and there was honey on the ground. </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> When the troops came upon the honeycomb, the honey was dripping out; but they did not put their hands to their mouths, for they feared the oath.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> But Jonathan had not heard his father charge the troops with the oath; so he extended the staff that was in his hand, and dipped the tip of it in the honeycomb, and put his hand to his mouth; and his eyes brightened.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Then one of the soldiers said, \"Your father strictly charged the troops with an oath, saying, 'Cursed be anyone who eats food this day.' And so the troops are faint.\"</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Then Jonathan said, \"My father has troubled the land; see how my eyes have brightened because I tasted a little of this honey.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> How much better if today the troops had eaten freely of the spoil taken from their enemies; for now the slaughter among the Philistines has not been great.\"</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> After they had struck down the Philistines that day from Michmash to Aijalon, the troops were very faint;</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> so the troops flew upon the spoil, and took sheep and oxen and calves, and slaughtered them on the ground; and the troops ate them with the blood.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Then it was reported to Saul, \"Look, the troops are sinning against the LORD by eating with the blood.\" And he said, \"You have dealt treacherously; roll a large stone before me here.\" </VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Saul said, \"Disperse yourselves among the troops, and say to them, 'Let all bring their oxen or their sheep, and slaughter them here, and eat; and do not sin against the LORD by eating with the blood.'\" So all of the troops brought their oxen with them that night, and slaughtered them there.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> And Saul built an altar to the LORD; it was the first altar that he built to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Then Saul said, \"Let us go down after the Philistines by night and despoil them until the morning light; let us not leave one of them.\" They said, \"Do whatever seems good to you.\" But the priest said, \"Let us draw near to God here.\"</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> So Saul inquired of God, \"Shall I go down after the Philistines? Will you give them into the hand of Israel?\" But he did not answer him that day.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Saul said, \"Come here, all you leaders of the people; and let us find out how this sin has arisen today.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> For as the LORD lives who saves Israel, even if it is in my son Jonathan, he shall surely die!\" But there was no one among all the people who answered him.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> He said to all Israel, \"You shall be on one side, and I and my son Jonathan will be on the other side.\" The people said to Saul, \"Do what seems good to you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> Then Saul said, \"O LORD God of Israel, why have you not answered your servant today? If this guilt is in me or in my son Jonathan, O LORD God of Israel, give Urim; but if this guilt is in your people Israel, give Thummim.\" And Jonathan and Saul were indicated by the lot, but the people were cleared. </VERS>\r\n\t\t\t<VERS vnumber=\"42\"> Then Saul said, \"Cast the lot between me and my son Jonathan.\" And Jonathan was taken.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> Then Saul said to Jonathan, \"Tell me what you have done.\" Jonathan told him, \"I tasted a little honey with the tip of the staff that was in my hand; here I am, I will die.\"</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> Saul said, \"God do so to me and more also; you shall surely die, Jonathan!\"</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> Then the people said to Saul, \"Shall Jonathan die, who has accomplished this great victory in Israel? Far from it! As the LORD lives, not one hair of his head shall fall to the ground; for he has worked with God today.\" So the people ransomed Jonathan, and he did not die.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> Then Saul withdrew from pursuing the Philistines; and the Philistines went to their own place.</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> When Saul had taken the kingship over Israel, he fought against all his enemies on every side-- against Moab, against the Ammonites, against Edom, against the kings of Zobah, and against the Philistines; wherever he turned he routed them.</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> He did valiantly, and struck down the Amalekites, and rescued Israel out of the hands of those who plundered them.</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> Now the sons of Saul were Jonathan, Ishvi, and Malchishua; and the names of his two daughters were these: the name of the firstborn was Merab, and the name of the younger, Michal.</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> The name of Saul's wife was Ahinoam daughter of Ahimaaz. And the name of the commander of his army was Abner son of Ner, Saul's uncle;</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> Kish was the father of Saul, and Ner the father of Abner was the son of Abiel.</VERS>\r\n\t\t\t<VERS vnumber=\"52\"> There was hard fighting against the Philistines all the days of Saul; and when Saul saw any strong or valiant warrior, he took him into his service.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"15\">\r\n\t\t\t<VERS vnumber=\"1\"> Samuel said to Saul, \"The LORD sent me to anoint you king over his people Israel; now therefore listen to the words of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Thus says the LORD of hosts, 'I will punish the Amalekites for what they did in opposing the Israelites when they came up out of Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Now go and attack Amalek, and utterly destroy all that they have; do not spare them, but kill both man and woman, child and infant, ox and sheep, camel and donkey.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> So Saul summoned the people, and numbered them in Telaim, two hundred thousand foot soldiers, and ten thousand soldiers of Judah.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Saul came to the city of the Amalekites and lay in wait in the valley.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Saul said to the Kenites, \"Go! Leave! Withdraw from among the Amalekites, or I will destroy you with them; for you showed kindness to all the people of Israel when they came up out of Egypt.\" So the Kenites withdrew from the Amalekites.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Saul defeated the Amalekites, from Havilah as far as Shur, which is east of Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> He took King Agag of the Amalekites alive, but utterly destroyed all the people with the edge of the sword.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Saul and the people spared Agag, and the best of the sheep and of the cattle and of the fatlings, and the lambs, and all that was valuable, and would not utterly destroy them; all that was despised and worthless they utterly destroyed.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The word of the LORD came to Samuel:</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> \"I regret that I made Saul king, for he has turned back from following me, and has not carried out my commands.\" Samuel was angry; and he cried out to the LORD all night.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Samuel rose early in the morning to meet Saul, and Samuel was told, \"Saul went to Carmel, where he set up a monument for himself, and on returning he passed on down to Gilgal.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> When Samuel came to Saul, Saul said to him, \"May you be blessed by the LORD; I have carried out the command of the LORD.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But Samuel said, \"What then is this bleating of sheep in my ears, and the lowing of cattle that I hear?\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Saul said, \"They have brought them from the Amalekites; for the people spared the best of the sheep and the cattle, to sacrifice to the LORD your God; but the rest we have utterly destroyed.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then Samuel said to Saul, \"Stop! I will tell you what the LORD said to me last night.\" He replied, \"Speak.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Samuel said, \"Though you are little in your own eyes, are you not the head of the tribes of Israel? The LORD anointed you king over Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> And the LORD sent you on a mission, and said, 'Go, utterly destroy the sinners, the Amalekites, and fight against them until they are consumed.'</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Why then did you not obey the voice of the LORD? Why did you swoop down on the spoil, and do what was evil in the sight of the LORD?\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Saul said to Samuel, \"I have obeyed the voice of the LORD, I have gone on the mission on which the LORD sent me, I have brought Agag the king of Amalek, and I have utterly destroyed the Amalekites.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> But from the spoil the people took sheep and cattle, the best of the things devoted to destruction, to sacrifice to the LORD your God in Gilgal.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> And Samuel said, \"Has the LORD as great delight in burnt offerings and sacrifices, as in obeying the voice of the LORD? Surely, to obey is better than sacrifice, and to heed than the fat of rams.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> For rebellion is no less a sin than divination, and stubbornness is like iniquity and idolatry. Because you have rejected the word of the LORD, he has also rejected you from being king.\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Saul said to Samuel, \"I have sinned; for I have transgressed the commandment of the LORD and your words, because I feared the people and obeyed their voice.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Now therefore, I pray, pardon my sin, and return with me, so that I may worship the LORD.\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Samuel said to Saul, \"I will not return with you; for you have rejected the word of the LORD, and the LORD has rejected you from being king over Israel.\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> As Samuel turned to go away, Saul caught hold of the hem of his robe, and it tore.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> And Samuel said to him, \"The LORD has torn the kingdom of Israel from you this very day, and has given it to a neighbor of yours, who is better than you.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Moreover the Glory of Israel will not recant or change his mind; for he is not a mortal, that he should change his mind.\" </VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Then Saul said, \"I have sinned; yet honor me now before the elders of my people and before Israel, and return with me, so that I may worship the LORD your God.\" </VERS>\r\n\t\t\t<VERS vnumber=\"31\"> So Samuel turned back after Saul; and Saul worshiped the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Then Samuel said, \"Bring Agag king of the Amalekites here to me.\" And Agag came to him haltingly. Agag said, \"Surely this is the bitterness of death.\" </VERS>\r\n\t\t\t<VERS vnumber=\"33\"> But Samuel said, \"As your sword has made women childless, so your mother shall be childless among women.\" And Samuel hewed Agag in pieces before the LORD in Gilgal.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Then Samuel went to Ramah; and Saul went up to his house in Gibeah of Saul.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Samuel did not see Saul again until the day of his death, but Samuel grieved over Saul. And the LORD was sorry that he had made Saul king over Israel.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"16\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD said to Samuel, \"How long will you grieve over Saul? I have rejected him from being king over Israel. Fill your horn with oil and set out; I will send you to Jesse the Bethlehemite, for I have provided for myself a king among his sons.\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Samuel said, \"How can I go? If Saul hears of it, he will kill me.\" And the LORD said, \"Take a heifer with you, and say, 'I have come to sacrifice to the LORD.'</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Invite Jesse to the sacrifice, and I will show you what you shall do; and you shall anoint for me the one whom I name to you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Samuel did what the LORD commanded, and came to Bethlehem. The elders of the city came to meet him trembling, and said, \"Do you come peaceably?\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> He said, \"Peaceably; I have come to sacrifice to the LORD; sanctify yourselves and come with me to the sacrifice.\" And he sanctified Jesse and his sons and invited them to the sacrifice.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> When they came, he looked on Eliab and thought, \"Surely the LORD's anointed is now before the LORD.\" </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But the LORD said to Samuel, \"Do not look on his appearance or on the height of his stature, because I have rejected him; for the LORD does not see as mortals see; they look on the outward appearance, but the LORD looks on the heart.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then Jesse called Abinadab, and made him pass before Samuel. He said, \"Neither has the LORD chosen this one.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then Jesse made Shammah pass by. And he said, \"Neither has the LORD chosen this one.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Jesse made seven of his sons pass before Samuel, and Samuel said to Jesse, \"The LORD has not chosen any of these.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Samuel said to Jesse, \"Are all your sons here?\" And he said, \"There remains yet the youngest, but he is keeping the sheep.\" And Samuel said to Jesse, \"Send and bring him; for we will not sit down until he comes here.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> He sent and brought him in. Now he was ruddy, and had beautiful eyes, and was handsome. The LORD said, \"Rise and anoint him; for this is the one.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then Samuel took the horn of oil, and anointed him in the presence of his brothers; and the spirit of the LORD came mightily upon David from that day forward. Samuel then set out and went to Ramah.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Now the spirit of the LORD departed from Saul, and an evil spirit from the LORD tormented him.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And Saul's servants said to him, \"See now, an evil spirit from God is tormenting you.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Let our lord now command the servants who attend you to look for someone who is skillful in playing the lyre; and when the evil spirit from God is upon you, he will play it, and you will feel better.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> So Saul said to his servants, \"Provide for me someone who can play well, and bring him to me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> One of the young men answered, \"I have seen a son of Jesse the Bethlehemite who is skillful in playing, a man of valor, a warrior, prudent in speech, and a man of good presence; and the LORD is with him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> So Saul sent messengers to Jesse, and said, \"Send me your son David who is with the sheep.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Jesse took a donkey loaded with bread, a skin of wine, and a kid, and sent them by his son David to Saul.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> And David came to Saul, and entered his service. Saul loved him greatly, and he became his armor-bearer.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Saul sent to Jesse, saying, \"Let David remain in my service, for he has found favor in my sight.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> And whenever the evil spirit from God came upon Saul, David took the lyre and played it with his hand, and Saul would be relieved and feel better, and the evil spirit would depart from him.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"17\">\r\n\t\t\t<VERS vnumber=\"1\"> Now the Philistines gathered their armies for battle; they were gathered at Socoh, which belongs to Judah, and encamped between Socoh and Azekah, in Ephes-dammim.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Saul and the Israelites gathered and encamped in the valley of Elah, and formed ranks against the Philistines.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The Philistines stood on the mountain on the one side, and Israel stood on the mountain on the other side, with a valley between them.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> And there came out from the camp of the Philistines a champion named Goliath, of Gath, whose height was six cubits and a span. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> He had a helmet of bronze on his head, and he was armed with a coat of mail; the weight of the coat was five thousand shekels of bronze.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> He had greaves of bronze on his legs and a javelin of bronze slung between his shoulders.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The shaft of his spear was like a weaver's beam, and his spear's head weighed six hundred shekels of iron; and his shield-bearer went before him.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> He stood and shouted to the ranks of Israel, \"Why have you come out to draw up for battle? Am I not a Philistine, and are you not servants of Saul? Choose a man for yourselves, and let him come down to me.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> If he is able to fight with me and kill me, then we will be your servants; but if I prevail against him and kill him, then you shall be our servants and serve us.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And the Philistine said, \"Today I defy the ranks of Israel! Give me a man, that we may fight together.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> When Saul and all Israel heard these words of the Philistine, they were dismayed and greatly afraid.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Now David was the son of an Ephrathite of Bethlehem in Judah, named Jesse, who had eight sons. In the days of Saul the man was already old and advanced in years.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The three eldest sons of Jesse had followed Saul to the battle; the names of his three sons who went to the battle were Eliab the firstborn, and next to him Abinadab, and the third Shammah.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> David was the youngest; the three eldest followed Saul,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> but David went back and forth from Saul to feed his father's sheep at Bethlehem.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> For forty days the Philistine came forward and took his stand, morning and evening.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Jesse said to his son David, \"Take for your brothers an ephah of this parched grain and these ten loaves, and carry them quickly to the camp to your brothers;</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> also take these ten cheeses to the commander of their thousand. See how your brothers fare, and bring some token from them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Now Saul, and they, and all the men of Israel, were in the valley of Elah, fighting with the Philistines.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> David rose early in the morning, left the sheep with a keeper, took the provisions, and went as Jesse had commanded him. He came to the encampment as the army was going forth to the battle line, shouting the war cry.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Israel and the Philistines drew up for battle, army against army.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> David left the things in charge of the keeper of the baggage, ran to the ranks, and went and greeted his brothers.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> As he talked with them, the champion, the Philistine of Gath, Goliath by name, came up out of the ranks of the Philistines, and spoke the same words as before. And David heard him.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> All the Israelites, when they saw the man, fled from him and were very much afraid.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> The Israelites said, \"Have you seen this man who has come up? Surely he has come up to defy Israel. The king will greatly enrich the man who kills him, and will give him his daughter and make his family free in Israel.\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> David said to the men who stood by him, \"What shall be done for the man who kills this Philistine, and takes away the reproach from Israel? For who is this uncircumcised Philistine that he should defy the armies of the living God?\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> The people answered him in the same way, \"So shall it be done for the man who kills him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> His eldest brother Eliab heard him talking to the men; and Eliab's anger was kindled against David. He said, \"Why have you come down? With whom have you left those few sheep in the wilderness? I know your presumption and the evil of your heart; for you have come down just to see the battle.\"</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> David said, \"What have I done now? It was only a question.\"</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> He turned away from him toward another and spoke in the same way; and the people answered him again as before.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> When the words that David spoke were heard, they repeated them before Saul; and he sent for him.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> David said to Saul, \"Let no one's heart fail because of him; your servant will go and fight with this Philistine.\"</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Saul said to David, \"You are not able to go against this Philistine to fight with him; for you are just a boy, and he has been a warrior from his youth.\"</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> But David said to Saul, \"Your servant used to keep sheep for his father; and whenever a lion or a bear came, and took a lamb from the flock,</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> I went after it and struck it down, rescuing the lamb from its mouth; and if it turned against me, I would catch it by the jaw, strike it down, and kill it.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Your servant has killed both lions and bears; and this uncircumcised Philistine shall be like one of them, since he has defied the armies of the living God.\"</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> David said, \"The LORD, who saved me from the paw of the lion and from the paw of the bear, will save me from the hand of this Philistine.\" So Saul said to David, \"Go, and may the LORD be with you!\"</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Saul clothed David with his armor; he put a bronze helmet on his head and clothed him with a coat of mail.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> David strapped Saul's sword over the armor, and he tried in vain to walk, for he was not used to them. Then David said to Saul, \"I cannot walk with these; for I am not used to them.\" So David removed them.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> Then he took his staff in his hand, and chose five smooth stones from the wadi, and put them in his shepherd's bag, in the pouch; his sling was in his hand, and he drew near to the Philistine.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> The Philistine came on and drew near to David, with his shield-bearer in front of him.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> When the Philistine looked and saw David, he disdained him, for he was only a youth, ruddy and handsome in appearance.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> The Philistine said to David, \"Am I a dog, that you come to me with sticks?\" And the Philistine cursed David by his gods.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> The Philistine said to David, \"Come to me, and I will give your flesh to the birds of the air and to the wild animals of the field.\"</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> But David said to the Philistine, \"You come to me with sword and spear and javelin; but I come to you in the name of the LORD of hosts, the God of the armies of Israel, whom you have defied.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> This very day the LORD will deliver you into my hand, and I will strike you down and cut off your head; and I will give the dead bodies of the Philistine army this very day to the birds of the air and to the wild animals of the earth, so that all the earth may know that there is a God in Israel,</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> and that all this assembly may know that the LORD does not save by sword and spear; for the battle is the LORD's and he will give you into our hand.\"</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> When the Philistine drew nearer to meet David, David ran quickly toward the battle line to meet the Philistine.</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> David put his hand in his bag, took out a stone, slung it, and struck the Philistine on his forehead; the stone sank into his forehead, and he fell face down on the ground.</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> So David prevailed over the Philistine with a sling and a stone, striking down the Philistine and killing him; there was no sword in David's hand.</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> Then David ran and stood over the Philistine; he grasped his sword, drew it out of its sheath, and killed him; then he cut off his head with it. When the Philistines saw that their champion was dead, they fled.</VERS>\r\n\t\t\t<VERS vnumber=\"52\"> The troops of Israel and Judah rose up with a shout and pursued the Philistines as far as Gath and the gates of Ekron, so that the wounded Philistines fell on the way from Shaaraim as far as Gath and Ekron. </VERS>\r\n\t\t\t<VERS vnumber=\"53\"> The Israelites came back from chasing the Philistines, and they plundered their camp.</VERS>\r\n\t\t\t<VERS vnumber=\"54\"> David took the head of the Philistine and brought it to Jerusalem; but he put his armor in his tent.</VERS>\r\n\t\t\t<VERS vnumber=\"55\"> When Saul saw David go out against the Philistine, he said to Abner, the commander of the army, \"Abner, whose son is this young man?\" Abner said, \"As your soul lives, O king, I do not know.\"</VERS>\r\n\t\t\t<VERS vnumber=\"56\"> The king said, \"Inquire whose son the stripling is.\"</VERS>\r\n\t\t\t<VERS vnumber=\"57\"> On David's return from killing the Philistine, Abner took him and brought him before Saul, with the head of the Philistine in his hand.</VERS>\r\n\t\t\t<VERS vnumber=\"58\"> Saul said to him, \"Whose son are you, young man?\" And David answered, \"I am the son of your servant Jesse the Bethlehemite.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"18\">\r\n\t\t\t<VERS vnumber=\"1\"> When David had finished speaking to Saul, the soul of Jonathan was bound to the soul of David, and Jonathan loved him as his own soul. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Saul took him that day and would not let him return to his father's house.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then Jonathan made a covenant with David, because he loved him as his own soul.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Jonathan stripped himself of the robe that he was wearing, and gave it to David, and his armor, and even his sword and his bow and his belt.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> David went out and was successful wherever Saul sent him; as a result, Saul set him over the army. And all the people, even the servants of Saul, approved.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> As they were coming home, when David returned from killing the Philistine, the women came out of all the towns of Israel, singing and dancing, to meet King Saul, with tambourines, with songs of joy, and with musical instruments. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> And the women sang to one another as they made merry, \"Saul has killed his thousands, and David his ten thousands.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Saul was very angry, for this saying displeased him. He said, \"They have ascribed to David ten thousands, and to me they have ascribed thousands; what more can he have but the kingdom?\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> So Saul eyed David from that day on.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The next day an evil spirit from God rushed upon Saul, and he raved within his house, while David was playing the lyre, as he did day by day. Saul had his spear in his hand;</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> and Saul threw the spear, for he thought, \"I will pin David to the wall.\" But David eluded him twice.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Saul was afraid of David, because the LORD was with him but had departed from Saul.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> So Saul removed him from his presence, and made him a commander of a thousand; and David marched out and came in, leading the army.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> David had success in all his undertakings; for the LORD was with him.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> When Saul saw that he had great success, he stood in awe of him.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> But all Israel and Judah loved David; for it was he who marched out and came in leading them.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then Saul said to David, \"Here is my elder daughter Merab; I will give her to you as a wife; only be valiant for me and fight the LORD's battles.\" For Saul thought, \"I will not raise a hand against him; let the Philistines deal with him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> David said to Saul, \"Who am I and who are my kinsfolk, my father's family in Israel, that I should be son-in-law to the king?\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> But at the time when Saul's daughter Merab should have been given to David, she was given to Adriel the Meholathite as a wife.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Now Saul's daughter Michal loved David. Saul was told, and the thing pleased him.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Saul thought, \"Let me give her to him that she may be a snare for him and that the hand of the Philistines may be against him.\" Therefore Saul said to David a second time, \"You shall now be my son-in-law.\" </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Saul commanded his servants, \"Speak to David in private and say, 'See, the king is delighted with you, and all his servants love you; now then, become the king's son-in-law.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> So Saul's servants reported these words to David in private. And David said, \"Does it seem to you a little thing to become the king's son-in-law, seeing that I am a poor man and of no repute?\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> The servants of Saul told him, \"This is what David said.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Then Saul said, \"Thus shall you say to David, 'The king desires no marriage present except a hundred foreskins of the Philistines, that he may be avenged on the king's enemies.'\" Now Saul planned to make David fall by the hand of the Philistines.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> When his servants told David these words, David was well pleased to be the king's son-in-law. Before the time had expired,</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> David rose and went, along with his men, and killed one hundred of the Philistines; and David brought their foreskins, which were given in full number to the king, that he might become the king's son-in-law. Saul gave him his daughter Michal as a wife. </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> But when Saul realized that the LORD was with David, and that Saul's daughter Michal loved him,</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Saul was still more afraid of David. So Saul was David's enemy from that time forward.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Then the commanders of the Philistines came out to battle; and as often as they came out, David had more success than all the servants of Saul, so that his fame became very great.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"19\">\r\n\t\t\t<VERS vnumber=\"1\"> Saul spoke with his son Jonathan and with all his servants about killing David. But Saul's son Jonathan took great delight in David.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Jonathan told David, \"My father Saul is trying to kill you; therefore be on guard tomorrow morning; stay in a secret place and hide yourself.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> I will go out and stand beside my father in the field where you are, and I will speak to my father about you; if I learn anything I will tell you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Jonathan spoke well of David to his father Saul, saying to him, \"The king should not sin against his servant David, because he has not sinned against you, and because his deeds have been of good service to you;</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> for he took his life in his hand when he attacked the Philistine, and the LORD brought about a great victory for all Israel. You saw it, and rejoiced; why then will you sin against an innocent person by killing David without cause?\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Saul heeded the voice of Jonathan; Saul swore, \"As the LORD lives, he shall not be put to death.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> So Jonathan called David and related all these things to him. Jonathan then brought David to Saul, and he was in his presence as before.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Again there was war, and David went out to fight the Philistines. He launched a heavy attack on them, so that they fled before him.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then an evil spirit from the LORD came upon Saul, as he sat in his house with his spear in his hand, while David was playing music.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Saul sought to pin David to the wall with the spear; but he eluded Saul, so that he struck the spear into the wall. David fled and escaped that night.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Saul sent messengers to David's house to keep watch over him, planning to kill him in the morning. David's wife Michal told him, \"If you do not save your life tonight, tomorrow you will be killed.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> So Michal let David down through the window; he fled away and escaped.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Michal took an idol and laid it on the bed; she put a net of goats' hair on its head, and covered it with the clothes. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> When Saul sent messengers to take David, she said, \"He is sick.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Then Saul sent the messengers to see David for themselves. He said, \"Bring him up to me in the bed, that I may kill him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> When the messengers came in, the idol was in the bed, with the covering of goats' hair on its head. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Saul said to Michal, \"Why have you deceived me like this, and let my enemy go, so that he has escaped?\" Michal answered Saul, \"He said to me, 'Let me go; why should I kill you?'\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Now David fled and escaped; he came to Samuel at Ramah, and told him all that Saul had done to him. He and Samuel went and settled at Naioth.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Saul was told, \"David is at Naioth in Ramah.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Then Saul sent messengers to take David. When they saw the company of the prophets in a frenzy, with Samuel standing in charge of them, the spirit of God came upon the messengers of Saul, and they also fell into a prophetic frenzy.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> When Saul was told, he sent other messengers, and they also fell into a frenzy. Saul sent messengers again the third time, and they also fell into a frenzy.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Then he himself went to Ramah. He came to the great well that is in Secu; he asked, \"Where are Samuel and David?\" And someone said, \"They are at Naioth in Ramah.\" </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> He went there, toward Naioth in Ramah; and the spirit of God came upon him. As he was going, he fell into a prophetic frenzy, until he came to Naioth in Ramah.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> He too stripped off his clothes, and he too fell into a frenzy before Samuel. He lay naked all that day and all that night. Therefore it is said, \"Is Saul also among the prophets?\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"20\">\r\n\t\t\t<VERS vnumber=\"1\"> David fled from Naioth in Ramah. He came before Jonathan and said, \"What have I done? What is my guilt? And what is my sin against your father that he is trying to take my life?\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He said to him, \"Far from it! You shall not die. My father does nothing either great or small without disclosing it to me; and why should my father hide this from me? Never!\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> But David also swore, \"Your father knows well that you like me; and he thinks, 'Do not let Jonathan know this, or he will be grieved.' But truly, as the LORD lives and as you yourself live, there is but a step between me and death.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then Jonathan said to David, \"Whatever you say, I will do for you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> David said to Jonathan, \"Tomorrow is the new moon, and I should not fail to sit with the king at the meal; but let me go, so that I may hide in the field until the third evening.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> If your father misses me at all, then say, 'David earnestly asked leave of me to run to Bethlehem his city; for there is a yearly sacrifice there for all the family.'</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> If he says, 'Good!' it will be well with your servant; but if he is angry, then know that evil has been determined by him.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Therefore deal kindly with your servant, for you have brought your servant into a sacred covenant with you. But if there is guilt in me, kill me yourself; why should you bring me to your father?\" </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Jonathan said, \"Far be it from you! If I knew that it was decided by my father that evil should come upon you, would I not tell you?\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then David said to Jonathan, \"Who will tell me if your father answers you harshly?\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Jonathan replied to David, \"Come, let us go out into the field.\" So they both went out into the field.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Jonathan said to David, \"By the LORD, the God of Israel! When I have sounded out my father, about this time tomorrow, or on the third day, if he is well disposed toward David, shall I not then send and disclose it to you?</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> But if my father intends to do you harm, the LORD do so to Jonathan, and more also, if I do not disclose it to you, and send you away, so that you may go in safety. May the LORD be with you, as he has been with my father.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> If I am still alive, show me the faithful love of the LORD; but if I die, </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> never cut off your faithful love from my house, even if the LORD were to cut off every one of the enemies of David from the face of the earth.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Thus Jonathan made a covenant with the house of David, saying, \"May the LORD seek out the enemies of David.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Jonathan made David swear again by his love for him; for he loved him as he loved his own life.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Jonathan said to him, \"Tomorrow is the new moon; you will be missed, because your place will be empty.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> On the day after tomorrow, you shall go a long way down; go to the place where you hid yourself earlier, and remain beside the stone there.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> I will shoot three arrows to the side of it, as though I shot at a mark.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then I will send the boy, saying, 'Go, find the arrows.' If I say to the boy, 'Look, the arrows are on this side of you, collect them,' then you are to come, for, as the LORD lives, it is safe for you and there is no danger.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> But if I say to the young man, 'Look, the arrows are beyond you,' then go; for the LORD has sent you away.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> As for the matter about which you and I have spoken, the LORD is witness between you and me forever.\" </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> So David hid himself in the field. When the new moon came, the king sat at the feast to eat.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> The king sat upon his seat, as at other times, upon the seat by the wall. Jonathan stood, while Abner sat by Saul's side; but David's place was empty.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Saul did not say anything that day; for he thought, \"Something has befallen him; he is not clean, surely he is not clean.\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> But on the second day, the day after the new moon, David's place was empty. And Saul said to his son Jonathan, \"Why has the son of Jesse not come to the feast, either yesterday or today?\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Jonathan answered Saul, \"David earnestly asked leave of me to go to Bethlehem;</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> he said, 'Let me go; for our family is holding a sacrifice in the city, and my brother has commanded me to be there. So now, if I have found favor in your sight, let me get away, and see my brothers.' For this reason he has not come to the king's table.\"</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Then Saul's anger was kindled against Jonathan. He said to him, \"You son of a perverse, rebellious woman! Do I not know that you have chosen the son of Jesse to your own shame, and to the shame of your mother's nakedness?</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> For as long as the son of Jesse lives upon the earth, neither you nor your kingdom shall be established. Now send and bring him to me, for he shall surely die.\"</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Then Jonathan answered his father Saul, \"Why should he be put to death? What has he done?\"</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> But Saul threw his spear at him to strike him; so Jonathan knew that it was the decision of his father to put David to death.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Jonathan rose from the table in fierce anger and ate no food on the second day of the month, for he was grieved for David, and because his father had disgraced him.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> In the morning Jonathan went out into the field to the appointment with David, and with him was a little boy.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> He said to the boy, \"Run and find the arrows that I shoot.\" As the boy ran, he shot an arrow beyond him.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> When the boy came to the place where Jonathan's arrow had fallen, Jonathan called after the boy and said, \"Is the arrow not beyond you?\"</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Jonathan called after the boy, \"Hurry, be quick, do not linger.\" So Jonathan's boy gathered up the arrows and came to his master.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> But the boy knew nothing; only Jonathan and David knew the arrangement.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> Jonathan gave his weapons to the boy and said to him, \"Go and carry them to the city.\"</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> As soon as the boy had gone, David rose from beside the stone heap and prostrated himself with his face to the ground. He bowed three times, and they kissed each other, and wept with each other; David wept the more. </VERS>\r\n\t\t\t<VERS vnumber=\"42\"> Then Jonathan said to David, \"Go in peace, since both of us have sworn in the name of the LORD, saying, 'The LORD shall be between me and you, and between my descendants and your descendants, forever.'\" He got up and left; and Jonathan went into the city. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"21\">\r\n\t\t\t<VERS vnumber=\"1\"> David came to Nob to the priest Ahimelech. Ahimelech came trembling to meet David, and said to him, \"Why are you alone, and no one with you?\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> David said to the priest Ahimelech, \"The king has charged me with a matter, and said to me, 'No one must know anything of the matter about which I send you, and with which I have charged you.' I have made an appointment with the young men for such and such a place. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Now then, what have you at hand? Give me five loaves of bread, or whatever is here.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The priest answered David, \"I have no ordinary bread at hand, only holy bread-- provided that the young men have kept themselves from women.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> David answered the priest, \"Indeed women have been kept from us as always when I go on an expedition; the vessels of the young men are holy even when it is a common journey; how much more today will their vessels be holy?\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> So the priest gave him the holy bread; for there was no bread there except the bread of the Presence, which is removed from before the LORD, to be replaced by hot bread on the day it is taken away.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Now a certain man of the servants of Saul was there that day, detained before the LORD; his name was Doeg the Edomite, the chief of Saul's shepherds.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> David said to Ahimelech, \"Is there no spear or sword here with you? I did not bring my sword or my weapons with me, because the king's business required haste.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The priest said, \"The sword of Goliath the Philistine, whom you killed in the valley of Elah, is here wrapped in a cloth behind the ephod; if you will take that, take it, for there is none here except that one.\" David said, \"There is none like it; give it to me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> David rose and fled that day from Saul; he went to King Achish of Gath.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The servants of Achish said to him, \"Is this not David the king of the land? Did they not sing to one another of him in dances, 'Saul has killed his thousands, and David his ten thousands'?\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> David took these words to heart and was very much afraid of King Achish of Gath.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> So he changed his behavior before them; he pretended to be mad when in their presence. He scratched marks on the doors of the gate, and let his spittle run down his beard. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Achish said to his servants, \"Look, you see the man is mad; why then have you brought him to me?</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Do I lack madmen, that you have brought this fellow to play the madman in my presence? Shall this fellow come into my house?\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"22\">\r\n\t\t\t<VERS vnumber=\"1\"> David left there and escaped to the cave of Adullam; when his brothers and all his father's house heard of it, they went down there to him.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Everyone who was in distress, and everyone who was in debt, and everyone who was discontented gathered to him; and he became captain over them. Those who were with him numbered about four hundred.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> David went from there to Mizpeh of Moab. He said to the king of Moab, \"Please let my father and mother come to you, until I know what God will do for me.\" </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> He left them with the king of Moab, and they stayed with him all the time that David was in the stronghold.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then the prophet Gad said to David, \"Do not remain in the stronghold; leave, and go into the land of Judah.\" So David left, and went into the forest of Hereth.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Saul heard that David and those who were with him had been located. Saul was sitting at Gibeah, under the tamarisk tree on the height, with his spear in his hand, and all his servants were standing around him.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Saul said to his servants who stood around him, \"Hear now, you Benjaminites; will the son of Jesse give every one of you fields and vineyards, will he make you all commanders of thousands and commanders of hundreds?</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Is that why all of you have conspired against me? No one discloses to me when my son makes a league with the son of Jesse, none of you is sorry for me or discloses to me that my son has stirred up my servant against me, to lie in wait, as he is doing today.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Doeg the Edomite, who was in charge of Saul's servants, answered, \"I saw the son of Jesse coming to Nob, to Ahimelech son of Ahitub;</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> he inquired of the LORD for him, gave him provisions, and gave him the sword of Goliath the Philistine.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The king sent for the priest Ahimelech son of Ahitub and for all his father's house, the priests who were at Nob; and all of them came to the king.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Saul said, \"Listen now, son of Ahitub.\" He answered, \"Here I am, my lord.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Saul said to him, \"Why have you conspired against me, you and the son of Jesse, by giving him bread and a sword, and by inquiring of God for him, so that he has risen against me, to lie in wait, as he is doing today?\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then Ahimelech answered the king, \"Who among all your servants is so faithful as David? He is the king's son-in-law, and is quick to do your bidding, and is honored in your house. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Is today the first time that I have inquired of God for him? By no means! Do not let the king impute anything to his servant or to any member of my father's house; for your servant has known nothing of all this, much or little.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The king said, \"You shall surely die, Ahimelech, you and all your father's house.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The king said to the guard who stood around him, \"Turn and kill the priests of the LORD, because their hand also is with David; they knew that he fled, and did not disclose it to me.\" But the servants of the king would not raise their hand to attack the priests of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then the king said to Doeg, \"You, Doeg, turn and attack the priests.\" Doeg the Edomite turned and attacked the priests; on that day he killed eighty-five who wore the linen ephod.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Nob, the city of the priests, he put to the sword; men and women, children and infants, oxen, donkeys, and sheep, he put to the sword.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> But one of the sons of Ahimelech son of Ahitub, named Abiathar, escaped and fled after David.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Abiathar told David that Saul had killed the priests of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> David said to Abiathar, \"I knew on that day, when Doeg the Edomite was there, that he would surely tell Saul. I am responsible for the lives of all your father's house. </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Stay with me, and do not be afraid; for the one who seeks my life seeks your life; you will be safe with me.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"23\">\r\n\t\t\t<VERS vnumber=\"1\"> Now they told David, \"The Philistines are fighting against Keilah, and are robbing the threshing floors.\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> David inquired of the LORD, \"Shall I go and attack these Philistines?\" The LORD said to David, \"Go and attack the Philistines and save Keilah.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> But David's men said to him, \"Look, we are afraid here in Judah; how much more then if we go to Keilah against the armies of the Philistines?\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then David inquired of the LORD again. The LORD answered him, \"Yes, go down to Keilah; for I will give the Philistines into your hand.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> So David and his men went to Keilah, fought with the Philistines, brought away their livestock, and dealt them a heavy defeat. Thus David rescued the inhabitants of Keilah.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> When Abiathar son of Ahimelech fled to David at Keilah, he came down with an ephod in his hand.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Now it was told Saul that David had come to Keilah. And Saul said, \"God has given him into my hand; for he has shut himself in by entering a town that has gates and bars.\" </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Saul summoned all the people to war, to go down to Keilah, to besiege David and his men.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> When David learned that Saul was plotting evil against him, he said to the priest Abiathar, \"Bring the ephod here.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> David said, \"O LORD, the God of Israel, your servant has heard that Saul seeks to come to Keilah, to destroy the city on my account.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> And now, will Saul come down as your servant has heard? O LORD, the God of Israel, I beseech you, tell your servant.\" The LORD said, \"He will come down.\" </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then David said, \"Will the men of Keilah surrender me and my men into the hand of Saul?\" The LORD said, \"They will surrender you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then David and his men, who were about six hundred, set out and left Keilah; they wandered wherever they could go. When Saul was told that David had escaped from Keilah, he gave up the expedition.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> David remained in the strongholds in the wilderness, in the hill country of the Wilderness of Ziph. Saul sought him every day, but the LORD did not give him into his hand.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> David was in the Wilderness of Ziph at Horesh when he learned that Saul had come out to seek his life. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Saul's son Jonathan set out and came to David at Horesh; there he strengthened his hand through the LORD. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> He said to him, \"Do not be afraid; for the hand of my father Saul shall not find you; you shall be king over Israel, and I shall be second to you; my father Saul also knows that this is so.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then the two of them made a covenant before the LORD; David remained at Horesh, and Jonathan went home.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Then some Ziphites went up to Saul at Gibeah and said, \"David is hiding among us in the strongholds of Horesh, on the hill of Hachilah, which is south of Jeshimon.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Now, O king, whenever you wish to come down, do so; and our part will be to surrender him into the king's hand.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Saul said, \"May you be blessed by the LORD for showing me compassion!</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Go and make sure once more; find out exactly where he is, and who has seen him there; for I am told that he is very cunning.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Look around and learn all the hiding places where he lurks, and come back to me with sure information. Then I will go with you; and if he is in the land, I will search him out among all the thousands of Judah.\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> So they set out and went to Ziph ahead of Saul. David and his men were in the wilderness of Maon, in the Arabah to the south of Jeshimon.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Saul and his men went to search for him. When David was told, he went down to the rock and stayed in the wilderness of Maon. When Saul heard that, he pursued David into the wilderness of Maon.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Saul went on one side of the mountain, and David and his men on the other side of the mountain. David was hurrying to get away from Saul, while Saul and his men were closing in on David and his men to capture them.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Then a messenger came to Saul, saying, \"Hurry and come; for the Philistines have made a raid on the land.\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> So Saul stopped pursuing David, and went against the Philistines; therefore that place was called the Rock of Escape. </VERS>\r\n\t\t\t<VERS vnumber=\"29\"> David then went up from there, and lived in the strongholds of En-gedi.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"24\">\r\n\t\t\t<VERS vnumber=\"1\"> When Saul returned from following the Philistines, he was told, \"David is in the wilderness of En-gedi.\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Then Saul took three thousand chosen men out of all Israel, and went to look for David and his men in the direction of the Rocks of the Wild Goats.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> He came to the sheepfolds beside the road, where there was a cave; and Saul went in to relieve himself. Now David and his men were sitting in the innermost parts of the cave. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The men of David said to him, \"Here is the day of which the LORD said to you, 'I will give your enemy into your hand, and you shall do to him as it seems good to you.'\" Then David went and stealthily cut off a corner of Saul's cloak.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Afterward David was stricken to the heart because he had cut off a corner of Saul's cloak.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> He said to his men, \"The LORD forbid that I should do this thing to my lord, the LORD's anointed, to raise my hand against him; for he is the LORD's anointed.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> So David scolded his men severely and did not permit them to attack Saul. Then Saul got up and left the cave, and went on his way.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Afterwards David also rose up and went out of the cave and called after Saul, \"My lord the king!\" When Saul looked behind him, David bowed with his face to the ground, and did obeisance.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> David said to Saul, \"Why do you listen to the words of those who say, 'David seeks to do you harm'?</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> This very day your eyes have seen how the LORD gave you into my hand in the cave; and some urged me to kill you, but I spared you. I said, 'I will not raise my hand against my lord; for he is the LORD's anointed.' </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> See, my father, see the corner of your cloak in my hand; for by the fact that I cut off the corner of your cloak, and did not kill you, you may know for certain that there is no wrong or treason in my hands. I have not sinned against you, though you are hunting me to take my life.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> May the LORD judge between me and you! May the LORD avenge me on you; but my hand shall not be against you.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> As the ancient proverb says, 'Out of the wicked comes forth wickedness'; but my hand shall not be against you.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Against whom has the king of Israel come out? Whom do you pursue? A dead dog? A single flea?</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> May the LORD therefore be judge, and give sentence between me and you. May he see to it, and plead my cause, and vindicate me against you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> When David had finished speaking these words to Saul, Saul said, \"Is this your voice, my son David?\" Saul lifted up his voice and wept.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> He said to David, \"You are more righteous than I; for you have repaid me good, whereas I have repaid you evil.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Today you have explained how you have dealt well with me, in that you did not kill me when the LORD put me into your hands.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> For who has ever found an enemy, and sent the enemy safely away? So may the LORD reward you with good for what you have done to me this day.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Now I know that you shall surely be king, and that the kingdom of Israel shall be established in your hand.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Swear to me therefore by the LORD that you will not cut off my descendants after me, and that you will not wipe out my name from my father's house.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> So David swore this to Saul. Then Saul went home; but David and his men went up to the stronghold.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"25\">\r\n\t\t\t<VERS vnumber=\"1\"> Now Samuel died; and all Israel assembled and mourned for him. They buried him at his home in Ramah. Then David got up and went down to the wilderness of Paran.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> There was a man in Maon, whose property was in Carmel. The man was very rich; he had three thousand sheep and a thousand goats. He was shearing his sheep in Carmel.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Now the name of the man was Nabal, and the name of his wife Abigail. The woman was clever and beautiful, but the man was surly and mean; he was a Calebite.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> David heard in the wilderness that Nabal was shearing his sheep.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> So David sent ten young men; and David said to the young men, \"Go up to Carmel, and go to Nabal, and greet him in my name.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Thus you shall salute him: 'Peace be to you, and peace be to your house, and peace be to all that you have.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> I hear that you have shearers; now your shepherds have been with us, and we did them no harm, and they missed nothing, all the time they were in Carmel.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Ask your young men, and they will tell you. Therefore let my young men find favor in your sight; for we have come on a feast day. Please give whatever you have at hand to your servants and to your son David.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> When David's young men came, they said all this to Nabal in the name of David; and then they waited.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> But Nabal answered David's servants, \"Who is David? Who is the son of Jesse? There are many servants today who are breaking away from their masters.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Shall I take my bread and my water and the meat that I have butchered for my shearers, and give it to men who come from I do not know where?\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> So David's young men turned away, and came back and told him all this.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> David said to his men, \"Every man strap on his sword!\" And every one of them strapped on his sword; David also strapped on his sword; and about four hundred men went up after David, while two hundred remained with the baggage.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But one of the young men told Abigail, Nabal's wife, \"David sent messengers out of the wilderness to salute our master; and he shouted insults at them.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Yet the men were very good to us, and we suffered no harm, and we never missed anything when we were in the fields, as long as we were with them;</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> they were a wall to us both by night and by day, all the while we were with them keeping the sheep.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Now therefore know this and consider what you should do; for evil has been decided against our master and against all his house; he is so ill-natured that no one can speak to him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then Abigail hurried and took two hundred loaves, two skins of wine, five sheep ready dressed, five measures of parched grain, one hundred clusters of raisins, and two hundred cakes of figs. She loaded them on donkeys</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> and said to her young men, \"Go on ahead of me; I am coming after you.\" But she did not tell her husband Nabal.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> As she rode on the donkey and came down under cover of the mountain, David and his men came down toward her; and she met them.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Now David had said, \"Surely it was in vain that I protected all that this fellow has in the wilderness, so that nothing was missed of all that belonged to him; but he has returned me evil for good.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> God do so to David and more also, if by morning I leave so much as one male of all who belong to him.\" </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> When Abigail saw David, she hurried and alighted from the donkey, fell before David on her face, bowing to the ground.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> She fell at his feet and said, \"Upon me alone, my lord, be the guilt; please let your servant speak in your ears, and hear the words of your servant.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> My lord, do not take seriously this ill-natured fellow, Nabal; for as his name is, so is he; Nabal is his name, and folly is with him; but I, your servant, did not see the young men of my lord, whom you sent. </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Now then, my lord, as the LORD lives, and as you yourself live, since the LORD has restrained you from bloodguilt and from taking vengeance with your own hand, now let your enemies and those who seek to do evil to my lord be like Nabal.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> And now let this present that your servant has brought to my lord be given to the young men who follow my lord.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Please forgive the trespass of your servant; for the LORD will certainly make my lord a sure house, because my lord is fighting the battles of the LORD; and evil shall not be found in you so long as you live.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> If anyone should rise up to pursue you and to seek your life, the life of my lord shall be bound in the bundle of the living under the care of the LORD your God; but the lives of your enemies he shall sling out as from the hollow of a sling.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> When the LORD has done to my lord according to all the good that he has spoken concerning you, and has appointed you prince over Israel,</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> my lord shall have no cause of grief, or pangs of conscience, for having shed blood without cause or for having saved himself. And when the LORD has dealt well with my lord, then remember your servant.\"</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> David said to Abigail, \"Blessed be the LORD, the God of Israel, who sent you to meet me today!</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Blessed be your good sense, and blessed be you, who have kept me today from bloodguilt and from avenging myself by my own hand!</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> For as surely as the LORD the God of Israel lives, who has restrained me from hurting you, unless you had hurried and come to meet me, truly by morning there would not have been left to Nabal so much as one male.\"</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Then David received from her hand what she had brought him; he said to her, \"Go up to your house in peace; see, I have heeded your voice, and I have granted your petition.\"</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Abigail came to Nabal; he was holding a feast in his house, like the feast of a king. Nabal's heart was merry within him, for he was very drunk; so she told him nothing at all until the morning light.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> In the morning, when the wine had gone out of Nabal, his wife told him these things, and his heart died within him; he became like a stone.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> About ten days later the LORD struck Nabal, and he died.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> When David heard that Nabal was dead, he said, \"Blessed be the LORD who has judged the case of Nabal's insult to me, and has kept back his servant from evil; the LORD has returned the evildoing of Nabal upon his own head.\" Then David sent and wooed Abigail, to make her his wife.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> When David's servants came to Abigail at Carmel, they said to her, \"David has sent us to you to take you to him as his wife.\"</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> She rose and bowed down, with her face to the ground, and said, \"Your servant is a slave to wash the feet of the servants of my lord.\"</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> Abigail got up hurriedly and rode away on a donkey; her five maids attended her. She went after the messengers of David and became his wife.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> David also married Ahinoam of Jezreel; both of them became his wives.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> Saul had given his daughter Michal, David's wife, to Palti son of Laish, who was from Gallim.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"26\">\r\n\t\t\t<VERS vnumber=\"1\"> Then the Ziphites came to Saul at Gibeah, saying, \"David is in hiding on the hill of Hachilah, which is opposite Jeshimon.\" </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> So Saul rose and went down to the Wilderness of Ziph, with three thousand chosen men of Israel, to seek David in the Wilderness of Ziph.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Saul encamped on the hill of Hachilah, which is opposite Jeshimon beside the road. But David remained in the wilderness. When he learned that Saul came after him into the wilderness, </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> David sent out spies, and learned that Saul had indeed arrived.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then David set out and came to the place where Saul had encamped; and David saw the place where Saul lay, with Abner son of Ner, the commander of his army. Saul was lying within the encampment, while the army was encamped around him.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then David said to Ahimelech the Hittite, and to Joab's brother Abishai son of Zeruiah, \"Who will go down with me into the camp to Saul?\" Abishai said, \"I will go down with you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> So David and Abishai went to the army by night; there Saul lay sleeping within the encampment, with his spear stuck in the ground at his head; and Abner and the army lay around him.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Abishai said to David, \"God has given your enemy into your hand today; now therefore let me pin him to the ground with one stroke of the spear; I will not strike him twice.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> But David said to Abishai, \"Do not destroy him; for who can raise his hand against the LORD's anointed, and be guiltless?\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> David said, \"As the LORD lives, the LORD will strike him down; or his day will come to die; or he will go down into battle and perish.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The LORD forbid that I should raise my hand against the LORD's anointed; but now take the spear that is at his head, and the water jar, and let us go.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> So David took the spear that was at Saul's head and the water jar, and they went away. No one saw it, or knew it, nor did anyone awake; for they were all asleep, because a deep sleep from the LORD had fallen upon them.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then David went over to the other side, and stood on top of a hill far away, with a great distance between them.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> David called to the army and to Abner son of Ner, saying, \"Abner! Will you not answer?\" Then Abner replied, \"Who are you that calls to the king?\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> David said to Abner, \"Are you not a man? Who is like you in Israel? Why then have you not kept watch over your lord the king? For one of the people came in to destroy your lord the king.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> This thing that you have done is not good. As the LORD lives, you deserve to die, because you have not kept watch over your lord, the LORD's anointed. See now, where is the king's spear, or the water jar that was at his head?\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Saul recognized David's voice, and said, \"Is this your voice, my son David?\" David said, \"It is my voice, my lord, O king.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> And he added, \"Why does my lord pursue his servant? For what have I done? What guilt is on my hands?</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Now therefore let my lord the king hear the words of his servant. If it is the LORD who has stirred you up against me, may he accept an offering; but if it is mortals, may they be cursed before the LORD, for they have driven me out today from my share in the heritage of the LORD, saying, 'Go, serve other gods.'</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Now therefore, do not let my blood fall to the ground, away from the presence of the LORD; for the king of Israel has come out to seek a single flea, like one who hunts a partridge in the mountains.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then Saul said, \"I have done wrong; come back, my son David, for I will never harm you again, because my life was precious in your sight today; I have been a fool, and have made a great mistake.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> David replied, \"Here is the spear, O king! Let one of the young men come over and get it.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> The LORD rewards everyone for his righteousness and his faithfulness; for the LORD gave you into my hand today, but I would not raise my hand against the LORD's anointed.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> As your life was precious today in my sight, so may my life be precious in the sight of the LORD, and may he rescue me from all tribulation.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Then Saul said to David, \"Blessed be you, my son David! You will do many things and will succeed in them.\" So David went his way, and Saul returned to his place.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"27\">\r\n\t\t\t<VERS vnumber=\"1\"> David said in his heart, \"I shall now perish one day by the hand of Saul; there is nothing better for me than to escape to the land of the Philistines; then Saul will despair of seeking me any longer within the borders of Israel, and I shall escape out of his hand.\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> So David set out and went over, he and the six hundred men who were with him, to King Achish son of Maoch of Gath.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> David stayed with Achish at Gath, he and his troops, every man with his household, and David with his two wives, Ahinoam of Jezreel, and Abigail of Carmel, Nabal's widow.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> When Saul was told that David had fled to Gath, he no longer sought for him.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then David said to Achish, \"If I have found favor in your sight, let a place be given me in one of the country towns, so that I may live there; for why should your servant live in the royal city with you?\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> So that day Achish gave him Ziklag; therefore Ziklag has belonged to the kings of Judah to this day.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The length of time that David lived in the country of the Philistines was one year and four months.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Now David and his men went up and made raids on the Geshurites, the Girzites, and the Amalekites; for these were the landed settlements from Telam on the way to Shur and on to the land of Egypt. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> David struck the land, leaving neither man nor woman alive, but took away the sheep, the oxen, the donkeys, the camels, and the clothing, and came back to Achish.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> When Achish asked, \"Against whom have you made a raid today?\" David would say, \"Against the Negeb of Judah,\" or \"Against the Negeb of the Jerahmeelites,\" or, \"Against the Negeb of the Kenites.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> David left neither man nor woman alive to be brought back to Gath, thinking, \"They might tell about us, and say, 'David has done so and so.'\" Such was his practice all the time he lived in the country of the Philistines.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Achish trusted David, thinking, \"He has made himself utterly abhorrent to his people Israel; therefore he shall always be my servant.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"28\">\r\n\t\t\t<VERS vnumber=\"1\"> In those days the Philistines gathered their forces for war, to fight against Israel. Achish said to David, \"You know, of course, that you and your men are to go out with me in the army.\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> David said to Achish, \"Very well, then you shall know what your servant can do.\" Achish said to David, \"Very well, I will make you my bodyguard for life.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Now Samuel had died, and all Israel had mourned for him and buried him in Ramah, his own city. Saul had expelled the mediums and the wizards from the land.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The Philistines assembled, and came and encamped at Shunem. Saul gathered all Israel, and they encamped at Gilboa.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> When Saul saw the army of the Philistines, he was afraid, and his heart trembled greatly.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> When Saul inquired of the LORD, the LORD did not answer him, not by dreams, or by Urim, or by prophets.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then Saul said to his servants, \"Seek out for me a woman who is a medium, so that I may go to her and inquire of her.\" His servants said to him, \"There is a medium at Endor.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> So Saul disguised himself and put on other clothes and went there, he and two men with him. They came to the woman by night. And he said, \"Consult a spirit for me, and bring up for me the one whom I name to you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The woman said to him, \"Surely you know what Saul has done, how he has cut off the mediums and the wizards from the land. Why then are you laying a snare for my life to bring about my death?\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> But Saul swore to her by the LORD, \"As the LORD lives, no punishment shall come upon you for this thing.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then the woman said, \"Whom shall I bring up for you?\" He answered, \"Bring up Samuel for me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> When the woman saw Samuel, she cried out with a loud voice; and the woman said to Saul, \"Why have you deceived me? You are Saul!\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The king said to her, \"Have no fear; what do you see?\" The woman said to Saul, \"I see a divine being coming up out of the ground.\" </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> He said to her, \"What is his appearance?\" She said, \"An old man is coming up; he is wrapped in a robe.\" So Saul knew that it was Samuel, and he bowed with his face to the ground, and did obeisance.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Then Samuel said to Saul, \"Why have you disturbed me by bringing me up?\" Saul answered, \"I am in great distress, for the Philistines are warring against me, and God has turned away from me and answers me no more, either by prophets or by dreams; so I have summoned you to tell me what I should do.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Samuel said, \"Why then do you ask me, since the LORD has turned from you and become your enemy?</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The LORD has done to you just as he spoke by me; for the LORD has torn the kingdom out of your hand, and given it to your neighbor, David.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Because you did not obey the voice of the LORD, and did not carry out his fierce wrath against Amalek, therefore the LORD has done this thing to you today.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Moreover the LORD will give Israel along with you into the hands of the Philistines; and tomorrow you and your sons shall be with me; the LORD will also give the army of Israel into the hands of the Philistines.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Immediately Saul fell full length on the ground, filled with fear because of the words of Samuel; and there was no strength in him, for he had eaten nothing all day and all night.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> The woman came to Saul, and when she saw that he was terrified, she said to him, \"Your servant has listened to you; I have taken my life in my hand, and have listened to what you have said to me.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Now therefore, you also listen to your servant; let me set a morsel of bread before you. Eat, that you may have strength when you go on your way.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> He refused, and said, \"I will not eat.\" But his servants, together with the woman, urged him; and he listened to their words. So he got up from the ground and sat on the bed.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Now the woman had a fatted calf in the house. She quickly slaughtered it, and she took flour, kneaded it, and baked unleavened cakes.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> She put them before Saul and his servants, and they ate. Then they rose and went away that night.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"29\">\r\n\t\t\t<VERS vnumber=\"1\"> Now the Philistines gathered all their forces at Aphek, while the Israelites were encamped by the fountain that is in Jezreel.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> As the lords of the Philistines were passing on by hundreds and by thousands, and David and his men were passing on in the rear with Achish,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> the commanders of the Philistines said, \"What are these Hebrews doing here?\" Achish said to the commanders of the Philistines, \"Is this not David, the servant of King Saul of Israel, who has been with me now for days and years? Since he deserted to me I have found no fault in him to this day.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But the commanders of the Philistines were angry with him; and the commanders of the Philistines said to him, \"Send the man back, so that he may return to the place that you have assigned to him; he shall not go down with us to battle, or else he may become an adversary to us in the battle. For how could this fellow reconcile himself to his lord? Would it not be with the heads of the men here?</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Is this not David, of whom they sing to one another in dances, 'Saul has killed his thousands, and David his ten thousands'?\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then Achish called David and said to him, \"As the LORD lives, you have been honest, and to me it seems right that you should march out and in with me in the campaign; for I have found nothing wrong in you from the day of your coming to me until today. Nevertheless the lords do not approve of you.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> So go back now; and go peaceably; do nothing to displease the lords of the Philistines.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> David said to Achish, \"But what have I done? What have you found in your servant from the day I entered your service until now, that I should not go and fight against the enemies of my lord the king?\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Achish replied to David, \"I know that you are as blameless in my sight as an angel of God; nevertheless, the commanders of the Philistines have said, 'He shall not go up with us to the battle.'</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Now then rise early in the morning, you and the servants of your lord who came with you, and go to the place that I appointed for you. As for the evil report, do not take it to heart, for you have done well before me. Start early in the morning, and leave as soon as you have light.\" </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> So David set out with his men early in the morning, to return to the land of the Philistines. But the Philistines went up to Jezreel.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"30\">\r\n\t\t\t<VERS vnumber=\"1\"> Now when David and his men came to Ziklag on the third day, the Amalekites had made a raid on the Negeb and on Ziklag. They had attacked Ziklag, burned it down,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> and taken captive the women and all who were in it, both small and great; they killed none of them, but carried them off, and went their way.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> When David and his men came to the city, they found it burned down, and their wives and sons and daughters taken captive.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then David and the people who were with him raised their voices and wept, until they had no more strength to weep.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> David's two wives also had been taken captive, Ahinoam of Jezreel, and Abigail the widow of Nabal of Carmel.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> David was in great danger; for the people spoke of stoning him, because all the people were bitter in spirit for their sons and daughters. But David strengthened himself in the LORD his God.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> David said to the priest Abiathar son of Ahimelech, \"Bring me the ephod.\" So Abiathar brought the ephod to David.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> David inquired of the LORD, \"Shall I pursue this band? Shall I overtake them?\" He answered him, \"Pursue; for you shall surely overtake and shall surely rescue.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> So David set out, he and the six hundred men who were with him. They came to the Wadi Besor, where those stayed who were left behind.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> But David went on with the pursuit, he and four hundred men; two hundred stayed behind, too exhausted to cross the Wadi Besor.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> In the open country they found an Egyptian, and brought him to David. They gave him bread and he ate, they gave him water to drink;</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> they also gave him a piece of fig cake and two clusters of raisins. When he had eaten, his spirit revived; for he had not eaten bread or drunk water for three days and three nights.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then David said to him, \"To whom do you belong? Where are you from?\" He said, \"I am a young man of Egypt, servant to an Amalekite. My master left me behind because I fell sick three days ago.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> We had made a raid on the Negeb of the Cherethites and on that which belongs to Judah and on the Negeb of Caleb; and we burned Ziklag down.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> David said to him, \"Will you take me down to this raiding party?\" He said, \"Swear to me by God that you will not kill me, or hand me over to my master, and I will take you down to them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> When he had taken him down, they were spread out all over the ground, eating and drinking and dancing, because of the great amount of spoil they had taken from the land of the Philistines and from the land of Judah.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> David attacked them from twilight until the evening of the next day. Not one of them escaped, except four hundred young men, who mounted camels and fled.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> David recovered all that the Amalekites had taken; and David rescued his two wives.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Nothing was missing, whether small or great, sons or daughters, spoil or anything that had been taken; David brought back everything.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> David also captured all the flocks and herds, which were driven ahead of the other cattle; people said, \"This is David's spoil.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then David came to the two hundred men who had been too exhausted to follow David, and who had been left at the Wadi Besor. They went out to meet David and to meet the people who were with him. When David drew near to the people he saluted them.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Then all the corrupt and worthless fellows among the men who had gone with David said, \"Because they did not go with us, we will not give them any of the spoil that we have recovered, except that each man may take his wife and children, and leave.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> But David said, \"You shall not do so, my brothers, with what the LORD has given us; he has preserved us and handed over to us the raiding party that attacked us.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Who would listen to you in this matter? For the share of the one who goes down into the battle shall be the same as the share of the one who stays by the baggage; they shall share alike.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> From that day forward he made it a statute and an ordinance for Israel; it continues to the present day.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> When David came to Ziklag, he sent part of the spoil to his friends, the elders of Judah, saying, \"Here is a present for you from the spoil of the enemies of the LORD\";</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> it was for those in Bethel, in Ramoth of the Negeb, in Jattir,</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> in Aroer, in Siphmoth, in Eshtemoa,</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> in Racal, in the towns of the Jerahmeelites, in the towns of the Kenites,</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> in Hormah, in Bor-ashan, in Athach,</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> in Hebron, all the places where David and his men had roamed.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"31\">\r\n\t\t\t<VERS vnumber=\"1\"> Now the Philistines fought against Israel; and the men of Israel fled before the Philistines, and many fell on Mount Gilboa. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The Philistines overtook Saul and his sons; and the Philistines killed Jonathan and Abinadab and Malchishua, the sons of Saul.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The battle pressed hard upon Saul; the archers found him, and he was badly wounded by them.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then Saul said to his armor-bearer, \"Draw your sword and thrust me through with it, so that these uncircumcised may not come and thrust me through, and make sport of me.\" But his armor-bearer was unwilling; for he was terrified. So Saul took his own sword and fell upon it.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> When his armor-bearer saw that Saul was dead, he also fell upon his sword and died with him.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> So Saul and his three sons and his armor-bearer and all his men died together on the same day.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> When the men of Israel who were on the other side of the valley and those beyond the Jordan saw that the men of Israel had fled and that Saul and his sons were dead, they forsook their towns and fled; and the Philistines came and occupied them.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The next day, when the Philistines came to strip the dead, they found Saul and his three sons fallen on Mount Gilboa.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> They cut off his head, stripped off his armor, and sent messengers throughout the land of the Philistines to carry the good news to the houses of their idols and to the people.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> They put his armor in the temple of Astarte; and they fastened his body to the wall of Beth-shan. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But when the inhabitants of Jabesh-gilead heard what the Philistines had done to Saul,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> all the valiant men set out, traveled all night long, and took the body of Saul and the bodies of his sons from the wall of Beth-shan. They came to Jabesh and burned them there.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then they took their bones and buried them under the tamarisk tree in Jabesh, and fasted seven days.</VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"10\" bname=\"2 Samuel\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> After the death of Saul, when David had returned from defeating the Amalekites, David remained two days in Ziklag.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> On the third day, a man came from Saul's camp, with his clothes torn and dirt on his head. When he came to David, he fell to the ground and did obeisance.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> David said to him, \"Where have you come from?\" He said to him, \"I have escaped from the camp of Israel.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> David said to him, \"How did things go? Tell me!\" He answered, \"The army fled from the battle, but also many of the army fell and died; and Saul and his son Jonathan also died.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then David asked the young man who was reporting to him, \"How do you know that Saul and his son Jonathan died?\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The young man reporting to him said, \"I happened to be on Mount Gilboa; and there was Saul leaning on his spear, while the chariots and the horsemen drew close to him.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> When he looked behind him, he saw me, and called to me. I answered, 'Here sir.'</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And he said to me, 'Who are you?' I answered him, 'I am an Amalekite.'</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> He said to me, 'Come, stand over me and kill me; for convulsions have seized me, and yet my life still lingers.'</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> So I stood over him, and killed him, for I knew that he could not live after he had fallen. I took the crown that was on his head and the armlet that was on his arm, and I have brought them here to my lord.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then David took hold of his clothes and tore them; and all the men who were with him did the same.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> They mourned and wept, and fasted until evening for Saul and for his son Jonathan, and for the army of the LORD and for the house of Israel, because they had fallen by the sword.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> David said to the young man who had reported to him, \"Where do you come from?\" He answered, \"I am the son of a resident alien, an Amalekite.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> David said to him, \"Were you not afraid to lift your hand to destroy the LORD's anointed?\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Then David called one of the young men and said, \"Come here and strike him down.\" So he struck him down and he died.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> David said to him, \"Your blood be on your head; for your own mouth has testified against you, saying, 'I have killed the LORD's anointed.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> David intoned this lamentation over Saul and his son Jonathan.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> (He ordered that The Song of the Bow be taught to the people of Judah; it is written in the Book of Jashar.) He said: </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Your glory, O Israel, lies slain upon your high places! How the mighty have fallen!</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Tell it not in Gath, proclaim it not in the streets of Ashkelon; or the daughters of the Philistines will rejoice, the daughters of the uncircumcised will exult.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> You mountains of Gilboa, let there be no dew or rain upon you, nor bounteous fields! For there the shield of the mighty was defiled, the shield of Saul, anointed with oil no more. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> From the blood of the slain, from the fat of the mighty, the bow of Jonathan did not turn back, nor the sword of Saul return empty.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Saul and Jonathan, beloved and lovely! In life and in death they were not divided; they were swifter than eagles, they were stronger than lions.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> O daughters of Israel, weep over Saul, who clothed you with crimson, in luxury, who put ornaments of gold on your apparel.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> How the mighty have fallen in the midst of the battle! Jonathan lies slain upon your high places.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> I am distressed for you, my brother Jonathan; greatly beloved were you to me; your love to me was wonderful, passing the love of women.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> How the mighty have fallen, and the weapons of war perished!</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> After this David inquired of the LORD, \"Shall I go up into any of the cities of Judah?\" The LORD said to him, \"Go up.\" David said, \"To which shall I go up?\" He said, \"To Hebron.\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> So David went up there, along with his two wives, Ahinoam of Jezreel, and Abigail the widow of Nabal of Carmel.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> David brought up the men who were with him, every one with his household; and they settled in the towns of Hebron.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then the people of Judah came, and there they anointed David king over the house of Judah. When they told David, \"It was the people of Jabesh-gilead who buried Saul,\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> David sent messengers to the people of Jabesh-gilead, and said to them, \"May you be blessed by the LORD, because you showed this loyalty to Saul your lord, and buried him!</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Now may the LORD show steadfast love and faithfulness to you! And I too will reward you because you have done this thing.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Therefore let your hands be strong, and be valiant; for Saul your lord is dead, and the house of Judah has anointed me king over them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But Abner son of Ner, commander of Saul's army, had taken Ishbaal son of Saul, and brought him over to Mahanaim. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> He made him king over Gilead, the Ashurites, Jezreel, Ephraim, Benjamin, and over all Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Ishbaal, Saul's son, was forty years old when he began to reign over Israel, and he reigned two years. But the house of Judah followed David. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The time that David was king in Hebron over the house of Judah was seven years and six months.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Abner son of Ner, and the servants of Ishbaal son of Saul, went out from Mahanaim to Gibeon.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Joab son of Zeruiah, and the servants of David, went out and met them at the pool of Gibeon. One group sat on one side of the pool, while the other sat on the other side of the pool.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Abner said to Joab, \"Let the young men come forward and have a contest before us.\" Joab said, \"Let them come forward.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> So they came forward and were counted as they passed by, twelve for Benjamin and Ishbaal son of Saul, and twelve of the servants of David. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Each grasped his opponent by the head, and thrust his sword in his opponent's side; so they fell down together. Therefore that place was called Helkath-hazzurim, which is at Gibeon. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The battle was very fierce that day; and Abner and the men of Israel were beaten by the servants of David.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The three sons of Zeruiah were there, Joab, Abishai, and Asahel. Now Asahel was as swift of foot as a wild gazelle.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Asahel pursued Abner, turning neither to the right nor to the left as he followed him.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Then Abner looked back and said, \"Is it you, Asahel?\" He answered, \"Yes, it is.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Abner said to him, \"Turn to your right or to your left, and seize one of the young men, and take his spoil.\" But Asahel would not turn away from following him.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Abner said again to Asahel, \"Turn away from following me; why should I strike you to the ground? How then could I show my face to your brother Joab?\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> But he refused to turn away. So Abner struck him in the stomach with the butt of his spear, so that the spear came out at his back. He fell there, and died where he lay. And all those who came to the place where Asahel had fallen and died, stood still.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> But Joab and Abishai pursued Abner. As the sun was going down they came to the hill of Ammah, which lies before Giah on the way to the wilderness of Gibeon.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> The Benjaminites rallied around Abner and formed a single band; they took their stand on the top of a hill.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Then Abner called to Joab, \"Is the sword to keep devouring forever? Do you not know that the end will be bitter? How long will it be before you order your people to turn from the pursuit of their kinsmen?\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Joab said, \"As God lives, if you had not spoken, the people would have continued to pursue their kinsmen, not stopping until morning.\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Joab sounded the trumpet and all the people stopped; they no longer pursued Israel or engaged in battle any further.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Abner and his men traveled all that night through the Arabah; they crossed the Jordan, and, marching the whole forenoon, they came to Mahanaim. </VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Joab returned from the pursuit of Abner; and when he had gathered all the people together, there were missing of David's servants nineteen men besides Asahel.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> But the servants of David had killed of Benjamin three hundred sixty of Abner's men.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> They took up Asahel and buried him in the tomb of his father, which was at Bethlehem. Joab and his men marched all night, and the day broke upon them at Hebron.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> There was a long war between the house of Saul and the house of David; David grew stronger and stronger, while the house of Saul became weaker and weaker.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Sons were born to David at Hebron: his firstborn was Amnon, of Ahinoam of Jezreel;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> his second, Chileab, of Abigail the widow of Nabal of Carmel; the third, Absalom son of Maacah, daughter of King Talmai of Geshur;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> the fourth, Adonijah son of Haggith; the fifth, Shephatiah son of Abital;</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> and the sixth, Ithream, of David's wife Eglah. These were born to David in Hebron.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> While there was war between the house of Saul and the house of David, Abner was making himself strong in the house of Saul.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Now Saul had a concubine whose name was Rizpah daughter of Aiah. And Ishbaal said to Abner, \"Why have you gone in to my father's concubine?\" </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The words of Ishbaal made Abner very angry; he said, \"Am I a dog's head for Judah? Today I keep showing loyalty to the house of your father Saul, to his brothers, and to his friends, and have not given you into the hand of David; and yet you charge me now with a crime concerning this woman. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> So may God do to Abner and so may he add to it! For just what the LORD has sworn to David, that will I accomplish for him,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> to transfer the kingdom from the house of Saul, and set up the throne of David over Israel and over Judah, from Dan to Beer-sheba.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> And Ishbaal could not answer Abner another word, because he feared him. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Abner sent messengers to David at Hebron, saying, \"To whom does the land belong? Make your covenant with me, and I will give you my support to bring all Israel over to you.\" </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> He said, \"Good; I will make a covenant with you. But one thing I require of you: you shall never appear in my presence unless you bring Saul's daughter Michal when you come to see me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then David sent messengers to Saul's son Ishbaal, saying, \"Give me my wife Michal, to whom I became engaged at the price of one hundred foreskins of the Philistines.\" </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Ishbaal sent and took her from her husband Paltiel the son of Laish. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> But her husband went with her, weeping as he walked behind her all the way to Bahurim. Then Abner said to him, \"Go back home!\" So he went back.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Abner sent word to the elders of Israel, saying, \"For some time past you have been seeking David as king over you.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Now then bring it about; for the LORD has promised David: Through my servant David I will save my people Israel from the hand of the Philistines, and from all their enemies.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Abner also spoke directly to the Benjaminites; then Abner went to tell David at Hebron all that Israel and the whole house of Benjamin were ready to do.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> When Abner came with twenty men to David at Hebron, David made a feast for Abner and the men who were with him.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Abner said to David, \"Let me go and rally all Israel to my lord the king, in order that they may make a covenant with you, and that you may reign over all that your heart desires.\" So David dismissed Abner, and he went away in peace.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Just then the servants of David arrived with Joab from a raid, bringing much spoil with them. But Abner was not with David at Hebron, for David had dismissed him, and he had gone away in peace. </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> When Joab and all the army that was with him came, it was told Joab, \"Abner son of Ner came to the king, and he has dismissed him, and he has gone away in peace.\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Then Joab went to the king and said, \"What have you done? Abner came to you; why did you dismiss him, so that he got away?</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> You know that Abner son of Ner came to deceive you, and to learn your comings and goings and to learn all that you are doing.\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> When Joab came out from David's presence, he sent messengers after Abner, and they brought him back from the cistern of Sirah; but David did not know about it.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> When Abner returned to Hebron, Joab took him aside in the gateway to speak with him privately, and there he stabbed him in the stomach. So he died for shedding the blood of Asahel, Joab's brother. </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Afterward, when David heard of it, he said, \"I and my kingdom are forever guiltless before the LORD for the blood of Abner son of Ner.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> May the guilt fall on the head of Joab, and on all his father's house; and may the house of Joab never be without one who has a discharge, or who is leprous, or who holds a spindle, or who falls by the sword, or who lacks food!\" </VERS>\r\n\t\t\t<VERS vnumber=\"30\"> So Joab and his brother Abishai murdered Abner because he had killed their brother Asahel in the battle at Gibeon.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Then David said to Joab and to all the people who were with him, \"Tear your clothes, and put on sackcloth, and mourn over Abner.\" And King David followed the bier.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> They buried Abner at Hebron. The king lifted up his voice and wept at the grave of Abner, and all the people wept.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> The king lamented for Abner, saying, \"Should Abner die as a fool dies?</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Your hands were not bound, your feet were not fettered; as one falls before the wicked you have fallen.\" And all the people wept over him again.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Then all the people came to persuade David to eat something while it was still day; but David swore, saying, \"So may God do to me, and more, if I taste bread or anything else before the sun goes down!\"</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> All the people took notice of it, and it pleased them; just as everything the king did pleased all the people.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> So all the people and all Israel understood that day that the king had no part in the killing of Abner son of Ner.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> And the king said to his servants, \"Do you not know that a prince and a great man has fallen this day in Israel?</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> Today I am powerless, even though anointed king; these men, the sons of Zeruiah, are too violent for me. The LORD pay back the one who does wickedly in accordance with his wickedness!\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> When Saul's son Ishbaal heard that Abner had died at Hebron, his courage failed, and all Israel was dismayed. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Saul's son had two captains of raiding bands; the name of the one was Baanah, and the name of the other Rechab. They were sons of Rimmon a Benjaminite from Beeroth-- for Beeroth is considered to belong to Benjamin.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> (Now the people of Beeroth had fled to Gittaim and are there as resident aliens to this day).</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Saul's son Jonathan had a son who was crippled in his feet. He was five years old when the news about Saul and Jonathan came from Jezreel. His nurse picked him up and fled; and, in her haste to flee, it happened that he fell and became lame. His name was Mephibosheth. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Now the sons of Rimmon the Beerothite, Rechab and Baanah, set out, and about the heat of the day they came to the house of Ishbaal, while he was taking his noonday rest.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> They came inside the house as though to take wheat, and they struck him in the stomach; then Rechab and his brother Baanah escaped. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Now they had come into the house while he was lying on his couch in his bedchamber; they attacked him, killed him, and beheaded him. Then they took his head and traveled by way of the Arabah all night long.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> They brought the head of Ishbaal to David at Hebron and said to the king, \"Here is the head of Ishbaal, son of Saul, your enemy, who sought your life; the LORD has avenged my lord the king this day on Saul and on his offspring.\" </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> David answered Rechab and his brother Baanah, the sons of Rimmon the Beerothite, \"As the LORD lives, who has redeemed my life out of every adversity,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> when the one who told me, 'See, Saul is dead,' thought he was bringing good news, I seized him and killed him at Ziklag-- this was the reward I gave him for his news.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> How much more then, when wicked men have killed a righteous man on his bed in his own house! And now shall I not require his blood at your hand, and destroy you from the earth?\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> So David commanded the young men, and they killed them; they cut off their hands and feet, and hung their bodies beside the pool at Hebron. But the head of Ishbaal they took and buried in the tomb of Abner at Hebron. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"5\">\r\n\t\t\t<VERS vnumber=\"1\"> Then all the tribes of Israel came to David at Hebron, and said, \"Look, we are your bone and flesh.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> For some time, while Saul was king over us, it was you who led out Israel and brought it in. The LORD said to you: It is you who shall be shepherd of my people Israel, you who shall be ruler over Israel.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> So all the elders of Israel came to the king at Hebron; and King David made a covenant with them at Hebron before the LORD, and they anointed David king over Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> David was thirty years old when he began to reign, and he reigned forty years.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> At Hebron he reigned over Judah seven years and six months; and at Jerusalem he reigned over all Israel and Judah thirty-three years.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The king and his men marched to Jerusalem against the Jebusites, the inhabitants of the land, who said to David, \"You will not come in here, even the blind and the lame will turn you back\"-- thinking, \"David cannot come in here.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Nevertheless David took the stronghold of Zion, which is now the city of David.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> David had said on that day, \"Whoever would strike down the Jebusites, let him get up the water shaft to attack the lame and the blind, those whom David hates.\" Therefore it is said, \"The blind and the lame shall not come into the house.\" </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> David occupied the stronghold, and named it the city of David. David built the city all around from the Millo inward.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And David became greater and greater, for the LORD, the God of hosts, was with him.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> King Hiram of Tyre sent messengers to David, along with cedar trees, and carpenters and masons who built David a house.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> David then perceived that the LORD had established him king over Israel, and that he had exalted his kingdom for the sake of his people Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> In Jerusalem, after he came from Hebron, David took more concubines and wives; and more sons and daughters were born to David.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> These are the names of those who were born to him in Jerusalem: Shammua, Shobab, Nathan, Solomon,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Ibhar, Elishua, Nepheg, Japhia,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Elishama, Eliada, and Eliphelet.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> When the Philistines heard that David had been anointed king over Israel, all the Philistines went up in search of David; but David heard about it and went down to the stronghold.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Now the Philistines had come and spread out in the valley of Rephaim.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> David inquired of the LORD, \"Shall I go up against the Philistines? Will you give them into my hand?\" The LORD said to David, \"Go up; for I will certainly give the Philistines into your hand.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> So David came to Baal-perazim, and David defeated them there. He said, \"The LORD has burst forth against my enemies before me, like a bursting flood.\" Therefore that place is called Baal-perazim. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> The Philistines abandoned their idols there, and David and his men carried them away.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Once again the Philistines came up, and were spread out in the valley of Rephaim.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> When David inquired of the LORD, he said, \"You shall not go up; go around to their rear, and come upon them opposite the balsam trees.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> When you hear the sound of marching in the tops of the balsam trees, then be on the alert; for then the LORD has gone out before you to strike down the army of the Philistines.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> David did just as the LORD had commanded him; and he struck down the Philistines from Geba all the way to Gezer.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"6\">\r\n\t\t\t<VERS vnumber=\"1\"> David again gathered all the chosen men of Israel, thirty thousand.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> David and all the people with him set out and went from Baale-judah, to bring up from there the ark of God, which is called by the name of the LORD of hosts who is enthroned on the cherubim.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> They carried the ark of God on a new cart, and brought it out of the house of Abinadab, which was on the hill. Uzzah and Ahio, the sons of Abinadab, were driving the new cart </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> with the ark of God; and Ahio went in front of the ark. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> David and all the house of Israel were dancing before the LORD with all their might, with songs and lyres and harps and tambourines and castanets and cymbals. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> When they came to the threshing floor of Nacon, Uzzah reached out his hand to the ark of God and took hold of it, for the oxen shook it.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The anger of the LORD was kindled against Uzzah; and God struck him there because he reached out his hand to the ark; and he died there beside the ark of God. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> David was angry because the LORD had burst forth with an outburst upon Uzzah; so that place is called Perez-uzzah, to this day. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> David was afraid of the LORD that day; he said, \"How can the ark of the LORD come into my care?\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> So David was unwilling to take the ark of the LORD into his care in the city of David; instead David took it to the house of Obed-edom the Gittite.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The ark of the LORD remained in the house of Obed-edom the Gittite three months; and the LORD blessed Obed-edom and all his household.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> It was told King David, \"The LORD has blessed the household of Obed-edom and all that belongs to him, because of the ark of God.\" So David went and brought up the ark of God from the house of Obed-edom to the city of David with rejoicing;</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> and when those who bore the ark of the LORD had gone six paces, he sacrificed an ox and a fatling.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> David danced before the LORD with all his might; David was girded with a linen ephod.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> So David and all the house of Israel brought up the ark of the LORD with shouting, and with the sound of the trumpet.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> As the ark of the LORD came into the city of David, Michal daughter of Saul looked out of the window, and saw King David leaping and dancing before the LORD; and she despised him in her heart.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> They brought in the ark of the LORD, and set it in its place, inside the tent that David had pitched for it; and David offered burnt offerings and offerings of well-being before the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> When David had finished offering the burnt offerings and the offerings of well-being, he blessed the people in the name of the LORD of hosts,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> and distributed food among all the people, the whole multitude of Israel, both men and women, to each a cake of bread, a portion of meat, and a cake of raisins. Then all the people went back to their homes. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> David returned to bless his household. But Michal the daughter of Saul came out to meet David, and said, \"How the king of Israel honored himself today, uncovering himself today before the eyes of his servants' maids, as any vulgar fellow might shamelessly uncover himself!\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> David said to Michal, \"It was before the LORD, who chose me in place of your father and all his household, to appoint me as prince over Israel, the people of the LORD, that I have danced before the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> I will make myself yet more contemptible than this, and I will be abased in my own eyes; but by the maids of whom you have spoken, by them I shall be held in honor.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> And Michal the daughter of Saul had no child to the day of her death.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"7\">\r\n\t\t\t<VERS vnumber=\"1\"> Now when the king was settled in his house, and the LORD had given him rest from all his enemies around him,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> the king said to the prophet Nathan, \"See now, I am living in a house of cedar, but the ark of God stays in a tent.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Nathan said to the king, \"Go, do all that you have in mind; for the LORD is with you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But that same night the word of the LORD came to Nathan:</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Go and tell my servant David: Thus says the LORD: Are you the one to build me a house to live in?</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> I have not lived in a house since the day I brought up the people of Israel from Egypt to this day, but I have been moving about in a tent and a tabernacle.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Wherever I have moved about among all the people of Israel, did I ever speak a word with any of the tribal leaders of Israel, whom I commanded to shepherd my people Israel, saying, \"Why have you not built me a house of cedar?\" </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Now therefore thus you shall say to my servant David: Thus says the LORD of hosts: I took you from the pasture, from following the sheep to be prince over my people Israel;</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> and I have been with you wherever you went, and have cut off all your enemies from before you; and I will make for you a great name, like the name of the great ones of the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And I will appoint a place for my people Israel and will plant them, so that they may live in their own place, and be disturbed no more; and evildoers shall afflict them no more, as formerly,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> from the time that I appointed judges over my people Israel; and I will give you rest from all your enemies. Moreover the LORD declares to you that the LORD will make you a house.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> When your days are fulfilled and you lie down with your ancestors, I will raise up your offspring after you, who shall come forth from your body, and I will establish his kingdom.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> He shall build a house for my name, and I will establish the throne of his kingdom forever.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> I will be a father to him, and he shall be a son to me. When he commits iniquity, I will punish him with a rod such as mortals use, with blows inflicted by human beings.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> But I will not take my steadfast love from him, as I took it from Saul, whom I put away from before you. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Your house and your kingdom shall be made sure forever before me; your throne shall be established forever. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> In accordance with all these words and with all this vision, Nathan spoke to David.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then King David went in and sat before the LORD, and said, \"Who am I, O Lord GOD, and what is my house, that you have brought me thus far?</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> And yet this was a small thing in your eyes, O Lord GOD; you have spoken also of your servant's house for a great while to come. May this be instruction for the people, O Lord GOD! </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> And what more can David say to you? For you know your servant, O Lord GOD!</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Because of your promise, and according to your own heart, you have wrought all this greatness, so that your servant may know it.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Therefore you are great, O LORD God; for there is no one like you, and there is no God besides you, according to all that we have heard with our ears.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Who is like your people, like Israel? Is there another nation on earth whose God went to redeem it as a people, and to make a name for himself, doing great and awesome things for them, by driving out before his people nations and their gods? </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> And you established your people Israel for yourself to be your people forever; and you, O LORD, became their God.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> And now, O LORD God, as for the word that you have spoken concerning your servant and concerning his house, confirm it forever; do as you have promised.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Thus your name will be magnified forever in the saying, 'The LORD of hosts is God over Israel'; and the house of your servant David will be established before you.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> For you, O LORD of hosts, the God of Israel, have made this revelation to your servant, saying, 'I will build you a house'; therefore your servant has found courage to pray this prayer to you.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> And now, O Lord GOD, you are God, and your words are true, and you have promised this good thing to your servant;</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> now therefore may it please you to bless the house of your servant, so that it may continue forever before you; for you, O Lord GOD, have spoken, and with your blessing shall the house of your servant be blessed forever.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"8\">\r\n\t\t\t<VERS vnumber=\"1\"> Some time afterward, David attacked the Philistines and subdued them; David took Metheg-ammah out of the hand of the Philistines.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He also defeated the Moabites and, making them lie down on the ground, measured them off with a cord; he measured two lengths of cord for those who were to be put to death, and one length for those who were to be spared. And the Moabites became servants to David and brought tribute. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> David also struck down King Hadadezer son of Rehob of Zobah, as he went to restore his monument at the river Euphrates. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> David took from him one thousand seven hundred horsemen, and twenty thousand foot soldiers. David hamstrung all the chariot horses, but left enough for a hundred chariots.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> When the Arameans of Damascus came to help King Hadadezer of Zobah, David killed twenty-two thousand men of the Arameans.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then David put garrisons among the Arameans of Damascus; and the Arameans became servants to David and brought tribute. The LORD gave victory to David wherever he went.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> David took the gold shields that were carried by the servants of Hadadezer, and brought them to Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> From Betah and from Berothai, towns of Hadadezer, King David took a great amount of bronze.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> When King Toi of Hamath heard that David had defeated the whole army of Hadadezer,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Toi sent his son Joram to King David, to greet him and to congratulate him because he had fought against Hadadezer and defeated him. Now Hadadezer had often been at war with Toi. Joram brought with him articles of silver, gold, and bronze;</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> these also King David dedicated to the LORD, together with the silver and gold that he dedicated from all the nations he subdued,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> from Edom, Moab, the Ammonites, the Philistines, Amalek, and from the spoil of King Hadadezer son of Rehob of Zobah.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> David won a name for himself. When he returned, he killed eighteen thousand Edomites in the Valley of Salt. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> He put garrisons in Edom; throughout all Edom he put garrisons, and all the Edomites became David's servants. And the LORD gave victory to David wherever he went.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> So David reigned over all Israel; and David administered justice and equity to all his people.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Joab son of Zeruiah was over the army; Jehoshaphat son of Ahilud was recorder;</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Zadok son of Ahitub and Ahimelech son of Abiathar were priests; Seraiah was secretary;</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Benaiah son of Jehoiada was over the Cherethites and the Pelethites; and David's sons were priests. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"9\">\r\n\t\t\t<VERS vnumber=\"1\"> David asked, \"Is there still anyone left of the house of Saul to whom I may show kindness for Jonathan's sake?\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Now there was a servant of the house of Saul whose name was Ziba, and he was summoned to David. The king said to him, \"Are you Ziba?\" And he said, \"At your service!\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The king said, \"Is there anyone remaining of the house of Saul to whom I may show the kindness of God?\" Ziba said to the king, \"There remains a son of Jonathan; he is crippled in his feet.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The king said to him, \"Where is he?\" Ziba said to the king, \"He is in the house of Machir son of Ammiel, at Lo-debar.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then King David sent and brought him from the house of Machir son of Ammiel, at Lo-debar.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Mephibosheth son of Jonathan son of Saul came to David, and fell on his face and did obeisance. David said, \"Mephibosheth!\" He answered, \"I am your servant.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> David said to him, \"Do not be afraid, for I will show you kindness for the sake of your father Jonathan; I will restore to you all the land of your grandfather Saul, and you yourself shall eat at my table always.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> He did obeisance and said, \"What is your servant, that you should look upon a dead dog such as I?\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then the king summoned Saul's servant Ziba, and said to him, \"All that belonged to Saul and to all his house I have given to your master's grandson.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> You and your sons and your servants shall till the land for him, and shall bring in the produce, so that your master's grandson may have food to eat; but your master's grandson Mephibosheth shall always eat at my table.\" Now Ziba had fifteen sons and twenty servants. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then Ziba said to the king, \"According to all that my lord the king commands his servant, so your servant will do.\" Mephibosheth ate at David's table, like one of the king's sons. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Mephibosheth had a young son whose name was Mica. And all who lived in Ziba's house became Mephibosheth's servants. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Mephibosheth lived in Jerusalem, for he always ate at the king's table. Now he was lame in both his feet. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"10\">\r\n\t\t\t<VERS vnumber=\"1\"> Some time afterward, the king of the Ammonites died, and his son Hanun succeeded him.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> David said, \"I will deal loyally with Hanun son of Nahash, just as his father dealt loyally with me.\" So David sent envoys to console him concerning his father. When David's envoys came into the land of the Ammonites,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> the princes of the Ammonites said to their lord Hanun, \"Do you really think that David is honoring your father just because he has sent messengers with condolences to you? Has not David sent his envoys to you to search the city, to spy it out, and to overthrow it?\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> So Hanun seized David's envoys, shaved off half the beard of each, cut off their garments in the middle at their hips, and sent them away.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> When David was told, he sent to meet them, for the men were greatly ashamed. The king said, \"Remain at Jericho until your beards have grown, and then return.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> When the Ammonites saw that they had become odious to David, the Ammonites sent and hired the Arameans of Beth-rehob and the Arameans of Zobah, twenty thousand foot soldiers, as well as the king of Maacah, one thousand men, and the men of Tob, twelve thousand men.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> When David heard of it, he sent Joab and all the army with the warriors.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The Ammonites came out and drew up in battle array at the entrance of the gate; but the Arameans of Zobah and of Rehob, and the men of Tob and Maacah, were by themselves in the open country.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> When Joab saw that the battle was set against him both in front and in the rear, he chose some of the picked men of Israel, and arrayed them against the Arameans;</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> the rest of his men he put in the charge of his brother Abishai, and he arrayed them against the Ammonites.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> He said, \"If the Arameans are too strong for me, then you shall help me; but if the Ammonites are too strong for you, then I will come and help you.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Be strong, and let us be courageous for the sake of our people, and for the cities of our God; and may the LORD do what seems good to him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> So Joab and the people who were with him moved forward into battle against the Arameans; and they fled before him.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> When the Ammonites saw that the Arameans fled, they likewise fled before Abishai, and entered the city. Then Joab returned from fighting against the Ammonites, and came to Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> But when the Arameans saw that they had been defeated by Israel, they gathered themselves together.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Hadadezer sent and brought out the Arameans who were beyond the Euphrates; and they came to Helam, with Shobach the commander of the army of Hadadezer at their head.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> When it was told David, he gathered all Israel together, and crossed the Jordan, and came to Helam. The Arameans arrayed themselves against David and fought with him.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The Arameans fled before Israel; and David killed of the Arameans seven hundred chariot teams, and forty thousand horsemen, and wounded Shobach the commander of their army, so that he died there. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> When all the kings who were servants of Hadadezer saw that they had been defeated by Israel, they made peace with Israel, and became subject to them. So the Arameans were afraid to help the Ammonites any more.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"11\">\r\n\t\t\t<VERS vnumber=\"1\"> In the spring of the year, the time when kings go out to battle, David sent Joab with his officers and all Israel with him; they ravaged the Ammonites, and besieged Rabbah. But David remained at Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> It happened, late one afternoon, when David rose from his couch and was walking about on the roof of the king's house, that he saw from the roof a woman bathing; the woman was very beautiful.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> David sent someone to inquire about the woman. It was reported, \"This is Bathsheba daughter of Eliam, the wife of Uriah the Hittite.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> So David sent messengers to get her, and she came to him, and he lay with her. (Now she was purifying herself after her period.) Then she returned to her house.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The woman conceived; and she sent and told David, \"I am pregnant.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> So David sent word to Joab, \"Send me Uriah the Hittite.\" And Joab sent Uriah to David.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> When Uriah came to him, David asked how Joab and the people fared, and how the war was going.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then David said to Uriah, \"Go down to your house, and wash your feet.\" Uriah went out of the king's house, and there followed him a present from the king.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> But Uriah slept at the entrance of the king's house with all the servants of his lord, and did not go down to his house.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> When they told David, \"Uriah did not go down to his house,\" David said to Uriah, \"You have just come from a journey. Why did you not go down to your house?\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Uriah said to David, \"The ark and Israel and Judah remain in booths; and my lord Joab and the servants of my lord are camping in the open field; shall I then go to my house, to eat and to drink, and to lie with my wife? As you live, and as your soul lives, I will not do such a thing.\" </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then David said to Uriah, \"Remain here today also, and tomorrow I will send you back.\" So Uriah remained in Jerusalem that day. On the next day,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> David invited him to eat and drink in his presence and made him drunk; and in the evening he went out to lie on his couch with the servants of his lord, but he did not go down to his house.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> In the morning David wrote a letter to Joab, and sent it by the hand of Uriah.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> In the letter he wrote, \"Set Uriah in the forefront of the hardest fighting, and then draw back from him, so that he may be struck down and die.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> As Joab was besieging the city, he assigned Uriah to the place where he knew there were valiant warriors.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The men of the city came out and fought with Joab; and some of the servants of David among the people fell. Uriah the Hittite was killed as well.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then Joab sent and told David all the news about the fighting;</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> and he instructed the messenger, \"When you have finished telling the king all the news about the fighting,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> then, if the king's anger rises, and if he says to you, 'Why did you go so near the city to fight? Did you not know that they would shoot from the wall?</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Who killed Abimelech son of Jerubbaal? Did not a woman throw an upper millstone on him from the wall, so that he died at Thebez? Why did you go so near the wall?' then you shall say, 'Your servant Uriah the Hittite is dead too.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> So the messenger went, and came and told David all that Joab had sent him to tell.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> The messenger said to David, \"The men gained an advantage over us, and came out against us in the field; but we drove them back to the entrance of the gate.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Then the archers shot at your servants from the wall; some of the king's servants are dead; and your servant Uriah the Hittite is dead also.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> David said to the messenger, \"Thus you shall say to Joab, 'Do not let this matter trouble you, for the sword devours now one and now another; press your attack on the city, and overthrow it.' And encourage him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> When the wife of Uriah heard that her husband was dead, she made lamentation for him.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> When the mourning was over, David sent and brought her to his house, and she became his wife, and bore him a son.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"12\">\r\n\t\t\t<VERS vnumber=\"1\"> But the thing that David had done displeased the LORD, and the LORD sent Nathan to David. He came to him, and said to him, \"There were two men in a certain city, the one rich and the other poor.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The rich man had very many flocks and herds;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> but the poor man had nothing but one little ewe lamb, which he had bought. He brought it up, and it grew up with him and with his children; it used to eat of his meager fare, and drink from his cup, and lie in his bosom, and it was like a daughter to him.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Now there came a traveler to the rich man, and he was loath to take one of his own flock or herd to prepare for the wayfarer who had come to him, but he took the poor man's lamb, and prepared that for the guest who had come to him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then David's anger was greatly kindled against the man. He said to Nathan, \"As the LORD lives, the man who has done this deserves to die;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> he shall restore the lamb fourfold, because he did this thing, and because he had no pity.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Nathan said to David, \"You are the man! Thus says the LORD, the God of Israel: I anointed you king over Israel, and I rescued you from the hand of Saul;</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> I gave you your master's house, and your master's wives into your bosom, and gave you the house of Israel and of Judah; and if that had been too little, I would have added as much more.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Why have you despised the word of the LORD, to do what is evil in his sight? You have struck down Uriah the Hittite with the sword, and have taken his wife to be your wife, and have killed him with the sword of the Ammonites.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Now therefore the sword shall never depart from your house, for you have despised me, and have taken the wife of Uriah the Hittite to be your wife.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Thus says the LORD: I will raise up trouble against you from within your own house; and I will take your wives before your eyes, and give them to your neighbor, and he shall lie with your wives in the sight of this very sun.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> For you did it secretly; but I will do this thing before all Israel, and before the sun.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> David said to Nathan, \"I have sinned against the LORD.\" Nathan said to David, \"Now the LORD has put away your sin; you shall not die.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Nevertheless, because by this deed you have utterly scorned the LORD, the child that is born to you shall die.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Then Nathan went to his house. The LORD struck the child that Uriah's wife bore to David, and it became very ill.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> David therefore pleaded with God for the child; David fasted, and went in and lay all night on the ground.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The elders of his house stood beside him, urging him to rise from the ground; but he would not, nor did he eat food with them.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> On the seventh day the child died. And the servants of David were afraid to tell him that the child was dead; for they said, \"While the child was still alive, we spoke to him, and he did not listen to us; how then can we tell him the child is dead? He may do himself some harm.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> But when David saw that his servants were whispering together, he perceived that the child was dead; and David said to his servants, \"Is the child dead?\" They said, \"He is dead.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Then David rose from the ground, washed, anointed himself, and changed his clothes. He went into the house of the LORD, and worshiped; he then went to his own house; and when he asked, they set food before him and he ate.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then his servants said to him, \"What is this thing that you have done? You fasted and wept for the child while it was alive; but when the child died, you rose and ate food.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> He said, \"While the child was still alive, I fasted and wept; for I said, 'Who knows? The LORD may be gracious to me, and the child may live.'</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> But now he is dead; why should I fast? Can I bring him back again? I shall go to him, but he will not return to me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Then David consoled his wife Bathsheba, and went to her, and lay with her; and she bore a son, and he named him Solomon. The LORD loved him,</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> and sent a message by the prophet Nathan; so he named him Jedidiah, because of the LORD. </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Now Joab fought against Rabbah of the Ammonites, and took the royal city.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Joab sent messengers to David, and said, \"I have fought against Rabbah; moreover, I have taken the water city.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Now, then, gather the rest of the people together, and encamp against the city, and take it; or I myself will take the city, and it will be called by my name.\"</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> So David gathered all the people together and went to Rabbah, and fought against it and took it.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> He took the crown of Milcom from his head; the weight of it was a talent of gold, and in it was a precious stone; and it was placed on David's head. He also brought forth the spoil of the city, a very great amount. </VERS>\r\n\t\t\t<VERS vnumber=\"31\"> He brought out the people who were in it, and set them to work with saws and iron picks and iron axes, or sent them to the brickworks. Thus he did to all the cities of the Ammonites. Then David and all the people returned to Jerusalem.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"13\">\r\n\t\t\t<VERS vnumber=\"1\"> Some time passed. David's son Absalom had a beautiful sister whose name was Tamar; and David's son Amnon fell in love with her.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Amnon was so tormented that he made himself ill because of his sister Tamar, for she was a virgin and it seemed impossible to Amnon to do anything to her.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> But Amnon had a friend whose name was Jonadab, the son of David's brother Shimeah; and Jonadab was a very crafty man.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> He said to him, \"O son of the king, why are you so haggard morning after morning? Will you not tell me?\" Amnon said to him, \"I love Tamar, my brother Absalom's sister.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Jonadab said to him, \"Lie down on your bed, and pretend to be ill; and when your father comes to see you, say to him, 'Let my sister Tamar come and give me something to eat, and prepare the food in my sight, so that I may see it and eat it from her hand.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> So Amnon lay down, and pretended to be ill; and when the king came to see him, Amnon said to the king, \"Please let my sister Tamar come and make a couple of cakes in my sight, so that I may eat from her hand.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then David sent home to Tamar, saying, \"Go to your brother Amnon's house, and prepare food for him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> So Tamar went to her brother Amnon's house, where he was lying down. She took dough, kneaded it, made cakes in his sight, and baked the cakes.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then she took the pan and set them out before him, but he refused to eat. Amnon said, \"Send out everyone from me.\" So everyone went out from him. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then Amnon said to Tamar, \"Bring the food into the chamber, so that I may eat from your hand.\" So Tamar took the cakes she had made, and brought them into the chamber to Amnon her brother.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But when she brought them near him to eat, he took hold of her, and said to her, \"Come, lie with me, my sister.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> She answered him, \"No, my brother, do not force me; for such a thing is not done in Israel; do not do anything so vile!</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> As for me, where could I carry my shame? And as for you, you would be as one of the scoundrels in Israel. Now therefore, I beg you, speak to the king; for he will not withhold me from you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But he would not listen to her; and being stronger than she, he forced her and lay with her.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Then Amnon was seized with a very great loathing for her; indeed, his loathing was even greater than the lust he had felt for her. Amnon said to her, \"Get out!\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> But she said to him, \"No, my brother; for this wrong in sending me away is greater than the other that you did to me.\" But he would not listen to her. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> He called the young man who served him and said, \"Put this woman out of my presence, and bolt the door after her.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> (Now she was wearing a long robe with sleeves; for this is how the virgin daughters of the king were clothed in earlier times.) So his servant put her out, and bolted the door after her.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> But Tamar put ashes on her head, and tore the long robe that she was wearing; she put her hand on her head, and went away, crying aloud as she went.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Her brother Absalom said to her, \"Has Amnon your brother been with you? Be quiet for now, my sister; he is your brother; do not take this to heart.\" So Tamar remained, a desolate woman, in her brother Absalom's house.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> When King David heard of all these things, he became very angry, but he would not punish his son Amnon, because he loved him, for he was his firstborn. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> But Absalom spoke to Amnon neither good nor bad; for Absalom hated Amnon, because he had raped his sister Tamar.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> After two full years Absalom had sheepshearers at Baal-hazor, which is near Ephraim, and Absalom invited all the king's sons.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Absalom came to the king, and said, \"Your servant has sheepshearers; will the king and his servants please go with your servant?\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> But the king said to Absalom, \"No, my son, let us not all go, or else we will be burdensome to you.\" He pressed him, but he would not go but gave him his blessing.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Then Absalom said, \"If not, please let my brother Amnon go with us.\" The king said to him, \"Why should he go with you?\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> But Absalom pressed him until he let Amnon and all the king's sons go with him. Absalom made a feast like a king's feast. </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Then Absalom commanded his servants, \"Watch when Amnon's heart is merry with wine, and when I say to you, 'Strike Amnon,' then kill him. Do not be afraid; have I not myself commanded you? Be courageous and valiant.\"</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> So the servants of Absalom did to Amnon as Absalom had commanded. Then all the king's sons rose, and each mounted his mule and fled.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> While they were on the way, the report came to David that Absalom had killed all the king's sons, and not one of them was left.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> The king rose, tore his garments, and lay on the ground; and all his servants who were standing by tore their garments.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> But Jonadab, the son of David's brother Shimeah, said, \"Let not my lord suppose that they have killed all the young men the king's sons; Amnon alone is dead. This has been determined by Absalom from the day Amnon raped his sister Tamar. </VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Now therefore, do not let my lord the king take it to heart, as if all the king's sons were dead; for Amnon alone is dead.\"</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> But Absalom fled. When the young man who kept watch looked up, he saw many people coming from the Horonaim road by the side of the mountain. </VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Jonadab said to the king, \"See, the king's sons have come; as your servant said, so it has come about.\"</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> As soon as he had finished speaking, the king's sons arrived, and raised their voices and wept; and the king and all his servants also wept very bitterly.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> But Absalom fled, and went to Talmai son of Ammihud, king of Geshur. David mourned for his son day after day.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Absalom, having fled to Geshur, stayed there three years.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> And the heart of the king went out, yearning for Absalom; for he was now consoled over the death of Amnon.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"14\">\r\n\t\t\t<VERS vnumber=\"1\"> Now Joab son of Zeruiah perceived that the king's mind was on Absalom.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Joab sent to Tekoa and brought from there a wise woman. He said to her, \"Pretend to be a mourner; put on mourning garments, do not anoint yourself with oil, but behave like a woman who has been mourning many days for the dead.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Go to the king and speak to him as follows.\" And Joab put the words into her mouth.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> When the woman of Tekoa came to the king, she fell on her face to the ground and did obeisance, and said, \"Help, O king!\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The king asked her, \"What is your trouble?\" She answered, \"Alas, I am a widow; my husband is dead.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Your servant had two sons, and they fought with one another in the field; there was no one to part them, and one struck the other and killed him.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Now the whole family has risen against your servant. They say, 'Give up the man who struck his brother, so that we may kill him for the life of his brother whom he murdered, even if we destroy the heir as well.' Thus they would quench my one remaining ember, and leave to my husband neither name nor remnant on the face of the earth.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then the king said to the woman, \"Go to your house, and I will give orders concerning you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The woman of Tekoa said to the king, \"On me be the guilt, my lord the king, and on my father's house; let the king and his throne be guiltless.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The king said, \"If anyone says anything to you, bring him to me, and he shall never touch you again.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then she said, \"Please, may the king keep the LORD your God in mind, so that the avenger of blood may kill no more, and my son not be destroyed.\" He said, \"As the LORD lives, not one hair of your son shall fall to the ground.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then the woman said, \"Please let your servant speak a word to my lord the king.\" He said, \"Speak.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The woman said, \"Why then have you planned such a thing against the people of God? For in giving this decision the king convicts himself, inasmuch as the king does not bring his banished one home again.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> We must all die; we are like water spilled on the ground, which cannot be gathered up. But God will not take away a life; he will devise plans so as not to keep an outcast banished forever from his presence. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Now I have come to say this to my lord the king because the people have made me afraid; your servant thought, 'I will speak to the king; it may be that the king will perform the request of his servant.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> For the king will hear, and deliver his servant from the hand of the man who would cut both me and my son off from the heritage of God.'</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Your servant thought, 'The word of my lord the king will set me at rest'; for my lord the king is like the angel of God, discerning good and evil. The LORD your God be with you!\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then the king answered the woman, \"Do not withhold from me anything I ask you.\" The woman said, \"Let my lord the king speak.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The king said, \"Is the hand of Joab with you in all this?\" The woman answered and said, \"As surely as you live, my lord the king, one cannot turn right or left from anything that my lord the king has said. For it was your servant Joab who commanded me; it was he who put all these words into the mouth of your servant.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> In order to change the course of affairs your servant Joab did this. But my lord has wisdom like the wisdom of the angel of God to know all things that are on the earth.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then the king said to Joab, \"Very well, I grant this; go, bring back the young man Absalom.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Joab prostrated himself with his face to the ground and did obeisance, and blessed the king; and Joab said, \"Today your servant knows that I have found favor in your sight, my lord the king, in that the king has granted the request of his servant.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> So Joab set off, went to Geshur, and brought Absalom to Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> The king said, \"Let him go to his own house; he is not to come into my presence.\" So Absalom went to his own house, and did not come into the king's presence.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Now in all Israel there was no one to be praised so much for his beauty as Absalom; from the sole of his foot to the crown of his head there was no blemish in him.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> When he cut the hair of his head (for at the end of every year he used to cut it; when it was heavy on him, he cut it), he weighed the hair of his head, two hundred shekels by the king's weight.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> There were born to Absalom three sons, and one daughter whose name was Tamar; she was a beautiful woman.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> So Absalom lived two full years in Jerusalem, without coming into the king's presence.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Then Absalom sent for Joab to send him to the king; but Joab would not come to him. He sent a second time, but Joab would not come.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Then he said to his servants, \"Look, Joab's field is next to mine, and he has barley there; go and set it on fire.\" So Absalom's servants set the field on fire.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Then Joab rose and went to Absalom at his house, and said to him, \"Why have your servants set my field on fire?\"</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Absalom answered Joab, \"Look, I sent word to you: Come here, that I may send you to the king with the question, 'Why have I come from Geshur? It would be better for me to be there still.' Now let me go into the king's presence; if there is guilt in me, let him kill me!\"</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Then Joab went to the king and told him; and he summoned Absalom. So he came to the king and prostrated himself with his face to the ground before the king; and the king kissed Absalom.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"15\">\r\n\t\t\t<VERS vnumber=\"1\"> After this Absalom got himself a chariot and horses, and fifty men to run ahead of him.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Absalom used to rise early and stand beside the road into the gate; and when anyone brought a suit before the king for judgment, Absalom would call out and say, \"From what city are you?\" When the person said, \"Your servant is of such and such a tribe in Israel,\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Absalom would say, \"See, your claims are good and right; but there is no one deputed by the king to hear you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Absalom said moreover, \"If only I were judge in the land! Then all who had a suit or cause might come to me, and I would give them justice.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Whenever people came near to do obeisance to him, he would put out his hand and take hold of them, and kiss them.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Thus Absalom did to every Israelite who came to the king for judgment; so Absalom stole the hearts of the people of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> At the end of four years Absalom said to the king, \"Please let me go to Hebron and pay the vow that I have made to the LORD. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> For your servant made a vow while I lived at Geshur in Aram: If the LORD will indeed bring me back to Jerusalem, then I will worship the LORD in Hebron.\" </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The king said to him, \"Go in peace.\" So he got up, and went to Hebron.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> But Absalom sent secret messengers throughout all the tribes of Israel, saying, \"As soon as you hear the sound of the trumpet, then shout: Absalom has become king at Hebron!\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Two hundred men from Jerusalem went with Absalom; they were invited guests, and they went in their innocence, knowing nothing of the matter.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> While Absalom was offering the sacrifices, he sent for Ahithophel the Gilonite, David's counselor, from his city Giloh. The conspiracy grew in strength, and the people with Absalom kept increasing. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> A messenger came to David, saying, \"The hearts of the Israelites have gone after Absalom.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then David said to all his officials who were with him at Jerusalem, \"Get up! Let us flee, or there will be no escape for us from Absalom. Hurry, or he will soon overtake us, and bring disaster down upon us, and attack the city with the edge of the sword.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The king's officials said to the king, \"Your servants are ready to do whatever our lord the king decides.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> So the king left, followed by all his household, except ten concubines whom he left behind to look after the house.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The king left, followed by all the people; and they stopped at the last house.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> All his officials passed by him; and all the Cherethites, and all the Pelethites, and all the six hundred Gittites who had followed him from Gath, passed on before the king.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Then the king said to Ittai the Gittite, \"Why are you also coming with us? Go back, and stay with the king; for you are a foreigner, and also an exile from your home.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> You came only yesterday, and shall I today make you wander about with us, while I go wherever I can? Go back, and take your kinsfolk with you; and may the LORD show steadfast love and faithfulness to you.\" </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> But Ittai answered the king, \"As the LORD lives, and as my lord the king lives, wherever my lord the king may be, whether for death or for life, there also your servant will be.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> David said to Ittai, \"Go then, march on.\" So Ittai the Gittite marched on, with all his men and all the little ones who were with him.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> The whole country wept aloud as all the people passed by; the king crossed the Wadi Kidron, and all the people moved on toward the wilderness.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Abiathar came up, and Zadok also, with all the Levites, carrying the ark of the covenant of God. They set down the ark of God, until the people had all passed out of the city.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Then the king said to Zadok, \"Carry the ark of God back into the city. If I find favor in the eyes of the LORD, he will bring me back and let me see both it and the place where it stays.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> But if he says, 'I take no pleasure in you,' here I am, let him do to me what seems good to him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> The king also said to the priest Zadok, \"Look, go back to the city in peace, you and Abiathar, with your two sons, Ahimaaz your son, and Jonathan son of Abiathar. </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> See, I will wait at the fords of the wilderness until word comes from you to inform me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> So Zadok and Abiathar carried the ark of God back to Jerusalem, and they remained there.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> But David went up the ascent of the Mount of Olives, weeping as he went, with his head covered and walking barefoot; and all the people who were with him covered their heads and went up, weeping as they went.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> David was told that Ahithophel was among the conspirators with Absalom. And David said, \"O LORD, I pray you, turn the counsel of Ahithophel into foolishness.\"</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> When David came to the summit, where God was worshiped, Hushai the Archite came to meet him with his coat torn and earth on his head.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> David said to him, \"If you go on with me, you will be a burden to me.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> But if you return to the city and say to Absalom, 'I will be your servant, O king; as I have been your father's servant in time past, so now I will be your servant,' then you will defeat for me the counsel of Ahithophel.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> The priests Zadok and Abiathar will be with you there. So whatever you hear from the king's house, tell it to the priests Zadok and Abiathar.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Their two sons are with them there, Zadok's son Ahimaaz and Abiathar's son Jonathan; and by them you shall report to me everything you hear.\"</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> So Hushai, David's friend, came into the city, just as Absalom was entering Jerusalem.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"16\">\r\n\t\t\t<VERS vnumber=\"1\"> When David had passed a little beyond the summit, Ziba the servant of Mephibosheth met him, with a couple of donkeys saddled, carrying two hundred loaves of bread, one hundred bunches of raisins, one hundred of summer fruits, and one skin of wine. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The king said to Ziba, \"Why have you brought these?\" Ziba answered, \"The donkeys are for the king's household to ride, the bread and summer fruit for the young men to eat, and the wine is for those to drink who faint in the wilderness.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The king said, \"And where is your master's son?\" Ziba said to the king, \"He remains in Jerusalem; for he said, 'Today the house of Israel will give me back my grandfather's kingdom.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then the king said to Ziba, \"All that belonged to Mephibosheth is now yours.\" Ziba said, \"I do obeisance; let me find favor in your sight, my lord the king.\" </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> When King David came to Bahurim, a man of the family of the house of Saul came out whose name was Shimei son of Gera; he came out cursing.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> He threw stones at David and at all the servants of King David; now all the people and all the warriors were on his right and on his left.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Shimei shouted while he cursed, \"Out! Out! Murderer! Scoundrel!</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The LORD has avenged on all of you the blood of the house of Saul, in whose place you have reigned; and the LORD has given the kingdom into the hand of your son Absalom. See, disaster has overtaken you; for you are a man of blood.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then Abishai son of Zeruiah said to the king, \"Why should this dead dog curse my lord the king? Let me go over and take off his head.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> But the king said, \"What have I to do with you, you sons of Zeruiah? If he is cursing because the LORD has said to him, 'Curse David,' who then shall say, 'Why have you done so?'\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> David said to Abishai and to all his servants, \"My own son seeks my life; how much more now may this Benjaminite! Let him alone, and let him curse; for the LORD has bidden him.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> It may be that the LORD will look on my distress, and the LORD will repay me with good for this cursing of me today.\" </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> So David and his men went on the road, while Shimei went along on the hillside opposite him and cursed as he went, throwing stones and flinging dust at him.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The king and all the people who were with him arrived weary at the Jordan; and there he refreshed himself. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Now Absalom and all the Israelites came to Jerusalem; Ahithophel was with him. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> When Hushai the Archite, David's friend, came to Absalom, Hushai said to Absalom, \"Long live the king! Long live the king!\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Absalom said to Hushai, \"Is this your loyalty to your friend? Why did you not go with your friend?\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Hushai said to Absalom, \"No; but the one whom the LORD and this people and all the Israelites have chosen, his I will be, and with him I will remain.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Moreover, whom should I serve? Should it not be his son? Just as I have served your father, so I will serve you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Then Absalom said to Ahithophel, \"Give us your counsel; what shall we do?\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Ahithophel said to Absalom, \"Go in to your father's concubines, the ones he has left to look after the house; and all Israel will hear that you have made yourself odious to your father, and the hands of all who are with you will be strengthened.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> So they pitched a tent for Absalom upon the roof; and Absalom went in to his father's concubines in the sight of all Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Now in those days the counsel that Ahithophel gave was as if one consulted the oracle of God; so all the counsel of Ahithophel was esteemed, both by David and by Absalom. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"17\">\r\n\t\t\t<VERS vnumber=\"1\"> Moreover Ahithophel said to Absalom, \"Let me choose twelve thousand men, and I will set out and pursue David tonight.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> I will come upon him while he is weary and discouraged, and throw him into a panic; and all the people who are with him will flee. I will strike down only the king,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> and I will bring all the people back to you as a bride comes home to her husband. You seek the life of only one man, and all the people will be at peace.\" </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The advice pleased Absalom and all the elders of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then Absalom said, \"Call Hushai the Archite also, and let us hear too what he has to say.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> When Hushai came to Absalom, Absalom said to him, \"This is what Ahithophel has said; shall we do as he advises? If not, you tell us.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then Hushai said to Absalom, \"This time the counsel that Ahithophel has given is not good.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Hushai continued, \"You know that your father and his men are warriors, and that they are enraged, like a bear robbed of her cubs in the field. Besides, your father is expert in war; he will not spend the night with the troops.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Even now he has hidden himself in one of the pits, or in some other place. And when some of our troops fall at the first attack, whoever hears it will say, 'There has been a slaughter among the troops who follow Absalom.' </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then even the valiant warrior, whose heart is like the heart of a lion, will utterly melt with fear; for all Israel knows that your father is a warrior, and that those who are with him are valiant warriors.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But my counsel is that all Israel be gathered to you, from Dan to Beer-sheba, like the sand by the sea for multitude, and that you go to battle in person.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> So we shall come upon him in whatever place he may be found, and we shall light on him as the dew falls on the ground; and he will not survive, nor will any of those with him.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> If he withdraws into a city, then all Israel will bring ropes to that city, and we shall drag it into the valley, until not even a pebble is to be found there.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> 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 ordained to defeat the good counsel of Ahithophel, so that the LORD might bring ruin on Absalom.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Then Hushai said to the priests Zadok and Abiathar, \"Thus and so did Ahithophel counsel Absalom and the elders of Israel; and thus and so I have counseled.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Therefore send quickly and tell David, 'Do not lodge tonight at the fords of the wilderness, but by all means cross over; otherwise the king and all the people who are with him will be swallowed up.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Jonathan and Ahimaaz were waiting at En-rogel; a servant-girl used to go and tell them, and they would go and tell King David; for they could not risk being seen entering the city.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> But a boy saw them, and told Absalom; so both of them went away quickly, and came to the house of a man at Bahurim, who had a well in his courtyard; and they went down into it.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The man's wife took a covering, stretched it over the well's mouth, and spread out grain on it; and nothing was known of it.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> When Absalom's servants came to the woman at the house, they said, \"Where are Ahimaaz and Jonathan?\" The woman said to them, \"They have crossed over the brook of water.\" And when they had searched and could not find them, they returned to Jerusalem. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> After they had gone, the men came up out of the well, and went and told King David. They said to David, \"Go and cross the water quickly; for thus and so has Ahithophel counseled against you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> So David and all the people who were with him set out and crossed the Jordan; by daybreak not one was left who had not crossed the Jordan.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> When Ahithophel saw that his counsel was not followed, he saddled his donkey and went off home to his own city. He set his house in order, and hanged himself; he died and was buried in the tomb of his father.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Then David came to Mahanaim, while Absalom crossed the Jordan with all the men of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Now Absalom had set Amasa over the army in the place of Joab. Amasa was the son of a man named Ithra the Ishmaelite, who had married Abigal daughter of Nahash, sister of Zeruiah, Joab's mother. </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> The Israelites and Absalom encamped in the land of Gilead.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> When David came to Mahanaim, Shobi son of Nahash from Rabbah of the Ammonites, and Machir son of Ammiel from Lo-debar, and Barzillai the Gileadite from Rogelim,</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> brought beds, basins, and earthen vessels, wheat, barley, meal, parched grain, beans and lentils, </VERS>\r\n\t\t\t<VERS vnumber=\"29\"> honey and curds, sheep, and cheese from the herd, for David and the people with him to eat; for they said, \"The troops are hungry and weary and thirsty in the wilderness.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"18\">\r\n\t\t\t<VERS vnumber=\"1\"> Then David mustered the men who were with him, and set over them commanders of thousands and commanders of hundreds.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And David divided the army into three groups: one third under the command of Joab, one third under the command of Abishai son of Zeruiah, Joab's brother, and one third under the command of Ittai the Gittite. The king said to the men, \"I myself will also go out with you.\" </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> But the men said, \"You shall not go out. For if we flee, they will not care about us. If half of us die, they will not care about us. But you are worth ten thousand of us; therefore it is better that you send us help from the city.\" </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The king said to them, \"Whatever seems best to you I will do.\" So the king stood at the side of the gate, while all the army marched out by hundreds and by thousands.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The king ordered Joab and Abishai and Ittai, saying, \"Deal gently for my sake with the young man Absalom.\" And all the people heard when the king gave orders to all the commanders concerning Absalom.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> So the army went out into the field against Israel; and the battle was fought in the forest of Ephraim.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The men of Israel were defeated there by the servants of David, and the slaughter there was great on that day, twenty thousand men.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The battle spread over the face of all the country; and the forest claimed more victims that day than the sword.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Absalom happened to meet the servants of David. Absalom was riding on his mule, and the mule went under the thick branches of a great oak. His head caught fast in the oak, and he was left hanging between heaven and earth, while the mule that was under him went on. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> A man saw it, and told Joab, \"I saw Absalom hanging in an oak.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Joab said to the man who told him, \"What, you saw him! Why then did you not strike him there to the ground? I would have been glad to give you ten pieces of silver and a belt.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> But the man said to Joab, \"Even if I felt in my hand the weight of a thousand pieces of silver, I would not raise my hand against the king's son; for in our hearing the king commanded you and Abishai and Ittai, saying: For my sake protect the young man Absalom!</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> On the other hand, if I had dealt treacherously against his life (and there is nothing hidden from the king), then you yourself would have stood aloof.\" </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Joab said, \"I will not waste time like this with you.\" He took three spears in his hand, and thrust them into the heart of Absalom, while he was still alive in the oak.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And ten young men, Joab's armor-bearers, surrounded Absalom and struck him, and killed him.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then Joab sounded the trumpet, and the troops came back from pursuing Israel, for Joab restrained the troops.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> They took Absalom, threw him into a great pit in the forest, and raised over him a very great heap of stones. Meanwhile all the Israelites fled to their homes.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Now Absalom in his lifetime had taken and set up for himself a pillar that is in the King's Valley, for he said, \"I have no son to keep my name in remembrance\"; he called the pillar by his own name. It is called Absalom's Monument to this day.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Then Ahimaaz son of Zadok said, \"Let me run, and carry tidings to the king that the LORD has delivered him from the power of his enemies.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Joab said to him, \"You are not to carry tidings today; you may carry tidings another day, but today you shall not do so, because the king's son is dead.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then Joab said to a Cushite, \"Go, tell the king what you have seen.\" The Cushite bowed before Joab, and ran.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Then Ahimaaz son of Zadok said again to Joab, \"Come what may, let me also run after the Cushite.\" And Joab said, \"Why will you run, my son, seeing that you have no reward for the tidings?\" </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> \"Come what may,\" he said, \"I will run.\" So he said to him, \"Run.\" Then Ahimaaz ran by the way of the Plain, and outran the Cushite.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Now David was sitting between the two gates. The sentinel went up to the roof of the gate by the wall, and when he looked up, he saw a man running alone.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> The sentinel shouted and told the king. The king said, \"If he is alone, there are tidings in his mouth.\" He kept coming, and drew near.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Then the sentinel saw another man running; and the sentinel called to the gatekeeper and said, \"See, another man running alone!\" The king said, \"He also is bringing tidings.\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> The sentinel said, \"I think the running of the first one is like the running of Ahimaaz son of Zadok.\" The king said, \"He is a good man, and comes with good tidings.\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Then Ahimaaz cried out to the king, \"All is well!\" He prostrated himself before the king with his face to the ground, and said, \"Blessed be the LORD your God, who has delivered up the men who raised their hand against my lord the king.\"</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> The king said, \"Is it well with the young man Absalom?\" Ahimaaz answered, \"When Joab sent your servant, I saw a great tumult, but I do not know what it was.\" </VERS>\r\n\t\t\t<VERS vnumber=\"30\"> The king said, \"Turn aside, and stand here.\" So he turned aside, and stood still.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Then the Cushite came; and the Cushite said, \"Good tidings for my lord the king! For the LORD has vindicated you this day, delivering you from the power of all who rose up against you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> The king said to the Cushite, \"Is it well with the young man Absalom?\" The Cushite answered, \"May the enemies of my lord the king, and all who rise up to do you harm, be like that young man.\"</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> The king was deeply moved, and went up to the chamber over the gate, and wept; and as he went, he said, \"O my son Absalom, my son, my son Absalom! Would I had died instead of you, O Absalom, my son, my son!\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"19\">\r\n\t\t\t<VERS vnumber=\"1\"> It was told Joab, \"The king is weeping and mourning for Absalom.\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> So the victory that day was turned into mourning for all the troops; for the troops heard that day, \"The king is grieving for his son.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The troops stole into the city that day as soldiers steal in who are ashamed when they flee in battle.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The king covered his face, and the king cried with a loud voice, \"O my son Absalom, O Absalom, my son, my son!\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then Joab came into the house to the king, and said, \"Today you have covered with shame the faces of all your officers who have saved your life today, and the lives of your sons and your daughters, and the lives of your wives and your concubines,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> for love of those who hate you and for hatred of those who love you. You have made it clear today that commanders and officers are nothing to you; for I perceive that if Absalom were alive and all of us were dead today, then you would be pleased.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> So go out at once and speak kindly to your servants; for I swear by the LORD, if you do not go, not a man will stay with you this night; and this will be worse for you than any disaster that has come upon you from your youth until now.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then the king got up and took his seat in the gate. The troops were all told, \"See, the king is sitting in the gate\"; and all the troops came before the king. Meanwhile, all the Israelites had fled to their homes.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> All the people were disputing throughout all the tribes of Israel, saying, \"The king delivered us from the hand of our enemies, and saved us from the hand of the Philistines; and now he has fled out of the land because of Absalom.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> But Absalom, whom we anointed over us, is dead in battle. Now therefore why do you say nothing about bringing the king back?\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> King David sent this message to the priests Zadok and Abiathar, \"Say to the elders of Judah, 'Why should you be the last to bring the king back to his house? The talk of all Israel has come to the king. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> You are my kin, you are my bone and my flesh; why then should you be the last to bring back the king?'</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And say to Amasa, 'Are you not my bone and my flesh? So may God do to me, and more, if you are not the commander of my army from now on, in place of Joab.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Amasa swayed the hearts of all the people of Judah as one, and they sent word to the king, \"Return, both you and all your servants.\" </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> So the king came back to the Jordan; and Judah came to Gilgal to meet the king and to bring him over the Jordan.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Shimei son of Gera, the Benjaminite, from Bahurim, hurried to come down with the people of Judah to meet King David;</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> with him were a thousand people from Benjamin. And Ziba, the servant of the house of Saul, with his fifteen sons and his twenty servants, rushed down to the Jordan ahead of the king,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> while the crossing was taking place, to bring over the king's household, and to do his pleasure. Shimei son of Gera fell down before the king, as he was about to cross the Jordan,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> and said to the king, \"May my lord not hold me guilty or remember how your servant did wrong on the day my lord the king left Jerusalem; may the king not bear it in mind.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> For your servant knows that I have sinned; therefore, see, I have come this day, the first of all the house of Joseph to come down to meet my lord the king.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Abishai son of Zeruiah answered, \"Shall not Shimei be put to death for this, because he cursed the LORD's anointed?\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> But David said, \"What have I to do with you, you sons of Zeruiah, that you should today become an adversary to me? Shall anyone be put to death in Israel this day? For do I not know that I am this day king over Israel?\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> The king said to Shimei, \"You shall not die.\" And the king gave him his oath.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Mephibosheth grandson of Saul came down to meet the king; he had not taken care of his feet, or trimmed his beard, or washed his clothes, from the day the king left until the day he came back in safety. </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> When he came from Jerusalem to meet the king, the king said to him, \"Why did you not go with me, Mephibosheth?\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> He answered, \"My lord, O king, my servant deceived me; for your servant said to him, 'Saddle a donkey for me, so that I may ride on it and go with the king.' For your servant is lame. </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> He has slandered your servant to my lord the king. But my lord the king is like the angel of God; do therefore what seems good to you.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> For all my father's house were doomed to death before my lord the king; but you set your servant among those who eat at your table. What further right have I, then, to appeal to the king?\"</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> The king said to him, \"Why speak any more of your affairs? I have decided: you and Ziba shall divide the land.\"</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Mephibosheth said to the king, \"Let him take it all, since my lord the king has arrived home safely.\" </VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Now Barzillai the Gileadite had come down from Rogelim; he went on with the king to the Jordan, to escort him over the Jordan.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Barzillai was a very aged man, eighty years old. He had provided the king with food while he stayed at Mahanaim, for he was a very wealthy man.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> The king said to Barzillai, \"Come over with me, and I will provide for you in Jerusalem at my side.\"</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> But Barzillai said to the king, \"How many years have I still to live, that I should go up with the king to Jerusalem?</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Today I am eighty years old; can I discern what is pleasant and what is not? Can your servant taste what he eats or what he drinks? Can I still listen to the voice of singing men and singing women? Why then should your servant be an added burden to my lord the king?</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Your servant will go a little way over the Jordan with the king. Why should the king recompense me with such a reward?</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Please let your servant return, so that I may die in my own town, near the graves of my father and my mother. But here is your servant Chimham; let him go over with my lord the king; and do for him whatever seems good to you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> The king answered, \"Chimham shall go over with me, and I will do for him whatever seems good to you; and all that you desire of me I will do for you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> Then all the people crossed over the Jordan, and the king crossed over; the king kissed Barzillai and blessed him, and he returned to his own home.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> The king went on to Gilgal, and Chimham went on with him; all the people of Judah, and also half the people of Israel, brought the king on his way.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> Then all the people of Israel came to the king, and said to him, \"Why have our kindred the people of Judah stolen you away, and brought the king and his household over the Jordan, and all David's men with him?\"</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> All the people of Judah answered the people of Israel, \"Because the king is near of kin to us. Why then are you angry over this matter? Have we eaten at all at the king's expense? Or has he given us any gift?\"</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> But the people of Israel answered the people of Judah, \"We have ten shares in the king, and in David also we have more than you. Why then did you despise us? Were we not the first to speak of bringing back our king?\" But the words of the people of Judah were fiercer than the words of the people of Israel.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"20\">\r\n\t\t\t<VERS vnumber=\"1\"> Now a scoundrel named Sheba son of Bichri, a Benjaminite, happened to be there. He sounded the trumpet and cried out, \"We have no portion in David, no share in the son of Jesse! Everyone to your tents, O Israel!\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> So all the people of Israel withdrew from David and followed Sheba son of Bichri; but the people of Judah followed their king steadfastly from the Jordan to Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> David came to his house at Jerusalem; and the king took the ten concubines whom he had left to look after the house, and put them in a house under guard, and provided for them, but did not go in to them. So they were shut up until the day of their death, living as if in widowhood.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then the king said to Amasa, \"Call the men of Judah together to me within three days, and be here yourself.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> So Amasa went to summon Judah; but he delayed beyond the set time that had been appointed him.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> David said to Abishai, \"Now Sheba son of Bichri will do us more harm than Absalom; take your lord's servants and pursue him, or he will find fortified cities for himself, and escape from us.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Joab's men went out after him, along with the Cherethites, the Pelethites, and all the warriors; they went out from Jerusalem to pursue Sheba son of Bichri.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> When they were at the large stone that is in Gibeon, Amasa came to meet them. Now Joab was wearing a soldier's garment and over it was a belt with a sword in its sheath fastened at his waist; as he went forward it fell out.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Joab said to Amasa, \"Is it well with you, my brother?\" And Joab took Amasa by the beard with his right hand to kiss him.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> But Amasa did not notice the sword in Joab's hand; Joab struck him in the belly so that his entrails poured out on the ground, and he died. He did not strike a second blow. Then Joab and his brother Abishai pursued Sheba son of Bichri.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> And one of Joab's men took his stand by Amasa, and said, \"Whoever favors Joab, and whoever is for David, let him follow Joab.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Amasa lay wallowing in his blood on the highway, and the man saw that all the people were stopping. Since he saw that all who came by him were stopping, he carried Amasa from the highway into a field, and threw a garment over him.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Once he was removed from the highway, all the people went on after Joab to pursue Sheba son of Bichri.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Sheba passed through all the tribes of Israel to Abel of Beth-maacah; and all the Bichrites assembled, and followed him inside. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Joab's forces came and besieged him in Abel of Beth-maacah; they threw up a siege ramp against the city, and it stood against the rampart. Joab's forces were battering the wall to break it down. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then a wise woman called from the city, \"Listen! Listen! Tell Joab, 'Come here, I want to speak to you.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> He came near her; and the woman said, \"Are you Joab?\" He answered, \"I am.\" Then she said to him, \"Listen to the words of your servant.\" He answered, \"I am listening.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then she said, \"They used to say in the old days, 'Let them inquire at Abel'; and so they would settle a matter.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> I am one of those who are peaceable and faithful in Israel; you seek to destroy a city that is a mother in Israel; why will you swallow up the heritage of the LORD?\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Joab answered, \"Far be it from me, far be it, that I should swallow up or destroy!</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> That is not the case! But a man of the hill country of Ephraim, called Sheba son of Bichri, has lifted up his hand against King David; give him up alone, and I will withdraw from the city.\" The woman said to Joab, \"His head shall be thrown over the wall to you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Then the woman went to all the people with her wise plan. And they cut off the head of Sheba son of Bichri, and threw it out to Joab. So he blew the trumpet, and they dispersed from the city, and all went to their homes, while Joab returned to Jerusalem to the king.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Now Joab was in command of all the army of Israel; Benaiah son of Jehoiada was in command of the Cherethites and the Pelethites; </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Adoram was in charge of the forced labor; Jehoshaphat son of Ahilud was the recorder;</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Sheva was secretary; Zadok and Abiathar were priests;</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> and Ira the Jairite was also David's priest.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"21\">\r\n\t\t\t<VERS vnumber=\"1\"> Now there was a famine in the days of David for three years, year after year; and David inquired of the LORD. The LORD said, \"There is bloodguilt on Saul and on his house, because he put the Gibeonites to death.\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> So the king called the Gibeonites and spoke to them. (Now the Gibeonites were not of the people of Israel, but of the remnant of the Amorites; although the people of Israel had sworn to spare them, Saul had tried to wipe them out in his zeal for the people of Israel and Judah.)</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> David said to the Gibeonites, \"What shall I do for you? How shall I make expiation, that you may bless the heritage of the LORD?\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The Gibeonites said to him, \"It is not a matter of silver or gold between us and Saul or his house; neither is it for us to put anyone to death in Israel.\" He said, \"What do you say that I should do for you?\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> They said to the king, \"The man who consumed us and planned to destroy us, so that we should have no place in all the territory of Israel--</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> let seven of his sons be handed over to us, and we will impale them before the LORD at Gibeon on the mountain of the LORD.\" The king said, \"I will hand them over.\" </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But the king spared Mephibosheth, the son of Saul's son Jonathan, because of the oath of the LORD that was between them, between David and Jonathan son of Saul. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The king took the two sons of Rizpah daughter of Aiah, whom she bore to Saul, Armoni and Mephibosheth; and the five sons of Merab daughter of Saul, whom she bore to Adriel son of Barzillai the Meholathite; </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> he gave them into the hands of the Gibeonites, and they impaled them on the mountain before the LORD. The seven of them perished together. They were put to death in the first days of harvest, at the beginning of barley harvest.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then Rizpah the daughter of Aiah took sackcloth, and spread it on a rock for herself, from the beginning of harvest until rain fell on them from the heavens; she did not allow the birds of the air to come on the bodies by day, or the wild animals by night. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> When David was told what Rizpah daughter of Aiah, the concubine of Saul, had done,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> David went and took the bones of Saul and the bones of his son Jonathan from the people of Jabesh-gilead, who had stolen them from the public square of Beth-shan, where the Philistines had hung them up, on the day the Philistines killed Saul on Gilboa.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> He brought up from there the bones of Saul and the bones of his son Jonathan; and they gathered the bones of those who had been impaled.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> They buried the bones of Saul and of his son Jonathan in the land of Benjamin in Zela, in the tomb of his father Kish; they did all that the king commanded. After that, God heeded supplications for the land.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The Philistines went to war again with Israel, and David went down together with his servants. They fought against the Philistines, and David grew weary.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Ishbi-benob, one of the descendants of the giants, whose spear weighed three hundred shekels of bronze, and who was fitted out with new weapons, said he would kill David. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> But Abishai son of Zeruiah came to his aid, and attacked the Philistine and killed him. Then David's men swore to him, \"You shall not go out with us to battle any longer, so that you do not quench the lamp of Israel.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> After this a battle took place with the Philistines, at Gob; then Sibbecai the Hushathite killed Saph, who was one of the descendants of the giants.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Then there was another battle with the Philistines at Gob; and Elhanan son of Jaare-oregim, the Bethlehemite, killed Goliath the Gittite, the shaft of whose spear was like a weaver's beam.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> There was again war at Gath, where there was a man of great size, who had six fingers on each hand, and six toes on each foot, twenty-four in number; he too was descended from the giants.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> When he taunted Israel, Jonathan son of David's brother Shimei, killed him.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> These four were descended from the giants in Gath; they fell by the hands of David and his servants.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"22\">\r\n\t\t\t<VERS vnumber=\"1\"> David spoke to the LORD the words of this song on the day when the LORD delivered him from the hand of all his enemies, and from the hand of Saul.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He said: The LORD is my rock, my fortress, and my deliverer,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> my God, my rock, in whom I take refuge, my shield and the horn of my salvation, my stronghold and my refuge, my savior; you save me from violence.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> I call upon the LORD, who is worthy to be praised, and I am saved from my enemies.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> For the waves of death encompassed me, the torrents of perdition assailed me;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> the cords of Sheol entangled me, the snares of death confronted me.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> In my distress I called upon the LORD; to my God I called. From his temple he heard my voice, and my cry came to his ears.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then the earth reeled and rocked; the foundations of the heavens trembled and quaked, because he was angry.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Smoke went up from his nostrils, and devouring fire from his mouth; glowing coals flamed forth from him.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> He bowed the heavens, and came down; thick darkness was under his feet.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> He rode on a cherub, and flew; he was seen upon the wings of the wind.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> He made darkness around him a canopy, thick clouds, a gathering of water.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Out of the brightness before him coals of fire flamed forth.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The LORD thundered from heaven; the Most High uttered his voice.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> He sent out arrows, and scattered them-- lightning, and routed them.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then the channels of the sea were seen, the foundations of the world were laid bare at the rebuke of the LORD, at the blast of the breath of his nostrils.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> He reached from on high, he took me, he drew me out of mighty waters.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> He delivered me from my strong enemy, from those who hated me; for they were too mighty for me.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> They came upon me in the day of my calamity, but the LORD was my stay.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> He brought me out into a broad place; he delivered me, because he delighted in me.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> The LORD rewarded me according to my righteousness; according to the cleanness of my hands he recompensed me.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> For I have kept the ways of the LORD, and have not wickedly departed from my God.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> For all his ordinances were before me, and from his statutes I did not turn aside.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> I was blameless before him, and I kept myself from guilt.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Therefore the LORD has recompensed me according to my righteousness, according to my cleanness in his sight.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> With the loyal you show yourself loyal; with the blameless you show yourself blameless;</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> with the pure you show yourself pure, and with the crooked you show yourself perverse.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> You deliver a humble people, but your eyes are upon the haughty to bring them down.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Indeed, you are my lamp, O LORD, the LORD lightens my darkness.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> By you I can crush a troop, and by my God I can leap over a wall.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> This God-- his way is perfect; the promise of the LORD proves true; he is a shield for all who take refuge in him.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> For who is God, but the LORD? And who is a rock, except our God?</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> The God who has girded me with strength has opened wide my path.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> He made my feet like the feet of deer, and set me secure on the heights. </VERS>\r\n\t\t\t<VERS vnumber=\"35\"> He trains my hands for war, so that my arms can bend a bow of bronze.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> You have given me the shield of your salvation, and your help has made me great. </VERS>\r\n\t\t\t<VERS vnumber=\"37\"> You have made me stride freely, and my feet do not slip;</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> I pursued my enemies and destroyed them, and did not turn back until they were consumed.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> I consumed them; I struck them down, so that they did not rise; they fell under my feet.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> For you girded me with strength for the battle; you made my assailants sink under me.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> You made my enemies turn their backs to me, those who hated me, and I destroyed them.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> They looked, but there was no one to save them; they cried to the LORD, but he did not answer them.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> I beat them fine like the dust of the earth, I crushed them and stamped them down like the mire of the streets.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> You delivered me from strife with the peoples; you kept me as the head of the nations; people whom I had not known served me. </VERS>\r\n\t\t\t<VERS vnumber=\"45\"> Foreigners came cringing to me; as soon as they heard of me, they obeyed me.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> Foreigners lost heart, and came trembling out of their strongholds.</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> The LORD lives! Blessed be my rock, and exalted be my God, the rock of my salvation,</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> the God who gave me vengeance and brought down peoples under me,</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> who brought me out from my enemies; you exalted me above my adversaries, you delivered me from the violent.</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> For this I will extol you, O LORD, among the nations, and sing praises to your name.</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> He is a tower of salvation for his king, and shows steadfast love to his anointed, to David and his descendants forever.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"23\">\r\n\t\t\t<VERS vnumber=\"1\"> Now these are the last words of David: The oracle of David, son of Jesse, the oracle of the man whom God exalted, the anointed of the God of Jacob, the favorite of the Strong One of Israel: </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The spirit of the LORD speaks through me, his word is upon my tongue.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The God of Israel has spoken, the Rock of Israel has said to me: One who rules over people justly, ruling in the fear of God,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> is like the light of morning, like the sun rising on a cloudless morning, gleaming from the rain on the grassy land.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Is not my house like this with God? For he has made with me an everlasting covenant, ordered in all things and secure. Will he not cause to prosper all my help and my desire?</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> But the godless are all like thorns that are thrown away; for they cannot be picked up with the hand; </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> to touch them one uses an iron bar or the shaft of a spear. And they are entirely consumed in fire on the spot. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> These are the names of the warriors whom David had: Josheb-basshebeth a Tahchemonite; he was chief of the Three; he wielded his spear against eight hundred whom he killed at one time. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Next to him among the three warriors was Eleazar son of Dodo son of Ahohi. He was with David when they defied the Philistines who were gathered there for battle. The Israelites withdrew,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> but he stood his ground. He struck down the Philistines until his arm grew weary, though his hand clung to the sword. The LORD brought about a great victory that day. Then the people came back to him-- but only to strip the dead.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Next to him was Shammah son of Agee, the Hararite. The Philistines gathered together at Lehi, where there was a plot of ground full of lentils; and the army fled from the Philistines.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> But he took his stand in the middle of the plot, defended it, and killed the Philistines; and the LORD brought about a great victory.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Towards the beginning of harvest three of the thirty chiefs went down to join David at the cave of Adullam, while a band of Philistines was encamped in the valley of Rephaim. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> David was then in the stronghold; and the garrison of the Philistines was then at Bethlehem.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> David said longingly, \"O that someone would give me water to drink from the well of Bethlehem that is by the gate!\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then the three warriors broke through the camp of the Philistines, drew water from the well of Bethlehem that was by the gate, and brought it to David. But he would not drink of it; he poured it out to the LORD,</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> for he said, \"The LORD forbid that I should do this. Can I drink the blood of the men who went at the risk of their lives?\" Therefore he would not drink it. The three warriors did these things.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Now Abishai son of Zeruiah, the brother of Joab, was chief of the Thirty. With his spear he fought against three hundred men and killed them, and won a name beside the Three. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> He was the most renowned of the Thirty, and became their commander; but he did not attain to the Three. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Benaiah son of Jehoiada was a valiant warrior from Kabzeel, a doer of great deeds; he struck down two sons of Ariel of Moab. He also went down and killed a lion in a pit on a day when snow had fallen. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> And he killed an Egyptian, a handsome man. The Egyptian had a spear in his hand; but Benaiah went against him with a staff, snatched the spear out of the Egyptian's hand, and killed him with his own spear.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Such were the things Benaiah son of Jehoiada did, and won a name beside the three warriors.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> He was renowned among the Thirty, but he did not attain to the Three. And David put him in charge of his bodyguard.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Among the Thirty were Asahel brother of Joab; Elhanan son of Dodo of Bethlehem;</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Shammah of Harod; Elika of Harod;</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Helez the Paltite; Ira son of Ikkesh of Tekoa;</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Abiezer of Anathoth; Mebunnai the Hushathite;</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Zalmon the Ahohite; Maharai of Netophah;</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Heleb son of Baanah of Netophah; Ittai son of Ribai of Gibeah of the Benjaminites;</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Benaiah of Pirathon; Hiddai of the torrents of Gaash;</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Abi-albon the Arbathite; Azmaveth of Bahurim;</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Eliahba of Shaalbon; the sons of Jashen: Jonathan</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> son of Shammah the Hararite; Ahiam son of Sharar the Hararite; </VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Eliphelet son of Ahasbai of Maacah; Eliam son of Ahithophel the Gilonite;</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Hezro of Carmel; Paarai the Arbite; </VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Igal son of Nathan of Zobah; Bani the Gadite;</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Zelek the Ammonite; Naharai of Beeroth, the armor-bearer of Joab son of Zeruiah;</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Ira the Ithrite; Gareb the Ithrite;</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> Uriah the Hittite-- thirty-seven in all.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"24\">\r\n\t\t\t<VERS vnumber=\"1\"> Again the anger of the LORD was kindled against Israel, and he incited David against them, saying, \"Go, count the people of Israel and Judah.\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> So the king said to Joab and the commanders of the army, who were with him, \"Go through all the tribes of Israel, from Dan to Beer-sheba, and take a census of the people, so that I may know how many there are.\" </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> But Joab said to the king, \"May the LORD your God increase the number of the people a hundredfold, while the eyes of my lord the king can still see it! But why does my lord the king want to do this?\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But the king's word prevailed against Joab and the commanders of the army. So Joab and the commanders of the army went out from the presence of the king to take a census of the people of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> They crossed the Jordan, and began from Aroer and from the city that is in the middle of the valley, toward Gad and on to Jazer. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then they came to Gilead, and to Kadesh in the land of the Hittites; and they came to Dan, and from Dan they went around to Sidon, </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> and came to the fortress of Tyre and to all the cities of the Hivites and Canaanites; and they went out to the Negeb of Judah at Beer-sheba.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> So when they had gone through all the land, they came back to Jerusalem at the end of nine months and twenty days.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Joab reported to the king the number of those who had been recorded: in Israel there were eight hundred thousand soldiers able to draw the sword, and those of Judah were five hundred thousand.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> But afterward, David was stricken to the heart because he had numbered the people. David said to the LORD, \"I have sinned greatly in what I have done. But now, O LORD, I pray you, take away the guilt of your servant; for I have done very foolishly.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> When David rose in the morning, the word of the LORD came to the prophet Gad, David's seer, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> \"Go and say to David: Thus says the LORD: Three things I offer you; choose one of them, and I will do it to you.\" </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> So Gad came to David and told him; he asked him, \"Shall three years of famine come to you on your land? Or will you flee three months before your foes while they pursue you? Or shall there be three days' pestilence in your land? Now consider, and decide what answer I shall return to the one who sent me.\" </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then David said to Gad, \"I am in great distress; let us fall into the hand of the LORD, for his mercy is great; but let me not fall into human hands.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> So the LORD sent a pestilence on Israel from that morning until the appointed time; and seventy thousand of the people died, from Dan to Beer-sheba.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> But when the angel stretched out his hand toward Jerusalem to destroy it, the LORD relented concerning the evil, and said to the angel who was bringing destruction among the people, \"It is enough; now stay your hand.\" The angel of the LORD was then by the threshing floor of Araunah the Jebusite.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> When David saw the angel who was destroying the people, he said to the LORD, \"I alone have sinned, and I alone have done wickedly; but these sheep, what have they done? Let your hand, I pray, be against me and against my father's house.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> That day Gad came to David and said to him, \"Go up and erect an altar to the LORD on the threshing floor of Araunah the Jebusite.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Following Gad's instructions, David went up, as the LORD had commanded.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> When Araunah looked down, he saw the king and his servants coming toward him; and Araunah went out and prostrated himself before the king with his face to the ground.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Araunah said, \"Why has my lord the king come to his servant?\" David said, \"To buy the threshing floor from you in order to build an altar to the LORD, so that the plague may be averted from the people.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Then Araunah said to David, \"Let my lord the king take and offer up what seems good to him; here are the oxen for the burnt offering, and the threshing sledges and the yokes of the oxen for the wood.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> All this, O king, Araunah gives to the king.\" And Araunah said to the king, \"May the LORD your God respond favorably to you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> But the king said to Araunah, \"No, but I will buy them from you for a price; I will not offer burnt offerings to the LORD my God that cost me nothing.\" So David bought the threshing floor and the oxen for fifty shekels of silver.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> David built there an altar to the LORD, and offered burnt offerings and offerings of well-being. So the LORD answered his supplication for the land, and the plague was averted from Israel.</VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"11\" bname=\"1 Kings\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> King David was old and advanced in years; and although they covered him with clothes, he could not get warm.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> So his servants said to him, \"Let a young virgin be sought for my lord the king, and let her wait on the king, and be his attendant; let her lie in your bosom, so that my lord the king may be warm.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> So they searched for a beautiful girl throughout all the territory of Israel, and found Abishag the Shunammite, and brought her to the king.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The girl was very beautiful. She became the king's attendant and served him, but the king did not know her sexually.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Now Adonijah son of Haggith exalted himself, saying, \"I will be king\"; he prepared for himself chariots and horsemen, and fifty men to run before him.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> His father had never at any time displeased him by asking, \"Why have you done thus and so?\" He was also a very handsome man, and he was born next after Absalom.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> He conferred with Joab son of Zeruiah and with the priest Abiathar, and they supported Adonijah.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But the priest Zadok, and Benaiah son of Jehoiada, and the prophet Nathan, and Shimei, and Rei, and David's own warriors did not side with Adonijah.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Adonijah sacrificed sheep, oxen, and fatted cattle by the stone Zoheleth, which is beside En-rogel, and he invited all his brothers, the king's sons, and all the royal officials of Judah,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> but he did not invite the prophet Nathan or Benaiah or the warriors or his brother Solomon.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then Nathan said to Bathsheba, Solomon's mother, \"Have you not heard that Adonijah son of Haggith has become king and our lord David does not know it?</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Now therefore come, let me give you advice, so that you may save your own life and the life of your son Solomon.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Go in at once to King David, and say to him, 'Did you not, my lord the king, swear to your servant, saying: Your son Solomon shall succeed me as king, and he shall sit on my throne? Why then is Adonijah king?'</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then while you are still there speaking with the king, I will come in after you and confirm your words.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> So Bathsheba went to the king in his room. The king was very old; Abishag the Shunammite was attending the king.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Bathsheba bowed and did obeisance to the king, and the king said, \"What do you wish?\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> She said to him, \"My lord, you swore to your servant by the LORD your God, saying: Your son Solomon shall succeed me as king, and he shall sit on my throne.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> But now suddenly Adonijah has become king, though you, my lord the king, do not know it.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> He has sacrificed oxen, fatted cattle, and sheep in abundance, and has invited all the children of the king, the priest Abiathar, and Joab the commander of the army; but your servant Solomon he has not invited.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> But you, my lord the king-- the eyes of all Israel are on you to tell them who shall sit on the throne of my lord the king after him.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Otherwise it will come to pass, when my lord the king sleeps with his ancestors, that my son Solomon and I will be counted offenders.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> While she was still speaking with the king, the prophet Nathan came in.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> The king was told, \"Here is the prophet Nathan.\" When he came in before the king, he did obeisance to the king, with his face to the ground.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Nathan said, \"My lord the king, have you said, 'Adonijah shall succeed me as king, and he shall sit on my throne'?</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> For today he has gone down and has sacrificed oxen, fatted cattle, and sheep in abundance, and has invited all the king's children, Joab the commander of the army, and the priest Abiathar, who are now eating and drinking before him, and saying, 'Long live King Adonijah!' </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> But he did not invite me, your servant, and the priest Zadok, and Benaiah son of Jehoiada, and your servant Solomon.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Has this thing been brought about by my lord the king and you have not let your servants know who should sit on the throne of my lord the king after him?\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> King David answered, \"Summon Bathsheba to me.\" So she came into the king's presence, and stood before the king.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> The king swore, saying, \"As the LORD lives, who has saved my life from every adversity,</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> as I swore to you by the LORD, the God of Israel, 'Your son Solomon shall succeed me as king, and he shall sit on my throne in my place,' so will I do this day.\"</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Then Bathsheba bowed with her face to the ground, and did obeisance to the king, and said, \"May my lord King David live forever!\"</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> King David said, \"Summon to me the priest Zadok, the prophet Nathan, and Benaiah son of Jehoiada.\" When they came before the king,</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> the king said to them, \"Take with you the servants of your lord, and have my son Solomon ride on my own mule, and bring him down to Gihon.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> There let the priest Zadok and the prophet Nathan anoint him king over Israel; then blow the trumpet, and say, 'Long live King Solomon!'</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> You shall go up following him. Let him enter and sit on my throne; he shall be king in my place; for I have appointed him to be ruler over Israel and over Judah.\"</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Benaiah son of Jehoiada answered the king, \"Amen! May the LORD, the God of my lord the king, so ordain.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> As the LORD has been with my lord the king, so may he be with Solomon, and make his throne greater than the throne of my lord King David.\"</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> So the priest Zadok, the prophet Nathan, and Benaiah son of Jehoiada, and the Cherethites and the Pelethites, went down and had Solomon ride on King David's mule, and led him to Gihon.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> There the priest Zadok took the horn of oil from the tent and anointed Solomon. Then they blew the trumpet, and all the people said, \"Long live King Solomon!\"</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> And all the people went up following him, playing on pipes and rejoicing with great joy, so that the earth quaked at their noise.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> Adonijah and all the guests who were with him heard it as they finished feasting. When Joab heard the sound of the trumpet, he said, \"Why is the city in an uproar?\"</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> While he was still speaking, Jonathan son of the priest Abiathar arrived. Adonijah said, \"Come in, for you are a worthy man and surely you bring good news.\"</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> Jonathan answered Adonijah, \"No, for our lord King David has made Solomon king;</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> the king has sent with him the priest Zadok, the prophet Nathan, and Benaiah son of Jehoiada, and the Cherethites and the Pelethites; and they had him ride on the king's mule;</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> the priest Zadok and the prophet Nathan have anointed him king at Gihon; and they have gone up from there rejoicing, so that the city is in an uproar. This is the noise that you heard.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> Solomon now sits on the royal throne.</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> Moreover the king's servants came to congratulate our lord King David, saying, 'May God make the name of Solomon more famous than yours, and make his throne greater than your throne.' The king bowed in worship on the bed</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> and went on to pray thus, 'Blessed be the LORD, the God of Israel, who today has granted one of my offspring to sit on my throne and permitted me to witness it.'\" </VERS>\r\n\t\t\t<VERS vnumber=\"49\"> Then all the guests of Adonijah got up trembling and went their own ways.</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> Adonijah, fearing Solomon, got up and went to grasp the horns of the altar.</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> Solomon was informed, \"Adonijah is afraid of King Solomon; see, he has laid hold of the horns of the altar, saying, 'Let King Solomon swear to me first that he will not kill his servant with the sword.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"52\"> So Solomon responded, \"If he proves to be a worthy man, not one of his hairs shall fall to the ground; but if wickedness is found in him, he shall die.\"</VERS>\r\n\t\t\t<VERS vnumber=\"53\"> Then King Solomon sent to have him brought down from the altar. He came to do obeisance to King Solomon; and Solomon said to him, \"Go home.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> When David's time to die drew near, he charged his son Solomon, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"I am about to go the way of all the earth. Be strong, be courageous,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> and keep the charge of the LORD your God, walking in his ways and keeping his statutes, his commandments, his ordinances, and his testimonies, as it is written in the law of Moses, so that you may prosper in all that you do and wherever you turn.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then the LORD will establish his word that he spoke concerning me: 'If your heirs take heed to their way, to walk before me in faithfulness with all their heart and with all their soul, there shall not fail you a successor on the throne of Israel.'</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> \"Moreover you know also what Joab son of Zeruiah did to me, how he dealt with the two commanders of the armies of Israel, Abner son of Ner, and Amasa son of Jether, whom he murdered, retaliating in time of peace for blood that had been shed in war, and putting the blood of war on the belt around his waist, and on the sandals on his feet.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Act therefore according to your wisdom, but do not let his gray head go down to Sheol in peace.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Deal loyally, however, with the sons of Barzillai the Gileadite, and let them be among those who eat at your table; for with such loyalty they met me when I fled from your brother Absalom.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> There is also with you Shimei son of Gera, the Benjaminite from Bahurim, who cursed me with a terrible curse on the day when I went to Mahanaim; but when he came down to meet me at the Jordan, I swore to him by the LORD, 'I will not put you to death with the sword.'</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Therefore do not hold him guiltless, for you are a wise man; you will know what you ought to do to him, and you must bring his gray head down with blood to Sheol.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then David slept with his ancestors, and was buried in the city of David.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The time that David reigned over Israel was forty years; he reigned seven years in Hebron, and thirty-three years in Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> So Solomon sat on the throne of his father David; and his kingdom was firmly established.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then Adonijah son of Haggith came to Bathsheba, Solomon's mother. She asked, \"Do you come peaceably?\" He said, \"Peaceably.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then he said, \"May I have a word with you?\" She said, \"Go on.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> He said, \"You know that the kingdom was mine, and that all Israel expected me to reign; however, the kingdom has turned about and become my brother's, for it was his from the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> And now I have one request to make of you; do not refuse me.\" She said to him, \"Go on.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> He said, \"Please ask King Solomon-- he will not refuse you-- to give me Abishag the Shunammite as my wife.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Bathsheba said, \"Very well; I will speak to the king on your behalf.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> So Bathsheba went to King Solomon, to speak to him on behalf of Adonijah. The king rose to meet her, and bowed down to her; then he sat on his throne, and had a throne brought for the king's mother, and she sat on his right.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Then she said, \"I have one small request to make of you; do not refuse me.\" And the king said to her, \"Make your request, my mother; for I will not refuse you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> She said, \"Let Abishag the Shunammite be given to your brother Adonijah as his wife.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> King Solomon answered his mother, \"And why do you ask Abishag the Shunammite for Adonijah? Ask for him the kingdom as well! For he is my elder brother; ask not only for him but also for the priest Abiathar and for Joab son of Zeruiah!\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Then King Solomon swore by the LORD, \"So may God do to me, and more also, for Adonijah has devised this scheme at the risk of his life!</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Now therefore as the LORD lives, who has established me and placed me on the throne of my father David, and who has made me a house as he promised, today Adonijah shall be put to death.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> So King Solomon sent Benaiah son of Jehoiada; he struck him down, and he died.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> The king said to the priest Abiathar, \"Go to Anathoth, to your estate; for you deserve death. But I will not at this time put you to death, because you carried the ark of the Lord GOD before my father David, and because you shared in all the hardships my father endured.\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> So Solomon banished Abiathar from being priest to the LORD, thus fulfilling the word of the LORD that he had spoken concerning the house of Eli in Shiloh.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> When the news came to Joab-- for Joab had supported Adonijah though he had not supported Absalom-- Joab fled to the tent of the LORD and grasped the horns of the altar.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> When it was told King Solomon, \"Joab has fled to the tent of the LORD and now is beside the altar,\" Solomon sent Benaiah son of Jehoiada, saying, \"Go, strike him down.\"</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> So Benaiah came to the tent of the LORD and said to him, \"The king commands, 'Come out.'\" But he said, \"No, I will die here.\" Then Benaiah brought the king word again, saying, \"Thus said Joab, and thus he answered me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> The king replied to him, \"Do as he has said, strike him down and bury him; and thus take away from me and from my father's house the guilt for the blood that Joab shed without cause.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> The LORD will bring back his bloody deeds on his own head, because, without the knowledge of my father David, he attacked and killed with the sword two men more righteous and better than himself, Abner son of Ner, commander of the army of Israel, and Amasa son of Jether, commander of the army of Judah.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> So shall their blood come back on the head of Joab and on the head of his descendants forever; but to David, and to his descendants, and to his house, and to his throne, there shall be peace from the LORD forevermore.\"</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Then Benaiah son of Jehoiada went up and struck him down and killed him; and he was buried at his own house near the wilderness.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> The king put Benaiah son of Jehoiada over the army in his place, and the king put the priest Zadok in the place of Abiathar.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Then the king sent and summoned Shimei, and said to him, \"Build yourself a house in Jerusalem, and live there, and do not go out from there to any place whatever.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> For on the day you go out, and cross the Wadi Kidron, know for certain that you shall die; your blood shall be on your own head.\"</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> And Shimei said to the king, \"The sentence is fair; as my lord the king has said, so will your servant do.\" So Shimei lived in Jerusalem many days.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> But it happened at the end of three years that two of Shimei's slaves ran away to King Achish son of Maacah of Gath. When it was told Shimei, \"Your slaves are in Gath,\"</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> Shimei arose and saddled a donkey, and went to Achish in Gath, to search for his slaves; Shimei went and brought his slaves from Gath.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> When Solomon was told that Shimei had gone from Jerusalem to Gath and returned,</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> the king sent and summoned Shimei, and said to him, \"Did I not make you swear by the LORD, and solemnly adjure you, saying, 'Know for certain that on the day you go out and go to any place whatever, you shall die'? And you said to me, 'The sentence is fair; I accept.'</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> Why then have you not kept your oath to the LORD and the commandment with which I charged you?\"</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> The king also said to Shimei, \"You know in your own heart all the evil that you did to my father David; so the LORD will bring back your evil on your own head.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> But King Solomon shall be blessed, and the throne of David shall be established before the LORD forever.\"</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> Then the king commanded Benaiah son of Jehoiada; and he went out and struck him down, and he died. So the kingdom was established in the hand of Solomon.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> Solomon made a marriage alliance with Pharaoh king of Egypt; he took Pharaoh's daughter and brought her into the city of David, until he had finished building his own house and the house of the LORD and the wall around Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The people were sacrificing at the high places, however, because no house had yet been built for the name of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Solomon loved the LORD, walking in the statutes of his father David; only, he sacrificed and offered incense at the high places.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The king went to Gibeon to sacrifice there, for that was the principal high place; Solomon used to offer a thousand burnt offerings on that altar.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> At Gibeon the LORD appeared to Solomon in a dream by night; and God said, \"Ask what I should give you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And Solomon said, \"You have shown great and steadfast love to your servant my father David, because he walked before you in faithfulness, in righteousness, and in uprightness of heart toward you; and you have kept for him this great and steadfast love, and have given him a son to sit on his throne today.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> And now, O LORD my God, you have made your servant king in place of my father David, although I am only a little child; I do not know how to go out or come in.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And your servant is in the midst of the people whom you have chosen, a great people, so numerous they cannot be numbered or counted.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Give your servant therefore an understanding mind to govern your people, able to discern between good and evil; for who can govern this your great people?\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> It pleased the Lord that Solomon had asked this.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> God said to him, \"Because you have asked this, and have not asked for yourself long life or riches, or for the life of your enemies, but have asked for yourself understanding to discern what is right,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> I now do according to your word. Indeed I give you a wise and discerning mind; no one like you has been before you and no one like you shall arise after you.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> I give you also what you have not asked, both riches and honor all your life; no other king shall compare with you.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> If you will walk in my ways, keeping my statutes and my commandments, as your father David walked, then I will lengthen your life.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Then Solomon awoke; it had been a dream. He came to Jerusalem where he stood before the ark of the covenant of the LORD. He offered up burnt offerings and offerings of well-being, and provided a feast for all his servants.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Later, two women who were prostitutes came to the king and stood before him.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The one woman said, \"Please, my lord, this woman and I live in the same house; and I gave birth while she was in the house.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then on the third day after I gave birth, this woman also gave birth. We were together; there was no one else with us in the house, only the two of us were in the house.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Then this woman's son died in the night, because she lay on him.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> She got up in the middle of the night and took my son from beside me while your servant slept. She laid him at her breast, and laid her dead son at my breast.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> When I rose in the morning to nurse my son, I saw that he was dead; but when I looked at him closely in the morning, clearly it was not the son I had borne.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> But the other woman said, \"No, the living son is mine, and the dead son is yours.\" The first said, \"No, the dead son is yours, and the living son is mine.\" So they argued before the king.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Then the king said, \"The one says, 'This is my son that is alive, and your son is dead'; while the other says, 'Not so! Your son is dead, and my son is the living one.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> So the king said, \"Bring me a sword,\" and they brought a sword before the king.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> The king said, \"Divide the living boy in two; then give half to the one, and half to the other.\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> But the woman whose son was alive said to the king-- because compassion for her son burned within her-- \"Please, my lord, give her the living boy; certainly do not kill him!\" The other said, \"It shall be neither mine nor yours; divide it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Then the king responded: \"Give the first woman the living boy; do not kill him. She is his mother.\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> All Israel heard of the judgment that the king had rendered; and they stood in awe of the king, because they perceived that the wisdom of God was in him, to execute justice.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> King Solomon was king over all Israel,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> and these were his high officials: Azariah son of Zadok was the priest;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Elihoreph and Ahijah sons of Shisha were secretaries; Jehoshaphat son of Ahilud was recorder;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Benaiah son of Jehoiada was in command of the army; Zadok and Abiathar were priests;</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Azariah son of Nathan was over the officials; Zabud son of Nathan was priest and king's friend;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Ahishar was in charge of the palace; and Adoniram son of Abda was in charge of the forced labor.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Solomon had twelve officials over all Israel, who provided food for the king and his household; each one had to make provision for one month in the year.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> These were their names: Ben-hur, in the hill country of Ephraim;</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Ben-deker, in Makaz, Shaalbim, Beth-shemesh, and Elon-beth-hanan;</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Ben-hesed, in Arubboth (to him belonged Socoh and all the land of Hepher);</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Ben-abinadab, in all Naphath-dor (he had Taphath, Solomon's daughter, as his wife);</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Baana son of Ahilud, in Taanach, Megiddo, and all Beth-shean, which is beside Zarethan below Jezreel, and from Beth-shean to Abel-meholah, as far as the other side of Jokmeam;</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Ben-geber, in Ramoth-gilead (he had the villages of Jair son of Manasseh, which are in Gilead, and he had the region of Argob, which is in Bashan, sixty great cities with walls and bronze bars);</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Ahinadab son of Iddo, in Mahanaim;</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Ahimaaz, in Naphtali (he had taken Basemath, Solomon's daughter, as his wife);</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Baana son of Hushai, in Asher and Bealoth;</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Jehoshaphat son of Paruah, in Issachar;</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Shimei son of Ela, in Benjamin;</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Geber son of Uri, in the land of Gilead, the country of King Sihon of the Amorites and of King Og of Bashan. And there was one official in the land of Judah.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Judah and Israel were as numerous as the sand by the sea; they ate and drank and were happy.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Solomon was sovereign over all the kingdoms from the Euphrates to the land of the Philistines, even to the border of Egypt; they brought tribute and served Solomon all the days of his life.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Solomon's provision for one day was thirty cors of choice flour, and sixty cors of meal,</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> ten fat oxen, and twenty pasture-fed cattle, one hundred sheep, besides deer, gazelles, roebucks, and fatted fowl.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> For he had dominion over all the region west of the Euphrates from Tiphsah to Gaza, over all the kings west of the Euphrates; and he had peace on all sides.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> During Solomon's lifetime Judah and Israel lived in safety, from Dan even to Beer-sheba, all of them under their vines and fig trees.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Solomon also had forty thousand stalls of horses for his chariots, and twelve thousand horsemen.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Those officials supplied provisions for King Solomon and for all who came to King Solomon's table, each one in his month; they let nothing be lacking.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> They also brought to the required place barley and straw for the horses and swift steeds, each according to his charge.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> God gave Solomon very great wisdom, discernment, and breadth of understanding as vast as the sand on the seashore,</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> so that Solomon's wisdom surpassed the wisdom of all the people of the east, and all the wisdom of Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> He was wiser than anyone else, wiser than Ethan the Ezrahite, and Heman, Calcol, and Darda, children of Mahol; his fame spread throughout all the surrounding nations.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> He composed three thousand proverbs, and his songs numbered a thousand and five.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> He would speak of trees, from the cedar that is in the Lebanon to the hyssop that grows in the wall; he would speak of animals, and birds, and reptiles, and fish.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> People came from all the nations to hear the wisdom of Solomon; they came from all the kings of the earth who had heard of his wisdom.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"5\">\r\n\t\t\t<VERS vnumber=\"1\"> Now King Hiram of Tyre sent his servants to Solomon, when he heard that they had anointed him king in place of his father; for Hiram had always been a friend to David.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Solomon sent word to Hiram, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> \"You know that my father David could not build a house for the name of the LORD his God because of the warfare with which his enemies surrounded him, until the LORD put them under the soles of his feet. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But now the LORD my God has given me rest on every side; there is neither adversary nor misfortune.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> So I intend to build a house for the name of the LORD my God, as the LORD said to my father David, 'Your son, whom I will set on your throne in your place, shall build the house for my name.'</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Therefore command that cedars from the Lebanon be cut for me. My servants will join your servants, and I will give you whatever wages you set for your servants; for you know that there is no one among us who knows how to cut timber like the Sidonians.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> When Hiram heard the words of Solomon, he rejoiced greatly, and said, \"Blessed be the LORD today, who has given to David a wise son to be over this great people.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Hiram sent word to Solomon, \"I have heard the message that you have sent to me; I will fulfill all your needs in the matter of cedar and cypress timber.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> My servants shall bring it down to the sea from the Lebanon; I will make it into rafts to go by sea to the place you indicate. I will have them broken up there for you to take away. And you shall meet my needs by providing food for my household.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> So Hiram supplied Solomon's every need for timber of cedar and cypress.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Solomon in turn gave Hiram twenty thousand cors of wheat as food for his household, and twenty cors of fine oil. Solomon gave this to Hiram year by year.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> So the LORD gave Solomon wisdom, as he promised him. There was peace between Hiram and Solomon; and the two of them made a treaty.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> King Solomon conscripted forced labor out of all Israel; the levy numbered thirty thousand men.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> He sent them to the Lebanon, ten thousand a month in shifts; they would be a month in the Lebanon and two months at home; Adoniram was in charge of the forced labor.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Solomon also had seventy thousand laborers and eighty thousand stonecutters in the hill country,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> besides Solomon's three thousand three hundred supervisors who were over the work, having charge of the people who did the work.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> At the king's command, they quarried out great, costly stones in order to lay the foundation of the house with dressed stones.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> So Solomon's builders and Hiram's builders and the Gebalites did the stonecutting and prepared the timber and the stone to build the house.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"6\">\r\n\t\t\t<VERS vnumber=\"1\"> In the four hundred eightieth year after the Israelites came out of the land of Egypt, in the fourth year of Solomon's reign over Israel, in the month of Ziv, which is the second month, he began to build the house of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The house that King Solomon built for the LORD was sixty cubits long, twenty cubits wide, and thirty cubits high.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The vestibule in front of the nave of the house was twenty cubits wide, across the width of the house. Its depth was ten cubits in front of the house.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For the house he made windows with recessed frames. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> He also built a structure against the wall of the house, running around the walls of the house, both the nave and the inner sanctuary; and he made side chambers all around.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The lowest story was five cubits wide, the middle one was six cubits wide, and the third was seven cubits wide; for around the outside of the house he made offsets on the wall in order that the supporting beams should not be inserted into the walls of the house. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The house was built with stone finished at the quarry, so that neither hammer nor ax nor any tool of iron was heard in the temple while it was being built.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The entrance for the middle story was on the south side of the house: one went up by winding stairs to the middle story, and from the middle story to the third.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> So he built the house, and finished it; he roofed the house with beams and planks of cedar.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> He built the structure against the whole house, each story five cubits high, and it was joined to the house with timbers of cedar. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Now the word of the LORD came to Solomon,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> \"Concerning this house that you are building, if you will walk in my statutes, obey my ordinances, and keep all my commandments by walking in them, then I will establish my promise with you, which I made to your father David.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> I will dwell among the children of Israel, and will not forsake my people Israel.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> So Solomon built the house, and finished it.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> He lined the walls of the house on the inside with boards of cedar; from the floor of the house to the rafters of the ceiling, he covered them on the inside with wood; and he covered the floor of the house with boards of cypress.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> He built twenty cubits of the rear of the house with boards of cedar from the floor to the rafters, and he built this within as an inner sanctuary, as the most holy place.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The house, that is, the nave in front of the inner sanctuary, was forty cubits long.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The cedar within the house had carvings of gourds and open flowers; all was cedar, no stone was seen.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The inner sanctuary he prepared in the innermost part of the house, to set there the ark of the covenant of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The interior of the inner sanctuary was twenty cubits long, twenty cubits wide, and twenty cubits high; he overlaid it with pure gold. He also overlaid the altar with cedar. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Solomon overlaid the inside of the house with pure gold, then he drew chains of gold across, in front of the inner sanctuary, and overlaid it with gold.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Next he overlaid the whole house with gold, in order that the whole house might be perfect; even the whole altar that belonged to the inner sanctuary he overlaid with gold.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> In the inner sanctuary he made two cherubim of olivewood, each ten cubits high.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Five cubits was the length of one wing of the cherub, and five cubits the length of the other wing of the cherub; it was ten cubits from the tip of one wing to the tip of the other.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> The other cherub also measured ten cubits; both cherubim had the same measure and the same form.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> The height of one cherub was ten cubits, and so was that of the other cherub.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> He put the cherubim in the innermost part of the house; the wings of the cherubim were spread out so that a wing of one was touching the one wall, and a wing of the other cherub was touching the other wall; their other wings toward the center of the house were touching wing to wing.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> He also overlaid the cherubim with gold.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> He carved the walls of the house all around about with carved engravings of cherubim, palm trees, and open flowers, in the inner and outer rooms.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> The floor of the house he overlaid with gold, in the inner and outer rooms.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> For the entrance to the inner sanctuary he made doors of olivewood; the lintel and the doorposts were five-sided. </VERS>\r\n\t\t\t<VERS vnumber=\"32\"> He covered the two doors of olivewood with carvings of cherubim, palm trees, and open flowers; he overlaid them with gold, and spread gold on the cherubim and on the palm trees.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> So also he made for the entrance to the nave doorposts of olivewood, four-sided each,</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> and two doors of cypress wood; the two leaves of the one door were folding, and the two leaves of the other door were folding.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> He carved cherubim, palm trees, and open flowers, overlaying them with gold evenly applied upon the carved work.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> He built the inner court with three courses of dressed stone to one course of cedar beams.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> In the fourth year the foundation of the house of the LORD was laid, in the month of Ziv.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> In the eleventh year, in the month of Bul, which is the eighth month, the house was finished in all its parts, and according to all its specifications. He was seven years in building it.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"7\">\r\n\t\t\t<VERS vnumber=\"1\"> Solomon was building his own house thirteen years, and he finished his entire house.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He built the House of the Forest of the Lebanon one hundred cubits long, fifty cubits wide, and thirty cubits high, built on four rows of cedar pillars, with cedar beams on the pillars.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> It was roofed with cedar on the forty-five rafters, fifteen in each row, which were on the pillars.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> There were window frames in the three rows, facing each other in the three rows.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> All the doorways and doorposts had four-sided frames, opposite, facing each other in the three rows.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> He made the Hall of Pillars fifty cubits long and thirty cubits wide. There was a porch in front with pillars, and a canopy in front of them.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> He made the Hall of the Throne where he was to pronounce judgment, the Hall of Justice, covered with cedar from floor to floor.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> His own house where he would reside, in the other court back of the hall, was of the same construction. Solomon also made a house like this hall for Pharaoh's daughter, whom he had taken in marriage.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> All these were made of costly stones, cut according to measure, sawed with saws, back and front, from the foundation to the coping, and from outside to the great court.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The foundation was of costly stones, huge stones, stones of eight and ten cubits.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> There were costly stones above, cut to measure, and cedarwood.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The great court had three courses of dressed stone to one layer of cedar beams all around; so had the inner court of the house of the LORD, and the vestibule of the house.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Now King Solomon invited and received Hiram from Tyre.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> He was the son of a widow of the tribe of Naphtali, whose father, a man of Tyre, had been an artisan in bronze; he was full of skill, intelligence, and knowledge in working bronze. He came to King Solomon, and did all his work.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> He cast two pillars of bronze. Eighteen cubits was the height of the one, and a cord of twelve cubits would encircle it; the second pillar was the same. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> He also made two capitals of molten bronze, to set on the tops of the pillars; the height of the one capital was five cubits, and the height of the other capital was five cubits.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> There were nets of checker work with wreaths of chain work for the capitals on the tops of the pillars; seven for the one capital, and seven for the other capital. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> He made the columns with two rows around each latticework to cover the capitals that were above the pomegranates; he did the same with the other capital.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Now the capitals that were on the tops of the pillars in the vestibule were of lily-work, four cubits high.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The capitals were on the two pillars and also above the rounded projection that was beside the latticework; there were two hundred pomegranates in rows all around; and so with the other capital.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> He set up the pillars at the vestibule of the temple; he set up the pillar on the south and called it Jachin; and he set up the pillar on the north and called it Boaz.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> On the tops of the pillars was lily-work. Thus the work of the pillars was finished.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Then he made the molten sea; it was round, ten cubits from brim to brim, and five cubits high. A line of thirty cubits would encircle it completely.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Under its brim were panels all around it, each of ten cubits, surrounding the sea; there were two rows of panels, cast when it was cast.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> It stood on twelve oxen, three facing north, three facing west, three facing south, and three facing east; the sea was set on them. The hindquarters of each were toward the inside.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Its thickness was a handbreadth; its brim was made like the brim of a cup, like the flower of a lily; it held two thousand baths. </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> He also made the ten stands of bronze; each stand was four cubits long, four cubits wide, and three cubits high.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> This was the construction of the stands: they had borders; the borders were within the frames;</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> on the borders that were set in the frames were lions, oxen, and cherubim. On the frames, both above and below the lions and oxen, there were wreaths of beveled work.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Each stand had four bronze wheels and axles of bronze; at the four corners were supports for a basin. The supports were cast with wreaths at the side of each.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Its opening was within the crown whose height was one cubit; its opening was round, as a pedestal is made; it was a cubit and a half wide. At its opening there were carvings; its borders were four-sided, not round.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> The four wheels were underneath the borders; the axles of the wheels were in the stands; and the height of a wheel was a cubit and a half.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> The wheels were made like a chariot wheel; their axles, their rims, their spokes, and their hubs were all cast.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> There were four supports at the four corners of each stand; the supports were of one piece with the stands.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> On the top of the stand there was a round band half a cubit high; on the top of the stand, its stays and its borders were of one piece with it.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> On the surfaces of its stays and on its borders he carved cherubim, lions, and palm trees, where each had space, with wreaths all around.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> In this way he made the ten stands; all of them were cast alike, with the same size and the same form.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> He made ten basins of bronze; each basin held forty baths, each basin measured four cubits; there was a basin for each of the ten stands. </VERS>\r\n\t\t\t<VERS vnumber=\"39\"> He set five of the stands on the south side of the house, and five on the north side of the house; he set the sea on the southeast corner of the house.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> Hiram also made the pots, the shovels, and the basins. So Hiram finished all the work that he did for King Solomon on the house of the LORD:</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> the two pillars, the two bowls of the capitals that were on the tops of the pillars, the two latticeworks to cover the two bowls of the capitals that were on the tops of the pillars;</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> the four hundred pomegranates for the two latticeworks, two rows of pomegranates for each latticework, to cover the two bowls of the capitals that were on the pillars;</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> the ten stands, the ten basins on the stands;</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> the one sea, and the twelve oxen underneath the sea.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> The pots, the shovels, and the basins, all these vessels that Hiram made for King Solomon for the house of the LORD were of burnished bronze.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> In the plain of the Jordan the king cast them, in the clay ground between Succoth and Zarethan.</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> Solomon left all the vessels unweighed, because there were so many of them; the weight of the bronze was not determined.</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> So Solomon made all the vessels that were in the house of the LORD: the golden altar, the golden table for the bread of the Presence,</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> the lampstands of pure gold, five on the south side and five on the north, in front of the inner sanctuary; the flowers, the lamps, and the tongs, of gold;</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> the cups, snuffers, basins, dishes for incense, and firepans, of pure gold; the sockets for the doors of the innermost part of the house, the most holy place, and for the doors of the nave of the temple, of gold.</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> Thus all the work that King Solomon did on the house of the LORD was finished. Solomon brought in the things that his father David had dedicated, the silver, the gold, and the vessels, and stored them in the treasuries of the house of the LORD.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"8\">\r\n\t\t\t<VERS vnumber=\"1\"> Then Solomon assembled the elders of Israel and all the heads of the tribes, the leaders of the ancestral houses of the Israelites, before King Solomon in Jerusalem, to bring up the ark of the covenant of the LORD out of the city of David, which is Zion.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> All the people of Israel assembled to King Solomon at the festival in the month Ethanim, which is the seventh month.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And all the elders of Israel came, and the priests carried the ark.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> So they brought up the ark of the LORD, the tent of meeting, and all the holy vessels that were in the tent; the priests and the Levites brought them up.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> King Solomon and all the congregation of Israel, who had assembled before him, were with him before the ark, sacrificing so many sheep and oxen that they could not be counted or numbered.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then the priests brought the ark of the covenant of the LORD to its place, in the inner sanctuary of the house, in the most holy place, underneath the wings of the cherubim.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> For the cherubim spread out their wings over the place of the ark, so that the cherubim made a covering above the ark and its poles.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The poles were so long that the ends of the poles were seen from the holy place in front of the inner sanctuary; but they could not be seen from outside; they are there to this day.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> There was nothing in the ark except the two tablets of stone that Moses had placed there at Horeb, where the LORD made a covenant with the Israelites, when they came out of the land of Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And when the priests came out of the holy place, a cloud filled the house of the LORD,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> so that the priests could not stand to minister because of the cloud; for the glory of the LORD filled the house of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then Solomon said, \"The LORD has said that he would dwell in thick darkness.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> I have built you an exalted house, a place for you to dwell in forever.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then the king turned around and blessed all the assembly of Israel, while all the assembly of Israel stood.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> He said, \"Blessed be the LORD, the God of Israel, who with his hand has fulfilled what he promised with his mouth to my father David, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> 'Since the day that I brought my people Israel out of Egypt, I have not chosen a city from any of the tribes of Israel in which to build a house, that my name might be there; but I chose David to be over my people Israel.'</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> My father David had it in mind to build a house for the name of the LORD, the God of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> But the LORD said to my father David, 'You did well to consider building a house for my name;</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> nevertheless you shall not build the house, but your son who shall be born to you shall build the house for my name.'</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Now the LORD has upheld the promise that he made; for I have risen in the place of my father David; I sit on the throne of Israel, as the LORD promised, and have built the house for the name of the LORD, the God of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> There I have provided a place for the ark, in which is the covenant of the LORD that he made with our ancestors when he brought them out of the land of Egypt.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Then Solomon stood before the altar of the LORD in the presence of all the assembly of Israel, and spread out his hands to heaven.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> He said, \"O LORD, God of Israel, there is no God like you in heaven above or on earth beneath, keeping covenant and steadfast love for your servants who walk before you with all their heart,</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> the covenant that you kept for your servant my father David as you declared to him; you promised with your mouth and have this day fulfilled with your hand.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Therefore, O LORD, God of Israel, keep for your servant my father David that which you promised him, saying, 'There shall never fail you a successor before me to sit on the throne of Israel, if only your children look to their way, to walk before me as you have walked before me.'</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Therefore, O God of Israel, let your word be confirmed, which you promised to your servant my father David.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> \"But will God indeed dwell on the earth? Even heaven and the highest heaven cannot contain you, much less this house that I have built!</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Regard your servant's prayer and his plea, O LORD my God, heeding the cry and the prayer that your servant prays to you today;</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> that your eyes may be open night and day toward this house, the place of which you said, 'My name shall be there,' that you may heed the prayer that your servant prays toward this place.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Hear the plea of your servant and of your people Israel when they pray toward this place; O hear in heaven your dwelling place; heed and forgive.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> \"If someone sins against a neighbor and is given an oath to swear, and comes and swears before your altar in this house,</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> then hear in heaven, and act, and judge your servants, condemning the guilty by bringing their conduct on their own head, and vindicating the righteous by rewarding them according to their righteousness.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> \"When your people Israel, having sinned against you, are defeated before an enemy but turn again to you, confess your name, pray and plead with you in this house,</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> then hear in heaven, forgive the sin of your people Israel, and bring them again to the land that you gave to their ancestors.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> \"When heaven is shut up and there is no rain because they have sinned against you, and then they pray toward this place, confess your name, and turn from their sin, because you punish them, </VERS>\r\n\t\t\t<VERS vnumber=\"36\"> then hear in heaven, and forgive the sin of your servants, your people Israel, when you teach them the good way in which they should walk; and grant rain on your land, which you have given to your people as an inheritance.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> \"If there is famine in the land, if there is plague, blight, mildew, locust, or caterpillar; if their enemy besieges them in any of their cities; whatever plague, whatever sickness there is; </VERS>\r\n\t\t\t<VERS vnumber=\"38\"> whatever prayer, whatever plea there is from any individual or from all your people Israel, all knowing the afflictions of their own hearts so that they stretch out their hands toward this house;</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> then hear in heaven your dwelling place, forgive, act, and render to all whose hearts you know-- according to all their ways, for only you know what is in every human heart--</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> so that they may fear you all the days that they live in the land that you gave to our ancestors.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> \"Likewise when a foreigner, who is not of your people Israel, comes from a distant land because of your name</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> -- for they shall hear of your great name, your mighty hand, and your outstretched arm-- when a foreigner comes and prays toward this house,</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> then hear in heaven your dwelling place, and do according to all that the foreigner calls to you, so that all the peoples of the earth may know your name and fear you, as do your people Israel, and so that they may know that your name has been invoked on this house that I have built.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> \"If your people go out to battle against their enemy, by whatever way you shall send them, and they pray to the LORD toward the city that you have chosen and the house that I have built for your name,</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> then hear in heaven their prayer and their plea, and maintain their cause.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> \"If they sin against you-- for there is no one who does not sin-- and you are angry with them and give them to an enemy, so that they are carried away captive to the land of the enemy, far off or near;</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> yet if they come to their senses in the land to which they have been taken captive, and repent, and plead with you in the land of their captors, saying, 'We have sinned, and have done wrong; we have acted wickedly';</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> if they repent with all their heart and soul in the land of their enemies, who took them captive, and pray to you toward their land, which you gave to their ancestors, the city that you have chosen, and the house that I have built for your name;</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> then hear in heaven your dwelling place their prayer and their plea, maintain their cause</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> and forgive your people who have sinned against you, and all their transgressions that they have committed against you; and grant them compassion in the sight of their captors, so that they may have compassion on them</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> (for they are your people and heritage, which you brought out of Egypt, from the midst of the iron-smelter).</VERS>\r\n\t\t\t<VERS vnumber=\"52\"> Let your eyes be open to the plea of your servant, and to the plea of your people Israel, listening to them whenever they call to you.</VERS>\r\n\t\t\t<VERS vnumber=\"53\"> For you have separated them from among all the peoples of the earth, to be your heritage, just as you promised through Moses, your servant, when you brought our ancestors out of Egypt, O Lord GOD.\"</VERS>\r\n\t\t\t<VERS vnumber=\"54\"> Now when Solomon finished offering all this prayer and this plea to the LORD, he arose from facing the altar of the LORD, where he had knelt with hands outstretched toward heaven;</VERS>\r\n\t\t\t<VERS vnumber=\"55\"> he stood and blessed all the assembly of Israel with a loud voice:</VERS>\r\n\t\t\t<VERS vnumber=\"56\"> \"Blessed be the LORD, who has given rest to his people Israel according to all that he promised; not one word has failed of all his good promise, which he spoke through his servant Moses.</VERS>\r\n\t\t\t<VERS vnumber=\"57\"> The LORD our God be with us, as he was with our ancestors; may he not leave us or abandon us,</VERS>\r\n\t\t\t<VERS vnumber=\"58\"> but incline our hearts to him, to walk in all his ways, and to keep his commandments, his statutes, and his ordinances, which he commanded our ancestors.</VERS>\r\n\t\t\t<VERS vnumber=\"59\"> Let these words of mine, with which I pleaded before the LORD, be near to the LORD our God day and night, and may he maintain the cause of his servant and the cause of his people Israel, as each day requires;</VERS>\r\n\t\t\t<VERS vnumber=\"60\"> so that all the peoples of the earth may know that the LORD is God; there is no other.</VERS>\r\n\t\t\t<VERS vnumber=\"61\"> Therefore devote yourselves completely to the LORD our God, walking in his statutes and keeping his commandments, as at this day.\"</VERS>\r\n\t\t\t<VERS vnumber=\"62\"> Then the king, and all Israel with him, offered sacrifice before the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"63\"> Solomon offered as sacrifices of well-being to the LORD twenty-two thousand oxen and one hundred twenty thousand sheep. So the king and all the people of Israel dedicated the house of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"64\"> The same day the king consecrated the middle of the court that was in front of the house of the LORD; for there he offered the burnt offerings and the grain offerings and the fat pieces of the sacrifices of well-being, because the bronze altar that was before the LORD was too small to receive the burnt offerings and the grain offerings and the fat pieces of the sacrifices of well-being.</VERS>\r\n\t\t\t<VERS vnumber=\"65\"> So Solomon held the festival at that time, and all Israel with him-- a great assembly, people from Lebo-hamath to the Wadi of Egypt-- before the LORD our God, seven days.</VERS>\r\n\t\t\t<VERS vnumber=\"66\"> On the eighth day he sent the people away; and they blessed the king, and went to their tents, joyful and in good spirits because of all the goodness that the LORD had shown to his servant David and to his people Israel.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"9\">\r\n\t\t\t<VERS vnumber=\"1\"> When Solomon had finished building the house of the LORD and the king's house and all that Solomon desired to build,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> the LORD appeared to Solomon a second time, as he had appeared to him at Gibeon.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The LORD said to him, \"I have heard your prayer and your plea, which you made before me; I have consecrated this house that you have built, and put my name there forever; my eyes and my heart will be there for all time.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> As for you, if you will walk before me, as David your father walked, with integrity of heart and uprightness, doing according to all that I have commanded you, and keeping my statutes and my ordinances,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> then I will establish your royal throne over Israel forever, as I promised your father David, saying, 'There shall not fail you a successor on the throne of Israel.'</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> \"If you turn aside from following me, you or your children, and do not keep my commandments and my statutes that I have set before you, but go and serve other gods and worship them,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> then I will cut Israel off from the land that I have given them; and the house that I have consecrated for my name I will cast out of my sight; and Israel will become a proverb and a taunt among all peoples.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> This house will become a heap of ruins; everyone passing by it will be astonished, and will hiss; and they will say, 'Why has the LORD done such a thing to this land and to this house?' </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then they will say, 'Because they have forsaken the LORD their God, who brought their ancestors out of the land of Egypt, and embraced other gods, worshiping them and serving them; therefore the LORD has brought this disaster upon them.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> At the end of twenty years, in which Solomon had built the two houses, the house of the LORD and the king's house,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> King Hiram of Tyre having supplied Solomon with cedar and cypress timber and gold, as much as he desired, King Solomon gave to Hiram twenty cities in the land of Galilee.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> But when Hiram came from Tyre to see the cities that Solomon had given him, they did not please him.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Therefore he said, \"What kind of cities are these that you have given me, my brother?\" So they are called the land of Cabul to this day. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But Hiram had sent to the king one hundred twenty talents of gold.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> This is the account of the forced labor that King Solomon conscripted to build the house of the LORD and his own house, the Millo and the wall of Jerusalem, Hazor, Megiddo, Gezer</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> (Pharaoh king of Egypt had gone up and captured Gezer and burned it down, had killed the Canaanites who lived in the city, and had given it as dowry to his daughter, Solomon's wife;</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> so Solomon rebuilt Gezer), Lower Beth-horon,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Baalath, Tamar in the wilderness, within the land,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> as well as all of Solomon's storage cities, the cities for his chariots, the cities for his cavalry, and whatever Solomon desired to build, in Jerusalem, in Lebanon, and in all the land of his dominion.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> All the people who were left of the Amorites, the Hittites, the Perizzites, the Hivites, and the Jebusites, who were not of the people of Israel--</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> their descendants who were still left in the land, whom the Israelites were unable to destroy completely-- these Solomon conscripted for slave labor, and so they are to this day.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> But of the Israelites Solomon made no slaves; they were the soldiers, they were his officials, his commanders, his captains, and the commanders of his chariotry and cavalry.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> These were the chief officers who were over Solomon's work: five hundred fifty, who had charge of the people who carried on the work.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> But Pharaoh's daughter went up from the city of David to her own house that Solomon had built for her; then he built the Millo.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Three times a year Solomon used to offer up burnt offerings and sacrifices of well-being on the altar that he built for the LORD, offering incense before the LORD. So he completed the house. </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> King Solomon built a fleet of ships at Ezion-geber, which is near Eloth on the shore of the Red Sea, in the land of Edom. </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Hiram sent his servants with the fleet, sailors who were familiar with the sea, together with the servants of Solomon.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> They went to Ophir, and imported from there four hundred twenty talents of gold, which they delivered to King Solomon.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"10\">\r\n\t\t\t<VERS vnumber=\"1\"> When the queen of Sheba heard of the fame of Solomon (fame due to the name of the LORD), she came to test him with hard questions. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> She came to Jerusalem with a very great retinue, with camels bearing spices, and very much gold, and precious stones; and when she came to Solomon, she told him all that was on her mind.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Solomon answered all her questions; there was nothing hidden from the king that he could not explain to her.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> When the queen of Sheba had observed all the wisdom of Solomon, the house that he had built,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> the food of his table, the seating of his officials, and the attendance of his servants, their clothing, his valets, and his burnt offerings that he offered at the house of the LORD, there was no more spirit in her.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> So she said to the king, \"The report was true that I heard in my own land of your accomplishments and of your wisdom,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> but I did not believe the reports until I came and my own eyes had seen it. Not even half had been told me; your wisdom and prosperity far surpass the report that I had heard.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Happy are your wives! Happy are these your servants, who continually attend you and hear your wisdom! </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Blessed be the LORD your God, who has delighted in you and set you on the throne of Israel! Because the LORD loved Israel forever, he has made you king to execute justice and righteousness.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then she gave the king one hundred twenty talents of gold, a great quantity of spices, and precious stones; never again did spices come in such quantity as that which the queen of Sheba gave to King Solomon.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Moreover, the fleet of Hiram, which carried gold from Ophir, brought from Ophir a great quantity of almug wood and precious stones.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> From the almug wood the king made supports for the house of the LORD, and for the king's house, lyres also and harps for the singers; no such almug wood has come or been seen to this day.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Meanwhile King Solomon gave to the queen of Sheba every desire that she expressed, as well as what he gave her out of Solomon's royal bounty. Then she returned to her own land, with her servants.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The weight of gold that came to Solomon in one year was six hundred sixty-six talents of gold,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> besides that which came from the traders and from the business of the merchants, and from all the kings of Arabia and the governors of the land.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> King Solomon made two hundred large shields of beaten gold; six hundred shekels of gold went into each large shield.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> He made three hundred shields of beaten gold; three minas of gold went into each shield; and the king put them in the House of the Forest of Lebanon.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The king also made a great ivory throne, and overlaid it with the finest gold.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The throne had six steps. The top of the throne was rounded in the back, and on each side of the seat were arm rests and two lions standing beside the arm rests,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> while twelve lions were standing, one on each end of a step on the six steps. Nothing like it was ever made in any kingdom.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> 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 not considered as anything in the days of Solomon.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> For the king had a fleet of ships of Tarshish at sea with the fleet of Hiram. Once every three years the fleet of ships of Tarshish used to come bringing gold, silver, ivory, apes, and peacocks. </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Thus King Solomon excelled all the kings of the earth in riches and in wisdom.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> The whole earth sought the presence of Solomon to hear his wisdom, which God had put into his mind.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Every one of them brought a present, objects of silver and gold, garments, weaponry, spices, horses, and mules, so much year by year.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Solomon gathered together chariots and horses; he had fourteen hundred chariots and twelve thousand horses, which he stationed in the chariot cities and with the king in Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> The king made silver as common in Jerusalem as stones, and he made cedars as numerous as the sycamores of the Shephelah.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Solomon's import of horses was from Egypt and Kue, and the king's traders received them from Kue at a price.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> A chariot could be imported from Egypt for six hundred shekels of silver, and a horse for one hundred fifty; so through the king's traders they were exported to all the kings of the Hittites and the kings of Aram.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"11\">\r\n\t\t\t<VERS vnumber=\"1\"> King Solomon loved many foreign women along with the daughter of Pharaoh: Moabite, Ammonite, Edomite, Sidonian, and Hittite women,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> from the nations concerning which the LORD had said to the Israelites, \"You shall not enter into marriage with them, neither shall they with you; for they will surely incline your heart to follow their gods\"; Solomon clung to these in love.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Among his wives were seven hundred princesses and three hundred concubines; and his wives turned away his heart.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For when Solomon was old, his wives turned away his heart after other gods; and his heart was not true to the LORD his God, as was the heart of his father David.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> For Solomon followed Astarte the goddess of the Sidonians, and Milcom the abomination of the Ammonites.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> So Solomon did what was evil in the sight of the LORD, and did not completely follow the LORD, as his father David had done.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then Solomon built a high place for Chemosh the abomination of Moab, and for Molech the abomination of the Ammonites, on the mountain east of Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> He did the same for all his foreign wives, who offered incense and sacrificed to their gods.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then the LORD was angry with Solomon, because his heart had turned away from the LORD, the God of Israel, who had appeared to him twice,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> and had commanded him concerning this matter, that he should not follow other gods; but he did not observe what the LORD commanded.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Therefore the LORD said to Solomon, \"Since this has been your mind and you have not kept my covenant and my statutes that I have commanded you, I will surely tear the kingdom from you and give it to your servant.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Yet for the sake of your father David I will not do it in your lifetime; I will tear it out of the hand of your son.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> I will not, however, tear away the entire kingdom; I will give one tribe to your son, for the sake of my servant David and for the sake of Jerusalem, which I have chosen.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then the LORD raised up an adversary against Solomon, Hadad the Edomite; he was of the royal house in Edom.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> For when David was in Edom, and Joab the commander of the army went up to bury the dead, he killed every male in Edom</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> (for Joab and all Israel remained there six months, until he had eliminated every male in Edom);</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> but Hadad fled to Egypt with some Edomites who were servants of his father. He was a young boy at that time.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> They set out from Midian and came to Paran; they took people with them from Paran and came to Egypt, to Pharaoh king of Egypt, who gave him a house, assigned him an allowance of food, and gave him land.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Hadad found great favor in the sight of Pharaoh, so that he gave him his sister-in-law for a wife, the sister of Queen Tahpenes.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The sister of Tahpenes gave birth by him to his son Genubath, whom Tahpenes weaned in Pharaoh's house; Genubath was in Pharaoh's house among the children of Pharaoh.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> When Hadad heard in Egypt that David slept with his ancestors and that Joab the commander of the army was dead, Hadad said to Pharaoh, \"Let me depart, that I may go to my own country.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> But Pharaoh said to him, \"What do you lack with me that you now seek to go to your own country?\" And he said, \"No, do let me go.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> God raised up another adversary against Solomon, Rezon son of Eliada, who had fled from his master, King Hadadezer of Zobah. </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> He gathered followers around him and became leader of a marauding band, after the slaughter by David; they went to Damascus, settled there, and made him king in Damascus.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> He was an adversary of Israel all the days of Solomon, making trouble as Hadad did; he despised Israel and reigned over Aram.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Jeroboam son of Nebat, an Ephraimite of Zeredah, a servant of Solomon, whose mother's name was Zeruah, a widow, rebelled against the king.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> The following was the reason he rebelled against the king. Solomon built the Millo, and closed up the gap in the wall of the city of his father David. </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> The man Jeroboam was very able, and when Solomon saw that the young man was industrious he gave him charge over all the forced labor of the house of Joseph.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> About that time, when Jeroboam was leaving Jerusalem, the prophet Ahijah the Shilonite found him on the road. Ahijah had clothed himself with a new garment. The two of them were alone in the open country</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> when Ahijah laid hold of the new garment he was wearing and tore it into twelve pieces.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> He then said to Jeroboam: Take for yourself ten pieces; for thus says the LORD, the God of Israel, \"See, I am about to tear the kingdom from the hand of Solomon, and will give you ten tribes.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> One tribe will remain his, for the sake of my servant David and for the sake of Jerusalem, the city that I have chosen out of all the tribes of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> This is because he has forsaken me, worshiped Astarte the goddess of the Sidonians, Chemosh the god of Moab, and Milcom the god of the Ammonites, and has not walked in my ways, doing what is right in my sight and keeping my statutes and my ordinances, as his father David did. </VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Nevertheless I will not take the whole kingdom away from him but will make him ruler all the days of his life, for the sake of my servant David whom I chose and who did keep my commandments and my statutes;</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> but I will take the kingdom away from his son and give it to you-- that is, the ten tribes.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Yet to his son I will give one tribe, so that my servant David may always have a lamp before me in Jerusalem, the city where I have chosen to put my name.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> I will take you, and you shall reign over all that your soul desires; you shall be king over Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> If you will listen to all that I command you, walk in my ways, and do what is right in my sight by keeping my statutes and my commandments, as David my servant did, I will be with you, and will build you an enduring house, as I built for David, and I will give Israel to you.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> For this reason I will punish the descendants of David, but not forever.\"</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> Solomon sought therefore to kill Jeroboam; but Jeroboam promptly fled to Egypt, to King Shishak of Egypt, and remained in Egypt until the death of Solomon.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> Now the rest of the acts of Solomon, all that he did as well as his wisdom, are they not written in the Book of the Acts of Solomon?</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> The time that Solomon reigned in Jerusalem over all Israel was forty years.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> Solomon slept with his ancestors and was buried in the city of his father David; and his son Rehoboam succeeded him.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"12\">\r\n\t\t\t<VERS vnumber=\"1\"> Rehoboam went to Shechem, for all Israel had come to Shechem to make him king.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> When Jeroboam son of Nebat heard of it (for he was still in Egypt, where he had fled from King Solomon), then Jeroboam returned from Egypt. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And they sent and called him; and Jeroboam and all the assembly of Israel came and said to Rehoboam,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> \"Your father made our yoke heavy. Now therefore lighten the hard service of your father and his heavy yoke that he placed on us, and we will serve you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> He said to them, \"Go away for three days, then come again to me.\" So the people went away.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then King Rehoboam took counsel with the older men who had attended his father Solomon while he was still alive, saying, \"How do you advise me to answer this people?\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> They answered him, \"If you will be a servant to this people today and serve them, and speak good words to them when you answer them, then they will be your servants forever.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But he disregarded the advice that the older men gave him, and consulted with the young men who had grown up with him and now attended him.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> He said to them, \"What do you advise that we answer this people who have said to me, 'Lighten the yoke that your father put on us'?\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The young men who had grown up with him said to him, \"Thus you should say to this people who spoke to you, 'Your father made our yoke heavy, but you must lighten it for us'; thus you should say to them, 'My little finger is thicker than my father's loins.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Now, whereas my father laid on you a heavy yoke, I will add to your yoke. My father disciplined you with whips, but I will discipline you with scorpions.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> So Jeroboam and all the people came to Rehoboam the third day, as the king had said, \"Come to me again the third day.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The king answered the people harshly. He disregarded the advice that the older men had given him</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> and spoke to them according to the advice of the young men, \"My father made your yoke heavy, but I will add to your yoke; my father disciplined you with whips, but I will discipline you with scorpions.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> So the king did not listen to the people, because it was a turn of affairs brought about by the LORD that he might fulfill his word, which the LORD had spoken by Ahijah the Shilonite to Jeroboam son of Nebat.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> When all Israel saw that the king would not listen to them, the people answered the king, \"What share do we have in David? We have no inheritance in the son of Jesse. To your tents, O Israel! Look now to your own house, O David.\" So Israel went away to their tents.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> But Rehoboam reigned over the Israelites who were living in the towns of Judah.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> When King Rehoboam sent Adoram, who was taskmaster over the forced labor, all Israel stoned him to death. King Rehoboam then hurriedly mounted his chariot to flee to Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> So Israel has been in rebellion against the house of David to this day.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> When all Israel heard that Jeroboam had returned, they sent and called him to the assembly and made him king over all Israel. There was no one who followed the house of David, except the tribe of Judah alone.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> When Rehoboam came to Jerusalem, he assembled all the house of Judah and the tribe of Benjamin, one hundred eighty thousand chosen troops to fight against the house of Israel, to restore the kingdom to Rehoboam son of Solomon.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> But the word of God came to Shemaiah the man of God:</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Say to King Rehoboam of Judah, son of Solomon, and to all the house of Judah and Benjamin, and to the rest of the people,</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> \"Thus says the LORD, You shall not go up or fight against your kindred the people of Israel. Let everyone go home, for this thing is from me.\" So they heeded the word of the LORD and went home again, according to the word of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Then Jeroboam built Shechem in the hill country of Ephraim, and resided there; he went out from there and built Penuel.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Then Jeroboam said to himself, \"Now the kingdom may well revert to the house of David.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> If this people continues to go up to offer sacrifices in the house of the LORD at Jerusalem, the heart of this people will turn again to their master, King Rehoboam of Judah; they will kill me and return to King Rehoboam of Judah.\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> So the king took counsel, and made two calves of gold. He said to the people, \"You have gone up to Jerusalem long enough. Here are your gods, O Israel, who brought you up out of the land of Egypt.\" </VERS>\r\n\t\t\t<VERS vnumber=\"29\"> He set one in Bethel, and the other he put in Dan.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> And this thing became a sin, for the people went to worship before the one at Bethel and before the other as far as Dan. </VERS>\r\n\t\t\t<VERS vnumber=\"31\"> He also made houses on high places, and appointed priests from among all the people, who were not Levites. </VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Jeroboam appointed a festival on the fifteenth day of the eighth month like the festival that was in Judah, and he offered sacrifices on the altar; so he did in Bethel, sacrificing to the calves that he had made. And he placed in Bethel the priests of the high places that he had made.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> He went up to the altar that he had made in Bethel on the fifteenth day in the eighth month, in the month that he alone had devised; he appointed a festival for the people of Israel, and he went up to the altar to offer incense.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"13\">\r\n\t\t\t<VERS vnumber=\"1\"> While Jeroboam was standing by the altar to offer incense, a man of God came out of Judah by the word of the LORD to Bethel</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> and proclaimed against the altar by the word of the LORD, and said, \"O altar, altar, thus says the LORD: 'A son shall be born to the house of David, Josiah by name; and he shall sacrifice on you the priests of the high places who offer incense on you, and human bones shall be burned on you.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> He gave a sign the same day, saying, \"This is the sign that the LORD has spoken: 'The altar shall be torn down, and the ashes that are on it shall be poured out.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> When the king heard what the man of God cried out against the altar at Bethel, Jeroboam stretched out his hand from the altar, saying, \"Seize him!\" But the hand that he stretched out against him withered so that he could not draw it back to himself.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The altar also was torn down, and the ashes poured out from the altar, according to the sign that the man of God had given by the word of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The king said to the man of God, \"Entreat now the favor of the LORD your God, and pray for me, so that my hand may be restored to me.\" So the man of God entreated the LORD; and the king's hand was restored to him, and became as it was before.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then the king said to the man of God, \"Come home with me and dine, and I will give you a gift.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But the man of God said to the king, \"If you give me half your kingdom, I will not go in with you; nor will I eat food or drink water in this place.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> For thus I was commanded by the word of the LORD: You shall not eat food, or drink water, or return by the way that you came.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> So he went another way, and did not return by the way that he had come to Bethel.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Now there lived an old prophet in Bethel. One of his sons came and told him all that the man of God had done that day in Bethel; the words also that he had spoken to the king, they told to their father.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Their father said to them, \"Which way did he go?\" And his sons showed him the way that the man of God who came from Judah had gone.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then he said to his sons, \"Saddle a donkey for me.\" So they saddled a donkey for him, and he mounted it.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> He went after the man of God, and found him sitting under an oak tree. He said to him, \"Are you the man of God who came from Judah?\" He answered, \"I am.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Then he said to him, \"Come home with me and eat some food.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> But he said, \"I cannot return with you, or go in with you; nor will I eat food or drink water with you in this place;</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> for it was said to me by the word of the LORD: You shall not eat food or drink water there, or return by the way that you came.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then the other said to him, \"I also am a prophet as you are, and an angel spoke to me by the word of the LORD: Bring him back with you into your house so that he may eat food and drink water.\" But he was deceiving him. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Then the man of God went back with him, and ate food and drank water in his house. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> As they were sitting at the table, the word of the LORD came to the prophet who had brought him back;</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> and he proclaimed to the man of God who came from Judah, \"Thus says the LORD: Because you have disobeyed the word of the LORD, and have not kept the commandment that the LORD your God commanded you,</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> but have come back and have eaten food and drunk water in the place of which he said to you, 'Eat no food, and drink no water,' your body shall not come to your ancestral tomb.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> After the man of God had eaten food and had drunk, they saddled for him a donkey belonging to the prophet who had brought him back. </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Then as he went away, a lion met him on the road and killed him. His body was thrown in the road, and the donkey stood beside it; the lion also stood beside the body.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> People passed by and saw the body thrown in the road, with the lion standing by the body. And they came and told it in the town where the old prophet lived.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> When the prophet who had brought him back from the way heard of it, he said, \"It is the man of God who disobeyed the word of the LORD; therefore the LORD has given him to the lion, which has torn him and killed him according to the word that the LORD spoke to him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Then he said to his sons, \"Saddle a donkey for me.\" So they saddled one,</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> and he went and found the body thrown in the road, with the donkey and the lion standing beside the body. The lion had not eaten the body or attacked the donkey.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> The prophet took up the body of the man of God, laid it on the donkey, and brought it back to the city, to mourn and to bury him. </VERS>\r\n\t\t\t<VERS vnumber=\"30\"> He laid the body in his own grave; and they mourned over him, saying, \"Alas, my brother!\"</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> After he had buried him, he said to his sons, \"When I die, bury me in the grave in which the man of God is buried; lay my bones beside his bones.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> For the saying that he proclaimed by the word of the LORD against the altar in Bethel, and against all the houses of the high places that are in the cities of Samaria, shall surely come to pass.\"</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Even after this event Jeroboam did not turn from his evil way, but made priests for the high places again from among all the people; any who wanted to be priests he consecrated for the high places.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> This matter became sin to the house of Jeroboam, so as to cut it off and to destroy it from the face of the earth.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"14\">\r\n\t\t\t<VERS vnumber=\"1\"> At that time Abijah son of Jeroboam fell sick.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Jeroboam said to his wife, \"Go, disguise yourself, so that it will not be known that you are the wife of Jeroboam, and go to Shiloh; for the prophet Ahijah is there, who said of me that I should be king over this people.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Take with you ten loaves, some cakes, and a jar of honey, and go to him; he will tell you what shall happen to the child.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Jeroboam's wife did so; she set out and went to Shiloh, and came to the house of Ahijah. Now Ahijah could not see, for his eyes were dim because of his age.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> But the LORD said to Ahijah, \"The wife of Jeroboam is coming to inquire of you concerning her son; for he is sick. Thus and thus you shall say to her.\" When she came, she pretended to be another woman.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> But when Ahijah heard the sound of her feet, as she came in at the door, he said, \"Come in, wife of Jeroboam; why do you pretend to be another? For I am charged with heavy tidings for you.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Go, tell Jeroboam, 'Thus says the LORD, the God of Israel: Because I exalted you from among the people, made you leader over my people Israel,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> and tore the kingdom away from the house of David to give it to you; yet you have not been like my servant David, who kept my commandments and followed me with all his heart, doing only that which was right in my sight,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> but you have done evil above all those who were before you and have gone and made for yourself other gods, and cast images, provoking me to anger, and have thrust me behind your back;</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> therefore, I will bring evil upon the house of Jeroboam. I will cut off from Jeroboam every male, both bond and free in Israel, and will consume the house of Jeroboam, just as one burns up dung until it is all gone.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Anyone belonging to Jeroboam who dies in the city, the dogs shall eat; and anyone who dies in the open country, the birds of the air shall eat; for the LORD has spoken.'</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Therefore set out, go to your house. When your feet enter the city, the child shall die.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> All Israel shall mourn for him and bury him; for he alone of Jeroboam's family shall come to the grave, because in him there is found something pleasing to the LORD, the God of Israel, in the house of Jeroboam.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Moreover the LORD will raise up for himself a king over Israel, who shall cut off the house of Jeroboam today, even right now! </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> \"The LORD will strike Israel, as a reed is shaken in the water; he will root up Israel out of this good land that he gave to their ancestors, and scatter them beyond the Euphrates, because they have made their sacred poles, provoking the LORD to anger. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> He will give Israel up because of the sins of Jeroboam, which he sinned and which he caused Israel to commit.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then Jeroboam's wife got up and went away, and she came to Tirzah. As she came to the threshold of the house, the child died.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> All Israel buried him and mourned for him, according to the word of the LORD, which he spoke by his servant the prophet Ahijah.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Now the rest of the acts of Jeroboam, how he warred and how he reigned, are written in the Book of the Annals of the Kings of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The time that Jeroboam reigned was twenty-two years; then he slept with his ancestors, and his son Nadab succeeded him.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Now Rehoboam son of Solomon reigned in Judah. Rehoboam was forty-one years old when he began to reign, and he reigned seventeen years in Jerusalem, the city that the LORD had chosen out of all the tribes of Israel, to put his name there. His mother's name was Naamah the Ammonite.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Judah did what was evil in the sight of the LORD; they provoked him to jealousy with their sins that they committed, more than all that their ancestors had done.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> For they also built for themselves high places, pillars, and sacred poles on every high hill and under every green tree; </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> there were also male temple prostitutes in the land. They committed all the abominations of the nations that the LORD drove out before the people of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> In the fifth year of King Rehoboam, King Shishak of Egypt came up against Jerusalem;</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> he took away the treasures of the house of the LORD and the treasures of the king's house; he took everything. He also took away all the shields of gold that Solomon had made;</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> so King Rehoboam made shields of bronze instead, and committed them to the hands of the officers of the guard, who kept the door of the king's house.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> As often as the king went into the house of the LORD, the guard carried them and brought them back to the guardroom.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Now the rest of the acts of Rehoboam, and all that he did, are they not written in the Book of the Annals of the Kings of Judah?</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> There was war between Rehoboam and Jeroboam continually.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Rehoboam slept with his ancestors and was buried with his ancestors in the city of David. His mother's name was Naamah the Ammonite. His son Abijam succeeded him.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"15\">\r\n\t\t\t<VERS vnumber=\"1\"> Now in the eighteenth year of King Jeroboam son of Nebat, Abijam began to reign over Judah.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He reigned for three years in Jerusalem. His mother's name was Maacah daughter of Abishalom.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> He committed all the sins that his father did before him; his heart was not true to the LORD his God, like the heart of his father David.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Nevertheless for David's sake the LORD his God gave him a lamp in Jerusalem, setting up his son after him, and establishing Jerusalem;</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> because David did what was right in the sight of the LORD, and did not turn aside from anything that he commanded him all the days of his life, except in the matter of Uriah the Hittite.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The war begun between Rehoboam and Jeroboam continued all the days of his life.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The rest of the acts of Abijam, and all that he did, are they not written in the Book of the Annals of the Kings of Judah? There was war between Abijam and Jeroboam.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Abijam slept with his ancestors, and they buried him in the city of David. Then his son Asa succeeded him.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> In the twentieth year of King Jeroboam of Israel, Asa began to reign over Judah;</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> he reigned forty-one years in Jerusalem. His mother's name was Maacah daughter of Abishalom.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Asa did what was right in the sight of the LORD, as his father David had done.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> He put away the male temple prostitutes out of the land, and removed all the idols that his ancestors had made.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> He also removed his mother Maacah from being queen mother, because she had made an abominable image for Asherah; Asa cut down her image and burned it at the Wadi Kidron.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But the high places were not taken away. Nevertheless the heart of Asa was true to the LORD all his days.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> He brought into the house of the LORD the votive gifts of his father and his own votive gifts-- silver, gold, and utensils.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> There was war between Asa and King Baasha of Israel all their days.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> King Baasha of Israel went up against Judah, and built Ramah, to prevent anyone from going out or coming in to King Asa of Judah.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then 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 gave them into the hands of his servants. King Asa sent them to King Ben-hadad son of Tabrimmon son of Hezion of Aram, who resided in Damascus, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> \"Let there be an alliance between me and you, like that between my father and your father: I am sending you a present of silver and gold; go, break your alliance with King Baasha of Israel, so that he may withdraw from me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Ben-hadad listened to King Asa, and sent the commanders of his armies against the cities of Israel. He conquered Ijon, Dan, Abel-beth-maacah, and all Chinneroth, with all the land of Naphtali.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> When Baasha heard of it, he stopped building Ramah and lived in Tirzah.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Then King Asa made a proclamation to all Judah, none was exempt: they carried away the stones of Ramah and its timber, with which Baasha had been building; with them King Asa built Geba of Benjamin and Mizpah.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Now the rest of all the acts of Asa, all his power, all that he did, and the cities that he built, are they not written in the Book of the Annals of the Kings of Judah? But in his old age he was diseased in his feet.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Then Asa slept with his ancestors, and was buried with his ancestors in the city of his father David; his son Jehoshaphat succeeded him.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Nadab son of Jeroboam began to reign over Israel in the second year of King Asa of Judah; he reigned over Israel two years.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> He did what was evil in the sight of the LORD, walking in the way of his ancestor and in the sin that he caused Israel to commit.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Baasha son of Ahijah, of the house of Issachar, conspired against him; and Baasha struck him down at Gibbethon, which belonged to the Philistines; for Nadab and all Israel were laying siege to Gibbethon.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> So Baasha killed Nadab in the third year of King Asa of Judah, and succeeded him. </VERS>\r\n\t\t\t<VERS vnumber=\"29\"> As soon as he was king, he killed all the house of Jeroboam; he left to the house of Jeroboam not one that breathed, until he had destroyed it, according to the word of the LORD that he spoke by his servant Ahijah the Shilonite--</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> because of the sins of Jeroboam that he committed and that he caused Israel to commit, and because of the anger to which he provoked the LORD, the God of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Now the rest of the acts of Nadab, and all that he did, are they not written in the Book of the Annals of the Kings of Israel?</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> There was war between Asa and King Baasha of Israel all their days.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> In the third year of King Asa of Judah, Baasha son of Ahijah began to reign over all Israel at Tirzah; he reigned twenty-four years.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> He did what was evil in the sight of the LORD, walking in the way of Jeroboam and in the sin that he caused Israel to commit.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"16\">\r\n\t\t\t<VERS vnumber=\"1\"> The word of the LORD came to Jehu son of Hanani against Baasha, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"Since I exalted you out of the dust and made you leader over my people Israel, and you have walked in the way of Jeroboam, and have caused my people Israel to sin, provoking me to anger with their sins,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> therefore, I will consume Baasha and his house, and I will make your house like the house of Jeroboam son of Nebat.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Anyone belonging to Baasha who dies in the city the dogs shall eat; and anyone of his who dies in the field the birds of the air shall eat.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Now the rest of the acts of Baasha, what he did, and his power, are they not written in the Book of the Annals of the Kings of Israel?</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Baasha slept with his ancestors, and was buried at Tirzah; and his son Elah succeeded him.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Moreover the word of the LORD came by the prophet Jehu son of Hanani against Baasha and his house, both because of all the evil that he did in the sight of the LORD, provoking him to anger with the work of his hands, in being like the house of Jeroboam, and also because he destroyed it.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> In the twenty-sixth year of King Asa of Judah, Elah son of Baasha began to reign over Israel in Tirzah; he reigned two years.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> But his servant Zimri, commander of half his chariots, conspired against him. When he was at Tirzah, drinking himself drunk in the house of Arza, who was in charge of the palace at Tirzah,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Zimri came in and struck him down and killed him, in the twenty-seventh year of King Asa of Judah, and succeeded him.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> When he began to reign, as soon as he had seated himself on his throne, he killed all the house of Baasha; he did not leave him a single male of his kindred or his friends.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Thus Zimri destroyed all the house of Baasha, according to the word of the LORD, which he spoke against Baasha by the prophet Jehu--</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> because of all the sins of Baasha and the sins of his son Elah that they committed, and that they caused Israel to commit, provoking the LORD God of Israel to anger with their idols.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Now the rest of the acts of Elah, and all that he did, are they not written in the Book of the Annals of the Kings of Israel?</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> In the twenty-seventh year of King Asa of Judah, Zimri reigned seven days in Tirzah. Now the troops were encamped against Gibbethon, which belonged to the Philistines,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> and the troops who were encamped heard it said, \"Zimri has conspired, and he has killed the king\"; therefore all Israel made Omri, the commander of the army, king over Israel that day in the camp.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> So Omri went up from Gibbethon, and all Israel with him, and they besieged Tirzah.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> When Zimri saw that the city was taken, he went into the citadel of the king's house; he burned down the king's house over himself with fire, and died--</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> because of the sins that he committed, doing evil in the sight of the LORD, walking in the way of Jeroboam, and for the sin that he committed, causing Israel to sin.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Now the rest of the acts of Zimri, and the conspiracy that he made, are they not written in the Book of the Annals of the Kings of Israel?</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then the people of Israel were divided into two parts; half of the people followed Tibni son of Ginath, to make him king, and half followed Omri.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> But the people who followed Omri overcame the people who followed Tibni son of Ginath; so Tibni died, and Omri became king.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> In the thirty-first year of King Asa of Judah, Omri began to reign over Israel; he reigned for twelve years, six of them in Tirzah.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> He bought the hill of Samaria from Shemer for two talents of silver; he fortified the hill, and called the city that he built, Samaria, after the name of Shemer, the owner of the hill.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Omri did what was evil in the sight of the LORD; he did more evil than all who were before him.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> For he walked in all the way of Jeroboam son of Nebat, and in the sins that he caused Israel to commit, provoking the LORD, the God of Israel, to anger by their idols.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Now the rest of the acts of Omri that he did, and the power that he showed, are they not written in the Book of the Annals of the Kings of Israel?</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Omri slept with his ancestors, and was buried in Samaria; his son Ahab succeeded him.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> In the thirty-eighth year of King Asa of Judah, Ahab son of Omri began to reign over Israel; Ahab son of Omri reigned over Israel in Samaria twenty-two years.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Ahab son of Omri did evil in the sight of the LORD more than all who were before him.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> And as if it had been a light thing for him to walk in the sins of Jeroboam son of Nebat, he took as his wife Jezebel daughter of King Ethbaal of the Sidonians, and went and served Baal, and worshiped him.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> He erected an altar for Baal in the house of Baal, which he built in Samaria.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Ahab also made a sacred pole. Ahab did more to provoke the anger of the LORD, the God of Israel, than had all the kings of Israel who were before him. </VERS>\r\n\t\t\t<VERS vnumber=\"34\"> In his days Hiel of Bethel built Jericho; he laid its foundation at the cost of Abiram his firstborn, and set up its gates at the cost of his youngest son Segub, according to the word of the LORD, which he spoke by Joshua son of Nun.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"17\">\r\n\t\t\t<VERS vnumber=\"1\"> Now Elijah the Tishbite, of Tishbe in Gilead, said to Ahab, \"As the LORD the God of Israel lives, before whom I stand, there shall be neither dew nor rain these years, except by my word.\" </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The word of the LORD came to him, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> \"Go from here and turn eastward, and hide yourself by the Wadi Cherith, which is east of the Jordan.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> You shall drink from the wadi, and I have commanded the ravens to feed you there.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> So he went and did according to the word of the LORD; he went and lived by the Wadi Cherith, which is east of the Jordan.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The ravens brought him bread and meat in the morning, and bread and meat in the evening; and he drank from the wadi.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But after a while the wadi dried up, because there was no rain in the land.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then the word of the LORD came to him, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> \"Go now to Zarephath, which belongs to Sidon, and live there; for I have commanded a widow there to feed you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> So he set out and went to Zarephath. When he came to the gate of the town, a widow was there gathering sticks; he called to her and said, \"Bring me a little water in a vessel, so that I may drink.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> As she was going to bring it, he called to her and said, \"Bring me a morsel of bread in your hand.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> But she said, \"As the LORD your God lives, I have nothing baked, only a handful of meal in a jar, and a little oil in a jug; I am now gathering a couple of sticks, so that I may go home and prepare it for myself and my son, that we may eat it, and die.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Elijah said to her, \"Do not be afraid; go and do as you have said; but first make me a little cake of it and bring it to me, and afterwards make something for yourself and your son.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> For thus says the LORD the God of Israel: The jar of meal will not be emptied and the jug of oil will not fail until the day that the LORD sends rain on the earth.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> She went and did as Elijah said, so that she as well as he and her household ate for many days.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The jar of meal was not emptied, neither did the jug of oil fail, according to the word of the LORD that he spoke by Elijah.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> After this the son of the woman, the mistress of the house, became ill; his illness was so severe that there was no breath left in him.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> She then said to Elijah, \"What have you against me, O man of God? You have come to me to bring my sin to remembrance, and to cause the death of my son!\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> But he said to her, \"Give me your son.\" He took him from her bosom, carried him up into the upper chamber where he was lodging, and laid him on his own bed.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> He cried out to the LORD, \"O LORD my God, have you brought calamity even upon the widow with whom I am staying, by killing her son?\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then he stretched himself upon the child three times, and cried out to the LORD, \"O LORD my God, let this child's life come into him again.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The LORD listened to the voice of Elijah; the life of the child came into him again, and he revived.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Elijah took the child, brought him down from the upper chamber into the house, and gave him to his mother; then Elijah said, \"See, your son is alive.\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> So the woman said to Elijah, \"Now I know that you are a man of God, and that the word of the LORD in your mouth is truth.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"18\">\r\n\t\t\t<VERS vnumber=\"1\"> After many days the word of the LORD came to Elijah, in the third year of the drought, saying, \"Go, present yourself to Ahab; I will send rain on the earth.\" </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> So Elijah went to present himself to Ahab. The famine was severe in Samaria.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Ahab summoned Obadiah, who was in charge of the palace. (Now Obadiah revered the LORD greatly;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> when Jezebel was killing off the prophets of the LORD, Obadiah took a hundred prophets, hid them fifty to a cave, and provided them with bread and water.)</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then Ahab said to Obadiah, \"Go through the land to all the springs of water and to all the wadis; perhaps we may find grass to keep the horses and mules alive, and not lose some of the animals.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> So they divided the land between them to pass through it; Ahab went in one direction by himself, and Obadiah went in another direction by himself.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> As Obadiah was on the way, Elijah met him; Obadiah recognized him, fell on his face, and said, \"Is it you, my lord Elijah?\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> He answered him, \"It is I. Go, tell your lord that Elijah is here.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> And he said, \"How have I sinned, that you would hand your servant over to Ahab, to kill me?</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> As the LORD your God lives, there is no nation or kingdom to which my lord has not sent to seek you; and when they would say, 'He is not here,' he would require an oath of the kingdom or nation, that they had not found you.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But now you say, 'Go, tell your lord that Elijah is here.'</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> As soon as I have gone from you, the spirit of the LORD will carry you I know not where; so, when I come and tell Ahab and he cannot find you, he will kill me, although I your servant have revered the LORD from my youth.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Has it not been told my lord what I did when Jezebel killed the prophets of the LORD, how I hid a hundred of the LORD's prophets fifty to a cave, and provided them with bread and water?</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Yet now you say, 'Go, tell your lord that Elijah is here'; he will surely kill me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Elijah said, \"As the LORD of hosts lives, before whom I stand, I will surely show myself to him today.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> So Obadiah went to meet Ahab, and told him; and Ahab went to meet Elijah.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> When Ahab saw Elijah, Ahab said to him, \"Is it you, you troubler of Israel?\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> He answered, \"I have not troubled Israel; but you have, and your father's house, because you have forsaken the commandments of the LORD and followed the Baals.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Now therefore have all Israel assemble for me at Mount Carmel, with the four hundred fifty prophets of Baal and the four hundred prophets of Asherah, who eat at Jezebel's table.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> So Ahab sent to all the Israelites, and assembled the prophets at Mount Carmel.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Elijah then came near to all the people, and said, \"How long will you go limping with two different opinions? If the LORD is God, follow him; but if Baal, then follow him.\" The people did not answer him a word.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Then Elijah said to the people, \"I, even I only, am left a prophet of the LORD; but Baal's prophets number four hundred fifty.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Let two bulls be given to us; let them choose one bull for themselves, cut it in pieces, and lay it on the wood, but put no fire to it; I will prepare the other bull and lay it on the wood, but put no fire to it.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Then you call on the name of your god and I will call on the name of the LORD; the god who answers by fire is indeed God.\" All the people answered, \"Well spoken!\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Then Elijah said to the prophets of Baal, \"Choose for yourselves one bull and prepare it first, for you are many; then call on the name of your god, but put no fire to it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> So they took the bull that was given them, prepared it, and called on the name of Baal from morning until noon, crying, \"O Baal, answer us!\" But there was no voice, and no answer. They limped about the altar that they had made.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> At noon Elijah mocked them, saying, \"Cry aloud! Surely he is a god; either he is meditating, or he has wandered away, or he is on a journey, or perhaps he is asleep and must be awakened.\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Then they cried aloud and, as was their custom, they cut themselves with swords and lances until the blood gushed out over them.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> As midday passed, they raved on until the time of the offering of the oblation, but there was no voice, no answer, and no response.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Then Elijah said to all the people, \"Come closer to me\"; and all the people came closer to him. First he repaired the altar of the LORD that had been thrown down;</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Elijah took twelve stones, according to the number of the tribes of the sons of Jacob, to whom the word of the LORD came, saying, \"Israel shall be your name\";</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> with the stones he built an altar in the name of the LORD. Then he made a trench around the altar, large enough to contain two measures of seed.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Next he put the wood in order, cut the bull in pieces, and laid it on the wood. He said, \"Fill four jars with water and pour it on the burnt offering and on the wood.\"</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Then he said, \"Do it a second time\"; and they did it a second time. Again he said, \"Do it a third time\"; and they did it a third time,</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> so that the water ran all around the altar, and filled the trench also with water.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> At the time of the offering of the oblation, the prophet Elijah came near and said, \"O LORD, God of Abraham, Isaac, and Israel, let it be known this day that you are God in Israel, that I am your servant, and that I have done all these things at your bidding.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Answer me, O LORD, answer me, so that this people may know that you, O LORD, are God, and that you have turned their hearts back.\"</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Then the fire of the LORD fell and consumed the burnt offering, the wood, the stones, and the dust, and even licked up the water that was in the trench.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> When all the people saw it, they fell on their faces and said, \"The LORD indeed is God; the LORD indeed is God.\"</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> Elijah said to them, \"Seize the prophets of Baal; do not let one of them escape.\" Then they seized them; and Elijah brought them down to the Wadi Kishon, and killed them there.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> Elijah said to Ahab, \"Go up, eat and drink; for there is a sound of rushing rain.\"</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> So Ahab went up to eat and to drink. Elijah went up to the top of Carmel; there he bowed himself down upon the earth and put his face between his knees.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> He said to his servant, \"Go up now, look toward the sea.\" He went up and looked, and said, \"There is nothing.\" Then he said, \"Go again seven times.\"</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> At the seventh time he said, \"Look, a little cloud no bigger than a person's hand is rising out of the sea.\" Then he said, \"Go say to Ahab, 'Harness your chariot and go down before the rain stops you.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> In a little while the heavens grew black with clouds and wind; there was a heavy rain. Ahab rode off and went to Jezreel.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> But the hand of the LORD was on Elijah; he girded up his loins and ran in front of Ahab to the entrance of Jezreel.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"19\">\r\n\t\t\t<VERS vnumber=\"1\"> Ahab told Jezebel all that Elijah had done, and how he had killed all the prophets with the sword.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Then Jezebel sent a messenger to Elijah, saying, \"So may the gods do to me, and more also, if I do not make your life like the life of one of them by this time tomorrow.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then he was afraid; he got up and fled for his life, and came to Beer-sheba, which belongs to Judah; he left his servant there.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But he himself went a day's journey into the wilderness, and came and sat down under a solitary broom tree. He asked that he might die: \"It is enough; now, O LORD, take away my life, for I am no better than my ancestors.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then he lay down under the broom tree and fell asleep. Suddenly an angel touched him and said to him, \"Get up and eat.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> He looked, and there at his head was a cake baked on hot stones, and a jar of water. He ate and drank, and lay down again.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The angel of the LORD came a second time, touched him, and said, \"Get up and eat, otherwise the journey will be too much for you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> He got up, and ate and drank; then he went in the strength of that food forty days and forty nights to Horeb the mount of God.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> At that place he came to a cave, and spent the night there. Then the word of the LORD came to him, saying, \"What are you doing here, Elijah?\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> He answered, \"I have been very zealous for the LORD, the God of hosts; for the Israelites have forsaken your covenant, thrown down your altars, and killed your prophets with the sword. I alone am left, and they are seeking my life, to take it away.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> He said, \"Go out and stand on the mountain before the LORD, for the LORD is about to pass by.\" Now there was a great wind, so strong that it was splitting mountains and breaking rocks in pieces 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;</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> and after the earthquake a fire, but the LORD was not in the fire; and after the fire a sound of sheer silence.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> When Elijah heard it, he wrapped his face in his mantle and went out and stood at the entrance of the cave. Then there came a voice to him that said, \"What are you doing here, Elijah?\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> He answered, \"I have been very zealous for the LORD, the God of hosts; for the Israelites have forsaken your covenant, thrown down your altars, and killed your prophets with the sword. I alone am left, and they are seeking my life, to take it away.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Then the LORD said to him, \"Go, return on your way to the wilderness of Damascus; when you arrive, you shall anoint Hazael as king over Aram.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Also you shall anoint Jehu son of Nimshi as king over Israel; and you shall anoint Elisha son of Shaphat of Abel-meholah as prophet in your place.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Whoever escapes from the sword of Hazael, Jehu shall kill; and whoever escapes from the sword of Jehu, Elisha shall kill.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Yet I will leave seven thousand in Israel, all the knees that have not bowed to Baal, and every mouth that has not kissed him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> So he set out from there, and found Elisha son of Shaphat, who was plowing. There were twelve yoke of oxen ahead of him, and he was with the twelfth. Elijah passed by him and threw his mantle over him.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> He left the oxen, ran after Elijah, and said, \"Let me kiss my father and my mother, and then I will follow you.\" Then Elijah said to him, \"Go back again; for what have I done to you?\" </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> He returned from following him, took the yoke of oxen, and slaughtered them; using the equipment from the oxen, he boiled their flesh, and gave it to the people, and they ate. Then he set out and followed Elijah, and became his servant.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"20\">\r\n\t\t\t<VERS vnumber=\"1\"> King Ben-hadad of Aram gathered all his army together; thirty-two kings were with him, along with horses and chariots. He marched against Samaria, laid siege to it, and attacked it.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Then he sent messengers into the city to King Ahab of Israel, and said to him: \"Thus says Ben-hadad:</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Your silver and gold are mine; your fairest wives and children also are mine.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The king of Israel answered, \"As you say, my lord, O king, I am yours, and all that I have.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The messengers came again and said: \"Thus says Ben-hadad: I sent to you, saying, 'Deliver to me your silver and gold, your wives and children';</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> nevertheless I will send my servants to you tomorrow about this time, and they shall search your house and the houses of your servants, and lay hands on whatever pleases them, and take it away.\" </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then the king of Israel called all the elders of the land, and said, \"Look now! See how this man is seeking trouble; for he sent to me for my wives, my children, my silver, and my gold; and I did not refuse him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then all the elders and all the people said to him, \"Do not listen or consent.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> So he said to the messengers of Ben-hadad, \"Tell my lord the king: All that you first demanded of your servant I will do; but this thing I cannot do.\" The messengers left and brought him word again.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Ben-hadad sent to him and said, \"The gods do so to me, and more also, if the dust of Samaria will provide a handful for each of the people who follow me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The king of Israel answered, \"Tell him: One who puts on armor should not brag like one who takes it off.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> When Ben-hadad heard this message-- now he had been drinking with the kings in the booths-- he said to his men, \"Take your positions!\" And they took their positions against the city.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then a certain prophet came up to King Ahab of Israel and said, \"Thus says the LORD, Have you seen all this great multitude? Look, I will give it into your hand today; and you shall know that I am the LORD.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Ahab said, \"By whom?\" He said, \"Thus says the LORD, By the young men who serve the district governors.\" Then he said, \"Who shall begin the battle?\" He answered, \"You.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Then he mustered the young men who serve the district governors, two hundred thirty-two; after them he mustered all the people of Israel, seven thousand.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> They went out at noon, while Ben-hadad was drinking himself drunk in the booths, he and the thirty-two kings allied with him.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The young men who serve the district governors went out first. Ben-hadad had sent out scouts, and they reported to him, \"Men have come out from Samaria.\" </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> He said, \"If they have come out for peace, take them alive; if they have come out for war, take them alive.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> But these had already come out of the city: the young men who serve the district governors, and the army that followed them.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Each killed his man; the Arameans fled and Israel pursued them, but King Ben-hadad of Aram escaped on a horse with the cavalry.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> The king of Israel went out, attacked the horses and chariots, and defeated the Arameans with a great slaughter.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Then the prophet approached the king of Israel and said to him, \"Come, strengthen yourself, and consider well what you have to do; for in the spring the king of Aram will come up against you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> The servants of the king of Aram said to him, \"Their gods are gods of the hills, and so they were stronger than we; but let us fight against them in the plain, and surely we shall be stronger than they.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Also do this: remove the kings, each from his post, and put commanders in place of them;</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> and muster an army like the army that you have lost, horse for horse, and chariot for chariot; then we will fight against them in the plain, and surely we shall be stronger than they.\" He heeded their voice, and did so.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> In the spring Ben-hadad mustered the Arameans and went up to Aphek to fight against Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> After the Israelites had been mustered and provisioned, they went out to engage them; the people of Israel encamped opposite them like two little flocks of goats, while the Arameans filled the country.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> A man of God approached and said to the king of Israel, \"Thus says the LORD: Because the Arameans have said, 'The LORD is a god of the hills but he is not a god of the valleys,' therefore I will give all this great multitude into your hand, and you shall know that I am the LORD.\"</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> They encamped opposite one another seven days. Then on the seventh day the battle began; the Israelites killed one hundred thousand Aramean foot soldiers in one day.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> The rest fled into the city of Aphek; and the wall fell on twenty-seven thousand men that were left. Ben-hadad also fled, and entered the city to hide.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> His servants said to him, \"Look, we have heard that the kings of the house of Israel are merciful kings; let us put sackcloth around our waists and ropes on our heads, and go out to the king of Israel; perhaps he will spare your life.\"</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> So they tied sackcloth around their waists, put ropes on their heads, went to the king of Israel, and said, \"Your servant Ben-hadad says, 'Please let me live.'\" And he said, \"Is he still alive? He is my brother.\"</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Now the men were watching for an omen; they quickly took it up from him and said, \"Yes, Ben-hadad is your brother.\" Then he said, \"Go and bring him.\" So Ben-hadad came out to him; and he had him come up into the chariot.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Ben-hadad said to him, \"I will restore the towns that my father took from your father; and you may establish bazaars for yourself in Damascus, as my father did in Samaria.\" The king of Israel responded, \"I will let you go on those terms.\" So he made a treaty with him and let him go. </VERS>\r\n\t\t\t<VERS vnumber=\"35\"> At the command of the LORD a certain member of a company of prophets said to another, \"Strike me!\" But the man refused to strike him. </VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Then he said to him, \"Because you have not obeyed the voice of the LORD, as soon as you have left me, a lion will kill you.\" And when he had left him, a lion met him and killed him.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Then he found another man and said, \"Strike me!\" So the man hit him, striking and wounding him.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Then the prophet departed, and waited for the king along the road, disguising himself with a bandage over his eyes.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> As the king passed by, he cried to the king and said, \"Your servant went out into the thick of the battle; then a soldier turned and brought a man to me, and said, 'Guard this man; if he is missing, your life shall be given for his life, or else you shall pay a talent of silver.'</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> While your servant was busy here and there, he was gone.\" The king of Israel said to him, \"So shall your judgment be; you yourself have decided it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> Then he quickly took the bandage away from his eyes. The king of Israel recognized him as one of the prophets.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> Then he said to him, \"Thus says the LORD, 'Because you have let the man go whom I had devoted to destruction, therefore your life shall be for his life, and your people for his people.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> The king of Israel set out toward home, resentful and sullen, and came to Samaria.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"21\">\r\n\t\t\t<VERS vnumber=\"1\"> Later the following events took place: Naboth the Jezreelite had a vineyard in Jezreel, beside the palace of King Ahab of Samaria.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And Ahab said to Naboth, \"Give me your vineyard, so that I may have it for a vegetable garden, because it is near my house; I will give you a better vineyard for it; or, if it seems good to you, I will give you its value in money.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> But Naboth said to Ahab, \"The LORD forbid that I should give you my ancestral inheritance.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Ahab went home resentful and sullen because of what Naboth the Jezreelite had said to him; for he had said, \"I will not give you my ancestral inheritance.\" He lay down on his bed, turned away his face, and would not eat.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> His wife Jezebel came to him and said, \"Why are you so depressed that you will not eat?\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> He said to her, \"Because I spoke to Naboth the Jezreelite and said to him, 'Give me your vineyard for money; or else, if you prefer, I will give you another vineyard for it'; but he answered, 'I will not give you my vineyard.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> His wife Jezebel said to him, \"Do you now govern Israel? Get up, eat some food, and be cheerful; I will give you the vineyard of Naboth the Jezreelite.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> So she wrote letters in Ahab's name and sealed them with his seal; she sent the letters to the elders and the nobles who lived with Naboth in his city.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> She wrote in the letters, \"Proclaim a fast, and seat Naboth at the head of the assembly;</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> seat two scoundrels opposite him, and have them bring a charge against him, saying, 'You have cursed God and the king.' Then take him out, and stone him to death.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The men of his city, the elders and the nobles who lived in his city, did as Jezebel had sent word to them. Just as it was written in the letters that she had sent to them,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> they proclaimed a fast and seated Naboth at the head of the assembly.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The two scoundrels came in and sat opposite him; and the scoundrels brought a charge against Naboth, in the presence of the people, saying, \"Naboth cursed God and the king.\" So they took him outside the city, and stoned him to death.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then they sent to Jezebel, saying, \"Naboth has been stoned; he is dead.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> As soon as Jezebel heard that Naboth had been stoned and was dead, Jezebel said to Ahab, \"Go, take possession of the vineyard of Naboth the Jezreelite, which he refused to give you for money; for Naboth is not alive, but dead.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> As soon as Ahab heard that Naboth was dead, Ahab set out to go down to the vineyard of Naboth the Jezreelite, to take possession of it.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then the word of the LORD came to Elijah the Tishbite, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Go down to meet King Ahab of Israel, who rules in Samaria; he is now in the vineyard of Naboth, where he has gone to take possession.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> You shall say to him, \"Thus says the LORD: Have you killed, and also taken possession?\" You shall say to him, \"Thus says the LORD: In the place where dogs licked up the blood of Naboth, dogs will also lick up your blood.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Ahab said to Elijah, \"Have you found me, O my enemy?\" He answered, \"I have found you. Because you have sold yourself to do what is evil in the sight of the LORD,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> I will bring disaster on you; I will consume you, and will cut off from Ahab every male, bond or free, in Israel;</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> and I will make your house like the house of Jeroboam son of Nebat, and like the house of Baasha son of Ahijah, because you have provoked me to anger and have caused Israel to sin.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Also concerning Jezebel the LORD said, 'The dogs shall eat Jezebel within the bounds of Jezreel.'</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Anyone belonging to Ahab who dies in the city the dogs shall eat; and anyone of his who dies in the open country the birds of the air shall eat.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> (Indeed, there was no one like Ahab, who sold himself to do what was evil in the sight of the LORD, urged on by his wife Jezebel.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> He acted most abominably in going after idols, as the Amorites had done, whom the LORD drove out before the Israelites.)</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> When Ahab heard those words, he tore his clothes and put sackcloth over his bare flesh; he fasted, lay in the sackcloth, and went about dejectedly.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Then the word of the LORD came to Elijah the Tishbite:</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> \"Have you seen how Ahab has humbled himself before me? Because he has humbled himself before me, I will not bring the disaster in his days; but in his son's days I will bring the disaster on his house.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"22\">\r\n\t\t\t<VERS vnumber=\"1\"> For three years Aram and Israel continued without war.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> But in the third year King Jehoshaphat of Judah came down to the king of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The king of Israel said to his servants, \"Do you know that Ramoth-gilead belongs to us, yet we are doing nothing to take it out of the hand of the king of Aram?\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> He said to Jehoshaphat, \"Will you go with me to battle at Ramoth-gilead?\" Jehoshaphat replied to the king of Israel, \"I am as you are; my people are your people, my horses are your horses.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> But Jehoshaphat also said to the king of Israel, \"Inquire first for the word of the LORD.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then the king of Israel gathered the prophets together, about four hundred of them, and said to them, \"Shall I go to battle against Ramoth-gilead, or shall I refrain?\" They said, \"Go up; for the LORD will give it into the hand of the king.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But Jehoshaphat said, \"Is there no other prophet of the LORD here of whom we may inquire?\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The king of Israel said to Jehoshaphat, \"There is still one other by whom we may inquire of the LORD, Micaiah son of Imlah; but I hate him, for he never prophesies anything favorable about me, but only disaster.\" Jehoshaphat said, \"Let the king not say such a thing.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then the king of Israel summoned an officer and said, \"Bring quickly Micaiah son of Imlah.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Now the king of Israel and King Jehoshaphat of Judah were sitting on their thrones, arrayed in their robes, at the threshing floor at the entrance of the gate of Samaria; and all the prophets were prophesying before them.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Zedekiah son of Chenaanah made for himself horns of iron, and he said, \"Thus says the LORD: With these you shall gore the Arameans until they are destroyed.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> All the prophets were prophesying the same and saying, \"Go up to Ramoth-gilead and triumph; the LORD will give it into the hand of the king.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The messenger who had gone to summon Micaiah said to him, \"Look, the words of the prophets with one accord are favorable to the king; let your word be like the word of one of them, and speak favorably.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But Micaiah said, \"As the LORD lives, whatever the LORD says to me, that I will speak.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> When he had come to the king, the king said to him, \"Micaiah, shall we go to Ramoth-gilead to battle, or shall we refrain?\" He answered him, \"Go up and triumph; the LORD will give it into the hand of the king.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> But the king said to him, \"How many times must I make you swear to tell me nothing but the truth in the name of the LORD?\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then Micaiah said, \"I saw all Israel scattered on the mountains, like sheep that have no shepherd; and the LORD said, 'These have no master; let each one go home in peace.'\" </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The king of Israel said to Jehoshaphat, \"Did I not tell you that he would not prophesy anything favorable about me, but only disaster?\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Then Micaiah said, \"Therefore hear the word of the LORD: I saw the LORD sitting on his throne, with all the host of heaven standing beside him to the right and to the left of him. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> And the LORD said, 'Who will entice Ahab, so that he may go up and fall at Ramoth-gilead?' Then one said one thing, and another said another,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> until a spirit came forward and stood before the LORD, saying, 'I will entice him.'</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> 'How?' the LORD asked him. He replied, 'I will go out and be a lying spirit in the mouth of all his prophets.' Then the LORD said, 'You are to entice him, and you shall succeed; go out and do it.'</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> So you see, the LORD has put a lying spirit in the mouth of all these your prophets; the LORD has decreed disaster for you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Then Zedekiah son of Chenaanah came up to Micaiah, slapped him on the cheek, and said, \"Which way did the spirit of the LORD pass from me to speak to you?\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Micaiah replied, \"You will find out on that day when you go in to hide in an inner chamber.\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> The king of Israel then ordered, \"Take Micaiah, and return him to Amon the governor of the city and to Joash the king's son,</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> and say, 'Thus says the king: Put this fellow in prison, and feed him on reduced rations of bread and water until I come in peace.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Micaiah said, \"If you return in peace, the LORD has not spoken by me.\" And he said, \"Hear, you peoples, all of you!\"</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> So the king of Israel and King Jehoshaphat of Judah went up to Ramoth-gilead.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> The king of Israel said to Jehoshaphat, \"I will disguise myself and go into battle, but you wear your robes.\" So the king of Israel disguised himself and went into battle.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Now the king of Aram had commanded the thirty-two captains of his chariots, \"Fight with no one small or great, but only with the king of Israel.\"</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> When the captains of the chariots saw Jehoshaphat, they said, \"It is surely the king of Israel.\" So they turned to fight against him; and Jehoshaphat cried out.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> When the captains of the chariots saw that it was not the king of Israel, they turned back from pursuing him.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> But a certain man drew his bow and unknowingly struck the king of Israel between the scale armor and the breastplate; so he said to the driver of his chariot, \"Turn around, and carry me out of the battle, for I am wounded.\"</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> The battle grew hot that day, and the king was propped up in his chariot facing the Arameans, until at evening he died; the blood from the wound had flowed into the bottom of the chariot.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Then about sunset a shout went through the army, \"Every man to his city, and every man to his country!\"</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> So the king died, and was brought to Samaria; they buried the king in Samaria.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> They washed the chariot by the pool of Samaria; the dogs licked up his blood, and the prostitutes washed themselves in it, according to the word of the LORD that he had spoken. </VERS>\r\n\t\t\t<VERS vnumber=\"39\"> Now the rest of the acts of Ahab, and all that he did, and the ivory house that he built, and all the cities that he built, are they not written in the Book of the Annals of the Kings of Israel?</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> So Ahab slept with his ancestors; and his son Ahaziah succeeded him.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> Jehoshaphat son of Asa began to reign over Judah in the fourth year of King Ahab of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> Jehoshaphat was thirty-five years old when he began to reign, and he reigned twenty-five years in Jerusalem. His mother's name was Azubah daughter of Shilhi.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> He walked in all the way of his father Asa; he did not turn aside from it, doing what was right in the sight of the LORD; yet the high places were not taken away, and the people still sacrificed and offered incense on the high places.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> Jehoshaphat also made peace with the king of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> Now the rest of the acts of Jehoshaphat, and his power that he showed, and how he waged war, are they not written in the Book of the Annals of the Kings of Judah?</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> The remnant of the male temple prostitutes who were still in the land in the days of his father Asa, he exterminated.</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> There was no king in Edom; a deputy was king.</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> Jehoshaphat made ships of the Tarshish type to go to Ophir for gold; but they did not go, for the ships were wrecked at Ezion-geber.</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> Then Ahaziah son of Ahab said to Jehoshaphat, \"Let my servants go with your servants in the ships,\" but Jehoshaphat was not willing.</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> Jehoshaphat slept with his ancestors and was buried with his ancestors in the city of his father David; his son Jehoram succeeded him.</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> Ahaziah son of Ahab began to reign over Israel in Samaria in the seventeenth year of King Jehoshaphat of Judah; he reigned two years over Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"52\"> He did what was evil in the sight of the LORD, and walked in the way of his father and mother, and in the way of Jeroboam son of Nebat, who caused Israel to sin.</VERS>\r\n\t\t\t<VERS vnumber=\"53\"> He served Baal and worshiped him; he provoked the LORD, the God of Israel, to anger, just as his father had done.</VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"12\" bname=\"2 Kings\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> After the death of Ahab, Moab rebelled against Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Ahaziah had fallen through the lattice in his upper chamber in Samaria, and lay injured; so he sent messengers, telling them, \"Go, inquire of Baal-zebub, the god of Ekron, whether I shall recover from this injury.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> But the angel of the LORD said to Elijah the Tishbite, \"Get up, go to meet the messengers of the king of Samaria, and say to them, 'Is it because there is no God in Israel that you are going to inquire of Baal-zebub, the god of Ekron?'</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Now therefore thus says the LORD, 'You shall not leave the bed to which you have gone, but you shall surely die.'\" So Elijah went.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The messengers returned to the king, who said to them, \"Why have you returned?\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> They answered him, \"There came a man to meet us, who said to us, 'Go back to the king who sent you, and say to him: Thus says the LORD: Is it because there is no God in Israel that you are sending to inquire of Baal-zebub, the god of Ekron? Therefore you shall not leave the bed to which you have gone, but shall surely die.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> He said to them, \"What sort of man was he who came to meet you and told you these things?\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> They answered him, \"A hairy man, with a leather belt around his waist.\" He said, \"It is Elijah the Tishbite.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then the king sent to him a captain of fifty with his fifty men. He went up to Elijah, who was sitting on the top of a hill, and said to him, \"O man of God, the king says, 'Come down.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> But Elijah answered the captain of fifty, \"If I am a man of God, let fire come down from heaven and consume you and your fifty.\" Then fire came down from heaven, and consumed him and his fifty.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Again the king sent to him another captain of fifty with his fifty. He went up and said to him, \"O man of God, this is the king's order: Come down quickly!\" </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> But Elijah answered them, \"If I am a man of God, let fire come down from heaven and consume you and your fifty.\" Then the fire of God came down from heaven and consumed him and his fifty.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Again the king sent the captain of a third fifty with his fifty. So the third captain of fifty went up, and came and fell on his knees before Elijah, and entreated him, \"O man of God, please let my life, and the life of these fifty servants of yours, be precious in your sight.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Look, fire came down from heaven and consumed the two former captains of fifty men with their fifties; but now let my life be precious in your sight.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Then the angel of the LORD said to Elijah, \"Go down with him; do not be afraid of him.\" So he set out and went down with him to the king,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> and said to him, \"Thus says the LORD: Because you have sent messengers to inquire of Baal-zebub, the god of Ekron,-- is it because there is no God in Israel to inquire of his word?-- therefore you shall not leave the bed to which you have gone, but you shall surely die.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> So he died according to the word of the LORD that Elijah had spoken. His brother, Jehoram succeeded him as king in the second year of King Jehoram son of Jehoshaphat of Judah, because Ahaziah had no son. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Now the rest of the acts of Ahaziah that he did, are they not written in the Book of the Annals of the Kings of Israel?</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> Now when the LORD was about to take Elijah up to heaven by a whirlwind, Elijah and Elisha were on their way from Gilgal.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Elijah said to Elisha, \"Stay here; for the LORD has sent me as far as Bethel.\" But Elisha said, \"As the LORD lives, and as you yourself live, I will not leave you.\" So they went down to Bethel.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The company of prophets who were in Bethel came out to Elisha, and said to him, \"Do you know that today the LORD will take your master away from you?\" And he said, \"Yes, I know; keep silent.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Elijah said to him, \"Elisha, stay here; for the LORD has sent me to Jericho.\" But he said, \"As the LORD lives, and as you yourself live, I will not leave you.\" So they came to Jericho.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The company of prophets who were at Jericho drew near to Elisha, and said to him, \"Do you know that today the LORD will take your master away from you?\" And he answered, \"Yes, I know; be silent.\" </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then Elijah said to him, \"Stay here; for the LORD has sent me to the Jordan.\" But he said, \"As the LORD lives, and as you yourself live, I will not leave you.\" So the two of them went on.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Fifty men of the company of prophets also went, and stood at some distance from them, as they both were standing by the Jordan. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then Elijah took his mantle and rolled it up, and struck the water; the water was parted to the one side and to the other, until the two of them crossed on dry ground.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> When they had crossed, Elijah said to Elisha, \"Tell me what I may do for you, before I am taken from you.\" Elisha said, \"Please let me inherit a double share of your spirit.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> He responded, \"You have asked a hard thing; yet, if you see me as I am being taken from you, it will be granted you; if not, it will not.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> As they continued walking and talking, a chariot of fire and horses of fire separated the two of them, and Elijah ascended in a whirlwind into heaven.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Elisha kept watching and crying out, \"Father, father! The chariots of Israel and its horsemen!\" But when he could no longer see him, he grasped his own clothes and tore them in two pieces.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> He picked up the mantle of Elijah that had fallen from him, and went back and stood on the bank of the Jordan.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> He took the mantle of Elijah that had fallen from him, and struck the water, saying, \"Where is the LORD, the God of Elijah?\" When he had struck the water, the water was parted to the one side and to the other, and Elisha went over.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> When the company of prophets who were at Jericho saw him at a distance, they declared, \"The spirit of Elijah rests on Elisha.\" They came to meet him and bowed to the ground before him. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> They said to him, \"See now, we have fifty strong men among your servants; please let them go and seek your master; it may be that the spirit of the LORD has caught him up and thrown him down on some mountain or into some valley.\" He responded, \"No, do not send them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> But when they urged him until he was ashamed, he said, \"Send them.\" So they sent fifty men who searched for three days but did not find him.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> When they came back to him (he had remained at Jericho), he said to them, \"Did I not say to you, Do not go?\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Now the people of the city said to Elisha, \"The location of this city is good, as my lord sees; but the water is bad, and the land is unfruitful.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> He said, \"Bring me a new bowl, and put salt in it.\" So they brought it to him.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then he went to the spring of water and threw the salt into it, and said, \"Thus says the LORD, I have made this water wholesome; from now on neither death nor miscarriage shall come from it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> So the water has been wholesome to this day, according to the word that Elisha spoke.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> He went up from there to Bethel; and while he was going up on the way, some small boys came out of the city and jeered at him, saying, \"Go away, baldhead! Go away, baldhead!\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> When he turned around and saw them, he cursed them in the name of the LORD. Then two she-bears came out of the woods and mauled forty-two of the boys.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> From there he went on to Mount Carmel, and then returned to Samaria.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> In the eighteenth year of King Jehoshaphat of Judah, Jehoram son of Ahab became king over Israel in Samaria; he reigned twelve years.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He did what was evil in the sight of the LORD, though not like his father and mother, for he removed the pillar of Baal that his father had made.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Nevertheless he clung to the sin of Jeroboam son of Nebat, which he caused Israel to commit; he did not depart from it.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Now King Mesha of Moab was a sheep breeder, who used to deliver to the king of Israel one hundred thousand lambs, and the wool of one hundred thousand rams.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> But when Ahab died, the king of Moab rebelled against the king of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> So King Jehoram marched out of Samaria at that time and mustered all Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> As he went he sent word to King Jehoshaphat of Judah, \"The king of Moab has rebelled against me; will you go with me to battle against Moab?\" He answered, \"I will; I am with you, my people are your people, my horses are your horses.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then he asked, \"By which way shall we march?\" Jehoram answered, \"By the way of the wilderness of Edom.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> So the king of Israel, the king of Judah, and the king of Edom set out; and when they had made a roundabout march of seven days, there was no water for the army or for the animals that were with them.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then the king of Israel said, \"Alas! The LORD has summoned us, three kings, only to be handed over to Moab.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But Jehoshaphat said, \"Is there no prophet of the LORD here, through whom we may inquire of the LORD?\" Then one of the servants of the king of Israel answered, \"Elisha son of Shaphat, who used to pour water on the hands of Elijah, is here.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Jehoshaphat said, \"The word of the LORD is with him.\" So the king of Israel and Jehoshaphat and the king of Edom went down to him.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Elisha said to the king of Israel, \"What have I to do with you? Go to your father's prophets or to your mother's.\" But the king of Israel said to him, \"No; it is the LORD who has summoned us, three kings, only to be handed over to Moab.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Elisha said, \"As the LORD of hosts lives, whom I serve, were it not that I have regard for King Jehoshaphat of Judah, I would give you neither a look nor a glance.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> But get me a musician.\" And then, while the musician was playing, the power of the LORD came on him.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> And he said, \"Thus says the LORD, 'I will make this wadi full of pools.'</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> For thus says the LORD, 'You shall see neither wind nor rain, but the wadi shall be filled with water, so that you shall drink, you, your cattle, and your animals.'</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> This is only a trifle in the sight of the LORD, for he will also hand Moab over to you.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> You shall conquer every fortified city and every choice city; every good tree you shall fell, all springs of water you shall stop up, and every good piece of land you shall ruin with stones.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The next day, about the time of the morning offering, suddenly water began to flow from the direction of Edom, until the country was filled with water.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> When all the Moabites heard that the kings had come up to fight against them, all who were able to put on armor, from the youngest to the oldest, were called out and were drawn up at the frontier.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> When they rose early in the morning, and the sun shone upon the water, the Moabites saw the water opposite them as red as blood.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> They said, \"This is blood; the kings must have fought together, and killed one another. Now then, Moab, to the spoil!\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> But when they came to the camp of Israel, the Israelites rose up and attacked the Moabites, who fled before them; as they entered Moab they continued the attack. </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> The cities they overturned, and on every good piece of land everyone threw a stone, until it was covered; every spring of water they stopped up, and every good tree they felled. Only at Kir-hareseth did the stone walls remain, until the slingers surrounded and attacked it.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> When the king of Moab saw that the battle was going against him, he took with him seven hundred swordsmen to break through, opposite the king of Edom; but they could not.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Then he took his firstborn son who was to succeed him, and offered him as a burnt offering on the wall. And great wrath came upon Israel, so they withdrew from him and returned to their own land.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> Now the wife of a member of the company of prophets cried to Elisha, \"Your servant my husband is dead; and you know that your servant feared the LORD, but a creditor has come to take my two children as slaves.\" </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Elisha said to her, \"What shall I do for you? Tell me, what do you have in the house?\" She answered, \"Your servant has nothing in the house, except a jar of oil.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> He said, \"Go outside, borrow vessels from all your neighbors, empty vessels and not just a few.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then go in, and shut the door behind you and your children, and start pouring into all these vessels; when each is full, set it aside.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> So she left him and shut the door behind her and her children; they kept bringing vessels to her, and she kept pouring.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> When the vessels were full, she said to her son, \"Bring me another vessel.\" But he said to her, \"There are no more.\" Then the oil stopped flowing.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> She came and told the man of God, and he said, \"Go sell the oil and pay your debts, and you and your children can live on the rest.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> One day Elisha was passing through Shunem, where a wealthy woman lived, who urged him to have a meal. So whenever he passed that way, he would stop there for a meal.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> She said to her husband, \"Look, I am sure that this man who regularly passes our way is a holy man of God.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Let us make a small roof chamber with walls, and put there for him a bed, a table, a chair, and a lamp, so that he can stay there whenever he comes to us.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> One day when he came there, he went up to the chamber and lay down there.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> He said to his servant Gehazi, \"Call the Shunammite woman.\" When he had called her, she stood before him.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> He said to him, \"Say to her, Since you have taken all this trouble for us, what may be done for you? Would you have a word spoken on your behalf to the king or to the commander of the army?\" She answered, \"I live among my own people.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> He said, \"What then may be done for her?\" Gehazi answered, \"Well, she has no son, and her husband is old.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> He said, \"Call her.\" When he had called her, she stood at the door.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> He said, \"At this season, in due time, you shall embrace a son.\" She replied, \"No, my lord, O man of God; do not deceive your servant.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The woman conceived and bore a son at that season, in due time, as Elisha had declared to her.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> When the child was older, he went out one day to his father among the reapers.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> He complained to his father, \"Oh, my head, my head!\" The father said to his servant, \"Carry him to his mother.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> He carried him and brought him to his mother; the child sat on her lap until noon, and he died.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> She went up and laid him on the bed of the man of God, closed the door on him, and left.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Then she called to her husband, and said, \"Send me one of the servants and one of the donkeys, so that I may quickly go to the man of God and come back again.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> He said, \"Why go to him today? It is neither new moon nor sabbath.\" She said, \"It will be all right.\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Then she saddled the donkey and said to her servant, \"Urge the animal on; do not hold back for me unless I tell you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> So she set out, and came to the man of God at Mount Carmel. When the man of God saw her coming, he said to Gehazi his servant, \"Look, there is the Shunammite woman;</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> run at once to meet her, and say to her, Are you all right? Is your husband all right? Is the child all right?\" She answered, \"It is all right.\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> When she came to the man of God at the mountain, she caught hold of his feet. Gehazi approached to push her away. But the man of God said, \"Let her alone, for she is in bitter distress; the LORD has hidden it from me and has not told me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Then she said, \"Did I ask my lord for a son? Did I not say, Do not mislead me?\"</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> He said to Gehazi, \"Gird up your loins, and take my staff in your hand, and go. If you meet anyone, give no greeting, and if anyone greets you, do not answer; and lay my staff on the face of the child.\"</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Then the mother of the child said, \"As the LORD lives, and as you yourself live, I will not leave without you.\" So he rose up and followed her.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Gehazi went on ahead and laid the staff on the face of the child, but there was no sound or sign of life. He came back to meet him and told him, \"The child has not awakened.\"</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> When Elisha came into the house, he saw the child lying dead on his bed.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> So he went in and closed the door on the two of them, and prayed to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Then he got up on the bed and lay upon the child, putting his mouth upon his mouth, his eyes upon his eyes, and his hands upon his hands; and while he lay bent over him, the flesh of the child became warm. </VERS>\r\n\t\t\t<VERS vnumber=\"35\"> He got down, walked once to and fro in the room, then got up again and bent over him; the child sneezed seven times, and the child opened his eyes.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Elisha summoned Gehazi and said, \"Call the Shunammite woman.\" So he called her. When she came to him, he said, \"Take your son.\" </VERS>\r\n\t\t\t<VERS vnumber=\"37\"> She came and fell at his feet, bowing to the ground; then she took her son and left.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> When Elisha returned to Gilgal, there was a famine in the land. As the company of prophets was sitting before him, he said to his servant, \"Put the large pot on, and make some stew for the company of prophets.\" </VERS>\r\n\t\t\t<VERS vnumber=\"39\"> One of them went out into the field to gather herbs; he found a wild vine and gathered from it a lapful of wild gourds, and came and cut them up into the pot of stew, not knowing what they were.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> They served some for the men to eat. But while they were eating the stew, they cried out, \"O man of God, there is death in the pot!\" They could not eat it.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> He said, \"Then bring some flour.\" He threw it into the pot, and said, \"Serve the people and let them eat.\" And there was nothing harmful in the pot.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> A man came from Baal-shalishah, bringing food from the first fruits to the man of God: twenty loaves of barley and fresh ears of grain in his sack. Elisha said, \"Give it to the people and let them eat.\"</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> But his servant said, \"How can I set this before a hundred people?\" So he repeated, \"Give it to the people and let them eat, for thus says the LORD, 'They shall eat and have some left.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> He set it before them, they ate, and had some left, according to the word of the LORD.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"5\">\r\n\t\t\t<VERS vnumber=\"1\"> Naaman, commander of the army of the king of Aram, was a great man and in high favor with his master, because by him the LORD had given victory to Aram. The man, though a mighty warrior, suffered from leprosy.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Now the Arameans on one of their raids had taken a young girl captive from the land of Israel, and she served Naaman's wife.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> She said to her mistress, \"If only my lord were with the prophet who is in Samaria! He would cure him of his leprosy.\" </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> So Naaman went in and told his lord just what the girl from the land of Israel had said. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> And the king of Aram said, \"Go then, and I will send along a letter to the king of Israel.\" He went, taking with him ten talents of silver, six thousand shekels of gold, and ten sets of garments.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> He brought the letter to the king of Israel, which read, \"When this letter reaches you, know that I have sent to you my servant Naaman, that you may cure him of his leprosy.\" </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> When the king of Israel read the letter, he tore his clothes and said, \"Am I God, to give death or life, that this man sends word to me to cure a man of his leprosy? Just look and see how he is trying to pick a quarrel with me.\" </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But when Elisha the man of God heard that the king of Israel had torn his clothes, he sent a message to the king, \"Why have you torn your clothes? Let him come to me, that he may learn that there is a prophet in Israel.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> So Naaman came with his horses and chariots, and halted at the entrance of Elisha's house.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Elisha sent a messenger to him, saying, \"Go, wash in the Jordan seven times, and your flesh shall be restored and you shall be clean.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But Naaman became angry and went away, saying, \"I thought that for me he would surely come out, and stand and call on the name of the LORD his God, and would wave his hand over the spot, and cure the leprosy! </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Are not Abana and Pharpar, the rivers of Damascus, better than all the waters of Israel? Could I not wash in them, and be clean?\" He turned and went away in a rage. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> But his servants approached and said to him, \"Father, if the prophet had commanded you to do something difficult, would you not have done it? How much more, when all he said to you was, 'Wash, and be clean'?\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> So he went down and immersed himself seven times in the Jordan, according to the word of the man of God; his flesh was restored like the flesh of a young boy, and he was clean.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Then he returned to the man of God, he and all his company; he came and stood before him and said, \"Now I know that there is no God in all the earth except in Israel; please accept a present from your servant.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> But he said, \"As the LORD lives, whom I serve, I will accept nothing!\" He urged him to accept, but he refused.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then Naaman said, \"If not, please let two mule-loads of earth be given to your servant; for your servant will no longer offer burnt offering or sacrifice to any god except the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> But may the LORD pardon your servant on one count: when my master goes into the house of Rimmon to worship there, leaning on my arm, and I bow down in the house of Rimmon, when I do bow down in the house of Rimmon, may the LORD pardon your servant on this one count.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> He said to him, \"Go in peace.\" But when Naaman had gone from him a short distance,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Gehazi, the servant of Elisha the man of God, thought, \"My master has let that Aramean Naaman off too lightly by not accepting from him what he offered. As the LORD lives, I will run after him and get something out of him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> So Gehazi went after Naaman. When Naaman saw someone running after him, he jumped down from the chariot to meet him and said, \"Is everything all right?\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> He replied, \"Yes, but my master has sent me to say, 'Two members of a company of prophets have just come to me from the hill country of Ephraim; please give them a talent of silver and two changes of clothing.'\" </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Naaman said, \"Please accept two talents.\" He urged him, and tied up two talents of silver in two bags, with two changes of clothing, and gave them to two of his servants, who carried them in front of Gehazi. </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> When he came to the citadel, he took the bags from them, and stored them inside; he dismissed the men, and they left. </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> He went in and stood before his master; and Elisha said to him, \"Where have you been, Gehazi?\" He answered, \"Your servant has not gone anywhere at all.\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> But he said to him, \"Did I not go with you in spirit when someone left his chariot to meet you? Is this a time to accept money and to accept clothing, olive orchards and vineyards, sheep and oxen, and male and female slaves?</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Therefore the leprosy of Naaman shall cling to you, and to your descendants forever.\" So he left his presence leprous, as white as snow. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"6\">\r\n\t\t\t<VERS vnumber=\"1\"> Now the company of prophets said to Elisha, \"As you see, the place where we live under your charge is too small for us. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Let us go to the Jordan, and let us collect logs there, one for each of us, and build a place there for us to live.\" He answered, \"Do so.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then one of them said, \"Please come with your servants.\" And he answered, \"I will.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> So he went with them. When they came to the Jordan, they cut down trees.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> But as one was felling a log, his ax head fell into the water; he cried out, \"Alas, master! It was borrowed.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then the man of God said, \"Where did it fall?\" When he showed him the place, he cut off a stick, and threw it in there, and made the iron float.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> He said, \"Pick it up.\" So he reached out his hand and took it.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Once when the king of Aram was at war with Israel, he took counsel with his officers. He said, \"At such and such a place shall be my camp.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> But the man of God sent word to the king of Israel, \"Take care not to pass this place, because the Arameans are going down there.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The king of Israel sent word to the place of which the man of God spoke. More than once or twice he warned such a place so that it was on the alert. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The mind of the king of Aram was greatly perturbed because of this; he called his officers and said to them, \"Now tell me who among us sides with the king of Israel?\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then one of his officers said, \"No one, my lord king. It is Elisha, the prophet in Israel, who tells the king of Israel the words that you speak in your bedchamber.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> He said, \"Go and find where he is; I will send and seize him.\" He was told, \"He is in Dothan.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> So he sent horses and chariots there and a great army; they came by night, and surrounded the city.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> When an attendant of the man of God rose early in the morning and went out, an army with horses and chariots was all around the city. His servant said, \"Alas, master! What shall we do?\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> He replied, \"Do not be afraid, for there are more with us than there are with them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then Elisha prayed: \"O LORD, please open his eyes that he may see.\" So the LORD opened the eyes of the servant, and he saw; the mountain was full of horses and chariots of fire all around Elisha.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> When the Arameans came down against him, Elisha prayed to the LORD, and said, \"Strike this people, please, with blindness.\" So he struck them with blindness as Elisha had asked. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Elisha said to them, \"This is not the way, and this is not the city; follow me, and I will bring you to the man whom you seek.\" And he led them to Samaria.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> As soon as they entered Samaria, Elisha said, \"O LORD, open the eyes of these men so that they may see.\" The LORD opened their eyes, and they saw that they were inside Samaria.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> When the king of Israel saw them he said to Elisha, \"Father, shall I kill them? Shall I kill them?\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> He answered, \"No! Did you capture with your sword and your bow those whom you want to kill? Set food and water before them so that they may eat and drink; and let them go to their master.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> So he prepared for them a great feast; after they ate and drank, he sent them on their way, and they went to their master. And the Arameans no longer came raiding into the land of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Some time later King Ben-hadad of Aram mustered his entire army; he marched against Samaria and laid siege to it.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> As the siege continued, famine in Samaria became so great that a donkey's head was sold for eighty shekels of silver, and one-fourth of a kab of dove's dung for five shekels of silver.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Now as the king of Israel was walking on the city wall, a woman cried out to him, \"Help, my lord king!\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> He said, \"No! Let the LORD help you. How can I help you? From the threshing floor or from the wine press?\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> But then the king asked her, \"What is your complaint?\" She answered, \"This woman said to me, 'Give up your son; we will eat him today, and we will eat my son tomorrow.'</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> So we cooked my son and ate him. The next day I said to her, 'Give up your son and we will eat him.' But she has hidden her son.\"</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> When the king heard the words of the woman he tore his clothes-- now since he was walking on the city wall, the people could see that he had sackcloth on his body underneath--</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> and he said, \"So may God do to me, and more, if the head of Elisha son of Shaphat stays on his shoulders today.\"</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> So he dispatched a man from his presence. Now Elisha was sitting in his house, and the elders were sitting with him. Before the messenger arrived, Elisha said to the elders, \"Are you aware that this murderer has sent someone to take off my head? When the messenger comes, see that you shut the door and hold it closed against him. Is not the sound of his master's feet behind him?\"</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> While he was still speaking with them, the king came down to him and said, \"This trouble is from the LORD! Why should I hope in the LORD any longer?\" </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"7\">\r\n\t\t\t<VERS vnumber=\"1\"> But Elisha said, \"Hear the word of the LORD: thus says the LORD, Tomorrow about this time a measure of choice meal shall be sold for a shekel, and two measures of barley for a shekel, at the gate of Samaria.\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Then the captain on whose hand the king leaned said to the man of God, \"Even if the LORD were to make windows in the sky, could such a thing happen?\" But he said, \"You shall see it with your own eyes, but you shall not eat from it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Now there were four leprous men outside the city gate, who said to one another, \"Why should we sit here until we die? </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> If we say, 'Let us enter the city,' the famine is in the city, and we shall die there; but if we sit here, we shall also die. Therefore, let us desert to the Aramean camp; if they spare our lives, we shall live; and if they kill us, we shall but die.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> So they arose at twilight to go to the Aramean camp; but when they came to the edge of the Aramean camp, there was no one there at all.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For the Lord had caused the Aramean army to hear the sound of chariots, and of horses, the sound of a great army, so that they said to one another, \"The king of Israel has hired the kings of the Hittites and the kings of Egypt to fight against us.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> So they fled away in the twilight and abandoned their tents, their horses, and their donkeys leaving the camp just as it was, and fled for their lives.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> When these leprous men had come to the edge of the camp, they went into a tent, ate and drank, carried off silver, gold, and clothing, and went and hid them. Then they came back, entered another tent, carried off things from it, and went and hid them. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then they said to one another, \"What we are doing is wrong. This is a day of good news; if we are silent and wait until the morning light, we will be found guilty; therefore let us go and tell the king's household.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> So they came and called to the gatekeepers of the city, and told them, \"We went to the Aramean camp, but there was no one to be seen or heard there, nothing but the horses tied, the donkeys tied, and the tents as they were.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then the gatekeepers called out and proclaimed it to the king's household.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The king got up in the night, and said to his servants, \"I will tell you what the Arameans have prepared against us. They know that we are starving; so they have left the camp to hide themselves in the open country, thinking, 'When they come out of the city, we shall take them alive and get into the city.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> One of his servants said, \"Let some men take five of the remaining horses, since those left here will suffer the fate of the whole multitude of Israel that have perished already; let us send and find out.\" </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> So they took two mounted men, and the king sent them after the Aramean army, saying, \"Go and find out.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> So they went after them as far as the Jordan; the whole way was littered with garments and equipment that the Arameans had thrown away in their haste. So the messengers returned, and told the king.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then the people went out, and plundered the camp of the Arameans. So a measure of choice meal was sold for a shekel, and two measures of barley for a shekel, according to the word of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Now the king had appointed the captain on whose hand he leaned to have charge of the gate; the people trampled him to death in the gate, just as the man of God had said when the king came down to him.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> For when the man of God had said to the king, \"Two measures of barley shall be sold for a shekel, and a measure of choice meal for a shekel, about this time tomorrow in the gate of Samaria,\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> the captain had answered the man of God, \"Even if the LORD were to make windows in the sky, could such a thing happen?\" And he had answered, \"You shall see it with your own eyes, but you shall not eat from it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> It did indeed happen to him; the people trampled him to death in the gate.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"8\">\r\n\t\t\t<VERS vnumber=\"1\"> Now Elisha had said to the woman whose son he had restored to life, \"Get up and go with your household, and settle wherever you can; for the LORD has called for a famine, and it will come on the land for seven years.\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> So the woman got up and did according to the word of the man of God; she went with her household and settled in the land of the Philistines seven years.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> At the end of the seven years, when the woman returned from the land of the Philistines, she set out to appeal to the king for her house and her land.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Now the king was talking with Gehazi the servant of the man of God, saying, \"Tell me all the great things that Elisha has done.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> While he was telling the king how Elisha had restored a dead person to life, the woman whose son he had restored to life appealed to the king for her house and her land. Gehazi said, \"My lord king, here is the woman, and here is her son whom Elisha restored to life.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> When the king questioned the woman, she told him. So the king appointed an official for her, saying, \"Restore all that was hers, together with all the revenue of the fields from the day that she left the land until now.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Elisha went to Damascus while King Ben-hadad of Aram was ill. When it was told him, \"The man of God has come here,\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> the king said to Hazael, \"Take a present with you and go to meet the man of God. Inquire of the LORD through him, whether I shall recover from this illness.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> So Hazael went to meet him, taking a present with him, all kinds of goods of Damascus, forty camel loads. When he entered and stood before him, he said, \"Your son King Ben-hadad of Aram has sent me to you, saying, 'Shall I recover from this illness?'\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Elisha said to him, \"Go, say to him, 'You shall certainly recover'; but the LORD has shown me that he shall certainly die.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> He fixed his gaze and stared at him, until he was ashamed. Then the man of God wept.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Hazael asked, \"Why does my lord weep?\" He answered, \"Because I know the evil that you will do to the people of Israel; you will set their fortresses on fire, you will kill their young men with the sword, dash in pieces their little ones, and rip up their pregnant women.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Hazael said, \"What is your servant, who is a mere dog, that he should do this great thing?\" Elisha answered, \"The LORD has shown me that you are to be king over Aram.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then he left Elisha, and went to his master Ben-hadad, who said to him, \"What did Elisha say to you?\" And he answered, \"He told me that you would certainly recover.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> But the next day he took the bed-cover and dipped it in water and spread it over the king's face, until he died. And Hazael succeeded him.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> In the fifth year of King Joram son of Ahab of Israel, Jehoram son of King Jehoshaphat of Judah began to reign. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> He was thirty-two years old when he became king, and he reigned eight years in Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> He walked in the way of the kings of Israel, as the house of Ahab had done, for the daughter of Ahab was his wife. He did what was evil in the sight of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Yet the LORD would not destroy Judah, for the sake of his servant David, since he had promised to give a lamp to him and to his descendants forever.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> In his days Edom revolted against the rule of Judah, and set up a king of their own.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then Joram crossed over to Zair with all his chariots. He set out by night and attacked the Edomites and their chariot commanders who had surrounded him; but his army fled home. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> So Edom has been in revolt against the rule of Judah to this day. Libnah also revolted at the same time.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Now the rest of the acts of Joram, and all that he did, are they not written in the Book of the Annals of the Kings of Judah?</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> So Joram slept with his ancestors, and was buried with them in the city of David; his son Ahaziah succeeded him.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> In the twelfth year of King Joram son of Ahab of Israel, Ahaziah son of King Jehoram of Judah began to reign.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Ahaziah was twenty-two years old when he began to reign; he reigned one year in Jerusalem. His mother's name was Athaliah, a granddaughter of King Omri of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> He also walked in the way of the house of Ahab, doing what was evil in the sight of the LORD, as the house of Ahab had done, for he was son-in-law to the house of Ahab.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> He went with Joram son of Ahab to wage war against King Hazael of Aram at Ramoth-gilead, where the Arameans wounded Joram.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> King Joram returned to be healed in Jezreel of the wounds that the Arameans had inflicted on him at Ramah, when he fought against King Hazael of Aram. King Ahaziah son of Jehoram of Judah went down to see Joram son of Ahab in Jezreel, because he was wounded.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"9\">\r\n\t\t\t<VERS vnumber=\"1\"> Then the prophet Elisha called a member of the company of prophets and said to him, \"Gird up your loins; take this flask of oil in your hand, and go to Ramoth-gilead. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> When you arrive, look there for Jehu son of Jehoshaphat, son of Nimshi; go in and get him to leave his companions, and take him into an inner chamber.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then take the flask of oil, pour it on his head, and say, 'Thus says the LORD: I anoint you king over Israel.' Then open the door and flee; do not linger.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> So the young man, the young prophet, went to Ramoth-gilead.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> He arrived while the commanders of the army were in council, and he announced, \"I have a message for you, commander.\" \"For which one of us?\" asked Jehu. \"For you, commander.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> So Jehu got up and went inside; the young man poured the oil on his head, saying to him, \"Thus says the LORD the God of Israel: I anoint you king over the people of the LORD, over Israel. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> You shall strike down the house of your master Ahab, so that I may avenge on Jezebel the blood of my servants the prophets, and the blood of all the servants of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> For the whole house of Ahab shall perish; I will cut off from Ahab every male, bond or free, in Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> I will make the house of Ahab like the house of Jeroboam son of Nebat, and like the house of Baasha son of Ahijah.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The dogs shall eat Jezebel in the territory of Jezreel, and no one shall bury her.\" Then he opened the door and fled.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> When Jehu came back to his master's officers, they said to him, \"Is everything all right? Why did that madman come to you?\" He answered them, \"You know the sort and how they babble.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> They said, \"Liar! Come on, tell us!\" So he said, \"This is just what he said to me: 'Thus says the LORD, I anoint you king over Israel.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then hurriedly they all took their cloaks and spread them for him on the bare steps; and they blew the trumpet, and proclaimed, \"Jehu is king.\" </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Thus Jehu son of Jehoshaphat son of Nimshi conspired against Joram. Joram with all Israel had been on guard at Ramoth-gilead against King Hazael of Aram;</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> but King Joram had returned to be healed in Jezreel of the wounds that the Arameans had inflicted on him, when he fought against King Hazael of Aram. So Jehu said, \"If this is your wish, then let no one slip out of the city to go and tell the news in Jezreel.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then Jehu mounted his chariot and went to Jezreel, where Joram was lying ill. King Ahaziah of Judah had come down to visit Joram.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> In Jezreel, the sentinel standing on the tower spied the company of Jehu arriving, and said, \"I see a company.\" Joram said, \"Take a horseman; send him to meet them, and let him say, 'Is it peace?'\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> So the horseman went to meet him; he said, \"Thus says the king, 'Is it peace?'\" Jehu responded, \"What have you to do with peace? Fall in behind me.\" The sentinel reported, saying, \"The messenger reached them, but he is not coming back.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Then he sent out a second horseman, who came to them and said, \"Thus says the king, 'Is it peace?'\" Jehu answered, \"What have you to do with peace? Fall in behind me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Again the sentinel reported, \"He reached them, but he is not coming back. It looks like the driving of Jehu son of Nimshi; for he drives like a maniac.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Joram said, \"Get ready.\" And they got his chariot ready. Then King Joram of Israel and King Ahaziah of Judah set out, each in his chariot, and went to meet Jehu; they met him at the property of Naboth the Jezreelite.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> When Joram saw Jehu, he said, \"Is it peace, Jehu?\" He answered, \"What peace can there be, so long as the many whoredoms and sorceries of your mother Jezebel continue?\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Then Joram reined about and fled, saying to Ahaziah, \"Treason, Ahaziah!\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Jehu drew his bow with all his strength, and shot Joram between the shoulders, so that the arrow pierced his heart; and he sank in his chariot.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Jehu said to his aide Bidkar, \"Lift him out, and throw him on the plot of ground belonging to Naboth the Jezreelite; for remember, when you and I rode side by side behind his father Ahab how the LORD uttered this oracle against him:</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> 'For the blood of Naboth and for the blood of his children that I saw yesterday, says the LORD, I swear I will repay you on this very plot of ground.' Now therefore lift him out and throw him on the plot of ground, in accordance with the word of the LORD.\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> When King Ahaziah of Judah saw this, he fled in the direction of Beth-haggan. Jehu pursued him, saying, \"Shoot him also!\" And they shot him in the chariot at the ascent to Gur, which is by Ibleam. Then he fled to Megiddo, and died there. </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> His officers carried him in a chariot to Jerusalem, and buried him in his tomb with his ancestors in the city of David.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> In the eleventh year of Joram son of Ahab, Ahaziah began to reign over Judah.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> When Jehu came to Jezreel, Jezebel heard of it; she painted her eyes, and adorned her head, and looked out of the window.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> As Jehu entered the gate, she said, \"Is it peace, Zimri, murderer of your master?\"</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> He looked up to the window and said, \"Who is on my side? Who?\" Two or three eunuchs looked out at him.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> He said, \"Throw her down.\" So they threw her down; some of her blood spattered on the wall and on the horses, which trampled on her.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Then he went in and ate and drank; he said, \"See to that cursed woman and bury her; for she is a king's daughter.\"</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> But when they went to bury her, they found no more of her than the skull and the feet and the palms of her hands.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> When they came back and told him, he said, \"This is the word of the LORD, which he spoke by his servant Elijah the Tishbite, 'In the territory of Jezreel the dogs shall eat the flesh of Jezebel;</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> the corpse of Jezebel shall be like dung on the field in the territory of Jezreel, so that no one can say, This is Jezebel.'\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"10\">\r\n\t\t\t<VERS vnumber=\"1\"> Now Ahab had seventy sons in Samaria. So Jehu wrote letters and sent them to Samaria, to the rulers of Jezreel, to the elders, and to the guardians of the sons of Ahab, saying, </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"Since your master's sons are with you and you have at your disposal chariots and horses, a fortified city, and weapons,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> select the son of your master who is the best qualified, set him on his father's throne, and fight for your master's house.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But they were utterly terrified and said, \"Look, two kings could not withstand him; how then can we stand?\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> So the steward of the palace, and the governor of the city, along with the elders and the guardians, sent word to Jehu: \"We are your servants; we will do anything you say. We will not make anyone king; do whatever you think right.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then he wrote them a second letter, saying, \"If you are on my side, and if you are ready to obey me, take the heads of your master's sons and come to me at Jezreel tomorrow at this time.\" Now the king's sons, seventy persons, were with the leaders of the city, who were charged with their upbringing.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> When the letter reached them, they took the king's sons and killed them, seventy persons; they put their heads in baskets and sent them to him at Jezreel.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> When the messenger came and told him, \"They have brought the heads of the king's sons,\" he said, \"Lay them in two heaps at the entrance of the gate until the morning.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then in the morning when he went out, he stood and said to all the people, \"You are innocent. It was I who conspired against my master and killed him; but who struck down all these?</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Know then that there shall fall to the earth nothing of the word of the LORD, which the LORD spoke concerning the house of Ahab; for the LORD has done what he said through his servant Elijah.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> So Jehu killed all who were left of the house of Ahab in Jezreel, all his leaders, close friends, and priests, until he left him no survivor.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then he set out and went to Samaria. On the way, when he was at Beth-eked of the Shepherds,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Jehu met relatives of King Ahaziah of Judah and said, \"Who are you?\" They answered, \"We are kin of Ahaziah; we have come down to visit the royal princes and the sons of the queen mother.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> He said, \"Take them alive.\" They took them alive, and slaughtered them at the pit of Beth-eked, forty-two in all; he spared none of them.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> When he left there, he met Jehonadab son of Rechab coming to meet him; he greeted him, and said to him, \"Is your heart as true to mine as mine is to yours?\" Jehonadab answered, \"It is.\" Jehu said, \"If it is, give me your hand.\" So he gave him his hand. Jehu took him up with him into the chariot. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> He said, \"Come with me, and see my zeal for the LORD.\" So he had him ride in his chariot. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> When he came to Samaria, he killed all who were left to Ahab in Samaria, until he had wiped them out, according to the word of the LORD that he spoke to Elijah.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then Jehu assembled all the people and said to them, \"Ahab offered Baal small service; but Jehu will offer much more.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Now therefore summon to me all the prophets of Baal, all his worshipers, and all his priests; let none be missing, for I have a great sacrifice to offer to Baal; whoever is missing shall not live.\" But Jehu was acting with cunning in order to destroy the worshipers of Baal.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Jehu decreed, \"Sanctify a solemn assembly for Baal.\" So they proclaimed it.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Jehu sent word throughout all Israel; all the worshipers of Baal came, so that there was no one left who did not come. They entered the temple of Baal, until the temple of Baal was filled from wall to wall.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> He said to the keeper of the wardrobe, \"Bring out the vestments for all the worshipers of Baal.\" So he brought out the vestments for them.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Then Jehu entered the temple of Baal with Jehonadab son of Rechab; he said to the worshipers of Baal, \"Search and see that there is no worshiper of the LORD here among you, but only worshipers of Baal.\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Then they proceeded to offer sacrifices and burnt offerings. Now Jehu had stationed eighty men outside, saying, \"Whoever allows any of those to escape whom I deliver into your hands shall forfeit his life.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> As soon as he had finished presenting the burnt offering, Jehu said to the guards and to the officers, \"Come in and kill them; let no one escape.\" So they put them to the sword. The guards and the officers threw them out, and then went into the citadel of the temple of Baal.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> They brought out the pillar that was in the temple of Baal, and burned it. </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Then they demolished the pillar of Baal, and destroyed the temple of Baal, and made it a latrine to this day.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Thus Jehu wiped out Baal from Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> But Jehu did not turn aside from the sins of Jeroboam son of Nebat, which he caused Israel to commit-- the golden calves that were in Bethel and in Dan.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> The LORD said to Jehu, \"Because you have done well in carrying out what I consider right, and in accordance with all that was in my heart have dealt with the house of Ahab, your sons of the fourth generation shall sit on the throne of Israel.\"</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> But Jehu was not careful to follow the law of the LORD the God of Israel with all his heart; he did not turn from the sins of Jeroboam, which he caused Israel to commit.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> In those days the LORD began to trim off parts of Israel. Hazael defeated them throughout the territory of Israel:</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> from the Jordan eastward, all the land of Gilead, the Gadites, the Reubenites, and the Manassites, from Aroer, which is by the Wadi Arnon, that is, Gilead and Bashan.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Now the rest of the acts of Jehu, all that he did, and all his power, are they not written in the Book of the Annals of the Kings of Israel?</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> So Jehu slept with his ancestors, and they buried him in Samaria. His son Jehoahaz succeeded him.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> The time that Jehu reigned over Israel in Samaria was twenty-eight years.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"11\">\r\n\t\t\t<VERS vnumber=\"1\"> Now when Athaliah, Ahaziah's mother, saw that her son was dead, she set about to destroy all the royal family.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> But Jehosheba, King Joram's daughter, Ahaziah's sister, took Joash son of Ahaziah, and stole him away from among the king's children who were about to be killed; she put him and his nurse in a bedroom. Thus she hid him from Athaliah, so that he was not killed; </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> he remained with her six years, hidden in the house of the LORD, while Athaliah reigned over the land.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But in the seventh year Jehoiada summoned the captains of the Carites and of the guards and had them come to him in the house of the LORD. He made a covenant with them and put them under oath in the house of the LORD; then he showed them the king's son.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> He commanded them, \"This is what you are to do: one-third of you, those who go off duty on the sabbath and guard the king's house</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> (another third being at the gate Sur and a third at the gate behind the guards), shall guard the palace;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> and your two divisions that come on duty in force on the sabbath and guard the house of the LORD</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> shall surround the king, each with weapons in hand; and whoever approaches the ranks is to be killed. Be with the king in his comings and goings.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The captains did according to all that the priest Jehoiada commanded; each brought his men who were to go off duty on the sabbath, with those who were to come on duty on the sabbath, and came to the priest Jehoiada.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The priest delivered to the captains the spears and shields that had been King David's, which were in the house of the LORD;</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> the guards stood, every man with his weapons in his hand, from the south side of the house to the north side of the house, around the altar and the house, to guard the king on every side.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then he brought out the king's son, put the crown on him, and gave him the covenant; they proclaimed him king, and anointed him; they clapped their hands and shouted, \"Long live the king!\" </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> When Athaliah heard the noise of the guard and of the people, she went into the house of the LORD to the people;</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> when she looked, there was the king standing by the pillar, according to custom, with the captains and the trumpeters beside the king, and all the people of the land rejoicing and blowing trumpets. Athaliah tore her clothes and cried, \"Treason! Treason!\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Then the priest Jehoiada commanded the captains who were set over the army, \"Bring her out between the ranks, and kill with the sword anyone who follows her.\" For the priest said, \"Let her not be killed in the house of the LORD.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> So they laid hands on her; she went through the horses' entrance to the king's house, and there she was put to death.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Jehoiada made a covenant between the LORD and the king and people, that they should be the LORD's people; also between the king and the people.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then all the people of the land went to the house of Baal, and tore it down; his altars and his images they broke in pieces, and they killed Mattan, the priest of Baal, before the altars. The priest posted guards over the house of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> He took the captains, the Carites, the guards, and all the people of the land; then they brought the king down from the house of the LORD, marching through the gate of the guards to the king's house. He took his seat on the throne of the kings.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> So all the people of the land rejoiced; and the city was quiet after Athaliah had been killed with the sword at the king's house.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Jehoash was seven years old when he began to reign. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"12\">\r\n\t\t\t<VERS vnumber=\"1\"> In the seventh year of Jehu, Jehoash began to reign; he reigned forty years in Jerusalem. His mother's name was Zibiah of Beer-sheba.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Jehoash did what was right in the sight of the LORD all his days, because the priest Jehoiada instructed him.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Nevertheless the high places were not taken away; the people continued to sacrifice and make offerings on the high places.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Jehoash said to the priests, \"All the money offered as sacred donations that is brought into the house of the LORD, the money for which each person is assessed-- the money from the assessment of persons-- and the money from the voluntary offerings brought into the house of the LORD,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> let the priests receive from each of the donors; and let them repair the house wherever any need of repairs is discovered.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> But by the twenty-third year of King Jehoash the priests had made no repairs on the house.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Therefore King Jehoash summoned the priest Jehoiada with the other priests and said to them, \"Why are you not repairing the house? Now therefore do not accept any more money from your donors but hand it over for the repair of the house.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> So the priests agreed that they would neither accept more money from the people nor repair the house.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then the priest Jehoiada took a chest, made a hole in its lid, and set it beside the altar on the right side as one entered the house of the LORD; the priests who guarded the threshold put in it all the money that was brought into the house of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Whenever they saw that there was a great deal of money in the chest, the king's secretary and the high priest went up, counted the money that was found in the house of the LORD, and tied it up in bags.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> They would give the money that was weighed out into the hands of the workers who had the oversight of the house of the LORD; then they paid it out to the carpenters and the builders who worked on the house of the LORD,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> to the masons and the stonecutters, as well as to buy timber and quarried stone for making repairs on the house of the LORD, as well as for any outlay for repairs of the house.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> But for the house of the LORD no basins of silver, snuffers, bowls, trumpets, or any vessels of gold, or of silver, were made from the money that was brought into the house of the LORD,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> for that was given to the workers who were repairing the house of the LORD with it.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> They did not ask an accounting from those into whose hand they delivered the money to pay out to the workers, for they dealt honestly.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The money from the guilt offerings and the money from the sin offerings was not brought into the house of the LORD; it belonged to the priests.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> At that time King Hazael of Aram went up, fought against Gath, and took it. But when Hazael set his face to go up against Jerusalem,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> King Jehoash of Judah took all the votive gifts that Jehoshaphat, Jehoram, and Ahaziah, his ancestors, the kings of Judah, had dedicated, as well as his own votive gifts, all the gold that was found in the treasuries of the house of the LORD and of the king's house, and sent these to King Hazael of Aram. Then Hazael withdrew from Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Now the rest of the acts of Joash, and all that he did, are they not written in the Book of the Annals of the Kings of Judah?</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> His servants arose, devised a conspiracy, and killed Joash in the house of Millo, on the way that goes down to Silla.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> It was Jozacar son of Shimeath and Jehozabad son of Shomer, his servants, who struck him down, so that he died. He was buried with his ancestors in the city of David; then his son Amaziah succeeded him.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"13\">\r\n\t\t\t<VERS vnumber=\"1\"> In the twenty-third year of King Joash son of Ahaziah of Judah, Jehoahaz son of Jehu began to reign over Israel in Samaria; he reigned seventeen years.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He did what was evil in the sight of the LORD, and followed the sins of Jeroboam son of Nebat, which he caused Israel to sin; he did not depart from them.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The anger of the LORD was kindled against Israel, so that he gave them repeatedly into the hand of King Hazael of Aram, then into the hand of Ben-hadad son of Hazael.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But Jehoahaz entreated the LORD, and the LORD heeded him; for he saw the oppression of Israel, how the king of Aram oppressed them.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Therefore the LORD gave Israel a savior, so that they escaped from the hand of the Arameans; and the people of Israel lived in their homes as formerly.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Nevertheless they did not depart from the sins of the house of Jeroboam, which he caused Israel to sin, but walked in them; the sacred pole also remained in Samaria. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> So Jehoahaz was left with an army of not more than fifty horsemen, ten chariots and ten thousand footmen; for the king of Aram had destroyed them and made them like the dust at threshing.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Now the rest of the acts of Jehoahaz and all that he did, including his might, are they not written in the Book of the Annals of the Kings of Israel?</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> So Jehoahaz slept with his ancestors, and they buried him in Samaria; then his son Joash succeeded him.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> In the thirty-seventh year of King Joash of Judah, Jehoash son of Jehoahaz began to reign over Israel in Samaria; he reigned sixteen years.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> He also did what was evil in the sight of the LORD; he did not depart from all the sins of Jeroboam son of Nebat, which he caused Israel to sin, but he walked in them.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Now the rest of the acts of Joash, and all that he did, as well as the might with which he fought against King Amaziah of Judah, are they not written in the Book of the Annals of the Kings of Israel?</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> So Joash slept with his ancestors, and Jeroboam sat upon his throne; Joash was buried in Samaria with the kings of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Now when Elisha had fallen sick with the illness of which he was to die, King Joash of Israel went down to him, and wept before him, crying, \"My father, my father! The chariots of Israel and its horsemen!\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Elisha said to him, \"Take a bow and arrows\"; so he took a bow and arrows.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then he said to the king of Israel, \"Draw the bow\"; and he drew it. Elisha laid his hands on the king's hands.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then he said, \"Open the window eastward\"; and he opened it. Elisha said, \"Shoot\"; and he shot. Then he said, \"The LORD's arrow of victory, the arrow of victory over Aram! For you shall fight the Arameans in Aphek until you have made an end of them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> He continued, \"Take the arrows\"; and he took them. He said to the king of Israel, \"Strike the ground with them\"; he struck three times, and stopped.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Then the man of God was angry with him, and said, \"You should have struck five or six times; then you would have struck down Aram until you had made an end of it, but now you will strike down Aram only three times.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> So Elisha died, and they buried him. Now bands of Moabites used to invade the land in the spring of the year.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> As a man was being buried, a marauding band was seen and the man was thrown into the grave of Elisha; as soon as the man touched the bones of Elisha, he came to life and stood on his feet.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Now King Hazael of Aram oppressed Israel all the days of Jehoahaz.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> But the LORD was gracious to them and had compassion on them; he turned toward them, because of his covenant with Abraham, Isaac, and Jacob, and would not destroy them; nor has he banished them from his presence until now.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> When King Hazael of Aram died, his son Ben-hadad succeeded him.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Then Jehoash son of Jehoahaz took again from Ben-hadad son of Hazael the towns that he had taken from his father Jehoahaz in war. Three times Joash defeated him and recovered the towns of Israel.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"14\">\r\n\t\t\t<VERS vnumber=\"1\"> In the second year of King Joash son of Joahaz of Israel, King Amaziah son of Joash of Judah, began to reign.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He was twenty-five years old when he began to reign, and he reigned twenty-nine years in Jerusalem. His mother's name was Jehoaddin of Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> He did what was right in the sight of the LORD, yet not like his ancestor David; in all things he did as his father Joash had done.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But the high places were not removed; the people still sacrificed and made offerings on the high places.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> As soon as the royal power was firmly in his hand he killed his servants who had murdered his father the king.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> But he did not put to death the children of the murderers; according to what is written in the book of the law of Moses, where the LORD commanded, \"The parents shall not be put to death for the children, or the children be put to death for the parents; but all shall be put to death for their own sins.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> He killed ten thousand Edomites in the Valley of Salt and took Sela by storm; he called it Jokthe-el, which is its name to this day.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then Amaziah sent messengers to King Jehoash son of Jehoahaz, son of Jehu, of Israel, saying, \"Come, let us look one another in the face.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> King Jehoash of Israel sent word to King Amaziah of Judah, \"A thornbush on Lebanon sent to a cedar on Lebanon, saying, 'Give your daughter to my son for a wife'; but a wild animal of Lebanon passed by and trampled down the thornbush.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> You have indeed defeated Edom, and your heart has lifted you up. Be content with your glory, and stay at home; for why should you provoke trouble so that you fall, you and Judah with you?\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But Amaziah would not listen. So King Jehoash of Israel went up; he and King Amaziah of Judah faced one another in battle at Beth-shemesh, which belongs to Judah.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Judah was defeated by Israel; everyone fled home.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> King Jehoash of Israel captured King Amaziah of Judah son of Jehoash, son of Ahaziah, at Beth-shemesh; he came to Jerusalem, and broke down the wall of Jerusalem from the Ephraim Gate to the Corner Gate, a distance of four hundred cubits.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> He seized all the gold and silver, and all the vessels that were found in the house of the LORD and in the treasuries of the king's house, as well as hostages; then he returned to Samaria.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Now the rest of the acts that Jehoash did, his might, and how he fought with King Amaziah of Judah, are they not written in the Book of the Annals of the Kings of Israel?</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Jehoash slept with his ancestors, and was buried in Samaria with the kings of Israel; then his son Jeroboam succeeded him.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> King Amaziah son of Joash of Judah lived fifteen years after the death of King Jehoash son of Jehoahaz of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Now the rest of the deeds of Amaziah, are they not written in the Book of the Annals of the Kings of Judah?</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> They made a conspiracy against him in Jerusalem, and he fled to Lachish. But they sent after him to Lachish, and killed him there.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> They brought him on horses; he was buried in Jerusalem with his ancestors in the city of David.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> All the people of Judah took Azariah, who was sixteen years old, and made him king to succeed his father Amaziah.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> He rebuilt Elath and restored it to Judah, after King Amaziah slept with his ancestors. </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> In the fifteenth year of King Amaziah son of Joash of Judah, King Jeroboam son of Joash of Israel began to reign in Samaria; he reigned forty-one years.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> He did what was evil in the sight of the LORD; he did not depart from all the sins of Jeroboam son of Nebat, which he caused Israel to sin.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> He restored the border of Israel from Lebo-hamath as far as the Sea of the Arabah, according to the word of the LORD, the God of Israel, which he spoke by his servant Jonah son of Amittai, the prophet, who was from Gath-hepher.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> For the LORD saw that the distress of Israel was very bitter; there was no one left, bond or free, and no one to help Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> But the LORD had not said that he would blot out the name of Israel from under heaven, so he saved them by the hand of Jeroboam son of Joash.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Now the rest of the acts of Jeroboam, and all that he did, and his might, how he fought, and how he recovered for Israel Damascus and Hamath, which had belonged to Judah, are they not written in the Book of the Annals of the Kings of Israel?</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Jeroboam slept with his ancestors, the kings of Israel; his son Zechariah succeeded him.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"15\">\r\n\t\t\t<VERS vnumber=\"1\"> In the twenty-seventh year of King Jeroboam of Israel King Azariah son of Amaziah of Judah began to reign.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He was sixteen years old when he began to reign, and he reigned fifty-two years in Jerusalem. His mother's name was Jecoliah of Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> He did what was right in the sight of the LORD, just as his father Amaziah had done.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Nevertheless the high places were not taken away; the people still sacrificed and made offerings on the high places.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The LORD struck the king, so that he was leprous to the day of his death, and lived in a separate house. Jotham the king's son was in charge of the palace, governing the people of the land. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Now the rest of the acts of Azariah, and all that he did, are they not written in the Book of the Annals of the Kings of Judah?</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Azariah slept with his ancestors; they buried him with his ancestors in the city of David; his son Jotham succeeded him.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> In the thirty-eighth year of King Azariah of Judah, Zechariah son of Jeroboam reigned over Israel in Samaria six months.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> He did what was evil in the sight of the LORD, as his ancestors had done. He did not depart from the sins of Jeroboam son of Nebat, which he caused Israel to sin.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Shallum son of Jabesh conspired against him, and struck him down in public and killed him, and reigned in place of him.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Now the rest of the deeds of Zechariah are written in the Book of the Annals of the Kings of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> This was the promise of the LORD that he gave to Jehu, \"Your sons shall sit on the throne of Israel to the fourth generation.\" And so it happened.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Shallum son of Jabesh began to reign in the thirty-ninth year of King Uzziah of Judah; he reigned one month in Samaria.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then Menahem son of Gadi came up from Tirzah and came to Samaria; he struck down Shallum son of Jabesh in Samaria and killed him; he reigned in place of him.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Now the rest of the deeds of Shallum, including the conspiracy that he made, are written in the Book of the Annals of the Kings of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> At that time Menahem sacked Tiphsah, all who were in it and its territory from Tirzah on; because they did not open it to him, he sacked it. He ripped open all the pregnant women in it.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> In the thirty-ninth year of King Azariah of Judah, Menahem son of Gadi began to reign over Israel; he reigned ten years in Samaria.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> He did what was evil in the sight of the LORD; he did not depart all his days from any of the sins of Jeroboam son of Nebat, which he caused Israel to sin.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> King Pul of Assyria came against the land; Menahem gave Pul a thousand talents of silver, so that he might help him confirm his hold on the royal power.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Menahem exacted the money from Israel, that is, from all the wealthy, fifty shekels of silver from each one, to give to the king of Assyria. So the king of Assyria turned back, and did not stay there in the land.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Now the rest of the deeds of Menahem, and all that he did, are they not written in the Book of the Annals of the Kings of Israel?</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Menahem slept with his ancestors, and his son Pekahiah succeeded him.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> In the fiftieth year of King Azariah of Judah, Pekahiah son of Menahem began to reign over Israel in Samaria; he reigned two years.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> He did what was evil in the sight of the LORD; he did not turn away from the sins of Jeroboam son of Nebat, which he caused Israel to sin.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Pekah son of Remaliah, his captain, conspired against him with fifty of the Gileadites, and attacked him in Samaria, in the citadel of the palace along with Argob and Arieh; he killed him, and reigned in place of him.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Now the rest of the deeds of Pekahiah, and all that he did, are written in the Book of the Annals of the Kings of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> In the fifty-second year of King Azariah of Judah, Pekah son of Remaliah began to reign over Israel in Samaria; he reigned twenty years.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> He did what was evil in the sight of the LORD; he did not depart from the sins of Jeroboam son of Nebat, which he caused Israel to sin.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> In the days of King Pekah of Israel, King Tiglath-pileser of Assyria came and captured Ijon, Abel-beth-maacah, Janoah, Kedesh, Hazor, Gilead, and Galilee, all the land of Naphtali; and he carried the people captive to Assyria.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Then Hoshea son of Elah made a conspiracy against Pekah son of Remaliah, attacked him, and killed him; he reigned in place of him, in the twentieth year of Jotham son of Uzziah.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Now the rest of the acts of Pekah, and all that he did, are written in the Book of the Annals of the Kings of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> In the second year of King Pekah son of Remaliah of Israel, King Jotham son of Uzziah of Judah began to reign.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> He was twenty-five years old when he began to reign and reigned sixteen years in Jerusalem. His mother's name was Jerusha daughter of Zadok.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> He did what was right in the sight of the LORD, just as his father Uzziah had done.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Nevertheless the high places were not removed; the people still sacrificed and made offerings on the high places. He built the upper gate of the house of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Now the rest of the acts of Jotham, and all that he did, are they not written in the Book of the Annals of the Kings of Judah?</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> In those days the LORD began to send King Rezin of Aram and Pekah son of Remaliah against Judah.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Jotham slept with his ancestors, and was buried with his ancestors in the city of David, his ancestor; his son Ahaz succeeded him.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"16\">\r\n\t\t\t<VERS vnumber=\"1\"> In the seventeenth year of Pekah son of Remaliah, King Ahaz son of Jotham of Judah began to reign.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Ahaz was twenty years old when he began to reign; he reigned sixteen years in Jerusalem. He did not do what was right in the sight of the LORD his God, as his ancestor David had done,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> but he walked in the way of the kings of Israel. He even made his son pass through fire, according to the abominable practices of the nations whom the LORD drove out before the people of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> He sacrificed and made offerings on the high places, on the hills, and under every green tree.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then King Rezin of Aram and King Pekah son of Remaliah of Israel came up to wage war on Jerusalem; they besieged Ahaz but could not conquer him.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> At that time the king of Edom recovered Elath for Edom, and drove the Judeans from Elath; and the Edomites came to Elath, where they live to this day. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Ahaz sent messengers to King Tiglath-pileser of Assyria, saying, \"I am your servant and your son. Come up, and rescue me from the hand of the king of Aram and from the hand of the king of Israel, who are attacking me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Ahaz also took the silver and gold found in the house of the LORD and in the treasures of the king's house, and sent a present to the king of Assyria.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The king of Assyria listened to him; the king of Assyria marched up against Damascus, and took it, carrying its people captive to Kir; then he killed Rezin.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> When King Ahaz went to Damascus to meet King Tiglath-pileser of Assyria, he saw the altar that was at Damascus. King Ahaz sent to the priest Uriah a model of the altar, and its pattern, exact in all its details.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The priest Uriah built the altar; in accordance with all that King Ahaz had sent from Damascus, just so did the priest Uriah build it, before King Ahaz arrived from Damascus.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> When the king came from Damascus, the king viewed the altar. Then the king drew near to the altar, went up on it,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> and offered his burnt offering and his grain offering, poured his drink offering, and dashed the blood of his offerings of well-being against the altar.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The bronze altar that was before the LORD he removed from the front of the house, from the place between his altar and the house of the LORD, and put it on the north side of his altar.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> King Ahaz commanded the priest Uriah, saying, \"Upon the great altar offer the morning burnt offering, and the evening grain offering, and the king's burnt offering, and his grain offering, with the burnt offering of all the people of the land, their grain offering, and their drink offering; then dash against it all the blood of the burnt offering, and all the blood of the sacrifice; but the bronze altar shall be for me to inquire by.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The priest Uriah did everything that King Ahaz commanded.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then King Ahaz cut off the frames of the stands, and removed the laver from them; he removed the sea from the bronze oxen that were under it, and put it on a pediment of stone.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The covered portal for use on the sabbath that had been built inside the palace, and the outer entrance for the king he removed from the house of the LORD. He did this because of the king of Assyria. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Now the rest of the acts of Ahaz that he did, are they not written in the Book of the Annals of the Kings of Judah?</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Ahaz slept with his ancestors, and was buried with his ancestors in the city of David; his son Hezekiah succeeded him.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"17\">\r\n\t\t\t<VERS vnumber=\"1\"> In the twelfth year of King Ahaz of Judah, Hoshea son of Elah began to reign in Samaria over Israel; he reigned nine years.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He did what was evil in the sight of the LORD, yet not like the kings of Israel who were before him.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> King Shalmaneser of Assyria came up against him; Hoshea became his vassal, and paid him tribute.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But the king of Assyria found treachery in Hoshea; for he had sent messengers to King So of Egypt, and offered no tribute to the king of Assyria, as he had done year by year; therefore the king of Assyria confined him and imprisoned him.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then the king of Assyria invaded all the land and came to Samaria; for three years he besieged it.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> In the ninth year of Hoshea the king of Assyria captured Samaria; he carried the Israelites away to Assyria. He placed them in Halah, on the Habor, the river of Gozan, and in the cities of the Medes.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> This occurred because the people of Israel had sinned against the LORD their God, who had brought them up out of the land of Egypt from under the hand of Pharaoh king of Egypt. They had worshiped other gods</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> and walked in the customs of the nations whom the LORD drove out before the people of Israel, and in the customs that the kings of Israel had introduced. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The people of Israel secretly did things that were not right against the LORD their God. They built for themselves high places at all their towns, from watchtower to fortified city;</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> they set up for themselves pillars and sacred poles on every high hill and under every green tree; </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> there they made offerings on all the high places, as the nations did whom the LORD carried away before them. They did wicked things, provoking the LORD to anger;</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> they served idols, of which the LORD had said to them, \"You shall not do this.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Yet the LORD warned Israel and Judah by every prophet and every seer, saying, \"Turn from your evil ways and keep my commandments and my statutes, in accordance with all the law that I commanded your ancestors and that I sent to you by my servants the prophets.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> They would not listen but were stubborn, as their ancestors had been, who did not believe in the LORD their God.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> They despised his statutes, and his covenant that he made with their ancestors, and the warnings that he gave them. They went after false idols and became false; they followed the nations that were around them, concerning whom the LORD had commanded them that they should not do as they did.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> They rejected all the commandments of the LORD their God and made for themselves cast images of two calves; they made a sacred pole, worshiped all the host of heaven, and served Baal. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> They made their sons and their daughters pass through fire; they used divination and augury; and they sold themselves to do evil in the sight of the LORD, provoking him to anger.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Therefore the LORD was very angry with Israel and removed them out of his sight; none was left but the tribe of Judah alone.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Judah also did not keep the commandments of the LORD their God but walked in the customs that Israel had introduced.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The LORD rejected all the descendants of Israel; he punished them and gave them into the hand of plunderers, until he had banished them from his presence.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> When he had torn Israel from the house of David, they made Jeroboam son of Nebat king. Jeroboam drove Israel from following the LORD and made them commit great sin.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The people of Israel continued in all the sins that Jeroboam committed; they did not depart from them</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> until the LORD removed Israel out of his sight, as he had foretold through all his servants the prophets. So Israel was exiled from their own land to Assyria until this day.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> The king of Assyria brought people from Babylon, Cuthah, Avva, Hamath, and Sepharvaim, and placed them in the cities of Samaria in place of the people of Israel; they took possession of Samaria, and settled in its cities.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> When they first settled there, they did not worship the LORD; therefore the LORD sent lions among them, which killed some of them.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> So the king of Assyria was told, \"The nations that you have carried away and placed in the cities of Samaria do not know the law of the god of the land; therefore he has sent lions among them; they are killing them, because they do not know the law of the god of the land.\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Then the king of Assyria commanded, \"Send there one of the priests whom you carried away from there; let him go and live there, and teach them the law of the god of the land.\" </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> So one of the priests whom they had carried away from Samaria came and lived in Bethel; he taught them how they should worship the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> But every nation still made gods of its own and put them in the shrines of the high places that the people of Samaria had made, every nation in the cities in which they lived;</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> the people of Babylon made Succoth-benoth, the people of Cuth made Nergal, the people of Hamath made Ashima;</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> the Avvites made Nibhaz and Tartak; the Sepharvites burned their children in the fire to Adrammelech and Anammelech, the gods of Sepharvaim.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> They also worshiped the LORD and appointed from among themselves all sorts of people as priests of the high places, who sacrificed for them in the shrines of the high places.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> So they worshiped the LORD but also served their own gods, after the manner of the nations from among whom they had been carried away.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> To this day they continue to practice their former customs. They do not worship the LORD and they do not follow the statutes or the ordinances or the law or the commandment that the LORD commanded the children of Jacob, whom he named Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> The LORD had made a covenant with them and commanded them, \"You shall not worship other gods or bow yourselves to them or serve them or sacrifice to them,</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> but you shall worship the LORD, who brought you out of the land of Egypt with great power and with an outstretched arm; you shall bow yourselves to him, and to him you shall sacrifice.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> The statutes and the ordinances and the law and the commandment that he wrote for you, you shall always be careful to observe. You shall not worship other gods;</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> you shall not forget the covenant that I have made with you. You shall not worship other gods,</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> but you shall worship the LORD your God; he will deliver you out of the hand of all your enemies.\"</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> They would not listen, however, but they continued to practice their former custom.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> So these nations worshiped the LORD, but also served their carved images; to this day their children and their children's children continue to do as their ancestors did.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"18\">\r\n\t\t\t<VERS vnumber=\"1\"> In the third year of King Hoshea son of Elah of Israel, Hezekiah son of King Ahaz of Judah began to reign.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He was twenty-five years old when he began to reign; he reigned twenty-nine years in Jerusalem. His mother's name was Abi daughter of Zechariah.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> He did what was right in the sight of the LORD just as his ancestor David had done.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> He removed the high places, broke down the pillars, and cut down the sacred pole. He broke in pieces the bronze serpent that Moses had made, for until those days the people of Israel had made offerings to it; it was called Nehushtan. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> He trusted in the LORD the God of Israel; so that there was no one like him among all the kings of Judah after him, or among those who were before him.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For he held fast to the LORD; he did not depart from following him but kept the commandments that the LORD commanded Moses.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The LORD was with him; wherever he went, he prospered. He rebelled against the king of Assyria and would not serve him.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> He attacked the Philistines as far as Gaza and its territory, from watchtower to fortified city.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> In the fourth year of King Hezekiah, which was the seventh year of King Hoshea son of Elah of Israel, King Shalmaneser of Assyria came up against Samaria, besieged it,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> and at the end of three years, took it. In the sixth year of Hezekiah, which was the ninth year of King Hoshea of Israel, Samaria was taken.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The king of Assyria carried the Israelites away to Assyria, settled them in Halah, on the Habor, the river of Gozan, and in the cities of the Medes,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> because they did not obey the voice of the LORD their God but transgressed his covenant-- all that Moses the servant of the LORD had commanded; they neither listened nor obeyed.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> In the fourteenth year of King Hezekiah, King Sennacherib of Assyria came up against all the fortified cities of Judah and captured them.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> King Hezekiah of Judah sent to the king of Assyria at Lachish, saying, \"I have done wrong; withdraw from me; whatever you impose on me I will bear.\" The king of Assyria demanded of King Hezekiah of Judah three hundred talents of silver and thirty talents of gold.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Hezekiah gave him all the silver that was found in the house of the LORD and in the treasuries of the king's house.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> At that time Hezekiah stripped the gold from the doors of the temple of the LORD, and from the doorposts that King Hezekiah of Judah had overlaid and gave it to the king of Assyria.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The king of Assyria sent the Tartan, the Rabsaris, and the Rabshakeh with a great army from Lachish to King Hezekiah at Jerusalem. They went up and came to Jerusalem. When they arrived, they came and stood by the conduit of the upper pool, which is on the highway to the Fuller's Field.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> When they called for the king, there came out to them Eliakim son of Hilkiah, who was in charge of the palace, and Shebnah the secretary, and Joah son of Asaph, the recorder.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The Rabshakeh said to them, \"Say to Hezekiah: Thus says the great king, the king of Assyria: On what do you base this confidence of yours?</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Do you think that mere words are strategy and power for war? On whom do you now rely, that you have rebelled against me?</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> See, you are relying now on Egypt, that broken reed of a staff, which will pierce the hand of anyone who leans on it. Such is Pharaoh king of Egypt to all who rely on him.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> But if you say to me, 'We rely on the LORD our God,' is it not he whose high places and altars Hezekiah has removed, saying to Judah and to Jerusalem, 'You shall worship before this altar in Jerusalem'?</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Come now, make a wager with my master the king of Assyria: I will give you two thousand horses, if you are able on your part to set riders on them.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> How then can you repulse a single captain among the least of my master's servants, when you rely on Egypt for chariots and for horsemen?</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Moreover, is it without the LORD that I have come up against this place to destroy it? The LORD said to me, Go up against this land, and destroy it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Then Eliakim son of Hilkiah, and Shebnah, and Joah said to the Rabshakeh, \"Please speak to your servants in the Aramaic language, for we understand it; do not speak to us in the language of Judah within the hearing of the people who are on the wall.\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> But the Rabshakeh said to them, \"Has my master sent me to speak these words to your master and to you, and not to the people sitting on the wall, who are doomed with you to eat their own dung and to drink their own urine?\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Then the Rabshakeh stood and called out in a loud voice in the language of Judah, \"Hear the word of the great king, the king of Assyria!</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Thus says the king: 'Do not let Hezekiah deceive you, for he will not be able to deliver you out of my hand.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Do not let Hezekiah make you rely on the LORD by saying, The LORD will surely deliver us, and this city will not be given into the hand of the king of Assyria.'</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Do not listen to Hezekiah; for thus says the king of Assyria: 'Make your peace with me and come out to me; then every one of you will eat from your own vine and your own fig tree, and drink water from your own cistern,</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> until I come and take you away to a land like your own land, a land of grain and wine, a land of bread and vineyards, a land of olive oil and honey, that you may live and not die. Do not listen to Hezekiah when he misleads you by saying, The LORD will deliver us.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Has any of the gods of the nations ever delivered its land out of the hand of the king of Assyria?</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Where are the gods of Hamath and Arpad? Where are the gods of Sepharvaim, Hena, and Ivvah? Have they delivered Samaria out of my hand?</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Who among all the gods of the countries have delivered their countries out of my hand, that the LORD should deliver Jerusalem out of my hand?'\"</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> But the people were silent and answered him not a word, for the king's command was, \"Do not answer him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Then Eliakim son of Hilkiah, who was in charge of the palace, and Shebna the secretary, and Joah son of Asaph, the recorder, came to Hezekiah with their clothes torn and told him the words of the Rabshakeh.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"19\">\r\n\t\t\t<VERS vnumber=\"1\"> When King Hezekiah heard it, he tore his clothes, covered himself with sackcloth, and went into the house of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And he sent Eliakim, who was in charge of the palace, and Shebna the secretary, and the senior priests, covered with sackcloth, to the prophet Isaiah son of Amoz.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> They said to him, \"Thus says Hezekiah, This day is a day of distress, of rebuke, and of disgrace; children have come to the birth, and there is no strength to bring them forth.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> It may be that the LORD your God heard all the words of the Rabshakeh, whom his master the king of Assyria has sent to mock the living God, and will rebuke the words that the LORD your God has heard; therefore lift up your prayer for the remnant that is left.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> When the servants of King Hezekiah came to Isaiah,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Isaiah said to them, \"Say to your master, 'Thus says the LORD: Do not be afraid because of the words that you have heard, with which the servants of the king of Assyria have reviled me.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> I myself will put a spirit in him, so that he shall hear a rumor and return to his own land; I will cause him to fall by the sword in his own land.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The Rabshakeh returned, and found the king of Assyria fighting against Libnah; for he had heard that the king had left Lachish.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> When the king heard concerning King Tirhakah of Ethiopia, \"See, he has set out to fight against you,\" he sent messengers again to Hezekiah, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> \"Thus shall you speak to King Hezekiah of Judah: Do not let your God on whom you rely deceive you by promising that Jerusalem will not be given into the hand of the king of Assyria.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> See, you have heard what the kings of Assyria have done to all lands, destroying them utterly. Shall you be delivered?</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Have the gods of the nations delivered them, the nations that my predecessors destroyed, Gozan, Haran, Rezeph, and the people of Eden who were in Telassar?</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Where is the king of Hamath, the king of Arpad, the king of the city of Sepharvaim, the king of Hena, or the king of Ivvah?\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Hezekiah received the letter from the hand of the messengers and read it; then Hezekiah went up to the house of the LORD and spread it before the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And Hezekiah prayed before the LORD, and said: \"O LORD the God of Israel, who are enthroned above the cherubim, you are God, you alone, of all the kingdoms of the earth; you have made heaven and earth.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Incline your ear, O LORD, and hear; open your eyes, O LORD, and see; hear the words of Sennacherib, which he has sent to mock the living God.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Truly, O LORD, the kings of Assyria have laid waste the nations and their lands,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> and have hurled their gods into the fire, though they were no gods but the work of human hands-- wood and stone-- and so they were destroyed.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> So now, O LORD our God, save us, I pray you, from his hand, so that all the kingdoms of the earth may know that you, O LORD, are God alone.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Then Isaiah son of Amoz sent to Hezekiah, saying, \"Thus says the LORD, the God of Israel: I have heard your prayer to me about King Sennacherib of Assyria.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> This is the word that the LORD has spoken concerning him: She despises you, she scorns you-- virgin daughter Zion; she tosses her head-- behind your back, daughter Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Whom have you mocked and reviled? Against whom have you raised your voice and haughtily lifted your eyes? Against the Holy One of Israel!</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> By your messengers you have mocked the Lord, and you have said, 'With my many chariots I have gone up the heights of the mountains, to the far recesses of Lebanon; I felled its tallest cedars, its choicest cypresses; I entered its farthest retreat, its densest forest.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> I dug wells and drank foreign waters, I dried up with the sole of my foot all the streams of Egypt.'</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Have you not heard that I determined it long ago? I planned from days of old what now I bring to pass, that you should make fortified cities crash into heaps of ruins,</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> while their inhabitants, shorn of strength, are dismayed and confounded; they have become like plants of the field and like tender grass, like grass on the housetops, blighted before it is grown.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> \"But I know your rising and your sitting, your going out and coming in, and your raging against me. </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Because you have raged against me and your arrogance has come to my ears, I will put my hook in your nose and my bit in your mouth; I will turn you back on the way by which you came.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> \"And this shall be the sign for you: This year you shall eat what grows of itself, and in the second year what springs from that; then in the third year sow, reap, plant vineyards, and eat their fruit.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> The surviving remnant of the house of Judah shall again take root downward, and bear fruit upward;</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> for from Jerusalem a remnant shall go out, and from Mount Zion a band of survivors. The zeal of the LORD of hosts will do this.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> \"Therefore thus says the LORD concerning the king of Assyria: He shall not come into this city, shoot an arrow there, come before it with a shield, or cast up a siege ramp against it.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> By the way that he came, by the same he shall return; he shall not come into this city, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> For I will defend this city to save it, for my own sake and for the sake of my servant David.\"</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> That very night the angel of the LORD set out and struck down one hundred eighty-five thousand in the camp of the Assyrians; when morning dawned, they were all dead bodies.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Then King Sennacherib of Assyria left, went home, and lived at Nineveh.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> As he was worshiping in the house of his god Nisroch, his sons Adrammelech and Sharezer killed him with the sword, and they escaped into the land of Ararat. His son Esar-haddon succeeded him.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"20\">\r\n\t\t\t<VERS vnumber=\"1\"> In those days Hezekiah became sick and was at the point of death. The prophet Isaiah son of Amoz came to him, and said to him, \"Thus says the LORD: Set your house in order, for you shall die; you shall not recover.\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Then Hezekiah turned his face to the wall and prayed to the LORD:</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> \"Remember now, O LORD, I implore you, how I have walked before you in faithfulness with a whole heart, and have done what is good in your sight.\" Hezekiah wept bitterly.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Before Isaiah had gone out of the middle court, the word of the LORD came to him:</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> \"Turn back, and say to Hezekiah prince of my people, Thus says the LORD, the God of your ancestor David: I have heard your prayer, I have seen your tears; indeed, I will heal you; on the third day you shall go up to the house of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> I will add fifteen years to your life. I will deliver you and this city out of the hand of the king of Assyria; I will defend this city for my own sake and for my servant David's sake.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then Isaiah said, \"Bring a lump of figs. Let them take it and apply it to the boil, so that he may recover.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Hezekiah said to Isaiah, \"What shall be the sign that the LORD will heal me, and that I shall go up to the house of the LORD on the third day?\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Isaiah said, \"This is the sign to you from the LORD, that the LORD will do the thing that he has promised: the shadow has now advanced ten intervals; shall it retreat ten intervals?\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Hezekiah answered, \"It is normal for the shadow to lengthen ten intervals; rather let the shadow retreat ten intervals.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The prophet Isaiah cried to the LORD; and he brought the shadow back the ten intervals, by which the sun had declined on the dial of Ahaz. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> At that time King Merodach-baladan son of Baladan of Babylon sent envoys with letters and a present to Hezekiah, for he had heard that Hezekiah had been sick.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Hezekiah welcomed them; he showed them all his treasure house, the silver, the gold, the spices, the precious oil, his armory, all that was found in his storehouses; there was nothing in his house or in all his realm that Hezekiah did not show them. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then the prophet Isaiah came to King Hezekiah, and said to him, \"What did these men say? From where did they come to you?\" Hezekiah answered, \"They have come from a far country, from Babylon.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> He said, \"What have they seen in your house?\" Hezekiah answered, \"They have seen all that is in my house; there is nothing in my storehouses that I did not show them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then Isaiah said to Hezekiah, \"Hear the word of the LORD:</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Days are coming when all that is in your house, and that which your ancestors have stored up until this day, shall be carried to Babylon; nothing shall be left, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Some of your own sons who are born to you shall be taken away; they shall be eunuchs in the palace of the king of Babylon.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Then Hezekiah said to Isaiah, \"The word of the LORD that you have spoken is good.\" For he thought, \"Why not, if there will be peace and security in my days?\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The rest of the deeds of Hezekiah, all his power, how he made the pool and the conduit and brought water into the city, are they not written in the Book of the Annals of the Kings of Judah?</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Hezekiah slept with his ancestors; and his son Manasseh succeeded him.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"21\">\r\n\t\t\t<VERS vnumber=\"1\"> Manasseh was twelve years old when he began to reign; he reigned fifty-five years in Jerusalem. His mother's name was Hephzibah.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He did what was evil in the sight of the LORD, following the abominable practices of the nations that the LORD drove out before the people of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For he rebuilt the high places that his father Hezekiah had destroyed; he erected altars for Baal, made a sacred pole, as King Ahab of Israel had done, worshiped all the host of heaven, and served them. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> He built altars in the house of the LORD, of which the LORD had said, \"In Jerusalem I will put my name.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> He built altars for all the host of heaven in the two courts of the house of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> He made his son pass through fire; he practiced soothsaying and augury, and dealt with mediums and with wizards. He did much evil in the sight of the LORD, provoking him to anger.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The carved image of Asherah that he had made he set in the house of which the LORD said to David and to his son Solomon, \"In this house, and in Jerusalem, which I have chosen out of all the tribes of Israel, I will put my name forever;</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> I will not cause the feet of Israel to wander any more out of the land that I gave to their ancestors, if only they will be careful to do according to all that I have commanded them, and according to all the law that my servant Moses commanded them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> But they did not listen; Manasseh misled them to do more evil than the nations had done that the LORD destroyed before the people of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The LORD said by his servants the prophets,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> \"Because King Manasseh of Judah has committed these abominations, has done things more wicked than all that the Amorites did, who were before him, and has caused Judah also to sin with his idols;</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> therefore thus says the LORD, the God of Israel, I am bringing upon Jerusalem and Judah such evil that the ears of everyone who hears of it will tingle.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> I will stretch over Jerusalem the measuring line for Samaria, and the plummet for the house of Ahab; I will wipe Jerusalem as one wipes a dish, wiping it and turning it upside down.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> I will cast off the remnant of my heritage, and give them into the hand of their enemies; they shall become a prey and a spoil to all their enemies,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> because they have done what is evil in my sight and have provoked me to anger, since the day their ancestors came out of Egypt, even to this day.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Moreover Manasseh shed very much innocent blood, until he had filled Jerusalem from one end to another, besides the sin that he caused Judah to sin so that they did what was evil in the sight of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Now the rest of the acts of Manasseh, all that he did, and the sin that he committed, are they not written in the Book of the Annals of the Kings of Judah?</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Manasseh slept with his ancestors, and was buried in the garden of his house, in the garden of Uzza. His son Amon succeeded him.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Amon was twenty-two years old when he began to reign; he reigned two years in Jerusalem. His mother's name was Meshullemeth daughter of Haruz of Jotbah.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> He did what was evil in the sight of the LORD, as his father Manasseh had done.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> He walked in all the way in which his father walked, served the idols that his father served, and worshiped them;</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> he abandoned the LORD, the God of his ancestors, and did not walk in the way of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> The servants of Amon conspired against him, and killed the king in his house.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> But the people of the land killed all those who had conspired against King Amon, and the people of the land made his son Josiah king in place of him.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Now the rest of the acts of Amon that he did, are they not written in the Book of the Annals of the Kings of Judah?</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> He was buried in his tomb in the garden of Uzza; then his son Josiah succeeded him.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"22\">\r\n\t\t\t<VERS vnumber=\"1\"> Josiah was eight years old when he began to reign; he reigned thirty-one years in Jerusalem. His mother's name was Jedidah daughter of Adaiah of Bozkath.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He did what was right in the sight of the LORD, and walked in all the way of his father David; he did not turn aside to the right or to the left.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> In the eighteenth year of King Josiah, the king sent Shaphan son of Azaliah, son of Meshullam, the secretary, to the house of the LORD, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> \"Go up to the high priest Hilkiah, and have him count the entire sum of the money that has been brought into the house of the LORD, which the keepers of the threshold have collected from the people;</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> let it be given into the hand of the workers who have the oversight of the house of the LORD; let them give it to the workers who are at the house of the LORD, repairing the house,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> that is, to the carpenters, to the builders, to the masons; and let them use it to buy timber and quarried stone to repair the house.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But no accounting shall be asked from them for the money that is delivered into their hand, for they deal honestly.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The high priest Hilkiah said to Shaphan the secretary, \"I have found the book of the law in the house of the LORD.\" When Hilkiah gave the book to Shaphan, he read it.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then Shaphan the secretary came to the king, and reported to the king, \"Your servants have emptied out the money that was found in the house, and have delivered it into the hand of the workers who have oversight of the house of the LORD.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Shaphan the secretary informed the king, \"The priest Hilkiah has given me a book.\" Shaphan then read it aloud to the king.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> When the king heard the words of the book of the law, he tore his clothes.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then the king commanded the priest Hilkiah, Ahikam son of Shaphan, Achbor son of Micaiah, Shaphan the secretary, and the king's servant Asaiah, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> \"Go, inquire of the LORD for me, for the people, and for all Judah, concerning the words of this book that has been found; for great is the wrath of the LORD that is kindled against us, because our ancestors did not obey the words of this book, to do according to all that is written concerning us.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> So the priest Hilkiah, Ahikam, Achbor, Shaphan, and Asaiah went to the prophetess Huldah the wife of Shallum son of Tikvah, son of Harhas, keeper of the wardrobe; she resided in Jerusalem in the Second Quarter, where they consulted her.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> She declared to them, \"Thus says the LORD, the God of Israel: Tell the man who sent you to me,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Thus says the LORD, I will indeed bring disaster on this place and on its inhabitants-- all the words of the book that the king of Judah has read.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Because they have abandoned me and have made offerings to other gods, so that they have provoked me to anger with all the work of their hands, therefore my wrath will be kindled against this place, and it will not be quenched.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> But as to the king of Judah, who sent you to inquire of the LORD, thus shall you say to him, Thus says the LORD, the God of Israel: Regarding the words that you have heard,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> because your heart was penitent, and you humbled yourself before the LORD, when you heard how I spoke against this place, and against its inhabitants, that they should become a desolation and a curse, and because you have torn your clothes and wept before me, I also have heard you, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Therefore, I will gather you to your ancestors, and you shall be gathered to your grave in peace; your eyes shall not see all the disaster that I will bring on this place.\" They took the message back to the king.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"23\">\r\n\t\t\t<VERS vnumber=\"1\"> Then the king directed that all the elders of Judah and Jerusalem should be gathered to him.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The king went up to the house of the LORD, and with him went all the people of Judah, all the inhabitants of Jerusalem, the priests, the prophets, and all the people, both small and great; he read in their hearing all the words of the book of the covenant that had been found in the house of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The king stood by the pillar and made a covenant before the LORD, to follow the LORD, keeping his commandments, his decrees, and his statutes, with all his heart and all his soul, to perform the words of this covenant that were written in this book. All the people joined in the covenant.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The king commanded the high priest Hilkiah, the priests of the second order, and the guardians of the threshold, to bring out of the temple of the LORD all the vessels made for Baal, for Asherah, and for all the host of heaven; he burned them outside Jerusalem in the fields of the Kidron, and carried their ashes to Bethel.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> He deposed the idolatrous priests whom the kings of Judah had ordained to make offerings in the high places at the cities of Judah and around Jerusalem; those also who made offerings to Baal, to the sun, the moon, the constellations, and all the host of the heavens.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> He brought out the image of Asherah from the house of the LORD, outside Jerusalem, to the Wadi Kidron, burned it at the Wadi Kidron, beat it to dust and threw the dust of it upon the graves of the common people. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> He broke down the houses of the male temple prostitutes that were in the house of the LORD, where the women did weaving for Asherah.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> He brought all the priests out of the towns of Judah, and defiled the high places where the priests had made offerings, from Geba to Beer-sheba; he broke down the high places of the gates that were at the entrance of the gate of Joshua the governor of the city, which were on the left at the gate of the city.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The priests of the high places, however, did not come up to the altar of the LORD in Jerusalem, but ate unleavened bread among their kindred.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> He defiled Topheth, which is in the valley of Ben-hinnom, so that no one would make a son or a daughter pass through fire as an offering to Molech.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> He removed the horses that the kings of Judah had dedicated to the sun, at the entrance to the house of the LORD, by the chamber of the eunuch Nathan-melech, which was in the precincts; then he burned the chariots of the sun with fire. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The altars on the roof of the upper chamber of Ahaz, which the kings of Judah had made, and the altars that Manasseh had made in the two courts of the house of the LORD, he pulled down from there and broke in pieces, and threw the rubble into the Wadi Kidron.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The king defiled the high places that were east of Jerusalem, to the south of the Mount of Destruction, which King Solomon of Israel had built for Astarte the abomination of the Sidonians, for Chemosh the abomination of Moab, and for Milcom the abomination of the Ammonites.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> He broke the pillars in pieces, cut down the sacred poles, and covered the sites with human bones. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Moreover, the altar at Bethel, the high place erected by Jeroboam son of Nebat, who caused Israel to sin-- he pulled down that altar along with the high place. He burned the high place, crushing it to dust; he also burned the sacred pole.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> As Josiah turned, he saw the tombs there on the mount; and he sent and took the bones out of the tombs, and burned them on the altar, and defiled it, according to the word of the LORD that the man of God proclaimed, when Jeroboam stood by the altar at the festival; he turned and looked up at the tomb of the man of God who had predicted these things. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then he said, \"What is that monument that I see?\" The people of the city told him, \"It is the tomb of the man of God who came from Judah and predicted these things that you have done against the altar at Bethel.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> He said, \"Let him rest; let no one move his bones.\" So they let his bones alone, with the bones of the prophet who came out of Samaria.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Moreover, Josiah removed all the shrines of the high places that were in the towns of Samaria, which kings of Israel had made, provoking the LORD to anger; he did to them just as he had done at Bethel.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> He slaughtered on the altars all the priests of the high places who were there, and burned human bones on them. Then he returned to Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> The king commanded all the people, \"Keep the passover to the LORD your God as prescribed in this book of the covenant.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> No such passover had been kept since the days of the judges who judged Israel, or during all the days of the kings of Israel or of the kings of Judah;</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> but in the eighteenth year of King Josiah this passover was kept to the LORD in Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Moreover Josiah put away the mediums, wizards, teraphim, idols, and all the abominations that were seen in the land of Judah and in Jerusalem, so that he established the words of the law that were written in the book that the priest Hilkiah had found in the house of the LORD. </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Before him there was no king like him, who turned to the LORD with all his heart, with all his soul, and with all his might, according to all the law of Moses; nor did any like him arise after him.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Still the LORD did not turn from the fierceness of his great wrath, by which his anger was kindled against Judah, because of all the provocations with which Manasseh had provoked him.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> The LORD said, \"I will remove Judah also out of my sight, as I have removed Israel; and I will reject this city that I have chosen, Jerusalem, and the house of which I said, My name shall be there.\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Now the rest of the acts of Josiah, and all that he did, are they not written in the Book of the Annals of the Kings of Judah?</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> In his days Pharaoh Neco king of Egypt went up to the king of Assyria to the river Euphrates. King Josiah went to meet him; but when Pharaoh Neco met him at Megiddo, he killed him.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> His servants carried him dead in a chariot from Megiddo, brought him to Jerusalem, and buried him in his own tomb. The people of the land took Jehoahaz son of Josiah, anointed him, and made him king in place of his father.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Jehoahaz was twenty-three years old when he began to reign; he reigned three months in Jerusalem. His mother's name was Hamutal daughter of Jeremiah of Libnah.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> He did what was evil in the sight of the LORD, just as his ancestors had done.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Pharaoh Neco confined him at Riblah in the land of Hamath, so that he might not reign in Jerusalem, and imposed tribute on the land of one hundred talents of silver and a talent of gold.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Pharaoh Neco made Eliakim son of Josiah king in place of his father Josiah, and changed his name to Jehoiakim. But he took Jehoahaz away; he came to Egypt, and died there.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Jehoiakim gave the silver and the gold to Pharaoh, but he taxed the land in order to meet Pharaoh's demand for money. He exacted the silver and the gold from the people of the land, from all according to their assessment, to give it to Pharaoh Neco.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Jehoiakim was twenty-five years old when he began to reign; he reigned eleven years in Jerusalem. His mother's name was Zebidah daughter of Pedaiah of Rumah.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> He did what was evil in the sight of the LORD, just as all his ancestors had done.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"24\">\r\n\t\t\t<VERS vnumber=\"1\"> In his days King Nebuchadnezzar of Babylon came up; Jehoiakim became his servant for three years; then he turned and rebelled against him.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The LORD sent against him bands of the Chaldeans, bands of the Arameans, bands of the Moabites, and bands of the Ammonites; he sent them against Judah to destroy it, according to the word of the LORD that he spoke by his servants the prophets.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Surely this came upon Judah at the command of the LORD, to remove them out of his sight, for the sins of Manasseh, for all that he had committed,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> and also for the innocent blood that he had shed; for he filled Jerusalem with innocent blood, and the LORD was not willing to pardon.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Now the rest of the deeds of Jehoiakim, and all that he did, are they not written in the Book of the Annals of the Kings of Judah?</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> So Jehoiakim slept with his ancestors; then his son Jehoiachin succeeded him.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The king of Egypt did not come again out of his land, for the king of Babylon had taken over all that belonged to the king of Egypt from the Wadi of Egypt to the River Euphrates.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Jehoiachin was eighteen years old when he began to reign; he reigned three months in Jerusalem. His mother's name was Nehushta daughter of Elnathan of Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> He did what was evil in the sight of the LORD, just as his father had done.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> At that time the servants of King Nebuchadnezzar of Babylon came up to Jerusalem, and the city was besieged.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> King Nebuchadnezzar of Babylon came to the city, while his servants were besieging it;</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> King Jehoiachin of Judah gave himself up to the king of Babylon, himself, his mother, his servants, his officers, and his palace officials. The king of Babylon took him prisoner in the eighth year of his reign.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> He carried off all the treasures of the house of the LORD, and the treasures of the king's house; he cut in pieces all the vessels of gold in the temple of the LORD, which King Solomon of Israel had made, all this as the LORD had foretold.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> He carried away all Jerusalem, all the officials, all the warriors, ten thousand captives, all the artisans and the smiths; no one remained, except the poorest people of the land.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> He carried away Jehoiachin to Babylon; the king's mother, the king's wives, his officials, and the elite of the land, he took into captivity from Jerusalem to Babylon.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The king of Babylon brought captive to Babylon all the men of valor, seven thousand, the artisans and the smiths, one thousand, all of them strong and fit for war.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The king of Babylon made Mattaniah, Jehoiachin's uncle, king in his place, and changed his name to Zedekiah.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Zedekiah was twenty-one years old when he began to reign; he reigned eleven years in Jerusalem. His mother's name was Hamutal daughter of Jeremiah of Libnah.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> He did what was evil in the sight of the LORD, just as Jehoiakim had done.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Indeed, Jerusalem and Judah so angered the LORD that he expelled them from his presence. Zedekiah rebelled against the king of Babylon.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"25\">\r\n\t\t\t<VERS vnumber=\"1\"> And in the ninth year of his reign, in the tenth month, on the tenth day of the month, King Nebuchadnezzar of Babylon came with all his army against Jerusalem, and laid siege to it; they built siegeworks against it all around.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> So the city was besieged until the eleventh year of King Zedekiah.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> On the ninth day of the fourth month the famine became so severe in the city that there was no food for the people of the land.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then a breach was made in the city wall; the king with all the soldiers fled by night by the way of the gate between the two walls, by the king's garden, though the Chaldeans were all around the city. They went in the direction of the Arabah. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> But the army of the Chaldeans pursued the king, and overtook him in the plains of Jericho; all his army was scattered, deserting him.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then they captured the king and brought him up to the king of Babylon at Riblah, who passed sentence on him.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> They slaughtered the sons of Zedekiah before his eyes, then put out the eyes of Zedekiah; they bound him in fetters and took him to Babylon.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> In the fifth month, on the seventh day of the month-- which was the nineteenth year of King Nebuchadnezzar, king of Babylon-- Nebuzaradan, the captain of the bodyguard, a servant of the king of Babylon, came to Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> He burned the house of the LORD, the king's house, and all the houses of Jerusalem; every great house he burned down.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> All the army of the Chaldeans who were with the captain of the guard broke down the walls around Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Nebuzaradan the captain of the guard carried into exile the rest of the people who were left in the city and the deserters who had defected to the king of Babylon-- all the rest of the population.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> But the captain of the guard left some of the poorest people of the land to be vinedressers and tillers of the soil.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The bronze pillars that were in the house of the LORD, as well as the stands and the bronze sea that were in the house of the LORD, the Chaldeans broke in pieces, and carried the bronze to Babylon.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> They took away the pots, the shovels, the snuffers, the dishes for incense, and all the bronze vessels used in the temple service,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> as well as the firepans and the basins. What was made of gold the captain of the guard took away for the gold, and what was made of silver, for the silver.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> As for the two pillars, the one sea, and the stands, which Solomon had made for the house of the LORD, the bronze of all these vessels was beyond weighing.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The height of the one pillar was eighteen cubits, and on it was a bronze capital; the height of the capital was three cubits; latticework and pomegranates, all of bronze, were on the capital all around. The second pillar had the same, with the latticework.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The captain of the guard took the chief priest Seraiah, the second priest Zephaniah, and the three guardians of the threshold;</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> from the city he took an officer who had been in command of the soldiers, and five men of the king's council who were found in the city; the secretary who was the commander of the army who mustered the people of the land; and sixty men of the people of the land who were found in the city.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Nebuzaradan the captain of the guard took them, and brought them to the king of Babylon at Riblah.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> The king of Babylon struck them down and put them to death at Riblah in the land of Hamath. So Judah went into exile out of its land.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> He appointed Gedaliah son of Ahikam son of Shaphan as governor over the people who remained in the land of Judah, whom King Nebuchadnezzar of Babylon had left.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Now when all the captains of the forces and their men heard that the king of Babylon had appointed Gedaliah as governor, they came with their men to Gedaliah at Mizpah, namely, Ishmael son of Nethaniah, Johanan son of Kareah, Seraiah son of Tanhumeth the Netophathite, and Jaazaniah son of the Maacathite.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Gedaliah swore to them and their men, saying, \"Do not be afraid because of the Chaldean officials; live in the land, serve the king of Babylon, and it shall be well with you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> But in the seventh month, Ishmael son of Nethaniah son of Elishama, of the royal family, came with ten men; they struck down Gedaliah so that he died, along with the Judeans and Chaldeans who were with him at Mizpah.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Then all the people, high and low and the captains of the forces set out and went to Egypt; for they were afraid of the Chaldeans. </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> In the thirty-seventh year of the exile of King Jehoiachin of Judah, in the twelfth month, on the twenty-seventh day of the month, King Evil-merodach of Babylon, in the year that he began to reign, released King Jehoiachin of Judah from prison;</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> he spoke kindly to him, and gave him a seat above the other seats of the kings who were with him in Babylon.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> So Jehoiachin put aside his prison clothes. Every day of his life he dined regularly in the king's presence.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> For his allowance, a regular allowance was given him by the king, a portion every day, as long as he lived.</VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"13\" bname=\"1 Chronicles\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> Adam, Seth, Enosh;</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Kenan, Mahalalel, Jared;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Enoch, Methuselah, Lamech;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Noah, Shem, Ham, and Japheth.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The descendants of Japheth: Gomer, Magog, Madai, Javan, Tubal, Meshech, and Tiras.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The descendants of Gomer: Ashkenaz, Diphath, and Togarmah. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The descendants of Javan: Elishah, Tarshish, Kittim, and Rodanim. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The descendants of Ham: Cush, Egypt, Put, and Canaan.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The descendants of Cush: Seba, Havilah, Sabta, Raama, and Sabteca. The descendants of Raamah: Sheba and Dedan.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Cush became the father of Nimrod; he was the first to be a mighty one on the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Egypt became the father of Ludim, Anamim, Lehabim, Naphtuhim,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Pathrusim, Casluhim, and Caphtorim, from whom the Philistines come. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Canaan became the father of Sidon his firstborn, and Heth,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> and the Jebusites, the Amorites, the Girgashites,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> the Hivites, the Arkites, the Sinites,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> the Arvadites, the Zemarites, and the Hamathites.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The descendants of Shem: Elam, Asshur, Arpachshad, Lud, Aram, Uz, Hul, Gether, and Meshech. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Arpachshad became the father of Shelah; and Shelah became the father of Eber.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> To Eber were born two sons: the name of the one was Peleg (for in his days the earth was divided), and the name of his brother Joktan.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Joktan became the father of Almodad, Sheleph, Hazarmaveth, Jerah,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Hadoram, Uzal, Diklah,</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Ebal, Abimael, Sheba,</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Ophir, Havilah, and Jobab; all these were the descendants of Joktan.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Shem, Arpachshad, Shelah;</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Eber, Peleg, Reu;</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Serug, Nahor, Terah;</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Abram, that is, Abraham.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> The sons of Abraham: Isaac and Ishmael.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> These are their genealogies: the firstborn of Ishmael, Nebaioth; and Kedar, Adbeel, Mibsam,</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Mishma, Dumah, Massa, Hadad, Tema,</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Jetur, Naphish, and Kedemah. These are the sons of Ishmael.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> The sons of Keturah, Abraham's concubine: she bore Zimran, Jokshan, Medan, Midian, Ishbak, and Shuah. The sons of Jokshan: Sheba and Dedan.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> The sons of Midian: Ephah, Epher, Hanoch, Abida, and Eldaah. All these were the descendants of Keturah.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Abraham became the father of Isaac. The sons of Isaac: Esau and Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> The sons of Esau: Eliphaz, Reuel, Jeush, Jalam, and Korah.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> The sons of Eliphaz: Teman, Omar, Zephi, Gatam, Kenaz, Timna, and Amalek.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> The sons of Reuel: Nahath, Zerah, Shammah, and Mizzah.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> The sons of Seir: Lotan, Shobal, Zibeon, Anah, Dishon, Ezer, and Dishan.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> The sons of Lotan: Hori and Homam; and Lotan's sister was Timna.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> The sons of Shobal: Alian, Manahath, Ebal, Shephi, and Onam. The sons of Zibeon: Aiah and Anah.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> The sons of Anah: Dishon. The sons of Dishon: Hamran, Eshban, Ithran, and Cheran.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> The sons of Ezer: Bilhan, Zaavan, and Jaakan. The sons of Dishan: Uz and Aran.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> These are the kings who reigned in the land of Edom before any king reigned over the Israelites: Bela son of Beor, whose city was called Dinhabah.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> When Bela died, Jobab son of Zerah of Bozrah succeeded him.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> When Jobab died, Husham of the land of the Temanites succeeded him.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> When Husham died, Hadad son of Bedad, who defeated Midian in the country of Moab, succeeded him; and the name of his city was Avith.</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> When Hadad died, Samlah of Masrekah succeeded him.</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> When Samlah died, Shaul of Rehoboth on the Euphrates succeeded him. </VERS>\r\n\t\t\t<VERS vnumber=\"49\"> When Shaul died, Baal-hanan son of Achbor succeeded him. </VERS>\r\n\t\t\t<VERS vnumber=\"50\"> When Baal-hanan died, Hadad succeeded him; the name of his city was Pai, and his wife's name Mehetabel daughter of Matred, daughter of Me-zahab.</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> And Hadad died. The clans of Edom were: clans Timna, Aliah, Jetheth, </VERS>\r\n\t\t\t<VERS vnumber=\"52\"> Oholibamah, Elah, Pinon,</VERS>\r\n\t\t\t<VERS vnumber=\"53\"> Kenaz, Teman, Mibzar,</VERS>\r\n\t\t\t<VERS vnumber=\"54\"> Magdiel, and Iram; these are the clans of Edom. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> These are the sons of Israel: Reuben, Simeon, Levi, Judah, Issachar, Zebulun,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Dan, Joseph, Benjamin, Naphtali, Gad, and Asher.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The sons of Judah: Er, Onan, and Shelah; these three the Canaanite woman Bath-shua bore to him. Now Er, Judah's firstborn, was wicked in the sight of the LORD, and he put him to death.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> His daughter-in-law Tamar also bore him Perez and Zerah. Judah had five sons in all.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The sons of Perez: Hezron and Hamul.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The sons of Zerah: Zimri, Ethan, Heman, Calcol, and Dara, five in all. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The sons of Carmi: Achar, the troubler of Israel, who transgressed in the matter of the devoted thing;</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> and Ethan's son was Azariah.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The sons of Hezron, who were born to him: Jerahmeel, Ram, and Chelubai.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Ram became the father of Amminadab, and Amminadab became the father of Nahshon, prince of the sons of Judah.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Nahshon became the father of Salma, Salma of Boaz,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Boaz of Obed, Obed of Jesse.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Jesse became the father of Eliab his firstborn, Abinadab the second, Shimea the third,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Nethanel the fourth, Raddai the fifth,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Ozem the sixth, David the seventh;</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> and their sisters were Zeruiah and Abigail. The sons of Zeruiah: Abishai, Joab, and Asahel, three.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Abigail bore Amasa, and the father of Amasa was Jether the Ishmaelite.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Caleb son of Hezron had children by his wife Azubah, and by Jerioth; these were her sons: Jesher, Shobab, and Ardon.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> When Azubah died, Caleb married Ephrath, who bore him Hur.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Hur became the father of Uri, and Uri became the father of Bezalel.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Afterward Hezron went in to the daughter of Machir father of Gilead, whom he married when he was sixty years old; and she bore him Segub;</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> and Segub became the father of Jair, who had twenty-three towns in the land of Gilead.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> But Geshur and Aram took from them Havvoth-jair, Kenath and its villages, sixty towns. All these were descendants of Machir, father of Gilead.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> After the death of Hezron, in Caleb-ephrathah, Abijah wife of Hezron bore him Ashhur, father of Tekoa.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> The sons of Jerahmeel, the firstborn of Hezron: Ram his firstborn, Bunah, Oren, Ozem, and Ahijah.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Jerahmeel also had another wife, whose name was Atarah; she was the mother of Onam.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> The sons of Ram, the firstborn of Jerahmeel: Maaz, Jamin, and Eker.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> The sons of Onam: Shammai and Jada. The sons of Shammai: Nadab and Abishur.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> The name of Abishur's wife was Abihail, and she bore him Ahban and Molid.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> The sons of Nadab: Seled and Appaim; and Seled died childless.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> The son of Appaim: Ishi. The son of Ishi: Sheshan. The son of Sheshan: Ahlai. </VERS>\r\n\t\t\t<VERS vnumber=\"32\"> The sons of Jada, Shammai's brother: Jether and Jonathan; and Jether died childless.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> The sons of Jonathan: Peleth and Zaza. These were the descendants of Jerahmeel.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Now Sheshan had no sons, only daughters; but Sheshan had an Egyptian slave, whose name was Jarha.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> So Sheshan gave his daughter in marriage to his slave Jarha; and she bore him Attai.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Attai became the father of Nathan, and Nathan of Zabad.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Zabad became the father of Ephlal, and Ephlal of Obed.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Obed became the father of Jehu, and Jehu of Azariah.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> Azariah became the father of Helez, and Helez of Eleasah.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> Eleasah became the father of Sismai, and Sismai of Shallum.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> Shallum became the father of Jekamiah, and Jekamiah of Elishama.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> The sons of Caleb brother of Jerahmeel: Mesha his firstborn, who was father of Ziph. The sons of Mareshah father of Hebron. </VERS>\r\n\t\t\t<VERS vnumber=\"43\"> The sons of Hebron: Korah, Tappuah, Rekem, and Shema.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> Shema became father of Raham, father of Jorkeam; and Rekem became the father of Shammai.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> The son of Shammai: Maon; and Maon was the father of Beth-zur.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> Ephah also, Caleb's concubine, bore Haran, Moza, and Gazez; and Haran became the father of Gazez.</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> The sons of Jahdai: Regem, Jotham, Geshan, Pelet, Ephah, and Shaaph.</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> Maacah, Caleb's concubine, bore Sheber and Tirhanah.</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> She also bore Shaaph father of Madmannah, Sheva father of Machbenah and father of Gibea; and the daughter of Caleb was Achsah.</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> These were the descendants of Caleb. The sons of Hur the firstborn of Ephrathah: Shobal father of Kiriath-jearim, </VERS>\r\n\t\t\t<VERS vnumber=\"51\"> Salma father of Bethlehem, and Hareph father of Beth-gader.</VERS>\r\n\t\t\t<VERS vnumber=\"52\"> Shobal father of Kiriath-jearim had other sons: Haroeh, half of the Menuhoth.</VERS>\r\n\t\t\t<VERS vnumber=\"53\"> And the families of Kiriath-jearim: the Ithrites, the Puthites, the Shumathites, and the Mishraites; from these came the Zorathites and the Eshtaolites.</VERS>\r\n\t\t\t<VERS vnumber=\"54\"> The sons of Salma: Bethlehem, the Netophathites, Atroth-beth-joab, and half of the Manahathites, the Zorites.</VERS>\r\n\t\t\t<VERS vnumber=\"55\"> The families also of the scribes that lived at Jabez: the Tirathites, the Shimeathites, and the Sucathites. These are the Kenites who came from Hammath, father of the house of Rechab.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> These are the sons of David who were born to him in Hebron: the firstborn Amnon, by Ahinoam the Jezreelite; the second Daniel, by Abigail the Carmelite;</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> the third Absalom, son of Maacah, daughter of King Talmai of Geshur; the fourth Adonijah, son of Haggith;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> the fifth Shephatiah, by Abital; the sixth Ithream, by his wife Eglah;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> six were born to him in Hebron, where he reigned for seven years and six months. And he reigned thirty-three years in Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> These were born to him in Jerusalem: Shimea, Shobab, Nathan, and Solomon, four by Bath-shua, daughter of Ammiel;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> then Ibhar, Elishama, Eliphelet,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Nogah, Nepheg, Japhia,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Elishama, Eliada, and Eliphelet, nine.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> All these were David's sons, besides the sons of the concubines; and Tamar was their sister.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The descendants of Solomon: Rehoboam, Abijah his son, Asa his son, Jehoshaphat his son,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Joram his son, Ahaziah his son, Joash his son,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Amaziah his son, Azariah his son, Jotham his son,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Ahaz his son, Hezekiah his son, Manasseh his son,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Amon his son, Josiah his son.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The sons of Josiah: Johanan the firstborn, the second Jehoiakim, the third Zedekiah, the fourth Shallum.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The descendants of Jehoiakim: Jeconiah his son, Zedekiah his son;</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> and the sons of Jeconiah, the captive: Shealtiel his son,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Malchiram, Pedaiah, Shenazzar, Jekamiah, Hoshama, and Nedabiah;</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The sons of Pedaiah: Zerubbabel and Shimei; and the sons of Zerubbabel: Meshullam and Hananiah, and Shelomith was their sister;</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> and Hashubah, Ohel, Berechiah, Hasadiah, and Jushab-hesed, five.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> The sons of Hananiah: Pelatiah and Jeshaiah, his son Rephaiah, his son Arnan, his son Obadiah, his son Shecaniah. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The son of Shecaniah: Shemaiah. And the sons of Shemaiah: Hattush, Igal, Bariah, Neariah, and Shaphat, six. </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> The sons of Neariah: Elioenai, Hizkiah, and Azrikam, three.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> The sons of Elioenai: Hodaviah, Eliashib, Pelaiah, Akkub, Johanan, Delaiah, and Anani, seven.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> The sons of Judah: Perez, Hezron, Carmi, Hur, and Shobal.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Reaiah son of Shobal became the father of Jahath, and Jahath became the father of Ahumai and Lahad. These were the families of the Zorathites.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> These were the sons of Etam: Jezreel, Ishma, and Idbash; and the name of their sister was Hazzelelponi, </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> and Penuel was the father of Gedor, and Ezer the father of Hushah. These were the sons of Hur, the firstborn of Ephrathah, the father of Bethlehem.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Ashhur father of Tekoa had two wives, Helah and Naarah;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Naarah bore him Ahuzzam, Hepher, Temeni, and Haahashtari. These were the sons of Naarah. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The sons of Helah: Zereth, Izhar, and Ethnan. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Koz became the father of Anub, Zobebah, and the families of Aharhel son of Harum.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Jabez was honored more than his brothers; and his mother named him Jabez, saying, \"Because I bore him in pain.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Jabez called on the God of Israel, saying, \"Oh that you would bless me and enlarge my border, and that your hand might be with me, and that you would keep me from hurt and harm!\" And God granted what he asked.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Chelub the brother of Shuhah became the father of Mehir, who was the father of Eshton.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Eshton became the father of Beth-rapha, Paseah, and Tehinnah the father of Ir-nahash. These are the men of Recah.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The sons of Kenaz: Othniel and Seraiah; and the sons of Othniel: Hathath and Meonothai. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Meonothai became the father of Ophrah; and Seraiah became the father of Joab father of Ge-harashim, so-called because they were artisans. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The sons of Caleb son of Jephunneh: Iru, Elah, and Naam; and the son of Elah: Kenaz. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The sons of Jehallelel: Ziph, Ziphah, Tiria, and Asarel.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The sons of Ezrah: Jether, Mered, Epher, and Jalon. These are the sons of Bithiah, daughter of Pharaoh, whom Mered married; and she conceived and bore Miriam, Shammai, and Ishbah father of Eshtemoa. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> And his Judean wife bore Jered father of Gedor, Heber father of Soco, and Jekuthiel father of Zanoah.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The sons of the wife of Hodiah, the sister of Naham, were the fathers of Keilah the Garmite and Eshtemoa the Maacathite.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The sons of Shimon: Amnon, Rinnah, Ben-hanan, and Tilon. The sons of Ishi: Zoheth and Ben-zoheth.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> The sons of Shelah son of Judah: Er father of Lecah, Laadah father of Mareshah, and the families of the guild of linen workers at Beth-ashbea;</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> and Jokim, and the men of Cozeba, and Joash, and Saraph, who married into Moab but returned to Lehem (now the records are ancient). </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> These were the potters and inhabitants of Netaim and Gederah; they lived there with the king in his service.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> The sons of Simeon: Nemuel, Jamin, Jarib, Zerah, Shaul; </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Shallum was his son, Mibsam his son, Mishma his son.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> The sons of Mishma: Hammuel his son, Zaccur his son, Shimei his son.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Shimei had sixteen sons and six daughters; but his brothers did not have many children, nor did all their family multiply like the Judeans.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> They lived in Beer-sheba, Moladah, Hazar-shual,</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Bilhah, Ezem, Tolad,</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Bethuel, Hormah, Ziklag,</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Beth-marcaboth, Hazar-susim, Beth-biri, and Shaaraim. These were their towns until David became king.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> And their villages were Etam, Ain, Rimmon, Tochen, and Ashan, five towns,</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> along with all their villages that were around these towns as far as Baal. These were their settlements. And they kept a genealogical record.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Meshobab, Jamlech, Joshah son of Amaziah,</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Joel, Jehu son of Joshibiah son of Seraiah son of Asiel,</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Elioenai, Jaakobah, Jeshohaiah, Asaiah, Adiel, Jesimiel, Benaiah,</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Ziza son of Shiphi son of Allon son of Jedaiah son of Shimri son of Shemaiah--</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> these mentioned by name were leaders in their families, and their clans increased greatly.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> They journeyed to the entrance of Gedor, to the east side of the valley, to seek pasture for their flocks,</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> where they found rich, good pasture, and the land was very broad, quiet, and peaceful; for the former inhabitants there belonged to Ham.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> These, registered by name, came in the days of King Hezekiah of Judah, and attacked their tents and the Meunim who were found there, and exterminated them to this day, and settled in their place, because there was pasture there for their flocks.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> And some of them, five hundred men of the Simeonites, went to Mount Seir, having as their leaders Pelatiah, Neariah, Rephaiah, and Uzziel, sons of Ishi;</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> they destroyed the remnant of the Amalekites that had escaped, and they have lived there to this day.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"5\">\r\n\t\t\t<VERS vnumber=\"1\"> The sons of Reuben the firstborn of Israel. (He was the firstborn, but because he defiled his father's bed his birthright was given to the sons of Joseph son of Israel, so that he is not enrolled in the genealogy according to the birthright;</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> though Judah became prominent among his brothers and a ruler came from him, yet the birthright belonged to Joseph.)</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The sons of Reuben, the firstborn of Israel: Hanoch, Pallu, Hezron, and Carmi.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The sons of Joel: Shemaiah his son, Gog his son, Shimei his son,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Micah his son, Reaiah his son, Baal his son,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Beerah his son, whom King Tilgath-pilneser of Assyria carried away into exile; he was a chieftain of the Reubenites.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> And his kindred by their families, when the genealogy of their generations was reckoned: the chief, Jeiel, and Zechariah,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> and Bela son of Azaz, son of Shema, son of Joel, who lived in Aroer, as far as Nebo and Baal-meon.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> He also lived to the east as far as the beginning of the desert this side of the Euphrates, because their cattle had multiplied in the land of Gilead.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And in the days of Saul they made war on the Hagrites, who fell by their hand; and they lived in their tents throughout all the region east of Gilead.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The sons of Gad lived beside them in the land of Bashan as far as Salecah:</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Joel the chief, Shapham the second, Janai, and Shaphat in Bashan.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And their kindred according to their clans: Michael, Meshullam, Sheba, Jorai, Jacan, Zia, and Eber, seven.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> These were the sons of Abihail son of Huri, son of Jaroah, son of Gilead, son of Michael, son of Jeshishai, son of Jahdo, son of Buz;</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Ahi son of Abdiel, son of Guni, was chief in their clan;</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> and they lived in Gilead, in Bashan and in its towns, and in all the pasture lands of Sharon to their limits.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> All of these were enrolled by genealogies in the days of King Jotham of Judah, and in the days of King Jeroboam of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The Reubenites, the Gadites, and the half-tribe of Manasseh had valiant warriors, who carried shield and sword, and drew the bow, expert in war, forty-four thousand seven hundred sixty, ready for service.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> They made war on the Hagrites, Jetur, Naphish, and Nodab;</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> and when they received help against them, the Hagrites and all who were with them were given into their hands, for they cried to God in the battle, and he granted their entreaty because they trusted in him.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> They captured their livestock: fifty thousand of their camels, two hundred fifty thousand sheep, two thousand donkeys, and one hundred thousand captives.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Many fell slain, because the war was of God. And they lived in their territory until the exile.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> The members of the half-tribe of Manasseh lived in the land; they were very numerous from Bashan to Baal-hermon, Senir, and Mount Hermon.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> These were the heads of their clans: Epher, Ishi, Eliel, Azriel, Jeremiah, Hodaviah, and Jahdiel, mighty warriors, famous men, heads of their clans. </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> But they transgressed against the God of their ancestors, and prostituted themselves to the gods of the peoples of the land, whom God had destroyed before them.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> So the God of Israel stirred up the spirit of King Pul of Assyria, the spirit of King Tilgath-pilneser of Assyria, and he carried them away, namely, the Reubenites, the Gadites, and the half-tribe of Manasseh, and brought them to Halah, Habor, Hara, and the river Gozan, to this day.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"6\">\r\n\t\t\t<VERS vnumber=\"1\"> The sons of Levi: Gershom, Kohath, and Merari. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The sons of Kohath: Amram, Izhar, Hebron, and Uzziel.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The children of Amram: Aaron, Moses, and Miriam. The sons of Aaron: Nadab, Abihu, Eleazar, and Ithamar.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Eleazar became the father of Phinehas, Phinehas of Abishua,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Abishua of Bukki, Bukki of Uzzi,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Uzzi of Zerahiah, Zerahiah of Meraioth,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Meraioth of Amariah, Amariah of Ahitub,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Ahitub of Zadok, Zadok of Ahimaaz,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Ahimaaz of Azariah, Azariah of Johanan,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> and Johanan of Azariah (it was he who served as priest in the house that Solomon built in Jerusalem).</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Azariah became the father of Amariah, Amariah of Ahitub,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Ahitub of Zadok, Zadok of Shallum,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Shallum of Hilkiah, Hilkiah of Azariah,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Azariah of Seraiah, Seraiah of Jehozadak;</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> and Jehozadak went into exile when the LORD sent Judah and Jerusalem into exile by the hand of Nebuchadnezzar.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The sons of Levi: Gershom, Kohath, and Merari.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> These are the names of the sons of Gershom: Libni and Shimei.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The sons of Kohath: Amram, Izhar, Hebron, and Uzziel.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The sons of Merari: Mahli and Mushi. These are the clans of the Levites according to their ancestry.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Of Gershom: Libni his son, Jahath his son, Zimmah his son,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Joah his son, Iddo his son, Zerah his son, Jeatherai his son.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The sons of Kohath: Amminadab his son, Korah his son, Assir his son,</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Elkanah his son, Ebiasaph his son, Assir his son,</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Tahath his son, Uriel his son, Uzziah his son, and Shaul his son.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> The sons of Elkanah: Amasai and Ahimoth,</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Elkanah his son, Zophai his son, Nahath his son,</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Eliab his son, Jeroham his son, Elkanah his son.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> The sons of Samuel: Joel his firstborn, the second Abijah. </VERS>\r\n\t\t\t<VERS vnumber=\"29\"> The sons of Merari: Mahli, Libni his son, Shimei his son, Uzzah his son,</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Shimea his son, Haggiah his son, and Asaiah his son.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> These are the men whom David put in charge of the service of song in the house of the LORD, after the ark came to rest there.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> They ministered with song before the tabernacle of the tent of meeting, until Solomon had built the house of the LORD in Jerusalem; and they performed their service in due order.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> These are the men who served; and their sons were: Of the Kohathites: Heman, the singer, son of Joel, son of Samuel,</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> son of Elkanah, son of Jeroham, son of Eliel, son of Toah,</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> son of Zuph, son of Elkanah, son of Mahath, son of Amasai,</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> son of Elkanah, son of Joel, son of Azariah, son of Zephaniah,</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> son of Tahath, son of Assir, son of Ebiasaph, son of Korah,</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> son of Izhar, son of Kohath, son of Levi, son of Israel;</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> and his brother Asaph, who stood on his right, namely, Asaph son of Berechiah, son of Shimea,</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> son of Michael, son of Baaseiah, son of Malchijah,</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> son of Ethni, son of Zerah, son of Adaiah,</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> son of Ethan, son of Zimmah, son of Shimei,</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> son of Jahath, son of Gershom, son of Levi.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> On the left were their kindred the sons of Merari: Ethan son of Kishi, son of Abdi, son of Malluch,</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> son of Hashabiah, son of Amaziah, son of Hilkiah,</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> son of Amzi, son of Bani, son of Shemer,</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> son of Mahli, son of Mushi, son of Merari, son of Levi;</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> and their kindred the Levites were appointed for all the service of the tabernacle of the house of God.</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> But Aaron and his sons made offerings on the altar of burnt offering and on the altar of incense, doing all the work of the most holy place, to make atonement for Israel, according to all that Moses the servant of God had commanded.</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> These are the sons of Aaron: Eleazar his son, Phinehas his son, Abishua his son,</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> Bukki his son, Uzzi his son, Zerahiah his son,</VERS>\r\n\t\t\t<VERS vnumber=\"52\"> Meraioth his son, Amariah his son, Ahitub his son,</VERS>\r\n\t\t\t<VERS vnumber=\"53\"> Zadok his son, Ahimaaz his son.</VERS>\r\n\t\t\t<VERS vnumber=\"54\"> These are their dwelling places according to their settlements within their borders: to the sons of Aaron of the families of Kohathites-- for the lot fell to them first--</VERS>\r\n\t\t\t<VERS vnumber=\"55\"> to them they gave Hebron in the land of Judah and its surrounding pasture lands,</VERS>\r\n\t\t\t<VERS vnumber=\"56\"> but the fields of the city and its villages they gave to Caleb son of Jephunneh.</VERS>\r\n\t\t\t<VERS vnumber=\"57\"> To the sons of Aaron they gave the cities of refuge: Hebron, Libnah with its pasture lands, Jattir, Eshtemoa with its pasture lands,</VERS>\r\n\t\t\t<VERS vnumber=\"58\"> Hilen with its pasture lands, Debir with its pasture lands, </VERS>\r\n\t\t\t<VERS vnumber=\"59\"> Ashan with its pasture lands, and Beth-shemesh with its pasture lands.</VERS>\r\n\t\t\t<VERS vnumber=\"60\"> From the tribe of Benjamin, Geba with its pasture lands, Alemeth with its pasture lands, and Anathoth with its pasture lands. All their towns throughout their families were thirteen.</VERS>\r\n\t\t\t<VERS vnumber=\"61\"> To the rest of the Kohathites were given by lot out of the family of the tribe, out of the half-tribe, the half of Manasseh, ten towns.</VERS>\r\n\t\t\t<VERS vnumber=\"62\"> To the Gershomites according to their families were allotted thirteen towns out of the tribes of Issachar, Asher, Naphtali, and Manasseh in Bashan.</VERS>\r\n\t\t\t<VERS vnumber=\"63\"> To the Merarites according to their families were allotted twelve towns out of the tribes of Reuben, Gad, and Zebulun.</VERS>\r\n\t\t\t<VERS vnumber=\"64\"> So the people of Israel gave the Levites the towns with their pasture lands.</VERS>\r\n\t\t\t<VERS vnumber=\"65\"> They also gave them by lot out of the tribes of Judah, Simeon, and Benjamin these towns that are mentioned by name.</VERS>\r\n\t\t\t<VERS vnumber=\"66\"> And some of the families of the sons of Kohath had towns of their territory out of the tribe of Ephraim.</VERS>\r\n\t\t\t<VERS vnumber=\"67\"> They were given the cities of refuge: Shechem with its pasture lands in the hill country of Ephraim, Gezer with its pasture lands,</VERS>\r\n\t\t\t<VERS vnumber=\"68\"> Jokmeam with its pasture lands, Beth-horon with its pasture lands,</VERS>\r\n\t\t\t<VERS vnumber=\"69\"> Aijalon with its pasture lands, Gath-rimmon with its pasture lands;</VERS>\r\n\t\t\t<VERS vnumber=\"70\"> and out of the half-tribe of Manasseh, Aner with its pasture lands, and Bileam with its pasture lands, for the rest of the families of the Kohathites.</VERS>\r\n\t\t\t<VERS vnumber=\"71\"> To the Gershomites: out of the half-tribe of Manasseh: Golan in Bashan with its pasture lands and Ashtaroth with its pasture lands;</VERS>\r\n\t\t\t<VERS vnumber=\"72\"> and out of the tribe of Issachar: Kedesh with its pasture lands, Daberath with its pasture lands, </VERS>\r\n\t\t\t<VERS vnumber=\"73\"> Ramoth with its pasture lands, and Anem with its pasture lands;</VERS>\r\n\t\t\t<VERS vnumber=\"74\"> out of the tribe of Asher: Mashal with its pasture lands, Abdon with its pasture lands,</VERS>\r\n\t\t\t<VERS vnumber=\"75\"> Hukok with its pasture lands, and Rehob with its pasture lands;</VERS>\r\n\t\t\t<VERS vnumber=\"76\"> and out of the tribe of Naphtali: Kedesh in Galilee with its pasture lands, Hammon with its pasture lands, and Kiriathaim with its pasture lands.</VERS>\r\n\t\t\t<VERS vnumber=\"77\"> To the rest of the Merarites out of the tribe of Zebulun: Rimmono with its pasture lands, Tabor with its pasture lands,</VERS>\r\n\t\t\t<VERS vnumber=\"78\"> and across the Jordan from Jericho, on the east side of the Jordan, out of the tribe of Reuben: Bezer in the steppe with its pasture lands, Jahzah with its pasture lands,</VERS>\r\n\t\t\t<VERS vnumber=\"79\"> Kedemoth with its pasture lands, and Mephaath with its pasture lands;</VERS>\r\n\t\t\t<VERS vnumber=\"80\"> and out of the tribe of Gad: Ramoth in Gilead with its pasture lands, Mahanaim with its pasture lands,</VERS>\r\n\t\t\t<VERS vnumber=\"81\"> Heshbon with its pasture lands, and Jazer with its pasture lands.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"7\">\r\n\t\t\t<VERS vnumber=\"1\"> The sons of Issachar: Tola, Puah, Jashub, and Shimron, four. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The sons of Tola: Uzzi, Rephaiah, Jeriel, Jahmai, Ibsam, and Shemuel, heads of their ancestral houses, namely of Tola, mighty warriors of their generations, their number in the days of David being twenty-two thousand six hundred.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The son of Uzzi: Izrahiah. And the sons of Izrahiah: Michael, Obadiah, Joel, and Isshiah, five, all of them chiefs;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> and along with them, by their generations, according to their ancestral houses, were units of the fighting force, thirty-six thousand, for they had many wives and sons.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Their kindred belonging to all the families of Issachar were in all eighty-seven thousand mighty warriors, enrolled by genealogy.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The sons of Benjamin: Bela, Becher, and Jediael, three.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The sons of Bela: Ezbon, Uzzi, Uzziel, Jerimoth, and Iri, five, heads of ancestral houses, mighty warriors; and their enrollment by genealogies was twenty-two thousand thirty-four.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The sons of Becher: Zemirah, Joash, Eliezer, Elioenai, Omri, Jeremoth, Abijah, Anathoth, and Alemeth. All these were the sons of Becher;</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> and their enrollment by genealogies, according to their generations, as heads of their ancestral houses, mighty warriors, was twenty thousand two hundred.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The sons of Jediael: Bilhan. And the sons of Bilhan: Jeush, Benjamin, Ehud, Chenaanah, Zethan, Tarshish, and Ahishahar.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> All these were the sons of Jediael according to the heads of their ancestral houses, mighty warriors, seventeen thousand two hundred, ready for service in war.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> And Shuppim and Huppim were the sons of Ir, Hushim the son of Aher. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The descendants of Naphtali: Jahziel, Guni, Jezer, and Shallum, the descendants of Bilhah.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The sons of Manasseh: Asriel, whom his Aramean concubine bore; she bore Machir the father of Gilead.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And Machir took a wife for Huppim and for Shuppim. The name of his sister was Maacah. And the name of the second was Zelophehad; and Zelophehad had daughters.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Maacah the wife of Machir bore a son, and she named him Peresh; the name of his brother was Sheresh; and his sons were Ulam and Rekem.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The son of Ulam: Bedan. These were the sons of Gilead son of Machir, son of Manasseh. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> And his sister Hammolecheth bore Ishhod, Abiezer, and Mahlah.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The sons of Shemida were Ahian, Shechem, Likhi, and Aniam.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The sons of Ephraim: Shuthelah, and Bered his son, Tahath his son, Eleadah his son, Tahath his son,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Zabad his son, Shuthelah his son, and Ezer and Elead. Now the people of Gath, who were born in the land, killed them, because they came down to raid their cattle.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> And their father Ephraim mourned many days, and his brothers came to comfort him.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Ephraim went in to his wife, and she conceived and bore a son; and he named him Beriah, because disaster had befallen his house. </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> His daughter was Sheerah, who built both Lower and Upper Beth-horon, and Uzzen-sheerah.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Rephah was his son, Resheph his son, Telah his son, Tahan his son,</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Ladan his son, Ammihud his son, Elishama his son,</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Nun his son, Joshua his son.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Their possessions and settlements were Bethel and its towns, and eastward Naaran, and westward Gezer and its towns, Shechem and its towns, as far as Ayyah and its towns;</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> also along the borders of the Manassites, Beth-shean and its towns, Taanach and its towns, Megiddo and its towns, Dor and its towns. In these lived the sons of Joseph son of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> The sons of Asher: Imnah, Ishvah, Ishvi, Beriah, and their sister Serah.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> The sons of Beriah: Heber and Malchiel, who was the father of Birzaith.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Heber became the father of Japhlet, Shomer, Hotham, and their sister Shua.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> The sons of Japhlet: Pasach, Bimhal, and Ashvath. These are the sons of Japhlet.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> The sons of Shemer: Ahi, Rohgah, Hubbah, and Aram.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> The sons of Helem his brother: Zophah, Imna, Shelesh, and Amal. </VERS>\r\n\t\t\t<VERS vnumber=\"36\"> The sons of Zophah: Suah, Harnepher, Shual, Beri, Imrah,</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Bezer, Hod, Shamma, Shilshah, Ithran, and Beera.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> The sons of Jether: Jephunneh, Pispa, and Ara.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> The sons of Ulla: Arah, Hanniel, and Rizia.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> All of these were men of Asher, heads of ancestral houses, select mighty warriors, chief of the princes. Their number enrolled by genealogies, for service in war, was twenty-six thousand men.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"8\">\r\n\t\t\t<VERS vnumber=\"1\"> Benjamin became the father of Bela his firstborn, Ashbel the second, Aharah the third,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Nohah the fourth, and Rapha the fifth.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And Bela had sons: Addar, Gera, Abihud, </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Abishua, Naaman, Ahoah,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Gera, Shephuphan, and Huram.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> These are the sons of Ehud (they were heads of ancestral houses of the inhabitants of Geba, and they were carried into exile to Manahath):</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Naaman, Ahijah, and Gera, that is, Heglam, who became the father of Uzza and Ahihud. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And Shaharaim had sons in the country of Moab after he had sent away his wives Hushim and Baara.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> He had sons by his wife Hodesh: Jobab, Zibia, Mesha, Malcam,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Jeuz, Sachia, and Mirmah. These were his sons, heads of ancestral houses.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> He also had sons by Hushim: Abitub and Elpaal.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The sons of Elpaal: Eber, Misham, and Shemed, who built Ono and Lod with its towns,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> and Beriah and Shema (they were heads of ancestral houses of the inhabitants of Aijalon, who put to flight the inhabitants of Gath);</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> and Ahio, Shashak, and Jeremoth.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Zebadiah, Arad, Eder,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Michael, Ishpah, and Joha were sons of Beriah.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Zebadiah, Meshullam, Hizki, Heber,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Ishmerai, Izliah, and Jobab were the sons of Elpaal.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Jakim, Zichri, Zabdi,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Elienai, Zillethai, Eliel,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Adaiah, Beraiah, and Shimrath were the sons of Shimei.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Ishpan, Eber, Eliel,</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Abdon, Zichri, Hanan,</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Hananiah, Elam, Anthothijah,</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Iphdeiah, and Penuel were the sons of Shashak.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Shamsherai, Shehariah, Athaliah,</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Jaareshiah, Elijah, and Zichri were the sons of Jeroham.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> These were the heads of ancestral houses, according to their generations, chiefs. These lived in Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Jeiel the father of Gibeon lived in Gibeon, and the name of his wife was Maacah. </VERS>\r\n\t\t\t<VERS vnumber=\"30\"> His firstborn son: Abdon, then Zur, Kish, Baal, Nadab, </VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Gedor, Ahio, Zecher,</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> and Mikloth, who became the father of Shimeah. Now these also lived opposite their kindred in Jerusalem, with their kindred.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Ner became the father of Kish, Kish of Saul, Saul of Jonathan, Malchishua, Abinadab, and Esh-baal; </VERS>\r\n\t\t\t<VERS vnumber=\"34\"> and the son of Jonathan was Merib-baal; and Merib-baal became the father of Micah.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> The sons of Micah: Pithon, Melech, Tarea, and Ahaz.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Ahaz became the father of Jehoaddah; and Jehoaddah became the father of Alemeth, Azmaveth, and Zimri; Zimri became the father of Moza.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Moza became the father of Binea; Raphah was his son, Eleasah his son, Azel his son.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Azel had six sons, and these are their names: Azrikam, Bocheru, Ishmael, Sheariah, Obadiah, and Hanan; all these were the sons of Azel.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> The sons of his brother Eshek: Ulam his firstborn, Jeush the second, and Eliphelet the third.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> The sons of Ulam were mighty warriors, archers, having many children and grandchildren, one hundred fifty. All these were Benjaminites.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"9\">\r\n\t\t\t<VERS vnumber=\"1\"> So all Israel was enrolled by genealogies; and these are written in the Book of the Kings of Israel. And Judah was taken into exile in Babylon because of their unfaithfulness.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Now the first to live again in their possessions in their towns were Israelites, priests, Levites, and temple servants.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And some of the people of Judah, Benjamin, Ephraim, and Manasseh lived in Jerusalem:</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Uthai son of Ammihud, son of Omri, son of Imri, son of Bani, from the sons of Perez son of Judah.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> And of the Shilonites: Asaiah the firstborn, and his sons.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Of the sons of Zerah: Jeuel and their kin, six hundred ninety.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Of the Benjaminites: Sallu son of Meshullam, son of Hodaviah, son of Hassenuah,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Ibneiah son of Jeroham, Elah son of Uzzi, son of Michri, and Meshullam son of Shephatiah, son of Reuel, son of Ibnijah;</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> and their kindred according to their generations, nine hundred fifty-six. All these were heads of families according to their ancestral houses.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Of the priests: Jedaiah, Jehoiarib, Jachin,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> and Azariah son of Hilkiah, son of Meshullam, son of Zadok, son of Meraioth, son of Ahitub, the chief officer of the house of God;</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> and Adaiah son of Jeroham, son of Pashhur, son of Malchijah, and Maasai son of Adiel, son of Jahzerah, son of Meshullam, son of Meshillemith, son of Immer;</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> besides their kindred, heads of their ancestral houses, one thousand seven hundred sixty, qualified for the work of the service of the house of God.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Of the Levites: Shemaiah son of Hasshub, son of Azrikam, son of Hashabiah, of the sons of Merari;</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> and Bakbakkar, Heresh, Galal, and Mattaniah son of Mica, son of Zichri, son of Asaph;</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> and Obadiah son of Shemaiah, son of Galal, son of Jeduthun, and Berechiah son of Asa, son of Elkanah, who lived in the villages of the Netophathites.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The gatekeepers were: Shallum, Akkub, Talmon, Ahiman; and their kindred Shallum was the chief,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> stationed previously in the king's gate on the east side. These were the gatekeepers of the camp of the Levites.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Shallum son of Kore, son of Ebiasaph, son of Korah, and his kindred of his ancestral house, the Korahites, were in charge of the work of the service, guardians of the thresholds of the tent, as their ancestors had been in charge of the camp of the LORD, guardians of the entrance.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> And Phinehas son of Eleazar was chief over them in former times; the LORD was with him.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Zechariah son of Meshelemiah was gatekeeper at the entrance of the tent of meeting.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> All these, who were chosen as gatekeepers at the thresholds, were two hundred twelve. They were enrolled by genealogies in their villages. David and the seer Samuel established them in their office of trust.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> So they and their descendants were in charge of the gates of the house of the LORD, that is, the house of the tent, as guards.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> The gatekeepers were on the four sides, east, west, north, and south;</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> and their kindred who were in their villages were obliged to come in every seven days, in turn, to be with them;</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> for the four chief gatekeepers, who were Levites, were in charge of the chambers and the treasures of the house of God.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> And they would spend the night near the house of God; for on them lay the duty of watching, and they had charge of opening it every morning.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Some of them had charge of the utensils of service, for they were required to count them when they were brought in and taken out.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Others of them were appointed over the furniture, and over all the holy utensils, also over the choice flour, the wine, the oil, the incense, and the spices.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Others, of the sons of the priests, prepared the mixing of the spices,</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> and Mattithiah, one of the Levites, the firstborn of Shallum the Korahite, was in charge of making the flat cakes.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Also some of their kindred of the Kohathites had charge of the rows of bread, to prepare them for each sabbath.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Now these are the singers, the heads of ancestral houses of the Levites, living in the chambers of the temple free from other service, for they were on duty day and night.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> These were heads of ancestral houses of the Levites, according to their generations; these leaders lived in Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> In Gibeon lived the father of Gibeon, Jeiel, and the name of his wife was Maacah.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> His firstborn son was Abdon, then Zur, Kish, Baal, Ner, Nadab,</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Gedor, Ahio, Zechariah, and Mikloth;</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> and Mikloth became the father of Shimeam; and these also lived opposite their kindred in Jerusalem, with their kindred.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> Ner became the father of Kish, Kish of Saul, Saul of Jonathan, Malchishua, Abinadab, and Esh-baal;</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> and the son of Jonathan was Merib-baal; and Merib-baal became the father of Micah.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> The sons of Micah: Pithon, Melech, Tahrea, and Ahaz; </VERS>\r\n\t\t\t<VERS vnumber=\"42\"> and Ahaz became the father of Jarah, and Jarah of Alemeth, Azmaveth, and Zimri; and Zimri became the father of Moza.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> Moza became the father of Binea; and Rephaiah was his son, Eleasah his son, Azel his son.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> Azel had six sons, and these are their names: Azrikam, Bocheru, Ishmael, Sheariah, Obadiah, and Hanan; these were the sons of Azel.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"10\">\r\n\t\t\t<VERS vnumber=\"1\"> Now the Philistines fought against Israel; and the men of Israel fled before the Philistines, and fell slain on Mount Gilboa.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The Philistines overtook Saul and his sons; and the Philistines killed Jonathan and Abinadab and Malchishua, sons of Saul.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The battle pressed hard on Saul; and the archers found him, and he was wounded by the archers.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then Saul said to his armor-bearer, \"Draw your sword, and thrust me through with it, so that these uncircumcised may not come and make sport of me.\" But his armor-bearer was unwilling, for he was terrified. So Saul took his own sword and fell on it.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> When his armor-bearer saw that Saul was dead, he also fell on his sword and died.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Thus Saul died; he and his three sons and all his house died together.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> When all the men of Israel who were in the valley saw that the army had fled and that Saul and his sons were dead, they abandoned their towns and fled; and the Philistines came and occupied them. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The next day when the Philistines came to strip the dead, they found Saul and his sons fallen on Mount Gilboa.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> They stripped him and took his head and his armor, and sent messengers throughout the land of the Philistines to carry the good news to their idols and to the people.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> They put his armor in the temple of their gods, and fastened his head in the temple of Dagon.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But when all Jabesh-gilead heard everything that the Philistines had done to Saul,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> all the valiant warriors got up and took away the body of Saul and the bodies of his sons, and brought them to Jabesh. Then they buried their bones under the oak in Jabesh, and fasted seven days.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> So Saul died for his unfaithfulness; he was unfaithful to the LORD in that he did not keep the command of the LORD; moreover, he had consulted a medium, seeking guidance,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> and did not seek guidance from the LORD. Therefore the LORD put him to death and turned the kingdom over to David son of Jesse.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"11\">\r\n\t\t\t<VERS vnumber=\"1\"> Then all Israel gathered together to David at Hebron and said, \"See, we are your bone and flesh.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> For some time now, even while Saul was king, it was you who commanded the army of Israel. The LORD your God said to you: It is you who shall be shepherd of my people Israel, you who shall be ruler over my people Israel.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> So all the elders of Israel came to the king at Hebron, and David made a covenant with them at Hebron before the LORD. And they anointed David king over Israel, according to the word of the LORD by Samuel.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> David and all Israel marched to Jerusalem, that is Jebus, where the Jebusites were, the inhabitants of the land.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The inhabitants of Jebus said to David, \"You will not come in here.\" Nevertheless David took the stronghold of Zion, now the city of David.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> David had said, \"Whoever attacks the Jebusites first shall be chief and commander.\" And Joab son of Zeruiah went up first, so he became chief.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> David resided in the stronghold; therefore it was called the city of David.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> He built the city all around, from the Millo in complete circuit; and Joab repaired the rest of the city.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> And David became greater and greater, for the LORD of hosts was with him.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Now these are the chiefs of David's warriors, who gave him strong support in his kingdom, together with all Israel, to make him king, according to the word of the LORD concerning Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> This is an account of David's mighty warriors: Jashobeam, son of Hachmoni, was chief of the Three; he wielded his spear against three hundred whom he killed at one time. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> And next to him among the three warriors was Eleazar son of Dodo, the Ahohite.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> He was with David at Pas-dammim when the Philistines were gathered there for battle. There was a plot of ground full of barley. Now the people had fled from the Philistines,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> but he and David took their stand in the middle of the plot, defended it, and killed the Philistines; and the LORD saved them by a great victory.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Three of the thirty chiefs went down to the rock to David at the cave of Adullam, while the army of Philistines was encamped in the valley of Rephaim.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> David was then in the stronghold; and the garrison of the Philistines was then at Bethlehem.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> David said longingly, \"O that someone would give me water to drink from the well of Bethlehem that is by the gate!\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then the Three broke through the camp of the Philistines, and drew water from the well of Bethlehem that was by the gate, and they brought it to David. But David would not drink of it; he poured it out to the LORD,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> and said, \"My God forbid that I should do this. Can I drink the blood of these men? For at the risk of their lives they brought it.\" Therefore he would not drink it. The three warriors did these things.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Now Abishai, the brother of Joab, was chief of the Thirty. With his spear he fought against three hundred and killed them, and won a name beside the Three. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> He was the most renowned of the Thirty, and became their commander; but he did not attain to the Three. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Benaiah son of Jehoiada was a valiant man of Kabzeel, a doer of great deeds; he struck down two sons of Ariel of Moab. He also went down and killed a lion in a pit on a day when snow had fallen. </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> And he killed an Egyptian, a man of great stature, five cubits tall. The Egyptian had in his hand a spear like a weaver's beam; but Benaiah went against him with a staff, snatched the spear out of the Egyptian's hand, and killed him with his own spear.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Such were the things Benaiah son of Jehoiada did, and he won a name beside the three warriors.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> He was renowned among the Thirty, but he did not attain to the Three. And David put him in charge of his bodyguard.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> The warriors of the armies were Asahel brother of Joab, Elhanan son of Dodo of Bethlehem,</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Shammoth of Harod, Helez the Pelonite, </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Ira son of Ikkesh of Tekoa, Abiezer of Anathoth,</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Sibbecai the Hushathite, Ilai the Ahohite,</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Maharai of Netophah, Heled son of Baanah of Netophah,</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Ithai son of Ribai of Gibeah of the Benjaminites, Benaiah of Pirathon,</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Hurai of the wadis of Gaash, Abiel the Arbathite,</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Azmaveth of Baharum, Eliahba of Shaalbon,</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Hashem the Gizonite, Jonathan son of Shagee the Hararite, </VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Ahiam son of Sachar the Hararite, Eliphal son of Ur,</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Hepher the Mecherathite, Ahijah the Pelonite,</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Hezro of Carmel, Naarai son of Ezbai,</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Joel the brother of Nathan, Mibhar son of Hagri,</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> Zelek the Ammonite, Naharai of Beeroth, the armor-bearer of Joab son of Zeruiah,</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> Ira the Ithrite, Gareb the Ithrite,</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> Uriah the Hittite, Zabad son of Ahlai,</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> Adina son of Shiza the Reubenite, a leader of the Reubenites, and thirty with him,</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> Hanan son of Maacah, and Joshaphat the Mithnite,</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> Uzzia the Ashterathite, Shama and Jeiel sons of Hotham the Aroerite,</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> Jediael son of Shimri, and his brother Joha the Tizite,</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> Eliel the Mahavite, and Jeribai and Joshaviah sons of Elnaam, and Ithmah the Moabite,</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> Eliel, and Obed, and Jaasiel the Mezobaite.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"12\">\r\n\t\t\t<VERS vnumber=\"1\"> The following are those who came to David at Ziklag, while he could not move about freely because of Saul son of Kish; they were among the mighty warriors who helped him in war.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> They were archers, and could shoot arrows and sling stones with either the right hand or the left; they were Benjaminites, Saul's kindred.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The chief was Ahiezer, then Joash, both sons of Shemaah of Gibeah; also Jeziel and Pelet sons of Azmaveth; Beracah, Jehu of Anathoth,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Ishmaiah of Gibeon, a warrior among the Thirty and a leader over the Thirty; Jeremiah, Jahaziel, Johanan, Jozabad of Gederah, </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Eluzai, Jerimoth, Bealiah, Shemariah, Shephatiah the Haruphite; </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Elkanah, Isshiah, Azarel, Joezer, and Jashobeam, the Korahites;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> and Joelah and Zebadiah, sons of Jeroham of Gedor.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> From the Gadites there went over to David at the stronghold in the wilderness mighty and experienced warriors, expert with shield and spear, whose faces were like the faces of lions, and who were swift as gazelles on the mountains:</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Ezer the chief, Obadiah second, Eliab third,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Mishmannah fourth, Jeremiah fifth,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Attai sixth, Eliel seventh,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Johanan eighth, Elzabad ninth,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Jeremiah tenth, Machbannai eleventh.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> These Gadites were officers of the army, the least equal to a hundred and the greatest to a thousand.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> These are the men who crossed the Jordan in the first month, when it was overflowing all its banks, and put to flight all those in the valleys, to the east and to the west.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Some Benjaminites and Judahites came to the stronghold to David.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> David went out to meet them and said to them, \"If you have come to me in friendship, to help me, then my heart will be knit to you; but if you have come to betray me to my adversaries, though my hands have done no wrong, then may the God of our ancestors see and give judgment.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then the spirit came upon Amasai, chief of the Thirty, and he said, \"We are yours, O David; and with you, O son of Jesse! Peace, peace to you, and peace to the one who helps you! For your God is the one who helps you.\" Then David received them, and made them officers of his troops.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Some of the Manassites deserted to David when he came with the Philistines for the battle against Saul. (Yet he did not help them, for the rulers of the Philistines took counsel and sent him away, saying, \"He will desert to his master Saul at the cost of our heads.\")</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> As he went to Ziklag these Manassites deserted to him: Adnah, Jozabad, Jediael, Michael, Jozabad, Elihu, and Zillethai, chiefs of the thousands in Manasseh.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> They helped David against the band of raiders, for they were all warriors and commanders in the army.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Indeed from day to day people kept coming to David to help him, until there was a great army, like an army of God.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> These are the numbers of the divisions of the armed troops who came to David in Hebron to turn the kingdom of Saul over to him, according to the word of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> The people of Judah bearing shield and spear numbered six thousand eight hundred armed troops.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Of the Simeonites, mighty warriors, seven thousand one hundred.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Of the Levites four thousand six hundred.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Jehoiada, leader of the house of Aaron, and with him three thousand seven hundred.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Zadok, a young warrior, and twenty-two commanders from his own ancestral house.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Of the Benjaminites, the kindred of Saul, three thousand, of whom the majority had continued to keep their allegiance to the house of Saul.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Of the Ephraimites, twenty thousand eight hundred, mighty warriors, notables in their ancestral houses.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Of the half-tribe of Manasseh, eighteen thousand, who were expressly named to come and make David king.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Of Issachar, those who had understanding of the times, to know what Israel ought to do, two hundred chiefs, and all their kindred under their command.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Of Zebulun, fifty thousand seasoned troops, equipped for battle with all the weapons of war, to help David with singleness of purpose. </VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Of Naphtali, a thousand commanders, with whom there were thirty-seven thousand armed with shield and spear.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Of the Danites, twenty-eight thousand six hundred equipped for battle.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Of Asher, forty thousand seasoned troops ready for battle.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Of the Reubenites and Gadites and the half-tribe of Manasseh from beyond the Jordan, one hundred twenty thousand armed with all the weapons of war.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> All these, warriors arrayed in battle order, came to Hebron with full intent to make David king over all Israel; likewise all the rest of Israel were of a single mind to make David king.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> They were there with David for three days, eating and drinking, for their kindred had provided for them.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> And also their neighbors, from as far away as Issachar and Zebulun and Naphtali, came bringing food on donkeys, camels, mules, and oxen-- abundant provisions of meal, cakes of figs, clusters of raisins, wine, oil, oxen, and sheep, for there was joy in Israel.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"13\">\r\n\t\t\t<VERS vnumber=\"1\"> David consulted with the commanders of the thousands and of the hundreds, with every leader.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> David said to the whole assembly of Israel, \"If it seems good to you, and if it is the will of the LORD our God, let us send abroad to our kindred who remain in all the land of Israel, including the priests and Levites in the cities that have pasture lands, that they may come together to us.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then let us bring again the ark of our God to us; for we did not turn to it in the days of Saul.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The whole assembly agreed to do so, for the thing pleased all the people.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> So David assembled all Israel from the Shihor of Egypt to Lebo-hamath, to bring the ark of God from Kiriath-jearim.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And David and all Israel went up to Baalah, that is, to Kiriath-jearim, which belongs to Judah, to bring up from there the ark of God, the LORD, who is enthroned on the cherubim, which is called by his name. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> They carried the ark of God on a new cart, from the house of Abinadab, and Uzzah and Ahio were driving the cart. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> David and all Israel were dancing before God with all their might, with song and lyres and harps and tambourines and cymbals and trumpets.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> When they came to the threshing floor of Chidon, Uzzah put out his hand to hold the ark, for the oxen shook it.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The anger of the LORD was kindled against Uzzah; he struck him down because he put out his hand to the ark; and he died there before God.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> David was angry because the LORD had burst out against Uzzah; so that place is called Perez-uzzah to this day. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> David was afraid of God that day; he said, \"How can I bring the ark of God into my care?\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> So David did not take the ark into his care into the city of David; he took it instead to the house of Obed-edom the Gittite.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The ark of God remained with the household of Obed-edom in his house three months, and the LORD blessed the household of Obed-edom and all that he had.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"14\">\r\n\t\t\t<VERS vnumber=\"1\"> King Hiram of Tyre sent messengers to David, along with cedar logs, and masons and carpenters to build a house for him.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> David then perceived that the LORD had established him as king over Israel, and that his kingdom was highly exalted for the sake of his people Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> David took more wives in Jerusalem, and David became the father of more sons and daughters.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> These are the names of the children whom he had in Jerusalem: Shammua, Shobab, and Nathan; Solomon,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Ibhar, Elishua, and Elpelet;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Nogah, Nepheg, and Japhia;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Elishama, Beeliada, and Eliphelet.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> When the Philistines heard that David had been anointed king over all Israel, all the Philistines went up in search of David; and David heard of it and went out against them.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Now the Philistines had come and made a raid in the valley of Rephaim.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> David inquired of God, \"Shall I go up against the Philistines? Will you give them into my hand?\" The LORD said to him, \"Go up, and I will give them into your hand.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> So he went up to Baal-perazim, and David defeated them there. David said, \"God has burst out against my enemies by my hand, like a bursting flood.\" Therefore that place is called Baal-perazim. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> They abandoned their gods there, and at David's command they were burned.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Once again the Philistines made a raid in the valley.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> When David again inquired of God, God said to him, \"You shall not go up after them; go around and come on them opposite the balsam trees.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> When you hear the sound of marching in the tops of the balsam trees, then go out to battle; for God has gone out before you to strike down the army of the Philistines.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> David did as God had commanded him, and they struck down the Philistine army from Gibeon to Gezer.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The fame of David went out into all lands, and the LORD brought the fear of him on all nations.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"15\">\r\n\t\t\t<VERS vnumber=\"1\"> David built houses for himself in the city of David, and he prepared a place for the ark of God and pitched a tent for it. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Then David commanded that no one but the Levites were to carry the ark of God, for the LORD had chosen them to carry the ark of the LORD and to minister to him forever.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> David assembled all Israel in Jerusalem to bring up the ark of the LORD to its place, which he had prepared for it.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then David gathered together the descendants of Aaron and the Levites:</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> of the sons of Kohath, Uriel the chief, with one hundred twenty of his kindred;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> of the sons of Merari, Asaiah the chief, with two hundred twenty of his kindred;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> of the sons of Gershom, Joel the chief, with one hundred thirty of his kindred;</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> of the sons of Elizaphan, Shemaiah the chief, with two hundred of his kindred;</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> of the sons of Hebron, Eliel the chief, with eighty of his kindred;</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> of the sons of Uzziel, Amminadab the chief, with one hundred twelve of his kindred.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> David summoned the priests Zadok and Abiathar, and the Levites Uriel, Asaiah, Joel, Shemaiah, Eliel, and Amminadab.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> He said to them, \"You are the heads of families of the Levites; sanctify yourselves, you and your kindred, so that you may bring up the ark of the LORD, the God of Israel, to the place that I have prepared for it.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Because you did not carry it the first time, the LORD our God burst out against us, because we did not give it proper care.\" </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> So the priests and the Levites sanctified themselves to bring up the ark of the LORD, the God of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And the Levites carried the ark of God on their shoulders with the poles, as Moses had commanded according to the word of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> David also commanded the chiefs of the Levites to appoint their kindred as the singers to play on musical instruments, on harps and lyres and cymbals, to raise loud sounds of joy.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> So the Levites appointed Heman son of Joel; and of his kindred Asaph son of Berechiah; and of the sons of Merari, their kindred, Ethan son of Kushaiah;</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> and with them their kindred of the second order, Zechariah, Jaaziel, Shemiramoth, Jehiel, Unni, Eliab, Benaiah, Maaseiah, Mattithiah, Eliphelehu, and Mikneiah, and the gatekeepers Obed-edom and Jeiel.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The singers Heman, Asaph, and Ethan were to sound bronze cymbals;</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Zechariah, Aziel, Shemiramoth, Jehiel, Unni, Eliab, Maaseiah, and Benaiah were to play harps according to Alamoth;</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> but Mattithiah, Eliphelehu, Mikneiah, Obed-edom, Jeiel, and Azaziah were to lead with lyres according to the Sheminith.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Chenaniah, leader of the Levites in music, was to direct the music, for he understood it.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Berechiah and Elkanah were to be gatekeepers for the ark.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Shebaniah, Joshaphat, Nethanel, Amasai, Zechariah, Benaiah, and Eliezer, the priests, were to blow the trumpets before the ark of God. Obed-edom and Jehiah also were to be gatekeepers for the ark.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> So David and the elders of Israel, and the commanders of the thousands, went to bring up the ark of the covenant of the LORD from the house of Obed-edom with rejoicing.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> And because God helped the Levites who were carrying the ark of the covenant of the LORD, they sacrificed seven bulls and seven rams.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> David was clothed with a robe of fine linen, as also were all the Levites who were carrying the ark, and the singers, and Chenaniah the leader of the music of the singers; and David wore a linen ephod.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> So all Israel brought up the ark of the covenant of the LORD with shouting, to the sound of the horn, trumpets, and cymbals, and made loud music on harps and lyres.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> As the ark of the covenant of the LORD came to the city of David, Michal daughter of Saul looked out of the window, and saw King David leaping and dancing; and she despised him in her heart.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"16\">\r\n\t\t\t<VERS vnumber=\"1\"> They brought in the ark of God, and set it inside the tent that David had pitched for it; and they offered burnt offerings and offerings of well-being before God.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> When David had finished offering the burnt offerings and the offerings of well-being, he blessed the people in the name of the LORD;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> and he distributed to every person in Israel-- man and woman alike-- to each a loaf of bread, a portion of meat, and a cake of raisins.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> He appointed certain of the Levites as ministers before the ark of the LORD, to invoke, to thank, and to praise the LORD, the God of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Asaph was the chief, and second to him Zechariah, Jeiel, Shemiramoth, Jehiel, Mattithiah, Eliab, Benaiah, Obed-edom, and Jeiel, with harps and lyres; Asaph was to sound the cymbals,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> and the priests Benaiah and Jahaziel were to blow trumpets regularly, before the ark of the covenant of God.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then on that day David first appointed the singing of praises to the LORD by Asaph and his kindred.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> O give thanks to the LORD, call on his name, make known his deeds among the peoples.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Sing to him, sing praises to him, tell of all his wonderful works.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Glory in his holy name; let the hearts of those who seek the LORD rejoice.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Seek the LORD and his strength, seek his presence continually.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Remember the wonderful works he has done, his miracles, and the judgments he uttered,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> O offspring of his servant Israel, children of Jacob, his chosen ones. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> He is the LORD our God; his judgments are in all the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Remember his covenant forever, the word that he commanded, for a thousand generations,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> the covenant that he made with Abraham, his sworn promise to Isaac,</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> which he confirmed to Jacob as a statute, to Israel as an everlasting covenant,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> saying, \"To you I will give the land of Canaan as your portion for an inheritance.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> When they were few in number, of little account, and strangers in the land, </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> wandering from nation to nation, from one kingdom to another people,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> he allowed no one to oppress them; he rebuked kings on their account,</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> saying, \"Do not touch my anointed ones; do my prophets no harm.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Sing to the LORD, all the earth. Tell of his salvation from day to day.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Declare his glory among the nations, his marvelous works among all the peoples.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> For great is the LORD, and greatly to be praised; he is to be revered above all gods.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> For all the gods of the peoples are idols, but the LORD made the heavens.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Honor and majesty are before him; strength and joy are in his place.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Ascribe to the LORD, O families of the peoples, ascribe to the LORD glory and strength.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Ascribe to the LORD the glory due his name; bring an offering, and come before him. Worship the LORD in holy splendor;</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> tremble before him, all the earth. The world is firmly established; it shall never be moved.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Let the heavens be glad, and let the earth rejoice, and let them say among the nations, \"The LORD is king!\"</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Let the sea roar, and all that fills it; let the field exult, and everything in it.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Then shall the trees of the forest sing for joy before the LORD, for he comes to judge the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> O give thanks to the LORD, for he is good; for his steadfast love endures forever.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Say also: \"Save us, O God of our salvation, and gather and rescue us from among the nations, that we may give thanks to your holy name, and glory in your praise.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Blessed be the LORD, the God of Israel, from everlasting to everlasting.\" Then all the people said \"Amen!\" and praised the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> David left Asaph and his kinsfolk there before the ark of the covenant of the LORD to minister regularly before the ark as each day required,</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> and also Obed-edom and his sixty-eight kinsfolk; while Obed-edom son of Jeduthun and Hosah were to be gatekeepers. </VERS>\r\n\t\t\t<VERS vnumber=\"39\"> And he left the priest Zadok and his kindred the priests before the tabernacle of the LORD in the high place that was at Gibeon,</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> to offer burnt offerings to the LORD on the altar of burnt offering regularly, morning and evening, according to all that is written in the law of the LORD that he commanded Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> With them were Heman and Jeduthun, and the rest of those chosen and expressly named to render thanks to the LORD, for his steadfast love endures forever.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> Heman and Jeduthun had with them trumpets and cymbals for the music, and instruments for sacred song. The sons of Jeduthun were appointed to the gate.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> Then all the people departed to their homes, and David went home to bless his household.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"17\">\r\n\t\t\t<VERS vnumber=\"1\"> Now when David settled in his house, David said to the prophet Nathan, \"I am living in a house of cedar, but the ark of the covenant of the LORD is under a tent.\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Nathan said to David, \"Do all that you have in mind, for God is with you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> But that same night the word of the LORD came to Nathan, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Go and tell my servant David: Thus says the LORD: You shall not build me a house to live in.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> For I have not lived in a house since the day I brought out Israel to this very day, but I have lived in a tent and a tabernacle. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Wherever I have moved about among all Israel, did I ever speak a word with any of the judges of Israel, whom I commanded to shepherd my people, saying, Why have you not built me a house of cedar?</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Now therefore thus you shall say to my servant David: Thus says the LORD of hosts: I took you from the pasture, from following the sheep, to be ruler over my people Israel;</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> and I have been with you wherever you went, and have cut off all your enemies before you; and I will make for you a name, like the name of the great ones of the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> I will appoint a place for my people Israel, and will plant them, so that they may live in their own place, and be disturbed no more; and evildoers shall wear them down no more, as they did formerly,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> from the time that I appointed judges over my people Israel; and I will subdue all your enemies. Moreover I declare to you that the LORD will build you a house.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> When your days are fulfilled to go to be with your ancestors, I will raise up your offspring after you, one of your own sons, and I will establish his kingdom.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> He shall build a house for me, and I will establish his throne forever.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> I will be a father to him, and he shall be a son to me. I will not take my steadfast love from him, as I took it from him who was before you,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> but I will confirm him in my house and in my kingdom forever, and his throne shall be established forever.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> In accordance with all these words and all this vision, Nathan spoke to David.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then King David went in and sat before the LORD, and said, \"Who am I, O LORD God, and what is my house, that you have brought me thus far?</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> And even this was a small thing in your sight, O God; you have also spoken of your servant's house for a great while to come. You regard me as someone of high rank, O LORD God! </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> And what more can David say to you for honoring your servant? You know your servant.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> For your servant's sake, O LORD, and according to your own heart, you have done all these great deeds, making known all these great things.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> There is no one like you, O LORD, and there is no God besides you, according to all that we have heard with our ears.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Who is like your people Israel, one nation on the earth whom God went to redeem to be his people, making for yourself a name for great and terrible things, in driving out nations before your people whom you redeemed from Egypt?</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> And you made your people Israel to be your people forever; and you, O LORD, became their God.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> \"And now, O LORD, as for the word that you have spoken concerning your servant and concerning his house, let it be established forever, and do as you have promised.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Thus your name will be established and magnified forever in the saying, 'The LORD of hosts, the God of Israel, is Israel's God'; and the house of your servant David will be established in your presence.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> For you, my God, have revealed to your servant that you will build a house for him; therefore your servant has found it possible to pray before you.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> And now, O LORD, you are God, and you have promised this good thing to your servant;</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> therefore may it please you to bless the house of your servant, that it may continue forever before you. For you, O LORD, have blessed and are blessed forever.\" </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"18\">\r\n\t\t\t<VERS vnumber=\"1\"> Some time afterward, David attacked the Philistines and subdued them; he took Gath and its villages from the Philistines.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He defeated Moab, and the Moabites became subject to David and brought tribute.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> David also struck down King Hadadezer of Zobah, toward Hamath, as he went to set up a monument at the river Euphrates.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> David took from him one thousand chariots, seven thousand cavalry, and twenty thousand foot soldiers. David hamstrung all the chariot horses, but left one hundred of them.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> When the Arameans of Damascus came to help King Hadadezer of Zobah, David killed twenty-two thousand Arameans.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then David put garrisons in Aram of Damascus; and the Arameans became subject to David, and brought tribute. The LORD gave victory to David wherever he went. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> David took the gold shields that were carried by the servants of Hadadezer, and brought them to Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> From Tibhath and from Cun, cities of Hadadezer, David took a vast quantity of bronze; with it Solomon made the bronze sea and the pillars and the vessels of bronze.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> When King Tou of Hamath heard that David had defeated the whole army of King Hadadezer of Zobah,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> he sent his son Hadoram to King David, to greet him and to congratulate him, because he had fought against Hadadezer and defeated him. Now Hadadezer had often been at war with Tou. He sent all sorts of articles of gold, of silver, and of bronze;</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> these also King David dedicated to the LORD, together with the silver and gold that he had carried off from all the nations, from Edom, Moab, the Ammonites, the Philistines, and Amalek.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Abishai son of Zeruiah killed eighteen thousand Edomites in the Valley of Salt.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> He put garrisons in Edom; and all the Edomites became subject to David. And the LORD gave victory to David wherever he went.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> So David reigned over all Israel; and he administered justice and equity to all his people.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Joab son of Zeruiah was over the army; Jehoshaphat son of Ahilud was recorder;</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Zadok son of Ahitub and Ahimelech son of Abiathar were priests; Shavsha was secretary;</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Benaiah son of Jehoiada was over the Cherethites and the Pelethites; and David's sons were the chief officials in the service of the king.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"19\">\r\n\t\t\t<VERS vnumber=\"1\"> Some time afterward, King Nahash of the Ammonites died, and his son succeeded him.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> David said, \"I will deal loyally with Hanun son of Nahash, for his father dealt loyally with me.\" So David sent messengers to console him concerning his father. When David's servants came to Hanun in the land of the Ammonites, to console him,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> the officials of the Ammonites said to Hanun, \"Do you think, because David has sent consolers to you, that he is honoring your father? Have not his servants come to you to search and to overthrow and to spy out the land?\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> So Hanun seized David's servants, shaved them, cut off their garments in the middle at their hips, and sent them away;</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> and they departed. When David was told about the men, he sent messengers to them, for they felt greatly humiliated. The king said, \"Remain at Jericho until your beards have grown, and then return.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> When the Ammonites saw that they had made themselves odious to David, Hanun and the Ammonites sent a thousand talents of silver to hire chariots and cavalry from Mesopotamia, from Aram-maacah and from Zobah.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> They hired thirty-two thousand chariots and the king of Maacah with his army, who came and camped before Medeba. And the Ammonites were mustered from their cities and came to battle.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> When David heard of it, he sent Joab and all the army of the warriors.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The Ammonites came out and drew up in battle array at the entrance of the city, and the kings who had come were by themselves in the open country.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> When Joab saw that the line of battle was set against him both in front and in the rear, he chose some of the picked men of Israel and arrayed them against the Arameans;</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> the rest of his troops he put in the charge of his brother Abishai, and they were arrayed against the Ammonites.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> He said, \"If the Arameans are too strong for me, then you shall help me; but if the Ammonites are too strong for you, then I will help you.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Be strong, and let us be courageous for our people and for the cities of our God; and may the LORD do what seems good to him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> So Joab and the troops who were with him advanced toward the Arameans for battle; and they fled before him.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> When the Ammonites saw that the Arameans fled, they likewise fled before Abishai, Joab's brother, and entered the city. Then Joab came to Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> But when the Arameans saw that they had been defeated by Israel, they sent messengers and brought out the Arameans who were beyond the Euphrates, with Shophach the commander of the army of Hadadezer at their head.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> When David was informed, he gathered all Israel together, crossed the Jordan, came to them, and drew up his forces against them. When David set the battle in array against the Arameans, they fought with him.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The Arameans fled before Israel; and David killed seven thousand Aramean charioteers and forty thousand foot soldiers, and also killed Shophach the commander of their army.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> When the servants of Hadadezer saw that they had been defeated by Israel, they made peace with David, and became subject to him. So the Arameans were not willing to help the Ammonites any more.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"20\">\r\n\t\t\t<VERS vnumber=\"1\"> In the spring of the year, the time when kings go out to battle, Joab led out the army, ravaged the country of the Ammonites, and came and besieged Rabbah. But David remained at Jerusalem. Joab attacked Rabbah, and overthrew it.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> David took the crown of Milcom from his head; he found that it weighed a talent of gold, and in it was a precious stone; and it was placed on David's head. He also brought out the booty of the city, a very great amount. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> He brought out the people who were in it, and set them to work with saws and iron picks and axes. Thus David did to all the cities of the Ammonites. Then David and all the people returned to Jerusalem. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> After this, war broke out with the Philistines at Gezer; then Sibbecai the Hushathite killed Sippai, who was one of the descendants of the giants; and the Philistines were subdued.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Again there was war with the Philistines; and Elhanan son of Jair killed Lahmi the brother of Goliath the Gittite, the shaft of whose spear was like a weaver's beam.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Again there was war at Gath, where there was a man of great size, who had six fingers on each hand, and six toes on each foot, twenty-four in number; he also was descended from the giants.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> When he taunted Israel, Jonathan son of Shimea, David's brother, killed him.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> These were descended from the giants in Gath; they fell by the hand of David and his servants.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"21\">\r\n\t\t\t<VERS vnumber=\"1\"> Satan stood up against Israel, and incited David to count the people of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> So David said to Joab and the commanders of the army, \"Go, number Israel, from Beer-sheba to Dan, and bring me a report, so that I may know their number.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> But Joab said, \"May the LORD increase the number of his people a hundredfold! Are they not, my lord the king, all of them my lord's servants? Why then should my lord require this? Why should he bring guilt on Israel?\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But the king's word prevailed against Joab. So Joab departed and went throughout all Israel, and came back to Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Joab gave the total count of the people to David. In all Israel there were one million one hundred thousand men who drew the sword, and in Judah four hundred seventy thousand who drew the sword.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> But he did not include Levi and Benjamin in the numbering, for the king's command was abhorrent to Joab.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But God was displeased with this thing, and he struck Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> David said to God, \"I have sinned greatly in that I have done this thing. But now, I pray you, take away the guilt of your servant; for I have done very foolishly.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The LORD spoke to Gad, David's seer, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> \"Go and say to David, 'Thus says the LORD: Three things I offer you; choose one of them, so that I may do it to you.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> So Gad came to David and said to him, \"Thus says the LORD, 'Take your choice:</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> either three years of famine; or three months of devastation by your foes, while the sword of your enemies overtakes you; or three days of the sword of the LORD, pestilence on the land, and the angel of the LORD destroying throughout all the territory of Israel.' Now decide what answer I shall return to the one who sent me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then David said to Gad, \"I am in great distress; let me fall into the hand of the LORD, for his mercy is very great; but let me not fall into human hands.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> So the LORD sent a pestilence on Israel; and seventy thousand persons fell in Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And God sent an angel to Jerusalem to destroy it; but when he was about to destroy it, the LORD took note and relented concerning the calamity; he said to the destroying angel, \"Enough! Stay your hand.\" The angel of the LORD was then standing by the threshing floor of Ornan the Jebusite.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> David looked up and saw the angel of the LORD standing between earth and heaven, and in his hand a drawn sword stretched out over Jerusalem. Then David and the elders, clothed in sackcloth, fell on their faces.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> And David said to God, \"Was it not I who gave the command to count the people? It is I who have sinned and done very wickedly. But these sheep, what have they done? Let your hand, I pray, O LORD my God, be against me and against my father's house; but do not let your people be plagued!\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then the angel of the LORD commanded Gad to tell David that he should go up and erect an altar to the LORD on the threshing floor of Ornan the Jebusite.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> So David went up following Gad's instructions, which he had spoken in the name of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Ornan turned and saw the angel; and while his four sons who were with him hid themselves, Ornan continued to thresh wheat.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> As David came to Ornan, Ornan looked and saw David; he went out from the threshing floor, and did obeisance to David with his face to the ground.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> David said to Ornan, \"Give me the site of the threshing floor that I may build on it an altar to the LORD-- give it to me at its full price-- so that the plague may be averted from the people.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Then Ornan said to David, \"Take it; and let my lord the king do what seems good to him; see, I present the oxen for burnt offerings, and the threshing sledges for the wood, and the wheat for a grain offering. I give it all.\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> But King David said to Ornan, \"No; I will buy them for the full price. I will not take for the LORD what is yours, nor offer burnt offerings that cost me nothing.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> So David paid Ornan six hundred shekels of gold by weight for the site.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> David built there an altar to the LORD and presented burnt offerings and offerings of well-being. He called upon the LORD, and he answered him with fire from heaven on the altar of burnt offering.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Then the LORD commanded the angel, and he put his sword back into its sheath.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> At that time, when David saw that the LORD had answered him at the threshing floor of Ornan the Jebusite, he made his sacrifices there.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> For the tabernacle of the LORD, which Moses had made in the wilderness, and the altar of burnt offering were at that time in the high place at Gibeon;</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> but David could not go before it to inquire of God, for he was afraid of the sword of the angel of the LORD.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"22\">\r\n\t\t\t<VERS vnumber=\"1\"> Then David said, \"Here shall be the house of the LORD God and here the altar of burnt offering for Israel.\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> David gave orders to gather together the aliens who were residing in the land of Israel, and he set stonecutters to prepare dressed stones for building the house of God.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> David also provided great stores of iron for nails for the doors of the gates and for clamps, as well as bronze in quantities beyond weighing,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> and cedar logs without number-- for the Sidonians and Tyrians brought great quantities of cedar to David.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> For David said, \"My son Solomon is young and inexperienced, and the house that is to be built for the LORD must be exceedingly magnificent, famous and glorified throughout all lands; I will therefore make preparation for it.\" So David provided materials in great quantity before his death.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then he called for his son Solomon and charged him to build a house for the LORD, the God of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> David said to Solomon, \"My son, I had planned to build a house to the name of the LORD my God.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But the word of the LORD came to me, saying, 'You have shed much blood and have waged great wars; you shall not build a house to my name, because you have shed so much blood in my sight on the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> See, a son shall be born to you; he shall be a man of peace. I will give him peace from all his enemies on every side; for his name shall be Solomon, and I will give peace and quiet to Israel in his days. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> He shall build a house for my name. He shall be a son to me, and I will be a father to him, and I will establish his royal throne in Israel forever.'</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Now, my son, the LORD be with you, so that you may succeed in building the house of the LORD your God, as he has spoken concerning you.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Only, may the LORD grant you discretion and understanding, so that when he gives you charge over Israel you may keep the law of the LORD your God.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then you will prosper if you are careful to observe the statutes and the ordinances that the LORD commanded Moses for Israel. Be strong and of good courage. Do not be afraid or dismayed.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> With great pains I have provided for the house of the LORD one hundred thousand talents of gold, one million talents of silver, and bronze and iron beyond weighing, for there is so much of it; timber and stone too I have provided. To these you must add more.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> You have an abundance of workers: stonecutters, masons, carpenters, and all kinds of artisans without number, skilled in working</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> gold, silver, bronze, and iron. Now begin the work, and the LORD be with you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> David also commanded all the leaders of Israel to help his son Solomon, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> \"Is not the LORD your God with you? Has he not given you peace on every side? For he has delivered the inhabitants of the land into my hand; and the land is subdued before the LORD and his people.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Now set your mind and heart to seek the LORD your God. Go and build the sanctuary of the LORD God so that the ark of the covenant of the LORD and the holy vessels of God may be brought into a house built for the name of the LORD.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"23\">\r\n\t\t\t<VERS vnumber=\"1\"> When David was old and full of days, he made his son Solomon king over Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> David assembled all the leaders of Israel and the priests and the Levites.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The Levites, thirty years old and upward, were counted, and the total was thirty-eight thousand.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> \"Twenty-four thousand of these,\" David said, \"shall have charge of the work in the house of the LORD, six thousand shall be officers and judges,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> four thousand gatekeepers, and four thousand shall offer praises to the LORD with the instruments that I have made for praise.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And David organized them in divisions corresponding to the sons of Levi: Gershon, Kohath, and Merari. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The sons of Gershon were Ladan and Shimei. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The sons of Ladan: Jehiel the chief, Zetham, and Joel, three.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The sons of Shimei: Shelomoth, Haziel, and Haran, three. These were the heads of families of Ladan.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And the sons of Shimei: Jahath, Zina, Jeush, and Beriah. These four were the sons of Shimei.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Jahath was the chief, and Zizah the second; but Jeush and Beriah did not have many sons, so they were enrolled as a single family.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The sons of Kohath: Amram, Izhar, Hebron, and Uzziel, four.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The sons of Amram: Aaron and Moses. Aaron was set apart to consecrate the most holy things, so that he and his sons forever should make offerings before the LORD, and minister to him and pronounce blessings in his name forever;</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> but as for Moses the man of God, his sons were to be reckoned among the tribe of Levi.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The sons of Moses: Gershom and Eliezer.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The sons of Gershom: Shebuel the chief.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The sons of Eliezer: Rehabiah the chief; Eliezer had no other sons, but the sons of Rehabiah were very numerous.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The sons of Izhar: Shelomith the chief.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The sons of Hebron: Jeriah the chief, Amariah the second, Jahaziel the third, and Jekameam the fourth.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The sons of Uzziel: Micah the chief and Isshiah the second.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> The sons of Merari: Mahli and Mushi. The sons of Mahli: Eleazar and Kish.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Eleazar died having no sons, but only daughters; their kindred, the sons of Kish, married them.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> The sons of Mushi: Mahli, Eder, and Jeremoth, three.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> These were the sons of Levi by their ancestral houses, the heads of families as they were enrolled according to the number of the names of the individuals from twenty years old and upward who were to do the work for the service of the house of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> For David said, \"The LORD, the God of Israel, has given rest to his people; and he resides in Jerusalem forever.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> And so the Levites no longer need to carry the tabernacle or any of the things for its service\"--</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> for according to the last words of David these were the number of the Levites from twenty years old and upward--</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> \"but their duty shall be to assist the descendants of Aaron for the service of the house of the LORD, having the care of the courts and the chambers, the cleansing of all that is holy, and any work for the service of the house of God;</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> to assist also with the rows of bread, the choice flour for the grain offering, the wafers of unleavened bread, the baked offering, the offering mixed with oil, and all measures of quantity or size.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> And they shall stand every morning, thanking and praising the LORD, and likewise at evening,</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> and whenever burnt offerings are offered to the LORD on sabbaths, new moons, and appointed festivals, according to the number required of them, regularly before the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Thus they shall keep charge of the tent of meeting and the sanctuary, and shall attend the descendants of Aaron, their kindred, for the service of the house of the LORD.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"24\">\r\n\t\t\t<VERS vnumber=\"1\"> The divisions of the descendants of Aaron were these. The sons of Aaron: Nadab, Abihu, Eleazar, and Ithamar.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> But Nadab and Abihu died before their father, and had no sons; so Eleazar and Ithamar became the priests.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Along with Zadok of the sons of Eleazar, and Ahimelech of the sons of Ithamar, David organized them according to the appointed duties in their service.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Since more chief men were found among the sons of Eleazar than among the sons of Ithamar, they organized them under sixteen heads of ancestral houses of the sons of Eleazar, and eight of the sons of Ithamar.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> They organized them by lot, all alike, for there were officers of the sanctuary and officers of God among both the sons of Eleazar and the sons of Ithamar.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The scribe Shemaiah son of Nethanel, a Levite, recorded them in the presence of the king, and the officers, and Zadok the priest, and Ahimelech son of Abiathar, and the heads of ancestral houses of the priests and of the Levites; one ancestral house being chosen for Eleazar and one chosen for Ithamar.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The first lot fell to Jehoiarib, the second to Jedaiah,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> the third to Harim, the fourth to Seorim,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> the fifth to Malchijah, the sixth to Mijamin,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> the seventh to Hakkoz, the eighth to Abijah,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> the ninth to Jeshua, the tenth to Shecaniah,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> the eleventh to Eliashib, the twelfth to Jakim,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> the thirteenth to Huppah, the fourteenth to Jeshebeab,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> the fifteenth to Bilgah, the sixteenth to Immer,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> the seventeenth to Hezir, the eighteenth to Happizzez,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> the nineteenth to Pethahiah, the twentieth to Jehezkel,</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> the twenty-first to Jachin, the twenty-second to Gamul,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> the twenty-third to Delaiah, the twenty-fourth to Maaziah.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> These had as their appointed duty in their service to enter the house of the LORD according to the procedure established for them by their ancestor Aaron, as the LORD God of Israel had commanded him.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> And of the rest of the sons of Levi: of the sons of Amram, Shubael; of the sons of Shubael, Jehdeiah.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Of Rehabiah: of the sons of Rehabiah, Isshiah the chief.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Of the Izharites, Shelomoth; of the sons of Shelomoth, Jahath.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> The sons of Hebron: Jeriah the chief, Amariah the second, Jahaziel the third, Jekameam the fourth.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> The sons of Uzziel, Micah; of the sons of Micah, Shamir.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> The brother of Micah, Isshiah; of the sons of Isshiah, Zechariah.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> The sons of Merari: Mahli and Mushi. The sons of Jaaziah: Beno.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> The sons of Merari: of Jaaziah, Beno, Shoham, Zaccur, and Ibri.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Of Mahli: Eleazar, who had no sons.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Of Kish, the sons of Kish: Jerahmeel.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> The sons of Mushi: Mahli, Eder, and Jerimoth. These were the sons of the Levites according to their ancestral houses.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> These also cast lots corresponding to their kindred, the descendants of Aaron, in the presence of King David, Zadok, Ahimelech, and the heads of ancestral houses of the priests and of the Levites, the chief as well as the youngest brother.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"25\">\r\n\t\t\t<VERS vnumber=\"1\"> David and the officers of the army also set apart for the service the sons of Asaph, and of Heman, and of Jeduthun, who should prophesy with lyres, harps, and cymbals. The list of those who did the work and of their duties was:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Of the sons of Asaph: Zaccur, Joseph, Nethaniah, and Asarelah, sons of Asaph, under the direction of Asaph, who prophesied under the direction of the king.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Of Jeduthun, the sons of Jeduthun: Gedaliah, Zeri, Jeshaiah, Shimei, Hashabiah, and Mattithiah, six, under the direction of their father Jeduthun, who prophesied with the lyre in thanksgiving and praise to the LORD. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Of Heman, the sons of Heman: Bukkiah, Mattaniah, Uzziel, Shebuel, and Jerimoth, Hananiah, Hanani, Eliathah, Giddalti, and Romamti-ezer, Joshbekashah, Mallothi, Hothir, Mahazioth.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> All these were the sons of Heman the king's seer, according to the promise of God to exalt him; for God had given Heman fourteen sons and three daughters.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> They were all under the direction of their father for the music in the house of the LORD with cymbals, harps, and lyres for the service of the house of God. Asaph, Jeduthun, and Heman were under the order of the king.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> They and their kindred, who were trained in singing to the LORD, all of whom were skillful, numbered two hundred eighty-eight.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And they cast lots for their duties, small and great, teacher and pupil alike.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The first lot fell for Asaph to Joseph; the second to Gedaliah, to him and his brothers and his sons, twelve;</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> the third to Zaccur, his sons and his brothers, twelve;</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> the fourth to Izri, his sons and his brothers, twelve;</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> the fifth to Nethaniah, his sons and his brothers, twelve;</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> the sixth to Bukkiah, his sons and his brothers, twelve;</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> the seventh to Jesarelah, his sons and his brothers, twelve;</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> the eighth to Jeshaiah, his sons and his brothers, twelve;</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> the ninth to Mattaniah, his sons and his brothers, twelve;</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> the tenth to Shimei, his sons and his brothers, twelve;</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> the eleventh to Azarel, his sons and his brothers, twelve;</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> the twelfth to Hashabiah, his sons and his brothers, twelve;</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> to the thirteenth, Shubael, his sons and his brothers, twelve;</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> to the fourteenth, Mattithiah, his sons and his brothers, twelve;</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> to the fifteenth, to Jeremoth, his sons and his brothers, twelve;</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> to the sixteenth, to Hananiah, his sons and his brothers, twelve;</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> to the seventeenth, to Joshbekashah, his sons and his brothers, twelve;</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> to the eighteenth, to Hanani, his sons and his brothers, twelve;</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> to the nineteenth, to Mallothi, his sons and his brothers, twelve;</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> to the twentieth, to Eliathah, his sons and his brothers, twelve;</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> to the twenty-first, to Hothir, his sons and his brothers, twelve;</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> to the twenty-second, to Giddalti, his sons and his brothers, twelve;</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> to the twenty-third, to Mahazioth, his sons and his brothers, twelve;</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> to the twenty-fourth, to Romamti-ezer, his sons and his brothers, twelve.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"26\">\r\n\t\t\t<VERS vnumber=\"1\"> As for the divisions of the gatekeepers: of the Korahites, Meshelemiah son of Kore, of the sons of Asaph.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Meshelemiah had sons: Zechariah the firstborn, Jediael the second, Zebadiah the third, Jathniel the fourth,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Elam the fifth, Jehohanan the sixth, Eliehoenai the seventh.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Obed-edom had sons: Shemaiah the firstborn, Jehozabad the second, Joah the third, Sachar the fourth, Nethanel the fifth,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Ammiel the sixth, Issachar the seventh, Peullethai the eighth; for God blessed him.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Also to his son Shemaiah sons were born who exercised authority in their ancestral houses, for they were men of great ability.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The sons of Shemaiah: Othni, Rephael, Obed, and Elzabad, whose brothers were able men, Elihu and Semachiah.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> All these, sons of Obed-edom with their sons and brothers, were able men qualified for the service; sixty-two of Obed-edom.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Meshelemiah had sons and brothers, able men, eighteen.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Hosah, of the sons of Merari, had sons: Shimri the chief (for though he was not the firstborn, his father made him chief),</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Hilkiah the second, Tebaliah the third, Zechariah the fourth: all the sons and brothers of Hosah totaled thirteen.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> These divisions of the gatekeepers, corresponding to their leaders, had duties, just as their kindred did, ministering in the house of the LORD;</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> and they cast lots by ancestral houses, small and great alike, for their gates.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The lot for the east fell to Shelemiah. They cast lots also for his son Zechariah, a prudent counselor, and his lot came out for the north.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Obed-edom's came out for the south, and to his sons was allotted the storehouse.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> For Shuppim and Hosah it came out for the west, at the gate of Shallecheth on the ascending road. Guard corresponded to guard.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> On the east there were six Levites each day, on the north four each day, on the south four each day, as well as two and two at the storehouse;</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> and for the colonnade on the west there were four at the road and two at the colonnade. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> These were the divisions of the gatekeepers among the Korahites and the sons of Merari.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> And of the Levites, Ahijah had charge of the treasuries of the house of God and the treasuries of the dedicated gifts.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> The sons of Ladan, the sons of the Gershonites belonging to Ladan, the heads of families belonging to Ladan the Gershonite: Jehieli. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The sons of Jehieli, Zetham and his brother Joel, were in charge of the treasuries of the house of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Of the Amramites, the Izharites, the Hebronites, and the Uzzielites:</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Shebuel son of Gershom, son of Moses, was chief officer in charge of the treasuries.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> His brothers: from Eliezer were his son Rehabiah, his son Jeshaiah, his son Joram, his son Zichri, and his son Shelomoth.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> This Shelomoth and his brothers were in charge of all the treasuries of the dedicated gifts that King David, and the heads of families, and the officers of the thousands and the hundreds, and the commanders of the army, had dedicated.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> From booty won in battles they dedicated gifts for the maintenance of the house of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Also all that Samuel the seer, and Saul son of Kish, and Abner son of Ner, and Joab son of Zeruiah had dedicated-- all dedicated gifts were in the care of Shelomoth and his brothers.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Of the Izharites, Chenaniah and his sons were appointed to outside duties for Israel, as officers and judges.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Of the Hebronites, Hashabiah and his brothers, one thousand seven hundred men of ability, had the oversight of Israel west of the Jordan for all the work of the LORD and for the service of the king.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Of the Hebronites, Jerijah was chief of the Hebronites. (In the fortieth year of David's reign search was made, of whatever genealogy or family, and men of great ability among them were found at Jazer in Gilead.)</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> King David appointed him and his brothers, two thousand seven hundred men of ability, heads of families, to have the oversight of the Reubenites, the Gadites, and the half-tribe of the Manassites for everything pertaining to God and for the affairs of the king.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"27\">\r\n\t\t\t<VERS vnumber=\"1\"> This is the list of the people of Israel, the heads of families, the commanders of the thousands and the hundreds, and their officers who served the king in all matters concerning the divisions that came and went, month after month throughout the year, each division numbering twenty-four thousand:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Jashobeam son of Zabdiel was in charge of the first division in the first month; in his division were twenty-four thousand.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> He was a descendant of Perez, and was chief of all the commanders of the army for the first month.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Dodai the Ahohite was in charge of the division of the second month; Mikloth was the chief officer of his division. In his division were twenty-four thousand.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The third commander, for the third month, was Benaiah son of the priest Jehoiada, as chief; in his division were twenty-four thousand.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> This is the Benaiah who was a mighty man of the Thirty and in command of the Thirty; his son Ammizabad was in charge of his division. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Asahel brother of Joab was fourth, for the fourth month, and his son Zebadiah after him; in his division were twenty-four thousand.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The fifth commander, for the fifth month, was Shamhuth, the Izrahite; in his division were twenty-four thousand.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Sixth, for the sixth month, was Ira son of Ikkesh the Tekoite; in his division were twenty-four thousand.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Seventh, for the seventh month, was Helez the Pelonite, of the Ephraimites; in his division were twenty-four thousand.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Eighth, for the eighth month, was Sibbecai the Hushathite, of the Zerahites; in his division were twenty-four thousand.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Ninth, for the ninth month, was Abiezer of Anathoth, a Benjaminite; in his division were twenty-four thousand.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Tenth, for the tenth month, was Maharai of Netophah, of the Zerahites; in his division were twenty-four thousand.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Eleventh, for the eleventh month, was Benaiah of Pirathon, of the Ephraimites; in his division were twenty-four thousand.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Twelfth, for the twelfth month, was Heldai the Netophathite, of Othniel; in his division were twenty-four thousand.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Over the tribes of Israel, for the Reubenites, Eliezer son of Zichri was chief officer; for the Simeonites, Shephatiah son of Maacah;</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> for Levi, Hashabiah son of Kemuel; for Aaron, Zadok;</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> for Judah, Elihu, one of David's brothers; for Issachar, Omri son of Michael;</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> for Zebulun, Ishmaiah son of Obadiah; for Naphtali, Jerimoth son of Azriel;</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> for the Ephraimites, Hoshea son of Azaziah; for the half-tribe of Manasseh, Joel son of Pedaiah;</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> for the half-tribe of Manasseh in Gilead, Iddo son of Zechariah; for Benjamin, Jaasiel son of Abner;</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> for Dan, Azarel son of Jeroham. These were the leaders of the tribes of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> David did not count those below twenty years of age, for the LORD had promised to make Israel as numerous as the stars of heaven.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Joab son of Zeruiah began to count them, but did not finish; yet wrath came upon Israel for this, and the number was not entered into the account of the Annals of King David.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Over the king's treasuries was Azmaveth son of Adiel. Over the treasuries in the country, in the cities, in the villages and in the towers, was Jonathan son of Uzziah.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Over those who did the work of the field, tilling the soil, was Ezri son of Chelub.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Over the vineyards was Shimei the Ramathite. Over the produce of the vineyards for the wine cellars was Zabdi the Shiphmite.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Over the olive and sycamore trees in the Shephelah was Baal-hanan the Gederite. Over the stores of oil was Joash.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Over the herds that pastured in Sharon was Shitrai the Sharonite. Over the herds in the valleys was Shaphat son of Adlai.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Over the camels was Obil the Ishmaelite. Over the donkeys was Jehdeiah the Meronothite. Over the flocks was Jaziz the Hagrite.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> All these were stewards of King David's property.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Jonathan, David's uncle, was a counselor, being a man of understanding and a scribe; Jehiel son of Hachmoni attended the king's sons.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Ahithophel was the king's counselor, and Hushai the Archite was the king's friend.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> After Ahithophel came Jehoiada son of Benaiah, and Abiathar. Joab was commander of the king's army.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"28\">\r\n\t\t\t<VERS vnumber=\"1\"> David assembled at Jerusalem all the officials of Israel, the officials of the tribes, the officers of the divisions that served the king, the commanders of the thousands, the commanders of the hundreds, the stewards of all the property and cattle of the king and his sons, together with the palace officials, the mighty warriors, and all the warriors.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Then King David rose to his feet and said: \"Hear me, my brothers and my people. I had planned to build a house of rest for the ark of the covenant of the LORD, for the footstool of our God; and I made preparations for building.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> But God said to me, 'You shall not build a house for my name, for you are a warrior and have shed blood.'</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Yet the LORD God of Israel chose me from all my ancestral house to be king over Israel forever; for he chose Judah as leader, and in the house of Judah my father's house, and among my father's sons he took delight in making me king over all Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> And of all my sons, for the LORD has given me many, he has chosen my son Solomon to sit upon the throne of the kingdom of the LORD over Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> He said to me, 'It is your son Solomon who shall build my house and my courts, for I have chosen him to be a son to me, and I will be a father to him.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> I will establish his kingdom forever if he continues resolute in keeping my commandments and my ordinances, as he is today.'</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Now therefore in the sight of all Israel, the assembly of the LORD, and in the hearing of our God, observe and search out all the commandments of the LORD your God; that you may possess this good land, and leave it for an inheritance to your children after you forever.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> \"And you, my son Solomon, know the God of your father, and serve him with single mind and willing heart; for the LORD searches every mind, and understands every plan and thought. If you seek him, he will be found by you; but if you forsake him, he will abandon you forever.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Take heed now, for the LORD has chosen you to build a house as the sanctuary; be strong, and act.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then David gave his son Solomon the plan of the vestibule of the temple, and of its houses, its treasuries, its upper rooms, and its inner chambers, and of the room for the mercy seat; </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> and the plan of all that he had in mind: for the courts of the house of the LORD, all the surrounding chambers, the treasuries of the house of God, and the treasuries for dedicated gifts;</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> for the divisions of the priests and of the Levites, and all the work of the service in the house of the LORD; for all the vessels for the service in the house of the LORD,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> the weight of gold for all golden vessels for each service, the weight of silver vessels for each service,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> the weight of the golden lampstands and their lamps, the weight of gold for each lampstand and its lamps, the weight of silver for a lampstand and its lamps, according to the use of each in the service,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> the weight of gold for each table for the rows of bread, the silver for the silver tables,</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> and pure gold for the forks, the basins, and the cups; for the golden bowls and the weight of each; for the silver bowls and the weight of each;</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> for the altar of incense made of refined gold, and its weight; also his plan for the golden chariot of the cherubim that spread their wings and covered the ark of the covenant of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> \"All this, in writing at the LORD's direction, he made clear to me-- the plan of all the works.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> David said further to his son Solomon, \"Be strong and of good courage, and act. Do not be afraid or dismayed; for the LORD God, my God, is with you. He will not fail you or forsake you, until all the work for the service of the house of the LORD is finished.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Here are the divisions of the priests and the Levites for all the service of the house of God; and with you in all the work will be every volunteer who has skill for any kind of service; also the officers and all the people will be wholly at your command.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"29\">\r\n\t\t\t<VERS vnumber=\"1\"> King David said to the whole assembly, \"My son Solomon, whom alone God has chosen, is young and inexperienced, and the work is great; for the temple will not be for mortals but for the LORD God. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> So I have provided for the house of my God, so far as I was able, the gold for the things of gold, the silver for the things of silver, and the bronze for the things of bronze, the iron for the things of iron, and wood for the things of wood, besides great quantities of onyx and stones for setting, antimony, colored stones, all sorts of precious stones, and marble in abundance.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Moreover, in addition to all that I have provided for the holy house, I have a treasure of my own of gold and silver, and because of my devotion to the house of my God I give it to the house of my God:</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> three thousand talents of gold, of the gold of Ophir, and seven thousand talents of refined silver, for overlaying the walls of the house,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> and for all the work to be done by artisans, gold for the things of gold and silver for the things of silver. Who then will offer willingly, consecrating themselves today to the LORD?\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then the leaders of ancestral houses made their freewill offerings, as did also the leaders of the tribes, the commanders of the thousands and of the hundreds, and the officers over the king's work.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> They gave for the service of the house of God five thousand talents and ten thousand darics of gold, ten thousand talents of silver, eighteen thousand talents of bronze, and one hundred thousand talents of iron.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Whoever had precious stones gave them to the treasury of the house of the LORD, into the care of Jehiel the Gershonite.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then the people rejoiced because these had given willingly, for with single mind they had offered freely to the LORD; King David also rejoiced greatly.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then David blessed the LORD in the presence of all the assembly; David said: \"Blessed are you, O LORD, the God of our ancestor Israel, forever and ever.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Yours, O LORD, are the greatness, the power, the glory, the victory, and the majesty; for all that is in the heavens and on the earth is yours; yours is the kingdom, O LORD, and you are exalted as head above all.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Riches and honor come from you, and you rule over all. In your hand are power and might; and it is in your hand to make great and to give strength to all.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And now, our God, we give thanks to you and praise your glorious name.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> \"But who am I, and what is my people, that we should be able to make this freewill offering? For all things come from you, and of your own have we given you.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> For we are aliens and transients before you, as were all our ancestors; our days on the earth are like a shadow, and there is no hope.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> O LORD our God, all this abundance that we have provided for building you a house for your holy name comes from your hand and is all your own.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> I know, my God, that you search the heart, and take pleasure in uprightness; in the uprightness of my heart I have freely offered all these things, and now I have seen your people, who are present here, offering freely and joyously to you.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> O LORD, the God of Abraham, Isaac, and Israel, our ancestors, keep forever such purposes and thoughts in the hearts of your people, and direct their hearts toward you.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Grant to my son Solomon that with single mind he may keep your commandments, your decrees, and your statutes, performing all of them, and that he may build the temple for which I have made provision.\" </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Then David said to the whole assembly, \"Bless the LORD your God.\" And all the assembly blessed the LORD, the God of their ancestors, and bowed their heads and prostrated themselves before the LORD and the king.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> On the next day they offered sacrifices and burnt offerings to the LORD, a thousand bulls, a thousand rams, and a thousand lambs, with their libations, and sacrifices in abundance for all Israel;</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> and they ate and drank before the LORD on that day with great joy. They made David's son Solomon king a second time; they anointed him as the LORD's prince, and Zadok as priest.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Then Solomon sat on the throne of the LORD, succeeding his father David as king; he prospered, and all Israel obeyed him.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> All the leaders and the mighty warriors, and also all the sons of King David, pledged their allegiance to King Solomon.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> The LORD highly exalted Solomon in the sight of all Israel, and bestowed upon him such royal majesty as had not been on any king before him in Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Thus David son of Jesse reigned over all Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> The period that he reigned over Israel was forty years; he reigned seven years in Hebron, and thirty-three years in Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> He died in a good old age, full of days, riches, and honor; and his son Solomon succeeded him.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Now the acts of King David, from first to last, are written in the records of the seer Samuel, and in the records of the prophet Nathan, and in the records of the seer Gad,</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> with accounts of all his rule and his might and of the events that befell him and Israel and all the kingdoms of the earth.</VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"14\" bname=\"2 Chronicles\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> Solomon son of David established himself in his kingdom; the LORD his God was with him and made him exceedingly great.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Solomon summoned all Israel, the commanders of the thousands and of the hundreds, the judges, and all the leaders of all Israel, the heads of families.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then Solomon, and the whole assembly with him, went to the high place that was at Gibeon; for God's tent of meeting, which Moses the servant of the LORD had made in the wilderness, was there.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> (But David had brought the ark of God up from Kiriath-jearim to the place that David had prepared for it; for he had pitched a tent for it in Jerusalem.)</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Moreover the bronze altar that Bezalel son of Uri, son of Hur, had made, was there in front of the tabernacle of the LORD. And Solomon and the assembly inquired at it.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Solomon went up there to the bronze altar before the LORD, which was at the tent of meeting, and offered a thousand burnt offerings on it.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> That night God appeared to Solomon, and said to him, \"Ask what I should give you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Solomon said to God, \"You have shown great and steadfast love to my father David, and have made me succeed him as king.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> O LORD God, let your promise to my father David now be fulfilled, for you have made me king over a people as numerous as the dust of the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Give me now wisdom and knowledge to go out and come in before this people, for who can rule this great people of yours?\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> God answered Solomon, \"Because this was in your heart, and you have not asked for possessions, wealth, honor, or the life of those who hate you, and have not even asked for long life, but have asked for wisdom and knowledge for yourself that you may rule my people over whom I have made you king,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> wisdom and knowledge are granted to you. I will also give you riches, possessions, and honor, such as none of the kings had who were before you, and none after you shall have the like.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> So Solomon came from the high place at Gibeon, from the tent of meeting, to Jerusalem. And he reigned over Israel. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Solomon gathered together chariots and horses; he had fourteen hundred chariots and twelve thousand horses, which he stationed in the chariot cities and with the king in Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The king made silver and gold as common in Jerusalem as stone, and he made cedar as plentiful as the sycamore of the Shephelah.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Solomon's horses were imported from Egypt and Kue; the king's traders received them from Kue at the prevailing price.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> They imported from Egypt, and then exported, a chariot for six hundred shekels of silver, and a horse for one hundred fifty; so through them these were exported to all the kings of the Hittites and the kings of Aram.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> Solomon decided to build a temple for the name of the LORD, and a royal palace for himself.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Solomon conscripted seventy thousand laborers and eighty thousand stonecutters in the hill country, with three thousand six hundred to oversee them.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Solomon sent word to King Huram of Tyre: \"Once you dealt with my father David and sent him cedar to build himself a house to live in.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> I am now about to build a house for the name of the LORD my God and dedicate it to him for offering fragrant incense before him, and for the regular offering of the rows of bread, and for burnt offerings morning and evening, on the sabbaths and the new moons and the appointed festivals of the LORD our God, as ordained forever for Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The house that I am about to build will be great, for our God is greater than other gods.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> But who is able to build him a house, since heaven, even highest heaven, cannot contain him? Who am I to build a house for him, except as a place to make offerings before him?</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> So now send me an artisan skilled to work in gold, silver, bronze, and iron, and in purple, crimson, and blue fabrics, trained also in engraving, to join the skilled workers who are with me in Judah and Jerusalem, whom my father David provided.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Send me also cedar, cypress, and algum timber from Lebanon, for I know that your servants are skilled in cutting Lebanon timber. My servants will work with your servants</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> to prepare timber for me in abundance, for the house I am about to build will be great and wonderful.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> I will provide for your servants, those who cut the timber, twenty thousand cors of crushed wheat, twenty thousand cors of barley, twenty thousand baths of wine, and twenty thousand baths of oil.\" </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then King Huram of Tyre answered in a letter that he sent to Solomon, \"Because the LORD loves his people he has made you king over them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Huram also said, \"Blessed be the LORD God of Israel, who made heaven and earth, who has given King David a wise son, endowed with discretion and understanding, who will build a temple for the LORD, and a royal palace for himself.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> \"I have dispatched Huram-abi, a skilled artisan, endowed with understanding,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> the son of one of the Danite women, his father a Tyrian. He is trained to work in gold, silver, bronze, iron, stone, and wood, and in purple, blue, and crimson fabrics and fine linen, and to do all sorts of engraving and execute any design that may be assigned him, with your artisans, the artisans of my lord, your father David.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Now, as for the wheat, barley, oil, and wine, of which my lord has spoken, let him send them to his servants.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> We will cut whatever timber you need from Lebanon, and bring it to you as rafts by sea to Joppa; you will take it up to Jerusalem.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then Solomon took a census of all the aliens who were residing in the land of Israel, after the census that his father David had taken; and there were found to be one hundred fifty-three thousand six hundred.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Seventy thousand of them he assigned as laborers, eighty thousand as stonecutters in the hill country, and three thousand six hundred as overseers to make the people work.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> Solomon began to build the house of the LORD in Jerusalem on Mount Moriah, where the LORD had appeared to his father David, at the place that David had designated, on the threshing floor of Ornan the Jebusite.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He began to build on the second day of the second month of the fourth year of his reign.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> These are Solomon's measurements for building the house of God: the length, in cubits of the old standard, was sixty cubits, and the width twenty cubits. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The vestibule in front of the nave of the house was twenty cubits long, across the width of the house; and its height was one hundred twenty cubits. He overlaid it on the inside with pure gold. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The nave he lined with cypress, covered it with fine gold, and made palms and chains on it.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> He adorned the house with settings of precious stones. The gold was gold from Parvaim.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> So he lined the house with gold-- its beams, its thresholds, its walls, and its doors; and he carved cherubim on the walls.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> He made the most holy place; its length, corresponding to the width of the house, was twenty cubits, and its width was twenty cubits; he overlaid it with six hundred talents of fine gold.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The weight of the nails was fifty shekels of gold. He overlaid the upper chambers with gold.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> In the most holy place he made two carved cherubim and overlaid them with gold. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The wings of the cherubim together extended twenty cubits: one wing of the one, five cubits long, touched the wall of the house, and its other wing, five cubits long, touched the wing of the other cherub;</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> and of this cherub, one wing, five cubits long, touched the wall of the house, and the other wing, also five cubits long, was joined to the wing of the first cherub.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The wings of these cherubim extended twenty cubits; the cherubim stood on their feet, facing the nave. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> And Solomon made the curtain of blue and purple and crimson fabrics and fine linen, and worked cherubim into it. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> In front of the house he made two pillars thirty-five cubits high, with a capital of five cubits on the top of each.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> He made encircling chains and put them on the tops of the pillars; and he made one hundred pomegranates, and put them on the chains. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> He set up the pillars in front of the temple, one on the right, the other on the left; the one on the right he called Jachin, and the one on the left, Boaz.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> He made an altar of bronze, twenty cubits long, twenty cubits wide, and ten cubits high.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Then he made the molten sea; it was round, ten cubits from rim to rim, and five cubits high. A line of thirty cubits would encircle it completely.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Under it were panels all around, each of ten cubits, surrounding the sea; there were two rows of panels, cast when it was cast.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> It stood on twelve oxen, three facing north, three facing west, three facing south, and three facing east; the sea was set on them. The hindquarters of each were toward the inside.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Its thickness was a handbreadth; its rim was made like the rim of a cup, like the flower of a lily; it held three thousand baths. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> He also made ten basins in which to wash, and set five on the right side, and five on the left. In these they were to rinse what was used for the burnt offering. The sea was for the priests to wash in.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> He made ten golden lampstands as prescribed, and set them in the temple, five on the south side and five on the north.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> He also made ten tables and placed them in the temple, five on the right side and five on the left. And he made one hundred basins of gold.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> He made the court of the priests, and the great court, and doors for the court; he overlaid their doors with bronze.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> He set the sea at the southeast corner of the house.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> And Huram made the pots, the shovels, and the basins. Thus Huram finished the work that he did for King Solomon on the house of God:</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> the two pillars, the bowls, and the two capitals on the top of the pillars; and the two latticeworks to cover the two bowls of the capitals that were on the top of the pillars;</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> the four hundred pomegranates for the two latticeworks, two rows of pomegranates for each latticework, to cover the two bowls of the capitals that were on the pillars.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> He made the stands, the basins on the stands,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> the one sea, and the twelve oxen underneath it.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The pots, the shovels, the forks, and all the equipment for these Huram-abi made of burnished bronze for King Solomon for the house of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> In the plain of the Jordan the king cast them, in the clay ground between Succoth and Zeredah.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Solomon made all these things in great quantities, so that the weight of the bronze was not determined.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> So Solomon made all the things that were in the house of God: the golden altar, the tables for the bread of the Presence,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> the lampstands and their lamps of pure gold to burn before the inner sanctuary, as prescribed;</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> the flowers, the lamps, and the tongs, of purest gold;</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> the snuffers, basins, ladles, and firepans, of pure gold. As for the entrance to the temple: the inner doors to the most holy place and the doors of the nave of the temple were of gold.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"5\">\r\n\t\t\t<VERS vnumber=\"1\"> Thus all the work that Solomon did for the house of the LORD was finished. Solomon brought in the things that his father David had dedicated, and stored the silver, the gold, and all the vessels in the treasuries of the house of God.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Then Solomon assembled the elders of Israel and all the heads of the tribes, the leaders of the ancestral houses of the people of Israel, in Jerusalem, to bring up the ark of the covenant of the LORD out of the city of David, which is Zion.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And all the Israelites assembled before the king at the festival that is in the seventh month.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> And all the elders of Israel came, and the Levites carried the ark.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> So they brought up the ark, the tent of meeting, and all the holy vessels that were in the tent; the priests and the Levites brought them up.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> King Solomon and all the congregation of Israel, who had assembled before him, were before the ark, sacrificing so many sheep and oxen that they could not be numbered or counted.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then the priests brought the ark of the covenant of the LORD to its place, in the inner sanctuary of the house, in the most holy place, underneath the wings of the cherubim.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> For the cherubim spread out their wings over the place of the ark, so that the cherubim made a covering above the ark and its poles.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The poles were so long that the ends of the poles were seen from the holy place in front of the inner sanctuary; but they could not be seen from outside; they are there to this day.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> There was nothing in the ark except the two tablets that Moses put there at Horeb, where the LORD made a covenant with the people of Israel after they came out of Egypt. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Now when the priests came out of the holy place (for all the priests who were present had sanctified themselves, without regard to their divisions),</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> all the levitical singers, Asaph, Heman, and Jeduthun, their sons and kindred, arrayed in fine linen, with cymbals, harps, and lyres, stood east of the altar with one hundred twenty priests who were trumpeters.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> It was the duty of the trumpeters and singers to make themselves heard in unison in praise and thanksgiving to the LORD, and when the song was raised, with trumpets and cymbals and other musical instruments, in praise to the LORD, \"For he is good, for his steadfast love endures forever,\" the house, the house of the LORD, was filled with a cloud,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> so that the priests could not stand to minister because of the cloud; for the glory of the LORD filled the house of God.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"6\">\r\n\t\t\t<VERS vnumber=\"1\"> Then Solomon said, \"The LORD has said that he would reside in thick darkness.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> I have built you an exalted house, a place for you to reside in forever.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then the king turned around and blessed all the assembly of Israel, while all the assembly of Israel stood.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> And he said, \"Blessed be the LORD, the God of Israel, who with his hand has fulfilled what he promised with his mouth to my father David, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> 'Since the day that I brought my people out of the land of Egypt, I have not chosen a city from any of the tribes of Israel in which to build a house, so that my name might be there, and I chose no one as ruler over my people Israel;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> but I have chosen Jerusalem in order that my name may be there, and I have chosen David to be over my people Israel.'</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> My father David had it in mind to build a house for the name of the LORD, the God of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But the LORD said to my father David, 'You did well to consider building a house for my name;</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> nevertheless you shall not build the house, but your son who shall be born to you shall build the house for my name.'</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Now the LORD has fulfilled his promise that he made; for I have succeeded my father David, and sit on the throne of Israel, as the LORD promised, and have built the house for the name of the LORD, the God of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> There I have set the ark, in which is the covenant of the LORD that he made with the people of Israel.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then Solomon stood before the altar of the LORD in the presence of the whole assembly of Israel, and spread out his hands. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Solomon had made a bronze platform five cubits long, five cubits wide, and three cubits high, and had set it in the court; and he stood on it. Then he knelt on his knees in the presence of the whole assembly of Israel, and spread out his hands toward heaven.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> He said, \"O LORD, God of Israel, there is no God like you, in heaven or on earth, keeping covenant in steadfast love with your servants who walk before you with all their heart--</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> you who have kept for your servant, my father David, what you promised to him. Indeed, you promised with your mouth and this day have fulfilled with your hand.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Therefore, O LORD, God of Israel, keep for your servant, my father David, that which you promised him, saying, 'There shall never fail you a successor before me to sit on the throne of Israel, if only your children keep to their way, to walk in my law as you have walked before me.'</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Therefore, O LORD, God of Israel, let your word be confirmed, which you promised to your servant David.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> \"But will God indeed reside with mortals on earth? Even heaven and the highest heaven cannot contain you, how much less this house that I have built!</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Regard your servant's prayer and his plea, O LORD my God, heeding the cry and the prayer that your servant prays to you.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> May your eyes be open day and night toward this house, the place where you promised to set your name, and may you heed the prayer that your servant prays toward this place.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> And hear the plea of your servant and of your people Israel, when they pray toward this place; may you hear from heaven your dwelling place; hear and forgive.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> \"If someone sins against another and is required to take an oath and comes and swears before your altar in this house,</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> may you hear from heaven, and act, and judge your servants, repaying the guilty by bringing their conduct on their own head, and vindicating those who are in the right by rewarding them in accordance with their righteousness.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> \"When your people Israel, having sinned against you, are defeated before an enemy but turn again to you, confess your name, pray and plead with you in this house,</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> may you hear from heaven, and forgive the sin of your people Israel, and bring them again to the land that you gave to them and to their ancestors.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> \"When heaven is shut up and there is no rain because they have sinned against you, and then they pray toward this place, confess your name, and turn from their sin, because you punish them,</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> may you hear in heaven, forgive the sin of your servants, your people Israel, when you teach them the good way in which they should walk; and send down rain upon your land, which you have given to your people as an inheritance.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> \"If there is famine in the land, if there is plague, blight, mildew, locust, or caterpillar; if their enemies besiege them in any of the settlements of the lands; whatever suffering, whatever sickness there is;</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> whatever prayer, whatever plea from any individual or from all your people Israel, all knowing their own suffering and their own sorrows so that they stretch out their hands toward this house;</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> may you hear from heaven, your dwelling place, forgive, and render to all whose heart you know, according to all their ways, for only you know the human heart.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Thus may they fear you and walk in your ways all the days that they live in the land that you gave to our ancestors.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> \"Likewise when foreigners, who are not of your people Israel, come from a distant land because of your great name, and your mighty hand, and your outstretched arm, when they come and pray toward this house,</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> may you hear from heaven your dwelling place, and do whatever the foreigners ask of you, in order that all the peoples of the earth may know your name and fear you, as do your people Israel, and that they may know that your name has been invoked on this house that I have built.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> \"If your people go out to battle against their enemies, by whatever way you shall send them, and they pray to you toward this city that you have chosen and the house that I have built for your name,</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> then hear from heaven their prayer and their plea, and maintain their cause.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> \"If they sin against you-- for there is no one who does not sin-- and you are angry with them and give them to an enemy, so that they are carried away captive to a land far or near;</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> then if they come to their senses in the land to which they have been taken captive, and repent, and plead with you in the land of their captivity, saying, 'We have sinned, and have done wrong; we have acted wickedly';</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> if they repent with all their heart and soul in the land of their captivity, to which they were taken captive, and pray toward their land, which you gave to their ancestors, the city that you have chosen, and the house that I have built for your name,</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> then hear from heaven your dwelling place their prayer and their pleas, maintain their cause and forgive your people who have sinned against you.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> Now, O my God, let your eyes be open and your ears attentive to prayer from this place.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> \"Now rise up, O LORD God, and go to your resting place, you and the ark of your might. Let your priests, O LORD God, be clothed with salvation, and let your faithful rejoice in your goodness.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> O LORD God, do not reject your anointed one. Remember your steadfast love for your servant David.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"7\">\r\n\t\t\t<VERS vnumber=\"1\"> When Solomon had ended his prayer, fire came down from heaven and consumed the burnt offering and the sacrifices; and the glory of the LORD filled the temple.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The priests could not enter the house of the LORD, because the glory of the LORD filled the LORD's house.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> When all the people of Israel saw the fire come down and the glory of the LORD on the temple, they bowed down on the pavement with their faces to the ground, and worshiped and gave thanks to the LORD, saying, \"For he is good, for his steadfast love endures forever.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then the king and all the people offered sacrifice before the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> King Solomon offered as a sacrifice twenty-two thousand oxen and one hundred twenty thousand sheep. So the king and all the people dedicated the house of God.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The priests stood at their posts; the Levites also, with the instruments for music to the LORD that King David had made for giving thanks to the LORD-- for his steadfast love endures forever-- whenever David offered praises by their ministry. Opposite them the priests sounded trumpets; and all Israel stood.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Solomon consecrated the middle of the court that was in front of the house of the LORD; for there he offered the burnt offerings and the fat of the offerings of well-being because the bronze altar Solomon had made could not hold the burnt offering and the grain offering and the fat parts.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> At that time Solomon held the festival for seven days, and all Israel with him, a very great congregation, from Lebo-hamath to the Wadi of Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> On the eighth day they held a solemn assembly; for they had observed the dedication of the altar seven days and the festival seven days.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> On the twenty-third day of the seventh month he sent the people away to their homes, joyful and in good spirits because of the goodness that the LORD had shown to David and to Solomon and to his people Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Thus Solomon finished the house of the LORD and the king's house; all that Solomon had planned to do in the house of the LORD and in his own house he successfully accomplished.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then the LORD appeared to Solomon in the night and said to him: \"I have heard your prayer, and have chosen this place for myself as a house of sacrifice.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> When I shut up the heavens so that there is no rain, or command the locust to devour the land, or send pestilence among my people,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> if my people who are called by my name humble themselves, pray, seek my face, and turn from their wicked ways, then I will hear from heaven, and will forgive their sin and heal their land.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Now my eyes will be open and my ears attentive to the prayer that is made in this place.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> For now I have chosen and consecrated this house so that my name may be there forever; my eyes and my heart will be there for all time.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> As for you, if you walk before me, as your father David walked, doing according to all that I have commanded you and keeping my statutes and my ordinances,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> then I will establish your royal throne, as I made covenant with your father David saying, 'You shall never lack a successor to rule over Israel.'</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> \"But if you turn aside and forsake my statutes and my commandments that I have set before you, and go and serve other gods and worship them, </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> then I will pluck you up from the land that I have given you; and this house, which I have consecrated for my name, I will cast out of my sight, and will make it a proverb and a byword among all peoples. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> And regarding this house, now exalted, everyone passing by will be astonished, and say, 'Why has the LORD done such a thing to this land and to this house?'</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Then they will say, 'Because they abandoned the LORD the God of their ancestors who brought them out of the land of Egypt, and they adopted other gods, and worshiped them and served them; therefore he has brought all this calamity upon them.'\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"8\">\r\n\t\t\t<VERS vnumber=\"1\"> At the end of twenty years, during which Solomon had built the house of the LORD and his own house,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Solomon rebuilt the cities that Huram had given to him, and settled the people of Israel in them.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Solomon went to Hamath-zobah, and captured it.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> He built Tadmor in the wilderness and all the storage towns that he built in Hamath.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> He also built Upper Beth-horon and Lower Beth-horon, fortified cities, with walls, gates, and bars,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> and Baalath, as well as all Solomon's storage towns, and all the towns for his chariots, the towns for his cavalry, and whatever Solomon desired to build, in Jerusalem, in Lebanon, and in all the land of his dominion.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> All the people who were left of the Hittites, the Amorites, the Perizzites, the Hivites, and the Jebusites, who were not of Israel,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> from their descendants who were still left in the land, whom the people of Israel had not destroyed-- these Solomon conscripted for forced labor, as is still the case today.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> But of the people of Israel Solomon made no slaves for his work; they were soldiers, and his officers, the commanders of his chariotry and cavalry.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> These were the chief officers of King Solomon, two hundred fifty of them, who exercised authority over the people.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Solomon brought Pharaoh's daughter from the city of David to the house that he had built for her, for he said, \"My wife shall not live in the house of King David of Israel, for the places to which the ark of the LORD has come are holy.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then Solomon offered up burnt offerings to the LORD on the altar of the LORD that he had built in front of the vestibule,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> as the duty of each day required, offering according to the commandment of Moses for the sabbaths, the new moons, and the three annual festivals-- the festival of unleavened bread, the festival of weeks, and the festival of booths.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> According to the ordinance of his father David, he appointed the divisions of the priests for their service, and the Levites for their offices of praise and ministry alongside the priests as the duty of each day required, and the gatekeepers in their divisions for the several gates; for so David the man of God had commanded.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> They did not turn away from what the king had commanded the priests and Levites regarding anything at all, or regarding the treasuries.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Thus all the work of Solomon was accomplished from the day the foundation of the house of the LORD was laid until the house of the LORD was finished completely. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then Solomon went to Ezion-geber and Eloth on the shore of the sea, in the land of Edom.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Huram sent him, in the care of his servants, ships and servants familiar with the sea. They went to Ophir, together with the servants of Solomon, and imported from there four hundred fifty talents of gold and brought it to King Solomon.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"9\">\r\n\t\t\t<VERS vnumber=\"1\"> When the queen of Sheba heard of the fame of Solomon, she came to Jerusalem to test him with hard questions, having a very great retinue and camels bearing spices and very much gold and precious stones. When she came to Solomon, she discussed with him all that was on her mind.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Solomon answered all her questions; there was nothing hidden from Solomon that he could not explain to her.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> When the queen of Sheba had observed the wisdom of Solomon, the house that he had built,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> the food of his table, the seating of his officials, and the attendance of his servants, and their clothing, his valets, and their clothing, and his burnt offerings that he offered at the house of the LORD, there was no more spirit left in her. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> So she said to the king, \"The report was true that I heard in my own land of your accomplishments and of your wisdom,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> but I did not believe the reports until I came and my own eyes saw it. Not even half of the greatness of your wisdom had been told to me; you far surpass the report that I had heard. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Happy are your people! Happy are these your servants, who continually attend you and hear your wisdom!</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Blessed be the LORD your God, who has delighted in you and set you on his throne as king for the LORD your God. Because your God loved Israel and would establish them forever, he has made you king over them, that you may execute justice and righteousness.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then she gave the king one hundred twenty talents of gold, a very great quantity of spices, and precious stones: there were no spices such as those that the queen of Sheba gave to King Solomon.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Moreover the servants of Huram and the servants of Solomon who brought gold from Ophir brought algum wood and precious stones.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> From the algum wood, the king made steps for the house of the LORD and for the king's house, lyres also and harps for the singers; there never was seen the like of them before in the land of Judah. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Meanwhile King Solomon granted the queen of Sheba every desire that she expressed, well beyond what she had brought to the king. Then she returned to her own land, with her servants.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The weight of gold that came to Solomon in one year was six hundred sixty-six talents of gold,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> besides that which the traders and merchants brought; and all the kings of Arabia and the governors of the land brought gold and silver to Solomon.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> King Solomon made two hundred large shields of beaten gold; six hundred shekels of beaten gold went into each large shield.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> He made three hundred shields of beaten gold; three hundred shekels of gold went into each shield; and the king put them in the House of the Forest of Lebanon.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The king also made a great ivory throne, and overlaid it with pure gold.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The throne had six steps and a footstool of gold, which were attached to the throne, and on each side of the seat were arm rests and two lions standing beside the arm rests,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> while twelve lions were standing, one on each end of a step on the six steps. The like of it was never made in any kingdom.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> 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; silver was not considered as anything in the days of Solomon.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> For the king's ships went to Tarshish with the servants of Huram; once every three years the ships of Tarshish used to come bringing gold, silver, ivory, apes, and peacocks. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Thus King Solomon excelled all the kings of the earth in riches and in wisdom.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> All the kings of the earth sought the presence of Solomon to hear his wisdom, which God had put into his mind.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Every one of them brought a present, objects of silver and gold, garments, weaponry, spices, horses, and mules, so much year by year.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Solomon had four thousand stalls for horses and chariots, and twelve thousand horses, which he stationed in the chariot cities and with the king in Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> He ruled over all the kings from the Euphrates to the land of the Philistines, and to the border of Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> The king made silver as common in Jerusalem as stone, and cedar as plentiful as the sycamore of the Shephelah.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Horses were imported for Solomon from Egypt and from all lands.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Now the rest of the acts of Solomon, from first to last, are they not written in the history of the prophet Nathan, and in the prophecy of Ahijah the Shilonite, and in the visions of the seer Iddo concerning Jeroboam son of Nebat?</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Solomon reigned in Jerusalem over all Israel forty years.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Solomon slept with his ancestors and was buried in the city of his father David; and his son Rehoboam succeeded him.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"10\">\r\n\t\t\t<VERS vnumber=\"1\"> Rehoboam went to Shechem, for all Israel had come to Shechem to make him king.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> When Jeroboam son of Nebat heard of it (for he was in Egypt, where he had fled from King Solomon), then Jeroboam returned from Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> They sent and called him; and Jeroboam and all Israel came and said to Rehoboam,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> \"Your father made our yoke heavy. Now therefore lighten the hard service of your father and his heavy yoke that he placed on us, and we will serve you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> He said to them, \"Come to me again in three days.\" So the people went away.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then King Rehoboam took counsel with the older men who had attended his father Solomon while he was still alive, saying, \"How do you advise me to answer this people?\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> They answered him, \"If you will be kind to this people and please them, and speak good words to them, then they will be your servants forever.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But he rejected the advice that the older men gave him, and consulted the young men who had grown up with him and now attended him.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> He said to them, \"What do you advise that we answer this people who have said to me, 'Lighten the yoke that your father put on us'?\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The young men who had grown up with him said to him, \"Thus should you speak to the people who said to you, 'Your father made our yoke heavy, but you must lighten it for us'; tell them, 'My little finger is thicker than my father's loins.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Now, whereas my father laid on you a heavy yoke, I will add to your yoke. My father disciplined you with whips, but I will discipline you with scorpions.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> So Jeroboam and all the people came to Rehoboam the third day, as the king had said, \"Come to me again the third day.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The king answered them harshly. King Rehoboam rejected the advice of the older men;</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> he spoke to them in accordance with the advice of the young men, \"My father made your yoke heavy, but I will add to it; my father disciplined you with whips, but I will discipline you with scorpions.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> So the king did not listen to the people, because it was a turn of affairs brought about by God so that the LORD might fulfill his word, which he had spoken by Ahijah the Shilonite to Jeroboam son of Nebat.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> When all Israel saw that the king would not listen to them, the people answered the king, \"What share do we have in David? We have no inheritance in the son of Jesse. Each of you to your tents, O Israel! Look now to your own house, O David.\" So all Israel departed to their tents.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> But Rehoboam reigned over the people of Israel who were living in the cities of Judah.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> When King Rehoboam sent Hadoram, who was taskmaster over the forced labor, the people of Israel stoned him to death. King Rehoboam hurriedly mounted his chariot to flee to Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> So Israel has been in rebellion against the house of David to this day.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"11\">\r\n\t\t\t<VERS vnumber=\"1\"> When Rehoboam came to Jerusalem, he assembled one hundred eighty thousand chosen troops of the house of Judah and Benjamin to fight against Israel, to restore the kingdom to Rehoboam.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> But the word of the LORD came to Shemaiah the man of God:</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Say to King Rehoboam of Judah, son of Solomon, and to all Israel in Judah and Benjamin,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> \"Thus says the LORD: You shall not go up or fight against your kindred. Let everyone return home, for this thing is from me.\" So they heeded the word of the LORD and turned back from the expedition against Jeroboam.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Rehoboam resided in Jerusalem, and he built cities for defense in Judah.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> He built up Bethlehem, Etam, Tekoa,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Beth-zur, Soco, Adullam,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Gath, Mareshah, Ziph,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Adoraim, Lachish, Azekah,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Zorah, Aijalon, and Hebron, fortified cities that are in Judah and in Benjamin.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> He made the fortresses strong, and put commanders in them, and stores of food, oil, and wine.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> He also put large shields and spears in all the cities, and made them very strong. So he held Judah and Benjamin.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The priests and the Levites who were in all Israel presented themselves to him from all their territories.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The Levites had left their common lands and their holdings and had come to Judah and Jerusalem, because Jeroboam and his sons had prevented them from serving as priests of the LORD,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> and had appointed his own priests for the high places, and for the goat-demons, and for the calves that he had made.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Those who had set their hearts to seek the LORD God of Israel came after them from all the tribes of Israel to Jerusalem to sacrifice to the LORD, the God of their ancestors.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> They strengthened the kingdom of Judah, and for three years they made Rehoboam son of Solomon secure, for they walked for three years in the way of David and Solomon.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Rehoboam took as his wife Mahalath daughter of Jerimoth son of David, and of Abihail daughter of Eliab son of Jesse.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> She bore him sons: Jeush, Shemariah, and Zaham.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> After her he took Maacah daughter of Absalom, who bore him Abijah, Attai, Ziza, and Shelomith.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Rehoboam loved Maacah daughter of Absalom more than all his other wives and concubines (he took eighteen wives and sixty concubines, and became the father of twenty-eight sons and sixty daughters).</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Rehoboam appointed Abijah son of Maacah as chief prince among his brothers, for he intended to make him king.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> He dealt wisely, and distributed some of his sons through all the districts of Judah and Benjamin, in all the fortified cities; he gave them abundant provisions, and found many wives for them.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"12\">\r\n\t\t\t<VERS vnumber=\"1\"> When the rule of Rehoboam was established and he grew strong, he abandoned the law of the LORD, he and all Israel with him.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> In the fifth year of King Rehoboam, because they had been unfaithful to the LORD, King Shishak of Egypt came up against Jerusalem</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> with twelve hundred chariots and sixty thousand cavalry. A countless army came with him from Egypt-- Libyans, Sukkiim, and Ethiopians.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> He took the fortified cities of Judah and came as far as Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then the prophet Shemaiah came to Rehoboam and to the officers of Judah, who had gathered at Jerusalem because of Shishak, and said to them, \"Thus says the LORD: You abandoned me, so I have abandoned you to the hand of Shishak.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then the officers of Israel and the king humbled themselves and said, \"The LORD is in the right.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> When the LORD saw that they humbled themselves, the word of the LORD came to Shemaiah, saying: \"They have humbled themselves; I will not destroy them, but I will grant them some deliverance, and my wrath shall not be poured out on Jerusalem by the hand of Shishak.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Nevertheless they shall be his servants, so that they may know the difference between serving me and serving the kingdoms of other lands.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> So King Shishak of Egypt came up against Jerusalem; he took away the treasures of the house of the LORD and the treasures of the king's house; he took everything. He also took away the shields of gold that Solomon had made;</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> but King Rehoboam made in place of them shields of bronze, and committed them to the hands of the officers of the guard, who kept the door of the king's house.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Whenever the king went into the house of the LORD, the guard would come along bearing them, and would then bring them back to the guardroom.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Because he humbled himself the wrath of the LORD turned from him, so as not to destroy them completely; moreover, conditions were good in Judah.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> So King Rehoboam established himself in Jerusalem and reigned. Rehoboam was forty-one years old when he began to reign; he reigned seventeen years in Jerusalem, the city that the LORD had chosen out of all the tribes of Israel to put his name there. His mother's name was Naamah the Ammonite.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> He did evil, for he did not set his heart to seek the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Now the acts of Rehoboam, from first to last, are they not written in the records of the prophet Shemaiah and of the seer Iddo, recorded by genealogy? There were continual wars between Rehoboam and Jeroboam.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Rehoboam slept with his ancestors and was buried in the city of David; and his son Abijah succeeded him.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"13\">\r\n\t\t\t<VERS vnumber=\"1\"> In the eighteenth year of King Jeroboam, Abijah began to reign over Judah.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He reigned for three years in Jerusalem. His mother's name was Micaiah daughter of Uriel of Gibeah. Now there was war between Abijah and Jeroboam.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Abijah engaged in battle, having an army of valiant warriors, four hundred thousand picked men; and Jeroboam drew up his line of battle against him with eight hundred thousand picked mighty warriors.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then Abijah stood on the slope of Mount Zemaraim that is in the hill country of Ephraim, and said, \"Listen to me, Jeroboam and all Israel!</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Do you not know that the LORD God of Israel gave the kingship over Israel forever to David and his sons by a covenant of salt?</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Yet Jeroboam son of Nebat, a servant of Solomon son of David, rose up and rebelled against his lord;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> and certain worthless scoundrels gathered around him and defied Rehoboam son of Solomon, when Rehoboam was young and irresolute and could not withstand them.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> \"And now you think that you can withstand the kingdom of the LORD in the hand of the sons of David, because you are a great multitude and have with you the golden calves that Jeroboam made as gods for you.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Have you not driven out the priests of the LORD, the descendants of Aaron, and the Levites, and made priests for yourselves like the peoples of other lands? Whoever comes to be consecrated with a young bull or seven rams becomes a priest of what are no gods.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> But as for us, the LORD is our God, and we have not abandoned him. We have priests ministering to the LORD who are descendants of Aaron, and Levites for their service.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> They offer to the LORD every morning and every evening burnt offerings and fragrant incense, set out the rows of bread on the table of pure gold, and care for the golden lampstand so that its lamps may burn every evening; for we keep the charge of the LORD our God, but you have abandoned him.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> See, God is with us at our head, and his priests have their battle trumpets to sound the call to battle against you. O Israelites, do not fight against the LORD, the God of your ancestors; for you cannot succeed.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Jeroboam had sent an ambush around to come on them from behind; thus his troops were in front of Judah, and the ambush was behind them. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> When Judah turned, the battle was in front of them and behind them. They cried out to the LORD, and the priests blew the trumpets.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Then the people of Judah raised the battle shout. And when the people of Judah shouted, God defeated Jeroboam and all Israel before Abijah and Judah.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The Israelites fled before Judah, and God gave them into their hands.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Abijah and his army defeated them with great slaughter; five hundred thousand picked men of Israel fell slain.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Thus the Israelites were subdued at that time, and the people of Judah prevailed, because they relied on the LORD, the God of their ancestors.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Abijah pursued Jeroboam, and took cities from him: Bethel with its villages and Jeshanah with its villages and Ephron with its villages. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Jeroboam did not recover his power in the days of Abijah; the LORD struck him down, and he died.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> But Abijah grew strong. He took fourteen wives, and became the father of twenty-two sons and sixteen daughters.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The rest of the acts of Abijah, his behavior and his deeds, are written in the story of the prophet Iddo.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"14\">\r\n\t\t\t<VERS vnumber=\"1\"> So Abijah slept with his ancestors, and they buried him in the city of David. His son Asa succeeded him. In his days the land had rest for ten years.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Asa did what was good and right in the sight of the LORD his God.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> He took away the foreign altars and the high places, broke down the pillars, hewed down the sacred poles, </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> and commanded Judah to seek the LORD, the God of their ancestors, and to keep the law and the commandment.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> He also removed from all the cities of Judah the high places and the incense altars. And the kingdom had rest under him.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> He built fortified cities in Judah while the land had rest. He had no war in those years, for the LORD gave him peace.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> He said to Judah, \"Let us build these cities, and surround them with walls and towers, gates and bars; the land is still ours because we have sought the LORD our God; we have sought him, and he has given us peace on every side.\" So they built and prospered.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Asa had an army of three hundred thousand from Judah, armed with large shields and spears, and two hundred eighty thousand troops from Benjamin who carried shields and drew bows; all these were mighty warriors.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Zerah the Ethiopian came out against them with an army of a million men and three hundred chariots, and came as far as Mareshah. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Asa went out to meet him, and they drew up their lines of battle in the valley of Zephathah at Mareshah.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Asa cried to the LORD his God, \"O LORD, there is no difference for you between helping the mighty and the weak. Help us, O LORD our God, for we rely on you, and in your name we have come against this multitude. O LORD, you are our God; let no mortal prevail against you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> So the LORD defeated the Ethiopians before Asa and before Judah, and the Ethiopians fled. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Asa and the army with him pursued them as far as Gerar, and the Ethiopians fell until no one remained alive; for they were broken before the LORD and his army. The people of Judah carried away a great quantity of booty. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> They defeated all the cities around Gerar, for the fear of the LORD was on them. They plundered all the cities; for there was much plunder in them.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> They also attacked the tents of those who had livestock, and carried away sheep and goats in abundance, and camels. Then they returned to Jerusalem. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"15\">\r\n\t\t\t<VERS vnumber=\"1\"> The spirit of God came upon Azariah son of Oded.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He went out to meet Asa and said to him, \"Hear me, Asa, and all Judah and Benjamin: The LORD is with you, while you are with him. If you seek him, he will be found by you, but if you abandon him, he will abandon you.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For a long time Israel was without the true God, and without a teaching priest, and without law;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> but when in their distress they turned to the LORD, the God of Israel, and sought him, he was found by them.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> In those times it was not safe for anyone to go or come, for great disturbances afflicted all the inhabitants of the lands.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> They were broken in pieces, nation against nation and city against city, for God troubled them with every sort of distress.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But you, take courage! Do not let your hands be weak, for your work shall be rewarded.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> When Asa heard these words, the prophecy of Azariah son of Oded, he took courage, and put away the abominable idols from all the land of Judah and Benjamin and from the towns that he had taken in the hill country of Ephraim. He repaired the altar of the LORD that was in front of the vestibule of the house of the LORD. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> He gathered all Judah and Benjamin, and those from Ephraim, Manasseh, and Simeon who were residing as aliens with them, for great numbers had deserted to him from Israel when they saw that the LORD his God was with him.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> They were gathered at Jerusalem in the third month of the fifteenth year of the reign of Asa.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> They sacrificed to the LORD on that day, from the booty that they had brought, seven hundred oxen and seven thousand sheep.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> They entered into a covenant to seek the LORD, the God of their ancestors, with all their heart and with all their soul.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Whoever would not seek the LORD, the God of Israel, should be put to death, whether young or old, man or woman.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> They took an oath to the LORD with a loud voice, and with shouting, and with trumpets, and with horns.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> All Judah rejoiced over the oath; for they had sworn with all their heart, and had sought him with their whole desire, and he was found by them, and the LORD gave them rest all around.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> King Asa even removed his mother Maacah from being queen mother because she had made an abominable image for Asherah. Asa cut down her image, crushed it, and burned it at the Wadi Kidron.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> But the high places were not taken out of Israel. Nevertheless the heart of Asa was true all his days.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> He brought into the house of God the votive gifts of his father and his own votive gifts-- silver, gold, and utensils.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> And there was no more war until the thirty-fifth year of the reign of Asa.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"16\">\r\n\t\t\t<VERS vnumber=\"1\"> In the thirty-sixth year of the reign of Asa, King Baasha of Israel went up against Judah, and built Ramah, to prevent anyone from going out or coming into the territory of King Asa of Judah. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Then Asa took silver and gold from the treasures of the house of the LORD and the king's house, and sent them to King Ben-hadad of Aram, who resided in Damascus, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> \"Let there be an alliance between me and you, like that between my father and your father; I am sending to you silver and gold; go, break your alliance with King Baasha of Israel, so that he may withdraw from me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Ben-hadad listened to King Asa, and sent the commanders of his armies against the cities of Israel. They conquered Ijon, Dan, Abel-maim, and all the store-cities of Naphtali.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> When Baasha heard of it, he stopped building Ramah, and let his work cease.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then King Asa brought all Judah, and they carried away the stones of Ramah and its timber, with which Baasha had been building, and with them he built up Geba and Mizpah.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> At that time the seer Hanani came to King Asa of Judah, and said to him, \"Because you relied on the king of Aram, and did not rely on the LORD your God, the army of the king of Aram has escaped you.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Were not the Ethiopians and the Libyans a huge army with exceedingly many chariots and cavalry? Yet because you relied on the LORD, he gave them into your hand. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> For the eyes of the LORD range throughout the entire earth, to strengthen those whose heart is true to him. You have done foolishly in this; for from now on you will have wars.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then Asa was angry with the seer, and put him in the stocks, in prison, for he was in a rage with him because of this. And Asa inflicted cruelties on some of the people at the same time.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The acts of Asa, from first to last, are written in the Book of the Kings of Judah and Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> In the thirty-ninth year of his reign Asa was diseased in his feet, and his disease became severe; yet even in his disease he did not seek the LORD, but sought help from physicians.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then Asa slept with his ancestors, dying in the forty-first year of his reign.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> They buried him in the tomb that he had hewn out for himself in the city of David. They laid him on a bier that had been filled with various kinds of spices prepared by the perfumer's art; and they made a very great fire in his honor.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"17\">\r\n\t\t\t<VERS vnumber=\"1\"> His son Jehoshaphat succeeded him, and strengthened himself against Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He placed forces in all the fortified cities of Judah, and set garrisons in the land of Judah, and in the cities of Ephraim that his father Asa had taken.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The LORD was with Jehoshaphat, because he walked in the earlier ways of his father; he did not seek the Baals, </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> but sought the God of his father and walked in his commandments, and not according to the ways of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Therefore the LORD established the kingdom in his hand. All Judah brought tribute to Jehoshaphat, and he had great riches and honor.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> His heart was courageous in the ways of the LORD; and furthermore he removed the high places and the sacred poles from Judah. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> In the third year of his reign he sent his officials, Ben-hail, Obadiah, Zechariah, Nethanel, and Micaiah, to teach in the cities of Judah.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> With them were the Levites, Shemaiah, Nethaniah, Zebadiah, Asahel, Shemiramoth, Jehonathan, Adonijah, Tobijah, and Tob-adonijah; and with these Levites, the priests Elishama and Jehoram.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> They taught in Judah, having the book of the law of the LORD with them; they went around through all the cities of Judah and taught among the people.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The fear of the LORD fell on all the kingdoms of the lands around Judah, and they did not make war against Jehoshaphat.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Some of the Philistines brought Jehoshaphat presents, and silver for tribute; and the Arabs also brought him seven thousand seven hundred rams and seven thousand seven hundred male goats.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Jehoshaphat grew steadily greater. He built fortresses and storage cities in Judah.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> He carried out great works in the cities of Judah. He had soldiers, mighty warriors, in Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> This was the muster of them by ancestral houses: Of Judah, the commanders of the thousands: Adnah the commander, with three hundred thousand mighty warriors,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> and next to him Jehohanan the commander, with two hundred eighty thousand,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> and next to him Amasiah son of Zichri, a volunteer for the service of the LORD, with two hundred thousand mighty warriors.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Of Benjamin: Eliada, a mighty warrior, with two hundred thousand armed with bow and shield,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> and next to him Jehozabad with one hundred eighty thousand armed for war.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> These were in the service of the king, besides those whom the king had placed in the fortified cities throughout all Judah.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"18\">\r\n\t\t\t<VERS vnumber=\"1\"> Now Jehoshaphat had great riches and honor; and he made a marriage alliance with Ahab.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> After some years he went down to Ahab in Samaria. Ahab slaughtered an abundance of sheep and oxen for him and for the people who were with him, and induced him to go up against Ramoth-gilead.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> King Ahab of Israel said to King Jehoshaphat of Judah, \"Will you go with me to Ramoth-gilead?\" He answered him, \"I am with you, my people are your people. We will be with you in the war.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But Jehoshaphat also said to the king of Israel, \"Inquire first for the word of the LORD.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then the king of Israel gathered the prophets together, four hundred of them, and said to them, \"Shall we go to battle against Ramoth-gilead, or shall I refrain?\" They said, \"Go up; for God will give it into the hand of the king.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> But Jehoshaphat said, \"Is there no other prophet of the LORD here of whom we may inquire?\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The king of Israel said to Jehoshaphat, \"There is still one other by whom we may inquire of the LORD, Micaiah son of Imlah; but I hate him, for he never prophesies anything favorable about me, but only disaster.\" Jehoshaphat said, \"Let the king not say such a thing.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then the king of Israel summoned an officer and said, \"Bring quickly Micaiah son of Imlah.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Now the king of Israel and King Jehoshaphat of Judah were sitting on their thrones, arrayed in their robes; and they were sitting at the threshing floor at the entrance of the gate of Samaria; and all the prophets were prophesying before them.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Zedekiah son of Chenaanah made for himself horns of iron, and he said, \"Thus says the LORD: With these you shall gore the Arameans until they are destroyed.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> All the prophets were prophesying the same and saying, \"Go up to Ramoth-gilead and triumph; the LORD will give it into the hand of the king.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The messenger who had gone to summon Micaiah said to him, \"Look, the words of the prophets with one accord are favorable to the king; let your word be like the word of one of them, and speak favorably.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> But Micaiah said, \"As the LORD lives, whatever my God says, that I will speak.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> When he had come to the king, the king said to him, \"Micaiah, shall we go to Ramoth-gilead to battle, or shall I refrain?\" He answered, \"Go up and triumph; they will be given into your hand.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> But the king said to him, \"How many times must I make you swear to tell me nothing but the truth in the name of the LORD?\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then Micaiah said, \"I saw all Israel scattered on the mountains, like sheep without a shepherd; and the LORD said, 'These have no master; let each one go home in peace.'\" </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The king of Israel said to Jehoshaphat, \"Did I not tell you that he would not prophesy anything favorable about me, but only disaster?\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then Micaiah said, \"Therefore hear the word of the LORD: I saw the LORD sitting on his throne, with all the host of heaven standing to the right and to the left of him. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> And the LORD said, 'Who will entice King Ahab of Israel, so that he may go up and fall at Ramoth-gilead?' Then one said one thing, and another said another,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> until a spirit came forward and stood before the LORD, saying, 'I will entice him.' The LORD asked him, 'How?'</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> He replied, 'I will go out and be a lying spirit in the mouth of all his prophets.' Then the LORD said, 'You are to entice him, and you shall succeed; go out and do it.'</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> So you see, the LORD has put a lying spirit in the mouth of these your prophets; the LORD has decreed disaster for you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Then Zedekiah son of Chenaanah came up to Micaiah, slapped him on the cheek, and said, \"Which way did the spirit of the LORD pass from me to speak to you?\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Micaiah replied, \"You will find out on that day when you go in to hide in an inner chamber.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> The king of Israel then ordered, \"Take Micaiah, and return him to Amon the governor of the city and to Joash the king's son;</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> and say, 'Thus says the king: Put this fellow in prison, and feed him on reduced rations of bread and water until I return in peace.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Micaiah said, \"If you return in peace, the LORD has not spoken by me.\" And he said, \"Hear, you peoples, all of you!\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> So the king of Israel and King Jehoshaphat of Judah went up to Ramoth-gilead.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> The king of Israel said to Jehoshaphat, \"I will disguise myself and go into battle, but you wear your robes.\" So the king of Israel disguised himself, and they went into battle.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Now the king of Aram had commanded the captains of his chariots, \"Fight with no one small or great, but only with the king of Israel.\"</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> When the captains of the chariots saw Jehoshaphat, they said, \"It is the king of Israel.\" So they turned to fight against him; and Jehoshaphat cried out, and the LORD helped him. God drew them away from him,</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> for when the captains of the chariots saw that it was not the king of Israel, they turned back from pursuing him.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> But a certain man drew his bow and unknowingly struck the king of Israel between the scale armor and the breastplate; so he said to the driver of his chariot, \"Turn around, and carry me out of the battle, for I am wounded.\"</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> The battle grew hot that day, and the king of Israel propped himself up in his chariot facing the Arameans until evening; then at sunset he died.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"19\">\r\n\t\t\t<VERS vnumber=\"1\"> King Jehoshaphat of Judah returned in safety to his house in Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Jehu son of Hanani the seer went out to meet him and said to King Jehoshaphat, \"Should you help the wicked and love those who hate the LORD? Because of this, wrath has gone out against you from the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Nevertheless, some good is found in you, for you destroyed the sacred poles out of the land, and have set your heart to seek God.\" </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Jehoshaphat resided at Jerusalem; then he went out again among the people, from Beer-sheba to the hill country of Ephraim, and brought them back to the LORD, the God of their ancestors.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> He appointed judges in the land in all the fortified cities of Judah, city by city,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> and said to the judges, \"Consider what you are doing, for you judge not on behalf of human beings but on the LORD's behalf; he is with you in giving judgment.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Now, let the fear of the LORD be upon you; take care what you do, for there is no perversion of justice with the LORD our God, or partiality, or taking of bribes.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Moreover in Jerusalem Jehoshaphat appointed certain Levites and priests and heads of families of Israel, to give judgment for the LORD and to decide disputed cases. They had their seat at Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> He charged them: \"This is how you shall act: in the fear of the LORD, in faithfulness, and with your whole heart;</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> whenever a case comes to you from your kindred who live in their cities, concerning bloodshed, law or commandment, statutes or ordinances, then you shall instruct them, so that they may not incur guilt before the LORD and wrath may not come on you and your kindred. Do so, and you will not incur guilt.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> See, Amariah the chief priest is over you in all matters of the LORD; and Zebadiah son of Ishmael, the governor of the house of Judah, in all the king's matters; and the Levites will serve you as officers. Deal courageously, and may the LORD be with the good!\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"20\">\r\n\t\t\t<VERS vnumber=\"1\"> After this the Moabites and Ammonites, and with them some of the Meunites, came against Jehoshaphat for battle. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Messengers came and told Jehoshaphat, \"A great multitude is coming against you from Edom, from beyond the sea; already they are at Hazazon-tamar\" (that is, En-gedi). </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Jehoshaphat was afraid; he set himself to seek the LORD, and proclaimed a fast throughout all Judah.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Judah assembled to seek help from the LORD; from all the towns of Judah they came to seek the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Jehoshaphat stood in the assembly of Judah and Jerusalem, in the house of the LORD, before the new court,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> and said, \"O LORD, God of our ancestors, are you not God in heaven? Do you not rule over all the kingdoms of the nations? In your hand are power and might, so that no one is able to withstand you.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Did you not, O our God, drive out the inhabitants of this land before your people Israel, and give it forever to the descendants of your friend Abraham?</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> They have lived in it, and in it have built you a sanctuary for your name, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> 'If disaster comes upon us, the sword, judgment, or pestilence, or famine, we will stand before this house, and before you, for your name is in this house, and cry to you in our distress, and you will hear and save.' </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> See now, the people of Ammon, Moab, and Mount Seir, whom you would not let Israel invade when they came from the land of Egypt, and whom they avoided and did not destroy--</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> they reward us by coming to drive us out of your possession that you have given us to inherit.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> O our God, will you not execute judgment upon them? For we are powerless against this great multitude that is coming against us. We do not know what to do, but our eyes are on you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Meanwhile all Judah stood before the LORD, with their little ones, their wives, and their children.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then the spirit of the LORD came upon Jahaziel son of Zechariah, son of Benaiah, son of Jeiel, son of Mattaniah, a Levite of the sons of Asaph, in the middle of the assembly.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> He said, \"Listen, all Judah and inhabitants of Jerusalem, and King Jehoshaphat: Thus says the LORD to you: 'Do not fear or be dismayed at this great multitude; for the battle is not yours but God's.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Tomorrow go down against them; they will come up by the ascent of Ziz; you will find them at the end of the valley, before the wilderness of Jeruel.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> This battle is not for you to fight; take your position, stand still, and see the victory of the LORD on your behalf, O Judah and Jerusalem.' Do not fear or be dismayed; tomorrow go out against them, and the LORD will be with you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then Jehoshaphat bowed down with his face to the ground, and all Judah and the inhabitants of Jerusalem fell down before the LORD, worshiping the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> And the Levites, of the Kohathites and the Korahites, stood up to praise the LORD, the God of Israel, with a very loud voice.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> They rose early in the morning and went out into the wilderness of Tekoa; and as they went out, Jehoshaphat stood and said, \"Listen to me, O Judah and inhabitants of Jerusalem! Believe in the LORD your God and you will be established; believe his prophets.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> When he had taken counsel with the people, he appointed those who were to sing to the LORD and praise him in holy splendor, as they went before the army, saying, \"Give thanks to the LORD, for his steadfast love endures forever.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> As they began to sing and praise, the LORD set an ambush against the Ammonites, Moab, and Mount Seir, who had come against Judah, so that they were routed.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> For the Ammonites and Moab attacked the inhabitants of Mount Seir, destroying them utterly; and when they had made an end of the inhabitants of Seir, they all helped to destroy one another.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> When Judah came to the watchtower of the wilderness, they looked toward the multitude; they were corpses lying on the ground; no one had escaped.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> When Jehoshaphat and his people came to take the booty from them, they found livestock in great numbers, goods, clothing, and precious things, which they took for themselves until they could carry no more. They spent three days taking the booty, because of its abundance. </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> On the fourth day they assembled in the Valley of Beracah, for there they blessed the LORD; therefore that place has been called the Valley of Beracah to this day. </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Then all the people of Judah and Jerusalem, with Jehoshaphat at their head, returned to Jerusalem with joy, for the LORD had enabled them to rejoice over their enemies.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> They came to Jerusalem, with harps and lyres and trumpets, to the house of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> The fear of God came on all the kingdoms of the countries when they heard that the LORD had fought against the enemies of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> And the realm of Jehoshaphat was quiet, for his God gave him rest all around.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> So Jehoshaphat reigned over Judah. He was thirty-five years old when he began to reign; he reigned twenty-five years in Jerusalem. His mother's name was Azubah daughter of Shilhi.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> He walked in the way of his father Asa and did not turn aside from it, doing what was right in the sight of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Yet the high places were not removed; the people had not yet set their hearts upon the God of their ancestors.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Now the rest of the acts of Jehoshaphat, from first to last, are written in the Annals of Jehu son of Hanani, which are recorded in the Book of the Kings of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> After this King Jehoshaphat of Judah joined with King Ahaziah of Israel, who did wickedly.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> He joined him in building ships to go to Tarshish; they built the ships in Ezion-geber.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Then Eliezer son of Dodavahu of Mareshah prophesied against Jehoshaphat, saying, \"Because you have joined with Ahaziah, the LORD will destroy what you have made.\" And the ships were wrecked and were not able to go to Tarshish.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"21\">\r\n\t\t\t<VERS vnumber=\"1\"> Jehoshaphat slept with his ancestors and was buried with his ancestors in the city of David; his son Jehoram succeeded him.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He had brothers, the sons of Jehoshaphat: Azariah, Jehiel, Zechariah, Azariah, Michael, and Shephatiah; all these were the sons of King Jehoshaphat of Judah. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Their father gave them many gifts, of silver, gold, and valuable possessions, together with fortified cities in Judah; but he gave the kingdom to Jehoram, because he was the firstborn.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> When Jehoram had ascended the throne of his father and was established, he put all his brothers to the sword, and also some of the officials of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Jehoram was thirty-two years old when he began to reign; he reigned eight years in Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> He walked in the way of the kings of Israel, as the house of Ahab had done; for the daughter of Ahab was his wife. He did what was evil in the sight of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Yet the LORD would not destroy the house of David because of the covenant that he had made with David, and since he had promised to give a lamp to him and to his descendants forever.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> In his days Edom revolted against the rule of Judah and set up a king of their own.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then Jehoram crossed over with his commanders and all his chariots. He set out by night and attacked the Edomites, who had surrounded him and his chariot commanders.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> So Edom has been in revolt against the rule of Judah to this day. At that time Libnah also revolted against his rule, because he had forsaken the LORD, the God of his ancestors.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Moreover he made high places in the hill country of Judah, and led the inhabitants of Jerusalem into unfaithfulness, and made Judah go astray.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> A letter came to him from the prophet Elijah, saying: \"Thus says the LORD, the God of your father David: Because you have not walked in the ways of your father Jehoshaphat or in the ways of King Asa of Judah,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> but have walked in the way of the kings of Israel, and have led Judah and the inhabitants of Jerusalem into unfaithfulness, as the house of Ahab led Israel into unfaithfulness, and because you also have killed your brothers, members of your father's house, who were better than yourself,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> see, the LORD will bring a great plague on your people, your children, your wives, and all your possessions,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> and you yourself will have a severe sickness with a disease of your bowels, until your bowels come out, day after day, because of the disease.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The LORD aroused against Jehoram the anger of the Philistines and of the Arabs who are near the Ethiopians. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> They came up against Judah, invaded it, and carried away all the possessions they found that belonged to the king's house, along with his sons and his wives, so that no son was left to him except Jehoahaz, his youngest son.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> After all this the LORD struck him in his bowels with an incurable disease.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> In course of time, at the end of two years, his bowels came out because of the disease, and he died in great agony. His people made no fire in his honor, like the fires made for his ancestors.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> He was thirty-two years old when he began to reign; he reigned eight years in Jerusalem. He departed with no one's regret. They buried him in the city of David, but not in the tombs of the kings.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"22\">\r\n\t\t\t<VERS vnumber=\"1\"> The inhabitants of Jerusalem made his youngest son Ahaziah king as his successor; for the troops who came with the Arabs to the camp had killed all the older sons. So Ahaziah son of Jehoram reigned as king of Judah.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Ahaziah was forty-two years old when he began to reign; he reigned one year in Jerusalem. His mother's name was Athaliah, a granddaughter of Omri.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> He also walked in the ways of the house of Ahab, for his mother was his counselor in doing wickedly.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> He did what was evil in the sight of the LORD, as the house of Ahab had done; for after the death of his father they were his counselors, to his ruin.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> He even followed their advice, and went with Jehoram son of King Ahab of Israel to make war against King Hazael of Aram at Ramoth-gilead. The Arameans wounded Joram,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> and he returned to be healed in Jezreel of the wounds that he had received at Ramah, when he fought King Hazael of Aram. And Ahaziah son of King Jehoram of Judah went down to see Joram son of Ahab in Jezreel, because he was sick.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But it was ordained by God that the downfall of Ahaziah should come about through his going to visit Joram. For when he came there he went out with Jehoram to meet Jehu son of Nimshi, whom the LORD had anointed to destroy the house of Ahab.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> When Jehu was executing judgment on the house of Ahab, he met the officials of Judah and the sons of Ahaziah's brothers, who attended Ahaziah, and he killed them.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> He searched for Ahaziah, who was captured while hiding in Samaria and was brought to Jehu, and put to death. They buried him, for they said, \"He is the grandson of Jehoshaphat, who sought the LORD with all his heart.\" And the house of Ahaziah had no one able to rule the kingdom.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Now when Athaliah, Ahaziah's mother, saw that her son was dead, she set about to destroy all the royal family of the house of Judah.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But Jehoshabeath, the king's daughter, took Joash son of Ahaziah, and stole him away from among the king's children who were about to be killed; she put him and his nurse in a bedroom. Thus Jehoshabeath, daughter of King Jehoram and wife of the priest Jehoiada-- because she was a sister of Ahaziah-- hid him from Athaliah, so that she did not kill him;</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> he remained with them six years, hidden in the house of God, while Athaliah reigned over the land.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"23\">\r\n\t\t\t<VERS vnumber=\"1\"> But in the seventh year Jehoiada took courage, and entered into a compact with the commanders of the hundreds, Azariah son of Jeroham, Ishmael son of Jehohanan, Azariah son of Obed, Maaseiah son of Adaiah, and Elishaphat son of Zichri.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> They went around through Judah and gathered the Levites from all the towns of Judah, and the heads of families of Israel, and they came to Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then the whole assembly made a covenant with the king in the house of God. Jehoiada said to them, \"Here is the king's son! Let him reign, as the LORD promised concerning the sons of David. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> This is what you are to do: one third of you, priests and Levites, who come on duty on the sabbath, shall be gatekeepers,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> one third shall be at the king's house, and one third at the Gate of the Foundation; and all the people shall be in the courts of the house of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Do not let anyone enter the house of the LORD except the priests and ministering Levites; they may enter, for they are holy, but all the other people shall observe the instructions of the LORD. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The Levites shall surround the king, each with his weapons in his hand; and whoever enters the house shall be killed. Stay with the king in his comings and goings.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The Levites and all Judah did according to all that the priest Jehoiada commanded; each brought his men, who were to come on duty on the sabbath, with those who were to go off duty on the sabbath; for the priest Jehoiada did not dismiss the divisions.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The priest Jehoiada delivered to the captains the spears and the large and small shields that had been King David's, which were in the house of God;</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> and he set all the people as a guard for the king, everyone with weapon in hand, from the south side of the house to the north side of the house, around the altar and the house.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then he brought out the king's son, put the crown on him, and gave him the covenant; they proclaimed him king, and Jehoiada and his sons anointed him; and they shouted, \"Long live the king!\" </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> When Athaliah heard the noise of the people running and praising the king, she went into the house of the LORD to the people;</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> and when she looked, there was the king standing by his pillar at the entrance, and the captains and the trumpeters beside the king, and all the people of the land rejoicing and blowing trumpets, and the singers with their musical instruments leading in the celebration. Athaliah tore her clothes, and cried, \"Treason! Treason!\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then the priest Jehoiada brought out the captains who were set over the army, saying to them, \"Bring her out between the ranks; anyone who follows her is to be put to the sword.\" For the priest said, \"Do not put her to death in the house of the LORD.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> So they laid hands on her; she went into the entrance of the Horse Gate of the king's house, and there they put her to death.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Jehoiada made a covenant between himself and all the people and the king that they should be the LORD's people.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then all the people went to the house of Baal, and tore it down; his altars and his images they broke in pieces, and they killed Mattan, the priest of Baal, in front of the altars.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Jehoiada assigned the care of the house of the LORD to the levitical priests whom David had organized to be in charge of the house of the LORD, to offer burnt offerings to the LORD, as it is written in the law of Moses, with rejoicing and with singing, according to the order of David.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> He stationed the gatekeepers at the gates of the house of the LORD so that no one should enter who was in any way unclean.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> And he took the captains, the nobles, the governors of the people, and all the people of the land, and they brought the king down from the house of the LORD, marching through the upper gate to the king's house. They set the king on the royal throne.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> So all the people of the land rejoiced, and the city was quiet after Athaliah had been killed with the sword.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"24\">\r\n\t\t\t<VERS vnumber=\"1\"> Joash was seven years old when he began to reign; he reigned forty years in Jerusalem; his mother's name was Zibiah of Beer-sheba.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Joash did what was right in the sight of the LORD all the days of the priest Jehoiada.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Jehoiada got two wives for him, and he became the father of sons and daughters.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Some time afterward Joash decided to restore the house of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> He assembled the priests and the Levites and said to them, \"Go out to the cities of Judah and gather money from all Israel to repair the house of your God, year by year; and see that you act quickly.\" But the Levites did not act quickly.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> So the king summoned Jehoiada the chief, and said to him, \"Why have you not required the Levites to bring in from Judah and Jerusalem the tax levied by Moses, the servant of the LORD, on the congregation of Israel for the tent of the covenant?\" </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> For the children of Athaliah, that wicked woman, had broken into the house of God, and had even used all the dedicated things of the house of the LORD for the Baals.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> So the king gave command, and they made a chest, and set it outside the gate of the house of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> A proclamation was made throughout Judah and Jerusalem to bring in for the LORD the tax that Moses the servant of God laid on Israel in the wilderness.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> All the leaders and all the people rejoiced and brought their tax and dropped it into the chest until it was full.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Whenever the chest was brought to the king's officers by the Levites, when they saw that there was a large amount of money in it, the king's secretary and the officer of the chief priest would come and empty the chest and take it and return it to its place. So they did day after day, and collected money in abundance.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The king and Jehoiada gave it to those who had charge of the work of the house of the LORD, and they hired masons and carpenters to restore the house of the LORD, and also workers in iron and bronze to repair the house of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> So those who were engaged in the work labored, and the repairing went forward at their hands, and they restored the house of God to its proper condition and strengthened it.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> When they had finished, they brought the rest of the money to the king and Jehoiada, and with it were made utensils for the house of the LORD, utensils for the service and for the burnt offerings, and ladles, and vessels of gold and silver. They offered burnt offerings in the house of the LORD regularly all the days of Jehoiada.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> But Jehoiada grew old and full of days, and died; he was one hundred thirty years old at his death.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> And they buried him in the city of David among the kings, because he had done good in Israel, and for God and his house.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Now after the death of Jehoiada the officials of Judah came and did obeisance to the king; then the king listened to them.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> They abandoned the house of the LORD, the God of their ancestors, and served the sacred poles and the idols. And wrath came upon Judah and Jerusalem for this guilt of theirs. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Yet he sent prophets among them to bring them back to the LORD; they testified against them, but they would not listen.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Then the spirit of God took possession of Zechariah son of the priest Jehoiada; he stood above the people and said to them, \"Thus says God: Why do you transgress the commandments of the LORD, so that you cannot prosper? Because you have forsaken the LORD, he has also forsaken you.\" </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> But they conspired against him, and by command of the king they stoned him to death in the court of the house of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> King Joash did not remember the kindness that Jehoiada, Zechariah's father, had shown him, but killed his son. As he was dying, he said, \"May the LORD see and avenge!\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> At the end of the year the army of Aram came up against Joash. They came to Judah and Jerusalem, and destroyed all the officials of the people from among them, and sent all the booty they took to the king of Damascus.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Although the army of Aram had come with few men, the LORD delivered into their hand a very great army, because they had abandoned the LORD, the God of their ancestors. Thus they executed judgment on Joash.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> When they had withdrawn, leaving him severely wounded, his servants conspired against him because of the blood of the son of the priest Jehoiada, and they killed him on his bed. So he died; and they buried him in the city of David, but they did not bury him in the tombs of the kings. </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Those who conspired against him were Zabad son of Shimeath the Ammonite, and Jehozabad son of Shimrith the Moabite.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Accounts of his sons, and of the many oracles against him, and of the rebuilding of the house of God are written in the Commentary on the Book of the Kings. And his son Amaziah succeeded him. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"25\">\r\n\t\t\t<VERS vnumber=\"1\"> Amaziah was twenty-five years old when he began to reign, and he reigned twenty-nine years in Jerusalem. His mother's name was Jehoaddan of Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He did what was right in the sight of the LORD, yet not with a true heart.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> As soon as the royal power was firmly in his hand he killed his servants who had murdered his father the king.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But he did not put their children to death, according to what is written in the law, in the book of Moses, where the LORD commanded, \"The parents shall not be put to death for the children, or the children be put to death for the parents; but all shall be put to death for their own sins.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Amaziah assembled the people of Judah, and set them by ancestral houses under commanders of the thousands and of the hundreds for all Judah and Benjamin. He mustered those twenty years old and upward, and found that they were three hundred thousand picked troops fit for war, able to handle spear and shield.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> He also hired one hundred thousand mighty warriors from Israel for one hundred talents of silver.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But a man of God came to him and said, \"O king, do not let the army of Israel go with you, for the LORD is not with Israel-- all these Ephraimites.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Rather, go by yourself and act; be strong in battle, or God will fling you down before the enemy; for God has power to help or to overthrow.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Amaziah said to the man of God, \"But what shall we do about the hundred talents that I have given to the army of Israel?\" The man of God answered, \"The LORD is able to give you much more than this.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then Amaziah discharged the army that had come to him from Ephraim, letting them go home again. But they became very angry with Judah, and returned home in fierce anger.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Amaziah took courage, and led out his people; he went to the Valley of Salt, and struck down ten thousand men of Seir.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The people of Judah captured another ten thousand alive, took them to the top of Sela, and threw them down from the top of Sela, so that all of them were dashed to pieces.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> But the men of the army whom Amaziah sent back, not letting them go with him to battle, fell on the cities of Judah from Samaria to Beth-horon; they killed three thousand people in them, and took much booty.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Now after Amaziah came from the slaughter of the Edomites, he brought the gods of the people of Seir, set them up as his gods, and worshiped them, making offerings to them.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The LORD was angry with Amaziah and sent to him a prophet, who said to him, \"Why have you resorted to a people's gods who could not deliver their own people from your hand?\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> But as he was speaking the king said to him, \"Have we made you a royal counselor? Stop! Why should you be put to death?\" So the prophet stopped, but said, \"I know that God has determined to destroy you, because you have done this and have not listened to my advice.\" </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then King Amaziah of Judah took counsel and sent to King Joash son of Jehoahaz son of Jehu of Israel, saying, \"Come, let us look one another in the face.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> King Joash of Israel sent word to King Amaziah of Judah, \"A thornbush on Lebanon sent to a cedar on Lebanon, saying, 'Give your daughter to my son for a wife'; but a wild animal of Lebanon passed by and trampled down the thornbush.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> You say, 'See, I have defeated Edom,' and your heart has lifted you up in boastfulness. Now stay at home; why should you provoke trouble so that you fall, you and Judah with you?\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> But Amaziah would not listen-- it was God's doing, in order to hand them over, because they had sought the gods of Edom.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> So King Joash of Israel went up; he and King Amaziah of Judah faced one another in battle at Beth-shemesh, which belongs to Judah.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Judah was defeated by Israel; everyone fled home.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> King Joash of Israel captured King Amaziah of Judah, son of Joash, son of Ahaziah, at Beth-shemesh; he brought him to Jerusalem, and broke down the wall of Jerusalem from the Ephraim Gate to the Corner Gate, a distance of four hundred cubits.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> He seized all the gold and silver, and all the vessels that were found in the house of God, and Obed-edom with them; he seized also the treasuries of the king's house, also hostages; then he returned to Samaria.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> King Amaziah son of Joash of Judah, lived fifteen years after the death of King Joash son of Jehoahaz of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Now the rest of the deeds of Amaziah, from first to last, are they not written in the Book of the Kings of Judah and Israel?</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> From the time that Amaziah turned away from the LORD they made a conspiracy against him in Jerusalem, and he fled to Lachish. But they sent after him to Lachish, and killed him there.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> They brought him back on horses; he was buried with his ancestors in the city of David.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"26\">\r\n\t\t\t<VERS vnumber=\"1\"> Then all the people of Judah took Uzziah, who was sixteen years old, and made him king to succeed his father Amaziah.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He rebuilt Eloth and restored it to Judah, after the king slept with his ancestors.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Uzziah was sixteen years old when he began to reign, and he reigned fifty-two years in Jerusalem. His mother's name was Jecoliah of Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> He did what was right in the sight of the LORD, just as his father Amaziah had done.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> He set himself to seek God in the days of Zechariah, who instructed him in the fear of God; and as long as he sought the LORD, God made him prosper.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> He went out and made war against the Philistines, and broke down the wall of Gath and the wall of Jabneh and the wall of Ashdod; he built cities in the territory of Ashdod and elsewhere among the Philistines.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> God helped him against the Philistines, against the Arabs who lived in Gur-baal, and against the Meunites.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The Ammonites paid tribute to Uzziah, and his fame spread even to the border of Egypt, for he became very strong.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Moreover Uzziah built towers in Jerusalem at the Corner Gate, at the Valley Gate, and at the Angle, and fortified them.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> He built towers in the wilderness and hewed out many cisterns, for he had large herds, both in the Shephelah and in the plain, and he had farmers and vinedressers in the hills and in the fertile lands, for he loved the soil.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Moreover Uzziah had an army of soldiers, fit for war, in divisions according to the numbers in the muster made by the secretary Jeiel and the officer Maaseiah, under the direction of Hananiah, one of the king's commanders.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The whole number of the heads of ancestral houses of mighty warriors was two thousand six hundred.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Under their command was an army of three hundred seven thousand five hundred, who could make war with mighty power, to help the king against the enemy.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Uzziah provided for all the army the shields, spears, helmets, coats of mail, bows, and stones for slinging.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> In Jerusalem he set up machines, invented by skilled workers, on the towers and the corners for shooting arrows and large stones. And his fame spread far, for he was marvelously helped until he became strong.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> But when he had become strong he grew proud, to his destruction. For he was false to the LORD his God, and entered the temple of the LORD to make offering on the altar of incense.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> But the priest Azariah went in after him, with eighty priests of the LORD who were men of valor;</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> they withstood King Uzziah, and said to him, \"It is not for you, Uzziah, to make offering to the LORD, but for the priests the descendants of Aaron, who are consecrated to make offering. Go out of the sanctuary; for you have done wrong, and it will bring you no honor from the LORD God.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Then Uzziah was angry. Now he had a censer in his hand to make offering, and when he became angry with the priests a leprous disease broke out on his forehead, in the presence of the priests in the house of the LORD, by the altar of incense. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> When the chief priest Azariah, and all the priests, looked at him, he was leprous in his forehead. They hurried him out, and he himself hurried to get out, because the LORD had struck him. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> King Uzziah was leprous to the day of his death, and being leprous lived in a separate house, for he was excluded from the house of the LORD. His son Jotham was in charge of the palace of the king, governing the people of the land. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Now the rest of the acts of Uzziah, from first to last, the prophet Isaiah son of Amoz wrote.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Uzziah slept with his ancestors; they buried him near his ancestors in the burial field that belonged to the kings, for they said, \"He is leprous.\" His son Jotham succeeded him. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"27\">\r\n\t\t\t<VERS vnumber=\"1\"> Jotham was twenty-five years old when he began to reign; he reigned sixteen years in Jerusalem. His mother's name was Jerushah daughter of Zadok.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He did what was right in the sight of the LORD just as his father Uzziah had done-- only he did not invade the temple of the LORD. But the people still followed corrupt practices.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> He built the upper gate of the house of the LORD, and did extensive building on the wall of Ophel.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Moreover he built cities in the hill country of Judah, and forts and towers on the wooded hills.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> He fought with the king of the Ammonites and prevailed against them. The Ammonites gave him that year one hundred talents of silver, ten thousand cors of wheat and ten thousand of barley. The Ammonites paid him the same amount in the second and the third years.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> So Jotham became strong because he ordered his ways before the LORD his God.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Now the rest of the acts of Jotham, and all his wars and his ways, are written in the Book of the Kings of Israel and Judah.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> He was twenty-five years old when he began to reign; he reigned sixteen years in Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Jotham slept with his ancestors, and they buried him in the city of David; and his son Ahaz succeeded him.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"28\">\r\n\t\t\t<VERS vnumber=\"1\"> Ahaz was twenty years old when he began to reign; he reigned sixteen years in Jerusalem. He did not do what was right in the sight of the LORD, as his ancestor David had done,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> but he walked in the ways of the kings of Israel. He even made cast images for the Baals;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> and he made offerings in the valley of the son of Hinnom, and made his sons pass through fire, according to the abominable practices of the nations whom the LORD drove out before the people of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> He sacrificed and made offerings on the high places, on the hills, and under every green tree.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Therefore the LORD his God gave him into the hand of the king of Aram, who defeated him and took captive a great number of his people and brought them to Damascus. He was also given into the hand of the king of Israel, who defeated him with great slaughter.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Pekah son of Remaliah killed one hundred twenty thousand in Judah in one day, all of them valiant warriors, because they had abandoned the LORD, the God of their ancestors.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> And Zichri, a mighty warrior of Ephraim, killed the king's son Maaseiah, Azrikam the commander of the palace, and Elkanah the next in authority to the king.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The people of Israel took captive two hundred thousand of their kin, women, sons, and daughters; they also took much booty from them and brought the booty to Samaria.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> But a prophet of the LORD was there, whose name was Oded; he went out to meet the army that came to Samaria, and said to them, \"Because the LORD, the God of your ancestors, was angry with Judah, he gave them into your hand, but you have killed them in a rage that has reached up to heaven.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Now you intend to subjugate the people of Judah and Jerusalem, male and female, as your slaves. But what have you except sins against the LORD your God?</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Now hear me, and send back the captives whom you have taken from your kindred, for the fierce wrath of the LORD is upon you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Moreover, certain chiefs of the Ephraimites, Azariah son of Johanan, Berechiah son of Meshillemoth, Jehizkiah son of Shallum, and Amasa son of Hadlai, stood up against those who were coming from the war,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> and said to them, \"You shall not bring the captives in here, for you propose to bring on us guilt against the LORD in addition to our present sins and guilt. For our guilt is already great, and there is fierce wrath against Israel.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> So the warriors left the captives and the booty before the officials and all the assembly.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Then those who were mentioned by name got up and took the captives, and with the booty they clothed all that were naked among them; they clothed them, gave them sandals, provided them with food and drink, and anointed them; and carrying all the feeble among them on donkeys, they brought them to their kindred at Jericho, the city of palm trees. Then they returned to Samaria.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> At that time King Ahaz sent to the king of Assyria for help. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> For the Edomites had again invaded and defeated Judah, and carried away captives.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> And the Philistines had made raids on the cities in the Shephelah and the Negeb of Judah, and had taken Beth-shemesh, Aijalon, Gederoth, Soco with its villages, Timnah with its villages, and Gimzo with its villages; and they settled there.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> For the LORD brought Judah low because of King Ahaz of Israel, for he had behaved without restraint in Judah and had been faithless to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> So King Tilgath-pilneser of Assyria came against him, and oppressed him instead of strengthening him.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> For Ahaz plundered the house of the LORD and the houses of the king and of the officials, and gave tribute to the king of Assyria; but it did not help him.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> In the time of his distress he became yet more faithless to the LORD-- this same King Ahaz.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> For he sacrificed to the gods of Damascus, which had defeated him, and said, \"Because the gods of the kings of Aram helped them, I will sacrifice to them so that they may help me.\" But they were the ruin of him, and of all Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Ahaz gathered together the utensils of the house of God, and cut in pieces the utensils of the house of God. He shut up the doors of the house of the LORD and made himself altars in every corner of Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> In every city of Judah he made high places to make offerings to other gods, provoking to anger the LORD, the God of his ancestors.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Now the rest of his acts and all his ways, from first to last, are written in the Book of the Kings of Judah and Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Ahaz slept with his ancestors, and they buried him in the city, in Jerusalem; but they did not bring him into the tombs of the kings of Israel. His son Hezekiah succeeded him.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"29\">\r\n\t\t\t<VERS vnumber=\"1\"> Hezekiah began to reign when he was twenty-five years old; he reigned twenty-nine years in Jerusalem. His mother's name was Abijah daughter of Zechariah.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He did what was right in the sight of the LORD, just as his ancestor David had done.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> In the first year of his reign, in the first month, he opened the doors of the house of the LORD and repaired them.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> He brought in the priests and the Levites and assembled them in the square on the east.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> He said to them, \"Listen to me, Levites! Sanctify yourselves, and sanctify the house of the LORD, the God of your ancestors, and carry out the filth from the holy place.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For our ancestors have been unfaithful and have done what was evil in the sight of the LORD our God; they have forsaken him, and have turned away their faces from the dwelling of the LORD, and turned their backs.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> They also shut the doors of the vestibule and put out the lamps, and have not offered incense or made burnt offerings in the holy place to the God of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Therefore the wrath of the LORD came upon Judah and Jerusalem, and he has made them an object of horror, of astonishment, and of hissing, as you see with your own eyes.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Our fathers have fallen by the sword and our sons and our daughters and our wives are in captivity for this.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Now it is in my heart to make a covenant with the LORD, the God of Israel, so that his fierce anger may turn away from us.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> My sons, do not now be negligent, for the LORD has chosen you to stand in his presence to minister to him, and to be his ministers and make offerings to him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then the Levites arose, Mahath son of Amasai, and Joel son of Azariah, of the sons of the Kohathites; and of the sons of Merari, Kish son of Abdi, and Azariah son of Jehallelel; and of the Gershonites, Joah son of Zimmah, and Eden son of Joah;</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> and of the sons of Elizaphan, Shimri and Jeuel; and of the sons of Asaph, Zechariah and Mattaniah;</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> and of the sons of Heman, Jehuel and Shimei; and of the sons of Jeduthun, Shemaiah and Uzziel.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> They gathered their brothers, sanctified themselves, and went in as the king had commanded, by the words of the LORD, to cleanse the house of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The priests went into the inner part of the house of the LORD to cleanse it, and they brought out all the unclean things that they found in the temple of the LORD into the court of the house of the LORD; and the Levites took them and carried them out to the Wadi Kidron.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> They began to sanctify on the first day of the first month, and on the eighth day of the month they came to the vestibule of the LORD; then for eight days they sanctified the house of the LORD, and on the sixteenth day of the first month they finished.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then they went inside to King Hezekiah and said, \"We have cleansed all the house of the LORD, the altar of burnt offering and all its utensils, and the table for the rows of bread and all its utensils.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> All the utensils that King Ahaz repudiated during his reign when he was faithless, we have made ready and sanctified; see, they are in front of the altar of the LORD.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Then King Hezekiah rose early, assembled the officials of the city, and went up to the house of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> They brought seven bulls, seven rams, seven lambs, and seven male goats for a sin offering for the kingdom and for the sanctuary and for Judah. He commanded the priests the descendants of Aaron to offer them on the altar of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> So they slaughtered the bulls, and the priests received the blood and dashed it against the altar; they slaughtered the rams and their blood was dashed against the altar; they also slaughtered the lambs and their blood was dashed against the altar.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Then the male goats for the sin offering were brought to the king and the assembly; they laid their hands on them,</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> and the priests slaughtered them and made a sin offering with their blood at the altar, to make atonement for all Israel. For the king commanded that the burnt offering and the sin offering should be made for all Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> He stationed the Levites in the house of the LORD with cymbals, harps, and lyres, according to the commandment of David and of Gad the king's seer and of the prophet Nathan, for the commandment was from the LORD through his prophets.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> The Levites stood with the instruments of David, and the priests with the trumpets.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Then Hezekiah commanded that the burnt offering be offered on the altar. When the burnt offering began, the song to the LORD began also, and the trumpets, accompanied by the instruments of King David of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> The whole assembly worshiped, the singers sang, and the trumpeters sounded; all this continued until the burnt offering was finished.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> When the offering was finished, the king and all who were present with him bowed down and worshiped.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> King Hezekiah and the officials commanded the Levites to sing praises to the LORD with the words of David and of the seer Asaph. They sang praises with gladness, and they bowed down and worshiped.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Then Hezekiah said, \"You have now consecrated yourselves to the LORD; come near, bring sacrifices and thank offerings to the house of the LORD.\" The assembly brought sacrifices and thank offerings; and all who were of a willing heart brought burnt offerings.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> The number of the burnt offerings that the assembly brought was seventy bulls, one hundred rams, and two hundred lambs; all these were for a burnt offering to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> The consecrated offerings were six hundred bulls and three thousand sheep.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> But the priests were too few and could not skin all the burnt offerings, so, until other priests had sanctified themselves, their kindred, the Levites, helped them until the work was finished-- for the Levites were more conscientious than the priests in sanctifying themselves.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Besides the great number of burnt offerings there was the fat of the offerings of well-being, and there were the drink offerings for the burnt offerings. Thus the service of the house of the LORD was restored.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> And Hezekiah and all the people rejoiced because of what God had done for the people; for the thing had come about suddenly.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"30\">\r\n\t\t\t<VERS vnumber=\"1\"> Hezekiah sent word 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 to the LORD the God of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> For the king and his officials and all the assembly in Jerusalem had taken counsel to keep the passover in the second month</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> (for they could not keep it at its proper time because the priests had not sanctified themselves in sufficient number, nor had the people assembled in Jerusalem).</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The plan seemed right to the king and all the assembly.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> So they decreed to make a proclamation throughout all Israel, from Beer-sheba to Dan, that the people should come and keep the passover to the LORD the God of Israel, at Jerusalem; for they had not kept it in great numbers as prescribed.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> So couriers went throughout all Israel and Judah with letters from the king and his officials, as the king had commanded, saying, \"O people of Israel, return to the LORD, the God of Abraham, Isaac, and Israel, so that he may turn again to the remnant of you who have escaped from the hand of the kings of Assyria.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Do not be like your ancestors and your kindred, who were faithless to the LORD God of their ancestors, so that he made them a desolation, as you see.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Do not now be stiff-necked as your ancestors were, but yield yourselves to the LORD and come to his sanctuary, which he has sanctified forever, and serve the LORD your God, so that his fierce anger may turn away from you.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> For as you return to the LORD, your kindred and your children will find compassion with their captors, and return to this land. For the LORD your God is gracious and merciful, and will not turn away his face from you, if you return to him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> So the couriers went from city to city through the country of Ephraim and Manasseh, and as far as Zebulun; but they laughed them to scorn, and mocked them.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Only a few from Asher, Manasseh, and Zebulun humbled themselves and came to Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The hand of God was also on Judah to give them one heart to do what the king and the officials commanded by the word of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Many people came together in Jerusalem to keep the festival of unleavened bread in the second month, a very large assembly.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> They set to work and removed the altars that were in Jerusalem, and all the altars for offering incense they took away and threw into the Wadi Kidron.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> They slaughtered the passover lamb on the fourteenth day of the second month. The priests and the Levites were ashamed, and they sanctified themselves and brought burnt offerings into the house of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> They took their accustomed posts according to the law of Moses the man of God; the priests dashed the blood that they received from the hands of the Levites. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> For there were many in the assembly who had not sanctified themselves; therefore the Levites had to slaughter the passover lamb for everyone who was not clean, to make it holy to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> For a multitude of the people, many of them from Ephraim, Manasseh, Issachar, and Zebulun, had not cleansed themselves, yet they ate the passover otherwise than as prescribed. But Hezekiah prayed for them, saying, \"The good LORD pardon all</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> who set their hearts to seek God, the LORD the God of their ancestors, even though not in accordance with the sanctuary's rules of cleanness.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The LORD heard Hezekiah, and healed the people.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> The people of Israel who were present at Jerusalem kept the festival of unleavened bread seven days with great gladness; and the Levites and the priests praised the LORD day by day, accompanied by loud instruments for the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Hezekiah spoke encouragingly to all the Levites who showed good skill in the service of the LORD. So the people ate the food of the festival for seven days, sacrificing offerings of well-being and giving thanks to the LORD the God of their ancestors.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Then the whole assembly agreed together to keep the festival for another seven days; so they kept it for another seven days with gladness.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> For King Hezekiah of Judah gave the assembly a thousand bulls and seven thousand sheep for offerings, and the officials gave the assembly a thousand bulls and ten thousand sheep. The priests sanctified themselves in great numbers.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> The whole assembly of Judah, the priests and the Levites, and the whole assembly that came out of Israel, and the resident aliens who came out of the land of Israel, and the resident aliens who lived in Judah, rejoiced.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> There was great joy in Jerusalem, for since the time of Solomon son of King David of Israel there had been nothing like this in Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Then the priests and the Levites stood up and blessed the people, and their voice was heard; their prayer came to his holy dwelling in heaven.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"31\">\r\n\t\t\t<VERS vnumber=\"1\"> Now when all this was finished, all Israel who were present went out to the cities of Judah and broke down the pillars, hewed down the sacred poles, and pulled down the high places and the altars throughout all Judah and Benjamin, and in Ephraim and Manasseh, until they had destroyed them all. Then all the people of Israel returned to their cities, all to their individual properties. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Hezekiah appointed the divisions of the priests and of the Levites, division by division, everyone according to his service, the priests and the Levites, for burnt offerings and offerings of well-being, to minister in the gates of the camp of the LORD and to give thanks and praise.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The contribution of the king from his own possessions was for the burnt offerings: the burnt offerings of morning and evening, and the burnt offerings for the sabbaths, the new moons, and the appointed festivals, as it is written in the law of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> He commanded the people who lived in Jerusalem to give the portion due to the priests and the Levites, so that they might devote themselves to the law of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> As soon as the word spread, the people of Israel gave in abundance the first fruits of grain, wine, oil, honey, and of all the produce of the field; and they brought in abundantly the tithe of everything.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The people of Israel and Judah who lived in the cities of Judah also brought in the tithe of cattle and sheep, and the tithe of the dedicated things that had been consecrated to the LORD their God, and laid them in heaps.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> In the third month they began to pile up the heaps, and finished them in the seventh month.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> When Hezekiah and the officials came and saw the heaps, they blessed the LORD and his people Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Hezekiah questioned the priests and the Levites about the heaps.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The chief priest Azariah, who was of the house of Zadok, answered him, \"Since they began to bring the contributions into the house of the LORD, we have had enough to eat and have plenty to spare; for the LORD has blessed his people, so that we have this great supply left over.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then Hezekiah commanded them to prepare store-chambers in the house of the LORD; and they prepared them.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Faithfully they brought in the contributions, the tithes and the dedicated things. The chief officer in charge of them was Conaniah the Levite, with his brother Shimei as second;</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> while Jehiel, Azaziah, Nahath, Asahel, Jerimoth, Jozabad, Eliel, Ismachiah, Mahath, and Benaiah were overseers assisting Conaniah and his brother Shimei, by the appointment of King Hezekiah and of Azariah the chief officer of the house of God.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Kore son of Imnah the Levite, keeper of the east gate, was in charge of the freewill offerings to God, to apportion the contribution reserved for the LORD and the most holy offerings.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Eden, Miniamin, Jeshua, Shemaiah, Amariah, and Shecaniah were faithfully assisting him in the cities of the priests, to distribute the portions to their kindred, old and young alike, by divisions,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> except those enrolled by genealogy, males from three years old and upwards, all who entered the house of the LORD as the duty of each day required, for their service according to their offices, by their divisions.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The enrollment of the priests was according to their ancestral houses; that of the Levites from twenty years old and upwards was according to their offices, by their divisions.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The priests were enrolled with all their little children, their wives, their sons, and their daughters, the whole multitude; for they were faithful in keeping themselves holy.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> And for the descendants of Aaron, the priests, who were in the fields of common land belonging to their towns, town by town, the people designated by name were to distribute portions to every male among the priests and to everyone among the Levites who was enrolled.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Hezekiah did this throughout all Judah; he did what was good and right and faithful before the LORD his God.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> And every work that he undertook in the service of the house of God, and in accordance with the law and the commandments, to seek his God, he did with all his heart; and he prospered.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"32\">\r\n\t\t\t<VERS vnumber=\"1\"> After these things and these acts of faithfulness, King Sennacherib of Assyria came and invaded Judah and encamped against the fortified cities, thinking to win them for himself.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> When Hezekiah saw that Sennacherib had come and intended to fight against Jerusalem,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> he planned with his officers and his warriors to stop the flow of the springs that were outside the city; and they helped him.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> A great many people were gathered, and they stopped all the springs and the wadi that flowed through the land, saying, \"Why should the Assyrian kings come and find water in abundance?\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Hezekiah set to work resolutely and built up the entire wall that was broken down, and raised towers on it, and outside it he built another wall; he also strengthened the Millo in the city of David, and made weapons and shields in abundance. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> He appointed combat commanders over the people, and gathered them together to him in the square at the gate of the city and spoke encouragingly to them, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> \"Be strong and of good courage. Do not be afraid or dismayed before the king of Assyria and all the horde that is with him; for there is one greater with us than with him.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> With him is an arm of flesh; but with us is the LORD our God, to help us and to fight our battles.\" The people were encouraged by the words of King Hezekiah of Judah.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> After this, while King Sennacherib of Assyria was at Lachish with all his forces, he sent his servants to Jerusalem to King Hezekiah of Judah and to all the people of Judah that were in Jerusalem, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> \"Thus says King Sennacherib of Assyria: On what are you relying, that you undergo the siege of Jerusalem?</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Is not Hezekiah misleading you, handing you over to die by famine and by thirst, when he tells you, 'The LORD our God will save us from the hand of the king of Assyria'?</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Was it not this same Hezekiah who took away his high places and his altars and commanded Judah and Jerusalem, saying, 'Before one altar you shall worship, and upon it you shall make your offerings'?</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Do you not know what I and my ancestors have done to all the peoples of other lands? Were the gods of the nations of those lands at all able to save their lands out of my hand?</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Who among all the gods of those nations that my ancestors utterly destroyed was able to save his people from my hand, that your God should be able to save you from my hand?</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Now therefore do not let Hezekiah deceive you or mislead you in this fashion, and do not believe him, for no god of any nation or kingdom has been able to save his people from my hand or from the hand of my ancestors. How much less will your God save you out of my hand!\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> His servants said still more against the Lord GOD and against his servant Hezekiah.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> He also wrote letters to throw contempt on the LORD the God of Israel and to speak against him, saying, \"Just as the gods of the nations in other lands did not rescue their people from my hands, so the God of Hezekiah will not rescue his people from my hand.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> They shouted it with a loud voice in the language of Judah to the people of Jerusalem who were on the wall, to frighten and terrify them, in order that they might take the city.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> They spoke of the God of Jerusalem as if he were like the gods of the peoples of the earth, which are the work of human hands.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Then King Hezekiah and the prophet Isaiah son of Amoz prayed because of this and cried to heaven.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> And the LORD sent an angel who cut off all the mighty warriors and commanders and officers in the camp of the king of Assyria. So he returned in disgrace to his own land. When he came into the house of his god, some of his own sons struck him down there with the sword.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> So the LORD saved Hezekiah and the inhabitants of Jerusalem from the hand of King Sennacherib of Assyria and from the hand of all his enemies; he gave them rest on every side. </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Many brought gifts to the LORD in Jerusalem and precious things to King Hezekiah of Judah, so that he was exalted in the sight of all nations from that time onward.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> In those days Hezekiah became sick and was at the point of death. He prayed to the LORD, and he answered him and gave him a sign.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> But Hezekiah did not respond according to the benefit done to him, for his heart was proud. Therefore wrath came upon him and upon Judah and Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Then Hezekiah humbled himself for the pride of his heart, both he and the inhabitants of Jerusalem, so that the wrath of the LORD did not come upon them in the days of Hezekiah.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Hezekiah had very great riches and honor; and he made for himself treasuries for silver, for gold, for precious stones, for spices, for shields, and for all kinds of costly objects;</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> storehouses also for the yield of grain, wine, and oil; and stalls for all kinds of cattle, and sheepfolds. </VERS>\r\n\t\t\t<VERS vnumber=\"29\"> He likewise provided cities for himself, and flocks and herds in abundance; for God had given him very great possessions.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> This same Hezekiah closed the upper outlet of the waters of Gihon and directed them down to the west side of the city of David. Hezekiah prospered in all his works.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> So also in the matter of the envoys of the officials of Babylon, who had been sent to him to inquire about the sign that had been done in the land, God left him to himself, in order to test him and to know all that was in his heart.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Now the rest of the acts of Hezekiah, and his good deeds, are written in the vision of the prophet Isaiah son of Amoz in the Book of the Kings of Judah and Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Hezekiah slept with his ancestors, and they buried him on the ascent to the tombs of the descendants of David; and all Judah and the inhabitants of Jerusalem did him honor at his death. His son Manasseh succeeded him.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"33\">\r\n\t\t\t<VERS vnumber=\"1\"> Manasseh was twelve years old when he began to reign; he reigned fifty-five years in Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He did what was evil in the sight of the LORD, according to the abominable practices of the nations whom the LORD drove out before the people of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For he rebuilt the high places that his father Hezekiah had pulled down, and erected altars to the Baals, made sacred poles, worshiped all the host of heaven, and served them. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> He built altars in the house of the LORD, of which the LORD had said, \"In Jerusalem shall my name be forever.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> He built altars for all the host of heaven in the two courts of the house of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> He made his son pass through fire in the valley of the son of Hinnom, practiced soothsaying and augury and sorcery, and dealt with mediums and with wizards. He did much evil in the sight of the LORD, provoking him to anger.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The carved image of the idol that he had made he set in the house of God, of which God said to David and to his son Solomon, \"In this house, and in Jerusalem, which I have chosen out of all the tribes of Israel, I will put my name forever;</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> I will never again remove the feet of Israel from the land that I appointed for your ancestors, if only they will be careful to do all that I have commanded them, all the law, the statutes, and the ordinances given through Moses.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Manasseh misled Judah and the inhabitants of Jerusalem, so that they did more evil than the nations whom the LORD had destroyed before the people of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The LORD spoke to Manasseh and to his people, but they gave no heed.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Therefore the LORD brought against them the commanders of the army of the king of Assyria, who took Manasseh captive in manacles, bound him with fetters, and brought him to Babylon.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> While he was in distress he entreated the favor of the LORD his God and humbled himself greatly before the God of his ancestors.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> He prayed to him, and God received his entreaty, heard his plea, and restored him again to Jerusalem and to his kingdom. Then Manasseh knew that the LORD indeed was God.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Afterward he built an outer wall for the city of David west of Gihon, in the valley, reaching the entrance at the Fish Gate; he carried it around Ophel, and raised it to a very great height. He also put commanders of the army in all the fortified cities in Judah.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> He took away the foreign gods and the idol from the house of the LORD, and all the altars that he had built on the mountain of the house of the LORD and in Jerusalem, and he threw them out of the city.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> He also restored the altar of the LORD and offered on it sacrifices of well-being and of thanksgiving; and he commanded Judah to serve the LORD the God of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The people, however, still sacrificed at the high places, but only to the LORD their God.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Now the rest of the acts of Manasseh, his prayer to his God, and the words of the seers who spoke to him in the name of the LORD God of Israel, these are in the Annals of the Kings of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> His prayer, and how God received his entreaty, all his sin and his faithlessness, the sites on which he built high places and set up the sacred poles and the images, before he humbled himself, these are written in the records of the seers. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> So Manasseh slept with his ancestors, and they buried him in his house. His son Amon succeeded him.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Amon was twenty-two years old when he began to reign; he reigned two years in Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> He did what was evil in the sight of the LORD, as his father Manasseh had done. Amon sacrificed to all the images that his father Manasseh had made, and served them.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> He did not humble himself before the LORD, as his father Manasseh had humbled himself, but this Amon incurred more and more guilt.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> His servants conspired against him and killed him in his house.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> But the people of the land killed all those who had conspired against King Amon; and the people of the land made his son Josiah king to succeed him.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"34\">\r\n\t\t\t<VERS vnumber=\"1\"> Josiah was eight years old when he began to reign; he reigned thirty-one years in Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He did what was right in the sight of the LORD, and walked in the ways of his ancestor David; he did not turn aside to the right or to the left.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For in the eighth year of his reign, while he was still a boy, he began to seek the God of his ancestor David, and in the twelfth year he began to purge Judah and Jerusalem of the high places, the sacred poles, and the carved and the cast images. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> In his presence they pulled down the altars of the Baals; he demolished the incense altars that stood above them. He broke down the sacred poles and the carved and the cast images; he made dust of them and scattered it over the graves of those who had sacrificed to them. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> He also burned the bones of the priests on their altars, and purged Judah and Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> In the towns of Manasseh, Ephraim, and Simeon, and as far as Naphtali, in their ruins all around, </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> he broke down the altars, beat the sacred poles and the images into powder, and demolished all the incense altars throughout all the land of Israel. Then he returned to Jerusalem. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> In the eighteenth year of his reign, when he had purged the land and the house, he sent Shaphan son of Azaliah, Maaseiah the governor of the city, and Joah son of Joahaz, the recorder, to repair the house of the LORD his God.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> They came to the high priest Hilkiah and delivered the money that had been brought into the house of God, which the Levites, the keepers of the threshold, had collected from Manasseh and Ephraim and from all the remnant of Israel and from all Judah and Benjamin and from the inhabitants of Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> They delivered it to the workers who had the oversight of the house of the LORD, and the workers who were working in the house of the LORD gave it for repairing and restoring the house.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> They gave it to the carpenters and the builders to buy quarried stone, and timber for binders, and beams for the buildings that the kings of Judah had let go to ruin.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The people did the work faithfully. Over them were appointed the Levites Jahath and Obadiah, of the sons of Merari, along with Zechariah and Meshullam, of the sons of the Kohathites, to have oversight. Other Levites, all skillful with instruments of music,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> were over the burden bearers and directed all who did work in every kind of service; and some of the Levites were scribes, and officials, and gatekeepers.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> While they were bringing out the money that had been brought into the house of the LORD, the priest Hilkiah found the book of the law of the LORD given through Moses.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Hilkiah said to the secretary Shaphan, \"I have found the book of the law in the house of the LORD\"; and Hilkiah gave the book to Shaphan.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Shaphan brought the book to the king, and further reported to the king, \"All that was committed to your servants they are doing.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> They have emptied out the money that was found in the house of the LORD and have delivered it into the hand of the overseers and the workers.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The secretary Shaphan informed the king, \"The priest Hilkiah has given me a book.\" Shaphan then read it aloud to the king.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> When the king heard the words of the law he tore his clothes.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Then the king commanded Hilkiah, Ahikam son of Shaphan, Abdon son of Micah, the secretary Shaphan, and the king's servant Asaiah:</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> \"Go, inquire of the LORD for me and for those who are left in Israel and in Judah, concerning the words of the book that has been found; for the wrath of the LORD that is poured out on us is great, because our ancestors did not keep the word of the LORD, to act in accordance with all that is written in this book.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> So Hilkiah and those whom the king had sent went to the prophet Huldah, the wife of Shallum son of Tokhath son of Hasrah, keeper of the wardrobe (who lived in Jerusalem in the Second Quarter) and spoke to her to that effect.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> She declared to them, \"Thus says the LORD, the God of Israel: Tell the man who sent you to me,</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Thus says the LORD: I will indeed bring disaster upon this place and upon its inhabitants, all the curses that are written in the book that was read before the king of Judah.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Because they have forsaken me and have made offerings to other gods, so that they have provoked me to anger with all the works of their hands, my wrath will be poured out on this place and will not be quenched.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> But as to the king of Judah, who sent you to inquire of the LORD, thus shall you say to him: Thus says the LORD, the God of Israel: Regarding the words that you have heard,</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> because your heart was penitent and you humbled yourself before God when you heard his words against this place and its inhabitants, and you have humbled yourself before me, and have torn your clothes and wept before me, I also have heard you, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> I will gather you to your ancestors and you shall be gathered to your grave in peace; your eyes shall not see all the disaster that I will bring on this place and its inhabitants.\" They took the message back to the king.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Then the king sent word and gathered together all the elders of Judah and Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> The king went up to the house of the LORD, with all the people of Judah, the inhabitants of Jerusalem, the priests and the Levites, all the people both great and small; he read in their hearing all the words of the book of the covenant that had been found in the house of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> The king stood in his place and made a covenant before the LORD, to follow the LORD, keeping his commandments, his decrees, and his statutes, with all his heart and all his soul, to perform the words of the covenant that were written in this book.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Then he made all who were present in Jerusalem and in Benjamin pledge themselves to it. And the inhabitants of Jerusalem acted according to the covenant of God, the God of their ancestors.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Josiah took away all the abominations from all the territory that belonged to the people of Israel, and made all who were in Israel worship the LORD their God. All his days they did not turn away from following the LORD the God of their ancestors.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"35\">\r\n\t\t\t<VERS vnumber=\"1\"> Josiah kept a passover to the LORD in Jerusalem; they slaughtered the passover lamb on the fourteenth day of the first month.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He appointed the priests to their offices and encouraged them in the service of the house of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> He said to the Levites who taught all Israel and who were holy to the LORD, \"Put the holy ark in the house that Solomon son of David, king of Israel, built; you need no longer carry it on your shoulders. Now serve the LORD your God and his people Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Make preparations by your ancestral houses by your divisions, following the written directions of King David of Israel and the written directions of his son Solomon.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Take position in the holy place according to the groupings of the ancestral houses of your kindred the people, and let there be Levites for each division of an ancestral house. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Slaughter the passover lamb, sanctify yourselves, and on behalf of your kindred make preparations, acting according to the word of the LORD by Moses.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then Josiah contributed to the people, as passover offerings for all that were present, lambs and kids from the flock to the number of thirty thousand, and three thousand bulls; these were from the king's possessions.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> His officials contributed willingly to the people, to the priests, and to the Levites. Hilkiah, Zechariah, and Jehiel, the chief officers of the house of God, gave to the priests for the passover offerings two thousand six hundred lambs and kids and three hundred bulls.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Conaniah also, and his brothers Shemaiah and Nethanel, and Hashabiah and Jeiel and Jozabad, the chiefs of the Levites, gave to the Levites for the passover offerings five thousand lambs and kids and five hundred bulls.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> When the service had been prepared for, the priests stood in their place, and the Levites in their divisions according to the king's command.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> They slaughtered the passover lamb, and the priests dashed the blood that they received from them, while the Levites did the skinning. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> They set aside the burnt offerings so that they might distribute them according to the groupings of the ancestral houses of the people, to offer to the LORD, as it is written in the book of Moses. And they did the same with the bulls.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> They roasted the passover lamb with fire according to the ordinance; and they boiled the holy offerings in pots, in caldrons, and in pans, and carried them quickly to all the people.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Afterward they made preparations for themselves and for the priests, because the priests the descendants of Aaron were occupied in offering the burnt offerings and the fat parts until night; so the Levites made preparations for themselves and for the priests, the descendants of Aaron.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The singers, the descendants of Asaph, were in their place according to the command of David, and Asaph, and Heman, and the king's seer Jeduthun. The gatekeepers were at each gate; they did not need to interrupt their service, for their kindred the Levites made preparations for them.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> So all the service of the LORD was prepared that day, to keep the passover and to offer burnt offerings on the altar of the LORD, according to the command of King Josiah.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The people of Israel who were present kept the passover at that time, and the festival of unleavened bread seven days.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> No passover like it had been kept in Israel since the days of the prophet Samuel; none of the kings of Israel had kept such a passover as was kept by Josiah, by the priests and the Levites, by all Judah and Israel who were present, and by the inhabitants of Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> In the eighteenth year of the reign of Josiah this passover was kept.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> After all this, when Josiah had set the temple in order, King Neco of Egypt went up to fight at Carchemish on the Euphrates, and Josiah went out against him.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> But Neco sent envoys to him, saying, \"What have I to do with you, king of Judah? I am not coming against you today, but against the house with which I am at war; and God has commanded me to hurry. Cease opposing God, who is with me, so that he will not destroy you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> But Josiah would not turn away from him, but disguised himself in order to fight with him. He did not listen to the words of Neco from the mouth of God, but joined battle in the plain of Megiddo.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> The archers shot King Josiah; and the king said to his servants, \"Take me away, for I am badly wounded.\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> So his servants took him out of the chariot and carried him in his second chariot and brought him to Jerusalem. There he died, and was buried in the tombs of his ancestors. All Judah and Jerusalem mourned for Josiah. </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Jeremiah also uttered a lament for Josiah, and all the singing men and singing women have spoken of Josiah in their laments to this day. They made these a custom in Israel; they are recorded in the Laments.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Now the rest of the acts of Josiah and his faithful deeds in accordance with what is written in the law of the LORD,</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> and his acts, first and last, are written in the Book of the Kings of Israel and Judah.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"36\">\r\n\t\t\t<VERS vnumber=\"1\"> The people of the land took Jehoahaz son of Josiah and made him king to succeed his father in Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Jehoahaz was twenty-three years old when he began to reign; he reigned three months in Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then the king of Egypt deposed him in Jerusalem and laid on the land a tribute of one hundred talents of silver and one talent of gold.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The king of Egypt made his brother Eliakim king over Judah and Jerusalem, and changed his name to Jehoiakim; but Neco took his brother Jehoahaz and carried him to Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Jehoiakim was twenty-five years old when he began to reign; he reigned eleven years in Jerusalem. He did what was evil in the sight of the LORD his God.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Against him King Nebuchadnezzar of Babylon came up, and bound him with fetters to take him to Babylon.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Nebuchadnezzar also carried some of the vessels of the house of the LORD to Babylon and put them in his palace in Babylon.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Now the rest of the acts of Jehoiakim, and the abominations that he did, and what was found against him, are written in the Book of the Kings of Israel and Judah; and his son Jehoiachin succeeded him.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Jehoiachin was eight years old when he began to reign; he reigned three months and ten days in Jerusalem. He did what was evil in the sight of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> In the spring of the year King Nebuchadnezzar sent and brought him to Babylon, along with the precious vessels of the house of the LORD, and made his brother Zedekiah king over Judah and Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Zedekiah was twenty-one years old when he began to reign; he reigned eleven years in Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> He did what was evil in the sight of the LORD his God. He did not humble himself before the prophet Jeremiah who spoke from the mouth of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> He also rebelled against King Nebuchadnezzar, who had made him swear by God; he stiffened his neck and hardened his heart against turning to the LORD, the God of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> All the leading priests and the people also were exceedingly unfaithful, following all the abominations of the nations; and they polluted the house of the LORD that he had consecrated in Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The LORD, the God of their ancestors, sent persistently to them by his messengers, because he had compassion on his people and on his dwelling place;</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> but they kept mocking the messengers of God, despising his words, and scoffing at his prophets, until the wrath of the LORD against his people became so great that there was no remedy.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Therefore he brought up against them the king of the Chaldeans, who killed their youths with the sword in the house of their sanctuary, and had no compassion on young man or young woman, the aged or the feeble; he gave them all into his hand.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> All the vessels of the house of God, large and small, and the treasures of the house of the LORD, and the treasures of the king and of his officials, all these he brought to Babylon.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> They burned the house of God, broke down the wall of Jerusalem, burned all its palaces with fire, and destroyed all its precious vessels.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> He took into exile in Babylon those who had escaped from the sword, and they became servants to him and to his sons until the establishment of the kingdom of Persia,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> to fulfill the word of the LORD by the mouth of Jeremiah, until the land had made up for its sabbaths. All the days that it lay desolate it kept sabbath, to fulfill seventy years.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> In the first year of King Cyrus of Persia, in fulfillment of the word of the LORD spoken by Jeremiah, the LORD stirred up the spirit of King Cyrus of Persia so that he sent a herald throughout all his kingdom and also declared in a written edict:</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> \"Thus says King Cyrus of Persia: The LORD, the God of heaven, has given me all the kingdoms of the earth, and he has charged me to build him a house at Jerusalem, which is in Judah. Whoever is among you of all his people, may the LORD his God be with him! Let him go up.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"15\" bname=\"Ezra\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> In the first year of King Cyrus of Persia, in order that the word of the LORD by the mouth of Jeremiah might be accomplished, the LORD stirred up the spirit of King Cyrus of Persia so that he sent a herald throughout all his kingdom, and also in a written edict declared:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"Thus says King Cyrus of Persia: The LORD, the God of heaven, has given me all the kingdoms of the earth, and he has charged me to build him a house at Jerusalem in Judah.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Any of those among you who are of his people-- may their God be with them!-- are now permitted to go up to Jerusalem in Judah, and rebuild the house of the LORD, the God of Israel-- he is the God who is in Jerusalem;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> and let all survivors, in whatever place they reside, be assisted by the people of their place with silver and gold, with goods and with animals, besides freewill offerings for the house of God in Jerusalem.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The heads of the families of Judah and Benjamin, and the priests and the Levites-- everyone whose spirit God had stirred-- got ready to go up and rebuild the house of the LORD in Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> All their neighbors aided them with silver vessels, with gold, with goods, with animals, and with valuable gifts, besides all that was freely offered.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> King Cyrus himself brought out the vessels of the house of the LORD that Nebuchadnezzar had carried away from Jerusalem and placed in the house of his gods.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> King Cyrus of Persia had them released into the charge of Mithredath the treasurer, who counted them out to Sheshbazzar the prince of Judah.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> And this was the inventory: gold basins, thirty; silver basins, one thousand; knives, twenty-nine; </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> gold bowls, thirty; other silver bowls, four hundred ten; other vessels, one thousand;</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> the total of the gold and silver vessels was five thousand four hundred. All these Sheshbazzar brought up, when the exiles were brought up from Babylonia to Jerusalem.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> Now these were the people of the province who came from those captive exiles whom King Nebuchadnezzar of Babylon had carried captive to Babylonia; they returned to Jerusalem and Judah, all to their own towns.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> They came with Zerubbabel, Jeshua, Nehemiah, Seraiah, Reelaiah, Mordecai, Bilshan, Mispar, Bigvai, Rehum, and Baanah. The number of the Israelite people:</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> the descendants of Parosh, two thousand one hundred seventy-two.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Of Shephatiah, three hundred seventy-two.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Of Arah, seven hundred seventy-five.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Of Pahath-moab, namely the descendants of Jeshua and Joab, two thousand eight hundred twelve.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Of Elam, one thousand two hundred fifty-four.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Of Zattu, nine hundred forty-five.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Of Zaccai, seven hundred sixty.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Of Bani, six hundred forty-two.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Of Bebai, six hundred twenty-three.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Of Azgad, one thousand two hundred twenty-two.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Of Adonikam, six hundred sixty-six.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Of Bigvai, two thousand fifty-six.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Of Adin, four hundred fifty-four.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Of Ater, namely of Hezekiah, ninety-eight.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Of Bezai, three hundred twenty-three.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Of Jorah, one hundred twelve.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Of Hashum, two hundred twenty-three.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Of Gibbar, ninety-five.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Of Bethlehem, one hundred twenty-three.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The people of Netophah, fifty-six.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Of Anathoth, one hundred twenty-eight.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> The descendants of Azmaveth, forty-two.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Of Kiriatharim, Chephirah, and Beeroth, seven hundred forty-three.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Of Ramah and Geba, six hundred twenty-one.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> The people of Michmas, one hundred twenty-two.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Of Bethel and Ai, two hundred twenty-three.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> The descendants of Nebo, fifty-two.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Of Magbish, one hundred fifty-six.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Of the other Elam, one thousand two hundred fifty-four.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Of Harim, three hundred twenty.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Of Lod, Hadid, and Ono, seven hundred twenty-five.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Of Jericho, three hundred forty-five.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Of Senaah, three thousand six hundred thirty.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> The priests: the descendants of Jedaiah, of the house of Jeshua, nine hundred seventy-three.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Of Immer, one thousand fifty-two.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Of Pashhur, one thousand two hundred forty-seven.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> Of Harim, one thousand seventeen.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> The Levites: the descendants of Jeshua and Kadmiel, of the descendants of Hodaviah, seventy-four.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> The singers: the descendants of Asaph, one hundred twenty-eight.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> The descendants of the gatekeepers: of Shallum, of Ater, of Talmon, of Akkub, of Hatita, and of Shobai, in all one hundred thirty-nine.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> The temple servants: the descendants of Ziha, Hasupha, Tabbaoth,</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> Keros, Siaha, Padon,</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> Lebanah, Hagabah, Akkub,</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> Hagab, Shamlai, Hanan,</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> Giddel, Gahar, Reaiah,</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> Rezin, Nekoda, Gazzam,</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> Uzza, Paseah, Besai,</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> Asnah, Meunim, Nephisim,</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> Bakbuk, Hakupha, Harhur,</VERS>\r\n\t\t\t<VERS vnumber=\"52\"> Bazluth, Mehida, Harsha,</VERS>\r\n\t\t\t<VERS vnumber=\"53\"> Barkos, Sisera, Temah,</VERS>\r\n\t\t\t<VERS vnumber=\"54\"> Neziah, and Hatipha.</VERS>\r\n\t\t\t<VERS vnumber=\"55\"> The descendants of Solomon's servants: Sotai, Hassophereth, Peruda,</VERS>\r\n\t\t\t<VERS vnumber=\"56\"> Jaalah, Darkon, Giddel,</VERS>\r\n\t\t\t<VERS vnumber=\"57\"> Shephatiah, Hattil, Pochereth-hazzebaim, and Ami.</VERS>\r\n\t\t\t<VERS vnumber=\"58\"> All the temple servants and the descendants of Solomon's servants were three hundred ninety-two.</VERS>\r\n\t\t\t<VERS vnumber=\"59\"> The following were those who came up from Tel-melah, Tel-harsha, Cherub, Addan, and Immer, though they could not prove their families or their descent, whether they belonged to Israel:</VERS>\r\n\t\t\t<VERS vnumber=\"60\"> the descendants of Delaiah, Tobiah, and Nekoda, six hundred fifty-two.</VERS>\r\n\t\t\t<VERS vnumber=\"61\"> Also, of the descendants of the priests: the descendants of Habaiah, Hakkoz, and Barzillai (who had married one of the daughters of Barzillai the Gileadite, and was called by their name).</VERS>\r\n\t\t\t<VERS vnumber=\"62\"> These looked for their entries in the genealogical records, but they were not found there, and so they were excluded from the priesthood as unclean;</VERS>\r\n\t\t\t<VERS vnumber=\"63\"> the governor told them that they were not to partake of the most holy food, until there should be a priest to consult Urim and Thummim.</VERS>\r\n\t\t\t<VERS vnumber=\"64\"> The whole assembly together was forty-two thousand three hundred sixty,</VERS>\r\n\t\t\t<VERS vnumber=\"65\"> besides their male and female servants, of whom there were seven thousand three hundred thirty-seven; and they had two hundred male and female singers.</VERS>\r\n\t\t\t<VERS vnumber=\"66\"> They had seven hundred thirty-six horses, two hundred forty-five mules,</VERS>\r\n\t\t\t<VERS vnumber=\"67\"> four hundred thirty-five camels, and six thousand seven hundred twenty donkeys.</VERS>\r\n\t\t\t<VERS vnumber=\"68\"> As soon as they came to the house of the LORD in Jerusalem, some of the heads of families made freewill offerings for the house of God, to erect it on its site.</VERS>\r\n\t\t\t<VERS vnumber=\"69\"> According to their resources they gave to the building fund sixty-one thousand darics of gold, five thousand minas of silver, and one hundred priestly robes.</VERS>\r\n\t\t\t<VERS vnumber=\"70\"> The priests, the Levites, and some of the people lived in Jerusalem and its vicinity; and the singers, the gatekeepers, and the temple servants lived in their towns, and all Israel in their towns. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> When the seventh month came, and the Israelites were in the towns, the people gathered together in Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Then Jeshua son of Jozadak, with his fellow priests, and Zerubbabel son of Shealtiel with his kin set out to build the altar of the God of Israel, to offer burnt offerings on it, as prescribed in the law of Moses the man of God.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> They set up the altar on its foundation, because they were in dread of the neighboring peoples, and they offered burnt offerings upon it to the LORD, morning and evening.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> And they kept the festival of booths, as prescribed, and offered the daily burnt offerings by number according to the ordinance, as required for each day, </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> and after that the regular burnt offerings, the offerings at the new moon and at all the sacred festivals of the LORD, and the offerings of everyone who made a freewill offering to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> From the first day of the seventh month they began to offer burnt offerings to the LORD. But the foundation of the temple of the LORD was not yet laid.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> So they gave money to the masons and the carpenters, and food, drink, and oil to the Sidonians and the Tyrians to bring cedar trees from Lebanon to the sea, to Joppa, according to the grant that they had from King Cyrus of Persia.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> In the second year after their arrival at the house of God at Jerusalem, in the second month, Zerubbabel son of Shealtiel and Jeshua son of Jozadak made a beginning, together with the rest of their people, the priests and the Levites and all who had come to Jerusalem from the captivity. They appointed the Levites, from twenty years old and upward, to have the oversight of the work on the house of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> And Jeshua with his sons and his kin, and Kadmiel and his sons, Binnui and Hodaviah along with the sons of Henadad, the Levites, their sons and kin, together took charge of the workers in the house of God. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> When the builders laid the foundation of the temple of the LORD, the priests in their vestments were stationed to praise the LORD with trumpets, and the Levites, the sons of Asaph, with cymbals, according to the directions of King David of Israel;</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> and they sang responsively, praising and giving thanks to the LORD, \"For he is good, for his steadfast love endures forever toward Israel.\" And all the people responded with a great shout when they praised the LORD, because the foundation of the house of the LORD was laid.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> But many of the priests and Levites and heads of families, old people who had seen the first house on its foundations, wept with a loud voice when they saw this house, though many shouted aloud for joy,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> so that the people could not distinguish the sound of the joyful shout from the sound of the people's weeping, for the people shouted so loudly that the sound was heard far away.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> When the adversaries of Judah and Benjamin heard that the returned exiles were building a temple to the LORD, the God of Israel,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> they approached Zerubbabel and the heads of families and said to them, \"Let us build with you, for we worship your God as you do, and we have been sacrificing to him ever since the days of King Esar-haddon of Assyria who brought us here.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> But Zerubbabel, Jeshua, and the rest of the heads of families in Israel said to them, \"You shall have no part with us in building a house to our God; but we alone will build to the LORD, the God of Israel, as King Cyrus of Persia has commanded us.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then the people of the land discouraged the people of Judah, and made them afraid to build,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> and they bribed officials to frustrate their plan throughout the reign of King Cyrus of Persia and until the reign of King Darius of Persia.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> In the reign of Ahasuerus, in his accession year, they wrote an accusation against the inhabitants of Judah and Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> And in the days of Artaxerxes, Bishlam and Mithredath and Tabeel and the rest of their associates wrote to King Artaxerxes of Persia; the letter was written in Aramaic and translated.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Rehum the royal deputy and Shimshai the scribe wrote a letter against Jerusalem to King Artaxerxes as follows</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> (then Rehum the royal deputy, Shimshai the scribe, and the rest of their associates, the judges, the envoys, the officials, the Persians, the people of Erech, the Babylonians, the people of Susa, that is, the Elamites,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> and the rest of the nations whom the great and noble Osnappar deported and settled in the cities of Samaria and in the rest of the province Beyond the River wrote-- and now</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> this is a copy of the letter that they sent): \"To King Artaxerxes: Your servants, the people of the province Beyond the River, send greeting. And now</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> may it be known to the king that the Jews who came up from you to us have gone to Jerusalem. They are rebuilding that rebellious and wicked city; they are finishing the walls and repairing the foundations.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Now may it be known to the king that, if this city is rebuilt and the walls finished, they will not pay tribute, custom, or toll, and the royal revenue will be reduced.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Now because we share the salt of the palace and it is not fitting for us to witness the king's dishonor, therefore we send and inform the king,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> so that a search may be made in the annals of your ancestors. You will discover in the annals that this is a rebellious city, hurtful to kings and provinces, and that sedition was stirred up in it from long ago. On that account this city was laid waste.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> We make known to the king that, if this city is rebuilt and its walls finished, you will then have no possession in the province Beyond the River.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The king sent an answer: \"To Rehum the royal deputy and Shimshai the scribe and the rest of their associates who live in Samaria and in the rest of the province Beyond the River, greeting. And now</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> the letter that you sent to us has been read in translation before me.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> So I made a decree, and someone searched and discovered that this city has risen against kings from long ago, and that rebellion and sedition have been made in it.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Jerusalem has had mighty kings who ruled over the whole province Beyond the River, to whom tribute, custom, and toll were paid.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Therefore issue an order that these people be made to cease, and that this city not be rebuilt, until I make a decree.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Moreover, take care not to be slack in this matter; why should damage grow to the hurt of the king?\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Then when the copy of King Artaxerxes' letter was read before Rehum and the scribe Shimshai and their associates, they hurried to the Jews in Jerusalem and by force and power made them cease.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> At that time the work on the house of God in Jerusalem stopped and was discontinued until the second year of the reign of King Darius of Persia.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"5\">\r\n\t\t\t<VERS vnumber=\"1\"> Now the prophets, Haggai and Zechariah son of Iddo, prophesied to the Jews who were in Judah and Jerusalem, in the name of the God of Israel who was over them. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Then Zerubbabel son of Shealtiel and Jeshua son of Jozadak set out to rebuild the house of God in Jerusalem; and with them were the prophets of God, helping them.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> At the same time Tattenai the governor of the province Beyond the River and Shethar-bozenai and their associates came to them and spoke to them thus, \"Who gave you a decree to build this house and to finish this structure?\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> They also asked them this, \"What are the names of the men who are building this building?\" </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> But the eye of their God was upon the elders of the Jews, and they did not stop them until a report reached Darius and then answer was returned by letter in reply to it.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The copy of the letter that Tattenai the governor of the province Beyond the River and Shethar-bozenai and his associates the envoys who were in the province Beyond the River sent to King Darius;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> they sent him a report, in which was written as follows: \"To Darius the king, all peace!</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> May it be known to the king that we went to the province of Judah, to the house of the great God. It is being built of hewn stone, and timber is laid in the walls; this work is being done diligently and prospers in their hands.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then we spoke to those elders and asked them, 'Who gave you a decree to build this house and to finish this structure?'</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> We also asked them their names, for your information, so that we might write down the names of the men at their head.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> This was their reply to us: 'We are the servants of the God of heaven and earth, and we are rebuilding the house that was built many years ago, which a great king of Israel built and finished.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> But because our ancestors had angered the God of heaven, he gave them into the hand of King Nebuchadnezzar of Babylon, the Chaldean, who destroyed this house and carried away the people to Babylonia.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> However, King Cyrus of Babylon, in the first year of his reign, made a decree that this house of God should be rebuilt.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Moreover, the gold and silver vessels of the house of God, which Nebuchadnezzar had taken out of the temple in Jerusalem and had brought into the temple of Babylon, these King Cyrus took out of the temple of Babylon, and they were delivered to a man named Sheshbazzar, whom he had made governor.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> He said to him, \"Take these vessels; go and put them in the temple in Jerusalem, and let the house of God be rebuilt on its site.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then this Sheshbazzar came and laid the foundations of the house of God in Jerusalem; and from that time until now it has been under construction, and it is not yet finished.'</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> And now, if it seems good to the king, have a search made in the royal archives there in Babylon, to see whether a decree was issued by King Cyrus for the rebuilding of this house of God in Jerusalem. Let the king send us his pleasure in this matter.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"6\">\r\n\t\t\t<VERS vnumber=\"1\"> Then King Darius made a decree, and they searched the archives where the documents were stored in Babylon.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> But it was in Ecbatana, the capital in the province of Media, that a scroll was found on which this was written: \"A record.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> In the first year of his reign, King Cyrus issued a decree: Concerning the house of God at Jerusalem, let the house be rebuilt, the place where sacrifices are offered and burnt offerings are brought; its height shall be sixty cubits and its width sixty cubits, </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> with three courses of hewn stones and one course of timber; let the cost be paid from the royal treasury.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Moreover, let the gold and silver vessels of the house of God, which Nebuchadnezzar took out of the temple in Jerusalem and brought to Babylon, be restored and brought back to the temple in Jerusalem, each to its place; you shall put them in the house of God.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> \"Now you, Tattenai, governor of the province Beyond the River, Shethar-bozenai, and you, their associates, the envoys in the province Beyond the River, keep away;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> let the work on this house of God alone; let the governor of the Jews and the elders of the Jews rebuild this house of God on its site.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Moreover I make a decree regarding what you shall do for these elders of the Jews for the rebuilding of this house of God: the cost is to be paid to these people, in full and without delay, from the royal revenue, the tribute of the province Beyond the River.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Whatever is needed-- young bulls, rams, or sheep for burnt offerings to the God of heaven, wheat, salt, wine, or oil, as the priests in Jerusalem require-- let that be given to them day by day without fail,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> so that they may offer pleasing sacrifices to the God of heaven, and pray for the life of the king and his children.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Furthermore I decree that if anyone alters this edict, a beam shall be pulled out of the house of the perpetrator, who then shall be impaled on it. The house shall be made a dunghill.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> May the God who has established his name there overthrow any king or people that shall put forth a hand to alter this, or to destroy this house of God in Jerusalem. I, Darius, make a decree; let it be done with all diligence.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then, according to the word sent by King Darius, Tattenai, the governor of the province Beyond the River, Shethar-bozenai, and their associates did with all diligence what King Darius had ordered.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> So the elders of the Jews built and prospered, through the prophesying of the prophet Haggai and Zechariah son of Iddo. They finished their building by command of the God of Israel and by decree of Cyrus, Darius, and King Artaxerxes of Persia;</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> and this house was finished on the third day of the month of Adar, in the sixth year of the reign of King Darius.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The people of Israel, the priests and the Levites, and the rest of the returned exiles, celebrated the dedication of this house of God with joy.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> They offered at the dedication of this house of God one hundred bulls, two hundred rams, four hundred lambs, and as a sin offering for all Israel, twelve male goats, according to the number of the tribes of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then they set the priests in their divisions and the Levites in their courses for the service of God at Jerusalem, as it is written in the book of Moses.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> On the fourteenth day of the first month the returned exiles kept the passover.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> For both the priests and the Levites had purified themselves; all of them were clean. So they killed the passover lamb for all the returned exiles, for their fellow priests, and for themselves.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> It was eaten by the people of Israel who had returned from exile, and also by all who had joined them and separated themselves from the pollutions of the nations of the land to worship the LORD, the God of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> With joy they celebrated the festival of unleavened bread seven days; for the LORD had made them joyful, and had turned the heart of the king of Assyria to them, so that he aided them in the work on the house of God, the God of Israel.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"7\">\r\n\t\t\t<VERS vnumber=\"1\"> After this, in the reign of King Artaxerxes of Persia, Ezra son of Seraiah, son of Azariah, son of Hilkiah,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> son of Shallum, son of Zadok, son of Ahitub,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> son of Amariah, son of Azariah, son of Meraioth,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> son of Zerahiah, son of Uzzi, son of Bukki,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> son of Abishua, son of Phinehas, son of Eleazar, son of the chief priest Aaron--</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> this Ezra went up from Babylonia. He was a scribe skilled in the law of Moses that the LORD the God of Israel had given; and the king granted him all that he asked, for the hand of the LORD his God was upon him.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Some of the people of Israel, and some of the priests and Levites, the singers and gatekeepers, and the temple servants also went up to Jerusalem, in the seventh year of King Artaxerxes.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> They came to Jerusalem in the fifth month, which was in the seventh year of the king.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> On the first day of the first month the journey up from Babylon was begun, and on the first day of the fifth month he came to Jerusalem, for the gracious hand of his God was upon him.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For Ezra had set his heart to study the law of the LORD, and to do it, and to teach the statutes and ordinances in Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> This is a copy of the letter that King Artaxerxes gave to the priest Ezra, the scribe, a scholar of the text of the commandments of the LORD and his statutes for Israel:</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> \"Artaxerxes, king of kings, to the priest Ezra, the scribe of the law of the God of heaven: Peace. And now </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> I decree that any of the people of Israel or their priests or Levites in my kingdom who freely offers to go to Jerusalem may go with you.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> For you are sent by the king and his seven counselors to make inquiries about Judah and Jerusalem according to the law of your God, which is in your hand,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> and also to convey the silver and gold that the king and his counselors have freely offered to the God of Israel, whose dwelling is in Jerusalem,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> with all the silver and gold that you shall find in the whole province of Babylonia, and with the freewill offerings of the people and the priests, given willingly for the house of their God in Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> With this money, then, you shall with all diligence buy bulls, rams, and lambs, and their grain offerings and their drink offerings, and you shall offer them on the altar of the house of your God in Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Whatever seems good to you and your colleagues to do with the rest of the silver and gold, you may do, according to the will of your God.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The vessels that have been given you for the service of the house of your God, you shall deliver before the God of Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> And whatever else is required for the house of your God, which you are responsible for providing, you may provide out of the king's treasury.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> \"I, King Artaxerxes, decree to all the treasurers in the province Beyond the River: Whatever the priest Ezra, the scribe of the law of the God of heaven, requires of you, let it be done with all diligence,</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> up to one hundred talents of silver, one hundred cors of wheat, one hundred baths of wine, one hundred baths of oil, and unlimited salt. </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Whatever is commanded by the God of heaven, let it be done with zeal for the house of the God of heaven, or wrath will come upon the realm of the king and his heirs.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> We also notify you that it shall not be lawful to impose tribute, custom, or toll on any of the priests, the Levites, the singers, the doorkeepers, the temple servants, or other servants of this house of God.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> \"And you, Ezra, according to the God-given wisdom you possess, appoint magistrates and judges who may judge all the people in the province Beyond the River who know the laws of your God; and you shall teach those who do not know them.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> All who will not obey the law of your God and the law of the king, let judgment be strictly executed on them, whether for death or for banishment or for confiscation of their goods or for imprisonment.\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Blessed be the LORD, the God of our ancestors, who put such a thing as this into the heart of the king to glorify the house of the LORD in Jerusalem,</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> and who extended to me steadfast love before the king and his counselors, and before all the king's mighty officers. I took courage, for the hand of the LORD my God was upon me, and I gathered leaders from Israel to go up with me.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"8\">\r\n\t\t\t<VERS vnumber=\"1\"> These are their family heads, and this is the genealogy of those who went up with me from Babylonia, in the reign of King Artaxerxes:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Of the descendants of Phinehas, Gershom. Of Ithamar, Daniel. Of David, Hattush,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> of the descendants of Shecaniah. Of Parosh, Zechariah, with whom were registered one hundred fifty males.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Of the descendants of Pahath-moab, Eliehoenai son of Zerahiah, and with him two hundred males.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Of the descendants of Zattu, Shecaniah son of Jahaziel, and with him three hundred males. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Of the descendants of Adin, Ebed son of Jonathan, and with him fifty males.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Of the descendants of Elam, Jeshaiah son of Athaliah, and with him seventy males.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Of the descendants of Shephatiah, Zebadiah son of Michael, and with him eighty males.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Of the descendants of Joab, Obadiah son of Jehiel, and with him two hundred eighteen males.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Of the descendants of Bani, Shelomith son of Josiphiah, and with him one hundred sixty males. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Of the descendants of Bebai, Zechariah son of Bebai, and with him twenty-eight males.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Of the descendants of Azgad, Johanan son of Hakkatan, and with him one hundred ten males.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Of the descendants of Adonikam, those who came later, their names being Eliphelet, Jeuel, and Shemaiah, and with them sixty males.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Of the descendants of Bigvai, Uthai and Zaccur, and with them seventy males.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> I gathered them by the river that runs to Ahava, and there we camped three days. As I reviewed the people and the priests, I found there none of the descendants of Levi.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then I sent for Eliezer, Ariel, Shemaiah, Elnathan, Jarib, Elnathan, Nathan, Zechariah, and Meshullam, who were leaders, and for Joiarib and Elnathan, who were wise,</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> and sent them to Iddo, the leader at the place called Casiphia, telling them what to say to Iddo and his colleagues the temple servants at Casiphia, namely, to send us ministers for the house of our God.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Since the gracious hand of our God was upon us, they brought us a man of discretion, of the descendants of Mahli son of Levi son of Israel, namely Sherebiah, with his sons and kin, eighteen;</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> also Hashabiah and with him Jeshaiah of the descendants of Merari, with his kin and their sons, twenty;</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> besides two hundred twenty of the temple servants, whom David and his officials had set apart to attend the Levites. These were all mentioned by name.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then I proclaimed a fast there, at the river Ahava, that we might deny ourselves before our God, to seek from him a safe journey for ourselves, our children, and all our possessions. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> For I was ashamed to ask the king for a band of soldiers and cavalry to protect us against the enemy on our way, since we had told the king that the hand of our God is gracious to all who seek him, but his power and his wrath are against all who forsake him.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> So we fasted and petitioned our God for this, and he listened to our entreaty.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Then I set apart twelve of the leading priests: Sherebiah, Hashabiah, and ten of their kin with them.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> And I weighed out to them the silver and the gold and the vessels, the offering for the house of our God that the king, his counselors, his lords, and all Israel there present had offered;</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> I weighed out into their hand six hundred fifty talents of silver, and one hundred silver vessels worth... talents, and one hundred talents of gold,</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> twenty gold bowls worth a thousand darics, and two vessels of fine polished bronze as precious as gold.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> And I said to them, \"You are holy to the LORD, and the vessels are holy; and the silver and the gold are a freewill offering to the LORD, the God of your ancestors.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Guard them and keep them until you weigh them before the chief priests and the Levites and the heads of families in Israel at Jerusalem, within the chambers of the house of the LORD.\"</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> So the priests and the Levites took over the silver, the gold, and the vessels as they were weighed out, to bring them to Jerusalem, to the house of our God.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Then we left the river Ahava on the twelfth day of the first month, to go to Jerusalem; the hand of our God was upon us, and he delivered us from the hand of the enemy and from ambushes along the way.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> We came to Jerusalem and remained there three days.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> On the fourth day, within the house of our God, the silver, the gold, and the vessels were weighed into the hands of the priest Meremoth son of Uriah, and with him was Eleazar son of Phinehas, and with them were the Levites, Jozabad son of Jeshua and Noadiah son of Binnui.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> The total was counted and weighed, and the weight of everything was recorded.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> At that time those who had come from captivity, the returned exiles, offered burnt offerings to the God of Israel, twelve bulls for all Israel, ninety-six rams, seventy-seven lambs, and as a sin offering twelve male goats; all this was a burnt offering to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> They also delivered the king's commissions to the king's satraps and to the governors of the province Beyond the River; and they supported the people and the house of God.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"9\">\r\n\t\t\t<VERS vnumber=\"1\"> After these things had been done, the officials approached me and said, \"The people of Israel, the priests, and the Levites have not separated themselves from the peoples of the lands with their abominations, from the Canaanites, the Hittites, the Perizzites, the Jebusites, the Ammonites, the Moabites, the Egyptians, and the Amorites.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> For they have taken some of their daughters as wives for themselves and for their sons. Thus the holy seed has mixed itself with the peoples of the lands, and in this faithlessness the officials and leaders have led the way.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> When I heard this, I tore my garment and my mantle, and pulled hair from my head and beard, and sat appalled.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then all who trembled at the words of the God of Israel, because of the faithlessness of the returned exiles, gathered around me while I sat appalled until the evening sacrifice.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> At the evening sacrifice I got up from my fasting, with my garments and my mantle torn, and fell on my knees, spread out my hands to the LORD my God,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> and said, \"O my God, I am too ashamed and embarrassed to lift my face to you, my God, for our iniquities have risen higher than our heads, and our guilt has mounted up to the heavens.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> From the days of our ancestors to this day we have been deep in guilt, and for our iniquities we, our kings, and our priests have been handed over to the kings of the lands, to the sword, to captivity, to plundering, and to utter shame, as is now the case.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But now for a brief moment favor has been shown by the LORD our God, who has left us a remnant, and given us a stake in his holy place, in order that he may brighten our eyes and grant us a little sustenance in our slavery. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> For we are slaves; yet our God has not forsaken us in our slavery, but has extended to us his steadfast love before the kings of Persia, to give us new life to set up the house of our God, to repair its ruins, and to give us a wall in Judea and Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> \"And now, our God, what shall we say after this? For we have forsaken your commandments,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> which you commanded by your servants the prophets, saying, 'The land that you are entering to possess is a land unclean with the pollutions of the peoples of the lands, with their abominations. They have filled it from end to end with their uncleanness.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Therefore do not give your daughters to their sons, neither take their daughters for your sons, and never seek their peace or prosperity, so that you may be strong and eat the good of the land and leave it for an inheritance to your children forever.'</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> After all that has come upon us for our evil deeds and for our great guilt, seeing that you, our God, have punished us less than our iniquities deserved and have given us such a remnant as this,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> shall we break your commandments again and intermarry with the peoples who practice these abominations? Would you not be angry with us until you destroy us without remnant or survivor?</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> O LORD, God of Israel, you are just, but we have escaped as a remnant, as is now the case. Here we are before you in our guilt, though no one can face you because of this.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"10\">\r\n\t\t\t<VERS vnumber=\"1\"> While Ezra prayed and made confession, weeping and throwing himself down before the house of God, a very great assembly of men, women, and children gathered to him out of Israel; the people also wept bitterly.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Shecaniah son of Jehiel, of the descendants of Elam, addressed Ezra, saying, \"We have broken faith with our God and have married foreign women from the peoples of the land, but even now there is hope for Israel in spite of this.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> So now let us make a covenant with our God to send away all these wives and their children, according to the counsel of my lord and of those who tremble at the commandment of our God; and let it be done according to the law.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Take action, for it is your duty, and we are with you; be strong, and do it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then Ezra stood up and made the leading priests, the Levites, and all Israel swear that they would do as had been said. So they swore.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then Ezra withdrew from before the house of God, and went to the chamber of Jehohanan son of Eliashib, where he spent the night. He did not eat bread or drink water, for he was mourning over the faithlessness of the exiles. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> They made a proclamation throughout Judah and Jerusalem to all the returned exiles that they should assemble at Jerusalem,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> and that if any did not come within three days, by order of the officials and the elders all their property should be forfeited, and they themselves banned from the congregation of the exiles.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then all the people of Judah and Benjamin assembled at Jerusalem within the three days; it was the ninth month, on the twentieth day of the month. All the people sat in the open square before the house of God, trembling because of this matter and because of the heavy rain.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then Ezra the priest stood up and said to them, \"You have trespassed and married foreign women, and so increased the guilt of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Now make confession to the LORD the God of your ancestors, and do his will; separate yourselves from the peoples of the land and from the foreign wives.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then all the assembly answered with a loud voice, \"It is so; we must do as you have said.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> But the people are many, and it is a time of heavy rain; we cannot stand in the open. Nor is this a task for one day or for two, for many of us have transgressed in this matter.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Let our officials represent the whole assembly, and let all in our towns who have taken foreign wives come at appointed times, and with them the elders and judges of every town, until the fierce wrath of our God on this account is averted from us.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Only Jonathan son of Asahel and Jahzeiah son of Tikvah opposed this, and Meshullam and Shabbethai the Levites supported them.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then the returned exiles did so. Ezra the priest selected men, heads of families, according to their families, each of them designated by name. On the first day of the tenth month they sat down to examine the matter. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> By the first day of the first month they had come to the end of all the men who had married foreign women.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> There were found of the descendants of the priests who had married foreign women, of the descendants of Jeshua son of Jozadak and his brothers: Maaseiah, Eliezer, Jarib, and Gedaliah.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> They pledged themselves to send away their wives, and their guilt offering was a ram of the flock for their guilt.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Of the descendants of Immer: Hanani and Zebadiah.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Of the descendants of Harim: Maaseiah, Elijah, Shemaiah, Jehiel, and Uzziah.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Of the descendants of Pashhur: Elioenai, Maaseiah, Ishmael, Nethanel, Jozabad, and Elasah.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Of the Levites: Jozabad, Shimei, Kelaiah (that is, Kelita), Pethahiah, Judah, and Eliezer.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Of the singers: Eliashib. Of the gatekeepers: Shallum, Telem, and Uri.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> And of Israel: of the descendants of Parosh: Ramiah, Izziah, Malchijah, Mijamin, Eleazar, Hashabiah, and Benaiah. </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Of the descendants of Elam: Mattaniah, Zechariah, Jehiel, Abdi, Jeremoth, and Elijah.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Of the descendants of Zattu: Elioenai, Eliashib, Mattaniah, Jeremoth, Zabad, and Aziza.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Of the descendants of Bebai: Jehohanan, Hananiah, Zabbai, and Athlai.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Of the descendants of Bani: Meshullam, Malluch, Adaiah, Jashub, Sheal, and Jeremoth.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Of the descendants of Pahath-moab: Adna, Chelal, Benaiah, Maaseiah, Mattaniah, Bezalel, Binnui, and Manasseh.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Of the descendants of Harim: Eliezer, Isshijah, Malchijah, Shemaiah, Shimeon,</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Benjamin, Malluch, and Shemariah.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Of the descendants of Hashum: Mattenai, Mattattah, Zabad, Eliphelet, Jeremai, Manasseh, and Shimei.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Of the descendants of Bani: Maadai, Amram, Uel,</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Benaiah, Bedeiah, Cheluhi,</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Vaniah, Meremoth, Eliashib,</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Mattaniah, Mattenai, and Jaasu.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Of the descendants of Binnui: Shimei, </VERS>\r\n\t\t\t<VERS vnumber=\"39\"> Shelemiah, Nathan, Adaiah,</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> Machnadebai, Shashai, Sharai,</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> Azarel, Shelemiah, Shemariah,</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> Shallum, Amariah, and Joseph.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> Of the descendants of Nebo: Jeiel, Mattithiah, Zabad, Zebina, Jaddai, Joel, and Benaiah.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> All these had married foreign women, and they sent them away with their children. </VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"16\" bname=\"Nehemiah\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> The words of Nehemiah son of Hacaliah. In the month of Chislev, in the twentieth year, while I was in Susa the capital,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> one of my brothers, Hanani, came with certain men from Judah; and I asked them about the Jews that survived, those who had escaped the captivity, and about Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> They replied, \"The survivors there in the province who escaped captivity are in great trouble and shame; the wall of Jerusalem is broken down, and its gates have been destroyed by fire.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> When I heard these words I sat down and wept, and mourned for days, fasting and praying before the God of heaven.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> I said, \"O LORD God of heaven, the great and awesome God who keeps covenant and steadfast love with those who love him and keep his commandments;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> let your ear be attentive and your eyes open to hear the prayer of your servant that I now pray before you day and night for your servants, the people of Israel, confessing the sins of the people of Israel, which we have sinned against you. Both I and my family have sinned.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> We have offended you deeply, failing to keep the commandments, the statutes, and the ordinances that you commanded your servant Moses.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Remember the word that you commanded your servant Moses, 'If you are unfaithful, I will scatter you among the peoples;</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> but if you return to me and keep my commandments and do them, though your outcasts are under the farthest skies, I will gather them from there and bring them to the place at which I have chosen to establish my name.'</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> They are your servants and your people, whom you redeemed by your great power and your strong hand.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> O Lord, let your ear be attentive to the prayer of your servant, and to the prayer of your servants who delight in revering your name. Give success to your servant today, and grant him mercy in the sight of this man!\" At the time, I was cupbearer to the king.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> In the month of Nisan, in the twentieth year of King Artaxerxes, when wine was served him, I carried the wine and gave it to the king. Now, I had never been sad in his presence before.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> So the king said to me, \"Why is your face sad, since you are not sick? This can only be sadness of the heart.\" Then I was very much afraid.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> I said to the king, \"May the king live forever! Why should my face not be sad, when the city, the place of my ancestors' graves, lies waste, and its gates have been destroyed by fire?\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then the king said to me, \"What do you request?\" So I prayed to the God of heaven.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then I said to the king, \"If it pleases the king, and if your servant has found favor with you, I ask that you send me to Judah, to the city of my ancestors' graves, so that I may rebuild it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The king said to me (the queen also was sitting beside him), \"How long will you be gone, and when will you return?\" So it pleased the king to send me, and I set him a date.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then I said to the king, \"If it pleases the king, let letters be given me to the governors of the province Beyond the River, that they may grant me passage until I arrive in Judah;</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> and a letter to Asaph, the keeper of the king's forest, directing him to give me timber to make beams for the gates of the temple fortress, and for the wall of the city, and for the house that I shall occupy.\" And the king granted me what I asked, for the gracious hand of my God was upon me.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then I came to the governors of the province Beyond the River, and gave them the king's letters. Now the king had sent officers of the army and cavalry with me.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> When Sanballat the Horonite and Tobiah the Ammonite official heard this, it displeased them greatly that someone had come to seek the welfare of the people of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> So I came to Jerusalem and was there for three days.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then I got up during the night, I and a few men with me; I told no one what my God had put into my heart to do for Jerusalem. The only animal I took was the animal I rode.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> I went out by night by the Valley Gate past the Dragon's Spring and to the Dung Gate, and I inspected the walls of Jerusalem that had been broken down and its gates that had been destroyed by fire.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then I went on to the Fountain Gate and to the King's Pool; but there was no place for the animal I was riding to continue.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> So I went up by way of the valley by night and inspected the wall. Then I turned back and entered by the Valley Gate, and so returned.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The officials did not know where I had gone or what I was doing; I had not yet told the Jews, the priests, the nobles, the officials, and the rest that were to do the work.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then I said to them, \"You see the trouble we are in, how Jerusalem lies in ruins with its gates burned. Come, let us rebuild the wall of Jerusalem, so that we may no longer suffer disgrace.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> I told them that the hand of my God had been gracious upon me, and also the words that the king had spoken to me. Then they said, \"Let us start building!\" So they committed themselves to the common good.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> But when Sanballat the Horonite and Tobiah the Ammonite official, and Geshem the Arab heard of it, they mocked and ridiculed us, saying, \"What is this that you are doing? Are you rebelling against the king?\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Then I replied to them, \"The God of heaven is the one who will give us success, and we his servants are going to start building; but you have no share or claim or historic right in Jerusalem.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> Then the high priest Eliashib set to work with his fellow priests and rebuilt the Sheep Gate. They consecrated it and set up its doors; they consecrated it as far as the Tower of the Hundred and as far as the Tower of Hananel.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And the men of Jericho built next to him. And next to them Zaccur son of Imri built. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The sons of Hassenaah built the Fish Gate; they laid its beams and set up its doors, its bolts, and its bars.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Next to them Meremoth son of Uriah son of Hakkoz made repairs. Next to them Meshullam son of Berechiah son of Meshezabel made repairs. Next to them Zadok son of Baana made repairs.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Next to them the Tekoites made repairs; but their nobles would not put their shoulders to the work of their Lord. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Joiada son of Paseah and Meshullam son of Besodeiah repaired the Old Gate; they laid its beams and set up its doors, its bolts, and its bars.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Next to them repairs were made by Melatiah the Gibeonite and Jadon the Meronothite-- the men of Gibeon and of Mizpah-- who were under the jurisdiction of the governor of the province Beyond the River.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Next to them Uzziel son of Harhaiah, one of the goldsmiths, made repairs. Next to him Hananiah, one of the perfumers, made repairs; and they restored Jerusalem as far as the Broad Wall.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Next to them Rephaiah son of Hur, ruler of half the district of Jerusalem, made repairs. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Next to them Jedaiah son of Harumaph made repairs opposite his house; and next to him Hattush son of Hashabneiah made repairs.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Malchijah son of Harim and Hasshub son of Pahath-moab repaired another section and the Tower of the Ovens.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Next to him Shallum son of Hallohesh, ruler of half the district of Jerusalem, made repairs, he and his daughters. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Hanun and the inhabitants of Zanoah repaired the Valley Gate; they rebuilt it and set up its doors, its bolts, and its bars, and repaired a thousand cubits of the wall, as far as the Dung Gate.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Malchijah son of Rechab, ruler of the district of Beth-haccherem, repaired the Dung Gate; he rebuilt it and set up its doors, its bolts, and its bars. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And Shallum son of Col-hozeh, ruler of the district of Mizpah, repaired the Fountain Gate; he rebuilt it and covered it and set up its doors, its bolts, and its bars; and he built the wall of the Pool of Shelah of the king's garden, as far as the stairs that go down from the City of David.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> After him Nehemiah son of Azbuk, ruler of half the district of Beth-zur, repaired from a point opposite the graves of David, as far as the artificial pool and the house of the warriors. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> After him the Levites made repairs: Rehum son of Bani; next to him Hashabiah, ruler of half the district of Keilah, made repairs for his district. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> After him their kin made repairs: Binnui, son of Henadad, ruler of half the district of Keilah; </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> next to him Ezer son of Jeshua, ruler of Mizpah, repaired another section opposite the ascent to the armory at the Angle. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> After him Baruch son of Zabbai repaired another section from the Angle to the door of the house of the high priest Eliashib.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> After him Meremoth son of Uriah son of Hakkoz repaired another section from the door of the house of Eliashib to the end of the house of Eliashib.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> After him the priests, the men of the surrounding area, made repairs.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> After them Benjamin and Hasshub made repairs opposite their house. After them Azariah son of Maaseiah son of Ananiah made repairs beside his own house.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> After him Binnui son of Henadad repaired another section, from the house of Azariah to the Angle and to the corner.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Palal son of Uzai repaired opposite the Angle and the tower projecting from the upper house of the king at the court of the guard. After him Pedaiah son of Parosh</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> and the temple servants living on Ophel made repairs up to a point opposite the Water Gate on the east and the projecting tower. </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> After him the Tekoites repaired another section opposite the great projecting tower as far as the wall of Ophel.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Above the Horse Gate the priests made repairs, each one opposite his own house.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> After them Zadok son of Immer made repairs opposite his own house. After him Shemaiah son of Shecaniah, the keeper of the East Gate, made repairs.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> After him Hananiah son of Shelemiah and Hanun sixth son of Zalaph repaired another section. After him Meshullam son of Berechiah made repairs opposite his living quarters.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> After him Malchijah, one of the goldsmiths, made repairs as far as the house of the temple servants and of the merchants, opposite the Muster Gate, and to the upper room of the corner.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> And between the upper room of the corner and the Sheep Gate the goldsmiths and the merchants made repairs.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> Now when Sanballat heard that we were building the wall, he was angry and greatly enraged, and he mocked the Jews.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He said in the presence of his associates and of the army of Samaria, \"What are these feeble Jews doing? Will they restore things? Will they sacrifice? Will they finish it in a day? Will they revive the stones out of the heaps of rubbish-- and burned ones at that?\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Tobiah the Ammonite was beside him, and he said, \"That stone wall they are building-- any fox going up on it would break it down!\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Hear, O our God, for we are despised; turn their taunt back on their own heads, and give them over as plunder in a land of captivity.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Do not cover their guilt, and do not let their sin be blotted out from your sight; for they have hurled insults in the face of the builders.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> So we rebuilt the wall, and all the wall was joined together to half its height; for the people had a mind to work.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But when Sanballat and Tobiah and the Arabs and the Ammonites and the Ashdodites heard that the repairing of the walls of Jerusalem was going forward and the gaps were beginning to be closed, they were very angry,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> and all plotted together to come and fight against Jerusalem and to cause confusion in it.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> So we prayed to our God, and set a guard as a protection against them day and night.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> But Judah said, \"The strength of the burden bearers is failing, and there is too much rubbish so that we are unable to work on the wall.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> And our enemies said, \"They will not know or see anything before we come upon them and kill them and stop the work.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> When the Jews who lived near them came, they said to us ten times, \"From all the places where they live they will come up against us.\" </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> So in the lowest parts of the space behind the wall, in open places, I stationed the people according to their families, with their swords, their spears, and their bows. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> After I looked these things over, I stood up and said to the nobles and the officials and the rest of the people, \"Do not be afraid of them. Remember the LORD, who is great and awesome, and fight for your kin, your sons, your daughters, your wives, and your homes.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> When our enemies heard that their plot was known to us, and that God had frustrated it, we all returned to the wall, each to his work.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> From that day on, half of my servants worked on construction, and half held the spears, shields, bows, and body-armor; and the leaders posted themselves behind the whole house of Judah,</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> who were building the wall. The burden bearers carried their loads in such a way that each labored on the work with one hand and with the other held a weapon.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> And each of the builders had his sword strapped at his side while he built. The man who sounded the trumpet was beside me.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> And I said to the nobles, the officials, and the rest of the people, \"The work is great and widely spread out, and we are separated far from one another on the wall.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Rally to us wherever you hear the sound of the trumpet. Our God will fight for us.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> So we labored at the work, and half of them held the spears from break of dawn until the stars came out.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> I also said to the people at that time, \"Let every man and his servant pass the night inside Jerusalem, so that they may be a guard for us by night and may labor by day.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> So neither I nor my brothers nor my servants nor the men of the guard who followed me ever took off our clothes; each kept his weapon in his right hand. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"5\">\r\n\t\t\t<VERS vnumber=\"1\"> Now there was a great outcry of the people and of their wives against their Jewish kin.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> For there were those who said, \"With our sons and our daughters, we are many; we must get grain, so that we may eat and stay alive.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> There were also those who said, \"We are having to pledge our fields, our vineyards, and our houses in order to get grain during the famine.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> And there were those who said, \"We are having to borrow money on our fields and vineyards to pay the king's tax.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Now our flesh is the same as that of our kindred; our children are the same as their children; and yet we are forcing our sons and daughters to be slaves, and some of our daughters have been ravished; we are powerless, and our fields and vineyards now belong to others.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> I was very angry when I heard their outcry and these complaints.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> After thinking it over, I brought charges against the nobles and the officials; I said to them, \"You are all taking interest from your own people.\" And I called a great assembly to deal with them,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> and said to them, \"As far as we were able, we have bought back our Jewish kindred who had been sold to other nations; but now you are selling your own kin, who must then be bought back by us!\" They were silent, and could not find a word to say.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> So I said, \"The thing that you are doing is not good. Should you not walk in the fear of our God, to prevent the taunts of the nations our enemies?</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Moreover I and my brothers and my servants are lending them money and grain. Let us stop this taking of interest.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Restore to them, this very day, their fields, their vineyards, their olive orchards, and their houses, and the interest on money, grain, wine, and oil that you have been exacting from them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then they said, \"We will restore everything and demand nothing more from them. We will do as you say.\" And I called the priests, and made them take an oath to do as they had promised.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> I also shook out the fold of my garment and said, \"So may God shake out everyone from house and from property who does not perform this promise. Thus may they be shaken out and emptied.\" And all the assembly said, \"Amen,\" and praised the LORD. And the people did as they had promised.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Moreover from the time that I was appointed to be their governor in the land of Judah, from the twentieth year to the thirty-second year of King Artaxerxes, twelve years, neither I nor my brothers ate the food allowance of the governor.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The former governors who were before me laid heavy burdens on the people, and took food and wine from them, besides forty shekels of silver. Even their servants lorded it over the people. But I did not do so, because of the fear of God.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Indeed, I devoted myself to the work on this wall, and acquired no land; and all my servants were gathered there for the work.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Moreover there were at my table one hundred fifty people, Jews and officials, besides those who came to us from the nations around us.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Now that which was prepared for one day was one ox and six choice sheep; also fowls were prepared for me, and every ten days skins of wine in abundance; yet with all this I did not demand the food allowance of the governor, because of the heavy burden of labor on the people.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Remember for my good, O my God, all that I have done for this people.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"6\">\r\n\t\t\t<VERS vnumber=\"1\"> Now when it was reported to Sanballat and Tobiah and to Geshem the Arab and to the rest of our enemies that I had built the wall and that there was no gap left in it (though up to that time I had not set up the doors in the gates),</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Sanballat and Geshem sent to me, saying, \"Come and let us meet together in one of the villages in the plain of Ono.\" But they intended to do me harm.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> So I sent messengers to them, saying, \"I am doing a great work and I cannot come down. Why should the work stop while I leave it to come down to you?\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> They sent to me four times in this way, and I answered them in the same manner.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> In the same way Sanballat for the fifth time sent his servant to me with an open letter in his hand.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> In it was written, \"It is reported among the nations-- and Geshem also says it-- that you and the Jews intend to rebel; that is why you are building the wall; and according to this report you wish to become their king.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> You have also set up prophets to proclaim in Jerusalem concerning you, 'There is a king in Judah!' And now it will be reported to the king according to these words. So come, therefore, and let us confer together.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then I sent to him, saying, \"No such things as you say have been done; you are inventing them out of your own mind\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> -- for they all wanted to frighten us, thinking, \"Their hands will drop from the work, and it will not be done.\" But now, O God, strengthen my hands.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> One day when I went into the house of Shemaiah son of Delaiah son of Mehetabel, who was confined to his house, he said, \"Let us meet together in the house of God, within the temple, and let us close the doors of the temple, for they are coming to kill you; indeed, tonight they are coming to kill you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But I said, \"Should a man like me run away? Would a man like me go into the temple to save his life? I will not go in!\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then I perceived and saw that God had not sent him at all, but he had pronounced the prophecy against me because Tobiah and Sanballat had hired him.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> He was hired for this purpose, to intimidate me and make me sin by acting in this way, and so they could give me a bad name, in order to taunt me.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Remember Tobiah and Sanballat, O my God, according to these things that they did, and also the prophetess Noadiah and the rest of the prophets who wanted to make me afraid.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> So the wall was finished on the twenty-fifth day of the month Elul, in fifty-two days.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> And when all our enemies heard of it, all the nations around us were afraid and fell greatly in their own esteem; for they perceived that this work had been accomplished with the help of our God. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Moreover in those days the nobles of Judah sent many letters to Tobiah, and Tobiah's letters came to them.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> For many in Judah were bound by oath to him, because he was the son-in-law of Shecaniah son of Arah: and his son Jehohanan had married the daughter of Meshullam son of Berechiah.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Also they spoke of his good deeds in my presence, and reported my words to him. And Tobiah sent letters to intimidate me.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"7\">\r\n\t\t\t<VERS vnumber=\"1\"> Now when the wall had been built and I had set up the doors, and the gatekeepers, the singers, and the Levites had been appointed,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> I gave my brother Hanani charge over Jerusalem, along with Hananiah the commander of the citadel-- for he was a faithful man and feared God more than many.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And I said to them, \"The gates of Jerusalem are not to be opened until the sun is hot; while the gatekeepers are still standing guard, let them shut and bar the doors. Appoint guards from among the inhabitants of Jerusalem, some at their watch posts, and others before their own houses.\" </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The city was wide and large, but the people within it were few and no houses had been built.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then my God put it into my mind to assemble the nobles and the officials and the people to be enrolled by genealogy. And I found the book of the genealogy of those who were the first to come back, and I found the following written in it:</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> These are the people of the province who came up out of the captivity of those exiles whom King Nebuchadnezzar of Babylon had carried into exile; they returned to Jerusalem and Judah, each to his town.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> They came with Zerubbabel, Jeshua, Nehemiah, Azariah, Raamiah, Nahamani, Mordecai, Bilshan, Mispereth, Bigvai, Nehum, Baanah. The number of the Israelite people:</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> the descendants of Parosh, two thousand one hundred seventy-two.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Of Shephatiah, three hundred seventy-two.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Of Arah, six hundred fifty-two.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Of Pahath-moab, namely the descendants of Jeshua and Joab, two thousand eight hundred eighteen.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Of Elam, one thousand two hundred fifty-four.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Of Zattu, eight hundred forty-five.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Of Zaccai, seven hundred sixty.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Of Binnui, six hundred forty-eight.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Of Bebai, six hundred twenty-eight.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Of Azgad, two thousand three hundred twenty-two.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Of Adonikam, six hundred sixty-seven.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Of Bigvai, two thousand sixty-seven.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Of Adin, six hundred fifty-five.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Of Ater, namely of Hezekiah, ninety-eight.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Of Hashum, three hundred twenty-eight.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Of Bezai, three hundred twenty-four.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Of Hariph, one hundred twelve.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Of Gibeon, ninety-five.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> The people of Bethlehem and Netophah, one hundred eighty-eight.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Of Anathoth, one hundred twenty-eight.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Of Beth-azmaveth, forty-two.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Of Kiriath-jearim, Chephirah, and Beeroth, seven hundred forty-three.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Of Ramah and Geba, six hundred twenty-one.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Of Michmas, one hundred twenty-two.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Of Bethel and Ai, one hundred twenty-three.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Of the other Nebo, fifty-two.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> The descendants of the other Elam, one thousand two hundred fifty-four.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Of Harim, three hundred twenty.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Of Jericho, three hundred forty-five.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Of Lod, Hadid, and Ono, seven hundred twenty-one.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Of Senaah, three thousand nine hundred thirty.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> The priests: the descendants of Jedaiah, namely the house of Jeshua, nine hundred seventy-three.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> Of Immer, one thousand fifty-two.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> Of Pashhur, one thousand two hundred forty-seven.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> Of Harim, one thousand seventeen.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> The Levites: the descendants of Jeshua, namely of Kadmiel of the descendants of Hodevah, seventy-four.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> The singers: the descendants of Asaph, one hundred forty-eight.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> The gatekeepers: the descendants of Shallum, of Ater, of Talmon, of Akkub, of Hatita, of Shobai, one hundred thirty-eight.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> The temple servants: the descendants of Ziha, of Hasupha, of Tabbaoth,</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> of Keros, of Sia, of Padon,</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> of Lebana, of Hagaba, of Shalmai,</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> of Hanan, of Giddel, of Gahar,</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> of Reaiah, of Rezin, of Nekoda,</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> of Gazzam, of Uzza, of Paseah,</VERS>\r\n\t\t\t<VERS vnumber=\"52\"> of Besai, of Meunim, of Nephushesim,</VERS>\r\n\t\t\t<VERS vnumber=\"53\"> of Bakbuk, of Hakupha, of Harhur,</VERS>\r\n\t\t\t<VERS vnumber=\"54\"> of Bazlith, of Mehida, of Harsha,</VERS>\r\n\t\t\t<VERS vnumber=\"55\"> of Barkos, of Sisera, of Temah,</VERS>\r\n\t\t\t<VERS vnumber=\"56\"> of Neziah, of Hatipha.</VERS>\r\n\t\t\t<VERS vnumber=\"57\"> The descendants of Solomon's servants: of Sotai, of Sophereth, of Perida,</VERS>\r\n\t\t\t<VERS vnumber=\"58\"> of Jaala, of Darkon, of Giddel,</VERS>\r\n\t\t\t<VERS vnumber=\"59\"> of Shephatiah, of Hattil, of Pochereth-hazzebaim, of Amon.</VERS>\r\n\t\t\t<VERS vnumber=\"60\"> All the temple servants and the descendants of Solomon's servants were three hundred ninety-two.</VERS>\r\n\t\t\t<VERS vnumber=\"61\"> The following were those who came up from Tel-melah, Tel-harsha, Cherub, Addon, and Immer, but they could not prove their ancestral houses or their descent, whether they belonged to Israel:</VERS>\r\n\t\t\t<VERS vnumber=\"62\"> the descendants of Delaiah, of Tobiah, of Nekoda, six hundred forty-two.</VERS>\r\n\t\t\t<VERS vnumber=\"63\"> Also, of the priests: the descendants of Hobaiah, of Hakkoz, of Barzillai (who had married one of the daughters of Barzillai the Gileadite and was called by their name).</VERS>\r\n\t\t\t<VERS vnumber=\"64\"> These sought their registration among those enrolled in the genealogies, but it was not found there, so they were excluded from the priesthood as unclean;</VERS>\r\n\t\t\t<VERS vnumber=\"65\"> the governor told them that they were not to partake of the most holy food, until a priest with Urim and Thummim should come.</VERS>\r\n\t\t\t<VERS vnumber=\"66\"> The whole assembly together was forty-two thousand three hundred sixty,</VERS>\r\n\t\t\t<VERS vnumber=\"67\"> besides their male and female slaves, of whom there were seven thousand three hundred thirty-seven; and they had two hundred forty-five singers, male and female.</VERS>\r\n\t\t\t<VERS vnumber=\"68\"> They had seven hundred thirty-six horses, two hundred forty-five mules, </VERS>\r\n\t\t\t<VERS vnumber=\"69\"> four hundred thirty-five camels, and six thousand seven hundred twenty donkeys.</VERS>\r\n\t\t\t<VERS vnumber=\"70\"> Now some of the heads of ancestral houses contributed to the work. The governor gave to the treasury one thousand darics of gold, fifty basins, and five hundred thirty priestly robes.</VERS>\r\n\t\t\t<VERS vnumber=\"71\"> And some of the heads of ancestral houses gave into the building fund twenty thousand darics of gold and two thousand two hundred minas of silver.</VERS>\r\n\t\t\t<VERS vnumber=\"72\"> And what the rest of the people gave was twenty thousand darics of gold, two thousand minas of silver, and sixty-seven priestly robes.</VERS>\r\n\t\t\t<VERS vnumber=\"73\"> So the priests, the Levites, the gatekeepers, the singers, some of the people, the temple servants, and all Israel settled in their towns. When the seventh month came-- the people of Israel being settled in their towns--</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"8\">\r\n\t\t\t<VERS vnumber=\"1\"> all the people gathered together into the square before the Water Gate. They told the scribe Ezra to bring the book of the law of Moses, which the LORD had given to Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Accordingly, the priest Ezra brought the law before the assembly, both men and women and all who could hear with understanding. This was on the first day of the seventh month.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> He read from it facing the square before the Water Gate from early morning until midday, in the presence of the men and the women and those who could understand; and the ears of all the people were attentive to the book of the law.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The scribe Ezra stood on a wooden platform that had been made for the purpose; and beside him stood Mattithiah, Shema, Anaiah, Uriah, Hilkiah, and Maaseiah on his right hand; and Pedaiah, Mishael, Malchijah, Hashum, Hash-baddanah, Zechariah, and Meshullam on his left hand.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> And Ezra opened the book in the sight of all the people, for he was standing above all the people; and when he opened it, all the people stood up.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then Ezra blessed the LORD, the great God, and all the people answered, \"Amen, Amen,\" lifting up their hands. Then they bowed their heads and worshiped the LORD with their faces to the ground.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Also Jeshua, Bani, Sherebiah, Jamin, Akkub, Shabbethai, Hodiah, Maaseiah, Kelita, Azariah, Jozabad, Hanan, Pelaiah, the Levites, helped the people to understand the law, while the people remained in their places.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> So they read from the book, from the law of God, with interpretation. They gave the sense, so that the people understood the reading.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> And Nehemiah, who was the governor, and Ezra the priest and scribe, and the Levites who taught the people said to all the people, \"This day is holy to the LORD your God; do not mourn or weep.\" For all the people wept when they heard the words of the law.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then he said to them, \"Go your way, eat the fat and drink sweet wine and send portions of them to those for whom nothing is prepared, for this day is holy to our LORD; and do not be grieved, for the joy of the LORD is your strength.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> So the Levites stilled all the people, saying, \"Be quiet, for this day is holy; do not be grieved.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> And all the people went their way to eat and drink and to send portions and to make great rejoicing, because they had understood the words that were declared to them.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> On the second day the heads of ancestral houses of all the people, with the priests and the Levites, came together to the scribe Ezra in order to study the words of the law.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> And they found it written in the law, which the LORD had commanded by Moses, that the people of Israel should live in booths during the festival of the seventh month, </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> and that they should publish and proclaim in all their towns and in Jerusalem as follows, \"Go out to the hills and bring branches of olive, wild olive, myrtle, palm, and other leafy trees to make booths, as it is written.\" </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> So the people went out and brought them, and made booths for themselves, each on the roofs of their houses, and in their courts and in the courts of the house of God, and in the square at the Water Gate and in the square at the Gate of Ephraim. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> And all the assembly of those who had returned from the captivity made booths and lived in them; for from the days of Jeshua son of Nun to that day the people of Israel had not done so. And there was very great rejoicing. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> And day by day, from the first day to the last day, he read from the book of the law of God. They kept the festival seven days; and on the eighth day there was a solemn assembly, according to the ordinance.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"9\">\r\n\t\t\t<VERS vnumber=\"1\"> Now on the twenty-fourth day of this month the people of Israel were assembled with fasting and in sackcloth, and with earth on their heads. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Then those of Israelite descent separated themselves from all foreigners, and stood and confessed their sins and the iniquities of their ancestors.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> They stood up in their place and read from the book of the law of the LORD their God for a fourth part of the day, and for another fourth they made confession and worshiped the LORD their God.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then Jeshua, Bani, Kadmiel, Shebaniah, Bunni, Sherebiah, Bani, and Chenani stood on the stairs of the Levites and cried out with a loud voice to the LORD their God.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then the Levites, Jeshua, Kadmiel, Bani, Hashabneiah, Sherebiah, Hodiah, Shebaniah, and Pethahiah, said, \"Stand up and bless the LORD your God from everlasting to everlasting. Blessed be your glorious name, which is exalted above all blessing and praise.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And Ezra said: \"You are the LORD, you alone; you have made heaven, the heaven of heavens, with all their host, the earth and all that is on it, the seas and all that is in them. To all of them you give life, and the host of heaven worships you. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> You are the LORD, the God who chose Abram and brought him out of Ur of the Chaldeans and gave him the name Abraham;</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> and you found his heart faithful before you, and made with him a covenant to give to his descendants the land of the Canaanite, the Hittite, the Amorite, the Perizzite, the Jebusite, and the Girgashite; and you have fulfilled your promise, for you are righteous.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> \"And you saw the distress of our ancestors in Egypt and heard their cry at the Red Sea. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> You performed signs and wonders against Pharaoh and all his servants and all the people of his land, for you knew that they acted insolently against our ancestors. You made a name for yourself, which remains to this day.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> And you divided the sea before them, so that they passed through the sea on dry land, but you threw their pursuers into the depths, like a stone into mighty waters.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Moreover, you led them by day with a pillar of cloud, and by night with a pillar of fire, to give them light on the way in which they should go.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> You came down also upon Mount Sinai, and spoke with them from heaven, and gave them right ordinances and true laws, good statutes and commandments,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> and you made known your holy sabbath to them and gave them commandments and statutes and a law through your servant Moses.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> For their hunger you gave them bread from heaven, and for their thirst you brought water for them out of the rock, and you told them to go in to possess the land that you swore to give them.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> \"But they and our ancestors acted presumptuously and stiffened their necks and did not obey your commandments;</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> they refused to obey, and were not mindful of the wonders that you performed among them; but they stiffened their necks and determined to return to their slavery in Egypt. But you are a God ready to forgive, gracious and merciful, slow to anger and abounding in steadfast love, and you did not forsake them.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Even when they had cast an image of a calf for themselves and said, 'This is your God who brought you up out of Egypt,' and had committed great blasphemies,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> you in your great mercies did not forsake them in the wilderness; the pillar of cloud that led them in the way did not leave them by day, nor the pillar of fire by night that gave them light on the way by which they should go.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> You gave your good spirit to instruct them, and did not withhold your manna from their mouths, and gave them water for their thirst.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Forty years you sustained them in the wilderness so that they lacked nothing; their clothes did not wear out and their feet did not swell.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> And you gave them kingdoms and peoples, and allotted to them every corner, so they took possession of the land of King Sihon of Heshbon and the land of King Og of Bashan. </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> You multiplied their descendants like the stars of heaven, and brought them into the land that you had told their ancestors to enter and possess.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> So the descendants went in and possessed the land, and you subdued before them the inhabitants of the land, the Canaanites, and gave them into their hands, with their kings and the peoples of the land, to do with them as they pleased.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> And they captured fortress cities and a rich land, and took possession of houses filled with all sorts of goods, hewn cisterns, vineyards, olive orchards, and fruit trees in abundance; so they ate, and were filled and became fat, and delighted themselves in your great goodness.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> \"Nevertheless they were disobedient and rebelled against you and cast your law behind their backs and killed your prophets, who had warned them in order to turn them back to you, and they committed great blasphemies.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Therefore you gave them into the hands of their enemies, who made them suffer. Then in the time of their suffering they cried out to you and you heard them from heaven, and according to your great mercies you gave them saviors who saved them from the hands of their enemies.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> But after they had rest, they again did evil before you, and you abandoned them to the hands of their enemies, so that they had dominion over them; yet when they turned and cried to you, you heard from heaven, and many times you rescued them according to your mercies.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> And you warned them in order to turn them back to your law. Yet they acted presumptuously and did not obey your commandments, but sinned against your ordinances, by the observance of which a person shall live. They turned a stubborn shoulder and stiffened their neck and would not obey.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Many years you were patient with them, and warned them by your spirit through your prophets; yet they would not listen. Therefore you handed them over to the peoples of the lands.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Nevertheless, in your great mercies you did not make an end of them or forsake them, for you are a gracious and merciful God.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> \"Now therefore, our God-- the great and mighty and awesome God, keeping covenant and steadfast love-- do not treat lightly all the hardship that has come upon us, upon our kings, our officials, our priests, our prophets, our ancestors, and all your people, since the time of the kings of Assyria until today.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> You have been just in all that has come upon us, for you have dealt faithfully and we have acted wickedly;</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> our kings, our officials, our priests, and our ancestors have not kept your law or heeded the commandments and the warnings that you gave them.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Even in their own kingdom, and in the great goodness you bestowed on them, and in the large and rich land that you set before them, they did not serve you and did not turn from their wicked works.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Here we are, slaves to this day-- slaves in the land that you gave to our ancestors to enjoy its fruit and its good gifts.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Its rich yield goes to the kings whom you have set over us because of our sins; they have power also over our bodies and over our livestock at their pleasure, and we are in great distress.\"</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Because of all this we make a firm agreement in writing, and on that sealed document are inscribed the names of our officials, our Levites, and our priests.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"10\">\r\n\t\t\t<VERS vnumber=\"1\"> Upon the sealed document are the names of Nehemiah the governor, son of Hacaliah, and Zedekiah;</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Seraiah, Azariah, Jeremiah,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Pashhur, Amariah, Malchijah,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Hattush, Shebaniah, Malluch,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Harim, Meremoth, Obadiah,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Daniel, Ginnethon, Baruch,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Meshullam, Abijah, Mijamin,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Maaziah, Bilgai, Shemaiah; these are the priests.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> And the Levites: Jeshua son of Azaniah, Binnui of the sons of Henadad, Kadmiel;</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> and their associates, Shebaniah, Hodiah, Kelita, Pelaiah, Hanan,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Mica, Rehob, Hashabiah,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Zaccur, Sherebiah, Shebaniah,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Hodiah, Bani, Beninu.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The leaders of the people: Parosh, Pahath-moab, Elam, Zattu, Bani,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Bunni, Azgad, Bebai,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Adonijah, Bigvai, Adin,</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Ater, Hezekiah, Azzur,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Hodiah, Hashum, Bezai,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Hariph, Anathoth, Nebai,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Magpiash, Meshullam, Hezir,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Meshezabel, Zadok, Jaddua,</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Pelatiah, Hanan, Anaiah,</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Hoshea, Hananiah, Hasshub,</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Hallohesh, Pilha, Shobek,</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Rehum, Hashabnah, Maaseiah,</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Ahiah, Hanan, Anan,</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Malluch, Harim, and Baanah.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> The rest of the people, the priests, the Levites, the gatekeepers, the singers, the temple servants, and all who have separated themselves from the peoples of the lands to adhere to the law of God, their wives, their sons, their daughters, all who have knowledge and understanding,</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> join with their kin, their nobles, and enter into a curse and 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 ordinances and his statutes.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> We will not give our daughters to the peoples of the land or take their daughters for our sons;</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> and if the peoples of the land bring in merchandise or any grain on the sabbath day to sell, we will not buy it from them on the sabbath or on a holy day; and we will forego the crops of the seventh year and the exaction of every debt.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> We also lay on ourselves the obligation to charge ourselves yearly one-third of a shekel for the service of the house of our God:</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> for the rows of bread, the regular grain offering, the regular burnt offering, the sabbaths, the new moons, the appointed festivals, the sacred donations, and the sin offerings to make atonement for Israel, and for all the work of the house of our God.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> We have also cast lots among the priests, the Levites, and the people, for the wood offering, to bring it into the house of our God, by ancestral houses, at appointed times, year by year, to burn on the altar of the LORD our God, as it is written in the law.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> We obligate ourselves to bring the first fruits of our soil and the first fruits of all fruit of every tree, year by year, to the house of the LORD;</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> also to bring to the house of our God, to the priests who minister in the house of our God, the firstborn of our sons and of our livestock, as it is written in the law, and the firstlings of our herds and of our flocks;</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> and to bring the first of our dough, and our contributions, the fruit of every tree, the wine and the oil, to the priests, to the chambers of the house of our God; and to bring to the Levites the tithes from our soil, for it is the Levites who collect the tithes in all our rural towns.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> And the priest, the descendant of Aaron, shall be with the Levites when the Levites receive the tithes; and the Levites shall bring up a tithe of the tithes to the house of our God, to the chambers of the storehouse.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> For the people of Israel and the sons of Levi shall bring the contribution of grain, wine, and oil to the storerooms where the vessels of the sanctuary are, and where the priests that minister, and the gatekeepers and the singers are. We will not neglect the house of our God.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"11\">\r\n\t\t\t<VERS vnumber=\"1\"> Now the leaders of the people lived in Jerusalem; and the rest of the people cast lots to bring one out of ten to live in the holy city Jerusalem, while nine-tenths remained in the other towns.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And the people blessed all those who willingly offered to live in Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> These are the leaders of the province who lived in Jerusalem; but in the towns of Judah all lived on their property in their towns: Israel, the priests, the Levites, the temple servants, and the descendants of Solomon's servants.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> And in Jerusalem lived some of the Judahites and of the Benjaminites. Of the Judahites: Athaiah son of Uzziah son of Zechariah son of Amariah son of Shephatiah son of Mahalalel, of the descendants of Perez;</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> and Maaseiah son of Baruch son of Col-hozeh son of Hazaiah son of Adaiah son of Joiarib son of Zechariah son of the Shilonite.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> All the descendants of Perez who lived in Jerusalem were four hundred sixty-eight valiant warriors.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> And these are the Benjaminites: Sallu son of Meshullam son of Joed son of Pedaiah son of Kolaiah son of Maaseiah son of Ithiel son of Jeshaiah.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And his brothers Gabbai, Sallai: nine hundred twenty-eight. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Joel son of Zichri was their overseer; and Judah son of Hassenuah was second in charge of the city.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Of the priests: Jedaiah son of Joiarib, Jachin,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Seraiah son of Hilkiah son of Meshullam son of Zadok son of Meraioth son of Ahitub, officer of the house of God,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> and their associates who did the work of the house, eight hundred twenty-two; and Adaiah son of Jeroham son of Pelaliah son of Amzi son of Zechariah son of Pashhur son of Malchijah,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> and his associates, heads of ancestral houses, two hundred forty-two; and Amashsai son of Azarel son of Ahzai son of Meshillemoth son of Immer,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> and their associates, valiant warriors, one hundred twenty-eight; their overseer was Zabdiel son of Haggedolim.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And of the Levites: Shemaiah son of Hasshub son of Azrikam son of Hashabiah son of Bunni;</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> and Shabbethai and Jozabad, of the leaders of the Levites, who were over the outside work of the house of God;</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> and Mattaniah son of Mica son of Zabdi son of Asaph, who was the leader to begin the thanksgiving in prayer, and Bakbukiah, the second among his associates; and Abda son of Shammua son of Galal son of Jeduthun.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> All the Levites in the holy city were two hundred eighty-four.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The gatekeepers, Akkub, Talmon and their associates, who kept watch at the gates, were one hundred seventy-two.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> And the rest of Israel, and of the priests and the Levites, were in all the towns of Judah, all of them in their inheritance.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> But the temple servants lived on Ophel; and Ziha and Gishpa were over the temple servants.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The overseer of the Levites in Jerusalem was Uzzi son of Bani son of Hashabiah son of Mattaniah son of Mica, of the descendants of Asaph, the singers, in charge of the work of the house of God.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> For there was a command from the king concerning them, and a settled provision for the singers, as was required every day.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> And Pethahiah son of Meshezabel, of the descendants of Zerah son of Judah, was at the king's hand in all matters concerning the people.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> And as for the villages, with their fields, some of the people of Judah lived in Kiriath-arba and its villages, and in Dibon and its villages, and in Jekabzeel and its villages,</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> and in Jeshua and in Moladah and Beth-pelet,</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> in Hazar-shual, in Beer-sheba and its villages,</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> in Ziklag, in Meconah and its villages,</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> in En-rimmon, in Zorah, in Jarmuth,</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Zanoah, Adullam, and their villages, Lachish and its fields, and Azekah and its villages. So they camped from Beer-sheba to the valley of Hinnom.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> The people of Benjamin also lived from Geba onward, at Michmash, Aija, Bethel and its villages,</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Anathoth, Nob, Ananiah,</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Hazor, Ramah, Gittaim,</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Hadid, Zeboim, Neballat,</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Lod, and Ono, the valley of artisans.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> And certain divisions of the Levites in Judah were joined to Benjamin.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"12\">\r\n\t\t\t<VERS vnumber=\"1\"> These are the priests and the Levites who came up with Zerubbabel son of Shealtiel, and Jeshua: Seraiah, Jeremiah, Ezra,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Amariah, Malluch, Hattush,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Shecaniah, Rehum, Meremoth,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Iddo, Ginnethoi, Abijah,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Mijamin, Maadiah, Bilgah,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Shemaiah, Joiarib, Jedaiah,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Sallu, Amok, Hilkiah, Jedaiah. These were the leaders of the priests and of their associates in the days of Jeshua.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And the Levites: Jeshua, Binnui, Kadmiel, Sherebiah, Judah, and Mattaniah, who with his associates was in charge of the songs of thanksgiving.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> And Bakbukiah and Unno their associates stood opposite them in the service.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Jeshua was the father of Joiakim, Joiakim the father of Eliashib, Eliashib the father of Joiada,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Joiada the father of Jonathan, and Jonathan the father of Jaddua.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> In the days of Joiakim the priests, heads of ancestral houses, were: of Seraiah, Meraiah; of Jeremiah, Hananiah;</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> of Ezra, Meshullam; of Amariah, Jehohanan;</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> of Malluchi, Jonathan; of Shebaniah, Joseph;</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> of Harim, Adna; of Meraioth, Helkai;</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> of Iddo, Zechariah; of Ginnethon, Meshullam;</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> of Abijah, Zichri; of Miniamin, of Moadiah, Piltai;</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> of Bilgah, Shammua; of Shemaiah, Jehonathan;</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> of Joiarib, Mattenai; of Jedaiah, Uzzi;</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> of Sallai, Kallai; of Amok, Eber;</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> of Hilkiah, Hashabiah; of Jedaiah, Nethanel.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> As for the Levites, in the days of Eliashib, Joiada, Johanan, and Jaddua, there were recorded the heads of ancestral houses; also the priests until the reign of Darius the Persian.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> The Levites, heads of ancestral houses, were recorded in the Book of the Annals until the days of Johanan son of Eliashib.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> And the leaders of the Levites: Hashabiah, Sherebiah, and Jeshua son of Kadmiel, with their associates over against them, to praise and to give thanks, according to the commandment of David the man of God, section opposite to section.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Mattaniah, Bakbukiah, Obadiah, Meshullam, Talmon, and Akkub were gatekeepers standing guard at the storehouses of the gates.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> These were in the days of Joiakim son of Jeshua son of Jozadak, and in the days of the governor Nehemiah and of the priest Ezra, the scribe.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Now at the dedication of the wall of Jerusalem they sought out the Levites in all their places, to bring them to Jerusalem to celebrate the dedication with rejoicing, with thanksgivings and with singing, with cymbals, harps, and lyres.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> The companies of the singers gathered together from the circuit around Jerusalem and from the villages of the Netophathites;</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> also from Beth-gilgal and from the region of Geba and Azmaveth; for the singers had built for themselves villages around Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> And the priests and the Levites purified themselves; and they purified the people and the gates and the wall.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Then I brought the leaders of Judah up onto the wall, and appointed two great companies that gave thanks and went in procession. One went to the right on the wall to the Dung Gate;</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> and after them went Hoshaiah and half the officials of Judah,</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> and Azariah, Ezra, Meshullam,</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Judah, Benjamin, Shemaiah, and Jeremiah,</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> and some of the young priests with trumpets: Zechariah son of Jonathan son of Shemaiah son of Mattaniah son of Micaiah son of Zaccur son of Asaph;</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> and his kindred, Shemaiah, Azarel, Milalai, Gilalai, Maai, Nethanel, Judah, and Hanani, with the musical instruments of David the man of God; and the scribe Ezra went in front of them.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> At the Fountain Gate, in front of them, they went straight up by the stairs of the city of David, at the ascent of the wall, above the house of David, to the Water Gate on the east.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> The other company of those who gave thanks went to the left, and I followed them with half of the people on the wall, above the Tower of the Ovens, to the Broad Wall, </VERS>\r\n\t\t\t<VERS vnumber=\"39\"> and above the Gate of Ephraim, and by the Old Gate, and by the Fish Gate and the Tower of Hananel and the Tower of the Hundred, to the Sheep Gate; and they came to a halt at the Gate of the Guard.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> So both companies of those who gave thanks stood in the house of God, and I and half of the officials with me;</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> and the priests Eliakim, Maaseiah, Miniamin, Micaiah, Elioenai, Zechariah, and Hananiah, with trumpets;</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> and Maaseiah, Shemaiah, Eleazar, Uzzi, Jehohanan, Malchijah, Elam, and Ezer. And the singers sang with Jezrahiah as their leader.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> They offered great sacrifices that day and rejoiced, for God had made them rejoice with great joy; the women and children also rejoiced. The joy of Jerusalem was heard far away.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> On that day men were appointed over the chambers for the stores, the contributions, the first fruits, and the tithes, to gather into them the portions required by the law for the priests and for the Levites from the fields belonging to the towns; for Judah rejoiced over the priests and the Levites who ministered.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> They performed the service of their God and the service of purification, as did the singers and the gatekeepers, according to the command of David and his son Solomon.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> For in the days of David and Asaph long ago there was a leader of the singers, and there were songs of praise and thanksgiving to God.</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> In the days of Zerubbabel and in the days of Nehemiah all Israel gave the daily portions for the singers and the gatekeepers. They set apart that which was for the Levites; and the Levites set apart that which was for the descendants of Aaron.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"13\">\r\n\t\t\t<VERS vnumber=\"1\"> On that day they read from the book of Moses in the hearing of the people; and in it was found written that no Ammonite or Moabite should ever enter the assembly of God,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> because they did not meet the Israelites with bread and water, but hired Balaam against them to curse them-- yet our God turned the curse into a blessing.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> When the people heard the law, they separated from Israel all those of foreign descent.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Now before this, the priest Eliashib, who was appointed over the chambers of the house of our God, and who was related to Tobiah,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> prepared for Tobiah a large room where they had previously put the grain offering, the frankincense, the vessels, and the tithes of grain, wine, and oil, which were given by commandment to the Levites, singers, and gatekeepers, and the contributions for the priests.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> While this was taking place I was not in Jerusalem, for in the thirty-second year of King Artaxerxes of Babylon I went to the king. After some time I asked leave of the king</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> and returned to Jerusalem. I then discovered the wrong that Eliashib had done on behalf of Tobiah, preparing a room for him in the courts of the house of God.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And I was very angry, and I threw all the household furniture of Tobiah out of the room.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then I gave orders and they cleansed the chambers, and I brought back the vessels of the house of God, with the grain offering and the frankincense.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> I also found out that the portions of the Levites had not been given to them; so that the Levites and the singers, who had conducted the service, had gone back to their fields.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> So I remonstrated with the officials and said, \"Why is the house of God forsaken?\" And I gathered them together and set them in their stations.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then all Judah brought the tithe of the grain, wine, and oil into the storehouses.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And I appointed as treasurers over the storehouses the priest Shelemiah, the scribe Zadok, and Pedaiah of the Levites, and as their assistant Hanan son of Zaccur son of Mattaniah, for they were considered faithful; and their duty was to distribute to their associates.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Remember me, O my God, concerning this, and do not wipe out my good deeds that I have done for the house of my God and for his service.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> In those days I saw in Judah people treading wine presses on the sabbath, and bringing in heaps of grain and loading them on donkeys; and also wine, grapes, figs, and all kinds of burdens, which they brought into Jerusalem on the sabbath day; and I warned them at that time against selling food.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Tyrians also, who lived in the city, brought in fish and all kinds of merchandise and sold them on the sabbath to the people of Judah, and in Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then I remonstrated with the nobles of Judah and said to them, \"What is this evil thing that you are doing, profaning the sabbath day?</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Did not your ancestors act in this way, and did not our God bring all this disaster on us and on this city? Yet you bring more wrath on Israel by profaning the sabbath.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> When it began to be dark at the gates of Jerusalem before the sabbath, I commanded that the doors should be shut and gave orders that they should not be opened until after the sabbath. And I set some of my servants over the gates, to prevent any burden from being brought in on the sabbath day.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Then the merchants and sellers of all kinds of merchandise spent the night outside Jerusalem once or twice.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> But I warned them and said to them, \"Why do you spend the night in front of the wall? If you do so again, I will lay hands on you.\" From that time on they did not come on the sabbath.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> And I commanded the Levites that they should purify themselves and come and guard the gates, to keep the sabbath day holy. Remember this also in my favor, O my God, and spare me according to the greatness of your steadfast love.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> In those days also I saw Jews who had married women of Ashdod, Ammon, and Moab;</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> and half of their children spoke the language of Ashdod, and they could not speak the language of Judah, but spoke the language of various peoples.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> And I contended with them and cursed them and beat some of them and pulled out their hair; and I made them take an oath in the name of God, saying, \"You shall not give your daughters to their sons, or take their daughters for your sons or for yourselves.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Did not King Solomon of Israel sin on account of such women? Among the many nations there was no king like him, and he was beloved by his God, and God made him king over all Israel; nevertheless, foreign women made even him to sin.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Shall we then listen to you and do all this great evil and act treacherously against our God by marrying foreign women?\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> And one of the sons of Jehoiada, son of the high priest Eliashib, was the son-in-law of Sanballat the Horonite; I chased him away from me.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Remember them, O my God, because they have defiled the priesthood, the covenant of the priests and the Levites.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Thus I cleansed them from everything foreign, and I established the duties of the priests and Levites, each in his work;</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> and I provided for the wood offering, at appointed times, and for the first fruits. Remember me, O my God, for good.</VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"17\" bname=\"Esther\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> This happened in the days of Ahasuerus, the same Ahasuerus who ruled over one hundred twenty-seven provinces from India to Ethiopia. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> In those days when King Ahasuerus sat on his royal throne in the citadel of Susa,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> in the third year of his reign, he gave a banquet for all his officials and ministers. The army of Persia and Media and the nobles and governors of the provinces were present,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> while he displayed the great wealth of his kingdom and the splendor and pomp of his majesty for many days, one hundred eighty days in all.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> When these days were completed, the king gave for all the people present in the citadel of Susa, both great and small, a banquet lasting for seven days, in the court of the garden of the king's palace.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> There were white cotton curtains and blue hangings tied with cords of fine linen and purple to silver rings and marble pillars. There were couches of gold and silver on a mosaic pavement of porphyry, marble, mother-of-pearl, and colored stones. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Drinks were served in golden goblets, goblets of different kinds, and the royal wine was lavished according to the bounty of the king.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Drinking was by flagons, without restraint; for the king had given orders to all the officials of his palace to do as each one desired.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Furthermore, Queen Vashti gave a banquet for the women in the palace of King Ahasuerus.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> On the seventh day, when the king was merry with wine, he commanded Mehuman, Biztha, Harbona, Bigtha and Abagtha, Zethar and Carkas, the seven eunuchs who attended him,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> to bring Queen Vashti before the king, wearing the royal crown, in order to show the peoples and the officials her beauty; for she was fair to behold.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> But Queen Vashti refused to come at the king's command conveyed by the eunuchs. At this the king was enraged, and his anger burned within him.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then the king consulted the sages who knew the laws (for this was the king's procedure toward all who were versed in law and custom, </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> and those next to him were Carshena, Shethar, Admatha, Tarshish, Meres, Marsena, and Memucan, the seven officials of Persia and Media, who had access to the king, and sat first in the kingdom):</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> \"According to the law, what is to be done to Queen Vashti because she has not performed the command of King Ahasuerus conveyed by the eunuchs?\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then Memucan said in the presence of the king and the officials, \"Not only has Queen Vashti done wrong to the king, but also to all the officials and all the peoples who are in all the provinces of King Ahasuerus.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> For this deed of the queen will be made known to all women, causing them to look with contempt on their husbands, since they will say, 'King Ahasuerus commanded Queen Vashti to be brought before him, and she did not come.'</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> This very day the noble ladies of Persia and Media who have heard of the queen's behavior will rebel against the king's officials, and there will be no end of contempt and wrath! </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> If it pleases the king, let a royal order go out from him, and let it be written among the laws of the Persians and the Medes so that it may not be altered, that Vashti is never again to come before King Ahasuerus; and let the king give her royal position to another who is better than she.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> So when the decree made by the king is proclaimed throughout all his kingdom, vast as it is, all women will give honor to their husbands, high and low alike.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> This advice pleased the king and the officials, and the king did as Memucan proposed;</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> he sent letters to all the royal provinces, to every province in its own script and to every people in its own language, declaring that every man should be master in his own house. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> After these things, when the anger of King Ahasuerus had abated, he remembered Vashti and what she had done and what had been decreed against her.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Then the king's servants who attended him said, \"Let beautiful young virgins be sought out for the king.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And let the king appoint commissioners in all the provinces of his kingdom to gather all the beautiful young virgins to the harem in the citadel of Susa under custody of Hegai, the king's eunuch, who is in charge of the women; let their cosmetic treatments be given them.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> And let the girl who pleases the king be queen instead of Vashti.\" This pleased the king, and he did so.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Now there was a Jew in the citadel of Susa whose name was Mordecai son of Jair son of Shimei son of Kish, a Benjaminite.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Kish had been carried away from Jerusalem among the captives carried away with King Jeconiah of Judah, whom King Nebuchadnezzar of Babylon had carried away. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Mordecai had brought up Hadassah, that is Esther, his cousin, for she had neither father nor mother; the girl was fair and beautiful, and when her father and her mother died, Mordecai adopted her as his own daughter. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> So when the king's order and his edict were proclaimed, and when many young women were gathered in the citadel of Susa in custody of Hegai, Esther also was taken into the king's palace and put in custody of Hegai, who had charge of the women.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The girl pleased him and won his favor, and he quickly provided her with her cosmetic treatments and her portion of food, and with seven chosen maids from the king's palace, and advanced her and her maids to the best place in the harem.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Esther did not reveal her people or kindred, for Mordecai had charged her not to tell.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Every day Mordecai would walk around in front of the court of the harem, to learn how Esther was and how she fared.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The turn came for each girl to go in to King Ahasuerus, after being twelve months under the regulations for the women, since this was the regular period of their cosmetic treatment, six months with oil of myrrh and six months with perfumes and cosmetics for women.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> When the girl went in to the king she was given whatever she asked for to take with her from the harem to the king's palace.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> In the evening she went in; then in the morning she came back to the second harem in custody of Shaashgaz, the king's eunuch, who was in charge of the concubines; she did not go in to the king again, unless the king delighted in her and she was summoned by name.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> When the turn came for Esther daughter of Abihail the uncle of Mordecai, who had adopted her as his own daughter, to go in to the king, she asked for nothing except what Hegai the king's eunuch, who had charge of the women, advised. Now Esther was admired by all who saw her.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> When Esther was taken to King Ahasuerus in his royal palace in the tenth month, which is the month of Tebeth, in the seventh year of his reign,</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> the king loved Esther more than all the other women; of all the virgins she won his favor and devotion, so that he set the royal crown on her head and made her queen instead of Vashti.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then the king gave a great banquet to all his officials and ministers-- \"Esther's banquet.\" He also granted a holiday to the provinces, and gave gifts with royal liberality.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> When the virgins were being gathered together, Mordecai was sitting at the king's gate.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Now Esther had not revealed her kindred or her people, as Mordecai had charged her; for Esther obeyed Mordecai just as when she was brought up by him.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> In those days, while Mordecai was sitting at the king's gate, Bigthan and Teresh, two of the king's eunuchs, who guarded the threshold, became angry and conspired to assassinate King Ahasuerus. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> But the matter came to the knowledge of Mordecai, and he told it to Queen Esther, and Esther told the king in the name of Mordecai.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> When the affair was investigated and found to be so, both the men were hanged on the gallows. It was recorded in the book of the annals in the presence of the king.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> After these things King Ahasuerus promoted Haman son of Hammedatha the Agagite, and advanced him and set his seat above all the officials who were with him.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And all the king's servants who were at the king's gate bowed down and did obeisance to Haman; for the king had so commanded concerning him. But Mordecai did not bow down or do obeisance.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then the king's servants who were at the king's gate said to Mordecai, \"Why do you disobey the king's command?\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> When they spoke to him day after day and he would not listen to them, they told Haman, in order to see whether Mordecai's words would avail; for he had told them that he was a Jew.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> When Haman saw that Mordecai did not bow down or do obeisance to him, Haman was infuriated.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> But he thought it beneath him to lay hands on Mordecai alone. So, having been told who Mordecai's people were, Haman plotted to destroy all the Jews, the people of Mordecai, throughout the whole kingdom of Ahasuerus.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> In the first month, which is the month of Nisan, in the twelfth year of King Ahasuerus, they cast Pur-- which means \"the lot\"-- before Haman for the day and for the month, and the lot fell on the thirteenth day of the twelfth month, which is the month of Adar.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then Haman said to King Ahasuerus, \"There is a certain people scattered and separated among the peoples in all the provinces of your kingdom; their laws are different from those of every other people, and they do not keep the king's laws, so that it is not appropriate for the king to tolerate them.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> If it pleases the king, let a decree be issued for their destruction, and I will pay ten thousand talents of silver into the hands of those who have charge of the king's business, so that they may put it into the king's treasuries.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> So the king took his signet ring from his hand and gave it to Haman son of Hammedatha the Agagite, the enemy of the Jews.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The king said to Haman, \"The money is given to you, and the people as well, to do with them as it seems good to you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then the king's secretaries were summoned on the thirteenth day of the first month, and an edict, according to all that Haman commanded, was written to the king's satraps and to the governors over all the provinces and to the officials of all the peoples, to every province in its own script and every people in its own language; it was written in the name of King Ahasuerus and sealed with the king's ring.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Letters were sent by couriers to all the king's provinces, giving orders to destroy, to kill, and to annihilate all Jews, young and old, women and children, in one day, the thirteenth day of the twelfth month, which is the month of Adar, and to plunder their goods.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> A copy of the document was to be issued as a decree in every province by proclamation, calling on all the peoples to be ready for that day.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The couriers went quickly by order of the king, and the decree was issued in the citadel of Susa. The king and Haman sat down to drink; but the city of Susa was thrown into confusion.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> When Mordecai learned all that had been done, Mordecai tore his clothes and put on sackcloth and ashes, and went through the city, wailing with a loud and bitter cry;</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> he went up to the entrance of the king's gate, for no one might enter the king's gate clothed with sackcloth.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> In every province, wherever the king's command and his decree came, there was great mourning among the Jews, with fasting and weeping and lamenting, and most of them lay in sackcloth and ashes.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> When Esther's maids and her eunuchs came and told her, the queen was deeply distressed; she sent garments to clothe Mordecai, so that he might take off his sackcloth; but he would not accept them.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then Esther called for Hathach, one of the king's eunuchs, who had been appointed to attend her, and ordered him to go to Mordecai to learn what was happening and why.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Hathach went out to Mordecai in the open square of the city in front of the king's gate,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> and Mordecai told him all that had happened to him, and the exact sum of money that Haman had promised to pay into the king's treasuries for the destruction of the Jews.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Mordecai also gave him a copy of the written decree issued in Susa for their destruction, that he might show it to Esther, explain it to her, and charge her to go to the king to make supplication to him and entreat him for her people.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Hathach went and told Esther what Mordecai had said.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then Esther spoke to Hathach and gave him a message for Mordecai, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> \"All the king's servants and the people of the king's provinces know that if any man or woman goes to the king inside the inner court without being called, there is but one law-- all alike are to be put to death. Only if the king holds out the golden scepter to someone, may that person live. I myself have not been called to come in to the king for thirty days.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> When they told Mordecai what Esther had said,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Mordecai told them to reply to Esther, \"Do not think that in the king's palace you will escape any more than all the other Jews.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> For if you keep silence at such a time as this, relief and deliverance will rise for the Jews from another quarter, but you and your father's family will perish. Who knows? Perhaps you have come to royal dignity for just such a time as this.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Then Esther said in reply to Mordecai,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> \"Go, gather all the Jews to be found in Susa, and hold a fast on my behalf, and neither eat nor drink for three days, night or day. I and my maids will also fast as you do. After that I will go to the king, though it is against the law; and if I perish, I perish.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Mordecai then went away and did everything as Esther had ordered him.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"5\">\r\n\t\t\t<VERS vnumber=\"1\"> On the third day Esther put on her royal robes and stood in the inner court of the king's palace, opposite the king's hall. The king was sitting on his royal throne inside the palace opposite the entrance to the palace.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> As soon as the king saw Queen Esther standing in the court, she won his favor and he held out to her the golden scepter that was in his hand. Then Esther approached and touched the top of the scepter.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The king said to her, \"What is it, Queen Esther? What is your request? It shall be given you, even to the half of my kingdom.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then Esther said, \"If it pleases the king, let the king and Haman come today to a banquet that I have prepared for the king.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then the king said, \"Bring Haman quickly, so that we may do as Esther desires.\" So the king and Haman came to the banquet that Esther had prepared.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> While they were drinking wine, the king said to Esther, \"What is your petition? It shall be granted you. And what is your request? Even to the half of my kingdom, it shall be fulfilled.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then Esther said, \"This is my petition and request:</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> If I have won the king's favor, and if it pleases the king to grant my petition and fulfill my request, let the king and Haman come tomorrow to the banquet that I will prepare for them, and then I will do as the king has said.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Haman went out that day happy and in good spirits. But when Haman saw Mordecai in the king's gate, and observed that he neither rose nor trembled before him, he was infuriated with Mordecai;</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> nevertheless Haman restrained himself and went home. Then he sent and called for his friends and his wife Zeresh,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> and Haman recounted to them the splendor of his riches, the number of his sons, all the promotions with which the king had honored him, and how he had advanced him above the officials and the ministers of the king.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Haman added, \"Even Queen Esther let no one but myself come with the king to the banquet that she prepared. Tomorrow also I am invited by her, together with the king.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Yet all this does me no good so long as I see the Jew Mordecai sitting at the king's gate.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then his wife Zeresh and all his friends said to him, \"Let a gallows fifty cubits high be made, and in the morning tell the king to have Mordecai hanged on it; then go with the king to the banquet in good spirits.\" This advice pleased Haman, and he had the gallows made.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"6\">\r\n\t\t\t<VERS vnumber=\"1\"> On that night the king could not sleep, and he gave orders to bring the book of records, the annals, and they were read to the king.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> It was found written how Mordecai had told about Bigthana and Teresh, two of the king's eunuchs, who guarded the threshold, and who had conspired to assassinate King Ahasuerus. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then the king said, \"What honor or distinction has been bestowed on Mordecai for this?\" The king's servants who attended him said, \"Nothing has been done for him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The king said, \"Who is in the court?\" Now Haman had just entered the outer court of the king's palace to speak to the king about having Mordecai hanged on the gallows that he had prepared for him.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> So the king's servants told him, \"Haman is there, standing in the court.\" The king said, \"Let him come in.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> So Haman came in, and the king said to him, \"What shall be done for the man whom the king wishes to honor?\" Haman said to himself, \"Whom would the king wish to honor more than me?\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> So Haman said to the king, \"For the man whom the king wishes to honor,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> let royal robes be brought, which the king has worn, and a horse that the king has ridden, with a royal crown on its head.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Let the robes and the horse be handed over to one of the king's most noble officials; let him robe the man whom the king wishes to honor, and let him conduct the man on horseback through the open square of the city, proclaiming before him: 'Thus shall it be done for the man whom the king wishes to honor.'\" </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then the king said to Haman, \"Quickly, take the robes and the horse, as you have said, and do so to the Jew Mordecai who sits at the king's gate. Leave out nothing that you have mentioned.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> So Haman took the robes and the horse and robed Mordecai and led him riding through the open square of the city, proclaiming, \"Thus shall it be done for the man whom the king wishes to honor.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then Mordecai returned to the king's gate, but Haman hurried to his house, mourning and with his head covered.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> When Haman told his wife Zeresh and all his friends everything that had happened to him, his advisers and his wife Zeresh said to him, \"If Mordecai, before whom your downfall has begun, is of the Jewish people, you will not prevail against him, but will surely fall before him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> While they were still talking with him, the king's eunuchs arrived and hurried Haman off to the banquet that Esther had prepared.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"7\">\r\n\t\t\t<VERS vnumber=\"1\"> So the king and Haman went in to feast with Queen Esther.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> On the second day, as they were drinking wine, the king again said to Esther, \"What is your petition, Queen Esther? It shall be granted you. And what is your request? Even to the half of my kingdom, it shall be fulfilled.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then Queen Esther answered, \"If I have won your favor, O king, and if it pleases the king, let my life be given me-- that is my petition-- and the lives of my people-- that is my request.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For we have been sold, I and my people, to be destroyed, to be killed, and to be annihilated. If we had been sold merely as slaves, men and women, I would have held my peace; but no enemy can compensate for this damage to the king.\" </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then King Ahasuerus said to Queen Esther, \"Who is he, and where is he, who has presumed to do this?\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Esther said, \"A foe and enemy, this wicked Haman!\" Then Haman was terrified before the king and the queen.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The king rose from the feast in wrath and went into the palace garden, but Haman stayed to beg his life from Queen Esther, for he saw that the king had determined to destroy him.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> When the king returned from the palace garden to the banquet hall, Haman had thrown himself on the couch where Esther was reclining; and the king said, \"Will he even assault the queen in my presence, in my own house?\" As the words left the mouth of the king, they covered Haman's face.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then Harbona, one of the eunuchs in attendance on the king, said, \"Look, the very gallows that Haman has prepared for Mordecai, whose word saved the king, stands at Haman's house, fifty cubits high.\" And the king said, \"Hang him on that.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> So they hanged Haman on the gallows that he had prepared for Mordecai. Then the anger of the king abated.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"8\">\r\n\t\t\t<VERS vnumber=\"1\"> On that day King Ahasuerus gave to Queen Esther the house of Haman, the enemy of the Jews; and Mordecai came before the king, for Esther had told what he was to her.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Then the king took off his signet ring, which he had taken from Haman, and gave it to Mordecai. So Esther set Mordecai over the house of Haman.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then Esther spoke again to the king; she fell at his feet, weeping and pleading with him to avert the evil design of Haman the Agagite and the plot that he had devised against the Jews.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The king held out the golden scepter to Esther,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> and Esther rose and stood before the king. She said, \"If it pleases the king, and if I have won his favor, and if the thing seems right before the king, and I have his approval, let an order be written to revoke the letters devised by Haman son of Hammedatha the Agagite, which he wrote giving orders to destroy the Jews who are in all the provinces of the king.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For how can I bear to see the calamity that is coming on my people? Or how can I bear to see the destruction of my kindred?\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then King Ahasuerus said to Queen Esther and to the Jew Mordecai, \"See, I have given Esther the house of Haman, and they have hanged him on the gallows, because he plotted to lay hands on the Jews.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> You may write as you please with regard to the Jews, in the name of the king, and seal it with the king's ring; for an edict written in the name of the king and sealed with the king's ring cannot be revoked.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The king's secretaries were summoned at that time, in the third month, which is the month of Sivan, on the twenty-third day; and an edict was written, according to all that Mordecai commanded, to the Jews and to the satraps and the governors and the officials of the provinces from India to Ethiopia, one hundred twenty-seven provinces, to every province in its own script and to every people in its own language, and also to the Jews in their script and their language. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> He wrote letters in the name of King Ahasuerus, sealed them with the king's ring, and sent them by mounted couriers riding on fast steeds bred from the royal herd. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> By these letters the king allowed the Jews who were in every city to assemble and defend their lives, to destroy, to kill, and to annihilate any armed force of any people or province that might attack them, with their children and women, and to plunder their goods</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> on a single day throughout all the provinces of King Ahasuerus, on the thirteenth day of the twelfth month, which is the month of Adar.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> A copy of the writ was to be issued as a decree in every province and published to all peoples, and the Jews were to be ready on that day to take revenge on their enemies.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> So the couriers, mounted on their swift royal steeds, hurried out, urged by the king's command. The decree was issued in the citadel of Susa.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Then Mordecai went out from the presence of the king, wearing royal robes of blue and white, with a great golden crown and a mantle of fine linen and purple, while the city of Susa shouted and rejoiced.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> For the Jews there was light and gladness, joy and honor.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> In every province and in every city, wherever the king's command and his edict came, there was gladness and joy among the Jews, a festival and a holiday. Furthermore, many of the peoples of the country professed to be Jews, because the fear of the Jews had fallen upon them.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"9\">\r\n\t\t\t<VERS vnumber=\"1\"> Now in the twelfth month, which is the month of Adar, on the thirteenth day, when the king's command and edict were about to be executed, on the very day when the enemies of the Jews hoped to gain power over them, but which had been changed to a day when the Jews would gain power over their foes,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> the Jews gathered in their cities throughout all the provinces of King Ahasuerus to lay hands on those who had sought their ruin; and no one could withstand them, because the fear of them had fallen upon all peoples.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> All the officials of the provinces, the satraps and the governors, and the royal officials were supporting the Jews, because the fear of Mordecai had fallen upon them.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For Mordecai was powerful in the king's house, and his fame spread throughout all the provinces as the man Mordecai grew more and more powerful.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> So the Jews struck down all their enemies with the sword, slaughtering, and destroying them, and did as they pleased to those who hated them.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> In the citadel of Susa the Jews killed and destroyed five hundred people.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> They killed Parshandatha, Dalphon, Aspatha,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Poratha, Adalia, Aridatha,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Parmashta, Arisai, Aridai, Vaizatha,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> the ten sons of Haman son of Hammedatha, the enemy of the Jews; but they did not touch the plunder.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> That very day the number of those killed in the citadel of Susa was reported to the king.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The king said to Queen Esther, \"In the citadel of Susa the Jews have killed five hundred people and also the ten sons of Haman. What have they done in the rest of the king's provinces? Now what is your petition? It shall be granted you. And what further is your request? It shall be fulfilled.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Esther said, \"If it pleases the king, let the Jews who are in Susa be allowed tomorrow also to do according to this day's edict, and let the ten sons of Haman be hanged on the gallows.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> So the king commanded this to be done; a decree was issued in Susa, and the ten sons of Haman were hanged.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The Jews who were in Susa gathered also on the fourteenth day of the month of Adar and they killed three hundred persons in Susa; but they did not touch the plunder.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Now the other Jews who were in the king's provinces also gathered to defend their lives, and gained relief from their enemies, and killed seventy-five thousand of those who hated them; but they laid no hands on the plunder.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> This was on the thirteenth day of the month of Adar, and on the fourteenth day they rested and made that a day of feasting and gladness.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> But the Jews who were in Susa gathered on the thirteenth day and on the fourteenth, and rested on the fifteenth day, making that a day of feasting and gladness.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Therefore the Jews of the villages, who live in the open towns, hold the fourteenth day of the month of Adar as a day for gladness and feasting, a holiday on which they send gifts of food to one another.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Mordecai recorded these things, and sent letters to all the Jews who were in all the provinces of King Ahasuerus, both near and far,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> enjoining them that they should keep the fourteenth day of the month Adar and also the fifteenth day of the same month, year by year,</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> as the days on which the Jews gained relief from their enemies, and as the month that had been turned for them from sorrow into gladness and from mourning into a holiday; that they should make them days of feasting and gladness, days for sending gifts of food to one another and presents to the poor.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> So the Jews adopted as a custom what they had begun to do, as Mordecai had written to them.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Haman son of Hammedatha the Agagite, the enemy of all the Jews, had plotted against the Jews to destroy them, and had cast Pur-- that is \"the lot\"-- to crush and destroy them;</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> but when Esther came before the king, he gave orders in writing that the wicked plot that he had devised against the Jews should come upon his own head, and that he and his sons should be hanged on the gallows.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Therefore these days are called Purim, from the word Pur. Thus because of all that was written in this letter, and of what they had faced in this matter, and of what had happened to them,</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> the Jews established and accepted as a custom for themselves and their descendants and all who joined them, that without fail they would continue to observe these two days every year, as it was written and at the time appointed.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> These days should be remembered and kept throughout every generation, in every family, province, and city; and these days of Purim should never fall into disuse among the Jews, nor should the commemoration of these days cease among their descendants.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Queen Esther daughter of Abihail, along with the Jew Mordecai, gave full written authority, confirming this second letter about Purim.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Letters were sent wishing peace and security to all the Jews, to the one hundred twenty-seven provinces of the kingdom of Ahasuerus,</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> and giving orders that these days of Purim should be observed at their appointed seasons, as the Jew Mordecai and Queen Esther enjoined on the Jews, just as they had laid down for themselves and for their descendants regulations concerning their fasts and their lamentations.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> The command of Queen Esther fixed these practices of Purim, and it was recorded in writing.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"10\">\r\n\t\t\t<VERS vnumber=\"1\"> King Ahasuerus laid tribute on the land and on the islands of the sea.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> All the acts of his power and might, and the full account of the high honor of Mordecai, to which the king advanced him, are they not written in the annals of the kings of Media and Persia?</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For Mordecai the Jew was next in rank to King Ahasuerus, and he was powerful among the Jews and popular with his many kindred, for he sought the good of his people and interceded for the welfare of all his descendants.</VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"18\" bname=\"Job\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> There was once a man in the land of Uz whose name was Job. That man was blameless and upright, one who feared God and turned away from evil.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> There were born to him seven sons and three daughters.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> He had seven thousand sheep, three thousand camels, five hundred yoke of oxen, five hundred donkeys, and very many servants; so that this man was the greatest of all the people of the east.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> His sons used to go and hold feasts in one another's houses in turn; and they would send and invite their three sisters to eat and drink with them.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> And when the feast days had run their course, Job would send and sanctify them, and he would rise early in the morning and offer burnt offerings according to the number of them all; for Job said, \"It may be that my children have sinned, and cursed God in their hearts.\" This is what Job always did.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> One day the heavenly beings came to present themselves before the LORD, and Satan also came among them. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The LORD said to Satan, \"Where have you come from?\" Satan answered the LORD, \"From going to and fro on the earth, and from walking up and down on it.\" </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The LORD said to Satan, \"Have you considered my servant Job? There is no one like him on the earth, a blameless and upright man who fears God and turns away from evil.\" </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then Satan answered the LORD, \"Does Job fear God for nothing? </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Have you not put a fence around him and his house and all that he has, on every side? You have blessed the work of his hands, and his possessions have increased in the land.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But stretch out your hand now, and touch all that he has, and he will curse you to your face.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The LORD said to Satan, \"Very well, all that he has is in your power; only do not stretch out your hand against him!\" So Satan went out from the presence of the LORD. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> One day when his sons and daughters were eating and drinking wine in the eldest brother's house,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> a messenger came to Job and said, \"The oxen were plowing and the donkeys were feeding beside them,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> and the Sabeans fell on them and carried them off, and killed the servants with the edge of the sword; I alone have escaped to tell you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> While he was still speaking, another came and said, \"The fire of God fell from heaven and burned up the sheep and the servants, and consumed them; I alone have escaped to tell you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> While he was still speaking, another came and said, \"The Chaldeans formed three columns, made a raid on the camels and carried them off, and killed the servants with the edge of the sword; I alone have escaped to tell you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> While he was still speaking, another came and said, \"Your sons and daughters were eating and drinking wine in their eldest brother's house,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> and suddenly a great wind came across the desert, struck the four corners of the house, and it fell on the young people, and they are dead; I alone have escaped to tell you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Then Job arose, tore his robe, shaved his head, and fell on the ground and worshiped.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> He said, \"Naked I came from my mother's womb, and naked shall I return there; the LORD gave, and the LORD has taken away; blessed be the name of the LORD.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> In all this Job did not sin or charge God with wrongdoing.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> One day the heavenly beings came to present themselves before the LORD, and Satan also came among them to present himself before the LORD. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The LORD said to Satan, \"Where have you come from?\" Satan answered the LORD, \"From going to and fro on the earth, and from walking up and down on it.\" </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The LORD said to Satan, \"Have you considered my servant Job? There is no one like him on the earth, a blameless and upright man who fears God and turns away from evil. He still persists in his integrity, although you incited me against him, to destroy him for no reason.\" </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then Satan answered the LORD, \"Skin for skin! All that people have they will give to save their lives. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> But stretch out your hand now and touch his bone and his flesh, and he will curse you to your face.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The LORD said to Satan, \"Very well, he is in your power; only spare his life.\" </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> So Satan went out from the presence of the LORD, and inflicted loathsome sores on Job from the sole of his foot to the crown of his head. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Job took a potsherd with which to scrape himself, and sat among the ashes. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then his wife said to him, \"Do you still persist in your integrity? Curse God, and die.\" </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> But he said to her, \"You speak as any foolish woman would speak. Shall we receive the good at the hand of God, and not receive the bad?\" In all this Job did not sin with his lips.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Now when Job's three friends heard of all these troubles that had come upon him, each of them set out from his home-- Eliphaz the Temanite, Bildad the Shuhite, and Zophar the Naamathite. They met together to go and console and comfort him.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> When they saw him from a distance, they did not recognize him, and they raised their voices and wept aloud; they tore their robes and threw dust in the air upon their heads.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> They sat with him on the ground seven days and seven nights, and no one spoke a word to him, for they saw that his suffering was very great.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> After this Job opened his mouth and cursed the day of his birth.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Job said:</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> \"Let the day perish in which I was born, and the night that said, 'A man-child is conceived.'</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Let that day be darkness! May God above not seek it, or light shine on it.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Let gloom and deep darkness claim it. Let clouds settle upon it; let the blackness of the day terrify it.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> That night-- let thick darkness seize it! let it not rejoice among the days of the year; let it not come into the number of the months.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Yes, let that night be barren; let no joyful cry be heard in it. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Let those curse it who curse the Sea, those who are skilled to rouse up Leviathan. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Let the stars of its dawn be dark; let it hope for light, but have none; may it not see the eyelids of the morning--</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> because it did not shut the doors of my mother's womb, and hide trouble from my eyes.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> \"Why did I not die at birth, come forth from the womb and expire?</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Why were there knees to receive me, or breasts for me to suck?</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Now I would be lying down and quiet; I would be asleep; then I would be at rest</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> with kings and counselors of the earth who rebuild ruins for themselves,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> or with princes who have gold, who fill their houses with silver.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Or why was I not buried like a stillborn child, like an infant that never sees the light?</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> There the wicked cease from troubling, and there the weary are at rest.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> There the prisoners are at ease together; they do not hear the voice of the taskmaster.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The small and the great are there, and the slaves are free from their masters.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> \"Why is light given to one in misery, and life to the bitter in soul,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> who long for death, but it does not come, and dig for it more than for hidden treasures;</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> who rejoice exceedingly, and are glad when they find the grave?</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Why is light given to one who cannot see the way, whom God has fenced in?</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> For my sighing comes like my bread, and my groanings are poured out like water. </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Truly the thing that I fear comes upon me, and what I dread befalls me.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> I am not at ease, nor am I quiet; I have no rest; but trouble comes.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> Then Eliphaz the Temanite answered:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"If one ventures a word with you, will you be offended? But who can keep from speaking?</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> See, you have instructed many; you have strengthened the weak hands.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Your words have supported those who were stumbling, and you have made firm the feeble knees.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> But now it has come to you, and you are impatient; it touches you, and you are dismayed.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Is not your fear of God your confidence, and the integrity of your ways your hope?</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> \"Think now, who that was innocent ever perished? Or where were the upright cut off?</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> As I have seen, those who plow iniquity and sow trouble reap the same.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> By the breath of God they perish, and by the blast of his anger they are consumed.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The roar of the lion, the voice of the fierce lion, and the teeth of the young lions are broken.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The strong lion perishes for lack of prey, and the whelps of the lioness are scattered.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> \"Now a word came stealing to me, my ear received the whisper of it.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Amid thoughts from visions of the night, when deep sleep falls on mortals,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> dread came upon me, and trembling, which made all my bones shake.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> A spirit glided past my face; the hair of my flesh bristled.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> It stood still, but I could not discern its appearance. A form was before my eyes; there was silence, then I heard a voice:</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> 'Can mortals be righteous before God? Can human beings be pure before their Maker? </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Even in his servants he puts no trust, and his angels he charges with error;</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> how much more those who live in houses of clay, whose foundation is in the dust, who are crushed like a moth.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Between morning and evening they are destroyed; they perish forever without any regarding it.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Their tent-cord is plucked up within them, and they die devoid of wisdom.'</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"5\">\r\n\t\t\t<VERS vnumber=\"1\"> \"Call now; is there anyone who will answer you? To which of the holy ones will you turn?</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Surely vexation kills the fool, and jealousy slays the simple.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> I have seen fools taking root, but suddenly I cursed their dwelling.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Their children are far from safety, they are crushed in the gate, and there is no one to deliver them.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The hungry eat their harvest, and they take it even out of the thorns; and the thirsty pant after their wealth. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For misery does not come from the earth, nor does trouble sprout from the ground;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> but human beings are born to trouble just as sparks fly upward. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> \"As for me, I would seek God, and to God I would commit my cause.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> He does great things and unsearchable, marvelous things without number.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> He gives rain on the earth and sends waters on the fields;</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> he sets on high those who are lowly, and those who mourn are lifted to safety.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> He frustrates the devices of the crafty, so that their hands achieve no success.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> He takes the wise in their own craftiness; and the schemes of the wily are brought to a quick end.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> They meet with darkness in the daytime, and grope at noonday as in the night.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> But he saves the needy from the sword of their mouth, from the hand of the mighty.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> So the poor have hope, and injustice shuts its mouth.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> \"How happy is the one whom God reproves; therefore do not despise the discipline of the Almighty. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> For he wounds, but he binds up; he strikes, but his hands heal.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> He will deliver you from six troubles; in seven no harm shall touch you.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> In famine he will redeem you from death, and in war from the power of the sword.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> You shall be hidden from the scourge of the tongue, and shall not fear destruction when it comes.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> At destruction and famine you shall laugh, and shall not fear the wild animals of the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> For you shall be in league with the stones of the field, and the wild animals shall be at peace with you.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> You shall know that your tent is safe, you shall inspect your fold and miss nothing.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> You shall know that your descendants will be many, and your offspring like the grass of the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> You shall come to your grave in ripe old age, as a shock of grain comes up to the threshing floor in its season.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> See, we have searched this out; it is true. Hear, and know it for yourself.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"6\">\r\n\t\t\t<VERS vnumber=\"1\"> Then Job answered:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"O that my vexation were weighed, and all my calamity laid in the balances!</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For then it would be heavier than the sand of the sea; therefore my words have been rash.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For the arrows of the Almighty are in me; my spirit drinks their poison; the terrors of God are arrayed against me. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Does the wild ass bray over its grass, or the ox low over its fodder?</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Can that which is tasteless be eaten without salt, or is there any flavor in the juice of mallows? </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> My appetite refuses to touch them; they are like food that is loathsome to me. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> \"O that I might have my request, and that God would grant my desire;</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> that it would please God to crush me, that he would let loose his hand and cut me off!</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> This would be my consolation; I would even exult in unrelenting pain; for I have not denied the words of the Holy One. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> What is my strength, that I should wait? And what is my end, that I should be patient?</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Is my strength the strength of stones, or is my flesh bronze?</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> In truth I have no help in me, and any resource is driven from me.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> \"Those who withhold kindness from a friend forsake the fear of the Almighty. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> My companions are treacherous like a torrent-bed, like freshets that pass away,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> that run dark with ice, turbid with melting snow.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> In time of heat they disappear; when it is hot, they vanish from their place.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The caravans turn aside from their course; they go up into the waste, and perish.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The caravans of Tema look, the travelers of Sheba hope.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> They are disappointed because they were confident; they come there and are confounded.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Such you have now become to me; you see my calamity, and are afraid. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Have I said, 'Make me a gift'? Or, 'From your wealth offer a bribe for me'?</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Or, 'Save me from an opponent's hand'? Or, 'Ransom me from the hand of oppressors'?</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> \"Teach me, and I will be silent; make me understand how I have gone wrong.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> How forceful are honest words! But your reproof, what does it reprove?</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Do you think that you can reprove words, as if the speech of the desperate were wind?</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> You would even cast lots over the orphan, and bargain over your friend.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> \"But now, be pleased to look at me; for I will not lie to your face.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Turn, I pray, let no wrong be done. Turn now, my vindication is at stake.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Is there any wrong on my tongue? Cannot my taste discern calamity?</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"7\">\r\n\t\t\t<VERS vnumber=\"1\"> \"Do not human beings have a hard service on earth, and are not their days like the days of a laborer?</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Like a slave who longs for the shadow, and like laborers who look for their wages,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> so I am allotted months of emptiness, and nights of misery are apportioned to me.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> When I lie down I say, 'When shall I rise?' But the night is long, and I am full of tossing until dawn.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> My flesh is clothed with worms and dirt; my skin hardens, then breaks out again.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> My days are swifter than a weaver's shuttle, and come to their end without hope. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> \"Remember that my life is a breath; my eye will never again see good.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The eye that beholds me will see me no more; while your eyes are upon me, I shall be gone.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> As the cloud fades and vanishes, so those who go down to Sheol do not come up;</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> they return no more to their houses, nor do their places know them any more.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> \"Therefore I will not restrain my mouth; I will speak in the anguish of my spirit; I will complain in the bitterness of my soul.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Am I the Sea, or the Dragon, that you set a guard over me?</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> When I say, 'My bed will comfort me, my couch will ease my complaint,'</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> then you scare me with dreams and terrify me with visions,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> so that I would choose strangling and death rather than this body.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> I loathe my life; I would not live forever. Let me alone, for my days are a breath.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> What are human beings, that you make so much of them, that you set your mind on them,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> visit them every morning, test them every moment?</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Will you not look away from me for a while, let me alone until I swallow my spittle?</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> If I sin, what do I do to you, you watcher of humanity? Why have you made me your target? Why have I become a burden to you?</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Why do you not pardon my transgression and take away my iniquity? For now I shall lie in the earth; you will seek me, but I shall not be.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"8\">\r\n\t\t\t<VERS vnumber=\"1\"> Then Bildad the Shuhite answered:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"How long will you say these things, and the words of your mouth be a great wind?</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Does God pervert justice? Or does the Almighty pervert the right? </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> If your children sinned against him, he delivered them into the power of their transgression.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> If you will seek God and make supplication to the Almighty, </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> if you are pure and upright, surely then he will rouse himself for you and restore to you your rightful place.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Though your beginning was small, your latter days will be very great.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> \"For inquire now of bygone generations, and consider what their ancestors have found;</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> for we are but of yesterday, and we know nothing, for our days on earth are but a shadow.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Will they not teach you and tell you and utter words out of their understanding?</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> \"Can papyrus grow where there is no marsh? Can reeds flourish where there is no water?</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> While yet in flower and not cut down, they wither before any other plant.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Such are the paths of all who forget God; the hope of the godless shall perish.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Their confidence is gossamer, a spider's house their trust.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> If one leans against its house, it will not stand; if one lays hold of it, it will not endure.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The wicked thrive before the sun, and their shoots spread over the garden. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Their roots twine around the stoneheap; they live among the rocks. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> If they are destroyed from their place, then it will deny them, saying, 'I have never seen you.'</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> See, these are their happy ways, and out of the earth still others will spring. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> \"See, God will not reject a blameless person, nor take the hand of evildoers.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> He will yet fill your mouth with laughter, and your lips with shouts of joy.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Those who hate you will be clothed with shame, and the tent of the wicked will be no more.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"9\">\r\n\t\t\t<VERS vnumber=\"1\"> Then Job answered:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"Indeed I know that this is so; but how can a mortal be just before God?</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> If one wished to contend with him, one could not answer him once in a thousand.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> He is wise in heart, and mighty in strength-- who has resisted him, and succeeded?--</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> he who removes mountains, and they do not know it, when he overturns them in his anger;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> who shakes the earth out of its place, and its pillars tremble;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> who commands the sun, and it does not rise; who seals up the stars;</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> who alone stretched out the heavens and trampled the waves of the Sea; </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> who made the Bear and Orion, the Pleiades and the chambers of the south;</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> who does great things beyond understanding, and marvelous things without number.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Look, he passes by me, and I do not see him; he moves on, but I do not perceive him.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> He snatches away; who can stop him? Who will say to him, 'What are you doing?'</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> \"God will not turn back his anger; the helpers of Rahab bowed beneath him.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> How then can I answer him, choosing my words with him?</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Though I am innocent, I cannot answer him; I must appeal for mercy to my accuser.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> If I summoned him and he answered me, I do not believe that he would listen to my voice.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> For he crushes me with a tempest, and multiplies my wounds without cause;</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> he will not let me get my breath, but fills me with bitterness.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> If it is a contest of strength, he is the strong one! If it is a matter of justice, who can summon him? </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Though I am innocent, my own mouth would condemn me; though I am blameless, he would prove me perverse.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> I am blameless; I do not know myself; I loathe my life.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> It is all one; therefore I say, he destroys both the blameless and the wicked.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> When disaster brings sudden death, he mocks at the calamity of the innocent.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> The earth is given into the hand of the wicked; he covers the eyes of its judges-- if it is not he, who then is it?</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> \"My days are swifter than a runner; they flee away, they see no good.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> They go by like skiffs of reed, like an eagle swooping on the prey.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> If I say, 'I will forget my complaint; I will put off my sad countenance and be of good cheer,'</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> I become afraid of all my suffering, for I know you will not hold me innocent.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> I shall be condemned; why then do I labor in vain?</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> If I wash myself with soap and cleanse my hands with lye,</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> yet you will plunge me into filth, and my own clothes will abhor me.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> For he is not a mortal, as I am, that I might answer him, that we should come to trial together.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> There is no umpire between us, who might lay his hand on us both. </VERS>\r\n\t\t\t<VERS vnumber=\"34\"> If he would take his rod away from me, and not let dread of him terrify me,</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> then I would speak without fear of him, for I know I am not what I am thought to be. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"10\">\r\n\t\t\t<VERS vnumber=\"1\"> \"I loathe my life; I will give free utterance to my complaint; I will speak in the bitterness of my soul.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> I will say to God, Do not condemn me; let me know why you contend against me.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Does it seem good to you to oppress, to despise the work of your hands and favor the schemes of the wicked?</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Do you have eyes of flesh? Do you see as humans see?</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Are your days like the days of mortals, or your years like human years,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> that you seek out my iniquity and search for my sin,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> although you know that I am not guilty, and there is no one to deliver out of your hand?</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Your hands fashioned and made me; and now you turn and destroy me. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Remember that you fashioned me like clay; and will you turn me to dust again?</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Did you not pour me out like milk and curdle me like cheese?</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> You clothed me with skin and flesh, and knit me together with bones and sinews.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> You have granted me life and steadfast love, and your care has preserved my spirit.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Yet these things you hid in your heart; I know that this was your purpose.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> If I sin, you watch me, and do not acquit me of my iniquity.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> If I am wicked, woe to me! If I am righteous, I cannot lift up my head, for I am filled with disgrace and look upon my affliction.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Bold as a lion you hunt me; you repeat your exploits against me.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> You renew your witnesses against me, and increase your vexation toward me; you bring fresh troops against me. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> \"Why did you bring me forth from the womb? Would that I had died before any eye had seen me,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> and were as though I had not been, carried from the womb to the grave.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Are not the days of my life few? Let me alone, that I may find a little comfort </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> before I go, never to return, to the land of gloom and deep darkness,</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> the land of gloom and chaos, where light is like darkness.\" </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"11\">\r\n\t\t\t<VERS vnumber=\"1\"> Then Zophar the Naamathite answered:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"Should a multitude of words go unanswered, and should one full of talk be vindicated?</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Should your babble put others to silence, and when you mock, shall no one shame you?</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For you say, 'My conduct is pure, and I am clean in God's sight.' </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> But oh, that God would speak, and open his lips to you,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> and that he would tell you the secrets of wisdom! For wisdom is many-sided. Know then that God exacts of you less than your guilt deserves. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> \"Can you find out the deep things of God? Can you find out the limit of the Almighty? </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> It is higher than heaven-- what can you do? Deeper than Sheol-- what can you know?</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Its measure is longer than the earth, and broader than the sea.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> If he passes through, and imprisons, and assembles for judgment, who can hinder him?</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> For he knows those who are worthless; when he sees iniquity, will he not consider it?</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> But a stupid person will get understanding, when a wild ass is born human. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> \"If you direct your heart rightly, you will stretch out your hands toward him.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> If iniquity is in your hand, put it far away, and do not let wickedness reside in your tents.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Surely then you will lift up your face without blemish; you will be secure, and will not fear.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> You will forget your misery; you will remember it as waters that have passed away.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> And your life will be brighter than the noonday; its darkness will be like the morning.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> And you will have confidence, because there is hope; you will be protected and take your rest in safety. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> You will lie down, and no one will make you afraid; many will entreat your favor.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> But the eyes of the wicked will fail; all way of escape will be lost to them, and their hope is to breathe their last.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"12\">\r\n\t\t\t<VERS vnumber=\"1\"> Then Job answered:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"No doubt you are the people, and wisdom will die with you.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> But I have understanding as well as you; I am not inferior to you. Who does not know such things as these?</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> I am a laughingstock to my friends; I, who called upon God and he answered me, a just and blameless man, I am a laughingstock.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Those at ease have contempt for misfortune, but it is ready for those whose feet are unstable. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The tents of robbers are at peace, and those who provoke God are secure, who bring their god in their hands. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> \"But ask the animals, and they will teach you; the birds of the air, and they will tell you;</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> ask the plants of the earth, and they will teach you; and the fish of the sea will declare to you. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Who among all these does not know that the hand of the LORD has done this?</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> In his hand is the life of every living thing and the breath of every human being.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Does not the ear test words as the palate tastes food?</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Is wisdom with the aged, and understanding in length of days?</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> \"With God are wisdom and strength; he has counsel and understanding. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> If he tears down, no one can rebuild; if he shuts someone in, no one can open up.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> If he withholds the waters, they dry up; if he sends them out, they overwhelm the land.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> With him are strength and wisdom; the deceived and the deceiver are his.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> He leads counselors away stripped, and makes fools of judges.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> He looses the sash of kings, and binds a waistcloth on their loins.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> He leads priests away stripped, and overthrows the mighty.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> He deprives of speech those who are trusted, and takes away the discernment of the elders.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> He pours contempt on princes, and looses the belt of the strong.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> He uncovers the deeps out of darkness, and brings deep darkness to light.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> He makes nations great, then destroys them; he enlarges nations, then leads them away.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> He strips understanding from the leaders of the earth, and makes them wander in a pathless waste.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> They grope in the dark without light; he makes them stagger like a drunkard.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"13\">\r\n\t\t\t<VERS vnumber=\"1\"> \"Look, my eye has seen all this, my ear has heard and understood it.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> What you know, I also know; I am not inferior to you.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> But I would speak to the Almighty, and I desire to argue my case with God.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> As for you, you whitewash with lies; all of you are worthless physicians.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> If you would only keep silent, that would be your wisdom!</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Hear now my reasoning, and listen to the pleadings of my lips.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Will you speak falsely for God, and speak deceitfully for him?</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Will you show partiality toward him, will you plead the case for God?</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Will it be well with you when he searches you out? Or can you deceive him, as one person deceives another?</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> He will surely rebuke you if in secret you show partiality.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Will not his majesty terrify you, and the dread of him fall upon you?</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Your maxims are proverbs of ashes, your defenses are defenses of clay.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> \"Let me have silence, and I will speak, and let come on me what may.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> I will take my flesh in my teeth, and put my life in my hand. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> See, he will kill me; I have no hope; but I will defend my ways to his face. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> This will be my salvation, that the godless shall not come before him.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Listen carefully to my words, and let my declaration be in your ears.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> I have indeed prepared my case; I know that I shall be vindicated.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Who is there that will contend with me? For then I would be silent and die.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Only grant two things to me, then I will not hide myself from your face:</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> withdraw your hand far from me, and do not let dread of you terrify me.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Then call, and I will answer; or let me speak, and you reply to me.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> How many are my iniquities and my sins? Make me know my transgression and my sin.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Why do you hide your face, and count me as your enemy?</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Will you frighten a windblown leaf and pursue dry chaff?</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> For you write bitter things against me, and make me reap the iniquities of my youth. </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> You put my feet in the stocks, and watch all my paths; you set a bound to the soles of my feet.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> One wastes away like a rotten thing, like a garment that is moth-eaten.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"14\">\r\n\t\t\t<VERS vnumber=\"1\"> \"A mortal, born of woman, few of days and full of trouble,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> comes up like a flower and withers, flees like a shadow and does not last.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Do you fix your eyes on such a one? Do you bring me into judgment with you?</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Who can bring a clean thing out of an unclean? No one can.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Since their days are determined, and the number of their months is known to you, and you have appointed the bounds that they cannot pass,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> look away from them, and desist, that they may enjoy, like laborers, their days. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> \"For there is hope for a tree, if it is cut down, that it will sprout again, and that its shoots will not cease.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Though its root grows old in the earth, and its stump dies in the ground,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> yet at the scent of water it will bud and put forth branches like a young plant.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> But mortals die, and are laid low; humans expire, and where are they?</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> As waters fail from a lake, and a river wastes away and dries up,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> so mortals lie down and do not rise again; until the heavens are no more, they will not awake or be roused out of their sleep.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Oh that you would hide me in Sheol, that you would conceal me until your wrath is past, that you would appoint me a set time, and remember me!</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> If mortals die, will they live again? All the days of my service I would wait until my release should come.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> You would call, and I would answer you; you would long for the work of your hands.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> For then you would not number my steps, you would not keep watch over my sin; </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> my transgression would be sealed up in a bag, and you would cover over my iniquity.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> \"But the mountain falls and crumbles away, and the rock is removed from its place;</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> the waters wear away the stones; the torrents wash away the soil of the earth; so you destroy the hope of mortals.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> You prevail forever against them, and they pass away; you change their countenance, and send them away.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Their children come to honor, and they do not know it; they are brought low, and it goes unnoticed.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> They feel only the pain of their own bodies, and mourn only for themselves.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"15\">\r\n\t\t\t<VERS vnumber=\"1\"> Then Eliphaz the Temanite answered:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"Should the wise answer with windy knowledge, and fill themselves with the east wind?</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Should they argue in unprofitable talk, or in words with which they can do no good?</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But you are doing away with the fear of God, and hindering meditation before God.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> For your iniquity teaches your mouth, and you choose the tongue of the crafty.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Your own mouth condemns you, and not I; your own lips testify against you.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> \"Are you the firstborn of the human race? Were you brought forth before the hills?</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Have you listened in the council of God? And do you limit wisdom to yourself?</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> What do you know that we do not know? What do you understand that is not clear to us?</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The gray-haired and the aged are on our side, those older than your father.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Are the consolations of God too small for you, or the word that deals gently with you?</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Why does your heart carry you away, and why do your eyes flash, </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> so that you turn your spirit against God, and let such words go out of your mouth?</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> What are mortals, that they can be clean? Or those born of woman, that they can be righteous?</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> God puts no trust even in his holy ones, and the heavens are not clean in his sight;</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> how much less one who is abominable and corrupt, one who drinks iniquity like water!</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> \"I will show you; listen to me; what I have seen I will declare--</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> what sages have told, and their ancestors have not hidden,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> to whom alone the land was given, and no stranger passed among them.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The wicked writhe in pain all their days, through all the years that are laid up for the ruthless.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Terrifying sounds are in their ears; in prosperity the destroyer will come upon them.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> They despair of returning from darkness, and they are destined for the sword.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> They wander abroad for bread, saying, 'Where is it?' They know that a day of darkness is ready at hand;</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> distress and anguish terrify them; they prevail against them, like a king prepared for battle.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Because they stretched out their hands against God, and bid defiance to the Almighty, </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> running stubbornly against him with a thick-bossed shield;</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> because they have covered their faces with their fat, and gathered fat upon their loins,</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> they will live in desolate cities, in houses that no one should inhabit, houses destined to become heaps of ruins;</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> they will not be rich, and their wealth will not endure, nor will they strike root in the earth; </VERS>\r\n\t\t\t<VERS vnumber=\"30\"> they will not escape from darkness; the flame will dry up their shoots, and their blossom will be swept away by the wind. </VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Let them not trust in emptiness, deceiving themselves; for emptiness will be their recompense.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> It will be paid in full before their time, and their branch will not be green.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> They will shake off their unripe grape, like the vine, and cast off their blossoms, like the olive tree.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> For the company of the godless is barren, and fire consumes the tents of bribery.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> They conceive mischief and bring forth evil and their heart prepares deceit.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"16\">\r\n\t\t\t<VERS vnumber=\"1\"> Then Job answered:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"I have heard many such things; miserable comforters are you all.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Have windy words no limit? Or what provokes you that you keep on talking?</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> I also could talk as you do, if you were in my place; I could join words together against you, and shake my head at you.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> I could encourage you with my mouth, and the solace of my lips would assuage your pain.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> \"If I speak, my pain is not assuaged, and if I forbear, how much of it leaves me?</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Surely now God has worn me out; he has made desolate all my company. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And he has shriveled me up, which is a witness against me; my leanness has risen up against me, and it testifies to my face. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> He has torn me in his wrath, and hated me; he has gnashed his teeth at me; my adversary sharpens his eyes against me.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> They have gaped at me with their mouths; they have struck me insolently on the cheek; they mass themselves together against me.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> God gives me up to the ungodly, and casts me into the hands of the wicked.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> I was at ease, and he broke me in two; he seized me by the neck and dashed me to pieces; he set me up as his target;</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> his archers surround me. He slashes open my kidneys, and shows no mercy; he pours out my gall on the ground.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> He bursts upon me again and again; he rushes at me like a warrior.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> I have sewed sackcloth upon my skin, and have laid my strength in the dust.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> My face is red with weeping, and deep darkness is on my eyelids,</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> though there is no violence in my hands, and my prayer is pure.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> \"O earth, do not cover my blood; let my outcry find no resting place.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Even now, in fact, my witness is in heaven, and he that vouches for me is on high.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> My friends scorn me; my eye pours out tears to God,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> that he would maintain the right of a mortal with God, as one does for a neighbor. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> For when a few years have come, I shall go the way from which I shall not return.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"17\">\r\n\t\t\t<VERS vnumber=\"1\"> My spirit is broken, my days are extinct, the grave is ready for me.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Surely there are mockers around me, and my eye dwells on their provocation.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> \"Lay down a pledge for me with yourself; who is there that will give surety for me?</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Since you have closed their minds to understanding, therefore you will not let them triumph.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Those who denounce friends for reward-- the eyes of their children will fail.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> \"He has made me a byword of the peoples, and I am one before whom people spit.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> My eye has grown dim from grief, and all my members are like a shadow.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The upright are appalled at this, and the innocent stir themselves up against the godless.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Yet the righteous hold to their way, and they that have clean hands grow stronger and stronger.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> But you, come back now, all of you, and I shall not find a sensible person among you.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> My days are past, my plans are broken off, the desires of my heart.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> They make night into day; 'The light,' they say, 'is near to the darkness.' </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> If I look for Sheol as my house, if I spread my couch in darkness,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> if I say to the Pit, 'You are my father,' and to the worm, 'My mother,' or 'My sister,'</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> where then is my hope? Who will see my hope?</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Will it go down to the bars of Sheol? Shall we descend together into the dust?\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"18\">\r\n\t\t\t<VERS vnumber=\"1\"> Then Bildad the Shuhite answered:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"How long will you hunt for words? Consider, and then we shall speak.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Why are we counted as cattle? Why are we stupid in your sight?</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> You who tear yourself in your anger-- shall the earth be forsaken because of you, or the rock be removed out of its place?</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> \"Surely the light of the wicked is put out, and the flame of their fire does not shine.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The light is dark in their tent, and the lamp above them is put out.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Their strong steps are shortened, and their own schemes throw them down.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> For they are thrust into a net by their own feet, and they walk into a pitfall.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> A trap seizes them by the heel; a snare lays hold of them.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> A rope is hid for them in the ground, a trap for them in the path.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Terrors frighten them on every side, and chase them at their heels.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Their strength is consumed by hunger, and calamity is ready for their stumbling. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> By disease their skin is consumed, the firstborn of Death consumes their limbs.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> They are torn from the tent in which they trusted, and are brought to the king of terrors.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> In their tents nothing remains; sulfur is scattered upon their habitations.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Their roots dry up beneath, and their branches wither above.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Their memory perishes from the earth, and they have no name in the street.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> They are thrust from light into darkness, and driven out of the world.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> They have no offspring or descendant among their people, and no survivor where they used to live.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> They of the west are appalled at their fate, and horror seizes those of the east.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Surely such are the dwellings of the ungodly, such is the place of those who do not know God.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"19\">\r\n\t\t\t<VERS vnumber=\"1\"> Then Job answered:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"How long will you torment me, and break me in pieces with words?</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> These ten times you have cast reproach upon me; are you not ashamed to wrong me?</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> And even if it is true that I have erred, my error remains with me.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> If indeed you magnify yourselves against me, and make my humiliation an argument against me,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> know then that God has put me in the wrong, and closed his net around me.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Even when I cry out, 'Violence!' I am not answered; I call aloud, but there is no justice.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> He has walled up my way so that I cannot pass, and he has set darkness upon my paths.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> He has stripped my glory from me, and taken the crown from my head.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> He breaks me down on every side, and I am gone, he has uprooted my hope like a tree.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> He has kindled his wrath against me, and counts me as his adversary.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> His troops come on together; they have thrown up siegeworks against me, and encamp around my tent. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> \"He has put my family far from me, and my acquaintances are wholly estranged from me.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> My relatives and my close friends have failed me;</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> the guests in my house have forgotten me; my serving girls count me as a stranger; I have become an alien in their eyes.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> I call to my servant, but he gives me no answer; I must myself plead with him.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> My breath is repulsive to my wife; I am loathsome to my own family.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Even young children despise me; when I rise, they talk against me.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> All my intimate friends abhor me, and those whom I loved have turned against me.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> My bones cling to my skin and to my flesh, and I have escaped by the skin of my teeth.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Have pity on me, have pity on me, O you my friends, for the hand of God has touched me!</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Why do you, like God, pursue me, never satisfied with my flesh?</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> \"O that my words were written down! O that they were inscribed in a book!</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> O that with an iron pen and with lead they were engraved on a rock forever!</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> For I know that my Redeemer lives, and that at the last he will stand upon the earth;</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> and after my skin has been thus destroyed, then in my flesh I shall see God, </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> whom I shall see on my side, and my eyes shall behold, and not another. My heart faints within me! </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> If you say, 'How we will persecute him!' and, 'The root of the matter is found in him';</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> be afraid of the sword, for wrath brings the punishment of the sword, so that you may know there is a judgment.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"20\">\r\n\t\t\t<VERS vnumber=\"1\"> Then Zophar the Naamathite answered:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"Pay attention! My thoughts urge me to answer, because of the agitation within me.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> I hear censure that insults me, and a spirit beyond my understanding answers me.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Do you not know this from of old, ever since mortals were placed on earth,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> that the exulting of the wicked is short, and the joy of the godless is but for a moment?</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Even though they mount up high as the heavens, and their head reaches to the clouds,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> they will perish forever like their own dung; those who have seen them will say, 'Where are they?'</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> They will fly away like a dream, and not be found; they will be chased away like a vision of the night.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The eye that saw them will see them no more, nor will their place behold them any longer.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Their children will seek the favor of the poor, and their hands will give back their wealth.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Their bodies, once full of youth, will lie down in the dust with them.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> \"Though wickedness is sweet in their mouth, though they hide it under their tongues,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> though they are loath to let it go, and hold it in their mouths,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> yet their food is turned in their stomachs; it is the venom of asps within them.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> They swallow down riches and vomit them up again; God casts them out of their bellies.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> They will suck the poison of asps; the tongue of a viper will kill them.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> They will not look on the rivers, the streams flowing with honey and curds.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> They will give back the fruit of their toil, and will not swallow it down; from the profit of their trading they will get no enjoyment.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> For they have crushed and abandoned the poor, they have seized a house that they did not build.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> \"They knew no quiet in their bellies; in their greed they let nothing escape.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> There was nothing left after they had eaten; therefore their prosperity will not endure.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> In full sufficiency they will be in distress; all the force of misery will come upon them.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> To fill their belly to the full God will send his fierce anger into them, and rain it upon them as their food. </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> They will flee from an iron weapon; a bronze arrow will strike them through.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> It is drawn forth and comes out of their body, and the glittering point comes out of their gall; terrors come upon them.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Utter darkness is laid up for their treasures; a fire fanned by no one will devour them; what is left in their tent will be consumed.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> The heavens will reveal their iniquity, and the earth will rise up against them.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> The possessions of their house will be carried away, dragged off in the day of God's wrath. </VERS>\r\n\t\t\t<VERS vnumber=\"29\"> This is the portion of the wicked from God, the heritage decreed for them by God.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"21\">\r\n\t\t\t<VERS vnumber=\"1\"> Then Job answered:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"Listen carefully to my words, and let this be your consolation.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Bear with me, and I will speak; then after I have spoken, mock on.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> As for me, is my complaint addressed to mortals? Why should I not be impatient?</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Look at me, and be appalled, and lay your hand upon your mouth.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> When I think of it I am dismayed, and shuddering seizes my flesh.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Why do the wicked live on, reach old age, and grow mighty in power?</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Their children are established in their presence, and their offspring before their eyes.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Their houses are safe from fear, and no rod of God is upon them.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Their bull breeds without fail; their cow calves and never miscarries.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> They send out their little ones like a flock, and their children dance around.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> They sing to the tambourine and the lyre, and rejoice to the sound of the pipe.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> They spend their days in prosperity, and in peace they go down to Sheol.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> They say to God, 'Leave us alone! We do not desire to know your ways.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> What is the Almighty, that we should serve him? And what profit do we get if we pray to him?' </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Is not their prosperity indeed their own achievement? The plans of the wicked are repugnant to me. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> \"How often is the lamp of the wicked put out? How often does calamity come upon them? How often does God distribute pains in his anger? </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> How often are they like straw before the wind, and like chaff that the storm carries away?</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> You say, 'God stores up their iniquity for their children.' Let it be paid back to them, so that they may know it.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Let their own eyes see their destruction, and let them drink of the wrath of the Almighty. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> For what do they care for their household after them, when the number of their months is cut off?</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Will any teach God knowledge, seeing that he judges those that are on high?</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> One dies in full prosperity, being wholly at ease and secure,</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> his loins full of milk and the marrow of his bones moist.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Another dies in bitterness of soul, never having tasted of good.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> They lie down alike in the dust, and the worms cover them.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> \"Oh, I know your thoughts, and your schemes to wrong me.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> For you say, 'Where is the house of the prince? Where is the tent in which the wicked lived?'</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Have you not asked those who travel the roads, and do you not accept their testimony,</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> that the wicked are spared in the day of calamity, and are rescued in the day of wrath?</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Who declares their way to their face, and who repays them for what they have done?</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> When they are carried to the grave, a watch is kept over their tomb.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> The clods of the valley are sweet to them; everyone will follow after, and those who went before are innumerable.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> How then will you comfort me with empty nothings? There is nothing left of your answers but falsehood.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"22\">\r\n\t\t\t<VERS vnumber=\"1\"> Then Eliphaz the Temanite answered:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"Can a mortal be of use to God? Can even the wisest be of service to him?</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Is it any pleasure to the Almighty if you are righteous, or is it gain to him if you make your ways blameless?</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Is it for your piety that he reproves you, and enters into judgment with you?</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Is not your wickedness great? There is no end to your iniquities.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For you have exacted pledges from your family for no reason, and stripped the naked of their clothing.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> You have given no water to the weary to drink, and you have withheld bread from the hungry.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The powerful possess the land, and the favored live in it.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> You have sent widows away empty-handed, and the arms of the orphans you have crushed. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Therefore snares are around you, and sudden terror overwhelms you,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> or darkness so that you cannot see; a flood of water covers you.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> \"Is not God high in the heavens? See the highest stars, how lofty they are!</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Therefore you say, 'What does God know? Can he judge through the deep darkness?</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Thick clouds enwrap him, so that he does not see, and he walks on the dome of heaven.'</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Will you keep to the old way that the wicked have trod?</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> They were snatched away before their time; their foundation was washed away by a flood.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> They said to God, 'Leave us alone,' and 'What can the Almighty do to us?' </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Yet he filled their houses with good things-- but the plans of the wicked are repugnant to me.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The righteous see it and are glad; the innocent laugh them to scorn,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> saying, 'Surely our adversaries are cut off, and what they left, the fire has consumed.'</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> \"Agree with God, and be at peace; in this way good will come to you. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Receive instruction from his mouth, and lay up his words in your heart.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> If you return to the Almighty, you will be restored, if you remove unrighteousness from your tents,</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> if you treat gold like dust, and gold of Ophir like the stones of the torrent-bed,</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> and if the Almighty is your gold and your precious silver, </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> then you will delight yourself in the Almighty, and lift up your face to God. </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> You will pray to him, and he will hear you, and you will pay your vows.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> You will decide on a matter, and it will be established for you, and light will shine on your ways.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> When others are humiliated, you say it is pride; for he saves the humble.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> He will deliver even those who are guilty; they will escape because of the cleanness of your hands.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"23\">\r\n\t\t\t<VERS vnumber=\"1\"> Then Job answered:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"Today also my complaint is bitter; his hand is heavy despite my groaning. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Oh, that I knew where I might find him, that I might come even to his dwelling!</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> I would lay my case before him, and fill my mouth with arguments.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> I would learn what he would answer me, and understand what he would say to me.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Would he contend with me in the greatness of his power? No; but he would give heed to me.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> There an upright person could reason with him, and I should be acquitted forever by my judge.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> \"If I go forward, he is not there; or backward, I cannot perceive him;</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> on the left he hides, and I cannot behold him; I turn to the right, but I cannot see him. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> But he knows the way that I take; when he has tested me, I shall come out like gold.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> My foot has held fast to his steps; I have kept his way and have not turned aside.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> I have not departed from the commandment of his lips; I have treasured in my bosom the words of his mouth. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> But he stands alone and who can dissuade him? What he desires, that he does.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> For he will complete what he appoints for me; and many such things are in his mind.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Therefore I am terrified at his presence; when I consider, I am in dread of him.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> God has made my heart faint; the Almighty has terrified me; </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> If only I could vanish in darkness, and thick darkness would cover my face! </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"24\">\r\n\t\t\t<VERS vnumber=\"1\"> \"Why are times not kept by the Almighty, and why do those who know him never see his days? </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The wicked remove landmarks; they seize flocks and pasture them. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> They drive away the donkey of the orphan; they take the widow's ox for a pledge.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> They thrust the needy off the road; the poor of the earth all hide themselves.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Like wild asses in the desert they go out to their toil, scavenging in the wasteland food for their young.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> They reap in a field not their own and they glean in the vineyard of the wicked.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> They lie all night naked, without clothing, and have no covering in the cold.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> They are wet with the rain of the mountains, and cling to the rock for want of shelter.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> \"There are those who snatch the orphan child from the breast, and take as a pledge the infant of the poor.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> They go about naked, without clothing; though hungry, they carry the sheaves;</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> between their terraces they press out oil; they tread the wine presses, but suffer thirst. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> From the city the dying groan, and the throat of the wounded cries for help; yet God pays no attention to their prayer.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> \"There are those who rebel against the light, who are not acquainted with its ways, and do not stay in its paths.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The murderer rises at dusk to kill the poor and needy, and in the night is like a thief.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The eye of the adulterer also waits for the twilight, saying, 'No eye will see me'; and he disguises his face.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> In the dark they dig through houses; by day they shut themselves up; they do not know the light.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> For deep darkness is morning to all of them; for they are friends with the terrors of deep darkness.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> \"Swift are they on the face of the waters; their portion in the land is cursed; no treader turns toward their vineyards.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Drought and heat snatch away the snow waters; so does Sheol those who have sinned.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The womb forgets them; the worm finds them sweet; they are no longer remembered; so wickedness is broken like a tree.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> \"They harm the childless woman, and do no good to the widow. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Yet God prolongs the life of the mighty by his power; they rise up when they despair of life. </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> He gives them security, and they are supported; his eyes are upon their ways.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> They are exalted a little while, and then are gone; they wither and fade like the mallow; they are cut off like the heads of grain. </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> If it is not so, who will prove me a liar, and show that there is nothing in what I say?\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"25\">\r\n\t\t\t<VERS vnumber=\"1\"> Then Bildad the Shuhite answered:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"Dominion and fear are with God; he makes peace in his high heaven. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Is there any number to his armies? Upon whom does his light not arise?</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> How then can a mortal be righteous before God? How can one born of woman be pure?</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> If even the moon is not bright and the stars are not pure in his sight,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> how much less a mortal, who is a maggot, and a human being, who is a worm!\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"26\">\r\n\t\t\t<VERS vnumber=\"1\"> Then Job answered:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"How you have helped one who has no power! How you have assisted the arm that has no strength!</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> How you have counseled one who has no wisdom, and given much good advice!</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> With whose help have you uttered words, and whose spirit has come forth from you?</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The shades below tremble, the waters and their inhabitants.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Sheol is naked before God, and Abaddon has no covering.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> He stretches out Zaphon over the void, and hangs the earth upon nothing. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> He binds up the waters in his thick clouds, and the cloud is not torn open by them.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> He covers the face of the full moon, and spreads over it his cloud.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> He has described a circle on the face of the waters, at the boundary between light and darkness.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The pillars of heaven tremble, and are astounded at his rebuke.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> By his power he stilled the Sea; by his understanding he struck down Rahab.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> By his wind the heavens were made fair; his hand pierced the fleeing serpent.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> These are indeed but the outskirts of his ways; and how small a whisper do we hear of him! But the thunder of his power who can understand?\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"27\">\r\n\t\t\t<VERS vnumber=\"1\"> Job again took up his discourse and said:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"As God lives, who has taken away my right, and the Almighty, who has made my soul bitter, </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> as long as my breath is in me and the spirit of God is in my nostrils,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> my lips will not speak falsehood, and my tongue will not utter deceit.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Far be it from me to say that you are right; until I die I will not put away my integrity from me.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> I hold fast my righteousness, and will not let it go; my heart does not reproach me for any of my days.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> \"May my enemy be like the wicked, and may my opponent be like the unrighteous.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> For what is the hope of the godless when God cuts them off, when God takes away their lives?</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Will God hear their cry when trouble comes upon them?</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Will they take delight in the Almighty? Will they call upon God at all times? </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> I will teach you concerning the hand of God; that which is with the Almighty I will not conceal. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> All of you have seen it yourselves; why then have you become altogether vain?</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> \"This is the portion of the wicked with God, and the heritage that oppressors receive from the Almighty: </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> If their children are multiplied, it is for the sword; and their offspring have not enough to eat.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Those who survive them the pestilence buries, and their widows make no lamentation.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Though they heap up silver like dust, and pile up clothing like clay--</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> they may pile it up, but the just will wear it, and the innocent will divide the silver.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> They build their houses like nests, like booths made by sentinels of the vineyard.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> They go to bed with wealth, but will do so no more; they open their eyes, and it is gone.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Terrors overtake them like a flood; in the night a whirlwind carries them off.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> The east wind lifts them up and they are gone; it sweeps them out of their place.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> It hurls at them without pity; they flee from its power in headlong flight. </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> It claps its hands at them, and hisses at them from its place. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"28\">\r\n\t\t\t<VERS vnumber=\"1\"> \"Surely there is a mine for silver, and a place for gold to be refined.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Iron is taken out of the earth, and copper is smelted from ore.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Miners put an end to darkness, and search out to the farthest bound the ore in gloom and deep darkness.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> They open shafts in a valley away from human habitation; they are forgotten by travelers, they sway suspended, remote from people.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> As for the earth, out of it comes bread; but underneath it is turned up as by fire.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Its stones are the place of sapphires, and its dust contains gold. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> \"That path no bird of prey knows, and the falcon's eye has not seen it.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The proud wild animals have not trodden it; the lion has not passed over it.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> \"They put their hand to the flinty rock, and overturn mountains by the roots.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> They cut out channels in the rocks, and their eyes see every precious thing.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The sources of the rivers they probe; hidden things they bring to light. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> \"But where shall wisdom be found? And where is the place of understanding?</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Mortals do not know the way to it, and it is not found in the land of the living.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The deep says, 'It is not in me,' and the sea says, 'It is not with me.'</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> It cannot be gotten for gold, and silver cannot be weighed out as its price.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> It cannot be valued in the gold of Ophir, in precious onyx or sapphire. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Gold and glass cannot equal it, nor can it be exchanged for jewels of fine gold.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> No mention shall be made of coral or of crystal; the price of wisdom is above pearls.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The chrysolite of Ethiopia cannot compare with it, nor can it be valued in pure gold. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> \"Where then does wisdom come from? And where is the place of understanding?</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> It is hidden from the eyes of all living, and concealed from the birds of the air.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Abaddon and Death say, 'We have heard a rumor of it with our ears.'</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> \"God understands the way to it, and he knows its place.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> For he looks to the ends of the earth, and sees everything under the heavens.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> When he gave to the wind its weight, and apportioned out the waters by measure;</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> when he made a decree for the rain, and a way for the thunderbolt;</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> then he saw it and declared it; he established it, and searched it out.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> And he said to humankind, 'Truly, the fear of the Lord, that is wisdom; and to depart from evil is understanding.'\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"29\">\r\n\t\t\t<VERS vnumber=\"1\"> Job again took up his discourse and said:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"Oh, that I were as in the months of old, as in the days when God watched over me;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> when his lamp shone over my head, and by his light I walked through darkness;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> when I was in my prime, when the friendship of God was upon my tent;</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> when the Almighty was still with me, when my children were around me; </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> when my steps were washed with milk, and the rock poured out for me streams of oil!</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> When I went out to the gate of the city, when I took my seat in the square,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> the young men saw me and withdrew, and the aged rose up and stood;</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> the nobles refrained from talking, and laid their hands on their mouths;</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> the voices of princes were hushed, and their tongues stuck to the roof of their mouths.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> When the ear heard, it commended me, and when the eye saw, it approved;</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> because I delivered the poor who cried, and the orphan who had no helper.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The blessing of the wretched came upon me, and I caused the widow's heart to sing for joy.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> I put on righteousness, and it clothed me; my justice was like a robe and a turban.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> I was eyes to the blind, and feet to the lame.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> I was a father to the needy, and I championed the cause of the stranger.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> I broke the fangs of the unrighteous, and made them drop their prey from their teeth.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then I thought, 'I shall die in my nest, and I shall multiply my days like the phoenix;</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> my roots spread out to the waters, with the dew all night on my branches;</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> my glory was fresh with me, and my bow ever new in my hand.'</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> \"They listened to me, and waited, and kept silence for my counsel.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> After I spoke they did not speak again, and my word dropped upon them like dew. </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> They waited for me as for the rain; they opened their mouths as for the spring rain.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> I smiled on them when they had no confidence; and the light of my countenance they did not extinguish. </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> I chose their way, and sat as chief, and I lived like a king among his troops, like one who comforts mourners.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"30\">\r\n\t\t\t<VERS vnumber=\"1\"> \"But now they make sport of me, those who are younger than I, whose fathers I would have disdained to set with the dogs of my flock.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> What could I gain from the strength of their hands? All their vigor is gone.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Through want and hard hunger they gnaw the dry and desolate ground,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> they pick mallow and the leaves of bushes, and to warm themselves the roots of broom.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> They are driven out from society; people shout after them as after a thief.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> In the gullies of wadis they must live, in holes in the ground, and in the rocks.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Among the bushes they bray; under the nettles they huddle together.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> A senseless, disreputable brood, they have been whipped out of the land.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> \"And now they mock me in song; I am a byword to them.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> They abhor me, they keep aloof from me; they do not hesitate to spit at the sight of me.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Because God has loosed my bowstring and humbled me, they have cast off restraint in my presence.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> On my right hand the rabble rise up; they send me sprawling, and build roads for my ruin.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> They break up my path, they promote my calamity; no one restrains them. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> As through a wide breach they come; amid the crash they roll on.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Terrors are turned upon me; my honor is pursued as by the wind, and my prosperity has passed away like a cloud.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> \"And now my soul is poured out within me; days of affliction have taken hold of me.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The night racks my bones, and the pain that gnaws me takes no rest.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> With violence he seizes my garment; he grasps me by the collar of my tunic. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> He has cast me into the mire, and I have become like dust and ashes.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> I cry to you and you do not answer me; I stand, and you merely look at me.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> You have turned cruel to me; with the might of your hand you persecute me.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> You lift me up on the wind, you make me ride on it, and you toss me about in the roar of the storm.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> I know that you will bring me to death, and to the house appointed for all living.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> \"Surely one does not turn against the needy, when in disaster they cry for help.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Did I not weep for those whose day was hard? Was not my soul grieved for the poor?</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> But when I looked for good, evil came; and when I waited for light, darkness came.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> My inward parts are in turmoil, and are never still; days of affliction come to meet me.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> I go about in sunless gloom; I stand up in the assembly and cry for help.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> I am a brother of jackals, and a companion of ostriches.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> My skin turns black and falls from me, and my bones burn with heat.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> My lyre is turned to mourning, and my pipe to the voice of those who weep.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"31\">\r\n\t\t\t<VERS vnumber=\"1\"> \"I have made a covenant with my eyes; how then could I look upon a virgin?</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> What would be my portion from God above, and my heritage from the Almighty on high? </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Does not calamity befall the unrighteous, and disaster the workers of iniquity?</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Does he not see my ways, and number all my steps?</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> \"If I have walked with falsehood, and my foot has hurried to deceit--</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> let me be weighed in a just balance, and let God know my integrity!--</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> if my step has turned aside from the way, and my heart has followed my eyes, and if any spot has clung to my hands;</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> then let me sow, and another eat; and let what grows for me be rooted out.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> \"If my heart has been enticed by a woman, and I have lain in wait at my neighbor's door;</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> then let my wife grind for another, and let other men kneel over her.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> For that would be a heinous crime; that would be a criminal offense;</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> for that would be a fire consuming down to Abaddon, and it would burn to the root all my harvest.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> \"If I have rejected the cause of my male or female slaves, when they brought a complaint against me;</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> what then shall I do when God rises up? When he makes inquiry, what shall I answer him?</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Did not he who made me in the womb make them? And did not one fashion us in the womb?</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> \"If I have withheld anything that the poor desired, or have caused the eyes of the widow to fail,</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> or have eaten my morsel alone, and the orphan has not eaten from it--</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> for from my youth I reared the orphan like a father, and from my mother's womb I guided the widow--</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> if I have seen anyone perish for lack of clothing, or a poor person without covering,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> whose loins have not blessed me, and who was not warmed with the fleece of my sheep;</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> if I have raised my hand against the orphan, because I saw I had supporters at the gate;</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> then let my shoulder blade fall from my shoulder, and let my arm be broken from its socket.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> For I was in terror of calamity from God, and I could not have faced his majesty.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> \"If I have made gold my trust, or called fine gold my confidence;</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> if I have rejoiced because my wealth was great, or because my hand had gotten much;</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> if I have looked at the sun when it shone, or the moon moving in splendor, </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> and my heart has been secretly enticed, and my mouth has kissed my hand;</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> this also would be an iniquity to be punished by the judges, for I should have been false to God above.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> \"If I have rejoiced at the ruin of those who hated me, or exulted when evil overtook them--</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> I have not let my mouth sin by asking for their lives with a curse--</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> if those of my tent ever said, 'O that we might be sated with his flesh!'--</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> the stranger has not lodged in the street; I have opened my doors to the traveler--</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> if I have concealed my transgressions as others do, by hiding my iniquity in my bosom, </VERS>\r\n\t\t\t<VERS vnumber=\"34\"> because I stood in great fear of the multitude, and the contempt of families terrified me, so that I kept silence, and did not go out of doors--</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Oh, that I had one to hear me! (Here is my signature! let the Almighty answer me!) Oh, that I had the indictment written by my adversary! </VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Surely I would carry it on my shoulder; I would bind it on me like a crown;</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> I would give him an account of all my steps; like a prince I would approach him.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> \"If my land has cried out against me, and its furrows have wept together;</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> if I have eaten its yield without payment, and caused the death of its owners;</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> let thorns grow instead of wheat, and foul weeds instead of barley.\" The words of Job are ended.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"32\">\r\n\t\t\t<VERS vnumber=\"1\"> So these three men ceased to answer Job, because he was righteous in his own eyes.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Then Elihu son of Barachel the Buzite, of the family of Ram, became angry. He was angry at Job because he justified himself rather than God;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> he was angry also at Job's three friends because they had found no answer, though they had declared Job to be in the wrong. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Now Elihu had waited to speak to Job, because they were older than he.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> But when Elihu saw that there was no answer in the mouths of these three men, he became angry.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Elihu son of Barachel the Buzite answered: \"I am young in years, and you are aged; therefore I was timid and afraid to declare my opinion to you.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> I said, 'Let days speak, and many years teach wisdom.'</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But truly it is the spirit in a mortal, the breath of the Almighty, that makes for understanding. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> It is not the old that are wise, nor the aged that understand what is right. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Therefore I say, 'Listen to me; let me also declare my opinion.'</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> \"See, I waited for your words, I listened for your wise sayings, while you searched out what to say.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> I gave you my attention, but there was in fact no one that confuted Job, no one among you that answered his words.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Yet do not say, 'We have found wisdom; God may vanquish him, not a human.'</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> He has not directed his words against me, and I will not answer him with your speeches.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> \"They are dismayed, they answer no more; they have not a word to say.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> And am I to wait, because they do not speak, because they stand there, and answer no more?</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> I also will give my answer; I also will declare my opinion.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> For I am full of words; the spirit within me constrains me.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> My heart is indeed like wine that has no vent; like new wineskins, it is ready to burst.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> I must speak, so that I may find relief; I must open my lips and answer.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> I will not show partiality to any person or use flattery toward anyone.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> For I do not know how to flatter-- or my Maker would soon put an end to me!</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"33\">\r\n\t\t\t<VERS vnumber=\"1\"> \"But now, hear my speech, O Job, and listen to all my words.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> See, I open my mouth; the tongue in my mouth speaks.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> My words declare the uprightness of my heart, and what my lips know they speak sincerely.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The spirit of God has made me, and the breath of the Almighty gives me life. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Answer me, if you can; set your words in order before me; take your stand.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> See, before God I am as you are; I too was formed from a piece of clay.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> No fear of me need terrify you; my pressure will not be heavy on you.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> \"Surely, you have spoken in my hearing, and I have heard the sound of your words.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> You say, 'I am clean, without transgression; I am pure, and there is no iniquity in me.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Look, he finds occasions against me, he counts me as his enemy;</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> he puts my feet in the stocks, and watches all my paths.'</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> \"But in this you are not right. I will answer you: God is greater than any mortal.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Why do you contend against him, saying, 'He will answer none of my words'? </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> For God speaks in one way, and in two, though people do not perceive it.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> In a dream, in a vision of the night, when deep sleep falls on mortals, while they slumber on their beds,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> then he opens their ears, and terrifies them with warnings,</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> that he may turn them aside from their deeds, and keep them from pride,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> to spare their souls from the Pit, their lives from traversing the River.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> They are also chastened with pain upon their beds, and with continual strife in their bones,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> so that their lives loathe bread, and their appetites dainty food.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Their flesh is so wasted away that it cannot be seen; and their bones, once invisible, now stick out.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Their souls draw near the Pit, and their lives to those who bring death.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Then, if there should be for one of them an angel, a mediator, one of a thousand, one who declares a person upright,</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> and he is gracious to that person, and says, 'Deliver him from going down into the Pit; I have found a ransom;</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> let his flesh become fresh with youth; let him return to the days of his youthful vigor.'</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Then he prays to God, and is accepted by him, he comes into his presence with joy, and God repays him for his righteousness. </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> That person sings to others and says, 'I sinned, and perverted what was right, and it was not paid back to me.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> He has redeemed my soul from going down to the Pit, and my life shall see the light.'</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> \"God indeed does all these things, twice, three times, with mortals,</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> to bring back their souls from the Pit, so that they may see the light of life. </VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Pay heed, Job, listen to me; be silent, and I will speak.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> If you have anything to say, answer me; speak, for I desire to justify you.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> If not, listen to me; be silent, and I will teach you wisdom.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"34\">\r\n\t\t\t<VERS vnumber=\"1\"> Then Elihu continued and said:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"Hear my words, you wise men, and give ear to me, you who know;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> for the ear tests words as the palate tastes food.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Let us choose what is right; let us determine among ourselves what is good.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> For Job has said, 'I am innocent, and God has taken away my right;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> in spite of being right I am counted a liar; my wound is incurable, though I am without transgression.'</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Who is there like Job, who drinks up scoffing like water,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> who goes in company with evildoers and walks with the wicked?</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> For he has said, 'It profits one nothing to take delight in God.'</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> \"Therefore, hear me, you who have sense, far be it from God that he should do wickedness, and from the Almighty that he should do wrong. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> For according to their deeds he will repay them, and according to their ways he will make it befall them.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Of a truth, God will not do wickedly, and the Almighty will not pervert justice. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Who gave him charge over the earth and who laid on him the whole world? </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> If he should take back his spirit to himself, and gather to himself his breath,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> all flesh would perish together, and all mortals return to dust.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> \"If you have understanding, hear this; listen to what I say.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Shall one who hates justice govern? Will you condemn one who is righteous and mighty,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> who says to a king, 'You scoundrel!' and to princes, 'You wicked men!';</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> who shows no partiality to nobles, nor regards the rich more than the poor, for they are all the work of his hands?</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> In a moment they die; at midnight the people are shaken and pass away, and the mighty are taken away by no human hand.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> \"For his eyes are upon the ways of mortals, and he sees all their steps.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> There is no gloom or deep darkness where evildoers may hide themselves.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> For he has not appointed a time for anyone to go before God in judgment. </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> He shatters the mighty without investigation, and sets others in their place.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Thus, knowing their works, he overturns them in the night, and they are crushed.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> He strikes them for their wickedness while others look on,</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> because they turned aside from following him, and had no regard for any of his ways,</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> so that they caused the cry of the poor to come to him, and he heard the cry of the afflicted--</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> When he is quiet, who can condemn? When he hides his face, who can behold him, whether it be a nation or an individual?--</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> so that the godless should not reign, or those who ensnare the people.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> \"For has anyone said to God, 'I have endured punishment; I will not offend any more;</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> teach me what I do not see; if I have done iniquity, I will do it no more'?</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Will he then pay back to suit you, because you reject it? For you must choose, and not I; therefore declare what you know. </VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Those who have sense will say to me, and the wise who hear me will say,</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> 'Job speaks without knowledge, his words are without insight.'</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Would that Job were tried to the limit, because his answers are those of the wicked.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> For he adds rebellion to his sin; he claps his hands among us, and multiplies his words against God.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"35\">\r\n\t\t\t<VERS vnumber=\"1\"> Elihu continued and said:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"Do you think this to be just? You say, 'I am in the right before God.'</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> If you ask, 'What advantage have I? How am I better off than if I had sinned?'</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> I will answer you and your friends with you.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Look at the heavens and see; observe the clouds, which are higher than you.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> If you have sinned, what do you accomplish against him? And if your transgressions are multiplied, what do you do to him?</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> If you are righteous, what do you give to him; or what does he receive from your hand?</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Your wickedness affects others like you, and your righteousness, other human beings.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> \"Because of the multitude of oppressions people cry out; they call for help because of the arm of the mighty.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> But no one says, 'Where is God my Maker, who gives strength in the night,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> who teaches us more than the animals of the earth, and makes us wiser than the birds of the air?'</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> There they cry out, but he does not answer, because of the pride of evildoers.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Surely God does not hear an empty cry, nor does the Almighty regard it. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> How much less when you say that you do not see him, that the case is before him, and you are waiting for him!</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And now, because his anger does not punish, and he does not greatly heed transgression, </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Job opens his mouth in empty talk, he multiplies words without knowledge.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"36\">\r\n\t\t\t<VERS vnumber=\"1\"> Elihu continued and said:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"Bear with me a little, and I will show you, for I have yet something to say on God's behalf.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> I will bring my knowledge from far away, and ascribe righteousness to my Maker.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For truly my words are not false; one who is perfect in knowledge is with you.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> \"Surely God is mighty and does not despise any; he is mighty in strength of understanding.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> He does not keep the wicked alive, but gives the afflicted their right.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> He does not withdraw his eyes from the righteous, but with kings on the throne he sets them forever, and they are exalted.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And if they are bound in fetters and caught in the cords of affliction,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> then he declares to them their work and their transgressions, that they are behaving arrogantly.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> He opens their ears to instruction, and commands that they return from iniquity.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> If they listen, and serve him, they complete their days in prosperity, and their years in pleasantness.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> But if they do not listen, they shall perish by the sword, and die without knowledge.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> \"The godless in heart cherish anger; they do not cry for help when he binds them.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> They die in their youth, and their life ends in shame. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> He delivers the afflicted by their affliction, and opens their ear by adversity.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> He also allured you out of distress into a broad place where there was no constraint, and what was set on your table was full of fatness.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> \"But you are obsessed with the case of the wicked; judgment and justice seize you.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Beware that wrath does not entice you into scoffing, and do not let the greatness of the ransom turn you aside.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Will your cry avail to keep you from distress, or will all the force of your strength?</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Do not long for the night, when peoples are cut off in their place.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Beware! Do not turn to iniquity; because of that you have been tried by affliction.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> See, God is exalted in his power; who is a teacher like him?</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Who has prescribed for him his way, or who can say, 'You have done wrong'?</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> \"Remember to extol his work, of which mortals have sung.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> All people have looked on it; everyone watches it from far away.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Surely God is great, and we do not know him; the number of his years is unsearchable.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> For he draws up the drops of water; he distills his mist in rain, </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> which the skies pour down and drop upon mortals abundantly.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Can anyone understand the spreading of the clouds, the thunderings of his pavilion?</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> See, he scatters his lightning around him and covers the roots of the sea.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> For by these he governs peoples; he gives food in abundance.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> He covers his hands with the lightning, and commands it to strike the mark.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Its crashing tells about him; he is jealous with anger against iniquity.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"37\">\r\n\t\t\t<VERS vnumber=\"1\"> \"At this also my heart trembles, and leaps out of its place.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Listen, listen to the thunder of his voice and the rumbling that comes from his mouth.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Under the whole heaven he lets it loose, and his lightning to the corners of the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> After it his voice roars; he thunders with his majestic voice and he does not restrain the lightnings when his voice is heard. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> God thunders wondrously with his voice; he does great things that we cannot comprehend.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For to the snow he says, 'Fall on the earth'; and the shower of rain, his heavy shower of rain,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> serves as a sign on everyone's hand, so that all whom he has made may know it. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then the animals go into their lairs and remain in their dens.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> From its chamber comes the whirlwind, and cold from the scattering winds.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> By the breath of God ice is given, and the broad waters are frozen fast.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> He loads the thick cloud with moisture; the clouds scatter his lightning.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> They turn round and round by his guidance, to accomplish all that he commands them on the face of the habitable world.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Whether for correction, or for his land, or for love, he causes it to happen.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> \"Hear this, O Job; stop and consider the wondrous works of God.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Do you know how God lays his command upon them, and causes the lightning of his cloud to shine?</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Do you know the balancings of the clouds, the wondrous works of the one whose knowledge is perfect,</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> you whose garments are hot when the earth is still because of the south wind?</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Can you, like him, spread out the skies, hard as a molten mirror?</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Teach us what we shall say to him; we cannot draw up our case because of darkness.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Should he be told that I want to speak? Did anyone ever wish to be swallowed up?</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Now, no one can look on the light when it is bright in the skies, when the wind has passed and cleared them.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Out of the north comes golden splendor; around God is awesome majesty.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> The Almighty-- we cannot find him; he is great in power and justice, and abundant righteousness he will not violate.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Therefore mortals fear him; he does not regard any who are wise in their own conceit.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"38\">\r\n\t\t\t<VERS vnumber=\"1\"> Then the LORD answered Job out of the whirlwind:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"Who is this that darkens counsel by words without knowledge?</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Gird up your loins like a man, I will question you, and you shall declare to me.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> \"Where were you when I laid the foundation of the earth? Tell me, if you have understanding.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Who determined its measurements-- surely you know! Or who stretched the line upon it?</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> On what were its bases sunk, or who laid its cornerstone</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> when the morning stars sang together and all the heavenly beings shouted for joy? </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> \"Or who shut in the sea with doors when it burst out from the womb?--</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> when I made the clouds its garment, and thick darkness its swaddling band,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> and prescribed bounds for it, and set bars and doors,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> and said, 'Thus far shall you come, and no farther, and here shall your proud waves be stopped'?</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> \"Have you commanded the morning since your days began, and caused the dawn to know its place,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> so that it might take hold of the skirts of the earth, and the wicked be shaken out of it?</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> It is changed like clay under the seal, and it is dyed like a garment. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Light is withheld from the wicked, and their uplifted arm is broken.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> \"Have you entered into the springs of the sea, or walked in the recesses of the deep?</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Have the gates of death been revealed to you, or have you seen the gates of deep darkness?</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Have you comprehended the expanse of the earth? Declare, if you know all this.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> \"Where is the way to the dwelling of light, and where is the place of darkness,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> that you may take it to its territory and that you may discern the paths to its home?</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Surely you know, for you were born then, and the number of your days is great!</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> \"Have you entered the storehouses of the snow, or have you seen the storehouses of the hail,</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> which I have reserved for the time of trouble, for the day of battle and war?</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> What is the way to the place where the light is distributed, or where the east wind is scattered upon the earth?</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> \"Who has cut a channel for the torrents of rain, and a way for the thunderbolt,</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> to bring rain on a land where no one lives, on the desert, which is empty of human life,</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> to satisfy the waste and desolate land, and to make the ground put forth grass?</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> \"Has the rain a father, or who has begotten the drops of dew?</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> From whose womb did the ice come forth, and who has given birth to the hoarfrost of heaven?</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> The waters become hard like stone, and the face of the deep is frozen.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> \"Can you bind the chains of the Pleiades, or loose the cords of Orion?</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Can you lead forth the Mazzaroth in their season, or can you guide the Bear with its children?</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Do you know the ordinances of the heavens? Can you establish their rule on the earth?</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> \"Can you lift up your voice to the clouds, so that a flood of waters may cover you?</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Can you send forth lightnings, so that they may go and say to you, 'Here we are'?</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Who has put wisdom in the inward parts, or given understanding to the mind? </VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Who has the wisdom to number the clouds? Or who can tilt the waterskins of the heavens,</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> when the dust runs into a mass and the clods cling together?</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> \"Can you hunt the prey for the lion, or satisfy the appetite of the young lions,</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> when they crouch in their dens, or lie in wait in their covert?</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> Who provides for the raven its prey, when its young ones cry to God, and wander about for lack of food?</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"39\">\r\n\t\t\t<VERS vnumber=\"1\"> \"Do you know when the mountain goats give birth? Do you observe the calving of the deer?</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Can you number the months that they fulfill, and do you know the time when they give birth,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> when they crouch to give birth to their offspring, and are delivered of their young?</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Their young ones become strong, they grow up in the open; they go forth, and do not return to them.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> \"Who has let the wild ass go free? Who has loosed the bonds of the swift ass,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> to which I have given the steppe for its home, the salt land for its dwelling place?</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> It scorns the tumult of the city; it does not hear the shouts of the driver.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> It ranges the mountains as its pasture, and it searches after every green thing.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> \"Is the wild ox willing to serve you? Will it spend the night at your crib?</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Can you tie it in the furrow with ropes, or will it harrow the valleys after you?</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Will you depend on it because its strength is great, and will you hand over your labor to it?</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Do you have faith in it that it will return, and bring your grain to your threshing floor? </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> \"The ostrich's wings flap wildly, though its pinions lack plumage. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> For it leaves its eggs to the earth, and lets them be warmed on the ground,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> forgetting that a foot may crush them, and that a wild animal may trample them.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> It deals cruelly with its young, as if they were not its own; though its labor should be in vain, yet it has no fear;</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> because God has made it forget wisdom, and given it no share in understanding.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> When it spreads its plumes aloft, it laughs at the horse and its rider. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> \"Do you give the horse its might? Do you clothe its neck with mane?</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Do you make it leap like the locust? Its majestic snorting is terrible.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> It paws violently, exults mightily; it goes out to meet the weapons.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> It laughs at fear, and is not dismayed; it does not turn back from the sword.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Upon it rattle the quiver, the flashing spear, and the javelin.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> With fierceness and rage it swallows the ground; it cannot stand still at the sound of the trumpet.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> When the trumpet sounds, it says 'Aha!' From a distance it smells the battle, the thunder of the captains, and the shouting.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> \"Is it by your wisdom that the hawk soars, and spreads its wings toward the south?</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Is it at your command that the eagle mounts up and makes its nest on high?</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> It lives on the rock and makes its home in the fastness of the rocky crag.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> From there it spies the prey; its eyes see it from far away.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Its young ones suck up blood; and where the slain are, there it is.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"40\">\r\n\t\t\t<VERS vnumber=\"1\"> And the LORD said to Job:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"Shall a faultfinder contend with the Almighty? Anyone who argues with God must respond.\" </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then Job answered the LORD:</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> \"See, I am of small account; what shall I answer you? I lay my hand on my mouth.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> I have spoken once, and I will not answer; twice, but will proceed no further.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then the LORD answered Job out of the whirlwind:</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> \"Gird up your loins like a man; I will question you, and you declare to me.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Will you even put me in the wrong? Will you condemn me that you may be justified?</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Have you an arm like God, and can you thunder with a voice like his?</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> \"Deck yourself with majesty and dignity; clothe yourself with glory and splendor.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Pour out the overflowings of your anger, and look on all who are proud, and abase them.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Look on all who are proud, and bring them low; tread down the wicked where they stand.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Hide them all in the dust together; bind their faces in the world below. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then I will also acknowledge to you that your own right hand can give you victory.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> \"Look at Behemoth, which I made just as I made you; it eats grass like an ox.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Its strength is in its loins, and its power in the muscles of its belly.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> It makes its tail stiff like a cedar; the sinews of its thighs are knit together.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Its bones are tubes of bronze, its limbs like bars of iron.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> \"It is the first of the great acts of God-- only its Maker can approach it with the sword.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> For the mountains yield food for it where all the wild animals play.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Under the lotus plants it lies, in the covert of the reeds and in the marsh.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The lotus trees cover it for shade; the willows of the wadi surround it.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Even if the river is turbulent, it is not frightened; it is confident though Jordan rushes against its mouth.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Can one take it with hooks or pierce its nose with a snare? </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"41\">\r\n\t\t\t<VERS vnumber=\"1\"> \"Can you draw out Leviathan with a fishhook, or press down its tongue with a cord? </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Can you put a rope in its nose, or pierce its jaw with a hook?</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Will it make many supplications to you? Will it speak soft words to you?</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Will it make a covenant with you to be taken as your servant forever?</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Will you play with it as with a bird, or will you put it on leash for your girls?</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Will traders bargain over it? Will they divide it up among the merchants?</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Can you fill its skin with harpoons, or its head with fishing spears?</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Lay hands on it; think of the battle; you will not do it again!</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Any hope of capturing it will be disappointed; were not even the gods overwhelmed at the sight of it? </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> No one is so fierce as to dare to stir it up. Who can stand before it? </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Who can confront it and be safe?-- under the whole heaven, who?</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> \"I will not keep silence concerning its limbs, or its mighty strength, or its splendid frame.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Who can strip off its outer garment? Who can penetrate its double coat of mail? </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Who can open the doors of its face? There is terror all around its teeth.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Its back is made of shields in rows, shut up closely as with a seal. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> One is so near to another that no air can come between them.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> They are joined one to another; they clasp each other and cannot be separated.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Its sneezes flash forth light, and its eyes are like the eyelids of the dawn.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> From its mouth go flaming torches; sparks of fire leap out.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Out of its nostrils comes smoke, as from a boiling pot and burning rushes.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Its breath kindles coals, and a flame comes out of its mouth.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> In its neck abides strength, and terror dances before it.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> The folds of its flesh cling together; it is firmly cast and immovable.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Its heart is as hard as stone, as hard as the lower millstone.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> When it raises itself up the gods are afraid; at the crashing they are beside themselves.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Though the sword reaches it, it does not avail, nor does the spear, the dart, or the javelin.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> It counts iron as straw, and bronze as rotten wood.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> The arrow cannot make it flee; slingstones, for it, are turned to chaff.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Clubs are counted as chaff; it laughs at the rattle of javelins.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Its underparts are like sharp potsherds; it spreads itself like a threshing sledge on the mire.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> It makes the deep boil like a pot; it makes the sea like a pot of ointment.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> It leaves a shining wake behind it; one would think the deep to be white-haired.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> On earth it has no equal, a creature without fear.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> It surveys everything that is lofty; it is king over all that are proud.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"42\">\r\n\t\t\t<VERS vnumber=\"1\"> Then Job answered the LORD:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"I know that you can do all things, and that no purpose of yours can be thwarted.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> 'Who is this that hides counsel without knowledge?' Therefore I have uttered what I did not understand, things too wonderful for me, which I did not know.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> 'Hear, and I will speak; I will question you, and you declare to me.'</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> I had heard of you by the hearing of the ear, but now my eye sees you;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> therefore I despise myself, and repent in dust and ashes.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> After the LORD had spoken these words to Job, the LORD said to Eliphaz the Temanite: \"My wrath is kindled against you and against your two friends; for you have not spoken of me what is right, as my servant Job has.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Now therefore take seven bulls 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 I will accept his prayer not to deal with you according to your folly; for you have not spoken of me what is right, as my servant Job has done.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> So Eliphaz the Temanite and Bildad the Shuhite and Zophar the Naamathite went and did what the LORD had told them; and the LORD accepted Job's prayer.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And the LORD restored the fortunes of Job when he had prayed for his friends; and the LORD gave Job twice as much as he had before.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then there came to him all his brothers and sisters and all who had known him before, and they ate bread with him in his house; they showed him sympathy and comforted him for all the evil that the LORD had brought upon him; and each of them gave him a piece of money and a gold ring. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The LORD blessed the latter days of Job more than his beginning; and he had fourteen thousand sheep, six thousand camels, a thousand yoke of oxen, and a thousand donkeys.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> He also had seven sons and three daughters.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> He named the first Jemimah, the second Keziah, and the third Keren-happuch.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> In all the land there were no women so beautiful as Job's daughters; and their father gave them an inheritance along with their brothers.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> After this Job lived one hundred and forty years, and saw his children, and his children's children, four generations.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> And Job died, old and full of days.</VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"19\" bname=\"Psalm\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> Happy are those who do not follow the advice of the wicked, or take the path that sinners tread, or sit in the seat of scoffers;</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> but their delight is in the law of the LORD, and on his law they meditate day and night.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> They are like trees planted by streams of water, which yield their fruit in its season, and their leaves do not wither. In all that they do, they prosper.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The wicked are not so, but are like chaff that the wind drives away.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Therefore the wicked will not stand in the judgment, nor sinners in the congregation of the righteous;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> for the LORD watches over the way of the righteous, but the way of the wicked will perish.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> Why do the nations conspire, and the peoples plot in vain?</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The kings of the earth set themselves, and the rulers take counsel together, against the LORD and his anointed, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> \"Let us burst their bonds asunder, and cast their cords from us.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> He who sits in the heavens laughs; the LORD has them in derision.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then he will speak to them in his wrath, and terrify them in his fury, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> \"I have set my king on Zion, my holy hill.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> I will tell of the decree of the LORD: He said to me, \"You are my son; today I have begotten you.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Ask of me, and I will make the nations your heritage, and the ends of the earth your possession.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> You shall break them with a rod of iron, and dash them in pieces like a potter's vessel.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Now therefore, O kings, be wise; be warned, O rulers of the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Serve the LORD with fear, with trembling</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> kiss his feet, or he will be angry, and you will perish in the way; for his wrath is quickly kindled. Happy are all who take refuge in him. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> [Psalm of David, when he fled from his son Absalom] O LORD, how many are my foes! Many are rising against me;</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> many are saying to me, \"There is no help for you in God.\" Selah </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> But you, O LORD, are a shield around me, my glory, and the one who lifts up my head.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> I cry aloud to the LORD, and he answers me from his holy hill. Selah </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> I lie down and sleep; I wake again, for the LORD sustains me.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> I am not afraid of ten thousands of people who have set themselves against me all around.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Rise up, O LORD! Deliver me, O my God! For you strike all my enemies on the cheek; you break the teeth of the wicked.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Deliverance belongs to the LORD; may your blessing be on your people! Selah </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader: with stringed instruments. A Psalm of David] Answer me when I call, O God of my right! You gave me room when I was in distress. Be gracious to me, and hear my prayer.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> How long, you people, shall my honor suffer shame? How long will you love vain words, and seek after lies? Selah </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> But know that the LORD has set apart the faithful for himself; the LORD hears when I call to him.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> When you are disturbed, do not sin; ponder it on your beds, and be silent. Selah </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Offer right sacrifices, and put your trust in the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> There are many who say, \"O that we might see some good! Let the light of your face shine on us, O LORD!\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> You have put gladness in my heart more than when their grain and wine abound.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> I will both lie down and sleep in peace; for you alone, O LORD, make me lie down in safety.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"5\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader: for the flutes. A Psalm of David] Give ear to my words, O LORD; give heed to my sighing.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Listen to the sound of my cry, my King and my God, for to you I pray.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> O LORD, in the morning you hear my voice; in the morning I plead my case to you, and watch.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For you are not a God who delights in wickedness; evil will not sojourn with you.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The boastful will not stand before your eyes; you hate all evildoers.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> You destroy those who speak lies; the LORD abhors the bloodthirsty and deceitful.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But I, through the abundance of your steadfast love, will enter your house, I will bow down toward your holy temple in awe of you.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Lead me, O LORD, in your righteousness because of my enemies; make your way straight before me.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> For there is no truth in their mouths; their hearts are destruction; their throats are open graves; they flatter with their tongues.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Make them bear their guilt, O God; let them fall by their own counsels; because of their many transgressions cast them out, for they have rebelled against you.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But let all who take refuge in you rejoice; let them ever sing for joy. Spread your protection over them, so that those who love your name may exult in you.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> For you bless the righteous, O LORD; you cover them with favor as with a shield.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"6\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader: with stringed instruments; according to The Sheminith. A Psalm of David] O LORD, do not rebuke me in your anger, or discipline me in your wrath.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Be gracious to me, O LORD, for I am languishing; O LORD, heal me, for my bones are shaking with terror.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> My soul also is struck with terror, while you, O LORD-- how long?</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Turn, O LORD, save my life; deliver me for the sake of your steadfast love.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> For in death there is no remembrance of you; in Sheol who can give you praise?</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> I am weary with my moaning; every night I flood my bed with tears; I drench my couch with my weeping.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> My eyes waste away because of grief; they grow weak because of all my foes.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Depart from me, all you workers of evil, for the LORD has heard the sound of my weeping.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The LORD has heard my supplication; the LORD accepts my prayer.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> All my enemies shall be ashamed and struck with terror; they shall turn back, and in a moment be put to shame.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"7\">\r\n\t\t\t<VERS vnumber=\"1\"> [A Shiggaion of David, which he sang to the LORD concerning Cush, a Benjaminite.] O LORD my God, in you I take refuge; save me from all my pursuers, and deliver me,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> or like a lion they will tear me apart; they will drag me away, with no one to rescue.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> O LORD my God, if I have done this, if there is wrong in my hands,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> if I have repaid my ally with harm or plundered my foe without cause,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> then let the enemy pursue and overtake me, trample my life to the ground, and lay my soul in the dust. Selah </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Rise up, O LORD, in your anger; lift yourself up against the fury of my enemies; awake, O my God; you have appointed a judgment. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Let the assembly of the peoples be gathered around you, and over it take your seat on high. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The LORD judges the peoples; judge me, O LORD, according to my righteousness and according to the integrity that is in me.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> O let the evil of the wicked come to an end, but establish the righteous, you who test the minds and hearts, O righteous God.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> God is my shield, who saves the upright in heart.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> God is a righteous judge, and a God who has indignation every day.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> If one does not repent, God will whet his sword; he has bent and strung his bow; </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> he has prepared his deadly weapons, making his arrows fiery shafts.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> See how they conceive evil, and are pregnant with mischief, and bring forth lies.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> They make a pit, digging it out, and fall into the hole that they have made.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Their mischief returns upon their own heads, and on their own heads their violence descends.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> I will give to the LORD the thanks due to his righteousness, and sing praise to the name of the LORD, the Most High.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"8\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader: according to The Gittith. A Psalm of David] O LORD, our Sovereign, how majestic is your name in all the earth! You have set your glory above the heavens.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Out of the mouths of babes and infants you have founded a bulwark because of your foes, to silence the enemy and the avenger.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> When I look at your heavens, the work of your fingers, the moon and the stars that you have established;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> what are human beings that you are mindful of them, mortals that you care for them? </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Yet you have made them a little lower than God, and crowned them with glory and honor. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> You have given them dominion over the works of your hands; you have put all things under their feet,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> all sheep and oxen, and also the beasts of the field,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> the birds of the air, and the fish of the sea, whatever passes along the paths of the seas.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> O LORD, our Sovereign, how majestic is your name in all the earth!</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"9\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader: according to Muth-labben. A Psalm of David] I will give thanks to the LORD with my whole heart; I will tell of all your wonderful deeds.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> I will be glad and exult in you; I will sing praise to your name, O Most High.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> When my enemies turned back, they stumbled and perished before you.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For you have maintained my just cause; you have sat on the throne giving righteous judgment.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> You have rebuked the nations, you have destroyed the wicked; you have blotted out their name forever and ever.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The enemies have vanished in everlasting ruins; their cities you have rooted out; the very memory of them has perished.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But the LORD sits enthroned forever, he has established his throne for judgment.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> He judges the world with righteousness; he judges the peoples with equity.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The LORD is a stronghold for the oppressed, a stronghold in times of trouble.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And those who know your name put their trust in you, for you, O LORD, have not forsaken those who seek you.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Sing praises to the LORD, who dwells in Zion. Declare his deeds among the peoples.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> For he who avenges blood is mindful of them; he does not forget the cry of the afflicted.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Be gracious to me, O LORD. See what I suffer from those who hate me; you are the one who lifts me up from the gates of death,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> so that I may recount all your praises, and, in the gates of daughter Zion, rejoice in your deliverance.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The nations have sunk in the pit that they made; in the net that they hid has their own foot been caught.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The LORD has made himself known, he has executed judgment; the wicked are snared in the work of their own hands. Higgaion. Selah </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The wicked shall depart to Sheol, all the nations that forget God.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> For the needy shall not always be forgotten, nor the hope of the poor perish forever.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Rise up, O LORD! Do not let mortals prevail; let the nations be judged before you.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Put them in fear, O LORD; let the nations know that they are only human. Selah </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"10\">\r\n\t\t\t<VERS vnumber=\"1\"> Why, O LORD, do you stand far off? Why do you hide yourself in times of trouble?</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> In arrogance the wicked persecute the poor-- let them be caught in the schemes they have devised.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For the wicked boast of the desires of their heart, those greedy for gain curse and renounce the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> In the pride of their countenance the wicked say, \"God will not seek it out\"; all their thoughts are, \"There is no God.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Their ways prosper at all times; your judgments are on high, out of their sight; as for their foes, they scoff at them.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> They think in their heart, \"We shall not be moved; throughout all generations we shall not meet adversity.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Their mouths are filled with cursing and deceit and oppression; under their tongues are mischief and iniquity.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> They sit in ambush in the villages; in hiding places they murder the innocent. Their eyes stealthily watch for the helpless;</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> they lurk in secret like a lion in its covert; they lurk that they may seize the poor; they seize the poor and drag them off in their net.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> They stoop, they crouch, and the helpless fall by their might.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> They think in their heart, \"God has forgotten, he has hidden his face, he will never see it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Rise up, O LORD; O God, lift up your hand; do not forget the oppressed.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Why do the wicked renounce God, and say in their hearts, \"You will not call us to account\"?</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But you do see! Indeed you note trouble and grief, that you may take it into your hands; the helpless commit themselves to you; you have been the helper of the orphan.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Break the arm of the wicked and evildoers; seek out their wickedness until you find none.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The LORD is king forever and ever; the nations shall perish from his land.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> O LORD, you will hear the desire of the meek; you will strengthen their heart, you will incline your ear</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> to do justice for the orphan and the oppressed, so that those from earth may strike terror no more. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"11\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader. Of David] In the LORD I take refuge; how can you say to me, \"Flee like a bird to the mountains; </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> for look, the wicked bend the bow, they have fitted their arrow to the string, to shoot in the dark at the upright in heart.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> If the foundations are destroyed, what can the righteous do?\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The LORD is in his holy temple; the LORD's throne is in heaven. His eyes behold, his gaze examines humankind.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The LORD tests the righteous and the wicked, and his soul hates the lover of violence.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> On the wicked he will rain coals of fire and sulfur; a scorching wind shall be the portion of their cup.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> For the LORD is righteous; he loves righteous deeds; the upright shall behold his face.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"12\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader: according to The Sheminith. A Psalm of David] Help, O LORD, for there is no longer anyone who is godly; the faithful have disappeared from humankind.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> They utter lies to each other; with flattering lips and a double heart they speak.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> May the LORD cut off all flattering lips, the tongue that makes great boasts,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> those who say, \"With our tongues we will prevail; our lips are our own-- who is our master?\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> \"Because the poor are despoiled, because the needy groan, I will now rise up,\" says the LORD; \"I will place them in the safety for which they long.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The promises of the LORD are promises that are pure, silver refined in a furnace on the ground, purified seven times.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> You, O LORD, will protect us; you will guard us from this generation forever.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> On every side the wicked prowl, as vileness is exalted among humankind.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"13\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader. A Psalm of David] How long, O LORD? Will you forget me forever? How long will you hide your face from me?</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> How long must I bear pain in my soul, and have sorrow in my heart all day long? How long shall my enemy be exalted over me? </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Consider and answer me, O LORD my God! Give light to my eyes, or I will sleep the sleep of death,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> and my enemy will say, \"I have prevailed\"; my foes will rejoice because I am shaken.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> But I trusted in your steadfast love; my heart shall rejoice in your salvation.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> I will sing to the LORD, because he has dealt bountifully with me.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"14\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader. Of David] Fools say in their hearts, \"There is no God.\" They are corrupt, they do abominable deeds; there is no one who does good.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The LORD looks down from heaven on humankind to see if there are any who are wise, who seek after God.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> They have all gone astray, they are all alike perverse; there is no one who does good, no, not one.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Have they no knowledge, all the evildoers who eat up my people as they eat bread, and do not call upon the LORD?</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> There they shall be in great terror, for God is with the company of the righteous.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> You would confound the plans of the poor, but the LORD is their refuge.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> O that deliverance for Israel would come from Zion! When the LORD restores the fortunes of his people, Jacob will rejoice; Israel will be glad.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"15\">\r\n\t\t\t<VERS vnumber=\"1\"> [A Psalm of David] O LORD, who may abide in your tent? Who may dwell on your holy hill?</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Those who walk blamelessly, and do what is right, and speak the truth from their heart;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> who do not slander with their tongue, and do no evil to their friends, nor take up a reproach against their neighbors;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> in whose eyes the wicked are despised, but who honor those who fear the LORD; who stand by their oath even to their hurt;</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> who do not lend money at interest, and do not take a bribe against the innocent. Those who do these things shall never be moved.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"16\">\r\n\t\t\t<VERS vnumber=\"1\"> [A Miktam of David] Protect me, O God, for in you I take refuge.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> I say to the LORD, \"You are my Lord; I have no good apart from you.\" </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> As for the holy ones in the land, they are the noble, in whom is all my delight.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Those who choose another god multiply their sorrows; their drink offerings of blood I will not pour out or take their names upon my lips. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The LORD is my chosen portion and my cup; you hold my lot.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The boundary lines have fallen for me in pleasant places; I have a goodly heritage.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> I bless the LORD who gives me counsel; in the night also my heart instructs me.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> I keep the LORD always before me; because he is at my right hand, I shall not be moved.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Therefore my heart is glad, and my soul rejoices; my body also rests secure.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For you do not give me up to Sheol, or let your faithful one see the Pit.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> You show me the path of life. In your presence there is fullness of joy; in your right hand are pleasures forevermore.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"17\">\r\n\t\t\t<VERS vnumber=\"1\"> [A Prayer of David] Hear a just cause, O LORD; attend to my cry; give ear to my prayer from lips free of deceit.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> From you let my vindication come; let your eyes see the right.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> If you try my heart, if you visit me by night, if you test me, you will find no wickedness in me; my mouth does not transgress.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> As for what others do, by the word of your lips I have avoided the ways of the violent.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> My steps have held fast to your paths; my feet have not slipped.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> I call upon you, for you will answer me, O God; incline your ear to me, hear my words.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Wondrously show your steadfast love, O savior of those who seek refuge from their adversaries at your right hand.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Guard me as the apple of the eye; hide me in the shadow of your wings,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> from the wicked who despoil me, my deadly enemies who surround me.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> They close their hearts to pity; with their mouths they speak arrogantly.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> They track me down; now they surround me; they set their eyes to cast me to the ground. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> They are like a lion eager to tear, like a young lion lurking in ambush.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Rise up, O LORD, confront them, overthrow them! By your sword deliver my life from the wicked,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> from mortals-- by your hand, O LORD-- from mortals whose portion in life is in this world. May their bellies be filled with what you have stored up for them; may their children have more than enough; may they leave something over to their little ones.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> As for me, I shall behold your face in righteousness; when I awake I shall be satisfied, beholding your likeness.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"18\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader. A Psalm of David the servant of the LORD, who addressed the words of this song to the LORD on the day when the LORD delivered him from the hand of all his enemies, and from the hand of Saul. He said:> I love you, O LORD, my strength.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The LORD is my rock, my fortress, and my deliverer, my God, my rock in whom I take refuge, my shield, and the horn of my salvation, my stronghold.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> I call upon the LORD, who is worthy to be praised, so I shall be saved from my enemies.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The cords of death encompassed me; the torrents of perdition assailed me;</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> the cords of Sheol entangled me; the snares of death confronted me.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> In my distress I called upon the LORD; to my God I cried for help. From his temple he heard my voice, and my cry to him reached his ears.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then the earth reeled and rocked; the foundations also of the mountains trembled and quaked, because he was angry.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Smoke went up from his nostrils, and devouring fire from his mouth; glowing coals flamed forth from him.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> He bowed the heavens, and came down; thick darkness was under his feet.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> He rode on a cherub, and flew; he came swiftly upon the wings of the wind.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> He made darkness his covering around him, his canopy thick clouds dark with water.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Out of the brightness before him there broke through his clouds hailstones and coals of fire.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The LORD also thundered in the heavens, and the Most High uttered his voice. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> And he sent out his arrows, and scattered them; he flashed forth lightnings, and routed them.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Then the channels of the sea were seen, and the foundations of the world were laid bare at your rebuke, O LORD, at the blast of the breath of your nostrils.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> He reached down from on high, he took me; he drew me out of mighty waters.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> He delivered me from my strong enemy, and from those who hated me; for they were too mighty for me.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> They confronted me in the day of my calamity; but the LORD was my support.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> He brought me out into a broad place; he delivered me, because he delighted in me.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The LORD rewarded me according to my righteousness; according to the cleanness of my hands he recompensed me.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> For I have kept the ways of the LORD, and have not wickedly departed from my God.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> For all his ordinances were before me, and his statutes I did not put away from me.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> I was blameless before him, and I kept myself from guilt.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Therefore the LORD has recompensed me according to my righteousness, according to the cleanness of my hands in his sight.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> With the loyal you show yourself loyal; with the blameless you show yourself blameless;</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> with the pure you show yourself pure; and with the crooked you show yourself perverse.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> For you deliver a humble people, but the haughty eyes you bring down.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> It is you who light my lamp; the LORD, my God, lights up my darkness.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> By you I can crush a troop, and by my God I can leap over a wall.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> This God-- his way is perfect; the promise of the LORD proves true; he is a shield for all who take refuge in him.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> For who is God except the LORD? And who is a rock besides our God?--</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> the God who girded me with strength, and made my way safe.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> He made my feet like the feet of a deer, and set me secure on the heights.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> He trains my hands for war, so that my arms can bend a bow of bronze.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> You have given me the shield of your salvation, and your right hand has supported me; your help has made me great. </VERS>\r\n\t\t\t<VERS vnumber=\"36\"> You gave me a wide place for my steps under me, and my feet did not slip.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> I pursued my enemies and overtook them; and did not turn back until they were consumed.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> I struck them down, so that they were not able to rise; they fell under my feet.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> For you girded me with strength for the battle; you made my assailants sink under me.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> You made my enemies turn their backs to me, and those who hated me I destroyed.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> They cried for help, but there was no one to save them; they cried to the LORD, but he did not answer them.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> I beat them fine, like dust before the wind; I cast them out like the mire of the streets.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> You delivered me from strife with the peoples; you made me head of the nations; people whom I had not known served me.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> As soon as they heard of me they obeyed me; foreigners came cringing to me.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> Foreigners lost heart, and came trembling out of their strongholds.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> The LORD lives! Blessed be my rock, and exalted be the God of my salvation,</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> the God who gave me vengeance and subdued peoples under me;</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> who delivered me from my enemies; indeed, you exalted me above my adversaries; you delivered me from the violent.</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> For this I will extol you, O LORD, among the nations, and sing praises to your name.</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> Great triumphs he gives to his king, and shows steadfast love to his anointed, to David and his descendants forever.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"19\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader. A Psalm of David] The heavens are telling the glory of God; and the firmament proclaims his handiwork.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Day to day pours forth speech, and night to night declares knowledge.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> There is no speech, nor are there words; their voice is not heard;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> yet their voice goes out through all the earth, and their words to the end of the world. In the heavens he has set a tent for the sun, </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> which comes out like a bridegroom from his wedding canopy, and like a strong man runs its course with joy.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Its rising is from the end of the heavens, and its circuit to the end of them; and nothing is hid from its heat.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The law of the LORD is perfect, reviving the soul; the decrees of the LORD are sure, making wise the simple;</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> the precepts of the LORD are right, rejoicing the heart; the commandment of the LORD is clear, enlightening the eyes;</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> the fear of the LORD is pure, enduring forever; the ordinances of the LORD are true and righteous altogether.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> More to be desired are they than gold, even much fine gold; sweeter also than honey, and drippings of the honeycomb.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Moreover by them is your servant warned; in keeping them there is great reward.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> But who can detect their errors? Clear me from hidden faults.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Keep back your servant also from the insolent; do not let them have dominion over me. Then I shall be blameless, and innocent of great transgression. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Let the words of my mouth and the meditation of my heart be acceptable to you, O LORD, my rock and my redeemer.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"20\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader. A Psalm of David] The LORD answer you in the day of trouble! The name of the God of Jacob protect you!</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> May he send you help from the sanctuary, and give you support from Zion.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> May he remember all your offerings, and regard with favor your burnt sacrifices. Selah </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> May he grant you your heart's desire, and fulfill all your plans.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> May we shout for joy over your victory, and in the name of our God set up our banners. May the LORD fulfill all your petitions.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Now I know that the LORD will help his anointed; he will answer him from his holy heaven with mighty victories by his right hand.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Some take pride in chariots, and some in horses, but our pride is in the name of the LORD our God.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> They will collapse and fall, but we shall rise and stand upright.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Give victory to the king, O LORD; answer us when we call. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"21\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader. A Psalm of David] In your strength the king rejoices, O LORD, and in your help how greatly he exults!</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> You have given him his heart's desire, and have not withheld the request of his lips. Selah </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For you meet him with rich blessings; you set a crown of fine gold on his head.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> He asked you for life; you gave it to him-- length of days forever and ever.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> His glory is great through your help; splendor and majesty you bestow on him.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> You bestow on him blessings forever; you make him glad with the joy of your presence.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> For the king trusts in the LORD, and through the steadfast love of the Most High he shall not be moved.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Your hand will find out all your enemies; your right hand will find out those who hate you.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> You will make them like a fiery furnace when you appear. The LORD will swallow them up in his wrath, and fire will consume them.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> You will destroy their offspring from the earth, and their children from among humankind.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> If they plan evil against you, if they devise mischief, they will not succeed.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> For you will put them to flight; you will aim at their faces with your bows.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Be exalted, O LORD, in your strength! We will sing and praise your power.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"22\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader: according to The Deer of the Dawn. A Psalm of David] My God, my God, why have you forsaken me? Why are you so far from helping me, from the words of my groaning?</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> O my God, I cry by day, but you do not answer; and by night, but find no rest.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Yet you are holy, enthroned on the praises of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> In you our ancestors trusted; they trusted, and you delivered them.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> To you they cried, and were saved; in you they trusted, and were not put to shame.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> But I am a worm, and not human; scorned by others, and despised by the people.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> All who see me mock at me; they make mouths at me, they shake their heads;</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> \"Commit your cause to the LORD; let him deliver-- let him rescue the one in whom he delights!\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Yet it was you who took me from the womb; you kept me safe on my mother's breast.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> On you I was cast from my birth, and since my mother bore me you have been my God.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Do not be far from me, for trouble is near and there is no one to help.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Many bulls encircle me, strong bulls of Bashan surround me;</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> they open wide their mouths at me, like a ravening and roaring lion.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> I am poured out like water, and all my bones are out of joint; my heart is like wax; it is melted within my breast;</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> my mouth is dried up like a potsherd, and my tongue sticks to my jaws; you lay me in the dust of death. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> For dogs are all around me; a company of evildoers encircles me. My hands and feet have shriveled; </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> I can count all my bones. They stare and gloat over me;</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> they divide my clothes among themselves, and for my clothing they cast lots.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> But you, O LORD, do not be far away! O my help, come quickly to my aid!</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Deliver my soul from the sword, my life from the power of the dog! </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Save me from the mouth of the lion! From the horns of the wild oxen you have rescued me. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> I will tell of your name to my brothers and sisters; in the midst of the congregation I will praise you: </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> You who fear the LORD, praise him! All you offspring of Jacob, glorify him; stand in awe of him, all you offspring of Israel!</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> For he did not despise or abhor the affliction of the afflicted; he did not hide his face from me, but heard when I cried to him. </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> From you comes my praise in the great congregation; my vows I will pay before those who fear him.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> The poor shall eat and be satisfied; those who seek him shall praise the LORD. May your hearts live forever! </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> All the ends of the earth shall remember and turn to the LORD; and all the families of the nations shall worship before him. </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> For dominion belongs to the LORD, and he rules over the nations.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> To him, indeed, shall all who sleep in the earth bow down; before him shall bow all who go down to the dust, and I shall live for him. </VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Posterity will serve him; future generations will be told about the Lord,</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> and proclaim his deliverance to a people yet unborn, saying that he has done it. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"23\">\r\n\t\t\t<VERS vnumber=\"1\"> [A Psalm of David] The LORD is my shepherd, I shall not want.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He makes me lie down in green pastures; he leads me beside still waters; </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> he restores my soul. He leads me in right paths for his name's sake. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Even though I walk through the darkest valley, I fear no evil; for you are with me; your rod and your staff-- they comfort me.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> You prepare a table before me in the presence of my enemies; you anoint my head with oil; my cup overflows.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Surely goodness and mercy shall follow me all the days of my life, and I shall dwell in the house of the LORD my whole life long. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"24\">\r\n\t\t\t<VERS vnumber=\"1\"> [A Psalm of David] The earth is the LORD's and all that is in it, the world, and those who live in it;</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> for he has founded it on the seas, and established it on the rivers.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Who shall ascend the hill of the LORD? And who shall stand in his holy place?</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Those who have clean hands and pure hearts, who do not lift up their souls to what is false, and do not swear deceitfully.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> They will receive blessing from the LORD, and vindication from the God of their salvation.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Such is the company of those who seek him, who seek the face of the God of Jacob. Selah</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Lift up your heads, O gates! and be lifted up, O ancient doors! that the King of glory may come in.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Who is the King of glory? The LORD, strong and mighty, the LORD, mighty in battle.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Lift up your heads, O gates! and be lifted up, O ancient doors! that the King of glory may come in.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Who is this King of glory? The LORD of hosts, he is the King of glory. Selah </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"25\">\r\n\t\t\t<VERS vnumber=\"1\"> [Of David] To you, O LORD, I lift up my soul.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> O my God, in you I trust; do not let me be put to shame; do not let my enemies exult over me.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Do not let those who wait for you be put to shame; let them be ashamed who are wantonly treacherous.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Make me to know your ways, O LORD; teach me your paths.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Lead me in your truth, and teach me, for you are the God of my salvation; for you I wait all day long.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Be mindful of your mercy, O LORD, and of your steadfast love, for they have been from of old.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Do not remember the sins of my youth or my transgressions; according to your steadfast love remember me, for your goodness' sake, O LORD!</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Good and upright is the LORD; therefore he instructs sinners in the way.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> He leads the humble in what is right, and teaches the humble his way.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> All the paths of the LORD are steadfast love and faithfulness, for those who keep his covenant and his decrees.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> For your name's sake, O LORD, pardon my guilt, for it is great.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Who are they that fear the LORD? He will teach them the way that they should choose.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> They will abide in prosperity, and their children shall possess the land.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The friendship of the LORD is for those who fear him, and he makes his covenant known to them.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> My eyes are ever toward the LORD, for he will pluck my feet out of the net.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Turn to me and be gracious to me, for I am lonely and afflicted.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Relieve the troubles of my heart, and bring me out of my distress. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Consider my affliction and my trouble, and forgive all my sins.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Consider how many are my foes, and with what violent hatred they hate me.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> O guard my life, and deliver me; do not let me be put to shame, for I take refuge in you.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> May integrity and uprightness preserve me, for I wait for you.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Redeem Israel, O God, out of all its troubles.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"26\">\r\n\t\t\t<VERS vnumber=\"1\"> [Of David] Vindicate me, O LORD, for I have walked in my integrity, and I have trusted in the LORD without wavering.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Prove me, O LORD, and try me; test my heart and mind.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For your steadfast love is before my eyes, and I walk in faithfulness to you. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> I do not sit with the worthless, nor do I consort with hypocrites;</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> I hate the company of evildoers, and will not sit with the wicked.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> I wash my hands in innocence, and go around your altar, O LORD,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> singing aloud a song of thanksgiving, and telling all your wondrous deeds.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> O LORD, I love the house in which you dwell, and the place where your glory abides.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Do not sweep me away with sinners, nor my life with the bloodthirsty,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> those in whose hands are evil devices, and whose right hands are full of bribes.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But as for me, I walk in my integrity; redeem me, and be gracious to me.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> My foot stands on level ground; in the great congregation I will bless the LORD.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"27\">\r\n\t\t\t<VERS vnumber=\"1\"> [Of David] The LORD is my light and my salvation; whom shall I fear? The LORD is the stronghold of my life; of whom shall I be afraid?</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> When evildoers assail me to devour my flesh-- my adversaries and foes-- they shall stumble and fall.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Though an army encamp against me, my heart shall not fear; though war rise up against me, yet I will be confident.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> One thing I asked of the LORD, that will I seek after: to live in the house of the LORD all the days of my life, to behold the beauty of the LORD, and to inquire in his temple.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> For he will hide me in his shelter in the day of trouble; he will conceal me under the cover of his tent; he will set me high on a rock.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Now my head is lifted up above my enemies all around me, and I will offer in his tent sacrifices with shouts of joy; I will sing and make melody to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Hear, O LORD, when I cry aloud, be gracious to me and answer me!</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> \"Come,\" my heart says, \"seek his face!\" Your face, LORD, do I seek.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Do not hide your face from me. Do not turn your servant away in anger, you who have been my help. Do not cast me off, do not forsake me, O God of my salvation!</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> If my father and mother forsake me, the LORD will take me up.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Teach me your way, O LORD, and lead me on a level path because of my enemies.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Do not give me up to the will of my adversaries, for false witnesses have risen against me, and they are breathing out violence.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> I believe that I shall see the goodness of the LORD in the land of the living.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Wait for the LORD; be strong, and let your heart take courage; wait for the LORD!</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"28\">\r\n\t\t\t<VERS vnumber=\"1\"> [Of David] To you, O LORD, I call; my rock, do not refuse to hear me, for if you are silent to me, I shall be like those who go down to the Pit.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Hear the voice of my supplication, as I cry to you for help, as I lift up my hands toward your most holy sanctuary. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Do not drag me away with the wicked, with those who are workers of evil, who speak peace with their neighbors, while mischief is in their hearts.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Repay them according to their work, and according to the evil of their deeds; repay them according to the work of their hands; render them their due reward.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Because they do not regard the works of the LORD, or the work of his hands, he will break them down and build them up no more.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Blessed be the LORD, for he has heard the sound of my pleadings.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The LORD is my strength and my shield; in him my heart trusts; so I am helped, and my heart exults, and with my song I give thanks to him.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The LORD is the strength of his people; he is the saving refuge of his anointed.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> O save your people, and bless your heritage; be their shepherd, and carry them forever.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"29\">\r\n\t\t\t<VERS vnumber=\"1\"> [A Psalm of David] Ascribe to the LORD, O heavenly beings, ascribe to the LORD glory and strength. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Ascribe to the LORD the glory of his name; worship the LORD in holy splendor.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The voice of the LORD is over the waters; the God of glory thunders, the LORD, over mighty waters.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The voice of the LORD is powerful; the voice of the LORD is full of majesty.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The voice of the LORD breaks the cedars; the LORD breaks the cedars of Lebanon.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> He makes Lebanon skip like a calf, and Sirion like a young wild ox.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The voice of the LORD flashes forth flames of fire.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The voice of the LORD shakes the wilderness; the LORD shakes the wilderness of Kadesh.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The voice of the LORD causes the oaks to whirl, and strips the forest bare; and in his temple all say, \"Glory!\" </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The LORD sits enthroned over the flood; the LORD sits enthroned as king forever.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> May the LORD give strength to his people! May the LORD bless his people with peace!</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"30\">\r\n\t\t\t<VERS vnumber=\"1\"> [A Psalm. A Song at the dedication of the temple. Of David] I will extol you, O LORD, for you have drawn me up, and did not let my foes rejoice over me.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> O LORD my God, I cried to you for help, and you have healed me.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> O LORD, you brought up my soul from Sheol, restored me to life from among those gone down to the Pit. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Sing praises to the LORD, O you his faithful ones, and give thanks to his holy name.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> For his anger is but for a moment; his favor is for a lifetime. Weeping may linger for the night, but joy comes with the morning.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> As for me, I said in my prosperity, \"I shall never be moved.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> By your favor, O LORD, you had established me as a strong mountain; you hid your face; I was dismayed.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> To you, O LORD, I cried, and to the LORD I made supplication:</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> \"What profit is there in my death, if I go down to the Pit? Will the dust praise you? Will it tell of your faithfulness?</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Hear, O LORD, and be gracious to me! O LORD, be my helper!\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> You have turned my mourning into dancing; you have taken off my sackcloth and clothed me with joy,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> so that my soul may praise you and not be silent. O LORD my God, I will give thanks to you forever. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"31\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader. A Psalm of David] In you, O LORD, I seek refuge; do not let me ever be put to shame; in your righteousness deliver me.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Incline your ear to me; rescue me speedily. Be a rock of refuge for me, a strong fortress to save me.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> You are indeed my rock and my fortress; for your name's sake lead me and guide me,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> take me out of the net that is hidden for me, for you are my refuge.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Into your hand I commit my spirit; you have redeemed me, O LORD, faithful God.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> You hate those who pay regard to worthless idols, but I trust in the LORD. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> I will exult and rejoice in your steadfast love, because you have seen my affliction; you have taken heed of my adversities,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> and have not delivered me into the hand of the enemy; you have set my feet in a broad place.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Be gracious to me, O LORD, for I am in distress; my eye wastes away from grief, my soul and body also.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For my life is spent with sorrow, and my years with sighing; my strength fails because of my misery, and my bones waste away. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> I am the scorn of all my adversaries, a horror to my neighbors, an object of dread to my acquaintances; those who see me in the street flee from me. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> I have passed out of mind like one who is dead; I have become like a broken vessel.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> For I hear the whispering of many-- terror all around!-- as they scheme together against me, as they plot to take my life.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But I trust in you, O LORD; I say, \"You are my God.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> My times are in your hand; deliver me from the hand of my enemies and persecutors.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Let your face shine upon your servant; save me in your steadfast love.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Do not let me be put to shame, O LORD, for I call on you; let the wicked be put to shame; let them go dumbfounded to Sheol.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Let the lying lips be stilled that speak insolently against the righteous with pride and contempt.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> O how abundant is your goodness that you have laid up for those who fear you, and accomplished for those who take refuge in you, in the sight of everyone!</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> In the shelter of your presence you hide them from human plots; you hold them safe under your shelter from contentious tongues.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Blessed be the LORD, for he has wondrously shown his steadfast love to me when I was beset as a city under siege.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> I had said in my alarm, \"I am driven far from your sight.\" But you heard my supplications when I cried out to you for help. </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Love the LORD, all you his saints. The LORD preserves the faithful, but abundantly repays the one who acts haughtily.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Be strong, and let your heart take courage, all you who wait for the LORD.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"32\">\r\n\t\t\t<VERS vnumber=\"1\"> [Of David. A Maskil.> Happy are those whose transgression is forgiven, whose sin is covered.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Happy are those to whom the LORD imputes no iniquity, and in whose spirit there is no deceit.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> While I kept silence, my body wasted away through my groaning all day long.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For day and night your hand was heavy upon me; my strength was dried up as by the heat of summer. Selah </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then I acknowledged my sin to you, and I did not hide my iniquity; I said, \"I will confess my transgressions to the LORD,\" and you forgave the guilt of my sin. Selah </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Therefore let all who are faithful offer prayer to you; at a time of distress, the rush of mighty waters shall not reach them. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> You are a hiding place for me; you preserve me from trouble; you surround me with glad cries of deliverance. Selah </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> I will instruct you and teach you the way you should go; I will counsel you with my eye upon you.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Do not be like a horse or a mule, without understanding, whose temper must be curbed with bit and bridle, else it will not stay near you.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Many are the torments of the wicked, but steadfast love surrounds those who trust in the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Be glad in the LORD and rejoice, O righteous, and shout for joy, all you upright in heart.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"33\">\r\n\t\t\t<VERS vnumber=\"1\"> Rejoice in the LORD, O you righteous. Praise befits the upright.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Praise the LORD with the lyre; make melody to him with the harp of ten strings.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Sing to him a new song; play skillfully on the strings, with loud shouts.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For the word of the LORD is upright, and all his work is done in faithfulness.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> He loves righteousness and justice; the earth is full of the steadfast love of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> By the word of the LORD the heavens were made, and all their host by the breath of his mouth.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> He gathered the waters of the sea as in a bottle; he put the deeps in storehouses.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Let all the earth fear the LORD; let all the inhabitants of the world stand in awe of him.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> For he spoke, and it came to be; he commanded, and it stood firm.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The LORD brings the counsel of the nations to nothing; he frustrates the plans of the peoples.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The counsel of the LORD stands forever, the thoughts of his heart to all generations.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Happy is the nation whose God is the LORD, the people whom he has chosen as his heritage.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The LORD looks down from heaven; he sees all humankind.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> From where he sits enthroned he watches all the inhabitants of the earth--</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> he who fashions the hearts of them all, and observes all their deeds.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> A king is not saved by his great army; a warrior is not delivered by his great strength.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The war horse is a vain hope for victory, and by its great might it cannot save.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Truly the eye of the LORD is on those who fear him, on those who hope in his steadfast love,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> to deliver their soul from death, and to keep them alive in famine.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Our soul waits for the LORD; he is our help and shield.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Our heart is glad in him, because we trust in his holy name.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Let your steadfast love, O LORD, be upon us, even as we hope in you.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"34\">\r\n\t\t\t<VERS vnumber=\"1\"> [Of David, when he feigned madness before Abimelech, so that he drove him out, and he went away.> I will bless the LORD at all times; his praise shall continually be in my mouth.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> My soul makes its boast in the LORD; let the humble hear and be glad.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> O magnify the LORD with me, and let us exalt his name together.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> I sought the LORD, and he answered me, and delivered me from all my fears.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Look to him, and be radiant; so your faces shall never be ashamed. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> This poor soul cried, and was heard by the LORD, and was saved from every trouble.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The angel of the LORD encamps around those who fear him, and delivers them.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> O taste and see that the LORD is good; happy are those who take refuge in him.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> O fear the LORD, you his holy ones, for those who fear him have no want.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The young lions suffer want and hunger, but those who seek the LORD lack no good thing.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Come, O children, listen to me; I will teach you the fear of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Which of you desires life, and covets many days to enjoy good?</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Keep your tongue from evil, and your lips from speaking deceit.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Depart from evil, and do good; seek peace, and pursue it.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The eyes of the LORD are on the righteous, and his ears are open to their cry.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The face of the LORD is against evildoers, to cut off the remembrance of them from the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> When the righteous cry for help, the LORD hears, and rescues them from all their troubles.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The LORD is near to the brokenhearted, and saves the crushed in spirit.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Many are the afflictions of the righteous, but the LORD rescues them from them all.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> He keeps all their bones; not one of them will be broken.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Evil brings death to the wicked, and those who hate the righteous will be condemned.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The LORD redeems the life of his servants; none of those who take refuge in him will be condemned.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"35\">\r\n\t\t\t<VERS vnumber=\"1\"> [Of David] Contend, O LORD, with those who contend with me; fight against those who fight against me!</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Take hold of shield and buckler, and rise up to help me!</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Draw the spear and javelin against my pursuers; say to my soul, \"I am your salvation.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Let them be put to shame and dishonor who seek after my life. Let them be turned back and confounded who devise evil against me.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Let them be like chaff before the wind, with the angel of the LORD driving them on.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Let their way be dark and slippery, with the angel of the LORD pursuing them.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> For without cause they hid their net for me; without cause they dug a pit for my life. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Let ruin come on them unawares. And let the net that they hid ensnare them; let them fall in it-- to their ruin.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then my soul shall rejoice in the LORD, exulting in his deliverance.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> All my bones shall say, \"O LORD, who is like you? You deliver the weak from those too strong for them, the weak and needy from those who despoil them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Malicious witnesses rise up; they ask me about things I do not know.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> They repay me evil for good; my soul is forlorn.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> But as for me, when they were sick, I wore sackcloth; I afflicted myself with fasting. I prayed with head bowed on my bosom, </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> as though I grieved for a friend or a brother; I went about as one who laments for a mother, bowed down and in mourning.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> But at my stumbling they gathered in glee, they gathered together against me; ruffians whom I did not know tore at me without ceasing;</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> they impiously mocked more and more, gnashing at me with their teeth. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> How long, O LORD, will you look on? Rescue me from their ravages, my life from the lions!</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then I will thank you in the great congregation; in the mighty throng I will praise you.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Do not let my treacherous enemies rejoice over me, or those who hate me without cause wink the eye.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> For they do not speak peace, but they conceive deceitful words against those who are quiet in the land.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> They open wide their mouths against me; they say, \"Aha, Aha, our eyes have seen it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> You have seen, O LORD; do not be silent! O Lord, do not be far from me!</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Wake up! Bestir yourself for my defense, for my cause, my God and my Lord!</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Vindicate me, O LORD, my God, according to your righteousness, and do not let them rejoice over me.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Do not let them say to themselves, \"Aha, we have our heart's desire.\" Do not let them say, \"We have swallowed you up.\" </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Let all those who rejoice at my calamity be put to shame and confusion; let those who exalt themselves against me be clothed with shame and dishonor.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Let those who desire my vindication shout for joy and be glad, and say evermore, \"Great is the LORD, who delights in the welfare of his servant.\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Then my tongue shall tell of your righteousness and of your praise all day long.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"36\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader. Of David, the servant of the LORD.> Transgression speaks to the wicked deep in their hearts; there is no fear of God before their eyes.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> For they flatter themselves in their own eyes that their iniquity cannot be found out and hated.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The words of their mouths are mischief and deceit; they have ceased to act wisely and do good.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> They plot mischief while on their beds; they are set on a way that is not good; they do not reject evil.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Your steadfast love, O LORD, extends to the heavens, your faithfulness to the clouds.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Your righteousness is like the mighty mountains, your judgments are like the great deep; you save humans and animals alike, O LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> How precious is your steadfast love, O God! All people may take refuge in the shadow of your wings.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> They feast on the abundance of your house, and you give them drink from the river of your delights.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> For with you is the fountain of life; in your light we see light.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> O continue your steadfast love to those who know you, and your salvation to the upright of heart!</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Do not let the foot of the arrogant tread on me, or the hand of the wicked drive me away.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> There the evildoers lie prostrate; they are thrust down, unable to rise.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"37\">\r\n\t\t\t<VERS vnumber=\"1\"> [Of David] Do not fret because of the wicked; do not be envious of wrongdoers,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> for they will soon fade like the grass, and wither like the green herb.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Trust in the LORD, and do good; so you will live in the land, and enjoy security.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Take delight in the LORD, and he will give you the desires of your heart.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Commit your way to the LORD; trust in him, and he will act.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> He will make your vindication shine like the light, and the justice of your cause like the noonday.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Be still before the LORD, and wait patiently for him; do not fret over those who prosper in their way, over those who carry out evil devices.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Refrain from anger, and forsake wrath. Do not fret-- it leads only to evil.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> For the wicked shall be cut off, but those who wait for the LORD shall inherit the land.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Yet a little while, and the wicked will be no more; though you look diligently for their place, they will not be there.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But the meek shall inherit the land, and delight themselves in abundant prosperity.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The wicked plot against the righteous, and gnash their teeth at them;</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> but the LORD laughs at the wicked, for he sees that their day is coming.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The wicked draw the sword and bend their bows to bring down the poor and needy, to kill those who walk uprightly;</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> their sword shall enter their own heart, and their bows shall be broken.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Better is a little that the righteous person has than the abundance of many wicked.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> For the arms of the wicked shall be broken, but the LORD upholds the righteous.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The LORD knows the days of the blameless, and their heritage will abide forever;</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> they are not put to shame in evil times, in the days of famine they have abundance.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> But the wicked perish, and the enemies of the LORD are like the glory of the pastures; they vanish-- like smoke they vanish away.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> The wicked borrow, and do not pay back, but the righteous are generous and keep giving;</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> for those blessed by the LORD shall inherit the land, but those cursed by him shall be cut off.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Our steps are made firm by the LORD, when he delights in our way; </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> though we stumble, we shall not fall headlong, for the LORD holds us by the hand. </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> I have been young, and now am old, yet I have not seen the righteous forsaken or their children begging bread.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> They are ever giving liberally and lending, and their children become a blessing.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Depart from evil, and do good; so you shall abide forever.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> For the LORD loves justice; he will not forsake his faithful ones. The righteous shall be kept safe forever, but the children of the wicked shall be cut off.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> The righteous shall inherit the land, and live in it forever.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> The mouths of the righteous utter wisdom, and their tongues speak justice.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> The law of their God is in their hearts; their steps do not slip.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> The wicked watch for the righteous, and seek to kill them.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> The LORD will not abandon them to their power, or let them be condemned when they are brought to trial.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Wait for the LORD, and keep to his way, and he will exalt you to inherit the land; you will look on the destruction of the wicked.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> I have seen the wicked oppressing, and towering like a cedar of Lebanon. </VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Again I passed by, and they were no more; though I sought them, they could not be found. </VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Mark the blameless, and behold the upright, for there is posterity for the peaceable.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> But transgressors shall be altogether destroyed; the posterity of the wicked shall be cut off.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> The salvation of the righteous is from the LORD; he is their refuge in the time of trouble.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> The LORD helps them and rescues them; he rescues them from the wicked, and saves them, because they take refuge in him.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"38\">\r\n\t\t\t<VERS vnumber=\"1\"> [A Psalm of David, for the memorial offering.> O LORD, do not rebuke me in your anger, or discipline me in your wrath.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> For your arrows have sunk into me, and your hand has come down on me.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> There is no soundness in my flesh because of your indignation; there is no health in my bones because of my sin.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For my iniquities have gone over my head; they weigh like a burden too heavy for me.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> My wounds grow foul and fester because of my foolishness;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> I am utterly bowed down and prostrate; all day long I go around mourning.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> For my loins are filled with burning, and there is no soundness in my flesh.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> I am utterly spent and crushed; I groan because of the tumult of my heart.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> O Lord, all my longing is known to you; my sighing is not hidden from you.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> My heart throbs, my strength fails me; as for the light of my eyes-- it also has gone from me.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> My friends and companions stand aloof from my affliction, and my neighbors stand far off.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Those who seek my life lay their snares; those who seek to hurt me speak of ruin, and meditate treachery all day long.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> But I am like the deaf, I do not hear; like the mute, who cannot speak.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Truly, I am like one who does not hear, and in whose mouth is no retort.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> But it is for you, O LORD, that I wait; it is you, O Lord my God, who will answer.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> For I pray, \"Only do not let them rejoice over me, those who boast against me when my foot slips.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> For I am ready to fall, and my pain is ever with me.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> I confess my iniquity; I am sorry for my sin.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Those who are my foes without cause are mighty, and many are those who hate me wrongfully. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Those who render me evil for good are my adversaries because I follow after good.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Do not forsake me, O LORD; O my God, do not be far from me;</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> make haste to help me, O Lord, my salvation.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"39\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader: to Jeduthun. A Psalm of David] I said, \"I will guard my ways that I may not sin with my tongue; I will keep a muzzle on my mouth as long as the wicked are in my presence.\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> I was silent and still; I held my peace to no avail; my distress grew worse,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> my heart became hot within me. While I mused, the fire burned; then I spoke with my tongue:</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> \"LORD, let me know my end, and what is the measure of my days; let me know how fleeting my life is.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> You have made my days a few handbreadths, and my lifetime is as nothing in your sight. Surely everyone stands as a mere breath. Selah </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Surely everyone goes about like a shadow. Surely for nothing they are in turmoil; they heap up, and do not know who will gather.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> \"And now, O Lord, what do I wait for? My hope is in you.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Deliver me from all my transgressions. Do not make me the scorn of the fool.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> I am silent; I do not open my mouth, for it is you who have done it.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Remove your stroke from me; I am worn down by the blows of your hand. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> \"You chastise mortals in punishment for sin, consuming like a moth what is dear to them; surely everyone is a mere breath. Selah </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> \"Hear my prayer, O LORD, and give ear to my cry; do not hold your peace at my tears. For I am your passing guest, an alien, like all my forebears.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Turn your gaze away from me, that I may smile again, before I depart and am no more.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"40\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader. Of David. A Psalm.> I waited patiently for the LORD; he inclined to me and heard my cry.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He drew me up from the desolate pit, out of the miry bog, and set my feet upon a rock, making my steps secure.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> He put a new song in my mouth, a song of praise to our God. Many will see and fear, and put their trust in the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Happy are those who make the LORD their trust, who do not turn to the proud, to those who go astray after false gods.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> You have multiplied, O LORD my God, your wondrous deeds and your thoughts toward us; none can compare with you. Were I to proclaim and tell of them, they would be more than can be counted.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Sacrifice and offering you do not desire, but you have given me an open ear. Burnt offering and sin offering you have not required. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then I said, \"Here I am; in the scroll of the book it is written of me. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> I delight to do your will, O my God; your law is within my heart.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> I have told the glad news of deliverance in the great congregation; see, I have not restrained my lips, as you know, O LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> I have not hidden your saving help within my heart, I have spoken of your faithfulness and your salvation; I have not concealed your steadfast love and your faithfulness from the great congregation.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Do not, O LORD, withhold your mercy from me; let your steadfast love and your faithfulness keep me safe forever.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> For evils have encompassed me without number; my iniquities have overtaken me, until I cannot see; they are more than the hairs of my head, and my heart fails me.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Be pleased, O LORD, to deliver me; O LORD, make haste to help me.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Let all those be put to shame and confusion who seek to snatch away my life; let those be turned back and brought to dishonor who desire my hurt.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Let those be appalled because of their shame who say to me, \"Aha, Aha!\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> But may all who seek you rejoice and be glad in you; may those who love your salvation say continually, \"Great is the LORD!\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> As for me, I am poor and needy, but the Lord takes thought for me. You are my help and my deliverer; do not delay, O my God.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"41\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader. A Psalm of David] Happy are those who consider the poor; the LORD delivers them in the day of trouble. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The LORD protects them and keeps them alive; they are called happy in the land. You do not give them up to the will of their enemies.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The LORD sustains them on their sickbed; in their illness you heal all their infirmities. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> As for me, I said, \"O LORD, be gracious to me; heal me, for I have sinned against you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> My enemies wonder in malice when I will die, and my name perish.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And when they come to see me, they utter empty words, while their hearts gather mischief; when they go out, they tell it abroad.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> All who hate me whisper together about me; they imagine the worst for me.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> They think that a deadly thing has fastened on me, that I will not rise again from where I lie.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Even my bosom friend in whom I trusted, who ate of my bread, has lifted the heel against me.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> But you, O LORD, be gracious to me, and raise me up, that I may repay them.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> By this I know that you are pleased with me; because my enemy has not triumphed over me.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> But you have upheld me because of my integrity, and set me in your presence forever.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Blessed be the LORD, the God of Israel, from everlasting to everlasting. Amen and Amen.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"42\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader. A Maskil of the Korahites.> As a deer longs for flowing streams, so my soul longs for you, O God.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> My soul thirsts for God, for the living God. When shall I come and behold the face of God?</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> My tears have been my food day and night, while people say to me continually, \"Where is your God?\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> These things I remember, as I pour out my soul: how I went with the throng, and led them in procession to the house of God, with glad shouts and songs of thanksgiving, a multitude keeping festival. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Why are you cast down, O my soul, and why are you disquieted within me? Hope in God; for I shall again praise him, my help</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> and my God. My soul is cast down within me; therefore I remember you from the land of Jordan and of Hermon, from Mount Mizar.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Deep calls to deep at the thunder of your cataracts; all your waves and your billows have gone over me.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> By day the LORD commands his steadfast love, and at night his song is with me, a prayer to the God of my life.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> I say to God, my rock, \"Why have you forgotten me? Why must I walk about mournfully because the enemy oppresses me?\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> As with a deadly wound in my body, my adversaries taunt me, while they say to me continually, \"Where is your God?\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Why are you cast down, O my soul, and why are you disquieted within me? Hope in God; for I shall again praise him, my help and my God.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"43\">\r\n\t\t\t<VERS vnumber=\"1\"> Vindicate me, O God, and defend my cause against an ungodly people; from those who are deceitful and unjust deliver me!</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> For you are the God in whom I take refuge; why have you cast me off? Why must I walk about mournfully because of the oppression of the enemy?</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> O send out your light and your truth; let them lead me; let them bring me to your holy hill and to your dwelling.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then I will go to the altar of God, to God my exceeding joy; and I will praise you with the harp, O God, my God.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Why are you cast down, O my soul, and why are you disquieted within me? Hope in God; for I shall again praise him, my help and my God.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"44\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader. Of the Korahites. A Maskil.> We have heard with our ears, O God, our ancestors have told us, what deeds you performed in their days, in the days of old:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> you with your own hand drove out the nations, but them you planted; you afflicted the peoples, but them you set free;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> for not by their own sword did they win the land, nor did their own arm give them victory; but your right hand, and your arm, and the light of your countenance, for you delighted in them.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> You are my King and my God; you command victories for Jacob. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Through you we push down our foes; through your name we tread down our assailants.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For not in my bow do I trust, nor can my sword save me.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But you have saved us from our foes, and have put to confusion those who hate us.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> In God we have boasted continually, and we will give thanks to your name forever. Selah</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Yet you have rejected us and abased us, and have not gone out with our armies.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> You made us turn back from the foe, and our enemies have gotten spoil.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> You have made us like sheep for slaughter, and have scattered us among the nations.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> You have sold your people for a trifle, demanding no high price for them.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> You have made us the taunt of our neighbors, the derision and scorn of those around us.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> You have made us a byword among the nations, a laughingstock among the peoples. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> All day long my disgrace is before me, and shame has covered my face</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> at the words of the taunters and revilers, at the sight of the enemy and the avenger.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> All this has come upon us, yet we have not forgotten you, or been false to your covenant.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Our heart has not turned back, nor have our steps departed from your way,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> yet you have broken us in the haunt of jackals, and covered us with deep darkness.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> If we had forgotten the name of our God, or spread out our hands to a strange god,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> would not God discover this? For he knows the secrets of the heart.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Because of you we are being killed all day long, and accounted as sheep for the slaughter.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Rouse yourself! Why do you sleep, O Lord? Awake, do not cast us off forever!</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Why do you hide your face? Why do you forget our affliction and oppression?</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> For we sink down to the dust; our bodies cling to the ground.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Rise up, come to our help. Redeem us for the sake of your steadfast love.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"45\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader: according to Lilies. Of the Korahites. A Maskil. A love song.> My heart overflows with a goodly theme; I address my verses to the king; my tongue is like the pen of a ready scribe.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> You are the most handsome of men; grace is poured upon your lips; therefore God has blessed you forever.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Gird your sword on your thigh, O mighty one, in your glory and majesty.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> In your majesty ride on victoriously for the cause of truth and to defend the right; let your right hand teach you dread deeds. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Your arrows are sharp in the heart of the king's enemies; the peoples fall under you.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Your throne, O God, endures forever and ever. Your royal scepter is a scepter of equity; </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> you love righteousness and hate wickedness. Therefore God, your God, has anointed you with the oil of gladness beyond your companions;</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> your robes are all fragrant with myrrh and aloes and cassia. From ivory palaces stringed instruments make you glad;</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> daughters of kings are among your ladies of honor; at your right hand stands the queen in gold of Ophir.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Hear, O daughter, consider and incline your ear; forget your people and your father's house,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> and the king will desire your beauty. Since he is your lord, bow to him;</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> the people of Tyre will seek your favor with gifts, the richest of the people </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> with all kinds of wealth. The princess is decked in her chamber with gold-woven robes; </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> in many-colored robes she is led to the king; behind her the virgins, her companions, follow.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> With joy and gladness they are led along as they enter the palace of the king.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> In the place of ancestors you, O king, shall have sons; you will make them princes in all the earth. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> I will cause your name to be celebrated in all generations; therefore the peoples will praise you forever and ever.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"46\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader. Of the Korahites. According to Alamoth. A Song.> God is our refuge and strength, a very present help in trouble. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Therefore we will not fear, though the earth should change, though the mountains shake in the heart of the sea;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> though its waters roar and foam, though the mountains tremble with its tumult. Selah </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> There is a river whose streams make glad the city of God, the holy habitation of the Most High.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> God is in the midst of the city; it shall not be moved; God will help it when the morning dawns. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The nations are in an uproar, the kingdoms totter; he utters his voice, the earth melts.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The LORD of hosts is with us; the God of Jacob is our refuge. Selah </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Come, behold the works of the LORD; see what desolations he has brought on the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> He makes wars cease to the end of the earth; he breaks the bow, and shatters the spear; he burns the shields with fire.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> \"Be still, and know that I am God! I am exalted among the nations, I am exalted in the earth.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The LORD of hosts is with us; the God of Jacob is our refuge. Selah </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"47\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader. Of the Korahites. A Psalm.> Clap your hands, all you peoples; shout to God with loud songs of joy.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> For the LORD, the Most High, is awesome, a great king over all the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> He subdued peoples under us, and nations under our feet.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> He chose our heritage for us, the pride of Jacob whom he loves. Selah </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> God has gone up with a shout, the LORD with the sound of a trumpet.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Sing praises to God, sing praises; sing praises to our King, sing praises.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> For God is the king of all the earth; sing praises with a psalm. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> God is king over the nations; God sits on his holy throne.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The princes of the peoples gather as the people of the God of Abraham. For the shields of the earth belong to God; he is highly exalted.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"48\">\r\n\t\t\t<VERS vnumber=\"1\"> [A Song. A Psalm of the Korahites.> Great is the LORD and greatly to be praised in the city of our God. His holy mountain,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> beautiful in elevation, is the joy of all the earth, Mount Zion, in the far north, the city of the great King.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Within its citadels God has shown himself a sure defense.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then the kings assembled, they came on together.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> As soon as they saw it, they were astounded; they were in panic, they took to flight;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> trembling took hold of them there, pains as of a woman in labor,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> as when an east wind shatters the ships of Tarshish.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> As we have heard, so have we seen in the city of the LORD of hosts, in the city of our God, which God establishes forever. Selah </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> We ponder your steadfast love, O God, in the midst of your temple.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Your name, O God, like your praise, reaches to the ends of the earth. Your right hand is filled with victory.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Let Mount Zion be glad, let the towns of Judah rejoice because of your judgments. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Walk about Zion, go all around it, count its towers,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> consider well its ramparts; go through its citadels, that you may tell the next generation</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> that this is God, our God forever and ever. He will be our guide forever.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"49\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader. Of the Korahites. A Psalm.> Hear this, all you peoples; give ear, all inhabitants of the world,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> both low and high, rich and poor together.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> My mouth shall speak wisdom; the meditation of my heart shall be understanding.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> I will incline my ear to a proverb; I will solve my riddle to the music of the harp.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Why should I fear in times of trouble, when the iniquity of my persecutors surrounds me,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> those who trust in their wealth and boast of the abundance of their riches?</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Truly, no ransom avails for one's life, there is no price one can give to God for it.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> For the ransom of life is costly, and can never suffice</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> that one should live on forever and never see the grave. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> When we look at the wise, they die; fool and dolt perish together and leave their wealth to others.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Their graves are their homes forever, their dwelling places to all generations, though they named lands their own. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Mortals cannot abide in their pomp; they are like the animals that perish.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Such is the fate of the foolhardy, the end of those who are pleased with their lot. Selah </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Like sheep they are appointed for Sheol; Death shall be their shepherd; straight to the grave they descend, and their form shall waste away; Sheol shall be their home. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> But God will ransom my soul from the power of Sheol, for he will receive me. Selah </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Do not be afraid when some become rich, when the wealth of their houses increases.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> For when they die they will carry nothing away; their wealth will not go down after them.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Though in their lifetime they count themselves happy-- for you are praised when you do well for yourself--</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> they will go to the company of their ancestors, who will never again see the light. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Mortals cannot abide in their pomp; they are like the animals that perish.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"50\">\r\n\t\t\t<VERS vnumber=\"1\"> [A Psalm of Asaph.> The mighty one, God the LORD, speaks and summons the earth from the rising of the sun to its setting.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Out of Zion, the perfection of beauty, God shines forth.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Our God comes and does not keep silence, before him is a devouring fire, and a mighty tempest all around him.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> He calls to the heavens above and to the earth, that he may judge his people:</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> \"Gather to me my faithful ones, who made a covenant with me by sacrifice!\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The heavens declare his righteousness, for God himself is judge. Selah</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> \"Hear, O my people, and I will speak, O Israel, I will testify against you. I am God, your God.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Not for your sacrifices do I rebuke you; your burnt offerings are continually before me.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> I will not accept a bull from your house, or goats from your folds.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For every wild animal of the forest is mine, the cattle on a thousand hills.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> I know all the birds of the air, and all that moves in the field is mine.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> \"If I were hungry, I would not tell you, for the world and all that is in it is mine.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Do I eat the flesh of bulls, or drink the blood of goats?</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Offer to God a sacrifice of thanksgiving, and pay your vows to the Most High. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Call on me in the day of trouble; I will deliver you, and you shall glorify me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> But to the wicked God says: \"What right have you to recite my statutes, or take my covenant on your lips?</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> For you hate discipline, and you cast my words behind you.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> You make friends with a thief when you see one, and you keep company with adulterers.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> \"You give your mouth free rein for evil, and your tongue frames deceit.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> You sit and speak against your kin; you slander your own mother's child.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> These things you have done and I have been silent; you thought that I was one just like yourself. But now I rebuke you, and lay the charge before you.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> \"Mark this, then, you who forget God, or I will tear you apart, and there will be no one to deliver.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Those who bring thanksgiving as their sacrifice honor me; to those who go the right way I will show the salvation of God.\" </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"51\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader. A Psalm of David, when the prophet Nathan came to him, after he had gone in to Bathsheba.> Have mercy on me, O God, according to your steadfast love; according to your abundant mercy blot out my transgressions.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Wash me thoroughly from my iniquity, and cleanse me from my sin.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For I know my transgressions, and my sin is ever before me.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Against you, you alone, have I sinned, and done what is evil in your sight, so that you are justified in your sentence and blameless when you pass judgment.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Indeed, I was born guilty, a sinner when my mother conceived me.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> You desire truth in the inward being; therefore teach me wisdom in my secret heart. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Purge me with hyssop, and I shall be clean; wash me, and I shall be whiter than snow.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Let me hear joy and gladness; let the bones that you have crushed rejoice.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Hide your face from my sins, and blot out all my iniquities.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Create in me a clean heart, O God, and put a new and right spirit within me. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Do not cast me away from your presence, and do not take your holy spirit from me.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Restore to me the joy of your salvation, and sustain in me a willing spirit. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then I will teach transgressors your ways, and sinners will return to you.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Deliver me from bloodshed, O God, O God of my salvation, and my tongue will sing aloud of your deliverance.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> O Lord, open my lips, and my mouth will declare your praise.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> For you have no delight in sacrifice; if I were to give a burnt offering, you would not be pleased.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The sacrifice acceptable to God is a broken spirit; a broken and contrite heart, O God, you will not despise. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Do good to Zion in your good pleasure; rebuild the walls of Jerusalem,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> then you will delight in right sacrifices, in burnt offerings and whole burnt offerings; then bulls will be offered on your altar.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"52\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader. A Maskil of David, when Doeg the Edomite came to Saul and said to him, \"David has come to the house of Ahimelech.\"> Why do you boast, O mighty one, of mischief done against the godly? All day long </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> you are plotting destruction. Your tongue is like a sharp razor, you worker of treachery.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> You love evil more than good, and lying more than speaking the truth. Selah </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> You love all words that devour, O deceitful tongue.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> But God will break you down forever; he will snatch and tear you from your tent; he will uproot you from the land of the living. Selah </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The righteous will see, and fear, and will laugh at the evildoer, saying, </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> \"See the one who would not take refuge in God, but trusted in abundant riches, and sought refuge in wealth!\" </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But I am like a green olive tree in the house of God. I trust in the steadfast love of God forever and ever.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> I will thank you forever, because of what you have done. In the presence of the faithful I will proclaim your name, for it is good. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"53\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader: according to Mahalath. A Maskil of David] Fools say in their hearts, \"There is no God.\" They are corrupt, they commit abominable acts; there is no one who does good.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> God looks down from heaven on humankind to see if there are any who are wise, who seek after God.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> They have all fallen away, they are all alike perverse; there is no one who does good, no, not one.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Have they no knowledge, those evildoers, who eat up my people as they eat bread, and do not call upon God?</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> There they shall be in great terror, in terror such as has not been. For God will scatter the bones of the ungodly; they will be put to shame, for God has rejected them. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> O that deliverance for Israel would come from Zion! When God restores the fortunes of his people, Jacob will rejoice; Israel will be glad.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"54\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader: with stringed instruments. A Maskil of David, when the Ziphites went and told Saul, \"David is in hiding among us.\"> Save me, O God, by your name, and vindicate me by your might.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Hear my prayer, O God; give ear to the words of my mouth.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For the insolent have risen against me, the ruthless seek my life; they do not set God before them. Selah </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But surely, God is my helper; the Lord is the upholder of my life. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> He will repay my enemies for their evil. In your faithfulness, put an end to them.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> With a freewill offering I will sacrifice to you; I will give thanks to your name, O LORD, for it is good.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> For he has delivered me from every trouble, and my eye has looked in triumph on my enemies.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"55\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader: with stringed instruments. A Maskil of David] Give ear to my prayer, O God; do not hide yourself from my supplication.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Attend to me, and answer me; I am troubled in my complaint. I am distraught</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> by the noise of the enemy, because of the clamor of the wicked. For they bring trouble upon me, and in anger they cherish enmity against me. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> My heart is in anguish within me, the terrors of death have fallen upon me.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Fear and trembling come upon me, and horror overwhelms me.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And I say, \"O that I had wings like a dove! I would fly away and be at rest;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> truly, I would flee far away; I would lodge in the wilderness; Selah </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> I would hurry to find a shelter for myself from the raging wind and tempest.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Confuse, O Lord, confound their speech; for I see violence and strife in the city.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Day and night they go around it on its walls, and iniquity and trouble are within it;</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> ruin is in its midst; oppression and fraud do not depart from its marketplace.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> It is not enemies who taunt me-- I could bear that; it is not adversaries who deal insolently with me-- I could hide from them.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> But it is you, my equal, my companion, my familiar friend,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> with whom I kept pleasant company; we walked in the house of God with the throng.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Let death come upon them; let them go down alive to Sheol; for evil is in their homes and in their hearts.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> But I call upon God, and the LORD will save me.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Evening and morning and at noon I utter my complaint and moan, and he will hear my voice.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> He will redeem me unharmed from the battle that I wage, for many are arrayed against me.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> God, who is enthroned from of old, Selah will hear, and will humble them-- because they do not change, and do not fear God.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> My companion laid hands on a friend and violated a covenant with me </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> with speech smoother than butter, but with a heart set on war; with words that were softer than oil, but in fact were drawn swords.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Cast your burden on the LORD, and he will sustain you; he will never permit the righteous to be moved. </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> But you, O God, will cast them down into the lowest pit; the bloodthirsty and treacherous shall not live out half their days. But I will trust in you.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"56\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader: according to The Dove on Far-off Terebinths. Of David. A Miktam, when the Philistines seized him in Gath.> Be gracious to me, O God, for people trample on me; all day long foes oppress me;</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> my enemies trample on me all day long, for many fight against me. O Most High,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> when I am afraid, I put my trust in you.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> In God, whose word I praise, in God I trust; I am not afraid; what can flesh do to me?</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> All day long they seek to injure my cause; all their thoughts are against me for evil.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> They stir up strife, they lurk, they watch my steps. As they hoped to have my life,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> so repay them for their crime; in wrath cast down the peoples, O God! </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> You have kept count of my tossings; put my tears in your bottle. Are they not in your record?</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then my enemies will retreat in the day when I call. This I know, that God is for me. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> In God, whose word I praise, in the LORD, whose word I praise,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> in God I trust; I am not afraid. What can a mere mortal do to me?</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> My vows to you I must perform, O God; I will render thank offerings to you.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> For you have delivered my soul from death, and my feet from falling, so that I may walk before God in the light of life.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"57\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader: Do Not Destroy. Of David. A Miktam, when he fled from Saul, in the cave.> Be merciful to me, O God, be merciful to me, for in you my soul takes refuge; in the shadow of your wings I will take refuge, until the destroying storms pass by.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> I cry to God Most High, to God who fulfills his purpose for me.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> He will send from heaven and save me, he will put to shame those who trample on me. Selah God will send forth his steadfast love and his faithfulness.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> I lie down among lions that greedily devour human prey; their teeth are spears and arrows, their tongues sharp swords. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Be exalted, O God, above the heavens. Let your glory be over all the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> They set a net for my steps; my soul was bowed down. They dug a pit in my path, but they have fallen into it themselves. Selah </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> My heart is steadfast, O God, my heart is steadfast. I will sing and make melody.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Awake, my soul! Awake, O harp and lyre! I will awake the dawn.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> I will give thanks to you, O Lord, among the peoples; I will sing praises to you among the nations.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For your steadfast love is as high as the heavens; your faithfulness extends to the clouds.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Be exalted, O God, above the heavens. Let your glory be over all the earth.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"58\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader: Do Not Destroy. Of David. A Miktam.> Do you indeed decree what is right, you gods? Do you judge people fairly? </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> No, in your hearts you devise wrongs; your hands deal out violence on earth.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The wicked go astray from the womb; they err from their birth, speaking lies.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> They have venom like the venom of a serpent, like the deaf adder that stops its ear,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> so that it does not hear the voice of charmers or of the cunning enchanter.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> O God, break the teeth in their mouths; tear out the fangs of the young lions, O LORD!</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Let them vanish like water that runs away; like grass let them be trodden down and wither. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Let them be like the snail that dissolves into slime; like the untimely birth that never sees the sun.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Sooner than your pots can feel the heat of thorns, whether green or ablaze, may he sweep them away!</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The righteous will rejoice when they see vengeance done; they will bathe their feet in the blood of the wicked.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> People will say, \"Surely there is a reward for the righteous; surely there is a God who judges on earth.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"59\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader: Do Not Destroy. Of David. A Miktam, when Saul ordered his house to be watched in order to kill him.> Deliver me from my enemies, O my God; protect me from those who rise up against me.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Deliver me from those who work evil; from the bloodthirsty save me.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Even now they lie in wait for my life; the mighty stir up strife against me. For no transgression or sin of mine, O LORD,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> for no fault of mine, they run and make ready. Rouse yourself, come to my help and see!</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> You, LORD God of hosts, are God of Israel. Awake to punish all the nations; spare none of those who treacherously plot evil. Selah </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Each evening they come back, howling like dogs and prowling about the city.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> There they are, bellowing with their mouths, with sharp words on their lips-- for \"Who,\" they think, \"will hear us?\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But you laugh at them, O LORD; you hold all the nations in derision.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> O my strength, I will watch for you; for you, O God, are my fortress.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> My God in his steadfast love will meet me; my God will let me look in triumph on my enemies.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Do not kill them, or my people may forget; make them totter by your power, and bring them down, O Lord, our shield.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> For the sin of their mouths, the words of their lips, let them be trapped in their pride. For the cursing and lies that they utter,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> consume them in wrath; consume them until they are no more. Then it will be known to the ends of the earth that God rules over Jacob. Selah </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Each evening they come back, howling like dogs and prowling about the city.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> They roam about for food, and growl if they do not get their fill.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> But I will sing of your might; I will sing aloud of your steadfast love in the morning. For you have been a fortress for me and a refuge in the day of my distress.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> O my strength, I will sing praises to you, for you, O God, are my fortress, the God who shows me steadfast love.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"60\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader: according to the Lily of the Covenant. A Miktam of David; for instruction; when he struggled with Aram-naharaim and with Aram-zobah, and when Joab on his return killed twelve thousand Edomites in the Valley of Salt.> O God, you have rejected us, broken our defenses; you have been angry; now restore us!</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> You have caused the land to quake; you have torn it open; repair the cracks in it, for it is tottering.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> You have made your people suffer hard things; you have given us wine to drink that made us reel.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> You have set up a banner for those who fear you, to rally to it out of bowshot. Selah </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Give victory with your right hand, and answer us, so that those whom you love may be rescued.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> God has promised in his sanctuary: \"With exultation I will divide up Shechem, and portion out the Vale of Succoth. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Gilead is mine, and Manasseh is mine; Ephraim is my helmet; Judah is my scepter.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Moab is my washbasin; on Edom I hurl my shoe; over Philistia I shout in triumph.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Who will bring me to the fortified city? Who will lead me to Edom?</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Have you not rejected us, O God? You do not go out, O God, with our armies.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> O grant us help against the foe, for human help is worthless.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> With God we shall do valiantly; it is he who will tread down our foes.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"61\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader: with stringed instruments. Of David] Hear my cry, O God; listen to my prayer.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> From the end of the earth I call to you, when my heart is faint. Lead me to the rock that is higher than I;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> for you are my refuge, a strong tower against the enemy.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Let me abide in your tent forever, find refuge under the shelter of your wings. Selah </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> For you, O God, have heard my vows; you have given me the heritage of those who fear your name.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Prolong the life of the king; may his years endure to all generations!</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> May he be enthroned forever before God; appoint steadfast love and faithfulness to watch over him!</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> So I will always sing praises to your name, as I pay my vows day after day.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"62\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader: according to Jeduthun. A Psalm of David] For God alone my soul waits in silence; from him comes my salvation.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He alone is my rock and my salvation, my fortress; I shall never be shaken.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> How long will you assail a person, will you batter your victim, all of you, as you would a leaning wall, a tottering fence?</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Their only plan is to bring down a person of prominence. They take pleasure in falsehood; they bless with their mouths, but inwardly they curse. Selah </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> For God alone my soul waits in silence, for my hope is from him.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> He alone is my rock and my salvation, my fortress; I shall not be shaken.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> On God rests my deliverance and my honor; my mighty rock, my refuge is in God.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Trust in him at all times, O people; pour out your heart before him; God is a refuge for us. Selah </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Those of low estate are but a breath, those of high estate are a delusion; in the balances they go up; they are together lighter than a breath.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Put no confidence in extortion, and set no vain hopes on robbery; if riches increase, do not set your heart on them.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Once God has spoken; twice have I heard this: that power belongs to God,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> and steadfast love belongs to you, O Lord. For you repay to all according to their work.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"63\">\r\n\t\t\t<VERS vnumber=\"1\"> [A Psalm of David, when he was in the Wilderness of Judah.> O God, you are my God, I seek you, my soul thirsts for you; my flesh faints for you, as in a dry and weary land where there is no water.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> So I have looked upon you in the sanctuary, beholding your power and glory.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Because your steadfast love is better than life, my lips will praise you.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> So I will bless you as long as I live; I will lift up my hands and call on your name.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> My soul is satisfied as with a rich feast, and my mouth praises you with joyful lips </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> when I think of you on my bed, and meditate on you in the watches of the night;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> for you have been my help, and in the shadow of your wings I sing for joy.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> My soul clings to you; your right hand upholds me.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> But those who seek to destroy my life shall go down into the depths of the earth;</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> they shall be given over to the power of the sword, they shall be prey for jackals.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But the king shall rejoice in God; all who swear by him shall exult, for the mouths of liars will be stopped.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"64\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader. A Psalm of David] Hear my voice, O God, in my complaint; preserve my life from the dread enemy.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Hide me from the secret plots of the wicked, from the scheming of evildoers,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> who whet their tongues like swords, who aim bitter words like arrows,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> shooting from ambush at the blameless; they shoot suddenly and without fear.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> They hold fast to their evil purpose; they talk of laying snares secretly, thinking, \"Who can see us? </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Who can search out our crimes? We have thought out a cunningly conceived plot.\" For the human heart and mind are deep. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But God will shoot his arrow at them; they will be wounded suddenly.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Because of their tongue he will bring them to ruin; all who see them will shake with horror. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then everyone will fear; they will tell what God has brought about, and ponder what he has done.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Let the righteous rejoice in the LORD and take refuge in him. Let all the upright in heart glory.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"65\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader. A Psalm of David. A Song.> Praise is due to you, O God, in Zion; and to you shall vows be performed,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> O you who answer prayer! To you all flesh shall come.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> When deeds of iniquity overwhelm us, you forgive our transgressions.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Happy are those whom you choose and bring near to live in your courts. We shall be satisfied with the goodness of your house, your holy temple.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> By awesome deeds you answer us with deliverance, O God of our salvation; you are the hope of all the ends of the earth and of the farthest seas.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> By your strength you established the mountains; you are girded with might. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> You silence the roaring of the seas, the roaring of their waves, the tumult of the peoples.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Those who live at earth's farthest bounds are awed by your signs; you make the gateways of the morning and the evening shout for joy.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> You visit the earth and water it, you greatly enrich it; the river of God is full of water; you provide the people with grain, for so you have prepared it.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> You water its furrows abundantly, settling its ridges, softening it with showers, and blessing its growth.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> You crown the year with your bounty; your wagon tracks overflow with richness.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The pastures of the wilderness overflow, the hills gird themselves with joy,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> the meadows clothe themselves with flocks, the valleys deck themselves with grain, they shout and sing together for joy.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"66\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader. A Song. A Psalm.> Make a joyful noise to God, all the earth;</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> sing the glory of his name; give to him glorious praise.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Say to God, \"How awesome are your deeds! Because of your great power, your enemies cringe before you.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> All the earth worships you; they sing praises to you, sing praises to your name.\" Selah </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Come and see what God has done: he is awesome in his deeds among mortals.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> He turned the sea into dry land; they passed through the river on foot. There we rejoiced in him,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> who rules by his might forever, whose eyes keep watch on the nations-- let the rebellious not exalt themselves. Selah</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Bless our God, O peoples, let the sound of his praise be heard,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> who has kept us among the living, and has not let our feet slip.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For you, O God, have tested us; you have tried us as silver is tried.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> You brought us into the net; you laid burdens on our backs;</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> you let people ride over our heads; we went through fire and through water; yet you have brought us out to a spacious place. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> I will come into your house with burnt offerings; I will pay you my vows,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> those that my lips uttered and my mouth promised when I was in trouble.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> I will offer to you burnt offerings of fatlings, with the smoke of the sacrifice of rams; I will make an offering of bulls and goats. Selah </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Come and hear, all you who fear God, and I will tell what he has done for me.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> I cried aloud to him, and he was extolled with my tongue.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> If I had cherished iniquity in my heart, the Lord would not have listened.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> But truly God has listened; he has given heed to the words of my prayer.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Blessed be God, because he has not rejected my prayer or removed his steadfast love from me.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"67\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader: with stringed instruments. A Psalm. A Song.> May God be gracious to us and bless us and make his face to shine upon us, Selah </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> that your way may be known upon earth, your saving power among all nations.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Let the peoples praise you, O God; let all the peoples praise you.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Let the nations be glad and sing for joy, for you judge the peoples with equity and guide the nations upon earth. Selah </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Let the peoples praise you, O God; let all the peoples praise you.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The earth has yielded its increase; God, our God, has blessed us.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> May God continue to bless us; let all the ends of the earth revere him.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"68\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader. Of David. A Psalm. A Song.> Let God rise up, let his enemies be scattered; let those who hate him flee before him.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> As smoke is driven away, so drive them away; as wax melts before the fire, let the wicked perish before God.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> But let the righteous be joyful; let them exult before God; let them be jubilant with joy.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Sing to God, sing praises to his name; lift up a song to him who rides upon the clouds-- his name is the LORD-- be exultant before him.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Father of orphans and protector of widows is God in his holy habitation.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> God gives the desolate a home to live in; he leads out the prisoners to prosperity, but the rebellious live in a parched land.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> O God, when you went out before your people, when you marched through the wilderness, Selah </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> the earth quaked, the heavens poured down rain at the presence of God, the God of Sinai, at the presence of God, the God of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Rain in abundance, O God, you showered abroad; you restored your heritage when it languished;</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> your flock found a dwelling in it; in your goodness, O God, you provided for the needy.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The Lord gives the command; great is the company of those who bore the tidings: </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> \"The kings of the armies, they flee, they flee!\" The women at home divide the spoil,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> though they stay among the sheepfolds-- the wings of a dove covered with silver, its pinions with green gold.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> When the Almighty scattered kings there, snow fell on Zalmon. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> O mighty mountain, mountain of Bashan; O many-peaked mountain, mountain of Bashan!</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Why do you look with envy, O many-peaked mountain, at the mount that God desired for his abode, where the LORD will reside forever?</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> With mighty chariotry, twice ten thousand, thousands upon thousands, the Lord came from Sinai into the holy place. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> You ascended the high mount, leading captives in your train and receiving gifts from people, even from those who rebel against the LORD God's abiding there.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Blessed be the Lord, who daily bears us up; God is our salvation. Selah </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Our God is a God of salvation, and to GOD, the Lord, belongs escape from death.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> But God will shatter the heads of his enemies, the hairy crown of those who walk in their guilty ways.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The Lord said, \"I will bring them back from Bashan, I will bring them back from the depths of the sea,</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> so that you may bathe your feet in blood, so that the tongues of your dogs may have their share from the foe.\" </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Your solemn processions are seen, O God, the processions of my God, my King, into the sanctuary--</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> the singers in front, the musicians last, between them girls playing tambourines:</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> \"Bless God in the great congregation, the LORD, O you who are of Israel's fountain!\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> There is Benjamin, the least of them, in the lead, the princes of Judah in a body, the princes of Zebulun, the princes of Naphtali.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Summon your might, O God; show your strength, O God, as you have done for us before.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Because of your temple at Jerusalem kings bear gifts to you.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Rebuke the wild animals that live among the reeds, the herd of bulls with the calves of the peoples. Trample under foot those who lust after tribute; scatter the peoples who delight in war. </VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Let bronze be brought from Egypt; let Ethiopia hasten to stretch out its hands to God. </VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Sing to God, O kingdoms of the earth; sing praises to the Lord, Selah </VERS>\r\n\t\t\t<VERS vnumber=\"33\"> O rider in the heavens, the ancient heavens; listen, he sends out his voice, his mighty voice.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Ascribe power to God, whose majesty is over Israel; and whose power is in the skies.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Awesome is God in his sanctuary, the God of Israel; he gives power and strength to his people. Blessed be God! </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"69\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader: according to Lilies. Of David] Save me, O God, for the waters have come up to my neck.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> I sink in deep mire, where there is no foothold; I have come into deep waters, and the flood sweeps over me.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> I am weary with my crying; my throat is parched. My eyes grow dim with waiting for my God.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> More in number than the hairs of my head are those who hate me without cause; many are those who would destroy me, my enemies who accuse me falsely. What I did not steal must I now restore?</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> O God, you know my folly; the wrongs I have done are not hidden from you.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Do not let those who hope in you be put to shame because of me, O Lord GOD of hosts; do not let those who seek you be dishonored because of me, O God of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> It is for your sake that I have borne reproach, that shame has covered my face.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> I have become a stranger to my kindred, an alien to my mother's children.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> It is zeal for your house that has consumed me; the insults of those who insult you have fallen on me.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> When I humbled my soul with fasting, they insulted me for doing so. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> When I made sackcloth my clothing, I became a byword to them.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> I am the subject of gossip for those who sit in the gate, and the drunkards make songs about me.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> But as for me, my prayer is to you, O LORD. At an acceptable time, O God, in the abundance of your steadfast love, answer me. With your faithful help</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> rescue me from sinking in the mire; let me be delivered from my enemies and from the deep waters.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Do not let the flood sweep over me, or the deep swallow me up, or the Pit close its mouth over me.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Answer me, O LORD, for your steadfast love is good; according to your abundant mercy, turn to me.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Do not hide your face from your servant, for I am in distress-- make haste to answer me.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Draw near to me, redeem me, set me free because of my enemies.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> You know the insults I receive, and my shame and dishonor; my foes are all known to you.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Insults have broken my heart, so that I am in despair. I looked for pity, but there was none; and for comforters, but I found none.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> They gave me poison for food, and for my thirst they gave me vinegar to drink.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Let their table be a trap for them, a snare for their allies.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Let their eyes be darkened so that they cannot see, and make their loins tremble continually.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Pour out your indignation upon them, and let your burning anger overtake them.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> May their camp be a desolation; let no one live in their tents.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> For they persecute those whom you have struck down, and those whom you have wounded, they attack still more. </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Add guilt to their guilt; may they have no acquittal from you.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Let them be blotted out of the book of the living; let them not be enrolled among the righteous.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> But I am lowly and in pain; let your salvation, O God, protect me.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> I will praise the name of God with a song; I will magnify him with thanksgiving.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> This will please the LORD more than an ox or a bull with horns and hoofs.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Let the oppressed see it and be glad; you who seek God, let your hearts revive.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> For the LORD hears the needy, and does not despise his own that are in bonds.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Let heaven and earth praise him, the seas and everything that moves in them.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> For God will save Zion and rebuild the cities of Judah; and his servants shall live there and possess it;</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> the children of his servants shall inherit it, and those who love his name shall live in it.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"70\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader. Of David, for the memorial offering.> Be pleased, O God, to deliver me. O LORD, make haste to help me!</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Let those be put to shame and confusion who seek my life. Let those be turned back and brought to dishonor who desire to hurt me.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Let those who say, \"Aha, Aha!\" turn back because of their shame.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Let all who seek you rejoice and be glad in you. Let those who love your salvation say evermore, \"God is great!\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> But I am poor and needy; hasten to me, O God! You are my help and my deliverer; O LORD, do not delay!</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"71\">\r\n\t\t\t<VERS vnumber=\"1\"> In you, O LORD, I take refuge; let me never be put to shame.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> In your righteousness deliver me and rescue me; incline your ear to me and save me.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Be to me a rock of refuge, a strong fortress, to save me, for you are my rock and my fortress. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Rescue me, O my God, from the hand of the wicked, from the grasp of the unjust and cruel.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> For you, O Lord, are my hope, my trust, O LORD, from my youth.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Upon you I have leaned from my birth; it was you who took me from my mother's womb. My praise is continually of you.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> I have been like a portent to many, but you are my strong refuge.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> My mouth is filled with your praise, and with your glory all day long.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Do not cast me off in the time of old age; do not forsake me when my strength is spent.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For my enemies speak concerning me, and those who watch for my life consult together.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> They say, \"Pursue and seize that person whom God has forsaken, for there is no one to deliver.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> O God, do not be far from me; O my God, make haste to help me!</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Let my accusers be put to shame and consumed; let those who seek to hurt me be covered with scorn and disgrace.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But I will hope continually, and will praise you yet more and more.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> My mouth will tell of your righteous acts, of your deeds of salvation all day long, though their number is past my knowledge.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> I will come praising the mighty deeds of the Lord GOD, I will praise your righteousness, yours alone.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> O God, from my youth you have taught me, and I still proclaim your wondrous deeds.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> So even to old age and gray hairs, O God, do not forsake me, until I proclaim your might to all the generations to come. Your power </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> and your righteousness, O God, reach the high heavens. You who have done great things, O God, who is like you?</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> You who have made me see many troubles and calamities will revive me again; from the depths of the earth you will bring me up again.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> You will increase my honor, and comfort me once again.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> I will also praise you with the harp for your faithfulness, O my God; I will sing praises to you with the lyre, O Holy One of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> My lips will shout for joy when I sing praises to you; my soul also, which you have rescued.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> All day long my tongue will talk of your righteous help, for those who tried to do me harm have been put to shame, and disgraced.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"72\">\r\n\t\t\t<VERS vnumber=\"1\"> [Of Solomon.> Give the king your justice, O God, and your righteousness to a king's son.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> May he judge your people with righteousness, and your poor with justice.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> May the mountains yield prosperity for the people, and the hills, in righteousness.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> May he defend the cause of the poor of the people, give deliverance to the needy, and crush the oppressor.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> May he live while the sun endures, and as long as the moon, throughout all generations. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> May he be like rain that falls on the mown grass, like showers that water the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> In his days may righteousness flourish and peace abound, until the moon is no more.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> May he have dominion from sea to sea, and from the River to the ends of the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> May his foes bow down before him, and his enemies lick the dust. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> May the kings of Tarshish and of the isles render him tribute, may the kings of Sheba and Seba bring gifts.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> May all kings fall down before him, all nations give him service.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> For he delivers the needy when they call, the poor and those who have no helper.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> He has pity on the weak and the needy, and saves the lives of the needy.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> From oppression and violence he redeems their life; and precious is their blood in his sight.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Long may he live! May gold of Sheba be given to him. May prayer be made for him continually, and blessings invoked for him all day long.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> May there be abundance of grain in the land; may it wave on the tops of the mountains; may its fruit be like Lebanon; and may people blossom in the cities like the grass of the field.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> May his name endure forever, his fame continue as long as the sun. May all nations be blessed in him; may they pronounce him happy. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Blessed be the LORD, the God of Israel, who alone does wondrous things.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Blessed be his glorious name forever; may his glory fill the whole earth. Amen and Amen.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The prayers of David son of Jesse are ended.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"73\">\r\n\t\t\t<VERS vnumber=\"1\"> [A Psalm of Asaph.> Truly God is good to the upright, to those who are pure in heart.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> But as for me, my feet had almost stumbled; my steps had nearly slipped.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For I was envious of the arrogant; I saw the prosperity of the wicked.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For they have no pain; their bodies are sound and sleek.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> They are not in trouble as others are; they are not plagued like other people.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Therefore pride is their necklace; violence covers them like a garment.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Their eyes swell out with fatness; their hearts overflow with follies.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> They scoff and speak with malice; loftily they threaten oppression.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> They set their mouths against heaven, and their tongues range over the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Therefore the people turn and praise them, and find no fault in them. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> And they say, \"How can God know? Is there knowledge in the Most High?\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Such are the wicked; always at ease, they increase in riches.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> All in vain I have kept my heart clean and washed my hands in innocence.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> For all day long I have been plagued, and am punished every morning.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> If I had said, \"I will talk on in this way,\" I would have been untrue to the circle of your children.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> But when I thought how to understand this, it seemed to me a wearisome task,</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> until I went into the sanctuary of God; then I perceived their end.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Truly you set them in slippery places; you make them fall to ruin.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> How they are destroyed in a moment, swept away utterly by terrors!</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> They are like a dream when one awakes; on awaking you despise their phantoms. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> When my soul was embittered, when I was pricked in heart,</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> I was stupid and ignorant; I was like a brute beast toward you.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Nevertheless I am continually with you; you hold my right hand.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> You guide me with your counsel, and afterward you will receive me with honor. </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Whom have I in heaven but you? And there is nothing on earth that I desire other than you.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> My flesh and my heart may fail, but God is the strength of my heart and my portion forever. </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Indeed, those who are far from you will perish; you put an end to those who are false to you.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> But for me it is good to be near God; I have made the Lord GOD my refuge, to tell of all your works.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"74\">\r\n\t\t\t<VERS vnumber=\"1\"> [A Maskil of Asaph.> O God, why do you cast us off forever? Why does your anger smoke against the sheep of your pasture?</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Remember your congregation, which you acquired long ago, which you redeemed to be the tribe of your heritage. Remember Mount Zion, where you came to dwell.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Direct your steps to the perpetual ruins; the enemy has destroyed everything in the sanctuary.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Your foes have roared within your holy place; they set up their emblems there.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> At the upper entrance they hacked the wooden trellis with axes. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And then, with hatchets and hammers, they smashed all its carved work.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> They set your sanctuary on fire; they desecrated the dwelling place of your name, bringing it to the ground.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> They said to themselves, \"We will utterly subdue them\"; they burned all the meeting places of God in the land.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> We do not see our emblems; there is no longer any prophet, and there is no one among us who knows how long.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> How long, O God, is the foe to scoff? Is the enemy to revile your name forever?</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Why do you hold back your hand; why do you keep your hand in your bosom? </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Yet God my King is from of old, working salvation in the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> You divided the sea by your might; you broke the heads of the dragons in the waters.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> You crushed the heads of Leviathan; you gave him as food for the creatures of the wilderness. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> You cut openings for springs and torrents; you dried up ever-flowing streams.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Yours is the day, yours also the night; you established the luminaries and the sun. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> You have fixed all the bounds of the earth; you made summer and winter.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Remember this, O LORD, how the enemy scoffs, and an impious people reviles your name.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Do not deliver the soul of your dove to the wild animals; do not forget the life of your poor forever.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Have regard for your covenant, for the dark places of the land are full of the haunts of violence. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Do not let the downtrodden be put to shame; let the poor and needy praise your name.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Rise up, O God, plead your cause; remember how the impious scoff at you all day long.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Do not forget the clamor of your foes, the uproar of your adversaries that goes up continually.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"75\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader: Do Not Destroy. A Psalm of Asaph. A Song.> We give thanks to you, O God; we give thanks; your name is near. People tell of your wondrous deeds.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> At the set time that I appoint I will judge with equity.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> When the earth totters, with all its inhabitants, it is I who keep its pillars steady. Selah </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> I say to the boastful, \"Do not boast,\" and to the wicked, \"Do not lift up your horn;</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> do not lift up your horn on high, or speak with insolent neck.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For not from the east or from the west and not from the wilderness comes lifting up;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> but it is God who executes judgment, putting down one and lifting up another.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> For in the hand of the LORD there is a cup with foaming wine, well mixed; he will pour a draught from it, and all the wicked of the earth shall drain it down to the dregs.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> But I will rejoice forever; I will sing praises to the God of Jacob. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> All the horns of the wicked I will cut off, but the horns of the righteous shall be exalted.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"76\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader: with stringed instruments. A Psalm of Asaph. A Song.> In Judah God is known, his name is great in Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> His abode has been established in Salem, his dwelling place in Zion.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> There he broke the flashing arrows, the shield, the sword, and the weapons of war. Selah </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Glorious are you, more majestic than the everlasting mountains. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The stouthearted were stripped of their spoil; they sank into sleep; none of the troops was able to lift a hand.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> At your rebuke, O God of Jacob, both rider and horse lay stunned.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But you indeed are awesome! Who can stand before you when once your anger is roused?</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> From the heavens you uttered judgment; the earth feared and was still</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> when God rose up to establish judgment, to save all the oppressed of the earth. Selah </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Human wrath serves only to praise you, when you bind the last bit of your wrath around you. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Make vows to the LORD your God, and perform them; let all who are around him bring gifts to the one who is awesome,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> who cuts off the spirit of princes, who inspires fear in the kings of the earth.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"77\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader: according to Jeduthun. Of Asaph. A Psalm.> I cry aloud to God, aloud to God, that he may hear me.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> In the day of my trouble I seek the Lord; in the night my hand is stretched out without wearying; my soul refuses to be comforted.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> I think of God, and I moan; I meditate, and my spirit faints. Selah </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> You keep my eyelids from closing; I am so troubled that I cannot speak.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> I consider the days of old, and remember the years of long ago.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> I commune with my heart in the night; I meditate and search my spirit: </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> \"Will the Lord spurn forever, and never again be favorable?</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Has his steadfast love ceased forever? Are his promises at an end for all time?</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Has God forgotten to be gracious? Has he in anger shut up his compassion?\" Selah </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And I say, \"It is my grief that the right hand of the Most High has changed.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> I will call to mind the deeds of the LORD; I will remember your wonders of old.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> I will meditate on all your work, and muse on your mighty deeds.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Your way, O God, is holy. What god is so great as our God?</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> You are the God who works wonders; you have displayed your might among the peoples.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> With your strong arm you redeemed your people, the descendants of Jacob and Joseph. Selah </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> When the waters saw you, O God, when the waters saw you, they were afraid; the very deep trembled.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The clouds poured out water; the skies thundered; your arrows flashed on every side.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The crash of your thunder was in the whirlwind; your lightnings lit up the world; the earth trembled and shook.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Your way was through the sea, your path, through the mighty waters; yet your footprints were unseen.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> You led your people like a flock by the hand of Moses and Aaron.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"78\">\r\n\t\t\t<VERS vnumber=\"1\"> [A Maskil of Asaph.> Give ear, O my people, to my teaching; incline your ears to the words of my mouth.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> I will open my mouth in a parable; I will utter dark sayings from of old,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> things that we have heard and known, that our ancestors have told us.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> We will not hide them from their children; we will tell to the coming generation the glorious deeds of the LORD, and his might, and the wonders that he has done.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> He established a decree in Jacob, and appointed a law in Israel, which he commanded our ancestors to teach to their children;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> that the next generation might know them, the children yet unborn, and rise up and tell them to their children,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> so that they should set their hope in God, and not forget the works of God, but keep his commandments;</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> and that they should not be like their ancestors, a stubborn and rebellious generation, a generation whose heart was not steadfast, whose spirit was not faithful to God.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The Ephraimites, armed with the bow, turned back on the day of battle. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> They did not keep God's covenant, but refused to walk according to his law.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> They forgot what he had done, and the miracles that he had shown them.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> In the sight of their ancestors he worked marvels in the land of Egypt, in the fields of Zoan.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> He divided the sea and let them pass through it, and made the waters stand like a heap.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> In the daytime he led them with a cloud, and all night long with a fiery light.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> He split rocks open in the wilderness, and gave them drink abundantly as from the deep.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> He made streams come out of the rock, and caused waters to flow down like rivers.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Yet they sinned still more against him, rebelling against the Most High in the desert.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> They tested God in their heart by demanding the food they craved.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> They spoke against God, saying, \"Can God spread a table in the wilderness?</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Even though he struck the rock so that water gushed out and torrents overflowed, can he also give bread, or provide meat for his people?\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Therefore, when the LORD heard, he was full of rage; a fire was kindled against Jacob, his anger mounted against Israel,</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> because they had no faith in God, and did not trust his saving power.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Yet he commanded the skies above, and opened the doors of heaven;</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> he rained down on them manna to eat, and gave them the grain of heaven.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Mortals ate of the bread of angels; he sent them food in abundance.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> He caused the east wind to blow in the heavens, and by his power he led out the south wind;</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> he rained flesh upon them like dust, winged birds like the sand of the seas;</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> he let them fall within their camp, all around their dwellings.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> And they ate and were well filled, for he gave them what they craved.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> But before they had satisfied their craving, while the food was still in their mouths,</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> the anger of God rose against them and he killed the strongest of them, and laid low the flower of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> In spite of all this they still sinned; they did not believe in his wonders.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> So he made their days vanish like a breath, and their years in terror.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> When he killed them, they sought for him; they repented and sought God earnestly.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> They remembered that God was their rock, the Most High God their redeemer.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> But they flattered him with their mouths; they lied to him with their tongues.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Their heart was not steadfast toward him; they were not true to his covenant.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Yet he, being compassionate, forgave their iniquity, and did not destroy them; often he restrained his anger, and did not stir up all his wrath.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> He remembered that they were but flesh, a wind that passes and does not come again.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> How often they rebelled against him in the wilderness and grieved him in the desert!</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> They tested God again and again, and provoked the Holy One of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> They did not keep in mind his power, or the day when he redeemed them from the foe;</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> when he displayed his signs in Egypt, and his miracles in the fields of Zoan.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> He turned their rivers to blood, so that they could not drink of their streams.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> He sent among them swarms of flies, which devoured them, and frogs, which destroyed them.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> He gave their crops to the caterpillar, and the fruit of their labor to the locust.</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> He destroyed their vines with hail, and their sycamores with frost.</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> He gave over their cattle to the hail, and their flocks to thunderbolts.</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> He let loose on them his fierce anger, wrath, indignation, and distress, a company of destroying angels.</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> He made a path for his anger; he did not spare them from death, but gave their lives over to the plague.</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> He struck all the firstborn in Egypt, the first issue of their strength in the tents of Ham.</VERS>\r\n\t\t\t<VERS vnumber=\"52\"> Then he led out his people like sheep, and guided them in the wilderness like a flock.</VERS>\r\n\t\t\t<VERS vnumber=\"53\"> He led them in safety, so that they were not afraid; but the sea overwhelmed their enemies.</VERS>\r\n\t\t\t<VERS vnumber=\"54\"> And he brought them to his holy hill, to the mountain that his right hand had won.</VERS>\r\n\t\t\t<VERS vnumber=\"55\"> He drove out nations before them; he apportioned them for a possession and settled the tribes of Israel in their tents.</VERS>\r\n\t\t\t<VERS vnumber=\"56\"> Yet they tested the Most High God, and rebelled against him. They did not observe his decrees,</VERS>\r\n\t\t\t<VERS vnumber=\"57\"> but turned away and were faithless like their ancestors; they twisted like a treacherous bow.</VERS>\r\n\t\t\t<VERS vnumber=\"58\"> For they provoked him to anger with their high places; they moved him to jealousy with their idols.</VERS>\r\n\t\t\t<VERS vnumber=\"59\"> When God heard, he was full of wrath, and he utterly rejected Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"60\"> He abandoned his dwelling at Shiloh, the tent where he dwelt among mortals,</VERS>\r\n\t\t\t<VERS vnumber=\"61\"> and delivered his power to captivity, his glory to the hand of the foe.</VERS>\r\n\t\t\t<VERS vnumber=\"62\"> He gave his people to the sword, and vented his wrath on his heritage.</VERS>\r\n\t\t\t<VERS vnumber=\"63\"> Fire devoured their young men, and their girls had no marriage song.</VERS>\r\n\t\t\t<VERS vnumber=\"64\"> Their priests fell by the sword, and their widows made no lamentation.</VERS>\r\n\t\t\t<VERS vnumber=\"65\"> Then the Lord awoke as from sleep, like a warrior shouting because of wine.</VERS>\r\n\t\t\t<VERS vnumber=\"66\"> He put his adversaries to rout; he put them to everlasting disgrace.</VERS>\r\n\t\t\t<VERS vnumber=\"67\"> He rejected the tent of Joseph, he did not choose the tribe of Ephraim;</VERS>\r\n\t\t\t<VERS vnumber=\"68\"> but he chose the tribe of Judah, Mount Zion, which he loves.</VERS>\r\n\t\t\t<VERS vnumber=\"69\"> He built his sanctuary like the high heavens, like the earth, which he has founded forever.</VERS>\r\n\t\t\t<VERS vnumber=\"70\"> He chose his servant David, and took him from the sheepfolds;</VERS>\r\n\t\t\t<VERS vnumber=\"71\"> from tending the nursing ewes he brought him to be the shepherd of his people Jacob, of Israel, his inheritance.</VERS>\r\n\t\t\t<VERS vnumber=\"72\"> With upright heart he tended them, and guided them with skillful hand.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"79\">\r\n\t\t\t<VERS vnumber=\"1\"> [A Psalm of Asaph.> O God, the nations have come into your inheritance; they have defiled your holy temple; they have laid Jerusalem in ruins.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> They have given the bodies of your servants to the birds of the air for food, the flesh of your faithful to the wild animals of the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> They have poured out their blood like water all around Jerusalem, and there was no one to bury them.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> We have become a taunt to our neighbors, mocked and derided by those around us.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> How long, O LORD? Will you be angry forever? Will your jealous wrath burn like fire?</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Pour out your anger on the nations that do not know you, and on the kingdoms that do not call on your name.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> For they have devoured Jacob and laid waste his habitation.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Do not remember against us the iniquities of our ancestors; let your compassion come speedily to meet us, for we are brought very low.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Help us, O God of our salvation, for the glory of your name; deliver us, and forgive our sins, for your name's sake.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Why should the nations say, \"Where is their God?\" Let the avenging of the outpoured blood of your servants be known among the nations before our eyes.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Let the groans of the prisoners come before you; according to your great power preserve those doomed to die.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Return sevenfold into the bosom of our neighbors the taunts with which they taunted you, O Lord!</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then we your people, the flock of your pasture, will give thanks to you forever; from generation to generation we will recount your praise.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"80\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader: on Lilies, a Covenant. Of Asaph. A Psalm.> Give ear, O Shepherd of Israel, you who lead Joseph like a flock! You who are enthroned upon the cherubim, shine forth</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> before Ephraim and Benjamin and Manasseh. Stir up your might, and come to save us!</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Restore us, O God; let your face shine, that we may be saved.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> O LORD God of hosts, how long will you be angry with your people's prayers?</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> You have fed them with the bread of tears, and given them tears to drink in full measure.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> You make us the scorn of our neighbors; our enemies laugh among themselves. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Restore us, O God of hosts; let your face shine, that we may be saved.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> You brought a vine out of Egypt; you drove out the nations and planted it.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> You cleared the ground for it; it took deep root and filled the land.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The mountains were covered with its shade, the mighty cedars with its branches;</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> it sent out its branches to the sea, and its shoots to the River.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Why then have you broken down its walls, so that all who pass along the way pluck its fruit?</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The boar from the forest ravages it, and all that move in the field feed on it.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Turn again, O God of hosts; look down from heaven, and see; have regard for this vine,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> the stock that your right hand planted. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> They have burned it with fire, they have cut it down; may they perish at the rebuke of your countenance. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> But let your hand be upon the one at your right hand, the one whom you made strong for yourself.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then we will never turn back from you; give us life, and we will call on your name.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Restore us, O LORD God of hosts; let your face shine, that we may be saved.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"81\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader: according to The Gittith. Of Asaph.> Sing aloud to God our strength; shout for joy to the God of Jacob.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Raise a song, sound the tambourine, the sweet lyre with the harp.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Blow the trumpet at the new moon, at the full moon, on our festal day.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For it is a statute for Israel, an ordinance of the God of Jacob.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> He made it a decree in Joseph, when he went out over the land of Egypt. I hear a voice I had not known: </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> \"I relieved your shoulder of the burden; your hands were freed from the basket. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> In distress you called, and I rescued you; I answered you in the secret place of thunder; I tested you at the waters of Meribah. Selah </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Hear, O my people, while I admonish you; O Israel, if you would but listen to me!</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> There shall be no strange god among you; you shall not bow down to a foreign god.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> I am the LORD your God, who brought you up out of the land of Egypt. Open your mouth wide and I will fill it.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> \"But my people did not listen to my voice; Israel would not submit to me.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> So I gave them over to their stubborn hearts, to follow their own counsels.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> O that my people would listen to me, that Israel would walk in my ways!</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then I would quickly subdue their enemies, and turn my hand against their foes.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Those who hate the LORD would cringe before him, and their doom would last forever.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> I would feed you with the finest of the wheat, and with honey from the rock I would satisfy you.\" </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"82\">\r\n\t\t\t<VERS vnumber=\"1\"> [A Psalm of Asaph.> God has taken his place in the divine council; in the midst of the gods he holds judgment:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"How long will you judge unjustly and show partiality to the wicked? Selah </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Give justice to the weak and the orphan; maintain the right of the lowly and the destitute.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Rescue the weak and the needy; deliver them from the hand of the wicked.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> They have neither knowledge nor understanding, they walk around in darkness; all the foundations of the earth are shaken.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> I say, \"You are gods, children of the Most High, all of you;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> nevertheless, you shall die like mortals, and fall like any prince.\" </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Rise up, O God, judge the earth; for all the nations belong to you!</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"83\">\r\n\t\t\t<VERS vnumber=\"1\"> [A Song. A Psalm of Asaph.> O God, do not keep silence; do not hold your peace or be still, O God!</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Even now your enemies are in tumult; those who hate you have raised their heads.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> They lay crafty plans against your people; they consult together against those you protect.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> They say, \"Come, let us wipe them out as a nation; let the name of Israel be remembered no more.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> They conspire with one accord; against you they make a covenant--</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> the tents of Edom and the Ishmaelites, Moab and the Hagrites,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Gebal and Ammon and Amalek, Philistia with the inhabitants of Tyre;</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Assyria also has joined them; they are the strong arm of the children of Lot. Selah </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Do to them as you did to Midian, as to Sisera and Jabin at the Wadi Kishon,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> who were destroyed at En-dor, who became dung for the ground.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Make their nobles like Oreb and Zeeb, all their princes like Zebah and Zalmunna,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> who said, \"Let us take the pastures of God for our own possession.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> O my God, make them like whirling dust, like chaff before the wind. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> As fire consumes the forest, as the flame sets the mountains ablaze,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> so pursue them with your tempest and terrify them with your hurricane.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Fill their faces with shame, so that they may seek your name, O LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Let them be put to shame and dismayed forever; let them perish in disgrace.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Let them know that you alone, whose name is the LORD, are the Most High over all the earth.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"84\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader: according to The Gittith. Of the Korahites. A Psalm.> How lovely is your dwelling place, O LORD of hosts!</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> My soul longs, indeed it faints for the courts of the LORD; my heart and my flesh sing for joy to the living God.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Even the sparrow finds a home, and the swallow a nest for herself, where she may lay her young, at your altars, O LORD of hosts, my King and my God.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Happy are those who live in your house, ever singing your praise. Selah </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Happy are those whose strength is in you, in whose heart are the highways to Zion. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> As they go through the valley of Baca they make it a place of springs; the early rain also covers it with pools.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> They go from strength to strength; the God of gods will be seen in Zion.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> O LORD God of hosts, hear my prayer; give ear, O God of Jacob! Selah </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Behold our shield, O God; look on the face of your anointed.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For a day in your courts is better than a thousand elsewhere. I would rather be a doorkeeper in the house of my God than live in the tents of wickedness.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> For the LORD God is a sun and shield; he bestows favor and honor. No good thing does the LORD withhold from those who walk uprightly.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> O LORD of hosts, happy is everyone who trusts in you.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"85\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader. Of the Korahites. A Psalm.> LORD, you were favorable to your land; you restored the fortunes of Jacob.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> You forgave the iniquity of your people; you pardoned all their sin. Selah </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> You withdrew all your wrath; you turned from your hot anger.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Restore us again, O God of our salvation, and put away your indignation toward us.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Will you be angry with us forever? Will you prolong your anger to all generations?</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Will you not revive us again, so that your people may rejoice in you?</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Show us your steadfast love, O LORD, and grant us your salvation.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Let me hear what God the LORD will speak, for he will speak peace to his people, to his faithful, to those who turn to him in their hearts. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Surely his salvation is at hand for those who fear him, that his glory may dwell in our land.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Steadfast love and faithfulness will meet; righteousness and peace will kiss each other.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Faithfulness will spring up from the ground, and righteousness will look down from the sky.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The LORD will give what is good, and our land will yield its increase.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Righteousness will go before him, and will make a path for his steps.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"86\">\r\n\t\t\t<VERS vnumber=\"1\"> [A Prayer of David] Incline your ear, O LORD, and answer me, for I am poor and needy.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Preserve my life, for I am devoted to you; save your servant who trusts in you. You are my God;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> be gracious to me, O Lord, for to you do I cry all day long.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Gladden the soul of your servant, for to you, O Lord, I lift up my soul.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> For you, O Lord, are good and forgiving, abounding in steadfast love to all who call on you.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Give ear, O LORD, to my prayer; listen to my cry of supplication.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> In the day of my trouble I call on you, for you will answer me.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> There is none like you among the gods, O Lord, nor are there any works like yours.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> All the nations you have made shall come and bow down before you, O Lord, and shall glorify your name.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For you are great and do wondrous things; you alone are God.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Teach me your way, O LORD, that I may walk in your truth; give me an undivided heart to revere your name.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> I give thanks to you, O Lord my God, with my whole heart, and I will glorify your name forever.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> For great is your steadfast love toward me; you have delivered my soul from the depths of Sheol.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> O God, the insolent rise up against me; a band of ruffians seeks my life, and they do not set you before them.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> But you, O Lord, are a God merciful and gracious, slow to anger and abounding in steadfast love and faithfulness.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Turn to me and be gracious to me; give your strength to your servant; save the child of your serving girl.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Show me a sign of your favor, so that those who hate me may see it and be put to shame, because you, LORD, have helped me and comforted me.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"87\">\r\n\t\t\t<VERS vnumber=\"1\"> [Of the Korahites. A Psalm. A Song.> On the holy mount stands the city he founded;</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> the LORD loves the gates of Zion more than all the dwellings of Jacob.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Glorious things are spoken of you, O city of God. Selah </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Among those who know me I mention Rahab and Babylon; Philistia too, and Tyre, with Ethiopia-- \"This one was born there,\" they say.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> And of Zion it shall be said, \"This one and that one were born in it\"; for the Most High himself will establish it.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The LORD records, as he registers the peoples, \"This one was born there.\" Selah </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Singers and dancers alike say, \"All my springs are in you.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"88\">\r\n\t\t\t<VERS vnumber=\"1\"> [A Song. A Psalm of the Korahites. To the leader: according to Mahalath Leannoth. A Maskil of Heman the Ezrahite.> O LORD, God of my salvation, when, at night, I cry out in your presence,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> let my prayer come before you; incline your ear to my cry.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For my soul is full of troubles, and my life draws near to Sheol.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> I am counted among those who go down to the Pit; I am like those who have no help,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> like those forsaken among the dead, like the slain that lie in the grave, like those whom you remember no more, for they are cut off from your hand.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> You have put me in the depths of the Pit, in the regions dark and deep.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Your wrath lies heavy upon me, and you overwhelm me with all your waves. Selah </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> You have caused my companions to shun me; you have made me a thing of horror to them. I am shut in so that I cannot escape;</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> my eye grows dim through sorrow. Every day I call on you, O LORD; I spread out my hands to you.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Do you work wonders for the dead? Do the shades rise up to praise you? Selah </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Is your steadfast love declared in the grave, or your faithfulness in Abaddon?</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Are your wonders known in the darkness, or your saving help in the land of forgetfulness?</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> But I, O LORD, cry out to you; in the morning my prayer comes before you.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> O LORD, why do you cast me off? Why do you hide your face from me?</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Wretched and close to death from my youth up, I suffer your terrors; I am desperate. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Your wrath has swept over me; your dread assaults destroy me.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> They surround me like a flood all day long; from all sides they close in on me.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> You have caused friend and neighbor to shun me; my companions are in darkness.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"89\">\r\n\t\t\t<VERS vnumber=\"1\"> [A Maskil of Ethan the Ezrahite.> I will sing of your steadfast love, O LORD, forever; with my mouth I will proclaim your faithfulness to all generations. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> I declare that your steadfast love is established forever; your faithfulness is as firm as the heavens.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> You said, \"I have made a covenant with my chosen one, I have sworn to my servant David:</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> 'I will establish your descendants forever, and build your throne for all generations.'\" Selah </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Let the heavens praise your wonders, O LORD, your faithfulness in the assembly of the holy ones.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For who in the skies can be compared to the LORD? Who among the heavenly beings is like the LORD,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> a God feared in the council of the holy ones, great and awesome above all that are around him?</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> O LORD God of hosts, who is as mighty as you, O LORD? Your faithfulness surrounds you.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> You rule the raging of the sea; when its waves rise, you still them.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> You crushed Rahab like a carcass; you scattered your enemies with your mighty arm.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The heavens are yours, the earth also is yours; the world and all that is in it-- you have founded them.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The north and the south-- you created them; Tabor and Hermon joyously praise your name.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> You have a mighty arm; strong is your hand, high your right hand.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Righteousness and justice are the foundation of your throne; steadfast love and faithfulness go before you.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Happy are the people who know the festal shout, who walk, O LORD, in the light of your countenance;</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> they exult in your name all day long, and extol your righteousness. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> For you are the glory of their strength; by your favor our horn is exalted.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> For our shield belongs to the LORD, our king to the Holy One of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Then you spoke in a vision to your faithful one, and said: \"I have set the crown on one who is mighty, I have exalted one chosen from the people. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> I have found my servant David; with my holy oil I have anointed him;</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> my hand shall always remain with him; my arm also shall strengthen him.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The enemy shall not outwit him, the wicked shall not humble him.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> I will crush his foes before him and strike down those who hate him.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> My faithfulness and steadfast love shall be with him; and in my name his horn shall be exalted.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> I will set his hand on the sea and his right hand on the rivers.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> He shall cry to me, 'You are my Father, my God, and the Rock of my salvation!'</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> I will make him the firstborn, the highest of the kings of the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Forever I will keep my steadfast love for him, and my covenant with him will stand firm.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> I will establish his line forever, and his throne as long as the heavens endure.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> If his children forsake my law and do not walk according to my ordinances,</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> if they violate my statutes and do not keep my commandments,</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> then I will punish their transgression with the rod and their iniquity with scourges;</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> but I will not remove from him my steadfast love, or be false to my faithfulness.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> I will not violate my covenant, or alter the word that went forth from my lips.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Once and for all I have sworn by my holiness; I will not lie to David.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> His line shall continue forever, and his throne endure before me like the sun.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> It shall be established forever like the moon, an enduring witness in the skies.\" Selah </VERS>\r\n\t\t\t<VERS vnumber=\"38\"> But now you have spurned and rejected him; you are full of wrath against your anointed.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> You have renounced the covenant with your servant; you have defiled his crown in the dust.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> You have broken through all his walls; you have laid his strongholds in ruins.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> All who pass by plunder him; he has become the scorn of his neighbors.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> You have exalted the right hand of his foes; you have made all his enemies rejoice.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> Moreover, you have turned back the edge of his sword, and you have not supported him in battle.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> You have removed the scepter from his hand, and hurled his throne to the ground. </VERS>\r\n\t\t\t<VERS vnumber=\"45\"> You have cut short the days of his youth; you have covered him with shame. Selah </VERS>\r\n\t\t\t<VERS vnumber=\"46\"> How long, O LORD? Will you hide yourself forever? How long will your wrath burn like fire?</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> Remember how short my time is-- for what vanity you have created all mortals!</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> Who can live and never see death? Who can escape the power of Sheol? Selah</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> Lord, where is your steadfast love of old, which by your faithfulness you swore to David?</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> Remember, O Lord, how your servant is taunted; how I bear in my bosom the insults of the peoples, </VERS>\r\n\t\t\t<VERS vnumber=\"51\"> with which your enemies taunt, O LORD, with which they taunted the footsteps of your anointed.</VERS>\r\n\t\t\t<VERS vnumber=\"52\"> Blessed be the LORD forever. Amen and Amen.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"90\">\r\n\t\t\t<VERS vnumber=\"1\"> [A Prayer of Moses, the man of God.> Lord, you have been our dwelling place in all generations. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Before the mountains were brought forth, or ever you had formed the earth and the world, from everlasting to everlasting you are God.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> You turn us back to dust, and say, \"Turn back, you mortals.\" </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For a thousand years in your sight are like yesterday when it is past, or like a watch in the night.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> You sweep them away; they are like a dream, like grass that is renewed in the morning;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> in the morning it flourishes and is renewed; in the evening it fades and withers.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> For we are consumed by your anger; by your wrath we are overwhelmed.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> You have set our iniquities before you, our secret sins in the light of your countenance.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> For all our days pass away under your wrath; our years come to an end like a sigh. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The days of our life are seventy years, or perhaps eighty, if we are strong; even then their span is only toil and trouble; they are soon gone, and we fly away. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Who considers the power of your anger? Your wrath is as great as the fear that is due you.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> So teach us to count our days that we may gain a wise heart.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Turn, O LORD! How long? Have compassion on your servants!</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Satisfy us in the morning with your steadfast love, so that we may rejoice and be glad all our days.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Make us glad as many days as you have afflicted us, and as many years as we have seen evil.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Let your work be manifest to your servants, and your glorious power to their children.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Let the favor of the Lord our God be upon us, and prosper for us the work of our hands-- O prosper the work of our hands!</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"91\">\r\n\t\t\t<VERS vnumber=\"1\"> You who live in the shelter of the Most High, who abide in the shadow of the Almighty, </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> will say to the LORD, \"My refuge and my fortress; my God, in whom I trust.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For he will deliver you from the snare of the fowler and from the deadly pestilence;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> he will cover you with his pinions, and under his wings you will find refuge; his faithfulness is a shield and buckler.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> You will not fear the terror of the night, or the arrow that flies by day,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> or the pestilence that stalks in darkness, or the destruction that wastes at noonday.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> A thousand may fall at your side, ten thousand at your right hand, but it will not come near you.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> You will only look with your eyes and see the punishment of the wicked.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Because you have made the LORD your refuge, the Most High your dwelling place, </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> no evil shall befall you, no scourge come near your tent.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> For he will command his angels concerning you to guard you in all your ways.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> On their hands they will bear you up, so that you will not dash your foot against a stone.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> You will tread on the lion and the adder, the young lion and the serpent you will trample under foot.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Those who love me, I will deliver; I will protect those who know my name.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> When they call to me, I will answer them; I will be with them in trouble, I will rescue them and honor them.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> With long life I will satisfy them, and show them my salvation.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"92\">\r\n\t\t\t<VERS vnumber=\"1\"> [A Psalm. A Song for the Sabbath Day.> It is good to give thanks to the LORD, to sing praises to your name, O Most High;</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> to declare your steadfast love in the morning, and your faithfulness by night,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> to the music of the lute and the harp, to the melody of the lyre.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For you, O LORD, have made me glad by your work; at the works of your hands I sing for joy.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> How great are your works, O LORD! Your thoughts are very deep!</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The dullard cannot know, the stupid cannot understand this:</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> though the wicked sprout like grass and all evildoers flourish, they are doomed to destruction forever,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> but you, O LORD, are on high forever.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> For your enemies, O LORD, for your enemies shall perish; all evildoers shall be scattered.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> But you have exalted my horn like that of the wild ox; you have poured over me fresh oil. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> My eyes have seen the downfall of my enemies; my ears have heard the doom of my evil assailants.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The righteous flourish like the palm tree, and grow like a cedar in Lebanon.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> They are planted in the house of the LORD; they flourish in the courts of our God.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> In old age they still produce fruit; they are always green and full of sap,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> showing that the LORD is upright; he is my rock, and there is no unrighteousness in him.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"93\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD is king, he is robed in majesty; the LORD is robed, he is girded with strength. He has established the world; it shall never be moved;</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> your throne is established from of old; you are from everlasting.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The floods have lifted up, O LORD, the floods have lifted up their voice; the floods lift up their roaring.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> More majestic than the thunders of mighty waters, more majestic than the waves of the sea, majestic on high is the LORD! </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Your decrees are very sure; holiness befits your house, O LORD, forevermore.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"94\">\r\n\t\t\t<VERS vnumber=\"1\"> O LORD, you God of vengeance, you God of vengeance, shine forth!</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Rise up, O judge of the earth; give to the proud what they deserve!</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> O LORD, how long shall the wicked, how long shall the wicked exult?</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> They pour out their arrogant words; all the evildoers boast.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> They crush your people, O LORD, and afflict your heritage.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> They kill the widow and the stranger, they murder the orphan,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> and they say, \"The LORD does not see; the God of Jacob does not perceive.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Understand, O dullest of the people; fools, when will you be wise?</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> He who planted the ear, does he not hear? He who formed the eye, does he not see?</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> He who disciplines the nations, he who teaches knowledge to humankind, does he not chastise?</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The LORD knows our thoughts, that they are but an empty breath. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Happy are those whom you discipline, O LORD, and whom you teach out of your law,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> giving them respite from days of trouble, until a pit is dug for the wicked.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> For the LORD will not forsake his people; he will not abandon his heritage;</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> for justice will return to the righteous, and all the upright in heart will follow it.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Who rises up for me against the wicked? Who stands up for me against evildoers?</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> If the LORD had not been my help, my soul would soon have lived in the land of silence.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> When I thought, \"My foot is slipping,\" your steadfast love, O LORD, held me up.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> When the cares of my heart are many, your consolations cheer my soul.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Can wicked rulers be allied with you, those who contrive mischief by statute?</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> They band together against the life of the righteous, and condemn the innocent to death.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> But the LORD has become my stronghold, and my God the rock of my refuge.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> He will repay them for their iniquity and wipe them out for their wickedness; the LORD our God will wipe them out.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"95\">\r\n\t\t\t<VERS vnumber=\"1\"> O come, let us sing to the LORD; let us make a joyful noise to the rock of our salvation!</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Let us come into his presence with thanksgiving; let us make a joyful noise to him with songs of praise!</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For the LORD is a great God, and a great King above all gods.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> In his hand are the depths of the earth; the heights of the mountains are his also.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The sea is his, for he made it, and the dry land, which his hands have formed.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> O come, let us worship and bow down, let us kneel before the LORD, our Maker!</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> For he is our God, and we are the people of his pasture, and the sheep of his hand. O that today you would listen to his voice!</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Do not harden your hearts, as at Meribah, as on the day at Massah in the wilderness,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> when your ancestors tested me, and put me to the proof, though they had seen my work.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For forty years I loathed that generation and said, \"They are a people whose hearts go astray, and they do not regard my ways.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Therefore in my anger I swore, \"They shall not enter my rest.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"96\">\r\n\t\t\t<VERS vnumber=\"1\"> O sing to the LORD a new song; sing to the LORD, all the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Sing to the LORD, bless his name; tell of his salvation from day to day.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Declare his glory among the nations, his marvelous works among all the peoples.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For great is the LORD, and greatly to be praised; he is to be revered above all gods.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> For all the gods of the peoples are idols, but the LORD made the heavens.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Honor and majesty are before him; strength and beauty are in his sanctuary.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Ascribe to the LORD, O families of the peoples, ascribe to the LORD glory and strength.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Ascribe to the LORD the glory due his name; bring an offering, and come into his courts.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Worship the LORD in holy splendor; tremble before him, all the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Say among the nations, \"The LORD is king! The world is firmly established; it shall never be moved. He will judge the peoples with equity.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Let the heavens be glad, and let the earth rejoice; let the sea roar, and all that fills it;</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> let the field exult, and everything in it. Then shall all the trees of the forest sing for joy</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> before the LORD; for he is coming, for he is coming to judge the earth. He will judge the world with righteousness, and the peoples with his truth.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"97\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD is king! Let the earth rejoice; let the many coastlands be glad!</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Clouds and thick darkness are all around him; righteousness and justice are the foundation of his throne.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Fire goes before him, and consumes his adversaries on every side.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> His lightnings light up the world; the earth sees and trembles.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The mountains melt like wax before the LORD, before the Lord of all the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The heavens proclaim his righteousness; and all the peoples behold his glory.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> All worshipers of images are put to shame, those who make their boast in worthless idols; all gods bow down before him.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Zion hears and is glad, and the towns of Judah rejoice, because of your judgments, O God. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> For you, O LORD, are most high over all the earth; you are exalted far above all gods.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The LORD loves those who hate evil; he guards the lives of his faithful; he rescues them from the hand of the wicked.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Light dawns for the righteous, and joy for the upright in heart. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Rejoice in the LORD, O you righteous, and give thanks to his holy name!</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"98\">\r\n\t\t\t<VERS vnumber=\"1\"> [A Psalm.> O sing to the LORD a new song, for he has done marvelous things. His right hand and his holy arm have gotten him victory.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The LORD has made known his victory; he has revealed his vindication in the sight of the nations.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> He has remembered his steadfast love and faithfulness to the house of Israel. All the ends of the earth have seen the victory of our God.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Make a joyful noise to the LORD, all the earth; break forth into joyous song and sing praises.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Sing praises to the LORD with the lyre, with the lyre and the sound of melody.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> With trumpets and the sound of the horn make a joyful noise before the King, the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Let the sea roar, and all that fills it; the world and those who live in it.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Let the floods clap their hands; let the hills sing together for joy</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> at the presence of the LORD, for he is coming to judge the earth. He will judge the world with righteousness, and the peoples with equity.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"99\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD is king; let the peoples tremble! He sits enthroned upon the cherubim; let the earth quake!</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The LORD is great in Zion; he is exalted over all the peoples.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Let them praise your great and awesome name. Holy is he!</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Mighty King, lover of justice, you have established equity; you have executed justice and righteousness in Jacob. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Extol the LORD our God; worship at his footstool. Holy is he!</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Moses and Aaron were among his priests, Samuel also was among those who called on his name. They cried to the LORD, and he answered them.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> He spoke to them in the pillar of cloud; they kept his decrees, and the statutes that he gave them.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> O LORD our God, you answered them; you were a forgiving God to them, but an avenger of their wrongdoings.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Extol the LORD our God, and worship at his holy mountain; for the LORD our God is holy.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"100\">\r\n\t\t\t<VERS vnumber=\"1\"> [A Psalm of thanksgiving.> Make a joyful noise to the LORD, all the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Worship the LORD with gladness; come into his presence with singing.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Know that the LORD is God. It is he that made us, and we are his; we are his people, and the sheep of his pasture. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Enter his gates with thanksgiving, and his courts with praise. Give thanks to him, bless his name.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> For the LORD is good; his steadfast love endures forever, and his faithfulness to all generations.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"101\">\r\n\t\t\t<VERS vnumber=\"1\"> [Of David. A Psalm.> I will sing of loyalty and of justice; to you, O LORD, I will sing.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> I will study the way that is blameless. When shall I attain it? I will walk with integrity of heart within my house;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> I will not set before my eyes anything that is base. I hate the work of those who fall away; it shall not cling to me.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Perverseness of heart shall be far from me; I will know nothing of evil.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> One who secretly slanders a neighbor I will destroy. A haughty look and an arrogant heart I will not tolerate.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> I will look with favor on the faithful in the land, so that they may live with me; whoever walks in the way that is blameless shall minister to me.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> No one who practices deceit shall remain in my house; no one who utters lies shall continue in my presence.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Morning by morning I will destroy all the wicked in the land, cutting off all evildoers from the city of the LORD.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"102\">\r\n\t\t\t<VERS vnumber=\"1\"> [A prayer of one afflicted, when faint and pleading before the LORD.> Hear my prayer, O LORD; let my cry come to you.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Do not hide your face from me in the day of my distress. Incline your ear to me; answer me speedily in the day when I call.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For my days pass away like smoke, and my bones burn like a furnace.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> My heart is stricken and withered like grass; I am too wasted to eat my bread.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Because of my loud groaning my bones cling to my skin.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> I am like an owl of the wilderness, like a little owl of the waste places.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> I lie awake; I am like a lonely bird on the housetop.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> All day long my enemies taunt me; those who deride me use my name for a curse.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> For I eat ashes like bread, and mingle tears with my drink,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> because of your indignation and anger; for you have lifted me up and thrown me aside.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> My days are like an evening shadow; I wither away like grass.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> But you, O LORD, are enthroned forever; your name endures to all generations.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> You will rise up and have compassion on Zion, for it is time to favor it; the appointed time has come.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> For your servants hold its stones dear, and have pity on its dust.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The nations will fear the name of the LORD, and all the kings of the earth your glory.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> For the LORD will build up Zion; he will appear in his glory.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> He will regard the prayer of the destitute, and will not despise their prayer.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Let this be recorded for a generation to come, so that a people yet unborn may praise the LORD:</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> that he looked down from his holy height, from heaven the LORD looked at the earth,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> to hear the groans of the prisoners, to set free those who were doomed to die;</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> so that the name of the LORD may be declared in Zion, and his praise in Jerusalem,</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> when peoples gather together, and kingdoms, to worship the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> He has broken my strength in midcourse; he has shortened my days.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> \"O my God,\" I say, \"do not take me away at the mid-point of my life, you whose years endure throughout all generations.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Long ago you laid the foundation of the earth, and the heavens are the work of your hands.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> They will perish, but you endure; they will all wear out like a garment. You change them like clothing, and they pass away;</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> but you are the same, and your years have no end.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> The children of your servants shall live secure; their offspring shall be established in your presence.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"103\">\r\n\t\t\t<VERS vnumber=\"1\"> [Of David] Bless the LORD, O my soul, and all that is within me, bless his holy name.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Bless the LORD, O my soul, and do not forget all his benefits--</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> who forgives all your iniquity, who heals all your diseases,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> who redeems your life from the Pit, who crowns you with steadfast love and mercy,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> who satisfies you with good as long as you live so that your youth is renewed like the eagle's. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The LORD works vindication and justice for all who are oppressed.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> He made known his ways to Moses, his acts to the people of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The LORD is merciful and gracious, slow to anger and abounding in steadfast love.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> He will not always accuse, nor will he keep his anger forever.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> He does not deal with us according to our sins, nor repay us according to our iniquities.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> For as the heavens are high above the earth, so great is his steadfast love toward those who fear him;</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> as far as the east is from the west, so far he removes our transgressions from us.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> As a father has compassion for his children, so the LORD has compassion for those who fear him.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> For he knows how we were made; he remembers that we are dust.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> As for mortals, their days are like grass; they flourish like a flower of the field;</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> for the wind passes over it, and it is gone, and its place knows it no more.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> But the steadfast love of the LORD is from everlasting to everlasting on those who fear him, and his righteousness to children's children,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> to those who keep his covenant and remember to do his commandments.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The LORD has established his throne in the heavens, and his kingdom rules over all.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Bless the LORD, O you his angels, you mighty ones who do his bidding, obedient to his spoken word.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Bless the LORD, all his hosts, his ministers that do his will.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Bless the LORD, all his works, in all places of his dominion. Bless the LORD, O my soul.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"104\">\r\n\t\t\t<VERS vnumber=\"1\"> Bless the LORD, O my soul. O LORD my God, you are very great. You are clothed with honor and majesty,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> wrapped in light as with a garment. You stretch out the heavens like a tent,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> you set the beams of your chambers on the waters, you make the clouds your chariot, you ride on the wings of the wind, </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> you make the winds your messengers, fire and flame your ministers. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> You set the earth on its foundations, so that it shall never be shaken.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> You cover it with the deep as with a garment; the waters stood above the mountains.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> At your rebuke they flee; at the sound of your thunder they take to flight.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> They rose up to the mountains, ran down to the valleys to the place that you appointed for them.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> You set a boundary that they may not pass, so that they might not again cover the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> You make springs gush forth in the valleys; they flow between the hills,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> giving drink to every wild animal; the wild asses quench their thirst.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> By the streams the birds of the air have their habitation; they sing among the branches. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> From your lofty abode you water the mountains; the earth is satisfied with the fruit of your work.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> You cause the grass to grow for the cattle, and plants for people to use, to bring forth food from the earth, </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> and wine to gladden the human heart, oil to make the face shine, and bread to strengthen the human heart.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The trees of the LORD are watered abundantly, the cedars of Lebanon that he planted.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> In them the birds build their nests; the stork has its home in the fir trees.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The high mountains are for the wild goats; the rocks are a refuge for the coneys.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> You have made the moon to mark the seasons; the sun knows its time for setting.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> You make darkness, and it is night, when all the animals of the forest come creeping out.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> The young lions roar for their prey, seeking their food from God.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> When the sun rises, they withdraw and lie down in their dens.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> People go out to their work and to their labor until the evening.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> O LORD, how manifold are your works! In wisdom you have made them all; the earth is full of your creatures.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Yonder is the sea, great and wide, creeping things innumerable are there, living things both small and great.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> There go the ships, and Leviathan that you formed to sport in it.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> These all look to you to give them their food in due season;</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> when you give to them, they gather it up; when you open your hand, they are filled with good things.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> When you hide your face, they are dismayed; when you take away their breath, they die and return to their dust.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> When you send forth your spirit, they are created; and you renew the face of the ground. </VERS>\r\n\t\t\t<VERS vnumber=\"31\"> May the glory of the LORD endure forever; may the LORD rejoice in his works--</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> who looks on the earth and it trembles, who touches the mountains and they smoke.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> I will sing to the LORD as long as I live; I will sing praise to my God while I have being.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> May my meditation be pleasing to him, for I rejoice in the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Let sinners be consumed from the earth, and let the wicked be no more. Bless the LORD, O my soul. Praise the LORD!</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"105\">\r\n\t\t\t<VERS vnumber=\"1\"> O give thanks to the LORD, call on his name, make known his deeds among the peoples.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Sing to him, sing praises to him; tell of all his wonderful works.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Glory in his holy name; let the hearts of those who seek the LORD rejoice.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Seek the LORD and his strength; seek his presence continually.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Remember the wonderful works he has done, his miracles, and the judgments he uttered,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> O offspring of his servant Abraham, children of Jacob, his chosen ones. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> He is the LORD our God; his judgments are in all the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> He is mindful of his covenant forever, of the word that he commanded, for a thousand generations,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> the covenant that he made with Abraham, his sworn promise to Isaac,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> which he confirmed to Jacob as a statute, to Israel as an everlasting covenant,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> saying, \"To you I will give the land of Canaan as your portion for an inheritance.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> When they were few in number, of little account, and strangers in it,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> wandering from nation to nation, from one kingdom to another people,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> he allowed no one to oppress them; he rebuked kings on their account,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> saying, \"Do not touch my anointed ones; do my prophets no harm.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> When he summoned famine against the land, and broke every staff of bread,</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> he had sent a man ahead of them, Joseph, who was sold as a slave.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> His feet were hurt with fetters, his neck was put in a collar of iron;</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> until what he had said came to pass, the word of the LORD kept testing him.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The king sent and released him; the ruler of the peoples set him free.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> He made him lord of his house, and ruler of all his possessions,</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> to instruct his officials at his pleasure, and to teach his elders wisdom. </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Then Israel came to Egypt; Jacob lived as an alien in the land of Ham.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> And the LORD made his people very fruitful, and made them stronger than their foes,</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> whose hearts he then turned to hate his people, to deal craftily with his servants.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> He sent his servant Moses, and Aaron whom he had chosen.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> They performed his signs among them, and miracles in the land of Ham.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> He sent darkness, and made the land dark; they rebelled against his words. </VERS>\r\n\t\t\t<VERS vnumber=\"29\"> He turned their waters into blood, and caused their fish to die.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Their land swarmed with frogs, even in the chambers of their kings.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> He spoke, and there came swarms of flies, and gnats throughout their country.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> He gave them hail for rain, and lightning that flashed through their land.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> He struck their vines and fig trees, and shattered the trees of their country.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> He spoke, and the locusts came, and young locusts without number;</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> they devoured all the vegetation in their land, and ate up the fruit of their ground.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> He struck down all the firstborn in their land, the first issue of all their strength.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Then he brought Israel out with silver and gold, and there was no one among their tribes who stumbled. </VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Egypt was glad when they departed, for dread of them had fallen upon it.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> He spread a cloud for a covering, and fire to give light by night.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> They asked, and he brought quails, and gave them food from heaven in abundance.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> He opened the rock, and water gushed out; it flowed through the desert like a river.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> For he remembered his holy promise, and Abraham, his servant.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> So he brought his people out with joy, his chosen ones with singing.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> He gave them the lands of the nations, and they took possession of the wealth of the peoples,</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> that they might keep his statutes and observe his laws. Praise the LORD!</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"106\">\r\n\t\t\t<VERS vnumber=\"1\"> Praise the LORD! O give thanks to the LORD, for he is good; for his steadfast love endures forever.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Who can utter the mighty doings of the LORD, or declare all his praise?</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Happy are those who observe justice, who do righteousness at all times.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Remember me, O LORD, when you show favor to your people; help me when you deliver them;</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> that I may see the prosperity of your chosen ones, that I may rejoice in the gladness of your nation, that I may glory in your heritage.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Both we and our ancestors have sinned; we have committed iniquity, have done wickedly.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Our ancestors, when they were in Egypt, did not consider your wonderful works; they did not remember the abundance of your steadfast love, but rebelled against the Most High at the Red Sea. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Yet he saved them for his name's sake, so that he might make known his mighty power.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> He rebuked the Red Sea, and it became dry; he led them through the deep as through a desert. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> So he saved them from the hand of the foe, and delivered them from the hand of the enemy.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The waters covered their adversaries; not one of them was left.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then they believed his words; they sang his praise.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> But they soon forgot his works; they did not wait for his counsel.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But they had a wanton craving in the wilderness, and put God to the test in the desert;</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> he gave them what they asked, but sent a wasting disease among them.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> They were jealous of Moses in the camp, and of Aaron, the holy one of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The earth opened and swallowed up Dathan, and covered the faction of Abiram.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Fire also broke out in their company; the flame burned up the wicked.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> They made a calf at Horeb and worshiped a cast image.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> They exchanged the glory of God for the image of an ox that eats grass. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> They forgot God, their Savior, who had done great things in Egypt,</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> wondrous works in the land of Ham, and awesome deeds by the Red Sea.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Therefore he said he would destroy them-- had not Moses, his chosen one, stood in the breach before him, to turn away his wrath from destroying them.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Then they despised the pleasant land, having no faith in his promise.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> They grumbled in their tents, and did not obey the voice of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Therefore he raised his hand and swore to them that he would make them fall in the wilderness,</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> and would disperse their descendants among the nations, scattering them over the lands. </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Then they attached themselves to the Baal of Peor, and ate sacrifices offered to the dead;</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> they provoked the LORD to anger with their deeds, and a plague broke out among them.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Then Phinehas stood up and interceded, and the plague was stopped.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> And that has been reckoned to him as righteousness from generation to generation forever.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> They angered the LORD at the waters of Meribah, and it went ill with Moses on their account;</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> for they made his spirit bitter, and he spoke words that were rash.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> They did not destroy the peoples, as the LORD commanded them,</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> but they mingled with the nations and learned to do as they did.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> They served their idols, which became a snare to them.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> They sacrificed their sons and their daughters to the demons;</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> they poured out innocent blood, the blood of their sons and daughters, whom they sacrificed to the idols of Canaan; and the land was polluted with blood.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> Thus they became unclean by their acts, and prostituted themselves in their doings.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> Then the anger of the LORD was kindled against his people, and he abhorred his heritage;</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> he gave them into the hand of the nations, so that those who hated them ruled over them.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> Their enemies oppressed them, and they were brought into subjection under their power.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> Many times he delivered them, but they were rebellious in their purposes, and were brought low through their iniquity.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> Nevertheless he regarded their distress when he heard their cry.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> For their sake he remembered his covenant, and showed compassion according to the abundance of his steadfast love.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> He caused them to be pitied by all who held them captive.</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> Save us, O LORD our God, and gather us from among the nations, that we may give thanks to your holy name and glory in your praise.</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> Blessed be the LORD, the God of Israel, from everlasting to everlasting. And let all the people say, \"Amen.\" Praise the LORD!</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"107\">\r\n\t\t\t<VERS vnumber=\"1\"> O give thanks to the LORD, for he is good; for his steadfast love endures forever.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Let the redeemed of the LORD say so, those he redeemed from trouble</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> and gathered in from the lands, from the east and from the west, from the north and from the south. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Some wandered in desert wastes, finding no way to an inhabited town;</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> hungry and thirsty, their soul fainted within them.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then they cried to the LORD in their trouble, and he delivered them from their distress;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> he led them by a straight way, until they reached an inhabited town.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Let them thank the LORD for his steadfast love, for his wonderful works to humankind.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> For he satisfies the thirsty, and the hungry he fills with good things.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Some sat in darkness and in gloom, prisoners in misery and in irons,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> for they had rebelled against the words of God, and spurned the counsel of the Most High.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Their hearts were bowed down with hard labor; they fell down, with no one to help.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then they cried to the LORD in their trouble, and he saved them from their distress;</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> he brought them out of darkness and gloom, and broke their bonds asunder.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Let them thank the LORD for his steadfast love, for his wonderful works to humankind.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> For he shatters the doors of bronze, and cuts in two the bars of iron.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Some were sick through their sinful ways, and because of their iniquities endured affliction; </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> they loathed any kind of food, and they drew near to the gates of death.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Then they cried to the LORD in their trouble, and he saved them from their distress;</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> he sent out his word and healed them, and delivered them from destruction.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Let them thank the LORD for his steadfast love, for his wonderful works to humankind.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> And let them offer thanksgiving sacrifices, and tell of his deeds with songs of joy.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Some went down to the sea in ships, doing business on the mighty waters;</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> they saw the deeds of the LORD, his wondrous works in the deep.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> For he commanded and raised the stormy wind, which lifted up the waves of the sea.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> They mounted up to heaven, they went down to the depths; their courage melted away in their calamity;</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> they reeled and staggered like drunkards, and were at their wits' end.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Then they cried to the LORD in their trouble, and he brought them out from their distress;</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> he made the storm be still, and the waves of the sea were hushed.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Then they were glad because they had quiet, and he brought them to their desired haven.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Let them thank the LORD for his steadfast love, for his wonderful works to humankind.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Let them extol him in the congregation of the people, and praise him in the assembly of the elders.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> He turns rivers into a desert, springs of water into thirsty ground,</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> a fruitful land into a salty waste, because of the wickedness of its inhabitants.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> He turns a desert into pools of water, a parched land into springs of water.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> And there he lets the hungry live, and they establish a town to live in;</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> they sow fields, and plant vineyards, and get a fruitful yield.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> By his blessing they multiply greatly, and he does not let their cattle decrease.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> When they are diminished and brought low through oppression, trouble, and sorrow,</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> he pours contempt on princes and makes them wander in trackless wastes;</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> but he raises up the needy out of distress, and makes their families like flocks.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> The upright see it and are glad; and all wickedness stops its mouth.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> Let those who are wise give heed to these things, and consider the steadfast love of the LORD.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"108\">\r\n\t\t\t<VERS vnumber=\"1\"> [A Song. A Psalm of David] My heart is steadfast, O God, my heart is steadfast; I will sing and make melody. Awake, my soul! </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Awake, O harp and lyre! I will awake the dawn.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> I will give thanks to you, O LORD, among the peoples, and I will sing praises to you among the nations.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For your steadfast love is higher than the heavens, and your faithfulness reaches to the clouds.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Be exalted, O God, above the heavens, and let your glory be over all the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Give victory with your right hand, and answer me, so that those whom you love may be rescued.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> God has promised in his sanctuary: \"With exultation I will divide up Shechem, and portion out the Vale of Succoth. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Gilead is mine; Manasseh is mine; Ephraim is my helmet; Judah is my scepter.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Moab is my washbasin; on Edom I hurl my shoe; over Philistia I shout in triumph.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Who will bring me to the fortified city? Who will lead me to Edom?</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Have you not rejected us, O God? You do not go out, O God, with our armies.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> O grant us help against the foe, for human help is worthless.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> With God we shall do valiantly; it is he who will tread down our foes.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"109\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader. Of David. A Psalm.> Do not be silent, O God of my praise.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> For wicked and deceitful mouths are opened against me, speaking against me with lying tongues.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> They beset me with words of hate, and attack me without cause.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> In return for my love they accuse me, even while I make prayer for them. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> So they reward me evil for good, and hatred for my love.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> They say, \"Appoint a wicked man against him; let an accuser stand on his right. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> When he is tried, let him be found guilty; let his prayer be counted as sin.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> May his days be few; may another seize his position.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> May his children be orphans, and his wife a widow.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> May his children wander about and beg; may they be driven out of the ruins they inhabit. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> May the creditor seize all that he has; may strangers plunder the fruits of his toil.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> May there be no one to do him a kindness, nor anyone to pity his orphaned children.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> May his posterity be cut off; may his name be blotted out in the second generation.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> May the iniquity of his father be remembered before the LORD, and do not let the sin of his mother be blotted out. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Let them be before the LORD continually, and may his memory be cut off from the earth. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> For he did not remember to show kindness, but pursued the poor and needy and the brokenhearted to their death.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> He loved to curse; let curses come on him. He did not like blessing; may it be far from him.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> He clothed himself with cursing as his coat, may it soak into his body like water, like oil into his bones.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> May it be like a garment that he wraps around himself, like a belt that he wears every day.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> May that be the reward of my accusers from the LORD, of those who speak evil against my life.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> But you, O LORD my Lord, act on my behalf for your name's sake; because your steadfast love is good, deliver me.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> For I am poor and needy, and my heart is pierced within me.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> I am gone like a shadow at evening; I am shaken off like a locust.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> My knees are weak through fasting; my body has become gaunt.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> I am an object of scorn to my accusers; when they see me, they shake their heads.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Help me, O LORD my God! Save me according to your steadfast love.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Let them know that this is your hand; you, O LORD, have done it.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Let them curse, but you will bless. Let my assailants be put to shame; may your servant be glad. </VERS>\r\n\t\t\t<VERS vnumber=\"29\"> May my accusers be clothed with dishonor; may they be wrapped in their own shame as in a mantle.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> With my mouth I will give great thanks to the LORD; I will praise him in the midst of the throng.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> For he stands at the right hand of the needy, to save them from those who would condemn them to death.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"110\">\r\n\t\t\t<VERS vnumber=\"1\"> [Of David. A Psalm.> The LORD says to my lord, \"Sit at my right hand until I make your enemies your footstool.\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The LORD sends out from Zion your mighty scepter. Rule in the midst of your foes.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Your people will offer themselves willingly on the day you lead your forces on the holy mountains. From the womb of the morning, like dew, your youth will come to you. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The LORD has sworn and will not change his mind, \"You are a priest forever according to the order of Melchizedek.\" </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The Lord is at your right hand; he will shatter kings on the day of his wrath.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> He will execute judgment among the nations, filling them with corpses; he will shatter heads over the wide earth.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> He will drink from the stream by the path; therefore he will lift up his head.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"111\">\r\n\t\t\t<VERS vnumber=\"1\"> Praise the LORD! I will give thanks to the LORD with my whole heart, in the company of the upright, in the congregation.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Great are the works of the LORD, studied by all who delight in them.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Full of honor and majesty is his work, and his righteousness endures forever.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> He has gained renown by his wonderful deeds; the LORD is gracious and merciful.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> He provides food for those who fear him; he is ever mindful of his covenant.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> He has shown his people the power of his works, in giving them the heritage of the nations.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The works of his hands are faithful and just; all his precepts are trustworthy.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> They are established forever and ever, to be performed with faithfulness and uprightness.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> He sent redemption to his people; he has commanded his covenant forever. Holy and awesome is his name.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The fear of the LORD is the beginning of wisdom; all those who practice it have a good understanding. His praise endures forever. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"112\">\r\n\t\t\t<VERS vnumber=\"1\"> Praise the LORD! Happy are those who fear the LORD, who greatly delight in his commandments.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Their descendants will be mighty in the land; the generation of the upright will be blessed.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Wealth and riches are in their houses, and their righteousness endures forever.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> They rise in the darkness as a light for the upright; they are gracious, merciful, and righteous.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> It is well with those who deal generously and lend, who conduct their affairs with justice.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For the righteous will never be moved; they will be remembered forever.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> They are not afraid of evil tidings; their hearts are firm, secure in the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Their hearts are steady, they will not be afraid; in the end they will look in triumph on their foes.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> They have distributed freely, they have given to the poor; their righteousness endures forever; their horn is exalted in honor.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The wicked see it and are angry; they gnash their teeth and melt away; the desire of the wicked comes to nothing.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"113\">\r\n\t\t\t<VERS vnumber=\"1\"> Praise the LORD! Praise, O servants of the LORD; praise the name of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Blessed be the name of the LORD from this time on and forevermore.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> From the rising of the sun to its setting the name of the LORD is to be praised.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The LORD is high above all nations, and his glory above the heavens.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Who is like the LORD our God, who is seated on high,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> who looks far down on the heavens and the earth?</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> He raises the poor from the dust, and lifts the needy from the ash heap,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> to make them sit with princes, with the princes of his people.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> He gives the barren woman a home, making her the joyous mother of children. Praise the LORD!</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"114\">\r\n\t\t\t<VERS vnumber=\"1\"> When Israel went out from Egypt, the house of Jacob from a people of strange language,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Judah became God's sanctuary, Israel his dominion. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The sea looked and fled; Jordan turned back.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The mountains skipped like rams, the hills like lambs.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Why is it, O sea, that you flee? O Jordan, that you turn back?</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> O mountains, that you skip like rams? O hills, like lambs?</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Tremble, O earth, at the presence of the LORD, at the presence of the God of Jacob,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> who turns the rock into a pool of water, the flint into a spring of water.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"115\">\r\n\t\t\t<VERS vnumber=\"1\"> Not to us, O LORD, not to us, but to your name give glory, for the sake of your steadfast love and your faithfulness.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Why should the nations say, \"Where is their God?\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Our God is in the heavens; he does whatever he pleases.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Their idols are silver and gold, the work of human hands.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> They have mouths, but do not speak; eyes, but do not see.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> They have ears, but do not hear; noses, but do not smell.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> They have hands, but do not feel; feet, but do not walk; they make no sound in their throats.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Those who make them are like them; so are all who trust in them.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> O Israel, trust in the LORD! He is their help and their shield.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> O house of Aaron, trust in the LORD! He is their help and their shield.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> You who fear the LORD, trust in the LORD! He is their help and their shield.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The LORD has been mindful of us; he will bless us; he will bless the house of Israel; he will bless the house of Aaron;</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> he will bless those who fear the LORD, both small and great.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> May the LORD give you increase, both you and your children.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> May you be blessed by the LORD, who made heaven and earth.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The heavens are the LORD's heavens, but the earth he has given to human beings.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The dead do not praise the LORD, nor do any that go down into silence.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> But we will bless the LORD from this time on and forevermore. Praise the LORD!</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"116\">\r\n\t\t\t<VERS vnumber=\"1\"> I love the LORD, because he has heard my voice and my supplications.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Because he inclined his ear to me, therefore I will call on him as long as I live.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The snares of death encompassed me; the pangs of Sheol laid hold on me; I suffered distress and anguish.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then I called on the name of the LORD: \"O LORD, I pray, save my life!\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Gracious is the LORD, and righteous; our God is merciful.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The LORD protects the simple; when I was brought low, he saved me.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Return, O my soul, to your rest, for the LORD has dealt bountifully with you.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> For you have delivered my soul from death, my eyes from tears, my feet from stumbling.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> I walk before the LORD in the land of the living.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> I kept my faith, even when I said, \"I am greatly afflicted\";</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> I said in my consternation, \"Everyone is a liar.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> What shall I return to the LORD for all his bounty to me?</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> I will lift up the cup of salvation and call on the name of the LORD,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> I will pay my vows to the LORD in the presence of all his people.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Precious in the sight of the LORD is the death of his faithful ones.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> O LORD, I am your servant; I am your servant, the child of your serving girl. You have loosed my bonds.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> I will offer to you a thanksgiving sacrifice and call on the name of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> I will pay my vows to the LORD in the presence of all his people,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> in the courts of the house of the LORD, in your midst, O Jerusalem. Praise the LORD!</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"117\">\r\n\t\t\t<VERS vnumber=\"1\"> Praise the LORD, all you nations! Extol him, all you peoples!</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> For great is his steadfast love toward us, and the faithfulness of the LORD endures forever. Praise the LORD!</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"118\">\r\n\t\t\t<VERS vnumber=\"1\"> O give thanks to the LORD, for he is good; his steadfast love endures forever!</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Let Israel say, \"His steadfast love endures forever.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Let the house of Aaron say, \"His steadfast love endures forever.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Let those who fear the LORD say, \"His steadfast love endures forever.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Out of my distress I called on the LORD; the LORD answered me and set me in a broad place.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> With the LORD on my side I do not fear. What can mortals do to me?</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The LORD is on my side to help me; I shall look in triumph on those who hate me.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> It is better to take refuge in the LORD than to put confidence in mortals.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> It is better to take refuge in the LORD than to put confidence in princes.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> All nations surrounded me; in the name of the LORD I cut them off!</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> They surrounded me, surrounded me on every side; in the name of the LORD I cut them off!</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> They surrounded me like bees; they blazed like a fire of thorns; in the name of the LORD I cut them off! </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> I was pushed hard, so that I was falling, but the LORD helped me. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The LORD is my strength and my might; he has become my salvation.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> There are glad songs of victory in the tents of the righteous: \"The right hand of the LORD does valiantly;</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> the right hand of the LORD is exalted; the right hand of the LORD does valiantly.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> I shall not die, but I shall live, and recount the deeds of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The LORD has punished me severely, but he did not give me over to death.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Open to me the gates of righteousness, that I may enter through them and give thanks to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> This is the gate of the LORD; the righteous shall enter through it.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> I thank you that you have answered me and have become my salvation.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The stone that the builders rejected has become the chief cornerstone.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> This is the LORD's doing; it is marvelous in our eyes.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> This is the day that the LORD has made; let us rejoice and be glad in it. </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Save us, we beseech you, O LORD! O LORD, we beseech you, give us success!</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Blessed is the one who comes in the name of the LORD. We bless you from the house of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> The LORD is God, and he has given us light. Bind the festal procession with branches, up to the horns of the altar. </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> You are my God, and I will give thanks to you; you are my God, I will extol you.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> O give thanks to the LORD, for he is good, for his steadfast love endures forever.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"119\">\r\n\t\t\t<VERS vnumber=\"1\"> Happy are those whose way is blameless, who walk in the law of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Happy are those who keep his decrees, who seek him with their whole heart,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> who also do no wrong, but walk in his ways.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> You have commanded your precepts to be kept diligently.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> O that my ways may be steadfast in keeping your statutes!</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then I shall not be put to shame, having my eyes fixed on all your commandments.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> I will praise you with an upright heart, when I learn your righteous ordinances.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> I will observe your statutes; do not utterly forsake me.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> How can young people keep their way pure? By guarding it according to your word.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> With my whole heart I seek you; do not let me stray from your commandments.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> I treasure your word in my heart, so that I may not sin against you.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Blessed are you, O LORD; teach me your statutes.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> With my lips I declare all the ordinances of your mouth.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> I delight in the way of your decrees as much as in all riches.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> I will meditate on your precepts, and fix my eyes on your ways.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> I will delight in your statutes; I will not forget your word.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Deal bountifully with your servant, so that I may live and observe your word.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Open my eyes, so that I may behold wondrous things out of your law.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> I live as an alien in the land; do not hide your commandments from me.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> My soul is consumed with longing for your ordinances at all times.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> You rebuke the insolent, accursed ones, who wander from your commandments;</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> take away from me their scorn and contempt, for I have kept your decrees.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Even though princes sit plotting against me, your servant will meditate on your statutes.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Your decrees are my delight, they are my counselors.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> My soul clings to the dust; revive me according to your word.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> When I told of my ways, you answered me; teach me your statutes.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Make me understand the way of your precepts, and I will meditate on your wondrous works.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> My soul melts away for sorrow; strengthen me according to your word.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Put false ways far from me; and graciously teach me your law.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> I have chosen the way of faithfulness; I set your ordinances before me.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> I cling to your decrees, O LORD; let me not be put to shame.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> I run the way of your commandments, for you enlarge my understanding.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Teach me, O LORD, the way of your statutes, and I will observe it to the end.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Give me understanding, that I may keep your law and observe it with my whole heart.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Lead me in the path of your commandments, for I delight in it.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Turn my heart to your decrees, and not to selfish gain.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Turn my eyes from looking at vanities; give me life in your ways.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Confirm to your servant your promise, which is for those who fear you.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> Turn away the disgrace that I dread, for your ordinances are good.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> See, I have longed for your precepts; in your righteousness give me life.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> Let your steadfast love come to me, O LORD, your salvation according to your promise.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> Then I shall have an answer for those who taunt me, for I trust in your word.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> Do not take the word of truth utterly out of my mouth, for my hope is in your ordinances.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> I will keep your law continually, forever and ever.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> I shall walk at liberty, for I have sought your precepts.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> I will also speak of your decrees before kings, and shall not be put to shame;</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> I find my delight in your commandments, because I love them.</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> I revere your commandments, which I love, and I will meditate on your statutes.</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> Remember your word to your servant, in which you have made me hope.</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> This is my comfort in my distress, that your promise gives me life.</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> The arrogant utterly deride me, but I do not turn away from your law.</VERS>\r\n\t\t\t<VERS vnumber=\"52\"> When I think of your ordinances from of old, I take comfort, O LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"53\"> Hot indignation seizes me because of the wicked, those who forsake your law.</VERS>\r\n\t\t\t<VERS vnumber=\"54\"> Your statutes have been my songs wherever I make my home.</VERS>\r\n\t\t\t<VERS vnumber=\"55\"> I remember your name in the night, O LORD, and keep your law.</VERS>\r\n\t\t\t<VERS vnumber=\"56\"> This blessing has fallen to me, for I have kept your precepts.</VERS>\r\n\t\t\t<VERS vnumber=\"57\"> The LORD is my portion; I promise to keep your words.</VERS>\r\n\t\t\t<VERS vnumber=\"58\"> I implore your favor with all my heart; be gracious to me according to your promise.</VERS>\r\n\t\t\t<VERS vnumber=\"59\"> When I think of your ways, I turn my feet to your decrees;</VERS>\r\n\t\t\t<VERS vnumber=\"60\"> I hurry and do not delay to keep your commandments.</VERS>\r\n\t\t\t<VERS vnumber=\"61\"> Though the cords of the wicked ensnare me, I do not forget your law.</VERS>\r\n\t\t\t<VERS vnumber=\"62\"> At midnight I rise to praise you, because of your righteous ordinances.</VERS>\r\n\t\t\t<VERS vnumber=\"63\"> I am a companion of all who fear you, of those who keep your precepts.</VERS>\r\n\t\t\t<VERS vnumber=\"64\"> The earth, O LORD, is full of your steadfast love; teach me your statutes.</VERS>\r\n\t\t\t<VERS vnumber=\"65\"> You have dealt well with your servant, O LORD, according to your word.</VERS>\r\n\t\t\t<VERS vnumber=\"66\"> Teach me good judgment and knowledge, for I believe in your commandments.</VERS>\r\n\t\t\t<VERS vnumber=\"67\"> Before I was humbled I went astray, but now I keep your word.</VERS>\r\n\t\t\t<VERS vnumber=\"68\"> You are good and do good; teach me your statutes.</VERS>\r\n\t\t\t<VERS vnumber=\"69\"> The arrogant smear me with lies, but with my whole heart I keep your precepts.</VERS>\r\n\t\t\t<VERS vnumber=\"70\"> Their hearts are fat and gross, but I delight in your law.</VERS>\r\n\t\t\t<VERS vnumber=\"71\"> It is good for me that I was humbled, so that I might learn your statutes.</VERS>\r\n\t\t\t<VERS vnumber=\"72\"> The law of your mouth is better to me than thousands of gold and silver pieces.</VERS>\r\n\t\t\t<VERS vnumber=\"73\"> Your hands have made and fashioned me; give me understanding that I may learn your commandments.</VERS>\r\n\t\t\t<VERS vnumber=\"74\"> Those who fear you shall see me and rejoice, because I have hoped in your word.</VERS>\r\n\t\t\t<VERS vnumber=\"75\"> I know, O LORD, that your judgments are right, and that in faithfulness you have humbled me.</VERS>\r\n\t\t\t<VERS vnumber=\"76\"> Let your steadfast love become my comfort according to your promise to your servant.</VERS>\r\n\t\t\t<VERS vnumber=\"77\"> Let your mercy come to me, that I may live; for your law is my delight.</VERS>\r\n\t\t\t<VERS vnumber=\"78\"> Let the arrogant be put to shame, because they have subverted me with guile; as for me, I will meditate on your precepts.</VERS>\r\n\t\t\t<VERS vnumber=\"79\"> Let those who fear you turn to me, so that they may know your decrees.</VERS>\r\n\t\t\t<VERS vnumber=\"80\"> May my heart be blameless in your statutes, so that I may not be put to shame.</VERS>\r\n\t\t\t<VERS vnumber=\"81\"> My soul languishes for your salvation; I hope in your word.</VERS>\r\n\t\t\t<VERS vnumber=\"82\"> My eyes fail with watching for your promise; I ask, \"When will you comfort me?\"</VERS>\r\n\t\t\t<VERS vnumber=\"83\"> For I have become like a wineskin in the smoke, yet I have not forgotten your statutes.</VERS>\r\n\t\t\t<VERS vnumber=\"84\"> How long must your servant endure? When will you judge those who persecute me?</VERS>\r\n\t\t\t<VERS vnumber=\"85\"> The arrogant have dug pitfalls for me; they flout your law.</VERS>\r\n\t\t\t<VERS vnumber=\"86\"> All your commandments are enduring; I am persecuted without cause; help me!</VERS>\r\n\t\t\t<VERS vnumber=\"87\"> They have almost made an end of me on earth; but I have not forsaken your precepts.</VERS>\r\n\t\t\t<VERS vnumber=\"88\"> In your steadfast love spare my life, so that I may keep the decrees of your mouth.</VERS>\r\n\t\t\t<VERS vnumber=\"89\"> The LORD exists forever; your word is firmly fixed in heaven.</VERS>\r\n\t\t\t<VERS vnumber=\"90\"> Your faithfulness endures to all generations; you have established the earth, and it stands fast.</VERS>\r\n\t\t\t<VERS vnumber=\"91\"> By your appointment they stand today, for all things are your servants.</VERS>\r\n\t\t\t<VERS vnumber=\"92\"> If your law had not been my delight, I would have perished in my misery.</VERS>\r\n\t\t\t<VERS vnumber=\"93\"> I will never forget your precepts, for by them you have given me life.</VERS>\r\n\t\t\t<VERS vnumber=\"94\"> I am yours; save me, for I have sought your precepts.</VERS>\r\n\t\t\t<VERS vnumber=\"95\"> The wicked lie in wait to destroy me, but I consider your decrees.</VERS>\r\n\t\t\t<VERS vnumber=\"96\"> I have seen a limit to all perfection, but your commandment is exceedingly broad.</VERS>\r\n\t\t\t<VERS vnumber=\"97\"> Oh, how I love your law! It is my meditation all day long.</VERS>\r\n\t\t\t<VERS vnumber=\"98\"> Your commandment makes me wiser than my enemies, for it is always with me.</VERS>\r\n\t\t\t<VERS vnumber=\"99\"> I have more understanding than all my teachers, for your decrees are my meditation.</VERS>\r\n\t\t\t<VERS vnumber=\"100\"> I understand more than the aged, for I keep your precepts.</VERS>\r\n\t\t\t<VERS vnumber=\"101\"> I hold back my feet from every evil way, in order to keep your word.</VERS>\r\n\t\t\t<VERS vnumber=\"102\"> I do not turn away from your ordinances, for you have taught me.</VERS>\r\n\t\t\t<VERS vnumber=\"103\"> How sweet are your words to my taste, sweeter than honey to my mouth!</VERS>\r\n\t\t\t<VERS vnumber=\"104\"> Through your precepts I get understanding; therefore I hate every false way.</VERS>\r\n\t\t\t<VERS vnumber=\"105\"> Your word is a lamp to my feet and a light to my path.</VERS>\r\n\t\t\t<VERS vnumber=\"106\"> I have sworn an oath and confirmed it, to observe your righteous ordinances.</VERS>\r\n\t\t\t<VERS vnumber=\"107\"> I am severely afflicted; give me life, O LORD, according to your word.</VERS>\r\n\t\t\t<VERS vnumber=\"108\"> Accept my offerings of praise, O LORD, and teach me your ordinances.</VERS>\r\n\t\t\t<VERS vnumber=\"109\"> I hold my life in my hand continually, but I do not forget your law.</VERS>\r\n\t\t\t<VERS vnumber=\"110\"> The wicked have laid a snare for me, but I do not stray from your precepts.</VERS>\r\n\t\t\t<VERS vnumber=\"111\"> Your decrees are my heritage forever; they are the joy of my heart.</VERS>\r\n\t\t\t<VERS vnumber=\"112\"> I incline my heart to perform your statutes forever, to the end.</VERS>\r\n\t\t\t<VERS vnumber=\"113\"> I hate the double-minded, but I love your law.</VERS>\r\n\t\t\t<VERS vnumber=\"114\"> You are my hiding place and my shield; I hope in your word.</VERS>\r\n\t\t\t<VERS vnumber=\"115\"> Go away from me, you evildoers, that I may keep the commandments of my God.</VERS>\r\n\t\t\t<VERS vnumber=\"116\"> Uphold me according to your promise, that I may live, and let me not be put to shame in my hope.</VERS>\r\n\t\t\t<VERS vnumber=\"117\"> Hold me up, that I may be safe and have regard for your statutes continually.</VERS>\r\n\t\t\t<VERS vnumber=\"118\"> You spurn all who go astray from your statutes; for their cunning is in vain.</VERS>\r\n\t\t\t<VERS vnumber=\"119\"> All the wicked of the earth you count as dross; therefore I love your decrees.</VERS>\r\n\t\t\t<VERS vnumber=\"120\"> My flesh trembles for fear of you, and I am afraid of your judgments.</VERS>\r\n\t\t\t<VERS vnumber=\"121\"> I have done what is just and right; do not leave me to my oppressors.</VERS>\r\n\t\t\t<VERS vnumber=\"122\"> Guarantee your servant's well-being; do not let the godless oppress me.</VERS>\r\n\t\t\t<VERS vnumber=\"123\"> My eyes fail from watching for your salvation, and for the fulfillment of your righteous promise.</VERS>\r\n\t\t\t<VERS vnumber=\"124\"> Deal with your servant according to your steadfast love, and teach me your statutes.</VERS>\r\n\t\t\t<VERS vnumber=\"125\"> I am your servant; give me understanding, so that I may know your decrees.</VERS>\r\n\t\t\t<VERS vnumber=\"126\"> It is time for the LORD to act, for your law has been broken.</VERS>\r\n\t\t\t<VERS vnumber=\"127\"> Truly I love your commandments more than gold, more than fine gold.</VERS>\r\n\t\t\t<VERS vnumber=\"128\"> Truly I direct my steps by all your precepts; I hate every false way. </VERS>\r\n\t\t\t<VERS vnumber=\"129\"> Your decrees are wonderful; therefore my soul keeps them.</VERS>\r\n\t\t\t<VERS vnumber=\"130\"> The unfolding of your words gives light; it imparts understanding to the simple.</VERS>\r\n\t\t\t<VERS vnumber=\"131\"> With open mouth I pant, because I long for your commandments.</VERS>\r\n\t\t\t<VERS vnumber=\"132\"> Turn to me and be gracious to me, as is your custom toward those who love your name.</VERS>\r\n\t\t\t<VERS vnumber=\"133\"> Keep my steps steady according to your promise, and never let iniquity have dominion over me.</VERS>\r\n\t\t\t<VERS vnumber=\"134\"> Redeem me from human oppression, that I may keep your precepts.</VERS>\r\n\t\t\t<VERS vnumber=\"135\"> Make your face shine upon your servant, and teach me your statutes.</VERS>\r\n\t\t\t<VERS vnumber=\"136\"> My eyes shed streams of tears because your law is not kept.</VERS>\r\n\t\t\t<VERS vnumber=\"137\"> You are righteous, O LORD, and your judgments are right.</VERS>\r\n\t\t\t<VERS vnumber=\"138\"> You have appointed your decrees in righteousness and in all faithfulness.</VERS>\r\n\t\t\t<VERS vnumber=\"139\"> My zeal consumes me because my foes forget your words.</VERS>\r\n\t\t\t<VERS vnumber=\"140\"> Your promise is well tried, and your servant loves it.</VERS>\r\n\t\t\t<VERS vnumber=\"141\"> I am small and despised, yet I do not forget your precepts.</VERS>\r\n\t\t\t<VERS vnumber=\"142\"> Your righteousness is an everlasting righteousness, and your law is the truth.</VERS>\r\n\t\t\t<VERS vnumber=\"143\"> Trouble and anguish have come upon me, but your commandments are my delight.</VERS>\r\n\t\t\t<VERS vnumber=\"144\"> Your decrees are righteous forever; give me understanding that I may live.</VERS>\r\n\t\t\t<VERS vnumber=\"145\"> With my whole heart I cry; answer me, O LORD. I will keep your statutes.</VERS>\r\n\t\t\t<VERS vnumber=\"146\"> I cry to you; save me, that I may observe your decrees.</VERS>\r\n\t\t\t<VERS vnumber=\"147\"> I rise before dawn and cry for help; I put my hope in your words.</VERS>\r\n\t\t\t<VERS vnumber=\"148\"> My eyes are awake before each watch of the night, that I may meditate on your promise.</VERS>\r\n\t\t\t<VERS vnumber=\"149\"> In your steadfast love hear my voice; O LORD, in your justice preserve my life.</VERS>\r\n\t\t\t<VERS vnumber=\"150\"> Those who persecute me with evil purpose draw near; they are far from your law.</VERS>\r\n\t\t\t<VERS vnumber=\"151\"> Yet you are near, O LORD, and all your commandments are true.</VERS>\r\n\t\t\t<VERS vnumber=\"152\"> Long ago I learned from your decrees that you have established them forever.</VERS>\r\n\t\t\t<VERS vnumber=\"153\"> Look on my misery and rescue me, for I do not forget your law.</VERS>\r\n\t\t\t<VERS vnumber=\"154\"> Plead my cause and redeem me; give me life according to your promise.</VERS>\r\n\t\t\t<VERS vnumber=\"155\"> Salvation is far from the wicked, for they do not seek your statutes.</VERS>\r\n\t\t\t<VERS vnumber=\"156\"> Great is your mercy, O LORD; give me life according to your justice.</VERS>\r\n\t\t\t<VERS vnumber=\"157\"> Many are my persecutors and my adversaries, yet I do not swerve from your decrees.</VERS>\r\n\t\t\t<VERS vnumber=\"158\"> I look at the faithless with disgust, because they do not keep your commands.</VERS>\r\n\t\t\t<VERS vnumber=\"159\"> Consider how I love your precepts; preserve my life according to your steadfast love.</VERS>\r\n\t\t\t<VERS vnumber=\"160\"> The sum of your word is truth; and every one of your righteous ordinances endures forever.</VERS>\r\n\t\t\t<VERS vnumber=\"161\"> Princes persecute me without cause, but my heart stands in awe of your words.</VERS>\r\n\t\t\t<VERS vnumber=\"162\"> I rejoice at your word like one who finds great spoil.</VERS>\r\n\t\t\t<VERS vnumber=\"163\"> I hate and abhor falsehood, but I love your law.</VERS>\r\n\t\t\t<VERS vnumber=\"164\"> Seven times a day I praise you for your righteous ordinances.</VERS>\r\n\t\t\t<VERS vnumber=\"165\"> Great peace have those who love your law; nothing can make them stumble.</VERS>\r\n\t\t\t<VERS vnumber=\"166\"> I hope for your salvation, O LORD, and I fulfill your commandments.</VERS>\r\n\t\t\t<VERS vnumber=\"167\"> My soul keeps your decrees; I love them exceedingly.</VERS>\r\n\t\t\t<VERS vnumber=\"168\"> I keep your precepts and decrees, for all my ways are before you.</VERS>\r\n\t\t\t<VERS vnumber=\"169\"> Let my cry come before you, O LORD; give me understanding according to your word.</VERS>\r\n\t\t\t<VERS vnumber=\"170\"> Let my supplication come before you; deliver me according to your promise.</VERS>\r\n\t\t\t<VERS vnumber=\"171\"> My lips will pour forth praise, because you teach me your statutes.</VERS>\r\n\t\t\t<VERS vnumber=\"172\"> My tongue will sing of your promise, for all your commandments are right.</VERS>\r\n\t\t\t<VERS vnumber=\"173\"> Let your hand be ready to help me, for I have chosen your precepts.</VERS>\r\n\t\t\t<VERS vnumber=\"174\"> I long for your salvation, O LORD, and your law is my delight.</VERS>\r\n\t\t\t<VERS vnumber=\"175\"> Let me live that I may praise you, and let your ordinances help me.</VERS>\r\n\t\t\t<VERS vnumber=\"176\"> I have gone astray like a lost sheep; seek out your servant, for I do not forget your commandments.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"120\">\r\n\t\t\t<VERS vnumber=\"1\"> [A Song of Ascents.> In my distress I cry to the LORD, that he may answer me:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"Deliver me, O LORD, from lying lips, from a deceitful tongue.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> What shall be given to you? And what more shall be done to you, you deceitful tongue?</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> A warrior's sharp arrows, with glowing coals of the broom tree!</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Woe is me, that I am an alien in Meshech, that I must live among the tents of Kedar.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Too long have I had my dwelling among those who hate peace.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> I am for peace; but when I speak, they are for war.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"121\">\r\n\t\t\t<VERS vnumber=\"1\"> [A Song of Ascents.> I lift up my eyes to the hills-- from where will my help come?</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> My help comes from the LORD, who made heaven and earth.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> He will not let your foot be moved; he who keeps you will not slumber.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> He who keeps Israel will neither slumber nor sleep.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The LORD is your keeper; the LORD is your shade at your right hand.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The sun shall not strike you by day, nor the moon by night.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The LORD will keep you from all evil; he will keep your life.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The LORD will keep your going out and your coming in from this time on and forevermore.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"122\">\r\n\t\t\t<VERS vnumber=\"1\"> [A Song of Ascents. Of David] I was glad when they said to me, \"Let us go to the house of the LORD!\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Our feet are standing within your gates, O Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Jerusalem-- built as a city that is bound firmly together.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> To it the tribes go up, the tribes of the LORD, as was decreed for Israel, to give thanks to the name of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> For there the thrones for judgment were set up, the thrones of the house of David.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Pray for the peace of Jerusalem: \"May they prosper who love you.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Peace be within your walls, and security within your towers.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> For the sake of my relatives and friends I will say, \"Peace be within you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> For the sake of the house of the LORD our God, I will seek your good.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"123\">\r\n\t\t\t<VERS vnumber=\"1\"> [A Song of Ascents.> To you I lift up my eyes, O you who are enthroned in the heavens!</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> As the eyes of servants look to the hand of their master, as the eyes of a maid to the hand of her mistress, so our eyes look to the LORD our God, until he has mercy upon us.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Have mercy upon us, O LORD, have mercy upon us, for we have had more than enough of contempt.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Our soul has had more than its fill of the scorn of those who are at ease, of the contempt of the proud.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"124\">\r\n\t\t\t<VERS vnumber=\"1\"> [A Song of Ascents. Of David] If it had not been the LORD who was on our side-- let Israel now say--</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> if it had not been the LORD who was on our side, when our enemies attacked us,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> then they would have swallowed us up alive, when their anger was kindled against us;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> then the flood would have swept us away, the torrent would have gone over us;</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> then over us would have gone the raging waters.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Blessed be the LORD, who has not given us as prey to their teeth.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> We have escaped like a bird from the snare of the fowlers; the snare is broken, and we have escaped.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Our help is in the name of the LORD, who made heaven and earth.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"125\">\r\n\t\t\t<VERS vnumber=\"1\"> [A Song of Ascents.> Those who trust in the LORD are like Mount Zion, which cannot be moved, but abides forever.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> As the mountains surround Jerusalem, so the LORD surrounds his people, from this time on and forevermore.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For the scepter of wickedness shall not rest on the land allotted to the righteous, so that the righteous might not stretch out their hands to do wrong.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Do good, O LORD, to those who are good, and to those who are upright in their hearts.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> But those who turn aside to their own crooked ways the LORD will lead away with evildoers. Peace be upon Israel!</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"126\">\r\n\t\t\t<VERS vnumber=\"1\"> [A Song of Ascents.> When the LORD restored the fortunes of Zion, we were like those who dream. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Then our mouth was filled with laughter, and our tongue with shouts of joy; then it was said among the nations, \"The LORD has done great things for them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The LORD has done great things for us, and we rejoiced.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Restore our fortunes, O LORD, like the watercourses in the Negeb.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> May those who sow in tears reap with shouts of joy.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Those who go out weeping, bearing the seed for sowing, shall come home with shouts of joy, carrying their sheaves.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"127\">\r\n\t\t\t<VERS vnumber=\"1\"> [A Song of Ascents. Of Solomon.> Unless the LORD builds the house, those who build it labor in vain. Unless the LORD guards the city, the guard keeps watch in vain.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> It is in vain that you rise up early and go late to rest, eating the bread of anxious toil; for he gives sleep to his beloved. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Sons are indeed a heritage from the LORD, the fruit of the womb a reward.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Like arrows in the hand of a warrior are the sons of one's youth.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Happy is the man who has his quiver full of them. He shall not be put to shame when he speaks with his enemies in the gate.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"128\">\r\n\t\t\t<VERS vnumber=\"1\"> [A Song of Ascents.> Happy is everyone who fears the LORD, who walks in his ways.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> You shall eat the fruit of the labor of your hands; you shall be happy, and it shall go well with you.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Your wife will be like a fruitful vine within your house; your children will be like olive shoots around your table.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Thus shall the man be blessed who fears the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The LORD bless you from Zion. May you see the prosperity of Jerusalem all the days of your life.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> May you see your children's children. Peace be upon Israel!</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"129\">\r\n\t\t\t<VERS vnumber=\"1\"> [A Song of Ascents.> \"Often have they attacked me from my youth\"-- let Israel now say--</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"often have they attacked me from my youth, yet they have not prevailed against me.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The plowers plowed on my back; they made their furrows long.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The LORD is righteous; he has cut the cords of the wicked.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> May all who hate Zion be put to shame and turned backward.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Let them be like the grass on the housetops that withers before it grows up,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> with which reapers do not fill their hands or binders of sheaves their arms,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> while those who pass by do not say, \"The blessing of the LORD be upon you! We bless you in the name of the LORD!\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"130\">\r\n\t\t\t<VERS vnumber=\"1\"> [A Song of Ascents.> Out of the depths I cry to you, O LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Lord, hear my voice! Let your ears be attentive to the voice of my supplications!</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> If you, O LORD, should mark iniquities, Lord, who could stand?</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But there is forgiveness with you, so that you may be revered.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> I wait for the LORD, my soul waits, and in his word I hope;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> my soul waits for the Lord more than those who watch for the morning, more than those who watch for the morning.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> O Israel, hope in the LORD! For with the LORD there is steadfast love, and with him is great power to redeem.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> It is he who will redeem Israel from all its iniquities.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"131\">\r\n\t\t\t<VERS vnumber=\"1\"> [A Song of Ascents. Of David] O LORD, my heart is not lifted up, my eyes are not raised too high; I do not occupy myself with things too great and too marvelous for me.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> But I have calmed and quieted my soul, like a weaned child with its mother; my soul is like the weaned child that is with me. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> O Israel, hope in the LORD from this time on and forevermore.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"132\">\r\n\t\t\t<VERS vnumber=\"1\"> [A Song of Ascents.> O LORD, remember in David's favor all the hardships he endured;</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> how he swore to the LORD and vowed to the Mighty One of Jacob,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> \"I will not enter my house or get into my bed;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> I will not give sleep to my eyes or slumber to my eyelids,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> until I find a place for the LORD, a dwelling place for the Mighty One of Jacob.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> We heard of it in Ephrathah; we found it in the fields of Jaar.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> \"Let us go to his dwelling place; let us worship at his footstool.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Rise up, O LORD, and go to your resting place, you and the ark of your might.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Let your priests be clothed with righteousness, and let your faithful shout for joy.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For your servant David's sake do not turn away the face of your anointed one.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The LORD swore to David a sure oath from which he will not turn back: \"One of the sons of your body I will set on your throne.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> If your sons keep my covenant and my decrees that I shall teach them, their sons also, forevermore, shall sit on your throne.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> For the LORD has chosen Zion; he has desired it for his habitation:</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> \"This is my resting place forever; here I will reside, for I have desired it.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> I will abundantly bless its provisions; I will satisfy its poor with bread.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Its priests I will clothe with salvation, and its faithful will shout for joy.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> There I will cause a horn to sprout up for David; I have prepared a lamp for my anointed one.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> His enemies I will clothe with disgrace, but on him, his crown will gleam.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"133\">\r\n\t\t\t<VERS vnumber=\"1\"> [A Song of Ascents.> How very good and pleasant it is when kindred live together in unity!</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> It is like the precious oil on the head, running down upon the beard, on the beard of Aaron, running down over the collar of his robes.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> It is like the dew of Hermon, which falls on the mountains of Zion. For there the LORD ordained his blessing, life forevermore.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"134\">\r\n\t\t\t<VERS vnumber=\"1\"> [A Song of Ascents.> Come, bless the LORD, all you servants of the LORD, who stand by night in the house of the LORD!</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Lift up your hands to the holy place, and bless the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> May the LORD, maker of heaven and earth, bless you from Zion.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"135\">\r\n\t\t\t<VERS vnumber=\"1\"> Praise the LORD! Praise the name of the LORD; give praise, O servants of the LORD,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> you that stand in the house of the LORD, in the courts of the house of our God.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Praise the LORD, for the LORD is good; sing to his name, for he is gracious.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For the LORD has chosen Jacob for himself, Israel as his own possession.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> For I know that the LORD is great; our Lord is above all gods.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Whatever the LORD pleases he does, in heaven and on earth, in the seas and all deeps.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> He it is who makes the clouds rise at the end of the earth; he makes lightnings for the rain and brings out the wind from his storehouses.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> He it was who struck down the firstborn of Egypt, both human beings and animals;</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> he sent signs and wonders into your midst, O Egypt, against Pharaoh and all his servants.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> He struck down many nations and killed mighty kings--</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Sihon, king of the Amorites, and Og, king of Bashan, and all the kingdoms of Canaan--</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> and gave their land as a heritage, a heritage to his people Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Your name, O LORD, endures forever, your renown, O LORD, throughout all ages.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> For the LORD will vindicate his people, and have compassion on his servants.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The idols of the nations are silver and gold, the work of human hands.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> They have mouths, but they do not speak; they have eyes, but they do not see;</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> they have ears, but they do not hear, and there is no breath in their mouths.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Those who make them and all who trust them shall become like them.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> O house of Israel, bless the LORD! O house of Aaron, bless the LORD!</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> O house of Levi, bless the LORD! You that fear the LORD, bless the LORD!</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Blessed be the LORD from Zion, he who resides in Jerusalem. Praise the LORD!</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"136\">\r\n\t\t\t<VERS vnumber=\"1\"> O give thanks to the LORD, for he is good, for his steadfast love endures forever.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> O give thanks to the God of gods, for his steadfast love endures forever.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> O give thanks to the Lord of lords, for his steadfast love endures forever;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> who alone does great wonders, for his steadfast love endures forever;</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> who by understanding made the heavens, for his steadfast love endures forever;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> who spread out the earth on the waters, for his steadfast love endures forever;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> who made the great lights, for his steadfast love endures forever;</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> the sun to rule over the day, for his steadfast love endures forever;</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> the moon and stars to rule over the night, for his steadfast love endures forever;</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> who struck Egypt through their firstborn, for his steadfast love endures forever;</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> and brought Israel out from among them, for his steadfast love endures forever;</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> with a strong hand and an outstretched arm, for his steadfast love endures forever;</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> who divided the Red Sea in two, for his steadfast love endures forever; </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> and made Israel pass through the midst of it, for his steadfast love endures forever;</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> but overthrew Pharaoh and his army in the Red Sea, for his steadfast love endures forever; </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> who led his people through the wilderness, for his steadfast love endures forever;</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> who struck down great kings, for his steadfast love endures forever;</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> and killed famous kings, for his steadfast love endures forever;</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Sihon, king of the Amorites, for his steadfast love endures forever;</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> and Og, king of Bashan, for his steadfast love endures forever;</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> and gave their land as a heritage, for his steadfast love endures forever;</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> a heritage to his servant Israel, for his steadfast love endures forever.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> It is he who remembered us in our low estate, for his steadfast love endures forever;</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> and rescued us from our foes, for his steadfast love endures forever;</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> who gives food to all flesh, for his steadfast love endures forever.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> O give thanks to the God of heaven, for his steadfast love endures forever.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"137\">\r\n\t\t\t<VERS vnumber=\"1\"> By the rivers of Babylon-- there we sat down and there we wept when we remembered Zion.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> On the willows there we hung up our harps. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For there our captors asked us for songs, and our tormentors asked for mirth, saying, \"Sing us one of the songs of Zion!\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> How could we sing the LORD's song in a foreign land?</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> If I forget you, O Jerusalem, let my right hand wither!</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Let my tongue cling to the roof of my mouth, if I do not remember you, if I do not set Jerusalem above my highest joy.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Remember, O LORD, against the Edomites the day of Jerusalem's fall, how they said, \"Tear it down! Tear it down! Down to its foundations!\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> O daughter Babylon, you devastator! Happy shall they be who pay you back what you have done to us! </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Happy shall they be who take your little ones and dash them against the rock!</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"138\">\r\n\t\t\t<VERS vnumber=\"1\"> [Of David] I give you thanks, O LORD, with my whole heart; before the gods I sing your praise;</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> I bow down toward your holy temple and give thanks to your name for your steadfast love and your faithfulness; for you have exalted your name and your word above everything. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> On the day I called, you answered me, you increased my strength of soul. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> All the kings of the earth shall praise you, O LORD, for they have heard the words of your mouth.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> They shall sing of the ways of the LORD, for great is the glory of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For though the LORD is high, he regards the lowly; but the haughty he perceives from far away.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Though I walk in the midst of trouble, you preserve me against the wrath of my enemies; you stretch out your hand, and your right hand delivers me.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The LORD will fulfill his purpose for me; your steadfast love, O LORD, endures forever. Do not forsake the work of your hands.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"139\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader. Of David. A Psalm.> O LORD, you have searched me and known me.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> You know when I sit down and when I rise up; you discern my thoughts from far away.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> You search out my path and my lying down, and are acquainted with all my ways.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Even before a word is on my tongue, O LORD, you know it completely.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> You hem me in, behind and before, and lay your hand upon me.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Such knowledge is too wonderful for me; it is so high that I cannot attain it.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Where can I go from your spirit? Or where can I flee from your presence?</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> If I ascend to heaven, you are there; if I make my bed in Sheol, you are there.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> If I take the wings of the morning and settle at the farthest limits of the sea,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> even there your hand shall lead me, and your right hand shall hold me fast.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> If I say, \"Surely the darkness shall cover me, and the light around me become night,\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> even the darkness is not dark to you; the night is as bright as the day, for darkness is as light to you.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> For it was you who formed my inward parts; you knit me together in my mother's womb.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> I praise you, for I am fearfully and wonderfully made. Wonderful are your works; that I know very well.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> My frame was not hidden from you, when I was being made in secret, intricately woven in the depths of the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Your eyes beheld my unformed substance. In your book were written all the days that were formed for me, when none of them as yet existed.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> How weighty to me are your thoughts, O God! How vast is the sum of them!</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> I try to count them-- they are more than the sand; I come to the end-- I am still with you.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> O that you would kill the wicked, O God, and that the bloodthirsty would depart from me--</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> those who speak of you maliciously, and lift themselves up against you for evil! </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Do I not hate those who hate you, O LORD? And do I not loathe those who rise up against you?</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> I hate them with perfect hatred; I count them my enemies.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Search me, O God, and know my heart; test me and know my thoughts.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> See if there is any wicked way in me, and lead me in the way everlasting. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"140\">\r\n\t\t\t<VERS vnumber=\"1\"> [To the leader. A Psalm of David] Deliver me, O LORD, from evildoers; protect me from those who are violent,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> who plan evil things in their minds and stir up wars continually.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> They make their tongue sharp as a snake's, and under their lips is the venom of vipers. Selah </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Guard me, O LORD, from the hands of the wicked; protect me from the violent who have planned my downfall.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The arrogant have hidden a trap for me, and with cords they have spread a net, along the road they have set snares for me. Selah </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> I say to the LORD, \"You are my God; give ear, O LORD, to the voice of my supplications.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> O LORD, my Lord, my strong deliverer, you have covered my head in the day of battle.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Do not grant, O LORD, the desires of the wicked; do not further their evil plot. Selah</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Those who surround me lift up their heads; let the mischief of their lips overwhelm them! </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Let burning coals fall on them! Let them be flung into pits, no more to rise!</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Do not let the slanderer be established in the land; let evil speedily hunt down the violent!</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> I know that the LORD maintains the cause of the needy, and executes justice for the poor.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Surely the righteous shall give thanks to your name; the upright shall live in your presence.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"141\">\r\n\t\t\t<VERS vnumber=\"1\"> [A Psalm of David] I call upon you, O LORD; come quickly to me; give ear to my voice when I call to you.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Let my prayer be counted as incense before you, and the lifting up of my hands as an evening sacrifice.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Set a guard over my mouth, O LORD; keep watch over the door of my lips.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Do not turn my heart to any evil, to busy myself with wicked deeds in company with those who work iniquity; do not let me eat of their delicacies.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Let the righteous strike me; let the faithful correct me. Never let the oil of the wicked anoint my head, for my prayer is continually against their wicked deeds. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> When they are given over to those who shall condemn them, then they shall learn that my words were pleasant.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Like a rock that one breaks apart and shatters on the land, so shall their bones be strewn at the mouth of Sheol. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But my eyes are turned toward you, O GOD, my Lord; in you I seek refuge; do not leave me defenseless.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Keep me from the trap that they have laid for me, and from the snares of evildoers.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Let the wicked fall into their own nets, while I alone escape.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"142\">\r\n\t\t\t<VERS vnumber=\"1\"> [A Maskil of David. When he was in the cave. A Prayer.> With my voice I cry to the LORD; with my voice I make supplication to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> I pour out my complaint before him; I tell my trouble before him.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> When my spirit is faint, you know my way. In the path where I walk they have hidden a trap for me.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Look on my right hand and see-- there is no one who takes notice of me; no refuge remains to me; no one cares for me.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> I cry to you, O LORD; I say, \"You are my refuge, my portion in the land of the living.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Give heed to my cry, for I am brought very low. Save me from my persecutors, for they are too strong for me.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Bring me out of prison, so that I may give thanks to your name. The righteous will surround me, for you will deal bountifully with me.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"143\">\r\n\t\t\t<VERS vnumber=\"1\"> [A Psalm of David] Hear my prayer, O LORD; give ear to my supplications in your faithfulness; answer me in your righteousness.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Do not enter into judgment with your servant, for no one living is righteous before you.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For the enemy has pursued me, crushing my life to the ground, making me sit in darkness like those long dead.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Therefore my spirit faints within me; my heart within me is appalled.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> I remember the days of old, I think about all your deeds, I meditate on the works of your hands.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> I stretch out my hands to you; my soul thirsts for you like a parched land. Selah </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Answer me quickly, O LORD; my spirit fails. Do not hide your face from me, or I shall be like those who go down to the Pit.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Let me hear of your steadfast love in the morning, for in you I put my trust. Teach me the way I should go, for to you I lift up my soul.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Save me, O LORD, from my enemies; I have fled to you for refuge. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Teach me to do your will, for you are my God. Let your good spirit lead me on a level path.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> For your name's sake, O LORD, preserve my life. In your righteousness bring me out of trouble.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> In your steadfast love cut off my enemies, and destroy all my adversaries, for I am your servant.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"144\">\r\n\t\t\t<VERS vnumber=\"1\"> [Of David] Blessed be the LORD, my rock, who trains my hands for war, and my fingers for battle;</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> my rock and my fortress, my stronghold and my deliverer, my shield, in whom I take refuge, who subdues the peoples under me. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> O LORD, what are human beings that you regard them, or mortals that you think of them?</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> They are like a breath; their days are like a passing shadow.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Bow your heavens, O LORD, and come down; touch the mountains so that they smoke.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Make the lightning flash and scatter them; send out your arrows and rout them.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Stretch out your hand from on high; set me free and rescue me from the mighty waters, from the hand of aliens,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> whose mouths speak lies, and whose right hands are false.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> I will sing a new song to you, O God; upon a ten-stringed harp I will play to you,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> the one who gives victory to kings, who rescues his servant David.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Rescue me from the cruel sword, and deliver me from the hand of aliens, whose mouths speak lies, and whose right hands are false.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> May our sons in their youth be like plants full grown, our daughters like corner pillars, cut for the building of a palace.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> May our barns be filled, with produce of every kind; may our sheep increase by thousands, by tens of thousands in our fields,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> and may our cattle be heavy with young. May there be no breach in the walls, no exile, and no cry of distress in our streets. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Happy are the people to whom such blessings fall; happy are the people whose God is the LORD.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"145\">\r\n\t\t\t<VERS vnumber=\"1\"> [Praise. Of David] I will extol you, my God and King, and bless your name forever and ever.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Every day I will bless you, and praise your name forever and ever.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Great is the LORD, and greatly to be praised; his greatness is unsearchable.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> One generation shall laud your works to another, and shall declare your mighty acts.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> On the glorious splendor of your majesty, and on your wondrous works, I will meditate.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The might of your awesome deeds shall be proclaimed, and I will declare your greatness.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> They shall celebrate the fame of your abundant goodness, and shall sing aloud of your righteousness.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The LORD is gracious and merciful, slow to anger and abounding in steadfast love.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The LORD is good to all, and his compassion is over all that he has made.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> All your works shall give thanks to you, O LORD, and all your faithful shall bless you.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> They shall speak of the glory of your kingdom, and tell of your power,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> to make known to all people your mighty deeds, and the glorious splendor of your kingdom. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Your kingdom is an everlasting kingdom, and your dominion endures throughout all generations. The LORD is faithful in all his words, and gracious in all his deeds. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The LORD upholds all who are falling, and raises up all who are bowed down.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The eyes of all look to you, and you give them their food in due season.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> You open your hand, satisfying the desire of every living thing.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The LORD is just in all his ways, and kind in all his doings.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The LORD is near to all who call on him, to all who call on him in truth.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> He fulfills the desire of all who fear him; he also hears their cry, and saves them.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The LORD watches over all who love him, but all the wicked he will destroy.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> My mouth will speak the praise of the LORD, and all flesh will bless his holy name forever and ever.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"146\">\r\n\t\t\t<VERS vnumber=\"1\"> Praise the LORD! Praise the LORD, O my soul!</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> I will praise the LORD as long as I live; I will sing praises to my God all my life long.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Do not put your trust in princes, in mortals, in whom there is no help.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> When their breath departs, they return to the earth; on that very day their plans perish.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Happy are those whose help is the God of Jacob, whose hope is in the LORD their God,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> who made heaven and earth, the sea, and all that is in them; who keeps faith forever;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> who executes justice for the oppressed; who gives food to the hungry. The LORD sets the prisoners free;</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> the LORD opens the eyes of the blind. The LORD lifts up those who are bowed down; the LORD loves the righteous.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The LORD watches over the strangers; he upholds the orphan and the widow, but the way of the wicked he brings to ruin.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The LORD will reign forever, your God, O Zion, for all generations. Praise the LORD!</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"147\">\r\n\t\t\t<VERS vnumber=\"1\"> Praise the LORD! How good it is to sing praises to our God; for he is gracious, and a song of praise is fitting.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The LORD builds up Jerusalem; he gathers the outcasts of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> He heals the brokenhearted, and binds up their wounds.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> He determines the number of the stars; he gives to all of them their names.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Great is our Lord, and abundant in power; his understanding is beyond measure.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The LORD lifts up the downtrodden; he casts the wicked to the ground.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Sing to the LORD with thanksgiving; make melody to our God on the lyre.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> He covers the heavens with clouds, prepares rain for the earth, makes grass grow on the hills.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> He gives to the animals their food, and to the young ravens when they cry.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> His delight is not in the strength of the horse, nor his pleasure in the speed of a runner;</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> but the LORD takes pleasure in those who fear him, in those who hope in his steadfast love.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Praise the LORD, O Jerusalem! Praise your God, O Zion!</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> For he strengthens the bars of your gates; he blesses your children within you.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> He grants peace within your borders; he fills you with the finest of wheat. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> He sends out his command to the earth; his word runs swiftly.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> He gives snow like wool; he scatters frost like ashes.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> He hurls down hail like crumbs-- who can stand before his cold?</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> He sends out his word, and melts them; he makes his wind blow, and the waters flow.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> He declares his word to Jacob, his statutes and ordinances to Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> He has not dealt thus with any other nation; they do not know his ordinances. Praise the LORD!</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"148\">\r\n\t\t\t<VERS vnumber=\"1\"> Praise the LORD! Praise the LORD from the heavens; praise him in the heights!</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Praise him, all his angels; praise him, all his host!</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Praise him, sun and moon; praise him, all you shining stars!</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Praise him, you highest heavens, and you waters above the heavens!</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Let them praise the name of the LORD, for he commanded and they were created.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> He established them forever and ever; he fixed their bounds, which cannot be passed. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Praise the LORD from the earth, you sea monsters and all deeps,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> fire and hail, snow and frost, stormy wind fulfilling his command!</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Mountains and all hills, fruit trees and all cedars!</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Wild animals and all cattle, creeping things and flying birds!</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Kings of the earth and all peoples, princes and all rulers of the earth!</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Young men and women alike, old and young together!</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Let them praise the name of the LORD, for his name alone is exalted; his glory is above earth and heaven.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> He has raised up a horn for his people, praise for all his faithful, for the people of Israel who are close to him. Praise the LORD!</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"149\">\r\n\t\t\t<VERS vnumber=\"1\"> Praise the LORD! Sing to the LORD a new song, his praise in the assembly of the faithful.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Let Israel be glad in its Maker; let the children of Zion rejoice in their King.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Let them praise his name with dancing, making melody to him with tambourine and lyre.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For the LORD takes pleasure in his people; he adorns the humble with victory.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Let the faithful exult in glory; let them sing for joy on their couches.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Let the high praises of God be in their throats and two-edged swords in their hands,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> to execute vengeance on the nations and punishment on the peoples,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> to bind their kings with fetters and their nobles with chains of iron,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> to execute on them the judgment decreed. This is glory for all his faithful ones. Praise the LORD!</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"150\">\r\n\t\t\t<VERS vnumber=\"1\"> Praise the LORD! Praise God in his sanctuary; praise him in his mighty firmament! </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Praise him for his mighty deeds; praise him according to his surpassing greatness!</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Praise him with trumpet sound; praise him with lute and harp!</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Praise him with tambourine and dance; praise him with strings and pipe!</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Praise him with clanging cymbals; praise him with loud clashing cymbals!</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Let everything that breathes praise the LORD! Praise the LORD!</VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"20\" bname=\"Proverbs\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> The proverbs of Solomon son of David, king of Israel:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> For learning about wisdom and instruction, for understanding words of insight,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> for gaining instruction in wise dealing, righteousness, justice, and equity;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> to teach shrewdness to the simple, knowledge and prudence to the young--</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Let the wise also hear and gain in learning, and the discerning acquire skill,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> to understand a proverb and a figure, the words of the wise and their riddles.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The fear of the LORD is the beginning of knowledge; fools despise wisdom and instruction.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Hear, my child, your father's instruction, and do not reject your mother's teaching;</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> for they are a fair garland for your head, and pendants for your neck.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> My child, if sinners entice you, do not consent.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> If they say, \"Come with us, let us lie in wait for blood; let us wantonly ambush the innocent;</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> like Sheol let us swallow them alive and whole, like those who go down to the Pit.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> We shall find all kinds of costly things; we shall fill our houses with booty.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Throw in your lot among us; we will all have one purse\"--</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> my child, do not walk in their way, keep your foot from their paths;</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> for their feet run to evil, and they hurry to shed blood.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> For in vain is the net baited while the bird is looking on;</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> yet they lie in wait-- to kill themselves! and set an ambush-- for their own lives!</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Such is the end of all who are greedy for gain; it takes away the life of its possessors. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Wisdom cries out in the street; in the squares she raises her voice.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> At the busiest corner she cries out; at the entrance of the city gates she speaks:</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> \"How long, O simple ones, will you love being simple? How long will scoffers delight in their scoffing and fools hate knowledge?</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Give heed to my reproof; I will pour out my thoughts to you; I will make my words known to you.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Because I have called and you refused, have stretched out my hand and no one heeded,</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> and because you have ignored all my counsel and would have none of my reproof,</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> I also will laugh at your calamity; I will mock when panic strikes you,</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> when panic strikes you like a storm, and your calamity comes like a whirlwind, when distress and anguish come upon you.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Then they will call upon me, but I will not answer; they will seek me diligently, but will not find me.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Because they hated knowledge and did not choose the fear of the LORD,</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> would have none of my counsel, and despised all my reproof,</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> therefore they shall eat the fruit of their way and be sated with their own devices.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> For waywardness kills the simple, and the complacency of fools destroys them;</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> but those who listen to me will be secure and will live at ease, without dread of disaster.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> My child, if you accept my words and treasure up my commandments within you,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> making your ear attentive to wisdom and inclining your heart to understanding;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> if you indeed cry out for insight, and raise your voice for understanding;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> if you seek it like silver, and search for it as for hidden treasures--</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> then you will understand the fear of the LORD and find the knowledge of God.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For the LORD gives wisdom; from his mouth come knowledge and understanding;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> he stores up sound wisdom for the upright; he is a shield to those who walk blamelessly,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> guarding the paths of justice and preserving the way of his faithful ones.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then you will understand righteousness and justice and equity, every good path;</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> for wisdom will come into your heart, and knowledge will be pleasant to your soul;</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> prudence will watch over you; and understanding will guard you.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> It will save you from the way of evil, from those who speak perversely,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> who forsake the paths of uprightness to walk in the ways of darkness,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> who rejoice in doing evil and delight in the perverseness of evil;</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> those whose paths are crooked, and who are devious in their ways.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> You will be saved from the loose woman, from the adulteress with her smooth words, </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> who forsakes the partner of her youth and forgets her sacred covenant;</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> for her way leads down to death, and her paths to the shades; </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> those who go to her never come back, nor do they regain the paths of life.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Therefore walk in the way of the good, and keep to the paths of the just.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> For the upright will abide in the land, and the innocent will remain in it;</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> but the wicked will be cut off from the land, and the treacherous will be rooted out of it.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> My child, do not forget my teaching, but let your heart keep my commandments;</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> for length of days and years of life and abundant welfare they will give you.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Do not let loyalty and faithfulness forsake you; bind them around your neck, write them on the tablet of your heart.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> So you will find favor and good repute in the sight of God and of people.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Trust in the LORD with all your heart, and do not rely on your own insight.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> In all your ways acknowledge him, and he will make straight your paths.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Do not be wise in your own eyes; fear the LORD, and turn away from evil.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> It will be a healing for your flesh and a refreshment for your body.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Honor the LORD with your substance and with the first fruits of all your produce;</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> then your barns will be filled with plenty, and your vats will be bursting with wine.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> My child, do not despise the LORD's discipline or be weary of his reproof,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> for the LORD reproves the one he loves, as a father the son in whom he delights.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Happy are those who find wisdom, and those who get understanding,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> for her income is better than silver, and her revenue better than gold.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> She is more precious than jewels, and nothing you desire can compare with her.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Long life is in her right hand; in her left hand are riches and honor.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Her ways are ways of pleasantness, and all her paths are peace.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> She is a tree of life to those who lay hold of her; those who hold her fast are called happy.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The LORD by wisdom founded the earth; by understanding he established the heavens;</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> by his knowledge the deeps broke open, and the clouds drop down the dew.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> My child, do not let these escape from your sight: keep sound wisdom and prudence,</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> and they will be life for your soul and adornment for your neck.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Then you will walk on your way securely and your foot will not stumble.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> If you sit down, you will not be afraid; when you lie down, your sleep will be sweet. </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Do not be afraid of sudden panic, or of the storm that strikes the wicked;</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> for the LORD will be your confidence and will keep your foot from being caught.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Do not withhold good from those to whom it is due, when it is in your power to do it. </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Do not say to your neighbor, \"Go, and come again, tomorrow I will give it\"-- when you have it with you.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Do not plan harm against your neighbor who lives trustingly beside you.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Do not quarrel with anyone without cause, when no harm has been done to you.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Do not envy the violent and do not choose any of their ways;</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> for the perverse are an abomination to the LORD, but the upright are in his confidence.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> The LORD's curse is on the house of the wicked, but he blesses the abode of the righteous.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Toward the scorners he is scornful, but to the humble he shows favor.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> The wise will inherit honor, but stubborn fools, disgrace.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> Listen, children, to a father's instruction, and be attentive, that you may gain insight; </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> for I give you good precepts: do not forsake my teaching.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> When I was a son with my father, tender, and my mother's favorite,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> he taught me, and said to me, \"Let your heart hold fast my words; keep my commandments, and live.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Get wisdom; get insight: do not forget, nor turn away from the words of my mouth.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Do not forsake her, and she will keep you; love her, and she will guard you.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The beginning of wisdom is this: Get wisdom, and whatever else you get, get insight.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Prize her highly, and she will exalt you; she will honor you if you embrace her.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> She will place on your head a fair garland; she will bestow on you a beautiful crown.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Hear, my child, and accept my words, that the years of your life may be many.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> I have taught you the way of wisdom; I have led you in the paths of uprightness.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> When you walk, your step will not be hampered; and if you run, you will not stumble.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Keep hold of instruction; do not let go; guard her, for she is your life.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Do not enter the path of the wicked, and do not walk in the way of evildoers.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Avoid it; do not go on it; turn away from it and pass on.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> For they cannot sleep unless they have done wrong; they are robbed of sleep unless they have made someone stumble.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> For they eat the bread of wickedness and drink the wine of violence.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> But the path of the righteous is like the light of dawn, which shines brighter and brighter until full day.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The way of the wicked is like deep darkness; they do not know what they stumble over.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> My child, be attentive to my words; incline your ear to my sayings.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Do not let them escape from your sight; keep them within your heart.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> For they are life to those who find them, and healing to all their flesh.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Keep your heart with all vigilance, for from it flow the springs of life.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Put away from you crooked speech, and put devious talk far from you.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Let your eyes look directly forward, and your gaze be straight before you.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Keep straight the path of your feet, and all your ways will be sure.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Do not swerve to the right or to the left; turn your foot away from evil.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"5\">\r\n\t\t\t<VERS vnumber=\"1\"> My child, be attentive to my wisdom; incline your ear to my understanding,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> so that you may hold on to prudence, and your lips may guard knowledge.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For the lips of a loose woman drip honey, and her speech is smoother than oil; </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> but in the end she is bitter as wormwood, sharp as a two-edged sword.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Her feet go down to death; her steps follow the path to Sheol.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> She does not keep straight to the path of life; her ways wander, and she does not know it.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> And now, my child, listen to me, and do not depart from the words of my mouth. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Keep your way far from her, and do not go near the door of her house;</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> or you will give your honor to others, and your years to the merciless,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> and strangers will take their fill of your wealth, and your labors will go to the house of an alien;</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> and at the end of your life you will groan, when your flesh and body are consumed,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> and you say, \"Oh, how I hated discipline, and my heart despised reproof!</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> I did not listen to the voice of my teachers or incline my ear to my instructors.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Now I am at the point of utter ruin in the public assembly.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Drink water from your own cistern, flowing water from your own well.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Should your springs be scattered abroad, streams of water in the streets?</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Let them be for yourself alone, and not for sharing with strangers.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Let your fountain be blessed, and rejoice in the wife of your youth,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> a lovely deer, a graceful doe. May her breasts satisfy you at all times; may you be intoxicated always by her love.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Why should you be intoxicated, my son, by another woman and embrace the bosom of an adulteress?</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> For human ways are under the eyes of the LORD, and he examines all their paths.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The iniquities of the wicked ensnare them, and they are caught in the toils of their sin.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> They die for lack of discipline, and because of their great folly they are lost.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"6\">\r\n\t\t\t<VERS vnumber=\"1\"> My child, if you have given your pledge to your neighbor, if you have bound yourself to another, </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> you are snared by the utterance of your lips, caught by the words of your mouth. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> So do this, my child, and save yourself, for you have come into your neighbor's power: go, hurry, and plead with your neighbor. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Give your eyes no sleep and your eyelids no slumber;</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> save yourself like a gazelle from the hunter, like a bird from the hand of the fowler. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Go to the ant, you lazybones; consider its ways, and be wise.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Without having any chief or officer or ruler,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> it prepares its food in summer, and gathers its sustenance in harvest.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> How long will you lie there, O lazybones? When will you rise from your sleep?</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> A little sleep, a little slumber, a little folding of the hands to rest,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> and poverty will come upon you like a robber, and want, like an armed warrior.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> A scoundrel and a villain goes around with crooked speech,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> winking the eyes, shuffling the feet, pointing the fingers,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> with perverted mind devising evil, continually sowing discord;</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> on such a one calamity will descend suddenly; in a moment, damage beyond repair.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> There are six things that the LORD hates, seven that are an abomination to him:</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> haughty eyes, a lying tongue, and hands that shed innocent blood,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> a heart that devises wicked plans, feet that hurry to run to evil,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> a lying witness who testifies falsely, and one who sows discord in a family.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> My child, keep your father's commandment, and do not forsake your mother's teaching.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Bind them upon your heart always; tie them around your neck.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> When you walk, they will lead you; when you lie down, they will watch over you; and when you awake, they will talk with you.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> For the commandment is a lamp and the teaching a light, and the reproofs of discipline are the way of life,</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> to preserve you from the wife of another, from the smooth tongue of the adulteress. </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Do not desire her beauty in your heart, and do not let her capture you with her eyelashes;</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> for a prostitute's fee is only a loaf of bread, but the wife of another stalks a man's very life. </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Can fire be carried in the bosom without burning one's clothes?</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Or can one walk on hot coals without scorching the feet?</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> So is he who sleeps with his neighbor's wife; no one who touches her will go unpunished.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Thieves are not despised who steal only to satisfy their appetite when they are hungry.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Yet if they are caught, they will pay sevenfold; they will forfeit all the goods of their house.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> But he who commits adultery has no sense; he who does it destroys himself.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> He will get wounds and dishonor, and his disgrace will not be wiped away.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> For jealousy arouses a husband's fury, and he shows no restraint when he takes revenge.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> He will accept no compensation, and refuses a bribe no matter how great.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"7\">\r\n\t\t\t<VERS vnumber=\"1\"> My child, keep my words and store up my commandments with you;</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> keep my commandments and live, keep my teachings as the apple of your eye;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> bind them on your fingers, write them on the tablet of your heart.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Say to wisdom, \"You are my sister,\" and call insight your intimate friend,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> that they may keep you from the loose woman, from the adulteress with her smooth words. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For at the window of my house I looked out through my lattice,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> and I saw among the simple ones, I observed among the youths, a young man without sense,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> passing along the street near her corner, taking the road to her house</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> in the twilight, in the evening, at the time of night and darkness.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then a woman comes toward him, decked out like a prostitute, wily of heart. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> She is loud and wayward; her feet do not stay at home;</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> now in the street, now in the squares, and at every corner she lies in wait.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> She seizes him and kisses him, and with impudent face she says to him:</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> \"I had to offer sacrifices, and today I have paid my vows;</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> so now I have come out to meet you, to seek you eagerly, and I have found you!</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> I have decked my couch with coverings, colored spreads of Egyptian linen;</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> I have perfumed my bed with myrrh, aloes, and cinnamon.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Come, let us take our fill of love until morning; let us delight ourselves with love.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> For my husband is not at home; he has gone on a long journey.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> He took a bag of money with him; he will not come home until full moon.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> With much seductive speech she persuades him; with her smooth talk she compels him.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Right away he follows her, and goes like an ox to the slaughter, or bounds like a stag toward the trap </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> until an arrow pierces its entrails. He is like a bird rushing into a snare, not knowing that it will cost him his life.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> And now, my children, listen to me, and be attentive to the words of my mouth.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Do not let your hearts turn aside to her ways; do not stray into her paths.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> for many are those she has laid low, and numerous are her victims.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Her house is the way to Sheol, going down to the chambers of death.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"8\">\r\n\t\t\t<VERS vnumber=\"1\"> Does not wisdom call, and does not understanding raise her voice?</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> On the heights, beside the way, at the crossroads she takes her stand;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> beside the gates in front of the town, at the entrance of the portals she cries out:</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> \"To you, O people, I call, and my cry is to all that live.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> O simple ones, learn prudence; acquire intelligence, you who lack it.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Hear, for I will speak noble things, and from my lips will come what is right;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> for my mouth will utter truth; wickedness is an abomination to my lips.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> All the words of my mouth are righteous; there is nothing twisted or crooked in them.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> They are all straight to one who understands and right to those who find knowledge.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Take my instruction instead of silver, and knowledge rather than choice gold;</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> for wisdom is better than jewels, and all that you may desire cannot compare with her.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> I, wisdom, live with prudence, and I attain knowledge and discretion. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The fear of the LORD is hatred of evil. Pride and arrogance and the way of evil and perverted speech I hate.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> I have good advice and sound wisdom; I have insight, I have strength.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> By me kings reign, and rulers decree what is just;</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> by me rulers rule, and nobles, all who govern rightly.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> I love those who love me, and those who seek me diligently find me.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Riches and honor are with me, enduring wealth and prosperity.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> My fruit is better than gold, even fine gold, and my yield than choice silver.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> I walk in the way of righteousness, along the paths of justice,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> endowing with wealth those who love me, and filling their treasuries.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The LORD created me at the beginning of his work, the first of his acts of long ago. </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Ages ago I was set up, at the first, before the beginning of the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> When there were no depths I was brought forth, when there were no springs abounding with water.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Before the mountains had been shaped, before the hills, I was brought forth--</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> when he had not yet made earth and fields, or the world's first bits of soil. </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> When he established the heavens, I was there, when he drew a circle on the face of the deep,</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> when he made firm the skies above, when he established the fountains of the deep,</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> when he assigned to the sea its limit, so that the waters might not transgress his command, when he marked out the foundations of the earth,</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> then I was beside him, like a master worker; and I was daily his delight, rejoicing before him always, </VERS>\r\n\t\t\t<VERS vnumber=\"31\"> rejoicing in his inhabited world and delighting in the human race.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> And now, my children, listen to me: happy are those who keep my ways.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Hear instruction and be wise, and do not neglect it.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Happy is the one who listens to me, watching daily at my gates, waiting beside my doors.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> For whoever finds me finds life and obtains favor from the LORD;</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> but those who miss me injure themselves; all who hate me love death.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"9\">\r\n\t\t\t<VERS vnumber=\"1\"> Wisdom has built her house, she has hewn her seven pillars.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> She has slaughtered her animals, she has mixed her wine, she has also set her table.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> She has sent out her servant-girls, she calls from the highest places in the town,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> \"You that are simple, turn in here!\" To those without sense she says,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> \"Come, eat of my bread and drink of the wine I have mixed.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Lay aside immaturity, and live, and walk in the way of insight.\" </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Whoever corrects a scoffer wins abuse; whoever rebukes the wicked gets hurt.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> A scoffer who is rebuked will only hate you; the wise, when rebuked, will love you.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Give instruction to the wise, and they will become wiser still; teach the righteous and they will gain in learning. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The fear of the LORD is the beginning of wisdom, and the knowledge of the Holy One is insight.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> For by me your days will be multiplied, and years will be added to your life.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> If you are wise, you are wise for yourself; if you scoff, you alone will bear it.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The foolish woman is loud; she is ignorant and knows nothing.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> She sits at the door of her house, on a seat at the high places of the town,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> calling to those who pass by, who are going straight on their way,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> \"You who are simple, turn in here!\" And to those without sense she says,</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> \"Stolen water is sweet, and bread eaten in secret is pleasant.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> But they do not know that the dead are there, that her guests are in the depths of Sheol. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"10\">\r\n\t\t\t<VERS vnumber=\"1\"> The proverbs of Solomon. A wise child makes a glad father, but a foolish child is a mother's grief.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Treasures gained by wickedness do not profit, but righteousness delivers from death.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The LORD does not let the righteous go hungry, but he thwarts the craving of the wicked.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> A slack hand causes poverty, but the hand of the diligent makes rich.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> A child who gathers in summer is prudent, but a child who sleeps in harvest brings shame.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Blessings are on the head of the righteous, but the mouth of the wicked conceals violence.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The memory of the righteous is a blessing, but the name of the wicked will rot.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The wise of heart will heed commandments, but a babbling fool will come to ruin.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Whoever walks in integrity walks securely, but whoever follows perverse ways will be found out.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Whoever winks the eye causes trouble, but the one who rebukes boldly makes peace. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The mouth of the righteous is a fountain of life, but the mouth of the wicked conceals violence.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Hatred stirs up strife, but love covers all offenses.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> On the lips of one who has understanding wisdom is found, but a rod is for the back of one who lacks sense.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The wise lay up knowledge, but the babbling of a fool brings ruin near.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The wealth of the rich is their fortress; the poverty of the poor is their ruin.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The wage of the righteous leads to life, the gain of the wicked to sin.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Whoever heeds instruction is on the path to life, but one who rejects a rebuke goes astray.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Lying lips conceal hatred, and whoever utters slander is a fool.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> When words are many, transgression is not lacking, but the prudent are restrained in speech.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The tongue of the righteous is choice silver; the mind of the wicked is of little worth.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> The lips of the righteous feed many, but fools die for lack of sense.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The blessing of the LORD makes rich, and he adds no sorrow with it.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Doing wrong is like sport to a fool, but wise conduct is pleasure to a person of understanding.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> What the wicked dread will come upon them, but the desire of the righteous will be granted.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> When the tempest passes, the wicked are no more, but the righteous are established forever.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Like vinegar to the teeth, and smoke to the eyes, so are the lazy to their employers.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> The fear of the LORD prolongs life, but the years of the wicked will be short.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> The hope of the righteous ends in gladness, but the expectation of the wicked comes to nothing.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> The way of the LORD is a stronghold for the upright, but destruction for evildoers.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> The righteous will never be removed, but the wicked will not remain in the land.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> The mouth of the righteous brings forth wisdom, but the perverse tongue will be cut off.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> The lips of the righteous know what is acceptable, but the mouth of the wicked what is perverse.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"11\">\r\n\t\t\t<VERS vnumber=\"1\"> A false balance is an abomination to the LORD, but an accurate weight is his delight.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> When pride comes, then comes disgrace; but wisdom is with the humble.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The integrity of the upright guides them, but the crookedness of the treacherous destroys them.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Riches do not profit in the day of wrath, but righteousness delivers from death.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The righteousness of the blameless keeps their ways straight, but the wicked fall by their own wickedness.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The righteousness of the upright saves them, but the treacherous are taken captive by their schemes.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> When the wicked die, their hope perishes, and the expectation of the godless comes to nothing.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The righteous are delivered from trouble, and the wicked get into it instead.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> With their mouths the godless would destroy their neighbors, but by knowledge the righteous are delivered.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> When it goes well with the righteous, the city rejoices; and when the wicked perish, there is jubilation.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> By the blessing of the upright a city is exalted, but it is overthrown by the mouth of the wicked.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Whoever belittles another lacks sense, but an intelligent person remains silent.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> A gossip goes about telling secrets, but one who is trustworthy in spirit keeps a confidence.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Where there is no guidance, a nation falls, but in an abundance of counselors there is safety. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> To guarantee loans for a stranger brings trouble, but there is safety in refusing to do so.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> A gracious woman gets honor, but she who hates virtue is covered with shame. The timid become destitute, but the aggressive gain riches. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Those who are kind reward themselves, but the cruel do themselves harm.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The wicked earn no real gain, but those who sow righteousness get a true reward.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Whoever is steadfast in righteousness will live, but whoever pursues evil will die.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Crooked minds are an abomination to the LORD, but those of blameless ways are his delight.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Be assured, the wicked will not go unpunished, but those who are righteous will escape.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Like a gold ring in a pig's snout is a beautiful woman without good sense.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> The desire of the righteous ends only in good; the expectation of the wicked in wrath.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Some give freely, yet grow all the richer; others withhold what is due, and only suffer want.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> A generous person will be enriched, and one who gives water will get water.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> The people curse those who hold back grain, but a blessing is on the head of those who sell it.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Whoever diligently seeks good seeks favor, but evil comes to the one who searches for it.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Those who trust in their riches will wither, but the righteous will flourish like green leaves. </VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Those who trouble their households will inherit wind, and the fool will be servant to the wise.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> The fruit of the righteous is a tree of life, but violence takes lives away. </VERS>\r\n\t\t\t<VERS vnumber=\"31\"> If the righteous are repaid on earth, how much more the wicked and the sinner!</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"12\">\r\n\t\t\t<VERS vnumber=\"1\"> Whoever loves discipline loves knowledge, but those who hate to be rebuked are stupid.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The good obtain favor from the LORD, but those who devise evil he condemns.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> No one finds security by wickedness, but the root of the righteous will never be moved.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> A good wife is the crown of her husband, but she who brings shame is like rottenness in his bones.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The thoughts of the righteous are just; the advice of the wicked is treacherous.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The words of the wicked are a deadly ambush, but the speech of the upright delivers them.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The wicked are overthrown and are no more, but the house of the righteous will stand.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> One is commended for good sense, but a perverse mind is despised.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Better to be despised and have a servant, than to be self-important and lack food.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The righteous know the needs of their animals, but the mercy of the wicked is cruel.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Those who till their land will have plenty of food, but those who follow worthless pursuits have no sense.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The wicked covet the proceeds of wickedness, but the root of the righteous bears fruit. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The evil are ensnared by the transgression of their lips, but the righteous escape from trouble.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> From the fruit of the mouth one is filled with good things, and manual labor has its reward.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Fools think their own way is right, but the wise listen to advice.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Fools show their anger at once, but the prudent ignore an insult.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Whoever speaks the truth gives honest evidence, but a false witness speaks deceitfully.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Rash words are like sword thrusts, but the tongue of the wise brings healing.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Truthful lips endure forever, but a lying tongue lasts only a moment.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Deceit is in the mind of those who plan evil, but those who counsel peace have joy.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> No harm happens to the righteous, but the wicked are filled with trouble.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Lying lips are an abomination to the LORD, but those who act faithfully are his delight.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> One who is clever conceals knowledge, but the mind of a fool broadcasts folly. </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> The hand of the diligent will rule, while the lazy will be put to forced labor.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Anxiety weighs down the human heart, but a good word cheers it up.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> The righteous gives good advice to friends, but the way of the wicked leads astray. </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> The lazy do not roast their game, but the diligent obtain precious wealth. </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> In the path of righteousness there is life, in walking its path there is no death.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"13\">\r\n\t\t\t<VERS vnumber=\"1\"> A wise child loves discipline, but a scoffer does not listen to rebuke. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> From the fruit of their words good persons eat good things, but the desire of the treacherous is for wrongdoing.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Those who guard their mouths preserve their lives; those who open wide their lips come to ruin.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The appetite of the lazy craves, and gets nothing, while the appetite of the diligent is richly supplied.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The righteous hate falsehood, but the wicked act shamefully and disgracefully.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Righteousness guards one whose way is upright, but sin overthrows the wicked.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Some pretend to be rich, yet have nothing; others pretend to be poor, yet have great wealth.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Wealth is a ransom for a person's life, but the poor get no threats.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The light of the righteous rejoices, but the lamp of the wicked goes out.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> By insolence the heedless make strife, but wisdom is with those who take advice.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Wealth hastily gotten will dwindle, but those who gather little by little will increase it. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Hope deferred makes the heart sick, but a desire fulfilled is a tree of life.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Those who despise the word bring destruction on themselves, but those who respect the commandment will be rewarded.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The teaching of the wise is a fountain of life, so that one may avoid the snares of death.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Good sense wins favor, but the way of the faithless is their ruin. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The clever do all things intelligently, but the fool displays folly.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> A bad messenger brings trouble, but a faithful envoy, healing.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Poverty and disgrace are for the one who ignores instruction, but one who heeds reproof is honored.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> A desire realized is sweet to the soul, but to turn away from evil is an abomination to fools.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Whoever walks with the wise becomes wise, but the companion of fools suffers harm.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Misfortune pursues sinners, but prosperity rewards the righteous.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The good leave an inheritance to their children's children, but the sinner's wealth is laid up for the righteous.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> The field of the poor may yield much food, but it is swept away through injustice.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Those who spare the rod hate their children, but those who love them are diligent to discipline them.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> The righteous have enough to satisfy their appetite, but the belly of the wicked is empty.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"14\">\r\n\t\t\t<VERS vnumber=\"1\"> The wise woman builds her house, but the foolish tears it down with her own hands. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Those who walk uprightly fear the LORD, but one who is devious in conduct despises him.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The talk of fools is a rod for their backs, but the lips of the wise preserve them. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Where there are no oxen, there is no grain; abundant crops come by the strength of the ox.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> A faithful witness does not lie, but a false witness breathes out lies.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> A scoffer seeks wisdom in vain, but knowledge is easy for one who understands.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Leave the presence of a fool, for there you do not find words of knowledge.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> It is the wisdom of the clever to understand where they go, but the folly of fools misleads.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Fools mock at the guilt offering, but the upright enjoy God's favor. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The heart knows its own bitterness, and no stranger shares its joy.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The house of the wicked is destroyed, but the tent of the upright flourishes.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> There is a way that seems right to a person, but its end is the way to death. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Even in laughter the heart is sad, and the end of joy is grief.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The perverse get what their ways deserve, and the good, what their deeds deserve. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The simple believe everything, but the clever consider their steps.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The wise are cautious and turn away from evil, but the fool throws off restraint and is careless.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> One who is quick-tempered acts foolishly, and the schemer is hated.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The simple are adorned with folly, but the clever are crowned with knowledge. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The evil bow down before the good, the wicked at the gates of the righteous.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The poor are disliked even by their neighbors, but the rich have many friends.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Those who despise their neighbors are sinners, but happy are those who are kind to the poor.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Do they not err that plan evil? Those who plan good find loyalty and faithfulness.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> In all toil there is profit, but mere talk leads only to poverty.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> The crown of the wise is their wisdom, but folly is the garland of fools. </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> A truthful witness saves lives, but one who utters lies is a betrayer.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> In the fear of the LORD one has strong confidence, and one's children will have a refuge.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> The fear of the LORD is a fountain of life, so that one may avoid the snares of death.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> The glory of a king is a multitude of people; without people a prince is ruined.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Whoever is slow to anger has great understanding, but one who has a hasty temper exalts folly.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> A tranquil mind gives life to the flesh, but passion makes the bones rot.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Those who oppress the poor insult their Maker, but those who are kind to the needy honor him.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> The wicked are overthrown by their evildoing, but the righteous find a refuge in their integrity. </VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Wisdom is at home in the mind of one who has understanding, but it is not known in the heart of fools. </VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Righteousness exalts a nation, but sin is a reproach to any people.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> A servant who deals wisely has the king's favor, but his wrath falls on one who acts shamefully.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"15\">\r\n\t\t\t<VERS vnumber=\"1\"> A soft answer turns away wrath, but a harsh word stirs up anger.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The tongue of the wise dispenses knowledge, but the mouths of fools pour out folly. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The eyes of the LORD are in every place, keeping watch on the evil and the good.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> A gentle tongue is a tree of life, but perverseness in it breaks the spirit.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> A fool despises a parent's instruction, but the one who heeds admonition is prudent.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> In the house of the righteous there is much treasure, but trouble befalls the income of the wicked.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The lips of the wise spread knowledge; not so the minds of fools.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The sacrifice of the wicked is an abomination to the LORD, but the prayer of the upright is his delight.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The way of the wicked is an abomination to the LORD, but he loves the one who pursues righteousness.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> There is severe discipline for one who forsakes the way, but one who hates a rebuke will die.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Sheol and Abaddon lie open before the LORD, how much more human hearts!</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Scoffers do not like to be rebuked; they will not go to the wise.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> A glad heart makes a cheerful countenance, but by sorrow of heart the spirit is broken.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The mind of one who has understanding seeks knowledge, but the mouths of fools feed on folly.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> All the days of the poor are hard, but a cheerful heart has a continual feast.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Better is a little with the fear of the LORD than great treasure and trouble with it.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Better is a dinner of vegetables where love is than a fatted ox and hatred with it.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Those who are hot-tempered stir up strife, but those who are slow to anger calm contention.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The way of the lazy is overgrown with thorns, but the path of the upright is a level highway.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> A wise child makes a glad father, but the foolish despise their mothers.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Folly is a joy to one who has no sense, but a person of understanding walks straight ahead.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Without counsel, plans go wrong, but with many advisers they succeed.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> To make an apt answer is a joy to anyone, and a word in season, how good it is!</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> For the wise the path of life leads upward, in order to avoid Sheol below.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> The LORD tears down the house of the proud, but maintains the widow's boundaries.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Evil plans are an abomination to the LORD, but gracious words are pure.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Those who are greedy for unjust gain make trouble for their households, but those who hate bribes will live.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> The mind of the righteous ponders how to answer, but the mouth of the wicked pours out evil.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> The LORD is far from the wicked, but he hears the prayer of the righteous.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> The light of the eyes rejoices the heart, and good news refreshes the body.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> The ear that heeds wholesome admonition will lodge among the wise.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Those who ignore instruction despise themselves, but those who heed admonition gain understanding.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> The fear of the LORD is instruction in wisdom, and humility goes before honor.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"16\">\r\n\t\t\t<VERS vnumber=\"1\"> The plans of the mind belong to mortals, but the answer of the tongue is from the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> All one's ways may be pure in one's own eyes, but the LORD weighs the spirit.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Commit your work to the LORD, and your plans will be established.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The LORD has made everything for its purpose, even the wicked for the day of trouble.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> All those who are arrogant are an abomination to the LORD; be assured, they will not go unpunished.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> By loyalty and faithfulness iniquity is atoned for, and by the fear of the LORD one avoids evil.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> When the ways of people please the LORD, he causes even their enemies to be at peace with them.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Better is a little with righteousness than large income with injustice.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The human mind plans the way, but the LORD directs the steps.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Inspired decisions are on the lips of a king; his mouth does not sin in judgment.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Honest balances and scales are the LORD's; all the weights in the bag are his work.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> It is an abomination to kings to do evil, for the throne is established by righteousness.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Righteous lips are the delight of a king, and he loves those who speak what is right.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> A king's wrath is a messenger of death, and whoever is wise will appease it.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> In the light of a king's face there is life, and his favor is like the clouds that bring the spring rain.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> How much better to get wisdom than gold! To get understanding is to be chosen rather than silver.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The highway of the upright avoids evil; those who guard their way preserve their lives.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Pride goes before destruction, and a haughty spirit before a fall.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> It is better to be of a lowly spirit among the poor than to divide the spoil with the proud.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Those who are attentive to a matter will prosper, and happy are those who trust in the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> The wise of heart is called perceptive, and pleasant speech increases persuasiveness.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Wisdom is a fountain of life to one who has it, but folly is the punishment of fools.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> The mind of the wise makes their speech judicious, and adds persuasiveness to their lips.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Pleasant words are like a honeycomb, sweetness to the soul and health to the body.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Sometimes there is a way that seems to be right, but in the end it is the way to death.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> The appetite of workers works for them; their hunger urges them on.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Scoundrels concoct evil, and their speech is like a scorching fire.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> A perverse person spreads strife, and a whisperer separates close friends.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> The violent entice their neighbors, and lead them in a way that is not good.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> One who winks the eyes plans perverse things; one who compresses the lips brings evil to pass.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Gray hair is a crown of glory; it is gained in a righteous life.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> One who is slow to anger is better than the mighty, and one whose temper is controlled than one who captures a city.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> The lot is cast into the lap, but the decision is the LORD's alone.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"17\">\r\n\t\t\t<VERS vnumber=\"1\"> Better is a dry morsel with quiet than a house full of feasting with strife.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> A slave who deals wisely will rule over a child who acts shamefully, and will share the inheritance as one of the family.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The crucible is for silver, and the furnace is for gold, but the LORD tests the heart.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> An evildoer listens to wicked lips; and a liar gives heed to a mischievous tongue.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Those who mock the poor insult their Maker; those who are glad at calamity will not go unpunished.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Grandchildren are the crown of the aged, and the glory of children is their parents.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Fine speech is not becoming to a fool; still less is false speech to a ruler. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> A bribe is like a magic stone in the eyes of those who give it; wherever they turn they prosper.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> One who forgives an affront fosters friendship, but one who dwells on disputes will alienate a friend.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> A rebuke strikes deeper into a discerning person than a hundred blows into a fool.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Evil people seek only rebellion, but a cruel messenger will be sent against them.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Better to meet a she-bear robbed of its cubs than to confront a fool immersed in folly.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Evil will not depart from the house of one who returns evil for good.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The beginning of strife is like letting out water; so stop before the quarrel breaks out.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> One who justifies the wicked and one who condemns the righteous are both alike an abomination to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Why should fools have a price in hand to buy wisdom, when they have no mind to learn?</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> A friend loves at all times, and kinsfolk are born to share adversity.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> It is senseless to give a pledge, to become surety for a neighbor.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> One who loves transgression loves strife; one who builds a high threshold invites broken bones.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The crooked of mind do not prosper, and the perverse of tongue fall into calamity.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> The one who begets a fool gets trouble; the parent of a fool has no joy.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> A cheerful heart is a good medicine, but a downcast spirit dries up the bones.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> The wicked accept a concealed bribe to pervert the ways of justice.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> The discerning person looks to wisdom, but the eyes of a fool to the ends of the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Foolish children are a grief to their father and bitterness to her who bore them.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> To impose a fine on the innocent is not right, or to flog the noble for their integrity.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> One who spares words is knowledgeable; one who is cool in spirit has understanding.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Even fools who keep silent are considered wise; when they close their lips, they are deemed intelligent.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"18\">\r\n\t\t\t<VERS vnumber=\"1\"> The one who lives alone is self-indulgent, showing contempt for all who have sound judgment. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> A fool takes no pleasure in understanding, but only in expressing personal opinion.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> When wickedness comes, contempt comes also; and with dishonor comes disgrace.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The words of the mouth are deep waters; the fountain of wisdom is a gushing stream.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> It is not right to be partial to the guilty, or to subvert the innocent in judgment.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> A fool's lips bring strife, and a fool's mouth invites a flogging.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The mouths of fools are their ruin, and their lips a snare to themselves.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The words of a whisperer are like delicious morsels; they go down into the inner parts of the body.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> One who is slack in work is close kin to a vandal.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The name of the LORD is a strong tower; the righteous run into it and are safe.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The wealth of the rich is their strong city; in their imagination it is like a high wall.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Before destruction one's heart is haughty, but humility goes before honor.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> If one gives answer before hearing, it is folly and shame.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The human spirit will endure sickness; but a broken spirit-- who can bear?</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> An intelligent mind acquires knowledge, and the ear of the wise seeks knowledge.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> A gift opens doors; it gives access to the great.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The one who first states a case seems right, until the other comes and cross-examines.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Casting the lot puts an end to disputes and decides between powerful contenders.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> An ally offended is stronger than a city; such quarreling is like the bars of a castle.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> From the fruit of the mouth one's stomach is satisfied; the yield of the lips brings satisfaction.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Death and life are in the power of the tongue, and those who love it will eat its fruits.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> He who finds a wife finds a good thing, and obtains favor from the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> The poor use entreaties, but the rich answer roughly.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Some friends play at friendship but a true friend sticks closer than one's nearest kin.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"19\">\r\n\t\t\t<VERS vnumber=\"1\"> Better the poor walking in integrity than one perverse of speech who is a fool.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Desire without knowledge is not good, and one who moves too hurriedly misses the way.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> One's own folly leads to ruin, yet the heart rages against the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Wealth brings many friends, but the poor are left friendless.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> A false witness will not go unpunished, and a liar will not escape.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Many seek the favor of the generous, and everyone is a friend to a giver of gifts.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> If the poor are hated even by their kin, how much more are they shunned by their friends! When they call after them, they are not there. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> To get wisdom is to love oneself; to keep understanding is to prosper.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> A false witness will not go unpunished, and the liar will perish.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> It is not fitting for a fool to live in luxury, much less for a slave to rule over princes.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Those with good sense are slow to anger, and it is their glory to overlook an offense.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> A king's anger is like the growling of a lion, but his favor is like dew on the grass.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> A stupid child is ruin to a father, and a wife's quarreling is a continual dripping of rain.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> House and wealth are inherited from parents, but a prudent wife is from the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Laziness brings on deep sleep; an idle person will suffer hunger.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Those who keep the commandment will live; those who are heedless of their ways will die.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Whoever is kind to the poor lends to the LORD, and will be repaid in full.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Discipline your children while there is hope; do not set your heart on their destruction.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> A violent tempered person will pay the penalty; if you effect a rescue, you will only have to do it again. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Listen to advice and accept instruction, that you may gain wisdom for the future.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> The human mind may devise many plans, but it is the purpose of the LORD that will be established.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> What is desirable in a person is loyalty, and it is better to be poor than a liar.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> The fear of the LORD is life indeed; filled with it one rests secure and suffers no harm.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> The lazy person buries a hand in the dish, and will not even bring it back to the mouth.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Strike a scoffer, and the simple will learn prudence; reprove the intelligent, and they will gain knowledge.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Those who do violence to their father and chase away their mother are children who cause shame and bring reproach.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Cease straying, my child, from the words of knowledge, in order that you may hear instruction.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> A worthless witness mocks at justice, and the mouth of the wicked devours iniquity.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Condemnation is ready for scoffers, and flogging for the backs of fools.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"20\">\r\n\t\t\t<VERS vnumber=\"1\"> Wine is a mocker, strong drink a brawler, and whoever is led astray by it is not wise.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The dread anger of a king is like the growling of a lion; anyone who provokes him to anger forfeits life itself.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> It is honorable to refrain from strife, but every fool is quick to quarrel.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The lazy person does not plow in season; harvest comes, and there is nothing to be found.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The purposes in the human mind are like deep water, but the intelligent will draw them out.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Many proclaim themselves loyal, but who can find one worthy of trust?</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The righteous walk in integrity-- happy are the children who follow them!</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> A king who sits on the throne of judgment winnows all evil with his eyes.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Who can say, \"I have made my heart clean; I am pure from my sin\"?</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Diverse weights and diverse measures are both alike an abomination to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Even children make themselves known by their acts, by whether what they do is pure and right.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The hearing ear and the seeing eye-- the LORD has made them both.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Do not love sleep, or else you will come to poverty; open your eyes, and you will have plenty of bread.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> \"Bad, bad,\" says the buyer, then goes away and boasts.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> There is gold, and abundance of costly stones; but the lips informed by knowledge are a precious jewel.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Take the garment of one who has given surety for a stranger; seize the pledge given as surety for foreigners.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Bread gained by deceit is sweet, but afterward the mouth will be full of gravel.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Plans are established by taking advice; wage war by following wise guidance.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> A gossip reveals secrets; therefore do not associate with a babbler.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> If you curse father or mother, your lamp will go out in utter darkness.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> An estate quickly acquired in the beginning will not be blessed in the end.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Do not say, \"I will repay evil\"; wait for the LORD, and he will help you.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Differing weights are an abomination to the LORD, and false scales are not good.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> All our steps are ordered by the LORD; how then can we understand our own ways?</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> It is a snare for one to say rashly, \"It is holy,\" and begin to reflect only after making a vow.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> A wise king winnows the wicked, and drives the wheel over them.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> The human spirit is the lamp of the LORD, searching every inmost part.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Loyalty and faithfulness preserve the king, and his throne is upheld by righteousness. </VERS>\r\n\t\t\t<VERS vnumber=\"29\"> The glory of youths is their strength, but the beauty of the aged is their gray hair.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Blows that wound cleanse away evil; beatings make clean the innermost parts.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"21\">\r\n\t\t\t<VERS vnumber=\"1\"> The king's heart is a stream of water in the hand of the LORD; he turns it wherever he will.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> All deeds are right in the sight of the doer, but the LORD weighs the heart.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> To do righteousness and justice is more acceptable to the LORD than sacrifice.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Haughty eyes and a proud heart-- the lamp of the wicked-- are sin.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The plans of the diligent lead surely to abundance, but everyone who is hasty comes only to want.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The getting of treasures by a lying tongue is a fleeting vapor and a snare of death. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The violence of the wicked will sweep them away, because they refuse to do what is just.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The way of the guilty is crooked, but the conduct of the pure is right.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> It is better to live in a corner of the housetop than in a house shared with a contentious wife.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The souls of the wicked desire evil; their neighbors find no mercy in their eyes.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> When a scoffer is punished, the simple become wiser; when the wise are instructed, they increase in knowledge.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The Righteous One observes the house of the wicked; he casts the wicked down to ruin.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> If you close your ear to the cry of the poor, you will cry out and not be heard.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> A gift in secret averts anger; and a concealed bribe in the bosom, strong wrath.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> When justice is done, it is a joy to the righteous, but dismay to evildoers.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Whoever wanders from the way of understanding will rest in the assembly of the dead.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Whoever loves pleasure will suffer want; whoever loves wine and oil will not be rich.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The wicked is a ransom for the righteous, and the faithless for the upright.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> It is better to live in a desert land than with a contentious and fretful wife.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Precious treasure remains in the house of the wise, but the fool devours it.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Whoever pursues righteousness and kindness will find life and honor. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> One wise person went up against a city of warriors and brought down the stronghold in which they trusted.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> To watch over mouth and tongue is to keep out of trouble.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> The proud, haughty person, named \"Scoffer,\" acts with arrogant pride.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> The craving of the lazy person is fatal, for lazy hands refuse to labor.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> All day long the wicked covet, but the righteous give and do not hold back. </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> The sacrifice of the wicked is an abomination; how much more when brought with evil intent.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> A false witness will perish, but a good listener will testify successfully.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> The wicked put on a bold face, but the upright give thought to their ways. </VERS>\r\n\t\t\t<VERS vnumber=\"30\"> No wisdom, no understanding, no counsel, can avail against the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> The horse is made ready for the day of battle, but the victory belongs to the LORD.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"22\">\r\n\t\t\t<VERS vnumber=\"1\"> A good name is to be chosen rather than great riches, and favor is better than silver or gold.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The rich and the poor have this in common: the LORD is the maker of them all.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The clever see danger and hide; but the simple go on, and suffer for it.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The reward for humility and fear of the LORD is riches and honor and life.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Thorns and snares are in the way of the perverse; the cautious will keep far from them.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Train children in the right way, and when old, they will not stray.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The rich rule over the poor, and the borrower is the slave of the lender.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Whoever sows injustice will reap calamity, and the rod of anger will fail.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Those who are generous are blessed, for they share their bread with the poor.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Drive out a scoffer, and strife goes out; quarreling and abuse will cease.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Those who love a pure heart and are gracious in speech will have the king as a friend.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The eyes of the LORD keep watch over knowledge, but he overthrows the words of the faithless.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The lazy person says, \"There is a lion outside! I shall be killed in the streets!\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The mouth of a loose woman is a deep pit; he with whom the LORD is angry falls into it. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Folly is bound up in the heart of a boy, but the rod of discipline drives it far away.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Oppressing the poor in order to enrich oneself, and giving to the rich, will lead only to loss.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The words of the wise: Incline your ear and hear my words, and apply your mind to my teaching; </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> for it will be pleasant if you keep them within you, if all of them are ready on your lips.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> So that your trust may be in the LORD, I have made them known to you today-- yes, to you.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Have I not written for you thirty sayings of admonition and knowledge,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> to show you what is right and true, so that you may give a true answer to those who sent you?</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Do not rob the poor because they are poor, or crush the afflicted at the gate;</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> for the LORD pleads their cause and despoils of life those who despoil them.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Make no friends with those given to anger, and do not associate with hotheads,</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> or you may learn their ways and entangle yourself in a snare.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Do not be one of those who give pledges, who become surety for debts.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> If you have nothing with which to pay, why should your bed be taken from under you?</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Do not remove the ancient landmark that your ancestors set up.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Do you see those who are skillful in their work? they will serve kings; they will not serve common people.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"23\">\r\n\t\t\t<VERS vnumber=\"1\"> When you sit down to eat with a ruler, observe carefully what is before you, </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> and put a knife to your throat if you have a big appetite.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Do not desire the ruler's delicacies, for they are deceptive food. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Do not wear yourself out to get rich; be wise enough to desist.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> When your eyes light upon it, it is gone; for suddenly it takes wings to itself, flying like an eagle toward heaven.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Do not eat the bread of the stingy; do not desire their delicacies;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> for like a hair in the throat, so are they. \"Eat and drink!\" they say to you; but they do not mean it. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> You will vomit up the little you have eaten, and you will waste your pleasant words.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Do not speak in the hearing of a fool, who will only despise the wisdom of your words.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Do not remove an ancient landmark or encroach on the fields of orphans,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> for their redeemer is strong; he will plead their cause against you.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Apply your mind to instruction and your ear to words of knowledge.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Do not withhold discipline from your children; if you beat them with a rod, they will not die.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> If you beat them with the rod, you will save their lives from Sheol.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> My child, if your heart is wise, my heart too will be glad.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> My soul will rejoice when your lips speak what is right.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Do not let your heart envy sinners, but always continue in the fear of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Surely there is a future, and your hope will not be cut off.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Hear, my child, and be wise, and direct your mind in the way.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Do not be among winebibbers, or among gluttonous eaters of meat;</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> for the drunkard and the glutton will come to poverty, and drowsiness will clothe them with rags.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Listen to your father who begot you, and do not despise your mother when she is old.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Buy truth, and do not sell it; buy wisdom, instruction, and understanding.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> The father of the righteous will greatly rejoice; he who begets a wise son will be glad in him.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Let your father and mother be glad; let her who bore you rejoice.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> My child, give me your heart, and let your eyes observe my ways. </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> For a prostitute is a deep pit; an adulteress is a narrow well.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> She lies in wait like a robber and increases the number of the faithless.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Who has woe? Who has sorrow? Who has strife? Who has complaining? Who has wounds without cause? Who has redness of eyes?</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Those who linger late over wine, those who keep trying mixed wines.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Do not look at wine when it is red, when it sparkles in the cup and goes down smoothly.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> At the last it bites like a serpent, and stings like an adder.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Your eyes will see strange things, and your mind utter perverse things.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> You will be like one who lies down in the midst of the sea, like one who lies on the top of a mast. </VERS>\r\n\t\t\t<VERS vnumber=\"35\"> \"They struck me,\" you will say, \"but I was not hurt; they beat me, but I did not feel it. When shall I awake? I will seek another drink.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"24\">\r\n\t\t\t<VERS vnumber=\"1\"> Do not envy the wicked, nor desire to be with them;</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> for their minds devise violence, and their lips talk of mischief.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> By wisdom a house is built, and by understanding it is established;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> by knowledge the rooms are filled with all precious and pleasant riches.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Wise warriors are mightier than strong ones, and those who have knowledge than those who have strength; </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> for by wise guidance you can wage your war, and in abundance of counselors there is victory.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Wisdom is too high for fools; in the gate they do not open their mouths.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Whoever plans to do evil will be called a mischief-maker.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The devising of folly is sin, and the scoffer is an abomination to all.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> If you faint in the day of adversity, your strength being small;</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> if you hold back from rescuing those taken away to death, those who go staggering to the slaughter;</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> if you say, \"Look, we did not know this\"-- does not he who weighs the heart perceive it? Does not he who keeps watch over your soul know it? And will he not repay all according to their deeds?</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> My child, eat honey, for it is good, and the drippings of the honeycomb are sweet to your taste.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Know that wisdom is such to your soul; if you find it, you will find a future, and your hope will not be cut off.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Do not lie in wait like an outlaw against the home of the righteous; do no violence to the place where the righteous live;</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> for though they fall seven times, they will rise again; but the wicked are overthrown by calamity.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Do not rejoice when your enemies fall, and do not let your heart be glad when they stumble,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> or else the LORD will see it and be displeased, and turn away his anger from them.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Do not fret because of evildoers. Do not envy the wicked;</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> for the evil have no future; the lamp of the wicked will go out.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> My child, fear the LORD and the king, and do not disobey either of them; </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> for disaster comes from them suddenly, and who knows the ruin that both can bring?</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> These also are sayings of the wise: Partiality in judging is not good.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Whoever says to the wicked, \"You are innocent,\" will be cursed by peoples, abhorred by nations;</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> but those who rebuke the wicked will have delight, and a good blessing will come upon them.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> One who gives an honest answer gives a kiss on the lips.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Prepare your work outside, get everything ready for you in the field; and after that build your house.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Do not be a witness against your neighbor without cause, and do not deceive with your lips.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Do not say, \"I will do to others as they have done to me; I will pay them back for what they have done.\"</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> I passed by the field of one who was lazy, by the vineyard of a stupid person;</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> and see, it was all overgrown with thorns; the ground was covered with nettles, and its stone wall was broken down.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Then I saw and considered it; I looked and received instruction.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> A little sleep, a little slumber, a little folding of the hands to rest,</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> and poverty will come upon you like a robber, and want, like an armed warrior.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"25\">\r\n\t\t\t<VERS vnumber=\"1\"> These are other proverbs of Solomon that the officials of King Hezekiah of Judah copied.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> It is the glory of God to conceal things, but the glory of kings is to search things out.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Like the heavens for height, like the earth for depth, so the mind of kings is unsearchable.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Take away the dross from the silver, and the smith has material for a vessel;</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> take away the wicked from the presence of the king, and his throne will be established in righteousness.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Do not put yourself forward in the king's presence or stand in the place of the great;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> for it is better to be told, \"Come up here,\" than to be put lower in the presence of a noble. What your eyes have seen</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> do not hastily bring into court; for what will you do in the end, when your neighbor puts you to shame? </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Argue your case with your neighbor directly, and do not disclose another's secret;</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> or else someone who hears you will bring shame upon you, and your ill repute will have no end.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> A word fitly spoken is like apples of gold in a setting of silver.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Like a gold ring or an ornament of gold is a wise rebuke to a listening ear.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Like the cold of snow in the time of harvest are faithful messengers to those who send them; they refresh the spirit of their masters.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Like clouds and wind without rain is one who boasts of a gift never given.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> With patience a ruler may be persuaded, and a soft tongue can break bones.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> If you have found honey, eat only enough for you, or else, having too much, you will vomit it.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Let your foot be seldom in your neighbor's house, otherwise the neighbor will become weary of you and hate you.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Like a war club, a sword, or a sharp arrow is one who bears false witness against a neighbor.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Like a bad tooth or a lame foot is trust in a faithless person in time of trouble.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Like vinegar on a wound is one who sings songs to a heavy heart. Like a moth in clothing or a worm in wood, sorrow gnaws at the human heart. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> If your enemies are hungry, give them bread to eat; and if they are thirsty, give them water to drink;</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> for you will heap coals of fire on their heads, and the LORD will reward you.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> The north wind produces rain, and a backbiting tongue, angry looks.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> It is better to live in a corner of the housetop than in a house shared with a contentious wife.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Like cold water to a thirsty soul, so is good news from a far country.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Like a muddied spring or a polluted fountain are the righteous who give way before the wicked.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> It is not good to eat much honey, or to seek honor on top of honor.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Like a city breached, without walls, is one who lacks self-control.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"26\">\r\n\t\t\t<VERS vnumber=\"1\"> Like snow in summer or rain in harvest, so honor is not fitting for a fool.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Like a sparrow in its flitting, like a swallow in its flying, an undeserved curse goes nowhere.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> A whip for the horse, a bridle for the donkey, and a rod for the back of fools.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Do not answer fools according to their folly, or you will be a fool yourself.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Answer fools according to their folly, or they will be wise in their own eyes.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> It is like cutting off one's foot and drinking down violence, to send a message by a fool.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The legs of a disabled person hang limp; so does a proverb in the mouth of a fool.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> It is like binding a stone in a sling to give honor to a fool.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Like a thornbush brandished by the hand of a drunkard is a proverb in the mouth of a fool.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Like an archer who wounds everybody is one who hires a passing fool or drunkard. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Like a dog that returns to its vomit is a fool who reverts to his folly.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Do you see persons wise in their own eyes? There is more hope for fools than for them.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The lazy person says, \"There is a lion in the road! There is a lion in the streets!\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> As a door turns on its hinges, so does a lazy person in bed.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The lazy person buries a hand in the dish, and is too tired to bring it back to the mouth.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The lazy person is wiser in self-esteem than seven who can answer discreetly.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Like somebody who takes a passing dog by the ears is one who meddles in the quarrel of another.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Like a maniac who shoots deadly firebrands and arrows,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> so is one who deceives a neighbor and says, \"I am only joking!\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> For lack of wood the fire goes out, and where there is no whisperer, quarreling ceases.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> As charcoal is to hot embers and wood to fire, so is a quarrelsome person for kindling strife.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The words of a whisperer are like delicious morsels; they go down into the inner parts of the body.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Like the glaze covering an earthen vessel are smooth lips with an evil heart. </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> An enemy dissembles in speaking while harboring deceit within;</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> when an enemy speaks graciously, do not believe it, for there are seven abominations concealed within;</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> though hatred is covered with guile, the enemy's wickedness will be exposed in the assembly.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Whoever digs a pit will fall into it, and a stone will come back on the one who starts it rolling.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> A lying tongue hates its victims, and a flattering mouth works ruin.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"27\">\r\n\t\t\t<VERS vnumber=\"1\"> Do not boast about tomorrow, for you do not know what a day may bring.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Let another praise you, and not your own mouth-- a stranger, and not your own lips.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> A stone is heavy, and sand is weighty, but a fool's provocation is heavier than both.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Wrath is cruel, anger is overwhelming, but who is able to stand before jealousy?</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Better is open rebuke than hidden love.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Well meant are the wounds a friend inflicts, but profuse are the kisses of an enemy.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The sated appetite spurns honey, but to a ravenous appetite even the bitter is sweet.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Like a bird that strays from its nest is one who strays from home.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Perfume and incense make the heart glad, but the soul is torn by trouble. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Do not forsake your friend or the friend of your parent; do not go to the house of your kindred in the day of your calamity. Better is a neighbor who is nearby than kindred who are far away.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Be wise, my child, and make my heart glad, so that I may answer whoever reproaches me.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The clever see danger and hide; but the simple go on, and suffer for it.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Take the garment of one who has given surety for a stranger; seize the pledge given as surety for foreigners. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Whoever blesses a neighbor with a loud voice, rising early in the morning, will be counted as cursing.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> A continual dripping on a rainy day and a contentious wife are alike;</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> to restrain her is to restrain the wind or to grasp oil in the right hand. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Iron sharpens iron, and one person sharpens the wits of another. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Anyone who tends a fig tree will eat its fruit, and anyone who takes care of a master will be honored.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Just as water reflects the face, so one human heart reflects another.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Sheol and Abaddon are never satisfied, and human eyes are never satisfied.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> The crucible is for silver, and the furnace is for gold, so a person is tested by being praised. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Crush a fool in a mortar with a pestle along with crushed grain, but the folly will not be driven out.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Know well the condition of your flocks, and give attention to your herds;</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> for riches do not last forever, nor a crown for all generations.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> When the grass is gone, and new growth appears, and the herbage of the mountains is gathered,</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> the lambs will provide your clothing, and the goats the price of a field;</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> there will be enough goats' milk for your food, for the food of your household and nourishment for your servant-girls.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"28\">\r\n\t\t\t<VERS vnumber=\"1\"> The wicked flee when no one pursues, but the righteous are as bold as a lion.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> When a land rebels it has many rulers; but with an intelligent ruler there is lasting order. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> A ruler who oppresses the poor is a beating rain that leaves no food. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Those who forsake the law praise the wicked, but those who keep the law struggle against them.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The evil do not understand justice, but those who seek the LORD understand it completely.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Better to be poor and walk in integrity than to be crooked in one's ways even though rich.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Those who keep the law are wise children, but companions of gluttons shame their parents.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> One who augments wealth by exorbitant interest gathers it for another who is kind to the poor.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> When one will not listen to the law, even one's prayers are an abomination.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Those who mislead the upright into evil ways will fall into pits of their own making, but the blameless will have a goodly inheritance.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The rich is wise in self-esteem, but an intelligent poor person sees through the pose.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> When the righteous triumph, there is great glory, but when the wicked prevail, people go into hiding.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> No one who conceals transgressions will prosper, but one who confesses and forsakes them will obtain mercy.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Happy is the one who is never without fear, but one who is hard-hearted will fall into calamity.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Like a roaring lion or a charging bear is a wicked ruler over a poor people.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> A ruler who lacks understanding is a cruel oppressor; but one who hates unjust gain will enjoy a long life.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> If someone is burdened with the blood of another, let that killer be a fugitive until death; let no one offer assistance.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> One who walks in integrity will be safe, but whoever follows crooked ways will fall into the Pit. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Anyone who tills the land will have plenty of bread, but one who follows worthless pursuits will have plenty of poverty.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The faithful will abound with blessings, but one who is in a hurry to be rich will not go unpunished.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> To show partiality is not good-- yet for a piece of bread a person may do wrong.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The miser is in a hurry to get rich and does not know that loss is sure to come.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Whoever rebukes a person will afterward find more favor than one who flatters with the tongue.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Anyone who robs father or mother and says, \"That is no crime,\" is partner to a thug.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> The greedy person stirs up strife, but whoever trusts in the LORD will be enriched.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Those who trust in their own wits are fools; but those who walk in wisdom come through safely.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Whoever gives to the poor will lack nothing, but one who turns a blind eye will get many a curse.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> When the wicked prevail, people go into hiding; but when they perish, the righteous increase.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"29\">\r\n\t\t\t<VERS vnumber=\"1\"> One who is often reproved, yet remains stubborn, will suddenly be broken beyond healing.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> When the righteous are in authority, the people rejoice; but when the wicked rule, the people groan.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> A child who loves wisdom makes a parent glad, but to keep company with prostitutes is to squander one's substance.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> By justice a king gives stability to the land, but one who makes heavy exactions ruins it.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Whoever flatters a neighbor is spreading a net for the neighbor's feet.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> In the transgression of the evil there is a snare, but the righteous sing and rejoice.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The righteous know the rights of the poor; the wicked have no such understanding.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Scoffers set a city aflame, but the wise turn away wrath.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> If the wise go to law with fools, there is ranting and ridicule without relief.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The bloodthirsty hate the blameless, and they seek the life of the upright.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> A fool gives full vent to anger, but the wise quietly holds it back.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> If a ruler listens to falsehood, all his officials will be wicked.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The poor and the oppressor have this in common: the LORD gives light to the eyes of both.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> If a king judges the poor with equity, his throne will be established forever.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The rod and reproof give wisdom, but a mother is disgraced by a neglected child.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> When the wicked are in authority, transgression increases, but the righteous will look upon their downfall.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Discipline your children, and they will give you rest; they will give delight to your heart.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Where there is no prophecy, the people cast off restraint, but happy are those who keep the law.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> By mere words servants are not disciplined, for though they understand, they will not give heed.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Do you see someone who is hasty in speech? There is more hope for a fool than for anyone like that.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> A slave pampered from childhood will come to a bad end. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> One given to anger stirs up strife, and the hothead causes much transgression.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> A person's pride will bring humiliation, but one who is lowly in spirit will obtain honor.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> To be a partner of a thief is to hate one's own life; one hears the victim's curse, but discloses nothing. </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> The fear of others lays a snare, but one who trusts in the LORD is secure. </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Many seek the favor of a ruler, but it is from the LORD that one gets justice.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> The unjust are an abomination to the righteous, but the upright are an abomination to the wicked.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"30\">\r\n\t\t\t<VERS vnumber=\"1\"> The words of Agur son of Jakeh. An oracle. Thus says the man: I am weary, O God, I am weary, O God. How can I prevail?</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Surely I am too stupid to be human; I do not have human understanding.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> I have not learned wisdom, nor have I knowledge of the holy ones. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Who has ascended to heaven and come down? Who has gathered the wind in the hollow of the hand? Who has wrapped up the waters in a garment? Who has established all the ends of the earth? What is the person's name? And what is the name of the person's child? Surely you know!</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Every word of God proves true; he is a shield to those who take refuge in him.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Do not add to his words, or else he will rebuke you, and you will be found a liar.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Two things I ask of you; do not deny them to me before I die:</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Remove far from me falsehood and lying; give me neither poverty nor riches; feed me with the food that I need,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> or I shall be full, and deny you, and say, \"Who is the LORD?\" or I shall be poor, and steal, and profane the name of my God.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Do not slander a servant to a master, or the servant will curse you, and you will be held guilty.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> There are those who curse their fathers and do not bless their mothers.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> There are those who are pure in their own eyes yet are not cleansed of their filthiness.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> There are those-- how lofty are their eyes, how high their eyelids lift!</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> There are those whose teeth are swords, whose teeth are knives, to devour the poor from off the earth, the needy from among mortals.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The leech has two daughters; \"Give, give,\" they cry. Three things are never satisfied; four never say, \"Enough\": </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Sheol, the barren womb, the earth ever thirsty for water, and the fire that never says, \"Enough.\" </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The eye that mocks a father and scorns to obey a mother will be pecked out by the ravens of the valley and eaten by the vultures.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Three things are too wonderful for me; four I do not understand:</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> the way of an eagle in the sky, the way of a snake on a rock, the way of a ship on the high seas, and the way of a man with a girl.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> This is the way of an adulteress: she eats, and wipes her mouth, and says, \"I have done no wrong.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Under three things the earth trembles; under four it cannot bear up:</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> a slave when he becomes king, and a fool when glutted with food;</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> an unloved woman when she gets a husband, and a maid when she succeeds her mistress.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Four things on earth are small, yet they are exceedingly wise:</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> the ants are a people without strength, yet they provide their food in the summer;</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> the badgers are a people without power, yet they make their homes in the rocks;</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> the locusts have no king, yet all of them march in rank;</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> the lizard can be grasped in the hand, yet it is found in kings' palaces. </VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Three things are stately in their stride; four are stately in their gait:</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> the lion, which is mightiest among wild animals and does not turn back before any;</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> the strutting rooster, the he-goat, and a king striding before his people. </VERS>\r\n\t\t\t<VERS vnumber=\"32\"> If you have been foolish, exalting yourself, or if you have been devising evil, put your hand on your mouth.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> For as pressing milk produces curds, and pressing the nose produces blood, so pressing anger produces strife.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"31\">\r\n\t\t\t<VERS vnumber=\"1\"> The words of King Lemuel. An oracle that his mother taught him:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> No, my son! No, son of my womb! No, son of my vows!</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Do not give your strength to women, your ways to those who destroy kings.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> It is not for kings, O Lemuel, it is not for kings to drink wine, or for rulers to desire strong drink; </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> or else they will drink and forget what has been decreed, and will pervert the rights of all the afflicted.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Give strong drink to one who is perishing, and wine to those in bitter distress;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> let them drink and forget their poverty, and remember their misery no more.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Speak out for those who cannot speak, for the rights of all the destitute. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Speak out, judge righteously, defend the rights of the poor and needy.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> A capable wife who can find? She is far more precious than jewels.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The heart of her husband trusts in her, and he will have no lack of gain.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> She does him good, and not harm, all the days of her life.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> She seeks wool and flax, and works with willing hands.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> She is like the ships of the merchant, she brings her food from far away.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> She rises while it is still night and provides food for her household and tasks for her servant-girls.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> She considers a field and buys it; with the fruit of her hands she plants a vineyard.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> She girds herself with strength, and makes her arms strong.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> She perceives that her merchandise is profitable. Her lamp does not go out at night.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> She puts her hands to the distaff, and her hands hold the spindle.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> She opens her hand to the poor, and reaches out her hands to the needy.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> She is not afraid for her household when it snows, for all her household are clothed in crimson.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> She makes herself coverings; her clothing is fine linen and purple.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Her husband is known in the city gates, taking his seat among the elders of the land.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> She makes linen garments and sells them; she supplies the merchant with sashes.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Strength and dignity are her clothing, and she laughs at the time to come.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> She opens her mouth with wisdom, and the teaching of kindness is on her tongue.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> She looks well to the ways of her household, and does not eat the bread of idleness.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Her children rise up and call her happy; her husband too, and he praises her:</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> \"Many women have done excellently, but you surpass them all.\"</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Charm is deceitful, and beauty is vain, but a woman who fears the LORD is to be praised.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Give her a share in the fruit of her hands, and let her works praise her in the city gates.</VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"21\" bname=\"Ecclesiastes\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> The words of the Teacher, the son of David, king in Jerusalem. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Vanity of vanities, says the Teacher, vanity of vanities! All is vanity. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> What do people gain from all the toil at which they toil under the sun?</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> A generation goes, and a generation comes, but the earth remains forever.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The sun rises and the sun goes down, and hurries to the place where it rises.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The wind blows to the south, and goes around to the north; round and round goes the wind, and on its circuits the wind returns.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> All streams run to the sea, but the sea is not full; to the place where the streams flow, there they continue to flow.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> All things are wearisome; more than one can express; the eye is not satisfied with seeing, or the ear filled with hearing. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> What has been is what will be, and what has been done is what will be done; there is nothing new under the sun.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Is there a thing of which it is said, \"See, this is new\"? It has already been, in the ages before us.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The people of long ago are not remembered, nor will there be any remembrance of people yet to come by those who come after them.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> I, the Teacher, when king over Israel in Jerusalem, </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> applied my mind to seek and to search out by wisdom all that is done under heaven; it is an unhappy business that God has given to human beings to be busy with.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> I saw all the deeds that are done under the sun; and see, all is vanity and a chasing after wind. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> What is crooked cannot be made straight, and what is lacking cannot be counted.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> I said to myself, \"I have acquired great wisdom, surpassing all who were over Jerusalem before me; and my mind has had great experience of wisdom and knowledge.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> And I applied my mind to know wisdom and to know madness and folly. I perceived that this also is but a chasing after wind. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> For in much wisdom is much vexation, and those who increase knowledge increase sorrow.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> I said to myself, \"Come now, I will make a test of pleasure; enjoy yourself.\" But again, this also was vanity.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> I said of laughter, \"It is mad,\" and of pleasure, \"What use is it?\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> I searched with my mind how to cheer my body with wine-- my mind still guiding me with wisdom-- and how to lay hold on folly, until I might see what was good for mortals to do under heaven during the few days of their life.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> I made great works; I built houses and planted vineyards for myself;</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> I made myself gardens and parks, and planted in them all kinds of fruit trees.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> I made myself pools from which to water the forest of growing trees.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> I bought male and female slaves, and had slaves who were born in my house; I also had great possessions of herds and flocks, more than any who had been before me in Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> I also gathered for myself silver and gold and the treasure of kings and of the provinces; I got singers, both men and women, and delights of the flesh, and many concubines.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> So I became great and surpassed all who were before me in Jerusalem; also my wisdom remained with me.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Whatever my eyes desired I did not keep from them; I kept my heart from no pleasure, for my heart found pleasure in all my toil, and this was my reward for all my toil.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then I considered all that my hands had done and the toil I had spent in doing it, and again, all was vanity and a chasing after wind, and there was nothing to be gained under the sun. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> So I turned to consider wisdom and madness and folly; for what can the one do who comes after the king? Only what has already been done.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then I saw that wisdom excels folly as light excels darkness.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The wise have eyes in their head, but fools walk in darkness. Yet I perceived that the same fate befalls all of them.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Then I said to myself, \"What happens to the fool will happen to me also; why then have I been so very wise?\" And I said to myself that this also is vanity.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> For there is no enduring remembrance of the wise or of fools, seeing that in the days to come all will have been long forgotten. How can the wise die just like fools?</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> So I hated life, because what is done under the sun was grievous to me; for all is vanity and a chasing after wind. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> I hated all my toil in which I had toiled under the sun, seeing that I must leave it to those who come after me</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> -- and who knows whether they will be wise or foolish? Yet they will be master of all for which I toiled and used my wisdom under the sun. This also is vanity.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> So I turned and gave my heart up to despair concerning all the toil of my labors under the sun,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> because sometimes one who has toiled with wisdom and knowledge and skill must leave all to be enjoyed by another who did not toil for it. This also is vanity and a great evil.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> What do mortals get from all the toil and strain with which they toil under the sun?</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> For all their days are full of pain, and their work is a vexation; even at night their minds do not rest. This also is vanity.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> There is nothing better for mortals than to eat and drink, and find enjoyment in their toil. This also, I saw, is from the hand of God;</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> for apart from him who can eat or who can have enjoyment? </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> For to the one who pleases him God gives wisdom and knowledge and joy; but to the sinner he gives the work of gathering and heaping, only to give to one who pleases God. This also is vanity and a chasing after wind. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> For everything there is a season, and a time for every matter under heaven:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> a time to be born, and a time to die; a time to plant, and a time to pluck up what is planted;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> a time to kill, and a time to heal; a time to break down, and a time to build up;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> a time to weep, and a time to laugh; a time to mourn, and a time to dance;</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> a time to throw away stones, and a time to gather stones together; a time to embrace, and a time to refrain from embracing;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> a time to seek, and a time to lose; a time to keep, and a time to throw away;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> a time to tear, and a time to sew; a time to keep silence, and a time to speak;</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> a time to love, and a time to hate; a time for war, and a time for peace.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> What gain have the workers from their toil?</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> I have seen the business that God has given to everyone to be busy with.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> He has made everything suitable for its time; moreover he has put a sense of past and future into their minds, yet they cannot find out what God has done from the beginning to the end.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> I know that there is nothing better for them than to be happy and enjoy themselves as long as they live;</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> moreover, it is God's gift that all should eat and drink and take pleasure in all their toil.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> I know that whatever God does endures forever; nothing can be added to it, nor anything taken from it; God has done this, so that all should stand in awe before him.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> That which is, already has been; that which is to be, already is; and God seeks out what has gone by. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Moreover I saw under the sun that in the place of justice, wickedness was there, and in the place of righteousness, wickedness was there as well.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> I said in my heart, God will judge the righteous and the wicked, for he has appointed a time for every matter, and for every work.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> I said in my heart with regard to human beings that God is testing them to show that they are but animals.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> For the fate of humans and the fate of animals is the same; as one dies, so dies the other. They all have the same breath, and humans have no advantage over the animals; for all is vanity.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> All go to one place; all are from the dust, and all turn to dust again.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Who knows whether the human spirit goes upward and the spirit of animals goes downward to the earth?</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> So I saw that there is nothing better than that all should enjoy their work, for that is their lot; who can bring them to see what will be after them?</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> Again I saw all the oppressions that are practiced under the sun. Look, the tears of the oppressed-- with no one to comfort them! On the side of their oppressors there was power-- with no one to comfort them.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And I thought the dead, who have already died, more fortunate than the living, who are still alive;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> but better than both is the one who has not yet been, and has not seen the evil deeds that are done under the sun.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then I saw that all toil and all skill in work come from one person's envy of another. This also is vanity and a chasing after wind. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Fools fold their hands and consume their own flesh.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Better is a handful with quiet than two handfuls with toil, and a chasing after wind. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Again, I saw vanity under the sun:</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> the case of solitary individuals, without sons or brothers; yet there is no end to all their toil, and their eyes are never satisfied with riches. \"For whom am I toiling,\" they ask, \"and depriving myself of pleasure?\" This also is vanity and an unhappy business.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Two are better than one, because they have a good reward for their toil.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For if they fall, one will lift up the other; but woe to one who is alone and falls and does not have another to help.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Again, if two lie together, they keep warm; but how can one keep warm alone?</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> And though one might prevail against another, two will withstand one. A threefold cord is not quickly broken.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Better is a poor but wise youth than an old but foolish king, who will no longer take advice.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> One can indeed come out of prison to reign, even though born poor in the kingdom.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> I saw all the living who, moving about under the sun, follow that youth who replaced the king; </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> there was no end to all those people whom he led. Yet those who come later will not rejoice in him. Surely this also is vanity and a chasing after wind. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"5\">\r\n\t\t\t<VERS vnumber=\"1\"> Guard your steps when you go to the house of God; to draw near to listen is better than the sacrifice offered by fools; for they do not know how to keep from doing evil. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Never be rash with your mouth, nor let your heart be quick to utter a word before God, for God is in heaven, and you upon earth; therefore let your words be few.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For dreams come with many cares, and a fool's voice with many words.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> When you make a vow to God, do not delay fulfilling it; for he has no pleasure in fools. Fulfill what you vow.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> It is better that you should not vow than that you should vow and not fulfill it.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Do not let your mouth lead you into sin, and do not say before the messenger that it was a mistake; why should God be angry at your words, and destroy the work of your hands?</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> With many dreams come vanities and a multitude of words; but fear God. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> If you see in a province the oppression of the poor and the violation of justice and right, do not be amazed at the matter; for the high official is watched by a higher, and there are yet higher ones over them.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> But all things considered, this is an advantage for a land: a king for a plowed field. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The lover of money will not be satisfied with money; nor the lover of wealth, with gain. This also is vanity.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> When goods increase, those who eat them increase; and what gain has their owner but to see them with his eyes?</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Sweet is the sleep of laborers, whether they eat little or much; but the surfeit of the rich will not let them sleep.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> There is a grievous ill that I have seen under the sun: riches were kept by their owners to their hurt,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> and those riches were lost in a bad venture; though they are parents of children, they have nothing in their hands.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> As they came from their mother's womb, so they shall go again, naked as they came; they shall take nothing for their toil, which they may carry away with their hands.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> This also is a grievous ill: just as they came, so shall they go; and what gain do they have from toiling for the wind?</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Besides, all their days they eat in darkness, in much vexation and sickness and resentment.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> This is what I have seen to be good: it is fitting to eat and drink and find enjoyment in all the toil with which one toils under the sun the few days of the life God gives us; for this is our lot.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Likewise all to whom God gives wealth and possessions and whom he enables to enjoy them, and to accept their lot and find enjoyment in their toil-- this is the gift of God.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> For they will scarcely brood over the days of their lives, because God keeps them occupied with the joy of their hearts.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"6\">\r\n\t\t\t<VERS vnumber=\"1\"> There is an evil that I have seen under the sun, and it lies heavy upon humankind:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> those to whom God gives wealth, possessions, and honor, so that they lack nothing of all that they desire, yet God does not enable them to enjoy these things, but a stranger enjoys them. This is vanity; it is a grievous ill.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> A man may beget a hundred children, and live many years; but however many are the days of his years, if he does not enjoy life's good things, or has no burial, I say that a stillborn child is better off than he.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For it comes into vanity and goes into darkness, and in darkness its name is covered;</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> moreover it has not seen the sun or known anything; yet it finds rest rather than he.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Even though he should live a thousand years twice over, yet enjoy no good-- do not all go to one place?</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> All human toil is for the mouth, yet the appetite is not satisfied.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> For what advantage have the wise over fools? And what do the poor have who know how to conduct themselves before the living?</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Better is the sight of the eyes than the wandering of desire; this also is vanity and a chasing after wind. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Whatever has come to be has already been named, and it is known what human beings are, and that they are not able to dispute with those who are stronger.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The more words, the more vanity, so how is one the better?</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> For who knows what is good for mortals while they live the few days of their vain life, which they pass like a shadow? For who can tell them what will be after them under the sun?</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"7\">\r\n\t\t\t<VERS vnumber=\"1\"> A good name is better than precious ointment, and the day of death, than the day of birth.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> It is better to go to the house of mourning than to go to the house of feasting; for this is the end of everyone, and the living will lay it to heart.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Sorrow is better than laughter, for by sadness of countenance the heart is made glad.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The heart of the wise is in the house of mourning; but the heart of fools is in the house of mirth.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> It is better to hear the rebuke of the wise than to hear the song of fools.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For like the crackling of thorns under a pot, so is the laughter of fools; this also is vanity.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Surely oppression makes the wise foolish, and a bribe corrupts the heart.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Better is the end of a thing than its beginning; the patient in spirit are better than the proud in spirit.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Do not be quick to anger, for anger lodges in the bosom of fools.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Do not say, \"Why were the former days better than these?\" For it is not from wisdom that you ask this.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Wisdom is as good as an inheritance, an advantage to those who see the sun.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> For the protection of wisdom is like the protection of money, and the advantage of knowledge is that wisdom gives life to the one who possesses it.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Consider the work of God; who can make straight what he has made crooked?</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> In the day of prosperity be joyful, and in the day of adversity consider; God has made the one as well as the other, so that mortals may not find out anything that will come after them.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> In my vain life I have seen everything; there are righteous people who perish in their righteousness, and there are wicked people who prolong their life in their evildoing.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Do not be too righteous, and do not act too wise; why should you destroy yourself?</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Do not be too wicked, and do not be a fool; why should you die before your time?</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> It is good that you should take hold of the one, without letting go of the other; for the one who fears God shall succeed with both.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Wisdom gives strength to the wise more than ten rulers that are in a city.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Surely there is no one on earth so righteous as to do good without ever sinning.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Do not give heed to everything that people say, or you may hear your servant cursing you;</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> your heart knows that many times you have yourself cursed others.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> All this I have tested by wisdom; I said, \"I will be wise,\" but it was far from me.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> That which is, is far off, and deep, very deep; who can find it out?</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> I turned my mind to know and to search out and to seek wisdom and the sum of things, and to know that wickedness is folly and that foolishness is madness.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> I found more bitter than death the woman who is a trap, whose heart is snares and nets, whose hands are fetters; one who pleases God escapes her, but the sinner is taken by her.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> See, this is what I found, says the Teacher, adding one thing to another to find the sum, </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> which my mind has sought repeatedly, but I have not found. One man among a thousand I found, but a woman among all these I have not found.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> See, this alone I found, that God made human beings straightforward, but they have devised many schemes.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"8\">\r\n\t\t\t<VERS vnumber=\"1\"> Who is like the wise man? And who knows the interpretation of a thing? Wisdom makes one's face shine, and the hardness of one's countenance is changed.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Keep the king's command because of your sacred oath. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Do not be terrified; go from his presence, do not delay when the matter is unpleasant, for he does whatever he pleases.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For the word of the king is powerful, and who can say to him, \"What are you doing?\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Whoever obeys a command will meet no harm, and the wise mind will know the time and way.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For every matter has its time and way, although the troubles of mortals lie heavy upon them.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Indeed, they do not know what is to be, for who can tell them how it will be?</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> No one has power over the wind to restrain the wind, or power over the day of death; there is no discharge from the battle, nor does wickedness deliver those who practice it.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> All this I observed, applying my mind to all that is done under the sun, while one person exercises authority over another to the other's hurt.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then I saw the wicked buried; they used to go in and out of the holy place, and were praised in the city where they had done such things. This also is vanity. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Because sentence against an evil deed is not executed speedily, the human heart is fully set to do evil.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Though sinners do evil a hundred times and prolong their lives, yet I know that it will be well with those who fear God, because they stand in fear before him,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> but it will not be well with the wicked, neither will they prolong their days like a shadow, because they do not stand in fear before God.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> There is a vanity that takes place on earth, that there are righteous people who are treated according to the conduct of the wicked, and there are wicked people who are treated according to the conduct of the righteous. I said that this also is vanity.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> So I commend enjoyment, for there is nothing better for people under the sun than to eat, and drink, and enjoy themselves, for this will go with them in their toil through the days of life that God gives them under the sun.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> When I applied my mind to know wisdom, and to see the business that is done on earth, how one's eyes see sleep neither day nor night,</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> then I saw all the work of God, that no one can find out what is happening under the sun. However much they may toil in seeking, they will not find it out; even though those who are wise claim to know, they cannot find it out.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"9\">\r\n\t\t\t<VERS vnumber=\"1\"> All this I laid to heart, examining it all, how the righteous and the wise and their deeds are in the hand of God; whether it is love or hate one does not know. Everything that confronts them</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> is vanity, since the same fate comes to all, to the righteous and the wicked, to the good and the evil, to the clean and the unclean, to those who sacrifice and those who do not sacrifice. As are the good, so are the sinners; those who swear are like those who shun an oath. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> This is an evil in all that happens under the sun, that the same fate comes to everyone. Moreover, the hearts of all are full of evil; madness is in their hearts while they live, and after that they go to the dead.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But whoever is joined with all the living has hope, for a living dog is better than a dead lion.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The living know that they will die, but the dead know nothing; they have no more reward, and even the memory of them is lost.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Their love and their hate and their envy have already perished; never again will they have any share in all that happens under the sun.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Go, eat your bread with enjoyment, and drink your wine with a merry heart; for God has long ago approved what you do.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Let your garments always be white; do not let oil be lacking on your head.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Enjoy life with the wife whom you love, all the days of your vain life that are given you under the sun, because that is your portion in life and in your toil at which you toil under the sun.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Whatever your hand finds to do, do with your might; for there is no work or thought or knowledge or wisdom in Sheol, to which you are going.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Again I saw that under the sun the race is not to the swift, nor the battle to the strong, nor bread to the wise, nor riches to the intelligent, nor favor to the skillful; but time and chance happen to them all.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> For no one can anticipate the time of disaster. Like fish taken in a cruel net, and like birds caught in a snare, so mortals are snared at a time of calamity, when it suddenly falls upon them.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> I have also seen this example of wisdom under the sun, and it seemed great to me.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> There was a little city with few people in it. A great king came against it and besieged it, building great siegeworks against it.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Now there was found in it a poor wise man, and he by his wisdom delivered the city. Yet no one remembered that poor man.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> So I said, \"Wisdom is better than might; yet the poor man's wisdom is despised, and his words are not heeded.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The quiet words of the wise are more to be heeded than the shouting of a ruler among fools.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Wisdom is better than weapons of war, but one bungler destroys much good.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"10\">\r\n\t\t\t<VERS vnumber=\"1\"> Dead flies make the perfumer's ointment give off a foul odor; so a little folly outweighs wisdom and honor.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The heart of the wise inclines to the right, but the heart of a fool to the left.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Even when fools walk on the road, they lack sense, and show to everyone that they are fools.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> If the anger of the ruler rises against you, do not leave your post, for calmness will undo great offenses.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> There is an evil that I have seen under the sun, as great an error as if it proceeded from the ruler:</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> folly is set in many high places, and the rich sit in a low place.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> I have seen slaves on horseback, and princes walking on foot like slaves.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Whoever digs a pit will fall into it; and whoever breaks through a wall will be bitten by a snake.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Whoever quarries stones will be hurt by them; and whoever splits logs will be endangered by them.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> If the iron is blunt, and one does not whet the edge, then more strength must be exerted; but wisdom helps one to succeed.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> If the snake bites before it is charmed, there is no advantage in a charmer.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Words spoken by the wise bring them favor, but the lips of fools consume them.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The words of their mouths begin in foolishness, and their talk ends in wicked madness;</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> yet fools talk on and on. No one knows what is to happen, and who can tell anyone what the future holds?</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The toil of fools wears them out, for they do not even know the way to town.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Alas for you, O land, when your king is a servant, and your princes feast in the morning! </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Happy are you, O land, when your king is a nobleman, and your princes feast at the proper time-- for strength, and not for drunkenness!</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Through sloth the roof sinks in, and through indolence the house leaks.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Feasts are made for laughter; wine gladdens life, and money meets every need.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Do not curse the king, even in your thoughts, or curse the rich, even in your bedroom; for a bird of the air may carry your voice, or some winged creature tell the matter.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"11\">\r\n\t\t\t<VERS vnumber=\"1\"> Send out your bread upon the waters, for after many days you will get it back.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Divide your means seven ways, or even eight, for you do not know what disaster may happen on earth.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> When clouds are full, they empty rain on the earth; whether a tree falls to the south or to the north, in the place where the tree falls, there it will lie.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Whoever observes the wind will not sow; and whoever regards the clouds will not reap.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Just as you do not know how the breath comes to the bones in the mother's womb, so you do not know the work of God, who makes everything.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> In the morning sow your seed, and at evening do not let your hands be idle; for you do not know which will prosper, this or that, or whether both alike will be good.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Light is sweet, and it is pleasant for the eyes to see the sun.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Even those who live many years should rejoice in them all; yet let them remember that the days of darkness will be many. All that comes is vanity.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Rejoice, young man, while you are young, and let your heart cheer you in the days of your youth. Follow the inclination of your heart and the desire of your eyes, but know that for all these things God will bring you into judgment.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Banish anxiety from your mind, and put away pain from your body; for youth and the dawn of life are vanity.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"12\">\r\n\t\t\t<VERS vnumber=\"1\"> Remember your creator in the days of your youth, before the days of trouble come, and the years draw near when you will say, \"I have no pleasure in them\";</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> before the sun and the light and the moon and the stars are darkened and the clouds return with the rain; </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> in the day when the guards of the house tremble, and the strong men are bent, and the women who grind cease working because they are few, and those who look through the windows see dimly;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> when the doors on the street are shut, and the sound of the grinding is low, and one rises up at the sound of a bird, and all the daughters of song are brought low;</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> when one is afraid of heights, and terrors are in the road; the almond tree blossoms, the grasshopper drags itself along and desire fails; because all must go to their eternal home, and the mourners will go about the streets; </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> before the silver cord is snapped, and the golden bowl is broken, and the pitcher is broken at the fountain, and the wheel broken at the cistern, </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> and the dust returns to the earth as it was, and the breath returns to God who gave it. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Vanity of vanities, says the Teacher; all is vanity. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Besides being wise, the Teacher also taught the people knowledge, weighing and studying and arranging many proverbs. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The Teacher sought to find pleasing words, and he wrote words of truth plainly. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The sayings of the wise are like goads, and like nails firmly fixed are the collected sayings that are given by one shepherd. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Of anything beyond these, my child, beware. Of making many books there is no end, and much study is a weariness of the flesh.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The end of the matter; all has been heard. Fear God, and keep his commandments; for that is the whole duty of everyone.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> For God will bring every deed into judgment, including every secret thing, whether good or evil. </VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"22\" bname=\"Song of Solomon\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> The Song of Songs, which is Solomon's.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Let him kiss me with the kisses of his mouth! For your love is better than wine,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> your anointing oils are fragrant, your name is perfume poured out; therefore the maidens love you.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Draw me after you, let us make haste. The king has brought me into his chambers. We will exult and rejoice in you; we will extol your love more than wine; rightly do they love you.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> I am black and beautiful, O daughters of Jerusalem, like the tents of Kedar, like the curtains of Solomon.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Do not gaze at me because I am dark, because the sun has gazed on me. My mother's sons were angry with me; they made me keeper of the vineyards, but my own vineyard I have not kept!</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Tell me, you whom my soul loves, where you pasture your flock, where you make it lie down at noon; for why should I be like one who is veiled beside the flocks of your companions?</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> If you do not know, O fairest among women, follow the tracks of the flock, and pasture your kids beside the shepherds' tents.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> I compare you, my love, to a mare among Pharaoh's chariots.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Your cheeks are comely with ornaments, your neck with strings of jewels.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> We will make you ornaments of gold, studded with silver.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> While the king was on his couch, my nard gave forth its fragrance.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> My beloved is to me a bag of myrrh that lies between my breasts.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> My beloved is to me a cluster of henna blossoms in the vineyards of En-gedi.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Ah, you are beautiful, my love; ah, you are beautiful; your eyes are doves.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Ah, you are beautiful, my beloved, truly lovely. Our couch is green;</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> the beams of our house are cedar, our rafters are pine. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> I am a rose of Sharon, a lily of the valleys. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> As a lily among brambles, so is my love among maidens.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> As an apple tree among the trees of the wood, so is my beloved among young men. With great delight I sat in his shadow, and his fruit was sweet to my taste.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> He brought me to the banqueting house, and his intention toward me was love.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Sustain me with raisins, refresh me with apples; for I am faint with love.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> O that his left hand were under my head, and that his right hand embraced me!</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> I adjure you, O daughters of Jerusalem, by the gazelles or the wild does: do not stir up or awaken love until it is ready!</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The voice of my beloved! Look, he comes, leaping upon the mountains, bounding over the hills.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> My beloved is like a gazelle or a young stag. Look, there he stands behind our wall, gazing in at the windows, looking through the lattice.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> My beloved speaks and says to me: \"Arise, my love, my fair one, and come away;</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> for now the winter is past, the rain is over and gone.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The flowers appear on the earth; the time of singing has come, and the voice of the turtledove is heard in our land.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The fig tree puts forth its figs, and the vines are in blossom; they give forth fragrance. Arise, my love, my fair one, and come away.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> O my dove, in the clefts of the rock, in the covert of the cliff, let me see your face, let me hear your voice; for your voice is sweet, and your face is lovely.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Catch us the foxes, the little foxes, that ruin the vineyards-- for our vineyards are in blossom.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> My beloved is mine and I am his; he pastures his flock among the lilies.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Until the day breathes and the shadows flee, turn, my beloved, be like a gazelle or a young stag on the cleft mountains. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> Upon my bed at night I sought him whom my soul loves; I sought him, but found him not; I called him, but he gave no answer. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"I will rise now and go about the city, in the streets and in the squares; I will seek him whom my soul loves.\" I sought him, but found him not.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The sentinels found me, as they went about in the city. \"Have you seen him whom my soul loves?\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Scarcely had I passed them, when I found him whom my soul loves. I held him, and would not let him go until I brought him into my mother's house, and into the chamber of her that conceived me.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> I adjure you, O daughters of Jerusalem, by the gazelles or the wild does: do not stir up or awaken love until it is ready!</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> What is that coming up from the wilderness, like a column of smoke, perfumed with myrrh and frankincense, with all the fragrant powders of the merchant?</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Look, it is the litter of Solomon! Around it are sixty mighty men of the mighty men of Israel,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> all equipped with swords and expert in war, each with his sword at his thigh because of alarms by night.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> King Solomon made himself a palanquin from the wood of Lebanon.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> He made its posts of silver, its back of gold, its seat of purple; its interior was inlaid with love. Daughters of Jerusalem, </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> come out. Look, O daughters of Zion, at King Solomon, at the crown with which his mother crowned him on the day of his wedding, on the day of the gladness of his heart.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> How beautiful you are, my love, how very beautiful! Your eyes are doves behind your veil. Your hair is like a flock of goats, moving down the slopes of Gilead.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Your teeth are like a flock of shorn ewes that have come up from the washing, all of which bear twins, and not one among them is bereaved.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Your lips are like a crimson thread, and your mouth is lovely. Your cheeks are like halves of a pomegranate behind your veil.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Your neck is like the tower of David, built in courses; on it hang a thousand bucklers, all of them shields of warriors.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Your two breasts are like two fawns, twins of a gazelle, that feed among the lilies.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Until the day breathes and the shadows flee, I will hasten to the mountain of myrrh and the hill of frankincense.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> You are altogether beautiful, my love; there is no flaw in you.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Come with me from Lebanon, my bride; come with me from Lebanon. Depart from the peak of Amana, from the peak of Senir and Hermon, from the dens of lions, from the mountains of leopards. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> You have ravished my heart, my sister, my bride, you have ravished my heart with a glance of your eyes, with one jewel of your necklace.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> How sweet is your love, my sister, my bride! how much better is your love than wine, and the fragrance of your oils than any spice!</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Your lips distill nectar, my bride; honey and milk are under your tongue; the scent of your garments is like the scent of Lebanon.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> A garden locked is my sister, my bride, a garden locked, a fountain sealed.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Your channel is an orchard of pomegranates with all choicest fruits, henna with nard, </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> nard and saffron, calamus and cinnamon, with all trees of frankincense, myrrh and aloes, with all chief spices--</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> a garden fountain, a well of living water, and flowing streams from Lebanon.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Awake, O north wind, and come, O south wind! Blow upon my garden that its fragrance may be wafted abroad. Let my beloved come to his garden, and eat its choicest fruits.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"5\">\r\n\t\t\t<VERS vnumber=\"1\"> I come to my garden, my sister, my bride; I gather my myrrh with my spice, I eat my honeycomb with my honey, I drink my wine with my milk. Eat, friends, drink, and be drunk with love.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> I slept, but my heart was awake. Listen! my beloved is knocking. \"Open to me, my sister, my love, my dove, my perfect one; for my head is wet with dew, my locks with the drops of the night.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> I had put off my garment; how could I put it on again? I had bathed my feet; how could I soil them?</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> My beloved thrust his hand into the opening, and my inmost being yearned for him.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> I arose to open to my beloved, and my hands dripped with myrrh, my fingers with liquid myrrh, upon the handles of the bolt.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> I opened to my beloved, but my beloved had turned and was gone. My soul failed me when he spoke. I sought him, but did not find him; I called him, but he gave no answer.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Making their rounds in the city the sentinels found me; they beat me, they wounded me, they took away my mantle, those sentinels of the walls.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> I adjure you, O daughters of Jerusalem, if you find my beloved, tell him this: I am faint with love.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> What is your beloved more than another beloved, O fairest among women? What is your beloved more than another beloved, that you thus adjure us?</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> My beloved is all radiant and ruddy, distinguished among ten thousand.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> His head is the finest gold; his locks are wavy, black as a raven.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> His eyes are like doves beside springs of water, bathed in milk, fitly set. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> His cheeks are like beds of spices, yielding fragrance. His lips are lilies, distilling liquid myrrh.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> His arms are rounded gold, set with jewels. His body is ivory work, encrusted with sapphires. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> His legs are alabaster columns, set upon bases of gold. His appearance is like Lebanon, choice as the cedars.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> His speech is most sweet, and he is altogether desirable. This is my beloved and this is my friend, O daughters of Jerusalem.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"6\">\r\n\t\t\t<VERS vnumber=\"1\"> Where has your beloved gone, O fairest among women? Which way has your beloved turned, that we may seek him with you?</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> My beloved has gone down to his garden, to the beds of spices, to pasture his flock in the gardens, and to gather lilies.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> I am my beloved's and my beloved is mine; he pastures his flock among the lilies.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> You are beautiful as Tirzah, my love, comely as Jerusalem, terrible as an army with banners.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Turn away your eyes from me, for they overwhelm me! Your hair is like a flock of goats, moving down the slopes of Gilead.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Your teeth are like a flock of ewes, that have come up from the washing; all of them bear twins, and not one among them is bereaved.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Your cheeks are like halves of a pomegranate behind your veil.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> There are sixty queens and eighty concubines, and maidens without number.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> My dove, my perfect one, is the only one, the darling of her mother, flawless to her that bore her. The maidens saw her and called her happy; the queens and concubines also, and they praised her.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> \"Who is this that looks forth like the dawn, fair as the moon, bright as the sun, terrible as an army with banners?\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> I went down to the nut orchard, to look at the blossoms of the valley, to see whether the vines had budded, whether the pomegranates were in bloom.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Before I was aware, my fancy set me in a chariot beside my prince. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Return, return, O Shulammite! Return, return, that we may look upon you. Why should you look upon the Shulammite, as upon a dance before two armies? </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"7\">\r\n\t\t\t<VERS vnumber=\"1\"> How graceful are your feet in sandals, O queenly maiden! Your rounded thighs are like jewels, the work of a master hand.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Your navel is a rounded bowl that never lacks mixed wine. Your belly is a heap of wheat, encircled with lilies.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Your two breasts are like two fawns, twins of a gazelle.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Your neck is like an ivory tower. Your eyes are pools in Heshbon, by the gate of Bath-rabbim. Your nose is like a tower of Lebanon, overlooking Damascus.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Your head crowns you like Carmel, and your flowing locks are like purple; a king is held captive in the tresses. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> How fair and pleasant you are, O loved one, delectable maiden! </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> You are stately as a palm tree, and your breasts are like its clusters. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> I say I will climb the palm tree and lay hold of its branches. Oh, may your breasts be like clusters of the vine, and the scent of your breath like apples,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> and your kisses like the best wine that goes down smoothly, gliding over lips and teeth. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> I am my beloved's, and his desire is for me.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Come, my beloved, let us go forth into the fields, and lodge in the villages;</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> let us go out early to the vineyards, and see whether the vines have budded, whether the grape blossoms have opened and the pomegranates are in bloom. There I will give you my love.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The mandrakes give forth fragrance, and over our doors are all choice fruits, new as well as old, which I have laid up for you, O my beloved.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"8\">\r\n\t\t\t<VERS vnumber=\"1\"> O that you were like a brother to me, who nursed at my mother's breast! If I met you outside, I would kiss you, and no one would despise me.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> I would lead you and bring you into the house of my mother, and into the chamber of the one who bore me. I would give you spiced wine to drink, the juice of my pomegranates. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> O that his left hand were under my head, and that his right hand embraced me!</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> I adjure you, O daughters of Jerusalem, do not stir up or awaken love until it is ready!</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Who is that coming up from the wilderness, leaning upon her beloved? Under the apple tree I awakened you. There your mother was in labor with you; there she who bore you was in labor.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Set me as a seal upon your heart, as a seal upon your arm; for love is strong as death, passion fierce as the grave. Its flashes are flashes of fire, a raging flame.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Many waters cannot quench love, neither can floods drown it. If one offered for love all the wealth of his house, it would be utterly scorned.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> We have a little sister, and she has no breasts. What shall we do for our sister, on the day when she is spoken for?</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> If she is a wall, we will build upon her a battlement of silver; but if she is a door, we will enclose her with boards of cedar.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> I was a wall, and my breasts were like towers; then I was in his eyes as one who brings peace. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Solomon had a vineyard at Baal-hamon; he entrusted the vineyard to keepers; each one was to bring for its fruit a thousand pieces of silver.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> My vineyard, my very own, is for myself; you, O Solomon, may have the thousand, and the keepers of the fruit two hundred!</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> O you who dwell in the gardens, my companions are listening for your voice; let me hear it.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Make haste, my beloved, and be like a gazelle or a young stag upon the mountains of spices!</VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"23\" bname=\"Isaiah\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> The vision of Isaiah son of Amoz, which he saw concerning Judah and Jerusalem in the days of Uzziah, Jotham, Ahaz, and Hezekiah, kings of Judah.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Hear, O heavens, and listen, O earth; for the LORD has spoken: I reared children and brought them up, but they have rebelled against me.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The ox knows its owner, and the donkey its master's crib; but Israel does not know, my people do not understand.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Ah, sinful nation, people laden with iniquity, offspring who do evil, children who deal corruptly, who have forsaken the LORD, who have despised the Holy One of Israel, who are utterly estranged!</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Why do you seek further beatings? Why do you continue to rebel? The whole head is sick, and the whole heart faint.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> From the sole of the foot even to the head, there is no soundness in it, but bruises and sores and bleeding wounds; they have not been drained, or bound up, or softened with oil.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Your country lies desolate, your cities are burned with fire; in your very presence aliens devour your land; it is desolate, as overthrown by foreigners.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And daughter Zion is left like a booth in a vineyard, like a shelter in a cucumber field, like a besieged city.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> If the LORD of hosts had not left us a few survivors, we would have been like Sodom, and become like Gomorrah.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Hear the word of the LORD, you rulers of Sodom! Listen to the teaching of our God, you people of Gomorrah!</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> What to me is the multitude of your sacrifices? says the LORD; I have had enough of burnt offerings of rams and the fat of fed beasts; I do not delight in the blood of bulls, or of lambs, or of goats.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> When you come to appear before me, who asked this from your hand? Trample my courts no more; </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> bringing offerings is futile; incense is an abomination to me. New moon and sabbath and calling of convocation-- I cannot endure solemn assemblies with iniquity.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Your new moons and your appointed festivals my soul hates; they have become a burden to me, I am weary of bearing them.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> When you stretch out your hands, I will hide my eyes from you; even though you make many prayers, I will not listen; your hands are full of blood.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Wash yourselves; make yourselves clean; remove the evil of your doings from before my eyes; cease to do evil,</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> learn to do good; seek justice, rescue the oppressed, defend the orphan, plead for the widow.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Come now, let us argue it out, says the LORD: though your sins are like scarlet, they shall be like snow; though they are red like crimson, they shall become like wool.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> If you are willing and obedient, you shall eat the good of the land;</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> but if you refuse and rebel, you shall be devoured by the sword; for the mouth of the LORD has spoken.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> How the faithful city has become a whore! She that was full of justice, righteousness lodged in her-- but now murderers!</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Your silver has become dross, your wine is mixed with water.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Your princes are rebels and companions of thieves. Everyone loves a bribe and runs after gifts. They do not defend the orphan, and the widow's cause does not come before them.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Therefore says the Sovereign, the LORD of hosts, the Mighty One of Israel: Ah, I will pour out my wrath on my enemies, and avenge myself on my foes!</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> I will turn my hand against you; I will smelt away your dross as with lye and remove all your alloy.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> And I will restore your judges as at the first, and your counselors as at the beginning. Afterward you shall be called the city of righteousness, the faithful city.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Zion shall be redeemed by justice, and those in her who repent, by righteousness.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> But rebels and sinners shall be destroyed together, and those who forsake the LORD shall be consumed.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> For you shall be ashamed of the oaks in which you delighted; and you shall blush for the gardens that you have chosen.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> For you shall be like an oak whose leaf withers, and like a garden without water.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> The strong shall become like tinder, and their work like a spark; they and their work shall burn together, with no one to quench them. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> The word that Isaiah son of Amoz saw concerning Judah and Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> In days to come the mountain of the LORD's house shall be established as the highest of the mountains, and shall be raised above the hills; all the nations shall stream to it.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Many peoples shall come and say, \"Come, let us go up to the mountain of the LORD, to the house of the God of Jacob; that he may teach us his ways and that we may walk in his paths.\" For out of Zion shall go forth instruction, and the word of the LORD from Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> He shall judge between the nations, and shall arbitrate for many peoples; they shall beat their swords into plowshares, and their spears into pruning hooks; nation shall not lift up sword against nation, neither shall they learn war any more.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> O house of Jacob, come, let us walk in the light of the LORD!</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For you have forsaken the ways of your people, O house of Jacob. Indeed they are full of diviners from the east and of soothsayers like the Philistines, and they clasp hands with foreigners. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Their land is filled with silver and gold, and there is no end to their treasures; their land is filled with horses, and there is no end to their chariots.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Their land is filled with idols; they bow down to the work of their hands, to what their own fingers have made.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> And so people are humbled, and everyone is brought low-- do not forgive them!</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Enter into the rock, and hide in the dust from the terror of the LORD, and from the glory of his majesty.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The haughty eyes of people shall be brought low, and the pride of everyone shall be humbled; and the LORD alone will be exalted in that day.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> For the LORD of hosts has a day against all that is proud and lofty, against all that is lifted up and high; </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> against all the cedars of Lebanon, lofty and lifted up; and against all the oaks of Bashan;</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> against all the high mountains, and against all the lofty hills;</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> against every high tower, and against every fortified wall;</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> against all the ships of Tarshish, and against all the beautiful craft. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The haughtiness of people shall be humbled, and the pride of everyone shall be brought low; and the LORD alone will be exalted on that day.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The idols shall utterly pass away.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Enter the caves of the rocks and the holes of the ground, from the terror of the LORD, and from the glory of his majesty, when he rises to terrify the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> On that day people will throw away to the moles and to the bats their idols of silver and their idols of gold, which they made for themselves to worship,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> to enter the caverns of the rocks and the clefts in the crags, from the terror of the LORD, and from the glory of his majesty, when he rises to terrify the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Turn away from mortals, who have only breath in their nostrils, for of what account are they?</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> For now the Sovereign, the LORD of hosts, is taking away from Jerusalem and from Judah support and staff-- all support of bread, and all support of water--</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> warrior and soldier, judge and prophet, diviner and elder,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> captain of fifty and dignitary, counselor and skillful magician and expert enchanter.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> And I will make boys their princes, and babes shall rule over them.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The people will be oppressed, everyone by another and everyone by a neighbor; the youth will be insolent to the elder, and the base to the honorable.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Someone will even seize a relative, a member of the clan, saying, \"You have a cloak; you shall be our leader, and this heap of ruins shall be under your rule.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But the other will cry out on that day, saying, \"I will not be a healer; in my house there is neither bread nor cloak; you shall not make me leader of the people.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> For Jerusalem has stumbled and Judah has fallen, because their speech and their deeds are against the LORD, defying his glorious presence.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The look on their faces bears witness against them; they proclaim their sin like Sodom, they do not hide it. Woe to them! For they have brought evil on themselves.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Tell the innocent how fortunate they are, for they shall eat the fruit of their labors.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Woe to the guilty! How unfortunate they are, for what their hands have done shall be done to them.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> My people-- children are their oppressors, and women rule over them. O my people, your leaders mislead you, and confuse the course of your paths.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The LORD rises to argue his case; he stands to judge the peoples.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The LORD enters into judgment with the elders and princes of his people: It is you who have devoured the vineyard; the spoil of the poor is in your houses.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> What do you mean by crushing my people, by grinding the face of the poor? says the Lord GOD of hosts.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The LORD said: Because the daughters of Zion are haughty and walk with outstretched necks, glancing wantonly with their eyes, mincing along as they go, tinkling with their feet;</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> the Lord will afflict with scabs the heads of the daughters of Zion, and the LORD will lay bare their secret parts.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> In that day the Lord will take away the finery of the anklets, the headbands, and the crescents;</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> the pendants, the bracelets, and the scarfs;</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> the headdresses, the armlets, the sashes, the perfume boxes, and the amulets;</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> the signet rings and nose rings;</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> the festal robes, the mantles, the cloaks, and the handbags;</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> the garments of gauze, the linen garments, the turbans, and the veils.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Instead of perfume there will be a stench; and instead of a sash, a rope; and instead of well-set hair, baldness; and instead of a rich robe, a binding of sackcloth; instead of beauty, shame. </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Your men shall fall by the sword and your warriors in battle.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> And her gates shall lament and mourn; ravaged, she shall sit upon the ground.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> Seven women shall take hold of one man in that day, saying, \"We will eat our own bread and wear our own clothes; just let us be called by your name; take away our disgrace.\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> On that day the branch of the LORD shall be beautiful and glorious, and the fruit of the land shall be the pride and glory of the survivors of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Whoever is left in Zion and remains in Jerusalem will be called holy, everyone who has been recorded for life in Jerusalem,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> once the Lord has washed away the filth of the daughters of Zion and cleansed the bloodstains of Jerusalem from its midst by a spirit of judgment and by a spirit of burning.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then the LORD will create over the whole site of Mount Zion and over its places of assembly a cloud by day and smoke and the shining of a flaming fire by night. Indeed over all the glory there will be a canopy.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> It will serve as a pavilion, a shade by day from the heat, and a refuge and a shelter from the storm and rain.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"5\">\r\n\t\t\t<VERS vnumber=\"1\"> Let me sing for my beloved my love-song concerning his vineyard: My beloved had a vineyard on a very fertile hill.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He dug it and cleared it of stones, and planted it with choice vines; he built a watchtower in the midst of it, and hewed out a wine vat in it; he expected it to yield grapes, but it yielded wild grapes.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And now, inhabitants of Jerusalem and people of Judah, judge between me and my vineyard.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> What more was there to do for my vineyard that I have not done in it? When I expected it to yield grapes, why did it yield wild grapes?</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> And now I will tell you what I will do to my vineyard. I will remove its hedge, and it shall be devoured; I will break down its wall, and it shall be trampled down.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> I will make it a waste; it shall not be pruned or hoed, and it shall be overgrown with briers and thorns; I will also command the clouds that they rain no rain upon it.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> For the vineyard of the LORD of hosts is the house of Israel, and the people of Judah are his pleasant planting; he expected justice, but saw bloodshed; righteousness, but heard a cry!</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Ah, you who join house to house, who add field to field, until there is room for no one but you, and you are left to live alone in the midst of the land!</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The LORD of hosts has sworn in my hearing: Surely many houses shall be desolate, large and beautiful houses, without inhabitant.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For ten acres of vineyard shall yield but one bath, and a homer of seed shall yield a mere ephah. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Ah, you who rise early in the morning in pursuit of strong drink, who linger in the evening to be inflamed by wine,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> whose feasts consist of lyre and harp, tambourine and flute and wine, but who do not regard the deeds of the LORD, or see the work of his hands!</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Therefore my people go into exile without knowledge; their nobles are dying of hunger, and their multitude is parched with thirst.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Therefore Sheol has enlarged its appetite and opened its mouth beyond measure; the nobility of Jerusalem and her multitude go down, her throng and all who exult in her. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> People are bowed down, everyone is brought low, and the eyes of the haughty are humbled.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> But the LORD of hosts is exalted by justice, and the Holy God shows himself holy by righteousness.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then the lambs shall graze as in their pasture, fatlings and kids shall feed among the ruins. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Ah, you who drag iniquity along with cords of falsehood, who drag sin along as with cart ropes,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> who say, \"Let him make haste, let him speed his work that we may see it; let the plan of the Holy One of Israel hasten to fulfillment, that we may know it!\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Ah, you who call evil good and good evil, who put darkness for light and light for darkness, who put bitter for sweet and sweet for bitter!</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Ah, you who are wise in your own eyes, and shrewd in your own sight!</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Ah, you who are heroes in drinking wine and valiant at mixing drink,</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> who acquit the guilty for a bribe, and deprive the innocent of their rights!</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Therefore, as the tongue of fire devours the stubble, and as dry grass sinks down in the flame, so their root will become rotten, and their blossom go up like dust; for they have rejected the instruction of the LORD of hosts, and have despised the word of the Holy One of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Therefore the anger of the LORD was kindled against his people, and he stretched out his hand against them and struck them; the mountains quaked, and their corpses were like refuse in the streets. For all this his anger has not turned away, and his hand is stretched out still.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> He will raise a signal for a nation far away, and whistle for a people at the ends of the earth; Here they come, swiftly, speedily!</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> None of them is weary, none stumbles, none slumbers or sleeps, not a loincloth is loose, not a sandal-thong broken;</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> their arrows are sharp, all their bows bent, their horses' hoofs seem like flint, and their wheels like the whirlwind.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Their roaring is like a lion, like young lions they roar; they growl and seize their prey, they carry it off, and no one can rescue.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> They will roar over it on that day, like the roaring of the sea. And if one look to the land-- only darkness and distress; and the light grows dark with clouds.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"6\">\r\n\t\t\t<VERS vnumber=\"1\"> In the year that King Uzziah died, I saw the Lord sitting on a throne, high and lofty; and the hem of his robe filled the temple.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Seraphs were in attendance above him; each had six wings: with two they covered their faces, and with two they covered their feet, and with two they flew.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And one called to another and said: \"Holy, holy, holy is the LORD of hosts; the whole earth is full of his glory.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The pivots on the thresholds shook at the voices of those who called, and the house filled with smoke. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> And I said: \"Woe is me! I am lost, for I am a man of unclean lips, and I live among a people of unclean lips; yet my eyes have seen the King, the LORD of hosts!\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then one of the seraphs flew to me, holding a live coal that had been taken from the altar with a pair of tongs.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The seraph touched my mouth with it and said: \"Now that this has touched your lips, your guilt has departed and your sin is blotted out.\" </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then I heard the voice of the Lord saying, \"Whom shall I send, and who will go for us?\" And I said, \"Here am I; send me!\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> And he said, \"Go and say to this people: 'Keep listening, but do not comprehend; keep looking, but do not understand.'</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Make the mind of this people dull, and stop their ears, and shut their eyes, so that they may not look with their eyes, and listen with their ears, and comprehend with their minds, and turn and be healed.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then I said, \"How long, O Lord?\" And he said: \"Until cities lie waste without inhabitant, and houses without people, and the land is utterly desolate;</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> until the LORD sends everyone far away, and vast is the emptiness in the midst of the land.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Even if a tenth part remain in it, it will be burned again, like a terebinth or an oak whose stump remains standing when it is felled.\" The holy seed is its stump. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"7\">\r\n\t\t\t<VERS vnumber=\"1\"> In the days of Ahaz son of Jotham son of Uzziah, king of Judah, King Rezin of Aram and King Pekah son of Remaliah of Israel went up to attack Jerusalem, but could not mount an attack against it.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> When the house of David heard that Aram had allied itself with Ephraim, the heart of Ahaz and the heart of his people shook as the trees of the forest shake before the wind. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then the LORD said to Isaiah, Go out to meet Ahaz, you and your son Shear-jashub, at the end of the conduit of the upper pool on the highway to the Fuller's Field, </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> and say to him, Take heed, be quiet, do not fear, and do not let your heart be faint because of these two smoldering stumps of firebrands, because of the fierce anger of Rezin and Aram and the son of Remaliah.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Because Aram-- with Ephraim and the son of Remaliah-- has plotted evil against you, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Let us go up against Judah and cut off Jerusalem and conquer it for ourselves and make the son of Tabeel king in it; </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> therefore thus says the Lord GOD: It shall not stand, and it shall not come to pass.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> For the head of Aram is Damascus, and the head of Damascus is Rezin. (Within sixty-five years Ephraim will be shattered, no longer a people.)</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The head of Ephraim is Samaria, and the head of Samaria is the son of Remaliah. If you do not stand firm in faith, you shall not stand at all.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Again the LORD spoke to Ahaz, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Ask a sign of the LORD your God; let it be deep as Sheol or high as heaven.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> But Ahaz said, I will not ask, and I will not put the LORD to the test.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then Isaiah said: \"Hear then, O house of David! Is it too little for you to weary mortals, that you weary my God also? </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Therefore the Lord himself will give you a sign. Look, the young woman is with child and shall bear a son, and shall name him Immanuel. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> He shall eat curds and honey by the time he knows how to refuse the evil and choose the good.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> For before the child knows how to refuse the evil and choose the good, the land before whose two kings you are in dread will be deserted.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The LORD will bring on you and on your people and on your ancestral house such days as have not come since the day that Ephraim departed from Judah-- the king of Assyria.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> On that day the LORD will whistle for the fly that is at the sources of the streams of Egypt, and for the bee that is in the land of Assyria.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> And they will all come and settle in the steep ravines, and in the clefts of the rocks, and on all the thornbushes, and on all the pastures.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> On that day the Lord will shave with a razor hired beyond the River-- with the king of Assyria-- the head and the hair of the feet, and it will take off the beard as well.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> On that day one will keep alive a young cow and two sheep,</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> and will eat curds because of the abundance of milk that they give; for everyone that is left in the land shall eat curds and honey.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> On that day every place where there used to be a thousand vines, worth a thousand shekels of silver, will become briers and thorns.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> With bow and arrows one will go there, for all the land will be briers and thorns;</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> and as for all the hills that used to be hoed with a hoe, you will not go there for fear of briers and thorns; but they will become a place where cattle are let loose and where sheep tread.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"8\">\r\n\t\t\t<VERS vnumber=\"1\"> Then the LORD said to me, Take a large tablet and write on it in common characters, \"Belonging to Maher-shalal-hash-baz,\" </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> and have it attested for me by reliable witnesses, the priest Uriah and Zechariah son of Jeberechiah. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And I went to the prophetess, and she conceived and bore a son. Then the LORD said to me, Name him Maher-shalal-hash-baz;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> for before the child knows how to call \"My father\" or \"My mother,\" the wealth of Damascus and the spoil of Samaria will be carried away by the king of Assyria.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The LORD spoke to me again:</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Because this people has refused the waters of Shiloah that flow gently, and melt in fear before Rezin and the son of Remaliah; </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> therefore, the Lord is bringing up against it the mighty flood waters of the River, the king of Assyria and all his glory; it will rise above all its channels and overflow all its banks;</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> it will sweep on into Judah as a flood, and, pouring over, it will reach up to the neck; and its outspread wings will fill the breadth of your land, O Immanuel.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Band together, you peoples, and be dismayed; listen, all you far countries; gird yourselves and be dismayed; gird yourselves and be dismayed!</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Take counsel together, but it shall be brought to naught; speak a word, but it will not stand, for God is with us. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> For the LORD spoke thus to me while his hand was strong upon me, and warned me not to walk in the way of this people, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Do not call conspiracy all that this people calls conspiracy, and do not fear what it fears, or be in dread.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> But the LORD of hosts, him you shall regard as holy; let him be your fear, and let him be your dread.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> He will become a sanctuary, a stone one strikes against; for both houses of Israel he will become a rock one stumbles over-- a trap and a snare for the inhabitants of Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And many among them shall stumble; they shall fall and be broken; they shall be snared and taken.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Bind up the testimony, seal the teaching among my disciples.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> I will wait for the LORD, who is hiding his face from the house of Jacob, and I will hope in him.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> See, I and the children whom the LORD has given me are signs and portents in Israel from the LORD of hosts, who dwells on Mount Zion.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Now if people say to you, \"Consult the ghosts and the familiar spirits that chirp and mutter; should not a people consult their gods, the dead on behalf of the living,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> for teaching and for instruction?\" Surely, those who speak like this will have no dawn!</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> They will pass through the land, greatly distressed and hungry; when they are hungry, they will be enraged and will curse their king and their gods. They will turn their faces upward,</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> or they will look to the earth, but will see only distress and darkness, the gloom of anguish; and they will be thrust into thick darkness. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"9\">\r\n\t\t\t<VERS vnumber=\"1\"> But there will be no gloom for those who were in anguish. In the former time he brought into contempt the land of Zebulun and the land of Naphtali, but in the latter time he will make glorious the way of the sea, the land beyond the Jordan, Galilee of the nations.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The people who walked in darkness have seen a great light; those who lived in a land of deep darkness-- on them light has shined.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> You have multiplied the nation, you have increased its joy; they rejoice before you as with joy at the harvest, as people exult when dividing plunder.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For the yoke of their burden, and the bar across their shoulders, the rod of their oppressor, you have broken as on the day of Midian.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> For all the boots of the tramping warriors and all the garments rolled in blood shall be burned as fuel for the fire.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For a child has been born for us, a son given to us; authority rests upon his shoulders; and he is named Wonderful Counselor, Mighty God, Everlasting Father, Prince of Peace.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> His authority shall grow continually, and there shall be endless peace for the throne of David and his kingdom. He will establish and uphold it with justice and with righteousness from this time onward and forevermore. The zeal of the LORD of hosts will do this.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The Lord sent a word against Jacob, and it fell on Israel;</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> and all the people knew it-- Ephraim and the inhabitants of Samaria-- but in pride and arrogance of heart they said:</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> \"The bricks have fallen, but we will build with dressed stones; the sycamores have been cut down, but we will put cedars in their place.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> So the LORD raised adversaries against them, and stirred up their enemies, </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> the Arameans on the east and the Philistines on the west, and they devoured Israel with open mouth. For all this his anger has not turned away; his hand is stretched out still.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The people did not turn to him who struck them, or seek the LORD of hosts.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> So the LORD cut off from Israel head and tail, palm branch and reed in one day--</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> elders and dignitaries are the head, and prophets who teach lies are the tail;</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> for those who led this people led them astray, and those who were led by them were left in confusion.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> That is why the Lord did not have pity on their young people, or compassion on their orphans and widows; for everyone was godless and an evildoer, and every mouth spoke folly. For all this his anger has not turned away, his hand is stretched out still. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> For wickedness burned like a fire, consuming briers and thorns; it kindled the thickets of the forest, and they swirled upward in a column of smoke.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Through the wrath of the LORD of hosts the land was burned, and the people became like fuel for the fire; no one spared another.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> They gorged on the right, but still were hungry, and they devoured on the left, but were not satisfied; they devoured the flesh of their own kindred; </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Manasseh devoured Ephraim, and Ephraim Manasseh, and together they were against Judah. For all this his anger has not turned away; his hand is stretched out still.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"10\">\r\n\t\t\t<VERS vnumber=\"1\"> Ah, you who make iniquitous decrees, who write oppressive statutes,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> to turn aside the needy from justice and to rob the poor of my people of their right, that widows may be your spoil, and that you may make the orphans your prey!</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> What will you do on the day of punishment, in the calamity that will come from far away? To whom will you flee for help, and where will you leave your wealth,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> so as not to crouch among the prisoners or fall among the slain? For all this his anger has not turned away; his hand is stretched out still.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Ah, Assyria, the rod of my anger-- the club in their hands is my fury!</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Against a godless nation I send him, and against the people of my wrath I command him, to take spoil and seize plunder, and to tread them down like the mire of the streets.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But this is not what he intends, nor does he have this in mind; but it is in his heart to destroy, and to cut off nations not a few.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> For he says: \"Are not my commanders all kings?</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Is not Calno like Carchemish? Is not Hamath like Arpad? Is not Samaria like Damascus?</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> As my hand has reached to the kingdoms of the idols whose images were greater than those of Jerusalem and Samaria,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> shall I not do to Jerusalem and her idols what I have done to Samaria and her images?\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> When the Lord has finished all his work on Mount Zion and on Jerusalem, he will punish the arrogant boasting of the king of Assyria and his haughty pride. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> For he says: \"By the strength of my hand I have done it, and by my wisdom, for I have understanding; I have removed the boundaries of peoples, and have plundered their treasures; like a bull I have brought down those who sat on thrones.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> My hand has found, like a nest, the wealth of the peoples; and as one gathers eggs that have been forsaken, so I have gathered all the earth; and there was none that moved a wing, or opened its mouth, or chirped.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Shall the ax vaunt itself over the one who wields it, or the saw magnify itself against the one who handles it? As if a rod should raise the one who lifts it up, or as if a staff should lift the one who is not wood!</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Therefore the Sovereign, the LORD of hosts, will send wasting sickness among his stout warriors, and under his glory a burning will be kindled, like the burning of fire.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The light of Israel will become a fire, and his Holy One a flame; and it will burn and devour his thorns and briers in one day.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The glory of his forest and his fruitful land the LORD will destroy, both soul and body, and it will be as when an invalid wastes away.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The remnant of the trees of his forest will be so few that a child can write them down.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> On that day the remnant of Israel and the survivors of the house of Jacob will no more lean on the one who struck them, but will lean on the LORD, the Holy One of Israel, in truth.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> A remnant will return, the remnant of Jacob, to the mighty God.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> For though your people Israel were like the sand of the sea, only a remnant of them will return. Destruction is decreed, overflowing with righteousness.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> For the Lord GOD of hosts will make a full end, as decreed, in all the earth. </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Therefore thus says the Lord GOD of hosts: O my people, who live in Zion, do not be afraid of the Assyrians when they beat you with a rod and lift up their staff against you as the Egyptians did.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> For in a very little while my indignation will come to an end, and my anger will be directed to their destruction.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> The LORD of hosts will wield a whip against them, as when he struck Midian at the rock of Oreb; his staff will be over the sea, and he will lift it as he did in Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> On that day his burden will be removed from your shoulder, and his yoke will be destroyed from your neck. He has gone up from Rimmon, </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> he has come to Aiath; he has passed through Migron, at Michmash he stores his baggage;</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> they have crossed over the pass, at Geba they lodge for the night; Ramah trembles, Gibeah of Saul has fled.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Cry aloud, O daughter Gallim! Listen, O Laishah! Answer her, O Anathoth!</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Madmenah is in flight, the inhabitants of Gebim flee for safety.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> This very day he will halt at Nob, he will shake his fist at the mount of daughter Zion, the hill of Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Look, the Sovereign, the LORD of hosts, will lop the boughs with terrifying power; the tallest trees will be cut down, and the lofty will be brought low.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> He will hack down the thickets of the forest with an ax, and Lebanon with its majestic trees will fall. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"11\">\r\n\t\t\t<VERS vnumber=\"1\"> A shoot shall come out from the stump of Jesse, and a branch shall grow out of his roots.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The spirit of the LORD shall rest on him, the spirit of wisdom and understanding, the spirit of counsel and might, the spirit of knowledge and the fear of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> His delight shall be in the fear of the LORD. He shall not judge by what his eyes see, or decide by what his ears hear;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> but with righteousness he shall judge the poor, and decide with equity for the meek of the earth; he shall strike the earth with the rod of his mouth, and with the breath of his lips he shall kill the wicked.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Righteousness shall be the belt around his waist, and faithfulness the belt around his loins.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The wolf shall live with the lamb, the leopard shall lie down with the kid, the calf and the lion and the fatling together, and a little child shall lead them.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The cow and the bear shall graze, their young shall lie down together; and the lion shall eat straw like the ox.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The nursing child shall play over the hole of the asp, and the weaned child shall put its hand on the adder's den.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> They will not hurt or destroy on all my holy mountain; for the earth will be full of the knowledge of the LORD as the waters cover the sea.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> On that day the root of Jesse shall stand as a signal to the peoples; the nations shall inquire of him, and his dwelling shall be glorious.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> On that day the Lord will extend his hand yet a second time to recover the remnant that is left of his people, from Assyria, from Egypt, from Pathros, from Ethiopia, from Elam, from Shinar, from Hamath, and from the coastlands of the sea. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> He will raise a signal for the nations, and will assemble the outcasts of Israel, and gather the dispersed of Judah from the four corners of the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The jealousy of Ephraim shall depart, the hostility of Judah shall be cut off; Ephraim shall not be jealous of Judah, and Judah shall not be hostile towards Ephraim.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But they shall swoop down on the backs of the Philistines in the west, together they shall plunder the people of the east. They shall put forth their hand against Edom and Moab, and the Ammonites shall obey them.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And the LORD will utterly destroy the tongue of the sea of Egypt; and will wave his hand over the River with his scorching wind; and will split it into seven channels, and make a way to cross on foot;</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> so there shall be a highway from Assyria for the remnant that is left of his people, as there was for Israel when they came up from the land of Egypt.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"12\">\r\n\t\t\t<VERS vnumber=\"1\"> You will say in that day: I will give thanks to you, O LORD, for though you were angry with me, your anger turned away, and you comforted me.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Surely God is my salvation; I will trust, and will not be afraid, for the LORD GOD is my strength and my might; he has become my salvation.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> With joy you will draw water from the wells of salvation.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> And you will say in that day: Give thanks to the LORD, call on his name; make known his deeds among the nations; proclaim that his name is exalted.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Sing praises to the LORD, for he has done gloriously; let this be known in all the earth. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Shout aloud and sing for joy, O royal Zion, for great in your midst is the Holy One of Israel. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"13\">\r\n\t\t\t<VERS vnumber=\"1\"> The oracle concerning Babylon that Isaiah son of Amoz saw.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> On a bare hill raise a signal, cry aloud to them; wave the hand for them to enter the gates of the nobles.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> I myself have commanded my consecrated ones, have summoned my warriors, my proudly exulting ones, to execute my anger.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Listen, a tumult on the mountains as of a great multitude! Listen, an uproar of kingdoms, of nations gathering together! The LORD of hosts is mustering an army for battle.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> They come from a distant land, from the end of the heavens, the LORD and the weapons of his indignation, to destroy the whole earth.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Wail, for the day of the LORD is near; it will come like destruction from the Almighty! </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Therefore all hands will be feeble, and every human heart will melt,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> and they will be dismayed. Pangs and agony will seize them; they will be in anguish like a woman in labor. They will look aghast at one another; their faces will be aflame.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> See, the day of the LORD comes, cruel, with wrath and fierce anger, to make the earth a desolation, and to destroy its sinners from it.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For the stars of the heavens and their constellations will not give their light; the sun will be dark at its rising, and the moon will not shed its light.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> I will punish the world for its evil, and the wicked for their iniquity; I will put an end to the pride of the arrogant, and lay low the insolence of tyrants.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> I will make mortals more rare than fine gold, and humans than the gold of Ophir.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Therefore I will make the heavens tremble, and the earth will be shaken out of its place, at the wrath of the LORD of hosts in the day of his fierce anger.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Like a hunted gazelle, or like sheep with no one to gather them, all will turn to their own people, and all will flee to their own lands.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Whoever is found will be thrust through, and whoever is caught will fall by the sword.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Their infants will be dashed to pieces before their eyes; their houses will be plundered, and their wives ravished.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> See, I am stirring up the Medes against them, who have no regard for silver and do not delight in gold.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Their bows will slaughter the young men; they will have no mercy on the fruit of the womb; their eyes will not pity children.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> And Babylon, the glory of kingdoms, the splendor and pride of the Chaldeans, will be like Sodom and Gomorrah when God overthrew them.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> It will never be inhabited or lived in for all generations; Arabs will not pitch their tents there, shepherds will not make their flocks lie down there.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> But wild animals will lie down there, and its houses will be full of howling creatures; there ostriches will live, and there goat-demons will dance.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Hyenas will cry in its towers, and jackals in the pleasant palaces; its time is close at hand, and its days will not be prolonged.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"14\">\r\n\t\t\t<VERS vnumber=\"1\"> But the LORD will have compassion on Jacob and will again choose Israel, and will set them in their own land; and aliens will join them and attach themselves to the house of Jacob.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And the nations will take them and bring them to their place, and the house of Israel will possess the nations as male and female slaves in the LORD's land; they will take captive those who were their captors, and rule over those who oppressed them.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> When the LORD has given you rest from your pain and turmoil and the hard service with which you were made to serve,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> you will take up this taunt against the king of Babylon: How the oppressor has ceased! How his insolence has ceased! </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The LORD has broken the staff of the wicked, the scepter of rulers,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> that struck down the peoples in wrath with unceasing blows, that ruled the nations in anger with unrelenting persecution.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The whole earth is at rest and quiet; they break forth into singing.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The cypresses exult over you, the cedars of Lebanon, saying, \"Since you were laid low, no one comes to cut us down.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Sheol beneath is stirred up to meet you when you come; it rouses the shades to greet you, all who were leaders of the earth; it raises from their thrones all who were kings of the nations.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> All of them will speak and say to you: \"You too have become as weak as we! You have become like us!\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Your pomp is brought down to Sheol, and the sound of your harps; maggots are the bed beneath you, and worms are your covering.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> How you are fallen from heaven, O Day Star, son of Dawn! How you are cut down to the ground, you who laid the nations low!</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> You said in your heart, \"I will ascend to heaven; I will raise my throne above the stars of God; I will sit on the mount of assembly on the heights of Zaphon; </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> I will ascend to the tops of the clouds, I will make myself like the Most High.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> But you are brought down to Sheol, to the depths of the Pit.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Those who see you will stare at you, and ponder over you: \"Is this the man who made the earth tremble, who shook kingdoms,</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> who made the world like a desert and overthrew its cities, who would not let his prisoners go home?\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> All the kings of the nations lie in glory, each in his own tomb;</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> but you are cast out, away from your grave, like loathsome carrion, clothed with the dead, those pierced by the sword, who go down to the stones of the Pit, like a corpse trampled underfoot. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> You will not be joined with them in burial, because you have destroyed your land, you have killed your people. May the descendants of evildoers nevermore be named!</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Prepare slaughter for his sons because of the guilt of their father. Let them never rise to possess the earth or cover the face of the world with cities. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> I will rise up against them, says the LORD of hosts, and will cut off from Babylon name and remnant, offspring and posterity, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> And I will make it a possession of the hedgehog, and pools of water, and I will sweep it with the broom of destruction, says the LORD of hosts.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> The LORD of hosts has sworn: As I have designed, so shall it be; and as I have planned, so shall it come to pass:</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> I will break the Assyrian in my land, and on my mountains trample him under foot; his yoke shall be removed from them, and his burden from their shoulders.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> This is the plan that is planned concerning the whole earth; and this is the hand that is stretched out over all the nations.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> For the LORD of hosts has planned, and who will annul it? His hand is stretched out, and who will turn it back?</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> In the year that King Ahaz died this oracle came:</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Do not rejoice, all you Philistines, that the rod that struck you is broken, for from the root of the snake will come forth an adder, and its fruit will be a flying fiery serpent.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> The firstborn of the poor will graze, and the needy lie down in safety; but I will make your root die of famine, and your remnant I will kill. </VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Wail, O gate; cry, O city; melt in fear, O Philistia, all of you! For smoke comes out of the north, and there is no straggler in its ranks.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> What will one answer the messengers of the nation? \"The LORD has founded Zion, and the needy among his people will find refuge in her.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"15\">\r\n\t\t\t<VERS vnumber=\"1\"> An oracle concerning Moab. Because Ar is laid waste in a night, Moab is undone; because Kir is laid waste in a night, Moab is undone.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Dibon has gone up to the temple, to the high places to weep; over Nebo and over Medeba Moab wails. On every head is baldness, every beard is shorn; </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> in the streets they bind on sackcloth; on the housetops and in the squares everyone wails and melts in tears.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Heshbon and Elealeh cry out, their voices are heard as far as Jahaz; therefore the loins of Moab quiver; his soul trembles. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> My heart cries out for Moab; his fugitives flee to Zoar, to Eglath-shelishiyah. For at the ascent of Luhith they go up weeping; on the road to Horonaim they raise a cry of destruction;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> the waters of Nimrim are a desolation; the grass is withered, the new growth fails, the verdure is no more.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Therefore the abundance they have gained and what they have laid up they carry away over the Wadi of the Willows.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> For a cry has gone around the land of Moab; the wailing reaches to Eglaim, the wailing reaches to Beer-elim.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> For the waters of Dibon are full of blood; yet I will bring upon Dibon even more-- a lion for those of Moab who escape, for the remnant of the land.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"16\">\r\n\t\t\t<VERS vnumber=\"1\"> Send lambs to the ruler of the land, from Sela, by way of the desert, to the mount of daughter Zion.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Like fluttering birds, like scattered nestlings, so are the daughters of Moab at the fords of the Arnon.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> \"Give counsel, grant justice; make your shade like night at the height of noon; hide the outcasts, do not betray the fugitive;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> let the outcasts of Moab settle among you; be a refuge to them from the destroyer.\" When the oppressor is no more, and destruction has ceased, and marauders have vanished from the land,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> then a throne shall be established in steadfast love in the tent of David, and on it shall sit in faithfulness a ruler who seeks justice and is swift to do what is right.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> We have heard of the pride of Moab-- how proud he is!-- of his arrogance, his pride, and his insolence; his boasts are false.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Therefore let Moab wail, let everyone wail for Moab. Mourn, utterly stricken, for the raisin cakes of Kir-hareseth.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> For the fields of Heshbon languish, and the vines of Sibmah, whose clusters once made drunk the lords of the nations, reached to Jazer and strayed to the desert; their shoots once spread abroad and crossed over the sea.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Therefore I weep with the weeping of Jazer for the vines of Sibmah; I drench you with my tears, O Heshbon and Elealeh; for the shout over your fruit harvest and your grain harvest has ceased.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Joy and gladness are taken away from the fruitful field; and in the vineyards no songs are sung, no shouts are raised; no treader treads out wine in the presses; the vintage-shout is hushed. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Therefore my heart throbs like a harp for Moab, and my very soul for Kir-heres.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> When Moab presents himself, when he wearies himself upon the high place, when he comes to his sanctuary to pray, he will not prevail.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> This was the word that the LORD spoke concerning Moab in the past.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But now the LORD says, In three years, like the years of a hired worker, the glory of Moab will be brought into contempt, in spite of all its great multitude; and those who survive will be very few and feeble.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"17\">\r\n\t\t\t<VERS vnumber=\"1\"> An oracle concerning Damascus. See, Damascus will cease to be a city, and will become a heap of ruins.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Her towns will be deserted forever; they will be places for flocks, which will lie down, and no one will make them afraid. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The fortress will disappear from Ephraim, and the kingdom from Damascus; and the remnant of Aram will be like the glory of the children of Israel, says the LORD of hosts.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> On that day the glory of Jacob will be brought low, and the fat of his flesh will grow lean.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> And it shall be as when reapers gather standing grain and their arms harvest the ears, and as when one gleans the ears of grain in the Valley of Rephaim.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Gleanings will be left in it, as when an olive tree is beaten-- two or three berries in the top of the highest bough, four or five on the branches of a fruit tree, says the LORD God of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> On that day people will regard their Maker, and their eyes will look to the Holy One of Israel;</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> they will not have regard for the altars, the work of their hands, and they will not look to what their own fingers have made, either the sacred poles or the altars of incense. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> On that day their strong cities will be like the deserted places of the Hivites and the Amorites, which they deserted because of the children of Israel, and there will be desolation. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For you have forgotten the God of your salvation, and have not remembered the Rock of your refuge; therefore, though you plant pleasant plants and set out slips of an alien god,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> though you make them grow on the day that you plant them, and make them blossom in the morning that you sow; yet the harvest will flee away in a day of grief and incurable pain.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Ah, the thunder of many peoples, they thunder like the thundering of the sea! Ah, the roar of nations, they roar like the roaring of mighty waters!</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The nations roar like the roaring of many waters, but he will rebuke them, and they will flee far away, chased like chaff on the mountains before the wind and whirling dust before the storm.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> At evening time, lo, terror! Before morning, they are no more. This is the fate of those who despoil us, and the lot of those who plunder us.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"18\">\r\n\t\t\t<VERS vnumber=\"1\"> Ah, land of whirring wings beyond the rivers of Ethiopia, </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> sending ambassadors by the Nile in vessels of papyrus on the waters! Go, you swift messengers, to a nation tall and smooth, to a people feared near and far, a nation mighty and conquering, whose land the rivers divide.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> All you inhabitants of the world, you who live on the earth, when a signal is raised on the mountains, look! When a trumpet is blown, listen!</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For thus the LORD said to me: I will quietly look from my dwelling like clear heat in sunshine, like a cloud of dew in the heat of harvest.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> For before the harvest, when the blossom is over and the flower becomes a ripening grape, he will cut off the shoots with pruning hooks, and the spreading branches he will hew away.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> They shall all be left to the birds of prey of the mountains and to the animals of the earth. And the birds of prey will summer on them, and all the animals of the earth will winter on them.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> At that time gifts will be brought to the LORD of hosts from a people tall and smooth, from a people feared near and far, a nation mighty and conquering, whose land the rivers divide, to Mount Zion, the place of the name of the LORD of hosts. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"19\">\r\n\t\t\t<VERS vnumber=\"1\"> An oracle concerning Egypt. See, the LORD is riding on a swift cloud and comes to Egypt; the idols of Egypt will tremble at his presence, and the heart of the Egyptians will melt within them.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> I will stir up Egyptians against Egyptians, and they will fight, one against the other, neighbor against neighbor, city against city, kingdom against kingdom;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> the spirit of the Egyptians within them will be emptied out, and I will confound their plans; they will consult the idols and the spirits of the dead and the ghosts and the familiar spirits;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> I will deliver the Egyptians into the hand of a hard master; a fierce king will rule over them, says the Sovereign, the LORD of hosts.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The waters of the Nile will be dried up, and the river will be parched and dry;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> its canals will become foul, and the branches of Egypt's Nile will diminish and dry up, reeds and rushes will rot away.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> There will be bare places by the Nile, on the brink of the Nile; and all that is sown by the Nile will dry up, be driven away, and be no more.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Those who fish will mourn; all who cast hooks in the Nile will lament, and those who spread nets on the water will languish.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The workers in flax will be in despair, and the carders and those at the loom will grow pale.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Its weavers will be dismayed, and all who work for wages will be grieved.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The princes of Zoan are utterly foolish; the wise counselors of Pharaoh give stupid counsel. How can you say to Pharaoh, \"I am one of the sages, a descendant of ancient kings\"?</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Where now are your sages? Let them tell you and make known what the LORD of hosts has planned against Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The princes of Zoan have become fools, and the princes of Memphis are deluded; those who are the cornerstones of its tribes have led Egypt astray.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The LORD has poured into them a spirit of confusion; and they have made Egypt stagger in all its doings as a drunkard staggers around in vomit.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Neither head nor tail, palm branch or reed, will be able to do anything for Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> On that day the Egyptians will be like women, and tremble with fear before the hand that the LORD of hosts raises against them.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> And the land of Judah will become a terror to the Egyptians; everyone to whom it is mentioned will fear because of the plan that the LORD of hosts is planning against them.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> On that day there will be five cities in the land of Egypt that speak the language of Canaan and swear allegiance to the LORD of hosts. One of these will be called the City of the Sun.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> On that day there will be an altar to the LORD in the center of the land of Egypt, and a pillar to the LORD at its border.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> It will be a sign and a witness to the LORD of hosts in the land of Egypt; when they cry to the LORD because of oppressors, he will send them a savior, and will defend and deliver them.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> The LORD will make himself known to the Egyptians; and the Egyptians will know the LORD on that day, and will worship with sacrifice and burnt offering, and they will make vows to the LORD and perform them.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The LORD will strike Egypt, striking and healing; they will return to the LORD, and he will listen to their supplications and heal them.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> On that day there will be a highway from Egypt to Assyria, and the Assyrian will come into Egypt, and the Egyptian into Assyria, and the Egyptians will worship with the Assyrians.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> On that day Israel will be the third with Egypt and Assyria, a blessing in the midst of the earth,</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> whom the LORD of hosts has blessed, saying, \"Blessed be Egypt my people, and Assyria the work of my hands, and Israel my heritage.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"20\">\r\n\t\t\t<VERS vnumber=\"1\"> In the year that the commander-in-chief, who was sent by King Sargon of Assyria, came to Ashdod and fought against it and took it--</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> at that time the LORD had spoken to Isaiah son of Amoz, saying, \"Go, and loose the sackcloth from your loins and take your sandals off your feet,\" and he had done so, walking naked and barefoot.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then the LORD said, \"Just as my servant Isaiah has walked naked and barefoot for three years as a sign and a portent against Egypt and Ethiopia, </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> so shall the king of Assyria lead away the Egyptians as captives and the Ethiopians as exiles, both the young and the old, naked and barefoot, with buttocks uncovered, to the shame of Egypt. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> And they shall be dismayed and confounded because of Ethiopia their hope and of Egypt their boast. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> In that day the inhabitants of this coastland will say, 'See, this is what has happened to those in whom we hoped and to whom we fled for help and deliverance from the king of Assyria! And we, how shall we escape?'\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"21\">\r\n\t\t\t<VERS vnumber=\"1\"> The oracle concerning the wilderness of the sea. As whirlwinds in the Negeb sweep on, it comes from the desert, from a terrible land.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> A stern vision is told to me; the betrayer betrays, and the destroyer destroys. Go up, O Elam, lay siege, O Media; all the sighing she has caused I bring to an end.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Therefore my loins are filled with anguish; pangs have seized me, like the pangs of a woman in labor; I am bowed down so that I cannot hear, I am dismayed so that I cannot see.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> My mind reels, horror has appalled me; the twilight I longed for has been turned for me into trembling.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> They prepare the table, they spread the rugs, they eat, they drink. Rise up, commanders, oil the shield!</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For thus the Lord said to me: \"Go, post a lookout, let him announce what he sees.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> When he sees riders, horsemen in pairs, riders on donkeys, riders on camels, let him listen diligently, very diligently.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then the watcher called out: \"Upon a watchtower I stand, O Lord, continually by day, and at my post I am stationed throughout the night. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Look, there they come, riders, horsemen in pairs!\" Then he responded, \"Fallen, fallen is Babylon; and all the images of her gods lie shattered on the ground.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> O my threshed and winnowed one, what I have heard from the LORD of hosts, the God of Israel, I announce to you.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The oracle concerning Dumah. One is calling to me from Seir, \"Sentinel, what of the night? Sentinel, what of the night?\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The sentinel says: \"Morning comes, and also the night. If you will inquire, inquire; come back again.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The oracle concerning the desert plain. In the scrub of the desert plain you will lodge, O caravans of Dedanites.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Bring water to the thirsty, meet the fugitive with bread, O inhabitants of the land of Tema.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> For they have fled from the swords, from the drawn sword, from the bent bow, and from the stress of battle.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> For thus the Lord said to me: Within a year, according to the years of a hired worker, all the glory of Kedar will come to an end;</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> and the remaining bows of Kedar's warriors will be few; for the LORD, the God of Israel, has spoken.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"22\">\r\n\t\t\t<VERS vnumber=\"1\"> The oracle concerning the valley of vision. What do you mean that you have gone up, all of you, to the housetops,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> you that are full of shoutings, tumultuous city, exultant town? Your slain are not slain by the sword, nor are they dead in battle.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Your rulers have all fled together; they were captured without the use of a bow. All of you who were found were captured, though they had fled far away. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Therefore I said: Look away from me, let me weep bitter tears; do not try to comfort me for the destruction of my beloved people.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> For the Lord GOD of hosts has a day of tumult and trampling and confusion in the valley of vision, a battering down of walls and a cry for help to the mountains.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Elam bore the quiver with chariots and cavalry, and Kir uncovered the shield. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Your choicest valleys were full of chariots, and the cavalry took their stand at the gates.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> He has taken away the covering of Judah. On that day you looked to the weapons of the House of the Forest,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> and you saw that there were many breaches in the city of David, and you collected the waters of the lower pool.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> You counted the houses of Jerusalem, and you broke down the houses to fortify the wall.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> You made a reservoir between the two walls for the water of the old pool. But you did not look to him who did it, or have regard for him who planned it long ago.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> In that day the Lord GOD of hosts called to weeping and mourning, to baldness and putting on sackcloth;</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> but instead there was joy and festivity, killing oxen and slaughtering sheep, eating meat and drinking wine. \"Let us eat and drink, for tomorrow we die.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The LORD of hosts has revealed himself in my ears: Surely this iniquity will not be forgiven you until you die, says the Lord GOD of hosts.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Thus says the Lord GOD of hosts: Come, go to this steward, to Shebna, who is master of the household, and say to him:</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> What right do you have here? Who are your relatives here, that you have cut out a tomb here for yourself, cutting a tomb on the height, and carving a habitation for yourself in the rock?</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The LORD is about to hurl you away violently, my fellow. He will seize firm hold on you,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> whirl you round and round, and throw you like a ball into a wide land; there you shall die, and there your splendid chariots shall lie, O you disgrace to your master's house!</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> I will thrust you from your office, and you will be pulled down from your post.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> On that day I will call my servant Eliakim son of Hilkiah,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> and will clothe him with your robe and bind your sash on him. I will commit your authority to his hand, and he shall be a father to the inhabitants of Jerusalem and to the house of Judah.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> I will place on his shoulder the key of the house of David; he shall open, and no one shall shut; he shall shut, and no one shall open.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> I will fasten him like a peg in a secure place, and he will become a throne of honor to his ancestral house.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> And they will hang on him the whole weight of his ancestral house, the offspring and issue, every small vessel, from the cups to all the flagons.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> On that day, says the LORD of hosts, the peg that was fastened in a secure place will give way; it will be cut down and fall, and the load that was on it will perish, for the LORD has spoken.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"23\">\r\n\t\t\t<VERS vnumber=\"1\"> The oracle concerning Tyre. Wail, O ships of Tarshish, for your fortress is destroyed. When they came in from Cyprus they learned of it. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Be still, O inhabitants of the coast, O merchants of Sidon, your messengers crossed over the sea </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> and were on the mighty waters; your revenue was the grain of Shihor, the harvest of the Nile; you were the merchant of the nations.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Be ashamed, O Sidon, for the sea has spoken, the fortress of the sea, saying: \"I have neither labored nor given birth, I have neither reared young men nor brought up young women.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> When the report comes to Egypt, they will be in anguish over the report about Tyre.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Cross over to Tarshish-- wail, O inhabitants of the coast!</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Is this your exultant city whose origin is from days of old, whose feet carried her to settle far away?</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Who has planned this against Tyre, the bestower of crowns, whose merchants were princes, whose traders were the honored of the earth?</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The LORD of hosts has planned it-- to defile the pride of all glory, to shame all the honored of the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Cross over to your own land, O ships of Tarshish; this is a harbor no more. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> He has stretched out his hand over the sea, he has shaken the kingdoms; the LORD has given command concerning Canaan to destroy its fortresses.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> He said: You will exult no longer, O oppressed virgin daughter Sidon; rise, cross over to Cyprus-- even there you will have no rest.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Look at the land of the Chaldeans! This is the people; it was not Assyria. They destined Tyre for wild animals. They erected their siege towers, they tore down her palaces, they made her a ruin. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Wail, O ships of Tarshish, for your fortress is destroyed.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> From that day Tyre will be forgotten for seventy years, the lifetime of one king. At the end of seventy years, it will happen to Tyre as in the song about the prostitute:</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Take a harp, go about the city, you forgotten prostitute! Make sweet melody, sing many songs, that you may be remembered.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> At the end of seventy years, the LORD will visit Tyre, and she will return to her trade, and will prostitute herself with all the kingdoms of the world on the face of the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Her merchandise and her wages will be dedicated to the LORD; her profits will not be stored or hoarded, but her merchandise will supply abundant food and fine clothing for those who live in the presence of the LORD. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"24\">\r\n\t\t\t<VERS vnumber=\"1\"> Now the LORD is about to lay waste the earth and make it desolate, and he will twist its surface and scatter its inhabitants.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And it shall be, as with the people, so with the priest; as with the slave, 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 creditor, so with the debtor.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The earth shall be utterly laid waste and utterly despoiled; for the LORD has spoken this word.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The earth dries up and withers, the world languishes and withers; the heavens languish together with the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The earth lies polluted under its inhabitants; for they have transgressed laws, violated the statutes, broken the everlasting covenant.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Therefore a curse devours the earth, and its inhabitants suffer for their guilt; therefore the inhabitants of the earth dwindled, and few people are left.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The wine dries up, the vine languishes, all the merry-hearted sigh.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The mirth of the timbrels is stilled, the noise of the jubilant has ceased, the mirth of the lyre is stilled.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> No longer do they drink wine with singing; strong drink is bitter to those who drink it.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The city of chaos is broken down, every house is shut up so that no one can enter.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> There is an outcry in the streets for lack of wine; all joy has reached its eventide; the gladness of the earth is banished.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Desolation is left in the city, the gates are battered into ruins.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> For thus it shall be on the earth and among the nations, as when an olive tree is beaten, as at the gleaning when the grape harvest is ended.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> They lift up their voices, they sing for joy; they shout from the west over the majesty of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Therefore in the east give glory to the LORD; in the coastlands of the sea glorify the name of the LORD, the God of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> From the ends of the earth we hear songs of praise, of glory to the Righteous One. But I say, I pine away, I pine away. Woe is me! For the treacherous deal treacherously, the treacherous deal very treacherously.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Terror, and the pit, and the snare are upon you, O inhabitant of the earth!</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Whoever flees at the sound of the terror shall fall into the pit; and whoever climbs out of the pit shall be caught in the snare. For the windows of heaven are opened, and the foundations of the earth tremble.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The earth is utterly broken, the earth is torn asunder, the earth is violently shaken.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The earth staggers like a drunkard, it sways like a hut; its transgression lies heavy upon it, and it falls, and will not rise again.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> On that day the LORD will punish the host of heaven in heaven, and on earth the kings of the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> They will be gathered together like prisoners in a pit; they will be shut up in a prison, and after many days they will be punished.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Then the moon will be abashed, and the sun ashamed; for the LORD of hosts will reign on Mount Zion and in Jerusalem, and before his elders he will manifest his glory.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"25\">\r\n\t\t\t<VERS vnumber=\"1\"> O LORD, you are my God; I will exalt you, I will praise your name; for you have done wonderful things, plans formed of old, faithful and sure.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> For you have made the city a heap, the fortified city a ruin; the palace of aliens is a city no more, it will never be rebuilt.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Therefore strong peoples will glorify you; cities of ruthless nations will fear you.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For you have been a refuge to the poor, a refuge to the needy in their distress, a shelter from the rainstorm and a shade from the heat. When the blast of the ruthless was like a winter rainstorm,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> the noise of aliens like heat in a dry place, you subdued the heat with the shade of clouds; the song of the ruthless was stilled.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> On this mountain the LORD of hosts will make for all peoples a feast of rich food, a feast of well-aged wines, of rich food filled with marrow, of well-aged wines strained clear.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> And he will destroy on this mountain the shroud that is cast over all peoples, the sheet that is spread over all nations;</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> he will swallow up death forever. Then the Lord GOD will wipe away the tears from all faces, and the disgrace of his people he will take away from all the earth, for the LORD has spoken.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> It will be said on that day, Lo, this is our God; we have waited for him, so that he might save us. This is the LORD for whom we have waited; let us be glad and rejoice in his salvation.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For the hand of the LORD will rest on this mountain. The Moabites shall be trodden down in their place as straw is trodden down in a dung-pit.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Though they spread out their hands in the midst of it, as swimmers spread out their hands to swim, their pride will be laid low despite the struggle of their hands. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The high fortifications of his walls will be brought down, laid low, cast to the ground, even to the dust.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"26\">\r\n\t\t\t<VERS vnumber=\"1\"> On that day this song will be sung in the land of Judah: We have a strong city; he sets up victory like walls and bulwarks.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Open the gates, so that the righteous nation that keeps faith may enter in.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Those of steadfast mind you keep in peace-- in peace because they trust in you.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Trust in the LORD forever, for in the LORD GOD you have an everlasting rock.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> For he has brought low the inhabitants of the height; the lofty city he lays low. He lays it low to the ground, casts it to the dust.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The foot tramples it, the feet of the poor, the steps of the needy.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The way of the righteous is level; O Just One, you make smooth the path of the righteous.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> In the path of your judgments, O LORD, we wait for you; your name and your renown are the soul's desire.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> My soul yearns for you in the night, my spirit within me earnestly seeks you. For when your judgments are in the earth, the inhabitants of the world learn righteousness.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> If favor is shown to the wicked, they do not learn righteousness; in the land of uprightness they deal perversely and do not see the majesty of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> O LORD, your hand is lifted up, but they do not see it. Let them see your zeal for your people, and be ashamed. Let the fire for your adversaries consume them.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> O LORD, you will ordain peace for us, for indeed, all that we have done, you have done for us.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> O LORD our God, other lords besides you have ruled over us, but we acknowledge your name alone.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The dead do not live; shades do not rise-- because you have punished and destroyed them, and wiped out all memory of them.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> But you have increased the nation, O LORD, you have increased the nation; you are glorified; you have enlarged all the borders of the land.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> O LORD, in distress they sought you, they poured out a prayer when your chastening was on them. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Like a woman with child, who writhes and cries out in her pangs when she is near her time, so were we because of you, O LORD;</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> we were with child, we writhed, but we gave birth only to wind. We have won no victories on earth, and no one is born to inhabit the world.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Your dead shall live, their corpses shall rise. O dwellers in the dust, awake and sing for joy! For your dew is a radiant dew, and the earth will give birth to those long dead. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Come, my people, enter your chambers, and shut your doors behind you; hide yourselves for a little while until the wrath is past.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> For the LORD comes out from his place to punish the inhabitants of the earth for their iniquity; the earth will disclose the blood shed on it, and will no longer cover its slain.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"27\">\r\n\t\t\t<VERS vnumber=\"1\"> On that day the LORD with his cruel and great and strong sword will punish Leviathan the fleeing serpent, Leviathan the twisting serpent, and he will kill the dragon that is in the sea.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> On that day: A pleasant vineyard, sing about it!</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> I, the LORD, am its keeper; every moment I water it. I guard it night and day so that no one can harm it;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> I have no wrath. If it gives me thorns and briers, I will march to battle against it. I will burn it up.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Or else let it cling to me for protection, let it make peace with me, let it make peace with me.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> In days to come Jacob shall take root, Israel shall blossom and put forth shoots, and fill the whole world with fruit. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Has he struck them down as he struck down those who struck them? Or have they been killed as their killers were killed?</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> By expulsion, by exile you struggled against them; with his fierce blast he removed them in the day of the east wind.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Therefore by this the guilt of Jacob will be expiated, and this will be the full fruit of the removal of his sin: when he makes all the stones of the altars like chalkstones crushed to pieces, no sacred poles or incense altars will remain standing. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For the fortified city is solitary, a habitation deserted and forsaken, like the wilderness; the calves graze there, there they lie down, and strip its branches.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> When its boughs are dry, they are broken; women come and make a fire of them. For this is a people without understanding; therefore he that made them will not have compassion on them, he that formed them will show them no favor.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> On that day the LORD will thresh from the channel of the Euphrates to the Wadi of Egypt, and you will be gathered one by one, O people of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And on that day a great trumpet will be blown, and those who were lost in the land of Assyria and those who were driven out to the land of Egypt will come and worship the LORD on the holy mountain at Jerusalem.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"28\">\r\n\t\t\t<VERS vnumber=\"1\"> Ah, the proud garland of the drunkards of Ephraim, and the fading flower of its glorious beauty, which is on the head of those bloated with rich food, of those overcome with wine!</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> See, the Lord has one who is mighty and strong; like a storm of hail, a destroying tempest, like a storm of mighty, overflowing waters; with his hand he will hurl them down to the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Trampled under foot will be the proud garland of the drunkards of Ephraim.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> And the fading flower of its glorious beauty, which is on the head of those bloated with rich food, will be like a first-ripe fig before the summer; whoever sees it, eats it up as soon as it comes to hand.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> In that day the LORD of hosts will be a garland of glory, and a diadem of beauty, to the remnant of his people;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> and a spirit of justice to the one who sits in judgment, and strength to those who turn back the battle at the gate.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> These also reel with wine and stagger with strong drink; the priest and the prophet reel with strong drink, they are confused with wine, they stagger with strong drink; they err in vision, they stumble in giving judgment.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> All tables are covered with filthy vomit; no place is clean.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> \"Whom will he teach knowledge, and to whom will he explain the message? Those who are weaned from milk, those taken from the breast?</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For it is precept upon precept, precept upon precept, line upon line, line upon line, here a little, there a little.\" </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Truly, with stammering lip and with alien tongue he will speak to this people,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> to whom he has said, \"This is rest; give rest to the weary; and this is repose\"; yet they would not hear.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Therefore the word of the LORD will be to them, \"Precept upon precept, precept upon precept, line upon line, line upon line, here a little, there a little;\" in order that they may go, and fall backward, and be broken, and snared, and taken. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Therefore hear the word of the LORD, you scoffers who rule this people in Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Because you have said, \"We have made a covenant with death, and with Sheol we have an agreement; when the overwhelming scourge passes through it will not come to us; for we have made lies our refuge, and in falsehood we have taken shelter\";</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> therefore thus says the Lord GOD, See, I am laying in Zion a foundation stone, a tested stone, a precious cornerstone, a sure foundation: \"One who trusts will not panic.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> And I will make justice the line, and righteousness the plummet; hail will sweep away the refuge of lies, and waters will overwhelm the shelter.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then your covenant with death will be annulled, and your agreement with Sheol will not stand; when the overwhelming scourge passes through you will be beaten down by it.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> As often as it passes through, it will take you; for morning by morning it will pass through, by day and by night; and it will be sheer terror to understand the message.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> For the bed is too short to stretch oneself on it, and the covering too narrow to wrap oneself in it.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> For the LORD will rise up as on Mount Perazim, he will rage as in the valley of Gibeon; to do his deed-- strange is his deed! and to work his work-- alien is his work!</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Now therefore do not scoff, or your bonds will be made stronger; for I have heard a decree of destruction from the Lord GOD of hosts upon the whole land.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Listen, and hear my voice; Pay attention, and hear my speech.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Do those who plow for sowing plow continually? Do they continually open and harrow their ground?</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> When they have leveled its surface, do they not scatter dill, sow cummin, and plant wheat in rows and barley in its proper place, and spelt as the border?</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> For they are well instructed; their God teaches them.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Dill is not threshed with a threshing sledge, nor is a cart wheel rolled over cummin; but dill is beaten out with a stick, and cummin with a rod.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Grain is crushed for bread, but one does not thresh it forever; one drives the cart wheel and horses over it, but does not pulverize it.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> This also comes from the LORD of hosts; he is wonderful in counsel, and excellent in wisdom.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"29\">\r\n\t\t\t<VERS vnumber=\"1\"> Ah, Ariel, Ariel, the city where David encamped! Add year to year; let the festivals run their round.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Yet I will distress Ariel, and there shall be moaning and lamentation, and Jerusalem shall be to me like an Ariel. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And like David I will encamp against you; I will besiege you with towers and raise siegeworks against you. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then deep from the earth you shall speak, from low in the dust your words shall come; your voice shall come from the ground like the voice of a ghost, and your speech shall whisper out of the dust.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> But the multitude of your foes shall be like small dust, and the multitude of tyrants like flying chaff. And in an instant, suddenly, </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> you will be visited by the LORD of hosts with thunder and earthquake and great noise, with whirlwind and tempest, and the flame of a devouring fire.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> And the multitude of all the nations that fight against Ariel, all that fight against her and her stronghold, and who distress her, shall be like a dream, a vision of the night.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Just as when a hungry person dreams of eating and wakes up still hungry, or a thirsty person dreams of drinking and wakes up faint, still thirsty, so shall the multitude of all the nations be that fight against Mount Zion.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Stupefy yourselves and be in a stupor, blind yourselves and be blind! Be drunk, but not from wine; stagger, but not from strong drink!</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For the LORD has poured out upon you a spirit of deep sleep; he has closed your eyes, you prophets, and covered your heads, you seers.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The vision of all this has become for you like the words of a sealed document. If it is given to those who can read, with the command, \"Read this,\" they say, \"We cannot, for it is sealed.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> And if it is given to those who cannot read, saying, \"Read this,\" they say, \"We cannot read.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The Lord said: Because these people draw near with their mouths and honor me with their lips, while their hearts are far from me, and their worship of me is a human commandment learned by rote;</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> so I will again do amazing things with this people, shocking and amazing. The wisdom of their wise shall perish, and the discernment of the discerning shall be hidden.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Ha! You who hide a plan too deep for the LORD, whose deeds are in the dark, and who say, \"Who sees us? Who knows us?\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> You turn things upside down! Shall the potter be regarded as the clay? Shall the thing made say of its maker, \"He did not make me\"; or the thing formed say of the one who formed it, \"He has no understanding\"?</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Shall not Lebanon in a very little while become a fruitful field, and the fruitful field be regarded as a forest?</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> On that day the deaf shall hear the words of a scroll, and out of their gloom and darkness the eyes of the blind shall see.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The meek shall obtain fresh joy in the LORD, and the neediest people shall exult in the Holy One of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> For the tyrant shall be no more, and the scoffer shall cease to be; all those alert to do evil shall be cut off--</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> those who cause a person to lose a lawsuit, who set a trap for the arbiter in the gate, and without grounds deny justice to the one in the right.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Therefore thus says the LORD, who redeemed Abraham, concerning the house of Jacob: No longer shall Jacob be ashamed, no longer shall his face grow pale.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> For when he sees his children, the work of my hands, in his midst, they will sanctify my name; they will sanctify the Holy One of Jacob, and will stand in awe of the God of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> And those who err in spirit will come to understanding, and those who grumble will accept instruction.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"30\">\r\n\t\t\t<VERS vnumber=\"1\"> Oh, rebellious children, says the LORD, who carry out a plan, but not mine; who make an alliance, but against my will, adding sin to sin;</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> who set out to go down to Egypt without asking for my counsel, to take refuge in the protection of Pharaoh, and to seek shelter in the shadow of Egypt;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Therefore the protection of Pharaoh shall become your shame, and the shelter in the shadow of Egypt your humiliation.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For though his officials are at Zoan and his envoys reach Hanes,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> everyone comes to shame through a people that cannot profit them, that brings neither help nor profit, but shame and disgrace.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> An oracle concerning the animals of the Negeb. Through a land of trouble and distress, of lioness and roaring lion, of viper and flying serpent, they carry their riches on the backs of donkeys, and their treasures on the humps of camels, to a people that cannot profit them.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> For Egypt's help is worthless and empty, therefore I have called her, \"Rahab who sits still.\" </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Go now, write it before them on a tablet, and inscribe it in a book, so that it may be for the time to come as a witness forever.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> For they are a rebellious people, faithless children, children who will not hear the instruction of the LORD;</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> who say to the seers, \"Do not see\"; and to the prophets, \"Do not prophesy to us what is right; speak to us smooth things, prophesy illusions,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> leave the way, turn aside from the path, let us hear no more about the Holy One of Israel.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Therefore thus says the Holy One of Israel: Because you reject this word, and put your trust in oppression and deceit, and rely on them;</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> therefore this iniquity shall become for you like a break in a high wall, bulging out, and about to collapse, whose crash comes suddenly, in an instant;</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> its breaking is like that of a potter's vessel that is smashed so ruthlessly that among its fragments not a sherd is found for taking fire from the hearth, or dipping water out of the cistern.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> For thus said the Lord GOD, the Holy One of Israel: In returning and rest you shall be saved; in quietness and in trust shall be your strength. But you refused</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> and said, \"No! We will flee upon horses\"-- therefore you shall flee! and, \"We will ride upon swift steeds\"-- therefore your pursuers shall be swift!</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> A thousand shall flee at the threat of one, at the threat of five you shall flee, until you are left like a flagstaff on the top of a mountain, like a signal on a hill.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Therefore the LORD waits to be gracious to you; therefore he will rise up to show mercy to you. For the LORD is a God of justice; blessed are all those who wait for him.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Truly, O people in Zion, inhabitants of Jerusalem, you shall weep no more. He will surely be gracious to you at the sound of your cry; when he hears it, he will answer you.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Though the Lord may give you the bread of adversity and the water of affliction, yet your Teacher will not hide himself any more, but your eyes shall see your Teacher.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> And when you turn to the right or when you turn to the left, your ears shall hear a word behind you, saying, \"This is the way; walk in it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Then you will defile your silver-covered idols and your gold-plated images. You will scatter them like filthy rags; you will say to them, \"Away with you!\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> He will give rain for the seed with which you sow the ground, and grain, the produce of the ground, which will be rich and plenteous. On that day your cattle will graze in broad pastures;</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> and the oxen and donkeys that till the ground will eat silage, which has been winnowed with shovel and fork.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> On every lofty mountain and every high hill there will be brooks running with water-- on a day of the great slaughter, when the towers fall.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Moreover the light of the moon will be like the light of the sun, and the light of the sun will be sevenfold, like the light of seven days, on the day when the LORD binds up the injuries of his people, and heals the wounds inflicted by his blow.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> See, the name of the LORD comes from far away, burning with his anger, and in thick rising smoke; his lips are full of indignation, and his tongue is like a devouring fire; </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> his breath is like an overflowing stream that reaches up to the neck-- to sift the nations with the sieve of destruction, and to place on the jaws of the peoples a bridle that leads them astray.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> You shall have a song as in the night when a holy festival is kept; and gladness of heart, as when one sets out to the sound of the flute to go to the mountain of the LORD, to the Rock of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> And the LORD will cause his majestic voice to be heard and the descending blow of his arm to be seen, in furious anger and a flame of devouring fire, with a cloudburst and tempest and hailstones.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> The Assyrian will be terror-stricken at the voice of the LORD, when he strikes with his rod.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> And every stroke of the staff of punishment that the LORD lays upon him will be to the sound of timbrels and lyres; battling with brandished arm he will fight with him.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> For his burning place has long been prepared; truly it is made ready for the king, its pyre made deep and wide, with fire and wood in abundance; the breath of the LORD, like a stream of sulfur, kindles it. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"31\">\r\n\t\t\t<VERS vnumber=\"1\"> Alas for those who go down to Egypt for help and who rely on horses, who trust in chariots because they are many and in horsemen because they are very strong, but do not look to the Holy One of Israel or consult the LORD!</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Yet he too is wise and brings disaster; he does not call back his words, but will rise against the house of the evildoers, and against the helpers of those who work iniquity.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The Egyptians are human, and not God; their horses are flesh, and not spirit. When the LORD stretches out his hand, the helper will stumble, and the one helped will fall, and they will all perish together.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For thus the LORD said to me, As a lion or a young lion growls over its prey, and-- when a band of shepherds is called out against it-- is not terrified by their shouting or daunted at their noise, so the LORD of hosts will come down to fight upon Mount Zion and upon its hill.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Like birds hovering overhead, so the LORD of hosts will protect Jerusalem; he will protect and deliver it, he will spare and rescue it.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Turn back to him whom you have deeply betrayed, O people of Israel. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> For on that day all of you shall throw away your idols of silver and idols of gold, which your hands have sinfully made for you.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> \"Then the Assyrian shall fall by a sword, not of mortals; and a sword, not of humans, shall devour him; he shall flee from the sword, and his young men shall be put to forced labor.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> His rock shall pass away in terror, and his officers desert the standard in panic,\" says the LORD, whose fire is in Zion, and whose furnace is in Jerusalem.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"32\">\r\n\t\t\t<VERS vnumber=\"1\"> See, a king will reign in righteousness, and princes will rule with justice.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Each will be like a hiding place from the wind, a covert from the tempest, like streams of water in a dry place, like the shade of a great rock in a weary land.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then the eyes of those who have sight will not be closed, and the ears of those who have hearing will listen.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The minds of the rash will have good judgment, and the tongues of stammerers will speak readily and distinctly.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> A fool will no longer be called noble, nor a villain said to be honorable.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For fools speak folly, and their minds plot iniquity: to practice ungodliness, to utter error concerning the LORD, to leave the craving of the hungry unsatisfied, and to deprive the thirsty of drink.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The villainies of villains are evil; they devise wicked devices to ruin the poor with lying words, even when the plea of the needy is right.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But those who are noble plan noble things, and by noble things they stand.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Rise up, you women who are at ease, hear my voice; you complacent daughters, listen to my speech.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> In little more than a year you will shudder, you complacent ones; for the vintage will fail, the fruit harvest will not come.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Tremble, you women who are at ease, shudder, you complacent ones; strip, and make yourselves bare, and put sackcloth on your loins.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Beat your breasts for the pleasant fields, for the fruitful vine,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> for the soil of my people growing up in thorns and briers; yes, for all the joyous houses in the jubilant city.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> For the palace will be forsaken, the populous city deserted; the hill and the watchtower will become dens forever, the joy of wild asses, a pasture for flocks;</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> until a spirit from on high is poured out on us, and the wilderness becomes a fruitful field, and the fruitful field is deemed a forest.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then justice will dwell in the wilderness, and righteousness abide in the fruitful field.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The effect of righteousness will be peace, and the result of righteousness, quietness and trust forever.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> My people will abide in a peaceful habitation, in secure dwellings, and in quiet resting places.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The forest will disappear completely, and the city will be utterly laid low. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Happy will you be who sow beside every stream, who let the ox and the donkey range freely.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"33\">\r\n\t\t\t<VERS vnumber=\"1\"> Ah, you destroyer, who yourself have not been destroyed; you treacherous one, with whom no one has dealt treacherously! When you have ceased to destroy, you will be destroyed; and when you have stopped dealing treacherously, you will be dealt with treacherously.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> O LORD, be gracious to us; we wait for you. Be our arm every morning, our salvation in the time of trouble.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> At the sound of tumult, peoples fled; before your majesty, nations scattered.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Spoil was gathered as the caterpillar gathers; as locusts leap, they leaped upon it. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The LORD is exalted, he dwells on high; he filled Zion with justice and righteousness;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> he will be the stability of your times, abundance of salvation, wisdom, and knowledge; the fear of the LORD is Zion's treasure. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Listen! the valiant cry in the streets; the envoys of peace weep bitterly. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The highways are deserted, travelers have quit the road. The treaty is broken, its oaths are despised, its obligation is disregarded. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The land mourns and languishes; Lebanon is confounded and withers away; Sharon is like a desert; and Bashan and Carmel shake off their leaves.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> \"Now I will arise,\" says the LORD, \"now I will lift myself up; now I will be exalted.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> You conceive chaff, you bring forth stubble; your breath is a fire that will consume you.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> And the peoples will be as if burned to lime, like thorns cut down, that are burned in the fire.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Hear, you who are far away, what I have done; and you who are near, acknowledge my might.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The sinners in Zion are afraid; trembling has seized the godless: \"Who among us can live with the devouring fire? Who among us can live with everlasting flames?\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Those who walk righteously and speak uprightly, who despise the gain of oppression, who wave away a bribe instead of accepting it, who stop their ears from hearing of bloodshed and shut their eyes from looking on evil,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> they will live on the heights; their refuge will be the fortresses of rocks; their food will be supplied, their water assured.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Your eyes will see the king in his beauty; they will behold a land that stretches far away.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Your mind will muse on the terror: \"Where is the one who counted? Where is the one who weighed the tribute? Where is the one who counted the towers?\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> No longer will you see the insolent people, the people of an obscure speech that you cannot comprehend, stammering in a language that you cannot understand.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Look on Zion, the city of our appointed festivals! Your eyes will see Jerusalem, a quiet habitation, an immovable tent, whose stakes will never be pulled up, and none of whose ropes will be broken.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> But there the LORD in majesty will be for us a place of broad rivers and streams, where no galley with oars can go, nor stately ship can pass.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> For the LORD is our judge, the LORD is our ruler, the LORD is our king; he will save us.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Your rigging hangs loose; it cannot hold the mast firm in its place, or keep the sail spread out. Then prey and spoil in abundance will be divided; even the lame will fall to plundering.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> And no inhabitant will say, \"I am sick\"; the people who live there will be forgiven their iniquity.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"34\">\r\n\t\t\t<VERS vnumber=\"1\"> Draw near, O nations, to hear; O peoples, give heed! Let the earth hear, and all that fills it; the world, and all that comes from it.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> For the LORD is enraged against all the nations, and furious against all their hoards; he has doomed them, has given them over for slaughter.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Their slain shall be cast out, and the stench of their corpses shall rise; the mountains shall flow with their blood.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> All the host of heaven shall rot away, and the skies roll up like a scroll. All their host shall wither like a leaf withering on a vine, or fruit withering on a fig tree.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> When my sword has drunk its fill in the heavens, lo, it will descend upon Edom, upon the people I have doomed to judgment.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The LORD has a sword; it is sated with blood, it is gorged with fat, with the blood of lambs and goats, with the fat of the kidneys of rams. For the LORD has a sacrifice in Bozrah, a great slaughter in the land of Edom.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Wild oxen shall fall with them, and young steers with the mighty bulls. Their land shall be soaked with blood, and their soil made rich with fat.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> For the LORD has a day of vengeance, a year of vindication by Zion's cause. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> And the streams of Edom shall be turned into pitch, and her soil into sulfur; her land shall become burning pitch. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Night and day it shall not be quenched; its smoke shall go up forever. From generation to generation it shall lie waste; no one shall pass through it forever and ever.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But the hawk and the hedgehog shall possess it; the owl and the raven shall live in it. He shall stretch the line of confusion over it, and the plummet of chaos over its nobles.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> They shall name it No Kingdom There, and all its princes shall be nothing.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Thorns shall grow over its strongholds, nettles and thistles in its fortresses. It shall be the haunt of jackals, an abode for ostriches.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Wildcats shall meet with hyenas, goat-demons shall call to each other; there too Lilith shall repose, and find a place to rest.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> There shall the owl nest and lay and hatch and brood in its shadow; there too the buzzards shall gather, each one with its mate.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Seek and read from the book of the LORD: Not one of these shall be missing; none shall be without its mate. For the mouth of the LORD has commanded, and his spirit has gathered them.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> He has cast the lot for them, his hand has portioned it out to them with the line; they shall possess it forever, from generation to generation they shall live in it.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"35\">\r\n\t\t\t<VERS vnumber=\"1\"> The wilderness and the dry land shall be glad, the desert shall rejoice and blossom; like the crocus</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> it shall blossom abundantly, and rejoice with joy and singing. The glory of Lebanon shall be given to it, the majesty of Carmel and Sharon. They shall see the glory of the LORD, the majesty of our God.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Strengthen the weak hands, and make firm the feeble knees.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Say to those who are of a fearful heart, \"Be strong, do not fear! Here is your God. He will come with vengeance, with terrible recompense. He will come and save you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then the eyes of the blind shall be opened, and the ears of the deaf unstopped;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> then the lame shall leap like a deer, and the tongue of the speechless sing for joy. For waters shall break forth in the wilderness, and streams in the desert;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> the burning sand shall become a pool, and the thirsty ground springs of water; the haunt of jackals shall become a swamp, the grass shall become reeds and rushes.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> A highway shall be there, and it shall be called the Holy Way; the unclean shall not travel on it, but it shall be for God's people; no traveler, not even fools, shall go astray. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> No lion shall be there, nor shall any ravenous beast come up on it; they shall not be found there, but the redeemed shall walk there.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And the ransomed of the LORD shall return, and come to Zion with singing; everlasting joy shall be upon their heads; they shall obtain joy and gladness, and sorrow and sighing shall flee away.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"36\">\r\n\t\t\t<VERS vnumber=\"1\"> In the fourteenth year of King Hezekiah, King Sennacherib of Assyria came up against all the fortified cities of Judah and captured them.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The king of Assyria sent the Rabshakeh from Lachish to King Hezekiah at Jerusalem, with a great army. He stood by the conduit of the upper pool on the highway to the Fuller's Field.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And there came out to him Eliakim son of Hilkiah, who was in charge of the palace, and Shebna the secretary, and Joah son of Asaph, the recorder.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The Rabshakeh said to them, \"Say to Hezekiah: Thus says the great king, the king of Assyria: On what do you base this confidence of yours?</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Do you think that mere words are strategy and power for war? On whom do you now rely, that you have rebelled against me?</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> See, you are relying on Egypt, that broken reed of a staff, which will pierce the hand of anyone who leans on it. Such is Pharaoh king of Egypt to all who rely on him.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But if you say to me, 'We rely on the LORD our God,' is it not he whose high places and altars Hezekiah has removed, saying to Judah and to Jerusalem, 'You shall worship before this altar'?</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Come now, make a wager with my master the king of Assyria: I will give you two thousand horses, if you are able on your part to set riders on them.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> How then can you repulse a single captain among the least of my master's servants, when you rely on Egypt for chariots and for horsemen?</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Moreover, is it without the LORD that I have come up against this land to destroy it? The LORD said to me, Go up against this land, and destroy it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then Eliakim, Shebna, and Joah said to the Rabshakeh, \"Please speak to your servants in Aramaic, for we understand it; do not speak to us in the language of Judah within the hearing of the people who are on the wall.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> But the Rabshakeh said, \"Has my master sent me to speak these words to your master and to you, and not to the people sitting on the wall, who are doomed with you to eat their own dung and drink their own urine?\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then the Rabshakeh stood and called out in a loud voice in the language of Judah, \"Hear the words of the great king, the king of Assyria!</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Thus says the king: 'Do not let Hezekiah deceive you, for he will not be able to deliver you.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Do not let Hezekiah make you rely on the LORD by saying, The LORD will surely deliver us; this city will not be given into the hand of the king of Assyria.'</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Do not listen to Hezekiah; for thus says the king of Assyria: 'Make your peace with me and come out to me; then everyone of you will eat from your own vine and your own fig tree and drink water from your own cistern,</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> until I come and take you away to a land like your own land, a land of grain and wine, a land of bread and vineyards.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Do not let Hezekiah mislead you by saying, The LORD will save us. Has any of the gods of the nations saved their land out of the hand of the king of Assyria?</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Where are the gods of Hamath and Arpad? Where are the gods of Sepharvaim? Have they delivered Samaria out of my hand?</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Who among all the gods of these countries have saved their countries out of my hand, that the LORD should save Jerusalem out of my hand?'\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> But they were silent and answered him not a word, for the king's command was, \"Do not answer him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Then Eliakim son of Hilkiah, who was in charge of the palace, and Shebna the secretary, and Joah son of Asaph, the recorder, came to Hezekiah with their clothes torn, and told him the words of the Rabshakeh.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"37\">\r\n\t\t\t<VERS vnumber=\"1\"> When King Hezekiah heard it, he tore his clothes, covered himself with sackcloth, and went into the house of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And he sent Eliakim, who was in charge of the palace, and Shebna the secretary, and the senior priests, covered with sackcloth, to the prophet Isaiah son of Amoz.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> They said to him, \"Thus says Hezekiah, This day is a day of distress, of rebuke, and of disgrace; children have come to the birth, and there is no strength to bring them forth.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> It may be that the LORD your God heard the words of the Rabshakeh, whom his master the king of Assyria has sent to mock the living God, and will rebuke the words that the LORD your God has heard; therefore lift up your prayer for the remnant that is left.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> When the servants of King Hezekiah came to Isaiah,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Isaiah said to them, \"Say to your master, 'Thus says the LORD: Do not be afraid because of the words that you have heard, with which the servants of the king of Assyria have reviled me.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> I myself will put a spirit in him, so that he shall hear a rumor, and return to his own land; I will cause him to fall by the sword in his own land.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The Rabshakeh returned, and found the king of Assyria fighting against Libnah; for he had heard that the king had left Lachish.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Now the king heard concerning King Tirhakah of Ethiopia, \"He has set out to fight against you.\" When he heard it, he sent messengers to Hezekiah, saying, </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> \"Thus shall you speak to King Hezekiah of Judah: Do not let your God on whom you rely deceive you by promising that Jerusalem will not be given into the hand of the king of Assyria.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> See, you have heard what the kings of Assyria have done to all lands, destroying them utterly. Shall you be delivered?</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Have the gods of the nations delivered them, the nations that my predecessors destroyed, Gozan, Haran, Rezeph, and the people of Eden who were in Telassar?</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Where is the king of Hamath, the king of Arpad, the king of the city of Sepharvaim, the king of Hena, or the king of Ivvah?\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Hezekiah received the letter from the hand of the messengers and read it; then Hezekiah went up to the house of the LORD and spread it before the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And Hezekiah prayed to the LORD, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> \"O LORD of hosts, God of Israel, who are enthroned above the cherubim, you are God, you alone, of all the kingdoms of the earth; you have made heaven and earth.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Incline your ear, O LORD, and hear; open your eyes, O LORD, and see; hear all the words of Sennacherib, which he has sent to mock the living God.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Truly, O LORD, the kings of Assyria have laid waste all the nations and their lands,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> and have hurled their gods into the fire, though they were no gods, but the work of human hands-- wood and stone-- and so they were destroyed.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> So now, O LORD our God, save us from his hand, so that all the kingdoms of the earth may know that you alone are the LORD.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then Isaiah son of Amoz sent to Hezekiah, saying: \"Thus says the LORD, the God of Israel: Because you have prayed to me concerning King Sennacherib of Assyria,</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> this is the word that the LORD has spoken concerning him: She despises you, she scorns you-- virgin daughter Zion; she tosses her head-- behind your back, daughter Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Whom have you mocked and reviled? Against whom have you raised your voice and haughtily lifted your eyes? Against the Holy One of Israel!</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> By your servants you have mocked the Lord, and you have said, 'With my many chariots I have gone up the heights of the mountains, to the far recesses of Lebanon; I felled its tallest cedars, its choicest cypresses; I came to its remotest height, its densest forest.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> I dug wells and drank waters, I dried up with the sole of my foot all the streams of Egypt.'</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Have you not heard that I determined it long ago? I planned from days of old what now I bring to pass, that you should make fortified cities crash into heaps of ruins,</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> while their inhabitants, shorn of strength, are dismayed and confounded; they have become like plants of the field and like tender grass, like grass on the housetops, blighted before it is grown. </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> I know your rising up and your sitting down, your going out and coming in, and your raging against me. </VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Because you have raged against me and your arrogance has come to my ears, I will put my hook in your nose and my bit in your mouth; I will turn you back on the way by which you came.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> \"And this shall be the sign for you: This year eat what grows of itself, and in the second year what springs from that; then in the third year sow, reap, plant vineyards, and eat their fruit.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> The surviving remnant of the house of Judah shall again take root downward, and bear fruit upward;</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> for from Jerusalem a remnant shall go out, and from Mount Zion a band of survivors. The zeal of the LORD of hosts will do this.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> \"Therefore thus says the LORD concerning the king of Assyria: He shall not come into this city, shoot an arrow there, come before it with a shield, or cast up a siege ramp against it.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> By the way that he came, by the same he shall return; he shall not come into this city, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> For I will defend this city to save it, for my own sake and for the sake of my servant David.\"</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Then the angel of the LORD set out and struck down one hundred eighty-five thousand in the camp of the Assyrians; when morning dawned, they were all dead bodies.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Then King Sennacherib of Assyria left, went home, and lived at Nineveh.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> As he was worshiping in the house of his god Nisroch, his sons Adrammelech and Sharezer killed him with the sword, and they escaped into the land of Ararat. His son Esar-haddon succeeded him.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"38\">\r\n\t\t\t<VERS vnumber=\"1\"> In those days Hezekiah became sick and was at the point of death. The prophet Isaiah son of Amoz came to him, and said to him, \"Thus says the LORD: Set your house in order, for you shall die; you shall not recover.\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Then Hezekiah turned his face to the wall, and prayed to the LORD:</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> \"Remember now, O LORD, I implore you, how I have walked before you in faithfulness with a whole heart, and have done what is good in your sight.\" And Hezekiah wept bitterly.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then the word of the LORD came to Isaiah:</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> \"Go and say to Hezekiah, Thus says the LORD, the God of your ancestor David: I have heard your prayer, I have seen your tears; I will add fifteen years to your life.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> I will deliver you and this city out of the hand of the king of Assyria, and defend this city.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> \"This is the sign to you from the LORD, that the LORD will do this thing that he has promised:</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> See, I will make the shadow cast by the declining sun on the dial of Ahaz turn back ten steps.\" So the sun turned back on the dial the ten steps by which it had declined.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> A writing of King Hezekiah of Judah, after he had been sick and had recovered from his sickness:</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> I said: In the noontide of my days I must depart; I am consigned to the gates of Sheol for the rest of my years.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> I said, I shall not see the LORD in the land of the living; I shall look upon mortals no more among the inhabitants of the world.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> My dwelling is plucked up and removed from me like a shepherd's tent; like a weaver I have rolled up my life; he cuts me off from the loom; from day to night you bring me to an end; </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> I cry for help until morning; like a lion he breaks all my bones; from day to night you bring me to an end. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Like a swallow or a crane I clamor, I moan like a dove. My eyes are weary with looking upward. O Lord, I am oppressed; be my security! </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> But what can I say? For he has spoken to me, and he himself has done it. All my sleep has fled because of the bitterness of my soul. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> O Lord, by these things people live, and in all these is the life of my spirit. Oh, restore me to health and make me live! </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Surely it was for my welfare that I had great bitterness; but you have held back my life from the pit of destruction, for you have cast all my sins behind your back. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> For Sheol cannot thank you, death cannot praise you; those who go down to the Pit cannot hope for your faithfulness.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The living, the living, they thank you, as I do this day; fathers make known to children your faithfulness.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The LORD will save me, and we will sing to stringed instruments all the days of our lives, at the house of the LORD. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Now Isaiah had said, \"Let them take a lump of figs, and apply it to the boil, so that he may recover.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Hezekiah also had said, \"What is the sign that I shall go up to the house of the LORD?\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"39\">\r\n\t\t\t<VERS vnumber=\"1\"> At that time King Merodach-baladan son of Baladan of Babylon sent envoys with letters and a present to Hezekiah, for he heard that he had been sick and had recovered.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Hezekiah welcomed them; he showed them his treasure house, the silver, the gold, the spices, the precious oil, his whole armory, all that was found in his storehouses. There was nothing in his house or in all his realm that Hezekiah did not show them.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then the prophet Isaiah came to King Hezekiah and said to him, \"What did these men say? From where did they come to you?\" Hezekiah answered, \"They have come to me from a far country, from Babylon.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> He said, \"What have they seen in your house?\" Hezekiah answered, \"They have seen all that is in my house; there is nothing in my storehouses that I did not show them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then Isaiah said to Hezekiah, \"Hear the word of the LORD of hosts:</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Days are coming when all that is in your house, and that which your ancestors have stored up until this day, shall be carried to Babylon; nothing shall be left, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Some of your own sons who are born to you shall be taken away; they shall be eunuchs in the palace of the king of Babylon.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then Hezekiah said to Isaiah, \"The word of the LORD that you have spoken is good.\" For he thought, \"There will be peace and security in my days.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"40\">\r\n\t\t\t<VERS vnumber=\"1\"> Comfort, O comfort my people, says your God.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Speak tenderly to Jerusalem, and cry to her that she has served her term, that her penalty is paid, that she has received from the LORD's hand double for all her sins.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> A voice cries out: \"In the wilderness prepare the way of the LORD, make straight in the desert a highway for our God.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Every valley shall be lifted up, and every mountain and hill be made low; the uneven ground shall become level, and the rough places a plain.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then the glory of the LORD shall be revealed, and all people shall see it together, for the mouth of the LORD has spoken.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> A voice says, \"Cry out!\" And I said, \"What shall I cry?\" All people are grass, their constancy is like the flower of the field.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The grass withers, the flower fades, when the breath of the LORD blows upon it; surely the people are grass.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The grass withers, the flower fades; but the word of our God will stand forever.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Get you up to a high mountain, O Zion, herald of good tidings; lift up your voice with strength, O Jerusalem, herald of good tidings, lift it up, do not fear; say to the cities of Judah, \"Here is your God!\" </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> See, the Lord GOD comes with might, and his arm rules for him; his reward is with him, and his recompense before him.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> He will feed his flock like a shepherd; he will gather the lambs in his arms, and carry them in his bosom, and gently lead the mother sheep.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Who has measured the waters in the hollow of his hand and marked off the heavens with a span, enclosed the dust of the earth in a measure, and weighed the mountains in scales and the hills in a balance?</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Who has directed the spirit of the LORD, or as his counselor has instructed him?</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Whom did he consult for his enlightenment, and who taught him the path of justice? Who taught him knowledge, and showed him the way of understanding?</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Even the nations are like a drop from a bucket, and are accounted as dust on the scales; see, he takes up the isles like fine dust.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Lebanon would not provide fuel enough, nor are its animals enough for a burnt offering.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> All the nations are as nothing before him; they are accounted by him as less than nothing and emptiness.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> To whom then will you liken God, or what likeness compare with him?</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> An idol?-- A workman casts it, and a goldsmith overlays it with gold, and casts for it silver chains.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> As a gift one chooses mulberry wood-- wood that will not rot-- then seeks out a skilled artisan to set up an image that will not topple.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Have you not known? Have you not heard? Has it not been told you from the beginning? Have you not understood from the foundations of the earth?</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> It is he who sits above the circle of the earth, and its inhabitants are like grasshoppers; who stretches out the heavens like a curtain, and spreads them like a tent to live in;</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> who brings princes to naught, and makes the rulers of the earth as nothing.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Scarcely are they planted, scarcely sown, scarcely has their stem taken root in the earth, when he blows upon them, and they wither, and the tempest carries them off like stubble.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> To whom then will you compare me, or who is my equal? says the Holy One.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Lift up your eyes on high and see: Who created these? He who brings out their host and numbers them, calling them all by name; because he is great in strength, mighty in power, not one is missing.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Why do you say, O Jacob, and speak, O Israel, \"My way is hidden from the LORD, and my right is disregarded by my God\"?</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Have you not known? Have you not heard? The LORD is the everlasting God, the Creator of the ends of the earth. He does not faint or grow weary; his understanding is unsearchable.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> He gives power to the faint, and strengthens the powerless.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Even youths will faint and be weary, and the young will fall exhausted;</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> but those who wait for the LORD shall renew their strength, they shall mount up with wings like eagles, they shall run and not be weary, they shall walk and not faint.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"41\">\r\n\t\t\t<VERS vnumber=\"1\"> Listen to me in silence, O coastlands; let the peoples renew their strength; let them approach, then let them speak; let us together draw near for judgment.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Who has roused a victor from the east, summoned him to his service? He delivers up nations to him, and tramples kings under foot; he makes them like dust with his sword, like driven stubble with his bow.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> He pursues them and passes on safely, scarcely touching the path with his feet.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Who has performed and done this, calling the generations from the beginning? I, the LORD, am first, and will be with the last.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The coastlands have seen and are afraid, the ends of the earth tremble; they have drawn near and come.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Each one helps the other, saying to one another, \"Take courage!\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The artisan encourages the goldsmith, and the one who smooths with the hammer encourages the one who strikes the anvil, saying of the soldering, \"It is good\"; and they fasten it with nails so that it cannot be moved.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But you, Israel, my servant, Jacob, whom I have chosen, the offspring of Abraham, my friend;</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> you whom I took from the ends of the earth, and called from its farthest corners, saying to you, \"You are my servant, I have chosen you and not cast you off\";</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> do not fear, for I am with you, do not be afraid, for I am your God; I will strengthen you, I will help you, I will uphold you with my victorious right hand.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Yes, all who are incensed against you shall be ashamed and disgraced; those who strive against you shall be as nothing and shall perish.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> You shall seek those who contend with you, but you shall not find them; those who war against you shall be as nothing at all.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> For I, the LORD your God, hold your right hand; it is I who say to you, \"Do not fear, I will help you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Do not fear, you worm Jacob, you insect Israel! I will help you, says the LORD; your Redeemer is the Holy One of Israel. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Now, I will make of you a threshing sledge, sharp, new, and having teeth; you shall thresh the mountains and crush them, and you shall make the hills like chaff.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> You shall winnow them and the wind shall carry them away, and the tempest shall scatter them. Then you shall rejoice in the LORD; in the Holy One of Israel you shall glory.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> When the poor and needy seek water, and there is none, and their tongue is parched with thirst, I the LORD will answer them, I the God of Israel will not forsake them.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> I will open rivers on the bare heights, and fountains in the midst of the valleys; I will make the wilderness a pool of water, and the dry land springs of water. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> I will put in the wilderness the cedar, the acacia, the myrtle, and the olive; I will set in the desert the cypress, the plane and the pine together,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> so that all may see and know, all may consider and understand, that the hand of the LORD has done this, the Holy One of Israel has created it.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Set forth your case, says the LORD; bring your proofs, says the King of Jacob.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Let them bring them, and tell us what is to happen. Tell us the former things, what they are, so that we may consider them, and that we may know their outcome; or declare to us the things to come.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Tell us what is to come hereafter, that we may know that you are gods; do good, or do harm, that we may be afraid and terrified.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> You, indeed, are nothing and your work is nothing at all; whoever chooses you is an abomination.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> I stirred up one from the north, and he has come, from the rising of the sun he was summoned by name. He shall trample on rulers as on mortar, as the potter treads clay. </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Who declared it from the beginning, so that we might know, and beforehand, so that we might say, \"He is right\"? There was no one who declared it, none who proclaimed, none who heard your words.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> I first have declared it to Zion, and I give to Jerusalem a herald of good tidings. </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> But when I look there is no one; among these there is no counselor who, when I ask, gives an answer.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> No, they are all a delusion; their works are nothing; their images are empty wind.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"42\">\r\n\t\t\t<VERS vnumber=\"1\"> Here is my servant, whom I uphold, my chosen, in whom my soul delights; I have put my spirit upon him; he will bring forth justice to the nations.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He will not cry or lift up his voice, or make it heard in the street;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> a bruised reed he will not break, and a dimly burning wick he will not quench; he will faithfully bring forth justice.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> He will not grow faint or be crushed until he has established justice in the earth; and the coastlands wait for his teaching.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Thus says God, the LORD, who created the heavens and stretched them out, who spread out the earth and what comes from it, who gives breath to the people upon it and spirit to those who walk in it:</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> I am the LORD, I have called you in righteousness, I have taken you by the hand and kept you; I have given you as a covenant to the people, a light to the nations, </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> to open the eyes that are blind, to bring out the prisoners from the dungeon, from the prison those who sit in darkness.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> I am the LORD, that is my name; my glory I give to no other, nor my praise to idols.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> See, the former things have come to pass, and new things I now declare; before they spring forth, I tell you of them.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Sing to the LORD a new song, his praise from the end of the earth! Let the sea roar and all that fills it, the coastlands and their inhabitants. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Let the desert and its towns lift up their voice, the villages that Kedar inhabits; let the inhabitants of Sela sing for joy, let them shout from the tops of the mountains.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Let them give glory to the LORD, and declare his praise in the coastlands.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The LORD goes forth like a soldier, like a warrior he stirs up his fury; he cries out, he shouts aloud, he shows himself mighty against his foes.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> For a long time I have held my peace, I have kept still and restrained myself; now I will cry out like a woman in labor, I will gasp and pant.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> I will lay waste mountains and hills, and dry up all their herbage; I will turn the rivers into islands, and dry up the pools.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> I will lead the blind by a road they do not know, by paths they have not known I will guide them. I will turn the darkness before them into light, the rough places into level ground. These are the things I will do, and I will not forsake them.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> They shall be turned back and utterly put to shame-- those who trust in carved images, who say to cast images, \"You are our gods.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Listen, you that are deaf; and you that are blind, look up and see!</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Who is blind but my servant, or deaf like my messenger whom I send? Who is blind like my dedicated one, or blind like the servant of the LORD?</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> He sees many things, but does not observe them; his ears are open, but he does not hear. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> The LORD was pleased, for the sake of his righteousness, to magnify his teaching and make it glorious.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> But this is a people robbed and plundered, all of them are trapped in holes and hidden in prisons; they have become a prey with no one to rescue, a spoil with no one to say, \"Restore!\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Who among you will give heed to this, who will attend and listen for the time to come?</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Who gave up Jacob to the spoiler, and Israel to the robbers? Was it not the LORD, against whom we have sinned, in whose ways they would not walk, and whose law they would not obey?</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> So he poured upon him the heat of his anger and the fury of war; it set him on fire all around, but he did not understand; it burned him, but he did not take it to heart.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"43\">\r\n\t\t\t<VERS vnumber=\"1\"> But now thus says the LORD, he who created you, O Jacob, he who formed you, O Israel: Do not fear, for I have redeemed you; I have called you by name, you are mine.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> When you pass through the waters, I will be with you; and through the rivers, they shall not overwhelm you; when you walk through fire you shall not be burned, and the flame shall not consume you.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For I am the LORD your God, the Holy One of Israel, your Savior. I give Egypt as your ransom, Ethiopia and Seba in exchange for you. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Because you are precious in my sight, and honored, and I love you, I give people in return for you, nations in exchange for your life.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Do not fear, for I am with you; I will bring your offspring from the east, and from the west I will gather you;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> I will say to the north, \"Give them up,\" and to the south, \"Do not withhold; bring my sons from far away and my daughters from the end of the earth--</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> everyone who is called by my name, whom I created for my glory, whom I formed and made.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Bring forth the people who are blind, yet have eyes, who are deaf, yet have ears!</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Let all the nations gather together, and let the peoples assemble. Who among them declared this, and foretold to us the former things? Let them bring their witnesses to justify them, and let them hear and say, \"It is true.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> You are my witnesses, says the LORD, and my servant whom I have chosen, so that you may know and believe me and understand that I am he. Before me no god was formed, nor shall there be any after me.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> I, I am the LORD, and besides me there is no savior.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> I declared and saved and proclaimed, when there was no strange god among you; and you are my witnesses, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> I am God, and also henceforth I am He; there is no one who can deliver from my hand; I work and who can hinder it?</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Thus says the LORD, your Redeemer, the Holy One of Israel: For your sake I will send to Babylon and break down all the bars, and the shouting of the Chaldeans will be turned to lamentation. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> I am the LORD, your Holy One, the Creator of Israel, your King.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Thus says the LORD, who makes a way in the sea, a path in the mighty waters,</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> who brings out chariot and horse, army and warrior; they lie down, they cannot rise, they are extinguished, quenched like a wick:</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Do not remember the former things, or consider the things of old.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> I am about to do a new thing; now it springs forth, do you not perceive it? I will make a way in the wilderness and rivers in the desert.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The wild animals will honor me, the jackals and the ostriches; for I give water in the wilderness, rivers in the desert, to give drink to my chosen people,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> the people whom I formed for myself so that they might declare my praise.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Yet you did not call upon me, O Jacob; but you have been weary of me, O Israel!</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> You have not brought me your sheep for burnt offerings, or honored me with your sacrifices. I have not burdened you with offerings, or wearied you with frankincense.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> You have not bought me sweet cane with money, or satisfied me with the fat of your sacrifices. But you have burdened me with your sins; you have wearied me with your iniquities.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> I, I am He who blots out your transgressions for my own sake, and I will not remember your sins.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Accuse me, let us go to trial; set forth your case, so that you may be proved right.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Your first ancestor sinned, and your interpreters transgressed against me.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Therefore I profaned the princes of the sanctuary, I delivered Jacob to utter destruction, and Israel to reviling.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"44\">\r\n\t\t\t<VERS vnumber=\"1\"> But now hear, O Jacob my servant, Israel whom I have chosen!</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Thus says the LORD who made you, who formed you in the womb and will help you: Do not fear, O Jacob my servant, Jeshurun whom I have chosen.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For I will pour water on the thirsty land, and streams on the dry ground; I will pour my spirit upon your descendants, and my blessing on your offspring.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> They shall spring up like a green tamarisk, like willows by flowing streams.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> This one will say, \"I am the LORD's,\" another will be called by the name of Jacob, yet another will write on the hand, \"The LORD's,\" and adopt the name of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Thus says the LORD, the King of Israel, and his Redeemer, the LORD of hosts: I am the first and I am the last; besides me there is no god.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Who is like me? Let them proclaim it, let them declare and set it forth before me. Who has announced from of old the things to come? Let them tell us what is yet to be. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Do not fear, or be afraid; have I not told you from of old and declared it? You are my witnesses! Is there any god besides me? There is no other rock; I know not one.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> All who make idols are nothing, and the things they delight in do not profit; their witnesses neither see nor know. And so they will be put to shame.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Who would fashion a god or cast an image that can do no good?</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Look, all its devotees shall be put to shame; the artisans too are merely human. Let them all assemble, let them stand up; they shall be terrified, they shall all be put to shame.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The ironsmith fashions it and works it over the coals, shaping it with hammers, and forging it with his strong arm; he becomes hungry and his strength fails, he drinks no water and is faint. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The carpenter stretches a line, marks it out with a stylus, fashions it with planes, and marks it with a compass; he makes it in human form, with human beauty, to be set up in a shrine.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> He cuts down cedars or chooses a holm tree or an oak and lets it grow strong among the trees of the forest. He plants a cedar and the rain nourishes it.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Then it can be used as fuel. Part of it he takes and warms himself; he kindles a fire and bakes bread. Then he makes a god and worships it, makes it a carved image and bows down before it.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Half of it he burns in the fire; over this half he roasts meat, eats it and is satisfied. He also warms himself and says, \"Ah, I am warm, I can feel the fire!\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The rest of it he makes into a god, his idol, bows down to it and worships it; he prays to it and says, \"Save me, for you are my god!\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> They do not know, nor do they comprehend; for their eyes are shut, so that they cannot see, and their minds as well, so that they cannot understand.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> No one considers, nor is there knowledge or discernment to say, \"Half of it I burned in the fire; I also baked bread on its coals, I roasted meat and have eaten. Now shall I make the rest of it an abomination? Shall I fall down before a block of wood?\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> He feeds on ashes; a deluded mind has led him astray, and he cannot save himself or say, \"Is not this thing in my right hand a fraud?\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Remember these things, O Jacob, and Israel, for you are my servant; I formed you, you are my servant; O Israel, you will not be forgotten by me.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> I have swept away your transgressions like a cloud, and your sins like mist; return to me, for I have redeemed you.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Sing, O heavens, for the LORD has done it; shout, O depths of the earth; break forth into singing, O mountains, O forest, and every tree in it! For the LORD has redeemed Jacob, and will be glorified in Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Thus says the LORD, your Redeemer, who formed you in the womb: I am the LORD, who made all things, who alone stretched out the heavens, who by myself spread out the earth;</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> who frustrates the omens of liars, and makes fools of diviners; who turns back the wise, and makes their knowledge foolish;</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> who confirms the word of his servant, and fulfills the prediction of his messengers; who says of Jerusalem, \"It shall be inhabited,\" and of the cities of Judah, \"They shall be rebuilt, and I will raise up their ruins\";</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> who says to the deep, \"Be dry-- I will dry up your rivers\";</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> who says of Cyrus, \"He is my shepherd, and he shall carry out all my purpose\"; and who says of Jerusalem, \"It shall be rebuilt,\" and of the temple, \"Your foundation shall be laid.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"45\">\r\n\t\t\t<VERS vnumber=\"1\"> Thus says the LORD to his anointed, to Cyrus, whose right hand I have grasped to subdue nations before him and strip kings of their robes, to open doors before him-- and the gates shall not be closed:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> I will go before you and level the mountains, I will break in pieces the doors of bronze and cut through the bars of iron, </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> I will give you the treasures of darkness and riches hidden in secret places, so that you may know that it is I, the LORD, the God of Israel, who call you by your name.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For the sake of my servant Jacob, and Israel my chosen, I call you by your name, I surname you, though you do not know me.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> I am the LORD, and there is no other; besides me there is no god. I arm you, though you do not know me,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> so that they may know, from the rising of the sun and from the west, that there is no one besides me; I am the LORD, and there is no other.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> I form light and create darkness, I make weal and create woe; I the LORD do all these things.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Shower, O heavens, from above, and let the skies rain down righteousness; let the earth open, that salvation may spring up, and let it cause righteousness to sprout up also; I the LORD have created it. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Woe to you who strive with your Maker, earthen vessels with the potter! Does the clay say to the one who fashions it, \"What are you making\"? or \"Your work has no handles\"? </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Woe to anyone who says to a father, \"What are you begetting?\" or to a woman, \"With what are you in labor?\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Thus says the LORD, the Holy One of Israel, and its Maker: Will you question me about my children, or command me concerning the work of my hands? </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> I made the earth, and created humankind upon it; it was my hands that stretched out the heavens, and I commanded all their host.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> I have aroused Cyrus in righteousness, and I will make all his paths straight; he shall build my city and set my exiles free, not for price or reward, says the LORD of hosts. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Thus says the LORD: The wealth of Egypt and the merchandise of Ethiopia, and the Sabeans, tall of stature, shall come over to you and be yours, they shall follow you; they shall come over in chains and bow down to you. They will make supplication to you, saying, \"God is with you alone, and there is no other; there is no god besides him.\" </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Truly, you are a God who hides himself, O God of Israel, the Savior.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> All of them are put to shame and confounded, the makers of idols go in confusion together.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> But Israel is saved by the LORD with everlasting salvation; you shall not be put to shame or confounded to all eternity.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> For thus says the LORD, who created the heavens (he is God!), who formed the earth and made it (he established it; he did not create it a chaos, he formed it to be inhabited!): I am the LORD, and there is no other.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> I did not speak in secret, in a land of darkness; I did not say to the offspring of Jacob, \"Seek me in chaos.\" I the LORD speak the truth, I declare what is right.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Assemble yourselves and come together, draw near, you survivors of the nations! They have no knowledge-- those who carry about their wooden idols, and keep on praying to a god that cannot save.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Declare and present your case; let them take counsel together! Who told this long ago? Who declared it of old? Was it not I, the LORD? There is no other god besides me, a righteous God and a Savior; there is no one besides me.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Turn to me and be saved, all the ends of the earth! For I am God, and there is no other.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> By myself I have sworn, from my mouth has gone forth in righteousness a word that shall not return: \"To me every knee shall bow, every tongue shall swear.\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Only in the LORD, it shall be said of me, are righteousness and strength; all who were incensed against him shall come to him and be ashamed.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> In the LORD all the offspring of Israel shall triumph and glory.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"46\">\r\n\t\t\t<VERS vnumber=\"1\"> Bel bows down, Nebo stoops, their idols are on beasts and cattle; these things you carry are loaded as burdens on weary animals.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> They stoop, they bow down together; they cannot save the burden, but themselves go into captivity.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Listen to me, O house of Jacob, all the remnant of the house of Israel, who have been borne by me from your birth, carried from the womb;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> even to your old age I am he, even when you turn gray I will carry you. I have made, and I will bear; I will carry and will save.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> To whom will you liken me and make me equal, and compare me, as though we were alike?</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Those who lavish gold from the purse, and weigh out silver in the scales-- they hire a goldsmith, who makes it into a god; then they fall down and worship!</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> They lift it to their shoulders, they carry it, they set it in its place, and it stands there; it cannot move from its place. If one cries out to it, it does not answer or save anyone from trouble.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Remember this and consider, recall it to mind, you transgressors, </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> remember the former things of old; for I am God, and there is no other; I am God, and there is no one like me,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> declaring the end from the beginning and from ancient times things not yet done, saying, \"My purpose shall stand, and I will fulfill my intention,\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> calling a bird of prey from the east, the man for my purpose from a far country. I have spoken, and I will bring it to pass; I have planned, and I will do it.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Listen to me, you stubborn of heart, you who are far from deliverance:</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> I bring near my deliverance, it is not far off, and my salvation will not tarry; I will put salvation in Zion, for Israel my glory.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"47\">\r\n\t\t\t<VERS vnumber=\"1\"> Come down and sit in the dust, virgin daughter Babylon! Sit on the ground without a throne, daughter Chaldea! For you shall no more be called tender and delicate.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Take the millstones and grind meal, remove your veil, strip off your robe, uncover your legs, pass through the rivers.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Your nakedness shall be uncovered, and your shame shall be seen. I will take vengeance, and I will spare no one.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Our Redeemer-- the LORD of hosts is his name-- is the Holy One of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Sit in silence, and go into darkness, daughter Chaldea! For you shall no more be called the mistress of kingdoms.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> I was angry with my people, I profaned my heritage; I gave them into your hand, you showed them no mercy; on the aged you made your yoke exceedingly heavy.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> You said, \"I shall be mistress forever,\" so that you did not lay these things to heart or remember their end.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Now therefore hear this, you lover of pleasures, who sit securely, who say in your heart, \"I am, and there is no one besides me; I shall not sit as a widow or know the loss of children\"--</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> both these things shall come upon you in a moment, in one day: the loss of children and widowhood shall come upon you in full measure, in spite of your many sorceries and the great power of your enchantments.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> You felt secure in your wickedness; you said, \"No one sees me.\" Your wisdom and your knowledge led you astray, and you said in your heart, \"I am, and there is no one besides me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But evil shall come upon you, which you cannot charm away; disaster shall fall upon you, which you will not be able to ward off; and ruin shall come on you suddenly, of which you know nothing.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Stand fast in your enchantments and your many sorceries, with which you have labored from your youth; perhaps you may be able to succeed, perhaps you may inspire terror.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> You are wearied with your many consultations; let those who study the heavens stand up and save you, those who gaze at the stars, and at each new moon predict what shall befall you. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> See, they are like stubble, the fire consumes them; they cannot deliver themselves from the power of the flame. No coal for warming oneself is this, no fire to sit before!</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Such to you are those with whom you have labored, who have trafficked with you from your youth; they all wander about in their own paths; there is no one to save you.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"48\">\r\n\t\t\t<VERS vnumber=\"1\"> Hear this, O house of Jacob, who are called by the name of Israel, and who came forth from the loins of Judah; who swear by the name of the LORD, and invoke the God of Israel, but not in truth or right. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> For they call themselves after the holy city, and lean on the God of Israel; the LORD of hosts is his name.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The former things I declared long ago, they went out from my mouth and I made them known; then suddenly I did them and they came to pass.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Because I know that you are obstinate, and your neck is an iron sinew and your forehead brass,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> I declared them to you from long ago, before they came to pass I announced them to you, so that you would not say, \"My idol did them, my carved image and my cast image commanded them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> You have heard; now see all this; and will you not declare it? From this time forward I make you hear new things, hidden things that you have not known.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> They are created now, not long ago; before today you have never heard of them, so that you could not say, \"I already knew them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> You have never heard, you have never known, from of old your ear has not been opened. For I knew that you would deal very treacherously, and that from birth you were called a rebel.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> For my name's sake I defer my anger, for the sake of my praise I restrain it for you, so that I may not cut you off.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> See, I have refined you, but not like silver; I have tested you in the furnace of adversity. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> For my own sake, for my own sake, I do it, for why should my name be profaned? My glory I will not give to another. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Listen to me, O Jacob, and Israel, whom I called: I am He; I am the first, and I am the last.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> My hand laid the foundation of the earth, and my right hand spread out the heavens; when I summon them, they stand at attention.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Assemble, all of you, and hear! Who among them has declared these things? The LORD loves him; he shall perform his purpose on Babylon, and his arm shall be against the Chaldeans.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> I, even I, have spoken and called him, I have brought him, and he will prosper in his way.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Draw near to me, hear this! From the beginning I have not spoken in secret, from the time it came to be I have been there. And now the Lord GOD has sent me and his spirit.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Thus says the LORD, your Redeemer, the Holy One of Israel: I am the LORD your God, who teaches you for your own good, who leads you in the way you should go.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> O that you had paid attention to my commandments! Then your prosperity would have been like a river, and your success like the waves of the sea;</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> your offspring would have been like the sand, and your descendants like its grains; their name would never be cut off or destroyed from before me.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Go out from Babylon, flee from Chaldea, declare this with a shout of joy, proclaim it, send it forth to the end of the earth; say, \"The LORD has redeemed his servant Jacob!\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> They did not thirst when he led them through the deserts; he made water flow for them from the rock; he split open the rock and the water gushed out.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> \"There is no peace,\" says the LORD, \"for the wicked.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"49\">\r\n\t\t\t<VERS vnumber=\"1\"> Listen to me, O coastlands, pay attention, you peoples from far away! The LORD called me before I was born, while I was in my mother's womb he named me.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He made my mouth like a sharp sword, in the shadow of his hand he hid me; he made me a polished arrow, in his quiver he hid me away.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And he said to me, \"You are my servant, Israel, in whom I will be glorified.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But I said, \"I have labored in vain, I have spent my strength for nothing and vanity; yet surely my cause is with the LORD, and my reward with my God.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> And now the LORD says, who formed me in the womb to be his servant, to bring Jacob back to him, and that Israel might be gathered to him, for I am honored in the sight of the LORD, and my God has become my strength--</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> he says, \"It is too light a thing that you should be my servant to raise up the tribes of Jacob and to restore the survivors of Israel; I will give you as a light to the nations, that my salvation may reach to the end of the earth.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Thus says the LORD, the Redeemer of Israel and his Holy One, to one deeply despised, abhorred by the nations, the slave of rulers, \"Kings shall see and stand up, princes, and they shall prostrate themselves, because of the LORD, who is faithful, the Holy One of Israel, who has chosen you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Thus says the LORD: In a time of favor I have answered you, on a day of salvation I have helped you; I have kept you and given you as a covenant to the people, to establish the land, to apportion the desolate heritages; </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> saying to the prisoners, \"Come out,\" to those who are in darkness, \"Show yourselves.\" They shall feed along the ways, on all the bare heights shall be their pasture; </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> they shall not hunger or thirst, neither scorching wind nor sun shall strike them down, for he who has pity on them will lead them, and by springs of water will guide them.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> And I will turn all my mountains into a road, and my highways shall be raised up.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Lo, these shall come from far away, and lo, these from the north and from the west, and these from the land of Syene. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Sing for joy, O heavens, and exult, O earth; break forth, O mountains, into singing! For the LORD has comforted his people, and will have compassion on his suffering ones.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But Zion said, \"The LORD has forsaken me, my Lord has forgotten me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Can a woman forget her nursing child, or show no compassion for the child of her womb? Even these may forget, yet I will not forget you.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> See, I have inscribed you on the palms of my hands; your walls are continually before me.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Your builders outdo your destroyers, and those who laid you waste go away from you. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Lift up your eyes all around and see; they all gather, they come to you. As I live, says the LORD, you shall put all of them on like an ornament, and like a bride you shall bind them on.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Surely your waste and your desolate places and your devastated land-- surely now you will be too crowded for your inhabitants, and those who swallowed you up will be far away.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The children born in the time of your bereavement will yet say in your hearing: \"The place is too crowded for me; make room for me to settle.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then you will say in your heart, \"Who has borne me these? I was bereaved and barren, exiled and put away-- so who has reared these? I was left all alone-- where then have these come from?\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Thus says the Lord GOD: I will soon lift up my hand to the nations, and raise my signal to the peoples; and they shall bring your sons in their bosom, and your daughters shall be carried on their shoulders.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Kings shall be your foster fathers, and their queens your nursing mothers. With their faces to the ground they shall bow down to you, and lick the dust of your feet. Then you will know that I am the LORD; those who wait for me shall not be put to shame.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Can the prey be taken from the mighty, or the captives of a tyrant be rescued? </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> But thus says the LORD: Even the captives of the mighty shall be taken, and the prey of the tyrant be rescued; for I will contend with those who contend with you, and I will save your children.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> I will make your oppressors eat their own flesh, and they shall be drunk with their own blood as with wine. Then all flesh shall know that I am the LORD your Savior, and your Redeemer, the Mighty One of Jacob.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"50\">\r\n\t\t\t<VERS vnumber=\"1\"> Thus says the LORD: Where is your mother's bill of divorce with which I put her away? Or which of my creditors is it to whom I have sold you? No, because of your sins you were sold, and for your transgressions your mother was put away.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Why was no one there when I came? Why did no one answer when I called? Is my hand shortened, that it cannot redeem? Or have I no power to deliver? By my rebuke I dry up the sea, I make the rivers a desert; their fish stink for lack of water, and die of thirst. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> I clothe the heavens with blackness, and make sackcloth their covering.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The Lord GOD has given me the tongue of a teacher, that I may know how to sustain the weary with a word. Morning by morning he wakens-- wakens my ear to listen as those who are taught.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The Lord GOD has opened my ear, and I was not rebellious, I did not turn backward.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> I gave my back to those who struck me, and my cheeks to those who pulled out the beard; I did not hide my face from insult and spitting.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The Lord GOD helps me; therefore I have not been disgraced; therefore I have set my face like flint, and I know that I shall not be put to shame;</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> he who vindicates me is near. Who will contend with me? Let us stand up together. Who are my adversaries? Let them confront me.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> It is the Lord GOD who helps me; who will declare me guilty? All of them will wear out like a garment; the moth will eat them up.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Who among you fears the LORD and obeys the voice of his servant, who walks in darkness and has no light, yet trusts in the name of the LORD and relies upon his God?</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But all of you are kindlers of fire, lighters of firebrands. Walk in the flame of your fire, and among the brands that you have kindled! This is what you shall have from my hand: you shall lie down in torment. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"51\">\r\n\t\t\t<VERS vnumber=\"1\"> Listen to me, you that pursue righteousness, you that seek the LORD. Look to the rock from which you were hewn, and to the quarry from which you were dug.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Look to Abraham your father and to Sarah who bore you; for he was but one when I called him, but I blessed him and made him many.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For the LORD will comfort Zion; he will comfort all her waste places, and will make her wilderness like Eden, her desert like the garden of the LORD; joy and gladness will be found in her, thanksgiving and the voice of song.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Listen to me, my people, and give heed to me, my nation; for a teaching will go out from me, and my justice for a light to the peoples.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> I will bring near my deliverance swiftly, my salvation has gone out and my arms will rule the peoples; the coastlands wait for me, and for my arm they hope.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Lift up your eyes to the heavens, and look at the earth beneath; for the heavens will vanish like smoke, the earth will wear out like a garment, and those who live on it will die like gnats; but my salvation will be forever, and my deliverance will never be ended. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Listen to me, you who know righteousness, you people who have my teaching in your hearts; do not fear the reproach of others, and do not be dismayed when they revile you.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> For the moth will eat them up like a garment, and the worm will eat them like wool; but my deliverance will be forever, and my salvation to all generations.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Awake, awake, put on strength, O arm of the LORD! Awake, as in days of old, the generations of long ago! Was it not you who cut Rahab in pieces, who pierced the dragon?</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Was it not you who dried up the sea, the waters of the great deep; who made the depths of the sea a way for the redeemed to cross over?</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> So the ransomed of the LORD shall return, and come to Zion with singing; everlasting joy shall be upon their heads; they shall obtain joy and gladness, and sorrow and sighing shall flee away.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> I, I am he who comforts you; why then are you afraid of a mere mortal who must die, a human being who fades like grass?</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> You have forgotten the LORD, your Maker, who stretched out the heavens and laid the foundations of the earth. You fear continually all day long because of the fury of the oppressor, who is bent on destruction. But where is the fury of the oppressor?</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The oppressed shall speedily be released; they shall not die and go down to the Pit, nor shall they lack bread.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> For I am the LORD your God, who stirs up the sea so that its waves roar-- the LORD of hosts is his name.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> I have put my words in your mouth, and hidden you in the shadow of my hand, stretching out the heavens and laying the foundations of the earth, and saying to Zion, \"You are my people.\" </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Rouse yourself, rouse yourself! Stand up, O Jerusalem, you who have drunk at the hand of the LORD the cup of his wrath, who have drunk to the dregs the bowl of staggering.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> There is no one to guide her among all the children she has borne; there is no one to take her by the hand among all the children she has brought up.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> These two things have befallen you-- who will grieve with you?-- devastation and destruction, famine and sword-- who will comfort you?</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Your children have fainted, they lie at the head of every street like an antelope in a net; they are full of the wrath of the LORD, the rebuke of your God.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Therefore hear this, you who are wounded, who are drunk, but not with wine: </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Thus says your Sovereign, the LORD, your God who pleads the cause of his people: See, I have taken from your hand the cup of staggering; you shall drink no more from the bowl of my wrath.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> And I will put it into the hand of your tormentors, who have said to you, \"Bow down, that we may walk on you\"; and you have made your back like the ground and like the street for them to walk on.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"52\">\r\n\t\t\t<VERS vnumber=\"1\"> Awake, awake, put on your strength, O Zion! Put on your beautiful garments, O Jerusalem, the holy city; for the uncircumcised and the unclean shall enter you no more.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Shake yourself from the dust, rise up, O captive Jerusalem; loose the bonds from your neck, O captive daughter Zion! </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For thus says the LORD: You were sold for nothing, and you shall be redeemed without money.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For thus says the Lord GOD: Long ago, my people went down into Egypt to reside there as aliens; the Assyrian, too, has oppressed them without cause.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Now therefore what am I doing here, says the LORD, seeing that my people are taken away without cause? Their rulers howl, says the LORD, and continually, all day long, my name is despised.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Therefore my people shall know my name; therefore in that day they shall know that it is I who speak; here am I.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> How beautiful upon the mountains are the feet of the messenger who announces peace, who brings good news, who announces salvation, who says to Zion, \"Your God reigns.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Listen! Your sentinels lift up their voices, together they sing for joy; for in plain sight they see the return of the LORD to Zion.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Break forth together into singing, you ruins of Jerusalem; for the LORD has comforted his people, he has redeemed Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The LORD has bared his holy arm before the eyes of all the nations; and all the ends of the earth shall see the salvation of our God.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Depart, depart, go out from there! Touch no unclean thing; go out from the midst of it, purify yourselves, you who carry the vessels of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> For you shall not go out in haste, and you shall not go in flight; for the LORD will go before you, and the God of Israel will be your rear guard.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> See, my servant shall prosper; he shall be exalted and lifted up, and shall be very high.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Just as there were many who were astonished at him-- so marred was his appearance, beyond human semblance, and his form beyond that of mortals--</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> so he shall startle many nations; kings shall shut their mouths because of him; for that which had not been told them they shall see, and that which they had not heard they shall contemplate. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"53\">\r\n\t\t\t<VERS vnumber=\"1\"> Who has believed what we have heard? And to whom has the arm of the LORD been revealed?</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> For he grew up before him like a young plant, and like a root out of dry ground; he had no form or majesty that we should look at him, nothing in his appearance that we should desire him.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> He was despised and rejected by others; a man of suffering and acquainted with infirmity; and as one from whom others hide their faces he was despised, and we held him of no account. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Surely he has borne our infirmities and carried our diseases; yet we accounted him stricken, struck down by God, and afflicted.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> But he was wounded for our transgressions, crushed for our iniquities; upon him was the punishment that made us whole, and by his bruises we are healed.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> All we like sheep have gone astray; we have all turned to our own way, and the LORD has laid on him the iniquity of us all.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> He was oppressed, and he was afflicted, yet he did not open his mouth; like a lamb that is led to the slaughter, and like a sheep that before its shearers is silent, so he did not open his mouth.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> By a perversion of justice he was taken away. Who could have imagined his future? For he was cut off from the land of the living, stricken for the transgression of my people.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> They made his grave with the wicked and his tomb with the rich, although he had done no violence, and there was no deceit in his mouth. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Yet it was the will of the LORD to crush him with pain. When you make his life an offering for sin, he shall see his offspring, and shall prolong his days; through him the will of the LORD shall prosper. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Out of his anguish he shall see light; he shall find satisfaction through his knowledge. The righteous one, my servant, shall make many righteous, and he shall bear their iniquities. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Therefore I will allot him a portion with the great, and he shall divide the spoil with the strong; because he poured out himself to death, and was numbered with the transgressors; yet he bore the sin of many, and made intercession for the transgressors.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"54\">\r\n\t\t\t<VERS vnumber=\"1\"> Sing, O barren one who did not bear; burst into song and shout, you who have not been in labor! For the children of the desolate woman will be more than the children of her that is married, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Enlarge the site of your tent, and let the curtains of your habitations be stretched out; do not hold back; lengthen your cords and strengthen your stakes.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For you will spread out to the right and to the left, and your descendants will possess the nations and will settle the desolate towns.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Do not fear, for you will not be ashamed; do not be discouraged, for you will not suffer disgrace; for you will forget the shame of your youth, and the disgrace of your widowhood you will remember no more.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> For your Maker is your husband, the LORD of hosts is his name; the Holy One of Israel is your Redeemer, the God of the whole earth he is called.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For the LORD has called you like a wife forsaken and grieved in spirit, like the wife of a man's youth when she is cast off, says your God.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> For a brief moment I abandoned you, but with great compassion I will gather you.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> In overflowing wrath for a moment I hid my face from you, but with everlasting love I will have compassion on you, says the LORD, your Redeemer.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> This is like the days of Noah to me: Just as I swore that the waters of Noah would never again go over the earth, so I have sworn that I will not be angry with you and will not rebuke you.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For the mountains may depart and the hills be removed, but my steadfast love shall not depart from you, and my covenant of peace shall not be removed, says the LORD, who has compassion on you.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> O afflicted one, storm-tossed, and not comforted, I am about to set your stones in antimony, and lay your foundations with sapphires. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> I will make your pinnacles of rubies, your gates of jewels, and all your wall of precious stones.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> All your children shall be taught by the LORD, and great shall be the prosperity of your children.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> In righteousness you shall be established; you shall be far from oppression, for you shall not fear; and from terror, for it shall not come near you.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> If anyone stirs up strife, it is not from me; whoever stirs up strife with you shall fall because of you.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> See it is I who have created the smith who blows the fire of coals, and produces a weapon fit for its purpose; I have also created the ravager to destroy.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> No weapon that is fashioned against you shall prosper, and you shall confute every tongue that rises against you in judgment. This is the heritage of the servants of the LORD and their vindication from me, says the LORD.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"55\">\r\n\t\t\t<VERS vnumber=\"1\"> Ho, everyone who thirsts, come to the waters; and you that have no money, come, buy and eat! Come, buy wine and milk without money and without price.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Why do you spend your money for that which is not bread, and your labor for that which does not satisfy? Listen carefully to me, and eat what is good, and delight yourselves in rich food.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Incline your ear, and come to me; listen, so that you may live. I will make with you an everlasting covenant, my steadfast, sure love for David.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> See, I made him a witness to the peoples, a leader and commander for the peoples.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> See, you shall call nations that you do not know, and nations that do not know you shall run to you, because of the LORD your God, the Holy One of Israel, for he has glorified you.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Seek the LORD while he may be found, call upon him while he is near;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> let the wicked forsake their way, and the unrighteous their thoughts; let them return to the LORD, that he may have mercy on them, and to our God, for he will abundantly pardon.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> For my thoughts are not your thoughts, nor are your ways my ways, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> For as the heavens are higher than the earth, so are my ways higher than your ways and my thoughts than your thoughts.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For as the rain and the snow come down from heaven, and do not return there until they have watered the earth, making it bring forth and sprout, giving seed to the sower and bread to the eater,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> so shall my word be that goes out from my mouth; it shall not return to me empty, but it shall accomplish that which I purpose, and succeed in the thing for which I sent it.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> For you shall go out in joy, and be led back in peace; the mountains and the hills before you shall burst into song, and all the trees of the field shall clap their hands.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Instead of the thorn shall come up the cypress; instead of the brier shall come up the myrtle; and it shall be to the LORD for a memorial, for an everlasting sign that shall not be cut off.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"56\">\r\n\t\t\t<VERS vnumber=\"1\"> Thus says the LORD: Maintain justice, and do what is right, for soon my salvation will come, and my deliverance be revealed.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Happy is the mortal who does this, the one who holds it fast, who keeps the sabbath, not profaning it, and refrains from doing any evil.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Do not let the foreigner joined to the LORD say, \"The LORD will surely separate me from his people\"; and do not let the eunuch say, \"I am just a dry tree.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For thus says the LORD: To the eunuchs who keep my sabbaths, who choose the things that please me and hold fast my covenant,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> I will give, in my house and within my walls, a monument and a name better than sons and daughters; I will give them an everlasting name that shall not be cut off.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And the foreigners who join themselves to the LORD, to minister to him, to love the name of the LORD, and to be his servants, all who keep the sabbath, and do not profane it, and hold fast my covenant--</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> these I will bring to my holy mountain, and make them joyful in my house of prayer; their burnt offerings and their sacrifices will be accepted on my altar; for my house shall be called a house of prayer for all peoples.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Thus says the Lord GOD, who gathers the outcasts of Israel, I will gather others to them besides those already gathered. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> All you wild animals, all you wild animals in the forest, come to devour!</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Israel's sentinels are blind, they are all without knowledge; they are all silent dogs that cannot bark; dreaming, lying down, loving to slumber. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The dogs have a mighty appetite; they never have enough. The shepherds also have no understanding; they have all turned to their own way, to their own gain, one and all.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> \"Come,\" they say, \"let us get wine; let us fill ourselves with strong drink. And tomorrow will be like today, great beyond measure.\" </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"57\">\r\n\t\t\t<VERS vnumber=\"1\"> The righteous perish, and no one takes it to heart; the devout are taken away, while no one understands. For the righteous are taken away from calamity,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> and they enter into peace; those who walk uprightly will rest on their couches.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> But as for you, come here, you children of a sorceress, you offspring of an adulterer and a whore. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Whom are you mocking? Against whom do you open your mouth wide and stick out your tongue? Are you not children of transgression, the offspring of deceit--</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> you that burn with lust among the oaks, under every green tree; you that slaughter your children in the valleys, under the clefts of the rocks?</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Among the smooth stones of the valley is your portion; they, they, are your lot; to them you have poured out a drink offering, you have brought a grain offering. Shall I be appeased for these things?</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Upon a high and lofty mountain you have set your bed, and there you went up to offer sacrifice.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Behind the door and the doorpost you have set up your symbol; for, in deserting me, you have uncovered your bed, you have gone up to it, you have made it wide; and you have made a bargain for yourself with them, you have loved their bed, you have gazed on their nakedness. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> You journeyed to Molech with oil, and multiplied your perfumes; you sent your envoys far away, and sent down even to Sheol. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> You grew weary from your many wanderings, but you did not say, \"It is useless.\" You found your desire rekindled, and so you did not weaken.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Whom did you dread and fear so that you lied, and did not remember me or give me a thought? Have I not kept silent and closed my eyes, and so you do not fear me? </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> I will concede your righteousness and your works, but they will not help you.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> When you cry out, let your collection of idols deliver you! The wind will carry them off, a breath will take them away. But whoever takes refuge in me shall possess the land and inherit my holy mountain.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> It shall be said, \"Build up, build up, prepare the way, remove every obstruction from my people's way.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> For thus says the high and lofty one who inhabits eternity, whose name is Holy: I dwell in the high and holy place, and also with those who are contrite and humble in spirit, to revive the spirit of the humble, and to revive the heart of the contrite.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> For I will not continually accuse, nor will I always be angry; for then the spirits would grow faint before me, even the souls that I have made.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Because of their wicked covetousness I was angry; I struck them, I hid and was angry; but they kept turning back to their own ways.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> I have seen their ways, but I will heal them; I will lead them and repay them with comfort, creating for their mourners the fruit of the lips.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Peace, peace, to the far and the near, says the LORD; and I will heal them.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> But the wicked are like the tossing sea that cannot keep still; its waters toss up mire and mud.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> There is no peace, says my God, for the wicked.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"58\">\r\n\t\t\t<VERS vnumber=\"1\"> Shout out, do not hold back! Lift up your voice like a trumpet! Announce to my people their rebellion, to the house of Jacob their sins.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Yet day after day they seek me and delight to know my ways, as if they were a nation that practiced righteousness and did not forsake the ordinance of their God; they ask of me righteous judgments, they delight to draw near to God.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> \"Why do we fast, but you do not see? Why humble ourselves, but you do not notice?\" Look, you serve your own interest on your fast day, and oppress all your workers.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Look, you fast only to quarrel and to fight and to strike with a wicked fist. Such fasting as you do today will not make your voice heard on high.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Is such the fast that I choose, a day to humble oneself? Is it to bow down the head like a bulrush, and to lie in sackcloth and ashes? Will you call this a fast, a day acceptable to the LORD?</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Is not this the fast that I choose: to loose the bonds of injustice, to undo the thongs of the yoke, to let the oppressed go free, and to break every yoke?</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Is it not to share your bread with the hungry, and bring the homeless poor into your house; when you see the naked, to cover them, and not to hide yourself from your own kin?</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then your light shall break forth like the dawn, and your healing shall spring up quickly; your vindicator shall go before you, the glory of the LORD shall be your rear guard. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then you shall call, and the LORD will answer; you shall cry for help, and he will say, Here I am. If you remove the yoke from among you, the pointing of the finger, the speaking of evil,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> if you offer your food to the hungry and satisfy the needs of the afflicted, then your light shall rise in the darkness and your gloom be like the noonday.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The LORD will guide you continually, and satisfy your needs in parched places, and make your bones strong; and you shall be like a watered garden, like a spring of water, whose waters never fail.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Your ancient ruins shall be rebuilt; you shall raise up the foundations of many generations; you shall be called the repairer of the breach, the restorer of streets to live in.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> If you refrain from trampling the sabbath, from pursuing your own interests on my holy day; if you call the sabbath a delight and the holy day of the LORD honorable; if you honor it, not going your own ways, serving your own interests, or pursuing your own affairs; </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> then you shall take delight in the LORD, and I will make you ride upon the heights of the earth; I will feed you with the heritage of your ancestor Jacob, for the mouth of the LORD has spoken.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"59\">\r\n\t\t\t<VERS vnumber=\"1\"> See, the LORD's hand is not too short to save, nor his ear too dull to hear.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Rather, your iniquities have been barriers between you and your God, and your sins have hidden his face from you so that he does not hear.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For your hands are defiled with blood, and your fingers with iniquity; your lips have spoken lies, your tongue mutters wickedness.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> No one brings suit justly, no one goes to law honestly; they rely on empty pleas, they speak lies, conceiving mischief and begetting iniquity.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> They hatch adders' eggs, and weave the spider's web; whoever eats their eggs dies, and the crushed egg hatches out a viper.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Their webs cannot serve as clothing; they cannot cover themselves with what they make. Their works are works of iniquity, and deeds of violence are in their hands.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Their feet run to evil, and they rush to shed innocent blood; their thoughts are thoughts of iniquity, desolation and destruction are in their highways.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The way of peace they do not know, and there is no justice in their paths. Their roads they have made crooked; no one who walks in them knows peace.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Therefore justice is far from us, and righteousness does not reach us; we wait for light, and lo! there is darkness; and for brightness, but we walk in gloom.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> We grope like the blind along a wall, groping like those who have no eyes; we stumble at noon as in the twilight, among the vigorous as though we were dead.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> We all growl like bears; like doves we moan mournfully. We wait for justice, but there is none; for salvation, but it is far from us.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> For our transgressions before you are many, and our sins testify against us. Our transgressions indeed are with us, and we know our iniquities:</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> transgressing, and denying the LORD, and turning away from following our God, talking oppression and revolt, conceiving lying words and uttering them from the heart.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Justice is turned back, and righteousness stands at a distance; for truth stumbles in the public square, and uprightness cannot enter.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Truth is lacking, and whoever turns from evil is despoiled. The LORD saw it, and it displeased him that there was no justice.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> He saw that there was no one, and was appalled that there was no one to intervene; so his own arm brought him victory, and his righteousness upheld him.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> He put on righteousness like a breastplate, and a helmet of salvation on his head; he put on garments of vengeance for clothing, and wrapped himself in fury as in a mantle.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> According to their deeds, so will he repay; wrath to his adversaries, requital to his enemies; to the coastlands he will render requital.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> So those in the west shall fear the name of the LORD, and those in the east, his glory; for he will come like a pent-up stream that the wind of the LORD drives on.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> And he will come to Zion as Redeemer, to those in Jacob who turn from transgression, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> And as for me, this is my covenant with them, says the LORD: my spirit that is upon you, and my words that I have put in your mouth, shall not depart out of your mouth, or out of the mouths of your children, or out of the mouths of your children's children, says the LORD, from now on and forever.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"60\">\r\n\t\t\t<VERS vnumber=\"1\"> Arise, shine; for your light has come, and the glory of the LORD has risen upon you.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> For darkness shall cover the earth, and thick darkness the peoples; but the LORD will arise upon you, and his glory will appear over you.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Nations shall come to your light, and kings to the brightness of your dawn.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Lift up your eyes and look around; they all gather together, they come to you; your sons shall come from far away, and your daughters shall be carried on their nurses' arms.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then you shall see and be radiant; your heart shall thrill and rejoice, because the abundance of the sea shall be brought to you, the wealth of the nations shall come to you. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> A multitude of camels shall cover you, the young camels of Midian and Ephah; all those from Sheba shall come. They shall bring gold and frankincense, and shall proclaim the praise of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> All the flocks of Kedar shall be gathered to you, the rams of Nebaioth shall minister to you; they shall be acceptable on my altar, and I will glorify my glorious house.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Who are these that fly like a cloud, and like doves to their windows?</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> For the coastlands shall wait for me, the ships of Tarshish first, to bring your children from far away, their silver and gold with them, for the name of the LORD your God, and for the Holy One of Israel, because he has glorified you.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Foreigners shall build up your walls, and their kings shall minister to you; for in my wrath I struck you down, but in my favor I have had mercy on you.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Your gates shall always be open; day and night they shall not be shut, so that nations shall bring you their wealth, with their kings led in procession.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> For the nation and kingdom that will not serve you shall perish; those nations shall be utterly laid waste.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The glory of Lebanon shall come to you, the cypress, the plane, and the pine, to beautify the place of my sanctuary; and I will glorify where my feet rest.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The descendants of those who oppressed you shall come bending low to you, and all who despised you shall bow down at your feet; they shall call you the City of the LORD, the Zion of the Holy One of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Whereas you have been forsaken and hated, with no one passing through, I will make you majestic forever, a joy from age to age.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> You shall suck the milk of nations, you shall suck the breasts of kings; and you shall know that I, the LORD, am your Savior and your Redeemer, the Mighty One of Jacob.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Instead of bronze I will bring gold, instead of iron I will bring silver; instead of wood, bronze, instead of stones, iron. I will appoint Peace as your overseer and Righteousness as your taskmaster.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Violence shall no more be heard in your land, devastation or destruction within your borders; you shall call your walls Salvation, and your gates Praise.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The sun shall no longer be your light by day, nor for brightness shall the moon give light to you by night; but the LORD will be your everlasting light, and your God will be your glory. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Your sun shall no more go down, or your moon withdraw itself; for the LORD will be your everlasting light, and your days of mourning shall be ended.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Your people shall all be righteous; they shall possess the land forever. They are the shoot that I planted, the work of my hands, so that I might be glorified.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The least of them shall become a clan, and the smallest one a mighty nation; I am the LORD; in its time I will accomplish it quickly.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"61\">\r\n\t\t\t<VERS vnumber=\"1\"> The spirit of the Lord GOD is upon me, because the LORD has anointed me; he has sent me to bring good news to the oppressed, to bind up the brokenhearted, to proclaim liberty to the captives, and release to the prisoners;</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> to proclaim the year of the LORD's favor, and the day of vengeance of our God; to comfort all who mourn;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> to provide for those who mourn in Zion-- to give them a garland instead of ashes, the oil of gladness instead of mourning, the mantle of praise instead of a faint spirit. They will be called oaks of righteousness, the planting of the LORD, to display his glory.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> They shall build up the ancient ruins, they shall raise up the former devastations; they shall repair the ruined cities, the devastations of many generations.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Strangers shall stand and feed your flocks, foreigners shall till your land and dress your vines;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> but you shall be called priests of the LORD, you shall be named ministers of our God; you shall enjoy the wealth of the nations, and in their riches you shall glory.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Because their shame was double, and dishonor was proclaimed as their lot, therefore they shall possess a double portion; everlasting joy shall be theirs. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> For I the LORD love justice, I hate robbery and wrongdoing; I will faithfully give them their recompense, and I will make an everlasting covenant with them. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Their descendants shall be known among the nations, and their offspring among the peoples; all who see them shall acknowledge that they are a people whom the LORD has blessed.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> I will greatly rejoice in the LORD, my whole being shall exult in my God; for he has clothed me with the garments of salvation, he has covered me with the robe of righteousness, as a bridegroom decks himself with a garland, and as a bride adorns herself with her jewels.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> For as the earth brings forth its shoots, and as a garden causes what is sown in it to spring up, so the Lord GOD will cause righteousness and praise to spring up before all the nations.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"62\">\r\n\t\t\t<VERS vnumber=\"1\"> For Zion's sake I will not keep silent, and for Jerusalem's sake I will not rest, until her vindication shines out like the dawn, and her salvation like a burning torch.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The nations shall see your vindication, and all the kings your glory; and you shall be called by a new name that the mouth of the LORD will give.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> You shall be a crown of beauty in the hand of the LORD, and a royal diadem in the hand of your God.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> You shall no more be termed Forsaken, and your land shall no more be termed Desolate; but you shall be called My Delight Is in Her, and your land Married; for the LORD delights in you, and your land shall be married. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> For as a young man marries a young woman, so shall your builder marry you, and as the bridegroom rejoices over the bride, so shall your God rejoice over you. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Upon your walls, O Jerusalem, I have posted sentinels; all day and all night they shall never be silent. You who remind the LORD, take no rest,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> and give him no rest until he establishes Jerusalem and makes it renowned throughout the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The LORD has sworn by his right hand and by his mighty arm: I will not again give your grain to be food for your enemies, and foreigners shall not drink the wine for which you have labored;</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> but those who garner it shall eat it and praise the LORD, and those who gather it shall drink it in my holy courts.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Go through, go through the gates, prepare the way for the people; build up, build up the highway, clear it of stones, lift up an ensign over the peoples.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The LORD has proclaimed to the end of the earth: Say to daughter Zion, \"See, your salvation comes; his reward is with him, and his recompense before him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> They shall be called, \"The Holy People, The Redeemed of the LORD\"; and you shall be called, \"Sought Out, A City Not Forsaken.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"63\">\r\n\t\t\t<VERS vnumber=\"1\"> \"Who is this that comes from Edom, from Bozrah in garments stained crimson? Who is this so splendidly robed, marching in his great might?\" \"It is I, announcing vindication, mighty to save.\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"Why are your robes red, and your garments like theirs who tread the wine press?\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> \"I have trodden the wine press alone, and from the peoples no one was with me; I trod them in my anger and trampled them in my wrath; their juice spattered on my garments, and stained all my robes.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For the day of vengeance was in my heart, and the year for my redeeming work had come.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> I looked, but there was no helper; I stared, but there was no one to sustain me; so my own arm brought me victory, and my wrath sustained me.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> I trampled down peoples in my anger, I crushed them in my wrath, and I poured out their lifeblood on the earth.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> I will recount the gracious deeds of the LORD, the praiseworthy acts of the LORD, because of all that the LORD has done for us, and the great favor to the house of Israel that he has shown them according to his mercy, according to the abundance of his steadfast love.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> For he said, \"Surely they are my people, children who will not deal falsely\"; and he became their savior</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> in all their distress. It was no messenger or angel but his presence that saved them; in his love and in his pity he redeemed them; he lifted them up and carried them all the days of old. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> But they rebelled and grieved his holy spirit; therefore he became their enemy; he himself fought against them.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then they remembered the days of old, of Moses his servant. Where is the one who brought them up out of the sea with the shepherds of his flock? Where is the one who put within them his holy spirit, </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> who caused his glorious arm to march at the right hand of Moses, who divided the waters before them to make for himself an everlasting name,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> who led them through the depths? Like a horse in the desert, they did not stumble.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Like cattle that go down into the valley, the spirit of the LORD gave them rest. Thus you led your people, to make for yourself a glorious name.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Look down from heaven and see, from your holy and glorious habitation. Where are your zeal and your might? The yearning of your heart and your compassion? They are withheld from me.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> For you are our father, though Abraham does not know us and Israel does not acknowledge us; you, O LORD, are our father; our Redeemer from of old is your name.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Why, O LORD, do you make us stray from your ways and harden our heart, so that we do not fear you? Turn back for the sake of your servants, for the sake of the tribes that are your heritage.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Your holy people took possession for a little while; but now our adversaries have trampled down your sanctuary.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> We have long been like those whom you do not rule, like those not called by your name.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"64\">\r\n\t\t\t<VERS vnumber=\"1\"> O that you would tear open the heavens and come down, so that the mountains would quake at your presence--</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> as when fire kindles brushwood and the fire causes water to boil-- to make your name known to your adversaries, so that the nations might tremble at your presence!</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> When you did awesome deeds that we did not expect, you came down, the mountains quaked at your presence.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> From ages past no one has heard, no ear has perceived, no eye has seen any God besides you, who works for those who wait for him.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> You meet those who gladly do right, those who remember you in your ways. But you were angry, and we sinned; because you hid yourself we transgressed. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> We have all become like one who is unclean, and all our righteous deeds are like a filthy cloth. We all fade like a leaf, and our iniquities, like the wind, take us away.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> There is no one who calls on your name, or attempts to take hold of you; for you have hidden your face from us, and have delivered us into the hand of our iniquity. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Yet, O LORD, you are our Father; we are the clay, and you are our potter; we are all the work of your hand.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Do not be exceedingly angry, O LORD, and do not remember iniquity forever. Now consider, we are all your people.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Your holy cities have become a wilderness, Zion has become a wilderness, Jerusalem a desolation.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Our holy and beautiful house, where our ancestors praised you, has been burned by fire, and all our pleasant places have become ruins.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> After all this, will you restrain yourself, O LORD? Will you keep silent, and punish us so severely?</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"65\">\r\n\t\t\t<VERS vnumber=\"1\"> I was ready to be sought out by those who did not ask, to be found by those who did not seek me. I said, \"Here I am, here I am,\" to a nation that did not call on my name.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> I held out my hands all day long to a rebellious people, who walk in a way that is not good, following their own devices;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> a people who provoke me to my face continually, sacrificing in gardens and offering incense on bricks;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> who sit inside tombs, and spend the night in secret places; who eat swine's flesh, with broth of abominable things in their vessels;</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> who say, \"Keep to yourself, do not come near me, for I am too holy for you.\" These are a smoke in my nostrils, a fire that burns all day long.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> See, it is written before me: I will not keep silent, but I will repay; I will indeed repay into their laps</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> their iniquities and their ancestors' iniquities together, says the LORD; because they offered incense on the mountains and reviled me on the hills, I will measure into their laps full payment for their actions. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Thus says the LORD: As the wine is found in the cluster, and they say, \"Do not destroy it, for there is a blessing in it,\" so I will do for my servants' sake, and not destroy them all.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> I will bring forth descendants from Jacob, and from Judah inheritors of my mountains; my chosen shall inherit it, and my servants shall settle there. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Sharon shall become a pasture for flocks, and the Valley of Achor a place for herds to lie down, for my people who have sought me.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But you who forsake the LORD, who forget my holy mountain, who set a table for Fortune and fill cups of mixed wine for Destiny;</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> I will destine you to the sword, and all of you shall bow down to the slaughter; because, when I called, you did not answer, when I spoke, you did not listen, but you did what was evil in my sight, and chose what I did not delight in.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Therefore thus says the Lord GOD: My servants shall eat, but you shall be hungry; my servants shall drink, but you shall be thirsty; my servants shall rejoice, but you shall be put to shame;</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> my servants shall sing for gladness of heart, but you shall cry out for pain of heart, and shall wail for anguish of spirit.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> You shall leave your name to my chosen to use as a curse, and the Lord GOD will put you to death; but to his servants he will give a different name.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then whoever invokes a blessing in the land shall bless by the God of faithfulness, and whoever takes an oath in the land shall swear by the God of faithfulness; because the former troubles are forgotten and are hidden from my sight.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> For I am about to create new heavens and a new earth; the former things shall not be remembered or come to mind.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> But be glad and rejoice forever in what I am creating; for I am about to create Jerusalem as a joy, and its people as a delight.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> I will rejoice in Jerusalem, and delight in my people; no more shall the sound of weeping be heard in it, or the cry of distress.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> No more shall there be in it an infant that lives but a few days, or an old person who does not live out a lifetime; for one who dies at a hundred years will be considered a youth, and one who falls short of a hundred will be considered accursed.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> They shall build houses and inhabit them; they shall plant vineyards and eat their fruit.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> They shall not build and another inhabit; they shall not plant and another eat; for like the days of a tree shall the days of my people be, and my chosen shall long enjoy the work of their hands.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> They shall not labor in vain, or bear children for calamity; for they shall be offspring blessed by the LORD-- and their descendants as well.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Before they call I will answer, while they are yet speaking I will hear.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> The wolf and the lamb shall feed together, the lion shall eat straw like the ox; but the serpent-- its food shall be dust! They shall not hurt or destroy on all my holy mountain, says the LORD.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"66\">\r\n\t\t\t<VERS vnumber=\"1\"> Thus says the LORD: Heaven is my throne and the earth is my footstool; what is the house that you would build for me, and what is my resting place?</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> All these things my hand has made, and so all these things are mine, says the LORD. But this is the one to whom I will look, to the humble and contrite in spirit, who trembles at my word.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Whoever slaughters an ox is like one who kills a human being; whoever sacrifices a lamb, like one who breaks a dog's neck; whoever presents a grain offering, like one who offers swine's blood; whoever makes a memorial offering of frankincense, like one who blesses an idol. These have chosen their own ways, and in their abominations they take delight; </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> I also will choose to mock them, and bring upon them what they fear; because, when I called, no one answered, when I spoke, they did not listen; but they did what was evil in my sight, and chose what did not please me. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Hear the word of the LORD, you who tremble at his word: Your own people who hate you and reject you for my name's sake have said, \"Let the LORD be glorified, so that we may see your joy\"; but it is they who shall be put to shame.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Listen, an uproar from the city! A voice from the temple! The voice of the LORD, dealing retribution to his enemies!</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Before she was in labor she gave birth; before her pain came upon her she delivered a son.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Who has heard of such a thing? Who has seen such things? Shall a land be born in one day? Shall a nation be delivered in one moment? Yet as soon as Zion was in labor she delivered her children.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Shall I open the womb and not deliver? says the LORD; shall I, the one who delivers, shut the womb? says your God.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Rejoice with Jerusalem, and be glad for her, all you who love her; rejoice with her in joy, all you who mourn over her--</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> that you may nurse and be satisfied from her consoling breast; that you may drink deeply with delight from her glorious bosom.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> For thus says the LORD: I will extend prosperity to her like a river, and the wealth of the nations like an overflowing stream; and you shall nurse and be carried on her arm, and dandled on her knees.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> As a mother comforts her child, so I will comfort you; you shall be comforted in Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> You shall see, and your heart shall rejoice; your bodies shall flourish like the grass; and it shall be known that the hand of the LORD is with his servants, and his indignation is against his enemies. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> For the LORD will come in fire, and his chariots like the whirlwind, to pay back his anger in fury, and his rebuke in flames of fire.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> For by fire will the LORD execute judgment, and by his sword, on all flesh; and those slain by the LORD shall be many.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Those who sanctify and purify themselves to go into the gardens, following the one in the center, eating the flesh of pigs, vermin, and rodents, shall come to an end together, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> For I know their works and their thoughts, and I am coming to gather all nations and tongues; and they shall come and shall see my glory, </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> and I will set a sign among them. From them I will send survivors to the nations, to Tarshish, Put, and Lud-- which draw the bow-- to Tubal and Javan, to the coastlands far away that have not heard of my fame or seen my glory; and they shall declare my glory among the nations.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> They shall bring all your kindred from all the nations as an offering to the LORD, on horses, and in chariots, and in litters, and on mules, and on dromedaries, to my holy mountain Jerusalem, says the LORD, just as the Israelites bring a grain offering in a clean vessel to the house of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> And I will also take some of them as priests and as Levites, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> For as the new heavens and the new earth, which I will make, shall remain before me, says the LORD; so shall your descendants and your name remain.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> From new moon to new moon, and from sabbath to sabbath, all flesh shall come to worship before me, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> And they shall go out and look at the dead bodies of the people who have rebelled against me; for their worm shall not die, their fire shall not be quenched, and they shall be an abhorrence to all flesh.</VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"24\" bname=\"Jeremiah\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> The words of Jeremiah son of Hilkiah, of the priests who were in Anathoth in the land of Benjamin,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> to whom the word of the LORD came in the days of King Josiah son of Amon of Judah, in the thirteenth year of his reign.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> It came also in the days of King Jehoiakim son of Josiah of Judah, and until the end of the eleventh year of King Zedekiah son of Josiah of Judah, until the captivity of Jerusalem in the fifth month.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Now the word of the LORD came to me saying,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> \"Before I formed you in the womb I knew you, and before you were born I consecrated you; I appointed you a prophet to the nations.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then I said, \"Ah, Lord GOD! Truly I do not know how to speak, for I am only a boy.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But the LORD said to me, \"Do not say, 'I am only a boy'; for you shall go to all to whom I send you, and you shall speak whatever I command you.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Do not be afraid of them, for I am with you to deliver you, says the LORD.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then the LORD put out his hand and touched my mouth; and the LORD said to me, \"Now I have put my words in your mouth.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> See, today I appoint you over nations and over kingdoms, to pluck up and to pull down, to destroy and to overthrow, to build and to plant.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The word of the LORD came to me, saying, \"Jeremiah, what do you see?\" And I said, \"I see a branch of an almond tree.\" </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then the LORD said to me, \"You have seen well, for I am watching over my word to perform it.\" </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The word of the LORD came to me a second time, saying, \"What do you see?\" And I said, \"I see a boiling pot, tilted away from the north.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then the LORD said to me: Out of the north disaster shall break out on all the inhabitants of the land.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> For now I am calling all the tribes of the kingdoms of the north, says the LORD; and they shall come and all of them shall set their thrones at the entrance of the gates of Jerusalem, against all its surrounding walls and against all the cities of Judah.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> And I will utter my judgments against them, for all their wickedness in forsaking me; they have made offerings to other gods, and worshiped the works of their own hands.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> But you, gird up your loins; stand up and tell them everything that I command you. Do not break down before them, or I will break you before them.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> And I for my part have made you today a fortified city, an iron pillar, and a bronze wall, against the whole land-- against the kings of Judah, its princes, its priests, and the people of the land.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> They will fight against you; but they shall not prevail against you, for I am with you, says the LORD, to deliver you.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> The word of the LORD came to me, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Go and proclaim in the hearing of Jerusalem, Thus says the LORD: I remember the devotion of your youth, your love as a bride, how you followed me in the wilderness, in a land not sown.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Israel was holy to the LORD, the first fruits of his harvest. All who ate of it were held guilty; disaster came upon them, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Hear the word of the LORD, O house of Jacob, and all the families of the house of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Thus says the LORD: What wrong did your ancestors find in me that they went far from me, and went after worthless things, and became worthless themselves?</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> They did not say, \"Where is the LORD who brought us up from the land of Egypt, who led us in the wilderness, in a land of deserts and pits, in a land of drought and deep darkness, in a land that no one passes through, where no one lives?\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> I brought you into a plentiful land to eat its fruits and its good things. But when you entered you defiled my land, and made my heritage an abomination.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The priests did not say, \"Where is the LORD?\" Those who handle the law did not know me; the rulers transgressed against me; the prophets prophesied by Baal, and went after things that do not profit. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Therefore once more I accuse you, says the LORD, and I accuse your children's children.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Cross to the coasts of Cyprus and look, send to Kedar and examine with care; see if there has ever been such a thing.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Has a nation changed its gods, even though they are no gods? But my people have changed their glory for something that does not profit.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Be appalled, O heavens, at this, be shocked, be utterly desolate, says the LORD,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> for my people have committed two evils: they have forsaken me, the fountain of living water, and dug out cisterns for themselves, cracked cisterns that can hold no water.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Is Israel a slave? Is he a homeborn servant? Why then has he become plunder?</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The lions have roared against him, they have roared loudly. They have made his land a waste; his cities are in ruins, without inhabitant.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Moreover, the people of Memphis and Tahpanhes have broken the crown of your head.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Have you not brought this upon yourself by forsaking the LORD your God, while he led you in the way?</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> What then do you gain by going to Egypt, to drink the waters of the Nile? Or what do you gain by going to Assyria, to drink the waters of the Euphrates?</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Your wickedness will punish you, and your apostasies will convict you. Know and see that it is evil and bitter for you to forsake the LORD your God; the fear of me is not in you, says the Lord GOD of hosts.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> For long ago you broke your yoke and burst your bonds, and you said, \"I will not serve!\" On every high hill and under every green tree you sprawled and played the whore.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Yet I planted you as a choice vine, from the purest stock. How then did you turn degenerate and become a wild vine?</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Though you wash yourself with lye and use much soap, the stain of your guilt is still before me, says the Lord GOD.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> How can you say, \"I am not defiled, I have not gone after the Baals\"? Look at your way in the valley; know what you have done-- a restive young camel interlacing her tracks,</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> a wild ass at home in the wilderness, in her heat sniffing the wind! Who can restrain her lust? None who seek her need weary themselves; in her month they will find her.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Keep your feet from going unshod and your throat from thirst. But you said, \"It is hopeless, for I have loved strangers, and after them I will go.\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> As a thief is shamed when caught, so the house of Israel shall be shamed-- they, their kings, their officials, their priests, and their prophets,</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> who say to a tree, \"You are my father,\" and to a stone, \"You gave me birth.\" For they have turned their backs to me, and not their faces. But in the time of their trouble they say, \"Come and save us!\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> But where are your gods that you made for yourself? Let them come, if they can save you, in your time of trouble; for you have as many gods as you have towns, O Judah.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Why do you complain against me? You have all rebelled against me, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> In vain I have struck down your children; they accepted no correction. Your own sword devoured your prophets like a ravening lion.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> And you, O generation, behold the word of the LORD! Have I been a wilderness to Israel, or a land of thick darkness? Why then do my people say, \"We are free, we will come to you no more\"? </VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Can a girl forget her ornaments, or a bride her attire? Yet my people have forgotten me, days without number.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> How well you direct your course to seek lovers! So that even to wicked women you have taught your ways.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Also on your skirts is found the lifeblood of the innocent poor, though you did not catch them breaking in. Yet in spite of all these things</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> you say, \"I am innocent; surely his anger has turned from me.\" Now I am bringing you to judgment for saying, \"I have not sinned.\"</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> How lightly you gad about, changing your ways! You shall be put to shame by Egypt as you were put to shame by Assyria.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> From there also you will come away with your hands on your head; for the LORD has rejected those in whom you trust, and you will not prosper through them.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> If a man divorces his wife and she goes from him and becomes another man's wife, will he return to her? Would not such a land be greatly polluted? You have played the whore with many lovers; and would you return to me? says the LORD. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Look up to the bare heights, and see! Where have you not been lain with? By the waysides you have sat waiting for lovers, like a nomad in the wilderness. You have polluted the land with your whoring and wickedness. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Therefore the showers have been withheld, and the spring rain has not come; yet you have the forehead of a whore, you refuse to be ashamed.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Have you not just now called to me, \"My Father, you are the friend of my youth--</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> will he be angry forever, will he be indignant to the end?\" This is how you have spoken, but you have done all the evil that you could.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The LORD said to me in the days of King Josiah: Have you seen what she did, that faithless one, Israel, how she went up on every high hill and under every green tree, and played the whore there?</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> And I thought, \"After she has done all this she will return to me\"; but she did not return, and her false sister Judah saw it.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> She saw that for all the adulteries of that faithless one, Israel, I had sent her away with a decree of divorce; yet her false sister Judah did not fear, but she too went and played the whore.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Because she took her whoredom so lightly, she polluted the land, committing adultery with stone and tree.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Yet for all this her false sister Judah did not return to me with her whole heart, but only in pretense, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then the LORD said to me: Faithless Israel has shown herself less guilty than false Judah.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Go, and proclaim these words toward the north, and say: Return, faithless Israel, says the LORD. I will not look on you in anger, for I am merciful, says the LORD; I will not be angry forever.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Only acknowledge your guilt, that you have rebelled against the LORD your God, and scattered your favors among strangers under every green tree, and have not obeyed my voice, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Return, O faithless children, says the LORD, for I am your master; I will take you, one from a city and two from a family, and I will bring you to Zion.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> I will give you shepherds after my own heart, who will feed you with knowledge and understanding.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> And when you have multiplied and increased in the land, in those days, says the LORD, they shall no longer say, \"The ark of the covenant of the LORD.\" It shall not come to mind, or be remembered, or missed; nor shall another one be made.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> At that time Jerusalem shall be called the throne of the LORD, and all nations shall gather to it, to the presence of the LORD in Jerusalem, and they shall no longer stubbornly follow their own evil will.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> In those days the house of Judah shall join the house of Israel, and together they shall come from the land of the north to the land that I gave your ancestors for a heritage.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> I thought how I would set you among my children, and give you a pleasant land, the most beautiful heritage of all the nations. And I thought you would call me, My Father, and would not turn from following me.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Instead, as a faithless wife leaves her husband, so you have been faithless to me, O house of Israel, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> A voice on the bare heights is heard, the plaintive weeping of Israel's children, because they have perverted their way, they have forgotten the LORD their God: </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Return, O faithless children, I will heal your faithlessness. \"Here we come to you; for you are the LORD our God.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Truly the hills are a delusion, the orgies on the mountains. Truly in the LORD our God is the salvation of Israel. </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> \"But from our youth the shameful thing has devoured all for which our ancestors had labored, their flocks and their herds, their sons and their daughters.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Let us lie down in our shame, and let our dishonor cover us; for we have sinned against the LORD our God, we and our ancestors, from our youth even to this day; and we have not obeyed the voice of the LORD our God.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> If you return, O Israel, says the LORD, if you return to me, if you remove your abominations from my presence, and do not waver,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> and if you swear, \"As the LORD lives!\" in truth, in justice, and in uprightness, then nations shall be blessed by him, and by him they shall boast. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For thus says the LORD to the people of Judah and to the inhabitants of Jerusalem: Break up your fallow ground, and do not sow among thorns.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Circumcise yourselves to the LORD, remove the foreskin of your hearts, O people of Judah and inhabitants of Jerusalem, or else my wrath will go forth like fire, and burn with no one to quench it, because of the evil of your doings.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Declare in Judah, and proclaim in Jerusalem, and say: Blow the trumpet through the land; shout aloud and say, \"Gather together, and let us go into the fortified cities!\" </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Raise a standard toward Zion, flee for safety, do not delay, for I am bringing evil from the north, and a great destruction.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> A lion has gone up from its thicket, a destroyer of nations has set out; he has gone out from his place to make your land a waste; your cities will be ruins without inhabitant.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Because of this put on sackcloth, lament and wail: \"The fierce anger of the LORD has not turned away from us.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> On that day, says the LORD, courage shall fail the king and the officials; the priests shall be appalled and the prophets astounded.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then I said, \"Ah, Lord GOD, how utterly you have deceived this people and Jerusalem, saying, 'It shall be well with you,' even while the sword is at the throat!\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> At that time it will be said to this people and to Jerusalem: A hot wind comes from me out of the bare heights in the desert toward my poor people, not to winnow or cleanse--</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> a wind too strong for that. Now it is I who speak in judgment against them.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Look! He comes up like clouds, his chariots like the whirlwind; his horses are swifter than eagles-- woe to us, for we are ruined!</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> O Jerusalem, wash your heart clean of wickedness so that you may be saved. How long shall your evil schemes lodge within you?</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> For a voice declares from Dan and proclaims disaster from Mount Ephraim.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Tell the nations, \"Here they are!\" Proclaim against Jerusalem, \"Besiegers come from a distant land; they shout against the cities of Judah.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> They have closed in around her like watchers of a field, because she has rebelled against me, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Your ways and your doings have brought this upon you. This is your doom; how bitter it is! It has reached your very heart.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> My anguish, my anguish! I writhe in pain! Oh, the walls of my heart! My heart is beating wildly; I cannot keep silent; for I hear the sound of the trumpet, the alarm of war.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Disaster overtakes disaster, the whole land is laid waste. Suddenly my tents are destroyed, my curtains in a moment.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> How long must I see the standard, and hear the sound of the trumpet?</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> \"For my people are foolish, they do not know me; they are stupid children, they have no understanding. They are skilled in doing evil, but do not know how to do good.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> I looked on the earth, and lo, it was waste and void; and to the heavens, and they had no light.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> I looked on the mountains, and lo, they were quaking, and all the hills moved to and fro.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> I looked, and lo, there was no one at all, and all the birds of the air had fled.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> I looked, and lo, the fruitful land was a desert, and all its cities were laid in ruins before the LORD, before his fierce anger.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> For thus says the LORD: The whole land shall be a desolation; yet I will not make a full end.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Because of this the earth shall mourn, and the heavens above grow black; for I have spoken, I have purposed; I have not relented nor will I turn back.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> At the noise of horseman and archer every town takes to flight; they enter thickets; they climb among rocks; all the towns are forsaken, and no one lives in them.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> And you, O desolate one, what do you mean that you dress in crimson, that you deck yourself with ornaments of gold, that you enlarge your eyes with paint? In vain you beautify yourself. Your lovers despise you; they seek your life.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> For I heard a cry as of a woman in labor, anguish as of one bringing forth her first child, the cry of daughter Zion gasping for breath, stretching out her hands, \"Woe is me! I am fainting before killers!\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"5\">\r\n\t\t\t<VERS vnumber=\"1\"> Run to and fro through the streets of Jerusalem, look around and take note! Search its squares and see if you can find one person who acts justly and seeks truth-- so that I may pardon Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Although they say, \"As the LORD lives,\" yet they swear falsely.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> O LORD, do your eyes not look for truth? You have struck them, but they felt no anguish; you have consumed them, but they refused to take correction. They have made their faces harder than rock; they have refused to turn back.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then I said, \"These are only the poor, they have no sense; for they do not know the way of the LORD, the law of their God.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Let me go to the rich and speak to them; surely they know the way of the LORD, the law of their God.\" But they all alike had broken the yoke, they had burst the bonds. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Therefore a lion from the forest shall kill them, a wolf from the desert shall destroy them. A leopard is watching against their cities; everyone who goes out of them shall be torn in pieces-- because their transgressions are many, their apostasies are great.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> How can I pardon you? Your children have forsaken me, and have sworn by those who are no gods. When I fed them to the full, they committed adultery and trooped to the houses of prostitutes.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> They were well-fed lusty stallions, each neighing for his neighbor's wife.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Shall I not punish them for these things? says the LORD; and shall I not bring retribution on a nation such as this?</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Go up through her vine-rows and destroy, but do not make a full end; strip away her branches, for they are not the LORD's.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> For the house of Israel and the house of Judah have been utterly faithless to me, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> They have spoken falsely of the LORD, and have said, \"He will do nothing. No evil will come upon us, and we shall not see sword or famine.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The prophets are nothing but wind, for the word is not in them. Thus shall it be done to them!</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Therefore thus says the LORD, the God of hosts: Because they have spoken this word, I am now making my words in your mouth a fire, and this people wood, and the fire shall devour them. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> I am going to bring upon you a nation from far away, O house of Israel, says the LORD. It is an enduring nation, it is an ancient nation, a nation whose language you do not know, nor can you understand what they say.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Their quiver is like an open tomb; all of them are mighty warriors.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> They shall eat up your harvest and your food; they shall eat up your sons and your daughters; they shall eat up your flocks and your herds; they shall eat up your vines and your fig trees; they shall destroy with the sword your fortified cities in which you trust.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> But even in those days, says the LORD, I will not make a full end of you.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> And when your people say, \"Why has the LORD our God done all these things to us?\" you shall say to them, \"As you have forsaken me and served foreign gods in your land, so you shall serve strangers in a land that is not yours.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Declare this in the house of Jacob, proclaim it in Judah:</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Hear this, O foolish and senseless people, who have eyes, but do not see, who have ears, but do not hear.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Do you not fear me? says the LORD; Do you not tremble before me? I placed the sand as a boundary for the sea, a perpetual barrier that it cannot pass; though the waves toss, they cannot prevail, though they roar, they cannot pass over it.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> But this people has a stubborn and rebellious heart; they have turned aside and gone away.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> They do not say in their hearts, \"Let us fear the LORD our God, who gives the rain in its season, the autumn rain and the spring rain, and keeps for us the weeks appointed for the harvest.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Your iniquities have turned these away, and your sins have deprived you of good.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> For scoundrels are found among my people; they take over the goods of others. Like fowlers they set a trap; they catch human beings. </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Like a cage full of birds, their houses are full of treachery; therefore they have become great and rich,</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> they have grown fat and sleek. They know no limits in deeds of wickedness; they do not judge with justice the cause of the orphan, to make it prosper, and they do not defend the rights of the needy.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Shall I not punish them for these things? says the LORD, and shall I not bring retribution on a nation such as this?</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> An appalling and horrible thing has happened in the land:</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> the prophets prophesy falsely, and the priests rule as the prophets direct; my people love to have it so, but what will you do when the end comes? </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"6\">\r\n\t\t\t<VERS vnumber=\"1\"> Flee for safety, O children of Benjamin, from the midst of Jerusalem! Blow the trumpet in Tekoa, and raise a signal on Beth-haccherem; for evil looms out of the north, and great destruction.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> I have likened daughter Zion to the loveliest pasture. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Shepherds with their flocks shall come against her. They shall pitch their tents around her; they shall pasture, all in their places.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> \"Prepare war against her; up, and let us attack at noon!\" \"Woe to us, for the day declines, the shadows of evening lengthen!\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> \"Up, and let us attack by night, and destroy her palaces!\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For thus says the LORD of hosts: Cut down her trees; cast up a siege ramp against Jerusalem. This is the city that must be punished; there is nothing but oppression within her. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> As a well keeps its water fresh, so she keeps fresh her wickedness; violence and destruction are heard within her; sickness and wounds are ever before me.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Take warning, O Jerusalem, or I shall turn from you in disgust, and make you a desolation, an uninhabited land.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Thus says the LORD of hosts: Glean thoroughly as a vine the remnant of Israel; like a grape-gatherer, pass your hand again over its branches. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> To whom shall I speak and give warning, that they may hear? See, their ears are closed, they cannot listen. The word of the LORD is to them an object of scorn; they take no pleasure in it.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But I am full of the wrath of the LORD; I am weary of holding it in. Pour it out on the children in the street, and on the gatherings of young men as well; both husband and wife shall be taken, the old folk and the very aged.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Their houses shall be turned over to others, their fields and wives together; for I will stretch out my hand against the inhabitants of the land, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> For from the least to the greatest of them, everyone is greedy for unjust gain; and from prophet to priest, everyone deals falsely.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> They have treated the wound of my people carelessly, saying, \"Peace, peace,\" when there is no peace.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> They acted shamefully, they committed abomination; yet they were not ashamed, they did not know how to blush. Therefore they shall fall among those who fall; at the time that I punish them, they shall be overthrown, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Thus says the LORD: Stand at the crossroads, and look, and ask for the ancient paths, where the good way lies; and walk in it, and find rest for your souls. But they said, \"We will not walk in it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Also I raised up sentinels for you: \"Give heed to the sound of the trumpet!\" But they said, \"We will not give heed.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Therefore hear, O nations, and know, O congregation, what will happen to them.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Hear, O earth; I am going to bring disaster on this people, the fruit of their schemes, because they have not given heed to my words; and as for my teaching, they have rejected it.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Of what use to me is frankincense that comes from Sheba, or sweet cane from a distant land? Your burnt offerings are not acceptable, nor are your sacrifices pleasing to me.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Therefore thus says the LORD: See, I am laying before this people stumbling blocks against which they shall stumble; parents and children together, neighbor and friend shall perish.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Thus says the LORD: See, a people is coming from the land of the north, a great nation is stirring from the farthest parts of the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> They grasp the bow and the javelin, they are cruel and have no mercy, their sound is like the roaring sea; they ride on horses, equipped like a warrior for battle, against you, O daughter Zion!</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> \"We have heard news of them, our hands fall helpless; anguish has taken hold of us, pain as of a woman in labor.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Do not go out into the field, or walk on the road; for the enemy has a sword, terror is on every side.\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> O my poor people, put on sackcloth, and roll in ashes; make mourning as for an only child, most bitter lamentation: for suddenly the destroyer will come upon us.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> I have made you a tester and a refiner among my people so that you may know and test their ways. </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> They are all stubbornly rebellious, going about with slanders; they are bronze and iron, all of them act corruptly.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> The bellows blow fiercely, the lead is consumed by the fire; in vain the refining goes on, for the wicked are not removed.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> They are called \"rejected silver,\" for the LORD has rejected them.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"7\">\r\n\t\t\t<VERS vnumber=\"1\"> The word that came to Jeremiah from the LORD:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Stand in the gate of the LORD's house, and proclaim there this word, and say, Hear the word of the LORD, all you people of Judah, you that enter these gates to worship the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Thus says the LORD of hosts, the God of Israel: Amend your ways and your doings, and let me dwell with you in this place. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Do not trust in these deceptive words: \"This is the temple of the LORD, the temple of the LORD, the temple of the LORD.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> For if you truly amend your ways and your doings, if you truly act justly one with another,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> if you do not oppress the alien, the orphan, and the widow, or shed innocent blood in this place, and if you do not go after other gods to your own hurt,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> then I will dwell with you in this place, in the land that I gave of old to your ancestors forever and ever.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Here you are, trusting in deceptive words to no avail.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Will you steal, murder, commit adultery, swear falsely, make offerings to Baal, and go after other gods that you have not known,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> and then come and stand before me in this house, which is called by my name, and say, \"We are safe!\"-- only to go on doing all these abominations?</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Has this house, which is called by my name, become a den of robbers in your sight? You know, I too am watching, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Go now to my place that was in Shiloh, where I made my name dwell at first, and see what I did to it for the wickedness of my people Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And now, because you have done all these things, says the LORD, and when I spoke to you persistently, you did not listen, and when I called you, you did not answer,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> therefore I will do to the house that is called by my name, in which you trust, and to the place that I gave to you and to your ancestors, just what I did to Shiloh.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And I will cast you out of my sight, just as I cast out all your kinsfolk, all the offspring of Ephraim.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> As for you, do not pray for this people, do not raise a cry or prayer on their behalf, and do not intercede with me, for I will not hear you.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Do you not see what they are doing in the towns of Judah and in the streets of Jerusalem?</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The children gather wood, the fathers kindle fire, and the women knead dough, to make cakes for the queen of heaven; and they pour out drink offerings to other gods, to provoke me to anger.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Is it I whom they provoke? says the LORD. Is it not themselves, to their own hurt?</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Therefore thus says the Lord GOD: My anger and my wrath shall be poured out on this place, on human beings and animals, on the trees of the field and the fruit of the ground; it will burn and not be quenched.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Thus says the LORD of hosts, the God of Israel: Add your burnt offerings to your sacrifices, and eat the flesh.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> For in the day that I brought your ancestors out of the land of Egypt, I did not speak to them or command them concerning burnt offerings and sacrifices.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> But this command I gave them, \"Obey my voice, and I will be your God, and you shall be my people; and walk only in the way that I command you, so that it may be well with you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Yet they did not obey or incline their ear, but, in the stubbornness of their evil will, they walked in their own counsels, and looked backward rather than forward.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> From the day that your ancestors came out of the land of Egypt until this day, I have persistently sent all my servants the prophets to them, day after day;</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> yet they did not listen to me, or pay attention, but they stiffened their necks. They did worse than their ancestors did.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> So you shall speak all these words to them, but they will not listen to you. You shall call to them, but they will not answer you.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> You shall say to them: This is the nation that did not obey the voice of the LORD their God, and did not accept discipline; truth has perished; it is cut off from their lips.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Cut off your hair and throw it away; raise a lamentation on the bare heights, for the LORD has rejected and forsaken the generation that provoked his wrath. </VERS>\r\n\t\t\t<VERS vnumber=\"30\"> For the people of Judah have done evil in my sight, says the LORD; they have set their abominations in the house that is called by my name, defiling it.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> And they go on building the high place of Topheth, which is in the valley of the son of Hinnom, to burn their sons and their daughters in the fire-- which I did not command, nor did it come into my mind.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Therefore, the days are surely coming, says the LORD, when it will no more be called Topheth, or the valley of the son of Hinnom, but the valley of Slaughter: for they will bury in Topheth until there is no more room.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> The corpses of this people will be food for the birds of the air, and for the animals of the earth; and no one will frighten them away.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> And I will bring to an end the sound of mirth and gladness, the voice of the bride and bridegroom in the cities of Judah and in the streets of Jerusalem; for the land shall become a waste.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"8\">\r\n\t\t\t<VERS vnumber=\"1\"> At that time, says the LORD, the bones of the kings of Judah, the bones of its officials, the bones of the priests, the bones of the prophets, and the bones of the inhabitants of Jerusalem shall be brought out of their tombs;</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> and they shall be spread before the sun and the moon and all the host of heaven, which they have loved and served, which they have followed, and which they have inquired of and worshiped; and they shall not be gathered or buried; they shall be like dung on the surface of the ground.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Death shall be preferred to life by all the remnant that remains of this evil family in all the places where I have driven them, says the LORD of hosts.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> You shall say to them, Thus says the LORD: When people fall, do they not get up again? If they go astray, do they not turn back?</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Why then has this people turned away in perpetual backsliding? They have held fast to deceit, they have refused to return. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> I have given heed and listened, but they do not speak honestly; no one repents of wickedness, saying, \"What have I done!\" All of them turn to their own course, like a horse plunging headlong into battle.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Even the stork in the heavens knows its times; and the turtledove, swallow, and crane observe the time of their coming; but my people do not know the ordinance of the LORD. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> How can you say, \"We are wise, and the law of the LORD is with us,\" when, in fact, the false pen of the scribes has made it into a lie?</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The wise shall be put to shame, they shall be dismayed and taken; since they have rejected the word of the LORD, what wisdom is in them?</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Therefore I will give their wives to others and their fields to conquerors, because from the least to the greatest everyone is greedy for unjust gain; from prophet to priest everyone deals falsely.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> They have treated the wound of my people carelessly, saying, \"Peace, peace,\" when there is no peace.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> They acted shamefully, they committed abomination; yet they were not at all ashamed, they did not know how to blush. Therefore they shall fall among those who fall; at the time when I punish them, they shall be overthrown, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> When I wanted to gather them, says the LORD, there are no grapes on the vine, nor figs on the fig tree; even the leaves are withered, and what I gave them has passed away from them. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Why do we sit still? Gather together, let us go into the fortified cities and perish there; for the LORD our God has doomed us to perish, and has given us poisoned water to drink, because we have sinned against the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> We look for peace, but find no good, for a time of healing, but there is terror instead.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The snorting of their horses is heard from Dan; at the sound of the neighing of their stallions the whole land quakes. They come and devour the land and all that fills it, the city and those who live in it.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> See, I am letting snakes loose among you, adders that cannot be charmed, and they shall bite you, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> My joy is gone, grief is upon me, my heart is sick.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Hark, the cry of my poor people from far and wide in the land: \"Is the LORD not in Zion? Is her King not in her?\" (\"Why have they provoked me to anger with their images, with their foreign idols?\")</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> \"The harvest is past, the summer is ended, and we are not saved.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> For the hurt of my poor people I am hurt, I mourn, and dismay has taken hold of me.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Is there no balm in Gilead? Is there no physician there? Why then has the health of my poor people not been restored?</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"9\">\r\n\t\t\t<VERS vnumber=\"1\"> O that my head were a spring of water, and my eyes a fountain of tears, so that I might weep day and night for the slain of my poor people!</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> O that I had in the desert a traveler's lodging place, that I might leave my people and go away from them! For they are all adulterers, a band of traitors.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> They bend their tongues like bows; they have grown strong in the land for falsehood, and not for truth; for they proceed from evil to evil, and they do not know me, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Beware of your neighbors, and put no trust in any of your kin; for all your kin are supplanters, and every neighbor goes around like a slanderer. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> They all deceive their neighbors, and no one speaks the truth; they have taught their tongues to speak lies; they commit iniquity and are too weary to repent. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Oppression upon oppression, deceit upon deceit! They refuse to know me, says the LORD. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Therefore thus says the LORD of hosts: I will now refine and test them, for what else can I do with my sinful people? </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Their tongue is a deadly arrow; it speaks deceit through the mouth. They all speak friendly words to their neighbors, but inwardly are planning to lay an ambush.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Shall I not punish them for these things? says the LORD; and shall I not bring retribution on a nation such as this?</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Take up weeping and wailing for the mountains, and a lamentation for the pastures of the wilderness, because they are laid waste so that no one passes through, and the lowing of cattle is not heard; both the birds of the air and the animals have fled and are gone. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> I will make Jerusalem a heap of ruins, a lair of jackals; and I will make the towns of Judah a desolation, without inhabitant.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Who is wise enough to understand this? To whom has the mouth of the LORD spoken, so that they may declare it? Why is the land ruined and laid waste like a wilderness, so that no one passes through?</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And the LORD says: Because they have forsaken my law that I set before them, and have not obeyed my voice, or walked in accordance with it,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> but have stubbornly followed their own hearts and have gone after the Baals, as their ancestors taught them.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Therefore thus says the LORD of hosts, the God of Israel: I am feeding this people with wormwood, and giving them poisonous water to drink.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> I will scatter them among nations that neither they nor their ancestors have known; and I will send the sword after them, until I have consumed them.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Thus says the LORD of hosts: Consider, and call for the mourning women to come; send for the skilled women to come;</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> let them quickly raise a dirge over us, so that our eyes may run down with tears, and our eyelids flow with water.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> For a sound of wailing is heard from Zion: \"How we are ruined! We are utterly shamed, because we have left the land, because they have cast down our dwellings.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Hear, O women, the word of the LORD, and let your ears receive the word of his mouth; teach to your daughters a dirge, and each to her neighbor a lament.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> \"Death has come up into our windows, it has entered our palaces, to cut off the children from the streets and the young men from the squares.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Speak! Thus says the LORD: \"Human corpses shall fall like dung upon the open field, like sheaves behind the reaper, and no one shall gather them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Thus says the LORD: Do not let the wise boast in their wisdom, do not let the mighty boast in their might, do not let the wealthy boast in their wealth;</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> but let those who boast boast in this, that they understand and know me, that I am the LORD; I act with steadfast love, justice, and righteousness in the earth, for in these things I delight, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> The days are surely coming, says the LORD, when I will attend to all those who are circumcised only in the foreskin:</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Egypt, Judah, Edom, the Ammonites, Moab, and all those with shaven temples who live in the desert. For all these nations are uncircumcised, and all the house of Israel is uncircumcised in heart.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"10\">\r\n\t\t\t<VERS vnumber=\"1\"> Hear the word that the LORD speaks to you, O house of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Thus says the LORD: Do not learn the way of the nations, or be dismayed at the signs of the heavens; for the nations are dismayed at them.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For the customs of the peoples are false: a tree from the forest is cut down, and worked with an ax by the hands of an artisan;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> people deck it with silver and gold; they fasten it with hammer and nails so that it cannot move.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Their idols are like scarecrows in a cucumber field, and they cannot speak; they have to be carried, for they cannot walk. Do not be afraid of them, for they cannot do evil, nor is it in them to do good.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> There is none like you, O LORD; you are great, and your name is great in might.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Who would not fear you, O King of the nations? For that is your due; among all the wise ones of the nations and in all their kingdoms there is no one like you.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> They are both stupid and foolish; the instruction given by idols is no better than wood! </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Beaten silver is brought from Tarshish, and gold from Uphaz. They are the work of the artisan and of the hands of the goldsmith; their clothing is blue and purple; they are all the product of skilled workers.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> But the LORD is the true God; he is the living God and the everlasting King. At his wrath the earth quakes, and the nations cannot endure his indignation.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Thus shall you say to them: The gods who did not make the heavens and the earth shall perish from the earth and from under the heavens. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> It is he who made the earth by his power, who established the world by his wisdom, and by his understanding stretched out the heavens.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> When he utters his voice, there is a tumult of waters in the heavens, and he makes the mist rise from the ends of the earth. He makes lightnings for the rain, and he brings out the wind from his storehouses.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Everyone is stupid and without knowledge; goldsmiths are all put to shame by their idols; for their images are false, and there is no breath in them.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> They are worthless, a work of delusion; at the time of their punishment they shall perish.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Not like these is the LORD, the portion of Jacob, for he is the one who formed all things, and Israel is the tribe of his inheritance; the LORD of hosts is his name. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Gather up your bundle from the ground, O you who live under siege!</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> For thus says the LORD: I am going to sling out the inhabitants of the land at this time, and I will bring distress on them, so that they shall feel it.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Woe is me because of my hurt! My wound is severe. But I said, \"Truly this is my punishment, and I must bear it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> My tent is destroyed, and all my cords are broken; my children have gone from me, and they are no more; there is no one to spread my tent again, and to set up my curtains.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> For the shepherds are stupid, and do not inquire of the LORD; therefore they have not prospered, and all their flock is scattered.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Hear, a noise! Listen, it is coming-- a great commotion from the land of the north to make the cities of Judah a desolation, a lair of jackals.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> I know, O LORD, that the way of human beings is not in their control, that mortals as they walk cannot direct their steps.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Correct me, O LORD, but in just measure; not in your anger, or you will bring me to nothing.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Pour out your wrath on the nations that do not know you, and on the peoples that do not call on your name; for they have devoured Jacob; they have devoured him and consumed him, and have laid waste his habitation.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"11\">\r\n\t\t\t<VERS vnumber=\"1\"> The word that came to Jeremiah from the LORD:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Hear the words of this covenant, and speak to the people of Judah and the inhabitants of Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> You shall say to them, Thus says the LORD, the God of Israel: Cursed be anyone who does not heed the words of this covenant,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> which I commanded your ancestors when I brought them out of the land of Egypt, from the iron-smelter, saying, Listen to my voice, and do all that I command you. So shall you be my people, and I will be your God,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> that I may perform the oath that I swore to your ancestors, to give them a land flowing with milk and honey, as at this day. Then I answered, \"So be it, LORD.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And the LORD said to me: Proclaim all these words in the cities of Judah, and in the streets of Jerusalem: Hear the words of this covenant and do them.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> For I solemnly warned your ancestors when I brought them up out of the land of Egypt, warning them persistently, even to this day, saying, Obey my voice.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Yet they did not obey or incline their ear, but everyone walked in the stubbornness of an evil will. So I brought upon them all the words of this covenant, which I commanded them to do, but they did not.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> And the LORD said to me: Conspiracy exists among the people of Judah and the inhabitants of Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> They have turned back to the iniquities of their ancestors of old, who refused to heed my words; they have gone after other gods to serve them; the house of Israel and the house of Judah have broken the covenant that I made with their ancestors.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Therefore, thus says the LORD, assuredly I am going to bring disaster upon them that they cannot escape; though they cry out to me, I will not listen to them.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then the cities of Judah and the inhabitants of Jerusalem will go and cry out to the gods to whom they make offerings, but they will never save them in the time of their trouble.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> For your gods have become as many as your towns, O Judah; and as many as the streets of Jerusalem are the altars you have set up to shame, altars to make offerings to Baal.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> As for you, do not pray for this people, or lift up a cry or prayer on their behalf, for I will not listen when they call to me in the time of their trouble.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> What right has my beloved in my house, when she has done vile deeds? Can vows and sacrificial flesh avert your doom? Can you then exult? </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The LORD once called you, \"A green olive tree, fair with goodly fruit\"; but with the roar of a great tempest he will set fire to it, and its branches will be consumed.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The LORD of hosts, who planted you, has pronounced evil against you, because of the evil that the house of Israel and the house of Judah have done, provoking me to anger by making offerings to Baal.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> It was the LORD who made it known to me, and I knew; then you showed me their evil deeds.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> But I was like a gentle lamb led to the slaughter. And I did not know it was against me that they devised schemes, saying, \"Let us destroy the tree with its fruit, let us cut him off from the land of the living, so that his name will no longer be remembered!\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> But you, O LORD of hosts, who judge righteously, who try the heart and the mind, let me see your retribution upon them, for to you I have committed my cause.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Therefore thus says the LORD concerning the people of Anathoth, who seek your life, and say, \"You shall not prophesy in the name of the LORD, or you will die by our hand\"--</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> therefore thus says the LORD of hosts: I am going to punish them; the young men shall die by the sword; their sons and their daughters shall die by famine;</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> and not even a remnant shall be left of them. For I will bring disaster upon the people of Anathoth, the year of their punishment.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"12\">\r\n\t\t\t<VERS vnumber=\"1\"> You will be in the right, O LORD, when I lay charges against you; but let me put my case to you. Why does the way of the guilty prosper? Why do all who are treacherous thrive?</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> You plant them, and they take root; they grow and bring forth fruit; you are near in their mouths yet far from their hearts.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> But you, O LORD, know me; You see me and test me-- my heart is with you. Pull them out like sheep for the slaughter, and set them apart for the day of slaughter.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> How long will the land mourn, and the grass of every field wither? For the wickedness of those who live in it the animals and the birds are swept away, and because people said, \"He is blind to our ways.\" </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> If you have raced with foot-runners and they have wearied you, how will you compete with horses? And if in a safe land you fall down, how will you fare in the thickets of the Jordan?</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For even your kinsfolk and your own family, even they have dealt treacherously with you; they are in full cry after you; do not believe them, though they speak friendly words to you.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> I have forsaken my house, I have abandoned my heritage; I have given the beloved of my heart into the hands of her enemies.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> My heritage has become to me like a lion in the forest; she has lifted up her voice against me-- therefore I hate her.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Is the hyena greedy for my heritage at my command? Are the birds of prey all around her? Go, assemble all the wild animals; bring them to devour her. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Many shepherds have destroyed my vineyard, they have trampled down my portion, they have made my pleasant portion a desolate wilderness.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> They have made it a desolation; desolate, it mourns to me. The whole land is made desolate, but no one lays it to heart.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Upon all the bare heights in the desert spoilers have come; for the sword of the LORD devours from one end of the land to the other; no one shall be safe. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> They have sown wheat and have reaped thorns, they have tired themselves out but profit nothing. They shall be ashamed of their harvests because of the fierce anger of the LORD. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Thus says the LORD concerning all my evil neighbors who touch the heritage that I have given my people Israel to inherit: I am about to pluck them up from their land, and I will pluck up the house of Judah from among them.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And after I have plucked them up, I will again have compassion on them, and I will bring them again to their heritage and to their land, everyone of them.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> And then, if they will diligently learn the ways of my people, to swear by my name, \"As the LORD lives,\" as they taught my people to swear by Baal, then they shall be built up in the midst of my people.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> But if any nation will not listen, then I will completely uproot it and destroy it, says the LORD.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"13\">\r\n\t\t\t<VERS vnumber=\"1\"> Thus said the LORD to me, \"Go and buy yourself a linen loincloth, and put it on your loins, but do not dip it in water.\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> So I bought a loincloth according to the word of the LORD, and put it on my loins.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And the word of the LORD came to me a second time, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> \"Take the loincloth that you bought and are wearing, and go now to the Euphrates, and hide it there in a cleft of the rock.\" </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> So I went, and hid it by the Euphrates, as the LORD commanded me. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And after many days the LORD said to me, \"Go now to the Euphrates, and take from there the loincloth that I commanded you to hide there.\" </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then I went to the Euphrates, and dug, and I took the loincloth from the place where I had hidden it. But now the loincloth was ruined; it was good for nothing. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then the word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Thus says the LORD: Just so I will ruin the pride of Judah and the great pride of Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> This evil people, who refuse to hear my words, who stubbornly follow their own will and have gone after other gods to serve them and worship them, shall be like this loincloth, which is good for nothing.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> For as the loincloth clings to one's loins, so I made the whole house of Israel and the whole house of Judah cling to me, says the LORD, in order that they might be for me a people, a name, a praise, and a glory. But they would not listen.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> You shall speak to them this word: Thus says the LORD, the God of Israel: Every wine-jar should be filled with wine. And they will say to you, \"Do you think we do not know that every wine-jar should be filled with wine?\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then you shall say to them: Thus says the LORD: I am about to fill all the inhabitants of this land-- the kings who sit on David's throne, the priests, the prophets, and all the inhabitants of Jerusalem-- with drunkenness.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> And I will dash them one against another, parents and children together, says the LORD. I will not pity or spare or have compassion when I destroy them.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Hear and give ear; do not be haughty, for the LORD has spoken.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Give glory to the LORD your God before he brings darkness, and before your feet stumble on the mountains at twilight; while you look for light, he turns it into gloom and makes it deep darkness.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> But if you will not listen, my soul will weep in secret for your pride; my eyes will weep bitterly and run down with tears, because the LORD's flock has been taken captive.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Say to the king and the queen mother; \"Take a lowly seat, for your beautiful crown has come down from your head.\" </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The towns of the Negeb are shut up with no one to open them; all Judah is taken into exile, wholly taken into exile.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Lift up your eyes and see those who come from the north. Where is the flock that was given you, your beautiful flock?</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> What will you say when they set as head over you those whom you have trained to be your allies? Will not pangs take hold of you, like those of a woman in labor?</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> And if you say in your heart, \"Why have these things come upon me?\" it is for the greatness of your iniquity that your skirts are lifted up, and you are violated.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Can Ethiopians change their skin or leopards their spots? Then also you can do good who are accustomed to do evil. </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> I will scatter you like chaff driven by the wind from the desert. </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> This is your lot, the portion I have measured out to you, says the LORD, because you have forgotten me and trusted in lies.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> I myself will lift up your skirts over your face, and your shame will be seen.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> I have seen your abominations, your adulteries and neighings, your shameless prostitutions on the hills of the countryside. Woe to you, O Jerusalem! How long will it be before you are made clean?</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"14\">\r\n\t\t\t<VERS vnumber=\"1\"> The word of the LORD that came to Jeremiah concerning the drought:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Judah mourns and her gates languish; they lie in gloom on the ground, and the cry of Jerusalem goes up.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Her nobles send their servants for water; they come to the cisterns, they find no water, they return with their vessels empty. They are ashamed and dismayed and cover their heads,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> because the ground is cracked. Because there has been no rain on the land the farmers are dismayed; they cover their heads.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Even the doe in the field forsakes her newborn fawn because there is no grass.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The wild asses stand on the bare heights, they pant for air like jackals; their eyes fail because there is no herbage. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Although our iniquities testify against us, act, O LORD, for your name's sake; our apostasies indeed are many, and we have sinned against you.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> O hope of Israel, its savior in time of trouble, why should you be like a stranger in the land, like a traveler turning aside for the night?</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Why should you be like someone confused, like a mighty warrior who cannot give help? Yet you, O LORD, are in the midst of us, and we are called by your name; do not forsake us!</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Thus says the LORD concerning this people: Truly they have loved to wander, they have not restrained their feet; therefore the LORD does not accept them, now he will remember their iniquity and punish their sins.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The LORD said to me: Do not pray for the welfare of this people.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Although they fast, I do not hear their cry, and although they offer burnt offering and grain offering, I do not accept them; but by the sword, by famine, and by pestilence I consume them.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then I said: \"Ah, Lord GOD! Here are the prophets saying to them, 'You shall not see the sword, nor shall you have famine, but I will give you true peace in this place.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> And the LORD said to me: The prophets are prophesying lies in my name; I did not send them, nor did I command them or speak to them. They are prophesying to you a lying vision, worthless divination, and the deceit of their own minds.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Therefore thus says the LORD concerning the prophets who prophesy in my name though I did not send them, and who say, \"Sword and famine shall not come on this land\": By sword and famine those prophets shall be consumed.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> And the people to whom they prophesy shall be thrown out into the streets of Jerusalem, victims of famine and sword. There shall be no one to bury them-- themselves, their wives, their sons, and their daughters. For I will pour out their wickedness upon them.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> You shall say to them this word: Let my eyes run down with tears night and day, and let them not cease, for the virgin daughter-- my people-- is struck down with a crushing blow, with a very grievous wound.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> If I go out into the field, look-- those killed by the sword! And if I enter the city, look-- those sick with famine! For both prophet and priest ply their trade throughout the land, and have no knowledge.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Have you completely rejected Judah? Does your heart loathe Zion? Why have you struck us down so that there is no healing for us? We look for peace, but find no good; for a time of healing, but there is terror instead.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> We acknowledge our wickedness, O LORD, the iniquity of our ancestors, for we have sinned against you.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Do not spurn us, for your name's sake; do not dishonor your glorious throne; remember and do not break your covenant with us.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Can any idols of the nations bring rain? Or can the heavens give showers? Is it not you, O LORD our God? We set our hope on you, for it is you who do all this.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"15\">\r\n\t\t\t<VERS vnumber=\"1\"> Then the LORD said to me: Though Moses and Samuel stood before me, yet my heart would not turn toward this people. Send them out of my sight, and let them go!</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And when they say to you, \"Where shall we go?\" you shall say to them: Thus says the LORD: Those destined for pestilence, to pestilence, and those destined for the sword, to the sword; those destined for famine, to famine, and those destined for captivity, to captivity.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And I will appoint over them four kinds of destroyers, says the LORD: the sword to kill, the dogs to drag away, and the birds of the air and the wild animals of the earth to devour and destroy.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> I will make them a horror to all the kingdoms of the earth because of what King Manasseh son of Hezekiah of Judah did in Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Who will have pity on you, O Jerusalem, or who will bemoan you? Who will turn aside to ask about your welfare?</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> You have rejected me, says the LORD, you are going backward; so I have stretched out my hand against you and destroyed you-- I am weary of relenting.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> I have winnowed them with a winnowing fork in the gates of the land; I have bereaved them, I have destroyed my people; they did not turn from their ways.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Their widows became more numerous than the sand of the seas; I have brought against the mothers of youths a destroyer at noonday; I have made anguish and terror fall upon her suddenly.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> She who bore seven has languished; she has swooned away; her sun went down while it was yet day; she has been shamed and disgraced. And the rest of them I will give to the sword before their enemies, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Woe is me, my mother, that you ever bore me, a man of strife and contention to the whole land! I have not lent, nor have I borrowed, yet all of them curse me.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The LORD said: Surely I have intervened in your life for good, surely I have imposed enemies on you in a time of trouble and in a time of distress. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Can iron and bronze break iron from the north?</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Your wealth and your treasures I will give as plunder, without price, for all your sins, throughout all your territory.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> I will make you serve your enemies in a land that you do not know, for in my anger a fire is kindled that shall burn forever.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> O LORD, you know; remember me and visit me, and bring down retribution for me on my persecutors. In your forbearance do not take me away; know that on your account I suffer insult.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Your words were found, and I ate them, and your words became to me a joy and the delight of my heart; for I am called by your name, O LORD, God of hosts.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> I did not sit in the company of merrymakers, nor did I rejoice; under the weight of your hand I sat alone, for you had filled me with indignation.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Why is my pain unceasing, my wound incurable, refusing to be healed? Truly, you are to me like a deceitful brook, like waters that fail.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Therefore thus says the LORD: If you turn back, I will take you back, and you shall stand before me. If you utter what is precious, and not what is worthless, you shall serve as my mouth. It is they who will turn to you, not you who will turn to them.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> And I will make you to this people a fortified wall of bronze; they will fight against you, but they shall not prevail over you, for I am with you to save you and deliver you, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> I will deliver you out of the hand of the wicked, and redeem you from the grasp of the ruthless.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"16\">\r\n\t\t\t<VERS vnumber=\"1\"> The word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> You shall not take a wife, nor shall you have sons or daughters in this place.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For thus says the LORD concerning the sons and daughters who are born in this place, and concerning the mothers who bear them and the fathers who beget them in this land:</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> They shall die of deadly diseases. They shall not be lamented, nor shall they be buried; they shall become like dung on the surface of the ground. They shall perish by the sword and by famine, and their dead bodies shall become food for the birds of the air and for the wild animals of the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> For thus says the LORD: Do not enter the house of mourning, or go to lament, or bemoan them; for I have taken away my peace from this people, says the LORD, my steadfast love and mercy.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Both great and small shall die in this land; they shall not be buried, and no one shall lament for them; there shall be no gashing, no shaving of the head for them.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> No one shall break bread for the mourner, to offer comfort for the dead; nor shall anyone give them the cup of consolation to drink for their fathers or their mothers. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> You shall not go into the house of feasting to sit with them, to eat and drink.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> For thus says the LORD of hosts, the God of Israel: I am going to banish from this place, in your days and before your eyes, the voice of mirth and the voice of gladness, the voice of the bridegroom and the voice of the bride.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And when you tell this people all these words, and they say to you, \"Why has the LORD pronounced all this great evil against us? What is our iniquity? What is the sin that we have committed against the LORD our God?\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> then you shall say to them: It is because your ancestors have forsaken me, says the LORD, and have gone after other gods and have served and worshiped them, and have forsaken me and have not kept my law;</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> and because you have behaved worse than your ancestors, for here you are, every one of you, following your stubborn evil will, refusing to listen to me.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Therefore I will hurl you out of this land into a land that neither you nor your ancestors have known, and there you shall serve other gods day and night, for I will show you no favor.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Therefore, the days are surely coming, says the LORD, when it shall no longer be said, \"As the LORD lives who brought the people of Israel up out of the land of Egypt,\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> but \"As the LORD lives who brought the people of Israel up out of the land of the north and out of all the lands where he had driven them.\" For I will bring them back to their own land that I gave to their ancestors.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> I am now sending for many fishermen, says the LORD, and they shall catch them; and afterward I will send for many hunters, and they shall hunt them from every mountain and every hill, and out of the clefts of the rocks.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> For my eyes are on all their ways; they are not hidden from my presence, nor is their iniquity concealed from my sight.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> And I will doubly repay their iniquity and their sin, because they have polluted my land with the carcasses of their detestable idols, and have filled my inheritance with their abominations. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> O LORD, my strength and my stronghold, my refuge in the day of trouble, to you shall the nations come from the ends of the earth and say: Our ancestors have inherited nothing but lies, worthless things in which there is no profit.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Can mortals make for themselves gods? Such are no gods!</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> \"Therefore I am surely going to teach them, this time I am going to teach them my power and my might, and they shall know that my name is the LORD.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"17\">\r\n\t\t\t<VERS vnumber=\"1\"> The sin of Judah is written with an iron pen; with a diamond point it is engraved on the tablet of their hearts, and on the horns of their altars,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> while their children remember their altars and their sacred poles, beside every green tree, and on the high hills, </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> on the mountains in the open country. Your wealth and all your treasures I will give for spoil as the price of your sin throughout all your territory. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> By your own act you shall lose the heritage that I gave you, and I will make you serve your enemies in a land that you do not know, for in my anger a fire is kindled that shall burn forever. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Thus says the LORD: Cursed are those who trust in mere mortals and make mere flesh their strength, whose hearts turn away from the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> They shall be like a shrub in the desert, and shall not see when relief comes. They shall live in the parched places of the wilderness, in an uninhabited salt land.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Blessed are those who trust in the LORD, whose trust is the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> They shall be like a tree planted by water, sending out its roots by the stream. It shall not fear when heat comes, and its leaves shall stay green; in the year of drought it is not anxious, and it does not cease to bear fruit.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The heart is devious above all else; it is perverse-- who can understand it?</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> I the LORD test the mind and search the heart, to give to all according to their ways, according to the fruit of their doings.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Like the partridge hatching what it did not lay, so are all who amass wealth unjustly; in mid-life it will leave them, and at their end they will prove to be fools.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> O glorious throne, exalted from the beginning, shrine of our sanctuary!</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> O hope of Israel! O LORD! All who forsake you shall be put to shame; those who turn away from you shall be recorded in the underworld, for they have forsaken the fountain of living water, the LORD. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Heal me, O LORD, and I shall be healed; save me, and I shall be saved; for you are my praise.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> See how they say to me, \"Where is the word of the LORD? Let it come!\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> But I have not run away from being a shepherd in your service, nor have I desired the fatal day. You know what came from my lips; it was before your face. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Do not become a terror to me; you are my refuge in the day of disaster;</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Let my persecutors be shamed, but do not let me be shamed; let them be dismayed, but do not let me be dismayed; bring on them the day of disaster; destroy them with double destruction!</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Thus said the LORD to me: Go and stand in the People's Gate, by which the kings of Judah enter and by which they go out, and in all the gates of Jerusalem,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> and say to them: Hear the word of the LORD, you kings of Judah, and all Judah, and all the inhabitants of Jerusalem, who enter by these gates.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Thus says the LORD: For the sake of your lives, take care that you do not bear a burden on the sabbath day or bring it in by the gates of Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> And do not carry a burden out of your houses on the sabbath or do any work, but keep the sabbath day holy, as I commanded your ancestors.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Yet they did not listen or incline their ear; they stiffened their necks and would not hear or receive instruction.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> But if you listen to me, says the LORD, and bring in no burden by the gates of this city on the sabbath day, but keep the sabbath day holy and do no work on it,</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> then there shall enter by the gates of this city kings who sit on the throne of David, riding in chariots and on horses, they and their officials, the people of Judah and the inhabitants of Jerusalem; and this city shall be inhabited forever. </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> And people shall come from the towns of Judah and the places around Jerusalem, from the land of Benjamin, from the Shephelah, from the hill country, and from the Negeb, bringing burnt offerings and sacrifices, grain offerings and frankincense, and bringing thank offerings to the house of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> But if you do not listen to me, to keep the sabbath day holy, and to carry in no burden through the gates of Jerusalem on the sabbath day, then I will kindle a fire in its gates; it shall devour the palaces of Jerusalem and shall not be quenched.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"18\">\r\n\t\t\t<VERS vnumber=\"1\"> The word that came to Jeremiah from the LORD:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"Come, go down to the potter's house, and there I will let you hear my words.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> So I went down to the potter's house, and there he was working at his wheel.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The vessel he was making of clay was spoiled in the potter's hand, and he reworked it into another vessel, as seemed good to him.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then the word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Can I not do with you, O house of Israel, just as this potter has done? says the LORD. Just like the clay in the potter's hand, so are you in my hand, O house of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> At one moment I may declare concerning a nation or a kingdom, that I will pluck up and break down and destroy it,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> but if that nation, concerning which I have spoken, turns from its evil, I will change my mind about the disaster that I intended to bring on it.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> And at another moment I may declare concerning a nation or a kingdom that I will build and plant it,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> but if it does evil in my sight, not listening to my voice, then I will change my mind about the good that I had intended to do to it.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Now, therefore, say to the people of Judah and the inhabitants of Jerusalem: Thus says the LORD: Look, I am a potter shaping evil against you and devising a plan against you. Turn now, all of you from your evil way, and amend your ways and your doings.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> But they say, \"It is no use! We will follow our own plans, and each of us will act according to the stubbornness of our evil will.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Therefore thus says the LORD: Ask among the nations: Who has heard the like of this? The virgin Israel has done a most horrible thing.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Does the snow of Lebanon leave the crags of Sirion? Do the mountain waters run dry, the cold flowing streams? </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> But my people have forgotten me, they burn offerings to a delusion; they have stumbled in their ways, in the ancient roads, and have gone into bypaths, not the highway, </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> making their land a horror, a thing to be hissed at forever. All who pass by it are horrified and shake their heads.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Like the wind from the east, I will scatter them before the enemy. I will show them my back, not my face, in the day of their calamity.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then they said, \"Come, let us make plots against Jeremiah-- for instruction shall not perish from the priest, nor counsel from the wise, nor the word from the prophet. Come, let us bring charges against him, and let us not heed any of his words.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Give heed to me, O LORD, and listen to what my adversaries say!</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Is evil a recompense for good? Yet they have dug a pit for my life. Remember how I stood before you to speak good for them, to turn away your wrath from them.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Therefore give their children over to famine; hurl them out to the power of the sword, let their wives become childless and widowed. May their men meet death by pestilence, their youths be slain by the sword in battle.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> May a cry be heard from their houses, when you bring the marauder suddenly upon them! For they have dug a pit to catch me, and laid snares for my feet.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Yet you, O LORD, know all their plotting to kill me. Do not forgive their iniquity, do not blot out their sin from your sight. Let them be tripped up before you; deal with them while you are angry.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"19\">\r\n\t\t\t<VERS vnumber=\"1\"> Thus said the LORD: Go and buy a potter's earthenware jug. Take with you some of the elders of the people and some of the senior priests, </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> and go out to the valley of the son of Hinnom at the entry of the Potsherd Gate, and proclaim there the words that I tell you.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> You shall say: Hear the word of the LORD, O kings of Judah and inhabitants of Jerusalem. Thus says the LORD of hosts, the God of Israel: I am going to bring such disaster upon this place that the ears of everyone who hears of it will tingle.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Because the people have forsaken me, and have profaned this place by making offerings in it to other gods whom neither they nor their ancestors nor the kings of Judah have known; and because they have filled this place with the blood of the innocent,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> and gone on building the high places of Baal to burn their children in the fire as burnt offerings to Baal, which I did not command or decree, nor did it enter my mind.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Therefore the days are surely coming, says the LORD, when this place shall no more be called Topheth, or the valley of the son of Hinnom, but the valley of Slaughter.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> And in this place I will make void the plans of Judah and Jerusalem, and will make them fall by the sword before their enemies, and by the hand of those who seek their life. I will give their dead bodies for food to the birds of the air and to the wild animals of the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And I will make this city a horror, a thing to be hissed at; everyone who passes by it will be horrified and will hiss because of all its disasters.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> And I will make them eat the flesh of their sons and the flesh of their daughters, and all shall eat the flesh of their neighbors in the siege, and in the distress with which their enemies and those who seek their life afflict them.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then you shall break the jug in the sight of those who go with you,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> and shall say to them: Thus says the LORD of hosts: So will I break this people and this city, as one breaks a potter's vessel, so that it can never be mended. In Topheth they shall bury until there is no more room to bury.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Thus will I do to this place, says the LORD, and to its inhabitants, making this city like Topheth.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And the houses of Jerusalem and the houses of the kings of Judah shall be defiled like the place of Topheth-- all the houses upon whose roofs offerings have been made to the whole host of heaven, and libations have been poured out to other gods.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> When Jeremiah came from Topheth, where the LORD had sent him to prophesy, he stood in the court of the LORD's house and said to all the people:</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Thus says the LORD of hosts, the God of Israel: I am now bringing upon this city and upon all its towns all the disaster that I have pronounced against it, because they have stiffened their necks, refusing to hear my words.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"20\">\r\n\t\t\t<VERS vnumber=\"1\"> Now the priest Pashhur son of Immer, who was chief officer in the house of the LORD, heard Jeremiah prophesying these things.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Then Pashhur struck the prophet Jeremiah, and put him in the stocks that were in the upper Benjamin Gate of the house of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The next morning when Pashhur released Jeremiah from the stocks, Jeremiah said to him, The LORD has named you not Pashhur but \"Terror-all-around.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For thus says the LORD: I am making you a terror to yourself and to all your friends; and they shall fall by the sword of their enemies while you look on. And I will give all Judah into the hand of the king of Babylon; he shall carry them captive to Babylon, and shall kill them with the sword.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> I will give all the wealth of this city, all its gains, all its prized belongings, and all the treasures of the kings of Judah into the hand of their enemies, who shall plunder them, and seize them, and carry them to Babylon.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And you, Pashhur, and all who live in your house, shall go into captivity, and to Babylon you shall go; there you shall die, and there you shall be buried, you and all your friends, to whom you have prophesied falsely.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> O LORD, you have enticed me, and I was enticed; you have overpowered me, and you have prevailed. I have become a laughingstock all day long; everyone mocks me.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> For whenever I speak, I must cry out, I must shout, \"Violence and destruction!\" For the word of the LORD has become for me a reproach and derision all day long.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> If I say, \"I will not mention him, or speak any more in his name,\" then within me there is something like a burning fire shut up in my bones; I am weary with holding it in, and I cannot.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For I hear many whispering: \"Terror is all around! Denounce him! Let us denounce him!\" All my close friends are watching for me to stumble. \"Perhaps he can be enticed, and we can prevail against him, and take our revenge on him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But the LORD is with me like a dread warrior; therefore my persecutors will stumble, and they will not prevail. They will be greatly shamed, for they will not succeed. Their eternal dishonor will never be forgotten.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> O LORD of hosts, you test the righteous, you see the heart and the mind; let me see your retribution upon them, for to you I have committed my cause.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Sing to the LORD; praise the LORD! For he has delivered the life of the needy from the hands of evildoers.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Cursed be the day on which I was born! The day when my mother bore me, let it not be blessed!</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Cursed be the man who brought the news to my father, saying, \"A child is born to you, a son,\" making him very glad.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Let that man be like the cities that the LORD overthrew without pity; let him hear a cry in the morning and an alarm at noon,</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> because he did not kill me in the womb; so my mother would have been my grave, and her womb forever great.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Why did I come forth from the womb to see toil and sorrow, and spend my days in shame?</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"21\">\r\n\t\t\t<VERS vnumber=\"1\"> This is the word that came to Jeremiah from the LORD, when King Zedekiah sent to him Pashhur son of Malchiah and the priest Zephaniah son of Maaseiah, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"Please inquire of the LORD on our behalf, for King Nebuchadrezzar of Babylon is making war against us; perhaps the LORD will perform a wonderful deed for us, as he has often done, and will make him withdraw from us.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then Jeremiah said to them:</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Thus you shall say to Zedekiah: Thus says the LORD, the God of Israel: I am going to turn back the weapons of war that are in your hands and with which you are fighting against the king of Babylon and against the Chaldeans who are besieging you outside the walls; and I will bring them together into the center of this city.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> I myself will fight against you with outstretched hand and mighty arm, in anger, in fury, and in great wrath.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And I will strike down the inhabitants of this city, both human beings and animals; they shall die of a great pestilence.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Afterward, says the LORD, I will give King Zedekiah of Judah, and his servants, and the people in this city-- those who survive the pestilence, sword, and famine-- into the hands of King Nebuchadrezzar of Babylon, into the hands of their enemies, into the hands of those who seek their lives. He shall strike them down with the edge of the sword; he shall not pity them, or spare them, or have compassion.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And to this people you shall say: Thus says the LORD: See, I am setting before you the way of life and the way of death.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Those who stay in this city shall die by the sword, by famine, and by pestilence; but those who go out and surrender to the Chaldeans who are besieging you shall live and shall have their lives as a prize of war.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For I have set my face against this city for evil and not for good, says the LORD: it shall be given into the hands of the king of Babylon, and he shall burn it with fire.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> To the house of the king of Judah say: Hear the word of the LORD,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> O house of David! Thus says the LORD: Execute justice in the morning, and deliver from the hand of the oppressor anyone who has been robbed, or else my wrath will go forth like fire, and burn, with no one to quench it, because of your evil doings.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> See, I am against you, O inhabitant of the valley, O rock of the plain, says the LORD; you who say, \"Who can come down against us, or who can enter our places of refuge?\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> I will punish you according to the fruit of your doings, says the LORD; I will kindle a fire in its forest, and it shall devour all that is around it.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"22\">\r\n\t\t\t<VERS vnumber=\"1\"> Thus says the LORD: Go down to the house of the king of Judah, and speak there this word,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> and say: Hear the word of the LORD, O King of Judah sitting on the throne of David-- you, and your servants, and your people who enter these gates.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Thus says the LORD: Act with justice and righteousness, and deliver from the hand of the oppressor anyone who has been robbed. And do no wrong or violence to the alien, the orphan, and the widow, or shed innocent blood in this place.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For if you will indeed obey this word, then through the gates of this house shall enter kings who sit on the throne of David, riding in chariots and on horses, they, and their servants, and their people.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> But if you will not heed these words, I swear by myself, says the LORD, that this house shall become a desolation.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For thus says the LORD concerning the house of the king of Judah: You are like Gilead to me, like the summit of Lebanon; but I swear that I will make you a desert, an uninhabited city. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> I will prepare destroyers against you, all with their weapons; they shall cut down your choicest cedars and cast them into the fire.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And many nations will pass by this city, and all of them will say one to another, \"Why has the LORD dealt in this way with that great city?\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> And they will answer, \"Because they abandoned the covenant of the LORD their God, and worshiped other gods and served them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Do not weep for him who is dead, nor bemoan him; weep rather for him who goes away, for he shall return no more to see his native land.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> For thus says the LORD concerning Shallum son of King Josiah of Judah, who succeeded his father Josiah, and who went away from this place: He shall return here no more,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> but in the place where they have carried him captive he shall die, and he shall never see this land again.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Woe to him who builds his house by unrighteousness, and his upper rooms by injustice; who makes his neighbors work for nothing, and does not give them their wages;</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> who says, \"I will build myself a spacious house with large upper rooms,\" and who cuts out windows for it, paneling it with cedar, and painting it with vermilion.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Are you a king because you compete in cedar? Did not your father eat and drink and do justice and righteousness? Then it was well with him.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> He judged the cause of the poor and needy; then it was well. Is not this to know me? says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> But your eyes and heart are only on your dishonest gain, for shedding innocent blood, and for practicing oppression and violence.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Therefore thus says the LORD concerning King Jehoiakim son of Josiah of Judah: They shall not lament for him, saying, \"Alas, my brother!\" or \"Alas, sister!\" They shall not lament for him, saying, \"Alas, lord!\" or \"Alas, his majesty!\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> With the burial of a donkey he shall be buried-- dragged off and thrown out beyond the gates of Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Go up to Lebanon, and cry out, and lift up your voice in Bashan; cry out from Abarim, for all your lovers are crushed.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> I spoke to you in your prosperity, but you said, \"I will not listen.\" This has been your way from your youth, for you have not obeyed my voice.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The wind shall shepherd all your shepherds, and your lovers shall go into captivity; then you will be ashamed and dismayed because of all your wickedness.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> O inhabitant of Lebanon, nested among the cedars, how you will groan when pangs come upon you, pain as of a woman in labor! </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> As I live, says the LORD, even if King Coniah son of Jehoiakim of Judah were the signet ring on my right hand, even from there I would tear you off</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> and give you into the hands of those who seek your life, into the hands of those of whom you are afraid, even into the hands of King Nebuchadrezzar of Babylon and into the hands of the Chaldeans.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> I will hurl you and the mother who bore you into another country, where you were not born, and there you shall die.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> But they shall not return to the land to which they long to return.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Is this man Coniah a despised broken pot, a vessel no one wants? Why are he and his offspring hurled out and cast away in a land that they do not know?</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> O land, land, land, hear the word of the LORD!</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Thus says the LORD: Record this man as childless, a man who shall not succeed in his days; for none of his offspring shall succeed in sitting on the throne of David, and ruling again in Judah.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"23\">\r\n\t\t\t<VERS vnumber=\"1\"> Woe to the shepherds who destroy and scatter the sheep of my pasture! says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Therefore thus says the LORD, the God of Israel, concerning the shepherds who shepherd my people: It is you who have scattered my flock, and have driven them away, and you have not attended to them. So I will attend to you for your evil doings, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then I myself will gather the remnant of my flock out of all the lands where I have driven them, and I will bring them back to their fold, and they shall be fruitful and multiply.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> I will raise up shepherds over them who will shepherd them, and they shall not fear any longer, or be dismayed, nor shall any be missing, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The days are surely coming, says the LORD, when I will raise up for David a righteous Branch, and he shall reign as king and deal wisely, and shall execute justice and righteousness in the land.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> In his days Judah will be saved and Israel will live in safety. And this is the name by which he will be called: \"The LORD is our righteousness.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Therefore, the days are surely coming, says the LORD, when it shall no longer be said, \"As the LORD lives who brought the people of Israel up out of the land of Egypt,\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> but \"As the LORD lives who brought out and led the offspring of the house of Israel out of the land of the north and out of all the lands where he had driven them.\" Then they shall live in their own land. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Concerning the prophets: My heart is crushed within me, all my bones shake; I have become like a drunkard, like one overcome by wine, because of the LORD and because of his holy words.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For the land is full of adulterers; because of the curse the land mourns, and the pastures of the wilderness are dried up. Their course has been evil, and their might is not right.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Both prophet and priest are ungodly; even in my house I have found their wickedness, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Therefore their way shall be to them like slippery paths in the darkness, into which they shall be driven and fall; for I will bring disaster upon them in the year of their punishment, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> In the prophets of Samaria I saw a disgusting thing: they prophesied by Baal and led my people Israel astray.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But in the prophets of Jerusalem I have seen a more shocking thing: they commit adultery and walk in lies; they strengthen the hands of evildoers, so that no one turns from wickedness; all of them have become like Sodom to me, and its inhabitants like Gomorrah.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Therefore thus says the LORD of hosts concerning the prophets: \"I am going to make them eat wormwood, and give them poisoned water to drink; for from the prophets of Jerusalem ungodliness has spread throughout the land.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Thus says the LORD of hosts: Do not listen to the words of the prophets who prophesy to you; they are deluding you. They speak visions of their own minds, not from the mouth of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> They keep saying to those who despise the word of the LORD, \"It shall be well with you\"; and to all who stubbornly follow their own stubborn hearts, they say, \"No calamity shall come upon you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> For who has stood in the council of the LORD so as to see and to hear his word? Who has given heed to his word so as to proclaim it?</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Look, the storm of the LORD! Wrath has gone forth, a whirling tempest; it will burst upon the head of the wicked.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The anger of the LORD will not turn back until he has executed and accomplished the intents of his mind. In the latter days you will understand it clearly.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> I did not send the prophets, yet they ran; I did not speak to them, yet they prophesied.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> But if they had stood in my council, then they would have proclaimed my words to my people, and they would have turned them from their evil way, and from the evil of their doings.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Am I a God near by, says the LORD, and not a God far off?</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Who can hide in secret places so that I cannot see them? says the LORD. Do I not fill heaven and earth? says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> I have heard what the prophets have said who prophesy lies in my name, saying, \"I have dreamed, I have dreamed!\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> How long? Will the hearts of the prophets ever turn back-- those who prophesy lies, and who prophesy the deceit of their own heart?</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> They plan to make my people forget my name by their dreams that they tell one another, just as their ancestors forgot my name for Baal.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Let the prophet who has a dream tell the dream, but let the one who has my word speak my word faithfully. What has straw in common with wheat? says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Is not my word like fire, says the LORD, and like a hammer that breaks a rock in pieces?</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> See, therefore, I am against the prophets, says the LORD, who steal my words from one another.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> See, I am against the prophets, says the LORD, who use their own tongues and say, \"Says the LORD.\"</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> See, I am against those who prophesy lying dreams, says the LORD, and who tell them, and who lead my people astray by their lies and their recklessness, when I did not send them or appoint them; so they do not profit this people at all, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> When this people, or a prophet, or a priest asks you, \"What is the burden of the LORD?\" you shall say to them, \"You are the burden, and I will cast you off, says the LORD.\" </VERS>\r\n\t\t\t<VERS vnumber=\"34\"> And as for the prophet, priest, or the people who say, \"The burden of the LORD,\" I will punish them and their households.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Thus shall you say to one another, among yourselves, \"What has the LORD answered?\" or \"What has the LORD spoken?\"</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> But \"the burden of the LORD\" you shall mention no more, for the burden is everyone's own word, and so you pervert the words of the living God, the LORD of hosts, our God.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Thus you shall ask the prophet, \"What has the LORD answered you?\" or \"What has the LORD spoken?\"</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> But if you say, \"the burden of the LORD,\" thus says the LORD: Because you have said these words, \"the burden of the LORD,\" when I sent to you, saying, You shall not say, \"the burden of the LORD,\"</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> therefore, I will surely lift you up and cast you away from my presence, you and the city that I gave to you and your ancestors. </VERS>\r\n\t\t\t<VERS vnumber=\"40\"> And I will bring upon you everlasting disgrace and perpetual shame, which shall not be forgotten.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"24\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD showed me two baskets of figs placed before the temple of the LORD. This was after King Nebuchadrezzar of Babylon had taken into exile from Jerusalem King Jeconiah son of Jehoiakim of Judah, together with the officials of Judah, the artisans, and the smiths, and had brought them to Babylon.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> One basket had very good figs, like first-ripe figs, but the other basket had very bad figs, so bad that they could not be eaten.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And the LORD said to me, \"What do you see, Jeremiah?\" I said, \"Figs, the good figs very good, and the bad figs very bad, so bad that they cannot be eaten.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then the word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Thus says the LORD, the God of Israel: Like these good figs, so I will regard as good the exiles from Judah, whom I have sent away from this place to the land of the Chaldeans.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> I will set my eyes upon them for good, and I will bring them back to this land. I will build them up, and not tear them down; I will plant them, and not pluck them up.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> I will give them a heart to know that I am the LORD; and they shall be my people and I will be their God, for they shall return to me with their whole heart.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But thus says the LORD: Like the bad figs that are so bad they cannot be eaten, so will I treat King Zedekiah of Judah, his officials, the remnant of Jerusalem who remain in this land, and those who live in the land of Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> I will make them a horror, an evil thing, to all the kingdoms of the earth-- a disgrace, a byword, a taunt, and a curse in all the places where I shall drive them.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And I will send sword, famine, and pestilence upon them, until they are utterly destroyed from the land that I gave to them and their ancestors.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"25\">\r\n\t\t\t<VERS vnumber=\"1\"> The word that came to Jeremiah concerning all the people of Judah, in the fourth year of King Jehoiakim son of Josiah of Judah (that was the first year of King Nebuchadrezzar of Babylon),</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> which the prophet Jeremiah spoke to all the people of Judah and all the inhabitants of Jerusalem:</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For twenty-three years, from the thirteenth year of King Josiah son of Amon of Judah, to this day, the word of the LORD has come to me, and I have spoken persistently to you, but you have not listened.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> And though the LORD persistently sent you all his servants the prophets, you have neither listened nor inclined your ears to hear</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> when they said, \"Turn now, everyone of you, from your evil way and wicked doings, and you will remain upon the land that the LORD has given to you and your ancestors from of old and forever;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> do not go after other gods to serve and worship them, and do not provoke me to anger with the work of your hands. Then I will do you no harm.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Yet you did not listen to me, says the LORD, and so you have provoked me to anger with the work of your hands to your own harm.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Therefore thus says the LORD of hosts: Because you have not obeyed my words,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> I am going to send for all the tribes of the north, says the LORD, even for King Nebuchadrezzar of Babylon, my servant, and I will bring them against this land and its inhabitants, and against all these nations around; I will utterly destroy them, and make them an object of horror and of hissing, and an everlasting disgrace. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And I will banish from them the sound of mirth and the sound of gladness, the voice of the bridegroom and the voice of the bride, the sound of the millstones and the light of the lamp.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> This whole land shall become a ruin and a waste, and these nations shall serve the king of Babylon seventy years.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then after seventy years are completed, I will punish the king of Babylon and that nation, the land of the Chaldeans, for their iniquity, says the LORD, making the land an everlasting waste.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> I will bring upon that land all the words that I have uttered against it, everything written in this book, which Jeremiah prophesied against all the nations.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> For many nations and great kings shall make slaves of them also; and I will repay them according to their deeds and the work of their hands.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> For thus the LORD, the God of Israel, said to me: Take from my hand this cup of the wine of wrath, and make all the nations to whom I send you drink it.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> They shall drink and stagger and go out of their minds because of the sword that I am sending among them.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> So I took the cup from the LORD's hand, and made all the nations to whom the LORD sent me drink it:</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Jerusalem and the towns of Judah, its kings and officials, to make them a desolation and a waste, an object of hissing and of cursing, as they are today;</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Pharaoh king of Egypt, his servants, his officials, and all his people;</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> all the mixed people; all the kings of the land of Uz; all the kings of the land of the Philistines-- Ashkelon, Gaza, Ekron, and the remnant of Ashdod;</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Edom, Moab, and the Ammonites;</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> all the kings of Tyre, all the kings of Sidon, and the kings of the coastland across the sea;</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Dedan, Tema, Buz, and all who have shaven temples;</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> all the kings of Arabia and all the kings of the mixed peoples that live in the desert; </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> all the kings of Zimri, all the kings of Elam, and all the kings of Media;</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> all the kings of the north, far and near, one after another, and all the kingdoms of the world that are on the face of the earth. And after them the king of Sheshach shall drink. </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Then you shall say to them, Thus says the LORD of hosts, the God of Israel: Drink, get drunk and vomit, fall and rise no more, because of the sword that I am sending among you.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> And if they refuse to accept the cup from your hand to drink, then you shall say to them: Thus says the LORD of hosts: You must drink!</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> See, I am beginning to bring disaster on the city that is called by my name, and how can you possibly avoid punishment? You shall not go unpunished, for I am summoning a sword against all the inhabitants of the earth, says the LORD of hosts.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> You, therefore, shall prophesy against them all these words, and say to them: The LORD will roar from on high, and from his holy habitation utter his voice; he will roar mightily against his fold, and shout, like those who tread grapes, against all the inhabitants of the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> The clamor will resound to the ends of the earth, for the LORD has an indictment against the nations; he is entering into judgment with all flesh, and the guilty he will put to the sword, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Thus says the LORD of hosts: See, disaster is spreading from nation to nation, and a great tempest is stirring from the farthest parts of the earth!</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Those slain by the LORD on that day shall extend from one end of the earth to the other. They shall not be lamented, or gathered, or buried; they shall become dung on the surface of the ground.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Wail, you shepherds, and cry out; roll in ashes, you lords of the flock, for the days of your slaughter have come-- and your dispersions, and you shall fall like a choice vessel.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Flight shall fail the shepherds, and there shall be no escape for the lords of the flock.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Hark! the cry of the shepherds, and the wail of the lords of the flock! For the LORD is despoiling their pasture,</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> and the peaceful folds are devastated, because of the fierce anger of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Like a lion he has left his covert; for their land has become a waste because of the cruel sword, and because of his fierce anger.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"26\">\r\n\t\t\t<VERS vnumber=\"1\"> At the beginning of the reign of King Jehoiakim son of Josiah of Judah, this word came from the LORD:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Thus says the LORD: Stand in the court of the LORD's house, and speak to all the cities of Judah that come to worship in the house of the LORD; speak to them all the words that I command you; do not hold back a word.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> It may be that they will listen, all of them, and will turn from their evil way, that I may change my mind about the disaster that I intend to bring on them because of their evil doings.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> You shall say to them: Thus says the LORD: If you will not listen to me, to walk in my law that I have set before you,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> and to heed the words of my servants the prophets whom I send to you urgently-- though you have not heeded--</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> then I will make this house like Shiloh, and I will make this city a curse for all the nations of the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The priests and the prophets and all the people heard Jeremiah speaking these words in the house of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And when Jeremiah had finished speaking all that the LORD had commanded him to speak to all the people, then the priests and the prophets and all the people laid hold of him, saying, \"You shall die!</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Why have you prophesied in the name of the LORD, saying, 'This house shall be like Shiloh, and this city shall be desolate, without inhabitant'?\" And all the people gathered around Jeremiah in the house of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> When the officials of Judah heard these things, they came up from the king's house to the house of the LORD and took their seat in the entry of the New Gate of the house of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then the priests and the prophets said to the officials and to all the people, \"This man deserves the sentence of death because he has prophesied against this city, as you have heard with your own ears.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then Jeremiah spoke to all the officials and all the people, saying, \"It is the LORD who sent me to prophesy against this house and this city all the words you have heard.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Now therefore amend your ways and your doings, and obey the voice of the LORD your God, and the LORD will change his mind about the disaster that he has pronounced against you.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But as for me, here I am in your hands. Do with me as seems good and right to you.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Only know for certain that if you put me to death, you will be bringing innocent blood upon yourselves and upon this city and its inhabitants, for in truth the LORD sent me to you to speak all these words in your ears.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then the officials and all the people said to the priests and the prophets, \"This man does not deserve the sentence of death, for he has spoken to us in the name of the LORD our God.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> And some of the elders of the land arose and said to all the assembled people,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> \"Micah of Moresheth, who prophesied during the days of King Hezekiah of Judah, said to all the people of Judah: 'Thus says the LORD of hosts, Zion shall be plowed as a field; Jerusalem shall become a heap of ruins, and the mountain of the house a wooded height.'</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Did King Hezekiah of Judah and all Judah actually put him to death? Did he not fear the LORD and entreat the favor of the LORD, and did not the LORD change his mind about the disaster that he had pronounced against them? But we are about to bring great disaster on ourselves!\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> There was another man prophesying in the name of the LORD, Uriah son of Shemaiah from Kiriath-jearim. He prophesied against this city and against this land in words exactly like those of Jeremiah.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> And when King Jehoiakim, with all his warriors and all the officials, heard his words, the king sought to put him to death; but when Uriah heard of it, he was afraid and fled and escaped to Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Then King Jehoiakim sent Elnathan son of Achbor and men with him to Egypt, </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> and they took Uriah from Egypt and brought him to King Jehoiakim, who struck him down with the sword and threw his dead body into the burial place of the common people.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> But the hand of Ahikam son of Shaphan was with Jeremiah so that he was not given over into the hands of the people to be put to death.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"27\">\r\n\t\t\t<VERS vnumber=\"1\"> In the beginning of the reign of King Zedekiah son of Josiah of Judah, this word came to Jeremiah from the LORD. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Thus the LORD said to me: Make yourself a yoke of straps and bars, and put them on your neck.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Send word to the king of Edom, the king of Moab, the king of the Ammonites, the king of Tyre, and the king of Sidon by the hand of the envoys who have come to Jerusalem to King Zedekiah of Judah. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Give them this charge for their masters: Thus says the LORD of hosts, the God of Israel: This is what you shall say to your masters:</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> It is I who by my great power and my outstretched arm have made the earth, with the people and animals that are on the earth, and I give it to whomever I please.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Now I have given all these lands into the hand of King Nebuchadnezzar of Babylon, my servant, and I have given him even the wild animals of the field to serve him.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> All the nations shall serve him and his son and his grandson, until the time of his own land comes; then many nations and great kings shall make him their slave.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But if any nation or kingdom will not serve this king, Nebuchadnezzar of Babylon, and put its neck under the yoke of the king of Babylon, then I will punish that nation with the sword, with famine, and with pestilence, says the LORD, until I have completed its destruction by his hand. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> You, therefore, must not listen to your prophets, your diviners, your dreamers, your soothsayers, or your sorcerers, who are saying to you, 'You shall not serve the king of Babylon.' </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For they are prophesying a lie to you, with the result that you will be removed far from your land; I will drive you out, and you will perish.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But any nation that will bring its neck under the yoke of the king of Babylon and serve him, I will leave on its own land, says the LORD, to till it and live there.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> I spoke to King Zedekiah of Judah in the same way: Bring your necks under the yoke of the king of Babylon, and serve him and his people, and live.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Why should you and your people die by the sword, by famine, and by pestilence, as the LORD has spoken concerning any nation that will not serve the king of Babylon?</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Do not listen to the words of the prophets who are telling you not to serve the king of Babylon, for they are prophesying a lie to you.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> I have not sent them, says the LORD, but they are prophesying falsely in my name, with the result that I will drive you out and you will perish, you and the prophets who are prophesying to you.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then I spoke to the priests and to all this people, saying, Thus says the LORD: Do not listen to the words of your prophets who are prophesying to you, saying, \"The vessels of the LORD's house will soon be brought back from Babylon,\" for they are prophesying a lie to you.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Do not listen to them; serve the king of Babylon and live. Why should this city become a desolation?</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> If indeed they are prophets, and if the word of the LORD is with them, then let them intercede with the LORD of hosts, that the vessels left in the house of the LORD, in the house of the king of Judah, and in Jerusalem may not go to Babylon.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> For thus says the LORD of hosts concerning the pillars, the sea, the stands, and the rest of the vessels that are left in this city,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> which King Nebuchadnezzar of Babylon did not take away when he took into exile from Jerusalem to Babylon King Jeconiah son of Jehoiakim of Judah, and all the nobles of Judah and Jerusalem--</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> thus says the LORD of hosts, the God of Israel, concerning the vessels left in the house of the LORD, in the house of the king of Judah, and in Jerusalem:</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> They shall be carried to Babylon, and there they shall stay, until the day when I give attention to them, says the LORD. Then I will bring them up and restore them to this place.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"28\">\r\n\t\t\t<VERS vnumber=\"1\"> In that same year, at the beginning of the reign of King Zedekiah of Judah, in the fifth month of the fourth year, the prophet Hananiah son of Azzur, from Gibeon, spoke to me in the house of the LORD, in the presence of the priests and all the people, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"Thus says the LORD of hosts, the God of Israel: I have broken the yoke of the king of Babylon.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Within two years I will bring back to this place all the vessels of the LORD's house, which King Nebuchadnezzar of Babylon took away from this place and carried to Babylon.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> I will also bring back to this place King Jeconiah son of Jehoiakim of Judah, and all the exiles from Judah who went to Babylon, says the LORD, for I will break the yoke of the king of Babylon.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then the prophet Jeremiah spoke to the prophet Hananiah in the presence of the priests and all the people who were standing in the house of the LORD;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> and the prophet Jeremiah said, \"Amen! May the LORD do so; may the LORD fulfill the words that you have prophesied, and bring back to this place from Babylon the vessels of the house of the LORD, and all the exiles.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But listen now to this word that I speak in your hearing and in the hearing of all the people.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The prophets who preceded you and me from ancient times prophesied war, famine, and pestilence against many countries and great kingdoms.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> As for the prophet who prophesies peace, when the word of that prophet comes true, then it will be known that the LORD has truly sent the prophet.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then the prophet Hananiah took the yoke from the neck of the prophet Jeremiah, and broke it.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> And Hananiah spoke in the presence of all the people, saying, \"Thus says the LORD: This is how I will break the yoke of King Nebuchadnezzar of Babylon from the neck of all the nations within two years.\" At this, the prophet Jeremiah went his way.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Sometime after the prophet Hananiah had broken the yoke from the neck of the prophet Jeremiah, the word of the LORD came to Jeremiah:</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Go, tell Hananiah, Thus says the LORD: You have broken wooden bars only to forge iron bars in place of them!</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> For thus says the LORD of hosts, the God of Israel: I have put an iron yoke on the neck of all these nations so that they may serve King Nebuchadnezzar of Babylon, and they shall indeed serve him; I have even given him the wild animals.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And the prophet Jeremiah said to the prophet Hananiah, \"Listen, Hananiah, the LORD has not sent you, and you made this people trust in a lie.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Therefore thus says the LORD: I am going to send you off the face of the earth. Within this year you will be dead, because you have spoken rebellion against the LORD.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> In that same year, in the seventh month, the prophet Hananiah died.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"29\">\r\n\t\t\t<VERS vnumber=\"1\"> These are the words of the letter that the prophet Jeremiah sent from Jerusalem to the remaining elders among the exiles, and to the priests, the prophets, and all the people, whom Nebuchadnezzar had taken into exile from Jerusalem to Babylon.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> This was after King Jeconiah, and the queen mother, the court officials, the leaders of Judah and Jerusalem, the artisans, and the smiths had departed from Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The letter was sent by the hand of Elasah son of Shaphan and Gemariah son of Hilkiah, whom King Zedekiah of Judah sent to Babylon to King Nebuchadnezzar of Babylon. It said:</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Thus says the LORD of hosts, the God of Israel, to all the exiles whom I have sent into exile from Jerusalem to Babylon:</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Build houses and live in them; plant gardens and eat what they produce.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Take wives and have sons and daughters; take wives for your sons, and give your daughters in marriage, that they may bear sons and daughters; multiply there, and do not decrease.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But seek the welfare of the city where I have sent you into exile, and pray to the LORD on its behalf, for in its welfare you will find your welfare.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> For thus says the LORD of hosts, the God of Israel: Do not let the prophets and the diviners who are among you deceive you, and do not listen to the dreams that they dream, </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> for it is a lie that they are prophesying to you in my name; I did not send them, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For thus says the LORD: Only when Babylon's seventy years are completed will I visit you, and I will fulfill to you my promise and bring you back to this place.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> For surely I know the plans I have for you, says the LORD, plans for your welfare and not for harm, to give you a future with hope.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then when you call upon me and come and pray to me, I will hear you.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> When you search for me, you will find me; if you seek me with all your heart,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> I will let you find me, says the LORD, and I will restore your fortunes and gather you from all the nations and all the places where I have driven you, says the LORD, and I will bring you back to the place from which I sent you into exile.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Because you have said, \"The LORD has raised up prophets for us in Babylon,\"--</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Thus says the LORD concerning the king who sits on the throne of David, and concerning all the people who live in this city, your kinsfolk who did not go out with you into exile:</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Thus says the LORD of hosts, I am going to let loose on them sword, famine, and pestilence, and I will make them like rotten figs that are so bad they cannot be eaten.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> I will pursue them with the sword, with famine, and with pestilence, and will make them a horror to all the kingdoms of the earth, to be an object of cursing, and horror, and hissing, and a derision among all the nations where I have driven them,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> because they did not heed my words, says the LORD, when I persistently sent to you my servants the prophets, but they would not listen, says the LORD. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> But now, all you exiles whom I sent away from Jerusalem to Babylon, hear the word of the LORD:</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Thus says the LORD of hosts, the God of Israel, concerning Ahab son of Kolaiah and Zedekiah son of Maaseiah, who are prophesying a lie to you in my name: I am going to deliver them into the hand of King Nebuchadrezzar of Babylon, and he shall kill them before your eyes.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> And on account of them this curse shall be used by all the exiles from Judah in Babylon: \"The LORD make you like Zedekiah and Ahab, whom the king of Babylon roasted in the fire,\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> because they have perpetrated outrage in Israel and have committed adultery with their neighbors' wives, and have spoken in my name lying words that I did not command them; I am the one who knows and bears witness, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> To Shemaiah of Nehelam you shall say:</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Thus says the LORD of hosts, the God of Israel: In your own name you sent a letter to all the people who are in Jerusalem, and to the priest Zephaniah son of Maaseiah, and to all the priests, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> The LORD himself has made you priest instead of the priest Jehoiada, so that there may be officers in the house of the LORD to control any madman who plays the prophet, to put him in the stocks and the collar.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> So now why have you not rebuked Jeremiah of Anathoth who plays the prophet for you?</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> For he has actually sent to us in Babylon, saying, \"It will be a long time; build houses and live in them, and plant gardens and eat what they produce.\"</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> The priest Zephaniah read this letter in the hearing of the prophet Jeremiah.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Then the word of the LORD came to Jeremiah:</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Send to all the exiles, saying, Thus says the LORD concerning Shemaiah of Nehelam: Because Shemaiah has prophesied to you, though I did not send him, and has led you to trust in a lie,</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> therefore thus says the LORD: I am going to punish Shemaiah of Nehelam and his descendants; he shall not have anyone living among this people to see the good that I am going to do to my people, says the LORD, for he has spoken rebellion against the LORD. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"30\">\r\n\t\t\t<VERS vnumber=\"1\"> The word that came to Jeremiah from the LORD:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Thus says the LORD, the God of Israel: Write in a book all the words that I have spoken to you.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For the days are surely coming, says the LORD, when I will restore the fortunes of my people, Israel and Judah, says the LORD, and I will bring them back to the land that I gave to their ancestors and they shall take possession of it.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> These are the words that the LORD spoke concerning Israel and Judah:</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Thus says the LORD: We have heard a cry of panic, of terror, and no peace.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Ask now, and see, can a man bear a child? Why then do I see every man with his hands on his loins like a woman in labor? Why has every face turned pale?</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Alas! that day is so great there is none like it; it is a time of distress for Jacob; yet he shall be rescued from it.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> On that day, says the LORD of hosts, I will break the yoke from off his neck, and I will burst his bonds, and strangers shall no more make a servant of him. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> But they shall serve the LORD their God and David their king, whom I will raise up for them.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> But as for you, have no fear, my servant Jacob, says the LORD, and do not be dismayed, O Israel; for I am going to save you from far away, and your offspring from the land of their captivity. Jacob shall return and have quiet and ease, and no one shall make him afraid.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> For I am with you, says the LORD, to save you; I will make an end of all the nations among which I scattered you, but of you I will not make an end. I will chastise you in just measure, and I will by no means leave you unpunished.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> For thus says the LORD: Your hurt is incurable, your wound is grievous.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> There is no one to uphold your cause, no medicine for your wound, no healing for you.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> All your lovers have forgotten you; they care nothing for you; for I have dealt you the blow of an enemy, the punishment of a merciless foe, because your guilt is great, because your sins are so numerous.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Why do you cry out over your hurt? Your pain is incurable. Because your guilt is great, because your sins are so numerous, I have done these things to you.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Therefore all who devour you shall be devoured, and all your foes, everyone of them, shall go into captivity; those who plunder you shall be plundered, and all who prey on you I will make a prey.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> For I will restore health to you, and your wounds I will heal, says the LORD, because they have called you an outcast: \"It is Zion; no one cares for her!\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Thus says the LORD: I am going to restore the fortunes of the tents of Jacob, and have compassion on his dwellings; the city shall be rebuilt upon its mound, and the citadel set on its rightful site.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Out of them shall come thanksgiving, and the sound of merrymakers. I will make them many, and they shall not be few; I will make them honored, and they shall not be disdained.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Their children shall be as of old, their congregation shall be established before me; and I will punish all who oppress them.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Their prince shall be one of their own, their ruler shall come from their midst; I will bring him near, and he shall approach me, for who would otherwise dare to approach me? says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> And you shall be my people, and I will be your God.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Look, the storm of the LORD! Wrath has gone forth, a whirling tempest; it will burst upon the head of the wicked. </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> The fierce anger of the LORD will not turn back until he has executed and accomplished the intents of his mind. In the latter days you will understand this.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"31\">\r\n\t\t\t<VERS vnumber=\"1\"> At that time, says the LORD, I will be the God of all the families of Israel, and they shall be my people.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Thus says the LORD: The people who survived the sword found grace in the wilderness; when Israel sought for rest,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> the LORD appeared to him from far away. I have loved you with an everlasting love; therefore I have continued my faithfulness to you. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Again I will build you, and you shall be built, O virgin Israel! Again you shall take your tambourines, and go forth in the dance of the merrymakers. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Again you shall plant vineyards on the mountains of Samaria; the planters shall plant, and shall enjoy the fruit.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For there shall be a day when sentinels will call in the hill country of Ephraim: \"Come, let us go up to Zion, to the LORD our God.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> For thus says the LORD: Sing aloud with gladness for Jacob, and raise shouts for the chief of the nations; proclaim, give praise, and say, \"Save, O LORD, your people, the remnant of Israel.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> See, I am going to bring them from the land of the north, and gather them from the farthest parts of the earth, among them the blind and the lame, those with child and those in labor, together; a great company, they shall return here.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> With weeping they shall come, and with consolations I will lead them back, I will let them walk by brooks of water, in a straight path in which they shall not stumble; for I have become a father to Israel, and Ephraim is my firstborn. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Hear the word of the LORD, O nations, and declare it in the coastlands far away; say, \"He who scattered Israel will gather him, and will keep him as a shepherd a flock.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> For the LORD has ransomed Jacob, and has redeemed him from hands too strong for him.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> They shall come and sing aloud on the height of Zion, and they shall be radiant over the goodness of the LORD, over the grain, the wine, and the oil, and over the young of the flock and the herd; their life shall become like a watered garden, and they shall never languish again.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then shall the young women rejoice in the dance, and the young men and the old shall be merry. I will turn their mourning into joy, I will comfort them, and give them gladness for sorrow.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> I will give the priests their fill of fatness, and my people shall be satisfied with my bounty, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Thus says the LORD: A voice is heard in Ramah, lamentation and bitter weeping. Rachel is weeping for her children; she refuses to be comforted for her children, because they are no more.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Thus says the LORD: Keep your voice from weeping, and your eyes from tears; for there is a reward for your work, says the LORD: they shall come back from the land of the enemy;</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> there is hope for your future, says the LORD: your children shall come back to their own country.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Indeed I heard Ephraim pleading: \"You disciplined me, and I took the discipline; I was like a calf untrained. Bring me back, let me come back, for you are the LORD my God.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> For after I had turned away I repented; and after I was discovered, I struck my thigh; I was ashamed, and I was dismayed because I bore the disgrace of my youth.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Is Ephraim my dear son? Is he the child I delight in? As often as I speak against him, I still remember him. Therefore I am deeply moved for him; I will surely have mercy on him, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Set up road markers for yourself, make yourself guideposts; consider well the highway, the road by which you went. Return, O virgin Israel, return to these your cities.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> How long will you waver, O faithless daughter? For the LORD has created a new thing on the earth: a woman encompasses a man. </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Thus says the LORD of hosts, the God of Israel: Once more they shall use these words in the land of Judah and in its towns when I restore their fortunes: \"The LORD bless you, O abode of righteousness, O holy hill!\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> And Judah and all its towns shall live there together, and the farmers and those who wander with their flocks. </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> I will satisfy the weary, and all who are faint I will replenish.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Thereupon I awoke and looked, and my sleep was pleasant to me.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> The days are surely coming, says the LORD, when I will sow the house of Israel and the house of Judah with the seed of humans and the seed of animals.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> And just as I have watched over them to pluck up and break down, to overthrow, destroy, and bring evil, so I will watch over them to build and to plant, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> In those days they shall no longer say: \"The parents have eaten sour grapes, and the children's teeth are set on edge.\"</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> But all shall die for their own sins; the teeth of everyone who eats sour grapes shall be set on edge.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> The days are surely coming, says the LORD, when I will make a new covenant with the house of Israel and the house of Judah.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> It will not be like the covenant that I made with their ancestors when I took them by the hand to bring them out of the land of Egypt-- a covenant that they broke, though I was their husband, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> But this is the covenant that I will make with the house of Israel after those days, says the LORD: I will put my law within them, and I will write it on their hearts; and I will be their God, and they shall be my people.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> No longer shall they teach one another, or say to each other, \"Know the LORD,\" for they shall all know me, from the least of them to the greatest, says the LORD; for I will forgive their iniquity, and remember their sin no more.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Thus says the LORD, who gives the sun for light by day and the fixed order of the moon and the stars for light by night, who stirs up the sea so that its waves roar-- the LORD of hosts is his name:</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> If this fixed order were ever to cease from my presence, says the LORD, then also the offspring of Israel would cease to be a nation before me forever.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Thus says the LORD: If the heavens above can be measured, and the foundations of the earth below can be explored, then I will reject all the offspring of Israel because of all they have done, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> The days are surely coming, says the LORD, when the city shall be rebuilt for the LORD from the tower of Hananel to the Corner Gate.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> And the measuring line shall go out farther, straight to the hill Gareb, and shall then turn to Goah.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> The whole valley of the dead bodies and the ashes, and all the fields as far as the Wadi Kidron, to the corner of the Horse Gate toward the east, shall be sacred to the LORD. It shall never again be uprooted or overthrown.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"32\">\r\n\t\t\t<VERS vnumber=\"1\"> The word that came to Jeremiah from the LORD in the tenth year of King Zedekiah of Judah, which was the eighteenth year of Nebuchadrezzar.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> At that time the army of the king of Babylon was besieging Jerusalem, and the prophet Jeremiah was confined in the court of the guard that was in the palace of the king of Judah,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> where King Zedekiah of Judah had confined him. Zedekiah had said, \"Why do you prophesy and say: Thus says the LORD: I am going to give this city into the hand of the king of Babylon, and he shall take it;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> King Zedekiah of Judah shall not escape out of the hands of the Chaldeans, but shall surely be given into the hands of the king of Babylon, and shall speak with him face to face and see him eye to eye;</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> and he shall take Zedekiah to Babylon, and there he shall remain until I attend to him, says the LORD; though you fight against the Chaldeans, you shall not succeed?\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Jeremiah said, The word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Hanamel son of your uncle Shallum is going to come to you and say, \"Buy my field that is at Anathoth, for the right of redemption by purchase is yours.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then my cousin Hanamel came to me in the court of the guard, in accordance with the word of the LORD, and said to me, \"Buy my field that is at Anathoth in the land of Benjamin, for the right of possession and redemption is yours; buy it for yourself.\" Then I knew that this was the word of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> And I bought the field at Anathoth from my cousin Hanamel, and weighed out the money to him, seventeen shekels of silver.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> I signed the deed, sealed it, got witnesses, and weighed the money on scales.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then I took the sealed deed of purchase, containing the terms and conditions, and the open copy;</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> and I gave the deed of purchase to Baruch son of Neriah son of Mahseiah, in the presence of my cousin Hanamel, in the presence of the witnesses who signed the deed of purchase, and in the presence of all the Judeans who were sitting in the court of the guard.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> In their presence I charged Baruch, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Thus says the LORD of hosts, the God of Israel: Take these deeds, both this sealed deed of purchase and this open deed, and put them in an earthenware jar, in order that they may last for a long time.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> For thus says the LORD of hosts, the God of Israel: Houses and fields and vineyards shall again be bought in this land.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> After I had given the deed of purchase to Baruch son of Neriah, I prayed to the LORD, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Ah Lord GOD! It is you who made the heavens and the earth by your great power and by your outstretched arm! Nothing is too hard for you.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> You show steadfast love to the thousandth generation, but repay the guilt of parents into the laps of their children after them, O great and mighty God whose name is the LORD of hosts, </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> great in counsel and mighty in deed; whose eyes are open to all the ways of mortals, rewarding all according to their ways and according to the fruit of their doings.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> You showed signs and wonders in the land of Egypt, and to this day in Israel and among all humankind, and have made yourself a name that continues to this very day.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> You brought your people Israel out of the land of Egypt with signs and wonders, with a strong hand and outstretched arm, and with great terror;</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> and you gave them this land, which you swore to their ancestors to give them, a land flowing with milk and honey;</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> and they entered and took possession of it. But they did not obey your voice or follow your law; of all you commanded them to do, they did nothing. Therefore you have made all these disasters come upon them.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> See, the siege ramps have been cast up against the city to take it, and the city, faced with sword, famine, and pestilence, has been given into the hands of the Chaldeans who are fighting against it. What you spoke has happened, as you yourself can see.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Yet you, O Lord GOD, have said to me, \"Buy the field for money and get witnesses\"-- though the city has been given into the hands of the Chaldeans.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> The word of the LORD came to Jeremiah:</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> See, I am the LORD, the God of all flesh; is anything too hard for me?</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Therefore, thus says the LORD: I am going to give this city into the hands of the Chaldeans and into the hand of King Nebuchadrezzar of Babylon, and he shall take it.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> The Chaldeans who are fighting against this city shall come, set it on fire, and burn it, with the houses on whose roofs offerings have been made to Baal and libations have been poured out to other gods, to provoke me to anger.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> For the people of Israel and the people of Judah have done nothing but evil in my sight from their youth; the people of Israel have done nothing but provoke me to anger by the work of their hands, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> This city has aroused my anger and wrath, from the day it was built until this day, so that I will remove it from my sight</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> because of all the evil of the people of Israel and the people of Judah that they did to provoke me to anger-- they, their kings and their officials, their priests and their prophets, the citizens of Judah and the inhabitants of Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> They have turned their backs to me, not their faces; though I have taught them persistently, they would not listen and accept correction.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> They set up their abominations in the house that bears my name, and defiled it.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> They built the high places of Baal in the valley of the son of Hinnom, to offer up their sons and daughters to Molech, though I did not command them, nor did it enter my mind that they should do this abomination, causing Judah to sin.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Now therefore thus says the LORD, the God of Israel, concerning this city of which you say, \"It is being given into the hand of the king of Babylon by the sword, by famine, and by pestilence\":</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> See, I am going to gather them from all the lands to which I drove them in my anger and my wrath and in great indignation; I will bring them back to this place, and I will settle them in safety.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> They shall be my people, and I will be their God.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> I will give them one heart and one way, that they may fear me for all time, for their own good and the good of their children after them.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> I will make an everlasting covenant with them, never to draw back from doing good to them; and I will put the fear of me in their hearts, so that they may not turn from me.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> I will rejoice in doing good to them, and I will plant them in this land in faithfulness, with all my heart and all my soul.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> For thus says the LORD: Just as I have brought all this great disaster upon this people, so I will bring upon them all the good fortune that I now promise them.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> Fields shall be bought in this land of which you are saying, It is a desolation, without human beings or animals; it has been given into the hands of the Chaldeans.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> Fields shall be bought for money, and deeds shall be signed and sealed and witnessed, in the land of Benjamin, in the places around Jerusalem, and in the cities of Judah, of the hill country, of the Shephelah, and of the Negeb; for I will restore their fortunes, says the LORD.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"33\">\r\n\t\t\t<VERS vnumber=\"1\"> The word of the LORD came to Jeremiah a second time, while he was still confined in the court of the guard:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Thus says the LORD who made the earth, the LORD who formed it to establish it-- the LORD is his name:</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Call to me and I will answer you, and will tell you great and hidden things that you have not known.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For thus says the LORD, the God of Israel, concerning the houses of this city and the houses of the kings of Judah that were torn down to make a defense against the siege ramps and before the sword: </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The Chaldeans are coming in to fight and to fill them with the dead bodies of those whom I shall strike down in my anger and my wrath, for I have hidden my face from this city because of all their wickedness. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> I am going to bring it recovery and healing; I will heal them and reveal to them abundance of prosperity and security. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> I will restore the fortunes of Judah and the fortunes of Israel, and rebuild them as they were at first.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> I will cleanse them from all the guilt of their sin against me, and I will forgive all the guilt of their sin and rebellion against me.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> And this city shall be to me a name of joy, a praise and a glory before all the nations of the earth who shall hear of all the good that I do for them; they shall fear and tremble because of all the good and all the prosperity I provide for it. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Thus says the LORD: In this place of which you say, \"It is a waste without human beings or animals,\" in the towns of Judah and the streets of Jerusalem that are desolate, without inhabitants, human or animal, there shall once more be heard</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> the voice of mirth and the voice of gladness, the voice of the bridegroom and the voice of the bride, the voices of those who sing, as they bring thank offerings to the house of the LORD: \"Give thanks to the LORD of hosts, for the LORD is good, for his steadfast love endures forever!\" For I will restore the fortunes of the land as at first, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Thus says the LORD of hosts: In this place that is waste, without human beings or animals, and in all its towns there shall again be pasture for shepherds resting their flocks.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> In the towns of the hill country, of the Shephelah, and of the Negeb, in the land of Benjamin, the places around Jerusalem, and in the towns of Judah, flocks shall again pass under the hands of the one who counts them, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The days are surely coming, says the LORD, when I will fulfill the promise I made to the house of Israel and the house of Judah.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> In those days and at that time I will cause a righteous Branch to spring up for David; and he shall execute justice and righteousness in the land.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> In those days Judah will be saved and Jerusalem will live in safety. And this is the name by which it will be called: \"The LORD is our righteousness.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> For thus says the LORD: David shall never lack a man to sit on the throne of the house of Israel,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> and the levitical priests shall never lack a man in my presence to offer burnt offerings, to make grain offerings, and to make sacrifices for all time.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The word of the LORD came to Jeremiah:</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Thus says the LORD: If any of you could break my covenant with the day and my covenant with the night, so that day and night would not come at their appointed time,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> only then could my covenant with my servant David be broken, so that he would not have a son to reign on his throne, and my covenant with my ministers the Levites.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Just as the host of heaven cannot be numbered and the sands of the sea cannot be measured, so I will increase the offspring of my servant David, and the Levites who minister to me.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> The word of the LORD came to Jeremiah:</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Have you not observed how these people say, \"The two families that the LORD chose have been rejected by him,\" and how they hold my people in such contempt that they no longer regard them as a nation?</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Thus says the LORD: Only if I had not established my covenant with day and night and the ordinances of heaven and earth,</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> would I reject the offspring of Jacob and of my servant David and not choose any of his descendants as rulers over the offspring of Abraham, Isaac, and Jacob. For I will restore their fortunes, and will have mercy upon them.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"34\">\r\n\t\t\t<VERS vnumber=\"1\"> The word that came to Jeremiah from the LORD, when King Nebuchadrezzar of Babylon and all his army and all the kingdoms of the earth and all the peoples under his dominion were fighting against Jerusalem and all its cities:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"Thus says the LORD, the God of Israel: Go and speak to King Zedekiah of Judah and say to him: Thus says the LORD: I am going to give this city into the hand of the king of Babylon, and he shall burn it with fire.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And you yourself shall not escape from his hand, but shall surely be captured and handed over to him; you shall see the king of Babylon eye to eye and speak with him face to face; and you shall go to Babylon.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Yet hear the word of the LORD, O King Zedekiah of Judah! Thus says the LORD concerning you: You shall not die by the sword;</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> you shall die in peace. And as spices were burned for your ancestors, the earlier kings who preceded you, so they shall burn spices for you and lament for you, saying, \"Alas, lord!\" For I have spoken the word, says the LORD. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then the prophet Jeremiah spoke all these words to Zedekiah king of Judah, in Jerusalem,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> when the army of the king of Babylon was fighting against Jerusalem and against all the cities of Judah that were left, Lachish and Azekah; for these were the only fortified cities of Judah that remained.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The word that came to Jeremiah from the LORD, after King Zedekiah had made a covenant with all the people in Jerusalem to make a proclamation of liberty to them,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> that all should set free their Hebrew slaves, male and female, so that no one should hold another Judean in slavery.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And they obeyed, all the officials and all the people who had entered into the covenant that all would set free their slaves, male or female, so that they would not be enslaved again; they obeyed and set them free.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But afterward they turned around and took back the male and female slaves they had set free, and brought them again into subjection as slaves.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The word of the LORD came to Jeremiah from the LORD:</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Thus says the LORD, the God of Israel: I myself made a covenant with your ancestors when I brought them out of the land of Egypt, out of the house of slavery, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> \"Every seventh year each of you must set free any Hebrews who have been sold to you and have served you six years; you must set them free from your service.\" But your ancestors did not listen to me or incline their ears to me.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> You yourselves recently repented and did what was right in my sight by proclaiming liberty to one another, and you made a covenant before me in the house that is called by my name;</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> but then you turned around and profaned my name when each of you took back your male and female slaves, whom you had set free according to their desire, and you brought them again into subjection to be your slaves.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Therefore, thus says the LORD: You have not obeyed me by granting a release to your neighbors and friends; I am going to grant a release to you, says the LORD-- a release to the sword, to pestilence, and to famine. I will make you a horror to all the kingdoms of the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> And those who transgressed my covenant and did not keep the terms of the covenant that they made before me, I will make like the calf when they cut it in two and passed between its parts: </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> the officials of Judah, the officials of Jerusalem, the eunuchs, the priests, and all the people of the land who passed between the parts of the calf</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> shall be handed over to their enemies and to those who seek their lives. Their corpses shall become food for the birds of the air and the wild animals of the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> And as for King Zedekiah of Judah and his officials, I will hand them over to their enemies and to those who seek their lives, to the army of the king of Babylon, which has withdrawn from you.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> I am going to command, says the LORD, and will bring them back to this city; and they will fight against it, and take it, and burn it with fire. The towns of Judah I will make a desolation without inhabitant.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"35\">\r\n\t\t\t<VERS vnumber=\"1\"> The word that came to Jeremiah from the LORD in the days of King Jehoiakim son of Josiah of Judah:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Go to the house of the Rechabites, and speak with them, and bring them to the house of the LORD, into one of the chambers; then offer them wine to drink.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> So I took Jaazaniah son of Jeremiah son of Habazziniah, and his brothers, and all his sons, and the whole house of the Rechabites.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> I brought them to the house of the LORD into the chamber of the sons of Hanan son of Igdaliah, the man of God, which was near the chamber of the officials, above the chamber of Maaseiah son of Shallum, keeper of the threshold.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then I set before the Rechabites pitchers full of wine, and cups; and I said to them, \"Have some wine.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> But they answered, \"We will drink no wine, for our ancestor Jonadab son of Rechab commanded us, 'You shall never drink wine, neither you nor your children;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> nor shall you ever build a house, or sow seed; nor shall you plant a vineyard, or even own one; but you shall live in tents all your days, that you may live many days in the land where you reside.'</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> We have obeyed the charge of our ancestor Jonadab son of Rechab in all that he commanded us, to drink no wine all our days, ourselves, our wives, our sons, or our daughters,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> and not to build houses to live in. We have no vineyard or field or seed;</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> but we have lived in tents, and have obeyed and done all that our ancestor Jonadab commanded us.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But when King Nebuchadrezzar of Babylon came up against the land, we said, 'Come, and let us go to Jerusalem for fear of the army of the Chaldeans and the army of the Arameans.' That is why we are living in Jerusalem.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then the word of the LORD came to Jeremiah:</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Thus says the LORD of hosts, the God of Israel: Go and say to the people of Judah and the inhabitants of Jerusalem, Can you not learn a lesson and obey my words? says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The command has been carried out that Jonadab son of Rechab gave to his descendants to drink no wine; and they drink none to this day, for they have obeyed their ancestor's command. But I myself have spoken to you persistently, and you have not obeyed me.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> I have sent to you all my servants the prophets, sending them persistently, saying, 'Turn now everyone of you from your evil way, and amend your doings, and do not go after other gods to serve them, and then you shall live in the land that I gave to you and your ancestors.' But you did not incline your ear or obey me.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The descendants of Jonadab son of Rechab have carried out the command that their ancestor gave them, but this people has not obeyed me.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Therefore, thus says the LORD, the God of hosts, the God of Israel: I am going to bring on Judah and on all the inhabitants of Jerusalem every disaster that I have pronounced against them; because I have spoken to them and they have not listened, I have called to them and they have not answered.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> But to the house of the Rechabites Jeremiah said: Thus says the LORD of hosts, the God of Israel: Because you have obeyed the command of your ancestor Jonadab, and kept all his precepts, and done all that he commanded you,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> therefore thus says the LORD of hosts, the God of Israel: Jonadab son of Rechab shall not lack a descendant to stand before me for all time.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"36\">\r\n\t\t\t<VERS vnumber=\"1\"> In the fourth year of King Jehoiakim son of Josiah of Judah, this word came to Jeremiah from the LORD:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Take a scroll and write on it all the words that I have spoken to you against Israel and Judah and all the nations, from the day I spoke to you, from the days of Josiah until today.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> It may be that when the house of Judah hears of all the disasters that I intend to do to them, all of them may turn from their evil ways, so that I may forgive their iniquity and their sin.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then Jeremiah called Baruch son of Neriah, and Baruch wrote on a scroll at Jeremiah's dictation all the words of the LORD that he had spoken to him.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> And Jeremiah ordered Baruch, saying, \"I am prevented from entering the house of the LORD;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> so you go yourself, and on a fast day in the hearing of the people in the LORD's house you shall read the words of the LORD from the scroll that you have written at my dictation. You shall read them also in the hearing of all the people of Judah who come up from their towns.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> It may be that their plea will come before the LORD, and that all of them will turn from their evil ways, for great is the anger and wrath that the LORD has pronounced against this people.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And Baruch son of Neriah did all that the prophet Jeremiah ordered him about reading from the scroll the words of the LORD in the LORD's house.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> In the fifth year of King Jehoiakim son of Josiah of Judah, in the ninth month, all the people in Jerusalem and all the people who came from the towns of Judah to Jerusalem proclaimed a fast before the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then, in the hearing of all the people, Baruch read the words of Jeremiah from the scroll, in the house of the LORD, in the chamber of Gemariah son of Shaphan the secretary, which was in the upper court, at the entry of the New Gate of the LORD's house.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> When Micaiah son of Gemariah son of Shaphan heard all the words of the LORD from the scroll,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> he went down to the king's house, into the secretary's chamber; and all the officials were sitting there: Elishama the secretary, Delaiah son of Shemaiah, Elnathan son of Achbor, Gemariah son of Shaphan, Zedekiah son of Hananiah, and all the officials.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And Micaiah told them all the words that he had heard, when Baruch read the scroll in the hearing of the people.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then all the officials sent Jehudi son of Nethaniah son of Shelemiah son of Cushi to say to Baruch, \"Bring the scroll that you read in the hearing of the people, and come.\" So Baruch son of Neriah took the scroll in his hand and came to them.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And they said to him, \"Sit down and read it to us.\" So Baruch read it to them.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> When they heard all the words, they turned to one another in alarm, and said to Baruch, \"We certainly must report all these words to the king.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then they questioned Baruch, \"Tell us now, how did you write all these words? Was it at his dictation?\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Baruch answered them, \"He dictated all these words to me, and I wrote them with ink on the scroll.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Then the officials said to Baruch, \"Go and hide, you and Jeremiah, and let no one know where you are.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Leaving the scroll in the chamber of Elishama the secretary, they went to the court of the king; and they reported all the words to the king.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then the king sent Jehudi to get the scroll, and he took it from the chamber of Elishama the secretary; and Jehudi read it to the king and all the officials who stood beside the king.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Now the king was sitting in his winter apartment (it was the ninth month), and there was a fire burning in the brazier before him.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> As Jehudi read three or four columns, the king would cut them off with a penknife and throw them into the fire in the brazier, until the entire scroll was consumed in the fire that was in the brazier. </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Yet neither the king, nor any of his servants who heard all these words, was alarmed, nor did they tear their garments.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Even when Elnathan and Delaiah and Gemariah urged the king not to burn the scroll, he would not listen to them.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> And the king commanded Jerahmeel the king's son and Seraiah son of Azriel and Shelemiah son of Abdeel to arrest the secretary Baruch and the prophet Jeremiah. But the LORD hid them.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Now, after the king had burned the scroll with the words that Baruch wrote at Jeremiah's dictation, the word of the LORD came to Jeremiah:</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Take another scroll and write on it all the former words that were in the first scroll, which King Jehoiakim of Judah has burned.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> And concerning King Jehoiakim of Judah you shall say: Thus says the LORD, You have dared to burn this scroll, saying, Why have you written in it that the king of Babylon will certainly come and destroy this land, and will cut off from it human beings and animals?</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Therefore thus says the LORD concerning King Jehoiakim of Judah: He shall have no one to sit upon the throne of David, and his dead body shall be cast out to the heat by day and the frost by night.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> And I will punish him and his offspring and his servants for their iniquity; I will bring on them, and on the inhabitants of Jerusalem, and on the people of Judah, all the disasters with which I have threatened them-- but they would not listen.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Then Jeremiah took another scroll and gave it to the secretary Baruch son of Neriah, who wrote on it at Jeremiah's dictation all the words of the scroll that King Jehoiakim of Judah had burned in the fire; and many similar words were added to them.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"37\">\r\n\t\t\t<VERS vnumber=\"1\"> Zedekiah son of Josiah, whom King Nebuchadrezzar of Babylon made king in the land of Judah, succeeded Coniah son of Jehoiakim.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> But neither he nor his servants nor the people of the land listened to the words of the LORD that he spoke through the prophet Jeremiah.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> King Zedekiah sent Jehucal son of Shelemiah and the priest Zephaniah son of Maaseiah to the prophet Jeremiah saying, \"Please pray for us to the LORD our God.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Now Jeremiah was still going in and out among the people, for he had not yet been put in prison.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Meanwhile, the army of Pharaoh had come out of Egypt; and when the Chaldeans who were besieging Jerusalem heard news of them, they withdrew from Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then the word of the LORD came to the prophet Jeremiah:</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Thus says the LORD, God of Israel: This is what the two of you shall say to the king of Judah, who sent you to me to inquire of me, Pharaoh's army, which set out to help you, is going to return to its own land, to Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And the Chaldeans shall return and fight against this city; they shall take it and burn it with fire.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Thus says the LORD: Do not deceive yourselves, saying, \"The Chaldeans will surely go away from us,\" for they will not go away.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Even if you defeated the whole army of Chaldeans who are fighting against you, and there remained of them only wounded men in their tents, they would rise up and burn this city with fire.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Now when the Chaldean army had withdrawn from Jerusalem at the approach of Pharaoh's army,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Jeremiah set out from Jerusalem to go to the land of Benjamin to receive his share of property among the people there. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> When he reached the Benjamin Gate, a sentinel there named Irijah son of Shelemiah son of Hananiah arrested the prophet Jeremiah saying, \"You are deserting to the Chaldeans.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> And Jeremiah said, \"That is a lie; I am not deserting to the Chaldeans.\" But Irijah would not listen to him, and arrested Jeremiah and brought him to the officials.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The officials were enraged at Jeremiah, and they beat him and imprisoned him in the house of the secretary Jonathan, for it had been made a prison.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Thus Jeremiah was put in the cistern house, in the cells, and remained there many days.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then King Zedekiah sent for him, and received him. The king questioned him secretly in his house, and said, \"Is there any word from the LORD?\" Jeremiah said, \"There is!\" Then he said, \"You shall be handed over to the king of Babylon.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Jeremiah also said to King Zedekiah, \"What wrong have I done to you or your servants or this people, that you have put me in prison?</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Where are your prophets who prophesied to you, saying, 'The king of Babylon will not come against you and against this land'?</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Now please hear me, my lord king: be good enough to listen to my plea, and do not send me back to the house of the secretary Jonathan to die there.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> So King Zedekiah gave orders, and they committed Jeremiah to the court of the guard; and a loaf of bread was given him daily from the bakers' street, until all the bread of the city was gone. So Jeremiah remained in the court of the guard.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"38\">\r\n\t\t\t<VERS vnumber=\"1\"> Now Shephatiah son of Mattan, Gedaliah son of Pashhur, Jucal son of Shelemiah, and Pashhur son of Malchiah heard the words that Jeremiah was saying to all the people,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Thus says the LORD, Those who stay in this city shall die by the sword, by famine, and by pestilence; but those who go out to the Chaldeans shall live; they shall have their lives as a prize of war, and live.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Thus says the LORD, This city shall surely be handed over to the army of the king of Babylon and be taken.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then the officials said to the king, \"This man ought to be put to death, because he is discouraging the soldiers who are left in this city, and all the people, by speaking such words to them. For this man is not seeking the welfare of this people, but their harm.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> King Zedekiah said, \"Here he is; he is in your hands; for the king is powerless against you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> So they took Jeremiah and threw him into the cistern of Malchiah, the king's son, which was in the court of the guard, letting Jeremiah down by ropes. Now there was no water in the cistern, but only mud, and Jeremiah sank in the mud.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Ebed-melech the Ethiopian, a eunuch in the king's house, heard that they had put Jeremiah into the cistern. The king happened to be sitting at the Benjamin Gate, </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> So Ebed-melech left the king's house and spoke to the king,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> \"My lord king, these men have acted wickedly in all they did to the prophet Jeremiah by throwing him into the cistern to die there of hunger, for there is no bread left in the city.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then the king commanded Ebed-melech the Ethiopian, \"Take three men with you from here, and pull the prophet Jeremiah up from the cistern before he dies.\" </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> So Ebed-melech took the men with him and went to the house of the king, to a wardrobe of the storehouse, and took from there old rags and worn-out clothes, which he let down to Jeremiah in the cistern by ropes. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then Ebed-melech the Ethiopian said to Jeremiah, \"Just put the rags and clothes between your armpits and the ropes.\" Jeremiah did so. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then they drew Jeremiah up by the ropes and pulled him out of the cistern. And Jeremiah remained in the court of the guard.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> King Zedekiah sent for the prophet Jeremiah and received him at the third entrance of the temple of the LORD. The king said to Jeremiah, \"I have something to ask you; do not hide anything from me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Jeremiah said to Zedekiah, \"If I tell you, you will put me to death, will you not? And if I give you advice, you will not listen to me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> So King Zedekiah swore an oath in secret to Jeremiah, \"As the LORD lives, who gave us our lives, I will not put you to death or hand you over to these men who seek your life.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then Jeremiah said to Zedekiah, \"Thus says the LORD, the God of hosts, the God of Israel, If you will only surrender to the officials of the king of Babylon, then your life shall be spared, and this city shall not be burned with fire, and you and your house shall live.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> But if you do not surrender to the officials of the king of Babylon, then this city shall be handed over to the Chaldeans, and they shall burn it with fire, and you yourself shall not escape from their hand.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> King Zedekiah said to Jeremiah, \"I am afraid of the Judeans who have deserted to the Chaldeans, for I might be handed over to them and they would abuse me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Jeremiah said, \"That will not happen. Just obey the voice of the LORD in what I say to you, and it shall go well with you, and your life shall be spared.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> But if you are determined not to surrender, this is what the LORD has shown me--</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> a vision of all the women remaining in the house of the king of Judah being led out to the officials of the king of Babylon and saying, 'Your trusted friends have seduced you and have overcome you; Now that your feet are stuck in the mud, they desert you.'</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> All your wives and your children shall be led out to the Chaldeans, and you yourself shall not escape from their hand, but shall be seized by the king of Babylon; and this city shall be burned with fire.\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Then Zedekiah said to Jeremiah, \"Do not let anyone else know of this conversation, or you will die.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> If the officials should hear that I have spoken with you, and they should come and say to you, 'Just tell us what you said to the king; do not conceal it from us, or we will put you to death. What did the king say to you?'</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> then you shall say to them, 'I was presenting my plea to the king not to send me back to the house of Jonathan to die there.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> All the officials did come to Jeremiah and questioned him; and he answered them in the very words the king had commanded. So they stopped questioning him, for the conversation had not been overheard.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> And Jeremiah remained in the court of the guard until the day that Jerusalem was taken.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"39\">\r\n\t\t\t<VERS vnumber=\"1\"> In the ninth year of King Zedekiah of Judah, in the tenth month, King Nebuchadrezzar of Babylon and all his army came against Jerusalem and besieged it;</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> in the eleventh year of Zedekiah, in the fourth month, on the ninth day of the month, a breach was made in the city.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> When Jerusalem was taken, all the officials of the king of Babylon came and sat in the middle gate: Nergal-sharezer, Samgar-nebo, Sarsechim the Rabsaris, Nergal-sharezer the Rabmag, with all the rest of the officials of the king of Babylon. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> When King Zedekiah of Judah and all the soldiers saw them, they fled, going out of the city at night by way of the king's garden through the gate between the two walls; and they went toward the Arabah.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> But the army of the Chaldeans pursued them, and overtook Zedekiah in the plains of Jericho; and when they had taken him, they brought him up to King Nebuchadrezzar of Babylon, at Riblah, in the land of Hamath; and he passed sentence on him.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The king of Babylon slaughtered the sons of Zedekiah at Riblah before his eyes; also the king of Babylon slaughtered all the nobles of Judah.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> He put out the eyes of Zedekiah, and bound him in fetters to take him to Babylon.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The Chaldeans burned the king's house and the houses of the people, and broke down the walls of Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then Nebuzaradan the captain of the guard exiled to Babylon the rest of the people who were left in the city, those who had deserted to him, and the people who remained.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Nebuzaradan the captain of the guard left in the land of Judah some of the poor people who owned nothing, and gave them vineyards and fields at the same time.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> King Nebuchadrezzar of Babylon gave command concerning Jeremiah through Nebuzaradan, the captain of the guard, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> \"Take him, look after him well and do him no harm, but deal with him as he may ask you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> So Nebuzaradan the captain of the guard, Nebushazban the Rabsaris, Nergal-sharezer the Rabmag, and all the chief officers of the king of Babylon sent</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> and took Jeremiah from the court of the guard. They entrusted him to Gedaliah son of Ahikam son of Shaphan to be brought home. So he stayed with his own people.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The word of the LORD came to Jeremiah while he was confined in the court of the guard:</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Go and say to Ebed-melech the Ethiopian: Thus says the LORD of hosts, the God of Israel: I am going to fulfill my words against this city for evil and not for good, and they shall be accomplished in your presence on that day. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> But I will save you on that day, says the LORD, and you shall not be handed over to those whom you dread.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> For I will surely save you, and you shall not fall by the sword; but you shall have your life as a prize of war, because you have trusted in me, says the LORD.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"40\">\r\n\t\t\t<VERS vnumber=\"1\"> The word that came to Jeremiah from the LORD after Nebuzaradan the captain of the guard had let him go from Ramah, when he took him bound in fetters along with all the captives of Jerusalem and Judah who were being exiled to Babylon.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The captain of the guard took Jeremiah and said to him, \"The LORD your God threatened this place with this disaster;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> and now the LORD has brought it about, and has done as he said, because all of you sinned against the LORD and did not obey his voice. Therefore this thing has come upon you.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Now look, I have just released you today from the fetters on your hands. If you wish to come with me to Babylon, come, and I will take good care of you; but if you do not wish to come with me to Babylon, you need not come. See, the whole land is before you; go wherever you think it good and right to go.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> If you remain, then return to Gedaliah son of Ahikam son of Shaphan, whom the king of Babylon appointed governor of the towns of Judah, and stay with him among the people; or go wherever you think it right to go.\" So the captain of the guard gave him an allowance of food and a present, and let him go.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then Jeremiah went to Gedaliah son of Ahikam at Mizpah, and stayed with him among the people who were left in the land.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> When all the leaders of the forces in the open country and their troops heard that the king of Babylon had appointed Gedaliah son of Ahikam governor in the land, and had committed to him men, women, and children, those of the poorest of the land who had not been taken into exile to Babylon,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> they went to Gedaliah at Mizpah-- Ishmael son of Nethaniah, Johanan son of Kareah, Seraiah son of Tanhumeth, the sons of Ephai the Netophathite, Jezaniah son of the Maacathite, they and their troops.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Gedaliah son of Ahikam son of Shaphan swore to them and their troops, saying, \"Do not be afraid to serve the Chaldeans. Stay in the land and serve the king of Babylon, and it shall go well with you.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> As for me, I am staying at Mizpah to represent you before the Chaldeans who come to us; but as for you, gather wine and summer fruits and oil, and store them in your vessels, and live in the towns that you have taken over.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Likewise, when all the Judeans who were in Moab and among the Ammonites and in Edom and in other lands heard that the king of Babylon had left a remnant in Judah and had appointed Gedaliah son of Ahikam son of Shaphan as governor over them,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> then all the Judeans returned from all the places to which they had been scattered and came to the land of Judah, to Gedaliah at Mizpah; and they gathered wine and summer fruits in great abundance.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Now Johanan son of Kareah and all the leaders of the forces in the open country came to Gedaliah at Mizpah</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> and said to him, \"Are you at all aware that Baalis king of the Ammonites has sent Ishmael son of Nethaniah to take your life?\" But Gedaliah son of Ahikam would not believe them.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Then Johanan son of Kareah spoke secretly to Gedaliah at Mizpah, \"Please let me go and kill Ishmael son of Nethaniah, and no one else will know. Why should he take your life, so that all the Judeans who are gathered around you would be scattered, and the remnant of Judah would perish?\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> But Gedaliah son of Ahikam said to Johanan son of Kareah, \"Do not do such a thing, for you are telling a lie about Ishmael.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"41\">\r\n\t\t\t<VERS vnumber=\"1\"> In the seventh month, Ishmael son of Nethaniah son of Elishama, of the royal family, one of the chief officers of the king, came with ten men to Gedaliah son of Ahikam, at Mizpah. As they ate bread together there at Mizpah,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Ishmael son of Nethaniah and the ten men with him got up and struck down Gedaliah son of Ahikam son of Shaphan with the sword and killed him, because the king of Babylon had appointed him governor in the land.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Ishmael also killed all the Judeans who were with Gedaliah at Mizpah, and the Chaldean soldiers who happened to be there.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> On the day after the murder of Gedaliah, before anyone knew of it,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> eighty men arrived from Shechem and Shiloh and Samaria, with their beards shaved and their clothes torn, and their bodies gashed, bringing grain offerings and incense to present at the temple of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And Ishmael son of Nethaniah came out from Mizpah to meet them, weeping as he came. As he met them, he said to them, \"Come to Gedaliah son of Ahikam.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> When they reached the middle of the city, Ishmael son of Nethaniah and the men with him slaughtered them, and threw them into a cistern. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But there were ten men among them who said to Ishmael, \"Do not kill us, for we have stores of wheat, barley, oil, and honey hidden in the fields.\" So he refrained, and did not kill them along with their companions.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Now the cistern into which Ishmael had thrown all the bodies of the men whom he had struck down was the large cistern that King Asa had made for defense against King Baasha of Israel; Ishmael son of Nethaniah filled that cistern with those whom he had killed. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then Ishmael took captive all the rest of the people who were in Mizpah, the king's daughters and all the people who were left at Mizpah, whom Nebuzaradan, the captain of the guard, had committed to Gedaliah son of Ahikam. Ishmael son of Nethaniah took them captive and set out to cross over to the Ammonites.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But when Johanan son of Kareah and all the leaders of the forces with him heard of all the crimes that Ishmael son of Nethaniah had done,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> they took all their men and went to fight against Ishmael son of Nethaniah. They came upon him at the great pool that is in Gibeon.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And when all the people who were with Ishmael saw Johanan son of Kareah and all the leaders of the forces with him, they were glad.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> So all the people whom Ishmael had carried away captive from Mizpah turned around and came back, and went to Johanan son of Kareah.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> But Ishmael son of Nethaniah escaped from Johanan with eight men, and went to the Ammonites.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then Johanan son of Kareah and all the leaders of the forces with him took all the rest of the people whom Ishmael son of Nethaniah had carried away captive from Mizpah after he had slain Gedaliah son of Ahikam-- soldiers, women, children, and eunuchs, whom Johanan brought back from Gibeon.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> And they set out, and stopped at Geruth Chimham near Bethlehem, intending to go to Egypt</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> because of the Chaldeans; for they were afraid of them, because Ishmael son of Nethaniah had killed Gedaliah son of Ahikam, whom the king of Babylon had made governor over the land.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"42\">\r\n\t\t\t<VERS vnumber=\"1\"> Then all the commanders of the forces, and Johanan son of Kareah and Azariah son of Hoshaiah, and all the people from the least to the greatest, approached </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> the prophet Jeremiah and said, \"Be good enough to listen to our plea, and pray to the LORD your God for us-- for all this remnant. For there are only a few of us left out of many, as your eyes can see.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Let the LORD your God show us where we should go and what we should do.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The prophet Jeremiah said to them, \"Very well: I am going to pray to the LORD your God as you request, and whatever the LORD answers you I will tell you; I will keep nothing back from you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> They in their turn said to Jeremiah, \"May the LORD be a true and faithful witness against us if we do not act according to everything that the LORD your God sends us through you.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Whether it is good or bad, we will obey the voice of the LORD our God to whom we are sending you, in order that it may go well with us when we obey the voice of the LORD our God.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> At the end of ten days the word of the LORD came to Jeremiah.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then he summoned Johanan son of Kareah and all the commanders of the forces who were with him, and all the people from the least to the greatest,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> and said to them, \"Thus says the LORD, the God of Israel, to whom you sent me to present your plea before him:</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> If you will only remain in this land, then I will build you up and not pull you down; I will plant you, and not pluck you up; for I am sorry for the disaster that I have brought upon you.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Do not be afraid of the king of Babylon, as you have been; do not be afraid of him, says the LORD, for I am with you, to save you and to rescue you from his hand.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> I will grant you mercy, and he will have mercy on you and restore you to your native soil.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> But if you continue to say, 'We will not stay in this land,' thus disobeying the voice of the LORD your God</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> and saying, 'No, we will go to the land of Egypt, where we shall not see war, or hear the sound of the trumpet, or be hungry for bread, and there we will stay,'</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> then hear the word of the LORD, O remnant of Judah. Thus says the LORD of hosts, the God of Israel: If you are determined to enter Egypt and go to settle there,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> then the sword that you fear shall overtake you there, in the land of Egypt; and the famine that you dread shall follow close after you into Egypt; and there you shall die.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> All the people who have determined to go to Egypt to settle there shall die by the sword, by famine, and by pestilence; they shall have no remnant or survivor from the disaster that I am bringing upon them.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> \"For thus says the LORD of hosts, the God of Israel: Just as my anger and my wrath were poured out on the inhabitants of Jerusalem, so my wrath will be poured out on you when you go to Egypt. You shall become an object of execration and horror, of cursing and ridicule. You shall see this place no more.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The LORD has said to you, O remnant of Judah, Do not go to Egypt. Be well aware that I have warned you today</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> that you have made a fatal mistake. For you yourselves sent me to the LORD your God, saying, 'Pray for us to the LORD our God, and whatever the LORD our God says, tell us and we will do it.'</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> So I have told you today, but you have not obeyed the voice of the LORD your God in anything that he sent me to tell you.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Be well aware, then, that you shall die by the sword, by famine, and by pestilence in the place where you desire to go and settle.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"43\">\r\n\t\t\t<VERS vnumber=\"1\"> When Jeremiah finished speaking to all the people all these words of the LORD their God, with which the LORD their God had sent him to them,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Azariah son of Hoshaiah and Johanan son of Kareah and all the other insolent men said to Jeremiah, \"You are telling a lie. The LORD our God did not send you to say, 'Do not go to Egypt to settle there';</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> but Baruch son of Neriah is inciting you against us, to hand us over to the Chaldeans, in order that they may kill us or take us into exile in Babylon.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> So Johanan son of Kareah and all the commanders of the forces and all the people did not obey the voice of the LORD, to stay in the land of Judah.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> But Johanan son of Kareah and all the commanders of the forces took all the remnant of Judah who had returned to settle in the land of Judah from all the nations to which they had been driven--</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> the men, the women, the children, the princesses, and everyone whom Nebuzaradan the captain of the guard had left with Gedaliah son of Ahikam son of Shaphan; also the prophet Jeremiah and Baruch son of Neriah.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> And they came into the land of Egypt, for they did not obey the voice of the LORD. And they arrived at Tahpanhes.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then the word of the LORD came to Jeremiah in Tahpanhes:</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Take some large stones in your hands, and bury them in the clay pavement that is at the entrance to Pharaoh's palace in Tahpanhes. Let the Judeans see you do it, </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> and say to them, Thus says the LORD of hosts, the God of Israel: I am going to send and take my servant King Nebuchadrezzar of Babylon, and he will set his throne above these stones that I have buried, and he will spread his royal canopy over them. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> He shall come and ravage the land of Egypt, giving those who are destined for pestilence, to pestilence, and those who are destined for captivity, to captivity, and those who are destined for the sword, to the sword.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> He shall kindle a fire in the temples of the gods of Egypt; and he shall burn them and carry them away captive; and he shall pick clean the land of Egypt, as a shepherd picks his cloak clean of vermin; and he shall depart from there safely. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> He shall break the obelisks of Heliopolis, which is in the land of Egypt; and the temples of the gods of Egypt he shall burn with fire.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"44\">\r\n\t\t\t<VERS vnumber=\"1\"> The word that came to Jeremiah for all the Judeans living in the land of Egypt, at Migdol, at Tahpanhes, at Memphis, and in the land of Pathros,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Thus says the LORD of hosts, the God of Israel: You yourselves have seen all the disaster that I have brought on Jerusalem and on all the towns of Judah. Look at them; today they are a desolation, without an inhabitant in them,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> because of the wickedness that they committed, provoking me to anger, in that they went to make offerings and serve other gods that they had not known, neither they, nor you, nor your ancestors.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Yet I persistently sent to you all my servants the prophets, saying, \"I beg you not to do this abominable thing that I hate!\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> But they did not listen or incline their ear, to turn from their wickedness and make no offerings to other gods.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> So my wrath and my anger were poured out and kindled in the towns of Judah and in the streets of Jerusalem; and they became a waste and a desolation, as they still are today.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> And now thus says the LORD God of hosts, the God of Israel: Why are you doing such great harm to yourselves, to cut off man and woman, child and infant, from the midst of Judah, leaving yourselves without a remnant?</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Why do you provoke me to anger with the works of your hands, making offerings to other gods in the land of Egypt where you have come to settle? Will you be cut off and become an object of cursing and ridicule among all the nations of the earth?</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Have you forgotten the crimes of your ancestors, of the kings of Judah, of their wives, your own crimes and those of your wives, which they committed in the land of Judah and in the streets of Jerusalem? </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> They have shown no contrition or fear to this day, nor have they walked in my law and my statutes that I set before you and before your ancestors.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Therefore thus says the LORD of hosts, the God of Israel: I am determined to bring disaster on you, to bring all Judah to an end.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> I will take the remnant of Judah who are determined to come to the land of Egypt to settle, and they shall perish, everyone; in the land of Egypt they shall fall; by the sword and by famine they shall perish; from the least to the greatest, they shall die by the sword and by famine; and they shall become an object of execration and horror, of cursing and ridicule.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> I will punish those who live in the land of Egypt, as I have punished Jerusalem, with the sword, with famine, and with pestilence,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> so that none of the remnant of Judah who have come to settle in the land of Egypt shall escape or survive or return to the land of Judah. Although they long to go back to live there, they shall not go back, except some fugitives.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Then all the men who were aware that their wives had been making offerings to other gods, and all the women who stood by, a great assembly, all the people who lived in Pathros in the land of Egypt, answered Jeremiah:</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> \"As for the word that you have spoken to us in the name of the LORD, we are not going to listen to you.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Instead, we will do everything that we have vowed, make offerings to the queen of heaven and pour out libations to her, just as we and our ancestors, our kings and our officials, used to do in the towns of Judah and in the streets of Jerusalem. We used to have plenty of food, and prospered, and saw no misfortune.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> But from the time we stopped making offerings to the queen of heaven and pouring out libations to her, we have lacked everything and have perished by the sword and by famine.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> And the women said, \"Indeed we will go on making offerings to the queen of heaven and pouring out libations to her; do you think that we made cakes for her, marked with her image, and poured out libations to her without our husbands' being involved?\" </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Then Jeremiah said to all the people, men and women, all the people who were giving him this answer:</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> \"As for the offerings that you made in the towns of Judah and in the streets of Jerusalem, you and your ancestors, your kings and your officials, and the people of the land, did not the LORD remember them? Did it not come into his mind?</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The LORD could no longer bear the sight of your evil doings, the abominations that you committed; therefore your land became a desolation and a waste and a curse, without inhabitant, as it is to this day.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> It is because you burned offerings, and because you sinned against the LORD and did not obey the voice of the LORD or walk in his law and in his statutes and in his decrees, that this disaster has befallen you, as is still evident today.\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Jeremiah said to all the people and all the women, \"Hear the word of the LORD, all you Judeans who are in the land of Egypt,</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Thus says the LORD of hosts, the God of Israel: You and your wives have accomplished in deeds what you declared in words, saying, 'We are determined to perform the vows that we have made, to make offerings to the queen of heaven and to pour out libations to her.' By all means, keep your vows and make your libations!</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Therefore hear the word of the LORD, all you Judeans who live in the land of Egypt: Lo, I swear by my great name, says the LORD, that my name shall no longer be pronounced on the lips of any of the people of Judah in all the land of Egypt, saying, 'As the Lord GOD lives.'</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> I am going to watch over them for harm and not for good; all the people of Judah who are in the land of Egypt shall perish by the sword and by famine, until not one is left.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> And those who escape the sword shall return from the land of Egypt to the land of Judah, few in number; and all the remnant of Judah, who have come to the land of Egypt to settle, shall know whose words will stand, mine or theirs!</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> This shall be the sign to you, says the LORD, that I am going to punish you in this place, in order that you may know that my words against you will surely be carried out:</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Thus says the LORD, I am going to give Pharaoh Hophra, king of Egypt, into the hands of his enemies, those who seek his life, just as I gave King Zedekiah of Judah into the hand of King Nebuchadrezzar of Babylon, his enemy who sought his life.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"45\">\r\n\t\t\t<VERS vnumber=\"1\"> The word that the prophet Jeremiah spoke to Baruch son of Neriah, when he wrote these words in a scroll at the dictation of Jeremiah, in the fourth year of King Jehoiakim son of Josiah of Judah:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Thus says the LORD, the God of Israel, to you, O Baruch:</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> You said, \"Woe is me! The LORD has added sorrow to my pain; I am weary with my groaning, and I find no rest.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Thus you shall say to him, \"Thus says the LORD: I am going to break down what I have built, and pluck up what I have planted-- that is, the whole land.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> And you, do you seek great things for yourself? Do not seek them; for I am going to bring disaster upon all flesh, says the LORD; but I will give you your life as a prize of war in every place to which you may go.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"46\">\r\n\t\t\t<VERS vnumber=\"1\"> The word of the LORD that came to the prophet Jeremiah concerning the nations.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Concerning Egypt, about the army of Pharaoh Neco, king of Egypt, which was by the river Euphrates at Carchemish and which King Nebuchadrezzar of Babylon defeated in the fourth year of King Jehoiakim son of Josiah of Judah:</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Prepare buckler and shield, and advance for battle!</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Harness the horses; mount the steeds! Take your stations with your helmets, whet your lances, put on your coats of mail!</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Why do I see them terrified? They have fallen back; their warriors are beaten down, and have fled in haste. They do not look back-- terror is all around! says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The swift cannot flee away, nor can the warrior escape; in the north by the river Euphrates they have stumbled and fallen.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Who is this, rising like the Nile, like rivers whose waters surge?</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Egypt rises like the Nile, like rivers whose waters surge. It said, Let me rise, let me cover the earth, let me destroy cities and their inhabitants.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Advance, O horses, and dash madly, O chariots! Let the warriors go forth: Ethiopia and Put who carry the shield, the Ludim, who draw the bow. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> That day is the day of the Lord GOD of hosts, a day of retribution, to gain vindication from his foes. The sword shall devour and be sated, and drink its fill of their blood. For the Lord GOD of hosts holds a sacrifice in the land of the north by the river Euphrates.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Go up to Gilead, and take balm, O virgin daughter Egypt! In vain you have used many medicines; there is no healing for you.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The nations have heard of your shame, and the earth is full of your cry; for warrior has stumbled against warrior; both have fallen together.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The word that the LORD spoke to the prophet Jeremiah about the coming of King Nebuchadrezzar of Babylon to attack the land of Egypt:</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Declare in Egypt, and proclaim in Migdol; proclaim in Memphis and Tahpanhes; Say, \"Take your stations and be ready, for the sword shall devour those around you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Why has Apis fled? Why did your bull not stand?-- because the LORD thrust him down.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Your multitude stumbled and fell, and one said to another, \"Come, let us go back to our own people and to the land of our birth, because of the destroying sword.\" </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Give Pharaoh, king of Egypt, the name \"Braggart who missed his chance.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> As I live, says the King, whose name is the LORD of hosts, one is coming like Tabor among the mountains, and like Carmel by the sea.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Pack your bags for exile, sheltered daughter Egypt! For Memphis shall become a waste, a ruin, without inhabitant.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> A beautiful heifer is Egypt-- a gadfly from the north lights upon her.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Even her mercenaries in her midst are like fatted calves; they too have turned and fled together, they did not stand; for the day of their calamity has come upon them, the time of their punishment.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> She makes a sound like a snake gliding away; for her enemies march in force, and come against her with axes, like those who fell trees.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> They shall cut down her forest, says the LORD, though it is impenetrable, because they are more numerous than locusts; they are without number.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Daughter Egypt shall be put to shame; she shall be handed over to a people from the north.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> The LORD of hosts, the God of Israel, said: See, I am bringing punishment upon Amon of Thebes, and Pharaoh, and Egypt and her gods and her kings, upon Pharaoh and those who trust in him.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> I will hand them over to those who seek their life, to King Nebuchadrezzar of Babylon and his officers. Afterward Egypt shall be inhabited as in the days of old, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> But as for you, have no fear, my servant Jacob, and do not be dismayed, O Israel; for I am going to save you from far away, and your offspring from the land of their captivity. Jacob shall return and have quiet and ease, and no one shall make him afraid.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> As for you, have no fear, my servant Jacob, says the LORD, for I am with you. I will make an end of all the nations among which I have banished you, but I will not make an end of you! I will chastise you in just measure, and I will by no means leave you unpunished.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"47\">\r\n\t\t\t<VERS vnumber=\"1\"> The word of the LORD that came to the prophet Jeremiah concerning the Philistines, before Pharaoh attacked Gaza:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Thus says the LORD: See, waters are rising out of the north and shall become an overflowing torrent; they shall overflow the land and all that fills it, the city and those who live in it. People shall cry out, and all the inhabitants of the land shall wail.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> At the noise of the stamping of the hoofs of his stallions, at the clatter of his chariots, at the rumbling of their wheels, parents do not turn back for children, so feeble are their hands,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> because of the day that is coming to destroy all the Philistines, to cut off from Tyre and Sidon every helper that remains. For the LORD is destroying the Philistines, the remnant of the coastland of Caphtor.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Baldness has come upon Gaza, Ashkelon is silenced. O remnant of their power! How long will you gash yourselves? </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Ah, sword of the LORD! How long until you are quiet? Put yourself into your scabbard, rest and be still!</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> How can it be quiet, when the LORD has given it an order? Against Ashkelon and against the seashore-- there he has appointed it.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"48\">\r\n\t\t\t<VERS vnumber=\"1\"> Concerning Moab. Thus says the LORD of hosts, the God of Israel: Alas for Nebo, it is laid waste! Kiriathaim is put to shame, it is taken; the fortress is put to shame and broken down;</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> the renown of Moab is no more. In Heshbon they planned evil against her: \"Come, let us cut her off from being a nation!\" You also, O Madmen, shall be brought to silence; the sword shall pursue you. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Hark! a cry from Horonaim, \"Desolation and great destruction!\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> \"Moab is destroyed!\" her little ones cry out.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> For at the ascent of Luhith they go up weeping bitterly; for at the descent of Horonaim they have heard the distressing cry of anguish. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Flee! Save yourselves! Be like a wild ass in the desert! </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Surely, because you trusted in your strongholds and your treasures, you also shall be taken; Chemosh shall go out into exile, with his priests and his attendants. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The destroyer shall come upon every town, and no town shall escape; the valley shall perish, and the plain shall be destroyed, as the LORD has spoken.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Set aside salt for Moab, for she will surely fall; her towns shall become a desolation, with no inhabitant in them.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Accursed is the one who is slack in doing the work of the LORD; and accursed is the one who keeps back the sword from bloodshed.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Moab has been at ease from his youth, settled like wine on its dregs; he has not been emptied from vessel to vessel, nor has he gone into exile; therefore his flavor has remained and his aroma is unspoiled.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Therefore, the time is surely coming, says the LORD, when I shall send to him decanters to decant him, and empty his vessels, and break his jars in pieces. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then Moab shall be ashamed of Chemosh, as the house of Israel was ashamed of Bethel, their confidence.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> How can you say, \"We are heroes and mighty warriors\"?</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The destroyer of Moab and his towns has come up, and the choicest of his young men have gone down to slaughter, says the King, whose name is the LORD of hosts.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The calamity of Moab is near at hand and his doom approaches swiftly.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Mourn over him, all you his neighbors, and all who know his name; say, \"How the mighty scepter is broken, the glorious staff!\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Come down from glory, and sit on the parched ground, enthroned daughter Dibon! For the destroyer of Moab has come up against you; he has destroyed your strongholds.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Stand by the road and watch, you inhabitant of Aroer! Ask the man fleeing and the woman escaping; say, \"What has happened?\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Moab is put to shame, for it is broken down; wail and cry! Tell it by the Arnon, that Moab is laid waste.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Judgment has come upon the tableland, upon Holon, and Jahzah, and Mephaath,</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> and Dibon, and Nebo, and Beth-diblathaim,</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> and Kiriathaim, and Beth-gamul, and Beth-meon,</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> and Kerioth, and Bozrah, and all the towns of the land of Moab, far and near.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> The horn of Moab is cut off, and his arm is broken, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Make him drunk, because he magnified himself against the LORD; let Moab wallow in his vomit; he too shall become a laughingstock.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Israel was a laughingstock for you, though he was not caught among thieves; but whenever you spoke of him you shook your head!</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Leave the towns, and live on the rock, O inhabitants of Moab! Be like the dove that nests on the sides of the mouth of a gorge.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> We have heard of the pride of Moab-- he is very proud-- of his loftiness, his pride, and his arrogance, and the haughtiness of his heart.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> I myself know his insolence, says the LORD; his boasts are false, his deeds are false.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Therefore I wail for Moab; I cry out for all Moab; for the people of Kir-heres I mourn.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> More than for Jazer I weep for you, O vine of Sibmah! Your branches crossed over the sea, reached as far as Jazer; upon your summer fruits and your vintage the destroyer has fallen. </VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Gladness and joy have been taken away from the fruitful land of Moab; I have stopped the wine from the wine presses; no one treads them with shouts of joy; the shouting is not the shout of joy.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Heshbon and Elealeh cry out; as far as Jahaz they utter their voice, from Zoar to Horonaim and Eglath-shelishiyah. For even the waters of Nimrim have become desolate. </VERS>\r\n\t\t\t<VERS vnumber=\"35\"> And I will bring to an end in Moab, says the LORD, those who offer sacrifice at a high place and make offerings to their gods.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Therefore my heart moans for Moab like a flute, and my heart moans like a flute for the people of Kir-heres; for the riches they gained have perished.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> For every head is shaved and every beard cut off; on all the hands there are gashes, and on the loins sackcloth.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> On all the housetops of Moab and in the squares there is nothing but lamentation; for I have broken Moab like a vessel that no one wants, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> How it is broken! How they wail! How Moab has turned his back in shame! So Moab has become a derision and a horror to all his neighbors.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> For thus says the LORD: Look, he shall swoop down like an eagle, and spread his wings against Moab;</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> the towns shall be taken and the strongholds seized. The hearts of the warriors of Moab, on that day, shall be like the heart of a woman in labor. </VERS>\r\n\t\t\t<VERS vnumber=\"42\"> Moab shall be destroyed as a people, because he magnified himself against the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> Terror, pit, and trap are before you, O inhabitants of Moab! says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> Everyone who flees from the terror shall fall into the pit, and everyone who climbs out of the pit shall be caught in the trap. For I will bring these things upon Moab in the year of their punishment, says the LORD. </VERS>\r\n\t\t\t<VERS vnumber=\"45\"> In the shadow of Heshbon fugitives stop exhausted; for a fire has gone out from Heshbon, a flame from the house of Sihon; it has destroyed the forehead of Moab, the scalp of the people of tumult. </VERS>\r\n\t\t\t<VERS vnumber=\"46\"> Woe to you, O Moab! The people of Chemosh have perished, for your sons have been taken captive, and your daughters into captivity.</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> Yet I will restore the fortunes of Moab in the latter days, says the LORD. Thus far is the judgment on Moab.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"49\">\r\n\t\t\t<VERS vnumber=\"1\"> Concerning the Ammonites. Thus says the LORD: Has Israel no sons? Has he no heir? Why then has Milcom dispossessed Gad, and his people settled in its towns?</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Therefore, the time is surely coming, says the LORD, when I will sound the battle alarm against Rabbah of the Ammonites; it shall become a desolate mound, and its villages shall be burned with fire; then Israel shall dispossess those who dispossessed him, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Wail, O Heshbon, for Ai is laid waste! Cry out, O daughters of Rabbah! Put on sackcloth, lament, and slash yourselves with whips! For Milcom shall go into exile, with his priests and his attendants. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Why do you boast in your strength? Your strength is ebbing, O faithless daughter. You trusted in your treasures, saying, \"Who will attack me?\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> I am going to bring terror upon you, says the Lord GOD of hosts, from all your neighbors, and you will be scattered, each headlong, with no one to gather the fugitives.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> But afterward I will restore the fortunes of the Ammonites, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Concerning Edom. Thus says the LORD of hosts: Is there no longer wisdom in Teman? Has counsel perished from the prudent? Has their wisdom vanished?</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Flee, turn back, get down low, inhabitants of Dedan! For I will bring the calamity of Esau upon him, the time when I punish him.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> If grape-gatherers came to you, would they not leave gleanings? If thieves came by night, even they would pillage only what they wanted.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> But as for me, I have stripped Esau bare, I have uncovered his hiding places, and he is not able to conceal himself. His offspring are destroyed, his kinsfolk and his neighbors; and he is no more.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Leave your orphans, I will keep them alive; and let your widows trust in me.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> For thus says the LORD: If those who do not deserve to drink the cup still have to drink it, shall you be the one to go unpunished? You shall not go unpunished; you must drink it.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> For by myself I have sworn, says the LORD, that Bozrah shall become an object of horror and ridicule, a waste, and an object of cursing; and all her towns shall be perpetual wastes.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> I have heard tidings from the LORD, and a messenger has been sent among the nations: \"Gather yourselves together and come against her, and rise up for battle!\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> For I will make you least among the nations, despised by humankind.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The terror you inspire and the pride of your heart have deceived you, you who live in the clefts of the rock, who hold the height of the hill. Although you make your nest as high as the eagle's, from there I will bring you down, says the LORD. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Edom shall become an object of horror; everyone who passes by it will be horrified and will hiss because of all its disasters.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> As when Sodom and Gomorrah and their neighbors were overthrown, says the LORD, no one shall live there, nor shall anyone settle in it.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Like a lion coming up from the thickets of the Jordan against a perennial pasture, I will suddenly chase Edom away from it; and I will appoint over it whomever I choose. For who is like me? Who can summon me? Who is the shepherd who can stand before me? </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Therefore hear the plan that the LORD has made against Edom and the purposes that he has formed against the inhabitants of Teman: Surely the little ones of the flock shall be dragged away; surely their fold shall be appalled at their fate.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> At the sound of their fall the earth shall tremble; the sound of their cry shall be heard at the Red Sea. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Look, he shall mount up and swoop down like an eagle, and spread his wings against Bozrah, and the heart of the warriors of Edom in that day shall be like the heart of a woman in labor.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Concerning Damascus. Hamath and Arpad are confounded, for they have heard bad news; they melt in fear, they are troubled like the sea that cannot be quiet. </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Damascus has become feeble, she turned to flee, and panic seized her; anguish and sorrows have taken hold of her, as of a woman in labor.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> How the famous city is forsaken, the joyful town! </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Therefore her young men shall fall in her squares, and all her soldiers shall be destroyed in that day, says the LORD of hosts.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> And I will kindle a fire at the wall of Damascus, and it shall devour the strongholds of Ben-hadad.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Concerning Kedar and the kingdoms of Hazor that King Nebuchadrezzar of Babylon defeated. Thus says the LORD: Rise up, advance against Kedar! Destroy the people of the east!</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Take their tents and their flocks, their curtains and all their goods; carry off their camels for yourselves, and a cry shall go up: \"Terror is all around!\"</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Flee, wander far away, hide in deep places, O inhabitants of Hazor! says the LORD. For King Nebuchadrezzar of Babylon has made a plan against you and formed a purpose against you.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Rise up, advance against a nation at ease, that lives secure, says the LORD, that has no gates or bars, that lives alone.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Their camels shall become booty, their herds of cattle a spoil. I will scatter to every wind those who have shaven temples, and I will bring calamity against them from every side, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Hazor shall become a lair of jackals, an everlasting waste; no one shall live there, nor shall anyone settle in it.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> The word of the LORD that came to the prophet Jeremiah concerning Elam, at the beginning of the reign of King Zedekiah of Judah.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Thus says the LORD of hosts: I am going to break the bow of Elam, the mainstay of their might;</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> and I will bring upon Elam the four winds from the four quarters of heaven; and I will scatter them to all these winds, and there shall be no nation to which the exiles from Elam shall not come.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> I will terrify Elam before their enemies, and before those who seek their life; I will bring disaster upon them, my fierce anger, says the LORD. I will send the sword after them, until I have consumed them;</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> and I will set my throne in Elam, and destroy their king and officials, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> But in the latter days I will restore the fortunes of Elam, says the LORD.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"50\">\r\n\t\t\t<VERS vnumber=\"1\"> The word that the LORD spoke concerning Babylon, concerning the land of the Chaldeans, by the prophet Jeremiah:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Declare among the nations and proclaim, set up a banner and proclaim, do not conceal it, say: Babylon is taken, Bel is put to shame, Merodach is dismayed. Her images are put to shame, her idols are dismayed.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For out of the north a nation has come up against her; it shall make her land a desolation, and no one shall live in it; both human beings and animals shall flee away.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> In those days and in that time, says the LORD, the people of Israel shall come, they and the people of Judah together; they shall come weeping as they seek the LORD their God.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> They shall ask the way to Zion, with faces turned toward it, and they shall come and join themselves to the LORD by an everlasting covenant that will never be forgotten. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> My people have been lost sheep; their shepherds have led them astray, turning them away on the mountains; from mountain to hill they have gone, they have forgotten their fold.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> All who found them have devoured them, and their enemies have said, \"We are not guilty, because they have sinned against the LORD, the true pasture, the LORD, the hope of their ancestors.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Flee from Babylon, and go out of the land of the Chaldeans, and be like male goats leading the flock.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> For I am going to stir up and bring against Babylon a company of great nations from the land of the north; and they shall array themselves against her; from there she shall be taken. Their arrows are like the arrows of a skilled warrior who does not return empty-handed.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Chaldea shall be plundered; all who plunder her shall be sated, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Though you rejoice, though you exult, O plunderers of my heritage, though you frisk about like a heifer on the grass, and neigh like stallions,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> your mother shall be utterly shamed, and she who bore you shall be disgraced. Lo, she shall be the last of the nations, a wilderness, dry land, and a desert.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Because of the wrath of the LORD she shall not be inhabited, but shall be an utter desolation; everyone who passes by Babylon shall be appalled and hiss because of all her wounds.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Take up your positions around Babylon, all you that bend the bow; shoot at her, spare no arrows, for she has sinned against the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Raise a shout against her from all sides, \"She has surrendered; her bulwarks have fallen, her walls are thrown down.\" For this is the vengeance of the LORD: take vengeance on her, do to her as she has done.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Cut off from Babylon the sower, and the wielder of the sickle in time of harvest; because of the destroying sword all of them shall return to their own people, and all of them shall flee to their own land.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Israel is a hunted sheep driven away by lions. First the king of Assyria devoured it, and now at the end King Nebuchadrezzar of Babylon has gnawed its bones.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Therefore, thus says the LORD of hosts, the God of Israel: I am going to punish the king of Babylon and his land, as I punished the king of Assyria.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> I will restore Israel to its pasture, and it shall feed on Carmel and in Bashan, and on the hills of Ephraim and in Gilead its hunger shall be satisfied.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> In those days and at that time, says the LORD, the iniquity of Israel shall be sought, and there shall be none; and the sins of Judah, and none shall be found; for I will pardon the remnant that I have spared.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Go up to the land of Merathaim; go up against her, and attack the inhabitants of Pekod and utterly destroy the last of them, says the LORD; do all that I have commanded you. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The noise of battle is in the land, and great destruction!</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> How the hammer of the whole earth is cut down and broken! How Babylon has become a horror among the nations!</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> You set a snare for yourself and you were caught, O Babylon, but you did not know it; you were discovered and seized, because you challenged the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> The LORD has opened his armory, and brought out the weapons of his wrath, for the Lord GOD of hosts has a task to do in the land of the Chaldeans.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Come against her from every quarter; open her granaries; pile her up like heaps of grain, and destroy her utterly; let nothing be left of her.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Kill all her bulls, let them go down to the slaughter. Alas for them, their day has come, the time of their punishment!</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Listen! Fugitives and refugees from the land of Babylon are coming to declare in Zion the vengeance of the LORD our God, vengeance for his temple.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Summon archers against Babylon, all who bend the bow. Encamp all around her; let no one escape. Repay her according to her deeds; just as she has done, do to her-- for she has arrogantly defied the LORD, the Holy One of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Therefore her young men shall fall in her squares, and all her soldiers shall be destroyed on that day, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> I am against you, O arrogant one, says the Lord GOD of hosts; for your day has come, the time when I will punish you.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> The arrogant one shall stumble and fall, with no one to raise him up, and I will kindle a fire in his cities, and it will devour everything around him.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Thus says the LORD of hosts: The people of Israel are oppressed, and so too are the people of Judah; all their captors have held them fast and refuse to let them go.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Their Redeemer is strong; the LORD of hosts is his name. He will surely plead their cause, that he may give rest to the earth, but unrest to the inhabitants of Babylon.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> A sword against the Chaldeans, says the LORD, and against the inhabitants of Babylon, and against her officials and her sages!</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> A sword against the diviners, so that they may become fools! A sword against her warriors, so that they may be destroyed!</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> A sword against her horses and against her chariots, and against all the foreign troops in her midst, so that they may become women! A sword against all her treasures, that they may be plundered! </VERS>\r\n\t\t\t<VERS vnumber=\"38\"> A drought against her waters, that they may be dried up! For it is a land of images, and they go mad over idols. </VERS>\r\n\t\t\t<VERS vnumber=\"39\"> Therefore wild animals shall live with hyenas in Babylon, and ostriches shall inhabit her; she shall never again be peopled, or inhabited for all generations. </VERS>\r\n\t\t\t<VERS vnumber=\"40\"> As when God overthrew Sodom and Gomorrah and their neighbors, says the LORD, so no one shall live there, nor shall anyone settle in her.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> Look, a people is coming from the north; a mighty nation and many kings are stirring from the farthest parts of the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> They wield bow and spear, they are cruel and have no mercy. The sound of them is like the roaring sea; they ride upon horses, set in array as a warrior for battle, against you, O daughter Babylon!</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> The king of Babylon heard news of them, and his hands fell helpless; anguish seized him, pain like that of a woman in labor.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> Like a lion coming up from the thickets of the Jordan against a perennial pasture, I will suddenly chase them away from her; and I will appoint over her whomever I choose. For who is like me? Who can summon me? Who is the shepherd who can stand before me? </VERS>\r\n\t\t\t<VERS vnumber=\"45\"> Therefore hear the plan that the LORD has made against Babylon, and the purposes that he has formed against the land of the Chaldeans: Surely the little ones of the flock shall be dragged away; surely their fold shall be appalled at their fate. </VERS>\r\n\t\t\t<VERS vnumber=\"46\"> At the sound of the capture of Babylon the earth shall tremble, and her cry shall be heard among the nations.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"51\">\r\n\t\t\t<VERS vnumber=\"1\"> Thus says the LORD: I am going to stir up a destructive wind against Babylon and against the inhabitants of Leb-qamai; </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> and I will send winnowers to Babylon, and they shall winnow her. They shall empty her land when they come against her from every side on the day of trouble.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Let not the archer bend his bow, and let him not array himself in his coat of mail. Do not spare her young men; utterly destroy her entire army.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> They shall fall down slain in the land of the Chaldeans, and wounded in her streets.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Israel and Judah have not been forsaken by their God, the LORD of hosts, though their land is full of guilt before the Holy One of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Flee from the midst of Babylon, save your lives, each of you! Do not perish because of her guilt, for this is the time of the LORD's vengeance; he is repaying her what is due.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Babylon was a golden cup in the LORD's hand, making all the earth drunken; the nations drank of her wine, and so the nations went mad.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Suddenly Babylon has fallen and is shattered; wail for her! Bring balm for her wound; perhaps she may be healed.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> We tried to heal Babylon, but she could not be healed. Forsake her, and let each of us go to our own country; for her judgment has reached up to heaven and has been lifted up even to the skies.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The LORD has brought forth our vindication; come, let us declare in Zion the work of the LORD our God.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Sharpen the arrows! Fill the quivers! The LORD has stirred up the spirit of the kings of the Medes, because his purpose concerning Babylon is to destroy it, for that is the vengeance of the LORD, vengeance for his temple.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Raise a standard against the walls of Babylon; make the watch strong; post sentinels; prepare the ambushes; for the LORD has both planned and done what he spoke concerning the inhabitants of Babylon.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> You who live by mighty waters, rich in treasures, your end has come, the thread of your life is cut.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The LORD of hosts has sworn by himself: Surely I will fill you with troops like a swarm of locusts, and they shall raise a shout of victory over you.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> It is he who made the earth by his power, who established the world by his wisdom, and by his understanding stretched out the heavens.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> When he utters his voice there is a tumult of waters in the heavens, and he makes the mist rise from the ends of the earth. He makes lightnings for the rain, and he brings out the wind from his storehouses.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Everyone is stupid and without knowledge; goldsmiths are all put to shame by their idols; for their images are false, and there is no breath in them.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> They are worthless, a work of delusion; at the time of their punishment they shall perish.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Not like these is the LORD, the portion of Jacob, for he is the one who formed all things, and Israel is the tribe of his inheritance; the LORD of hosts is his name. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> You are my war club, my weapon of battle: with you I smash nations; with you I destroy kingdoms;</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> with you I smash the horse and its rider; with you I smash the chariot and the charioteer;</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> with you I smash man and woman; with you I smash the old man and the boy; with you I smash the young man and the girl;</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> with you I smash shepherds and their flocks; with you I smash farmers and their teams; with you I smash governors and deputies.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> I will repay Babylon and all the inhabitants of Chaldea before your very eyes for all the wrong that they have done in Zion, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> I am against you, O destroying mountain, says the LORD, that destroys the whole earth; I will stretch out my hand against you, and roll you down from the crags, and make you a burned-out mountain.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> No stone shall be taken from you for a corner and no stone for a foundation, but you shall be a perpetual waste, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Raise a standard in the land, blow the trumpet among the nations; prepare the nations for war against her, summon against her the kingdoms, Ararat, Minni, and Ashkenaz; appoint a marshal against her, bring up horses like bristling locusts.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Prepare the nations for war against her, the kings of the Medes, with their governors and deputies, and every land under their dominion.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> The land trembles and writhes, for the LORD's purposes against Babylon stand, to make the land of Babylon a desolation, without inhabitant.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> The warriors of Babylon have given up fighting, they remain in their strongholds; their strength has failed, they have become women; her buildings are set on fire, her bars are broken.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> One runner runs to meet another, and one messenger to meet another, to tell the king of Babylon that his city is taken from end to end:</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> the fords have been seized, the marshes have been burned with fire, and the soldiers are in panic.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> For thus says the LORD of hosts, the God of Israel: Daughter Babylon is like a threshing floor at the time when it is trodden; yet a little while and the time of her harvest will come.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> \"King Nebuchadrezzar of Babylon has devoured me, he has crushed me; he has made me an empty vessel, he has swallowed me like a monster; he has filled his belly with my delicacies, he has spewed me out.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> May my torn flesh be avenged on Babylon,\" the inhabitants of Zion shall say. \"May my blood be avenged on the inhabitants of Chaldea,\" Jerusalem shall say.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Therefore thus says the LORD: I am going to defend your cause and take vengeance for you. I will dry up her sea and make her fountain dry;</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> and Babylon shall become a heap of ruins, a den of jackals, an object of horror and of hissing, without inhabitant.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Like lions they shall roar together; they shall growl like lions' whelps.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> When they are inflamed, I will set out their drink and make them drunk, until they become merry and then sleep a perpetual sleep and never wake, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> I will bring them down like lambs to the slaughter, like rams and goats.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> How Sheshach is taken, the pride of the whole earth seized! How Babylon has become an object of horror among the nations! </VERS>\r\n\t\t\t<VERS vnumber=\"42\"> The sea has risen over Babylon; she has been covered by its tumultuous waves.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> Her cities have become an object of horror, a land of drought and a desert, a land in which no one lives, and through which no mortal passes.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> I will punish Bel in Babylon, and make him disgorge what he has swallowed. The nations shall no longer stream to him; the wall of Babylon has fallen.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> Come out of her, my people! Save your lives, each of you, from the fierce anger of the LORD!</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> Do not be fainthearted or fearful at the rumors heard in the land-- one year one rumor comes, the next year another, rumors of violence in the land and of ruler against ruler.</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> Assuredly, the days are coming when I will punish the images of Babylon; her whole land shall be put to shame, and all her slain shall fall in her midst.</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> Then the heavens and the earth, and all that is in them, shall shout for joy over Babylon; for the destroyers shall come against them out of the north, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> Babylon must fall for the slain of Israel, as the slain of all the earth have fallen because of Babylon.</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> You survivors of the sword, go, do not linger! Remember the LORD in a distant land, and let Jerusalem come into your mind:</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> We are put to shame, for we have heard insults; dishonor has covered our face, for aliens have come into the holy places of the LORD's house.</VERS>\r\n\t\t\t<VERS vnumber=\"52\"> Therefore the time is surely coming, says the LORD, when I will punish her idols, and through all her land the wounded shall groan.</VERS>\r\n\t\t\t<VERS vnumber=\"53\"> Though Babylon should mount up to heaven, and though she should fortify her strong height, from me destroyers would come upon her, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"54\"> Listen!-- a cry from Babylon! A great crashing from the land of the Chaldeans!</VERS>\r\n\t\t\t<VERS vnumber=\"55\"> For the LORD is laying Babylon waste, and stilling her loud clamor. Their waves roar like mighty waters, the sound of their clamor resounds;</VERS>\r\n\t\t\t<VERS vnumber=\"56\"> for a destroyer has come against her, against Babylon; her warriors are taken, their bows are broken; for the LORD is a God of recompense, he will repay in full.</VERS>\r\n\t\t\t<VERS vnumber=\"57\"> I will make her officials and her sages drunk, also her governors, her deputies, and her warriors; they shall sleep a perpetual sleep and never wake, says the King, whose name is the LORD of hosts.</VERS>\r\n\t\t\t<VERS vnumber=\"58\"> Thus says the LORD of hosts: The broad wall of Babylon shall be leveled to the ground, and her high gates shall be burned with fire. The peoples exhaust themselves for nothing, and the nations weary themselves only for fire. </VERS>\r\n\t\t\t<VERS vnumber=\"59\"> The word that the prophet Jeremiah commanded Seraiah son of Neriah son of Mahseiah, when he went with King Zedekiah of Judah to Babylon, in the fourth year of his reign. Seraiah was the quartermaster.</VERS>\r\n\t\t\t<VERS vnumber=\"60\"> Jeremiah wrote in a scroll all the disasters that would come on Babylon, all these words that are written concerning Babylon. </VERS>\r\n\t\t\t<VERS vnumber=\"61\"> And Jeremiah said to Seraiah: \"When you come to Babylon, see that you read all these words,</VERS>\r\n\t\t\t<VERS vnumber=\"62\"> and say, 'O LORD, you yourself threatened to destroy this place so that neither human beings nor animals shall live in it, and it shall be desolate forever.'</VERS>\r\n\t\t\t<VERS vnumber=\"63\"> When you finish reading this scroll, tie a stone to it, and throw it into the middle of the Euphrates,</VERS>\r\n\t\t\t<VERS vnumber=\"64\"> and say, 'Thus shall Babylon sink, to rise no more, because of the disasters that I am bringing on her.'\" Thus far are the words of Jeremiah. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"52\">\r\n\t\t\t<VERS vnumber=\"1\"> Zedekiah was twenty-one years old when he began to reign; he reigned eleven years in Jerusalem. His mother's name was Hamutal daughter of Jeremiah of Libnah.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He did what was evil in the sight of the LORD, just as Jehoiakim had done.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Indeed, Jerusalem and Judah so angered the LORD that he expelled them from his presence. Zedekiah rebelled against the king of Babylon.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> And in the ninth year of his reign, in the tenth month, on the tenth day of the month, King Nebuchadrezzar of Babylon came with all his army against Jerusalem, and they laid siege to it; they built siegeworks against it all around.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> So the city was besieged until the eleventh year of King Zedekiah.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> On the ninth day of the fourth month the famine became so severe in the city that there was no food for the people of the land.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then a breach was made in the city wall; and all the soldiers fled and went out from the city by night by the way of the gate between the two walls, by the king's garden, though the Chaldeans were all around the city. They went in the direction of the Arabah. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But the army of the Chaldeans pursued the king, and overtook Zedekiah in the plains of Jericho; and all his army was scattered, deserting him.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then they captured the king, and brought him up to the king of Babylon at Riblah in the land of Hamath, and he passed sentence on him.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The king of Babylon killed the sons of Zedekiah before his eyes, and also killed all the officers of Judah at Riblah.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> He put out the eyes of Zedekiah, and bound him in fetters, and the king of Babylon took him to Babylon, and put him in prison until the day of his death.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> In the fifth month, on the tenth day of the month-- which was the nineteenth year of King Nebuchadrezzar, king of Babylon-- Nebuzaradan the captain of the bodyguard who served the king of Babylon, entered Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> He burned the house of the LORD, the king's house, and all the houses of Jerusalem; every great house he burned down.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> All the army of the Chaldeans, who were with the captain of the guard, broke down all the walls around Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Nebuzaradan the captain of the guard carried into exile some of the poorest of the people and the rest of the people who were left in the city and the deserters who had defected to the king of Babylon, together with the rest of the artisans.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> But Nebuzaradan the captain of the guard left some of the poorest people of the land to be vinedressers and tillers of the soil.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The pillars of bronze that were in the house of the LORD, and the stands and the bronze sea that were in the house of the LORD, the Chaldeans broke in pieces, and carried all the bronze to Babylon.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> They took away the pots, the shovels, the snuffers, the basins, the ladles, and all the vessels of bronze used in the temple service.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The captain of the guard took away the small bowls also, the firepans, the basins, the pots, the lampstands, the ladles, and the bowls for libation, both those of gold and those of silver.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> As for the two pillars, the one sea, the twelve bronze bulls that were under the sea, and the stands, which King Solomon had made for the house of the LORD, the bronze of all these vessels was beyond weighing. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> As for the pillars, the height of the one pillar was eighteen cubits, its circumference was twelve cubits; it was hollow and its thickness was four fingers.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Upon it was a capital of bronze; the height of the one capital was five cubits; latticework and pomegranates, all of bronze, encircled the top of the capital. And the second pillar had the same, with pomegranates.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> There were ninety-six pomegranates on the sides; all the pomegranates encircling the latticework numbered one hundred.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> The captain of the guard took the chief priest Seraiah, the second priest Zephaniah, and the three guardians of the threshold;</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> and from the city he took an officer who had been in command of the soldiers, and seven men of the king's council who were found in the city; the secretary of the commander of the army who mustered the people of the land; and sixty men of the people of the land who were found inside the city.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Then Nebuzaradan the captain of the guard took them, and brought them to the king of Babylon at Riblah.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> And the king of Babylon struck them down, and put them to death at Riblah in the land of Hamath. So Judah went into exile out of its land.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> This is the number of the people whom Nebuchadrezzar took into exile: in the seventh year, three thousand twenty-three Judeans;</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> in the eighteenth year of Nebuchadrezzar he took into exile from Jerusalem eight hundred thirty-two persons;</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> in the twenty-third year of Nebuchadrezzar, Nebuzaradan the captain of the guard took into exile of the Judeans seven hundred forty-five persons; all the persons were four thousand six hundred.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> In the thirty-seventh year of the exile of King Jehoiachin of Judah, in the twelfth month, on the twenty-fifth day of the month, King Evil-merodach of Babylon, in the year he began to reign, showed favor to King Jehoiachin of Judah and brought him out of prison;</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> he spoke kindly to him, and gave him a seat above the seats of the other kings who were with him in Babylon.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> So Jehoiachin put aside his prison clothes, and every day of his life he dined regularly at the king's table.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> For his allowance, a regular daily allowance was given him by the king of Babylon, as long as he lived, up to the day of his death.</VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"25\" bname=\"Lamentations\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> How lonely sits the city that once was full of people! How like a widow she has become, she that was great among the nations! She that was a princess among the provinces has become a vassal.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> She weeps bitterly in the night, with tears on her cheeks; among all her lovers she has no one to comfort her; all her friends have dealt treacherously with her, they have become her enemies.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Judah has gone into exile with suffering and hard servitude; she lives now among the nations, and finds no resting place; her pursuers have all overtaken her in the midst of her distress.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The roads to Zion mourn, for no one comes to the festivals; all her gates are desolate, her priests groan; her young girls grieve, and her lot is bitter. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Her foes have become the masters, her enemies prosper, because the LORD has made her suffer for the multitude of her transgressions; her children have gone away, captives before the foe.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> From daughter Zion has departed all her majesty. Her princes have become like stags that find no pasture; they fled without strength before the pursuer.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Jerusalem remembers, in the days of her affliction and wandering, all the precious things that were hers in days of old. When her people fell into the hand of the foe, and there was no one to help her, the foe looked on mocking over her downfall.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Jerusalem sinned grievously, so she has become a mockery; all who honored her despise her, for they have seen her nakedness; she herself groans, and turns her face away.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Her uncleanness was in her skirts; she took no thought of her future; her downfall was appalling, with none to comfort her. \"O LORD, look at my affliction, for the enemy has triumphed!\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Enemies have stretched out their hands over all her precious things; she has even seen the nations invade her sanctuary, those whom you forbade to enter your congregation.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> All her people groan as they search for bread; they trade their treasures for food to revive their strength. Look, O LORD, and see how worthless I have become.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Is it nothing to you, all you who pass by? Look and see if there is any sorrow like my sorrow, which was brought upon me, which the LORD inflicted on the day of his fierce anger. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> From on high he sent fire; it went deep into my bones; he spread a net for my feet; he turned me back; he has left me stunned, faint all day long.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> My transgressions were bound into a yoke; by his hand they were fastened together; they weigh on my neck, sapping my strength; the Lord handed me over to those whom I cannot withstand. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The LORD has rejected all my warriors in the midst of me; he proclaimed a time against me to crush my young men; the Lord has trodden as in a wine press the virgin daughter Judah.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> For these things I weep; my eyes flow with tears; for a comforter is far from me, one to revive my courage; my children are desolate, for the enemy has prevailed.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Zion stretches out her hands, but there is no one to comfort her; the LORD has commanded against Jacob that his neighbors should become his foes; Jerusalem has become a filthy thing among them.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The LORD is in the right, for I have rebelled against his word; but hear, all you peoples, and behold my suffering; my young women and young men have gone into captivity.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> I called to my lovers but they deceived me; my priests and elders perished in the city while seeking food to revive their strength.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> See, O LORD, how distressed I am; my stomach churns, my heart is wrung within me, because I have been very rebellious. In the street the sword bereaves; in the house it is like death.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> They heard how I was groaning, with no one to comfort me. All my enemies heard of my trouble; they are glad that you have done it. Bring on the day you have announced, and let them be as I am.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Let all their evil doing come before you; and deal with them as you have dealt with me because of all my transgressions; for my groans are many and my heart is faint.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> How the Lord in his anger has humiliated daughter Zion! He has thrown down from heaven to earth the splendor of Israel; he has not remembered his footstool in the day of his anger. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The Lord has destroyed without mercy all the dwellings of Jacob; in his wrath he has broken down the strongholds of daughter Judah; he has brought down to the ground in dishonor the kingdom and its rulers.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> He has cut down in fierce anger all the might of Israel; he has withdrawn his right hand from them in the face of the enemy; he has burned like a flaming fire in Jacob, consuming all around.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> He has bent his bow like an enemy, with his right hand set like a foe; he has killed all in whom we took pride in the tent of daughter Zion; he has poured out his fury like fire.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The Lord has become like an enemy; he has destroyed Israel; He has destroyed all its palaces, laid in ruins its strongholds, and multiplied in daughter Judah mourning and lamentation.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> He has broken down his booth like a garden, he has destroyed his tabernacle; the LORD has abolished in Zion festival and sabbath, and in his fierce indignation has spurned king and priest.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The Lord has scorned his altar, disowned his sanctuary; he has delivered into the hand of the enemy the walls of her palaces; a clamor was raised in the house of the LORD as on a day of festival.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The LORD determined to lay in ruins the wall of daughter Zion; he stretched the line; he did not withhold his hand from destroying; he caused rampart and wall to lament; they languish together.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Her gates have sunk into the ground; he has ruined and broken her bars; her king and princes are among the nations; guidance is no more, and her prophets obtain no vision from the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The elders of daughter Zion sit on the ground in silence; they have thrown dust on their heads and put on sackcloth; the young girls of Jerusalem have bowed their heads to the ground.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> My eyes are spent with weeping; my stomach churns; my bile is poured out on the ground because of the destruction of my people, because infants and babes faint in the streets of the city.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> They cry to their mothers, \"Where is bread and wine?\" as they faint like the wounded in the streets of the city, as their life is poured out on their mothers' bosom.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> What can I say for you, to what compare you, O daughter Jerusalem? To what can I liken you, that I may comfort you, O virgin daughter Zion? For vast as the sea is your ruin; who can heal you?</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Your prophets have seen for you false and deceptive visions; they have not exposed your iniquity to restore your fortunes, but have seen oracles for you that are false and misleading.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> All who pass along the way clap their hands at you; they hiss and wag their heads at daughter Jerusalem; \"Is this the city that was called the perfection of beauty, the joy of all the earth?\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> All your enemies open their mouths against you; they hiss, they gnash their teeth, they cry: \"We have devoured her! Ah, this is the day we longed for; at last we have seen it!\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The LORD has done what he purposed, he has carried out his threat; as he ordained long ago, he has demolished without pity; he has made the enemy rejoice over you, and exalted the might of your foes.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Cry aloud to the Lord! O wall of daughter Zion! Let tears stream down like a torrent day and night! Give yourself no rest, your eyes no respite! </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Arise, cry out in the night, at the beginning of the watches! Pour out your heart like water before the presence of the Lord! Lift your hands to him for the lives of your children, who faint for hunger at the head of every street.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Look, O LORD, and consider! To whom have you done this? Should women eat their offspring, the children they have borne? Should priest and prophet be killed in the sanctuary of the Lord?</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> The young and the old are lying on the ground in the streets; my young women and my young men have fallen by the sword; in the day of your anger you have killed them, slaughtering without mercy.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> You invited my enemies from all around as if for a day of festival; and on the day of the anger of the LORD no one escaped or survived; those whom I bore and reared my enemy has destroyed.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> I am one who has seen affliction under the rod of God's wrath;</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> he has driven and brought me into darkness without any light;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> against me alone he turns his hand, again and again, all day long.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> He has made my flesh and my skin waste away, and broken my bones;</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> he has besieged and enveloped me with bitterness and tribulation;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> he has made me sit in darkness like the dead of long ago.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> He has walled me about so that I cannot escape; he has put heavy chains on me;</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> though I call and cry for help, he shuts out my prayer;</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> he has blocked my ways with hewn stones, he has made my paths crooked.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> He is a bear lying in wait for me, a lion in hiding;</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> he led me off my way and tore me to pieces; he has made me desolate;</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> he bent his bow and set me as a mark for his arrow.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> He shot into my vitals the arrows of his quiver;</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> I have become the laughingstock of all my people, the object of their taunt-songs all day long.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> He has filled me with bitterness, he has sated me with wormwood.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> He has made my teeth grind on gravel, and made me cower in ashes;</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> my soul is bereft of peace; I have forgotten what happiness is;</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> so I say, \"Gone is my glory, and all that I had hoped for from the LORD.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The thought of my affliction and my homelessness is wormwood and gall!</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> My soul continually thinks of it and is bowed down within me.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> But this I call to mind, and therefore I have hope:</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The steadfast love of the LORD never ceases, his mercies never come to an end; </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> they are new every morning; great is your faithfulness.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> \"The LORD is my portion,\" says my soul, \"therefore I will hope in him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> The LORD is good to those who wait for him, to the soul that seeks him.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> It is good that one should wait quietly for the salvation of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> It is good for one to bear the yoke in youth,</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> to sit alone in silence when the Lord has imposed it,</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> to put one's mouth to the dust (there may yet be hope),</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> to give one's cheek to the smiter, and be filled with insults.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> For the Lord will not reject forever.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Although he causes grief, he will have compassion according to the abundance of his steadfast love;</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> for he does not willingly afflict or grieve anyone.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> When all the prisoners of the land are crushed under foot,</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> when human rights are perverted in the presence of the Most High,</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> when one's case is subverted-- does the Lord not see it?</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Who can command and have it done, if the Lord has not ordained it?</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Is it not from the mouth of the Most High that good and bad come?</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> Why should any who draw breath complain about the punishment of their sins?</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> Let us test and examine our ways, and return to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> Let us lift up our hearts as well as our hands to God in heaven.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> We have transgressed and rebelled, and you have not forgiven.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> You have wrapped yourself with anger and pursued us, killing without pity;</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> you have wrapped yourself with a cloud so that no prayer can pass through.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> You have made us filth and rubbish among the peoples.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> All our enemies have opened their mouths against us;</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> panic and pitfall have come upon us, devastation and destruction.</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> My eyes flow with rivers of tears because of the destruction of my people.</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> My eyes will flow without ceasing, without respite,</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> until the LORD from heaven looks down and sees.</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> My eyes cause me grief at the fate of all the young women in my city.</VERS>\r\n\t\t\t<VERS vnumber=\"52\"> Those who were my enemies without cause have hunted me like a bird;</VERS>\r\n\t\t\t<VERS vnumber=\"53\"> they flung me alive into a pit and hurled stones on me;</VERS>\r\n\t\t\t<VERS vnumber=\"54\"> water closed over my head; I said, \"I am lost.\"</VERS>\r\n\t\t\t<VERS vnumber=\"55\"> I called on your name, O LORD, from the depths of the pit;</VERS>\r\n\t\t\t<VERS vnumber=\"56\"> you heard my plea, \"Do not close your ear to my cry for help, but give me relief!\"</VERS>\r\n\t\t\t<VERS vnumber=\"57\"> You came near when I called on you; you said, \"Do not fear!\"</VERS>\r\n\t\t\t<VERS vnumber=\"58\"> You have taken up my cause, O Lord, you have redeemed my life.</VERS>\r\n\t\t\t<VERS vnumber=\"59\"> You have seen the wrong done to me, O LORD; judge my cause.</VERS>\r\n\t\t\t<VERS vnumber=\"60\"> You have seen all their malice, all their plots against me.</VERS>\r\n\t\t\t<VERS vnumber=\"61\"> You have heard their taunts, O LORD, all their plots against me.</VERS>\r\n\t\t\t<VERS vnumber=\"62\"> The whispers and murmurs of my assailants are against me all day long.</VERS>\r\n\t\t\t<VERS vnumber=\"63\"> Whether they sit or rise-- see, I am the object of their taunt-songs.</VERS>\r\n\t\t\t<VERS vnumber=\"64\"> Pay them back for their deeds, O LORD, according to the work of their hands!</VERS>\r\n\t\t\t<VERS vnumber=\"65\"> Give them anguish of heart; your curse be on them!</VERS>\r\n\t\t\t<VERS vnumber=\"66\"> Pursue them in anger and destroy them from under the LORD's heavens.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> How the gold has grown dim, how the pure gold is changed! The sacred stones lie scattered at the head of every street.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The precious children of Zion, worth their weight in fine gold-- how they are reckoned as earthen pots, the work of a potter's hands!</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Even the jackals offer the breast and nurse their young, but my people has become cruel, like the ostriches in the wilderness.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The tongue of the infant sticks to the roof of its mouth for thirst; the children beg for food, but no one gives them anything.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Those who feasted on delicacies perish in the streets; those who were brought up in purple cling to ash heaps.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For the chastisement of my people has been greater than the punishment of Sodom, which was overthrown in a moment, though no hand was laid on it. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Her princes were purer than snow, whiter than milk; their bodies were more ruddy than coral, their hair like sapphire. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Now their visage is blacker than soot; they are not recognized in the streets. Their skin has shriveled on their bones; it has become as dry as wood.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Happier were those pierced by the sword than those pierced by hunger, whose life drains away, deprived of the produce of the field.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The hands of compassionate women have boiled their own children; they became their food in the destruction of my people.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The LORD gave full vent to his wrath; he poured out his hot anger, and kindled a fire in Zion that consumed its foundations.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The kings of the earth did not believe, nor did any of the inhabitants of the world, that foe or enemy could enter the gates of Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> It was for the sins of her prophets and the iniquities of her priests, who shed the blood of the righteous in the midst of her.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Blindly they wandered through the streets, so defiled with blood that no one was able to touch their garments.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> \"Away! Unclean!\" people shouted at them; \"Away! Away! Do not touch!\" So they became fugitives and wanderers; it was said among the nations, \"They shall stay here no longer.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The LORD himself has scattered them, he will regard them no more; no honor was shown to the priests, no favor to the elders.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Our eyes failed, ever watching vainly for help; we were watching eagerly for a nation that could not save.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> They dogged our steps so that we could not walk in our streets; our end drew near; our days were numbered; for our end had come.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Our pursuers were swifter than the eagles in the heavens; they chased us on the mountains, they lay in wait for us in the wilderness.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The LORD's anointed, the breath of our life, was taken in their pits-- the one of whom we said, \"Under his shadow we shall live among the nations.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Rejoice and be glad, O daughter Edom, you that live in the land of Uz; but to you also the cup shall pass; you shall become drunk and strip yourself bare.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The punishment of your iniquity, O daughter Zion, is accomplished, he will keep you in exile no longer; but your iniquity, O daughter Edom, he will punish, he will uncover your sins.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"5\">\r\n\t\t\t<VERS vnumber=\"1\"> Remember, O LORD, what has befallen us; look, and see our disgrace!</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Our inheritance has been turned over to strangers, our homes to aliens.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> We have become orphans, fatherless; our mothers are like widows.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> We must pay for the water we drink; the wood we get must be bought.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> With a yoke on our necks we are hard driven; we are weary, we are given no rest. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> We have made a pact with Egypt and Assyria, to get enough bread. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Our ancestors sinned; they are no more, and we bear their iniquities.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Slaves rule over us; there is no one to deliver us from their hand.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> We get our bread at the peril of our lives, because of the sword in the wilderness.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Our skin is black as an oven from the scorching heat of famine.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Women are raped in Zion, virgins in the towns of Judah.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Princes are hung up by their hands; no respect is shown to the elders.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Young men are compelled to grind, and boys stagger under loads of wood.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The old men have left the city gate, the young men their music.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The joy of our hearts has ceased; our dancing has been turned to mourning.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The crown has fallen from our head; woe to us, for we have sinned!</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Because of this our hearts are sick, because of these things our eyes have grown dim:</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> because of Mount Zion, which lies desolate; jackals prowl over it.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> But you, O LORD, reign forever; your throne endures to all generations.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Why have you forgotten us completely? Why have you forsaken us these many days?</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Restore us to yourself, O LORD, that we may be restored; renew our days as of old--</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> unless you have utterly rejected us, and are angry with us beyond measure.</VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"26\" bname=\"Ezekiel\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> In the thirtieth year, in the fourth month, on the fifth day of the month, as I was among the exiles by the river Chebar, the heavens were opened, and I saw visions of God.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> On the fifth day of the month (it was the fifth year of the exile of King Jehoiachin),</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> the word of the LORD came to the priest Ezekiel son of Buzi, in the land of the Chaldeans by the river Chebar; and the hand of the LORD was on him there.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> As I looked, a stormy wind came out of the north: a great cloud with brightness around it and fire flashing forth continually, and in the middle of the fire, something like gleaming amber.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> In the middle of it was something like four living creatures. This was their appearance: they were of human form.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Each had four faces, and each of them had four wings.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Their legs were straight, and the soles of their feet were like the sole of a calf's foot; and they sparkled like burnished bronze.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Under their wings on their four sides they had human hands. And the four had their faces and their wings thus:</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> their wings touched one another; each of them moved straight ahead, without turning as they moved.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> As for the appearance of their faces: the four had the face of a human being, the face of a lion on the right side, the face of an ox on the left side, and the face of an eagle;</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> such were their faces. Their wings were spread out above; each creature had two wings, each of which touched the wing of another, while two covered their bodies.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Each moved straight ahead; wherever the spirit would go, they went, without turning as they went.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> In the middle of the living creatures there was something that looked like burning coals of fire, like torches moving to and fro among the living creatures; the fire was bright, and lightning issued from the fire. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The living creatures darted to and fro, like a flash of lightning.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> As I looked at the living creatures, I saw a wheel on the earth beside the living creatures, one for each of the four of them. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> As for the appearance of the wheels and their construction: their appearance was like the gleaming of beryl; and the four had the same form, their construction being something like a wheel within a wheel.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> When they moved, they moved in any of the four directions without veering as they moved.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Their rims were tall and awesome, for the rims of all four were full of eyes all around.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> When the living creatures moved, the wheels moved beside them; and when the living creatures rose from the earth, the wheels rose.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Wherever the spirit would go, they went, and the wheels rose along with them; for the spirit of the living creatures was in the wheels.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> When they moved, the others moved; when they stopped, the others stopped; and when they rose from the earth, the wheels rose along with them; for the spirit of the living creatures was in the wheels.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Over the heads of the living creatures there was something like a dome, shining like crystal, spread out above their heads. </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Under the dome their wings were stretched out straight, one toward another; and each of the creatures had two wings covering its body.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> When they moved, I heard the sound of their wings like the sound of mighty waters, like the thunder of the Almighty, a sound of tumult like the sound of an army; when they stopped, they let down their wings. </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> And there came a voice from above the dome over their heads; when they stopped, they let down their wings.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> And above the dome over their heads there was something like a throne, in appearance like sapphire; and seated above the likeness of a throne was something that seemed like a human form. </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Upward from what appeared like the loins I saw something like gleaming amber, something that looked like fire enclosed all around; and downward from what looked like the loins I saw something that looked like fire, and there was a splendor all around.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Like the bow in a cloud on a rainy day, such was the appearance of the splendor all around. This was the appearance of the likeness of the glory of the LORD. When I saw it, I fell on my face, and I heard the voice of someone speaking.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> He said to me: O mortal, stand up on your feet, and I will speak with you. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And when he spoke to me, a spirit entered into me and set me on my feet; and I heard him speaking to me.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> He said to me, Mortal, I am sending you to the people of Israel, to a nation of rebels who have rebelled against me; they and their ancestors have transgressed against me to this very day.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The descendants are impudent and stubborn. I am sending you to them, and you shall say to them, \"Thus says the Lord GOD.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Whether they hear or refuse to hear (for they are a rebellious house), they shall know that there has been a prophet among them.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And you, O mortal, do not be afraid of them, and do not be afraid of their words, though briers and thorns surround you and you live among scorpions; do not be afraid of their words, and do not be dismayed at their looks, for they are a rebellious house.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> You shall speak my words to them, whether they hear or refuse to hear; for they are a rebellious house.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But you, mortal, hear what I say to you; do not be rebellious like that rebellious house; open your mouth and eat what I give you.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> I looked, and a hand was stretched out to me, and a written scroll was in it.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> He spread it before me; it had writing on the front and on the back, and written on it were words of lamentation and mourning and woe.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> He said to me, O mortal, eat what is offered to you; eat this scroll, and go, speak to the house of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> So I opened my mouth, and he gave me the scroll to eat.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> He said to me, Mortal, eat this scroll that I give you and fill your stomach with it. Then I ate it; and in my mouth it was as sweet as honey.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> He said to me: Mortal, go to the house of Israel and speak my very words to them.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> For you are not sent to a people of obscure speech and difficult language, but to the house of Israel--</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> not to many peoples of obscure speech and difficult language, whose words you cannot understand. Surely, if I sent you to them, they would listen to you.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But the house of Israel will not listen to you, for they are not willing to listen to me; because all the house of Israel have a hard forehead and a stubborn heart.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> See, I have made your face hard against their faces, and your forehead hard against their foreheads.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Like the hardest stone, harder than flint, I have made your forehead; do not fear them or be dismayed at their looks, for they are a rebellious house.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> He said to me: Mortal, all my words that I shall speak to you receive in your heart and hear with your ears;</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> then go to the exiles, to your people, and speak to them. Say to them, \"Thus says the Lord GOD\"; whether they hear or refuse to hear.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then the spirit lifted me up, and as the glory of the LORD rose from its place, I heard behind me the sound of loud rumbling; </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> it was the sound of the wings of the living creatures brushing against one another, and the sound of the wheels beside them, that sounded like a loud rumbling.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The spirit lifted me up and bore me away; I went in bitterness in the heat of my spirit, the hand of the LORD being strong upon me.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> I came to the exiles at Tel-abib, who lived by the river Chebar. And I sat there among them, stunned, for seven days. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> At the end of seven days, the word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Mortal, I have made you a sentinel for the house of Israel; whenever you hear a word from my mouth, you shall give them warning from me.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> If I say to the wicked, \"You shall surely die,\" and you give them no warning, or speak to warn the wicked from their wicked way, in order to save their life, those wicked persons shall die for their iniquity; but their blood I will require at your hand.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> But if you warn the wicked, and they do not turn from their wickedness, or from their wicked way, they shall die for their iniquity; but you will have saved your life.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Again, if the righteous turn from their righteousness and commit iniquity, and I lay a stumbling block before them, they shall die; because you have not warned them, they shall die for their sin, and their righteous deeds that they have done shall not be remembered; but their blood I will require at your hand.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> If, however, you warn the righteous not to sin, and they do not sin, they shall surely live, because they took warning; and you will have saved your life.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Then the hand of the LORD was upon me there; and he said to me, Rise up, go out into the valley, and there I will speak with you.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> So I rose up and went out into the valley; and the glory of the LORD stood there, like the glory that I had seen by the river Chebar; and I fell on my face.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> The spirit entered into me, and set me on my feet; and he spoke with me and said to me: Go, shut yourself inside your house.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> As for you, mortal, cords shall be placed on you, and you shall be bound with them, so that you cannot go out among the people;</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> and I will make your tongue cling to the roof of your mouth, so that you shall be speechless and unable to reprove them; for they are a rebellious house.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> But when I speak with you, I will open your mouth, and you shall say to them, \"Thus says the Lord GOD\"; let those who will hear, hear; and let those who refuse to hear, refuse; for they are a rebellious house.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> And you, O mortal, take a brick and set it before you. On it portray a city, Jerusalem;</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> and put siegeworks against it, and build a siege wall against it, and cast up a ramp against it; set camps also against it, and plant battering rams against it all around.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then take an iron plate and place it as an iron wall between you and the city; set your face toward it, and let it be in a state of siege, and press the siege against it. This is a sign for the house of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then lie on your left side, and place the punishment of the house of Israel upon it; you shall bear their punishment for the number of the days that you lie there.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> For I assign to you a number of days, three hundred ninety days, equal to the number of the years of their punishment; and so you shall bear the punishment of the house of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> When you have completed these, you shall lie down a second time, but on your right side, and bear the punishment of the house of Judah; forty days I assign you, one day for each year.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> You shall set your face toward the siege of Jerusalem, and with your arm bared you shall prophesy against it.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> See, I am putting cords on you so that you cannot turn from one side to the other until you have completed the days of your siege.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> And you, take wheat and barley, beans and lentils, millet and spelt; put them into one vessel, and make bread for yourself. During the number of days that you lie on your side, three hundred ninety days, you shall eat it.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The food that you eat shall be twenty shekels a day by weight; at fixed times you shall eat it.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> And you shall drink water by measure, one-sixth of a hin; at fixed times you shall drink.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> You shall eat it as a barley-cake, baking it in their sight on human dung.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The LORD said, \"Thus shall the people of Israel eat their bread, unclean, among the nations to which I will drive them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then I said, \"Ah Lord GOD! I have never defiled myself; from my youth up until now I have never eaten what died of itself or was torn by animals, nor has carrion flesh come into my mouth.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Then he said to me, \"See, I will let you have cow's dung instead of human dung, on which you may prepare your bread.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then he said to me, Mortal, I am going to break the staff of bread in Jerusalem; they shall eat bread by weight and with fearfulness; and they shall drink water by measure and in dismay.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Lacking bread and water, they will look at one another in dismay, and waste away under their punishment.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"5\">\r\n\t\t\t<VERS vnumber=\"1\"> And you, O mortal, take a sharp sword; use it as a barber's razor and run it over your head and your beard; then take balances for weighing, and divide the hair.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> One third of the hair you shall burn in the fire inside the city, when the days of the siege are completed; one third you shall take and strike with the sword all around the city; and one third you shall scatter to the wind, and I will unsheathe the sword after them. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then you shall take from these a small number, and bind them in the skirts of your robe.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> From these, again, you shall take some, throw them into the fire and burn them up; from there a fire will come out against all the house of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Thus says the Lord GOD: This is Jerusalem; I have set her in the center of the nations, with countries all around her.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> But she has rebelled against my ordinances and my statutes, becoming more wicked than the nations and the countries all around her, rejecting my ordinances and not following my statutes.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Therefore thus says the Lord GOD: Because you are more turbulent than the nations that are all around you, and have not followed my statutes or kept my ordinances, but have acted according to the ordinances of the nations that are all around you;</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> therefore thus says the Lord GOD: I, I myself, am coming against you; I will execute judgments among you in the sight of the nations.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> And because of all your abominations, I will do to you what I have never yet done, and the like of which I will never do again.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Surely, parents shall eat their children in your midst, and children shall eat their parents; I will execute judgments on you, and any of you who survive I will scatter to every wind.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Therefore, as I live, says the Lord GOD, surely, because you have defiled my sanctuary with all your detestable things and with all your abominations-- therefore I will cut you down; my eye will not spare, and I will have no pity.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> One third of you shall die of pestilence or be consumed by famine among you; one third shall fall by the sword around you; and one third I will scatter to every wind and will unsheathe the sword after them.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> My anger shall spend itself, and I will vent my fury on them and satisfy myself; and they shall know that I, the LORD, have spoken in my jealousy, when I spend my fury on them.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Moreover I will make you a desolation and an object of mocking among the nations around you, in the sight of all that pass by.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> You shall be a mockery and a taunt, a warning and a horror, to the nations around you, when I execute judgments on you in anger and fury, and with furious punishments-- I, the LORD, have spoken--</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> when I loose against you my deadly arrows of famine, arrows for destruction, which I will let loose to destroy you, and when I bring more and more famine upon you, and break your staff of bread.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> I will send famine and wild animals against you, and they will rob you of your children; pestilence and bloodshed shall pass through you; and I will bring the sword upon you. I, the LORD, have spoken.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"6\">\r\n\t\t\t<VERS vnumber=\"1\"> The word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> O mortal, set your face toward the mountains of Israel, and prophesy against them,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> and say, You mountains of Israel, hear the word of the Lord GOD! Thus says the Lord GOD to the mountains and the hills, to the ravines and the valleys: I, I myself will bring a sword upon you, and I will destroy your high places.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Your altars shall become desolate, and your incense stands shall be broken; and I will throw down your slain in front of your idols.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> I will lay the corpses of the people of Israel in front of their idols; and I will scatter your bones around your altars.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Wherever you live, your towns shall be waste and your high places ruined, so that your altars will be waste and ruined, your idols broken and destroyed, your incense stands cut down, and your works wiped out. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The slain shall fall in your midst; then you shall know that I am the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But I will spare some. Some of you shall escape the sword among the nations and be scattered through the countries.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Those of you who escape shall remember me among the nations where they are carried captive, how I was crushed by their wanton heart that turned away from me, and their wanton eyes that turned after their idols. Then they will be loathsome in their own sight for the evils that they have committed, for all their abominations.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And they shall know that I am the LORD; I did not threaten in vain to bring this disaster upon them.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Thus says the Lord GOD: Clap your hands and stamp your foot, and say, Alas for all the vile abominations of the house of Israel! For they shall fall by the sword, by famine, and by pestilence.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Those far off shall die of pestilence; those nearby shall fall by the sword; and any who are left and are spared shall die of famine. Thus I will spend my fury upon them.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And you shall know that I am the LORD, when their slain lie among their idols around their altars, on every high hill, on all the mountain tops, under every green tree, and under every leafy oak, wherever they offered pleasing odor to all their idols.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> I will stretch out my hand against them, and make the land desolate and waste, throughout all their settlements, from the wilderness to Riblah. Then they shall know that I am the LORD. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"7\">\r\n\t\t\t<VERS vnumber=\"1\"> The word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> You, O mortal, thus says the Lord GOD to the land of Israel: An end! The end has come upon the four corners of the land.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Now the end is upon you, I will let loose my anger upon you; I will judge you according to your ways, I will punish you for all your abominations.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> My eye will not spare you, I will have no pity. I will punish you for your ways, while your abominations are among you. Then you shall know that I am the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Thus says the Lord GOD: Disaster after disaster! See, it comes.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> An end has come, the end has come. It has awakened against you; see, it comes!</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Your doom has come to you, O inhabitant of the land. The time has come, the day is near-- of tumult, not of reveling on the mountains.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Soon now I will pour out my wrath upon you; I will spend my anger against you. I will judge you according to your ways, and punish you for all your abominations.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> My eye will not spare; I will have no pity. I will punish you according to your ways, while your abominations are among you. Then you shall know that it is I the LORD who strike.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> See, the day! See, it comes! Your doom has gone out. The rod has blossomed, pride has budded. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Violence has grown into a rod of wickedness. None of them shall remain, not their abundance, not their wealth; no pre-eminence among them. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The time has come, the day draws near; let not the buyer rejoice, nor the seller mourn, for wrath is upon all their multitude.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> For the sellers shall not return to what has been sold as long as they remain alive. For the vision concerns all their multitude; it shall not be revoked. Because of their iniquity, they cannot maintain their lives. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> They have blown the horn and made everything ready; but no one goes to battle, for my wrath is upon all their multitude.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The sword is outside, pestilence and famine are inside; those in the field die by the sword; those in the city-- famine and pestilence devour them.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> If any survivors escape, they shall be found on the mountains like doves of the valleys, all of them moaning over their iniquity.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> All hands shall grow feeble, all knees turn to water.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> They shall put on sackcloth, horror shall cover them. Shame shall be on all faces, baldness on all their heads.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> They shall fling their silver into the streets, their gold shall be treated as unclean. Their silver and gold cannot save them on the day of the wrath of the LORD. They shall not satisfy their hunger or fill their stomachs with it. For it was the stumbling block of their iniquity.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> From their beautiful ornament, in which they took pride, they made their abominable images, their detestable things; therefore I will make of it an unclean thing to them. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> I will hand it over to strangers as booty, to the wicked of the earth as plunder; they shall profane it.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> I will avert my face from them, so that they may profane my treasured place; the violent shall enter it, they shall profane it. </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Make a chain! For the land is full of bloody crimes; the city is full of violence. </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> I will bring the worst of the nations to take possession of their houses. I will put an end to the arrogance of the strong, and their holy places shall be profaned.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> When anguish comes, they will seek peace, but there shall be none.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Disaster comes upon disaster, rumor follows rumor; they shall keep seeking a vision from the prophet; instruction shall perish from the priest, and counsel from the elders.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> The king shall mourn, the prince shall be wrapped in despair, and the hands of the people of the land shall tremble. According to their way I will deal with them; according to their own judgments I will judge them. And they shall know that I am the LORD.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"8\">\r\n\t\t\t<VERS vnumber=\"1\"> In the sixth year, in the sixth month, on the fifth day of the month, as I sat in my house, with the elders of Judah sitting before me, the hand of the Lord GOD fell upon me there.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> I looked, and there was a figure that looked like a human being; below what appeared to be its loins it was fire, and above the loins it was like the appearance of brightness, like gleaming amber. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> It stretched out the form of a hand, and took me by a lock of my head; and the spirit lifted me up between earth and heaven, and brought me in visions of God to Jerusalem, to the entrance of the gateway of the inner court that faces north, to the seat of the image of jealousy, which provokes to jealousy.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> And the glory of the God of Israel was there, like the vision that I had seen in the valley.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then God said to me, \"O mortal, lift up your eyes now in the direction of the north.\" So I lifted up my eyes toward the north, and there, north of the altar gate, in the entrance, was this image of jealousy. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> He said to me, \"Mortal, do you see what they are doing, the great abominations that the house of Israel are committing here, to drive me far from my sanctuary? Yet you will see still greater abominations.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> And he brought me to the entrance of the court; I looked, and there was a hole in the wall.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then he said to me, \"Mortal, dig through the wall\"; and when I dug through the wall, there was an entrance.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> He said to me, \"Go in, and see the vile abominations that they are committing here.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> So I went in and looked; there, portrayed on the wall all around, were all kinds of creeping things, and loathsome animals, and all the idols of the house of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Before them stood seventy of the elders of the house of Israel, with Jaazaniah son of Shaphan standing among them. Each had his censer in his hand, and the fragrant cloud of incense was ascending.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then he said to me, \"Mortal, have you seen what the elders of the house of Israel are doing in the dark, each in his room of images? For they say, 'The LORD does not see us, the LORD has forsaken the land.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> He said also to me, \"You will see still greater abominations that they are committing.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then he brought me to the entrance of the north gate of the house of the LORD; women were sitting there weeping for Tammuz.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Then he said to me, \"Have you seen this, O mortal? You will see still greater abominations than these.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> And he brought me into the inner court of the house of the LORD; there, at the entrance of the temple of the LORD, between the porch and the altar, were about twenty-five men, with their backs to the temple of the LORD, and their faces toward the east, prostrating themselves to the sun toward the east.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then he said to me, \"Have you seen this, O mortal? Is it not bad enough that the house of Judah commits the abominations done here? Must they fill the land with violence, and provoke my anger still further? See, they are putting the branch to their nose!</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Therefore I will act in wrath; my eye will not spare, nor will I have pity; and though they cry in my hearing with a loud voice, I will not listen to them.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"9\">\r\n\t\t\t<VERS vnumber=\"1\"> Then he cried in my hearing with a loud voice, saying, \"Draw near, you executioners of the city, each with his destroying weapon in his hand.\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And six men came from the direction of the upper gate, which faces north, each with his weapon for slaughter in his hand; among them was a man clothed in linen, with a writing case at his side. They went in and stood beside the bronze altar.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Now the glory of the God of Israel had gone up from the cherub on which it rested to the threshold of the house. The LORD called to the man clothed in linen, who had the writing case at his side;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> and said to him, \"Go through the city, through Jerusalem, and put a mark on the foreheads of those who sigh and groan over all the abominations that are committed in it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> To the others he said in my hearing, \"Pass through the city after him, and kill; your eye shall not spare, and you shall show no pity.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Cut down old men, young men and young women, little children and women, but touch no one who has the mark. And begin at my sanctuary.\" So they began with the elders who were in front of the house.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then he said to them, \"Defile the house, and fill the courts with the slain. Go!\" So they went out and killed in the city.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> While they were killing, and I was left alone, I fell prostrate on my face and cried out, \"Ah Lord GOD! will you destroy all who remain of Israel as you pour out your wrath upon Jerusalem?\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> He said to me, \"The guilt of the house of Israel and Judah is exceedingly great; the land is full of bloodshed and the city full of perversity; for they say, 'The LORD has forsaken the land, and the LORD does not see.'</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> As for me, my eye will not spare, nor will I have pity, but I will bring down their deeds upon their heads.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then the man clothed in linen, with the writing case at his side, brought back word, saying, \"I have done as you commanded me.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"10\">\r\n\t\t\t<VERS vnumber=\"1\"> Then I looked, and above the dome that was over the heads of the cherubim there appeared above them something like a sapphire, in form resembling a throne. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He said to the man clothed in linen, \"Go within the wheelwork underneath the cherubim; fill your hands with burning coals from among the cherubim, and scatter them over the city.\" He went in as I looked on.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Now the cherubim were standing on the south side of the house when the man went in; and a cloud filled the inner court.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then the glory of the LORD rose up from the cherub to the threshold of the house; the house was filled with the cloud, and the court was full of the brightness of the glory of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The sound of the wings of the cherubim was heard as far as the outer court, like the voice of God Almighty when he speaks. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> When he commanded the man clothed in linen, \"Take fire from within the wheelwork, from among the cherubim,\" he went in and stood beside a wheel.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> And a cherub stretched out his hand from among the cherubim to the fire that was among the cherubim, took some of it and put it into the hands of the man clothed in linen, who took it and went out.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The cherubim appeared to have the form of a human hand under their wings.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> I looked, and there were four wheels beside the cherubim, one beside each cherub; and the appearance of the wheels was like gleaming beryl.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And as for their appearance, the four looked alike, something like a wheel within a wheel.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> When they moved, they moved in any of the four directions without veering as they moved; but in whatever direction the front wheel faced, the others followed without veering as they moved.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Their entire body, their rims, their spokes, their wings, and the wheels-- the wheels of the four of them-- were full of eyes all around.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> As for the wheels, they were called in my hearing \"the wheelwork.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Each one had four faces: the first face was that of the cherub, the second face was that of a human being, the third that of a lion, and the fourth that of an eagle.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The cherubim rose up. These were the living creatures that I saw by the river Chebar.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> When the cherubim moved, the wheels moved beside them; and when the cherubim lifted up their wings to rise up from the earth, the wheels at their side did not veer.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> When they stopped, the others stopped, and when they rose up, the others rose up with them; for the spirit of the living creatures was in them.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then the glory of the LORD went out from the threshold of the house and stopped above the cherubim.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The cherubim lifted up their wings and rose up from the earth in my sight as they went out with the wheels beside them. They stopped at the entrance of the east gate of the house of the LORD; and the glory of the God of Israel was above them.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> These were the living creatures that I saw underneath the God of Israel by the river Chebar; and I knew that they were cherubim.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Each had four faces, each four wings, and underneath their wings something like human hands.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> As for what their faces were like, they were the same faces whose appearance I had seen by the river Chebar. Each one moved straight ahead.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"11\">\r\n\t\t\t<VERS vnumber=\"1\"> The spirit lifted me up and brought me to the east gate of the house of the LORD, which faces east. There, at the entrance of the gateway, were twenty-five men; among them I saw Jaazaniah son of Azzur, and Pelatiah son of Benaiah, officials of the people.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He said to me, \"Mortal, these are the men who devise iniquity and who give wicked counsel in this city;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> they say, 'The time is not near to build houses; this city is the pot, and we are the meat.'</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Therefore prophesy against them; prophesy, O mortal.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then the spirit of the LORD fell upon me, and he said to me, \"Say, Thus says the LORD: This is what you think, O house of Israel; I know the things that come into your mind.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> You have killed many in this city, and have filled its streets with the slain.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Therefore thus says the Lord GOD: The slain whom you have placed within it are the meat, and this city is the pot; but you shall be taken out of it.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> You have feared the sword; and I will bring the sword upon you, says the Lord GOD.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> I will take you out of it and give you over to the hands of foreigners, and execute judgments upon you.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> You shall fall by the sword; I will judge you at the border of Israel. And you shall know that I am the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> This city shall not be your pot, and you shall not be the meat inside it; I will judge you at the border of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then you shall know that I am the LORD, whose statutes you have not followed, and whose ordinances you have not kept, but you have acted according to the ordinances of the nations that are around you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Now, while I was prophesying, Pelatiah son of Benaiah died. Then I fell down on my face, cried with a loud voice, and said, \"Ah Lord GOD! will you make a full end of the remnant of Israel?\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then the word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Mortal, your kinsfolk, your own kin, your fellow exiles, the whole house of Israel, all of them, are those of whom the inhabitants of Jerusalem have said, \"They have gone far from the LORD; to us this land is given for a possession.\" </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Therefore say: Thus says the Lord GOD: Though I removed them far away among the nations, and though I scattered them among the countries, yet I have been a sanctuary to them for a little while in the countries where they have gone. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Therefore say: Thus says the Lord GOD: I will gather you from the peoples, and assemble you out of the countries where you have been scattered, and I will give you the land of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> When they come there, they will remove from it all its detestable things and all its abominations.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> I will give them one heart, and put a new spirit within them; I will remove the heart of stone from their flesh and give them a heart of flesh, </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> so that they may follow my statutes and keep my ordinances and obey them. Then they shall be my people, and I will be their God.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> But as for those whose heart goes after their detestable things and their abominations, I will bring their deeds upon their own heads, says the Lord GOD. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Then the cherubim lifted up their wings, with the wheels beside them; and the glory of the God of Israel was above them.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> And the glory of the LORD ascended from the middle of the city, and stopped on the mountain east of the city.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> The spirit lifted me up and brought me in a vision by the spirit of God into Chaldea, to the exiles. Then the vision that I had seen left me.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> And I told the exiles all the things that the LORD had shown me.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"12\">\r\n\t\t\t<VERS vnumber=\"1\"> The word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Mortal, you are living in the midst of a rebellious house, who have eyes to see but do not see, who have ears to hear but do not hear;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> for they are a rebellious house. Therefore, mortal, prepare for yourself an exile's baggage, and go into exile by day in their sight; you shall go like an exile from your place to another place in their sight. Perhaps they will understand, though they are a rebellious house.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> You shall bring out your baggage by day in their sight, as baggage for exile; and you shall go out yourself at evening in their sight, as those do who go into exile.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Dig through the wall in their sight, and carry the baggage through it.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> In their sight you shall lift the baggage on your shoulder, and carry it out in the dark; you shall cover your face, so that you may not see the land; for I have made you a sign for the house of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> I did just as I was commanded. I brought out my baggage by day, as baggage for exile, and in the evening I dug through the wall with my own hands; I brought it out in the dark, carrying it on my shoulder in their sight.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> In the morning the word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Mortal, has not the house of Israel, the rebellious house, said to you, \"What are you doing?\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Say to them, \"Thus says the Lord GOD: This oracle concerns the prince in Jerusalem and all the house of Israel in it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Say, \"I am a sign for you: as I have done, so shall it be done to them; they shall go into exile, into captivity.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> And the prince who is among them shall lift his baggage on his shoulder in the dark, and shall go out; he shall dig through the wall and carry it through; he shall cover his face, so that he may not see the land with his eyes. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> I will spread my net over him, and he shall be caught in my snare; and I will bring him to Babylon, the land of the Chaldeans, yet he shall not see it; and he shall die there.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> I will scatter to every wind all who are around him, his helpers and all his troops; and I will unsheathe the sword behind them.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And they shall know that I am the LORD, when I disperse them among the nations and scatter them through the countries.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> But I will let a few of them escape from the sword, from famine and pestilence, so that they may tell of all their abominations among the nations where they go; then they shall know that I am the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Mortal, eat your bread with quaking, and drink your water with trembling and with fearfulness;</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> and say to the people of the land, Thus says the Lord GOD concerning the inhabitants of Jerusalem in the land of Israel: They shall eat their bread with fearfulness, and drink their water in dismay, because their land shall be stripped of all it contains, on account of the violence of all those who live in it.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The inhabited cities shall be laid waste, and the land shall become a desolation; and you shall know that I am the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> The word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Mortal, what is this proverb of yours about the land of Israel, which says, \"The days are prolonged, and every vision comes to nothing\"?</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Tell them therefore, \"Thus says the Lord GOD: I will put an end to this proverb, and they shall use it no more as a proverb in Israel.\" But say to them, The days are near, and the fulfillment of every vision.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> For there shall no longer be any false vision or flattering divination within the house of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> But I the LORD will speak the word that I speak, and it will be fulfilled. It will no longer be delayed; but in your days, O rebellious house, I will speak the word and fulfill it, says the Lord GOD.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> The word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Mortal, the house of Israel is saying, \"The vision that he sees is for many years ahead; he prophesies for distant times.\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Therefore say to them, Thus says the Lord GOD: None of my words will be delayed any longer, but the word that I speak will be fulfilled, says the Lord GOD.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"13\">\r\n\t\t\t<VERS vnumber=\"1\"> The word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Mortal, prophesy against the prophets of Israel who are prophesying; say to those who prophesy out of their own imagination: \"Hear the word of the LORD!\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Thus says the Lord GOD, Alas for the senseless prophets who follow their own spirit, and have seen nothing!</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Your prophets have been like jackals among ruins, O Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> You have not gone up into the breaches, or repaired a wall for the house of Israel, so that it might stand in battle on the day of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> They have envisioned falsehood and lying divination; they say, \"Says the LORD,\" when the LORD has not sent them, and yet they wait for the fulfillment of their word!</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Have you not seen a false vision or uttered a lying divination, when you have said, \"Says the LORD,\" even though I did not speak?</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Therefore thus says the Lord GOD: Because you have uttered falsehood and envisioned lies, I am against you, says the Lord GOD.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> My hand will be against the prophets who see false visions and utter lying divinations; they shall not be in the council of my people, nor be enrolled in the register of the house of Israel, nor shall they enter the land of Israel; and you shall know that I am the Lord GOD.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Because, in truth, because they have misled my people, saying, \"Peace,\" when there is no peace; and because, when the people build a wall, these prophets smear whitewash on it. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Say to those who smear whitewash on it that it shall fall. There will be a deluge of rain, great hailstones will fall, and a stormy wind will break out. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> When the wall falls, will it not be said to you, \"Where is the whitewash you smeared on it?\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Therefore thus says the Lord GOD: In my wrath I will make a stormy wind break out, and in my anger there shall be a deluge of rain, and hailstones in wrath to destroy it.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> I will break down the wall that you have smeared with whitewash, and bring it to the ground, so that its foundation will be laid bare; when it falls, you shall perish within it; and you shall know that I am the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Thus I will spend my wrath upon the wall, and upon those who have smeared it with whitewash; and I will say to you, The wall is no more, nor those who smeared it--</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> the prophets of Israel who prophesied concerning Jerusalem and saw visions of peace for it, when there was no peace, says the Lord GOD.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> As for you, mortal, set your face against the daughters of your people, who prophesy out of their own imagination; prophesy against them</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> and say, Thus says the Lord GOD: Woe to the women who sew bands on all wrists, and make veils for the heads of persons of every height, in the hunt for human lives! Will you hunt down lives among my people, and maintain your own lives?</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> You have profaned me among my people for handfuls of barley and for pieces of bread, putting to death persons who should not die and keeping alive persons who should not live, by your lies to my people, who listen to lies.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Therefore thus says the Lord GOD: I am against your bands with which you hunt lives; I will tear them from your arms, and let the lives go free, the lives that you hunt down like birds. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> I will tear off your veils, and save my people from your hands; they shall no longer be prey in your hands; and you shall know that I am the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Because you have disheartened the righteous falsely, although I have not disheartened them, and you have encouraged the wicked not to turn from their wicked way and save their lives;</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> therefore you shall no longer see false visions or practice divination; I will save my people from your hand. Then you will know that I am the LORD.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"14\">\r\n\t\t\t<VERS vnumber=\"1\"> Certain elders of Israel came to me and sat down before me.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And the word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Mortal, these men have taken their idols into their hearts, and placed their iniquity as a stumbling block before them; shall I let myself be consulted by them?</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Therefore speak to them, and say to them, Thus says the Lord GOD: Any of those of the house of Israel who take their idols into their hearts and place their iniquity as a stumbling block before them, and yet come to the prophet-- I the LORD will answer those who come with the multitude of their idols,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> in order that I may take hold of the hearts of the house of Israel, all of whom are estranged from me through their idols.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Therefore say to the house of Israel, Thus says the Lord GOD: Repent and turn away from your idols; and turn away your faces from all your abominations.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> For any of those of the house of Israel, or of the aliens who reside in Israel, who separate themselves from me, taking their idols into their hearts and placing their iniquity as a stumbling block before them, and yet come to a prophet to inquire of me by him, I the LORD will answer them myself.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> I will set my face against them; I will make them a sign and a byword and cut them off from the midst of my people; and you shall know that I am the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> If a prophet is deceived and speaks a word, I, the LORD, have deceived that prophet, and I will stretch out my hand against him, and will destroy him from the midst of my people Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And they shall bear their punishment-- the punishment of the inquirer and the punishment of the prophet shall be the same--</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> so that the house of Israel may no longer go astray from me, nor defile themselves any more with all their transgressions. Then they shall be my people, and I will be their God, says the Lord GOD.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Mortal, when a land sins against me by acting faithlessly, and I stretch out my hand against it, and break its staff of bread and send famine upon it, and cut off from it human beings and animals,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> even if Noah, Daniel, and Job, these three, were in it, they would save only their own lives by their righteousness, says the Lord GOD. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> If I send wild animals through the land to ravage it, so that it is made desolate, and no one may pass through because of the animals;</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> even if these three men were in it, as I live, says the Lord GOD, they would save neither sons nor daughters; they alone would be saved, but the land would be desolate.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Or if I bring a sword upon that land and say, 'Let a sword pass through the land,' and I cut off human beings and animals from it;</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> though these three men were in it, as I live, says the Lord GOD, they would save neither sons nor daughters, but they alone would be saved.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Or if I send a pestilence into that land, and pour out my wrath upon it with blood, to cut off humans and animals from it;</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> even if Noah, Daniel, and Job were in it, as I live, says the Lord GOD, they would save neither son nor daughter; they would save only their own lives by their righteousness. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> For thus says the Lord GOD: How much more when I send upon Jerusalem my four deadly acts of judgment, sword, famine, wild animals, and pestilence, to cut off humans and animals from it!</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Yet, survivors shall be left in it, sons and daughters who will be brought out; they will come out to you. When you see their ways and their deeds, you will be consoled for the evil that I have brought upon Jerusalem, for all that I have brought upon it.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> They shall console you, when you see their ways and their deeds; and you shall know that it was not without cause that I did all that I have done in it, says the Lord GOD.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"15\">\r\n\t\t\t<VERS vnumber=\"1\"> The word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> O mortal, how does the wood of the vine surpass all other wood-- the vine branch that is among the trees of the forest?</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Is wood taken from it to make anything? Does one take a peg from it on which to hang any object?</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> It is put in the fire for fuel; when the fire has consumed both ends of it and the middle of it is charred, is it useful for anything?</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> When it was whole it was used for nothing; how much less-- when the fire has consumed it, and it is charred-- can it ever be used for anything!</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Therefore thus says the Lord GOD: Like the wood of the vine among the trees of the forest, which I have given to the fire for fuel, so I will give up the inhabitants of Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> I will set my face against them; although they escape from the fire, the fire shall still consume them; and you shall know that I am the LORD, when I set my face against them.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And I will make the land desolate, because they have acted faithlessly, says the Lord GOD.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"16\">\r\n\t\t\t<VERS vnumber=\"1\"> The word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Mortal, make known to Jerusalem her abominations,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> and say, Thus says the Lord GOD to Jerusalem: Your origin and your birth were in the land of the Canaanites; your father was an Amorite, and your mother a Hittite.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> As for your birth, on the day you were born your navel cord was not cut, nor were you washed with water to cleanse you, nor rubbed with salt, nor wrapped in cloths.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> No eye pitied you, to do any of these things for you out of compassion for you; but you were thrown out in the open field, for you were abhorred on the day you were born.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> I passed by you, and saw you flailing about in your blood. As you lay in your blood, I said to you, \"Live!</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> and grow up like a plant of the field.\" You grew up and became tall and arrived at full womanhood; your breasts were formed, and your hair had grown; yet you were naked and bare. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> I passed by you again and looked on you; you were at the age for love. I spread the edge of my cloak over you, and covered your nakedness: I pledged myself to you and entered into a covenant with you, says the Lord GOD, and you became mine.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then I bathed you with water and washed off the blood from you, and anointed you with oil.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> I clothed you with embroidered cloth and with sandals of fine leather; I bound you in fine linen and covered you with rich fabric. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> I adorned you with ornaments: I put bracelets on your arms, a chain on your neck,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> a ring on your nose, earrings in your ears, and a beautiful crown upon your head.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> You were adorned with gold and silver, while your clothing was of fine linen, rich fabric, and embroidered cloth. You had choice flour and honey and oil for food. You grew exceedingly beautiful, fit to be a queen. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Your fame spread among the nations on account of your beauty, for it was perfect because of my splendor that I had bestowed on you, says the Lord GOD.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> But you trusted in your beauty, and played the whore because of your fame, and lavished your whorings on any passer-by. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> You took some of your garments, and made for yourself colorful shrines, and on them played the whore; nothing like this has ever been or ever shall be. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> You also took your beautiful jewels of my gold and my silver that I had given you, and made for yourself male images, and with them played the whore;</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> and you took your embroidered garments to cover them, and set my oil and my incense before them.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Also my bread that I gave you-- I fed you with choice flour and oil and honey-- you set it before them as a pleasing odor; and so it was, says the Lord GOD.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> You took your sons and your daughters, whom you had borne to me, and these you sacrificed to them to be devoured. As if your whorings were not enough!</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> You slaughtered my children and delivered them up as an offering to them.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> And in all your abominations and your whorings you did not remember the days of your youth, when you were naked and bare, flailing about in your blood.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> After all your wickedness (woe, woe to you! says the Lord GOD),</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> you built yourself a platform and made yourself a lofty place in every square;</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> at the head of every street you built your lofty place and prostituted your beauty, offering yourself to every passer-by, and multiplying your whoring.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> You played the whore with the Egyptians, your lustful neighbors, multiplying your whoring, to provoke me to anger.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Therefore I stretched out my hand against you, reduced your rations, and gave you up to the will of your enemies, the daughters of the Philistines, who were ashamed of your lewd behavior.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> You played the whore with the Assyrians, because you were insatiable; you played the whore with them, and still you were not satisfied.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> You multiplied your whoring with Chaldea, the land of merchants; and even with this you were not satisfied.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> How sick is your heart, says the Lord GOD, that you did all these things, the deeds of a brazen whore;</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> building your platform at the head of every street, and making your lofty place in every square! Yet you were not like a whore, because you scorned payment.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Adulterous wife, who receives strangers instead of her husband!</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Gifts are given to all whores; but you gave your gifts to all your lovers, bribing them to come to you from all around for your whorings.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> So you were different from other women in your whorings: no one solicited you to play the whore; and you gave payment, while no payment was given to you; you were different.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Therefore, O whore, hear the word of the LORD:</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Thus says the Lord GOD, Because your lust was poured out and your nakedness uncovered in your whoring with your lovers, and because of all your abominable idols, and because of the blood of your children that you gave to them,</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> therefore, I will gather all your lovers, with whom you took pleasure, all those you loved and all those you hated; I will gather them against you from all around, and will uncover your nakedness to them, so that they may see all your nakedness.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> I will judge you as women who commit adultery and shed blood are judged, and bring blood upon you in wrath and jealousy.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> I will deliver you into their hands, and they shall throw down your platform and break down your lofty places; they shall strip you of your clothes and take your beautiful objects and leave you naked and bare.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> They shall bring up a mob against you, and they shall stone you and cut you to pieces with their swords.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> They shall burn your houses and execute judgments on you in the sight of many women; I will stop you from playing the whore, and you shall also make no more payments.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> So I will satisfy my fury on you, and my jealousy shall turn away from you; I will be calm, and will be angry no longer.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> Because you have not remembered the days of your youth, but have enraged me with all these things; therefore, I have returned your deeds upon your head, says the Lord GOD. Have you not committed lewdness beyond all your abominations?</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> See, everyone who uses proverbs will use this proverb about you, \"Like mother, like daughter.\"</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> You are the daughter of your mother, who loathed her husband and her children; and you are the sister of your sisters, who loathed their husbands and their children. Your mother was a Hittite and your father an Amorite.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> Your elder sister is Samaria, who lived with her daughters to the north of you; and your younger sister, who lived to the south of you, is Sodom with her daughters.</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> You not only followed their ways, and acted according to their abominations; within a very little time you were more corrupt than they in all your ways.</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> As I live, says the Lord GOD, your sister Sodom and her daughters have not done as you and your daughters have done.</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> This was the guilt of your sister Sodom: she and her daughters had pride, excess of food, and prosperous ease, but did not aid the poor and needy.</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> They were haughty, and did abominable things before me; therefore I removed them when I saw it.</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> Samaria has not committed half your sins; you have committed more abominations than they, and have made your sisters appear righteous by all the abominations that you have committed.</VERS>\r\n\t\t\t<VERS vnumber=\"52\"> Bear your disgrace, you also, for you have brought about for your sisters a more favorable judgment; because of your sins in which you acted more abominably than they, they are more in the right than you. So be ashamed, you also, and bear your disgrace, for you have made your sisters appear righteous.</VERS>\r\n\t\t\t<VERS vnumber=\"53\"> I will restore their fortunes, the fortunes of Sodom and her daughters and the fortunes of Samaria and her daughters, and I will restore your own fortunes along with theirs,</VERS>\r\n\t\t\t<VERS vnumber=\"54\"> in order that you may bear your disgrace and be ashamed of all that you have done, becoming a consolation to them.</VERS>\r\n\t\t\t<VERS vnumber=\"55\"> As for your sisters, Sodom and her daughters shall return to their former state, Samaria and her daughters shall return to their former state, and you and your daughters shall return to your former state.</VERS>\r\n\t\t\t<VERS vnumber=\"56\"> Was not your sister Sodom a byword in your mouth in the day of your pride,</VERS>\r\n\t\t\t<VERS vnumber=\"57\"> before your wickedness was uncovered? Now you are a mockery to the daughters of Aram and all her neighbors, and to the daughters of the Philistines, those all around who despise you. </VERS>\r\n\t\t\t<VERS vnumber=\"58\"> You must bear the penalty of your lewdness and your abominations, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"59\"> Yes, thus says the Lord GOD: I will deal with you as you have done, you who have despised the oath, breaking the covenant;</VERS>\r\n\t\t\t<VERS vnumber=\"60\"> yet I will remember my covenant with you in the days of your youth, and I will establish with you an everlasting covenant.</VERS>\r\n\t\t\t<VERS vnumber=\"61\"> Then you will remember your ways, and be ashamed when I take your sisters, both your elder and your younger, and give them to you as daughters, but not on account of my covenant with you. </VERS>\r\n\t\t\t<VERS vnumber=\"62\"> I will establish my covenant with you, and you shall know that I am the LORD,</VERS>\r\n\t\t\t<VERS vnumber=\"63\"> in order that you may remember and be confounded, and never open your mouth again because of your shame, when I forgive you all that you have done, says the Lord GOD.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"17\">\r\n\t\t\t<VERS vnumber=\"1\"> The word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> O mortal, propound a riddle, and speak an allegory to the house of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Say: Thus says the Lord GOD: A great eagle, with great wings and long pinions, rich in plumage of many colors, came to the Lebanon. He took the top of the cedar,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> broke off its topmost shoot; He carried it to a land of trade, set it in a city of merchants.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then he took a seed from the land, placed it in fertile soil; a plant by abundant waters, he set it like a willow twig. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> It sprouted and became a vine spreading out, but low; its branches turned toward him, its roots remained where it stood. So it became a vine; it brought forth branches, put forth foliage.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> There was another great eagle, with great wings and much plumage. And see! This vine stretched out its roots toward him; it shot out its branches toward him, so that he might water it. From the bed where it was planted</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> it was transplanted to good soil by abundant waters, so that it might produce branches and bear fruit and become a noble vine.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Say: Thus says the Lord GOD: Will it prosper? Will he not pull up its roots, cause its fruit to rot and wither, its fresh sprouting leaves to fade? No strong arm or mighty army will be needed to pull it from its roots. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> When it is transplanted, will it thrive? When the east wind strikes it, will it not utterly wither, wither on the bed where it grew?</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then the word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Say now to the rebellious house: Do you not know what these things mean? Tell them: The king of Babylon came to Jerusalem, took its king and its officials, and brought them back with him to Babylon.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> He took one of the royal offspring and made a covenant with him, putting him under oath (he had taken away the chief men of the land),</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> so that the kingdom might be humble and not lift itself up, and that by keeping his covenant it might stand.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> But he rebelled against him by sending ambassadors to Egypt, in order that they might give him horses and a large army. Will he succeed? Can one escape who does such things? Can he break the covenant and yet escape?</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> As I live, says the Lord GOD, surely in the place where the king resides who made him king, whose oath he despised, and whose covenant with him he broke-- in Babylon he shall die.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Pharaoh with his mighty army and great company will not help him in war, when ramps are cast up and siege walls built to cut off many lives.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Because he despised the oath and broke the covenant, because he gave his hand and yet did all these things, he shall not escape.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Therefore thus says the Lord GOD: As I live, I will surely return upon his head my oath that he despised, and my covenant that he broke.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> I will spread my net over him, and he shall be caught in my snare; I will bring him to Babylon and enter into judgment with him there for the treason he has committed against me.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> All the pick of his troops shall fall by the sword, and the survivors shall be scattered to every wind; and you shall know that I, the LORD, have spoken. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Thus says the Lord GOD: I myself will take a sprig from the lofty top of a cedar; I will set it out. I will break off a tender one from the topmost of its young twigs; I myself will plant it on a high and lofty mountain.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> On the mountain height of Israel I will plant it, in order that it may produce boughs and bear fruit, and become a noble cedar. Under it every kind of bird will live; in the shade of its branches will nest winged creatures of every kind.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> All the trees of the field shall know that I am the LORD. I bring low the high tree, I make high the low tree; I dry up the green tree and make the dry tree flourish. I the LORD have spoken; I will accomplish it.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"18\">\r\n\t\t\t<VERS vnumber=\"1\"> The word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> What do you mean by repeating this proverb concerning the land of Israel, \"The parents have eaten sour grapes, and the children's teeth are set on edge\"?</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> As I live, says the Lord GOD, this proverb shall no more be used by you in Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Know that all lives are mine; the life of the parent as well as the life of the child is mine: it is only the person who sins that shall die.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> If a man is righteous and does what is lawful and right--</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> if he does not eat upon the mountains or lift up his eyes to the idols of the house of Israel, does not defile his neighbor's wife or approach a woman during her menstrual period,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> does not oppress anyone, but restores to the debtor his pledge, commits no robbery, gives his bread to the hungry and covers the naked with a garment,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> does not take advance or accrued interest, withholds his hand from iniquity, executes true justice between contending parties,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> follows my statutes, and is careful to observe my ordinances, acting faithfully-- such a one is righteous; he shall surely live, says the Lord GOD.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> If he has a son who is violent, a shedder of blood,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> who does any of these things (though his father does none of them), who eats upon the mountains, defiles his neighbor's wife,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> oppresses the poor and needy, commits robbery, does not restore the pledge, lifts up his eyes to the idols, commits abomination,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> takes advance or accrued interest; shall he then live? He shall not. He has done all these abominable things; he shall surely die; his blood shall be upon himself.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But if this man has a son who sees all the sins that his father has done, considers, and does not do likewise,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> who does not eat upon the mountains or lift up his eyes to the idols of the house of Israel, does not defile his neighbor's wife,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> does not wrong anyone, exacts no pledge, commits no robbery, but gives his bread to the hungry and covers the naked with a garment,</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> withholds his hand from iniquity, takes no advance or accrued interest, observes my ordinances, and follows my statutes; he shall not die for his father's iniquity; he shall surely live. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> As for his father, because he practiced extortion, robbed his brother, and did what is not good among his people, he dies for his iniquity.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Yet you say, \"Why should not the son suffer for the iniquity of the father?\" When the son has done what is lawful and right, and has been careful to observe all my statutes, he shall surely live.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The person who sins shall die. A child shall not suffer for the iniquity of a parent, nor a parent suffer for the iniquity of a child; the righteousness of the righteous shall be his own, and the wickedness of the wicked shall be his own.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> But if the wicked turn away from all their sins that they have committed and keep all my statutes and do what is lawful and right, they shall surely live; they shall not die.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> None of the transgressions that they have committed shall be remembered against them; for the righteousness that they have done they shall live.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Have I any pleasure in the death of the wicked, says the Lord GOD, and not rather that they should turn from their ways and live?</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> But when the righteous turn away from their righteousness and commit iniquity and do the same abominable things that the wicked do, shall they live? None of the righteous deeds that they have done shall be remembered; for the treachery of which they are guilty and the sin they have committed, they shall die.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Yet you say, \"The way of the Lord is unfair.\" Hear now, O house of Israel: Is my way unfair? Is it not your ways that are unfair?</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> When the righteous turn away from their righteousness and commit iniquity, they shall die for it; for the iniquity that they have committed they shall die.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Again, when the wicked turn away from the wickedness they have committed and do what is lawful and right, they shall save their life.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Because they considered and turned away from all the transgressions that they had committed, they shall surely live; they shall not die.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Yet the house of Israel says, \"The way of the Lord is unfair.\" O house of Israel, are my ways unfair? Is it not your ways that are unfair?</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Therefore I will judge you, O house of Israel, all of you according to your ways, says the Lord GOD. Repent and turn from all your transgressions; otherwise iniquity will be your ruin. </VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Cast away from you all the transgressions that you have committed against me, and get yourselves a new heart and a new spirit! Why will you die, O house of Israel?</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> For I have no pleasure in the death of anyone, says the Lord GOD. Turn, then, and live.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"19\">\r\n\t\t\t<VERS vnumber=\"1\"> As for you, raise up a lamentation for the princes of Israel,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> and say: What a lioness was your mother among lions! She lay down among young lions, rearing her cubs.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> She raised up one of her cubs; he became a young lion, and he learned to catch prey; he devoured humans.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The nations sounded an alarm against him; he was caught in their pit; and they brought him with hooks to the land of Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> When she saw that she was thwarted, that her hope was lost, she took another of her cubs and made him a young lion.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> He prowled among the lions; he became a young lion, and he learned to catch prey; he devoured people.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> And he ravaged their strongholds, and laid waste their towns; the land was appalled, and all in it, at the sound of his roaring. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The nations set upon him from the provinces all around; they spread their net over him; he was caught in their pit.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> With hooks they put him in a cage, and brought him to the king of Babylon; they brought him into custody, so that his voice should be heard no more on the mountains of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Your mother was like a vine in a vineyard transplanted by the water, fruitful and full of branches from abundant water. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Its strongest stem became a ruler's scepter; it towered aloft among the thick boughs; it stood out in its height with its mass of branches. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> But it was plucked up in fury, cast down to the ground; the east wind dried it up; its fruit was stripped off, its strong stem was withered; the fire consumed it.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Now it is transplanted into the wilderness, into a dry and thirsty land.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> And fire has gone out from its stem, has consumed its branches and fruit, so that there remains in it no strong stem, no scepter for ruling. This is a lamentation, and it is used as a lamentation.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"20\">\r\n\t\t\t<VERS vnumber=\"1\"> In the seventh year, in the fifth month, on the tenth day of the month, certain elders of Israel came to consult the LORD, and sat down before me.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And the word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Mortal, speak to the elders of Israel, and say to them: Thus says the Lord GOD: Why are you coming? To consult me? As I live, says the Lord GOD, I will not be consulted by you.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Will you judge them, mortal, will you judge them? Then let them know the abominations of their ancestors,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> and say to them: Thus says the Lord GOD: On the day when I chose Israel, I swore to the offspring of the house of Jacob-- making myself known to them in the land of Egypt-- I swore to them, saying, I am the LORD your God.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> On that day I swore to them that I would bring them out of the land of Egypt into a land that I had searched out for them, a land flowing with milk and honey, the most glorious of all lands.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> And I said to them, Cast away the detestable things your eyes feast on, every one of you, and do not defile yourselves with the idols of Egypt; I am the LORD your God.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But they rebelled against me and would not listen to me; not one of them cast away the detestable things their eyes feasted on, nor did they forsake the idols of Egypt. Then I thought I would pour out my wrath upon them and spend my anger against them in the midst of the land of Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> But I acted for the sake of my name, that it should not be profaned in the sight of the nations among whom they lived, in whose sight I made myself known to them in bringing them out of the land of Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> So I led them out of the land of Egypt and brought them into the wilderness.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> I gave them my statutes and showed them my ordinances, by whose observance everyone shall live.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Moreover I gave them my sabbaths, as a sign between me and them, so that they might know that I the LORD sanctify them.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> But the house of Israel rebelled against me in the wilderness; they did not observe my statutes but rejected my ordinances, by whose observance everyone shall live; and my sabbaths they greatly profaned. Then I thought I would pour out my wrath upon them in the wilderness, to make an end of them.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But I acted for the sake of my name, so that it should not be profaned in the sight of the nations, in whose sight I had brought them out.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Moreover I swore to them in the wilderness that I would not bring them into the land that I had given them, a land flowing with milk and honey, the most glorious of all lands,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> because they rejected my ordinances and did not observe my statutes, and profaned my sabbaths; for their heart went after their idols.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Nevertheless my eye spared them, and I did not destroy them or make an end of them in the wilderness.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> I said to their children in the wilderness, Do not follow the statutes of your parents, nor observe their ordinances, nor defile yourselves with their idols.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> I the LORD am your God; follow my statutes, and be careful to observe my ordinances,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> and hallow my sabbaths that they may be a sign between me and you, so that you may know that I the LORD am your God.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> But the children rebelled against me; they did not follow my statutes, and were not careful to observe my ordinances, by whose observance everyone shall live; they profaned my sabbaths. Then I thought I would pour out my wrath upon them and spend my anger against them in the wilderness.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> But I withheld my hand, and acted for the sake of my name, so that it should not be profaned in the sight of the nations, in whose sight I had brought them out.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Moreover I swore to them in the wilderness that I would scatter them among the nations and disperse them through the countries,</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> because they had not executed my ordinances, but had rejected my statutes and profaned my sabbaths, and their eyes were set on their ancestors' idols.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Moreover I gave them statutes that were not good and ordinances by which they could not live.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> I defiled them through their very gifts, in their offering up all their firstborn, in order that I might horrify them, so that they might know that I am the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Therefore, mortal, speak to the house of Israel and say to them, Thus says the Lord GOD: In this again your ancestors blasphemed me, by dealing treacherously with me.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> For when I had brought them into the land that I swore to give them, then wherever they saw any high hill or any leafy tree, there they offered their sacrifices and presented the provocation of their offering; there they sent up their pleasing odors, and there they poured out their drink offerings.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> (I said to them, What is the high place to which you go? So it is called Bamah to this day.) </VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Therefore say to the house of Israel, Thus says the Lord GOD: Will you defile yourselves after the manner of your ancestors and go astray after their detestable things?</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> When you offer your gifts and make your children pass through the fire, you defile yourselves with all your idols to this day. And shall I be consulted by you, O house of Israel? As I live, says the Lord GOD, I will not be consulted by you.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> What is in your mind shall never happen-- the thought, \"Let us be like the nations, like the tribes of the countries, and worship wood and stone.\"</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> As I live, says the Lord GOD, surely with a mighty hand and an outstretched arm, and with wrath poured out, I will be king over you.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> I will bring you out from the peoples and gather you out of the countries where you are scattered, with a mighty hand and an outstretched arm, and with wrath poured out;</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> and I will bring you into the wilderness of the peoples, and there I will enter into judgment with you face to face.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> As I entered into judgment with your ancestors in the wilderness of the land of Egypt, so I will enter into judgment with you, says the Lord GOD.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> I will make you pass under the staff, and will bring you within the bond of the covenant.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> I will purge out the rebels among you, and those who transgress against me; I will bring them out of the land where they reside as aliens, but they shall not enter the land of Israel. Then you shall know that I am the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> As for you, O house of Israel, thus says the Lord GOD: Go serve your idols, everyone of you now and hereafter, if you will not listen to me; but my holy name you shall no more profane with your gifts and your idols.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> For on my holy mountain, the mountain height of Israel, says the Lord GOD, there all the house of Israel, all of them, shall serve me in the land; there I will accept them, and there I will require your contributions and the choicest of your gifts, with all your sacred things.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> As a pleasing odor I will accept you, when I bring you out from the peoples, and gather you out of the countries where you have been scattered; and I will manifest my holiness among you in the sight of the nations.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> You shall know that I am the LORD, when I bring you into the land of Israel, the country that I swore to give to your ancestors.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> There you shall remember your ways and all the deeds by which you have polluted yourselves; and you shall loathe yourselves for all the evils that you have committed.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> And you shall know that I am the LORD, when I deal with you for my name's sake, not according to your evil ways, or corrupt deeds, O house of Israel, says the Lord GOD.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> The word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> Mortal, set your face toward the south, preach against the south, and prophesy against the forest land in the Negeb;</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> say to the forest of the Negeb, Hear the word of the LORD: Thus says the Lord GOD, I will kindle a fire in you, and it shall devour every green tree in you and every dry tree; the blazing flame shall not be quenched, and all faces from south to north shall be scorched by it.</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> All flesh shall see that I the LORD have kindled it; it shall not be quenched.</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> Then I said, \"Ah Lord GOD! they are saying of me, 'Is he not a maker of allegories?'\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"21\">\r\n\t\t\t<VERS vnumber=\"1\"> The word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Mortal, set your face toward Jerusalem and preach against the sanctuaries; prophesy against the land of Israel</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> and say to the land of Israel, Thus says the LORD: I am coming against you, and will draw my sword out of its sheath, and will cut off from you both righteous and wicked.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Because I will cut off from you both righteous and wicked, therefore my sword shall go out of its sheath against all flesh from south to north;</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> and all flesh shall know that I the LORD have drawn my sword out of its sheath; it shall not be sheathed again.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Moan therefore, mortal; moan with breaking heart and bitter grief before their eyes.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> And when they say to you, \"Why do you moan?\" you shall say, \"Because of the news that has come. Every heart will melt and all hands will be feeble, every spirit will faint and all knees will turn to water. See, it comes and it will be fulfilled,\" says the Lord GOD.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And the word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Mortal, prophesy and say: Thus says the Lord; Say: A sword, a sword is sharpened, it is also polished;</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> it is sharpened for slaughter, honed to flash like lightning! How can we make merry? You have despised the rod, and all discipline. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The sword is given to be polished, to be grasped in the hand; it is sharpened, the sword is polished, to be placed in the slayer's hand. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Cry and wail, O mortal, for it is against my people; it is against all Israel's princes; they are thrown to the sword, together with my people. Ah! Strike the thigh!</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> For consider: What! If you despise the rod, will it not happen? says the Lord GOD. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> And you, mortal, prophesy; strike hand to hand. Let the sword fall twice, thrice; it is a sword for killing. A sword for great slaughter-- it surrounds them;</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> therefore hearts melt and many stumble. At all their gates I have set the point of the sword. Ah! It is made for flashing, it is polished for slaughter. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Attack to the right! Engage to the left!-- wherever your edge is directed.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> I too will strike hand to hand, I will satisfy my fury; I the LORD have spoken.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Mortal, mark out two roads for the sword of the king of Babylon to come; both of them shall issue from the same land. And make a signpost, make it for a fork in the road leading to a city;</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> mark out the road for the sword to come to Rabbah of the Ammonites or to Judah and to Jerusalem the fortified. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> For the king of Babylon stands at the parting of the way, at the fork in the two roads, to use divination; he shakes the arrows, he consults the teraphim, he inspects the liver. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Into his right hand comes the lot for Jerusalem, to set battering rams, to call out for slaughter, for raising the battle cry, to set battering rams against the gates, to cast up ramps, to build siege towers.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> But to them it will seem like a false divination; they have sworn solemn oaths; but he brings their guilt to remembrance, bringing about their capture.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Therefore thus says the Lord GOD: Because you have brought your guilt to remembrance, in that your transgressions are uncovered, so that in all your deeds your sins appear-- because you have come to remembrance, you shall be taken in hand.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> As for you, vile, wicked prince of Israel, you whose day has come, the time of final punishment,</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> thus says the Lord GOD: Remove the turban, take off the crown; things shall not remain as they are. Exalt that which is low, abase that which is high.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> A ruin, a ruin, a ruin-- I will make it! (Such has never occurred.) Until he comes whose right it is; to him I will give it.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> As for you, mortal, prophesy, and say, Thus says the Lord GOD concerning the Ammonites, and concerning their reproach; say: A sword, a sword! Drawn for slaughter, polished to consume, to flash like lightning.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Offering false visions for you, divining lies for you, they place you over the necks of the vile, wicked ones-- those whose day has come, the time of final punishment.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Return it to its sheath! In the place where you were created, in the land of your origin, I will judge you.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> I will pour out my indignation upon you, with the fire of my wrath I will blow upon you. I will deliver you into brutish hands, those skillful to destroy.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> You shall be fuel for the fire, your blood shall enter the earth; you shall be remembered no more, for I the LORD have spoken.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"22\">\r\n\t\t\t<VERS vnumber=\"1\"> The word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> You, mortal, will you judge, will you judge the bloody city? Then declare to it all its abominable deeds.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> You shall say, Thus says the Lord GOD: A city! Shedding blood within itself; its time has come; making its idols, defiling itself.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> You have become guilty by the blood that you have shed, and defiled by the idols that you have made; you have brought your day near, the appointed time of your years has come. Therefore I have made you a disgrace before the nations, and a mockery to all the countries.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Those who are near and those who are far from you will mock you, you infamous one, full of tumult.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The princes of Israel in you, everyone according to his power, have been bent on shedding blood.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Father and mother are treated with contempt in you; the alien residing within you suffers extortion; the orphan and the widow are wronged in you.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> You have despised my holy things, and profaned my sabbaths.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> In you are those who slander to shed blood, those in you who eat upon the mountains, who commit lewdness in your midst.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> In you they uncover their fathers' nakedness; in you they violate women in their menstrual periods.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> One commits abomination with his neighbor's wife; another lewdly defiles his daughter-in-law; another in you defiles his sister, his father's daughter.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> In you, they take bribes to shed blood; you take both advance interest and accrued interest, and make gain of your neighbors by extortion; and you have forgotten me, says the Lord GOD.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> See, I strike my hands together at the dishonest gain you have made, and at the blood that has been shed within you.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Can your courage endure, or can your hands remain strong in the days when I shall deal with you? I the LORD have spoken, and I will do it.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> I will scatter you among the nations and disperse you through the countries, and I will purge your filthiness out of you.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> And I shall be profaned through you in the sight of the nations; and you shall know that I am the LORD. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Mortal, the house of Israel has become dross to me; all of them, silver, bronze, tin, iron, and lead. In the smelter they have become dross. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Therefore thus says the Lord GOD: Because you have all become dross, I will gather you into the midst of Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> As one gathers silver, bronze, iron, lead, and tin into a smelter, to blow the fire upon them in order to melt them; so I will gather you in my anger and in my wrath, and I will put you in and melt you.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> I will gather you and blow upon you with the fire of my wrath, and you shall be melted within it.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> As silver is melted in a smelter, so you shall be melted in it; and you shall know that I the LORD have poured out my wrath upon you.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> The word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Mortal, say to it: You are a land that is not cleansed, not rained upon in the day of indignation.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Its princes within it are like a roaring lion tearing the prey; they have devoured human lives; they have taken treasure and precious things; they have made many widows within it. </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Its priests have done violence to my teaching and have profaned my holy things; they have made no distinction between the holy and the common, neither have they taught the difference between the unclean and the clean, and they have disregarded my sabbaths, so that I am profaned among them.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Its officials within it are like wolves tearing the prey, shedding blood, destroying lives to get dishonest gain.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Its prophets have smeared whitewash on their behalf, seeing false visions and divining lies for them, saying, \"Thus says the Lord GOD,\" when the LORD has not spoken.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> The people of the land have practiced extortion and committed robbery; they have oppressed the poor and needy, and have extorted from the alien without redress.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> And I sought for anyone among them who would repair the wall and stand in the breach before me on behalf of the land, so that I would not destroy it; but I found no one.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Therefore I have poured out my indignation upon them; I have consumed them with the fire of my wrath; I have returned their conduct upon their heads, says the Lord GOD.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"23\">\r\n\t\t\t<VERS vnumber=\"1\"> The word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Mortal, there were two women, the daughters of one mother;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> they played the whore in Egypt; they played the whore in their youth; their breasts were caressed there, and their virgin bosoms were fondled.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Oholah was the name of the elder and Oholibah the name of her sister. They became mine, and they bore sons and daughters. As for their names, Oholah is Samaria, and Oholibah is Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Oholah played the whore while she was mine; she lusted after her lovers the Assyrians, warriors </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> clothed in blue, governors and commanders, all of them handsome young men, mounted horsemen.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> She bestowed her favors upon them, the choicest men of Assyria all of them; and she defiled herself with all the idols of everyone for whom she lusted.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> She did not give up her whorings that she had practiced since Egypt; for in her youth men had lain with her and fondled her virgin bosom and poured out their lust upon her.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Therefore I delivered her into the hands of her lovers, into the hands of the Assyrians, for whom she lusted.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> These uncovered her nakedness; they seized her sons and her daughters; and they killed her with the sword. Judgment was executed upon her, and she became a byword among women.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Her sister Oholibah saw this, yet she was more corrupt than she in her lusting and in her whorings, which were worse than those of her sister.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> She lusted after the Assyrians, governors and commanders, warriors clothed in full armor, mounted horsemen, all of them handsome young men.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And I saw that she was defiled; they both took the same way.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But she carried her whorings further; she saw male figures carved on the wall, images of the Chaldeans portrayed in vermilion,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> with belts around their waists, with flowing turbans on their heads, all of them looking like officers-- a picture of Babylonians whose native land was Chaldea.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> When she saw them she lusted after them, and sent messengers to them in Chaldea.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> And the Babylonians came to her into the bed of love, and they defiled her with their lust; and after she defiled herself with them, she turned from them in disgust.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> When she carried on her whorings so openly and flaunted her nakedness, I turned in disgust from her, as I had turned from her sister.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Yet she increased her whorings, remembering the days of her youth, when she played the whore in the land of Egypt</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> and lusted after her paramours there, whose members were like those of donkeys, and whose emission was like that of stallions.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Thus you longed for the lewdness of your youth, when the Egyptians fondled your bosom and caressed your young breasts. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Therefore, O Oholibah, thus says the Lord GOD: I will rouse against you your lovers from whom you turned in disgust, and I will bring them against you from every side:</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> the Babylonians and all the Chaldeans, Pekod and Shoa and Koa, and all the Assyrians with them, handsome young men, governors and commanders all of them, officers and warriors, all of them riding on horses. </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> They shall come against you from the north with chariots and wagons and a host of peoples; they shall set themselves against you on every side with buckler, shield, and helmet, and I will commit the judgment to them, and they shall judge you according to their ordinances. </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> I will direct my indignation against you, in order that they may deal with you in fury. They shall cut off your nose and your ears, and your survivors shall fall by the sword. They shall seize your sons and your daughters, and your survivors shall be devoured by fire.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> They shall also strip you of your clothes and take away your fine jewels.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> So I will put an end to your lewdness and your whoring brought from the land of Egypt; you shall not long for them, or remember Egypt any more.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> For thus says the Lord GOD: I will deliver you into the hands of those whom you hate, into the hands of those from whom you turned in disgust;</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> and they shall deal with you in hatred, and take away all the fruit of your labor, and leave you naked and bare, and the nakedness of your whorings shall be exposed. Your lewdness and your whorings</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> have brought this upon you, because you played the whore with the nations, and polluted yourself with their idols.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> You have gone the way of your sister; therefore I will give her cup into your hand.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Thus says the Lord GOD: You shall drink your sister's cup, deep and wide; you shall be scorned and derided, it holds so much.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> You shall be filled with drunkenness and sorrow. A cup of horror and desolation is the cup of your sister Samaria;</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> you shall drink it and drain it out, and gnaw its sherds, and tear out your breasts; for I have spoken, says the Lord GOD.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Therefore thus says the Lord GOD: Because you have forgotten me and cast me behind your back, therefore bear the consequences of your lewdness and whorings.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> The LORD said to me: Mortal, will you judge Oholah and Oholibah? Then declare to them their abominable deeds.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> For they have committed adultery, and blood is on their hands; with their idols they have committed adultery; and they have even offered up to them for food the children whom they had borne to me.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Moreover this they have done to me: they have defiled my sanctuary on the same day and profaned my sabbaths.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> For when they had slaughtered their children for their idols, on the same day they came into my sanctuary to profane it. This is what they did in my house.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> They even sent for men to come from far away, to whom a messenger was sent, and they came. For them you bathed yourself, painted your eyes, and decked yourself with ornaments;</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> you sat on a stately couch, with a table spread before it on which you had placed my incense and my oil.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> The sound of a raucous multitude was around her, with many of the rabble brought in drunken from the wilderness; and they put bracelets on the arms of the women, and beautiful crowns upon their heads. </VERS>\r\n\t\t\t<VERS vnumber=\"43\"> Then I said, Ah, she is worn out with adulteries, but they carry on their sexual acts with her.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> For they have gone in to her, as one goes in to a whore. Thus they went in to Oholah and to Oholibah, wanton women.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> But righteous judges shall declare them guilty of adultery and of bloodshed; because they are adulteresses and blood is on their hands.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> For thus says the Lord GOD: Bring up an assembly against them, and make them an object of terror and of plunder.</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> The assembly shall stone them and with their swords they shall cut them down; they shall kill their sons and their daughters, and burn up their houses.</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> Thus will I put an end to lewdness in the land, so that all women may take warning and not commit lewdness as you have done.</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> They shall repay you for your lewdness, and you shall bear the penalty for your sinful idolatry; and you shall know that I am the Lord GOD.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"24\">\r\n\t\t\t<VERS vnumber=\"1\"> In the ninth year, in the tenth month, on the tenth day of the month, the word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Mortal, write down the name of this day, this very day. The king of Babylon has laid siege to Jerusalem this very day.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And utter an allegory to the rebellious house and say to them, Thus says the Lord GOD: Set on the pot, set it on, pour in water also;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> put in it the pieces, all the good pieces, the thigh and the shoulder; fill it with choice bones.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Take the choicest one of the flock, pile the logs under it; boil its pieces, seethe also its bones in it. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Therefore thus says the Lord GOD: Woe to the bloody city, the pot whose rust is in it, whose rust has not gone out of it! Empty it piece by piece, making no choice at all. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> For the blood she shed is inside it; she placed it on a bare rock; she did not pour it out on the ground, to cover it with earth.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> To rouse my wrath, to take vengeance, I have placed the blood she shed on a bare rock, so that it may not be covered.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Therefore thus says the Lord GOD: Woe to the bloody city! I will even make the pile great.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Heap up the logs, kindle the fire; boil the meat well, mix in the spices, let the bones be burned.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Stand it empty upon the coals, so that it may become hot, its copper glow, its filth melt in it, its rust be consumed.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> In vain I have wearied myself; its thick rust does not depart. To the fire with its rust! </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Yet, when I cleansed you in your filthy lewdness, you did not become clean from your filth; you shall not again be cleansed until I have satisfied my fury upon you.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> I the LORD have spoken; the time is coming, I will act. I will not refrain, I will not spare, I will not relent. According to your ways and your doings I will judge you, says the Lord GOD.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Mortal, with one blow I am about to take away from you the delight of your eyes; yet you shall not mourn or weep, nor shall your tears run down.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Sigh, but not aloud; make no mourning for the dead. Bind on your turban, and put your sandals on your feet; do not cover your upper lip or eat the bread of mourners. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> So I spoke to the people in the morning, and at evening my wife died. And on the next morning I did as I was commanded.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Then the people said to me, \"Will you not tell us what these things mean for us, that you are acting this way?\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Then I said to them: The word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Say to the house of Israel, Thus says the Lord GOD: I will profane my sanctuary, the pride of your power, the delight of your eyes, and your heart's desire; and your sons and your daughters whom you left behind shall fall by the sword.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> And you shall do as I have done; you shall not cover your upper lip or eat the bread of mourners. </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Your turbans shall be on your heads and your sandals on your feet; you shall not mourn or weep, but you shall pine away in your iniquities and groan to one another.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Thus Ezekiel shall be a sign to you; you shall do just as he has done. When this comes, then you shall know that I am the Lord GOD.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> And you, mortal, on the day when I take from them their stronghold, their joy and glory, the delight of their eyes and their heart's affection, and also their sons and their daughters, </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> on that day, one who has escaped will come to you to report to you the news.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> On that day your mouth shall be opened to the one who has escaped, and you shall speak and no longer be silent. So you shall be a sign to them; and they shall know that I am the LORD.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"25\">\r\n\t\t\t<VERS vnumber=\"1\"> The word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Mortal, set your face toward the Ammonites and prophesy against them.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Say to the Ammonites, Hear the word of the Lord GOD: Thus says the Lord GOD, Because you said, \"Aha!\" over my sanctuary when it was profaned, and over the land of Israel when it was made desolate, and over the house of Judah when it went into exile;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> therefore I am handing you over to the people of the east for a possession. They shall set their encampments among you and pitch their tents in your midst; they shall eat your fruit, and they shall drink your milk.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> I will make Rabbah a pasture for camels and Ammon a fold for flocks. Then you shall know that I am the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For thus says the Lord GOD: Because you have clapped your hands and stamped your feet and rejoiced with all the malice within you against the land of Israel,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> therefore I have stretched out my hand against you, and will hand you over as plunder to the nations. I will cut you off from the peoples and will make you perish out of the countries; I will destroy you. Then you shall know that I am the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Thus says the Lord GOD: Because Moab said, The house of Judah is like all the other nations, </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> therefore I will lay open the flank of Moab from the towns on its frontier, the glory of the country, Beth-jeshimoth, Baal-meon, and Kiriathaim. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> I will give it along with Ammon to the people of the east as a possession. Thus Ammon shall be remembered no more among the nations,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> and I will execute judgments upon Moab. Then they shall know that I am the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Thus says the Lord GOD: Because Edom acted revengefully against the house of Judah and has grievously offended in taking vengeance upon them,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> therefore thus says the Lord GOD, I will stretch out my hand against Edom, and cut off from it humans and animals, and I will make it desolate; from Teman even to Dedan they shall fall by the sword.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> I will lay my vengeance upon Edom by the hand of my people Israel; and they shall act in Edom according to my anger and according to my wrath; and they shall know my vengeance, says the Lord GOD.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Thus says the Lord GOD: Because with unending hostilities the Philistines acted in vengeance, and with malice of heart took revenge in destruction;</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> therefore thus says the Lord GOD, I will stretch out my hand against the Philistines, cut off the Cherethites, and destroy the rest of the seacoast.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> I will execute great vengeance on them with wrathful punishments. Then they shall know that I am the LORD, when I lay my vengeance on them.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"26\">\r\n\t\t\t<VERS vnumber=\"1\"> In the eleventh year, on the first day of the month, the word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Mortal, because Tyre said concerning Jerusalem, \"Aha, broken is the gateway of the peoples; it has swung open to me; I shall be replenished, now that it is wasted,\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> therefore, thus says the Lord GOD: See, I am against you, O Tyre! I will hurl many nations against you, as the sea hurls its waves.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> They shall destroy the walls of Tyre and break down its towers. I will scrape its soil from it and make it a bare rock.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> It shall become, in the midst of the sea, a place for spreading nets. I have spoken, says the Lord GOD. It shall become plunder for the nations,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> and its daughter-towns in the country shall be killed by the sword. Then they shall know that I am the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> For thus says the Lord GOD: I will bring against Tyre from the north King Nebuchadrezzar of Babylon, king of kings, together with horses, chariots, cavalry, and a great and powerful army.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Your daughter-towns in the country he shall put to the sword. He shall set up a siege wall against you, cast up a ramp against you, and raise a roof of shields against you.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> He shall direct the shock of his battering rams against your walls and break down your towers with his axes.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> His horses shall be so many that their dust shall cover you. At the noise of cavalry, wheels, and chariots your very walls shall shake, when he enters your gates like those entering a breached city.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> With the hoofs of his horses he shall trample all your streets. He shall put your people to the sword, and your strong pillars shall fall to the ground.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> They will plunder your riches and loot your merchandise; they shall break down your walls and destroy your fine houses. Your stones and timber and soil they shall cast into the water.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> I will silence the music of your songs; the sound of your lyres shall be heard no more.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> I will make you a bare rock; you shall be a place for spreading nets. You shall never again be rebuilt, for I the LORD have spoken, says the Lord GOD.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Thus says the Lord GOD to Tyre: Shall not the coastlands shake at the sound of your fall, when the wounded groan, when slaughter goes on within you?</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then all the princes of the sea shall step down from their thrones; they shall remove their robes and strip off their embroidered garments. They shall clothe themselves with trembling, and shall sit on the ground; they shall tremble every moment, and be appalled at you.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> And they shall raise a lamentation over you, and say to you: How you have vanished from the seas, O city renowned, once mighty on the sea, you and your inhabitants, who imposed your terror on all the mainland! </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Now the coastlands tremble on the day of your fall; the coastlands by the sea are dismayed at your passing.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> For thus says the Lord GOD: When I make you a city laid waste, like cities that are not inhabited, when I bring up the deep over you, and the great waters cover you,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> then I will thrust you down with those who descend into the Pit, to the people of long ago, and I will make you live in the world below, among primeval ruins, with those who go down to the Pit, so that you will not be inhabited or have a place in the land of the living. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> I will bring you to a dreadful end, and you shall be no more; though sought for, you will never be found again, says the Lord GOD.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"27\">\r\n\t\t\t<VERS vnumber=\"1\"> The word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Now you, mortal, raise a lamentation over Tyre,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> and say to Tyre, which sits at the entrance to the sea, merchant of the peoples on many coastlands, Thus says the Lord GOD: O Tyre, you have said, \"I am perfect in beauty.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Your borders are in the heart of the seas; your builders made perfect your beauty.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> They made all your planks of fir trees from Senir; they took a cedar from Lebanon to make a mast for you.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> From oaks of Bashan they made your oars; they made your deck of pines from the coasts of Cyprus, inlaid with ivory. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Of fine embroidered linen from Egypt was your sail, serving as your ensign; blue and purple from the coasts of Elishah was your awning.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The inhabitants of Sidon and Arvad were your rowers; skilled men of Zemer were within you, they were your pilots. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The elders of Gebal and its artisans were within you, caulking your seams; all the ships of the sea with their mariners were within you, to barter for your wares.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Paras and Lud and Put were in your army, your mighty warriors; they hung shield and helmet in you; they gave you splendor. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Men of Arvad and Helech were on your walls all around; men of Gamad were at your towers. They hung their quivers all around your walls; they made perfect your beauty. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Tarshish did business with you out of the abundance of your great wealth; silver, iron, tin, and lead they exchanged for your wares.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Javan, Tubal, and Meshech traded with you; they exchanged human beings and vessels of bronze for your merchandise.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Beth-togarmah exchanged for your wares horses, war horses, and mules.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The Rhodians traded with you; many coastlands were your own special markets; they brought you in payment ivory tusks and ebony. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Edom did business with you because of your abundant goods; they exchanged for your wares turquoise, purple, embroidered work, fine linen, coral, and rubies. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Judah and the land of Israel traded with you; they exchanged for your merchandise wheat from Minnith, millet, honey, oil, and balm. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Damascus traded with you for your abundant goods-- because of your great wealth of every kind-- wine of Helbon, and white wool.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Vedan and Javan from Uzal entered into trade for your wares; wrought iron, cassia, and sweet cane were bartered for your merchandise. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Dedan traded with you in saddlecloths for riding.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Arabia and all the princes of Kedar were your favored dealers in lambs, rams, and goats; in these they did business with you.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The merchants of Sheba and Raamah traded with you; they exchanged for your wares the best of all kinds of spices, and all precious stones, and gold.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Haran, Canneh, Eden, the merchants of Sheba, Asshur, and Chilmad traded with you.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> These traded with you in choice garments, in clothes of blue and embroidered work, and in carpets of colored material, bound with cords and made secure; in these they traded with you. </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> The ships of Tarshish traveled for you in your trade. So you were filled and heavily laden in the heart of the seas.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Your rowers have brought you into the high seas. The east wind has wrecked you in the heart of the seas.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Your riches, your wares, your merchandise, your mariners and your pilots, your caulkers, your dealers in merchandise, and all your warriors within you, with all the company that is with you, sink into the heart of the seas on the day of your ruin.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> At the sound of the cry of your pilots the countryside shakes,</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> and down from their ships come all that handle the oar. The mariners and all the pilots of the sea stand on the shore</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> and wail aloud over you, and cry bitterly. They throw dust on their heads and wallow in ashes;</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> they make themselves bald for you, and put on sackcloth, and they weep over you in bitterness of soul, with bitter mourning.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> In their wailing they raise a lamentation for you, and lament over you: \"Who was ever destroyed like Tyre in the midst of the sea? </VERS>\r\n\t\t\t<VERS vnumber=\"33\"> When your wares came from the seas, you satisfied many peoples; with your abundant wealth and merchandise you enriched the kings of the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Now you are wrecked by the seas, in the depths of the waters; your merchandise and all your crew have sunk with you.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> All the inhabitants of the coastlands are appalled at you; and their kings are horribly afraid, their faces are convulsed.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> The merchants among the peoples hiss at you; you have come to a dreadful end and shall be no more forever.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"28\">\r\n\t\t\t<VERS vnumber=\"1\"> The word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Mortal, say to the prince of Tyre, Thus says the Lord GOD: Because your heart is proud and you have said, \"I am a god; I sit in the seat of the gods, in the heart of the seas,\" yet you are but a mortal, and no god, though you compare your mind with the mind of a god.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> You are indeed wiser than Daniel; no secret is hidden from you; </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> by your wisdom and your understanding you have amassed wealth for yourself, and have gathered gold and silver into your treasuries.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> By your great wisdom in trade you have increased your wealth, and your heart has become proud in your wealth.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Therefore thus says the Lord GOD: Because you compare your mind with the mind of a god,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> therefore, I will bring strangers against you, the most terrible of the nations; they shall draw their swords against the beauty of your wisdom and defile your splendor.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> They shall thrust you down to the Pit, and you shall die a violent death in the heart of the seas.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Will you still say, \"I am a god,\" in the presence of those who kill you, though you are but a mortal, and no god, in the hands of those who wound you?</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> You shall die the death of the uncircumcised by the hand of foreigners; for I have spoken, says the Lord GOD.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Moreover the word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Mortal, raise a lamentation over the king of Tyre, and say to him, Thus says the Lord GOD: You were the signet of perfection, full of wisdom and perfect in beauty. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> You were in Eden, the garden of God; every precious stone was your covering, carnelian, chrysolite, and moonstone, beryl, onyx, and jasper, sapphire, turquoise, and emerald; and worked in gold were your settings and your engravings. On the day that you were created they were prepared. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> With an anointed cherub as guardian I placed you; you were on the holy mountain of God; you walked among the stones of fire.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> You were blameless in your ways from the day that you were created, until iniquity was found in you.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> In the abundance of your trade you were filled with violence, and you sinned; so I cast you as a profane thing from the mountain of God, and the guardian cherub drove you out from among the stones of fire.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Your heart was proud because of your beauty; you corrupted your wisdom for the sake of your splendor. I cast you to the ground; I exposed you before kings, to feast their eyes on you.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> By the multitude of your iniquities, in the unrighteousness of your trade, you profaned your sanctuaries. So I brought out fire from within you; it consumed you, and I turned you to ashes on the earth in the sight of all who saw you.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> All who know you among the peoples are appalled at you; you have come to a dreadful end and shall be no more forever.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Mortal, set your face toward Sidon, and prophesy against it,</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> and say, Thus says the Lord GOD: I am against you, O Sidon, and I will gain glory in your midst. They shall know that I am the LORD when I execute judgments in it, and manifest my holiness in it;</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> for I will send pestilence into it, and bloodshed into its streets; and the dead shall fall in its midst, by the sword that is against it on every side. And they shall know that I am the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> The house of Israel shall no longer find a pricking brier or a piercing thorn among all their neighbors who have treated them with contempt. And they shall know that I am the Lord GOD.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Thus says the Lord GOD: When I gather the house of Israel from the peoples among whom they are scattered, and manifest my holiness in them in the sight of the nations, then they shall settle on their own soil that I gave to my servant Jacob.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> They shall live in safety in it, and shall build houses and plant vineyards. They shall live in safety, when I execute judgments upon all their neighbors who have treated them with contempt. And they shall know that I am the LORD their God.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"29\">\r\n\t\t\t<VERS vnumber=\"1\"> In the tenth year, in the tenth month, on the twelfth day of the month, the word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Mortal, set your face against Pharaoh king of Egypt, and prophesy against him and against all Egypt;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> speak, and say, Thus says the Lord GOD: I am against you, Pharaoh king of Egypt, the great dragon sprawling in the midst of its channels, saying, \"My Nile is my own; I made it for myself.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> I will put hooks in your jaws, and make the fish of your channels stick to your scales. I will draw you up from your channels, with all the fish of your channels sticking to your scales.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> I will fling you into the wilderness, you and all the fish of your channels; you shall fall in the open field, and not be gathered and buried. To the animals of the earth and to the birds of the air I have given you as food.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then all the inhabitants of Egypt shall know that I am the LORD because you were a staff of reed to the house of Israel; </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> when they grasped you with the hand, you broke, and tore all their shoulders; and when they leaned on you, you broke, and made all their legs unsteady. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Therefore, thus says the Lord GOD: I will bring a sword upon you, and will cut off from you human being and animal;</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> and the land of Egypt shall be a desolation and a waste. Then they shall know that I am the LORD. Because you said, \"The Nile is mine, and I made it,\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> therefore, I am against you, and against your channels, and I will make the land of Egypt an utter waste and desolation, from Migdol to Syene, as far as the border of Ethiopia. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> No human foot shall pass through it, and no animal foot shall pass through it; it shall be uninhabited forty years.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> I will make the land of Egypt a desolation among desolated countries; and her cities shall be a desolation forty years among cities that are laid waste. I will scatter the Egyptians among the nations, and disperse them among the countries.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Further, thus says the Lord GOD: At the end of forty years I will gather the Egyptians from the peoples among whom they were scattered;</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> and I will restore the fortunes of Egypt, and bring them back to the land of Pathros, the land of their origin; and there they shall be a lowly kingdom.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> It shall be the most lowly of the kingdoms, and never again exalt itself above the nations; and I will make them so small that they will never again rule over the nations.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The Egyptians shall never again be the reliance of the house of Israel; they will recall their iniquity, when they turned to them for aid. Then they shall know that I am the Lord GOD. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> In the twenty-seventh year, in the first month, on the first day of the month, the word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Mortal, King Nebuchadrezzar of Babylon made his army labor hard against Tyre; every head was made bald and every shoulder was rubbed bare; yet neither he nor his army got anything from Tyre to pay for the labor that he had expended against it.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Therefore thus says the Lord GOD: I will give the land of Egypt to King Nebuchadrezzar of Babylon; and he shall carry off its wealth and despoil it and plunder it; and it shall be the wages for his army.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> I have given him the land of Egypt as his payment for which he labored, because they worked for me, says the Lord GOD.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> On that day I will cause a horn to sprout up for the house of Israel, and I will open your lips among them. Then they shall know that I am the LORD.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"30\">\r\n\t\t\t<VERS vnumber=\"1\"> The word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Mortal, prophesy, and say, Thus says the Lord GOD: Wail, \"Alas for the day!\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For a day is near, the day of the LORD is near; it will be a day of clouds, a time of doom for the nations. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> A sword shall come upon Egypt, and anguish shall be in Ethiopia, when the slain fall in Egypt, and its wealth is carried away, and its foundations are torn down. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Ethiopia, and Put, and Lud, and all Arabia, and Libya, and the people of the allied land shall fall with them by the sword.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Thus says the LORD: Those who support Egypt shall fall, and its proud might shall come down; from Migdol to Syene they shall fall within it by the sword, says the Lord GOD.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> They shall be desolated among other desolated countries, and their cities shall lie among cities laid waste.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then they shall know that I am the LORD, when I have set fire to Egypt, and all who help it are broken.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> On that day, messengers shall go out from me in ships to terrify the unsuspecting Ethiopians; and anguish shall come upon them on the day of Egypt's doom; for it is coming! </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Thus says the Lord GOD: I will put an end to the hordes of Egypt, by the hand of King Nebuchadrezzar of Babylon.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> He and his people with him, the most terrible of the nations, shall be brought in to destroy the land; and they shall draw their swords against Egypt, and fill the land with the slain.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> I will dry up the channels, and will sell the land into the hand of evildoers; I will bring desolation upon the land and everything in it by the hand of foreigners; I the LORD have spoken.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Thus says the Lord GOD: I will destroy the idols and put an end to the images in Memphis; there shall no longer be a prince in the land of Egypt; so I will put fear in the land of Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> I will make Pathros a desolation, and will set fire to Zoan, and will execute acts of judgment on Thebes.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> I will pour my wrath upon Pelusium, the stronghold of Egypt, and cut off the hordes of Thebes.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> I will set fire to Egypt; Pelusium shall be in great agony; Thebes shall be breached, and Memphis face adversaries by day.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The young men of On and of Pi-beseth shall fall by the sword; and the cities themselves shall go into captivity. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> At Tehaphnehes the day shall be dark, when I break there the dominion of Egypt, and its proud might shall come to an end; the city shall be covered by a cloud, and its daughter-towns shall go into captivity. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Thus I will execute acts of judgment on Egypt. Then they shall know that I am the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> In the eleventh year, in the first month, on the seventh day of the month, the word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Mortal, I have broken the arm of Pharaoh king of Egypt; it has not been bound up for healing or wrapped with a bandage, so that it may become strong to wield the sword.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Therefore thus says the Lord GOD: I am against Pharaoh king of Egypt, and will break his arms, both the strong arm and the one that was broken; and I will make the sword fall from his hand.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> I will scatter the Egyptians among the nations, and disperse them throughout the lands.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> I will strengthen the arms of the king of Babylon, and put my sword in his hand; but I will break the arms of Pharaoh, and he will groan before him with the groans of one mortally wounded.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> I will strengthen the arms of the king of Babylon, but the arms of Pharaoh shall fall. And they shall know that I am the LORD, when I put my sword into the hand of the king of Babylon. He shall stretch it out against the land of Egypt,</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> and I will scatter the Egyptians among the nations and disperse them throughout the countries. Then they shall know that I am the LORD.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"31\">\r\n\t\t\t<VERS vnumber=\"1\"> In the eleventh year, in the third month, on the first day of the month, the word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Mortal, say to Pharaoh king of Egypt and to his hordes: Whom are you like in your greatness?</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Consider Assyria, a cedar of Lebanon, with fair branches and forest shade, and of great height, its top among the clouds. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The waters nourished it, the deep made it grow tall, making its rivers flow around the place it was planted, sending forth its streams to all the trees of the field. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> So it towered high above all the trees of the field; its boughs grew large and its branches long, from abundant water in its shoots.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> All the birds of the air made their nests in its boughs; under its branches all the animals of the field gave birth to their young; and in its shade all great nations lived.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> It was beautiful in its greatness, in the length of its branches; for its roots went down to abundant water.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The cedars in the garden of God could not rival it, nor the fir trees equal its boughs; the plane trees were as nothing compared with its branches; no tree in the garden of God was like it in beauty.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> I made it beautiful with its mass of branches, the envy of all the trees of Eden that were in the garden of God.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Therefore thus says the Lord GOD: Because it towered high and set its top among the clouds, and its heart was proud of its height, </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> I gave it into the hand of the prince of the nations; he has dealt with it as its wickedness deserves. I have cast it out.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Foreigners from the most terrible of the nations have cut it down and left it. On the mountains and in all the valleys its branches have fallen, and its boughs lie broken in all the watercourses of the land; and all the peoples of the earth went away from its shade and left it.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> On its fallen trunk settle all the birds of the air, and among its boughs lodge all the wild animals.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> All this is in order that no trees by the waters may grow to lofty height or set their tops among the clouds, and that no trees that drink water may reach up to them in height. For all of them are handed over to death, to the world below; along with all mortals, with those who go down to the Pit.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Thus says the Lord GOD: On the day it went down to Sheol I closed the deep over it and covered it; I restrained its rivers, and its mighty waters were checked. I clothed Lebanon in gloom for it, and all the trees of the field fainted because of it.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> I made the nations quake at the sound of its fall, when I cast it down to Sheol with those who go down to the Pit; and all the trees of Eden, the choice and best of Lebanon, all that were well watered, were consoled in the world below.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> They also went down to Sheol with it, to those killed by the sword, along with its allies, those who lived in its shade among the nations.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Which among the trees of Eden was like you in glory and in greatness? Now you shall be brought down with the trees of Eden to the world below; you shall lie among the uncircumcised, with those who are killed by the sword. This is Pharaoh and all his horde, says the Lord GOD.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"32\">\r\n\t\t\t<VERS vnumber=\"1\"> In the twelfth year, in the twelfth month, on the first day of the month, the word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Mortal, raise a lamentation over Pharaoh king of Egypt, and say to him: You consider yourself a lion among the nations, but you are like a dragon in the seas; you thrash about in your streams, trouble the water with your feet, and foul your streams. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Thus says the Lord GOD: In an assembly of many peoples I will throw my net over you; and I will haul you up in my dragnet. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> I will throw you on the ground, on the open field I will fling you, and will cause all the birds of the air to settle on you, and I will let the wild animals of the whole earth gorge themselves with you.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> I will strew your flesh on the mountains, and fill the valleys with your carcass. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> I will drench the land with your flowing blood up to the mountains, and the watercourses will be filled with you.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> When I blot you out, I will cover the heavens, and make their stars dark; I will cover the sun with a cloud, and the moon shall not give its light.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> All the shining lights of the heavens I will darken above you, and put darkness on your land, says the Lord GOD.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> I will trouble the hearts of many peoples, as I carry you captive among the nations, into countries you have not known. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> I will make many peoples appalled at you; their kings shall shudder because of you. When I brandish my sword before them, they shall tremble every moment for their lives, each one of them, on the day of your downfall.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> For thus says the Lord GOD: The sword of the king of Babylon shall come against you.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> I will cause your hordes to fall by the swords of mighty ones, all of them most terrible among the nations. They shall bring to ruin the pride of Egypt, and all its hordes shall perish.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> I will destroy all its livestock from beside abundant waters; and no human foot shall trouble them any more, nor shall the hoofs of cattle trouble them.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then I will make their waters clear, and cause their streams to run like oil, says the Lord GOD.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> When I make the land of Egypt desolate and when the land is stripped of all that fills it, when I strike down all who live in it, then they shall know that I am the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> This is a lamentation; it shall be chanted. The women of the nations shall chant it. Over Egypt and all its hordes they shall chant it, says the Lord GOD.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> In the twelfth year, in the first month, on the fifteenth day of the month, the word of the LORD came to me: </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Mortal, wail over the hordes of Egypt, and send them down, with Egypt and the daughters of majestic nations, to the world below, with those who go down to the Pit. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> \"Whom do you surpass in beauty? Go down! Be laid to rest with the uncircumcised!\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> They shall fall among those who are killed by the sword. Egypt has been handed over to the sword; carry away both it and its hordes. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> The mighty chiefs shall speak of them, with their helpers, out of the midst of Sheol: \"They have come down, they lie still, the uncircumcised, killed by the sword.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Assyria is there, and all its company, their graves all around it, all of them killed, fallen by the sword.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Their graves are set in the uttermost parts of the Pit. Its company is all around its grave, all of them killed, fallen by the sword, who spread terror in the land of the living.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Elam is there, and all its hordes around its grave; all of them killed, fallen by the sword, who went down uncircumcised into the world below, who spread terror in the land of the living. They bear their shame with those who go down to the Pit.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> They have made Elam a bed among the slain with all its hordes, their graves all around it, all of them uncircumcised, killed by the sword; for terror of them was spread in the land of the living, and they bear their shame with those who go down to the Pit; they are placed among the slain. </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Meshech and Tubal are there, and all their multitude, their graves all around them, all of them uncircumcised, killed by the sword; for they spread terror in the land of the living.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> And they do not lie with the fallen warriors of long ago who went down to Sheol with their weapons of war, whose swords were laid under their heads, and whose shields are upon their bones; for the terror of the warriors was in the land of the living. </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> So you shall be broken and lie among the uncircumcised, with those who are killed by the sword.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Edom is there, its kings and all its princes, who for all their might are laid with those who are killed by the sword; they lie with the uncircumcised, with those who go down to the Pit.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> The princes of the north are there, all of them, and all the Sidonians, who have gone down in shame with the slain, for all the terror that they caused by their might; they lie uncircumcised with those who are killed by the sword, and bear their shame with those who go down to the Pit.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> When Pharaoh sees them, he will be consoled for all his hordes-- Pharaoh and all his army, killed by the sword, says the Lord GOD.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> For he spread terror in the land of the living; therefore he shall be laid to rest among the uncircumcised, with those who are slain by the sword-- Pharaoh and all his multitude, says the Lord GOD.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"33\">\r\n\t\t\t<VERS vnumber=\"1\"> The word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> O Mortal, speak to your people and say to them, If I bring the sword upon a land, and the people of the land take one of their number as their sentinel;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> and if the sentinel sees the sword coming upon the land and blows the trumpet and warns the people;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> then if any who hear the sound of the trumpet do not take warning, and the sword comes and takes them away, their blood shall be upon their own heads.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> They heard the sound of the trumpet and did not take warning; their blood shall be upon themselves. But if they had taken warning, they would have saved their lives.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> But if the sentinel sees the sword coming and does not blow the trumpet, so that the people are not warned, and the sword comes and takes any of them, they are taken away in their iniquity, but their blood I will require at the sentinel's hand.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> So you, mortal, I have made a sentinel for the house of Israel; whenever you hear a word from my mouth, you shall give them warning from me.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> If I say to the wicked, \"O wicked ones, you shall surely die,\" and you do not speak to warn the wicked to turn from their ways, the wicked shall die in their iniquity, but their blood I will require at your hand.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> But if you warn the wicked to turn from their ways, and they do not turn from their ways, the wicked shall die in their iniquity, but you will have saved your life.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Now you, mortal, say to the house of Israel, Thus you have said: \"Our transgressions and our sins weigh upon us, and we waste away because of them; how then can we live?\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Say to them, As I live, says the Lord GOD, I have no pleasure in the death of the wicked, but that the wicked turn from their ways and live; turn back, turn back from your evil ways; for why will you die, O house of Israel?</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> And you, mortal, say to your people, The righteousness of the righteous shall not save them when they transgress; and as for the wickedness of the wicked, it shall not make them stumble when they turn from their wickedness; and the righteous shall not be able to live by their righteousness when they sin. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Though I say to the righteous that they shall surely live, yet if they trust in their righteousness and commit iniquity, none of their righteous deeds shall be remembered; but in the iniquity that they have committed they shall die.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Again, though I say to the wicked, \"You shall surely die,\" yet if they turn from their sin and do what is lawful and right--</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> if the wicked restore the pledge, give back what they have taken by robbery, and walk in the statutes of life, committing no iniquity-- they shall surely live, they shall not die.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> None of the sins that they have committed shall be remembered against them; they have done what is lawful and right, they shall surely live.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Yet your people say, \"The way of the Lord is not just,\" when it is their own way that is not just.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> When the righteous turn from their righteousness, and commit iniquity, they shall die for it. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> And when the wicked turn from their wickedness, and do what is lawful and right, they shall live by it. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Yet you say, \"The way of the Lord is not just.\" O house of Israel, I will judge all of you according to your ways!</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> In the twelfth year of our exile, in the tenth month, on the fifth day of the month, someone who had escaped from Jerusalem came to me and said, \"The city has fallen.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Now the hand of the LORD had been upon me the evening before the fugitive came; but he had opened my mouth by the time the fugitive came to me in the morning; so my mouth was opened, and I was no longer unable to speak.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> The word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Mortal, the inhabitants of these waste places in the land of Israel keep saying, \"Abraham was only one man, yet he got possession of the land; but we are many; the land is surely given us to possess.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Therefore say to them, Thus says the Lord GOD: You eat flesh with the blood, and lift up your eyes to your idols, and shed blood; shall you then possess the land?</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> You depend on your swords, you commit abominations, and each of you defiles his neighbor's wife; shall you then possess the land?</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Say this to them, Thus says the Lord GOD: As I live, surely those who are in the waste places shall fall by the sword; and those who are in the open field I will give to the wild animals to be devoured; and those who are in strongholds and in caves shall die by pestilence.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> I will make the land a desolation and a waste, and its proud might shall come to an end; and the mountains of Israel shall be so desolate that no one will pass through.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Then they shall know that I am the LORD, when I have made the land a desolation and a waste because of all their abominations that they have committed.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> As for you, mortal, your people who talk together about you by the walls, and at the doors of the houses, say to one another, each to a neighbor, \"Come and hear what the word is that comes from the LORD.\"</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> They come to you as people come, and they sit before you as my people, and they hear your words, but they will not obey them. For flattery is on their lips, but their heart is set on their gain.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> To them you are like a singer of love songs, one who has a beautiful voice and plays well on an instrument; they hear what you say, but they will not do it. </VERS>\r\n\t\t\t<VERS vnumber=\"33\"> When this comes-- and come it will!-- then they shall know that a prophet has been among them.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"34\">\r\n\t\t\t<VERS vnumber=\"1\"> The word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Mortal, prophesy against the shepherds of Israel: prophesy, and say to them-- to the shepherds: Thus says the Lord GOD: Ah, you shepherds of Israel who have been feeding yourselves! Should not shepherds feed the sheep?</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> You eat the fat, you clothe yourselves with the wool, you slaughter the fatlings; but you do not feed the sheep.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> You have not strengthened the weak, you have not healed the sick, you have not bound up the injured, you have not brought back the strayed, you have not sought the lost, but with force and harshness you have ruled them.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> So they were scattered, because there was no shepherd; and scattered, they became food for all the wild animals.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> My sheep were scattered, they wandered over all the mountains and on every high hill; my sheep were scattered over all the face of the earth, with no one to search or seek for them.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Therefore, you shepherds, hear the word of the LORD:</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> As I live, says the Lord GOD, because my sheep have become a prey, and my sheep have become food for all the wild animals, since there was no shepherd; and because my shepherds have not searched for my sheep, but the shepherds have fed themselves, and have not fed my sheep;</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> therefore, you shepherds, hear the word of the LORD:</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Thus says the Lord GOD, I am against the shepherds; and I will demand my sheep at their hand, and put a stop to their feeding the sheep; no longer shall the shepherds feed themselves. I will rescue my sheep from their mouths, so that they may not be food for them.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> For thus says the Lord GOD: I myself will search for my sheep, and will seek them out.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> As shepherds seek out their flocks when they are among their scattered sheep, so I will seek out my sheep. I will rescue them from all the places to which they have been scattered on a day of clouds and thick darkness.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> I will bring them out from the peoples and gather them from the countries, and will bring them into their own land; and I will feed them on the mountains of Israel, by the watercourses, and in all the inhabited parts of the land.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> I will feed them with good pasture, and the mountain heights of Israel shall be their pasture; there they shall lie down in good grazing land, and they shall feed on rich pasture on the mountains of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> I myself will be the shepherd of my sheep, and I will make them lie down, says the Lord GOD.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> I will seek the lost, and I will bring back the strayed, and I will bind up the injured, and I will strengthen the weak, but the fat and the strong I will destroy. I will feed them with justice.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> As for you, my flock, thus says the Lord GOD: I shall judge between sheep and sheep, between rams and goats:</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Is it not enough for you to feed on the good pasture, but you must tread down with your feet the rest of your pasture? When you drink of clear water, must you foul the rest with your feet?</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> And must my sheep eat what you have trodden with your feet, and drink what you have fouled with your feet?</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Therefore, thus says the Lord GOD to them: I myself will judge between the fat sheep and the lean sheep.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Because you pushed with flank and shoulder, and butted at all the weak animals with your horns until you scattered them far and wide,</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> I will save my flock, and they shall no longer be ravaged; and I will judge between sheep and sheep.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> I will set up over them one shepherd, my servant David, and he shall feed them: he shall feed them and be their shepherd.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> And I, the LORD, will be their God, and my servant David shall be prince among them; I, the LORD, have spoken.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> I will make with them a covenant of peace and banish wild animals from the land, so that they may live in the wild and sleep in the woods securely.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> I will make them and the region around my hill a blessing; and I will send down the showers in their season; they shall be showers of blessing.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> The trees of the field shall yield their fruit, and the earth shall yield its increase. They shall be secure on their soil; and they shall know that I am the LORD, when I break the bars of their yoke, and save them from the hands of those who enslaved them.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> They shall no more be plunder for the nations, nor shall the animals of the land devour them; they shall live in safety, and no one shall make them afraid.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> I will provide for them a splendid vegetation so that they shall no more be consumed with hunger in the land, and no longer suffer the insults of the nations.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> They shall know that I, the LORD their God, am with them, and that they, the house of Israel, are my people, says the Lord GOD.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> You are my sheep, the sheep of my pasture and I am your God, says the Lord GOD. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"35\">\r\n\t\t\t<VERS vnumber=\"1\"> The word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Mortal, set your face against Mount Seir, and prophesy against it,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> and say to it, Thus says the Lord GOD: I am against you, Mount Seir; I stretch out my hand against you to make you a desolation and a waste.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> I lay your towns in ruins; you shall become a desolation, and you shall know that I am the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Because you cherished an ancient enmity, and gave over the people of Israel to the power of the sword at the time of their calamity, at the time of their final punishment;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> therefore, as I live, says the Lord GOD, I will prepare you for blood, and blood shall pursue you; since you did not hate bloodshed, bloodshed shall pursue you.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> I will make Mount Seir a waste and a desolation; and I will cut off from it all who come and go.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> I will fill its mountains with the slain; on your hills and in your valleys and in all your watercourses those killed with the sword shall fall.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> I will make you a perpetual desolation, and your cities shall never be inhabited. Then you shall know that I am the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Because you said, \"These two nations and these two countries shall be mine, and we will take possession of them,\"-- although the LORD was there--</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> therefore, as I live, says the Lord GOD, I will deal with you according to the anger and envy that you showed because of your hatred against them; and I will make myself known among you, when I judge you. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> You shall know that I, the LORD, have heard all the abusive speech that you uttered against the mountains of Israel, saying, \"They are laid desolate, they are given us to devour.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And you magnified yourselves against me with your mouth, and multiplied your words against me; I heard it.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Thus says the Lord GOD: As the whole earth rejoices, I will make you desolate.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> As you rejoiced over the inheritance of the house of Israel, because it was desolate, so I will deal with you; you shall be desolate, Mount Seir, and all Edom, all of it. Then they shall know that I am the LORD.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"36\">\r\n\t\t\t<VERS vnumber=\"1\"> And you, mortal, prophesy to the mountains of Israel, and say: O mountains of Israel, hear the word of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Thus says the Lord GOD: Because the enemy said of you, \"Aha!\" and, \"The ancient heights have become our possession,\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> therefore prophesy, and say: Thus says the Lord GOD: Because they made you desolate indeed, and crushed you from all sides, so that you became the possession of the rest of the nations, and you became an object of gossip and slander among the people;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> therefore, O mountains of Israel, hear the word of the Lord GOD: Thus says the Lord GOD to the mountains and the hills, the watercourses and the valleys, the desolate wastes and the deserted towns, which have become a source of plunder and an object of derision to the rest of the nations all around;</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> therefore thus says the Lord GOD: I am speaking in my hot jealousy against the rest of the nations, and against all Edom, who, with wholehearted joy and utter contempt, took my land as their possession, because of its pasture, to plunder it.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Therefore prophesy concerning the land of Israel, and say to the mountains and hills, to the watercourses and valleys, Thus says the Lord GOD: I am speaking in my jealous wrath, because you have suffered the insults of the nations;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> therefore thus says the Lord GOD: I swear that the nations that are all around you shall themselves suffer insults.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But you, O mountains of Israel, shall shoot out your branches, and yield your fruit to my people Israel; for they shall soon come home.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> See now, I am for you; I will turn to you, and you shall be tilled and sown;</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> and I will multiply your population, the whole house of Israel, all of it; the towns shall be inhabited and the waste places rebuilt;</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> and I will multiply human beings and animals upon you. They shall increase and be fruitful; and I will cause you to be inhabited as in your former times, and will do more good to you than ever before. Then you shall know that I am the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> I will lead people upon you-- my people Israel-- and they shall possess you, and you shall be their inheritance. No longer shall you bereave them of children.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Thus says the Lord GOD: Because they say to you, \"You devour people, and you bereave your nation of children,\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> therefore you shall no longer devour people and no longer bereave your nation of children, says the Lord GOD;</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> and no longer will I let you hear the insults of the nations, no longer shall you bear the disgrace of the peoples; and no longer shall you cause your nation to stumble, says the Lord GOD.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Mortal, when the house of Israel lived on their own soil, they defiled it with their ways and their deeds; their conduct in my sight was like the uncleanness of a woman in her menstrual period.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> So I poured out my wrath upon them for the blood that they had shed upon the land, and for the idols with which they had defiled it.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> I scattered them among the nations, and they were dispersed through the countries; in accordance with their conduct and their deeds I judged them.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> But when they came to the nations, wherever they came, they profaned my holy name, in that it was said of them, \"These are the people of the LORD, and yet they had to go out of his land.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> But I had concern for my holy name, which the house of Israel had profaned among the nations to which they came.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Therefore say to the house of Israel, Thus says the Lord GOD: It is not for your sake, O house of Israel, that I am about to act, but for the sake of my holy name, which you have profaned among the nations to which you came.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> I will sanctify my great name, which has been profaned among the nations, and which you have profaned among them; and the nations shall know that I am the LORD, says the Lord GOD, when through you I display my holiness before their eyes.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> I will take you from the nations, and gather you from all the countries, and bring you into your own land.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> I will sprinkle clean water upon you, and you shall be clean from all your uncleannesses, and from all your idols I will cleanse you.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> A new heart I will give you, and a new spirit I will put within you; and I will remove from your body the heart of stone and give you a heart of flesh.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> I will put my spirit within you, and make you follow my statutes and be careful to observe my ordinances.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Then you shall live in the land that I gave to your ancestors; and you shall be my people, and I will be your God.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> I will save you from all your uncleannesses, and I will summon the grain and make it abundant and lay no famine upon you.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> I will make the fruit of the tree and the produce of the field abundant, so that you may never again suffer the disgrace of famine among the nations.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Then you shall remember your evil ways, and your dealings that were not good; and you shall loathe yourselves for your iniquities and your abominable deeds.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> It is not for your sake that I will act, says the Lord GOD; let that be known to you. Be ashamed and dismayed for your ways, O house of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Thus says the Lord GOD: On the day that I cleanse you from all your iniquities, I will cause the towns to be inhabited, and the waste places shall be rebuilt.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> The land that was desolate shall be tilled, instead of being the desolation that it was in the sight of all who passed by.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> And they will say, \"This land that was desolate has become like the garden of Eden; and the waste and desolate and ruined towns are now inhabited and fortified.\"</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Then the nations that are left all around you shall know that I, the LORD, have rebuilt the ruined places, and replanted that which was desolate; I, the LORD, have spoken, and I will do it.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Thus says the Lord GOD: I will also let the house of Israel ask me to do this for them: to increase their population like a flock.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Like the flock for sacrifices, like the flock at Jerusalem during her appointed festivals, so shall the ruined towns be filled with flocks of people. Then they shall know that I am the LORD. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"37\">\r\n\t\t\t<VERS vnumber=\"1\"> The hand of the LORD came upon me, and he brought me out by the spirit of the LORD and set me down in the middle of a valley; it was full of bones.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He led me all around them; there were very many lying in the valley, and they were very dry.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> He said to me, \"Mortal, can these bones live?\" I answered, \"O Lord GOD, you know.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then he said to me, \"Prophesy to these bones, and say to them: O dry bones, hear the word of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Thus says the Lord GOD to these bones: I will cause breath to enter you, and you shall live. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> I will lay sinews on you, and will cause flesh to come upon you, and cover you with skin, and put breath in you, and you shall live; and you shall know that I am the LORD.\" </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> So I prophesied as I had been commanded; and as I prophesied, suddenly there was a noise, a rattling, and the bones came together, bone to its bone.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> I looked, and there were sinews on them, and flesh had come upon them, and skin had covered them; but there was no breath in them.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then he said to me, \"Prophesy to the breath, prophesy, mortal, and say to the breath: Thus says the Lord GOD: Come from the four winds, O breath, and breathe upon these slain, that they may live.\" </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> I prophesied as he commanded me, and the breath came into them, and they lived, and stood on their feet, a vast multitude.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then he said to me, \"Mortal, these bones are the whole house of Israel. They say, 'Our bones are dried up, and our hope is lost; we are cut off completely.'</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Therefore prophesy, and say to them, Thus says the Lord GOD: I am going to open your graves, and bring you up from your graves, O my people; and I will bring you back to the land of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And you shall know that I am the LORD, when I open your graves, and bring you up from your graves, O my people.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> I will put my spirit within you, and you shall live, and I will place you on your own soil; then you shall know that I, the LORD, have spoken and will act, says the LORD.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Mortal, take a stick and write on it, \"For Judah, and the Israelites associated with it\"; then take another stick and write on it, \"For Joseph (the stick of Ephraim) and all the house of Israel associated with it\";</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> and join them together into one stick, so that they may become one in your hand.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> And when your people say to you, \"Will you not show us what you mean by these?\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> say to them, Thus says the Lord GOD: I am about to take the stick of Joseph (which is in the hand of Ephraim) and the tribes of Israel associated with it; and I will put the stick of Judah upon it, and make them one stick, in order that they may be one in my hand. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> When the sticks on which you write are in your hand before their eyes,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> then say to them, Thus says the Lord GOD: I will take the people of Israel from the nations among which they have gone, and will gather them from every quarter, and bring them to their own land.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> I will make them one nation in the land, on the mountains of Israel; and one king shall be king over them all. Never again shall they be two nations, and never again shall they be divided into two kingdoms.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> They shall never again defile themselves with their idols and their detestable things, or with any of their transgressions. I will save them from all the apostasies into which they have fallen, and will cleanse them. Then they shall be my people, and I will be their God. </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> My servant David shall be king over them; and they shall all have one shepherd. They shall follow my ordinances and be careful to observe my statutes.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> They shall live in the land that I gave to my servant Jacob, in which your ancestors lived; they and their children and their children's children shall live there forever; and my servant David shall be their prince forever.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> I will make a covenant of peace with them; it shall be an everlasting covenant with them; and I will bless them and multiply them, and will set my sanctuary among them forevermore. </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> My dwelling place shall be with them; and I will be their God, and they shall be my people.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Then the nations shall know that I the LORD sanctify Israel, when my sanctuary is among them forevermore.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"38\">\r\n\t\t\t<VERS vnumber=\"1\"> The word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Mortal, set your face toward Gog, of the land of Magog, the chief prince of Meshech and Tubal. Prophesy against him</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> and say: Thus says the Lord GOD: I am against you, O Gog, chief prince of Meshech and Tubal;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> I will turn you around and put hooks into your jaws, and I will lead you out with all your army, horses and horsemen, all of them clothed in full armor, a great company, all of them with shield and buckler, wielding swords.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Persia, Ethiopia, and Put are with them, all of them with buckler and helmet; </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Gomer and all its troops; Beth-togarmah from the remotest parts of the north with all its troops-- many peoples are with you.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Be ready and keep ready, you and all the companies that are assembled around you, and hold yourselves in reserve for them.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> After many days you shall be mustered; in the latter years you shall go against a land restored from war, a land where people were gathered from many nations on the mountains of Israel, which had long lain waste; its people were brought out from the nations and now are living in safety, all of them.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> You shall advance, coming on like a storm; you shall be like a cloud covering the land, you and all your troops, and many peoples with you.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Thus says the Lord GOD: On that day thoughts will come into your mind, and you will devise an evil scheme.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> You will say, \"I will go up against the land of unwalled villages; I will fall upon the quiet people who live in safety, all of them living without walls, and having no bars or gates\";</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> to seize spoil and carry off plunder; to assail the waste places that are now inhabited, and the people who were gathered from the nations, who are acquiring cattle and goods, who live at the center of the earth. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Sheba and Dedan and the merchants of Tarshish and all its young warriors will say to you, \"Have you come to seize spoil? Have you assembled your horde to carry off plunder, to carry away silver and gold, to take away cattle and goods, to seize a great amount of booty?\" </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Therefore, mortal, prophesy, and say to Gog: Thus says the Lord GOD: On that day when my people Israel are living securely, you will rouse yourself </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> and come from your place out of the remotest parts of the north, you and many peoples with you, all of them riding on horses, a great horde, a mighty army;</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> you will come up against my people Israel, like a cloud covering the earth. In the latter days I will bring you against my land, so that the nations may know me, when through you, O Gog, I display my holiness before their eyes.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Thus says the Lord GOD: Are you he of whom I spoke in former days by my servants the prophets of Israel, who in those days prophesied for years that I would bring you against them?</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> On that day, when Gog comes against the land of Israel, says the Lord GOD, my wrath shall be aroused.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> For in my jealousy and in my blazing wrath I declare: On that day there shall be a great shaking in the land of Israel;</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> the fish of the sea, and the birds of the air, and the animals of the field, and all creeping things that creep on the ground, and all human beings that are on the face of the earth, shall quake at my presence, and the mountains shall be thrown down, and the cliffs shall fall, and every wall shall tumble to the ground.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> I will summon the sword against Gog in all my mountains, says the Lord GOD; the swords of all will be against their comrades. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> With pestilence and bloodshed I will enter into judgment with him; and I will pour down torrential rains and hailstones, fire and sulfur, upon him and his troops and the many peoples that are with him.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> So I will display my greatness and my holiness and make myself known in the eyes of many nations. Then they shall know that I am the LORD.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"39\">\r\n\t\t\t<VERS vnumber=\"1\"> And you, mortal, prophesy against Gog, and say: Thus says the Lord GOD: I am against you, O Gog, chief prince of Meshech and Tubal!</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> I will turn you around and drive you forward, and bring you up from the remotest parts of the north, and lead you against the mountains of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> I will strike your bow from your left hand, and will make your arrows drop out of your right hand.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> You shall fall upon the mountains of Israel, you and all your troops and the peoples that are with you; I will give you to birds of prey of every kind and to the wild animals to be devoured.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> You shall fall in the open field; for I have spoken, says the Lord GOD.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> I will send fire on Magog and on those who live securely in the coastlands; and they shall know that I am the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> My holy name I will make known among my people Israel; and I will not let my holy name be profaned any more; and the nations shall know that I am the LORD, the Holy One in Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> It has come! It has happened, says the Lord GOD. This is the day of which I have spoken.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then those who live in the towns of Israel will go out and make fires of the weapons and burn them-- bucklers and shields, bows and arrows, handpikes and spears-- and they will make fires of them for seven years.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> They will not need to take wood out of the field or cut down any trees in the forests, for they will make their fires of the weapons; they will despoil those who despoiled them, and plunder those who plundered them, says the Lord GOD.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> On that day I will give to Gog a place for burial in Israel, the Valley of the Travelers east of the sea; it shall block the path of the travelers, for there Gog and all his horde will be buried; it shall be called the Valley of Hamon-gog. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Seven months the house of Israel shall spend burying them, in order to cleanse the land.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> All the people of the land shall bury them; and it will bring them honor on the day that I show my glory, says the Lord GOD.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> They will set apart men to pass through the land regularly and bury any invaders who remain on the face of the land, so as to cleanse it; for seven months they shall make their search. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> As the searchers pass through the land, anyone who sees a human bone shall set up a sign by it, until the buriers have buried it in the Valley of Hamon-gog. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> (A city Hamonah is there also.) Thus they shall cleanse the land. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> As for you, mortal, thus says the Lord GOD: Speak to the birds of every kind and to all the wild animals: Assemble and come, gather from all around to the sacrificial feast that I am preparing for you, a great sacrificial feast on the mountains of Israel, and you shall eat flesh and drink blood.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> You 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 bulls, all of them fatlings of Bashan.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> You shall eat fat until you are filled, and drink blood until you are drunk, at the sacrificial feast that I am preparing for you.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> And you shall be filled at my table with horses and charioteers, with warriors and all kinds of soldiers, says the Lord GOD. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> I will display my glory among the nations; and all the nations shall see my judgment that I have executed, and my hand that I have laid on them.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The house of Israel shall know that I am the LORD their God, from that day forward.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> And the nations shall know that the house of Israel went into captivity for their iniquity, because they dealt treacherously with me. So I hid my face from them and gave them into the hand of their adversaries, and they all fell by the sword.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> I dealt with them according to their uncleanness and their transgressions, and hid my face from them.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Therefore thus says the Lord GOD: Now I will restore the fortunes of Jacob, and have mercy on the whole house of Israel; and I will be jealous for my holy name.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> They shall forget their shame, and all the treachery they have practiced against me, when they live securely in their land with no one to make them afraid, </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> when I have brought them back from the peoples and gathered them from their enemies' lands, and through them have displayed my holiness in the sight of many nations.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Then they shall know that I am the LORD their God because I sent them into exile among the nations, and then gathered them into their own land. I will leave none of them behind;</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> and I will never again hide my face from them, when I pour out my spirit upon the house of Israel, says the Lord GOD.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"40\">\r\n\t\t\t<VERS vnumber=\"1\"> In the twenty-fifth year of our exile, at the beginning of the year, on the tenth day of the month, in the fourteenth year after the city was struck down, on that very day, the hand of the LORD was upon me, and he brought me there.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He brought me, in visions of God, to the land of Israel, and set me down upon a very high mountain, on which was a structure like a city to the south.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> When he brought me there, a man was there, whose appearance shone like bronze, with a linen cord and a measuring reed in his hand; and he was standing in the gateway.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The man said to me, \"Mortal, look closely and listen attentively, and set your mind upon all that I shall show you, for you were brought here in order that I might show it to you; declare all that you see to the house of Israel.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Now there was a wall all around the outside of the temple area. The length of the measuring reed in the man's hand was six long cubits, each being a cubit and a handbreadth in length; so he measured the thickness of the wall, one reed; and the height, one reed.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then he went into the gateway facing east, going up its steps, and measured the threshold of the gate, one reed deep. There were </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> recesses, and each recess was one reed wide and one reed deep; and the space between the recesses, five cubits; and the threshold of the gate by the vestibule of the gate at the inner end was one reed deep.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then he measured the inner vestibule of the gateway, one cubit.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then he measured the vestibule of the gateway, eight cubits; and its pilasters, two cubits; and the vestibule of the gate was at the inner end.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> There were three recesses on either side of the east gate; the three were of the same size; and the pilasters on either side were of the same size.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then he measured the width of the opening of the gateway, ten cubits; and the width of the gateway, thirteen cubits.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> There was a barrier before the recesses, one cubit on either side; and the recesses were six cubits on either side.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then he measured the gate from the back of the one recess to the back of the other, a width of twenty-five cubits, from wall to wall. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> He measured also the vestibule, twenty cubits; and the gate next to the pilaster on every side of the court. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> From the front of the gate at the entrance to the end of the inner vestibule of the gate was fifty cubits.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The recesses and their pilasters had windows, with shutters on the inside of the gateway all around, and the vestibules also had windows on the inside all around; and on the pilasters were palm trees. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then he brought me into the outer court; there were chambers there, and a pavement, all around the court; thirty chambers fronted on the pavement.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The pavement ran along the side of the gates, corresponding to the length of the gates; this was the lower pavement.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Then he measured the distance from the inner front of the lower gate to the outer front of the inner court, one hundred cubits. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Then he measured the gate of the outer court that faced north-- its depth and width.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Its recesses, three on either side, and its pilasters and its vestibule were of the same size as those of the first gate; its depth was fifty cubits, and its width twenty-five cubits.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Its windows, its vestibule, and its palm trees were of the same size as those of the gate that faced toward the east. Seven steps led up to it; and its vestibule was on the inside.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Opposite the gate on the north, as on the east, was a gate to the inner court; he measured from gate to gate, one hundred cubits.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Then he led me toward the south, and there was a gate on the south; and he measured its pilasters and its vestibule; they had the same dimensions as the others.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> There were windows all around in it and in its vestibule, like the windows of the others; its depth was fifty cubits, and its width twenty-five cubits.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> There were seven steps leading up to it; its vestibule was on the inside. It had palm trees on its pilasters, one on either side. </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> There was a gate on the south of the inner court; and he measured from gate to gate toward the south, one hundred cubits.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Then he brought me to the inner court by the south gate, and he measured the south gate; it was of the same dimensions as the others.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Its recesses, its pilasters, and its vestibule were of the same size as the others; and there were windows all around in it and in its vestibule; its depth was fifty cubits, and its width twenty-five cubits.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> There were vestibules all around, twenty-five cubits deep and five cubits wide.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Its vestibule faced the outer court, and palm trees were on its pilasters, and its stairway had eight steps.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Then he brought me to the inner court on the east side, and he measured the gate; it was of the same size as the others.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Its recesses, its pilasters, and its vestibule were of the same dimensions as the others; and there were windows all around in it and in its vestibule; its depth was fifty cubits, and its width twenty-five cubits.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Its vestibule faced the outer court, and it had palm trees on its pilasters, on either side; and its stairway had eight steps.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Then he brought me to the north gate, and he measured it; it had the same dimensions as the others.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Its recesses, its pilasters, and its vestibule were of the same size as the others; and it had windows all around. Its depth was fifty cubits, and its width twenty-five cubits.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Its vestibule faced the outer court, and it had palm trees on its pilasters, on either side; and its stairway had eight steps. </VERS>\r\n\t\t\t<VERS vnumber=\"38\"> There was a chamber with its door in the vestibule of the gate, where the burnt offering was to be washed. </VERS>\r\n\t\t\t<VERS vnumber=\"39\"> And in the vestibule of the gate were two tables on either side, on which the burnt offering and the sin offering and the guilt offering were to be slaughtered.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> On the outside of the vestibule at the entrance of the north gate were two tables; and on the other side of the vestibule of the gate were two tables. </VERS>\r\n\t\t\t<VERS vnumber=\"41\"> Four tables were on the inside, and four tables on the outside of the side of the gate, eight tables, on which the sacrifices were to be slaughtered.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> There were also four tables of hewn stone for the burnt offering, a cubit and a half long, and one cubit and a half wide, and one cubit high, on which the instruments were to be laid with which the burnt offerings and the sacrifices were slaughtered.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> There were pegs, one handbreadth long, fastened all around the inside. And on the tables the flesh of the offering was to be laid.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> On the outside of the inner gateway there were chambers for the singers in the inner court, one at the side of the north gate facing south, the other at the side of the east gate facing north. </VERS>\r\n\t\t\t<VERS vnumber=\"45\"> He said to me, \"This chamber that faces south is for the priests who have charge of the temple,</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> and the chamber that faces north is for the priests who have charge of the altar; these are the descendants of Zadok, who alone among the descendants of Levi may come near to the LORD to minister to him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> He measured the court, one hundred cubits deep, and one hundred cubits wide, a square; and the altar was in front of the temple.</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> Then he brought me to the vestibule of the temple and measured the pilasters of the vestibule, five cubits on either side; and the width of the gate was fourteen cubits; and the sidewalls of the gate were three cubits on either side. </VERS>\r\n\t\t\t<VERS vnumber=\"49\"> The depth of the vestibule was twenty cubits, and the width twelve cubits; ten steps led up to it; and there were pillars beside the pilasters on either side. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"41\">\r\n\t\t\t<VERS vnumber=\"1\"> Then he brought me to the nave, and measured the pilasters; on each side six cubits was the width of the pilasters. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The width of the entrance was ten cubits; and the sidewalls of the entrance were five cubits on either side. He measured the length of the nave, forty cubits, and its width, twenty cubits.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then he went into the inner room and measured the pilasters of the entrance, two cubits; and the width of the entrance, six cubits; and the sidewalls of the entrance, seven cubits. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> He measured the depth of the room, twenty cubits, and its width, twenty cubits, beyond the nave. And he said to me, This is the most holy place.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then he measured the wall of the temple, six cubits thick; and the width of the side chambers, four cubits, all around the temple.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The side chambers were in three stories, one over another, thirty in each story. There were offsets all around the wall of the temple to serve as supports for the side chambers, so that they should not be supported by the wall of the temple. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The passageway of the side chambers widened from story to story; for the structure was supplied with a stairway all around the temple. For this reason the structure became wider from story to story. One ascended from the bottom story to the uppermost story by way of the middle one. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> I saw also that the temple had a raised platform all around; the foundations of the side chambers measured a full reed of six long cubits.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The thickness of the outer wall of the side chambers was five cubits; and the free space between the side chambers of the temple</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> and the chambers of the court was a width of twenty cubits all around the temple on every side.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The side chambers opened onto the area left free, one door toward the north, and another door toward the south; and the width of the part that was left free was five cubits all around.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The building that was facing the temple yard on the west side was seventy cubits wide; and the wall of the building was five cubits thick all around, and its depth ninety cubits.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then he measured the temple, one hundred cubits deep; and the yard and the building with its walls, one hundred cubits deep;</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> also the width of the east front of the temple and the yard, one hundred cubits.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Then he measured the depth of the building facing the yard at the west, together with its galleries on either side, one hundred cubits. The nave of the temple and the inner room and the outer vestibule </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> were paneled, and, all around, all three had windows with recessed frames. Facing the threshold the temple was paneled with wood all around, from the floor up to the windows (now the windows were covered), </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> to the space above the door, even to the inner room, and on the outside. And on all the walls all around in the inner room and the nave there was a pattern. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> It was formed of cherubim and palm trees, a palm tree between cherub and cherub. Each cherub had two faces:</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> a human face turned toward the palm tree on the one side, and the face of a young lion turned toward the palm tree on the other side. They were carved on the whole temple all around;</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> from the floor to the area above the door, cherubim and palm trees were carved on the wall. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> The doorposts of the nave were square. In front of the holy place was something resembling</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> an altar of wood, three cubits high, two cubits long, and two cubits wide; its corners, its base, and its walls were of wood. He said to me, \"This is the table that stands before the LORD.\" </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> The nave and the holy place had each a double door.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> The doors had two leaves apiece, two swinging leaves for each door.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> On the doors of the nave were carved cherubim and palm trees, such as were carved on the walls; and there was a canopy of wood in front of the vestibule outside.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> And there were recessed windows and palm trees on either side, on the sidewalls of the vestibule. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"42\">\r\n\t\t\t<VERS vnumber=\"1\"> Then he led me out into the outer court, toward the north, and he brought me to the chambers that were opposite the temple yard and opposite the building on the north.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The length of the building that was on the north side was one hundred cubits, and the width fifty cubits. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Across the twenty cubits that belonged to the inner court, and facing the pavement that belonged to the outer court, the chambers rose gallery by gallery in three stories. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> In front of the chambers was a passage on the inner side, ten cubits wide and one hundred cubits deep, and its entrances were on the north. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Now the upper chambers were narrower, for the galleries took more away from them than from the lower and middle chambers in the building. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For they were in three stories, and they had no pillars like the pillars of the outer court; for this reason the upper chambers were set back from the ground more than the lower and the middle ones. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> There was a wall outside parallel to the chambers, toward the outer court, opposite the chambers, fifty cubits long.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> For the chambers on the outer court were fifty cubits long, while those opposite the temple were one hundred cubits long.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> At the foot of these chambers ran a passage that one entered from the east in order to enter them from the outer court.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The width of the passage was fixed by the wall of the court. On the south also, opposite the vacant area and opposite the building, there were chambers </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> with a passage in front of them; they were similar to the chambers on the north, of the same length and width, with the same exits and arrangements and doors. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> So the entrances of the chambers to the south were entered through the entrance at the head of the corresponding passage, from the east, along the matching wall. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then he said to me, \"The north chambers and the south chambers opposite the vacant area are the holy chambers, where the priests who approach the LORD shall eat the most holy offerings; there they shall deposit the most holy offerings-- the grain offering, the sin offering, and the guilt offering-- for the place is holy.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> When the priests enter the holy place, they shall not go out of it into the outer court without laying there the vestments in which they minister, for these are holy; they shall put on other garments before they go near to the area open to the people.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> When he had finished measuring the interior of the temple area, he led me out by the gate that faces east, and measured the temple area all around.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> He measured the east side with the measuring reed, five hundred cubits by the measuring reed.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then he turned and measured the north side, five hundred cubits by the measuring reed. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then he turned and measured the south side, five hundred cubits by the measuring reed. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Then he turned to the west side and measured, five hundred cubits by the measuring reed.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> He measured it on the four sides. It had a wall around it, five hundred cubits long and five hundred cubits wide, to make a separation between the holy and the common.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"43\">\r\n\t\t\t<VERS vnumber=\"1\"> Then he brought me to the gate, the gate facing east.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And there, the glory of the God of Israel was coming from the east; the sound was like the sound of mighty waters; and the earth shone with his glory.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The vision I saw was like the vision that I had seen when he came to destroy the city, and like the vision that I had seen by the river Chebar; and I fell upon my face. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> As the glory of the LORD entered the temple by the gate facing east,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> the spirit lifted me up, and brought me into the inner court; and the glory of the LORD filled the temple.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> While the man was standing beside me, I heard someone speaking to me out of the temple.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> He said to me: Mortal, this is the place of my throne and the place for the soles of my feet, where I will reside among the people of Israel forever. The house of Israel shall no more defile my holy name, neither they nor their kings, by their whoring, and by the corpses of their kings at their death. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> When they placed their threshold by my threshold and their doorposts beside my doorposts, with only a wall between me and them, they were defiling my holy name by their abominations that they committed; therefore I have consumed them in my anger.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Now let them put away their idolatry and the corpses of their kings far from me, and I will reside among them forever.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> As for you, mortal, describe the temple to the house of Israel, and let them measure the pattern; and let them be ashamed of their iniquities.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> When they are ashamed of all that they have done, make known to them the plan of the temple, its arrangement, its exits and its entrances, and its whole form-- all its ordinances and its entire plan and all its laws; and write it down in their sight, so that they may observe and follow the entire plan and all its ordinances.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> This is the law of the temple: the whole territory on the top of the mountain all around shall be most holy. This is the law of the temple.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> These are the dimensions of the altar by cubits (the cubit being one cubit and a handbreadth): its base shall be one cubit high, and one cubit wide, with a rim of one span around its edge. This shall be the height of the altar: </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> From the base on the ground to the lower ledge, two cubits, with a width of one cubit; and from the smaller ledge to the larger ledge, four cubits, with a width of one cubit;</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> and the altar hearth, four cubits; and from the altar hearth projecting upward, four horns.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The altar hearth shall be square, twelve cubits long by twelve wide.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The ledge also shall be square, fourteen cubits long by fourteen wide, with a rim around it half a cubit wide, and its surrounding base, one cubit. Its steps shall face east.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then he said to me: Mortal, thus says the Lord GOD: These are the ordinances for the altar: On the day when it is erected for offering burnt offerings upon it and for dashing blood against it,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> you shall give to the levitical priests of the family of Zadok, who draw near to me to minister to me, says the Lord GOD, a bull for a sin offering.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> And you shall take some of its blood, and put it on the four horns of the altar, and on the four corners of the ledge, and upon the rim all around; thus you shall purify it and make atonement for it.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> You shall also take the bull of the sin offering, and it shall be burnt in the appointed place belonging to the temple, outside the sacred area.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> On the second day you shall offer a male goat without blemish for a sin offering; and the altar shall be purified, as it was purified with the bull.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> When you have finished purifying it, you shall offer a bull without blemish and a ram from the flock without blemish.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> You shall present them before the LORD, and the priests shall throw salt on them and offer them up as a burnt offering to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> For seven days you shall provide daily a goat for a sin offering; also a bull and a ram from the flock, without blemish, shall be provided.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Seven days shall they make atonement for the altar and cleanse it, and so consecrate it.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> When these days are over, then from the eighth day onward the priests shall offer upon the altar your burnt offerings and your offerings of well-being; and I will accept you, says the Lord GOD.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"44\">\r\n\t\t\t<VERS vnumber=\"1\"> Then he brought me back to the outer gate of the sanctuary, which faces east; and it was shut.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The LORD said to me: This gate shall remain shut; it shall not be opened, and no one shall enter by it; for the LORD, the God of Israel, has entered by it; therefore it shall remain shut.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Only the prince, because he is a prince, may sit in it to eat food before the LORD; he shall enter by way of the vestibule of the gate, and shall go out by the same way.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then he brought me by way of the north gate to the front of the temple; and I looked, and lo! the glory of the LORD filled the temple of the LORD; and I fell upon my face.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The LORD said to me: Mortal, mark well, look closely, and listen attentively to all that I shall tell you concerning all the ordinances of the temple of the LORD and all its laws; and mark well those who may be admitted to the temple and all those who are to be excluded from the sanctuary. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Say to the rebellious house, to the house of Israel, Thus says the Lord GOD: O house of Israel, let there be an end to all your abominations </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> in admitting foreigners, uncircumcised in heart and flesh, to be in my sanctuary, profaning my temple when you offer to me my food, the fat and the blood. You have broken my covenant with all your abominations. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And you have not kept charge of my sacred offerings; but you have appointed foreigners to act for you in keeping my charge in my sanctuary. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Thus says the Lord GOD: No foreigner, uncircumcised in heart and flesh, of all the foreigners who are among the people of Israel, shall enter my sanctuary.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> But the Levites who went far from me, going astray from me after their idols when Israel went astray, shall bear their punishment.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> They shall be ministers in my sanctuary, having oversight at the gates of the temple, and serving in the temple; they shall slaughter the burnt offering and the sacrifice for the people, and they shall attend on them and serve them.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Because they ministered to them before their idols and made the house of Israel stumble into iniquity, therefore I have sworn concerning them, says the Lord GOD, that they shall bear their punishment.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> They shall not come near to me, to serve me as priest, nor come near any of my sacred offerings, the things that are most sacred; but they shall bear their shame, and the consequences of the abominations that they have committed.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Yet I will appoint them to keep charge of the temple, to do all its chores, all that is to be done in it.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> But the levitical priests, the descendants of Zadok, who kept the charge of my sanctuary when the people of Israel went astray from me, shall come near to me to minister to me; and they shall attend me to offer me the fat and the blood, says the Lord GOD.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> It is they who shall enter my sanctuary, it is they who shall approach my table, to minister to me, and they shall keep my charge.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> When they enter the gates of the inner court, they shall wear linen vestments; they shall have nothing of wool on them, while they minister at the gates of the inner court, and within.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> They shall have linen turbans on their heads, and linen undergarments on their loins; they shall not bind themselves with anything that causes sweat.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> When they go out into the outer court to the people, they shall remove the vestments in which they have been ministering, and lay them in the holy chambers; and they shall put on other garments, so that they may not communicate holiness to the people with their vestments.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> They shall not shave their heads or let their locks grow long; they shall only trim the hair of their heads.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> No priest shall drink wine when he enters the inner court.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> They shall not marry a widow, or a divorced woman, but only a virgin of the stock of the house of Israel, or a widow who is the widow of a priest.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> They shall teach my people the difference between the holy and the common, and show them how to distinguish between the unclean and the clean.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> In a controversy they shall act as judges, and they shall decide it according to my judgments. They shall keep my laws and my statutes regarding all my appointed festivals, and they shall keep my sabbaths holy.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> They shall not defile themselves by going near to a dead person; for father or mother, however, and for son or daughter, and for brother or unmarried sister they may defile themselves.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> After he has become clean, they shall count seven days for him.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> On the day that he goes into the holy place, into the inner court, to minister in the holy place, he shall offer his sin offering, says the Lord GOD.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> This shall be their inheritance: I am their inheritance; and you shall give them no holding in Israel; I am their holding.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> They shall eat the grain offering, the sin offering, and the guilt offering; and every devoted thing in Israel shall be theirs.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> The first of all the first fruits of all kinds, and every offering of all kinds from all your offerings, shall belong to the priests; you shall also give to the priests the first of your dough, in order that a blessing may rest on your house.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> The priests shall not eat of anything, whether bird or animal, that died of itself or was torn by animals.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"45\">\r\n\t\t\t<VERS vnumber=\"1\"> When you allot the land as an inheritance, you shall set aside for the LORD a portion of the land as a holy district, twenty-five thousand cubits long and twenty thousand cubits wide; it shall be holy throughout its entire extent. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Of this, a square plot of five hundred by five hundred cubits shall be for the sanctuary, with fifty cubits for an open space around it.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> In the holy district you shall measure off a section twenty-five thousand cubits long and ten thousand wide, in which shall be the sanctuary, the most holy place.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> It shall be a holy portion of the land; it shall be for the priests, who minister in the sanctuary and approach the LORD to minister to him; and it shall be both a place for their houses and a holy place for the sanctuary.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Another section, twenty-five thousand cubits long and ten thousand cubits wide, shall be for the Levites who minister at the temple, as their holding for cities to live in. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Alongside the portion set apart as the holy district you shall assign as a holding for the city an area five thousand cubits wide, and twenty-five thousand cubits long; it shall belong to the whole house of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> And to the prince shall belong the land on both sides of the holy district and the holding of the city, alongside the holy district and the holding of the city, on the west and on the east, corresponding in length to one of the tribal portions, and extending from the western to the eastern boundary</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> of the land. It is to be his property in Israel. And my princes shall no longer oppress my people; but they shall let the house of Israel have the land according to their tribes.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Thus says the Lord GOD: Enough, O princes of Israel! Put away violence and oppression, and do what is just and right. Cease your evictions of my people, says the Lord GOD.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> You shall have honest balances, an honest ephah, and an honest bath. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The ephah and the bath shall be of the same measure, the bath containing one-tenth of a homer, and the ephah one-tenth of a homer; the homer shall be the standard measure.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The shekel shall be twenty gerahs. Twenty shekels, twenty-five shekels, and fifteen shekels shall make a mina for you.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> This is the offering that you shall make: one-sixth of an ephah from each homer of wheat, and one-sixth of an ephah from each homer of barley,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> and as the fixed portion of oil, one-tenth of a bath from each cor (the cor, like the homer, contains ten baths); </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> and one sheep from every flock of two hundred, from the pastures of Israel. This is the offering for grain offerings, burnt offerings, and offerings of well-being, to make atonement for them, says the Lord GOD.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> All the people of the land shall join with the prince in Israel in making this offering.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> But this shall be the obligation of the prince regarding the burnt offerings, grain offerings, and drink offerings, at the festivals, the new moons, and the sabbaths, all the appointed festivals of the house of Israel: he shall provide the sin offerings, grain offerings, the burnt offerings, and the offerings of well-being, to make atonement for the house of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Thus says the Lord GOD: In the first month, on the first day of the month, you shall take a young bull without blemish, and purify the sanctuary.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The priest shall take some of the blood of the sin offering and put it on the doorposts of the temple, the four corners of the ledge of the altar, and the posts of the gate of the inner court.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> You shall do the same on the seventh day of the month for anyone who has sinned through error or ignorance; so you shall make atonement for the temple.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> In the first month, on the fourteenth day of the month, you shall celebrate the festival of the passover, and for seven days unleavened bread shall be eaten.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> On that day the prince shall provide for himself and all the people of the land a young bull for a sin offering.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> And during the seven days of the festival he shall provide as a burnt offering to the LORD seven young bulls and seven rams without blemish, on each of the seven days; and a male goat daily for a sin offering.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> He shall provide as a grain offering an ephah for each bull, an ephah for each ram, and a hin of oil to each ephah.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> In the seventh month, on the fifteenth day of the month and for the seven days of the festival, he shall make the same provision for sin offerings, burnt offerings, and grain offerings, and for the oil.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"46\">\r\n\t\t\t<VERS vnumber=\"1\"> Thus says the Lord GOD: The gate of the inner court that faces east shall remain closed on the six working days; but on the sabbath day it shall be opened and on the day of the new moon it shall be opened.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The prince shall enter by the vestibule of the gate from outside, and shall take his stand by the post of the gate. The priests shall offer his burnt offering and his offerings of well-being, and he shall bow down at the threshold of the gate. Then he shall go out, but the gate shall not be closed until evening.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The people of the land shall bow down at the entrance of that gate before the LORD on the sabbaths and on the new moons.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The burnt offering that the prince offers to the LORD on the sabbath day shall be six lambs without blemish and a ram without blemish;</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> and the grain offering with the ram shall be an ephah, and the grain offering with the lambs shall be as much as he wishes to give, together with a hin of oil to each ephah.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> On the day of the new moon he shall offer a young bull without blemish, and six lambs and a ram, which shall be without blemish;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> as a grain offering he shall provide an ephah with the bull and an ephah with the ram, and with the lambs as much as he wishes, together with a hin of oil to each ephah.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> When the prince enters, he shall come in by the vestibule of the gate, and he shall go out by the same way.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> When the people of the land come before the LORD at the appointed festivals, whoever enters by the north gate to worship shall go out by the south gate; and whoever enters by the south gate shall go out by the north gate: they shall not return by way of the gate by which they entered, but shall go out straight ahead.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> When they come in, the prince shall come in with them; and when they go out, he shall go out.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> At the festivals and the appointed seasons the grain offering with a young bull shall be an ephah, and with a ram an ephah, and with the lambs as much as one wishes to give, together with a hin of oil to an ephah.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> When the prince provides a freewill offering, either a burnt offering or offerings of well-being as a freewill offering to the LORD, the gate facing east shall be opened for him; and he shall offer his burnt offering or his offerings of well-being as he does on the sabbath day. Then he shall go out, and after he has gone out the gate shall be closed.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> He shall provide a lamb, a yearling, without blemish, for a burnt offering to the LORD daily; morning by morning he shall provide it.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> And he shall provide a grain offering with it morning by morning regularly, one-sixth of an ephah, and one-third of a hin of oil to moisten the choice flour, as a grain offering to the LORD; this is the ordinance for all time.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Thus the lamb and the grain offering and the oil shall be provided, morning by morning, as a regular burnt offering.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Thus says the Lord GOD: If the prince makes a gift to any of his sons out of his inheritance, it shall belong to his sons, it is their holding by inheritance. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> But if he makes a gift out of his inheritance to one of his servants, it shall be his to the year of liberty; then it shall revert to the prince; only his sons may keep a gift from his inheritance.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The prince shall not take any of the inheritance of the people, thrusting them out of their holding; he shall give his sons their inheritance out of his own holding, so that none of my people shall be dispossessed of their holding.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Then he brought me through the entrance, which was at the side of the gate, to the north row of the holy chambers for the priests; and there I saw a place at the extreme western end of them.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> He said to me, \"This is the place where the priests shall boil the guilt offering and the sin offering, and where they shall bake the grain offering, in order not to bring them out into the outer court and so communicate holiness to the people.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then he brought me out to the outer court, and led me past the four corners of the court; and in each corner of the court there was a court--</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> in the four corners of the court were small courts, forty cubits long and thirty wide; the four were of the same size. </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> On the inside, around each of the four courts was a row of masonry, with hearths made at the bottom of the rows all around. </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Then he said to me, \"These are the kitchens where those who serve at the temple shall boil the sacrifices of the people.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"47\">\r\n\t\t\t<VERS vnumber=\"1\"> Then he brought me back to the entrance of the temple; there, water was flowing from below the threshold of the temple toward the east (for the temple faced east); and the water was flowing down from below the south end of the threshold of the temple, south of the altar.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Then he brought me out by way of the north gate, and led me around on the outside to the outer gate that faces toward the east; and the water was coming out on the south side. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Going on eastward with a cord in his hand, the man measured one thousand cubits, and then led me through the water; and it was ankle-deep.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Again he measured one thousand, and led me through the water; and it was knee-deep. Again he measured one thousand, and led me through the water; and it was up to the waist.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Again he measured one thousand, and it was a river that I could not cross, for the water had risen; it was deep enough to swim in, a river that could not be crossed.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> He said to me, \"Mortal, have you seen this?\" Then he led me back along the bank of the river.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> As I came back, I saw on the bank of the river a great many trees on the one side and on the other.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> He said to me, \"This water flows toward the eastern region and goes down into the Arabah; and when it enters the sea, the sea of stagnant waters, the water will become fresh.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Wherever the river goes, every living creature that swarms will live, and there will be very many fish, once these waters reach there. It will become fresh; and everything will live where the river goes. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> People will stand fishing beside the sea from En-gedi to En-eglaim; it will be a place for the spreading of nets; its fish will be of a great many kinds, like the fish of the Great Sea. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But its swamps and marshes will not become fresh; they are to be left for salt.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> On the banks, on both sides of the river, there will grow all kinds of trees for food. Their leaves will not wither nor their fruit fail, but they will bear fresh fruit every month, because the water for them flows from the sanctuary. Their fruit will be for food, and their leaves for healing.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Thus says the Lord GOD: These are the boundaries by which you shall divide the land for inheritance among the twelve tribes of Israel. Joseph shall have two portions.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> You shall divide it equally; I swore to give it to your ancestors, and this land shall fall to you as your inheritance.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> This shall be the boundary of the land: On the north side, from the Great Sea by way of Hethlon to Lebo-hamath, and on to Zedad, </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Berothah, Sibraim (which lies between the border of Damascus and the border of Hamath), as far as Hazer-hatticon, which is on the border of Hauran.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> So the boundary shall run from the sea to Hazar-enon, which is north of the border of Damascus, with the border of Hamath to the north. This shall be the north side. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> On the east side, between Hauran and Damascus; along the Jordan between Gilead and the land of Israel; to the eastern sea and as far as Tamar. This shall be the east side. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> On the south side, it shall run from Tamar as far as the waters of Meribath-kadesh, from there along the Wadi of Egypt to the Great Sea. This shall be the south side. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> On the west side, the Great Sea shall be the boundary to a point opposite Lebo-hamath. This shall be the west side.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> So you shall divide this land among you according to the tribes of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> You shall allot it as an inheritance for yourselves and for the aliens who reside among you and have begotten children among you. They shall be to you as citizens of Israel; with you they shall be allotted an inheritance among the tribes of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> In whatever tribe aliens reside, there you shall assign them their inheritance, says the Lord GOD.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"48\">\r\n\t\t\t<VERS vnumber=\"1\"> These are the names of the tribes: Beginning at the northern border, on the Hethlon road, from Lebo-hamath, as far as Hazar-enon (which is on the border of Damascus, with Hamath to the north), and extending from the east side to the west, Dan, one portion. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Adjoining the territory of Dan, from the east side to the west, Asher, one portion.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Adjoining the territory of Asher, from the east side to the west, Naphtali, one portion.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Adjoining the territory of Naphtali, from the east side to the west, Manasseh, one portion.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Adjoining the territory of Manasseh, from the east side to the west, Ephraim, one portion.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Adjoining the territory of Ephraim, from the east side to the west, Reuben, one portion.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Adjoining the territory of Reuben, from the east side to the west, Judah, one portion.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Adjoining the territory of Judah, from the east side to the west, shall be the portion that you shall set apart, twenty-five thousand cubits in width, and in length equal to one of the tribal portions, from the east side to the west, with the sanctuary in the middle of it.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The portion that you shall set apart for the LORD shall be twenty-five thousand cubits in length, and twenty thousand in width. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> These shall be the allotments of the holy portion: the priests shall have an allotment measuring twenty-five thousand cubits on the northern side, ten thousand cubits in width on the western side, ten thousand in width on the eastern side, and twenty-five thousand in length on the southern side, with the sanctuary of the LORD in the middle of it.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> This shall be for the consecrated priests, the descendants of Zadok, who kept my charge, who did not go astray when the people of Israel went astray, as the Levites did. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> It shall belong to them as a special portion from the holy portion of the land, a most holy place, adjoining the territory of the Levites.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Alongside the territory of the priests, the Levites shall have an allotment twenty-five thousand cubits in length and ten thousand in width. The whole length shall be twenty-five thousand cubits and the width twenty thousand. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> They shall not sell or exchange any of it; they shall not transfer this choice portion of the land, for it is holy to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The remainder, five thousand cubits in width and twenty-five thousand in length, shall be for ordinary use for the city, for dwellings and for open country. In the middle of it shall be the city;</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> and these shall be its dimensions: the north side four thousand five hundred cubits, the south side four thousand five hundred, the east side four thousand five hundred, and the west side four thousand five hundred.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The city shall have open land: on the north two hundred fifty cubits, on the south two hundred fifty, on the east two hundred fifty, on the west two hundred fifty.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The remainder of the length alongside the holy portion shall be ten thousand cubits to the east, and ten thousand to the west, and it shall be alongside the holy portion. Its produce shall be food for the workers of the city.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The workers of the city, from all the tribes of Israel, shall cultivate it.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The whole portion that you shall set apart shall be twenty-five thousand cubits square, that is, the holy portion together with the property of the city.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> What remains on both sides of the holy portion and of the property of the city shall belong to the prince. Extending from the twenty-five thousand cubits of the holy portion to the east border, and westward from the twenty-five thousand cubits to the west border, parallel to the tribal portions, it shall belong to the prince. The holy portion with the sanctuary of the temple in the middle of it,</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> and the property of the Levites and of the city, shall be in the middle of that which belongs to the prince. The portion of the prince shall lie between the territory of Judah and the territory of Benjamin.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> As for the rest of the tribes: from the east side to the west, Benjamin, one portion.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Adjoining the territory of Benjamin, from the east side to the west, Simeon, one portion.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Adjoining the territory of Simeon, from the east side to the west, Issachar, one portion.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Adjoining the territory of Issachar, from the east side to the west, Zebulun, one portion.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Adjoining the territory of Zebulun, from the east side to the west, Gad, one portion.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> And adjoining the territory of Gad to the south, the boundary shall run from Tamar to the waters of Meribath-kadesh, from there along the Wadi of Egypt to the Great Sea. </VERS>\r\n\t\t\t<VERS vnumber=\"29\"> This is the land that you shall allot as an inheritance among the tribes of Israel, and these are their portions, says the Lord GOD.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> These shall be the exits of the city: On the north side, which is to be four thousand five hundred cubits by measure,</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> three gates, the gate of Reuben, the gate of Judah, and the gate of Levi, the gates of the city being named after the tribes of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> On the east side, which is to be four thousand five hundred cubits, three gates, the gate of Joseph, the gate of Benjamin, and the gate of Dan.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> On the south side, which is to be four thousand five hundred cubits by measure, three gates, the gate of Simeon, the gate of Issachar, and the gate of Zebulun.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> On the west side, which is to be four thousand five hundred cubits, three gates, the gate of Gad, the gate of Asher, and the gate of Naphtali. </VERS>\r\n\t\t\t<VERS vnumber=\"35\"> The circumference of the city shall be eighteen thousand cubits. And the name of the city from that time on shall be, The LORD is There.</VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"27\" bname=\"Daniel\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> In the third year of the reign of King Jehoiakim of Judah, King Nebuchadnezzar of Babylon came to Jerusalem and besieged it.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The Lord let King Jehoiakim of Judah fall into his power, as well as some of the vessels of the house of God. These he brought to the land of Shinar, and placed the vessels in the treasury of his gods. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then the king commanded his palace master Ashpenaz to bring some of the Israelites of the royal family and of the nobility,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> young men without physical defect and handsome, versed in every branch of wisdom, endowed with knowledge and insight, and competent to serve in the king's palace; they were to be taught the literature and language of the Chaldeans.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The king assigned them a daily portion of the royal rations of food and wine. They were to be educated for three years, so that at the end of that time they could be stationed in the king's court.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Among them were Daniel, Hananiah, Mishael, and Azariah, from the tribe of Judah.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The palace master gave them other names: Daniel he called Belteshazzar, Hananiah he called Shadrach, Mishael he called Meshach, and Azariah he called Abednego.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But Daniel resolved that he would not defile himself with the royal rations of food and wine; so he asked the palace master to allow him not to defile himself.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Now God allowed Daniel to receive favor and compassion from the palace master.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The palace master said to Daniel, \"I am afraid of my lord the king; he has appointed your food and your drink. If he should see you in poorer condition than the other young men of your own age, you would endanger my head with the king.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then Daniel asked the guard whom the palace master had appointed over Daniel, Hananiah, Mishael, and Azariah:</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> \"Please test your servants for ten days. Let us be given vegetables to eat and water to drink.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> You can then compare our appearance with the appearance of the young men who eat the royal rations, and deal with your servants according to what you observe.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> So he agreed to this proposal and tested them for ten days.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> At the end of ten days it was observed that they appeared better and fatter than all the young men who had been eating the royal rations.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> So the guard continued to withdraw their royal rations and the wine they were to drink, and gave them vegetables.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> To these four young men God gave knowledge and skill in every aspect of literature and wisdom; Daniel also had insight into all visions and dreams.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> At the end of the time that the king had set for them to be brought in, the palace master brought them into the presence of Nebuchadnezzar,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> and the king spoke with them. And among them all, no one was found to compare with Daniel, Hananiah, Mishael, and Azariah; therefore they were stationed in the king's court.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> In every matter of wisdom and understanding concerning which the king inquired of them, he found them ten times better than all the magicians and enchanters in his whole kingdom.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> And Daniel continued there until the first year of King Cyrus.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> In the second year of Nebuchadnezzar's reign, Nebuchadnezzar dreamed such dreams that his spirit was troubled and his sleep left him.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> So the king commanded that the magicians, the enchanters, the sorcerers, and the Chaldeans be summoned to tell the king his dreams. When they came in and stood before the king,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> he said to them, \"I have had such a dream that my spirit is troubled by the desire to understand it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The Chaldeans said to the king (in Aramaic), \"O king, live forever! Tell your servants the dream, and we will reveal the interpretation.\" </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The king answered the Chaldeans, \"This is a public decree: if you do not tell me both the dream and its interpretation, you shall be torn limb from limb, and your houses shall be laid in ruins.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> But if you do tell me the dream and its interpretation, you shall receive from me gifts and rewards and great honor. Therefore tell me the dream and its interpretation.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> They answered a second time, \"Let the king first tell his servants the dream, then we can give its interpretation.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The king answered, \"I know with certainty that you are trying to gain time, because you see I have firmly decreed:</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> if you do not tell me the dream, there is but one verdict for you. You have agreed to speak lying and misleading words to me until things take a turn. Therefore, tell me the dream, and I shall know that you can give me its interpretation.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The Chaldeans answered the king, \"There is no one on earth who can reveal what the king demands! In fact no king, however great and powerful, has ever asked such a thing of any magician or enchanter or Chaldean.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The thing that the king is asking is too difficult, and no one can reveal it to the king except the gods, whose dwelling is not with mortals.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Because of this the king flew into a violent rage and commanded that all the wise men of Babylon be destroyed.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The decree was issued, and the wise men were about to be executed; and they looked for Daniel and his companions, to execute them.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then Daniel responded with prudence and discretion to Arioch, the king's chief executioner, who had gone out to execute the wise men of Babylon;</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> he asked Arioch, the royal official, \"Why is the decree of the king so urgent?\" Arioch then explained the matter to Daniel.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> So Daniel went in and requested that the king give him time and he would tell the king the interpretation.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then Daniel went to his home and informed his companions, Hananiah, Mishael, and Azariah,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> and told them to seek mercy from the God of heaven concerning this mystery, so that Daniel and his companions with the rest of the wise men of Babylon might not perish.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Then the mystery was revealed to Daniel in a vision of the night, and Daniel blessed the God of heaven.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Daniel said: \"Blessed be the name of God from age to age, for wisdom and power are his.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> He changes times and seasons, deposes kings and sets up kings; he gives wisdom to the wise and knowledge to those who have understanding.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> He reveals deep and hidden things; he knows what is in the darkness, and light dwells with him.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> To you, O God of my ancestors, I give thanks and praise, for you have given me wisdom and power, and have now revealed to me what we asked of you, for you have revealed to us what the king ordered.\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Therefore Daniel went to Arioch, whom the king had appointed to destroy the wise men of Babylon, and said to him, \"Do not destroy the wise men of Babylon; bring me in before the king, and I will give the king the interpretation.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Then Arioch quickly brought Daniel before the king and said to him: \"I have found among the exiles from Judah a man who can tell the king the interpretation.\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> The king said to Daniel, whose name was Belteshazzar, \"Are you able to tell me the dream that I have seen and its interpretation?\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Daniel answered the king, \"No wise men, enchanters, magicians, or diviners can show to the king the mystery that the king is asking,</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> but there is a God in heaven who reveals mysteries, and he has disclosed to King Nebuchadnezzar what will happen at the end of days. Your dream and the visions of your head as you lay in bed were these:</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> To you, O king, as you lay in bed, came thoughts of what would be hereafter, and the revealer of mysteries disclosed to you what is to be.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> But as for me, this mystery has not been revealed to me because of any wisdom that I have more than any other living being, but in order that the interpretation may be known to the king and that you may understand the thoughts of your mind.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> \"You were looking, O king, and lo! there was a great statue. This statue was huge, its brilliance extraordinary; it was standing before you, and its appearance was frightening.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> The head of that statue was of fine gold, its chest and arms of silver, its middle and thighs of bronze,</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> its legs of iron, its feet partly of iron and partly of clay.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> As you looked on, a stone was cut out, not by human hands, and it struck the statue on its feet of iron and clay and broke them in pieces.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Then the iron, the clay, the bronze, the silver, and the gold, were all broken in pieces and became like the chaff of the summer threshing floors; and the wind carried them away, so that not a trace of them could be found. But the stone that struck the statue became a great mountain and filled the whole earth.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> \"This was the dream; now we will tell the king its interpretation.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> You, O king, the king of kings-- to whom the God of heaven has given the kingdom, the power, the might, and the glory,</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> into whose hand he has given human beings, wherever they live, the wild animals of the field, and the birds of the air, and whom he has established as ruler over them all-- you are the head of gold.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> After you shall arise another kingdom inferior to yours, and yet a third kingdom of bronze, which shall rule over the whole earth.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> And there shall be a fourth kingdom, strong as iron; just as iron crushes and smashes everything, it shall crush and shatter all these. </VERS>\r\n\t\t\t<VERS vnumber=\"41\"> As you saw the feet and toes partly of potter's clay and partly of iron, it shall be a divided kingdom; but some of the strength of iron shall be in it, as you saw the iron mixed with the clay.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> As the toes of the feet were part iron and part clay, so the kingdom shall be partly strong and partly brittle.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> As you saw the iron mixed with clay, so will they mix with one another in marriage, but they will not hold together, just as iron does not mix with clay. </VERS>\r\n\t\t\t<VERS vnumber=\"44\"> And in the days of those kings the God of heaven will set up a kingdom that shall never be destroyed, nor shall this kingdom be left to another people. It shall crush all these kingdoms and bring them to an end, and it shall stand forever;</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> just as you saw that a stone was cut from the mountain not by hands, and that it crushed the iron, the bronze, the clay, the silver, and the gold. The great God has informed the king what shall be hereafter. The dream is certain, and its interpretation trustworthy.\"</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> Then King Nebuchadnezzar fell on his face, worshiped Daniel, and commanded that a grain offering and incense be offered to him.</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> The king said to Daniel, \"Truly, your God is God of gods and Lord of kings and a revealer of mysteries, for you have been able to reveal this mystery!\"</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> Then the king promoted Daniel, gave him many great gifts, and made him ruler over the whole province of Babylon and chief prefect over all the wise men of Babylon.</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> Daniel made a request of the king, and he appointed Shadrach, Meshach, and Abednego over the affairs of the province of Babylon. But Daniel remained at the king's court.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> King Nebuchadnezzar made a golden statue whose height was sixty cubits and whose width was six cubits; he set it up on the plain of Dura in the province of Babylon.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Then King Nebuchadnezzar sent for the satraps, the prefects, and the governors, the counselors, the treasurers, the justices, the magistrates, and all the officials of the provinces, to assemble and come to the dedication of the statue that King Nebuchadnezzar had set up.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> So the satraps, the prefects, and the governors, the counselors, the treasurers, the justices, the magistrates, and all the officials of the provinces, assembled for the dedication of the statue that King Nebuchadnezzar had set up. When they were standing before the statue that Nebuchadnezzar had set up,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> the herald proclaimed aloud, \"You are commanded, O peoples, nations, and languages,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> that when you hear the sound of the horn, pipe, lyre, trigon, harp, drum, and entire musical ensemble, you are to fall down and worship the golden statue that King Nebuchadnezzar has set up.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Whoever does not fall down and worship shall immediately be thrown into a furnace of blazing fire.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Therefore, as soon as all the peoples heard the sound of the horn, pipe, lyre, trigon, harp, drum, and entire musical ensemble, all the peoples, nations, and languages fell down and worshiped the golden statue that King Nebuchadnezzar had set up.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Accordingly, at this time certain Chaldeans came forward and denounced the Jews.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> They said to King Nebuchadnezzar, \"O king, live forever!</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> You, O king, have made a decree, that everyone who hears the sound of the horn, pipe, lyre, trigon, harp, drum, and entire musical ensemble, shall fall down and worship the golden statue,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> and whoever does not fall down and worship shall be thrown into a furnace of blazing fire.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> There are certain Jews whom you have appointed over the affairs of the province of Babylon: Shadrach, Meshach, and Abednego. These pay no heed to you, O king. They do not serve your gods and they do not worship the golden statue that you have set up.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then Nebuchadnezzar in furious rage commanded that Shadrach, Meshach, and Abednego be brought in; so they brought those men before the king.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Nebuchadnezzar said to them, \"Is it true, O Shadrach, Meshach, and Abednego, that you do not serve my gods and you do not worship the golden statue that I have set up?</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Now if you are ready when you hear the sound of the horn, pipe, lyre, trigon, harp, drum, and entire musical ensemble to fall down and worship the statue that I have made, well and good. But if you do not worship, you shall immediately be thrown into a furnace of blazing fire, and who is the god that will deliver you out of my hands?\" </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Shadrach, Meshach, and Abednego answered the king, \"O Nebuchadnezzar, we have no need to present a defense to you in this matter.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> If our God whom we serve is able to deliver us from the furnace of blazing fire and out of your hand, O king, let him deliver us. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> But if not, be it known to you, O king, that we will not serve your gods and we will not worship the golden statue that you have set up.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Then Nebuchadnezzar was so filled with rage against Shadrach, Meshach, and Abednego that his face was distorted. He ordered the furnace heated up seven times more than was customary,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> and ordered some of the strongest guards in his army to bind Shadrach, Meshach, and Abednego and to throw them into the furnace of blazing fire.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> So the men were bound, still wearing their tunics, their trousers, their hats, and their other garments, and they were thrown into the furnace of blazing fire. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Because the king's command was urgent and the furnace was so overheated, the raging flames killed the men who lifted Shadrach, Meshach, and Abednego.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> But the three men, Shadrach, Meshach, and Abednego, fell down, bound, into the furnace of blazing fire.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Then King Nebuchadnezzar was astonished and rose up quickly. He said to his counselors, \"Was it not three men that we threw bound into the fire?\" They answered the king, \"True, O king.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> He replied, \"But I see four men unbound, walking in the middle of the fire, and they are not hurt; and the fourth has the appearance of a god.\" </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Nebuchadnezzar then approached the door of the furnace of blazing fire and said, \"Shadrach, Meshach, and Abednego, servants of the Most High God, come out! Come here!\" So Shadrach, Meshach, and Abednego came out from the fire.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> And the satraps, the prefects, the governors, and the king's counselors gathered together and saw that the fire had not had any power over the bodies of those men; the hair of their heads was not singed, their tunics were not harmed, and not even the smell of fire came from them. </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Nebuchadnezzar said, \"Blessed be the God of Shadrach, Meshach, and Abednego, who has sent his angel and delivered his servants who trusted in him. They disobeyed the king's command and yielded up their bodies rather than serve and worship any god except their own God.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Therefore I make a decree: Any people, nation, or language that utters blasphemy against the God of Shadrach, Meshach, and Abednego shall be torn limb from limb, and their houses laid in ruins; for there is no other god who is able to deliver in this way.\"</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Then the king promoted Shadrach, Meshach, and Abednego in the province of Babylon.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> King Nebuchadnezzar to all peoples, nations, and languages that live throughout the earth: May you have abundant prosperity!</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The signs and wonders that the Most High God has worked for me I am pleased to recount.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> How great are his signs, how mighty his wonders! His kingdom is an everlasting kingdom, and his sovereignty is from generation to generation.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> I, Nebuchadnezzar, was living at ease in my home and prospering in my palace.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> I saw a dream that frightened me; my fantasies in bed and the visions of my head terrified me.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> So I made a decree that all the wise men of Babylon should be brought before me, in order that they might tell me the interpretation of the dream.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then the magicians, the enchanters, the Chaldeans, and the diviners came in, and I told them the dream, but they could not tell me its interpretation.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> At last Daniel came in before me-- he who was named Belteshazzar after the name of my god, and who is endowed with a spirit of the holy gods-- and I told him the dream:</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> \"O Belteshazzar, chief of the magicians, I know that you are endowed with a spirit of the holy gods and that no mystery is too difficult for you. Hear the dream that I saw; tell me its interpretation. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Upon my bed this is what I saw; there was a tree at the center of the earth, and its height was great.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The tree grew great and strong, its top reached to heaven, and it was visible to the ends of the whole earth.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Its foliage was beautiful, its fruit abundant, and it provided food for all. The animals of the field found shade under it, the birds of the air nested in its branches, and from it all living beings were fed.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> \"I continued looking, in the visions of my head as I lay in bed, and there was a holy watcher, coming down from heaven.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> He cried aloud and said: 'Cut down the tree and chop off its branches, strip off its foliage and scatter its fruit. Let the animals flee from beneath it and the birds from its branches.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> But leave its stump and roots in the ground, with a band of iron and bronze, in the tender grass of the field. Let him be bathed with the dew of heaven, and let his lot be with the animals of the field in the grass of the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Let his mind be changed from that of a human, and let the mind of an animal be given to him. And let seven times pass over him.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The sentence is rendered by decree of the watchers, the decision is given by order of the holy ones, in order that all who live may know that the Most High is sovereign over the kingdom of mortals; he gives it to whom he will and sets over it the lowliest of human beings.'</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> \"This is the dream that I, King Nebuchadnezzar, saw. Now you, Belteshazzar, declare the interpretation, since all the wise men of my kingdom are unable to tell me the interpretation. You are able, however, for you are endowed with a spirit of the holy gods.\" </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Then Daniel, who was called Belteshazzar, was severely distressed for a while. His thoughts terrified him. The king said, \"Belteshazzar, do not let the dream or the interpretation terrify you.\" Belteshazzar answered, \"My lord, may the dream be for those who hate you, and its interpretation for your enemies!</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The tree that you saw, which grew great and strong, so that its top reached to heaven and was visible to the end of the whole earth,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> whose foliage was beautiful and its fruit abundant, and which provided food for all, under which animals of the field lived, and in whose branches the birds of the air had nests--</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> it is you, O king! You have grown great and strong. Your greatness has increased and reaches to heaven, and your sovereignty to the ends of the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> And whereas the king saw a holy watcher coming down from heaven and saying, 'Cut down the tree and destroy it, but leave its stump and roots in the ground, with a band of iron and bronze, in the grass of the field; and let him be bathed with the dew of heaven, and let his lot be with the animals of the field, until seven times pass over him'--</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> this is the interpretation, O king, and it is a decree of the Most High that has come upon my lord the king:</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> You shall be driven away from human society, and your dwelling shall be with the wild animals. You shall be made to eat grass like oxen, you shall be bathed with the dew of heaven, and seven times shall pass over you, until you have learned that the Most High has sovereignty over the kingdom of mortals, and gives it to whom he will.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> As it was commanded to leave the stump and roots of the tree, your kingdom shall be re-established for you from the time that you learn that Heaven is sovereign.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Therefore, O king, may my counsel be acceptable to you: atone for your sins with righteousness, and your iniquities with mercy to the oppressed, so that your prosperity may be prolonged.\" </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> All this came upon King Nebuchadnezzar.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> At the end of twelve months he was walking on the roof of the royal palace of Babylon,</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> and the king said, \"Is this not magnificent Babylon, which I have built as a royal capital by my mighty power and for my glorious majesty?\"</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> While the words were still in the king's mouth, a voice came from heaven: \"O King Nebuchadnezzar, to you it is declared: The kingdom has departed from you!</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> You shall be driven away from human society, and your dwelling shall be with the animals of the field. You shall be made to eat grass like oxen, and seven times shall pass over you, until you have learned that the Most High has sovereignty over the kingdom of mortals and gives it to whom he will.\"</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Immediately the sentence was fulfilled against Nebuchadnezzar. He was driven away from human society, ate grass like oxen, and his body was bathed with the dew of heaven, until his hair grew as long as eagles' feathers and his nails became like birds' claws.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> When that period was over, I, Nebuchadnezzar, lifted my eyes to heaven, and my reason returned to me. I blessed the Most High, and praised and honored the one who lives forever. For his sovereignty is an everlasting sovereignty, and his kingdom endures from generation to generation.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> All the inhabitants of the earth are accounted as nothing, and he does what he wills with the host of heaven and the inhabitants of the earth. There is no one who can stay his hand or say to him, \"What are you doing?\"</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> At that time my reason returned to me; and my majesty and splendor were restored to me for the glory of my kingdom. My counselors and my lords sought me out, I was re-established over my kingdom, and still more greatness was added to me.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Now I, Nebuchadnezzar, praise and extol and honor the King of heaven, for all his works are truth, and his ways are justice; and he is able to bring low those who walk in pride.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"5\">\r\n\t\t\t<VERS vnumber=\"1\"> King Belshazzar made a great festival for a thousand of his lords, and he was drinking wine in the presence of the thousand.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Under the influence of the wine, Belshazzar commanded that they bring in the vessels of gold and silver that his father Nebuchadnezzar had taken out of the temple in Jerusalem, so that the king and his lords, his wives, and his concubines might drink from them.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> So they brought in the vessels of gold and silver that had been taken out of the temple, the house of God in Jerusalem, and the king and his lords, his wives, and his concubines drank from them. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> They drank the wine and praised the gods of gold and silver, bronze, iron, wood, and stone.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Immediately the fingers of a human hand appeared and began writing on the plaster of the wall of the royal palace, next to the lampstand. The king was watching the hand as it wrote.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then the king's face turned pale, and his thoughts terrified him. His limbs gave way, and his knees knocked together.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The king cried aloud to bring in the enchanters, the Chaldeans, and the diviners; and the king said to the wise men of Babylon, \"Whoever can read this writing and tell me its interpretation shall be clothed in purple, have a chain of gold around his neck, and rank third in the kingdom.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then all the king's wise men came in, but they could not read the writing or tell the king the interpretation.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then King Belshazzar became greatly terrified and his face turned pale, and his lords were perplexed.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The queen, when she heard the discussion of the king and his lords, came into the banqueting hall. The queen said, \"O king, live forever! Do not let your thoughts terrify you or your face grow pale.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> There is a man in your kingdom who is endowed with a spirit of the holy gods. In the days of your father he was found to have enlightenment, understanding, and wisdom like the wisdom of the gods. Your father, King Nebuchadnezzar, made him chief of the magicians, enchanters, Chaldeans, and diviners, </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> because an excellent spirit, knowledge, and understanding to interpret dreams, explain riddles, and solve problems were found in this Daniel, whom the king named Belteshazzar. Now let Daniel be called, and he will give the interpretation.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then Daniel was brought in before the king. The king said to Daniel, \"So you are Daniel, one of the exiles of Judah, whom my father the king brought from Judah?</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> I have heard of you that a spirit of the gods is in you, and that enlightenment, understanding, and excellent wisdom are found in you. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Now the wise men, the enchanters, have been brought in before me to read this writing and tell me its interpretation, but they were not able to give the interpretation of the matter.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> But I have heard that you can give interpretations and solve problems. Now if you are able to read the writing and tell me its interpretation, you shall be clothed in purple, have a chain of gold around your neck, and rank third in the kingdom.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then Daniel answered in the presence of the king, \"Let your gifts be for yourself, or give your rewards to someone else! Nevertheless I will read the writing to the king and let him know the interpretation.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> O king, the Most High God gave your father Nebuchadnezzar kingship, greatness, glory, and majesty.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> And because of the greatness that he gave him, all peoples, nations, and languages trembled and feared before him. He killed those he wanted to kill, kept alive those he wanted to keep alive, honored those he wanted to honor, and degraded those he wanted to degrade.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> But when his heart was lifted up and his spirit was hardened so that he acted proudly, he was deposed from his kingly throne, and his glory was stripped from him.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> He was driven from human society, and his mind was made like that of an animal. His dwelling was with the wild asses, he was fed grass like oxen, and his body was bathed with the dew of heaven, until he learned that the Most High God has sovereignty over the kingdom of mortals, and sets over it whomever he will.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> And you, Belshazzar his son, have not humbled your heart, even though you knew all this!</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> You have exalted yourself against the Lord of heaven! The vessels of his temple have been brought in before you, and you and your lords, your wives and your concubines have been drinking wine from them. You have praised the gods of silver and gold, of bronze, iron, wood, and stone, which do not see or hear or know; but the God in whose power is your very breath, and to whom belong all your ways, you have not honored.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> \"So from his presence the hand was sent and this writing was inscribed.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> And this is the writing that was inscribed: MENE, MENE, TEKEL, and PARSIN.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> This is the interpretation of the matter: MENE, God has numbered the days of your kingdom and brought it to an end; </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> TEKEL, you have been weighed on the scales and found wanting;</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> PERES, your kingdom is divided and given to the Medes and Persians.\" </VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Then Belshazzar gave the command, and Daniel was clothed in purple, a chain of gold was put around his neck, and a proclamation was made concerning him that he should rank third in the kingdom.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> That very night Belshazzar, the Chaldean king, was killed.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> And Darius the Mede received the kingdom, being about sixty-two years old.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"6\">\r\n\t\t\t<VERS vnumber=\"1\"> It pleased Darius to set over the kingdom one hundred twenty satraps, stationed throughout the whole kingdom,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> and over them three presidents, including Daniel; to these the satraps gave account, so that the king might suffer no loss.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Soon Daniel distinguished himself above all the other presidents and satraps because an excellent spirit was in him, and the king planned to appoint him over the whole kingdom.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> So the presidents and the satraps tried to find grounds for complaint against Daniel in connection with the kingdom. But they could find no grounds for complaint or any corruption, because he was faithful, and no negligence or corruption could be found in him.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The men said, \"We shall not find any ground for complaint against this Daniel unless we find it in connection with the law of his God.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> So the presidents and satraps conspired and came to the king and said to him, \"O King Darius, live forever!</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> All the presidents of the kingdom, the prefects and the satraps, the counselors and the governors are agreed that the king should establish an ordinance and enforce an interdict, that whoever prays to anyone, divine or human, for thirty days, except to you, O king, shall be thrown into a den of lions.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Now, O king, establish the interdict and sign the document, so that it cannot be changed, according to the law of the Medes and the Persians, which cannot be revoked.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Therefore King Darius signed the document and interdict.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Although Daniel knew that the document had been signed, he continued to go to his house, which had windows in its upper room open toward Jerusalem, and to get down on his knees three times a day to pray to his God and praise him, just as he had done previously.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The conspirators came and found Daniel praying and seeking mercy before his God.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then they approached the king and said concerning the interdict, \"O king! Did you not sign an interdict, that anyone who prays to anyone, divine or human, within thirty days except to you, O king, shall be thrown into a den of lions?\" The king answered, \"The thing stands fast, according to the law of the Medes and Persians, which cannot be revoked.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then they responded to the king, \"Daniel, one of the exiles from Judah, pays no attention to you, O king, or to the interdict you have signed, but he is saying his prayers three times a day.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> When the king heard the charge, he was very much distressed. He was determined to save Daniel, and until the sun went down he made every effort to rescue him.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Then the conspirators came to the king and said to him, \"Know, O king, that it is a law of the Medes and Persians that no interdict or ordinance that the king establishes can be changed.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then the king gave the command, and Daniel was brought and thrown into the den of lions. The king said to Daniel, \"May your God, whom you faithfully serve, deliver you!\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> A stone was brought and laid on the mouth of the den, and the king sealed it with his own signet and with the signet of his lords, so that nothing might be changed concerning Daniel.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then the king went to his palace and spent the night fasting; no food was brought to him, and sleep fled from him.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Then, at break of day, the king got up and hurried to the den of lions.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> When he came near the den where Daniel was, he cried out anxiously to Daniel, \"O Daniel, servant of the living God, has your God whom you faithfully serve been able to deliver you from the lions?\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Daniel then said to the king, \"O king, live forever!</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> My God sent his angel and shut the lions' mouths so that they would not hurt me, because I was found blameless before him; and also before you, O king, I have done no wrong.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Then the king was exceedingly glad and commanded that Daniel be taken up out of the den. So Daniel was taken up out of the den, and no kind of harm was found on him, because he had trusted in his God.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> The king gave a command, and those who had accused Daniel were brought and thrown into the den of lions-- they, their children, and their wives. Before they reached the bottom of the den the lions overpowered them and broke all their bones in pieces.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Then King Darius wrote to all peoples and nations of every language throughout the whole world: \"May you have abundant prosperity!</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> I make a decree, that in all my royal dominion people should tremble and fear before the God of Daniel: For he is the living God, enduring forever. His kingdom shall never be destroyed, and his dominion has no end.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> He delivers and rescues, he works signs and wonders in heaven and on earth; for he has saved Daniel from the power of the lions.\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> So this Daniel prospered during the reign of Darius and the reign of Cyrus the Persian.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"7\">\r\n\t\t\t<VERS vnumber=\"1\"> In the first year of King Belshazzar of Babylon, Daniel had a dream and visions of his head as he lay in bed. Then he wrote down the dream: </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> I, Daniel, saw in my vision by night the four winds of heaven stirring up the great sea, </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> and four great beasts came up out of the sea, different from one another.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The first was like a lion and had eagles' wings. Then, as I watched, its wings were plucked off, and it was lifted up from the ground and made to stand on two feet like a human being; and a human mind was given to it.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Another beast appeared, a second one, that looked like a bear. It was raised up on one side, had three tusks in its mouth among its teeth and was told, \"Arise, devour many bodies!\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> After this, as I watched, another appeared, like a leopard. The beast had four wings of a bird on its back and four heads; and dominion was given to it.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> After this I saw in the visions by night a fourth beast, terrifying and dreadful and exceedingly strong. It had great iron teeth and was devouring, breaking in pieces, and stamping what was left with its feet. It was different from all the beasts that preceded it, and it had ten horns.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> I was considering the horns, when another horn appeared, a little one coming up among them; to make room for it, three of the earlier horns were plucked up by the roots. There were eyes like human eyes in this horn, and a mouth speaking arrogantly.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> As I watched, thrones were set in place, and an Ancient One took his throne, his clothing was white as snow, and the hair of his head like pure wool; his throne was fiery flames, and its wheels were burning fire.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> A stream of fire issued and flowed out from his presence. A thousand thousands served him, and ten thousand times ten thousand stood attending him. The court sat in judgment, and the books were opened.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> I watched then because of the noise of the arrogant words that the horn was speaking. And as I watched, the beast was put to death, and its body destroyed and given over to be burned with fire.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> As for the rest of the beasts, their dominion was taken away, but their lives were prolonged for a season and a time.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> As I watched in the night visions, I saw one like a human being coming with the clouds of heaven. And he came to the Ancient One and was presented before him. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> To him was given dominion and glory and kingship, that all peoples, nations, and languages should serve him. His dominion is an everlasting dominion that shall not pass away, and his kingship is one that shall never be destroyed.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> As for me, Daniel, my spirit was troubled within me, and the visions of my head terrified me. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> I approached one of the attendants to ask him the truth concerning all this. So he said that he would disclose to me the interpretation of the matter:</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> \"As for these four great beasts, four kings shall arise out of the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> But the holy ones of the Most High shall receive the kingdom and possess the kingdom forever-- forever and ever.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Then I desired to know the truth concerning the fourth beast, which was different from all the rest, exceedingly terrifying, with its teeth of iron and claws of bronze, and which devoured and broke in pieces, and stamped what was left with its feet;</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> and concerning the ten horns that were on its head, and concerning the other horn, which came up and to make room for which three of them fell out-- the horn that had eyes and a mouth that spoke arrogantly, and that seemed greater than the others.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> As I looked, this horn made war with the holy ones and was prevailing over them,</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> until the Ancient One came; then judgment was given for the holy ones of the Most High, and the time arrived when the holy ones gained possession of the kingdom. </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> This is what he said: \"As for the fourth beast, there shall be a fourth kingdom on earth that shall be different from all the other kingdoms; it shall devour the whole earth, and trample it down, and break it to pieces.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> As for the ten horns, out of this kingdom ten kings shall arise, and another shall arise after them. This one shall be different from the former ones, and shall put down three kings.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> He shall speak words against the Most High, shall wear out the holy ones of the Most High, and shall attempt to change the sacred seasons and the law; and they shall be given into his power for a time, two times, and half a time. </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Then the court shall sit in judgment, and his dominion shall be taken away, to be consumed and totally destroyed.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> The kingship and dominion and the greatness of the kingdoms under the whole heaven shall be given to the people of the holy ones of the Most High; their kingdom shall be an everlasting kingdom, and all dominions shall serve and obey them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Here the account ends. As for me, Daniel, my thoughts greatly terrified me, and my face turned pale; but I kept the matter in my mind.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"8\">\r\n\t\t\t<VERS vnumber=\"1\"> In the third year of the reign of King Belshazzar a vision appeared to me, Daniel, after the one that had appeared to me at first.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> In the vision I was looking and saw myself in Susa the capital, in the province of Elam, and I was by the river Ulai. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> I looked up and saw a ram standing beside the river. It had two horns. Both horns were long, but one was longer than the other, and the longer one came up second. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> I saw the ram charging westward and northward and southward. All beasts were powerless to withstand it, and no one could rescue from its power; it did as it pleased and became strong.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> As I was watching, a male goat appeared from the west, coming across the face of the whole earth without touching the ground. The goat had a horn between its eyes. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> It came toward the ram with the two horns that I had seen standing beside the river, and it ran at it with savage force. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> I saw it approaching the ram. It was enraged against it and struck the ram, breaking its two horns. The ram did not have power to withstand it; it threw the ram down to the ground and trampled upon it, and there was no one who could rescue the ram from its power.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then the male goat grew exceedingly great; but at the height of its power, the great horn was broken, and in its place there came up four prominent horns toward the four winds of heaven.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Out of one of them came another horn, a little one, which grew exceedingly great toward the south, toward the east, and toward the beautiful land. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> It grew as high as the host of heaven. It threw down to the earth some of the host and some of the stars, and trampled on them.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Even against the prince of the host it acted arrogantly; it took the regular burnt offering away from him and overthrew the place of his sanctuary.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Because of wickedness, the host was given over to it together with the regular burnt offering; it cast truth to the ground, and kept prospering in what it did. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then I heard a holy one speaking, and another holy one said to the one that spoke, \"For how long is this vision concerning the regular burnt offering, the transgression that makes desolate, and the giving over of the sanctuary and host to be trampled?\" </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> And he answered him, \"For two thousand three hundred evenings and mornings; then the sanctuary shall be restored to its rightful state.\" </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> When I, Daniel, had seen the vision, I tried to understand it. Then someone appeared standing before me, having the appearance of a man,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> and I heard a human voice by the Ulai, calling, \"Gabriel, help this man understand the vision.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> So he came near where I stood; and when he came, I became frightened and fell prostrate. But he said to me, \"Understand, O mortal, that the vision is for the time of the end.\" </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> As he was speaking to me, I fell into a trance, face to the ground; then he touched me and set me on my feet.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> He said, \"Listen, and I will tell you what will take place later in the period of wrath; for it refers to the appointed time of the end.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> As for the ram that you saw with the two horns, these are the kings of Media and Persia.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> The male goat is the king of Greece, and the great horn between its eyes is the first king. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> As for the horn that was broken, in place of which four others arose, four kingdoms shall arise from his nation, but not with his power. </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> At the end of their rule, when the transgressions have reached their full measure, a king of bold countenance shall arise, skilled in intrigue.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> He shall grow strong in power, shall cause fearful destruction, and shall succeed in what he does. He shall destroy the powerful and the people of the holy ones. </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> By his cunning he shall make deceit prosper under his hand, and in his own mind he shall be great. Without warning he shall destroy many and shall even rise up against the Prince of princes. But he shall be broken, and not by human hands.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> The vision of the evenings and the mornings that has been told is true. As for you, seal up the vision, for it refers to many days from now.\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> So I, Daniel, was overcome and lay sick for some days; then I arose and went about the king's business. But I was dismayed by the vision and did not understand it.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"9\">\r\n\t\t\t<VERS vnumber=\"1\"> In the first year of Darius son of Ahasuerus, by birth a Mede, who became king over the realm of the Chaldeans--</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> in the first year of his reign, I, Daniel, perceived in the books the number of years that, according to the word of the LORD to the prophet Jeremiah, must be fulfilled for the devastation of Jerusalem, namely, seventy years.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then I turned to the Lord God, to seek an answer by prayer and supplication with fasting and sackcloth and ashes.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> I prayed to the LORD my God and made confession, saying, \"Ah, Lord, great and awesome God, keeping covenant and steadfast love with those who love you and keep your commandments,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> we have sinned and done wrong, acted wickedly and rebelled, turning aside from your commandments and ordinances.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> We have not listened to your servants the prophets, who spoke in your name to our kings, our princes, and our ancestors, and to all the people of the land.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> \"Righteousness is on your side, O Lord, but open shame, as at this day, falls on us, the people of Judah, the inhabitants of Jerusalem, and all Israel, those who are near and those who are far away, in all the lands to which you have driven them, because of the treachery that they have committed against you.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Open shame, O LORD, falls on us, our kings, our officials, and our ancestors, because we have sinned against you.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> To the Lord our God belong mercy and forgiveness, for we have rebelled against him,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> and have not obeyed the voice of the LORD our God by following his laws, which he set before us by his servants the prophets.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> \"All Israel has transgressed your law and turned aside, refusing to obey your voice. So the curse and the oath written in the law of Moses, the servant of God, have been poured out upon us, because we have sinned against you.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> He has confirmed his words, which he spoke against us and against our rulers, by bringing upon us a calamity so great that what has been done against Jerusalem has never before been done under the whole heaven.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Just as it is written in the law of Moses, all this calamity has come upon us. We did not entreat the favor of the LORD our God, turning from our iniquities and reflecting on his fidelity. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> So the LORD kept watch over this calamity until he brought it upon us. Indeed, the LORD our God is right in all that he has done; for we have disobeyed his voice.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> \"And now, O Lord our God, who brought your people out of the land of Egypt with a mighty hand and made your name renowned even to this day-- we have sinned, we have done wickedly.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> O Lord, in view of all your righteous acts, let your anger and wrath, we pray, turn away from your city Jerusalem, your holy mountain; because of our sins and the iniquities of our ancestors, Jerusalem and your people have become a disgrace among all our neighbors.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Now therefore, O our God, listen to the prayer of your servant and to his supplication, and for your own sake, Lord, let your face shine upon your desolated sanctuary. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Incline your ear, O my God, and hear. Open your eyes and look at our desolation and the city that bears your name. We do not present our supplication before you on the ground of our righteousness, but on the ground of your great mercies.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> O Lord, hear; O Lord, forgive; O Lord, listen and act and do not delay! For your own sake, O my God, because your city and your people bear your name!\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> While I was speaking, and was praying and confessing my sin and the sin of my people Israel, and presenting my supplication before the LORD my God on behalf of the holy mountain of my God--</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> while I was speaking in prayer, the man Gabriel, whom I had seen before in a vision, came to me in swift flight at the time of the evening sacrifice.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> He came and said to me, \"Daniel, I have now come out to give you wisdom and understanding. </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> At the beginning of your supplications a word went out, and I have come to declare it, for you are greatly beloved. So consider the word and understand the vision:</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> \"Seventy weeks are decreed for your people and your holy city: to finish the transgression, to put an end to sin, and to atone for iniquity, to bring in everlasting righteousness, to seal both vision and prophet, and to anoint a most holy place. </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Know therefore and understand: from the time that the word went out to restore and rebuild Jerusalem until the time of an anointed prince, there shall be seven weeks; and for sixty-two weeks it shall be built again with streets and moat, but in a troubled time.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> After the sixty-two weeks, an anointed one shall be cut off and shall have nothing, and the troops of the prince who is to come shall destroy the city and the sanctuary. Its end shall come with a flood, and to the end there shall be war. Desolations are decreed.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> He shall make a strong covenant with many for one week, and for half of the week he shall make sacrifice and offering cease; and in their place shall be an abomination that desolates, until the decreed end is poured out upon the desolator.\" </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"10\">\r\n\t\t\t<VERS vnumber=\"1\"> In the third year of King Cyrus of Persia a word was revealed to Daniel, who was named Belteshazzar. The word was true, and it concerned a great conflict. He understood the word, having received understanding in the vision.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> At that time I, Daniel, had been mourning for three weeks.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> I had eaten no rich food, no meat or wine had entered my mouth, and I had not anointed myself at all, for the full three weeks.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> On the twenty-fourth day of the first month, as I was standing on the bank of the great river (that is, the Tigris),</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> I looked up and saw a man clothed in linen, with a belt of gold from Uphaz around his waist.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> His body was like beryl, his face like lightning, his eyes like flaming torches, his arms and legs like the gleam of burnished bronze, and the sound of his words like the roar of a multitude.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> I, Daniel, alone saw the vision; the people who were with me did not see the vision, though a great trembling fell upon them, and they fled and hid themselves.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> So I was left alone to see this great vision. My strength left me, and my complexion grew deathly pale, and I retained no strength.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then I heard the sound of his words; and when I heard the sound of his words, I fell into a trance, face to the ground.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> But then a hand touched me and roused me to my hands and knees.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> He said to me, \"Daniel, greatly beloved, pay attention to the words that I am going to speak to you. Stand on your feet, for I have now been sent to you.\" So while he was speaking this word to me, I stood up trembling.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> He said to me, \"Do not fear, Daniel, for from the first day that you set your mind to gain understanding and to humble yourself before your God, your words have been heard, and I have come because of your words.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> But the prince of the kingdom of Persia opposed me twenty-one days. So Michael, one of the chief princes, came to help me, and I left him there with the prince of the kingdom of Persia, </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> and have come to help you understand what is to happen to your people at the end of days. For there is a further vision for those days.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> While he was speaking these words to me, I turned my face toward the ground and was speechless.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then one in human form touched my lips, and I opened my mouth to speak, and said to the one who stood before me, \"My lord, because of the vision such pains have come upon me that I retain no strength.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> How can my lord's servant talk with my lord? For I am shaking, no strength remains in me, and no breath is left in me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Again one in human form touched me and strengthened me.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> He said, \"Do not fear, greatly beloved, you are safe. Be strong and courageous!\" When he spoke to me, I was strengthened and said, \"Let my lord speak, for you have strengthened me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Then he said, \"Do you know why I have come to you? Now I must return to fight against the prince of Persia, and when I am through with him, the prince of Greece will come.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> But I am to tell you what is inscribed in the book of truth. There is no one with me who contends against these princes except Michael, your prince.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"11\">\r\n\t\t\t<VERS vnumber=\"1\"> As for me, in the first year of Darius the Mede, I stood up to support and strengthen him.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"Now I will announce the truth to you. Three more kings shall arise in Persia. The fourth shall be far richer than all of them, and when he has become strong through his riches, he shall stir up all against the kingdom of Greece.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then a warrior king shall arise, who shall rule with great dominion and take action as he pleases.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> And while still rising in power, his kingdom shall be broken and divided toward the four winds of heaven, but not to his posterity, nor according to the dominion with which he ruled; for his kingdom shall be uprooted and go to others besides these.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> \"Then the king of the south shall grow strong, but one of his officers shall grow stronger than he and shall rule a realm greater than his own realm.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> After some years they shall make an alliance, and the daughter of the king of the south shall come to the king of the north to ratify the agreement. But she shall not retain her power, and his offspring shall not endure. She shall be given up, she and her attendants and her child and the one who supported her. \"In those times</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> a branch from her roots shall rise up in his place. He shall come against the army and enter the fortress of the king of the north, and he shall take action against them and prevail.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Even their gods, with their idols and with their precious vessels of silver and gold, he shall carry off to Egypt as spoils of war. For some years he shall refrain from attacking the king of the north;</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> then the latter shall invade the realm of the king of the south, but will return to his own land.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> \"His sons shall wage war and assemble a multitude of great forces, which shall advance like a flood and pass through, and again shall carry the war as far as his fortress.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Moved with rage, the king of the south shall go out and do battle against the king of the north, who shall muster a great multitude, which shall, however, be defeated by his enemy.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> When the multitude has been carried off, his heart shall be exalted, and he shall overthrow tens of thousands, but he shall not prevail.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> For the king of the north shall again raise a multitude, larger than the former, and after some years he shall advance with a great army and abundant supplies. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> \"In those times many shall rise against the king of the south. The lawless among your own people shall lift themselves up in order to fulfill the vision, but they shall fail.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Then the king of the north shall come and throw up siegeworks, and take a well-fortified city. And the forces of the south shall not stand, not even his picked troops, for there shall be no strength to resist.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> But he who comes against him shall take the actions he pleases, and no one shall withstand him. He shall take a position in the beautiful land, and all of it shall be in his power.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> He shall set his mind to come with the strength of his whole kingdom, and he shall bring terms of peace and perform them. In order to destroy the kingdom, he shall give him a woman in marriage; but it shall not succeed or be to his advantage. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Afterward he shall turn to the coastlands, and shall capture many. But a commander shall put an end to his insolence; indeed, he shall turn his insolence back upon him. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Then he shall turn back toward the fortresses of his own land, but he shall stumble and fall, and shall not be found.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> \"Then shall arise in his place one who shall send an official for the glory of the kingdom; but within a few days he shall be broken, though not in anger or in battle.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> In his place shall arise a contemptible person on whom royal majesty had not been conferred; he shall come in without warning and obtain the kingdom through intrigue.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Armies shall be utterly swept away and broken before him, and the prince of the covenant as well.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> And after an alliance is made with him, he shall act deceitfully and become strong with a small party.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Without warning he shall come into the richest parts of the province and do what none of his predecessors had ever done, lavishing plunder, spoil, and wealth on them. He shall devise plans against strongholds, but only for a time. </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> He shall stir up his power and determination against the king of the south with a great army, and the king of the south shall wage war with a much greater and stronger army. But he shall not succeed, for plots shall be devised against him</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> by those who eat of the royal rations. They shall break him, his army shall be swept away, and many shall fall slain.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> The two kings, their minds bent on evil, shall sit at one table and exchange lies. But it shall not succeed, for there remains an end at the time appointed.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> He shall return to his land with great wealth, but his heart shall be set against the holy covenant. He shall work his will, and return to his own land.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> \"At the time appointed he shall return and come into the south, but this time it shall not be as it was before.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> For ships of Kittim shall come against him, and he shall lose heart and withdraw. He shall be enraged and take action against the holy covenant. He shall turn back and pay heed to those who forsake the holy covenant.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Forces sent by him shall occupy and profane the temple and fortress. They shall abolish the regular burnt offering and set up the abomination that makes desolate.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> He shall seduce with intrigue those who violate the covenant; but the people who are loyal to their God shall stand firm and take action.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> The wise among the people shall give understanding to many; for some days, however, they shall fall by sword and flame, and suffer captivity and plunder.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> When they fall victim, they shall receive a little help, and many shall join them insincerely.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Some of the wise shall fall, so that they may be refined, purified, and cleansed, until the time of the end, for there is still an interval until the time appointed. </VERS>\r\n\t\t\t<VERS vnumber=\"36\"> \"The king shall act as he pleases. He shall exalt himself and consider himself greater than any god, and shall speak horrendous things against the God of gods. He shall prosper until the period of wrath is completed, for what is determined shall be done.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> He shall pay no respect to the gods of his ancestors, or to the one beloved by women; he shall pay no respect to any other god, for he shall consider himself greater than all.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> He shall honor the god of fortresses instead of these; a god whom his ancestors did not know he shall honor with gold and silver, with precious stones and costly gifts.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> He shall deal with the strongest fortresses by the help of a foreign god. Those who acknowledge him he shall make more wealthy, and shall appoint them as rulers over many, and shall distribute the land for a price.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> \"At the time of the end the king of the south shall attack him. But the king of the north shall rush upon him like a whirlwind, with chariots and horsemen, and with many ships. He shall advance against countries and pass through like a flood.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> He shall come into the beautiful land, and tens of thousands shall fall victim, but Edom and Moab and the main part of the Ammonites shall escape from his power.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> He shall stretch out his hand against the countries, and the land of Egypt shall not escape.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> He shall become ruler of the treasures of gold and of silver, and all the riches of Egypt; and the Libyans and the Ethiopians shall follow in his train. </VERS>\r\n\t\t\t<VERS vnumber=\"44\"> But reports from the east and the north shall alarm him, and he shall go out with great fury to bring ruin and complete destruction to many.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> He shall pitch his palatial tents between the sea and the beautiful holy mountain. Yet he shall come to his end, with no one to help him.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"12\">\r\n\t\t\t<VERS vnumber=\"1\"> \"At that time Michael, the great prince, the protector of your people, shall arise. There shall be a time of anguish, such as has never occurred since nations first came into existence. But at that time your people shall be delivered, everyone who is found written in the book.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Many of those who sleep in the dust of the earth shall awake, some to everlasting life, and some to shame and everlasting contempt. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Those who are wise shall shine like the brightness of the sky, and those who lead many to righteousness, like the stars forever and ever. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But you, Daniel, keep the words secret and the book sealed until the time of the end. Many shall be running back and forth, and evil shall increase.\" </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then I, Daniel, looked, and two others appeared, one standing on this bank of the stream and one on the other.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> One of them said to the man clothed in linen, who was upstream, \"How long shall it be until the end of these wonders?\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The man clothed in linen, who was upstream, raised his right hand and his left hand toward heaven. And I heard him swear by the one who lives forever that it would be for a time, two times, and half a time, and that when the shattering of the power of the holy people comes to an end, all these things would be accomplished. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> I heard but could not understand; so I said, \"My lord, what shall be the outcome of these things?\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> He said, \"Go your way, Daniel, for the words are to remain secret and sealed until the time of the end.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Many shall be purified, cleansed, and refined, but the wicked shall continue to act wickedly. None of the wicked shall understand, but those who are wise shall understand.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> From the time that the regular burnt offering is taken away and the abomination that desolates is set up, there shall be one thousand two hundred ninety days.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Happy are those who persevere and attain the thousand three hundred thirty-five days.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> But you, go your way, and rest; you shall rise for your reward at the end of the days.\" </VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"28\" bname=\"Hosea\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> The word of the LORD that came to Hosea son of Beeri, in the days of Kings Uzziah, Jotham, Ahaz, and Hezekiah of Judah, and in the days of King Jeroboam son of Joash of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> When the LORD first spoke through Hosea, the LORD said to Hosea, \"Go, take for yourself a wife of whoredom and have children of whoredom, for the land commits great whoredom by forsaking the LORD.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> So he went and took Gomer daughter of Diblaim, and she conceived and bore him a son.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> And the LORD said to him, \"Name him Jezreel; for in a little while I will punish the house of Jehu for the blood of Jezreel, and I will put an end to the kingdom of the house of Israel. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> On that day I will break the bow of Israel in the valley of Jezreel.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> She conceived again and bore a daughter. Then the LORD said to him, \"Name her Lo-ruhamah, for I will no longer have pity on the house of Israel or forgive them. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But I will have pity on the house of Judah, and I will save them by the LORD their God; I will not save them by bow, or by sword, or by war, or by horses, or by horsemen.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> When she had weaned Lo-ruhamah, she conceived and bore a son.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then the LORD said, \"Name him Lo-ammi, for you are not my people and I am not your God.\" </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Yet the number of the people of Israel shall be like the sand of the sea, which can be neither measured nor numbered; and in the place where it was said to them, \"You are not my people,\" it shall be said to them, \"Children of the living God.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The people of Judah and the people of Israel shall be gathered together, and they shall appoint for themselves one head; and they shall take possession of the land, for great shall be the day of Jezreel. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> Say to your brother, Ammi, and to your sister, Ruhamah. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Plead with your mother, plead-- for she is not my wife, and I am not her husband-- that she put away her whoring from her face, and her adultery from between her breasts,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> or I will strip her naked and expose her as in the day she was born, and make her like a wilderness, and turn her into a parched land, and kill her with thirst.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Upon her children also I will have no pity, because they are children of whoredom.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> For their mother has played the whore; she who conceived them has acted shamefully. For she said, \"I will go after my lovers; they give me my bread and my water, my wool and my flax, my oil and my drink.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Therefore I will hedge up her way with thorns; and I will build a wall against her, so that she cannot find her paths. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> She shall pursue her lovers, but not overtake them; and she shall seek them, but shall not find them. Then she shall say, \"I will go and return to my first husband, for it was better with me then than now.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> She did not know that it was I who gave her the grain, the wine, and the oil, and who lavished upon her silver and gold that they used for Baal.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Therefore I will take back my grain in its time, and my wine in its season; and I will take away my wool and my flax, which were to cover her nakedness.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Now I will uncover her shame in the sight of her lovers, and no one shall rescue her out of my hand.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> I will put an end to all her mirth, her festivals, her new moons, her sabbaths, and all her appointed festivals.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> I will lay waste her vines and her fig trees, of which she said, \"These are my pay, which my lovers have given me.\" I will make them a forest, and the wild animals shall devour them.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> I will punish her for the festival days of the Baals, when she offered incense to them and decked herself with her ring and jewelry, and went after her lovers, and forgot me, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Therefore, I will now allure her, and bring her into the wilderness, and speak tenderly to her.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> From there I will give her her vineyards, and make the Valley of Achor a door of hope. There she shall respond as in the days of her youth, as at the time when she came out of the land of Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> On that day, says the LORD, you will call me, \"My husband,\" and no longer will you call me, \"My Baal.\" </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> For I will remove the names of the Baals from her mouth, and they shall be mentioned by name no more.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> I will make for you a covenant on that day with the wild animals, the birds of the air, and the creeping things of the ground; and I will abolish the bow, the sword, and war from the land; and I will make you lie down in safety. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> And I will take you for my wife forever; I will take you for my wife in righteousness and in justice, in steadfast love, and in mercy.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> I will take you for my wife in faithfulness; and you shall know the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> On that day I will answer, says the LORD, I will answer the heavens and they shall answer the earth;</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> and the earth shall answer the grain, the wine, and the oil, and they shall answer Jezreel; </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> and I will sow him for myself in the land. And I will have pity on Lo-ruhamah, and I will say to Lo-ammi, \"You are my people\"; and he shall say, \"You are my God.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> The LORD said to me again, \"Go, love a woman who has a lover and is an adulteress, just as the LORD loves the people of Israel, though they turn to other gods and love raisin cakes.\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> So I bought her for fifteen shekels of silver and a homer of barley and a measure of wine. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And I said to her, \"You must remain as mine for many days; you shall not play the whore, you shall not have intercourse with a man, nor I with you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For the Israelites shall remain many days without king or prince, without sacrifice or pillar, without ephod or teraphim.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Afterward the Israelites shall return and seek the LORD their God, and David their king; they shall come in awe to the LORD and to his goodness in the latter days.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> Hear the word of the LORD, O people of Israel; for the LORD has an indictment against the inhabitants of the land. There is no faithfulness or loyalty, and no knowledge of God in the land.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Swearing, lying, and murder, and stealing and adultery break out; bloodshed follows bloodshed.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Therefore the land mourns, and all who live in it languish; together with the wild animals and the birds of the air, even the fish of the sea are perishing.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Yet let no one contend, and let none accuse, for with you is my contention, O priest. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> You shall stumble by day; the prophet also shall stumble with you by night, and I will destroy your mother.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> My people are destroyed for lack of knowledge; because you have rejected knowledge, I reject you from being a priest to me. And since you have forgotten the law of your God, I also will forget your children.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The more they increased, the more they sinned against me; they changed their glory into shame. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> They feed on the sin of my people; they are greedy for their iniquity.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> And it shall be like people, like priest; I will punish them for their ways, and repay them for their deeds.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> They shall eat, but not be satisfied; they shall play the whore, but not multiply; because they have forsaken the LORD to devote themselves to</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> whoredom. Wine and new wine take away the understanding.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> My people consult a piece of wood, and their divining rod gives them oracles. For a spirit of whoredom has led them astray, and they have played the whore, forsaking their God.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> They sacrifice on the tops of the mountains, and make offerings upon the hills, under oak, poplar, and terebinth, because their shade is good. Therefore your daughters play the whore, and your daughters-in-law commit adultery.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> I will not punish your daughters when they play the whore, nor your daughters-in-law when they commit adultery; for the men themselves go aside with whores, and sacrifice with temple prostitutes; thus a people without understanding comes to ruin.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Though you play the whore, O Israel, do not let Judah become guilty. Do not enter into Gilgal, or go up to Beth-aven, and do not swear, \"As the LORD lives.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Like a stubborn heifer, Israel is stubborn; can the LORD now feed them like a lamb in a broad pasture?</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Ephraim is joined to idols-- let him alone.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> When their drinking is ended, they indulge in sexual orgies; they love lewdness more than their glory. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> A wind has wrapped them in its wings, and they shall be ashamed because of their altars. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"5\">\r\n\t\t\t<VERS vnumber=\"1\"> Hear this, O priests! Give heed, O house of Israel! Listen, O house of the king! For the judgment pertains to you; for you have been a snare at Mizpah, and a net spread upon Tabor,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> and a pit dug deep in Shittim; but I will punish all of them. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> I know Ephraim, and Israel is not hidden from me; for now, O Ephraim, you have played the whore; Israel is defiled.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Their deeds do not permit them to return to their God. For the spirit of whoredom is within them, and they do not know the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Israel's pride testifies against him; Ephraim stumbles in his guilt; Judah also stumbles with them. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> With their flocks and herds they shall go to seek the LORD, but they will not find him; he has withdrawn from them.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> They have dealt faithlessly with the LORD; for they have borne illegitimate children. Now the new moon shall devour them along with their fields.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Blow the horn in Gibeah, the trumpet in Ramah. Sound the alarm at Beth-aven; look behind you, Benjamin!</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Ephraim shall become a desolation in the day of punishment; among the tribes of Israel I declare what is sure.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The princes of Judah have become like those who remove the landmark; on them I will pour out my wrath like water.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Ephraim is oppressed, crushed in judgment, because he was determined to go after vanity. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Therefore I am like maggots to Ephraim, and like rottenness to the house of Judah.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> When Ephraim saw his sickness, and Judah his wound, then Ephraim went to Assyria, and sent to the great king. But he is not able to cure you or heal your wound. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> For I will be like a lion to Ephraim, and like a young lion to the house of Judah. I myself will tear and go away; I will carry off, and no one shall rescue.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> I will return again to my place until they acknowledge their guilt and seek my face. In their distress they will beg my favor:</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"6\">\r\n\t\t\t<VERS vnumber=\"1\"> \"Come, let us return to the LORD; for it is he who has torn, and he will heal us; he has struck down, and he will bind us up.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> After two days he will revive us; on the third day he will raise us up, that we may live before him.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Let us know, let us press on to know the LORD; his appearing is as sure as the dawn; he will come to us like the showers, like the spring rains that water the earth.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> What shall I do with you, O Ephraim? What shall I do with you, O Judah? Your love is like a morning cloud, like the dew that goes away early.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Therefore I have hewn them by the prophets, I have killed them by the words of my mouth, and my judgment goes forth as the light. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For I desire steadfast love and not sacrifice, the knowledge of God rather than burnt offerings.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But at Adam they transgressed the covenant; there they dealt faithlessly with me. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Gilead is a city of evildoers, tracked with blood.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> As robbers lie in wait for someone, so the priests are banded together; they murder on the road to Shechem, they commit a monstrous crime.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> In the house of Israel I have seen a horrible thing; Ephraim's whoredom is there, Israel is defiled.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> For you also, O Judah, a harvest is appointed. When I would restore the fortunes of my people,</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"7\">\r\n\t\t\t<VERS vnumber=\"1\"> when I would heal Israel, the corruption of Ephraim is revealed, and the wicked deeds of Samaria; for they deal falsely, the thief breaks in, and the bandits raid outside.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> But they do not consider that I remember all their wickedness. Now their deeds surround them, they are before my face.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> By their wickedness they make the king glad, and the officials by their treachery.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> They are all adulterers; they are like a heated oven, whose baker does not need to stir the fire, from the kneading of the dough until it is leavened.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> On the day of our king the officials became sick with the heat of wine; he stretched out his hand with mockers.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For they are kindled like an oven, their heart burns within them; all night their anger smolders; in the morning it blazes like a flaming fire. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> All of them are hot as an oven, and they devour their rulers. All their kings have fallen; none of them calls upon me.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Ephraim mixes himself with the peoples; Ephraim is a cake not turned.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Foreigners devour his strength, but he does not know it; gray hairs are sprinkled upon him, but he does not know it.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Israel's pride testifies against him; yet they do not return to the LORD their God, or seek him, for all this. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Ephraim has become like a dove, silly and without sense; they call upon Egypt, they go to Assyria.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> As they go, I will cast my net over them; I will bring them down like birds of the air; I will discipline them according to the report made to their assembly. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Woe to them, for they have strayed from me! Destruction to them, for they have rebelled against me! I would redeem them, but they speak lies against me.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> They do not cry to me from the heart, but they wail upon their beds; they gash themselves for grain and wine; they rebel against me.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> It was I who trained and strengthened their arms, yet they plot evil against me.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> They turn to that which does not profit; they have become like a defective bow; their officials shall fall by the sword because of the rage of their tongue. So much for their babbling in the land of Egypt. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"8\">\r\n\t\t\t<VERS vnumber=\"1\"> Set the trumpet to your lips! One like a vulture is over the house of the LORD, because they have broken my covenant, and transgressed my law. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Israel cries to me, \"My God, we-- Israel-- know you!\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Israel has spurned the good; the enemy shall pursue him.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> They made kings, but not through me; they set up princes, but without my knowledge. With their silver and gold they made idols for their own destruction.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Your calf is rejected, O Samaria. My anger burns against them. How long will they be incapable of innocence?</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For it is from Israel, an artisan made it; it is not God. The calf of Samaria shall be broken to pieces. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> For they sow the wind, and they shall reap the whirlwind. The standing grain has no heads, it shall yield no meal; if it were to yield, foreigners would devour it.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Israel is swallowed up; now they are among the nations as a useless vessel.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> For they have gone up to Assyria, a wild ass wandering alone; Ephraim has bargained for lovers.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Though they bargain with the nations, I will now gather them up. They shall soon writhe under the burden of kings and princes.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> When Ephraim multiplied altars to expiate sin, they became to him altars for sinning.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Though I write for him the multitude of my instructions, they are regarded as a strange thing.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Though they offer choice sacrifices, though they eat flesh, the LORD does not accept them. Now he will remember their iniquity, and punish their sins; they shall return to Egypt. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Israel has forgotten his Maker, and built palaces; and Judah has multiplied fortified cities; but I will send a fire upon his cities, and it shall devour his strongholds.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"9\">\r\n\t\t\t<VERS vnumber=\"1\"> Do not rejoice, O Israel! Do not exult as other nations do; for you have played the whore, departing from your God. You have loved a prostitute's pay on all threshing floors. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Threshing floor and wine vat shall not feed them, and the new wine shall fail them.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> They shall not remain in the land of the LORD; but Ephraim shall return to Egypt, and in Assyria they shall eat unclean food.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> They shall not pour drink offerings of wine to the LORD, and their sacrifices shall not please him. Such sacrifices shall be like mourners' bread; all who eat of it shall be defiled; for their bread shall be for their hunger only; it shall not come to the house of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> What will you do on the day of appointed festival, and on the day of the festival of the LORD?</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For even if they escape destruction, Egypt shall gather them, Memphis shall bury them. Nettles shall possess their precious things of silver; thorns shall be in their tents. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The days of punishment have come, the days of recompense have come; Israel cries, \"The prophet is a fool, the man of the spirit is mad!\" Because of your great iniquity, your hostility is great. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The prophet is a sentinel for my God over Ephraim, yet a fowler's snare is on all his ways, and hostility in the house of his God.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> They have deeply corrupted themselves as in the days of Gibeah; he will remember their iniquity, he will punish their sins.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Like grapes in the wilderness, I found Israel. Like the first fruit on the fig tree, in its first season, I saw your ancestors. But they came to Baal-peor, and consecrated themselves to a thing of shame, and became detestable like the thing they loved.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Ephraim's glory shall fly away like a bird-- no birth, no pregnancy, no conception!</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Even if they bring up children, I will bereave them until no one is left. Woe to them indeed when I depart from them!</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Once I saw Ephraim as a young palm planted in a lovely meadow, but now Ephraim must lead out his children for slaughter. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Give them, O LORD-- what will you give? Give them a miscarrying womb and dry breasts.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Every evil of theirs began at Gilgal; there I came to hate them. Because of the wickedness of their deeds I will drive them out of my house. I will love them no more; all their officials are rebels.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Ephraim is stricken, their root is dried up, they shall bear no fruit. Even though they give birth, I will kill the cherished offspring of their womb.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Because they have not listened to him, my God will reject them; they shall become wanderers among the nations.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"10\">\r\n\t\t\t<VERS vnumber=\"1\"> Israel is a luxuriant vine that yields its fruit. The more his fruit increased the more altars he built; as his country improved, he improved his pillars.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Their heart is false; now they must bear their guilt. The LORD will break down their altars, and destroy their pillars.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For now they will say: \"We have no king, for we do not fear the LORD, and a king-- what could he do for us?\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> They utter mere words; with empty oaths they make covenants; so litigation springs up like poisonous weeds in the furrows of the field.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The inhabitants of Samaria tremble for the calf of Beth-aven. Its people shall mourn for it, and its idolatrous priests shall wail over it, over its glory that has departed from it. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The thing itself shall be carried to Assyria as tribute to the great king. Ephraim shall be put to shame, and Israel shall be ashamed of his idol. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Samaria's king shall perish like a chip on the face of the waters.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The high places of Aven, the sin of Israel, shall be destroyed. Thorn and thistle shall grow up on their altars. They shall say to the mountains, Cover us, and to the hills, Fall on us.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Since the days of Gibeah you have sinned, O Israel; there they have continued. Shall not war overtake them in Gibeah?</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> I will come against the wayward people to punish them; and nations shall be gathered against them when they are punished for their double iniquity. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Ephraim was a trained heifer that loved to thresh, and I spared her fair neck; but I will make Ephraim break the ground; Judah must plow; Jacob must harrow for himself.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Sow for yourselves righteousness; reap steadfast love; break up your fallow ground; for it is time to seek the LORD, that he may come and rain righteousness upon you.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> You have plowed wickedness, you have reaped injustice, you have eaten the fruit of lies. Because you have trusted in your power and in the multitude of your warriors,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> therefore the tumult of war shall rise against your people, and all your fortresses shall be destroyed, as Shalman destroyed Beth-arbel on the day of battle when mothers were dashed in pieces with their children.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Thus it shall be done to you, O Bethel, because of your great wickedness. At dawn the king of Israel shall be utterly cut off.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"11\">\r\n\t\t\t<VERS vnumber=\"1\"> When Israel was a child, I loved him, and out of Egypt I called my son.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The more I called them, the more they went from me; they kept sacrificing to the Baals, and offering incense to idols. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Yet it was I who taught Ephraim to walk, I took them up in my arms; but they did not know that I healed them. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> I led them with cords of human kindness, with bands of love. I was to them like those who lift infants to their cheeks. I bent down to them and fed them. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> They shall return to the land of Egypt, and Assyria shall be their king, because they have refused to return to me.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The sword rages in their cities, it consumes their oracle-priests, and devours because of their schemes.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> My people are bent on turning away from me. To the Most High they call, but he does not raise them up at all. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> How can I give you up, Ephraim? How can I hand you over, O Israel? How can I make you like Admah? How can I treat you like Zeboiim? My heart recoils within me; my compassion grows warm and tender.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> I will not execute my fierce anger; I will not again destroy Ephraim; for I am God and no mortal, the Holy One in your midst, and I will not come in wrath. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> They shall go after the LORD, who roars like a lion; when he roars, his children shall come trembling from the west.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> They shall come trembling like birds from Egypt, and like doves from the land of Assyria; and I will return them to their homes, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Ephraim has surrounded me with lies, and the house of Israel with deceit; but Judah still walks with God, and is faithful to the Holy One. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"12\">\r\n\t\t\t<VERS vnumber=\"1\"> Ephraim herds the wind, and pursues the east wind all day long; they multiply falsehood and violence; they make a treaty with Assyria, and oil is carried to Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The LORD has an indictment against Judah, and will punish Jacob according to his ways, and repay him according to his deeds.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> In the womb he tried to supplant his brother, and in his manhood he strove with God.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> He strove with the angel and prevailed, he wept and sought his favor; he met him at Bethel, and there he spoke with him. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The LORD the God of hosts, the LORD is his name!</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> But as for you, return to your God, hold fast to love and justice, and wait continually for your God.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> A trader, in whose hands are false balances, he loves to oppress.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Ephraim has said, \"Ah, I am rich, I have gained wealth for myself; in all of my gain no offense has been found in me that would be sin.\" </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> I am the LORD your God from the land of Egypt; I will make you live in tents again, as in the days of the appointed festival.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> I spoke to the prophets; it was I who multiplied visions, and through the prophets I will bring destruction.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> In Gilead there is iniquity, they shall surely come to nothing. In Gilgal they sacrifice bulls, so their altars shall be like stone heaps on the furrows of the field. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Jacob fled to the land of Aram, there Israel served for a wife, and for a wife he guarded sheep. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> By a prophet the LORD brought Israel up from Egypt, and by a prophet he was guarded.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Ephraim has given bitter offense, so his Lord will bring his crimes down on him and pay him back for his insults.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"13\">\r\n\t\t\t<VERS vnumber=\"1\"> When Ephraim spoke, there was trembling; he was exalted in Israel; but he incurred guilt through Baal and died.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And now they keep on sinning and make a cast image for themselves, idols of silver made according to their understanding, all of them the work of artisans. \"Sacrifice to these,\" they say. People are kissing calves! </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Therefore they shall be like the morning mist or like the dew that goes away early, like chaff that swirls from the threshing floor or like smoke from a window.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Yet I have been the LORD your God ever since the land of Egypt; you know no God but me, and besides me there is no savior.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> It was I who fed you in the wilderness, in the land of drought. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> When I fed them, they were satisfied; they were satisfied, and their heart was proud; therefore they forgot me. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> So I will become like a lion to them, like a leopard I will lurk beside the way.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> I will fall upon them like a bear robbed of her cubs, and will tear open the covering of their heart; there I will devour them like a lion, as a wild animal would mangle them.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> I will destroy you, O Israel; who can help you? </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Where now is your king, that he may save you? Where in all your cities are your rulers, of whom you said, \"Give me a king and rulers\"? </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> I gave you a king in my anger, and I took him away in my wrath.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Ephraim's iniquity is bound up; his sin is kept in store.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The pangs of childbirth come for him, but he is an unwise son; for at the proper time he does not present himself at the mouth of the womb.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Shall I ransom them from the power of Sheol? Shall I redeem them from Death? O Death, where are your plagues? O Sheol, where is your destruction? Compassion is hidden from my eyes. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Although he may flourish among rushes, the east wind shall come, a blast from the LORD, rising from the wilderness; and his fountain shall dry up, his spring shall be parched. It shall strip his treasury of every precious thing. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Samaria shall bear her guilt, because she has rebelled against her God; they shall fall by the sword, their little ones shall be dashed in pieces, and their pregnant women ripped open.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"14\">\r\n\t\t\t<VERS vnumber=\"1\"> Return, O Israel, to the LORD your God, for you have stumbled because of your iniquity.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Take words with you and return to the LORD; say to him, \"Take away all guilt; accept that which is good, and we will offer the fruit of our lips. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Assyria shall not save us; we will not ride upon horses; we will say no more, 'Our God,' to the work of our hands. In you the orphan finds mercy.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> I will heal their disloyalty; I will love them freely, for my anger has turned from them.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> I will be like the dew to Israel; he shall blossom like the lily, he shall strike root like the forests of Lebanon. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> His shoots shall spread out; his beauty shall be like the olive tree, and his fragrance like that of Lebanon.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> They shall again live beneath my shadow, they shall flourish as a garden; they shall blossom like the vine, their fragrance shall be like the wine of Lebanon. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> O Ephraim, what have I to do with idols? It is I who answer and look after you. I am like an evergreen cypress; your faithfulness comes from me. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Those who are wise understand these things; those who are discerning know them. For the ways of the LORD are right, and the upright walk in them, but transgressors stumble in them.</VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"29\" bname=\"Joel\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> The word of the LORD that came to Joel son of Pethuel:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Hear this, O elders, give ear, all inhabitants of the land! Has such a thing happened in your days, or in the days of your ancestors?</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Tell your children of it, and let your children tell their children, and their children another generation.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> What the cutting locust left, the swarming locust has eaten. What the swarming locust left, the hopping locust has eaten, and what the hopping locust left, the destroying locust has eaten.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Wake up, you drunkards, and weep; and wail, all you wine-drinkers, over the sweet wine, for it is cut off from your mouth.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For a nation has invaded my land, powerful and innumerable; its teeth are lions' teeth, and it has the fangs of a lioness.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> It has laid waste my vines, and splintered my fig trees; it has stripped off their bark and thrown it down; their branches have turned white.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Lament like a virgin dressed in sackcloth for the husband of her youth.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The grain offering and the drink offering are cut off from the house of the LORD. The priests mourn, the ministers of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The fields are devastated, the ground mourns; for the grain is destroyed, the wine dries up, the oil fails.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Be dismayed, you farmers, wail, you vinedressers, over the wheat and the barley; for the crops of the field are ruined.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The vine withers, the fig tree droops. Pomegranate, palm, and apple-- all the trees of the field are dried up; surely, joy withers away among the people.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Put on sackcloth and lament, you priests; wail, you ministers of the altar. Come, pass the night in sackcloth, you ministers of my God! Grain offering and drink offering are withheld from the house of your God.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Sanctify a fast, call a solemn assembly. Gather the elders and all the inhabitants of the land to the house of the LORD your God, and cry out to the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Alas for the day! For the day of the LORD is near, and as destruction from the Almighty it comes. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Is not the food cut off before our eyes, joy and gladness from the house of our God?</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The seed shrivels under the clods, the storehouses are desolate; the granaries are ruined because the grain has failed. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> How the animals groan! The herds of cattle wander about because there is no pasture for them; even the flocks of sheep are dazed. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> To you, O LORD, I cry. For fire has devoured the pastures of the wilderness, and flames have burned all the trees of the field.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Even the wild animals cry to you because the watercourses are dried up, and fire has devoured the pastures of the wilderness.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> Blow the trumpet in Zion; sound the alarm on my holy mountain! Let all the inhabitants of the land tremble, for the day of the LORD is coming, it is near--</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> a day of darkness and gloom, a day of clouds and thick darkness! Like blackness spread upon the mountains a great and powerful army comes; their like has never been from of old, nor will be again after them in ages to come.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Fire devours in front of them, and behind them a flame burns. Before them the land is like the garden of Eden, but after them a desolate wilderness, and nothing escapes them.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> They have the appearance of horses, and like war-horses they charge.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> As with the rumbling of chariots, they leap on the tops of the mountains, like the crackling of a flame of fire devouring the stubble, like a powerful army drawn up for battle.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Before them peoples are in anguish, all faces grow pale. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Like warriors they charge, like soldiers they scale the wall. Each keeps to its own course, they do not swerve from their paths. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> They do not jostle one another, each keeps to its own track; they burst through the weapons and are not halted.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> They leap upon the city, they run upon the walls; they climb up into the houses, they enter through the windows like a thief.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The earth quakes before them, the heavens tremble. The sun and the moon are darkened, and the stars withdraw their shining.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The LORD utters his voice at the head of his army; how vast is his host! Numberless are those who obey his command. Truly the day of the LORD is great; terrible indeed-- who can endure it?</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Yet even now, says the LORD, return to me with all your heart, with fasting, with weeping, and with mourning;</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> rend your hearts and not your clothing. Return to the LORD, your God, for he is gracious and merciful, slow to anger, and abounding in steadfast love, and relents from punishing.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Who knows whether he will not turn and relent, and leave a blessing behind him, a grain offering and a drink offering for the LORD, your God?</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Blow the trumpet in Zion; sanctify a fast; call a solemn assembly;</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> gather the people. Sanctify the congregation; assemble the aged; gather the children, even infants at the breast. Let the bridegroom leave his room, and the bride her canopy.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Between the vestibule and the altar let the priests, the ministers of the LORD, weep. Let them say, \"Spare your people, O LORD, and do not make your heritage a mockery, a byword among the nations. Why should it be said among the peoples, 'Where is their God?'\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then the LORD became jealous for his land, and had pity on his people.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> In response to his people the LORD said: I am sending you grain, wine, and oil, and you will be satisfied; and I will no more make you a mockery among the nations.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> I will remove the northern army far from you, and drive it into a parched and desolate land, its front into the eastern sea, and its rear into the western sea; its stench and foul smell will rise up. Surely he has done great things!</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Do not fear, O soil; be glad and rejoice, for the LORD has done great things!</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Do not fear, you animals of the field, for the pastures of the wilderness are green; the tree bears its fruit, the fig tree and vine give their full yield.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> O children of Zion, be glad and rejoice in the LORD your God; for he has given the early rain for your vindication, he has poured down for you abundant rain, the early and the later rain, as before. </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> The threshing floors shall be full of grain, the vats shall overflow with wine and oil.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> I will repay you for the years that the swarming locust has eaten, the hopper, the destroyer, and the cutter, my great army, which I sent against you.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> You shall eat in plenty and be satisfied, and praise the name of the LORD your God, who has dealt wondrously with you. And my people shall never again be put to shame.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> You shall know that I am in the midst of Israel, and that I, the LORD, am your God and there is no other. And my people shall never again be put to shame.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Then afterward I will pour out my spirit on all flesh; your sons and your daughters shall prophesy, your old men shall dream dreams, and your young men shall see visions.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Even on the male and female slaves, in those days, I will pour out my spirit.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> I will show portents in the heavens and on the earth, blood and fire and columns of smoke.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> The sun shall be turned to darkness, and the moon to blood, before the great and terrible day of the LORD comes.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Then everyone who calls on the name of the LORD shall be saved; for in Mount Zion and in Jerusalem there shall be those who escape, as the LORD has said, and among the survivors shall be those whom the LORD calls.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> For then, in those days and at that time, when I restore the fortunes of Judah and Jerusalem,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> I will gather all the nations and bring them down to the valley of Jehoshaphat, and I will enter into judgment with them there, on account of my people and my heritage Israel, because they have scattered them among the nations. They have divided my land,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> and cast lots for my people, and traded boys for prostitutes, and sold girls for wine, and drunk it down.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> What are you to me, O Tyre and Sidon, and all the regions of Philistia? Are you paying me back for something? If you are paying me back, I will turn your deeds back upon your own heads swiftly and speedily.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> For you have taken my silver and my gold, and have carried my rich treasures into your temples. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> You have sold the people of Judah and Jerusalem to the Greeks, removing them far from their own border.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But now I will rouse them to leave the places to which you have sold them, and I will turn your deeds back upon your own heads.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> I will sell your sons and your daughters into the hand of the people of Judah, and they will sell them to the Sabeans, to a nation far away; for the LORD has spoken.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Proclaim this among the nations: Prepare war, stir up the warriors. Let all the soldiers draw near, let them come up. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Beat your plowshares into swords, and your pruning hooks into spears; let the weakling say, \"I am a warrior.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Come quickly, all you nations all around, gather yourselves there. Bring down your warriors, O LORD. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Let the nations rouse themselves, and come up to the valley of Jehoshaphat; for there I will sit to judge all the neighboring nations.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Put in the sickle, for the harvest is ripe. Go in, tread, for the wine press is full. The vats overflow, for their wickedness is great.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Multitudes, multitudes, in the valley of decision! For the day of the LORD is near in the valley of decision.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The sun and the moon are darkened, and the stars withdraw their shining.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The LORD roars from Zion, and utters his voice from Jerusalem, and the heavens and the earth shake. But the LORD is a refuge for his people, a stronghold for the people of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> So you shall know that I, the LORD your God, dwell in Zion, my holy mountain. And Jerusalem shall be holy, and strangers shall never again pass through it.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> In that day the mountains shall drip sweet wine, the hills shall flow with milk, and all the stream beds of Judah shall flow with water; a fountain shall come forth from the house of the LORD and water the Wadi Shittim.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Egypt shall become a desolation and Edom a desolate wilderness, because of the violence done to the people of Judah, in whose land they have shed innocent blood.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> But Judah shall be inhabited forever, and Jerusalem to all generations.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> I will avenge their blood, and I will not clear the guilty, for the LORD dwells in Zion. </VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"30\" bname=\"Amos\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> The words of Amos, who was among the shepherds of Tekoa, which he saw concerning Israel in the days of King Uzziah of Judah and in the days of King Jeroboam son of Joash of Israel, two years before the earthquake. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And he said: The LORD roars from Zion, and utters his voice from Jerusalem; the pastures of the shepherds wither, and the top of Carmel dries up.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Thus says the LORD: For three transgressions of Damascus, and for four, I will not revoke the punishment; because they have threshed Gilead with threshing sledges of iron. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> So I will send a fire on the house of Hazael, and it shall devour the strongholds of Ben-hadad.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> I will break the gate bars of Damascus, and cut off the inhabitants from the Valley of Aven, and the one who holds the scepter from Beth-eden; and the people of Aram shall go into exile to Kir, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Thus says the LORD: For three transgressions of Gaza, and for four, I will not revoke the punishment; because they carried into exile entire communities, to hand them over to Edom. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> So I will send a fire on the wall of Gaza, fire that shall devour its strongholds.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> I will cut off the inhabitants from Ashdod, and the one who holds the scepter from Ashkelon; I will turn my hand against Ekron, and the remnant of the Philistines shall perish, says the Lord GOD.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Thus says the LORD: For three transgressions of Tyre, and for four, I will not revoke the punishment; because they delivered entire communities over to Edom, and did not remember the covenant of kinship. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> So I will send a fire on the wall of Tyre, fire that shall devour its strongholds.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Thus says the LORD: For three transgressions of Edom, and for four, I will not revoke the punishment; because he pursued his brother with the sword and cast off all pity; he maintained his anger perpetually, and kept his wrath forever. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> So I will send a fire on Teman, and it shall devour the strongholds of Bozrah.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Thus says the LORD: For three transgressions of the Ammonites, and for four, I will not revoke the punishment; because they have ripped open pregnant women in Gilead in order to enlarge their territory. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> So I will kindle a fire against the wall of Rabbah, fire that shall devour its strongholds, with shouting on the day of battle, with a storm on the day of the whirlwind;</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> then their king shall go into exile, he and his officials together, says the LORD.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> Thus says the LORD: For three transgressions of Moab, and for four, I will not revoke the punishment; because he burned to lime the bones of the king of Edom. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> So I will send a fire on Moab, and it shall devour the strongholds of Kerioth, and Moab shall die amid uproar, amid shouting and the sound of the trumpet;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> I will cut off the ruler from its midst, and will kill all its officials with him, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Thus says the LORD: For three transgressions of Judah, and for four, I will not revoke the punishment; because they have rejected the law of the LORD, and have not kept his statutes, but they have been led astray by the same lies after which their ancestors walked. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> So I will send a fire on Judah, and it shall devour the strongholds of Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Thus says the LORD: For three transgressions of Israel, and for four, I will not revoke the punishment; because they sell the righteous for silver, and the needy for a pair of sandals--</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> they who trample the head of the poor into the dust of the earth, and push the afflicted out of the way; father and son go in to the same girl, so that my holy name is profaned;</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> they lay themselves down beside every altar on garments taken in pledge; and in the house of their God they drink wine bought with fines they imposed.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Yet I destroyed the Amorite before them, whose height was like the height of cedars, and who was as strong as oaks; I destroyed his fruit above, and his roots beneath.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Also I brought you up out of the land of Egypt, and led you forty years in the wilderness, to possess the land of the Amorite.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> And I raised up some of your children to be prophets and some of your youths to be nazirites. Is it not indeed so, O people of Israel? says the LORD. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> But you made the nazirites drink wine, and commanded the prophets, saying, \"You shall not prophesy.\" </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> So, I will press you down in your place, just as a cart presses down when it is full of sheaves.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Flight shall perish from the swift, and the strong shall not retain their strength, nor shall the mighty save their lives;</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> those who handle the bow shall not stand, and those who are swift of foot shall not save themselves, nor shall those who ride horses save their lives;</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> and those who are stout of heart among the mighty shall flee away naked in that day, says the LORD.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> Hear this word that the LORD has spoken against you, O people of Israel, against the whole family that I brought up out of the land of Egypt:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> You only have I known of all the families of the earth; therefore I will punish you for all your iniquities.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Do two walk together unless they have made an appointment?</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Does a lion roar in the forest, when it has no prey? Does a young lion cry out from its den, if it has caught nothing?</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Does a bird fall into a snare on the earth, when there is no trap for it? Does a snare spring up from the ground, when it has taken nothing?</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Is a trumpet blown in a city, and the people are not afraid? Does disaster befall a city, unless the LORD has done it?</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Surely the Lord GOD does nothing, without revealing his secret to his servants the prophets.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The lion has roared; who will not fear? The Lord GOD has spoken; who can but prophesy?</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Proclaim to the strongholds in Ashdod, and to the strongholds in the land of Egypt, and say, \"Assemble yourselves on Mount Samaria, and see what great tumults are within it, and what oppressions are in its midst.\" </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> They do not know how to do right, says the LORD, those who store up violence and robbery in their strongholds.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Therefore thus says the Lord GOD: An adversary shall surround the land, and strip you of your defense; and your strongholds shall be plundered.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Thus says the LORD: As the shepherd rescues from the mouth of the lion two legs, or a piece of an ear, so shall the people of Israel who live in Samaria be rescued, with the corner of a couch and part of a bed. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Hear, and testify against the house of Jacob, says the Lord GOD, the God of hosts:</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> On the day I punish Israel for its transgressions, I will punish the altars of Bethel, and the horns of the altar shall be cut off and fall to the ground.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> I will tear down the winter house as well as the summer house; and the houses of ivory shall perish, and the great houses shall come to an end, says the LORD. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> Hear this word, you cows of Bashan who are on Mount Samaria, who oppress the poor, who crush the needy, who say to their husbands, \"Bring something to drink!\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The Lord GOD has sworn by his holiness: The time is surely coming upon you, when they shall take you away with hooks, even the last of you with fishhooks.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Through breaches in the wall you shall leave, each one straight ahead; and you shall be flung out into Harmon, says the LORD. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Come to Bethel-- and transgress; to Gilgal-- and multiply transgression; bring your sacrifices every morning, your tithes every three days;</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> bring a thank offering of leavened bread, and proclaim freewill offerings, publish them; for so you love to do, O people of Israel! says the Lord GOD.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> I gave you cleanness of teeth in all your cities, and lack of bread in all your places, yet you did not return to me, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> And I also withheld the rain from you when there were still three months to the harvest; I would send rain on one city, and send no rain on another city; one field would be rained upon, and the field on which it did not rain withered;</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> so two or three towns wandered to one town to drink water, and were not satisfied; yet you did not return to me, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> I struck you with blight and mildew; I laid waste your gardens and your vineyards; the locust devoured your fig trees and your olive trees; yet you did not return to me, says the LORD. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> I sent among you a pestilence after the manner of Egypt; I killed your young men with the sword; I carried away your horses; and I made the stench of your camp go up into your nostrils; yet you did not return to me, says the LORD. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> I overthrew some of you, as when God overthrew Sodom and Gomorrah, and you were like a brand snatched from the fire; yet you did not return to me, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Therefore thus I will do to you, O Israel; because I will do this to you, prepare to meet your God, O Israel!</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> For lo, the one who forms the mountains, creates the wind, reveals his thoughts to mortals, makes the morning darkness, and treads on the heights of the earth-- the LORD, the God of hosts, is his name!</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"5\">\r\n\t\t\t<VERS vnumber=\"1\"> Hear this word that I take up over you in lamentation, O house of Israel:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Fallen, no more to rise, is maiden Israel; forsaken on her land, with no one to raise her up.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For thus says the Lord GOD: The city that marched out a thousand shall have a hundred left, and that which marched out a hundred shall have ten left. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For thus says the LORD to the house of Israel: Seek me and live;</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> but do not seek Bethel, and do not enter into Gilgal or cross over to Beer-sheba; for Gilgal shall surely go into exile, and Bethel shall come to nothing.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Seek the LORD and live, or he will break out against the house of Joseph like fire, and it will devour Bethel, with no one to quench it.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Ah, you that turn justice to wormwood, and bring righteousness to the ground!</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The one who made the Pleiades and Orion, and turns deep darkness into the morning, and darkens the day into night, who calls for the waters of the sea, and pours them out on the surface of the earth, the LORD is his name,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> who makes destruction flash out against the strong, so that destruction comes upon the fortress.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> They hate the one who reproves in the gate, and they abhor the one who speaks the truth.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Therefore because you trample on the poor and take from them levies of grain, you have built houses of hewn stone, but you shall not live in them; you have planted pleasant vineyards, but you shall not drink their wine.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> For I know how many are your transgressions, and how great are your sins-- you who afflict the righteous, who take a bribe, and push aside the needy in the gate.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Therefore the prudent will keep silent in such a time; for it is an evil time.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Seek good and not evil, that you may live; and so the LORD, the God of hosts, will be with you, just as you have said.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Hate evil and love good, and establish justice in the gate; it may be that the LORD, the God of hosts, will be gracious to the remnant of Joseph.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Therefore thus says the LORD, the God of hosts, the Lord: In all the squares there shall be wailing; and in all the streets they shall say, \"Alas! alas!\" They shall call the farmers to mourning, and those skilled in lamentation, to wailing;</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> in all the vineyards there shall be wailing, for I will pass through the midst of you, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Alas for you who desire the day of the LORD! Why do you want the day of the LORD? It is darkness, not light;</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> as if someone fled from a lion, and was met by a bear; or went into the house and rested a hand against the wall, and was bitten by a snake.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Is not the day of the LORD darkness, not light, and gloom with no brightness in it?</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> I hate, I despise your festivals, and I take no delight in your solemn assemblies.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Even though you offer me your burnt offerings and grain offerings, I will not accept them; and the offerings of well-being of your fatted animals I will not look upon.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Take away from me the noise of your songs; I will not listen to the melody of your harps.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> But let justice roll down like waters, and righteousness like an ever-flowing stream.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Did you bring to me sacrifices and offerings the forty years in the wilderness, O house of Israel?</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> You shall take up Sakkuth your king, and Kaiwan your star-god, your images, which you made for yourselves; </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> therefore I will take you into exile beyond Damascus, says the LORD, whose name is the God of hosts.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"6\">\r\n\t\t\t<VERS vnumber=\"1\"> Alas for those who are at ease in Zion, and for those who feel secure on Mount Samaria, the notables of the first of the nations, to whom the house of Israel resorts!</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Cross over to Calneh, and see; from there go to Hamath the great; then go down to Gath of the Philistines. Are you better than these kingdoms? Or is your territory greater than their territory, </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> O you that put far away the evil day, and bring near a reign of violence?</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Alas for those who lie on beds of ivory, and lounge on their couches, and eat lambs from the flock, and calves from the stall;</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> who sing idle songs to the sound of the harp, and like David improvise on instruments of music;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> who drink wine from bowls, and anoint themselves with the finest oils, but are not grieved over the ruin of Joseph!</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Therefore they shall now be the first to go into exile, and the revelry of the loungers shall pass away.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The Lord GOD has sworn by himself (says the LORD, the God of hosts): I abhor the pride of Jacob and hate his strongholds; and I will deliver up the city and all that is in it.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> If ten people remain in one house, they shall die.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And if a relative, one who burns the dead, shall take up the body to bring it out of the house, and shall say to someone in the innermost parts of the house, \"Is anyone else with you?\" the answer will come, \"No.\" Then the relative shall say, \"Hush! We must not mention the name of the LORD.\" </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> See, the LORD commands, and the great house shall be shattered to bits, and the little house to pieces.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Do horses run on rocks? Does one plow the sea with oxen? But you have turned justice into poison and the fruit of righteousness into wormwood--</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> you who rejoice in Lo-debar, who say, \"Have we not by our own strength taken Karnaim for ourselves?\" </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Indeed, I am raising up against you a nation, O house of Israel, says the LORD, the God of hosts, and they shall oppress you from Lebo-hamath to the Wadi Arabah.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"7\">\r\n\t\t\t<VERS vnumber=\"1\"> This is what the Lord GOD showed me: he was forming locusts at the time the latter growth began to sprout (it was the latter growth after the king's mowings).</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> When they had finished eating the grass of the land, I said, \"O Lord GOD, forgive, I beg you! How can Jacob stand? He is so small!\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The LORD relented concerning this; \"It shall not be,\" said the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> This is what the Lord GOD showed me: the Lord GOD was calling for a shower of fire, and it devoured the great deep and was eating up the land. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then I said, \"O Lord GOD, cease, I beg you! How can Jacob stand? He is so small!\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The LORD relented concerning this; \"This also shall not be,\" said the Lord GOD.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> This is what he showed me: the Lord was standing beside a wall built with a plumb line, with a plumb line in his hand.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And the LORD said to me, \"Amos, what do you see?\" And I said, \"A plumb line.\" Then the Lord said, \"See, I am setting a plumb line in the midst of my people Israel; I will never again pass them by;</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> the high places of Isaac shall be made desolate, and the sanctuaries of Israel shall be laid waste, and I will rise against the house of Jeroboam with the sword.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then Amaziah, the priest of Bethel, sent to King Jeroboam of Israel, saying, \"Amos has conspired against you in the very center of the house of Israel; the land is not able to bear all his words.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> For thus Amos has said, 'Jeroboam shall die by the sword, and Israel must go into exile away from his land.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> And Amaziah said to Amos, \"O seer, go, flee away to the land of Judah, earn your bread there, and prophesy there;</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> but never again prophesy at Bethel, for it is the king's sanctuary, and it is a temple of the kingdom.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then Amos answered Amaziah, \"I am no prophet, nor a prophet's son; but I am a herdsman, and a dresser of sycamore trees, </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> and the LORD took me from following the flock, and the LORD said to me, 'Go, prophesy to my people Israel.'</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> \"Now therefore hear the word of the LORD. You say, 'Do not prophesy against Israel, and do not preach against the house of Isaac.'</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Therefore thus says the LORD: 'Your wife shall become a prostitute in the city, and your sons and your daughters shall fall by the sword, and your land shall be parceled out by line; you yourself shall die in an unclean land, and Israel shall surely go into exile away from its land.'\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"8\">\r\n\t\t\t<VERS vnumber=\"1\"> This is what the Lord GOD showed me-- a basket of summer fruit.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He said, \"Amos, what do you see?\" And I said, \"A basket of summer fruit.\" Then the LORD said to me, \"The end has come upon my people Israel; I will never again pass them by. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The songs of the temple shall become wailings in that day,\" says the Lord GOD; \"the dead bodies shall be many, cast out in every place. Be silent!\" </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Hear this, you that trample on the needy, and bring to ruin the poor of the land,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> saying, \"When will the new moon be over so that we may sell grain; and the sabbath, so that we may offer wheat for sale? We will make the ephah small and the shekel great, and practice deceit with false balances,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> buying the poor for silver and the needy for a pair of sandals, and selling the sweepings of the wheat.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The LORD has sworn by the pride of Jacob: Surely I will never forget any of their deeds.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Shall not the land tremble on this account, and everyone mourn who lives in it, and all of it rise like the Nile, and be tossed about and sink again, like the Nile of Egypt?</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> On that day, says the Lord GOD, I will make the sun go down at noon, and darken the earth in broad daylight.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> I will turn your feasts into mourning, and all your songs into lamentation; I will bring sackcloth on all loins, and baldness on every head; I will make it like the mourning for an only son, and the end of it like a bitter day.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The time is surely coming, says the Lord GOD, when I will send a famine on the land; not a famine of bread, or a thirst for water, but of hearing the words of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> They shall wander from sea to sea, and from north to east; they shall run to and fro, seeking the word of the LORD, but they shall not find it.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> In that day the beautiful young women and the young men shall faint for thirst.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Those who swear by Ashimah of Samaria, and say, \"As your god lives, O Dan,\" and, \"As the way of Beer-sheba lives\"-- they shall fall, and never rise again.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"9\">\r\n\t\t\t<VERS vnumber=\"1\"> I saw the LORD standing beside the altar, and he said: Strike the capitals until the thresholds shake, and shatter them on the heads of all the people; and those who are left I will kill with the sword; not one of them shall flee away, not one of them shall escape. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Though they dig into Sheol, from there shall my hand take them; though they climb up to heaven, from there I will bring them down.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Though they hide themselves on the top of Carmel, from there I will search out and take them; and though they hide from my sight at the bottom of the sea, there I will command the sea-serpent, and it shall bite them.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> And though they go into captivity in front of their enemies, there I will command the sword, and it shall kill them; and I will fix my eyes on them for harm and not for good.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The Lord, GOD of hosts, he who touches the earth and it melts, and all who live in it mourn, and all of it rises like the Nile, and sinks again, like the Nile of Egypt;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> who builds his upper chambers in the heavens, and founds his vault upon the earth; who calls for the waters of the sea, and pours them out upon the surface of the earth-- the LORD is his name.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Are you not like the Ethiopians to me, O people of Israel? says the LORD. Did I not bring Israel up from the land of Egypt, and the Philistines from Caphtor and the Arameans from Kir? </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The eyes of the Lord GOD are upon the sinful kingdom, and I will destroy it from the face of the earth-- except that I will not utterly destroy the house of Jacob, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> For lo, I will command, and shake the house of Israel among all the nations as one shakes with a sieve, but no pebble shall fall to the ground.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> All the sinners of my people shall die by the sword, who say, \"Evil shall not overtake or meet us.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> On that day I will raise up the booth of David that is fallen, and repair its breaches, and raise up its ruins, and rebuild it as in the days of old; </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> in order that they may possess the remnant of Edom and all the nations who are called by my name, says the LORD who does this.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The time is surely coming, says the LORD, when the one who plows shall overtake the one who reaps, and the treader of grapes the one who sows the seed; the mountains shall drip sweet wine, and all the hills shall flow with it.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> I will restore the fortunes of my people Israel, and they shall rebuild the ruined cities and inhabit them; they shall plant vineyards and drink their wine, and they shall make gardens and eat their fruit.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> I will plant them upon their land, and they shall never again be plucked up out of the land that I have given them, says the LORD your God.</VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"31\" bname=\"Obadiah\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> The vision of Obadiah. Thus says the Lord GOD concerning Edom: We have heard a report from the LORD, and a messenger has been sent among the nations: \"Rise up! Let us rise against it for battle!\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> I will surely make you least among the nations; you shall be utterly despised.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Your proud heart has deceived you, you that live in the clefts of the rock, whose dwelling is in the heights. You say in your heart, \"Who will bring me down to the ground?\" </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Though you soar aloft like the eagle, though your nest is set among the stars, from there I will bring you down, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> If thieves came to you, if plunderers by night-- how you have been destroyed!-- would they not steal only what they wanted? If grape-gatherers came to you, would they not leave gleanings?</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> How Esau has been pillaged, his treasures searched out!</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> All your allies have deceived you, they have driven you to the border; your confederates have prevailed against you; those who ate your bread have set a trap for you-- there is no understanding of it.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> On that day, says the LORD, I will destroy the wise out of Edom, and understanding out of Mount Esau.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Your warriors shall be shattered, O Teman, so that everyone from Mount Esau will be cut off.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For the slaughter and violence done to your brother Jacob, shame shall cover you, and you shall be cut off forever.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> On the day that you stood aside, on the day that strangers carried off his wealth, and foreigners entered his gates and cast lots for Jerusalem, you too were like one of them.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> But you should not have gloated over your brother on the day of his misfortune; you should not have rejoiced over the people of Judah on the day of their ruin; you should not have boasted on the day of distress. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> You should not have entered the gate of my people on the day of their calamity; you should not have joined in the gloating over Judah's disaster on the day of his calamity; you should not have looted his goods on the day of his calamity. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> You should not have stood at the crossings to cut off his fugitives; you should not have handed over his survivors on the day of distress.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> For the day of the LORD is near against all the nations. As you have done, it shall be done to you; your deeds shall return on your own head.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> For as you have drunk on my holy mountain, all the nations around you shall drink; they shall drink and gulp down, and shall be as though they had never been. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> But on Mount Zion there shall be those that escape, and it shall be holy; and the house of Jacob shall take possession of those who dispossessed them.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The house of Jacob shall be a fire, the house of Joseph a flame, and the house of Esau stubble; they shall burn them and consume them, and there shall be no survivor of the house of Esau; for the LORD has spoken.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Those of the Negeb shall possess Mount Esau, and those of the Shephelah the land of the Philistines; they shall possess the land of Ephraim and the land of Samaria, and Benjamin shall possess Gilead.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The exiles of the Israelites who are in Halah shall possess Phoenicia as far as Zarephath; and the exiles of Jerusalem who are in Sepharad shall possess the towns of the Negeb. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Those who have been saved shall go up to Mount Zion to rule Mount Esau; and the kingdom shall be the LORD's. </VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"32\" bname=\"Jonah\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> Now the word of the LORD came to Jonah son of Amittai, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"Go at once to Nineveh, that great city, and cry out against it; for their wickedness has come up before me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> But Jonah set out to flee to Tarshish from the presence of the LORD. He went down to Joppa and found a ship going to Tarshish; so he paid his fare and went on board, to go with them to Tarshish, away from the presence of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But the LORD hurled a great wind upon the sea, and such a mighty storm came upon the sea that the ship threatened to break up.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then the mariners were afraid, and each cried to his god. They threw the cargo that was in the ship into the sea, to lighten it for them. Jonah, meanwhile, had gone down into the hold of the ship and had lain down, and was fast asleep.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The captain came and said to him, \"What are you doing sound asleep? Get up, call on your god! Perhaps the god will spare us a thought so that we do not perish.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The sailors said to one another, \"Come, let us cast lots, so that we may know on whose account this calamity has come upon us.\" So they cast lots, and the lot fell on Jonah. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then they said to him, \"Tell us why this calamity has come upon us. What is your occupation? Where do you come from? What is your country? And of what people are you?\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> \"I am a Hebrew,\" he replied. \"I worship the LORD, the God of heaven, who made the sea and the dry land.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then the men were even more afraid, and said to him, \"What is this that you have done!\" For the men knew that he was fleeing from the presence of the LORD, because he had told them so.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then they said to him, \"What shall we do to you, that the sea may quiet down for us?\" For the sea was growing more and more tempestuous.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> He said to them, \"Pick me up and throw me into the sea; then the sea will quiet down for you; for I know it is because of me that this great storm has come upon you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Nevertheless the men rowed hard to bring the ship back to land, but they could not, for the sea grew more and more stormy against them.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then they cried out to the LORD, \"Please, O LORD, we pray, do not let us perish on account of this man's life. Do not make us guilty of innocent blood; for you, O LORD, have done as it pleased you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> So they picked Jonah up and threw him into the sea; and the sea ceased from its raging.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then the men feared the LORD even more, and they offered a sacrifice to the LORD and made vows.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> But the LORD provided a large fish to swallow up Jonah; and Jonah was in the belly of the fish three days and three nights.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> Then Jonah prayed to the LORD his God from the belly of the fish,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> saying, \"I called to the LORD out of my distress, and he answered me; out of the belly of Sheol I cried, and you heard my voice.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> You cast me into the deep, into the heart of the seas, and the flood surrounded me; all your waves and your billows passed over me.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then I said, 'I am driven away from your sight; how shall I look again upon your holy temple?' </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The waters closed in over me; the deep surrounded me; weeds were wrapped around my head</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> at the roots of the mountains. I went down to the land whose bars closed upon me forever; yet you brought up my life from the Pit, O LORD my God.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> As my life was ebbing away, I remembered the LORD; and my prayer came to you, into your holy temple.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Those who worship vain idols forsake their true loyalty.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> But I with the voice of thanksgiving will sacrifice to you; what I have vowed I will pay. Deliverance belongs to the LORD!\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then the LORD spoke to the fish, and it spewed Jonah out upon the dry land.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> The word of the LORD came to Jonah a second time, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"Get up, go to Nineveh, that great city, and proclaim to it the message that I tell you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> So Jonah set out and went to Nineveh, according to the word of the LORD. Now Nineveh was an exceedingly large city, a three days' walk across.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Jonah began to go into the city, going a day's walk. And he cried out, \"Forty days more, and Nineveh shall be overthrown!\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> And the people of Nineveh believed God; they proclaimed a fast, and everyone, great and small, put on sackcloth.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> When the news reached the king of Nineveh, he rose from his throne, removed his robe, covered himself with sackcloth, and sat in ashes.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then he had a proclamation made in Nineveh: \"By the decree of the king and his nobles: No human being or animal, no herd or flock, shall taste anything. They shall not feed, nor shall they drink water.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Human beings and animals shall be covered with sackcloth, and they shall cry mightily to God. All shall turn from their evil ways and from the violence that is in their hands.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Who knows? God may relent and change his mind; he may turn from his fierce anger, so that we do not perish.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> When God saw what they did, how they turned from their evil ways, God changed his mind about the calamity that he had said he would bring upon them; and he did not do it.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> But this was very displeasing to Jonah, and he became angry.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He prayed to the LORD and said, \"O LORD! Is not this what I said while I was still in my own country? That is why I fled to Tarshish at the beginning; for I knew that you are a gracious God and merciful, slow to anger, and abounding in steadfast love, and ready to relent from punishing.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And now, O LORD, please take my life from me, for it is better for me to die than to live.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> And the LORD said, \"Is it right for you to be angry?\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then Jonah went out of the city and sat down east of the city, and made a booth for himself there. He sat under it in the shade, waiting to see what would become of the city.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The LORD God appointed a bush, and made it come up over Jonah, to give shade over his head, to save him from his discomfort; so Jonah was very happy about the bush. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But when dawn came up the next day, God appointed a worm that attacked the bush, so that it withered.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> When the sun rose, God prepared a sultry east wind, and the sun beat down on the head of Jonah so that he was faint and asked that he might die. He said, \"It is better for me to die than to live.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> But God said to Jonah, \"Is it right for you to be angry about the bush?\" And he said, \"Yes, angry enough to die.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then the LORD said, \"You are concerned about the bush, for which you did not labor and which you did not grow; it came into being in a night and perished in a night.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> And should I not be concerned about Nineveh, that great city, in which there are more than a hundred and twenty thousand persons who do not know their right hand from their left, and also many animals?\"</VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"33\" bname=\"Micah\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> The word of the LORD that came to Micah of Moresheth in the days of Kings Jotham, Ahaz, and Hezekiah of Judah, which he saw concerning Samaria and Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Hear, you peoples, all of you; listen, O earth, and all that is in it; and let the Lord GOD be a witness against you, the Lord from his holy temple.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For lo, the LORD is coming out of his place, and will come down and tread upon the high places of the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then the mountains will melt under him and the valleys will burst open, like wax near the fire, like waters poured down a steep place.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> All this is for the transgression of Jacob and for the sins of the house of Israel. What is the transgression of Jacob? Is it not Samaria? And what is the high place of Judah? Is it not Jerusalem? </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Therefore I will make Samaria a heap in the open country, a place for planting vineyards. I will pour down her stones into the valley, and uncover her foundations.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> All her images shall be beaten to pieces, all her wages shall be burned with fire, and all her idols I will lay waste; for as the wages of a prostitute she gathered them, and as the wages of a prostitute they shall again be used.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> For this I will lament and wail; I will go barefoot and naked; I will make lamentation like the jackals, and mourning like the ostriches.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> For her wound is incurable. It has come to Judah; it has reached to the gate of my people, to Jerusalem. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Tell it not in Gath, weep not at all; in Beth-leaphrah roll yourselves in the dust.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Pass on your way, inhabitants of Shaphir, in nakedness and shame; the inhabitants of Zaanan do not come forth; Beth-ezel is wailing and shall remove its support from you.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> For the inhabitants of Maroth wait anxiously for good, yet disaster has come down from the LORD to the gate of Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Harness the steeds to the chariots, inhabitants of Lachish; it was the beginning of sin to daughter Zion, for in you were found the transgressions of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Therefore you shall give parting gifts to Moresheth-gath; the houses of Achzib shall be a deception to the kings of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> I will again bring a conqueror upon you, inhabitants of Mareshah; the glory of Israel shall come to Adullam.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Make yourselves bald and cut off your hair for your pampered children; make yourselves as bald as the eagle, for they have gone from you into exile.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> Alas for those who devise wickedness and evil deeds on their beds! When the morning dawns, they perform it, because it is in their power. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> They covet fields, and seize them; houses, and take them away; they oppress householder and house, people and their inheritance.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Therefore thus says the LORD: Now, I am devising against this family an evil from which you cannot remove your necks; and you shall not walk haughtily, for it will be an evil time.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> On that day they shall take up a taunt song against you, and wail with bitter lamentation, and say, \"We are utterly ruined; the LORD alters the inheritance of my people; how he removes it from me! Among our captors he parcels out our fields.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Therefore you will have no one to cast the line by lot in the assembly of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> \"Do not preach\"-- thus they preach-- \"one should not preach of such things; disgrace will not overtake us.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Should this be said, O house of Jacob? Is the LORD's patience exhausted? Are these his doings? Do not my words do good to one who walks uprightly?</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But you rise up against my people as an enemy; you strip the robe from the peaceful, from those who pass by trustingly with no thought of war. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The women of my people you drive out from their pleasant houses; from their young children you take away my glory forever.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Arise and go; for this is no place to rest, because of uncleanness that destroys with a grievous destruction. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> If someone were to go about uttering empty falsehoods, saying, \"I will preach to you of wine and strong drink,\" such a one would be the preacher for this people!</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> I will surely gather all of you, O Jacob, I will gather the survivors of Israel; I will set them together like sheep in a fold, like a flock in its pasture; it will resound with people.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The one who breaks out will go up before them; they will break through and pass the gate, going out by it. Their king will pass on before them, the LORD at their head.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> And I said: Listen, you heads of Jacob and rulers of the house of Israel! Should you not know justice?--</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> you who hate the good and love the evil, who tear the skin off my people, and the flesh off their bones; </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> who eat the flesh of my people, flay their skin off them, break their bones in pieces, and chop them up like meat in a kettle, like flesh in a caldron. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then they will cry to the LORD, but he will not answer them; he will hide his face from them at that time, because they have acted wickedly.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Thus says the LORD concerning the prophets who lead my people astray, who cry \"Peace\" when they have something to eat, but declare war against those who put nothing into their mouths.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Therefore it shall be night to you, without vision, and darkness to you, without revelation. The sun shall go down upon the prophets, and the day shall be black over them;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> the seers shall be disgraced, and the diviners put to shame; they shall all cover their lips, for there is no answer from God.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But as for me, I am filled with power, with the spirit of the LORD, and with justice and might, to declare to Jacob his transgression and to Israel his sin.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Hear this, you rulers of the house of Jacob and chiefs of the house of Israel, who abhor justice and pervert all equity,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> who build Zion with blood and Jerusalem with wrong!</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Its rulers give judgment for a bribe, its priests teach for a price, its prophets give oracles for money; yet they lean upon the LORD and say, \"Surely the LORD is with us! No harm shall come upon us.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Therefore because of you Zion shall be plowed as a field; Jerusalem shall become a heap of ruins, and the mountain of the house a wooded height.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> In days to come the mountain of the LORD's house shall be established as the highest of the mountains, and shall be raised up above the hills. Peoples shall stream to it,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> and many nations shall come and say: \"Come, let us go up to the mountain of the LORD, to the house of the God of Jacob; that he may teach us his ways and that we may walk in his paths.\" For out of Zion shall go forth instruction, and the word of the LORD from Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> He shall judge between many peoples, and shall arbitrate between strong nations far away; they shall beat their swords into plowshares, and their spears into pruning hooks; nation shall not lift up sword against nation, neither shall they learn war any more;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> but they shall all sit under their own vines and under their own fig trees, and no one shall make them afraid; for the mouth of the LORD of hosts has spoken.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> For all the peoples walk, each in the name of its god, but we will walk in the name of the LORD our God forever and ever.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> In that day, says the LORD, I will assemble the lame and gather those who have been driven away, and those whom I have afflicted.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The lame I will make the remnant, and those who were cast off, a strong nation; and the LORD will reign over them in Mount Zion now and forevermore.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And you, O tower of the flock, hill of daughter Zion, to you it shall come, the former dominion shall come, the sovereignty of daughter Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Now why do you cry aloud? Is there no king in you? Has your counselor perished, that pangs have seized you like a woman in labor?</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Writhe and groan, O daughter Zion, like a woman in labor; for now you shall go forth from the city and camp in the open country; you shall go to Babylon. There you shall be rescued, there the LORD will redeem you from the hands of your enemies. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Now many nations are assembled against you, saying, \"Let her be profaned, and let our eyes gaze upon Zion.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> But they do not know the thoughts of the LORD; they do not understand his plan, that he has gathered them as sheaves to the threshing floor.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Arise and thresh, O daughter Zion, for I will make your horn iron and your hoofs bronze; you shall beat in pieces many peoples, and shall devote their gain to the LORD, their wealth to the Lord of the whole earth. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"5\">\r\n\t\t\t<VERS vnumber=\"1\"> Now you are walled around with a wall; siege is laid against us; with a rod they strike the ruler of Israel upon the cheek. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> But you, O Bethlehem of Ephrathah, who are one of the little clans of Judah, from you shall come forth for me one who is to rule in Israel, whose origin is from of old, from ancient days.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Therefore he shall give them up until the time when she who is in labor has brought forth; then the rest of his kindred shall return to the people of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> And he shall stand and feed his flock in the strength of the LORD, in the majesty of the name of the LORD his God. And they shall live secure, for now he shall be great to the ends of the earth;</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> and he shall be the one of peace. If the Assyrians come into our land and tread upon our soil, we will raise against them seven shepherds and eight installed as rulers. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> They shall rule the land of Assyria with the sword, and the land of Nimrod with the drawn sword; they shall rescue us from the Assyrians if they come into our land or tread within our border.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then the remnant of Jacob, surrounded by many peoples, shall be like dew from the LORD, like showers on the grass, which do not depend upon people or wait for any mortal.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And among the nations the remnant of Jacob, surrounded by many peoples, shall be like a lion among the animals of the forest, like a young lion among the flocks of sheep, which, when it goes through, treads down and tears in pieces, with no one to deliver.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Your hand shall be lifted up over your adversaries, and all your enemies shall be cut off.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> In that day, says the LORD, I will cut off your horses from among you and will destroy your chariots;</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> and I will cut off the cities of your land and throw down all your strongholds;</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> and I will cut off sorceries from your hand, and you shall have no more soothsayers;</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> and I will cut off your images and your pillars from among you, and you shall bow down no more to the work of your hands;</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> and I will uproot your sacred poles from among you and destroy your towns. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And in anger and wrath I will execute vengeance on the nations that did not obey.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"6\">\r\n\t\t\t<VERS vnumber=\"1\"> Hear what the LORD says: Rise, plead your case before the mountains, and let the hills hear your voice.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Hear, you mountains, the controversy of the LORD, and you enduring foundations of the earth; for the LORD has a controversy with his people, and he will contend with Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> \"O my people, what have I done to you? In what have I wearied you? Answer me!</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For I brought you up from the land of Egypt, and redeemed you from the house of slavery; and I sent before you Moses, Aaron, and Miriam.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> O my people, remember now what King Balak of Moab devised, what Balaam son of Beor answered him, and what happened from Shittim to Gilgal, that you may know the saving acts of the LORD.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> \"With what shall I come before the LORD, and bow myself before God on high? Shall I come before him with burnt offerings, with calves a year old?</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Will the LORD be pleased with thousands of rams, 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?\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> He has told you, O mortal, what is good; and what does the LORD require of you but to do justice, and to love kindness, and to walk humbly with your God?</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The voice of the LORD cries to the city (it is sound wisdom to fear your name): Hear, O tribe and assembly of the city! </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Can I forget the treasures of wickedness in the house of the wicked, and the scant measure that is accursed? </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Can I tolerate wicked scales and a bag of dishonest weights?</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Your wealthy are full of violence; your inhabitants speak lies, with tongues of deceit in their mouths. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Therefore I have begun to strike you down, making you desolate because of your sins. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> You shall eat, but not be satisfied, and there shall be a gnawing hunger within you; you shall put away, but not save, and what you save, I will hand over to the sword.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> You shall sow, but not reap; you shall tread olives, but not anoint yourselves with oil; you shall tread grapes, but not drink wine.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> For you have kept the statutes of Omri and all the works of the house of Ahab, and you have followed their counsels. Therefore I will make you a desolation, and your inhabitants an object of hissing; so you shall bear the scorn of my people. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"7\">\r\n\t\t\t<VERS vnumber=\"1\"> Woe is me! For I have become like one who, after the summer fruit has been gathered, after the vintage has been gleaned, finds no cluster to eat; there is no first-ripe fig for which I hunger.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The faithful have disappeared from the land, and there is no one left who is upright; they all lie in wait for blood, and they hunt each other with nets.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Their hands are skilled to do evil; the official and the judge ask for a bribe, and the powerful dictate what they desire; thus they pervert justice. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The best of them is like a brier, the most upright of them a thorn hedge. The day of their sentinels, of their punishment, has come; now their confusion is at hand. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Put no trust in a friend, have no confidence in a loved one; guard the doors of your mouth from her who lies in your embrace;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> for the son treats the father with contempt, the daughter rises up against her mother, the daughter-in-law against her mother-in-law; your enemies are members of your own household.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But as for me, I will look to the LORD, I will wait for the God of my salvation; my God will hear me.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Do not rejoice over me, O my enemy; when I fall, I shall rise; when I sit in darkness, the LORD will be a light to me.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> I must bear the indignation of the LORD, because I have sinned against him, until he takes my side and executes judgment for me. He will bring me out to the light; I shall see his vindication.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then my enemy will see, and shame will cover her who said to me, \"Where is the LORD your God?\" My eyes will see her downfall; now she will be trodden down like the mire of the streets. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> A day for the building of your walls! In that day the boundary shall be far extended.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> In that day they will come to you from Assyria to Egypt, and from Egypt to the River, from sea to sea and from mountain to mountain. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> But the earth will be desolate because of its inhabitants, for the fruit of their doings.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Shepherd your people with your staff, the flock that belongs to you, which lives alone in a forest in the midst of a garden land; let them feed in Bashan and Gilead as in the days of old.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> As in the days when you came out of the land of Egypt, show us marvelous things. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The nations shall see and be ashamed of all their might; they shall lay their hands on their mouths; their ears shall be deaf;</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> they shall lick dust like a snake, like the crawling things of the earth; they shall come trembling out of their fortresses; they shall turn in dread to the LORD our God, and they shall stand in fear of you.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Who is a God like you, pardoning iniquity and passing over the transgression of the remnant of your possession? He does not retain his anger forever, because he delights in showing clemency. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> He will again have compassion upon us; he will tread our iniquities under foot. You will cast all our sins into the depths of the sea. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> You will show faithfulness to Jacob and unswerving loyalty to Abraham, as you have sworn to our ancestors from the days of old.</VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"34\" bname=\"Nahum\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> An oracle concerning Nineveh. The book of the vision of Nahum of Elkosh.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> A jealous and avenging God is the LORD, the LORD is avenging and wrathful; the LORD takes vengeance on his adversaries and rages against his enemies.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The LORD is slow to anger but great in power, and the LORD will by no means clear the guilty. His way is in whirlwind and storm, and the clouds are the dust of his feet.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> He rebukes the sea and makes it dry, and he dries up all the rivers; Bashan and Carmel wither, and the bloom of Lebanon fades.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The mountains quake before him, and the hills melt; the earth heaves before him, the world and all who live in it.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Who can stand before his indignation? Who can endure the heat of his anger? His wrath is poured out like fire, and by him the rocks are broken in pieces.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The LORD is good, a stronghold in a day of trouble; he protects those who take refuge in him,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> even in a rushing flood. He will make a full end of his adversaries, and will pursue his enemies into darkness. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Why do you plot against the LORD? He will make an end; no adversary will rise up twice.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Like thorns they are entangled, like drunkards they are drunk; they are consumed like dry straw.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> From you one has gone out who plots evil against the LORD, one who counsels wickedness.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Thus says the LORD, \"Though they are at full strength and many, they will be cut off and pass away. Though I have afflicted you, I will afflict you no more. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And now I will break off his yoke from you and snap the bonds that bind you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The LORD has commanded concerning you: \"Your name shall be perpetuated no longer; from the house of your gods I will cut off the carved image and the cast image. I will make your grave, for you are worthless.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Look! On the mountains the feet of one who brings good tidings, who proclaims peace! Celebrate your festivals, O Judah, fulfill your vows, for never again shall the wicked invade you; they are utterly cut off.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> A shatterer has come up against you. Guard the ramparts; watch the road; gird your loins; collect all your strength.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> (For the LORD is restoring the majesty of Jacob, as well as the majesty of Israel, though ravagers have ravaged them and ruined their branches.)</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The shields of his warriors are red; his soldiers are clothed in crimson. The metal on the chariots flashes on the day when he musters them; the chargers prance. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The chariots race madly through the streets, they rush to and fro through the squares; their appearance is like torches, they dart like lightning.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> He calls his officers; they stumble as they come forward; they hasten to the wall, and the mantelet is set up. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The river gates are opened, the palace trembles.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> It is decreed that the city be exiled, its slave women led away, moaning like doves and beating their breasts. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Nineveh is like a pool whose waters run away. \"Halt! Halt!\"-- but no one turns back.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> \"Plunder the silver, plunder the gold! There is no end of treasure! An abundance of every precious thing!\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Devastation, desolation, and destruction! Hearts faint and knees tremble, all loins quake, all faces grow pale!</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> What became of the lions' den, the cave of the young lions, where the lion goes, and the lion's cubs, with no one to disturb them? </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The lion has torn enough for his whelps and strangled prey for his lionesses; he has filled his caves with prey and his dens with torn flesh.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> See, I am against you, says the LORD of hosts, and I will burn your chariots in smoke, and the sword shall devour your young lions; I will cut off your prey from the earth, and the voice of your messengers shall be heard no more. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> Ah! City of bloodshed, utterly deceitful, full of booty-- no end to the plunder!</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The crack of whip and rumble of wheel, galloping horse and bounding chariot!</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Horsemen charging, flashing sword and glittering spear, piles of dead, heaps of corpses, dead bodies without end-- they stumble over the bodies!</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Because of the countless debaucheries of the prostitute, gracefully alluring, mistress of sorcery, who enslaves nations through her debaucheries, and peoples through her sorcery, </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> I am against you, says the LORD of hosts, and will lift up your skirts over your face; and I will let nations look on your nakedness and kingdoms on your shame.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> I will throw filth at you and treat you with contempt, and make you a spectacle.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then all who see you will shrink from you and say, \"Nineveh is devastated; who will bemoan her?\" Where shall I seek comforters for you?</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Are you better than Thebes that sat by the Nile, with water around her, her rampart a sea, water her wall? </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Ethiopia was her strength, Egypt too, and that without limit; Put and the Libyans were her helpers. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Yet she became an exile, she went into captivity; even her infants were dashed in pieces at the head of every street; lots were cast for her nobles, all her dignitaries were bound in fetters.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> You also will be drunken, you will go into hiding; you will seek a refuge from the enemy. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> All your fortresses are like fig trees with first-ripe figs-- if shaken they fall into the mouth of the eater.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Look at your troops: they are women in your midst. The gates of your land are wide open to your foes; fire has devoured the bars of your gates.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Draw water for the siege, strengthen your forts; trample the clay, tread the mortar, take hold of the brick mold!</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> There the fire will devour you, the sword will cut you off. It will devour you like the locust. Multiply yourselves like the locust, multiply like the grasshopper!</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> You increased your merchants more than the stars of the heavens. The locust sheds its skin and flies away.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Your guards are like grasshoppers, your scribes like swarms of locusts settling on the fences on a cold day-- when the sun rises, they fly away; no one knows where they have gone.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Your shepherds are asleep, O king of Assyria; your nobles slumber. Your people are scattered on the mountains with no one to gather them.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> There is no assuaging your hurt, your wound is mortal. All who hear the news about you clap their hands over you. For who has ever escaped your endless cruelty?</VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"35\" bname=\"Habakkuk\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> The oracle that the prophet Habakkuk saw.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> O LORD, how long shall I cry for help, and you will not listen? Or cry to you \"Violence!\" and you will not save?</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Why do you make me see wrongdoing and look at trouble? Destruction and violence are before me; strife and contention arise.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> So the law becomes slack and justice never prevails. The wicked surround the righteous-- therefore judgment comes forth perverted.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Look at the nations, and see! Be astonished! Be astounded! For a work is being done in your days that you would not believe if you were told.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For I am rousing the Chaldeans, that fierce and impetuous nation, who march through the breadth of the earth to seize dwellings not their own.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Dread and fearsome are they; their justice and dignity proceed from themselves.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Their horses are swifter than leopards, more menacing than wolves at dusk; their horses charge. Their horsemen come from far away; they fly like an eagle swift to devour.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> They all come for violence, with faces pressing forward; they gather captives like sand. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> At kings they scoff, and of rulers they make sport. They laugh at every fortress, and heap up earth to take it.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then they sweep by like the wind; they transgress and become guilty; their own might is their god!</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Are you not from of old, O LORD my God, my Holy One? You shall not die. O LORD, you have marked them for judgment; and you, O Rock, have established them for punishment. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Your eyes are too pure to behold evil, and you cannot look on wrongdoing; why do you look on the treacherous, and are silent when the wicked swallow those more righteous than they?</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> You have made people like the fish of the sea, like crawling things that have no ruler.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The enemy brings all of them up with a hook; he drags them out with his net, he gathers them in his seine; so he rejoices and exults. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Therefore he sacrifices to his net and makes offerings to his seine; for by them his portion is lavish, and his food is rich.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Is he then to keep on emptying his net, and destroying nations without mercy?</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> I will stand at my watchpost, and station myself on the rampart; I will keep watch to see what he will say to me, and what he will answer concerning my complaint. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Then the LORD answered me and said: Write the vision; make it plain on tablets, so that a runner may read it.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For there is still a vision for the appointed time; it speaks of the end, and does not lie. If it seems to tarry, wait for it; it will surely come, it will not delay.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Look at the proud! Their spirit is not right in them, but the righteous live by their faith. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Moreover, wealth is treacherous; the arrogant do not endure. They open their throats wide as Sheol; like Death they never have enough. They gather all nations for themselves, and collect all peoples as their own. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Shall not everyone taunt such people and, with mocking riddles, say about them, \"Alas for you who heap up what is not your own!\" How long will you load yourselves with goods taken in pledge?</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Will not your own creditors suddenly rise, and those who make you tremble wake up? Then you will be booty for them.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Because you have plundered many nations, all that survive of the peoples shall plunder you-- because of human bloodshed, and violence to the earth, to cities and all who live in them.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> \"Alas for you who get evil gain for your houses, setting your nest on high to be safe from the reach of harm!\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> You have devised shame for your house by cutting off many peoples; you have forfeited your life.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The very stones will cry out from the wall, and the plaster will respond from the woodwork. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> \"Alas for you who build a town by bloodshed, and found a city on iniquity!\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Is it not from the LORD of hosts that peoples labor only to feed the flames, and nations weary themselves for nothing?</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But the earth will be filled with the knowledge of the glory of the LORD, as the waters cover the sea.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> \"Alas for you who make your neighbors drink, pouring out your wrath until they are drunk, in order to gaze on their nakedness!\" </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> You will be sated with contempt instead of glory. Drink, you yourself, and stagger! The cup in the LORD's right hand will come around to you, and shame will come upon your glory! </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> For the violence done to Lebanon will overwhelm you; the destruction of the animals will terrify you-- because of human bloodshed and violence to the earth, to cities and all who live in them.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> What use is an idol once its maker has shaped it-- a cast image, a teacher of lies? For its maker trusts in what has been made, though the product is only an idol that cannot speak!</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Alas for you who say to the wood, \"Wake up!\" to silent stone, \"Rouse yourself!\" Can it teach? See, it is gold and silver plated, and there is no breath in it at all.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> But the LORD is in his holy temple; let all the earth keep silence before him!</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> A prayer of the prophet Habakkuk according to Shigionoth.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> O LORD, I have heard of your renown, and I stand in awe, O LORD, of your work. In our own time revive it; in our own time make it known; in wrath may you remember mercy.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> God came from Teman, the Holy One from Mount Paran. Selah His glory covered the heavens, and the earth was full of his praise.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The brightness was like the sun; rays came forth from his hand, where his power lay hidden.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Before him went pestilence, and plague followed close behind.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> He stopped and shook the earth; he looked and made the nations tremble. The eternal mountains were shattered; along his ancient pathways the everlasting hills sank low.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> I saw the tents of Cushan under affliction; the tent-curtains of the land of Midian trembled.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Was your wrath against the rivers, O LORD? Or your anger against the rivers, or your rage against the sea, when you drove your horses, your chariots to victory? </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> You brandished your naked bow, sated were the arrows at your command. Selah You split the earth with rivers. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The mountains saw you, and writhed; a torrent of water swept by; the deep gave forth its voice. The sun raised high its hands; </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> the moon stood still in its exalted place, at the light of your arrows speeding by, at the gleam of your flashing spear. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> In fury you trod the earth, in anger you trampled nations.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> You came forth to save your people, to save your anointed. You crushed the head of the wicked house, laying it bare from foundation to roof. Selah </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> You pierced with their own arrows the head of his warriors, who came like a whirlwind to scatter us, gloating as if ready to devour the poor who were in hiding. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> You trampled the sea with your horses, churning the mighty waters.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> I hear, and I tremble within; my lips quiver at the sound. Rottenness enters into my bones, and my steps tremble beneath me. I wait quietly for the day of calamity to come upon the people who attack us. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Though the fig tree does not blossom, and no fruit is on the vines; though the produce of the olive fails, and the fields yield no food; though the flock is cut off from the fold, and there is no herd in the stalls,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> yet I will rejoice in the LORD; I will exult in the God of my salvation.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> GOD, the Lord, is my strength; he makes my feet like the feet of a deer, and makes me tread upon the heights. To the leader: with stringed instruments. </VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"36\" bname=\"Zephaniah\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> The word of the LORD that came to Zephaniah son of Cushi son of Gedaliah son of Amariah son of Hezekiah, in the days of King Josiah son of Amon of Judah.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> I will utterly sweep away everything from the face of the earth, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> I will sweep away humans and animals; I will sweep away the birds of the air and the fish of the sea. I will make the wicked stumble. I will cut off humanity from the face of the earth, says the LORD. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> I will stretch out my hand against Judah, and against all the inhabitants of Jerusalem; and I will cut off from this place every remnant of Baal and the name of the idolatrous priests; </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> those who bow down on the roofs to the host of the heavens; those who bow down and swear to the LORD, but also swear by Milcom; </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> those who have turned back from following the LORD, who have not sought the LORD or inquired of him.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Be silent before the Lord GOD! For the day of the LORD is at hand; the LORD has prepared a sacrifice, he has consecrated his guests.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And on the day of the LORD's sacrifice I will punish the officials and the king's sons and all who dress themselves in foreign attire.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> On that day I will punish all who leap over the threshold, who fill their master's house with violence and fraud.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> On that day, says the LORD, a cry will be heard from the Fish Gate, a wail from the Second Quarter, a loud crash from the hills.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The inhabitants of the Mortar wail, for all the traders have perished; all who weigh out silver are cut off.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> At that time I will search Jerusalem with lamps, and I will punish the people who rest complacently on their dregs, those who say in their hearts, \"The LORD will not do good, nor will he do harm.\" </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Their wealth shall be plundered, and their houses laid waste. Though they build houses, they shall not inhabit them; though they plant vineyards, they shall not drink wine from them.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The great day of the LORD is near, near and hastening fast; the sound of the day of the LORD is bitter, the warrior cries aloud there.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> That day will be a day of wrath, a day of distress and anguish, a day of ruin and devastation, a day of darkness and gloom, a day of clouds and thick darkness,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> a day of trumpet blast and battle cry against the fortified cities and against the lofty battlements.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> I will bring such distress upon people that they shall walk like the blind; because they have sinned against the LORD, their blood shall be poured out like dust, and their flesh like dung.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Neither their silver nor their gold will be able to save them on the day of the LORD's wrath; in the fire of his passion the whole earth shall be consumed; for a full, a terrible end he will make of all the inhabitants of the earth.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> Gather together, gather, O shameless nation,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> before you are driven away like the drifting chaff, before there comes upon you the fierce anger of the LORD, before there comes upon you the day of the LORD's wrath. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Seek the LORD, all you humble of the land, who do his commands; seek righteousness, seek humility; perhaps you may be hidden on the day of the LORD's wrath.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For Gaza shall be deserted, and Ashkelon shall become a desolation; Ashdod's people shall be driven out at noon, and Ekron shall be uprooted.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Ah, inhabitants of the seacoast, you nation of the Cherethites! The word of the LORD is against you, O Canaan, land of the Philistines; and I will destroy you until no inhabitant is left.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And you, O seacoast, shall be pastures, meadows for shepherds and folds for flocks.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The seacoast shall become the possession of the remnant of the house of Judah, on which they shall pasture, and in the houses of Ashkelon they shall lie down at evening. For the LORD their God will be mindful of them and restore their fortunes.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> I have heard the taunts of Moab and the revilings of the Ammonites, how they have taunted my people and made boasts against their territory.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Therefore, as I live, says the LORD of hosts, the God of Israel, Moab shall become like Sodom and the Ammonites like Gomorrah, a land possessed by nettles and salt pits, and a waste forever. The remnant of my people shall plunder them, and the survivors of my nation shall possess them.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> This shall be their lot in return for their pride, because they scoffed and boasted against the people of the LORD of hosts.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The LORD will be terrible against them; he will shrivel all the gods of the earth, and to him shall bow down, each in its place, all the coasts and islands of the nations.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> You also, O Ethiopians, shall be killed by my sword. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And he will stretch out his hand against the north, and destroy Assyria; and he will make Nineveh a desolation, a dry waste like the desert.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Herds shall lie down in it, every wild animal; the desert owl and the screech owl shall lodge on its capitals; the owl shall hoot at the window, the raven croak on the threshold; for its cedar work will be laid bare. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Is this the exultant city that lived secure, that said to itself, \"I am, and there is no one else\"? What a desolation it has become, a lair for wild animals! Everyone who passes by it hisses and shakes the fist.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> Ah, soiled, defiled, oppressing city!</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> It has listened to no voice; it has accepted no correction. It has not trusted in the LORD; it has not drawn near to its God.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The officials within it are roaring lions; its judges are evening wolves that leave nothing until the morning.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Its prophets are reckless, faithless persons; its priests have profaned what is sacred, they have done violence to the law.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The LORD within it is righteous; he does no wrong. Every morning he renders his judgment, each dawn without fail; but the unjust knows no shame.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> I have cut off nations; their battlements are in ruins; I have laid waste their streets so that no one walks in them; their cities have been made desolate, without people, without inhabitants.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> I said, \"Surely the city will fear me, it will accept correction; it will not lose sight of all that I have brought upon it.\" But they were the more eager to make all their deeds corrupt. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Therefore wait for me, says the LORD, for the day when I arise as a witness. For my decision is to gather nations, to assemble kingdoms, to pour out upon them my indignation, all the heat of my anger; for in the fire of my passion all the earth shall be consumed.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> At that time I will change the speech of the peoples to a pure speech, that all of them may call on the name of the LORD and serve him with one accord.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> From beyond the rivers of Ethiopia my suppliants, my scattered ones, shall bring my offering. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> On that day you shall not be put to shame because of all the deeds by which you have rebelled against me; for then I will remove from your midst your proudly exultant ones, and you shall no longer be haughty in my holy mountain.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> For I will leave in the midst of you a people humble and lowly. They shall seek refuge in the name of the LORD--</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> the remnant of Israel; they shall do no wrong and utter no lies, nor shall a deceitful tongue be found in their mouths. Then they will pasture and lie down, and no one shall make them afraid.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Sing aloud, O daughter Zion; shout, O Israel! Rejoice and exult with all your heart, O daughter Jerusalem!</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The LORD has taken away the judgments against you, he has turned away your enemies. The king of Israel, the LORD, is in your midst; you shall fear disaster no more.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> On that day it shall be said to Jerusalem: Do not fear, O Zion; do not let your hands grow weak.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The LORD, your God, is in your midst, a warrior who gives victory; he will rejoice over you with gladness, he will renew you in his love; he will exult over you with loud singing </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> as on a day of festival. I will remove disaster from you, so that you will not bear reproach for it. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> I will deal with all your oppressors at that time. And I will save the lame and gather the outcast, and I will change their shame into praise and renown in all the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> At that time I will bring you home, at the time when I gather you; for I will make you renowned and praised among all the peoples of the earth, when I restore your fortunes before your eyes, says the LORD.</VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"37\" bname=\"Haggai\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> In the second year of King Darius, in the sixth month, on the first day of the month, the word of the LORD came by the prophet Haggai to Zerubbabel son of Shealtiel, governor of Judah, and to Joshua son of Jehozadak, the high priest:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Thus says the LORD of hosts: These people say the time has not yet come to rebuild the LORD's house.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then the word of the LORD came by the prophet Haggai, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Is it a time for you yourselves to live in your paneled houses, while this house lies in ruins?</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Now therefore thus says the LORD of hosts: Consider how you have fared.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> You have sown much, and harvested little; you eat, but you never have enough; you drink, but you never have your fill; you clothe yourselves, but no one is warm; and you that earn wages earn wages to put them into a bag with holes.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Thus says the LORD of hosts: Consider how you have fared.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Go up to the hills and bring wood and build the house, so that I may take pleasure in it and be honored, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> You have looked for much, and, lo, it came to little; and when you brought it home, I blew it away. Why? says the LORD of hosts. Because my house lies in ruins, while all of you hurry off to your own houses.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Therefore the heavens above you have withheld the dew, and the earth has withheld its produce.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> And I have called for a drought on the land and the hills, on the grain, the new wine, the oil, on what the soil produces, on human beings and animals, and on all their labors.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then Zerubbabel son of Shealtiel, and Joshua son of Jehozadak, the high priest, with all the remnant of the people, obeyed the voice of the LORD their God, and the words of the prophet Haggai, as the LORD their God had sent him; and the people feared the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then Haggai, the messenger of the LORD, spoke to the people with the LORD's message, saying, I am with you, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> And the LORD stirred up the spirit of Zerubbabel son of Shealtiel, governor of Judah, and the spirit of Joshua son of Jehozadak, the high priest, and the spirit of all the remnant of the people; and they came and worked on the house of the LORD of hosts, their God,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> on the twenty-fourth day of the month, in the sixth month.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> In the second year of King Darius, in the seventh month, on the twenty-first day of the month, the word of the LORD came by the prophet Haggai, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Speak now to Zerubbabel son of Shealtiel, governor of Judah, and to Joshua son of Jehozadak, the high priest, and to the remnant of the people, and say,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Who is left among you that saw this house in its former glory? How does it look to you now? Is it not in your sight as nothing?</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Yet now take courage, O Zerubbabel, says the LORD; take courage, O Joshua, son of Jehozadak, the high priest; take courage, all you people of the land, says the LORD; work, for I am with you, says the LORD of hosts,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> according to the promise that I made you when you came out of Egypt. My spirit abides among you; do not fear.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For thus says the LORD of hosts: Once again, in a little while, I will shake the heavens and the earth and the sea and the dry land;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> and I will shake all the nations, so that the treasure of all nations shall come, and I will fill this house with splendor, says the LORD of hosts.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The silver is mine, and the gold is mine, says the LORD of hosts.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The latter splendor of this house shall be greater than the former, says the LORD of hosts; and in this place I will give prosperity, says the LORD of hosts.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> On the twenty-fourth day of the ninth month, in the second year of Darius, the word of the LORD came by the prophet Haggai, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Thus says the LORD of hosts: Ask the priests for a ruling:</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> If one carries consecrated meat in the fold of one's garment, and with the fold touches bread, or stew, or wine, or oil, or any kind of food, does it become holy? The priests answered, \"No.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then Haggai said, \"If one who is unclean by contact with a dead body touches any of these, does it become unclean?\" The priests answered, \"Yes, it becomes unclean.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Haggai then said, So is it with this people, and with this nation before me, says the LORD; and so with every work of their hands; and what they offer there is unclean.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> But now, consider what will come to pass from this day on. Before a stone was placed upon a stone in the LORD's temple,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> how did you fare? When one came to a heap of twenty measures, there were but ten; when one came to the wine vat to draw fifty measures, there were but twenty. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> I struck you and all the products of your toil with blight and mildew and hail; yet you did not return to me, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Consider from this day on, from the twenty-fourth day of the ninth month. Since the day that the foundation of the LORD's temple was laid, consider:</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Is there any seed left in the barn? Do the vine, the fig tree, the pomegranate, and the olive tree still yield nothing? From this day on I will bless you.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The word of the LORD came a second time to Haggai on the twenty-fourth day of the month:</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Speak to Zerubbabel, governor of Judah, saying, I am about to shake the heavens and the earth,</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> and to overthrow the throne of kingdoms; I am about to destroy the strength of the kingdoms of the nations, and overthrow the chariots and their riders; and the horses and their riders shall fall, every one by the sword of a comrade.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> On that day, says the LORD of hosts, I will take you, O Zerubbabel my servant, son of Shealtiel, says the LORD, and make you like a signet ring; for I have chosen you, says the LORD of hosts.</VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"38\" bname=\"Zechariah\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> In the eighth month, in the second year of Darius, the word of the LORD came to the prophet Zechariah son of Berechiah son of Iddo, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The LORD was very angry with your ancestors.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Therefore say to them, Thus says the LORD of hosts: Return to me, says the LORD of hosts, and I will return to you, says the LORD of hosts.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Do not be like your ancestors, to whom the former prophets proclaimed, \"Thus says the LORD of hosts, Return from your evil ways and from your evil deeds.\" But they did not hear or heed me, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Your ancestors, where are they? And the prophets, do they live forever?</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> But my words and my statutes, which I commanded my servants the prophets, did they not overtake your ancestors? So they repented and said, \"The LORD of hosts has dealt with us according to our ways and deeds, just as he planned to do.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> On the twenty-fourth day of the eleventh month, the month of Shebat, in the second year of Darius, the word of the LORD came to the prophet Zechariah son of Berechiah son of Iddo; and Zechariah said, </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> In the night I saw a man riding on a red horse! He was standing among the myrtle trees in the glen; and behind him were red, sorrel, and white horses.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then I said, \"What are these, my lord?\" The angel who talked with me said to me, \"I will show you what they are.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> So the man who was standing among the myrtle trees answered, \"They are those whom the LORD has sent to patrol the earth.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then they spoke to the angel of the LORD who was standing among the myrtle trees, \"We have patrolled the earth, and lo, the whole earth remains at peace.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then the angel of the LORD said, \"O LORD of hosts, how long will you withhold mercy from Jerusalem and the cities of Judah, with which you have been angry these seventy years?\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then the LORD replied with gracious and comforting words to the angel who talked with me.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> So the angel who talked with me said to me, Proclaim this message: Thus says the LORD of hosts; I am very jealous for Jerusalem and for Zion.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And I am extremely angry with the nations that are at ease; for while I was only a little angry, they made the disaster worse.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Therefore, thus says the LORD, I have returned to Jerusalem with compassion; my house shall be built in it, says the LORD of hosts, and the measuring line shall be stretched out over Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Proclaim further: Thus says the LORD of hosts: My cities shall again overflow with prosperity; the LORD will again comfort Zion and again choose Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> And I looked up and saw four horns.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> I asked the angel who talked with me, \"What are these?\" And he answered me, \"These are the horns that have scattered Judah, Israel, and Jerusalem.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Then the LORD showed me four blacksmiths.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> And I asked, \"What are they coming to do?\" He answered, \"These are the horns that scattered Judah, so that no head could be raised; but these have come to terrify them, to strike down the horns of the nations that lifted up their horns against the land of Judah to scatter its people.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> I looked up and saw a man with a measuring line in his hand.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Then I asked, \"Where are you going?\" He answered me, \"To measure Jerusalem, to see what is its width and what is its length.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then the angel who talked with me came forward, and another angel came forward to meet him,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> and said to him, \"Run, say to that young man: Jerusalem shall be inhabited like villages without walls, because of the multitude of people and animals in it.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> For I will be a wall of fire all around it, says the LORD, and I will be the glory within it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Up, up! Flee from the land of the north, says the LORD; for I have spread you abroad like the four winds of heaven, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Up! Escape to Zion, you that live with daughter Babylon.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> For thus said the LORD of hosts (after his glory sent me) regarding the nations that plundered you: Truly, one who touches you touches the apple of my eye.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> See now, I am going to raise my hand against them, and they shall become plunder for their own slaves. Then you will know that the LORD of hosts has sent me. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Sing and rejoice, O daughter Zion! For lo, I will come and dwell in your midst, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Many nations shall join themselves to the LORD on that day, and shall be my people; and I will dwell in your midst. And you shall know that the LORD of hosts has sent me to you.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The LORD will inherit Judah as his portion in the holy land, and will again choose Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Be silent, all people, before the LORD; for he has roused himself from his holy dwelling.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> Then he showed me the high priest Joshua standing before the angel of the LORD, and Satan standing at his right hand to accuse him. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And the LORD said to Satan, \"The LORD rebuke you, O Satan! The LORD who has chosen Jerusalem rebuke you! Is not this man a brand plucked from the fire?\" </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Now Joshua was dressed with filthy clothes as he stood before the angel.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The angel said to those who were standing before him, \"Take off his filthy clothes.\" And to him he said, \"See, I have taken your guilt away from you, and I will clothe you with festal apparel.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> And I said, \"Let them put a clean turban on his head.\" So they put a clean turban on his head and clothed him with the apparel; and the angel of the LORD was standing by.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then the angel of the LORD assured Joshua, saying</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> \"Thus says the LORD of hosts: If you will walk in my ways and keep my requirements, then you shall rule my house and have charge of my courts, and I will give you the right of access among those who are standing here.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Now listen, Joshua, high priest, you and your colleagues who sit before you! For they are an omen of things to come: I am going to bring my servant the Branch.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> For on the stone that I have set before Joshua, on a single stone with seven facets, I will engrave its inscription, says the LORD of hosts, and I will remove the guilt of this land in a single day.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> On that day, says the LORD of hosts, you shall invite each other to come under your vine and fig tree.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> The angel who talked with me came again, and wakened me, as one is wakened from sleep.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He said to me, \"What do you see?\" And I said, \"I see a lampstand all of gold, with a bowl on the top of it; there are seven lamps on it, with seven lips on each of the lamps that are on the top of it.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And by it there are two olive trees, one on the right of the bowl and the other on its left.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> I said to the angel who talked with me, \"What are these, my lord?\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then the angel who talked with me answered me, \"Do you not know what these are?\" I said, \"No, my lord.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> He said to me, \"This is the word of the LORD to Zerubbabel: Not by might, nor by power, but by my spirit, says the LORD of hosts.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> What are you, O great mountain? Before Zerubbabel you shall become a plain; and he shall bring out the top stone amid shouts of 'Grace, grace to it!'\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Moreover the word of the LORD came to me, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> \"The hands of Zerubbabel have laid the foundation of this house; his hands shall also complete it. Then you will know that the LORD of hosts has sent me to you.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For whoever has despised the day of small things shall rejoice, and shall see the plummet in the hand of Zerubbabel. \"These seven are the eyes of the LORD, which range through the whole earth.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then I said to him, \"What are these two olive trees on the right and the left of the lampstand?\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> And a second time I said to him, \"What are these two branches of the olive trees, which pour out the oil through the two golden pipes?\" </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> He said to me, \"Do you not know what these are?\" I said, \"No, my lord.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then he said, \"These are the two anointed ones who stand by the Lord of the whole earth.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"5\">\r\n\t\t\t<VERS vnumber=\"1\"> Again I looked up and saw a flying scroll.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And he said to me, \"What do you see?\" I answered, \"I see a flying scroll; its length is twenty cubits, and its width ten cubits.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then he said to me, \"This is the curse that goes out over the face of the whole land; for everyone who steals shall be cut off according to the writing on one side, and everyone who swears falsely shall be cut off according to the writing on the other side. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> I have sent it out, says the LORD of hosts, and it shall enter the house of the thief, and the house of anyone who swears falsely by my name; and it shall abide in that house and consume it, both timber and stones.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then the angel who talked with me came forward and said to me, \"Look up and see what this is that is coming out.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> I said, \"What is it?\" He said, \"This is a basket coming out.\" And he said, \"This is their iniquity in all the land.\" </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then a leaden cover was lifted, and there was a woman sitting in the basket! </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And he said, \"This is Wickedness.\" So he thrust her back into the basket, and pressed the leaden weight down on its mouth. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then I looked up and saw two women coming forward. The wind was in their wings; they had wings like the wings of a stork, and they lifted up the basket between earth and sky. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then I said to the angel who talked with me, \"Where are they taking the basket?\" </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> He said to me, \"To the land of Shinar, to build a house for it; and when this is prepared, they will set the basket down there on its base.\" </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"6\">\r\n\t\t\t<VERS vnumber=\"1\"> And again I looked up and saw four chariots coming out from between two mountains-- mountains of bronze.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The first chariot had red horses, the second chariot black horses,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> the third chariot white horses, and the fourth chariot dappled gray horses. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then I said to the angel who talked with me, \"What are these, my lord?\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The angel answered me, \"These are the four winds of heaven going out, after presenting themselves before the Lord of all the earth. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The chariot with the black horses goes toward the north country, the white ones go toward the west country, and the dappled ones go toward the south country.\" </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> When the steeds came out, they were impatient to get off and patrol the earth. And he said, \"Go, patrol the earth.\" So they patrolled the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then he cried out to me, \"Lo, those who go toward the north country have set my spirit at rest in the north country.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The word of the LORD came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Collect silver and gold from the exiles-- from Heldai, Tobijah, and Jedaiah-- who have arrived from Babylon; and go the same day to the house of Josiah son of Zephaniah.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Take the silver and gold and make a crown, and set it on the head of the high priest Joshua son of Jehozadak; </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> say to him: Thus says the LORD of hosts: Here is a man whose name is Branch: for he shall branch out in his place, and he shall build the temple of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> It is he that shall build the temple of the LORD; he shall bear royal honor, and shall sit upon his throne and rule. There shall be a priest by his throne, with peaceful understanding between the two of them.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> And the crown shall be in the care of Heldai, Tobijah, Jedaiah, and Josiah son of Zephaniah, as a memorial in the temple of the LORD. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Those who are far off shall come and help to build the temple of the LORD; and you shall know that the LORD of hosts has sent me to you. This will happen if you diligently obey the voice of the LORD your God.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"7\">\r\n\t\t\t<VERS vnumber=\"1\"> In the fourth year of King Darius, the word of the LORD came to Zechariah on the fourth day of the ninth month, which is Chislev.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Now the people of Bethel had sent Sharezer and Regem-melech and their men, to entreat the favor of the LORD,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> and to ask the priests of the house of the LORD of hosts and the prophets, \"Should I mourn and practice abstinence in the fifth month, as I have done for so many years?\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then the word of the LORD of hosts came to me:</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Say to all the people of the land and the priests: When you fasted and lamented in the fifth month and in the seventh, for these seventy years, was it for me that you fasted?</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And when you eat and when you drink, do you not eat and drink only for yourselves?</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Were not these the words that the LORD proclaimed by the former prophets, when Jerusalem was inhabited and in prosperity, along with the towns around it, and when the Negeb and the Shephelah were inhabited?</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The word of the LORD came to Zechariah, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Thus says the LORD of hosts: Render true judgments, show kindness and mercy to one another;</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> do not oppress the widow, the orphan, the alien, or the poor; and do not devise evil in your hearts against one another.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But they refused to listen, and turned a stubborn shoulder, and stopped their ears in order not to hear.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> They made their hearts adamant in order not to hear the law and the words that the LORD of hosts had sent by his spirit through the former prophets. Therefore great wrath came from the LORD of hosts.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Just as, when I called, they would not hear, so, when they called, I would not hear, says the LORD of hosts, </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> and I scattered them with a whirlwind among all the nations that they had not known. Thus the land they left was desolate, so that no one went to and fro, and a pleasant land was made desolate.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"8\">\r\n\t\t\t<VERS vnumber=\"1\"> The word of the LORD of hosts came to me, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Thus says the LORD of hosts: I am jealous for Zion with great jealousy, and I am jealous for her with great wrath.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Thus says the LORD: I will return to Zion, and will dwell in the midst of Jerusalem; Jerusalem shall be called the faithful city, and the mountain of the LORD of hosts shall be called the holy mountain.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Thus says the LORD of hosts: Old men and old women shall again sit in the streets of Jerusalem, each with staff in hand because of their great age.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> And the streets of the city shall be full of boys and girls playing in its streets.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Thus says the LORD of hosts: Even though it seems impossible to the remnant of this people in these days, should it also seem impossible to me, says the LORD of hosts?</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Thus says the LORD of hosts: I will save my people from the east country and from the west country;</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> and I will bring them to live in Jerusalem. They shall be my people and I will be their God, in faithfulness and in righteousness.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Thus says the LORD of hosts: Let your hands be strong-- you that have recently been hearing these words from the mouths of the prophets who were present when the foundation was laid for the rebuilding of the temple, the house of the LORD of hosts.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For before those days there were no wages for people or for animals, nor was there any safety from the foe for those who went out or came in, and I set them all against one other.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But now I will not deal with the remnant of this people as in the former days, says the LORD of hosts.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> For there shall be a sowing of peace; the vine shall yield its fruit, the ground shall give its produce, and the skies shall give their dew; and I will cause the remnant of this people to possess all these things.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Just as you have been a cursing among the nations, O house of Judah and house of Israel, so I will save you and you shall be a blessing. Do not be afraid, but let your hands be strong.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> For thus says the LORD of hosts: Just as I purposed to bring disaster upon you, when your ancestors provoked me to wrath, and I did not relent, says the LORD of hosts,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> so again I have purposed in these days to do good to Jerusalem and to the house of Judah; do not be afraid.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> These are the things that you shall do: Speak the truth to one another, render in your gates judgments that are true and make for peace,</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> do not devise evil in your hearts against one another, and love no false oath; for all these are things that I hate, says the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The word of the LORD of hosts came to me, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Thus says 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 seasons of joy and gladness, and cheerful festivals for the house of Judah: therefore love truth and peace.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Thus says the LORD of hosts: Peoples shall yet come, the inhabitants of many cities;</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> the inhabitants of one city shall go to another, saying, \"Come, let us go to entreat the favor of the LORD, and to seek the LORD of hosts; I myself am going.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Many peoples and strong nations shall come to seek the LORD of hosts in Jerusalem, and to entreat the favor of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Thus says the LORD of hosts: In those days ten men from nations of every language shall take hold of a Jew, grasping his garment and saying, \"Let us go with you, for we have heard that God is with you.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"9\">\r\n\t\t\t<VERS vnumber=\"1\"> An Oracle. The word of the LORD is against the land of Hadrach and will rest upon Damascus. For to the LORD belongs the capital of Aram, as do all the tribes of Israel; </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Hamath also, which borders on it, Tyre and Sidon, though they are very wise.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Tyre has built itself a rampart, and heaped up silver like dust, and gold like the dirt of the streets.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But now, the Lord will strip it of its possessions and hurl its wealth into the sea, and it shall be devoured by fire.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Ashkelon shall see it and be afraid; Gaza too, and shall writhe in anguish; Ekron also, because its hopes are withered. The king shall perish from Gaza; Ashkelon shall be uninhabited;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> a mongrel people shall settle in Ashdod, and I will make an end of the pride of Philistia.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> I will take away its blood from its mouth, and its abominations from between its teeth; it too shall be a remnant for our God; it shall be like a clan in Judah, and Ekron shall be like the Jebusites.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then I will encamp at my house as a guard, so that no one shall march to and fro; no oppressor shall again overrun them, for now I have seen with my own eyes.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Rejoice greatly, O daughter Zion! Shout aloud, O daughter Jerusalem! Lo, your king comes to you; triumphant and victorious is he, humble and riding on a donkey, on a colt, the foal of a donkey.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> He will cut off the chariot from Ephraim and the war-horse from Jerusalem; and the battle bow shall be cut off, and he shall command peace to the nations; his dominion shall be from sea to sea, and from the River to the ends of the earth. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> As for you also, because of the blood of my covenant with you, I will set your prisoners free from the waterless pit.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Return to your stronghold, O prisoners of hope; today I declare that I will restore to you double.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> For I have bent Judah as my bow; I have made Ephraim its arrow. I will arouse your sons, O Zion, against your sons, O Greece, and wield you like a warrior's sword.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then the LORD will appear over them, and his arrow go forth like lightning; the Lord GOD will sound the trumpet and march forth in the whirlwinds of the south.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The LORD of hosts will protect them, and they shall devour and tread down the slingers; they shall drink their blood like wine, and be full like a bowl, drenched like the corners of the altar. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> On that day the LORD their God will save them for they are the flock of his people; for like the jewels of a crown they shall shine on his land.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> For what goodness and beauty are his! Grain shall make the young men flourish, and new wine the young women.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"10\">\r\n\t\t\t<VERS vnumber=\"1\"> Ask rain from the LORD in the season of the spring rain, from the LORD who makes the storm clouds, who gives showers of rain to you, the vegetation in the field to everyone. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> For the teraphim utter nonsense, and the diviners see lies; the dreamers tell false dreams, and give empty consolation. Therefore the people wander like sheep; they suffer for lack of a shepherd. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> My anger is hot against the shepherds, and I will punish the leaders; for the LORD of hosts cares for his flock, the house of Judah, and will make them like his proud war-horse. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Out of them shall come the cornerstone, out of them the tent peg, out of them the battle bow, out of them every commander.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Together they shall be like warriors in battle, trampling the foe in the mud of the streets; they shall fight, for the LORD is with them, and they shall put to shame the riders on horses.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> I will strengthen the house of Judah, and I will save the house of Joseph. I will bring them back because I have compassion on them, and they shall be as though I had not rejected them; for I am the LORD their God and I will answer them.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then the people of Ephraim shall become like warriors, and their hearts shall be glad as with wine. Their children shall see it and rejoice, their hearts shall exult in the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> I will signal for them and gather them in, for I have redeemed them, and they shall be as numerous as they were before.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Though I scattered them among the nations, yet in far countries they shall remember me, and they shall rear their children and return.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> I will bring them home from the land of Egypt, and gather them from Assyria; I will bring them to the land of Gilead and to Lebanon, until there is no room for them.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> They shall pass through the sea of distress, and the waves of the sea shall be struck down, and all the depths of the Nile dried up. The pride of Assyria shall be laid low, and the scepter of Egypt shall depart. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> I will make them strong in the LORD, and they shall walk in his name, says the LORD.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"11\">\r\n\t\t\t<VERS vnumber=\"1\"> Open your doors, O Lebanon, so that fire may devour your cedars!</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Wail, O cypress, for the cedar has fallen, for the glorious trees are ruined! Wail, oaks of Bashan, for the thick forest has been felled!</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Listen, the wail of the shepherds, for their glory is despoiled! Listen, the roar of the lions, for the thickets of the Jordan are destroyed!</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Thus said the LORD my God: Be a shepherd of the flock doomed to slaughter.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Those who buy them kill them and go unpunished; and those who sell them say, \"Blessed be the LORD, for I have become rich\"; and their own shepherds have no pity on them.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For I will no longer have pity on the inhabitants of the earth, says the LORD. I will cause them, every one, to fall each into the hand of a neighbor, and each into the hand of the king; and they shall devastate the earth, and I will deliver no one from their hand.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> So, on behalf of the sheep merchants, I became the shepherd of the flock doomed to slaughter. I took two staffs; one I named Favor, the other I named Unity, and I tended the sheep.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> In one month I disposed of the three shepherds, for I had become impatient with them, and they also detested me.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> So I said, \"I will not be your shepherd. What is to die, let it die; what is to be destroyed, let it be destroyed; and let those that are left devour the flesh of one another!\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> I took my staff Favor and broke it, annulling the covenant that I had made with all the peoples.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> So it was annulled on that day, and the sheep merchants, who were watching me, knew that it was the word of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> I then said to them, \"If it seems right to you, give me my wages; but if not, keep them.\" So they weighed out as my wages thirty shekels of silver.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then the LORD said to me, \"Throw it into the treasury\"-- this lordly price at which I was valued by them. So I took the thirty shekels of silver and threw them into the treasury in the house of the LORD.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then I broke my second staff Unity, annulling the family ties between Judah and Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Then the LORD said to me: Take once more the implements of a worthless shepherd.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> For I am now raising up in the land a shepherd who does not care for the perishing, or seek the wandering, or heal the maimed, or nourish the healthy, but devours the flesh of the fat ones, tearing off even their hoofs.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Oh, my worthless shepherd, who deserts the flock! May the sword strike his arm and his right eye! Let his arm be completely withered, his right eye utterly blinded!</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"12\">\r\n\t\t\t<VERS vnumber=\"1\"> An Oracle. The word of the LORD concerning Israel: Thus says the LORD, who stretched out the heavens and founded the earth and formed the human spirit within:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> See, I am about to make Jerusalem a cup of reeling for all the surrounding peoples; it will be against Judah also in the siege against Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> On that day I will make Jerusalem a heavy stone for all the peoples; all who lift it shall grievously hurt themselves. And all the nations of the earth shall come together against it.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> On that day, says the LORD, I will strike every horse with panic, and its rider with madness. But on the house of Judah I will keep a watchful eye, when I strike every horse of the peoples with blindness.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then the clans of Judah shall say to themselves, \"The inhabitants of Jerusalem have strength through the LORD of hosts, their God.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> On that day I will make the clans of Judah like a blazing pot on a pile of wood, like a flaming torch among sheaves; and they shall devour to the right and to the left all the surrounding peoples, while Jerusalem shall again be inhabited in its place, in Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> And the LORD will give victory to the tents of Judah first, that the glory of the house of David and the glory of the inhabitants of Jerusalem may not be exalted over that of Judah.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> On that day the LORD will shield the inhabitants of Jerusalem so that the feeblest among them on that day shall be like David, and the house of David shall be like God, like the angel of the LORD, at their head.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> And on that day I will seek to destroy all the nations that come against Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And I will pour out a spirit of compassion and supplication on the house of David and the inhabitants of Jerusalem, so that, when they look on the one whom they have pierced, they shall mourn for him, as one mourns for an only child, and weep bitterly over him, as one weeps over a firstborn. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> On that day the mourning in Jerusalem will be as great as the mourning for Hadad-rimmon in the plain of Megiddo.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The land shall mourn, each family by itself; the family of the house of David by itself, and their wives by themselves; the family of the house of Nathan by itself, and their wives by themselves;</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> the family of the house of Levi by itself, and their wives by themselves; the family of the Shimeites by itself, and their wives by themselves;</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> and all the families that are left, each by itself, and their wives by themselves.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"13\">\r\n\t\t\t<VERS vnumber=\"1\"> On that day a fountain shall be opened for the house of David and the inhabitants of Jerusalem, to cleanse them from sin and impurity.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> On that day, says the LORD of hosts, I will cut off the names of the idols from the land, so that they shall be remembered no more; and also I will remove from the land the prophets and the unclean spirit.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And if any prophets appear again, their fathers and mothers who bore them will say to them, \"You shall not live, for you speak lies in the name of the LORD\"; and their fathers and their mothers who bore them shall pierce them through when they prophesy.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> On that day the prophets will be ashamed, every one, of their visions when they prophesy; they will not put on a hairy mantle in order to deceive,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> but each of them will say, \"I am no prophet, I am a tiller of the soil; for the land has been my possession since my youth.\" </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And if anyone asks them, \"What are these wounds on your chest?\" the answer will be \"The wounds I received in the house of my friends.\" </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> \"Awake, O sword, against my shepherd, against the man who is my associate,\" says the LORD of hosts. Strike the shepherd, that the sheep may be scattered; I will turn my hand against the little ones.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> In the whole land, says the LORD, two-thirds shall be cut off and perish, and one-third shall be left alive.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> And I will put this third into the fire, refine them as one refines silver, and test them as gold is tested. They will call on my name, and I will answer them. I will say, \"They are my people\"; and they will say, \"The LORD is our God.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"14\">\r\n\t\t\t<VERS vnumber=\"1\"> See, a day is coming for the LORD, when the plunder taken from you will be divided in your midst.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> For I will gather all the nations against Jerusalem to battle, and the city shall be taken and the houses looted and the women raped; half the city shall go into exile, but the rest of the people shall not be cut off from the city.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then the LORD will go forth and fight against those nations as when he fights on a day of battle.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> On that day his feet shall stand on the Mount of Olives, which lies before Jerusalem on the east; and the Mount of Olives shall be split in two from east to west by a very wide valley; so that one half of the Mount shall withdraw northward, and the other half southward.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> And you shall flee by the valley of the LORD's mountain, for the valley between the mountains shall reach to Azal; and you shall flee as you fled from the earthquake in the days of King Uzziah of Judah. Then the LORD my God will come, and all the holy ones with him. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> On that day there shall not be either cold or frost. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> And there shall be continuous day (it is known to the LORD), not day and not night, for at evening time there shall be light.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> On that day living waters shall flow out from Jerusalem, half of them to the eastern sea and half of them to the western sea; it shall continue in summer as in winter.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> And the LORD will become king over all the earth; on that day the LORD will be one and his name one.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The whole land shall be turned into a plain from Geba to Rimmon south of Jerusalem. But Jerusalem shall remain aloft on its site from the Gate of Benjamin to the place of the former gate, to the Corner Gate, and from the Tower of Hananel to the king's wine presses.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> And it shall be inhabited, for never again shall it be doomed to destruction; Jerusalem shall abide in security.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> This shall be the plague with which the LORD will strike all the peoples that wage war against Jerusalem: their flesh shall rot while they are still on their feet; their eyes shall rot in their sockets, and their tongues shall rot in their mouths.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> On that day a great panic from the LORD shall fall on them, so that each will seize the hand of a neighbor, and the hand of the one will be raised against the hand of the other;</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> even Judah will fight at Jerusalem. And the wealth of all the surrounding nations shall be collected-- gold, silver, and garments in great abundance.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And a plague like this plague shall fall on the horses, the mules, the camels, the donkeys, and whatever animals may be in those camps.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then all who survive of the nations that have come against Jerusalem shall go up year after year to worship the King, the LORD of hosts, and to keep the festival of booths. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> If any of the families of the earth do not go up to Jerusalem to worship the King, the LORD of hosts, there will be no rain upon them.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> And if the family of Egypt do not go up and present themselves, then on them shall come the plague that the LORD inflicts on the nations that do not go up to keep the festival of booths. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Such shall be the punishment of Egypt and the punishment of all the nations that do not go up to keep the festival of booths. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> On that day there shall be inscribed on the bells of the horses, \"Holy to the LORD.\" And the cooking pots in the house of the LORD shall be as holy as the bowls in front of the altar;</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> and every cooking pot in Jerusalem and Judah shall be sacred to the LORD of hosts, so that all who sacrifice may come and use them to boil the flesh of the sacrifice. And there shall no longer be traders in the house of the LORD of hosts on that day. </VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"39\" bname=\"Malachi\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> An oracle. The word of the LORD to Israel by Malachi. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> I have loved you, says the LORD. But you say, \"How have you loved us?\" Is not Esau Jacob's brother? says the LORD. Yet I have loved Jacob</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> but I have hated Esau; I have made his hill country a desolation and his heritage a desert for jackals.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> If Edom says, \"We are shattered but we will rebuild the ruins,\" the LORD of hosts says: They may build, but I will tear down, until they are called the wicked country, the people with whom the LORD is angry forever.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Your own eyes shall see this, and you shall say, \"Great is the LORD beyond the borders of Israel!\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> A son honors his father, and servants their master. If then I am a father, where is the honor due me? And if I am a master, where is the respect due me? says the LORD of hosts to you, O priests, who despise my name. You say, \"How have we despised your name?\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> By offering polluted food on my altar. And you say, \"How have we polluted it?\" By thinking that the LORD's table may be despised. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> When you offer blind animals in sacrifice, is that not wrong? And when you offer those that are lame or sick, is that not wrong? Try presenting that to your governor; will he be pleased with you or show you favor? says the LORD of hosts.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> And now implore the favor of God, that he may be gracious to us. The fault is yours. Will he show favor to any of you? says the LORD of hosts.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Oh, that someone among you would shut the temple doors, so that you would not kindle fire on my altar in vain! I have no pleasure in you, says the LORD of hosts, and I will not accept an offering from your hands. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> For from the rising of the sun to its setting my name is great among the nations, and in every place incense is offered to my name, and a pure offering; for my name is great among the nations, says the LORD of hosts.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> But you profane it when you say that the Lord's table is polluted, and the food for it may be despised. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> \"What a weariness this is,\" you say, and you sniff at me, says the LORD of hosts. You bring what has been taken by violence or is lame or sick, and this you bring as your offering! Shall I accept that from your hand? says the LORD. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Cursed be the cheat who has a male in the flock and vows to give it, and yet sacrifices to the Lord what is blemished; for I am a great King, says the LORD of hosts, and my name is reverenced among the nations.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> And now, O priests, this command is for you.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> If you will not listen, if you will not lay it to heart to give glory to my name, says the LORD of hosts, then I will send the curse on you and I will curse your blessings; indeed I have already cursed them, because you do not lay it to heart. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> I will rebuke your offspring, and spread dung on your faces, the dung of your offerings, and I will put you out of my presence. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Know, then, that I have sent this command to you, that my covenant with Levi may hold, says the LORD of hosts.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> My covenant with him was a covenant of life and well-being, which I gave him; this called for reverence, and he revered me and stood in awe of my name.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> True instruction was in his mouth, and no wrong was found on his lips. He walked with me in integrity and uprightness, and he turned many from iniquity.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> For the lips of a priest should guard knowledge, and people should seek instruction from his mouth, for he is the messenger of the LORD of hosts.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But you have turned aside from the way; you have caused many to stumble by your instruction; you have corrupted the covenant of Levi, says the LORD of hosts,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> and so I make you despised and abased before all the people, inasmuch as you have not kept my ways but have shown partiality in your instruction.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Have we not all one father? Has not one God created us? Why then are we faithless to one another, profaning the covenant of our ancestors?</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Judah has been faithless, and abomination has been committed in Israel and in Jerusalem; for Judah has profaned the sanctuary of the LORD, which he loves, and has married the daughter of a foreign god.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> May the LORD cut off from the tents of Jacob anyone who does this-- any to witness or answer, or to bring an offering to the LORD of hosts.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And this you do as well: You cover the LORD's altar with tears, with weeping and groaning because he no longer regards the offering or accepts it with favor at your hand.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> You ask, \"Why does he not?\" Because the LORD was a witness between you and the wife of your youth, to whom you have been faithless, though she is your companion and your wife by covenant.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Did not one God make her? Both flesh and spirit are his. And what does the one God desire? Godly offspring. So look to yourselves, and do not let anyone be faithless to the wife of his youth. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> For I hate divorce, says the LORD, the God of Israel, and covering one's garment with violence, says the LORD of hosts. So take heed to yourselves and do not be faithless. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> You have wearied the LORD with your words. Yet you say, \"How have we wearied him?\" By saying, \"All who do evil are good in the sight of the LORD, and he delights in them.\" Or by asking, \"Where is the God of justice?\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> See, I am sending my messenger to prepare the way before me, and the Lord whom you seek will suddenly come to his temple. The messenger of the covenant in whom you delight-- indeed, he is coming, says the LORD of hosts.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> But who can endure the day of his coming, and who can stand when he appears? For he is like a refiner's fire and like fullers' soap;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> he will sit as a refiner and purifier of silver, and he will purify the descendants of Levi and refine them like gold and silver, until they present offerings to the LORD in righteousness. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then the offering of Judah and Jerusalem will be pleasing to the LORD as in the days of old and as in former years.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then I will draw near to you for judgment; I will be swift to bear witness against the sorcerers, against the adulterers, against those who swear falsely, against those who oppress the hired workers in their wages, the widow and the orphan, against those who thrust aside the alien, and do not fear me, says the LORD of hosts.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For I the LORD do not change; therefore you, O children of Jacob, have not perished.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Ever since the days of your ancestors you have turned aside from my statutes and have not kept them. Return to me, and I will return to you, says the LORD of hosts. But you say, \"How shall we return?\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Will anyone rob God? Yet you are robbing me! But you say, \"How are we robbing you?\" In your tithes and offerings!</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> You are cursed with a curse, for you are robbing me-- the whole nation of you!</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Bring the full tithe into the storehouse, so that there may be food in my house, and thus put me to the test, says the LORD of hosts; see if I will not open the windows of heaven for you and pour down for you an overflowing blessing.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> I will rebuke the locust for you, so that it will not destroy the produce of your soil; and your vine in the field shall not be barren, says the LORD of hosts. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then all nations will count you happy, for you will be a land of delight, says the LORD of hosts.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> You have spoken harsh words against me, says the LORD. Yet you say, \"How have we spoken against you?\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> You have said, \"It is vain to serve God. What do we profit by keeping his command or by going about as mourners before the LORD of hosts?</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Now we count the arrogant happy; evildoers not only prosper, but when they put God to the test they escape.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then those who revered the LORD spoke with one another. The LORD took note and listened, and a book of remembrance was written before him of those who revered the LORD and thought on his name.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> They shall be mine, says the LORD of hosts, my special possession on the day when I act, and I will spare them as parents spare their children who serve them.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then once more you shall see the difference between the righteous and the wicked, between one who serves God and one who does not serve him.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> See, the day is coming, burning like an oven, when all the arrogant and all evildoers will be stubble; the day that comes shall burn them up, says the LORD of hosts, so that it will leave them neither root nor branch.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> But for you who revere my name the sun of righteousness shall rise, with healing in its wings. You shall go out leaping like calves from the stall.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And you shall tread down the wicked, for they will be ashes under the soles of your feet, on the day when I act, says the LORD of hosts.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Remember the teaching of my servant Moses, the statutes and ordinances that I commanded him at Horeb for all Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Lo, I will send you the prophet Elijah before the great and terrible day of the LORD comes.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> He will turn the hearts of parents to their children and the hearts of children to their parents, so that I will not come and strike the land with a curse. </VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"40\" bname=\"Matthew\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> An account of the genealogy of Jesus the Messiah, the son of David, the son of Abraham. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Abraham was the father of Isaac, and Isaac the father of Jacob, and Jacob the father of Judah and his brothers,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> and Judah the father of Perez and Zerah by Tamar, and Perez the father of Hezron, and Hezron the father of Aram,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> and Aram the father of Aminadab, and Aminadab the father of Nahshon, and Nahshon the father of Salmon,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> and Salmon the father of Boaz by Rahab, and Boaz the father of Obed by Ruth, and Obed the father of Jesse,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> and Jesse the father of King David. And David was the father of Solomon by the wife of Uriah,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> and Solomon the father of Rehoboam, and Rehoboam the father of Abijah, and Abijah the father of Asaph, </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> and Asaph the father of Jehoshaphat, and Jehoshaphat the father of Joram, and Joram the father of Uzziah, </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> and Uzziah the father of Jotham, and Jotham the father of Ahaz, and Ahaz the father of Hezekiah,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> and Hezekiah the father of Manasseh, and Manasseh the father of Amos, and Amos the father of Josiah, </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> and Josiah the father of Jechoniah and his brothers, at the time of the deportation to Babylon.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> And after the deportation to Babylon: Jechoniah was the father of Salathiel, and Salathiel the father of Zerubbabel,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> and Zerubbabel the father of Abiud, and Abiud the father of Eliakim, and Eliakim the father of Azor,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> and Azor the father of Zadok, and Zadok the father of Achim, and Achim the father of Eliud,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> and Eliud the father of Eleazar, and Eleazar the father of Matthan, and Matthan the father of Jacob,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> and Jacob the father of Joseph the husband of Mary, of whom Jesus was born, who is called the Messiah. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> So all the generations from Abraham to David are fourteen generations; and from David to the deportation to Babylon, fourteen generations; and from the deportation to Babylon to the Messiah, fourteen generations. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Now the birth of Jesus the Messiah took place in this way. When his mother Mary had been engaged to Joseph, but before they lived together, she was found to be with child from the Holy Spirit. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Her husband Joseph, being a righteous man and unwilling to expose her to public disgrace, planned to dismiss her quietly.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> But just when he had resolved to do this, an angel of the Lord appeared to him in a dream and said, \"Joseph, son of David, do not be afraid to take Mary as your wife, for the child conceived in her is from the Holy Spirit.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> She will bear a son, and you are to name him Jesus, for he will save his people from their sins.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> All this took place to fulfill what had been spoken by the Lord through the prophet:</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> \"Look, the virgin shall conceive and bear a son, and they shall name him Emmanuel,\" which means, \"God is with us.\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> When Joseph awoke from sleep, he did as the angel of the Lord commanded him; he took her as his wife,</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> but had no marital relations with her until she had borne a son; and he named him Jesus. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> In the time of King Herod, after Jesus was born in Bethlehem of Judea, wise men from the East came to Jerusalem,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> asking, \"Where is the child who has been born king of the Jews? For we observed his star at its rising, and have come to pay him homage.\" </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> When King Herod heard this, he was frightened, and all Jerusalem with him;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> and calling together all the chief priests and scribes of the people, he inquired of them where the Messiah was to be born. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> They told him, \"In Bethlehem of Judea; for so it has been written by the prophet:</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> 'And you, Bethlehem, in the land of Judah, are by no means least among the rulers of Judah; for from you shall come a ruler who is to shepherd my people Israel.'\" </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then Herod secretly called for the wise men and learned from them the exact time when the star had appeared. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then he sent them to Bethlehem, saying, \"Go and search diligently for the child; and when you have found him, bring me word so that I may also go and pay him homage.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> When they had heard the king, they set out; and there, ahead of them, went the star that they had seen at its rising, until it stopped over the place where the child was. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> When they saw that the star had stopped, they were overwhelmed with joy. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> On entering the house, they saw the child with Mary his mother; and they knelt down and paid him homage. Then, opening their treasure chests, they offered him gifts of gold, frankincense, and myrrh.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> And having been warned in a dream not to return to Herod, they left for their own country by another road.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Now after they had left, an angel of the Lord appeared to Joseph in a dream and said, \"Get up, take the child and his mother, and flee to Egypt, and remain there until I tell you; for Herod is about to search for the child, to destroy him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then Joseph got up, took the child and his mother by night, and went to Egypt, </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> and remained there until the death of Herod. This was to fulfill what had been spoken by the Lord through the prophet, \"Out of Egypt I have called my son.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> When Herod saw that he had been tricked by the wise men, he was infuriated, and he sent and killed all the children in and around Bethlehem who were two years old or under, according to the time that he had learned from the wise men. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then was fulfilled what had been spoken through the prophet Jeremiah:</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> \"A voice was heard in Ramah, wailing and loud lamentation, Rachel weeping for her children; she refused to be consoled, because they are no more.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> When Herod died, an angel of the Lord suddenly appeared in a dream to Joseph in Egypt and said,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> \"Get up, take the child and his mother, and go to the land of Israel, for those who were seeking the child's life are dead.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then Joseph got up, took the child and his mother, and went to the land of Israel. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> But when he heard that Archelaus was ruling over Judea in place of his father Herod, he was afraid to go there. And after being warned in a dream, he went away to the district of Galilee.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> There he made his home in a town called Nazareth, so that what had been spoken through the prophets might be fulfilled, \"He will be called a Nazorean.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> In those days John the Baptist appeared in the wilderness of Judea, proclaiming,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"Repent, for the kingdom of heaven has come near.\" </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> This is the one of whom the prophet Isaiah spoke when he said, \"The voice of one crying out in the wilderness: 'Prepare the way of the Lord, make his paths straight.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Now John wore clothing of camel's hair with a leather belt around his waist, and his food was locusts and wild honey.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then the people of Jerusalem and all Judea were going out to him, and all the region along the Jordan,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> and they were baptized by him in the river Jordan, confessing their sins.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But when he saw many Pharisees and Sadducees coming for baptism, he said to them, \"You brood of vipers! Who warned you to flee from the wrath to come?</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Bear fruit worthy of repentance.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Do not presume to say to yourselves, 'We have Abraham as our ancestor'; for I tell you, God is able from these stones to raise up children to Abraham.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Even now the ax is lying at the root of the trees; every tree therefore that does not bear good fruit is cut down and thrown into the fire.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> \"I baptize you with water for repentance, but one who is more powerful than I is coming after me; I am not worthy to carry his sandals. He will baptize you with the Holy Spirit and fire. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> His winnowing fork is in his hand, and he will clear his threshing floor and will gather his wheat into the granary; but the chaff he will burn with unquenchable fire.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then Jesus came from Galilee to John at the Jordan, to be baptized by him.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> John would have prevented him, saying, \"I need to be baptized by you, and do you come to me?\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> But Jesus answered him, \"Let it be so now; for it is proper for us in this way to fulfill all righteousness.\" Then he consented.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> And when Jesus had been baptized, just as he came up from the water, suddenly the heavens were opened to him and he saw the Spirit of God descending like a dove and alighting on him.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> And a voice from heaven said, \"This is my Son, the Beloved, with whom I am well pleased.\" </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> Then Jesus was led up by the Spirit into the wilderness to be tempted by the devil.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He fasted forty days and forty nights, and afterwards he was famished.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The tempter came and said to him, \"If you are the Son of God, command these stones to become loaves of bread.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But he answered, \"It is written, 'One does not live by bread alone, but by every word that comes from the mouth of God.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then the devil took him to the holy city and placed him on the pinnacle of the temple,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> saying to him, \"If you are the Son of God, throw yourself down; for it is written, 'He will command his angels concerning you,' and 'On their hands they will bear you up, so that you will not dash your foot against a stone.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Jesus said to him, \"Again it is written, 'Do not put the Lord your God to the test.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Again, the devil took him to a very high mountain and showed him all the kingdoms of the world and their splendor;</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> and he said to him, \"All these I will give you, if you will fall down and worship me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Jesus said to him, \"Away with you, Satan! for it is written, 'Worship the Lord your God, and serve only him.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then the devil left him, and suddenly angels came and waited on him.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Now when Jesus heard that John had been arrested, he withdrew to Galilee. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> He left Nazareth and made his home in Capernaum by the sea, in the territory of Zebulun and Naphtali,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> so that what had been spoken through the prophet Isaiah might be fulfilled:</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> \"Land of Zebulun, land of Naphtali, on the road by the sea, across the Jordan, Galilee of the Gentiles--</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> the people who sat in darkness have seen a great light, and for those who sat in the region and shadow of death light has dawned.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> From that time Jesus began to proclaim, \"Repent, for the kingdom of heaven has come near.\" </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> As he walked by the Sea of Galilee, he saw two brothers, Simon, who is called Peter, and Andrew his brother, casting a net into the sea-- for they were fishermen.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> And he said to them, \"Follow me, and I will make you fish for people.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Immediately they left their nets and followed him.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> As he went from there, he saw two other brothers, James son of Zebedee and his brother John, in the boat with their father Zebedee, mending their nets, and he called them.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Immediately they left the boat and their father, and followed him.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Jesus went throughout Galilee, teaching in their synagogues and proclaiming the good news of the kingdom and curing every disease and every sickness among the people. </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> So his fame spread throughout all Syria, and they brought to him all the sick, those who were afflicted with various diseases and pains, demoniacs, epileptics, and paralytics, and he cured them.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> And great crowds followed him from Galilee, the Decapolis, Jerusalem, Judea, and from beyond the Jordan.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"5\">\r\n\t\t\t<VERS vnumber=\"1\"> When Jesus saw the crowds, he went up the mountain; and after he sat down, his disciples came to him.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Then he began to speak, and taught them, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> \"Blessed are the poor in spirit, for theirs is the kingdom of heaven.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> \"Blessed are those who mourn, for they will be comforted.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> \"Blessed are the meek, for they will inherit the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> \"Blessed are those who hunger and thirst for righteousness, for they will be filled.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> \"Blessed are the merciful, for they will receive mercy.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> \"Blessed are the pure in heart, for they will see God.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> \"Blessed are the peacemakers, for they will be called children of God.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> \"Blessed are those who are persecuted for righteousness' sake, for theirs is the kingdom of heaven.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> \"Blessed are you when people revile you and persecute you and utter all kinds of evil against you falsely on my account. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Rejoice and be glad, for your reward is great in heaven, for in the same way they persecuted the prophets who were before you.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> \"You are the salt of the earth; but if salt has lost its taste, how can its saltiness be restored? It is no longer good for anything, but is thrown out and trampled under foot.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> \"You are the light of the world. A city built on a hill cannot be hid.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> No one after lighting a lamp puts it under the bushel basket, but on the lampstand, and it gives light to all in the house.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> In the same way, let your light shine before others, so that they may see your good works and give glory to your Father in heaven.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> \"Do not think that I have come to abolish the law or the prophets; I have come not to abolish but to fulfill.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> For truly I tell you, until heaven and earth pass away, not one letter, not one stroke of a letter, will pass from the law until all is accomplished. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Therefore, whoever breaks one of the least of these commandments, and teaches others to do the same, will be called least in the kingdom of heaven; but whoever does them and teaches them will be called great in the kingdom of heaven. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> For I tell you, unless your righteousness exceeds that of the scribes and Pharisees, you will never enter the kingdom of heaven.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> \"You have heard that it was said to those of ancient times, 'You shall not murder'; and 'whoever murders shall be liable to judgment.'</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> But I say to you that if you are angry with a brother or sister, you will be liable to judgment; and if you insult a brother or sister, you will be liable to the council; and if you say, 'You fool,' you will be liable to the hell of fire.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> So when you are offering your gift at the altar, if you remember that your brother or sister has something against you, </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> leave your gift there before the altar and go; first be reconciled to your brother or sister, and then come and offer your gift. </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Come to terms quickly with your accuser while you are on the way to court with him, or your accuser may hand you over to the judge, and the judge to the guard, and you will be thrown into prison. </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Truly I tell you, you will never get out until you have paid the last penny.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> \"You have heard that it was said, 'You shall not commit adultery.'</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> But I say to you that everyone who looks at a woman with lust has already committed adultery with her in his heart.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> If your right eye causes you to sin, tear it out and throw it away; it is better for you to lose one of your members than for your whole body to be thrown into hell. </VERS>\r\n\t\t\t<VERS vnumber=\"30\"> And if your right hand causes you to sin, cut it off and throw it away; it is better for you to lose one of your members than for your whole body to go into hell.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> \"It was also said, 'Whoever divorces his wife, let him give her a certificate of divorce.'</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> But I say to you that anyone who divorces his wife, except on the ground of unchastity, causes her to commit adultery; and whoever marries a divorced woman commits adultery.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> \"Again, you have heard that it was said to those of ancient times, 'You shall not swear falsely, but carry out the vows you have made to the Lord.'</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> But I say to you, Do not swear at all, either by heaven, for it is the throne of God,</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> or by the earth, for it is his footstool, or by Jerusalem, for it is the city of the great King.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> And do not swear by your head, for you cannot make one hair white or black.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Let your word be 'Yes, Yes' or 'No, No'; anything more than this comes from the evil one. </VERS>\r\n\t\t\t<VERS vnumber=\"38\"> \"You have heard that it was said, 'An eye for an eye and a tooth for a tooth.'</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> But I say to you, Do not resist an evildoer. But if anyone strikes you on the right cheek, turn the other also;</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> and if anyone wants to sue you and take your coat, give your cloak as well;</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> and if anyone forces you to go one mile, go also the second mile.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> Give to everyone who begs from you, and do not refuse anyone who wants to borrow from you.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> \"You have heard that it was said, 'You shall love your neighbor and hate your enemy.'</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> But I say to you, Love your enemies and pray for those who persecute you,</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> so that you may be children of your Father in heaven; for he makes his sun rise on the evil and on the good, and sends rain on the righteous and on the unrighteous.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> For if you love those who love you, what reward do you have? Do not even the tax collectors do the same?</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> And if you greet only your brothers and sisters, what more are you doing than others? Do not even the Gentiles do the same? </VERS>\r\n\t\t\t<VERS vnumber=\"48\"> Be perfect, therefore, as your heavenly Father is perfect.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"6\">\r\n\t\t\t<VERS vnumber=\"1\"> \"Beware of practicing your piety before others in order to be seen by them; for then you have no reward from your Father in heaven.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"So whenever you give alms, do not sound a trumpet before you, as the hypocrites do in the synagogues and in the streets, so that they may be praised by others. Truly I tell you, they have received their reward.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> But when you give alms, do not let your left hand know what your right hand is doing,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> so that your alms may be done in secret; and your Father who sees in secret will reward you. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> \"And whenever you pray, do not be like the hypocrites; for they love to stand and pray in the synagogues and at the street corners, so that they may be seen by others. Truly I tell you, they have received their reward.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> But whenever you pray, go into your room and shut the door and pray to your Father who is in secret; and your Father who sees in secret will reward you. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> \"When you are praying, do not heap up empty phrases as the Gentiles do; for they think that they will be heard because of their many words.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Do not be like them, for your Father knows what you need before you ask him.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> \"Pray then in this way: Our Father in heaven, hallowed be your name.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Your kingdom come. Your will be done, on earth as it is in heaven.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Give us this day our daily bread. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> And forgive us our debts, as we also have forgiven our debtors.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And do not bring us to the time of trial, but rescue us from the evil one.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> For if you forgive others their trespasses, your heavenly Father will also forgive you;</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> but if you do not forgive others, neither will your Father forgive your trespasses.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> \"And whenever you fast, do not look dismal, like the hypocrites, for they disfigure their faces so as to show others that they are fasting. Truly I tell you, they have received their reward.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> But when you fast, put oil on your head and wash your face,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> so that your fasting may be seen not by others but by your Father who is in secret; and your Father who sees in secret will reward you. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> \"Do not store up for yourselves treasures on earth, where moth and rust consume and where thieves break in and steal; </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> but store up for yourselves treasures in heaven, where neither moth nor rust consumes and where thieves do not break in and steal. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> For where your treasure is, there your heart will be also.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> \"The eye is the lamp of the body. So, if your eye is healthy, your whole body will be full of light;</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> but if your eye is unhealthy, your whole body will be full of darkness. If then the light in you is darkness, how great is the darkness!</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> \"No one can serve two masters; for a slave will either hate the one and love the other, or be devoted to the one and despise the other. You cannot serve God and wealth. </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> \"Therefore I tell you, do not worry about your life, what you will eat or what you will drink, or about your body, what you will wear. Is not life more than food, and the body more than clothing? </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Look at the birds of the air; they neither sow nor reap nor gather into barns, and yet your heavenly Father feeds them. Are you not of more value than they?</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> And can any of you by worrying add a single hour to your span of life? </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> And why do you worry about clothing? Consider the lilies of the field, how they grow; they neither toil nor spin,</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> yet I tell you, even Solomon in all his glory was not clothed like one of these.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> But if God so clothes the grass of the field, which is alive today and tomorrow is thrown into the oven, will he not much more clothe you-- you of little faith?</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Therefore do not worry, saying, 'What will we eat?' or 'What will we drink?' or 'What will we wear?'</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> For it is the Gentiles who strive for all these things; and indeed your heavenly Father knows that you need all these things.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> But strive first for the kingdom of God and his righteousness, and all these things will be given to you as well. </VERS>\r\n\t\t\t<VERS vnumber=\"34\"> \"So do not worry about tomorrow, for tomorrow will bring worries of its own. Today's trouble is enough for today.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"7\">\r\n\t\t\t<VERS vnumber=\"1\"> \"Do not judge, so that you may not be judged.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> For with the judgment you make you will be judged, and the measure you give will be the measure you get.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Why do you see the speck in your neighbor's eye, but do not notice the log in your own eye? </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Or how can you say to your neighbor, 'Let me take the speck out of your eye,' while the log is in your own eye?</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> You hypocrite, first take the log out of your own eye, and then you will see clearly to take the speck out of your neighbor's eye. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> \"Do not give what is holy to dogs; and do not throw your pearls before swine, or they will trample them under foot and turn and maul you.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> \"Ask, and it will be given you; search, and you will find; knock, and the door will be opened for you.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> For everyone who asks receives, and everyone who searches finds, and for everyone who knocks, the door will be opened.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Is there anyone among you who, if your child asks for bread, will give a stone?</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Or if the child asks for a fish, will give a snake?</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> If you then, who are evil, know how to give good gifts to your children, how much more will your Father in heaven give good things to those who ask him!</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> \"In everything do to others as you would have them do to you; for this is the law and the prophets.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> \"Enter through the narrow gate; for the gate is wide and the road is easy that leads to destruction, and there are many who take it. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> For the gate is narrow and the road is hard that leads to life, and there are few who find it.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> \"Beware of false prophets, who come to you in sheep's clothing but inwardly are ravenous wolves.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> You will know them by their fruits. Are grapes gathered from thorns, or figs from thistles?</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> In the same way, every good tree bears good fruit, but the bad tree bears bad fruit.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> A good tree cannot bear bad fruit, nor can a bad tree bear good fruit.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Every tree that does not bear good fruit is cut down and thrown into the fire.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Thus you will know them by their fruits.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> \"Not everyone who says to me, 'Lord, Lord,' will enter the kingdom of heaven, but only the one who does the will of my Father in heaven.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> On that day many will say to me, 'Lord, Lord, did we not prophesy in your name, and cast out demons in your name, and do many deeds of power in your name?'</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Then I will declare to them, 'I never knew you; go away from me, you evildoers.'</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> \"Everyone then who hears these words of mine and acts on them will be like a wise man who built his house on rock.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> The rain fell, the floods came, and the winds blew and beat on that house, but it did not fall, because it had been founded on rock.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> And everyone who hears these words of mine and does not act on them will be like a foolish man who built his house on sand.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> The rain fell, and the floods came, and the winds blew and beat against that house, and it fell-- and great was its fall!\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Now when Jesus had finished saying these things, the crowds were astounded at his teaching,</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> for he taught them as one having authority, and not as their scribes.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"8\">\r\n\t\t\t<VERS vnumber=\"1\"> When Jesus had come down from the mountain, great crowds followed him; </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> and there was a leper who came to him and knelt before him, saying, \"Lord, if you choose, you can make me clean.\" </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> He stretched out his hand and touched him, saying, \"I do choose. Be made clean!\" Immediately his leprosy was cleansed.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then Jesus said to him, \"See that you say nothing to anyone; but go, show yourself to the priest, and offer the gift that Moses commanded, as a testimony to them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> When he entered Capernaum, a centurion came to him, appealing to him</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> and saying, \"Lord, my servant is lying at home paralyzed, in terrible distress.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> And he said to him, \"I will come and cure him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The centurion answered, \"Lord, I am not worthy to have you come under my roof; but only speak the word, and my servant will be healed.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> For I also am a man under authority, with soldiers under me; and I say to one, 'Go,' and he goes, and to another, 'Come,' and he comes, and to my slave, 'Do this,' and the slave does it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> When Jesus heard him, he was amazed and said to those who followed him, \"Truly I tell you, in no one in Israel have I found such faith. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> I tell you, many will come from east and west and will eat with Abraham and Isaac and Jacob in the kingdom of heaven,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> while the heirs of the kingdom will be thrown into the outer darkness, where there will be weeping and gnashing of teeth.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And to the centurion Jesus said, \"Go; let it be done for you according to your faith.\" And the servant was healed in that hour.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> When Jesus entered Peter's house, he saw his mother-in-law lying in bed with a fever;</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> he touched her hand, and the fever left her, and she got up and began to serve him.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> That evening they brought to him many who were possessed with demons; and he cast out the spirits with a word, and cured all who were sick.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> This was to fulfill what had been spoken through the prophet Isaiah, \"He took our infirmities and bore our diseases.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Now when Jesus saw great crowds around him, he gave orders to go over to the other side.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> A scribe then approached and said, \"Teacher, I will follow you wherever you go.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> And Jesus said to him, \"Foxes have holes, and birds of the air have nests; but the Son of Man has nowhere to lay his head.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Another of his disciples said to him, \"Lord, first let me go and bury my father.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> But Jesus said to him, \"Follow me, and let the dead bury their own dead.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> And when he got into the boat, his disciples followed him.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> A windstorm arose on the sea, so great that the boat was being swamped by the waves; but he was asleep.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> And they went and woke him up, saying, \"Lord, save us! We are perishing!\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> And he said to them, \"Why are you afraid, you of little faith?\" Then he got up and rebuked the winds and the sea; and there was a dead calm.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> They were amazed, saying, \"What sort of man is this, that even the winds and the sea obey him?\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> When he came to the other side, to the country of the Gadarenes, two demoniacs coming out of the tombs met him. They were so fierce that no one could pass that way. </VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Suddenly they shouted, \"What have you to do with us, Son of God? Have you come here to torment us before the time?\"</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Now a large herd of swine was feeding at some distance from them.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> The demons begged him, \"If you cast us out, send us into the herd of swine.\"</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> And he said to them, \"Go!\" So they came out and entered the swine; and suddenly, the whole herd rushed down the steep bank into the sea and perished in the water.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> The swineherds ran off, and on going into the town, they told the whole story about what had happened to the demoniacs.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Then the whole town came out to meet Jesus; and when they saw him, they begged him to leave their neighborhood.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"9\">\r\n\t\t\t<VERS vnumber=\"1\"> And after getting into a boat he crossed the sea and came to his own town.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And just then some people were carrying a paralyzed man lying on a bed. When Jesus saw their faith, he said to the paralytic, \"Take heart, son; your sins are forgiven.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then some of the scribes said to themselves, \"This man is blaspheming.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But Jesus, perceiving their thoughts, said, \"Why do you think evil in your hearts?</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> For which is easier, to say, 'Your sins are forgiven,' or to say, 'Stand up and walk'?</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> But so that you may know that the Son of Man has authority on earth to forgive sins\"-- he then said to the paralytic-- \"Stand up, take your bed and go to your home.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> And he stood up and went to his home.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> When the crowds saw it, they were filled with awe, and they glorified God, who had given such authority to human beings.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> As Jesus was walking along, he saw a man called Matthew sitting at the tax booth; and he said to him, \"Follow me.\" And he got up and followed him.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And as he sat at dinner in the house, many tax collectors and sinners came and were sitting with him and his disciples. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> When the Pharisees saw this, they said to his disciples, \"Why does your teacher eat with tax collectors and sinners?\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> But when he heard this, he said, \"Those who are well have no need of a physician, but those who are sick.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Go and learn what this means, 'I desire mercy, not sacrifice.' For I have come to call not the righteous but sinners.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then the disciples of John came to him, saying, \"Why do we and the Pharisees fast often, but your disciples do not fast?\" </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And Jesus said to them, \"The wedding guests cannot mourn as long as the bridegroom is with them, can they? The days will come when the bridegroom is taken away from them, and then they will fast.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> No one sews a piece of unshrunk cloth on an old cloak, for the patch pulls away from the cloak, and a worse tear is made.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Neither is new wine put into old wineskins; otherwise, the skins burst, and the wine is spilled, and the skins are destroyed; but new wine is put into fresh wineskins, and so both are preserved.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> While he was saying these things to them, suddenly a leader of the synagogue came in and knelt before him, saying, \"My daughter has just died; but come and lay your hand on her, and she will live.\" </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> And Jesus got up and followed him, with his disciples.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Then suddenly a woman who had been suffering from hemorrhages for twelve years came up behind him and touched the fringe of his cloak,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> for she said to herself, \"If I only touch his cloak, I will be made well.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Jesus turned, and seeing her he said, \"Take heart, daughter; your faith has made you well.\" And instantly the woman was made well.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> When Jesus came to the leader's house and saw the flute players and the crowd making a commotion,</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> he said, \"Go away; for the girl is not dead but sleeping.\" And they laughed at him.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> But when the crowd had been put outside, he went in and took her by the hand, and the girl got up.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> And the report of this spread throughout that district.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> As Jesus went on from there, two blind men followed him, crying loudly, \"Have mercy on us, Son of David!\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> When he entered the house, the blind men came to him; and Jesus said to them, \"Do you believe that I am able to do this?\" They said to him, \"Yes, Lord.\"</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Then he touched their eyes and said, \"According to your faith let it be done to you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> And their eyes were opened. Then Jesus sternly ordered them, \"See that no one knows of this.\"</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> But they went away and spread the news about him throughout that district.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> After they had gone away, a demoniac who was mute was brought to him.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> And when the demon had been cast out, the one who had been mute spoke; and the crowds were amazed and said, \"Never has anything like this been seen in Israel.\"</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> But the Pharisees said, \"By the ruler of the demons he casts out the demons.\" </VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Then Jesus went about all the cities and villages, teaching in their synagogues, and proclaiming the good news of the kingdom, and curing every disease and every sickness.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> When he saw the crowds, he had compassion for them, because they were harassed and helpless, like sheep without a shepherd.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Then he said to his disciples, \"The harvest is plentiful, but the laborers are few;</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> therefore ask the Lord of the harvest to send out laborers into his harvest.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"10\">\r\n\t\t\t<VERS vnumber=\"1\"> Then Jesus summoned his twelve disciples and gave them authority over unclean spirits, to cast them out, and to cure every disease and every sickness. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> These are the names of the twelve apostles: first, Simon, also known as Peter, and his brother Andrew; James son of Zebedee, and his brother John;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Philip and Bartholomew; Thomas and Matthew the tax collector; James son of Alphaeus, and Thaddaeus;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Simon the Cananaean, and Judas Iscariot, the one who betrayed him.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> These twelve Jesus sent out with the following instructions: \"Go nowhere among the Gentiles, and enter no town of the Samaritans,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> but go rather to the lost sheep of the house of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> As you go, proclaim the good news, 'The kingdom of heaven has come near.' </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Cure the sick, raise the dead, cleanse the lepers, cast out demons. You received without payment; give without payment. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Take no gold, or silver, or copper in your belts,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> no bag for your journey, or two tunics, or sandals, or a staff; for laborers deserve their food.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Whatever town or village you enter, find out who in it is worthy, and stay there until you leave.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> As you enter the house, greet it.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> If the house is worthy, let your peace come upon it; but if it is not worthy, let your peace return to you.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> If anyone will not welcome you or listen to your words, shake off the dust from your feet as you leave that house or town.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Truly I tell you, it will be more tolerable for the land of Sodom and Gomorrah on the day of judgment than for that town.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> \"See, I am sending you out like sheep into the midst of wolves; so be wise as serpents and innocent as doves.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Beware of them, for they will hand you over to councils and flog you in their synagogues;</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> and you will be dragged before governors and kings because of me, as a testimony to them and the Gentiles.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> When they hand you over, do not worry about how you are to speak or what you are to say; for what you are to say will be given to you at that time;</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> for it is not you who speak, but the Spirit of your Father speaking through you.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Brother will betray brother to death, and a father his child, and children will rise against parents and have them put to death;</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> and you will be hated by all because of my name. But the one who endures to the end will be saved.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> When they persecute you in one town, flee to the next; for truly I tell you, you will not have gone through all the towns of Israel before the Son of Man comes.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> \"A disciple is not above the teacher, nor a slave above the master;</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> it is enough for the disciple to be like the teacher, and the slave like the master. If they have called the master of the house Beelzebul, how much more will they malign those of his household!</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> \"So have no fear of them; for nothing is covered up that will not be uncovered, and nothing secret that will not become known.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> What I say to you in the dark, tell in the light; and what you hear whispered, proclaim from the housetops.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Do not fear those who kill the body but cannot kill the soul; rather fear him who can destroy both soul and body in hell. </VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Are not two sparrows sold for a penny? Yet not one of them will fall to the ground apart from your Father.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> And even the hairs of your head are all counted.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> So do not be afraid; you are of more value than many sparrows.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> \"Everyone therefore who acknowledges me before others, I also will acknowledge before my Father in heaven;</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> but whoever denies me before others, I also will deny before my Father in heaven.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> \"Do not think that I have come to bring peace to the earth; I have not come to bring peace, but a sword.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> For I have come to set a man against his father, and a daughter against her mother, and a daughter-in-law against her mother-in-law;</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> and one's foes will be members of one's own household.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Whoever loves father or mother more than me is not worthy of me; and whoever loves son or daughter more than me is not worthy of me;</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> and whoever does not take up the cross and follow me is not worthy of me.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> Those who find their life will lose it, and those who lose their life for my sake will find it.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> \"Whoever welcomes you welcomes me, and whoever welcomes me welcomes the one who sent me.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> Whoever welcomes a prophet in the name of a prophet will receive a prophet's reward; and whoever welcomes a righteous person in the name of a righteous person will receive the reward of the righteous;</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> and whoever gives even a cup of cold water to one of these little ones in the name of a disciple-- truly I tell you, none of these will lose their reward.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"11\">\r\n\t\t\t<VERS vnumber=\"1\"> Now when Jesus had finished instructing his twelve disciples, he went on from there to teach and proclaim his message in their cities.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> When John heard in prison what the Messiah was doing, he sent word by his disciples </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> and said to him, \"Are you the one who is to come, or are we to wait for another?\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Jesus answered them, \"Go and tell John what you hear and see:</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> the blind receive their sight, the lame walk, the lepers are cleansed, the deaf hear, the dead are raised, and the poor have good news brought to them.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And blessed is anyone who takes no offense at me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> As they went away, Jesus began to speak to the crowds about John: \"What did you go out into the wilderness to look at? A reed shaken by the wind?</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> What then did you go out to see? Someone dressed in soft robes? Look, those who wear soft robes are in royal palaces. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> What then did you go out to see? A prophet? Yes, I tell you, and more than a prophet. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> This is the one about whom it is written, 'See, I am sending my messenger ahead of you, who will prepare your way before you.'</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Truly I tell you, among those born of women no one has arisen greater than John the Baptist; yet the least in the kingdom of heaven is greater than he.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> From the days of John the Baptist until now the kingdom of heaven has suffered violence, and the violent take it by force. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> For all the prophets and the law prophesied until John came;</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> and if you are willing to accept it, he is Elijah who is to come.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Let anyone with ears listen! </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> \"But to what will I compare this generation? It is like children sitting in the marketplaces and calling to one another,</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> 'We played the flute for you, and you did not dance; we wailed, and you did not mourn.'</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> For John came neither eating nor drinking, and they say, 'He has a demon';</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> the Son of Man came eating and drinking, and they say, 'Look, a glutton and a drunkard, a friend of tax collectors and sinners!' Yet wisdom is vindicated by her deeds.\" </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Then he began to reproach the cities in which most of his deeds of power had been done, because they did not repent.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> \"Woe to you, Chorazin! Woe to you, Bethsaida! For if the deeds of power done in you had been done in Tyre and Sidon, they would have repented long ago in sackcloth and ashes.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> But I tell you, on the day of judgment it will be more tolerable for Tyre and Sidon than for you.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> And you, Capernaum, will you be exalted to heaven? No, you will be brought down to Hades. For if the deeds of power done in you had been done in Sodom, it would have remained until this day.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> But I tell you that on the day of judgment it will be more tolerable for the land of Sodom than for you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> At that time Jesus said, \"I thank you, Father, Lord of heaven and earth, because you have hidden these things from the wise and the intelligent and have revealed them to infants; </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> yes, Father, for such was your gracious will. </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> All things have been handed over to me by my Father; and no one knows the Son except the Father, and no one knows the Father except the Son and anyone to whom the Son chooses to reveal him.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> \"Come to me, all you that are weary and are carrying heavy burdens, and I will give you rest.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Take my yoke upon you, and learn from me; for I am gentle and humble in heart, and you will find rest for your souls.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> For my yoke is easy, and my burden is light.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"12\">\r\n\t\t\t<VERS vnumber=\"1\"> At that time Jesus went through the grainfields on the sabbath; his disciples were hungry, and they began to pluck heads of grain and to eat.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> When the Pharisees saw it, they said to him, \"Look, your disciples are doing what is not lawful to do on the sabbath.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> He said to them, \"Have you not read what David did when he and his companions were hungry?</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> He entered the house of God and ate the bread of the Presence, which it was not lawful for him or his companions to eat, but only for the priests.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Or have you not read in the law that on the sabbath the priests in the temple break the sabbath and yet are guiltless?</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> I tell you, something greater than the temple is here.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But if you had known what this means, 'I desire mercy and not sacrifice,' you would not have condemned the guiltless.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> For the Son of Man is lord of the sabbath.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> He left that place and entered their synagogue;</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> a man was there with a withered hand, and they asked him, \"Is it lawful to cure on the sabbath?\" so that they might accuse him.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> He said to them, \"Suppose one of you has only one sheep and it falls into a pit on the sabbath; will you not lay hold of it and lift it out?</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> How much more valuable is a human being than a sheep! So it is lawful to do good on the sabbath.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then he said to the man, \"Stretch out your hand.\" He stretched it out, and it was restored, as sound as the other.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But the Pharisees went out and conspired against him, how to destroy him.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> When Jesus became aware of this, he departed. Many crowds followed him, and he cured all of them, </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> and he ordered them not to make him known.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> This was to fulfill what had been spoken through the prophet Isaiah:</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> \"Here is my servant, whom I have chosen, my beloved, with whom my soul is well pleased. I will put my Spirit upon him, and he will proclaim justice to the Gentiles.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> He will not wrangle or cry aloud, nor will anyone hear his voice in the streets.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> He will not break a bruised reed or quench a smoldering wick until he brings justice to victory.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> And in his name the Gentiles will hope.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Then they brought to him a demoniac who was blind and mute; and he cured him, so that the one who had been mute could speak and see.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> All the crowds were amazed and said, \"Can this be the Son of David?\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> But when the Pharisees heard it, they said, \"It is only by Beelzebul, the ruler of the demons, that this fellow casts out the demons.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> He knew what they were thinking and said to them, \"Every kingdom divided against itself is laid waste, and no city or house divided against itself will stand.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> If Satan casts out Satan, he is divided against himself; how then will his kingdom stand?</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> If I cast out demons by Beelzebul, by whom do your own exorcists cast them out? Therefore they will be your judges. </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> But if it is by the Spirit of God that I cast out demons, then the kingdom of God has come to you.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Or how can one enter a strong man's house and plunder his property, without first tying up the strong man? Then indeed the house can be plundered.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Whoever is not with me is against me, and whoever does not gather with me scatters.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Therefore I tell you, people will be forgiven for every sin and blasphemy, but blasphemy against the Spirit will not be forgiven.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Whoever speaks a word against the Son of Man will be forgiven, but whoever speaks against the Holy Spirit will not be forgiven, either in this age or in the age to come.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> \"Either make the tree good, and its fruit good; or make the tree bad, and its fruit bad; for the tree is known by its fruit.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> You brood of vipers! How can you speak good things, when you are evil? For out of the abundance of the heart the mouth speaks.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> The good person brings good things out of a good treasure, and the evil person brings evil things out of an evil treasure.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> I tell you, on the day of judgment you will have to give an account for every careless word you utter;</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> for by your words you will be justified, and by your words you will be condemned.\"</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Then some of the scribes and Pharisees said to him, \"Teacher, we wish to see a sign from you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> But he answered them, \"An evil and adulterous generation asks for a sign, but no sign will be given to it except the sign of the prophet Jonah.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> For just as Jonah was three days and three nights in the belly of the sea monster, so for three days and three nights the Son of Man will be in the heart of the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> The people of Nineveh will rise up at the judgment with this generation and condemn it, because they repented at the proclamation of Jonah, and see, something greater than Jonah is here!</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> The queen of the South will rise up at the judgment with this generation and condemn it, because she came from the ends of the earth to listen to the wisdom of Solomon, and see, something greater than Solomon is here!</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> \"When the unclean spirit has gone out of a person, it wanders through waterless regions looking for a resting place, but it finds none.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> Then it says, 'I will return to my house from which I came.' When it comes, it finds it empty, swept, and put in order.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> Then it goes and brings along seven other spirits more evil than itself, and they enter and live there; and the last state of that person is worse than the first. So will it be also with this evil generation.\"</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> While he was still speaking to the crowds, his mother and his brothers were standing outside, wanting to speak to him.</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> Someone told him, \"Look, your mother and your brothers are standing outside, wanting to speak to you.\" </VERS>\r\n\t\t\t<VERS vnumber=\"48\"> But to the one who had told him this, Jesus replied, \"Who is my mother, and who are my brothers?\" </VERS>\r\n\t\t\t<VERS vnumber=\"49\"> And pointing to his disciples, he said, \"Here are my mother and my brothers!</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> For whoever does the will of my Father in heaven is my brother and sister and mother.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"13\">\r\n\t\t\t<VERS vnumber=\"1\"> That same day Jesus went out of the house and sat beside the sea.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Such great crowds gathered around him that he got into a boat and sat there, while the whole crowd stood on the beach.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And he told them many things in parables, saying: \"Listen! A sower went out to sow.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> And as he sowed, some seeds fell on the path, and the birds came and ate them up.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Other seeds fell on rocky ground, where they did not have much soil, and they sprang up quickly, since they had no depth of soil.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> But when the sun rose, they were scorched; and since they had no root, they withered away.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Other seeds fell among thorns, and the thorns grew up and choked them.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Other seeds fell on good soil and brought forth grain, some a hundredfold, some sixty, some thirty.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Let anyone with ears listen!\" </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then the disciples came and asked him, \"Why do you speak to them in parables?\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> He answered, \"To you it has been given to know the secrets of the kingdom of heaven, but to them it has not been given. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> For to those who have, more will be given, and they will have an abundance; but from those who have nothing, even what they have will be taken away.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The reason I speak to them in parables is that 'seeing they do not perceive, and hearing they do not listen, nor do they understand.'</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> With them indeed is fulfilled the prophecy of Isaiah that says: 'You will indeed listen, but never understand, and you will indeed look, but never perceive.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> For this people's heart has grown dull, and their ears are hard of hearing, and they have shut their eyes; so that they might not look with their eyes, and listen with their ears, and understand with their heart and turn-- and I would heal them.'</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> But blessed are your eyes, for they see, and your ears, for they hear.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Truly I tell you, many prophets and righteous people longed to see what you see, but did not see it, and to hear what you hear, but did not hear it.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> \"Hear then the parable of the sower.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> When anyone hears the word of the kingdom and does not understand it, the evil one comes and snatches away what is sown in the heart; this is what was sown on the path.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> As for what was sown on rocky ground, this is the one who hears the word and immediately receives it with joy;</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> yet such a person has no root, but endures only for a while, and when trouble or persecution arises on account of the word, that person immediately falls away. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> As for what was sown among thorns, this is the one who hears the word, but the cares of the world and the lure of wealth choke the word, and it yields nothing.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> But as for what was sown on good soil, this is the one who hears the word and understands it, who indeed bears fruit and yields, in one case a hundredfold, in another sixty, and in another thirty.\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> He put before them another parable: \"The kingdom of heaven may be compared to someone who sowed good seed in his field;</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> but while everybody was asleep, an enemy came and sowed weeds among the wheat, and then went away.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> So when the plants came up and bore grain, then the weeds appeared as well.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> And the slaves of the householder came and said to him, 'Master, did you not sow good seed in your field? Where, then, did these weeds come from?'</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> He answered, 'An enemy has done this.' The slaves said to him, 'Then do you want us to go and gather them?'</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> But he replied, 'No; for in gathering the weeds you would uproot the wheat along with them.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Let both of them grow together until the harvest; and at harvest time I will tell the reapers, Collect the weeds first and bind them in bundles to be burned, but gather the wheat into my barn.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> He put before them another parable: \"The kingdom of heaven is like a mustard seed that someone took and sowed in his field;</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> it is the smallest of all the seeds, but when it has grown it is the greatest of shrubs and becomes a tree, so that the birds of the air come and make nests in its branches.\"</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> He told them another parable: \"The kingdom of heaven is like yeast that a woman took and mixed in with three measures of flour until all of it was leavened.\" </VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Jesus told the crowds all these things in parables; without a parable he told them nothing.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> This was to fulfill what had been spoken through the prophet: \"I will open my mouth to speak in parables; I will proclaim what has been hidden from the foundation of the world.\" </VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Then he left the crowds and went into the house. And his disciples approached him, saying, \"Explain to us the parable of the weeds of the field.\"</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> He answered, \"The one who sows the good seed is the Son of Man;</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> the field is the world, and the good seed are the children of the kingdom; the weeds are the children of the evil one,</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> and the enemy who sowed them is the devil; the harvest is the end of the age, and the reapers are angels.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> Just as the weeds are collected and burned up with fire, so will it be at the end of the age.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> The Son of Man will send his angels, and they will collect out of his kingdom all causes of sin and all evildoers,</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> and they will throw them into the furnace of fire, where there will be weeping and gnashing of teeth.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> Then the righteous will shine like the sun in the kingdom of their Father. Let anyone with ears listen! </VERS>\r\n\t\t\t<VERS vnumber=\"44\"> \"The kingdom of heaven is like treasure hidden in a field, which someone found and hid; then in his joy he goes and sells all that he has and buys that field.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> \"Again, the kingdom of heaven is like a merchant in search of fine pearls;</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> on finding one pearl of great value, he went and sold all that he had and bought it.</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> \"Again, the kingdom of heaven is like a net that was thrown into the sea and caught fish of every kind;</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> when it was full, they drew it ashore, sat down, and put the good into baskets but threw out the bad.</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> So it will be at the end of the age. The angels will come out and separate the evil from the righteous</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> and throw them into the furnace of fire, where there will be weeping and gnashing of teeth.</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> \"Have you understood all this?\" They answered, \"Yes.\"</VERS>\r\n\t\t\t<VERS vnumber=\"52\"> And he said to them, \"Therefore every scribe who has been trained for the kingdom of heaven is like the master of a household who brings out of his treasure what is new and what is old.\"</VERS>\r\n\t\t\t<VERS vnumber=\"53\"> When Jesus had finished these parables, he left that place.</VERS>\r\n\t\t\t<VERS vnumber=\"54\"> He came to his hometown and began to teach the people in their synagogue, so that they were astounded and said, \"Where did this man get this wisdom and these deeds of power? </VERS>\r\n\t\t\t<VERS vnumber=\"55\"> Is not this the carpenter's son? Is not his mother called Mary? And are not his brothers James and Joseph and Simon and Judas?</VERS>\r\n\t\t\t<VERS vnumber=\"56\"> And are not all his sisters with us? Where then did this man get all this?\"</VERS>\r\n\t\t\t<VERS vnumber=\"57\"> And they took offense at him. But Jesus said to them, \"Prophets are not without honor except in their own country and in their own house.\"</VERS>\r\n\t\t\t<VERS vnumber=\"58\"> And he did not do many deeds of power there, because of their unbelief.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"14\">\r\n\t\t\t<VERS vnumber=\"1\"> At that time Herod the ruler heard reports about Jesus; </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> and he said to his servants, \"This is John the Baptist; he has been raised from the dead, and for this reason these powers are at work in him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For Herod had arrested John, bound him, and put him in prison on account of Herodias, his brother Philip's wife, </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> because John had been telling him, \"It is not lawful for you to have her.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Though Herod wanted to put him to death, he feared the crowd, because they regarded him as a prophet. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> But when Herod's birthday came, the daughter of Herodias danced before the company, and she pleased Herod</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> so much that he promised on oath to grant her whatever she might ask.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Prompted by her mother, she said, \"Give me the head of John the Baptist here on a platter.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The king was grieved, yet out of regard for his oaths and for the guests, he commanded it to be given;</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> he sent and had John beheaded in the prison.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The head was brought on a platter and given to the girl, who brought it to her mother.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> His disciples came and took the body and buried it; then they went and told Jesus.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Now when Jesus heard this, he withdrew from there in a boat to a deserted place by himself. But when the crowds heard it, they followed him on foot from the towns.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> When he went ashore, he saw a great crowd; and he had compassion for them and cured their sick.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> When it was evening, the disciples came to him and said, \"This is a deserted place, and the hour is now late; send the crowds away so that they may go into the villages and buy food for themselves.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Jesus said to them, \"They need not go away; you give them something to eat.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> They replied, \"We have nothing here but five loaves and two fish.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> And he said, \"Bring them here to me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Then he ordered the crowds to sit down on the grass. Taking the five loaves and the two fish, he looked up to heaven, and blessed and broke the loaves, and gave them to the disciples, and the disciples gave them to the crowds.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> And all ate and were filled; and they took up what was left over of the broken pieces, twelve baskets full.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> And those who ate were about five thousand men, besides women and children.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Immediately he made the disciples get into the boat and go on ahead to the other side, while he dismissed the crowds.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> And after he had dismissed the crowds, he went up the mountain by himself to pray. When evening came, he was there alone,</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> but by this time the boat, battered by the waves, was far from the land, for the wind was against them. </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> And early in the morning he came walking toward them on the sea.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> But when the disciples saw him walking on the sea, they were terrified, saying, \"It is a ghost!\" And they cried out in fear.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> But immediately Jesus spoke to them and said, \"Take heart, it is I; do not be afraid.\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Peter answered him, \"Lord, if it is you, command me to come to you on the water.\"</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> He said, \"Come.\" So Peter got out of the boat, started walking on the water, and came toward Jesus.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> But when he noticed the strong wind, he became frightened, and beginning to sink, he cried out, \"Lord, save me!\" </VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Jesus immediately reached out his hand and caught him, saying to him, \"You of little faith, why did you doubt?\"</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> When they got into the boat, the wind ceased.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> And those in the boat worshiped him, saying, \"Truly you are the Son of God.\"</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> When they had crossed over, they came to land at Gennesaret.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> After the people of that place recognized him, they sent word throughout the region and brought all who were sick to him,</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> and begged him that they might touch even the fringe of his cloak; and all who touched it were healed.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"15\">\r\n\t\t\t<VERS vnumber=\"1\"> Then Pharisees and scribes came to Jesus from Jerusalem and said,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"Why do your disciples break the tradition of the elders? For they do not wash their hands before they eat.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> He answered them, \"And why do you break the commandment of God for the sake of your tradition?</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For God said, 'Honor your father and your mother,' and, 'Whoever speaks evil of father or mother must surely die.' </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> But you say that whoever tells father or mother, 'Whatever support you might have had from me is given to God,' then that person need not honor the father. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> So, for the sake of your tradition, you make void the word of God. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> You hypocrites! Isaiah prophesied rightly about you when he said:</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> 'This people honors me with their lips, but their hearts are far from me;</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> in vain do they worship me, teaching human precepts as doctrines.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then he called the crowd to him and said to them, \"Listen and understand:</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> it is not what goes into the mouth that defiles a person, but it is what comes out of the mouth that defiles.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then the disciples approached and said to him, \"Do you know that the Pharisees took offense when they heard what you said?\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> He answered, \"Every plant that my heavenly Father has not planted will be uprooted.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Let them alone; they are blind guides of the blind. And if one blind person guides another, both will fall into a pit.\" </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> But Peter said to him, \"Explain this parable to us.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then he said, \"Are you also still without understanding?</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Do you not see that whatever goes into the mouth enters the stomach, and goes out into the sewer?</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> But what comes out of the mouth proceeds from the heart, and this is what defiles.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> For out of the heart come evil intentions, murder, adultery, fornication, theft, false witness, slander.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> These are what defile a person, but to eat with unwashed hands does not defile.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Jesus left that place and went away to the district of Tyre and Sidon.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Just then a Canaanite woman from that region came out and started shouting, \"Have mercy on me, Lord, Son of David; my daughter is tormented by a demon.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> But he did not answer her at all. And his disciples came and urged him, saying, \"Send her away, for she keeps shouting after us.\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> He answered, \"I was sent only to the lost sheep of the house of Israel.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> But she came and knelt before him, saying, \"Lord, help me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> He answered, \"It is not fair to take the children's food and throw it to the dogs.\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> She said, \"Yes, Lord, yet even the dogs eat the crumbs that fall from their masters' table.\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Then Jesus answered her, \"Woman, great is your faith! Let it be done for you as you wish.\" And her daughter was healed instantly.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> After Jesus had left that place, he passed along the Sea of Galilee, and he went up the mountain, where he sat down.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Great crowds came to him, bringing with them the lame, the maimed, the blind, the mute, and many others. They put them at his feet, and he cured them,</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> so that the crowd was amazed when they saw the mute speaking, the maimed whole, the lame walking, and the blind seeing. And they praised the God of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Then Jesus called his disciples to him and said, \"I have compassion for the crowd, because they have been with me now for three days and have nothing to eat; and I do not want to send them away hungry, for they might faint on the way.\"</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> The disciples said to him, \"Where are we to get enough bread in the desert to feed so great a crowd?\"</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Jesus asked them, \"How many loaves have you?\" They said, \"Seven, and a few small fish.\"</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Then ordering the crowd to sit down on the ground,</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> he took the seven loaves and the fish; and after giving thanks he broke them and gave them to the disciples, and the disciples gave them to the crowds.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> And all of them ate and were filled; and they took up the broken pieces left over, seven baskets full.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Those who had eaten were four thousand men, besides women and children.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> After sending away the crowds, he got into the boat and went to the region of Magadan. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"16\">\r\n\t\t\t<VERS vnumber=\"1\"> The Pharisees and Sadducees came, and to test Jesus they asked him to show them a sign from heaven.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He answered them, \"When it is evening, you say, 'It will be fair weather, for the sky is red.'</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And in the morning, 'It will be stormy today, for the sky is red and threatening.' You know how to interpret the appearance of the sky, but you cannot interpret the signs of the times. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> An evil and adulterous generation asks for a sign, but no sign will be given to it except the sign of Jonah.\" Then he left them and went away.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> When the disciples reached the other side, they had forgotten to bring any bread.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Jesus said to them, \"Watch out, and beware of the yeast of the Pharisees and Sadducees.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> They said to one another, \"It is because we have brought no bread.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And becoming aware of it, Jesus said, \"You of little faith, why are you talking about having no bread?</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Do you still not perceive? Do you not remember the five loaves for the five thousand, and how many baskets you gathered?</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Or the seven loaves for the four thousand, and how many baskets you gathered?</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> How could you fail to perceive that I was not speaking about bread? Beware of the yeast of the Pharisees and Sadducees!\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then they understood that he had not told them to beware of the yeast of bread, but of the teaching of the Pharisees and Sadducees.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Now when Jesus came into the district of Caesarea Philippi, he asked his disciples, \"Who do people say that the Son of Man is?\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> And they said, \"Some say John the Baptist, but others Elijah, and still others Jeremiah or one of the prophets.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> He said to them, \"But who do you say that I am?\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Simon Peter answered, \"You are the Messiah, the Son of the living God.\" </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> And Jesus answered him, \"Blessed are you, Simon son of Jonah! For flesh and blood has not revealed this to you, but my Father in heaven.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> And I tell you, you are Peter, and on this rock I will build my church, and the gates of Hades will not prevail against it. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> I will give you the keys of the kingdom of heaven, and whatever you bind on earth will be bound in heaven, and whatever you loose on earth will be loosed in heaven.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Then he sternly ordered the disciples not to tell anyone that he was the Messiah. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> From that time on, Jesus began to show his disciples that he must go to Jerusalem and undergo great suffering at the hands of the elders and chief priests and scribes, and be killed, and on the third day be raised.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> And Peter took him aside and began to rebuke him, saying, \"God forbid it, Lord! This must never happen to you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> But he turned and said to Peter, \"Get behind me, Satan! You are a stumbling block to me; for you are setting your mind not on divine things but on human things.\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Then Jesus told his disciples, \"If any want to become my followers, let them deny themselves and take up their cross and follow me.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> For those who want to save their life will lose it, and those who lose their life for my sake will find it.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> For what will it profit them if they gain the whole world but forfeit their life? Or what will they give in return for their life?</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> \"For the Son of Man is to come with his angels in the glory of his Father, and then he will repay everyone for what has been done.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Truly I tell you, there are some standing here who will not taste death before they see the Son of Man coming in his kingdom.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"17\">\r\n\t\t\t<VERS vnumber=\"1\"> Six days later, Jesus took with him Peter and James and his brother John and led them up a high mountain, by themselves.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And he was transfigured before them, and his face shone like the sun, and his clothes became dazzling white.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Suddenly there appeared to them Moses and Elijah, talking with him.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then Peter said to Jesus, \"Lord, it is good for us to be here; if you wish, I will make three dwellings here, one for you, one for Moses, and one for Elijah.\" </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> While he was still speaking, suddenly a bright cloud overshadowed them, and from the cloud a voice said, \"This is my Son, the Beloved; with him I am well pleased; listen to him!\" </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> When the disciples heard this, they fell to the ground and were overcome by fear.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But Jesus came and touched them, saying, \"Get up and do not be afraid.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And when they looked up, they saw no one except Jesus himself alone.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> As they were coming down the mountain, Jesus ordered them, \"Tell no one about the vision until after the Son of Man has been raised from the dead.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And the disciples asked him, \"Why, then, do the scribes say that Elijah must come first?\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> He replied, \"Elijah is indeed coming and will restore all things;</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> but I tell you that Elijah has already come, and they did not recognize him, but they did to him whatever they pleased. So also the Son of Man is about to suffer at their hands.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then the disciples understood that he was speaking to them about John the Baptist.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> When they came to the crowd, a man came to him, knelt before him,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> and said, \"Lord, have mercy on my son, for he is an epileptic and he suffers terribly; he often falls into the fire and often into the water.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> And I brought him to your disciples, but they could not cure him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Jesus answered, \"You faithless and perverse generation, how much longer must I be with you? How much longer must I put up with you? Bring him here to me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> And Jesus rebuked the demon, and it came out of him, and the boy was cured instantly. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Then the disciples came to Jesus privately and said, \"Why could we not cast it out?\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> He said to them, \"Because of your little faith. For truly I tell you, if you have faith the size of a mustard seed, you will say to this mountain, 'Move from here to there,' and it will move; and nothing will be impossible for you.\" </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> As they were gathering in Galilee, Jesus said to them, \"The Son of Man is going to be betrayed into human hands,</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> and they will kill him, and on the third day he will be raised.\" And they were greatly distressed.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> When they reached Capernaum, the collectors of the temple tax came to Peter and said, \"Does your teacher not pay the temple tax?\" </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> He said, \"Yes, he does.\" And when he came home, Jesus spoke of it first, asking, \"What do you think, Simon? From whom do kings of the earth take toll or tribute? From their children or from others?\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> When Peter said, \"From others,\" Jesus said to him, \"Then the children are free. </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> However, so that we do not give offense to them, go to the sea and cast a hook; take the first fish that comes up; and when you open its mouth, you will find a coin; take that and give it to them for you and me.\" </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"18\">\r\n\t\t\t<VERS vnumber=\"1\"> At that time the disciples came to Jesus and asked, \"Who is the greatest in the kingdom of heaven?\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He called a child, whom he put among them,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> and said, \"Truly I tell you, unless you change and become like children, you will never enter the kingdom of heaven.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Whoever becomes humble like this child is the greatest in the kingdom of heaven.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Whoever welcomes one such child in my name welcomes me.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> \"If any of you put a stumbling block before one of these little ones who believe in me, it would be better for you if a great millstone were fastened around your neck and you were drowned in the depth of the sea.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Woe to the world because of stumbling blocks! Occasions for stumbling are bound to come, but woe to the one by whom the stumbling block comes!</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> \"If your hand or your foot causes you to stumble, cut it off and throw it away; it is better for you to enter life maimed or lame than to have two hands or two feet and to be thrown into the eternal fire.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> And if your eye causes you to stumble, tear it out and throw it away; it is better for you to enter life with one eye than to have two eyes and to be thrown into the hell of fire. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> \"Take care that you do not despise one of these little ones; for, I tell you, in heaven their angels continually see the face of my Father in heaven. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> What do you think? If a shepherd has a hundred sheep, and one of them has gone astray, does he not leave the ninety-nine on the mountains and go in search of the one that went astray?</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And if he finds it, truly I tell you, he rejoices over it more than over the ninety-nine that never went astray.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> So it is not the will of your Father in heaven that one of these little ones should be lost. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> \"If another member of the church sins against you, go and point out the fault when the two of you are alone. If the member listens to you, you have regained that one. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> But if you are not listened to, take one or two others along with you, so that every word may be confirmed by the evidence of two or three witnesses.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> If the member refuses to listen to them, tell it to the church; and if the offender refuses to listen even to the church, let such a one be to you as a Gentile and a tax collector.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Truly I tell you, whatever you bind on earth will be bound in heaven, and whatever you loose on earth will be loosed in heaven.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Again, truly I tell you, if two of you agree on earth about anything you ask, it will be done for you by my Father in heaven.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> For where two or three are gathered in my name, I am there among them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then Peter came and said to him, \"Lord, if another member of the church sins against me, how often should I forgive? As many as seven times?\" </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Jesus said to him, \"Not seven times, but, I tell you, seventy-seven times. </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> \"For this reason the kingdom of heaven may be compared to a king who wished to settle accounts with his slaves.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> When he began the reckoning, one who owed him ten thousand talents was brought to him; </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> and, as he could not pay, his lord ordered him to be sold, together with his wife and children and all his possessions, and payment to be made.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> So the slave fell on his knees before him, saying, 'Have patience with me, and I will pay you everything.'</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> And out of pity for him, the lord of that slave released him and forgave him the debt.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> But that same slave, as he went out, came upon one of his fellow slaves who owed him a hundred denarii; and seizing him by the throat, he said, 'Pay what you owe.' </VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Then his fellow slave fell down and pleaded with him, 'Have patience with me, and I will pay you.'</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> But he refused; then he went and threw him into prison until he would pay the debt.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> When his fellow slaves saw what had happened, they were greatly distressed, and they went and reported to their lord all that had taken place.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Then his lord summoned him and said to him, 'You wicked slave! I forgave you all that debt because you pleaded with me.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Should you not have had mercy on your fellow slave, as I had mercy on you?'</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> And in anger his lord handed him over to be tortured until he would pay his entire debt.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> So my heavenly Father will also do to every one of you, if you do not forgive your brother or sister from your heart.\" </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"19\">\r\n\t\t\t<VERS vnumber=\"1\"> When Jesus had finished saying these things, he left Galilee and went to the region of Judea beyond the Jordan.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Large crowds followed him, and he cured them there.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Some Pharisees came to him, and to test him they asked, \"Is it lawful for a man to divorce his wife for any cause?\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> He answered, \"Have you not read that the one who made them at the beginning 'made them male and female,'</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> and said, 'For this reason a man shall leave his father and mother and be joined to his wife, and the two shall become one flesh'?</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> So they are no longer two, but one flesh. Therefore what God has joined together, let no one separate.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> They said to him, \"Why then did Moses command us to give a certificate of dismissal and to divorce her?\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> He said to them, \"It was because you were so hard-hearted that Moses allowed you to divorce your wives, but from the beginning it was not so.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> And I say to you, whoever divorces his wife, except for unchastity, and marries another commits adultery.\" </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> His disciples said to him, \"If such is the case of a man with his wife, it is better not to marry.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But he said to them, \"Not everyone can accept this teaching, but only those to whom it is given.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> For there are eunuchs who have been so from birth, and there are eunuchs who have been made eunuchs by others, and there are eunuchs who have made themselves eunuchs for the sake of the kingdom of heaven. Let anyone accept this who can.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then little children were being brought to him in order that he might lay his hands on them and pray. The disciples spoke sternly to those who brought them;</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> but Jesus said, \"Let the little children come to me, and do not stop them; for it is to such as these that the kingdom of heaven belongs.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And he laid his hands on them and went on his way.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then someone came to him and said, \"Teacher, what good deed must I do to have eternal life?\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> And he said to him, \"Why do you ask me about what is good? There is only one who is good. If you wish to enter into life, keep the commandments.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> He said to him, \"Which ones?\" And Jesus said, \"You shall not murder; You shall not commit adultery; You shall not steal; You shall not bear false witness;</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Honor your father and mother; also, You shall love your neighbor as yourself.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The young man said to him, \"I have kept all these; what do I still lack?\" </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Jesus said to him, \"If you wish to be perfect, go, sell your possessions, and give the money to the poor, and you will have treasure in heaven; then come, follow me.\" </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> When the young man heard this word, he went away grieving, for he had many possessions.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Then Jesus said to his disciples, \"Truly I tell you, it will be hard for a rich person to enter the kingdom of heaven.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Again I tell you, it is easier for a camel to go through the eye of a needle than for someone who is rich to enter the kingdom of God.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> When the disciples heard this, they were greatly astounded and said, \"Then who can be saved?\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> But Jesus looked at them and said, \"For mortals it is impossible, but for God all things are possible.\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Then Peter said in reply, \"Look, we have left everything and followed you. What then will we have?\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Jesus said to them, \"Truly I tell you, at the renewal of all things, when the Son of Man is seated on the throne of his glory, you who have followed me will also sit on twelve thrones, judging the twelve tribes of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> And everyone who has left houses or brothers or sisters or father or mother or children or fields, for my name's sake, will receive a hundredfold, and will inherit eternal life. </VERS>\r\n\t\t\t<VERS vnumber=\"30\"> But many who are first will be last, and the last will be first.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"20\">\r\n\t\t\t<VERS vnumber=\"1\"> \"For the kingdom of heaven is like a landowner who went out early in the morning to hire laborers for his vineyard.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> After agreeing with the laborers for the usual daily wage, he sent them into his vineyard. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> When he went out about nine o'clock, he saw others standing idle in the marketplace;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> and he said to them, 'You also go into the vineyard, and I will pay you whatever is right.' So they went.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> When he went out again about noon and about three o'clock, he did the same.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And about five o'clock he went out and found others standing around; and he said to them, 'Why are you standing here idle all day?'</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> They said to him, 'Because no one has hired us.' He said to them, 'You also go into the vineyard.'</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> When evening came, the owner of the vineyard said to his manager, 'Call the laborers and give them their pay, beginning with the last and then going to the first.'</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> When those hired about five o'clock came, each of them received the usual daily wage. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Now when the first came, they thought they would receive more; but each of them also received the usual daily wage. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> And when they received it, they grumbled against the landowner,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> saying, 'These last worked only one hour, and you have made them equal to us who have borne the burden of the day and the scorching heat.'</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> But he replied to one of them, 'Friend, I am doing you no wrong; did you not agree with me for the usual daily wage? </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Take what belongs to you and go; I choose to give to this last the same as I give to you.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Am I not allowed to do what I choose with what belongs to me? Or are you envious because I am generous?' </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> So the last will be first, and the first will be last.\" </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> While Jesus was going up to Jerusalem, he took the twelve disciples aside by themselves, and said to them on the way,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> \"See, we are going up to Jerusalem, and the Son of Man will be handed over to the chief priests and scribes, and they will condemn him to death;</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> then they will hand him over to the Gentiles to be mocked and flogged and crucified; and on the third day he will be raised.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Then the mother of the sons of Zebedee came to him with her sons, and kneeling before him, she asked a favor of him.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> And he said to her, \"What do you want?\" She said to him, \"Declare that these two sons of mine will sit, one at your right hand and one at your left, in your kingdom.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> But Jesus answered, \"You do not know what you are asking. Are you able to drink the cup that I am about to drink?\" They said to him, \"We are able.\" </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> He said to them, \"You will indeed drink my cup, but to sit at my right hand and at my left, this is not mine to grant, but it is for those for whom it has been prepared by my Father.\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> When the ten heard it, they were angry with the two brothers.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> But Jesus called them to him and said, \"You know that the rulers of the Gentiles lord it over them, and their great ones are tyrants over them.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> It will not be so among you; but whoever wishes to be great among you must be your servant,</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> and whoever wishes to be first among you must be your slave;</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> just as the Son of Man came not to be served but to serve, and to give his life a ransom for many.\"</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> As they were leaving Jericho, a large crowd followed him.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> There were two blind men sitting by the roadside. When they heard that Jesus was passing by, they shouted, \"Lord, have mercy on us, Son of David!\" </VERS>\r\n\t\t\t<VERS vnumber=\"31\"> The crowd sternly ordered them to be quiet; but they shouted even more loudly, \"Have mercy on us, Lord, Son of David!\"</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Jesus stood still and called them, saying, \"What do you want me to do for you?\"</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> They said to him, \"Lord, let our eyes be opened.\"</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Moved with compassion, Jesus touched their eyes. Immediately they regained their sight and followed him.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"21\">\r\n\t\t\t<VERS vnumber=\"1\"> When they had come near Jerusalem and had reached Bethphage, at the Mount of Olives, Jesus sent two disciples,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> saying to them, \"Go into the village ahead of you, and immediately you will find a donkey tied, and a colt with her; untie them and bring them to me.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> If anyone says anything to you, just say this, 'The Lord needs them.' And he will send them immediately. \" </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> This took place to fulfill what had been spoken through the prophet, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> \"Tell the daughter of Zion, Look, your king is coming to you, humble, and mounted on a donkey, and on a colt, the foal of a donkey.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The disciples went and did as Jesus had directed them;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> they brought the donkey and the colt, and put their cloaks on them, and he sat on them.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> A very large crowd spread their cloaks on the road, and others cut branches from the trees and spread them on the road. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The crowds that went ahead of him and that followed were shouting, \"Hosanna to the Son of David! Blessed is the one who comes in the name of the Lord! Hosanna in the highest heaven!\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> When he entered Jerusalem, the whole city was in turmoil, asking, \"Who is this?\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The crowds were saying, \"This is the prophet Jesus from Nazareth in Galilee.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then Jesus entered the temple and drove out all who were selling and buying in the temple, and he overturned the tables of the money changers and the seats of those who sold doves.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> He said to them, \"It is written, 'My house shall be called a house of prayer'; but you are making it a den of robbers.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The blind and the lame came to him in the temple, and he cured them.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> But when the chief priests and the scribes saw the amazing things that he did, and heard the children crying out in the temple, \"Hosanna to the Son of David,\" they became angry </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> and said to him, \"Do you hear what these are saying?\" Jesus said to them, \"Yes; have you never read, 'Out of the mouths of infants and nursing babies you have prepared praise for yourself'?\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> He left them, went out of the city to Bethany, and spent the night there.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> In the morning, when he returned to the city, he was hungry.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> And seeing a fig tree by the side of the road, he went to it and found nothing at all on it but leaves. Then he said to it, \"May no fruit ever come from you again!\" And the fig tree withered at once.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> When the disciples saw it, they were amazed, saying, \"How did the fig tree wither at once?\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Jesus answered them, \"Truly I tell you, if you have faith and do not doubt, not only will you do what has been done to the fig tree, but even if you say to this mountain, 'Be lifted up and thrown into the sea,' it will be done.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Whatever you ask for in prayer with faith, you will receive.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> When he entered the temple, the chief priests and the elders of the people came to him as he was teaching, and said, \"By what authority are you doing these things, and who gave you this authority?\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Jesus said to them, \"I will also ask you one question; if you tell me the answer, then I will also tell you by what authority I do these things.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Did the baptism of John come from heaven, or was it of human origin?\" And they argued with one another, \"If we say, 'From heaven,' he will say to us, 'Why then did you not believe him?'</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> But if we say, 'Of human origin,' we are afraid of the crowd; for all regard John as a prophet.\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> So they answered Jesus, \"We do not know.\" And he said to them, \"Neither will I tell you by what authority I am doing these things.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> \"What do you think? A man had two sons; he went to the first and said, 'Son, go and work in the vineyard today.'</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> He answered, 'I will not'; but later he changed his mind and went.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> The father went to the second and said the same; and he answered, 'I go, sir'; but he did not go. </VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Which of the two did the will of his father?\" They said, \"The first.\" Jesus said to them, \"Truly I tell you, the tax collectors and the prostitutes are going into the kingdom of God ahead of you.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> For John came to you in the way of righteousness and you did not believe him, but the tax collectors and the prostitutes believed him; and even after you saw it, you did not change your minds and believe him.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> \"Listen to another parable. There was a landowner who planted a vineyard, put a fence around it, dug a wine press in it, and built a watchtower. Then he leased it to tenants and went to another country.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> When the harvest time had come, he sent his slaves to the tenants to collect his produce.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> But the tenants seized his slaves and beat one, killed another, and stoned another.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Again he sent other slaves, more than the first; and they treated them in the same way.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Finally he sent his son to them, saying, 'They will respect my son.'</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> But when the tenants saw the son, they said to themselves, 'This is the heir; come, let us kill him and get his inheritance.'</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> So they seized him, threw him out of the vineyard, and killed him.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> Now when the owner of the vineyard comes, what will he do to those tenants?\"</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> They said to him, \"He will put those wretches to a miserable death, and lease the vineyard to other tenants who will give him the produce at the harvest time.\"</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> Jesus said to them, \"Have you never read in the scriptures: 'The stone that the builders rejected has become the cornerstone; this was the Lord's doing, and it is amazing in our eyes'? </VERS>\r\n\t\t\t<VERS vnumber=\"43\"> Therefore I tell you, the kingdom of God will be taken away from you and given to a people that produces the fruits of the kingdom. </VERS>\r\n\t\t\t<VERS vnumber=\"44\"> The one who falls on this stone will be broken to pieces; and it will crush anyone on whom it falls.\" </VERS>\r\n\t\t\t<VERS vnumber=\"45\"> When the chief priests and the Pharisees heard his parables, they realized that he was speaking about them.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> They wanted to arrest him, but they feared the crowds, because they regarded him as a prophet.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"22\">\r\n\t\t\t<VERS vnumber=\"1\"> Once more Jesus spoke to them in parables, saying:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"The kingdom of heaven may be compared to a king who gave a wedding banquet for his son.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> He sent his slaves to call those who had been invited to the wedding banquet, but they would not come.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Again he sent other slaves, saying, 'Tell those who have been invited: Look, I have prepared my dinner, my oxen and my fat calves have been slaughtered, and everything is ready; come to the wedding banquet.'</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> But they made light of it and went away, one to his farm, another to his business,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> while the rest seized his slaves, mistreated them, and killed them.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The king was enraged. He sent his troops, destroyed those murderers, and burned their city.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then he said to his slaves, 'The wedding is ready, but those invited were not worthy.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Go therefore into the main streets, and invite everyone you find to the wedding banquet.'</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Those slaves went out into the streets and gathered all whom they found, both good and bad; so the wedding hall was filled with guests.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> \"But when the king came in to see the guests, he noticed a man there who was not wearing a wedding robe,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> and he said to him, 'Friend, how did you get in here without a wedding robe?' And he was speechless.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then the king said to the attendants, 'Bind him hand and foot, and throw him into the outer darkness, where there will be weeping and gnashing of teeth.'</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> For many are called, but few are chosen.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Then the Pharisees went and plotted to entrap him in what he said.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> So they sent their disciples to him, along with the Herodians, saying, \"Teacher, we know that you are sincere, and teach the way of God in accordance with truth, and show deference to no one; for you do not regard people with partiality.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Tell us, then, what you think. Is it lawful to pay taxes to the emperor, or not?\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> But Jesus, aware of their malice, said, \"Why are you putting me to the test, you hypocrites?</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Show me the coin used for the tax.\" And they brought him a denarius.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Then he said to them, \"Whose head is this, and whose title?\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> They answered, \"The emperor's.\" Then he said to them, \"Give therefore to the emperor the things that are the emperor's, and to God the things that are God's.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> When they heard this, they were amazed; and they left him and went away.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> The same day some Sadducees came to him, saying there is no resurrection; and they asked him a question, saying, </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> \"Teacher, Moses said, 'If a man dies childless, his brother shall marry the widow, and raise up children for his brother.'</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Now there were seven brothers among us; the first married, and died childless, leaving the widow to his brother.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> The second did the same, so also the third, down to the seventh.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Last of all, the woman herself died.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> In the resurrection, then, whose wife of the seven will she be? For all of them had married her.\"</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Jesus answered them, \"You are wrong, because you know neither the scriptures nor the power of God.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> For in the resurrection they neither marry nor are given in marriage, but are like angels in heaven. </VERS>\r\n\t\t\t<VERS vnumber=\"31\"> And as for the resurrection of the dead, have you not read what was said to you by God,</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> 'I am the God of Abraham, the God of Isaac, and the God of Jacob'? He is God not of the dead, but of the living.\"</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> And when the crowd heard it, they were astounded at his teaching.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> When the Pharisees heard that he had silenced the Sadducees, they gathered together,</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> and one of them, a lawyer, asked him a question to test him.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> \"Teacher, which commandment in the law is the greatest?\"</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> He said to him, \"'You shall love the Lord your God with all your heart, and with all your soul, and with all your mind.'</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> This is the greatest and first commandment.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> And a second is like it: 'You shall love your neighbor as yourself.'</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> On these two commandments hang all the law and the prophets.\"</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> Now while the Pharisees were gathered together, Jesus asked them this question:</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> \"What do you think of the Messiah? Whose son is he?\" They said to him, \"The son of David.\" </VERS>\r\n\t\t\t<VERS vnumber=\"43\"> He said to them, \"How is it then that David by the Spirit calls him Lord, saying, </VERS>\r\n\t\t\t<VERS vnumber=\"44\"> 'The Lord said to my Lord, \"Sit at my right hand, until I put your enemies under your feet\" '?</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> If David thus calls him Lord, how can he be his son?\"</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> No one was able to give him an answer, nor from that day did anyone dare to ask him any more questions.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"23\">\r\n\t\t\t<VERS vnumber=\"1\"> Then Jesus said to the crowds and to his disciples,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"The scribes and the Pharisees sit on Moses' seat;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> therefore, do whatever they teach you and follow it; but do not do as they do, for they do not practice what they teach.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> They tie up heavy burdens, hard to bear, and lay them on the shoulders of others; but they themselves are unwilling to lift a finger to move them. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> They do all their deeds to be seen by others; for they make their phylacteries broad and their fringes long.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> They love to have the place of honor at banquets and the best seats in the synagogues,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> and to be greeted with respect in the marketplaces, and to have people call them rabbi.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But you are not to be called rabbi, for you have one teacher, and you are all students. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> And call no one your father on earth, for you have one Father-- the one in heaven.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Nor are you to be called instructors, for you have one instructor, the Messiah.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The greatest among you will be your servant.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> All who exalt themselves will be humbled, and all who humble themselves will be exalted.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> \"But woe to you, scribes and Pharisees, hypocrites! For you lock people out of the kingdom of heaven. For you do not go in yourselves, and when others are going in, you stop them. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Woe to you, scribes and Pharisees, hypocrites! For you cross sea and land to make a single convert, and you make the new convert twice as much a child of hell as yourselves. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> \"Woe to you, blind guides, who say, 'Whoever swears by the sanctuary is bound by nothing, but whoever swears by the gold of the sanctuary is bound by the oath.'</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> You blind fools! For which is greater, the gold or the sanctuary that has made the gold sacred?</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> And you say, 'Whoever swears by the altar is bound by nothing, but whoever swears by the gift that is on the altar is bound by the oath.'</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> How blind you are! For which is greater, the gift or the altar that makes the gift sacred?</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> So whoever swears by the altar, swears by it and by everything on it;</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> and whoever swears by the sanctuary, swears by it and by the one who dwells in it;</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> and whoever swears by heaven, swears by the throne of God and by the one who is seated upon it.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> \"Woe to you, scribes and Pharisees, hypocrites! For you tithe mint, dill, and cummin, and have neglected the weightier matters of the law: justice and mercy and faith. It is these you ought to have practiced without neglecting the others.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> You blind guides! You strain out a gnat but swallow a camel!</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> \"Woe to you, scribes and Pharisees, hypocrites! For you clean the outside of the cup and of the plate, but inside they are full of greed and self-indulgence.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> You blind Pharisee! First clean the inside of the cup, so that the outside also may become clean. </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> \"Woe to you, scribes and Pharisees, hypocrites! For you are like whitewashed tombs, which on the outside look beautiful, but inside they are full of the bones of the dead and of all kinds of filth.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> So you also on the outside look righteous to others, but inside you are full of hypocrisy and lawlessness.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> \"Woe to you, scribes and Pharisees, hypocrites! For you build the tombs of the prophets and decorate the graves of the righteous,</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> and you say, 'If we had lived in the days of our ancestors, we would not have taken part with them in shedding the blood of the prophets.'</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Thus you testify against yourselves that you are descendants of those who murdered the prophets.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Fill up, then, the measure of your ancestors.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> You snakes, you brood of vipers! How can you escape being sentenced to hell? </VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Therefore I send you prophets, sages, and scribes, some of whom you will kill and crucify, and some you will flog in your synagogues and pursue from town to town,</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> so that upon you may come all the righteous blood shed on earth, from the blood of righteous Abel to the blood of Zechariah son of Barachiah, whom you murdered between the sanctuary and the altar.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Truly I tell you, all this will come upon this generation.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> \"Jerusalem, Jerusalem, the city that kills the prophets and stones those who are sent to it! How often have I desired to gather your children together as a hen gathers her brood under her wings, and you were not willing!</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> See, your house is left to you, desolate. </VERS>\r\n\t\t\t<VERS vnumber=\"39\"> For I tell you, you will not see me again until you say, 'Blessed is the one who comes in the name of the Lord.'\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"24\">\r\n\t\t\t<VERS vnumber=\"1\"> As Jesus came out of the temple and was going away, his disciples came to point out to him the buildings of the temple.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Then he asked them, \"You see all these, do you not? Truly I tell you, not one stone will be left here upon another; all will be thrown down.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> When he was sitting on the Mount of Olives, the disciples came to him privately, saying, \"Tell us, when will this be, and what will be the sign of your coming and of the end of the age?\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Jesus answered them, \"Beware that no one leads you astray.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> For many will come in my name, saying, 'I am the Messiah!' and they will lead many astray. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And you will hear of wars and rumors of wars; see that you are not alarmed; for this must take place, but the end is not yet.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> For nation will rise against nation, and kingdom against kingdom, and there will be famines and earthquakes in various places: </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> all this is but the beginning of the birth pangs.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> \"Then they will hand you over to be tortured and will put you to death, and you will be hated by all nations because of my name.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then many will fall away, and they will betray one another and hate one another. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> And many false prophets will arise and lead many astray.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> And because of the increase of lawlessness, the love of many will grow cold.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> But the one who endures to the end will be saved.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> And this good news of the kingdom will be proclaimed throughout the world, as a testimony to all the nations; and then the end will come. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> \"So when you see the desolating sacrilege standing in the holy place, as was spoken of by the prophet Daniel (let the reader understand),</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> then those in Judea must flee to the mountains;</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> the one on the housetop must not go down to take what is in the house;</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> the one in the field must not turn back to get a coat.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Woe to those who are pregnant and to those who are nursing infants in those days!</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Pray that your flight may not be in winter or on a sabbath.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> For at that time there will be great suffering, such as has not been from the beginning of the world until now, no, and never will be.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> And if those days had not been cut short, no one would be saved; but for the sake of the elect those days will be cut short.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Then if anyone says to you, 'Look! Here is the Messiah!' or 'There he is!'-- do not believe it.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> For false messiahs and false prophets will appear and produce great signs and omens, to lead astray, if possible, even the elect. </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Take note, I have told you beforehand.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> So, if they say to you, 'Look! He is in the wilderness,' do not go out. If they say, 'Look! He is in the inner rooms,' do not believe it.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> For as the lightning comes from the east and flashes as far as the west, so will be the coming of the Son of Man.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Wherever the corpse is, there the vultures will gather.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> \"Immediately after the suffering of those days the sun will be darkened, and the moon will not give its light; the stars will fall from heaven, and the powers of heaven will be shaken.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Then the sign of the Son of Man will appear in heaven, and then all the tribes of the earth will mourn, and they will see 'the Son of Man coming on the clouds of heaven' with power and great glory.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> And he will send out his angels with a loud trumpet call, and they will gather his elect from the four winds, from one end of heaven to the other.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> \"From the fig tree learn its lesson: as soon as its branch becomes tender and puts forth its leaves, you know that summer is near.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> So also, when you see all these things, you know that he is near, at the very gates. </VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Truly I tell you, this generation will not pass away until all these things have taken place.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Heaven and earth will pass away, but my words will not pass away.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> \"But about that day and hour no one knows, neither the angels of heaven, nor the Son, but only the Father. </VERS>\r\n\t\t\t<VERS vnumber=\"37\"> For as the days of Noah were, so will be the coming of the Son of Man.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> For as in those days before the flood they were eating and drinking, marrying and giving in marriage, until the day Noah entered the ark,</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> and they knew nothing until the flood came and swept them all away, so too will be the coming of the Son of Man.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> Then two will be in the field; one will be taken and one will be left.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> Two women will be grinding meal together; one will be taken and one will be left.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> Keep awake therefore, for you do not know on what day your Lord is coming. </VERS>\r\n\t\t\t<VERS vnumber=\"43\"> But understand this: if the owner of the house had known in what part of the night the thief was coming, he would have stayed awake and would not have let his house be broken into.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> Therefore you also must be ready, for the Son of Man is coming at an unexpected hour.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> \"Who then is the faithful and wise slave, whom his master has put in charge of his household, to give the other slaves their allowance of food at the proper time? </VERS>\r\n\t\t\t<VERS vnumber=\"46\"> Blessed is that slave whom his master will find at work when he arrives.</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> Truly I tell you, he will put that one in charge of all his possessions.</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> But if that wicked slave says to himself, 'My master is delayed,'</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> and he begins to beat his fellow slaves, and eats and drinks with drunkards,</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> the master of that slave will come on a day when he does not expect him and at an hour that he does not know.</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> He will cut him in pieces and put him with the hypocrites, where there will be weeping and gnashing of teeth. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"25\">\r\n\t\t\t<VERS vnumber=\"1\"> \"Then the kingdom of heaven will be like this. Ten bridesmaids took their lamps and went to meet the bridegroom. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Five of them were foolish, and five were wise.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> When the foolish took their lamps, they took no oil with them;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> but the wise took flasks of oil with their lamps.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> As the bridegroom was delayed, all of them became drowsy and slept.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> But at midnight there was a shout, 'Look! Here is the bridegroom! Come out to meet him.'</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then all those bridesmaids got up and trimmed their lamps. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The foolish said to the wise, 'Give us some of your oil, for our lamps are going out.'</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> But the wise replied, 'No! there will not be enough for you and for us; you had better go to the dealers and buy some for yourselves.'</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And while they went to buy it, the bridegroom came, and those who were ready went with him into the wedding banquet; and the door was shut.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Later the other bridesmaids came also, saying, 'Lord, lord, open to us.' </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> But he replied, 'Truly I tell you, I do not know you.'</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Keep awake therefore, for you know neither the day nor the hour. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> \"For it is as if a man, going on a journey, summoned his slaves and entrusted his property to them;</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> to one he gave five talents, to another two, to another one, to each according to his ability. Then he went away.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The one who had received the five talents went off at once and traded with them, and made five more talents.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> In the same way, the one who had the two talents made two more talents.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> But the one who had received the one talent went off and dug a hole in the ground and hid his master's money.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> After a long time the master of those slaves came and settled accounts with them.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Then the one who had received the five talents came forward, bringing five more talents, saying, 'Master, you handed over to me five talents; see, I have made five more talents.'</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> His master said to him, 'Well done, good and trustworthy slave; you have been trustworthy in a few things, I will put you in charge of many things; enter into the joy of your master.'</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> And the one with the two talents also came forward, saying, 'Master, you handed over to me two talents; see, I have made two more talents.'</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> His master said to him, 'Well done, good and trustworthy slave; you have been trustworthy in a few things, I will put you in charge of many things; enter into the joy of your master.'</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Then the one who had received the one talent also came forward, saying, 'Master, I knew that you were a harsh man, reaping where you did not sow, and gathering where you did not scatter seed;</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> so I was afraid, and I went and hid your talent in the ground. Here you have what is yours.'</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> But his master replied, 'You wicked and lazy slave! You knew, did you, that I reap where I did not sow, and gather where I did not scatter?</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Then you ought to have invested my money with the bankers, and on my return I would have received what was my own with interest.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> So take the talent from him, and give it to the one with the ten talents.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> For to all those who have, more will be given, and they will have an abundance; but from those who have nothing, even what they have will be taken away.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> As for this worthless slave, throw him into the outer darkness, where there will be weeping and gnashing of teeth.'</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> \"When the Son of Man comes in his glory, and all the angels with him, then he will sit on the throne of his glory.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> All the nations will be gathered before him, and he will separate people one from another as a shepherd separates the sheep from the goats,</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> and he will put the sheep at his right hand and the goats at the left.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Then the king will say to those at his right hand, 'Come, you that are blessed by my Father, inherit the kingdom prepared for you from the foundation of the world;</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> for I was hungry and you gave me food, I was thirsty and you gave me something to drink, I was a stranger and you welcomed me,</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> I was naked and you gave me clothing, I was sick and you took care of me, I was in prison and you visited me.'</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Then the righteous will answer him, 'Lord, when was it that we saw you hungry and gave you food, or thirsty and gave you something to drink?</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> And when was it that we saw you a stranger and welcomed you, or naked and gave you clothing?</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> And when was it that we saw you sick or in prison and visited you?'</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> And the king will answer them, 'Truly I tell you, just as you did it to one of the least of these who are members of my family, you did it to me.' </VERS>\r\n\t\t\t<VERS vnumber=\"41\"> Then he will say to those at his left hand, 'You that are accursed, depart from me into the eternal fire prepared for the devil and his angels;</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> for I was hungry and you gave me no food, I was thirsty and you gave me nothing to drink,</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> I was a stranger and you did not welcome me, naked and you did not give me clothing, sick and in prison and you did not visit me.'</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> Then they also will answer, 'Lord, when was it that we saw you hungry or thirsty or a stranger or naked or sick or in prison, and did not take care of you?'</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> Then he will answer them, 'Truly I tell you, just as you did not do it to one of the least of these, you did not do it to me.'</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> And these will go away into eternal punishment, but the righteous into eternal life.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"26\">\r\n\t\t\t<VERS vnumber=\"1\"> When Jesus had finished saying all these things, he said to his disciples,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"You know that after two days the Passover is coming, and the Son of Man will be handed over to be crucified.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then the chief priests and the elders of the people gathered in the palace of the high priest, who was called Caiaphas,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> and they conspired to arrest Jesus by stealth and kill him.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> But they said, \"Not during the festival, or there may be a riot among the people.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Now while Jesus was at Bethany in the house of Simon the leper, </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> a woman came to him with an alabaster jar of very costly ointment, and she poured it on his head as he sat at the table.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But when the disciples saw it, they were angry and said, \"Why this waste?</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> For this ointment could have been sold for a large sum, and the money given to the poor.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> But Jesus, aware of this, said to them, \"Why do you trouble the woman? She has performed a good service for me.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> For you always have the poor with you, but you will not always have me.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> By pouring this ointment on my body she has prepared me for burial.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Truly I tell you, wherever this good news is proclaimed in the whole world, what she has done will be told in remembrance of her.\" </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then one of the twelve, who was called Judas Iscariot, went to the chief priests</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> and said, \"What will you give me if I betray him to you?\" They paid him thirty pieces of silver.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> And from that moment he began to look for an opportunity to betray him.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> On the first day of Unleavened Bread the disciples came to Jesus, saying, \"Where do you want us to make the preparations for you to eat the Passover?\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> He said, \"Go into the city to a certain man, and say to him, 'The Teacher says, My time is near; I will keep the Passover at your house with my disciples.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> So the disciples did as Jesus had directed them, and they prepared the Passover meal.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> When it was evening, he took his place with the twelve; </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> and while they were eating, he said, \"Truly I tell you, one of you will betray me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> And they became greatly distressed and began to say to him one after another, \"Surely not I, Lord?\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> He answered, \"The one who has dipped his hand into the bowl with me will betray me.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> The Son of Man goes as it is written of him, but woe to that one by whom the Son of Man is betrayed! It would have been better for that one not to have been born.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Judas, who betrayed him, said, \"Surely not I, Rabbi?\" He replied, \"You have said so.\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> While they were eating, Jesus took a loaf of bread, and after blessing it he broke it, gave it to the disciples, and said, \"Take, eat; this is my body.\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Then he took a cup, and after giving thanks he gave it to them, saying, \"Drink from it, all of you;</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> for this is my blood of the covenant, which is poured out for many for the forgiveness of sins. </VERS>\r\n\t\t\t<VERS vnumber=\"29\"> I tell you, I will never again drink of this fruit of the vine until that day when I drink it new with you in my Father's kingdom.\"</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> When they had sung the hymn, they went out to the Mount of Olives.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Then Jesus said to them, \"You will all become deserters because of me this night; for it is written, 'I will strike the shepherd, and the sheep of the flock will be scattered.'</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> But after I am raised up, I will go ahead of you to Galilee.\"</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Peter said to him, \"Though all become deserters because of you, I will never desert you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Jesus said to him, \"Truly I tell you, this very night, before the cock crows, you will deny me three times.\"</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Peter said to him, \"Even though I must die with you, I will not deny you.\" And so said all the disciples.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Then Jesus went with them to a place called Gethsemane; and he said to his disciples, \"Sit here while I go over there and pray.\"</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> He took with him Peter and the two sons of Zebedee, and began to be grieved and agitated.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Then he said to them, \"I am deeply grieved, even to death; remain here, and stay awake with me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> And going a little farther, he threw himself on the ground and prayed, \"My Father, if it is possible, let this cup pass from me; yet not what I want but what you want.\"</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> Then he came to the disciples and found them sleeping; and he said to Peter, \"So, could you not stay awake with me one hour?</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> Stay awake and pray that you may not come into the time of trial; the spirit indeed is willing, but the flesh is weak.\" </VERS>\r\n\t\t\t<VERS vnumber=\"42\"> Again he went away for the second time and prayed, \"My Father, if this cannot pass unless I drink it, your will be done.\"</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> Again he came and found them sleeping, for their eyes were heavy.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> So leaving them again, he went away and prayed for the third time, saying the same words.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> Then he came to the disciples and said to them, \"Are you still sleeping and taking your rest? See, the hour is at hand, and the Son of Man is betrayed into the hands of sinners.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> Get up, let us be going. See, my betrayer is at hand.\"</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> While he was still speaking, Judas, one of the twelve, arrived; with him was a large crowd with swords and clubs, from the chief priests and the elders of the people.</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> Now the betrayer had given them a sign, saying, \"The one I will kiss is the man; arrest him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> At once he came up to Jesus and said, \"Greetings, Rabbi!\" and kissed him.</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> Jesus said to him, \"Friend, do what you are here to do.\" Then they came and laid hands on Jesus and arrested him.</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> Suddenly, one of those with Jesus put his hand on his sword, drew it, and struck the slave of the high priest, cutting off his ear.</VERS>\r\n\t\t\t<VERS vnumber=\"52\"> Then Jesus said to him, \"Put your sword back into its place; for all who take the sword will perish by the sword.</VERS>\r\n\t\t\t<VERS vnumber=\"53\"> Do you think that I cannot appeal to my Father, and he will at once send me more than twelve legions of angels?</VERS>\r\n\t\t\t<VERS vnumber=\"54\"> But how then would the scriptures be fulfilled, which say it must happen in this way?\"</VERS>\r\n\t\t\t<VERS vnumber=\"55\"> At that hour Jesus said to the crowds, \"Have you come out with swords and clubs to arrest me as though I were a bandit? Day after day I sat in the temple teaching, and you did not arrest me.</VERS>\r\n\t\t\t<VERS vnumber=\"56\"> But all this has taken place, so that the scriptures of the prophets may be fulfilled.\" Then all the disciples deserted him and fled.</VERS>\r\n\t\t\t<VERS vnumber=\"57\"> Those who had arrested Jesus took him to Caiaphas the high priest, in whose house the scribes and the elders had gathered.</VERS>\r\n\t\t\t<VERS vnumber=\"58\"> But Peter was following him at a distance, as far as the courtyard of the high priest; and going inside, he sat with the guards in order to see how this would end.</VERS>\r\n\t\t\t<VERS vnumber=\"59\"> Now the chief priests and the whole council were looking for false testimony against Jesus so that they might put him to death,</VERS>\r\n\t\t\t<VERS vnumber=\"60\"> but they found none, though many false witnesses came forward. At last two came forward</VERS>\r\n\t\t\t<VERS vnumber=\"61\"> and said, \"This fellow said, 'I am able to destroy the temple of God and to build it in three days.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"62\"> The high priest stood up and said, \"Have you no answer? What is it that they testify against you?\"</VERS>\r\n\t\t\t<VERS vnumber=\"63\"> But Jesus was silent. Then the high priest said to him, \"I put you under oath before the living God, tell us if you are the Messiah, the Son of God.\" </VERS>\r\n\t\t\t<VERS vnumber=\"64\"> Jesus said to him, \"You have said so. But I tell you, From now on you will see the Son of Man seated at the right hand of Power and coming on the clouds of heaven.\"</VERS>\r\n\t\t\t<VERS vnumber=\"65\"> Then the high priest tore his clothes and said, \"He has blasphemed! Why do we still need witnesses? You have now heard his blasphemy.</VERS>\r\n\t\t\t<VERS vnumber=\"66\"> What is your verdict?\" They answered, \"He deserves death.\"</VERS>\r\n\t\t\t<VERS vnumber=\"67\"> Then they spat in his face and struck him; and some slapped him,</VERS>\r\n\t\t\t<VERS vnumber=\"68\"> saying, \"Prophesy to us, you Messiah! Who is it that struck you?\" </VERS>\r\n\t\t\t<VERS vnumber=\"69\"> Now Peter was sitting outside in the courtyard. A servant-girl came to him and said, \"You also were with Jesus the Galilean.\"</VERS>\r\n\t\t\t<VERS vnumber=\"70\"> But he denied it before all of them, saying, \"I do not know what you are talking about.\"</VERS>\r\n\t\t\t<VERS vnumber=\"71\"> When he went out to the porch, another servant-girl saw him, and she said to the bystanders, \"This man was with Jesus of Nazareth.\"</VERS>\r\n\t\t\t<VERS vnumber=\"72\"> Again he denied it with an oath, \"I do not know the man.\"</VERS>\r\n\t\t\t<VERS vnumber=\"73\"> After a little while the bystanders came up and said to Peter, \"Certainly you are also one of them, for your accent betrays you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"74\"> Then he began to curse, and he swore an oath, \"I do not know the man!\" At that moment the cock crowed.</VERS>\r\n\t\t\t<VERS vnumber=\"75\"> Then Peter remembered what Jesus had said: \"Before the cock crows, you will deny me three times.\" And he went out and wept bitterly.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"27\">\r\n\t\t\t<VERS vnumber=\"1\"> When morning came, all the chief priests and the elders of the people conferred together against Jesus in order to bring about his death.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> They bound him, led him away, and handed him over to Pilate the governor.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> When Judas, his betrayer, saw that Jesus was condemned, he repented and brought back the thirty pieces of silver to the chief priests and the elders. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> He said, \"I have sinned by betraying innocent blood.\" But they said, \"What is that to us? See to it yourself.\" </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Throwing down the pieces of silver in the temple, he departed; and he went and hanged himself.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> But the chief priests, taking the pieces of silver, said, \"It is not lawful to put them into the treasury, since they are blood money.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> After conferring together, they used them to buy the potter's field as a place to bury foreigners.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> For this reason that field has been called the Field of Blood to this day.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then was fulfilled what had been spoken through the prophet Jeremiah, \"And they took the thirty pieces of silver, the price of the one on whom a price had been set, on whom some of the people of Israel had set a price,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> and they gave them for the potter's field, as the Lord commanded me.\" </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Now Jesus stood before the governor; and the governor asked him, \"Are you the King of the Jews?\" Jesus said, \"You say so.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> But when he was accused by the chief priests and elders, he did not answer.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then Pilate said to him, \"Do you not hear how many accusations they make against you?\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But he gave him no answer, not even to a single charge, so that the governor was greatly amazed.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Now at the festival the governor was accustomed to release a prisoner for the crowd, anyone whom they wanted.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> At that time they had a notorious prisoner, called Jesus Barabbas. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> So after they had gathered, Pilate said to them, \"Whom do you want me to release for you, Jesus Barabbas or Jesus who is called the Messiah?\" </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> For he realized that it was out of jealousy that they had handed him over.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> While he was sitting on the judgment seat, his wife sent word to him, \"Have nothing to do with that innocent man, for today I have suffered a great deal because of a dream about him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Now the chief priests and the elders persuaded the crowds to ask for Barabbas and to have Jesus killed.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> The governor again said to them, \"Which of the two do you want me to release for you?\" And they said, \"Barabbas.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Pilate said to them, \"Then what should I do with Jesus who is called the Messiah?\" All of them said, \"Let him be crucified!\" </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Then he asked, \"Why, what evil has he done?\" But they shouted all the more, \"Let him be crucified!\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> So when Pilate saw that he could do nothing, but rather that a riot was beginning, he took some water and washed his hands before the crowd, saying, \"I am innocent of this man's blood; see to it yourselves.\" </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Then the people as a whole answered, \"His blood be on us and on our children!\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> So he released Barabbas for them; and after flogging Jesus, he handed him over to be crucified.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Then the soldiers of the governor took Jesus into the governor's headquarters, and they gathered the whole cohort around him. </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> They stripped him and put a scarlet robe on him,</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> and after twisting some thorns into a crown, they put it on his head. They put a reed in his right hand and knelt before him and mocked him, saying, \"Hail, King of the Jews!\"</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> They spat on him, and took the reed and struck him on the head.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> After mocking him, they stripped him of the robe and put his own clothes on him. Then they led him away to crucify him.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> As they went out, they came upon a man from Cyrene named Simon; they compelled this man to carry his cross.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> And when they came to a place called Golgotha (which means Place of a Skull),</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> they offered him wine to drink, mixed with gall; but when he tasted it, he would not drink it.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> And when they had crucified him, they divided his clothes among themselves by casting lots;</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> then they sat down there and kept watch over him.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Over his head they put the charge against him, which read, \"This is Jesus, the King of the Jews.\"</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Then two bandits were crucified with him, one on his right and one on his left.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> Those who passed by derided him, shaking their heads </VERS>\r\n\t\t\t<VERS vnumber=\"40\"> and saying, \"You who would destroy the temple and build it in three days, save yourself! If you are the Son of God, come down from the cross.\"</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> In the same way the chief priests also, along with the scribes and elders, were mocking him, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> \"He saved others; he cannot save himself. He is the King of Israel; let him come down from the cross now, and we will believe in him. </VERS>\r\n\t\t\t<VERS vnumber=\"43\"> He trusts in God; let God deliver him now, if he wants to; for he said, 'I am God's Son.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> The bandits who were crucified with him also taunted him in the same way.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> From noon on, darkness came over the whole land until three in the afternoon. </VERS>\r\n\t\t\t<VERS vnumber=\"46\"> And about three o'clock Jesus cried with a loud voice, \"Eli, Eli, lema sabachthani?\" that is, \"My God, my God, why have you forsaken me?\"</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> When some of the bystanders heard it, they said, \"This man is calling for Elijah.\"</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> At once one of them ran and got a sponge, filled it with sour wine, put it on a stick, and gave it to him to drink.</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> But the others said, \"Wait, let us see whether Elijah will come to save him.\" </VERS>\r\n\t\t\t<VERS vnumber=\"50\"> Then Jesus cried again with a loud voice and breathed his last. </VERS>\r\n\t\t\t<VERS vnumber=\"51\"> At that moment the curtain of the temple was torn in two, from top to bottom. The earth shook, and the rocks were split.</VERS>\r\n\t\t\t<VERS vnumber=\"52\"> The tombs also were opened, and many bodies of the saints who had fallen asleep were raised.</VERS>\r\n\t\t\t<VERS vnumber=\"53\"> After his resurrection they came out of the tombs and entered the holy city and appeared to many.</VERS>\r\n\t\t\t<VERS vnumber=\"54\"> Now when the centurion and those with him, who were keeping watch over Jesus, saw the earthquake and what took place, they were terrified and said, \"Truly this man was God's Son!\" </VERS>\r\n\t\t\t<VERS vnumber=\"55\"> Many women were also there, looking on from a distance; they had followed Jesus from Galilee and had provided for him.</VERS>\r\n\t\t\t<VERS vnumber=\"56\"> Among them were Mary Magdalene, and Mary the mother of James and Joseph, and the mother of the sons of Zebedee.</VERS>\r\n\t\t\t<VERS vnumber=\"57\"> When it was evening, there came a rich man from Arimathea, named Joseph, who was also a disciple of Jesus.</VERS>\r\n\t\t\t<VERS vnumber=\"58\"> He went to Pilate and asked for the body of Jesus; then Pilate ordered it to be given to him.</VERS>\r\n\t\t\t<VERS vnumber=\"59\"> So Joseph took the body and wrapped it in a clean linen cloth</VERS>\r\n\t\t\t<VERS vnumber=\"60\"> and laid it in his own new tomb, which he had hewn in the rock. He then rolled a great stone to the door of the tomb and went away.</VERS>\r\n\t\t\t<VERS vnumber=\"61\"> Mary Magdalene and the other Mary were there, sitting opposite the tomb.</VERS>\r\n\t\t\t<VERS vnumber=\"62\"> The next day, that is, after the day of Preparation, the chief priests and the Pharisees gathered before Pilate</VERS>\r\n\t\t\t<VERS vnumber=\"63\"> and said, \"Sir, we remember what that impostor said while he was still alive, 'After three days I will rise again.'</VERS>\r\n\t\t\t<VERS vnumber=\"64\"> Therefore command the tomb to be made secure until the third day; otherwise his disciples may go and steal him away, and tell the people, 'He has been raised from the dead,' and the last deception would be worse than the first.\"</VERS>\r\n\t\t\t<VERS vnumber=\"65\"> Pilate said to them, \"You have a guard of soldiers; go, make it as secure as you can.\" </VERS>\r\n\t\t\t<VERS vnumber=\"66\"> So they went with the guard and made the tomb secure by sealing the stone.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"28\">\r\n\t\t\t<VERS vnumber=\"1\"> After the sabbath, as the first day of the week was dawning, Mary Magdalene and the other Mary went to see the tomb.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And suddenly there was a great earthquake; for an angel of the Lord, descending from heaven, came and rolled back the stone and sat on it.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> His appearance was like lightning, and his clothing white as snow.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For fear of him the guards shook and became like dead men.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> But the angel said to the women, \"Do not be afraid; I know that you are looking for Jesus who was crucified.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> He is not here; for he has been raised, as he said. Come, see the place where he lay. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then go quickly and tell his disciples, 'He has been raised from the dead, and indeed he is going ahead of you to Galilee; there you will see him.' This is my message for you.\" </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> So they left the tomb quickly with fear and great joy, and ran to tell his disciples.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Suddenly Jesus met them and said, \"Greetings!\" And they came to him, took hold of his feet, and worshiped him.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then Jesus said to them, \"Do not be afraid; go and tell my brothers to go to Galilee; there they will see me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> While they were going, some of the guard went into the city and told the chief priests everything that had happened.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> After the priests had assembled with the elders, they devised a plan to give a large sum of money to the soldiers,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> telling them, \"You must say, 'His disciples came by night and stole him away while we were asleep.'</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> If this comes to the governor's ears, we will satisfy him and keep you out of trouble.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> So they took the money and did as they were directed. And this story is still told among the Jews to this day.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Now the eleven disciples went to Galilee, to the mountain to which Jesus had directed them.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> When they saw him, they worshiped him; but some doubted.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> And Jesus came and said to them, \"All authority in heaven and on earth has been given to me.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Go therefore and make disciples of all nations, baptizing them in the name of the Father and of the Son and of the Holy Spirit,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> and teaching them to obey everything that I have commanded you. And remember, I am with you always, to the end of the age.\" </VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"41\" bname=\"Mark\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> The beginning of the good news of Jesus Christ, the Son of God. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> As it is written in the prophet Isaiah, \"See, I am sending my messenger ahead of you, who will prepare your way; </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> the voice of one crying out in the wilderness: 'Prepare the way of the Lord, make his paths straight,'\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> John the baptizer appeared in the wilderness, proclaiming a baptism of repentance for the forgiveness of sins. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> And people from the whole Judean countryside and all the people of Jerusalem were going out to him, and were baptized by him in the river Jordan, confessing their sins.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Now John was clothed with camel's hair, with a leather belt around his waist, and he ate locusts and wild honey.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> He proclaimed, \"The one who is more powerful than I is coming after me; I am not worthy to stoop down and untie the thong of his sandals.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> I have baptized you with water; but he will baptize you with the Holy Spirit.\" </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> In those days Jesus came from Nazareth of Galilee and was baptized by John in the Jordan.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And just as he was coming up out of the water, he saw the heavens torn apart and the Spirit descending like a dove on him.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> And a voice came from heaven, \"You are my Son, the Beloved; with you I am well pleased.\" </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> And the Spirit immediately drove him out into the wilderness.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> He was in the wilderness forty days, tempted by Satan; and he was with the wild beasts; and the angels waited on him.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Now after John was arrested, Jesus came to Galilee, proclaiming the good news of God, </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> and saying, \"The time is fulfilled, and the kingdom of God has come near; repent, and believe in the good news.\" </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> As Jesus passed along the Sea of Galilee, he saw Simon and his brother Andrew casting a net into the sea-- for they were fishermen.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> And Jesus said to them, \"Follow me and I will make you fish for people.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> And immediately they left their nets and followed him.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> As he went a little farther, he saw James son of Zebedee and his brother John, who were in their boat mending the nets.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Immediately he called them; and they left their father Zebedee in the boat with the hired men, and followed him.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> They went to Capernaum; and when the sabbath came, he entered the synagogue and taught.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> They were astounded at his teaching, for he taught them as one having authority, and not as the scribes.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Just then there was in their synagogue a man with an unclean spirit,</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> and he cried out, \"What have you to do with us, Jesus of Nazareth? Have you come to destroy us? I know who you are, the Holy One of God.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> But Jesus rebuked him, saying, \"Be silent, and come out of him!\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> And the unclean spirit, convulsing him and crying with a loud voice, came out of him.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> They were all amazed, and they kept on asking one another, \"What is this? A new teaching-- with authority! He commands even the unclean spirits, and they obey him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> At once his fame began to spread throughout the surrounding region of Galilee.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> As soon as they left the synagogue, they entered the house of Simon and Andrew, with James and John. </VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Now Simon's mother-in-law was in bed with a fever, and they told him about her at once.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> He came and took her by the hand and lifted her up. Then the fever left her, and she began to serve them.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> That evening, at sundown, they brought to him all who were sick or possessed with demons.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> And the whole city was gathered around the door.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> And he cured many who were sick with various diseases, and cast out many demons; and he would not permit the demons to speak, because they knew him.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> In the morning, while it was still very dark, he got up and went out to a deserted place, and there he prayed.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> And Simon and his companions hunted for him.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> When they found him, they said to him, \"Everyone is searching for you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> He answered, \"Let us go on to the neighboring towns, so that I may proclaim the message there also; for that is what I came out to do.\"</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> And he went throughout Galilee, proclaiming the message in their synagogues and casting out demons.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> A leper came to him begging him, and kneeling he said to him, \"If you choose, you can make me clean.\" </VERS>\r\n\t\t\t<VERS vnumber=\"41\"> Moved with pity, Jesus stretched out his hand and touched him, and said to him, \"I do choose. Be made clean!\" </VERS>\r\n\t\t\t<VERS vnumber=\"42\"> Immediately the leprosy left him, and he was made clean. </VERS>\r\n\t\t\t<VERS vnumber=\"43\"> After sternly warning him he sent him away at once,</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> saying to him, \"See that you say nothing to anyone; but go, show yourself to the priest, and offer for your cleansing what Moses commanded, as a testimony to them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> But he went out and began to proclaim it freely, and to spread the word, so that Jesus could no longer go into a town openly, but stayed out in the country; and people came to him from every quarter. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> When he returned to Capernaum after some days, it was reported that he was at home.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> So many gathered around that there was no longer room for them, not even in front of the door; and he was speaking the word to them.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then some people came, bringing to him a paralyzed man, carried by four of them. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> And when they could not bring him to Jesus because of the crowd, they removed the roof above him; and after having dug through it, they let down the mat on which the paralytic lay.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> When Jesus saw their faith, he said to the paralytic, \"Son, your sins are forgiven.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Now some of the scribes were sitting there, questioning in their hearts,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> \"Why does this fellow speak in this way? It is blasphemy! Who can forgive sins but God alone?\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> At once Jesus perceived in his spirit that they were discussing these questions among themselves; and he said to them, \"Why do you raise such questions in your hearts?</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Which is easier, to say to the paralytic, 'Your sins are forgiven,' or to say, 'Stand up and take your mat and walk'?</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> But so that you may know that the Son of Man has authority on earth to forgive sins\"-- he said to the paralytic--</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> \"I say to you, stand up, take your mat and go to your home.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> And he stood up, and immediately took the mat and went out before all of them; so that they were all amazed and glorified God, saying, \"We have never seen anything like this!\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Jesus went out again beside the sea; the whole crowd gathered around him, and he taught them. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> As he was walking along, he saw Levi son of Alphaeus sitting at the tax booth, and he said to him, \"Follow me.\" And he got up and followed him.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And as he sat at dinner in Levi's house, many tax collectors and sinners were also sitting with Jesus and his disciples-- for there were many who followed him.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> When the scribes of the Pharisees saw that he was eating with sinners and tax collectors, they said to his disciples, \"Why does he eat with tax collectors and sinners?\" </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> When Jesus heard this, he said to them, \"Those who are well have no need of a physician, but those who are sick; I have come to call not the righteous but sinners.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Now John's disciples and the Pharisees were fasting; and people came and said to him, \"Why do John's disciples and the disciples of the Pharisees fast, but your disciples do not fast?\" </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Jesus said to them, \"The wedding guests cannot fast while the bridegroom is with them, can they? As long as they have the bridegroom with them, they cannot fast.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The days will come when the bridegroom is taken away from them, and then they will fast on that day.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> \"No one sews a piece of unshrunk cloth on an old cloak; otherwise, the patch pulls away from it, the new from the old, and a worse tear is made.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> And no one puts new wine into old wineskins; otherwise, the wine will burst the skins, and the wine is lost, and so are the skins; but one puts new wine into fresh wineskins.\" </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> One sabbath he was going through the grainfields; and as they made their way his disciples began to pluck heads of grain.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> The Pharisees said to him, \"Look, why are they doing what is not lawful on the sabbath?\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> And he said to them, \"Have you never read what David did when he and his companions were hungry and in need of food?</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> He entered the house of God, when Abiathar was high priest, and ate the bread of the Presence, which it is not lawful for any but the priests to eat, and he gave some to his companions.\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Then he said to them, \"The sabbath was made for humankind, and not humankind for the sabbath;</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> so the Son of Man is lord even of the sabbath.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> Again he entered the synagogue, and a man was there who had a withered hand.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> They watched him to see whether he would cure him on the sabbath, so that they might accuse him.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And he said to the man who had the withered hand, \"Come forward.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then he said to them, \"Is it lawful to do good or to do harm on the sabbath, to save life or to kill?\" But they were silent.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> He looked around at them with anger; he was grieved at their hardness of heart and said to the man, \"Stretch out your hand.\" He stretched it out, and his hand was restored.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The Pharisees went out and immediately conspired with the Herodians against him, how to destroy him.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Jesus departed with his disciples to the sea, and a great multitude from Galilee followed him;</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> hearing all that he was doing, they came to him in great numbers from Judea, Jerusalem, Idumea, beyond the Jordan, and the region around Tyre and Sidon.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> He told his disciples to have a boat ready for him because of the crowd, so that they would not crush him;</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> for he had cured many, so that all who had diseases pressed upon him to touch him.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Whenever the unclean spirits saw him, they fell down before him and shouted, \"You are the Son of God!\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> But he sternly ordered them not to make him known.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> He went up the mountain and called to him those whom he wanted, and they came to him.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> And he appointed twelve, whom he also named apostles, to be with him, and to be sent out to proclaim the message, </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> and to have authority to cast out demons.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> So he appointed the twelve: Simon (to whom he gave the name Peter); </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> James son of Zebedee and John the brother of James (to whom he gave the name Boanerges, that is, Sons of Thunder);</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> and Andrew, and Philip, and Bartholomew, and Matthew, and Thomas, and James son of Alphaeus, and Thaddaeus, and Simon the Cananaean,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> and Judas Iscariot, who betrayed him. Then he went home;</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> and the crowd came together again, so that they could not even eat.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> When his family heard it, they went out to restrain him, for people were saying, \"He has gone out of his mind.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> And the scribes who came down from Jerusalem said, \"He has Beelzebul, and by the ruler of the demons he casts out demons.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> And he called them to him, and spoke to them in parables, \"How can Satan cast out Satan?</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> If a kingdom is divided against itself, that kingdom cannot stand.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> And if a house is divided against itself, that house will not be able to stand.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> And if Satan has risen up against himself and is divided, he cannot stand, but his end has come.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> But no one can enter a strong man's house and plunder his property without first tying up the strong man; then indeed the house can be plundered.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> \"Truly I tell you, people will be forgiven for their sins and whatever blasphemies they utter;</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> but whoever blasphemes against the Holy Spirit can never have forgiveness, but is guilty of an eternal sin\"--</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> for they had said, \"He has an unclean spirit.\"</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Then his mother and his brothers came; and standing outside, they sent to him and called him.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> A crowd was sitting around him; and they said to him, \"Your mother and your brothers and sisters are outside, asking for you.\" </VERS>\r\n\t\t\t<VERS vnumber=\"33\"> And he replied, \"Who are my mother and my brothers?\"</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> And looking at those who sat around him, he said, \"Here are my mother and my brothers!</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Whoever does the will of God is my brother and sister and mother.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> Again he began to teach beside the sea. Such a very large crowd gathered around him that he got into a boat on the sea and sat there, while the whole crowd was beside the sea on the land.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He began to teach them many things in parables, and in his teaching he said to them:</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> \"Listen! A sower went out to sow.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> And as he sowed, some seed fell on the path, and the birds came and ate it up.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Other seed fell on rocky ground, where it did not have much soil, and it sprang up quickly, since it had no depth of soil.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And when the sun rose, it was scorched; and since it had no root, it withered away.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Other seed fell among thorns, and the thorns grew up and choked it, and it yielded no grain.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Other seed fell into good soil and brought forth grain, growing up and increasing and yielding thirty and sixty and a hundredfold.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> And he said, \"Let anyone with ears to hear listen!\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> When he was alone, those who were around him along with the twelve asked him about the parables.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> And he said to them, \"To you has been given the secret of the kingdom of God, but for those outside, everything comes in parables;</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> in order that 'they may indeed look, but not perceive, and may indeed listen, but not understand; so that they may not turn again and be forgiven.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And he said to them, \"Do you not understand this parable? Then how will you understand all the parables?</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The sower sows the word.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> These are the ones on the path where the word is sown: when they hear, Satan immediately comes and takes away the word that is sown in them.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> And these are the ones sown on rocky ground: when they hear the word, they immediately receive it with joy.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> But they have no root, and endure only for a while; then, when trouble or persecution arises on account of the word, immediately they fall away. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> And others are those sown among the thorns: these are the ones who hear the word,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> but the cares of the world, and the lure of wealth, and the desire for other things come in and choke the word, and it yields nothing.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> And these are the ones sown on the good soil: they hear the word and accept it and bear fruit, thirty and sixty and a hundredfold.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> He said to them, \"Is a lamp brought in to be put under the bushel basket, or under the bed, and not on the lampstand?</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> For there is nothing hidden, except to be disclosed; nor is anything secret, except to come to light.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Let anyone with ears to hear listen!\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> And he said to them, \"Pay attention to what you hear; the measure you give will be the measure you get, and still more will be given you.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> For to those who have, more will be given; and from those who have nothing, even what they have will be taken away.\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> He also said, \"The kingdom of God is as if someone would scatter seed on the ground,</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> and would sleep and rise night and day, and the seed would sprout and grow, he does not know how.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> The earth produces of itself, first the stalk, then the head, then the full grain in the head.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> But when the grain is ripe, at once he goes in with his sickle, because the harvest has come.\"</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> He also said, \"With what can we compare the kingdom of God, or what parable will we use for it?</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> It is like a mustard seed, which, when sown upon the ground, is the smallest of all the seeds on earth;</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> yet when it is sown it grows up and becomes the greatest of all shrubs, and puts forth large branches, so that the birds of the air can make nests in its shade.\"</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> With many such parables he spoke the word to them, as they were able to hear it;</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> he did not speak to them except in parables, but he explained everything in private to his disciples.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> On that day, when evening had come, he said to them, \"Let us go across to the other side.\"</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> And leaving the crowd behind, they took him with them in the boat, just as he was. Other boats were with him.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> A great windstorm arose, and the waves beat into the boat, so that the boat was already being swamped.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> But he was in the stern, asleep on the cushion; and they woke him up and said to him, \"Teacher, do you not care that we are perishing?\"</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> He woke up and rebuked the wind, and said to the sea, \"Peace! Be still!\" Then the wind ceased, and there was a dead calm.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> He said to them, \"Why are you afraid? Have you still no faith?\"</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> And they were filled with great awe and said to one another, \"Who then is this, that even the wind and the sea obey him?\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"5\">\r\n\t\t\t<VERS vnumber=\"1\"> They came to the other side of the sea, to the country of the Gerasenes. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And when he had stepped out of the boat, immediately a man out of the tombs with an unclean spirit met him.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> He lived among the tombs; and no one could restrain him any more, even with a chain;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> for he had often been restrained with shackles and chains, but the chains he wrenched apart, and the shackles he broke in pieces; and no one had the strength to subdue him.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Night and day among the tombs and on the mountains he was always howling and bruising himself with stones.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> When he saw Jesus from a distance, he ran and bowed down before him;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> and he shouted at the top of his voice, \"What have you to do with me, Jesus, Son of the Most High God? I adjure you by God, do not torment me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> For he had said to him, \"Come out of the man, you unclean spirit!\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then Jesus asked him, \"What is your name?\" He replied, \"My name is Legion; for we are many.\" </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> He begged him earnestly not to send them out of the country.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Now there on the hillside a great herd of swine was feeding;</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> and the unclean spirits begged him, \"Send us into the swine; let us enter them.\" </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> So he gave them permission. And the unclean spirits came out and entered the swine; and the herd, numbering about two thousand, rushed down the steep bank into the sea, and were drowned in the sea.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The swineherds ran off and told it in the city and in the country. Then people came to see what it was that had happened.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> They came to Jesus and saw the demoniac sitting there, clothed and in his right mind, the very man who had had the legion; and they were afraid.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Those who had seen what had happened to the demoniac and to the swine reported it.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then they began to beg Jesus to leave their neighborhood. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> As he was getting into the boat, the man who had been possessed by demons begged him that he might be with him.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> But Jesus refused, and said to him, \"Go home to your friends, and tell them how much the Lord has done for you, and what mercy he has shown you.\" </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> And he went away and began to proclaim in the Decapolis how much Jesus had done for him; and everyone was amazed.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> When Jesus had crossed again in the boat to the other side, a great crowd gathered around him; and he was by the sea. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Then one of the leaders of the synagogue named Jairus came and, when he saw him, fell at his feet</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> and begged him repeatedly, \"My little daughter is at the point of death. Come and lay your hands on her, so that she may be made well, and live.\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> So he went with him. And a large crowd followed him and pressed in on him.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Now there was a woman who had been suffering from hemorrhages for twelve years.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> She had endured much under many physicians, and had spent all that she had; and she was no better, but rather grew worse.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> She had heard about Jesus, and came up behind him in the crowd and touched his cloak,</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> for she said, \"If I but touch his clothes, I will be made well.\"</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Immediately her hemorrhage stopped; and she felt in her body that she was healed of her disease.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Immediately aware that power had gone forth from him, Jesus turned about in the crowd and said, \"Who touched my clothes?\"</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> And his disciples said to him, \"You see the crowd pressing in on you; how can you say, 'Who touched me?'\"</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> He looked all around to see who had done it.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> But the woman, knowing what had happened to her, came in fear and trembling, fell down before him, and told him the whole truth.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> He said to her, \"Daughter, your faith has made you well; go in peace, and be healed of your disease.\"</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> While he was still speaking, some people came from the leader's house to say, \"Your daughter is dead. Why trouble the teacher any further?\"</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> But overhearing what they said, Jesus said to the leader of the synagogue, \"Do not fear, only believe.\" </VERS>\r\n\t\t\t<VERS vnumber=\"37\"> He allowed no one to follow him except Peter, James, and John, the brother of James.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> When they came to the house of the leader of the synagogue, he saw a commotion, people weeping and wailing loudly.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> When he had entered, he said to them, \"Why do you make a commotion and weep? The child is not dead but sleeping.\"</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> And they laughed at him. Then he put them all outside, and took the child's father and mother and those who were with him, and went in where the child was.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> He took her by the hand and said to her, \"Talitha cum,\" which means, \"Little girl, get up!\"</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> And immediately the girl got up and began to walk about (she was twelve years of age). At this they were overcome with amazement.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> He strictly ordered them that no one should know this, and told them to give her something to eat.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"6\">\r\n\t\t\t<VERS vnumber=\"1\"> He left that place and came to his hometown, and his disciples followed him.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> On the sabbath he began to teach in the synagogue, and many who heard him were astounded. They said, \"Where did this man get all this? What is this wisdom that has been given to him? What deeds of power are being done by his hands!</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Is not this the carpenter, the son of Mary and brother of James and Joses and Judas and Simon, and are not his sisters here with us?\" And they took offense at him. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then Jesus said to them, \"Prophets are not without honor, except in their hometown, and among their own kin, and in their own house.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> And he could do no deed of power there, except that he laid his hands on a few sick people and cured them.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And he was amazed at their unbelief. Then he went about among the villages teaching.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> He called the twelve and began to send them out two by two, and gave them authority over the unclean spirits.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> He ordered them to take nothing for their journey except a staff; no bread, no bag, no money in their belts;</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> but to wear sandals and not to put on two tunics.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> He said to them, \"Wherever you enter a house, stay there until you leave the place.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> If any place will not welcome you and they refuse to hear you, as you leave, shake off the dust that is on your feet as a testimony against them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> So they went out and proclaimed that all should repent.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> They cast out many demons, and anointed with oil many who were sick and cured them.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> King Herod heard of it, for Jesus' name had become known. Some were saying, \"John the baptizer has been raised from the dead; and for this reason these powers are at work in him.\" </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> But others said, \"It is Elijah.\" And others said, \"It is a prophet, like one of the prophets of old.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> But when Herod heard of it, he said, \"John, whom I beheaded, has been raised.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> For Herod himself had sent men who arrested John, bound him, and put him in prison on account of Herodias, his brother Philip's wife, because Herod had married her. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> For John had been telling Herod, \"It is not lawful for you to have your brother's wife.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> And Herodias had a grudge against him, and wanted to kill him. But she could not,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> for Herod feared John, knowing that he was a righteous and holy man, and he protected him. When he heard him, he was greatly perplexed; and yet he liked to listen to him. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> But an opportunity came when Herod on his birthday gave a banquet for his courtiers and officers and for the leaders of Galilee.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> When his daughter Herodias came in and danced, she pleased Herod and his guests; and the king said to the girl, \"Ask me for whatever you wish, and I will give it.\" </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> And he solemnly swore to her, \"Whatever you ask me, I will give you, even half of my kingdom.\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> She went out and said to her mother, \"What should I ask for?\" She replied, \"The head of John the baptizer.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Immediately she rushed back to the king and requested, \"I want you to give me at once the head of John the Baptist on a platter.\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> The king was deeply grieved; yet out of regard for his oaths and for the guests, he did not want to refuse her.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Immediately the king sent a soldier of the guard with orders to bring John's head. He went and beheaded him in the prison, </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> brought his head on a platter, and gave it to the girl. Then the girl gave it to her mother.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> When his disciples heard about it, they came and took his body, and laid it in a tomb.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> The apostles gathered around Jesus, and told him all that they had done and taught.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> He said to them, \"Come away to a deserted place all by yourselves and rest a while.\" For many were coming and going, and they had no leisure even to eat.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> And they went away in the boat to a deserted place by themselves.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Now many saw them going and recognized them, and they hurried there on foot from all the towns and arrived ahead of them.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> As he went ashore, he saw a great crowd; and he had compassion for them, because they were like sheep without a shepherd; and he began to teach them many things.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> When it grew late, his disciples came to him and said, \"This is a deserted place, and the hour is now very late;</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> send them away so that they may go into the surrounding country and villages and buy something for themselves to eat.\"</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> But he answered them, \"You give them something to eat.\" They said to him, \"Are we to go and buy two hundred denarii worth of bread, and give it to them to eat?\" </VERS>\r\n\t\t\t<VERS vnumber=\"38\"> And he said to them, \"How many loaves have you? Go and see.\" When they had found out, they said, \"Five, and two fish.\"</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> Then he ordered them to get all the people to sit down in groups on the green grass.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> So they sat down in groups of hundreds and of fifties.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> Taking the five loaves and the two fish, he looked up to heaven, and blessed and broke the loaves, and gave them to his disciples to set before the people; and he divided the two fish among them all.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> And all ate and were filled;</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> and they took up twelve baskets full of broken pieces and of the fish.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> Those who had eaten the loaves numbered five thousand men.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> Immediately he made his disciples get into the boat and go on ahead to the other side, to Bethsaida, while he dismissed the crowd.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> After saying farewell to them, he went up on the mountain to pray.</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> When evening came, the boat was out on the sea, and he was alone on the land.</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> When he saw that they were straining at the oars against an adverse wind, he came towards them early in the morning, walking on the sea. He intended to pass them by.</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> But when they saw him walking on the sea, they thought it was a ghost and cried out;</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> for they all saw him and were terrified. But immediately he spoke to them and said, \"Take heart, it is I; do not be afraid.\"</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> Then he got into the boat with them and the wind ceased. And they were utterly astounded,</VERS>\r\n\t\t\t<VERS vnumber=\"52\"> for they did not understand about the loaves, but their hearts were hardened.</VERS>\r\n\t\t\t<VERS vnumber=\"53\"> When they had crossed over, they came to land at Gennesaret and moored the boat.</VERS>\r\n\t\t\t<VERS vnumber=\"54\"> When they got out of the boat, people at once recognized him,</VERS>\r\n\t\t\t<VERS vnumber=\"55\"> and rushed about that whole region and began to bring the sick on mats to wherever they heard he was.</VERS>\r\n\t\t\t<VERS vnumber=\"56\"> And wherever he went, into villages or cities or farms, they laid the sick in the marketplaces, and begged him that they might touch even the fringe of his cloak; and all who touched it were healed.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"7\">\r\n\t\t\t<VERS vnumber=\"1\"> Now when the Pharisees and some of the scribes who had come from Jerusalem gathered around him,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> they noticed that some of his disciples were eating with defiled hands, that is, without washing them.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> (For the Pharisees, and all the Jews, do not eat unless they thoroughly wash their hands, thus observing the tradition of the elders; </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> and they do not eat anything from the market unless they wash it; and there are also many other traditions that they observe, the washing of cups, pots, and bronze kettles.)</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> So the Pharisees and the scribes asked him, \"Why do your disciples not live according to the tradition of the elders, but eat with defiled hands?\" </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> He said to them, \"Isaiah prophesied rightly about you hypocrites, as it is written, 'This people honors me with their lips, but their hearts are far from me;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> in vain do they worship me, teaching human precepts as doctrines.'</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> You abandon the commandment of God and hold to human tradition.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then he said to them, \"You have a fine way of rejecting the commandment of God in order to keep your tradition!</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For Moses said, 'Honor your father and your mother'; and, 'Whoever speaks evil of father or mother must surely die.'</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But you say that if anyone tells father or mother, 'Whatever support you might have had from me is Corban' (that is, an offering to God)--</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> then you no longer permit doing anything for a father or mother,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> thus making void the word of God through your tradition that you have handed on. And you do many things like this.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then he called the crowd again and said to them, \"Listen to me, all of you, and understand:</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> there is nothing outside a person that by going in can defile, but the things that come out are what defile.\" </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> When he had left the crowd and entered the house, his disciples asked him about the parable.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> He said to them, \"Then do you also fail to understand? Do you not see that whatever goes into a person from outside cannot defile,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> since it enters, not the heart but the stomach, and goes out into the sewer?\" (Thus he declared all foods clean.)</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> And he said, \"It is what comes out of a person that defiles.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> For it is from within, from the human heart, that evil intentions come: fornication, theft, murder,</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> adultery, avarice, wickedness, deceit, licentiousness, envy, slander, pride, folly.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> All these evil things come from within, and they defile a person.\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> From there he set out and went away to the region of Tyre. He entered a house and did not want anyone to know he was there. Yet he could not escape notice,</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> but a woman whose little daughter had an unclean spirit immediately heard about him, and she came and bowed down at his feet.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Now the woman was a Gentile, of Syrophoenician origin. She begged him to cast the demon out of her daughter.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> He said to her, \"Let the children be fed first, for it is not fair to take the children's food and throw it to the dogs.\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> But she answered him, \"Sir, even the dogs under the table eat the children's crumbs.\" </VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Then he said to her, \"For saying that, you may go-- the demon has left your daughter.\"</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> So she went home, found the child lying on the bed, and the demon gone.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Then he returned from the region of Tyre, and went by way of Sidon towards the Sea of Galilee, in the region of the Decapolis.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> They brought to him a deaf man who had an impediment in his speech; and they begged him to lay his hand on him.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> He took him aside in private, away from the crowd, and put his fingers into his ears, and he spat and touched his tongue.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Then looking up to heaven, he sighed and said to him, \"Ephphatha,\" that is, \"Be opened.\"</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> And immediately his ears were opened, his tongue was released, and he spoke plainly.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Then Jesus ordered them to tell no one; but the more he ordered them, the more zealously they proclaimed it. </VERS>\r\n\t\t\t<VERS vnumber=\"37\"> They were astounded beyond measure, saying, \"He has done everything well; he even makes the deaf to hear and the mute to speak.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"8\">\r\n\t\t\t<VERS vnumber=\"1\"> In those days when there was again a great crowd without anything to eat, he called his disciples and said to them,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"I have compassion for the crowd, because they have been with me now for three days and have nothing to eat.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> If I send them away hungry to their homes, they will faint on the way-- and some of them have come from a great distance.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> His disciples replied, \"How can one feed these people with bread here in the desert?\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> He asked them, \"How many loaves do you have?\" They said, \"Seven.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then he ordered the crowd to sit down on the ground; and he took the seven loaves, and after giving thanks he broke them and gave them to his disciples to distribute; and they distributed them to the crowd.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> They had also a few small fish; and after blessing them, he ordered that these too should be distributed.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> They ate and were filled; and they took up the broken pieces left over, seven baskets full.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Now there were about four thousand people. And he sent them away.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And immediately he got into the boat with his disciples and went to the district of Dalmanutha. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The Pharisees came and began to argue with him, asking him for a sign from heaven, to test him.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> And he sighed deeply in his spirit and said, \"Why does this generation ask for a sign? Truly I tell you, no sign will be given to this generation.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And he left them, and getting into the boat again, he went across to the other side.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Now the disciples had forgotten to bring any bread; and they had only one loaf with them in the boat.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And he cautioned them, saying, \"Watch out-- beware of the yeast of the Pharisees and the yeast of Herod.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> They said to one another, \"It is because we have no bread.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> And becoming aware of it, Jesus said to them, \"Why are you talking about having no bread? Do you still not perceive or understand? Are your hearts hardened?</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Do you have eyes, and fail to see? Do you have ears, and fail to hear? And do you not remember?</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> When I broke the five loaves for the five thousand, how many baskets full of broken pieces did you collect?\" They said to him, \"Twelve.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> \"And the seven for the four thousand, how many baskets full of broken pieces did you collect?\" And they said to him, \"Seven.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then he said to them, \"Do you not yet understand?\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> They came to Bethsaida. Some people brought a blind man to him and begged him to touch him. </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> He took the blind man by the hand and led him out of the village; and when he had put saliva on his eyes and laid his hands on him, he asked him, \"Can you see anything?\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> And the man looked up and said, \"I can see people, but they look like trees, walking.\" </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Then Jesus laid his hands on his eyes again; and he looked intently and his sight was restored, and he saw everything clearly. </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Then he sent him away to his home, saying, \"Do not even go into the village.\" </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Jesus went on with his disciples to the villages of Caesarea Philippi; and on the way he asked his disciples, \"Who do people say that I am?\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> And they answered him, \"John the Baptist; and others, Elijah; and still others, one of the prophets.\"</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> He asked them, \"But who do you say that I am?\" Peter answered him, \"You are the Messiah.\" </VERS>\r\n\t\t\t<VERS vnumber=\"30\"> And he sternly ordered them not to tell anyone about him.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Then he began to teach them that the Son of Man must undergo great suffering, and be rejected by the elders, the chief priests, and the scribes, and be killed, and after three days rise again.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> He said all this quite openly. And Peter took him aside and began to rebuke him.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> But turning and looking at his disciples, he rebuked Peter and said, \"Get behind me, Satan! For you are setting your mind not on divine things but on human things.\"</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> He called the crowd with his disciples, and said to them, \"If any want to become my followers, let them deny themselves and take up their cross and follow me.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> For those who want to save their life will lose it, and those who lose their life for my sake, and for the sake of the gospel, will save it. </VERS>\r\n\t\t\t<VERS vnumber=\"36\"> For what will it profit them to gain the whole world and forfeit their life?</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Indeed, what can they give in return for their life?</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Those who are ashamed of me and of my words in this adulterous and sinful generation, of them the Son of Man will also be ashamed when he comes in the glory of his Father with the holy angels.\" </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"9\">\r\n\t\t\t<VERS vnumber=\"1\"> And he said to them, \"Truly I tell you, there are some standing here who will not taste death until they see that the kingdom of God has come with power.\" </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Six days later, Jesus took with him Peter and James and John, and led them up a high mountain apart, by themselves. And he was transfigured before them,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> and his clothes became dazzling white, such as no one on earth could bleach them. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> And there appeared to them Elijah with Moses, who were talking with Jesus.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then Peter said to Jesus, \"Rabbi, it is good for us to be here; let us make three dwellings, one for you, one for Moses, and one for Elijah.\" </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> He did not know what to say, for they were terrified.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then a cloud overshadowed them, and from the cloud there came a voice, \"This is my Son, the Beloved; listen to him!\" </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Suddenly when they looked around, they saw no one with them any more, but only Jesus.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> As they were coming down the mountain, he ordered them to tell no one about what they had seen, until after the Son of Man had risen from the dead.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> So they kept the matter to themselves, questioning what this rising from the dead could mean.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then they asked him, \"Why do the scribes say that Elijah must come first?\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> He said to them, \"Elijah is indeed coming first to restore all things. How then is it written about the Son of Man, that he is to go through many sufferings and be treated with contempt?</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> But I tell you that Elijah has come, and they did to him whatever they pleased, as it is written about him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> When they came to the disciples, they saw a great crowd around them, and some scribes arguing with them.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> When the whole crowd saw him, they were immediately overcome with awe, and they ran forward to greet him.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> He asked them, \"What are you arguing about with them?\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Someone from the crowd answered him, \"Teacher, I brought you my son; he has a spirit that makes him unable to speak;</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> and whenever it seizes him, it dashes him down; and he foams and grinds his teeth and becomes rigid; and I asked your disciples to cast it out, but they could not do so.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> He answered them, \"You faithless generation, how much longer must I be among you? How much longer must I put up with you? Bring him to me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> And they brought the boy to him. When the spirit saw him, immediately it convulsed the boy, and he fell on the ground and rolled about, foaming at the mouth. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Jesus asked the father, \"How long has this been happening to him?\" And he said, \"From childhood. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> It has often cast him into the fire and into the water, to destroy him; but if you are able to do anything, have pity on us and help us.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Jesus said to him, \"If you are able!-- All things can be done for the one who believes.\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Immediately the father of the child cried out, \"I believe; help my unbelief!\" </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> When Jesus saw that a crowd came running together, he rebuked the unclean spirit, saying to it, \"You spirit that keeps this boy from speaking and hearing, I command you, come out of him, and never enter him again!\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> After crying out and convulsing him terribly, it came out, and the boy was like a corpse, so that most of them said, \"He is dead.\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> But Jesus took him by the hand and lifted him up, and he was able to stand.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> When he had entered the house, his disciples asked him privately, \"Why could we not cast it out?\"</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> He said to them, \"This kind can come out only through prayer.\"</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> They went on from there and passed through Galilee. He did not want anyone to know it;</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> for he was teaching his disciples, saying to them, \"The Son of Man is to be betrayed into human hands, and they will kill him, and three days after being killed, he will rise again.\"</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> But they did not understand what he was saying and were afraid to ask him.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Then they came to Capernaum; and when he was in the house he asked them, \"What were you arguing about on the way?\"</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> But they were silent, for on the way they had argued with one another who was the greatest.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> He sat down, called the twelve, and said to them, \"Whoever wants to be first must be last of all and servant of all.\"</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Then he took a little child and put it among them; and taking it in his arms, he said to them,</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> \"Whoever welcomes one such child in my name welcomes me, and whoever welcomes me welcomes not me but the one who sent me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> John said to him, \"Teacher, we saw someone casting out demons in your name, and we tried to stop him, because he was not following us.\" </VERS>\r\n\t\t\t<VERS vnumber=\"39\"> But Jesus said, \"Do not stop him; for no one who does a deed of power in my name will be able soon afterward to speak evil of me.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> Whoever is not against us is for us.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> For truly I tell you, whoever gives you a cup of water to drink because you bear the name of Christ will by no means lose the reward.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> \"If any of you put a stumbling block before one of these little ones who believe in me, it would be better for you if a great millstone were hung around your neck and you were thrown into the sea. </VERS>\r\n\t\t\t<VERS vnumber=\"43\"> If your hand causes you to stumble, cut it off; it is better for you to enter life maimed than to have two hands and to go to hell, to the unquenchable fire. </VERS>\r\n\t\t\t<VERS vnumber=\"44\"> </VERS>\r\n\t\t\t<VERS vnumber=\"45\"> And if your foot causes you to stumble, cut it off; it is better for you to enter life lame than to have two feet and to be thrown into hell.,</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> </VERS>\r\n\t\t\t<VERS vnumber=\"47\"> And if your eye causes you to stumble, tear it out; it is better for you to enter the kingdom of God with one eye than to have two eyes and to be thrown into hell, </VERS>\r\n\t\t\t<VERS vnumber=\"48\"> where their worm never dies, and the fire is never quenched.</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> \"For everyone will be salted with fire. </VERS>\r\n\t\t\t<VERS vnumber=\"50\"> Salt is good; but if salt has lost its saltiness, how can you season it? Have salt in yourselves, and be at peace with one another.\" </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"10\">\r\n\t\t\t<VERS vnumber=\"1\"> He left that place and went to the region of Judea and beyond the Jordan. And crowds again gathered around him; and, as was his custom, he again taught them. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Some Pharisees came, and to test him they asked, \"Is it lawful for a man to divorce his wife?\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> He answered them, \"What did Moses command you?\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> They said, \"Moses allowed a man to write a certificate of dismissal and to divorce her.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> But Jesus said to them, \"Because of your hardness of heart he wrote this commandment for you.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> But from the beginning of creation, 'God made them male and female.'</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> 'For this reason a man shall leave his father and mother and be joined to his wife, </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> and the two shall become one flesh.' So they are no longer two, but one flesh.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Therefore what God has joined together, let no one separate.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then in the house the disciples asked him again about this matter.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> He said to them, \"Whoever divorces his wife and marries another commits adultery against her;</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> and if she divorces her husband and marries another, she commits adultery.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> People were bringing little children to him in order that he might touch them; and the disciples spoke sternly to them.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But when Jesus saw this, he was indignant and said to them, \"Let the little children come to me; do not stop them; for it is to such as these that the kingdom of God belongs.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Truly I tell you, whoever does not receive the kingdom of God as a little child will never enter it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> And he took them up in his arms, laid his hands on them, and blessed them.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> As he was setting out on a journey, a man ran up and knelt before him, and asked him, \"Good Teacher, what must I do to inherit eternal life?\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Jesus said to him, \"Why do you call me good? No one is good but God alone.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> You know the commandments: 'You shall not murder; You shall not commit adultery; You shall not steal; You shall not bear false witness; You shall not defraud; Honor your father and mother.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> He said to him, \"Teacher, I have kept all these since my youth.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Jesus, looking at him, loved him and said, \"You lack one thing; go, sell what you own, and give the money to the poor, and you will have treasure in heaven; then come, follow me.\" </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> When he heard this, he was shocked and went away grieving, for he had many possessions.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Then Jesus looked around and said to his disciples, \"How hard it will be for those who have wealth to enter the kingdom of God!\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> And the disciples were perplexed at these words. But Jesus said to them again, \"Children, how hard it is to enter the kingdom of God! </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> It is easier for a camel to go through the eye of a needle than for someone who is rich to enter the kingdom of God.\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> They were greatly astounded and said to one another, \"Then who can be saved?\" </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Jesus looked at them and said, \"For mortals it is impossible, but not for God; for God all things are possible.\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Peter began to say to him, \"Look, we have left everything and followed you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Jesus said, \"Truly I tell you, there is no one who has left house or brothers or sisters or mother or father or children or fields, for my sake and for the sake of the good news,</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> who will not receive a hundredfold now in this age-- houses, brothers and sisters, mothers and children, and fields with persecutions-- and in the age to come eternal life.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> But many who are first will be last, and the last will be first.\"</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> They were on the road, going up to Jerusalem, and Jesus was walking ahead of them; they were amazed, and those who followed were afraid. He took the twelve aside again and began to tell them what was to happen to him,</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> saying, \"See, we are going up to Jerusalem, and the Son of Man will be handed over to the chief priests and the scribes, and they will condemn him to death; then they will hand him over to the Gentiles;</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> they will mock him, and spit upon him, and flog him, and kill him; and after three days he will rise again.\"</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> James and John, the sons of Zebedee, came forward to him and said to him, \"Teacher, we want you to do for us whatever we ask of you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> And he said to them, \"What is it you want me to do for you?\"</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> And they said to him, \"Grant us to sit, one at your right hand and one at your left, in your glory.\"</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> But Jesus said to them, \"You do not know what you are asking. Are you able to drink the cup that I drink, or be baptized with the baptism that I am baptized with?\"</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> They replied, \"We are able.\" Then Jesus said to them, \"The cup that I drink you will drink; and with the baptism with which I am baptized, you will be baptized;</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> but to sit at my right hand or at my left is not mine to grant, but it is for those for whom it has been prepared.\"</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> When the ten heard this, they began to be angry with James and John.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> So Jesus called them and said to them, \"You know that among the Gentiles those whom they recognize as their rulers lord it over them, and their great ones are tyrants over them.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> But it is not so among you; but whoever wishes to become great among you must be your servant,</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> and whoever wishes to be first among you must be slave of all.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> For the Son of Man came not to be served but to serve, and to give his life a ransom for many.\"</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> They came to Jericho. As he and his disciples and a large crowd were leaving Jericho, Bartimaeus son of Timaeus, a blind beggar, was sitting by the roadside.</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> When he heard that it was Jesus of Nazareth, he began to shout out and say, \"Jesus, Son of David, have mercy on me!\"</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> Many sternly ordered him to be quiet, but he cried out even more loudly, \"Son of David, have mercy on me!\"</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> Jesus stood still and said, \"Call him here.\" And they called the blind man, saying to him, \"Take heart; get up, he is calling you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> So throwing off his cloak, he sprang up and came to Jesus.</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> Then Jesus said to him, \"What do you want me to do for you?\" The blind man said to him, \"My teacher, let me see again.\" </VERS>\r\n\t\t\t<VERS vnumber=\"52\"> Jesus said to him, \"Go; your faith has made you well.\" Immediately he regained his sight and followed him on the way.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"11\">\r\n\t\t\t<VERS vnumber=\"1\"> When they were approaching Jerusalem, at Bethphage and Bethany, near the Mount of Olives, he sent two of his disciples</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> and said to them, \"Go into the village ahead of you, and immediately as you enter it, you will find tied there a colt that has never been ridden; untie it and bring it.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> If anyone says to you, 'Why are you doing this?' just say this, 'The Lord needs it and will send it back here immediately.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> They went away and found a colt tied near a door, outside in the street. As they were untying it,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> some of the bystanders said to them, \"What are you doing, untying the colt?\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> They told them what Jesus had said; and they allowed them to take it.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then they brought the colt to Jesus and threw their cloaks on it; and he sat on it.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Many people spread their cloaks on the road, and others spread leafy branches that they had cut in the fields.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then those who went ahead and those who followed were shouting, \"Hosanna! Blessed is the one who comes in the name of the Lord!</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Blessed is the coming kingdom of our ancestor David! Hosanna in the highest heaven!\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then he entered Jerusalem and went into the temple; and when he had looked around at everything, as it was already late, he went out to Bethany with the twelve.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> On the following day, when they came from Bethany, he was hungry.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Seeing in the distance a fig tree in leaf, he went to see whether perhaps he would find anything on it. When he came to it, he found nothing but leaves, for it was not the season for figs.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> He said to it, \"May no one ever eat fruit from you again.\" And his disciples heard it.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Then they came to Jerusalem. And he entered the temple and began to drive out those who were selling and those who were buying in the temple, and he overturned the tables of the money changers and the seats of those who sold doves;</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> and he would not allow anyone to carry anything through the temple.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> He was teaching and saying, \"Is it not written, 'My house shall be called a house of prayer for all the nations'? But you have made it a den of robbers.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> And when the chief priests and the scribes heard it, they kept looking for a way to kill him; for they were afraid of him, because the whole crowd was spellbound by his teaching.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> And when evening came, Jesus and his disciples went out of the city. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> In the morning as they passed by, they saw the fig tree withered away to its roots.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then Peter remembered and said to him, \"Rabbi, look! The fig tree that you cursed has withered.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Jesus answered them, \"Have faith in God. </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Truly I tell you, if you say to this mountain, 'Be taken up and thrown into the sea,' and if you do not doubt in your heart, but believe that what you say will come to pass, it will be done for you.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> So I tell you, whatever you ask for in prayer, believe that you have received it, and it will be yours. </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> \"Whenever you stand praying, forgive, if you have anything against anyone; so that your Father in heaven may also forgive you your trespasses.\" </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Again they came to Jerusalem. As he was walking in the temple, the chief priests, the scribes, and the elders came to him</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> and said, \"By what authority are you doing these things? Who gave you this authority to do them?\"</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Jesus said to them, \"I will ask you one question; answer me, and I will tell you by what authority I do these things.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Did the baptism of John come from heaven, or was it of human origin? Answer me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> They argued with one another, \"If we say, 'From heaven,' he will say, 'Why then did you not believe him?'</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> But shall we say, 'Of human origin'?\"-- they were afraid of the crowd, for all regarded John as truly a prophet.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> So they answered Jesus, \"We do not know.\" And Jesus said to them, \"Neither will I tell you by what authority I am doing these things.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"12\">\r\n\t\t\t<VERS vnumber=\"1\"> Then he began to speak to them in parables. \"A man planted a vineyard, put a fence around it, dug a pit for the wine press, and built a watchtower; then he leased it to tenants and went to another country.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> When the season came, he sent a slave to the tenants to collect from them his share of the produce of the vineyard.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> But they seized him, and beat him, and sent him away empty-handed.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> And again he sent another slave to them; this one they beat over the head and insulted.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then he sent another, and that one they killed. And so it was with many others; some they beat, and others they killed.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> He had still one other, a beloved son. Finally he sent him to them, saying, 'They will respect my son.'</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But those tenants said to one another, 'This is the heir; come, let us kill him, and the inheritance will be ours.'</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> So they seized him, killed him, and threw him out of the vineyard.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> What then will the owner of the vineyard do? He will come and destroy the tenants and give the vineyard to others.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Have you not read this scripture: 'The stone that the builders rejected has become the cornerstone; </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> this was the Lord's doing, and it is amazing in our eyes'?\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> When they realized that he had told this parable against them, they wanted to arrest him, but they feared the crowd. So they left him and went away.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then they sent to him some Pharisees and some Herodians to trap him in what he said.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> And they came and said to him, \"Teacher, we know that you are sincere, and show deference to no one; for you do not regard people with partiality, but teach the way of God in accordance with truth. Is it lawful to pay taxes to the emperor, or not?</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Should we pay them, or should we not?\" But knowing their hypocrisy, he said to them, \"Why are you putting me to the test? Bring me a denarius and let me see it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> And they brought one. Then he said to them, \"Whose head is this, and whose title?\" They answered, \"The emperor's.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Jesus said to them, \"Give to the emperor the things that are the emperor's, and to God the things that are God's.\" And they were utterly amazed at him.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Some Sadducees, who say there is no resurrection, came to him and asked him a question, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> \"Teacher, Moses wrote for us that if a man's brother dies, leaving a wife but no child, the man shall marry the widow and raise up children for his brother. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> There were seven brothers; the first married and, when he died, left no children;</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> and the second married her and died, leaving no children; and the third likewise;</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> none of the seven left children. Last of all the woman herself died.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> In the resurrection whose wife will she be? For the seven had married her.\" </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Jesus said to them, \"Is not this the reason you are wrong, that you know neither the scriptures nor the power of God?</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> For when they rise from the dead, they neither marry nor are given in marriage, but are like angels in heaven.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> And as for the dead being raised, have you not read in the book of Moses, in the story about the bush, how God said to him, 'I am the God of Abraham, the God of Isaac, and the God of Jacob'?</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> He is God not of the dead, but of the living; you are quite wrong.\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> One of the scribes came near and heard them disputing with one another, and seeing that he answered them well, he asked him, \"Which commandment is the first of all?\"</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Jesus answered, \"The first is, 'Hear, O Israel: the Lord our God, the Lord is one;</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> you shall love the Lord your God with all your heart, and with all your soul, and with all your mind, and with all your strength.'</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> The second is this, 'You shall love your neighbor as yourself.' There is no other commandment greater than these.\"</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Then the scribe said to him, \"You are right, Teacher; you have truly said that 'he is one, and besides him there is no other';</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> and 'to love him with all the heart, and with all the understanding, and with all the strength,' and 'to love one's neighbor as oneself,'-- this is much more important than all whole burnt offerings and sacrifices.\"</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> When Jesus saw that he answered wisely, he said to him, \"You are not far from the kingdom of God.\" After that no one dared to ask him any question.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> While Jesus was teaching in the temple, he said, \"How can the scribes say that the Messiah is the son of David? </VERS>\r\n\t\t\t<VERS vnumber=\"36\"> David himself, by the Holy Spirit, declared, 'The Lord said to my Lord, \"Sit at my right hand, until I put your enemies under your feet.\"'</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> David himself calls him Lord; so how can he be his son?\" And the large crowd was listening to him with delight.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> As he taught, he said, \"Beware of the scribes, who like to walk around in long robes, and to be greeted with respect in the marketplaces,</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> and to have the best seats in the synagogues and places of honor at banquets!</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> They devour widows' houses and for the sake of appearance say long prayers. They will receive the greater condemnation.\"</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> He sat down opposite the treasury, and watched the crowd putting money into the treasury. Many rich people put in large sums.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> A poor widow came and put in two small copper coins, which are worth a penny.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> Then he called his disciples and said to them, \"Truly I tell you, this poor widow has put in more than all those who are contributing to the treasury.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> For all of them have contributed out of their abundance; but she out of her poverty has put in everything she had, all she had to live on.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"13\">\r\n\t\t\t<VERS vnumber=\"1\"> As he came out of the temple, one of his disciples said to him, \"Look, Teacher, what large stones and what large buildings!\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Then Jesus asked him, \"Do you see these great buildings? Not one stone will be left here upon another; all will be thrown down.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> When he was sitting on the Mount of Olives opposite the temple, Peter, James, John, and Andrew asked him privately,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> \"Tell us, when will this be, and what will be the sign that all these things are about to be accomplished?\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then Jesus began to say to them, \"Beware that no one leads you astray.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Many will come in my name and say, 'I am he!' and they will lead many astray. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> When you hear of wars and rumors of wars, do not be alarmed; this must take place, but the end is still to come.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> For nation will rise against nation, and kingdom against kingdom; there will be earthquakes in various places; there will be famines. This is but the beginning of the birth pangs.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> \"As for yourselves, beware; for they will hand you over to councils; and you will be beaten in synagogues; and you will stand before governors and kings because of me, as a testimony to them.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And the good news must first be proclaimed to all nations. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> When they bring you to trial and hand you over, do not worry beforehand about what you are to say; but say whatever is given you at that time, for it is not you who speak, but the Holy Spirit.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Brother will betray brother to death, and a father his child, and children will rise against parents and have them put to death;</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> and you will be hated by all because of my name. But the one who endures to the end will be saved.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> \"But when you see the desolating sacrilege set up where it ought not to be (let the reader understand), then those in Judea must flee to the mountains;</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> the one on the housetop must not go down or enter the house to take anything away;</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> the one in the field must not turn back to get a coat.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Woe to those who are pregnant and to those who are nursing infants in those days!</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Pray that it may not be in winter.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> For in those days there will be suffering, such as has not been from the beginning of the creation that God created until now, no, and never will be.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> And if the Lord had not cut short those days, no one would be saved; but for the sake of the elect, whom he chose, he has cut short those days.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> And if anyone says to you at that time, 'Look! Here is the Messiah!' or 'Look! There he is!'-- do not believe it.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> False messiahs and false prophets will appear and produce signs and omens, to lead astray, if possible, the elect. </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> But be alert; I have already told you everything.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> \"But in those days, after that suffering, the sun will be darkened, and the moon will not give its light,</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> and the stars will be falling from heaven, and the powers in the heavens will be shaken.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Then they will see 'the Son of Man coming in clouds' with great power and glory.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Then he will send out the angels, and gather his elect from the four winds, from the ends of the earth to the ends of heaven.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> \"From the fig tree learn its lesson: as soon as its branch becomes tender and puts forth its leaves, you know that summer is near.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> So also, when you see these things taking place, you know that he is near, at the very gates. </VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Truly I tell you, this generation will not pass away until all these things have taken place.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Heaven and earth will pass away, but my words will not pass away.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> \"But about that day or hour no one knows, neither the angels in heaven, nor the Son, but only the Father.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Beware, keep alert; for you do not know when the time will come. </VERS>\r\n\t\t\t<VERS vnumber=\"34\"> It is like a man going on a journey, when he leaves home and puts his slaves in charge, each with his work, and commands the doorkeeper to be on the watch.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Therefore, keep awake-- for you do not know when the master of the house will come, in the evening, or at midnight, or at cockcrow, or at dawn,</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> or else he may find you asleep when he comes suddenly.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> And what I say to you I say to all: Keep awake.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"14\">\r\n\t\t\t<VERS vnumber=\"1\"> It was two days before the Passover and the festival of Unleavened Bread. The chief priests and the scribes were looking for a way to arrest Jesus by stealth and kill him; </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> for they said, \"Not during the festival, or there may be a riot among the people.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> While he was at Bethany in the house of Simon the leper, as he sat at the table, a woman came with an alabaster jar of very costly ointment of nard, and she broke open the jar and poured the ointment on his head. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But some were there who said to one another in anger, \"Why was the ointment wasted in this way?</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> For this ointment could have been sold for more than three hundred denarii, and the money given to the poor.\" And they scolded her. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> But Jesus said, \"Let her alone; why do you trouble her? She has performed a good service for me.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> For you always have the poor with you, and you can show kindness to them whenever you wish; but you will not always have me.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> She has done what she could; she has anointed my body beforehand for its burial.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Truly I tell you, wherever the good news is proclaimed in the whole world, what she has done will be told in remembrance of her.\" </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then Judas Iscariot, who was one of the twelve, went to the chief priests in order to betray him to them.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> When they heard it, they were greatly pleased, and promised to give him money. So he began to look for an opportunity to betray him.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> On the first day of Unleavened Bread, when the Passover lamb is sacrificed, his disciples said to him, \"Where do you want us to go and make the preparations for you to eat the Passover?\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> So he sent two of his disciples, saying to them, \"Go into the city, and a man carrying a jar of water will meet you; follow him,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> and wherever he enters, say to the owner of the house, 'The Teacher asks, Where is my guest room where I may eat the Passover with my disciples?'</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> He will show you a large room upstairs, furnished and ready. Make preparations for us there.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> So the disciples set out and went to the city, and found everything as he had told them; and they prepared the Passover meal.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> When it was evening, he came with the twelve.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> And when they had taken their places and were eating, Jesus said, \"Truly I tell you, one of you will betray me, one who is eating with me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> They began to be distressed and to say to him one after another, \"Surely, not I?\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> He said to them, \"It is one of the twelve, one who is dipping bread into the bowl with me. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> For the Son of Man goes as it is written of him, but woe to that one by whom the Son of Man is betrayed! It would have been better for that one not to have been born.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> While they were eating, he took a loaf of bread, and after blessing it he broke it, gave it to them, and said, \"Take; this is my body.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Then he took a cup, and after giving thanks he gave it to them, and all of them drank from it.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> He said to them, \"This is my blood of the covenant, which is poured out for many. </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Truly I tell you, I will never again drink of the fruit of the vine until that day when I drink it new in the kingdom of God.\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> When they had sung the hymn, they went out to the Mount of Olives.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> And Jesus said to them, \"You will all become deserters; for it is written, 'I will strike the shepherd, and the sheep will be scattered.'</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> But after I am raised up, I will go before you to Galilee.\"</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Peter said to him, \"Even though all become deserters, I will not.\"</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Jesus said to him, \"Truly I tell you, this day, this very night, before the cock crows twice, you will deny me three times.\"</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> But he said vehemently, \"Even though I must die with you, I will not deny you.\" And all of them said the same.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> They went to a place called Gethsemane; and he said to his disciples, \"Sit here while I pray.\"</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> He took with him Peter and James and John, and began to be distressed and agitated.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> And he said to them, \"I am deeply grieved, even to death; remain here, and keep awake.\"</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> And going a little farther, he threw himself on the ground and prayed that, if it were possible, the hour might pass from him.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> He said, \"Abba, Father, for you all things are possible; remove this cup from me; yet, not what I want, but what you want.\"</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> He came and found them sleeping; and he said to Peter, \"Simon, are you asleep? Could you not keep awake one hour?</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Keep awake and pray that you may not come into the time of trial; the spirit indeed is willing, but the flesh is weak.\"</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> And again he went away and prayed, saying the same words.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> And once more he came and found them sleeping, for their eyes were very heavy; and they did not know what to say to him.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> He came a third time and said to them, \"Are you still sleeping and taking your rest? Enough! The hour has come; the Son of Man is betrayed into the hands of sinners.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> Get up, let us be going. See, my betrayer is at hand.\"</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> Immediately, while he was still speaking, Judas, one of the twelve, arrived; and with him there was a crowd with swords and clubs, from the chief priests, the scribes, and the elders.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> Now the betrayer had given them a sign, saying, \"The one I will kiss is the man; arrest him and lead him away under guard.\"</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> So when he came, he went up to him at once and said, \"Rabbi!\" and kissed him.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> Then they laid hands on him and arrested him.</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> But one of those who stood near drew his sword and struck the slave of the high priest, cutting off his ear.</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> Then Jesus said to them, \"Have you come out with swords and clubs to arrest me as though I were a bandit?</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> Day after day I was with you in the temple teaching, and you did not arrest me. But let the scriptures be fulfilled.\"</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> All of them deserted him and fled.</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> A certain young man was following him, wearing nothing but a linen cloth. They caught hold of him,</VERS>\r\n\t\t\t<VERS vnumber=\"52\"> but he left the linen cloth and ran off naked.</VERS>\r\n\t\t\t<VERS vnumber=\"53\"> They took Jesus to the high priest; and all the chief priests, the elders, and the scribes were assembled.</VERS>\r\n\t\t\t<VERS vnumber=\"54\"> Peter had followed him at a distance, right into the courtyard of the high priest; and he was sitting with the guards, warming himself at the fire.</VERS>\r\n\t\t\t<VERS vnumber=\"55\"> Now the chief priests and the whole council were looking for testimony against Jesus to put him to death; but they found none.</VERS>\r\n\t\t\t<VERS vnumber=\"56\"> For many gave false testimony against him, and their testimony did not agree.</VERS>\r\n\t\t\t<VERS vnumber=\"57\"> Some stood up and gave false testimony against him, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"58\"> \"We heard him say, 'I will destroy this temple that is made with hands, and in three days I will build another, not made with hands.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"59\"> But even on this point their testimony did not agree.</VERS>\r\n\t\t\t<VERS vnumber=\"60\"> Then the high priest stood up before them and asked Jesus, \"Have you no answer? What is it that they testify against you?\"</VERS>\r\n\t\t\t<VERS vnumber=\"61\"> But he was silent and did not answer. Again the high priest asked him, \"Are you the Messiah, the Son of the Blessed One?\" </VERS>\r\n\t\t\t<VERS vnumber=\"62\"> Jesus said, \"I am; and 'you will see the Son of Man seated at the right hand of the Power,' and 'coming with the clouds of heaven.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"63\"> Then the high priest tore his clothes and said, \"Why do we still need witnesses?</VERS>\r\n\t\t\t<VERS vnumber=\"64\"> You have heard his blasphemy! What is your decision?\" All of them condemned him as deserving death.</VERS>\r\n\t\t\t<VERS vnumber=\"65\"> Some began to spit on him, to blindfold him, and to strike him, saying to him, \"Prophesy!\" The guards also took him over and beat him.</VERS>\r\n\t\t\t<VERS vnumber=\"66\"> While Peter was below in the courtyard, one of the servant-girls of the high priest came by.</VERS>\r\n\t\t\t<VERS vnumber=\"67\"> When she saw Peter warming himself, she stared at him and said, \"You also were with Jesus, the man from Nazareth.\"</VERS>\r\n\t\t\t<VERS vnumber=\"68\"> But he denied it, saying, \"I do not know or understand what you are talking about.\" And he went out into the forecourt. Then the cock crowed. </VERS>\r\n\t\t\t<VERS vnumber=\"69\"> And the servant-girl, on seeing him, began again to say to the bystanders, \"This man is one of them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"70\"> But again he denied it. Then after a little while the bystanders again said to Peter, \"Certainly you are one of them; for you are a Galilean.\"</VERS>\r\n\t\t\t<VERS vnumber=\"71\"> But he began to curse, and he swore an oath, \"I do not know this man you are talking about.\"</VERS>\r\n\t\t\t<VERS vnumber=\"72\"> At that moment the cock crowed for the second time. Then Peter remembered that Jesus had said to him, \"Before the cock crows twice, you will deny me three times.\" And he broke down and wept.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"15\">\r\n\t\t\t<VERS vnumber=\"1\"> As soon as it was morning, the chief priests held a consultation with the elders and scribes and the whole council. They bound Jesus, led him away, and handed him over to Pilate.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Pilate asked him, \"Are you the King of the Jews?\" He answered him, \"You say so.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then the chief priests accused him of many things.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Pilate asked him again, \"Have you no answer? See how many charges they bring against you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> But Jesus made no further reply, so that Pilate was amazed.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Now at the festival he used to release a prisoner for them, anyone for whom they asked.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Now a man called Barabbas was in prison with the rebels who had committed murder during the insurrection.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> So the crowd came and began to ask Pilate to do for them according to his custom.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then he answered them, \"Do you want me to release for you the King of the Jews?\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For he realized that it was out of jealousy that the chief priests had handed him over.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But the chief priests stirred up the crowd to have him release Barabbas for them instead.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Pilate spoke to them again, \"Then what do you wish me to do with the man you call the King of the Jews?\" </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> They shouted back, \"Crucify him!\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Pilate asked them, \"Why, what evil has he done?\" But they shouted all the more, \"Crucify him!\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> So Pilate, wishing to satisfy the crowd, released Barabbas for them; and after flogging Jesus, he handed him over to be crucified.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then the soldiers led him into the courtyard of the palace (that is, the governor's headquarters); and they called together the whole cohort.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> And they clothed him in a purple cloak; and after twisting some thorns into a crown, they put it on him.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> And they began saluting him, \"Hail, King of the Jews!\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> They struck his head with a reed, spat upon him, and knelt down in homage to him.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> After mocking him, they stripped him of the purple cloak and put his own clothes on him. Then they led him out to crucify him.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> They compelled a passer-by, who was coming in from the country, to carry his cross; it was Simon of Cyrene, the father of Alexander and Rufus.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Then they brought Jesus to the place called Golgotha (which means the place of a skull). </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> And they offered him wine mixed with myrrh; but he did not take it.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> And they crucified him, and divided his clothes among them, casting lots to decide what each should take.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> It was nine o'clock in the morning when they crucified him.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> The inscription of the charge against him read, \"The King of the Jews.\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> And with him they crucified two bandits, one on his right and one on his left. </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> </VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Those who passed by derided him, shaking their heads and saying, \"Aha! You who would destroy the temple and build it in three days, </VERS>\r\n\t\t\t<VERS vnumber=\"30\"> save yourself, and come down from the cross!\"</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> In the same way the chief priests, along with the scribes, were also mocking him among themselves and saying, \"He saved others; he cannot save himself.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Let the Messiah, the King of Israel, come down from the cross now, so that we may see and believe.\" Those who were crucified with him also taunted him. </VERS>\r\n\t\t\t<VERS vnumber=\"33\"> When it was noon, darkness came over the whole land until three in the afternoon. </VERS>\r\n\t\t\t<VERS vnumber=\"34\"> At three o'clock Jesus cried out with a loud voice, \"Eloi, Eloi, lema sabachthani?\" which means, \"My God, my God, why have you forsaken me?\" </VERS>\r\n\t\t\t<VERS vnumber=\"35\"> When some of the bystanders heard it, they said, \"Listen, he is calling for Elijah.\"</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> And someone ran, filled a sponge with sour wine, put it on a stick, and gave it to him to drink, saying, \"Wait, let us see whether Elijah will come to take him down.\"</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Then Jesus gave a loud cry and breathed his last.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> And the curtain of the temple was torn in two, from top to bottom.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> Now when the centurion, who stood facing him, saw that in this way he breathed his last, he said, \"Truly this man was God's Son!\" </VERS>\r\n\t\t\t<VERS vnumber=\"40\"> There were also women looking on from a distance; among them were Mary Magdalene, and Mary the mother of James the younger and of Joses, and Salome.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> These used to follow him and provided for him when he was in Galilee; and there were many other women who had come up with him to Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> When evening had come, and since it was the day of Preparation, that is, the day before the sabbath,</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> Joseph of Arimathea, a respected member of the council, who was also himself waiting expectantly for the kingdom of God, went boldly to Pilate and asked for the body of Jesus.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> Then Pilate wondered if he were already dead; and summoning the centurion, he asked him whether he had been dead for some time.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> When he learned from the centurion that he was dead, he granted the body to Joseph.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> Then Joseph bought a linen cloth, and taking down the body, wrapped it in the linen cloth, and laid it in a tomb that had been hewn out of the rock. He then rolled a stone against the door of the tomb. </VERS>\r\n\t\t\t<VERS vnumber=\"47\"> Mary Magdalene and Mary the mother of Joses saw where the body was laid. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"16\">\r\n\t\t\t<VERS vnumber=\"1\"> When the sabbath was over, Mary Magdalene, and Mary the mother of James, and Salome bought spices, so that they might go and anoint him.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And very early on the first day of the week, when the sun had risen, they went to the tomb.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> They had been saying to one another, \"Who will roll away the stone for us from the entrance to the tomb?\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> When they looked up, they saw that the stone, which was very large, had already been rolled back.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> As they entered the tomb, they saw a young man, dressed in a white robe, sitting on the right side; and they were alarmed.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> But he said to them, \"Do not be alarmed; you are looking for Jesus of Nazareth, who was crucified. He has been raised; he is not here. Look, there is the place they laid him.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But go, tell his disciples and Peter that he is going ahead of you to Galilee; there you will see him, just as he told you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> So they went out and fled from the tomb, for terror and amazement had seized them; and they said nothing to anyone, for they were afraid.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Now after he rose early on the first day of the week, he appeared first to Mary Magdalene, from whom he had cast out seven demons.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> She went out and told those who had been with him, while they were mourning and weeping.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But when they heard that he was alive and had been seen by her, they would not believe it.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> After this he appeared in another form to two of them, as they were walking into the country.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And they went back and told the rest, but they did not believe them.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Later he appeared to the eleven themselves as they were sitting at the table; and he upbraided them for their lack of faith and stubbornness, because they had not believed those who saw him after he had risen.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And he said to them, \"Go into all the world and proclaim the good news to the whole creation. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The one who believes and is baptized will be saved; but the one who does not believe will be condemned.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> And these signs will accompany those who believe: by using my name they will cast out demons; they will speak in new tongues;</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> they will pick up snakes in their hands, and if they drink any deadly thing, it will not hurt them; they will lay their hands on the sick, and they will recover.\" </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> So then the Lord Jesus, after he had spoken to them, was taken up into heaven and sat down at the right hand of God.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> And they went out and proclaimed the good news everywhere, while the Lord worked with them and confirmed the message by the signs that accompanied it. </VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"42\" bname=\"Luke\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> Since many have undertaken to set down an orderly account of the events that have been fulfilled among us,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> just as they were handed on to us by those who from the beginning were eyewitnesses and servants of the word,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> I too decided, after investigating everything carefully from the very first, to write an orderly account for you, most excellent Theophilus, </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> so that you may know the truth concerning the things about which you have been instructed.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> In the days of King Herod of Judea, there was a priest named Zechariah, who belonged to the priestly order of Abijah. His wife was a descendant of Aaron, and her name was Elizabeth.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Both of them were righteous before God, living blamelessly according to all the commandments and regulations of the Lord.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But they had no children, because Elizabeth was barren, and both were getting on in years.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Once when he was serving as priest before God and his section was on duty,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> he was chosen by lot, according to the custom of the priesthood, to enter the sanctuary of the Lord and offer incense.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Now at the time of the incense offering, the whole assembly of the people was praying outside.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then there appeared to him an angel of the Lord, standing at the right side of the altar of incense.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> When Zechariah saw him, he was terrified; and fear overwhelmed him.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> But the angel said to him, \"Do not be afraid, Zechariah, for your prayer has been heard. Your wife Elizabeth will bear you a son, and you will name him John.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> You will have joy and gladness, and many will rejoice at his birth,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> for he will be great in the sight of the Lord. He must never drink wine or strong drink; even before his birth he will be filled with the Holy Spirit.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> He will turn many of the people of Israel to the Lord their God.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> With the spirit and power of Elijah he will go before him, to turn the hearts of parents to their children, and the disobedient to the wisdom of the righteous, to make ready a people prepared for the Lord.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Zechariah said to the angel, \"How will I know that this is so? For I am an old man, and my wife is getting on in years.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The angel replied, \"I am Gabriel. I stand in the presence of God, and I have been sent to speak to you and to bring you this good news.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> But now, because you did not believe my words, which will be fulfilled in their time, you will become mute, unable to speak, until the day these things occur.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Meanwhile the people were waiting for Zechariah, and wondered at his delay in the sanctuary.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> When he did come out, he could not speak to them, and they realized that he had seen a vision in the sanctuary. He kept motioning to them and remained unable to speak.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> When his time of service was ended, he went to his home.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> After those days his wife Elizabeth conceived, and for five months she remained in seclusion. She said,</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> \"This is what the Lord has done for me when he looked favorably on me and took away the disgrace I have endured among my people.\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> In the sixth month the angel Gabriel was sent by God to a town in Galilee called Nazareth,</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> to a virgin engaged to a man whose name was Joseph, of the house of David. The virgin's name was Mary.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> And he came to her and said, \"Greetings, favored one! The Lord is with you.\" </VERS>\r\n\t\t\t<VERS vnumber=\"29\"> But she was much perplexed by his words and pondered what sort of greeting this might be.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> The angel said to her, \"Do not be afraid, Mary, for you have found favor with God.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> And now, you will conceive in your womb and bear a son, and you will name him Jesus.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> He will be great, and will be called the Son of the Most High, and the Lord God will give to him the throne of his ancestor David.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> He will reign over the house of Jacob forever, and of his kingdom there will be no end.\"</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Mary said to the angel, \"How can this be, since I am a virgin?\" </VERS>\r\n\t\t\t<VERS vnumber=\"35\"> The angel said to her, \"The Holy Spirit will come upon you, and the power of the Most High will overshadow you; therefore the child to be born will be holy; he will be called Son of God. </VERS>\r\n\t\t\t<VERS vnumber=\"36\"> And now, your relative Elizabeth in her old age has also conceived a son; and this is the sixth month for her who was said to be barren.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> For nothing will be impossible with God.\"</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Then Mary said, \"Here am I, the servant of the Lord; let it be with me according to your word.\" Then the angel departed from her.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> In those days Mary set out and went with haste to a Judean town in the hill country,</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> where she entered the house of Zechariah and greeted Elizabeth.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> When Elizabeth heard Mary's greeting, the child leaped in her womb. And Elizabeth was filled with the Holy Spirit</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> and exclaimed with a loud cry, \"Blessed are you among women, and blessed is the fruit of your womb.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> And why has this happened to me, that the mother of my Lord comes to me?</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> For as soon as I heard the sound of your greeting, the child in my womb leaped for joy.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> And blessed is she who believed that there would be a fulfillment of what was spoken to her by the Lord.\" </VERS>\r\n\t\t\t<VERS vnumber=\"46\"> And Mary said, \"My soul magnifies the Lord, </VERS>\r\n\t\t\t<VERS vnumber=\"47\"> and my spirit rejoices in God my Savior,</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> for he has looked with favor on the lowliness of his servant. Surely, from now on all generations will call me blessed;</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> for the Mighty One has done great things for me, and holy is his name.</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> His mercy is for those who fear him from generation to generation.</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> He has shown strength with his arm; he has scattered the proud in the thoughts of their hearts.</VERS>\r\n\t\t\t<VERS vnumber=\"52\"> He has brought down the powerful from their thrones, and lifted up the lowly;</VERS>\r\n\t\t\t<VERS vnumber=\"53\"> he has filled the hungry with good things, and sent the rich away empty.</VERS>\r\n\t\t\t<VERS vnumber=\"54\"> He has helped his servant Israel, in remembrance of his mercy,</VERS>\r\n\t\t\t<VERS vnumber=\"55\"> according to the promise he made to our ancestors, to Abraham and to his descendants forever.\"</VERS>\r\n\t\t\t<VERS vnumber=\"56\"> And Mary remained with her about three months and then returned to her home.</VERS>\r\n\t\t\t<VERS vnumber=\"57\"> Now the time came for Elizabeth to give birth, and she bore a son.</VERS>\r\n\t\t\t<VERS vnumber=\"58\"> Her neighbors and relatives heard that the Lord had shown his great mercy to her, and they rejoiced with her.</VERS>\r\n\t\t\t<VERS vnumber=\"59\"> On the eighth day they came to circumcise the child, and they were going to name him Zechariah after his father.</VERS>\r\n\t\t\t<VERS vnumber=\"60\"> But his mother said, \"No; he is to be called John.\"</VERS>\r\n\t\t\t<VERS vnumber=\"61\"> They said to her, \"None of your relatives has this name.\"</VERS>\r\n\t\t\t<VERS vnumber=\"62\"> Then they began motioning to his father to find out what name he wanted to give him.</VERS>\r\n\t\t\t<VERS vnumber=\"63\"> He asked for a writing tablet and wrote, \"His name is John.\" And all of them were amazed.</VERS>\r\n\t\t\t<VERS vnumber=\"64\"> Immediately his mouth was opened and his tongue freed, and he began to speak, praising God.</VERS>\r\n\t\t\t<VERS vnumber=\"65\"> Fear came over all their neighbors, and all these things were talked about throughout the entire hill country of Judea.</VERS>\r\n\t\t\t<VERS vnumber=\"66\"> All who heard them pondered them and said, \"What then will this child become?\" For, indeed, the hand of the Lord was with him.</VERS>\r\n\t\t\t<VERS vnumber=\"67\"> Then his father Zechariah was filled with the Holy Spirit and spoke this prophecy:</VERS>\r\n\t\t\t<VERS vnumber=\"68\"> \"Blessed be the Lord God of Israel, for he has looked favorably on his people and redeemed them.</VERS>\r\n\t\t\t<VERS vnumber=\"69\"> He has raised up a mighty savior for us in the house of his servant David, </VERS>\r\n\t\t\t<VERS vnumber=\"70\"> as he spoke through the mouth of his holy prophets from of old,</VERS>\r\n\t\t\t<VERS vnumber=\"71\"> that we would be saved from our enemies and from the hand of all who hate us.</VERS>\r\n\t\t\t<VERS vnumber=\"72\"> Thus he has shown the mercy promised to our ancestors, and has remembered his holy covenant,</VERS>\r\n\t\t\t<VERS vnumber=\"73\"> the oath that he swore to our ancestor Abraham, to grant us</VERS>\r\n\t\t\t<VERS vnumber=\"74\"> that we, being rescued from the hands of our enemies, might serve him without fear,</VERS>\r\n\t\t\t<VERS vnumber=\"75\"> in holiness and righteousness before him all our days.</VERS>\r\n\t\t\t<VERS vnumber=\"76\"> And you, child, will be called the prophet of the Most High; for you will go before the Lord to prepare his ways,</VERS>\r\n\t\t\t<VERS vnumber=\"77\"> to give knowledge of salvation to his people by the forgiveness of their sins.</VERS>\r\n\t\t\t<VERS vnumber=\"78\"> By the tender mercy of our God, the dawn from on high will break upon us, </VERS>\r\n\t\t\t<VERS vnumber=\"79\"> to give light to those who sit in darkness and in the shadow of death, to guide our feet into the way of peace.\"</VERS>\r\n\t\t\t<VERS vnumber=\"80\"> The child grew and became strong in spirit, and he was in the wilderness until the day he appeared publicly to Israel.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> In those days a decree went out from Emperor Augustus that all the world should be registered.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> This was the first registration and was taken while Quirinius was governor of Syria.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> All went to their own towns to be registered.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Joseph also went from the town of Nazareth in Galilee to Judea, to the city of David called Bethlehem, because he was descended from the house and family of David.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> He went to be registered with Mary, to whom he was engaged and who was expecting a child.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> While they were there, the time came for her to deliver her child.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> And she gave birth to her firstborn son and wrapped him in bands of cloth, and laid him in a manger, because there was no place for them in the inn.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> In that region there were shepherds living in the fields, keeping watch over their flock by night.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then an angel of the Lord stood before them, and the glory of the Lord shone around them, and they were terrified.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> But the angel said to them, \"Do not be afraid; for see-- I am bringing you good news of great joy for all the people:</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> to you is born this day in the city of David a Savior, who is the Messiah, the Lord. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> This will be a sign for you: you will find a child wrapped in bands of cloth and lying in a manger.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And suddenly there was with the angel a multitude of the heavenly host, praising God and saying,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> \"Glory to God in the highest heaven, and on earth peace among those whom he favors!\" </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> When the angels had left them and gone into heaven, the shepherds said to one another, \"Let us go now to Bethlehem and see this thing that has taken place, which the Lord has made known to us.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> So they went with haste and found Mary and Joseph, and the child lying in the manger.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> When they saw this, they made known what had been told them about this child;</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> and all who heard it were amazed at what the shepherds told them.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> But Mary treasured all these words and pondered them in her heart.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The shepherds returned, glorifying and praising God for all they had heard and seen, as it had been told them.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> After eight days had passed, it was time to circumcise the child; and he was called Jesus, the name given by the angel before he was conceived in the womb.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> When the time came for their purification according to the law of Moses, they brought him up to Jerusalem to present him to the Lord</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> (as it is written in the law of the Lord, \"Every firstborn male shall be designated as holy to the Lord\"),</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> and they offered a sacrifice according to what is stated in the law of the Lord, \"a pair of turtledoves or two young pigeons.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Now there was a man in Jerusalem whose name was Simeon; this man was righteous and devout, looking forward to the consolation of Israel, and the Holy Spirit rested on him. </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> It had been revealed to him by the Holy Spirit that he would not see death before he had seen the Lord's Messiah. </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Guided by the Spirit, Simeon came into the temple; and when the parents brought in the child Jesus, to do for him what was customary under the law, </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Simeon took him in his arms and praised God, saying, </VERS>\r\n\t\t\t<VERS vnumber=\"29\"> \"Master, now you are dismissing your servant in peace, according to your word; </VERS>\r\n\t\t\t<VERS vnumber=\"30\"> for my eyes have seen your salvation,</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> which you have prepared in the presence of all peoples,</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> a light for revelation to the Gentiles and for glory to your people Israel.\"</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> And the child's father and mother were amazed at what was being said about him.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Then Simeon blessed them and said to his mother Mary, \"This child is destined for the falling and the rising of many in Israel, and to be a sign that will be opposed </VERS>\r\n\t\t\t<VERS vnumber=\"35\"> so that the inner thoughts of many will be revealed-- and a sword will pierce your own soul too.\"</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> There was also a prophet, Anna the daughter of Phanuel, of the tribe of Asher. She was of a great age, having lived with her husband seven years after her marriage,</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> then as a widow to the age of eighty-four. She never left the temple but worshiped there with fasting and prayer night and day.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> At that moment she came, and began to praise God and to speak about the child to all who were looking for the redemption of Jerusalem. </VERS>\r\n\t\t\t<VERS vnumber=\"39\"> When they had finished everything required by the law of the Lord, they returned to Galilee, to their own town of Nazareth.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> The child grew and became strong, filled with wisdom; and the favor of God was upon him.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> Now every year his parents went to Jerusalem for the festival of the Passover.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> And when he was twelve years old, they went up as usual for the festival.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> When the festival was ended and they started to return, the boy Jesus stayed behind in Jerusalem, but his parents did not know it.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> Assuming that he was in the group of travelers, they went a day's journey. Then they started to look for him among their relatives and friends.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> When they did not find him, they returned to Jerusalem to search for him.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> After three days they found him in the temple, sitting among the teachers, listening to them and asking them questions.</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> And all who heard him were amazed at his understanding and his answers.</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> When his parents saw him they were astonished; and his mother said to him, \"Child, why have you treated us like this? Look, your father and I have been searching for you in great anxiety.\" </VERS>\r\n\t\t\t<VERS vnumber=\"49\"> He said to them, \"Why were you searching for me? Did you not know that I must be in my Father's house?\" </VERS>\r\n\t\t\t<VERS vnumber=\"50\"> But they did not understand what he said to them.</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> Then he went down with them and came to Nazareth, and was obedient to them. His mother treasured all these things in her heart.</VERS>\r\n\t\t\t<VERS vnumber=\"52\"> And Jesus increased in wisdom and in years, and in divine and human favor. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> In the fifteenth year of the reign of Emperor Tiberius, when Pontius Pilate was governor of Judea, and Herod was ruler of Galilee, and his brother Philip ruler of the region of Ituraea and Trachonitis, and Lysanias ruler of Abilene, </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> during the high priesthood of Annas and Caiaphas, the word of God came to John son of Zechariah in the wilderness.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> He went into all the region around the Jordan, proclaiming a baptism of repentance for the forgiveness of sins,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> as it is written in the book of the words of the prophet Isaiah, \"The voice of one crying out in the wilderness: 'Prepare the way of the Lord, make his paths straight.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Every valley shall be filled, and every mountain and hill shall be made low, and the crooked shall be made straight, and the rough ways made smooth;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> and all flesh shall see the salvation of God.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> John said to the crowds that came out to be baptized by him, \"You brood of vipers! Who warned you to flee from the wrath to come?</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Bear fruits worthy of repentance. Do not begin to say to yourselves, 'We have Abraham as our ancestor'; for I tell you, God is able from these stones to raise up children to Abraham.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Even now the ax is lying at the root of the trees; every tree therefore that does not bear good fruit is cut down and thrown into the fire.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And the crowds asked him, \"What then should we do?\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> In reply he said to them, \"Whoever has two coats must share with anyone who has none; and whoever has food must do likewise.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Even tax collectors came to be baptized, and they asked him, \"Teacher, what should we do?\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> He said to them, \"Collect no more than the amount prescribed for you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Soldiers also asked him, \"And we, what should we do?\" He said to them, \"Do not extort money from anyone by threats or false accusation, and be satisfied with your wages.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> As the people were filled with expectation, and all were questioning in their hearts concerning John, whether he might be the Messiah, </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> John answered all of them by saying, \"I baptize you with water; but one who is more powerful than I is coming; I am not worthy to untie the thong of his sandals. He will baptize you with the Holy Spirit and fire. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> His winnowing fork is in his hand, to clear his threshing floor and to gather the wheat into his granary; but the chaff he will burn with unquenchable fire.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> So, with many other exhortations, he proclaimed the good news to the people.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> But Herod the ruler, who had been rebuked by him because of Herodias, his brother's wife, and because of all the evil things that Herod had done, </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> added to them all by shutting up John in prison.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Now when all the people were baptized, and when Jesus also had been baptized and was praying, the heaven was opened,</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> and the Holy Spirit descended upon him in bodily form like a dove. And a voice came from heaven, \"You are my Son, the Beloved; with you I am well pleased.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Jesus was about thirty years old when he began his work. He was the son (as was thought) of Joseph son of Heli,</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> son of Matthat, son of Levi, son of Melchi, son of Jannai, son of Joseph,</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> son of Mattathias, son of Amos, son of Nahum, son of Esli, son of Naggai,</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> son of Maath, son of Mattathias, son of Semein, son of Josech, son of Joda,</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> son of Joanan, son of Rhesa, son of Zerubbabel, son of Shealtiel, son of Neri, </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> son of Melchi, son of Addi, son of Cosam, son of Elmadam, son of Er,</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> son of Joshua, son of Eliezer, son of Jorim, son of Matthat, son of Levi,</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> son of Simeon, son of Judah, son of Joseph, son of Jonam, son of Eliakim,</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> son of Melea, son of Menna, son of Mattatha, son of Nathan, son of David,</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> son of Jesse, son of Obed, son of Boaz, son of Sala, son of Nahshon, </VERS>\r\n\t\t\t<VERS vnumber=\"33\"> son of Amminadab, son of Admin, son of Arni, son of Hezron, son of Perez, son of Judah, </VERS>\r\n\t\t\t<VERS vnumber=\"34\"> son of Jacob, son of Isaac, son of Abraham, son of Terah, son of Nahor,</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> son of Serug, son of Reu, son of Peleg, son of Eber, son of Shelah,</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> son of Cainan, son of Arphaxad, son of Shem, son of Noah, son of Lamech,</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> son of Methuselah, son of Enoch, son of Jared, son of Mahalaleel, son of Cainan,</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> son of Enos, son of Seth, son of Adam, son of God.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> Jesus, full of the Holy Spirit, returned from the Jordan and was led by the Spirit in the wilderness,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> where for forty days he was tempted by the devil. He ate nothing at all during those days, and when they were over, he was famished.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The devil said to him, \"If you are the Son of God, command this stone to become a loaf of bread.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Jesus answered him, \"It is written, 'One does not live by bread alone.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then the devil led him up and showed him in an instant all the kingdoms of the world. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And the devil said to him, \"To you I will give their glory and all this authority; for it has been given over to me, and I give it to anyone I please. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> If you, then, will worship me, it will all be yours.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Jesus answered him, \"It is written, 'Worship the Lord your God, and serve only him.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then the devil took him to Jerusalem, and placed him on the pinnacle of the temple, saying to him, \"If you are the Son of God, throw yourself down from here, </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> for it is written, 'He will command his angels concerning you, to protect you,'</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> and 'On their hands they will bear you up, so that you will not dash your foot against a stone.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Jesus answered him, \"It is said, 'Do not put the Lord your God to the test.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> When the devil had finished every test, he departed from him until an opportune time.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then Jesus, filled with the power of the Spirit, returned to Galilee, and a report about him spread through all the surrounding country.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> He began to teach in their synagogues and was praised by everyone.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> When he came to Nazareth, where he had been brought up, he went to the synagogue on the sabbath day, as was his custom. He stood up to read,</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> and the scroll of the prophet Isaiah was given to him. He unrolled the scroll and found the place where it was written:</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> \"The Spirit of the Lord is upon me, because he has anointed me to bring good news to the poor. He has sent me to proclaim release to the captives and recovery of sight to the blind, to let the oppressed go free,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> to proclaim the year of the Lord's favor.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> And he rolled up the scroll, gave it back to the attendant, and sat down. The eyes of all in the synagogue were fixed on him.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then he began to say to them, \"Today this scripture has been fulfilled in your hearing.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> All spoke well of him and were amazed at the gracious words that came from his mouth. They said, \"Is not this Joseph's son?\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> He said to them, \"Doubtless you will quote to me this proverb, 'Doctor, cure yourself!' And you will say, 'Do here also in your hometown the things that we have heard you did at Capernaum.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> And he said, \"Truly I tell you, no prophet is accepted in the prophet's hometown.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> But the truth is, there were many widows in Israel in the time of Elijah, when the heaven was shut up three years and six months, and there was a severe famine over all the land;</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> yet Elijah was sent to none of them except to a widow at Zarephath in Sidon.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> There were also many lepers in Israel in the time of the prophet Elisha, and none of them was cleansed except Naaman the Syrian.\" </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> When they heard this, all in the synagogue were filled with rage.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> They got up, drove him out of the town, and led him to the brow of the hill on which their town was built, so that they might hurl him off the cliff.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> But he passed through the midst of them and went on his way.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> He went down to Capernaum, a city in Galilee, and was teaching them on the sabbath.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> They were astounded at his teaching, because he spoke with authority.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> In the synagogue there was a man who had the spirit of an unclean demon, and he cried out with a loud voice,</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> \"Let us alone! What have you to do with us, Jesus of Nazareth? Have you come to destroy us? I know who you are, the Holy One of God.\"</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> But Jesus rebuked him, saying, \"Be silent, and come out of him!\" When the demon had thrown him down before them, he came out of him without having done him any harm.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> They were all amazed and kept saying to one another, \"What kind of utterance is this? For with authority and power he commands the unclean spirits, and out they come!\"</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> And a report about him began to reach every place in the region.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> After leaving the synagogue he entered Simon's house. Now Simon's mother-in-law was suffering from a high fever, and they asked him about her.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> Then he stood over her and rebuked the fever, and it left her. Immediately she got up and began to serve them.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> As the sun was setting, all those who had any who were sick with various kinds of diseases brought them to him; and he laid his hands on each of them and cured them.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> Demons also came out of many, shouting, \"You are the Son of God!\" But he rebuked them and would not allow them to speak, because they knew that he was the Messiah.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> At daybreak he departed and went into a deserted place. And the crowds were looking for him; and when they reached him, they wanted to prevent him from leaving them.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> But he said to them, \"I must proclaim the good news of the kingdom of God to the other cities also; for I was sent for this purpose.\"</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> So he continued proclaiming the message in the synagogues of Judea. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"5\">\r\n\t\t\t<VERS vnumber=\"1\"> Once while Jesus was standing beside the lake of Gennesaret, and the crowd was pressing in on him to hear the word of God, </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> he saw two boats there at the shore of the lake; the fishermen had gone out of them and were washing their nets.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> He got into one of the boats, the one belonging to Simon, and asked him to put out a little way from the shore. Then he sat down and taught the crowds from the boat.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> When he had finished speaking, he said to Simon, \"Put out into the deep water and let down your nets for a catch.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Simon answered, \"Master, we have worked all night long but have caught nothing. Yet if you say so, I will let down the nets.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> When they had done this, they caught so many fish that their nets were beginning to break.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> So they signaled their partners in the other boat to come and help them. And they came and filled both boats, so that they began to sink.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But when Simon Peter saw it, he fell down at Jesus' knees, saying, \"Go away from me, Lord, for I am a sinful man!\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> For he and all who were with him were amazed at the catch of fish that they had taken;</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> and so also were James and John, sons of Zebedee, who were partners with Simon. Then Jesus said to Simon, \"Do not be afraid; from now on you will be catching people.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> When they had brought their boats to shore, they left everything and followed him.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Once, when he was in one of the cities, there was a man covered with leprosy. When he saw Jesus, he bowed with his face to the ground and begged him, \"Lord, if you choose, you can make me clean.\" </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then Jesus stretched out his hand, touched him, and said, \"I do choose. Be made clean.\" Immediately the leprosy left him. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> And he ordered him to tell no one. \"Go,\" he said, \"and show yourself to the priest, and, as Moses commanded, make an offering for your cleansing, for a testimony to them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> But now more than ever the word about Jesus spread abroad; many crowds would gather to hear him and to be cured of their diseases. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> But he would withdraw to deserted places and pray.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> One day, while he was teaching, Pharisees and teachers of the law were sitting near by (they had come from every village of Galilee and Judea and from Jerusalem); and the power of the Lord was with him to heal. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Just then some men came, carrying a paralyzed man on a bed. They were trying to bring him in and lay him before Jesus; </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> but finding no way to bring him in because of the crowd, they went up on the roof and let him down with his bed through the tiles into the middle of the crowd in front of Jesus. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> When he saw their faith, he said, \"Friend, your sins are forgiven you.\" </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then the scribes and the Pharisees began to question, \"Who is this who is speaking blasphemies? Who can forgive sins but God alone?\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> When Jesus perceived their questionings, he answered them, \"Why do you raise such questions in your hearts?</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Which is easier, to say, 'Your sins are forgiven you,' or to say, 'Stand up and walk'?</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> But so that you may know that the Son of Man has authority on earth to forgive sins\"-- he said to the one who was paralyzed-- \"I say to you, stand up and take your bed and go to your home.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Immediately he stood up before them, took what he had been lying on, and went to his home, glorifying God.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Amazement seized all of them, and they glorified God and were filled with awe, saying, \"We have seen strange things today.\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> After this he went out and saw a tax collector named Levi, sitting at the tax booth; and he said to him, \"Follow me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> And he got up, left everything, and followed him.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Then Levi gave a great banquet for him in his house; and there was a large crowd of tax collectors and others sitting at the table with them. </VERS>\r\n\t\t\t<VERS vnumber=\"30\"> The Pharisees and their scribes were complaining to his disciples, saying, \"Why do you eat and drink with tax collectors and sinners?\"</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Jesus answered, \"Those who are well have no need of a physician, but those who are sick;</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> I have come to call not the righteous but sinners to repentance.\"</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Then they said to him, \"John's disciples, like the disciples of the Pharisees, frequently fast and pray, but your disciples eat and drink.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Jesus said to them, \"You cannot make wedding guests fast while the bridegroom is with them, can you?</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> The days will come when the bridegroom will be taken away from them, and then they will fast in those days.\"</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> He also told them a parable: \"No one tears a piece from a new garment and sews it on an old garment; otherwise the new will be torn, and the piece from the new will not match the old.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> And no one puts new wine into old wineskins; otherwise the new wine will burst the skins and will be spilled, and the skins will be destroyed.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> But new wine must be put into fresh wineskins.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> And no one after drinking old wine desires new wine, but says, 'The old is good.'\" </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"6\">\r\n\t\t\t<VERS vnumber=\"1\"> One sabbath while Jesus was going through the grainfields, his disciples plucked some heads of grain, rubbed them in their hands, and ate them. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> But some of the Pharisees said, \"Why are you doing what is not lawful on the sabbath?\" </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Jesus answered, \"Have you not read what David did when he and his companions were hungry?</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> He entered the house of God and took and ate the bread of the Presence, which it is not lawful for any but the priests to eat, and gave some to his companions?\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then he said to them, \"The Son of Man is lord of the sabbath.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> On another sabbath he entered the synagogue and taught, and there was a man there whose right hand was withered.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The scribes and the Pharisees watched him to see whether he would cure on the sabbath, so that they might find an accusation against him.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Even though he knew what they were thinking, he said to the man who had the withered hand, \"Come and stand here.\" He got up and stood there.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then Jesus said to them, \"I ask you, is it lawful to do good or to do harm on the sabbath, to save life or to destroy it?\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> After looking around at all of them, he said to him, \"Stretch out your hand.\" He did so, and his hand was restored.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But they were filled with fury and discussed with one another what they might do to Jesus.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Now during those days he went out to the mountain to pray; and he spent the night in prayer to God.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And when day came, he called his disciples and chose twelve of them, whom he also named apostles:</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Simon, whom he named Peter, and his brother Andrew, and James, and John, and Philip, and Bartholomew,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> and Matthew, and Thomas, and James son of Alphaeus, and Simon, who was called the Zealot,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> and Judas son of James, and Judas Iscariot, who became a traitor.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> He came down with them and stood on a level place, with a great crowd of his disciples and a great multitude of people from all Judea, Jerusalem, and the coast of Tyre and Sidon.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> They had come to hear him and to be healed of their diseases; and those who were troubled with unclean spirits were cured.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> And all in the crowd were trying to touch him, for power came out from him and healed all of them.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Then he looked up at his disciples and said: \"Blessed are you who are poor, for yours is the kingdom of God.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> \"Blessed are you who are hungry now, for you will be filled. \"Blessed are you who weep now, for you will laugh.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> \"Blessed are you when people hate you, and when they exclude you, revile you, and defame you on account of the Son of Man. </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Rejoice in that day and leap for joy, for surely your reward is great in heaven; for that is what their ancestors did to the prophets.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> \"But woe to you who are rich, for you have received your consolation.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> \"Woe to you who are full now, for you will be hungry. \"Woe to you who are laughing now, for you will mourn and weep.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> \"Woe to you when all speak well of you, for that is what their ancestors did to the false prophets.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> \"But I say to you that listen, Love your enemies, do good to those who hate you,</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> bless those who curse you, pray for those who abuse you.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> If anyone strikes you on the cheek, offer the other also; and from anyone who takes away your coat do not withhold even your shirt.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Give to everyone who begs from you; and if anyone takes away your goods, do not ask for them again.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Do to others as you would have them do to you.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> \"If you love those who love you, what credit is that to you? For even sinners love those who love them.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> If you do good to those who do good to you, what credit is that to you? For even sinners do the same.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> If you lend to those from whom you hope to receive, what credit is that to you? Even sinners lend to sinners, to receive as much again.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> But love your enemies, do good, and lend, expecting nothing in return. Your reward will be great, and you will be children of the Most High; for he is kind to the ungrateful and the wicked.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Be merciful, just as your Father is merciful.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> \"Do not judge, and you will not be judged; do not condemn, and you will not be condemned. Forgive, and you will be forgiven;</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> give, and it will be given to you. A good measure, pressed down, shaken together, running over, will be put into your lap; for the measure you give will be the measure you get back.\"</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> He also told them a parable: \"Can a blind person guide a blind person? Will not both fall into a pit?</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> A disciple is not above the teacher, but everyone who is fully qualified will be like the teacher.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> Why do you see the speck in your neighbor's eye, but do not notice the log in your own eye? </VERS>\r\n\t\t\t<VERS vnumber=\"42\"> Or how can you say to your neighbor, 'Friend, let me take out the speck in your eye,' when you yourself do not see the log in your own eye? You hypocrite, first take the log out of your own eye, and then you will see clearly to take the speck out of your neighbor's eye. </VERS>\r\n\t\t\t<VERS vnumber=\"43\"> \"No good tree bears bad fruit, nor again does a bad tree bear good fruit;</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> for each tree is known by its own fruit. Figs are not gathered from thorns, nor are grapes picked from a bramble bush.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> The good person out of the good treasure of the heart produces good, and the evil person out of evil treasure produces evil; for it is out of the abundance of the heart that the mouth speaks.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> \"Why do you call me 'Lord, Lord,' and do not do what I tell you?</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> I will show you what someone is like who comes to me, hears my words, and acts on them.</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> That one is like a man building a house, who dug deeply and laid the foundation on rock; when a flood arose, the river burst against that house but could not shake it, because it had been well built. </VERS>\r\n\t\t\t<VERS vnumber=\"49\"> But the one who hears and does not act is like a man who built a house on the ground without a foundation. When the river burst against it, immediately it fell, and great was the ruin of that house.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"7\">\r\n\t\t\t<VERS vnumber=\"1\"> After Jesus had finished all his sayings in the hearing of the people, he entered Capernaum. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> A centurion there had a slave whom he valued highly, and who was ill and close to death.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> When he heard about Jesus, he sent some Jewish elders to him, asking him to come and heal his slave.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> When they came to Jesus, they appealed to him earnestly, saying, \"He is worthy of having you do this for him,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> for he loves our people, and it is he who built our synagogue for us.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And Jesus went with them, but when he was not far from the house, the centurion sent friends to say to him, \"Lord, do not trouble yourself, for I am not worthy to have you come under my roof;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> therefore I did not presume to come to you. But only speak the word, and let my servant be healed.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> For I also am a man set under authority, with soldiers under me; and I say to one, 'Go,' and he goes, and to another, 'Come,' and he comes, and to my slave, 'Do this,' and the slave does it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> When Jesus heard this he was amazed at him, and turning to the crowd that followed him, he said, \"I tell you, not even in Israel have I found such faith.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> When those who had been sent returned to the house, they found the slave in good health.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Soon afterwards he went to a town called Nain, and his disciples and a large crowd went with him. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> As he approached the gate of the town, a man who had died was being carried out. He was his mother's only son, and she was a widow; and with her was a large crowd from the town.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> When the Lord saw her, he had compassion for her and said to her, \"Do not weep.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then he came forward and touched the bier, and the bearers stood still. And he said, \"Young man, I say to you, rise!\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The dead man sat up and began to speak, and Jesus gave him to his mother. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Fear seized all of them; and they glorified God, saying, \"A great prophet has risen among us!\" and \"God has looked favorably on his people!\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> This word about him spread throughout Judea and all the surrounding country.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The disciples of John reported all these things to him. So John summoned two of his disciples</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> and sent them to the Lord to ask, \"Are you the one who is to come, or are we to wait for another?\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> When the men had come to him, they said, \"John the Baptist has sent us to you to ask, 'Are you the one who is to come, or are we to wait for another?'\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Jesus had just then cured many people of diseases, plagues, and evil spirits, and had given sight to many who were blind. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> And he answered them, \"Go and tell John what you have seen and heard: the blind receive their sight, the lame walk, the lepers are cleansed, the deaf hear, the dead are raised, the poor have good news brought to them. </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> And blessed is anyone who takes no offense at me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> When John's messengers had gone, Jesus began to speak to the crowds about John: \"What did you go out into the wilderness to look at? A reed shaken by the wind? </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> What then did you go out to see? Someone dressed in soft robes? Look, those who put on fine clothing and live in luxury are in royal palaces. </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> What then did you go out to see? A prophet? Yes, I tell you, and more than a prophet.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> This is the one about whom it is written, 'See, I am sending my messenger ahead of you, who will prepare your way before you.'</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> I tell you, among those born of women no one is greater than John; yet the least in the kingdom of God is greater than he.\"</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> (And all the people who heard this, including the tax collectors, acknowledged the justice of God, because they had been baptized with John's baptism. </VERS>\r\n\t\t\t<VERS vnumber=\"30\"> But by refusing to be baptized by him, the Pharisees and the lawyers rejected God's purpose for themselves.)</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> \"To what then will I compare the people of this generation, and what are they like?</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> They are like children sitting in the marketplace and calling to one another, 'We played the flute for you, and you did not dance; we wailed, and you did not weep.'</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> For John the Baptist has come eating no bread and drinking no wine, and you say, 'He has a demon';</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> the Son of Man has come eating and drinking, and you say, 'Look, a glutton and a drunkard, a friend of tax collectors and sinners!'</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Nevertheless, wisdom is vindicated by all her children.\"</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> One of the Pharisees asked Jesus to eat with him, and he went into the Pharisee's house and took his place at the table. </VERS>\r\n\t\t\t<VERS vnumber=\"37\"> And a woman in the city, who was a sinner, having learned that he was eating in the Pharisee's house, brought an alabaster jar of ointment.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> She stood behind him at his feet, weeping, and began to bathe his feet with her tears and to dry them with her hair. Then she continued kissing his feet and anointing them with the ointment.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> Now when the Pharisee who had invited him saw it, he said to himself, \"If this man were a prophet, he would have known who and what kind of woman this is who is touching him-- that she is a sinner.\"</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> Jesus spoke up and said to him, \"Simon, I have something to say to you.\" \"Teacher,\" he replied, \"Speak.\"</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> \"A certain creditor had two debtors; one owed five hundred denarii, and the other fifty. </VERS>\r\n\t\t\t<VERS vnumber=\"42\"> When they could not pay, he canceled the debts for both of them. Now which of them will love him more?\"</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> Simon answered, \"I suppose the one for whom he canceled the greater debt.\" And Jesus said to him, \"You have judged rightly.\" </VERS>\r\n\t\t\t<VERS vnumber=\"44\"> Then turning toward the woman, he said to Simon, \"Do you see this woman? I entered your house; you gave me no water for my feet, but she has bathed my feet with her tears and dried them with her hair.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> You gave me no kiss, but from the time I came in she has not stopped kissing my feet.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> You did not anoint my head with oil, but she has anointed my feet with ointment.</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> Therefore, I tell you, her sins, which were many, have been forgiven; hence she has shown great love. But the one to whom little is forgiven, loves little.\"</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> Then he said to her, \"Your sins are forgiven.\"</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> But those who were at the table with him began to say among themselves, \"Who is this who even forgives sins?\"</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> And he said to the woman, \"Your faith has saved you; go in peace.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"8\">\r\n\t\t\t<VERS vnumber=\"1\"> Soon afterwards he went on through cities and villages, proclaiming and bringing the good news of the kingdom of God. The twelve were with him,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> as well as some women who had been cured of evil spirits and infirmities: Mary, called Magdalene, from whom seven demons had gone out,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> and Joanna, the wife of Herod's steward Chuza, and Susanna, and many others, who provided for them out of their resources. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> When a great crowd gathered and people from town after town came to him, he said in a parable:</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> \"A sower went out to sow his seed; and as he sowed, some fell on the path and was trampled on, and the birds of the air ate it up.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Some fell on the rock; and as it grew up, it withered for lack of moisture.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Some fell among thorns, and the thorns grew with it and choked it.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Some fell into good soil, and when it grew, it produced a hundredfold.\" As he said this, he called out, \"Let anyone with ears to hear listen!\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then his disciples asked him what this parable meant.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> He said, \"To you it has been given to know the secrets of the kingdom of God; but to others I speak in parables, so that 'looking they may not perceive, and listening they may not understand.' </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> \"Now the parable is this: The seed is the word of God.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The ones on the path are those who have heard; then the devil comes and takes away the word from their hearts, so that they may not believe and be saved.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The ones on the rock are those who, when they hear the word, receive it with joy. But these have no root; they believe only for a while and in a time of testing fall away.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> As for what fell among the thorns, these are the ones who hear; but as they go on their way, they are choked by the cares and riches and pleasures of life, and their fruit does not mature.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> But as for that in the good soil, these are the ones who, when they hear the word, hold it fast in an honest and good heart, and bear fruit with patient endurance.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> \"No one after lighting a lamp hides it under a jar, or puts it under a bed, but puts it on a lampstand, so that those who enter may see the light.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> For nothing is hidden that will not be disclosed, nor is anything secret that will not become known and come to light.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then pay attention to how you listen; for to those who have, more will be given; and from those who do not have, even what they seem to have will be taken away.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Then his mother and his brothers came to him, but they could not reach him because of the crowd.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> And he was told, \"Your mother and your brothers are standing outside, wanting to see you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> But he said to them, \"My mother and my brothers are those who hear the word of God and do it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> One day he got into a boat with his disciples, and he said to them, \"Let us go across to the other side of the lake.\" So they put out,</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> and while they were sailing he fell asleep. A windstorm swept down on the lake, and the boat was filling with water, and they were in danger.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> They went to him and woke him up, shouting, \"Master, Master, we are perishing!\" And he woke up and rebuked the wind and the raging waves; they ceased, and there was a calm.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> He said to them, \"Where is your faith?\" They were afraid and amazed, and said to one another, \"Who then is this, that he commands even the winds and the water, and they obey him?\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Then they arrived at the country of the Gerasenes, which is opposite Galilee. </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> As he stepped out on land, a man of the city who had demons met him. For a long time he had worn no clothes, and he did not live in a house but in the tombs. </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> When he saw Jesus, he fell down before him and shouted at the top of his voice, \"What have you to do with me, Jesus, Son of the Most High God? I beg you, do not torment me\"--</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> for Jesus had commanded the unclean spirit to come out of the man. (For many times it had seized him; he was kept under guard and bound with chains and shackles, but he would break the bonds and be driven by the demon into the wilds.) </VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Jesus then asked him, \"What is your name?\" He said, \"Legion\"; for many demons had entered him.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> They begged him not to order them to go back into the abyss.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Now there on the hillside a large herd of swine was feeding; and the demons begged Jesus to let them enter these. So he gave them permission. </VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Then the demons came out of the man and entered the swine, and the herd rushed down the steep bank into the lake and was drowned.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> When the swineherds saw what had happened, they ran off and told it in the city and in the country.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Then people came out to see what had happened, and when they came to Jesus, they found the man from whom the demons had gone sitting at the feet of Jesus, clothed and in his right mind. And they were afraid.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Those who had seen it told them how the one who had been possessed by demons had been healed.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Then all the people of the surrounding country of the Gerasenes asked Jesus to leave them; for they were seized with great fear. So he got into the boat and returned. </VERS>\r\n\t\t\t<VERS vnumber=\"38\"> The man from whom the demons had gone begged that he might be with him; but Jesus sent him away, saying, </VERS>\r\n\t\t\t<VERS vnumber=\"39\"> \"Return to your home, and declare how much God has done for you.\" So he went away, proclaiming throughout the city how much Jesus had done for him.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> Now when Jesus returned, the crowd welcomed him, for they were all waiting for him.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> Just then there came a man named Jairus, a leader of the synagogue. He fell at Jesus' feet and begged him to come to his house,</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> for he had an only daughter, about twelve years old, who was dying. As he went, the crowds pressed in on him.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> Now there was a woman who had been suffering from hemorrhages for twelve years; and though she had spent all she had on physicians, no one could cure her. </VERS>\r\n\t\t\t<VERS vnumber=\"44\"> She came up behind him and touched the fringe of his clothes, and immediately her hemorrhage stopped.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> Then Jesus asked, \"Who touched me?\" When all denied it, Peter said, \"Master, the crowds surround you and press in on you.\" </VERS>\r\n\t\t\t<VERS vnumber=\"46\"> But Jesus said, \"Someone touched me; for I noticed that power had gone out from me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> When the woman saw that she could not remain hidden, she came trembling; and falling down before him, she declared in the presence of all the people why she had touched him, and how she had been immediately healed.</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> He said to her, \"Daughter, your faith has made you well; go in peace.\"</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> While he was still speaking, someone came from the leader's house to say, \"Your daughter is dead; do not trouble the teacher any longer.\"</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> When Jesus heard this, he replied, \"Do not fear. Only believe, and she will be saved.\"</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> When he came to the house, he did not allow anyone to enter with him, except Peter, John, and James, and the child's father and mother.</VERS>\r\n\t\t\t<VERS vnumber=\"52\"> They were all weeping and wailing for her; but he said, \"Do not weep; for she is not dead but sleeping.\"</VERS>\r\n\t\t\t<VERS vnumber=\"53\"> And they laughed at him, knowing that she was dead.</VERS>\r\n\t\t\t<VERS vnumber=\"54\"> But he took her by the hand and called out, \"Child, get up!\"</VERS>\r\n\t\t\t<VERS vnumber=\"55\"> Her spirit returned, and she got up at once. Then he directed them to give her something to eat.</VERS>\r\n\t\t\t<VERS vnumber=\"56\"> Her parents were astounded; but he ordered them to tell no one what had happened.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"9\">\r\n\t\t\t<VERS vnumber=\"1\"> Then Jesus called the twelve together and gave them power and authority over all demons and to cure diseases, </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> and he sent them out to proclaim the kingdom of God and to heal.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> He said to them, \"Take nothing for your journey, no staff, nor bag, nor bread, nor money-- not even an extra tunic.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Whatever house you enter, stay there, and leave from there.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Wherever they do not welcome you, as you are leaving that town shake the dust off your feet as a testimony against them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> They departed and went through the villages, bringing the good news and curing diseases everywhere.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Now Herod the ruler heard about all that had taken place, and he was perplexed, because it was said by some that John had been raised from the dead, </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> by some that Elijah had appeared, and by others that one of the ancient prophets had arisen.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Herod said, \"John I beheaded; but who is this about whom I hear such things?\" And he tried to see him.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> On their return the apostles told Jesus all they had done. He took them with him and withdrew privately to a city called Bethsaida. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> When the crowds found out about it, they followed him; and he welcomed them, and spoke to them about the kingdom of God, and healed those who needed to be cured.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The day was drawing to a close, and the twelve came to him and said, \"Send the crowd away, so that they may go into the surrounding villages and countryside, to lodge and get provisions; for we are here in a deserted place.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> But he said to them, \"You give them something to eat.\" They said, \"We have no more than five loaves and two fish-- unless we are to go and buy food for all these people.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> For there were about five thousand men. And he said to his disciples, \"Make them sit down in groups of about fifty each.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> They did so and made them all sit down.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> And taking the five loaves and the two fish, he looked up to heaven, and blessed and broke them, and gave them to the disciples to set before the crowd.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> And all ate and were filled. What was left over was gathered up, twelve baskets of broken pieces.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Once when Jesus was praying alone, with only the disciples near him, he asked them, \"Who do the crowds say that I am?\" </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> They answered, \"John the Baptist; but others, Elijah; and still others, that one of the ancient prophets has arisen.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> He said to them, \"But who do you say that I am?\" Peter answered, \"The Messiah of God.\" </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> He sternly ordered and commanded them not to tell anyone,</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> saying, \"The Son of Man must undergo great suffering, and be rejected by the elders, chief priests, and scribes, and be killed, and on the third day be raised.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Then he said to them all, \"If any want to become my followers, let them deny themselves and take up their cross daily and follow me.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> For those who want to save their life will lose it, and those who lose their life for my sake will save it.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> What does it profit them if they gain the whole world, but lose or forfeit themselves?</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Those who are ashamed of me and of my words, of them the Son of Man will be ashamed when he comes in his glory and the glory of the Father and of the holy angels.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> But truly I tell you, there are some standing here who will not taste death before they see the kingdom of God.\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Now about eight days after these sayings Jesus took with him Peter and John and James, and went up on the mountain to pray. </VERS>\r\n\t\t\t<VERS vnumber=\"29\"> And while he was praying, the appearance of his face changed, and his clothes became dazzling white.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Suddenly they saw two men, Moses and Elijah, talking to him.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> They appeared in glory and were speaking of his departure, which he was about to accomplish at Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Now Peter and his companions were weighed down with sleep; but since they had stayed awake, they saw his glory and the two men who stood with him. </VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Just as they were leaving him, Peter said to Jesus, \"Master, it is good for us to be here; let us make three dwellings, one for you, one for Moses, and one for Elijah\"-- not knowing what he said.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> While he was saying this, a cloud came and overshadowed them; and they were terrified as they entered the cloud.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Then from the cloud came a voice that said, \"This is my Son, my Chosen; listen to him!\" </VERS>\r\n\t\t\t<VERS vnumber=\"36\"> When the voice had spoken, Jesus was found alone. And they kept silent and in those days told no one any of the things they had seen.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> On the next day, when they had come down from the mountain, a great crowd met him.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Just then a man from the crowd shouted, \"Teacher, I beg you to look at my son; he is my only child.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> Suddenly a spirit seizes him, and all at once he shrieks. It convulses him until he foams at the mouth; it mauls him and will scarcely leave him. </VERS>\r\n\t\t\t<VERS vnumber=\"40\"> I begged your disciples to cast it out, but they could not.\"</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> Jesus answered, \"You faithless and perverse generation, how much longer must I be with you and bear with you? Bring your son here.\"</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> While he was coming, the demon dashed him to the ground in convulsions. But Jesus rebuked the unclean spirit, healed the boy, and gave him back to his father.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> And all were astounded at the greatness of God. While everyone was amazed at all that he was doing, he said to his disciples,</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> \"Let these words sink into your ears: The Son of Man is going to be betrayed into human hands.\"</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> But they did not understand this saying; its meaning was concealed from them, so that they could not perceive it. And they were afraid to ask him about this saying.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> An argument arose among them as to which one of them was the greatest.</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> But Jesus, aware of their inner thoughts, took a little child and put it by his side,</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> and said to them, \"Whoever welcomes this child in my name welcomes me, and whoever welcomes me welcomes the one who sent me; for the least among all of you is the greatest.\"</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> John answered, \"Master, we saw someone casting out demons in your name, and we tried to stop him, because he does not follow with us.\"</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> But Jesus said to him, \"Do not stop him; for whoever is not against you is for you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> When the days drew near for him to be taken up, he set his face to go to Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"52\"> And he sent messengers ahead of him. On their way they entered a village of the Samaritans to make ready for him;</VERS>\r\n\t\t\t<VERS vnumber=\"53\"> but they did not receive him, because his face was set toward Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"54\"> When his disciples James and John saw it, they said, \"Lord, do you want us to command fire to come down from heaven and consume them?\" </VERS>\r\n\t\t\t<VERS vnumber=\"55\"> But he turned and rebuked them.</VERS>\r\n\t\t\t<VERS vnumber=\"56\"> Then they went on to another village. </VERS>\r\n\t\t\t<VERS vnumber=\"57\"> As they were going along the road, someone said to him, \"I will follow you wherever you go.\"</VERS>\r\n\t\t\t<VERS vnumber=\"58\"> And Jesus said to him, \"Foxes have holes, and birds of the air have nests; but the Son of Man has nowhere to lay his head.\"</VERS>\r\n\t\t\t<VERS vnumber=\"59\"> To another he said, \"Follow me.\" But he said, \"Lord, first let me go and bury my father.\"</VERS>\r\n\t\t\t<VERS vnumber=\"60\"> But Jesus said to him, \"Let the dead bury their own dead; but as for you, go and proclaim the kingdom of God.\" </VERS>\r\n\t\t\t<VERS vnumber=\"61\"> Another said, \"I will follow you, Lord; but let me first say farewell to those at my home.\"</VERS>\r\n\t\t\t<VERS vnumber=\"62\"> Jesus said to him, \"No one who puts a hand to the plow and looks back is fit for the kingdom of God.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"10\">\r\n\t\t\t<VERS vnumber=\"1\"> After this the Lord appointed seventy others and sent them on ahead of him in pairs to every town and place where he himself intended to go. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He said to them, \"The harvest is plentiful, but the laborers are few; therefore ask the Lord of the harvest to send out laborers into his harvest.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Go on your way. See, I am sending you out like lambs into the midst of wolves.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Carry no purse, no bag, no sandals; and greet no one on the road.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Whatever house you enter, first say, 'Peace to this house!'</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And if anyone is there who shares in peace, your peace will rest on that person; but if not, it will return to you.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Remain in the same house, eating and drinking whatever they provide, for the laborer deserves to be paid. Do not move about from house to house.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Whenever you enter a town and its people welcome you, eat what is set before you;</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> cure the sick who are there, and say to them, 'The kingdom of God has come near to you.' </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> But whenever you enter a town and they do not welcome you, go out into its streets and say,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> 'Even the dust of your town that clings to our feet, we wipe off in protest against you. Yet know this: the kingdom of God has come near.' </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> I tell you, on that day it will be more tolerable for Sodom than for that town.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> \"Woe to you, Chorazin! Woe to you, Bethsaida! For if the deeds of power done in you had been done in Tyre and Sidon, they would have repented long ago, sitting in sackcloth and ashes.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But at the judgment it will be more tolerable for Tyre and Sidon than for you.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And you, Capernaum, will you be exalted to heaven? No, you will be brought down to Hades.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> \"Whoever listens to you listens to me, and whoever rejects you rejects me, and whoever rejects me rejects the one who sent me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The seventy returned with joy, saying, \"Lord, in your name even the demons submit to us!\" </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> He said to them, \"I watched Satan fall from heaven like a flash of lightning.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> See, I have given you authority to tread on snakes and scorpions, and over all the power of the enemy; and nothing will hurt you.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Nevertheless, do not rejoice at this, that the spirits submit to you, but rejoice that your names are written in heaven.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> At that same hour Jesus rejoiced in the Holy Spirit and said, \"I thank you, Father, Lord of heaven and earth, because you have hidden these things from the wise and the intelligent and have revealed them to infants; yes, Father, for such was your gracious will. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> All things have been handed over to me by my Father; and no one knows who the Son is except the Father, or who the Father is except the Son and anyone to whom the Son chooses to reveal him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Then turning to the disciples, Jesus said to them privately, \"Blessed are the eyes that see what you see! </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> For I tell you that many prophets and kings desired to see what you see, but did not see it, and to hear what you hear, but did not hear it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Just then a lawyer stood up to test Jesus. \"Teacher,\" he said, \"what must I do to inherit eternal life?\" </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> He said to him, \"What is written in the law? What do you read there?\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> He answered, \"You shall love the Lord your God with all your heart, and with all your soul, and with all your strength, and with all your mind; and your neighbor as yourself.\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> And he said to him, \"You have given the right answer; do this, and you will live.\"</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> But wanting to justify himself, he asked Jesus, \"And who is my neighbor?\"</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Jesus replied, \"A man was going down from Jerusalem to Jericho, and fell into the hands of robbers, who stripped him, beat him, and went away, leaving him half dead.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Now by chance a priest was going down that road; and when he saw him, he passed by on the other side.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> So likewise a Levite, when he came to the place and saw him, passed by on the other side.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> But a Samaritan while traveling came near him; and when he saw him, he was moved with pity.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> He went to him and bandaged his wounds, having poured oil and wine on them. Then he put him on his own animal, brought him to an inn, and took care of him.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> The next day he took out two denarii, gave them to the innkeeper, and said, 'Take care of him; and when I come back, I will repay you whatever more you spend.' </VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Which of these three, do you think, was a neighbor to the man who fell into the hands of the robbers?\"</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> He said, \"The one who showed him mercy.\" Jesus said to him, \"Go and do likewise.\"</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Now as they went on their way, he entered a certain village, where a woman named Martha welcomed him into her home.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> She had a sister named Mary, who sat at the Lord's feet and listened to what he was saying.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> But Martha was distracted by her many tasks; so she came to him and asked, \"Lord, do you not care that my sister has left me to do all the work by myself? Tell her then to help me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> But the Lord answered her, \"Martha, Martha, you are worried and distracted by many things;</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> there is need of only one thing. Mary has chosen the better part, which will not be taken away from her.\" </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"11\">\r\n\t\t\t<VERS vnumber=\"1\"> He was praying in a certain place, and after he had finished, one of his disciples said to him, \"Lord, teach us to pray, as John taught his disciples.\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He said to them, \"When you pray, say: Father, hallowed be your name. Your kingdom come. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Give us each day our daily bread. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> And forgive us our sins, for we ourselves forgive everyone indebted to us. And do not bring us to the time of trial.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> And he said to them, \"Suppose one of you has a friend, and you go to him at midnight and say to him, 'Friend, lend me three loaves of bread;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> for a friend of mine has arrived, and I have nothing to set before him.'</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> And he answers from within, 'Do not bother me; the door has already been locked, and my children are with me in bed; I cannot get up and give you anything.'</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> I tell you, even though he will not get up and give him anything because he is his friend, at least because of his persistence he will get up and give him whatever he needs.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> \"So I say to you, Ask, and it will be given you; search, and you will find; knock, and the door will be opened for you.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For everyone who asks receives, and everyone who searches finds, and for everyone who knocks, the door will be opened.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Is there anyone among you who, if your child asks for a fish, will give a snake instead of a fish? </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Or if the child asks for an egg, will give a scorpion?</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> If you then, who are evil, know how to give good gifts to your children, how much more will the heavenly Father give the Holy Spirit to those who ask him!\" </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Now he was casting out a demon that was mute; when the demon had gone out, the one who had been mute spoke, and the crowds were amazed.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> But some of them said, \"He casts out demons by Beelzebul, the ruler of the demons.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Others, to test him, kept demanding from him a sign from heaven.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> But he knew what they were thinking and said to them, \"Every kingdom divided against itself becomes a desert, and house falls on house.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> If Satan also is divided against himself, how will his kingdom stand?-- for you say that I cast out the demons by Beelzebul.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Now if I cast out the demons by Beelzebul, by whom do your exorcists cast them out? Therefore they will be your judges. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> But if it is by the finger of God that I cast out the demons, then the kingdom of God has come to you.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> When a strong man, fully armed, guards his castle, his property is safe.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> But when one stronger than he attacks him and overpowers him, he takes away his armor in which he trusted and divides his plunder.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Whoever is not with me is against me, and whoever does not gather with me scatters.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> \"When the unclean spirit has gone out of a person, it wanders through waterless regions looking for a resting place, but not finding any, it says, 'I will return to my house from which I came.'</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> When it comes, it finds it swept and put in order.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Then it goes and brings seven other spirits more evil than itself, and they enter and live there; and the last state of that person is worse than the first.\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> While he was saying this, a woman in the crowd raised her voice and said to him, \"Blessed is the womb that bore you and the breasts that nursed you!\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> But he said, \"Blessed rather are those who hear the word of God and obey it!\"</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> When the crowds were increasing, he began to say, \"This generation is an evil generation; it asks for a sign, but no sign will be given to it except the sign of Jonah.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> For just as Jonah became a sign to the people of Nineveh, so the Son of Man will be to this generation.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> The queen of the South will rise at the judgment with the people of this generation and condemn them, because she came from the ends of the earth to listen to the wisdom of Solomon, and see, something greater than Solomon is here!</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> The people of Nineveh will rise up at the judgment with this generation and condemn it, because they repented at the proclamation of Jonah, and see, something greater than Jonah is here!</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> \"No one after lighting a lamp puts it in a cellar, but on the lampstand so that those who enter may see the light. </VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Your eye is the lamp of your body. If your eye is healthy, your whole body is full of light; but if it is not healthy, your body is full of darkness.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Therefore consider whether the light in you is not darkness.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> If then your whole body is full of light, with no part of it in darkness, it will be as full of light as when a lamp gives you light with its rays.\"</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> While he was speaking, a Pharisee invited him to dine with him; so he went in and took his place at the table.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> The Pharisee was amazed to see that he did not first wash before dinner.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> Then the Lord said to him, \"Now you Pharisees clean the outside of the cup and of the dish, but inside you are full of greed and wickedness.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> You fools! Did not the one who made the outside make the inside also?</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> So give for alms those things that are within; and see, everything will be clean for you.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> \"But woe to you Pharisees! For you tithe mint and rue and herbs of all kinds, and neglect justice and the love of God; it is these you ought to have practiced, without neglecting the others.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> Woe to you Pharisees! For you love to have the seat of honor in the synagogues and to be greeted with respect in the marketplaces.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> Woe to you! For you are like unmarked graves, and people walk over them without realizing it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> One of the lawyers answered him, \"Teacher, when you say these things, you insult us too.\"</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> And he said, \"Woe also to you lawyers! For you load people with burdens hard to bear, and you yourselves do not lift a finger to ease them.</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> Woe to you! For you build the tombs of the prophets whom your ancestors killed.</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> So you are witnesses and approve of the deeds of your ancestors; for they killed them, and you build their tombs.</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> Therefore also the Wisdom of God said, 'I will send them prophets and apostles, some of whom they will kill and persecute,'</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> so that this generation may be charged with the blood of all the prophets shed since the foundation of the world,</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> from the blood of Abel to the blood of Zechariah, who perished between the altar and the sanctuary. Yes, I tell you, it will be charged against this generation.</VERS>\r\n\t\t\t<VERS vnumber=\"52\"> Woe to you lawyers! For you have taken away the key of knowledge; you did not enter yourselves, and you hindered those who were entering.\"</VERS>\r\n\t\t\t<VERS vnumber=\"53\"> When he went outside, the scribes and the Pharisees began to be very hostile toward him and to cross-examine him about many things,</VERS>\r\n\t\t\t<VERS vnumber=\"54\"> lying in wait for him, to catch him in something he might say.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"12\">\r\n\t\t\t<VERS vnumber=\"1\"> Meanwhile, when the crowd gathered by the thousands, so that they trampled on one another, he began to speak first to his disciples, \"Beware of the yeast of the Pharisees, that is, their hypocrisy.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Nothing is covered up that will not be uncovered, and nothing secret that will not become known.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Therefore whatever you have said in the dark will be heard in the light, and what you have whispered behind closed doors will be proclaimed from the housetops.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> \"I tell you, my friends, do not fear those who kill the body, and after that can do nothing more.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> But I will warn you whom to fear: fear him who, after he has killed, has authority to cast into hell. Yes, I tell you, fear him! </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Are not five sparrows sold for two pennies? Yet not one of them is forgotten in God's sight.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But even the hairs of your head are all counted. Do not be afraid; you are of more value than many sparrows.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> \"And I tell you, everyone who acknowledges me before others, the Son of Man also will acknowledge before the angels of God;</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> but whoever denies me before others will be denied before the angels of God.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And everyone who speaks a word against the Son of Man will be forgiven; but whoever blasphemes against the Holy Spirit will not be forgiven.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> When they bring you before the synagogues, the rulers, and the authorities, do not worry about how you are to defend yourselves or what you are to say; </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> for the Holy Spirit will teach you at that very hour what you ought to say.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Someone in the crowd said to him, \"Teacher, tell my brother to divide the family inheritance with me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But he said to him, \"Friend, who set me to be a judge or arbitrator over you?\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And he said to them, \"Take care! Be on your guard against all kinds of greed; for one's life does not consist in the abundance of possessions.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then he told them a parable: \"The land of a rich man produced abundantly.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> And he thought to himself, 'What should I do, for I have no place to store my crops?'</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then he said, 'I will do this: I will pull down my barns and build larger ones, and there I will store all my grain and my goods.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> And I will say to my soul, 'Soul, you have ample goods laid up for many years; relax, eat, drink, be merry.'</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> But God said to him, 'You fool! This very night your life is being demanded of you. And the things you have prepared, whose will they be?'</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> So it is with those who store up treasures for themselves but are not rich toward God.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> He said to his disciples, \"Therefore I tell you, do not worry about your life, what you will eat, or about your body, what you will wear.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> For life is more than food, and the body more than clothing.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Consider the ravens: they neither sow nor reap, they have neither storehouse nor barn, and yet God feeds them. Of how much more value are you than the birds!</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> And can any of you by worrying add a single hour to your span of life? </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> If then you are not able to do so small a thing as that, why do you worry about the rest?</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Consider the lilies, how they grow: they neither toil nor spin; yet I tell you, even Solomon in all his glory was not clothed like one of these. </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> But if God so clothes the grass of the field, which is alive today and tomorrow is thrown into the oven, how much more will he clothe you-- you of little faith!</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> And do not keep striving for what you are to eat and what you are to drink, and do not keep worrying.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> For it is the nations of the world that strive after all these things, and your Father knows that you need them.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Instead, strive for his kingdom, and these things will be given to you as well. </VERS>\r\n\t\t\t<VERS vnumber=\"32\"> \"Do not be afraid, little flock, for it is your Father's good pleasure to give you the kingdom.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Sell your possessions, and give alms. Make purses for yourselves that do not wear out, an unfailing treasure in heaven, where no thief comes near and no moth destroys.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> For where your treasure is, there your heart will be also.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> \"Be dressed for action and have your lamps lit;</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> be like those who are waiting for their master to return from the wedding banquet, so that they may open the door for him as soon as he comes and knocks.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Blessed are those slaves whom the master finds alert when he comes; truly I tell you, he will fasten his belt and have them sit down to eat, and he will come and serve them.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> If he comes during the middle of the night, or near dawn, and finds them so, blessed are those slaves.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> \"But know this: if the owner of the house had known at what hour the thief was coming, he would not have let his house be broken into. </VERS>\r\n\t\t\t<VERS vnumber=\"40\"> You also must be ready, for the Son of Man is coming at an unexpected hour.\"</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> Peter said, \"Lord, are you telling this parable for us or for everyone?\"</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> And the Lord said, \"Who then is the faithful and prudent manager whom his master will put in charge of his slaves, to give them their allowance of food at the proper time?</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> Blessed is that slave whom his master will find at work when he arrives.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> Truly I tell you, he will put that one in charge of all his possessions.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> But if that slave says to himself, 'My master is delayed in coming,' and if he begins to beat the other slaves, men and women, and to eat and drink and get drunk,</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> the master of that slave will come on a day when he does not expect him and at an hour that he does not know, and will cut him in pieces, and put him with the unfaithful.</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> That slave who knew what his master wanted, but did not prepare himself or do what was wanted, will receive a severe beating.</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> But the one who did not know and did what deserved a beating will receive a light beating. From everyone to whom much has been given, much will be required; and from the one to whom much has been entrusted, even more will be demanded.</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> \"I came to bring fire to the earth, and how I wish it were already kindled!</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> I have a baptism with which to be baptized, and what stress I am under until it is completed!</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> Do you think that I have come to bring peace to the earth? No, I tell you, but rather division!</VERS>\r\n\t\t\t<VERS vnumber=\"52\"> From now on five in one household will be divided, three against two and two against three;</VERS>\r\n\t\t\t<VERS vnumber=\"53\"> they will be divided: father against son and son against father, mother against daughter and daughter against mother, mother-in-law against her daughter-in-law and daughter-in-law against mother-in-law.\"</VERS>\r\n\t\t\t<VERS vnumber=\"54\"> He also said to the crowds, \"When you see a cloud rising in the west, you immediately say, 'It is going to rain'; and so it happens.</VERS>\r\n\t\t\t<VERS vnumber=\"55\"> And when you see the south wind blowing, you say, 'There will be scorching heat'; and it happens.</VERS>\r\n\t\t\t<VERS vnumber=\"56\"> You hypocrites! You know how to interpret the appearance of earth and sky, but why do you not know how to interpret the present time?</VERS>\r\n\t\t\t<VERS vnumber=\"57\"> \"And why do you not judge for yourselves what is right?</VERS>\r\n\t\t\t<VERS vnumber=\"58\"> Thus, when you go with your accuser before a magistrate, on the way make an effort to settle the case, or you may be dragged before the judge, and the judge hand you over to the officer, and the officer throw you in prison. </VERS>\r\n\t\t\t<VERS vnumber=\"59\"> I tell you, you will never get out until you have paid the very last penny.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"13\">\r\n\t\t\t<VERS vnumber=\"1\"> At that very time there were some present who told him about the Galileans whose blood Pilate had mingled with their sacrifices.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He asked them, \"Do you think that because these Galileans suffered in this way they were worse sinners than all other Galileans?</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> No, I tell you; but unless you repent, you will all perish as they did.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Or those eighteen who were killed when the tower of Siloam fell on them-- do you think that they were worse offenders than all the others living in Jerusalem?</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> No, I tell you; but unless you repent, you will all perish just as they did.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then he told this parable: \"A man had a fig tree planted in his vineyard; and he came looking for fruit on it and found none.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> So he said to the gardener, 'See here! For three years I have come looking for fruit on this fig tree, and still I find none. Cut it down! Why should it be wasting the soil?'</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> He replied, 'Sir, let it alone for one more year, until I dig around it and put manure on it.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> If it bears fruit next year, well and good; but if not, you can cut it down.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Now he was teaching in one of the synagogues on the sabbath.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> And just then there appeared a woman with a spirit that had crippled her for eighteen years. She was bent over and was quite unable to stand up straight.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> When Jesus saw her, he called her over and said, \"Woman, you are set free from your ailment.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> When he laid his hands on her, immediately she stood up straight and began praising God.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But the leader of the synagogue, indignant because Jesus had cured on the sabbath, kept saying to the crowd, \"There are six days on which work ought to be done; come on those days and be cured, and not on the sabbath day.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> But the Lord answered him and said, \"You hypocrites! Does not each of you on the sabbath untie his ox or his donkey from the manger, and lead it away to give it water?</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> And ought not this woman, a daughter of Abraham whom Satan bound for eighteen long years, be set free from this bondage on the sabbath day?\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> When he said this, all his opponents were put to shame; and the entire crowd was rejoicing at all the wonderful things that he was doing.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> He said therefore, \"What is the kingdom of God like? And to what should I compare it?</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> It is like a mustard seed that someone took and sowed in the garden; it grew and became a tree, and the birds of the air made nests in its branches.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> And again he said, \"To what should I compare the kingdom of God?</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> It is like yeast that a woman took and mixed in with three measures of flour until all of it was leavened.\" </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Jesus went through one town and village after another, teaching as he made his way to Jerusalem. </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Someone asked him, \"Lord, will only a few be saved?\" He said to them,</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> \"Strive to enter through the narrow door; for many, I tell you, will try to enter and will not be able.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> When once the owner of the house has got up and shut the door, and you begin to stand outside and to knock at the door, saying, 'Lord, open to us,' then in reply he will say to you, 'I do not know where you come from.'</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Then you will begin to say, 'We ate and drank with you, and you taught in our streets.'</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> But he will say, 'I do not know where you come from; go away from me, all you evildoers!'</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> There will be weeping and gnashing of teeth when you see Abraham and Isaac and Jacob and all the prophets in the kingdom of God, and you yourselves thrown out.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Then people will come from east and west, from north and south, and will eat in the kingdom of God.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Indeed, some are last who will be first, and some are first who will be last.\"</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> At that very hour some Pharisees came and said to him, \"Get away from here, for Herod wants to kill you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> He said to them, \"Go and tell that fox for me, 'Listen, I am casting out demons and performing cures today and tomorrow, and on the third day I finish my work. </VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Yet today, tomorrow, and the next day I must be on my way, because it is impossible for a prophet to be killed outside of Jerusalem.'</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Jerusalem, Jerusalem, the city that kills the prophets and stones those who are sent to it! How often have I desired to gather your children together as a hen gathers her brood under her wings, and you were not willing!</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> See, your house is left to you. And I tell you, you will not see me until the time comes when you say, 'Blessed is the one who comes in the name of the Lord.'\" </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"14\">\r\n\t\t\t<VERS vnumber=\"1\"> On one occasion when Jesus was going to the house of a leader of the Pharisees to eat a meal on the sabbath, they were watching him closely. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Just then, in front of him, there was a man who had dropsy.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And Jesus asked the lawyers and Pharisees, \"Is it lawful to cure people on the sabbath, or not?\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But they were silent. So Jesus took him and healed him, and sent him away. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then he said to them, \"If one of you has a child or an ox that has fallen into a well, will you not immediately pull it out on a sabbath day?\" </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And they could not reply to this.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> When he noticed how the guests chose the places of honor, he told them a parable.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> \"When you are invited by someone to a wedding banquet, do not sit down at the place of honor, in case someone more distinguished than you has been invited by your host;</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> and the host who invited both of you may come and say to you, 'Give this person your place,' and then in disgrace you would start to take the lowest place.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> But when you are invited, go and sit down at the lowest place, so that when your host comes, he may say to you, 'Friend, move up higher'; then you will be honored in the presence of all who sit at the table with you.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> For all who exalt themselves will be humbled, and those who humble themselves will be exalted.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> He said also to the one who had invited him, \"When you give a luncheon or a dinner, do not invite your friends or your brothers or your relatives or rich neighbors, in case they may invite you in return, and you would be repaid.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> But when you give a banquet, invite the poor, the crippled, the lame, and the blind.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> And you will be blessed, because they cannot repay you, for you will be repaid at the resurrection of the righteous.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> One of the dinner guests, on hearing this, said to him, \"Blessed is anyone who will eat bread in the kingdom of God!\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then Jesus said to him, \"Someone gave a great dinner and invited many. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> At the time for the dinner he sent his slave to say to those who had been invited, 'Come; for everything is ready now.'</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> But they all alike began to make excuses. The first said to him, 'I have bought a piece of land, and I must go out and see it; please accept my regrets.'</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Another said, 'I have bought five yoke of oxen, and I am going to try them out; please accept my regrets.'</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Another said, 'I have just been married, and therefore I cannot come.'</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> So the slave returned and reported this to his master. Then the owner of the house became angry and said to his slave, 'Go out at once into the streets and lanes of the town and bring in the poor, the crippled, the blind, and the lame.'</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> And the slave said, 'Sir, what you ordered has been done, and there is still room.'</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Then the master said to the slave, 'Go out into the roads and lanes, and compel people to come in, so that my house may be filled.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> For I tell you, none of those who were invited will taste my dinner.'\" </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Now large crowds were traveling with him; and he turned and said to them,</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> \"Whoever comes to me and does not hate father and mother, wife and children, brothers and sisters, yes, and even life itself, cannot be my disciple.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Whoever does not carry the cross and follow me cannot be my disciple.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> For which of you, intending to build a tower, does not first sit down and estimate the cost, to see whether he has enough to complete it?</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Otherwise, when he has laid a foundation and is not able to finish, all who see it will begin to ridicule him,</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> saying, 'This fellow began to build and was not able to finish.'</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Or what king, going out to wage war against another king, will not sit down first and consider whether he is able with ten thousand to oppose the one who comes against him with twenty thousand?</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> If he cannot, then, while the other is still far away, he sends a delegation and asks for the terms of peace.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> So therefore, none of you can become my disciple if you do not give up all your possessions.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> \"Salt is good; but if salt has lost its taste, how can its saltiness be restored? </VERS>\r\n\t\t\t<VERS vnumber=\"35\"> It is fit neither for the soil nor for the manure pile; they throw it away. Let anyone with ears to hear listen!\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"15\">\r\n\t\t\t<VERS vnumber=\"1\"> Now all the tax collectors and sinners were coming near to listen to him.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And the Pharisees and the scribes were grumbling and saying, \"This fellow welcomes sinners and eats with them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> So he told them this parable:</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> \"Which one of you, having a hundred sheep and losing one of them, does not leave the ninety-nine in the wilderness and go after the one that is lost until he finds it?</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> When he has found it, he lays it on his shoulders and rejoices.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And when he comes home, he calls together his friends and neighbors, saying to them, 'Rejoice with me, for I have found my sheep that was lost.'</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Just so, I tell you, there will be more joy in heaven over one sinner who repents than over ninety-nine righteous persons who need no repentance.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> \"Or what woman having ten silver coins, if she loses one of them, does not light a lamp, sweep the house, and search carefully until she finds it? </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> When she has found it, she calls together her friends and neighbors, saying, 'Rejoice with me, for I have found the coin that I had lost.'</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Just so, I tell you, there is joy in the presence of the angels of God over one sinner who repents.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then Jesus said, \"There was a man who had two sons. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The younger of them said to his father, 'Father, give me the share of the property that will belong to me.' So he divided his property between them.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> A few days later the younger son gathered all he had and traveled to a distant country, and there he squandered his property in dissolute living.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> When he had spent everything, a severe famine took place throughout that country, and he began to be in need.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> So he went and hired himself out to one of the citizens of that country, who sent him to his fields to feed the pigs.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> He would gladly have filled himself with the pods that the pigs were eating; and no one gave him anything. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> But when he came to himself he said, 'How many of my father's hired hands have bread enough and to spare, but here I am dying of hunger!</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> I will get up and go to my father, and I will say to him, \"Father, I have sinned against heaven and before you;</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> I am no longer worthy to be called your son; treat me like one of your hired hands.\"'</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> So he set off and went to his father. But while he was still far off, his father saw him and was filled with compassion; he ran and put his arms around him and kissed him.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then the son said to him, 'Father, I have sinned against heaven and before you; I am no longer worthy to be called your son.' </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> But the father said to his slaves, 'Quickly, bring out a robe-- the best one-- and put it on him; put a ring on his finger and sandals on his feet.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> And get the fatted calf and kill it, and let us eat and celebrate;</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> for this son of mine was dead and is alive again; he was lost and is found!' And they began to celebrate.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> \"Now his elder son was in the field; and when he came and approached the house, he heard music and dancing.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> He called one of the slaves and asked what was going on.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> He replied, 'Your brother has come, and your father has killed the fatted calf, because he has got him back safe and sound.'</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Then he became angry and refused to go in. His father came out and began to plead with him.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> But he answered his father, 'Listen! For all these years I have been working like a slave for you, and I have never disobeyed your command; yet you have never given me even a young goat so that I might celebrate with my friends.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> But when this son of yours came back, who has devoured your property with prostitutes, you killed the fatted calf for him!'</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Then the father said to him, 'Son, you are always with me, and all that is mine is yours. </VERS>\r\n\t\t\t<VERS vnumber=\"32\"> But we had to celebrate and rejoice, because this brother of yours was dead and has come to life; he was lost and has been found.'\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"16\">\r\n\t\t\t<VERS vnumber=\"1\"> Then Jesus said to the disciples, \"There was a rich man who had a manager, and charges were brought to him that this man was squandering his property. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> So he summoned him and said to him, 'What is this that I hear about you? Give me an accounting of your management, because you cannot be my manager any longer.'</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then the manager said to himself, 'What will I do, now that my master is taking the position away from me? I am not strong enough to dig, and I am ashamed to beg.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> I have decided what to do so that, when I am dismissed as manager, people may welcome me into their homes.'</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> So, summoning his master's debtors one by one, he asked the first, 'How much do you owe my master?'</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> He answered, 'A hundred jugs of olive oil.' He said to him, 'Take your bill, sit down quickly, and make it fifty.'</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then he asked another, 'And how much do you owe?' He replied, 'A hundred containers of wheat.' He said to him, 'Take your bill and make it eighty.'</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And his master commended the dishonest manager because he had acted shrewdly; for the children of this age are more shrewd in dealing with their own generation than are the children of light.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> And I tell you, make friends for yourselves by means of dishonest wealth so that when it is gone, they may welcome you into the eternal homes. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> \"Whoever is faithful in a very little is faithful also in much; and whoever is dishonest in a very little is dishonest also in much.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> If then you have not been faithful with the dishonest wealth, who will entrust to you the true riches? </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> And if you have not been faithful with what belongs to another, who will give you what is your own?</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> No slave can serve two masters; for a slave will either hate the one and love the other, or be devoted to the one and despise the other. You cannot serve God and wealth.\" </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The Pharisees, who were lovers of money, heard all this, and they ridiculed him.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> So he said to them, \"You are those who justify yourselves in the sight of others; but God knows your hearts; for what is prized by human beings is an abomination in the sight of God.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> \"The law and the prophets were in effect until John came; since then the good news of the kingdom of God is proclaimed, and everyone tries to enter it by force. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> But it is easier for heaven and earth to pass away, than for one stroke of a letter in the law to be dropped.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> \"Anyone who divorces his wife and marries another commits adultery, and whoever marries a woman divorced from her husband commits adultery.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> \"There was a rich man who was dressed in purple and fine linen and who feasted sumptuously every day.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> And at his gate lay a poor man named Lazarus, covered with sores,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> who longed to satisfy his hunger with what fell from the rich man's table; even the dogs would come and lick his sores.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The poor man died and was carried away by the angels to be with Abraham. The rich man also died and was buried. </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> In Hades, where he was being tormented, he looked up and saw Abraham far away with Lazarus by his side. </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> He called out, 'Father Abraham, have mercy on me, and send Lazarus to dip the tip of his finger in water and cool my tongue; for I am in agony in these flames.'</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> But Abraham said, 'Child, remember that during your lifetime you received your good things, and Lazarus in like manner evil things; but now he is comforted here, and you are in agony.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Besides all this, between you and us a great chasm has been fixed, so that those who might want to pass from here to you cannot do so, and no one can cross from there to us.'</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> He said, 'Then, father, I beg you to send him to my father's house--</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> for I have five brothers-- that he may warn them, so that they will not also come into this place of torment.'</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Abraham replied, 'They have Moses and the prophets; they should listen to them.'</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> He said, 'No, father Abraham; but if someone goes to them from the dead, they will repent.'</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> He said to him, 'If they do not listen to Moses and the prophets, neither will they be convinced even if someone rises from the dead.'\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"17\">\r\n\t\t\t<VERS vnumber=\"1\"> Jesus said to his disciples, \"Occasions for stumbling are bound to come, but woe to anyone by whom they come! </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> It would be better for you if a millstone were hung around your neck and you were thrown into the sea than for you to cause one of these little ones to stumble.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Be on your guard! If another disciple sins, you must rebuke the offender, and if there is repentance, you must forgive. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> And if the same person sins against you seven times a day, and turns back to you seven times and says, 'I repent,' you must forgive.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The apostles said to the Lord, \"Increase our faith!\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The Lord replied, \"If you had faith the size of a mustard seed, you could say to this mulberry tree, 'Be uprooted and planted in the sea,' and it would obey you. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> \"Who among you would say to your slave who has just come in from plowing or tending sheep in the field, 'Come here at once and take your place at the table'?</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Would you not rather say to him, 'Prepare supper for me, put on your apron and serve me while I eat and drink; later you may eat and drink'?</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Do you thank the slave for doing what was commanded?</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> So you also, when you have done all that you were ordered to do, say, 'We are worthless slaves; we have done only what we ought to have done!'\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> On the way to Jerusalem Jesus was going through the region between Samaria and Galilee. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> As he entered a village, ten lepers approached him. Keeping their distance, </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> they called out, saying, \"Jesus, Master, have mercy on us!\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> When he saw them, he said to them, \"Go and show yourselves to the priests.\" And as they went, they were made clean.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Then one of them, when he saw that he was healed, turned back, praising God with a loud voice.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> He prostrated himself at Jesus' feet and thanked him. And he was a Samaritan. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then Jesus asked, \"Were not ten made clean? But the other nine, where are they?</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Was none of them found to return and give praise to God except this foreigner?\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Then he said to him, \"Get up and go on your way; your faith has made you well.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Once Jesus was asked by the Pharisees when the kingdom of God was coming, and he answered, \"The kingdom of God is not coming with things that can be observed;</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> nor will they say, 'Look, here it is!' or 'There it is!' For, in fact, the kingdom of God is among you.\" </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Then he said to the disciples, \"The days are coming when you will long to see one of the days of the Son of Man, and you will not see it.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> They will say to you, 'Look there!' or 'Look here!' Do not go, do not set off in pursuit.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> For as the lightning flashes and lights up the sky from one side to the other, so will the Son of Man be in his day. </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> But first he must endure much suffering and be rejected by this generation.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Just as it was in the days of Noah, so too it will be in the days of the Son of Man.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> They were eating and drinking, and marrying and being given in marriage, until the day Noah entered the ark, and the flood came and destroyed all of them.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Likewise, just as it was in the days of Lot: they were eating and drinking, buying and selling, planting and building,</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> but on the day that Lot left Sodom, it rained fire and sulfur from heaven and destroyed all of them</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> -- it will be like that on the day that the Son of Man is revealed.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> On that day, anyone on the housetop who has belongings in the house must not come down to take them away; and likewise anyone in the field must not turn back.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Remember Lot's wife.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Those who try to make their life secure will lose it, but those who lose their life will keep it.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> I tell you, on that night there will be two in one bed; one will be taken and the other left.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> There will be two women grinding meal together; one will be taken and the other left.\" </VERS>\r\n\t\t\t<VERS vnumber=\"36\"> </VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Then they asked him, \"Where, Lord?\" He said to them, \"Where the corpse is, there the vultures will gather.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"18\">\r\n\t\t\t<VERS vnumber=\"1\"> Then Jesus told them a parable about their need to pray always and not to lose heart. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He said, \"In a certain city there was a judge who neither feared God nor had respect for people.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> In that city there was a widow who kept coming to him and saying, 'Grant me justice against my opponent.'</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For a while he refused; but later he said to himself, 'Though I have no fear of God and no respect for anyone,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> yet because this widow keeps bothering me, I will grant her justice, so that she may not wear me out by continually coming.'\" </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And the Lord said, \"Listen to what the unjust judge says.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> And will not God grant justice to his chosen ones who cry to him day and night? Will he delay long in helping them?</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> I tell you, he will quickly grant justice to them. And yet, when the Son of Man comes, will he find faith on earth?\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> He also told this parable to some who trusted in themselves that they were righteous and regarded others with contempt:</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> \"Two men went up to the temple to pray, one a Pharisee and the other a tax collector.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The Pharisee, standing by himself, was praying thus, 'God, I thank you that I am not like other people: thieves, rogues, adulterers, or even like this tax collector.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> I fast twice a week; I give a tenth of all my income.'</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> But the tax collector, standing far off, would not even look up to heaven, but was beating his breast and saying, 'God, be merciful to me, a sinner!'</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> I tell you, this man went down to his home justified rather than the other; for all who exalt themselves will be humbled, but all who humble themselves will be exalted.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> People were bringing even infants to him that he might touch them; and when the disciples saw it, they sternly ordered them not to do it.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> But Jesus called for them and said, \"Let the little children come to me, and do not stop them; for it is to such as these that the kingdom of God belongs.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Truly I tell you, whoever does not receive the kingdom of God as a little child will never enter it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> A certain ruler asked him, \"Good Teacher, what must I do to inherit eternal life?\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Jesus said to him, \"Why do you call me good? No one is good but God alone.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> You know the commandments: 'You shall not commit adultery; You shall not murder; You shall not steal; You shall not bear false witness; Honor your father and mother.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> He replied, \"I have kept all these since my youth.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> When Jesus heard this, he said to him, \"There is still one thing lacking. Sell all that you own and distribute the money to the poor, and you will have treasure in heaven; then come, follow me.\" </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> But when he heard this, he became sad; for he was very rich.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Jesus looked at him and said, \"How hard it is for those who have wealth to enter the kingdom of God!</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Indeed, it is easier for a camel to go through the eye of a needle than for someone who is rich to enter the kingdom of God.\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Those who heard it said, \"Then who can be saved?\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> He replied, \"What is impossible for mortals is possible for God.\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Then Peter said, \"Look, we have left our homes and followed you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> And he said to them, \"Truly I tell you, there is no one who has left house or wife or brothers or parents or children, for the sake of the kingdom of God,</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> who will not get back very much more in this age, and in the age to come eternal life.\"</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Then he took the twelve aside and said to them, \"See, we are going up to Jerusalem, and everything that is written about the Son of Man by the prophets will be accomplished.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> For he will be handed over to the Gentiles; and he will be mocked and insulted and spat upon.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> After they have flogged him, they will kill him, and on the third day he will rise again.\"</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> But they understood nothing about all these things; in fact, what he said was hidden from them, and they did not grasp what was said.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> As he approached Jericho, a blind man was sitting by the roadside begging.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> When he heard a crowd going by, he asked what was happening.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> They told him, \"Jesus of Nazareth is passing by.\" </VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Then he shouted, \"Jesus, Son of David, have mercy on me!\"</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> Those who were in front sternly ordered him to be quiet; but he shouted even more loudly, \"Son of David, have mercy on me!\"</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> Jesus stood still and ordered the man to be brought to him; and when he came near, he asked him,</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> \"What do you want me to do for you?\" He said, \"Lord, let me see again.\"</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> Jesus said to him, \"Receive your sight; your faith has saved you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> Immediately he regained his sight and followed him, glorifying God; and all the people, when they saw it, praised God.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"19\">\r\n\t\t\t<VERS vnumber=\"1\"> He entered Jericho and was passing through it.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> A man was there named Zacchaeus; he was a chief tax collector and was rich.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> He was trying to see who Jesus was, but on account of the crowd he could not, because he was short in stature.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> So he ran ahead and climbed a sycamore tree to see him, because he was going to pass that way.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> When Jesus came to the place, he looked up and said to him, \"Zacchaeus, hurry and come down; for I must stay at your house today.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> So he hurried down and was happy to welcome him.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> All who saw it began to grumble and said, \"He has gone to be the guest of one who is a sinner.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Zacchaeus stood there and said to the Lord, \"Look, half of my possessions, Lord, I will give to the poor; and if I have defrauded anyone of anything, I will pay back four times as much.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then Jesus said to him, \"Today salvation has come to this house, because he too is a son of Abraham.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For the Son of Man came to seek out and to save the lost.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> As they were listening to this, he went on to tell a parable, because he was near Jerusalem, and because they supposed that the kingdom of God was to appear immediately.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> So he said, \"A nobleman went to a distant country to get royal power for himself and then return.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> He summoned ten of his slaves, and gave them ten pounds, and said to them, 'Do business with these until I come back.' </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But the citizens of his country hated him and sent a delegation after him, saying, 'We do not want this man to rule over us.'</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> When he returned, having received royal power, he ordered these slaves, to whom he had given the money, to be summoned so that he might find out what they had gained by trading.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The first came forward and said, 'Lord, your pound has made ten more pounds.'</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> He said to him, 'Well done, good slave! Because you have been trustworthy in a very small thing, take charge of ten cities.'</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then the second came, saying, 'Lord, your pound has made five pounds.'</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> He said to him, 'And you, rule over five cities.'</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Then the other came, saying, 'Lord, here is your pound. I wrapped it up in a piece of cloth,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> for I was afraid of you, because you are a harsh man; you take what you did not deposit, and reap what you did not sow.'</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> He said to him, 'I will judge you by your own words, you wicked slave! You knew, did you, that I was a harsh man, taking what I did not deposit and reaping what I did not sow?</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Why then did you not put my money into the bank? Then when I returned, I could have collected it with interest.'</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> He said to the bystanders, 'Take the pound from him and give it to the one who has ten pounds.'</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> (And they said to him, 'Lord, he has ten pounds!')</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> 'I tell you, to all those who have, more will be given; but from those who have nothing, even what they have will be taken away.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> But as for these enemies of mine who did not want me to be king over them-- bring them here and slaughter them in my presence.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> After he had said this, he went on ahead, going up to Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> When he had come near Bethphage and Bethany, at the place called the Mount of Olives, he sent two of the disciples,</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> saying, \"Go into the village ahead of you, and as you enter it you will find tied there a colt that has never been ridden. Untie it and bring it here.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> If anyone asks you, 'Why are you untying it?' just say this, 'The Lord needs it.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> So those who were sent departed and found it as he had told them.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> As they were untying the colt, its owners asked them, \"Why are you untying the colt?\"</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> They said, \"The Lord needs it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Then they brought it to Jesus; and after throwing their cloaks on the colt, they set Jesus on it.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> As he rode along, people kept spreading their cloaks on the road.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> As he was now approaching the path down from the Mount of Olives, the whole multitude of the disciples began to praise God joyfully with a loud voice for all the deeds of power that they had seen,</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> saying, \"Blessed is the king who comes in the name of the Lord! Peace in heaven, and glory in the highest heaven!\"</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> Some of the Pharisees in the crowd said to him, \"Teacher, order your disciples to stop.\"</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> He answered, \"I tell you, if these were silent, the stones would shout out.\"</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> As he came near and saw the city, he wept over it,</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> saying, \"If you, even you, had only recognized on this day the things that make for peace! But now they are hidden from your eyes.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> Indeed, the days will come upon you, when your enemies will set up ramparts around you and surround you, and hem you in on every side.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> They will crush you to the ground, you and your children within you, and they will not leave within you one stone upon another; because you did not recognize the time of your visitation from God.\" </VERS>\r\n\t\t\t<VERS vnumber=\"45\"> Then he entered the temple and began to drive out those who were selling things there;</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> and he said, \"It is written, 'My house shall be a house of prayer'; but you have made it a den of robbers.\"</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> Every day he was teaching in the temple. The chief priests, the scribes, and the leaders of the people kept looking for a way to kill him;</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> but they did not find anything they could do, for all the people were spellbound by what they heard.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"20\">\r\n\t\t\t<VERS vnumber=\"1\"> One day, as he was teaching the people in the temple and telling the good news, the chief priests and the scribes came with the elders</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> and said to him, \"Tell us, by what authority are you doing these things? Who is it who gave you this authority?\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> He answered them, \"I will also ask you a question, and you tell me:</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Did the baptism of John come from heaven, or was it of human origin?\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> They discussed it with one another, saying, \"If we say, 'From heaven,' he will say, 'Why did you not believe him?'</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> But if we say, 'Of human origin,' all the people will stone us; for they are convinced that John was a prophet.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> So they answered that they did not know where it came from.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then Jesus said to them, \"Neither will I tell you by what authority I am doing these things.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> He began to tell the people this parable: \"A man planted a vineyard, and leased it to tenants, and went to another country for a long time.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> When the season came, he sent a slave to the tenants in order that they might give him his share of the produce of the vineyard; but the tenants beat him and sent him away empty-handed.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Next he sent another slave; that one also they beat and insulted and sent away empty-handed.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> And he sent still a third; this one also they wounded and threw out.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then the owner of the vineyard said, 'What shall I do? I will send my beloved son; perhaps they will respect him.'</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But when the tenants saw him, they discussed it among themselves and said, 'This is the heir; let us kill him so that the inheritance may be ours.'</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> So they threw him out of the vineyard and killed him. What then will the owner of the vineyard do to them?</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> He will come and destroy those tenants and give the vineyard to others.\" When they heard this, they said, \"Heaven forbid!\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> But he looked at them and said, \"What then does this text mean: 'The stone that the builders rejected has become the cornerstone'? </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Everyone who falls on that stone will be broken to pieces; and it will crush anyone on whom it falls.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> When the scribes and chief priests realized that he had told this parable against them, they wanted to lay hands on him at that very hour, but they feared the people.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> So they watched him and sent spies who pretended to be honest, in order to trap him by what he said, so as to hand him over to the jurisdiction and authority of the governor.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> So they asked him, \"Teacher, we know that you are right in what you say and teach, and you show deference to no one, but teach the way of God in accordance with truth.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Is it lawful for us to pay taxes to the emperor, or not?\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> But he perceived their craftiness and said to them,</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> \"Show me a denarius. Whose head and whose title does it bear?\" They said, \"The emperor's.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> He said to them, \"Then give to the emperor the things that are the emperor's, and to God the things that are God's.\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> And they were not able in the presence of the people to trap him by what he said; and being amazed by his answer, they became silent.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Some Sadducees, those who say there is no resurrection, came to him</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> and asked him a question, \"Teacher, Moses wrote for us that if a man's brother dies, leaving a wife but no children, the man shall marry the widow and raise up children for his brother. </VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Now there were seven brothers; the first married, and died childless;</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> then the second</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> and the third married her, and so in the same way all seven died childless.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Finally the woman also died.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> In the resurrection, therefore, whose wife will the woman be? For the seven had married her.\"</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Jesus said to them, \"Those who belong to this age marry and are given in marriage;</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> but those who are considered worthy of a place in that age and in the resurrection from the dead neither marry nor are given in marriage.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Indeed they cannot die anymore, because they are like angels and are children of God, being children of the resurrection.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> And the fact that the dead are raised Moses himself showed, in the story about the bush, where he speaks of the Lord as the God of Abraham, the God of Isaac, and the God of Jacob.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Now he is God not of the dead, but of the living; for to him all of them are alive.\"</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> Then some of the scribes answered, \"Teacher, you have spoken well.\"</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> For they no longer dared to ask him another question.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> Then he said to them, \"How can they say that the Messiah is David's son? </VERS>\r\n\t\t\t<VERS vnumber=\"42\"> For David himself says in the book of Psalms, 'The Lord said to my Lord, \"Sit at my right hand,</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> until I make your enemies your footstool.\"'</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> David thus calls him Lord; so how can he be his son?\"</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> In the hearing of all the people he said to the disciples, </VERS>\r\n\t\t\t<VERS vnumber=\"46\"> \"Beware of the scribes, who like to walk around in long robes, and love to be greeted with respect in the marketplaces, and to have the best seats in the synagogues and places of honor at banquets.</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> They devour widows' houses and for the sake of appearance say long prayers. They will receive the greater condemnation.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"21\">\r\n\t\t\t<VERS vnumber=\"1\"> He looked up and saw rich people putting their gifts into the treasury;</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> he also saw a poor widow put in two small copper coins.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> He said, \"Truly I tell you, this poor widow has put in more than all of them;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> for all of them have contributed out of their abundance, but she out of her poverty has put in all she had to live on.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> When some were speaking about the temple, how it was adorned with beautiful stones and gifts dedicated to God, he said,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> \"As for these things that you see, the days will come when not one stone will be left upon another; all will be thrown down.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> They asked him, \"Teacher, when will this be, and what will be the sign that this is about to take place?\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And he said, \"Beware that you are not led astray; for many will come in my name and say, 'I am he!' and, 'The time is near!' Do not go after them. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> \"When you hear of wars and insurrections, do not be terrified; for these things must take place first, but the end will not follow immediately.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then he said to them, \"Nation will rise against nation, and kingdom against kingdom;</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> there will be great earthquakes, and in various places famines and plagues; and there will be dreadful portents and great signs from heaven.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> \"But before all this occurs, they will arrest you and persecute you; they will hand you over to synagogues and prisons, and you will be brought before kings and governors because of my name.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> This will give you an opportunity to testify.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> So make up your minds not to prepare your defense in advance;</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> for I will give you words and a wisdom that none of your opponents will be able to withstand or contradict. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> You will be betrayed even by parents and brothers, by relatives and friends; and they will put some of you to death.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> You will be hated by all because of my name.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> But not a hair of your head will perish.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> By your endurance you will gain your souls.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> \"When you see Jerusalem surrounded by armies, then know that its desolation has come near. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then those in Judea must flee to the mountains, and those inside the city must leave it, and those out in the country must not enter it;</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> for these are days of vengeance, as a fulfillment of all that is written.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Woe to those who are pregnant and to those who are nursing infants in those days! For there will be great distress on the earth and wrath against this people;</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> they will fall by the edge of the sword and be taken away as captives among all nations; and Jerusalem will be trampled on by the Gentiles, until the times of the Gentiles are fulfilled.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> \"There will be signs in the sun, the moon, and the stars, and on the earth distress among nations confused by the roaring of the sea and the waves.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> People will faint from fear and foreboding of what is coming upon the world, for the powers of the heavens will be shaken.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Then they will see 'the Son of Man coming in a cloud' with power and great glory.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Now when these things begin to take place, stand up and raise your heads, because your redemption is drawing near.\"</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Then he told them a parable: \"Look at the fig tree and all the trees;</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> as soon as they sprout leaves you can see for yourselves and know that summer is already near.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> So also, when you see these things taking place, you know that the kingdom of God is near.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Truly I tell you, this generation will not pass away until all things have taken place.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Heaven and earth will pass away, but my words will not pass away.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> \"Be on guard so that your hearts are not weighed down with dissipation and drunkenness and the worries of this life, and that day catch you unexpectedly,</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> like a trap. For it will come upon all who live on the face of the whole earth.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Be alert at all times, praying that you may have the strength to escape all these things that will take place, and to stand before the Son of Man.\"</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Every day he was teaching in the temple, and at night he would go out and spend the night on the Mount of Olives, as it was called.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> And all the people would get up early in the morning to listen to him in the temple.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"22\">\r\n\t\t\t<VERS vnumber=\"1\"> Now the festival of Unleavened Bread, which is called the Passover, was near.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The chief priests and the scribes were looking for a way to put Jesus to death, for they were afraid of the people. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then Satan entered into Judas called Iscariot, who was one of the twelve;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> he went away and conferred with the chief priests and officers of the temple police about how he might betray him to them.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> They were greatly pleased and agreed to give him money.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> So he consented and began to look for an opportunity to betray him to them when no crowd was present.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then came the day of Unleavened Bread, on which the Passover lamb had to be sacrificed.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> So Jesus sent Peter and John, saying, \"Go and prepare the Passover meal for us that we may eat it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> They asked him, \"Where do you want us to make preparations for it?\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> \"Listen,\" he said to them, \"when you have entered the city, a man carrying a jar of water will meet you; follow him into the house he enters</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> and say to the owner of the house, 'The teacher asks you, \"Where is the guest room, where I may eat the Passover with my disciples?\"'</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> He will show you a large room upstairs, already furnished. Make preparations for us there.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> So they went and found everything as he had told them; and they prepared the Passover meal.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> When the hour came, he took his place at the table, and the apostles with him.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> He said to them, \"I have eagerly desired to eat this Passover with you before I suffer;</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> for I tell you, I will not eat it until it is fulfilled in the kingdom of God.\" </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then he took a cup, and after giving thanks he said, \"Take this and divide it among yourselves;</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> for I tell you that from now on I will not drink of the fruit of the vine until the kingdom of God comes.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Then he took a loaf of bread, and when he had given thanks, he broke it and gave it to them, saying, \"This is my body, which is given for you. Do this in remembrance of me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> And he did the same with the cup after supper, saying, \"This cup that is poured out for you is the new covenant in my blood. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> But see, the one who betrays me is with me, and his hand is on the table.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> For the Son of Man is going as it has been determined, but woe to that one by whom he is betrayed!\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Then they began to ask one another, which one of them it could be who would do this.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> A dispute also arose among them as to which one of them was to be regarded as the greatest.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> But he said to them, \"The kings of the Gentiles lord it over them; and those in authority over them are called benefactors.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> But not so with you; rather the greatest among you must become like the youngest, and the leader like one who serves.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> For who is greater, the one who is at the table or the one who serves? Is it not the one at the table? But I am among you as one who serves.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> \"You are those who have stood by me in my trials;</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> and I confer on you, just as my Father has conferred on me, a kingdom,</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> so that you may eat and drink at my table in my kingdom, and you will sit on thrones judging the twelve tribes of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> \"Simon, Simon, listen! Satan has demanded to sift all of you like wheat, </VERS>\r\n\t\t\t<VERS vnumber=\"32\"> but I have prayed for you that your own faith may not fail; and you, when once you have turned back, strengthen your brothers.\"</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> And he said to him, \"Lord, I am ready to go with you to prison and to death!\"</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Jesus said, \"I tell you, Peter, the cock will not crow this day, until you have denied three times that you know me.\" </VERS>\r\n\t\t\t<VERS vnumber=\"35\"> He said to them, \"When I sent you out without a purse, bag, or sandals, did you lack anything?\" They said, \"No, not a thing.\"</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> He said to them, \"But now, the one who has a purse must take it, and likewise a bag. And the one who has no sword must sell his cloak and buy one.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> For I tell you, this scripture must be fulfilled in me, 'And he was counted among the lawless'; and indeed what is written about me is being fulfilled.\"</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> They said, \"Lord, look, here are two swords.\" He replied, \"It is enough.\"</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> He came out and went, as was his custom, to the Mount of Olives; and the disciples followed him.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> When he reached the place, he said to them, \"Pray that you may not come into the time of trial.\" </VERS>\r\n\t\t\t<VERS vnumber=\"41\"> Then he withdrew from them about a stone's throw, knelt down, and prayed,</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> \"Father, if you are willing, remove this cup from me; yet, not my will but yours be done.\" </VERS>\r\n\t\t\t<VERS vnumber=\"43\"> Then an angel from heaven appeared to him and gave him strength.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> In his anguish he prayed more earnestly, and his sweat became like great drops of blood falling down on the ground.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> When he got up from prayer, he came to the disciples and found them sleeping because of grief,</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> and he said to them, \"Why are you sleeping? Get up and pray that you may not come into the time of trial.\" </VERS>\r\n\t\t\t<VERS vnumber=\"47\"> While he was still speaking, suddenly a crowd came, and the one called Judas, one of the twelve, was leading them. He approached Jesus to kiss him;</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> but Jesus said to him, \"Judas, is it with a kiss that you are betraying the Son of Man?\"</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> When those who were around him saw what was coming, they asked, \"Lord, should we strike with the sword?\"</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> Then one of them struck the slave of the high priest and cut off his right ear.</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> But Jesus said, \"No more of this!\" And he touched his ear and healed him.</VERS>\r\n\t\t\t<VERS vnumber=\"52\"> Then Jesus said to the chief priests, the officers of the temple police, and the elders who had come for him, \"Have you come out with swords and clubs as if I were a bandit?</VERS>\r\n\t\t\t<VERS vnumber=\"53\"> When I was with you day after day in the temple, you did not lay hands on me. But this is your hour, and the power of darkness!\"</VERS>\r\n\t\t\t<VERS vnumber=\"54\"> Then they seized him and led him away, bringing him into the high priest's house. But Peter was following at a distance.</VERS>\r\n\t\t\t<VERS vnumber=\"55\"> When they had kindled a fire in the middle of the courtyard and sat down together, Peter sat among them.</VERS>\r\n\t\t\t<VERS vnumber=\"56\"> Then a servant-girl, seeing him in the firelight, stared at him and said, \"This man also was with him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"57\"> But he denied it, saying, \"Woman, I do not know him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"58\"> A little later someone else, on seeing him, said, \"You also are one of them.\" But Peter said, \"Man, I am not!\"</VERS>\r\n\t\t\t<VERS vnumber=\"59\"> Then about an hour later still another kept insisting, \"Surely this man also was with him; for he is a Galilean.\"</VERS>\r\n\t\t\t<VERS vnumber=\"60\"> But Peter said, \"Man, I do not know what you are talking about!\" At that moment, while he was still speaking, the cock crowed.</VERS>\r\n\t\t\t<VERS vnumber=\"61\"> The Lord turned and looked at Peter. Then Peter remembered the word of the Lord, how he had said to him, \"Before the cock crows today, you will deny me three times.\"</VERS>\r\n\t\t\t<VERS vnumber=\"62\"> And he went out and wept bitterly.</VERS>\r\n\t\t\t<VERS vnumber=\"63\"> Now the men who were holding Jesus began to mock him and beat him;</VERS>\r\n\t\t\t<VERS vnumber=\"64\"> they also blindfolded him and kept asking him, \"Prophesy! Who is it that struck you?\"</VERS>\r\n\t\t\t<VERS vnumber=\"65\"> They kept heaping many other insults on him.</VERS>\r\n\t\t\t<VERS vnumber=\"66\"> When day came, the assembly of the elders of the people, both chief priests and scribes, gathered together, and they brought him to their council.</VERS>\r\n\t\t\t<VERS vnumber=\"67\"> They said, \"If you are the Messiah, tell us.\" He replied, \"If I tell you, you will not believe; </VERS>\r\n\t\t\t<VERS vnumber=\"68\"> and if I question you, you will not answer.</VERS>\r\n\t\t\t<VERS vnumber=\"69\"> But from now on the Son of Man will be seated at the right hand of the power of God.\"</VERS>\r\n\t\t\t<VERS vnumber=\"70\"> All of them asked, \"Are you, then, the Son of God?\" He said to them, \"You say that I am.\"</VERS>\r\n\t\t\t<VERS vnumber=\"71\"> Then they said, \"What further testimony do we need? We have heard it ourselves from his own lips!\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"23\">\r\n\t\t\t<VERS vnumber=\"1\"> Then the assembly rose as a body and brought Jesus before Pilate. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> They began to accuse him, saying, \"We found this man perverting our nation, forbidding us to pay taxes to the emperor, and saying that he himself is the Messiah, a king.\" </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then Pilate asked him, \"Are you the king of the Jews?\" He answered, \"You say so.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then Pilate said to the chief priests and the crowds, \"I find no basis for an accusation against this man.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> But they were insistent and said, \"He stirs up the people by teaching throughout all Judea, from Galilee where he began even to this place.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> When Pilate heard this, he asked whether the man was a Galilean.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> And when he learned that he was under Herod's jurisdiction, he sent him off to Herod, who was himself in Jerusalem at that time.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> When Herod saw Jesus, he was very glad, for he had been wanting to see him for a long time, because he had heard about him and was hoping to see him perform some sign.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> He questioned him at some length, but Jesus gave him no answer. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The chief priests and the scribes stood by, vehemently accusing him.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Even Herod with his soldiers treated him with contempt and mocked him; then he put an elegant robe on him, and sent him back to Pilate.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> That same day Herod and Pilate became friends with each other; before this they had been enemies.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Pilate then called together the chief priests, the leaders, and the people,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> and said to them, \"You brought me this man as one who was perverting the people; and here I have examined him in your presence and have not found this man guilty of any of your charges against him.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Neither has Herod, for he sent him back to us. Indeed, he has done nothing to deserve death.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> I will therefore have him flogged and release him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then they all shouted out together, \"Away with this fellow! Release Barabbas for us!\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> (This was a man who had been put in prison for an insurrection that had taken place in the city, and for murder.)</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Pilate, wanting to release Jesus, addressed them again;</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> but they kept shouting, \"Crucify, crucify him!\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> A third time he said to them, \"Why, what evil has he done? I have found in him no ground for the sentence of death; I will therefore have him flogged and then release him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> But they kept urgently demanding with loud shouts that he should be crucified; and their voices prevailed.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> So Pilate gave his verdict that their demand should be granted.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> He released the man they asked for, the one who had been put in prison for insurrection and murder, and he handed Jesus over as they wished.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> As they led him away, they seized a man, Simon of Cyrene, who was coming from the country, and they laid the cross on him, and made him carry it behind Jesus.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> A great number of the people followed him, and among them were women who were beating their breasts and wailing for him.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> But Jesus turned to them and said, \"Daughters of Jerusalem, do not weep for me, but weep for yourselves and for your children.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> For the days are surely coming when they will say, 'Blessed are the barren, and the wombs that never bore, and the breasts that never nursed.'</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Then they will begin to say to the mountains, 'Fall on us'; and to the hills, 'Cover us.'</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> For if they do this when the wood is green, what will happen when it is dry?\"</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Two others also, who were criminals, were led away to be put to death with him.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> When they came to the place that is called The Skull, they crucified Jesus there with the criminals, one on his right and one on his left.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Then Jesus said, \"Father, forgive them; for they do not know what they are doing.\" And they cast lots to divide his clothing.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> And the people stood by, watching; but the leaders scoffed at him, saying, \"He saved others; let him save himself if he is the Messiah of God, his chosen one!\" </VERS>\r\n\t\t\t<VERS vnumber=\"36\"> The soldiers also mocked him, coming up and offering him sour wine,</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> and saying, \"If you are the King of the Jews, save yourself!\"</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> There was also an inscription over him, \"This is the King of the Jews.\"</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> One of the criminals who were hanged there kept deriding him and saying, \"Are you not the Messiah? Save yourself and us!\" </VERS>\r\n\t\t\t<VERS vnumber=\"40\"> But the other rebuked him, saying, \"Do you not fear God, since you are under the same sentence of condemnation?</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> And we indeed have been condemned justly, for we are getting what we deserve for our deeds, but this man has done nothing wrong.\"</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> Then he said, \"Jesus, remember me when you come into your kingdom.\" </VERS>\r\n\t\t\t<VERS vnumber=\"43\"> He replied, \"Truly I tell you, today you will be with me in Paradise.\"</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> It was now about noon, and darkness came over the whole land until three in the afternoon, </VERS>\r\n\t\t\t<VERS vnumber=\"45\"> while the sun's light failed; and the curtain of the temple was torn in two. </VERS>\r\n\t\t\t<VERS vnumber=\"46\"> Then Jesus, crying with a loud voice, said, \"Father, into your hands I commend my spirit.\" Having said this, he breathed his last.</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> When the centurion saw what had taken place, he praised God and said, \"Certainly this man was innocent.\" </VERS>\r\n\t\t\t<VERS vnumber=\"48\"> And when all the crowds who had gathered there for this spectacle saw what had taken place, they returned home, beating their breasts.</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> But all his acquaintances, including the women who had followed him from Galilee, stood at a distance, watching these things.</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> Now there was a good and righteous man named Joseph, who, though a member of the council,</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> had not agreed to their plan and action. He came from the Jewish town of Arimathea, and he was waiting expectantly for the kingdom of God.</VERS>\r\n\t\t\t<VERS vnumber=\"52\"> This man went to Pilate and asked for the body of Jesus.</VERS>\r\n\t\t\t<VERS vnumber=\"53\"> Then he took it down, wrapped it in a linen cloth, and laid it in a rock-hewn tomb where no one had ever been laid.</VERS>\r\n\t\t\t<VERS vnumber=\"54\"> It was the day of Preparation, and the sabbath was beginning. </VERS>\r\n\t\t\t<VERS vnumber=\"55\"> The women who had come with him from Galilee followed, and they saw the tomb and how his body was laid.</VERS>\r\n\t\t\t<VERS vnumber=\"56\"> Then they returned, and prepared spices and ointments. On the sabbath they rested according to the commandment.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"24\">\r\n\t\t\t<VERS vnumber=\"1\"> But on the first day of the week, at early dawn, they came to the tomb, taking the spices that they had prepared.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> They found the stone rolled away from the tomb,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> but when they went in, they did not find the body. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> While they were perplexed about this, suddenly two men in dazzling clothes stood beside them.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The women were terrified and bowed their faces to the ground, but the men said to them, \"Why do you look for the living among the dead? He is not here, but has risen. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Remember how he told you, while he was still in Galilee,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> that the Son of Man must be handed over to sinners, and be crucified, and on the third day rise again.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then they remembered his words,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> and returning from the tomb, they told all this to the eleven and to all the rest.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Now it was Mary Magdalene, Joanna, Mary the mother of James, and the other women with them who told this to the apostles.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But these words seemed to them an idle tale, and they did not believe them.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> But Peter got up and ran to the tomb; stooping and looking in, he saw the linen cloths by themselves; then he went home, amazed at what had happened. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Now on that same day two of them were going to a village called Emmaus, about seven miles from Jerusalem, </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> and talking with each other about all these things that had happened.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> While they were talking and discussing, Jesus himself came near and went with them,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> but their eyes were kept from recognizing him.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> And he said to them, \"What are you discussing with each other while you walk along?\" They stood still, looking sad. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then one of them, whose name was Cleopas, answered him, \"Are you the only stranger in Jerusalem who does not know the things that have taken place there in these days?\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> He asked them, \"What things?\" They replied, \"The things about Jesus of Nazareth, who was a prophet mighty in deed and word before God and all the people, </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> and how our chief priests and leaders handed him over to be condemned to death and crucified him.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> But we had hoped that he was the one to redeem Israel. Yes, and besides all this, it is now the third day since these things took place. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Moreover, some women of our group astounded us. They were at the tomb early this morning,</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> and when they did not find his body there, they came back and told us that they had indeed seen a vision of angels who said that he was alive.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Some of those who were with us went to the tomb and found it just as the women had said; but they did not see him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Then he said to them, \"Oh, how foolish you are, and how slow of heart to believe all that the prophets have declared!</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Was it not necessary that the Messiah should suffer these things and then enter into his glory?\" </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Then beginning with Moses and all the prophets, he interpreted to them the things about himself in all the scriptures.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> As they came near the village to which they were going, he walked ahead as if he were going on.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> But they urged him strongly, saying, \"Stay with us, because it is almost evening and the day is now nearly over.\" So he went in to stay with them.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> When he was at the table with them, he took bread, blessed and broke it, and gave it to them.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Then their eyes were opened, and they recognized him; and he vanished from their sight.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> They said to each other, \"Were not our hearts burning within us while he was talking to us on the road, while he was opening the scriptures to us?\" </VERS>\r\n\t\t\t<VERS vnumber=\"33\"> That same hour they got up and returned to Jerusalem; and they found the eleven and their companions gathered together.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> They were saying, \"The Lord has risen indeed, and he has appeared to Simon!\"</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Then they told what had happened on the road, and how he had been made known to them in the breaking of the bread.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> While they were talking about this, Jesus himself stood among them and said to them, \"Peace be with you.\" </VERS>\r\n\t\t\t<VERS vnumber=\"37\"> They were startled and terrified, and thought that they were seeing a ghost.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> He said to them, \"Why are you frightened, and why do doubts arise in your hearts?</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> Look at my hands and my feet; see that it is I myself. Touch me and see; for a ghost does not have flesh and bones as you see that I have.\"</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> And when he had said this, he showed them his hands and his feet. </VERS>\r\n\t\t\t<VERS vnumber=\"41\"> While in their joy they were disbelieving and still wondering, he said to them, \"Have you anything here to eat?\"</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> They gave him a piece of broiled fish,</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> and he took it and ate in their presence.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> Then he said to them, \"These are my words that I spoke to you while I was still with you-- that everything written about me in the law of Moses, the prophets, and the psalms must be fulfilled.\"</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> Then he opened their minds to understand the scriptures,</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> and he said to them, \"Thus it is written, that the Messiah is to suffer and to rise from the dead on the third day, </VERS>\r\n\t\t\t<VERS vnumber=\"47\"> and that repentance and forgiveness of sins is to be proclaimed in his name to all nations, beginning from Jerusalem. </VERS>\r\n\t\t\t<VERS vnumber=\"48\"> You are witnesses of these things.</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> And see, I am sending upon you what my Father promised; so stay here in the city until you have been clothed with power from on high.\"</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> Then he led them out as far as Bethany, and, lifting up his hands, he blessed them.</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> While he was blessing them, he withdrew from them and was carried up into heaven.</VERS>\r\n\t\t\t<VERS vnumber=\"52\"> And they worshiped him, and returned to Jerusalem with great joy; </VERS>\r\n\t\t\t<VERS vnumber=\"53\"> and they were continually in the temple blessing God. </VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"43\" bname=\"John\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> In the beginning was the Word, and the Word was with God, and the Word was God.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He was in the beginning with God.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> All things came into being through him, and without him not one thing came into being. What has come into being</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> in him was life, and the life was the light of all people. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The light shines in the darkness, and the darkness did not overcome it.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> There was a man sent from God, whose name was John.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> He came as a witness to testify to the light, so that all might believe through him.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> He himself was not the light, but he came to testify to the light.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The true light, which enlightens everyone, was coming into the world. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> He was in the world, and the world came into being through him; yet the world did not know him.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> He came to what was his own, and his own people did not accept him. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> But to all who received him, who believed in his name, he gave power to become children of God,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> who were born, not of blood or of the will of the flesh or of the will of man, but of God.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> And the Word became flesh and lived among us, and we have seen his glory, the glory as of a father's only son, full of grace and truth. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> (John testified to him and cried out, \"This was he of whom I said, 'He who comes after me ranks ahead of me because he was before me.'\")</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> From his fullness we have all received, grace upon grace.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The law indeed was given through Moses; grace and truth came through Jesus Christ.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> No one has ever seen God. It is God the only Son, who is close to the Father's heart, who has made him known. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> This is the testimony given by John when the Jews sent priests and Levites from Jerusalem to ask him, \"Who are you?\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> He confessed and did not deny it, but confessed, \"I am not the Messiah.\" </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> And they asked him, \"What then? Are you Elijah?\" He said, \"I am not.\" \"Are you the prophet?\" He answered, \"No.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Then they said to him, \"Who are you? Let us have an answer for those who sent us. What do you say about yourself?\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> He said, \"I am the voice of one crying out in the wilderness, 'Make straight the way of the Lord,'\" as the prophet Isaiah said.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Now they had been sent from the Pharisees.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> They asked him, \"Why then are you baptizing if you are neither the Messiah, nor Elijah, nor the prophet?\" </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> John answered them, \"I baptize with water. Among you stands one whom you do not know,</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> the one who is coming after me; I am not worthy to untie the thong of his sandal.\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> This took place in Bethany across the Jordan where John was baptizing.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> The next day he saw Jesus coming toward him and declared, \"Here is the Lamb of God who takes away the sin of the world!</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> This is he of whom I said, 'After me comes a man who ranks ahead of me because he was before me.'</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> I myself did not know him; but I came baptizing with water for this reason, that he might be revealed to Israel.\"</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> And John testified, \"I saw the Spirit descending from heaven like a dove, and it remained on him.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> I myself did not know him, but the one who sent me to baptize with water said to me, 'He on whom you see the Spirit descend and remain is the one who baptizes with the Holy Spirit.'</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> And I myself have seen and have testified that this is the Son of God.\" </VERS>\r\n\t\t\t<VERS vnumber=\"35\"> The next day John again was standing with two of his disciples,</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> and as he watched Jesus walk by, he exclaimed, \"Look, here is the Lamb of God!\"</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> The two disciples heard him say this, and they followed Jesus.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> When Jesus turned and saw them following, he said to them, \"What are you looking for?\" They said to him, \"Rabbi\" (which translated means Teacher), \"where are you staying?\"</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> He said to them, \"Come and see.\" They came and saw where he was staying, and they remained with him that day. It was about four o'clock in the afternoon.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> One of the two who heard John speak and followed him was Andrew, Simon Peter's brother.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> He first found his brother Simon and said to him, \"We have found the Messiah\" (which is translated Anointed).</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> He brought Simon to Jesus, who looked at him and said, \"You are Simon son of John. You are to be called Cephas\" (which is translated Peter).</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> The next day Jesus decided to go to Galilee. He found Philip and said to him, \"Follow me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> Now Philip was from Bethsaida, the city of Andrew and Peter.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> Philip found Nathanael and said to him, \"We have found him about whom Moses in the law and also the prophets wrote, Jesus son of Joseph from Nazareth.\"</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> Nathanael said to him, \"Can anything good come out of Nazareth?\" Philip said to him, \"Come and see.\"</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> When Jesus saw Nathanael coming toward him, he said of him, \"Here is truly an Israelite in whom there is no deceit!\"</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> Nathanael asked him, \"Where did you get to know me?\" Jesus answered, \"I saw you under the fig tree before Philip called you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> Nathanael replied, \"Rabbi, you are the Son of God! You are the King of Israel!\"</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> Jesus answered, \"Do you believe because I told you that I saw you under the fig tree? You will see greater things than these.\"</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> And he said to him, \"Very truly, I tell you, you will see heaven opened and the angels of God ascending and descending upon the Son of Man.\" </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> On the third day there was a wedding in Cana of Galilee, and the mother of Jesus was there.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Jesus and his disciples had also been invited to the wedding.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> When the wine gave out, the mother of Jesus said to him, \"They have no wine.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> And Jesus said to her, \"Woman, what concern is that to you and to me? My hour has not yet come.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> His mother said to the servants, \"Do whatever he tells you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Now standing there were six stone water jars for the Jewish rites of purification, each holding twenty or thirty gallons.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Jesus said to them, \"Fill the jars with water.\" And they filled them up to the brim.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> He said to them, \"Now draw some out, and take it to the chief steward.\" So they took it.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> When the steward tasted the water that had become wine, and did not know where it came from (though the servants who had drawn the water knew), the steward called the bridegroom</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> and said to him, \"Everyone serves the good wine first, and then the inferior wine after the guests have become drunk. But you have kept the good wine until now.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Jesus did this, the first of his signs, in Cana of Galilee, and revealed his glory; and his disciples believed in him.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> After this he went down to Capernaum with his mother, his brothers, and his disciples; and they remained there a few days.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The Passover of the Jews was near, and Jesus went up to Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> In the temple he found people selling cattle, sheep, and doves, and the money changers seated at their tables.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Making a whip of cords, he drove all of them out of the temple, both the sheep and the cattle. He also poured out the coins of the money changers and overturned their tables.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> He told those who were selling the doves, \"Take these things out of here! Stop making my Father's house a marketplace!\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> His disciples remembered that it was written, \"Zeal for your house will consume me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The Jews then said to him, \"What sign can you show us for doing this?\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Jesus answered them, \"Destroy this temple, and in three days I will raise it up.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The Jews then said, \"This temple has been under construction for forty-six years, and will you raise it up in three days?\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> But he was speaking of the temple of his body.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> After he was raised from the dead, his disciples remembered that he had said this; and they believed the scripture and the word that Jesus had spoken.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> When he was in Jerusalem during the Passover festival, many believed in his name because they saw the signs that he was doing.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> But Jesus on his part would not entrust himself to them, because he knew all people</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> and needed no one to testify about anyone; for he himself knew what was in everyone.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> Now there was a Pharisee named Nicodemus, a leader of the Jews.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He came to Jesus by night and said to him, \"Rabbi, we know that you are a teacher who has come from God; for no one can do these signs that you do apart from the presence of God.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Jesus answered him, \"Very truly, I tell you, no one can see the kingdom of God without being born from above.\" </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Nicodemus said to him, \"How can anyone be born after having grown old? Can one enter a second time into the mother's womb and be born?\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Jesus answered, \"Very truly, I tell you, no one can enter the kingdom of God without being born of water and Spirit.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> What is born of the flesh is flesh, and what is born of the Spirit is spirit. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Do not be astonished that I said to you, 'You must be born from above.' </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The wind blows where it chooses, and you hear the sound of it, but you do not know where it comes from or where it goes. So it is with everyone who is born of the Spirit.\" </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Nicodemus said to him, \"How can these things be?\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Jesus answered him, \"Are you a teacher of Israel, and yet you do not understand these things?</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> \"Very truly, I tell you, we speak of what we know and testify to what we have seen; yet you do not receive our testimony. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> If I have told you about earthly things and you do not believe, how can you believe if I tell you about heavenly things?</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> No one has ascended into heaven except the one who descended from heaven, the Son of Man. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> And just as Moses lifted up the serpent in the wilderness, so must the Son of Man be lifted up,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> that whoever believes in him may have eternal life. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> \"For God so loved the world that he gave his only Son, so that everyone who believes in him may not perish but may have eternal life.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> \"Indeed, God did not send the Son into the world to condemn the world, but in order that the world might be saved through him.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Those who believe in him are not condemned; but those who do not believe are condemned already, because they have not believed in the name of the only Son of God.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> And this is the judgment, that the light has come into the world, and people loved darkness rather than light because their deeds were evil.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> For all who do evil hate the light and do not come to the light, so that their deeds may not be exposed.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> But those who do what is true come to the light, so that it may be clearly seen that their deeds have been done in God.\" </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> After this Jesus and his disciples went into the Judean countryside, and he spent some time there with them and baptized.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> John also was baptizing at Aenon near Salim because water was abundant there; and people kept coming and were being baptized</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> -- John, of course, had not yet been thrown into prison.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Now a discussion about purification arose between John's disciples and a Jew. </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> They came to John and said to him, \"Rabbi, the one who was with you across the Jordan, to whom you testified, here he is baptizing, and all are going to him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> John answered, \"No one can receive anything except what has been given from heaven.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> You yourselves are my witnesses that I said, 'I am not the Messiah, but I have been sent ahead of him.' </VERS>\r\n\t\t\t<VERS vnumber=\"29\"> He who has the bride is the bridegroom. The friend of the bridegroom, who stands and hears him, rejoices greatly at the bridegroom's voice. For this reason my joy has been fulfilled.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> He must increase, but I must decrease.\" </VERS>\r\n\t\t\t<VERS vnumber=\"31\"> The one who comes from above is above all; the one who is of the earth belongs to the earth and speaks about earthly things. The one who comes from heaven is above all.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> He testifies to what he has seen and heard, yet no one accepts his testimony.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Whoever has accepted his testimony has certified this, that God is true. </VERS>\r\n\t\t\t<VERS vnumber=\"34\"> He whom God has sent speaks the words of God, for he gives the Spirit without measure.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> The Father loves the Son and has placed all things in his hands.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Whoever believes in the Son has eternal life; whoever disobeys the Son will not see life, but must endure God's wrath.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> Now when Jesus learned that the Pharisees had heard, \"Jesus is making and baptizing more disciples than John\" </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> -- although it was not Jesus himself but his disciples who baptized--</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> he left Judea and started back to Galilee.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But he had to go through Samaria.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> So he came to a Samaritan city called Sychar, near the plot of ground that Jacob had given to his son Joseph.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Jacob's well was there, and Jesus, tired out by his journey, was sitting by the well. It was about noon.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> A Samaritan woman came to draw water, and Jesus said to her, \"Give me a drink.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> (His disciples had gone to the city to buy food.)</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The Samaritan woman said to him, \"How is it that you, a Jew, ask a drink of me, a woman of Samaria?\" (Jews do not share things in common with Samaritans.) </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Jesus answered her, \"If you knew the gift of God, and who it is that is saying to you, 'Give me a drink,' you would have asked him, and he would have given you living water.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The woman said to him, \"Sir, you have no bucket, and the well is deep. Where do you get that living water?</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Are you greater than our ancestor Jacob, who gave us the well, and with his sons and his flocks drank from it?\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Jesus said to her, \"Everyone who drinks of this water will be thirsty again,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> but those who drink of the water that I will give them will never be thirsty. The water that I will give will become in them a spring of water gushing up to eternal life.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The woman said to him, \"Sir, give me this water, so that I may never be thirsty or have to keep coming here to draw water.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Jesus said to her, \"Go, call your husband, and come back.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The woman answered him, \"I have no husband.\" Jesus said to her, \"You are right in saying, 'I have no husband';</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> for you have had five husbands, and the one you have now is not your husband. What you have said is true!\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The woman said to him, \"Sir, I see that you are a prophet.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Our ancestors worshiped on this mountain, but you say that the place where people must worship is in Jerusalem.\" </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Jesus said to her, \"Woman, believe me, the hour is coming when you will worship the Father neither on this mountain nor in Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> You worship what you do not know; we worship what we know, for salvation is from the Jews.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> But the hour is coming, and is now here, when the true worshipers will worship the Father in spirit and truth, for the Father seeks such as these to worship him.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> God is spirit, and those who worship him must worship in spirit and truth.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> The woman said to him, \"I know that Messiah is coming\" (who is called Christ). \"When he comes, he will proclaim all things to us.\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Jesus said to her, \"I am he, the one who is speaking to you.\" </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Just then his disciples came. They were astonished that he was speaking with a woman, but no one said, \"What do you want?\" or, \"Why are you speaking with her?\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Then the woman left her water jar and went back to the city. She said to the people,</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> \"Come and see a man who told me everything I have ever done! He cannot be the Messiah, can he?\" </VERS>\r\n\t\t\t<VERS vnumber=\"30\"> They left the city and were on their way to him.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Meanwhile the disciples were urging him, \"Rabbi, eat something.\"</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> But he said to them, \"I have food to eat that you do not know about.\"</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> So the disciples said to one another, \"Surely no one has brought him something to eat?\"</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Jesus said to them, \"My food is to do the will of him who sent me and to complete his work.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Do you not say, 'Four months more, then comes the harvest'? But I tell you, look around you, and see how the fields are ripe for harvesting.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> The reaper is already receiving wages and is gathering fruit for eternal life, so that sower and reaper may rejoice together. </VERS>\r\n\t\t\t<VERS vnumber=\"37\"> For here the saying holds true, 'One sows and another reaps.'</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> I sent you to reap that for which you did not labor. Others have labored, and you have entered into their labor.\"</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> Many Samaritans from that city believed in him because of the woman's testimony, \"He told me everything I have ever done.\"</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> So when the Samaritans came to him, they asked him to stay with them; and he stayed there two days.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> And many more believed because of his word.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> They said to the woman, \"It is no longer because of what you said that we believe, for we have heard for ourselves, and we know that this is truly the Savior of the world.\"</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> When the two days were over, he went from that place to Galilee</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> (for Jesus himself had testified that a prophet has no honor in the prophet's own country).</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> When he came to Galilee, the Galileans welcomed him, since they had seen all that he had done in Jerusalem at the festival; for they too had gone to the festival.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> Then he came again to Cana in Galilee where he had changed the water into wine. Now there was a royal official whose son lay ill in Capernaum.</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> When he heard that Jesus had come from Judea to Galilee, he went and begged him to come down and heal his son, for he was at the point of death.</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> Then Jesus said to him, \"Unless you see signs and wonders you will not believe.\" </VERS>\r\n\t\t\t<VERS vnumber=\"49\"> The official said to him, \"Sir, come down before my little boy dies.\"</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> Jesus said to him, \"Go; your son will live.\" The man believed the word that Jesus spoke to him and started on his way.</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> As he was going down, his slaves met him and told him that his child was alive.</VERS>\r\n\t\t\t<VERS vnumber=\"52\"> So he asked them the hour when he began to recover, and they said to him, \"Yesterday at one in the afternoon the fever left him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"53\"> The father realized that this was the hour when Jesus had said to him, \"Your son will live.\" So he himself believed, along with his whole household.</VERS>\r\n\t\t\t<VERS vnumber=\"54\"> Now this was the second sign that Jesus did after coming from Judea to Galilee.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"5\">\r\n\t\t\t<VERS vnumber=\"1\"> After this there was a festival of the Jews, and Jesus went up to Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Now in Jerusalem by the Sheep Gate there is a pool, called in Hebrew Beth-zatha, which has five porticoes. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> In these lay many invalids-- blind, lame, and paralyzed.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> One man was there who had been ill for thirty-eight years.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> When Jesus saw him lying there and knew that he had been there a long time, he said to him, \"Do you want to be made well?\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The sick man answered him, \"Sir, I have no one to put me into the pool when the water is stirred up; and while I am making my way, someone else steps down ahead of me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Jesus said to him, \"Stand up, take your mat and walk.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> At once the man was made well, and he took up his mat and began to walk. Now that day was a sabbath.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> So the Jews said to the man who had been cured, \"It is the sabbath; it is not lawful for you to carry your mat.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But he answered them, \"The man who made me well said to me, 'Take up your mat and walk.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> They asked him, \"Who is the man who said to you, 'Take it up and walk'?\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Now the man who had been healed did not know who it was, for Jesus had disappeared in the crowd that was there. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Later Jesus found him in the temple and said to him, \"See, you have been made well! Do not sin any more, so that nothing worse happens to you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The man went away and told the Jews that it was Jesus who had made him well.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Therefore the Jews started persecuting Jesus, because he was doing such things on the sabbath.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> But Jesus answered them, \"My Father is still working, and I also am working.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> For this reason the Jews were seeking all the more to kill him, because he was not only breaking the sabbath, but was also calling God his own Father, thereby making himself equal to God.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Jesus said to them, \"Very truly, I tell you, the Son can do nothing on his own, but only what he sees the Father doing; for whatever the Father does, the Son does likewise. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The Father loves the Son and shows him all that he himself is doing; and he will show him greater works than these, so that you will be astonished.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Indeed, just as the Father raises the dead and gives them life, so also the Son gives life to whomever he wishes.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The Father judges no one but has given all judgment to the Son,</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> so that all may honor the Son just as they honor the Father. Anyone who does not honor the Son does not honor the Father who sent him.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Very truly, I tell you, anyone who hears my word and believes him who sent me has eternal life, and does not come under judgment, but has passed from death to life.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> \"Very truly, I tell you, the hour is coming, and is now here, when the dead will hear the voice of the Son of God, and those who hear will live.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> For just as the Father has life in himself, so he has granted the Son also to have life in himself;</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> and he has given him authority to execute judgment, because he is the Son of Man.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Do not be astonished at this; for the hour is coming when all who are in their graves will hear his voice</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> and will come out-- those who have done good, to the resurrection of life, and those who have done evil, to the resurrection of condemnation.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> \"I can do nothing on my own. As I hear, I judge; and my judgment is just, because I seek to do not my own will but the will of him who sent me.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> \"If I testify about myself, my testimony is not true.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> There is another who testifies on my behalf, and I know that his testimony to me is true.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> You sent messengers to John, and he testified to the truth.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Not that I accept such human testimony, but I say these things so that you may be saved.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> He was a burning and shining lamp, and you were willing to rejoice for a while in his light.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> But I have a testimony greater than John's. The works that the Father has given me to complete, the very works that I am doing, testify on my behalf that the Father has sent me.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> And the Father who sent me has himself testified on my behalf. You have never heard his voice or seen his form,</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> and you do not have his word abiding in you, because you do not believe him whom he has sent.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> \"You search the scriptures because you think that in them you have eternal life; and it is they that testify on my behalf.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> Yet you refuse to come to me to have life.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> I do not accept glory from human beings.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> But I know that you do not have the love of God in you. </VERS>\r\n\t\t\t<VERS vnumber=\"43\"> I have come in my Father's name, and you do not accept me; if another comes in his own name, you will accept him.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> How can you believe when you accept glory from one another and do not seek the glory that comes from the one who alone is God?</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> Do not think that I will accuse you before the Father; your accuser is Moses, on whom you have set your hope.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> If you believed Moses, you would believe me, for he wrote about me.</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> But if you do not believe what he wrote, how will you believe what I say?\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"6\">\r\n\t\t\t<VERS vnumber=\"1\"> After this Jesus went to the other side of the Sea of Galilee, also called the Sea of Tiberias. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> A large crowd kept following him, because they saw the signs that he was doing for the sick.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Jesus went up the mountain and sat down there with his disciples.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Now the Passover, the festival of the Jews, was near.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> When he looked up and saw a large crowd coming toward him, Jesus said to Philip, \"Where are we to buy bread for these people to eat?\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> He said this to test him, for he himself knew what he was going to do.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Philip answered him, \"Six months' wages would not buy enough bread for each of them to get a little.\" </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> One of his disciples, Andrew, Simon Peter's brother, said to him,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> \"There is a boy here who has five barley loaves and two fish. But what are they among so many people?\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Jesus said, \"Make the people sit down.\" Now there was a great deal of grass in the place; so they sat down, about five thousand in all. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then Jesus took the loaves, and when he had given thanks, he distributed them to those who were seated; so also the fish, as much as they wanted.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> When they were satisfied, he told his disciples, \"Gather up the fragments left over, so that nothing may be lost.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> So they gathered them up, and from the fragments of the five barley loaves, left by those who had eaten, they filled twelve baskets.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> When the people saw the sign that he had done, they began to say, \"This is indeed the prophet who is to come into the world.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> When Jesus realized that they were about to come and take him by force to make him king, he withdrew again to the mountain by himself.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> When evening came, his disciples went down to the sea,</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> got into a boat, and started across the sea to Capernaum. It was now dark, and Jesus had not yet come to them.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The sea became rough because a strong wind was blowing.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> When they had rowed about three or four miles, they saw Jesus walking on the sea and coming near the boat, and they were terrified.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> But he said to them, \"It is I; do not be afraid.\" </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then they wanted to take him into the boat, and immediately the boat reached the land toward which they were going.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The next day the crowd that had stayed on the other side of the sea saw that there had been only one boat there. They also saw that Jesus had not got into the boat with his disciples, but that his disciples had gone away alone.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Then some boats from Tiberias came near the place where they had eaten the bread after the Lord had given thanks. </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> So when the crowd saw that neither Jesus nor his disciples were there, they themselves got into the boats and went to Capernaum looking for Jesus.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> When they found him on the other side of the sea, they said to him, \"Rabbi, when did you come here?\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Jesus answered them, \"Very truly, I tell you, you are looking for me, not because you saw signs, but because you ate your fill of the loaves.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Do not work for the food that perishes, but for the food that endures for eternal life, which the Son of Man will give you. For it is on him that God the Father has set his seal.\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Then they said to him, \"What must we do to perform the works of God?\"</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Jesus answered them, \"This is the work of God, that you believe in him whom he has sent.\"</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> So they said to him, \"What sign are you going to give us then, so that we may see it and believe you? What work are you performing?</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Our ancestors ate the manna in the wilderness; as it is written, 'He gave them bread from heaven to eat.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Then Jesus said to them, \"Very truly, I tell you, it was not Moses who gave you the bread from heaven, but it is my Father who gives you the true bread from heaven.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> For the bread of God is that which comes down from heaven and gives life to the world.\" </VERS>\r\n\t\t\t<VERS vnumber=\"34\"> They said to him, \"Sir, give us this bread always.\"</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Jesus said to them, \"I am the bread of life. Whoever comes to me will never be hungry, and whoever believes in me will never be thirsty.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> But I said to you that you have seen me and yet do not believe.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Everything that the Father gives me will come to me, and anyone who comes to me I will never drive away;</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> for I have come down from heaven, not to do my own will, but the will of him who sent me.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> And this is the will of him who sent me, that I should lose nothing of all that he has given me, but raise it up on the last day.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> This is indeed the will of my Father, that all who see the Son and believe in him may have eternal life; and I will raise them up on the last day.\"</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> Then the Jews began to complain about him because he said, \"I am the bread that came down from heaven.\"</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> They were saying, \"Is not this Jesus, the son of Joseph, whose father and mother we know? How can he now say, 'I have come down from heaven'?\"</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> Jesus answered them, \"Do not complain among yourselves.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> No one can come to me unless drawn by the Father who sent me; and I will raise that person up on the last day.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> It is written in the prophets, 'And they shall all be taught by God.' Everyone who has heard and learned from the Father comes to me.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> Not that anyone has seen the Father except the one who is from God; he has seen the Father.</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> Very truly, I tell you, whoever believes has eternal life.</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> I am the bread of life.</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> Your ancestors ate the manna in the wilderness, and they died.</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> This is the bread that comes down from heaven, so that one may eat of it and not die.</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> I am the living bread that came down from heaven. Whoever eats of this bread will live forever; and the bread that I will give for the life of the world is my flesh.\"</VERS>\r\n\t\t\t<VERS vnumber=\"52\"> The Jews then disputed among themselves, saying, \"How can this man give us his flesh to eat?\"</VERS>\r\n\t\t\t<VERS vnumber=\"53\"> So Jesus said to them, \"Very truly, I tell you, unless you eat the flesh of the Son of Man and drink his blood, you have no life in you.</VERS>\r\n\t\t\t<VERS vnumber=\"54\"> Those who eat my flesh and drink my blood have eternal life, and I will raise them up on the last day;</VERS>\r\n\t\t\t<VERS vnumber=\"55\"> for my flesh is true food and my blood is true drink.</VERS>\r\n\t\t\t<VERS vnumber=\"56\"> Those who eat my flesh and drink my blood abide in me, and I in them.</VERS>\r\n\t\t\t<VERS vnumber=\"57\"> Just as the living Father sent me, and I live because of the Father, so whoever eats me will live because of me.</VERS>\r\n\t\t\t<VERS vnumber=\"58\"> This is the bread that came down from heaven, not like that which your ancestors ate, and they died. But the one who eats this bread will live forever.\"</VERS>\r\n\t\t\t<VERS vnumber=\"59\"> He said these things while he was teaching in the synagogue at Capernaum.</VERS>\r\n\t\t\t<VERS vnumber=\"60\"> When many of his disciples heard it, they said, \"This teaching is difficult; who can accept it?\"</VERS>\r\n\t\t\t<VERS vnumber=\"61\"> But Jesus, being aware that his disciples were complaining about it, said to them, \"Does this offend you?</VERS>\r\n\t\t\t<VERS vnumber=\"62\"> Then what if you were to see the Son of Man ascending to where he was before?</VERS>\r\n\t\t\t<VERS vnumber=\"63\"> It is the spirit that gives life; the flesh is useless. The words that I have spoken to you are spirit and life.</VERS>\r\n\t\t\t<VERS vnumber=\"64\"> But among you there are some who do not believe.\" For Jesus knew from the first who were the ones that did not believe, and who was the one that would betray him.</VERS>\r\n\t\t\t<VERS vnumber=\"65\"> And he said, \"For this reason I have told you that no one can come to me unless it is granted by the Father.\"</VERS>\r\n\t\t\t<VERS vnumber=\"66\"> Because of this many of his disciples turned back and no longer went about with him.</VERS>\r\n\t\t\t<VERS vnumber=\"67\"> So Jesus asked the twelve, \"Do you also wish to go away?\"</VERS>\r\n\t\t\t<VERS vnumber=\"68\"> Simon Peter answered him, \"Lord, to whom can we go? You have the words of eternal life.</VERS>\r\n\t\t\t<VERS vnumber=\"69\"> We have come to believe and know that you are the Holy One of God.\" </VERS>\r\n\t\t\t<VERS vnumber=\"70\"> Jesus answered them, \"Did I not choose you, the twelve? Yet one of you is a devil.\"</VERS>\r\n\t\t\t<VERS vnumber=\"71\"> He was speaking of Judas son of Simon Iscariot, for he, though one of the twelve, was going to betray him. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"7\">\r\n\t\t\t<VERS vnumber=\"1\"> After this Jesus went about in Galilee. He did not wish to go about in Judea because the Jews were looking for an opportunity to kill him. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Now the Jewish festival of Booths was near. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> So his brothers said to him, \"Leave here and go to Judea so that your disciples also may see the works you are doing;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> for no one who wants to be widely known acts in secret. If you do these things, show yourself to the world.\" </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> (For not even his brothers believed in him.)</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Jesus said to them, \"My time has not yet come, but your time is always here.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The world cannot hate you, but it hates me because I testify against it that its works are evil.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Go to the festival yourselves. I am not going to this festival, for my time has not yet fully come.\" </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> After saying this, he remained in Galilee.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> But after his brothers had gone to the festival, then he also went, not publicly but as it were in secret. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The Jews were looking for him at the festival and saying, \"Where is he?\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> And there was considerable complaining about him among the crowds. While some were saying, \"He is a good man,\" others were saying, \"No, he is deceiving the crowd.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Yet no one would speak openly about him for fear of the Jews.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> About the middle of the festival Jesus went up into the temple and began to teach.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The Jews were astonished at it, saying, \"How does this man have such learning, when he has never been taught?\" </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then Jesus answered them, \"My teaching is not mine but his who sent me.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Anyone who resolves to do the will of God will know whether the teaching is from God or whether I am speaking on my own.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Those who speak on their own seek their own glory; but the one who seeks the glory of him who sent him is true, and there is nothing false in him.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> \"Did not Moses give you the law? Yet none of you keeps the law. Why are you looking for an opportunity to kill me?\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The crowd answered, \"You have a demon! Who is trying to kill you?\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Jesus answered them, \"I performed one work, and all of you are astonished.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Moses gave you circumcision (it is, of course, not from Moses, but from the patriarchs), and you circumcise a man on the sabbath.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> If a man receives circumcision on the sabbath in order that the law of Moses may not be broken, are you angry with me because I healed a man's whole body on the sabbath?</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Do not judge by appearances, but judge with right judgment.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Now some of the people of Jerusalem were saying, \"Is not this the man whom they are trying to kill?</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> And here he is, speaking openly, but they say nothing to him! Can it be that the authorities really know that this is the Messiah? </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Yet we know where this man is from; but when the Messiah comes, no one will know where he is from.\" </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Then Jesus cried out as he was teaching in the temple, \"You know me, and you know where I am from. I have not come on my own. But the one who sent me is true, and you do not know him.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> I know him, because I am from him, and he sent me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Then they tried to arrest him, but no one laid hands on him, because his hour had not yet come.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Yet many in the crowd believed in him and were saying, \"When the Messiah comes, will he do more signs than this man has done?\" </VERS>\r\n\t\t\t<VERS vnumber=\"32\"> The Pharisees heard the crowd muttering such things about him, and the chief priests and Pharisees sent temple police to arrest him.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Jesus then said, \"I will be with you a little while longer, and then I am going to him who sent me.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> You will search for me, but you will not find me; and where I am, you cannot come.\"</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> The Jews said to one another, \"Where does this man intend to go that we will not find him? Does he intend to go to the Dispersion among the Greeks and teach the Greeks?</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> What does he mean by saying, 'You will search for me and you will not find me' and 'Where I am, you cannot come'?\"</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> On the last day of the festival, the great day, while Jesus was standing there, he cried out, \"Let anyone who is thirsty come to me,</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> and let the one who believes in me drink. As the scripture has said, 'Out of the believer's heart shall flow rivers of living water.'\" </VERS>\r\n\t\t\t<VERS vnumber=\"39\"> Now he said this about the Spirit, which believers in him were to receive; for as yet there was no Spirit, because Jesus was not yet glorified. </VERS>\r\n\t\t\t<VERS vnumber=\"40\"> When they heard these words, some in the crowd said, \"This is really the prophet.\"</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> Others said, \"This is the Messiah.\" But some asked, \"Surely the Messiah does not come from Galilee, does he? </VERS>\r\n\t\t\t<VERS vnumber=\"42\"> Has not the scripture said that the Messiah is descended from David and comes from Bethlehem, the village where David lived?\" </VERS>\r\n\t\t\t<VERS vnumber=\"43\"> So there was a division in the crowd because of him.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> Some of them wanted to arrest him, but no one laid hands on him.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> Then the temple police went back to the chief priests and Pharisees, who asked them, \"Why did you not arrest him?\"</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> The police answered, \"Never has anyone spoken like this!\"</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> Then the Pharisees replied, \"Surely you have not been deceived too, have you?</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> Has any one of the authorities or of the Pharisees believed in him?</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> But this crowd, which does not know the law-- they are accursed.\"</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> Nicodemus, who had gone to Jesus before, and who was one of them, asked, </VERS>\r\n\t\t\t<VERS vnumber=\"51\"> \"Our law does not judge people without first giving them a hearing to find out what they are doing, does it?\"</VERS>\r\n\t\t\t<VERS vnumber=\"52\"> They replied, \"Surely you are not also from Galilee, are you? Search and you will see that no prophet is to arise from Galilee.\" </VERS>\r\n\t\t\t<VERS vnumber=\"53\"> Then each of them went home,</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"8\">\r\n\t\t\t<VERS vnumber=\"1\"> while Jesus went to the Mount of Olives.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Early in the morning he came again to the temple. All the people came to him and he sat down and began to teach them.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The scribes and the Pharisees brought a woman who had been caught in adultery; and making her stand before all of them,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> they said to him, \"Teacher, this woman was caught in the very act of committing adultery.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Now in the law Moses commanded us to stone such women. Now what do you say?\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> They said this to test him, so that they might have some charge to bring against him. Jesus bent down and wrote with his finger on the ground.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> When they kept on questioning him, he straightened up and said to them, \"Let anyone among you who is without sin be the first to throw a stone at her.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And once again he bent down and wrote on the ground. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> When they heard it, they went away, one by one, beginning with the elders; and Jesus was left alone with the woman standing before him.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Jesus straightened up and said to her, \"Woman, where are they? Has no one condemned you?\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> She said, \"No one, sir.\" And Jesus said, \"Neither do I condemn you. Go your way, and from now on do not sin again.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Again Jesus spoke to them, saying, \"I am the light of the world. Whoever follows me will never walk in darkness but will have the light of life.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then the Pharisees said to him, \"You are testifying on your own behalf; your testimony is not valid.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Jesus answered, \"Even if I testify on my own behalf, my testimony is valid because I know where I have come from and where I am going, but you do not know where I come from or where I am going.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> You judge by human standards; I judge no one. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Yet even if I do judge, my judgment is valid; for it is not I alone who judge, but I and the Father who sent me. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> In your law it is written that the testimony of two witnesses is valid.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> I testify on my own behalf, and the Father who sent me testifies on my behalf.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Then they said to him, \"Where is your Father?\" Jesus answered, \"You know neither me nor my Father. If you knew me, you would know my Father also.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> He spoke these words while he was teaching in the treasury of the temple, but no one arrested him, because his hour had not yet come.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Again he said to them, \"I am going away, and you will search for me, but you will die in your sin. Where I am going, you cannot come.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Then the Jews said, \"Is he going to kill himself? Is that what he means by saying, 'Where I am going, you cannot come'?\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> He said to them, \"You are from below, I am from above; you are of this world, I am not of this world.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> I told you that you would die in your sins, for you will die in your sins unless you believe that I am he.\" </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> They said to him, \"Who are you?\" Jesus said to them, \"Why do I speak to you at all? </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> I have much to say about you and much to condemn; but the one who sent me is true, and I declare to the world what I have heard from him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> They did not understand that he was speaking to them about the Father.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> So Jesus said, \"When you have lifted up the Son of Man, then you will realize that I am he, and that I do nothing on my own, but I speak these things as the Father instructed me. </VERS>\r\n\t\t\t<VERS vnumber=\"29\"> And the one who sent me is with me; he has not left me alone, for I always do what is pleasing to him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> As he was saying these things, many believed in him.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Then Jesus said to the Jews who had believed in him, \"If you continue in my word, you are truly my disciples;</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> and you will know the truth, and the truth will make you free.\"</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> They answered him, \"We are descendants of Abraham and have never been slaves to anyone. What do you mean by saying, 'You will be made free'?\"</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Jesus answered them, \"Very truly, I tell you, everyone who commits sin is a slave to sin.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> The slave does not have a permanent place in the household; the son has a place there forever.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> So if the Son makes you free, you will be free indeed.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> I know that you are descendants of Abraham; yet you look for an opportunity to kill me, because there is no place in you for my word.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> I declare what I have seen in the Father's presence; as for you, you should do what you have heard from the Father.\" </VERS>\r\n\t\t\t<VERS vnumber=\"39\"> They answered him, \"Abraham is our father.\" Jesus said to them, \"If you were Abraham's children, you would be doing what Abraham did, </VERS>\r\n\t\t\t<VERS vnumber=\"40\"> but now you are trying to kill me, a man who has told you the truth that I heard from God. This is not what Abraham did.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> You are indeed doing what your father does.\" They said to him, \"We are not illegitimate children; we have one father, God himself.\"</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> Jesus said to them, \"If God were your Father, you would love me, for I came from God and now I am here. I did not come on my own, but he sent me.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> Why do you not understand what I say? It is because you cannot accept my word.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> You are from your father the devil, and you choose to do your father's desires. He was a murderer from the beginning and does not stand in the truth, because there is no truth in him. When he lies, he speaks according to his own nature, for he is a liar and the father of lies.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> But because I tell the truth, you do not believe me.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> Which of you convicts me of sin? If I tell the truth, why do you not believe me?</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> Whoever is from God hears the words of God. The reason you do not hear them is that you are not from God.\"</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> The Jews answered him, \"Are we not right in saying that you are a Samaritan and have a demon?\"</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> Jesus answered, \"I do not have a demon; but I honor my Father, and you dishonor me.</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> Yet I do not seek my own glory; there is one who seeks it and he is the judge.</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> Very truly, I tell you, whoever keeps my word will never see death.\"</VERS>\r\n\t\t\t<VERS vnumber=\"52\"> The Jews said to him, \"Now we know that you have a demon. Abraham died, and so did the prophets; yet you say, 'Whoever keeps my word will never taste death.'</VERS>\r\n\t\t\t<VERS vnumber=\"53\"> Are you greater than our father Abraham, who died? The prophets also died. Who do you claim to be?\"</VERS>\r\n\t\t\t<VERS vnumber=\"54\"> Jesus answered, \"If I glorify myself, my glory is nothing. It is my Father who glorifies me, he of whom you say, 'He is our God,'</VERS>\r\n\t\t\t<VERS vnumber=\"55\"> though you do not know him. But I know him; if I would say that I do not know him, I would be a liar like you. But I do know him and I keep his word.</VERS>\r\n\t\t\t<VERS vnumber=\"56\"> Your ancestor Abraham rejoiced that he would see my day; he saw it and was glad.\"</VERS>\r\n\t\t\t<VERS vnumber=\"57\"> Then the Jews said to him, \"You are not yet fifty years old, and have you seen Abraham?\" </VERS>\r\n\t\t\t<VERS vnumber=\"58\"> Jesus said to them, \"Very truly, I tell you, before Abraham was, I am.\"</VERS>\r\n\t\t\t<VERS vnumber=\"59\"> So they picked up stones to throw at him, but Jesus hid himself and went out of the temple.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"9\">\r\n\t\t\t<VERS vnumber=\"1\"> As he walked along, he saw a man blind from birth.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> His disciples asked him, \"Rabbi, who sinned, this man or his parents, that he was born blind?\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Jesus answered, \"Neither this man nor his parents sinned; he was born blind so that God's works might be revealed in him.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> We must work the works of him who sent me while it is day; night is coming when no one can work. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> As long as I am in the world, I am the light of the world.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> When he had said this, he spat on the ground and made mud with the saliva and spread the mud on the man's eyes,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> saying to him, \"Go, wash in the pool of Siloam\" (which means Sent). Then he went and washed and came back able to see.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The neighbors and those who had seen him before as a beggar began to ask, \"Is this not the man who used to sit and beg?\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Some were saying, \"It is he.\" Others were saying, \"No, but it is someone like him.\" He kept saying, \"I am the man.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> But they kept asking him, \"Then how were your eyes opened?\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> He answered, \"The man called Jesus made mud, spread it on my eyes, and said to me, 'Go to Siloam and wash.' Then I went and washed and received my sight.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> They said to him, \"Where is he?\" He said, \"I do not know.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> They brought to the Pharisees the man who had formerly been blind.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Now it was a sabbath day when Jesus made the mud and opened his eyes.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Then the Pharisees also began to ask him how he had received his sight. He said to them, \"He put mud on my eyes. Then I washed, and now I see.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Some of the Pharisees said, \"This man is not from God, for he does not observe the sabbath.\" But others said, \"How can a man who is a sinner perform such signs?\" And they were divided.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> So they said again to the blind man, \"What do you say about him? It was your eyes he opened.\" He said, \"He is a prophet.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The Jews did not believe that he had been blind and had received his sight until they called the parents of the man who had received his sight</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> and asked them, \"Is this your son, who you say was born blind? How then does he now see?\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> His parents answered, \"We know that this is our son, and that he was born blind;</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> but we do not know how it is that now he sees, nor do we know who opened his eyes. Ask him; he is of age. He will speak for himself.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> His parents said this because they were afraid of the Jews; for the Jews had already agreed that anyone who confessed Jesus to be the Messiah would be put out of the synagogue. </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Therefore his parents said, \"He is of age; ask him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> So for the second time they called the man who had been blind, and they said to him, \"Give glory to God! We know that this man is a sinner.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> He answered, \"I do not know whether he is a sinner. One thing I do know, that though I was blind, now I see.\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> They said to him, \"What did he do to you? How did he open your eyes?\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> He answered them, \"I have told you already, and you would not listen. Why do you want to hear it again? Do you also want to become his disciples?\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Then they reviled him, saying, \"You are his disciple, but we are disciples of Moses.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> We know that God has spoken to Moses, but as for this man, we do not know where he comes from.\"</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> The man answered, \"Here is an astonishing thing! You do not know where he comes from, and yet he opened my eyes.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> We know that God does not listen to sinners, but he does listen to one who worships him and obeys his will.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Never since the world began has it been heard that anyone opened the eyes of a person born blind.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> If this man were not from God, he could do nothing.\"</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> They answered him, \"You were born entirely in sins, and are you trying to teach us?\" And they drove him out.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Jesus heard that they had driven him out, and when he found him, he said, \"Do you believe in the Son of Man?\"</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> He answered, \"And who is he, sir? Tell me, so that I may believe in him.\" </VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Jesus said to him, \"You have seen him, and the one speaking with you is he.\"</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> He said, \"Lord, I believe.\" And he worshiped him. </VERS>\r\n\t\t\t<VERS vnumber=\"39\"> Jesus said, \"I came into this world for judgment so that those who do not see may see, and those who do see may become blind.\"</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> Some of the Pharisees near him heard this and said to him, \"Surely we are not blind, are we?\"</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> Jesus said to them, \"If you were blind, you would not have sin. But now that you say, 'We see,' your sin remains.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"10\">\r\n\t\t\t<VERS vnumber=\"1\"> \"Very truly, I tell you, anyone who does not enter the sheepfold by the gate but climbs in by another way is a thief and a bandit.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The one who enters by the gate is the shepherd of the sheep.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The gatekeeper opens the gate for him, and the sheep hear his voice. He calls his own sheep by name and leads them out.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> When he has brought out all his own, he goes ahead of them, and the sheep follow him because they know his voice.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> They will not follow a stranger, but they will run from him because they do not know the voice of strangers.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Jesus used this figure of speech with them, but they did not understand what he was saying to them.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> So again Jesus said to them, \"Very truly, I tell you, I am the gate for the sheep.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> All who came before me are thieves and bandits; but the sheep did not listen to them.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> I am the gate. Whoever enters by me will be saved, and will come in and go out and find pasture.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The thief comes only to steal and kill and destroy. I came that they may have life, and have it abundantly.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> \"I am the good shepherd. The good shepherd lays down his life for the sheep.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The hired hand, who is not the shepherd and does not own the sheep, sees the wolf coming and leaves the sheep and runs away-- and the wolf snatches them and scatters them.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The hired hand runs away because a hired hand does not care for the sheep.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> I am the good shepherd. I know my own and my own know me,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> just as the Father knows me and I know the Father. And I lay down my life for the sheep.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> I have other sheep that do not belong to this fold. I must bring them also, and they will listen to my voice. So there will be one flock, one shepherd.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> For this reason the Father loves me, because I lay down my life in order to take it up again.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> No one takes it from me, but I lay it down of my own accord. I have power to lay it down, and I have power to take it up again. I have received this command from my Father.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Again the Jews were divided because of these words.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Many of them were saying, \"He has a demon and is out of his mind. Why listen to him?\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Others were saying, \"These are not the words of one who has a demon. Can a demon open the eyes of the blind?\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> At that time the festival of the Dedication took place in Jerusalem. It was winter,</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> and Jesus was walking in the temple, in the portico of Solomon.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> So the Jews gathered around him and said to him, \"How long will you keep us in suspense? If you are the Messiah, tell us plainly.\" </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Jesus answered, \"I have told you, and you do not believe. The works that I do in my Father's name testify to me;</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> but you do not believe, because you do not belong to my sheep.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> My sheep hear my voice. I know them, and they follow me.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> I give them eternal life, and they will never perish. No one will snatch them out of my hand.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> What my Father has given me is greater than all else, and no one can snatch it out of the Father's hand. </VERS>\r\n\t\t\t<VERS vnumber=\"30\"> The Father and I are one.\"</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> The Jews took up stones again to stone him.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Jesus replied, \"I have shown you many good works from the Father. For which of these are you going to stone me?\"</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> The Jews answered, \"It is not for a good work that we are going to stone you, but for blasphemy, because you, though only a human being, are making yourself God.\"</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Jesus answered, \"Is it not written in your law, 'I said, you are gods'? </VERS>\r\n\t\t\t<VERS vnumber=\"35\"> If those to whom the word of God came were called 'gods'-- and the scripture cannot be annulled--</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> can you say that the one whom the Father has sanctified and sent into the world is blaspheming because I said, 'I am God's Son'?</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> If I am not doing the works of my Father, then do not believe me.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> But if I do them, even though you do not believe me, believe the works, so that you may know and understand that the Father is in me and I am in the Father.\" </VERS>\r\n\t\t\t<VERS vnumber=\"39\"> Then they tried to arrest him again, but he escaped from their hands.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> He went away again across the Jordan to the place where John had been baptizing earlier, and he remained there.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> Many came to him, and they were saying, \"John performed no sign, but everything that John said about this man was true.\"</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> And many believed in him there.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"11\">\r\n\t\t\t<VERS vnumber=\"1\"> Now a certain man was ill, Lazarus of Bethany, the village of Mary and her sister Martha.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Mary was the one who anointed the Lord with perfume and wiped his feet with her hair; her brother Lazarus was ill.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> So the sisters sent a message to Jesus, \"Lord, he whom you love is ill.\" </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But when Jesus heard it, he said, \"This illness does not lead to death; rather it is for God's glory, so that the Son of God may be glorified through it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Accordingly, though Jesus loved Martha and her sister and Lazarus,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> after having heard that Lazarus was ill, he stayed two days longer in the place where he was. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then after this he said to the disciples, \"Let us go to Judea again.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The disciples said to him, \"Rabbi, the Jews were just now trying to stone you, and are you going there again?\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Jesus answered, \"Are there not twelve hours of daylight? Those who walk during the day do not stumble, because they see the light of this world.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> But those who walk at night stumble, because the light is not in them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> After saying this, he told them, \"Our friend Lazarus has fallen asleep, but I am going there to awaken him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The disciples said to him, \"Lord, if he has fallen asleep, he will be all right.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Jesus, however, had been speaking about his death, but they thought that he was referring merely to sleep.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then Jesus told them plainly, \"Lazarus is dead.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> For your sake I am glad I was not there, so that you may believe. But let us go to him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Thomas, who was called the Twin, said to his fellow disciples, \"Let us also go, that we may die with him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> When Jesus arrived, he found that Lazarus had already been in the tomb four days. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Now Bethany was near Jerusalem, some two miles away, </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> and many of the Jews had come to Martha and Mary to console them about their brother.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> When Martha heard that Jesus was coming, she went and met him, while Mary stayed at home.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Martha said to Jesus, \"Lord, if you had been here, my brother would not have died.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> But even now I know that God will give you whatever you ask of him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Jesus said to her, \"Your brother will rise again.\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Martha said to him, \"I know that he will rise again in the resurrection on the last day.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Jesus said to her, \"I am the resurrection and the life. Those who believe in me, even though they die, will live, </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> and everyone who lives and believes in me will never die. Do you believe this?\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> She said to him, \"Yes, Lord, I believe that you are the Messiah, the Son of God, the one coming into the world.\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> When she had said this, she went back and called her sister Mary, and told her privately, \"The Teacher is here and is calling for you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> And when she heard it, she got up quickly and went to him.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Now Jesus had not yet come to the village, but was still at the place where Martha had met him.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> The Jews who were with her in the house, consoling her, saw Mary get up quickly and go out. They followed her because they thought that she was going to the tomb to weep there.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> When Mary came where Jesus was and saw him, she knelt at his feet and said to him, \"Lord, if you had been here, my brother would not have died.\"</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> When Jesus saw her weeping, and the Jews who came with her also weeping, he was greatly disturbed in spirit and deeply moved.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> He said, \"Where have you laid him?\" They said to him, \"Lord, come and see.\"</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Jesus began to weep.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> So the Jews said, \"See how he loved him!\"</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> But some of them said, \"Could not he who opened the eyes of the blind man have kept this man from dying?\"</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Then Jesus, again greatly disturbed, came to the tomb. It was a cave, and a stone was lying against it.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> Jesus said, \"Take away the stone.\" Martha, the sister of the dead man, said to him, \"Lord, already there is a stench because he has been dead four days.\"</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> Jesus said to her, \"Did I not tell you that if you believed, you would see the glory of God?\"</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> So they took away the stone. And Jesus looked upward and said, \"Father, I thank you for having heard me.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> I knew that you always hear me, but I have said this for the sake of the crowd standing here, so that they may believe that you sent me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> When he had said this, he cried with a loud voice, \"Lazarus, come out!\"</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> The dead man came out, his hands and feet bound with strips of cloth, and his face wrapped in a cloth. Jesus said to them, \"Unbind him, and let him go.\"</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> Many of the Jews therefore, who had come with Mary and had seen what Jesus did, believed in him.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> But some of them went to the Pharisees and told them what he had done.</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> So the chief priests and the Pharisees called a meeting of the council, and said, \"What are we to do? This man is performing many signs.</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> If we let him go on like this, everyone will believe in him, and the Romans will come and destroy both our holy place and our nation.\"</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> But one of them, Caiaphas, who was high priest that year, said to them, \"You know nothing at all!</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> You do not understand that it is better for you to have one man die for the people than to have the whole nation destroyed.\"</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> He did not say this on his own, but being high priest that year he prophesied that Jesus was about to die for the nation,</VERS>\r\n\t\t\t<VERS vnumber=\"52\"> and not for the nation only, but to gather into one the dispersed children of God.</VERS>\r\n\t\t\t<VERS vnumber=\"53\"> So from that day on they planned to put him to death.</VERS>\r\n\t\t\t<VERS vnumber=\"54\"> Jesus therefore no longer walked about openly among the Jews, but went from there to a town called Ephraim in the region near the wilderness; and he remained there with the disciples.</VERS>\r\n\t\t\t<VERS vnumber=\"55\"> Now the Passover of the Jews was near, and many went up from the country to Jerusalem before the Passover to purify themselves.</VERS>\r\n\t\t\t<VERS vnumber=\"56\"> They were looking for Jesus and were asking one another as they stood in the temple, \"What do you think? Surely he will not come to the festival, will he?\"</VERS>\r\n\t\t\t<VERS vnumber=\"57\"> Now the chief priests and the Pharisees had given orders that anyone who knew where Jesus was should let them know, so that they might arrest him. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"12\">\r\n\t\t\t<VERS vnumber=\"1\"> Six days before the Passover Jesus came to Bethany, the home of Lazarus, whom he had raised from the dead.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> There they gave a dinner for him. Martha served, and Lazarus was one of those at the table with him.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Mary took a pound of costly perfume made of pure nard, anointed Jesus' feet, and wiped them with her hair. The house was filled with the fragrance of the perfume. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But Judas Iscariot, one of his disciples (the one who was about to betray him), said,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> \"Why was this perfume not sold for three hundred denarii and the money given to the poor?\" </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> (He said this not because he cared about the poor, but because he was a thief; he kept the common purse and used to steal what was put into it.)</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Jesus said, \"Leave her alone. She bought it so that she might keep it for the day of my burial. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> You always have the poor with you, but you do not always have me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> When the great crowd of the Jews learned that he was there, they came not only because of Jesus but also to see Lazarus, whom he had raised from the dead.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> So the chief priests planned to put Lazarus to death as well,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> since it was on account of him that many of the Jews were deserting and were believing in Jesus.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The next day the great crowd that had come to the festival heard that Jesus was coming to Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> So they took branches of palm trees and went out to meet him, shouting, \"Hosanna! Blessed is the one who comes in the name of the Lord-- the King of Israel!\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Jesus found a young donkey and sat on it; as it is written:</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> \"Do not be afraid, daughter of Zion. Look, your king is coming, sitting on a donkey's colt!\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> His disciples did not understand these things at first; but when Jesus was glorified, then they remembered that these things had been written of him and had been done to him.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> So the crowd that had been with him when he called Lazarus out of the tomb and raised him from the dead continued to testify. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> It was also because they heard that he had performed this sign that the crowd went to meet him.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The Pharisees then said to one another, \"You see, you can do nothing. Look, the world has gone after him!\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Now among those who went up to worship at the festival were some Greeks.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> They came to Philip, who was from Bethsaida in Galilee, and said to him, \"Sir, we wish to see Jesus.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Philip went and told Andrew; then Andrew and Philip went and told Jesus.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Jesus answered them, \"The hour has come for the Son of Man to be glorified.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Very truly, I tell you, unless a grain of wheat falls into the earth and dies, it remains just a single grain; but if it dies, it bears much fruit.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Those who love their life lose it, and those who hate their life in this world will keep it for eternal life.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Whoever serves me must follow me, and where I am, there will my servant be also. Whoever serves me, the Father will honor.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> \"Now my soul is troubled. And what should I say-- 'Father, save me from this hour'? No, it is for this reason that I have come to this hour.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Father, glorify your name.\" Then a voice came from heaven, \"I have glorified it, and I will glorify it again.\"</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> The crowd standing there heard it and said that it was thunder. Others said, \"An angel has spoken to him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Jesus answered, \"This voice has come for your sake, not for mine.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Now is the judgment of this world; now the ruler of this world will be driven out.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> And I, when I am lifted up from the earth, will draw all people to myself.\" </VERS>\r\n\t\t\t<VERS vnumber=\"33\"> He said this to indicate the kind of death he was to die.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> The crowd answered him, \"We have heard from the law that the Messiah remains forever. How can you say that the Son of Man must be lifted up? Who is this Son of Man?\" </VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Jesus said to them, \"The light is with you for a little longer. Walk while you have the light, so that the darkness may not overtake you. If you walk in the darkness, you do not know where you are going.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> While you have the light, believe in the light, so that you may become children of light.\" After Jesus had said this, he departed and hid from them.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Although he had performed so many signs in their presence, they did not believe in him.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> This was to fulfill the word spoken by the prophet Isaiah: \"Lord, who has believed our message, and to whom has the arm of the Lord been revealed?\"</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> And so they could not believe, because Isaiah also said,</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> \"He has blinded their eyes and hardened their heart, so that they might not look with their eyes, and understand with their heart and turn-- and I would heal them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> Isaiah said this because he saw his glory and spoke about him. </VERS>\r\n\t\t\t<VERS vnumber=\"42\"> Nevertheless many, even of the authorities, believed in him. But because of the Pharisees they did not confess it, for fear that they would be put out of the synagogue;</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> for they loved human glory more than the glory that comes from God.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> Then Jesus cried aloud: \"Whoever believes in me believes not in me but in him who sent me.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> And whoever sees me sees him who sent me.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> I have come as light into the world, so that everyone who believes in me should not remain in the darkness.</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> I do not judge anyone who hears my words and does not keep them, for I came not to judge the world, but to save the world.</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> The one who rejects me and does not receive my word has a judge; on the last day the word that I have spoken will serve as judge,</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> for I have not spoken on my own, but the Father who sent me has himself given me a commandment about what to say and what to speak.</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> And I know that his commandment is eternal life. What I speak, therefore, I speak just as the Father has told me.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"13\">\r\n\t\t\t<VERS vnumber=\"1\"> Now before the festival of the Passover, Jesus knew that his hour had come to depart from this world and go to the Father. Having loved his own who were in the world, he loved them to the end.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The devil had already put it into the heart of Judas son of Simon Iscariot to betray him. And during supper</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Jesus, knowing that the Father had given all things into his hands, and that he had come from God and was going to God,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> got up from the table, took off his outer robe, and tied a towel around himself. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then he poured water into a basin and began to wash the disciples' feet and to wipe them with the towel that was tied around him.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> He came to Simon Peter, who said to him, \"Lord, are you going to wash my feet?\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Jesus answered, \"You do not know now what I am doing, but later you will understand.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Peter said to him, \"You will never wash my feet.\" Jesus answered, \"Unless I wash you, you have no share with me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Simon Peter said to him, \"Lord, not my feet only but also my hands and my head!\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Jesus said to him, \"One who has bathed does not need to wash, except for the feet, but is entirely clean. And you are clean, though not all of you.\" </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> For he knew who was to betray him; for this reason he said, \"Not all of you are clean.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> After he had washed their feet, had put on his robe, and had returned to the table, he said to them, \"Do you know what I have done to you?</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> You call me Teacher and Lord-- and you are right, for that is what I am.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> So if I, your Lord and Teacher, have washed your feet, you also ought to wash one another's feet.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> For I have set you an example, that you also should do as I have done to you.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Very truly, I tell you, servants are not greater than their master, nor are messengers greater than the one who sent them. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> If you know these things, you are blessed if you do them.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> I am not speaking of all of you; I know whom I have chosen. But it is to fulfill the scripture, 'The one who ate my bread has lifted his heel against me.' </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> I tell you this now, before it occurs, so that when it does occur, you may believe that I am he. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Very truly, I tell you, whoever receives one whom I send receives me; and whoever receives me receives him who sent me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> After saying this Jesus was troubled in spirit, and declared, \"Very truly, I tell you, one of you will betray me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The disciples looked at one another, uncertain of whom he was speaking.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> One of his disciples-- the one whom Jesus loved-- was reclining next to him;</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Simon Peter therefore motioned to him to ask Jesus of whom he was speaking.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> So while reclining next to Jesus, he asked him, \"Lord, who is it?\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Jesus answered, \"It is the one to whom I give this piece of bread when I have dipped it in the dish.\" So when he had dipped the piece of bread, he gave it to Judas son of Simon Iscariot. </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> After he received the piece of bread, Satan entered into him. Jesus said to him, \"Do quickly what you are going to do.\" </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Now no one at the table knew why he said this to him.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Some thought that, because Judas had the common purse, Jesus was telling him, \"Buy what we need for the festival\"; or, that he should give something to the poor.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> So, after receiving the piece of bread, he immediately went out. And it was night.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> When he had gone out, Jesus said, \"Now the Son of Man has been glorified, and God has been glorified in him.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> If God has been glorified in him, God will also glorify him in himself and will glorify him at once. </VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Little children, I am with you only a little longer. You will look for me; and as I said to the Jews so now I say to you, 'Where I am going, you cannot come.'</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> I give you a new commandment, that you love one another. Just as I have loved you, you also should love one another.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> By this everyone will know that you are my disciples, if you have love for one another.\"</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Simon Peter said to him, \"Lord, where are you going?\" Jesus answered, \"Where I am going, you cannot follow me now; but you will follow afterward.\"</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Peter said to him, \"Lord, why can I not follow you now? I will lay down my life for you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Jesus answered, \"Will you lay down your life for me? Very truly, I tell you, before the cock crows, you will have denied me three times.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"14\">\r\n\t\t\t<VERS vnumber=\"1\"> \"Do not let your hearts be troubled. Believe in God, believe also in me. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> In my Father's house there are many dwelling places. If it were not so, would I have told you that I go to prepare a place for you? </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And if I go and prepare a place for you, I will come again and will take you to myself, so that where I am, there you may be also.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> And you know the way to the place where I am going.\" </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Thomas said to him, \"Lord, we do not know where you are going. How can we know the way?\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Jesus said to him, \"I am the way, and the truth, and the life. No one comes to the Father except through me.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> If you know me, you will know my Father also. From now on you do know him and have seen him.\" </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Philip said to him, \"Lord, show us the Father, and we will be satisfied.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Jesus said to him, \"Have I been with you all this time, Philip, and you still do not know me? Whoever has seen me has seen the Father. How can you say, 'Show us the Father'?</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Do you not believe that I am in the Father and the Father is in me? The words that I say to you I do not speak on my own; but the Father who dwells in me does his works.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Believe me that I am in the Father and the Father is in me; but if you do not, then believe me because of the works themselves.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Very truly, I tell you, the one who believes in me will also do the works that I do and, in fact, will do greater works than these, because I am going to the Father.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> I will do whatever you ask in my name, so that the Father may be glorified in the Son.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> If in my name you ask me for anything, I will do it. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> \"If you love me, you will keep my commandments. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> And I will ask the Father, and he will give you another Advocate, to be with you forever. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> This is the Spirit of truth, whom the world cannot receive, because it neither sees him nor knows him. You know him, because he abides with you, and he will be in you.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> \"I will not leave you orphaned; I am coming to you.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> In a little while the world will no longer see me, but you will see me; because I live, you also will live.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> On that day you will know that I am in my Father, and you in me, and I in you.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> They who have my commandments and keep them are those who love me; and those who love me will be loved by my Father, and I will love them and reveal myself to them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Judas (not Iscariot) said to him, \"Lord, how is it that you will reveal yourself to us, and not to the world?\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Jesus answered him, \"Those who love me will keep my word, and my Father will love them, and we will come to them and make our home with them.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Whoever does not love me does not keep my words; and the word that you hear is not mine, but is from the Father who sent me.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> \"I have said these things to you while I am still with you.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> But the Advocate, the Holy Spirit, whom the Father will send in my name, will teach you everything, and remind you of all that I have said to you. </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Peace I leave with you; my peace I give to you. I do not give to you as the world gives. Do not let your hearts be troubled, and do not let them be afraid.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> You heard me say to you, 'I am going away, and I am coming to you.' If you loved me, you would rejoice that I am going to the Father, because the Father is greater than I.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> And now I have told you this before it occurs, so that when it does occur, you may believe.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> I will no longer talk much with you, for the ruler of this world is coming. He has no power over me;</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> but I do as the Father has commanded me, so that the world may know that I love the Father. Rise, let us be on our way.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"15\">\r\n\t\t\t<VERS vnumber=\"1\"> \"I am the true vine, and my Father is the vinegrower.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He removes every branch in me that bears no fruit. Every branch that bears fruit he prunes to make it bear more fruit. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> You have already been cleansed by the word that I have spoken to you. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Abide in me as I abide in you. Just as the branch cannot bear fruit by itself unless it abides in the vine, neither can you unless you abide in me.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> I am the vine, you are the branches. Those who abide in me and I in them bear much fruit, because apart from me you can do nothing.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Whoever does not abide in me is thrown away like a branch and withers; such branches are gathered, thrown into the fire, and burned.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> If you abide in me, and my words abide in you, ask for whatever you wish, and it will be done for you.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> My Father is glorified by this, that you bear much fruit and become my disciples. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> As the Father has loved me, so I have loved you; abide in my love.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> If you keep my commandments, you will abide in my love, just as I have kept my Father's commandments and abide in his love.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> I have said these things to you so that my joy may be in you, and that your joy may be complete.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> \"This is my commandment, that you love one another as I have loved you.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> No one has greater love than this, to lay down one's life for one's friends.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> You are my friends if you do what I command you.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> I do not call you servants any longer, because the servant does not know what the master is doing; but I have called you friends, because I have made known to you everything that I have heard from my Father. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> You did not choose me but I chose you. And I appointed you to go and bear fruit, fruit that will last, so that the Father will give you whatever you ask him in my name.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> I am giving you these commands so that you may love one another.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> \"If the world hates you, be aware that it hated me before it hated you.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> If you belonged to the world, the world would love you as its own. Because you do not belong to the world, but I have chosen you out of the world-- therefore the world hates you.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Remember the word that I said to you, 'Servants are not greater than their master.' If they persecuted me, they will persecute you; if they kept my word, they will keep yours also. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> But they will do all these things to you on account of my name, because they do not know him who sent me.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> If I had not come and spoken to them, they would not have sin; but now they have no excuse for their sin.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Whoever hates me hates my Father also.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> If I had not done among them the works that no one else did, they would not have sin. But now they have seen and hated both me and my Father.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> It was to fulfill the word that is written in their law, 'They hated me without a cause.'</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> \"When the Advocate comes, whom I will send to you from the Father, the Spirit of truth who comes from the Father, he will testify on my behalf. </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> You also are to testify because you have been with me from the beginning.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"16\">\r\n\t\t\t<VERS vnumber=\"1\"> \"I have said these things to you to keep you from stumbling.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> They will put you out of the synagogues. Indeed, an hour is coming when those who kill you will think that by doing so they are offering worship to God.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And they will do this because they have not known the Father or me.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But I have said these things to you so that when their hour comes you may remember that I told you about them. \"I did not say these things to you from the beginning, because I was with you.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> But now I am going to him who sent me; yet none of you asks me, 'Where are you going?'</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> But because I have said these things to you, sorrow has filled your hearts.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Nevertheless I tell you the truth: it is to your advantage that I go away, for if I do not go away, the Advocate will not come to you; but if I go, I will send him to you. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And when he comes, he will prove the world wrong about sin and righteousness and judgment: </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> about sin, because they do not believe in me;</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> about righteousness, because I am going to the Father and you will see me no longer;</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> about judgment, because the ruler of this world has been condemned.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> \"I still have many things to say to you, but you cannot bear them now.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> When the Spirit of truth comes, he will guide you into all the truth; for he will not speak on his own, but will speak whatever he hears, and he will declare to you the things that are to come.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> He will glorify me, because he will take what is mine and declare it to you.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> All that the Father has is mine. For this reason I said that he will take what is mine and declare it to you.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> \"A little while, and you will no longer see me, and again a little while, and you will see me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then some of his disciples said to one another, \"What does he mean by saying to us, 'A little while, and you will no longer see me, and again a little while, and you will see me'; and 'Because I am going to the Father'?\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> They said, \"What does he mean by this 'a little while'? We do not know what he is talking about.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Jesus knew that they wanted to ask him, so he said to them, \"Are you discussing among yourselves what I meant when I said, 'A little while, and you will no longer see me, and again a little while, and you will see me'?</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Very truly, I tell you, you will weep and mourn, but the world will rejoice; you will have pain, but your pain will turn into joy.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> When a woman is in labor, she has pain, because her hour has come. But when her child is born, she no longer remembers the anguish because of the joy of having brought a human being into the world.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> So you have pain now; but I will see you again, and your hearts will rejoice, and no one will take your joy from you.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> On that day you will ask nothing of me. Very truly, I tell you, if you ask anything of the Father in my name, he will give it to you. </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Until now you have not asked for anything in my name. Ask and you will receive, so that your joy may be complete.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> \"I have said these things to you in figures of speech. The hour is coming when I will no longer speak to you in figures, but will tell you plainly of the Father.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> On that day you will ask in my name. I do not say to you that I will ask the Father on your behalf;</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> for the Father himself loves you, because you have loved me and have believed that I came from God. </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> I came from the Father and have come into the world; again, I am leaving the world and am going to the Father.\"</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> His disciples said, \"Yes, now you are speaking plainly, not in any figure of speech!</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Now we know that you know all things, and do not need to have anyone question you; by this we believe that you came from God.\"</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Jesus answered them, \"Do you now believe?</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> The hour is coming, indeed it has come, when you will be scattered, each one to his home, and you will leave me alone. Yet I am not alone because the Father is with me.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> I have said this to you, so that in me you may have peace. In the world you face persecution. But take courage; I have conquered the world!\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"17\">\r\n\t\t\t<VERS vnumber=\"1\"> After Jesus had spoken these words, he looked up to heaven and said, \"Father, the hour has come; glorify your Son so that the Son may glorify you,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> since you have given him authority over all people, to give eternal life to all whom you have given him. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And this is eternal life, that they may know you, the only true God, and Jesus Christ whom you have sent.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> I glorified you on earth by finishing the work that you gave me to do.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> So now, Father, glorify me in your own presence with the glory that I had in your presence before the world existed.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> \"I have made your name known to those whom you gave me from the world. They were yours, and you gave them to me, and they have kept your word.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Now they know that everything you have given me is from you;</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> for the words that you gave to me I have given to them, and they have received them and know in truth that I came from you; and they have believed that you sent me.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> I am asking on their behalf; I am not asking on behalf of the world, but on behalf of those whom you gave me, because they are yours.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> All mine are yours, and yours are mine; and I have been glorified in them.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> And now I am no longer in the world, but they are in the world, and I am coming to you. Holy Father, protect them in your name that you have given me, so that they may be one, as we are one.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> While I was with them, I protected them in your name that you have given me. I guarded them, and not one of them was lost except the one destined to be lost, so that the scripture might be fulfilled. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> But now I am coming to you, and I speak these things in the world so that they may have my joy made complete in themselves. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> I have given them your word, and the world has hated them because they do not belong to the world, just as I do not belong to the world.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> I am not asking you to take them out of the world, but I ask you to protect them from the evil one. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> They do not belong to the world, just as I do not belong to the world.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Sanctify them in the truth; your word is truth.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> As you have sent me into the world, so I have sent them into the world.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> And for their sakes I sanctify myself, so that they also may be sanctified in truth.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> \"I ask not only on behalf of these, but also on behalf of those who will believe in me through their word,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> that they may all be one. As you, Father, are in me and I am in you, may they also be in us, so that the world may believe that you have sent me. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The glory that you have given me I have given them, so that they may be one, as we are one,</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> I in them and you in me, that they may become completely one, so that the world may know that you have sent me and have loved them even as you have loved me.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Father, I desire that those also, whom you have given me, may be with me where I am, to see my glory, which you have given me because you loved me before the foundation of the world.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> \"Righteous Father, the world does not know you, but I know you; and these know that you have sent me.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> I made your name known to them, and I will make it known, so that the love with which you have loved me may be in them, and I in them.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"18\">\r\n\t\t\t<VERS vnumber=\"1\"> After Jesus had spoken these words, he went out with his disciples across the Kidron valley to a place where there was a garden, which he and his disciples entered.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Now Judas, who betrayed him, also knew the place, because Jesus often met there with his disciples.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> So Judas brought a detachment of soldiers together with police from the chief priests and the Pharisees, and they came there with lanterns and torches and weapons.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then Jesus, knowing all that was to happen to him, came forward and asked them, \"Whom are you looking for?\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> They answered, \"Jesus of Nazareth.\" Jesus replied, \"I am he.\" Judas, who betrayed him, was standing with them. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> When Jesus said to them, \"I am he,\" they stepped back and fell to the ground. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Again he asked them, \"Whom are you looking for?\" And they said, \"Jesus of Nazareth.\" </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Jesus answered, \"I told you that I am he. So if you are looking for me, let these men go.\" </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> This was to fulfill the word that he had spoken, \"I did not lose a single one of those whom you gave me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then Simon Peter, who had a sword, drew it, struck the high priest's slave, and cut off his right ear. The slave's name was Malchus.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Jesus said to Peter, \"Put your sword back into its sheath. Am I not to drink the cup that the Father has given me?\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> So the soldiers, their officer, and the Jewish police arrested Jesus and bound him.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> First they took him to Annas, who was the father-in-law of Caiaphas, the high priest that year.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Caiaphas was the one who had advised the Jews that it was better to have one person die for the people.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Simon Peter and another disciple followed Jesus. Since that disciple was known to the high priest, he went with Jesus into the courtyard of the high priest,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> but Peter was standing outside at the gate. So the other disciple, who was known to the high priest, went out, spoke to the woman who guarded the gate, and brought Peter in.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The woman said to Peter, \"You are not also one of this man's disciples, are you?\" He said, \"I am not.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Now the slaves and the police had made a charcoal fire because it was cold, and they were standing around it and warming themselves. Peter also was standing with them and warming himself.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Then the high priest questioned Jesus about his disciples and about his teaching.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Jesus answered, \"I have spoken openly to the world; I have always taught in synagogues and in the temple, where all the Jews come together. I have said nothing in secret.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Why do you ask me? Ask those who heard what I said to them; they know what I said.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> When he had said this, one of the police standing nearby struck Jesus on the face, saying, \"Is that how you answer the high priest?\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Jesus answered, \"If I have spoken wrongly, testify to the wrong. But if I have spoken rightly, why do you strike me?\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Then Annas sent him bound to Caiaphas the high priest.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Now Simon Peter was standing and warming himself. They asked him, \"You are not also one of his disciples, are you?\" He denied it and said, \"I am not.\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> One of the slaves of the high priest, a relative of the man whose ear Peter had cut off, asked, \"Did I not see you in the garden with him?\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Again Peter denied it, and at that moment the cock crowed.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Then they took Jesus from Caiaphas to Pilate's headquarters. It was early in the morning. They themselves did not enter the headquarters, so as to avoid ritual defilement and to be able to eat the Passover. </VERS>\r\n\t\t\t<VERS vnumber=\"29\"> So Pilate went out to them and said, \"What accusation do you bring against this man?\"</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> They answered, \"If this man were not a criminal, we would not have handed him over to you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Pilate said to them, \"Take him yourselves and judge him according to your law.\" The Jews replied, \"We are not permitted to put anyone to death.\"</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> (This was to fulfill what Jesus had said when he indicated the kind of death he was to die.)</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Then Pilate entered the headquarters again, summoned Jesus, and asked him, \"Are you the King of the Jews?\" </VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Jesus answered, \"Do you ask this on your own, or did others tell you about me?\"</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Pilate replied, \"I am not a Jew, am I? Your own nation and the chief priests have handed you over to me. What have you done?\"</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Jesus answered, \"My kingdom is not from this world. If my kingdom were from this world, my followers would be fighting to keep me from being handed over to the Jews. But as it is, my kingdom is not from here.\"</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Pilate asked him, \"So you are a king?\" Jesus answered, \"You say that I am a king. For this I was born, and for this I came into the world, to testify to the truth. Everyone who belongs to the truth listens to my voice.\"</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Pilate asked him, \"What is truth?\" After he had said this, he went out to the Jews again and told them, \"I find no case against him.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> But you have a custom that I release someone for you at the Passover. Do you want me to release for you the King of the Jews?\"</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> They shouted in reply, \"Not this man, but Barabbas!\" Now Barabbas was a bandit.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"19\">\r\n\t\t\t<VERS vnumber=\"1\"> Then Pilate took Jesus and had him flogged.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And the soldiers wove a crown of thorns and put it on his head, and they dressed him in a purple robe.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> They kept coming up to him, saying, \"Hail, King of the Jews!\" and striking him on the face.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Pilate went out again and said to them, \"Look, I am bringing him out to you to let you know that I find no case against him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> So Jesus came out, wearing the crown of thorns and the purple robe. Pilate said to them, \"Here is the man!\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> When the chief priests and the police saw him, they shouted, \"Crucify him! Crucify him!\" Pilate said to them, \"Take him yourselves and crucify him; I find no case against him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The Jews answered him, \"We have a law, and according to that law he ought to die because he has claimed to be the Son of God.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Now when Pilate heard this, he was more afraid than ever.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> He entered his headquarters again and asked Jesus, \"Where are you from?\" But Jesus gave him no answer. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Pilate therefore said to him, \"Do you refuse to speak to me? Do you not know that I have power to release you, and power to crucify you?\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Jesus answered him, \"You would have no power over me unless it had been given you from above; therefore the one who handed me over to you is guilty of a greater sin.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> From then on Pilate tried to release him, but the Jews cried out, \"If you release this man, you are no friend of the emperor. Everyone who claims to be a king sets himself against the emperor.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> When Pilate heard these words, he brought Jesus outside and sat on the judge's bench at a place called The Stone Pavement, or in Hebrew Gabbatha. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Now it was the day of Preparation for the Passover; and it was about noon. He said to the Jews, \"Here is your King!\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> They cried out, \"Away with him! Away with him! Crucify him!\" Pilate asked them, \"Shall I crucify your King?\" The chief priests answered, \"We have no king but the emperor.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then he handed him over to them to be crucified. So they took Jesus;</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> and carrying the cross by himself, he went out to what is called The Place of the Skull, which in Hebrew is called Golgotha. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> There they crucified him, and with him two others, one on either side, with Jesus between them.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Pilate also had an inscription written and put on the cross. It read, \"Jesus of Nazareth, the King of the Jews.\" </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Many of the Jews read this inscription, because the place where Jesus was crucified was near the city; and it was written in Hebrew, in Latin, and in Greek. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then the chief priests of the Jews said to Pilate, \"Do not write, 'The King of the Jews,' but, 'This man said, I am King of the Jews.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Pilate answered, \"What I have written I have written.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> When the soldiers had crucified Jesus, they took his clothes and divided them into four parts, one for each soldier. They also took his tunic; now the tunic was seamless, woven in one piece from the top.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> So they said to one another, \"Let us not tear it, but cast lots for it to see who will get it.\" This was to fulfill what the scripture says, \"They divided my clothes among themselves, and for my clothing they cast lots.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> And that is what the soldiers did. Meanwhile, standing near the cross of Jesus were his mother, and his mother's sister, Mary the wife of Clopas, and Mary Magdalene.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> When Jesus saw his mother and the disciple whom he loved standing beside her, he said to his mother, \"Woman, here is your son.\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Then he said to the disciple, \"Here is your mother.\" And from that hour the disciple took her into his own home.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> After this, when Jesus knew that all was now finished, he said (in order to fulfill the scripture), \"I am thirsty.\"</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> A jar full of sour wine was standing there. So they put a sponge full of the wine on a branch of hyssop and held it to his mouth.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> When Jesus had received the wine, he said, \"It is finished.\" Then he bowed his head and gave up his spirit.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Since it was the day of Preparation, the Jews did not want the bodies left on the cross during the sabbath, especially because that sabbath was a day of great solemnity. So they asked Pilate to have the legs of the crucified men broken and the bodies removed.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Then the soldiers came and broke the legs of the first and of the other who had been crucified with him.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> But when they came to Jesus and saw that he was already dead, they did not break his legs.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Instead, one of the soldiers pierced his side with a spear, and at once blood and water came out.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> (He who saw this has testified so that you also may believe. His testimony is true, and he knows that he tells the truth.) </VERS>\r\n\t\t\t<VERS vnumber=\"36\"> These things occurred so that the scripture might be fulfilled, \"None of his bones shall be broken.\"</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> And again another passage of scripture says, \"They will look on the one whom they have pierced.\"</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> After these things, Joseph of Arimathea, who was a disciple of Jesus, though a secret one because of his fear of the Jews, asked Pilate to let him take away the body of Jesus. Pilate gave him permission; so he came and removed his body.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> Nicodemus, who had at first come to Jesus by night, also came, bringing a mixture of myrrh and aloes, weighing about a hundred pounds.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> They took the body of Jesus and wrapped it with the spices in linen cloths, according to the burial custom of the Jews.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> Now there was a garden in the place where he was crucified, and in the garden there was a new tomb in which no one had ever been laid.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> And so, because it was the Jewish day of Preparation, and the tomb was nearby, they laid Jesus there.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"20\">\r\n\t\t\t<VERS vnumber=\"1\"> Early on the first day of the week, while it was still dark, Mary Magdalene came to the tomb and saw that the stone had been removed from the tomb.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> So she ran and went to Simon Peter and the other disciple, the one whom Jesus loved, and said to them, \"They have taken the Lord out of the tomb, and we do not know where they have laid him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then Peter and the other disciple set out and went toward the tomb.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The two were running together, but the other disciple outran Peter and reached the tomb first.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> He bent down to look in and saw the linen wrappings lying there, but he did not go in.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then Simon Peter came, following him, and went into the tomb. He saw the linen wrappings lying there,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> and the cloth that had been on Jesus' head, not lying with the linen wrappings but rolled up in a place by itself.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then the other disciple, who reached the tomb first, also went in, and he saw and believed;</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> for as yet they did not understand the scripture, that he must rise from the dead.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then the disciples returned to their homes.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But Mary stood weeping outside the tomb. As she wept, she bent over to look into the tomb; </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> and she saw two angels in white, sitting where the body of Jesus had been lying, one at the head and the other at the feet.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> They said to her, \"Woman, why are you weeping?\" She said to them, \"They have taken away my Lord, and I do not know where they have laid him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> When she had said this, she turned around and saw Jesus standing there, but she did not know that it was Jesus.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Jesus said to her, \"Woman, why are you weeping? Whom are you looking for?\" Supposing him to be the gardener, she said to him, \"Sir, if you have carried him away, tell me where you have laid him, and I will take him away.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Jesus said to her, \"Mary!\" She turned and said to him in Hebrew, \"Rabbouni!\" (which means Teacher). </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Jesus said to her, \"Do not hold on to me, because I have not yet ascended to the Father. But go to my brothers and say to them, 'I am ascending to my Father and your Father, to my God and your God.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Mary Magdalene went and announced to the disciples, \"I have seen the Lord\"; and she told them that he had said these things to her.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> When it was evening on that day, the first day of the week, and the doors of the house where the disciples had met were locked for fear of the Jews, Jesus came and stood among them and said, \"Peace be with you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> After he said this, he showed them his hands and his side. Then the disciples rejoiced when they saw the Lord.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Jesus said to them again, \"Peace be with you. As the Father has sent me, so I send you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> When he had said this, he breathed on them and said to them, \"Receive the Holy Spirit.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> If you forgive the sins of any, they are forgiven them; if you retain the sins of any, they are retained.\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> But Thomas (who was called the Twin), one of the twelve, was not with them when Jesus came.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> So the other disciples told him, \"We have seen the Lord.\" But he said to them, \"Unless I see the mark of the nails in his hands, and put my finger in the mark of the nails and my hand in his side, I will not believe.\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> A week later his disciples were again in the house, and Thomas was with them. Although the doors were shut, Jesus came and stood among them and said, \"Peace be with you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Then he said to Thomas, \"Put your finger here and see my hands. Reach out your hand and put it in my side. Do not doubt but believe.\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Thomas answered him, \"My Lord and my God!\"</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Jesus said to him, \"Have you believed because you have seen me? Blessed are those who have not seen and yet have come to believe.\"</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Now Jesus did many other signs in the presence of his disciples, which are not written in this book.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> But these are written so that you may come to believe that Jesus is the Messiah, the Son of God, and that through believing you may have life in his name. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"21\">\r\n\t\t\t<VERS vnumber=\"1\"> After these things Jesus showed himself again to the disciples by the Sea of Tiberias; and he showed himself in this way.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Gathered there together were Simon Peter, Thomas called the Twin, Nathanael of Cana in Galilee, the sons of Zebedee, and two others of his disciples. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Simon Peter said to them, \"I am going fishing.\" They said to him, \"We will go with you.\" They went out and got into the boat, but that night they caught nothing.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Just after daybreak, Jesus stood on the beach; but the disciples did not know that it was Jesus.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Jesus said to them, \"Children, you have no fish, have you?\" They answered him, \"No.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> He said to them, \"Cast the net to the right side of the boat, and you will find some.\" So they cast it, and now they were not able to haul it in because there were so many fish.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> That disciple whom Jesus loved said to Peter, \"It is the Lord!\" When Simon Peter heard that it was the Lord, he put on some clothes, for he was naked, and jumped into the sea.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But the other disciples came in the boat, dragging the net full of fish, for they were not far from the land, only about a hundred yards off. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> When they had gone ashore, they saw a charcoal fire there, with fish on it, and bread.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Jesus said to them, \"Bring some of the fish that you have just caught.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> So Simon Peter went aboard and hauled the net ashore, full of large fish, a hundred fifty-three of them; and though there were so many, the net was not torn.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Jesus said to them, \"Come and have breakfast.\" Now none of the disciples dared to ask him, \"Who are you?\" because they knew it was the Lord.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Jesus came and took the bread and gave it to them, and did the same with the fish.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> This was now the third time that Jesus appeared to the disciples after he was raised from the dead.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> When they had finished breakfast, Jesus said to Simon Peter, \"Simon son of John, do you love me more than these?\" He said to him, \"Yes, Lord; you know that I love you.\" Jesus said to him, \"Feed my lambs.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> A second time he said to him, \"Simon son of John, do you love me?\" He said to him, \"Yes, Lord; you know that I love you.\" Jesus said to him, \"Tend my sheep.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> He said to him the third time, \"Simon son of John, do you love me?\" Peter felt hurt because he said to him the third time, \"Do you love me?\" And he said to him, \"Lord, you know everything; you know that I love you.\" Jesus said to him, \"Feed my sheep.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Very truly, I tell you, when you were younger, you used to fasten your own belt and to go wherever you wished. But when you grow old, you will stretch out your hands, and someone else will fasten a belt around you and take you where you do not wish to go.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> (He said this to indicate the kind of death by which he would glorify God.) After this he said to him, \"Follow me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Peter turned and saw the disciple whom Jesus loved following them; he was the one who had reclined next to Jesus at the supper and had said, \"Lord, who is it that is going to betray you?\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> When Peter saw him, he said to Jesus, \"Lord, what about him?\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Jesus said to him, \"If it is my will that he remain until I come, what is that to you? Follow me!\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> So the rumor spread in the community that this disciple would not die. Yet Jesus did not say to him that he would not die, but, \"If it is my will that he remain until I come, what is that to you?\" </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> This is the disciple who is testifying to these things and has written them, and we know that his testimony is true.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> But there are also many other things that Jesus did; if every one of them were written down, I suppose that the world itself could not contain the books that would be written.</VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"44\" bname=\"Acts\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> In the first book, Theophilus, I wrote about all that Jesus did and taught from the beginning</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> until the day when he was taken up to heaven, after giving instructions through the Holy Spirit to the apostles whom he had chosen.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> After his suffering he presented himself alive to them by many convincing proofs, appearing to them during forty days and speaking about the kingdom of God.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> While staying with them, he ordered them not to leave Jerusalem, but to wait there for the promise of the Father. \"This,\" he said, \"is what you have heard from me; </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> for John baptized with water, but you will be baptized with the Holy Spirit not many days from now.\" </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> So when they had come together, they asked him, \"Lord, is this the time when you will restore the kingdom to Israel?\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> He replied, \"It is not for you to know the times or periods that the Father has set by his own authority.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But you will receive power when the Holy Spirit has come upon you; and you will be my witnesses in Jerusalem, in all Judea and Samaria, and to the ends of the earth.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> When he had said this, as they were watching, he was lifted up, and a cloud took him out of their sight.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> While he was going and they were gazing up toward heaven, suddenly two men in white robes stood by them.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> They said, \"Men of Galilee, why do you stand looking up toward heaven? This Jesus, who has been taken up from you into heaven, will come in the same way as you saw him go into heaven.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then they returned to Jerusalem from the mount called Olivet, which is near Jerusalem, a sabbath day's journey away.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> When they had entered the city, they went to the room upstairs where they were staying, Peter, and John, and James, and Andrew, Philip and Thomas, Bartholomew and Matthew, James son of Alphaeus, and Simon the Zealot, and Judas son of James. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> All these were constantly devoting themselves to prayer, together with certain women, including Mary the mother of Jesus, as well as his brothers.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> In those days Peter stood up among the believers (together the crowd numbered about one hundred twenty persons) and said, </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> \"Friends, the scripture had to be fulfilled, which the Holy Spirit through David foretold concerning Judas, who became a guide for those who arrested Jesus--</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> for he was numbered among us and was allotted his share in this ministry.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> (Now this man acquired a field with the reward of his wickedness; and falling headlong, he burst open in the middle and all his bowels gushed out. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> This became known to all the residents of Jerusalem, so that the field was called in their language Hakeldama, that is, Field of Blood.)</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> \"For it is written in the book of Psalms, 'Let his homestead become desolate, and let there be no one to live in it'; and 'Let another take his position of overseer.'</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> So one of the men who have accompanied us during all the time that the Lord Jesus went in and out among us,</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> beginning from the baptism of John until the day when he was taken up from us-- one of these must become a witness with us to his resurrection.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> So they proposed two, Joseph called Barsabbas, who was also known as Justus, and Matthias.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Then they prayed and said, \"Lord, you know everyone's heart. Show us which one of these two you have chosen</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> to take the place in this ministry and apostleship from which Judas turned aside to go to his own place.\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> And they cast lots for them, and the lot fell on Matthias; and he was added to the eleven apostles.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> When the day of Pentecost had come, they were all together in one place.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And suddenly from heaven there came a sound like the rush of a violent wind, and it filled the entire house where they were sitting.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Divided tongues, as of fire, appeared among them, and a tongue rested on each of them.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> All of them were filled with the Holy Spirit and began to speak in other languages, as the Spirit gave them ability.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Now there were devout Jews from every nation under heaven living in Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And at this sound the crowd gathered and was bewildered, because each one heard them speaking in the native language of each.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Amazed and astonished, they asked, \"Are not all these who are speaking Galileans?</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And how is it that we hear, each of us, in our own native language?</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Parthians, Medes, Elamites, and residents of Mesopotamia, Judea and Cappadocia, Pontus and Asia,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Phrygia and Pamphylia, Egypt and the parts of Libya belonging to Cyrene, and visitors from Rome, both Jews and proselytes,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Cretans and Arabs-- in our own languages we hear them speaking about God's deeds of power.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> All were amazed and perplexed, saying to one another, \"What does this mean?\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> But others sneered and said, \"They are filled with new wine.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But Peter, standing with the eleven, raised his voice and addressed them, \"Men of Judea and all who live in Jerusalem, let this be known to you, and listen to what I say.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Indeed, these are not drunk, as you suppose, for it is only nine o'clock in the morning.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> No, this is what was spoken through the prophet Joel:</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> 'In the last days it will be, God declares, that I will pour out 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.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Even upon my slaves, both men and women, in those days I will pour out my Spirit; and they shall prophesy.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> And I will show portents in the heaven above and signs on the earth below, blood, and fire, and smoky mist.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The sun shall be turned to darkness and the moon to blood, before the coming of the Lord's great and glorious day.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then everyone who calls on the name of the Lord shall be saved.'</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> \"You that are Israelites, listen to what I have to say: Jesus of Nazareth, a man attested to you by God with deeds of power, wonders, and signs that God did through him among you, as you yourselves know--</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> this man, handed over to you according to the definite plan and foreknowledge of God, you crucified and killed by the hands of those outside the law.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> But God raised him up, having freed him from death, because it was impossible for him to be held in its power. </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> For David says concerning him, 'I saw the Lord always before me, for he is at my right hand so that I will not be shaken;</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> therefore my heart was glad, and my tongue rejoiced; moreover my flesh will live in hope.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> For you will not abandon my soul to Hades, or let your Holy One experience corruption.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> You have made known to me the ways of life; you will make me full of gladness with your presence.'</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> \"Fellow Israelites, I may say to you confidently of our ancestor David that he both died and was buried, and his tomb is with us to this day. </VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Since he was a prophet, he knew that God had sworn with an oath to him that he would put one of his descendants on his throne.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Foreseeing this, David spoke of the resurrection of the Messiah, saying, 'He was not abandoned to Hades, nor did his flesh experience corruption.'</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> This Jesus God raised up, and of that all of us are witnesses.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Being therefore exalted at the right hand of God, and having received from the Father the promise of the Holy Spirit, he has poured out this that you both see and hear. </VERS>\r\n\t\t\t<VERS vnumber=\"34\"> For David did not ascend into the heavens, but he himself says, 'The Lord said to my Lord, \"Sit at my right hand,</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> until I make your enemies your footstool.\"'</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Therefore let the entire house of Israel know with certainty that God has made him both Lord and Messiah, this Jesus whom you crucified.\" </VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Now when they heard this, they were cut to the heart and said to Peter and to the other apostles, \"Brothers, what should we do?\" </VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Peter said to them, \"Repent, and be baptized every one of you in the name of Jesus Christ so that your sins may be forgiven; and you will receive the gift of the Holy Spirit.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> For the promise is for you, for your children, and for all who are far away, everyone whom the Lord our God calls to him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> And he testified with many other arguments and exhorted them, saying, \"Save yourselves from this corrupt generation.\"</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> So those who welcomed his message were baptized, and that day about three thousand persons were added.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> They devoted themselves to the apostles' teaching and fellowship, to the breaking of bread and the prayers.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> Awe came upon everyone, because many wonders and signs were being done by the apostles.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> All who believed were together and had all things in common;</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> they would sell their possessions and goods and distribute the proceeds to all, as any had need. </VERS>\r\n\t\t\t<VERS vnumber=\"46\"> Day by day, as they spent much time together in the temple, they broke bread at home and ate their food with glad and generous hearts, </VERS>\r\n\t\t\t<VERS vnumber=\"47\"> praising God and having the goodwill of all the people. And day by day the Lord added to their number those who were being saved.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> One day Peter and John were going up to the temple at the hour of prayer, at three o'clock in the afternoon.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And a man lame from birth was being carried in. People would lay him daily at the gate of the temple called the Beautiful Gate so that he could ask for alms from those entering the temple.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> When he saw Peter and John about to go into the temple, he asked them for alms.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Peter looked intently at him, as did John, and said, \"Look at us.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> And he fixed his attention on them, expecting to receive something from them.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> But Peter said, \"I have no silver or gold, but what I have I give you; in the name of Jesus Christ of Nazareth, stand up and walk.\" </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> And he took him by the right hand and raised him up; and immediately his feet and ankles were made strong.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Jumping up, he stood and began to walk, and he entered the temple with them, walking and leaping and praising God.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> All the people saw him walking and praising God,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> and they recognized him as the one who used to sit and ask for alms at the Beautiful Gate of the temple; and they were filled with wonder and amazement at what had happened to him.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> While he clung to Peter and John, all the people ran together to them in the portico called Solomon's Portico, utterly astonished.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> When Peter saw it, he addressed the people, \"You Israelites, why do you wonder at this, or why do you stare at us, as though by our own power or piety we had made him walk? </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The God of Abraham, the God of Isaac, and the God of Jacob, the God of our ancestors has glorified his servant Jesus, whom you handed over and rejected in the presence of Pilate, though he had decided to release him. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But you rejected the Holy and Righteous One and asked to have a murderer given to you,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> and you killed the Author of life, whom God raised from the dead. To this we are witnesses.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> And by faith in his name, his name itself has made this man strong, whom you see and know; and the faith that is through Jesus has given him this perfect health in the presence of all of you. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> \"And now, friends, I know that you acted in ignorance, as did also your rulers. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> In this way God fulfilled what he had foretold through all the prophets, that his Messiah would suffer. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Repent therefore, and turn to God so that your sins may be wiped out,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> so that times of refreshing may come from the presence of the Lord, and that he may send the Messiah appointed for you, that is, Jesus, </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> who must remain in heaven until the time of universal restoration that God announced long ago through his holy prophets.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Moses said, 'The Lord your God will raise up for you from your own people a prophet like me. You must listen to whatever he tells you.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> And it will be that everyone who does not listen to that prophet will be utterly rooted out of the people.'</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> And all the prophets, as many as have spoken, from Samuel and those after him, also predicted these days.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> You are the descendants of the prophets and of the covenant that God gave to your ancestors, saying to Abraham, 'And in your descendants all the families of the earth shall be blessed.'</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> When God raised up his servant, he sent him first to you, to bless you by turning each of you from your wicked ways.\" </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> While Peter and John were speaking to the people, the priests, the captain of the temple, and the Sadducees came to them, </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> much annoyed because they were teaching the people and proclaiming that in Jesus there is the resurrection of the dead.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> So they arrested them and put them in custody until the next day, for it was already evening.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But many of those who heard the word believed; and they numbered about five thousand.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The next day their rulers, elders, and scribes assembled in Jerusalem,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> with Annas the high priest, Caiaphas, John, and Alexander, and all who were of the high-priestly family. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> When they had made the prisoners stand in their midst, they inquired, \"By what power or by what name did you do this?\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then Peter, filled with the Holy Spirit, said to them, \"Rulers of the people and elders,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> if we are questioned today because of a good deed done to someone who was sick and are asked how this man has been healed,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> let it be known to all of you, and to all the people of Israel, that this man is standing before you in good health by the name of Jesus Christ of Nazareth, whom you crucified, whom God raised from the dead. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> This Jesus is 'the stone that was rejected by you, the builders; it has become the cornerstone.' </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> There is salvation in no one else, for there is no other name under heaven given among mortals by which we must be saved.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Now when they saw the boldness of Peter and John and realized that they were uneducated and ordinary men, they were amazed and recognized them as companions of Jesus.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> When they saw the man who had been cured standing beside them, they had nothing to say in opposition.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> So they ordered them to leave the council while they discussed the matter with one another.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> They said, \"What will we do with them? For it is obvious to all who live in Jerusalem that a notable sign has been done through them; we cannot deny it.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> But to keep it from spreading further among the people, let us warn them to speak no more to anyone in this name.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> So they called them and ordered them not to speak or teach at all in the name of Jesus.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> But Peter and John answered them, \"Whether it is right in God's sight to listen to you rather than to God, you must judge;</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> for we cannot keep from speaking about what we have seen and heard.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> After threatening them again, they let them go, finding no way to punish them because of the people, for all of them praised God for what had happened.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> For the man on whom this sign of healing had been performed was more than forty years old.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> After they were released, they went to their friends and reported what the chief priests and the elders had said to them. </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> When they heard it, they raised their voices together to God and said, \"Sovereign Lord, who made the heaven and the earth, the sea, and everything in them,</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> it is you who said by the Holy Spirit through our ancestor David, your servant: 'Why did the Gentiles rage, and the peoples imagine vain things? </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> The kings of the earth took their stand, and the rulers have gathered together against the Lord and against his Messiah.' </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> For in this city, in fact, both Herod and Pontius Pilate, with the Gentiles and the peoples of Israel, gathered together against your holy servant Jesus, whom you anointed, </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> to do whatever your hand and your plan had predestined to take place.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> And now, Lord, look at their threats, and grant to your servants to speak your word with all boldness, </VERS>\r\n\t\t\t<VERS vnumber=\"30\"> while you stretch out your hand to heal, and signs and wonders are performed through the name of your holy servant Jesus.\" </VERS>\r\n\t\t\t<VERS vnumber=\"31\"> When they had prayed, the place in which they were gathered together was shaken; and they were all filled with the Holy Spirit and spoke the word of God with boldness.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Now the whole group of those who believed were of one heart and soul, and no one claimed private ownership of any possessions, but everything they owned was held in common.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> With great power the apostles gave their testimony to the resurrection of the Lord Jesus, and great grace was upon them all.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> There was not a needy person among them, for as many as owned lands or houses sold them and brought the proceeds of what was sold.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> They laid it at the apostles' feet, and it was distributed to each as any had need.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> There was a Levite, a native of Cyprus, Joseph, to whom the apostles gave the name Barnabas (which means \"son of encouragement\").</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> He sold a field that belonged to him, then brought the money, and laid it at the apostles' feet.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"5\">\r\n\t\t\t<VERS vnumber=\"1\"> But a man named Ananias, with the consent of his wife Sapphira, sold a piece of property;</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> with his wife's knowledge, he kept back some of the proceeds, and brought only a part and laid it at the apostles' feet.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> \"Ananias,\" Peter asked, \"why has Satan filled your heart to lie to the Holy Spirit and to keep back part of the proceeds of the land?</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> While it remained unsold, did it not remain your own? And after it was sold, were not the proceeds at your disposal? How is it that you have contrived this deed in your heart? You did not lie to us but to God!\" </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Now when Ananias heard these words, he fell down and died. And great fear seized all who heard of it.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The young men came and wrapped up his body, then carried him out and buried him. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> After an interval of about three hours his wife came in, not knowing what had happened.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Peter said to her, \"Tell me whether you and your husband sold the land for such and such a price.\" And she said, \"Yes, that was the price.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then Peter said to her, \"How is it that you have agreed together to put the Spirit of the Lord to the test? Look, the feet of those who have buried your husband are at the door, and they will carry you out.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Immediately she fell down at his feet and died. When the young men came in they found her dead, so they carried her out and buried her beside her husband.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> And great fear seized the whole church and all who heard of these things.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Now many signs and wonders were done among the people through the apostles. And they were all together in Solomon's Portico.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> None of the rest dared to join them, but the people held them in high esteem.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Yet more than ever believers were added to the Lord, great numbers of both men and women,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> so that they even carried out the sick into the streets, and laid them on cots and mats, in order that Peter's shadow might fall on some of them as he came by.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> A great number of people would also gather from the towns around Jerusalem, bringing the sick and those tormented by unclean spirits, and they were all cured.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then the high priest took action; he and all who were with him (that is, the sect of the Sadducees), being filled with jealousy,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> arrested the apostles and put them in the public prison.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> But during the night an angel of the Lord opened the prison doors, brought them out, and said,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> \"Go, stand in the temple and tell the people the whole message about this life.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> When they heard this, they entered the temple at daybreak and went on with their teaching. When the high priest and those with him arrived, they called together the council and the whole body of the elders of Israel, and sent to the prison to have them brought.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> But when the temple police went there, they did not find them in the prison; so they returned and reported,</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> \"We found the prison securely locked and the guards standing at the doors, but when we opened them, we found no one inside.\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Now when the captain of the temple and the chief priests heard these words, they were perplexed about them, wondering what might be going on.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Then someone arrived and announced, \"Look, the men whom you put in prison are standing in the temple and teaching the people!\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Then the captain went with the temple police and brought them, but without violence, for they were afraid of being stoned by the people.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> When they had brought them, they had them stand before the council. The high priest questioned them,</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> saying, \"We gave you strict orders not to teach in this name, yet here you have filled Jerusalem with your teaching and you are determined to bring this man's blood on us.\" </VERS>\r\n\t\t\t<VERS vnumber=\"29\"> But Peter and the apostles answered, \"We must obey God rather than any human authority. </VERS>\r\n\t\t\t<VERS vnumber=\"30\"> The God of our ancestors raised up Jesus, whom you had killed by hanging him on a tree.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> God exalted him at his right hand as Leader and Savior that he might give repentance to Israel and forgiveness of sins.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> And we are witnesses to these things, and so is the Holy Spirit whom God has given to those who obey him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> When they heard this, they were enraged and wanted to kill them.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> But a Pharisee in the council named Gamaliel, a teacher of the law, respected by all the people, stood up and ordered the men to be put outside for a short time.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Then he said to them, \"Fellow Israelites, consider carefully what you propose to do to these men. </VERS>\r\n\t\t\t<VERS vnumber=\"36\"> For some time ago Theudas rose up, claiming to be somebody, and a number of men, about four hundred, joined him; but he was killed, and all who followed him were dispersed and disappeared.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> After him Judas the Galilean rose up at the time of the census and got people to follow him; he also perished, and all who followed him were scattered.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> So in the present case, I tell you, keep away from these men and let them alone; because if this plan or this undertaking is of human origin, it will fail;</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> but if it is of God, you will not be able to overthrow them-- in that case you may even be found fighting against God!\" They were convinced by him,</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> and when they had called in the apostles, they had them flogged. Then they ordered them not to speak in the name of Jesus, and let them go.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> As they left the council, they rejoiced that they were considered worthy to suffer dishonor for the sake of the name.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> And every day in the temple and at home they did not cease to teach and proclaim Jesus as the Messiah. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"6\">\r\n\t\t\t<VERS vnumber=\"1\"> Now during those days, when the disciples were increasing in number, the Hellenists complained against the Hebrews because their widows were being neglected in the daily distribution of food.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And the twelve called together the whole community of the disciples and said, \"It is not right that we should neglect the word of God in order to wait on tables. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Therefore, friends, select from among yourselves seven men of good standing, full of the Spirit and of wisdom, whom we may appoint to this task, </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> while we, for our part, will devote ourselves to prayer and to serving the word.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> What they said pleased the whole community, and they chose Stephen, a man full of faith and the Holy Spirit, together with Philip, Prochorus, Nicanor, Timon, Parmenas, and Nicolaus, a proselyte of Antioch.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> They had these men stand before the apostles, who prayed and laid their hands on them.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The word of God continued to spread; the number of the disciples increased greatly in Jerusalem, and a great many of the priests became obedient to the faith.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Stephen, full of grace and power, did great wonders and signs among the people.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then some of those who belonged to the synagogue of the Freedmen (as it was called), Cyrenians, Alexandrians, and others of those from Cilicia and Asia, stood up and argued with Stephen.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> But they could not withstand the wisdom and the Spirit with which he spoke. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then they secretly instigated some men to say, \"We have heard him speak blasphemous words against Moses and God.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> They stirred up the people as well as the elders and the scribes; then they suddenly confronted him, seized him, and brought him before the council.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> They set up false witnesses who said, \"This man never stops saying things against this holy place and the law;</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> for we have heard him say that this Jesus of Nazareth will destroy this place and will change the customs that Moses handed on to us.\" </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And all who sat in the council looked intently at him, and they saw that his face was like the face of an angel.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"7\">\r\n\t\t\t<VERS vnumber=\"1\"> Then the high priest asked him, \"Are these things so?\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And Stephen replied: \"Brothers and fathers, listen to me. The God of glory appeared to our ancestor Abraham when he was in Mesopotamia, before he lived in Haran, </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> and said to him, 'Leave your country and your relatives and go to the land that I will show you.'</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then he left the country of the Chaldeans and settled in Haran. After his father died, God had him move from there to this country in which you are now living.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> He did not give him any of it as a heritage, not even a foot's length, but promised to give it to him as his possession and to his descendants after him, even though he had no child.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And God spoke in these terms, that his descendants would be resident aliens in a country belonging to others, who would enslave them and mistreat them during four hundred years.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> 'But I will judge the nation that they serve,' said God, 'and after that they shall come out and worship me in this place.'</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then he gave him the covenant of circumcision. And so Abraham became the father of Isaac and circumcised him on the eighth day; and Isaac became the father of Jacob, and Jacob of the twelve patriarchs. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> \"The patriarchs, jealous of Joseph, sold him into Egypt; but God was with him,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> and rescued him from all his afflictions, and enabled him to win favor and to show wisdom when he stood before Pharaoh, king of Egypt, who appointed him ruler over Egypt and over all his household.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Now there came a famine throughout Egypt and Canaan, and great suffering, and our ancestors could find no food.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> But when Jacob heard that there was grain in Egypt, he sent our ancestors there on their first visit.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> On the second visit Joseph made himself known to his brothers, and Joseph's family became known to Pharaoh.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then Joseph sent and invited his father Jacob and all his relatives to come to him, seventy-five in all;</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> so Jacob went down to Egypt. He himself died there as well as our ancestors,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> and their bodies were brought back to Shechem and laid in the tomb that Abraham had bought for a sum of silver from the sons of Hamor in Shechem. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> \"But as the time drew near for the fulfillment of the promise that God had made to Abraham, our people in Egypt increased and multiplied</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> until another king who had not known Joseph ruled over Egypt.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> He dealt craftily with our race and forced our ancestors to abandon their infants so that they would die.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> At this time Moses was born, and he was beautiful before God. For three months he was brought up in his father's house;</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> and when he was abandoned, Pharaoh's daughter adopted him and brought him up as her own son.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> So Moses was instructed in all the wisdom of the Egyptians and was powerful in his words and deeds.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> \"When he was forty years old, it came into his heart to visit his relatives, the Israelites. </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> When he saw one of them being wronged, he defended the oppressed man and avenged him by striking down the Egyptian.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> He supposed that his kinsfolk would understand that God through him was rescuing them, but they did not understand.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> The next day he came to some of them as they were quarreling and tried to reconcile them, saying, 'Men, you are brothers; why do you wrong each other?'</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> But the man who was wronging his neighbor pushed Moses aside, saying, 'Who made you a ruler and a judge over us? </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Do you want to kill me as you killed the Egyptian yesterday?'</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> When he heard this, Moses fled and became a resident alien in the land of Midian. There he became the father of two sons.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> \"Now when forty years had passed, an angel appeared to him in the wilderness of Mount Sinai, in the flame of a burning bush.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> When Moses saw it, he was amazed at the sight; and as he approached to look, there came the voice of the Lord:</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> 'I am the God of your ancestors, the God of Abraham, Isaac, and Jacob.' Moses began to tremble and did not dare to look.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Then the Lord said to him, 'Take off the sandals from your feet, for the place where you are standing is holy ground.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> I have surely seen the mistreatment of my people who are in Egypt and have heard their groaning, and I have come down to rescue them. Come now, I will send you to Egypt.'</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> \"It was this Moses whom they rejected when they said, 'Who made you a ruler and a judge?' and whom God now sent as both ruler and liberator through the angel who appeared to him in the bush.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> He led them out, having performed wonders and signs in Egypt, at the Red Sea, and in the wilderness for forty years.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> This is the Moses who said to the Israelites, 'God will raise up a prophet for you from your own people as he raised me up.' </VERS>\r\n\t\t\t<VERS vnumber=\"38\"> He is the one who was in the congregation in the wilderness with the angel who spoke to him at Mount Sinai, and with our ancestors; and he received living oracles to give to us.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> Our ancestors were unwilling to obey him; instead, they pushed him aside, and in their hearts they turned back to Egypt,</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> saying to Aaron, 'Make gods for us who will lead the way for us; as for this Moses who led us out from the land of Egypt, we do not know what has happened to him.'</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> At that time they made a calf, offered a sacrifice to the idol, and reveled in the works of their hands.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> But God turned away from them and handed them over to worship the host of heaven, as it is written in the book of the prophets: 'Did you offer to me slain victims and sacrifices forty years in the wilderness, O house of Israel?</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> No; you took along the tent of Moloch, and the star of your god Rephan, the images that you made to worship; so I will remove you beyond Babylon.'</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> \"Our ancestors had the tent of testimony in the wilderness, as God directed when he spoke to Moses, ordering him to make it according to the pattern he had seen. </VERS>\r\n\t\t\t<VERS vnumber=\"45\"> Our ancestors in turn brought it in with Joshua when they dispossessed the nations that God drove out before our ancestors. And it was there until the time of David,</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> who found favor with God and asked that he might find a dwelling place for the house of Jacob. </VERS>\r\n\t\t\t<VERS vnumber=\"47\"> But it was Solomon who built a house for him.</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> Yet the Most High does not dwell in houses made with human hands; as the prophet says, </VERS>\r\n\t\t\t<VERS vnumber=\"49\"> 'Heaven is my throne, and the earth is my footstool. What kind of house will you build for me, says the Lord, or what is the place of my rest?</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> Did not my hand make all these things?'</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> \"You stiff-necked people, uncircumcised in heart and ears, you are forever opposing the Holy Spirit, just as your ancestors used to do.</VERS>\r\n\t\t\t<VERS vnumber=\"52\"> Which of the prophets did your ancestors not persecute? They killed those who foretold the coming of the Righteous One, and now you have become his betrayers and murderers.</VERS>\r\n\t\t\t<VERS vnumber=\"53\"> You are the ones that received the law as ordained by angels, and yet you have not kept it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"54\"> When they heard these things, they became enraged and ground their teeth at Stephen. </VERS>\r\n\t\t\t<VERS vnumber=\"55\"> But filled with the Holy Spirit, he gazed into heaven and saw the glory of God and Jesus standing at the right hand of God.</VERS>\r\n\t\t\t<VERS vnumber=\"56\"> \"Look,\" he said, \"I see the heavens opened and the Son of Man standing at the right hand of God!\"</VERS>\r\n\t\t\t<VERS vnumber=\"57\"> But they covered their ears, and with a loud shout all rushed together against him.</VERS>\r\n\t\t\t<VERS vnumber=\"58\"> Then they dragged him out of the city and began to stone him; and the witnesses laid their coats at the feet of a young man named Saul.</VERS>\r\n\t\t\t<VERS vnumber=\"59\"> While they were stoning Stephen, he prayed, \"Lord Jesus, receive my spirit.\"</VERS>\r\n\t\t\t<VERS vnumber=\"60\"> Then he knelt down and cried out in a loud voice, \"Lord, do not hold this sin against them.\" When he had said this, he died. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"8\">\r\n\t\t\t<VERS vnumber=\"1\"> And Saul approved of their killing him. That day a severe persecution began against the church in Jerusalem, and all except the apostles were scattered throughout the countryside of Judea and Samaria.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Devout men buried Stephen and made loud lamentation over him.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> But Saul was ravaging the church by entering house after house; dragging off both men and women, he committed them to prison.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Now those who were scattered went from place to place, proclaiming the word.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Philip went down to the city of Samaria and proclaimed the Messiah to them. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The crowds with one accord listened eagerly to what was said by Philip, hearing and seeing the signs that he did,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> for unclean spirits, crying with loud shrieks, came out of many who were possessed; and many others who were paralyzed or lame were cured.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> So there was great joy in that city.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Now a certain man named Simon had previously practiced magic in the city and amazed the people of Samaria, saying that he was someone great.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> All of them, from the least to the greatest, listened to him eagerly, saying, \"This man is the power of God that is called Great.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> And they listened eagerly to him because for a long time he had amazed them with his magic.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> But when they believed Philip, who was proclaiming the good news about the kingdom of God and the name of Jesus Christ, they were baptized, both men and women.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Even Simon himself believed. After being baptized, he stayed constantly with Philip and was amazed when he saw the signs and great miracles that took place.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Now when the apostles at Jerusalem heard that Samaria had accepted the word of God, they sent Peter and John to them.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The two went down and prayed for them that they might receive the Holy Spirit</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> (for as yet the Spirit had not come upon any of them; they had only been baptized in the name of the Lord Jesus). </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then Peter and John laid their hands on them, and they received the Holy Spirit. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Now when Simon saw that the Spirit was given through the laying on of the apostles' hands, he offered them money,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> saying, \"Give me also this power so that anyone on whom I lay my hands may receive the Holy Spirit.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> But Peter said to him, \"May your silver perish with you, because you thought you could obtain God's gift with money!</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> You have no part or share in this, for your heart is not right before God.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Repent therefore of this wickedness of yours, and pray to the Lord that, if possible, the intent of your heart may be forgiven you.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> For I see that you are in the gall of bitterness and the chains of wickedness.\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Simon answered, \"Pray for me to the Lord, that nothing of what you have said may happen to me.\" </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Now after Peter and John had testified and spoken the word of the Lord, they returned to Jerusalem, proclaiming the good news to many villages of the Samaritans. </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Then an angel of the Lord said to Philip, \"Get up and go toward the south to the road that goes down from Jerusalem to Gaza.\" (This is a wilderness road.) </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> So he got up and went. Now there was an Ethiopian eunuch, a court official of the Candace, queen of the Ethiopians, in charge of her entire treasury. He had come to Jerusalem to worship</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> and was returning home; seated in his chariot, he was reading the prophet Isaiah.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Then the Spirit said to Philip, \"Go over to this chariot and join it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> So Philip ran up to it and heard him reading the prophet Isaiah. He asked, \"Do you understand what you are reading?\"</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> He replied, \"How can I, unless someone guides me?\" And he invited Philip to get in and sit beside him.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Now the passage of the scripture that he was reading was this: \"Like a sheep he was led to the slaughter, and like a lamb silent before its shearer, so he does not open his mouth.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> In his humiliation justice was denied him. Who can describe his generation? For his life is taken away from the earth.\"</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> The eunuch asked Philip, \"About whom, may I ask you, does the prophet say this, about himself or about someone else?\"</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Then Philip began to speak, and starting with this scripture, he proclaimed to him the good news about Jesus.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> As they were going along the road, they came to some water; and the eunuch said, \"Look, here is water! What is to prevent me from being baptized?\" </VERS>\r\n\t\t\t<VERS vnumber=\"37\"> </VERS>\r\n\t\t\t<VERS vnumber=\"38\"> He commanded the chariot to stop, and both of them, Philip and the eunuch, went down into the water, and Philip baptized him. </VERS>\r\n\t\t\t<VERS vnumber=\"39\"> When they came up out of the water, the Spirit of the Lord snatched Philip away; the eunuch saw him no more, and went on his way rejoicing.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> But Philip found himself at Azotus, and as he was passing through the region, he proclaimed the good news to all the towns until he came to Caesarea.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"9\">\r\n\t\t\t<VERS vnumber=\"1\"> Meanwhile Saul, still breathing threats and murder against the disciples of the Lord, went to the high priest</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> and asked him for letters to the synagogues at Damascus, so that if he found any who belonged to the Way, men or women, he might bring them bound to Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Now as he was going along and approaching Damascus, suddenly a light from heaven flashed around him.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> He fell to the ground and heard a voice saying to him, \"Saul, Saul, why do you persecute me?\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> He asked, \"Who are you, Lord?\" The reply came, \"I am Jesus, whom you are persecuting.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> But get up and enter the city, and you will be told what you are to do.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The men who were traveling with him stood speechless because they heard the voice but saw no one.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Saul got up from the ground, and though his eyes were open, he could see nothing; so they led him by the hand and brought him into Damascus.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> For three days he was without sight, and neither ate nor drank.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Now there was a disciple in Damascus named Ananias. The Lord said to him in a vision, \"Ananias.\" He answered, \"Here I am, Lord.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The Lord said to him, \"Get up and go to the street called Straight, and at the house of Judas look for a man of Tarsus named Saul. At this moment he is praying,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> and he has seen in a vision a man named Ananias come in and lay his hands on him so that he might regain his sight.\" </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> But Ananias answered, \"Lord, I have heard from many about this man, how much evil he has done to your saints in Jerusalem;</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> and here he has authority from the chief priests to bind all who invoke your name.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> But the Lord said to him, \"Go, for he is an instrument whom I have chosen to bring my name before Gentiles and kings and before the people of Israel;</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> I myself will show him how much he must suffer for the sake of my name.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> So Ananias went and entered the house. He laid his hands on Saul and said, \"Brother Saul, the Lord Jesus, who appeared to you on your way here, has sent me so that you may regain your sight and be filled with the Holy Spirit.\" </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> And immediately something like scales fell from his eyes, and his sight was restored. Then he got up and was baptized,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> and after taking some food, he regained his strength. For several days he was with the disciples in Damascus,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> and immediately he began to proclaim Jesus in the synagogues, saying, \"He is the Son of God.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> All who heard him were amazed and said, \"Is not this the man who made havoc in Jerusalem among those who invoked this name? And has he not come here for the purpose of bringing them bound before the chief priests?\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Saul became increasingly more powerful and confounded the Jews who lived in Damascus by proving that Jesus was the Messiah. </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> After some time had passed, the Jews plotted to kill him,</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> but their plot became known to Saul. They were watching the gates day and night so that they might kill him;</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> but his disciples took him by night and let him down through an opening in the wall, lowering him in a basket. </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> When he had come to Jerusalem, he attempted to join the disciples; and they were all afraid of him, for they did not believe that he was a disciple.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> But Barnabas took him, brought him to the apostles, and described for them how on the road he had seen the Lord, who had spoken to him, and how in Damascus he had spoken boldly in the name of Jesus.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> So he went in and out among them in Jerusalem, speaking boldly in the name of the Lord.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> He spoke and argued with the Hellenists; but they were attempting to kill him.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> When the believers learned of it, they brought him down to Caesarea and sent him off to Tarsus. </VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Meanwhile the church throughout Judea, Galilee, and Samaria had peace and was built up. Living in the fear of the Lord and in the comfort of the Holy Spirit, it increased in numbers.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Now as Peter went here and there among all the believers, he came down also to the saints living in Lydda. </VERS>\r\n\t\t\t<VERS vnumber=\"33\"> There he found a man named Aeneas, who had been bedridden for eight years, for he was paralyzed.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Peter said to him, \"Aeneas, Jesus Christ heals you; get up and make your bed!\" And immediately he got up.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> And all the residents of Lydda and Sharon saw him and turned to the Lord.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Now in Joppa there was a disciple whose name was Tabitha, which in Greek is Dorcas. She was devoted to good works and acts of charity. </VERS>\r\n\t\t\t<VERS vnumber=\"37\"> At that time she became ill and died. When they had washed her, they laid her in a room upstairs.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Since Lydda was near Joppa, the disciples, who heard that Peter was there, sent two men to him with the request, \"Please come to us without delay.\"</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> So Peter got up and went with them; and when he arrived, they took him to the room upstairs. All the widows stood beside him, weeping and showing tunics and other clothing that Dorcas had made while she was with them.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> Peter put all of them outside, and then he knelt down and prayed. He turned to the body and said, \"Tabitha, get up.\" Then she opened her eyes, and seeing Peter, she sat up.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> He gave her his hand and helped her up. Then calling the saints and widows, he showed her to be alive.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> This became known throughout Joppa, and many believed in the Lord.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> Meanwhile he stayed in Joppa for some time with a certain Simon, a tanner.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"10\">\r\n\t\t\t<VERS vnumber=\"1\"> In Caesarea there was a man named Cornelius, a centurion of the Italian Cohort, as it was called.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He was a devout man who feared God with all his household; he gave alms generously to the people and prayed constantly to God.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> One afternoon at about three o'clock he had a vision in which he clearly saw an angel of God coming in and saying to him, \"Cornelius.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> He stared at him in terror and said, \"What is it, Lord?\" He answered, \"Your prayers and your alms have ascended as a memorial before God.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Now send men to Joppa for a certain Simon who is called Peter;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> he is lodging with Simon, a tanner, whose house is by the seaside.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> When the angel who spoke to him had left, he called two of his slaves and a devout soldier from the ranks of those who served him,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> and after telling them everything, he sent them to Joppa.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> About noon the next day, as they were on their journey and approaching the city, Peter went up on the roof to pray.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> He became hungry and wanted something to eat; and while it was being prepared, he fell into a trance.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> He saw the heaven opened and something like a large sheet coming down, being lowered to the ground by its four corners.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> In it were all kinds of four-footed creatures and reptiles and birds of the air.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then he heard a voice saying, \"Get up, Peter; kill and eat.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But Peter said, \"By no means, Lord; for I have never eaten anything that is profane or unclean.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The voice said to him again, a second time, \"What God has made clean, you must not call profane.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> This happened three times, and the thing was suddenly taken up to heaven.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Now while Peter was greatly puzzled about what to make of the vision that he had seen, suddenly the men sent by Cornelius appeared. They were asking for Simon's house and were standing by the gate.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> They called out to ask whether Simon, who was called Peter, was staying there.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> While Peter was still thinking about the vision, the Spirit said to him, \"Look, three men are searching for you. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Now get up, go down, and go with them without hesitation; for I have sent them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> So Peter went down to the men and said, \"I am the one you are looking for; what is the reason for your coming?\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> They answered, \"Cornelius, a centurion, an upright and God-fearing man, who is well spoken of by the whole Jewish nation, was directed by a holy angel to send for you to come to his house and to hear what you have to say.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> So Peter invited them in and gave them lodging. The next day he got up and went with them, and some of the believers from Joppa accompanied him. </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> The following day they came to Caesarea. Cornelius was expecting them and had called together his relatives and close friends.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> On Peter's arrival Cornelius met him, and falling at his feet, worshiped him.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> But Peter made him get up, saying, \"Stand up; I am only a mortal.\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> And as he talked with him, he went in and found that many had assembled;</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> and he said to them, \"You yourselves know that it is unlawful for a Jew to associate with or to visit a Gentile; but God has shown me that I should not call anyone profane or unclean.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> So when I was sent for, I came without objection. Now may I ask why you sent for me?\"</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Cornelius replied, \"Four days ago at this very hour, at three o'clock, I was praying in my house when suddenly a man in dazzling clothes stood before me.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> He said, 'Cornelius, your prayer has been heard and your alms have been remembered before God.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Send therefore to Joppa and ask for Simon, who is called Peter; he is staying in the home of Simon, a tanner, by the sea.'</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Therefore I sent for you immediately, and you have been kind enough to come. So now all of us are here in the presence of God to listen to all that the Lord has commanded you to say.\"</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Then Peter began to speak to them: \"I truly understand that God shows no partiality,</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> but in every nation anyone who fears him and does what is right is acceptable to him.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> You know the message he sent to the people of Israel, preaching peace by Jesus Christ-- he is Lord of all.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> That message spread throughout Judea, beginning in Galilee after the baptism that John announced:</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> how God anointed Jesus of Nazareth with the Holy Spirit and with power; how he went about doing good and healing all who were oppressed by the devil, for God was with him.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> We are witnesses to all that he did both in Judea and in Jerusalem. They put him to death by hanging him on a tree;</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> but God raised him on the third day and allowed him to appear,</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> not to all the people but to us who were chosen by God as witnesses, and who ate and drank with him after he rose from the dead.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> He commanded us to preach to the people and to testify that he is the one ordained by God as judge of the living and the dead.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> All the prophets testify about him that everyone who believes in him receives forgiveness of sins through his name.\"</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> While Peter was still speaking, the Holy Spirit fell upon all who heard the word.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> The circumcised believers who had come with Peter were astounded that the gift of the Holy Spirit had been poured out even on the Gentiles,</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> for they heard them speaking in tongues and extolling God. Then Peter said,</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> \"Can anyone withhold the water for baptizing these people who have received the Holy Spirit just as we have?\"</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> So he ordered them to be baptized in the name of Jesus Christ. Then they invited him to stay for several days.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"11\">\r\n\t\t\t<VERS vnumber=\"1\"> Now the apostles and the believers who were in Judea heard that the Gentiles had also accepted the word of God. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> So when Peter went up to Jerusalem, the circumcised believers criticized him, </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> saying, \"Why did you go to uncircumcised men and eat with them?\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then Peter began to explain it to them, step by step, saying,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> \"I was in the city of Joppa praying, and in a trance I saw a vision. There was something like a large sheet coming down from heaven, being lowered by its four corners; and it came close to me.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> As I looked at it closely I saw four-footed animals, beasts of prey, reptiles, and birds of the air.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> I also heard a voice saying to me, 'Get up, Peter; kill and eat.'</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But I replied, 'By no means, Lord; for nothing profane or unclean has ever entered my mouth.'</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> But a second time the voice answered from heaven, 'What God has made clean, you must not call profane.'</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> This happened three times; then everything was pulled up again to heaven.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> At that very moment three men, sent to me from Caesarea, arrived at the house where we were.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The Spirit told me to go with them and not to make a distinction between them and us. These six brothers also accompanied me, and we entered the man's house. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> He told us how he had seen the angel standing in his house and saying, 'Send to Joppa and bring Simon, who is called Peter;</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> he will give you a message by which you and your entire household will be saved.'</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And as I began to speak, the Holy Spirit fell upon them just as it had upon us at the beginning.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> And I remembered the word of the Lord, how he had said, 'John baptized with water, but you will be baptized with the Holy Spirit.'</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> If then God gave them the same gift that he gave us when we believed in the Lord Jesus Christ, who was I that I could hinder God?\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> When they heard this, they were silenced. And they praised God, saying, \"Then God has given even to the Gentiles the repentance that leads to life.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Now those who were scattered because of the persecution that took place over Stephen traveled as far as Phoenicia, Cyprus, and Antioch, and they spoke the word to no one except Jews.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> But among them were some men of Cyprus and Cyrene who, on coming to Antioch, spoke to the Hellenists also, proclaiming the Lord Jesus. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> The hand of the Lord was with them, and a great number became believers and turned to the Lord.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> News of this came to the ears of the church in Jerusalem, and they sent Barnabas to Antioch.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> When he came and saw the grace of God, he rejoiced, and he exhorted them all to remain faithful to the Lord with steadfast devotion;</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> for he was a good man, full of the Holy Spirit and of faith. And a great many people were brought to the Lord.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Then Barnabas went to Tarsus to look for Saul,</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> and when he had found him, he brought him to Antioch. So it was that for an entire year they met with the church and taught a great many people, and it was in Antioch that the disciples were first called \"Christians.\" </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> At that time prophets came down from Jerusalem to Antioch.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> One of them named Agabus stood up and predicted by the Spirit that there would be a severe famine over all the world; and this took place during the reign of Claudius.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> The disciples determined that according to their ability, each would send relief to the believers living in Judea;</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> this they did, sending it to the elders by Barnabas and Saul.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"12\">\r\n\t\t\t<VERS vnumber=\"1\"> About that time King Herod laid violent hands upon some who belonged to the church.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He had James, the brother of John, killed with the sword.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> After he saw that it pleased the Jews, he proceeded to arrest Peter also. (This was during the festival of Unleavened Bread.)</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> When he had seized him, he put him in prison and handed him over to four squads of soldiers to guard him, intending to bring him out to the people after the Passover.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> While Peter was kept in prison, the church prayed fervently to God for him.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The very night before Herod was going to bring him out, Peter, bound with two chains, was sleeping between two soldiers, while guards in front of the door were keeping watch over the prison.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Suddenly an angel of the Lord appeared and a light shone in the cell. He tapped Peter on the side and woke him, saying, \"Get up quickly.\" And the chains fell off his wrists.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The angel said to him, \"Fasten your belt and put on your sandals.\" He did so. Then he said to him, \"Wrap your cloak around you and follow me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Peter went out and followed him; he did not realize that what was happening with the angel's help was real; he thought he was seeing a vision. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> After they had passed the first and the second guard, they came before the iron gate leading into the city. It opened for them of its own accord, and they went outside and walked along a lane, when suddenly the angel left him.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then Peter came to himself and said, \"Now I am sure that the Lord has sent his angel and rescued me from the hands of Herod and from all that the Jewish people were expecting.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> As soon as he realized this, he went to the house of Mary, the mother of John whose other name was Mark, where many had gathered and were praying.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> When he knocked at the outer gate, a maid named Rhoda came to answer.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> On recognizing Peter's voice, she was so overjoyed that, instead of opening the gate, she ran in and announced that Peter was standing at the gate.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> They said to her, \"You are out of your mind!\" But she insisted that it was so. They said, \"It is his angel.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Meanwhile Peter continued knocking; and when they opened the gate, they saw him and were amazed.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> He motioned to them with his hand to be silent, and described for them how the Lord had brought him out of the prison. And he added, \"Tell this to James and to the believers.\" Then he left and went to another place. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> When morning came, there was no small commotion among the soldiers over what had become of Peter.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> When Herod had searched for him and could not find him, he examined the guards and ordered them to be put to death. Then he went down from Judea to Caesarea and stayed there.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Now Herod was angry with the people of Tyre and Sidon. So they came to him in a body; and after winning over Blastus, the king's chamberlain, they asked for a reconciliation, because their country depended on the king's country for food. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> On an appointed day Herod put on his royal robes, took his seat on the platform, and delivered a public address to them.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The people kept shouting, \"The voice of a god, and not of a mortal!\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> And immediately, because he had not given the glory to God, an angel of the Lord struck him down, and he was eaten by worms and died.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> But the word of God continued to advance and gain adherents.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Then after completing their mission Barnabas and Saul returned to Jerusalem and brought with them John, whose other name was Mark.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"13\">\r\n\t\t\t<VERS vnumber=\"1\"> Now in the church at Antioch there were prophets and teachers: Barnabas, Simeon who was called Niger, Lucius of Cyrene, Manaen a member of the court of Herod the ruler, and Saul. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> While they were worshiping the Lord and fasting, the Holy Spirit said, \"Set apart for me Barnabas and Saul for the work to which I have called them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then after fasting and praying they laid their hands on them and sent them off.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> So, being sent out by the Holy Spirit, they went down to Seleucia; and from there they sailed to Cyprus.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> When they arrived at Salamis, they proclaimed the word of God in the synagogues of the Jews. And they had John also to assist them.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> When they had gone through the whole island as far as Paphos, they met a certain magician, a Jewish false prophet, named Bar-Jesus.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> He was with the proconsul, Sergius Paulus, an intelligent man, who summoned Barnabas and Saul and wanted to hear the word of God.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But the magician Elymas (for that is the translation of his name) opposed them and tried to turn the proconsul away from the faith.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> But Saul, also known as Paul, filled with the Holy Spirit, looked intently at him</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> and said, \"You son of the devil, you enemy of all righteousness, full of all deceit and villainy, will you not stop making crooked the straight paths of the Lord?</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> And now listen-- the hand of the Lord is against you, and you will be blind for a while, unable to see the sun.\" Immediately mist and darkness came over him, and he went about groping for someone to lead him by the hand.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> When the proconsul saw what had happened, he believed, for he was astonished at the teaching about the Lord.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then Paul and his companions set sail from Paphos and came to Perga in Pamphylia. John, however, left them and returned to Jerusalem;</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> but they went on from Perga and came to Antioch in Pisidia. And on the sabbath day they went into the synagogue and sat down.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> After the reading of the law and the prophets, the officials of the synagogue sent them a message, saying, \"Brothers, if you have any word of exhortation for the people, give it.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> So Paul stood up and with a gesture began to speak: \"You Israelites, and others who fear God, listen. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The God of this people Israel chose our ancestors and made the people great during their stay in the land of Egypt, and with uplifted arm he led them out of it.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> For about forty years he put up with them in the wilderness. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> After he had destroyed seven nations in the land of Canaan, he gave them their land as an inheritance</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> for about four hundred fifty years. After that he gave them judges until the time of the prophet Samuel.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then they asked for a king; and God gave them Saul son of Kish, a man of the tribe of Benjamin, who reigned for forty years.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> When he had removed him, he made David their king. In his testimony about him he said, 'I have found David, son of Jesse, to be a man after my heart, who will carry out all my wishes.'</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Of this man's posterity God has brought to Israel a Savior, Jesus, as he promised;</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> before his coming John had already proclaimed a baptism of repentance to all the people of Israel.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> And as John was finishing his work, he said, 'What do you suppose that I am? I am not he. No, but one is coming after me; I am not worthy to untie the thong of the sandals on his feet.' </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> \"My brothers, you descendants of Abraham's family, and others who fear God, to us the message of this salvation has been sent. </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Because the residents of Jerusalem and their leaders did not recognize him or understand the words of the prophets that are read every sabbath, they fulfilled those words by condemning him.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Even though they found no cause for a sentence of death, they asked Pilate to have him killed.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> When they had carried out everything that was written about him, they took him down from the tree and laid him in a tomb.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> But God raised him from the dead;</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> and for many days he appeared to those who came up with him from Galilee to Jerusalem, and they are now his witnesses to the people.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> And we bring you the good news that what God promised to our ancestors</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> he has fulfilled for us, their children, by raising Jesus; as also it is written in the second psalm, 'You are my Son; today I have begotten you.'</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> As to his raising him from the dead, no more to return to corruption, he has spoken in this way, 'I will give you the holy promises made to David.'</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Therefore he has also said in another psalm, 'You will not let your Holy One experience corruption.'</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> For David, after he had served the purpose of God in his own generation, died, was laid beside his ancestors, and experienced corruption; </VERS>\r\n\t\t\t<VERS vnumber=\"37\"> but he whom God raised up experienced no corruption.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Let it be known to you therefore, my brothers, that through this man forgiveness of sins is proclaimed to you;</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> by this Jesus everyone who believes is set free from all those sins from which you could not be freed by the law of Moses. </VERS>\r\n\t\t\t<VERS vnumber=\"40\"> Beware, therefore, that what the prophets said does not happen to you:</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> 'Look, you scoffers! Be amazed and perish, for in your days I am doing a work, a work that you will never believe, even if someone tells you.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> As Paul and Barnabas were going out, the people urged them to speak about these things again the next sabbath. </VERS>\r\n\t\t\t<VERS vnumber=\"43\"> When the meeting of the synagogue broke up, many Jews and devout converts to Judaism followed Paul and Barnabas, who spoke to them and urged them to continue in the grace of God.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> The next sabbath almost the whole city gathered to hear the word of the Lord. </VERS>\r\n\t\t\t<VERS vnumber=\"45\"> But when the Jews saw the crowds, they were filled with jealousy; and blaspheming, they contradicted what was spoken by Paul.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> Then both Paul and Barnabas spoke out boldly, saying, \"It was necessary that the word of God should be spoken first to you. Since you reject it and judge yourselves to be unworthy of eternal life, we are now turning to the Gentiles.</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> For so the Lord has commanded us, saying, 'I have set you to be a light for the Gentiles, so that you may bring salvation to the ends of the earth.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"48\"> When the Gentiles heard this, they were glad and praised the word of the Lord; and as many as had been destined for eternal life became believers.</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> Thus the word of the Lord spread throughout the region.</VERS>\r\n\t\t\t<VERS vnumber=\"50\"> But the Jews incited the devout women of high standing and the leading men of the city, and stirred up persecution against Paul and Barnabas, and drove them out of their region.</VERS>\r\n\t\t\t<VERS vnumber=\"51\"> So they shook the dust off their feet in protest against them, and went to Iconium.</VERS>\r\n\t\t\t<VERS vnumber=\"52\"> And the disciples were filled with joy and with the Holy Spirit.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"14\">\r\n\t\t\t<VERS vnumber=\"1\"> The same thing occurred in Iconium, where Paul and Barnabas went into the Jewish synagogue and spoke in such a way that a great number of both Jews and Greeks became believers. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> But the unbelieving Jews stirred up the Gentiles and poisoned their minds against the brothers.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> So they remained for a long time, speaking boldly for the Lord, who testified to the word of his grace by granting signs and wonders to be done through them.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But the residents of the city were divided; some sided with the Jews, and some with the apostles.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> And when an attempt was made by both Gentiles and Jews, with their rulers, to mistreat them and to stone them,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> the apostles learned of it and fled to Lystra and Derbe, cities of Lycaonia, and to the surrounding country;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> and there they continued proclaiming the good news.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> In Lystra there was a man sitting who could not use his feet and had never walked, for he had been crippled from birth.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> He listened to Paul as he was speaking. And Paul, looking at him intently and seeing that he had faith to be healed,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> said in a loud voice, \"Stand upright on your feet.\" And the man sprang up and began to walk. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> When the crowds saw what Paul had done, they shouted in the Lycaonian language, \"The gods have come down to us in human form!\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Barnabas they called Zeus, and Paul they called Hermes, because he was the chief speaker.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The priest of Zeus, whose temple was just outside the city, brought oxen and garlands to the gates; he and the crowds wanted to offer sacrifice. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> When the apostles Barnabas and Paul heard of it, they tore their clothes and rushed out into the crowd, shouting,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> \"Friends, why are you doing this? We are mortals just like you, and we bring you good news, that you should turn from these worthless things to the living God, who made the heaven and the earth and the sea and all that is in them.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> In past generations he allowed all the nations to follow their own ways;</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> yet he has not left himself without a witness in doing good-- giving you rains from heaven and fruitful seasons, and filling you with food and your hearts with joy.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Even with these words, they scarcely restrained the crowds from offering sacrifice to them.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> But Jews came there from Antioch and Iconium and won over the crowds. Then they stoned Paul and dragged him out of the city, supposing that he was dead.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> But when the disciples surrounded him, he got up and went into the city. The next day he went on with Barnabas to Derbe.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> After they had proclaimed the good news to that city and had made many disciples, they returned to Lystra, then on to Iconium and Antioch.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> There they strengthened the souls of the disciples and encouraged them to continue in the faith, saying, \"It is through many persecutions that we must enter the kingdom of God.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> And after they had appointed elders for them in each church, with prayer and fasting they entrusted them to the Lord in whom they had come to believe.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Then they passed through Pisidia and came to Pamphylia.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> When they had spoken the word in Perga, they went down to Attalia.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> From there they sailed back to Antioch, where they had been commended to the grace of God for the work that they had completed. </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> When they arrived, they called the church together and related all that God had done with them, and how he had opened a door of faith for the Gentiles.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> And they stayed there with the disciples for some time.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"15\">\r\n\t\t\t<VERS vnumber=\"1\"> Then certain individuals came down from Judea and were teaching the brothers, \"Unless you are circumcised according to the custom of Moses, you cannot be saved.\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And after Paul and Barnabas had no small dissension and debate with them, Paul and Barnabas and some of the others were appointed to go up to Jerusalem to discuss this question with the apostles and the elders.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> So they were sent on their way by the church, and as they passed through both Phoenicia and Samaria, they reported the conversion of the Gentiles, and brought great joy to all the believers. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> When they came to Jerusalem, they were welcomed by the church and the apostles and the elders, and they reported all that God had done with them.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> But some believers who belonged to the sect of the Pharisees stood up and said, \"It is necessary for them to be circumcised and ordered to keep the law of Moses.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The apostles and the elders met together to consider this matter.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> After there had been much debate, Peter stood up and said to them, \"My brothers, you know that in the early days God made a choice among you, that I should be the one through whom the Gentiles would hear the message of the good news and become believers. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And God, who knows the human heart, testified to them by giving them the Holy Spirit, just as he did to us;</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> and in cleansing their hearts by faith he has made no distinction between them and us.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Now therefore why are you putting God to the test by placing on the neck of the disciples a yoke that neither our ancestors nor we have been able to bear?</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> On the contrary, we believe that we will be saved through the grace of the Lord Jesus, just as they will.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The whole assembly kept silence, and listened to Barnabas and Paul as they told of all the signs and wonders that God had done through them among the Gentiles.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> After they finished speaking, James replied, \"My brothers, listen to me. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Simeon has related how God first looked favorably on the Gentiles, to take from among them a people for his name.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> This agrees with the words of the prophets, as it is written,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> 'After this I will return, and I will rebuild the dwelling of David, which has fallen; from its ruins I will rebuild it, and I will set it up,</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> so that all other peoples may seek the Lord-- even all the Gentiles over whom my name has been called. Thus says the Lord, who has been making these things</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> known from long ago.' </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Therefore I have reached the decision that we should not trouble those Gentiles who are turning to God,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> but we should write to them to abstain only from things polluted by idols and from fornication and from whatever has been strangled and from blood. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> For in every city, for generations past, Moses has had those who proclaim him, for he has been read aloud every sabbath in the synagogues.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Then the apostles and the elders, with the consent of the whole church, decided to choose men from among their members and to send them to Antioch with Paul and Barnabas. They sent Judas called Barsabbas, and Silas, leaders among the brothers, </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> with the following letter: \"The brothers, both the apostles and the elders, to the believers of Gentile origin in Antioch and Syria and Cilicia, greetings. </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Since we have heard that certain persons who have gone out from us, though with no instructions from us, have said things to disturb you and have unsettled your minds,</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> we have decided unanimously to choose representatives and send them to you, along with our beloved Barnabas and Paul, </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> who have risked their lives for the sake of our Lord Jesus Christ.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> We have therefore sent Judas and Silas, who themselves will tell you the same things by word of mouth.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> For it has seemed good to the Holy Spirit and to us to impose on you no further burden than these essentials:</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> that you abstain from what has been sacrificed to idols and from blood and from what is strangled and from fornication. If you keep yourselves from these, you will do well. Farewell.\" </VERS>\r\n\t\t\t<VERS vnumber=\"30\"> So they were sent off and went down to Antioch. When they gathered the congregation together, they delivered the letter.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> When its members read it, they rejoiced at the exhortation. </VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Judas and Silas, who were themselves prophets, said much to encourage and strengthen the believers. </VERS>\r\n\t\t\t<VERS vnumber=\"33\"> After they had been there for some time, they were sent off in peace by the believers to those who had sent them. </VERS>\r\n\t\t\t<VERS vnumber=\"34\"> </VERS>\r\n\t\t\t<VERS vnumber=\"35\"> But Paul and Barnabas remained in Antioch, and there, with many others, they taught and proclaimed the word of the Lord.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> After some days Paul said to Barnabas, \"Come, let us return and visit the believers in every city where we proclaimed the word of the Lord and see how they are doing.\" </VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Barnabas wanted to take with them John called Mark.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> But Paul decided not to take with them one who had deserted them in Pamphylia and had not accompanied them in the work.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> The disagreement became so sharp that they parted company; Barnabas took Mark with him and sailed away to Cyprus.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> But Paul chose Silas and set out, the believers commending him to the grace of the Lord. </VERS>\r\n\t\t\t<VERS vnumber=\"41\"> He went through Syria and Cilicia, strengthening the churches.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"16\">\r\n\t\t\t<VERS vnumber=\"1\"> Paul went on also to Derbe and to Lystra, where there was a disciple named Timothy, the son of a Jewish woman who was a believer; but his father was a Greek. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He was well spoken of by the believers in Lystra and Iconium. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Paul wanted Timothy to accompany him; and he took him and had him circumcised because of the Jews who were in those places, for they all knew that his father was a Greek.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> As they went from town to town, they delivered to them for observance the decisions that had been reached by the apostles and elders who were in Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> So the churches were strengthened in the faith and increased in numbers daily.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> They went through the region of Phrygia and Galatia, having been forbidden by the Holy Spirit to speak the word in Asia.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> When they had come opposite Mysia, they attempted to go into Bithynia, but the Spirit of Jesus did not allow them;</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> so, passing by Mysia, they went down to Troas.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> During the night Paul had a vision: there stood a man of Macedonia pleading with him and saying, \"Come over to Macedonia and help us.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> When he had seen the vision, we immediately tried to cross over to Macedonia, being convinced that God had called us to proclaim the good news to them.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> We set sail from Troas and took a straight course to Samothrace, the following day to Neapolis,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> and from there to Philippi, which is a leading city of the district of Macedonia and a Roman colony. We remained in this city for some days. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> On the sabbath day we went outside the gate by the river, where we supposed there was a place of prayer; and we sat down and spoke to the women who had gathered there.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> A certain woman named Lydia, a worshiper of God, was listening to us; she was from the city of Thyatira and a dealer in purple cloth. The Lord opened her heart to listen eagerly to what was said by Paul.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> When she and her household were baptized, she urged us, saying, \"If you have judged me to be faithful to the Lord, come and stay at my home.\" And she prevailed upon us.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> One day, as we were going to the place of prayer, we met a slave-girl who had a spirit of divination and brought her owners a great deal of money by fortune-telling.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> While she followed Paul and us, she would cry out, \"These men are slaves of the Most High God, who proclaim to you a way of salvation.\" </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> She kept doing this for many days. But Paul, very much annoyed, turned and said to the spirit, \"I order you in the name of Jesus Christ to come out of her.\" And it came out that very hour.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> But when her owners saw that their hope of making money was gone, they seized Paul and Silas and dragged them into the marketplace before the authorities.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> When they had brought them before the magistrates, they said, \"These men are disturbing our city; they are Jews</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> and are advocating customs that are not lawful for us as Romans to adopt or observe.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The crowd joined in attacking them, and the magistrates had them stripped of their clothing and ordered them to be beaten with rods.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> After they had given them a severe flogging, they threw them into prison and ordered the jailer to keep them securely.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Following these instructions, he put them in the innermost cell and fastened their feet in the stocks.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> About midnight Paul and Silas were praying and singing hymns to God, and the prisoners were listening to them.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Suddenly there was an earthquake, so violent that the foundations of the prison were shaken; and immediately all the doors were opened and everyone's chains were unfastened.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> When the jailer woke up and saw the prison doors wide open, he drew his sword and was about to kill himself, since he supposed that the prisoners had escaped.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> But Paul shouted in a loud voice, \"Do not harm yourself, for we are all here.\"</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> The jailer called for lights, and rushing in, he fell down trembling before Paul and Silas. </VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Then he brought them outside and said, \"Sirs, what must I do to be saved?\"</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> They answered, \"Believe on the Lord Jesus, and you will be saved, you and your household.\"</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> They spoke the word of the Lord to him and to all who were in his house. </VERS>\r\n\t\t\t<VERS vnumber=\"33\"> At the same hour of the night he took them and washed their wounds; then he and his entire family were baptized without delay.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> He brought them up into the house and set food before them; and he and his entire household rejoiced that he had become a believer in God.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> When morning came, the magistrates sent the police, saying, \"Let those men go.\"</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> And the jailer reported the message to Paul, saying, \"The magistrates sent word to let you go; therefore come out now and go in peace.\"</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> But Paul replied, \"They have beaten us in public, uncondemned, men who are Roman citizens, and have thrown us into prison; and now are they going to discharge us in secret? Certainly not! Let them come and take us out themselves.\"</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> The police reported these words to the magistrates, and they were afraid when they heard that they were Roman citizens;</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> so they came and apologized to them. And they took them out and asked them to leave the city.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> After leaving the prison they went to Lydia's home; and when they had seen and encouraged the brothers and sisters there, they departed. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"17\">\r\n\t\t\t<VERS vnumber=\"1\"> After Paul and Silas had passed through Amphipolis and Apollonia, they came to Thessalonica, where there was a synagogue of the Jews.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And Paul went in, as was his custom, and on three sabbath days argued with them from the scriptures,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> explaining and proving that it was necessary for the Messiah to suffer and to rise from the dead, and saying, \"This is the Messiah, Jesus whom I am proclaiming to you.\" </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Some of them were persuaded and joined Paul and Silas, as did a great many of the devout Greeks and not a few of the leading women.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> But the Jews became jealous, and with the help of some ruffians in the marketplaces they formed a mob and set the city in an uproar. While they were searching for Paul and Silas to bring them out to the assembly, they attacked Jason's house.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> When they could not find them, they dragged Jason and some believers before the city authorities, shouting, \"These people who have been turning the world upside down have come here also, </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> and Jason has entertained them as guests. They are all acting contrary to the decrees of the emperor, saying that there is another king named Jesus.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The people and the city officials were disturbed when they heard this,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> and after they had taken bail from Jason and the others, they let them go.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> That very night the believers sent Paul and Silas off to Beroea; and when they arrived, they went to the Jewish synagogue. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> These Jews were more receptive than those in Thessalonica, for they welcomed the message very eagerly and examined the scriptures every day to see whether these things were so.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Many of them therefore believed, including not a few Greek women and men of high standing.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> But when the Jews of Thessalonica learned that the word of God had been proclaimed by Paul in Beroea as well, they came there too, to stir up and incite the crowds.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then the believers immediately sent Paul away to the coast, but Silas and Timothy remained behind. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Those who conducted Paul brought him as far as Athens; and after receiving instructions to have Silas and Timothy join him as soon as possible, they left him.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> While Paul was waiting for them in Athens, he was deeply distressed to see that the city was full of idols.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> So he argued in the synagogue with the Jews and the devout persons, and also in the marketplace every day with those who happened to be there. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Also some Epicurean and Stoic philosophers debated with him. Some said, \"What does this babbler want to say?\" Others said, \"He seems to be a proclaimer of foreign divinities.\" (This was because he was telling the good news about Jesus and the resurrection.)</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> So they took him and brought him to the Areopagus and asked him, \"May we know what this new teaching is that you are presenting?</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> It sounds rather strange to us, so we would like to know what it means.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Now all the Athenians and the foreigners living there would spend their time in nothing but telling or hearing something new.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Then Paul stood in front of the Areopagus and said, \"Athenians, I see how extremely religious you are in every way.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> For as I went through the city and looked carefully at the objects of your worship, I found among them an altar with the inscription, 'To an unknown god.' What therefore you worship as unknown, this I proclaim to you.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> The God who made the world and everything in it, he who is Lord of heaven and earth, does not live in shrines made by human hands,</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> nor is he served by human hands, as though he needed anything, since he himself gives to all mortals life and breath and all things.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> From one ancestor he made all nations to inhabit the whole earth, and he allotted the times of their existence and the boundaries of the places where they would live, </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> so that they would search for God and perhaps grope for him and find him-- though indeed he is not far from each one of us.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> For 'In him we live and move and have our being'; as even some of your own poets have said, 'For we too are his offspring.'</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Since we are God's offspring, we ought not to think that the deity is like gold, or silver, or stone, an image formed by the art and imagination of mortals.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> While God has overlooked the times of human ignorance, now he commands all people everywhere to repent,</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> because he has fixed a day on which he will have the world judged in righteousness by a man whom he has appointed, and of this he has given assurance to all by raising him from the dead.\"</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> When they heard of the resurrection of the dead, some scoffed; but others said, \"We will hear you again about this.\"</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> At that point Paul left them.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> But some of them joined him and became believers, including Dionysius the Areopagite and a woman named Damaris, and others with them.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"18\">\r\n\t\t\t<VERS vnumber=\"1\"> After this Paul left Athens and went to Corinth. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> There he found a Jew named Aquila, a native of Pontus, who had recently come from Italy with his wife Priscilla, because Claudius had ordered all Jews to leave Rome. Paul went to see them, </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> and, because he was of the same trade, he stayed with them, and they worked together-- by trade they were tentmakers.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Every sabbath he would argue in the synagogue and would try to convince Jews and Greeks.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> When Silas and Timothy arrived from Macedonia, Paul was occupied with proclaiming the word, testifying to the Jews that the Messiah was Jesus. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> When they opposed and reviled him, in protest he shook the dust from his clothes and said to them, \"Your blood be on your own heads! I am innocent. From now on I will go to the Gentiles.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then he left the synagogue and went to the house of a man named Titius Justus, a worshiper of God; his house was next door to the synagogue. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Crispus, the official of the synagogue, became a believer in the Lord, together with all his household; and many of the Corinthians who heard Paul became believers and were baptized.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> One night the Lord said to Paul in a vision, \"Do not be afraid, but speak and do not be silent;</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> for I am with you, and no one will lay a hand on you to harm you, for there are many in this city who are my people.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> He stayed there a year and six months, teaching the word of God among them.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> But when Gallio was proconsul of Achaia, the Jews made a united attack on Paul and brought him before the tribunal.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> They said, \"This man is persuading people to worship God in ways that are contrary to the law.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Just as Paul was about to speak, Gallio said to the Jews, \"If it were a matter of crime or serious villainy, I would be justified in accepting the complaint of you Jews;</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> but since it is a matter of questions about words and names and your own law, see to it yourselves; I do not wish to be a judge of these matters.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> And he dismissed them from the tribunal.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then all of them seized Sosthenes, the official of the synagogue, and beat him in front of the tribunal. But Gallio paid no attention to any of these things. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> After staying there for a considerable time, Paul said farewell to the believers and sailed for Syria, accompanied by Priscilla and Aquila. At Cenchreae he had his hair cut, for he was under a vow. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> When they reached Ephesus, he left them there, but first he himself went into the synagogue and had a discussion with the Jews.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> When they asked him to stay longer, he declined;</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> but on taking leave of them, he said, \"I will return to you, if God wills.\" Then he set sail from Ephesus. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> When he had landed at Caesarea, he went up to Jerusalem and greeted the church, and then went down to Antioch. </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> After spending some time there he departed and went from place to place through the region of Galatia and Phrygia, strengthening all the disciples. </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Now there came to Ephesus a Jew named Apollos, a native of Alexandria. He was an eloquent man, well-versed in the scriptures.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> He had been instructed in the Way of the Lord; and he spoke with burning enthusiasm and taught accurately the things concerning Jesus, though he knew only the baptism of John.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> He began to speak boldly in the synagogue; but when Priscilla and Aquila heard him, they took him aside and explained the Way of God to him more accurately.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> And when he wished to cross over to Achaia, the believers encouraged him and wrote to the disciples to welcome him. On his arrival he greatly helped those who through grace had become believers,</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> for he powerfully refuted the Jews in public, showing by the scriptures that the Messiah is Jesus. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"19\">\r\n\t\t\t<VERS vnumber=\"1\"> While Apollos was in Corinth, Paul passed through the interior regions and came to Ephesus, where he found some disciples.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He said to them, \"Did you receive the Holy Spirit when you became believers?\" They replied, \"No, we have not even heard that there is a Holy Spirit.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then he said, \"Into what then were you baptized?\" They answered, \"Into John's baptism.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Paul said, \"John baptized with the baptism of repentance, telling the people to believe in the one who was to come after him, that is, in Jesus.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> On hearing this, they were baptized in the name of the Lord Jesus.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> When Paul had laid his hands on them, the Holy Spirit came upon them, and they spoke in tongues and prophesied--</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> altogether there were about twelve of them.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> He entered the synagogue and for three months spoke out boldly, and argued persuasively about the kingdom of God.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> When some stubbornly refused to believe and spoke evil of the Way before the congregation, he left them, taking the disciples with him, and argued daily in the lecture hall of Tyrannus. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> This continued for two years, so that all the residents of Asia, both Jews and Greeks, heard the word of the Lord.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> God did extraordinary miracles through Paul,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> so that when the handkerchiefs or aprons that had touched his skin were brought to the sick, their diseases left them, and the evil spirits came out of them.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then some itinerant Jewish exorcists tried to use the name of the Lord Jesus over those who had evil spirits, saying, \"I adjure you by the Jesus whom Paul proclaims.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Seven sons of a Jewish high priest named Sceva were doing this.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> But the evil spirit said to them in reply, \"Jesus I know, and Paul I know; but who are you?\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then the man with the evil spirit leaped on them, mastered them all, and so overpowered them that they fled out of the house naked and wounded.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> When this became known to all residents of Ephesus, both Jews and Greeks, everyone was awestruck; and the name of the Lord Jesus was praised.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Also many of those who became believers confessed and disclosed their practices.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> A number of those who practiced magic collected their books and burned them publicly; when the value of these books was calculated, it was found to come to fifty thousand silver coins.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> So the word of the Lord grew mightily and prevailed.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Now after these things had been accomplished, Paul resolved in the Spirit to go through Macedonia and Achaia, and then to go on to Jerusalem. He said, \"After I have gone there, I must also see Rome.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> So he sent two of his helpers, Timothy and Erastus, to Macedonia, while he himself stayed for some time longer in Asia.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> About that time no little disturbance broke out concerning the Way.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> A man named Demetrius, a silversmith who made silver shrines of Artemis, brought no little business to the artisans.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> These he gathered together, with the workers of the same trade, and said, \"Men, you know that we get our wealth from this business.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> You also see and hear that not only in Ephesus but in almost the whole of Asia this Paul has persuaded and drawn away a considerable number of people by saying that gods made with hands are not gods.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> And there is danger not only that this trade of ours may come into disrepute but also that the temple of the great goddess Artemis will be scorned, and she will be deprived of her majesty that brought all Asia and the world to worship her.\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> When they heard this, they were enraged and shouted, \"Great is Artemis of the Ephesians!\"</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> The city was filled with the confusion; and people rushed together to the theater, dragging with them Gaius and Aristarchus, Macedonians who were Paul's travel companions. </VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Paul wished to go into the crowd, but the disciples would not let him;</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> even some officials of the province of Asia, who were friendly to him, sent him a message urging him not to venture into the theater. </VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Meanwhile, some were shouting one thing, some another; for the assembly was in confusion, and most of them did not know why they had come together.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Some of the crowd gave instructions to Alexander, whom the Jews had pushed forward. And Alexander motioned for silence and tried to make a defense before the people.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> But when they recognized that he was a Jew, for about two hours all of them shouted in unison, \"Great is Artemis of the Ephesians!\"</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> But when the town clerk had quieted the crowd, he said, \"Citizens of Ephesus, who is there that does not know that the city of the Ephesians is the temple keeper of the great Artemis and of the statue that fell from heaven? </VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Since these things cannot be denied, you ought to be quiet and do nothing rash.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> You have brought these men here who are neither temple robbers nor blasphemers of our goddess. </VERS>\r\n\t\t\t<VERS vnumber=\"38\"> If therefore Demetrius and the artisans with him have a complaint against anyone, the courts are open, and there are proconsuls; let them bring charges there against one another.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> If there is anything further you want to know, it must be settled in the regular assembly. </VERS>\r\n\t\t\t<VERS vnumber=\"40\"> For we are in danger of being charged with rioting today, since there is no cause that we can give to justify this commotion.\"</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> When he had said this, he dismissed the assembly.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"20\">\r\n\t\t\t<VERS vnumber=\"1\"> After the uproar had ceased, Paul sent for the disciples; and after encouraging them and saying farewell, he left for Macedonia.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> When he had gone through those regions and had given the believers much encouragement, he came to Greece, </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> where he stayed for three months. He was about to set sail for Syria when a plot was made against him by the Jews, and so he decided to return through Macedonia.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> He was accompanied by Sopater son of Pyrrhus from Beroea, by Aristarchus and Secundus from Thessalonica, by Gaius from Derbe, and by Timothy, as well as by Tychicus and Trophimus from Asia.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> They went ahead and were waiting for us in Troas;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> but we sailed from Philippi after the days of Unleavened Bread, and in five days we joined them in Troas, where we stayed for seven days.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> On the first day of the week, when we met to break bread, Paul was holding a discussion with them; since he intended to leave the next day, he continued speaking until midnight.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> There were many lamps in the room upstairs where we were meeting.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> A young man named Eutychus, who was sitting in the window, began to sink off into a deep sleep while Paul talked still longer. Overcome by sleep, he fell to the ground three floors below and was picked up dead.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> But Paul went down, and bending over him took him in his arms, and said, \"Do not be alarmed, for his life is in him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then Paul went upstairs, and after he had broken bread and eaten, he continued to converse with them until dawn; then he left.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Meanwhile they had taken the boy away alive and were not a little comforted.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> We went ahead to the ship and set sail for Assos, intending to take Paul on board there; for he had made this arrangement, intending to go by land himself.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> When he met us in Assos, we took him on board and went to Mitylene.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> We sailed from there, and on the following day we arrived opposite Chios. The next day we touched at Samos, and the day after that we came to Miletus. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> For Paul had decided to sail past Ephesus, so that he might not have to spend time in Asia; he was eager to be in Jerusalem, if possible, on the day of Pentecost.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> From Miletus he sent a message to Ephesus, asking the elders of the church to meet him.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> When they came to him, he said to them: \"You yourselves know how I lived among you the entire time from the first day that I set foot in Asia,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> serving the Lord with all humility and with tears, enduring the trials that came to me through the plots of the Jews.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> I did not shrink from doing anything helpful, proclaiming the message to you and teaching you publicly and from house to house,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> as I testified to both Jews and Greeks about repentance toward God and faith toward our Lord Jesus.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> And now, as a captive to the Spirit, I am on my way to Jerusalem, not knowing what will happen to me there, </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> except that the Holy Spirit testifies to me in every city that imprisonment and persecutions are waiting for me.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> But I do not count my life of any value to myself, if only I may finish my course and the ministry that I received from the Lord Jesus, to testify to the good news of God's grace.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> \"And now I know that none of you, among whom I have gone about proclaiming the kingdom, will ever see my face again.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Therefore I declare to you this day that I am not responsible for the blood of any of you,</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> for I did not shrink from declaring to you the whole purpose of God.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Keep watch over yourselves and over all the flock, of which the Holy Spirit has made you overseers, to shepherd the church of God that he obtained with the blood of his own Son.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> I know that after I have gone, savage wolves will come in among you, not sparing the flock.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Some even from your own group will come distorting the truth in order to entice the disciples to follow them.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Therefore be alert, remembering that for three years I did not cease night or day to warn everyone with tears.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> And now I commend you to God and to the message of his grace, a message that is able to build you up and to give you the inheritance among all who are sanctified.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> I coveted no one's silver or gold or clothing.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> You know for yourselves that I worked with my own hands to support myself and my companions.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> In all this I have given you an example that by such work we must support the weak, remembering the words of the Lord Jesus, for he himself said, 'It is more blessed to give than to receive.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> When he had finished speaking, he knelt down with them all and prayed.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> There was much weeping among them all; they embraced Paul and kissed him,</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> grieving especially because of what he had said, that they would not see him again. Then they brought him to the ship.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"21\">\r\n\t\t\t<VERS vnumber=\"1\"> When we had parted from them and set sail, we came by a straight course to Cos, and the next day to Rhodes, and from there to Patara. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> When we found a ship bound for Phoenicia, we went on board and set sail.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> We came in sight of Cyprus; and leaving it on our left, we sailed to Syria and landed at Tyre, because the ship was to unload its cargo there.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> We looked up the disciples and stayed there for seven days. Through the Spirit they told Paul not to go on to Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> When our days there were ended, we left and proceeded on our journey; and all of them, with wives and children, escorted us outside the city. There we knelt down on the beach and prayed</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> and said farewell to one another. Then we went on board the ship, and they returned home.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> When we had finished the voyage from Tyre, we arrived at Ptolemais; and we greeted the believers and stayed with them for one day. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The next day we left and came to Caesarea; and we went into the house of Philip the evangelist, one of the seven, and stayed with him.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> He had four unmarried daughters who had the gift of prophecy. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> While we were staying there for several days, a prophet named Agabus came down from Judea.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> He came to us and took Paul's belt, bound his own feet and hands with it, and said, \"Thus says the Holy Spirit, 'This is the way the Jews in Jerusalem will bind the man who owns this belt and will hand him over to the Gentiles.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> When we heard this, we and the people there urged him not to go up to Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then Paul answered, \"What are you doing, weeping and breaking my heart? For I am ready not only to be bound but even to die in Jerusalem for the name of the Lord Jesus.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Since he would not be persuaded, we remained silent except to say, \"The Lord's will be done.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> After these days we got ready and started to go up to Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Some of the disciples from Caesarea also came along and brought us to the house of Mnason of Cyprus, an early disciple, with whom we were to stay.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> When we arrived in Jerusalem, the brothers welcomed us warmly.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The next day Paul went with us to visit James; and all the elders were present.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> After greeting them, he related one by one the things that God had done among the Gentiles through his ministry.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> When they heard it, they praised God. Then they said to him, \"You see, brother, how many thousands of believers there are among the Jews, and they are all zealous for the law.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> They have been told about you that you teach all the Jews living among the Gentiles to forsake Moses, and that you tell them not to circumcise their children or observe the customs.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> What then is to be done? They will certainly hear that you have come.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> So do what we tell you. We have four men who are under a vow.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Join these men, go through the rite of purification with them, and pay for the shaving of their heads. Thus all will know that there is nothing in what they have been told about you, but that you yourself observe and guard the law.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> But as for the Gentiles who have become believers, we have sent a letter with our judgment that they should abstain from what has been sacrificed to idols and from blood and from what is strangled and from fornication.\" </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Then Paul took the men, and the next day, having purified himself, he entered the temple with them, making public the completion of the days of purification when the sacrifice would be made for each of them.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> When the seven days were almost completed, the Jews from Asia, who had seen him in the temple, stirred up the whole crowd. They seized him,</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> shouting, \"Fellow Israelites, help! This is the man who is teaching everyone everywhere against our people, our law, and this place; more than that, he has actually brought Greeks into the temple and has defiled this holy place.\"</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> For they had previously seen Trophimus the Ephesian with him in the city, and they supposed that Paul had brought him into the temple.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Then all the city was aroused, and the people rushed together. They seized Paul and dragged him out of the temple, and immediately the doors were shut.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> While they were trying to kill him, word came to the tribune of the cohort that all Jerusalem was in an uproar.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Immediately he took soldiers and centurions and ran down to them. When they saw the tribune and the soldiers, they stopped beating Paul.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Then the tribune came, arrested him, and ordered him to be bound with two chains; he inquired who he was and what he had done.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Some in the crowd shouted one thing, some another; and as he could not learn the facts because of the uproar, he ordered him to be brought into the barracks.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> When Paul came to the steps, the violence of the mob was so great that he had to be carried by the soldiers. </VERS>\r\n\t\t\t<VERS vnumber=\"36\"> The crowd that followed kept shouting, \"Away with him!\"</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Just as Paul was about to be brought into the barracks, he said to the tribune, \"May I say something to you?\" The tribune replied, \"Do you know Greek? </VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Then you are not the Egyptian who recently stirred up a revolt and led the four thousand assassins out into the wilderness?\"</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> Paul replied, \"I am a Jew, from Tarsus in Cilicia, a citizen of an important city; I beg you, let me speak to the people.\"</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> When he had given him permission, Paul stood on the steps and motioned to the people for silence; and when there was a great hush, he addressed them in the Hebrew language, saying: </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"22\">\r\n\t\t\t<VERS vnumber=\"1\"> \"Brothers and fathers, listen to the defense that I now make before you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> When they heard him addressing them in Hebrew, they became even more quiet. Then he said: </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> \"I am a Jew, born in Tarsus in Cilicia, but brought up in this city at the feet of Gamaliel, educated strictly according to our ancestral law, being zealous for God, just as all of you are today.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> I persecuted this Way up to the point of death by binding both men and women and putting them in prison,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> as the high priest and the whole council of elders can testify about me. From them I also received letters to the brothers in Damascus, and I went there in order to bind those who were there and to bring them back to Jerusalem for punishment.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> \"While I was on my way and approaching Damascus, about noon a great light from heaven suddenly shone about me.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> I fell to the ground and heard a voice saying to me, 'Saul, Saul, why are you persecuting me?'</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> I answered, 'Who are you, Lord?' Then he said to me, 'I am Jesus of Nazareth whom you are persecuting.' </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Now those who were with me saw the light but did not hear the voice of the one who was speaking to me.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> I asked, 'What am I to do, Lord?' The Lord said to me, 'Get up and go to Damascus; there you will be told everything that has been assigned to you to do.'</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Since I could not see because of the brightness of that light, those who were with me took my hand and led me to Damascus.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> \"A certain Ananias, who was a devout man according to the law and well spoken of by all the Jews living there,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> came to me; and standing beside me, he said, 'Brother Saul, regain your sight!' In that very hour I regained my sight and saw him.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then he said, 'The God of our ancestors has chosen you to know his will, to see the Righteous One and to hear his own voice;</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> for you will be his witness to all the world of what you have seen and heard.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> And now why do you delay? Get up, be baptized, and have your sins washed away, calling on his name.'</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> \"After I had returned to Jerusalem and while I was praying in the temple, I fell into a trance</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> and saw Jesus saying to me, 'Hurry and get out of Jerusalem quickly, because they will not accept your testimony about me.' </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> And I said, 'Lord, they themselves know that in every synagogue I imprisoned and beat those who believed in you.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> And while the blood of your witness Stephen was shed, I myself was standing by, approving and keeping the coats of those who killed him.'</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then he said to me, 'Go, for I will send you far away to the Gentiles.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Up to this point they listened to him, but then they shouted, \"Away with such a fellow from the earth! For he should not be allowed to live.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> And while they were shouting, throwing off their cloaks, and tossing dust into the air,</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> the tribune directed that he was to be brought into the barracks, and ordered him to be examined by flogging, to find out the reason for this outcry against him.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> But when they had tied him up with thongs, Paul said to the centurion who was standing by, \"Is it legal for you to flog a Roman citizen who is uncondemned?\" </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> When the centurion heard that, he went to the tribune and said to him, \"What are you about to do? This man is a Roman citizen.\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> The tribune came and asked Paul, \"Tell me, are you a Roman citizen?\" And he said, \"Yes.\" </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> The tribune answered, \"It cost me a large sum of money to get my citizenship.\" Paul said, \"But I was born a citizen.\"</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Immediately those who were about to examine him drew back from him; and the tribune also was afraid, for he realized that Paul was a Roman citizen and that he had bound him.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Since he wanted to find out what Paul was being accused of by the Jews, the next day he released him and ordered the chief priests and the entire council to meet. He brought Paul down and had him stand before them. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"23\">\r\n\t\t\t<VERS vnumber=\"1\"> While Paul was looking intently at the council he said, \"Brothers, up to this day I have lived my life with a clear conscience before God.\" </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Then the high priest Ananias ordered those standing near him to strike him on the mouth.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> At this Paul said to him, \"God will strike you, you whitewashed wall! Are you sitting there to judge me according to the law, and yet in violation of the law you order me to be struck?\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Those standing nearby said, \"Do you dare to insult God's high priest?\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> And Paul said, \"I did not realize, brothers, that he was high priest; for it is written, 'You shall not speak evil of a leader of your people.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> When Paul noticed that some were Sadducees and others were Pharisees, he called out in the council, \"Brothers, I am a Pharisee, a son of Pharisees. I am on trial concerning the hope of the resurrection of the dead.\" </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> When he said this, a dissension began between the Pharisees and the Sadducees, and the assembly was divided.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> (The Sadducees say that there is no resurrection, or angel, or spirit; but the Pharisees acknowledge all three.)</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then a great clamor arose, and certain scribes of the Pharisees' group stood up and contended, \"We find nothing wrong with this man. What if a spirit or an angel has spoken to him?\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> When the dissension became violent, the tribune, fearing that they would tear Paul to pieces, ordered the soldiers to go down, take him by force, and bring him into the barracks.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> That night the Lord stood near him and said, \"Keep up your courage! For just as you have testified for me in Jerusalem, so you must bear witness also in Rome.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> In the morning the Jews joined in a conspiracy and bound themselves by an oath neither to eat nor drink until they had killed Paul.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> There were more than forty who joined in this conspiracy.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> They went to the chief priests and elders and said, \"We have strictly bound ourselves by an oath to taste no food until we have killed Paul.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Now then, you and the council must notify the tribune to bring him down to you, on the pretext that you want to make a more thorough examination of his case. And we are ready to do away with him before he arrives.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Now the son of Paul's sister heard about the ambush; so he went and gained entrance to the barracks and told Paul.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Paul called one of the centurions and said, \"Take this young man to the tribune, for he has something to report to him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> So he took him, brought him to the tribune, and said, \"The prisoner Paul called me and asked me to bring this young man to you; he has something to tell you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The tribune took him by the hand, drew him aside privately, and asked, \"What is it that you have to report to me?\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> He answered, \"The Jews have agreed to ask you to bring Paul down to the council tomorrow, as though they were going to inquire more thoroughly into his case.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> But do not be persuaded by them, for more than forty of their men are lying in ambush for him. They have bound themselves by an oath neither to eat nor drink until they kill him. They are ready now and are waiting for your consent.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> So the tribune dismissed the young man, ordering him, \"Tell no one that you have informed me of this.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Then he summoned two of the centurions and said, \"Get ready to leave by nine o'clock tonight for Caesarea with two hundred soldiers, seventy horsemen, and two hundred spearmen.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Also provide mounts for Paul to ride, and take him safely to Felix the governor.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> He wrote a letter to this effect:</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> \"Claudius Lysias to his Excellency the governor Felix, greetings.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> This man was seized by the Jews and was about to be killed by them, but when I had learned that he was a Roman citizen, I came with the guard and rescued him.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Since I wanted to know the charge for which they accused him, I had him brought to their council.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> I found that he was accused concerning questions of their law, but was charged with nothing deserving death or imprisonment.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> When I was informed that there would be a plot against the man, I sent him to you at once, ordering his accusers also to state before you what they have against him. \" </VERS>\r\n\t\t\t<VERS vnumber=\"31\"> So the soldiers, according to their instructions, took Paul and brought him during the night to Antipatris.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> The next day they let the horsemen go on with him, while they returned to the barracks.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> When they came to Caesarea and delivered the letter to the governor, they presented Paul also before him.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> On reading the letter, he asked what province he belonged to, and when he learned that he was from Cilicia,</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> he said, \"I will give you a hearing when your accusers arrive.\" Then he ordered that he be kept under guard in Herod's headquarters. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"24\">\r\n\t\t\t<VERS vnumber=\"1\"> Five days later the high priest Ananias came down with some elders and an attorney, a certain Tertullus, and they reported their case against Paul to the governor.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> When Paul had been summoned, Tertullus began to accuse him, saying: \"Your Excellency, because of you we have long enjoyed peace, and reforms have been made for this people because of your foresight. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> We welcome this in every way and everywhere with utmost gratitude.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But, to detain you no further, I beg you to hear us briefly with your customary graciousness.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> We have, in fact, found this man a pestilent fellow, an agitator among all the Jews throughout the world, and a ringleader of the sect of the Nazarenes. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> He even tried to profane the temple, and so we seized him. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> By examining him yourself you will be able to learn from him concerning everything of which we accuse him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The Jews also joined in the charge by asserting that all this was true.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> When the governor motioned to him to speak, Paul replied: \"I cheerfully make my defense, knowing that for many years you have been a judge over this nation.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> As you can find out, it is not more than twelve days since I went up to worship in Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> They did not find me disputing with anyone in the temple or stirring up a crowd either in the synagogues or throughout the city.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Neither can they prove to you the charge that they now bring against me.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But this I admit to you, that according to the Way, which they call a sect, I worship the God of our ancestors, believing everything laid down according to the law or written in the prophets.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> I have a hope in God-- a hope that they themselves also accept-- that there will be a resurrection of both the righteous and the unrighteous.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Therefore I do my best always to have a clear conscience toward God and all people.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Now after some years I came to bring alms to my nation and to offer sacrifices.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> While I was doing this, they found me in the temple, completing the rite of purification, without any crowd or disturbance.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> But there were some Jews from Asia-- they ought to be here before you to make an accusation, if they have anything against me.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Or let these men here tell what crime they had found when I stood before the council,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> unless it was this one sentence that I called out while standing before them, 'It is about the resurrection of the dead that I am on trial before you today.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> But Felix, who was rather well informed about the Way, adjourned the hearing with the comment, \"When Lysias the tribune comes down, I will decide your case.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Then he ordered the centurion to keep him in custody, but to let him have some liberty and not to prevent any of his friends from taking care of his needs.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Some days later when Felix came with his wife Drusilla, who was Jewish, he sent for Paul and heard him speak concerning faith in Christ Jesus.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> And as he discussed justice, self-control, and the coming judgment, Felix became frightened and said, \"Go away for the present; when I have an opportunity, I will send for you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> At the same time he hoped that money would be given him by Paul, and for that reason he used to send for him very often and converse with him.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> After two years had passed, Felix was succeeded by Porcius Festus; and since he wanted to grant the Jews a favor, Felix left Paul in prison.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"25\">\r\n\t\t\t<VERS vnumber=\"1\"> Three days after Festus had arrived in the province, he went up from Caesarea to Jerusalem</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> where the chief priests and the leaders of the Jews gave him a report against Paul. They appealed to him</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> and requested, as a favor to them against Paul, to have him transferred to Jerusalem. They were, in fact, planning an ambush to kill him along the way. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Festus replied that Paul was being kept at Caesarea, and that he himself intended to go there shortly.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> \"So,\" he said, \"let those of you who have the authority come down with me, and if there is anything wrong about the man, let them accuse him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> After he had stayed among them not more than eight or ten days, he went down to Caesarea; the next day he took his seat on the tribunal and ordered Paul to be brought.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> When he arrived, the Jews who had gone down from Jerusalem surrounded him, bringing many serious charges against him, which they could not prove.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Paul said in his defense, \"I have in no way committed an offense against the law of the Jews, or against the temple, or against the emperor.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> But Festus, wishing to do the Jews a favor, asked Paul, \"Do you wish to go up to Jerusalem and be tried there before me on these charges?\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Paul said, \"I am appealing to the emperor's tribunal; this is where I should be tried. I have done no wrong to the Jews, as you very well know.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Now if I am in the wrong and have committed something for which I deserve to die, I am not trying to escape death; but if there is nothing to their charges against me, no one can turn me over to them. I appeal to the emperor.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then Festus, after he had conferred with his council, replied, \"You have appealed to the emperor; to the emperor you will go.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> After several days had passed, King Agrippa and Bernice arrived at Caesarea to welcome Festus.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Since they were staying there several days, Festus laid Paul's case before the king, saying, \"There is a man here who was left in prison by Felix.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> When I was in Jerusalem, the chief priests and the elders of the Jews informed me about him and asked for a sentence against him.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> I told them that it was not the custom of the Romans to hand over anyone before the accused had met the accusers face to face and had been given an opportunity to make a defense against the charge.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> So when they met here, I lost no time, but on the next day took my seat on the tribunal and ordered the man to be brought.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> When the accusers stood up, they did not charge him with any of the crimes that I was expecting. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Instead they had certain points of disagreement with him about their own religion and about a certain Jesus, who had died, but whom Paul asserted to be alive.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Since I was at a loss how to investigate these questions, I asked whether he wished to go to Jerusalem and be tried there on these charges. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> But when Paul had appealed to be kept in custody for the decision of his Imperial Majesty, I ordered him to be held until I could send him to the emperor.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Agrippa said to Festus, \"I would like to hear the man myself.\" \"Tomorrow,\" he said, \"you will hear him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> So on the next day Agrippa and Bernice came with great pomp, and they entered the audience hall with the military tribunes and the prominent men of the city. Then Festus gave the order and Paul was brought in.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> And Festus said, \"King Agrippa and all here present with us, you see this man about whom the whole Jewish community petitioned me, both in Jerusalem and here, shouting that he ought not to live any longer.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> But I found that he had done nothing deserving death; and when he appealed to his Imperial Majesty, I decided to send him.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> But I have nothing definite to write to our sovereign about him. Therefore I have brought him before all of you, and especially before you, King Agrippa, so that, after we have examined him, I may have something to write--</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> for it seems to me unreasonable to send a prisoner without indicating the charges against him.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"26\">\r\n\t\t\t<VERS vnumber=\"1\"> Agrippa said to Paul, \"You have permission to speak for yourself.\" Then Paul stretched out his hand and began to defend himself:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"I consider myself fortunate that it is before you, King Agrippa, I am to make my defense today against all the accusations of the Jews,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> because you are especially familiar with all the customs and controversies of the Jews; therefore I beg of you to listen to me patiently.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> \"All the Jews know my way of life from my youth, a life spent from the beginning among my own people and in Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> They have known for a long time, if they are willing to testify, that I have belonged to the strictest sect of our religion and lived as a Pharisee.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And now I stand here on trial on account of my hope in the promise made by God to our ancestors,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> a promise that our twelve tribes hope to attain, as they earnestly worship day and night. It is for this hope, your Excellency, that I am accused by Jews! </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Why is it thought incredible by any of you that God raises the dead?</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> \"Indeed, I myself was convinced that I ought to do many things against the name of Jesus of Nazareth. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And that is what I did in Jerusalem; with authority received from the chief priests, I not only locked up many of the saints in prison, but I also cast my vote against them when they were being condemned to death.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> By punishing them often in all the synagogues I tried to force them to blaspheme; and since I was so furiously enraged at them, I pursued them even to foreign cities.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> \"With this in mind, I was traveling to Damascus with the authority and commission of the chief priests,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> when at midday along the road, your Excellency, I saw a light from heaven, brighter than the sun, shining around me and my companions. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> When we had all fallen to the ground, I heard a voice saying to me in the Hebrew language, 'Saul, Saul, why are you persecuting me? It hurts you to kick against the goads.' </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> I asked, 'Who are you, Lord?' The Lord answered, 'I am Jesus whom you are persecuting.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> But get up and stand on your feet; for I have appeared to you for this purpose, to appoint you to serve and testify to the things in which you have seen me and to those in which I will appear to you. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> I will rescue you from your people and from the Gentiles-- to whom I am sending you</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> to open their eyes so that they may turn from darkness to light and from the power of Satan to God, so that they may receive forgiveness of sins and a place among those who are sanctified by faith in me.'</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> \"After that, King Agrippa, I was not disobedient to the heavenly vision,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> but declared first to those in Damascus, then in Jerusalem and throughout the countryside of Judea, and also to the Gentiles, that they should repent and turn to God and do deeds consistent with repentance.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> For this reason the Jews seized me in the temple and tried to kill me.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> To this day I have had help from God, and so I stand here, testifying to both small and great, saying nothing but what the prophets and Moses said would take place:</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> that the Messiah must suffer, and that, by being the first to rise from the dead, he would proclaim light both to our people and to the Gentiles.\" </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> While he was making this defense, Festus exclaimed, \"You are out of your mind, Paul! Too much learning is driving you insane!\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> But Paul said, \"I am not out of my mind, most excellent Festus, but I am speaking the sober truth.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Indeed the king knows about these things, and to him I speak freely; for I am certain that none of these things has escaped his notice, for this was not done in a corner.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> King Agrippa, do you believe the prophets? I know that you believe.\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Agrippa said to Paul, \"Are you so quickly persuading me to become a Christian?\" </VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Paul replied, \"Whether quickly or not, I pray to God that not only you but also all who are listening to me today might become such as I am-- except for these chains.\"</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Then the king got up, and with him the governor and Bernice and those who had been seated with them;</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> and as they were leaving, they said to one another, \"This man is doing nothing to deserve death or imprisonment.\"</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Agrippa said to Festus, \"This man could have been set free if he had not appealed to the emperor.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"27\">\r\n\t\t\t<VERS vnumber=\"1\"> When it was decided that we were to sail for Italy, they transferred Paul and some other prisoners to a centurion of the Augustan Cohort, named Julius.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Embarking on a ship of Adramyttium that was about to set sail to the ports along the coast of Asia, we put to sea, accompanied by Aristarchus, a Macedonian from Thessalonica.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The next day we put in at Sidon; and Julius treated Paul kindly, and allowed him to go to his friends to be cared for.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Putting out to sea from there, we sailed under the lee of Cyprus, because the winds were against us.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> After we had sailed across the sea that is off Cilicia and Pamphylia, we came to Myra in Lycia.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> There the centurion found an Alexandrian ship bound for Italy and put us on board.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> We sailed slowly for a number of days and arrived with difficulty off Cnidus, and as the wind was against us, we sailed under the lee of Crete off Salmone.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Sailing past it with difficulty, we came to a place called Fair Havens, near the city of Lasea.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Since much time had been lost and sailing was now dangerous, because even the Fast had already gone by, Paul advised them,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> saying, \"Sirs, I can see that the voyage will be with danger and much heavy loss, not only of the cargo and the ship, but also of our lives.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But the centurion paid more attention to the pilot and to the owner of the ship than to what Paul said.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Since the harbor was not suitable for spending the winter, the majority was in favor of putting to sea from there, on the chance that somehow they could reach Phoenix, where they could spend the winter. It was a harbor of Crete, facing southwest and northwest.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> When a moderate south wind began to blow, they thought they could achieve their purpose; so they weighed anchor and began to sail past Crete, close to the shore.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But soon a violent wind, called the northeaster, rushed down from Crete. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Since the ship was caught and could not be turned head-on into the wind, we gave way to it and were driven.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> By running under the lee of a small island called Cauda we were scarcely able to get the ship's boat under control. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> After hoisting it up they took measures to undergird the ship; then, fearing that they would run on the Syrtis, they lowered the sea anchor and so were driven.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> We were being pounded by the storm so violently that on the next day they began to throw the cargo overboard,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> and on the third day with their own hands they threw the ship's tackle overboard.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> When neither sun nor stars appeared for many days, and no small tempest raged, all hope of our being saved was at last abandoned.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Since they had been without food for a long time, Paul then stood up among them and said, \"Men, you should have listened to me and not have set sail from Crete and thereby avoided this damage and loss.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> I urge you now to keep up your courage, for there will be no loss of life among you, but only of the ship.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> For last night there stood by me an angel of the God to whom I belong and whom I worship,</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> and he said, 'Do not be afraid, Paul; you must stand before the emperor; and indeed, God has granted safety to all those who are sailing with you.'</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> So keep up your courage, men, for I have faith in God that it will be exactly as I have been told.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> But we will have to run aground on some island.\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> When the fourteenth night had come, as we were drifting across the sea of Adria, about midnight the sailors suspected that they were nearing land.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> So they took soundings and found twenty fathoms; a little farther on they took soundings again and found fifteen fathoms.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Fearing that we might run on the rocks, they let down four anchors from the stern and prayed for day to come.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> But when the sailors tried to escape from the ship and had lowered the boat into the sea, on the pretext of putting out anchors from the bow,</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Paul said to the centurion and the soldiers, \"Unless these men stay in the ship, you cannot be saved.\"</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Then the soldiers cut away the ropes of the boat and set it adrift.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Just before daybreak, Paul urged all of them to take some food, saying, \"Today is the fourteenth day that you have been in suspense and remaining without food, having eaten nothing.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Therefore I urge you to take some food, for it will help you survive; for none of you will lose a hair from your heads.\"</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> After he had said this, he took bread; and giving thanks to God in the presence of all, he broke it and began to eat.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Then all of them were encouraged and took food for themselves.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> (We were in all two hundred seventy-six persons in the ship.) </VERS>\r\n\t\t\t<VERS vnumber=\"38\"> After they had satisfied their hunger, they lightened the ship by throwing the wheat into the sea.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> In the morning they did not recognize the land, but they noticed a bay with a beach, on which they planned to run the ship ashore, if they could.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> So they cast off the anchors and left them in the sea. At the same time they loosened the ropes that tied the steering-oars; then hoisting the foresail to the wind, they made for the beach.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> But striking a reef, they ran the ship aground; the bow stuck and remained immovable, but the stern was being broken up by the force of the waves. </VERS>\r\n\t\t\t<VERS vnumber=\"42\"> The soldiers' plan was to kill the prisoners, so that none might swim away and escape;</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> but the centurion, wishing to save Paul, kept them from carrying out their plan. He ordered those who could swim to jump overboard first and make for the land,</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> and the rest to follow, some on planks and others on pieces of the ship. And so it was that all were brought safely to land.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"28\">\r\n\t\t\t<VERS vnumber=\"1\"> After we had reached safety, we then learned that the island was called Malta.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The natives showed us unusual kindness. Since it had begun to rain and was cold, they kindled a fire and welcomed all of us around it.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Paul had gathered a bundle of brushwood and was putting it on the fire, when a viper, driven out by the heat, fastened itself on his hand.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> When the natives saw the creature hanging from his hand, they said to one another, \"This man must be a murderer; though he has escaped from the sea, justice has not allowed him to live.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> He, however, shook off the creature into the fire and suffered no harm.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> They were expecting him to swell up or drop dead, but after they had waited a long time and saw that nothing unusual had happened to him, they changed their minds and began to say that he was a god.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Now in the neighborhood of that place were lands belonging to the leading man of the island, named Publius, who received us and entertained us hospitably for three days.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> It so happened that the father of Publius lay sick in bed with fever and dysentery. Paul visited him and cured him by praying and putting his hands on him.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> After this happened, the rest of the people on the island who had diseases also came and were cured.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> They bestowed many honors on us, and when we were about to sail, they put on board all the provisions we needed.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Three months later we set sail on a ship that had wintered at the island, an Alexandrian ship with the Twin Brothers as its figurehead.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> We put in at Syracuse and stayed there for three days;</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> then we weighed anchor and came to Rhegium. After one day there a south wind sprang up, and on the second day we came to Puteoli.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> There we found believers and were invited to stay with them for seven days. And so we came to Rome. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The believers from there, when they heard of us, came as far as the Forum of Appius and Three Taverns to meet us. On seeing them, Paul thanked God and took courage. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> When we came into Rome, Paul was allowed to live by himself, with the soldier who was guarding him.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Three days later he called together the local leaders of the Jews. When they had assembled, he said to them, \"Brothers, though I had done nothing against our people or the customs of our ancestors, yet I was arrested in Jerusalem and handed over to the Romans.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> When they had examined me, the Romans wanted to release me, because there was no reason for the death penalty in my case. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> But when the Jews objected, I was compelled to appeal to the emperor-- even though I had no charge to bring against my nation.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> For this reason therefore I have asked to see you and speak with you, since it is for the sake of the hope of Israel that I am bound with this chain.\" </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> They replied, \"We have received no letters from Judea about you, and none of the brothers coming here has reported or spoken anything evil about you.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> But we would like to hear from you what you think, for with regard to this sect we know that everywhere it is spoken against.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> After they had set a day to meet with him, they came to him at his lodgings in great numbers. From morning until evening he explained the matter to them, testifying to the kingdom of God and trying to convince them about Jesus both from the law of Moses and from the prophets.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Some were convinced by what he had said, while others refused to believe.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> So they disagreed with each other; and as they were leaving, Paul made one further statement: \"The Holy Spirit was right in saying to your ancestors through the prophet Isaiah,</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> 'Go to this people and say, You will indeed listen, but never understand, and you will indeed look, but never perceive.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> For this people's heart has grown dull, and their ears are hard of hearing, and they have shut their eyes; so that they might not look with their eyes, and listen with their ears, and understand with their heart and turn-- and I would heal them.'</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Let it be known to you then that this salvation of God has been sent to the Gentiles; they will listen.\" </VERS>\r\n\t\t\t<VERS vnumber=\"29\"> </VERS>\r\n\t\t\t<VERS vnumber=\"30\"> He lived there two whole years at his own expense and welcomed all who came to him, </VERS>\r\n\t\t\t<VERS vnumber=\"31\"> proclaiming the kingdom of God and teaching about the Lord Jesus Christ with all boldness and without hindrance.</VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"45\" bname=\"Romans\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> Paul, a servant of Jesus Christ, called to be an apostle, set apart for the gospel of God, </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> which he promised beforehand through his prophets in the holy scriptures,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> the gospel concerning his Son, who was descended from David according to the flesh</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> and was declared to be Son of God with power according to the spirit of holiness by resurrection from the dead, Jesus Christ our Lord, </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> through whom we have received grace and apostleship to bring about the obedience of faith among all the Gentiles for the sake of his name,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> including yourselves who are called to belong to Jesus Christ,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> To all God's beloved in Rome, who are called to be saints: Grace to you and peace from God our Father and the Lord Jesus Christ.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> First, I thank my God through Jesus Christ for all of you, because your faith is proclaimed throughout the world.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> For God, whom I serve with my spirit by announcing the gospel of his Son, is my witness that without ceasing I remember you always in my prayers, </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> asking that by God's will I may somehow at last succeed in coming to you.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> For I am longing to see you so that I may share with you some spiritual gift to strengthen you--</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> or rather so that we may be mutually encouraged by each other's faith, both yours and mine.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> I want you to know, brothers and sisters, that I have often intended to come to you (but thus far have been prevented), in order that I may reap some harvest among you as I have among the rest of the Gentiles. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> I am a debtor both to Greeks and to barbarians, both to the wise and to the foolish</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> -- hence my eagerness to proclaim the gospel to you also who are in Rome.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> For I am not ashamed of the gospel; it is the power of God for salvation to everyone who has faith, to the Jew first and also to the Greek.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> For in it the righteousness of God is revealed through faith for faith; as it is written, \"The one who is righteous will live by faith.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> For the wrath of God is revealed from heaven against all ungodliness and wickedness of those who by their wickedness suppress the truth.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> For what can be known about God is plain to them, because God has shown it to them.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Ever since the creation of the world his eternal power and divine nature, invisible though they are, have been understood and seen through the things he has made. So they are without excuse;</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> for though they knew God, they did not honor him as God or give thanks to him, but they became futile in their thinking, and their senseless minds were darkened.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Claiming to be wise, they became fools;</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> and they exchanged the glory of the immortal God for images resembling a mortal human being or birds or four-footed animals or reptiles.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Therefore God gave them up in the lusts of their hearts to impurity, to the degrading of their bodies among themselves,</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> because they exchanged the truth about God for a lie and worshiped and served the creature rather than the Creator, who is blessed forever! Amen.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> For this reason God gave them up to degrading passions. Their women exchanged natural intercourse for unnatural,</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> and in the same way also the men, giving up natural intercourse with women, were consumed with passion for one another. Men committed shameless acts with men and received in their own persons the due penalty for their error.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> And since they did not see fit to acknowledge God, God gave them up to a debased mind and to things that should not be done.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> They were filled with every kind of wickedness, evil, covetousness, malice. Full of envy, murder, strife, deceit, craftiness, they are gossips,</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> slanderers, God-haters, insolent, haughty, boastful, inventors of evil, rebellious toward parents, </VERS>\r\n\t\t\t<VERS vnumber=\"31\"> foolish, faithless, heartless, ruthless.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> They know God's decree, that those who practice such things deserve to die-- yet they not only do them but even applaud others who practice them.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> Therefore you have no excuse, whoever you are, when you judge others; for in passing judgment on another you condemn yourself, because you, the judge, are doing the very same things.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> You say, \"We know that God's judgment on those who do such things is in accordance with truth.\" </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Do you imagine, whoever you are, that when you judge those who do such things and yet do them yourself, you will escape the judgment of God?</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Or do you despise the riches of his kindness and forbearance and patience? Do you not realize that God's kindness is meant to lead you to repentance?</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> But by your hard and impenitent heart you are storing up wrath for yourself on the day of wrath, when God's righteous judgment will be revealed.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For he will repay according to each one's deeds:</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> to those who by patiently doing good seek for glory and honor and immortality, he will give eternal life;</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> while for those who are self-seeking and who obey not the truth but wickedness, there will be wrath and fury.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> There will be anguish and distress for everyone who does evil, the Jew first and also the Greek,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> but glory and honor and peace for everyone who does good, the Jew first and also the Greek.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> For God shows no partiality.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> All who have sinned apart from the law will also perish apart from the law, and all who have sinned under the law will be judged by the law.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> For it is not the hearers of the law who are righteous in God's sight, but the doers of the law who will be justified.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> When Gentiles, who do not possess the law, do instinctively what the law requires, these, though not having the law, are a law to themselves.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> They show that what the law requires is written on their hearts, to which their own conscience also bears witness; and their conflicting thoughts will accuse or perhaps excuse them</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> on the day when, according to my gospel, God, through Jesus Christ, will judge the secret thoughts of all.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> But if you call yourself a Jew and rely on the law and boast of your relation to God</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> and know his will and determine what is best because you are instructed in the law,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> and if you are sure that you are a guide to the blind, a light to those who are in darkness,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> a corrector of the foolish, a teacher of children, having in the law the embodiment of knowledge and truth,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> you, then, that teach others, will you not teach yourself? While you preach against stealing, do you steal?</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> You that forbid adultery, do you commit adultery? You that abhor idols, do you rob temples?</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> You that boast in the law, do you dishonor God by breaking the law?</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> For, as it is written, \"The name of God is blasphemed among the Gentiles because of you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Circumcision indeed is of value if you obey the law; but if you break the law, your circumcision has become uncircumcision.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> So, if those who are uncircumcised keep the requirements of the law, will not their uncircumcision be regarded as circumcision?</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Then those who are physically uncircumcised but keep the law will condemn you that have the written code and circumcision but break the law.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> For a person is not a Jew who is one outwardly, nor is true circumcision something external and physical.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Rather, a person is a Jew who is one inwardly, and real circumcision is a matter of the heart-- it is spiritual and not literal. Such a person receives praise not from others but from God.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> Then what advantage has the Jew? Or what is the value of circumcision?</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Much, in every way. For in the first place the Jews were entrusted with the oracles of God. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> What if some were unfaithful? Will their faithlessness nullify the faithfulness of God?</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> By no means! Although everyone is a liar, let God be proved true, as it is written, \"So that you may be justified in your words, and prevail in your judging.\" </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> But if our injustice serves to confirm the justice of God, what should we say? That God is unjust to inflict wrath on us? (I speak in a human way.)</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> By no means! For then how could God judge the world?</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But if through my falsehood God's truthfulness abounds to his glory, why am I still being condemned as a sinner?</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And why not say (as some people slander us by saying that we say), \"Let us do evil so that good may come\"? Their condemnation is deserved!</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> What then? Are we any better off? No, not at all; for we have already charged that all, both Jews and Greeks, are under the power of sin, </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> as it is written: \"There is no one who is righteous, not even one;</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> there is no one who has understanding, there is no one who seeks God.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> All have turned aside, together they have become worthless; there is no one who shows kindness, there is not even one.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> \"Their throats are opened graves; they use their tongues to deceive.\" \"The venom of vipers is under their lips.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> \"Their mouths are full of cursing and bitterness.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> \"Their feet are swift to shed blood;</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> ruin and misery are in their paths,</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> and the way of peace they have not known.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> \"There is no fear of God before their eyes.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Now we know that whatever the law says, it speaks to those who are under the law, so that every mouth may be silenced, and the whole world may be held accountable to God.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> For \"no human being will be justified in his sight\" by deeds prescribed by the law, for through the law comes the knowledge of sin.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> But now, apart from law, the righteousness of God has been disclosed, and is attested by the law and the prophets,</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> the righteousness of God through faith in Jesus Christ for all who believe. For there is no distinction, </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> since all have sinned and fall short of the glory of God;</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> they are now justified by his grace as a gift, through the redemption that is in Christ Jesus,</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> whom God put forward as a sacrifice of atonement by his blood, effective through faith. He did this to show his righteousness, because in his divine forbearance he had passed over the sins previously committed; </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> it was to prove at the present time that he himself is righteous and that he justifies the one who has faith in Jesus. </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Then what becomes of boasting? It is excluded. By what law? By that of works? No, but by the law of faith.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> For we hold that a person is justified by faith apart from works prescribed by the law.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Or is God the God of Jews only? Is he not the God of Gentiles also? Yes, of Gentiles also,</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> since God is one; and he will justify the circumcised on the ground of faith and the uncircumcised through that same faith.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Do we then overthrow the law by this faith? By no means! On the contrary, we uphold the law.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> What then are we to say was gained by Abraham, our ancestor according to the flesh? </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> For if Abraham was justified by works, he has something to boast about, but not before God.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For what does the scripture say? \"Abraham believed God, and it was reckoned to him as righteousness.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Now to one who works, wages are not reckoned as a gift but as something due.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> But to one who without works trusts him who justifies the ungodly, such faith is reckoned as righteousness.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> So also David speaks of the blessedness of those to whom God reckons righteousness apart from works:</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> \"Blessed are those whose iniquities are forgiven, and whose sins are covered;</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> blessed is the one against whom the Lord will not reckon sin.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Is this blessedness, then, pronounced only on the circumcised, or also on the uncircumcised? We say, \"Faith was reckoned to Abraham as righteousness.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> How then was it reckoned to him? Was it before or after he had been circumcised? It was not after, but before he was circumcised.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> He received the sign of circumcision as a seal of the righteousness that he had by faith while he was still uncircumcised. The purpose was to make him the ancestor of all who believe without being circumcised and who thus have righteousness reckoned to them,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> and likewise the ancestor of the circumcised who are not only circumcised but who also follow the example of the faith that our ancestor Abraham had before he was circumcised.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> For the promise that he would inherit the world did not come to Abraham or to his descendants through the law but through the righteousness of faith.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> If it is the adherents of the law who are to be the heirs, faith is null and the promise is void.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> For the law brings wrath; but where there is no law, neither is there violation.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> For this reason it depends on faith, in order that the promise may rest on grace and be guaranteed to all his descendants, not only to the adherents of the law but also to those who share the faith of Abraham (for he is the father of all of us,</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> as it is written, \"I have made you the father of many nations\")-- in the presence of the God in whom he believed, who gives life to the dead and calls into existence the things that do not exist.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Hoping against hope, he believed that he would become \"the father of many nations,\" according to what was said, \"So numerous shall your descendants be.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> He did not weaken in faith when he considered his own body, which was already as good as dead (for he was about a hundred years old), or when he considered the barrenness of Sarah's womb. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> No distrust made him waver concerning the promise of God, but he grew strong in his faith as he gave glory to God,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> being fully convinced that God was able to do what he had promised.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Therefore his faith \"was reckoned to him as righteousness.\" </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Now the words, \"it was reckoned to him,\" were written not for his sake alone,</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> but for ours also. It will be reckoned to us who believe in him who raised Jesus our Lord from the dead,</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> who was handed over to death for our trespasses and was raised for our justification.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"5\">\r\n\t\t\t<VERS vnumber=\"1\"> Therefore, since we are justified by faith, we have peace with God through our Lord Jesus Christ, </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> through whom we have obtained access to this grace in which we stand; and we boast in our hope of sharing the glory of God. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And not only that, but we also boast in our sufferings, knowing that suffering produces endurance, </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> and endurance produces character, and character produces hope,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> and hope does not disappoint us, because God's love has been poured into our hearts through the Holy Spirit that has been given to us.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For while we were still weak, at the right time Christ died for the ungodly.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Indeed, rarely will anyone die for a righteous person-- though perhaps for a good person someone might actually dare to die.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But God proves his love for us in that while we still were sinners Christ died for us.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Much more surely then, now that we have been justified by his blood, will we be saved through him from the wrath of God. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For if while we were enemies, we were reconciled to God through the death of his Son, much more surely, having been reconciled, will we be saved by his life.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But more than that, we even boast in God through our Lord Jesus Christ, through whom we have now received reconciliation.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Therefore, just as sin came into the world through one man, and death came through sin, and so death spread to all because all have sinned--</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> sin was indeed in the world before the law, but sin is not reckoned when there is no law.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Yet death exercised dominion from Adam to Moses, even over those whose sins were not like the transgression of Adam, who is a type of the one who was to come.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> But the free gift is not like the trespass. For if the many died through the one man's trespass, much more surely have the grace of God and the free gift in the grace of the one man, Jesus Christ, abounded for the many.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> And the free gift is not like the effect of the one man's sin. For the judgment following one trespass brought condemnation, but the free gift following many trespasses brings justification.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> If, because of the one man's trespass, death exercised dominion through that one, much more surely will those who receive the abundance of grace and the free gift of righteousness exercise dominion in life through the one man, Jesus Christ.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Therefore just as one man's trespass led to condemnation for all, so one man's act of righteousness leads to justification and life for all.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> For just as by the one man's disobedience the many were made sinners, so by the one man's obedience the many will be made righteous.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> But law came in, with the result that the trespass multiplied; but where sin increased, grace abounded all the more,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> so that, just as sin exercised dominion in death, so grace might also exercise dominion through justification leading to eternal life through Jesus Christ our Lord. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"6\">\r\n\t\t\t<VERS vnumber=\"1\"> What then are we to say? Should we continue in sin in order that grace may abound?</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> By no means! How can we who died to sin go on living in it?</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Do you not know that all of us who have been baptized into Christ Jesus were baptized into his death?</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Therefore we have been buried with him by baptism into death, so that, just as Christ was raised from the dead by the glory of the Father, so we too might walk in newness of life.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> For if we have been united with him in a death like his, we will certainly be united with him in a resurrection like his.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> We know that our old self was crucified with him so that the body of sin might be destroyed, and we might no longer be enslaved to sin.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> For whoever has died is freed from sin.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But if we have died with Christ, we believe that we will also live with him.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> We know that Christ, being raised from the dead, will never die again; death no longer has dominion over him.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The death he died, he died to sin, once for all; but the life he lives, he lives to God.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> So you also must consider yourselves dead to sin and alive to God in Christ Jesus.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Therefore, do not let sin exercise dominion in your mortal bodies, to make you obey their passions.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> No longer present your members to sin as instruments of wickedness, but present yourselves to God as those who have been brought from death to life, and present your members to God as instruments of righteousness. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> For sin will have no dominion over you, since you are not under law but under grace.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> What then? Should we sin because we are not under law but under grace? By no means!</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Do you not know that if you present yourselves to anyone as obedient slaves, you are slaves of the one whom you obey, either of sin, which leads to death, or of obedience, which leads to righteousness?</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> But thanks be to God that you, having once been slaves of sin, have become obedient from the heart to the form of teaching to which you were entrusted,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> and that you, having been set free from sin, have become slaves of righteousness.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> I am speaking in human terms because of your natural limitations. For just as you once presented your members as slaves to impurity and to greater and greater iniquity, so now present your members as slaves to righteousness for sanctification. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> When you were slaves of sin, you were free in regard to righteousness.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> So what advantage did you then get from the things of which you now are ashamed? The end of those things is death.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> But now that you have been freed from sin and enslaved to God, the advantage you get is sanctification. The end is eternal life.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> For the wages of sin is death, but the free gift of God is eternal life in Christ Jesus our Lord.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"7\">\r\n\t\t\t<VERS vnumber=\"1\"> Do you not know, brothers and sisters-- for I am speaking to those who know the law-- that the law is binding on a person only during that person's lifetime?</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Thus a married woman is bound by the law to her husband as long as he lives; but if her husband dies, she is discharged from the law concerning the husband.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Accordingly, she will be called an adulteress if she lives with another man while her husband is alive. But if her husband dies, she is free from that law, and if she marries another man, she is not an adulteress.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> In the same way, my friends, you have died to the law through the body of Christ, so that you may belong to another, to him who has been raised from the dead in order that we may bear fruit for God. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> While we were living in the flesh, our sinful passions, aroused by the law, were at work in our members to bear fruit for death.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> But now we are discharged from the law, dead to that which held us captive, so that we are slaves not under the old written code but in the new life of the Spirit.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> What then should we say? That the law is sin? By no means! Yet, if it had not been for the law, I would not have known sin. I would not have known what it is to covet if the law had not said, \"You shall not covet.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But sin, seizing an opportunity in the commandment, produced in me all kinds of covetousness. Apart from the law sin lies dead.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> I was once alive apart from the law, but when the commandment came, sin revived</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> and I died, and the very commandment that promised life proved to be death to me.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> For sin, seizing an opportunity in the commandment, deceived me and through it killed me.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> So the law is holy, and the commandment is holy and just and good.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Did what is good, then, bring death to me? By no means! It was sin, working death in me through what is good, in order that sin might be shown to be sin, and through the commandment might become sinful beyond measure.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> For we know that the law is spiritual; but I am of the flesh, sold into slavery under sin. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> I do not understand my own actions. For I do not do what I want, but I do the very thing I hate.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Now if I do what I do not want, I agree that the law is good.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> But in fact it is no longer I that do it, but sin that dwells within me.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> For I know that nothing good dwells within me, that is, in my flesh. I can will what is right, but I cannot do it.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> For I do not do the good I want, but the evil I do not want is what I do.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Now if I do what I do not want, it is no longer I that do it, but sin that dwells within me.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> So I find it to be a law that when I want to do what is good, evil lies close at hand.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> For I delight in the law of God in my inmost self,</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> but I see in my members another law at war with the law of my mind, making me captive to the law of sin that dwells in my members.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Wretched man that I am! Who will rescue me from this body of death?</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Thanks be to God through Jesus Christ our Lord! So then, with my mind I am a slave to the law of God, but with my flesh I am a slave to the law of sin.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"8\">\r\n\t\t\t<VERS vnumber=\"1\"> There is therefore now no condemnation for those who are in Christ Jesus.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> For the law of the Spirit of life in Christ Jesus has set you free from the law of sin and of death. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For God has done what the law, weakened by the flesh, could not do: by sending his own Son in the likeness of sinful flesh, and to deal with sin, he condemned sin in the flesh, </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> so that the just requirement of the law might be fulfilled in us, who walk not according to the flesh but according to the Spirit. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> For those who live according to the flesh set their minds on the things of the flesh, but those who live according to the Spirit set their minds on the things of the Spirit.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> To set the mind on the flesh is death, but to set the mind on the Spirit is life and peace. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> For this reason the mind that is set on the flesh is hostile to God; it does not submit to God's law-- indeed it cannot,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> and those who are in the flesh cannot please God.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> But you are not in the flesh; you are in the Spirit, since the Spirit of God dwells in you. Anyone who does not have the Spirit of Christ does not belong to him. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> But if Christ is in you, though the body is dead because of sin, the Spirit is life because of righteousness. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> If the Spirit of him who raised Jesus from the dead dwells in you, he who raised Christ from the dead will give life to your mortal bodies also through his Spirit that dwells in you. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> So then, brothers and sisters, we are debtors, not to the flesh, to live according to the flesh--</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> for if you live according to the flesh, you will die; but if by the Spirit you put to death the deeds of the body, you will live.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> For all who are led by the Spirit of God are children of God.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> For you did not receive a spirit of slavery to fall back into fear, but you have received a spirit of adoption. When we cry, \"Abba! Father!\" </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> it is that very Spirit bearing witness with our spirit that we are children of God, </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> and if children, then heirs, heirs of God and joint heirs with Christ-- if, in fact, we suffer with him so that we may also be glorified with him.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> I consider that the sufferings of this present time are not worth comparing with the glory about to be revealed to us.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> For the creation waits with eager longing for the revealing of the children of God;</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> for the creation was subjected to futility, not of its own will but by the will of the one who subjected it, in hope</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> that the creation itself will be set free from its bondage to decay and will obtain the freedom of the glory of the children of God.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> We know that the whole creation has been groaning in labor pains until now;</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> and not only the creation, but we ourselves, who have the first fruits of the Spirit, groan inwardly while we wait for adoption, the redemption of our bodies.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> For in hope we were saved. Now hope that is seen is not hope. For who hopes for what is seen? </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> But if we hope for what we do not see, we wait for it with patience.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Likewise the Spirit helps us in our weakness; for we do not know how to pray as we ought, but that very Spirit intercedes with sighs too deep for words. </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> And God, who searches the heart, knows what is the mind of the Spirit, because the Spirit intercedes for the saints according to the will of God. </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> We know that all things work together for good for those who love God, who are called according to his purpose. </VERS>\r\n\t\t\t<VERS vnumber=\"29\"> For those whom he foreknew he also predestined to be conformed to the image of his Son, in order that he might be the firstborn within a large family. </VERS>\r\n\t\t\t<VERS vnumber=\"30\"> And those whom he predestined he also called; and those whom he called he also justified; and those whom he justified he also glorified.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> What then are we to say about these things? If God is for us, who is against us?</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> He who did not withhold his own Son, but gave him up for all of us, will he not with him also give us everything else?</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Who will bring any charge against God's elect? It is God who justifies.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Who is to condemn? It is Christ Jesus, who died, yes, who was raised, who is at the right hand of God, who indeed intercedes for us. </VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Who will separate us from the love of Christ? Will hardship, or distress, or persecution, or famine, or nakedness, or peril, or sword?</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> As it is written, \"For your sake we are being killed all day long; we are accounted as sheep to be slaughtered.\"</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> No, in all these things we are more than conquerors through him who loved us.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> For I am convinced that neither death, nor life, nor angels, nor rulers, nor things present, nor things to come, nor powers,</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> nor height, nor depth, nor anything else in all creation, will be able to separate us from the love of God in Christ Jesus our Lord.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"9\">\r\n\t\t\t<VERS vnumber=\"1\"> I am speaking the truth in Christ-- I am not lying; my conscience confirms it by the Holy Spirit--</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> I have great sorrow and unceasing anguish in my heart.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For I could wish that I myself were accursed and cut off from Christ for the sake of my own people, my kindred according to the flesh.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> They are Israelites, and to them belong the adoption, the glory, the covenants, the giving of the law, the worship, and the promises;</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> to them belong the patriarchs, and from them, according to the flesh, comes the Messiah, who is over all, God blessed forever. Amen.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> It is not as though the word of God had failed. For not all Israelites truly belong to Israel,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> and not all of Abraham's children are his true descendants; but \"It is through Isaac that descendants shall be named for you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> This means that it is not the children of the flesh who are the children of God, but the children of the promise are counted as descendants.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> For this is what the promise said, \"About this time I will return and Sarah shall have a son.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Nor is that all; something similar happened to Rebecca when she had conceived children by one husband, our ancestor Isaac.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Even before they had been born or had done anything good or bad (so that God's purpose of election might continue,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> not by works but by his call) she was told, \"The elder shall serve the younger.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> As it is written, \"I have loved Jacob, but I have hated Esau.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> What then are we to say? Is there injustice on God's part? By no means!</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> For he says to Moses, \"I will have mercy on whom I have mercy, and I will have compassion on whom I have compassion.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> So it depends not on human will or exertion, but on God who shows mercy.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> For the scripture says to Pharaoh, \"I have raised you up for the very purpose of showing my power in you, so that my name may be proclaimed in all the earth.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> So then he has mercy on whomever he chooses, and he hardens the heart of whomever he chooses.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> You will say to me then, \"Why then does he still find fault? For who can resist his will?\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> But who indeed are you, a human being, to argue with God? Will what is molded say to the one who molds it, \"Why have you made me like this?\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Has the potter no right over the clay, to make out of the same lump one object for special use and another for ordinary use?</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> What if God, desiring to show his wrath and to make known his power, has endured with much patience the objects of wrath that are made for destruction;</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> and what if he has done so in order to make known the riches of his glory for the objects of mercy, which he has prepared beforehand for glory--</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> including us whom he has called, not from the Jews only but also from the Gentiles?</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> As indeed he says in Hosea, \"Those who were not my people I will call 'my people,' and her who was not beloved I will call 'beloved.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> \"And in the very place where it was said to them, 'You are not my people,' there they shall be called children of the living God.\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> And Isaiah cries out concerning Israel, \"Though the number of the children of Israel were like the sand of the sea, only a remnant of them will be saved;</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> for the Lord will execute his sentence on the earth quickly and decisively.\" </VERS>\r\n\t\t\t<VERS vnumber=\"29\"> And as Isaiah predicted, \"If the Lord of hosts had not left survivors to us, we would have fared like Sodom and been made like Gomorrah.\" </VERS>\r\n\t\t\t<VERS vnumber=\"30\"> What then are we to say? Gentiles, who did not strive for righteousness, have attained it, that is, righteousness through faith;</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> but Israel, who did strive for the righteousness that is based on the law, did not succeed in fulfilling that law.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Why not? Because they did not strive for it on the basis of faith, but as if it were based on works. They have stumbled over the stumbling stone,</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> as it is written, \"See, I am laying in Zion a stone that will make people stumble, a rock that will make them fall, and whoever believes in him will not be put to shame.\" </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"10\">\r\n\t\t\t<VERS vnumber=\"1\"> Brothers and sisters, my heart's desire and prayer to God for them is that they may be saved. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> I can testify that they have a zeal for God, but it is not enlightened.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For, being ignorant of the righteousness that comes from God, and seeking to establish their own, they have not submitted to God's righteousness.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For Christ is the end of the law so that there may be righteousness for everyone who believes.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Moses writes concerning the righteousness that comes from the law, that \"the person who does these things will live by them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> But the righteousness that comes from faith says, \"Do not say in your heart, 'Who will ascend into heaven?'\" (that is, to bring Christ down)</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> \"or 'Who will descend into the abyss?'\" (that is, to bring Christ up from the dead).</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But what does it say? \"The word is near you, on your lips and in your heart\" (that is, the word of faith that we proclaim);</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> because if you confess with your lips that Jesus is Lord and believe in your heart that God raised him from the dead, you will be saved. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For one believes with the heart and so is justified, and one confesses with the mouth and so is saved.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The scripture says, \"No one who believes in him will be put to shame.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> For there is no distinction between Jew and Greek; the same Lord is Lord of all and is generous to all who call on him.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> For, \"Everyone who calls on the name of the Lord shall be saved.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But how are they to call on one in whom they have not believed? And how are they to believe in one of whom they have never heard? And how are they to hear without someone to proclaim him?</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And how are they to proclaim him unless they are sent? As it is written, \"How beautiful are the feet of those who bring good news!\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> But not all have obeyed the good news; for Isaiah says, \"Lord, who has believed our message?\" </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> So faith comes from what is heard, and what is heard comes through the word of Christ. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> But I ask, have they not heard? Indeed they have; for \"Their voice has gone out to all the earth, and their words to the ends of the world.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Again I ask, did Israel not understand? First Moses says, \"I will make you jealous of those who are not a nation; with a foolish nation I will make you angry.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Then Isaiah is so bold as to say, \"I have been found by those who did not seek me; I have shown myself to those who did not ask for me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> But of Israel he says, \"All day long I have held out my hands to a disobedient and contrary people.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"11\">\r\n\t\t\t<VERS vnumber=\"1\"> I ask, then, has God rejected his people? By no means! I myself am an Israelite, a descendant of Abraham, a member of the tribe of Benjamin.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> God has not rejected his people whom he foreknew. Do you not know what the scripture says of Elijah, how he pleads with God against Israel?</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> \"Lord, they have killed your prophets, they have demolished your altars; I alone am left, and they are seeking my life.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But what is the divine reply to him? \"I have kept for myself seven thousand who have not bowed the knee to Baal.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> So too at the present time there is a remnant, chosen by grace.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> But if it is by grace, it is no longer on the basis of works, otherwise grace would no longer be grace. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> What then? Israel failed to obtain what it was seeking. The elect obtained it, but the rest were hardened,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> as it is written, \"God gave them a sluggish spirit, eyes that would not see and ears that would not hear, down to this very day.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> And David says, \"Let their table become a snare and a trap, a stumbling block and a retribution for them;</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> let their eyes be darkened so that they cannot see, and keep their backs forever bent.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> So I ask, have they stumbled so as to fall? By no means! But through their stumbling salvation has come to the Gentiles, so as to make Israel jealous. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Now if their stumbling means riches for the world, and if their defeat means riches for Gentiles, how much more will their full inclusion mean! </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Now I am speaking to you Gentiles. Inasmuch then as I am an apostle to the Gentiles, I glorify my ministry</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> in order to make my own people jealous, and thus save some of them. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> For if their rejection is the reconciliation of the world, what will their acceptance be but life from the dead!</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> If the part of the dough offered as first fruits is holy, then the whole batch is holy; and if the root is holy, then the branches also are holy.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> But if some of the branches were broken off, and you, a wild olive shoot, were grafted in their place to share the rich root of the olive tree,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> do not boast over the branches. If you do boast, remember that it is not you that support the root, but the root that supports you.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> You will say, \"Branches were broken off so that I might be grafted in.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> That is true. They were broken off because of their unbelief, but you stand only through faith. So do not become proud, but stand in awe.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> For if God did not spare the natural branches, perhaps he will not spare you. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Note then the kindness and the severity of God: severity toward those who have fallen, but God's kindness toward you, provided you continue in his kindness; otherwise you also will be cut off.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> And even those of Israel, if they do not persist in unbelief, will be grafted in, for God has the power to graft them in again. </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> For if you have been cut from what is by nature a wild olive tree and grafted, contrary to nature, into a cultivated olive tree, how much more will these natural branches be grafted back into their own olive tree.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> So that you may not claim to be wiser than you are, brothers and sisters, I want you to understand this mystery: a hardening has come upon part of Israel, until the full number of the Gentiles has come in. </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> And so all Israel will be saved; as it is written, \"Out of Zion will come the Deliverer; he will banish ungodliness from Jacob.\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> \"And this is my covenant with them, when I take away their sins.\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> As regards the gospel they are enemies of God for your sake; but as regards election they are beloved, for the sake of their ancestors; </VERS>\r\n\t\t\t<VERS vnumber=\"29\"> for the gifts and the calling of God are irrevocable.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Just as you were once disobedient to God but have now received mercy because of their disobedience,</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> so they have now been disobedient in order that, by the mercy shown to you, they too may now receive mercy. </VERS>\r\n\t\t\t<VERS vnumber=\"32\"> For God has imprisoned all in disobedience so that he may be merciful to all.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> O the depth of the riches and wisdom and knowledge of God! How unsearchable are his judgments and how inscrutable his ways!</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> \"For who has known the mind of the Lord? Or who has been his counselor?\"</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> \"Or who has given a gift to him, to receive a gift in return?\"</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> For from him and through him and to him are all things. To him be the glory forever. Amen.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"12\">\r\n\t\t\t<VERS vnumber=\"1\"> I appeal to you therefore, brothers and sisters, by the mercies of God, to present your bodies as a living sacrifice, holy and acceptable to God, which is your spiritual worship. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Do not be conformed to this world, but be transformed by the renewing of your minds, so that you may discern what is the will of God-- what is good and acceptable and perfect.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For by the grace given to me I say to everyone among you not to think of yourself more highly than you ought to think, but to think with sober judgment, each according to the measure of faith that God has assigned.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For as in one body we have many members, and not all the members have the same function,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> so we, who are many, are one body in Christ, and individually we are members one of another.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> We have gifts that differ according to the grace given to us: prophecy, in proportion to faith;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> ministry, in ministering; the teacher, in teaching;</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> the exhorter, in exhortation; the giver, in generosity; the leader, in diligence; the compassionate, in cheerfulness.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Let love be genuine; hate what is evil, hold fast to what is good;</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> love one another with mutual affection; outdo one another in showing honor.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Do not lag in zeal, be ardent in spirit, serve the Lord. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Rejoice in hope, be patient in suffering, persevere in prayer.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Contribute to the needs of the saints; extend hospitality to strangers.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Bless those who persecute you; bless and do not curse them.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Rejoice with those who rejoice, weep with those who weep.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Live in harmony with one another; do not be haughty, but associate with the lowly; do not claim to be wiser than you are. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Do not repay anyone evil for evil, but take thought for what is noble in the sight of all.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> If it is possible, so far as it depends on you, live peaceably with all.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Beloved, never avenge yourselves, but leave room for the wrath of God; for it is written, \"Vengeance is mine, I will repay, says the Lord.\" </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> No, \"if your enemies are hungry, feed them; if they are thirsty, give them something to drink; for by doing this you will heap burning coals on their heads.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Do not be overcome by evil, but overcome evil with good.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"13\">\r\n\t\t\t<VERS vnumber=\"1\"> Let every person be subject to the governing authorities; for there is no authority except from God, and those authorities that exist have been instituted by God.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Therefore whoever resists authority resists what God has appointed, and those who resist will incur judgment.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For rulers are not a terror to good conduct, but to bad. Do you wish to have no fear of the authority? Then do what is good, and you will receive its approval;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> for it is God's servant for your good. But if you do what is wrong, you should be afraid, for the authority does not bear the sword in vain! It is the servant of God to execute wrath on the wrongdoer. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Therefore one must be subject, not only because of wrath but also because of conscience.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For the same reason you also pay taxes, for the authorities are God's servants, busy with this very thing.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Pay to all what is due them-- taxes to whom taxes are due, revenue to whom revenue is due, respect to whom respect is due, honor to whom honor is due.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Owe no one anything, except to love one another; for the one who loves another has fulfilled the law.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The commandments, \"You shall not commit adultery; You shall not murder; You shall not steal; You shall not covet\"; and any other commandment, are summed up in this word, \"Love your neighbor as yourself.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Love does no wrong to a neighbor; therefore, love is the fulfilling of the law.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Besides this, you know what time it is, how it is now the moment for you to wake from sleep. For salvation is nearer to us now than when we became believers;</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> the night is far gone, the day is near. Let us then lay aside the works of darkness and put on the armor of light;</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> let us live honorably as in the day, not in reveling and drunkenness, not in debauchery and licentiousness, not in quarreling and jealousy.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Instead, put on the Lord Jesus Christ, and make no provision for the flesh, to gratify its desires.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"14\">\r\n\t\t\t<VERS vnumber=\"1\"> Welcome those who are weak in faith, but not for the purpose of quarreling over opinions. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Some believe in eating anything, while the weak eat only vegetables.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Those who eat must not despise those who abstain, and those who abstain must not pass judgment on those who eat; for God has welcomed them.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Who are you to pass judgment on servants of another? It is before their own lord that they stand or fall. And they will be upheld, for the Lord is able to make them stand. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Some judge one day to be better than another, while others judge all days to be alike. Let all be fully convinced in their own minds.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Those who observe the day, observe it in honor of the Lord. Also those who eat, eat in honor of the Lord, since they give thanks to God; while those who abstain, abstain in honor of the Lord and give thanks to God.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> We do not live to ourselves, and we do not die to ourselves.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> If we live, we live to the Lord, and if we die, we die to the Lord; so then, whether we live or whether we die, we are the Lord's.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> For to this end Christ died and lived again, so that he might be Lord of both the dead and the living.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Why do you pass judgment on your brother or sister? Or you, why do you despise your brother or sister? For we will all stand before the judgment seat of God. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> For it is written, \"As I live, says the Lord, every knee shall bow to me, and every tongue shall give praise to God.\" </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> So then, each of us will be accountable to God. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Let us therefore no longer pass judgment on one another, but resolve instead never to put a stumbling block or hindrance in the way of another. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> I know and am persuaded in the Lord Jesus that nothing is unclean in itself; but it is unclean for anyone who thinks it unclean.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> If your brother or sister is being injured by what you eat, you are no longer walking in love. Do not let what you eat cause the ruin of one for whom Christ died. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> So do not let your good be spoken of as evil.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> For the kingdom of God is not food and drink but righteousness and peace and joy in the Holy Spirit.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The one who thus serves Christ is acceptable to God and has human approval.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Let us then pursue what makes for peace and for mutual upbuilding.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Do not, for the sake of food, destroy the work of God. Everything is indeed clean, but it is wrong for you to make others fall by what you eat;</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> it is good not to eat meat or drink wine or do anything that makes your brother or sister stumble. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The faith that you have, have as your own conviction before God. Blessed are those who have no reason to condemn themselves because of what they approve.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> But those who have doubts are condemned if they eat, because they do not act from faith; for whatever does not proceed from faith is sin. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"15\">\r\n\t\t\t<VERS vnumber=\"1\"> We who are strong ought to put up with the failings of the weak, and not to please ourselves.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Each of us must please our neighbor for the good purpose of building up the neighbor.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For Christ did not please himself; but, as it is written, \"The insults of those who insult you have fallen on me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For whatever was written in former days was written for our instruction, so that by steadfastness and by the encouragement of the scriptures we might have hope.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> May the God of steadfastness and encouragement grant you to live in harmony with one another, in accordance with Christ Jesus,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> so that together you may with one voice glorify the God and Father of our Lord Jesus Christ.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Welcome one another, therefore, just as Christ has welcomed you, for the glory of God.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> For I tell you that Christ has become a servant of the circumcised on behalf of the truth of God in order that he might confirm the promises given to the patriarchs,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> and in order that the Gentiles might glorify God for his mercy. As it is written, \"Therefore I will confess you among the Gentiles, and sing praises to your name\";</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> and again he says, \"Rejoice, O Gentiles, with his people\";</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> and again, \"Praise the Lord, all you Gentiles, and let all the peoples praise him\";</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> and again Isaiah says, \"The root of Jesse shall come, the one who rises to rule the Gentiles; in him the Gentiles shall hope.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> May the God of hope fill you with all joy and peace in believing, so that you may abound in hope by the power of the Holy Spirit.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> I myself feel confident about you, my brothers and sisters, that you yourselves are full of goodness, filled with all knowledge, and able to instruct one another.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Nevertheless on some points I have written to you rather boldly by way of reminder, because of the grace given me by God</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> to be a minister of Christ Jesus to the Gentiles in the priestly service of the gospel of God, so that the offering of the Gentiles may be acceptable, sanctified by the Holy Spirit.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> In Christ Jesus, then, I have reason to boast of my work for God.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> For I will not venture to speak of anything except what Christ has accomplished through me to win obedience from the Gentiles, by word and deed, </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> by the power of signs and wonders, by the power of the Spirit of God, so that from Jerusalem and as far around as Illyricum I have fully proclaimed the good news of Christ. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Thus I make it my ambition to proclaim the good news, not where Christ has already been named, so that I do not build on someone else's foundation, </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> but as it is written, \"Those who have never been told of him shall see, and those who have never heard of him shall understand.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> This is the reason that I have so often been hindered from coming to you.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> But now, with no further place for me in these regions, I desire, as I have for many years, to come to you</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> when I go to Spain. For I do hope to see you on my journey and to be sent on by you, once I have enjoyed your company for a little while.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> At present, however, I am going to Jerusalem in a ministry to the saints;</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> for Macedonia and Achaia have been pleased to share their resources with the poor among the saints at Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> They were pleased to do this, and indeed they owe it to them; for if the Gentiles have come to share in their spiritual blessings, they ought also to be of service to them in material things.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> So, when I have completed this, and have delivered to them what has been collected, I will set out by way of you to Spain; </VERS>\r\n\t\t\t<VERS vnumber=\"29\"> and I know that when I come to you, I will come in the fullness of the blessing of Christ. </VERS>\r\n\t\t\t<VERS vnumber=\"30\"> I appeal to you, brothers and sisters, by our Lord Jesus Christ and by the love of the Spirit, to join me in earnest prayer to God on my behalf, </VERS>\r\n\t\t\t<VERS vnumber=\"31\"> that I may be rescued from the unbelievers in Judea, and that my ministry to Jerusalem may be acceptable to the saints, </VERS>\r\n\t\t\t<VERS vnumber=\"32\"> so that by God's will I may come to you with joy and be refreshed in your company.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> The God of peace be with all of you. Amen. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"16\">\r\n\t\t\t<VERS vnumber=\"1\"> I commend to you our sister Phoebe, a deacon of the church at Cenchreae, </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> so that you may welcome her in the Lord as is fitting for the saints, and help her in whatever she may require from you, for she has been a benefactor of many and of myself as well.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Greet Prisca and Aquila, who work with me in Christ Jesus,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> and who risked their necks for my life, to whom not only I give thanks, but also all the churches of the Gentiles.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Greet also the church in their house. Greet my beloved Epaenetus, who was the first convert in Asia for Christ.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Greet Mary, who has worked very hard among you.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Greet Andronicus and Junia, my relatives who were in prison with me; they are prominent among the apostles, and they were in Christ before I was. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Greet Ampliatus, my beloved in the Lord.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Greet Urbanus, our co-worker in Christ, and my beloved Stachys.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Greet Apelles, who is approved in Christ. Greet those who belong to the family of Aristobulus.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Greet my relative Herodion. Greet those in the Lord who belong to the family of Narcissus. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Greet those workers in the Lord, Tryphaena and Tryphosa. Greet the beloved Persis, who has worked hard in the Lord.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Greet Rufus, chosen in the Lord; and greet his mother-- a mother to me also.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Greet Asyncritus, Phlegon, Hermes, Patrobas, Hermas, and the brothers and sisters who are with them. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Greet Philologus, Julia, Nereus and his sister, and Olympas, and all the saints who are with them.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Greet one another with a holy kiss. All the churches of Christ greet you.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> I urge you, brothers and sisters, to keep an eye on those who cause dissensions and offenses, in opposition to the teaching that you have learned; avoid them. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> For such people do not serve our Lord Christ, but their own appetites, and by smooth talk and flattery they deceive the hearts of the simple-minded. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> For while your obedience is known to all, so that I rejoice over you, I want you to be wise in what is good and guileless in what is evil.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The God of peace will shortly crush Satan under your feet. The grace of our Lord Jesus Christ be with you. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Timothy, my co-worker, greets you; so do Lucius and Jason and Sosipater, my relatives. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> I Tertius, the writer of this letter, greet you in the Lord. </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Gaius, who is host to me and to the whole church, greets you. Erastus, the city treasurer, and our brother Quartus, greet you. </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Now to God who is able to strengthen you according to my gospel and the proclamation of Jesus Christ, according to the revelation of the mystery that was kept secret for long ages</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> but is now disclosed, and through the prophetic writings is made known to all the Gentiles, according to the command of the eternal God, to bring about the obedience of faith--</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> to the only wise God, through Jesus Christ, to whom be the glory forever! Amen. </VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"46\" bname=\"1 Corinthians\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> Paul, called to be an apostle of Christ Jesus by the will of God, and our brother Sosthenes,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> To the church of God that is in Corinth, to those who are sanctified in Christ Jesus, called to be saints, together with all those who in every place call on the name of our Lord Jesus Christ, both their Lord and ours: </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Grace to you and peace from God our Father and the Lord Jesus Christ.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> I give thanks to my God always for you because of the grace of God that has been given you in Christ Jesus, </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> for in every way you have been enriched in him, in speech and knowledge of every kind--</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> just as the testimony of Christ has been strengthened among you--</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> so that you are not lacking in any spiritual gift as you wait for the revealing of our Lord Jesus Christ.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> He will also strengthen you to the end, so that you may be blameless on the day of our Lord Jesus Christ.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> God is faithful; by him you were called into the fellowship of his Son, Jesus Christ our Lord.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Now I appeal to you, brothers and sisters, by the name of our Lord Jesus Christ, that all of you be in agreement and that there be no divisions among you, but that you be united in the same mind and the same purpose. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> For it has been reported to me by Chloe's people that there are quarrels among you, my brothers and sisters. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> What I mean is that each of you says, \"I belong to Paul,\" or \"I belong to Apollos,\" or \"I belong to Cephas,\" or \"I belong to Christ.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Has Christ been divided? Was Paul crucified for you? Or were you baptized in the name of Paul?</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> I thank God that I baptized none of you except Crispus and Gaius, </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> so that no one can say that you were baptized in my name.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> (I did baptize also the household of Stephanas; beyond that, I do not know whether I baptized anyone else.)</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> For Christ did not send me to baptize but to proclaim the gospel, and not with eloquent wisdom, so that the cross of Christ might not be emptied of its power.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> For the message about the cross is foolishness to those who are perishing, but to us who are being saved it is the power of God.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> For it is written, \"I will destroy the wisdom of the wise, and the discernment of the discerning I will thwart.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Where is the one who is wise? Where is the scribe? Where is the debater of this age? Has not God made foolish the wisdom of the world?</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> For since, in the wisdom of God, the world did not know God through wisdom, God decided, through the foolishness of our proclamation, to save those who believe.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> For Jews demand signs and Greeks desire wisdom,</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> but we proclaim Christ crucified, a stumbling block to Jews and foolishness to Gentiles,</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> but to those who are the called, both Jews and Greeks, Christ the power of God and the wisdom of God.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> For God's foolishness is wiser than human wisdom, and God's weakness is stronger than human strength.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Consider your own call, brothers and sisters: not many of you were wise by human standards, not many were powerful, not many were of noble birth. </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> But God chose what is foolish in the world to shame the wise; God chose what is weak in the world to shame the strong;</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> God chose what is low and despised in the world, things that are not, to reduce to nothing things that are,</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> so that no one might boast in the presence of God. </VERS>\r\n\t\t\t<VERS vnumber=\"30\"> He is the source of your life in Christ Jesus, who became for us wisdom from God, and righteousness and sanctification and redemption,</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> in order that, as it is written, \"Let the one who boasts, boast in the Lord.\" </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> When I came to you, brothers and sisters, I did not come proclaiming the mystery of God to you in lofty words or wisdom. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> For I decided to know nothing among you except Jesus Christ, and him crucified.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And I came to you in weakness and in fear and in much trembling.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> My speech and my proclamation were not with plausible words of wisdom, but with a demonstration of the Spirit and of power, </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> so that your faith might rest not on human wisdom but on the power of God.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Yet among the mature we do speak wisdom, though it is not a wisdom of this age or of the rulers of this age, who are doomed to perish.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But we speak God's wisdom, secret and hidden, which God decreed before the ages for our glory.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> None of the rulers of this age understood this; for if they had, they would not have crucified the Lord of glory.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> But, as it is written, \"What no eye has seen, nor ear heard, nor the human heart conceived, what God has prepared for those who love him\"--</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> these things God has revealed to us through the Spirit; for the Spirit searches everything, even the depths of God.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> For what human being knows what is truly human except the human spirit that is within? So also no one comprehends what is truly God's except the Spirit of God.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Now we have received not the spirit of the world, but the Spirit that is from God, so that we may understand the gifts bestowed on us by God.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And we speak of these things in words not taught by human wisdom but taught by the Spirit, interpreting spiritual things to those who are spiritual. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Those who are unspiritual do not receive the gifts of God's Spirit, for they are foolishness to them, and they are unable to understand them because they are spiritually discerned. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Those who are spiritual discern all things, and they are themselves subject to no one else's scrutiny.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> \"For who has known the mind of the Lord so as to instruct him?\" But we have the mind of Christ.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> And so, brothers and sisters, I could not speak to you as spiritual people, but rather as people of the flesh, as infants in Christ. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> I fed you with milk, not solid food, for you were not ready for solid food. Even now you are still not ready,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> for you are still of the flesh. For as long as there is jealousy and quarreling among you, are you not of the flesh, and behaving according to human inclinations?</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For when one says, \"I belong to Paul,\" and another, \"I belong to Apollos,\" are you not merely human?</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> What then is Apollos? What is Paul? Servants through whom you came to believe, as the Lord assigned to each.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> I planted, Apollos watered, but God gave the growth.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> So neither the one who plants nor the one who waters is anything, but only God who gives the growth.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The one who plants and the one who waters have a common purpose, and each will receive wages according to the labor of each.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> For we are God's servants, working together; you are God's field, God's building.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> According to the grace of God given to me, like a skilled master builder I laid a foundation, and someone else is building on it. Each builder must choose with care how to build on it.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> For no one can lay any foundation other than the one that has been laid; that foundation is Jesus Christ.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Now if anyone builds on the foundation with gold, silver, precious stones, wood, hay, straw--</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> the work of each builder will become visible, for the Day will disclose it, because it will be revealed with fire, and the fire will test what sort of work each has done.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> If what has been built on the foundation survives, the builder will receive a reward.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> If the work is burned up, the builder will suffer loss; the builder will be saved, but only as through fire.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Do you not know that you are God's temple and that God's Spirit dwells in you? </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> If anyone destroys God's temple, God will destroy that person. For God's temple is holy, and you are that temple.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Do not deceive yourselves. If you think that you are wise in this age, you should become fools so that you may become wise.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> For the wisdom of this world is foolishness with God. For it is written, \"He catches the wise in their craftiness,\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> and again, \"The Lord knows the thoughts of the wise, that they are futile.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> So let no one boast about human leaders. For all things are yours,</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> whether Paul or Apollos or Cephas or the world or life or death or the present or the future-- all belong to you,</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> and you belong to Christ, and Christ belongs to God.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> Think of us in this way, as servants of Christ and stewards of God's mysteries.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Moreover, it is required of stewards that they be found trustworthy.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> But with me it is a very small thing that I should be judged by you or by any human court. I do not even judge myself.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> I am not aware of anything against myself, but I am not thereby acquitted. It is the Lord who judges me.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Therefore do not pronounce judgment before the time, before the Lord comes, who will bring to light the things now hidden in darkness and will disclose the purposes of the heart. Then each one will receive commendation from God.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> I have applied all this to Apollos and myself for your benefit, brothers and sisters, so that you may learn through us the meaning of the saying, \"Nothing beyond what is written,\" so that none of you will be puffed up in favor of one against another. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> For who sees anything different in you? What do you have that you did not receive? And if you received it, why do you boast as if it were not a gift? </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Already you have all you want! Already you have become rich! Quite apart from us you have become kings! Indeed, I wish that you had become kings, so that we might be kings with you!</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> For I think that God has exhibited us apostles as last of all, as though sentenced to death, because we have become a spectacle to the world, to angels and to mortals.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> We are fools for the sake of Christ, but you are wise in Christ. We are weak, but you are strong. You are held in honor, but we in disrepute.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> To the present hour we are hungry and thirsty, we are poorly clothed and beaten and homeless,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> and we grow weary from the work of our own hands. When reviled, we bless; when persecuted, we endure;</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> when slandered, we speak kindly. We have become like the rubbish of the world, the dregs of all things, to this very day.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> I am not writing this to make you ashamed, but to admonish you as my beloved children.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> For though you might have ten thousand guardians in Christ, you do not have many fathers. Indeed, in Christ Jesus I became your father through the gospel.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> I appeal to you, then, be imitators of me.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> For this reason I sent you Timothy, who is my beloved and faithful child in the Lord, to remind you of my ways in Christ Jesus, as I teach them everywhere in every church. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> But some of you, thinking that I am not coming to you, have become arrogant.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> But I will come to you soon, if the Lord wills, and I will find out not the talk of these arrogant people but their power.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> For the kingdom of God depends not on talk but on power.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> What would you prefer? Am I to come to you with a stick, or with love in a spirit of gentleness?</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"5\">\r\n\t\t\t<VERS vnumber=\"1\"> It is actually reported that there is sexual immorality among you, and of a kind that is not found even among pagans; for a man is living with his father's wife.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And you are arrogant! Should you not rather have mourned, so that he who has done this would have been removed from among you?</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For though absent in body, I am present in spirit; and as if present I have already pronounced judgment</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> in the name of the Lord Jesus on the man who has done such a thing. When you are assembled, and my spirit is present with the power of our Lord Jesus, </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> you are to hand this man over to Satan for the destruction of the flesh, so that his spirit may be saved in the day of the Lord. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Your boasting is not a good thing. Do you not know that a little yeast leavens the whole batch of dough?</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Clean out the old yeast so that you may be a new batch, as you really are unleavened. For our paschal lamb, Christ, has been sacrificed.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Therefore, let us celebrate the festival, not with the old yeast, the yeast of malice and evil, but with the unleavened bread of sincerity and truth.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> I wrote to you in my letter not to associate with sexually immoral persons--</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> not at all meaning the immoral of this world, or the greedy and robbers, or idolaters, since you would then need to go out of the world.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But now I am writing to you not to associate with anyone who bears the name of brother or sister who is sexually immoral or greedy, or is an idolater, reviler, drunkard, or robber. Do not even eat with such a one. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> For what have I to do with judging those outside? Is it not those who are inside that you are to judge?</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> God will judge those outside. \"Drive out the wicked person from among you.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"6\">\r\n\t\t\t<VERS vnumber=\"1\"> When any of you has a grievance against another, do you dare to take it to court before the unrighteous, instead of taking it before the saints?</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Do you not know that the saints will judge the world? And if the world is to be judged by you, are you incompetent to try trivial cases?</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Do you not know that we are to judge angels-- to say nothing of ordinary matters?</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> If you have ordinary cases, then, do you appoint as judges those who have no standing in the church?</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> I say this to your shame. Can it be that there is no one among you wise enough to decide between one believer and another, </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> but a believer goes to court against a believer-- and before unbelievers at that?</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> In fact, to have lawsuits at all with one another is already a defeat for you. Why not rather be wronged? Why not rather be defrauded?</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But you yourselves wrong and defraud-- and believers at that.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Do you not know that wrongdoers will not inherit the kingdom of God? Do not be deceived! Fornicators, idolaters, adulterers, male prostitutes, sodomites,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> thieves, the greedy, drunkards, revilers, robbers-- none of these will inherit the kingdom of God.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> And this is what some of you used to be. But you were washed, you were sanctified, you were justified in the name of the Lord Jesus Christ and in the Spirit of our God.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> \"All things are lawful for me,\" but not all things are beneficial. \"All things are lawful for me,\" but I will not be dominated by anything.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> \"Food is meant for the stomach and the stomach for food,\" and God will destroy both one and the other. The body is meant not for fornication but for the Lord, and the Lord for the body. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> And God raised the Lord and will also raise us by his power.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Do you not know that your bodies are members of Christ? Should I therefore take the members of Christ and make them members of a prostitute? Never!</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Do you not know that whoever is united to a prostitute becomes one body with her? For it is said, \"The two shall be one flesh.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> But anyone united to the Lord becomes one spirit with him.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Shun fornication! Every sin that a person commits is outside the body; but the fornicator sins against the body itself.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Or do you not know that your body is a temple of the Holy Spirit within you, which you have from God, and that you are not your own? </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> For you were bought with a price; therefore glorify God in your body.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"7\">\r\n\t\t\t<VERS vnumber=\"1\"> Now concerning the matters about which you wrote: \"It is well for a man not to touch a woman.\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> But because of cases of sexual immorality, each man should have his own wife and each woman her own husband.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The husband should give to his wife her conjugal rights, and likewise the wife to her husband.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For the wife does not have authority over her own body, but the husband does; likewise the husband does not have authority over his own body, but the wife does.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Do not deprive one another except perhaps by agreement for a set time, to devote yourselves to prayer, and then come together again, so that Satan may not tempt you because of your lack of self-control.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> This I say by way of concession, not of command.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> I wish that all were as I myself am. But each has a particular gift from God, one having one kind and another a different kind.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> To the unmarried and the widows I say that it is well for them to remain unmarried as I am.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> But if they are not practicing self-control, they should marry. For it is better to marry than to be aflame with passion.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> To the married I give this command-- not I but the Lord-- that the wife should not separate from her husband</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> (but if she does separate, let her remain unmarried or else be reconciled to her husband), and that the husband should not divorce his wife.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> To the rest I say-- I and not the Lord-- that if any believer has a wife who is an unbeliever, and she consents to live with him, he should not divorce her.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And if any woman has a husband who is an unbeliever, and he consents to live with her, she should not divorce him.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> For the unbelieving husband is made holy through his wife, and the unbelieving wife is made holy through her husband. Otherwise, your children would be unclean, but as it is, they are holy.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> But if the unbelieving partner separates, let it be so; in such a case the brother or sister is not bound. It is to peace that God has called you. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Wife, for all you know, you might save your husband. Husband, for all you know, you might save your wife.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> However that may be, let each of you lead the life that the Lord has assigned, to which God called you. This is my rule in all the churches.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Was anyone at the time of his call already circumcised? Let him not seek to remove the marks of circumcision. Was anyone at the time of his call uncircumcised? Let him not seek circumcision.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Circumcision is nothing, and uncircumcision is nothing; but obeying the commandments of God is everything.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Let each of you remain in the condition in which you were called.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Were you a slave when called? Do not be concerned about it. Even if you can gain your freedom, make use of your present condition now more than ever. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> For whoever was called in the Lord as a slave is a freed person belonging to the Lord, just as whoever was free when called is a slave of Christ.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> You were bought with a price; do not become slaves of human masters.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> In whatever condition you were called, brothers and sisters, there remain with God.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Now concerning virgins, I have no command of the Lord, but I give my opinion as one who by the Lord's mercy is trustworthy.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> I think that, in view of the impending crisis, it is well for you to remain as you are. </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Are you bound to a wife? Do not seek to be free. Are you free from a wife? Do not seek a wife.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> But if you marry, you do not sin, and if a virgin marries, she does not sin. Yet those who marry will experience distress in this life, and I would spare you that. </VERS>\r\n\t\t\t<VERS vnumber=\"29\"> I mean, brothers and sisters, the appointed time has grown short; from now on, let even those who have wives be as though they had none, </VERS>\r\n\t\t\t<VERS vnumber=\"30\"> and those who mourn as though they were not mourning, and those who rejoice as though they were not rejoicing, and those who buy as though they had no possessions,</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> and those who deal with the world as though they had no dealings with it. For the present form of this world is passing away.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> I want you to be free from anxieties. The unmarried man is anxious about the affairs of the Lord, how to please the Lord;</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> but the married man is anxious about the affairs of the world, how to please his wife,</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> and his interests are divided. And the unmarried woman and the virgin are anxious about the affairs of the Lord, so that they may be holy in body and spirit; but the married woman is anxious about the affairs of the world, how to please her husband.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> I say this for your own benefit, not to put any restraint upon you, but to promote good order and unhindered devotion to the Lord.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> If anyone thinks that he is not behaving properly toward his fiancee, if his passions are strong, and so it has to be, let him marry as he wishes; it is no sin. Let them marry. </VERS>\r\n\t\t\t<VERS vnumber=\"37\"> But if someone stands firm in his resolve, being under no necessity but having his own desire under control, and has determined in his own mind to keep her as his fiancee, he will do well. </VERS>\r\n\t\t\t<VERS vnumber=\"38\"> So then, he who marries his fiancee does well; and he who refrains from marriage will do better. </VERS>\r\n\t\t\t<VERS vnumber=\"39\"> A wife is bound as long as her husband lives. But if the husband dies, she is free to marry anyone she wishes, only in the Lord. </VERS>\r\n\t\t\t<VERS vnumber=\"40\"> But in my judgment she is more blessed if she remains as she is. And I think that I too have the Spirit of God.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"8\">\r\n\t\t\t<VERS vnumber=\"1\"> Now concerning food sacrificed to idols: we know that \"all of us possess knowledge.\" Knowledge puffs up, but love builds up.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Anyone who claims to know something does not yet have the necessary knowledge;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> but anyone who loves God is known by him.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Hence, as to the eating of food offered to idols, we know that \"no idol in the world really exists,\" and that \"there is no God but one.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Indeed, even though there may be so-called gods in heaven or on earth-- as in fact there are many gods and many lords--</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> yet for us there is one God, the Father, from whom are all things and for whom we exist, and one Lord, Jesus Christ, through whom are all things and through whom we exist.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> It is not everyone, however, who has this knowledge. Since some have become so accustomed to idols until now, they still think of the food they eat as food offered to an idol; and their conscience, being weak, is defiled.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> \"Food will not bring us close to God.\" We are no worse off if we do not eat, and no better off if we do. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> But take care that this liberty of yours does not somehow become a stumbling block to the weak.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For if others see you, who possess knowledge, eating in the temple of an idol, might they not, since their conscience is weak, be encouraged to the point of eating food sacrificed to idols?</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> So by your knowledge those weak believers for whom Christ died are destroyed. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> But when you thus sin against members of your family, and wound their conscience when it is weak, you sin against Christ. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Therefore, if food is a cause of their falling, I will never eat meat, so that I may not cause one of them to fall. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"9\">\r\n\t\t\t<VERS vnumber=\"1\"> Am I not free? Am I not an apostle? Have I not seen Jesus our Lord? Are you not my work in the Lord?</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> If I am not an apostle to others, at least I am to you; for you are the seal of my apostleship in the Lord.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> This is my defense to those who would examine me.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Do we not have the right to our food and drink?</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Do we not have the right to be accompanied by a believing wife, as do the other apostles and the brothers of the Lord and Cephas? </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Or is it only Barnabas and I who have no right to refrain from working for a living?</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Who at any time pays the expenses for doing military service? Who plants a vineyard and does not eat any of its fruit? Or who tends a flock and does not get any of its milk?</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Do I say this on human authority? Does not the law also say the same?</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> For it is written in the law of Moses, \"You shall not muzzle an ox while it is treading out the grain.\" Is it for oxen that God is concerned?</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Or does he not speak entirely for our sake? It was indeed written for our sake, for whoever plows should plow in hope and whoever threshes should thresh in hope of a share in the crop.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> If we have sown spiritual good among you, is it too much if we reap your material benefits?</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> If others share this rightful claim on you, do not we still more? Nevertheless, we have not made use of this right, but we endure anything rather than put an obstacle in the way of the gospel of Christ.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Do you not know that those who are employed in the temple service get their food from the temple, and those who serve at the altar share in what is sacrificed on the altar?</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> In the same way, the Lord commanded that those who proclaim the gospel should get their living by the gospel.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> But I have made no use of any of these rights, nor am I writing this so that they may be applied in my case. Indeed, I would rather die than that-- no one will deprive me of my ground for boasting!</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> If I proclaim the gospel, this gives me no ground for boasting, for an obligation is laid on me, and woe to me if I do not proclaim the gospel!</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> For if I do this of my own will, I have a reward; but if not of my own will, I am entrusted with a commission.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> What then is my reward? Just this: that in my proclamation I may make the gospel free of charge, so as not to make full use of my rights in the gospel.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> For though I am free with respect to all, I have made myself a slave to all, so that I might win more of them.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> To the Jews I became as a Jew, in order to win Jews. To those under the law I became as one under the law (though I myself am not under the law) so that I might win those under the law.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> To those outside the law I became as one outside the law (though I am not free from God's law but am under Christ's law) so that I might win those outside the law.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> To the weak I became weak, so that I might win the weak. I have become all things to all people, that I might by all means save some.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> I do it all for the sake of the gospel, so that I may share in its blessings.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Do you not know that in a race the runners all compete, but only one receives the prize? Run in such a way that you may win it.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Athletes exercise self-control in all things; they do it to receive a perishable wreath, but we an imperishable one.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> So I do not run aimlessly, nor do I box as though beating the air;</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> but I punish my body and enslave it, so that after proclaiming to others I myself should not be disqualified.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"10\">\r\n\t\t\t<VERS vnumber=\"1\"> I do not want you to be unaware, brothers and sisters, that our ancestors were all under the cloud, and all passed through the sea,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> and all were baptized into Moses in the cloud and in the sea,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> and all ate the same spiritual food,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> and all drank the same spiritual drink. For they drank from the spiritual rock that followed them, and the rock was Christ.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Nevertheless, God was not pleased with most of them, and they were struck down in the wilderness.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Now these things occurred as examples for us, so that we might not desire evil as they did.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Do not become idolaters as some of them did; as it is written, \"The people sat down to eat and drink, and they rose up to play.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> We must not indulge in sexual immorality as some of them did, and twenty-three thousand fell in a single day.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> We must not put Christ to the test, as some of them did, and were destroyed by serpents. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And do not complain as some of them did, and were destroyed by the destroyer.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> These things happened to them to serve as an example, and they were written down to instruct us, on whom the ends of the ages have come.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> So if you think you are standing, watch out that you do not fall.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> No testing has overtaken you that is not common to everyone. God is faithful, and he will not let you be tested beyond your strength, but with the testing he will also provide the way out so that you may be able to endure it.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Therefore, my dear friends, flee from the worship of idols. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> I speak as to sensible people; judge for yourselves what I say.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The cup of blessing that we bless, is it not a sharing in the blood of Christ? The bread that we break, is it not a sharing in the body of Christ?</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Because there is one bread, we who are many are one body, for we all partake of the one bread.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Consider the people of Israel; are not those who eat the sacrifices partners in the altar? </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> What do I imply then? That food sacrificed to idols is anything, or that an idol is anything?</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> No, I imply that what pagans sacrifice, they sacrifice to demons and not to God. I do not want you to be partners with demons.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> You cannot drink the cup of the Lord and the cup of demons. You cannot partake of the table of the Lord and the table of demons.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Or are we provoking the Lord to jealousy? Are we stronger than he?</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> \"All things are lawful,\" but not all things are beneficial. \"All things are lawful,\" but not all things build up.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Do not seek your own advantage, but that of the other.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Eat whatever is sold in the meat market without raising any question on the ground of conscience,</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> for \"the earth and its fullness are the Lord's.\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> If an unbeliever invites you to a meal and you are disposed to go, eat whatever is set before you without raising any question on the ground of conscience.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> But if someone says to you, \"This has been offered in sacrifice,\" then do not eat it, out of consideration for the one who informed you, and for the sake of conscience--</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> I mean the other's conscience, not your own. For why should my liberty be subject to the judgment of someone else's conscience?</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> If I partake with thankfulness, why should I be denounced because of that for which I give thanks?</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> So, whether you eat or drink, or whatever you do, do everything for the glory of God.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> Give no offense to Jews or to Greeks or to the church of God,</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> just as I try to please everyone in everything I do, not seeking my own advantage, but that of many, so that they may be saved.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"11\">\r\n\t\t\t<VERS vnumber=\"1\"> Be imitators of me, as I am of Christ.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> I commend you because you remember me in everything and maintain the traditions just as I handed them on to you.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> But I want you to understand that Christ is the head of every man, and the husband is the head of his wife, and God is the head of Christ. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Any man who prays or prophesies with something on his head disgraces his head,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> but any woman who prays or prophesies with her head unveiled disgraces her head-- it is one and the same thing as having her head shaved.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For if a woman will not veil herself, then she should cut off her hair; but if it is disgraceful for a woman to have her hair cut off or to be shaved, she should wear a veil.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> For a man ought not to have his head veiled, since he is the image and reflection of God; but woman is the reflection of man. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Indeed, man was not made from woman, but woman from man.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Neither was man created for the sake of woman, but woman for the sake of man.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For this reason a woman ought to have a symbol of authority on her head, because of the angels. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Nevertheless, in the Lord woman is not independent of man or man independent of woman.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> For just as woman came from man, so man comes through woman; but all things come from God.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Judge for yourselves: is it proper for a woman to pray to God with her head unveiled?</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Does not nature itself teach you that if a man wears long hair, it is degrading to him,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> but if a woman has long hair, it is her glory? For her hair is given to her for a covering.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> But if anyone is disposed to be contentious-- we have no such custom, nor do the churches of God.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Now in the following instructions I do not commend you, because when you come together it is not for the better but for the worse.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> For, to begin with, when you come together as a church, I hear that there are divisions among you; and to some extent I believe it.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Indeed, there have to be factions among you, for only so will it become clear who among you are genuine.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> When you come together, it is not really to eat the Lord's supper.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> For when the time comes to eat, each of you goes ahead with your own supper, and one goes hungry and another becomes drunk.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> What! Do you not have homes to eat and drink in? Or do you show contempt for the church of God and humiliate those who have nothing? What should I say to you? Should I commend you? In this matter I do not commend you!</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> For I received from the Lord what I also handed on to you, that the Lord Jesus on the night when he was betrayed took a loaf of bread,</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> and when he had given thanks, he broke it and said, \"This is my body that is for you. Do this in remembrance of me.\" </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> In the same way he took the cup also, after supper, saying, \"This cup is the new covenant in my blood. Do this, as often as you drink it, in remembrance of me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> For as often as you eat this bread and drink the cup, you proclaim the Lord's death until he comes.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Whoever, therefore, eats the bread or drinks the cup of the Lord in an unworthy manner will be answerable for the body and blood of the Lord.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Examine yourselves, and only then eat of the bread and drink of the cup.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> For all who eat and drink without discerning the body, eat and drink judgment against themselves. </VERS>\r\n\t\t\t<VERS vnumber=\"30\"> For this reason many of you are weak and ill, and some have died. </VERS>\r\n\t\t\t<VERS vnumber=\"31\"> But if we judged ourselves, we would not be judged.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> But when we are judged by the Lord, we are disciplined so that we may not be condemned along with the world. </VERS>\r\n\t\t\t<VERS vnumber=\"33\"> So then, my brothers and sisters, when you come together to eat, wait for one another. </VERS>\r\n\t\t\t<VERS vnumber=\"34\"> If you are hungry, eat at home, so that when you come together, it will not be for your condemnation. About the other things I will give instructions when I come.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"12\">\r\n\t\t\t<VERS vnumber=\"1\"> Now concerning spiritual gifts, brothers and sisters, I do not want you to be uninformed. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> You know that when you were pagans, you were enticed and led astray to idols that could not speak.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Therefore I want you to understand that no one speaking by the Spirit of God ever says \"Let Jesus be cursed!\" and no one can say \"Jesus is Lord\" except by the Holy Spirit.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Now there are varieties of gifts, but the same Spirit;</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> and there are varieties of services, but the same Lord;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> and there are varieties of activities, but it is the same God who activates all of them in everyone.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> To each is given the manifestation of the Spirit for the common good.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> To one is given through the Spirit the utterance of wisdom, and to another the utterance of knowledge according to the same Spirit,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> to another faith by the same Spirit, to another gifts of healing by the one Spirit,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> to another the working of miracles, to another prophecy, to another the discernment of spirits, to another various kinds of tongues, to another the interpretation of tongues.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> All these are activated by one and the same Spirit, who allots to each one individually just as the Spirit chooses.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> For just as the body is one and has many members, and all the members of the body, though many, are one body, so it is with Christ.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> For in the one Spirit we were all baptized into one body-- Jews or Greeks, slaves or free-- and we were all made to drink of one Spirit.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Indeed, the body does not consist of one member but of many.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> If the foot would say, \"Because I am not a hand, I do not belong to the body,\" that would not make it any less a part of the body.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> And if the ear would say, \"Because I am not an eye, I do not belong to the body,\" that would not make it any less a part of the body.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> If the whole body were an eye, where would the hearing be? If the whole body were hearing, where would the sense of smell be?</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> But as it is, God arranged the members in the body, each one of them, as he chose.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> If all were a single member, where would the body be?</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> As it is, there are many members, yet one body.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> The eye cannot say to the hand, \"I have no need of you,\" nor again the head to the feet, \"I have no need of you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> On the contrary, the members of the body that seem to be weaker are indispensable,</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> and those members of the body that we think less honorable we clothe with greater honor, and our less respectable members are treated with greater respect;</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> whereas our more respectable members do not need this. But God has so arranged the body, giving the greater honor to the inferior member,</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> that there may be no dissension within the body, but the members may have the same care for one another.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> If one member suffers, all suffer together with it; if one member is honored, all rejoice together with it.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Now you are the body of Christ and individually members of it.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> And God has appointed in the church first apostles, second prophets, third teachers; then deeds of power, then gifts of healing, forms of assistance, forms of leadership, various kinds of tongues.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Are all apostles? Are all prophets? Are all teachers? Do all work miracles?</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> Do all possess gifts of healing? Do all speak in tongues? Do all interpret?</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> But strive for the greater gifts. And I will show you a still more excellent way.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"13\">\r\n\t\t\t<VERS vnumber=\"1\"> If I speak in the tongues of mortals and of angels, but do not have love, I am a noisy gong or a clanging cymbal.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And if I have prophetic powers, and understand all mysteries and all knowledge, and if I have all faith, so as to remove mountains, but do not have love, I am nothing.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> If I give away all my possessions, and if I hand over my body so that I may boast, but do not have love, I gain nothing. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Love is patient; love is kind; love is not envious or boastful or arrogant</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> or rude. It does not insist on its own way; it is not irritable or resentful;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> it does not rejoice in wrongdoing, but rejoices in the truth.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> It bears all things, believes all things, hopes all things, endures all things.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Love never ends. But as for prophecies, they will come to an end; as for tongues, they will cease; as for knowledge, it will come to an end.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> For we know only in part, and we prophesy only in part;</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> but when the complete comes, the partial will come to an end.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> When I was a child, I spoke like a child, I thought like a child, I reasoned like a child; when I became an adult, I put an end to childish ways.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> For now we see in a mirror, dimly, but then we will see face to face. Now I know only in part; then I will know fully, even as I have been fully known. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And now faith, hope, and love abide, these three; and the greatest of these is love.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"14\">\r\n\t\t\t<VERS vnumber=\"1\"> Pursue love and strive for the spiritual gifts, and especially that you may prophesy.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> For those who speak in a tongue do not speak to other people but to God; for nobody understands them, since they are speaking mysteries in the Spirit.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> On the other hand, those who prophesy speak to other people for their upbuilding and encouragement and consolation.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Those who speak in a tongue build up themselves, but those who prophesy build up the church.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Now I would like all of you to speak in tongues, but even more to prophesy. One who prophesies is greater than one who speaks in tongues, unless someone interprets, so that the church may be built up.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Now, brothers and sisters, if I come to you speaking in tongues, how will I benefit you unless I speak to you in some revelation or knowledge or prophecy or teaching? </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> It is the same way with lifeless instruments that produce sound, such as the flute or the harp. If they do not give distinct notes, how will anyone know what is being played?</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And if the bugle gives an indistinct sound, who will get ready for battle?</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> So with yourselves; if in a tongue you utter speech that is not intelligible, how will anyone know what is being said? For you will be speaking into the air.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> There are doubtless many different kinds of sounds in the world, and nothing is without sound.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> If then I do not know the meaning of a sound, I will be a foreigner to the speaker and the speaker a foreigner to me.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> So with yourselves; since you are eager for spiritual gifts, strive to excel in them for building up the church.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Therefore, one who speaks in a tongue should pray for the power to interpret.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> For if I pray in a tongue, my spirit prays but my mind is unproductive.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> What should I do then? I will pray with the spirit, but I will pray with the mind also; I will sing praise with the spirit, but I will sing praise with the mind also.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Otherwise, if you say a blessing with the spirit, how can anyone in the position of an outsider say the \"Amen\" to your thanksgiving, since the outsider does not know what you are saying?</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> For you may give thanks well enough, but the other person is not built up.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> I thank God that I speak in tongues more than all of you;</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> nevertheless, in church I would rather speak five words with my mind, in order to instruct others also, than ten thousand words in a tongue.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Brothers and sisters, do not be children in your thinking; rather, be infants in evil, but in thinking be adults. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> In the law it is written, \"By people of strange tongues and by the lips of foreigners I will speak to this people; yet even then they will not listen to me,\" says the Lord.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Tongues, then, are a sign not for believers but for unbelievers, while prophecy is not for unbelievers but for believers.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> If, therefore, the whole church comes together and all speak in tongues, and outsiders or unbelievers enter, will they not say that you are out of your mind?</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> But if all prophesy, an unbeliever or outsider who enters is reproved by all and called to account by all.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> After the secrets of the unbeliever's heart are disclosed, that person will bow down before God and worship him, declaring, \"God is really among you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> What should be done then, my friends? When you come together, each one has a hymn, a lesson, a revelation, a tongue, or an interpretation. Let all things be done for building up. </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> If anyone speaks in a tongue, let there be only two or at most three, and each in turn; and let one interpret.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> But if there is no one to interpret, let them be silent in church and speak to themselves and to God.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Let two or three prophets speak, and let the others weigh what is said.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> If a revelation is made to someone else sitting nearby, let the first person be silent.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> For you can all prophesy one by one, so that all may learn and all be encouraged.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> And the spirits of prophets are subject to the prophets,</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> for God is a God not of disorder but of peace. (As in all the churches of the saints,</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> women should be silent in the churches. For they are not permitted to speak, but should be subordinate, as the law also says.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> If there is anything they desire to know, let them ask their husbands at home. For it is shameful for a woman to speak in church. </VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Or did the word of God originate with you? Or are you the only ones it has reached?)</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> Anyone who claims to be a prophet, or to have spiritual powers, must acknowledge that what I am writing to you is a command of the Lord.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> Anyone who does not recognize this is not to be recognized.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> So, my friends, be eager to prophesy, and do not forbid speaking in tongues; </VERS>\r\n\t\t\t<VERS vnumber=\"40\"> but all things should be done decently and in order.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"15\">\r\n\t\t\t<VERS vnumber=\"1\"> Now I would remind you, brothers and sisters, of the good news that I proclaimed to you, which you in turn received, in which also you stand, </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> through which also you are being saved, if you hold firmly to the message that I proclaimed to you-- unless you have come to believe in vain.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For I handed on to you as of first importance what I in turn had received: that Christ died for our sins in accordance with the scriptures,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> and that he was buried, and that he was raised on the third day in accordance with the scriptures,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> and that he appeared to Cephas, then to the twelve.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then he appeared to more than five hundred brothers and sisters at one time, most of whom are still alive, though some have died. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then he appeared to James, then to all the apostles.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Last of all, as to one untimely born, he appeared also to me.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> For I am the least of the apostles, unfit to be called an apostle, because I persecuted the church of God.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> But by the grace of God I am what I am, and his grace toward me has not been in vain. On the contrary, I worked harder than any of them-- though it was not I, but the grace of God that is with me.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Whether then it was I or they, so we proclaim and so you have come to believe.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Now if Christ is proclaimed as raised from the dead, how can some of you say there is no resurrection of the dead?</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> If there is no resurrection of the dead, then Christ has not been raised;</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> and if Christ has not been raised, then our proclamation has been in vain and your faith has been in vain.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> We are even found to be misrepresenting God, because we testified of God that he raised Christ-- whom he did not raise if it is true that the dead are not raised.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> For if the dead are not raised, then Christ has not been raised.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> If Christ has not been raised, your faith is futile and you are still in your sins.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then those also who have died in Christ have perished. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> If for this life only we have hoped in Christ, we are of all people most to be pitied.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> But in fact Christ has been raised from the dead, the first fruits of those who have died. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> For since death came through a human being, the resurrection of the dead has also come through a human being;</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> for as all die in Adam, so all will be made alive in Christ.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> But each in his own order: Christ the first fruits, then at his coming those who belong to Christ.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Then comes the end, when he hands over the kingdom to God the Father, after he has destroyed every ruler and every authority and power. </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> For he must reign until he has put all his enemies under his feet.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> The last enemy to be destroyed is death.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> For \"God has put all things in subjection under his feet.\" But when it says, \"All things are put in subjection,\" it is plain that this does not include the one who put all things in subjection under him. </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> When all things are subjected to him, then the Son himself will also be subjected to the one who put all things in subjection under him, so that God may be all in all.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Otherwise, what will those people do who receive baptism on behalf of the dead? If the dead are not raised at all, why are people baptized on their behalf?</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> And why are we putting ourselves in danger every hour?</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> I die every day! That is as certain, brothers and sisters, as my boasting of you-- a boast that I make in Christ Jesus our Lord.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> If with merely human hopes I fought with wild animals at Ephesus, what would I have gained by it? If the dead are not raised, \"Let us eat and drink, for tomorrow we die.\"</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Do not be deceived: \"Bad company ruins good morals.\"</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> Come to a sober and right mind, and sin no more; for some people have no knowledge of God. I say this to your shame.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> But someone will ask, \"How are the dead raised? With what kind of body do they come?\"</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Fool! What you sow does not come to life unless it dies.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> And as for what you sow, you do not sow the body that is to be, but a bare seed, perhaps of wheat or of some other grain.</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> But God gives it a body as he has chosen, and to each kind of seed its own body.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> Not all flesh is alike, but there is one flesh for human beings, another for animals, another for birds, and another for fish.</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> There are both heavenly bodies and earthly bodies, but the glory of the heavenly is one thing, and that of the earthly is another.</VERS>\r\n\t\t\t<VERS vnumber=\"41\"> There is one glory of the sun, and another glory of the moon, and another glory of the stars; indeed, star differs from star in glory.</VERS>\r\n\t\t\t<VERS vnumber=\"42\"> So it is with the resurrection of the dead. What is sown is perishable, what is raised is imperishable.</VERS>\r\n\t\t\t<VERS vnumber=\"43\"> It is sown in dishonor, it is raised in glory. It is sown in weakness, it is raised in power.</VERS>\r\n\t\t\t<VERS vnumber=\"44\"> It is sown a physical body, it is raised a spiritual body. If there is a physical body, there is also a spiritual body.</VERS>\r\n\t\t\t<VERS vnumber=\"45\"> Thus it is written, \"The first man, Adam, became a living being\"; the last Adam became a life-giving spirit.</VERS>\r\n\t\t\t<VERS vnumber=\"46\"> But it is not the spiritual that is first, but the physical, and then the spiritual.</VERS>\r\n\t\t\t<VERS vnumber=\"47\"> The first man was from the earth, a man of dust; the second man is from heaven. </VERS>\r\n\t\t\t<VERS vnumber=\"48\"> As was the man of dust, so are those who are of the dust; and as is the man of heaven, so are those who are of heaven.</VERS>\r\n\t\t\t<VERS vnumber=\"49\"> Just as we have borne the image of the man of dust, we will also bear the image of the man of heaven. </VERS>\r\n\t\t\t<VERS vnumber=\"50\"> What I am saying, brothers and sisters, is this: flesh and blood cannot inherit the kingdom of God, nor does the perishable inherit the imperishable. </VERS>\r\n\t\t\t<VERS vnumber=\"51\"> Listen, I will tell you a mystery! We will not all die, but we will all be changed, </VERS>\r\n\t\t\t<VERS vnumber=\"52\"> in a moment, in the twinkling of an eye, at the last trumpet. For the trumpet will sound, and the dead will be raised imperishable, and we will be changed.</VERS>\r\n\t\t\t<VERS vnumber=\"53\"> For this perishable body must put on imperishability, and this mortal body must put on immortality.</VERS>\r\n\t\t\t<VERS vnumber=\"54\"> When this perishable body puts on imperishability, and this mortal body puts on immortality, then the saying that is written will be fulfilled: \"Death has been swallowed up in victory.\"</VERS>\r\n\t\t\t<VERS vnumber=\"55\"> \"Where, O death, is your victory? Where, O death, is your sting?\"</VERS>\r\n\t\t\t<VERS vnumber=\"56\"> The sting of death is sin, and the power of sin is the law.</VERS>\r\n\t\t\t<VERS vnumber=\"57\"> But thanks be to God, who gives us the victory through our Lord Jesus Christ.</VERS>\r\n\t\t\t<VERS vnumber=\"58\"> Therefore, my beloved, be steadfast, immovable, always excelling in the work of the Lord, because you know that in the Lord your labor is not in vain. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"16\">\r\n\t\t\t<VERS vnumber=\"1\"> Now concerning the collection for the saints: you should follow the directions I gave to the churches of Galatia.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> On the first day of every week, each of you is to put aside and save whatever extra you earn, so that collections need not be taken when I come.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And when I arrive, I will send any whom you approve with letters to take your gift to Jerusalem.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> If it seems advisable that I should go also, they will accompany me.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> I will visit you after passing through Macedonia-- for I intend to pass through Macedonia--</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> and perhaps I will stay with you or even spend the winter, so that you may send me on my way, wherever I go.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> I do not want to see you now just in passing, for I hope to spend some time with you, if the Lord permits.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But I will stay in Ephesus until Pentecost,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> for a wide door for effective work has opened to me, and there are many adversaries.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> If Timothy comes, see that he has nothing to fear among you, for he is doing the work of the Lord just as I am;</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> therefore let no one despise him. Send him on his way in peace, so that he may come to me; for I am expecting him with the brothers.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Now concerning our brother Apollos, I strongly urged him to visit you with the other brothers, but he was not at all willing to come now. He will come when he has the opportunity. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Keep alert, stand firm in your faith, be courageous, be strong.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Let all that you do be done in love.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Now, brothers and sisters, you know that members of the household of Stephanas were the first converts in Achaia, and they have devoted themselves to the service of the saints;</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> I urge you to put yourselves at the service of such people, and of everyone who works and toils with them.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> I rejoice at the coming of Stephanas and Fortunatus and Achaicus, because they have made up for your absence;</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> for they refreshed my spirit as well as yours. So give recognition to such persons.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The churches of Asia send greetings. Aquila and Prisca, together with the church in their house, greet you warmly in the Lord.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> All the brothers and sisters send greetings. Greet one another with a holy kiss. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> I, Paul, write this greeting with my own hand.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Let anyone be accursed who has no love for the Lord. Our Lord, come! </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> The grace of the Lord Jesus be with you.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> My love be with all of you in Christ Jesus. </VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"47\" bname=\"2 Corinthians\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> Paul, an apostle of Christ Jesus by the will of God, and Timothy our brother, To the church of God that is in Corinth, including all the saints throughout Achaia:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Grace to you and peace from God our Father and the Lord Jesus Christ.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Blessed be the God and Father of our Lord Jesus Christ, the Father of mercies and the God of all consolation,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> who consoles us in all our affliction, so that we may be able to console those who are in any affliction with the consolation with which we ourselves are consoled by God.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> For just as the sufferings of Christ are abundant for us, so also our consolation is abundant through Christ.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> If we are being afflicted, it is for your consolation and salvation; if we are being consoled, it is for your consolation, which you experience when you patiently endure the same sufferings that we are also suffering.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Our hope for you is unshaken; for we know that as you share in our sufferings, so also you share in our consolation.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> We do not want you to be unaware, brothers and sisters, of the affliction we experienced in Asia; for we were so utterly, unbearably crushed that we despaired of life itself. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Indeed, we felt that we had received the sentence of death so that we would rely not on ourselves but on God who raises the dead.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> He who rescued us from so deadly a peril will continue to rescue us; on him we have set our hope that he will rescue us again,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> as you also join in helping us by your prayers, so that many will give thanks on our behalf for the blessing granted us through the prayers of many. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Indeed, this is our boast, the testimony of our conscience: we have behaved in the world with frankness and godly sincerity, not by earthly wisdom but by the grace of God-- and all the more toward you.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> For we write you nothing other than what you can read and also understand; I hope you will understand until the end--</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> as you have already understood us in part-- that on the day of the Lord Jesus we are your boast even as you are our boast.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Since I was sure of this, I wanted to come to you first, so that you might have a double favor; </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> I wanted to visit you on my way to Macedonia, and to come back to you from Macedonia and have you send me on to Judea.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Was I vacillating when I wanted to do this? Do I make my plans according to ordinary human standards, ready to say \"Yes, yes\" and \"No, no\" at the same time? </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> As surely as God is faithful, our word to you has not been \"Yes and No.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> For the Son of God, Jesus Christ, whom we proclaimed among you, Silvanus and Timothy and I, was not \"Yes and No\"; but in him it is always \"Yes.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> For in him every one of God's promises is a \"Yes.\" For this reason it is through him that we say the \"Amen,\" to the glory of God.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> But it is God who establishes us with you in Christ and has anointed us,</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> by putting his seal on us and giving us his Spirit in our hearts as a first installment.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> But I call on God as witness against me: it was to spare you that I did not come again to Corinth.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> I do not mean to imply that we lord it over your faith; rather, we are workers with you for your joy, because you stand firm in the faith.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> So I made up my mind not to make you another painful visit.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> For if I cause you pain, who is there to make me glad but the one whom I have pained?</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And I wrote as I did, so that when I came, I might not suffer pain from those who should have made me rejoice; for I am confident about all of you, that my joy would be the joy of all of you.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For I wrote you out of much distress and anguish of heart and with many tears, not to cause you pain, but to let you know the abundant love that I have for you.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> But if anyone has caused pain, he has caused it not to me, but to some extent-- not to exaggerate it-- to all of you.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> This punishment by the majority is enough for such a person;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> so now instead you should forgive and console him, so that he may not be overwhelmed by excessive sorrow.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> So I urge you to reaffirm your love for him.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> I wrote for this reason: to test you and to know whether you are obedient in everything.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Anyone whom you forgive, I also forgive. What I have forgiven, if I have forgiven anything, has been for your sake in the presence of Christ.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> And we do this so that we may not be outwitted by Satan; for we are not ignorant of his designs.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> When I came to Troas to proclaim the good news of Christ, a door was opened for me in the Lord;</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> but my mind could not rest because I did not find my brother Titus there. So I said farewell to them and went on to Macedonia.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But thanks be to God, who in Christ always leads us in triumphal procession, and through us spreads in every place the fragrance that comes from knowing him.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> For we are the aroma of Christ to God among those who are being saved and among those who are perishing;</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> to the one a fragrance from death to death, to the other a fragrance from life to life. Who is sufficient for these things?</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> For we are not peddlers of God's word like so many; but in Christ we speak as persons of sincerity, as persons sent from God and standing in his presence.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> Are we beginning to commend ourselves again? Surely we do not need, as some do, letters of recommendation to you or from you, do we?</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> You yourselves are our letter, written on our hearts, to be known and read by all; </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> and you show that you are a letter of Christ, prepared by us, written not with ink but with the Spirit of the living God, not on tablets of stone but on tablets of human hearts.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Such is the confidence that we have through Christ toward God.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Not that we are competent of ourselves to claim anything as coming from us; our competence is from God,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> who has made us competent to be ministers of a new covenant, not of letter but of spirit; for the letter kills, but the Spirit gives life.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Now if the ministry of death, chiseled in letters on stone tablets, came in glory so that the people of Israel could not gaze at Moses' face because of the glory of his face, a glory now set aside, </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> how much more will the ministry of the Spirit come in glory?</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> For if there was glory in the ministry of condemnation, much more does the ministry of justification abound in glory!</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Indeed, what once had glory has lost its glory because of the greater glory;</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> for if what was set aside came through glory, much more has the permanent come in glory!</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Since, then, we have such a hope, we act with great boldness,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> not like Moses, who put a veil over his face to keep the people of Israel from gazing at the end of the glory that was being set aside. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But their minds were hardened. Indeed, to this very day, when they hear the reading of the old covenant, that same veil is still there, since only in Christ is it set aside.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Indeed, to this very day whenever Moses is read, a veil lies over their minds;</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> but when one turns to the Lord, the veil is removed.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Now the Lord is the Spirit, and where the Spirit of the Lord is, there is freedom.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> And all of us, with unveiled faces, seeing the glory of the Lord as though reflected in a mirror, are being transformed into the same image from one degree of glory to another; for this comes from the Lord, the Spirit.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> Therefore, since it is by God's mercy that we are engaged in this ministry, we do not lose heart.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> We have renounced the shameful things that one hides; we refuse to practice cunning or to falsify God's word; but by the open statement of the truth we commend ourselves to the conscience of everyone in the sight of God.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And even if our gospel is veiled, it is veiled to those who are perishing.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> In their case the god of this world has blinded the minds of the unbelievers, to keep them from seeing the light of the gospel of the glory of Christ, who is the image of God.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> For we do not proclaim ourselves; we proclaim Jesus Christ as Lord and ourselves as your slaves for Jesus' sake.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For it is the God who said, \"Let light shine out of darkness,\" who has shone in our hearts to give the light of the knowledge of the glory of God in the face of Jesus Christ.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But we have this treasure in clay jars, so that it may be made clear that this extraordinary power belongs to God and does not come from us.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> We are afflicted in every way, but not crushed; perplexed, but not driven to despair;</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> persecuted, but not forsaken; struck down, but not destroyed;</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> always carrying in the body the death of Jesus, so that the life of Jesus may also be made visible in our bodies.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> For while we live, we are always being given up to death for Jesus' sake, so that the life of Jesus may be made visible in our mortal flesh.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> So death is at work in us, but life in you.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> But just as we have the same spirit of faith that is in accordance with scripture-- \"I believed, and so I spoke\"-- we also believe, and so we speak,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> because we know that the one who raised the Lord Jesus will raise us also with Jesus, and will bring us with you into his presence.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Yes, everything is for your sake, so that grace, as it extends to more and more people, may increase thanksgiving, to the glory of God.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> So we do not lose heart. Even though our outer nature is wasting away, our inner nature is being renewed day by day.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> For this slight momentary affliction is preparing us for an eternal weight of glory beyond all measure,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> because we look not at what can be seen but at what cannot be seen; for what can be seen is temporary, but what cannot be seen is eternal.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"5\">\r\n\t\t\t<VERS vnumber=\"1\"> For we know that if the earthly tent we live in is destroyed, we have a building from God, a house not made with hands, eternal in the heavens.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> For in this tent we groan, longing to be clothed with our heavenly dwelling--</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> if indeed, when we have taken it off we will not be found naked. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For while we are still in this tent, we groan under our burden, because we wish not to be unclothed but to be further clothed, so that what is mortal may be swallowed up by life.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> He who has prepared us for this very thing is God, who has given us the Spirit as a guarantee.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> So we are always confident; even though we know that while we are at home in the body we are away from the Lord--</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> for we walk by faith, not by sight.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Yes, we do have confidence, and we would rather be away from the body and at home with the Lord.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> So whether we are at home or away, we make it our aim to please him.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For all of us must appear before the judgment seat of Christ, so that each may receive recompense for what has been done in the body, whether good or evil.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Therefore, knowing the fear of the Lord, we try to persuade others; but we ourselves are well known to God, and I hope that we are also well known to your consciences.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> We are not commending ourselves to you again, but giving you an opportunity to boast about us, so that you may be able to answer those who boast in outward appearance and not in the heart.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> For if we are beside ourselves, it is for God; if we are in our right mind, it is for you.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> For the love of Christ urges us on, because we are convinced that one has died for all; therefore all have died.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And he died for all, so that those who live might live no longer for themselves, but for him who died and was raised for them.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> From now on, therefore, we regard no one from a human point of view; even though we once knew Christ from a human point of view, we know him no longer in that way. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> So if anyone is in Christ, there is a new creation: everything old has passed away; see, everything has become new!</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> All this is from God, who reconciled us to himself through Christ, and has given us the ministry of reconciliation;</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> that is, in Christ God was reconciling the world to himself, not counting their trespasses against them, and entrusting the message of reconciliation to us. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> So we are ambassadors for Christ, since God is making his appeal through us; we entreat you on behalf of Christ, be reconciled to God.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> For our sake he made him to be sin who knew no sin, so that in him we might become the righteousness of God.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"6\">\r\n\t\t\t<VERS vnumber=\"1\"> As we work together with him, we urge you also not to accept the grace of God in vain. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> For he says, \"At an acceptable time I have listened to you, and on a day of salvation I have helped you.\" See, now is the acceptable time; see, now is the day of salvation!</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> We are putting no obstacle in anyone's way, so that no fault may be found with our ministry,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> but as servants of God we have commended ourselves in every way: through great endurance, in afflictions, hardships, calamities,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> beatings, imprisonments, riots, labors, sleepless nights, hunger;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> by purity, knowledge, patience, kindness, holiness of spirit, genuine love,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> truthful speech, and the power of God; with the weapons of righteousness for the right hand and for the left;</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> in honor and dishonor, in ill repute and good repute. We are treated as impostors, and yet are true;</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> as unknown, and yet are well known; as dying, and see-- we are alive; as punished, and yet not killed;</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> as sorrowful, yet always rejoicing; as poor, yet making many rich; as having nothing, and yet possessing everything.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> We have spoken frankly to you Corinthians; our heart is wide open to you.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> There is no restriction in our affections, but only in yours.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> In return-- I speak as to children-- open wide your hearts also.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Do not be mismatched with unbelievers. For what partnership is there between righteousness and lawlessness? Or what fellowship is there between light and darkness?</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> What agreement does Christ have with Beliar? Or what does a believer share with an unbeliever?</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> What agreement has the temple of God with idols? For we are the temple of the living God; as God said, \"I will live in them and walk among them, and I will be their God, and they shall be my people. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Therefore come out from them, and be separate from them, says the Lord, and touch nothing unclean; then I will welcome you,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> and I will be your father, and you shall be my sons and daughters, says the Lord Almighty.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"7\">\r\n\t\t\t<VERS vnumber=\"1\"> Since we have these promises, beloved, let us cleanse ourselves from every defilement of body and of spirit, making holiness perfect in the fear of God.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Make room in your hearts for us; we have wronged no one, we have corrupted no one, we have taken advantage of no one. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> I do not say this to condemn you, for I said before that you are in our hearts, to die together and to live together.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> I often boast about you; I have great pride in you; I am filled with consolation; I am overjoyed in all our affliction.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> For even when we came into Macedonia, our bodies had no rest, but we were afflicted in every way-- disputes without and fears within.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> But God, who consoles the downcast, consoled us by the arrival of Titus,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> and not only by his coming, but also by the consolation with which he was consoled about you, as he told us of your longing, your mourning, your zeal for me, so that I rejoiced still more.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> For even if I made you sorry with my letter, I do not regret it (though I did regret it, for I see that I grieved you with that letter, though only briefly).</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Now I rejoice, not because you were grieved, but because your grief led to repentance; for you felt a godly grief, so that you were not harmed in any way by us.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For godly grief produces a repentance that leads to salvation and brings no regret, but worldly grief produces death.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> For see what earnestness this godly grief has produced in you, what eagerness to clear yourselves, what indignation, what alarm, what longing, what zeal, what punishment! At every point you have proved yourselves guiltless in the matter.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> So although I wrote to you, it was not on account of the one who did the wrong, nor on account of the one who was wronged, but in order that your zeal for us might be made known to you before God.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> In this we find comfort. In addition to our own consolation, we rejoiced still more at the joy of Titus, because his mind has been set at rest by all of you.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> For if I have been somewhat boastful about you to him, I was not disgraced; but just as everything we said to you was true, so our boasting to Titus has proved true as well.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And his heart goes out all the more to you, as he remembers the obedience of all of you, and how you welcomed him with fear and trembling.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> I rejoice, because I have complete confidence in you.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"8\">\r\n\t\t\t<VERS vnumber=\"1\"> We want you to know, brothers and sisters, about the grace of God that has been granted to the churches of Macedonia; </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> for during a severe ordeal of affliction, their abundant joy and their extreme poverty have overflowed in a wealth of generosity on their part.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For, as I can testify, they voluntarily gave according to their means, and even beyond their means,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> begging us earnestly for the privilege of sharing in this ministry to the saints--</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> and this, not merely as we expected; they gave themselves first to the Lord and, by the will of God, to us,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> so that we might urge Titus that, as he had already made a beginning, so he should also complete this generous undertaking among you. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Now as you excel in everything-- in faith, in speech, in knowledge, in utmost eagerness, and in our love for you-- so we want you to excel also in this generous undertaking.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> I do not say this as a command, but I am testing the genuineness of your love against the earnestness of others.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> For you know the generous act of our Lord Jesus Christ, that though he was rich, yet for your sakes he became poor, so that by his poverty you might become rich. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And in this matter I am giving my advice: it is appropriate for you who began last year not only to do something but even to desire to do something--</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> now finish doing it, so that your eagerness may be matched by completing it according to your means.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> For if the eagerness is there, the gift is acceptable according to what one has-- not according to what one does not have.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> I do not mean that there should be relief for others and pressure on you, but it is a question of a fair balance between</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> your present abundance and their need, so that their abundance may be for your need, in order that there may be a fair balance.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> As it is written, \"The one who had much did not have too much, and the one who had little did not have too little.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> But thanks be to God who put in the heart of Titus the same eagerness for you that I myself have.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> For he not only accepted our appeal, but since he is more eager than ever, he is going to you of his own accord.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> With him we are sending the brother who is famous among all the churches for his proclaiming the good news; </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> and not only that, but he has also been appointed by the churches to travel with us while we are administering this generous undertaking for the glory of the Lord himself and to show our goodwill. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> We intend that no one should blame us about this generous gift that we are administering,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> for we intend to do what is right not only in the Lord's sight but also in the sight of others.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> And with them we are sending our brother whom we have often tested and found eager in many matters, but who is now more eager than ever because of his great confidence in you.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> As for Titus, he is my partner and co-worker in your service; as for our brothers, they are messengers of the churches, the glory of Christ. </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Therefore openly before the churches, show them the proof of your love and of our reason for boasting about you.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"9\">\r\n\t\t\t<VERS vnumber=\"1\"> Now it is not necessary for me to write you about the ministry to the saints,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> for I know your eagerness, which is the subject of my boasting about you to the people of Macedonia, saying that Achaia has been ready since last year; and your zeal has stirred up most of them.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> But I am sending the brothers in order that our boasting about you may not prove to have been empty in this case, so that you may be ready, as I said you would be;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> otherwise, if some Macedonians come with me and find that you are not ready, we would be humiliated-- to say nothing of you-- in this undertaking.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> So I thought it necessary to urge the brothers to go on ahead to you, and arrange in advance for this bountiful gift that you have promised, so that it may be ready as a voluntary gift and not as an extortion.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> The point is this: the one who sows sparingly will also reap sparingly, and the one who sows bountifully will also reap bountifully.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Each of you must give as you have made up your mind, not reluctantly or under compulsion, for God loves a cheerful giver.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And God is able to provide you with every blessing in abundance, so that by always having enough of everything, you may share abundantly in every good work.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> As it is written, \"He scatters abroad, he gives to the poor; his righteousness endures forever.\" </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> He who supplies seed to the sower and bread for food will supply and multiply your seed for sowing and increase the harvest of your righteousness. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> You will be enriched in every way for your great generosity, which will produce thanksgiving to God through us;</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> for the rendering of this ministry not only supplies the needs of the saints but also overflows with many thanksgivings to God.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Through the testing of this ministry you glorify God by your obedience to the confession of the gospel of Christ and by the generosity of your sharing with them and with all others,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> while they long for you and pray for you because of the surpassing grace of God that he has given you.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Thanks be to God for his indescribable gift!</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"10\">\r\n\t\t\t<VERS vnumber=\"1\"> I myself, Paul, appeal to you by the meekness and gentleness of Christ-- I who am humble when face to face with you, but bold toward you when I am away!--</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> I ask that when I am present I need not show boldness by daring to oppose those who think we are acting according to human standards. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Indeed, we live as human beings, but we do not wage war according to human standards; </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> for the weapons of our warfare are not merely human, but they have divine power to destroy strongholds. We destroy arguments </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> and every proud obstacle raised up against the knowledge of God, and we take every thought captive to obey Christ.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> We are ready to punish every disobedience when your obedience is complete.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Look at what is before your eyes. If you are confident that you belong to Christ, remind yourself of this, that just as you belong to Christ, so also do we.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Now, even if I boast a little too much of our authority, which the Lord gave for building you up and not for tearing you down, I will not be ashamed of it.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> I do not want to seem as though I am trying to frighten you with my letters.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For they say, \"His letters are weighty and strong, but his bodily presence is weak, and his speech contemptible.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Let such people understand that what we say by letter when absent, we will also do when present.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> We do not dare to classify or compare ourselves with some of those who commend themselves. But when they measure themselves by one another, and compare themselves with one another, they do not show good sense.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> We, however, will not boast beyond limits, but will keep within the field that God has assigned to us, to reach out even as far as you.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> For we were not overstepping our limits when we reached you; we were the first to come all the way to you with the good news of Christ. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> We do not boast beyond limits, that is, in the labors of others; but our hope is that, as your faith increases, our sphere of action among you may be greatly enlarged,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> so that we may proclaim the good news in lands beyond you, without boasting of work already done in someone else's sphere of action. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> \"Let the one who boasts, boast in the Lord.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> For it is not those who commend themselves that are approved, but those whom the Lord commends.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"11\">\r\n\t\t\t<VERS vnumber=\"1\"> I wish you would bear with me in a little foolishness. Do bear with me!</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> I feel a divine jealousy for you, for I promised you in marriage to one husband, to present you as a chaste virgin to Christ.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> But I am afraid that as the serpent deceived Eve by its cunning, your thoughts will be led astray from a sincere and pure devotion to Christ. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For if someone comes and proclaims another Jesus than the one we proclaimed, or if you receive a different spirit from the one you received, or a different gospel from the one you accepted, you submit to it readily enough.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> I think that I am not in the least inferior to these super-apostles.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> I may be untrained in speech, but not in knowledge; certainly in every way and in all things we have made this evident to you.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Did I commit a sin by humbling myself so that you might be exalted, because I proclaimed God's good news to you free of charge? </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> I robbed other churches by accepting support from them in order to serve you.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> And when I was with you and was in need, I did not burden anyone, for my needs were supplied by the friends who came from Macedonia. So I refrained and will continue to refrain from burdening you in any way. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> As the truth of Christ is in me, this boast of mine will not be silenced in the regions of Achaia.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> And why? Because I do not love you? God knows I do!</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> And what I do I will also continue to do, in order to deny an opportunity to those who want an opportunity to be recognized as our equals in what they boast about.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> For such boasters are false apostles, deceitful workers, disguising themselves as apostles of Christ.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> And no wonder! Even Satan disguises himself as an angel of light.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> So it is not strange if his ministers also disguise themselves as ministers of righteousness. Their end will match their deeds.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> I repeat, let no one think that I am a fool; but if you do, then accept me as a fool, so that I too may boast a little.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> What I am saying in regard to this boastful confidence, I am saying not with the Lord's authority, but as a fool;</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> since many boast according to human standards, I will also boast. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> For you gladly put up with fools, being wise yourselves!</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> For you put up with it when someone makes slaves of you, or preys upon you, or takes advantage of you, or puts on airs, or gives you a slap in the face.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> To my shame, I must say, we were too weak for that! But whatever anyone dares to boast of-- I am speaking as a fool-- I also dare to boast of that.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Are they Hebrews? So am I. Are they Israelites? So am I. Are they descendants of Abraham? So am I.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Are they ministers of Christ? I am talking like a madman-- I am a better one: with far greater labors, far more imprisonments, with countless floggings, and often near death.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Five times I have received from the Jews the forty lashes minus one.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Three times I was beaten with rods. Once I received a stoning. Three times I was shipwrecked; for a night and a day I was adrift at sea;</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> on frequent journeys, in danger from rivers, danger from bandits, danger from my own people, danger from Gentiles, danger in the city, danger in the wilderness, danger at sea, danger from false brothers and sisters; </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> in toil and hardship, through many a sleepless night, hungry and thirsty, often without food, cold and naked.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> And, besides other things, I am under daily pressure because of my anxiety for all the churches.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Who is weak, and I am not weak? Who is made to stumble, and I am not indignant?</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> If I must boast, I will boast of the things that show my weakness.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> The God and Father of the Lord Jesus (blessed be he forever!) knows that I do not lie.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> In Damascus, the governor under King Aretas guarded the city of Damascus in order to seize me,</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> but I was let down in a basket through a window in the wall, and escaped from his hands. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"12\">\r\n\t\t\t<VERS vnumber=\"1\"> It is necessary to boast; nothing is to be gained by it, but I will go on to visions and revelations of the Lord.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> I know a person in Christ who fourteen years ago was caught up to the third heaven-- whether in the body or out of the body I do not know; God knows.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And I know that such a person-- whether in the body or out of the body I do not know; God knows--</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> was caught up into Paradise and heard things that are not to be told, that no mortal is permitted to repeat.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> On behalf of such a one I will boast, but on my own behalf I will not boast, except of my weaknesses.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> But if I wish to boast, I will not be a fool, for I will be speaking the truth. But I refrain from it, so that no one may think better of me than what is seen in me or heard from me,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> even considering the exceptional character of the revelations. Therefore, to keep me from being too elated, a thorn was given me in the flesh, a messenger of Satan to torment me, to keep me from being too elated.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Three times I appealed to the Lord about this, that it would leave me,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> but he said to me, \"My grace is sufficient for you, for power is made perfect in weakness.\" So, I will boast all the more gladly of my weaknesses, so that the power of Christ may dwell in me. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Therefore I am content with weaknesses, insults, hardships, persecutions, and calamities for the sake of Christ; for whenever I am weak, then I am strong.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> I have been a fool! You forced me to it. Indeed you should have been the ones commending me, for I am not at all inferior to these super-apostles, even though I am nothing.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The signs of a true apostle were performed among you with utmost patience, signs and wonders and mighty works.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> How have you been worse off than the other churches, except that I myself did not burden you? Forgive me this wrong!</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Here I am, ready to come to you this third time. And I will not be a burden, because I do not want what is yours but you; for children ought not to lay up for their parents, but parents for their children.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> I will most gladly spend and be spent for you. If I love you more, am I to be loved less?</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Let it be assumed that I did not burden you. Nevertheless (you say) since I was crafty, I took you in by deceit.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Did I take advantage of you through any of those whom I sent to you?</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> I urged Titus to go, and sent the brother with him. Titus did not take advantage of you, did he? Did we not conduct ourselves with the same spirit? Did we not take the same steps?</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Have you been thinking all along that we have been defending ourselves before you? We are speaking in Christ before God. Everything we do, beloved, is for the sake of building you up.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> For I fear that when I come, I may find you not as I wish, and that you may find me not as you wish; I fear that there may perhaps be quarreling, jealousy, anger, selfishness, slander, gossip, conceit, and disorder.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> I fear that when I come again, my God may humble me before you, and that I may have to mourn over many who previously sinned and have not repented of the impurity, sexual immorality, and licentiousness that they have practiced.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"13\">\r\n\t\t\t<VERS vnumber=\"1\"> This is the third time I am coming to you. \"Any charge must be sustained by the evidence of two or three witnesses.\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> I warned those who sinned previously and all the others, and I warn them now while absent, as I did when present on my second visit, that if I come again, I will not be lenient--</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> since you desire proof that Christ is speaking in me. He is not weak in dealing with you, but is powerful in you.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For he was crucified in weakness, but lives by the power of God. For we are weak in him, but in dealing with you we will live with him by the power of God. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Examine yourselves to see whether you are living in the faith. Test yourselves. Do you not realize that Jesus Christ is in you?-- unless, indeed, you fail to meet the test!</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> I hope you will find out that we have not failed.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But we pray to God that you may not do anything wrong-- not that we may appear to have met the test, but that you may do what is right, though we may seem to have failed.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> For we cannot do anything against the truth, but only for the truth.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> For we rejoice when we are weak and you are strong. This is what we pray for, that you may become perfect.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> So I write these things while I am away from you, so that when I come, I may not have to be severe in using the authority that the Lord has given me for building up and not for tearing down.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Finally, brothers and sisters, farewell. Put things in order, listen to my appeal, agree with one another, live in peace; and the God of love and peace will be with you. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Greet one another with a holy kiss. All the saints greet you.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The grace of the Lord Jesus Christ, the love of God, and the communion of the Holy Spirit be with all of you. </VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"48\" bname=\"Galatians\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> Paul an apostle-- sent neither by human commission nor from human authorities, but through Jesus Christ and God the Father, who raised him from the dead--</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> and all the members of God's family who are with me, To the churches of Galatia: </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Grace to you and peace from God our Father and the Lord Jesus Christ,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> who gave himself for our sins to set us free from the present evil age, according to the will of our God and Father,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> to whom be the glory forever and ever. Amen.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> I am astonished that you are so quickly deserting the one who called you in the grace of Christ and are turning to a different gospel--</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> not that there is another gospel, but there are some who are confusing you and want to pervert the gospel of Christ.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But even if we or an angel from heaven should proclaim to you a gospel contrary to what we proclaimed to you, let that one be accursed! </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> As we have said before, so now I repeat, if anyone proclaims to you a gospel contrary to what you received, let that one be accursed!</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Am I now seeking human approval, or God's approval? Or am I trying to please people? If I were still pleasing people, I would not be a servant of Christ.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> For I want you to know, brothers and sisters, that the gospel that was proclaimed by me is not of human origin; </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> for I did not receive it from a human source, nor was I taught it, but I received it through a revelation of Jesus Christ.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> You have heard, no doubt, of my earlier life in Judaism. I was violently persecuting the church of God and was trying to destroy it.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> I advanced in Judaism beyond many among my people of the same age, for I was far more zealous for the traditions of my ancestors.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> But when God, who had set me apart before I was born and called me through his grace, was pleased</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> to reveal his Son to me, so that I might proclaim him among the Gentiles, I did not confer with any human being, </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> nor did I go up to Jerusalem to those who were already apostles before me, but I went away at once into Arabia, and afterwards I returned to Damascus.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then after three years I did go up to Jerusalem to visit Cephas and stayed with him fifteen days;</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> but I did not see any other apostle except James the Lord's brother.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> In what I am writing to you, before God, I do not lie!</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then I went into the regions of Syria and Cilicia,</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> and I was still unknown by sight to the churches of Judea that are in Christ;</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> they only heard it said, \"The one who formerly was persecuting us is now proclaiming the faith he once tried to destroy.\"</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> And they glorified God because of me.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> Then after fourteen years I went up again to Jerusalem with Barnabas, taking Titus along with me.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> I went up in response to a revelation. Then I laid before them (though only in a private meeting with the acknowledged leaders) the gospel that I proclaim among the Gentiles, in order to make sure that I was not running, or had not run, in vain.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> But even Titus, who was with me, was not compelled to be circumcised, though he was a Greek.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But because of false believers secretly brought in, who slipped in to spy on the freedom we have in Christ Jesus, so that they might enslave us--</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> we did not submit to them even for a moment, so that the truth of the gospel might always remain with you.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And from those who were supposed to be acknowledged leaders (what they actually were makes no difference to me; God shows no partiality)-- those leaders contributed nothing to me.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> On the contrary, when they saw that I had been entrusted with the gospel for the uncircumcised, just as Peter had been entrusted with the gospel for the circumcised</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> (for he who worked through Peter making him an apostle to the circumcised also worked through me in sending me to the Gentiles),</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> and when James and Cephas and John, who were acknowledged pillars, recognized the grace that had been given to me, they gave to Barnabas and me the right hand of fellowship, agreeing that we should go to the Gentiles and they to the circumcised.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> They asked only one thing, that we remember the poor, which was actually what I was eager to do. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But when Cephas came to Antioch, I opposed him to his face, because he stood self-condemned;</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> for until certain people came from James, he used to eat with the Gentiles. But after they came, he drew back and kept himself separate for fear of the circumcision faction.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And the other Jews joined him in this hypocrisy, so that even Barnabas was led astray by their hypocrisy.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But when I saw that they were not acting consistently with the truth of the gospel, I said to Cephas before them all, \"If you, though a Jew, live like a Gentile and not like a Jew, how can you compel the Gentiles to live like Jews?\" </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> We ourselves are Jews by birth and not Gentile sinners;</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> yet we know that a person is justified not by the works of the law but through faith in Jesus Christ. And we have come to believe in Christ Jesus, so that we might be justified by faith in Christ, and not by doing the works of the law, because no one will be justified by the works of the law. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> But if, in our effort to be justified in Christ, we ourselves have been found to be sinners, is Christ then a servant of sin? Certainly not!</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> But if I build up again the very things that I once tore down, then I demonstrate that I am a transgressor.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> For through the law I died to the law, so that I might live to God. I have been crucified with Christ;</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> and it is no longer I who live, but it is Christ who lives in me. And the life I now live in the flesh I live by faith in the Son of God, who loved me and gave himself for me. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> I do not nullify the grace of God; for if justification comes through the law, then Christ died for nothing. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> You foolish Galatians! Who has bewitched you? It was before your eyes that Jesus Christ was publicly exhibited as crucified!</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> The only thing I want to learn from you is this: Did you receive the Spirit by doing the works of the law or by believing what you heard?</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Are you so foolish? Having started with the Spirit, are you now ending with the flesh?</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Did you experience so much for nothing?-- if it really was for nothing.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Well then, does God supply you with the Spirit and work miracles among you by your doing the works of the law, or by your believing what you heard? </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Just as Abraham \"believed God, and it was reckoned to him as righteousness,\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> so, you see, those who believe are the descendants of Abraham.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And the scripture, foreseeing that God would justify the Gentiles by faith, declared the gospel beforehand to Abraham, saying, \"All the Gentiles shall be blessed in you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> For this reason, those who believe are blessed with Abraham who believed.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For all who rely on the works of the law are under a curse; for it is written, \"Cursed is everyone who does not observe and obey all the things written in the book of the law.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Now it is evident that no one is justified before God by the law; for \"The one who is righteous will live by faith.\" </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> But the law does not rest on faith; on the contrary, \"Whoever does the works of the law will live by them.\" </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Christ redeemed us from the curse of the law by becoming a curse for us-- for it is written, \"Cursed is everyone who hangs on a tree\"--</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> in order that in Christ Jesus the blessing of Abraham might come to the Gentiles, so that we might receive the promise of the Spirit through faith.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Brothers and sisters, I give an example from daily life: once a person's will has been ratified, no one adds to it or annuls it. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Now the promises were made to Abraham and to his offspring; it does not say, \"And to offsprings,\" as of many; but it says, \"And to your offspring,\" that is, to one person, who is Christ. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> My point is this: the law, which came four hundred thirty years later, does not annul a covenant previously ratified by God, so as to nullify the promise.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> For if the inheritance comes from the law, it no longer comes from the promise; but God granted it to Abraham through the promise.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Why then the law? It was added because of transgressions, until the offspring would come to whom the promise had been made; and it was ordained through angels by a mediator. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Now a mediator involves more than one party; but God is one.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Is the law then opposed to the promises of God? Certainly not! For if a law had been given that could make alive, then righteousness would indeed come through the law.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> But the scripture has imprisoned all things under the power of sin, so that what was promised through faith in Jesus Christ might be given to those who believe. </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Now before faith came, we were imprisoned and guarded under the law until faith would be revealed.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Therefore the law was our disciplinarian until Christ came, so that we might be justified by faith.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> But now that faith has come, we are no longer subject to a disciplinarian,</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> for in Christ Jesus you are all children of God through faith.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> As many of you as were baptized into Christ have clothed yourselves with Christ.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> There is no longer Jew or Greek, there is no longer slave or free, there is no longer male and female; for all of you are one in Christ Jesus.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> And if you belong to Christ, then you are Abraham's offspring, heirs according to the promise. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> My point is this: heirs, as long as they are minors, are no better than slaves, though they are the owners of all the property;</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> but they remain under guardians and trustees until the date set by the father.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> So with us; while we were minors, we were enslaved to the elemental spirits of the world. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But when the fullness of time had come, God sent his Son, born of a woman, born under the law,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> in order to redeem those who were under the law, so that we might receive adoption as children.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And because you are children, God has sent the Spirit of his Son into our hearts, crying, \"Abba! Father!\" </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> So you are no longer a slave but a child, and if a child then also an heir, through God. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Formerly, when you did not know God, you were enslaved to beings that by nature are not gods.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Now, however, that you have come to know God, or rather to be known by God, how can you turn back again to the weak and beggarly elemental spirits? How can you want to be enslaved to them again? </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> You are observing special days, and months, and seasons, and years.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> I am afraid that my work for you may have been wasted.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Friends, I beg you, become as I am, for I also have become as you are. You have done me no wrong. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> You know that it was because of a physical infirmity that I first announced the gospel to you;</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> though my condition put you to the test, you did not scorn or despise me, but welcomed me as an angel of God, as Christ Jesus.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> What has become of the goodwill you felt? For I testify that, had it been possible, you would have torn out your eyes and given them to me.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Have I now become your enemy by telling you the truth?</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> They make much of you, but for no good purpose; they want to exclude you, so that you may make much of them.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> It is good to be made much of for a good purpose at all times, and not only when I am present with you.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> My little children, for whom I am again in the pain of childbirth until Christ is formed in you,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> I wish I were present with you now and could change my tone, for I am perplexed about you.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Tell me, you who desire to be subject to the law, will you not listen to the law?</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> For it is written that Abraham had two sons, one by a slave woman and the other by a free woman.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> One, the child of the slave, was born according to the flesh; the other, the child of the free woman, was born through the promise.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Now this is an allegory: these women are two covenants. One woman, in fact, is Hagar, from Mount Sinai, bearing children for slavery.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Now Hagar is Mount Sinai in Arabia and corresponds to the present Jerusalem, for she is in slavery with her children. </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> But the other woman corresponds to the Jerusalem above; she is free, and she is our mother.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> For it is written, \"Rejoice, you childless one, you who bear no children, burst into song and shout, you who endure no birth pangs; for the children of the desolate woman are more numerous than the children of the one who is married.\"</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Now you, my friends, are children of the promise, like Isaac. </VERS>\r\n\t\t\t<VERS vnumber=\"29\"> But just as at that time the child who was born according to the flesh persecuted the child who was born according to the Spirit, so it is now also.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> But what does the scripture say? \"Drive out the slave and her child; for the child of the slave will not share the inheritance with the child of the free woman.\"</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> So then, friends, we are children, not of the slave but of the free woman. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"5\">\r\n\t\t\t<VERS vnumber=\"1\"> For freedom Christ has set us free. Stand firm, therefore, and do not submit again to a yoke of slavery.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Listen! I, Paul, am telling you that if you let yourselves be circumcised, Christ will be of no benefit to you.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Once again I testify to every man who lets himself be circumcised that he is obliged to obey the entire law.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> You who want to be justified by the law have cut yourselves off from Christ; you have fallen away from grace.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> For through the Spirit, by faith, we eagerly wait for the hope of righteousness.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For in Christ Jesus neither circumcision nor uncircumcision counts for anything; the only thing that counts is faith working through love. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> You were running well; who prevented you from obeying the truth?</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Such persuasion does not come from the one who calls you.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> A little yeast leavens the whole batch of dough.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> I am confident about you in the Lord that you will not think otherwise. But whoever it is that is confusing you will pay the penalty.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But my friends, why am I still being persecuted if I am still preaching circumcision? In that case the offense of the cross has been removed. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> I wish those who unsettle you would castrate themselves!</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> For you were called to freedom, brothers and sisters; only do not use your freedom as an opportunity for self-indulgence, but through love become slaves to one another. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> For the whole law is summed up in a single commandment, \"You shall love your neighbor as yourself.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> If, however, you bite and devour one another, take care that you are not consumed by one another.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Live by the Spirit, I say, and do not gratify the desires of the flesh.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> For what the flesh desires is opposed to the Spirit, and what the Spirit desires is opposed to the flesh; for these are opposed to each other, to prevent you from doing what you want.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> But if you are led by the Spirit, you are not subject to the law.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Now the works of the flesh are obvious: fornication, impurity, licentiousness,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> idolatry, sorcery, enmities, strife, jealousy, anger, quarrels, dissensions, factions,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> envy, drunkenness, carousing, and things like these. I am warning you, as I warned you before: those who do such things will not inherit the kingdom of God. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> By contrast, the fruit of the Spirit is love, joy, peace, patience, kindness, generosity, faithfulness,</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> gentleness, and self-control. There is no law against such things.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> And those who belong to Christ Jesus have crucified the flesh with its passions and desires.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> If we live by the Spirit, let us also be guided by the Spirit.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Let us not become conceited, competing against one another, envying one another.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"6\">\r\n\t\t\t<VERS vnumber=\"1\"> My friends, if anyone is detected in a transgression, you who have received the Spirit should restore such a one in a spirit of gentleness. Take care that you yourselves are not tempted. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Bear one another's burdens, and in this way you will fulfill the law of Christ. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For if those who are nothing think they are something, they deceive themselves.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> All must test their own work; then that work, rather than their neighbor's work, will become a cause for pride.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> For all must carry their own loads.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Those who are taught the word must share in all good things with their teacher.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Do not be deceived; God is not mocked, for you reap whatever you sow.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> If you sow to your own flesh, you will reap corruption from the flesh; but if you sow to the Spirit, you will reap eternal life from the Spirit.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> So let us not grow weary in doing what is right, for we will reap at harvest time, if we do not give up.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> So then, whenever we have an opportunity, let us work for the good of all, and especially for those of the family of faith.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> See what large letters I make when I am writing in my own hand!</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> It is those who want to make a good showing in the flesh that try to compel you to be circumcised-- only that they may not be persecuted for the cross of Christ.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Even the circumcised do not themselves obey the law, but they want you to be circumcised so that they may boast about your flesh.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> May I never boast of anything except the cross of our Lord Jesus Christ, by which the world has been crucified to me, and I to the world. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> For neither circumcision nor uncircumcision is anything; but a new creation is everything! </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> As for those who will follow this rule-- peace be upon them, and mercy, and upon the Israel of God.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> From now on, let no one make trouble for me; for I carry the marks of Jesus branded on my body.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> May the grace of our Lord Jesus Christ be with your spirit, brothers and sisters. Amen. </VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"49\" bname=\"Ephesians\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> Paul, an apostle of Christ Jesus by the will of God, To the saints who are in Ephesus and are faithful in Christ Jesus: </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Grace to you and peace from God our Father and the Lord Jesus Christ.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Blessed be the God and Father of our Lord Jesus Christ, who has blessed us in Christ with every spiritual blessing in the heavenly places,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> just as he chose us in Christ before the foundation of the world to be holy and blameless before him in love. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> He destined us for adoption as his children through Jesus Christ, according to the good pleasure of his will,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> to the praise of his glorious grace that he freely bestowed on us in the Beloved.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> In him we have redemption through his blood, the forgiveness of our trespasses, according to the riches of his grace</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> that he lavished on us. With all wisdom and insight</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> he has made known to us the mystery of his will, according to his good pleasure that he set forth in Christ,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> as a plan for the fullness of time, to gather up all things in him, things in heaven and things on earth.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> In Christ we have also obtained an inheritance, having been destined according to the purpose of him who accomplishes all things according to his counsel and will, </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> so that we, who were the first to set our hope on Christ, might live for the praise of his glory.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> In him you also, when you had heard the word of truth, the gospel of your salvation, and had believed in him, were marked with the seal of the promised Holy Spirit;</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> this is the pledge of our inheritance toward redemption as God's own people, to the praise of his glory. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> I have heard of your faith in the Lord Jesus and your love toward all the saints, and for this reason</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> I do not cease to give thanks for you as I remember you in my prayers.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> I pray that the God of our Lord Jesus Christ, the Father of glory, may give you a spirit of wisdom and revelation as you come to know him,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> so that, with the eyes of your heart enlightened, you may know what is the hope to which he has called you, what are the riches of his glorious inheritance among the saints,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> and what is the immeasurable greatness of his power for us who believe, according to the working of his great power.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> God put this power to work in Christ when he raised him from the dead and seated him at his right hand in the heavenly places, </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> far above all rule and authority and power and dominion, and above every name that is named, not only in this age but also in the age to come.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> And he has put all things under his feet and has made him the head over all things for the church,</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> which is his body, the fullness of him who fills all in all.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> You were dead through the trespasses and sins</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> in which you once lived, following the course of this world, following the ruler of the power of the air, the spirit that is now at work among those who are disobedient.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> All of us once lived among them in the passions of our flesh, following the desires of flesh and senses, and we were by nature children of wrath, like everyone else.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But God, who is rich in mercy, out of the great love with which he loved us</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> even when we were dead through our trespasses, made us alive together with Christ-- by grace you have been saved--</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> and raised us up with him and seated us with him in the heavenly places in Christ Jesus,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> so that in the ages to come he might show the immeasurable riches of his grace in kindness toward us in Christ Jesus.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> For by grace you have been saved through faith, and this is not your own doing; it is the gift of God--</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> not the result of works, so that no one may boast.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For we are what he has made us, created in Christ Jesus for good works, which God prepared beforehand to be our way of life.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> So then, remember that at one time you Gentiles by birth, called \"the uncircumcision\" by those who are called \"the circumcision\"-- a physical circumcision made in the flesh by human hands--</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> remember that you were at that time without Christ, being aliens from the commonwealth of Israel, and strangers to the covenants of promise, having no hope and without God in the world.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> But now in Christ Jesus you who once were far off have been brought near by the blood of Christ.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> For he is our peace; in his flesh he has made both groups into one and has broken down the dividing wall, that is, the hostility between us.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> He has abolished the law with its commandments and ordinances, that he might create in himself one new humanity in place of the two, thus making peace,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> and might reconcile both groups to God in one body through the cross, thus putting to death that hostility through it. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> So he came and proclaimed peace to you who were far off and peace to those who were near;</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> for through him both of us have access in one Spirit to the Father.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> So then you are no longer strangers and aliens, but you are citizens with the saints and also members of the household of God,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> built upon the foundation of the apostles and prophets, with Christ Jesus himself as the cornerstone. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> In him the whole structure is joined together and grows into a holy temple in the Lord;</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> in whom you also are built together spiritually into a dwelling place for God. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> This is the reason that I Paul am a prisoner for Christ Jesus for the sake of you Gentiles--</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> for surely you have already heard of the commission of God's grace that was given me for you,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> and how the mystery was made known to me by revelation, as I wrote above in a few words,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> a reading of which will enable you to perceive my understanding of the mystery of Christ.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> In former generations this mystery was not made known to humankind, as it has now been revealed to his holy apostles and prophets by the Spirit: </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> that is, the Gentiles have become fellow heirs, members of the same body, and sharers in the promise in Christ Jesus through the gospel.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Of this gospel I have become a servant according to the gift of God's grace that was given me by the working of his power.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Although I am the very least of all the saints, this grace was given to me to bring to the Gentiles the news of the boundless riches of Christ,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> and to make everyone see what is the plan of the mystery hidden for ages in God who created all things; </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> so that through the church the wisdom of God in its rich variety might now be made known to the rulers and authorities in the heavenly places.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> This was in accordance with the eternal purpose that he has carried out in Christ Jesus our Lord,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> in whom we have access to God in boldness and confidence through faith in him. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> I pray therefore that you may not lose heart over my sufferings for you; they are your glory. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> For this reason I bow my knees before the Father, </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> from whom every family in heaven and on earth takes its name. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> I pray that, according to the riches of his glory, he may grant that you may be strengthened in your inner being with power through his Spirit,</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> and that Christ may dwell in your hearts through faith, as you are being rooted and grounded in love.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> I pray that you may have the power to comprehend, with all the saints, what is the breadth and length and height and depth,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> and to know the love of Christ that surpasses knowledge, so that you may be filled with all the fullness of God.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Now to him who by the power at work within us is able to accomplish abundantly far more than all we can ask or imagine,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> to him be glory in the church and in Christ Jesus to all generations, forever and ever. Amen.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> I therefore, the prisoner in the Lord, beg you to lead a life worthy of the calling to which you have been called,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> with all humility and gentleness, with patience, bearing with one another in love,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> making every effort to maintain the unity of the Spirit in the bond of peace.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> There is one body and one Spirit, just as you were called to the one hope of your calling,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> one Lord, one faith, one baptism,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> one God and Father of all, who is above all and through all and in all.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But each of us was given grace according to the measure of Christ's gift.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Therefore it is said, \"When he ascended on high he made captivity itself a captive; he gave gifts to his people.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> (When it says, \"He ascended,\" what does it mean but that he had also descended into the lower parts of the earth? </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> He who descended is the same one who ascended far above all the heavens, so that he might fill all things.)</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The gifts he gave were that some would be apostles, some prophets, some evangelists, some pastors and teachers,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> to equip the saints for the work of ministry, for building up the body of Christ,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> until all of us come to the unity of the faith and of the knowledge of the Son of God, to maturity, to the measure of the full stature of Christ.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> We must no longer be children, tossed to and fro and blown about by every wind of doctrine, by people's trickery, by their craftiness in deceitful scheming.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> But speaking the truth in love, we must grow up in every way into him who is the head, into Christ,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> from whom the whole body, joined and knit together by every ligament with which it is equipped, as each part is working properly, promotes the body's growth in building itself up in love.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Now this I affirm and insist on in the Lord: you must no longer live as the Gentiles live, in the futility of their minds.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> They are darkened in their understanding, alienated from the life of God because of their ignorance and hardness of heart.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> They have lost all sensitivity and have abandoned themselves to licentiousness, greedy to practice every kind of impurity.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> That is not the way you learned Christ!</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> For surely you have heard about him and were taught in him, as truth is in Jesus.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> You were taught to put away your former way of life, your old self, corrupt and deluded by its lusts,</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> and to be renewed in the spirit of your minds,</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> and to clothe yourselves with the new self, created according to the likeness of God in true righteousness and holiness.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> So then, putting away falsehood, let all of us speak the truth to our neighbors, for we are members of one another.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Be angry but do not sin; do not let the sun go down on your anger,</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> and do not make room for the devil.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Thieves must give up stealing; rather let them labor and work honestly with their own hands, so as to have something to share with the needy.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Let no evil talk come out of your mouths, but only what is useful for building up, as there is need, so that your words may give grace to those who hear. </VERS>\r\n\t\t\t<VERS vnumber=\"30\"> And do not grieve the Holy Spirit of God, with which you were marked with a seal for the day of redemption.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> Put away from you all bitterness and wrath and anger and wrangling and slander, together with all malice,</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> and be kind to one another, tenderhearted, forgiving one another, as God in Christ has forgiven you. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"5\">\r\n\t\t\t<VERS vnumber=\"1\"> Therefore be imitators of God, as beloved children,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> and live in love, as Christ loved us and gave himself up for us, a fragrant offering and sacrifice to God. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> But fornication and impurity of any kind, or greed, must not even be mentioned among you, as is proper among saints.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Entirely out of place is obscene, silly, and vulgar talk; but instead, let there be thanksgiving.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Be sure of this, that no fornicator or impure person, or one who is greedy (that is, an idolater), has any inheritance in the kingdom of Christ and of God.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Let no one deceive you with empty words, for because of these things the wrath of God comes on those who are disobedient.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Therefore do not be associated with them.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> For once you were darkness, but now in the Lord you are light. Live as children of light--</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> for the fruit of the light is found in all that is good and right and true.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Try to find out what is pleasing to the Lord.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Take no part in the unfruitful works of darkness, but instead expose them.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> For it is shameful even to mention what such people do secretly;</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> but everything exposed by the light becomes visible,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> for everything that becomes visible is light. Therefore it says, \"Sleeper, awake! Rise from the dead, and Christ will shine on you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Be careful then how you live, not as unwise people but as wise,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> making the most of the time, because the days are evil.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> So do not be foolish, but understand what the will of the Lord is.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Do not get drunk with wine, for that is debauchery; but be filled with the Spirit,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> as you sing psalms and hymns and spiritual songs among yourselves, singing and making melody to the Lord in your hearts,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> giving thanks to God the Father at all times and for everything in the name of our Lord Jesus Christ.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Be subject to one another out of reverence for Christ.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Wives, be subject to your husbands as you are to the Lord.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> For the husband is the head of the wife just as Christ is the head of the church, the body of which he is the Savior.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Just as the church is subject to Christ, so also wives ought to be, in everything, to their husbands.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Husbands, love your wives, just as Christ loved the church and gave himself up for her,</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> in order to make her holy by cleansing her with the washing of water by the word,</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> so as to present the church to himself in splendor, without a spot or wrinkle or anything of the kind-- yes, so that she may be holy and without blemish.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> In the same way, husbands should love their wives as they do their own bodies. He who loves his wife loves himself.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> For no one ever hates his own body, but he nourishes and tenderly cares for it, just as Christ does for the church,</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> because we are members of his body. </VERS>\r\n\t\t\t<VERS vnumber=\"31\"> \"For this reason a man will leave his father and mother and be joined to his wife, and the two will become one flesh.\"</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> This is a great mystery, and I am applying it to Christ and the church.</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> Each of you, however, should love his wife as himself, and a wife should respect her husband.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"6\">\r\n\t\t\t<VERS vnumber=\"1\"> Children, obey your parents in the Lord, for this is right. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"Honor your father and mother\"-- this is the first commandment with a promise:</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> \"so that it may be well with you and you may live long on the earth.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> And, fathers, do not provoke your children to anger, but bring them up in the discipline and instruction of the Lord.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Slaves, obey your earthly masters with fear and trembling, in singleness of heart, as you obey Christ;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> not only while being watched, and in order to please them, but as slaves of Christ, doing the will of God from the heart.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Render service with enthusiasm, as to the Lord and not to men and women,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> knowing that whatever good we do, we will receive the same again from the Lord, whether we are slaves or free.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> And, masters, do the same to them. Stop threatening them, for you know that both of you have the same Master in heaven, and with him there is no partiality.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Finally, be strong in the Lord and in the strength of his power.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Put on the whole armor of God, so that you may be able to stand against the wiles of the devil.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> For our struggle is not against enemies of blood and flesh, but against the rulers, against the authorities, against the cosmic powers of this present darkness, against the spiritual forces of evil in the heavenly places. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Therefore take up the whole armor of God, so that you may be able to withstand on that evil day, and having done everything, to stand firm.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Stand therefore, and fasten the belt of truth around your waist, and put on the breastplate of righteousness.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> As shoes for your feet put on whatever will make you ready to proclaim the gospel of peace.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> With all of these, take the shield of faith, with which you will be able to quench all the flaming arrows of the evil one. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Take the helmet of salvation, and the sword of the Spirit, which is the word of God.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Pray in the Spirit at all times in every prayer and supplication. To that end keep alert and always persevere in supplication for all the saints.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Pray also for me, so that when I speak, a message may be given to me to make known with boldness the mystery of the gospel, </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> for which I am an ambassador in chains. Pray that I may declare it boldly, as I must speak.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> So that you also may know how I am and what I am doing, Tychicus will tell you everything. He is a dear brother and a faithful minister in the Lord.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> I am sending him to you for this very purpose, to let you know how we are, and to encourage your hearts.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Peace be to the whole community, and love with faith, from God the Father and the Lord Jesus Christ. </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Grace be with all who have an undying love for our Lord Jesus Christ. </VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"50\" bname=\"Philippians\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> Paul and Timothy, servants of Christ Jesus, To all the saints in Christ Jesus who are in Philippi, with the bishops and deacons: </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Grace to you and peace from God our Father and the Lord Jesus Christ.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> I thank my God every time I remember you,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> constantly praying with joy in every one of my prayers for all of you,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> because of your sharing in the gospel from the first day until now.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> I am confident of this, that the one who began a good work among you will bring it to completion by the day of Jesus Christ.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> It is right for me to think this way about all of you, because you hold me in your heart, for all of you share in God's grace with me, both in my imprisonment and in the defense and confirmation of the gospel. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> For God is my witness, how I long for all of you with the compassion of Christ Jesus.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> And this is my prayer, that your love may overflow more and more with knowledge and full insight</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> to help you to determine what is best, so that in the day of Christ you may be pure and blameless,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> having produced the harvest of righteousness that comes through Jesus Christ for the glory and praise of God.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> I want you to know, beloved, that what has happened to me has actually helped to spread the gospel, </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> so that it has become known throughout the whole imperial guard and to everyone else that my imprisonment is for Christ; </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> and most of the brothers and sisters, having been made confident in the Lord by my imprisonment, dare to speak the word with greater boldness and without fear. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Some proclaim Christ from envy and rivalry, but others from goodwill.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> These proclaim Christ out of love, knowing that I have been put here for the defense of the gospel;</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> the others proclaim Christ out of selfish ambition, not sincerely but intending to increase my suffering in my imprisonment.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> What does it matter? Just this, that Christ is proclaimed in every way, whether out of false motives or true; and in that I rejoice. Yes, and I will continue to rejoice,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> for I know that through your prayers and the help of the Spirit of Jesus Christ this will turn out for my deliverance.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> It is my eager expectation and hope that I will not be put to shame in any way, but that by my speaking with all boldness, Christ will be exalted now as always in my body, whether by life or by death.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> For to me, living is Christ and dying is gain.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> If I am to live in the flesh, that means fruitful labor for me; and I do not know which I prefer.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> I am hard pressed between the two: my desire is to depart and be with Christ, for that is far better;</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> but to remain in the flesh is more necessary for you.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Since I am convinced of this, I know that I will remain and continue with all of you for your progress and joy in faith,</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> so that I may share abundantly in your boasting in Christ Jesus when I come to you again.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Only, live your life in a manner worthy of the gospel of Christ, so that, whether I come and see you or am absent and hear about you, I will know that you are standing firm in one spirit, striving side by side with one mind for the faith of the gospel,</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> and are in no way intimidated by your opponents. For them this is evidence of their destruction, but of your salvation. And this is God's doing.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> For he has graciously granted you the privilege not only of believing in Christ, but of suffering for him as well--</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> since you are having the same struggle that you saw I had and now hear that I still have.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> If then there is any encouragement in Christ, any consolation from love, any sharing in the Spirit, any compassion and sympathy,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> make my joy complete: be of the same mind, having the same love, being in full accord and of one mind.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Do nothing from selfish ambition or conceit, but in humility regard others as better than yourselves.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Let each of you look not to your own interests, but to the interests of others.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Let the same mind be in you that was in Christ Jesus, </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> who, though he was in the form of God, did not regard equality with God as something to be exploited,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> but emptied himself, taking the form of a slave, being born in human likeness. And being found in human form,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> he humbled himself and became obedient to the point of death-- even death on a cross.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Therefore God also highly exalted him and gave him the name that is above every name,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> so that at the name of Jesus every knee should bend, in heaven and on earth and under the earth,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> and every tongue should confess that Jesus Christ is Lord, to the glory of God the Father.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Therefore, my beloved, just as you have always obeyed me, not only in my presence, but much more now in my absence, work out your own salvation with fear and trembling;</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> for it is God who is at work in you, enabling you both to will and to work for his good pleasure.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Do all things without murmuring and arguing,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> so that you may be blameless and innocent, children of God without blemish in the midst of a crooked and perverse generation, in which you shine like stars in the world.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> It is by your holding fast to the word of life that I can boast on the day of Christ that I did not run in vain or labor in vain.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> But even if I am being poured out as a libation over the sacrifice and the offering of your faith, I am glad and rejoice with all of you--</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> and in the same way you also must be glad and rejoice with me.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> I hope in the Lord Jesus to send Timothy to you soon, so that I may be cheered by news of you.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> I have no one like him who will be genuinely concerned for your welfare.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> All of them are seeking their own interests, not those of Jesus Christ.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> But Timothy's worth you know, how like a son with a father he has served with me in the work of the gospel. </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> I hope therefore to send him as soon as I see how things go with me;</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> and I trust in the Lord that I will also come soon.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Still, I think it necessary to send to you Epaphroditus-- my brother and co-worker and fellow soldier, your messenger and minister to my need;</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> for he has been longing for all of you, and has been distressed because you heard that he was ill. </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> He was indeed so ill that he nearly died. But God had mercy on him, and not only on him but on me also, so that I would not have one sorrow after another.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> I am the more eager to send him, therefore, in order that you may rejoice at seeing him again, and that I may be less anxious.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Welcome him then in the Lord with all joy, and honor such people,</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> because he came close to death for the work of Christ, risking his life to make up for those services that you could not give me. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> Finally, my brothers and sisters, rejoice in the Lord. To write the same things to you is not troublesome to me, and for you it is a safeguard. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Beware of the dogs, beware of the evil workers, beware of those who mutilate the flesh! </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For it is we who are the circumcision, who worship in the Spirit of God and boast in Christ Jesus and have no confidence in the flesh--</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> even though I, too, have reason for confidence in the flesh. If anyone else has reason to be confident in the flesh, I have more:</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> circumcised on the eighth day, a member of the people of Israel, of the tribe of Benjamin, a Hebrew born of Hebrews; as to the law, a Pharisee;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> as to zeal, a persecutor of the church; as to righteousness under the law, blameless.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Yet whatever gains I had, these I have come to regard as loss because of Christ.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> More than that, I regard everything as loss because of the surpassing value of knowing Christ Jesus my Lord. For his sake I have suffered the loss of all things, and I regard them as rubbish, in order that I may gain Christ</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> and be found in him, not having a righteousness of my own that comes from the law, but one that comes through faith in Christ, the righteousness from God based on faith. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> I want to know Christ and the power of his resurrection and the sharing of his sufferings by becoming like him in his death, </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> if somehow I may attain the resurrection from the dead.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Not that I have already obtained this or have already reached the goal; but I press on to make it my own, because Christ Jesus has made me his own. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Beloved, I do not consider that I have made it my own; but this one thing I do: forgetting what lies behind and straining forward to what lies ahead, </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> I press on toward the goal for the prize of the heavenly call of God in Christ Jesus. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Let those of us then who are mature be of the same mind; and if you think differently about anything, this too God will reveal to you.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Only let us hold fast to what we have attained.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Brothers and sisters, join in imitating me, and observe those who live according to the example you have in us. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> For many live as enemies of the cross of Christ; I have often told you of them, and now I tell you even with tears.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Their end is destruction; their god is the belly; and their glory is in their shame; their minds are set on earthly things.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> But our citizenship is in heaven, and it is from there that we are expecting a Savior, the Lord Jesus Christ. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> He will transform the body of our humiliation that it may be conformed to the body of his glory, by the power that also enables him to make all things subject to himself. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> Therefore, my brothers and sisters, whom I love and long for, my joy and crown, stand firm in the Lord in this way, my beloved. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> I urge Euodia and I urge Syntyche to be of the same mind in the Lord.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Yes, and I ask you also, my loyal companion, help these women, for they have struggled beside me in the work of the gospel, together with Clement and the rest of my co-workers, whose names are in the book of life. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Rejoice in the Lord always; again I will say, Rejoice. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Let your gentleness be known to everyone. The Lord is near.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Do not worry about anything, but in everything by prayer and supplication with thanksgiving let your requests be made known to God.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> And the peace of God, which surpasses all understanding, will guard your hearts and your minds in Christ Jesus.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Finally, beloved, whatever is true, whatever is honorable, whatever is just, whatever is pure, whatever is pleasing, whatever is commendable, if there is any excellence and if there is anything worthy of praise, think about these things. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Keep on doing the things that you have learned and received and heard and seen in me, and the God of peace will be with you.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> I rejoice in the Lord greatly that now at last you have revived your concern for me; indeed, you were concerned for me, but had no opportunity to show it. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Not that I am referring to being in need; for I have learned to be content with whatever I have.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> I know what it is to have little, and I know what it is to have plenty. In any and all circumstances I have learned the secret of being well-fed and of going hungry, of having plenty and of being in need.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> I can do all things through him who strengthens me.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> In any case, it was kind of you to share my distress.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> You Philippians indeed know that in the early days of the gospel, when I left Macedonia, no church shared with me in the matter of giving and receiving, except you alone.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> For even when I was in Thessalonica, you sent me help for my needs more than once.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Not that I seek the gift, but I seek the profit that accumulates to your account.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> I have been paid in full and have more than enough; I am fully satisfied, now that I have received from Epaphroditus the gifts you sent, a fragrant offering, a sacrifice acceptable and pleasing to God.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> And my God will fully satisfy every need of yours according to his riches in glory in Christ Jesus.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> To our God and Father be glory forever and ever. Amen.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Greet every saint in Christ Jesus. The friends who are with me greet you. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> All the saints greet you, especially those of the emperor's household.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> The grace of the Lord Jesus Christ be with your spirit. </VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"51\" bname=\"Colossians\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> Paul, an apostle of Christ Jesus by the will of God, and Timothy our brother,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> To the saints and faithful brothers and sisters in Christ in Colossae: Grace to you and peace from God our Father. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> In our prayers for you we always thank God, the Father of our Lord Jesus Christ,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> for we have heard of your faith in Christ Jesus and of the love that you have for all the saints,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> because of the hope laid up for you in heaven. You have heard of this hope before in the word of the truth, the gospel</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> that has come to you. Just as it is bearing fruit and growing in the whole world, so it has been bearing fruit among yourselves from the day you heard it and truly comprehended the grace of God.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> This you learned from Epaphras, our beloved fellow servant. He is a faithful minister of Christ on your behalf, </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> and he has made known to us your love in the Spirit.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> For this reason, since the day we heard it, we have not ceased praying for you and asking that you may be filled with the knowledge of God's will in all spiritual wisdom and understanding, </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> so that you may lead lives worthy of the Lord, fully pleasing to him, as you bear fruit in every good work and as you grow in the knowledge of God.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> May you be made strong with all the strength that comes from his glorious power, and may you be prepared to endure everything with patience, while joyfully</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> giving thanks to the Father, who has enabled you to share in the inheritance of the saints in the light. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> He has rescued us from the power of darkness and transferred us into the kingdom of his beloved Son,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> in whom we have redemption, the forgiveness of sins. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> He is the image of the invisible God, the firstborn of all creation;</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> for in him all things in heaven and on earth were created, things visible and invisible, whether thrones or dominions or rulers or powers-- all things have been created through him and for him.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> He himself is before all things, and in him all things hold together. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> He is the head of the body, the church; he is the beginning, the firstborn from the dead, so that he might come to have first place in everything.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> For in him all the fullness of God was pleased to dwell,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> and through him God was pleased to reconcile to himself all things, whether on earth or in heaven, by making peace through the blood of his cross.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> And you who were once estranged and hostile in mind, doing evil deeds,</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> he has now reconciled in his fleshly body through death, so as to present you holy and blameless and irreproachable before him--</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> provided that you continue securely established and steadfast in the faith, without shifting from the hope promised by the gospel that you heard, which has been proclaimed to every creature under heaven. I, Paul, became a servant of this gospel.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> I am now rejoicing in my sufferings for your sake, and in my flesh I am completing what is lacking in Christ's afflictions for the sake of his body, that is, the church.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> I became its servant according to God's commission that was given to me for you, to make the word of God fully known,</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> the mystery that has been hidden throughout the ages and generations but has now been revealed to his saints.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> To them God chose to make known how great among the Gentiles are the riches of the glory of this mystery, which is Christ in you, the hope of glory.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> It is he whom we proclaim, warning everyone and teaching everyone in all wisdom, so that we may present everyone mature in Christ.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> For this I toil and struggle with all the energy that he powerfully inspires within me.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> For I want you to know how much I am struggling for you, and for those in Laodicea, and for all who have not seen me face to face.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> I want their hearts to be encouraged and united in love, so that they may have all the riches of assured understanding and have the knowledge of God's mystery, that is, Christ himself, </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> in whom are hidden all the treasures of wisdom and knowledge.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> I am saying this so that no one may deceive you with plausible arguments.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> For though I am absent in body, yet I am with you in spirit, and I rejoice to see your morale and the firmness of your faith in Christ.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> As you therefore have received Christ Jesus the Lord, continue to live your lives in him, </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> rooted and built up in him and established in the faith, just as you were taught, abounding in thanksgiving.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> See to it that no one takes you captive through philosophy and empty deceit, according to human tradition, according to the elemental spirits of the universe, and not according to Christ. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> For in him the whole fullness of deity dwells bodily,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> and you have come to fullness in him, who is the head of every ruler and authority.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> In him also you were circumcised with a spiritual circumcision, by putting off the body of the flesh in the circumcision of Christ; </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> when you were buried with him in baptism, you were also raised with him through faith in the power of God, who raised him from the dead.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And when you were dead in trespasses and the uncircumcision of your flesh, God made you alive together with him, when he forgave us all our trespasses, </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> erasing the record that stood against us with its legal demands. He set this aside, nailing it to the cross.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> He disarmed the rulers and authorities and made a public example of them, triumphing over them in it. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Therefore do not let anyone condemn you in matters of food and drink or of observing festivals, new moons, or sabbaths.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> These are only a shadow of what is to come, but the substance belongs to Christ.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Do not let anyone disqualify you, insisting on self-abasement and worship of angels, dwelling on visions, puffed up without cause by a human way of thinking, </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> and not holding fast to the head, from whom the whole body, nourished and held together by its ligaments and sinews, grows with a growth that is from God.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> If with Christ you died to the elemental spirits of the universe, why do you live as if you still belonged to the world? Why do you submit to regulations,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> \"Do not handle, Do not taste, Do not touch\"?</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> All these regulations refer to things that perish with use; they are simply human commands and teachings.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> These have indeed an appearance of wisdom in promoting self-imposed piety, humility, and severe treatment of the body, but they are of no value in checking self-indulgence. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> So if you have been raised with Christ, seek the things that are above, where Christ is, seated at the right hand of God.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Set your minds on things that are above, not on things that are on earth,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> for you have died, and your life is hidden with Christ in God.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> When Christ who is your life is revealed, then you also will be revealed with him in glory. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Put to death, therefore, whatever in you is earthly: fornication, impurity, passion, evil desire, and greed (which is idolatry).</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> On account of these the wrath of God is coming on those who are disobedient. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> These are the ways you also once followed, when you were living that life. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But now you must get rid of all such things-- anger, wrath, malice, slander, and abusive language from your mouth.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Do not lie to one another, seeing that you have stripped off the old self with its practices</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> and have clothed yourselves with the new self, which is being renewed in knowledge according to the image of its creator.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> In that renewal there is no longer Greek and Jew, circumcised and uncircumcised, barbarian, Scythian, slave and free; but Christ is all and in all! </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> As God's chosen ones, holy and beloved, clothe yourselves with compassion, kindness, humility, meekness, and patience.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Bear with one another and, if anyone has a complaint against another, forgive each other; just as the Lord has forgiven you, so you also must forgive. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Above all, clothe yourselves with love, which binds everything together in perfect harmony.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And let the peace of Christ rule in your hearts, to which indeed you were called in the one body. And be thankful.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Let the word of Christ dwell in you richly; teach and admonish one another in all wisdom; and with gratitude in your hearts sing psalms, hymns, and spiritual songs to God.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> And whatever you do, in word or deed, do everything in the name of the Lord Jesus, giving thanks to God the Father through him.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Wives, be subject to your husbands, as is fitting in the Lord.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Husbands, love your wives and never treat them harshly.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Children, obey your parents in everything, for this is your acceptable duty in the Lord.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Fathers, do not provoke your children, or they may lose heart.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Slaves, obey your earthly masters in everything, not only while being watched and in order to please them, but wholeheartedly, fearing the Lord. </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Whatever your task, put yourselves into it, as done for the Lord and not for your masters, </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> since you know that from the Lord you will receive the inheritance as your reward; you serve the Lord Christ. </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> For the wrongdoer will be paid back for whatever wrong has been done, and there is no partiality.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> Masters, treat your slaves justly and fairly, for you know that you also have a Master in heaven.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Devote yourselves to prayer, keeping alert in it with thanksgiving.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> At the same time pray for us as well that God will open to us a door for the word, that we may declare the mystery of Christ, for which I am in prison,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> so that I may reveal it clearly, as I should.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Conduct yourselves wisely toward outsiders, making the most of the time. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Let your speech always be gracious, seasoned with salt, so that you may know how you ought to answer everyone.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Tychicus will tell you all the news about me; he is a beloved brother, a faithful minister, and a fellow servant in the Lord. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> I have sent him to you for this very purpose, so that you may know how we are and that he may encourage your hearts; </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> he is coming with Onesimus, the faithful and beloved brother, who is one of you. They will tell you about everything here.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Aristarchus my fellow prisoner greets you, as does Mark the cousin of Barnabas, concerning whom you have received instructions-- if he comes to you, welcome him.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> And Jesus who is called Justus greets you. These are the only ones of the circumcision among my co-workers for the kingdom of God, and they have been a comfort to me.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Epaphras, who is one of you, a servant of Christ Jesus, greets you. He is always wrestling in his prayers on your behalf, so that you may stand mature and fully assured in everything that God wills. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> For I testify for him that he has worked hard for you and for those in Laodicea and in Hierapolis.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Luke, the beloved physician, and Demas greet you.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Give my greetings to the brothers and sisters in Laodicea, and to Nympha and the church in her house. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> And when this letter has been read among you, have it read also in the church of the Laodiceans; and see that you read also the letter from Laodicea.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> And say to Archippus, \"See that you complete the task that you have received in the Lord.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> I, Paul, write this greeting with my own hand. Remember my chains. Grace be with you. </VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"52\" bname=\"1 Thessalonians\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> Paul, Silvanus, and Timothy, To the church of the Thessalonians in God the Father and the Lord Jesus Christ: Grace to you and peace.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> We always give thanks to God for all of you and mention you in our prayers, constantly</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> remembering before our God and Father your work of faith and labor of love and steadfastness of hope in our Lord Jesus Christ.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For we know, brothers and sisters beloved by God, that he has chosen you, </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> because our message of the gospel came to you not in word only, but also in power and in the Holy Spirit and with full conviction; just as you know what kind of persons we proved to be among you for your sake.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And you became imitators of us and of the Lord, for in spite of persecution you received the word with joy inspired by the Holy Spirit,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> so that you became an example to all the believers in Macedonia and in Achaia.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> For the word of the Lord has sounded forth from you not only in Macedonia and Achaia, but in every place your faith in God has become known, so that we have no need to speak about it.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> For the people of those regions report about us what kind of welcome we had among you, and how you turned to God from idols, to serve a living and true God, </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> and to wait for his Son from heaven, whom he raised from the dead-- Jesus, who rescues us from the wrath that is coming.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> You yourselves know, brothers and sisters, that our coming to you was not in vain, </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> but though we had already suffered and been shamefully mistreated at Philippi, as you know, we had courage in our God to declare to you the gospel of God in spite of great opposition.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For our appeal does not spring from deceit or impure motives or trickery,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> but just as we have been approved by God to be entrusted with the message of the gospel, even so we speak, not to please mortals, but to please God who tests our hearts.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> As you know and as God is our witness, we never came with words of flattery or with a pretext for greed;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> nor did we seek praise from mortals, whether from you or from others,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> though we might have made demands as apostles of Christ. But we were gentle among you, like a nurse tenderly caring for her own children. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> So deeply do we care for you that we are determined to share with you not only the gospel of God but also our own selves, because you have become very dear to us.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> You remember our labor and toil, brothers and sisters; we worked night and day, so that we might not burden any of you while we proclaimed to you the gospel of God. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> You are witnesses, and God also, how pure, upright, and blameless our conduct was toward you believers.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> As you know, we dealt with each one of you like a father with his children,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> urging and encouraging you and pleading that you lead a life worthy of God, who calls you into his own kingdom and glory.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> We also constantly give thanks to God for this, that when you received the word of God that you heard from us, you accepted it not as a human word but as what it really is, God's word, which is also at work in you believers.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> For you, brothers and sisters, became imitators of the churches of God in Christ Jesus that are in Judea, for you suffered the same things from your own compatriots as they did from the Jews, </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> who killed both the Lord Jesus and the prophets, and drove us out; they displease God and oppose everyone </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> by hindering us from speaking to the Gentiles so that they may be saved. Thus they have constantly been filling up the measure of their sins; but God's wrath has overtaken them at last. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> As for us, brothers and sisters, when, for a short time, we were made orphans by being separated from you-- in person, not in heart-- we longed with great eagerness to see you face to face.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> For we wanted to come to you-- certainly I, Paul, wanted to again and again-- but Satan blocked our way.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> For what is our hope or joy or crown of boasting before our Lord Jesus at his coming? Is it not you?</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Yes, you are our glory and joy!</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> Therefore when we could bear it no longer, we decided to be left alone in Athens;</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> and we sent Timothy, our brother and co-worker for God in proclaiming the gospel of Christ, to strengthen and encourage you for the sake of your faith, </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> so that no one would be shaken by these persecutions. Indeed, you yourselves know that this is what we are destined for.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> In fact, when we were with you, we told you beforehand that we were to suffer persecution; so it turned out, as you know.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> For this reason, when I could bear it no longer, I sent to find out about your faith; I was afraid that somehow the tempter had tempted you and that our labor had been in vain.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> But Timothy has just now come to us from you, and has brought us the good news of your faith and love. He has told us also that you always remember us kindly and long to see us-- just as we long to see you.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> For this reason, brothers and sisters, during all our distress and persecution we have been encouraged about you through your faith. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> For we now live, if you continue to stand firm in the Lord.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> How can we thank God enough for you in return for all the joy that we feel before our God because of you?</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Night and day we pray most earnestly that we may see you face to face and restore whatever is lacking in your faith.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Now may our God and Father himself and our Lord Jesus direct our way to you.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> And may the Lord make you increase and abound in love for one another and for all, just as we abound in love for you.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And may he so strengthen your hearts in holiness that you may be blameless before our God and Father at the coming of our Lord Jesus with all his saints.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> Finally, brothers and sisters, we ask and urge you in the Lord Jesus that, as you learned from us how you ought to live and to please God (as, in fact, you are doing), you should do so more and more. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> For you know what instructions we gave you through the Lord Jesus.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For this is the will of God, your sanctification: that you abstain from fornication;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> that each one of you know how to control your own body in holiness and honor, </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> not with lustful passion, like the Gentiles who do not know God;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> that no one wrong or exploit a brother or sister in this matter, because the Lord is an avenger in all these things, just as we have already told you beforehand and solemnly warned you. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> For God did not call us to impurity but in holiness.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Therefore whoever rejects this rejects not human authority but God, who also gives his Holy Spirit to you.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Now concerning love of the brothers and sisters, you do not need to have anyone write to you, for you yourselves have been taught by God to love one another; </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> and indeed you do love all the brothers and sisters throughout Macedonia. But we urge you, beloved, to do so more and more, </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> to aspire to live quietly, to mind your own affairs, and to work with your hands, as we directed you,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> so that you may behave properly toward outsiders and be dependent on no one.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> But we do not want you to be uninformed, brothers and sisters, about those who have died, so that you may not grieve as others do who have no hope. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> For since we believe that Jesus died and rose again, even so, through Jesus, God will bring with him those who have died. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> For this we declare to you by the word of the Lord, that we who are alive, who are left until the coming of the Lord, will by no means precede those who have died. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> For the Lord himself, with a cry of command, with the archangel's call and with the sound of God's trumpet, will descend from heaven, and the dead in Christ will rise first.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then we who are alive, who are left, will be caught up in the clouds together with them to meet the Lord in the air; and so we will be with the Lord forever.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Therefore encourage one another with these words.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"5\">\r\n\t\t\t<VERS vnumber=\"1\"> Now concerning the times and the seasons, brothers and sisters, you do not need to have anything written to you. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> For you yourselves know very well that the day of the Lord will come like a thief in the night.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> When they say, \"There is peace and security,\" then sudden destruction will come upon them, as labor pains come upon a pregnant woman, and there will be no escape!</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But you, beloved, are not in darkness, for that day to surprise you like a thief; </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> for you are all children of light and children of the day; we are not of the night or of darkness.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> So then let us not fall asleep as others do, but let us keep awake and be sober;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> for those who sleep sleep at night, and those who are drunk get drunk at night.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But since we belong to the day, let us be sober, and put on the breastplate of faith and love, and for a helmet the hope of salvation.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> For God has destined us not for wrath but for obtaining salvation through our Lord Jesus Christ,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> who died for us, so that whether we are awake or asleep we may live with him.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Therefore encourage one another and build up each other, as indeed you are doing.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> But we appeal to you, brothers and sisters, to respect those who labor among you, and have charge of you in the Lord and admonish you; </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> esteem them very highly in love because of their work. Be at peace among yourselves.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> And we urge you, beloved, to admonish the idlers, encourage the faint hearted, help the weak, be patient with all of them. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> See that none of you repays evil for evil, but always seek to do good to one another and to all.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Rejoice always,</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> pray without ceasing,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> give thanks in all circumstances; for this is the will of God in Christ Jesus for you.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Do not quench the Spirit.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Do not despise the words of prophets, </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> but test everything; hold fast to what is good;</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> abstain from every form of evil.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> May the God of peace himself sanctify you entirely; and may your spirit and soul and body be kept sound and blameless at the coming of our Lord Jesus Christ. </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> The one who calls you is faithful, and he will do this.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Beloved, pray for us. </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> Greet all the brothers and sisters with a holy kiss.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> I solemnly command you by the Lord that this letter be read to all of them. </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> The grace of our Lord Jesus Christ be with you. </VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"53\" bname=\"2 Thessalonians\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> Paul, Silvanus, and Timothy, To the church of the Thessalonians in God our Father and the Lord Jesus Christ:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Grace to you and peace from God our Father and the Lord Jesus Christ. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> We must always give thanks to God for you, brothers and sisters, as is right, because your faith is growing abundantly, and the love of everyone of you for one another is increasing.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Therefore we ourselves boast of you among the churches of God for your steadfastness and faith during all your persecutions and the afflictions that you are enduring.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> This is evidence of the righteous judgment of God, and is intended to make you worthy of the kingdom of God, for which you are also suffering.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For it is indeed just of God to repay with affliction those who afflict you,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> and to give relief to the afflicted as well as to us, when the Lord Jesus is revealed from heaven with his mighty angels</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> in flaming fire, inflicting vengeance on those who do not know God and on those who do not obey the gospel of our Lord Jesus.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> These will suffer the punishment of eternal destruction, separated from the presence of the Lord and from the glory of his might,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> when he comes to be glorified by his saints and to be marveled at on that day among all who have believed, because our testimony to you was believed.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> To this end we always pray for you, asking that our God will make you worthy of his call and will fulfill by his power every good resolve and work of faith,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> so that the name of our Lord Jesus may be glorified in you, and you in him, according to the grace of our God and the Lord Jesus Christ.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> As to the coming of our Lord Jesus Christ and our being gathered together to him, we beg you, brothers and sisters, </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> not to be quickly shaken in mind or alarmed, either by spirit or by word or by letter, as though from us, to the effect that the day of the Lord is already here.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Let no one deceive you in any way; for that day will not come unless the rebellion comes first and the lawless one is revealed, the one destined for destruction. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> He opposes and exalts himself above every so-called god or object of worship, so that he takes his seat in the temple of God, declaring himself to be God.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Do you not remember that I told you these things when I was still with you?</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And you know what is now restraining him, so that he may be revealed when his time comes.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> For the mystery of lawlessness is already at work, but only until the one who now restrains it is removed.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And then the lawless one will be revealed, whom the Lord Jesus will destroy with the breath of his mouth, annihilating him by the manifestation of his coming.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The coming of the lawless one is apparent in the working of Satan, who uses all power, signs, lying wonders,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> and every kind of wicked deception for those who are perishing, because they refused to love the truth and so be saved.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> For this reason God sends them a powerful delusion, leading them to believe what is false,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> so that all who have not believed the truth but took pleasure in unrighteousness will be condemned.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> But we must always give thanks to God for you, brothers and sisters beloved by the Lord, because God chose you as the first fruits for salvation through sanctification by the Spirit and through belief in the truth. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> For this purpose he called you through our proclamation of the good news, so that you may obtain the glory of our Lord Jesus Christ. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> So then, brothers and sisters, stand firm and hold fast to the traditions that you were taught by us, either by word of mouth or by our letter. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Now may our Lord Jesus Christ himself and God our Father, who loved us and through grace gave us eternal comfort and good hope,</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> comfort your hearts and strengthen them in every good work and word.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> Finally, brothers and sisters, pray for us, so that the word of the Lord may spread rapidly and be glorified everywhere, just as it is among you, </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> and that we may be rescued from wicked and evil people; for not all have faith.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> But the Lord is faithful; he will strengthen you and guard you from the evil one. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> And we have confidence in the Lord concerning you, that you are doing and will go on doing the things that we command.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> May the Lord direct your hearts to the love of God and to the steadfastness of Christ.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Now we command you, beloved, in the name of our Lord Jesus Christ, to keep away from believers who are living in idleness and not according to the tradition that they received from us. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> For you yourselves know how you ought to imitate us; we were not idle when we were with you,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> and we did not eat anyone's bread without paying for it; but with toil and labor we worked night and day, so that we might not burden any of you.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> This was not because we do not have that right, but in order to give you an example to imitate.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For even when we were with you, we gave you this command: Anyone unwilling to work should not eat.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> For we hear that some of you are living in idleness, mere busybodies, not doing any work.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Now such persons we command and exhort in the Lord Jesus Christ to do their work quietly and to earn their own living.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Brothers and sisters, do not be weary in doing what is right. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Take note of those who do not obey what we say in this letter; have nothing to do with them, so that they may be ashamed.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Do not regard them as enemies, but warn them as believers. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Now may the Lord of peace himself give you peace at all times in all ways. The Lord be with all of you.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> I, Paul, write this greeting with my own hand. This is the mark in every letter of mine; it is the way I write.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The grace of our Lord Jesus Christ be with all of you. </VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"54\" bname=\"1 Timothy\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> Paul, an apostle of Christ Jesus by the command of God our Savior and of Christ Jesus our hope,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> To Timothy, my loyal child in the faith: Grace, mercy, and peace from God the Father and Christ Jesus our Lord.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> I urge you, as I did when I was on my way to Macedonia, to remain in Ephesus so that you may instruct certain people not to teach any different doctrine,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> and not to occupy themselves with myths and endless genealogies that promote speculations rather than the divine training that is known by faith. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> But the aim of such instruction is love that comes from a pure heart, a good conscience, and sincere faith.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Some people have deviated from these and turned to meaningless talk,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> desiring to be teachers of the law, without understanding either what they are saying or the things about which they make assertions.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Now we know that the law is good, if one uses it legitimately.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> This means understanding that the law is laid down not for the innocent but for the lawless and disobedient, for the godless and sinful, for the unholy and profane, for those who kill their father or mother, for murderers,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> fornicators, sodomites, slave traders, liars, perjurers, and whatever else is contrary to the sound teaching</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> that conforms to the glorious gospel of the blessed God, which he entrusted to me.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> I am grateful to Christ Jesus our Lord, who has strengthened me, because he judged me faithful and appointed me to his service,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> even though I was formerly a blasphemer, a persecutor, and a man of violence. But I received mercy because I had acted ignorantly in unbelief,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> and the grace of our Lord overflowed for me with the faith and love that are in Christ Jesus.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The saying is sure and worthy of full acceptance, that Christ Jesus came into the world to save sinners-- of whom I am the foremost.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> But for that very reason I received mercy, so that in me, as the foremost, Jesus Christ might display the utmost patience, making me an example to those who would come to believe in him for eternal life.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> To the King of the ages, immortal, invisible, the only God, be honor and glory forever and ever. Amen. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> I am giving you these instructions, Timothy, my child, in accordance with the prophecies made earlier about you, so that by following them you may fight the good fight,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> having faith and a good conscience. By rejecting conscience, certain persons have suffered shipwreck in the faith;</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> among them are Hymenaeus and Alexander, whom I have turned over to Satan, so that they may learn not to blaspheme.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> First of all, then, I urge that supplications, prayers, intercessions, and thanksgivings be made for everyone,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> for kings and all who are in high positions, so that we may lead a quiet and peaceable life in all godliness and dignity.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> This is right and is acceptable in the sight of God our Savior,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> who desires everyone to be saved and to come to the knowledge of the truth.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> For there is one God; there is also one mediator between God and humankind, Christ Jesus, himself human,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> who gave himself a ransom for all-- this was attested at the right time.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> For this I was appointed a herald and an apostle (I am telling the truth, I am not lying), a teacher of the Gentiles in faith and truth. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> I desire, then, that in every place the men should pray, lifting up holy hands without anger or argument;</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> also that the women should dress themselves modestly and decently in suitable clothing, not with their hair braided, or with gold, pearls, or expensive clothes,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> but with good works, as is proper for women who profess reverence for God.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Let a woman learn in silence with full submission. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> I permit no woman to teach or to have authority over a man; she is to keep silent. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> For Adam was formed first, then Eve;</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> and Adam was not deceived, but the woman was deceived and became a transgressor.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Yet she will be saved through childbearing, provided they continue in faith and love and holiness, with modesty.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> The saying is sure: whoever aspires to the office of bishop desires a noble task. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Now a bishop must be above reproach, married only once, temperate, sensible, respectable, hospitable, an apt teacher, </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> not a drunkard, not violent but gentle, not quarrelsome, and not a lover of money.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> He must manage his own household well, keeping his children submissive and respectful in every way--</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> for if someone does not know how to manage his own household, how can he take care of God's church?</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> He must not be a recent convert, or he may be puffed up with conceit and fall into the condemnation of the devil.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Moreover, he must be well thought of by outsiders, so that he may not fall into disgrace and the snare of the devil.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Deacons likewise must be serious, not double-tongued, not indulging in much wine, not greedy for money;</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> they must hold fast to the mystery of the faith with a clear conscience.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And let them first be tested; then, if they prove themselves blameless, let them serve as deacons.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Women likewise must be serious, not slanderers, but temperate, faithful in all things. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Let deacons be married only once, and let them manage their children and their households well;</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> for those who serve well as deacons gain a good standing for themselves and great boldness in the faith that is in Christ Jesus.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> I hope to come to you soon, but I am writing these instructions to you so that,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> if I am delayed, you may know how one ought to behave in the household of God, which is the church of the living God, the pillar and bulwark of the truth.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Without any doubt, the mystery of our religion is great: He was revealed in flesh, vindicated in spirit, seen by angels, proclaimed among Gentiles, believed in throughout the world, taken up in glory.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> Now the Spirit expressly says that in later times some will renounce the faith by paying attention to deceitful spirits and teachings of demons,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> through the hypocrisy of liars whose consciences are seared with a hot iron.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> They forbid marriage and demand abstinence from foods, which God created to be received with thanksgiving by those who believe and know the truth.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For everything created by God is good, and nothing is to be rejected, provided it is received with thanksgiving;</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> for it is sanctified by God's word and by prayer.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> If you put these instructions before the brothers and sisters, you will be a good servant of Christ Jesus, nourished on the words of the faith and of the sound teaching that you have followed. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Have nothing to do with profane myths and old wives' tales. Train yourself in godliness,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> for, while physical training is of some value, godliness is valuable in every way, holding promise for both the present life and the life to come.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The saying is sure and worthy of full acceptance.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For to this end we toil and struggle, because we have our hope set on the living God, who is the Savior of all people, especially of those who believe. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> These are the things you must insist on and teach.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Let no one despise your youth, but set the believers an example in speech and conduct, in love, in faith, in purity.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Until I arrive, give attention to the public reading of scripture, to exhorting, to teaching. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Do not neglect the gift that is in you, which was given to you through prophecy with the laying on of hands by the council of elders. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Put these things into practice, devote yourself to them, so that all may see your progress.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Pay close attention to yourself and to your teaching; continue in these things, for in doing this you will save both yourself and your hearers.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"5\">\r\n\t\t\t<VERS vnumber=\"1\"> Do not speak harshly to an older man, but speak to him as to a father, to younger men as brothers, </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> to older women as mothers, to younger women as sisters-- with absolute purity.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Honor widows who are really widows.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> If a widow has children or grandchildren, they should first learn their religious duty to their own family and make some repayment to their parents; for this is pleasing in God's sight.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The real widow, left alone, has set her hope on God and continues in supplications and prayers night and day;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> but the widow who lives for pleasure is dead even while she lives. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Give these commands as well, so that they may be above reproach.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And whoever does not provide for relatives, and especially for family members, has denied the faith and is worse than an unbeliever.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Let a widow be put on the list if she is not less than sixty years old and has been married only once; </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> she must be well attested for her good works, as one who has brought up children, shown hospitality, washed the saints' feet, helped the afflicted, and devoted herself to doing good in every way.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But refuse to put younger widows on the list; for when their sensual desires alienate them from Christ, they want to marry,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> and so they incur condemnation for having violated their first pledge.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Besides that, they learn to be idle, gadding about from house to house; and they are not merely idle, but also gossips and busybodies, saying what they should not say.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> So I would have younger widows marry, bear children, and manage their households, so as to give the adversary no occasion to revile us.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> For some have already turned away to follow Satan.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> If any believing woman has relatives who are really widows, let her assist them; let the church not be burdened, so that it can assist those who are real widows. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Let the elders who rule well be considered worthy of double honor, especially those who labor in preaching and teaching; </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> for the scripture says, \"You shall not muzzle an ox while it is treading out the grain,\" and, \"The laborer deserves to be paid.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Never accept any accusation against an elder except on the evidence of two or three witnesses.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> As for those who persist in sin, rebuke them in the presence of all, so that the rest also may stand in fear.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> In the presence of God and of Christ Jesus and of the elect angels, I warn you to keep these instructions without prejudice, doing nothing on the basis of partiality.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Do not ordain anyone hastily, and do not participate in the sins of others; keep yourself pure. </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> No longer drink only water, but take a little wine for the sake of your stomach and your frequent ailments.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> The sins of some people are conspicuous and precede them to judgment, while the sins of others follow them there.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> So also good works are conspicuous; and even when they are not, they cannot remain hidden.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"6\">\r\n\t\t\t<VERS vnumber=\"1\"> Let all who are under the yoke of slavery regard their masters as worthy of all honor, so that the name of God and the teaching may not be blasphemed.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Those who have believing masters must not be disrespectful to them on the ground that they are members of the church; rather they must serve them all the more, since those who benefit by their service are believers and beloved. Teach and urge these duties. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Whoever teaches otherwise and does not agree with the sound words of our Lord Jesus Christ and the teaching that is in accordance with godliness,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> is conceited, understanding nothing, and has a morbid craving for controversy and for disputes about words. From these come envy, dissension, slander, base suspicions,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> and wrangling among those who are depraved in mind and bereft of the truth, imagining that godliness is a means of gain. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Of course, there is great gain in godliness combined with contentment;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> for we brought nothing into the world, so that we can take nothing out of it; </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> but if we have food and clothing, we will be content with these.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> But those who want to be rich fall into temptation and are trapped by many senseless and harmful desires that plunge people into ruin and destruction.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For the love of money is a root of all kinds of evil, and in their eagerness to be rich some have wandered away from the faith and pierced themselves with many pains.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But as for you, man of God, shun all this; pursue righteousness, godliness, faith, love, endurance, gentleness.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Fight the good fight of the faith; take hold of the eternal life, to which you were called and for which you made the good confession in the presence of many witnesses. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> In the presence of God, who gives life to all things, and of Christ Jesus, who in his testimony before Pontius Pilate made the good confession, I charge you</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> to keep the commandment without spot or blame until the manifestation of our Lord Jesus Christ,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> which he will bring about at the right time-- he who is the blessed and only Sovereign, the King of kings and Lord of lords.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> It is he alone who has immortality and dwells in unapproachable light, whom no one has ever seen or can see; to him be honor and eternal dominion. Amen.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> As for those who in the present age are rich, command them not to be haughty, or to set their hopes on the uncertainty of riches, but rather on God who richly provides us with everything for our enjoyment.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> They are to do good, to be rich in good works, generous, and ready to share,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> thus storing up for themselves the treasure of a good foundation for the future, so that they may take hold of the life that really is life.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Timothy, guard what has been entrusted to you. Avoid the profane chatter and contradictions of what is falsely called knowledge;</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> by professing it some have missed the mark as regards the faith. Grace be with you. </VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"55\" bname=\"2 Timothy\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> Paul, an apostle of Christ Jesus by the will of God, for the sake of the promise of life that is in Christ Jesus,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> To Timothy, my beloved child: Grace, mercy, and peace from God the Father and Christ Jesus our Lord.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> I am grateful to God-- whom I worship with a clear conscience, as my ancestors did-- when I remember you constantly in my prayers night and day.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Recalling your tears, I long to see you so that I may be filled with joy.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> I am reminded of your sincere faith, a faith that lived first in your grandmother Lois and your mother Eunice and now, I am sure, lives in you.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For this reason I remind you to rekindle the gift of God that is within you through the laying on of my hands;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> for God did not give us a spirit of cowardice, but rather a spirit of power and of love and of self-discipline.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Do not be ashamed, then, of the testimony about our Lord or of me his prisoner, but join with me in suffering for the gospel, relying on the power of God,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> who saved us and called us with a holy calling, not according to our works but according to his own purpose and grace. This grace was given to us in Christ Jesus before the ages began,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> but it has now been revealed through the appearing of our Savior Christ Jesus, who abolished death and brought life and immortality to light through the gospel.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> For this gospel I was appointed a herald and an apostle and a teacher, </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> and for this reason I suffer as I do. But I am not ashamed, for I know the one in whom I have put my trust, and I am sure that he is able to guard until that day what I have entrusted to him. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Hold to the standard of sound teaching that you have heard from me, in the faith and love that are in Christ Jesus.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Guard the good treasure entrusted to you, with the help of the Holy Spirit living in us.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> You are aware that all who are in Asia have turned away from me, including Phygelus and Hermogenes.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> May the Lord grant mercy to the household of Onesiphorus, because he often refreshed me and was not ashamed of my chain;</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> when he arrived in Rome, he eagerly searched for me and found me </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> -- may the Lord grant that he will find mercy from the Lord on that day! And you know very well how much service he rendered in Ephesus.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> You then, my child, be strong in the grace that is in Christ Jesus;</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> and what you have heard from me through many witnesses entrust to faithful people who will be able to teach others as well.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Share in suffering like a good soldier of Christ Jesus.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> No one serving in the army gets entangled in everyday affairs; the soldier's aim is to please the enlisting officer.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> And in the case of an athlete, no one is crowned without competing according to the rules.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> It is the farmer who does the work who ought to have the first share of the crops.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Think over what I say, for the Lord will give you understanding in all things.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Remember Jesus Christ, raised from the dead, a descendant of David-- that is my gospel,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> for which I suffer hardship, even to the point of being chained like a criminal. But the word of God is not chained.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Therefore I endure everything for the sake of the elect, so that they may also obtain the salvation that is in Christ Jesus, with eternal glory.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The saying is sure: If we have died with him, we will also live with him;</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> if we endure, we will also reign with him; if we deny him, he will also deny us;</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> if we are faithless, he remains faithful-- for he cannot deny himself.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Remind them of this, and warn them before God that they are to avoid wrangling over words, which does no good but only ruins those who are listening. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Do your best to present yourself to God as one approved by him, a worker who has no need to be ashamed, rightly explaining the word of truth.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Avoid profane chatter, for it will lead people into more and more impiety,</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> and their talk will spread like gangrene. Among them are Hymenaeus and Philetus,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> who have swerved from the truth by claiming that the resurrection has already taken place. They are upsetting the faith of some.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> But God's firm foundation stands, bearing this inscription: \"The Lord knows those who are his,\" and, \"Let everyone who calls on the name of the Lord turn away from wickedness.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> In a large house there are utensils not only of gold and silver but also of wood and clay, some for special use, some for ordinary.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> All who cleanse themselves of the things I have mentioned will become special utensils, dedicated and useful to the owner of the house, ready for every good work. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Shun youthful passions and pursue righteousness, faith, love, and peace, along with those who call on the Lord from a pure heart.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Have nothing to do with stupid and senseless controversies; you know that they breed quarrels.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> And the Lord's servant must not be quarrelsome but kindly to everyone, an apt teacher, patient, </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> correcting opponents with gentleness. God may perhaps grant that they will repent and come to know the truth,</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> and that they may escape from the snare of the devil, having been held captive by him to do his will. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> You must understand this, that in the last days distressing times will come.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> For people will be lovers of themselves, lovers of money, boasters, arrogant, abusive, disobedient to their parents, ungrateful, unholy,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> inhuman, implacable, slanderers, profligates, brutes, haters of good,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> treacherous, reckless, swollen with conceit, lovers of pleasure rather than lovers of God,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> holding to the outward form of godliness but denying its power. Avoid them!</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For among them are those who make their way into households and captivate silly women, overwhelmed by their sins and swayed by all kinds of desires,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> who are always being instructed and can never arrive at a knowledge of the truth.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> As Jannes and Jambres opposed Moses, so these people, of corrupt mind and counterfeit faith, also oppose the truth.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> But they will not make much progress, because, as in the case of those two men, their folly will become plain to everyone. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Now you have observed my teaching, my conduct, my aim in life, my faith, my patience, my love, my steadfastness,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> my persecutions and suffering the things that happened to me in Antioch, Iconium, and Lystra. What persecutions I endured! Yet the Lord rescued me from all of them.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Indeed, all who want to live a godly life in Christ Jesus will be persecuted.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> But wicked people and impostors will go from bad to worse, deceiving others and being deceived.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But as for you, continue in what you have learned and firmly believed, knowing from whom you learned it,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> and how from childhood you have known the sacred writings that are able to instruct you for salvation through faith in Christ Jesus.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> All scripture is inspired by God and is useful for teaching, for reproof, for correction, and for training in righteousness, </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> so that everyone who belongs to God may be proficient, equipped for every good work.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> In the presence of God and of Christ Jesus, who is to judge the living and the dead, and in view of his appearing and his kingdom, I solemnly urge you:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> proclaim the message; be persistent whether the time is favorable or unfavorable; convince, rebuke, and encourage, with the utmost patience in teaching.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For the time is coming when people will not put up with sound doctrine, but having itching ears, they will accumulate for themselves teachers to suit their own desires,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> and will turn away from listening to the truth and wander away to myths.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> As for you, always be sober, endure suffering, do the work of an evangelist, carry out your ministry fully.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> As for me, I am already being poured out as a libation, and the time of my departure has come.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> I have fought the good fight, I have finished the race, I have kept the faith.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> From now on there is reserved for me the crown of righteousness, which the Lord, the righteous judge, will give me on that day, and not only to me but also to all who have longed for his appearing.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Do your best to come to me soon,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> for Demas, in love with this present world, has deserted me and gone to Thessalonica; Crescens has gone to Galatia, Titus to Dalmatia. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Only Luke is with me. Get Mark and bring him with you, for he is useful in my ministry.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> I have sent Tychicus to Ephesus.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> When you come, bring the cloak that I left with Carpus at Troas, also the books, and above all the parchments.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Alexander the coppersmith did me great harm; the Lord will pay him back for his deeds.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> You also must beware of him, for he strongly opposed our message.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> At my first defense no one came to my support, but all deserted me. May it not be counted against them!</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> But the Lord stood by me and gave me strength, so that through me the message might be fully proclaimed and all the Gentiles might hear it. So I was rescued from the lion's mouth.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The Lord will rescue me from every evil attack and save me for his heavenly kingdom. To him be the glory forever and ever. Amen.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Greet Prisca and Aquila, and the household of Onesiphorus.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Erastus remained in Corinth; Trophimus I left ill in Miletus.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Do your best to come before winter. Eubulus sends greetings to you, as do Pudens and Linus and Claudia and all the brothers and sisters.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> The Lord be with your spirit. Grace be with you. </VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"56\" bname=\"Titus\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> Paul, a servant of God and an apostle of Jesus Christ, for the sake of the faith of God's elect and the knowledge of the truth that is in accordance with godliness, </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> in the hope of eternal life that God, who never lies, promised before the ages began--</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> in due time he revealed his word through the proclamation with which I have been entrusted by the command of God our Savior,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> To Titus, my loyal child in the faith we share: Grace and peace from God the Father and Christ Jesus our Savior. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> I left you behind in Crete for this reason, so that you should put in order what remained to be done, and should appoint elders in every town, as I directed you:</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> someone who is blameless, married only once, whose children are believers, not accused of debauchery and not rebellious. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> For a bishop, as God's steward, must be blameless; he must not be arrogant or quick-tempered or addicted to wine or violent or greedy for gain; </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> but he must be hospitable, a lover of goodness, prudent, upright, devout, and self-controlled.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> He must have a firm grasp of the word that is trustworthy in accordance with the teaching, so that he may be able both to preach with sound doctrine and to refute those who contradict it.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> There are also many rebellious people, idle talkers and deceivers, especially those of the circumcision;</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> they must be silenced, since they are upsetting whole families by teaching for sordid gain what it is not right to teach.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> It was one of them, their very own prophet, who said, \"Cretans are always liars, vicious brutes, lazy gluttons.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> That testimony is true. For this reason rebuke them sharply, so that they may become sound in the faith,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> not paying attention to Jewish myths or to commandments of those who reject the truth.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> To the pure all things are pure, but to the corrupt and unbelieving nothing is pure. Their very minds and consciences are corrupted.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> They profess to know God, but they deny him by their actions. They are detestable, disobedient, unfit for any good work.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> But as for you, teach what is consistent with sound doctrine.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Tell the older men to be temperate, serious, prudent, and sound in faith, in love, and in endurance.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Likewise, tell the older women to be reverent in behavior, not to be slanderers or slaves to drink; they are to teach what is good,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> so that they may encourage the young women to love their husbands, to love their children,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> to be self-controlled, chaste, good managers of the household, kind, being submissive to their husbands, so that the word of God may not be discredited.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Likewise, urge the younger men to be self-controlled.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Show yourself in all respects a model of good works, and in your teaching show integrity, gravity,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> and sound speech that cannot be censured; then any opponent will be put to shame, having nothing evil to say of us.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Tell slaves to be submissive to their masters and to give satisfaction in every respect; they are not to talk back,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> not to pilfer, but to show complete and perfect fidelity, so that in everything they may be an ornament to the doctrine of God our Savior.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> For the grace of God has appeared, bringing salvation to all, </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> training us to renounce impiety and worldly passions, and in the present age to live lives that are self-controlled, upright, and godly,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> while we wait for the blessed hope and the manifestation of the glory of our great God and Savior, Jesus Christ. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> He it is who gave himself for us that he might redeem us from all iniquity and purify for himself a people of his own who are zealous for good deeds.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Declare these things; exhort and reprove with all authority. Let no one look down on you. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> Remind them to be subject to rulers and authorities, to be obedient, to be ready for every good work,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> to speak evil of no one, to avoid quarreling, to be gentle, and to show every courtesy to everyone.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For we ourselves were once foolish, disobedient, led astray, slaves to various passions and pleasures, passing our days in malice and envy, despicable, hating one another.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But when the goodness and loving kindness of God our Savior appeared,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> he saved us, not because of any works of righteousness that we had done, but according to his mercy, through the water of rebirth and renewal by the Holy Spirit. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> This Spirit he poured out on us richly through Jesus Christ our Savior,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> so that, having been justified by his grace, we might become heirs according to the hope of eternal life.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The saying is sure. I desire that you insist on these things, so that those who have come to believe in God may be careful to devote themselves to good works; these things are excellent and profitable to everyone.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> But avoid stupid controversies, genealogies, dissensions, and quarrels about the law, for they are unprofitable and worthless.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> After a first and second admonition, have nothing more to do with anyone who causes divisions,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> since you know that such a person is perverted and sinful, being self-condemned.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> When I send Artemas to you, or Tychicus, do your best to come to me at Nicopolis, for I have decided to spend the winter there.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Make every effort to send Zenas the lawyer and Apollos on their way, and see that they lack nothing.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> And let people learn to devote themselves to good works in order to meet urgent needs, so that they may not be unproductive.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> All who are with me send greetings to you. Greet those who love us in the faith. Grace be with all of you. </VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"57\" bname=\"Philemon\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> Paul, a prisoner of Christ Jesus, and Timothy our brother, To Philemon our dear friend and co-worker, </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> to Apphia our sister, to Archippus our fellow soldier, and to the church in your house: </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Grace to you and peace from God our Father and the Lord Jesus Christ.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> When I remember you in my prayers, I always thank my God </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> because I hear of your love for all the saints and your faith toward the Lord Jesus.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> I pray that the sharing of your faith may become effective when you perceive all the good that we may do for Christ. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> I have indeed received much joy and encouragement from your love, because the hearts of the saints have been refreshed through you, my brother.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> For this reason, though I am bold enough in Christ to command you to do your duty,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> yet I would rather appeal to you on the basis of love-- and I, Paul, do this as an old man, and now also as a prisoner of Christ Jesus.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> I am appealing to you for my child, Onesimus, whose father I have become during my imprisonment.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Formerly he was useless to you, but now he is indeed useful both to you and to me. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> I am sending him, that is, my own heart, back to you.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> I wanted to keep him with me, so that he might be of service to me in your place during my imprisonment for the gospel;</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> but I preferred to do nothing without your consent, in order that your good deed might be voluntary and not something forced.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Perhaps this is the reason he was separated from you for a while, so that you might have him back forever,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> no longer as a slave but more than a slave, a beloved brother-- especially to me but how much more to you, both in the flesh and in the Lord.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> So if you consider me your partner, welcome him as you would welcome me.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> If he has wronged you in any way, or owes you anything, charge that to my account.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> I, Paul, am writing this with my own hand: I will repay it. I say nothing about your owing me even your own self.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Yes, brother, let me have this benefit from you in the Lord! Refresh my heart in Christ.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Confident of your obedience, I am writing to you, knowing that you will do even more than I say.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> One thing more-- prepare a guest room for me, for I am hoping through your prayers to be restored to you.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Epaphras, my fellow prisoner in Christ Jesus, sends greetings to you, </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> and so do Mark, Aristarchus, Demas, and Luke, my fellow workers.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> The grace of the Lord Jesus Christ be with your spirit. </VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"58\" bname=\"Hebrews\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> Long ago God spoke to our ancestors in many and various ways by the prophets,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> but in these last days he has spoken to us by a Son, whom he appointed heir of all things, through whom he also created the worlds. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> He is the reflection of God's glory and the exact imprint of God's very being, and he sustains all things by his powerful word. When he had made purification for sins, he sat down at the right hand of the Majesty on high, </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> having become as much superior to angels as the name he has inherited is more excellent than theirs.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> For to which of the angels did God ever say, \"You are my Son; today I have begotten you\"? Or again, \"I will be his Father, and he will be my Son\"?</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And again, when he brings the firstborn into the world, he says, \"Let all God's angels worship him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Of the angels he says, \"He makes his angels winds, and his servants flames of fire.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But of the Son he says, \"Your throne, O God, is forever and ever, and the righteous scepter is the scepter of your kingdom. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> You have loved righteousness and hated wickedness; therefore God, your God, has anointed you with the oil of gladness beyond your companions.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And, \"In the beginning, Lord, you founded the earth, and the heavens are the work of your hands;</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> they will perish, but you remain; they will all wear out like clothing;</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> like a cloak you will roll them up, and like clothing they will be changed. But you are the same, and your years will never end.\" </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> But to which of the angels has he ever said, \"Sit at my right hand until I make your enemies a footstool for your feet\"?</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Are not all angels spirits in the divine service, sent to serve for the sake of those who are to inherit salvation? </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> Therefore we must pay greater attention to what we have heard, so that we do not drift away from it.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> For if the message declared through angels was valid, and every transgression or disobedience received a just penalty,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> how can we escape if we neglect so great a salvation? It was declared at first through the Lord, and it was attested to us by those who heard him,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> while God added his testimony by signs and wonders and various miracles, and by gifts of the Holy Spirit, distributed according to his will.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Now God did not subject the coming world, about which we are speaking, to angels. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> But someone has testified somewhere, \"What are human beings that you are mindful of them, or mortals, that you care for them? </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> You have made them for a little while lower than the angels; you have crowned them with glory and honor, </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> subjecting all things under their feet.\" Now in subjecting all things to them, God left nothing outside their control. As it is, we do not yet see everything in subjection to them, </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> but we do see Jesus, who for a little while was made lower than the angels, now crowned with glory and honor because of the suffering of death, so that by the grace of God he might taste death for everyone. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> It was fitting that God, for whom and through whom all things exist, in bringing many children to glory, should make the pioneer of their salvation perfect through sufferings. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> For the one who sanctifies and those who are sanctified all have one Father. For this reason Jesus is not ashamed to call them brothers and sisters, </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> saying, \"I will proclaim your name to my brothers and sisters, in the midst of the congregation I will praise you.\" </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And again, \"I will put my trust in him.\" And again, \"Here am I and the children whom God has given me.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Since, therefore, the children share flesh and blood, he himself likewise shared the same things, so that through death he might destroy the one who has the power of death, that is, the devil,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> and free those who all their lives were held in slavery by the fear of death.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> For it is clear that he did not come to help angels, but the descendants of Abraham.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Therefore he had to become like his brothers and sisters in every respect, so that he might be a merciful and faithful high priest in the service of God, to make a sacrifice of atonement for the sins of the people. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Because he himself was tested by what he suffered, he is able to help those who are being tested.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> Therefore, brothers and sisters, holy partners in a heavenly calling, consider that Jesus, the apostle and high priest of our confession, </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> was faithful to the one who appointed him, just as Moses also \"was faithful in all God's house.\" </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Yet Jesus is worthy of more glory than Moses, just as the builder of a house has more honor than the house itself. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> (For every house is built by someone, but the builder of all things is God.)</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Now Moses was faithful in all God's house as a servant, to testify to the things that would be spoken later. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Christ, however, was faithful over God's house as a son, and we are his house if we hold firm the confidence and the pride that belong to hope. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Therefore, as the Holy Spirit says, \"Today, if you hear his voice,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> do not harden your hearts as in the rebellion, as on the day of testing in the wilderness,</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> where your ancestors put me to the test, though they had seen my works</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> for forty years. Therefore I was angry with that generation, and I said, 'They always go astray in their hearts, and they have not known my ways.'</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> As in my anger I swore, 'They will not enter my rest.'\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Take care, brothers and sisters, that none of you may have an evil, unbelieving heart that turns away from the living God. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> But exhort one another every day, as long as it is called \"today,\" so that none of you may be hardened by the deceitfulness of sin.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> For we have become partners of Christ, if only we hold our first confidence firm to the end.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> As it is said, \"Today, if you hear his voice, do not harden your hearts as in the rebellion.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Now who were they who heard and yet were rebellious? Was it not all those who left Egypt under the leadership of Moses?</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> But with whom was he angry forty years? Was it not those who sinned, whose bodies fell in the wilderness?</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> And to whom did he swear that they would not enter his rest, if not to those who were disobedient?</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> So we see that they were unable to enter because of unbelief.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> Therefore, while the promise of entering his rest is still open, let us take care that none of you should seem to have failed to reach it.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> For indeed the good news came to us just as to them; but the message they heard did not benefit them, because they were not united by faith with those who listened. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For we who have believed enter that rest, just as God has said, \"As in my anger I swore, 'They shall not enter my rest,'\" though his works were finished at the foundation of the world. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For in one place it speaks about the seventh day as follows, \"And God rested on the seventh day from all his works.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> And again in this place it says, \"They shall not enter my rest.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Since therefore it remains open for some to enter it, and those who formerly received the good news failed to enter because of disobedience,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> again he sets a certain day-- \"today\"-- saying through David much later, in the words already quoted, \"Today, if you hear his voice, do not harden your hearts.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> For if Joshua had given them rest, God would not speak later about another day. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> So then, a sabbath rest still remains for the people of God;</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> for those who enter God's rest also cease from their labors as God did from his.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Let us therefore make every effort to enter that rest, so that no one may fall through such disobedience as theirs.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Indeed, the word of God is living and active, sharper than any two-edged sword, piercing until it divides soul from spirit, joints from marrow; it is able to judge the thoughts and intentions of the heart.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And before him no creature is hidden, but all are naked and laid bare to the eyes of the one to whom we must render an account.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Since, then, we have a great high priest who has passed through the heavens, Jesus, the Son of God, let us hold fast to our confession.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> For we do not have a high priest who is unable to sympathize with our weaknesses, but we have one who in every respect has been tested as we are, yet without sin. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Let us therefore approach the throne of grace with boldness, so that we may receive mercy and find grace to help in time of need.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"5\">\r\n\t\t\t<VERS vnumber=\"1\"> Every high priest chosen from among mortals is put in charge of things pertaining to God on their behalf, to offer gifts and sacrifices for sins.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He is able to deal gently with the ignorant and wayward, since he himself is subject to weakness;</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> and because of this he must offer sacrifice for his own sins as well as for those of the people.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> And one does not presume to take this honor, but takes it only when called by God, just as Aaron was.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> So also Christ did not glorify himself in becoming a high priest, but was appointed by the one who said to him, \"You are my Son, today I have begotten you\";</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> as he says also in another place, \"You are a priest forever, according to the order of Melchizedek.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> In the days of his flesh, Jesus offered up prayers and supplications, with loud cries and tears, to the one who was able to save him from death, and he was heard because of his reverent submission. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Although he was a Son, he learned obedience through what he suffered;</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> and having been made perfect, he became the source of eternal salvation for all who obey him,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> having been designated by God a high priest according to the order of Melchizedek.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> About this we have much to say that is hard to explain, since you have become dull in understanding. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> For though by this time you ought to be teachers, you need someone to teach you again the basic elements of the oracles of God. You need milk, not solid food;</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> for everyone who lives on milk, being still an infant, is unskilled in the word of righteousness.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But solid food is for the mature, for those whose faculties have been trained by practice to distinguish good from evil.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"6\">\r\n\t\t\t<VERS vnumber=\"1\"> Therefore let us go on toward perfection, leaving behind the basic teaching about Christ, and not laying again the foundation: repentance from dead works and faith toward God, </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> instruction about baptisms, laying on of hands, resurrection of the dead, and eternal judgment.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And we will do this, if God permits. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For it is impossible to restore again to repentance those who have once been enlightened, and have tasted the heavenly gift, and have shared in the Holy Spirit,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> and have tasted the goodness of the word of God and the powers of the age to come,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> and then have fallen away, since on their own they are crucifying again the Son of God and are holding him up to contempt.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Ground that drinks up the rain falling on it repeatedly, and that produces a crop useful to those for whom it is cultivated, receives a blessing from God.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But if it produces thorns and thistles, it is worthless and on the verge of being cursed; its end is to be burned over.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Even though we speak in this way, beloved, we are confident of better things in your case, things that belong to salvation.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For God is not unjust; he will not overlook your work and the love that you showed for his sake in serving the saints, as you still do. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> And we want each one of you to show the same diligence so as to realize the full assurance of hope to the very end,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> so that you may not become sluggish, but imitators of those who through faith and patience inherit the promises.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> When God made a promise to Abraham, because he had no one greater by whom to swear, he swore by himself,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> saying, \"I will surely bless you and multiply you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And thus Abraham, having patiently endured, obtained the promise. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Human beings, of course, swear by someone greater than themselves, and an oath given as confirmation puts an end to all dispute.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> In the same way, when God desired to show even more clearly to the heirs of the promise the unchangeable character of his purpose, he guaranteed it by an oath,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> so that through two unchangeable things, in which it is impossible that God would prove false, we who have taken refuge might be strongly encouraged to seize the hope set before us.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> We have this hope, a sure and steadfast anchor of the soul, a hope that enters the inner shrine behind the curtain,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> where Jesus, a forerunner on our behalf, has entered, having become a high priest forever according to the order of Melchizedek.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"7\">\r\n\t\t\t<VERS vnumber=\"1\"> This \"King Melchizedek of Salem, priest of the Most High God, met Abraham as he was returning from defeating the kings and blessed him\";</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> and to him Abraham apportioned \"one-tenth of everything.\" His name, in the first place, means \"king of righteousness\"; next he is also king of Salem, that is, \"king of peace.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Without father, without mother, without genealogy, having neither beginning of days nor end of life, but resembling the Son of God, he remains a priest forever.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> See how great he is! Even Abraham the patriarch gave him a tenth of the spoils. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> And those descendants of Levi who receive the priestly office have a commandment in the law to collect tithes from the people, that is, from their kindred, though these also are descended from Abraham. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> But this man, who does not belong to their ancestry, collected tithes from Abraham and blessed him who had received the promises. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> It is beyond dispute that the inferior is blessed by the superior.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> In the one case, tithes are received by those who are mortal; in the other, by one of whom it is testified that he lives.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> One might even say that Levi himself, who receives tithes, paid tithes through Abraham,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> for he was still in the loins of his ancestor when Melchizedek met him.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Now if perfection had been attainable through the levitical priesthood-- for the people received the law under this priesthood-- what further need would there have been to speak of another priest arising according to the order of Melchizedek, rather than one according to the order of Aaron?</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> For when there is a change in the priesthood, there is necessarily a change in the law as well.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Now the one of whom these things are spoken belonged to another tribe, from which no one has ever served at the altar.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> For it is evident that our Lord was descended from Judah, and in connection with that tribe Moses said nothing about priests.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> It is even more obvious when another priest arises, resembling Melchizedek,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> one who has become a priest, not through a legal requirement concerning physical descent, but through the power of an indestructible life.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> For it is attested of him, \"You are a priest forever, according to the order of Melchizedek.\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> There is, on the one hand, the abrogation of an earlier commandment because it was weak and ineffectual</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> (for the law made nothing perfect); there is, on the other hand, the introduction of a better hope, through which we approach God.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> This was confirmed with an oath; for others who became priests took their office without an oath,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> but this one became a priest with an oath, because of the one who said to him, \"The Lord has sworn and will not change his mind, 'You are a priest forever'\"--</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> accordingly Jesus has also become the guarantee of a better covenant.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Furthermore, the former priests were many in number, because they were prevented by death from continuing in office;</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> but he holds his priesthood permanently, because he continues forever.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Consequently he is able for all time to save those who approach God through him, since he always lives to make intercession for them. </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> For it was fitting that we should have such a high priest, holy, blameless, undefiled, separated from sinners, and exalted above the heavens.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Unlike the other high priests, he has no need to offer sacrifices day after day, first for his own sins, and then for those of the people; this he did once for all when he offered himself. </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> For the law appoints as high priests those who are subject to weakness, but the word of the oath, which came later than the law, appoints a Son who has been made perfect forever.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"8\">\r\n\t\t\t<VERS vnumber=\"1\"> Now the main point in what we are saying is this: we have such a high priest, one who is seated at the right hand of the throne of the Majesty in the heavens,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> a minister in the sanctuary and the true tent that the Lord, and not any mortal, has set up. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For every high priest is appointed to offer gifts and sacrifices; hence it is necessary for this priest also to have something to offer.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Now if he were on earth, he would not be a priest at all, since there are priests who offer gifts according to the law.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> They offer worship in a sanctuary that is a sketch and shadow of the heavenly one; for Moses, when he was about to erect the tent, was warned, \"See that you make everything according to the pattern that was shown you on the mountain.\" </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> But Jesus has now obtained a more excellent ministry, and to that degree he is the mediator of a better covenant, which has been enacted through better promises. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> For if that first covenant had been faultless, there would have been no need to look for a second one.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> God finds fault with them when he says: \"The days are surely coming, says the Lord, when I will establish a new covenant with the house of Israel and with the house of Judah; </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> not like the covenant that I made with their ancestors, on the day when I took them by the hand to lead them out of the land of Egypt; for they did not continue in my covenant, and so I had no concern for them, says the Lord.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> This is the covenant that I will make with the house of Israel after those days, says the Lord: I will put my laws in their minds, and write them on their hearts, and I will be their God, and they shall be my people.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> And they shall not teach one another or say to each other, 'Know the Lord,' for they shall all know me, from the least of them to the greatest.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> For I will be merciful toward their iniquities, and I will remember their sins no more.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> In speaking of \"a new covenant,\" he has made the first one obsolete. And what is obsolete and growing old will soon disappear.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"9\">\r\n\t\t\t<VERS vnumber=\"1\"> Now even the first covenant had regulations for worship and an earthly sanctuary.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> For a tent was constructed, the first one, in which were the lampstand, the table, and the bread of the Presence; this is called the Holy Place. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Behind the second curtain was a tent called the Holy of Holies. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> In it stood the golden altar of incense and the ark of the covenant overlaid on all sides with gold, in which there were a golden urn holding the manna, and Aaron's rod that budded, and the tablets of the covenant;</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> above it were the cherubim of glory overshadowing the mercy seat. Of these things we cannot speak now in detail. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Such preparations having been made, the priests go continually into the first tent to carry out their ritual duties; </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> but only the high priest goes into the second, and he but once a year, and not without taking the blood that he offers for himself and for the sins committed unintentionally by the people.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> By this the Holy Spirit indicates that the way into the sanctuary has not yet been disclosed as long as the first tent is still standing. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> This is a symbol of the present time, during which gifts and sacrifices are offered that cannot perfect the conscience of the worshiper,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> but deal only with food and drink and various baptisms, regulations for the body imposed until the time comes to set things right.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But when Christ came as a high priest of the good things that have come, then through the greater and perfect tent (not made with hands, that is, not of this creation), </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> he entered once for all into the Holy Place, not with the blood of goats and calves, but with his own blood, thus obtaining eternal redemption.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> For if the blood of goats and bulls, with the sprinkling of the ashes of a heifer, sanctifies those who have been defiled so that their flesh is purified,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> how much more will the blood of Christ, who through the eternal Spirit offered himself without blemish to God, purify our conscience from dead works to worship the living God! </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> For this reason he is the mediator of a new covenant, so that those who are called may receive the promised eternal inheritance, because a death has occurred that redeems them from the transgressions under the first covenant. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Where a will is involved, the death of the one who made it must be established. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> For a will takes effect only at death, since it is not in force as long as the one who made it is alive. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Hence not even the first covenant was inaugurated without blood.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> For when every commandment had been told to all the people by Moses in accordance with the law, he took the blood of calves and goats, with water and scarlet wool and hyssop, and sprinkled both the scroll itself and all the people, </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> saying, \"This is the blood of the covenant that God has ordained for you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> And in the same way he sprinkled with the blood both the tent and all the vessels used in worship. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Indeed, under the law almost everything is purified with blood, and without the shedding of blood there is no forgiveness of sins.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Thus it was necessary for the sketches of the heavenly things to be purified with these rites, but the heavenly things themselves need better sacrifices than these.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> For Christ did not enter a sanctuary made by human hands, a mere copy of the true one, but he entered into heaven itself, now to appear in the presence of God on our behalf.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Nor was it to offer himself again and again, as the high priest enters the Holy Place year after year with blood that is not his own;</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> for then he would have had to suffer again and again since the foundation of the world. But as it is, he has appeared once for all at the end of the age to remove sin by the sacrifice of himself.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> And just as it is appointed for mortals to die once, and after that the judgment,</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> so Christ, having been offered once to bear the sins of many, will appear a second time, not to deal with sin, but to save those who are eagerly waiting for him.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"10\">\r\n\t\t\t<VERS vnumber=\"1\"> Since the law has only a shadow of the good things to come and not the true form of these realities, it can never, by the same sacrifices that are continually offered year after year, make perfect those who approach. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Otherwise, would they not have ceased being offered, since the worshipers, cleansed once for all, would no longer have any consciousness of sin?</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> But in these sacrifices there is a reminder of sin year after year.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For it is impossible for the blood of bulls and goats to take away sins.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Consequently, when Christ came into the world, he said, \"Sacrifices and offerings you have not desired, but a body you have prepared for me; </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> in burnt offerings and sin offerings you have taken no pleasure.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then I said, 'See, God, I have come to do your will, O God' (in the scroll of the book it is written of me).\" </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> When he said above, \"You have neither desired nor taken pleasure in sacrifices and offerings and burnt offerings and sin offerings\" (these are offered according to the law),</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> then he added, \"See, I have come to do your will.\" He abolishes the first in order to establish the second.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And it is by God's will that we have been sanctified through the offering of the body of Jesus Christ once for all. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> And every priest stands day after day at his service, offering again and again the same sacrifices that can never take away sins.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> But when Christ had offered for all time a single sacrifice for sins, \"he sat down at the right hand of God,\" </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> and since then has been waiting \"until his enemies would be made a footstool for his feet.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> For by a single offering he has perfected for all time those who are sanctified.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And the Holy Spirit also testifies to us, for after saying,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> \"This is the covenant that I will make with them after those days, says the Lord: I will put my laws in their hearts, and I will write them on their minds,\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> he also adds, \"I will remember their sins and their lawless deeds no more.\" </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Where there is forgiveness of these, there is no longer any offering for sin.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Therefore, my friends, since we have confidence to enter the sanctuary by the blood of Jesus, </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> by the new and living way that he opened for us through the curtain (that is, through his flesh),</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> and since we have a great priest over the house of God,</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> let us approach with a true heart in full assurance of faith, with our hearts sprinkled clean from an evil conscience and our bodies washed with pure water.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Let us hold fast to the confession of our hope without wavering, for he who has promised is faithful.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> And let us consider how to provoke one another to love and good deeds,</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> not neglecting to meet together, as is the habit of some, but encouraging one another, and all the more as you see the Day approaching.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> For if we willfully persist in sin after having received the knowledge of the truth, there no longer remains a sacrifice for sins,</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> but a fearful prospect of judgment, and a fury of fire that will consume the adversaries.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Anyone who has violated the law of Moses dies without mercy \"on the testimony of two or three witnesses.\"</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> How much worse punishment do you think will be deserved by those who have spurned the Son of God, profaned the blood of the covenant by which they were sanctified, and outraged the Spirit of grace?</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> For we know the one who said, \"Vengeance is mine, I will repay.\" And again, \"The Lord will judge his people.\"</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> It is a fearful thing to fall into the hands of the living God.</VERS>\r\n\t\t\t<VERS vnumber=\"32\"> But recall those earlier days when, after you had been enlightened, you endured a hard struggle with sufferings,</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> sometimes being publicly exposed to abuse and persecution, and sometimes being partners with those so treated.</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> For you had compassion for those who were in prison, and you cheerfully accepted the plundering of your possessions, knowing that you yourselves possessed something better and more lasting.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Do not, therefore, abandon that confidence of yours; it brings a great reward.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> For you need endurance, so that when you have done the will of God, you may receive what was promised.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> For yet \"in a very little while, the one who is coming will come and will not delay;</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> but my righteous one will live by faith. My soul takes no pleasure in anyone who shrinks back.\"</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> But we are not among those who shrink back and so are lost, but among those who have faith and so are saved.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"11\">\r\n\t\t\t<VERS vnumber=\"1\"> Now faith is the assurance of things hoped for, the conviction of things not seen.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Indeed, by faith our ancestors received approval. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> By faith we understand that the worlds were prepared by the word of God, so that what is seen was made from things that are not visible. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> By faith Abel offered to God a more acceptable sacrifice than Cain's. Through this he received approval as righteous, God himself giving approval to his gifts; he died, but through his faith he still speaks. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> By faith Enoch was taken so that he did not experience death; and \"he was not found, because God had taken him.\" For it was attested before he was taken away that \"he had pleased God.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And without faith it is impossible to please God, for whoever would approach him must believe that he exists and that he rewards those who seek him.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> By faith Noah, warned by God about events as yet unseen, respected the warning and built an ark to save his household; by this he condemned the world and became an heir to the righteousness that is in accordance with faith.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> By faith Abraham obeyed when he was called to set out for a place that he was to receive as an inheritance; and he set out, not knowing where he was going.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> By faith he stayed for a time in the land he had been promised, as in a foreign land, living in tents, as did Isaac and Jacob, who were heirs with him of the same promise.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For he looked forward to the city that has foundations, whose architect and builder is God.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> By faith he received power of procreation, even though he was too old-- and Sarah herself was barren-- because he considered him faithful who had promised.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Therefore from one person, and this one as good as dead, descendants were born, \"as many as the stars of heaven and as the innumerable grains of sand by the seashore.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> All of these died in faith without having received the promises, but from a distance they saw and greeted them. They confessed that they were strangers and foreigners on the earth,</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> for people who speak in this way make it clear that they are seeking a homeland.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> If they had been thinking of the land that they had left behind, they would have had opportunity to return.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> But as it is, they desire a better country, that is, a heavenly one. Therefore God is not ashamed to be called their God; indeed, he has prepared a city for them.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> By faith Abraham, when put to the test, offered up Isaac. He who had received the promises was ready to offer up his only son,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> of whom he had been told, \"It is through Isaac that descendants shall be named for you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> He considered the fact that God is able even to raise someone from the dead-- and figuratively speaking, he did receive him back.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> By faith Isaac invoked blessings for the future on Jacob and Esau.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> By faith Jacob, when dying, blessed each of the sons of Joseph, \"bowing in worship over the top of his staff.\"</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> By faith Joseph, at the end of his life, made mention of the exodus of the Israelites and gave instructions about his burial. </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> By faith Moses was hidden by his parents for three months after his birth, because they saw that the child was beautiful; and they were not afraid of the king's edict. </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> By faith Moses, when he was grown up, refused to be called a son of Pharaoh's daughter,</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> choosing rather to share ill-treatment with the people of God than to enjoy the fleeting pleasures of sin.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> He considered abuse suffered for the Christ to be greater wealth than the treasures of Egypt, for he was looking ahead to the reward. </VERS>\r\n\t\t\t<VERS vnumber=\"27\"> By faith he left Egypt, unafraid of the king's anger; for he persevered as though he saw him who is invisible. </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> By faith he kept the Passover and the sprinkling of blood, so that the destroyer of the firstborn would not touch the firstborn of Israel. </VERS>\r\n\t\t\t<VERS vnumber=\"29\"> By faith the people passed through the Red Sea as if it were dry land, but when the Egyptians attempted to do so they were drowned.</VERS>\r\n\t\t\t<VERS vnumber=\"30\"> By faith the walls of Jericho fell after they had been encircled for seven days.</VERS>\r\n\t\t\t<VERS vnumber=\"31\"> By faith Rahab the prostitute did not perish with those who were disobedient, because she had received the spies in peace. </VERS>\r\n\t\t\t<VERS vnumber=\"32\"> And what more should I say? For time would fail me to tell of Gideon, Barak, Samson, Jephthah, of David and Samuel and the prophets--</VERS>\r\n\t\t\t<VERS vnumber=\"33\"> who through faith conquered kingdoms, administered justice, obtained promises, shut the mouths of lions,</VERS>\r\n\t\t\t<VERS vnumber=\"34\"> quenched raging fire, escaped the edge of the sword, won strength out of weakness, became mighty in war, put foreign armies to flight.</VERS>\r\n\t\t\t<VERS vnumber=\"35\"> Women received their dead by resurrection. Others were tortured, refusing to accept release, in order to obtain a better resurrection.</VERS>\r\n\t\t\t<VERS vnumber=\"36\"> Others suffered mocking and flogging, and even chains and imprisonment.</VERS>\r\n\t\t\t<VERS vnumber=\"37\"> They were stoned to death, they were sawn in two, they were killed by the sword; they went about in skins of sheep and goats, destitute, persecuted, tormented--</VERS>\r\n\t\t\t<VERS vnumber=\"38\"> of whom the world was not worthy. They wandered in deserts and mountains, and in caves and holes in the ground.</VERS>\r\n\t\t\t<VERS vnumber=\"39\"> Yet all these, though they were commended for their faith, did not receive what was promised,</VERS>\r\n\t\t\t<VERS vnumber=\"40\"> since God had provided something better so that they would not, apart from us, be made perfect.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"12\">\r\n\t\t\t<VERS vnumber=\"1\"> Therefore, since we are surrounded by so great a cloud of witnesses, let us also lay aside every weight and the sin that clings so closely, and let us run with perseverance the race that is set before us, </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> looking to Jesus the pioneer and perfecter of our faith, who for the sake of the joy that was set before him endured the cross, disregarding its shame, and has taken his seat at the right hand of the throne of God. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Consider him who endured such hostility against himself from sinners, so that you may not grow weary or lose heart. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> In your struggle against sin you have not yet resisted to the point of shedding your blood.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> And you have forgotten the exhortation that addresses you as children-- \"My child, do not regard lightly the discipline of the Lord, or lose heart when you are punished by him;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> for the Lord disciplines those whom he loves, and chastises every child whom he accepts.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Endure trials for the sake of discipline. God is treating you as children; for what child is there whom a parent does not discipline?</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> If you do not have that discipline in which all children share, then you are illegitimate and not his children.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Moreover, we had human parents to discipline us, and we respected them. Should we not be even more willing to be subject to the Father of spirits and live?</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For they disciplined us for a short time as seemed best to them, but he disciplines us for our good, in order that we may share his holiness.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Now, discipline always seems painful rather than pleasant at the time, but later it yields the peaceful fruit of righteousness to those who have been trained by it.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Therefore lift your drooping hands and strengthen your weak knees,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> and make straight paths for your feet, so that what is lame may not be put out of joint, but rather be healed.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Pursue peace with everyone, and the holiness without which no one will see the Lord.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> See to it that no one fails to obtain the grace of God; that no root of bitterness springs up and causes trouble, and through it many become defiled.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> See to it that no one becomes like Esau, an immoral and godless person, who sold his birthright for a single meal.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> You know that later, when he wanted to inherit the blessing, he was rejected, for he found no chance to repent, even though he sought the blessing with tears. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> You have not come to something that can be touched, a blazing fire, and darkness, and gloom, and a tempest, </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> and the sound of a trumpet, and a voice whose words made the hearers beg that not another word be spoken to them.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> (For they could not endure the order that was given, \"If even an animal touches the mountain, it shall be stoned to death.\"</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Indeed, so terrifying was the sight that Moses said, \"I tremble with fear.\")</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> But you have come to Mount Zion and to the city of the living God, the heavenly Jerusalem, and to innumerable angels in festal gathering,</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> and to the assembly of the firstborn who are enrolled in heaven, and to God the judge of all, and to the spirits of the righteous made perfect, </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> and to Jesus, the mediator of a new covenant, and to the sprinkled blood that speaks a better word than the blood of Abel.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> See that you do not refuse the one who is speaking; for if they did not escape when they refused the one who warned them on earth, how much less will we escape if we reject the one who warns from heaven!</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> At that time his voice shook the earth; but now he has promised, \"Yet once more I will shake not only the earth but also the heaven.\"</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> This phrase, \"Yet once more,\" indicates the removal of what is shaken-- that is, created things-- so that what cannot be shaken may remain.</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> Therefore, since we are receiving a kingdom that cannot be shaken, let us give thanks, by which we offer to God an acceptable worship with reverence and awe;</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> for indeed our God is a consuming fire.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"13\">\r\n\t\t\t<VERS vnumber=\"1\"> Let mutual love continue.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Do not neglect to show hospitality to strangers, for by doing that some have entertained angels without knowing it.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Remember those who are in prison, as though you were in prison with them; those who are being tortured, as though you yourselves were being tortured. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Let marriage be held in honor by all, and let the marriage bed be kept undefiled; for God will judge fornicators and adulterers.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Keep your lives free from the love of money, and be content with what you have; for he has said, \"I will never leave you or forsake you.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> So we can say with confidence, \"The Lord is my helper; I will not be afraid. What can anyone do to me?\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Remember your leaders, those who spoke the word of God to you; consider the outcome of their way of life, and imitate their faith.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Jesus Christ is the same yesterday and today and forever.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Do not be carried away by all kinds of strange teachings; for it is well for the heart to be strengthened by grace, not by regulations about food, which have not benefited those who observe them. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> We have an altar from which those who officiate in the tent have no right to eat. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> For the bodies of those animals whose blood is brought into the sanctuary by the high priest as a sacrifice for sin are burned outside the camp.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Therefore Jesus also suffered outside the city gate in order to sanctify the people by his own blood.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Let us then go to him outside the camp and bear the abuse he endured.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> For here we have no lasting city, but we are looking for the city that is to come.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Through him, then, let us continually offer a sacrifice of praise to God, that is, the fruit of lips that confess his name.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Do not neglect to do good and to share what you have, for such sacrifices are pleasing to God.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Obey your leaders and submit to them, for they are keeping watch over your souls and will give an account. Let them do this with joy and not with sighing-- for that would be harmful to you.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Pray for us; we are sure that we have a clear conscience, desiring to act honorably in all things.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> I urge you all the more to do this, so that I may be restored to you very soon.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Now may the God of peace, who brought back from the dead our Lord Jesus, the great shepherd of the sheep, by the blood of the eternal covenant,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> make you complete in everything good so that you may do his will, working among us that which is pleasing in his sight, through Jesus Christ, to whom be the glory forever and ever. Amen.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> I appeal to you, brothers and sisters, bear with my word of exhortation, for I have written to you briefly. </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> I want you to know that our brother Timothy has been set free; and if he comes in time, he will be with me when I see you.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Greet all your leaders and all the saints. Those from Italy send you greetings.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Grace be with all of you. </VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"59\" bname=\"James\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> James, a servant of God and of the Lord Jesus Christ, To the twelve tribes in the Dispersion: Greetings. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> My brothers and sisters, whenever you face trials of any kind, consider it nothing but joy, </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> because you know that the testing of your faith produces endurance;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> and let endurance have its full effect, so that you may be mature and complete, lacking in nothing.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> If any of you is lacking in wisdom, ask God, who gives to all generously and ungrudgingly, and it will be given you.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> But ask in faith, never doubting, for the one who doubts is like a wave of the sea, driven and tossed by the wind;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> for the doubter, being double-minded and unstable in every way, must not expect to receive anything from the Lord.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Let the believer who is lowly boast in being raised up, </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> and the rich in being brought low, because the rich will disappear like a flower in the field.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> For the sun rises with its scorching heat and withers the field; its flower falls, and its beauty perishes. It is the same way with the rich; in the midst of a busy life, they will wither away.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Blessed is anyone who endures temptation. Such a one has stood the test and will receive the crown of life that the Lord has promised to those who love him. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> No one, when tempted, should say, \"I am being tempted by God\"; for God cannot be tempted by evil and he himself tempts no one.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But one is tempted by one's own desire, being lured and enticed by it;</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> then, when that desire has conceived, it gives birth to sin, and that sin, when it is fully grown, gives birth to death.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Do not be deceived, my beloved. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Every generous act of giving, with every perfect gift, is from above, coming down from the Father of lights, with whom there is no variation or shadow due to change. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> In fulfillment of his own purpose he gave us birth by the word of truth, so that we would become a kind of first fruits of his creatures.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> You must understand this, my beloved: let everyone be quick to listen, slow to speak, slow to anger; </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> for your anger does not produce God's righteousness.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Therefore rid yourselves of all sordidness and rank growth of wickedness, and welcome with meekness the implanted word that has the power to save your souls.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> But be doers of the word, and not merely hearers who deceive themselves.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> For if any are hearers of the word and not doers, they are like those who look at themselves in a mirror; </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> for they look at themselves and, on going away, immediately forget what they were like.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> But those who look into the perfect law, the law of liberty, and persevere, being not hearers who forget but doers who act-- they will be blessed in their doing.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> If any think they are religious, and do not bridle their tongues but deceive their hearts, their religion is worthless.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> Religion that is pure and undefiled before God, the Father, is this: to care for orphans and widows in their distress, and to keep oneself unstained by the world.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> My brothers and sisters, do you with your acts of favoritism really believe in our glorious Lord Jesus Christ? </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> For if a person with gold rings and in fine clothes comes into your assembly, and if a poor person in dirty clothes also comes in,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> and if you take notice of the one wearing the fine clothes and say, \"Have a seat here, please,\" while to the one who is poor you say, \"Stand there,\" or, \"Sit at my feet,\" </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> have you not made distinctions among yourselves, and become judges with evil thoughts?</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Listen, my beloved brothers and sisters. Has not God chosen the poor in the world to be rich in faith and to be heirs of the kingdom that he has promised to those who love him? </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> But you have dishonored the poor. Is it not the rich who oppress you? Is it not they who drag you into court?</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Is it not they who blaspheme the excellent name that was invoked over you?</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> You do well if you really fulfill the royal law according to the scripture, \"You shall love your neighbor as yourself.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> But if you show partiality, you commit sin and are convicted by the law as transgressors.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For whoever keeps the whole law but fails in one point has become accountable for all of it.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> For the one who said, \"You shall not commit adultery,\" also said, \"You shall not murder.\" Now if you do not commit adultery but if you murder, you have become a transgressor of the law.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> So speak and so act as those who are to be judged by the law of liberty.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> For judgment will be without mercy to anyone who has shown no mercy; mercy triumphs over judgment.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> What good is it, my brothers and sisters, if you say you have faith but do not have works? Can faith save you? </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> If a brother or sister is naked and lacks daily food,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> and one of you says to them, \"Go in peace; keep warm and eat your fill,\" and yet you do not supply their bodily needs, what is the good of that?</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> So faith by itself, if it has no works, is dead.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> But someone will say, \"You have faith and I have works.\" Show me your faith apart from your works, and I by my works will show you my faith.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> You believe that God is one; you do well. Even the demons believe-- and shudder.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Do you want to be shown, you senseless person, that faith apart from works is barren?</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Was not our ancestor Abraham justified by works when he offered his son Isaac on the altar?</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> You see that faith was active along with his works, and faith was brought to completion by the works.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> Thus the scripture was fulfilled that says, \"Abraham believed God, and it was reckoned to him as righteousness,\" and he was called the friend of God.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> You see that a person is justified by works and not by faith alone.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Likewise, was not Rahab the prostitute also justified by works when she welcomed the messengers and sent them out by another road?</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> For just as the body without the spirit is dead, so faith without works is also dead.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> Not many of you should become teachers, my brothers and sisters, for you know that we who teach will be judged with greater strictness. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> For all of us make many mistakes. Anyone who makes no mistakes in speaking is perfect, able to keep the whole body in check with a bridle.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> If we put bits into the mouths of horses to make them obey us, we guide their whole bodies.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Or look at ships: though they are so large that it takes strong winds to drive them, yet they are guided by a very small rudder wherever the will of the pilot directs.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> So also the tongue is a small member, yet it boasts of great exploits. How great a forest is set ablaze by a small fire!</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And the tongue is a fire. The tongue is placed among our members as a world of iniquity; it stains the whole body, sets on fire the cycle of nature, and is itself set on fire by hell.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> For every species of beast and bird, of reptile and sea creature, can be tamed and has been tamed by the human species,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> but no one can tame the tongue-- a restless evil, full of deadly poison.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> With it we bless the Lord and Father, and with it we curse those who are made in the likeness of God.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> From the same mouth come blessing and cursing. My brothers and sisters, this ought not to be so. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Does a spring pour forth from the same opening both fresh and brackish water?</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Can a fig tree, my brothers and sisters, yield olives, or a grapevine figs? No more can salt water yield fresh. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Who is wise and understanding among you? Show by your good life that your works are done with gentleness born of wisdom.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But if you have bitter envy and selfish ambition in your hearts, do not be boastful and false to the truth.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Such wisdom does not come down from above, but is earthly, unspiritual, devilish.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> For where there is envy and selfish ambition, there will also be disorder and wickedness of every kind.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> But the wisdom from above is first pure, then peaceable, gentle, willing to yield, full of mercy and good fruits, without a trace of partiality or hypocrisy.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> And a harvest of righteousness is sown in peace for those who make peace. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> Those conflicts and disputes among you, where do they come from? Do they not come from your cravings that are at war within you?</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> You want something and do not have it; so you commit murder. And you covet something and cannot obtain it; so you engage in disputes and conflicts. You do not have, because you do not ask. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> You ask and do not receive, because you ask wrongly, in order to spend what you get on your pleasures.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Adulterers! Do you not know that friendship with the world is enmity with God? Therefore whoever wishes to be a friend of the world becomes an enemy of God.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Or do you suppose that it is for nothing that the scripture says, \"God yearns jealously for the spirit that he has made to dwell in us\"? </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> But he gives all the more grace; therefore it says, \"God opposes the proud, but gives grace to the humble.\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Submit yourselves therefore to God. Resist the devil, and he will flee from you.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Draw near to God, and he will draw near to you. Cleanse your hands, you sinners, and purify your hearts, you double-minded.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Lament and mourn and weep. Let your laughter be turned into mourning and your joy into dejection.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Humble yourselves before the Lord, and he will exalt you.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Do not speak evil against one another, brothers and sisters. Whoever speaks evil against another or judges another, speaks evil against the law and judges the law; but if you judge the law, you are not a doer of the law but a judge. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> There is one lawgiver and judge who is able to save and to destroy. So who, then, are you to judge your neighbor?</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Come now, you who say, \"Today or tomorrow we will go to such and such a town and spend a year there, doing business and making money.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Yet you do not even know what tomorrow will bring. What is your life? For you are a mist that appears for a little while and then vanishes.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Instead you ought to say, \"If the Lord wishes, we will live and do this or that.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> As it is, you boast in your arrogance; all such boasting is evil.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Anyone, then, who knows the right thing to do and fails to do it, commits sin.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"5\">\r\n\t\t\t<VERS vnumber=\"1\"> Come now, you rich people, weep and wail for the miseries that are coming to you.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Your riches have rotted, and your clothes are moth-eaten.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Your gold and silver have rusted, and their rust will be evidence against you, and it will eat your flesh like fire. You have laid up treasure for the last days. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Listen! The wages of the laborers who mowed your fields, which you kept back by fraud, cry out, and the cries of the harvesters have reached the ears of the Lord of hosts.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> You have lived on the earth in luxury and in pleasure; you have fattened your hearts in a day of slaughter.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> You have condemned and murdered the righteous one, who does not resist you.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Be patient, therefore, beloved, until the coming of the Lord. The farmer waits for the precious crop from the earth, being patient with it until it receives the early and the late rains.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> You also must be patient. Strengthen your hearts, for the coming of the Lord is near. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Beloved, do not grumble against one another, so that you may not be judged. See, the Judge is standing at the doors! </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> As an example of suffering and patience, beloved, take the prophets who spoke in the name of the Lord. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Indeed we call blessed those who showed endurance. You have heard of the endurance of Job, and you have seen the purpose of the Lord, how the Lord is compassionate and merciful.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Above all, my beloved, do not swear, either by heaven or by earth or by any other oath, but let your \"Yes\" be yes and your \"No\" be no, so that you may not fall under condemnation. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Are any among you suffering? They should pray. Are any cheerful? They should sing songs of praise.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Are any among you sick? They should call for the elders of the church and have them pray over them, anointing them with oil in the name of the Lord.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The prayer of faith will save the sick, and the Lord will raise them up; and anyone who has committed sins will be forgiven.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Therefore confess your sins to one another, and pray for one another, so that you may be healed. The prayer of the righteous is powerful and effective.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Elijah was a human being like us, and he prayed fervently that it might not rain, and for three years and six months it did not rain on the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then he prayed again, and the heaven gave rain and the earth yielded its harvest.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> My brothers and sisters, if anyone among you wanders from the truth and is brought back by another, </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> you should know that whoever brings back a sinner from wandering will save the sinner's soul from death and will cover a multitude of sins. </VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"60\" bname=\"1 Peter\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> Peter, an apostle of Jesus Christ, To the exiles of the Dispersion in Pontus, Galatia, Cappadocia, Asia, and Bithynia,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> who have been chosen and destined by God the Father and sanctified by the Spirit to be obedient to Jesus Christ and to be sprinkled with his blood: May grace and peace be yours in abundance.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Blessed be the God and Father of our Lord Jesus Christ! By his great mercy he has given us a new birth into a living hope through the resurrection of Jesus Christ from the dead,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> and into an inheritance that is imperishable, undefiled, and unfading, kept in heaven for you,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> who are being protected by the power of God through faith for a salvation ready to be revealed in the last time.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> In this you rejoice, even if now for a little while you have had to suffer various trials, </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> so that the genuineness of your faith-- being more precious than gold that, though perishable, is tested by fire-- may be found to result in praise and glory and honor when Jesus Christ is revealed.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Although you have not seen him, you love him; and even though you do not see him now, you believe in him and rejoice with an indescribable and glorious joy, </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> for you are receiving the outcome of your faith, the salvation of your souls.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Concerning this salvation, the prophets who prophesied of the grace that was to be yours made careful search and inquiry,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> inquiring about the person or time that the Spirit of Christ within them indicated when it testified in advance to the sufferings destined for Christ and the subsequent glory.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> It was revealed to them that they were serving not themselves but you, in regard to the things that have now been announced to you through those who brought you good news by the Holy Spirit sent from heaven-- things into which angels long to look!</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Therefore prepare your minds for action; discipline yourselves; set all your hope on the grace that Jesus Christ will bring you when he is revealed. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Like obedient children, do not be conformed to the desires that you formerly had in ignorance.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Instead, as he who called you is holy, be holy yourselves in all your conduct;</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> for it is written, \"You shall be holy, for I am holy.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> If you invoke as Father the one who judges all people impartially according to their deeds, live in reverent fear during the time of your exile.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> You know that you were ransomed from the futile ways inherited from your ancestors, not with perishable things like silver or gold,</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> but with the precious blood of Christ, like that of a lamb without defect or blemish.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> He was destined before the foundation of the world, but was revealed at the end of the ages for your sake.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Through him you have come to trust in God, who raised him from the dead and gave him glory, so that your faith and hope are set on God.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Now that you have purified your souls by your obedience to the truth so that you have genuine mutual love, love one another deeply from the heart. </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> You have been born anew, not of perishable but of imperishable seed, through the living and enduring word of God. </VERS>\r\n\t\t\t<VERS vnumber=\"24\"> For \"All flesh is like grass and all its glory like the flower of grass. The grass withers, and the flower falls,</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> but the word of the Lord endures forever.\" That word is the good news that was announced to you.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> Rid yourselves, therefore, of all malice, and all guile, insincerity, envy, and all slander.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Like newborn infants, long for the pure, spiritual milk, so that by it you may grow into salvation--</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> if indeed you have tasted that the Lord is good.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Come to him, a living stone, though rejected by mortals yet chosen and precious in God's sight, and</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> like living stones, let yourselves be built into a spiritual house, to be a holy priesthood, to offer spiritual sacrifices acceptable to God through Jesus Christ. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For it stands in scripture: \"See, I am laying in Zion a stone, a cornerstone chosen and precious; and whoever believes in him will not be put to shame.\" </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> To you then who believe, he is precious; but for those who do not believe, \"The stone that the builders rejected has become the very head of the corner,\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> and \"A stone that makes them stumble, and a rock that makes them fall.\" They stumble because they disobey the word, as they were destined to do.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> But you are a chosen race, a royal priesthood, a holy nation, God's own people, in order that you may proclaim the mighty acts of him who called you out of darkness into his marvelous light. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Once you were not a people, but now you are God's people; once you had not received mercy, but now you have received mercy.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Beloved, I urge you as aliens and exiles to abstain from the desires of the flesh that wage war against the soul.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Conduct yourselves honorably among the Gentiles, so that, though they malign you as evildoers, they may see your honorable deeds and glorify God when he comes to judge. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> For the Lord's sake accept the authority of every human institution, whether of the emperor as supreme, </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> or of governors, as sent by him to punish those who do wrong and to praise those who do right.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> For it is God's will that by doing right you should silence the ignorance of the foolish.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> As servants of God, live as free people, yet do not use your freedom as a pretext for evil.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Honor everyone. Love the family of believers. Fear God. Honor the emperor. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Slaves, accept the authority of your masters with all deference, not only those who are kind and gentle but also those who are harsh.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> For it is a credit to you if, being aware of God, you endure pain while suffering unjustly.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> If you endure when you are beaten for doing wrong, what credit is that? But if you endure when you do right and suffer for it, you have God's approval.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> For to this you have been called, because Christ also suffered for you, leaving you an example, so that you should follow in his steps.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> \"He committed no sin, and no deceit was found in his mouth.\"</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> When he was abused, he did not return abuse; when he suffered, he did not threaten; but he entrusted himself to the one who judges justly.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> He himself bore our sins in his body on the cross, so that, free from sins, we might live for righteousness; by his wounds you have been healed. </VERS>\r\n\t\t\t<VERS vnumber=\"25\"> For you were going astray like sheep, but now you have returned to the shepherd and guardian of your souls.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> Wives, in the same way, accept the authority of your husbands, so that, even if some of them do not obey the word, they may be won over without a word by their wives' conduct,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> when they see the purity and reverence of your lives.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Do not adorn yourselves outwardly by braiding your hair, and by wearing gold ornaments or fine clothing;</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> rather, let your adornment be the inner self with the lasting beauty of a gentle and quiet spirit, which is very precious in God's sight.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> It was in this way long ago that the holy women who hoped in God used to adorn themselves by accepting the authority of their husbands.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Thus Sarah obeyed Abraham and called him lord. You have become her daughters as long as you do what is good and never let fears alarm you.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Husbands, in the same way, show consideration for your wives in your life together, paying honor to the woman as the weaker sex, since they too are also heirs of the gracious gift of life-- so that nothing may hinder your prayers.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Finally, all of you, have unity of spirit, sympathy, love for one another, a tender heart, and a humble mind.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Do not repay evil for evil or abuse for abuse; but, on the contrary, repay with a blessing. It is for this that you were called-- that you might inherit a blessing.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> For \"Those who desire life and desire to see good days, let them keep their tongues from evil and their lips from speaking deceit;</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> let them turn away from evil and do good; let them seek peace and pursue it.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> For the eyes of the Lord are on the righteous, and his ears are open to their prayer. But the face of the Lord is against those who do evil.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Now who will harm you if you are eager to do what is good?</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But even if you do suffer for doing what is right, you are blessed. Do not fear what they fear, and do not be intimidated, </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> but in your hearts sanctify Christ as Lord. Always be ready to make your defense to anyone who demands from you an accounting for the hope that is in you;</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> yet do it with gentleness and reverence. Keep your conscience clear, so that, when you are maligned, those who abuse you for your good conduct in Christ may be put to shame. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> For it is better to suffer for doing good, if suffering should be God's will, than to suffer for doing evil.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> For Christ also suffered for sins once for all, the righteous for the unrighteous, in order to bring you to God. He was put to death in the flesh, but made alive in the spirit, </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> in which also he went and made a proclamation to the spirits in prison,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> who in former times did not obey, when God waited patiently in the days of Noah, during the building of the ark, in which a few, that is, eight persons, were saved through water.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> And baptism, which this prefigured, now saves you-- not as a removal of dirt from the body, but as an appeal to God for a good conscience, through the resurrection of Jesus Christ,</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> who has gone into heaven and is at the right hand of God, with angels, authorities, and powers made subject to him.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> Since therefore Christ suffered in the flesh, arm yourselves also with the same intention (for whoever has suffered in the flesh has finished with sin), </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> so as to live for the rest of your earthly life no longer by human desires but by the will of God. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> You have already spent enough time in doing what the Gentiles like to do, living in licentiousness, passions, drunkenness, revels, carousing, and lawless idolatry.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> They are surprised that you no longer join them in the same excesses of dissipation, and so they blaspheme. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> But they will have to give an accounting to him who stands ready to judge the living and the dead.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> For this is the reason the gospel was proclaimed even to the dead, so that, though they had been judged in the flesh as everyone is judged, they might live in the spirit as God does.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The end of all things is near; therefore be serious and discipline yourselves for the sake of your prayers. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Above all, maintain constant love for one another, for love covers a multitude of sins.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Be hospitable to one another without complaining.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Like good stewards of the manifold grace of God, serve one another with whatever gift each of you has received.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Whoever speaks must do so as one speaking the very words of God; whoever serves must do so with the strength that God supplies, so that God may be glorified in all things through Jesus Christ. To him belong the glory and the power forever and ever. Amen.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Beloved, do not be surprised at the fiery ordeal that is taking place among you to test you, as though something strange were happening to you.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> But rejoice insofar as you are sharing Christ's sufferings, so that you may also be glad and shout for joy when his glory is revealed.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> If you are reviled for the name of Christ, you are blessed, because the spirit of glory, which is the Spirit of God, is resting on you. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> But let none of you suffer as a murderer, a thief, a criminal, or even as a mischief maker.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Yet if any of you suffers as a Christian, do not consider it a disgrace, but glorify God because you bear this name.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> For the time has come for judgment to begin with the household of God; if it begins with us, what will be the end for those who do not obey the gospel of God?</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> And \"If it is hard for the righteous to be saved, what will become of the ungodly and the sinners?\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Therefore, let those suffering in accordance with God's will entrust themselves to a faithful Creator, while continuing to do good.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"5\">\r\n\t\t\t<VERS vnumber=\"1\"> Now as an elder myself and a witness of the sufferings of Christ, as well as one who shares in the glory to be revealed, I exhort the elders among you</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> to tend the flock of God that is in your charge, exercising the oversight, not under compulsion but willingly, as God would have you do it-- not for sordid gain but eagerly.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Do not lord it over those in your charge, but be examples to the flock.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> And when the chief shepherd appears, you will win the crown of glory that never fades away.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> In the same way, you who are younger must accept the authority of the elders. And all of you must clothe yourselves with humility in your dealings with one another, for \"God opposes the proud, but gives grace to the humble.\" </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Humble yourselves therefore under the mighty hand of God, so that he may exalt you in due time.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Cast all your anxiety on him, because he cares for you.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Discipline yourselves, keep alert. Like a roaring lion your adversary the devil prowls around, looking for someone to devour. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Resist him, steadfast in your faith, for you know that your brothers and sisters in all the world are undergoing the same kinds of suffering. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And after you have suffered for a little while, the God of all grace, who has called you to his eternal glory in Christ, will himself restore, support, strengthen, and establish you.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> To him be the power forever and ever. Amen.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Through Silvanus, whom I consider a faithful brother, I have written this short letter to encourage you and to testify that this is the true grace of God. Stand fast in it.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Your sister church in Babylon, chosen together with you, sends you greetings; and so does my son Mark. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Greet one another with a kiss of love. Peace to all of you who are in Christ. </VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"61\" bname=\"2 Peter\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> Simeon Peter, a servant and apostle of Jesus Christ, To those who have received a faith as precious as ours through the righteousness of our God and Savior Jesus Christ:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> May grace and peace be yours in abundance in the knowledge of God and of Jesus our Lord.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> His divine power has given us everything needed for life and godliness, through the knowledge of him who called us by his own glory and goodness. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Thus he has given us, through these things, his precious and very great promises, so that through them you may escape from the corruption that is in the world because of lust, and may become participants of the divine nature.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> For this very reason, you must make every effort to support your faith with goodness, and goodness with knowledge,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> and knowledge with self-control, and self-control with endurance, and endurance with godliness,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> and godliness with mutual affection, and mutual affection with love. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> For if these things are yours and are increasing among you, they keep you from being ineffective and unfruitful in the knowledge of our Lord Jesus Christ.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> For anyone who lacks these things is nearsighted and blind, and is forgetful of the cleansing of past sins.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Therefore, brothers and sisters, be all the more eager to confirm your call and election, for if you do this, you will never stumble. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> For in this way, entry into the eternal kingdom of our Lord and Savior Jesus Christ will be richly provided for you.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Therefore I intend to keep on reminding you of these things, though you know them already and are established in the truth that has come to you.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> I think it right, as long as I am in this body, to refresh your memory, </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> since I know that my death will come soon, as indeed our Lord Jesus Christ has made clear to me. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And I will make every effort so that after my departure you may be able at any time to recall these things.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> For we did not follow cleverly devised myths when we made known to you the power and coming of our Lord Jesus Christ, but we had been eyewitnesses of his majesty.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> For he received honor and glory from God the Father when that voice was conveyed to him by the Majestic Glory, saying, \"This is my Son, my Beloved, with whom I am well pleased.\" </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> We ourselves heard this voice come from heaven, while we were with him on the holy mountain.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> So we have the prophetic message more fully confirmed. You will do well to be attentive to this as to a lamp shining in a dark place, until the day dawns and the morning star rises in your hearts.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> First of all you must understand this, that no prophecy of scripture is a matter of one's own interpretation,</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> because no prophecy ever came by human will, but men and women moved by the Holy Spirit spoke from God. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> But false prophets also arose among the people, just as there will be false teachers among you, who will secretly bring in destructive opinions. They will even deny the Master who bought them-- bringing swift destruction on themselves.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Even so, many will follow their licentious ways, and because of these teachers the way of truth will be maligned. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And in their greed they will exploit you with deceptive words. Their condemnation, pronounced against them long ago, has not been idle, and their destruction is not asleep.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For if God did not spare the angels when they sinned, but cast them into hell and committed them to chains of deepest darkness to be kept until the judgment; </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> and if he did not spare the ancient world, even though he saved Noah, a herald of righteousness, with seven others, when he brought a flood on a world of the ungodly;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> and if by turning the cities of Sodom and Gomorrah to ashes he condemned them to extinction and made them an example of what is coming to the ungodly; </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> and if he rescued Lot, a righteous man greatly distressed by the licentiousness of the lawless</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> (for that righteous man, living among them day after day, was tormented in his righteous soul by their lawless deeds that he saw and heard),</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> then the Lord knows how to rescue the godly from trial, and to keep the unrighteous under punishment until the day of judgment</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> -- especially those who indulge their flesh in depraved lust, and who despise authority. Bold and willful, they are not afraid to slander the glorious ones, </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> whereas angels, though greater in might and power, do not bring against them a slanderous judgment from the Lord. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> These people, however, are like irrational animals, mere creatures of instinct, born to be caught and killed. They slander what they do not understand, and when those creatures are destroyed, they also will be destroyed, </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> suffering the penalty for doing wrong. They count it a pleasure to revel in the daytime. They are blots and blemishes, reveling in their dissipation while they feast with you. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> They have eyes full of adultery, insatiable for sin. They entice unsteady souls. They have hearts trained in greed. Accursed children!</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> They have left the straight road and have gone astray, following the road of Balaam son of Bosor, who loved the wages of doing wrong, </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> but was rebuked for his own transgression; a speechless donkey spoke with a human voice and restrained the prophet's madness.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> These are waterless springs and mists driven by a storm; for them the deepest darkness has been reserved.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> For they speak bombastic nonsense, and with licentious desires of the flesh they entice people who have just escaped from those who live in error. </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> They promise them freedom, but they themselves are slaves of corruption; for people are slaves to whatever masters them.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> For if, after they have escaped the defilements of the world through the knowledge of our Lord and Savior Jesus Christ, they are again entangled in them and overpowered, the last state has become worse for them than the first.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> For it would have been better for them never to have known the way of righteousness than, after knowing it, to turn back from the holy commandment that was passed on to them.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> It has happened to them according to the true proverb, \"The dog turns back to its own vomit,\" and, \"The sow is washed only to wallow in the mud.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> This is now, beloved, the second letter I am writing to you; in them I am trying to arouse your sincere intention by reminding you</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> that you should remember the words spoken in the past by the holy prophets, and the commandment of the Lord and Savior spoken through your apostles.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> First of all you must understand this, that in the last days scoffers will come, scoffing and indulging their own lusts</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> and saying, \"Where is the promise of his coming? For ever since our ancestors died, all things continue as they were from the beginning of creation!\" </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> They deliberately ignore this fact, that by the word of God heavens existed long ago and an earth was formed out of water and by means of water,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> through which the world of that time was deluged with water and perished.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But by the same word the present heavens and earth have been reserved for fire, being kept until the day of judgment and destruction of the godless.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But do not ignore this one fact, beloved, that with the Lord one day is like a thousand years, and a thousand years are like one day.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The Lord is not slow about his promise, as some think of slowness, but is patient with you, not wanting any to perish, but all to come to repentance. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> But the day of the Lord will come like a thief, and then the heavens will pass away with a loud noise, and the elements will be dissolved with fire, and the earth and everything that is done on it will be disclosed. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Since all these things are to be dissolved in this way, what sort of persons ought you to be in leading lives of holiness and godliness,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> waiting for and hastening the coming of the day of God, because of which the heavens will be set ablaze and dissolved, and the elements will melt with fire? </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> But, in accordance with his promise, we wait for new heavens and a new earth, where righteousness is at home.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Therefore, beloved, while you are waiting for these things, strive to be found by him at peace, without spot or blemish;</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> and regard the patience of our Lord as salvation. So also our beloved brother Paul wrote to you according to the wisdom given him,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> speaking of this as he does in all his letters. There are some things in them hard to understand, which the ignorant and unstable twist to their own destruction, as they do the other scriptures.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> You therefore, beloved, since you are forewarned, beware that you are not carried away with the error of the lawless and lose your own stability.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> But grow in the grace and knowledge of our Lord and Savior Jesus Christ. To him be the glory both now and to the day of eternity. Amen. </VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"62\" bname=\"1 John\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> We declare to you what was from the beginning, what we have heard, what we have seen with our eyes, what we have looked at and touched with our hands, concerning the word of life--</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> this life was revealed, and we have seen it and testify to it, and declare to you the eternal life that was with the Father and was revealed to us--</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> we declare to you what we have seen and heard so that you also may have fellowship with us; and truly our fellowship is with the Father and with his Son Jesus Christ.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> We are writing these things so that our joy may be complete. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> This is the message we have heard from him and proclaim to you, that God is light and in him there is no darkness at all.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> If we say that we have fellowship with him while we are walking in darkness, we lie and do not do what is true;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> but if we walk in the light as he himself is in the light, we have fellowship with one another, and the blood of Jesus his Son cleanses us from all sin.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> If we say that we have no sin, we deceive ourselves, and the truth is not in us.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> If we confess our sins, he who is faithful and just will forgive us our sins and cleanse us from all unrighteousness.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> If we say that we have not sinned, we make him a liar, and his word is not in us.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> My little children, I am writing these things to you so that you may not sin. But if anyone does sin, we have an advocate with the Father, Jesus Christ the righteous;</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> and he is the atoning sacrifice for our sins, and not for ours only but also for the sins of the whole world.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Now by this we may be sure that we know him, if we obey his commandments.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Whoever says, \"I have come to know him,\" but does not obey his commandments, is a liar, and in such a person the truth does not exist;</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> but whoever obeys his word, truly in this person the love of God has reached perfection. By this we may be sure that we are in him:</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> whoever says, \"I abide in him,\" ought to walk just as he walked.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Beloved, I am writing you no new commandment, but an old commandment that you have had from the beginning; the old commandment is the word that you have heard.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Yet I am writing you a new commandment that is true in him and in you, because the darkness is passing away and the true light is already shining. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Whoever says, \"I am in the light,\" while hating a brother or sister, is still in the darkness. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Whoever loves a brother or sister lives in the light, and in such a person there is no cause for stumbling. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But whoever hates another believer is in the darkness, walks in the darkness, and does not know the way to go, because the darkness has brought on blindness.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> I am writing to you, little children, because your sins are forgiven on account of his name.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> I am writing to you, fathers, because you know him who is from the beginning. I am writing to you, young people, because you have conquered the evil one.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> I write to you, children, because you know the Father. I write to you, fathers, because you know him who is from the beginning. I write to you, young people, because you are strong and the word of God abides in you, and you have overcome the evil one.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Do not love the world or the things in the world. The love of the Father is not in those who love the world;</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> for all that is in the world-- the desire of the flesh, the desire of the eyes, the pride in riches-- comes not from the Father but from the world.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> And the world and its desire are passing away, but those who do the will of God live forever. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Children, it is the last hour! As you have heard that antichrist is coming, so now many antichrists have come. From this we know that it is the last hour.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> They went out from us, but they did not belong to us; for if they had belonged to us, they would have remained with us. But by going out they made it plain that none of them belongs to us.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> But you have been anointed by the Holy One, and all of you have knowledge. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> I write to you, not because you do not know the truth, but because you know it, and you know that no lie comes from the truth.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Who is the liar but the one who denies that Jesus is the Christ? This is the antichrist, the one who denies the Father and the Son. </VERS>\r\n\t\t\t<VERS vnumber=\"23\"> No one who denies the Son has the Father; everyone who confesses the Son has the Father also.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Let what you heard from the beginning abide in you. If what you heard from the beginning abides in you, then you will abide in the Son and in the Father.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> And this is what he has promised us, eternal life. </VERS>\r\n\t\t\t<VERS vnumber=\"26\"> I write these things to you concerning those who would deceive you.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> As for you, the anointing that you received from him abides in you, and so you do not need anyone to teach you. But as his anointing teaches you about all things, and is true and is not a lie, and just as it has taught you, abide in him. </VERS>\r\n\t\t\t<VERS vnumber=\"28\"> And now, little children, abide in him, so that when he is revealed we may have confidence and not be put to shame before him at his coming.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> If you know that he is righteous, you may be sure that everyone who does right has been born of him.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> See what love the Father has given us, that we should be called children of God; and that is what we are. The reason the world does not know us is that it did not know him.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Beloved, we are God's children now; what we will be has not yet been revealed. What we do know is this: when he is revealed, we will be like him, for we will see him as he is. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And all who have this hope in him purify themselves, just as he is pure.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Everyone who commits sin is guilty of lawlessness; sin is lawlessness.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> You know that he was revealed to take away sins, and in him there is no sin.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> No one who abides in him sins; no one who sins has either seen him or known him.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Little children, let no one deceive you. Everyone who does what is right is righteous, just as he is righteous.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Everyone who commits sin is a child of the devil; for the devil has been sinning from the beginning. The Son of God was revealed for this purpose, to destroy the works of the devil.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Those who have been born of God do not sin, because God's seed abides in them; they cannot sin, because they have been born of God. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The children of God and the children of the devil are revealed in this way: all who do not do what is right are not from God, nor are those who do not love their brothers and sisters. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> For this is the message you have heard from the beginning, that we should love one another.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> We must not be like Cain who was from the evil one and murdered his brother. And why did he murder him? Because his own deeds were evil and his brother's righteous.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Do not be astonished, brothers and sisters, that the world hates you. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> We know that we have passed from death to life because we love one another. Whoever does not love abides in death.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> All who hate a brother or sister are murderers, and you know that murderers do not have eternal life abiding in them. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> We know love by this, that he laid down his life for us-- and we ought to lay down our lives for one another.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> How does God's love abide in anyone who has the world's goods and sees a brother or sister in need and yet refuses help? </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Little children, let us love, not in word or speech, but in truth and action.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> And by this we will know that we are from the truth and will reassure our hearts before him</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> whenever our hearts condemn us; for God is greater than our hearts, and he knows everything.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Beloved, if our hearts do not condemn us, we have boldness before God;</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> and we receive from him whatever we ask, because we obey his commandments and do what pleases him.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> And this is his commandment, that we should believe in the name of his Son Jesus Christ and love one another, just as he has commanded us.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> All who obey his commandments abide in him, and he abides in them. And by this we know that he abides in us, by the Spirit that he has given us.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> Beloved, do not believe every spirit, but test the spirits to see whether they are from God; for many false prophets have gone out into the world.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> By this you know the Spirit of God: every spirit that confesses that Jesus Christ has come in the flesh is from God,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> and every spirit that does not confess Jesus is not from God. And this is the spirit of the antichrist, of which you have heard that it is coming; and now it is already in the world.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Little children, you are from God, and have conquered them; for the one who is in you is greater than the one who is in the world.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> They are from the world; therefore what they say is from the world, and the world listens to them.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> We are from God. Whoever knows God listens to us, and whoever is not from God does not listen to us. From this we know the spirit of truth and the spirit of error.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Beloved, let us love one another, because love is from God; everyone who loves is born of God and knows God.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Whoever does not love does not know God, for God is love.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> God's love was revealed among us in this way: God sent his only Son into the world so that we might live through him.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> In this is love, not that we loved God but that he loved us and sent his Son to be the atoning sacrifice for our sins.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Beloved, since God loved us so much, we also ought to love one another.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> No one has ever seen God; if we love one another, God lives in us, and his love is perfected in us.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> By this we know that we abide in him and he in us, because he has given us of his Spirit.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> And we have seen and do testify that the Father has sent his Son as the Savior of the world.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> God abides in those who confess that Jesus is the Son of God, and they abide in God.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> So we have known and believe the love that God has for us. God is love, and those who abide in love abide in God, and God abides in them.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Love has been perfected among us in this: that we may have boldness on the day of judgment, because as he is, so are we in this world.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> There is no fear in love, but perfect love casts out fear; for fear has to do with punishment, and whoever fears has not reached perfection in love.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> We love because he first loved us. </VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Those who say, \"I love God,\" and hate their brothers or sisters, are liars; for those who do not love a brother or sister whom they have seen, cannot love God whom they have not seen. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> The commandment we have from him is this: those who love God must love their brothers and sisters also. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"5\">\r\n\t\t\t<VERS vnumber=\"1\"> Everyone who believes that Jesus is the Christ has been born of God, and everyone who loves the parent loves the child. </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> By this we know that we love the children of God, when we love God and obey his commandments.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For the love of God is this, that we obey his commandments. And his commandments are not burdensome,</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> for whatever is born of God conquers the world. And this is the victory that conquers the world, our faith.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Who is it that conquers the world but the one who believes that Jesus is the Son of God?</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> This is the one who came by water and blood, Jesus Christ, not with the water only but with the water and the blood. And the Spirit is the one that testifies, for the Spirit is the truth.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> There are three that testify: </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> the Spirit and the water and the blood, and these three agree.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> If we receive human testimony, the testimony of God is greater; for this is the testimony of God that he has testified to his Son.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Those who believe in the Son of God have the testimony in their hearts. Those who do not believe in God have made him a liar by not believing in the testimony that God has given concerning his Son. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> And this is the testimony: God gave us eternal life, and this life is in his Son.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Whoever has the Son has life; whoever does not have the Son of God does not have life.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> I write these things to you who believe in the name of the Son of God, so that you may know that you have eternal life.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> And this is the boldness we have in him, that if we ask anything according to his will, he hears us.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And if we know that he hears us in whatever we ask, we know that we have obtained the requests made of him.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> If you see your brother or sister committing what is not a mortal sin, you will ask, and God will give life to such a one-- to those whose sin is not mortal. There is sin that is mortal; I do not say that you should pray about that.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> All wrongdoing is sin, but there is sin that is not mortal.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> We know that those who are born of God do not sin, but the one who was born of God protects them, and the evil one does not touch them.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> We know that we are God's children, and that the whole world lies under the power of the evil one.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> And we know that the Son of God has come and has given us understanding so that we may know him who is true; and we are in him who is true, in his Son Jesus Christ. He is the true God and eternal life. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Little children, keep yourselves from idols. </VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"63\" bname=\"2 John\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> The elder to the elect lady and her children, whom I love in the truth, and not only I but also all who know the truth,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> because of the truth that abides in us and will be with us forever:</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Grace, mercy, and peace will be with us from God the Father and from Jesus Christ, the Father's Son, in truth and love. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> I was overjoyed to find some of your children walking in the truth, just as we have been commanded by the Father.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> But now, dear lady, I ask you, not as though I were writing you a new commandment, but one we have had from the beginning, let us love one another.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And this is love, that we walk according to his commandments; this is the commandment just as you have heard it from the beginning-- you must walk in it.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Many deceivers have gone out into the world, those who do not confess that Jesus Christ has come in the flesh; any such person is the deceiver and the antichrist!</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Be on your guard, so that you do not lose what we have worked for, but may receive a full reward. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Everyone who does not abide in the teaching of Christ, but goes beyond it, does not have God; whoever abides in the teaching has both the Father and the Son.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Do not receive into the house or welcome anyone who comes to you and does not bring this teaching;</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> for to welcome is to participate in the evil deeds of such a person.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Although I have much to write to you, I would rather not use paper and ink; instead I hope to come to you and talk with you face to face, so that our joy may be complete.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> The children of your elect sister send you their greetings. </VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"64\" bname=\"3 John\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> The elder to the beloved Gaius, whom I love in truth.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Beloved, I pray that all may go well with you and that you may be in good health, just as it is well with your soul.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> I was overjoyed when some of the friends arrived and testified to your faithfulness to the truth, namely how you walk in the truth. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> I have no greater joy than this, to hear that my children are walking in the truth.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Beloved, you do faithfully whatever you do for the friends, even though they are strangers to you; </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> they have testified to your love before the church. You will do well to send them on in a manner worthy of God;</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> for they began their journey for the sake of Christ, accepting no support from non-believers. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Therefore we ought to support such people, so that we may become co-workers with the truth.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> I have written something to the church; but Diotrephes, who likes to put himself first, does not acknowledge our authority.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> So if I come, I will call attention to what he is doing in spreading false charges against us. And not content with those charges, he refuses to welcome the friends, and even prevents those who want to do so and expels them from the church. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Beloved, do not imitate what is evil but imitate what is good. Whoever does good is from God; whoever does evil has not seen God.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Everyone has testified favorably about Demetrius, and so has the truth itself. We also testify for him, and you know that our testimony is true. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> I have much to write to you, but I would rather not write with pen and ink;</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> instead I hope to see you soon, and we will talk together face to face.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Peace to you. The friends send you their greetings. Greet the friends there, each by name.</VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"65\" bname=\"Jude\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> Jude, a servant of Jesus Christ and brother of James, To those who are called, who are beloved in God the Father and kept safe for Jesus Christ: </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> May mercy, peace, and love be yours in abundance.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Beloved, while eagerly preparing to write to you about the salvation we share, I find it necessary to write and appeal to you to contend for the faith that was once for all entrusted to the saints.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> For certain intruders have stolen in among you, people who long ago were designated for this condemnation as ungodly, who pervert the grace of our God into licentiousness and deny our only Master and Lord, Jesus Christ. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Now I desire to remind you, though you are fully informed, that the Lord, who once for all saved a people out of the land of Egypt, afterward destroyed those who did not believe. </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And the angels who did not keep their own position, but left their proper dwelling, he has kept in eternal chains in deepest darkness for the judgment of the great Day.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Likewise, Sodom and Gomorrah and the surrounding cities, which, in the same manner as they, indulged in sexual immorality and pursued unnatural lust, serve as an example by undergoing a punishment of eternal fire. </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Yet in the same way these dreamers also defile the flesh, reject authority, and slander the glorious ones. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> But when the archangel Michael contended with the devil and disputed about the body of Moses, he did not dare to bring a condemnation of slander against him, but said, \"The Lord rebuke you!\" </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> But these people slander whatever they do not understand, and they are destroyed by those things that, like irrational animals, they know by instinct.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Woe to them! For they go the way of Cain, and abandon themselves to Balaam's error for the sake of gain, and perish in Korah's rebellion.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> These are blemishes on your love-feasts, while they feast with you without fear, feeding themselves. They are waterless clouds carried along by the winds; autumn trees without fruit, twice dead, uprooted; </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> wild waves of the sea, casting up the foam of their own shame; wandering stars, for whom the deepest darkness has been reserved forever.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> It was also about these that Enoch, in the seventh generation from Adam, prophesied, saying, \"See, the Lord is coming with ten thousands of his holy ones, </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> to execute judgment on all, and to convict everyone of all the deeds of ungodliness that they have committed in such an ungodly way, and of all the harsh things that ungodly sinners have spoken against him.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> These are grumblers and malcontents; they indulge their own lusts; they are bombastic in speech, flattering people to their own advantage.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> But you, beloved, must remember the predictions of the apostles of our Lord Jesus Christ;</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> for they said to you, \"In the last time there will be scoffers, indulging their own ungodly lusts.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> It is these worldly people, devoid of the Spirit, who are causing divisions.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> But you, beloved, build yourselves up on your most holy faith; pray in the Holy Spirit;</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> keep yourselves in the love of God; look forward to the mercy of our Lord Jesus Christ that leads to eternal life. </VERS>\r\n\t\t\t<VERS vnumber=\"22\"> And have mercy on some who are wavering;</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> save others by snatching them out of the fire; and have mercy on still others with fear, hating even the tunic defiled by their bodies.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> Now to him who is able to keep you from falling, and to make you stand without blemish in the presence of his glory with rejoicing,</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> to the only God our Savior, through Jesus Christ our Lord, be glory, majesty, power, and authority, before all time and now and forever. Amen.</VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n\t<BIBLEBOOK bnumber=\"66\" bname=\"Revelation\">\r\n\t\t<CHAPTER cnumber=\"1\">\r\n\t\t\t<VERS vnumber=\"1\"> The revelation of Jesus Christ, which God gave him to show his servants what must soon take place; he made it known by sending his angel to his servant John, </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> who testified to the word of God and to the testimony of Jesus Christ, even to all that he saw.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Blessed is the one who reads aloud the words of the prophecy, and blessed are those who hear and who keep what is written in it; for the time is near.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> John to the seven churches that are in Asia: Grace to you and peace from him who is and who was and who is to come, and from the seven spirits who are before his throne,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> and from Jesus Christ, the faithful witness, the firstborn of the dead, and the ruler of the kings of the earth. To him who loves us and freed us from our sins by his blood, </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> and made us to be a kingdom, priests serving his God and Father, to him be glory and dominion forever and ever. Amen. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Look! He is coming with the clouds; every eye will see him, even those who pierced him; and on his account all the tribes of the earth will wail. So it is to be. Amen.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> \"I am the Alpha and the Omega,\" says the Lord God, who is and who was and who is to come, the Almighty.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> I, John, your brother who share with you in Jesus the persecution and the kingdom and the patient endurance, was on the island called Patmos because of the word of God and the testimony of Jesus. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> I was in the spirit on the Lord's day, and I heard behind me a loud voice like a trumpet </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> saying, \"Write in a book what you see and send it to the seven churches, to Ephesus, to Smyrna, to Pergamum, to Thyatira, to Sardis, to Philadelphia, and to Laodicea.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then I turned to see whose voice it was that spoke to me, and on turning I saw seven golden lampstands,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> and in the midst of the lampstands I saw one like the Son of Man, clothed with a long robe and with a golden sash across his chest.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> His head and his hair were white as white wool, white as snow; his eyes were like a flame of fire,</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> his feet were like burnished bronze, refined as in a furnace, and his voice was like the sound of many waters.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> In his right hand he held seven stars, and from his mouth came a sharp, two-edged sword, and his face was like the sun shining with full force.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> When I saw him, I fell at his feet as though dead. But he placed his right hand on me, saying, \"Do not be afraid; I am the first and the last,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> and the living one. I was dead, and see, I am alive forever and ever; and I have the keys of Death and of Hades.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Now write what you have seen, what is, and what is to take place after this.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> As for the mystery of the seven stars that you saw in my right hand, and the seven golden lampstands: the seven stars are the angels of the seven churches, and the seven lampstands are the seven churches.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"2\">\r\n\t\t\t<VERS vnumber=\"1\"> \"To the angel of the church in Ephesus write: These are the words of him who holds the seven stars in his right hand, who walks among the seven golden lampstands:</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> \"I know your works, your toil and your patient endurance. I know that you cannot tolerate evildoers; you have tested those who claim to be apostles but are not, and have found them to be false.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> I also know that you are enduring patiently and bearing up for the sake of my name, and that you have not grown weary.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> But I have this against you, that you have abandoned the love you had at first.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Remember then from what you have fallen; repent, and do the works you did at first. If not, I will come to you and remove your lampstand from its place, unless you repent.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Yet this is to your credit: you hate the works of the Nicolaitans, which I also hate.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Let anyone who has an ear listen to what the Spirit is saying to the churches. To everyone who conquers, I will give permission to eat from the tree of life that is in the paradise of God.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> \"And to the angel of the church in Smyrna write: These are the words of the first and the last, who was dead and came to life:</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> \"I know your affliction and your poverty, even though you are rich. I know the slander on the part of those who say that they are Jews and are not, but are a synagogue of Satan.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Do not fear what you are about to suffer. Beware, the devil is about to throw some of you into prison so that you may be tested, and for ten days you will have affliction. Be faithful until death, and I will give you the crown of life.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Let anyone who has an ear listen to what the Spirit is saying to the churches. Whoever conquers will not be harmed by the second death.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> \"And to the angel of the church in Pergamum write: These are the words of him who has the sharp two-edged sword:</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> \"I know where you are living, where Satan's throne is. Yet you are holding fast to my name, and you did not deny your faith in me even in the days of Antipas my witness, my faithful one, who was killed among you, where Satan lives. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But I have a few things against you: you have some there who hold to the teaching of Balaam, who taught Balak to put a stumbling block before the people of Israel, so that they would eat food sacrificed to idols and practice fornication.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> So you also have some who hold to the teaching of the Nicolaitans.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Repent then. If not, I will come to you soon and make war against them with the sword of my mouth.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Let anyone who has an ear listen to what the Spirit is saying to the churches. To everyone who conquers I will give some of the hidden manna, and I will give a white stone, and on the white stone is written a new name that no one knows except the one who receives it.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> \"And to the angel of the church in Thyatira write: These are the words of the Son of God, who has eyes like a flame of fire, and whose feet are like burnished bronze:</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> \"I know your works-- your love, faith, service, and patient endurance. I know that your last works are greater than the first.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> But I have this against you: you tolerate that woman Jezebel, who calls herself a prophet and is teaching and beguiling my servants to practice fornication and to eat food sacrificed to idols. </VERS>\r\n\t\t\t<VERS vnumber=\"21\"> I gave her time to repent, but she refuses to repent of her fornication.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Beware, I am throwing her on a bed, and those who commit adultery with her I am throwing into great distress, unless they repent of her doings;</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> and I will strike her children dead. And all the churches will know that I am the one who searches minds and hearts, and I will give to each of you as your works deserve.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> But to the rest of you in Thyatira, who do not hold this teaching, who have not learned what some call 'the deep things of Satan,' to you I say, I do not lay on you any other burden;</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> only hold fast to what you have until I come.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> To everyone who conquers and continues to do my works to the end, I will give authority over the nations;</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> to rule them with an iron rod, as when clay pots are shattered--</VERS>\r\n\t\t\t<VERS vnumber=\"28\"> even as I also received authority from my Father. To the one who conquers I will also give the morning star.</VERS>\r\n\t\t\t<VERS vnumber=\"29\"> Let anyone who has an ear listen to what the Spirit is saying to the churches.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"3\">\r\n\t\t\t<VERS vnumber=\"1\"> \"And to the angel of the church in Sardis write: These are the words of him who has the seven spirits of God and the seven stars: \"I know your works; you have a name of being alive, but you are dead.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> Wake up, and strengthen what remains and is on the point of death, for I have not found your works perfect in the sight of my God.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Remember then what you received and heard; obey it, and repent. If you do not wake up, I will come like a thief, and you will not know at what hour I will come to you.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Yet you have still a few persons in Sardis who have not soiled their clothes; they will walk with me, dressed in white, for they are worthy.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> If you conquer, you will be clothed like them in white robes, and I will not blot your name out of the book of life; I will confess your name before my Father and before his angels.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Let anyone who has an ear listen to what the Spirit is saying to the churches.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> \"And to the angel of the church in Philadelphia write: These are the words of the holy one, the true one, who has the key of David, who opens and no one will shut, who shuts and no one opens:</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> \"I know your works. Look, I have set before you an open door, which no one is able to shut. I know that you have but little power, and yet you have kept my word and have not denied my name.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> I will make those of the synagogue of Satan who say that they are Jews and are not, but are lying-- I will make them come and bow down before your feet, and they will learn that I have loved you.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Because you have kept my word of patient endurance, I will keep you from the hour of trial that is coming on the whole world to test the inhabitants of the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> I am coming soon; hold fast to what you have, so that no one may seize your crown.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> If you conquer, I will make you a pillar in the temple of my God; you will never go out of it. I will write on you the name of my God, and the name of the city of my God, the new Jerusalem that comes down from my God out of heaven, and my own new name.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Let anyone who has an ear listen to what the Spirit is saying to the churches.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> \"And to the angel of the church in Laodicea write: The words of the Amen, the faithful and true witness, the origin of God's creation: </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> \"I know your works; you are neither cold nor hot. I wish that you were either cold or hot.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> So, because you are lukewarm, and neither cold nor hot, I am about to spit you out of my mouth.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> For you say, 'I am rich, I have prospered, and I need nothing.' You do not realize that you are wretched, pitiable, poor, blind, and naked.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Therefore I counsel you to buy from me gold refined by fire so that you may be rich; and white robes to clothe you and to keep the shame of your nakedness from being seen; and salve to anoint your eyes so that you may see.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> I reprove and discipline those whom I love. Be earnest, therefore, and repent.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Listen! I am standing at the door, knocking; if you hear my voice and open the door, I will come in to you and eat with you, and you with me.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> To the one who conquers I will give a place with me on my throne, just as I myself conquered and sat down with my Father on his throne.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> Let anyone who has an ear listen to what the Spirit is saying to the churches.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"4\">\r\n\t\t\t<VERS vnumber=\"1\"> After this I looked, and there in heaven a door stood open! And the first voice, which I had heard speaking to me like a trumpet, said, \"Come up here, and I will show you what must take place after this.\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> At once I was in the spirit, and there in heaven stood a throne, with one seated on the throne! </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And the one seated there looks like jasper and carnelian, and around the throne is a rainbow that looks like an emerald.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Around the throne are twenty-four thrones, and seated on the thrones are twenty-four elders, dressed in white robes, with golden crowns on their heads.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Coming from the throne are flashes of lightning, and rumblings and peals of thunder, and in front of the throne burn seven flaming torches, which are the seven spirits of God;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> and in front of the throne there is something like a sea of glass, like crystal. Around the throne, and on each side of the throne, are four living creatures, full of eyes in front and behind:</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> the first living creature like a lion, the second living creature like an ox, the third living creature with a face like a human face, and the fourth living creature like a flying eagle.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> And the four living creatures, each of them with six wings, are full of eyes all around and inside. Day and night without ceasing they sing, \"Holy, holy, holy, the Lord God the Almighty, who was and is and is to come.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> And whenever the living creatures give glory and honor and thanks to the one who is seated on the throne, who lives forever and ever,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> the twenty-four elders fall before the one who is seated on the throne and worship the one who lives forever and ever; they cast their crowns before the throne, singing,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> \"You are worthy, our Lord and God, to receive glory and honor and power, for you created all things, and by your will they existed and were created.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"5\">\r\n\t\t\t<VERS vnumber=\"1\"> Then I saw in the right hand of the one seated on the throne a scroll written on the inside and on the back, sealed with seven seals; </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> and I saw a mighty angel proclaiming with a loud voice, \"Who is worthy to open the scroll and break its seals?\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And no one in heaven or on earth or under the earth was able to open the scroll or to look into it.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> And I began to weep bitterly because no one was found worthy to open the scroll or to look into it.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then one of the elders said to me, \"Do not weep. See, the Lion of the tribe of Judah, the Root of David, has conquered, so that he can open the scroll and its seven seals.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then I saw between the throne and the four living creatures and among the elders a Lamb standing as if it had been slaughtered, having seven horns and seven eyes, which are the seven spirits of God sent out into all the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> He went and took the scroll from the right hand of the one who was seated on the throne.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> When he had taken the scroll, the four living creatures and the twenty-four elders fell before the Lamb, each holding a harp and golden bowls full of incense, which are the prayers of the saints.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> They sing a new song: \"You are worthy to take the scroll and to open its seals, for you were slaughtered and by your blood you ransomed for God saints from every tribe and language and people and nation; </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> you have made them to be a kingdom and priests serving our God, and they will reign on earth.\" </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then I looked, and I heard the voice of many angels surrounding the throne and the living creatures and the elders; they numbered myriads of myriads and thousands of thousands,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> singing with full voice, \"Worthy is the Lamb that was slaughtered to receive power and wealth and wisdom and might and honor and glory and blessing!\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then I heard every creature in heaven and on earth and under the earth and in the sea, and all that is in them, singing, \"To the one seated on the throne and to the Lamb be blessing and honor and glory and might forever and ever!\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> And the four living creatures said, \"Amen!\" And the elders fell down and worshiped.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"6\">\r\n\t\t\t<VERS vnumber=\"1\"> Then I saw the Lamb open one of the seven seals, and I heard one of the four living creatures call out, as with a voice of thunder, \"Come!\" </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> I looked, and there was a white horse! Its rider had a bow; a crown was given to him, and he came out conquering and to conquer.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> When he opened the second seal, I heard the second living creature call out, \"Come!\" </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> And out came another horse, bright red; its rider was permitted to take peace from the earth, so that people would slaughter one another; and he was given a great sword. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> When he opened the third seal, I heard the third living creature call out, \"Come!\" I looked, and there was a black horse! Its rider held a pair of scales in his hand,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> and I heard what seemed to be a voice in the midst of the four living creatures saying, \"A quart of wheat for a day's pay, and three quarts of barley for a day's pay, but do not damage the olive oil and the wine!\" </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> When he opened the fourth seal, I heard the voice of the fourth living creature call out, \"Come!\" </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> I looked and there was a pale green horse! Its rider's name was Death, and Hades followed with him; they were given authority over a fourth of the earth, to kill with sword, famine, and pestilence, and by the wild animals of the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> When he opened the fifth seal, I saw under the altar the souls of those who had been slaughtered for the word of God and for the testimony they had given;</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> they cried out with a loud voice, \"Sovereign Lord, holy and true, how long will it be before you judge and avenge our blood on the inhabitants of the earth?\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> They were each given a white robe and told to rest a little longer, until the number would be complete both of their fellow servants and of their brothers and sisters, who were soon to be killed as they themselves had been killed. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> When he opened the sixth seal, I looked, and there came a great earthquake; the sun became black as sackcloth, the full moon became like blood,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> and the stars of the sky fell to the earth as the fig tree drops its winter fruit when shaken by a gale.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The sky vanished like a scroll rolling itself up, and every mountain and island was removed from its place.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Then the kings of the earth and the magnates and the generals and the rich and the powerful, and everyone, slave and free, hid in the caves and among the rocks of the mountains,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> calling to the mountains and rocks, \"Fall on us and hide us from the face of the one seated on the throne and from the wrath of the Lamb;</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> for the great day of their wrath has come, and who is able to stand?\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"7\">\r\n\t\t\t<VERS vnumber=\"1\"> After this I saw four angels standing at the four corners of the earth, holding back the four winds of the earth so that no wind could blow on earth or sea or against any tree.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> I saw another angel ascending from the rising of the sun, having the seal of the living God, and he called with a loud voice to the four angels who had been given power to damage earth and sea,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> saying, \"Do not damage the earth or the sea or the trees, until we have marked the servants of our God with a seal on their foreheads.\" </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> And I heard the number of those who were sealed, one hundred forty-four thousand, sealed out of every tribe of the people of Israel:</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> From the tribe of Judah twelve thousand sealed, from the tribe of Reuben twelve thousand, from the tribe of Gad twelve thousand,</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> from the tribe of Asher twelve thousand, from the tribe of Naphtali twelve thousand, from the tribe of Manasseh twelve thousand,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> from the tribe of Simeon twelve thousand, from the tribe of Levi twelve thousand, from the tribe of Issachar twelve thousand,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> from the tribe of Zebulun twelve thousand, from the tribe of Joseph twelve thousand, from the tribe of Benjamin twelve thousand sealed.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> After this I looked, and there was a great multitude that no one could count, from every nation, from all tribes and peoples and languages, standing before the throne and before the Lamb, robed in white, with palm branches in their hands.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> They cried out in a loud voice, saying, \"Salvation belongs to our God who is seated on the throne, and to the Lamb!\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> And all the angels stood around the throne and around the elders and the four living creatures, and they fell on their faces before the throne and worshiped God,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> singing, \"Amen! Blessing and glory and wisdom and thanksgiving and honor and power and might be to our God forever and ever! Amen.\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then one of the elders addressed me, saying, \"Who are these, robed in white, and where have they come from?\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> I said to him, \"Sir, you are the one that knows.\" Then he said to me, \"These are they who have come out of the great ordeal; they have washed their robes and made them white in the blood of the Lamb.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> For this reason they are before the throne of God, and worship him day and night within his temple, and the one who is seated on the throne will shelter them.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> They will hunger no more, and thirst no more; the sun will not strike them, nor any scorching heat;</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> for the Lamb at the center of the throne will be their shepherd, and he will guide them to springs of the water of life, and God will wipe away every tear from their eyes.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"8\">\r\n\t\t\t<VERS vnumber=\"1\"> When the Lamb opened the seventh seal, there was silence in heaven for about half an hour.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And I saw the seven angels who stand before God, and seven trumpets were given to them.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Another angel with a golden censer came and stood at the altar; he was given a great quantity of incense to offer with the prayers of all the saints on the golden altar that is before the throne.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> And the smoke of the incense, with the prayers of the saints, rose before God from the hand of the angel.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then the angel took the censer and filled it with fire from the altar and threw it on the earth; and there were peals of thunder, rumblings, flashes of lightning, and an earthquake.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Now the seven angels who had the seven trumpets made ready to blow them.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> The first angel blew his trumpet, and there came hail and fire, mixed with blood, and they were hurled to the earth; and a third of the earth was burned up, and a third of the trees were burned up, and all green grass was burned up.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The second angel blew his trumpet, and something like a great mountain, burning with fire, was thrown into the sea.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> A third of the sea became blood, a third of the living creatures in the sea died, and a third of the ships were destroyed.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The third angel blew his trumpet, and a great star fell from heaven, blazing like a torch, and it fell on a third of the rivers and on the springs of water.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> The name of the star is Wormwood. A third of the waters became wormwood, and many died from the water, because it was made bitter.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The fourth angel blew his trumpet, and a third of the sun was struck, and a third of the moon, and a third of the stars, so that a third of their light was darkened; a third of the day was kept from shining, and likewise the night.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then I looked, and I heard an eagle crying with a loud voice as it flew in midheaven, \"Woe, woe, woe to the inhabitants of the earth, at the blasts of the other trumpets that the three angels are about to blow!\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"9\">\r\n\t\t\t<VERS vnumber=\"1\"> And the fifth angel blew his trumpet, and I saw a star that had fallen from heaven to earth, and he was given the key to the shaft of the bottomless pit;</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> he opened the shaft of the bottomless pit, and from the shaft rose smoke like the smoke of a great furnace, and the sun and the air were darkened with the smoke from the shaft.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then from the smoke came locusts on the earth, and they were given authority like the authority of scorpions of the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> They were told not to damage the grass of the earth or any green growth or any tree, but only those people who do not have the seal of God on their foreheads.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> They were allowed to torture them for five months, but not to kill them, and their torture was like the torture of a scorpion when it stings someone.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And in those days people will seek death but will not find it; they will long to die, but death will flee from them.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> In appearance the locusts were like horses equipped for battle. On their heads were what looked like crowns of gold; their faces were like human faces,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> their hair like women's hair, and their teeth like lions' teeth;</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> they had scales like iron breastplates, and the noise of their wings was like the noise of many chariots with horses rushing into battle.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> They have tails like scorpions, with stingers, and in their tails is their power to harm people for five months.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> They have as king over them the angel of the bottomless pit; his name in Hebrew is Abaddon, and in Greek he is called Apollyon. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The first woe has passed. There are still two woes to come.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> Then the sixth angel blew his trumpet, and I heard a voice from the four horns of the golden altar before God, </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> saying to the sixth angel who had the trumpet, \"Release the four angels who are bound at the great river Euphrates.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> So the four angels were released, who had been held ready for the hour, the day, the month, and the year, to kill a third of humankind.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The number of the troops of cavalry was two hundred million; I heard their number.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> And this was how I saw the horses in my vision: the riders wore breastplates the color of fire and of sapphire and of sulfur; the heads of the horses were like lions' heads, and fire and smoke and sulfur came out of their mouths.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> By these three plagues a third of humankind was killed, by the fire and smoke and sulfur coming out of their mouths.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> For the power of the horses is in their mouths and in their tails; their tails are like serpents, having heads; and with them they inflict harm.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The rest of humankind, who were not killed by these plagues, did not repent of the works of their hands or give up worshiping demons and idols of gold and silver and bronze and stone and wood, which cannot see or hear or walk.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> And they did not repent of their murders or their sorceries or their fornication or their thefts.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"10\">\r\n\t\t\t<VERS vnumber=\"1\"> And I saw another mighty angel coming down from heaven, wrapped in a cloud, with a rainbow over his head; his face was like the sun, and his legs like pillars of fire.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He held a little scroll open in his hand. Setting his right foot on the sea and his left foot on the land,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> he gave a great shout, like a lion roaring. And when he shouted, the seven thunders sounded.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> And when the seven thunders had sounded, I was about to write, but I heard a voice from heaven saying, \"Seal up what the seven thunders have said, and do not write it down.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> Then the angel whom I saw standing on the sea and the land raised his right hand to heaven</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> and swore by him who lives forever and ever, who created heaven and what is in it, the earth and what is in it, and the sea and what is in it: \"There will be no more delay,</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> but in the days when the seventh angel is to blow his trumpet, the mystery of God will be fulfilled, as he announced to his servants the prophets.\" </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then the voice that I had heard from heaven spoke to me again, saying, \"Go, take the scroll that is open in the hand of the angel who is standing on the sea and on the land.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> So I went to the angel and told him to give me the little scroll; and he said to me, \"Take it, and eat; it will be bitter to your stomach, but sweet as honey in your mouth.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> So I took the little scroll from the hand of the angel and ate it; it was sweet as honey in my mouth, but when I had eaten it, my stomach was made bitter.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then they said to me, \"You must prophesy again about many peoples and nations and languages and kings.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"11\">\r\n\t\t\t<VERS vnumber=\"1\"> Then I was given a measuring rod like a staff, and I was told, \"Come and measure the temple of God and the altar and those who worship there,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> but do not measure the court outside the temple; leave that out, for it is given over to the nations, and they will trample over the holy city for forty-two months.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And I will grant my two witnesses authority to prophesy for one thousand two hundred sixty days, wearing sackcloth.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> These are the two olive trees and the two lampstands that stand before the Lord of the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> And if anyone wants to harm them, fire pours from their mouth and consumes their foes; anyone who wants to harm them must be killed in this manner.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> They have authority to shut the sky, so that no rain may fall during the days of their prophesying, and they have authority over the waters to turn them into blood, and to strike the earth with every kind of plague, as often as they desire.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> When they have finished their testimony, the beast that comes up from the bottomless pit will make war on them and conquer them and kill them,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> and their dead bodies will lie in the street of the great city that is prophetically called Sodom and Egypt, where also their Lord was crucified. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> For three and a half days members of the peoples and tribes and languages and nations will gaze at their dead bodies and refuse to let them be placed in a tomb;</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> and the inhabitants of the earth will gloat over them and celebrate and exchange presents, because these two prophets had been a torment to the inhabitants of the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But after the three and a half days, the breath of life from God entered them, and they stood on their feet, and those who saw them were terrified. </VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Then they heard a loud voice from heaven saying to them, \"Come up here!\" And they went up to heaven in a cloud while their enemies watched them.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> At that moment there was a great earthquake, and a tenth of the city fell; seven thousand people were killed in the earthquake, and the rest were terrified and gave glory to the God of heaven.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> The second woe has passed. The third woe is coming very soon.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Then the seventh angel blew his trumpet, and there were loud voices in heaven, saying, \"The kingdom of the world has become the kingdom of our Lord and of his Messiah, and he will reign forever and ever.\" </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Then the twenty-four elders who sit on their thrones before God fell on their faces and worshiped God,</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> singing, \"We give you thanks, Lord God Almighty, who are and who were, for you have taken your great power and begun to reign.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The nations raged, but your wrath has come, and the time for judging the dead, for rewarding your servants, the prophets and saints and all who fear your name, both small and great, and for destroying those who destroy the earth.\" </VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Then God's temple in heaven was opened, and the ark of his covenant was seen within his temple; and there were flashes of lightning, rumblings, peals of thunder, an earthquake, and heavy hail.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"12\">\r\n\t\t\t<VERS vnumber=\"1\"> A great portent appeared in heaven: a woman clothed with the sun, with the moon under her feet, and on her head a crown of twelve stars.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> She was pregnant and was crying out in birth pangs, in the agony of giving birth.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Then another portent appeared in heaven: a great red dragon, with seven heads and ten horns, and seven diadems on his heads.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> His tail swept down a third of the stars of heaven and threw them to the earth. Then the dragon stood before the woman who was about to bear a child, so that he might devour her child as soon as it was born.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> And she gave birth to a son, a male child, who is to rule all the nations with a rod of iron. But her child was snatched away and taken to God and to his throne; </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> and the woman fled into the wilderness, where she has a place prepared by God, so that there she can be nourished for one thousand two hundred sixty days.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> And war broke out in heaven; Michael and his angels fought against the dragon. The dragon and his angels fought back,</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> but they were defeated, and there was no longer any place for them in heaven.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> The great dragon was thrown down, that ancient serpent, who is called the Devil and Satan, the deceiver of the whole world-- he was thrown down to the earth, and his angels were thrown down with him.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then I heard a loud voice in heaven, proclaiming, \"Now have come the salvation and the power and the kingdom of our God and the authority of his Messiah, for the accuser of our comrades has been thrown down, who accuses them day and night before our God. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> But they have conquered him by the blood of the Lamb and by the word of their testimony, for they did not cling to life even in the face of death.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Rejoice then, you heavens and those who dwell in them! But woe to the earth and the sea, for the devil has come down to you with great wrath, because he knows that his time is short!\"</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> So when the dragon saw that he had been thrown down to the earth, he pursued the woman who had given birth to the male child. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> But the woman was given the two wings of the great eagle, so that she could fly from the serpent into the wilderness, to her place where she is nourished for a time, and times, and half a time.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Then from his mouth the serpent poured water like a river after the woman, to sweep her away with the flood.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> But the earth came to the help of the woman; it opened its mouth and swallowed the river that the dragon had poured from his mouth.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then the dragon was angry with the woman, and went off to make war on the rest of her children, those who keep the commandments of God and hold the testimony of Jesus.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then the dragon took his stand on the sand of the seashore. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"13\">\r\n\t\t\t<VERS vnumber=\"1\"> And I saw a beast rising out of the sea, having ten horns and seven heads; and on its horns were ten diadems, and on its heads were blasphemous names.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And the beast that I saw was like a leopard, its feet were like a bear's, and its mouth was like a lion's mouth. And the dragon gave it his power and his throne and great authority.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> One of its heads seemed to have received a death-blow, but its mortal wound had been healed. In amazement the whole earth followed the beast. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> They worshiped the dragon, for he had given his authority to the beast, and they worshiped the beast, saying, \"Who is like the beast, and who can fight against it?\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> The beast was given a mouth uttering haughty and blasphemous words, and it was allowed to exercise authority for forty-two months.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> It opened its mouth to utter blasphemies against God, blaspheming his name and his dwelling, that is, those who dwell in heaven.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Also it was allowed to make war on the saints and to conquer them. It was given authority over every tribe and people and language and nation, </VERS>\r\n\t\t\t<VERS vnumber=\"8\"> and all the inhabitants of the earth will worship it, everyone whose name has not been written from the foundation of the world in the book of life of the Lamb that was slaughtered. </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Let anyone who has an ear listen:</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> If you are to be taken captive, into captivity you go; if you kill with the sword, with the sword you must be killed. Here is a call for the endurance and faith of the saints.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then I saw another beast that rose out of the earth; it had two horns like a lamb and it spoke like a dragon.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> It exercises all the authority of the first beast on its behalf, and it makes the earth and its inhabitants worship the first beast, whose mortal wound had been healed. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> It performs great signs, even making fire come down from heaven to earth in the sight of all;</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> and by the signs that it is allowed to perform on behalf of the beast, it deceives the inhabitants of earth, telling them to make an image for the beast that had been wounded by the sword and yet lived; </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> and it was allowed to give breath to the image of the beast so that the image of the beast could even speak and cause those who would not worship the image of the beast to be killed. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> Also it causes all, both small and great, both rich and poor, both free and slave, to be marked on the right hand or the forehead,</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> so that no one can buy or sell who does not have the mark, that is, the name of the beast or the number of its name.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> This calls for wisdom: let anyone with understanding calculate the number of the beast, for it is the number of a person. Its number is six hundred sixty-six. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"14\">\r\n\t\t\t<VERS vnumber=\"1\"> Then I looked, and there was the Lamb, standing on Mount Zion! And with him were one hundred forty-four thousand who had his name and his Father's name written on their foreheads.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And I heard a voice from heaven like the sound of many waters and like the sound of loud thunder; the voice I heard was like the sound of harpists playing on their harps,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> and they sing a new song before the throne and before the four living creatures and before the elders. No one could learn that song except the one hundred forty-four thousand who have been redeemed from the earth.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> It is these who have not defiled themselves with women, for they are virgins; these follow the Lamb wherever he goes. They have been redeemed from humankind as first fruits for God and the Lamb,</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> and in their mouth no lie was found; they are blameless.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then I saw another angel flying in midheaven, with an eternal gospel to proclaim to those who live on the earth-- to every nation and tribe and language and people.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> He said in a loud voice, \"Fear God and give him glory, for the hour of his judgment has come; and worship him who made heaven and earth, the sea and the springs of water.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> Then another angel, a second, followed, saying, \"Fallen, fallen is Babylon the great! She has made all nations drink of the wine of the wrath of her fornication.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then another angel, a third, followed them, crying with a loud voice, \"Those who worship the beast and its image, and receive a mark on their foreheads or on their hands,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> they will also drink the wine of God's wrath, poured unmixed into the cup of his anger, and they will be tormented with fire and sulfur in the presence of the holy angels and in the presence of the Lamb.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> And the smoke of their torment goes up forever and ever. There is no rest day or night for those who worship the beast and its image and for anyone who receives the mark of its name.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> Here is a call for the endurance of the saints, those who keep the commandments of God and hold fast to the faith of Jesus. </VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And I heard a voice from heaven saying, \"Write this: Blessed are the dead who from now on die in the Lord.\" \"Yes,\" says the Spirit, \"they will rest from their labors, for their deeds follow them.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then I looked, and there was a white cloud, and seated on the cloud was one like the Son of Man, with a golden crown on his head, and a sharp sickle in his hand!</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Another angel came out of the temple, calling with a loud voice to the one who sat on the cloud, \"Use your sickle and reap, for the hour to reap has come, because the harvest of the earth is fully ripe.\"</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> So the one who sat on the cloud swung his sickle over the earth, and the earth was reaped.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then another angel came out of the temple in heaven, and he too had a sharp sickle.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> Then another angel came out from the altar, the angel who has authority over fire, and he called with a loud voice to him who had the sharp sickle, \"Use your sharp sickle and gather the clusters of the vine of the earth, for its grapes are ripe.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> So the angel swung his sickle over the earth and gathered the vintage of the earth, and he threw it into the great wine press of the wrath of God.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> And the wine press was trodden outside the city, and blood flowed from the wine press, as high as a horse's bridle, for a distance of about two hundred miles. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"15\">\r\n\t\t\t<VERS vnumber=\"1\"> Then I saw another portent in heaven, great and amazing: seven angels with seven plagues, which are the last, for with them the wrath of God is ended.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And I saw what appeared to be a sea of glass mixed with fire, and those who had conquered the beast and its image and the number of its name, standing beside the sea of glass with harps of God in their hands.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And they sing the song of Moses, the servant of God, and the song of the Lamb: \"Great and amazing are your deeds, Lord God the Almighty! Just and true are your ways, King of the nations! </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Lord, who will not fear and glorify your name? For you alone are holy. All nations will come and worship before you, for your judgments have been revealed.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> After this I looked, and the temple of the tent of witness in heaven was opened, </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> and out of the temple came the seven angels with the seven plagues, robed in pure bright linen, with golden sashes across their chests. </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Then one of the four living creatures gave the seven angels seven golden bowls full of the wrath of God, who lives forever and ever;</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> and the temple was filled with smoke from the glory of God and from his power, and no one could enter the temple until the seven plagues of the seven angels were ended.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"16\">\r\n\t\t\t<VERS vnumber=\"1\"> Then I heard a loud voice from the temple telling the seven angels, \"Go and pour out on the earth the seven bowls of the wrath of God.\"</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> So the first angel went and poured his bowl on the earth, and a foul and painful sore came on those who had the mark of the beast and who worshiped its image.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> The second angel poured his bowl into the sea, and it became like the blood of a corpse, and every living thing in the sea died.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The third angel poured his bowl into the rivers and the springs of water, and they became blood.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> And I heard the angel of the waters say, \"You are just, O Holy One, who are and were, for you have judged these things;</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> because they shed the blood of saints and prophets, you have given them blood to drink. It is what they deserve!\"</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> And I heard the altar respond, \"Yes, O Lord God, the Almighty, your judgments are true and just!\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The fourth angel poured his bowl on the sun, and it was allowed to scorch them with fire;</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> they were scorched by the fierce heat, but they cursed the name of God, who had authority over these plagues, and they did not repent and give him glory.</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> The fifth angel poured his bowl on the throne of the beast, and its kingdom was plunged into darkness; people gnawed their tongues in agony,</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> and cursed the God of heaven because of their pains and sores, and they did not repent of their deeds.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> The sixth angel poured his bowl on the great river Euphrates, and its water was dried up in order to prepare the way for the kings from the east.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And I saw three foul spirits like frogs coming from the mouth of the dragon, from the mouth of the beast, and from the mouth of the false prophet.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> These are demonic spirits, performing signs, who go abroad to the kings of the whole world, to assemble them for battle on the great day of God the Almighty.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> (\"See, I am coming like a thief! Blessed is the one who stays awake and is clothed, not going about naked and exposed to shame.\") </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> And they assembled them at the place that in Hebrew is called Harmagedon.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The seventh angel poured his bowl into the air, and a loud voice came out of the temple, from the throne, saying, \"It is done!\"</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> And there came flashes of lightning, rumblings, peals of thunder, and a violent earthquake, such as had not occurred since people were upon the earth, so violent was that earthquake.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The great city was split into three parts, and the cities of the nations fell. God remembered great Babylon and gave her the wine-cup of the fury of his wrath.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> And every island fled away, and no mountains were to be found;</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> and huge hailstones, each weighing about a hundred pounds, dropped from heaven on people, until they cursed God for the plague of the hail, so fearful was that plague. </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"17\">\r\n\t\t\t<VERS vnumber=\"1\"> Then one of the seven angels who had the seven bowls came and said to me, \"Come, I will show you the judgment of the great whore who is seated on many waters,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> with whom the kings of the earth have committed fornication, and with the wine of whose fornication the inhabitants of the earth have become drunk.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> So he carried me away in the spirit into a wilderness, and I saw a woman sitting on a scarlet beast that was full of blasphemous names, and it had seven heads and ten horns. </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> The woman was clothed in purple and scarlet, and adorned with gold and jewels and pearls, holding in her hand a golden cup full of abominations and the impurities of her fornication;</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> and on her forehead was written a name, a mystery: \"Babylon the great, mother of whores and of earth's abominations.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And I saw that the woman was drunk with the blood of the saints and the blood of the witnesses to Jesus. When I saw her, I was greatly amazed.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> But the angel said to me, \"Why are you so amazed? I will tell you the mystery of the woman, and of the beast with seven heads and ten horns that carries her.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> The beast that you saw was, and is not, and is about to ascend from the bottomless pit and go to destruction. And the inhabitants of the earth, whose names have not been written in the book of life from the foundation of the world, will be amazed when they see the beast, because it was and is not and is to come.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> \"This calls for a mind that has wisdom: the seven heads are seven mountains on which the woman is seated; also, they are seven kings,</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> of whom five have fallen, one is living, and the other has not yet come; and when he comes, he must remain only a little while.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> As for the beast that was and is not, it is an eighth but it belongs to the seven, and it goes to destruction.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> And the ten horns that you saw are ten kings who have not yet received a kingdom, but they are to receive authority as kings for one hour, together with the beast.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> These are united in yielding their power and authority to the beast;</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> they will make war on the Lamb, and the Lamb will conquer them, for he is Lord of lords and King of kings, and those with him are called and chosen and faithful.\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> And he said to me, \"The waters that you saw, where the whore is seated, are peoples and multitudes and nations and languages.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> And the ten horns that you saw, they and the beast will hate the whore; they will make her desolate and naked; they will devour her flesh and burn her up with fire.</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> For God has put it into their hearts to carry out his purpose by agreeing to give their kingdom to the beast, until the words of God will be fulfilled.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The woman you saw is the great city that rules over the kings of the earth.\"</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"18\">\r\n\t\t\t<VERS vnumber=\"1\"> After this I saw another angel coming down from heaven, having great authority; and the earth was made bright with his splendor.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He called out with a mighty voice, \"Fallen, fallen is Babylon the great! It has become a dwelling place of demons, a haunt of every foul spirit, a haunt of every foul bird, a haunt of every foul and hateful beast. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> For all the 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 have grown rich from the power of her luxury.\" </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then I heard another voice from heaven saying, \"Come out of her, my people, so that you do not take part in her sins, and so that you do not share in her plagues;</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> for her sins are heaped high as heaven, and God has remembered her iniquities.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Render to her as she herself has rendered, and repay her double for her deeds; mix a double draught for her in the cup she mixed.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> As she glorified herself and lived luxuriously, so give her a like measure of torment and grief. Since in her heart she says, 'I rule as a queen; I am no widow, and I will never see grief,'</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> therefore her plagues will come in a single day-- pestilence and mourning and famine-- and she will be burned with fire; for mighty is the Lord God who judges her.\"</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> And the kings of the earth, who committed fornication and lived in luxury with her, will weep and wail over her when they see the smoke of her burning;</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> they will stand far off, in fear of her torment, and say, \"Alas, alas, the great city, Babylon, the mighty city! For in one hour your judgment has come.\"</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> And the merchants of the earth weep and mourn for her, since no one buys their cargo anymore,</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> cargo of gold, silver, jewels and pearls, fine linen, purple, silk and scarlet, all kinds of scented wood, all articles of ivory, all articles of costly wood, bronze, iron, and marble,</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> cinnamon, spice, incense, myrrh, frankincense, wine, olive oil, choice flour and wheat, cattle and sheep, horses and chariots, slaves-- and human lives.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> \"The fruit for which your soul longed has gone from you, and all your dainties and your splendor are lost to you, never to be found again!\"</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The merchants of these wares, who gained wealth from her, will stand far off, in fear of her torment, weeping and mourning aloud,</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> \"Alas, alas, the great city, clothed in fine linen, in purple and scarlet, adorned with gold, with jewels, and with pearls!</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> For in one hour all this wealth has been laid waste!\" And all shipmasters and seafarers, sailors and all whose trade is on the sea, stood far off</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> and cried out as they saw the smoke of her burning, \"What city was like the great city?\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> And they threw dust on their heads, as they wept and mourned, crying out, \"Alas, alas, the great city, where all who had ships at sea grew rich by her wealth! For in one hour she has been laid waste.\"</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> Rejoice over her, O heaven, you saints and apostles and prophets! For God has given judgment for you against her.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> Then a mighty angel took up a stone like a great millstone and threw it into the sea, saying, \"With such violence Babylon the great city will be thrown down, and will be found no more;</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> and the sound of harpists and minstrels and of flutists and trumpeters will be heard in you no more; and an artisan of any trade will be found in you no more; and the sound of the millstone will be heard in you no more;</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> and the light of a lamp will shine in you no more; and the voice of bridegroom and bride will be heard in you no more; for your merchants were the magnates of the earth, and all nations were deceived by your sorcery.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> And in you was found the blood of prophets and of saints, and of all who have been slaughtered on earth.\" </VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"19\">\r\n\t\t\t<VERS vnumber=\"1\"> After this I heard what seemed to be the loud voice of a great multitude in heaven, saying, \"Hallelujah! Salvation and glory and power to our God,</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> for his judgments are true and just; he has judged the great whore who corrupted the earth with her fornication, and he has avenged on her the blood of his servants.\"</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Once more they said, \"Hallelujah! The smoke goes up from her forever and ever.\"</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> And the twenty-four elders and the four living creatures fell down and worshiped God who is seated on the throne, saying, \"Amen. Hallelujah!\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> And from the throne came a voice saying, \"Praise our God, all you his servants, and all who fear him, small and great.\" </VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then I heard what seemed to be the voice of a great multitude, like the sound of many waters and like the sound of mighty thunderpeals, crying out, \"Hallelujah! For the Lord our God the Almighty reigns.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Let us rejoice and exult and give him the glory, for the marriage of the Lamb has come, and his bride has made herself ready;</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> to her it has been granted to be clothed with fine linen, bright and pure\"-- for the fine linen is the righteous deeds of the saints.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> And the angel said to me, \"Write this: Blessed are those who are invited to the marriage supper of the Lamb.\" And he said to me, \"These are true words of God.\" </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> Then I fell down at his feet to worship him, but he said to me, \"You must not do that! I am a fellow servant with you and your comrades who hold the testimony of Jesus. Worship God! For the testimony of Jesus is the spirit of prophecy.\" </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then I saw heaven opened, and there was a white horse! Its rider is called Faithful and True, and in righteousness he judges and makes war.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> His eyes are like a flame of fire, and on his head are many diadems; and he has a name inscribed that no one knows but himself.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> He is clothed in a robe dipped in blood, and his name is called The Word of God. </VERS>\r\n\t\t\t<VERS vnumber=\"14\"> And the armies of heaven, wearing fine linen, white and pure, were following him on white horses.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> From his mouth comes a sharp sword with which to strike down the nations, and he will rule them with a rod of iron; he will tread the wine press of the fury of the wrath of God the Almighty. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> On his robe and on his thigh he has a name inscribed, \"King of kings and Lord of lords.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> Then I saw an angel standing in the sun, and with a loud voice he called to all the birds that fly in midheaven, \"Come, gather for the great supper of God,</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> to eat the flesh of kings, the flesh of captains, the flesh of the mighty, the flesh of horses and their riders-- flesh of all, both free and slave, both small and great.\"</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> Then I saw the beast and the kings of the earth with their armies gathered to make war against the rider on the horse and against his army.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> And the beast was captured, and with it the false prophet who had performed in its presence the signs by which he deceived those who had received the mark of the beast and those who worshiped its image. These two were thrown alive into the lake of fire that burns with sulfur.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> And the rest were killed by the sword of the rider on the horse, the sword that came from his mouth; and all the birds were gorged with their flesh.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"20\">\r\n\t\t\t<VERS vnumber=\"1\"> Then I saw an angel coming down from heaven, holding in his hand the key to the bottomless pit and a great chain.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> He seized the dragon, that ancient serpent, who is the Devil and Satan, and bound him for a thousand years,</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> and threw him into the pit, and locked and sealed it over him, so that he would deceive the nations no more, until the thousand years were ended. After that he must be let out for a little while.</VERS>\r\n\t\t\t<VERS vnumber=\"4\"> Then I saw thrones, and those seated on them were given authority to judge. I also saw the souls of those who had been beheaded for their testimony to Jesus and for the word of God. They had not worshiped the beast or its image and had not received its mark on their foreheads or their hands. They came to life and reigned with Christ a thousand years. </VERS>\r\n\t\t\t<VERS vnumber=\"5\"> (The rest of the dead did not come to life until the thousand years were ended.) This is the first resurrection.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Blessed and holy are those who share in the first resurrection. Over these the second death has no power, but they will be priests of God and of Christ, and they will reign with him a thousand years.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> When the thousand years are ended, Satan will be released from his prison</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> and will come out to deceive the nations at the four corners of the earth, Gog and Magog, in order to gather them for battle; they are as numerous as the sands of the sea.</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> They marched up over the breadth of the earth and surrounded the camp of the saints and the beloved city. And fire came down from heaven and consumed them. </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And the devil who had deceived them was thrown into the lake of fire and sulfur, where the beast and the false prophet were, and they will be tormented day and night forever and ever.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Then I saw a great white throne and the one who sat on it; the earth and the heaven fled from his presence, and no place was found for them.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> And I saw the dead, great and small, standing before the throne, and books were opened. Also another book was opened, the book of life. And the dead were judged according to their works, as recorded in the books.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> And the sea gave up the dead that were in it, Death and Hades gave up the dead that were in them, and all were judged according to what they had done.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Then Death and Hades were thrown into the lake of fire. This is the second death, the lake of fire;</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> and anyone whose name was not found written in the book of life was thrown into the lake of fire.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"21\">\r\n\t\t\t<VERS vnumber=\"1\"> Then I saw a new heaven and a new earth; for the first heaven and the first earth had passed away, and the sea was no more.</VERS>\r\n\t\t\t<VERS vnumber=\"2\"> And I saw the holy city, the new Jerusalem, coming down out of heaven from God, prepared as a bride adorned for her husband.</VERS>\r\n\t\t\t<VERS vnumber=\"3\"> And I heard a loud voice from the throne saying, \"See, the home of God is among mortals. He will dwell with them; they will be his peoples, and God himself will be with them; </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> he will wipe every tear from their eyes. Death will be no more; mourning and crying and pain will be no more, for the first things have passed away.\"</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> And the one who was seated on the throne said, \"See, I am making all things new.\" Also he said, \"Write this, for these words are trustworthy and true.\"</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> Then he said to me, \"It is done! I am the Alpha and the Omega, the beginning and the end. To the thirsty I will give water as a gift from the spring of the water of life.</VERS>\r\n\t\t\t<VERS vnumber=\"7\"> Those who conquer will inherit these things, and I will be their God and they will be my children.</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> But as for the cowardly, the faithless, the polluted, the murderers, the fornicators, the sorcerers, the idolaters, and all liars, their place will be in the lake that burns with fire and sulfur, which is the second death.\" </VERS>\r\n\t\t\t<VERS vnumber=\"9\"> Then one of the seven angels who had the seven bowls full of the seven last plagues came and said to me, \"Come, I will show you the bride, the wife of the Lamb.\"</VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And in the spirit he carried me away to a great, high mountain and showed me the holy city Jerusalem coming down out of heaven from God. </VERS>\r\n\t\t\t<VERS vnumber=\"11\"> It has the glory of God and a radiance like a very rare jewel, like jasper, clear as crystal.</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> It has a great, high wall with twelve gates, and at the gates twelve angels, and on the gates are inscribed the names of the twelve tribes of the Israelites;</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> on the east three gates, on the north three gates, on the south three gates, and on the west three gates.</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> And the wall of the city has twelve foundations, and on them are the twelve names of the twelve apostles of the Lamb.</VERS>\r\n\t\t\t<VERS vnumber=\"15\"> The angel who talked to me had a measuring rod of gold to measure the city and its gates and walls. </VERS>\r\n\t\t\t<VERS vnumber=\"16\"> The city lies foursquare, its length the same as its width; and he measured the city with his rod, fifteen hundred miles; its length and width and height are equal. </VERS>\r\n\t\t\t<VERS vnumber=\"17\"> He also measured its wall, one hundred forty-four cubits by human measurement, which the angel was using. </VERS>\r\n\t\t\t<VERS vnumber=\"18\"> The wall is built of jasper, while the city is pure gold, clear as glass.</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> The foundations of the wall of the city are adorned with every jewel; the first was jasper, the second sapphire, the third agate, the fourth emerald,</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> the fifth onyx, the sixth carnelian, the seventh chrysolite, the eighth beryl, the ninth topaz, the tenth chrysoprase, the eleventh jacinth, the twelfth amethyst.</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> And the twelve gates are twelve pearls, each of the gates is a single pearl, and the street of the city is pure gold, transparent as glass.</VERS>\r\n\t\t\t<VERS vnumber=\"22\"> I saw no temple in the city, for its temple is the Lord God the Almighty and the Lamb.</VERS>\r\n\t\t\t<VERS vnumber=\"23\"> And the city has no need of sun or moon to shine on it, for the glory of God is its light, and its lamp is the Lamb.</VERS>\r\n\t\t\t<VERS vnumber=\"24\"> The nations will walk by its light, and the kings of the earth will bring their glory into it.</VERS>\r\n\t\t\t<VERS vnumber=\"25\"> Its gates will never be shut by day-- and there will be no night there.</VERS>\r\n\t\t\t<VERS vnumber=\"26\"> People will bring into it the glory and the honor of the nations.</VERS>\r\n\t\t\t<VERS vnumber=\"27\"> But nothing unclean will enter it, nor anyone who practices abomination or falsehood, but only those who are written in the Lamb's book of life.</VERS>\r\n\t\t</CHAPTER>\r\n\t\t<CHAPTER cnumber=\"22\">\r\n\t\t\t<VERS vnumber=\"1\"> Then the angel showed me the river of the water of life, bright as crystal, flowing from the throne of God and of the Lamb </VERS>\r\n\t\t\t<VERS vnumber=\"2\"> through the middle of the street of the city. On either side of the river is the tree of life with its twelve kinds of fruit, producing its fruit each month; and the leaves of the tree are for the healing of the nations. </VERS>\r\n\t\t\t<VERS vnumber=\"3\"> Nothing accursed will be found there any more. But the throne of God and of the Lamb will be in it, and his servants will worship him; </VERS>\r\n\t\t\t<VERS vnumber=\"4\"> they will see his face, and his name will be on their foreheads.</VERS>\r\n\t\t\t<VERS vnumber=\"5\"> And there will be no more night; they need no light of lamp or sun, for the Lord God will be their light, and they will reign forever and ever.</VERS>\r\n\t\t\t<VERS vnumber=\"6\"> And he said to me, \"These words are trustworthy and true, for the Lord, the God of the spirits of the prophets, has sent his angel to show his servants what must soon take place.\" </VERS>\r\n\t\t\t<VERS vnumber=\"7\"> \"See, I am coming soon! Blessed is the one who keeps the words of the prophecy of this book.\"</VERS>\r\n\t\t\t<VERS vnumber=\"8\"> I, John, am the one who heard and saw these things. And when I heard and saw them, I fell down to worship at the feet of the angel who showed them to me;</VERS>\r\n\t\t\t<VERS vnumber=\"9\"> but he said to me, \"You must not do that! I am a fellow servant with you and your comrades the prophets, and with those who keep the words of this book. Worship God!\" </VERS>\r\n\t\t\t<VERS vnumber=\"10\"> And he said to me, \"Do not seal up the words of the prophecy of this book, for the time is near.</VERS>\r\n\t\t\t<VERS vnumber=\"11\"> Let the evildoer still do evil, and the filthy still be filthy, and the righteous still do right, and the holy still be holy.\"</VERS>\r\n\t\t\t<VERS vnumber=\"12\"> \"See, I am coming soon; my reward is with me, to repay according to everyone's work.</VERS>\r\n\t\t\t<VERS vnumber=\"13\"> I am the Alpha and the Omega, the first and the last, the beginning and the end.\"</VERS>\r\n\t\t\t<VERS vnumber=\"14\"> Blessed are those who wash their robes, so that they will have the right to the tree of life and may enter the city by the gates. </VERS>\r\n\t\t\t<VERS vnumber=\"15\"> Outside are the dogs and sorcerers and fornicators and murderers and idolaters, and everyone who loves and practices falsehood.</VERS>\r\n\t\t\t<VERS vnumber=\"16\"> \"It is I, Jesus, who sent my angel to you with this testimony for the churches. I am the root and the descendant of David, the bright morning star.\"</VERS>\r\n\t\t\t<VERS vnumber=\"17\"> The Spirit and the bride say, \"Come.\" And let everyone who hears say, \"Come.\" And let everyone who is thirsty come. Let anyone who wishes take the water of life as a gift.</VERS>\r\n\t\t\t<VERS vnumber=\"18\"> I warn everyone who hears the words of the prophecy of this book: if anyone adds to them, God will add to that person the plagues described in this book;</VERS>\r\n\t\t\t<VERS vnumber=\"19\"> if anyone takes away from the words of the book of this prophecy, God will take away that person's share in the tree of life and in the holy city, which are described in this book.</VERS>\r\n\t\t\t<VERS vnumber=\"20\"> The one who testifies to these things says, \"Surely I am coming soon.\" Amen. Come, Lord Jesus!</VERS>\r\n\t\t\t<VERS vnumber=\"21\"> The grace of the Lord Jesus be with all the saints. Amen.</VERS>\r\n\t\t</CHAPTER>\r\n\t</BIBLEBOOK>\r\n</XMLBIBLE>\r\n"
  },
  {
    "path": "Quelea/build-install.bat",
    "content": "set isxpath=\"c:\\program files (x86)\\inno setup 6\"\nset isx=%isxpath%\\iscc.exe\nset iwz=quelea64.iss\n%isx% \"%iwz%\" /dMyAppVersion=%1 /O /F /q\"Quelea\""
  },
  {
    "path": "Quelea/build-install.sh",
    "content": "#!/bin/bash\nwine \"$HOME/.wine/drive_c/Program Files (x86)/Inno Setup 6/iscc.exe\" /dMyAppVersion=$1 quelea64.iss /O /F /q\"Quelea\""
  },
  {
    "path": "Quelea/build.gradle",
    "content": "buildscript {\n    dependencies {\n        classpath 'edu.sc.seis.launch4j:launch4j:4.0.0'\n        classpath 'com.bmuschko:gradle-izpack-plugin:3.2'\n        classpath \"com.github.ben-manes:gradle-versions-plugin:0.53.0\"\n    }\n}\n\nplugins {\n    id 'application'\n    id 'java'\n    id 'org.openjfx.javafxplugin' version '0.1.0'\n    id 'edu.sc.seis.launch4j' version '4.0.0'\n    id 'com.github.ben-manes.versions' version '0.53.0'\n    id 'com.bmuschko.izpack' version '3.2'\n}\n\nconfigurations.all {\n    resolutionStrategy {\n        cacheChangingModulesFor 0, 'seconds'\n    }\n}\n\nrepositories {\n    mavenCentral()\n    maven {\n        url 'https://oss.sonatype.org/content/repositories/snapshots/'\n        content {\n            includeGroup 'org.quelea'\n        }\n        mavenContent {\n            snapshotsOnly()\n        }\n    }\n}\n\njavafx {\n    version = \"25\"\n    modules = [ 'javafx.base', 'javafx.controls', 'javafx.fxml', 'javafx.graphics', 'javafx.media', 'javafx.swing', 'javafx.web' ]\n}\n\next {\n    versionsuffix = System.properties[\"versionsuffix\"]!=null ? System.properties[\"versionsuffix\"] : project.queleaversion\n\n    CPInstallerName=\"quelea-\" + versionsuffix + \"-crossplatform-install.jar\"\n    WindowsInstallerName=\"quelea-\" + versionsuffix + \"-x86-windows-install.exe\"\n    WindowsInstaller64Name=\"quelea-\" + versionsuffix + \"-x64-windows-install.exe\"\n    MacInstallerName=\"quelea-\" + versionsuffix + \"-mac.zip\"\n    JavaAppName=\"quelea-\" + versionsuffix + \"-java-app.tar.gz\"\n\n    CPInstaller =\"dist/standalone/\" + CPInstallerName\n    WindowsInstaller=\"dist/standalone/\" + ext.WindowsInstallerName\n    WindowsInstaller64=\"dist/standalone/\" + ext.WindowsInstaller64Name\n}\n\ntasks.withType(JavaCompile) {\n    configure(options) {\n        options.compilerArgs << '-Xlint:deprecation' << '-Xlint:unchecked'\n    }\n}\n\ntasks.register('removeDist', Delete) {\n    delete \"dist\"\n    delete \"out-mac\"\n    delete \"bundlejre\"\n}\n\ncompileJava   {\n    sourceCompatibility = '25'\n    targetCompatibility = '25'\n}\n\nclean.finalizedBy(removeDist)\ncompileJava.finalizedBy(dependencyUpdates)\n\n[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'\next.mainClass = 'org.quelea.windows.main.MainStub'\n\ntasks.register('createQueleaExe64', edu.sc.seis.launch4j.tasks.Launch4jLibraryTask) { //Launch4j\n    mainClassName = 'org.quelea.windows.main.MainStub'\n    mutexName = \"queleamutex\"\n    supportUrl = \"https://quelea.discourse.group/\"\n    icon = \"../../icons/logo.ico\"\n    copyright = \"GPLv3\"\n    bundledJrePath = \"winjre64\"\n    jvmOptions = [\"-Dfile.encoding=UTF-8\", \"-Dprism.dirtyopts=false\", \"--add-opens java.base/java.nio=ALL-UNNAMED\", \"-Dglass.accessible.force=false\", \"--add-exports=javafx.graphics/com.sun.javafx.css=ALL-UNNAMED\", \"--add-exports=javafx.base/com.sun.javafx.runtime=ALL-UNNAMED\", \"--add-exports=javafx.base/com.sun.javafx.event=ALL-UNNAMED\", \"--add-opens java.base/java.lang=ALL-UNNAMED\", \"--add-opens javafx.controls/javafx.scene.control=ALL-UNNAMED\"]\n    outfile = \"Quelea64.exe\"\n    jreMinVersion = \"1.5\" //Hack to bypass launch4j\n}\n\ntasks.register('downloadGStreamer') {\n    def f = new File('gs.msi')\n    if (!f.exists()) {\n        new URL('https://gstreamer.freedesktop.org/data/pkg/windows/1.26.6/msvc/gstreamer-1.0-msvc-x86_64-1.26.6.msi').withInputStream { i -> f.withOutputStream { it << i } }\n    }\n}\n\ntasks.register('downloadJres') {\n    def mf = new File('macjre.zip')\n    if (!mf.exists()) {\n        new URL('https://cdn.azul.com/zulu/bin/zulu25.28.85-ca-fx-jre25.0.0-macosx_x64.zip').withInputStream { i -> mf.withOutputStream { it << i } }\n    }\n\n    def wf = new File('winjre64.zip')\n    if (!wf.exists()) {\n        new URL('https://cdn.azul.com/zulu/bin/zulu25.28.85-ca-fx-jre25.0.0-win_x64.zip').withInputStream { i -> wf.withOutputStream { it << i } }\n    }\n\n    doLast {\n        ant.move file: \"macjre.zip\",\n                todir: \"bundlejre\"\n        ant.move file: \"winjre64.zip\",\n                todir: \"bundlejre\"\n    }\n}\n\ntasks.register('copyToDist') {\n    doLast {\n        copy { from configurations.runtimeClasspath into project.distdir + \"/libjfx\" include \"javafx*\" }\n        // all JavaFX libraries\n        copy { from configurations.runtimeClasspath into project.distdir + \"/lib\" exclude \"javafx*\" }\n        // all libraries except JavaFX libraries\n        copy { from \"themes\" into project.distdir + \"/themes\" }\n        copy { from \"icons\" into project.distdir + \"/icons\" }\n        copy { from \"bibles\" into project.distdir + \"/bibles\" }\n        copy { from \"server\" into project.distdir + \"/server\" }\n        copy { from \"vid\" into project.distdir + \"/vid\" }\n        copy { from \"vbs\" into project.distdir + \"/vbs\" }\n        copy { from \"licenses\" into project.distdir + \"/licenses\" }\n        copy { from \"languages\" into project.distdir + \"/languages\" }\n        copy { from \"dictionaries\" into project.distdir + \"/dictionaries\" }\n        copy { from \"img\" into project.distdir + \"/img\" }\n        copy { from \"timer\" into project.distdir + \"/timer\" }\n        copy { from \"src\" into project.distdir + \"/src\" }\n        def wf = new File('bundlejre/winjre64.zip')\n        if (wf.exists()) {\n            copy { from zipTree(\"bundlejre/winjre64.zip\") into project.distdir }\n            file(\"dist/zulu25.28.85-ca-fx-jre25.0.0-win_x64\").renameTo(file(\"dist/winjre64\"))\n        }\n        copy { from file(\"build/libs/Quelea.jar\") into file(project.distdir) }\n        copy { from file(\"README.TXT\") into file(project.distdir) }\n        copy { from file(\"quelea.properties\") into file(project.distdir) }\n        copy { from file(\"scheduleformat.xsl\") into file(project.distdir) }\n        copy { from file(\"songformat.xsl\") into file(project.distdir) }\n        copy { from file(\"fopcfg.xml\") into file(project.distdir) }\n        copy { from file(\"Quelea.bat\") into file(project.distdir) }\n        copy { from file(\"quelea.iss\") into file(project.distdir) }\n        copy { from file(\"quelea64.iss\") into file(project.distdir) }\n        copy { from file(\"build-install.bat\") into file(project.distdir) }\n        copy { from file(\"build-install.sh\") into file(project.distdir) }\n        copy { from file(\"licenses/gplv3.txt\") into file(project.distdir) rename { String filename -> return \"LICENSE.txt\" } }\n        copy { from file(\"launch.sh\") into file(project.distdir) }\n        copy { from file(\"licenses/copyright\") into file(project.distdir + \"/queleadoc\") }\n    }\n}\n\ntasks.register('grabNative') {\n    doLast {\n        copy {\n            from file(project.file('osx/libAVPlayerJava.jnilib'))\n            into project.file(project.distdir + '/lib/')\n        }\n    }\n}\ncopyToDist.finalizedBy(grabNative)\n\nizPackCreateInstaller {\n    installFile = file(\"izpack/config.xml\")\n    outputFile = file(CPInstaller)\n    baseDir = file(\"dist\")\n}\n\ntasks.register('innosetup', Exec) {\n    doFirst {\n        workingDir = project.file('.')\n        if (System.getProperty('os.name').toLowerCase(Locale.ROOT).contains('windows')) {\n            commandLine = ['cmd', '/C', 'build-install.bat', project.queleaversion]\n        } else {\n            commandLine = ['sh', './build-install.sh', project.queleaversion]\n        }\n    }\n\n    doLast {\n        copy { from file(\"Output/setup.exe\") into file(project.distdir + \"/standalone\") rename { String filename -> return WindowsInstallerName } }\n        copy { from file(\"Output/setup64.exe\") into file(project.distdir + \"/standalone\") rename { String filename -> return WindowsInstaller64Name } }\n        delete(file(\"Output\"))\n    }\n}\n\ntasks.register('labelcheck', JavaExec) {\n    mainClass = 'org.quelea.services.languages.LabelChecker'\n    classpath = sourceSets.main.runtimeClasspath\n}\n\ntasks.register('runPackr', JavaExec) {\n    classpath = files('packr.jar')\n    mainClass = \"com.badlogicgames.packr.Packr\"\n    args = [\"packr.json\"]\n}\n\ntasks.register('zipMacPackr', Zip) {\n    archiveFileName = MacInstallerName\n    destinationDirectory = file(\"dist/standalone\")\n\n    from \"out-mac\"\n\n    doLast {\n        delete(file(\"out-mac\"))\n    }\n}\n\nrunPackr.finalizedBy(zipMacPackr);\n\ntasks.register('dist', GradleBuild) {\n    tasks = ['labelcheck', 'downloadJres', 'downloadGStreamer', 'createQueleaExe64', 'copyToDist', 'tar', 'runPackr', 'izpack', 'innosetup', 'releaseSummary']\n}\n\ndependencies {\n    izpack 'org.codehaus.izpack:izpack-ant:5.1.3'\n\n    implementation 'com.googlecode.paradoxdriver:paradoxdriver:1.6.3'\n    implementation 'com.github.berry120.jopenlyrics:jopenlyrics:2.0'\n    implementation group: 'org.hsqldb', name: 'hsqldb', version: '2.7.4'\n    implementation group: 'org.apache.poi', name: 'poi-scratchpad', version: '5.4.1'\n    implementation group: 'org.apache.poi', name: 'poi-ooxml', version: '5.4.1'\n    implementation group: 'org.apache.poi', name: 'poi', version: '5.4.1'\n    implementation group: 'org.xerial', name: 'sqlite-jdbc', version: '3.50.3.0'\n    implementation group: 'org.apache.avalon.framework', name: 'avalon-framework-api', version: '4.3.1'\n    implementation group: 'org.apache.avalon.framework', name: 'avalon-framework-impl', version: '4.3.1'\n\n    implementation 'net.java.dev.jna:jna:5.18.1'\n    implementation 'net.java.dev.jna:jna-platform:5.18.1'\n    implementation 'org.freedesktop.gstreamer:gst1-java-core:1.4.0'\n    implementation 'org.freedesktop.gstreamer:gst1-java-fx:0.9.0'\n\n    implementation group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1'\n    implementation group: 'com.google.code.gson', name: 'gson', version: '2.13.2'\n    implementation group: 'com.healthmarketscience.jackcess', name: 'jackcess', version: '4.0.8'\n    implementation group: 'org.apache.lucene', name: 'lucene-core', version: '8.9.0'\n    implementation group: 'org.apache.lucene', name: 'lucene-queryparser', version: '8.9.0'\n    implementation group: 'org.apache.lucene', name: 'lucene-analyzers-common', version: '8.9.0'\n    implementation group: 'org.apache.pdfbox', name: 'pdfbox', version: '2.0.35'\n    implementation group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.14'\n    implementation group: 'org.apache.httpcomponents', name: 'httpmime', version: '4.5.14'\n    implementation group: 'org.fxmisc.richtext', name: 'richtextfx', version: '0.11.6'\n    implementation group: 'com.github.albfernandez', name: 'juniversalchardet', version: '2.5.0'\n    implementation group: 'org.hibernate', name: 'hibernate-gradle-plugin', version: '5.6.15.Final'\n    implementation group: 'com.google.zxing', name: 'core', version: '3.5.3'\n    implementation group: 'com.google.zxing', name: 'javase', version: '3.5.3'\n    implementation group: 'commons-io', name: 'commons-io', version: '2.20.0'\n    implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.19.0'\n    implementation group: 'org.apache.commons', name: 'commons-text', version: '1.14.0'\n    implementation group: 'com.memetix', name: 'microsoft-translator-java-api', version: '0.6.2'\n    implementation group: 'org.openoffice', name: 'jurt', version: '4.1.2'\n    implementation group: 'org.openoffice', name: 'juh', version: '4.1.2'\n    implementation group: 'org.apache.xmlgraphics', name: 'fop', version: '2.3'\n    implementation group: 'org.quelea', name: 'planning-center', version: '0.3'\n\n    implementation group: 'org.openoffice', name: 'unoil', version: '4.1.2'\n    implementation group: 'org.openoffice', name: 'bootstrap-connector', version: '0.1.1'\n\n    implementation group: 'com.aparapi', name: 'aparapi', version: '1.10.0'\n\n    implementation group: 'org.jflac', name: 'jflac-codec', version: '1.5.2'\n    implementation group: 'org.jcraft', name: 'jorbis', version: '0.0.17'\n\n    implementation group: 'jakarta.xml.bind', name: 'jakarta.xml.bind-api', version: '4.0.4'\n    implementation group: 'com.sun.xml.bind', name: 'jaxb-core', version: '4.0.6'\n    implementation group: 'com.sun.xml.bind', name: 'jaxb-impl', version: '4.0.6'\n    implementation group: 'javax.activation', name: 'activation', version: '1.1.1'\n\n    implementation group: 'com.dlsc.preferencesfx', name: 'preferencesfx-core', version: '11.17.0'\n\n    implementation group: 'org.slf4j', name: 'slf4j-jdk14', version: '1.7.32'\n\n    runtimeOnly \"org.openjfx:javafx-graphics:$javafx.version:win\"\n    runtimeOnly \"org.openjfx:javafx-graphics:$javafx.version:linux\"\n    runtimeOnly \"org.openjfx:javafx-graphics:$javafx.version:mac\"\n    runtimeOnly \"org.openjfx:javafx-web:$javafx.version:win\"\n    runtimeOnly \"org.openjfx:javafx-web:$javafx.version:linux\"\n    runtimeOnly \"org.openjfx:javafx-web:$javafx.version:mac\"\n\n    testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '6.0.0'\n    testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '6.0.0'\n}\n\ntest {\n    failOnNoDiscoveredTests = false\n}\n\njar {\n    manifest {\n        attributes (\n                'Main-Class': 'org.quelea.windows.main.MainStub',\n                \"Class-Path\": configurations.runtimeClasspath.collect { \"lib/\" + it.getName() }.join(' ')\n        )\n    }\n}\n\ntasks.register('tar', Tar) {\n    archiveFileName = JavaAppName\n    destinationDirectory = file(\"dist/standalone/\")\n    compression = Compression.GZIP\n\n    from 'dist/'\n    into \"Quelea-${versionsuffix}-java-app\"\n    include \"lib/\",\n            \"bibles/\",\n            \"dictionaries/\",\n            \"icons/\",\n            \"img/\",\n            \"languages/\",\n            \"licenses/\",\n            \"server/\",\n            \"themes/\",\n            \"vid/\",\n            \"fopcfg.xml\",\n            \"quelea.properties\",\n            \"scheduleformat.xsl\",\n            \"songformat.xsl\",\n            \"Quelea.jar\"\n}\n\ntasks.register('releaseSummary', JavaExec) {\n    mainClass = 'org.quelea.services.utils.ReleaseSummaryGenerator'\n    classpath = sourceSets.main.runtimeClasspath\n}\n\ntasks.named(\"izPackCreateInstaller\") {\n    dependsOn(tasks.named(\"zipMacPackr\"))\n    dependsOn(tasks.named('tar'))\n}\n"
  },
  {
    "path": "Quelea/changelogs/changelog-0.4.2.txt",
    "content": "quelea (0.4.2) stable; urgency=normal\r\n \r\n  * Custom position for projector window\r\n  * Text now in languages file\r\n  * Convert first line of Kingsway songs to sentence case\r\n  * Add \"single line\" mode to song panels\r\n  * Better error for old Java\r\n  * RSV bible names now in English\r\n  * Canvas now resizes properly\r\n  * Better out of memory error\r\n  * Repainting bugs\r\n  * Layout bug in options\r\n \r\n -- Michael Berry <michael@quelea.org>  Sunday, 19 Dec 2011 00:00:00 +0000"
  },
  {
    "path": "Quelea/changelogs/changelog-0.5.1.txt",
    "content": "quelea (0.5.1) stable; urgency=normal\r\n \r\n  * Deal with video errors better\r\n  * Add link to Facebook page in help menu\r\n  * Fix with crashing with large number of images\r\n  * Can now drag image over song / bible passage to set theme\r\n  * Quick edit can now delete sections\r\n  * Now have the option to display text with a shadow\r\n  * Long labels have been split up\r\n  * Number of monitors is reloaded on the fly without need for restart\r\n  * Themes can be edited from the theme menu\r\n  * Quick edit changed to control and bug fixed on Linux\r\n  * Various other bug fixes\r\n \r\n -- Michael Berry <michael@quelea.org>  Sunday, 12 Mar 2012 00:00:00 +0000"
  },
  {
    "path": "Quelea/changelogs/changelog-0.5.2.txt",
    "content": "quelea (0.5.2) stable; urgency=normal\r\n \r\n  * Better powerpoint support, including support for the new PPTX format\r\n  * Fix \"edit song\" -> cancel clearing text bug\r\n  * Fix flickering background\r\n  * Fix clear screen options\r\n  * Fix file filter on export menu\r\n  * Change a couple of icons to make them more usable\r\n  * Anti-alias small text as well as large\r\n  * Various other bug fixes\r\n \r\n -- Michael Berry <michael@quelea.org>  Sunday, 12 Mar 2012 00:00:00 +0000"
  },
  {
    "path": "Quelea/changelogs/changelog-0.5.3.txt",
    "content": "quelea (0.5.3) stable; urgency=normal\r\n \r\n  * Fixed bug with some schedules not opening\r\n  * Warn when there's a corrupt schedule, don't silently ignore\r\n  * Fix bugs with adding bibles\r\n  * Space for lyrics / projection split pane distributed more evenly\r\n \r\n -- Michael Berry <michael@quelea.org>  Sunday, 27 Sep 2012 00:00:00 +0000"
  },
  {
    "path": "Quelea/changelogs/changelog-0.5.txt",
    "content": "quelea (0.5) stable; urgency=normal\r\n \r\n  * Better searching, better UI and much faster algorithm\r\n  * Reworked UI, no ribbon\r\n  * Added missing labels\r\n  * Added stage view\r\n  * Added volume / status bar to videos\r\n  * File filters now case insensitive\r\n  * Startup speed improvements\r\n  * Corrupt powerpoints handled properly with error\r\n  * Missing labels added to language file\r\n  * Dialog to check whether to save the schedule before quitting\r\n  * Time displayed on video panel\r\n  * Kingsway importer bug fixed\r\n  * Add bible bug fixed\r\n  * Grammar on spellcheck message fixed\r\n \r\n -- Michael Berry <michael@quelea.org>  Wednesday, 29 Feb 2012 00:00:00 +0000"
  },
  {
    "path": "Quelea/changelogs/changelog-2014.0.txt",
    "content": "quelea (0.6) stable; urgency=normal\r\n \r\n  * Rewritten interface in JavaFX\r\n  * Rewritten video support\r\n  * Added option to keep the same size text for each part of a song\r\n  * Added option to set the maximum font size manually\r\n  * Added option to set spacing between lines\r\n  * Added video background support\r\n  * Clear text option now fades\r\n  * Black option now fades\r\n  * New logo option added, can easily fade live view to any given image\r\n  * Added loop button for presentations\r\n  * Changed to more efficient database format\r\n  * Added more / better sample images\r\n  * Added sample videos\r\n  * Added test patterns dialog to calibrate display\r\n  * Theme panel has had a major revamp, now much easier to use\r\n  * Text position and text alignment can be set separately per song\r\n  * Rewritten import dialogs to look much nicer\r\n  * Opensong import\r\n  * OpenLP import\r\n  * Easyslides import\r\n  * Plain text import\r\n  * Kingsway import fixed\r\n  * Added Czech, German, Swedish and US English translations\r\n  * Previews now preserve aspect ratio of main display\r\n  * Fix interface to display UTF-8 characters properly\r\n  * Fix schedule files / imports to deal with UTF-8 characters properly\r\n  * Rewritten bible search dialog\r\n  * Theme selector rewritten / bugs fixed\r\n  * Add option within interface to change language\r\n  * Window position now saved between runs\r\n  * Search by author as well as title and lyrics\r\n  * Bundled JRE\r\n  * Many more bugfixes\r\n\r\n -- Michael Berry <michael@quelea.org>  Wednesday, 24 Jan 2014 00:00:00 +0000"
  },
  {
    "path": "Quelea/changelogs/changelog-2014.1.txt",
    "content": "quelea (2014.1) stable; urgency=normal\r\n \r\n  * Added remote control functionality\r\n  * Added Youtube support\r\n  * Added PDF export option for songs / schedule\r\n  * Added DVD / Bluray support\r\n  * Added ability to import more than one presentation at a time\r\n  * Added ZionWorx import\r\n  * Added Easyworship import\r\n  * Added Openlyrics import / export\r\n  * Added song translation support\r\n  * Improved text wrapping algorithm for bible text\r\n  * Added option for displaying verse numbers in bible text\r\n  * Added Hungarian translation\r\n  * Added Norwegian translation\r\n  * Added additional options for specifying the notice colour, speed, font, size and position\r\n  * Added VLCARG file support - ability to create video \"files\" that pass arguments directly to VLC\r\n  * Added ability to stretch videos\r\n  * Added more shadow options\r\n  * Added manual entry to help menu\r\n  * Bugfix - italic font property now saved when selecting an image or video background\r\n  * Bugfix - no longer possible to add empty bible passages\r\n  * Bugfix - quick edit cursor doesn't show on bible passages anymore\r\n  * Bugfix - bible search now filters out duplicate results correctly\r\n  * Bugfix - long notices now behave correctly\r\n  * Bugfix - printing now works properly for songs and schedules\r\n  * Bugfix - shadows now display correctly\r\n  * Bugfix - Cancelling the confirm exit dialog by pressing \"x\" no longer exits Quelea without saving\r\n  * Various other minor bug fixes\r\n\r\n -- Michael Berry <michael@quelea.org>  Wednesday, 04 Oct 2014 00:00:00 +0000"
  },
  {
    "path": "Quelea/changelogs/changelog-2015.0.txt",
    "content": "quelea (2015.0) stable; urgency=normal\r\n \r\n  * Moved to Java 8\r\n  * Changed to new skin (Modena) and updated splash screen\r\n  * New feature - Quickly change bible translations via right clicking on schedule list\r\n  * New feature - Broken bibles can be sent to devs for analysis\r\n  * New feature - QR code generator added for mobile lyrics URL\r\n  * New feature - Allow non-breaking lines in song lyrics\r\n  * New feature - Position of UI elements persists across invocations\r\n  * New feature - Song translations can now be exported to PDF\r\n  * New feature - Videos can now auto-play on being set live\r\n  * New feature - Schedule can now auto-advance when an item is sent live\r\n  * New feature - Item can be automatically previewed on image change\r\n  * New feature - Edit theme button now appears on each schedule item\r\n  * New feature - Countdown timers\r\n  * New feature - MediaShout importer\r\n  * Bugfix - Quick Edit now works properly\r\n  * Bugfix - FX UI element labels are now translated (such as colours)\r\n  * Bugfix - Translations now show properly when section headings are used\r\n  * Bugfix - Quelea no longer locks up when copying a video background\r\n  * Bugfix - window now remembers maximised state\r\n  * Bugfix - Memory leaks fixed\r\n  * Bugfix - Fix handling of bibles with missing verses\r\n  * Bugfix - DVDs and Blurays now work\r\n  * Bugfix = Youtube videos are now saved in schedules properly\r\n  * Bugfix - Fixed issue with small text not having a shadow\r\n  * Bugfix - Creating a new schedule clears the file (so that \"save\" will then not save over the previously open schedule.)\r\n  * Bugfix - Chord lines are no longer affected by the auto-translator\r\n  * Bugfix - Partial translations now display properly\r\n  * Bugfix - Video playback now works properly on OSX\r\n  * Various other minor bugfixes\r\n\r\n -- Michael Berry <michael@quelea.org>  Wednesday, 12 Jan 2015 00:00:00 +0000\r\n"
  },
  {
    "path": "Quelea/changelogs/changelog-2015.1.txt",
    "content": "quelea (2015.1) stable; urgency=normal\r\n \r\n  * Fix clear / logo / black screen crash (Bundled with 8u40 on Windows to fix memory issues related to Java bug - must be run with 8u40 for this to work on unbundled versions.)\r\n  * Fix video control display issues\r\n  * Fix issue with library bible panel never showing the last verse of a chapter\r\n  * Fix chord spacing when exporting to PDF\r\n  * Fix occasional NullPointerException when dragging\r\n  * Fix issue with reset video not being called on correct thread\r\n  * Fix issue with deleting a saved location folder causing a crash\r\n  * Fix issue with visual glitches in lyrics area\r\n  * Fix issue where right clicking on the schedule didn't always display the correct context menu\r\n  * Fix issue where copy / pasting lyrics from some websites / sources didn't split into sections correctly\r\n  * Fix issue with the colour / video / image dropdown list not always showing\r\n  * Add option to disable fading of lyrics on stage view\r\n\r\n -- Michael Berry <michael@quelea.org>  Wednesday, 25 Feb 2015 00:00:00 +0000\r\n"
  },
  {
    "path": "Quelea/changelogs/changelog-2015.2.txt",
    "content": "quelea (2015.2) stable; urgency=normal\r\n \r\n  * Update bundled JRE to final released copy (not EA)\r\n  * Added video library tab\r\n  * Added timer save functionality, and timer library tab\r\n  * Fix issue with some badly designed fonts not clearing properly\r\n  * EpicWorship songpack importer added\r\n  * Greater customisation options added for 'Small Text' (information) display\r\n  * Fix versioning issue (only the major version number was reported in some places)\r\n  * Fix bug with bible passages appearing on just one line in mobile lyrics view\r\n  * Update Easy Worship importer to preserve CCLI / copyright info\r\n  * Enable static video previews in live / preview panel\r\n  * Fix QSP / save files to now contain full song information (was missing some fields such as CCLI / Copyright / Key / Notes)\r\n  * Chord notation now accepts H, unicode sharp / flat signs and (is) in place of \"#\" (Josef's suggestion, conventionally used in some European countries)\r\n  * Translation now saved with song in schedule\r\n  * Fix Opensong importer (some databases with foreign characters did not work)\r\n\r\n -- Michael Berry <michael@quelea.org>  Wednesday, 25 April 2015 00:00:00 +0000\r\n"
  },
  {
    "path": "Quelea/changelogs/changelog-2015.3.txt",
    "content": "quelea (2015.3) stable; urgency=normal\r\n \r\n  * Add new Spanish and Slovakian translations\r\n  * Add ability to change the percentage size of the small bible/song text \r\n  * Add ability to select overflow traversal through whole schedule using up/down keys\r\n  * Add more features to Remote Control, include schedule list and add bible or song\r\n  * Add ability to display multiple chapter/verses from the same bible book on a single slide using a comma\r\n  * IPv6 addresses only show as a last resort\r\n  * Top / Bottom for notices now the correct way around\r\n  * Auto-play now works\r\n  * Improve bible passage text layout\r\n  * Add songpro importer\r\n  * Add SoF importer\r\n  * Kingsway importer now pulls translations out and adds them to the imported song correctly\r\n  * Additional Remote Control features for use in Quelea Android App\r\n  * Fix search behaviour to ignore non-alphanumeric characters in index and search string\r\n  * Fix long search time when searching for a non-indexed (non-alphanumeric) character\r\n  * Songs matching search in titles now appear before other results\r\n  * Option to use 12H or 12H clock\r\n  * Bible book selection box is now filterable with key presses\r\n  * Video tab can be shown in the library panel using an option in the settings\r\n  * Hovering over videos in the video library tab now shows a pop-up with filename\r\n  * Fix changing the bible passage theme by right clicking\r\n  * Fix \"switch versions\" functionality on bible passages\r\n  * Fix live videos restarting when song in schedule is edited\r\n  * Fix search index not working with non-ascii characters\r\n  * Fix behaviour where empty bible passages could be added to schedule\r\n  * Fix issue with schedule not opening when a presentation it refers to is missing.\r\n  * Fix issue with Quelea not loading if some songs in database are corrupted\r\n  * Fix Remote Control to work more reliably on Internet Explorer.\r\n  * Fix issue with using special XML characters in timer file names\r\n\r\n -- Michael Berry <michael@quelea.org>  Wednesday, 16 May 2015 00:00:00 +0000\r\n"
  },
  {
    "path": "Quelea/changelogs/changelog-2016.0.txt",
    "content": "quelea (2016.0) stable; urgency=normal\r\n \r\n  * Labelled text sections now appear in the Live and Preview Panels\r\n  * Bible passages can now be continued one verse at a time using '+' key\r\n  * Re-enabled option to select maximum number of bible verses per slide\r\n  * Use of numbers, 'c', 'b', 't' and 'p' keys to traverse live panel / text sections\r\n  * Editable bounds for lyrics to appear in (Advanced/Hidden feature)\r\n  * Variety of Mobile Lyrics and Remote Lyrics additions for Android app support\r\n  * Fixed Kingsway Import and provide support for US-based download.\r\n  * Audio recording functionality (experimental)\r\n  * Logo & Splashscreen update\r\n  * Updates to bible import (can now import more previously un-importable bibles)\r\n  * Bugfixes for edit song window\r\n  * Added recording ability (thanks Arvid!)\r\n  * Many other small bugfixes\r\n\r\n -- Michael Berry <michael@quelea.org>  Wednesday, 08 December 2015 00:00:00 +0000\r\n"
  },
  {
    "path": "Quelea/changelogs/changelog-2016.1.txt",
    "content": "quelea (2016.1) stable; urgency=normal\r\n \r\n  * Fix \"c\" selecting pre-chorus\r\n  * Add missing labels\r\n  * Fix recording level bar\r\n  * Add song select import options for copyright & key\r\n  * Fix keyboard shortcuts for presentations\r\n  * Fix record button behaviour when no recording device is found\r\n  * New options dialog layout\r\n  * Add support for controlling recordings through the apps\r\n  * Add support for jumping to a schedule item from the apps\r\n  * Fix remote control play/pause functionality for timers\r\n  * Fix Mac recording conversions\r\n  * Add CCLI number to SongSelectParser\r\n  * Fix vlc arg option splitting for absolute paths on windows\r\n  * Add presentation manager import\r\n  * Add mission praise import\r\n  * Add video psalm import\r\n  * Reorder import options to be alphabetical\r\n  * Fix Opensong import to recognise chords and section titles\r\n  * Fix missing required attributes for openlyrics export\r\n  * Add \"copy to schedule\" option\r\n  * Add Bulgarian translation\r\n\r\n -- Michael Berry <michael@quelea.org>  Sunday, 26 May 2016 00:00:00 +0000\r\n"
  },
  {
    "path": "Quelea/changelogs/changelog-2016.2.txt",
    "content": "quelea (2016.2) stable; urgency=normal\r\n \r\n  * Add support for displaying PDF\r\n  * Add planning centre online import\r\n  * Added FreeWorship import\r\n  * Add native PowerPoint support\r\n  * Aspect ratio fix\r\n  * Fix for the projector not opening with the correct size on Linux\r\n  * Add more remote functionality (move/remove schedule items, set/get theme)\r\n  * Update record icon\r\n  * Add option to adjust video volume\r\n  * Add elapsed and total time on video playback\r\n  * Fix canvas ratio to match projection window\r\n  * Add drag and drop support for presentations, PDF files, videos and images\r\n  * Merge add buttons to a drop-down menu\r\n  * Get song translations through Mobile Lyrics\r\n  * Add warning to save recording before exiting\r\n  * Add advanced option to automatically move projection window when new screens are connected\r\n  * Add Live Text feature to send non-projected text to Mobile Lyrics\r\n  * Add section title buttons to song dialog\r\n  * Add French translation\r\n  * Get presentation slide previews through Mobile Remote\r\n  * Add support for displaying websites\r\n  * Add support for displaying groups of images\r\n  * Fix import freeze when importing large presentations\r\n  * Added ability to change thumbnail size\r\n  * Add extended bible panel functionality and improved UI\r\n  * Fix bugs caused by passages imported from a schedule (not being able to switch translation nor extending the passage)\r\n  * Add support for audio files\r\n  * Added extra song title keywords \"interlude\" and \"ending\"\r\n  * Add basic support for undo/redo while editing songs\r\n  * Add right-click menu in song edit window with paste option\r\n  * Fix bug when trying to add a non-breaking line or a section title to a song with chords\r\n  * Fix Stage View alignment bug\r\n\r\n -- Michael Berry <michael@quelea.org>  Saturday, 15 Oct 2016 00:00:00 +0000\r\n"
  },
  {
    "path": "Quelea/changelogs/changelog-2017.0.txt",
    "content": "quelea (2017.0) stable; urgency=normal\r\n \r\n  * Add screenmonkey import\r\n  * Add separate 64 bit and 32 bit windows installer\r\n  * Disable Youtube button / menu item by default\r\n  * Improve startup time\r\n  * Fix memory issues caused by lots of videos in the video panel\r\n  * Fix planning centre online import when using folders\r\n  * Fix embedding of some file types in schedule\r\n  * Fix section titles not appearing in PDF export\r\n  * Fix scroll position of the lyrics area jumping around\r\n  * Fix windows asking twice about overwriting files\r\n  * Fix issue with non-ascii characters not being shown in PDF schedule export\r\n  * Fix undo bug\r\n  * Fix Openlyrics multiple titles\r\n  * Fix plain text importer encoding\r\n  * Fix VLC screen being displayed even when projector view turned off\r\n  * Add PDF & Image Group slide preview in Mobile Remote\r\n  * Added support for setting a time to countdown to in Timer dialog (##:##am/pm)\r\n  * Add Russian translation\r\n  * Fix video playback on Mac\r\n  * Fix PowerPoint loop bug\r\n  * Fix OpenOffice/LibreOffice support\r\n  * Fix Add menu closing bug\r\n  * Fix keyboard shortcuts after hiding text\r\n  \r\n\r\n -- Michael Berry <michael@quelea.org>  Wednesday, 08 Feb 2017 00:00:00 +0000\r\n"
  },
  {
    "path": "Quelea/changelogs/changelog-2017.1.txt",
    "content": "quelea (2017.1) stable; urgency=normal\r\n \r\n  * Fix bug with themes not saving\r\n  * Fix potential deadlock bug when editing a song as a video background is playing\r\n  * Fix focusing bug when video backgrounds are playing\r\n  \r\n\r\n -- Michael Berry <michael@quelea.org>  Wednesday, 06 Sep 2017 00:00:00 +0000\r\n"
  },
  {
    "path": "Quelea/changelogs/changelog-2018.0.txt",
    "content": "quelea (2018.0) stable; urgency=normal\r\n \r\n  * Fix bug with PDF export\r\n  * Fix remote mobile view HTML to be more accessible\r\n  * Ignore verses with invalid numbers rather than throwing an exception (it seems footnotes are sometimes specified with an invalid number)\r\n  * Fix bug with check duplicates feature\r\n  * Fix bug with translations not being included in schedule\r\n\r\n -- Michael Berry <michael@quelea.org>  Wednesday, 25 Nov 2017 00:00:00 +0000\r\n"
  },
  {
    "path": "Quelea/changelogs/changelog-2018.1.txt",
    "content": "quelea (2018.1) stable; urgency=normal\r\n \r\n  * Fix bug with Sunday Plus importer\r\n  * Fix bug with VideoPsalm importer\r\n  * Fix bug with OpenSong importer only showing one song when exported on Mac\r\n  * Fix Java 9 compatibility\r\n  * Fix \"is\" being recognised as chords\r\n  * Fix resize bug on some Linux distributions\r\n  * Fix VLC bug in Linux\r\n  * Fix drag / drop bug in Linux\r\n  * Fix EasyWorship parser to use CP1252\r\n  * Fix freeze on some OS's when opening help menu websites\r\n  * Fix deb installer icon\r\n  * FIx issue with loading bibles on Ubuntu\r\n  * Use new logo in about dialog\r\n  * Don't show option to add DVD on a Mac\r\n  * Add ctrl+click option to set logo image on Mac\r\n  * Add Worship Him importer\r\n\r\n -- Michael Berry <michael@quelea.org>  Tuesday, 22 May 2018 00:00:00 +0000\r\n"
  },
  {
    "path": "Quelea/changelogs/changelog-2019.0.txt",
    "content": "quelea (2019.0) stable\n \n  * Display warning if items are skipped when parsing schedule\n  * Display CCLI number in schedule PDF export\n  * Removed paradox requirement when importing Easyworship databases\n  * Format song list in accordance with search\n  * Display preview of song in song list\n  * Remove schedule email functionality\n  * Add support for extended chord symbols\n  * Add support for extra tags in plain text parser\n  * Add support for looping a video\n  * Add scrollbar to global themes panel\n  * Add options to manage notices\n  * Allow setting of different global themes for songs and bible passages\n  * Allow a custom theme set on a song to override a global theme\n  * Allow a global theme to be used as the basis for a custom theme on a schedule item\n  * Persist the global themes that are set between Quelea invocations\n  * Performance improvement when calculating universal font size\n  * Add dedicated Mac release\n  * Fix display of bible passages\n  * Fix bug with Java versions newer than 8 on MacOS\n  * Fix bug where missing media from one schedule item prevented all following items from loading\n  * Fix bug where spaces in first line of chords were removed\n  * Fix bug with chord alignment in songs\n  * Fix bug with Freeworship importer\n  * Fix bug with VideoPsalm importer\n  * Fix inconsistent behaviour when enabling copied schedule item\n  * Fix bug with incorrect theme appearing in theme edit dialog after opening a schedule\n  * Fix line spacing bug with importing some XMM based bibles\n  * Fix hue adjustment bug\n  * Fix broken links in help menu\n  * Fix bug with XML bible verses containing new lines\n  * Remove reference to manuals from help menu"
  },
  {
    "path": "Quelea/changelogs/changelog-2019.1.txt",
    "content": "quelea (2019.1) stable\n \n  * Fix icon for Mac releases\n  * Fix permission on Mac release\n  * Fix fop cache permissions on some systems\n  * Fix help links on Linux\n  * Search bibles & songs in diacritic-insensitive manner\n  * Change aspect ratio on global themes panel to 4:3 rather than square\n  * Fix PDF chord alignment for songs\n  * Add dark theme option\n  * Fix full screen issue on Mac\n  * Fix plain text parser to use file name as title if no title is given in document\n  * Fix OpenLyrics import to map section titles correctly\n  * Fix logo displaying state bug\n  * Add missing attributes for OpenLP databases\n  * Fix unreadable bible text bug on stage view\n  * Fix chord alignment for lines that had chords before the lyrics started\n  * Fix presentation scaling bug\n  * Fix transpose error for D#"
  },
  {
    "path": "Quelea/changelogs/changelog-2020.0.txt",
    "content": "quelea (2020.0) stable\n \n  * Fix Openlyrics import when more than one \"lines\" tag specified per verse\n  * New options dialog\n  * Remove USR songselect import (USR files no longer offered)\n  * Add Propresenter import (4, 5 and 6 supported at present)\n  * Add ability to export song list\n  * Fix title bug on plain text import song that only contain one section\n  * Add ability for importers to use zip file or regular file\n  * Fix importers to accept windows-encoded zip files\n  * Fix export to PDF fonts issues (# instead of some characters)\n  * Fix non-Latin and accented character input for song lyrics on Linux systems\n  * Increase maximum thumbnail preview size from 500 to 1000\n  * Update \"Support / Discussion\" link from the previous Quelea Google Group to the current Quelea Community\n  * Fix wrapping bug for Bible passages and other single-line sections in the selection lists\n  * Update SoF parser to work with SoF 6\n  * Fix planning center integration\n  * Add support for setting a song sequence\n  * Add an indicator for the item that currently is live\n  * Add option to use a fade transition between text items"
  },
  {
    "path": "Quelea/changelogs/changelog-2021.0.txt",
    "content": "quelea (2021.0) stable\n \n  * Fix \"schedule cannot be opened\" issue on Mac\n  * Fix bible passages on stage display sometimes having a very small font size\n  * Fix bible passages on web display sometimes having a very small font size\n  * Fix Mac crash when switching windows whilst dialog windows were open\n  * Church CCLI num can now be specified in options dialog\n  * Support OSIS XML bible format\n  * Song list export now also includes song CCLI number (where specified)\n  * Add option to move preview and live panel dividers independently\n  * Add ability to hide stage clock\n  * Scale maximum font size on preview/live to more accurately represent projection window\n  * Add customisable shortcuts option\n  * Fix bug with visibility of timer dialog in dark mode\n  * Fix bug with quick edit\n  * Fix issue with image name conflict when saving / opening a schedule\n  * Add support for Beblia XML bibles\n  * Add support for 66 book bibles without explicit book names\n  * Auto-detect charsets for bible & song imports\n  * Add option to have background colour around text"
  },
  {
    "path": "Quelea/changelogs/changelog-2022.0.txt",
    "content": "quelea (2022.0) stable\n\n  * Upgrade to Java 11 / OpenJFX 17 as base\n  * Implement global default translation option\n  * Bugfix: Resources with the same name in different folders no longer clash\n  * Bugfix: Schedules containing verses from Revelation no longer break\n  * Bugfix: Corrupt bibles now show a sensible error message when they're imported\n  * Bugfix: Preview pane now refreshes between previewing database songs and schedule songs\n  * Bugfix: OpenLyrics importer now read verse order/sequence.\n  * Bugfix: Corrupt schedule warning sometimes thrown with schedules containing powerpoint presentations\n  * Bugfix: Quelea song packs now export song sequences correctly\n  * Feature: Register global open file handler\n  * Feature: Videos now uncheck black / logo buttons when autoplayed\n  * Feature: CORS enabled on mobile lyrics endpoint so custom webpages can access lyric content\n  * Various code quality fixes courtesy of Hacktoberfest contributors - thanks to everyone who contributed!"
  },
  {
    "path": "Quelea/changelogs/changelog-2024.0.txt",
    "content": "quelea (2024.0) stable\n\n  * Migrate to GStreamer for video playback\n  * Videos can now be played in preview windows\n  * Video backgrounds now animate in preview windows\n  * Include all item types in printed order of service schedule\n  * Allow renaming of image group\n  * Videos can now be dragged onto a schedule like images\n  * Song information can now be shown on first, last or all slides\n  * Prevent blacked stage view option\n  * Regression: VLCARG files will no longer work (afraid this is a necessary casualty of moving to GStreamer)\n  * Logo display now supports video files\n  * Unsupported videos now have clear unsupported preview image\n  * Allow multiple selection in song database\n  * Critical fix: Using the French language no longer crashes Quelea when opening the options dialog\n  * Various minor bugfixes"
  },
  {
    "path": "Quelea/changelogs/changelog-2026.0.txt",
    "content": "quelea (2024.1) stable\n\n  * Upgrade to Java25 and OpenJFX 25\n  * Default translations now used when adding song via server\n  * Support for bible book names in chapters in Zefania XML import\n  * Fix UTF-8 filename issue with snap build\n  * Fix issue with positions being wrong when dragging items in schedule\n  * Various minor bugfixes"
  },
  {
    "path": "Quelea/database/quelea.properties",
    "content": "#HSQL Database Engine 2.0.0\r\n#Fri Jan 14 01:21:38 GMT 2011\r\nversion=2.0.0\r\nmodified=yes\r\n"
  },
  {
    "path": "Quelea/database/quelea.script",
    "content": "SET DATABASE UNIQUE NAME HSQLDB2BC6AE872C\r\nSET DATABASE GC 0\r\nSET DATABASE DEFAULT RESULT MEMORY ROWS 0\r\nSET DATABASE EVENT LOG LEVEL 0\r\nSET DATABASE SQL NAMES FALSE\r\nSET DATABASE SQL REFERENCES FALSE\r\nSET DATABASE SQL SIZE TRUE\r\nSET DATABASE SQL TYPES FALSE\r\nSET DATABASE SQL TDC DELETE TRUE\r\nSET DATABASE SQL TDC UPDATE TRUE\r\nSET DATABASE SQL TRANSLATE TTI TYPES TRUE\r\nSET DATABASE SQL CONCAT NULLS TRUE\r\nSET DATABASE SQL UNIQUE NULLS TRUE\r\nSET DATABASE SQL CONVERT TRUNCATE TRUE\r\nSET DATABASE TRANSACTION CONTROL LOCKS\r\nSET DATABASE DEFAULT ISOLATION LEVEL READ COMMITTED\r\nSET FILES WRITE DELAY 500 MILLIS\r\nSET FILES BACKUP INCREMENT TRUE\r\nSET FILES CACHE SIZE 10000\r\nSET FILES CACHE ROWS 50000\r\nSET FILES SCALE 8\r\nSET FILES LOB SCALE 32\r\nSET FILES DEFRAG 20\r\nSET FILES NIO TRUE\r\nSET FILES NIO SIZE 256\r\nSET FILES LOG TRUE\r\nSET FILES LOG SIZE 50\r\nSET DATABASE TEXT TABLE DEFAULTS ''\r\nCREATE USER \"\" PASSWORD ''\r\nCREATE SCHEMA PUBLIC AUTHORIZATION DBA\r\nSET SCHEMA PUBLIC\r\nCREATE MEMORY TABLE PUBLIC.SONGS(ID INTEGER GENERATED BY DEFAULT AS IDENTITY(START WITH 0) NOT NULL PRIMARY KEY,TITLE VARCHAR_IGNORECASE(256),AUTHOR VARCHAR_IGNORECASE(256),LYRICS VARCHAR_IGNORECASE(2147483647),BACKGROUND VARCHAR(256))\r\nALTER TABLE PUBLIC.SONGS ALTER COLUMN ID RESTART WITH 45\r\nALTER SEQUENCE SYSTEM_LOBS.LOB_ID RESTART WITH 1\r\nSET DATABASE DEFAULT INITIAL SCHEMA PUBLIC\r\nGRANT USAGE ON DOMAIN INFORMATION_SCHEMA.YES_OR_NO TO PUBLIC\r\nGRANT USAGE ON DOMAIN INFORMATION_SCHEMA.TIME_STAMP TO PUBLIC\r\nGRANT USAGE ON DOMAIN INFORMATION_SCHEMA.CARDINAL_NUMBER TO PUBLIC\r\nGRANT USAGE ON DOMAIN INFORMATION_SCHEMA.CHARACTER_DATA TO PUBLIC\r\nGRANT USAGE ON DOMAIN INFORMATION_SCHEMA.SQL_IDENTIFIER TO PUBLIC\r\nGRANT DBA TO \"\"\r\nSET SCHEMA SYSTEM_LOBS\r\nINSERT INTO BLOCKS VALUES(0,2147483647,0)\r\nSET SCHEMA PUBLIC\r\nINSERT INTO SONGS VALUES(29,'Amazing Grace','John Newton','Verse 1\\u000aAmazing grace! How sweet the sound\\u000aThat saved a wretch like me!\\u000aI once was lost, but now am found;\\u000aWas blind, but now I see.\\u000a\\u000aVerse 2\\u000a\\u2019Twas grace that taught my heart to fear,\\u000aAnd grace my fears relieved;\\u000aHow precious did that grace appear\\u000aThe hour I first believed!\\u000a\\u000aVerse 3\\u000aThrough many dangers, toils and snares,\\u000aI have already come;\\u000a\\u2019Tis grace hath brought me safe thus far,\\u000aAnd grace will lead me home.\\u000a\\u000aVerse 4\\u000aThe Lord has promised good to me,\\u000aHis Word my hope secures;\\u000aHe will my Shield and Portion be,\\u000aAs long as life endures.\\u000a\\u000aVerse 5\\u000aYea, when this flesh and heart shall fail,\\u000aAnd mortal life shall cease,\\u000aI shall possess, within the veil,\\u000aA life of joy and peace.\\u000a\\u000aVerse 6\\u000aThe earth shall soon dissolve like snow,\\u000aThe sun forbear to shine;\\u000aBut God, Who called me here below,\\u000aWill be forever mine.\\u000a\\u000aVerse 7\\u000aWhen we\\u2019ve been there ten thousand years,\\u000aBright shining as the sun,\\u000aWe\\u2019ve no less days to sing God\\u2019s praise\\u000aThan when we\\u2019d first begun.','fontname:Arial$fontbold:true$fontitalic:false$fontcolour:java.awt.Color[r=255,g=255,b=255]$backgroundcolour:java.awt.Color[r=0,g=0,b=0]')\r\nINSERT INTO SONGS VALUES(30,'I surrender all','Judson W. Van DeVenter, Winfield S. Weeden','Verse 1\\u000aAll to Jesus, I surrender,\\u000aAll to Him I freely give\\u000aI will ever love & serve Him\\u000aIn His presence, daily live.\\u000a\\u000aChorus\\u000aI surrender all, I surrender all, \\u000aAll to Thee, my blessed Saviour, I surrender all\\u000a\\u000aVerse 2\\u000aAll to Jesus, I surrender\\u000aHumbly at his feet I bow,\\u000aWorldly pleasures all forsaken\\u000aTake me Jesus, take me now','fontname:Arial$fontbold:true$fontitalic:false$fontcolour:java.awt.Color[r=255,g=255,b=255]$backgroundcolour:java.awt.Color[r=0,g=0,b=0]')\r\nINSERT INTO SONGS VALUES(31,'Be thou my vision','Dallan Forgail','Verse 1\\u000aBe Thou my Vision, O Lord of my heart;\\u000aNaught be all else to me, save that Thou art\\u000aThou my best Thought, by day or by night,\\u000aWaking or sleeping, Thy presence my light. \\u000a\\u000aVerse 2\\u000aBe Thou my Wisdom, and Thou my true Word;\\u000aI ever with Thee and Thou with me, Lord;\\u000aThou my great Father, I Thy true son;\\u000aThou in me dwelling, and I with Thee one.\\u000a\\u000aVerse 3\\u000aBe Thou my battle Shield, Sword for the fight;\\u000aBe Thou my Dignity, Thou my Delight;\\u000aThou my soul\\u2019s Shelter, Thou my high Tower:\\u000aRaise Thou me heavenward, O Power of my power.\\u000a\\u000aVerse 4\\u000aRiches I heed not, nor man\\u2019s empty praise,\\u000aThou mine Inheritance, now and always:\\u000aThou and Thou only, first in my heart,\\u000aHigh King of Heaven, my Treasure Thou art.\\u000a\\u000aVerse 4\\u000aHigh King of Heaven, my victory won,\\u000aMay I reach Heaven\\u2019s joys, O bright Heaven\\u2019s Sun!\\u000aHeart of my own heart, whatever befall,\\u000aStill be my Vision, O Ruler of all.','fontname:Arial$fontbold:true$fontitalic:false$fontcolour:java.awt.Color[r=255,g=255,b=255]$backgroundcolour:java.awt.Color[r=0,g=0,b=0]')\r\nINSERT INTO SONGS VALUES(32,'Jesus Lover of my soul','Traditional','Verse 1\\u000aJesus, lover of my soul, let me to Thy bosom fly,\\u000aWhile the nearer waters roll, while the tempest still is high.\\u000aHide me, O my Saviour, hide, till the storm of life is past;\\u000aSafe into the haven guide; O receive my soul at last.\\u000a\\u000aVerse 2\\u000aOther refuge have I none, hangs my helpless soul on Thee;\\u000aLeave, ah! leave me not alone, still support and comfort me.\\u000aAll my trust on Thee is stayed, all my help from Thee I bring;\\u000aCover my defenseless head with the shadow of Thy wing.\\u000a\\u000aVerse 3\\u000aWilt Thou not regard my call? Wilt Thou not accept my prayer?\\u000aLo! I sink, I faint, I fall - Lo! on Thee I cast my care;\\u000aReach me out Thy gracious hand! While I of Thy strength receive,\\u000aHoping against hope I stand, dying, and behold, I live.\\u000a\\u000aVerse 4\\u000aThou, O Christ, art all I want, more than all in Thee I find;\\u000aRaise the fallen, cheer the faint, heal the sick, and lead the blind.\\u000aJust and holy is Thy Name, I am all unrighteousness;\\u000aFalse and full of sin I am; Thou art full of truth and grace.\\u000a\\u000aVerse 5\\u000aPlenteous grace with Thee is found, grace to cover all my sin;\\u000aLet the healing streams abound; make and keep me pure within.\\u000aThou of life the fountain art, freely let me take of Thee;\\u000aSpring Thou up within my heart; rise to all eternity.','fontname:Arial$fontbold:true$fontitalic:false$fontcolour:java.awt.Color[r=255,g=255,b=255]$backgroundcolour:java.awt.Color[r=0,g=0,b=0]')\r\nINSERT INTO SONGS VALUES(33,'The Lord''s my Shepherd (Psalm 23)','Traditional','Verse 1\\u000aThe Lord''s my shepherd, I''ll not want;\\u000aHe makes me down to lie\\u000aIn pastures green; he leadeth me\\u000aThe quiet waters by.\\u000a\\u000aVerse 2\\u000aMy soul he doth restore again,\\u000aAnd me to walk doth make\\u000aWithin the paths of righteousness,\\u000aE''en for his own name''s sake.\\u000a\\u000aVerse 3\\u000aYea, though I walk in death''s dark vale,\\u000aYet will I fear no ill:\\u000aFor thou art with me, and thy rod\\u000aAnd staff me comfort still.\\u000a\\u000aVerse 4\\u000aMy table thou hast furnished\\u000aIn prsence of my foes;\\u000aMy head thou dost with oil anoint\\u000aAnd my cup overflows.\\u000a\\u000aVerse 5\\u000aGoodness and mercy all my life\\u000aShall surely follow me;\\u000aAnd in God''s house for evermore\\u000aMy dwelling-place shall be.','fontname:Arial$fontbold:true$fontitalic:false$fontcolour:java.awt.Color[r=255,g=255,b=255]$backgroundcolour:java.awt.Color[r=0,g=0,b=0]')\r\nINSERT INTO SONGS VALUES(34,'Rock of Ages','Traditional','Verse 1\\u000aRock of Ages, cleft for me,\\u000aLet me hide myself in Thee;\\u000aLet the water and the blood,\\u000aFrom Thy wounded side which flowed,\\u000aBe of sin the double cure;\\u000aSave from wrath and make me pure.\\u000a\\u000aVerse 2\\u000aNot the labor of my hands\\u000aCan fulfill Thy law\\u2019s demands;\\u000aCould my zeal no respite know,\\u000aCould my tears forever flow,\\u000aAll for sin could not atone;\\u000aThou must save, and Thou alone.\\u000a\\u000aVerse 3\\u000aNothing in my hand I bring,\\u000aSimply to the cross I cling;\\u000aNaked, come to Thee for dress;\\u000aHelpless look to Thee for grace;\\u000aFoul, I to the fountain fly;\\u000aWash me, Savior, or I die.\\u000a\\u000aVerse 4\\u000aWhile I draw this fleeting breath,\\u000aWhen mine eyes shall close in death,\\u000aWhen I soar to worlds unknown,\\u000aSee Thee on Thy judgment throne,\\u000aRock of Ages, cleft for me,\\u000aLet me hide myself in Thee.','fontname:Arial$fontbold:true$fontitalic:false$fontcolour:java.awt.Color[r=255,g=255,b=255]$backgroundcolour:java.awt.Color[r=0,g=0,b=0]')\r\nINSERT INTO SONGS VALUES(35,'All things bright and beautiful','Traditional','Chorus\\u000aAll things bright and beautiful,\\u000aAll creatures great and small,\\u000aAll things wise and wonderful,\\u000aThe Lord God made them all. \\u000a\\u000aVerse 1\\u000aEach little flower that opens,\\u000aEach little bird that sings,\\u000aHe made their glowing colours,\\u000aHe made their tiny wings.\\u000a\\u000aVerse 2\\u000aThe purple-headed mountain,\\u000aThe river running by,\\u000aThe sunset and the morning,\\u000aThat brightens up the sky;\\u000a\\u000aVerse 3\\u000aThe cold wind in the winter,\\u000aThe pleasant summer sun,\\u000aThe ripe fruits in the garden,\\u000aHe made them every one;\\u000a\\u000aVerse 4\\u000aThe tall trees in the greenwood,\\u000aThe meadows for our play,\\u000aThe rushes by the water,\\u000aTo gather every day;\\u000a\\u000aVerse 5\\u000aHe gave us eyes to see them,\\u000aAnd lips that we might tell\\u000aHow great is God Almighty,\\u000aWho has made all things well.','fontname:Arial$fontbold:true$fontitalic:false$fontcolour:java.awt.Color[r=255,g=255,b=255]$backgroundcolour:java.awt.Color[r=0,g=0,b=0]')\r\n"
  },
  {
    "path": "Quelea/dictionaries/cs.words",
    "content": "﻿a\r\náách\r\nabakus\r\nabakusový\r\nabandonování\r\nabandonovaný\r\nabandonovat\r\nabatyše\r\nabatyšin\r\nabazština\r\nabbé\r\nabbéech\r\nabbého\r\nabbém\r\nabbému\r\nabbéové\r\nabbéů\r\nabbéům\r\nabbéův\r\nabbéy\r\nabdikace\r\nabdikační\r\nabdikování\r\nabdikovaný\r\nabdikovat\r\nabdikující\r\nabdominální\r\nabdukce\r\nabdukční\r\nAbeba\r\nabeceda\r\nabecední\r\nAbeggův\r\nabelovský\r\nÁbel\r\nÁbelův\r\naberace\r\naberační\r\nAberdeen\r\nabertamský\r\nAbertamy\r\nabhomotopický\r\nabhomotopie\r\nAbcházcův\r\nAbcházčin\r\nAbcházec\r\nAbcházie\r\nAbcházka\r\nabchazský\r\nabcházština\r\nAbidjan\r\nabidjanský\r\nAbidžan\r\nabidžanský\r\nabiotický\r\nabiturientčin\r\nabiturientka\r\nabiturient\r\nabiturientský\r\nabiturientův\r\nablace\r\nablační\r\nablativ\r\nablativní\r\nabnormalita\r\nabnormálnější\r\nabnormální\r\nabnormita\r\nabnormní\r\nabolice\r\nabolicionismus\r\nabolicionista\r\nabolicionistčin\r\nabolicionistický\r\nabolicionistka\r\nabolicionistův\r\naboliční\r\nabonentčin\r\nabonentka\r\nabonentní\r\nabonent\r\nabonentský\r\nabonentův\r\nabonmá\r\nabonovaný\r\nabonovat\r\nabortivní\r\nabortivum\r\nAbrahamová\r\nAbrahámová\r\nabrahámoviny\r\nAbraham\r\nAbrahám\r\nAbrahamův\r\nAbrahámův\r\nabrasivní\r\nabraze\r\nabrazivní\r\nabrazivo\r\nabrazivum\r\nabrazní\r\nabreviace\r\nAbrhámová\r\nAbrhám\r\nAbrhámův\r\nabruptní\r\nabsces\r\nabsence\r\nabsenční\r\nabsentér\r\nabsentérský\r\nabsentérství\r\nabsentérův\r\nabsentismus\r\nabsentistický\r\nabsentování\r\nabsentovaný\r\nabsentovat\r\nabsentující\r\nabsint\r\nabsinth\r\nabsintový\r\nAbsolonová\r\nAbsolon\r\nAbsolonův\r\nabsolutismus\r\nabsolutista\r\nabsolutistčin\r\nabsolutistický\r\nabsolutističtější\r\nabsolutistka\r\nabsolutistův\r\nabsolutiv\r\nabsolutizace\r\nabsolutizování\r\nabsolutizovaný\r\nabsolutizovat\r\nabsolutizující\r\nabsolutní\r\nabsolutno\r\nabsolutorium\r\nabsolventčin\r\nabsolventka\r\nabsolvent\r\nabsolventský\r\nabsolventův\r\nabsolvování\r\nabsolvovaný\r\nabsolvovat\r\nabsolvující\r\nabsorbent\r\nabsorbér\r\nabsorbování\r\nabsorbování\r\nabsorbovaný\r\nabsorbovat\r\nabsorbovatelnější\r\nabsorbovávání\r\nabsorbovávaný\r\nabsorbovávat\r\nabsorbující\r\nabsorpce\r\nabsorpční\r\nabsorptivita\r\nabsťák\r\nabstence\r\nabstenování\r\nabstenovat\r\nabstinence\r\nabstinenční\r\nabstinentčin\r\nabstinentka\r\nabstinentní\r\nabstinent\r\nabstinentský\r\nabstinentův\r\nabstinování\r\nabstinovat\r\nabstinující\r\nabstrahování\r\nabstrahovaný\r\nabstrahovat\r\nabstrahující\r\nabstrakce\r\nabstrakcionismus\r\nabstrakční\r\nabstrakt\r\nabstraktivismus\r\nabstraktivistický\r\nabstraktnější\r\nabstraktní\r\nabstraktový\r\nabstraktum\r\nabsurdita\r\nabsurdnější\r\nabsurdní\r\nabsurdno\r\nabsurdum\r\nAbú\r\nabusus\r\nabúzabský\r\nabúzus\r\naby\r\nabych\r\nabychom\r\nabys\r\nabyste\r\nAC\r\nAcademia\r\naccelerando\r\naccentato\r\nacentrický\r\nacentričtější\r\nacesulfam\r\nacetaldehyd\r\nacetal\r\nacetamid\r\nacetanhydrid\r\nacetát\r\nacetátový\r\nacetolýza\r\naceton\r\nacetonchlorid\r\nacetonitril\r\nacetonový\r\nacetonsulfit\r\nacetylcelulóza\r\nacetylen\r\nacetylén\r\nacetylenový\r\nacetylénový\r\nacetylglukozaminidáza\r\nacetyl\r\nacetylchlorid\r\nacetylcholin\r\nacetylcholinový\r\nacetylovaný\r\nacetylperoxyd\r\nacetylsalicylový\r\nacetylvinný\r\nacidifikace\r\nacidifikovaný\r\nacidita\r\nacidobasický\r\nacidobazický\r\nacidofilnější\r\nacidofilní\r\nAcidotechna\r\nacidóza\r\nAckermannová\r\nAckermann\r\nAckermannův\r\nAconcagua\r\naconcagujský\r\nacyklický\r\nacylpirin\r\nacylpyrin\r\nacylpyrín\r\nač\r\načkoli\r\načkoliv\r\náčko\r\náčkový\r\načli\r\nAD\r\nad\r\nadaggietto\r\nadagio\r\nadamanský\r\nadamant\r\nAdamcová\r\nAdamcův\r\nAdamčíková\r\nAdamčík\r\nAdamčíkův\r\nAdamec\r\nAdámek\r\nAdamíček\r\nAdamíčko\r\nAdamíčková\r\nAdamíčkův\r\nAdamíková\r\nAdamík\r\nAdamíkův\r\nAdamíra\r\nAdamírová\r\nAdamírův\r\nadamita\r\nadamitství\r\nadamitův\r\nAdámková\r\nAdámkův\r\nAdamová\r\nAdamovičová\r\nAdamovič\r\nAdamovičův\r\nAdamov\r\nAdamovský\r\nadamovský\r\nAdam\r\nAdamstown\r\nAdams\r\nAdamsův\r\nAdamusová\r\nAdamus\r\nAdamusův\r\nAdamův\r\nadaptabilita\r\nadaptabilnější\r\nadaptabilní\r\nadaptace\r\nadaptační\r\nadaptér\r\nadaptérový\r\nadaptivní\r\nadaptování\r\nadaptovaný\r\nadaptovaný\r\nadaptovat\r\nadaptovatelnější\r\nadaptovatelný\r\nadaptovávání\r\nadaptovávaný\r\nadaptovávat\r\nadaptující\r\nAddis\r\naddisabebský\r\nadekvace\r\nadekvační\r\nadekvátnější\r\nadekvátní\r\nAdelaide\r\nadelaidský\r\nAdéla\r\nAdélčin\r\nAdélin\r\nAdélka\r\nAden\r\nadenin\r\nadeninový\r\nadenoidní\r\nadenosindifosfát\r\nadenosinfosfát\r\nadenosin\r\nadenosinmonofosfát\r\nadenosintrifosfatáza\r\nadenosintrifosfát\r\nadenovirus\r\nadenozin\r\nadenský\r\nadenylátcykláza\r\nAdéová\r\nadeptčin\r\nadeptka\r\nadept\r\nadeptův\r\nAdé\r\nAdéův\r\nadherentní\r\nadhesivní\r\nadheze\r\nadhezivita\r\nadhezivní\r\nadhezivum\r\nadhezní\r\nadiabatický\r\nadice\r\nadiční\r\nadié\r\nadipan\r\nadipový\r\naditivace\r\naditivita\r\naditivní\r\naditivovaný\r\naditivum\r\nAdiže\r\nadižský\r\nadj\r\nadjektivizace\r\nadjektivní\r\nadjektivum\r\nadjungovaný\r\nadjunkce\r\nadjunkt\r\nadjunktův\r\nadjustace\r\nadjustování\r\nadjustovaný\r\nadjustovat\r\nAdlerová\r\nAdler\r\nAdlerův\r\nadministrace\r\nadministrační\r\nadministrativa\r\nadministrativnější\r\nadministrativní\r\nadministrátorčin\r\nadministrátorka\r\nadministrátor\r\nadministrátorský\r\nadministrátorův\r\nadministrování\r\nadministrovaný\r\nadministrovat\r\nadmiralita\r\nadmiralitní\r\nadmirál\r\nadmirálský\r\nadmirálštější\r\nadmirálův\r\nAdobe\r\nadolescence\r\nadolescentčin\r\nadolescentka\r\nadolescentní\r\nadolescent\r\nadolescentův\r\nAdolf\r\nAdolfův\r\nadopce\r\nadopční\r\nadoptivní\r\nadoptování\r\nadoptovaný\r\nadoptovat\r\nadoptovávání\r\nadoptovávaný\r\nadoptovávat\r\nadorace\r\nadorační\r\nadorování\r\nadorovaný\r\nadorovat\r\nadorující\r\nadrenalin\r\nadrenalinový\r\nadrenalínový\r\nadrenergní\r\nadresace\r\nadresační\r\nadresářový\r\nadresář\r\nadresátčin\r\nadresátka\r\nadresát\r\nadresátův\r\nadresa\r\nadresnější\r\nadresní\r\nadresný\r\nadresovací\r\nadresování\r\nadresovaný\r\nadresovaný\r\nadresovat\r\nadresovatelný\r\nadresovávání\r\nadresovávaný\r\nadresovávat\r\nadresový\r\nadresující\r\nAdriana\r\nAdrianin\r\nadriatický\r\nAdria\r\nAdriena\r\nAdrienin\r\nAdrie\r\nAdršpach\r\nAdršpašsko\r\nadršpašský\r\nadsorbent\r\nadsorbování\r\nadsorbovaný\r\nadsorbovat\r\nadsorbovávání\r\nadsorbovávaný\r\nadsorbovávat\r\nadsorpce\r\nadsorpční\r\nadspekce\r\nadspekční\r\nadultní\r\nadultologický\r\nadultologie\r\nadultolog\r\nadultologův\r\nadultoložčin\r\nadultoložka\r\nadv\r\nadvent\r\nadventismus\r\nadventista\r\nadventistčin\r\nadventistický\r\nadventistka\r\nadventistův\r\nadventní\r\nadverbiální\r\nadverbium\r\nadvokacie\r\nadvokátčin\r\nadvokátka\r\nadvokátní\r\nadvokát\r\nadvokátský\r\nadvokátův\r\naerace\r\naerační\r\naerobic\r\naerobik\r\naerobní\r\naerodynamický\r\naerodynamičtější\r\naerodynamika\r\naerofyt\r\naerogel\r\naerogelový\r\naeroklub\r\naerolinie\r\naerolinka\r\naerologický\r\naerologie\r\naerolog\r\naerologův\r\naeroložčin\r\naeroložka\r\naeronautický\r\naeronautika\r\naeroplán\r\naeroplankton\r\naerosol\r\naerosolový\r\naerostatický\r\naerostatika\r\naerotaxi\r\naerovlek\r\naerovlekový\r\naesculetin\r\nafázie\r\nafaziologický\r\nafaziologie\r\nafaziolog\r\nafaziologův\r\nafazioložčin\r\nafazioložka\r\nafekce\r\nafekční\r\nafekt\r\nafektivita\r\nafektivnější\r\nafektivní\r\nafektování\r\nafektovaný\r\nafektovat\r\nafektový\r\nafentace\r\nafentivnější\r\nafentivní\r\naféra\r\naférka\r\naférový\r\naffetuoso\r\nAfgáncův\r\nAfgánčin\r\nAfgánec\r\nAfganistan\r\nAfgánka\r\nafgánský\r\nafgánština\r\nAfgháncův\r\nAfghánčin\r\nAfghánec\r\nAfghánistán\r\nAfghánka\r\nafghánský\r\nafghánština\r\nafilace\r\nafilační\r\nafilozofičtější\r\nafinát\r\nafingující\r\nafinita\r\nafinní\r\nafirmace\r\nafirmační\r\nafirmování\r\nafirmovaný\r\nafirmovat\r\nafišista\r\nafišistčin\r\nafišistka\r\nafišistův\r\nafix\r\nafixový\r\nAFL\r\nafonie\r\naforismus\r\naforista\r\naforistčin\r\naforistický\r\naforistka\r\naforistův\r\nAFP\r\nafrický\r\nafričančin\r\nafričanka\r\nAfričan\r\nafričan\r\nAfričanův\r\nafričanův\r\nAfrikánčin\r\nafrikanista\r\nafrikanistčin\r\nafrikanističin\r\nafrikanistika\r\nafrikanistka\r\nafrikanistův\r\nAfrikánka\r\nafrikánský\r\nafrikánština\r\nafrikáta\r\nAfrika\r\nafroameričančin\r\nafroameričanka\r\nafroameričan\r\nafroameričanův\r\nafroameričtější\r\nafrocentrista\r\nafrocentristčin\r\nafrocentristka\r\nafrocentristův\r\nafrodisiakum\r\nAfrodita\r\nAfroditin\r\nafrodiziakální\r\nafrodiziakum\r\naft\r\nAg\r\nagama\r\nagamí\r\nagar\r\nagarový\r\nAgáta\r\nAgatha\r\nAgátin\r\nagave\r\nagáve\r\nagenda\r\nagendový\r\nagens\r\nagentčin\r\nagentiv\r\nagentka\r\nagentomanie\r\nagent\r\nagentský\r\nagentura\r\nagenturní\r\nagentův\r\nAgfa\r\nagilita\r\nagilnější\r\nagilní\r\nagitace\r\nagitační\r\nagitato\r\nagitátorčin\r\nagitátorka\r\nagitátor\r\nagitátorův\r\nagitka\r\nagitování\r\nagitovaný\r\nagitovat\r\nagitující\r\naglomerace\r\naglomerační\r\naglomerát\r\naglomerování\r\naglomerovaný\r\naglomerovat\r\naglutinace\r\naglutinační\r\naglutinování\r\naglutinovaný\r\naglutinovat\r\nagmatit\r\nagmatitový\r\nagnesiánka\r\nAgneška\r\nagnosticismus\r\nagnosticistický\r\nagnostický\r\nagnostik\r\nagnostikův\r\nagogika\r\nagonický\r\nagonie\r\nagónie\r\nagonista\r\nagonistčin\r\nagonistka\r\nagonistův\r\nagonizující\r\nagorafobie\r\nagování\r\nagraciace\r\nagrafa\r\nagramatismus\r\nagrarismus\r\nagraristický\r\nagrárnice\r\nagrárnický\r\nagrárnický\r\nagrárnictví\r\nagrárničtější\r\nagrárník\r\nagrárníkův\r\nagrární\r\nagregace\r\nagregační\r\nagregát\r\nagregátní\r\nagregátový\r\nagregování\r\nagregovaný\r\nagregovat\r\nagregovatelný\r\nagregující\r\nagrese\r\nagresivita\r\nagresivnější\r\nagresívnější\r\nagresivní\r\nagresívní\r\nagresor\r\nagresorův\r\nagrobiologický\r\nagrobiologie\r\nagrobiolog\r\nagrobiologův\r\nagrobioložčin\r\nagrobioložka\r\nagrocenóza\r\nagroekologický\r\nagroekologie\r\nagroekolog\r\nagroekologův\r\nagroekoložčin\r\nagroekoložka\r\nagroekonomický\r\nagroekosystém\r\nagroenvironmentální\r\nagrofyzika\r\nagrochemický\r\nagrochemie\r\nagrochemikálie\r\nagrochemik\r\nagrochemikův\r\nagroklima\r\nagroklimatologický\r\nagroklimatologie\r\nagroklimatolog\r\nagroklimatologův\r\nagroklimatoložčin\r\nagroklimatoložka\r\nagrokombinát\r\nagrokomplex\r\nagrokultura\r\nagrometeorologický\r\nagrometeorologie\r\nagrometeorolog\r\nagrometeorologův\r\nagrometeoroložčin\r\nagrometeoroložka\r\nagromonetární\r\nagronomčin\r\nagronomický\r\nagronomie\r\nagronomka\r\nagronom\r\nagronomův\r\nAgroplast\r\nagropodnik\r\nagropotravinářský\r\nagroprostředí\r\nagroprůmysl\r\nAgrostav\r\nAgrostroj\r\nagrotechnický\r\nagrotechnika\r\nagroturistický\r\nagroturistika\r\nAgrozet\r\nah\r\naha\r\nahá\r\nahasverovský\r\nahasverský\r\nahistorický\r\nahistoričtější\r\nahistorismus\r\nahoj\r\nach\r\nách\r\nachát\r\nachátový\r\nAchilles\r\nachillovka\r\nAchillův\r\nachillův\r\nachilovka\r\nachjo\r\nachondrit\r\nachondritový\r\nachromatický\r\nachylóza\r\nAIDS\r\naids\r\naikidó\r\naiolský\r\nairbag\r\nAirbus\r\nAIT\r\naj\r\najatin\r\najatolláh\r\najatolláhův\r\nakácie\r\nakad\r\nakademický\r\nakademiččin\r\nakademička\r\nakademičtější\r\nakademie\r\nakademik\r\nakademikův\r\nakademismus\r\nakademizovaný\r\nakademizovat\r\nakademizující\r\nakadština\r\nakát\r\nakátový\r\nakcelerace\r\nakcelerační\r\nakcelerátor\r\nakcelerometr\r\nakcelerování\r\nakcelerovaný\r\nakcelerovat\r\nakcelerující\r\nakceneschopnější\r\nakceneschopný\r\nakcentace\r\nakcentační\r\nakcent\r\nakcentovanější\r\nakcentování\r\nakcentovaný\r\nakcentovat\r\nakcentovávání\r\nakcentovávaný\r\nakcentovávat\r\nakcentový\r\nakcentující\r\nakceptabilní\r\nakceptace\r\nakceptační\r\nakceptant\r\nakceptor\r\nakceptovanější\r\nakceptování\r\nakceptovaný\r\nakceptovat\r\nakceptovatelnější\r\nakceptovatelný\r\nakceptovávání\r\nakceptovávaný\r\nakceptovávat\r\nakceptující\r\nakceschopnější\r\nakceschopný\r\nakce\r\nakcidence\r\nakcidentál\r\nakcident\r\nakcie\r\nakcionářčin\r\nakcionářka\r\nakcionářský\r\nakcionář\r\nakcionářův\r\nakciovka\r\nakciový\r\nakčnější\r\nakční\r\nakkadština\r\naklamace\r\naklamační\r\naklamovanější\r\naklamování\r\naklamovaný\r\naklamovat\r\naklamovávání\r\naklamovávaný\r\naklamovávat\r\naklimatizace\r\naklimatizační\r\naklimatizování\r\naklimatizovaný\r\naklimatizovat\r\nakméismus\r\nakné\r\nakolyta\r\nakolytův\r\nakomodace\r\nakomodování\r\nakomodovaný\r\nakomodovat\r\nakonitát\r\nakontabilita\r\nakontace\r\nakorát\r\nakorátnější\r\nakordeon\r\nakordeonista\r\nakordeonistčin\r\nakordeonistka\r\nakordeonistův\r\nakord\r\nakordový\r\nakrece\r\nakreční\r\nakreditace\r\nakreditační\r\nakreditiv\r\nakreditivní\r\nakreditovanější\r\nakreditování\r\nakreditovaný\r\nakreditovat\r\nakreditovávání\r\nakreditovávaný\r\nakreditovávat\r\nakr\r\nakridin\r\nakridinový\r\nakrobacie\r\nakrobatčin\r\nakrobatický\r\nakrobatičtější\r\nakrobatka\r\nakrobat\r\nakrobatův\r\nakronym\r\nakrostich\r\nakrový\r\nakrylát\r\nakrylátový\r\nakryl\r\nakrylonitril\r\nakrylonitrilový\r\nakrylový\r\nAksakův\r\naksamit\r\naksamitový\r\nakta\r\naktant\r\naktérčin\r\naktérka\r\naktér\r\naktérův\r\nakt\r\naktinium\r\naktinobacilóza\r\naktinoid\r\naktinomykóza\r\naktivace\r\naktivační\r\naktivátor\r\naktivismus\r\naktivista\r\naktivistčin\r\naktivistický\r\naktivističtější\r\naktivistka\r\naktivistův\r\naktivita\r\naktivizace\r\naktivizační\r\naktivizování\r\naktivizovaný\r\naktivizovaný\r\naktivizovat\r\naktivizující\r\naktivnější\r\naktivní\r\naktivování\r\naktivovaný\r\naktivovat\r\naktivovatelnější\r\naktivovatelný\r\naktivující\r\naktivum\r\naktovčička\r\naktovka\r\naktový\r\naktualismus\r\naktualistický\r\naktualita\r\naktualizace\r\naktualizační\r\naktualizovanější\r\naktualizování\r\naktualizovaný\r\naktualizovat\r\naktualizovatelnější\r\naktualizovatelný\r\naktualizující\r\naktuálněčlenský\r\naktuálnější\r\naktuální\r\nakumulace\r\nakumulační\r\nakumulativní\r\nakumulátorek\r\nakumulátor\r\nakumulátorka\r\nakumulátorovna\r\nakumulátorový\r\nakumulování\r\nakumulovaný\r\nakumulovat\r\nakumulovávání\r\nakumulovávaný\r\nakumulovávat\r\nakumulující\r\nakupresura\r\nakupresurní\r\nakupunktura\r\nakupunkturista\r\nakupunkturistčin\r\nakupunkturistka\r\nakupunkturistův\r\nakupunkturní\r\nakurátnější\r\nakurátní\r\nakustický\r\nakustičtější\r\nakustika\r\nakutnější\r\nakutní\r\nakutol\r\nakuzativ\r\nakuzativní\r\nakvabela\r\nakvadukt\r\nakvakultura\r\nakvakulturní\r\nakvalung\r\nakvamarín\r\nakvamarínový\r\nakvarel\r\nakvarelista\r\nakvarelistčin\r\nakvarelistka\r\nakvarelistův\r\nakvarelka\r\nakvarelový\r\nakvarijní\r\nakváriový\r\nakvarista\r\nakvaristčin\r\nakvaristický\r\nakvaristika\r\nakvaristka\r\nakvaristův\r\nakvárium\r\nakvateraristika\r\nakvaterárium\r\nakvavit\r\nAkvinský\r\nakvizice\r\nakviziční\r\nakvizitorčin\r\nakvizitorka\r\nakvizitor\r\nakvizitorský\r\nakvizitorův\r\nAl\r\nAlabama\r\nalabamský\r\nalabastr\r\nalabastrovější\r\nalabastrový\r\nalaburka\r\nAladin\r\nAladinův\r\nAlamánie\r\nalanin\r\nAlan\r\nAlanův\r\nalarm\r\nalarmování\r\nalarmovaný\r\nalarmovat\r\nalarmující\r\nAlbáncův\r\nAlbánčin\r\nAlbánec\r\nAlbánie\r\nAlbánka\r\nalbánský\r\nalbánština\r\nalbatros\r\nalbatrosův\r\nalbedo\r\nAlbertek\r\nalbertinský\r\nAlbertkův\r\nAlbertová\r\nAlbert\r\nAlbertův\r\nAlbína\r\nAlbínin\r\nalbinismus\r\nalbinistický\r\nalbinoidní\r\nalbinotický\r\nalbín\r\nalbínův\r\nAlbion\r\nalbionský\r\nalbit\r\nalbitový\r\nAlbrechtice\r\nalbrechtický\r\nAlbrechtová\r\nAlbrecht\r\nAlbrechtův\r\nAlbrightová\r\nAlbright\r\nAlbrightův\r\nalbum\r\nalbumin\r\nalbum\r\nAlcor\r\nAlda\r\nAldebaran\r\naldehyd\r\naldehydický\r\naldehydový\r\naldosa\r\naldosteron\r\nAldringenový\r\nAldův\r\nale\r\nalegace\r\nalegorický\r\nalegoričtější\r\nalegorie\r\nalegorismus\r\nalegorizování\r\nalegorizovaný\r\nalegorizovat\r\nalegorizující\r\nalejový\r\nalej\r\nalela\r\naleluja\r\nAlena\r\nAlenčin\r\nAlenin\r\nAlenka\r\nalergen\r\nalergenní\r\nalergický\r\nalergiččin\r\nalergička\r\nalergičtější\r\nalergie\r\nalergik\r\nalergikův\r\nalergizace\r\nalergizovaný\r\nalergizovat\r\nalergizující\r\nalergizující\r\nalergologický\r\nalergologie\r\nalergolog\r\nalergologův\r\nalergoložčin\r\nalergoložka\r\nalespoň\r\nAlessandrie\r\nAlešová\r\nAleš\r\nAlešův\r\naleutský\r\naleutský\r\nAleuty\r\nAlexandra\r\nAlexandreida\r\nAlexandria\r\nAlexandrie\r\nalexandrijský\r\nalexandrin\r\nAlexandr\r\nAlexandrův\r\nAlexandřin\r\nAlexa\r\nAlexejevičová\r\nAlexejevič\r\nAlexejevičův\r\nAlexej\r\nAlexejův\r\nAlexiová\r\nAlexi\r\nAlexiův\r\nAlexová\r\nAlex\r\nAlexův\r\nalfabetický\r\nalfabetizace\r\nalfabetizační\r\nalfacelulóza\r\nalfanumerický\r\nalfatokoferol\r\nalfa\r\nAlfons\r\nAlfonsův\r\nAlfréd\r\nAlfrédův\r\nAlgava\r\nalgebraický\r\nalgebra\r\nalgebrogram\r\nalginát\r\nalginový\r\nAlgol\r\nalgologický\r\nalgologie\r\nalgolog\r\nalgologův\r\nalgoložčin\r\nalgoložka\r\nalgolský\r\nalgonkinský\r\nalgoritmický\r\nalgoritmizace\r\nalgoritmizátor\r\nalgoritmizátorův\r\nalgoritmizování\r\nalgoritmizovaný\r\nalgoritmizovat\r\nalgoritmus\r\nAlhambra\r\nalchymický\r\nalchymie\r\nalchymista\r\nalchymistčin\r\nalchymistický\r\nalchymistka\r\nalchymistův\r\naliance\r\nalianční\r\nalias\r\naliasing\r\nalibi\r\nalibismus\r\nalibista\r\nalibistčin\r\nalibistický\r\nalibistka\r\nalibistův\r\nAlice\r\nAlicin\r\nalicyklický\r\nalifatický\r\naligátorovitý\r\naligátor\r\naligátorův\r\naligátoří\r\nAlighieri\r\nAlighierův\r\nAlík\r\nAlíkův\r\nalikvotní\r\nalikvótní\r\nalimentární\r\nalimenty\r\nAlimovová\r\nAlimov\r\nAlimovův\r\naliterace\r\naliterační\r\naliturgický\r\nalizarinový\r\nAljaška\r\naljašský\r\nalkalicelulóza\r\nalkalický\r\nalkaličtější\r\nalkálie\r\nalkalita\r\nalkalizace\r\nalkalizovaný\r\nalkalizující\r\nalkaloid\r\nalkalóza\r\nalkan\r\nalka\r\nalken\r\nalkin\r\nalkohol\r\nalkoholický\r\nalkoholiččin\r\nalkoholička\r\nalkoholičtější\r\nalkoholik\r\nalkoholikův\r\nalkoholismus\r\nalkoholistický\r\nalkoholizování\r\nalkoholizovaný\r\nalkoholizovat\r\nalkoholizovávat\r\nalkoholizující\r\nalkoholometrický\r\nalkoholový\r\nalkoholýza\r\nalkoun\r\nalkounův\r\nalkovna\r\nalkylace\r\nalkylační\r\nalkylchlorid\r\nalkylový\r\nAlláh\r\nAlláhův\r\nallegretto\r\nallegro\r\nallogenní\r\nallografický\r\nallometrický\r\nallotransplantace\r\nAlmagest\r\nalmanach\r\nalmara\r\nalmárka\r\nalmuženka\r\nalmužna\r\nalmužnický\r\nalobal\r\nalobalový\r\naloe\r\nalogický\r\nalogismus\r\nAloisčin\r\nAloiska\r\nAlois\r\nAloisův\r\nAlojzov\r\nalojzovský\r\nalokace\r\nalokační\r\nalokátor\r\nalokování\r\nalokovaný\r\nalokovaný\r\nalokovat\r\nalokovávání\r\nalokovávaný\r\nalokovávat\r\nalokuce\r\nalokující\r\nalomorf\r\naloový\r\nalopatický\r\nalopecie\r\nalotrium\r\nalotropický\r\nalpaka\r\nalpakový\r\nalpa\r\nalpina\r\nalpinismus\r\nalpinista\r\nalpinistčin\r\nalpinistický\r\nalpinističin\r\nalpinistika\r\nalpinistka\r\nalpinistův\r\nalpinka\r\nalpínka\r\nalpínský\r\nalpínum\r\nalpský\r\nAlpy\r\nAlsasko\r\nalsaský\r\nAlše\r\nAlšem\r\nAlši\r\nAlších\r\nAlšová\r\nAlšové\r\nAlšovi\r\nAlšů\r\nAlšům\r\nAlšův\r\nAltaišský\r\naltajský\r\naltánek\r\naltán\r\naltánkový\r\naltánový\r\nAltaVista\r\nalterita\r\nalternace\r\nalternativa\r\nalternativista\r\nalternativistčin\r\nalternativistka\r\nalternativistův\r\nalternativní\r\nalternátor\r\nalternátorový\r\nalternování\r\nalternovaný\r\nalternovat\r\nalternující\r\nalterovaný\r\nalt\r\nAlthofen\r\naltimetr\r\naltimetrický\r\naltistčin\r\naltistka\r\nAltmanová\r\nAltman\r\nAltmanův\r\nAltová\r\naltový\r\nAlt\r\naltruismus\r\naltruista\r\naltruistčin\r\naltruistický\r\naltruističtější\r\naltruistka\r\naltruistův\r\naltsaxofon\r\naltsaxofonista\r\naltsaxofonistčin\r\naltsaxofonistka\r\naltsaxofonistův\r\naltsaxofonový\r\nAltstadt\r\nAltův\r\naludující\r\naluminiový\r\naluminium\r\naluminosilikát\r\naluminotermický\r\naluminotermie\r\nAluta\r\naluviální\r\naluze\r\nalveolární\r\nalveolus\r\nAlzheimer\r\nAlzheimerův\r\nAlžběta\r\nAlžbětinčin\r\nAlžbětinka\r\nalžbětinský\r\nAlžbětin\r\nAlžír\r\nAlžírsko\r\nalžírský\r\nalžírský\r\nAlžířančin\r\nAlžířanka\r\nAlžířan\r\nAlžířanův\r\namabile\r\nAmadeus\r\nAmadeův\r\nAmálčin\r\namalgamace\r\namalgamační\r\namalgamát\r\namalgam\r\namalgám\r\namalgamování\r\namalgamovaný\r\namalgamovat\r\namalgámový\r\namalgamový\r\namalgovací\r\namalgování\r\namalgovaný\r\namalgovat\r\nAmálie\r\nAmáliin\r\nAmálka\r\nAmanda\r\nAmandin\r\namara\r\namatérčin\r\namatérismus\r\namatérka\r\namatér\r\namatérský\r\namatérství\r\namatérštější\r\namatérův\r\nAmazonka\r\namazonka\r\namazonský\r\nambaláž\r\nambasáda\r\nambasador\r\nambasadorův\r\nambice\r\nambicioznější\r\nambicióznější\r\nambiciozní\r\nambiciózní\r\nambiguita\r\nambit\r\nambitový\r\nambivalence\r\nambivalentnější\r\nambivalentní\r\namblyopie\r\nambona\r\nambra\r\nambrový\r\nAmbrozek\r\nambrózie\r\nambróziový\r\nAmbrozková\r\nAmbrozkův\r\nAmbrožová\r\nAmbrož\r\nAmbrožův\r\nambulance\r\nambulanční\r\nambulantní\r\nambulatorium\r\naméba\r\namen\r\námen\r\namericiový\r\namericium\r\nAmerické\r\namerický\r\nAmeričančin\r\nAmeričanka\r\nameričanka\r\nAmeričan\r\nAmeričan\r\nAmeričanův\r\nameričtější\r\nAmerigo\r\nAmerigův\r\namerikanismus\r\namerikanista\r\namerikanistčin\r\namerikanistický\r\namerikanistika\r\namerikanistka\r\namerikanistův\r\namerikanizace\r\namerikanizování\r\namerikanizovaný\r\namerikanizovat\r\namerikánštější\r\nAmerika\r\nametyst\r\nametystový\r\namfetamin\r\namfibol\r\namfibolický\r\namfibolit\r\namfibolitový\r\namfibolovec\r\namfibolový\r\namfiteatr\r\namfiteátr\r\namfora\r\namfoterní\r\namharština\r\namid\r\nAmiga\r\naminfluorid\r\namin\r\naminoalkohol\r\naminobenzoový\r\naminoethylcelulóza\r\naminoglykosid\r\naminoglykosidový\r\naminokyselina\r\naminokyselinový\r\naminolýza\r\naminopenicilin\r\naminopenicilinový\r\naminoplast\r\naminopropylcelulóza\r\naminoskupina\r\naminový\r\nammonolýza\r\namnesie\r\namnésie\r\namnestie\r\namnestování\r\namnestovaný\r\namnestovat\r\namnestující\r\namnézie\r\namodální\r\namok\r\namokový\r\namoniakální\r\namoniakát\r\namoniak\r\namoniakový\r\namoniový\r\namonium\r\namonnohlinitý\r\namonný\r\namoralismus\r\namoralistický\r\namorálnější\r\namorální\r\namorek\r\namorfnější\r\namorfní\r\namorkův\r\nAmor\r\namor\r\namortizace\r\namortizační\r\namortizovanější\r\namortizování\r\namortizovaný\r\namortizovat\r\nAmorův\r\nÁmos\r\nÁmosův\r\nampelografický\r\nampér\r\nampérhodina\r\nampérmetr\r\nampérový\r\nampérsekunda\r\nAmpérův\r\nampérzávit\r\namphetamin\r\nampicilin\r\namplifikace\r\namplifikační\r\namplion\r\namplión\r\namplituda\r\namplitudový\r\nampule\r\nampulka\r\nampulkovací\r\nampulkování\r\nampulkovaný\r\nampulkovat\r\namputace\r\namputování\r\namputovaný\r\namputovat\r\namputovávání\r\namputovávaný\r\namputovávat\r\nAmsterodam\r\namsterodamský\r\nAMU\r\nAmudarja\r\namulet\r\namur\r\namurský\r\namurův\r\namylasa\r\namyláza\r\namyotrofický\r\nanabaptista\r\nanabaptistčin\r\nanabaptistka\r\nanabaptistův\r\nanabáze\r\nanabióza\r\nanabolický\r\nanabolikum\r\nanadromní\r\nanaerobní\r\nanafora\r\nanaforický\r\nanafylaktický\r\nanafylaxe\r\nanaglyf\r\nanagram\r\nanachronický\r\nanachroničtější\r\nanachronismus\r\nanakolut\r\nanakonda\r\nanalfabetčin\r\nanalfabetický\r\nanalfabetičtější\r\nanalfabetismus\r\nanalfabetka\r\nanalfabet\r\nanalfabetův\r\nanalgetikum\r\nanalgezie\r\nanál\r\nanalista\r\nanalistčin\r\nanalistka\r\nanalistův\r\nanálnější\r\nanální\r\nanalog\r\nanalogický\r\nanalogický\r\nanalogičtější\r\nanalogie\r\nanalogon\r\nanalogový\r\nanalysa\r\nanalysování\r\nanalysovaný\r\nanalysovat\r\nanalysovatelný\r\nanalytický\r\nanalytiččin\r\nanalytička\r\nanalytičtější\r\nanalytika\r\nanalytik\r\nanalytikův\r\nanalyzátor\r\nanalýza\r\nanalyzovanější\r\nanalyzování\r\nanalyzovaný\r\nanalyzovaný\r\nanalyzovat\r\nanalyzovatelnější\r\nanalyzovatelný\r\nanalyzující\r\nanamnestický\r\nanamnéza\r\nanamorfóza\r\nananas\r\nananasovník\r\nananasový\r\nanarchický\r\nanarchie\r\nanarchismus\r\nanarchista\r\nanarchistčin\r\nanarchistický\r\nanarchističtější\r\nanarchistka\r\nanarchistův\r\nanarchizující\r\nanarchokomunista\r\nanarchokomunistčin\r\nanarchokomunistka\r\nanarchokomunistův\r\nanarchosyndikalismus\r\nanarchosyndikalista\r\nanarchosyndikalistčin\r\nanarchosyndikalistický\r\nanarchosyndikalistka\r\nanarchosyndikalistův\r\nAnastázie\r\nAnastáziin\r\nAnastáz\r\nAnastázův\r\nanastomóza\r\nanatolský\r\nanatomický\r\nanatomie\r\nanatom\r\nanatomův\r\nanatonomie\r\nancestrální\r\nAnča\r\nAnčí\r\nAnčiččin\r\nAnčička\r\nAnčích\r\nAnčím\r\nAnčími\r\nAnčin\r\nančovička\r\nAndalusie\r\nandalusit\r\nandalusitový\r\nandaluský\r\nAndaluzie\r\nandaluzský\r\nandante\r\nAnděla\r\nAndělčin\r\nandělíček\r\nandělíčkářčin\r\nandělíčkářka\r\nandělíčkův\r\nandělika\r\nAndělin\r\nAndělka\r\nAndělová\r\nanděl\r\nAnděl\r\nandělský\r\nandělštější\r\nAndělův\r\nandělův\r\nAnderle\r\nAnderlová\r\nAnderlův\r\nAndersen\r\nAndersenův\r\nandezín\r\nandezínový\r\nandezit\r\nandezitový\r\nandílek\r\nandílkův\r\nAndorra\r\nandorrský\r\nandorský\r\nAndořančin\r\nAndořanka\r\nAndořan\r\nAndořanův\r\nandradit\r\nandraditový\r\nAndré\r\nAndrea\r\nAndrein\r\nAndrejčin\r\nAndrejka\r\nAndrejsová\r\nAndrejs\r\nAndrejsův\r\nAndrej\r\nAndrejův\r\nAndrle\r\nAndrlíková\r\nAndrlík\r\nAndrlíkův\r\nAndrlová\r\nAndrlův\r\nandrogeneze\r\nandrogen\r\nandrogenní\r\nandroidka\r\nandroidní\r\nandroid\r\nandroidův\r\nandrologický\r\nandrologie\r\nandrolog\r\nandrologův\r\nandroložčin\r\nandroložka\r\nAndromeda\r\nAndromedin\r\nandropauza\r\nAndršová\r\nAndrštová\r\nAndršt\r\nAndrštův\r\nAndrš\r\nAndršův\r\nAndrýsek\r\nAndrýsková\r\nAndrýskův\r\nandský\r\nAndula\r\nAndulčin\r\nAndulin\r\nAndulka\r\nandulka\r\nAndy\r\naneb\r\nanebo\r\nanejakulace\r\nanekční\r\nanekdota\r\nanekdotický\r\nanekdotičtější\r\nanekdotka\r\nanektování\r\nanektovaný\r\nanektovat\r\nanektovávání\r\nanektovávaný\r\nanektovávat\r\nanemický\r\nanemičtější\r\nanemie\r\nanémie\r\nanemizující\r\nanemometr\r\nanemonka\r\nanencephalie\r\nanenský\r\naneroid\r\naneroidní\r\nanestesiologický\r\nanestesiologie\r\nanestesiolog\r\nanestesiologův\r\nanestesioložčin\r\nanestesioložka\r\nanestetikum\r\nanestezie\r\nanestézie\r\nanesteziologický\r\nanesteziologie\r\nanesteziolog\r\nanesteziologův\r\nanestezioložčin\r\nanestezioložka\r\nAneta\r\nAnetčin\r\nanetický\r\nAnetin\r\nAnetka\r\nanetol\r\nanexe\r\nanexní\r\nAnežčin\r\nAnežka\r\nAnežský\r\nangažmá\r\nangažovanější\r\nangažování\r\nangažovaný\r\nangažovat\r\nangažující\r\nAngelica\r\nAngeličin\r\nAngelika\r\nangina\r\nangína\r\nangínový\r\nangiografický\r\nangiografie\r\nangiologický\r\nangiologie\r\nangiolog\r\nangiologův\r\nangioložčin\r\nangioložka\r\nanglicismus\r\nanglicistický\r\nanglickoskotský\r\nanglický\r\nanglický\r\nangličák\r\nAngličančin\r\nangličančin\r\nAngličanka\r\nangličanka\r\nAngličan\r\nangličan\r\nangličanství\r\nAngličanův\r\nangličanův\r\nangličtější\r\nangličtinářčin\r\nangličtinářka\r\nangličtinář\r\nangličtinářův\r\nangličtina\r\nAnglie\r\nanglikanismus\r\nanglikán\r\nanglikánský\r\nanglikánštější\r\nanglikánův\r\nanglista\r\nanglistčin\r\nanglistický\r\nanglistika\r\nanglistka\r\nanglistův\r\nangloamerický\r\nangloameričančin\r\nangloameričanka\r\nangloameričan\r\nangloameričanův\r\nangloameričtější\r\nanglofil\r\nanglofilství\r\nanglofilův\r\nanglofonní\r\nanglofrancouzský\r\nanglorakouský\r\nanglosaský\r\nAngolančin\r\nAngolanka\r\nangolan\r\nAngolan\r\nAngolanův\r\nangolanův\r\nAngola\r\nangolský\r\nangorský\r\nangrešt\r\nangreštový\r\nAnguillančin\r\nAnguillanka\r\nAnguillan\r\nAnguillanův\r\nAnguilla\r\nanguillský\r\nAnhaltsko\r\nanhydrid\r\nanhydrit\r\nanhydritový\r\nani\r\nAniččin\r\nAnička\r\nanihilace\r\nanihilační\r\nanihilátor\r\nanihilování\r\nanihilovaný\r\nanihilovat\r\nanilin\r\nanilín\r\naniliniumchlorid\r\nanilinový\r\nanilínový\r\nanimace\r\nanimační\r\nanimálnější\r\nanimální\r\nanimato\r\nanimátorčin\r\nanimátorka\r\nanimátor\r\nanimátorův\r\nanimírka\r\nanimismus\r\nanimista\r\nanimistčin\r\nanimistický\r\nanimistka\r\nanimistův\r\nanimosita\r\nanimoterapie\r\nanimovanější\r\nanimování\r\nanimovaný\r\nanimovaný\r\nanimovat\r\nanimozita\r\nanion\r\naniont\r\nanisotropie\r\nanisotropní\r\nAnita\r\nAnitin\r\nanizotropický\r\nanizotropie\r\nanizotropní\r\naniž\r\nAnjeličin\r\nAnjelika\r\nAnjou\r\nAnkara\r\nankarský\r\nAnka\r\nanketa\r\nanketní\r\nanketový\r\nankonský\r\nAnkvice\r\nankvický\r\nAnnapurna\r\nannapurnský\r\nAnna\r\nAnnin\r\nAnnin\r\nano\r\nanoda\r\nanodický\r\nanodový\r\nanomálie\r\nanomalistický\r\nanomalita\r\nanomálnější\r\nanomální\r\nanonce\r\nanoncovaný\r\nanoncovat\r\nanoncující\r\nanonymita\r\nanonymizující\r\nanonymnější\r\nanonymní\r\nanonym\r\nanonymův\r\nanorektický\r\nanorektiččin\r\nanorektička\r\nanorexie\r\nanorganický\r\nanorganika\r\nanorgasmie\r\nanorit\r\nanoritový\r\nanortit\r\nanortitový\r\nanotace\r\nanotační\r\nanotátor\r\nanotátorský\r\nanotovaný\r\nanotovat\r\nanotující\r\nanoxomer\r\nANSA\r\nansámbl\r\nansámblový\r\nANSI\r\nanšlus\r\nanšlusový\r\nantagomismus\r\nantagonismus\r\nantagonista\r\nantagonistčin\r\nantagonistický\r\nantagonističtější\r\nantagonistka\r\nantagonistův\r\nantalogický\r\nantalogie\r\nAntalová\r\nAntal\r\nAntalův\r\nantarktický\r\nantarktický\r\nAntarktida\r\nAntarktis\r\nantedatování\r\nantedatovaný\r\nantedatovat\r\nantenatální\r\nanténa\r\nanténka\r\nanténní\r\nanténový\r\nantepréteritum\r\nanthelmintikum\r\nanthokyan\r\nanthracen\r\nanthrax\r\nanthraxový\r\nantialergický\r\nantialergikum\r\nantialiasing\r\nantiamerický\r\nantiamerikanismus\r\nantiandrogen\r\nantiarytmikum\r\nantiastmatikum\r\nantibakteriální\r\nantibiotický\r\nantibiotikum\r\nantiblokový\r\nantibolševický\r\nantibolševičtější\r\nantibolševismus\r\nantibyrokratický\r\nanticipace\r\nanticipační\r\nanticipativní\r\nanticipování\r\nanticipovaný\r\nanticipovat\r\nanticipovatelnější\r\nanticipovatelný\r\nanticipující\r\nanticivilizační\r\nantický\r\nanticyklonální\r\nanticyklóna\r\nantičástice\r\nantičtější\r\nantidarwinismus\r\nantidarwinista\r\nantidarwinistčin\r\nantidarwinistický\r\nantidarwinistka\r\nantidarwinistův\r\nantidatování\r\nantidemokratický\r\nantidemokratičtější\r\nantidemokratismus\r\nantidepresivní\r\nantidepresívní\r\nantidepresivum\r\nantidetonační\r\nantidiabetikum\r\nantidiskotéka\r\nantidiskrétní\r\nantidogmatičtější\r\nantidogmatismus\r\nantidogmatistický\r\nantidopingový\r\nantidotum\r\nantidrogový\r\nantidumping\r\nantidumpingový\r\nantiepileptický\r\nantiepileptikum\r\nantiesencialismus\r\nantiesencialistický\r\nantiestrogen\r\nantievropanství\r\nantievropský\r\nantifašismus\r\nantifašista\r\nantifašistčin\r\nantifašistický\r\nantifašističtější\r\nantifašistka\r\nantifašistův\r\nantifederalista\r\nantifederalistčin\r\nantifederalistka\r\nantifederalistův\r\nantifeminismus\r\nantifeministický\r\nantifeminističtější\r\nantifona\r\nantifungální\r\nantigen\r\nantigenní\r\nantigorit\r\nantigoritový\r\nantigravitační\r\nAntiguančin\r\nAntiguanka\r\nAntiguan\r\nantiguanský\r\nAntiguanův\r\nAntigua\r\nantihalace\r\nantihistaminikum\r\nantihitlerovský\r\nantihitlerovštější\r\nantihmota\r\nantihmotový\r\nantihokej\r\nantihomomorfismus\r\nantihomomorfní\r\nantihrdina\r\nantihrdinčin\r\nantihrdinka\r\nantihrdinův\r\nantihumanismus\r\nantihumanista\r\nantihumanistčin\r\nantihumanistka\r\nantihumanistův\r\nantihumánní\r\nantihypertenzivum\r\nanticharta\r\nantichartista\r\nantichartistčin\r\nantichartistka\r\nantichartistův\r\nantiideologičtější\r\nantiimperialista\r\nantiimperialistčin\r\nantiimperialističtější\r\nantiimperialistka\r\nantiimperialistův\r\nantiimportní\r\nantiinflační\r\nantiintelektualismus\r\nantiintelektualistický\r\nantiintelektuální\r\nantikapitalismus\r\nantikapitalistický\r\nantikatolicismus\r\nantikatolický\r\nantika\r\nantikizující\r\nantiklerikalismus\r\nantiklerikalistický\r\nantiklerikálnější\r\nantiklimax\r\nantiklinála\r\nantikocepce\r\nantikocepční\r\nantikomunismus\r\nantikomunista\r\nantikomunistčin\r\nantikomunistický\r\nantikomunističtější\r\nantikomunistka\r\nantikomunistův\r\nantikomutativní\r\nantikoncepce\r\nantikoncepčnější\r\nantikoncepční\r\nantikorelace\r\nantikorozívní\r\nantikorozívní\r\nantikoroznější\r\nantikorozní\r\nantikrist\r\nantikristův\r\nantikvariát\r\nantikvárnější\r\nantikvární\r\nantikvářčin\r\nantikvářka\r\nantikvář\r\nantikvářův\r\nantikva\r\nantikvitum\r\nantikvovaný\r\nantilátka\r\nantilékařčin\r\nantilékařka\r\nantilékařský\r\nantilékařství\r\nantilékař\r\nantilékařův\r\nantileninštější\r\nantiliberalismus\r\nantiliberálnější\r\nantiliberální\r\nantiliterární\r\nantilogaritmus\r\nantilopa\r\nantilopí\r\nantilský\r\nAntily\r\nantimalarikum\r\nantimasarykismus\r\nantimasarykovský\r\nantimikrobiální\r\nantimilitarismus\r\nantimilitarista\r\nantimilitaristčin\r\nantimilitaristický\r\nantimilitarističtější\r\nantimilitaristka\r\nantimilitaristův\r\nantimon\r\nantimoničnan\r\nantimoničný\r\nantimonid\r\nantimonitý\r\nantimonopolní\r\nantimonovodík\r\nantimonový\r\nantimykobakteriální\r\nantimykotický\r\nantimykotikum\r\nantinacionalismus\r\nantinacista\r\nantinacistčin\r\nantinacistka\r\nantinacistův\r\nantiněmecký\r\nantiněmectví\r\nantineutron\r\nantinomičtější\r\nantinomie\r\nantinutriční\r\nAntiochie\r\nantioxidační\r\nantioxidant\r\nantiparalelní\r\nantiparazitikum\r\nantiparkovací\r\nantipatetický\r\nantipatie\r\nantiperspirant\r\nantipod\r\nantipodův\r\nantipredační\r\nantiprohibicionismus\r\nantiproton\r\nantipsychiatrie\r\nantipsychologický\r\nantipsychotikum\r\nantipyretikum\r\nantiradar\r\nantiradarový\r\nantiraketa\r\nantirasismus\r\nantirealistický\r\nantireflexní\r\nantireformnější\r\nantireklama\r\nantirevmatikum\r\nantiromantičtější\r\nantirůstový\r\nantiřetězec\r\nantiscientismus\r\nantiscientistický\r\nantisemita\r\nantisemitičtější\r\nantisemitismus\r\nantisemitista\r\nantisemitistčin\r\nantisemitistka\r\nantisemitistův\r\nantisemitský\r\nantisemitštější\r\nantisemitův\r\nantiseptický\r\nantiseptičtější\r\nantiseptikum\r\nantisérum\r\nantisexuální\r\nantisionismus\r\nantisocialismus\r\nantisocialista\r\nantisocialistčin\r\nantisocialistický\r\nantisocialističtější\r\nantisocialistka\r\nantisocialistův\r\nantisociálnější\r\nantisociální\r\nantisovětismus\r\nantisovětský\r\nantisovětštější\r\nantispasmodikum\r\nantistatický\r\nantistatičtější\r\nantistresový\r\nantisvět\r\nantisymetrický\r\nantisymetrie\r\nantišovinismus\r\nantišovinistický\r\nantišovinističtější\r\nantitalent\r\nantitalentův\r\nantiteroristický\r\nantitetický\r\nantiteze\r\nantithrombin\r\nantitonní\r\nantitoxičtější\r\nantitoxin\r\nantitrustový\r\nantitržnější\r\nantitumorový\r\nantitusikum\r\nantiutopičtější\r\nantiválečný\r\nantivěda\r\nantivědecký\r\nantivir\r\nantivirový\r\nantivirus\r\nAntlová\r\nAntl\r\nAntlův\r\nantokyan\r\nantokyanidin\r\nantologický\r\nantologie\r\nAntoníček\r\nAntoníčkův\r\nAntonie\r\nAntoniin\r\nAntonínová\r\nAntonín\r\nantonínský\r\nAntonínův\r\nAntoniová\r\nAntoni\r\nAntoniův\r\nanton\r\nAntonová\r\nAntonovičová\r\nAntonovič\r\nAntonovičův\r\nAnton\r\nAntonův\r\nantonymie\r\nantonymní\r\nantonymum\r\nAntošová\r\nAntoš\r\nAntošův\r\nantracit\r\nantracitový\r\nantrax\r\nantraxový\r\nantropický\r\nantropocentrický\r\nantropocentričtější\r\nantropocentrismus\r\nantropoekologický\r\nantropoekologie\r\nantropoekolog\r\nantropoekologův\r\nantropoekoložčin\r\nantropoekoložka\r\nantropofág\r\nantropofágův\r\nantropogenetika\r\nantropogeneze\r\nantropogenizovaný\r\nantropogenní\r\nantropoidnější\r\nantropoidní\r\nantropologický\r\nantropologie\r\nantropologismus\r\nantropolog\r\nantropologův\r\nantropoložčin\r\nantropoložka\r\nantropometrický\r\nantropomorfický\r\nantropomorfičtější\r\nantropomorfismus\r\nantropomorfizace\r\nantropomorfnější\r\nantropomorfní\r\nantropomotorika\r\nantroponymum\r\nantropopatologický\r\nantropopatologie\r\nantropopatolog\r\nantropopatologův\r\nantropopatoložčin\r\nantropopatoložka\r\nantroposféra\r\nantroposofický\r\nantropotechnika\r\nantuka\r\nantukový\r\nantverpský\r\nAntverpy\r\nanuita\r\nanulátor\r\nanuloid\r\nanulování\r\nanulovaný\r\nanulovat\r\nanulovávání\r\nanulovávaný\r\nanulovávat\r\nanulující\r\nanverpský\r\nAnwarová\r\nAnwar\r\nAnwarův\r\nanxieta\r\nanxiolytikum\r\nanxiozita\r\nanxiózní\r\nanýz\r\nanýzový\r\nanžto\r\naorist\r\naorta\r\nAP\r\nap\r\napanáž\r\naparátčík\r\naparátčíkův\r\naparátek\r\naparát\r\naparátnický\r\naparátník\r\naparátníkův\r\naparatura\r\napartheid\r\napartmá\r\napartmán\r\napartnější\r\napartní\r\napatický\r\napatičtější\r\napatie\r\napatit\r\napatyka\r\napelace\r\napelační\r\napelativnější\r\napelativní\r\napelativum\r\napel\r\napelování\r\napelovaný\r\napelovat\r\napelovávání\r\napelovávaný\r\napelovávat\r\napelový\r\nApeltauerová\r\nApeltauer\r\nApeltauerův\r\napelující\r\napendicitida\r\napendix\r\napeninský\r\nApeniny\r\nApére\r\naperiodický\r\naperitiv\r\naperitivní\r\napertura\r\naperturní\r\napetence\r\napetit\r\napetyt\r\napetýt\r\napikální\r\naplanační\r\naplaudování\r\naplaudovaný\r\naplaudovat\r\naplaudující\r\naplaus\r\naplikace\r\naplikační\r\naplikativní\r\naplikátor\r\naplikovanější\r\naplikovanější\r\naplikování\r\naplikovaný\r\naplikovat\r\naplikovatelnější\r\naplikovatelný\r\naplikovávání\r\naplikovávaný\r\naplikovávat\r\naplikující\r\naplit\r\naplitový\r\nApltová\r\nAplt\r\nApltův\r\nAPN\r\napod\r\napodiktický\r\napodiktičtější\r\napofýza\r\napogeum\r\napokalypsa\r\napokalyptický\r\napokalyptičtější\r\napokryfa\r\napokryf\r\napokryfní\r\nApolena\r\nApolenčin\r\nApolenin\r\nApolenka\r\nApolinář\r\nApolinářův\r\napolitický\r\napolitičtější\r\nApollinaire\r\nApollón\r\napollónštější\r\nApollónův\r\napologeta\r\napologetika\r\napologetův\r\napologický\r\napologie\r\napolog\r\napologův\r\nApolón\r\nApolónův\r\napoložčin\r\napoložka\r\napomorf\r\napomorfie\r\napoptotický\r\napoptóza\r\naportér\r\naportérův\r\naportování\r\naportovaný\r\naportovat\r\naportující\r\naposématismus\r\naposteriorní\r\napostilní\r\napostrofa\r\napostrof\r\napoštolát\r\napoštolátní\r\napoštolka\r\napoštol\r\napoštolský\r\napoštolštější\r\napoštolův\r\napoteóza\r\napothema\r\napotheosa\r\napozice\r\nAppardův\r\nappassionato\r\nappeal\r\napplet\r\nAppltová\r\nApplt\r\nAppltův\r\nAppolinare\r\naprehenze\r\napretační\r\napretovací\r\napretování\r\napretovaný\r\napretovat\r\napretura\r\napríl\r\naprílový\r\napriori\r\napriorismus\r\naprioristický\r\napriorističtější\r\napriornější\r\napriorní\r\naprobace\r\naprobační\r\naprobování\r\naprobovaný\r\naprobovat\r\naprobující\r\naproximace\r\naproximační\r\naproximativní\r\naproximování\r\naproximovaný\r\naproximovat\r\naproximovatelný\r\naproximovávání\r\naproximovávaný\r\naproximovávat\r\naproximující\r\napsida\r\nApulie\r\naqualung\r\naquavit\r\naquilejský\r\nara\r\nArabčin\r\narabeska\r\nArábie\r\narabióza\r\narabista\r\narabistčin\r\narabističin\r\narabistika\r\narabistka\r\narabistův\r\narabizace\r\nArabka\r\nArab\r\narabskosvahilský\r\narabský\r\narabštější\r\narabština\r\nArabův\r\naragonit\r\naragonitový\r\naragonský\r\narachnologický\r\narachnologie\r\narachnolog\r\narachnologův\r\narachnoložčin\r\narachnoložka\r\narakový\r\naralský\r\nAramejec\r\naramejský\r\naramejština\r\naranžérčin\r\naranžérka\r\naranžér\r\naranžérský\r\naranžérství\r\naranžérův\r\naranžmá\r\naranžnmá\r\naranžování\r\naranžovaný\r\naranžovat\r\naranžovna\r\naranž\r\narašíd\r\narašídový\r\nArbes\r\nArbesův\r\narbitrální\r\narbitrární\r\narbitrážní\r\narbitráž\r\narbitr\r\narbitrův\r\narboretum\r\narbuskulární\r\narcibiskup\r\narcibiskupský\r\narcibiskupství\r\narcibiskupštější\r\narcibiskupův\r\narcibratrstvo\r\narciďábel\r\narciďábla\r\narciďáble\r\narciďáblech\r\narciďáblem\r\narciďábli\r\narciďáblové\r\narciďáblovi\r\narciďáblu\r\narciďáblů\r\narciďáblům\r\narciďábly\r\narciděkan\r\narciděkan\r\narciděkanský\r\narciděkanství\r\narciděkanův\r\narcidiecéze\r\narcidiecézní\r\narcijáhen\r\narcijáhenství\r\narcijáhna\r\narcijáhne\r\narcijáhnech\r\narcijáhnem\r\narcijáhni\r\narcijáhnové\r\narcijáhnovi\r\narcijáhnu\r\narcijáhnů\r\narcijáhnům\r\narcijáhnův\r\narcijáhny\r\narcikancléř\r\narcikancléřův\r\narciknížecí\r\narciknížectví\r\narcikníže\r\narcilotr\r\narcilotrův\r\narciopat\r\narciopatství\r\narciopatův\r\narciť\r\narcivévoda\r\narcivévodkyně\r\narcivévodkynin\r\narcivévodský\r\narcivévodství\r\narcivévodův\r\nareál\r\nareálový\r\narelatský\r\naréna\r\narénový\r\nARES\r\narestace\r\narest\r\narestování\r\narestovaný\r\narestovat\r\naretace\r\naretační\r\naretování\r\naretovaný\r\naretovat\r\narganologický\r\narganologie\r\narganolog\r\narganologův\r\narganoložčin\r\narganoložka\r\nargenit\r\nargenitový\r\nArgentina\r\nArgentincův\r\nArgentinčin\r\nArgentinec\r\nArgentinka\r\nargentinský\r\nArgo\r\nargonaut\r\nargonautův\r\nargon\r\nargonový\r\nargot\r\nargotický\r\nargotičtější\r\nargotový\r\nargumentace\r\nargumentační\r\nargument\r\nargumentování\r\nargumentovaný\r\nargumentovat\r\nargumentovatelný\r\nargumentovávání\r\nargumentovávaný\r\nargumentovávat\r\nargumentující\r\nar\r\narch\r\narchaický\r\narchaičtější\r\narchaismus\r\narchaistický\r\narchaizující\r\narchanděl\r\narchandělský\r\narchandělův\r\narcha\r\narcheoastronomie\r\narcheologický\r\narcheologie\r\narcheolog\r\narcheologův\r\narcheoložčin\r\narcheoložka\r\narcheopteryx\r\narcheopteryxův\r\narchetypální\r\narchetyp\r\narchetypický\r\narch\r\nArchimédes\r\narchimedovský\r\nArchimédův\r\narchipelag\r\narchitektčin\r\narchitektka\r\narchitektonický\r\narchitektoničtější\r\narchitektonika\r\narchitekt\r\narchitektura\r\narchitektův\r\narchivace\r\narchivační\r\narchiválie\r\narchivářčin\r\narchivářka\r\narchivářský\r\narchivářství\r\narchivář\r\narchivářův\r\narchiv\r\narchív\r\narchivnictví\r\narchivní\r\narchívní\r\narchivování\r\narchivovaný\r\narchivovat\r\nArchlebov\r\narchlebovský\r\narchový\r\narianismus\r\nariánství\r\narie\r\nárie\r\nárijcův\r\nárijčin\r\nárijec\r\nárijka\r\nárijský\r\nárijství\r\nárijštější\r\nArimatie\r\náriový\r\nAristofanés\r\nAristofanes\r\nAristofanův\r\naristokracie\r\naristokratčin\r\naristokratický\r\naristokratičtější\r\naristokratismus\r\naristokratka\r\naristokrat\r\naristokratův\r\nAristoteles\r\naristotelismus\r\naristotelovský\r\naristotelský\r\nAristotelův\r\narita\r\naritmetickologický\r\naritmetický\r\naritmetika\r\narivismus\r\narivista\r\narivistčin\r\narivistický\r\narivistka\r\narivistův\r\narizace\r\nArizona\r\narizonský\r\narizování\r\narizovaný\r\narizovat\r\narkáda\r\narkadičtější\r\narkádový\r\nArkansas\r\narkansaský\r\narkóza\r\narkózový\r\narktický\r\narktičtější\r\nArktida\r\narkýřový\r\narkýř\r\narm\r\narmáda\r\narmádní\r\nArmagnac\r\narmatura\r\narmaturka\r\narmaturní\r\narmaturový\r\nArménčin\r\nArménie\r\nArménka\r\nArmén\r\narménský\r\narménština\r\nArménův\r\nArmin\r\narmování\r\narmovaný\r\narmovat\r\nArmstrong\r\nArmstrongův\r\narmující\r\nArnhem\r\narnika\r\narnikový\r\nArnimův\r\nArnoldová\r\nArnold\r\nArnoldův\r\narnolecký\r\nArnolec\r\nArnoltice\r\narnoltický\r\nArnoštová\r\nArnošt\r\nArnoštův\r\nArnulf\r\nArnulfův\r\nARO\r\narogance\r\narogantnější\r\narogantní\r\naroma\r\naroma\r\naróma\r\naromaticita\r\naromatický\r\naromatičtější\r\naromatizace\r\naromatizování\r\naromatizovaný\r\naromatizovat\r\narondace\r\narondační\r\náronovitý\r\narový\r\nARP\r\nArpádovec\r\narsen\r\narseničnan\r\narseničný\r\narsenid\r\narsenik\r\narsenitan\r\narsenitý\r\narsenopyrit\r\narsenovodík\r\narsenový\r\naršík\r\nartefakt\r\narteficialistický\r\narteriální\r\narterie\r\nartérie\r\narteriografie\r\narterioskleróza\r\narteriový\r\narteritida\r\narteroskleróza\r\nartéský\r\narteterapeutčin\r\narteterapeutka\r\narteterapeut\r\narteterapeutův\r\narteterapie\r\nartézský\r\nart\r\nArtia\r\nartificialismus\r\nartificialistický\r\nartikl\r\nartikulace\r\nartikulační\r\nartikul\r\nartikulování\r\nartikulovaný\r\nartikulovat\r\nartikulující\r\nartilerie\r\nartismus\r\nartista\r\nartistčin\r\nartistický\r\nartističtější\r\nartistika\r\nartistka\r\nartistnější\r\nartistní\r\nartistův\r\nartotéka\r\nartritický\r\nartritičtější\r\nartritida\r\nartrock\r\nartrockový\r\nartrologický\r\nartrologie\r\nartrolog\r\nartrologův\r\nartroložčin\r\nartroložka\r\nartrotický\r\nartróza\r\nArtur\r\nArturův\r\nArťušenko\r\nArťušenková\r\nArťušenkův\r\nArtuš\r\nArtušův\r\nartyčok\r\nArubančin\r\nArubanka\r\nAruban\r\nArubanův\r\nAruba\r\narubský\r\nArvayová\r\nArvayův\r\nArvay\r\narylazid\r\narytmický\r\narytmičtější\r\narytmie\r\narytmologický\r\narytmologie\r\narytmolog\r\narytmologův\r\narytmoložčin\r\narytmoložka\r\narzenál\r\narzén\r\narzeničnan\r\narzeničný\r\narzenik\r\narzenitan\r\narzenitý\r\narzenopyrit\r\narzenový\r\narzénový\r\nAs\r\nasanace\r\nasanační\r\nasanování\r\nasanovaný\r\nasanovat\r\nASCII\r\nasepse\r\naseptický\r\naseptičtější\r\nasertivita\r\nasertivnější\r\nasertivní\r\nasexualita\r\nasexuálka\r\nasexuálnější\r\nasexuální\r\nasexuál\r\nasexuálův\r\nasfaltér\r\nasfaltérův\r\nasfalt\r\nasfaltka\r\nasfaltobetonový\r\nasfaltoepoxid\r\nasfaltování\r\nasfaltovaný\r\nasfaltovat\r\nasfaltovávání\r\nasfaltovávaný\r\nasfaltovávat\r\nasfaltový\r\nasferický\r\nasférický\r\nAshworthův\r\nasi\r\nAsiatčin\r\nAsiatka\r\nasiat\r\nasiatský\r\nasiatův\r\nAsie\r\nasignace\r\nasignační\r\nasignující\r\nAsijčin\r\nAsijka\r\nasijský\r\nasimilace\r\nasimilační\r\nasimilát\r\nasimilování\r\nasimilovaný\r\nasimilovat\r\nasimilovávání\r\nasimilovávaný\r\nasimilovávat\r\nasimilující\r\nasistence\r\nasistenční\r\nasistentčin\r\nasistentka\r\nasistent\r\nasistentský\r\nasistentura\r\nasistentův\r\nasistování\r\nasistovaný\r\nasistovat\r\nasistovávání\r\nasistovávaný\r\nasistovávat\r\nasistující\r\nAskalón\r\nasketa\r\nasketický\r\nasketičtější\r\nasketika\r\nasketismus\r\nasketův\r\naskeze\r\naskorban\r\naskorbát\r\naskorbový\r\nasociace\r\nasociacionismus\r\nasociační\r\nasociálnější\r\nasociální\r\nasociál\r\nasociálův\r\nasociativita\r\nasociativní\r\nasociování\r\nasociovaný\r\nasociovat\r\nasociující\r\nasonance\r\nasonanční\r\nasparagový\r\nasparágus\r\naspartam\r\naspartát\r\naspekt\r\naspik\r\naspikový\r\naspirace\r\naspirační\r\naspirantčin\r\naspirantka\r\naspirant\r\naspirantský\r\naspirantura\r\naspirantův\r\naspirin\r\naspirování\r\naspirovaný\r\naspirovat\r\naspirující\r\naspoň\r\nASŘ\r\nassembler\r\nassemblerovský\r\nassemblerský\r\nastabilní\r\nastat\r\nastatový\r\nastenický\r\nasteniččin\r\nastenička\r\nasteničtější\r\nastenik\r\nastenikův\r\nastenosféra\r\nAsterix\r\nAsterixův\r\nasteroidální\r\nasteroid\r\nastetický\r\nastigmatický\r\nastigmatismus\r\nAstlová\r\nAstl\r\nAstlův\r\nastma\r\nastmatický\r\nastmatiččin\r\nastmatička\r\nastmatičtější\r\nastmatik\r\nastmatikův\r\nastrální\r\nastra\r\nAstrid\r\nAstridin\r\nastroarcheologický\r\nastroarcheologie\r\nastroarcheolog\r\nastroarcheologův\r\nastroarcheoložčin\r\nastroarcheoložka\r\nastrobotanika\r\nastrodynamika\r\nastrofysika\r\nastrofyzikální\r\nastrofyzika\r\nastrofyzik\r\nastrofyzikův\r\nastrogenetika\r\nastrograf\r\nastrochemie\r\nastroláb\r\nastrolékařčin\r\nastrolékařka\r\nastrolékařský\r\nastrolékařství\r\nastrolékař\r\nastrolékařův\r\nastrologický\r\nastrologie\r\nastrolog\r\nastrologův\r\nastroložčin\r\nastroložka\r\nastrometeorologický\r\nastrometeorologie\r\nastrometeorolog\r\nastrometeorologův\r\nastrometeoroložčin\r\nastrometeoroložka\r\nastrometrický\r\nastrometrie\r\nastronautčin\r\nastronautický\r\nastronautika\r\nastronautka\r\nastronaut\r\nastronautův\r\nastronomčin\r\nastronomický\r\nastronomie\r\nastronomka\r\nastronom\r\nastronomův\r\nastropsychologický\r\nastropsychologie\r\nastropsycholog\r\nastropsychologův\r\nastropsycholožčin\r\nastropsycholožka\r\nasylantčin\r\nasylantka\r\nasylant\r\nasylantův\r\nasyl\r\nasylový\r\nasymetrický\r\nasymetričtější\r\nasymetrie\r\nasymptota\r\nasymptotický\r\nasynchronie\r\nasynchronizační\r\nasynchronnější\r\nasynchronní\r\nAsýrie\r\nasyrologický\r\nasyrologie\r\nasyrolog\r\nasyrologův\r\nasyroložčin\r\nasyroložka\r\nasyrský\r\nasyrština\r\nAsyřan\r\nAšsko\r\našský\r\nAš\r\nať\r\natak\r\natakování\r\natakovaný\r\natakovat\r\nataktický\r\nataktičtější\r\natakující\r\nataman\r\natamanův\r\natašé\r\natavismus\r\natavistický\r\natavističtější\r\nataxie\r\natd\r\nateismus\r\nateista\r\nateistčin\r\nateistický\r\nateističtější\r\nateistka\r\nateistův\r\nateizující\r\nateliér\r\nateliérovější\r\nateliérový\r\natematický\r\natematičtější\r\natemporální\r\naténský\r\natentát\r\natentátník\r\natentátníkův\r\natenuátor\r\natenuátorový\r\natenuovaný\r\nAtény\r\naterosklerotický\r\nateroskleróza\r\natestace\r\natestační\r\natest\r\natestování\r\natestovaný\r\natestovat\r\natheistický\r\nathénský\r\nAthény\r\natika\r\natituda\r\nAtlanta\r\natlantický\r\natlantičtější\r\nAtlantik\r\natlantista\r\natlantistčin\r\natlantistka\r\natlantistův\r\nAtlantis\r\natlantologický\r\natlantologie\r\natlantolog\r\natlantologův\r\natlantoložčin\r\natlantoložka\r\natlantský\r\natlas\r\natlasový\r\natletický\r\natletičtější\r\natletika\r\natletka\r\natlet\r\natletův\r\natm\r\natmosféra\r\natmosférický\r\natmosferický\r\natmosférotvorný\r\natol\r\natolový\r\natomární\r\natom\r\natomický\r\natomismus\r\natomista\r\natomistický\r\natomistika\r\natomistův\r\natomizace\r\natomizování\r\natomizovaný\r\natomizovat\r\natomovka\r\natomový\r\natonální\r\natopický\r\natopie\r\natopik\r\natopikův\r\natosekunda\r\natp\r\natpod\r\natrakce\r\natraktivita\r\natraktivnější\r\natraktivní\r\natraktor\r\natrapa\r\natribuce\r\natribut\r\natributovaný\r\natributový\r\natriový\r\natrium\r\nátrium\r\natrofie\r\natrofování\r\natrofovaný\r\natrofovat\r\natrologický\r\natrologie\r\natrolog\r\natrologův\r\natroložčin\r\natroložka\r\natropin\r\nATS\r\naťsi\r\natypický\r\natypičtější\r\nAU\r\nau\r\naú\r\nAubrechtová\r\nAubrecht\r\nAubrechtův\r\nAUD\r\naudience\r\naudienční\r\naudiokazeta\r\naudiologický\r\naudiologie\r\naudio\r\naudiometrický\r\naudionahrávací\r\naudion\r\naudionosič\r\naudionový\r\naudiopáska\r\naudiosignál\r\naudiosouprava\r\naudiosoustava\r\naudiostanice\r\naudiostřižna\r\naudiosystém\r\naudiotechnika\r\naudiotelekomunikace\r\naudiotextový\r\naudiotypista\r\naudiotypistčin\r\naudiotypistka\r\naudiotypistův\r\naudiovize\r\naudiovizuální\r\naudiozáznam\r\naudit\r\nauditing\r\nauditivní\r\nauditní\r\nauditorčin\r\nauditorium\r\nauditorka\r\nauditor\r\nauditorský\r\nauditorův\r\nauditování\r\nauditovaný\r\nauditovat\r\naudivizuální\r\nAuerová\r\nAuer\r\nAuerspergův\r\nAuerův\r\nAuger\r\nAugerův\r\nAugiáš\r\nAugiášův\r\naugit\r\naugmentace\r\naugmentativní\r\naugmentativum\r\naugmentující\r\nAugšpurk\r\naugšpurský\r\naugur\r\naugurův\r\nAugusta\r\naugustiniánčin\r\naugustinián\r\naugustiniánka\r\nAugustinová\r\nAugustin\r\nAugustinus\r\nAugustinův\r\nAugustová\r\nAugustus\r\nAugustův\r\nAugustýn\r\nAugustýnův\r\naukce\r\naukční\r\naula\r\nAulichová\r\nAulich\r\nAulichův\r\naura\r\naureola\r\nauripigment\r\naurora\r\nAuspergerová\r\nAusperger\r\nAuspergerův\r\naustenit\r\naustenitický\r\naustenitizace\r\naustenitizační\r\naustenitotvorný\r\nAustralančin\r\nAustralanka\r\nAustralan\r\nAustralanův\r\nAustrálie\r\naustralský\r\nAustrasie\r\naustriacismus\r\nAustrie\r\naustroasijský\r\naustrofašismus\r\naustrofašistický\r\naustromarxismus\r\naustromarxista\r\naustromarxistčin\r\naustromarxistka\r\naustromarxistův\r\naustronéský\r\naustroslavismus\r\naustroslavistický\r\nAušpurk\r\naušus\r\naušusový\r\nauťáček\r\nauťák\r\nautekologický\r\nautekologie\r\nautekolog\r\nautekologův\r\nautekoložčin\r\nautekoložka\r\nautenticita\r\nautentický\r\nautentičtější\r\nautentizace\r\nautentizační\r\nautentizovanější\r\nautentizování\r\nautentizovaný\r\nautentizovat\r\nautentizující\r\nautíčko\r\nautismus\r\nautista\r\nautistčin\r\nautistický\r\nautistka\r\nautistův\r\nautoafekce\r\nautoafektace\r\nautoafirmace\r\nautoagresivita\r\nautoalarm\r\nautoantigen\r\nautoatlas\r\nautobaterie\r\nautobazar\r\nautobiografický\r\nautobiografičtější\r\nautobiografie\r\nautobrzdy\r\nautobus\r\nautobusový\r\nAutocad\r\nautocenzura\r\nautocisterna\r\nautocitace\r\nAutocont\r\nautocvičiště\r\nautodekrement\r\nautodesenzibilizace\r\nautodesenzibilizační\r\nautodestrukce\r\nautodestruktivní\r\nautodetekce\r\nautodiagnostika\r\nautodidakt\r\nautodidaktův\r\nautodíl\r\nautodílna\r\nautodomestikace\r\nautodoplněk\r\nautodoprava\r\nautodopravce\r\nautodopravcův\r\nautodráha\r\nautodrom\r\nautodrožka\r\nautodružstvo\r\nautoduše\r\nautoelektrotechnika\r\nautoerotický\r\nautoerotika\r\nautoevoluční\r\nautofokus\r\nautogamický\r\nautogen\r\nautogenní\r\nautograf\r\nautografický\r\nautografičtější\r\nautogram\r\nautogramiáda\r\nautohavárie\r\nautohlídka\r\nautochtonní\r\nautoimunita\r\nautoimunitní\r\nautoinkrement\r\nautojeřáb\r\nautokar\r\nautokarosář\r\nautokarosářův\r\nautokarový\r\nautokatalytický\r\nautokemp\r\nautokemping\r\nautokempink\r\nautokláv\r\nautoklempíř\r\nautoklempířův\r\nautoklub\r\nautokód\r\nautokonfigurace\r\nautokonfigurační\r\nautokontrola\r\nautokorektor\r\nautokorelace\r\nautokorelační\r\nautokorelovaný\r\nautokosmetika\r\nautokovarianční\r\nautokracie\r\nautokratický\r\nautokratičtější\r\nautokratismus\r\nautokrativní\r\nautokrat\r\nautokratův\r\nautokritika\r\nautokros\r\nautokrosový\r\nautolakovna\r\nautolakýrník\r\nautolakýrníkův\r\nautolanko\r\nautoléčba\r\nautolékárnička\r\nautoleštěnka\r\nautolyzát\r\nautolýza\r\nautolyzovat\r\nautomagazín\r\nautomanipulace\r\nautomapa\r\nautomasáž\r\nautomat\r\nautomaticita\r\nautomatický\r\nautomatičtější\r\nautomatika\r\nautomatismus\r\nautomatizace\r\nautomatizační\r\nautomatizovanější\r\nautomatizování\r\nautomatizovaný\r\nautomatizovaný\r\nautomatizovat\r\nautomatizující\r\nautomatový\r\nautomechanický\r\nautomechanik\r\nautomechanikův\r\nautomobil\r\nautomobilismus\r\nautomobilista\r\nautomobilistčin\r\nautomobilistický\r\nautomobilistka\r\nautomobilistův\r\nautomobilka\r\nautomobilní\r\nautomobilovější\r\nautomobilový\r\nautomodelářčin\r\nautomodelářka\r\nautomodelářství\r\nautomodelář\r\nautomodelářův\r\nautomonitor\r\nautomorfismus\r\nautomorfní\r\nautomotoklub\r\nauto\r\nautonehoda\r\nautonomie\r\nautonomismus\r\nautonomista\r\nautonomistčin\r\nautonomistický\r\nautonomističtější\r\nautonomistka\r\nautonomistův\r\nautonomnější\r\nautonomní\r\nautoopravárenství\r\nautoopravna\r\nautoorganizace\r\nautoorganizační\r\nautoostřící\r\nautopark\r\nautopilot\r\nautopilotův\r\nautoplášť\r\nautoportrét\r\nautopotah\r\nautopropagace\r\nautopropagační\r\nautoprotolýza\r\nautoprovoz\r\nautoprůmysl\r\nautopřepravník\r\nautopříslušenství\r\nautopůjčovna\r\nautorádio\r\nautorčin\r\nautoreferát\r\nautoreference\r\nautoreferenční\r\nautoreflexe\r\nautorefraktometr\r\nautoregistr\r\nautoregresní\r\nautoregulace\r\nautoregulační\r\nautorehabilitace\r\nautoreklama\r\nautorelativnější\r\nautorelativní\r\nautoreport\r\nautorisování\r\nautorisovaný\r\nautorisovat\r\nautoritářčin\r\nautoritářka\r\nautoritářský\r\nautoritářství\r\nautoritář\r\nautoritářův\r\nautoritativnější\r\nautoritativní\r\nautorita\r\nautorizace\r\nautorizační\r\nautorizování\r\nautorizovaný\r\nautorizovat\r\nautorizovávat\r\nautorka\r\nautor\r\nautorskoprávní\r\nautorský\r\nautorství\r\nautorův\r\nautosalon\r\nautosalón\r\nautosanační\r\nautosedačka\r\nautosémantický\r\nautoservis\r\nautosexualita\r\nautoslužba\r\nautosoučástka\r\nautostimulace\r\nautostop\r\nautostráda\r\nautosugesce\r\nautosugestivní\r\nautoškola\r\nautotechnik\r\nautotechnikův\r\nautoterapie\r\nautotransformátor\r\nautotransfuze\r\nautotransfúze\r\nautotransplantace\r\nautotrénink\r\nautotrofní\r\nautoturista\r\nautoturistčin\r\nautoturistika\r\nautoturistka\r\nautoturistův\r\nautovakcína\r\nautoveterán\r\nautoveteránův\r\nautovložka\r\nautovrak\r\nautovrakoviště\r\nautovýrobce\r\nautovýrobcův\r\nautový\r\nautozámek\r\nauxologický\r\nauxologie\r\nauxolog\r\nauxologův\r\nauxoložčin\r\nauxoložka\r\nAV\r\navalista\r\navalistčin\r\navalistka\r\navalistův\r\navantgarda\r\navantgardismus\r\navantgardista\r\navantgardistčin\r\navantgardističtější\r\navantgardistka\r\navantgardistův\r\navantgardnější\r\navantgardní\r\navantrén\r\navanturismus\r\navanturista\r\navanturistčin\r\navanturistický\r\navanturističtější\r\navanturistka\r\navanturistův\r\navantýra\r\nAvar\r\navar\r\nAvar\r\navarský\r\nAvarův\r\navarův\r\nAventin\r\navenue\r\naverze\r\navesta\r\naviární\r\naviatický\r\naviatiččin\r\naviatička\r\naviatika\r\naviatik\r\naviatikův\r\nAvicenum\r\navignonský\r\nAvila\r\navionika\r\naviso\r\navisování\r\navisovaný\r\navisovat\r\navitaminóza\r\naviváž\r\navizo\r\navízo\r\navizování\r\navizovaný\r\navizovat\r\navizující\r\nAvogadro\r\nAvogradrův\r\navokado\r\navokádo\r\navšak\r\nAVU\r\nAxamitová\r\nAxamit\r\nAxamitův\r\nAxel\r\nAxelův\r\naxiální\r\naxikologický\r\naxikologie\r\naxikolog\r\naxikologův\r\naxikoložčin\r\naxikoložka\r\naxiologický\r\naxiologie\r\naxiolog\r\naxiologův\r\naxioložčin\r\naxioložka\r\naxiomatický\r\naxiomatičtější\r\naxiomatika\r\naxiomatizace\r\naxiomatizování\r\naxiomatizovaný\r\naxiomatizovat\r\naxiomatizovatelný\r\naxiom\r\naxióm\r\naxiomový\r\nAxmanová\r\nAxman\r\nAxmanův\r\naxon\r\naxonometrický\r\naxonometrie\r\naymarština\r\nAyřanův\r\nazalka\r\nazalkový\r\nazbest\r\nazbestocementový\r\nazbestový\r\nazbuka\r\nÁzerbájdžáncův\r\nÁzerbájdžánčin\r\nÁzerbájdžánec\r\nÁzerbájdžán\r\nÁzerbájdžánka\r\názerbájdžánský\r\názerbájdžánština\r\nazidovodíkový\r\nazimutální\r\nazimut\r\nazimutový\r\nazobarvivo\r\nazoformamid\r\nazometr\r\nazorský\r\nazorubin\r\nAzory\r\nazosloučenina\r\nAzovský\r\nazoxysloučenina\r\naztécký\r\nAzték\r\naztékův\r\nazur\r\nazurit\r\nazurový\r\nazylantčin\r\nazylantka\r\nazylant\r\nazylantův\r\nazyl\r\nazylový\r\naž\r\nažaž\r\nažio\r\nážio\r\nážiový\r\nažura\r\nba\r\nBaader\r\nBaaderův\r\nBaal\r\nBaalův\r\nBabáková\r\nBabák\r\nBabákův\r\nbaba\r\nbába\r\nbabčin\r\nBabenberkový\r\nbabenberský\r\nbabi\r\nbábi\r\nbabice\r\nBabický\r\nbabiččin\r\nbabička\r\nbabičkovský\r\nBabičová\r\nBabič\r\nBabičův\r\nBabíková\r\nBabík\r\nBabíkův\r\nbábinčin\r\nbábinka\r\nBabinský\r\nbabin\r\nbábin\r\nbabí\r\nbabizna\r\nbabiznin\r\nBabka\r\nbabka\r\nBabková\r\nBabkův\r\nbabočka\r\nBaborová\r\nBabor\r\nBaborův\r\nbábovečka\r\nbábovička\r\nbábovka\r\nbábovkový\r\nbabrající\r\nbabrání\r\nbabrat\r\nbabravý\r\nbábrle\r\nbabský\r\nbabštější\r\nBabula\r\nBabulová\r\nBabulův\r\nbabuščin\r\nbábuščin\r\nbabuška\r\nbábuška\r\nbabyka\r\nbabyloňan\r\nBabyloňan\r\nBabyloňanův\r\nBabylon\r\nbabylon\r\nbabylón\r\nBabylón\r\nBabylonie\r\nbabylonský\r\nbabylonský\r\nbabylónský\r\nbác\r\nbacání\r\nbacaný\r\nbacat\r\nBacíková\r\nBacík\r\nBacíkův\r\nBacílek\r\nbacil\r\nBacílková\r\nBacílkův\r\nbacilonosiččin\r\nbacilonosička\r\nbacilonosičství\r\nbacilonosič\r\nbacilonosičův\r\nbacit\r\nbacktracking\r\nbácnout\r\nbácnutí\r\nbácnutý\r\nBacovský\r\nbaculatější\r\nbaculatý\r\nbaculka\r\nbača\r\nBaček\r\nBačetín\r\nbačetínský\r\nBačinský\r\nbáčka\r\nbačkora\r\nbačkorka\r\nbačkorový\r\nBačková\r\nBačkov\r\nbačkovský\r\nbačkůrka\r\nBačkův\r\nbačův\r\nbádající\r\nBadalcová\r\nBadalcův\r\nBadalec\r\nBádalová\r\nBádal\r\nBádalův\r\nbádání\r\nbádaný\r\nbadatelčin\r\nbadatelka\r\nbadatelský\r\nbadatelství\r\nbadatelštější\r\nbadatel\r\nbadatelův\r\nbádat\r\nbádavý\r\nbaddeleyit\r\nBádensko\r\nBádenský\r\nBadinka\r\nBadinková\r\nBadinkův\r\nbadminton\r\nbadmintonista\r\nbadmintonistčin\r\nbadmintonistka\r\nbadmintonistův\r\nbadmintonový\r\nBaďura\r\nBadurová\r\nBaďurová\r\nBadur\r\nBadurův\r\nBaďurův\r\nbadyán\r\nbadyánový\r\nbaf\r\nbafající\r\nbafání\r\nbafaný\r\nbafat\r\nbafavý\r\nbafnout\r\nbafnutí\r\nbaganče\r\nbagančový\r\nbagatelizace\r\nbagatelizování\r\nbagatelizovaný\r\nbagatelizovat\r\nbagatelizující\r\nbagáž\r\nBagdád\r\nbagdádský\r\nbageta\r\nbágl\r\nbagr\r\nbagrista\r\nbagristčin\r\nbagristka\r\nbagristův\r\nbagrovanější\r\nbagrování\r\nbagrovaný\r\nbagrovat\r\nbagrovávání\r\nbagrovávaný\r\nbagrovávat\r\nbagrový\r\nbahaismus\r\nbahaista\r\nbahaistčin\r\nbahaistka\r\nbahaistův\r\nBahamcův\r\nBahamčin\r\nBahamec\r\nBahamka\r\nbahamský\r\nbahamský\r\nBahamy\r\nbahenka\r\nbahenní\r\nbahijský\r\nbahňák\r\nbahňákův\r\nbahnění\r\nbahněný\r\nbahnice\r\nbahnička\r\nBahníková\r\nbahník\r\nBahník\r\nBahníkův\r\nbahníkův\r\nbahnisko\r\nbahniště\r\nbahnit\r\nbahnitější\r\nbahnitý\r\nbahno\r\nBahrajňančin\r\nBahrajňanka\r\nBahrajňan\r\nBahrajňanův\r\nBahrajncův\r\nBahrajnčin\r\nBahrajnec\r\nBahrajn\r\nBahrajnka\r\nbahrajnský\r\nbaht\r\nbacha\r\nbachař\r\nbachařův\r\nbachor\r\nbáchorka\r\nbachorový\r\nbachovský\r\nbachovštější\r\nBach\r\nbachratější\r\nbachratět\r\nbachratý\r\nBachurová\r\nBachur\r\nBachurův\r\nBachův\r\nbachyně\r\nbachyňka\r\nBaierová\r\nBaier\r\nBaierův\r\nbaissista\r\nbaissistův\r\nbáječnější\r\nbáječný\r\nbájení\r\nbájený\r\nBajerová\r\nBajer\r\nBajerův\r\nbájesloví\r\nbájeslovný\r\nbáje\r\nBajgarová\r\nBajgar\r\nBajgarův\r\nbájit\r\nbájivější\r\nbájivý\r\nBajkal\r\nbajkalský\r\nbajkařčin\r\nbajkářčin\r\nbajkařka\r\nbajkářka\r\nbajkař\r\nbajkář\r\nbajkařův\r\nbajkářův\r\nbajka\r\nbájnější\r\nbájný\r\nbajonet\r\nbajonetový\r\nbajt\r\nbajtový\r\nbáj\r\nBajzíková\r\nBajzík\r\nBajzíkův\r\nBakala\r\nbakalářčin\r\nbakalářka\r\nbakalářský\r\nbakalář\r\nbakalářův\r\nBakalová\r\nBakalův\r\nbakaný\r\nbakelit\r\nbakelitový\r\nbakchantčin\r\nbakchantka\r\nbaklažán\r\nBakov\r\nbakovský\r\nbakšiš\r\nbakteriální\r\nbaktericidní\r\nbakterie\r\nbaktérie\r\nbakteriocidní\r\nbakteriofág\r\nbakteriofágův\r\nbakteriologický\r\nbakteriologie\r\nbakteriolog\r\nbakteriologův\r\nbakterioložčin\r\nbakterioložka\r\nbakteriolýza\r\nbakteriostatický\r\nbakteriotropický\r\nbakteriotropičtější\r\nbakterióza\r\nbakteriožrout\r\nbakteriožroutův\r\nbakterologický\r\nbakterologie\r\nbakterolog\r\nbakterologův\r\nbakteroložčin\r\nbakteroložka\r\nBaku\r\nBakuleová\r\nBakule\r\nBakuleův\r\nbakule\r\nBakunin\r\nBakuninův\r\nBalabánová\r\nBalabán\r\nBalabánův\r\nbalada\r\nbaladický\r\nbaladička\r\nbaladičtější\r\nbaladika\r\nBaláková\r\nBalák\r\nBalákův\r\nbalalajka\r\nbalalajkový\r\nbalamucení\r\nbalamucený\r\nbalamutící\r\nbalamutit\r\nbalancování\r\nbalancovaný\r\nbalancovat\r\nbalancovávání\r\nbalancovávaný\r\nbalancovávat\r\nbalancující\r\nbalanční\r\nBala\r\nbalast\r\nbalastní\r\nbalastový\r\nBalašová\r\nBalášová\r\nBalaš\r\nBaláš\r\nBalašův\r\nBalášův\r\nbalatčin\r\nBalatka\r\nbalatka\r\nBalatková\r\nBalatkův\r\nBalaton\r\nbalatonský\r\nBalážová\r\nBaláž\r\nBalážův\r\nBalbínová\r\nBalbín\r\nBalbínův\r\nbalbutik\r\nbalbutikův\r\nBalcárek\r\nBalcárková\r\nBalcárkův\r\nBalcarová\r\nBalcar\r\nBalcarův\r\nBalcaříková\r\nBalcařík\r\nBalcaříkův\r\nbaldachýn\r\nbaldachýnový\r\nBalda\r\nBaldová\r\nBalduin\r\nBaldův\r\nBálek\r\nbalenější\r\nbalení\r\nbalený\r\nbalerína\r\nbalerínin\r\nbalet\r\nbaletící\r\nbaletka\r\nbaletnější\r\nbaletní\r\nBalfourův\r\nbal\r\nbál\r\nBali\r\nbalicí\r\nbalící\r\nbaliččin\r\nbalíček\r\nbalička\r\nbalíčkování\r\nbalíčkovitý\r\nbalíčkový\r\nbalík\r\nbalíkovací\r\nbalíkování\r\nbalíkovaný\r\nbalíkovat\r\nBalíková\r\nbalíkov\r\nbalíkový\r\nBalík\r\nBalíkův\r\nbalíkův\r\nbalírna\r\nbalistický\r\nbalistika\r\nbalit\r\nbalitelnější\r\nbalitelný\r\nBalkán\r\nbalkánský\r\nbalkánštější\r\nbalkonek\r\nbalkónek\r\nbalkon\r\nbalkón\r\nbalkonový\r\nbalkónový\r\nBálková\r\nBalkov\r\nbalkovský\r\nBálkův\r\nBalmer\r\nBalmerův\r\nbalneobiologický\r\nbalneobiologie\r\nbalneobiolog\r\nbalneobiologův\r\nbalneobioložčin\r\nbalneobioložka\r\nbalneologický\r\nbalneologie\r\nbalneolog\r\nbalneologův\r\nbalneoložčin\r\nbalneoložka\r\nbalneoterapie\r\nbalné\r\nBalog\r\nbál\r\nbaloňáček\r\nbaloňák\r\nbalonek\r\nbalónek\r\nbalon\r\nbalón\r\nbalónkový\r\nbalónovitější\r\nbalonový\r\nbalónový\r\nbalotáž\r\nBalounová\r\nBaloun\r\nBalounův\r\nbalovaný\r\nbalovat\r\nbalovávaný\r\nbalovávat\r\nBalová\r\nbálový\r\nbalový\r\nbalsa\r\nbalsový\r\nBaltazar\r\nBaltazarův\r\nBalt\r\nbaltický\r\nBaltík\r\nBaltíkův\r\nBaltimore\r\nbaltimorský\r\nbaltoslovanský\r\nbaltský\r\nbalustráda\r\nBalův\r\nbalvan\r\nbalvanitější\r\nbalvanitý\r\nbalvanovitější\r\nbalvanový\r\nBalzac\r\nBalzacův\r\nBalzak\r\nBalzakův\r\nbalzám\r\nbalzamovací\r\nbalzamovač\r\nbalzamovačův\r\nbalzámovanější\r\nbalzamování\r\nbalzámování\r\nbalzamovaný\r\nbalzámovaný\r\nbalzamovat\r\nbalzámovat\r\nbalzamovávání\r\nbalzamovávaný\r\nbalzamovávat\r\nbalzámový\r\nbalza\r\nbalzořez\r\nbalzový\r\nbam\r\nBambasová\r\nBambas\r\nBambasův\r\nBamberk\r\nbamberská\r\nbamberský\r\nbambitka\r\nbambula\r\nbambule\r\nbambulka\r\nbambulovitější\r\nbambulový\r\nbambulův\r\nbambus\r\nbambusový\r\nBambušek\r\nBambušková\r\nBambuškův\r\nbanalita\r\nbanalizování\r\nbanalizovaný\r\nbanalizovat\r\nbanalizující\r\nbanálnější\r\nbanální\r\nbanánek\r\nbanán\r\nbanánkový\r\nbanánovník\r\nbanánový\r\nbaňatější\r\nbaňatý\r\nbandalír\r\nbandaska\r\nbanda\r\nbandažista\r\nbandážista\r\nbandažistčin\r\nbandážistčin\r\nbandažistka\r\nbandážistka\r\nbandažistův\r\nbandážistův\r\nbandážování\r\nbandážovaný\r\nbandážovat\r\nbandáž\r\nbanderovec\r\nbandička\r\nbandita\r\nbanditčin\r\nbanditismus\r\nbanditka\r\nbanditův\r\nbandoneonista\r\nbandoneonistčin\r\nbandoneonistka\r\nbandoneonistův\r\nbandurská\r\nbandurský\r\nbandžista\r\nbandžistčin\r\nbandžistka\r\nbandžistův\r\nBanérův\r\nBangladéšančin\r\nBangladéšanka\r\nBangladéšan\r\nBangladéšanův\r\nbangladéšský\r\nBangladéš\r\nbanička\r\nBaník\r\nbaník\r\nbaníkův\r\nBanín\r\nbanínský\r\nbanjista\r\nbanjistčin\r\nbanjistka\r\nbanjistův\r\nbanjo\r\nbank\r\nbanka\r\nbaňka\r\nbankéřčin\r\nbankéřka\r\nbankéřský\r\nbankéřství\r\nbankéř\r\nbankéřův\r\nbanket\r\nbanketka\r\nbanketový\r\nbank\r\nbankocetle\r\nbankomat\r\nbankomatový\r\nbaňkovitý\r\nbankovka\r\nbankovkový\r\nbankovnictví\r\nbankovní\r\nbankrotář\r\nbankrotářův\r\nbankrot\r\nbankrotování\r\nbankrotovat\r\nbankrotový\r\nbankrotující\r\nBánov\r\nbánovský\r\nbanskobystrický\r\nbáňskotechnický\r\nbanský\r\nbáňský\r\nbantam\r\nbantamový\r\nbantuský\r\nbáň\r\nbaobab\r\nbaptismus\r\nbaptista\r\nbaptistčin\r\nbaptistický\r\nbaptistka\r\nbaptistův\r\nbarabizna\r\nbaráček\r\nbaráčnice\r\nbaráčničin\r\nbaráčničtější\r\nbaráčník\r\nbaráčníkův\r\nbarák\r\nBaráková\r\nbarákový\r\nBarák\r\nBarákův\r\nBaranová\r\nBaran\r\nBaranův\r\nBára\r\nBarbadosančin\r\nBarbadosanka\r\nBarbadosan\r\nBarbadosanův\r\nBarbados\r\nbarbadoský\r\nbarbarismus\r\nbarbarka\r\nBarbarossa\r\nBarbarossový\r\nBarbarossův\r\nbarbar\r\nbarbarský\r\nbarbarství\r\nbarbarštější\r\nbarbarův\r\nbarbiturát\r\nBarbočin\r\nBarbora\r\nBarbora\r\nBarborka\r\nbarborka\r\nBarborová\r\nBarborův\r\nBarbořin\r\nBarbuďančin\r\nBarbuďanka\r\nBarbuďan\r\nBarbuďanův\r\nBarbuda\r\nbarbudský\r\nBarcelona\r\nbarcelonský\r\nBarčáková\r\nBarčák\r\nBarčákův\r\nBarčin\r\nBarčová\r\nBarč\r\nBarčův\r\nbardáma\r\nBardejov\r\nBardějov\r\nbardejovský\r\nbardějovský\r\nbard\r\nbardský\r\nbardův\r\nbarel\r\nbarelový\r\nbarentsový\r\nBarešová\r\nBareš\r\nBarešův\r\nbaret\r\nbaretový\r\nbarev\r\nbarevnější\r\nbarevný\r\nbar\r\nbarchet\r\nbarchetový\r\nbarchetový\r\nBarchov\r\nbarchovský\r\nbariera\r\nbariéra\r\nbarierový\r\nbariérový\r\nbarikáda\r\nbarikádník\r\nbarikádníkův\r\nbárkař\r\nbárkařův\r\nBarka\r\nbárka\r\nbárkový\r\nBarlow\r\nBarlowův\r\nBarmáncův\r\nBarmánčin\r\nBarmánec\r\nbarmanka\r\nBarmánka\r\nbarman\r\nbarmanský\r\nbarmanství\r\nbarmanův\r\nBarma\r\nbarmský\r\nbarmština\r\nbarnabitský\r\nbarnatý\r\nbarnumský\r\nbarograf\r\nbarografický\r\nbarogram\r\nBarochovský\r\nbarok\r\nbarokismus\r\nbarokistický\r\nbarokizující\r\nbaroknější\r\nbarokní\r\nbaroko\r\nbarokový\r\nbarometr\r\nbarometrický\r\nbarometričtější\r\nbarončin\r\nbaronesa\r\nbaronesin\r\nbaroneta\r\nbaronet\r\nbaronetův\r\nbaronka\r\nBaronová\r\nbaron\r\nBaron\r\nbaronský\r\nbaronství\r\nbaronštější\r\nBaronův\r\nbaronův\r\nBarošová\r\nBaroš\r\nBarošův\r\nBarout\r\nbarový\r\nbarozáznam\r\nBarrandien\r\nBarrandov\r\nbarrandovský\r\nbarrandovštější\r\nbarré\r\nBartáková\r\nBarták\r\nBartákův\r\nBárta\r\nBartek\r\nBártek\r\nbarter\r\nbarterový\r\nBarthová\r\nBarth\r\nBarthův\r\nBartíková\r\nBartík\r\nBartíkův\r\nBartková\r\nBártková\r\nBartkův\r\nBártkův\r\nBartlová\r\nBártlová\r\nBartl\r\nBártl\r\nBartlův\r\nBártlův\r\nbartolomějský\r\nBartoloměj\r\nBartolomějův\r\nBartoníček\r\nBartoníčková\r\nBartoníčkův\r\nBartoňová\r\nBartoň\r\nBartoňův\r\nBartošek\r\nBartošíková\r\nBartošík\r\nBartošíkův\r\nBartoška\r\nBartošková\r\nBartoškův\r\nBartošová\r\nBartošovice\r\nbartošovický\r\nBartoš\r\nBartošův\r\nBartoušov\r\nbartoušovský\r\nBártová\r\nBartůněk\r\nBartůňková\r\nBartůňkův\r\nBartušek\r\nBartůšek\r\nBartušková\r\nBartůšková\r\nBartuškův\r\nBartůškův\r\nBártův\r\nBarunčin\r\nBarunka\r\nBaruščin\r\nBaruška\r\nbarvář\r\nbarvářův\r\nbarva\r\nbarvenější\r\nbarvení\r\nbarvený\r\nbarvicí\r\nbarvící\r\nbarvička\r\nbarvínek\r\nbarvírenský\r\nbarvírna\r\nbarvířčin\r\nbarvířka\r\nBarvířová\r\nbarvířský\r\nbarvířství\r\nbarvíř\r\nBarvíř\r\nBarvířův\r\nbarvířův\r\nbarvit\r\nbarvitější\r\nbarvitelný\r\nbarvitý\r\nbarvivo\r\nbarvoměna\r\nbarvonosný\r\nbarvoslepější\r\nbarvoslepý\r\nbarvoslepý\r\nbarvotisk\r\nbarvotiskovější\r\nbarvotiskový\r\nbarvový\r\nbarycentrický\r\nbarycentrum\r\nbaryon\r\nbaryonový\r\nbaryový\r\nbaryt\r\nbaryton\r\nbarytonista\r\nbarytonistův\r\nbarytonový\r\nbarytonsaxofonista\r\nbarytonsaxofonistčin\r\nbarytonsaxofonistka\r\nbarytonsaxofonistův\r\nbarytový\r\nbarytový\r\nbaryumamid\r\nbaryum\r\nBařinka\r\nBařinková\r\nBařinkův\r\nBářin\r\nbařtipán\r\nbasák\r\nbasákův\r\nbasa\r\nbasbarytonista\r\nbasbarytonistův\r\nbaseball\r\nbaseballista\r\nbaseballistčin\r\nbaseballistka\r\nbaseballistův\r\nbaseballový\r\nbasebalový\r\nbáseň\r\nbas\r\nbasicovský\r\nbasička\r\nbasidie\r\nbasilejský\r\nbasilejský\r\nBasilej\r\nbasilika\r\nbasiliščí\r\nbasilišek\r\nbasiliškův\r\nbasista\r\nbasistčin\r\nbasistka\r\nbasistův\r\nbasketbal\r\nbasketbalista\r\nbasketbalistčin\r\nbasketbalistka\r\nbasketbalistův\r\nbasketbalový\r\nBaskicko\r\nbaskický\r\nbaskický\r\nbaskičtina\r\nbasklarinetový\r\nbaskový\r\nBask\r\nbaskřídlovka\r\nbaskytara\r\nbaskytarista\r\nbaskytaristčin\r\nbaskytaristka\r\nbaskytaristův\r\nbaskytarový\r\nbásnění\r\nbásněný\r\nbásnící\r\nbásnický\r\nbásnictví\r\nbásnička\r\nbásničtější\r\nbásník\r\nbásníkův\r\nbásnířčin\r\nbásnířka\r\nbásnířštější\r\nbásnit\r\nbásnivější\r\nbásnivý\r\nbasovat\r\nbasový\r\nbasový\r\nbasreliéf\r\nBassová\r\nbassový\r\nBass\r\nBassův\r\nbasta\r\nbastard\r\nbastardův\r\nBastila\r\nbastion\r\nbastionový\r\nBašeová\r\nBaše\r\nBašeův\r\nBaška\r\nBašnice\r\nbašnický\r\nBašný\r\nBašta\r\nBaštářová\r\nBaštář\r\nBaštářův\r\nbašta\r\nBaštecký\r\nbaštění\r\nbaštěný\r\nbaštící\r\nbaštit\r\nBaštová\r\nbaštový\r\nBaštův\r\nbaštýřčin\r\nbaštýřka\r\nbaštýř\r\nbaštýřův\r\nBašusová\r\nBašus\r\nBašusův\r\nbatalion\r\nbatalión\r\nBaťa\r\nbatát\r\nBatěková\r\nBatěk\r\nBatěkův\r\nBatelka\r\nBatelková\r\nBatelkův\r\nBatelov\r\nbatelovský\r\nbaterie\r\nbatérie\r\nbateriový\r\nbaterka\r\nBaťha\r\nBaťhová\r\nBaťhův\r\nbatika\r\nbatikování\r\nbatikovaný\r\nbatikový\r\nbát\r\nbatist\r\nbatistový\r\nBatlička\r\nBatličková\r\nBatličkův\r\nbatoh\r\nbatolátko\r\nbatolecí\r\nbatole\r\nbatolení\r\nbatolící\r\nbatolit\r\nbatolivější\r\nbatolivý\r\nBaťová\r\nbaťovský\r\nbatrachologický\r\nbatrachologie\r\nbatracholog\r\nbatrachologův\r\nbatracholožčin\r\nbatracholožka\r\nBatůšek\r\nBatůšková\r\nBatůškův\r\nBaťův\r\nbatůžek\r\nbaťůžek\r\nbaťůžkářčin\r\nbaťůžkářka\r\nbaťůžkář\r\nbaťůžkářův\r\nbatysféra\r\nbatyskaf\r\nbaud\r\nBaudyšová\r\nBaudyš\r\nBaudyšův\r\nBauerová\r\nBauer\r\nBauerův\r\nBaumanová\r\nBauman\r\nBaumanův\r\nBaumruková\r\nBaumruk\r\nBaumrukův\r\nbauxit\r\nbauxitový\r\nbavení\r\nbavený\r\nbavící\r\nbavič\r\nbavičův\r\nbavit\r\nbavlnářský\r\nbavlnářství\r\nbavlnář\r\nbavlnářův\r\nbavlna\r\nbavlněný\r\nbavlník\r\nbavlníkový\r\nbavlnka\r\nbavlnový\r\nBavoraččin\r\nBavoračka\r\nbavoráčtější\r\nbavorák\r\nBavorák\r\nBavor\r\nBavorov\r\nbavorovský\r\nBavorsko\r\nBavorsko\r\nbavorský\r\nbavorský\r\nBavorův\r\nBawerk\r\nBawerkův\r\nBaxa\r\nBaxová\r\nBaxův\r\nBayerová\r\nBayer\r\nBayerův\r\nbayesovský\r\nBayes\r\nBayesův\r\nBaytalonová\r\nBaytalon\r\nBaytalonův\r\nbazalka\r\nbazalkový\r\nbazálnější\r\nbazální\r\nbazalt\r\nbazaltový\r\nBazanacová\r\nBazanac\r\nBazanacův\r\nbazar\r\nbazarový\r\nbazének\r\nbazén\r\nbazénový\r\nbázeň\r\nbáze\r\nbázi\r\nbazicita\r\nbazický\r\nbazifilní\r\nbazilika\r\nbaziliščí\r\nbazilišek\r\nbaziliškův\r\nbazírování\r\nbazírovaný\r\nbazírovat\r\nbazírující\r\nBázlerová\r\nBázler\r\nBázlerův\r\nbázlivcův\r\nbázlivec\r\nbázlivější\r\nbázlivý\r\nbázovací\r\nbázování\r\nbázovaný\r\nbázovat\r\nbázový\r\nbázující\r\nbazuka\r\nbažantice\r\nbažantí\r\nbažantnice\r\nBažantová\r\nbažant\r\nBažant\r\nBažantův\r\nbažantův\r\nbaže\r\nbažení\r\nbažený\r\nbažící\r\nbažinatější\r\nbažinatý\r\nbažina\r\nbažinka\r\nbažinný\r\nbažit\r\nBBC\r\nBc\r\nbdělejší\r\nbdělý\r\nbděnější\r\nBdeněves\r\nbdeněveský\r\nbdění\r\nbdící\r\nBdín\r\nbdínský\r\nbdít\r\nbeachvolejbalista\r\nbeachvolejbalistčin\r\nbeachvolejbalistka\r\nbeachvolejbalistův\r\nbeánie\r\nBeata\r\nBeáta\r\nbeat\r\nbeatifikace\r\nBeatin\r\nBeátin\r\nBeatles\r\nbeatnice\r\nbeatnický\r\nbeatnik\r\nbeatnikův\r\nbeatový\r\nBeatrice\r\nBeatricin\r\nbebé\r\nbebíčko\r\nbeci\r\nbecích\r\nBeckovský\r\nBeckův\r\nbečení\r\nbečený\r\nbečet\r\nbečící\r\nBečička\r\nbečička\r\nBečičková\r\nBečičkův\r\nbečívání\r\nbečívat\r\nbečivý\r\nBečka\r\nbečka\r\nbéčko\r\nBečková\r\nbéčkový\r\nBečkův\r\nBečov\r\nbečovský\r\nBečvářová\r\nBečvář\r\nBečvářův\r\nBečva\r\nběd\r\nBéda\r\nBéďa\r\nběda\r\nbedekr\r\nbeder\r\nbederní\r\nbedland\r\nbedla\r\nbedlend\r\nbedlingtonský\r\nbedlivější\r\nbedlivý\r\nbedlovitý\r\nbedňák\r\nbedňákův\r\nbednárecký\r\nBednárec\r\nbednárna\r\nBednaříková\r\nBednařík\r\nBednaříkův\r\nBednářová\r\nbednářský\r\nbednářství\r\nbednář\r\nBednář\r\nBednářův\r\nbednářův\r\nbedna\r\nbědnější\r\nbednění\r\nbednící\r\nbednička\r\nbedničkový\r\nbednit\r\nbednovitý\r\nbědný\r\nbědování\r\nbědovat\r\nbedra\r\nbedrách\r\nbedrám\r\nbedrami\r\nbedrech\r\nBedrna\r\nbedrník\r\nBedrníková\r\nBedrník\r\nBedrníkův\r\nBedrnová\r\nBedrnův\r\nbedrům\r\nbedry\r\nBedřice\r\nbedřický\r\nBedřicha\r\nBedřichov\r\nbedřichovský\r\nBedřich\r\nBedřichův\r\nBedřiščin\r\nBedřišin\r\nBedřiška\r\nbeduínčin\r\nbeduínka\r\nbeduín\r\nbeduínský\r\nbeduínův\r\nbědující\r\nBédův\r\nBéďův\r\nbedýnka\r\nBeerův\r\nBeethoven\r\nBeethovenův\r\nBEF\r\nbegonie\r\nbegónie\r\nbegonka\r\nběhající\r\nběhák\r\nBěhálek\r\nBěhálková\r\nBěhálkův\r\nBěhalová\r\nBěhal\r\nBěhalův\r\nběhání\r\nběhaný\r\nBěhařov\r\nběhařovský\r\nběhat\r\nběhávání\r\nběhávaný\r\nběhávat\r\nbehavioralismus\r\nbehavioralista\r\nbehavioralistčin\r\nbehavioralistický\r\nbehavioralistka\r\nbehavioralistův\r\nbehaviorální\r\nbehaviorismus\r\nbehaviorista\r\nbehavioristčin\r\nbehavioristický\r\nbehavioristka\r\nbehavioristův\r\nběhavka\r\nBěhavý\r\nběhavý\r\nběhem\r\nběh\r\nběhna\r\nBěhounek\r\nběhoun\r\nBěhounková\r\nběhounkový\r\nBěhounkův\r\nběhounový\r\nběhovější\r\nběhový\r\nbecherovka\r\nBechlín\r\nbechlínský\r\nBěchovice\r\nběchovický\r\nBechyňáková\r\nBechyňák\r\nBechyňákův\r\nBechyně\r\nBechyně\r\nBechyňová\r\nBechyňsko\r\nbechyňský\r\nBechyňův\r\nBejček\r\nBejčková\r\nBejčkův\r\nBejdov\r\nbejkárna\r\nBejrová\r\nBejr\r\nBejrův\r\nbek\r\nbeka\r\nbekasina\r\nbekasína\r\nbekem\r\nbekhend\r\nbekhendový\r\nBeklová\r\nBekl\r\nBeklův\r\nbekot\r\nbekové\r\nbekovi\r\nbekovka\r\nbeku\r\nbeků\r\nbekům\r\nbekův\r\nbeky\r\nbekyně\r\nbělák\r\nbělákův\r\nbělání\r\nbělásek\r\nběláskův\r\nbělat\r\nbělavější\r\nbělavý\r\nBělá\r\nBela\r\nBěla\r\nBělčice\r\nbělčický\r\nbělčin\r\nBělehrad\r\nbělehradský\r\nbělejší\r\nBelém\r\nbelémský\r\nbělenější\r\nbělení\r\nbělený\r\nbělet\r\nbeletrický\r\nbeletrie\r\nbeletrista\r\nbeletristčin\r\nbeletristický\r\nbeletrističin\r\nbeletrističtější\r\nbeletristika\r\nbeletristka\r\nbeletristův\r\nbeletrizovanější\r\nbeletrizovaný\r\nbeletrizující\r\nBelfast\r\nbelfastský\r\nbelgický\r\nBelgičančin\r\nBelgičanka\r\nBelgičan\r\nBelgičanův\r\nbelgičtější\r\nBelgie\r\nbelhající\r\nbelhání\r\nbelhat\r\nbelhávání\r\nbelhávat\r\nbelhavý\r\nbělice\r\nbělicí\r\nbělící\r\nbělička\r\nbělič\r\nběličův\r\nbělidlo\r\nBělíková\r\nBělík\r\nBělíkův\r\nbělima\r\nBělina\r\nBělinová\r\nBělinův\r\nBělin\r\nbělírenský\r\nbělírna\r\nbělit\r\nBelizančin\r\nBelizanka\r\nBelizan\r\nBelizanův\r\nBelize\r\nbelizský\r\nBělka\r\nbělka\r\nBělková\r\nBělkovice\r\nbělkovický\r\nBělkův\r\nbellicoso\r\nbělmo\r\nBelmondo\r\nBelmondův\r\nběloba\r\nběločelý\r\nbělogvardějcův\r\nbělogvardějec\r\nbělogvardějský\r\nbělohlávčin\r\nBělohlávek\r\nbělohlávka\r\nBělohlávková\r\nBělohlávkův\r\nBělohlavová\r\nBělohlav\r\nBělohlavův\r\nbělohlavý\r\nbělohorský\r\nBělohoubek\r\nBělohoubková\r\nBělohoubkův\r\nBělohradský\r\nbělohřívý\r\nBělohubý\r\nběloch\r\nbělochův\r\nbělokorý\r\nbělokrevný\r\nbělokrký\r\nbělokřídlý\r\nbělokur\r\nbělokurův\r\nbělomech\r\nběloocasý\r\nbělopásek\r\nbělopáskův\r\nběloruččin\r\nběloručka\r\nBělorusčin\r\nBěloruska\r\nBělorusko\r\nběloruský\r\nbělorusový\r\nBělorus\r\nBělorusův\r\nběloruština\r\nbělořit\r\nbělořitův\r\nběloskvoucí\r\nběloskvrnáč\r\nběloskvrnáčův\r\nběloskvrný\r\nbělost\r\nbělostnější\r\nbělostný\r\nbělošedý\r\nběloška\r\nbělošský\r\nBělotín\r\nbělotínský\r\nběloučký\r\nbělounký\r\nbělouš\r\nběloušův\r\nBělov\r\nbělovlásčin\r\nbělovláska\r\nbělovlasý\r\nBělovský\r\nbělovský\r\nbělový\r\nbělozářka\r\nběložlutý\r\nbělský\r\nBělušice\r\nbělušický\r\nBélův\r\nbelveder\r\nBelzebub\r\nBelzebubův\r\nBenáček\r\nBenáčková\r\nBenáčkův\r\nBenáková\r\nBenák\r\nBenákův\r\nBenátčančin\r\nBenátčanka\r\nBenátčan\r\nbenátecký\r\nBenát\r\nBenátky\r\nBenátsko\r\nbenátský\r\nbenátský\r\nBenda\r\nBendíková\r\nBendík\r\nBendíkův\r\nBendlová\r\nBendl\r\nBendlův\r\nBendová\r\nBendův\r\nbendžo\r\nBenecko\r\nBenedekův\r\nbenedikcionál\r\nbenediktinčin\r\nbenediktinka\r\nbenediktin\r\nbenediktinský\r\nbenediktinův\r\nBenedikt\r\nBenediktův\r\nbenediktýn\r\nbenediktýnský\r\nbenediktýnův\r\nbenefice\r\nbeneficient\r\nbeneficientův\r\nbenefiční\r\nbenefit\r\nBenelux\r\nBenešová\r\nBenešovice\r\nbenešovický\r\nBenešov\r\nbenešovsko\r\nbenešovský\r\nbenešovský\r\nBeneš\r\nBenešův\r\nBenetice\r\nbenetický\r\nbenevolence\r\nbenevolentnější\r\nbenevolentnější\r\nbenevolentní\r\nBengálcův\r\nBengálec\r\nbengál\r\nBengálsko\r\nbengálský\r\nbengálština\r\nbenchmark\r\nbenchmarking\r\nbenchmarkový\r\nbenignější\r\nbenigní\r\nBeniňančin\r\nBeniňanka\r\nBeniňan\r\nBeniňanův\r\nBenincův\r\nBeninčin\r\nBeninec\r\nBenin\r\nBeninka\r\nbeninský\r\nBeníšek\r\nBeníšková\r\nBeníškův\r\nbenjamínek\r\nbenjamínkův\r\nBenjamín\r\nBenjamin\r\nBenjaminův\r\nBenjamínův\r\nBenkovský\r\nBeňo\r\nBeňová\r\nBeňov\r\nbeňovský\r\nbentický\r\nbentonit\r\nbentonitový\r\nBeňův\r\nbenzachlorid\r\nbenzalbromid\r\nbenzaldehyd\r\nbenzalkonia\r\nbenzen\r\nbenzenový\r\nbenzidin\r\nbenzin\r\nbenzín\r\nbenzínka\r\nbenzinový\r\nbenzínový\r\nbenzoan\r\nbenzofenon\r\nbenzoový\r\nbenzoylacetyl\r\nbenzoyl\r\nbenzoylchlorid\r\nbenzylalkohol\r\nbenzylanilín\r\nbenzylbromid\r\nbenzylcelulóza\r\nbenzylchlorid\r\nbenzylidenchlorid\r\nbenzylkyanid\r\nbenzylpyridinia\r\nberánčí\r\nberánek\r\nBeránek\r\nberanění\r\nberanice\r\nberanicový\r\nberanidlo\r\nberanit\r\nberaní\r\nberanka\r\nBeránková\r\nberánkový\r\nBeránkův\r\nberánkův\r\nBeranová\r\nberanovitý\r\nBeranov\r\nberanovský\r\nberanový\r\nberan\r\nBeran\r\nberanský\r\nBeranův\r\nberanův\r\nBerberčin\r\nberberin\r\nBerberka\r\nBerber\r\nberberský\r\nberberština\r\nBerberův\r\nbércový\r\nBerdychová\r\nBerdych\r\nBerdychův\r\nbérec\r\nBerek\r\nbergamot\r\nbergamotka\r\nbergamotový\r\nBergerová\r\nBerger\r\nBergerův\r\nBergmannová\r\nBergmann\r\nBergmannův\r\nBergmanová\r\nBergman\r\nBergmanův\r\nBergrová\r\nBergr\r\nBergrův\r\nbergsonismus\r\nBergson\r\nBergsonův\r\nBergův\r\nBering\r\nBeringův\r\nBerka\r\nBerkeley\r\nberkeliový\r\nberkelium\r\nBerková\r\nBerkův\r\nberla\r\nberle\r\nberlička\r\nBerlíňančin\r\nBerlíňanka\r\nBerlíňan\r\nBerlíňanův\r\nBerlín\r\nBerlín\r\nberlínský\r\nberlínský\r\nBermannová\r\nBermann\r\nBermannův\r\nBermuďančin\r\nBermuďanka\r\nBermuďan\r\nBermuďanův\r\nbermudský\r\nbermudský\r\nbermudský\r\nBermudy\r\nBermudy\r\nbermudy\r\nberňák\r\nBernardová\r\nBernardov\r\nbernardovský\r\nBernard\r\nBernardův\r\nbernardýn\r\nbernardýnův\r\nBernartice\r\nbernartický\r\nBernášek\r\nBernášková\r\nBernáškův\r\nBernatíková\r\nBernatík\r\nBernatíkův\r\nBernátová\r\nBernát\r\nBernátův\r\nberná\r\nBerndtová\r\nBerndt\r\nBerndtův\r\nberneška\r\nBernetová\r\nBernet\r\nBernetův\r\nBern\r\nberniční\r\nberní\r\nbernoláčtina\r\nbernolákovština\r\nbernský\r\nBerný\r\nberný\r\nberoucí\r\nBerounka\r\nBeroun\r\nBerounová\r\nBeroun\r\nBerounsko\r\nberounsko\r\nBerounský\r\nberounský\r\nBerounův\r\nBerta\r\nBertiččin\r\nBertička\r\nBertík\r\nBertíkův\r\nBertiniánský\r\nBertin\r\nBertramka\r\nbertrámový\r\nBertrand\r\nBertrandův\r\nberunka\r\nberuška\r\nberuškovitý\r\nberyl\r\nberyliový\r\nberylium\r\nberylnatý\r\nBeřkovice\r\nbeřkovický\r\nbeseda\r\nBesednice\r\nbesednický\r\nbesední\r\nbesedování\r\nbesedovat\r\nbesedovávání\r\nbesedovávat\r\nbesedující\r\nbesemerování\r\nběs\r\nbesídka\r\nbeskydský\r\nbeskydský\r\nBeskydy\r\nběsnění\r\nběsnící\r\nběsnit\r\nběsnivější\r\nběsnivý\r\nběsný\r\nbessemerovna\r\nbestialita\r\nbestiálnější\r\nbestiální\r\nbestiář\r\nbestie\r\nBěstovice\r\nběstovický\r\nbestseler\r\nbestseller\r\nBěstvina\r\nbešamelový\r\nBešťáková\r\nBešťák\r\nBešťákův\r\nBešta\r\nBěštín\r\nběštínský\r\nBeštová\r\nBeštův\r\nbetacelulóza\r\nbetaglukosid\r\nbetakarotén\r\nbetalainový\r\nbetanin\r\nbetatester\r\nbetatesterův\r\nbetatron\r\nbetaverze\r\nbeta\r\nBěta\r\nBětčin\r\nbetel\r\nbetelový\r\nBethlenův\r\nBětin\r\nBětka\r\nBetlacha\r\nBetlachová\r\nBetlachův\r\nbetlémářčin\r\nbetlémářka\r\nbetlémářství\r\nbetlémář\r\nbetlémářův\r\nBetlém\r\nbetlém\r\nbetlémový\r\nbetlémský\r\nbetlémský\r\nbetonárka\r\nbetonárna\r\nbetonářčin\r\nbetonářka\r\nbetonářský\r\nbetonářství\r\nbetonář\r\nbetonářův\r\nbetonáž\r\nbeton\r\nbetonka\r\nbetonování\r\nbetonovaný\r\nbetonovat\r\nbetonovávání\r\nbetonovávaný\r\nbetonovávat\r\nbetónový\r\nbetonový\r\nBětuščin\r\nBětuška\r\nBety\r\nBetynčin\r\nBetynka\r\nBetz\r\nBetzův\r\nBeustův\r\nbez\r\nBezáková\r\nBezák\r\nBezákův\r\nbezalkoholový\r\nbezatomový\r\nbezbalónový\r\nbezbarelový\r\nbezbariérovější\r\nbezbarierový\r\nbezbariérový\r\nbezbarvější\r\nbezbarvý\r\nbezbílkovinný\r\nbezbolestnější\r\nbezbolestný\r\nbezbožcův\r\nbezbožecký\r\nbezbožectví\r\nbezbožec\r\nbezbožnější\r\nbezbožnice\r\nbezbožničin\r\nbezbožník\r\nbezbožníkův\r\nbezbožný\r\nbezbrankový\r\nbezbrannější\r\nbezbranný\r\nbezbřehý\r\nbezbřežejší\r\nbezbuněčný\r\nbezcelní\r\nbezcennější\r\nbezcenný\r\nbezcílnější\r\nbezcílný\r\nbezcitnější\r\nbezcitný\r\nbezčasí\r\nbezčasovější\r\nbezčasový\r\nbezčepový\r\nbezčetnější\r\nbezčlunkový\r\nbezděčnější\r\nbezděčný\r\nBezdědice\r\nbezdědický\r\nBezdědovice\r\nbezdědovický\r\nbezdechý\r\nbezdějinný\r\nbezdějovější\r\nbezdějový\r\nBezděková\r\nBezděkov\r\nBezděkovský\r\nbezděkovský\r\nBezděk\r\nBezděkův\r\nbezděky\r\nbezdemontážní\r\nbezděrový\r\nbezdešší\r\nbezdětnější\r\nbezdětný\r\nbezdevizový\r\nBezděz\r\nbezdězský\r\nBezdíček\r\nBezdička\r\nBezdičková\r\nBezdíčková\r\nBezdičkův\r\nBezdíčkův\r\nbezdiskový\r\nbezdný\r\nbezdomovcův\r\nbezdomovectví\r\nbezdomovec\r\nbezdotykový\r\nbezdozvukový\r\nbezdrátový\r\nBezdrev\r\nbezdrevský\r\nbezdrogový\r\nBezdružice\r\nbezdružický\r\nbezdřevý\r\nbezduchý\r\nbezdušový\r\nbezdůvodnější\r\nbezdůvodný\r\nbezdýmný\r\nbezdýmový\r\nbezdýmý\r\nbeze\r\nbezectnější\r\nbezectný\r\nbezednější\r\nbezedný\r\nbezejmenný\r\nbezelstnější\r\nbezelstný\r\nbezenský\r\nbezerozní\r\nbezeslovný\r\nbezesmluvní\r\nbezesmyslný\r\nbezesnější\r\nbezesný\r\nbezespádový\r\nbezespornější\r\nbezesporný\r\nbezesporu\r\nbezeškodní\r\nbezešvý\r\nbezezbytkový\r\nbezezbytku\r\nbezeztrátový\r\nbezformátový\r\nbezfosfátový\r\nbezgólový\r\nbez\r\nbezhlasný\r\nbezhlasý\r\nbezhlavější\r\nbezhlavicový\r\nbezhlavičkový\r\nbezhlavý\r\nbezhlesný\r\nbezhlučný\r\nbezhmotný\r\nbezhotovostní\r\nbezhrotový\r\nbezhrotý\r\nbezhříšnější\r\nbezhříšný\r\nbezcharakternější\r\nbezcharakterní\r\nbezcholesterolový\r\nbezchybnější\r\nbezchybný\r\nbezchybový\r\nbezideový\r\nBeziére\r\nBeziérův\r\nbezinfekční\r\nbezinflační\r\nbezinka\r\nbezinkový\r\nbezinvenčnější\r\nbezjaderný\r\nbezjazýčkový\r\nbezkabelový\r\nbezkanálový\r\nbezkarbonátový\r\nbezkartáčový\r\nbezkofeinový\r\nbezkolejový\r\nbezkolencův\r\nbezkolenec\r\nbezkolíčkový\r\nbezkolizní\r\nbezkolový\r\nbezkomutátorový\r\nbezkoncepčnější\r\nbezkoncepční\r\nbezkonfesijní\r\nbezkonfesní\r\nbezkonfliktnější\r\nbezkonfliktní\r\nbezkonkurenčnější\r\nbezkonkurenční\r\nbezkontaktní\r\nbezkontextový\r\nbezkonvenční\r\nbezkostrový\r\nbezkouřový\r\nBezkov\r\nbezkovský\r\nbezkrevnější\r\nbezkrevný\r\nbezkřídlý\r\nbezkyslíkatý\r\nbezkyslíkový\r\nbezlepkový\r\nbezlesý\r\nbezletový\r\nbezlicenční\r\nbezlistý\r\nbezlodyžný\r\nbezmála\r\nbezmasý\r\nbezmatečný\r\nbezměrnější\r\nbezměrný\r\nBezměrov\r\nbezměrovský\r\nbezměsíčný\r\nbezmezerovitý\r\nbezmeznější\r\nbezmezný\r\nbezmocích\r\nbezmocím\r\nbezmoc\r\nbezmocnější\r\nbezmocný\r\nbezmotorový\r\nbezmozolnatý\r\nbezmračnější\r\nbezmračný\r\nbezmrazý\r\nbezmyšlenkovitější\r\nbezmyšlenkovitý\r\nbezmyšlenkový\r\nbeznadějnější\r\nbeznadějný\r\nbeznaděj\r\nbeznápravový\r\nbeznehodový\r\nbeznohý\r\nBezno\r\nbeznoska\r\nbezoárový\r\nbezobalový\r\nbezoblačnější\r\nbezoblačný\r\nbezobratlovcův\r\nbezobratlovec\r\nbezobratlý\r\nbezobřadní\r\nbezobsahový\r\nbezobsažnější\r\nbezobsažný\r\nbezobslužný\r\nbezobtokový\r\nbezocasý\r\nbezodběrový\r\nbezodkladnější\r\nbezodkladný\r\nbezodkladný\r\nbezodpadní\r\nbezodpadový\r\nbezodtokový\r\nbezohlednější\r\nbezohledný\r\nbezokénkový\r\nbezokenní\r\nbezoký\r\nbezolejový\r\nbezolovnatější\r\nbezolovnatý\r\nbezoporový\r\nbezostyšnější\r\nbezostyšný\r\nBezoušek\r\nBezouška\r\nBezoušková\r\nBezouškův\r\nbezový\r\nbezparametrický\r\nbezparametričtější\r\nbezparametrový\r\nbezpartijní\r\nbezpáteřnější\r\nbezpáteřnější\r\nbezpáteřní\r\nbezpáteřný\r\nbezpaticový\r\nbezpatičkový\r\nbezpatkový\r\nbezpečí\r\nbezpečnější\r\nbezpečnostnější\r\nbezpečnostněpolitický\r\nbezpečnostní\r\nbezpečný\r\nbezperspektivnější\r\nbezperspektivní\r\nbezpilotní\r\nbezpísmenný\r\nbezplanžetový\r\nbezplatnější\r\nbezplatný\r\nbezpočet\r\nbezpočetnější\r\nbezpočtu\r\nbezpočtukrát\r\nbezpodílový\r\nbezpodmínečnější\r\nbezpodmínečný\r\nbezpodstatnější\r\nbezpodstatný\r\nbezpohlavnější\r\nbezpohlavnější\r\nbezpohlavní\r\nbezpochybný\r\nbezpochyby\r\nbezpopelnatý\r\nbezporézní\r\nbezpórovitý\r\nbezporuchovější\r\nbezporuchový\r\nbezposunový\r\nbezpracnější\r\nbezpracný\r\nbezprahový\r\nbezprašnější\r\nbezprašný\r\nbezpráví\r\nbezprávnější\r\nbezprávnější\r\nbezprávný\r\nbezprecedenční\r\nbezprecedentnější\r\nbezprecedentní\r\nbezprecendentní\r\nbezprefixový\r\nbezprincipiální\r\nbezprizornější\r\nbezprizornější\r\nbezprizorný\r\nbezproblémovější\r\nbezproblémový\r\nbezprodlevový\r\nbezprogramový\r\nbezprostřednější\r\nbezprostřední\r\nbezproudový\r\nbezprstový\r\nbezprstý\r\nbezpředložkový\r\nbezpředmětnější\r\nbezpředmětný\r\nbezpředmětový\r\nbezpříčinný\r\nbezpříkladnější\r\nbezpříkladný\r\nbezpříkladný\r\nbezpříspěvkový\r\nbezpříznakový\r\nbezradnější\r\nbezradný\r\nbezrámový\r\nbezrizikový\r\nbezrodý\r\nbezrohý\r\nbezrozměrnější\r\nbezrozměrný\r\nbezrozporný\r\nbezručka\r\nBezručová\r\nBezruč\r\nBezručův\r\nbezruký\r\nbezřetězový\r\nbezserifový\r\nbezskrupulózní\r\nbezspojkový\r\nbezsrstý\r\nbezstarostnější\r\nbezstarostný\r\nbezstavový\r\nbezstébelný\r\nbezstelivový\r\nbezstrukturovaný\r\nbezstrunný\r\nbezstřevka\r\nbezstupňový\r\nbezstykový\r\nbezsymptomatický\r\nbezsymptomatičtější\r\nbezšnekový\r\nbezšňůrový\r\nbezšoupátkový\r\nbezšumovější\r\nbezšumový\r\nbeztak\r\nbeztaktní\r\nbeztalířový\r\nbeztíže\r\nbeztížný\r\nbeztlačítkový\r\nbeztlakový\r\nbeztlaký\r\nbeztoho\r\nbeztrestnější\r\nbeztrestný\r\nbeztřídnější\r\nbeztřídní\r\nbeztřískový\r\nbeztvarejší\r\nbeztvárný\r\nbeztvarý\r\nbeztvářnější\r\nbeztypový\r\nbezúčelnější\r\nbezúčelný\r\nbezúdržbový\r\nbezúhonnější\r\nbezúhonný\r\nBezucha\r\nBezuchová\r\nBezuchov\r\nbezuchovský\r\nBezuchův\r\nbezuchý\r\nbezúplatnější\r\nbezúplatný\r\nbezúročný\r\nbezúrodný\r\nbezúspěšnější\r\nbezúspěšný\r\nbezútěšnější\r\nbezútěšný\r\nbezuzdnější\r\nbezuzdný\r\nbezva\r\nbezvadnější\r\nbezvadný\r\nbezvaječný\r\nbezvědomější\r\nbezvědomý\r\nbezventilový\r\nbezvěrcův\r\nbezvěrecký\r\nbezvěrec\r\nbezvěrečtější\r\nBezvěrov\r\nbezvěrovský\r\nbezvětrnější\r\nbezvětrný\r\nbezvětří\r\nbezvěžový\r\nbezvidový\r\nbezvirový\r\nbezvízový\r\nbezvládí\r\nbezvládnější\r\nbezvládný\r\nbezvlasejší\r\nbezvlasý\r\nbezvodý\r\nbezvousejší\r\nbezvousý\r\nbezvřetenový\r\nbezvýhledný\r\nbezvýhradnější\r\nbezvýhradný\r\nbezvýchodnější\r\nbezvýchodný\r\nbezvýjimečný\r\nbezvýraznější\r\nbezvýrazný\r\nbezvýslednější\r\nbezvýsledný\r\nbezvývodový\r\nbezvýznamnější\r\nbezvýznamný\r\nbezvzdušný\r\nbezvztažný\r\nbezzájmový\r\nbezzákluzový\r\nbezzákonný\r\nbezzásadovější\r\nbezzásadový\r\nbezzásahový\r\nbezzemek\r\nbezzemkův\r\nbezztrátový\r\nbezzubový\r\nbezzubý\r\nbezženství\r\nbezživotí\r\nbezžloutkový\r\nběžcův\r\nbežecký\r\nběžecký\r\nběžec\r\nběžečtější\r\nběžencův\r\nběženčin\r\nběženec\r\nběžení\r\nběženka\r\nběženkyně\r\nběženkynin\r\nběžený\r\nběžet\r\nbežící\r\nběžící\r\nběžkařčin\r\nběžkařka\r\nběžkařský\r\nběžkař\r\nběžkařův\r\nběžka\r\nběžkyně\r\nběžkynin\r\nběžky\r\nběžnější\r\nběžný\r\nbéžový\r\nBGL\r\nBhópál\r\nbhópálský\r\nBhútáňančin\r\nBhútáňanka\r\nBhútáňan\r\nBhútáňanův\r\nBhútáncův\r\nBhútánčin\r\nBhútánec\r\nBhútán\r\nBhútánka\r\nbhútánský\r\nBi\r\nbiafinní\r\nbianco\r\nbianko\r\nbiatlon\r\nbiatlonista\r\nbiatlonistčin\r\nbiatlonistka\r\nbiatlonistův\r\nbiatlonový\r\nbibelot\r\nbible\r\nbiblický\r\nbibličtější\r\nbibliofilie\r\nbibliofil\r\nbibliofilský\r\nbibliofilství\r\nbibliofilštější\r\nbibliofilův\r\nbibliografický\r\nbibliografičtější\r\nbibliografie\r\nbibliograf\r\nbibliografův\r\nbibliometrický\r\nbibliometričtější\r\nbibliopsychologický\r\nbibliopsychologie\r\nbibliopsycholog\r\nbibliopsychologův\r\nbibliopsycholožčin\r\nbibliopsycholožka\r\nbibliotéčin\r\nbibliotékářčin\r\nbibliotékářka\r\nbibliotékář\r\nbibliotékářův\r\nbibliotéka\r\nbiblismus\r\nbiblista\r\nbiblistčin\r\nbiblistika\r\nbiblistka\r\nbiblistův\r\nbiblový\r\nBicanová\r\nBican\r\nBicanův\r\nbicarbona\r\nbiceps\r\nbicí\r\nbicykl\r\nbicyklický\r\nbicykličtější\r\nbicyklista\r\nbicyklistčin\r\nbicyklistka\r\nbicyklistův\r\nbicyklový\r\nBičáková\r\nBičák\r\nBičákův\r\nbičenka\r\nbičík\r\nBičíková\r\nbičíkovcův\r\nbičíkovec\r\nBičík\r\nBičíkův\r\nbičiště\r\nbičování\r\nbičovaný\r\nbičovat\r\nBičová\r\nbič\r\nBič\r\nBičův\r\nbídácký\r\nbídáctví\r\nbídák\r\nbídákův\r\nbída\r\nbidélko\r\nbidet\r\nbidetový\r\nbidlař\r\nbidlařův\r\nBidlasová\r\nBidlas\r\nBidlasův\r\nbidlo\r\nBidlo\r\nbidlování\r\nBidlová\r\nbidlový\r\nbidlující\r\nBidlův\r\nbídnější\r\nbídnice\r\nbídničin\r\nbídník\r\nbídníkův\r\nbídný\r\nBidrmanová\r\nBidrman\r\nBidrmanův\r\nbidýlko\r\nBiedermannová\r\nBiedermann\r\nBiedermannův\r\nbiedermeierovský\r\nbiedermeierský\r\nbienále\r\nBienerthový\r\nBienerthův\r\nbifenyl\r\nbifidobakteriální\r\nbifidobakterie\r\nbifidofilní\r\nbifidogenní\r\nbiflování\r\nbiflovaný\r\nbiflovat\r\nbiflovávání\r\nbiflovávaný\r\nbiflovávat\r\nbiflující\r\nbifokální\r\nbifteček\r\nbiftek\r\nbigamický\r\nbigamie\r\nbigamista\r\nbigamistčin\r\nbigamistka\r\nbigamistův\r\nbigbeat\r\nbigbeatový\r\nbigbít\r\nbigbítový\r\nbígl\r\nbíglův\r\nbigotnější\r\nbigotní\r\nbigram\r\nbigramový\r\nbihárský\r\nBiharyová\r\nBiharyův\r\nBihary\r\nBihellerová\r\nBiheller\r\nBihellerův\r\nbiják\r\nbijcův\r\nbijec\r\nbijekce\r\nbijící\r\nbíjící\r\nbikarbonát\r\nbikarbonátový\r\nbikategorie\r\nbikinky\r\nbikiny\r\nbikvadratický\r\nbilabiála\r\nbilabiální\r\nBiľak\r\nBiľakův\r\nbilance\r\nbilancování\r\nbilancovaný\r\nbilancovat\r\nbilancovávání\r\nbilancovávaný\r\nbilancovávat\r\nbilancující\r\nbilanční\r\nbilateralita\r\nbilaterální\r\nbilaterární\r\nBílá\r\nbilboard\r\nBílek\r\nbílek\r\nbílení\r\nbílený\r\nbiletářčin\r\nbiletářka\r\nbiletář\r\nbiletářův\r\nbiliarda\r\nbiliár\r\nbiliárový\r\nBílichov\r\nbílichovský\r\nBílina\r\nbilineární\r\nbilingvální\r\nbilingvismus\r\nbilingvistický\r\nbílinka\r\nbílinský\r\nbilion\r\nbilión\r\nbiliontina\r\nbilióntina\r\nbílit\r\nBílková\r\nbílkovina\r\nbílkovinný\r\nbílkovitý\r\nbílkový\r\nBílkův\r\nbillboard\r\nBill\r\nBillův\r\nbíločernější\r\nbíločerný\r\nbilokace\r\nbílo\r\nbílorezavý\r\nbílovecký\r\nBílovec\r\nBílovice\r\nbílovický\r\nBílov\r\nbílovský\r\nBílsko\r\nbílský\r\nbílský\r\nBílý\r\nbílý\r\nbim\r\nBíma\r\nbimbala\r\nbimbam\r\nbimbat\r\nbimetal\r\nbimetalický\r\nbimetaličtější\r\nbimetalový\r\nbimodul\r\nBímová\r\nBím\r\nBímův\r\nBína\r\nbinar\r\nbinarismus\r\nbinární\r\nbinaurální\r\nbinec\r\nbingo\r\nbinokl\r\nbinokulár\r\nbinokulární\r\nbinom\r\nbinomický\r\nBínová\r\nBínův\r\nbioaktivní\r\nbioanalýza\r\nbioanorganický\r\nbiocenóza\r\nbiocentričtější\r\nbiocentrismus\r\nbiocentristický\r\nbiocentrum\r\nbiocid\r\nbiocidní\r\nbiočip\r\nbiodegradabilní\r\nbiodegradace\r\nbiodegradovatelný\r\nbiodeterministický\r\nbiodiversita\r\nbiodiverzita\r\nbiodromální\r\nbiodynamičtější\r\nbioekvivalence\r\nbioelektrický\r\nbioelektričtější\r\nbioelektronika\r\nbioelektřina\r\nbioenergetický\r\nbioenergetika\r\nbioenzym\r\nbioetanol\r\nbioethanol\r\nbioetika\r\nbiofaktor\r\nbiofarmacie\r\nbiofeedback\r\nbiofiltr\r\nbiofyzikální\r\nbiofyzika\r\nbiofyziologický\r\nbiofyziologie\r\nbiofyziolog\r\nbiofyziologův\r\nbiofyzioložčin\r\nbiofyzioložka\r\nbiogenetika\r\nbiogeneze\r\nbiogenní\r\nbiogeografický\r\nbiogeografie\r\nbiogeosféra\r\nbiogerontologický\r\nbiogerontologie\r\nbiogerontolog\r\nbiogerontologův\r\nbiogerontoložčin\r\nbiogerontoložka\r\nbiograf\r\nbiografický\r\nbiografičtější\r\nbiografie\r\nbiografový\r\nbiohistorický\r\nbiohnojivo\r\nbiochemický\r\nbiochemiččin\r\nbiochemička\r\nbiochemie\r\nbiochemik\r\nbiochemikův\r\nbiochromatický\r\nbioindikátor\r\nbiointegrita\r\nbioinženýrčin\r\nbioinženýrka\r\nbioinženýr\r\nbioinženýrství\r\nbioinženýrův\r\nbiokatalýza\r\nbioklima\r\nbioklimatický\r\nbioklimatičtější\r\nbioklimatologický\r\nbioklimatologie\r\nbioklimatolog\r\nbioklimatologův\r\nbioklimatoložčin\r\nbioklimatoložka\r\nbiokompatibilita\r\nbiokompatibilní\r\nbiokonjungát\r\nbiokoridor\r\nbiokosmetika\r\nbiokybernetika\r\nbiologický\r\nbiologičtější\r\nbiologie\r\nbiologizující\r\nbiolog\r\nbiologův\r\nbioložčin\r\nbioložka\r\nbiomagnetismus\r\nbiomagnifikace\r\nbiomasa\r\nbiomedicína\r\nbiomedicínský\r\nbiomechanický\r\nbiomechaničtější\r\nbiomechanika\r\nbiomeliorace\r\nbiometanizace\r\nbiometeorologický\r\nbiometeorologie\r\nbiometeorolog\r\nbiometeorologův\r\nbiometeoroložčin\r\nbiometeoroložka\r\nbiometrický\r\nbiometričtější\r\nbiometrika\r\nbiom\r\nbiomolekulární\r\nbiomorfní\r\nbiomytologický\r\nbiomytologie\r\nbiomytolog\r\nbiomytologův\r\nbiomytoložčin\r\nbiomytoložka\r\nbionafta\r\nbionický\r\nbioničtější\r\nbionidikátor\r\nbionika\r\nbioorganický\r\nbioorganičtější\r\nbiopařeniště\r\nbioplazma\r\nbioplocha\r\nbioplyn\r\nbioplynový\r\nbiopolymer\r\nbiopotravina\r\nbiopreparát\r\nbioprodukt\r\nbiopředpověď\r\nbiopřípravek\r\nbiopsie\r\nbiopsychický\r\nbiopsychologický\r\nbiopsychologie\r\nbiopsycholog\r\nbiopsychologův\r\nbiopsycholožčin\r\nbiopsycholožka\r\nbiopsychosociální\r\nbioreaktor\r\nbiorezistentní\r\nbiorezonance\r\nbiorytmologický\r\nbiorytmologie\r\nbiorytmolog\r\nbiorytmologův\r\nbiorytmoložčin\r\nbiorytmoložka\r\nbiorytmus\r\nbiosémiotika\r\nbiosenzor\r\nbiosféra\r\nbiosférický\r\nbiosignál\r\nbiostimulační\r\nbiostimulátor\r\nbiosyntetický\r\nbiosyntéza\r\nbiosystém\r\nbiotechnický\r\nbiotechničtější\r\nbiotechnika\r\nbiotechnologický\r\nbiotechnologičtější\r\nbiotechnologie\r\nbiotechnolog\r\nbiotechnologův\r\nbiotechnoložčin\r\nbiotechnoložka\r\nbiotermický\r\nbiotermičtější\r\nbiotest\r\nbiot\r\nbiotický\r\nbiotičtější\r\nbiotin\r\nbiotit\r\nbiotitový\r\nbiotolerance\r\nbiotop\r\nbiotopový\r\nbiotroniččin\r\nbiotronička\r\nbiotronika\r\nbiotronik\r\nbiotronikův\r\nbiozátěž\r\nbiozemědělství\r\nbipartijní\r\nbipolárnější\r\nbipolární\r\nbipolitismus\r\nbiret\r\nBirmingham\r\nbirminghamský\r\nbiřic\r\nbiřicův\r\nBiřkov\r\nbiřkovský\r\nBířkův\r\nbiřmovací\r\nbiřmovancův\r\nbiřmovanec\r\nbiřmování\r\nbiřmovaný\r\nbiřmovat\r\nbiřmovatel\r\nbiřmovatelův\r\nbiřmovávat\r\nbisexualita\r\nbisexuálka\r\nbisexuální\r\nbisexuál\r\nbisexuálův\r\nbiskajský\r\nBiskupice\r\nbiskupický\r\nBiskupová\r\nBiskup\r\nbiskup\r\nbiskupský\r\nbiskupství\r\nbiskupštější\r\nBiskupův\r\nbiskupův\r\nbiskvit\r\nbismut\r\nbismutičný\r\nbismutitý\r\nBissau\r\nbissauský\r\nbistabilní\r\nbistatický\r\nbistro\r\nbisulfit\r\nbít\r\nbítešský\r\nBíteš\r\nbitevník\r\nbitevní\r\nbit\r\nbití\r\nbitka\r\nBitmanová\r\nBitman\r\nBitmanův\r\nbitmapa\r\nbitmapový\r\nBitnarová\r\nBitnar\r\nBitnarův\r\nbit\r\nbitonalita\r\nBítouchov\r\nbítouchovský\r\nBítovčice\r\nbítovčický\r\nBítov\r\nbítovský\r\nbitový\r\nBitozeves\r\nbitozeveský\r\nBittnerová\r\nBittner\r\nBittnerův\r\nBittová\r\nBitt\r\nBittův\r\nbitumen\r\nbitumenový\r\nbituminosní\r\nbituminózní\r\nbitva\r\nBítýška\r\nbitý\r\nbivak\r\nbivakovací\r\nbivakování\r\nbivakovaný\r\nbivakovat\r\nbivalentní\r\nbivektor\r\nbivojský\r\nBivoj\r\nBivojův\r\nbixin\r\nbizam\r\nbizamový\r\nbizarnější\r\nbizarnější\r\nbizarní\r\nbizoní\r\nbizon\r\nbizonův\r\nbižuterie\r\nbižutérie\r\nbižuterní\r\nbla\r\nblábolení\r\nblábolený\r\nblábol\r\nblábolící\r\nblábolit\r\nblábolivější\r\nblábolivý\r\nBlacková\r\nBlack\r\nBlackův\r\nblafák\r\nblaf\r\nblafování\r\nblafovaný\r\nblafovat\r\nblafovávání\r\nblafovávaný\r\nblafovávat\r\nblafující\r\nBláha\r\nBlaheta\r\nBlahetová\r\nBlahetův\r\nBlahníková\r\nBlahník\r\nBlahníkův\r\nblahobyt\r\nblahobytnější\r\nblahobytný\r\nblahodárnější\r\nblahodárný\r\nblaho\r\nBlahoňov\r\nblahoňovský\r\nblahopřání\r\nblahopřaný\r\nblahopřát\r\nblahopřejný\r\nblahořečení\r\nblahořečení\r\nblahořečený\r\nblahořečit\r\nblahosklonnější\r\nblahosklonný\r\nblahoslavenější\r\nblahoslavení\r\nblahoslavenství\r\nblahoslavený\r\nblahoslavený\r\nblahoslavit\r\nBlahoslav\r\nBlahoslavův\r\nblahostnější\r\nblahostný\r\nBlahošová\r\nBlahoš\r\nBlahošův\r\nBlahoudek\r\nBlahoudková\r\nBlahoudkův\r\nBlahoutová\r\nBlahout\r\nBlahoutův\r\nBláhová\r\nbláhovcův\r\nbláhovec\r\nbláhovější\r\nblahovičník\r\nblahovičníkový\r\nblahovolnější\r\nblahovolný\r\nblahovůle\r\nbláhový\r\nBlahůšek\r\nBlahůšková\r\nBlahůškův\r\nBlahutovice\r\nblahutovický\r\nBláhův\r\nblahý\r\nblairismus\r\nblairistický\r\nblamáž\r\nblamování\r\nblamovaný\r\nblamovat\r\nblan\r\nblanách\r\nblanám\r\nblanami\r\nblána\r\nBlanc\r\nBlanc\r\nBlancův\r\nBlančin\r\nBlanensko\r\nblanenský\r\nBlanice\r\nblanický\r\nBlaniččin\r\nBlanička\r\nBlaník\r\nblanitější\r\nblanitý\r\nBlanka\r\nblanka\r\nblanket\r\nblanketní\r\nblanketový\r\nblankoindosament\r\nblankosměnka\r\nblankvers\r\nblankyt\r\nblankytnější\r\nblankytný\r\nBlanné\r\nblanokřídlý\r\nblanou\r\nblánový\r\nBlansko\r\nblanský\r\nblasfemie\r\nblasfémie\r\nblastocysta\r\nblastomera\r\nblastula\r\nBlaškovičová\r\nBlaškovič\r\nBlaškovičův\r\nBlata\r\nblatecký\r\nBlatec\r\nblatenský\r\nBlatenský\r\nblátíčko\r\nblátivější\r\nblátivý\r\nBlatná\r\nBlatna\r\nBlatnice\r\nblatnice\r\nblatnický\r\nblatnička\r\nblatník\r\nblatníkový\r\nBlatný\r\nblato\r\nbláto\r\nblatouch\r\nblatouchový\r\nblátovitý\r\nblázen\r\nblazeovanější\r\nblazeovaný\r\nblázinec\r\nblázínek\r\nblázínkův\r\nblázna\r\nblázne\r\nbláznech\r\nbláznem\r\nbláznění\r\nblázněný\r\nblázni\r\nbláznit\r\nbláznivější\r\nbláznivina\r\nbláznivý\r\nbláznovi\r\nbláznovina\r\nbláznovský\r\nbláznovství\r\nbláznu\r\nbláznů\r\nbláznům\r\nbláznův\r\nblázny\r\nBláža\r\nBlažejová\r\nBlažejov\r\nblažejovský\r\nBlažej\r\nBlažejův\r\nBlažek\r\nBlažena\r\nBlaženčin\r\nblaženější\r\nBlaženin\r\nblažení\r\nBlaženka\r\nblažen\r\nblaženství\r\nblažený\r\nblažící\r\nBlažíček\r\nBlažíčková\r\nBlažíčkův\r\nBlážin\r\nblažit\r\nblaživý\r\nBlažková\r\nBlažkov\r\nblažkovský\r\nBlažkův\r\nBlažovice\r\nblažovický\r\nblbcův\r\nblbec\r\nblbeček\r\nblbečkův\r\nblbější\r\nblbina\r\nblbnout\r\nblbnutí\r\nblbnutý\r\nblboučký\r\nblboun\r\nblbounův\r\nblb\r\nblbůstka\r\nblbův\r\nblbý\r\nblebtnout\r\nblebtnutí\r\nblebtnutý\r\nbleději\r\nbleděmodrý\r\nbleděmodřejší\r\nbleděžlutější\r\nbleděžlutý\r\nblednička\r\nbledničkový\r\nblednoucí\r\nblednout\r\nblednutí\r\nbledomodrý\r\nbleďoučký\r\nbledší\r\nbledule\r\nbledý\r\nBlecha\r\nblechárna\r\nblecha\r\nBlechová\r\nBlechův\r\nblejno\r\nblejzr\r\nblekotání\r\nblekotaný\r\nblekotat\r\nblekotávání\r\nblekotávat\r\nblekotavější\r\nblekotavý\r\nBlekta\r\nBlektová\r\nBlektův\r\nblending\r\nbleptnout\r\nblesk\r\nblesknout\r\nblesknutí\r\nbleskojistka\r\nbleskojistkový\r\nbleskosvod\r\nbleskovější\r\nbleskovice\r\nbleskovka\r\nbleskový\r\nbleskurychlejší\r\nbleskurychlý\r\nBleša\r\nbleší\r\nbleška\r\nBlešno\r\nBlešová\r\nBlešův\r\nblikací\r\nblikač\r\nblikadlo\r\nblikající\r\nblikání\r\nblikat\r\nblikátko\r\nblikávání\r\nblikávat\r\nblikavější\r\nblikavý\r\nbliknout\r\nbliknutí\r\nblikotající\r\nblikotavější\r\nblikotavý\r\nblikot\r\nblín\r\nblinkací\r\nblinkání\r\nblinkaný\r\nBlinka\r\nblinkat\r\nblinkávat\r\nBlinková\r\nblinkr\r\nBlinkův\r\nblít\r\nblití\r\nblit\r\nblitý\r\nblívání\r\nblívaný\r\nblívat\r\nblizard\r\nblízat\r\nblízci\r\nblízek\r\nblízka\r\nblízko\r\nBlízkov\r\nblízkovský\r\nblízkovýchodní\r\nblízkozemní\r\nblízku\r\nblízky\r\nblízký\r\nblizna\r\nblíž\r\nblíže\r\nBlížejov\r\nblížejovský\r\nblížencův\r\nblíženčin\r\nblíženec\r\nblížení\r\nblíženka\r\nblížený\r\nBlíževedly\r\nblížící\r\nblížit\r\nBližkovice\r\nBlížkovice\r\nbližkovický\r\nblížkovický\r\nbližní\r\nbližší\r\nbloček\r\nBlodek\r\nBlodková\r\nBlodkův\r\nBlochová\r\nBloch\r\nBlochův\r\nblokace\r\nblokační\r\nblokáda\r\nblokátor\r\nblok\r\nblokovací\r\nblokovanější\r\nblokování\r\nblokovaný\r\nblokovat\r\nblokovávání\r\nblokovávaný\r\nblokovávat\r\nblokový\r\nblokující\r\nblond\r\nblonďáček\r\nblonďáčkův\r\nblonďák\r\nblonďákův\r\nblonďatější\r\nblonďatý\r\nblondýnka\r\nblondýn\r\nblondýnův\r\nBloudek\r\nbloudění\r\nbloudící\r\nbloudit\r\nbloudivý\r\nBloudková\r\nBloudkův\r\nbloud\r\nbloumající\r\nbloumání\r\nbloumaný\r\nbloumat\r\nbloumávat\r\nbloumavější\r\nbloumavý\r\nblouznění\r\nblouznící\r\nblouznit\r\nblouznivcův\r\nblouznivčin\r\nblouznivec\r\nblouznivější\r\nblouznivka\r\nblouznivý\r\nBlovice\r\nblovický\r\nBlovský\r\nBlšťáková\r\nBlšťák\r\nBlšťákův\r\nBlučina\r\nblučinský\r\nbludařčin\r\nbludařka\r\nbludařský\r\nbludařství\r\nbludařštější\r\nbludař\r\nbludařův\r\nBludenec\r\nblud\r\nbludice\r\nbludička\r\nbludičkový\r\nbludiště\r\nbludnější\r\nbludný\r\nBludovice\r\nbludovický\r\nBludov\r\nbludovský\r\nbluegrass\r\nbluegrassový\r\nblues\r\nbluesový\r\nbluesrockový\r\nbluesující\r\nbluf\r\nblufování\r\nblufovaný\r\nblufovat\r\nblufující\r\nbluma\r\nblumový\r\nblůza\r\nblůzička\r\nblůzka\r\nblýskající\r\nblýskání\r\nblýskaný\r\nblýskat\r\nblýskavější\r\nblýskavý\r\nblýsknout\r\nblýsknutí\r\nblyštění\r\nblyštět\r\nblyštící\r\nblyštit\r\nblyštivější\r\nblyštivý\r\nbm\r\nBNC\r\nboa\r\nBobčáková\r\nBobčák\r\nBobčákův\r\nbobeček\r\nbobečkův\r\nBobek\r\nbobek\r\nBobeš\r\nbob\r\nBobíkový\r\nbobina\r\nbobista\r\nbobistčin\r\nbobistka\r\nbobistův\r\nBobková\r\nbobkový\r\nBobkův\r\nBoblíková\r\nBoblík\r\nBoblíkův\r\nbobování\r\nbobovat\r\nbobovitý\r\nbobový\r\nBobrová\r\nbobrovina\r\nbobrovka\r\nbobrovský\r\nbobrový\r\nbobr\r\nBobr\r\nBobrůvka\r\nBobrův\r\nbobrův\r\nbobřík\r\nbobříkův\r\nbobří\r\nBobše\r\nBobšem\r\nBobši\r\nBobších\r\nBobšové\r\nBobšovi\r\nBobšů\r\nBobšům\r\nBobšův\r\nbobtail\r\nbobtailův\r\nbobtnající\r\nbobtnání\r\nbobtnat\r\nbobtnávání\r\nbobtnávat\r\nbobtnavý\r\nbobující\r\nbobule\r\nbobulka\r\nbobulovina\r\nbobulovitý\r\nbobulový\r\nBocov\r\nBoczanová\r\nBoczan\r\nBoczanův\r\nBočanová\r\nBočan\r\nBočanův\r\nBoček\r\nbočitý\r\nBočkaj\r\nBočkajův\r\nBočková\r\nBočkův\r\nbočnice\r\nbočník\r\nbočníkový\r\nboční\r\nbočný\r\nbodající\r\nbodák\r\nbodákový\r\nbodalka\r\nBodam\r\nBodamsko\r\nbodamský\r\nbodamský\r\nbodání\r\nbodaný\r\nbodat\r\nbodávání\r\nbodávaný\r\nbodávat\r\nbodavější\r\nbodavý\r\nbodec\r\nbodejť\r\nbodejž\r\nbod\r\nbodík\r\nbodláčí\r\nbodlák\r\nbodlákovitý\r\nbodlákový\r\nBodlináček\r\nBodlináčková\r\nBodlináčkův\r\nBodlina\r\nbodlinatější\r\nbodlinatý\r\nbodlina\r\nbodlinka\r\nBodlinová\r\nBodlinův\r\nbodlo\r\nbodnout\r\nbodnutí\r\nbodnutý\r\nbodný\r\nBodoni\r\nbodovací\r\nbodovačka\r\nbodovanější\r\nbodování\r\nbodovaný\r\nbodovat\r\nbodovější\r\nbodovka\r\nbodovost\r\nbodový\r\nBodrog\r\nbodrý\r\nbodřejší\r\nbodující\r\nbodyček\r\nbodyguard\r\nbodyguardův\r\nboemanský\r\nbogomilství\r\nBogota\r\nbogotský\r\nboha\r\nbohabojnější\r\nbohabojný\r\nBoháček\r\nBoháčková\r\nBoháčkův\r\nBoháčová\r\nboháč\r\nBoháč\r\nBoháčův\r\nboháčův\r\nBoháňka\r\nbohaprázdnější\r\nbohaprázdný\r\nbohapustější\r\nbohapustší\r\nbohapustý\r\nBohata\r\nbohatěji\r\nbohatější\r\nBohatice\r\nbohatický\r\nbohatnoucí\r\nbohatnout\r\nbohatnutí\r\nbohat\r\nBohatová\r\nbohatství\r\nbohatší\r\nBohatův\r\nbohatýr\r\nbohatýrský\r\nbohatýrův\r\nBohatý\r\nbohatý\r\nbohdá\r\nbohdalecký\r\nBohdalec\r\nBohdalín\r\nbohdalínský\r\nBohdalová\r\nBohdalovice\r\nbohdalovický\r\nBohdalov\r\nbohdalovský\r\nBohdal\r\nBohdalův\r\nBohdana\r\nBohdanče\r\nBohdanči\r\nBohdančí\r\nBohdaneč\r\nbohdanečský\r\nBohdanin\r\nBohdan\r\nBohdanův\r\nBohdašín\r\nbohdašínský\r\nBohdíkov\r\nbohdíkovský\r\nbohem\r\nbohéma\r\nbohémčin\r\nbohemismus\r\nbohemista\r\nbohemistčin\r\nbohemistický\r\nbohemistika\r\nbohemistka\r\nbohemistův\r\nbohémka\r\nbohém\r\nbohémský\r\nbohémství\r\nbohémštější\r\nbohémův\r\nBöhmová\r\nBöhm\r\nBöhmův\r\nBohnice\r\nbohnický\r\nboholidský\r\nbohorodička\r\nbohorovnější\r\nbohorovný\r\nbohoslovcův\r\nbohoslovecký\r\nbohoslovec\r\nbohosloví\r\nbohoslužba\r\nbohoslužebný\r\nBohostice\r\nbohostický\r\nBohouš\r\nBohoušův\r\nbohové\r\nbohovi\r\nbohrium\r\nBohr\r\nBohrův\r\nbohu\r\nbohů\r\nbohudík\r\nbohudíky\r\nbohulibější\r\nbohulibý\r\nbohům\r\nBohumila\r\nBohumilice\r\nbohumilický\r\nBohumilin\r\nBohumil\r\nBohumilův\r\nbohumilý\r\nBohumín\r\nbohumínský\r\nbohumínský\r\nBohumír\r\nBohumírův\r\nBohunčin\r\nBohunice\r\nbohunický\r\nBohunka\r\nBohuňovice\r\nbohuňovický\r\nBohuňov\r\nbohuňovský\r\nBohuslava\r\nBohuslávek\r\nBohuslavice\r\nbohuslavický\r\nBohuslavin\r\nBohuslávková\r\nBohuslávkův\r\nBohuslavová\r\nBohuslav\r\nBohuslavův\r\nBohuščin\r\nBohuška\r\nBohušovice\r\nbohušovický\r\nBohušov\r\nbohušovský\r\nBohutín\r\nbohutínský\r\nbohův\r\nbohužel\r\nbohy\r\nbohyně\r\nbochánek\r\nbochníček\r\nbochníčkovitější\r\nbochník\r\nbochníkovitější\r\nBochov\r\nbochovský\r\nboing\r\nbojácnější\r\nbojácný\r\nBojanovice\r\nbojanovický\r\nBojanov\r\nbojanovský\r\nbojar\r\nbojarův\r\nbojechtivější\r\nbojechtivý\r\nbojeschopnější\r\nbojeschopný\r\nboje\r\nbóje\r\nbojící\r\nbojíme\r\nbojím\r\nbojí\r\nbojínek\r\nbojíš\r\nbojiště\r\nbojíte\r\nBojka\r\nbójka\r\nbojkot\r\nbojkotování\r\nbojkotovaný\r\nbojkotovat\r\nbojkotovávání\r\nbojkotovávaný\r\nbojkotovávat\r\nbojkotující\r\nBojková\r\nBojkovice\r\nbojkovický\r\nBojkův\r\nbojler\r\nbojme\r\nboj\r\nbojování\r\nbojovaný\r\nbojovat\r\nbojovávání\r\nbojovávaný\r\nbojovávat\r\nbojovější\r\nbojovnější\r\nbojovnice\r\nbojovníček\r\nbojovníčkův\r\nbojovník\r\nbojovníkův\r\nbojovný\r\nbojový\r\nboj\r\nbojte\r\nbojující\r\nBój\r\nbojůvka\r\nBójův\r\nboka\r\nbokem\r\nbok\r\nbokorys\r\nbokorysna\r\nbokorysný\r\nbokovější\r\nbokovka\r\nbokový\r\nBokrová\r\nBokr\r\nBokrův\r\nboláček\r\nbolák\r\nBolatice\r\nbolatický\r\nbolavější\r\nbolavý\r\nBolcek\r\nBolcková\r\nBolckův\r\nbolehlav\r\nBolechová\r\nBolech\r\nBolechův\r\nBolek\r\nbolení\r\nbolen\r\nbolenův\r\nBoleradice\r\nboleradický\r\nbolerko\r\nbolero\r\nBoleslav\r\nBoleslav\r\nBoleslavsko\r\nboleslavský\r\nboleslavský\r\nBoleslavův\r\nbolestínčin\r\nbolestínka\r\nbolestiplnější\r\nbolestivější\r\nbolestivý\r\nbolest\r\nbolestnější\r\nbolestný\r\nbolet\r\nBoletice\r\nboletický\r\nbol\r\nbolhoj\r\nbolící\r\nbolid\r\nBolíkovice\r\nbolíkovický\r\nbolístka\r\nbolívar\r\nBolívie\r\nBolivijcův\r\nBolivijčin\r\nBolivijec\r\nBolivijka\r\nbolívijský\r\nbolivijský\r\nBolkov\r\nbolkovský\r\nBolkův\r\nBologna\r\nbolometrický\r\nBoloňa\r\nboloňský\r\nboloňský\r\nBolousek\r\nBolousková\r\nBolouskův\r\nbolševický\r\nbolševictví\r\nbolševiččin\r\nbolševička\r\nbolševičtější\r\nbolševik\r\nbolševikův\r\nbolševismus\r\nbolševizace\r\nbolševizovaný\r\nbolševizovat\r\nbolševizující\r\nbolševník\r\nboltcový\r\nboltec\r\nBolzano\r\nbombajský\r\nBombaj\r\nbombardér\r\nbombardovací\r\nbombardování\r\nbombardovaný\r\nbombardovat\r\nbombardovávání\r\nbombardovávaný\r\nbombardovávat\r\nbombardující\r\nbombastický\r\nbombastičtější\r\nbomba\r\nbomber\r\nbombička\r\nbombírovací\r\nbombírování\r\nbombírovaný\r\nbombírovat\r\nbombometčík\r\nbombometčíkův\r\nbombový\r\nBonaparte\r\nbonapartismus\r\nbonapartista\r\nbonapartistčin\r\nbonapartistický\r\nbonapartistka\r\nbonapartistův\r\nBonapartův\r\nBonaventura\r\nBonaventurová\r\nBonaventurův\r\nbona\r\nbonbonek\r\nbonbónek\r\nbonbon\r\nbonbón\r\nbonboniéra\r\nbonbónka\r\nbonbónový\r\nbond\r\nbondovštější\r\nBondyův\r\nBondy\r\nbon\r\nBonifác\r\nBonifácův\r\nbonifikace\r\nbonifikační\r\nbonifikování\r\nbonifikovaný\r\nbonifikovat\r\nbonitace\r\nbonitační\r\nbonita\r\nbonitnější\r\nbonitní\r\nbonitní\r\nbonitovaný\r\nBonitzův\r\nBoňkov\r\nboňkovský\r\nbonmot\r\nBonn\r\nbonnský\r\nbonsajcentrum\r\nbonsajista\r\nbonsajistčin\r\nbonsajistka\r\nbonsajistův\r\nbonsaj\r\nbonton\r\nbontón\r\nbonus\r\nbonusový\r\nbonzáctví\r\nbonzák\r\nbonzákův\r\nbonzování\r\nbonzovaný\r\nbonzovat\r\nbookmaker\r\nbookmakerův\r\nBoole\r\nbooleovský\r\nBooleův\r\nboolovský\r\nboom\r\nBOOTP\r\nBoráková\r\nBorák\r\nBorákův\r\nboran\r\nborax\r\nboraxový\r\nborcení\r\nborcený\r\nborcův\r\nBordeaux\r\nbordel\r\nbordelka\r\nbordelmamá\r\nbordó\r\nborec\r\nborelie\r\nborelioza\r\nborelióza\r\nborelovský\r\nBorešová\r\nBoreš\r\nBorešův\r\nBorga\r\nBorgová\r\nBorgův\r\nbor\r\nbór\r\nborid\r\nBoris\r\nBorisův\r\nboritan\r\nboritý\r\nborka\r\nBorkovcová\r\nBorkovcův\r\nBorkovec\r\nBorkovice\r\nborkovický\r\nBorkovský\r\nBorneo\r\nboromejčin\r\nboromejka\r\nBoromejský\r\nborosilikát\r\nborosilikátový\r\nborotermický\r\nborotermičtější\r\nBorotice\r\nborotický\r\nBorotín\r\nborotínský\r\nborovanský\r\nBorovany\r\nBorová\r\nBorovcová\r\nBorovcův\r\nBorovec\r\nborovější\r\nborovenský\r\nborovice\r\nborovicovitý\r\nborovicový\r\nBorovička\r\nborovička\r\nBorovičková\r\nborovičkový\r\nBorovičkův\r\nborovinka\r\nBorovná\r\nBorovnice\r\nborovnický\r\nBorovnička\r\nBorovno\r\nBorovský\r\nborovský\r\nbórový\r\nborový\r\nborrelióza\r\nborreliózní\r\nBorský\r\nBorský\r\nboršč\r\nBoršice\r\nboršický\r\nBoršov\r\nboršovský\r\nbort\r\nbortící\r\nbortit\r\nBorušov\r\nborušovský\r\nborůvčí\r\nBorůvka\r\nborůvka\r\nBorůvková\r\nborůvkoviště\r\nborůvkový\r\nBorůvkův\r\nBorýsek\r\nBorýsková\r\nBorýskův\r\nBořanovice\r\nbořanovický\r\nBořek\r\nboření\r\nbořený\r\nBořetín\r\nbořetínský\r\nbořící\r\nbořit\r\nBořitov\r\nbořitovský\r\nbořivější\r\nBořivoj\r\nBořivojův\r\nbořivý\r\nBořková\r\nBořkův\r\nbosácký\r\nbosáčtější\r\nBosáková\r\nbosák\r\nBosák\r\nBosákův\r\nbosákův\r\nbosáž\r\nbosenský\r\nBosch\r\nBoschův\r\nBoskovice\r\nboskovický\r\nBoskovštejn\r\nboskovštejnský\r\nbosky\r\nBosňančin\r\nBosňanka\r\nBosňan\r\nBosňanův\r\nBosna\r\nbos\r\nboson\r\nbosonohý\r\nbosonový\r\nbosorčin\r\nbosorka\r\nboss\r\nbossův\r\nBoston\r\nbostonský\r\nbostonský\r\nbosý\r\nBošice\r\nbošický\r\nbošilecký\r\nBošilec\r\nBošín\r\nbošínský\r\nBošovice\r\nbošovický\r\nbotanický\r\nbotaniččin\r\nbotanička\r\nbotanika\r\nbotanik\r\nbotanikův\r\nbotanizování\r\nbotanizovaný\r\nbotanizovat\r\nbotaska\r\nbota\r\nbotel\r\nbotička\r\nbotinka\r\nbotka\r\nbotník\r\nbotníkový\r\nbotrytidový\r\nBotswaňančin\r\nBotswaňanka\r\nBotswaňan\r\nBotswaňanův\r\nBotswana\r\nBotswancův\r\nBotswanec\r\nbotswanský\r\nbotulinový\r\nbotulismus\r\nbotulotoxin\r\nboubelatější\r\nboubelatý\r\nboubelka\r\nboubel\r\nBoubín\r\nboubínský\r\nBoublíková\r\nBoublík\r\nBoublíkův\r\nBouček\r\nBoučková\r\nBoučkův\r\nBouda\r\nbouda\r\nboudička\r\nBoudníková\r\nBoudník\r\nBoudníkův\r\nBoudová\r\nboudový\r\nBoudův\r\nbouchací\r\nbouchačka\r\nbouchající\r\nbouchání\r\nbouchaný\r\nbouchat\r\nbouchávání\r\nbouchávaný\r\nbouchávat\r\nBouchnerová\r\nBouchner\r\nBouchnerův\r\nbouchnout\r\nbouchnutí\r\nbouchnutý\r\nBoukalová\r\nBoukal\r\nBoukalův\r\nboulení\r\nboulený\r\nboule\r\nboulička\r\nboulit\r\nBouma\r\nBoumová\r\nBoumův\r\nbourací\r\nbouračka\r\nbouračkový\r\nbourající\r\nbourák\r\nbourání\r\nbouraný\r\nBoura\r\nbourárenský\r\nbourárna\r\nbourat\r\nbourávání\r\nbourávaný\r\nbourávat\r\nBourbon\r\nBourbounský\r\nbourcův\r\nbourec\r\nBourek\r\nBourková\r\nBourkův\r\nBourová\r\nBourův\r\nbouření\r\nbouřený\r\nbouře\r\nbouřící\r\nbouřit\r\nbouřka\r\nbouřkový\r\nbouřliváčtější\r\nbouřlivák\r\nbouřlivákův\r\nbouřlivější\r\nbouřlivý\r\nbouřnější\r\nbouřný\r\nbouř\r\nBousín\r\nbousínský\r\nBousov\r\nbousovský\r\nBoušek\r\nBouše\r\nBouška\r\nBoušková\r\nBouškův\r\nBoušová\r\nBoušův\r\nboutique\r\nBouvetův\r\nBouzek\r\nBouzková\r\nBouzkův\r\nBouzov\r\nbouzovský\r\nbovinní\r\nbowling\r\nbowlingový\r\nBowman\r\nBowmanův\r\nboxer\r\nboxerský\r\nboxerštější\r\nboxerův\r\nbox\r\nboxovací\r\nboxování\r\nboxovaný\r\nboxovat\r\nboxovávání\r\nboxovávaný\r\nboxovávat\r\nboxový\r\nboxující\r\nBoyonová\r\nBoyon\r\nBoyonův\r\nBozděchová\r\nBozděch\r\nBozděchův\r\nbozi\r\nbozích\r\nBozkov\r\nbozkovský\r\nBožanov\r\nbožanovský\r\nbože\r\nBožejov\r\nbožejovský\r\nBožek\r\nBožena\r\nBoženčin\r\nBoženin\r\nBoženka\r\nBožetice\r\nbožetický\r\nBožice\r\nbožický\r\nbožihodový\r\nbožíhodový\r\nbožítělový\r\nboží\r\nBožková\r\nBožkov\r\nbožkovský\r\nBožkův\r\nbožský\r\nbožství\r\nbožstvo\r\nbožštější\r\nBq\r\nbr\r\nbrabantský\r\nBrabcová\r\nBrabcův\r\nBrabec\r\nBrabencová\r\nBrabencův\r\nBrabenec\r\nBrablcová\r\nBrablc\r\nBrablcův\r\nBracegirdlův\r\nbradáček\r\nBradáčová\r\nBradáčov\r\nbradáčovský\r\nBradáč\r\nBradáčův\r\nbradáčův\r\nBrada\r\nbradatější\r\nbradatý\r\nbradavice\r\nbradavička\r\nbradavičnatý\r\nbradavka\r\nbradavkový\r\nbrada\r\nBradbury\r\nbradfordský\r\nbradička\r\nBradíková\r\nBradík\r\nBradíkův\r\nbradka\r\nBradlec\r\nBrádlerová\r\nBrádler\r\nBrádlerův\r\nbradlo\r\nBradna\r\nBradnová\r\nBradnův\r\nBradová\r\nbradový\r\nBradův\r\nbrah\r\nbráhmanismus\r\nbráhman\r\nbráhmanský\r\nbráhmanův\r\nBrahms\r\nBrahmsův\r\nbrácha\r\nbrach\r\nbrachův\r\nbráchův\r\nBraierová\r\nBraier\r\nBraierův\r\nBraille\r\nbrailleův\r\nbraillský\r\nBraillův\r\nbrainstorming\r\nbrajgl\r\nbrak\r\nbrakický\r\nbrakičtější\r\nbrakování\r\nbrakovaný\r\nbrakovat\r\nbrakovější\r\nbrakový\r\nbrakteát\r\nbrakýř\r\nbrakýřův\r\nBralce\r\nBralcem\r\nBralci\r\nbramboráček\r\nbramboračka\r\nbramborák\r\nbramborákový\r\nbramborárna\r\nbramborářský\r\nbrambora\r\nbrambor\r\nbramborovější\r\nbramborovitější\r\nbramborový\r\nbrambořík\r\nbrambořiště\r\nbrambůrek\r\nbrambůrka\r\nbran\r\nbranách\r\nbranám\r\nbranami\r\nbrána\r\nbrancův\r\nBranda\r\nBrandejsová\r\nBrandejs\r\nBrandejsův\r\nBrandlová\r\nBrandl\r\nBrandlův\r\nBrandová\r\nBrandov\r\nbrandovský\r\nBrandův\r\nbrandy\r\nBrandýský\r\nBrandýsová\r\nBrandýs\r\nBrandýsův\r\nbranec\r\nbranečtější\r\nbranější\r\nbránění\r\nbranenský\r\nbráněný\r\nbranibor\r\nBraniborsko\r\nbraniborský\r\nBranice\r\nBránice\r\nbránice\r\nbránící\r\nbranický\r\nbránický\r\nbrániční\r\nBráník\r\nBranislavová\r\nBranislav\r\nBranislavův\r\nbraní\r\nBraníškov\r\nbraníškovský\r\nBranišová\r\nBranišovice\r\nbranišovický\r\nBranišov\r\nbranišovský\r\nBraniš\r\nBranišův\r\nbránit\r\nbrankařčin\r\nbrankářčin\r\nbrankařka\r\nbrankářka\r\nbrankářský\r\nbrankař\r\nbrankář\r\nbrankařův\r\nbrankářův\r\nbranka\r\nBrankovice\r\nbrankovický\r\nbrankoviště\r\nbrankový\r\nBranná\r\nbranný\r\nbranou\r\nBranov\r\nbranovský\r\nBrantice\r\nbrantický\r\nbraný\r\nbranže\r\nbranžežský\r\nBranžež\r\nBraslavův\r\nbráška\r\nBraškov\r\nbraškovský\r\nbráškův\r\nbrašnářčin\r\nbrašnářka\r\nbrašnářský\r\nbrašnářství\r\nbrašnář\r\nbrašnářův\r\nbrašna\r\nbrašnička\r\nBrašov\r\nbrašovský\r\nbrát\r\nBratčice\r\nbratčický\r\nBratinka\r\nBratinková\r\nBratinkův\r\nBratislavančin\r\nBratislavanka\r\nBratislavan\r\nBratislavanův\r\nBratislava\r\nbratislavocentrismus\r\nbratislavský\r\nBrátová\r\nBrát\r\nbratrancův\r\nbratranec\r\nbratránek\r\nbratránkův\r\nBratronice\r\nbratronický\r\nbratrovrah\r\nbratrovrahův\r\nbratrovražda\r\nbratrovražednější\r\nbratrovražedný\r\nbratr\r\nbratrský\r\nbratrství\r\nbratrstvo\r\nbratrštější\r\nBratrušov\r\nbratrušovský\r\nbratrův\r\nBratřejov\r\nbratřejovský\r\nbratření\r\nbratřený\r\nbratří\r\nBratřice\r\nbratřický\r\nbratříček\r\nbratříčkování\r\nbratříčkovat\r\nbratříčkův\r\nbratřích\r\nbratřím\r\nbratřími\r\nBratřínov\r\nbratřínovský\r\nbratřit\r\nBrátův\r\nbraun\r\nbraunit\r\nBraunová\r\nBraun\r\nBraunův\r\nbrav\r\nbrávání\r\nbrávaný\r\nbrávat\r\nbrave\r\nbravem\r\nbravo\r\nbravu\r\nbravura\r\nbravurní\r\nBrázda\r\nbrázda\r\nbrázdění\r\nbrázděný\r\nbrázdicí\r\nbrázdící\r\nbrázdička\r\nBrázdilová\r\nBrázdil\r\nBrázdilův\r\nbrázdit\r\nBrázdová\r\nbrázdový\r\nBrázdův\r\nBrazilcův\r\nBrazilčin\r\nBrazilec\r\nBrazílie\r\nBrazilka\r\nbrazilský\r\nbrblající\r\nbrblání\r\nbrblat\r\nbrčál\r\nbrčálový\r\nbrčko\r\nBrdečka\r\nBrdečková\r\nBrdečkův\r\nBrdička\r\nBrdičková\r\nBrdičkův\r\nbrdo\r\nbrdský\r\nbreakpoint\r\nbreakující\r\nbrebencení\r\nbrebencený\r\nbrebentění\r\nbrebentící\r\nbrebentilčin\r\nbrebentilka\r\nbrebentit\r\nBrebera\r\nbreberka\r\nBreberová\r\nBreberův\r\nbrebtání\r\nbrebtaný\r\nbrebtat\r\nbrebtavý\r\nbrebta\r\nbrečení\r\nbrečet\r\nbrečící\r\nBrehm\r\nBrehmův\r\nBrejcha\r\nBrejchová\r\nBrejchův\r\nbrejk\r\nbrejkovat\r\nbrejlatý\r\nbrejle\r\nbrejličky\r\nbrejlovcův\r\nbrejlovec\r\nbrejlový\r\nbrekcie\r\nbrekciový\r\nbrek\r\nbrekot\r\nbrektát\r\nBrémský\r\nBrémy\r\nBrendlová\r\nBrendl\r\nBrendlův\r\nbreptající\r\nbreptání\r\nbreptaný\r\nbreptat\r\nbreptavější\r\nbreptavý\r\nbrepta\r\nbreptnout\r\nbreptnutí\r\nbreptnutý\r\nBrescie\r\nBrest\r\nbrestský\r\nBretagne\r\nbretaňský\r\nBretaň\r\nBretončin\r\nBretonec\r\nBretonecův\r\nBretonka\r\nbretonový\r\nbretonština\r\nbreviář\r\nbrevíř\r\nBrezina\r\nBrezinová\r\nBrezinův\r\nBrezovský\r\nbrežněvismus\r\nBrežněv\r\nBrežněvův\r\nbrhlík\r\nbrhlíkův\r\nBrian\r\nBrianův\r\nbridge\r\nBridziková\r\nBridzik\r\nBridzikův\r\nbridžový\r\nbridž\r\nbriefing\r\nbriefingový\r\nbrífink\r\nbrigáda\r\nbrigádnice\r\nbrigádnický\r\nbrigádničtější\r\nbrigádník\r\nbrigádníkův\r\nbrigádní\r\nbrigadýrka\r\nbrigadýr\r\nbrigadýrův\r\nbriga\r\nBrigita\r\nBrigitin\r\nbriketa\r\nbriketka\r\nbriketovací\r\nbriketování\r\nbriketovaný\r\nbriketovat\r\nbrilance\r\nbrilantina\r\nbrilantnější\r\nbrilantní\r\nbriliant\r\nbriliantový\r\nbrioso\r\nbrioška\r\nBriscejnová\r\nBriscejn\r\nBriscejnův\r\nBristol\r\nbristolský\r\nBritánie\r\nbritanský\r\nBrit\r\nbritskoindický\r\nbritskoněmecký\r\nbritský\r\nbritštější\r\nBritův\r\nbrizantnější\r\nbríza\r\nbrkat\r\nbrk\r\nbrknout\r\nbrko\r\nbrkoslav\r\nbrkoslavův\r\nbrlení\r\nbrloh\r\nBrňaččin\r\nBrňačka\r\nBrňančin\r\nBrňanka\r\nBrňan\r\nBrňanův\r\nbrňanův\r\nbrňavka\r\nbrněnecký\r\nBrněnec\r\nbrnění\r\nBrněnsko\r\nbrněnsko\r\nbrněnský\r\nbrněnský\r\nbrněnštější\r\nbrnět\r\nBrníčko\r\nBrnířov\r\nbrnířovský\r\nbrnivý\r\nbrnk\r\nbrnkačka\r\nbrnkání\r\nbrnkaný\r\nbrnkat\r\nbrnkávat\r\nbrnknout\r\nbrnknutí\r\nbrnknutý\r\nbrnky\r\nbrnocentrismus\r\nBrno\r\nbroadwayský\r\nBroadway\r\nBrodce\r\nBrodcemi\r\nBrodcích\r\nBrodců\r\nBrodcům\r\nbrodecký\r\nBrodek\r\nbrodění\r\nbroděný\r\nbrod\r\nbrodiště\r\nbrodit\r\nbrodivý\r\nbrodový\r\nBrodský\r\nbrojení\r\nbrojící\r\nbrojit\r\nbrojlerový\r\nbrojler\r\nbrojlerův\r\nbrokař\r\nbrokařův\r\nbrokát\r\nbrokátový\r\nbroker\r\nbrokerský\r\nbrokerův\r\nbrok\r\nbrokolice\r\nbrokolicový\r\nbrokovnice\r\nbrokový\r\nbromelain\r\nbromelin\r\nbroméliovitý\r\nbrom\r\nbróm\r\nbromhexin\r\nbromičnan\r\nbromičný\r\nbromid\r\nbromistan\r\nbromistý\r\nbromitan\r\nbromitý\r\nbromovaný\r\nBromová\r\nbromovodík\r\nbromovodíkový\r\nbromový\r\nBrom\r\nBromův\r\nBroňčin\r\nBroněk\r\nbronchiální\r\nbronchiolitida\r\nbronchitický\r\nbronchitida\r\nbronchitis\r\nbronchopneumonický\r\nbronchopneumonie\r\nbronchus\r\nBronislava\r\nBronislavin\r\nBronislav\r\nBronislavův\r\nBroňka\r\nBroňkův\r\nbrontosaurus\r\nbrontosaurus\r\nbrontosaurův\r\nbrontosauři\r\nbronz\r\nbronzířství\r\nbronzíř\r\nbronzířův\r\nbronzit\r\nbronzitový\r\nbronzovací\r\nbronzování\r\nbronzovaný\r\nbronzovat\r\nbronzový\r\nbroskev\r\nbroskvoň\r\nbroskvovice\r\nbroskvový\r\nbrosma\r\nBrotánek\r\nBrotánková\r\nBrotánkův\r\nbrotanový\r\nBrothánek\r\nBrothánková\r\nBrothánkův\r\nBrotzová\r\nBrotz\r\nBrotzův\r\nbrouček\r\nBrouček\r\nbroučkiáda\r\nBroučková\r\nbroučkový\r\nBroučkův\r\nbroučkův\r\nbroukání\r\nbroukaný\r\nbroukat\r\nbroukávat\r\nbrouknout\r\nbrouk\r\nbroukův\r\nBroulíková\r\nBroulík\r\nBroulíkův\r\nBroumov\r\nBroumovsko\r\nbroumovský\r\nBrousek\r\nbrousek\r\nbrousicí\r\nbrousící\r\nbrousit\r\nBrousková\r\nbrouskový\r\nBrouskův\r\nbroušenější\r\nbroušení\r\nbroušený\r\nbrouzdající\r\nbrouzdaliště\r\nbrouzdání\r\nbrouzdaný\r\nbrouzdat\r\nbrovnink\r\nbrowning\r\nbrowningový\r\nBrown\r\nBrownův\r\nbrowser\r\nBrožek\r\nBrožíková\r\nBrožík\r\nBrožíkův\r\nbrožka\r\nBrožková\r\nBrožkův\r\nbrožovací\r\nbrožování\r\nbrožovaný\r\nbrožovat\r\nBrožová\r\nbrožura\r\nbrožurka\r\nbrožurkový\r\nbrožurový\r\nBrož\r\nBrožův\r\nbrož\r\nbrr\r\nbrrr\r\nbrslen\r\nbršlice\r\nBRT\r\nBrtnice\r\nBrtnický\r\nbrtnický\r\nBrtnička\r\nbrtník\r\nbrtníkův\r\nBrťov\r\nbrťovský\r\nbrucela\r\nbrucelóza\r\nbrucelózní\r\nBrucknerová\r\nBruckner\r\nBrucknerův\r\nbručení\r\nbručený\r\nbručet\r\nbručící\r\nbručivější\r\nbručivý\r\nbručoun\r\nbručounství\r\nbručounův\r\nBruha\r\nBrůha\r\nBruhová\r\nBrůhová\r\nBruhův\r\nBrůhův\r\nBrůcha\r\nBrůchová\r\nBrůchův\r\nbrukev\r\nBruknerová\r\nBrukner\r\nBruknerův\r\nbrukvovitý\r\nbrukvový\r\nbrumlání\r\nbrumlaný\r\nbrumlat\r\nbrumlávání\r\nbrumlávat\r\nbrumlavější\r\nbrumlavý\r\nBrumovice\r\nbrumovický\r\nBrumov\r\nbrumovský\r\nBruna\r\nBrůna\r\nbrunátnější\r\nbrunátný\r\nBrunclíková\r\nBrunclík\r\nBrunclíkův\r\nbrundibár\r\nbrundibárův\r\nBrunejcův\r\nBrunejčin\r\nBrunejec\r\nBrunejka\r\nbrunejský\r\nBrunej\r\nbruneta\r\nbrunetčin\r\nbrunetka\r\nbrunet\r\nbrunetův\r\nBruno\r\nBrunová\r\nBrůnová\r\nBrunšvický\r\nBrunšvik\r\nBruntál\r\nBruntálsko\r\nbruntálský\r\nBrunův\r\nBrůnův\r\nBrusel\r\nbruselský\r\nbrusenský\r\nbrus\r\nbrusiččin\r\nbrusička\r\nbrusičský\r\nbrusičství\r\nbrusič\r\nbrusičův\r\nbrusinka\r\nbrusinkový\r\nbrusírna\r\nbrusivo\r\nbrusivý\r\nbruska\r\nbruslařčin\r\nbruslařka\r\nbruslařkovitý\r\nbruslařský\r\nbruslař\r\nbruslařův\r\nbruslení\r\nbrusle\r\nbruslící\r\nbrusliččin\r\nbruslička\r\nbruslit\r\nBrusná\r\nBrusné\r\nbrusnice\r\nbrusný\r\nBrušáková\r\nBrušák\r\nBrušákův\r\nBrušperk\r\nbrutalismus\r\nbrutalita\r\nbrutalizující\r\nbrutálnější\r\nbrutální\r\nbrutto\r\nBruzovice\r\nbruzovický\r\nBrůžek\r\nBrůžková\r\nBrůžkův\r\nbrva\r\nbrvitý\r\nbryčka\r\nBrychová\r\nBrych\r\nBrychta\r\nBrychtová\r\nBrychtův\r\nBrychův\r\nBryknarová\r\nBryknar\r\nBryknarův\r\nbrýlatý\r\nbrýle\r\nbrýlový\r\nbryndáček\r\nbryndák\r\nbryndání\r\nbryndaný\r\nbryndat\r\nbrynda\r\nbryndův\r\nBrynychová\r\nBrynych\r\nBrynychův\r\nbrynzárna\r\nbrynza\r\nbrynzový\r\nbrysknější\r\nbryskní\r\nbrytonský\r\nBrzáková\r\nBrzák\r\nBrzákův\r\nbrzčejší\r\nbrzdařský\r\nbrzdař\r\nbrzdařův\r\nbrzda\r\nbrzdění\r\nbrzděný\r\nbrzdicí\r\nbrzdící\r\nbrzdič\r\nbrzdičův\r\nbrzdit\r\nbrzdivý\r\nbrzdný\r\nbrzdový\r\nBrzek\r\nBrzezina\r\nBrzezinová\r\nBrzezinův\r\nbrzičko\r\nbrzičký\r\nBrzková\r\nBrzkov\r\nbrzkovský\r\nBrzkův\r\nbrzký\r\nbrzlík\r\nbrzo\r\nBrzobohatý\r\nbrzy\r\nBřeclav\r\nBřeclavsko\r\nbřeclavský\r\nbřečka\r\nbřečkovitější\r\nbřečkovitý\r\nBřečkov\r\nbřečkovský\r\nbřečťan\r\nbřečťanový\r\nbřeh\r\nbřehouš\r\nbřehoušův\r\nBřehov\r\nbřehovský\r\nbřehový\r\nbřehule\r\nbřek\r\nbřekyně\r\nbřemene\r\nbřemeno\r\nbřesknější\r\nbřeskný\r\nBřéťa\r\nBřetislav\r\nBřetislavův\r\nBřéťův\r\nbřevno\r\nBřevnov\r\nbřevnovský\r\nbřevnovský\r\nBřevnový\r\nbřezen\r\nbřezenský\r\nBřezíková\r\nBřezík\r\nBřezíkův\r\nBřezina\r\nbřezina\r\nbřezinka\r\nBřezinová\r\nBřezinův\r\nbřezivý\r\nbřezí\r\nbřezňačka\r\nBřezná\r\nBřeznice\r\nbřeznický\r\nBřezno\r\nbřeznový\r\nBřezová\r\nBřezovice\r\nbřezovický\r\nbřezovský\r\nbřezový\r\nBřezské\r\nBřezsko\r\nbřežanský\r\nBřežany\r\nBřežnice\r\nBřežský\r\nbřežský\r\nbřídil\r\nbřídilštější\r\nbřídilův\r\nbřidlice\r\nbřidlicovitý\r\nbřidlicový\r\nbřidličenský\r\nbřidličnatý\r\nBřidličná\r\nbřidličný\r\nBřicháček\r\nBřicháčková\r\nBřicháčkův\r\nbřicháč\r\nbřicháčův\r\nbřichatější\r\nbřichatět\r\nbřichatka\r\nbřichatkotvarý\r\nbřichatý\r\nbřich\r\nbřichomluvcův\r\nbřichomluvectví\r\nbřichomluvec\r\nbřicho\r\nbřichovitý\r\nbřímě\r\nbřímě\r\nbřink\r\nbřinkat\r\nbřinkavější\r\nbřinkavý\r\nbřinknout\r\nbřiše\r\nbříško\r\nbřišní\r\nBříštěla\r\nBříštělová\r\nBříštělův\r\nbřitčí\r\nbřit\r\nbřitký\r\nbřitový\r\nbřitva\r\nBříza\r\nbříza\r\nbřízka\r\nbřízolitový\r\nbřízotvarý\r\nBřízová\r\nbřízovitý\r\nbřízový\r\nBřízův\r\nBSD\r\nBSE\r\nBTA\r\nbto\r\nbu\r\nbú\r\nBubáková\r\nbubák\r\nBubák\r\nBubákův\r\nbubákův\r\nbubeneč\r\nbubeníček\r\nBubeníček\r\nBubeníčková\r\nBubeníčkův\r\nbubeníčkův\r\nBubeníková\r\nbubeník\r\nBubeník\r\nBubeníkův\r\nbubeníkův\r\nbuben\r\nbubínek\r\nbubínkový\r\nbublající\r\nbublanina\r\nbublání\r\nbublat\r\nbublávat\r\nBublava\r\nbublavější\r\nbublavský\r\nbublavý\r\nBubleová\r\nBuble\r\nBubleův\r\nbublifuk\r\nbublinatka\r\nbublinatkovitý\r\nbublina\r\nbublinka\r\nbublinkový\r\nbublinovitější\r\nbublinový\r\nBubníková\r\nBubník\r\nBubníkův\r\nbubnování\r\nbubnovaný\r\nbubnovat\r\nbubnovávání\r\nbubnovávaný\r\nbubnovávat\r\nbubnový\r\nbubnující\r\nBubovice\r\nbubovický\r\nbubřina\r\nbubřinův\r\nbubu\r\nbububu\r\nbuclatější\r\nbuclatý\r\nBuček\r\nbůček\r\nbučení\r\nbučet\r\nbučící\r\nbučina\r\nBučková\r\nbůčkový\r\nBučkův\r\nBučovice\r\nbučovický\r\nbud\r\nbuď\r\nBudapešť\r\nbudapeštský\r\nbudapešťský\r\nBuďárek\r\nBuďárková\r\nBuďárkův\r\nBudče\r\nBudčeves\r\nbudčeveský\r\nBudči\r\nBudčí\r\nBuddha\r\nbuddhismus\r\nbuddhista\r\nbuddhistčin\r\nbuddhistický\r\nbuddhistka\r\nbuddhistův\r\nBuddhův\r\nbude\r\nBudeč\r\nbudečský\r\nBudějovice\r\nBudějovicko\r\nbudějovicko\r\nbudějovický\r\nbudějovický\r\nBudětice\r\nbudětický\r\nBudětsko\r\nbudgetový\r\nbudhismus\r\nbudhista\r\nbudhistčin\r\nbudhistka\r\nbudhistův\r\nbudicí\r\nbudící\r\nbudíček\r\nbudíčkový\r\nbudič\r\nbudík\r\nBudíkov\r\nbudíkovský\r\nbudíkový\r\nBudilová\r\nBudil\r\nBudilův\r\nBudina\r\nBudinová\r\nBudínová\r\nBudín\r\nBudínský\r\nbudínský\r\nBudinův\r\nBudínův\r\nBudišovice\r\nbudišovický\r\nBudišovka\r\nBudišov\r\nbudišovský\r\nbudit\r\nbuditelčin\r\nbuditelka\r\nbuditelský\r\nbuditelství\r\nbuditel\r\nbuditelův\r\nbudivý\r\nbudiž\r\nbudižkničemu\r\nbudka\r\nBudkov\r\nbudkovský\r\nbudníček\r\nbudníčkův\r\nbudoár\r\nbudoárový\r\nbudoucí\r\nbudoucno\r\nbudoucnost\r\nbudoucnostní\r\nbudovanější\r\nbudování\r\nbudovaný\r\nbudovat\r\nbudovatelčin\r\nbudovatelka\r\nbudovatelský\r\nbudovatelštější\r\nbudovatel\r\nbudovatelův\r\nbudovávanější\r\nbudovávání\r\nbudovávaný\r\nbudovávat\r\nbudova\r\nbuďsi\r\nbuďtež\r\nbuďto\r\nbudu\r\nbudující\r\nbudvar\r\nBudyně\r\nbudyňský\r\nBudyšín\r\nbudyšínský\r\nbufet\r\nbufetářčin\r\nbufetářka\r\nbufet\r\nbufetový\r\nBuffalo\r\nbuffer\r\nbuffering\r\nbufferovaný\r\nbufferový\r\nbuffet\r\nbuffet\r\nBugárová\r\nBugár\r\nBugárův\r\nbugatka\r\nbugina\r\nbugr\r\nbůh\r\nbůhsámví\r\nbůhsuď\r\nBuhumír\r\nBuhumírův\r\nbůhví\r\nbůhvíco\r\nbůhvíčí\r\nbůhvíjak\r\nbůhvíjaký\r\nbůhvíkam\r\nbůhvíkde\r\nbůhvíkdo\r\nbůhvíkdy\r\nbůhvíkolik\r\nbůhvíkterý\r\nbůhvíkudy\r\nbůhvínač\r\nbůhvíodkud\r\nbůhvíproč\r\nbuch\r\nbuchanka\r\nbuchankovitý\r\nbuchar\r\nBucharová\r\nBuchar\r\nBucharův\r\nBucheggerová\r\nBuchegger\r\nBucheggerův\r\nBuchenwald\r\nbuchenwaldský\r\nBuchlovice\r\nbuchlovický\r\nBuchlov\r\nbuchlovský\r\nBuchmannová\r\nBuchmann\r\nBuchmannův\r\nbuchot\r\nBuchta\r\nbuchta\r\nBuchtele\r\nBuchtelová\r\nBuchtelův\r\nbuchtička\r\nbuchtování\r\nBuchtová\r\nbuchtový\r\nBuchtův\r\nBujanov\r\nbujanovský\r\nbujarý\r\nbujařejší\r\nbujení\r\nbujet\r\nbující\r\nbujnější\r\nbujnět\r\nbujný\r\nBujoková\r\nBujok\r\nBujokův\r\nbujon\r\nbujón\r\nbujonový\r\nbujónový\r\nbukáček\r\nBukáček\r\nBukáčková\r\nBukáčkův\r\nbukáčkův\r\nBukačová\r\nbukač\r\nBukač\r\nBukačův\r\nbukačův\r\nbukanýr\r\nbukanýrský\r\nbukanýrství\r\nbukanýrův\r\nbuket\r\nbuketní\r\nbuk\r\nbukinista\r\nbukinistčin\r\nbukinistka\r\nbukinistův\r\nbuklé\r\nbukoličtější\r\nbukotvarý\r\nBuková\r\nbukovecký\r\nBukovec\r\nBukovice\r\nbukovický\r\nBukovičová\r\nBukovič\r\nBukovičův\r\nBukovina\r\nBukovinka\r\nbukovitý\r\nBukovka\r\nbukovka\r\nBukov\r\nBukovno\r\nBukovsko\r\nBukovský\r\nbukovský\r\nbukový\r\nbukskinový\r\nBukurešť\r\nbukureštský\r\nBukvica\r\nbukvice\r\nBukvicová\r\nBukvicův\r\nbukvička\r\nbulačství\r\nbula\r\nbuldoček\r\nbuldočí\r\nbuldočkův\r\nbuldok\r\nbuldokův\r\nbuldozer\r\nbuldozerista\r\nbuldozeristčin\r\nbuldozeristka\r\nbuldozeristův\r\nbuldozerový\r\nbuletin\r\nBulgakov\r\nBulgakovův\r\nbulgur\r\nBulharčin\r\nBulharka\r\nbulharka\r\nBulhar\r\nBulharsko\r\nbulharský\r\nbulharština\r\nBulharův\r\nbulíček\r\nBulíček\r\nBulíčková\r\nBulíčkův\r\nbulíčkův\r\nbulíkování\r\nbulíkovaný\r\nbulíkovat\r\nbulíkovávání\r\nbulíkovávaný\r\nbulíkovávat\r\nbulík\r\nbulíkův\r\nbulimický\r\nbulimie\r\nBulířová\r\nBulíř\r\nBulířův\r\nbuližník\r\nbuližníkový\r\nbulka\r\nbulletin\r\nbully\r\nBulovka\r\nbulteriér\r\nbulteriérův\r\nBulva\r\nbulvár\r\nbulvárnější\r\nbulvární\r\nbulva\r\nBulvová\r\nBulvův\r\nbum\r\nbumážka\r\nbumbání\r\nbumbaný\r\nbumbat\r\nbumbrlíček\r\nbumbrlíčkův\r\nbumerang\r\nbumerangový\r\nBumerlová\r\nBumerl\r\nBumerlův\r\nbunda\r\nBundestag\r\nBundeswehr\r\nbundička\r\nbundový\r\nbuněčnatý\r\nbuněčný\r\nbungalov\r\nbuničina\r\nbuničinový\r\nbuničitý\r\nbuňka\r\nbuňkový\r\nbunkr\r\nbunkrový\r\nBunsen\r\nBunsenův\r\nbuntování\r\nbuntovaný\r\nbuntovat\r\nBuquoy\r\nBuquoyův\r\nburácející\r\nburácení\r\nburácet\r\nburácivější\r\nburácivý\r\nburák\r\nburcovanější\r\nburcování\r\nburcovaný\r\nburcovat\r\nburcovávání\r\nburcovávaný\r\nburcovávat\r\nburcující\r\nburčáček\r\nburčák\r\nburčákový\r\nBurda\r\nBurdová\r\nBurdův\r\nBurdychová\r\nBurdych\r\nBurdychův\r\nburel\r\nburelový\r\nBurešová\r\nBureš\r\nBurešův\r\nburetový\r\nBurgas\r\nburgasský\r\nBürgermeisterová\r\nBürgermeister\r\nBürgermeisterův\r\nBurgundsko\r\nburgundský\r\nburgundský\r\nBuriánek\r\nBuriánková\r\nBuriánkův\r\nBurianová\r\nBuriánová\r\nBurian\r\nBurián\r\nBurianův\r\nBuriánův\r\nBurjánek\r\nBurjánková\r\nBurjánkův\r\nburka\r\nBurkina\r\nburkinafaský\r\nBurkoňová\r\nBurkoň\r\nBurkoňův\r\nburlak\r\nburlakův\r\nburleska\r\nburlesknější\r\nburleskní\r\nburnus\r\nBurnusová\r\nBurnus\r\nBurnusův\r\nBúrové\r\nBúr\r\nBursa\r\nbursa\r\nBursíková\r\nBursík\r\nBursíkův\r\nburský\r\nbúrský\r\nBursová\r\nBursův\r\nburšák\r\nburšákův\r\nBuršíková\r\nBuršík\r\nBuršíkův\r\nBurunďančin\r\nBurunďanka\r\nBurunďan\r\nBurunďanův\r\nBurundi\r\nburundský\r\nBúrův\r\nburza\r\nburzián\r\nburziánův\r\nburzovnictví\r\nburzovní\r\nburžoa\r\nburžoasie\r\nburžoasnější\r\nburžoazie\r\nburžoaznější\r\nburžoazní\r\nburžoův\r\nBuřenice\r\nbuřenický\r\nBuřičová\r\nbuřičský\r\nbuřičství\r\nbuřičštější\r\nbuřič\r\nBuřič\r\nBuřičův\r\nbuřičův\r\nBuřilová\r\nBuřil\r\nBuřilův\r\nbuřinka\r\nbuřt\r\nbuřtový\r\nBushová\r\nBush\r\nBushův\r\nbusinessman\r\nbusinessmanův\r\nBusinský\r\nbusola\r\nBusta\r\nbusta\r\nBustová\r\nBustův\r\nBušek\r\nbušení\r\nbušený\r\nbušící\r\nBušín\r\nbušínský\r\nbušit\r\nBušková\r\nBuškův\r\nBušmen\r\nBušmenův\r\nbuš\r\nBuštěhrad\r\nbuštěhradský\r\nbutan\r\nbutanový\r\nbutik\r\nbuton\r\nButoves\r\nbutoveský\r\nButovice\r\nbutovický\r\nButschek\r\nButschková\r\nButschkův\r\nBüttnerův\r\nbutylenoxyd\r\nbutylhydrochinon\r\nbutylhydroxyanisol\r\nbutylhydroxytoluen\r\nbutylchloralhydrát\r\nbutylchlorid\r\nbutylkaučuk\r\nbutylkaučukový\r\nbutylka\r\nbuvolec\r\nbůvolí\r\nbuvolí\r\nbuvolovcův\r\nbuvolovec\r\nbuvol\r\nbuvolův\r\nBuzek\r\nbuzení\r\nbuzený\r\nbuzerace\r\nbuzerování\r\nbuzerovaný\r\nbuzerovat\r\nBuzková\r\nBuzkův\r\nbuzola\r\nbůžek\r\nBužek\r\nBůžek\r\nbužírka\r\nBužková\r\nBůžková\r\nBužkův\r\nBůžkův\r\nbůžkův\r\nby\r\nBycov\r\nbýček\r\nbýčí\r\nBýčkovice\r\nbýčkovický\r\nByčkovský\r\nbýčkův\r\nBydhošť\r\nbydlejí\r\nbydlení\r\nbydlet\r\nbydlící\r\nbydliště\r\nbydlit\r\nbydlívání\r\nbydlívaný\r\nbydlívat\r\nbydlo\r\nBydžov\r\nBydžovský\r\nbydžovský\r\nbych\r\nbycha\r\nbychom\r\nbýkovec\r\nBýkov\r\nbýkovský\r\nbýk\r\nbýkův\r\nbylanský\r\nbylas\r\nbýlí\r\nbylinářčin\r\nbylinářka\r\nbylinářský\r\nbylinářství\r\nbylinář\r\nbylinářův\r\nbylina\r\nbylinkářčin\r\nbylinkářka\r\nbylinkářský\r\nbylinkářství\r\nbylinkář\r\nbylinkářův\r\nbylinka\r\nbylinkový\r\nbylinný\r\nBylnice\r\nbylnický\r\nbyl\r\nbylos\r\nbýložravcův\r\nbýložravec\r\nbýložravý\r\nbyls\r\nBýmová\r\nBým\r\nBýmův\r\nbynovecký\r\nBynovec\r\nbyrokracie\r\nbyrokratčin\r\nbyrokratický\r\nbyrokratičtější\r\nbyrokratismus\r\nbyrokratizace\r\nbyrokratizování\r\nbyrokratizovaný\r\nbyrokratizovat\r\nbyrokratka\r\nbyrokrat\r\nbyrokratův\r\nbyro\r\nbyronismus\r\nbyronistický\r\nbyronský\r\nByrtusová\r\nByrtus\r\nByrtusův\r\nbys\r\nbysta\r\nbyste\r\nbysterský\r\nBystrá\r\nBystré\r\nBystrica\r\nbystrický\r\nBystročice\r\nbystročický\r\nbystrouška\r\nbystrozrak\r\nbystrozraký\r\nbystrý\r\nbystřecký\r\nBystřec\r\nbystřejší\r\nbystření\r\nbystřený\r\nBystřice\r\nBystřice\r\nbystřice\r\nbystřický\r\nbystřický\r\nBystřička\r\nbystřička\r\nbystřičský\r\nbystřina\r\nbystřinový\r\nbystřit\r\nByšice\r\nbyšický\r\nBýškovice\r\nbýškovický\r\nbýšovecký\r\nBýšovec\r\nbyť\r\nbyťák\r\nbytař\r\nbytařův\r\nBytča\r\nbyteček\r\nbyte\r\nbytelnější\r\nbytelný\r\nbyt\r\nbýt\r\nbytí\r\nbytná\r\nbytnění\r\nbytněný\r\nbytnět\r\nbytný\r\nBytom\r\nBytomský\r\nbytost\r\nbytostnější\r\nbytostný\r\nbytovější\r\nbytovka\r\nbytový\r\nbyťsi\r\nbytůstka\r\nbývající\r\nbývalý\r\nbývání\r\nbývat\r\nbývávání\r\nbývávaný\r\nbývávat\r\nbyv\r\nbyvše\r\nbyvši\r\nbyvší\r\nByzance\r\nbyzantinismus\r\nbyzantismus\r\nbyzantoložčin\r\nbyzantoložka\r\nbyzantský\r\nbyzhradecký\r\nByzhradec\r\nbyznys\r\nbz\r\nbzdící\r\nbzenecký\r\nBzenec\r\nbzíkat\r\nbzikavka\r\nBzová\r\nbzovský\r\nbzučák\r\nbzučení\r\nbzučený\r\nbzučet\r\nbzučící\r\nbzučivý\r\nbzukot\r\nbzum\r\nBzůra\r\nBzůrová\r\nBzůrův\r\nbzz\r\nbžunda\r\nCa\r\nca\r\nCabáková\r\nCabák\r\nCabákův\r\nCabrnochová\r\nCabrnoch\r\nCabrnochův\r\nCacáková\r\nCacák\r\nCacákův\r\nCAD\r\nCAE\r\nCaesar\r\nCaesarův\r\nCaharna\r\nCaharnová\r\nCaharnův\r\nCáhlov\r\nCáhnov\r\ncaching\r\nCachová\r\nCach\r\ncachtající\r\ncachtání\r\ncachtat\r\ncachtávání\r\ncachtávat\r\nCachův\r\nCáchy\r\nCaicos\r\ncajkářský\r\ncajk\r\ncajkový\r\nCajthamlová\r\nCajthaml\r\nCajthamlův\r\ncak\r\ncák\r\ncákanec\r\ncákání\r\ncákaný\r\ncákat\r\nCaklová\r\nCakl\r\nCaklův\r\ncáknout\r\ncáknutí\r\ncal\r\nCalaiský\r\nCalda\r\nCaldová\r\nCaldrová\r\nCaldr\r\nCaldrův\r\nCaldův\r\nCalifornie\r\ncalvados\r\nCAM\r\ncambridgeský\r\nCambridge\r\ncamping\r\ncampingový\r\ncamrání\r\ncamrat\r\nCamus\r\nCamusův\r\nCanberra\r\ncancání\r\ncancat\r\ncandátí\r\ncandát\r\ncandátův\r\ncanisterapie\r\nCankářová\r\nCankář\r\nCankářův\r\nCankovský\r\nCannes\r\ncanofobie\r\ncantabile\r\ncapáček\r\ncapartík\r\ncapartíkův\r\ncapart\r\ncapartův\r\ncapat\r\nCapek\r\ncápek\r\nCapella\r\ncapkání\r\ncapkat\r\ncapkávání\r\ncapkávat\r\nCapková\r\nCapkův\r\ncápkův\r\ncapriccio\r\ncaproccioso\r\nCapua\r\ncapy\r\nCarda\r\nCardová\r\nCardův\r\nCaretto\r\nCarettův\r\ncarevič\r\ncarevičův\r\ncarevna\r\ncarevnin\r\ncár\r\ncarismus\r\ncarista\r\ncaristčin\r\ncaristický\r\ncaristka\r\ncaristův\r\nCarlo\r\nCarnotův\r\nCarolin\r\ncar\r\nCarréův\r\ncarský\r\ncarství\r\ncarštější\r\nCarterová\r\nCarter\r\nCarterův\r\ncarův\r\nCařihrad\r\ncařihradský\r\nCasablanca\r\nCassegrain\r\nCassegrainův\r\nCassin\r\nCassiopeia\r\ncasting\r\ncastingový\r\nCastle\r\ncastrismus\r\ncastrista\r\ncastristčin\r\ncastristka\r\ncastristův\r\nCastro\r\nCastrův\r\ncášský\r\ncaudillismus\r\nCauchyův\r\nCauchy\r\ncausa\r\ncauserie\r\ncavyky\r\ncca\r\nccm\r\nCD\r\ncd\r\nCDROM\r\nCDU\r\nCe\r\nCeaušesco\r\nCeaušeska\r\nCeaušeskem\r\nCeaušeskovi\r\nCeaušeskův\r\ncecek\r\nCecilčin\r\nCecilie\r\nCecílie\r\nCeciliin\r\nCecíliin\r\nCecilka\r\ncéčko\r\ncéčkový\r\ncédéčko\r\ncedit\r\ncedítko\r\ncedník\r\ncedníkovitý\r\ncedrátový\r\ncedr\r\ncedrový\r\nCedrychová\r\nCedrych\r\nCedrychův\r\ncedule\r\ncedulička\r\ncedulka\r\ncedulový\r\nCeháková\r\nCehák\r\nCehákův\r\ncech\r\ncechovnictví\r\ncechovní\r\ncechový\r\ncejch\r\ncejchovací\r\ncejchovačka\r\ncejchování\r\ncejchovaný\r\ncejchovat\r\ncejchovávání\r\ncejchovávaný\r\ncejchovávat\r\ncejchovní\r\nCejlon\r\ncejlonský\r\ncejlonský\r\nCejnarová\r\nCejnar\r\nCejnarův\r\ncejnek\r\ncejnkův\r\ncejn\r\ncejnův\r\nceknout\r\nceknutí\r\nCekov\r\ncekovský\r\ncelaskon\r\ncela\r\ncelebrace\r\ncelebrant\r\ncelebrantův\r\ncelebrita\r\ncelebrování\r\ncelebrovaný\r\ncelebrovat\r\ncelebrovávání\r\ncelebrovávaný\r\ncelebrovávat\r\ncelejší\r\ncelek\r\nceler\r\ncelerový\r\nCelestýn\r\nCelestýnův\r\nCeletný\r\ncelibát\r\ncelibátník\r\ncelibátníkův\r\ncelibátní\r\nceličký\r\ncelina\r\ncelistvější\r\ncelistvý\r\ncelkem\r\ncelkovější\r\ncelkový\r\ncellista\r\ncellistčin\r\ncellistka\r\ncellistův\r\ncello\r\ncellový\r\ncelnice\r\ncelnický\r\ncelnictví\r\ncelničtější\r\ncelník\r\ncelníkův\r\ncelniště\r\ncelní\r\nceloamerický\r\nceloameričtější\r\nceloarmádní\r\ncelobalkánský\r\ncelobarevný\r\ncelobritský\r\nceločíselný\r\ncelodenní\r\ncelodřevěný\r\nceloevropský\r\nceloevropštější\r\ncelofakultní\r\ncelofán\r\ncelofánový\r\ncelofiremní\r\nceloformátový\r\ncelogumový\r\ncelohliníkový\r\ncelokamenný\r\ncelokapelový\r\ncelokompozitový\r\ncelokovový\r\ncelokožený\r\ncelokrajný\r\ncelokrajský\r\nceloměsíční\r\nceloměstský\r\ncelonárodnější\r\ncelonárodní\r\nceloněmecký\r\nceloněmečtější\r\ncelonoční\r\nceloobličejový\r\ncelooblohový\r\nceloobrazovkový\r\nceloobvodový\r\nceloodvětvový\r\ncelookresní\r\nceloomletý\r\ncelopal\r\nceloplanetární\r\nceloplátěný\r\nceloplošný\r\ncelopodlahový\r\ncelopodnikovější\r\ncelopodnikový\r\ncelopražský\r\ncelorakouský\r\nceloregionální\r\ncelorepublikový\r\nceloresortní\r\nceloroční\r\nceloroční\r\nceloroštový\r\nceloroubený\r\ncelořecký\r\nceloříšský\r\ncelosezónní\r\nceloskleněný\r\ncelospolečenský\r\ncelostátní\r\ncelostaveništní\r\ncelostnější\r\ncelostní\r\ncelostranický\r\ncelostraničtější\r\ncelostránkový\r\ncelosvařovaný\r\ncelosvazový\r\ncelosvětový\r\nceloškolní\r\nceloškolský\r\ncelotónový\r\ncelotýdenní\r\nceloučilištní\r\ncelování\r\ncelovaný\r\ncelovat\r\ncelovávání\r\nCelovec\r\ncelovečerní\r\ncelovládní\r\ncelozávodní\r\ncelozděný\r\ncelozemský\r\ncelozrnný\r\ncelozrný\r\nceloživotní\r\nCelsius\r\nCelsiův\r\nCelský\r\ncelta\r\nCeltice\r\nceltický\r\nceltovina\r\nceltový\r\ncelující\r\ncelulární\r\ncelulitida\r\nceluloid\r\nceluloidový\r\ncelulosa\r\ncelulosový\r\ncelulóza\r\ncelulózka\r\ncelulózový\r\ncelulozový\r\ncelý\r\ncembalista\r\ncembalistčin\r\ncembalistka\r\ncembalistův\r\ncembalo\r\ncembalový\r\ncementace\r\ncementárna\r\ncement\r\ncementovací\r\ncementování\r\ncementovaný\r\ncementovat\r\ncementovatelný\r\ncementovávání\r\ncementovávaný\r\ncementovávat\r\ncementový\r\nCempírek\r\nCempírková\r\nCempírkův\r\ncena\r\nceněnější\r\ncenění\r\nceněný\r\ncenící\r\nceník\r\nceníkový\r\ncenina\r\nceninový\r\ncenit\r\ncenívat\r\ncennější\r\ncenný\r\ncenomanský\r\ncenotvorba\r\ncenotvorný\r\ncenovka\r\ncenový\r\ncensura\r\ncensurní\r\ncensus\r\ncent\r\ncentík\r\ncentilitr\r\ncentimagnituda\r\ncentimetr\r\ncentimetrový\r\ncentim\r\ncentiradián\r\ncentový\r\ncentra\r\ncentrace\r\ncentrála\r\ncentralismus\r\ncentralista\r\ncentralistčin\r\ncentralistický\r\ncentralističtější\r\ncentralistka\r\ncentralistův\r\ncentralizace\r\ncentralizační\r\ncentralizovanější\r\ncentralizování\r\ncentralizovaný\r\ncentralizovat\r\ncentralizující\r\ncentrálnější\r\ncentrální\r\ncentr\r\ncentričtější\r\ncentrifugace\r\ncentrifugální\r\ncentrifuga\r\ncentripetální\r\ncentrismus\r\ncentrista\r\ncentristčin\r\ncentristický\r\ncentrističtější\r\ncentristka\r\ncentristův\r\ncentroid\r\ncentroidový\r\nCentrotex\r\ncentrovací\r\ncentrovanější\r\ncentrování\r\ncentrovaný\r\ncentrovat\r\ncentru\r\ncentrující\r\ncentrum\r\ncenu\r\ncenzorčin\r\ncenzorka\r\ncenzor\r\ncenzorský\r\ncenzorství\r\ncenzorův\r\ncenzura\r\ncenzurní\r\ncenzurovanější\r\ncenzurování\r\ncenzurovaný\r\ncenzurovat\r\ncenzurovávat\r\ncenzurující\r\ncepenění\r\ncepeněný\r\ncepenět\r\ncep\r\ncepín\r\nCeplecha\r\nCeplechová\r\nCeplechův\r\ncepování\r\ncepovaný\r\ncepovat\r\nCerekev\r\nCerekvice\r\ncerekvický\r\nCerekvička\r\nceremoniál\r\nceremoniální\r\nceremoniářčin\r\nceremoniářka\r\nceremoniář\r\nceremoniářův\r\nceremonie\r\ncer\r\nCerha\r\nCerhenice\r\ncerhenický\r\nCerhová\r\nCerhovice\r\ncerhovický\r\nCerhův\r\ncerkárie\r\nCermanová\r\nCerman\r\nCermanův\r\ncermet\r\ncerový\r\ncertifikace\r\ncertifikační\r\ncertifikát\r\ncertifikovanější\r\ncertifikování\r\ncertifikovaný\r\ncertifikovat\r\ncertifikovatelnější\r\ncertifikovatelný\r\ncervikální\r\ncésarismus\r\ncésiový\r\ncesiový\r\ncesium\r\ncesmína\r\ncesmínovitý\r\ncesný\r\ncesťák\r\ncesťákův\r\ncestářský\r\ncestář\r\ncestářův\r\ncesta\r\ncestička\r\ncestmistrovský\r\ncestmistrovství\r\ncestmistr\r\ncestmistrův\r\ncestopis\r\ncestopisný\r\ncestou\r\ncestování\r\ncestovaný\r\ncestovat\r\ncestovatelčin\r\ncestovatelka\r\ncestovatelský\r\ncestovatelství\r\ncestovatel\r\ncestovatelův\r\ncestovka\r\ncestovné\r\ncestovní\r\ncestový\r\ncestující\r\ncestující\r\ncetanový\r\nCetechovice\r\ncetechovický\r\nCetenov\r\ncetenovský\r\ncetera\r\ncetka\r\nCetkovice\r\ncetkovický\r\ncetkový\r\nCetlová\r\nCetl\r\nCetlův\r\ncetrála\r\ncéva\r\ncévka\r\ncévkování\r\ncévkovaný\r\ncévkovat\r\ncévnatka\r\ncévnatý\r\ncévní\r\nCeylon\r\ncézaropapismus\r\ncezení\r\ncezený\r\ncézura\r\ncf\r\ncfr\r\nCGI\r\nCGIL\r\nCGS\r\nCGT\r\nCi\r\nCIA\r\ncibéba\r\ncibébovatět\r\ncibulačka\r\ncibulák\r\ncibule\r\ncibulička\r\nCibulka\r\ncibulka\r\nCibulková\r\ncibulkovitý\r\ncibulkový\r\nCibulkův\r\ncibulnatý\r\ncibulovina\r\ncibulovitější\r\ncibulovitý\r\ncibulovka\r\ncibulový\r\nCIC\r\ncicero\r\nCiceronův\r\nCicero\r\ncídění\r\ncíděný\r\ncídič\r\ncídičův\r\ncídidlo\r\ncídit\r\nCidlina\r\ncidr\r\nciferník\r\nciferníkový\r\nciferný\r\ncifra\r\ncifrový\r\ncigánčin\r\ncigánečka\r\nCigánek\r\ncigánka\r\nCigánková\r\nCigánkův\r\nCigánová\r\nCigán\r\ncigánštější\r\nCigánův\r\ncigareta\r\ncigaretka\r\ncigaretový\r\ncigárko\r\ncigáro\r\ncigorka\r\nCihelka\r\ncihelka\r\nCihelková\r\ncihelkový\r\nCihelkův\r\ncihelna\r\ncihelný\r\nCihlářová\r\ncihlářský\r\ncihlářství\r\ncihlář\r\nCihlář\r\nCihlářův\r\ncihlářův\r\ncihla\r\ncihlička\r\ncihlový\r\ncícha\r\ncíchovina\r\ncíchový\r\ncik\r\ncikáda\r\ncikánčin\r\ncikáně\r\nCikánek\r\ncikánka\r\nCikánková\r\nCikánkův\r\nCikánová\r\ncikán\r\nCikán\r\ncikánský\r\ncikánštější\r\ncikánština\r\nCikánův\r\ncikánův\r\ncikcak\r\ncikorka\r\ncikorkový\r\nCikrle\r\nCikrlová\r\nCikrlův\r\nCíla\r\nCilčin\r\nCileček\r\nCilečková\r\nCilečkův\r\ncílenější\r\ncílení\r\ncílený\r\ncílevědomější\r\ncílevědomý\r\ncililink\r\ncilink\r\ncílit\r\nCilka\r\nCílová\r\ncílovější\r\ncílový\r\ncíl\r\nCílův\r\ncimbál\r\ncimbalista\r\ncimbálista\r\ncimbalistčin\r\ncimbálistčin\r\ncimbalistka\r\ncimbálistka\r\ncimbalistův\r\ncimbálistův\r\ncimbálovka\r\ncimbálový\r\nCimbr\r\nCimbulka\r\nCimbulková\r\nCimbulkův\r\nCimburek\r\nCimburková\r\nCimburkův\r\nCimburová\r\nCimbur\r\nCimburův\r\ncimbuří\r\nCimický\r\nCimlerová\r\nCimler\r\nCimlerův\r\ncimprcampr\r\ncimra\r\ncimrmanolog\r\ncimrmanologův\r\ncimrmanoložčin\r\ncimrmanoložka\r\nCimrmanová\r\ncimrmanovský\r\nCimrman\r\nCimrmanův\r\ncínařčin\r\ncínařka\r\ncínařství\r\ncínař\r\ncínařův\r\ncínatan\r\ncínatý\r\nCindrová\r\nCindr\r\nCindrův\r\nCinek\r\nCingelová\r\nCingel\r\nCingelův\r\nCingrošová\r\nCingroš\r\nCingrošův\r\ncin\r\ncín\r\ncíničitan\r\ncíničitý\r\ncínie\r\ncininsulfát\r\ncink\r\ncinkající\r\ncinkání\r\nCinkanová\r\nCinkánová\r\nCinkan\r\nCinkán\r\nCinkanův\r\nCinkánův\r\ncinkaný\r\ncinkat\r\ncinkátko\r\ncinkavý\r\nCinklová\r\nCinkl\r\nCinklův\r\ncinknout\r\ncinknutí\r\ncinkot\r\ncinkovací\r\ncinkovačka\r\ncinkování\r\ncinkovaný\r\ncinkovat\r\nCinková\r\nCink\r\nCinkův\r\nCinonův\r\ncínování\r\ncínovaný\r\ncínovat\r\ncínovecký\r\nCínovec\r\ncínovec\r\ncínový\r\nCIO\r\nCiochoňová\r\nCiochoň\r\nCiochoňův\r\ncípatější\r\ncípatý\r\ncípek\r\ncíp\r\nCipra\r\nCiprová\r\nCiprův\r\ncirát\r\ncirca\r\ncirhóza\r\ncirka\r\ncírkevněprávní\r\ncírkevněslovanský\r\ncírkevnický\r\ncírkevní\r\ncírkev\r\nCirklová\r\nCirkl\r\nCirklův\r\ncirkulace\r\ncirkulační\r\ncirkulárka\r\ncirkulární\r\ncirkulář\r\ncirkulování\r\ncirkulovaný\r\ncirkulovat\r\ncirkulovatelný\r\ncirkulující\r\ncirkumfix\r\ncirkumpolární\r\ncirkusácký\r\ncirkusaččin\r\ncirkusačka\r\ncirkusáčtější\r\ncirkus\r\ncirkusový\r\ncírkvička\r\nciróza\r\ncisalpinský\r\nCisárová\r\nCisár\r\nCisárův\r\ncísařčin\r\ncísařka\r\nCísařová\r\nCísařov\r\ncísařovna\r\ncísařovnin\r\ncísařovský\r\ncísařský\r\ncísařství\r\ncísařštější\r\ncísař\r\nCísař\r\nCísařův\r\ncísařův\r\nCISC\r\nciselování\r\nciselovaný\r\nciselovat\r\nCislajtanie\r\ncisterciácký\r\ncisterciaččin\r\ncisterciačka\r\ncisterciák\r\ncisterciákův\r\ncisterna\r\ncisternový\r\ncitace\r\ncitační\r\ncitadela\r\ncitát\r\ncitátový\r\nciteček\r\ncitelnější\r\ncitelný\r\ncítění\r\ncítěn\r\ncítěný\r\ncitera\r\nciterista\r\nciteristčin\r\nciteristka\r\nciteristův\r\ncit\r\ncítící\r\ncítit\r\ncitlivcův\r\ncitlivec\r\ncitlivější\r\ncitlivka\r\ncitlivkový\r\ncitlivý\r\nCitonice\r\ncitonický\r\ncitoslovce\r\ncitoslovečný\r\ncitovanější\r\ncitování\r\ncitovaný\r\ncitovat\r\ncitovatelnější\r\ncitovatelný\r\ncitovávání\r\ncitovávaný\r\ncitovávat\r\ncitovější\r\ncitovka\r\nCitov\r\nCítov\r\ncitovský\r\ncítovský\r\ncitový\r\ncitran\r\ncitrát\r\ncitrátový\r\ncitrín\r\nCitroen\r\ncitronáda\r\ncitronan\r\ncitronek\r\ncitrónek\r\ncitron\r\ncitrón\r\ncitroník\r\ncitroníkový\r\ncitrónka\r\ncitrónovka\r\ncitronovník\r\ncitrónový\r\ncitronový\r\ncitrusářčin\r\ncitrusářka\r\ncitrusář\r\ncitrusářství\r\ncitrusářův\r\ncitrus\r\ncitrusový\r\ncitující\r\ncituplnější\r\ncituplný\r\ncitýrování\r\ncitýrovat\r\ncívečka\r\ncivějící\r\ncivění\r\ncivět\r\ncivící\r\ncivil\r\ncivilismus\r\ncivilista\r\ncivilistčin\r\ncivilistický\r\ncivilistka\r\ncivilistův\r\ncivilizace\r\ncivilizační\r\ncivilizovanější\r\ncivilizování\r\ncivilizovaný\r\ncivilizovat\r\ncivilizovávat\r\ncivilizující\r\ncivilkář\r\ncivilkářův\r\ncivilka\r\ncivilnější\r\ncivilněprávní\r\ncivilněprocesní\r\ncivilněsprávní\r\ncivilní\r\ncívka\r\ncívkovací\r\ncívkování\r\ncívkovaný\r\ncívkovat\r\ncívkový\r\ncivme\r\nciv\r\ncivte\r\ncizácký\r\ncizáctví\r\ncizáčtější\r\ncizák\r\ncizákův\r\ncizejší\r\ncizelérský\r\ncizelování\r\ncizelovaný\r\ncizelovat\r\ncizina\r\ncizincův\r\ncizinčin\r\ncizinecký\r\ncizinec\r\ncizinečtější\r\ncizinka\r\ncizí\r\nCizkrajov\r\ncizkrajovský\r\ncizojazyčný\r\ncizokrajnější\r\ncizokrajný\r\ncizoložit\r\ncizoložnější\r\ncizoložnice\r\ncizoložničin\r\ncizoložník\r\ncizoložníkův\r\ncizoložný\r\ncizoložství\r\ncizomluv\r\ncizopasení\r\ncizopasící\r\ncizopasit\r\ncizopasnický\r\ncizopasník\r\ncizopasníkův\r\ncizopasný\r\ncizorodější\r\ncizorodný\r\ncizorodý\r\ncizosprašný\r\ncizota\r\ncizozemcův\r\ncizozemčin\r\ncizozemec\r\ncizozemka\r\ncizozemský\r\ncizozemštější\r\ncizrna\r\nCl\r\nclapot\r\nClarke\r\nClarkův\r\nclavecinista\r\nclavecinistčin\r\nclavecinistka\r\nclavecinistův\r\nclearing\r\nclearinghouse\r\nclearingový\r\nclení\r\nclený\r\nCleveland\r\nclevelandský\r\nclipper\r\nclít\r\nclo\r\nclona\r\nclonění\r\ncloněný\r\nclonící\r\nclonit\r\nclonka\r\nclonový\r\ncloumák\r\ncloumání\r\ncloumaný\r\ncloumat\r\ncloumávat\r\nCluj\r\ncluster\r\ncm\r\nCMOS\r\ncmrndání\r\ncmrndaný\r\ncmrndat\r\ncmrndávat\r\nCmunt\r\nCNN\r\nCNY\r\nco\r\ncobolský\r\ncoby\r\ncobydup\r\nCoca\r\ncoelostat\r\ncoenuréza\r\nCognac\r\ncokoli\r\ncokoliv\r\nCola\r\nColin\r\nColorado\r\nColumbia\r\ncomeback\r\ncommodo\r\nCompostela\r\nCompostella\r\ncompostelský\r\ncomputer\r\ncomputerizovanější\r\ncomputerizovaný\r\nComputerpress\r\nComte\r\nComtův\r\nConlonová\r\nConlon\r\nConlonův\r\nConnecticut\r\nconquista\r\ncontry\r\nCookův\r\ncopak\r\ncopánek\r\ncopánkový\r\ncopatější\r\ncopatý\r\ncop\r\ncopyright\r\ncopyright\r\ncordierit\r\ncordieritový\r\nCorel\r\nCorlissův\r\nCornštejn\r\nCornwallský\r\ncornwallský\r\ncornwallština\r\ncos\r\ncosec\r\ncosi\r\ncosinus\r\ncotg\r\nCoudé\r\nCoufalíková\r\nCoufalík\r\nCoufalíkův\r\nCoufalová\r\nCoufal\r\nCoufalův\r\nCoufová\r\nCouf\r\nCoufův\r\ncoul\r\ncoulomb\r\ncoulometrie\r\ncoulový\r\ncoulterův\r\ncountry\r\ncountryový\r\ncourák\r\ncourání\r\ncouraný\r\ncourat\r\ncoura\r\ncouřin\r\ncouvající\r\ncouvání\r\ncouvat\r\ncouvávání\r\ncouvávat\r\ncouvnout\r\ncouvnutí\r\ncož\r\ncože\r\ncožpak\r\nCP\r\ncpanější\r\ncpaní\r\ncpání\r\ncpaný\r\ncpát\r\nCr\r\ncrack\r\ncrčení\r\ncrčet\r\ncrčící\r\ncresc\r\ncrescendo\r\ncrescendo\r\nCrha\r\nCrhová\r\nCrhov\r\ncrhovský\r\nCrhův\r\ncrkot\r\nCromptonův\r\ncrrrrr\r\nCRT\r\nCrumbův\r\nCSc\r\nCSU\r\nctěnější\r\nctění\r\nctěný\r\nCtětín\r\nctětínský\r\ncti\r\nctí\r\nCtibor\r\nCtiborův\r\nctící\r\nctihodnější\r\nctihodný\r\nctích\r\nctím\r\nCtiněves\r\nctiněveský\r\nCtirad\r\nCtiradův\r\nctít\r\nctitelčin\r\nctitelka\r\nctitel\r\nctitelův\r\nctižádostivcův\r\nctižádostivec\r\nctižádostivější\r\nctižádostivý\r\nctižádý\r\nctmi\r\nctnostnější\r\nctnostný\r\nctný\r\nCu\r\ncucáček\r\ncucající\r\ncucák\r\ncucákův\r\ncucanější\r\ncucání\r\ncucaný\r\ncucat\r\ncucávání\r\ncucávaný\r\ncucávat\r\ncucavý\r\ncucek\r\ncuckách\r\ncucnout\r\ncudnější\r\ncudný\r\ncuchající\r\ncuchání\r\ncuchaný\r\ncuchat\r\ncuchávat\r\ncuchta\r\ncukající\r\ncukání\r\ncukat\r\ncukávání\r\ncukávat\r\ncukerín\r\ncukerínový\r\ncukernatější\r\ncukernatění\r\ncukernatět\r\ncukernatý\r\ncukernější\r\ncukerný\r\ncuketa\r\ncuketový\r\ncukina\r\ncuknout\r\ncuknutí\r\ncukralosa\r\ncukrárenský\r\ncukrárna\r\ncukrářčin\r\ncukrářka\r\ncukrářský\r\ncukrářství\r\ncukrář\r\ncukrářův\r\ncukrátko\r\ncukr\r\ncukrkandl\r\ncukrkandlový\r\ncukrle\r\ncukroester\r\ncukroglycerid\r\ncukrovanický\r\ncukrování\r\ncukrovaný\r\ncukrovar\r\ncukrovarnice\r\ncukrovarnický\r\ncukrovarnictví\r\ncukrovarničtější\r\ncukrovarník\r\ncukrovarníkův\r\ncukrovarský\r\ncukrovat\r\ncukrovávání\r\ncukrovávaný\r\ncukrovávat\r\ncukrovinka\r\ncukrovinkový\r\ncukroví\r\ncukrovkářčin\r\ncukrovkářka\r\ncukrovkář\r\ncukrovkářův\r\ncukrovka\r\ncukrovkový\r\ncukrový\r\ncukrú\r\ncukrující\r\ncukření\r\ncukřenka\r\ncukřený\r\ncukříček\r\ncukřík\r\nCulek\r\nculení\r\nculící\r\nculík\r\nculit\r\nCulková\r\nCulkův\r\ncumel\r\nCumfová\r\nCumf\r\nCumfův\r\ncumlání\r\ncumlaný\r\ncumlat\r\ncumlávání\r\ncumlávaný\r\ncumlávat\r\nCupáková\r\nCupák\r\nCupákův\r\nCupalová\r\nCupal\r\nCupalův\r\ncupanina\r\ncupat\r\nCupek\r\ncupitající\r\ncupitání\r\ncupitat\r\ncupitávání\r\ncupitávat\r\ncupitavý\r\ncupity\r\ncupkající\r\ncupkání\r\ncupkat\r\ncupkávání\r\ncupkávat\r\nCupková\r\nCupkův\r\ncupky\r\ncupot\r\ncupování\r\ncupovaný\r\ncupovat\r\ncupu\r\ncupy\r\ncurie\r\ncuriový\r\ncurium\r\ncurlingář\r\ncurlingářův\r\ncurriculum\r\nCurych\r\ncuryšský\r\nCvachová\r\nCvachovcová\r\nCvachovcův\r\nCvachovec\r\nCvach\r\nCvachův\r\ncvak\r\ncvakající\r\ncvakání\r\ncvakat\r\ncvakávání\r\ncvakávat\r\ncvaknout\r\ncvaknutí\r\ncvaknutý\r\ncvakot\r\ncvaky\r\ncválající\r\ncválání\r\ncválat\r\ncválávání\r\ncválávat\r\ncval\r\ncvalíček\r\ncvalíčkův\r\ncvalík\r\ncvalíkův\r\ncvalový\r\nCvechová\r\nCvech\r\nCvechův\r\nCvejnová\r\nCvejn\r\nCvejnův\r\nCvetanová\r\nCvetan\r\nCvetanův\r\ncvičák\r\ncvičebnice\r\ncvičebnicový\r\ncvičební\r\ncvičencův\r\ncvičenčin\r\ncvičenec\r\ncvičenější\r\ncvičení\r\ncvičenka\r\ncvičený\r\ncvičící\r\ncvičiště\r\ncvičit\r\ncvičitelčin\r\ncvičitelka\r\ncvičitelský\r\ncvičitel\r\ncvičitelův\r\ncvička\r\ncvičnější\r\ncvičný\r\ncvik\r\nCvikov\r\nCvikovsko\r\ncvikovský\r\ncvikový\r\nCvilínová\r\nCvilín\r\nCvilínův\r\ncvoček\r\ncvočkařčin\r\ncvočkařka\r\ncvočkařství\r\ncvočkař\r\ncvočkařův\r\ncvočkovací\r\ncvočkování\r\ncvočkovaný\r\ncvočkovat\r\ncvokárna\r\ncvokař\r\ncvokařův\r\ncvok\r\ncvokův\r\ncvrččí\r\ncvrček\r\nCvrček\r\ncvrčení\r\ncvrčet\r\ncvrčilka\r\ncvrčivý\r\nCvrčková\r\nCvrčkův\r\ncvrčkův\r\nCvrčovice\r\ncvrčovický\r\ncvrkající\r\nCvrkalová\r\nCvrkal\r\nCvrkalův\r\ncvrkání\r\ncvrkaný\r\ncvrkat\r\ncvrkávání\r\ncvrkávat\r\ncvrknout\r\ncvrknutí\r\ncvrknutý\r\ncvrkot\r\ncvrlikající\r\ncvrlikání\r\ncvrlikaný\r\ncvrlikat\r\ncvrnk\r\ncvrnkající\r\ncvrnkání\r\ncvrnkaný\r\ncvrnkat\r\ncvrnkávání\r\ncvrnkávaný\r\ncvrnkávat\r\ncvrnknout\r\ncvrnknutí\r\ncvrnknutý\r\ncyankali\r\ncyanobakterie\r\ncyanoglobin\r\ncyanotoxin\r\ncyanóza\r\nCyhelský\r\ncykas\r\ncykasový\r\ncyklamát\r\ncyklení\r\ncyklící\r\ncyklickoplastický\r\ncyklický\r\ncykličtější\r\ncyklista\r\ncyklistčin\r\ncyklistický\r\ncyklistika\r\ncyklistka\r\ncyklistův\r\ncyklit\r\ncykloalkan\r\ncyklodemonstrace\r\ncyklodrom\r\ncyklohexan\r\ncykloida\r\ncyklokrosařský\r\ncyklokrosař\r\ncyklokrosařův\r\ncyklokros\r\ncyklokrosový\r\ncyklometrický\r\ncyklonální\r\ncyklóna\r\ncyklon\r\ncyklón\r\ncyklónový\r\ncykloskop\r\ncyklosporinový\r\ncyklostyl\r\ncyklostylování\r\ncyklostylovaný\r\ncyklostylovat\r\ncyklostylovávání\r\ncyklostylovávaný\r\ncyklostylovávat\r\ncyklostylový\r\ncyklotrasa\r\ncyklotrialista\r\ncyklotrialistčin\r\ncyklotrialistka\r\ncyklotrialistův\r\ncyklotrialový\r\ncyklotron\r\ncykloturista\r\ncykloturistčin\r\ncykloturistický\r\ncykloturistika\r\ncykloturistka\r\ncykloturistův\r\ncyklování\r\ncyklovat\r\ncyklovávání\r\ncyklovávat\r\ncyklovýlet\r\ncyklový\r\ncyklující\r\ncyklus\r\ncylindr\r\ncylindrický\r\ncylindroid\r\ncynabarit\r\ncynický\r\ncyničtější\r\ncynik\r\ncynikův\r\ncynismus\r\ncynizující\r\nCypriánová\r\nCyprián\r\nCypriánův\r\ncypřišek\r\ncypřiší\r\ncypřišovitý\r\ncypřišový\r\ncypřiš\r\nCyrano\r\ncyranovský\r\nCyranův\r\nCyrda\r\nCyrdův\r\ncyrilice\r\ncyrilický\r\ncyriličtější\r\ncyrilika\r\ncyrilometodějský\r\nCyrilometodějský\r\ncyrilometodějství\r\nCyril\r\nCyrilův\r\nCýrusová\r\nCýrus\r\nCýrusův\r\ncysta\r\ncystein\r\ncysteinový\r\ncysticerkóza\r\ncystický\r\ncystička\r\ncystin\r\ncystoskopie\r\ncytidin\r\ncytogenetika\r\ncytogerontologický\r\ncytogerontologie\r\ncytogerontolog\r\ncytogerontologův\r\ncytogerontoložčin\r\ncytogerontoložka\r\ncytologický\r\ncytologie\r\ncytolog\r\ncytologův\r\ncytoložčin\r\ncytoložka\r\ncytoplasmatický\r\ncytoplazma\r\ncytoplazmatický\r\ncytosin\r\ncytosinový\r\ncytostatický\r\ncytostatičtější\r\ncytostatikum\r\ncytotoxicita\r\ncytotoxický\r\ncytotoxičtější\r\nCZ\r\nCzernin\r\nCzerninův\r\nCzuba\r\nCzubová\r\nCzubův\r\nčabajka\r\nčabajský\r\nčabraka\r\nčacký\r\nčača\r\nčačtější\r\nČaďančin\r\nČaďanka\r\nČaďan\r\nČaďanův\r\nČada\r\nČadca\r\nČadek\r\nčadění\r\nČad\r\nčadící\r\nČadíková\r\nČadík\r\nČadíkův\r\nčadit\r\nčadivější\r\nčadivý\r\nČadková\r\nČadkův\r\nČadová\r\nčadský\r\nČadův\r\nčahoun\r\nčahounův\r\nČachotín\r\nčachotínský\r\nčachrářčin\r\nčachrářka\r\nčachrář\r\nčachrářův\r\nčachr\r\nčachrovat\r\nČachrov\r\nčachrovský\r\nčajíček\r\nčajík\r\nČajka\r\nčajka\r\nČajková\r\nČajkovskij\r\nČajkovský\r\nČajkův\r\nčajník\r\nčajovější\r\nčajovka\r\nčajovna\r\nčajovník\r\nčajovníkový\r\nčajový\r\nčaj\r\nčakan\r\nčáka\r\nČaková\r\nČakovice\r\nčakovický\r\nČakov\r\nčakovský\r\nčakrový\r\nČakrtový\r\nČákův\r\nčalamáda\r\nČálek\r\nČalfa\r\nČalfová\r\nČalfův\r\nČálková\r\nČálkův\r\nčalouněnější\r\nčalounění\r\nčalouněný\r\nčaloun\r\nčalounický\r\nčalounictví\r\nčalouník\r\nčalouníkův\r\nčalounit\r\nČalounová\r\nčalounový\r\nČaloun\r\nČalounův\r\nčamara\r\nČančara\r\nČančarová\r\nČančarův\r\nČančíková\r\nČančík\r\nČančíkův\r\nČanda\r\nČandová\r\nČandův\r\nčao\r\nčápě\r\nČapek\r\nčápice\r\nčapí\r\nčapka\r\nČapková\r\nčapkový\r\nČapkův\r\nčapnout\r\nčapnutí\r\nčapnutý\r\nČápová\r\nčáp\r\nČáp\r\nČápův\r\nčápův\r\nčar\r\nčarách\r\nčarám\r\nčarami\r\nčáranice\r\nčárat\r\nčára\r\nčardášový\r\nčardáš\r\nčárečka\r\nČarek\r\nčárka\r\nčárkovací\r\nčárkovanější\r\nčárkovaný\r\nČarková\r\nčárkovitý\r\nčárkový\r\nČarkův\r\nČarnogurský\r\nčárnout\r\nčárnutí\r\nčarodějčin\r\nčarodějka\r\nčarodějnější\r\nčarodějnice\r\nčarodějnický\r\nčarodějnictví\r\nčarodějničin\r\nčarodějničtější\r\nčarodějník\r\nčarodějníkův\r\nčarodějný\r\nčarodějství\r\nčaroděj\r\nčarodějův\r\nčarokrásnější\r\nčarokrásný\r\nčaromocnější\r\nčarostřelba\r\nčarostřelcův\r\nčarostřelec\r\nčarostřelkyně\r\nčarostřelkynin\r\nčarou\r\nčarování\r\nčarovaný\r\nčarovat\r\nčárovější\r\nčarovnější\r\nčarovný\r\nčárový\r\nČárský\r\nčarující\r\nčáry\r\nČása\r\nčásek\r\nčasem\r\nčas\r\nČáslavice\r\nčáslavický\r\nČáslav\r\nČáslavka\r\nČáslavková\r\nČáslavkův\r\nČáslavsko\r\nČáslavský\r\nčáslavský\r\nčasnější\r\nčasný\r\nčasoměr\r\nčasoměrný\r\nčasoměřičský\r\nčasoměřič\r\nčasoměřičův\r\nčasomíra\r\nčasopisecký\r\nčasopisectví\r\nčasopisečtější\r\nčasopis\r\nčasopisový\r\nčasoprostor\r\nčasoprostorový\r\nčasovací\r\nčasovač\r\nčasovanější\r\nčasování\r\nčasovaný\r\nčasovat\r\nčasovávání\r\nčasovávaný\r\nčasovávat\r\nČásová\r\nčasovka\r\nčasový\r\nčástečka\r\nčástečnější\r\nčástečný\r\nčastější\r\nčástice\r\nčásticový\r\nčást\r\nčástka\r\nČástkov\r\nčástkovský\r\nčástkový\r\nčasto\r\nČastochová\r\nčastokrát\r\nčastokráte\r\nČastolovice\r\nčastolovický\r\nčastování\r\nčastovaný\r\nčastovat\r\nčastovávání\r\nčastovávaný\r\nčastovávat\r\nČastrov\r\nčastrovský\r\nčastující\r\nčastuška\r\nčastý\r\nčasupodobný\r\nČásův\r\nčatní\r\nčau\r\nČavisov\r\nčavisovský\r\nČAVU\r\nčazení\r\nčazený\r\nČBÚ\r\nČČK\r\nČD\r\nČebín\r\nčebínský\r\nČebyševov\r\nČebyševovův\r\nČečencův\r\nČečenec\r\nČečensko\r\nčečenský\r\nčečenština\r\nčečetka\r\nČečna\r\nČečovice\r\nčečovický\r\nčedar\r\nčedičový\r\nčedič\r\nČedok\r\nčedokový\r\nčeho\r\nčehokoli\r\nčehokoliv\r\nčehopak\r\nčehos\r\nčehosi\r\nčehož\r\nčehý\r\nčecháček\r\nčecháčkovský\r\nčecháčkovství\r\nčecháčkovštější\r\nčecháčkův\r\nČecháková\r\nČechák\r\nČechákův\r\nČechie\r\nčechismus\r\nčechistický\r\nČechlovský\r\nČechoameričančin\r\nČechoameričanka\r\nčechocentrismus\r\nčechoslovakismus\r\nčechoslovakista\r\nčechoslovakistčin\r\nčechoslovakistka\r\nčechoslovakistův\r\nčechoslovákový\r\nČechoslovák\r\nČechoslovákův\r\nčechošvýcarský\r\nČechová\r\nČechov\r\nČechovův\r\nčechový\r\nČech\r\nČech\r\nčechrací\r\nčechradlo\r\nčechrání\r\nčechraný\r\nčechrat\r\nČechtice\r\nčechtický\r\nČechtín\r\nčechtínský\r\nČechura\r\nČechurová\r\nČechurův\r\nČechův\r\nČechy\r\nČejč\r\nČejka\r\nčejka\r\nČejková\r\nČejkovice\r\nčejkovický\r\nČejkovský\r\nČejkův\r\nČejov\r\nčejovský\r\nčekací\r\nčekající\r\nČekalová\r\nČekal\r\nČekalův\r\nčekání\r\nčekanka\r\nčekaný\r\nčekárna\r\nčekatelčin\r\nčekatelka\r\nčekatelský\r\nčekatelství\r\nčekatel\r\nčekatelův\r\nčekat\r\nčekávání\r\nčekávaný\r\nčekávat\r\nčekista\r\nčekistčin\r\nčekistka\r\nčekistův\r\nčeladenský\r\nčeládka\r\nČeladná\r\nČelákovice\r\nČelákovicko\r\nčelákovický\r\nČelakovský\r\nčelba\r\nČeleda\r\nčeledín\r\nčeledínův\r\nčeledník\r\nčelední\r\nČeledová\r\nČeledův\r\nčeleď\r\nČelechovice\r\nčelechovický\r\nčelení\r\nčelenka\r\nčelený\r\nčelící\r\nčelista\r\nčelistčin\r\nčelistenský\r\nčelist\r\nčelistka\r\nčelistnatcův\r\nčelistnatec\r\nČelistná\r\nčelistní\r\nčelisťový\r\nčelistův\r\nČelišová\r\nČeliš\r\nČelišův\r\nčelit\r\nČeljabinsk\r\nČeljabinsk\r\nčeljabinský\r\nčelnější\r\nčelní\r\nčelný\r\nčelo\r\nčelovka\r\nčelový\r\nčem\r\nčemeřice\r\nčemkoli\r\nčemkoliv\r\nčempak\r\nčems\r\nčemsi\r\nčemu\r\nčemukoli\r\nčemukoliv\r\nčemupak\r\nčemus\r\nčemusi\r\nčemuž\r\nčemž\r\nČenčíková\r\nČenčík\r\nČenčíkův\r\nČenda\r\nČendův\r\nČeněk\r\nčenichající\r\nčenichání\r\nčenichat\r\nčenich\r\nčenichový\r\nČenkovice\r\nčenkovický\r\nČenkov\r\nčenkovský\r\nČeňkův\r\nČenův\r\nČepava\r\nčepec\r\nčepeček\r\nČepek\r\nČepeláková\r\nČepelák\r\nČepelákův\r\nčepelatka\r\nČepelíková\r\nČepelík\r\nČepelíkův\r\nČepelka\r\nčepelka\r\nČepelková\r\nčepelkový\r\nČepelkův\r\nčepelovitý\r\nčepelový\r\nčepel\r\nČeperka\r\nčep\r\nčepice\r\nČepička\r\nčepička\r\nČepičková\r\nČepičkův\r\nčepka\r\nČepková\r\nČepkův\r\nčepobití\r\nčepovací\r\nčepovala\r\nčepování\r\nčepovaný\r\nčepovat\r\nčepovec\r\nčepový\r\nčepýření\r\nčepýřený\r\nčepýřit\r\nČeradice\r\nčeradický\r\nČerbáková\r\nČerbák\r\nČerbákův\r\nčerenský\r\nčerchování\r\nčerchovaný\r\nčerchovat\r\nČerchov\r\nčerchovský\r\nčerkeský\r\nČerkes\r\nČermáková\r\nČermák\r\nČermákův\r\nčermenský\r\nČermná\r\nčernající\r\nčernání\r\nČerňanský\r\nčernat\r\nČernava\r\nčernava\r\nčernavý\r\nČerná\r\nČernčice\r\nčernčický\r\nČernecký\r\nčernější\r\nčernění\r\nčerněný\r\nČerněves\r\nČerněveský\r\nČernice\r\nČernický\r\nčernický\r\nčernidlo\r\nČerníková\r\nČerníkovice\r\nčerníkovický\r\nČerníkov\r\nčerníkovský\r\nČerník\r\nČerníkův\r\nČernilov\r\nčernilovský\r\nČernínová\r\nČernín\r\nčernínský\r\nČernínův\r\nčerniš\r\nčernišův\r\nčernit\r\nčernobílejší\r\nčernobílý\r\nČernobyl\r\nčernobýl\r\nčernobylský\r\nČernocký\r\nčernočerný\r\nčernočervený\r\nčernohlávek\r\nČernohlávek\r\nČernohlávková\r\nČernohlávkův\r\nčernohlávkův\r\nčernohlavý\r\nčernohnědý\r\nČernohorcův\r\nČernohorčin\r\nČernohorec\r\nČernohorka\r\nČernohorský\r\nčernohorský\r\nČernohousová\r\nČernohous\r\nČernohousův\r\nČernochová\r\nčernoch\r\nČernoch\r\nČernochův\r\nčernochův\r\nčernokněžnický\r\nčernokněžník\r\nčernokostelecký\r\nčernokrký\r\nčernokřídlý\r\nČernolice\r\nčernolický\r\nčernomodřejší\r\nČernomoří\r\nčernomořský\r\nčernomořský\r\nčerno\r\nčernoocasý\r\nčernooký\r\nčernooranžový\r\nčernorudý\r\nčernostrakatý\r\nčernošedý\r\nČernošice\r\nčernošický\r\nČernošín\r\nčernošínský\r\nčernoší\r\nčernoška\r\nčernošský\r\nčernošství\r\nČernota\r\nčernota\r\nČernotín\r\nčernotínský\r\nČernotová\r\nčernotříslový\r\nČernotův\r\nčernouhelný\r\nčernoušek\r\nčernouškův\r\nČernovice\r\nčernovický\r\nČernov\r\nčernovláska\r\nčernovlasý\r\nčernovský\r\nčernozelený\r\nčernozemní\r\nčernozem\r\nČernožice\r\nčernožický\r\nčernožlutý\r\nČerný\r\nčerný\r\nčerň\r\nčerpací\r\nčerpačka\r\nčerpadlářčin\r\nčerpadlářka\r\nčerpadlář\r\nčerpadlářův\r\nčerpadla\r\nčerpadlo\r\nčerpadlový\r\nčerpající\r\nčerpání\r\nčerpaný\r\nčerpatelný\r\nčerpat\r\nčerpávání\r\nčerpávaný\r\nčerpávat\r\nčerstva\r\nčerstvější\r\nčerstvý\r\nčertice\r\nčertík\r\nčertíkův\r\nčertit\r\nčertí\r\nčertovina\r\nčertovský\r\nčertovství\r\nčertovštější\r\nčertový\r\nčert\r\nčertův\r\nčertví\r\nčertvíco\r\nčertvíčí\r\nčertvíjak\r\nčertvíjaký\r\nčertvíkam\r\nčertvíkde\r\nčertvíkdo\r\nčertvíkdy\r\nčertvíkolik\r\nčertvíkterý\r\nčertvíkudy\r\nčertvínač\r\nčertvíodkud\r\nčertvíproč\r\nčervánek\r\nčervánkový\r\nčervavět\r\nčervavý\r\nčervec\r\nčerveň\r\nČervenáček\r\nČervenáčkův\r\nčervenající\r\nČerveňáková\r\nČerveňák\r\nČerveňákův\r\nčervenání\r\nčervenat\r\nčervenavý\r\nčervencovější\r\nčervencový\r\nčerveně\r\nčervenec\r\nčervenější\r\nčerveněmi\r\nčerveni\r\nčervení\r\nčerveních\r\nčervením\r\nčervenit\r\nČervenka\r\nčervenka\r\nČervenková\r\nČervenkův\r\nčerven\r\nčervenobělejší\r\nčervenobílý\r\nčervenočerný\r\nčervenofialový\r\nčervenohnědý\r\nčervenokostelecký\r\nčervenolící\r\nčervenomodrobílý\r\nčervenomodrý\r\nčervenomodřejší\r\nčervenooký\r\nčervenooranžový\r\nČerveňová\r\nčervenozem\r\nčervenožlutý\r\nČerveň\r\nČerveňův\r\nČervený\r\nčervený\r\nčervíček\r\nčervíčkův\r\nčervík\r\nčervíkův\r\nčervinčin\r\nČervinka\r\nčervinka\r\nČervinková\r\nČervinkův\r\nčervivější\r\nčervivý\r\nčerví\r\nčervnový\r\nčervotočina\r\nčervotočivější\r\nčervotočivý\r\nčervotoč\r\nčervotočův\r\nČervová\r\nčervovitější\r\nčervovitý\r\nčerv\r\nČerv\r\nČervův\r\nčervův\r\nčeřen\r\nčeření\r\nčeřený\r\nčeřící\r\nčeřidlo\r\nčeřit\r\nčeřitý\r\nčeřovat\r\nČeřovský\r\nčes\r\nčesací\r\nčesačka\r\nčesač\r\nčesáč\r\nčesačův\r\nčesáčův\r\nČesáková\r\nČesák\r\nČesákův\r\nčesanec\r\nčesanější\r\nčesání\r\nčesaný\r\nčesat\r\nčesávání\r\nčesávaný\r\nčesávat\r\nČesenek\r\nČesenková\r\nČesenkův\r\nČeská\r\nčeskoamerický\r\nčeskobratrský\r\nČeskobudějovicko\r\nčeskobudějovický\r\nčeskobudějovický\r\nČesko\r\nčeskokamenický\r\nČeskolipsko\r\nčeskolipský\r\nčeskomoravský\r\nčeskoněmecký\r\nČeskoslovanská\r\nčeskoslovanský\r\nČeskoslovensko\r\nčeskoslovenský\r\nČeskotřebovsko\r\nčeskotřebovský\r\nčeský\r\nčeský\r\nčesle\r\nčeslicový\r\nčesnečka\r\nčesnek\r\nčesnekovější\r\nčesnekový\r\nčesno\r\nčesnový\r\nčesový\r\nčest\r\nČestice\r\nčestický\r\nČestín\r\nčestínský\r\nČestlice\r\nčestlický\r\nČestmír\r\nČestmírův\r\nčestnější\r\nčestný\r\nČeška\r\nČeška\r\nčéška\r\nČešková\r\nČeškovice\r\nčeškovický\r\nČeškův\r\nČešov\r\nčešovský\r\nčešství\r\nčeštější\r\nčeštinářčin\r\nčeštinářka\r\nčeštinář\r\nčeštinářův\r\nčeština\r\nčetař\r\nčetařův\r\nčeta\r\nčetba\r\nčetka\r\nčetnější\r\nčetnický\r\nčetnictvo\r\nčetničtější\r\nčetník\r\nčetníkův\r\nčetnostní\r\nčetný\r\nčevabčiči\r\nčevapčiči\r\nČevela\r\nČevelová\r\nČevelův\r\nČEZ\r\nČF\r\nČFVU\r\nČHF\r\nČHMÚ\r\nči\r\nčibuk\r\nčíča\r\nČíčenice\r\nčíčenický\r\nčiči\r\nčičí\r\nčičiči\r\nčičičí\r\nčičinka\r\nčička\r\nčičorečkový\r\nčičorka\r\nčidlo\r\nČiháček\r\nČiháčková\r\nČiháčkův\r\nčihadlo\r\nčíhající\r\nČiháková\r\nČihák\r\nČihákův\r\nČíhalíková\r\nČíhalík\r\nČíhalíkův\r\nČíhalín\r\nčíhalínský\r\nčíhaná\r\nčíhání\r\nčíhat\r\nčíhavý\r\nčíhokoli\r\nčíhos\r\nčíhosi\r\nčihošťský\r\nčihošťský\r\nČihošť\r\nČihula\r\nČihulová\r\nČihulův\r\nČichalov\r\nčichalovský\r\nčichal\r\nčichalův\r\nčichání\r\nčichaný\r\nčichat\r\nčichavcův\r\nčichavec\r\nčich\r\nčíchkoli\r\nčichnout\r\nčichnutí\r\nčichovější\r\nČíchov\r\nčíchovský\r\nčichový\r\nčíchs\r\nčíchsi\r\nČiklová\r\nČikl\r\nČiklův\r\nčíkoli\r\nČikov\r\nčikovský\r\nČilá\r\nčilecký\r\nČilec\r\nčilejší\r\nčili\r\nčilimník\r\nčilimníkový\r\nčílit\r\nČílová\r\nČíl\r\nčilský\r\nČílův\r\nčilý\r\nčim\r\nčím\r\nčímakoli\r\nčíman\r\nčimanský\r\nčímanův\r\nčímas\r\nčímasi\r\nČimbura\r\nČimburová\r\nČimburův\r\nčimčara\r\nčimčarování\r\nČimelice\r\nčimelický\r\nČíměř\r\nČimice\r\nčimický\r\nčímikoli\r\nčímis\r\nčímisi\r\nčímkoli\r\nčímkoliv\r\nčímpak\r\nčíms\r\nčímsi\r\nčímukoli\r\nčímus\r\nčímusi\r\nčímž\r\nČíňančin\r\nČíňanka\r\nČíňan\r\nČíňanův\r\nČína\r\nčinčila\r\nčinčilový\r\nčinel\r\nčinění\r\nčiněný\r\nČiněves\r\nČiněveský\r\nČingischán\r\nČingischánův\r\nčin\r\nčinící\r\nčinidlo\r\nčinit\r\nčinitelčin\r\nčinitelka\r\nčinitelský\r\nčinitel\r\nčinitelův\r\nčiníváno\r\nčinívat\r\nčinka\r\nčinkový\r\nčinnější\r\nčinnostní\r\nčinný\r\nčinoherní\r\nčinohra\r\nčinorodější\r\nčinorodý\r\nčinovník\r\nčinovníkův\r\nčínský\r\nčínština\r\nčinžák\r\nčinžákový\r\nčinže\r\nčinžovní\r\nČípcová\r\nČípcův\r\nČípec\r\nčípek\r\nČipera\r\nčipera\r\nČiperka\r\nčiperka\r\nČiperková\r\nČiperkův\r\nčipernější\r\nčiperný\r\nČiperová\r\nČiperův\r\nčiperův\r\nčip\r\nčípkový\r\nčiplenka\r\nčipování\r\nčipovat\r\nčipový\r\nčírka\r\nčiročirý\r\nčiročiřejší\r\nčirok\r\nČírtka\r\nČírtková\r\nČírtkův\r\nčirůvka\r\nčirý\r\nčiřejší\r\nčiření\r\nčiřený\r\nčiřící\r\nčiřidlo\r\nčiřikání\r\nčiřikat\r\nčiřit\r\nčís\r\nčíselník\r\nčíselný\r\nčísi\r\nčíslice\r\nčíslicový\r\nčíslíčko\r\nčíslo\r\nčíslovací\r\nčíslovačka\r\nčíslovanější\r\nčíslování\r\nčíslovaný\r\nčíslovat\r\nčíslovávání\r\nčíslovávaný\r\nčíslovávat\r\nčíslovka\r\nČísovice\r\nčísovický\r\nčistajasna\r\nčíst\r\nČistá\r\nčistecký\r\nčistěji\r\nčistější\r\nčistění\r\nčisticí\r\nčistící\r\nčistička\r\nčistič\r\nčistidlo\r\nčistírenský\r\nčistírna\r\nčistit\r\nčistitelný\r\nčistka\r\nčistočistý\r\nčistokrevnější\r\nčistokrevný\r\nčist\r\nčisto\r\nčistopis\r\nčistota\r\nčistotnější\r\nčistotný\r\nčisťoučký\r\nčisťounký\r\nčistší\r\nčistý\r\nčišet\r\nčíše\r\nčišící\r\nčíška\r\nčíšnice\r\nčíšnický\r\nčíšničtější\r\nčíšník\r\nčíšníkův\r\nčíšovitý\r\nčištění\r\nčištěný\r\nČíštěves\r\nČíštěveský\r\nčíš\r\nčítací\r\nčítač\r\nčítající\r\nčítání\r\nčítanka\r\nčítankovější\r\nčítankový\r\nčítaný\r\nčítárna\r\nčitatelný\r\nčitatel\r\nčítat\r\nčítávaný\r\nčítávat\r\nčít\r\nčitější\r\nčitelnější\r\nčitelný\r\nčití\r\nčit\r\nčitý\r\nčitý\r\nčivava\r\nČivice\r\nčivický\r\nčivý\r\nčí\r\nČíža\r\nčížek\r\nČížek\r\nČižinský\r\nČížková\r\nČížkov\r\nčížkovský\r\nčížkový\r\nČížkův\r\nčížkův\r\nČižmárová\r\nČižmár\r\nČižmárův\r\nČížová\r\nČížov\r\nčížovský\r\nČíž\r\nČížův\r\nčj\r\nČKD\r\nČkyně\r\nčkyňský\r\nčl\r\nčláneček\r\nčlánek\r\nčlánkování\r\nčlánkovaný\r\nčlánkovat\r\nčlánkovitý\r\nčlánkový\r\nčlenčin\r\nčleněnější\r\nčlenění\r\nčleněný\r\nčlenicí\r\nčlenící\r\nčlenit\r\nčlenitější\r\nčlenitelnější\r\nčlenitelný\r\nčlenitý\r\nčlenka\r\nčlenný\r\nčlenovcův\r\nčlenovec\r\nčlen\r\nčlenský\r\nčlenství\r\nčlenstvo\r\nčlenův\r\nčlověče\r\nčlověčenství\r\nčlověčenstvo\r\nčlověčina\r\nčlověčí\r\nčlověk\r\nčlověka\r\nčlověkem\r\nčlověkorok\r\nčlověku\r\nčlovíček\r\nčlovíčkův\r\nčlunek\r\nčlun\r\nčlunkový\r\nčlunový\r\nčmajznout\r\nčmajznutí\r\nčmajznutý\r\nčmárající\r\nčmáranice\r\nčmárání\r\nčmáraný\r\nčmárat\r\nčmárnout\r\nčmárnutí\r\nčmárnutý\r\nčmeláčisko\r\nčmelák\r\nčmelákův\r\nČmelíková\r\nčmelíkovitý\r\nčmelík\r\nČmelík\r\nČmelíkův\r\nčmelíkův\r\nČMKOS\r\nčmoud\r\nčmoudící\r\nčmouha\r\nčmuchálek\r\nčmuchálkův\r\nčmuchal\r\nčmuchalův\r\nčmuchání\r\nčmuchat\r\nčmuchávat\r\nČNB\r\nčnějící\r\nčnělka\r\nčnění\r\nčnět\r\nčnící\r\nčnít\r\nČNR\r\nčočka\r\nčočkovitý\r\nčočkový\r\nčokl\r\nčoklův\r\nčokoláda\r\nčokoládka\r\nčokoládovna\r\nčokoládový\r\nČoková\r\nČok\r\nČokův\r\nčolek\r\nčolkův\r\nČondlová\r\nČondl\r\nČondlův\r\nČonka\r\nČonková\r\nČonkův\r\nČopava\r\nČorba\r\nČorbová\r\nČorbův\r\nČornejová\r\nČornej\r\nČornejův\r\nČOS\r\nčoud\r\nčoudící\r\nčoudit\r\nčouhající\r\nčouhání\r\nčouhat\r\nČOV\r\nčp\r\nčpavější\r\nčpavek\r\nčpavkárna\r\nčpavkování\r\nčpavkový\r\nčpavý\r\nčpění\r\nčpět\r\nčpící\r\nčpít\r\nČR\r\nčrezvyčajka\r\nčrtající\r\nčrtání\r\nčrtaný\r\nčrtat\r\nčrta\r\nčrtnáctidenní\r\nčs\r\nČSA\r\nČSAD\r\nČSAV\r\nČSČK\r\nČSFR\r\nČSKOS\r\nČSL\r\nČSLA\r\nČSM\r\nČSN\r\nČSOP\r\nČSR\r\nČSSD\r\nČSSR\r\nČSTV\r\nČSÚ\r\nČSVTS\r\nČT\r\nčtecí\r\nčtečka\r\nčtenářčin\r\nčtenářka\r\nčtenářský\r\nčtenářství\r\nčtenářstvo\r\nčtenářštější\r\nčtenář\r\nčtenářův\r\nčtenější\r\nčtení\r\nčtený\r\nčterčík\r\nčtivější\r\nčtivo\r\nčtivý\r\nČTK\r\nčtnáctideník\r\nčtnáctkrát\r\nčtnáctkráte\r\nčtoucí\r\nčtrnácterák\r\nčtrnácterákův\r\nčtrnáctero\r\nčtrnácteronásobný\r\nčtrnáctery\r\nčtrnácterý\r\nčtrnáct\r\nčtrnáctibodový\r\nčtrnáctibodový\r\nčtrnácticentimetrový\r\nčtrnáctice\r\nčtrnáctičlenný\r\nčtrnáctideník\r\nčtrnáctidenní\r\nčtrnáctihektarový\r\nčtrnáctihlavý\r\nčtrnáctihodinový\r\nčtrnáctikarátový\r\nčtrnáctikilometrový\r\nčtrnáctikusový\r\nčtrnáctiletý\r\nčtrnáctilibrový\r\nčtrnáctilitrový\r\nčtrnáctimetrový\r\nčtrnáctimiliardový\r\nčtrnáctimilionový\r\nčtrnáctimiliónový\r\nčtrnáctiminutový\r\nčtrnáctinásobný\r\nčtrnáctina\r\nčtrnáctipatrový\r\nčtrnáctiřádkový\r\nčtrnáctistránkový\r\nčtrnáctistupňový\r\nčtrnáctitisícový\r\nčtrnáctka\r\nčtrnáctkový\r\nčtrnáctý\r\nČTV\r\nčtverácký\r\nčtveráctví\r\nčtveráčtější\r\nčtverák\r\nčtverákův\r\nčtvercovitý\r\nčtvercový\r\nčtverčík\r\nčtverčíkový\r\nčtverec\r\nčtvereček\r\nčtverečkovaný\r\nčtverečkový\r\nčtvereční\r\nčtverečný\r\nčtverhranný\r\nčtverka\r\nčtvermo\r\nčtvernohý\r\nčtvernožcův\r\nčtvernožec\r\nčtvero\r\nčtvery\r\nčtverylka\r\nčtverý\r\nčtverzubec\r\nčtveřice\r\nčtveřina\r\nČtveřín\r\nčtveřínský\r\nčtvrcení\r\nčtvrcený\r\nčtvrohorní\r\nčtvrt\r\nčtvrťaččin\r\nčtvrťačka\r\nčtvrťák\r\nčtvrťákův\r\nčtvrtarch\r\nčtvrtdenní\r\nČtvrteček\r\nčtvrtečka\r\nČtvrtečková\r\nČtvrtečkův\r\nčtvrteční\r\nčtvrtek\r\nČtvrtek\r\nčtvrtfinále\r\nčtvrtfinalista\r\nčtvrtfinalistčin\r\nčtvrtfinalistka\r\nčtvrtfinalistův\r\nčtvrtfinálový\r\nčtvrthodina\r\nčtvrthodinka\r\nčtvrthodinový\r\nčtvrtikna\r\nčtvrtina\r\nčtvrtinový\r\nčtvrtit\r\nčtvrtkařčin\r\nčtvrtkařka\r\nčtvrtkař\r\nčtvrtkařův\r\nčtvrtka\r\nčtvrtkilogramový\r\nčtvrtkilometrový\r\nčtvrtkmen\r\nČtvrtková\r\nčtvrtkový\r\nčtvrtkruh\r\nčtvrtkruhový\r\nČtvrtkův\r\nčtvrtletí\r\nčtvrtletník\r\nčtvrtletní\r\nčtvrtlitr\r\nčtvrtlitrový\r\nčtvrtměsíční\r\nčtvrtmetrový\r\nčtvrtmiliardový\r\nčtvrtmilionový\r\nčtvrtmiliónový\r\nčtvrtminuta\r\nčtvrtminutový\r\nČtvrtníček\r\nčtvrtníček\r\nČtvrtníčková\r\nČtvrtníčkův\r\nčtvrtník\r\nČtvrtníková\r\nČtvrtník\r\nČtvrtníkův\r\nčtvrtoblouk\r\nčtvrtobloukový\r\nčtvrtobrat\r\nčtvrtohorní\r\nčtvrtohory\r\nčtvrťový\r\nčtvrtpalcový\r\nčtvrtprocentní\r\nčtvrtroční\r\nčtvrtrok\r\nčtvrtstoletí\r\nčtvrttón\r\nčtvrttónový\r\nčtvrttýdenní\r\nčtvrtý\r\nčtvrť\r\nčtyr\r\nčtyráček\r\nčtyrák\r\nčtyrboký\r\nčtyrčárkovaný\r\nčtyrčlenný\r\nčtyrdenní\r\nčtyrech\r\nčtyrem\r\nčtyrhodinový\r\nčtyrka\r\nčtyrkilometrový\r\nčtyrlitrový\r\nčtyrlůžkový\r\nčtyrměsíční\r\nčtyrmetrový\r\nčtyrmi\r\nčtyrminutový\r\nčtyrnásobný\r\nčtyrpísmenný\r\nčtyrroční\r\nčtyrrohý\r\nčtyrsemestrový\r\nčtyrstovka\r\nčtyrstrunný\r\nčtyrtisícovka\r\nčtyrtýdenní\r\nčtyry\r\nčtyrycetice\r\nčtyrycetina\r\nčtyrycetitisícovka\r\nčtyrycetkrát\r\nčtyrycítka\r\nčtyrykrát\r\nčtyrykráte\r\nčtyř\r\nčtyřaktovka\r\nčtyřaktový\r\nčtyřapůllitrový\r\nčtyřbajtový\r\nčtyřbarevný\r\nčtyřbarvotisk\r\nčtyřbitový\r\nčtyřbodový\r\nčtyřbodový\r\nčtyřbojař\r\nčtyřbojařův\r\nčtyřboj\r\nčtyřboký\r\nčtyřbrankový\r\nčtyřbránový\r\nčtyřbytový\r\nčtyřcentimetrový\r\nčtyřciferný\r\nčtyřcípý\r\nčtyřčárkovaný\r\nčtyřče\r\nčtyřčíslí\r\nčtyřčlenný\r\nčtyřčtvrteční\r\nčtyřdenní\r\nčtyřdesetibytový\r\nčtyřdílný\r\nčtyřdobý\r\nčtyřdohoda\r\nčtyřdveřový\r\nčtyřech\r\nčtyřem\r\nčtyřetážový\r\nčtyřgólový\r\nčtyřhektarový\r\nčtyřhlasý\r\nčtyřhlavňový\r\nčtyřhlavý\r\nčtyřhodinovka\r\nčtyřhodinový\r\nčtyřhodnotový\r\nčtyřhranný\r\nčtyřhra\r\nčtyřhvězda\r\nčtyřhvězdičkový\r\nčtyři\r\nčtyřiačtyřicetikilový\r\nčtyřiadevadesátimetrový\r\nčtyřiadvacetibajtový\r\nčtyřiadvacetibitový\r\nčtyřiadvacetibodový\r\nčtyřiadvacetihektarový\r\nčtyřiadvacetihodinovka\r\nčtyřiadvacetihodinový\r\nčtyřiadvacetijehličkový\r\nčtyřiadvacetimiliardový\r\nčtyřiadvacetipatrový\r\nčtyřiadvacetistránkový\r\nčtyřiadvacetisvazkový\r\nčtyřiadvacetitisícový\r\nčtyřiaosmdesátimilionový\r\nčtyřiašedesátibitový\r\nčtyřiašedesátistránkový\r\nčtyřiatřicetimilionový\r\nčtyřicatero\r\nčtyřicatery\r\nčtyřicaterý\r\nčtyřicátiny\r\nčtyřicátnice\r\nčtyřicátník\r\nčtyřicátníkův\r\nčtyřicátý\r\nčtyřicet\r\nčtyřicetibodový\r\nčtyřiceticentimetrový\r\nčtyřicetice\r\nčtyřicetihaléřový\r\nčtyřicetihektarový\r\nčtyřicetihodinový\r\nčtyřicetikilogramový\r\nčtyřicetikilometrový\r\nčtyřicetikilový\r\nčtyřicetikolový\r\nčtyřicetikorunový\r\nčtyřicetiletý\r\nčtyřicetimetrový\r\nčtyřicetimiliardový\r\nčtyřicetimilionový\r\nčtyřicetimiliónový\r\nčtyřicetimílový\r\nčtyřicetiminutovka\r\nčtyřicetiminutový\r\nčtyřicetinásobný\r\nčtyřicetina\r\nčtyřicetisekundový\r\nčtyřicetistránkový\r\nčtyřicetistupňový\r\nčtyřicetitisícovka\r\nčtyřicetitisícový\r\nčtyřicetitunový\r\nčtyřicetivteřinový\r\nčtyřicetiwattový\r\nčtyřicetkrát\r\nčtyřicíti\r\nčtyřicítina\r\nčtyřicítka\r\nčtyřikrát\r\nčtyřikráte\r\nčtyřistakilogramový\r\nčtyřistakilometrový\r\nčtyřistakilový\r\nčtyřistametrový\r\nčtyřistamiliardový\r\nčtyřistamilionový\r\nčtyřistastránkový\r\nčtyřistatisícový\r\nčtyřistatunový\r\nčtyřjazyčný\r\nčtyřkanálový\r\nČtyřkantonské\r\nčtyřkařčin\r\nčtyřkařka\r\nčtyřkař\r\nčtyřkařův\r\nčtyřka\r\nčtyřkilogramový\r\nčtyřkilometrový\r\nčtyřkilometrový\r\nčtyřkilový\r\nčtyřkoalice\r\nčtyřkolka\r\nčtyřkolový\r\nčtyřkombinace\r\nčtyřkomorový\r\nčtyřkorunový\r\nčtyřkový\r\nčtyřkřídlý\r\nčtyřletý\r\nčtyřliniový\r\nčtyřlístek\r\nčtyřlist\r\nčtyřlistový\r\nčtyřlistý\r\nčtyřlitrový\r\nčtyřlomový\r\nčtyřlůžkový\r\nčtyřmegabajtový\r\nčtyřmegabytový\r\nčtyřměsíční\r\nčtyřmetrový\r\nčtyřmetrový\r\nčtyřmi\r\nčtyřmiliardový\r\nčtyřmilimetrový\r\nčtyřmilionový\r\nčtyřmiliónový\r\nčtyřminutovka\r\nčtyřminutový\r\nčtyřmístný\r\nčtyřmocný\r\nčtyřmotorový\r\nčtyřnápravový\r\nčtyřnásob\r\nčtyřnásobek\r\nčtyřnásobný\r\nčtyřnohý\r\nčtyřnožcův\r\nčtyřnožec\r\nčtyřnožka\r\nčtyřpatrový\r\nčtyřpísmenný\r\nčtyřplemenný\r\nčtyřpodlažní\r\nčtyřpokojový\r\nčtyřpól\r\nčtyřpólový\r\nčtyřposchoďový\r\nčtyřpostelový\r\nčtyřprocentní\r\nčtyřprostor\r\nčtyřproudový\r\nčtyřroční\r\nčtyřrohý\r\nčtyřrozměrný\r\nčtyřruční\r\nčtyřruční\r\nčtyřrychlostní\r\nčtyřřádkový\r\nčtyřřadový\r\nčtyřřadý\r\nčtyřsedadlový\r\nčtyřsekundový\r\nčtyřsemestrový\r\nčtyřsetbodový\r\nčtyřsetdolarový\r\nčtyřsetgramový\r\nčtyřsethektarový\r\nčtyřsethlavý\r\nčtyřsethodinový\r\nčtyřsetkilometrový\r\nčtyřsetkorunový\r\nčtyřsetmegawattový\r\nčtyřsetmetrový\r\nčtyřsetmilionový\r\nčtyřsetsedadlový\r\nčtyřsetstránkový\r\nčtyřsettisícový\r\nčtyřslabičný\r\nčtyřspřeží\r\nčtyřstavový\r\nčtyřstěn\r\nčtyřstěžňový\r\nčtyřstopý\r\nčtyřstovka\r\nčtyřstovkový\r\nčtyřstranka\r\nčtyřstránkový\r\nčtyřstranný\r\nčtyřstrunný\r\nčtyřstup\r\nčtyřstupňový\r\nčtyřstý\r\nčtyřsvazkový\r\nčtyřtakt\r\nčtyřtaktní\r\nčtyřtisící\r\nčtyřtisícovka\r\nčtyřtisícový\r\nčtyřtřídka\r\nčtyřtřídní\r\nčtyřtunový\r\nčtyřtýdenní\r\nčtyřúhelník\r\nčtyřúhelníkový\r\nčtyřválcový\r\nčtyřválec\r\nčtyřventilový\r\nčtyřverší\r\nčtyřveršový\r\nčtyřveslice\r\nčtyřvrstvý\r\nčtyřznakový\r\nČuba\r\nčuba\r\nČubek\r\nčubička\r\nčubka\r\nČubková\r\nČubkův\r\nČubová\r\nČubův\r\nčučet\r\nčudlík\r\nČudské\r\nčuft\r\nčuchání\r\nčuchat\r\nčující\r\nČukotka\r\nčukotský\r\nčukotský\r\nČulíková\r\nČulík\r\nČulíkův\r\nčumáček\r\nčumák\r\nČuma\r\nčumět\r\nčumil\r\nčumilův\r\nČumová\r\nČumův\r\nčuňák\r\nčuňákův\r\nčundr\r\nčundrující\r\nčuně\r\nčuník\r\nčuníkův\r\nČupra\r\nČuprová\r\nČuprův\r\nčupřina\r\nčupřinka\r\nčurající\r\nčurání\r\nčůrání\r\nčuraný\r\nčůraný\r\nčurat\r\nčůrat\r\nčurávající\r\nčůrávající\r\nčurávání\r\nčurávaný\r\nčůrávaný\r\nčurávat\r\nčůrávat\r\nČurda\r\nČurdová\r\nČurdův\r\nčůrek\r\nčurka\r\nČuříková\r\nČuřík\r\nČuříkův\r\nčutat\r\nČutek\r\nČutková\r\nČutkův\r\nčutnout\r\nčutnutí\r\nčutnutý\r\nčutora\r\nčuvaština\r\nčvachtající\r\nčvachtanice\r\nčvachtání\r\nčvachtat\r\nčvachtávání\r\nčvachtávat\r\nČvančara\r\nČvančarová\r\nČvančarův\r\nčverečkovaný\r\nČVUT\r\nČZ\r\nďábel\r\nďábelský\r\nďábelství\r\nďábelštější\r\ndabing\r\ndabingový\r\ndabink\r\nďábla\r\nďáble\r\nďáblech\r\nďáblem\r\nďábli\r\nďáblice\r\nďáblíček\r\nďáblíčkův\r\nďáblík\r\nďáblíkův\r\nďáblové\r\nďáblovi\r\nďáblovštější\r\nďáblu\r\nďáblů\r\nďáblům\r\nďáblův\r\nďábly\r\ndabovací\r\ndabování\r\ndabovaný\r\ndabovat\r\ndabovávání\r\ndabovávaný\r\ndabovávat\r\ndabující\r\nDácie\r\nDačice\r\nDačicko\r\ndačický\r\ndadaismus\r\ndadaista\r\ndadaistčin\r\ndadaistický\r\ndadaističtější\r\ndadaistka\r\ndadaistův\r\nDadáková\r\nDadák\r\nDadákův\r\ndadání\r\ndadat\r\ndadista\r\ndadistčin\r\ndadistka\r\ndadistův\r\nDaďourek\r\nDaďourková\r\nDaďourkův\r\ndafnie\r\ndag\r\ndagestánský\r\nDagmar\r\nDagmara\r\nDagmařin\r\nDagobertův\r\ndaguerrotyp\r\ndaguerrotypie\r\nDachov\r\nDaičová\r\nDaič\r\nDaičův\r\nDaimler\r\nDaimlerův\r\nDakota\r\ndakotský\r\ndákština\r\ndaktyl\r\ndaktylka\r\ndaktylografický\r\ndaktyloskop\r\ndaktyloskopický\r\ndaktyloskopičtější\r\ndaktyloskopie\r\ndaktyloskopův\r\ndaktylový\r\ndaktylský\r\ndaktylus\r\ndál\r\ndalajláma\r\ndalajlámův\r\ndalamánek\r\ndálava\r\ndál\r\ndále\r\nDalecký\r\nDalečín\r\ndalečínský\r\ndále\r\ndaleko\r\ndalekohled\r\ndalekohledový\r\ndalek\r\ndaleko\r\ndalekonosný\r\ndalekosáhlejší\r\ndalekosáhlý\r\ndalekozraký\r\ndaleký\r\nDalešice\r\ndalešický\r\ndále\r\nDaliborek\r\nDaliborkův\r\nDalibor\r\nDaliborův\r\nDalíková\r\nDalík\r\nDalíkův\r\nDalimil\r\nDalimilův\r\ndálkařčin\r\ndálkařka\r\ndálkař\r\ndálkařský\r\ndálkařův\r\ndálka\r\ndálkoměr\r\ndálkový\r\ndalm\r\nDalmácie\r\ndalmatika\r\ndalmatinčin\r\nDalmatinec\r\ndalmatinka\r\ndalmatský\r\ndalmatština\r\ndálnější\r\ndálnice\r\ndálniční\r\ndálnopis\r\ndálnopisný\r\ndálnopisování\r\ndálnopisovaný\r\ndálnopisovat\r\ndálný\r\nDalovice\r\ndalovický\r\ndalší\r\nDalton\r\ndaltonický\r\ndaltonismus\r\ndaltonský\r\ndam\r\nDamajka\r\nDamajková\r\nDamajkův\r\ndamascenský\r\nDamašek\r\ndamašek\r\nDamašková\r\ndamaškový\r\nDamaškův\r\ndáma\r\nDamcová\r\nDamcův\r\nDamec\r\ndámička\r\nDamníkov\r\ndamníkovský\r\nDamokles\r\nDamoklův\r\nDampierrův\r\ndamping\r\ndampr\r\ndámský\r\ndámštější\r\nDAMU\r\ndanajský\r\ndanajštější\r\nDana\r\nDančin\r\nDánčin\r\ndaňčí\r\nDanda\r\ndandismus\r\nDandová\r\nDandův\r\nDaneček\r\nDanečkův\r\ndanější\r\ndaněk\r\nDaněk\r\ndaněkův\r\ndaněla\r\ndanění\r\ndaněný\r\nDanešová\r\nDaneš\r\nDanešův\r\nDanhaklová\r\nDanhakl\r\nDanhaklův\r\nDaňhelka\r\nDaňhelková\r\nDaňhelkův\r\nDaniččin\r\nDaníček\r\nDanička\r\nDaníčková\r\nDaníčkův\r\nDaniela\r\nDanielin\r\nDanielisová\r\nDanielis\r\nDanielisův\r\nDanielová\r\nDaniel\r\nDanielův\r\nDanihelka\r\nDanihelková\r\nDanihelkův\r\nDanihelová\r\nDanihel\r\nDanihelův\r\nDaník\r\nDaníkův\r\nDanin\r\ndání\r\ndanit\r\nDanka\r\nDánka\r\nDaňková\r\nDaňkovice\r\ndaňkovický\r\nDaňkův\r\ndaňkův\r\ndaňový\r\nDán\r\ndán\r\nDan\r\nDánsko\r\ndánský\r\ndánština\r\nDante\r\nDantův\r\nDanuščin\r\nDanuše\r\nDanušin\r\nDanuška\r\nDanův\r\nDánův\r\ndánův\r\ndaný\r\ndaň\r\ndárce\r\ndárcovský\r\ndárcovství\r\ndárcův\r\ndarda\r\ndarebácký\r\ndarebáctví\r\ndarebáčtější\r\ndarebák\r\ndarebákův\r\ndareba\r\ndarebnější\r\ndarebnice\r\ndarebný\r\ndarebův\r\ndáreček\r\ndárek\r\ndaremnější\r\ndaremný\r\ndar\r\nDarina\r\nDarinčin\r\nDarinin\r\nDarinka\r\nDarja\r\nDarjin\r\nDarkovice\r\ndarkovický\r\ndárkový\r\ndárkyně\r\ndárkynin\r\ndarmo\r\ndarmojed\r\ndarmojedův\r\ndarmošlap\r\ndarmošlapův\r\ndarmožrout\r\ndarmožroutův\r\ndarovací\r\ndarovanější\r\ndarování\r\ndarovaný\r\ndarovat\r\ndarovávanější\r\ndarovávání\r\ndarovávaný\r\ndarovávat\r\ndarový\r\ndarující\r\nDarussalam\r\nDarúvar\r\ndarwinismus\r\ndarwinista\r\ndarwinistčin\r\ndarwinistický\r\ndarwinistka\r\ndarwinistův\r\nDarwin\r\nDarwinův\r\nDařbujánová\r\nDařbuján\r\nDařbujánův\r\ndaření\r\ndařící\r\nDařílek\r\nDařílková\r\nDařílkův\r\ndařit\r\ndařívat\r\nĎásek\r\ndáseň\r\nĎásková\r\nĎáskův\r\nDasnice\r\ndasnický\r\ndásňový\r\nďas\r\nďasův\r\nDáša\r\nDašek\r\nDášenčin\r\nDášenka\r\nDašice\r\ndašický\r\nDášin\r\nDašková\r\nDaškův\r\ndatabanka\r\ndatabankový\r\ndatabáze\r\ndatabázista\r\ndatabázistčin\r\ndatabázistka\r\ndatabázistův\r\ndatabázový\r\ndatace\r\ndatační\r\ndatagram\r\ndatagramový\r\ndataprojektor\r\ndatel\r\ndativ\r\ndativní\r\ndát\r\ndatla\r\ndatle\r\ndatlech\r\ndatlem\r\ndatle\r\ndatli\r\ndatlík\r\ndatlíkův\r\ndatlové\r\ndatlovi\r\ndatlovitý\r\ndatlovník\r\ndatlový\r\ndatlu\r\ndatlů\r\ndatlům\r\ndatlův\r\ndatly\r\ndatovací\r\ndatovačka\r\ndatování\r\ndatovaný\r\ndatovat\r\ndatovatelný\r\ndatovávání\r\ndatovávaný\r\ndatovávat\r\ndatový\r\ndatující\r\ndatumka\r\ndatum\r\ndatumovka\r\ndatumový\r\nDaubnerová\r\nDaubner\r\nDaubnerův\r\nDaunův\r\nďaurštější\r\ndávající\r\ndávající\r\ndávanější\r\ndávání\r\ndávaný\r\ndávat\r\ndavelský\r\ndávení\r\ndávený\r\ndav\r\ndávicí\r\ndávící\r\nDavídek\r\nDavídková\r\nDavídkův\r\ndávidlo\r\nDavidová\r\nDavidovičová\r\nDavidovič\r\nDavidovičův\r\nDavid\r\nDavidův\r\ndaviscupový\r\ndavista\r\ndavistčin\r\ndavistka\r\ndavistův\r\nDavis\r\nDavisův\r\ndávit\r\ndávivější\r\ndávivý\r\ndávka\r\ndávkovací\r\ndávkovač\r\ndávkovanější\r\ndávkování\r\ndávkovaný\r\ndávkovat\r\ndávkovávání\r\ndávkovávaný\r\ndávkovávat\r\ndávkový\r\ndávkující\r\nDavle\r\ndávnější\r\ndávno\r\ndávnověk\r\ndávnověký\r\ndávný\r\nDavos\r\ndavoský\r\ndavový\r\ndB\r\ndbající\r\ndbalejší\r\ndbalý\r\ndbalý\r\ndbaní\r\ndbání\r\ndbán\r\ndbát\r\nDC\r\ndcer\r\ndcera\r\ndcerách\r\ndcerám\r\ndcerami\r\ndcéreččin\r\ndcérečka\r\ndcerka\r\ndcero\r\ndcerou\r\ndceru\r\ndcerunčin\r\ndcerunka\r\ndceruška\r\ndcery\r\ndceři\r\ndceřiná\r\ndceřinný\r\ndceřin\r\ndceřiný\r\nde\r\ndeadjektivní\r\ndeadjektivum\r\ndeaktivace\r\ndeaktivační\r\ndeaktivizování\r\ndeaktivizovaný\r\ndeaktivizovat\r\ndeaktivování\r\ndeaktivovaný\r\ndeaktivovat\r\ndealerčin\r\ndealerka\r\ndealer\r\ndealerův\r\ndealokace\r\ndealokování\r\ndealokovaný\r\ndealokovat\r\ndealokovávání\r\ndealokovávaný\r\ndealokovávat\r\ndeamináza\r\ndebakl\r\ndebata\r\ndebatér\r\ndebatérův\r\ndebatní\r\ndebatování\r\ndebatovaný\r\ndebatovat\r\ndebatující\r\ndebetní\r\ndebianovský\r\ndebilita\r\ndebilizující\r\ndebilnější\r\ndebilní\r\ndebil\r\ndebilův\r\ndebl\r\nDeblín\r\ndeblínský\r\ndeblista\r\ndeblistčin\r\ndeblistka\r\ndeblistův\r\ndeblkanoista\r\ndeblkanoistčin\r\ndeblkanoistka\r\ndeblkanoistův\r\ndeblokace\r\nDebnárová\r\nDebnár\r\nDebnárův\r\ndebolševizace\r\nDebrecín\r\ndebrecínský\r\ndebrujár\r\ndebrujárův\r\ndebutantčin\r\ndebutantka\r\ndebutant\r\ndebutantův\r\ndebut\r\ndebutování\r\ndebutovat\r\ndebutový\r\ndebutující\r\ndebužírování\r\ndebužírovat\r\ndecenium\r\ndecentnější\r\ndecentní\r\ndecentrace\r\ndecentralismus\r\ndecentralistický\r\ndecentralističtější\r\ndecentralizace\r\ndecentralizační\r\ndecentralizovanější\r\ndecentralizování\r\ndecentralizovaný\r\ndecentralizovat\r\ndecentrování\r\ndecentrovaný\r\ndecentrovat\r\ndeci\r\ndecibel\r\ndecibelový\r\ndecil\r\ndeciliarda\r\ndecilion\r\ndecilitr\r\ndecimagnituda\r\ndecimálka\r\ndecimální\r\ndecima\r\ndecimetr\r\ndecimetrový\r\ndecimování\r\ndecimovaný\r\ndecimovat\r\ndecimovávání\r\ndecimovávaný\r\ndecimovávat\r\ndecimující\r\ndecinka\r\ndecizní\r\nděcko\r\ndecrescendo\r\nDěčín\r\nděčínsko\r\nděčínský\r\nděčínský\r\ndečka\r\ndéčko\r\ndéčkový\r\nDěda\r\nděda\r\nDedeciusová\r\nDedecius\r\nDedeciusův\r\ndědeček\r\nDědeček\r\nDědečková\r\nDědečkův\r\ndědečkův\r\ndědek\r\nDědek\r\ndědění\r\nděděný\r\ndederonový\r\ndědický\r\nDědicová\r\ndědictví\r\nDědic\r\ndědic\r\nDědicův\r\ndědicův\r\ndědička\r\ndědičný\r\ndedikace\r\ndedikační\r\ndedikování\r\ndedikovaný\r\ndedikovat\r\nDědina\r\ndědina\r\ndědinka\r\nDědinová\r\nDědinův\r\ndědit\r\nděditství\r\nDědková\r\ndědkovský\r\nDědkův\r\ndědkův\r\ndědoušek\r\ndědouškův\r\nDědová\r\ndědovský\r\nděd\r\ndedukce\r\ndedukční\r\ndedukování\r\ndedukovaný\r\ndedukovat\r\ndedukovávání\r\ndedukovávaný\r\ndedukovávat\r\ndeduktivnější\r\ndeduktivní\r\ndědula\r\ndědulův\r\nDědův\r\ndědův\r\ndeetatizace\r\ndefekace\r\ndefekační\r\ndefekt\r\ndefektivnější\r\ndefektnější\r\ndefektní\r\ndefektologický\r\ndefektologičtější\r\ndefektologie\r\ndefektolog\r\ndefektologův\r\ndefektoložčin\r\ndefektoložka\r\ndefektoskop\r\ndefektoskopický\r\ndefektoskopičtější\r\ndefektoskopie\r\ndefenestrace\r\ndefenestrovaný\r\ndefensiva\r\ndefensivnější\r\ndefensivní\r\ndefenziva\r\ndefenzíva\r\ndefenzivnější\r\ndefenzívnější\r\ndefenzivní\r\ndefenzívní\r\ndefenzor\r\ndefetismus\r\ndefétismus\r\ndefétista\r\ndefétistčin\r\ndefetistický\r\ndefétistický\r\ndefétističtější\r\ndefétistka\r\ndefétistův\r\ndeficit\r\ndeficitnější\r\ndeficitní\r\ndefilé\r\ndefilírka\r\ndefilování\r\ndefilovat\r\ndefilovávání\r\ndefilovávat\r\ndefilující\r\ndefinice\r\ndefiniční\r\ndefinitiva\r\ndefinitivnější\r\ndefinitivní\r\ndefinitní\r\ndefinovanější\r\ndefinování\r\ndefinovaný\r\ndefinovat\r\ndefinovatelnější\r\ndefinovatelný\r\ndefinovatelný\r\ndefinovávanější\r\ndefinovávání\r\ndefinovávaný\r\ndefinovávat\r\ndefinující\r\ndefinující\r\ndeflace\r\ndeflační\r\ndeflátor\r\ndeflektor\r\ndeflorace\r\ndeflorační\r\ndeflorovanější\r\ndeflorování\r\ndeflorovaný\r\ndeflorovat\r\ndeformace\r\ndeformační\r\ndeformativní\r\ndeformátor\r\ndeformátorův\r\ndeformita\r\ndeformování\r\ndeformovaný\r\ndeformovat\r\ndeformovatelný\r\ndeformovávání\r\ndeformovávaný\r\ndeformovávat\r\ndeformující\r\ndefosfatizace\r\ndefragmentace\r\ndefragmentování\r\ndefragmentovaný\r\ndefragmentovat\r\ndefraudace\r\ndefraudantčin\r\ndefraudantka\r\ndefraudant\r\ndefraudantův\r\ndefraudování\r\ndefraudovaný\r\ndefraudovat\r\ndegenerace\r\ndegenerační\r\ndegenerativnější\r\ndegenerativní\r\ndegenerátor\r\ndegenerovanější\r\ndegenerovanější\r\ndegenerování\r\ndegenerovaný\r\ndegenerovat\r\ndegorgáž\r\ndegradace\r\ndegradační\r\ndegradování\r\ndegradovaný\r\ndegradovat\r\ndegradovatelný\r\ndegradující\r\ndegustační\r\ndegustátorčin\r\ndegustátorka\r\ndegustátor\r\ndegustátorův\r\ndegustování\r\ndegustovaný\r\ndegustovat\r\ndehet\r\ndehomogenizace\r\ndehonestující\r\ndehtářský\r\ndehtování\r\ndehtovaný\r\ndehtovaný\r\ndehtovat\r\ndehtovější\r\ndehtovitější\r\ndehtovitý\r\ndehtový\r\ndehumanizace\r\ndehumanizační\r\ndehumanizování\r\ndehumanizovaný\r\ndehumanizovat\r\ndehumanizující\r\ndehydratace\r\ndehydratáza\r\ndehydratování\r\ndehydratovaný\r\ndehydratovat\r\ndehydráza\r\ndehydrogenace\r\ndehydrogenáza\r\ndehydrochlorace\r\ndehydrování\r\ndehydrovaný\r\ndehydrovat\r\nDěhylov\r\nděhylovský\r\ndechař\r\ndechařův\r\ndech\r\ndechnout\r\ndechnutí\r\ndechovka\r\ndechovkový\r\ndechový\r\ndechový\r\ndeideologizace\r\ndeiktický\r\ndeismus\r\ndeista\r\ndeistčin\r\ndeistický\r\ndeističtější\r\ndeistka\r\ndeistův\r\nděják\r\nDejda\r\nDejdarová\r\nDejdar\r\nDejdarův\r\nDejdová\r\nDejdův\r\ndějepiscův\r\ndějepisectví\r\ndějepisec\r\ndějepis\r\ndějepisný\r\ndějeprava\r\nději\r\ndějící\r\ndějinný\r\ndějinotvorný\r\ndějiny\r\ndějiště\r\nDejlová\r\nDejl\r\nDejlův\r\nDejmek\r\nDejmková\r\nDejmkův\r\ndějovější\r\ndějový\r\nděj\r\ndějství\r\nDejvice\r\ndejvický\r\ndejž\r\nděkabrista\r\nděkabristčin\r\nděkabristický\r\nděkabristka\r\nděkabristův\r\ndekáda\r\ndekadence\r\ndekadentnější\r\ndekadentní\r\ndekadent\r\ndekadentův\r\ndekadický\r\ndekádní\r\ndekagram\r\ndekahydrát\r\ndekalog\r\nDekameron\r\ndekametrový\r\nděkanát\r\nděkanátní\r\nděkančin\r\nděkanka\r\nDěkanovice\r\nděkanovický\r\nděkan\r\nděkanský\r\nděkanství\r\nděkanštější\r\ndekantace\r\ndekantování\r\ndekantovaný\r\ndekantovat\r\nděkanův\r\ndekarboxylace\r\ndekarboxyláza\r\ndekartelizace\r\ndekatovací\r\ndekatování\r\ndekatovaný\r\ndekatovat\r\ndekatura\r\ndeka\r\ndeklamace\r\ndeklamační\r\ndeklamativnější\r\ndeklamativní\r\ndeklamatornější\r\ndeklamovanější\r\ndeklamování\r\ndeklamovaný\r\ndeklamovat\r\ndeklamovávání\r\ndeklamovávaný\r\ndeklamovávat\r\ndeklamující\r\ndeklarace\r\ndeklarační\r\ndeklarantčin\r\ndeklarantka\r\ndeklarant\r\ndeklarantův\r\ndeklarativní\r\ndeklarátor\r\ndeklarovanější\r\ndeklarování\r\ndeklarovaný\r\ndeklarovaný\r\ndeklarovat\r\ndeklarovatelný\r\ndeklarující\r\ndeklasování\r\ndeklasovaný\r\ndeklasovat\r\ndeklasující\r\ndeklinace\r\ndeklinační\r\ndekodér\r\ndekodérův\r\ndekodifikace\r\ndekódovací\r\ndekódovač\r\ndekódovačův\r\ndekódování\r\ndekódovaný\r\ndekódovat\r\ndekódovávání\r\ndekódovávaný\r\ndekódovávat\r\ndekódující\r\ndekolonizace\r\ndekolonizovat\r\ndekoltáž\r\ndekolt\r\ndekompenzace\r\ndekompilace\r\ndekompilátor\r\ndekompilovat\r\ndekomponování\r\ndekomponovaný\r\ndekomponovat\r\ndekomponovávání\r\ndekomponovávaný\r\ndekomponovávat\r\ndekompozice\r\ndekompoziční\r\ndekompozitor\r\ndekomprese\r\ndekompresní\r\ndekompresor\r\ndekomprimace\r\ndekomprimační\r\ndekomprimování\r\ndekomprimovaný\r\ndekomprimovat\r\ndekomunizující\r\ndekonstruktivista\r\ndekonstruktivistčin\r\ndekonstruktivistka\r\ndekonstruktivistův\r\ndekontaminace\r\ndekontaminační\r\ndekontaminování\r\ndekontaminovaný\r\ndekontaminovat\r\ndekonvoluce\r\ndekonzervace\r\ndekorace\r\ndekorační\r\ndekoratér\r\ndekoratérův\r\ndekorativismus\r\ndekorativnější\r\ndekorativní\r\ndekor\r\ndekorovanější\r\ndekorování\r\ndekorovaný\r\ndekorovat\r\ndekortikační\r\ndekorující\r\nděkovačka\r\nděkování\r\nděkovaný\r\nděkovat\r\nděkovávání\r\nděkovávat\r\nDěkov\r\nděkovný\r\nděkovský\r\ndekrementace\r\ndekrement\r\ndekrementování\r\ndekrementovaný\r\ndekrementovat\r\ndekret\r\ndekretovanější\r\ndekretování\r\ndekretovaný\r\ndekretovaný\r\ndekretovat\r\ndekretový\r\ndektylografický\r\nděkující\r\ndekurační\r\nděl\r\ndelaborace\r\ndělající\r\ndelaminace\r\ndělání\r\ndělaný\r\ndělat\r\ndělávání\r\ndělávaný\r\ndělávat\r\nDelaware\r\ndělba\r\ndéle\r\ndelegace\r\ndelegační\r\ndelegátčin\r\ndelegátka\r\ndelegát\r\ndelegátský\r\ndelegatura\r\ndelegátův\r\ndelegitimizující\r\ndelegovanější\r\ndelegování\r\ndelegovaný\r\ndelegovat\r\ndělenec\r\ndělenější\r\ndělení\r\ndělenka\r\ndělený\r\ndélesloužící\r\ndéletrvající\r\ndelfinárium\r\ndelfinidin\r\ndelfíní\r\ndelfínovcův\r\ndelfínovec\r\ndelfín\r\ndelfínův\r\ndelfský\r\ndeliberalizace\r\ndeliberalizační\r\ndelicato\r\ndělicí\r\ndělící\r\ndělička\r\ndělič\r\ndelikatesa\r\ndelikatesnější\r\ndelikátnější\r\ndelikátní\r\ndelikt\r\ndeliktní\r\ndelikvence\r\ndelikventčin\r\ndelikventka\r\ndelikventní\r\ndelikvent\r\ndelikventův\r\ndelimitace\r\ndelimitační\r\ndelimitativní\r\ndelimitování\r\ndelimitovaný\r\ndelimitovat\r\ndelimitující\r\ndelirium\r\ndělit\r\ndělitelnější\r\ndělitelný\r\ndělitel\r\ndělítko\r\ndélka\r\ndélkový\r\ndělnější\r\ndělnice\r\ndělnický\r\ndělnictvo\r\ndělničin\r\ndělničtější\r\ndělník\r\ndělníkův\r\ndělný\r\nděloha\r\ndelokalizace\r\ndelokalizovaný\r\ndělo\r\nděl\r\nDélos\r\ndělostřelba\r\ndělostřelcův\r\ndělostřelecký\r\ndělostřelectví\r\ndělostřelectvo\r\ndělostřelec\r\ndělostřelečtější\r\ndělovina\r\ndělovka\r\ndělový\r\nděložní\r\nděložní\r\ndelší\r\ndelta\r\ndeltový\r\nDelvita\r\nDEM\r\ndem\r\ndemagnetizace\r\ndemagnetizačnější\r\ndemagnetizační\r\ndemagnetizovanější\r\ndemagnetizování\r\ndemagnetizovaný\r\ndemagnetizovat\r\ndemagogický\r\ndemagogičtější\r\ndemagogie\r\ndemagogizující\r\ndemagog\r\ndemagogův\r\ndemagožčin\r\ndemagožka\r\ndémant\r\ndémantový\r\ndemarkační\r\ndemarše\r\ndemaskování\r\ndemaskovaný\r\ndemaskovat\r\ndemaskující\r\ndematematizace\r\ndematematizovaný\r\ndematematizovat\r\ndematematizující\r\ndematerializovaný\r\nDembický\r\nDemčáková\r\nDemčák\r\nDemčákův\r\nDemel\r\nDemela\r\nDemele\r\nDemelem\r\nDemelová\r\nDemelové\r\nDemelovi\r\nDemelů\r\nDemelům\r\nDemelův\r\nDemely\r\ndemence\r\ndementi\r\ndementnější\r\ndementní\r\ndementování\r\ndementovaný\r\ndementovat\r\nDemeterová\r\nDemeter\r\nDemeterův\r\ndemethyláza\r\nDemetriův\r\ndemilitarizace\r\ndemilitarizovanější\r\ndemilitarizování\r\ndemilitarizovaný\r\ndemilitarizovat\r\ndemineralizovaný\r\ndeminutivní\r\ndeminutivum\r\ndemise\r\ndemižon\r\ndemižón\r\nDemlová\r\nDeml\r\nDemlův\r\nDemnerová\r\nDemner\r\nDemnerův\r\ndemobilizace\r\ndemobilizační\r\ndemobilizování\r\ndemobilizovaný\r\ndemobilizovat\r\ndemobilizovávat\r\ndemobilizující\r\ndemodikóza\r\ndemodulace\r\ndemodulátor\r\ndemodulovanější\r\ndemodulování\r\ndemodulovaný\r\ndemodulovat\r\ndemodulovávání\r\ndemodulovávaný\r\ndemodulovávat\r\ndemografický\r\ndemografičtější\r\ndemografie\r\ndemograf\r\ndemografův\r\ndemokracie\r\ndemokratčin\r\ndemokratický\r\ndemokratický\r\ndemokratičtější\r\ndemokratismus\r\ndemokratizace\r\ndemokratizační\r\ndemokratizování\r\ndemokratizovaný\r\ndemokratizovat\r\ndemokratizující\r\ndemokratka\r\ndemokrat\r\ndemokratův\r\nDémokritos\r\nDémokritův\r\ndemolice\r\ndemoliční\r\ndemolování\r\ndemolovaný\r\ndemolovat\r\ndemolovávání\r\ndemolovávaný\r\ndemolovávat\r\ndemolující\r\ndemo\r\ndemonahrávka\r\ndémonický\r\ndémoničtější\r\ndémonismus\r\ndémonizace\r\ndémonizování\r\ndémonizovaný\r\ndémonizovat\r\ndémonizující\r\ndémonologický\r\ndémonologie\r\ndémonolog\r\ndémonologův\r\ndémonoložčin\r\ndémonoložka\r\ndemonopolizace\r\ndemonopolizovaný\r\ndemonopolizovat\r\ndemonopolizující\r\ndémon\r\ndemonstrabilita\r\ndemonstrace\r\ndemonstrační\r\ndemonstrantčin\r\ndemonstrantka\r\ndemonstrant\r\ndemonstrantův\r\ndemonstrativnější\r\ndemonstrativní\r\ndemonstrátorčin\r\ndemonstrátorka\r\ndemonstrátor\r\ndemonstrátorův\r\ndemonstrování\r\ndemonstrovaný\r\ndemonstrovat\r\ndemonstrovávat\r\ndemonstrující\r\ndemontážní\r\ndemontáž\r\ndemontovanější\r\ndemontování\r\ndemontovaný\r\ndemontovat\r\ndemontovatelný\r\ndemontovávání\r\ndemontovávaný\r\ndemontovávat\r\ndémonův\r\ndemoralizace\r\ndemoralizačnější\r\ndemoralizační\r\ndemoralizování\r\ndemoralizovaný\r\ndemoralizovat\r\ndemoralizující\r\ndemosnímek\r\ndémos\r\ndémotický\r\ndemotivace\r\ndemotivační\r\ndemotivovanější\r\ndemotivování\r\ndemotivovaný\r\ndemotivovat\r\ndemotivující\r\ndemoverze\r\ndemultiplexing\r\ndemultiplikátor\r\ndemystifikace\r\ndemytizující\r\ndemytologizující\r\nden\r\ndenacifikace\r\ndenacizování\r\ndenacizovaný\r\ndenacizovat\r\ndenár\r\ndenárový\r\ndenaturace\r\ndenaturační\r\ndenaturování\r\ndenaturovaný\r\ndenaturovat\r\ndendritický\r\ndendritičtější\r\ndendrobiologický\r\ndendrobiologie\r\ndendrobiolog\r\ndendrobiologův\r\ndendrobioložčin\r\ndendrobioložka\r\ndendrochronologický\r\ndendrochronologie\r\ndendrochronolog\r\ndendrochronologův\r\ndendrochronoložčin\r\ndendrochronoložka\r\ndendrologický\r\ndendrologie\r\ndendrolog\r\ndendrologův\r\ndendroložčin\r\ndendroložka\r\ndendrometrický\r\ndenervování\r\ndenervovaný\r\ndenervovat\r\ndenervující\r\ndenice\r\ndeníček\r\ndeník\r\ndeníkový\r\ndění\r\nDenisa\r\nDenisčin\r\nDenisin\r\nDeniska\r\ndenitrifikace\r\ndenitrifikující\r\ndenivka\r\ndeňka\r\ndenní\r\ndennodenní\r\ndenominace\r\ndenominovat\r\ndenormalizování\r\ndenormalizovaný\r\ndenormalizovat\r\ndenotace\r\ndenotační\r\ndenotát\r\ndenotování\r\ndenotovaný\r\ndenotovat\r\ndentála\r\ndentální\r\nDenta\r\ndentin\r\ndentista\r\ndentistčin\r\ndentistický\r\ndentistka\r\ndentistův\r\ndenudace\r\ndenudační\r\ndenunciace\r\ndenunciant\r\ndenuncování\r\ndenuncovaný\r\ndenuncovat\r\ndeodorant\r\ndeontologický\r\ndeontologie\r\ndeontolog\r\ndeontologův\r\ndeontoložčin\r\ndeontoložka\r\ndeoxyribonukleový\r\ndeoxyribosa\r\ndepalatalizace\r\ndepaletovací\r\ndepaletování\r\ndepaletovaný\r\ndepaletovat\r\ndepartment\r\ndepasivace\r\ndepeše\r\ndepilace\r\ndepilační\r\ndepilátor\r\ndepistáž\r\ndeplazmolýza\r\ndepolarizace\r\ndepolarizační\r\ndepolarizátor\r\nDěpoltice\r\nDěpoltice\r\nděpoltický\r\nDěpoltovice\r\nděpoltovický\r\nDěpoltův\r\ndepo\r\ndeponie\r\ndeponování\r\ndeponovaný\r\ndeponovat\r\ndeportace\r\ndeportovanější\r\ndeportování\r\ndeportovaný\r\ndeportovat\r\ndeportovávání\r\ndeportovávaný\r\ndeportovávat\r\ndeposice\r\ndepositní\r\ndepositum\r\ndepozice\r\ndepozitář\r\ndepozitářský\r\ndepozitní\r\ndepozitor\r\ndepozitorův\r\ndepozitum\r\ndepreciace\r\ndepreciační\r\ndeprese\r\ndepresivita\r\ndepresivnější\r\ndepresivní\r\ndepresívní\r\ndepresní\r\ndeprimace\r\ndeprimovanější\r\ndeprimování\r\ndeprimovaný\r\ndeprimovat\r\ndeprimující\r\ndeprivace\r\ndeprivační\r\ndeprivantčin\r\ndeprivantka\r\ndeprivant\r\ndeprivantství\r\ndeprivantův\r\ndeprivování\r\ndeprivovaný\r\ndeprivovat\r\ndeptající\r\ndeptání\r\ndeptaný\r\ndeptat\r\ndeptávání\r\ndeptávaný\r\ndeptávat\r\ndeputace\r\ndeputát\r\ndeputátník\r\ndeputátníkův\r\nděr\r\nděrách\r\nděrám\r\nděrami\r\nderatizace\r\nderatizační\r\nderatizování\r\nderatizovaný\r\nderatizovat\r\nděravějící\r\nděravější\r\nděravění\r\nděravět\r\nděravý\r\nderby\r\ndereference\r\nderegulace\r\nderegulační\r\nderegulování\r\nderegulovaný\r\nderegulovat\r\nderegulovávání\r\nderegulovávaný\r\nderegulovávat\r\nderekonstruování\r\nderekonstruovaný\r\nderekonstruovat\r\nDerevjaníková\r\nDerevjaník\r\nDerevjaníkův\r\nderivace\r\nderivační\r\nderivát\r\nderivativ\r\nderivativní\r\nderivátní\r\nderivovanější\r\nderivování\r\nderivovaný\r\nderivovaný\r\nderivovat\r\ndermabraze\r\ndermatitida\r\ndermatologický\r\ndermatologie\r\ndermatolog\r\ndermatologův\r\ndermatoložčin\r\ndermatoložka\r\ndermatomykóza\r\ndermatovenerologie\r\nDernerová\r\nDerner\r\nDernerův\r\nderniéra\r\nděrnopáskový\r\nděrnoštítkový\r\nděrný\r\nderoucí\r\nděrovací\r\nděrovačka\r\nděrovač\r\nděrovačův\r\nděrovanější\r\nděrování\r\nděrovaný\r\nděrovat\r\nděrovka\r\nděrovna\r\nděrový\r\nderviš\r\ndervišův\r\ndes\r\ndesátek\r\ndesaterák\r\ndesaterákův\r\ndesatero\r\ndesatero\r\ndesateronásobný\r\ndesatery\r\ndesaterý\r\ndesátkový\r\ndesátnice\r\ndesátník\r\ndesátníkův\r\ndesaturování\r\ndesátý\r\nDesava\r\nDescartes\r\ndescartovský\r\nDescartův\r\ndescresc\r\ndescrescendo\r\ndesén\r\ndesénovací\r\ndesénování\r\ndesénovaný\r\ndesénovat\r\ndesenský\r\ndesert\r\ndesertnější\r\ndesertní\r\ndesertování\r\ndesertovat\r\ndeset\r\ndesetiarový\r\ndesetibarevný\r\ndesetibitový\r\ndesetibodový\r\ndesetibodový\r\ndesetibojař\r\ndesetibojařův\r\ndesetiboj\r\ndesetiboký\r\ndesetibrankový\r\ndeseticent\r\ndeseticentimetrový\r\ndeseticentový\r\ndesetice\r\ndeseticiferný\r\ndesetičlenný\r\ndesetidenní\r\ndesetidesetibytový\r\ndesetidolarovka\r\ndesetidolarový\r\ndesetifázový\r\ndesetihaléřový\r\ndesetihaléř\r\ndesetihalíř\r\ndesetihektarový\r\ndesetihodinový\r\ndesetikilogramový\r\ndesetikilometrový\r\ndesetikilometrový\r\ndesetikilový\r\ndesetikolový\r\ndesetikoruna\r\ndesetikorunový\r\ndesetikusový\r\ndesetiletí\r\ndesetiletka\r\ndesetiletý\r\ndesetilibrovka\r\ndesetilitrový\r\ndesetilůžkový\r\ndesetimarkový\r\ndesetimegabajtový\r\ndesetimegabytový\r\ndesetiměsíční\r\ndesetimetrový\r\ndesetimetrový\r\ndesetimiliardový\r\ndesetimilionový\r\ndesetimiliónový\r\ndesetiminutovka\r\ndesetiminutový\r\ndesetinásobek\r\ndesetinásobný\r\ndesetina\r\ndesetinka\r\ndesetinný\r\ndesetipatrový\r\ndesetipísmenný\r\ndesetiposchoďový\r\ndesetiprocentní\r\ndesetiroční\r\ndesetiřádkový\r\ndesetisekundový\r\ndesetisemestrový\r\ndesetistránkový\r\ndesetistrunný\r\ndesetistupňový\r\ndesetisvazkový\r\ndesetitisící\r\ndesetitisícovka\r\ndesetitisícový\r\ndesetitřídní\r\ndesetitunový\r\ndesetitýdenní\r\ndesetiválcový\r\ndesetiválec\r\ndesetivrstvový\r\ndesetivrstvý\r\ndesetivteřinový\r\ndesetiznakový\r\ndesetkrát\r\ndesetkráte\r\ndesetník\r\nděs\r\nděsící\r\ndesignérčin\r\ndesignér\r\ndesignérka\r\ndesigner\r\ndesignérský\r\ndesignerův\r\ndesignérův\r\ndesign\r\ndesignovanější\r\ndesignování\r\ndesignovaný\r\ndesignovat\r\ndesignový\r\ndesiluze\r\ndesinfekce\r\ndesinfekční\r\ndesinformační\r\ndesinsekce\r\ndesintegrace\r\ndesintegrovaný\r\nděsit\r\ndesíti\r\ndesítice\r\ndesítinásobný\r\ndesítina\r\ndesítitisícovka\r\ndesítka\r\ndesítkový\r\nděsivější\r\nděsivý\r\ndeska\r\ndeskovací\r\ndeskování\r\ndeskovaný\r\ndeskovat\r\ndeskovitý\r\ndeskový\r\ndeskripce\r\ndeskriptiva\r\ndeskriptivismus\r\ndeskriptivnější\r\ndeskriptivní\r\ndeskriptor\r\ndesktop\r\nDesná\r\nděsnější\r\nděsný\r\ndesocializující\r\ndesorpční\r\ndesorpční\r\ndespekt\r\ndesperátčin\r\ndesperátka\r\ndesperát\r\ndesperátův\r\ndespocie\r\ndespota\r\ndespotický\r\ndespotičtější\r\ndespotismus\r\ndespotův\r\ndestabilizace\r\ndestabilizačnější\r\ndestabilizační\r\ndestabilizovanější\r\ndestabilizovaný\r\ndestabilizovat\r\ndestabilizující\r\ndestalinizace\r\ndestička\r\ndestičkovitý\r\ndestičkový\r\ndestilace\r\ndestilační\r\ndestilát\r\ndestilátor\r\ndestilovanější\r\ndestilování\r\ndestilovaný\r\ndestilovat\r\ndestilovávání\r\ndestilovávaný\r\ndestilovávat\r\ndestilovna\r\nDestina\r\nDestinová\r\nDestinův\r\ndestrukce\r\ndestrukcionismus\r\ndestrukčnější\r\ndestrukční\r\ndestruktivismus\r\ndestruktivistický\r\ndestruktivita\r\ndestruktivní\r\ndestruktor\r\ndestruování\r\ndestruovaný\r\ndestruovat\r\nděsuplnější\r\nděšenější\r\nDešenice\r\ndešenický\r\nděšení\r\ndešenský\r\nděšený\r\ndešifrace\r\ndešifrovací\r\ndešifrovanější\r\ndešifrování\r\ndešifrovaný\r\ndešifrovat\r\ndešifrovatelnější\r\ndešifrovatelný\r\ndešifrovávat\r\ndešifrující\r\nDešná\r\nDešov\r\ndešovský\r\ndéšť\r\ndeště\r\ndeštěm\r\ndeštění\r\ndeštenský\r\ndešti\r\ndeštíček\r\ndeštička\r\ndeštích\r\ndeštík\r\ndeštivější\r\ndeštivý\r\nDeštná\r\ndeštník\r\ndeštníkový\r\ndeštný\r\ndešťoměr\r\ndešťovka\r\ndešťový\r\ndešťů\r\ndešťům\r\ndetail\r\ndetailista\r\ndetailistčin\r\ndetailistka\r\ndetailistův\r\ndetailizace\r\ndetailnější\r\ndetailní\r\ndetašování\r\ndetašovaný\r\ndetašovat\r\nděťátko\r\ndětech\r\ndetekce\r\ndetekční\r\ndetekování\r\ndetekovaný\r\ndetekovat\r\ndetekovatelný\r\ndetektivka\r\ndetektivní\r\ndetektiv\r\ndetektivův\r\ndetektor\r\ndetektorový\r\ndetekující\r\ndětem\r\nDětenice\r\ndětenický\r\ndetergent\r\ndeterminace\r\ndeterminační\r\ndeterminant\r\ndeterminativ\r\ndeterminismus\r\ndeterminista\r\ndeterministčin\r\ndeterministický\r\ndeterminističtější\r\ndeterministka\r\ndeterministův\r\ndeterminovanější\r\ndeterminování\r\ndeterminovaný\r\ndeterminovat\r\ndeterminující\r\nděti\r\ndětí\r\ndětičky\r\ndětina\r\ndětinnější\r\ndětinný\r\ndětinský\r\ndětinství\r\ndětinštější\r\ndětinštění\r\ndětinštět\r\ndětinův\r\nDětmarovice\r\ndětmarovický\r\ndětmi\r\ndetonace\r\ndetonační\r\ndetoxifikace\r\ndetoxikace\r\ndetoxikační\r\nDetroit\r\ndetroitský\r\nDětřichov\r\ndětřichovský\r\ndětský\r\ndětství\r\ndětštější\r\nDettingerová\r\nDettinger\r\nDettingerův\r\nDeum\r\ndeuterium\r\ndeuteronomium\r\ndevadesátero\r\ndevadesáteronásobný\r\ndevadesátery\r\ndevadesáterý\r\ndevadesaterý\r\ndevadesát\r\ndevadesátibytový\r\ndevadesátice\r\ndevadesátidolarový\r\ndevadesátigramový\r\ndevadesátihektarový\r\ndevadesátikilogramový\r\ndevadesátikilometrový\r\ndevadesátikilový\r\ndevadesátiletý\r\ndevadesátilitrový\r\ndevadesátimetrový\r\ndevadesátimiliardový\r\ndevadesátimilionový\r\ndevadesátimiliónový\r\ndevadesátiminutovka\r\ndevadesátiminutový\r\ndevadesátinásobný\r\ndevadesátina\r\ndevadesátiprocentní\r\ndevadesátiřádkový\r\ndevadesátistránkový\r\ndevadesátistupňový\r\ndevadesátitisícovka\r\ndevadesátitisícový\r\ndevadesátitunový\r\ndevadesátka\r\ndevadesátkrát\r\ndevadesátnice\r\ndevadesátník\r\ndevadesátý\r\ndevalvace\r\ndevalvační\r\ndevalvování\r\ndevalvovaný\r\ndevalvovat\r\ndevalvující\r\ndevastace\r\ndevastování\r\ndevastovaný\r\ndevastovat\r\ndevastovávání\r\ndevastovávaný\r\ndevastovávat\r\ndevastující\r\ndeváťaččin\r\ndeváťačka\r\ndeváťák\r\ndeváťákův\r\ndevatenáctero\r\ndevatenácteronásobný\r\ndevatenáctery\r\ndevatenácterý\r\ndevatenáct\r\ndevatenáctibodový\r\ndevatenáctice\r\ndevatenáctičlenný\r\ndevatenáctihodinový\r\ndevatenáctiletý\r\ndevatenáctimiliardový\r\ndevatenáctimilionový\r\ndevatenáctimiliónový\r\ndevatenáctinásobný\r\ndevatenáctina\r\ndevatenáctipatrový\r\ndevatenáctiposchoďový\r\ndevatenáctisekundový\r\ndevatenáctistupňový\r\ndevatenáctistý\r\ndevatenáctitisícový\r\ndevatenáctivteřinový\r\ndevatenáctka\r\ndevatenáctkový\r\ndevatenáctkrát\r\ndevatenáctkráte\r\ndevatenáctý\r\ndevaterník\r\ndevatero\r\ndevatero\r\ndevateronásobný\r\ndevatery\r\ndevaterý\r\ndevátý\r\nděva\r\nděvčátko\r\nděvče\r\nděveččin\r\nděvečka\r\nděvenka\r\ndeverbativní\r\ndeverbativum\r\nDeverová\r\nDever\r\nDeverův\r\ndevět\r\ndevětačtyřicetičlenný\r\ndevětadvacetibodový\r\ndevětadvacetikilometrový\r\ndevětaosmdesátimilionový\r\ndevětapadesátikorunový\r\ndevětašedesátistránkový\r\ndevětatřicetistupňový\r\ndevětkrát\r\ndevětkráte\r\ndevětsil\r\ndeviace\r\ndeviantní\r\ndeviant\r\ndeviantův\r\ndevitalizovat\r\ndevíti\r\ndevítibarevný\r\ndevítibitový\r\ndevítibodový\r\ndevítibodový\r\ndevítiboký\r\ndevítibrankový\r\ndevíticentimetrový\r\ndevítice\r\ndevítičlenný\r\ndevítidenní\r\ndevítidesetibytový\r\ndevítihektarový\r\ndevítihlavý\r\ndevítihodinovka\r\ndevítihodinový\r\ndevítijehličkový\r\ndevítikilogramový\r\ndevítikilometrový\r\ndevítikilometrový\r\ndevítikilový\r\ndevítikolový\r\ndevítikorunový\r\ndevítiletka\r\ndevítiletý\r\ndevítilitrový\r\ndevítilůžkový\r\ndevítiměsíční\r\ndevítimetrový\r\ndevítimetrový\r\ndevítimiliardový\r\ndevítimilimetrový\r\ndevítimilionový\r\ndevítimiliónový\r\ndevítiminutový\r\ndevítinásobek\r\ndevítinásobný\r\ndevítina\r\ndevítinedělní\r\ndevítinka\r\ndevítiocasý\r\ndevítipatrový\r\ndevítipísmenný\r\ndevítiposchoďový\r\ndevítiroční\r\ndevítiřádkový\r\ndevítisekundový\r\ndevítisemestrový\r\ndevítisetčlenný\r\ndevítisetkorunový\r\ndevítisetmilionový\r\ndevítisetmiliónový\r\ndevítistovka\r\ndevítistránkový\r\ndevítistrunný\r\ndevítistupňový\r\ndevítistý\r\ndevítisvazkový\r\ndevítitisící\r\ndevítitisícovka\r\ndevítitisícový\r\ndevítitřídní\r\ndevítitunový\r\ndevítitýdenní\r\ndevítivrstvý\r\ndevítka\r\ndevítkový\r\ndeviza\r\ndevíza\r\ndevizový\r\nděvka\r\ndevon\r\ndevonský\r\ndevótnější\r\ndevótní\r\ndevoto\r\nděvucha\r\nděvuščin\r\nděvuška\r\ndextrin\r\ndextróza\r\nDeylová\r\nDeyl\r\nDeylův\r\ndezagregace\r\ndezagregovaný\r\ndezaktivace\r\ndezaktivování\r\ndezaktivovaný\r\ndezaktivovat\r\ndezénovací\r\ndezénování\r\ndezénovaný\r\ndezénovat\r\ndezerce\r\ndezertérčin\r\ndezertérka\r\ndezertér\r\ndezertérův\r\ndezert\r\ndezertnější\r\ndezertní\r\ndezertování\r\ndezertovaný\r\ndezertovat\r\ndezertovávání\r\ndezertovávaný\r\ndezertovávat\r\ndezertující\r\ndeziluze\r\ndezinfekce\r\ndezinfekční\r\ndezinfikování\r\ndezinfikovaný\r\ndezinfikovaný\r\ndezinfikovat\r\ndezinfikovávání\r\ndezinfikovávaný\r\ndezinfikovávat\r\ndezinformace\r\ndezinformační\r\ndezinformátorčin\r\ndezinformátorka\r\ndezinformátor\r\ndezinformátorův\r\ndezinformování\r\ndezinformující\r\ndezinsekce\r\ndezintegrace\r\ndezintegrační\r\ndezintegrovaný\r\ndezintegrující\r\ndezinterpretace\r\ndezinterpretování\r\ndezinterpretovaný\r\ndezinterpretovat\r\ndezodorant\r\ndezolátnější\r\ndezolátní\r\ndezorganizace\r\ndezorganizovaný\r\ndezorganizovat\r\ndezorientace\r\ndezorientovanější\r\ndezorientování\r\ndezorientovaný\r\ndezorientovat\r\ndezorientovávání\r\ndezorientovávaný\r\ndezorientovávat\r\ndezorientující\r\ndezoxifluoroglukóza\r\ndezoxiglukóza\r\ndezoxiribonukleóza\r\ndg\r\nDhabi\r\ndharma\r\nDia\r\ndia\r\ndiabas\r\ndiabasový\r\ndiabetes\r\ndiabetický\r\ndiabetiččin\r\ndiabetička\r\ndiabetičtější\r\ndiabetik\r\ndiabetikův\r\ndiabetologický\r\ndiabetologie\r\ndiabetolog\r\ndiabetologův\r\ndiabetoložčin\r\ndiabetoložka\r\ndiabolismus\r\ndiabolistický\r\ndiabolka\r\ndiacetylmorfin\r\ndiadém\r\ndiafilm\r\ndiafragma\r\ndiageneze\r\ndiagnosa\r\ndiagnostický\r\ndiagnostičtější\r\ndiagnostika\r\ndiagnostikování\r\ndiagnostikovaný\r\ndiagnostikovat\r\ndiagnostikovatelný\r\ndiagnostikovávání\r\ndiagnostikovávaný\r\ndiagnostikovávat\r\ndiagnoza\r\ndiagnóza\r\ndiagonála\r\ndiagonalizace\r\ndiagonální\r\ndiagostikování\r\ndiagram\r\ndiagramový\r\ndiachronický\r\ndiachronie\r\ndiachronní\r\ndiák\r\ndiakonát\r\ndiakonie\r\ndiakonka\r\ndiakritický\r\ndiakritika\r\ndialdehydcelulóza\r\ndialekt\r\ndialektický\r\ndialektičtější\r\ndialektika\r\ndialektismus\r\ndialektologický\r\ndialektologie\r\ndialektolog\r\ndialektologův\r\ndialektoložčin\r\ndialektoložka\r\ndialkoxikarbenia\r\ndialog\r\ndialogický\r\ndialogičtější\r\ndialogista\r\ndialogistčin\r\ndialogistka\r\ndialogistův\r\ndialogit\r\ndialogizace\r\ndialogový\r\ndialyzátor\r\ndialýza\r\ndiamagnetický\r\ndiamant\r\ndiamantový\r\ndiametrální\r\ndiametr\r\ndianástavec\r\nDiana\r\ndianetika\r\nDianin\r\ndiapozitiv\r\ndiapozitivní\r\ndiaprojektor\r\ndiapsidický\r\ndiarámeček\r\ndiarchie\r\ndiář\r\ndiaspora\r\ndiastaza\r\ndiastáza\r\ndiastola\r\ndiastolický\r\ndiatermie\r\ndiateze\r\ndiatomit\r\ndiatonický\r\ndiazoniový\r\ndiazotační\r\ndibenzodioxin\r\ndibenzofuran\r\nDiblíková\r\ndiblík\r\nDiblík\r\nDiblíkův\r\ndiboran\r\nDice\r\nDiceův\r\nDIČ\r\ndidaktický\r\ndidaktiččin\r\ndidaktička\r\ndidaktičtější\r\ndidaktika\r\ndidaktik\r\ndidaktikův\r\ndidaktismus\r\nDiderot\r\nDiderotův\r\nDidot\r\nDidotův\r\nDie\r\ndiecese\r\ndiecéze\r\ndiecézní\r\nDiego\r\nDiegův\r\ndielektrický\r\ndielektričtější\r\ndielektrikum\r\nDiem\r\ndienový\r\nDienstbierová\r\nDienstbier\r\nDienstbierův\r\ndierese\r\ndieselelektrický\r\ndieselelektričtější\r\ndiesel\r\ndieselový\r\ndieselový\r\nDiesel\r\nDieselův\r\nDiesnerová\r\nDiesner\r\nDiesnerův\r\nDiessnerová\r\nDiessner\r\nDiessnerův\r\ndiester\r\ndieta\r\ndietetický\r\ndietetičtější\r\ndietetik\r\ndietetikův\r\ndietnější\r\ndietní\r\ndietologický\r\ndietologie\r\ndietolog\r\ndietologův\r\ndietoložčin\r\ndietoložka\r\nDietrichová\r\nDietrich\r\nDietrichštejnový\r\nDietrichův\r\ndietylsulfát\r\ndiference\r\ndiferenciace\r\ndiferenciační\r\ndiferenciál\r\ndiferenciální\r\ndiferenciovanější\r\ndiferencovanější\r\ndiferencování\r\ndiferencovaný\r\ndiferencovat\r\ndiferencovatelnější\r\ndiferencovatelný\r\ndiferencovávání\r\ndiferencovávaný\r\ndiferencovávat\r\ndiferencující\r\ndiferenční\r\ndificilnější\r\ndifosfát\r\ndifosfoglycerát\r\ndifosforečnan\r\ndifrakce\r\ndifrakční\r\ndifterie\r\ndiftong\r\ndiftongizace\r\ndifundovanější\r\ndifundování\r\ndifundovaný\r\ndifundovat\r\ndifundující\r\ndifusnější\r\ndifuzér\r\ndifuze\r\ndifúze\r\ndifuzivita\r\ndifúznější\r\ndifúzní\r\ndifuzní\r\ndifuzor\r\ndigerát\r\ndigestoř\r\ndigitalizace\r\ndigitalizační\r\ndigitalizátor\r\ndigitalizování\r\ndigitalizovaný\r\ndigitalizovat\r\ndigitálky\r\ndigitální\r\ndigitizér\r\ndiglosie\r\ndiglycerid\r\ndiglycerol\r\ndigram\r\ndihydrát\r\ndihydrogenfosforečnan\r\ndihydrogenkřemičitý\r\ndichlordifluorometan\r\ndichlorid\r\ndichlormethan\r\ndichotomický\r\ndichotomičtější\r\ndichotomie\r\ndichotomizace\r\ndichroismus\r\ndichroman\r\nDijkstra\r\nDijkstrův\r\nDijon\r\ndijonský\r\nDIK\r\ndík\r\ndikalciumfosfát\r\ndikalciumsilikát\r\ndikce\r\ndikční\r\ndík\r\ndikobrazí\r\ndikobraz\r\ndikobrazův\r\ndiktafon\r\ndiktafón\r\ndiktální\r\ndiktát\r\ndiktátorčin\r\ndiktátorka\r\ndiktátor\r\ndiktátorský\r\ndiktátorství\r\ndiktátorštější\r\ndiktátorův\r\ndiktatura\r\ndiktovací\r\ndiktování\r\ndiktovaný\r\ndiktovat\r\ndiktovávání\r\ndiktovávaný\r\ndiktovávat\r\ndiktující\r\ndíkůčinění\r\ndíkuvzdání\r\ndíkůvzdání\r\ndíky\r\ndikyanozlatnan\r\ndíkybohu\r\ndilatace\r\ndilatátor\r\ndilatování\r\ndilatovaný\r\ndilatovat\r\ndilatující\r\ndílcový\r\ndílčí\r\ndílec\r\ndílek\r\ndílem\r\ndilema\r\ndilema\r\ndílenský\r\ndílenštější\r\ndiletantčin\r\ndiletantismus\r\ndiletantka\r\ndiletant\r\ndiletantský\r\ndiletantství\r\ndiletantův\r\ndíl\r\ndílko\r\ndílkovací\r\ndílkování\r\ndílkovaný\r\ndílkovat\r\ndílkový\r\nDillí\r\ndílna\r\ndílnička\r\ndílo\r\ndílovedoucí\r\ndílový\r\ndiluviální\r\ndiluvium\r\ndím\r\ndimense\r\ndimensionalita\r\ndimenze\r\ndimenzionální\r\ndimenzování\r\ndimenzovaný\r\ndimenzovat\r\ndimer\r\ndimerní\r\ndimethyldikarbonát\r\ndimethylether\r\ndimethylolethylenmočovina\r\ndimethylpolysiloxan\r\ndimethylsulfid\r\ndimetylsulfát\r\ndiminuendo\r\nDimitrovová\r\nDimitrov\r\nDimitrovův\r\ndimorfismus\r\nDIN\r\ndinár\r\ndinárský\r\ndinasový\r\ndingo\r\ndingův\r\ndinosaurus\r\ndinosauři\r\ndioda\r\ndiodový\r\ndiofantický\r\nDioklecián\r\ndioktyl\r\ndiolalginát\r\ndiol\r\nDionýsos\r\nDionýsův\r\ndiopsid\r\ndiopsidový\r\ndioptrický\r\ndioptričtější\r\ndioptrie\r\ndiorama\r\ndiorit\r\ndioritový\r\nDiovi\r\ndioxid\r\ndioxin\r\ndioxinový\r\ndipeptid\r\ndiploid\r\ndiploidní\r\ndiplomacie\r\ndiplomantčin\r\ndiplomantka\r\ndiplomant\r\ndiplomantský\r\ndiplomantův\r\ndiplomatčin\r\ndiplomatický\r\ndiplomatičin\r\ndiplomatičtější\r\ndiplomatika\r\ndiplomatka\r\ndiplomat\r\ndiplomatův\r\ndiplom\r\ndiplomka\r\ndiplomní\r\ndiplomovaný\r\ndiplomový\r\ndipolarizace\r\ndipól\r\ndipólový\r\ndipozice\r\ndíra\r\ndírečka\r\ndirekční\r\ndirektář\r\ndirektářův\r\ndirektiva\r\ndirektivnější\r\ndirektivní\r\ndirektnější\r\ndirektní\r\ndirektorčin\r\ndirektorium\r\ndirektorka\r\ndirektor\r\ndirektorský\r\ndirektorův\r\ndírenský\r\ndirigentčin\r\ndirigentka\r\ndirigent\r\ndirigentský\r\ndirigentův\r\ndirigismus\r\ndirigování\r\ndirigovaný\r\ndirigovat\r\ndirigující\r\nDirichlet\r\nDirichletův\r\ndírka\r\ndírkovací\r\ndírkovanější\r\ndírkování\r\ndírkovaný\r\ndírkovat\r\ndírkový\r\nDírná\r\ndisacharid\r\ndisciplinárka\r\ndisciplinární\r\ndisciplina\r\ndisciplína\r\ndisciplinovanější\r\ndisciplinovaný\r\ndisent\r\ndisertace\r\ndisertační\r\ndisgregace\r\ndisgustování\r\ndisgustovaný\r\ndisgustovat\r\ndisgustující\r\ndisharmonický\r\ndisharmonický\r\ndisharmoničtější\r\ndisharmonie\r\ndisharmonizující\r\ndisidentčin\r\ndisidentka\r\ndisident\r\ndisidentský\r\ndisidentův\r\ndisilan\r\ndisimilace\r\ndisipace\r\ndisipativní\r\ndisipování\r\ndisipovaný\r\ndisipovat\r\ndisírový\r\ndisiřičitan\r\ndisjunkce\r\ndisjunktivní\r\ndisjunktnější\r\ndisjunktní\r\ndiskantový\r\ndiskařčin\r\ndiskařka\r\ndiskařský\r\ndiskař\r\ndiskařův\r\ndisketa\r\ndisketovější\r\ndisketový\r\ndisk\r\ndiskobolos\r\ndiskofil\r\ndiskofilův\r\ndiskografie\r\ndiskomfort\r\ndiskomfortní\r\ndisko\r\ndiskont\r\ndiskontinuální\r\ndiskontinuita\r\ndiskontinuitnější\r\ndiskontinuitní\r\ndiskontinuum\r\ndiskontní\r\ndiskontování\r\ndiskontovaný\r\ndiskontovat\r\ndiskoskladba\r\ndiskotéka\r\ndiskotékový\r\ndiskovitý\r\ndiskový\r\ndiskreditace\r\ndiskreditační\r\ndiskreditování\r\ndiskreditovaný\r\ndiskreditovat\r\ndiskreditovávání\r\ndiskreditovávaný\r\ndiskreditovávat\r\ndiskreditující\r\ndiskrepance\r\ndiskrepantní\r\ndiskrétnější\r\ndiskrétní\r\ndiskriminace\r\ndiskriminační\r\ndiskriminant\r\ndiskriminátor\r\ndiskriminování\r\ndiskriminovaný\r\ndiskriminovat\r\ndiskriminující\r\ndiskurs\r\ndiskurz\r\ndiskuse\r\ndiskusní\r\ndiskutabilnější\r\ndiskutabilní\r\ndiskutérčin\r\ndiskutérka\r\ndiskutér\r\ndiskutérův\r\ndiskutovanější\r\ndiskutování\r\ndiskutovaný\r\ndiskutovat\r\ndiskutovávání\r\ndiskutovávaný\r\ndiskutovávat\r\ndiskutující\r\ndiskuze\r\ndiskuzní\r\ndiskvalifikace\r\ndiskvalifikační\r\ndiskvalifikování\r\ndiskvalifikovaný\r\ndiskvalifikovat\r\ndiskvalifikovávání\r\ndiskvalifikovávaný\r\ndiskvalifikovávat\r\ndiskvalifikující\r\ndiskžokej\r\ndiskžokejův\r\ndislokace\r\ndislokační\r\ndislokování\r\ndislokovaný\r\ndislokovat\r\nDismanová\r\nDisman\r\nDismanův\r\ndisociace\r\ndisociační\r\ndisociování\r\ndisociovaný\r\ndisociovat\r\ndisodný\r\ndisolvování\r\ndisolvovaný\r\ndisolvovat\r\ndisonance\r\ndisonantnější\r\ndisonantní\r\ndisparátnější\r\ndisparátní\r\ndisparita\r\ndispečerčin\r\ndispečerka\r\ndispečer\r\ndispečerský\r\ndispečerův\r\ndispečink\r\ndispens\r\ndispensovat\r\ndispenzace\r\ndispenzarizování\r\ndispenzarizovaný\r\ndispenzarizovat\r\ndispenzarizující\r\ndispenzární\r\ndispenz\r\ndispergování\r\ndispergovaný\r\ndispergovat\r\ndispergující\r\ndisperse\r\ndispersnější\r\ndisperze\r\ndisperznější\r\ndisperzní\r\ndisplay\r\ndisplejový\r\ndisplej\r\ndisponent\r\ndisponentův\r\ndisponibilní\r\ndisponování\r\ndisponovaný\r\ndisponovat\r\ndisponsibilní\r\ndisponující\r\ndisposice\r\ndispozice\r\ndispoziční\r\ndisproporce\r\ndisproporcionálnější\r\ndisproporční\r\ndisputace\r\ndisputantčin\r\ndisputantka\r\ndisputant\r\ndisputantův\r\ndisputovat\r\ndisrupce\r\ndisruptovaný\r\ndistální\r\ndistance\r\ndistanc\r\ndistancování\r\ndistancovaný\r\ndistancovat\r\ndistancující\r\ndistanční\r\ndistearyl\r\ndisten\r\ndistenový\r\ndistichon\r\ndistingovanější\r\ndistingovaný\r\ndistinguovaný\r\ndistinkce\r\ndistinktivnější\r\ndistinktivní\r\ndistonující\r\ndistorze\r\ndistribuce\r\ndistribucionalismus\r\ndistribučníma\r\ndistribuční\r\ndistribuovanější\r\ndistribuování\r\ndistribuovaný\r\ndistribuovat\r\ndistributivita\r\ndistributivní\r\ndistributor\r\ndistributorský\r\ndistributorův\r\ndistribuující\r\ndisulfid\r\nDiškantová\r\nDiškant\r\nDiškantův\r\nDita\r\nDítě\r\ndítě\r\nDítěte\r\ndítěte\r\nDítětech\r\ndítětem\r\ndítěti\r\nDítětová\r\nDítětové\r\nDítětovi\r\nDítětů\r\nDítětům\r\nDítětův\r\nDítěty\r\ndít\r\nDitin\r\ndítko\r\nDíťová\r\nDíťovi\r\nDitrichová\r\nDitrich\r\nDitrichův\r\nDittrichová\r\nDittrich\r\nDittrichův\r\nDituščin\r\nDituška\r\nDíťův\r\ndiurnista\r\ndiurnistčin\r\ndiurnistka\r\ndiurnistův\r\nDiův\r\ndiv\r\ndivácký\r\ndiváctvo\r\ndivaččin\r\ndivačka\r\ndiváčtější\r\ndivadélko\r\ndivadelnější\r\ndivadelnice\r\ndivadelnický\r\ndivadelnictví\r\ndivadelník\r\ndivadelníkův\r\ndivadelní\r\ndivadlo\r\ndivadýlko\r\ndívající\r\ndivák\r\ndivákův\r\ndivan\r\ndívání\r\ndívaný\r\ndívat\r\ndiva\r\nDívčice\r\ndívčický\r\ndívčin\r\ndívčí\r\ndivecký\r\nDivec\r\ndivější\r\ndivení\r\ndívenka\r\ndivergence\r\ndivergentnější\r\ndivergentní\r\ndivergování\r\ndivergovaný\r\ndivergovat\r\ndiversifikace\r\ndiversita\r\ndiversnější\r\ndivertikulóza\r\ndiverzantčin\r\ndiverzantka\r\ndiverzant\r\ndiverzantský\r\ndiverzantův\r\ndiverze\r\ndiverzifikace\r\ndiverzifikační\r\ndiverzifikování\r\ndiverzifikovaný\r\ndiverzifikovat\r\ndiverzifikující\r\ndiverzita\r\ndiverznější\r\ndiverzní\r\ndiv\r\ndivící\r\ndividenda\r\ndividendový\r\nDivíšek\r\nDiviška\r\nDivišková\r\nDivíšková\r\nDiviškův\r\nDivíškův\r\nDivišová\r\nDivišov\r\ndivišovský\r\nDiviš\r\nDivišův\r\ndivit\r\ndivize\r\ndivizivní\r\ndivizna\r\ndivizní\r\ndívka\r\ndivnější\r\ndivný\r\ndivočák\r\ndivočákův\r\ndivočejší\r\ndivočení\r\ndivočet\r\ndivočina\r\ndivočit\r\ndivoch\r\ndivochův\r\ndivoko\r\ndivoký\r\ndivomuž\r\ndivomužův\r\ndivoščin\r\ndivoška\r\ndivošský\r\ndivošství\r\ndivošštější\r\ndivotvorčin\r\ndivotvorka\r\ndivotvornější\r\ndivotvorný\r\ndivoucí\r\ndivoženčin\r\ndivoženka\r\ndivukrásnější\r\ndivukrásný\r\ndivuplnější\r\ndivý\r\ndivže\r\ndixieland\r\ndixielandový\r\ndizertace\r\ndizertační\r\ndížka\r\ndíž\r\nDjakarta\r\ndkg\r\nDKK\r\ndl\r\ndlabací\r\ndlabačka\r\nDlabačová\r\nDlabač\r\nDlabačův\r\ndlabání\r\ndlabaný\r\ndlabat\r\ndlabávání\r\ndlabávaný\r\ndlabávat\r\nDlábek\r\nDlábková\r\nDlábkův\r\nDlabola\r\nDlabolová\r\nDlabolův\r\ndlaha\r\ndlahovací\r\ndlanitý\r\ndlaňový\r\ndlaň\r\nDlasková\r\ndlask\r\nDlask\r\nDlaskův\r\ndlaskův\r\ndlátko\r\ndláto\r\ndlátování\r\ndlažba\r\ndlážděnější\r\ndláždění\r\ndlážděný\r\ndlaždice\r\ndlaždicový\r\ndlaždička\r\ndlaždičkovat\r\ndlaždičkový\r\ndlaždičštější\r\ndlaždič\r\ndlaždičův\r\ndláždit\r\ndlažební\r\ndlažka\r\ndlážka\r\nDlažov\r\ndlažovský\r\ndle\r\ndlení\r\ndlet\r\ndlící\r\ndlít\r\ndlohotrvající\r\ndloubání\r\ndloubaný\r\ndloubat\r\ndloubávání\r\ndloubávaný\r\ndloubávat\r\ndloubnout\r\ndloubnutí\r\ndloubnutý\r\ndlouhánka\r\ndlouhán\r\ndlouhánův\r\ndlouhatánský\r\nDlouhé\r\ndlouho\r\ndlouhodobější\r\ndlouhodobý\r\ndlouhohrající\r\ndlouhokřídlý\r\ndlouholetý\r\nDlouhomilov\r\ndlouhomilovský\r\ndlouhonohý\r\ndlouhoocasý\r\ndlouhoperiodický\r\nDlouhopolsko\r\ndlouhoprstý\r\ndlouhoramenný\r\ndlouhorohý\r\ndlouhoruký\r\ndlouhososka\r\ndlouhosrstý\r\ndlouhotrvající\r\ndlouhouchý\r\ndlouhověký\r\ndlouhovlasý\r\ndlouhovlnný\r\ndlouhovousý\r\ndlouhožijící\r\ndlouhský\r\nDlouhý\r\ndlouhý\r\ndloužení\r\ndloužicí\r\ndluh\r\ndluhopis\r\ndluhopisový\r\nDluhošová\r\nDluhoš\r\nDluhošův\r\ndluhový\r\ndlužen\r\ndlužení\r\ndlužený\r\ndlužící\r\ndlužit\r\ndlužna\r\ndlužnější\r\ndlužni\r\ndlužnice\r\ndlužnický\r\ndlužničin\r\ndlužník\r\ndlužníkův\r\ndlužní\r\ndlužno\r\ndlužny\r\ndlužný\r\nDM\r\ndm\r\nDmelech\r\ndmout\r\ndmuchavka\r\ndmutí\r\ndmutý\r\ndmychadlo\r\ndmýchadlo\r\ndmychání\r\ndmýchání\r\ndmychaný\r\ndmýchaný\r\ndmychat\r\ndmýchat\r\ndmychávání\r\ndmýchávání\r\ndmychávaný\r\ndmýchávaný\r\ndmýchávat\r\ndmychávat\r\nDNA\r\ndna\r\ndne\r\ndně\r\nDneboský\r\ndnech\r\ndnem\r\ndněperský\r\nDněpr\r\nDněpropetrovsk\r\ndněpropetrovský\r\ndnes\r\ndneska\r\ndněsterský\r\nDněstr\r\ndnešek\r\nDnešice\r\ndnešický\r\ndnešní\r\ndni\r\ndní\r\nDNK\r\ndno\r\ndnový\r\nDNS\r\ndnu\r\ndnů\r\ndnům\r\ndny\r\ndo\r\ndoabstinovat\r\ndoalkoholizovat\r\ndoatakování\r\ndoatakovaný\r\ndoatakovat\r\ndoauditovat\r\ndobabrání\r\ndobabrat\r\ndobacání\r\ndobacaný\r\ndobacat\r\ndobádání\r\ndobádaný\r\ndobádat\r\ndobafání\r\ndobafaný\r\ndobafat\r\ndobagrovanější\r\ndobagrování\r\ndobagrovaný\r\ndobagrovat\r\ndobagrovávání\r\ndobagrovávaný\r\ndobagrovávat\r\ndobahnění\r\ndobahněný\r\ndobahnit\r\ndobájení\r\ndobájený\r\ndobájit\r\ndobalenější\r\ndobalení\r\ndobalený\r\ndobalit\r\ndobalitelnější\r\ndobalitelný\r\ndobalovanější\r\ndobalování\r\ndobalovaný\r\ndobalovat\r\ndobalovávání\r\ndobalovávaný\r\ndobalovávat\r\ndobalující\r\ndobalzámovanější\r\ndobalzámování\r\ndobalzámovaný\r\ndobalzámovat\r\ndobandážování\r\ndobandážovaný\r\ndobandážovat\r\ndobarvenější\r\ndobarvení\r\ndobarvený\r\ndobarvit\r\ndobarvování\r\ndobarvovaný\r\ndobarvovat\r\ndobarvující\r\ndobásnění\r\ndobásněný\r\ndobásnit\r\ndobásňování\r\ndobásňovaný\r\ndobásňovat\r\ndobásňovávat\r\ndobasovat\r\nďobat\r\ndobavení\r\ndobavování\r\ndobavovaný\r\ndobavovat\r\ndoba\r\ndobečení\r\ndobečený\r\ndobečet\r\ndoběhání\r\ndoběhaný\r\ndoběhat\r\ndoběhávání\r\ndoběhávaný\r\ndoběhávat\r\ndoběh\r\ndoběhlý\r\ndoběhnout\r\ndoběhnutí\r\ndoběhnutý\r\ndoběhovější\r\ndoběhový\r\ndoběla\r\ndobelhání\r\ndobelhat\r\ndobelhávání\r\ndobelhávat\r\ndoberský\r\ndobesedování\r\nDobešová\r\nDobeš\r\nDobešův\r\ndobetonovat\r\nDobiášová\r\nDobiáš\r\nDobiášův\r\ndobíhající\r\ndobíhanější\r\ndobíhání\r\ndobíhaný\r\ndobíhat\r\ndobíhávání\r\ndobíhávaný\r\ndobíhávat\r\ndobíjecí\r\ndobíječ\r\ndobíjející\r\ndobíjení\r\ndobíjený\r\ndobíjet\r\ndobimbat\r\ndobírající\r\ndobíranější\r\ndobírání\r\ndobíraný\r\ndobírat\r\ndobírka\r\ndobírkový\r\ndobít\r\ndobití\r\ndobit\r\ndobitý\r\ndoblekotání\r\ndoblekotaný\r\ndoblekotat\r\ndoblikání\r\ndoblikat\r\ndoblikávání\r\ndoblikávat\r\ndoblít\r\ndoblití\r\ndoblit\r\ndoblitý\r\ndoblívání\r\ndoblívaný\r\ndoblívat\r\ndoblízat\r\ndobloumání\r\ndobloumaný\r\ndobloumat\r\nďobnout\r\ndobobovat\r\ndobodání\r\ndobodaný\r\ndobodat\r\ndobodávání\r\ndobodávaný\r\ndobodávat\r\ndobojování\r\ndobojovaný\r\ndobojovat\r\ndobolení\r\ndobonzovaný\r\ndobonzovat\r\ndoboření\r\ndobořený\r\ndobořit\r\ndobourání\r\ndobouraný\r\ndobourat\r\ndobourávání\r\ndobourávaný\r\ndobourávat\r\ndobouření\r\ndobouřený\r\ndobouřit\r\ndobovější\r\ndobový\r\ndobrácký\r\ndobráctví\r\ndobraččin\r\ndobráček\r\ndobračka\r\ndobráčkův\r\ndobráčtější\r\ndobrák\r\ndobrákův\r\ndobranější\r\ndobraní\r\ndobrání\r\ndobraný\r\ndobrat\r\nDobratice\r\ndobratický\r\nDobrá\r\ndobrblání\r\ndobrblat\r\nDobrčice\r\ndobrčický\r\ndobrebtání\r\ndobrebtaný\r\ndobrebtat\r\ndobrečení\r\ndobrečet\r\ndobrenský\r\ndobreptání\r\ndobreptaný\r\ndobreptat\r\nDobré\r\ndobrkat\r\nDobrkovský\r\ndobrman\r\ndobrmanův\r\nDobrná\r\ndobrnět\r\ndobrnkání\r\ndobrnkaný\r\ndobrnkat\r\ndobrnkávat\r\ndobročinnější\r\ndobročinný\r\nDobročovice\r\ndobročovický\r\ndobrodincův\r\ndobrodinec\r\ndobrodiní\r\ndobroditelka\r\ndobrodruhový\r\ndobrodruh\r\ndobrodruhův\r\ndobrodružka\r\ndobrodružnější\r\ndobrodružný\r\ndobrodružství\r\ndobrodušnější\r\ndobrodušný\r\ndobrodužnější\r\nDobrochov\r\ndobrochovský\r\nDobroměřice\r\ndobroměřický\r\nDobromila\r\nDobromilice\r\ndobromilický\r\nDobromilin\r\ndobro\r\ndobromyslnější\r\ndobromyslný\r\nDobronice\r\ndobronický\r\nDobronín\r\ndobronínský\r\ndobropis\r\ndobrořečení\r\nDobroslavice\r\ndobroslavický\r\nDobroslav\r\nDobroslavův\r\ndobrosrdečnější\r\ndobrosrdečný\r\ndobrota\r\ndobrotisko\r\ndobrotivější\r\ndobrotivý\r\ndobroukání\r\ndobroukaný\r\ndobroukat\r\ndobrousit\r\ndobroušenější\r\ndobroušení\r\ndobroušený\r\nDobroutov\r\ndobroutovský\r\ndobrouzdání\r\ndobrouzdaný\r\ndobrouzdat\r\nDobrovice\r\ndobrovický\r\nDobrovítov\r\ndobrovítovský\r\ndobrovolnější\r\ndobrovolnice\r\ndobrovolnický\r\ndobrovolničin\r\ndobrovolničtější\r\ndobrovolník\r\ndobrovolníkův\r\nDobrovolný\r\ndobrovolný\r\nDobrovský\r\ndobrozdání\r\nDobršín\r\ndobršínský\r\ndobručení\r\ndobručený\r\ndobručet\r\nDobrudža\r\ndobrumlání\r\ndobrumlaný\r\ndobrumlat\r\ndobruslení\r\ndobruslit\r\nDobruška\r\ndobrušovanější\r\ndobrušování\r\ndobrušovaný\r\ndobrušovat\r\ndobrušský\r\ndobrušující\r\ndobrůtka\r\nDobrylovský\r\ndobryndání\r\ndobryndaný\r\ndobryndat\r\nDobrý\r\ndobrý\r\ndobrzdění\r\ndobrzděný\r\ndobrzdit\r\ndobřanský\r\nDobřany\r\nDobřejovice\r\ndobřejovický\r\nDobřenice\r\ndobřenický\r\nDobřichovice\r\ndobřichovický\r\nDobřichov\r\ndobřichovský\r\nDobříkov\r\ndobříkovský\r\ndobřinkat\r\nDobřínsko\r\nDobříšsko\r\ndobříšský\r\nDobříš\r\ndobsonovský\r\nDobson\r\nDobsonův\r\nDobšice\r\ndobšický\r\nDobšín\r\ndobšínský\r\nDobšová\r\nDobšův\r\ndobu\r\ndobublání\r\ndobublat\r\ndobublávat\r\ndobubnování\r\ndobubnovaný\r\ndobubnovat\r\ndobučení\r\ndobučet\r\ndobudovanější\r\ndobudování\r\ndobudovaný\r\ndobudovat\r\ndobudovávanější\r\ndobudovávání\r\ndobudovávaný\r\ndobudovávat\r\ndobudu\r\ndobumbání\r\ndobumbaný\r\ndobumbat\r\ndoburácení\r\ndoburácet\r\ndobušení\r\ndobušený\r\ndobušit\r\ndobydlení\r\ndobyl\r\ndobytče\r\ndobytčí\r\ndobytější\r\ndobytek\r\ndobytelnější\r\ndobýt\r\ndobytí\r\ndobytka\r\ndobytkářčin\r\ndobytkářka\r\ndobytkářský\r\ndobytkářství\r\ndobytkář\r\ndobytkářův\r\ndobytkem\r\ndobytku\r\ndobytnější\r\ndobytný\r\ndobyt\r\ndobytý\r\ndobytý\r\ndobytý\r\ndobývací\r\ndobyvačnější\r\ndobyvačný\r\ndobývající\r\ndobývanější\r\ndobývání\r\ndobývaný\r\ndobyvatelčin\r\ndobyvatelka\r\ndobyvatelnější\r\ndobyvatelný\r\ndobyvatelský\r\ndobyvatelštější\r\ndobyvatel\r\ndobyvatelův\r\ndobývat\r\ndobývka\r\ndobyv\r\ndobyvše\r\ndobyvši\r\ndobyvší\r\ndobzíkat\r\ndobzučení\r\ndobzučený\r\ndobzučet\r\nDoc\r\ndocachtat\r\ndocákání\r\ndocákaný\r\ndocákat\r\ndocamrat\r\ndocancání\r\ndocancat\r\ndocapat\r\ndocedit\r\ndocela\r\ndoceněnější\r\ndocenění\r\ndoceněný\r\ndocenit\r\ndocenitelnější\r\ndocenitelný\r\ndoceňování\r\ndoceňovaný\r\ndoceňovat\r\ndocentčin\r\ndocentka\r\ndocent\r\ndocentský\r\ndocentura\r\ndocentův\r\ndoceňující\r\ndocestování\r\ndocestovaný\r\ndocestovat\r\ndocezení\r\ndocezený\r\ndocílení\r\ndocílený\r\ndocílit\r\ndocílitelnější\r\ndocilování\r\ndocilovaný\r\ndocilovat\r\ndocínovat\r\ndocirkulovat\r\ndocloumání\r\ndocloumaný\r\ndocloumat\r\ndocmrndání\r\ndocmrndaný\r\ndocmrndat\r\ndocmrndávat\r\ndocourání\r\ndocouraný\r\ndocourat\r\ndocouvání\r\ndocouvat\r\ndocouvávání\r\ndocouvávat\r\ndocpanější\r\ndocpání\r\ndocpaný\r\ndocpat\r\ndocpávání\r\ndocpávaný\r\ndocpávat\r\ndocrčení\r\ndocrčet\r\ndocucající\r\ndocucanější\r\ndocucání\r\ndocucaný\r\ndocucat\r\ndocucávat\r\ndocuchání\r\ndocuchaný\r\ndocuchat\r\ndocuchávat\r\ndocukání\r\ndocukat\r\ndocukávání\r\ndocukávat\r\ndocumlání\r\ndocumlaný\r\ndocumlat\r\ndocupat\r\ndocupitání\r\ndocupitat\r\ndocupitávání\r\ndocupitávat\r\ndocupování\r\ndocupovaný\r\ndocupovat\r\ndocupu\r\ndocvakat\r\ndocválání\r\ndocválat\r\ndocválávání\r\ndocválávat\r\ndocvičení\r\ndocvičený\r\ndocvičit\r\ndocvičování\r\ndocvičovaný\r\ndocvičovat\r\ndocvičující\r\ndocvrčet\r\ndocvrlikání\r\ndocvrlikaný\r\ndocvrlikat\r\ndocvrnkání\r\ndocvrnkaný\r\ndocvrnkat\r\ndocvrnkávání\r\ndocvrnkávaný\r\ndocvrnkávat\r\ndočadit\r\ndočárat\r\ndočárnout\r\ndočárnutí\r\ndočarovat\r\ndočasnější\r\ndočasný\r\ndočazení\r\ndočazený\r\ndočechrání\r\ndočechraný\r\ndočechrat\r\nDočekalová\r\nDočekal\r\nDočekalův\r\ndočekání\r\ndočekat\r\ndočenichání\r\ndočenichat\r\ndočepování\r\ndočepovaný\r\ndočepovat\r\ndočepýření\r\ndočepýřený\r\ndočepýřit\r\ndočernění\r\ndočerněný\r\ndočernit\r\ndočerpání\r\ndočerpaný\r\ndočerpat\r\ndočerpávání\r\ndočerpávaný\r\ndočerpávat\r\ndočervena\r\ndočesanější\r\ndočesání\r\ndočesaný\r\ndočesat\r\ndočesávání\r\ndočesávaný\r\ndočesávat\r\ndočichání\r\ndočichaný\r\ndočichat\r\ndočiřikání\r\ndočiřikat\r\ndočista\r\ndočíst\r\ndočistění\r\ndočistit\r\ndočištění\r\ndočištěný\r\ndočišťovací\r\ndočišťování\r\ndočišťovaný\r\ndočišťovat\r\ndočítání\r\ndočítaný\r\ndočítat\r\nDočkalová\r\nDočkal\r\nDočkalův\r\ndočkání\r\ndočkaný\r\ndočkat\r\ndočkávání\r\ndočkávat\r\ndočkavější\r\ndočmárání\r\ndočmáraný\r\ndočmárat\r\ndočmuchání\r\ndočmuchat\r\ndočmuchávat\r\ndočrtání\r\ndočrtaný\r\ndočrtat\r\ndočtenější\r\ndočtení\r\ndočtený\r\ndočuchání\r\ndočuchat\r\ndočurání\r\ndočůrání\r\ndočuraný\r\ndočůraný\r\ndočurat\r\ndočůrat\r\ndočurávající\r\ndočůrávající\r\ndočurávaný\r\ndočůrávaný\r\ndočurávat\r\ndočůrávat\r\ndočvachtat\r\ndodací\r\ndodanější\r\ndodanění\r\ndodaněný\r\ndodání\r\ndodanit\r\ndodaňování\r\ndodaňovaný\r\ndodaňovat\r\ndodaný\r\ndodatečnější\r\ndodatečný\r\ndodatek\r\ndodat\r\ndodatkový\r\ndodávající\r\ndodávanější\r\ndodávání\r\ndodávaný\r\ndodavatelčin\r\ndodavatelka\r\ndodavatelskoodběratelský\r\ndodavatelský\r\ndodavatel\r\ndodavatelův\r\ndodávat\r\ndodávení\r\ndodávený\r\ndodávit\r\ndodávka\r\ndodávkový\r\ndodecylgallát\r\ndodefinovanější\r\ndodefinování\r\ndodefinovaný\r\ndodefinovat\r\ndodefinovatelnější\r\ndodefinovatelný\r\ndodefinovávanější\r\ndodefinovávání\r\ndodefinovávaný\r\ndodefinovávat\r\ndodekahydrát\r\ndoděkovat\r\ndodělanější\r\ndodělání\r\ndodělaný\r\ndodělat\r\ndodělávací\r\ndodělávání\r\ndodělávaný\r\ndodělávat\r\ndodělávka\r\ndodělenější\r\ndodělení\r\ndodělený\r\ndodělit\r\ndodělitelnější\r\ndodělitelný\r\ndodestilovávání\r\ndodestilovávaný\r\ndodestilovávat\r\ndodezinfikovat\r\ndodírkovat\r\ndodlabání\r\ndodlabaný\r\ndodlabat\r\ndodlabávání\r\ndodlabávaný\r\ndodlabávat\r\ndodloubání\r\ndodloubaný\r\ndodloubat\r\ndodloubávání\r\ndodloubávaný\r\ndodloubávat\r\ndodnes\r\ndodneška\r\ndoďobat\r\ndodojek\r\ndodojování\r\ndodojovaný\r\ndodojovat\r\ndodolovat\r\ndodoutnání\r\ndodoutnat\r\ndodoutnávání\r\ndodoutnávat\r\ndodranější\r\ndodraní\r\ndodrání\r\ndodraný\r\ndodrápající\r\ndodrápanější\r\ndodrápání\r\ndodrápaný\r\ndodrápat\r\ndodrat\r\ndodražení\r\ndodražený\r\ndodražit\r\ndodrážkovat\r\ndodrbání\r\ndodrbaný\r\ndodrbat\r\ndodrbávání\r\ndodrbávaný\r\ndodrbávat\r\ndodrcání\r\ndodrcaný\r\ndodrcat\r\ndodrcení\r\ndodrcený\r\ndodrchání\r\ndodrchaný\r\ndodrchat\r\ndodriblovat\r\ndodrkat\r\ndodrkotání\r\ndodrkotat\r\ndodrnčení\r\ndodrnčet\r\ndodrnkat\r\ndodrolení\r\ndodrolený\r\ndodrolit\r\ndodrolování\r\ndodrolovaný\r\ndodrolovat\r\ndodrtit\r\ndodrženější\r\ndodržení\r\ndodržený\r\ndodržet\r\ndodržovanější\r\ndodržování\r\ndodržovaný\r\ndodržovat\r\ndodržující\r\ndodřímání\r\ndodřímat\r\ndodštít\r\ndoducání\r\ndoducaný\r\ndoducat\r\ndoducávat\r\ndodumání\r\ndodumaný\r\ndodumat\r\ndodumávání\r\ndodumávat\r\ndodumlání\r\ndodumlaný\r\ndodumlat\r\ndodupanější\r\ndodupání\r\ndodupaný\r\ndodupat\r\ndodupávanější\r\ndodupávání\r\ndodupávaný\r\ndodupávat\r\ndoduplikovat\r\ndodupu\r\ndodurdit\r\ndodusanější\r\ndodusání\r\ndodusaný\r\ndodusat\r\ndodusávání\r\ndodusávaný\r\ndodusávat\r\ndodusit\r\ndodušení\r\ndodušený\r\ndodýchat\r\ndodýmání\r\ndodýmaný\r\ndodýmat\r\ndoeditování\r\ndoeditovaný\r\ndoeditovat\r\ndoeliminovat\r\ndoexponování\r\ndoexponovaný\r\ndoexponovat\r\ndoexportování\r\ndoexportovaný\r\ndoexportovat\r\ndoexportovávání\r\ndoexportovávaný\r\ndoexportovávat\r\ndofačování\r\ndofačovaný\r\ndofačovat\r\ndofakturace\r\ndofárání\r\ndofáraný\r\ndofárat\r\nDofek\r\ndofetování\r\ndofetovaný\r\ndofetovat\r\ndofičení\r\ndofičet\r\ndofidlat\r\ndofilmovat\r\ndofiltrovanější\r\ndofiltrování\r\ndofiltrovaný\r\ndofiltrovat\r\ndofiltrovávat\r\ndofinancování\r\ndofinancovaný\r\ndofinancovat\r\ndofinancovávání\r\ndofinancovávaný\r\ndofinancovávat\r\nDofková\r\nDofkův\r\ndoflákání\r\ndoflákaný\r\ndoflákat\r\ndoflámovat\r\ndoflikování\r\ndoflikovaný\r\ndoflikovat\r\ndoflinkání\r\ndoflinkat\r\ndoflirtování\r\ndoflirtovat\r\ndofňukání\r\ndofňukat\r\ndoformování\r\ndoformovat\r\ndoformulování\r\ndofotografování\r\ndofotografovaný\r\ndofotografovat\r\ndofoukat\r\ndofrkání\r\ndofrkaný\r\ndofrkat\r\ndofučení\r\ndofučet\r\ndofukování\r\ndofukovaný\r\ndofukovat\r\ndofukovávání\r\ndofukovávaný\r\ndofukovávat\r\ndoga\r\ndogenerovanější\r\ndogenerování\r\ndogenerovaný\r\ndogenerovat\r\ndoglosování\r\ndoglosovaný\r\ndoglosovat\r\ndogma\r\ndogmatický\r\ndogmatička\r\ndogmatičtější\r\ndogmatika\r\ndogmatik\r\ndogmatikův\r\ndogmatismus\r\ndogmatizující\r\ndogovitý\r\ndogrilování\r\ndogumovat\r\ndohačat\r\ndohad\r\ndohadný\r\ndohadovací\r\ndohadovaččin\r\ndohadovačka\r\ndohadovanější\r\ndohadování\r\ndohadovaný\r\ndohadovat\r\ndohadující\r\ndohafat\r\ndohajání\r\ndohajaný\r\ndohajat\r\ndohajlování\r\ndohajlovaný\r\ndohajlovat\r\ndohalekání\r\ndohalekaný\r\ndohalekat\r\nDohalský\r\ndohánějící\r\ndoháněnější\r\ndohánění\r\ndoháněný\r\ndohánět\r\ndohasínající\r\ndohasínání\r\ndohasínaný\r\ndohasínat\r\ndohasnout\r\ndohasnutí\r\ndohasnutý\r\ndohašení\r\ndoházenější\r\ndoházení\r\ndoházený\r\ndoházet\r\ndohazovaččin\r\ndohazovačka\r\ndohazovač\r\ndohazovačův\r\ndohazování\r\ndohazovaný\r\ndohazovat\r\ndohekání\r\ndohekat\r\ndohíhající\r\ndohladit\r\ndohladka\r\ndohlaholit\r\ndohlásit\r\ndohláskovat\r\ndohlášenější\r\ndohlášení\r\ndohlášený\r\ndohlašovanější\r\ndohlašovaní\r\ndohlašování\r\ndohlašovaný\r\ndohlašovat\r\ndohlazení\r\ndohlazený\r\ndohledací\r\ndohlédací\r\ndohledanější\r\ndohledání\r\ndohledaný\r\ndohledat\r\ndohledávání\r\ndohledávaný\r\ndohledávat\r\ndohledávka\r\ndohledění\r\ndohledět\r\ndohled\r\ndohlednější\r\ndohledno\r\ndohlédnout\r\ndohlédnul\r\ndohlédnutelnější\r\ndohlédnutí\r\ndohledný\r\ndohlídání\r\ndohlídaný\r\ndohlídat\r\ndohlídka\r\ndohlídkový\r\ndohlídnout\r\ndohlídnul\r\ndohlížecí\r\ndohlížející\r\ndohlížení\r\ndohlíženo\r\ndohlížet\r\ndohlížitelčin\r\ndohlížitelka\r\ndohližitel\r\ndohlížitel\r\ndohližitelův\r\ndohlížitelův\r\ndohlodanější\r\ndohlodání\r\ndohlodaný\r\ndohlodat\r\ndohlodávání\r\ndohlodávaný\r\ndohlodávat\r\ndohloubání\r\ndohloubaný\r\ndohloubat\r\ndohloubávání\r\ndohloubávat\r\ndohlučení\r\ndohlučet\r\ndohmat\r\ndohmátnout\r\ndohmátnutí\r\ndohmitnout\r\nDohnálek\r\nDohnálková\r\nDohnálkův\r\ndohnal\r\nDohnalová\r\nDohnal\r\nDohnalův\r\ndohnanější\r\ndohnání\r\ndohnán\r\ndohnaný\r\ndohnat\r\ndohněda\r\ndohnětat\r\ndohnětení\r\ndohněten\r\ndohnětený\r\ndohníst\r\ndohnít\r\ndohnití\r\ndohnívání\r\ndohnívaný\r\ndohnívat\r\ndohoda\r\ndohodce\r\ndohodcův\r\ndohodit\r\ndohodnocenější\r\ndohodnocení\r\ndohodnocený\r\ndohodnotit\r\ndohodnout\r\ndohodnutější\r\ndohodnutí\r\ndohodnutý\r\ndohodnutý\r\ndohodovací\r\ndohodový\r\ndohola\r\ndoholení\r\ndohonění\r\ndohoněný\r\ndohonit\r\ndohopkání\r\ndohopkat\r\ndohopsání\r\ndohopsat\r\ndohoření\r\ndohořený\r\ndohořet\r\ndohořívací\r\ndohořívající\r\ndohořívání\r\ndohořívaný\r\ndohořívat\r\ndohospodaření\r\ndohospodařený\r\ndohospodařit\r\ndohotovenější\r\ndohotovení\r\ndohotovený\r\ndohotovit\r\ndohotovování\r\ndohotovovat\r\ndohotovující\r\ndohoukání\r\ndohoukaný\r\ndohoukat\r\ndohoust\r\ndohovění\r\ndohovět\r\ndohovor\r\ndohovoření\r\ndohovořený\r\ndohovořit\r\ndohovořovat\r\ndohozenější\r\ndohození\r\ndohozený\r\ndohrabanější\r\ndohrabání\r\ndohrabaný\r\ndohrabat\r\ndohrabávání\r\ndohrabávaný\r\ndohrabávat\r\ndohranější\r\ndohrání\r\ndohraný\r\ndohrát\r\ndohrávající\r\ndohrávanější\r\ndohrávání\r\ndohrávaný\r\ndohrávat\r\ndohrávka\r\ndohra\r\ndohrčení\r\ndohrčet\r\ndohrkat\r\ndohrkotání\r\ndohrkotat\r\ndohrnout\r\ndohrnovat\r\ndohrnutí\r\ndohrnutý\r\ndohromady\r\ndohromovat\r\ndohrození\r\ndohrozený\r\ndohrozit\r\ndohryzající\r\ndohryzanější\r\ndohryzání\r\ndohryzaný\r\ndohryzat\r\ndohryzávání\r\ndohryzávaný\r\ndohryzávat\r\ndohřání\r\ndohřát\r\ndohřátý\r\ndohřešení\r\ndohřešený\r\ndohřešit\r\ndohřímání\r\ndohřímaný\r\ndohřímat\r\ndohřívání\r\ndohřívaný\r\ndohřívat\r\ndohubačit\r\ndohučení\r\ndohučet\r\ndohudení\r\ndohudlat\r\ndohudl\r\ndohudrat\r\ndohudrovat\r\ndohudu\r\ndohuhlání\r\ndohuhlaný\r\ndohuhlat\r\ndohuhňat\r\ndohulákání\r\ndohulákaný\r\ndohulákat\r\ndohulit\r\ndohustit\r\ndohuštění\r\ndohuštěný\r\ndohušťovací\r\ndohušťování\r\ndohušťovaný\r\ndohušťovat\r\ndohvězdičkovat\r\ndohvízdání\r\ndohvízdaný\r\ndohvízdat\r\ndohýbání\r\ndohýbat\r\ndohýčkání\r\ndohýčkaný\r\ndohýčkat\r\ndohýkání\r\ndohýkat\r\ndohýření\r\ndohýřený\r\ndohýřit\r\ndohysterčit\r\ndocházející\r\ndocházení\r\ndocházet\r\ndocházívat\r\ndocházka\r\ndocházkový\r\ndochcípání\r\ndochcípat\r\ndochechtat\r\ndochichotání\r\ndochichotat\r\ndochlamstat\r\ndochlazování\r\ndochlemstat\r\ndochlemtání\r\ndochlemtaný\r\ndochlemtat\r\ndochlístat\r\ndochlorovanější\r\ndochlorování\r\ndochlorovaný\r\ndochlorovat\r\ndochňapání\r\ndochňapaný\r\ndochňapat\r\ndochování\r\ndochovaný\r\ndochovat\r\ndochovávající\r\ndochovávání\r\ndochovávaný\r\ndochovávat\r\ndochození\r\ndochramstat\r\ndochrastění\r\ndochrastit\r\ndochrčení\r\ndochrčet\r\ndochrchlání\r\ndochrchlaný\r\ndochrchlat\r\ndochrlení\r\ndochrochtat\r\ndochroptět\r\ndochroupání\r\ndochroupaný\r\ndochroupat\r\ndochroustat\r\ndochrstat\r\ndochřoupat\r\ndochucení\r\ndochucený\r\ndochumlání\r\ndochumlaný\r\ndochumlat\r\ndochuravění\r\ndochuravět\r\ndochutit\r\ndochvástat\r\ndochvění\r\ndochvět\r\ndochvilnější\r\ndochvilný\r\ndochvívat\r\ndochybování\r\ndochytanější\r\ndochytání\r\ndochytaný\r\ndochytat\r\ndochytávání\r\ndochytávaný\r\ndochytávat\r\ndoilustrování\r\ndoindexování\r\ndoindexovaný\r\ndoindexovat\r\ndoinformovat\r\ndoinstalace\r\ndoinstalovanější\r\ndoinstalování\r\ndoinstalovaný\r\ndoinstalovat\r\ndoinstalovávání\r\ndoinstalovávaný\r\ndoinstalovávat\r\ndoinstalující\r\ndoinvestování\r\ndoinvestovaný\r\ndoinvestovat\r\ndoinvestovávání\r\ndoinvestovávaný\r\ndoinvestovávat\r\ndoisolovat\r\ndoizolování\r\ndoizolovávání\r\ndoizolovávaný\r\ndoizolovávat\r\ndojačka\r\ndoják\r\ndojal\r\ndojamovat\r\ndojarovizování\r\ndojarovizovaný\r\ndojarovizovat\r\ndojásání\r\ndojásat\r\ndojatější\r\ndojatější\r\ndojat\r\ndojatý\r\ndojatý\r\nDojčáková\r\nDojčák\r\nDojčákův\r\ndojda\r\ndojdu\r\ndoječení\r\ndoječený\r\ndoječet\r\ndojedení\r\ndojedený\r\ndojednající\r\ndojednanější\r\ndojednání\r\ndojednáno\r\ndojednaný\r\ndojednat\r\ndojednávající\r\ndojednávanější\r\ndojednávání\r\ndojednávaný\r\ndojednávat\r\ndojednocení\r\ndojedu\r\ndojektání\r\ndojektaný\r\ndojektat\r\ndojel\r\ndojemnější\r\ndojemnůstka\r\ndojemný\r\ndojem\r\ndojení\r\ndojený\r\ndojetější\r\ndojet\r\ndojetí\r\ndojetý\r\ndojezdění\r\ndojezděný\r\ndojezd\r\ndojezdit\r\ndojezdnost\r\ndojezdový\r\ndojicí\r\ndojící\r\ndojička\r\ndojič\r\ndojičův\r\ndojídání\r\ndojídaný\r\ndojídat\r\ndojídávání\r\ndojídávaný\r\ndojídávat\r\ndojímající\r\ndojímanější\r\ndojímání\r\ndojímaný\r\ndojímatelnější\r\ndojímatelnější\r\ndojímatelný\r\ndojímat\r\ndojímavější\r\ndojímavý\r\ndojírna\r\ndojíst\r\ndojit\r\ndojitelný\r\ndojít\r\ndojití\r\ndojitření\r\ndojitřený\r\ndojitřit\r\ndojivý\r\ndojíždějící\r\ndojíždění\r\ndojížděný\r\ndojíždět\r\ndojížďka\r\ndojmologický\r\ndojmologie\r\ndojmout\r\ndojmový\r\ndojmu\r\ndojmutí\r\ndojnější\r\ndojnice\r\ndojný\r\ndojódlování\r\ndojódlovaný\r\ndojódlovat\r\ndojukat\r\ndokalafunování\r\ndokalafunovaný\r\ndokalafunovat\r\ndokapanější\r\ndokapání\r\ndokapaný\r\ndokapat\r\ndokapávání\r\ndokapávaný\r\ndokapávat\r\ndokapu\r\ndokařský\r\ndokař\r\ndokařův\r\ndokašlání\r\ndokašlat\r\ndokázanější\r\ndokázání\r\ndokázán\r\ndokázaný\r\ndokázat\r\ndokazatelnější\r\ndokazatelný\r\ndokazit\r\ndokazovací\r\ndokazovanější\r\ndokazování\r\ndokazovaný\r\ndokazovat\r\ndokazující\r\ndokažení\r\ndokažený\r\ndokáži\r\ndokdákání\r\ndokdákaný\r\ndokdákat\r\ndokdy\r\ndokecání\r\ndokecat\r\ndokejhat\r\ndok\r\ndoklackovat\r\ndokládací\r\ndokladač\r\ndokládající\r\ndokládanější\r\ndokládání\r\ndokládaný\r\ndokladatelnější\r\ndokladatelný\r\ndokládat\r\ndokladení\r\ndokladený\r\ndoklad\r\ndoklad\r\ndokladní\r\ndokladovanější\r\ndokladování\r\ndokladovaný\r\ndokladovat\r\ndokladovatelnější\r\ndokladovatelný\r\ndokladovější\r\ndokladový\r\ndokladující\r\ndoklapání\r\ndoklapaný\r\ndoklapat\r\ndoklást\r\ndoklečení\r\ndoklečet\r\ndoklenutí\r\ndoklepanější\r\ndoklepání\r\ndoklepaný\r\ndoklepat\r\ndoklepávající\r\ndoklepávanější\r\ndoklepávání\r\ndoklepávaný\r\ndoklepávat\r\ndoklepnout\r\ndoklepnutější\r\ndoklepnutí\r\ndoklepnutý\r\ndoklepnutý\r\ndoklíčení\r\ndoklíčený\r\ndoklíčit\r\ndoklikání\r\ndoklikat\r\ndoklikávání\r\ndoklikávaný\r\ndoklikávat\r\ndoklímání\r\ndoklímat\r\ndoklimbání\r\ndoklimbat\r\ndoklimbávání\r\ndoklimbávat\r\ndoklinkání\r\ndoklinkaný\r\ndoklinkat\r\ndoklížit\r\ndoklobat\r\ndoklofat\r\ndoklokotání\r\ndoklokotat\r\ndoklopení\r\ndoklopený\r\ndoklopit\r\ndoklopýtání\r\ndoklopýtaný\r\ndoklopýtat\r\ndoklouzání\r\ndoklouzat\r\ndoklouzávání\r\ndoklouzávaný\r\ndoklouzávat\r\ndoklovat\r\ndoklovávání\r\ndoklovávaný\r\ndoklovávat\r\ndoklovu\r\ndoklubání\r\ndoklubaný\r\ndoklubat\r\ndoklubávání\r\ndoklubávaný\r\ndoklubávat\r\ndoklubu\r\ndoklučit\r\ndoklusání\r\ndoklusat\r\ndokluz\r\ndokluzování\r\ndokluzovat\r\ndokmitat\r\ndokmitávání\r\ndokmitávat\r\ndokmitnout\r\ndokničení\r\ndokničený\r\ndokničet\r\ndokničivější\r\ndokničivý\r\ndokňourání\r\ndokňouraný\r\ndokňourat\r\ndokňučení\r\ndokňučet\r\ndokodrcání\r\ndokodrcaný\r\ndokodrcat\r\ndokokrhání\r\ndokokrhaný\r\ndokokrhat\r\ndokoktávání\r\ndokoktávaný\r\ndokoktávat\r\ndokola\r\ndokolébání\r\ndokolébaný\r\ndokolébat\r\ndokolébávání\r\ndokolébávaný\r\ndokolébávat\r\ndokolečka\r\ndokolkovat\r\ndokomentovanější\r\ndokomentování\r\ndokomentovaný\r\ndokomentovat\r\ndokompilovat\r\ndokompletování\r\ndokompletovaný\r\ndokompletovat\r\ndokomponování\r\ndokomponovaný\r\ndokomponovat\r\ndokomponovávání\r\ndokomponovávaný\r\ndokomponovávat\r\ndokomunikovat\r\ndokonalejší\r\ndokonalý\r\ndokonanější\r\ndokonání\r\ndokonaný\r\ndokonat\r\ndokonávající\r\ndokonávanější\r\ndokonávání\r\ndokonávaný\r\ndokonávat\r\ndokonavější\r\ndokonavý\r\ndokonce\r\ndokončenější\r\ndokončení\r\ndokončený\r\ndokončit\r\ndokončovací\r\ndokončování\r\ndokončovaný\r\ndokončovat\r\ndokončující\r\ndokonfiskovat\r\ndokonstruování\r\ndokonsumovat\r\ndokontrolování\r\ndokontrolovaný\r\ndokontrolovat\r\ndokonvertovanější\r\ndokonvertování\r\ndokonvertovaný\r\ndokonvertovat\r\ndokonvertovávání\r\ndokonvertovávaný\r\ndokonvertovávat\r\ndokonzultování\r\ndokonzumování\r\ndokopanější\r\ndokopání\r\ndokopaný\r\ndokopat\r\ndokopávání\r\ndokopávaný\r\ndokopávat\r\ndokopírovanější\r\ndokopírování\r\ndokopírovaný\r\ndokopírovat\r\ndokopírovávat\r\ndokopnout\r\ndokorigování\r\ndokormidlování\r\ndokormidlovaný\r\ndokormidlovat\r\ndokorsovat\r\ndokorzovat\r\ndokořán\r\ndokořenění\r\ndokořeněný\r\ndokořenit\r\ndokosení\r\ndokosený\r\ndokosit\r\ndokótování\r\ndokótovaný\r\ndokótovat\r\ndokoukání\r\ndokoukaný\r\ndokoukat\r\ndokouknout\r\ndokouknutí\r\ndokoulení\r\ndokoulený\r\ndokoulet\r\ndokoumání\r\ndokoumaný\r\ndokoumat\r\ndokoupení\r\ndokoupený\r\nDokoupilová\r\nDokoupil\r\nDokoupilův\r\ndokoupit\r\ndokouření\r\ndokouřený\r\ndokouřit\r\ndokousanější\r\ndokousání\r\ndokousaný\r\ndokousat\r\ndokousávající\r\ndokousávanější\r\ndokousávání\r\ndokousávaný\r\ndokousávat\r\ndokousnout\r\ndokousnutější\r\ndokousnutí\r\ndokousnutý\r\ndokousnutý\r\ndokoušu\r\ndokovanější\r\ndokování\r\ndokovaný\r\ndokovat\r\ndokovávání\r\ndokovávaný\r\ndokovávat\r\ndokovu\r\ndokový\r\ndokráčení\r\ndokráčený\r\ndokráčet\r\ndokrájenější\r\ndokrájení\r\ndokrájený\r\ndokrájet\r\ndokrajování\r\ndokrajovaný\r\ndokrajovat\r\ndokrajovávání\r\ndokrajovávaný\r\ndokrajovávat\r\ndokrákání\r\ndokrákaný\r\ndokrákat\r\ndokrákorání\r\ndokrákorat\r\ndokralovat\r\ndokreslenější\r\ndokreslení\r\ndokreslený\r\ndokreslit\r\ndokreslování\r\ndokreslovaný\r\ndokreslovat\r\ndokreslovávání\r\ndokreslovávaný\r\ndokreslovávat\r\ndokreslující\r\ndokrkání\r\ndokrkaný\r\ndokrkat\r\ndokrmení\r\ndokrmený\r\ndokrmit\r\ndokrmovačka\r\ndokrmování\r\ndokrmovaný\r\ndokrmovat\r\ndokročení\r\ndokročený\r\ndokročit\r\ndokrojení\r\ndokrojený\r\ndokrojit\r\ndokropení\r\ndokropený\r\ndokropit\r\ndokroucení\r\ndokroucený\r\ndokrouhání\r\ndokrouhaný\r\ndokrouhat\r\ndokrouhávání\r\ndokrouhávaný\r\ndokrouhávat\r\ndokroutit\r\ndokroužení\r\ndokroužit\r\ndokručení\r\ndokručet\r\ndokrystalovat\r\ndokrytí\r\ndokrývací\r\ndokřečkovat\r\ndokřepčení\r\ndokřepčený\r\ndokřepčit\r\ndokřesající\r\ndokřesanější\r\ndokřesání\r\ndokřesaný\r\ndokřesat\r\ndokřesávající\r\ndokřesávanější\r\ndokřesávání\r\ndokřesávaný\r\ndokřesávat\r\ndokřížkovat\r\ndokřupání\r\ndokřupaný\r\ndokřupat\r\ndokský\r\nDoksy\r\ndoktorandčin\r\ndoktorandka\r\ndoktorand\r\ndoktorandský\r\ndoktorandův\r\ndoktorát\r\ndoktorčin\r\ndoktorka\r\nDoktorová\r\ndoktor\r\nDoktor\r\ndoktorský\r\ndoktorštější\r\nDoktorův\r\ndoktorův\r\ndoktrinářčin\r\ndoktrinářka\r\ndoktrinář\r\ndoktrinářův\r\ndoktrína\r\ndokuckání\r\ndokuckat\r\ndokud\r\ndokuchání\r\ndokuchaný\r\ndokuchat\r\ndokuchávání\r\ndokuchávaný\r\ndokuchávat\r\ndokuchtit\r\ndokukání\r\ndokukaný\r\ndokukat\r\ndokukávání\r\ndokukávat\r\ndokulení\r\ndokulený\r\ndokulhání\r\ndokulhat\r\ndokulhávání\r\ndokulhávat\r\nDokulilová\r\nDokulil\r\nDokulilův\r\ndokulit\r\ndokulmování\r\ndokulmovaný\r\ndokulmovat\r\ndokumentace\r\ndokumentační\r\ndokumentarismus\r\ndokumentarista\r\ndokumentaristčin\r\ndokumentaristický\r\ndokumentarističin\r\ndokumentarističtější\r\ndokumentaristika\r\ndokumentaristka\r\ndokumentaristův\r\ndokumentarizující\r\ndokumentárnější\r\ndokumentární\r\ndokumentářčin\r\ndokumentářka\r\ndokumentář\r\ndokumentářův\r\ndokumentátorčin\r\ndokumentátorka\r\ndokumentátor\r\ndokumentátorův\r\ndokument\r\ndokumentografický\r\ndokumentografičtější\r\ndokumentování\r\ndokumentovaný\r\ndokumentovat\r\ndokumentovávání\r\ndokumentovávaný\r\ndokumentovávat\r\ndokumentový\r\ndokumentující\r\ndokumetování\r\ndokumetovaný\r\ndokumetovat\r\ndokumetovávání\r\ndokumetovávaný\r\ndokumetovávat\r\ndokuňkání\r\ndokuňkaný\r\ndokuňkat\r\ndokupení\r\ndokupený\r\ndokupit\r\ndokupování\r\ndokupovaný\r\ndokupovat\r\ndokurýrování\r\ndokurýrovaný\r\ndokurýrovat\r\ndokuřování\r\ndokuřovaný\r\ndokuřovat\r\ndokusovanější\r\ndokusování\r\ndokusovaný\r\ndokusovat\r\ndokusující\r\ndokutálení\r\ndokutálený\r\ndokutálet\r\ndokutání\r\ndokutaný\r\ndokutat\r\ndokutávat\r\ndokvákání\r\ndokvákaný\r\ndokvákat\r\ndokvaltování\r\ndokvaltovat\r\ndokvasit\r\ndokvášející\r\ndokvašení\r\ndokvašený\r\ndokvašování\r\ndokvašovaný\r\ndokvašovat\r\ndokvedlání\r\ndokvedlaný\r\ndokvedlat\r\ndokvedlávání\r\ndokvedlávaný\r\ndokvedlávat\r\ndokvést\r\ndokvétat\r\ndokvetení\r\ndokvetený\r\ndokvetlý\r\ndokvičet\r\ndokvikat\r\ndokvíkat\r\ndokvílení\r\ndokvílet\r\ndokvrdlat\r\ndokydání\r\ndokydaný\r\ndokydat\r\ndokydávání\r\ndokydávaný\r\ndokydávat\r\ndokýchání\r\ndokýchat\r\ndokymácení\r\ndokymácet\r\ndokypření\r\ndokypřený\r\ndokypřit\r\ndokývat\r\ndoladění\r\ndoladěný\r\ndoladit\r\ndolaďovací\r\ndolaďovač\r\ndolaďování\r\ndolaďovaný\r\ndolaďovat\r\ndolajdat\r\ndolák\r\nDoláková\r\nDolák\r\nDolákův\r\ndolámání\r\ndolámaný\r\ndolámat\r\ndolamentovat\r\ndolaminovat\r\nDolanský\r\ndolapání\r\ndolapaný\r\ndolapat\r\ndolar\r\ndolarovka\r\ndolarový\r\ndolaškování\r\ndolaškovaný\r\ndolaškovat\r\ndolce\r\ndole\r\nDoleček\r\ndoléčení\r\ndoléčený\r\ndoléčit\r\nDolečková\r\nDolečkův\r\ndoléčovací\r\ndoléčování\r\ndoléčovat\r\ndoléčující\r\ndoléhající\r\ndoléhání\r\ndoléhat\r\ndoléhávání\r\ndoléhávat\r\ndolehnout\r\ndolehnutí\r\ndolech\r\ndoleji\r\ndolejší\r\nDolejšová\r\nDolejš\r\nDolejšův\r\ndolelkovat\r\ndolem\r\nDolenice\r\ndolenický\r\ndolení\r\nDolenský\r\ndolepení\r\ndolepený\r\ndolepit\r\ndolepovat\r\ndoleritový\r\ndoleštění\r\ndoleštěný\r\ndoleštit\r\ndolétání\r\ndolétaný\r\ndolétat\r\ndolétávání\r\ndolétávat\r\ndoletění\r\ndoletěný\r\ndoletět\r\ndolet\r\ndolétnout\r\ndolétnutí\r\ndoletování\r\ndoletovaný\r\ndoletovat\r\ndoleva\r\ndolévající\r\ndolévání\r\ndolévaný\r\ndolévat\r\ndolézající\r\ndolézání\r\ndolézat\r\ndolézavý\r\ndolezení\r\ndolézt\r\nDoležalová\r\nDoležal\r\nDoležalův\r\nDoleželová\r\nDoležel\r\nDoleželův\r\nDolfi\r\nDolfův\r\ndol\r\ndolhal\r\ndolhaní\r\ndolhání\r\ndolhat\r\ndolhávaní\r\ndolhávání\r\ndolhávat\r\ndolíbání\r\ndolíbaný\r\ndolíbat\r\ndolicitování\r\ndolíček\r\nďolíček\r\ndolíčení\r\ndolíčený\r\ndolíčit\r\ndolíčkovaný\r\ndolíčkovatý\r\nďolíčkovatý\r\ndoličný\r\ndolík\r\nďolík\r\ndolikvidování\r\ndolina\r\ndolinka\r\ndolinkovanější\r\ndolinkování\r\ndolinkovaný\r\ndolinkovat\r\ndolinkovávání\r\ndolinkovávaný\r\ndolinkovávat\r\nDolínová\r\nDolín\r\nDolínův\r\ndolisování\r\ndolisovaný\r\ndolisovat\r\nDolista\r\ndolistování\r\ndolistovaný\r\ndolistovat\r\nDolistová\r\nDolistův\r\ndolítání\r\ndolítaný\r\ndolítat\r\ndolít\r\ndolití\r\ndolítnout\r\ndolítnutí\r\ndolit\r\ndolitý\r\ndolívanější\r\ndolívání\r\ndolívaný\r\ndolívat\r\ndolízat\r\ndolíznout\r\ndolíznutí\r\ndolíznutý\r\ndolkání\r\ndolkat\r\ndolmen\r\ndolňácký\r\ndolní\r\ndolnobavorský\r\ndolnodunajský\r\ndolnolužický\r\ndolnomoravský\r\ndolnoněmecký\r\ndolnoplošník\r\ndolnopropustní\r\ndolnorakouský\r\ndolnosaský\r\ndolnoslezský\r\ndolobbování\r\ndolobbovaný\r\ndolobbovat\r\ndolobování\r\ndolobovaný\r\ndolobovat\r\ndolokání\r\ndolokaný\r\ndolokat\r\ndolomení\r\ndolomený\r\ndolomit\r\ndolomit\r\ndolomitický\r\ndolomitový\r\ndolomitský\r\nDolomity\r\ndolomozit\r\nDolores\r\ndoloroso\r\ndolosování\r\ndolosovaný\r\ndolosovat\r\ndoloudání\r\ndoloudat\r\ndoloupání\r\ndoloupaný\r\ndoloupat\r\ndoloupávání\r\ndoloupávaný\r\ndoloupávat\r\ndoloupení\r\ndoloupený\r\ndoloupit\r\ndolování\r\ndolovaný\r\ndolovaný\r\ndolovat\r\ndolovávání\r\ndolovávaný\r\ndolovávat\r\ndolovení\r\ndolovený\r\ndolovit\r\ndolový\r\ndoloženější\r\ndoložení\r\ndoložený\r\ndoložit\r\ndoložitelný\r\ndoložka\r\ndolu\r\ndolů\r\ndolům\r\ndolupovat\r\ndoluštění\r\ndoluštěný\r\ndoluštit\r\ndoluxování\r\ndoluxovaný\r\ndoluxovat\r\ndoly\r\ndolžu\r\ndoma\r\ndomácí\r\ndomácký\r\ndomácnění\r\ndomácněný\r\ndomácnět\r\ndomácnost\r\ndomáčení\r\ndomáčený\r\ndomáčet\r\ndomačkání\r\ndomačkaný\r\ndomačkat\r\ndomačkávání\r\ndomačkávaný\r\ndomačkávat\r\ndomáčknout\r\ndomáčknutí\r\ndomáčknutý\r\ndomáčtější\r\ndomáhající\r\ndomáhání\r\ndomáhat\r\ndomáchání\r\ndomáchaný\r\ndomáchat\r\ndomáknout\r\ndomáknutí\r\ndomalování\r\ndomalovaný\r\ndomalovat\r\ndomalovávání\r\ndomalovávaný\r\ndomalovávat\r\ndomámenější\r\ndomámení\r\ndomámený\r\nDomamil\r\ndomamilský\r\ndomámit\r\nDomanice\r\ndomanický\r\nDomanín\r\ndomanínský\r\nDomáňová\r\nDomáň\r\nDomáňův\r\ndomapovat\r\ndomarnění\r\ndomarněný\r\ndomarnit\r\ndomarodit\r\ndomasírování\r\ndomaskovat\r\ndomastit\r\nDomašín\r\ndomašínský\r\nDomašov\r\ndomašovský\r\ndomatlání\r\ndomatlaný\r\ndomatlat\r\ndomatlávání\r\ndomatlávaný\r\ndomatlávat\r\ndomaturovávat\r\ndomazanější\r\ndomazání\r\ndomazaný\r\ndomazat\r\ndomazávající\r\ndomazávání\r\ndomazávaný\r\ndomazávat\r\ndomáznout\r\ndomáznutí\r\ndomáznutý\r\nDomažlice\r\nDomažlicko\r\ndomažlický\r\ndome\r\ndomě\r\ndomeandrovat\r\ndomeček\r\ndomečení\r\ndomečený\r\ndomečet\r\ndomech\r\ndoměkka\r\ndomekotání\r\ndomekotat\r\ndomek\r\ndomelu\r\ndomem\r\ndoména\r\ndoménový\r\ndoměrek\r\ndoměřenější\r\ndoměření\r\ndoměřený\r\ndoměřit\r\ndoměřování\r\ndoměřovaný\r\ndoměřovat\r\ndoměřovávat\r\ndomést\r\ndomestikace\r\ndomestikování\r\ndomestikovaný\r\ndomestikovat\r\ndomestikovávání\r\ndomestikovávaný\r\ndomestikovávat\r\ndometání\r\ndometaný\r\ndometat\r\ndometávání\r\ndometávaný\r\ndometávat\r\ndometení\r\ndometený\r\ndóm\r\nDomianová\r\nDomian\r\nDomianův\r\ndomicilování\r\ndomihotání\r\ndomihotat\r\ndomilování\r\ndomilovaný\r\ndomilovat\r\ndomilovávání\r\ndomilovávaný\r\ndomilovávat\r\ndominance\r\ndominanta\r\ndominantnější\r\ndominantní\r\ndominantní\r\ndominický\r\nDominičančin\r\nDominičanka\r\nDominičan\r\nDominičanův\r\nDominičin\r\ndominikál\r\ndominikální\r\nDominikáncův\r\nDominikánčin\r\ndominikánčin\r\nDominikánec\r\nDominikánka\r\ndominikánka\r\ndominikán\r\ndominikánský\r\ndominikánský\r\ndominikánštější\r\ndominikánův\r\nDominika\r\nDominik\r\nDominikův\r\ndominium\r\ndominoefekt\r\ndomino\r\ndominování\r\ndominovat\r\ndominovitý\r\ndominový\r\ndominující\r\ndomíření\r\ndomířený\r\ndomířit\r\ndomísení\r\ndomísit\r\ndomíšení\r\ndomíšený\r\ndomixování\r\ndomixovaný\r\ndomixovat\r\ndomkař\r\ndomkář\r\ndomkařův\r\ndomkářův\r\ndomlácení\r\ndomlácený\r\ndomlátit\r\ndomlel\r\ndomlení\r\ndomletější\r\ndomletí\r\ndomlet\r\ndomletý\r\ndomletý\r\ndomlít\r\ndomlouvání\r\ndomlouvaný\r\ndomlouvat\r\ndomlouvavý\r\ndomlsání\r\ndomlsaný\r\ndomlsat\r\ndomluva\r\ndomluvení\r\ndomluvený\r\ndomluvit\r\ndomlžení\r\ndomlžený\r\ndomlžit\r\ndomnělejší\r\ndomnělý\r\ndomnění\r\ndomněnka\r\ndomnívající\r\ndomnívání\r\ndomnívaný\r\ndomnívat\r\ndomňoukání\r\ndomňoukat\r\ndomnožení\r\ndomnožený\r\ndomnožit\r\ndomobrana\r\ndomoci\r\ndomočení\r\ndomočený\r\ndomočit\r\ndomodelování\r\ndomodelovaný\r\ndomodelovat\r\ndomodelovávání\r\ndomodelovávaný\r\ndomodelovávat\r\nDomonkosová\r\nDomonkos\r\nDomonkosův\r\ndomontování\r\ndomontovaný\r\ndomontovat\r\ndomontovávání\r\ndomontovávaný\r\ndomontovávat\r\ndomorodcův\r\ndomorodčin\r\ndomorodec\r\ndomorodka\r\ndomorodý\r\ndomoření\r\ndomořený\r\ndomořit\r\ndomotaný\r\ndomovenka\r\ndomovina\r\ndomovinka\r\ndomov\r\ndomovnice\r\ndomovnický\r\ndomovnictví\r\ndomovničin\r\ndomovník\r\ndomovníkův\r\ndomovní\r\ndomovský\r\ndomovštější\r\ndomový\r\ndomozme\r\ndomoz\r\ndomozte\r\ndomožení\r\ndomrazení\r\ndomrazený\r\ndomrazit\r\ndomrhání\r\ndomrhaný\r\ndomrhat\r\ndomrmlání\r\ndomrmlaný\r\ndomrmlat\r\ndomrskání\r\ndomrskaný\r\ndomrskat\r\ndomručení\r\ndomručený\r\ndomručet\r\ndomrvit\r\ndomu\r\ndomů\r\ndomučenější\r\ndomučení\r\ndomučený\r\ndomučit\r\ndomudrovat\r\ndomuchlání\r\ndomuchlaný\r\ndomuchlat\r\ndomuchlávání\r\ndomuchlávaný\r\ndomuchlávat\r\ndomům\r\ndomumlání\r\ndomumlaný\r\ndomumlat\r\ndomy\r\ndomydlení\r\ndomydlený\r\ndomydlit\r\ndomykání\r\ndomykaný\r\ndomykavý\r\ndomyslení\r\ndomyslený\r\ndomyslet\r\ndomyslit\r\ndomystifikovat\r\ndomyšlenější\r\ndomyšlení\r\ndomýšlení\r\ndomyšlen\r\ndomyšlený\r\ndomýšlený\r\ndomýšlet\r\ndomýšlivcův\r\ndomýšlivec\r\ndomýšlivější\r\ndomýšlivý\r\ndomýt\r\ndomytější\r\ndomytí\r\ndomytý\r\ndomytý\r\ndomývačka\r\ndomývač\r\ndomývačův\r\ndomývanější\r\ndomývání\r\ndomývaný\r\ndomývatelnější\r\ndomývatelný\r\ndomývat\r\ndomžikání\r\ndomžikat\r\ndomžikávání\r\ndomžikávaný\r\ndomžikávat\r\ndomžourání\r\ndomžourat\r\ndoňafání\r\ndoňafaný\r\ndoňafat\r\ndonaha\r\ndonakládanější\r\ndonakládání\r\ndonakládaný\r\ndonakládat\r\ndonamazat\r\ndonaříkání\r\ndonaříkat\r\ndonastavovanější\r\ndonastavovaní\r\ndonastavování\r\ndonastavovaný\r\ndonastavovat\r\ndonašeččin\r\ndonašečka\r\ndonášeč\r\ndonašečství\r\ndonašeč\r\ndonašečův\r\ndonášející\r\ndonášenější\r\ndonášení\r\ndonášený\r\ndonášet\r\ndonáška\r\ndonáškový\r\nDonátová\r\nDonát\r\nDonátův\r\nDonaufová\r\nDonauf\r\nDonaufův\r\ndonavlékání\r\ndonavlékaný\r\ndonavlékat\r\nDona\r\ndonebevolající\r\nDoněck\r\ndoněcký\r\ndonedávna\r\ndonekonečna\r\ndonesenější\r\ndonesení\r\ndonesený\r\ndonést\r\ndong\r\nDon\r\ndonchuanismus\r\ndonchuán\r\ndonchuánův\r\ndoničení\r\ndoničený\r\ndoničit\r\ndonimrání\r\ndonimrat\r\nDonín\r\ndonkichotiáda\r\ndonkichotismus\r\ndonkichot\r\ndonkichotský\r\ndonkichotství\r\ndonkichotův\r\ndonominování\r\ndonominovat\r\ndonor\r\ndonos\r\ndonosit\r\ndonosný\r\ndonošení\r\ndonošený\r\nDoňov\r\ndoňovský\r\ndonquijotismus\r\ndonquijotský\r\ndonský\r\ndonucení\r\ndonucený\r\ndonucovací\r\ndonucování\r\ndonucovaný\r\ndonucovat\r\ndonucující\r\ndonutit\r\ndonýt\r\ndonytí\r\ndonýtovanější\r\ndonýtování\r\ndonýtovaný\r\ndonýtovat\r\ndoobědvat\r\ndoobjednání\r\ndoobjednaný\r\ndoobjednat\r\ndoobjednávání\r\ndoobjednávaný\r\ndoobjednávat\r\ndoobkládanější\r\ndoobkládání\r\ndoobkládaný\r\ndoobkládat\r\ndooblékání\r\ndooblékaný\r\ndooblékat\r\ndoobsadit\r\ndoobsazení\r\ndoobsazený\r\ndoočkovat\r\ndooději\r\ndooděju\r\ndooděl\r\ndooděnější\r\ndoodění\r\ndooděn\r\ndooděný\r\ndoodepíši\r\ndoodepíšu\r\ndoodepsal\r\ndoodepsán\r\ndoodepsat\r\ndoodhalení\r\ndoodhalený\r\ndoodhalit\r\ndoodít\r\ndoohřání\r\ndoohřát\r\ndoohřátý\r\ndookorání\r\ndookoraný\r\ndookorat\r\ndoolejování\r\ndoolejovaný\r\ndoolejovat\r\ndoomračování\r\ndoomračovaný\r\ndoomračovat\r\ndoondulování\r\ndoondulovaný\r\ndoondulovat\r\ndoopravdický\r\ndoopravdičtější\r\ndoopravdy\r\ndoopravení\r\ndoopravený\r\ndoopravit\r\ndoorání\r\ndooraný\r\ndoorat\r\ndoordinovanější\r\ndoordinování\r\ndoordinovaný\r\ndooscilovat\r\ndoosídlencův\r\ndoosídlenec\r\ndoosídlit\r\ndoosidlovat\r\ndoosídlovat\r\ndoostření\r\ndoostřený\r\ndoostřit\r\ndoostřování\r\ndoostřovaný\r\ndoostřovat\r\ndoostřovávat\r\ndoosvěžování\r\ndoosvěžovaný\r\ndoosvěžovat\r\ndootevírat\r\ndootevření\r\ndootevřený\r\ndootevřít\r\ndopáčení\r\ndopáčený\r\ndopáčit\r\ndopadající\r\ndopadanější\r\ndopadání\r\ndopadaný\r\ndopadat\r\ndopadávání\r\ndopadávaný\r\ndopadávat\r\ndopadení\r\ndopaden\r\ndopadený\r\ndopad\r\ndopádlovat\r\ndopadnout\r\ndopadnutí\r\ndopadový\r\ndopajdání\r\ndopajdat\r\ndopájení\r\ndopálenější\r\ndopálení\r\ndopálený\r\ndopal\r\ndopálit\r\ndopalovanější\r\ndopalovaní\r\ndopalování\r\ndopalovaný\r\ndopalovat\r\ndopalovávání\r\ndopalovávaný\r\ndopalovávat\r\ndopalující\r\ndopancéřování\r\ndopancéřovaný\r\ndopancéřovat\r\ndopancéřovávat\r\ndopanování\r\ndopapání\r\ndopapaný\r\ndopapat\r\ndopapinkat\r\ndopapouškování\r\ndopapouškovaný\r\ndopapouškovat\r\ndopárání\r\ndopáraný\r\ndopárat\r\ndoparfemovanější\r\ndoparfemovaný\r\ndoparfemovat\r\ndoparketovaný\r\ndoparketovat\r\ndopářeme\r\ndopáře\r\ndopářeš\r\ndopářete\r\ndopářou\r\ndopářu\r\ndopasování\r\ndopatlanější\r\ndopatlání\r\ndopatlaný\r\ndopatlat\r\ndopatlávání\r\ndopatlávaný\r\ndopatlávat\r\ndopátrání\r\ndopátraný\r\ndopátrat\r\ndopátrávání\r\ndopátrávat\r\ndopéct\r\ndopečenější\r\ndopečení\r\ndopečený\r\ndopečetěný\r\ndopečeťovaný\r\ndopékání\r\ndopékaný\r\ndopékat\r\ndopelichání\r\ndopěnění\r\ndopěněný\r\ndopění\r\ndopěnit\r\ndopěňování\r\ndopěňovat\r\ndopepření\r\ndopepřený\r\ndopepřit\r\ndoperlení\r\ndoperlit\r\ndopérování\r\ndopeskovat\r\ndopěstování\r\ndopět\r\ndopídění\r\ndopídit\r\ndopíjenější\r\ndopíjení\r\ndopíjený\r\ndopíjet\r\ndopilování\r\ndopilovaný\r\ndopilovat\r\ndopilovávání\r\ndopilovávaný\r\ndopilovávat\r\ndopínání\r\ndopínaný\r\ndopínat\r\ndoping\r\ndopingový\r\ndopinkat\r\ndopink\r\ndopinožení\r\ndopinožit\r\ndopípání\r\ndopípaný\r\ndopípat\r\ndopiplání\r\ndopiplaný\r\ndopiplat\r\ndopis\r\ndopískanější\r\ndopískání\r\ndopískaný\r\ndopískat\r\ndopisnice\r\ndopisní\r\ndopisovaččin\r\ndopisovačka\r\ndopisovač\r\ndopisovačův\r\ndopisovanější\r\ndopisování\r\ndopisovaný\r\ndopisovat\r\ndopisovatelčin\r\ndopisovatelka\r\ndopisovatel\r\ndopisovatelův\r\ndopisový\r\ndopisující\r\ndopíši\r\ndopištění\r\ndopištěný\r\ndopištět\r\ndopíšu\r\ndopít\r\ndopitější\r\ndopití\r\ndopit\r\ndopitý\r\ndopitý\r\ndopižlání\r\ndopižlaný\r\ndopižlat\r\ndoplácání\r\ndoplácaný\r\ndoplácat\r\ndoplácející\r\ndoplacenější\r\ndoplácenější\r\ndoplacení\r\ndoplácení\r\ndoplacený\r\ndoplácený\r\ndoplácet\r\ndoplachtění\r\ndoplachtit\r\ndoplakající\r\ndoplakanější\r\ndoplakání\r\ndoplakaný\r\ndoplakat\r\ndoplakávání\r\ndoplakávat\r\ndoplandání\r\ndoplandat\r\ndoplánování\r\ndoplánovat\r\ndoplápolání\r\ndoplápolaný\r\ndoplápolat\r\ndoplašení\r\ndoplašený\r\ndoplašit\r\ndoplatek\r\ndoplatit\r\ndoplátkování\r\ndoplátkovaný\r\ndoplátkovat\r\ndoplatkový\r\ndoplavání\r\ndoplavat\r\ndoplavávání\r\ndoplavávat\r\ndoplavejme\r\ndoplavej\r\ndoplavejte\r\ndoplavení\r\ndoplavený\r\ndoplavit\r\ndoplazení\r\ndoplazit\r\ndoplechování\r\ndoplechovaný\r\ndoplechovat\r\ndoplechovávání\r\ndoplechovávaný\r\ndoplechovávat\r\ndopleji\r\ndoplel\r\ndoplení\r\ndoplesnivět\r\ndoplést\r\ndoplétání\r\ndoplétaný\r\ndoplétat\r\ndopletější\r\ndopletení\r\ndopletený\r\ndopletí\r\ndoplet\r\ndopletý\r\ndopletý\r\ndoplít\r\ndoplivání\r\ndoplivaný\r\ndoplivat\r\ndoplížení\r\ndoplížit\r\ndoplkat\r\ndoplněk\r\ndoplněnější\r\ndoplnění\r\ndoplněný\r\ndoplnit\r\ndoplnitelnější\r\ndoplnitelný\r\ndoplňkovější\r\ndoplňkový\r\ndoplňovací\r\ndoplňovačka\r\ndoplňování\r\ndoplňovaný\r\ndoplňovat\r\ndoplňovatelný\r\ndoplňující\r\ndoplňující\r\ndoplodit\r\ndoplouhání\r\ndoplouhaný\r\ndoplouhat\r\ndoplout\r\ndoplouvání\r\ndoplouvaný\r\ndoplouvat\r\ndoploužení\r\ndoploužit\r\ndoplození\r\ndoplozený\r\ndoplutí\r\ndoplutý\r\ndopluženější\r\ndoplužení\r\ndoplužený\r\ndoplužit\r\ndoplynutí\r\ndoplýtvání\r\ndoplýtvaný\r\ndoplýtvat\r\ndoplýtvávání\r\ndoplýtvávat\r\ndopnout\r\ndopnutější\r\ndopnutí\r\ndopnutý\r\ndopočet\r\ndopočíst\r\ndopočítání\r\ndopočítaný\r\ndopočitatelnější\r\ndopočítat\r\ndopočítávající\r\ndopočítávání\r\ndopočítávaný\r\ndopočítávat\r\ndopočtený\r\ndopodkuřovávat\r\ndopodrobna\r\ndopohlavkovat\r\ndopochodování\r\ndopochodovaný\r\ndopochodovat\r\ndopokládanější\r\ndopokládání\r\ndopokládaný\r\ndopokládat\r\ndopola\r\ndopoledne\r\ndopoledne\r\ndopolední\r\ndopolemizování\r\ndopolemizovaný\r\ndopolemizovat\r\ndopomáhající\r\ndopomáhání\r\ndopomáhat\r\ndopomoci\r\ndopomocích\r\ndopomocím\r\ndopomoc\r\ndopomozme\r\ndopomoz\r\ndopomozte\r\ndoportování\r\ndoportovaný\r\ndoportovat\r\ndoportovávání\r\ndoportovávaný\r\ndoportovávat\r\ndoporučenější\r\ndoporučeníhodnější\r\ndoporučeníhodný\r\ndoporučení\r\ndoporučenka\r\ndoporučený\r\ndoporučit\r\ndoporučitelnější\r\ndoporučitelný\r\ndoporučování\r\ndoporučovaný\r\ndoporučovaný\r\ndoporučovat\r\ndoporučovatelčin\r\ndoporučovatelka\r\ndoporučovatel\r\ndoporučovatelův\r\ndoporučující\r\ndoposavad\r\ndoposledka\r\ndoposlechnout\r\ndoposlechnutější\r\ndoposlechnutí\r\ndoposlechnutý\r\ndoposlechnutý\r\ndoposud\r\ndopotácení\r\ndopotácet\r\ndopouštějící\r\ndopouštěnější\r\ndopouštění\r\ndopouštěný\r\ndopouštět\r\ndopovací\r\ndopování\r\ndopovat\r\ndopovědění\r\ndopověděný\r\ndopovědět\r\ndopovězen\r\ndopovězený\r\ndopovídanější\r\ndopovídání\r\ndopovídaný\r\ndopovídat\r\ndopplerovský\r\ndopracovanější\r\ndopracování\r\ndopracovaný\r\ndopracovat\r\ndopracovávanější\r\ndopracovávání\r\ndopracovávaný\r\ndopracovávat\r\ndopranější\r\ndoprání\r\ndopraný\r\ndoprášenější\r\ndoprášení\r\ndoprášený\r\ndoprášit\r\ndoprat\r\ndoprava\r\ndoprava\r\ndopravce\r\ndopravcův\r\ndopravení\r\ndopravený\r\ndopravit\r\ndopravitelnější\r\ndopravitelný\r\ndopravné\r\ndopravník\r\ndopravníkový\r\ndopravní\r\ndopravní\r\ndopravování\r\ndopravovaný\r\ndopravovat\r\ndopravovování\r\ndopravovovaný\r\ndopravovovat\r\ndopravující\r\ndopražení\r\ndopražený\r\ndopražit\r\ndoprivatizování\r\ndoprivatizovaný\r\ndoprivatizovat\r\ndoprivatizovávání\r\ndoprivatizovávaný\r\ndoprivatizovávat\r\ndoprodání\r\ndoprodaný\r\ndoprodat\r\ndoprodávající\r\ndoprodávání\r\ndoprodávaný\r\ndoprodávat\r\ndoprodejní\r\ndoprodej\r\ndoprofilovat\r\ndoprogramovanější\r\ndoprogramování\r\ndoprogramovaný\r\ndoprogramovat\r\ndoprogramovávání\r\ndoprogramovávaný\r\ndoprogramovávat\r\ndoprokládanější\r\ndoprokládání\r\ndoprokládaný\r\ndoprokládat\r\ndopromazat\r\ndopromítání\r\ndopromítaný\r\ndopromítat\r\ndoprosení\r\ndoprosený\r\ndoprosit\r\ndoprostřed\r\ndoprošení\r\ndoprošování\r\ndoprošovaný\r\ndoprošovat\r\ndoprovázání\r\ndoprovázaný\r\ndoprovázat\r\ndoprovázeč\r\ndoprovázečův\r\ndoprovázející\r\ndoprovázenější\r\ndoprovázení\r\ndoprovázený\r\ndoprovázet\r\ndoprovázívat\r\ndoprovod\r\ndoprovodit\r\ndoprovodnější\r\ndoprovodní\r\ndoprovodný\r\ndoprovokování\r\ndoprovokovaný\r\ndoprovokovat\r\ndoprovokovávání\r\ndoprovokovávaný\r\ndoprovokovávat\r\ndoprovozenější\r\ndoprovození\r\ndoprovozený\r\ndoprskat\r\ndoprskávání\r\ndoprskávaný\r\ndoprskávat\r\ndopršení\r\ndopršet\r\ndopružení\r\ndopružit\r\ndoprýštění\r\ndoprýštěný\r\ndoprýštit\r\ndopřádací\r\ndopřádání\r\ndopřádaný\r\ndopřádat\r\ndopřání\r\ndopřaný\r\ndopřát\r\ndopřávající\r\ndopřávání\r\ndopřávaný\r\ndopřávat\r\ndopředenější\r\ndopředení\r\ndopředen\r\ndopředený\r\ndopřednášení\r\ndopřednášený\r\ndopřednášet\r\ndopředný\r\ndopředu\r\ndopřekládanější\r\ndopřekládání\r\ndopřekládaný\r\ndopřekládat\r\ndopřikládanější\r\ndopřikládání\r\ndopřikládaný\r\ndopřikládat\r\ndopřímení\r\ndopřímený\r\ndopřímit\r\ndopříst\r\ndopsal\r\ndopsanější\r\ndopsanější\r\ndopsání\r\ndopsán\r\ndopsaný\r\ndopsáný\r\ndopsat\r\ndoptání\r\ndoptaný\r\ndoptat\r\ndoptávání\r\ndoptávaný\r\ndoptávat\r\ndopučení\r\ndopučený\r\ndopučet\r\ndopudrování\r\ndopudrovaný\r\ndopudrovat\r\ndopuchnout\r\ndopuchnutí\r\ndopující\r\ndopulsování\r\ndopulsovat\r\ndopulzování\r\ndopulzovat\r\ndopumpovat\r\ndopustit\r\ndopuštěnější\r\ndopuštění\r\ndopuštěný\r\ndoputování\r\ndoputovaný\r\ndoputovat\r\ndopýření\r\ndopýřit\r\ndoradění\r\ndoraděný\r\ndoradit\r\ndoradování\r\ndoradovat\r\ndorámovat\r\ndorámusení\r\ndorámusit\r\ndorapování\r\ndorapovat\r\ndorašení\r\ndorašený\r\ndorašit\r\ndoraz\r\ndorazit\r\ndorazítkovat\r\ndorazivší\r\ndorazový\r\nDora\r\ndorážející\r\ndoražení\r\ndorážení\r\ndoražený\r\ndorážený\r\ndorážet\r\ndorážka\r\ndoredukovat\r\ndoregulování\r\ndoregulovaný\r\ndoregulovat\r\ndoregulovávání\r\ndoregulovávaný\r\ndoregulovávat\r\ndorekonstruování\r\ndoremcat\r\ndorenderovat\r\ndorendrovat\r\ndorentgenovat\r\ndoresonovat\r\ndoretušování\r\ndoretušovaný\r\ndoretušovat\r\ndoretušovávání\r\ndoretušovávaný\r\ndoretušovávat\r\ndorezonovat\r\ndoriskování\r\ndoriskovat\r\ndorodit\r\ndorolovat\r\ndoroněnější\r\ndoronění\r\ndoroněný\r\ndoronící\r\ndoronit\r\ndorostencův\r\ndorostenčin\r\ndorostenecký\r\ndorostenec\r\ndorostenečtější\r\ndorostenka\r\ndorost\r\ndorostlejší\r\ndorostl\r\ndorostlý\r\ndorostovější\r\ndorostový\r\ndorostu\r\nDorota\r\nDorotčin\r\ndorotčin\r\nDorotin\r\nDorotka\r\ndorotka\r\ndorotování\r\ndorotovaný\r\ndorotovat\r\ndoroubování\r\ndoroubovaný\r\ndoroubovat\r\ndorouhání\r\ndorouhat\r\ndorovnání\r\ndorovnaný\r\ndorovnat\r\ndorovnávání\r\ndorovnávaný\r\ndorovnávat\r\ndorozdělení\r\ndorozdělený\r\ndorozdělit\r\ndorozdělování\r\ndorození\r\ndorozený\r\ndorozkládanější\r\ndorozkládání\r\ndorozkládaný\r\ndorozkládat\r\ndorozmazat\r\ndorozmazávanější\r\ndorozmazávaný\r\ndorozumění\r\ndorozumět\r\ndorozumívací\r\ndorozumívání\r\ndorozumívat\r\ndorozumovat\r\nDorset\r\ndórský\r\ndort\r\ndortík\r\nDortmund\r\ndortmundský\r\ndortový\r\ndorubání\r\ndorubaný\r\ndorubat\r\ndorubávání\r\ndorubávaný\r\ndorubávat\r\ndorubu\r\ndoručenější\r\ndoručení\r\ndoručenka\r\ndoručený\r\ndoručit\r\ndoručitelčin\r\ndoručitelka\r\ndoručitelnější\r\ndoručitelný\r\ndoručitel\r\ndoručitelův\r\ndoručovací\r\ndoručovanější\r\ndoručování\r\ndoručovaný\r\ndoručovat\r\ndoručovatelčin\r\ndoručovatelka\r\ndoručovatelský\r\ndoručovatelství\r\ndoručovatel\r\ndoručovatelův\r\ndoručující\r\ndorůstající\r\ndorůstání\r\ndorůstat\r\ndorůst\r\nDorušáková\r\nDorušák\r\nDorušákův\r\ndorůžova\r\ndorvanější\r\ndorvaní\r\ndorvání\r\ndorvaný\r\ndorvat\r\ndorvávání\r\ndorvávaný\r\ndorvávat\r\ndorychlování\r\ndorýmovat\r\ndorýpání\r\ndorýpaný\r\ndorýpat\r\ndorýpávání\r\ndorýpávaný\r\ndorýpávat\r\ndorýsování\r\ndorýsovaný\r\ndorýsovat\r\ndorýt\r\ndorytější\r\ndorytí\r\ndorytý\r\ndorývání\r\ndorývaný\r\ndorývat\r\ndorzální\r\ndořčen\r\ndořečení\r\ndořečen\r\ndořečený\r\ndoředění\r\ndoředěný\r\ndoředit\r\ndořekl\r\ndořeknout\r\ndořeknu\r\ndořeknutí\r\ndořeknut\r\ndořeknutý\r\ndořeknuv\r\ndořešenější\r\ndořešení\r\ndořešený\r\ndořešit\r\ndořezanější\r\ndořezání\r\ndořezaný\r\ndořezat\r\ndořezávající\r\ndořezávanější\r\ndořezávání\r\ndořezávaný\r\ndořezávat\r\ndořezba\r\ndořez\r\ndoříci\r\ndoříct\r\ndořičení\r\ndořičet\r\ndoříhání\r\ndoříhat\r\ndoříkání\r\ndoříkaný\r\ndoříkat\r\ndořinčení\r\ndořinčený\r\ndořinčet\r\nDořin\r\ndoříznout\r\ndoříznutější\r\ndoříznutí\r\ndoříznutý\r\ndoříznutý\r\ndořvání\r\ndořvat\r\ndořvávání\r\ndořvávaný\r\ndořvávat\r\nDOS\r\ndosadba\r\ndosadit\r\ndosádrování\r\ndosádrovaný\r\ndosádrovat\r\ndosah\r\ndosáhnout\r\ndosáhnutí\r\ndosahování\r\ndosahovaný\r\ndosahovat\r\ndosahující\r\ndosálání\r\ndosálaný\r\ndosálat\r\ndosání\r\ndosáňkovat\r\ndosát\r\ndosát\r\ndosátý\r\ndosavad\r\ndosavadní\r\ndosázenější\r\ndosazení\r\ndosázení\r\ndosazený\r\ndosázený\r\ndosázet\r\ndosazovací\r\ndosazovanější\r\ndosazování\r\ndosazovaný\r\ndosazovat\r\ndosažení\r\ndosažený\r\ndosažitelnější\r\ndosažitelno\r\ndosažitelný\r\ndosažný\r\ndosbírání\r\ndosbíraný\r\ndosbírat\r\ndosečení\r\ndosečen\r\ndosečený\r\ndoseču\r\ndosedací\r\ndosedající\r\ndosedání\r\ndosedat\r\ndosedávání\r\ndosedávat\r\nDosedělová\r\nDoseděl\r\nDosedělův\r\ndosedění\r\ndoseděný\r\ndosedět\r\nDosedlová\r\nDosedl\r\nDosedlův\r\ndosedlý\r\ndosednout\r\ndosednutí\r\ndoseji\r\ndosekanější\r\ndosekání\r\ndosekaný\r\ndosekat\r\ndosekávání\r\ndosekávaný\r\ndosekávat\r\ndosekl\r\ndosel\r\ndosení\r\ndosetější\r\ndosetí\r\ndoset\r\ndosetý\r\ndosetý\r\ndosévání\r\ndoshlukovat\r\ndoschnl\r\ndoschnout\r\ndoschnutí\r\ndoschůzování\r\ndoschůzovat\r\ndosíct\r\ndosídlencův\r\ndosídlenec\r\ndosídlení\r\ndosídlený\r\ndosídlit\r\ndosídlování\r\ndosídlovaný\r\ndosidlovat\r\ndosídlovat\r\ndosídlovávání\r\ndosídlovávaný\r\ndosídlovávat\r\ndosil\r\ndosimulovat\r\ndosípání\r\ndosípaný\r\ndosípat\r\ndosírat\r\ndosít\r\ndoskákanější\r\ndoskákání\r\ndoskákáno\r\ndoskákaný\r\ndoskákat\r\ndoskakování\r\ndoskakovat\r\ndoskakovávání\r\ndoskakovávaný\r\ndoskakovávat\r\ndoskakující\r\ndoskenovat\r\ndoskládanější\r\ndoskládanější\r\ndoskládání\r\ndoskládaný\r\ndoskládat\r\ndoskládávání\r\ndoskládávaný\r\ndoskládávat\r\ndosklení\r\ndosklený\r\ndosklít\r\ndoskočení\r\nDoskočilová\r\nDoskočil\r\nDoskočilův\r\ndoskočiště\r\ndoskočit\r\ndoskočnější\r\ndoskočný\r\ndoskok\r\ndoskřehotání\r\ndoskřehotaný\r\ndoskřehotat\r\ndoskřípání\r\ndoskřípat\r\ndoskřípět\r\ndoskučení\r\ndoskučet\r\ndoskuhrání\r\ndoskuhrat\r\ndosladit\r\ndoslání\r\ndoslaný\r\ndoslat\r\ndoslavení\r\ndoslavený\r\ndoslavit\r\ndoslazení\r\ndoslazený\r\ndoslazování\r\ndoslazovaný\r\ndoslazovat\r\ndosled\r\ndosledování\r\ndosledovaný\r\ndosledovat\r\ndoslech\r\ndoslechnout\r\ndoslechnutější\r\ndoslechnutí\r\ndoslechnutý\r\ndoslechnutý\r\ndosloužení\r\ndosloužený\r\ndosloužit\r\ndoslova\r\ndoslov\r\ndoslovnější\r\ndoslovný\r\ndoslovování\r\ndoslovovaný\r\ndoslovovat\r\ndoslovující\r\ndosluhování\r\ndosluhovat\r\ndosluhující\r\ndoslýchavý\r\ndoslzení\r\ndoslzet\r\ndosmání\r\ndosmát\r\ndosmažení\r\ndosmažený\r\ndosmažit\r\ndosmečování\r\ndosmečovaný\r\ndosmečovat\r\ndosměrovanější\r\ndosměrování\r\ndosměrovaný\r\ndosměrovat\r\ndosměrovatelnější\r\ndosměrovatelný\r\ndosměrovávání\r\ndosměrovávaný\r\ndosměrovávat\r\ndosmolení\r\ndosmolený\r\ndosmolit\r\ndosmrdění\r\ndosmrdět\r\ndosmrkávání\r\ndosmrkávaný\r\ndosmrkávat\r\ndosmýčení\r\ndosmýčený\r\ndosmýčit\r\ndosmýkání\r\ndosmýkaný\r\ndosmýkat\r\ndosmýknout\r\ndosmýknutí\r\ndosnění\r\ndosněný\r\ndosněžení\r\ndosněžit\r\ndosněžovaný\r\ndosnídáníčko\r\ndosnídání\r\ndosnídaný\r\ndosnídat\r\ndosnídávání\r\ndosnídávaný\r\ndosnídávat\r\ndosnít\r\ndosochání\r\ndosochaný\r\ndosochat\r\ndosolenější\r\ndosolení\r\ndosolený\r\ndosolit\r\ndosolovat\r\ndosomrování\r\ndosomrovat\r\ndososání\r\ndososaný\r\ndososat\r\ndosoudit\r\ndosoukání\r\ndosoukaný\r\ndosoukat\r\ndosoukávání\r\ndosoukávaný\r\ndosoukávat\r\ndosoupeření\r\ndosoupeřený\r\ndosoupeřit\r\ndosoustružení\r\ndosoustružený\r\ndosoustružit\r\ndosoušení\r\ndosoušený\r\ndosoušet\r\ndosouzenější\r\ndosouzení\r\ndosouzený\r\ndosoužení\r\ndosoužený\r\ndosoužit\r\ndospalejší\r\ndospalý\r\ndospanější\r\ndospání\r\ndospaný\r\ndospat\r\ndospávání\r\ndospávaný\r\ndospávat\r\ndospělcův\r\ndospělec\r\ndospělejší\r\ndospělý\r\ndospělý\r\ndospění\r\ndospět\r\ndospílání\r\ndospílaný\r\ndospílat\r\ndospinkat\r\ndospívající\r\ndospívání\r\ndospívat\r\ndospod\r\ndospodu\r\ndospoření\r\ndospořený\r\ndospořit\r\ndospurtování\r\ndospurtovat\r\ndosrat\r\ndosrkání\r\ndosrkaný\r\ndosrkat\r\ndosršení\r\ndosršet\r\ndossier\r\ndossierův\r\ndost\r\ndostačení\r\ndostačit\r\ndostačivost\r\ndostačování\r\ndostačovat\r\ndostačující\r\nDostálek\r\nDostálíková\r\nDostálík\r\nDostálíkův\r\nDostálková\r\nDostálkův\r\ndostál\r\nDostalová\r\nDostálová\r\nDostal\r\nDostál\r\nDostalův\r\nDostálův\r\ndostaní\r\ndostání\r\ndostartování\r\ndostat\r\ndostatečnější\r\ndostatečný\r\ndostatek\r\ndostatek\r\ndostát\r\ndostatkovější\r\ndostatkový\r\ndostávající\r\ndostávání\r\ndostávat\r\ndostavba\r\ndostaveníčko\r\ndostavení\r\ndostavění\r\ndostavený\r\ndostavěný\r\ndostavět\r\ndostavit\r\ndostavník\r\ndostavníkový\r\ndostavovanější\r\ndostavování\r\ndostavovaný\r\ndostavovat\r\ndostavující\r\ndostehování\r\ndostěhování\r\ndostehovaný\r\ndostěhovaný\r\ndostehovat\r\ndostěhovat\r\ndostěhovávat\r\ndostelu\r\ndostepování\r\ndostepovaný\r\ndostepovat\r\ndosti\r\ndostih\r\ndostihnout\r\ndostihnutí\r\ndostihování\r\ndostihovaný\r\ndostihovat\r\ndostihový\r\ndostínění\r\ndostiučinění\r\ndostiženější\r\ndostižení\r\ndostižený\r\ndostižitelnější\r\ndostižitelný\r\ndostižnější\r\ndostlal\r\ndostlanější\r\ndostlání\r\ndostlaný\r\ndostlat\r\nDostojevskij\r\nDostojevský\r\ndostojím\r\ndostonal\r\ndostonání\r\ndostonat\r\ndostonejme\r\ndostonej\r\ndostonejte\r\ndostoupání\r\ndostoupat\r\ndostoupení\r\ndostoupený\r\ndostoupit\r\ndostrašení\r\ndostrašený\r\nDostrašilová\r\nDostrašil\r\nDostrašilův\r\ndostrašit\r\ndostrčení\r\ndostrčený\r\ndostrčit\r\ndostrkanější\r\ndostrkání\r\ndostrkaný\r\ndostrkat\r\ndostrkávání\r\ndostrkávaný\r\ndostrkávat\r\ndostrouhající\r\ndostrouhanější\r\ndostrouhání\r\ndostrouhaný\r\ndostrouhat\r\ndostrouhávanější\r\ndostrouhávání\r\ndostrouhávaný\r\ndostrouhávat\r\ndostřádání\r\ndostřádaný\r\ndostřádat\r\ndostřečkovat\r\ndostředění\r\ndostředěný\r\ndostředit\r\ndostředivější\r\ndostředivý\r\ndostřednější\r\ndostřelenější\r\ndostřelení\r\ndostřelený\r\ndostřel\r\ndostřelit\r\ndostřelovat\r\ndostřídání\r\ndostřídaný\r\ndostřídat\r\ndostřihání\r\ndostříhání\r\ndostřihaný\r\ndostříhaný\r\ndostřihat\r\ndostříhat\r\ndostřihávání\r\ndostříhávání\r\ndostřihávaný\r\ndostříhávaný\r\ndostřihávat\r\ndostříhávat\r\ndostřihnout\r\ndostřihnutí\r\ndostřihování\r\ndostřihovaný\r\ndostřihovat\r\ndostříkání\r\ndostříkaný\r\ndostříkat\r\ndostříkávání\r\ndostříkávaný\r\ndostříkávat\r\ndostřikování\r\ndostřílení\r\ndostřílený\r\ndostřílet\r\ndostřižený\r\ndostudovanější\r\ndostudování\r\ndostudovaný\r\ndostudovat\r\ndostudovávající\r\ndostudovávání\r\ndostudovávaný\r\ndostudovávat\r\ndostudovávavanější\r\ndostudovávavání\r\ndostudovávavaný\r\ndostudující\r\ndostůjme\r\ndostůj\r\ndostůjte\r\ndostůňu\r\ndostupen\r\ndostup\r\ndostupnější\r\ndostupný\r\ndostupovat\r\ndostydění\r\ndostydět\r\ndostýlání\r\ndostýlaný\r\ndostýlat\r\ndosud\r\ndosucha\r\ndosunout\r\ndosunutí\r\ndosunutý\r\ndosupění\r\ndosupěný\r\ndosupět\r\ndosušení\r\ndosušený\r\ndosušit\r\ndosušování\r\ndosušovaný\r\ndosušovat\r\ndosvačení\r\ndosvačený\r\ndosvačit\r\ndosvěcení\r\ndosvěcený\r\ndosvědčenější\r\ndosvědčení\r\ndosvědčený\r\ndosvědčit\r\ndosvědčme\r\ndosvědč\r\ndosvědčování\r\ndosvědčovat\r\ndosvědčte\r\ndosvědčující\r\ndosvětit\r\ndosvětlání\r\ndosvětlat\r\ndosvícení\r\ndosvištění\r\ndosvištět\r\ndosvítění\r\ndosvit\r\ndosvítit\r\ndosvitnout\r\ndosvitnutí\r\ndosvrbět\r\ndosycení\r\ndosycovaný\r\ndosyčení\r\ndosyčený\r\ndosyčet\r\ndosýčkovat\r\ndosychat\r\ndosýchat\r\ndosypající\r\ndosypanější\r\ndosypání\r\ndosýpání\r\ndosypaný\r\ndosýpaný\r\ndosypat\r\ndosýpat\r\ndosypávající\r\ndosypávanější\r\ndosypávání\r\ndosypávaný\r\ndosypávat\r\ndosyta\r\ndosytit\r\ndosytosti\r\ndošamponovat\r\ndošaškování\r\ndošaškovat\r\nDošek\r\ndošek\r\ndošelestit\r\ndošel\r\ndošermovat\r\ndošetření\r\ndošetřený\r\ndošetřit\r\ndošetřování\r\ndošetřovaný\r\ndošetřovat\r\ndošetřovávat\r\ndoševelit\r\ndošikanování\r\ndošikanovaný\r\ndošikanovat\r\ndošílení\r\ndošílet\r\ndošilhání\r\ndošilhat\r\ndošilhávání\r\ndošilhávat\r\ndoširoka\r\ndošišlání\r\ndošišlaný\r\ndošišlat\r\ndošít\r\ndošitější\r\ndošití\r\ndošitý\r\ndošitý\r\ndošívanější\r\ndošívání\r\ndošívaný\r\ndošívat\r\ndošizení\r\ndoškálný\r\ndoškaredění\r\ndoškaredit\r\ndoškatulkovat\r\ndoškemrání\r\ndoškemrat\r\ndoškobrtání\r\ndoškobrtat\r\ndoškolení\r\ndoškolený\r\ndoškolit\r\ndoškolovací\r\ndoškolování\r\ndoškolovat\r\ndoškorpení\r\ndoškorpený\r\ndoškorpit\r\nDošková\r\ndoškový\r\ndoškrabající\r\ndoškrábající\r\ndoškrabanější\r\ndoškrábanější\r\ndoškrabání\r\ndoškrábání\r\ndoškrabaný\r\ndoškrábaný\r\ndoškrabat\r\ndoškrábat\r\ndoškrabávání\r\ndoškrabávaný\r\ndoškrabávat\r\ndoškrábnout\r\ndoškrábnutější\r\ndoškrábnutí\r\ndoškrábnutý\r\ndoškrábnutý\r\ndoškrabování\r\ndoškrabovaný\r\ndoškrabovat\r\ndoškrcení\r\ndoškrtání\r\ndoškrtaný\r\ndoškrtat\r\ndoškrtávání\r\ndoškrtávaný\r\ndoškrtávat\r\ndoškubání\r\ndoškubaný\r\ndoškubat\r\ndoškubávání\r\ndoškubávaný\r\ndoškubávat\r\ndoškubu\r\nDoškův\r\ndoškvařený\r\ndoškvařit\r\ndoškvařovaný\r\ndoškvařovat\r\ndoškytat\r\ndošlapání\r\ndošlapaný\r\ndošlapat\r\ndošlápnout\r\ndošlápnutí\r\ndošlápnutý\r\ndošlapování\r\ndošlapovat\r\ndošlehání\r\ndošlehaný\r\ndošlehat\r\ndošlejší\r\ndošlukovat\r\ndošlý\r\ndošlý\r\ndošmátrání\r\ndošmátraný\r\ndošmátrat\r\ndošmejdění\r\ndošmejdit\r\ndošmudlat\r\ndošňupání\r\ndošňupaný\r\ndošňupat\r\ndošoupání\r\ndošoupaný\r\ndošoupat\r\ndošourání\r\ndošourat\r\ndošpendlení\r\ndošpendlený\r\ndošpendlit\r\ndošpendlovat\r\ndošpinění\r\ndošpiněný\r\ndošpinit\r\ndošpitání\r\ndošpitaný\r\ndošpitat\r\ndošplhání\r\ndošplhaný\r\ndošplhat\r\ndošplhávání\r\ndošplhávat\r\ndošplíchat\r\ndošplouchání\r\ndošplouchaný\r\ndošplouchat\r\ndošponovat\r\ndošprtání\r\ndošprtat\r\ndošroubování\r\ndošroubovaný\r\ndošroubovat\r\ndošroubovávání\r\ndošroubovávaný\r\ndošroubovávat\r\ndošťárání\r\ndošťáraný\r\ndošťárat\r\ndoštěbetání\r\ndoštěbetat\r\ndoštěbotání\r\ndoštěbotat\r\ndoštěkání\r\ndoštěkaný\r\ndoštěkat\r\ndoštepování\r\ndoštepovaný\r\ndoštepovat\r\ndoštípání\r\ndoštípaný\r\ndoštípat\r\ndoštipování\r\ndoštipovaný\r\ndoštipovat\r\ndoštkat\r\ndoštosování\r\ndoštosovaný\r\ndoštosovat\r\ndošťouchání\r\ndošťouchaný\r\ndošťouchat\r\ndošťouchávání\r\ndošťouchávaný\r\ndošťouchávat\r\ndošťouchnout\r\ndošťouchnutí\r\ndošťouchnutý\r\ndošťourání\r\ndošťouraný\r\ndošťourat\r\ndoštrachání\r\ndoštrachaný\r\ndoštrachat\r\ndoštukování\r\ndoštukovaný\r\ndoštukovat\r\ndoštupování\r\ndoštupovaný\r\ndoštupovat\r\ndošukání\r\ndošukaný\r\ndošukat\r\ndošuškat\r\ndošvařený\r\ndošvihat\r\ndošvindlovat\r\ndotace\r\ndotáčení\r\ndotáčený\r\ndotáčet\r\ndotáčivý\r\ndotáčka\r\ndotační\r\ndotahání\r\ndotahaný\r\ndotahat\r\ndotah\r\ndotáhnout\r\ndotáhnutí\r\ndotahovanější\r\ndotahování\r\ndotahovaný\r\ndotahovat\r\ndotahovávání\r\ndotahovávaný\r\ndotahovávat\r\ndotahující\r\ndoťal\r\ndotancování\r\ndotančení\r\ndotančený\r\ndotančit\r\ndotání\r\ndotankovat\r\ndotankovávání\r\ndotankovávaný\r\ndotankovávat\r\ndotaný\r\ndotápání\r\ndotápat\r\ndoťapat\r\ndotapetování\r\ndotapetovaný\r\ndotapetovat\r\ndotapetovávání\r\ndotapetovávaný\r\ndotapetovávat\r\ndoťapkání\r\ndoťapkat\r\ndoťápnout\r\ndoťápnutí\r\ndoťápnutý\r\ndotát\r\ndoťat\r\ndoťatý\r\ndotavení\r\ndotavený\r\ndotavit\r\ndoťav\r\ndotázání\r\ndotázaný\r\ndotázat\r\ndotaz\r\ndotazník\r\ndotazníkový\r\ndotazovací\r\ndotazování\r\ndotazovaný\r\ndotazovat\r\ndotazový\r\ndotazující\r\ndotaženější\r\ndotažení\r\ndotažený\r\ndotáži\r\ndotažitelnější\r\ndotažitelný\r\ndotažnice\r\ndotčenější\r\ndotčení\r\ndotčený\r\ndotéct\r\ndotečkovat\r\ndoteď\r\ndotékající\r\ndotékání\r\ndotěkání\r\ndotěkaný\r\ndotékat\r\ndotěkat\r\ndotek\r\ndoteklejší\r\ndoteklý\r\ndotekový\r\ndotelefonování\r\ndotelefonovat\r\ndotepanější\r\ndotepání\r\ndotepaný\r\ndotepat\r\ndotepávání\r\ndotepávaný\r\ndotepávat\r\ndotepu\r\ndotěra\r\ndotěravý\r\ndotěrnější\r\ndotěrný\r\ndotěrův\r\ndotesknění\r\ndotesknit\r\ndotěsnění\r\ndotěsněný\r\ndotěsnit\r\ndotestovanější\r\ndotestování\r\ndotestovaný\r\ndotestovat\r\ndotestovávání\r\ndotestovávaný\r\ndotestovávat\r\ndotěšení\r\ndotěšit\r\ndotětí\r\ndotetování\r\ndotetovaný\r\ndotetovat\r\ndotěžení\r\ndotěžený\r\ndotěžit\r\ndotikání\r\ndotikat\r\ndotikávání\r\ndotikávat\r\ndotírající\r\ndotíraní\r\ndotírání\r\ndotíraný\r\ndotírat\r\ndotíravější\r\ndotíravý\r\ndotisk\r\ndotisknout\r\ndotisknutí\r\ndotisknutý\r\ndotiskování\r\ndotiskovat\r\ndotištění\r\ndotištěný\r\ndotít\r\ndotitulkovat\r\ndotkanější\r\ndotkání\r\ndotkaný\r\ndotkat\r\ndotkávanější\r\ndotkávání\r\ndotkávaný\r\ndotkávat\r\ndotknout\r\ndotknutelnější\r\ndotknutelný\r\ndotknutí\r\ndotknutý\r\ndotlačení\r\ndotlačený\r\ndotlačit\r\ndotlačovanější\r\ndotlačování\r\ndotlačovaný\r\ndotlačovat\r\ndotlachání\r\ndotlachaný\r\ndotlachat\r\ndotlouct\r\ndotloukanější\r\ndotloukání\r\ndotloukaný\r\ndotloukat\r\ndotloukávanější\r\ndotloukávání\r\ndotloukávaný\r\ndotloukávat\r\ndotlučenější\r\ndotlučení\r\ndotlučený\r\ndotlumenější\r\ndotlumení\r\ndotlumený\r\ndotlumit\r\ndotlumočení\r\ndotlumočený\r\ndotlumočit\r\ndotmelovat\r\ndotnout\r\ndotnu\r\ndotnutí\r\ndotočení\r\ndotočený\r\ndotočit\r\ndotokat\r\ndotopenější\r\ndotopení\r\ndotopený\r\ndotopit\r\ndotoulání\r\ndotoulat\r\ndotoužení\r\ndotoužit\r\ndotování\r\ndotovaný\r\ndotovat\r\ndotransformování\r\ndotransformovaný\r\ndotransformovat\r\ndotransformovávat\r\ndotransportovanější\r\ndotransportování\r\ndotransportovaný\r\ndotransportovat\r\ndotransportovávání\r\ndotransportovávaný\r\ndotransportovávat\r\ndotrápení\r\ndotrápený\r\ndotrápit\r\ndotrávení\r\ndotrávený\r\ndotrávit\r\ndotra\r\ndotrénovat\r\ndotrhající\r\ndotrhanější\r\ndotrhání\r\ndotrhaný\r\ndotrhat\r\ndotrhávající\r\ndotrhávanější\r\ndotrhávání\r\ndotrhávaný\r\ndotrhávat\r\ndotrhnout\r\ndotrhnutější\r\ndotrhnutí\r\ndotrhnutý\r\ndotrmácení\r\ndotrnout\r\ndotrnutí\r\ndotrnutý\r\ndotrpění\r\ndotrpěný\r\ndotrpět\r\ndotrylkovat\r\ndotržení\r\ndotržený\r\ndotřásl\r\ndotřást\r\ndotřenější\r\ndotření\r\ndotřený\r\ndotřepání\r\ndotřepaný\r\ndotřepat\r\ndotřepávání\r\ndotřepávaný\r\ndotřepávat\r\ndotřepetat\r\ndotřesení\r\ndotřesen\r\ndotřesený\r\ndotřesu\r\ndotřídění\r\ndotříděný\r\ndotřídit\r\ndotřiďování\r\ndotřiďovaný\r\ndotřiďovat\r\ndotřímání\r\ndotřímaný\r\ndotřímat\r\ndotříštění\r\ndotříštěný\r\ndotříštit\r\ndotřít\r\ndotud\r\ndotující\r\ndoťuknout\r\ndoťuknutí\r\ndoťuknutý\r\ndotupení\r\ndotupený\r\ndotupit\r\ndotutlání\r\ndotutlaný\r\ndotutlat\r\ndotužení\r\ndotvarování\r\ndotvarovat\r\ndotvářející\r\ndotvářenější\r\ndotváření\r\ndotvářený\r\ndotvářet\r\ndotvořenější\r\ndotvoření\r\ndotvořený\r\ndotvořit\r\ndotvrdit\r\ndotvrdnutí\r\ndotvrzení\r\ndotvrzený\r\ndotvrzování\r\ndotvrzovaný\r\ndotvrzovat\r\ndotyčný\r\ndotýkající\r\ndotýkanější\r\ndotykání\r\ndotýkání\r\ndotýkaný\r\ndotykat\r\ndotýkat\r\ndotýkavý\r\ndotyk\r\ndotykovější\r\ndotykový\r\ndotýrání\r\ndotýraný\r\ndotýrat\r\ndotýt\r\ndotytí\r\nĎoubalíková\r\nĎoubalík\r\nĎoubalíkův\r\nDoubek\r\ndoubek\r\ndoubí\r\nDoubková\r\nDoubkův\r\nDoubnerová\r\nDoubner\r\nDoubnerův\r\nDoubrava\r\ndoubrava\r\nDoubravčin\r\nDoubravice\r\ndoubravický\r\nDoubravička\r\nDoubravka\r\nDoubravová\r\nDoubravský\r\nDoubravův\r\ndoučenější\r\ndoučení\r\ndoučený\r\ndoučesávání\r\ndoučesávaný\r\ndoučesávat\r\ndoučil\r\ndoučím\r\ndoučit\r\ndoučme\r\ndouč\r\ndoučovací\r\ndoučovanější\r\ndoučování\r\ndoučovaný\r\ndoučovat\r\ndoučte\r\ndoúčtovanější\r\ndoúčtování\r\ndoúčtovaný\r\ndoúčtovat\r\ndoúčtovávání\r\ndoúčtovávaný\r\ndoúčtovávat\r\ndoučující\r\nDouda\r\ndoudil\r\ndoudím\r\ndoudit\r\nDoudlebsko\r\ndoudlebský\r\nDoudleby\r\ndouďme\r\ndouď\r\nDoudová\r\ndouďte\r\nDoudův\r\ndoufající\r\ndoufání\r\ndoufáno\r\ndoufaný\r\ndoufat\r\ndoufávání\r\ndoufávat\r\ndouglaska\r\nDoucha\r\nDouchová\r\nDouchův\r\ndoukládanější\r\ndoukládání\r\ndoukládaný\r\ndoukládat\r\ndouklidit\r\ndoumírání\r\ndoumírat\r\ndoupejpání\r\ndoupejpat\r\ndoupě\r\ndoúpění\r\ndoúpět\r\ndoupňák\r\ndoupňákův\r\ndoupovksý\r\nDoupov\r\nDousek\r\ndousínání\r\ndousínat\r\nDousková\r\nDouskův\r\nDouša\r\ndoušek\r\ndouška\r\nDoušová\r\nDoušův\r\ndout\r\ndoutíkání\r\ndoutíkat\r\ndoutnající\r\ndoutnák\r\ndoutnání\r\ndoutnat\r\ndoutnávání\r\ndoutnávat\r\ndoutnavka\r\ndoutnavý\r\ndoutníček\r\ndoutník\r\ndoutníkový\r\ndoútočení\r\ndoútočit\r\ndouvažovanější\r\ndouvažování\r\ndouvažovaný\r\ndouvažovat\r\ndouvažovatelnější\r\ndouvažovatelný\r\ndouvažující\r\ndouzenější\r\ndouzení\r\ndouzený\r\ndoužívat\r\ndovádějící\r\ndovádění\r\ndovádět\r\ndovádivější\r\ndovádivý\r\ndovádivý\r\ndováhání\r\ndováhat\r\ndoválcování\r\ndoválcovávání\r\ndoválcovávaný\r\ndoválcovávat\r\ndoválčení\r\ndoválčený\r\ndoválčit\r\ndovalení\r\ndoválení\r\ndovalený\r\ndoválený\r\ndoválet\r\ndovalit\r\ndovandrovat\r\ndování\r\ndovartování\r\ndovartovat\r\ndovaření\r\ndováření\r\ndovařený\r\ndovářený\r\ndovářet\r\ndovařit\r\ndovařování\r\ndovařovat\r\ndovát\r\ndovátý\r\ndovázanější\r\ndovázání\r\ndovázaný\r\ndovázat\r\ndovázávanější\r\ndovázávání\r\ndovázávaný\r\ndovázávat\r\ndovazující\r\ndovážející\r\ndováženější\r\ndovážení\r\ndovážený\r\ndovážet\r\ndováži\r\ndovážit\r\ndovážka\r\ndovažovanější\r\ndovažování\r\ndovažovaný\r\ndovažovat\r\ndovažovatelnější\r\ndovažovatelný\r\ndovažující\r\ndovečeření\r\ndovečeřený\r\ndovečeřet\r\ndovedenější\r\ndovedení\r\ndovědění\r\ndoveden\r\ndovedený\r\ndovědět\r\ndověděti\r\ndovedl\r\ndověďme\r\ndověď\r\ndovednější\r\ndovednostní\r\ndovedný\r\ndověďte\r\ndovedu\r\ndovegetování\r\ndovegetovat\r\ndověsit\r\ndoveslování\r\ndoveslovat\r\ndovést\r\ndověšenější\r\ndověšení\r\ndověšený\r\ndověšet\r\ndověštění\r\ndověštěný\r\ndověštit\r\ndovětek\r\ndovezenější\r\ndovezení\r\ndovezený\r\ndovézt\r\ndovídání\r\ndovídat\r\ndovinutí\r\ndovírající\r\ndovíranější\r\ndovírání\r\ndovíraný\r\ndovírat\r\ndovirblovat\r\ndovíření\r\ndovířený\r\ndovířit\r\ndovít\r\ndovitější\r\ndovití\r\ndovit\r\ndovitý\r\ndovitý\r\ndovívanější\r\ndovívání\r\ndovívaný\r\ndovívat\r\ndovkládanější\r\ndovkládání\r\ndovkládaný\r\ndovkládat\r\ndovláčení\r\ndovláčený\r\ndovláčet\r\ndovládnout\r\ndovládnutí\r\ndovládnutý\r\ndovlání\r\ndovlát\r\ndovléct\r\ndovlečenější\r\ndovlečení\r\ndovlečený\r\ndovlekl\r\ndovléknout\r\ndovléknutí\r\ndovlnění\r\ndovlnit\r\ndovnitř\r\ndovodit\r\ndovojákovat\r\ndovolací\r\ndovolající\r\ndovolanější\r\ndovolání\r\ndovolaný\r\ndovolat\r\ndovolávající\r\ndovolávanější\r\ndovolávání\r\ndovolávaný\r\ndovolávat\r\ndovolenější\r\ndovolení\r\ndovolenka\r\ndovolenkový\r\ndovolený\r\ndovolit\r\ndovolování\r\ndovolovaný\r\ndovolovat\r\ndovolovávání\r\ndovolovávaný\r\ndovolovávat\r\ndovolující\r\ndovonění\r\ndovoskovat\r\ndovozce\r\ndovozcův\r\ndovození\r\ndovozený\r\ndovoz\r\ndovozit\r\ndovozkyně\r\ndovozkynin\r\ndovozné\r\ndovozní\r\ndovozování\r\ndovozovaný\r\ndovozovat\r\ndovozový\r\ndovozující\r\ndovožení\r\ndovožený\r\ndovracení\r\ndovracený\r\ndovracet\r\ndovrávorání\r\ndovrávorat\r\ndovrčení\r\ndovrčet\r\ndovrhání\r\ndovrhaný\r\ndovrhat\r\ndovrkání\r\ndovrkat\r\ndovrkávání\r\ndovrkávat\r\ndovrnění\r\ndovrnět\r\ndovršenější\r\ndovršení\r\ndovršený\r\ndovršit\r\ndovršitelčin\r\ndovršitelka\r\ndovršitel\r\ndovršitelův\r\ndovršování\r\ndovršovaný\r\ndovršovat\r\ndovršující\r\ndovrtání\r\ndovrtaný\r\ndovrtat\r\ndovrtávat\r\ndovrtět\r\ndovřenější\r\ndovření\r\ndovřený\r\ndovřeštění\r\ndovřeštěný\r\ndovřeštět\r\ndovřít\r\ndovtípení\r\ndovtípený\r\ndovtípit\r\ndovtipkovat\r\ndovtipnější\r\ndovybavení\r\ndovybavený\r\ndovybavit\r\ndovybavování\r\ndovybavovaný\r\ndovybavovat\r\ndovybírání\r\ndovybíraný\r\ndovybírat\r\ndovybrání\r\ndovybraný\r\ndovybrat\r\ndovychovat\r\ndovýchova\r\ndovyjasnění\r\ndovyjasněný\r\ndovyjasnit\r\ndovykání\r\ndovykat\r\ndovykládanější\r\ndovykládání\r\ndovykládaný\r\ndovykládat\r\ndovyklidit\r\ndovymazat\r\ndovyprávění\r\ndovyprávěný\r\ndovyprávět\r\ndovysílání\r\ndovysílaný\r\ndovysílat\r\ndovysvětlení\r\ndovysvětlený\r\ndovysvětlit\r\ndovysvětlování\r\ndovysvětlovaný\r\ndovysvětlovat\r\ndovysvětlovávání\r\ndovysvětlovávaný\r\ndovysvětlovávat\r\ndovysvětlující\r\ndovýt\r\ndovytí\r\ndovytvořit\r\ndovyvinout\r\ndovyvinutí\r\ndovyvinutý\r\ndovzdělání\r\ndovzdělaný\r\ndovzdělat\r\ndovzdělávání\r\ndovzdělávaný\r\ndovzdělávat\r\ndovzdychání\r\ndovzdychat\r\ndovzdychávání\r\ndovzdychávat\r\ndovztekání\r\ndovztekaný\r\ndovztekat\r\ndovztekávání\r\ndovztekávat\r\ndownload\r\nDown\r\nDownův\r\ndoxeroxování\r\ndoxeroxovaný\r\ndoxeroxovat\r\ndoxologie\r\ndozabíjení\r\ndozabíjený\r\ndozabíjet\r\ndozadu\r\ndozachumlání\r\ndozachumlaný\r\ndozachumlat\r\ndozajista\r\ndozakládanější\r\ndozakládání\r\ndozakládaný\r\ndozakládat\r\ndozamazat\r\ndozáplatování\r\ndozáplatovaný\r\ndozáplatovat\r\ndozáření\r\ndozářit\r\ndozásobení\r\ndozásobený\r\ndozásobit\r\ndozavírající\r\ndozavíranější\r\ndozavírání\r\ndozavíraný\r\ndozavírat\r\ndozávodění\r\ndozávodit\r\ndozaznívat\r\ndóza\r\ndozážní\r\ndozbrojení\r\ndozbrojený\r\ndozbrojit\r\ndozbrojování\r\ndozbrojovaný\r\ndozbrojovat\r\ndozbrojovávání\r\ndozbrojovávaný\r\ndozbrojovávat\r\ndozdění\r\ndozděný\r\ndozdít\r\ndozdívat\r\ndozdívka\r\ndozdobení\r\ndozdobený\r\ndozdobit\r\ndozdvihání\r\ndozdvíhání\r\ndozdvihaný\r\ndozdvíhat\r\ndozdvihat\r\ndózický\r\ndozický\r\ndózička\r\ndozimetr\r\ndozimetrický\r\ndozimetrie\r\ndozimetrista\r\ndozimetristčin\r\ndozimetristka\r\ndozimetristův\r\ndozírající\r\ndozírání\r\ndozírat\r\ndozkoumání\r\ndozkoumaný\r\ndozkoumat\r\ndozkoušení\r\ndozkoušený\r\ndozkoušet\r\ndozlatova\r\ndozlobení\r\ndozmatkovat\r\ndoznačení\r\ndoznačený\r\ndoznačit\r\ndoznačkovat\r\ndoznanější\r\ndoznání\r\ndoznaný\r\ndoznat\r\ndoznávací\r\ndoznávanější\r\ndoznávání\r\ndoznávaný\r\ndoznávat\r\ndoznění\r\ndoznít\r\ndoznívající\r\ndoznívání\r\ndoznívat\r\ndozobání\r\ndozobaný\r\ndozobat\r\ndozobávání\r\ndozobávaný\r\ndozobávat\r\ndozorce\r\ndozorcův\r\ndozorčí\r\ndozor\r\ndozorkyně\r\ndozorkynin\r\ndozorní\r\ndozorovací\r\ndozorování\r\ndozorovaný\r\ndozorovat\r\ndozorovávání\r\ndozorovávaný\r\ndozorovávat\r\ndozorový\r\ndozorující\r\ndozpívání\r\ndozpívaný\r\ndozpívat\r\ndozpívávat\r\ndozrálejší\r\ndozrálý\r\ndozrálý\r\ndozrání\r\ndozrát\r\ndozrávající\r\ndozrávání\r\ndozrávat\r\ndozurčení\r\ndozurčet\r\ndozuření\r\ndozuřit\r\ndozvánění\r\ndozváněný\r\ndozvánět\r\ndozvání\r\ndozvat\r\ndozvedání\r\ndozvedaný\r\ndozvedat\r\ndozvědění\r\ndozvědět\r\ndozvídání\r\ndozvídat\r\ndozvonění\r\ndozvoněný\r\ndozvonit\r\ndozvučení\r\ndozvučený\r\ndozvučet\r\ndozvučování\r\ndozvučovaný\r\ndozvučovat\r\ndozvuk\r\ndožádanější\r\ndožádání\r\ndožádaný\r\ndožádat\r\ndožadovanější\r\ndožadování\r\ndožadovaný\r\ndožadovat\r\ndožadovávání\r\ndožadovávat\r\ndožadující\r\ndožal\r\ndožatější\r\ndožat\r\ndožatý\r\ndožatý\r\ndoždímání\r\ndoždímaný\r\ndoždímat\r\ndožebrání\r\ndožebraný\r\ndožebrat\r\ndóžecí\r\ndožehrat\r\ndóže\r\ndoženění\r\ndoženěný\r\ndoženit\r\ndoženu\r\ndožertování\r\ndožertovat\r\ndožhavenější\r\ndožhavení\r\ndožhavený\r\ndožhavit\r\ndožhnout\r\ndožhnutí\r\ndožilý\r\ndožínání\r\ndožínaný\r\ndožínat\r\ndožínkový\r\ndožínky\r\ndožírající\r\ndožírání\r\ndožíraný\r\ndožírat\r\ndožít\r\ndožitější\r\ndožít\r\ndožití\r\ndožitý\r\ndožitý\r\ndožívající\r\ndožívající\r\ndožívanější\r\ndožívání\r\ndožívaný\r\ndožívat\r\ndoživení\r\ndoživený\r\ndoživit\r\ndoživoření\r\ndoživořit\r\ndoživotí\r\ndoživotní\r\ndožižlat\r\ndožižlávat\r\ndožlunkat\r\ndožluňkat\r\ndožmoulat\r\ndožnout\r\ndožnu\r\ndožnutí\r\ndožnutý\r\ndožonglovat\r\ndožranější\r\ndožrání\r\ndožraný\r\ndožrat\r\ndožužlání\r\ndožužlaný\r\ndožužlat\r\ndožvástat\r\ndožvatlání\r\ndožvatlaný\r\ndožvatlat\r\ndožvýkání\r\ndožvýkaný\r\ndožvýkat\r\ndožvýkávat\r\ndožvykovat\r\nDPA\r\nDPH\r\nDr\r\ndr\r\ndrabant\r\ndrabantský\r\ndrabantství\r\ndrabantův\r\nDrábek\r\ndrábka\r\nDrábková\r\nDrábkův\r\nDrábová\r\ndráb\r\nDráb\r\ndrábský\r\nDrábův\r\ndrábův\r\ndráček\r\ndračice\r\ndračinec\r\ndračí\r\ndračka\r\ndráčkův\r\ndragonáda\r\nDragoňová\r\nDragoň\r\nDragoňův\r\ndragoun\r\ndragounský\r\ndragounštější\r\ndragounův\r\ndrah\r\ndrahách\r\ndrahám\r\ndrahami\r\nDrahanovice\r\ndrahanovický\r\ndrahanský\r\ndráha\r\nDrahenice\r\ndrahenický\r\nDrahkov\r\ndrahkovský\r\nDrahlín\r\ndrahlínský\r\ndrahnější\r\ndrahný\r\ndraho\r\ndrahocennější\r\ndrahocenný\r\ndrahokam\r\nDrahokoupilová\r\nDrahokoupil\r\nDrahokoupilův\r\nDrahomíra\r\nDrahomířin\r\nDrahonice\r\ndrahonický\r\nDrahonín\r\ndrahonínský\r\nDrahoňová\r\nDrahoňovský\r\nDrahoň\r\nDrahoňův\r\nDrahoslava\r\nDrahoslavin\r\nDrahoslav\r\nDrahoslavův\r\nDrahošová\r\nDrahoš\r\nDrahošův\r\nDrahota\r\ndrahota\r\nDrahotěšice\r\ndrahotěšický\r\nDrahotín\r\ndrahotínský\r\nDrahotová\r\nDrahotův\r\ndrahou\r\ndrahoušek\r\ndrahouškův\r\nDrahov\r\ndrahovský\r\ndráhový\r\nDrahovzalová\r\nDrahovzal\r\nDrahovzalův\r\nDrahozalová\r\nDrahozal\r\nDrahozalův\r\nDrahuščin\r\nDrahuška\r\nDrahý\r\ndrahý\r\nDrachkov\r\ndrachkovský\r\ndrachma\r\nDráchov\r\ndráchovský\r\nDrachovský\r\ndrakiáda\r\ndrakonický\r\ndrakoničtější\r\ndrakový\r\ndrak\r\ndrákula\r\ndrákulův\r\ndrakův\r\ndrama\r\ndramaterapie\r\ndramatický\r\ndramatiččin\r\ndramatička\r\ndramatičtější\r\ndramatik\r\ndramatikův\r\ndramatismus\r\ndramatisování\r\ndramatisovaný\r\ndramatisovat\r\ndramatizace\r\ndramatizování\r\ndramatizovaný\r\ndramatizovat\r\ndramatizovávat\r\ndramatizující\r\ndramaturgický\r\ndramaturgičtější\r\ndramaturgie\r\ndramaturg\r\ndramaturgův\r\ndramaturgyně\r\ndramaturgynin\r\ndramaturžčin\r\ndramaturžka\r\ndrancování\r\ndrancovaný\r\ndrancovat\r\ndrancovávání\r\ndrancovávaný\r\ndrancovávat\r\ndrancující\r\ndrandící\r\ndraní\r\ndraný\r\ndranžírovací\r\ndrápající\r\ndrapák\r\nDrapáková\r\ndrapákový\r\nDrapák\r\nDrapákův\r\nDrápalová\r\nDrápal\r\nDrápalův\r\ndrápanec\r\ndrápanější\r\ndrápání\r\ndrápaný\r\ndrápat\r\ndrapatka\r\ndrápatka\r\ndrápavější\r\ndrápavý\r\ndrápek\r\ndraperie\r\ndrapérie\r\nDraperův\r\ndráp\r\ndrápkový\r\ndrápnatka\r\ndrápnout\r\ndrápnutí\r\ndrápnutý\r\ndrásací\r\ndrásadlo\r\ndrásající\r\ndrásání\r\ndrásaný\r\ndrásat\r\ndrásavější\r\ndrásavý\r\ndraselnohlinitý\r\ndraselný\r\nDraský\r\ndraslík\r\ndraslíkový\r\ndraslo\r\ndraslovka\r\nDrásov\r\ndrásovský\r\ndrastický\r\ndrastičtější\r\ndrastika\r\nDrašarová\r\nDrašar\r\nDrašarův\r\nDrašnarová\r\nDrašnar\r\nDrašnarův\r\ndrát\r\ndrátek\r\ndráteník\r\ndráteníkův\r\ndrátěnka\r\ndrátěný\r\ndratev\r\ndrát\r\ndrátkách\r\ndrátkování\r\ndrátkovaný\r\ndrátkovat\r\ndrátkový\r\ndrátoměr\r\ndrátošicí\r\ndrátování\r\ndrátovat\r\ndrátovka\r\ndrátovna\r\ndrátový\r\ndratvička\r\nDráva\r\ndravcův\r\ndravčí\r\ndravec\r\ndraveček\r\ndravečkův\r\ndravější\r\ndrávidský\r\ndravý\r\ndra\r\ndráž\r\ndražba\r\ndrážďanský\r\nDrážďany\r\ndrážděnější\r\ndráždění\r\ndrážděný\r\ndráždící\r\ndráždidlo\r\ndráždit\r\ndráždivější\r\ndráždivý\r\ndražé\r\ndražebník\r\ndražebníkův\r\ndražební\r\ndráže\r\ndražení\r\nDraženov\r\ndraženovský\r\ndražený\r\nDražice\r\ndražický\r\ndražit\r\ndražitelčin\r\ndražitelka\r\ndražitel\r\ndražitelův\r\ndrážka\r\ndrážkovací\r\ndrážkovačka\r\ndrážkování\r\ndrážkovaný\r\ndrážkovat\r\ndrážkový\r\ndrážní\r\nDražovice\r\ndražovický\r\nDrážov\r\ndrážovský\r\ndražší\r\ndrbající\r\nDrbalová\r\nDrbal\r\nDrbalův\r\ndrbání\r\ndrbaný\r\ndrbat\r\ndrbávání\r\ndrbávaný\r\ndrbávat\r\ndrbavý\r\ndrb\r\ndrbna\r\nDrbohlavová\r\nDrbohlav\r\nDrbohlavův\r\ndrcání\r\ndrcaný\r\ndrcat\r\ndrcení\r\ndrcený\r\ndrcnout\r\ndrcnutí\r\nDrdáková\r\nDrdák\r\nDrdákův\r\nDrda\r\ndrdol\r\nDrdová\r\nDrdův\r\ndrenážka\r\ndrenážní\r\ndrenáž\r\ndrén\r\nDrenice\r\ndrenický\r\nDresden\r\ndres\r\ndresina\r\ndresing\r\nDreyfusův\r\ndrezér\r\ndrezérův\r\ndrezína\r\ndrezírovanější\r\ndrezírování\r\ndrezírovaný\r\ndrezírovat\r\ndrezírovávat\r\nDrezno\r\ndrezura\r\ndrezúra\r\ndrezůra\r\ndrhlen\r\ndrhlice\r\nDrhlíková\r\nDrhlík\r\nDrhlíkův\r\ndrhnoucí\r\ndrhnout\r\ndrhnutí\r\ndrhnutý\r\nDrhovský\r\ndrchání\r\ndrchaný\r\ndrchat\r\ndrchnička\r\ndribling\r\ndriblink\r\ndriblování\r\ndriblovaný\r\ndriblovat\r\ndrift\r\ndriftování\r\ndriftovat\r\ndril\r\ndrilování\r\ndrilovaný\r\ndrilovat\r\ndrink\r\nDrinopol\r\ndrinopolský\r\nDrkalová\r\nDrkal\r\nDrkalův\r\ndrkat\r\ndrknout\r\nDrkolná\r\ndrkotající\r\ndrkotání\r\ndrkotat\r\ndrkotávání\r\ndrkotávat\r\ndrkotavý\r\nDrlíková\r\nDrlík\r\nDrlíkův\r\nDrmla\r\nDrmlová\r\nDrmlův\r\ndrmola\r\ndrmolení\r\ndrmolený\r\ndrmolící\r\ndrmolit\r\ndrmolivý\r\ndrmolův\r\nDrmoul\r\ndrmoulský\r\ndrncák\r\ndrncavý\r\ndrnčení\r\ndrnčet\r\ndrnčící\r\ndrnčivý\r\nDrnek\r\ndrn\r\ndrnholecký\r\nDrnholec\r\ndrnkací\r\ndrnkání\r\ndrnkat\r\ndrnknout\r\nDrnková\r\nDrnkův\r\ndrnovačka\r\ndrnování\r\nDrnovice\r\ndrnovický\r\ndrnovka\r\nDrnovský\r\nDrnovšek\r\nDrnovšková\r\nDrnovškův\r\ndrnový\r\ndrobátko\r\ndrobeček\r\ndrobečkový\r\ndrobečkův\r\ndrobek\r\ndrobení\r\ndrobenka\r\ndrobený\r\ndrobet\r\ndrob\r\ndrobící\r\nDrobílek\r\nDrobiličová\r\nDrobilič\r\nDrobiličův\r\nDrobílková\r\nDrobílkův\r\ndrobínek\r\ndrobinka\r\ndrobit\r\ndrobivější\r\ndrobivý\r\nDrobňáková\r\nDrobňák\r\nDrobňákův\r\ndrobnější\r\ndrobněnka\r\ndrobnička\r\ndrobnohled\r\ndrobnohledný\r\ndrobnochovatel\r\ndrobnochovatelův\r\ndrobnokresba\r\ndrobnolistý\r\ndrobnomalba\r\ndrobnozrnný\r\ndrobnůstka\r\nDrobný\r\ndrobný\r\ndrobota\r\ndrobotina\r\ndroboučký\r\ndroboulinký\r\ndrobouninký\r\ndrobounký\r\nDrobovice\r\ndrobovický\r\ndrobtovitý\r\ndrobtový\r\ndroga\r\ndrogerie\r\ndrogérie\r\ndrogista\r\ndrogistčin\r\ndrogistický\r\ndrogistka\r\ndrogistův\r\ndrogování\r\ndrogovat\r\ndrogovější\r\ndrogový\r\ndrolení\r\ndrolený\r\ndrolící\r\ndrolina\r\ndrolit\r\ndrolivější\r\ndrolivý\r\ndromedár\r\nDromníková\r\nDromník\r\nDromníkův\r\ndrop\r\ndropův\r\ndrouboučký\r\nDroužkovice\r\ndroužkovický\r\ndrozdice\r\nDrozdová\r\nDrozdovice\r\ndrozdovitý\r\nDrozdov\r\ndrozdovský\r\ndrozd\r\nDrozd\r\nDrozdův\r\ndrozdův\r\ndrožďárenský\r\ndrožďárenství\r\ndrožďárna\r\ndroždí\r\ndrožďový\r\ndrožkář\r\ndrožkářův\r\ndrožka\r\nDrSc\r\nDrslavice\r\ndrslavický\r\ndrsňák\r\ndrsňákův\r\ndrsnější\r\ndrsnění\r\ndrsnět\r\ndrsnosrstý\r\ndrsný\r\ndrška\r\nDrštička\r\ndrštička\r\nDrštičková\r\nDrštičkův\r\ndršťka\r\ndrštkový\r\ndršťkový\r\ndrticí\r\ndrtící\r\ndrtička\r\ndrtič\r\ndrtičův\r\nDrtilová\r\nDrtil\r\nDrtilův\r\nDrtina\r\ndrtina\r\nDrtinová\r\ndrtinový\r\nDrtinův\r\ndrtírna\r\ndrtit\r\ndrtivější\r\ndrtivý\r\ndrť\r\ndrůbek\r\ndrůbežárna\r\ndrůbežářčin\r\ndrůbežářka\r\ndrůbežářský\r\ndrůbežářství\r\ndrůbežář\r\ndrůbežářův\r\ndrůbeží\r\ndrůbežnický\r\ndrůbežnictví\r\ndrůbež\r\ndruhaččin\r\ndruhačka\r\ndruhák\r\ndruhákův\r\nDruhanov\r\ndruhanovský\r\ndruhé\r\ndruh\r\ndruhohorní\r\ndruhohory\r\ndruholezcův\r\ndruholezec\r\ndruholigový\r\ndruhopis\r\ndruhorodiččin\r\ndruhorodička\r\ndruhorozený\r\ndruhořadější\r\ndruhořadý\r\ndruhotnější\r\ndruhotný\r\ndruhotřídnější\r\ndruhovýroba\r\ndruhový\r\ndruh\r\ndruhův\r\ndruhý\r\ndruid\r\ndruidský\r\ndruidův\r\ndruk\r\nDrunecký\r\ndrúza\r\ndruzí\r\ndruzírovací\r\ndruzírování\r\ndruzírovaný\r\ndruzírovat\r\ndrúzový\r\nDruztová\r\ndruztovský\r\ndružba\r\ndružčin\r\ndružební\r\ndružecký\r\nDružec\r\ndružení\r\nDruženské\r\ndružený\r\ndružice\r\ndružící\r\ndružicový\r\ndružička\r\ndrůžička\r\ndružinářčin\r\ndružinářka\r\ndružinář\r\ndružinářův\r\ndružina\r\ndružiník\r\ndružiníkův\r\ndružinka\r\ndružinový\r\ndružit\r\ndružka\r\ndružnější\r\ndružný\r\ndružstevnice\r\ndružstevnický\r\ndružstevnictví\r\ndružstevničin\r\ndružstevník\r\ndružstevníkův\r\ndružstevní\r\ndružstvo\r\ndrvodělčin\r\ndrvodělka\r\ndrvopleň\r\ndrvopleňův\r\ndrvoštěpka\r\ndrvoštěp\r\ndrvoštěpův\r\ndryáčnice\r\ndryáčnický\r\ndryáčnictví\r\ndryáčničtější\r\ndryáčník\r\ndryáčníkův\r\ndryáda\r\ndryák\r\nDrysice\r\ndrysický\r\ndrzejší\r\ndrzoun\r\ndrzounův\r\ndrzý\r\ndržáček\r\ndržadlo\r\ndržák\r\ndržátko\r\ndržava\r\ndržba\r\ndrženější\r\ndržení\r\ndržený\r\ndržet\r\ndržgrešle\r\ndržgrešlův\r\ndržící\r\ndržitelčin\r\ndržitelka\r\ndržitel\r\ndržitelův\r\nDržka\r\ndržka\r\nDržková\r\nDržkov\r\ndržkovský\r\ndržkový\r\nDržkův\r\nDržovice\r\ndržovický\r\ndřenější\r\nDřenice\r\ndřenický\r\ndření\r\ndřeňový\r\ndřený\r\ndřeň\r\ndřepění\r\ndřepět\r\ndřep\r\ndřepící\r\ndřepnout\r\nDřešín\r\ndřešínský\r\nDřetovice\r\ndřetovický\r\ndřeváčkový\r\ndřevák\r\ndřevařský\r\ndřevařství\r\ndřevař\r\ndřevařův\r\nDřevčice\r\ndřevčický\r\ndřevěnčin\r\ndřevěnější\r\ndřevěnění\r\ndřevěněný\r\ndřevěnět\r\ndřevěnice\r\ndřevěnka\r\ndřevěný\r\nDřevice\r\ndřevický\r\ndřevina\r\ndřevinný\r\ndřeviště\r\ndřevitější\r\ndřevitý\r\ndřevnatější\r\ndřevnatět\r\ndřevnatý\r\ndřevnější\r\ndřevník\r\ndřevní\r\nDřevnovice\r\ndřevnovický\r\ndřevný\r\ndřevobeton\r\ndřevobetonový\r\ndřevocementový\r\ndřevodílna\r\nDřevohostice\r\ndřevohostický\r\ndřevokazný\r\ndřevokaz\r\ndřevokazův\r\ndřevokombinát\r\ndřevomorka\r\ndřevo\r\ndřevona\r\ndřevoobráběcí\r\ndřevoobrábění\r\ndřevoplyn\r\ndřevoplynový\r\ndřevorubcův\r\ndřevorubecký\r\ndřevorubectví\r\ndřevorubec\r\ndřevorubečtější\r\ndřevorytcův\r\ndřevorytec\r\ndřevoryt\r\ndřevorytina\r\ndřevorytový\r\ndřevořezba\r\ndřevořez\r\ndřevořezový\r\ndřevosklad\r\ndřevostroj\r\ndřevotříska\r\ndřevotřískový\r\ndřevovina\r\ndřevovláknitý\r\ndřevozpracující\r\ndřevozpracující\r\ndřez\r\ndříčka\r\ndříč\r\ndříčův\r\ndřík\r\ndřímající\r\ndřímání\r\ndřímat\r\ndřímota\r\ndřina\r\ndřín\r\ndřínka\r\nDřínov\r\nDřínovský\r\ndřínovský\r\ndřípatka\r\ndřišťál\r\ndřišťálovitý\r\ndřít\r\ndřív\r\ndříve\r\ndřívečko\r\ndříve\r\ndřívějšek\r\ndřívější\r\ndřívejška\r\ndřívějška\r\ndříví\r\ndřívko\r\ndštění\r\ndštěný\r\ndštít\r\ndto\r\nDTP\r\ndtto\r\nduál\r\ndualismus\r\ndualistický\r\ndualita\r\ndualizace\r\nduální\r\nduálový\r\nduatlonista\r\nduatlonistčin\r\nduatlonistka\r\nduatlonistův\r\nDubáček\r\nDubáčková\r\nDubáčkův\r\ndubák\r\nDubá\r\nDubcová\r\nDubcův\r\nDubčeková\r\nDubček\r\nDubčekův\r\nDubec\r\ndubenecký\r\nDubenec\r\nduběnka\r\nduben\r\nDuben\r\ndubenský\r\ndub\r\nDubicko\r\nDubický\r\ndubičenský\r\nDubičné\r\ndubina\r\ndubióza\r\ndubióznější\r\nDubí\r\ndubisko\r\nďubka\r\ndublér\r\ndublérův\r\ndubleta\r\ndubletní\r\nDublin\r\ndublinský\r\ndublovací\r\ndublování\r\ndublovaný\r\ndublovat\r\nDublovice\r\ndublovický\r\ndubl\r\ndublův\r\ndubňanský\r\nDubňany\r\nDubné\r\nDubnice\r\ndubnický\r\ndubnium\r\nDubno\r\nDubnová\r\ndubnovější\r\ndubnový\r\nDubnův\r\ndubohabřina\r\nDubová\r\ndubovější\r\nDubovice\r\ndubovický\r\ndubový\r\nDub\r\ndubrovnický\r\nDubrovník\r\nDubský\r\ndubský\r\nDubův\r\nducání\r\nducaný\r\nducat\r\nducávat\r\ndudácký\r\ndudáčtější\r\ndudák\r\ndudákův\r\ndudání\r\nDuda\r\ndudat\r\ndudek\r\nDudek\r\nDudíková\r\nDudík\r\nDudíkův\r\nDudín\r\ndudínský\r\nDudková\r\nDudkův\r\ndudkův\r\nDudla\r\ndudlíček\r\ndudlík\r\nDudlová\r\nDudlův\r\nDudová\r\ndudový\r\nDudův\r\ndudy\r\nduelant\r\nduelantův\r\nduel\r\ndueto\r\nduetový\r\nDufalová\r\nDufal\r\nDufalův\r\nDufek\r\nDuffek\r\nDuffková\r\nDuffkův\r\nDufková\r\nDufkův\r\nduha\r\nduhoskvoucí\r\nduhovcův\r\nduhovec\r\nduhovka\r\nduhový\r\nDucháček\r\nDucháčková\r\nDucháčkův\r\nDucháčová\r\nDucháč\r\nDucháčův\r\nduchamornější\r\nduchamorný\r\nduchaplnější\r\nduchaplnictví\r\nduchaplný\r\nduchaprázdnější\r\nduchaprázdný\r\nduchapřítomný\r\nduchařina\r\nduchařský\r\nDuchcov\r\nduchcovský\r\nduchna\r\ndůchodce\r\ndůchodcův\r\ndůchod\r\ndůchodkový\r\ndůchodkyně\r\ndůchodkynin\r\ndůchodový\r\nDuchoňová\r\nDuchoň\r\nDuchoňův\r\nduchovědný\r\nduchovější\r\nduchovenský\r\nduchovenstvo\r\nduchovnější\r\nduchovní\r\nduchový\r\nduch\r\nduchu\r\nduchův\r\ndující\r\nDujka\r\nDujková\r\nDujkův\r\ndukát\r\ndukátový\r\ndůkaz\r\ndůkaznější\r\ndůkazní\r\ndůkazní\r\ndůkazový\r\ndukelský\r\ndůkladnější\r\ndůkladný\r\nDukla\r\nduklista\r\nduklistčin\r\nduklistka\r\nduklistův\r\ndukovanský\r\nDukovany\r\nduktus\r\ndůl\r\nDula\r\ndůlčík\r\ndůleček\r\ndůlek\r\ndůležitější\r\ndůležitější\r\ndůležitý\r\nDuliková\r\nDulik\r\nDulikův\r\ndůlkovací\r\ndůlkování\r\ndůlkovaný\r\ndůlkovat\r\ndůlkový\r\ndůlní\r\nDulová\r\nDulův\r\ndům\r\ndumající\r\ndumání\r\ndumaný\r\nDumas\r\nDumasův\r\ndumat\r\ndumávání\r\ndumávat\r\ndumavý\r\nduma\r\nDumbrovský\r\nDumek\r\ndumka\r\nDumková\r\nDumkův\r\ndumlání\r\ndumlaný\r\ndumlat\r\ndumlávání\r\ndumlávaný\r\ndumlávat\r\ndumping\r\ndumpingový\r\ndůmysl\r\ndůmyslnější\r\ndůmyslný\r\nDunajovice\r\ndunajovický\r\nDunaj\r\ndunajský\r\ndunajský\r\nduna\r\nDundáček\r\nDundáčková\r\nDundáčkův\r\nDundychová\r\nDundych\r\nDundychův\r\ndunění\r\ndunět\r\ndunící\r\ndunivější\r\ndunivý\r\nDunovský\r\ndunový\r\nduodecima\r\nduo\r\ndup\r\ndupačky\r\ndupající\r\ndupák\r\ndupák\r\nDupalová\r\nDupal\r\nDupalův\r\ndupanější\r\ndupání\r\ndupaný\r\ndupárna\r\ndupat\r\ndupávanější\r\ndupávání\r\ndupávaný\r\ndupávat\r\ndupavý\r\ndupky\r\nduplex\r\nduplexní\r\nduplexový\r\nduplicita\r\nduplicitní\r\nduplikace\r\nduplikát\r\nduplikátní\r\nduplika\r\nduplikovanější\r\nduplikování\r\nduplikovaný\r\nduplikovat\r\nduplikovávání\r\nduplikovávaný\r\nduplikovávat\r\nduplikující\r\ndupnout\r\ndupnutější\r\ndupnutí\r\ndupnutý\r\ndupnutý\r\ndupot\r\ndupu\r\ndupy\r\ndur\r\ndural\r\nduralový\r\nDura\r\ndůraz\r\ndůraznější\r\ndůrazný\r\ndůrazový\r\nDurban\r\ndurbanský\r\nĎurčanský\r\nĎurďa\r\nDurdíková\r\nDurdík\r\nDurdíkův\r\nDurdilová\r\nDurdil\r\nDurdilův\r\ndurdit\r\ndurdivější\r\ndurdivý\r\nĎurďová\r\nĎurďův\r\ndurch\r\nĎurica\r\nĎuricová\r\nĎuricův\r\nDürich\r\nDürichův\r\ndurit\r\nduritový\r\ndurman\r\ndurmanový\r\nDurnilová\r\nDurnil\r\nDurnilův\r\nDurová\r\ndurový\r\nDurův\r\nDurynsko\r\ndurynský\r\nDuřtová\r\nDuřt\r\nDuřtův\r\ndusadlo\r\ndusající\r\ndusanější\r\ndusání\r\ndusaný\r\ndusat\r\ndusávání\r\ndusávaný\r\ndusávat\r\ndusavý\r\ndůsažný\r\ndusící\r\ndusičitý\r\ndusičnan\r\ndusičnanový\r\ndusičný\r\ndusíkárna\r\ndusíkatější\r\ndusíkatý\r\ndusík\r\ndusíkový\r\nDusílek\r\nDusílková\r\nDusílkův\r\nDusilová\r\nDusil\r\nDusilův\r\ndusit\r\ndusitan\r\ndusitanový\r\ndusítko\r\ndusitý\r\ndusivější\r\ndusivý\r\ndůsledek\r\ndůsledkový\r\ndůsledku\r\ndůslednější\r\ndůsledný\r\ndusnatý\r\ndusnější\r\ndusno\r\ndusný\r\ndusot\r\nDüsseldorf\r\ndüsseldorfský\r\ndůstojenství\r\ndůstojnější\r\ndůstojnice\r\ndůstojnický\r\ndůstojnictvo\r\ndůstojničin\r\ndůstojničtější\r\ndůstojník\r\ndůstojníkův\r\ndůstojný\r\nDušáková\r\nDušák\r\nDušákův\r\nDušanbe\r\nDušánek\r\nDušánková\r\nDušánkův\r\nDušan\r\nDušanův\r\nDušátek\r\nDušátko\r\nDušátková\r\nDušátkův\r\nDušejov\r\ndušejovský\r\nDušek\r\ndušení\r\ndušený\r\nduševní\r\nduševno\r\nduše\r\ndušezpytný\r\nduši\r\ndušička\r\ndušičkovější\r\ndušičkový\r\ndušinčin\r\ndušinka\r\nDušínová\r\nDušín\r\nDušínův\r\nDušková\r\nDuškův\r\ndušnější\r\ndušný\r\ndušování\r\ndušovaný\r\ndušovat\r\ndušující\r\ndutější\r\ndutina\r\ndutinka\r\ndutinkový\r\ndutinoměr\r\ndutinový\r\ndutí\r\nDutka\r\ndůtka\r\ndůtklivější\r\ndůtklivý\r\nDutková\r\nDutkův\r\ndutky\r\ndutnutí\r\nDutý\r\ndutý\r\ndůvěra\r\ndůvěrnější\r\ndůvěrnice\r\ndůvěrnický\r\ndůvěrničin\r\ndůvěrničtější\r\ndůvěrník\r\ndůvěrníkův\r\ndůvěrný\r\ndůvěryhodnější\r\ndůvěryhodný\r\ndůvěryplnější\r\ndůvěryplný\r\ndůvěřivcův\r\ndůvěřivec\r\ndůvěřivější\r\ndůvěřivý\r\ndůvěřování\r\ndůvěřovaný\r\ndůvěřovat\r\ndůvěřovávat\r\ndůvěřující\r\ndůvod\r\ndůvodnější\r\ndůvodný\r\ndůvodový\r\ndůvodu\r\ndůvtip\r\ndůvtipnější\r\ndůvtipný\r\nDuzbabová\r\nDuzbab\r\nDuzbabův\r\nDužda\r\nDuždová\r\nDuždův\r\ndužinatější\r\ndužina\r\nduživý\r\ndužnatější\r\ndužnatět\r\ndužnatý\r\ndužnina\r\nDV\r\ndva\r\ndvaačtyřicetihodinový\r\ndvaačtyřicetikilometrový\r\ndvaačtyřicetimiliardový\r\ndvaačtyřicetiminutový\r\ndvaačtyřicetiřádkový\r\ndvaadevadesátiminutový\r\ndvaadvaceticentimetrový\r\ndvaadvacetihlavý\r\ndvaadvacetikilometrový\r\ndvaadvacetimetrový\r\ndvaadvacetimiliardový\r\ndvaadvacetimilionový\r\ndvaadvacetiminutový\r\ndvaadvacetistránkový\r\ndvaadvacetistupňový\r\ndvaadvacetitisícový\r\ndvaapadesátimilionový\r\ndvaapadesátimiliónový\r\ndvaapadesátistupňový\r\ndvaapůldenní\r\ndvaapůlhodinový\r\ndvaapůlkilometrový\r\ndvaapůllitrový\r\ndvaapůlměsíční\r\ndvaapůlmetrový\r\ndvaapůlminutový\r\ndvaapůlroční\r\ndvaapůltýdenní\r\ndvaasedmdesátihodinový\r\ndvaasedmdesátikilometrový\r\ndvaasedmdesátiminutový\r\ndvaašedesátihektarový\r\ndvaašedesátiminutový\r\ndvaatřicetibitový\r\ndvaatřicetimilionový\r\ndvaatřicetiminutový\r\ndvaatřicetistránkový\r\ndvacatero\r\ndvacateronásobný\r\ndvacatery\r\ndvacaterý\r\ndvacátý\r\ndvacet\r\ndvacetiarový\r\ndvacetibitový\r\ndvacetibodový\r\ndvaceticentimetrový\r\ndvacetice\r\ndvacetičlenný\r\ndvacetidenní\r\ndvacetidolarový\r\ndvacetigramový\r\ndvacetihaléřový\r\ndvacetihaléř\r\ndvacetihalíř\r\ndvacetihektarový\r\ndvacetihlavý\r\ndvacetihodinový\r\ndvacetikilogramový\r\ndvacetikilometrový\r\ndvacetikilový\r\ndvacetikoruna\r\ndvacetikorunový\r\ndvacetikusový\r\ndvacetiletý\r\ndvacetilitrový\r\ndvacetilůžkový\r\ndvacetimarkový\r\ndvacetimetrový\r\ndvacetimetrový\r\ndvacetimiliardový\r\ndvacetimilimetrový\r\ndvacetimilionový\r\ndvacetimiliónový\r\ndvacetimílový\r\ndvacetiminutovka\r\ndvacetiminutový\r\ndvacetimístný\r\ndvacetinásobný\r\ndvacetina\r\ndvacetipatrový\r\ndvacetiprocentní\r\ndvacetiřádkový\r\ndvacetisekundový\r\ndvacetistránkový\r\ndvacetistupňový\r\ndvacetisvazkový\r\ndvacetitisící\r\ndvacetitisícovka\r\ndvacetitisícový\r\ndvacetitunový\r\ndvacetiventilový\r\ndvacetivteřinový\r\ndvacetiwattový\r\ndvacetizlatkový\r\ndvacetiznakový\r\ndvacetkrát\r\ndvacetník\r\ndvacíti\r\ndvacítina\r\ndvacítka\r\ndvacítkový\r\ndvacka\r\ndvakrát\r\ndvakráte\r\ndvanácterák\r\ndvanácterákův\r\ndvanácterník\r\ndvanácterníkový\r\ndvanáctero\r\ndvanácteronásobný\r\ndvanáctery\r\ndvanácterý\r\ndvanáct\r\ndvanáctibitový\r\ndvanáctibodový\r\ndvanáctibodový\r\ndvanáctiboký\r\ndvanácticentimetrový\r\ndvanáctice\r\ndvanáctičlenný\r\ndvanáctidenní\r\ndvanáctihektarový\r\ndvanáctihlavý\r\ndvanáctihodinovka\r\ndvanáctihodinový\r\ndvanáctikanálový\r\ndvanáctikilogramový\r\ndvanáctikilometrový\r\ndvanáctikilový\r\ndvanáctikolový\r\ndvanáctikorunový\r\ndvanáctiletka\r\ndvanáctiletý\r\ndvanáctilitrový\r\ndvanáctilůžkový\r\ndvanáctiměsíční\r\ndvanáctimetrový\r\ndvanáctimiliardový\r\ndvanáctimilimetrový\r\ndvanáctimilionový\r\ndvanáctimiliónový\r\ndvanáctimílový\r\ndvanáctiminutovka\r\ndvanáctiminutový\r\ndvanáctinásobný\r\ndvanáctina\r\ndvanáctipatrový\r\ndvanáctiposchoďový\r\ndvanáctiroční\r\ndvanáctiřádkový\r\ndvanáctisekundový\r\ndvanáctisemestrový\r\ndvanáctislabičný\r\ndvanáctistěn\r\ndvanáctistránkový\r\ndvanáctistrunný\r\ndvanáctistupňový\r\ndvanáctisvazkový\r\ndvanáctitisícový\r\ndvanáctitónový\r\ndvanáctitunka\r\ndvanáctitýdenní\r\ndvanáctiúhelníkový\r\ndvanáctiválcový\r\ndvanáctiválec\r\ndvanáctka\r\ndvanáctkový\r\ndvanáctkrát\r\ndvanáctkráte\r\ndvanáctník\r\ndvanáctníkový\r\ndvanáctsettrojka\r\ndvanáctý\r\ndvcetiminutový\r\nDVD\r\ndvě\r\ndvěma\r\ndveře\r\ndveřnice\r\ndveřní\r\ndveřový\r\ndvěstěčlenný\r\ndvěstědvacetistránkový\r\ndvěstěgramový\r\ndvěstěhektarový\r\ndvěstěhlavý\r\ndvěstěkilometrový\r\ndvěstěkilový\r\ndvěstěkorunový\r\ndvěstěletý\r\ndvěstěmetrový\r\ndvěstěmiligramový\r\ndvěstěmilionový\r\ndvěstěmiliónový\r\ndvěstěpatrový\r\ndvěstěposchoďový\r\ndvěstěprocentní\r\ndvěstětisícový\r\nDvina\r\nDvinohrad\r\ndvinohradský\r\ndvířka\r\ndvířkový\r\ndvobodový\r\ndvoják\r\ndvojákův\r\ndvojaký\r\ndvojapartmá\r\ndvojbajtový\r\ndvojbarevný\r\ndvojblok\r\ndvojbodový\r\ndvojbodový\r\ndvojbrankový\r\ndvojciferný\r\ndvojčátka\r\ndvojčátko\r\ndvojče\r\ndvojčinný\r\ndvojčíslí\r\ndvojčíslo\r\ndvojčitý\r\ndvojčlen\r\ndvojčlenný\r\ndvojčočkový\r\ndvojdenní\r\ndvojdílný\r\ndvojdomek\r\ndvojdyšný\r\ndvoje\r\ndvojfázový\r\ndvojgarsoniéra\r\ndvojháček\r\ndvojhláska\r\ndvojhlasný\r\ndvojhlasý\r\ndvojhlavňový\r\ndvojhlavý\r\ndvojhmat\r\ndvojhodinový\r\ndvojhra\r\ndvojhvězda\r\ndvojhvězdný\r\ndvojchroman\r\ndvoji\r\ndvojice\r\ndvojička\r\ndvojitý\r\ndvojitý\r\ndvojí\r\ndvojjazýčkový\r\ndvojjazyčný\r\ndvojjazyčný\r\ndvojjediný\r\ndvojkařčin\r\ndvojkařka\r\ndvojkař\r\ndvojkařův\r\ndvojka\r\ndvojkilometrový\r\ndvojklaný\r\ndvojklik\r\ndvojkolejnost\r\ndvojkolejný\r\ndvojkolka\r\ndvojkolo\r\ndvojkolový\r\ndvojkolý\r\ndvojkombinace\r\ndvojkomorový\r\ndvojkov\r\ndvojkovový\r\ndvojkový\r\ndvojkrok\r\ndvojkřídlý\r\ndvojlinka\r\ndvojlist\r\ndvojlistový\r\ndvojlistý\r\ndvojlitrový\r\ndvojlom\r\ndvojlomný\r\ndvojlůžko\r\ndvojlůžkový\r\ndvojměsíční\r\ndvojměstí\r\ndvojměsto\r\ndvojmetrový\r\ndvojminutový\r\ndvojmístný\r\ndvojmo\r\ndvojmocnina\r\ndvojmocný\r\ndvojmocný\r\ndvojmotorový\r\ndvojmý\r\ndvojnásob\r\ndvojnásobek\r\ndvojnásobný\r\ndvojnice\r\ndvojničin\r\ndvojník\r\ndvojníkův\r\ndvojniťový\r\ndvojnohý\r\ndvojný\r\ndvojpádlo\r\ndvojpapežství\r\ndvojpísmenný\r\ndvojplanetka\r\ndvojplošník\r\ndvojpodlažní\r\ndvojpohlavní\r\ndvojpohlavný\r\ndvojpólový\r\ndvojportrét\r\ndvojposchoďový\r\ndvojpostel\r\ndvojprogram\r\ndvojramenný\r\ndvojroční\r\ndvojrohý\r\ndvojrole\r\ndvojrozměrný\r\ndvojřad\r\ndvojřadový\r\ndvojsečný\r\ndvojsedadlový\r\ndvojsemestrový\r\ndvojskif\r\ndvojslabičný\r\ndvojslovný\r\ndvojslovo\r\ndvojsměnný\r\ndvojsmysl\r\ndvojsmyslný\r\ndvojsnímkový\r\ndvojsodnovápenatý\r\ndvojsodný\r\ndvojspolek\r\ndvojstěžník\r\ndvojstěžňový\r\ndvojstisk\r\ndvojstopý\r\ndvojstrana\r\ndvojstránka\r\ndvojstránkový\r\ndvojstranný\r\ndvojstrunný\r\ndvojstup\r\ndvojstupňový\r\ndvojsytný\r\ndvojšroubovice\r\ndvojtečka\r\ndvojtečkový\r\ndvojtisícový\r\ndvojtónový\r\ndvojtřídka\r\ndvojtřídní\r\ndvojtvar\r\ndvojtvářný\r\ndvojtýdenní\r\ndvojúčelový\r\ndvojuchý\r\ndvojúrovňový\r\ndvojuzávěr\r\ndvojvaječný\r\ndvojvařič\r\ndvojverší\r\ndvojveršový\r\ndvojvěří\r\ndvojvládí\r\ndvojvrstevný\r\ndvojvrstvový\r\ndvojvrstvý\r\ndvojvrubový\r\ndvojvýznamový\r\ndvojzámčí\r\ndvojzápas\r\ndvojzdvižný\r\ndvojznačný\r\ndvojznak\r\ndvojznakový\r\ndvojzpěv\r\ndvojženství\r\ndvora\r\ndvorana\r\ndvore\r\ndvorec\r\ndvoreček\r\ndvorečtější\r\ndvorech\r\ndvorek\r\ndvorem\r\ndvornější\r\ndvorní\r\nDvorný\r\ndvorný\r\nDvorský\r\ndvorský\r\ndvorštější\r\ndvoru\r\ndvorů\r\ndvorům\r\ndvory\r\ndvořaččin\r\nDvořáček\r\ndvořačka\r\nDvořáčková\r\nDvořáčkův\r\nDvořáková\r\nDvořák\r\nDvořákův\r\ndvořan\r\ndvořanský\r\ndvořanstvo\r\ndvořanův\r\ndvoře\r\ndvoření\r\ndvořený\r\nDvořiště\r\ndvořišťský\r\ndvořit\r\ndvou\r\ndvouaktovka\r\ndvouaktový\r\ndvouapartmá\r\ndvouapsidový\r\ndvouapůldenní\r\ndvouapůlhodinový\r\ndvouapůlkilometrový\r\ndvouapůllitrový\r\ndvouapůlměsíční\r\ndvouapůlmetrový\r\ndvouapůlminutový\r\ndvouapůlroční\r\ndvouapůltýdenní\r\ndvouargumentový\r\ndvouatomový\r\ndvoubajtový\r\ndvoubarevný\r\ndvoubitový\r\ndvoubodový\r\ndvoubodový\r\ndvoubrankový\r\ndvoubřitý\r\ndvoububnový\r\ndvoubytový\r\ndvoucentimetrový\r\ndvoucestný\r\ndvouciferný\r\ndvoučárkovaný\r\ndvoučlánkový\r\ndvoučlenný\r\ndvoučlunkový\r\ndvoučočkový\r\ndvoučtvrteční\r\ndvouděložný\r\ndvoudenní\r\ndvoudesetibytový\r\ndvoudílný\r\ndvoudisketový\r\ndvoudobý\r\ndvoudolarový\r\ndvoudomý\r\ndvoudrát\r\ndvoudrátový\r\ndvoudrážkový\r\ndvoudveřový\r\ndvouelektrodový\r\ndvouetapový\r\ndvouetážový\r\ndvoufakultní\r\ndvoufázový\r\ndvougarsonka\r\ndvougólový\r\ndvouhadicový\r\ndvouhaléřový\r\ndvouhektarový\r\ndvouhlasný\r\ndvouhlasý\r\ndvouhlavňový\r\ndvouhlavový\r\ndvouhlavý\r\ndvouhodinovka\r\ndvouhodinový\r\ndvouhodnotový\r\ndvouhranolový\r\ndvouhra\r\ndvouhrbý\r\ndvouhvězdičkový\r\ndvoujazyčný\r\ndvoujehelný\r\ndvoujehlový\r\ndvoujehový\r\ndvoukanálový\r\ndvoukilobytový\r\ndvoukilogramový\r\ndvoukilometrový\r\ndvoukilometrový\r\ndvoukilový\r\ndvouklanný\r\ndvouklikový\r\ndvoukolák\r\ndvoukolejka\r\ndvoukolejný\r\ndvoukolka\r\ndvoukolový\r\ndvoukolý\r\ndvoukomorový\r\ndvoukomutátorový\r\ndvoukoruna\r\ndvoukorunový\r\ndvoukotoučový\r\ndvoukřídlový\r\ndvoukřídlý\r\ndvoulaločnatý\r\ndvouletka\r\ndvouletkový\r\ndvouletý\r\ndvoulibrový\r\ndvoulinka\r\ndvoulist\r\ndvoulistový\r\ndvoulistý\r\ndvoulitrový\r\ndvoulitrový\r\ndvoulodí\r\ndvoulůžko\r\ndvoulůžkový\r\ndvoumegabajtový\r\ndvoumegabytový\r\ndvouměnový\r\ndvouměsíčník\r\ndvouměsíční\r\ndvoumetrový\r\ndvoumetrový\r\ndvoumiliardový\r\ndvoumilimetrový\r\ndvoumilionový\r\ndvoumiliónový\r\ndvoumílový\r\ndvouminutovka\r\ndvouminutový\r\ndvoumístný\r\ndvoumocný\r\ndvoumotorový\r\ndvounápravový\r\ndvounažka\r\ndvouniťový\r\ndvounohý\r\ndvounožcův\r\ndvounožec\r\ndvounožka\r\ndvounožkovitý\r\ndvouoborový\r\ndvouobrátkový\r\ndvouocasý\r\ndvouohniskový\r\ndvouokruhový\r\ndvouoktávový\r\ndvouoký\r\ndvouoltář\r\ndvoupalácový\r\ndvoupalcový\r\ndvouparametrický\r\ndvouparametrový\r\ndvoupatrový\r\ndvoupísmenný\r\ndvoupísmenový\r\ndvouplášťový\r\ndvouplošník\r\ndvoupočitadlový\r\ndvoupodlažní\r\ndvoupokojový\r\ndvoupolohový\r\ndvoupólový\r\ndvouposchoďový\r\ndvoupostel\r\ndvouprocentní\r\ndvouprocesorový\r\ndvouprostorový\r\ndvouproudový\r\ndvouproudý\r\ndvouprstý\r\ndvoupruhý\r\ndvouprvkový\r\ndvoupyskový\r\ndvouramenný\r\ndvouroček\r\ndvouročkův\r\ndvouroční\r\ndvourohý\r\ndvourozměrný\r\ndvouručičkový\r\ndvouručka\r\ndvouruký\r\ndvouřad\r\ndvouřádkový\r\ndvouřadový\r\ndvouřadý\r\ndvousečný\r\ndvousedadlový\r\ndvousekundový\r\ndvousemestrový\r\ndvousetgramový\r\ndvousethlavý\r\ndvousethodinový\r\ndvousetkilogramový\r\ndvousetkilometrový\r\ndvousetkilový\r\ndvousetkoruna\r\ndvousetkorunový\r\ndvousetlibrový\r\ndvousetlitrový\r\ndvousetmarkový\r\ndvousetmetrový\r\ndvousetmiliardový\r\ndvousetmilimetrový\r\ndvousetmilionový\r\ndvousetmiliónový\r\ndvousetmílový\r\ndvousetstránkový\r\ndvousettisícový\r\ndvousettunový\r\ndvouslabičný\r\ndvousloupcový\r\ndvouslovný\r\ndvousložkový\r\ndvousměnný\r\ndvousměnný\r\ndvousměrný\r\ndvousoustavový\r\ndvoustanicový\r\ndvoustavový\r\ndvoustavový\r\ndvoustěžňový\r\ndvoustopý\r\ndvoustovka\r\ndvoustrana\r\ndvoustránkový\r\ndvoustrannější\r\ndvoustranný\r\ndvoustrunný\r\ndvoustupňový\r\ndvoustý\r\ndvousvazkový\r\ndvousystémový\r\ndvoušnekový\r\ndvoutaktní\r\ndvoutisícikoruna\r\ndvoutisíciletý\r\ndvoutisící\r\ndvoutisícovka\r\ndvoutisícový\r\ndvoutlačítkový\r\ndvoutraktový\r\ndvoutřetinový\r\ndvoutřídka\r\ndvoutřídní\r\ndvoutunový\r\ndvoutvářný\r\ndvoutýdenní\r\ndvouúčelový\r\ndvouúrovňový\r\ndvouvaječný\r\ndvouválcový\r\ndvouválec\r\ndvouventilový\r\ndvouverší\r\ndvouvěžovitý\r\ndvouvodičový\r\ndvouvrstvový\r\ndvouvrstvý\r\ndvouvřetenový\r\ndvouvteřinový\r\ndvouvýznamový\r\ndvouwattový\r\ndvouzákrutový\r\ndvouznačný\r\ndvouznakový\r\ndvouzrnka\r\ndvouženství\r\ndvoužilový\r\ndvůr\r\nDyba\r\nDybová\r\nDybův\r\ndýčka\r\ndyftýn\r\ndyftýnový\r\nDygrínová\r\nDygrín\r\nDygrínův\r\ndýhárna\r\ndýha\r\ndýhovka\r\ndýchací\r\ndýchadlo\r\ndýchající\r\ndýchánek\r\ndýchaní\r\ndýchání\r\ndýchaný\r\ndýchatelnější\r\ndýchatelný\r\ndýchat\r\ndýchavičnější\r\ndýchavičný\r\ndýchnout\r\ndýchnutí\r\ndychtění\r\ndychtěný\r\ndychtící\r\ndychtit\r\ndychtivcův\r\ndychtivec\r\ndychtivější\r\ndychtiv\r\ndychtivý\r\nDyjákovice\r\ndyjákovický\r\nDyje\r\ndyjskosvratecký\r\ndyjský\r\ndýka\r\nDylan\r\nDylanův\r\nDylevský\r\nDymáček\r\nDymáčková\r\nDymáčkův\r\ndýmající\r\ndýmání\r\ndýmaný\r\ndýmat\r\ndýmavý\r\ndýmějový\r\ndýměj\r\ndýmení\r\ndým\r\ndymián\r\ndýmit\r\ndýmka\r\ndýmkový\r\nDymlová\r\nDyml\r\nDymlův\r\ndýmnice\r\ndymnivka\r\ndymnivkový\r\ndymokurský\r\nDymokury\r\ndýmovnice\r\ndýmový\r\ndynamický\r\ndynamičtější\r\ndynamika\r\ndynamismus\r\ndynamit\r\ndynamitka\r\ndynamitový\r\ndynamizace\r\ndynamizování\r\ndynamizovaný\r\ndynamizovat\r\ndynamizující\r\ndynamoelektrický\r\ndynamogram\r\ndynamometr\r\ndynamometrický\r\ndynamometrie\r\ndynamo\r\ndynamový\r\ndynastický\r\ndynastičtější\r\ndynastie\r\ndýně\r\nDynín\r\ndynínský\r\ndýnko\r\ndýňovitý\r\ndýňový\r\ndysartrie\r\ndysfatický\r\ndysfemismus\r\ndysfonie\r\ndysfunkce\r\ndysfunkční\r\ndysgrafie\r\ndysgrafik\r\ndysgrafikův\r\ndysgramatismus\r\ndyskalkulie\r\ndyslálie\r\ndyslektický\r\ndyslektička\r\ndyslektik\r\ndyslektikův\r\ndyslexie\r\ndysortografický\r\ndysortografie\r\ndysortografika\r\ndyspeptický\r\ndyspeptičtější\r\ndysplasie\r\ndysprosiový\r\ndysprosium\r\ndysprozodie\r\ndystrofie\r\nDýšina\r\nDyškantová\r\nDyškant\r\nDyškantův\r\ndyšnější\r\nDytrichová\r\nDytrich\r\nDytrichův\r\nDytrtová\r\nDytrt\r\nDytrtův\r\nDytrychová\r\nDytrych\r\nDytrychův\r\nDzurinda\r\nDzurindová\r\nDzurindův\r\ndžajv\r\ndžamahírija\r\nDžavoronek\r\nDžavoronková\r\nDžavoronkův\r\ndžbánek\r\ndžbán\r\nDžbánov\r\ndžbánovský\r\ndžber\r\ndžem\r\ndžentlmen\r\ndžentlmenský\r\ndžentlmenství\r\ndžentlmenštější\r\ndžentlmenův\r\ndžezgymnastika\r\ndžez\r\ndžezový\r\nDžibuťančin\r\nDžibuťanka\r\nDžibuťan\r\nDžibuťanův\r\nDžibuti\r\ndžibutský\r\nDžingischán\r\nDžingischánův\r\ndžinismus\r\ndžinista\r\ndžinistčin\r\ndžinistka\r\ndžinistův\r\ndžínovina\r\ndžinový\r\ndžínový\r\ndžin\r\ndžínsech\r\ndžínsů\r\ndžínsům\r\ndžínsy\r\ndžinův\r\ndžíny\r\ndžíp\r\ndžudista\r\ndžudistčin\r\ndžudistka\r\ndžudistův\r\ndžudo\r\ndžungle\r\ndžunka\r\ndžus\r\ndžusovat\r\ndžuveč\r\nEastwoodová\r\nEastwood\r\nEastwoodův\r\nEatonová\r\nEaton\r\nEatonův\r\neben\r\nEbenová\r\nebenový\r\nEben\r\nEbenův\r\nebonitový\r\nebonologický\r\nebonologie\r\nebonolog\r\nebonologův\r\nebonoložčin\r\nebonoložka\r\necclesiologie\r\nECE\r\nECU\r\néčko\r\nEda\r\nEdelsteinová\r\nEdelstein\r\nEdelsteinův\r\neden\r\nedice\r\nediční\r\nedikt\r\nEdinburg\r\nEdinburgh\r\nedinburghský\r\nedinburský\r\nEdison\r\nEdisonův\r\neditace\r\neditační\r\nEdita\r\nEditin\r\neditorčin\r\neditorka\r\neditor\r\neditorský\r\neditorův\r\neditovací\r\neditování\r\neditovaný\r\neditovat\r\neditovatelný\r\nEdmund\r\nEdmundův\r\nEduard\r\nEduardův\r\nedukace\r\nedukační\r\nedukační\r\nedukátor\r\nedukátorův\r\nedukovatelný\r\nEdův\r\nEEG\r\nEEPROM\r\nefedrin\r\nefekt\r\nefektivita\r\nefektivnější\r\nefektivní\r\nefektnější\r\nefektní\r\nefektor\r\nefektový\r\nefemerida\r\nefemeridový\r\nefemérnější\r\nefemérní\r\nEfesan\r\nEfes\r\nEfezan\r\nefko\r\nEflerová\r\nEfler\r\nEflerův\r\nEfmertový\r\nefratský\r\negalitářský\r\negalitářštější\r\negalizace\r\negalizační\r\negalizovaný\r\negejský\r\negirín\r\negocentrický\r\negocentričtější\r\negocentrismus\r\negoismus\r\negoista\r\negoistčin\r\negoistický\r\negoističtější\r\negoistka\r\negoistův\r\nego\r\nEgon\r\nEgonův\r\negotismus\r\nEgrtová\r\nEgrt\r\nEgrtův\r\nEgypťančin\r\nEgypťanka\r\negypťanový\r\nEgypťan\r\negypťan\r\nEgypťanův\r\negypťanův\r\nEgypt\r\negyptologický\r\negyptologie\r\negyptský\r\negyptština\r\nEHK\r\nEhlemanová\r\nEhleman\r\nEhlemanův\r\nEhlová\r\nEhl\r\nEhlův\r\nehm\r\nEhmová\r\nEhm\r\nEhmův\r\nEhrenfest\r\nEhrenfestův\r\nEHS\r\nechinacea\r\necholálie\r\necho\r\nechosonda\r\nEIA\r\nEidam\r\neidam\r\neidamský\r\neiffelka\r\nEiffelovka\r\nEiger\r\neigerský\r\nEichlerová\r\nEichler\r\nEichlerův\r\neinsteinium\r\nEinstein\r\nEinsteinův\r\nEisenach\r\neisenašský\r\neisenašský\r\nEisenhammerová\r\nEisenhammer\r\nEisenhammerův\r\nEisenvortová\r\nEisenvort\r\nEisenvortův\r\nEisnerová\r\nEisner\r\nEisnerův\r\nejakulace\r\nejakulát\r\nejakulátor\r\nejakulování\r\nejakulovaný\r\nejakulovat\r\nejakulující\r\nejektor\r\nejektorový\r\nejhle\r\nEjpovice\r\nejpovický\r\nEkertová\r\nEkert\r\nEkertův\r\nEKG\r\nEkkehardův\r\neklatantnější\r\neklekticismus\r\neklektický\r\neklektičtější\r\neklektik\r\neklektikův\r\neklektismus\r\neklesiologický\r\neklesiologie\r\nekliptický\r\nekliptika\r\neklogit\r\neklogitový\r\neklování\r\neklovat\r\nEklová\r\nEkl\r\nEklův\r\nekoagrotechnika\r\nekoanalýza\r\nekoaudit\r\nekobilance\r\nekobiologický\r\nekobod\r\nekocentrum\r\nekodumping\r\nekofeminista\r\nekofeministčin\r\nekofeministka\r\nekofeministův\r\nekofyziologie\r\nekokarta\r\nekokomunismus\r\nekokomunistický\r\nekologickostabilizační\r\nekologický\r\nekologičtější\r\nekologie\r\nekologismus\r\nekologistický\r\nekologizace\r\nekologizování\r\nekologizovaný\r\nekologizovat\r\nekologizující\r\nekolog\r\nekologův\r\nekoložčin\r\nekoložka\r\nekonomčin\r\nekonometr\r\nekonometr\r\nekonometrický\r\nekonometričtější\r\nekonometrie\r\nekonometrův\r\nekonomickosociální\r\nekonomický\r\nekonomičtější\r\nekonomie\r\nekonomika\r\nekonomismus\r\nekonomista\r\nekonomistčin\r\nekonomistický\r\nekonomističtější\r\nekonomistka\r\nekonomistův\r\nekonomizace\r\nekonomizování\r\nekonomizovaný\r\nekonomizovat\r\nekonomizující\r\nekonomka\r\nekonom\r\nekonomův\r\nekosféra\r\nekostabilizující\r\nekosystém\r\nekosystémový\r\nekoterorista\r\nekoteroristčin\r\nekoteroristka\r\nekoteroristův\r\nekoton\r\nekotop\r\nekotoxicita\r\nekotoxikologický\r\nekotoxikologie\r\nekoturista\r\nekoturistčin\r\nekoturistka\r\nekoturistův\r\nekozemědělcův\r\nekozemědělec\r\nEkrtová\r\nEkrt\r\nEkrtův\r\nektenie\r\nektoparazit\r\nektoparazitův\r\nektopický\r\nektopičtější\r\nekumenický\r\nekumenismus\r\nekumenista\r\nekumenistčin\r\nekumenistka\r\nekumenistův\r\nEkvádorcův\r\nEkvádorčin\r\nEkvádorec\r\nEkvádor\r\nEkvádorka\r\nekvádorský\r\nEkvádořančin\r\nEkvádořanka\r\nEkvádořan\r\nEkvádořanův\r\nekvalizér\r\nekvatoreální\r\nekvátor\r\nekvidistantní\r\nekvilibrista\r\nekvilibristčin\r\nekvilibristika\r\nekvilibristka\r\nekvilibristův\r\nekvilibrium\r\nekvinokcium\r\nekvipáž\r\nekvipotentní\r\nekvitermní\r\nekvitní\r\nekvivalence\r\nekvivalenční\r\nekvivalent\r\nekvivalentnější\r\nekvivalentní\r\nekzematiččin\r\nekzematička\r\nekzematik\r\nekzematikův\r\nekzém\r\nekzémový\r\nelaborace\r\nelaborát\r\nelán\r\nelasticita\r\nelastický\r\nelastičtější\r\nelastika\r\nelastik\r\nelativ\r\nelativní\r\neldorádo\r\nelegance\r\nelegánek\r\nelegánkův\r\nelegán\r\nelegantnější\r\nelegantní\r\nelegánův\r\nelegický\r\nelegičtější\r\nelegie\r\nelegik\r\nelegikův\r\nelektivní\r\nelektrárenský\r\nelektrárenství\r\nelektrárna\r\nelektrárnička\r\nelektrický\r\nelektrička\r\nelektričtější\r\nelektrifikace\r\nelektrifikační\r\nelektrifikování\r\nelektrifikovaný\r\nelektrifikovat\r\nelektrifikovávání\r\nelektrifikovávaný\r\nelektrifikovávat\r\nelektrikářčin\r\nelektrikářka\r\nelektrikářský\r\nelektrikář\r\nelektrikářův\r\nelektrika\r\nelektrisování\r\nelektrisovat\r\nelektrizace\r\nelektrizační\r\nelektrizování\r\nelektrizovaný\r\nelektrizovat\r\nelektrizovávat\r\nelektrizující\r\nelektroakustický\r\nelektroakustičtější\r\nelektroakustika\r\nelektroanalytický\r\nelektrobaterie\r\nelektrobus\r\nelektroda\r\nelektrodialýza\r\nelektrodový\r\nelektrodružstvo\r\nelektrodynamický\r\nelektrodynamičtější\r\nelektrodynamika\r\nelektroenergetický\r\nelektroenergetičtější\r\nelektroenergetika\r\nelektrofakulta\r\nelektrofiltr\r\nelektrofonický\r\nelektrofoničtější\r\nelektroforetický\r\nelektroforetičtější\r\nelektroforéza\r\nelektrofyziologie\r\nelektrogeneze\r\nelektrografický\r\nelektrografičtější\r\nelektrohydraulický\r\nelektrochemický\r\nelektrochemičtější\r\nelektrochemie\r\nelektrochemik\r\nelektrochemikův\r\nelektroinstalace\r\nelektroinstalatér\r\nelektroinstalatérův\r\nelektroinženýrčin\r\nelektroinženýrka\r\nelektroinženýr\r\nelektroinženýrství\r\nelektroinženýrův\r\nelektroizolační\r\nelektrojiskrový\r\nelektrokardiograf\r\nelektrokoagulace\r\nelektrokotel\r\nelektrokotle\r\nelektrokotlech\r\nelektrokotlem\r\nelektrokotli\r\nelektrokotlích\r\nelektrokotlu\r\nelektrokotlů\r\nelektrokotlům\r\nelektrokotly\r\nelektroléčba\r\nelektroléčebný\r\nelektrolyt\r\nelektrolytický\r\nelektrolýza\r\nelektrolyzér\r\nelektromagnet\r\nelektromagnetický\r\nelektromagnetismus\r\nelektromatriál\r\nelektromechanický\r\nelektromechaniččin\r\nelektromechanička\r\nelektromechaničtější\r\nelektromechanik\r\nelektromechanikův\r\nelektroměr\r\nelektroměrový\r\nelektrometr\r\nelektromobil\r\nelektromontér\r\nelektromontérův\r\nelektromotorek\r\nelektromotor\r\nelektromotorický\r\nelektromotoričtější\r\nelektromotorový\r\nelektromyografie\r\nelektronegativita\r\nelektronegativnější\r\nelektron\r\nelektronický\r\nelektroničtější\r\nelektronika\r\nelektronizace\r\nelektronka\r\nelektronkovější\r\nelektronkový\r\nelektronový\r\nelektronvolt\r\nelektroocel\r\nelektroopravna\r\nelektrooptický\r\nelektrooptičtější\r\nelektroosmóza\r\nelektropneumatický\r\nelektropneumatičtější\r\nelektropozitivita\r\nelektropozitivnější\r\nelektropozitivní\r\nelektroprodukce\r\nelektropřípojka\r\nelektrorozvodný\r\nelektroskop\r\nelektrosoučástka\r\nelektrospotřebič\r\nelektrostatický\r\nelektrostatika\r\nelektrošok\r\nelektrotechnický\r\nelektrotechničtější\r\nelektrotechnika\r\nelektrotechnik\r\nelektrotechnikův\r\nelektrotepelný\r\nelektrovod\r\nelektrovodivý\r\nelektřina\r\nelementarista\r\nelementaristčin\r\nelementaristka\r\nelementaristův\r\nelementárnější\r\nelementární\r\nelement\r\nElena\r\nElenčin\r\nElenin\r\nElenka\r\nelevace\r\nelevátorový\r\nelévčin\r\nelévka\r\nelév\r\nelévův\r\nelfí\r\nelf\r\nelfův\r\nEliášová\r\nEliáš\r\nEliášův\r\neliminace\r\neliminační\r\neliminování\r\neliminovaný\r\neliminovat\r\neliminovatelný\r\neliminující\r\nElinčin\r\nElinka\r\nelipsa\r\nelipsograf\r\nelipsoid\r\nelipsoidní\r\nelipsoidový\r\nelipsovitější\r\nelipsovitý\r\nelipsový\r\neliptický\r\neliptičný\r\neliptičtější\r\nelisejský\r\nElisová\r\nElis\r\nElisův\r\nEliščin\r\nEliška\r\nEliška\r\nElišková\r\nEliškův\r\nelitářčin\r\nelitářka\r\nelitářský\r\nelitářství\r\nelitářštější\r\nelitář\r\nelitářův\r\nelita\r\nelitnější\r\nelitní\r\nelixír\r\nElizabeth\r\nelko\r\nelongace\r\nelox\r\neloxování\r\neloxovaný\r\neloxovat\r\nelpíčko\r\nelsalvadorský\r\nElsevír\r\nElsnerová\r\nElsner\r\nElsnerův\r\nElvíra\r\nElvířin\r\nelysejský\r\nemailér\r\nemailérův\r\nemail\r\nemailový\r\nemanace\r\nemancipace\r\nemancipační\r\nemancipovanější\r\nemancipování\r\nemancipovaný\r\nemancipovat\r\nemancipující\r\nEmánek\r\nEmánkův\r\nEman\r\nEmanuela\r\nEmanuelin\r\nEmanuel\r\nEmanuelův\r\nEmanův\r\nemauzský\r\nemauzský\r\nEmauzy\r\nEma\r\nembargo\r\nembargování\r\nembargovaný\r\nembargovat\r\nembéčko\r\nemblém\r\nemblémový\r\nembolie\r\nembólie\r\nembryogeneze\r\nembryologický\r\nembryologie\r\nembryolog\r\nembryologův\r\nembryoložčin\r\nembryoložka\r\nembryo\r\nembryonální\r\nembryopatie\r\nembryotoxicita\r\nembryotoxický\r\nembryum\r\nementál\r\nementálský\r\nemergence\r\nemeritní\r\nemfatický\r\nemfatičtější\r\nemfyteutický\r\nemigrace\r\nemigrační\r\nemigrantčin\r\nemigrantka\r\nemigrant\r\nemigrantský\r\nemigrantštější\r\nemigrantův\r\nemigrování\r\nemigrovaný\r\nemigrovat\r\nemigrovávání\r\nemigrovávat\r\nemigrující\r\nEmilčin\r\nEmilie\r\nEmílie\r\nEmiliin\r\nEmíliin\r\nEmilka\r\nEmil\r\nEmilův\r\neminence\r\neminentnější\r\neminentní\r\nEmin\r\nemirát\r\nemír\r\nemírův\r\nemisarčin\r\nemisarka\r\nemisar\r\nemisarův\r\nemise\r\nemisivita\r\nemisní\r\nemitent\r\nemitentův\r\nemitor\r\nemitování\r\nemitovaný\r\nemitovat\r\nemitující\r\nemko\r\nEmmerová\r\nEmmer\r\nEmmersdorfský\r\nEmmerův\r\nemoce\r\nemociálnější\r\nemocionalita\r\nemocionálnější\r\nemocionální\r\nemočnější\r\nemoční\r\nemotikon\r\nemotivita\r\nemotivnější\r\nemotivní\r\nempatický\r\nempatie\r\nempír\r\nempirický\r\nempiričtější\r\nempirie\r\nempirik\r\nempirikův\r\nempiriokriticismus\r\nempiriokriticistický\r\nempiriokritický\r\nempiriokritičtější\r\nempirismus\r\nempiristický\r\nempírovější\r\nempirový\r\nempírový\r\nEmrich\r\nEmrichův\r\nEMS\r\nemu\r\nemulace\r\nemulační\r\nemulátor\r\nemulgační\r\nemulgátor\r\nemulgovaný\r\nemulgovat\r\nemulování\r\nemulovaný\r\nemulovat\r\nemulovávání\r\nemulovávaný\r\nemulovávat\r\nemulující\r\nemulze\r\nemulzní\r\nEmže\r\nencefal\r\nencefalitida\r\nencefalitis\r\nencefalogram\r\nencefalomyelitida\r\nencefalopatie\r\nencián\r\nencyklika\r\nencyklopedický\r\nencyklopedičtější\r\nencyklopedie\r\nencyklopedismus\r\nencyklopedista\r\nencyklopedistčin\r\nencyklopedistka\r\nencyklopedistův\r\nendemický\r\nendemičtější\r\nendiaron\r\nendivie\r\nEndlerová\r\nEndler\r\nEndlerův\r\nendodontický\r\nendogenní\r\nendokarditida\r\nendokarp\r\nendokrinní\r\nendokrinologický\r\nendokrinologie\r\nendokrinolog\r\nendokrinologův\r\nendokrinoložčin\r\nendokrinoložka\r\nendometrióza\r\nendomorfismus\r\nendomorfní\r\nendoparazitní\r\nendoparazit\r\nendoprotéza\r\nendorfin\r\nendoskelet\r\nendoskop\r\nendoskopický\r\nendoskopičtější\r\nendoskopie\r\nendosperm\r\nendosymbiont\r\nendotermický\r\nendotermičtější\r\nendotermní\r\nendothelia\r\nendotoxinový\r\nenduro\r\nenergetický\r\nenergetička\r\nenergetičtější\r\nenergetika\r\nenergetik\r\nenergetikův\r\nenergetizace\r\nenergický\r\nenergičtější\r\nenergie\r\nenergiový\r\nenergoblok\r\nenergosádrovec\r\nenervující\r\nenfant\r\nenfatico\r\nEngels\r\nEngelsův\r\nEngelšalkův\r\nEnglišův\r\nEngová\r\nEng\r\nEngův\r\nenharmonický\r\nenjambement\r\nenkaustičin\r\nenkaustika\r\nenkláva\r\nenkodér\r\nenko\r\neňo\r\nenologický\r\nenormnější\r\nenormní\r\nentalpie\r\nenteritida\r\nenterohepatický\r\nenterohepatičtější\r\nentice\r\nentita\r\nentlovací\r\nentlování\r\nentlovaný\r\nentlovat\r\nentomologický\r\nentomologičtější\r\nentomologie\r\nentomolog\r\nentomologův\r\nentomoložčin\r\nentomoložka\r\nentrée\r\nentropický\r\nentropie\r\nentusiasmus\r\nentuziasmus\r\nentuziastický\r\nentuziastičtější\r\nentuziazmus\r\nenumerace\r\nenumerační\r\nenviromentální\r\nenvironmentalismus\r\nenvironmentalista\r\nenvironmentalistčin\r\nenvironmentalistika\r\nenvironmentalistka\r\nenvironmentalistův\r\nenvironmentální\r\nenzootický\r\nenzymatický\r\nenzymatičtější\r\nenzym\r\nenzymologický\r\nenzymologie\r\nenzymový\r\nEnže\r\neón\r\nEoolfův\r\nepenteze\r\nepibiont\r\nepicentrum\r\nepický\r\nepicykloida\r\nepicyklový\r\nepicyklus\r\nepičtější\r\nepidemický\r\nepidemičtější\r\nepidemie\r\nepidemiologický\r\nepidemiologičtější\r\nepidemiologie\r\nepidemiolog\r\nepidemiologův\r\nepidemioložčin\r\nepidemioložka\r\nepidermální\r\nepidermoidní\r\nepidiaskop\r\nepidurální\r\nepifenomén\r\nepifyt\r\nepifýza\r\nepigon\r\nepigonský\r\nepigonství\r\nepigonštější\r\nepigonův\r\nepigrafika\r\nepigramatiččin\r\nepigramatička\r\nepigramatik\r\nepigramatikův\r\nepigram\r\nepichlorhydrin\r\nepikatechin\r\nepika\r\nepikureismus\r\nepikurejcův\r\nepikurejec\r\nepikurejský\r\nepikurejštější\r\nepilační\r\nepilátor\r\nepilepsie\r\nepileptický\r\nepileptička\r\nepileptičtější\r\nepileptik\r\nepileptikův\r\nepilog\r\nepilogův\r\nepimorfismus\r\nepimorfní\r\nepiskopát\r\nepisoda\r\nepistemologický\r\nepistemologie\r\nepistulární\r\nepištola\r\nepitaf\r\nepitaxe\r\nepitaxní\r\nepitel\r\nepitelový\r\nepiteta\r\nepiteton\r\nepithelioma\r\nepizoda\r\nepizodický\r\nepizodičtější\r\nepizodista\r\nepizodistčin\r\nepizodistka\r\nepizodistův\r\nepizodka\r\nepizodnější\r\nepizodní\r\nepizootický\r\nepizootologický\r\nepizootologie\r\nepochálnější\r\nepochální\r\nepocha\r\nepopej\r\nepos\r\nepoxid\r\nepoxidový\r\nEPROM\r\nepruveta\r\neradikace\r\neradikační\r\nerár\r\nerární\r\nErasmus\r\nErasmův\r\néra\r\nErbanová\r\nErban\r\nErbanův\r\nErbenová\r\nErben\r\nErbenův\r\nerb\r\nerbiový\r\nerbium\r\nerbovnictví\r\nerbovní\r\nerbový\r\nerekce\r\nerektivita\r\nerektivní\r\nerektor\r\nergativ\r\nergativní\r\nerg\r\nergodický\r\nergodičtější\r\nergometr\r\nergonomický\r\nergonomičtější\r\nergonomie\r\nergonomika\r\nergoterapie\r\nErhartová\r\nErhart\r\nErhartův\r\nEričin\r\nErichsenův\r\nErijský\r\nErika\r\nErik\r\nErikův\r\nEritrea\r\nEritrejcův\r\nEritrejčin\r\nEritrejec\r\nEritrejka\r\neritrejský\r\nerko\r\nerlan\r\nErlanky\r\nerlanový\r\nErnst\r\nErnstův\r\nerodování\r\nerodovaný\r\nerodovat\r\neroico\r\néro\r\nerosenčin\r\nerosenka\r\nerose\r\nerotický\r\nerotičtější\r\nerotika\r\nerotismus\r\nerotizování\r\nerotizovaný\r\nerotizovat\r\nerotizující\r\nerotogenní\r\nerotomaniak\r\nerotomaniakův\r\nerotoman\r\nerotomanův\r\neroze\r\nerozivnější\r\nerozivní\r\nerozní\r\nErpužice\r\nerpužický\r\nerratum\r\nErtnerová\r\nErtner\r\nErtnerův\r\nerudice\r\nerudovanější\r\nerudovaný\r\nerupce\r\nerupční\r\neruptivnější\r\neruptivní\r\nErvín\r\nErvínův\r\nErwin\r\nerythorban\r\nerythorbový\r\nerythrosin\r\nerytrocyt\r\nES\r\nescudo\r\nESČ\r\nesejista\r\nesejistčin\r\nesejistický\r\nesejističtější\r\nesejistika\r\nesejistka\r\nesejistův\r\nesej\r\nesenbáčtější\r\nesenbák\r\nesenbákův\r\nesenbé\r\nesence\r\nesencialismus\r\nesencialistický\r\nesenciální\r\nesesaččin\r\nesesačka\r\nesesáčtější\r\nesesák\r\nesesákův\r\nesesman\r\neschatologický\r\neschatologie\r\neschatolog\r\neschatologův\r\neschatoložčin\r\neschatoložka\r\nesíčko\r\neskadra\r\neskalace\r\neskalátor\r\neskalovaný\r\neskalovat\r\neskalující\r\neskamotáž\r\neskamotér\r\neskamotérský\r\neskamotérství\r\neskapáda\r\neskapismus\r\neskapistický\r\neskomptní\r\nesko\r\neskont\r\neskontní\r\neskorta\r\neskortování\r\neskortovaný\r\neskortovat\r\neskortovávání\r\neskortovávaný\r\neskortovávat\r\neskymácký\r\neskymaččin\r\neskymačka\r\neskymáčtější\r\neskymáčtina\r\nEskymák\r\neskymák\r\nEskymákův\r\neskymákův\r\neskymo\r\neso\r\nesoterický\r\nesoteričtější\r\nesoterika\r\nesoterismus\r\nesovitý\r\nesový\r\nESP\r\nesperantista\r\nesperantistčin\r\nesperantistka\r\nesperantistův\r\nesperanto\r\nesperantský\r\nespézetka\r\nesplanáda\r\nEspoo\r\nespreso\r\nespressivo\r\nestablishment\r\nestakáda\r\nestébáčtější\r\nestébák\r\nestébákův\r\nEster\r\nesteráza\r\nester\r\nesterifikace\r\nesterifikační\r\nesterifikovaný\r\nesterka\r\nesterový\r\nEsteřin\r\nestetický\r\nestetično\r\nestetičtější\r\nestetika\r\nestetik\r\nestetikův\r\nestetismus\r\nestetizování\r\nestetizovaný\r\nestetizovat\r\nestetizující\r\nestét\r\nestétský\r\nestétství\r\nestétův\r\nEstoncův\r\nEstončin\r\nEstonec\r\nEstonka\r\nEstonsko\r\nestonský\r\nestonština\r\nestráda\r\nestrádnější\r\nestrádnictví\r\nestrádní\r\nestragon\r\nestrogen\r\nESVO\r\nešus\r\netablování\r\netablovaný\r\netablovat\r\netablující\r\netalon\r\netamín\r\netamínový\r\netan\r\netanol\r\netanolový\r\netapa\r\netapizace\r\netapovitý\r\netapový\r\netatismus\r\netatista\r\netatistčin\r\netatistický\r\netatističtější\r\netatistka\r\netatistův\r\netažérka\r\netážový\r\netáž\r\netc\r\neten\r\néter\r\néterický\r\néteričtější\r\neternit\r\neternitový\r\néterový\r\netestetický\r\nethan\r\nethanol\r\nethen\r\nether\r\nEthernet\r\nethernetový\r\netherový\r\nethin\r\nethos\r\nethoxyquin\r\nethylalkohol\r\nethylamfetamin\r\nethylbromid\r\nethylcelulóza\r\nethylendiamintetraoctový\r\nethylen\r\nethylenový\r\nethylester\r\nethylgallát\r\nethylhydroxyethyl\r\nethylmaltol\r\nethylmethylcelulóza\r\nethylnatý\r\nethylparahydroxybenzoát\r\netický\r\netičtější\r\netika\r\netiketa\r\netiketka\r\netiketovací\r\netiketovačka\r\netiketování\r\netiketovaný\r\netiketovat\r\netik\r\netikův\r\netin\r\netiologický\r\netiologie\r\nEtiopančin\r\nEtiopanka\r\nEtiopan\r\nEtiopanův\r\nEtiopie\r\netiopský\r\nEtna\r\netnický\r\netničtější\r\netnikum\r\netnobotaniččin\r\netnobotanička\r\netnobotanika\r\netnobotanik\r\netnobotanikův\r\netnocentrický\r\netnocentričtější\r\netnocentrismus\r\netnogeneze\r\netnografčin\r\netnografický\r\netnografičtější\r\netnografie\r\netnografka\r\netnograf\r\netnografův\r\netnolingvistika\r\netnologický\r\netnologie\r\netnolog\r\netnologův\r\netnoložčin\r\netnoložka\r\netnomuzikologický\r\netnomuzikologie\r\netnomuzikolog\r\netnomuzikologův\r\netnomuzikoložčin\r\netnomuzikoložka\r\netologický\r\netologie\r\netolog\r\netologův\r\netoložčin\r\netoložka\r\netos\r\nétos\r\netoxylovaný\r\nEtrusk\r\nEtruskův\r\netruský\r\netruština\r\netuda\r\netylacetát\r\netylakrylát\r\netylalkohol\r\netylcelulóza\r\netylendibromid\r\netylenglykol\r\netylén\r\netylénový\r\netylenoxid\r\netylénoxid\r\netylfenol\r\netylformiát\r\netylchlorid\r\netylismus\r\netyllaktát\r\netylnatý\r\netymologický\r\netymologičtější\r\netymologie\r\netymolog\r\netymologův\r\netymoložčin\r\netymoložka\r\nEU\r\neudaiminismus\r\neudaimonismus\r\neufemický\r\neufemismus\r\neufemistický\r\neufonický\r\neufonie\r\neuforický\r\neuforičtější\r\neuforie\r\neuforizující\r\nEufrat\r\neufratský\r\neufuismus\r\neufuistický\r\neugenický\r\neugeničtější\r\neugenika\r\neucharistický\r\neucharistie\r\neukalypt\r\neukalyptový\r\neukalyptus\r\neukaryotický\r\neukaryotní\r\neukaryot\r\neukaryotův\r\nEukleides\r\neukleidovský\r\neuklidovský\r\nEuklidův\r\neulerovský\r\nEuler\r\nEulerův\r\neunuch\r\neunuchův\r\neurasijský\r\nEuratom\r\neuroamerický\r\neuroasijský\r\neuroatlantický\r\neurobankovka\r\neurocentrismus\r\neurocentristický\r\neurodolarový\r\neurokarta\r\neurokomunismus\r\neurokomunista\r\neurokomunistčin\r\neurokomunistický\r\neurokomunistka\r\neurokomunistův\r\neuroměna\r\neuromince\r\neuro\r\neuroobligace\r\neurooptimismus\r\neurooptimista\r\neurooptimistčin\r\neurooptimistický\r\neurooptimistka\r\neurooptimistův\r\neuropeismus\r\neuropeistický\r\neuropesimismus\r\neuropesimista\r\neuropesimistčin\r\neuropesimistka\r\neuropesimistův\r\neuropiový\r\neuropium\r\nEuropol\r\neurorealismus\r\neurorealista\r\neurorealistčin\r\neurorealistka\r\neurorealistův\r\neuroregionální\r\neuroregion\r\neuroskepticismus\r\neuroskepticistický\r\neuroskeptik\r\neuroskeptikův\r\nEurostat\r\neurošek\r\neurotrh\r\neuroúčet\r\neurozóna\r\nEustachos\r\nEustachův\r\neutanazie\r\neutektický\r\neutektikum\r\neuthanasie\r\neutrofizace\r\neutrofizovat\r\neutrofizující\r\neutrofní\r\nev\r\nevakuace\r\nevakuační\r\nevakuantčin\r\nevakuantka\r\nevakuant\r\nevakuantův\r\nevakuování\r\nevakuovaný\r\nevakuovat\r\nevakuovatelný\r\nevakuující\r\nevaluace\r\nevaluační\r\nevangeliář\r\nevangelický\r\nevangeliččin\r\nevangelička\r\nevangelijní\r\nevangelík\r\nevangelíkův\r\nevangeliový\r\nevangelista\r\nevangelistův\r\nevangelium\r\nevangelizace\r\nevangelizační\r\nevangelizování\r\nevangelizovaný\r\nevangelizovat\r\nevangelní\r\nevaporace\r\nEva\r\nEvčin\r\nEvelína\r\nEvelínčin\r\nEvelínin\r\nEvelínka\r\nevengelium\r\nevent\r\neventualita\r\neventuálně\r\neventuálnější\r\neventuální\r\nEverest\r\nevergreen\r\nEviččin\r\nEvička\r\nevidence\r\nevidenční\r\nevidentnější\r\nevidentní\r\nevidování\r\nevidovaný\r\nevidovat\r\nevidovávání\r\nevidovávaný\r\nevidovávat\r\nevidující\r\nEvin\r\neviný\r\nevironmentální\r\nEvka\r\nevokace\r\nevokování\r\nevokovaný\r\nevokovat\r\nevokovávání\r\nevokovávaný\r\nevokovávat\r\nevokující\r\nevoluce\r\nevolucionismus\r\nevolucionista\r\nevolucionistčin\r\nevolucionistický\r\nevolucionističtější\r\nevolucionistka\r\nevolucionistův\r\nevolučnější\r\nevoluční\r\nevoluta\r\nevolventa\r\nevolventní\r\nevropančin\r\nevropanka\r\nEvropan\r\nevropan\r\nevropanství\r\nevropanštější\r\nEvropanův\r\nevropanův\r\nEvropa\r\nevropeismus\r\nevropeistický\r\nevropocentrický\r\nevropocentrismus\r\nevropský\r\nevropštější\r\nEvženie\r\nEvženiin\r\nEvžen\r\nEvženův\r\nex\r\nexaktnější\r\nexaktní\r\nexaltovaný\r\nexaminátorčin\r\nexaminátorka\r\nexaminátor\r\nexaminátorův\r\nExcalibur\r\nexcelence\r\nexcelentnější\r\nexcelentní\r\nexcelování\r\nexcelovat\r\nexcelující\r\nexcentricita\r\nexcentrický\r\nexcentričtější\r\nexcentrik\r\nexcentrikův\r\nexcentrismus\r\nexcerpce\r\nexcerpční\r\nexcerpování\r\nexcerpovaný\r\nexcerpovat\r\nexces\r\nexcimerový\r\nexcísař\r\nexcísařův\r\nexcitace\r\nexcitační\r\nexcitans\r\nexcitovaný\r\nexecírka\r\nexegetický\r\nexegetika\r\nexegeze\r\nexekuce\r\nexekuční\r\nexekutiva\r\nexekutivní\r\nexekutorní\r\nexekutor\r\nexekutorský\r\nexekutorův\r\nexempční\r\nexemplární\r\nexemplář\r\nexemplifikace\r\nexemplifikování\r\nexemplifikovaný\r\nexemplifikovat\r\nexercicie\r\nexerciční\r\nexhalace\r\nexhalát\r\nexhibice\r\nexhibicionismus\r\nexhibicionista\r\nexhibicionistčin\r\nexhibicionistický\r\nexhibicionističtější\r\nexhibicionistka\r\nexhibicionistův\r\nexhibiční\r\nexhibování\r\nexhibovaný\r\nexhibovat\r\nexhibující\r\nexhortace\r\nexhumace\r\nexhumování\r\nexhumovaný\r\nexhumovat\r\nexhumovávat\r\nexil\r\nexilový\r\nexistence\r\nexistence\r\nexistencialismus\r\nexistencialista\r\nexistencialistčin\r\nexistencialistický\r\nexistencialističtější\r\nexistencialistka\r\nexistencialistův\r\nexistenciální\r\nexistencionalismus\r\nexistencionalista\r\nexistencionalistčin\r\nexistencionalistický\r\nexistencionalističtější\r\nexistencionalistka\r\nexistencionalistův\r\nexistencionálnější\r\nexistenční\r\nexistování\r\nexistovat\r\nexistující\r\nexitus\r\nexjezuitský\r\nexkavátor\r\nexklusivismus\r\nexklusivistický\r\nexklusivnější\r\nexkluze\r\nexkluzivismus\r\nexkluzivita\r\nexkluzivnější\r\nexkluzívnější\r\nexkluzivní\r\nexkluzívní\r\nexkomunikace\r\nexkomunikování\r\nexkomunikovaný\r\nexkomunikovat\r\nexkomunikující\r\nexkomunista\r\nexkomunistčin\r\nexkomunistka\r\nexkomunistův\r\nexkrálovna\r\nexkrál\r\nexkrálův\r\nexkrece\r\nexkrementace\r\nexkrement\r\nexkret\r\nexkurse\r\nexkurs\r\nexkurze\r\nexkurz\r\nexkvisitnější\r\nexkvizitnější\r\nexlibris\r\nexligista\r\nexligistčin\r\nexligistka\r\nexligistův\r\nexligový\r\nexmanželčin\r\nexmanželka\r\nexministr\r\nexministrův\r\nexmistr\r\nexmistrův\r\nExnerová\r\nExner\r\nExnerův\r\nexocytóza\r\nexodus\r\nexogenní\r\nexoplaneta\r\nexorcismus\r\nexorcista\r\nexorcistčin\r\nexorcistka\r\nexorcistův\r\nexotermický\r\nexotermičtější\r\nexotermní\r\nexotický\r\nexotičtější\r\nexotika\r\nexotismus\r\nexot\r\nexotův\r\nexpandér\r\nexpandování\r\nexpandovaný\r\nexpandovat\r\nexpandovávání\r\nexpandovávaný\r\nexpandovávat\r\nexpandující\r\nexpanse\r\nexpanze\r\nexpanzionismus\r\nexpanzionistický\r\nexpanzionističtější\r\nexpanzivita\r\nexpanzivnější\r\nexpanzivní\r\nexpanzívní\r\nexpanzní\r\nexpectorans\r\nexpedice\r\nexpediční\r\nexpedování\r\nexpedovaný\r\nexpedovat\r\nexpedovávání\r\nexpedovávaný\r\nexpedovávat\r\nexpedující\r\nexpektace\r\nexpektační\r\nexpeler\r\nexperimentalista\r\nexperimentalistčin\r\nexperimentalistka\r\nexperimentalistův\r\nexperimentálnější\r\nexperimentální\r\nexperimentátorčin\r\nexperimentátorka\r\nexperimentátor\r\nexperimentátorův\r\nexperiment\r\nexperimentování\r\nexperimentovaný\r\nexperimentovat\r\nexperimentující\r\nexpertčin\r\nexpertiza\r\nexpertíza\r\nexpertizní\r\nexpertka\r\nexpertní\r\nexpert\r\nexpertův\r\nexpirace\r\nexpirační\r\nexplanatorní\r\nexplantátový\r\nexplicitnější\r\nexplicitní\r\nexplikace\r\nexplikační\r\nexploatace\r\nexploatační\r\nexploatovanější\r\nexploatování\r\nexploatovaný\r\nexploatovat\r\nexploatující\r\nexplodování\r\nexplodovat\r\nexplodovávání\r\nexplodovávat\r\nexplodující\r\nexplorace\r\nexplorační\r\nexplose\r\nexploze\r\nexplozionalismus\r\nexplozivnější\r\nexplozivní\r\nexplozívní\r\nexpodnikatelčin\r\nexpodnikatelka\r\nexponát\r\nexponátový\r\nexponenciála\r\nexponenciální\r\nexponent\r\nexponentův\r\nexponovanější\r\nexponování\r\nexponovaný\r\nexponovat\r\nexponující\r\nexportér\r\nexportérský\r\nexportérův\r\nexport\r\nexportní\r\nexportovanější\r\nexportování\r\nexportovaný\r\nexportovat\r\nexportovatelnější\r\nexportovávání\r\nexportovávaný\r\nexportovávat\r\nexportující\r\nexportuschopný\r\nexposice\r\nexposlancův\r\nexposlanec\r\nexposlankyně\r\nexposlankynin\r\nexpozé\r\nexpozice\r\nexpoziční\r\nexpozimetr\r\nexpozitura\r\nexprese\r\nexpres\r\nexpresionalistický\r\nexpresionismus\r\nexpresionista\r\nexpresionistčin\r\nexpresionistický\r\nexpresionističtější\r\nexpresionistka\r\nexpresionistův\r\nexpresivita\r\nexpresivnější\r\nexpresívnější\r\nexpresivní\r\nexpresívní\r\nexpresnější\r\nexpresní\r\nexprezident\r\nexprezidentův\r\nexpropriace\r\nexpurgování\r\nexpurgovaný\r\nexpurgovat\r\nexslávista\r\nexslávistčin\r\nexslávistka\r\nexslávistův\r\nexsocialista\r\nexsocialistčin\r\nexsocialistka\r\nexsocialistův\r\nextaktický\r\nextatický\r\nextatičtější\r\nextáze\r\nextempore\r\nextemporování\r\nextemporovat\r\nextendování\r\nextendovaný\r\nextendovat\r\nextendující\r\nextensivnější\r\nextenze\r\nextenzifikace\r\nextenzifikační\r\nextenzifikační\r\nextenzionalita\r\nextenzionální\r\nextenzivnější\r\nextenzívnější\r\nextenzivní\r\nextenzívní\r\nexteriér\r\nexteriérový\r\nexteriorita\r\nexteriorní\r\nexternalita\r\nexternalizace\r\nexternismus\r\nexternista\r\nexternistčin\r\nexternistka\r\nexternistův\r\nexterní\r\nextirpace\r\nextirpační\r\nextra\r\nextradice\r\nextrahování\r\nextrahovaný\r\nextrahovat\r\nextrahovatelný\r\nextrakce\r\nextrakční\r\nextrakt\r\nextraktivní\r\nextraliga\r\nextraligový\r\nextranet\r\nextrapolace\r\nextrapolování\r\nextrapolovaný\r\nextrapolovat\r\nextrapolovávání\r\nextrapolovávaný\r\nextrapolovávat\r\nextrasuchý\r\nextratřída\r\nextravagance\r\nextravagantnější\r\nextravagantní\r\nextravilán\r\nextremální\r\nextrém\r\nextremismus\r\nextrémismus\r\nextremista\r\nextrémista\r\nextremistčin\r\nextrémistický\r\nextremistický\r\nextremističtější\r\nextrémističtější\r\nextremistka\r\nextremistův\r\nextrémistův\r\nextremnější\r\nextrémnější\r\nextrémní\r\nextrospekce\r\nextrovertčin\r\nextrovertka\r\nextrovertnější\r\nextrovertní\r\nextrovert\r\nextrovertův\r\nextroverze\r\nextrovnější\r\nextrovní\r\nextrudování\r\nextrudovaný\r\nextrudovat\r\nextruze\r\nexulantčin\r\nexulantka\r\nexulant\r\nexulantský\r\nexulantův\r\nEzdráš\r\nEzdrášův\r\nEzechiáš\r\nEzechiášův\r\nEzechiel\r\nEzechielův\r\nEzop\r\nEzopův\r\nezoterický\r\nezoterismus\r\nFábera\r\nFáberová\r\nFáberův\r\nFabianová\r\nFabiánová\r\nFabian\r\nFabián\r\nFabianův\r\nFabiánův\r\nfabionový\r\nfábor\r\nfabrička\r\nfabrikant\r\nfabrikantův\r\nfabrika\r\nfabrikovaný\r\nfabulace\r\nfabulační\r\nfabule\r\nfabulování\r\nfabulovaný\r\nfabulovat\r\nfabulující\r\nfacettovací\r\nfacettování\r\nfacettovaný\r\nfacettovat\r\nfacile\r\nfacilitátor\r\nfacilitátorův\r\nfacilita\r\nfacka\r\nfackovací\r\nfackování\r\nfackovaný\r\nfackovat\r\nfackující\r\nfacto\r\nFáček\r\nFáčková\r\nFáčkův\r\nfačování\r\nfačovaný\r\nfačovat\r\nfáč\r\nfádnější\r\nfádní\r\nFadrhoncová\r\nFadrhonc\r\nFadrhoncův\r\nfaerský\r\nfaerština\r\nfagocyt\r\nfagocytóza\r\nfagocytující\r\nfagot\r\nfagotista\r\nfagotistčin\r\nfagotistka\r\nfagotistův\r\nfagotový\r\nfág\r\nfágův\r\nFahrenheit\r\nFahrenheitův\r\nfachidiotismus\r\nFaifrová\r\nFaifr\r\nFaifrův\r\nfair\r\nFaitová\r\nFait\r\nFaitův\r\nfajáns\r\nfajánsový\r\nfajfka\r\nFajfrlíková\r\nFajfrlík\r\nFajfrlíkův\r\nFajglová\r\nFajgl\r\nFajglův\r\nfajka\r\nFajkusová\r\nFajkus\r\nFajkusův\r\nfajnovější\r\nfajnovka\r\nfajnový\r\nfajnšmekr\r\nfajnšmekrův\r\nfakan\r\nfakanův\r\nfakír\r\nfakirství\r\nfakírštější\r\nfakírův\r\nfakoemulsifikace\r\nfaksimile\r\nfaksimile\r\nfaksimilní\r\nfaksimilový\r\nfakt\r\nfaktický\r\nfaktický\r\nfaktičtější\r\nfaktičtější\r\nfaktografický\r\nfaktografičtější\r\nfaktografie\r\nfaktorgrupa\r\nfaktor\r\nfaktorial\r\nfaktoriál\r\nfaktoring\r\nfaktoringový\r\nfaktorizace\r\nfaktorizační\r\nfaktorový\r\nfaktorský\r\nfaktorský\r\nfaktorův\r\nfaktum\r\nfakturace\r\nfakturační\r\nfakturantčin\r\nfakturantka\r\nfaktura\r\nfakturista\r\nfakturistův\r\nfakturovací\r\nfakturování\r\nfakturovaný\r\nfakturovat\r\nfakule\r\nfakulový\r\nfakultativnější\r\nfakultativní\r\nfakulta\r\nfakultní\r\nfalanga\r\nfalangista\r\nfalangistčin\r\nfalangistka\r\nfalangistův\r\nFalbrová\r\nFalbr\r\nFalbrův\r\nFalc\r\nFalcko\r\nfalckrabě\r\nfalckrabí\r\nfalcký\r\nFalcký\r\nFalcon\r\nFalconův\r\nfalcování\r\nfalcovaný\r\nfalcovat\r\nfalcový\r\nfald\r\nfaldíček\r\nfaldík\r\nfaleš\r\nfalešnější\r\nfalešnice\r\nfalešník\r\nfalešníkův\r\nfalešný\r\nFalharová\r\nFalhar\r\nFalharův\r\nFalklanďančin\r\nFalklanďanka\r\nFalklanďan\r\nFalklanďanův\r\nfalklandský\r\nFalklandy\r\nFalknov\r\nfalknovský\r\nfalopletysmograf\r\nfalos\r\nFaloutová\r\nFalout\r\nFaloutův\r\nfalset\r\nfalsetový\r\nfalsum\r\nfalše\r\nfalšemi\r\nfalši\r\nfalší\r\nfalších\r\nfalším\r\nfalšovanější\r\nfalšování\r\nfalšovaný\r\nfalšovat\r\nfalšovatelčin\r\nfalšovatelka\r\nfalšovatelnější\r\nfalšovatelný\r\nfalšovatel\r\nfalšovatelův\r\nfalšující\r\nFalta\r\nFaltová\r\nFaltusová\r\nFaltus\r\nFaltusův\r\nFaltův\r\nFaltýnek\r\nFaltýnková\r\nFaltýnkův\r\nFaltysová\r\nFaltys\r\nFaltysův\r\nfalus\r\nfalzetový\r\nfalzifikace\r\nfalzifikát\r\nfalzifikátor\r\nfalzifikovatelný\r\nfalzifikující\r\nfalzum\r\nfáma\r\nfamiliárnější\r\nfamiliární\r\nfamiliérnější\r\nfamiliérní\r\nfamóznější\r\nfamózní\r\nFAMU\r\nfanatický\r\nfanatiččin\r\nfanatička\r\nfanatičtější\r\nfanatik\r\nfanatikův\r\nfanatismus\r\nfanatizování\r\nfanatizovaný\r\nfanatizovat\r\nFančin\r\nfanda\r\nfandění\r\nfandící\r\nfandit\r\nfandovský\r\nfandovství\r\nfandův\r\nfanfára\r\nfanfarón\r\nfanfarónský\r\nfanfarónštější\r\nfanfarónův\r\nfanfárový\r\nfangle\r\nfángle\r\nfangličkářství\r\nfanglička\r\nFanka\r\nfanoušek\r\nfanouškovství\r\nfanouškův\r\nFanta\r\nfantasie\r\nfantasknější\r\nfantaskní\r\nfantasmagorický\r\nfantasmagorie\r\nfantasma\r\nfantasta\r\nfantastický\r\nfantastičtější\r\nfantastika\r\nfantastův\r\nfantazie\r\nfantazijnější\r\nfantazijní\r\nfantazírování\r\nfantazírovaný\r\nfantazírovat\r\nfantazírující\r\nfant\r\nfantóm\r\nfantom\r\nfantomův\r\nfantómův\r\nFantová\r\nFantův\r\nfanynka\r\nFAO\r\nFAQ\r\nFaraday\r\nFaradayův\r\nfarad\r\nfárající\r\nfárání\r\nfáraný\r\nfarao\r\nfaraón\r\nfaraon\r\nfaraonův\r\nfaraónův\r\nfarářčin\r\nfarářka\r\nfarářský\r\nfarář\r\nfarářův\r\nfárat\r\nfara\r\nFárek\r\nfaremní\r\nfarizejčin\r\nfarizejka\r\nfarizejský\r\nfarizejství\r\nfarizejštější\r\nfarizej\r\nfarizejův\r\nfarizeus\r\nfarizeův\r\nFarkačová\r\nFarkač\r\nFarkačův\r\nFarkašová\r\nFarkaš\r\nFarkašův\r\nfarka\r\nFárková\r\nFárkův\r\nfarmaceutčin\r\nfarmaceutický\r\nfarmaceutičtější\r\nfarmaceutka\r\nfarmaceut\r\nfarmaceutův\r\nfarmacie\r\nfarmakognozie\r\nfarmakologický\r\nfarmakologie\r\nfarmakolog\r\nfarmakologův\r\nfarmakoložčin\r\nfarmakoložka\r\nfarmakoterapie\r\nfarmakotoxikologický\r\nfarmářčin\r\nfarmaření\r\nfarmářka\r\nfarmářský\r\nfarmář\r\nfarmářův\r\nfarma\r\nfarmový\r\nfarnice\r\nfarničin\r\nFarníková\r\nfarník\r\nFarník\r\nFarníkův\r\nfarníkův\r\nfarní\r\nFarský\r\nfarský\r\nfarštější\r\nfáry\r\nfasáda\r\nfasádnický\r\nfasádník\r\nfasádový\r\nfascie\r\nfascikl\r\nfascinace\r\nfascinovanější\r\nfascinování\r\nfascinovaný\r\nfascinovat\r\nfascinující\r\nfaseta\r\nfasetovací\r\nfasetování\r\nfasetovaný\r\nfasetovat\r\nfasetový\r\nFaso\r\nfasování\r\nfasovaný\r\nfasovat\r\nfašírka\r\nfašismus\r\nfašista\r\nfašistčin\r\nfašistický\r\nfašističtější\r\nfašistka\r\nfašistův\r\nfašizace\r\nfašizující\r\nfatalismus\r\nfatalista\r\nfatalistčin\r\nfatalistický\r\nfatalističtější\r\nfatalistka\r\nfatalistův\r\nfatálnější\r\nfatální\r\nfata\r\nFatima\r\nfatimský\r\nFatka\r\nFátorová\r\nFátor\r\nFátorův\r\nfatranský\r\nFatra\r\nFatrdlo\r\nFatrdlová\r\nFatrdlův\r\nFauknerová\r\nFaukner\r\nFauknerův\r\nfaul\r\nfaulování\r\nfaulovaný\r\nfaulovat\r\nfaulující\r\nfauna\r\nfaunistický\r\nfaun\r\nfaunův\r\nFaustová\r\nFaust\r\nFaustův\r\nfauvismus\r\nfauvista\r\nfauvistčin\r\nfauvistický\r\nfauvističtější\r\nfauvistka\r\nfauvistův\r\nfavoritčin\r\nfavoritka\r\nfavorit\r\nfavoritův\r\nfavorizování\r\nfavorizovaný\r\nfavorizovat\r\nfavorizovávat\r\nfavorizující\r\nfax\r\nfaxinkový\r\nfaxmodem\r\nfaxmodemový\r\nfaxovací\r\nfaxování\r\nfaxovaný\r\nfaxovat\r\nfaxový\r\nfa\r\nfazeta\r\nfáze\r\nfazoch\r\nfazole\r\nfazol\r\nfazolka\r\nfazolový\r\nfázoměr\r\nfazona\r\nfazóna\r\nfazonka\r\nfazónka\r\nfazónový\r\nfázor\r\nfázovací\r\nfázování\r\nfázový\r\nFBI\r\nFDDI\r\nFe\r\nFečko\r\nFečková\r\nFečkův\r\nfederace\r\nfederační\r\nfederalismus\r\nfederalista\r\nfederalistčin\r\nfederalistický\r\nfederalistka\r\nfederalistův\r\nfederalizace\r\nfederalizační\r\nfederalizovaný\r\nfederalizovat\r\nfederalizující\r\nfederální\r\nfederativnější\r\nfederativní\r\nfederovaný\r\nFederselová\r\nFedersel\r\nFederselův\r\nFedjuková\r\nFedjuk\r\nFedjukův\r\nFedorová\r\nFedor\r\nFedorův\r\nfedrování\r\nfedrovaný\r\nfedrovat\r\nféerie\r\nfeferon\r\nfeferonka\r\nfeferonkový\r\nFehérová\r\nFehér\r\nFehérův\r\nfechtýř\r\nfechtýřův\r\nFeiková\r\nFeik\r\nFeikův\r\nfejeton\r\nfejetonista\r\nfejetonistčin\r\nfejetonističin\r\nfejetonističtější\r\nfejetonistika\r\nfejetonistka\r\nfejetonistův\r\nfejetonový\r\nFejfarová\r\nFejfar\r\nFejfarův\r\nFejklová\r\nFejkl\r\nFejklův\r\nFejlek\r\nFejlková\r\nFejlkův\r\nFejová\r\nFejtová\r\nFejt\r\nFejtův\r\nFej\r\nFejův\r\nfekálie\r\nfekálnější\r\nfekální\r\nfelace\r\nFelbabka\r\nFelcmanová\r\nFelcman\r\nFelcmanův\r\nFelicie\r\nFeliciin\r\nFelix\r\nFelixův\r\nFelklová\r\nFelkl\r\nFelklův\r\nFellini\r\nFelnerová\r\nFelner\r\nFelnerův\r\nFemiaková\r\nFemiak\r\nFemiakův\r\nfemininnější\r\nfemininum\r\nfeminismus\r\nfeminista\r\nfeministčin\r\nfeministický\r\nfeminističtější\r\nfeministka\r\nfeministův\r\nfeminita\r\nfeminizace\r\nfeminizování\r\nfeminizovaný\r\nfeminizovat\r\nfeminizující\r\nfenanthren\r\nfena\r\nFenclová\r\nFencl\r\nFenclův\r\nFendrychová\r\nFendrych\r\nFendrychův\r\nfén\r\nFénicie\r\nfénický\r\nféničan\r\nféničanův\r\nFeničová\r\nféničtější\r\nféničtina\r\nFenič\r\nFeničův\r\nfenik\r\nfénix\r\nFénix\r\nFénixův\r\nfenka\r\nFenklová\r\nFenkl\r\nFenklův\r\nfenmetrazin\r\nfenogramatický\r\nfenolftalein\r\nfenol\r\nfenolický\r\nfenoličtější\r\nfenolkarbonový\r\nfenologický\r\nfenologičtější\r\nfenologie\r\nfenolog\r\nfenologův\r\nfenolový\r\nfenoloxigenáza\r\nfenoložčin\r\nfenoložka\r\nfenomenalismus\r\nfenomenální\r\nfenomen\r\nfenomén\r\nfenomenologický\r\nfenomenologičtější\r\nfenomenologie\r\nfenomenolog\r\nfenomenologův\r\nfenomenoložčin\r\nfenomenoložka\r\nfenotyp\r\nfenotypový\r\nfénový\r\nfenykl\r\nfenyklový\r\nfenylalanin\r\nfenyletylamin\r\nfér\r\nFerda\r\nFerdinandčin\r\nFerdinandka\r\nFerdinand\r\nFerdinandův\r\nFerdův\r\nFerencová\r\nFerenc\r\nFerencův\r\nférie\r\nferina\r\nferinův\r\nferit\r\nferitický\r\nferitičtější\r\nferitový\r\nfermentace\r\nfermentační\r\nfermentativní\r\nferment\r\nfermentor\r\nfermentovaný\r\nfermežový\r\nfermež\r\nfermion\r\nfermium\r\nfernet\r\nferoce\r\nferoelektrický\r\nferoelektričtější\r\nferomagnetický\r\nferomon\r\nferomonový\r\nferosilicia\r\nférovější\r\nférový\r\nferrikyanid\r\nferritový\r\nferrochrom\r\nferrokyanid\r\nferrokyanidový\r\nferromagnetický\r\nferromagnetičtější\r\nferromangan\r\nFerromet\r\nferrovanad\r\nferroxylový\r\nfertilita\r\nfertilní\r\nfěrtoch\r\nferulový\r\nFeřtová\r\nFeřt\r\nFeřtův\r\nfestiválek\r\nfestival\r\nfestivalový\r\nfešácký\r\nfešáčtější\r\nfešák\r\nfešákův\r\nfešanda\r\nfešnější\r\nfešný\r\nFET\r\nfeťačka\r\nfeťák\r\nfeťákův\r\nfetišismus\r\nfetišista\r\nfetišistčin\r\nfetišistický\r\nfetišistka\r\nfetišistův\r\nfetišizace\r\nfetišizující\r\nfetiš\r\nfetování\r\nfetovaný\r\nfetovat\r\nfetující\r\nfeudalismus\r\nfeudalista\r\nfeudalistův\r\nfeudalizace\r\nfeudálnější\r\nfeudální\r\nfeudál\r\nfeudálův\r\nfeudum\r\nFeuerbach\r\nFeuerbachův\r\nFeynman\r\nFeynmanův\r\nfez\r\nff\r\nfff\r\nfiakr\r\nfiakrista\r\nfiakristův\r\nFiala\r\nfiala\r\nfialka\r\nfialkový\r\nFialová\r\nfialovější\r\nfialovění\r\nfialovět\r\nfialovomodřejší\r\nfialový\r\nFialův\r\nfiasko\r\nfiátek\r\nfiatka\r\nfiat\r\nFibigerová\r\nFibiger\r\nFibigerův\r\nFibichová\r\nFibich\r\nFibichův\r\nFibingerová\r\nFibinger\r\nFibingerův\r\nfibrilace\r\nfibrinolytický\r\nfibrinolytičtější\r\nfibroadenom\r\nfibromatóza\r\nfibroskop\r\nfibroskopický\r\nfibroskopie\r\nfibróza\r\nficčin\r\nficin\r\nficka\r\nfiction\r\nfičení\r\nfičet\r\nfidlat\r\nfidlátko\r\nfidlovačka\r\nFidranský\r\nfiduciární\r\nFidži\r\nFidžijcův\r\nFidžijčin\r\nFidžijec\r\nFidžijka\r\nfidžijský\r\nFiedlerová\r\nFiedler\r\nFiedlerův\r\nFierlingerův\r\nFIFA\r\nFiferna\r\nFifernová\r\nFifernův\r\nFifinčin\r\nFifinka\r\nfiflena\r\nFigaro\r\nFigarův\r\nfígl\r\nfiguralista\r\nfiguralistčin\r\nfiguralistka\r\nfiguralistův\r\nfigurálnější\r\nfigurální\r\nfigurantčin\r\nfigurantka\r\nfigurativnější\r\nfigurativní\r\nfigura\r\nfigurína\r\nfigurka\r\nfigurování\r\nfigurovat\r\nfigurovávat\r\nfigurový\r\nfigurující\r\nFichte\r\nFichtnerová\r\nFichtner\r\nFichtnerův\r\nFichtův\r\nFikáček\r\nFikáčková\r\nFikáčkův\r\nfikanější\r\nfikaný\r\nFikarová\r\nFikar\r\nFikarův\r\nfikce\r\nfikčnější\r\nFikejzová\r\nFikejz\r\nFikejzův\r\nFikera\r\nFikerová\r\nFikerův\r\nfík\r\nfiknout\r\nfíkovník\r\nfíkový\r\nfiktivnější\r\nfiktivní\r\nfíkus\r\nfíkusový\r\nFiláček\r\nFiláčková\r\nFiláčkův\r\nFiladelfie\r\nfilantropčin\r\nfilantropický\r\nfilantropičtější\r\nfilantropie\r\nfilantropka\r\nfilantrop\r\nfilantropův\r\nfilatelie\r\nfilatelista\r\nfilatelistčin\r\nfilatelistický\r\nfilatelistka\r\nfilatelistův\r\nfilc\r\nfilcka\r\nfilcový\r\nfilé\r\nfilek\r\nfilesystém\r\nfilharmonický\r\nfilharmonie\r\nfilharmonik\r\nfiliálka\r\nfiliální\r\nFilička\r\nFiličková\r\nFiličkův\r\nfiligrán\r\nfiligránový\r\nfiligránský\r\nfiligránštější\r\nFilipan\r\nFilipcová\r\nFilipcův\r\nFilipec\r\nFilípek\r\nfilipika\r\nFilipíncův\r\nFilipínčin\r\nFilipínec\r\nFilipínka\r\nfilipínský\r\nfilipínština\r\nFilipíny\r\nFilipiová\r\nFilipi\r\nFilipiův\r\nFilípková\r\nFilípkův\r\nFilipová\r\nfilip\r\nFilip\r\nFilipův\r\nfilipův\r\nFilištín\r\nfilištín\r\nfilištínský\r\nfilmařčin\r\nfilmařka\r\nfilmařský\r\nfilmařství\r\nfilmař\r\nfilmařův\r\nfilmeček\r\nfilm\r\nfilmografický\r\nfilmografičtější\r\nfilmografie\r\nfilmotéka\r\nfilmovací\r\nfilmovanější\r\nfilmování\r\nfilmovaný\r\nfilmovat\r\nfilmovávání\r\nfilmovávaný\r\nfilmovávat\r\nfilmovější\r\nfilmový\r\nfilmující\r\nfilodendron\r\nfilologický\r\nfilologičtější\r\nfilologie\r\nfilolog\r\nfilologův\r\nfiloložčin\r\nfiloložka\r\nfilosofčin\r\nfilosofický\r\nfilosofický\r\nfilosofičtější\r\nfilosofie\r\nfilosofka\r\nfilosofování\r\nfilosofovat\r\nfilosof\r\nfilosofující\r\nfilosofův\r\nfilozofčin\r\nfilozofickoetický\r\nfilozofický\r\nfilozofický\r\nfilozofičtější\r\nfilozofie\r\nfilozofka\r\nfilozofování\r\nfilozofovat\r\nfilozof\r\nfilozofský\r\nfilozofštější\r\nfilozofující\r\nfilozofův\r\nfiltrace\r\nfiltrační\r\nfiltrát\r\nfiltr\r\nfiltrovací\r\nfiltrovanější\r\nfiltrování\r\nfiltrovaný\r\nfiltrovat\r\nfiltrovatelnější\r\nfiltrovatelný\r\nfiltrovávat\r\nfiltrový\r\nfiltrující\r\nfilumenie\r\nfiluta\r\nFIM\r\nfimfárum\r\nfimóza\r\nfinále\r\nfinále\r\nfinalista\r\nfinalistčin\r\nfinalistka\r\nfinalistův\r\nfinalizace\r\nfinalizovaný\r\nfinalizovat\r\nfinalizující\r\nfinální\r\nfinálový\r\nfinance\r\nfinancovanější\r\nfinancování\r\nfinancovaný\r\nfinancovat\r\nfinancovatelný\r\nfinancovávání\r\nfinancovávaný\r\nfinancovávat\r\nfinanc\r\nfinancující\r\nfinancův\r\nfinančněprávní\r\nfinančnice\r\nfinančnický\r\nfinančnictví\r\nfinančničtější\r\nfinančník\r\nfinančníkův\r\nfinanční\r\nFinčin\r\nfinesa\r\nfingování\r\nfingovaný\r\nfingovat\r\nFinicová\r\nFinic\r\nFinicův\r\nfinišmančin\r\nfinišmanka\r\nfinišovat\r\nfiniš\r\nfinišující\r\nfinitární\r\nFinka\r\nFinková\r\nFink\r\nFinkův\r\nfinový\r\nFin\r\nFinsko\r\nfinský\r\nfinština\r\nfinta\r\nfintění\r\nfintit\r\nfintivý\r\nFinův\r\nfióla\r\nFiona\r\nFionin\r\nFIR\r\nfiremní\r\nfirewall\r\nfirewalling\r\nfirma\r\nfirmička\r\nfirmware\r\nfirmwarový\r\nfirn\r\nFirytová\r\nFiryt\r\nFirytův\r\nFisherová\r\nFisher\r\nFisherův\r\nFischerová\r\nFischer\r\nFischerův\r\nfiskalismus\r\nfiskalistický\r\nfiskální\r\nfistule\r\nfistulka\r\nfistulkový\r\nFISYO\r\nFišarová\r\nFišar\r\nFišarův\r\nFišera\r\nFišerová\r\nFišer\r\nFišerův\r\nfiškus\r\nfiškusův\r\nFišnarová\r\nFišnar\r\nFišnarův\r\nfištrón\r\nfit\r\nfitcentrum\r\nFITES\r\nfitness\r\nfixace\r\nfixační\r\nfix\r\nfixírka\r\nfixlování\r\nfixlovaný\r\nfixlovat\r\nfixnější\r\nfixní\r\nfixování\r\nfixovaný\r\nfixovat\r\nfixový\r\nfixující\r\nfízl\r\nfízlův\r\nfjord\r\nfládrovací\r\nfládrování\r\nfládrovaný\r\nfládrovat\r\nflagelantčin\r\nflagelantka\r\nflagelant\r\nflagelantův\r\nflagrantní\r\nflákač\r\nflákačův\r\nflákání\r\nflákaný\r\nflákat\r\nfláka\r\nflák\r\nfláknout\r\nflakónek\r\nflakón\r\nflambování\r\nflambovaný\r\nflambovat\r\nflamendr\r\nflamendrův\r\nflám\r\nFlaminiův\r\nflámování\r\nflámovat\r\nFlám\r\nflámština\r\nFlanderka\r\nFlanderková\r\nFlanderkův\r\nflanderský\r\nflanderský\r\nFlandry\r\nflanel\r\nflanelka\r\nflanelový\r\nflašinet\r\nflašinetový\r\nflaška\r\nflaškový\r\nflaštička\r\nflaušový\r\nflauš\r\nflavanoid\r\nflavin\r\nflavonoid\r\nflavoxantin\r\nFleglová\r\nFléglová\r\nFlegl\r\nFlégl\r\nFleglův\r\nFléglův\r\nflegmatický\r\nflegmatiččin\r\nflegmatička\r\nflegmatičtější\r\nflegmatik\r\nflegmatikův\r\nflegmatismus\r\nFlegrová\r\nFlegr\r\nFlegrův\r\nFleichmanová\r\nFleichman\r\nFleichmanův\r\nFleischerová\r\nFleischer\r\nFleischerův\r\nFleischmannová\r\nFleischmann\r\nFleischmannův\r\nFlejberková\r\nFlejberk\r\nFlejberkův\r\nFlekalová\r\nFlekal\r\nFlekalův\r\nflekanec\r\nflekatější\r\nflekatý\r\nflek\r\nFlek\r\nflektivní\r\nFleming\r\nFlemingův\r\nfleret\r\nfleretista\r\nfleretistčin\r\nfleretistka\r\nfleretistův\r\nflérka\r\nflétna\r\nflétnička\r\nflétnista\r\nflétnistčin\r\nflétnistka\r\nflétnistův\r\nflétnový\r\nflexe\r\nflexibilita\r\nflexibilnější\r\nflexibilní\r\nflexibl\r\nflexiblový\r\nflexišňůra\r\nflexivní\r\nflexívní\r\nflexošňůra\r\nflíček\r\nflíčkový\r\nFliegelová\r\nFliegel\r\nFliegelův\r\nFlieglerová\r\nFliegler\r\nFlieglerův\r\nflikovačka\r\nflikování\r\nflikovaný\r\nflikovat\r\nflinkání\r\nflinkat\r\nflinknout\r\nflinknutí\r\nflinknutý\r\nflinta\r\nflintový\r\nflirt\r\nflirtování\r\nflirtovat\r\nflirtovávání\r\nflirtovávat\r\nflirtující\r\nflitr\r\nFlková\r\nFlkův\r\nflobertka\r\nFlodrmanová\r\nFlodrman\r\nFlodrmanův\r\nFlodrová\r\nFlodr\r\nFlodrův\r\nflok\r\nFloková\r\nFlok\r\nflokulační\r\nFlokův\r\nfloorbal\r\nfloorbalový\r\nflop\r\nfloptický\r\nflora\r\nflóra\r\nflorbalista\r\nflorbalistčin\r\nflorbalistka\r\nflorbalistův\r\nFlorencie\r\nFlorenc\r\nFlorentin\r\nflorentský\r\nFlores\r\nFloresův\r\nflór\r\nFloriánek\r\nFloriánková\r\nFloriánkův\r\nFlorianová\r\nFloriánová\r\nFlorian\r\nFlorián\r\nFlorianův\r\nFloriánův\r\nFlorida\r\nfloridksý\r\nfloridský\r\nflorin\r\nflorista\r\nfloristčin\r\nfloristický\r\nflorističtější\r\nfloristka\r\nfloristův\r\nFlorka\r\nFlorková\r\nFlorkův\r\nfloskule\r\nFlosmanová\r\nFlosman\r\nFlosmanův\r\nflotace\r\nflotační\r\nflotila\r\nFlousek\r\nFlousková\r\nFlouskův\r\nfloutek\r\nfloutkův\r\nflox\r\nfluidizovaný\r\nfluidní\r\nfluidový\r\nfluidum\r\nfluktuace\r\nfluktuační\r\nfluktuant\r\nfluktuantův\r\nfluktuování\r\nfluktuovat\r\nfluktuující\r\nflundra\r\nflundřin\r\nfluorescence\r\nfluorescenční\r\nfluorescentní\r\nfluoreskovat\r\nfluoreskující\r\nfluor\r\nfluór\r\nfluoridace\r\nfluorid\r\nfluoridovaný\r\nfluoridový\r\nfluorit\r\nfluorizace\r\nfluormethan\r\nfluoroboritan\r\nfluorokřemičitan\r\nfluorovaný\r\nfluorovodík\r\nfluorovodíkový\r\nfluorový\r\nfluviální\r\nflyšový\r\nflyš\r\nFňouková\r\nFňouk\r\nFňoukův\r\nfňukání\r\nfňukat\r\nfňukávání\r\nfňukávat\r\nfňukavý\r\nfobie\r\nfóbie\r\nfocení\r\nfocený\r\nFoerstrův\r\nfofr\r\nfofrování\r\nfofrovat\r\nFoglarová\r\nFoglar\r\nFoglarův\r\nFohlová\r\nFohl\r\nFohlův\r\nfoch\r\nFojtíková\r\nFojtík\r\nFojtíkův\r\nfojt\r\nfojtství\r\nfojtův\r\nFOK\r\nfokální\r\nfokus\r\nfokusovaný\r\nfokusovat\r\nfokusující\r\nFoldyna\r\nFoldynová\r\nFoldynův\r\nfolie\r\nfólie\r\nfolikul\r\nfolio\r\nfoliový\r\nfóliový\r\nfolkařčin\r\nfolkařka\r\nfolkař\r\nfolkařův\r\nfolkbluesový\r\nfolk\r\nfolklor\r\nfolklór\r\nfolklorismus\r\nfolklorista\r\nfolklórista\r\nfolklorista\r\nfolkloristčin\r\nfolklóristčin\r\nfolkloristický\r\nfolklorističtější\r\nfolkloristika\r\nfolkloristka\r\nfolklóristka\r\nfolkloristův\r\nfolklóristův\r\nfolklornější\r\nfolklórnější\r\nfolklorní\r\nfolklórní\r\nfolkový\r\nfolkrockový\r\nFolmava\r\nfolmavský\r\nFolprechtová\r\nFolprecht\r\nFolprechtův\r\nFolta\r\nFoltinová\r\nFoltin\r\nFoltinův\r\nFoltová\r\nFoltův\r\nFoltýnová\r\nFoltýn\r\nFoltýnův\r\nfonační\r\nfonastenie\r\nfondán\r\nfondánový\r\nfond\r\nfondový\r\nfondu\r\nfonematický\r\nfoném\r\nfonémový\r\nfonendoskop\r\nfonetický\r\nfonetičtější\r\nfonetika\r\nfon\r\nfón\r\nfoniatrický\r\nfoniatrie\r\nfoniatr\r\nfoniatrův\r\nfonický\r\nfoničtější\r\nfonograf\r\nfonografický\r\nfonogram\r\nfonolit\r\nfonolitový\r\nfonologický\r\nfonologie\r\nfonon\r\nfonotéka\r\nFontainbleau\r\nfontána\r\nfontánka\r\nfont\r\nfor\r\nforbes\r\nforbína\r\nforčekink\r\nforčekující\r\nfordismus\r\nfordka\r\nFord\r\nfórek\r\nforemnější\r\nforenzní\r\nfór\r\nforhend\r\nforhendový\r\nforchheimský\r\nForchtnerová\r\nForchtner\r\nForchtnerův\r\nforint\r\nfórista\r\nfóristčin\r\nfóristka\r\nfóristův\r\nformace\r\nFormáček\r\nFormáčková\r\nFormáčkův\r\nformační\r\nformaldehyd\r\nformaldehydový\r\nformalismus\r\nformalista\r\nformalistčin\r\nformalistický\r\nformalističtější\r\nformalistka\r\nformalistnější\r\nformalistův\r\nformalita\r\nformalizace\r\nformalizování\r\nformalizovaný\r\nformalizovat\r\nformálnější\r\nformální\r\nformančin\r\nFormánek\r\nformanka\r\nFormánková\r\nFormánkův\r\nFormanová\r\nforman\r\nForman\r\nformanský\r\nformanství\r\nformant\r\nFormanův\r\nformanův\r\nformát\r\nformativnější\r\nformativní\r\nformátovací\r\nformátovač\r\nformátovačův\r\nformátování\r\nformátovaný\r\nformátovat\r\nformátovávání\r\nformátovávaný\r\nformátovávat\r\nformátový\r\nformátující\r\nforma\r\nformě\r\nformém\r\nformička\r\nformotvornější\r\nformou\r\nformovací\r\nformovačka\r\nformovač\r\nformovačův\r\nformování\r\nformovaný\r\nformovat\r\nformovatelnější\r\nformovatelný\r\nformovávání\r\nformovávaný\r\nformovávat\r\nformový\r\nformující\r\nformulace\r\nformulační\r\nformulářový\r\nformulář\r\nformule\r\nformulka\r\nformulovanější\r\nformulování\r\nformulovaný\r\nformulovat\r\nformulovatelnější\r\nformulovatelný\r\nformulovávání\r\nformulovávaný\r\nformulovávat\r\nformulový\r\nformulující\r\nfórovější\r\nfórový\r\nForstová\r\nForst\r\nForstův\r\nForsyt\r\nforte\r\nfortelnější\r\nfortelný\r\nfortel\r\nfortepiano\r\nfortifikace\r\nfortifikační\r\nfortissimo\r\nfortissimový\r\nfortna\r\nfortnýř\r\nfortnýřův\r\nFortran\r\nfortranský\r\nfortuna\r\nfórum\r\nforward\r\nforwardový\r\nforzírující\r\nforzýtie\r\nFořtová\r\nfořtovna\r\nfořt\r\nFořt\r\nFořtův\r\nfořtův\r\nfosfan\r\nfosfatáza\r\nfosfát\r\nfosfatidový\r\nfosfátování\r\nfosfátový\r\nfosfid\r\nfosfoenolpyruvát\r\nfosfolipid\r\nfosfomolybdenan\r\nfosforečnan\r\nfosforečný\r\nfosforescence\r\nfosforeskovat\r\nfosforeskující\r\nfosfor\r\nfosforičitan\r\nfosforitan\r\nfosforit\r\nfosforitý\r\nfosforný\r\nfosforový\r\nfosforylace\r\nfosforyl\r\nfosfosulfát\r\nfosilie\r\nfosílie\r\nfosilnější\r\nfosilní\r\nfošinka\r\nfošna\r\nfošnový\r\nfoťák\r\nfotbálek\r\nfotbal\r\nfotbalista\r\nfotbalistčin\r\nfotbalistický\r\nfotbalističtější\r\nfotbalistka\r\nfotbalistův\r\nfotbalovější\r\nfotbalový\r\nfotel\r\nfotit\r\nfotka\r\nfotoaktivita\r\nfotoakustický\r\nfotoakustičtější\r\nfotoamatér\r\nfotoamatérův\r\nfotoaparát\r\nfotoarchiv\r\nfotoarchív\r\nfotoateliér\r\nfotoblesk\r\nfotobuňka\r\nfotocitlivý\r\nfotočlánek\r\nfotodokumentace\r\nfotodokumetace\r\nfotodynamický\r\nfotodynamičtější\r\nfotoelektrický\r\nfotoelektromotorický\r\nfotoelektromotoričtější\r\nfotoelektron\r\nfotoelektronika\r\nfotoelektronka\r\nfotoelektronový\r\nfotoelektřina\r\nfotogalerie\r\nfotogenický\r\nfotogeničtější\r\nfotografčin\r\nfotografický\r\nfotografie\r\nfotografka\r\nfotografovanější\r\nfotografování\r\nfotografovaný\r\nfotografovat\r\nfotografovávání\r\nfotografovávaný\r\nfotografovávat\r\nfotograf\r\nfotografující\r\nfotografův\r\nfotogrammetrický\r\nfotogrammetrie\r\nfotogravura\r\nfotochemický\r\nfotochemičtější\r\nfotochemie\r\nfotochemik\r\nfotochemikův\r\nfotointerpretace\r\nfotokatalýza\r\nfotokatoda\r\nfotokazeta\r\nfotokopie\r\nfotokopírka\r\nfotokopírovací\r\nfotolaboratoř\r\nfotolytický\r\nfotolytičtější\r\nfotolýza\r\nfotomagnetický\r\nfotomagnetičtější\r\nfotomaska\r\nfotomateriál\r\nfotomechanický\r\nfotomechaničtější\r\nfotometr\r\nfotometrický\r\nfotometričtější\r\nfotometrie\r\nfotomodelčin\r\nfotomodelka\r\nfotomontáž\r\nfoto\r\nfotonásobič\r\nfoton\r\nfotonka\r\nfotonový\r\nfotoobchod\r\nfotopapír\r\nfotoperiodismus\r\nfotopický\r\nfotopolygravura\r\nfotopotřeba\r\nfotopřístroj\r\nfotorealismus\r\nfotorealistický\r\nfotoreportáž\r\nfotoreportérčin\r\nfotoreportérka\r\nfotoreportér\r\nfotoreportérův\r\nfotorezistor\r\nfotorytecký\r\nfotorytečtější\r\nfotosazba\r\nfotosázecí\r\nfotosektor\r\nfotosensitizovaný\r\nfotosenzitivita\r\nfotosféra\r\nfotoska\r\nfotostatický\r\nfotostatičtější\r\nfotosyntetický\r\nfotosyntetičtější\r\nfotosyntetizování\r\nfotosyntetizovaný\r\nfotosyntetizovat\r\nfotosyntetizující\r\nfotosyntéza\r\nfototaxe\r\nfototropismus\r\nfotovoltaika\r\nfotožurnalismus\r\nfotožurnalista\r\nfotožurnalistčin\r\nfotožurnalistika\r\nfotožurnalistka\r\nfotožurnalistův\r\nfotrovatý\r\nfotr\r\nfotrův\r\nfotřík\r\nfotříkův\r\nFoucault\r\nFoucaultův\r\nfoukací\r\nfoukačka\r\nfoukač\r\nfoukadlo\r\nfoukající\r\nfoukání\r\nfoukaný\r\nfoukat\r\nfoukávání\r\nfoukávaný\r\nfoukávat\r\nfouknout\r\nfouknutí\r\nfouknutý\r\nfouknutý\r\nfouňa\r\nfouňovský\r\nfouňův\r\nFourdrinierův\r\nfourierovský\r\nfourrierovský\r\nfousatější\r\nfousatý\r\nfousek\r\nFousek\r\nfous\r\nFousková\r\nFouskův\r\nfouskův\r\nFoustka\r\nFoustková\r\nFoustkův\r\nfoxhound\r\nfoxteriér\r\nfoxteriérův\r\nfoxteriéří\r\nfoxtrot\r\nfoxtrotový\r\nfoyer\r\nfoyer\r\nfp\r\nfr\r\nfracek\r\nfrackův\r\nfráček\r\nfragilnější\r\nfragmentace\r\nfragmentárnější\r\nfragmentární\r\nfragment\r\nfragmentování\r\nfragmentovaný\r\nfragmentovat\r\nfrajerka\r\nfrajer\r\nfrajerský\r\nfrajerství\r\nfrajerův\r\nfrajeřina\r\nfrajeřin\r\nfrajeřinka\r\nfrajírek\r\nfrajírkovitý\r\nfrajírkův\r\nfrajlinka\r\nfrajmaurský\r\nfrakce\r\nfrakční\r\nfrak\r\nfrakový\r\nfraktál\r\nfraktální\r\nfraktálový\r\nfraktografický\r\nfraktografie\r\nfraktura\r\nFraňa\r\nFráňa\r\nFráňa\r\nFranca\r\nFrancesca\r\nFrancie\r\nFrancisco\r\nFrancis\r\nFrancisův\r\nfrancium\r\nFrancko\r\nFrancký\r\nFrancoise\r\nfrancouzák\r\nFrancouzčin\r\nFrancouzka\r\nfrancouzskosovětský\r\nfrancouzský\r\nfrancouzštinářčin\r\nfrancouzštinářka\r\nfrancouzštinář\r\nfrancouzštinářův\r\nfrancouzština\r\nFrancouz\r\nFrancouzův\r\nfrancouzův\r\nFrancová\r\nfrancovka\r\nFranc\r\nFrancův\r\nFrancůzová\r\nFrancůz\r\nFrancůzův\r\nFraněk\r\nFrankfurt\r\nfrankfurtský\r\nfrank\r\nfrankismus\r\nfrankista\r\nfrankistčin\r\nfrankistický\r\nfrankističtější\r\nfrankistka\r\nfrankistův\r\nFranklin\r\nFranklinův\r\nfrankofonní\r\nfrankovací\r\nfrankování\r\nfrankovaný\r\nfrankovat\r\nfrankovávání\r\nfrankovávaný\r\nfrankovávat\r\nFranková\r\nFraňková\r\nFrankovka\r\nfrankovka\r\nfrankový\r\nFrank\r\nFrankův\r\nFraňkův\r\nFraňová\r\nFráňová\r\nFransko\r\nFranský\r\nfranský\r\nfranšíza\r\nfranšízing\r\nfranšízový\r\nfranštinářčin\r\nfranštinářka\r\nfranštinář\r\nfranštinářův\r\nfranština\r\nfranštin\r\nFranta\r\nFrantiščin\r\nFrantišek\r\nfrantišek\r\nfrantiškán\r\nfrantiškánský\r\nfrantiškánštější\r\nfrantiškánův\r\nFrantiška\r\nFrantiškov\r\nfrantiškovský\r\nFrantiškův\r\nFrantová\r\nFrantův\r\nFraňův\r\nFráňův\r\nfrapantnější\r\nfrapantní\r\nfraška\r\nfraškovitější\r\nfraškovitý\r\nfraškový\r\nfráter\r\nFraunhofer\r\nFraunhoferův\r\nfrazém\r\nfrazeologický\r\nfrazeologičtější\r\nfrazeologie\r\nfrazeologismus\r\nfrazeolog\r\nfrazeologův\r\nfrazeoložčin\r\nfrazeoložka\r\nfráze\r\nfrázička\r\nfrázista\r\nfrázistčin\r\nfrázistka\r\nfrázistův\r\nfrázování\r\nfrázovaný\r\nfrázovat\r\nfrázovitější\r\nfrázovitý\r\nfrázový\r\nfrázující\r\nfrčení\r\nfrčet\r\nfrčka\r\nFreetown\r\nfreeware\r\nfreewarový\r\nfregata\r\nfregatka\r\nFreie\r\nFreimanová\r\nFreiman\r\nFreimanův\r\nFreiová\r\nFrei\r\nFreiův\r\nfrejštejnský\r\nfrekvence\r\nfrekvenční\r\nfrekventantčin\r\nfrekventantka\r\nfrekventant\r\nfrekventantův\r\nfrekventovanější\r\nfrekventovaný\r\nFrelichová\r\nFrelich\r\nFrelichův\r\nFrenclová\r\nFrencl\r\nFrenclův\r\nfrenetický\r\nfrenetičtější\r\nFrenštát\r\nfrenštátský\r\nfreon\r\nfreonový\r\nfreska\r\nfreskový\r\nfretka\r\nfreudismus\r\nfreudista\r\nfreudistčin\r\nfreudistický\r\nfreudističtější\r\nfreudistka\r\nfreudistův\r\nfreudovský\r\nFreud\r\nFreudův\r\nFreyová\r\nFreyův\r\nFrey\r\nfrézařčin\r\nfrézařka\r\nfrézař\r\nfrézařův\r\nfréza\r\nfrézka\r\nfrézkový\r\nfrézovací\r\nfrézování\r\nfrézovaný\r\nfrézovat\r\nfrézový\r\nFRF\r\nFričová\r\nFrič\r\nFričův\r\nfridolínský\r\nFridrichová\r\nFridrich\r\nFridrichův\r\nFriedjungový\r\nFriedman\r\nFriedmanův\r\nFriedrichová\r\nFriedrich\r\nFriedrichův\r\nFriesová\r\nFries\r\nFriesův\r\nfrigidita\r\nfrigidnější\r\nfrigidní\r\nfrikční\r\nFrimlová\r\nFriml\r\nFrimlův\r\nFrinta\r\nFrintová\r\nFrintův\r\nFrísko\r\nfríský\r\nfríština\r\nfriťák\r\nfritéza\r\nfritovací\r\nfritování\r\nfritovaný\r\nfritovat\r\nfriulština\r\nfrivolnější\r\nfrivolní\r\nfrizúra\r\nfrkačka\r\nfrkání\r\nfrkaný\r\nfrkat\r\nfrknout\r\nfrknutí\r\nfrňák\r\nfrnk\r\nfrnkačka\r\nfrnknout\r\nfrnknutí\r\nFrolichová\r\nFrolich\r\nFrolichův\r\nFrolíková\r\nFrolík\r\nFrolíkův\r\nFroněk\r\nFroňková\r\nFroňkův\r\nfrontálnější\r\nfrontální\r\nfronta\r\nfrontička\r\nfrontispis\r\nfrontování\r\nfrontovaný\r\nfrontovat\r\nfrontový\r\nFrontzová\r\nFrontz\r\nFrontzův\r\nfroté\r\nFrouzová\r\nFrouz\r\nFrouzův\r\nfrr\r\nFršlínek\r\nFršlínková\r\nFršlínkův\r\nfrťan\r\nfrťanův\r\nFrühaufová\r\nFrühauf\r\nFrühaufův\r\nfruktofuranosidáza\r\nfruktosa\r\nfruktóza\r\nfrustrace\r\nfrustrovanější\r\nfrustrovaný\r\nfrustrovat\r\nfrustrující\r\nFrýba\r\nFrýbová\r\nFrýbův\r\nFryčerová\r\nFryčer\r\nFryčerův\r\nFryčová\r\nFryč\r\nFryčův\r\nFrýda\r\nFrýdčin\r\nFrýdecko\r\nFrýdeckomístecko\r\nfrýdeckomístecký\r\nfrýdecký\r\nFrýdek\r\nFrýdka\r\nFrýdlant\r\nFrýdlantsko\r\nfrýdlantský\r\nFrýdová\r\nFrydrychová\r\nFrydrych\r\nFrydrychův\r\nFrýdštejn\r\nfrýdštejnský\r\nFrýdův\r\nfrygický\r\nFrymburk\r\nfrymburský\r\nFryšavan\r\nFryšava\r\nfryšavský\r\nfryštácký\r\nfryštácký\r\nFryšták\r\nfryštátský\r\nFrývaldov\r\nfrývaldovský\r\nFrývald\r\nFrývaldský\r\nFrývaldův\r\nFS\r\nFt\r\nft\r\nftalový\r\nftizeologický\r\nftizeologie\r\nftizeolog\r\nftizeologův\r\nftizeoložčin\r\nftizeoložka\r\nFTP\r\nFubičovicová\r\nFubičovic\r\nFubičovicův\r\nfučení\r\nfučet\r\nFučíková\r\nfučíkovštější\r\nFučík\r\nFučíkův\r\nfuga\r\nFührerová\r\nFührer\r\nFührerův\r\nfuchsie\r\nfuchsin\r\nFuchsová\r\nFuchs\r\nFuchsův\r\nfuj\r\nfujara\r\nfujavice\r\nFujerová\r\nFujer\r\nFujerův\r\nFujimori\r\nfuk\r\nFukalová\r\nFukal\r\nFukalův\r\nFuka\r\nFukárek\r\nFukárková\r\nFukárkův\r\nFukátko\r\nFukátková\r\nFukátkův\r\nfukéř\r\nFuková\r\nFuksa\r\nFuksová\r\nFuksův\r\nFukův\r\nfukýř\r\nfuldský\r\nfulleren\r\nfullerenový\r\nfulltext\r\nfulltextový\r\nfulminát\r\nfumarát\r\nfumarola\r\nfumarol\r\nfumarový\r\nfundace\r\nfundamentalismus\r\nfundamentalista\r\nfundamentalistčin\r\nfundamentalistický\r\nfundamentalističtější\r\nfundamentalistka\r\nfundamentalistův\r\nfundamentálnější\r\nfundamentální\r\nfundament\r\nfundovanější\r\nfundování\r\nfundovaný\r\nfundovat\r\nFundová\r\nFund\r\nfundus\r\nFundův\r\nfunebráčtější\r\nfunebrák\r\nfunebrákův\r\nFunek\r\nfunění\r\nfunět\r\nfungicid\r\nfungování\r\nfungovaný\r\nfungovat\r\nfungující\r\nfunící\r\nfunkceneschopný\r\nfunkceschopný\r\nfunkce\r\nfunkcionál\r\nfunkcionalismus\r\nfunkcionalista\r\nfunkcionalistčin\r\nfunkcionalistický\r\nfunkcionalističtější\r\nfunkcionalistka\r\nfunkcionalistův\r\nfunkcionalita\r\nfunkcionální\r\nfunkcionářčin\r\nfunkcionářka\r\nfunkcionářský\r\nfunkcionář\r\nfunkcionářův\r\nfunkčnější\r\nfunkční\r\nFunkeová\r\nFunke\r\nFunkeův\r\nFunková\r\nfunkový\r\nfunktor\r\nFunkův\r\nfunus\r\nfuran\r\nfůra\r\nfurfural\r\nfuriantčin\r\nfuriantka\r\nfuriantový\r\nfuriant\r\nfuriantský\r\nfuriantství\r\nfuriantův\r\nfúrie\r\nfurioso\r\nfůrka\r\nFurlánsko\r\nFurstová\r\nFürstová\r\nFurst\r\nFürst\r\nFurstův\r\nFürstův\r\nfurunkl\r\nFürychová\r\nFürych\r\nFürychův\r\nfusit\r\nfusitový\r\nfüssenský\r\nfušer\r\nfušerský\r\nfušerství\r\nfušérštější\r\nfušerův\r\nfuška\r\nfušování\r\nfušovaný\r\nfušovat\r\nfutro\r\nFutuna\r\nfuturismus\r\nfuturista\r\nfuturistčin\r\nfuturistický\r\nfuturističtější\r\nfuturistka\r\nfuturistův\r\nfuturologický\r\nfuturologičtější\r\nfuturologie\r\nfuturolog\r\nfuturologův\r\nfuturoložčin\r\nfuturoložka\r\nfuturum\r\nFuxa\r\nFuxová\r\nFuxův\r\nfúze\r\nfúzování\r\nfúzovat\r\nfúzující\r\nfuzzy\r\nFW\r\nfykologie\r\nfylit\r\nfylitický\r\nfylitový\r\nfylogenetický\r\nfylogeneze\r\nFyn\r\nfysikální\r\nfysika\r\nfysiologický\r\nfysiologie\r\nfytobiologický\r\nfytobiologie\r\nfytobiolog\r\nfytobiologův\r\nfytobioložčin\r\nfytobioložka\r\nfytocenologický\r\nfytocenologie\r\nfytocenóza\r\nfytoelektrický\r\nfytoestrogenterapie\r\nfytofarmakum\r\nfytofilní\r\nfytogeografický\r\nfytoindikace\r\nfytopatologický\r\nfytoplankton\r\nfytosanitární\r\nfytosféra\r\nfytotechnika\r\nfytový\r\nfyziatrie\r\nfyzický\r\nfyziččin\r\nfyzička\r\nfyzičtější\r\nfyzikalismus\r\nfyzikálnější\r\nfyzikální\r\nfyzika\r\nfyzik\r\nfyzikův\r\nfyziognomičin\r\nfyziognomie\r\nfyziognomika\r\nfyziologický\r\nfyziologie\r\nfyziolog\r\nfyziologův\r\nfyzioložčin\r\nfyzioložka\r\nfyzioterapeutčin\r\nfyzioterapeutka\r\nfyzioterapeut\r\nfyzioterapeutův\r\nfyzioterapie\r\ngabardén\r\ngabardénový\r\nGabčanová\r\nGabčan\r\nGabčanův\r\nGábina\r\nGábinčin\r\nGábinin\r\nGábinka\r\ngáblík\r\nGaboňančin\r\nGaboňanka\r\nGaboňan\r\nGaboňanův\r\nGaboncův\r\nGabonec\r\nGabon\r\ngabonský\r\nGabriela\r\nGabrielin\r\nGabrielová\r\nGabriel\r\nGabrielův\r\nGabrišová\r\nGabriš\r\nGabrišův\r\ngabro\r\ngabrový\r\nGaček\r\nGačková\r\nGačkův\r\nGAČR\r\ngadoliniový\r\ngadolinium\r\ngádžovský\r\ngaelština\r\ngaga\r\ngágá\r\ngagaga\r\nGagarin\r\nGagarinův\r\ngagátový\r\ngag\r\ngagový\r\nGajary\r\nGajdáček\r\nGajdáčková\r\nGajdáčkův\r\nGajda\r\nGajdošíková\r\nGajdošík\r\nGajdošíkův\r\nGajdošová\r\nGajdoš\r\nGajdošův\r\nGajdův\r\nGal\r\ngal\r\ngala\r\ngaladiskotéka\r\ngalakoncert\r\ngalaktický\r\ngalaktokináza\r\ngalaktometr\r\ngalaktosidasa\r\ngalaktosidáza\r\ngalaktóza\r\ngalánčin\r\ngalánka\r\ngalán\r\ngalanterie\r\ngalanterní\r\ngalantnější\r\ngalantní\r\ngalánův\r\nGalapágy\r\ngalapážský\r\ngalapážský\r\ngalapředstavení\r\ngalapřehlídka\r\nGalaťan\r\ngalatský\r\ngalaxie\r\nGalbavý\r\ngaleje\r\ngalejnický\r\ngalejničtější\r\ngalejník\r\ngalejníkův\r\ngalenit\r\ngaleona\r\ngaléra\r\ngalerie\r\ngalérie\r\ngalerijní\r\ngaleriový\r\ngalerista\r\ngaleristčin\r\ngaleristka\r\ngaleristův\r\ngalerka\r\ngalérový\r\ngalgánový\r\nGalicie\r\ngalicijský\r\ngalicijština\r\ngalicismus\r\nGalie\r\ngalikánský\r\ngalilejský\r\nGalileo\r\ngalileovský\r\nGalileův\r\ngalimatyáš\r\nGalindie\r\ngaliový\r\ngalitý\r\ngalium\r\ngálium\r\nGallasová\r\nGallas\r\nGallasův\r\ngallium\r\ngallový\r\ngalnatý\r\ngalon\r\ngalonový\r\ngaloše\r\ngalování\r\nGal\r\ngalský\r\ngaluska\r\ngaluskový\r\nGaluška\r\nGalušková\r\nGaluškův\r\nGalův\r\ngalvanický\r\ngalvaničtější\r\ngalvanismus\r\ngalvanizace\r\ngalvanizér\r\ngalvanizérství\r\ngalvanizérův\r\ngalvanizování\r\ngalvanizovaný\r\ngalvanizovat\r\ngalvanizovna\r\ngalvanomagnetický\r\ngalvanomagnetičtější\r\ngalvanometr\r\ngalvanoplastika\r\ngalvanostatický\r\ngalvanostatika\r\ngalvanotechnika\r\ngamacelulóza\r\ngamaglobulin\r\ngama\r\nGamba\r\nGambie\r\nGambijcův\r\nGambijčin\r\nGambijec\r\nGambijka\r\ngambijský\r\ngambista\r\ngambistčin\r\ngambistka\r\ngambistův\r\ngambit\r\ngamblerství\r\nGambová\r\nGambův\r\ngame\r\ngameta\r\ngametofyt\r\nGanátová\r\nGanát\r\nGanátův\r\nGándíová\r\nGándí\r\nGanga\r\ngang\r\nganglion\r\ngangliový\r\ngangréna\r\ngangsterismus\r\ngangster\r\ngangsterský\r\ngangsterství\r\ngangsterštější\r\ngangsterův\r\nGaramond\r\nGaramondův\r\ngarance\r\ngarancie\r\ngaranční\r\ngarantčin\r\ngarantka\r\ngarantovanější\r\ngarantování\r\ngarantovaný\r\ngarantovat\r\ngarantovávání\r\ngarantovávaný\r\ngarantovávat\r\ngarant\r\ngarantující\r\ngarantův\r\ngarážmistr\r\ngarážmistrův\r\ngarážování\r\ngarážovaný\r\ngarážovat\r\ngarážový\r\ngaráž\r\ngarda\r\ngarde\r\ngardedáma\r\ngarderoba\r\ngarderóba\r\ngarderobiérka\r\ngarderobiér\r\ngarderobiérův\r\ngardista\r\ngardistčin\r\ngardistický\r\ngardistka\r\ngardistův\r\ngardový\r\nGardské\r\ngarmoška\r\ngarnát\r\ngarnitura\r\ngarnýž\r\ngarsoniéra\r\ngarsonka\r\nGaskoňsko\r\ngaskoňský\r\ngasteinský\r\ngastroenterologie\r\ngastroenterolog\r\ngastroenterologův\r\ngastroenteroložčin\r\ngastroenteroložka\r\ngastrofibroskopie\r\ngastrofilóza\r\ngastronom\r\ngastronomický\r\ngastronomie\r\ngastrulace\r\ngastrula\r\nGastýn\r\nGašparová\r\nGašparovičová\r\nGašparovič\r\nGašparovičův\r\nGašpar\r\nGašparův\r\ngatě\r\nGates\r\nGatesův\r\ngateway\r\ngatewaye\r\ngatewayemi\r\ngatewayi\r\ngatewayí\r\ngatewayích\r\ngatewayím\r\ngativní\r\nGATT\r\ngauč\r\ngaufrovací\r\ngaufrování\r\ngaufrovaný\r\ngaufrovat\r\ngaullismus\r\ngaullista\r\ngaullistčin\r\ngaullistický\r\ngaullistka\r\ngaullistův\r\ngauner\r\ngaunerův\r\ngausián\r\nGauss\r\nGaussův\r\nGautschový\r\nGautschův\r\nGavlasová\r\nGavlas\r\nGavlasův\r\nGavlovský\r\ngay\r\ngayův\r\ngáza\r\nGazdačka\r\nGazdačková\r\nGazdačkův\r\nGazda\r\nGazdíková\r\nGazdík\r\nGazdíkův\r\nGazdová\r\nGazdův\r\ngazela\r\ngazelin\r\ngazelí\r\ngazík\r\ngázmaska\r\ngázový\r\ngáže\r\ngážista\r\ngážistčin\r\ngážistka\r\ngážistův\r\nGBP\r\nGdaňsk\r\ngdaňský\r\nGdyně\r\nGebauerův\r\nGebrianová\r\nGebrian\r\nGebrianův\r\ngéčko\r\nGečnuková\r\nGečnuk\r\nGečnukův\r\nGedeonová\r\nGedeon\r\nGedeonův\r\nGeiger\r\nGeigerův\r\nGeislerová\r\nGeisler\r\nGeislerův\r\ngeist\r\ngejša\r\ngejzír\r\ngejzírový\r\ngekon\r\ngekonův\r\ngel\r\ngelignit\r\nGellnerová\r\nGellner\r\nGellnerův\r\nGelnice\r\ngelnický\r\ngelový\r\ngema\r\ngemologický\r\ngemologie\r\ngemovací\r\ngemování\r\ngemovaný\r\ngemovat\r\ngen\r\ngenciánový\r\ngenealogický\r\ngenealogičtější\r\ngenealogie\r\ngenealog\r\ngenealogův\r\ngenealožčin\r\ngenealožka\r\ngenerace\r\ngenerační\r\ngeneralisimus\r\ngeneralita\r\ngeneralizace\r\ngeneralizování\r\ngeneralizovaný\r\ngeneralizovat\r\ngeneralizující\r\ngenerálka\r\ngenerálmajor\r\ngenerálmajorův\r\ngenerální\r\ngenerálplukovník\r\ngenerálplukovníkův\r\ngenerálporučík\r\ngenerálporučíkův\r\ngenerál\r\ngenerálský\r\ngenerálštější\r\ngenerálův\r\ngenerativista\r\ngenerativistčin\r\ngenerativistka\r\ngenerativistův\r\ngenerativita\r\ngenerativnější\r\ngenerativní\r\ngenerátor\r\ngenerátorový\r\ngenerel\r\ngenerický\r\ngenerický\r\ngeneričtější\r\ngenerovanější\r\ngenerování\r\ngenerovaný\r\ngenerovat\r\ngeneróznější\r\ngenerující\r\ngenese\r\ngenetický\r\ngenetiččin\r\ngenetička\r\ngenetika\r\ngenetik\r\ngenetikův\r\ngenever\r\ngenezaretský\r\ngeneze\r\ngen\r\ngenialita\r\ngeniálnější\r\ngeniální\r\ngenitál\r\ngenitálie\r\ngenitální\r\ngenitiv\r\ngenitivní\r\ngénius\r\ngéniův\r\ngenmjr\r\ngenocentrický\r\ngenocida\r\ngenofond\r\ngenom\r\ngenomový\r\ngenotyp\r\ngenotypový\r\ngenový\r\ngenplk\r\ngenpor\r\ngenscherismus\r\ngentile\r\ngentleman\r\ngentlemanský\r\ngentlemanství\r\ngentlemanštější\r\ngentlemanův\r\ngentský\r\ngeobiocen\r\ngeobotanický\r\ngeobotanička\r\ngeobotanik\r\ngeobotanikův\r\ngeocentrický\r\ngeodata\r\ngeodesie\r\ngeodetický\r\ngeodetičtější\r\ngeodetika\r\ngeodet\r\ngeodetův\r\ngeodezie\r\ngeodézie\r\ngeodynamický\r\ngeoelektrický\r\ngeofaktor\r\ngeofond\r\ngeofyzikální\r\ngeofyzika\r\ngeofyzik\r\ngeofyzikův\r\ngeoglyf\r\ngeografický\r\ngeografičtější\r\ngeografie\r\ngeograf\r\ngeografův\r\ngeochemický\r\ngeochemičtější\r\ngeochemie\r\ngeochemik\r\ngeochemikův\r\ngeoinformace\r\ngeoinformační\r\ngeoinformatický\r\ngeoinformatika\r\ngeokódování\r\ngeologický\r\ngeologičtější\r\ngeologie\r\ngeolog\r\ngeologův\r\ngeoložčin\r\ngeoložka\r\ngeomagnetický\r\ngeomatika\r\ngeomechanický\r\ngeomechanika\r\ngeometr\r\ngeometrický\r\ngeometrie\r\ngeometrismus\r\ngeometrizující\r\ngeometr\r\ngeometrův\r\ngeomorfizace\r\ngeomorfologický\r\ngeomorfologie\r\ngeoobjekt\r\ngeopolitický\r\ngeopolitika\r\ngeoprvek\r\nGeorgie\r\nGeorgijec\r\ngeorgijský\r\ngeostacionární\r\ngeosynklinála\r\ngeotechnický\r\ngeotechnika\r\ngeotermální\r\ngeotermický\r\ngeotermičtější\r\ngeotest\r\ngeozyzikální\r\ngepard\r\ngepardův\r\ngerentologický\r\ngerentologie\r\ngerentolog\r\ngerentologův\r\ngerentoložčin\r\ngerentoložka\r\ngeriatrický\r\ngeriatričtější\r\ngeriatrie\r\ngerila\r\ngerilový\r\nGermain\r\ngermaničitý\r\ngermaniový\r\ngermanismus\r\ngermanista\r\ngermanistčin\r\ngermanistický\r\ngermanistika\r\ngermanistka\r\ngermanistův\r\ngermanium\r\ngermanizace\r\ngermanizační\r\ngermanizování\r\ngermanizovaný\r\ngermanizovat\r\ngermanizující\r\ngermanofil\r\ngermanofilův\r\ngermán\r\ngermánský\r\ngermánství\r\ngermánština\r\ngermánův\r\ngerontologický\r\ngerontologie\r\ngerontoložčin\r\ngerontoložka\r\nGertruda\r\ngerundiální\r\ngerundium\r\ngesce\r\ngesční\r\ngestace\r\ngestapácký\r\ngestapaččin\r\ngestapačka\r\ngestapáčtější\r\ngestapák\r\ngestapákův\r\ngestapismus\r\ngestapo\r\ngestický\r\ngestikulace\r\ngestikulování\r\ngestikulovaný\r\ngestikulovat\r\ngestikulovávání\r\ngestikulovávaný\r\ngestikulovávat\r\ngestikulující\r\ngesto\r\ngestor\r\ngestorův\r\ngestóza\r\ngetsemanský\r\nGhaňančin\r\nGhaňanka\r\nGhaňan\r\nGhaňanův\r\nGhana\r\nghanský\r\nGharaziová\r\nGharazi\r\nGharaziův\r\ngheto\r\nghetto\r\ngibbon\r\ngibbonův\r\ngiboní\r\ngibon\r\ngibonův\r\nGibraltar\r\ngibraltarský\r\ngibsonka\r\nGIF\r\ngigabajt\r\ngigabajtový\r\ngigabit\r\ngigabitový\r\ngigabyte\r\ngigabytový\r\ngigahertz\r\ngigahertzích\r\ngigant\r\ngigantický\r\ngigantičtější\r\ngigantismus\r\ngigantův\r\nGilarová\r\nGilar\r\nGilarův\r\nGilbert\r\nGilbertův\r\ngilbox\r\nGilgameš\r\nGilgamešův\r\nGillárová\r\nGillár\r\nGillárův\r\ngilošírovací\r\ngilošírování\r\ngilošírovaný\r\ngilošírovat\r\ngilošovací\r\ngilošování\r\ngilošovaný\r\ngilošovat\r\ngilotina\r\ngilotinování\r\ngilotinovaný\r\ngilotinovat\r\ngin\r\nGinzelová\r\nGinzel\r\nGinzelův\r\ngirlanda\r\ngirlandový\r\ngirondista\r\ngirondistčin\r\ngirondistka\r\ngirondistův\r\nGIS\r\nGisela\r\nGiselin\r\nGita\r\nGitin\r\nGituščin\r\nGituška\r\nGizela\r\nGizelčin\r\nGizelin\r\nGizelka\r\nglaciál\r\nglaciologický\r\ngladiátor\r\ngladiátorský\r\ngladiátorův\r\ngladiola\r\nglagolice\r\nglajchšaltování\r\nglajchšaltovaný\r\nglajchšaltovat\r\nglajchšaltující\r\nGlaserová\r\nGlaser\r\nGlaserův\r\nGlasgow\r\nglasgowský\r\nGlauber\r\nGlauberův\r\nglaukom\r\nglaukonit\r\nglaukonitický\r\nglaukonitový\r\nGlazarová\r\nGlazar\r\nGlazarův\r\nglazé\r\nglazování\r\nglazovaný\r\nglazovat\r\nglazura\r\nglazurování\r\nglazurovaný\r\nglazurovat\r\nGlazyrina\r\nGlazyrinová\r\nGlazyrinův\r\nglehnův\r\nglejový\r\nglejt\r\nglissando\r\nglissando\r\nGlivice\r\nglobál\r\nglobalismus\r\nglobalistický\r\nglobalizace\r\nglobalizační\r\nglobalizování\r\nglobalizovaný\r\nglobalizovat\r\nglobalizující\r\nglobálnější\r\nglobální\r\nglób\r\nglobulární\r\nglobule\r\nglobulin\r\nglobulitický\r\nglobus\r\nglóbus\r\nGlombíková\r\nGlombík\r\nGlombíkův\r\nglomerulus\r\nGloria\r\nglorifikace\r\nglorifikovat\r\nglorifikující\r\ngloriola\r\nglosář\r\nglosa\r\nglosématika\r\nglosování\r\nglosovaný\r\nglosovat\r\nglosující\r\nglotální\r\nglot\r\nglottochronologický\r\nglottochronologie\r\nGlouchov\r\ngloxínie\r\nGlučová\r\nGluč\r\nGlučův\r\nGluchov\r\nglukagon\r\nglukan\r\nglukogenese\r\nglukometr\r\nglukonan\r\nglukonový\r\nglukosa\r\nglukosidasa\r\nglukosidáza\r\nglukóza\r\nglukozidáza\r\nglukozooxidáza\r\nglukózový\r\ngluon\r\ngluonový\r\nGluštíková\r\nGluštík\r\nGluštíkův\r\nglutaman\r\nglutamát\r\nglutamový\r\ngluten\r\nglyceraldehyd\r\nglycerin\r\nglycerín\r\nglycerinový\r\nglycerínový\r\nglycerolester\r\nglycerolfosfát\r\nglycerol\r\nglyceryltriacetát\r\nglycidový\r\nglycid\r\nglycidův\r\nglycin\r\nglycyrrhiza\r\nglycyrrhizin\r\nglycyrrhiziový\r\nglykogen\r\nglykol\r\nglykolipid\r\nglykolýza\r\nglykoproein\r\nglykoprotein\r\nglykosidáza\r\nglykosid\r\nglykosidický\r\nglykoxidáza\r\nglyptika\r\nglyptotéka\r\ngnómický\r\ngnómičtější\r\ngnómon\r\ngnómonický\r\ngnomonika\r\ngnoseologický\r\ngnoseologičtější\r\ngnoseologie\r\ngnoseolog\r\ngnoseologův\r\ngnoseoložčin\r\ngnoseoložka\r\ngnose\r\ngnosticismus\r\ngnostický\r\ngnostik\r\ngnostik\r\ngnostikův\r\ngnozeologický\r\ngnozeologie\r\ngnoze\r\ngnóze\r\nGNU\r\ngobelín\r\ngobelínový\r\nGöbels\r\nGöbelsův\r\nGobi\r\ngoblén\r\nGočár\r\nGočárův\r\nGoddard\r\nGoddardův\r\ngodesbergský\r\nGoethe\r\nGoethův\r\nGogelová\r\nGogel\r\nGogelův\r\nGogol\r\nGogolův\r\ngoidelský\r\nGojová\r\nGoj\r\nGojův\r\nGola\r\nGolčův\r\nGolek\r\ngolem\r\ngolemův\r\ngolf\r\ngolfista\r\ngolfistčin\r\ngolfistka\r\ngolfistův\r\ngolfový\r\ngolfský\r\ngolfštější\r\nGolgota\r\ngól\r\nGoliášová\r\ngoliášový\r\nGoliáš\r\ngoliáš\r\nGoliáš\r\nGoliášův\r\ngoliášův\r\nGolka\r\nGolková\r\nGolkův\r\nGolla\r\nGollová\r\nGollův\r\ngólman\r\ngólmanův\r\nGolová\r\ngólovější\r\ngólový\r\nGoluchowský\r\nGolův\r\ngombík\r\nGomora\r\ngomorský\r\ngondola\r\ngondoliér\r\ngondoliérův\r\ngondwanský\r\ngong\r\ngongorismus\r\ngongoristický\r\ngongový\r\ngoniometrický\r\ngoniometrie\r\ngonio\r\ngonioskopie\r\nGonzagový\r\ngoodwill\r\ngopher\r\nGopinky\r\nGorbačov\r\nGorbačovův\r\ngordický\r\ngordičtější\r\nGordonová\r\nGordon\r\nGordonův\r\nGore\r\nGorice\r\ngorický\r\ngorila\r\ngorilí\r\nGorký\r\nGorův\r\ngospel\r\ngospelový\r\nGöteborg\r\ngöteborgský\r\ngotický\r\ngotičtější\r\ngotika\r\nGotinky\r\ngotisování\r\ngotisovaný\r\ngotisovat\r\ngotizující\r\ngótský\r\ngótština\r\nGottová\r\nGott\r\nGottův\r\nGottwaldová\r\nGottwaldov\r\nGottwaldovsko\r\ngottwaldovsko\r\ngottwaldovský\r\ngottwaldovský\r\nGottwald\r\nGottwaldův\r\nGötzová\r\nGötz\r\nGötzův\r\ngouda\r\nGP\r\nGPS\r\nGrabštejn\r\ngrabštejnský\r\ngrácie\r\ngraciéznější\r\ngraciézní\r\ngraciózní\r\ngradace\r\nGrada\r\ngraderelevator\r\ngradient\r\ngradientní\r\ngradování\r\ngradovaný\r\ngradovat\r\ngradualismus\r\ngradualista\r\ngradualistčin\r\ngradualistický\r\ngradualistka\r\ngradualistův\r\ngraduálnější\r\ngradující\r\ngraduovanější\r\ngraduování\r\ngraduovaný\r\ngraduovat\r\ngradus\r\ngrafém\r\ngrafemika\r\ngraffiti\r\ngraf\r\ngrafický\r\ngrafiččin\r\ngrafička\r\ngrafičtější\r\ngrafika\r\ngrafikon\r\ngrafik\r\ngrafikův\r\ngrafit\r\ngrafitický\r\ngrafitičtější\r\ngrafitovaný\r\ngrafitový\r\ngrafologický\r\ngrafologie\r\ngrafolog\r\ngrafologův\r\ngrafoložčin\r\ngrafoložka\r\ngrafomanie\r\ngrafoman\r\ngrafomanský\r\ngrafomanův\r\ngrafomotorický\r\ngrafomotorický\r\ngrafomotorika\r\nGráfová\r\ngrafový\r\nGráf\r\nGráfův\r\ngraham\r\nGraham\r\nGrahamův\r\ngramatém\r\ngramatický\r\ngramatička\r\ngramatičtější\r\ngramatikální\r\ngramatika\r\ngramatik\r\ngramatikův\r\ngramém\r\ngram\r\ngramodeska\r\ngramofirma\r\ngramofon\r\ngramofonový\r\ngramoprůmysl\r\ngramorádio\r\ngramotnější\r\ngramotný\r\ngramový\r\nGranaďančin\r\nGranaďanka\r\nGranaďan\r\nGranaďanův\r\nGranada\r\ngranadský\r\ngranaria\r\ngranát\r\ngranátický\r\ngranátník\r\ngranátníkův\r\ngranátový\r\ngranda\r\ngrandióznější\r\ngrandiózní\r\ngrandslamový\r\ngranit\r\ngranitoid\r\ngranitový\r\ngranodiorit\r\ngranodioritový\r\ngrant\r\ngrantový\r\ngranulace\r\ngranulační\r\ngranularita\r\ngranulátový\r\ngranule\r\ngranulit\r\ngranulitový\r\ngranulka\r\ngranulocyt\r\ngranulocytický\r\ngranulocytičtější\r\ngranulometrie\r\ngranulotický\r\ngranulotičtější\r\ngranulovací\r\ngranulovanější\r\ngranulování\r\ngranulovaný\r\ngranulovat\r\nGranův\r\ngrapefruit\r\ngrapefruitový\r\ngrappa\r\nGratianův\r\ngratulace\r\ngratulační\r\ngratulantčin\r\ngratulantka\r\ngratulant\r\ngratulantův\r\ngratulování\r\ngratulovaný\r\ngratulovat\r\ngratulovávání\r\ngratulovávaný\r\ngratulovávat\r\nGraubnerová\r\nGraubner\r\nGraubnerův\r\ngravidita\r\ngravidní\r\ngravimagnetický\r\ngravimetrický\r\ngravimetričtější\r\ngravírovací\r\ngravírování\r\ngravírovaný\r\ngravírovat\r\ngravitace\r\ngravitační\r\ngravitest\r\ngravitomagnetický\r\ngraviton\r\nGray\r\nGrayův\r\ngrazioso\r\ngrázlík\r\ngrázlíkův\r\ngrázl\r\ngrázlův\r\nGRD\r\nGrdelice\r\ngrdelický\r\nGrebeníček\r\nGrebeníčková\r\nGrebeníčkův\r\nGrebnerův\r\nGreenpeace\r\ngreensetový\r\ngreenwichský\r\nGrega\r\ngregoriánský\r\nGregorová\r\nGregor\r\nGregorův\r\nGregová\r\nGrégrová\r\nGrégr\r\nGrégrův\r\nGregův\r\ngreigit\r\ngrejcar\r\ngrémium\r\nGrenada\r\ngrenadina\r\ngrenadinový\r\ngrenadský\r\ngrenadský\r\nGreňová\r\nGreň\r\nGreňův\r\ngreogoriánský\r\ngrep\r\nGreplová\r\nGrepl\r\nGreplův\r\nGrestenbergerová\r\nGrestenberger\r\nGrestenbergerův\r\ngrešle\r\nGrešová\r\nGreš\r\nGrešův\r\nGrey\r\nGreyův\r\nGriffonová\r\nGriffon\r\nGriffonův\r\nGrignard\r\nGrignardův\r\ngril\r\ngrilovací\r\ngrilovanější\r\ngrilování\r\ngrilovaný\r\ngrilovat\r\ngrilovávání\r\ngrilovávaný\r\ngrilovávat\r\ngrimasa\r\ngriotka\r\nGrisonsko\r\ngrizzly\r\ngrobián\r\ngrobiánský\r\ngrobiánství\r\ngrobiánštější\r\ngrobiánův\r\nGrodecký\r\ngrófka\r\nGrofová\r\nGrof\r\nGrofův\r\ngrog\r\nGroha\r\nGrohová\r\nGrohův\r\nGrojčský\r\nGrolmusová\r\nGrolmus\r\nGrolmusův\r\nGronmanová\r\nGronman\r\nGronmanův\r\nGrónsko\r\ngrónský\r\nGröschlová\r\nGröschl\r\nGröschlův\r\nGrosmanová\r\nGrosman\r\nGrosmanův\r\nGrosmutová\r\nGrosmut\r\nGrosmutův\r\nGrossmannová\r\nGrossmann\r\nGrossmannův\r\nGrossmanová\r\nGrossman\r\nGrossmanův\r\nGrossová\r\nGross\r\nGrossův\r\ngrošák\r\ngrošákův\r\nGrošek\r\nGrošková\r\nGroškův\r\ngrošování\r\ngrošovaný\r\ngrošovitý\r\ngroš\r\ngroteska\r\ngrotesknější\r\ngroteskní\r\ngroteskový\r\ngroupwarový\r\nGrozný\r\ngrr\r\ngrrrr\r\nGruberová\r\nGruber\r\nGruberův\r\nGrubnerová\r\nGrubner\r\nGrubnerův\r\nGrubra\r\nGrubre\r\nGrubrech\r\nGrubrem\r\nGrubrová\r\nGrubrové\r\nGrubrovi\r\nGrubrů\r\nGrubrům\r\nGrubrův\r\nGrubry\r\nGrufíková\r\nGrufík\r\nGrufíkův\r\nGrulichová\r\nGrulich\r\nGrulichův\r\nGruna\r\nGrunclová\r\nGruncl\r\nGrunclův\r\ngrundle\r\nGrundmanová\r\nGrundman\r\nGrundmanův\r\nGrundová\r\nGrund\r\nGrundův\r\nGrünerová\r\nGrüner\r\nGrünerův\r\nGrunta\r\ngrunt\r\ngruntování\r\ngruntovaný\r\ngruntovat\r\ngruntovní\r\ngrupa\r\ngrupoid\r\ngrupování\r\nGrusmanová\r\nGrusman\r\nGrusmanův\r\nGrusová\r\nGrus\r\nGrusův\r\nGruša\r\nGrušová\r\nGrušův\r\nGrůza\r\nGruzie\r\nGruzíncův\r\nGruzínčin\r\nGruzínec\r\nGruzínka\r\nGruzínsko\r\ngruzínský\r\ngruzínština\r\nGrůzová\r\nGrůzův\r\nGryčová\r\nGryč\r\nGryčův\r\nGrydilová\r\nGrydil\r\nGrydilův\r\nGrygarová\r\nGrygar\r\nGrygarův\r\nGrygov\r\ngrygovský\r\nGrymov\r\ngrymovský\r\nGrzinčičová\r\nGrzinčič\r\nGrzinčičův\r\nGs\r\nGSM\r\nGuadeloupančin\r\nGuadeloupanka\r\nGuadeloupan\r\nGuadeloupanův\r\nGuadeloupe\r\nguadeloupský\r\nGuam\r\nguamský\r\nguanin\r\nguaninový\r\nguano\r\nguanosin\r\nguánový\r\nguanylan\r\nguanylový\r\nguar\r\nGuatemala\r\nGuatemalcův\r\nGuatemalčin\r\nGuatemalec\r\nGuatemalka\r\nguatemalský\r\nguava\r\nGubášová\r\nGubáš\r\nGubášův\r\ngubernátor\r\ngubernátorův\r\nguberniální\r\ngubernie\r\ngubernium\r\nGúčiková\r\nGúčik\r\nGúčikův\r\ngudžarátština\r\ngudžrátština\r\nguerillový\r\nGuernsey\r\nguernseyský\r\nGUI\r\nguignolet\r\nGuinea\r\nGuinejcův\r\nGuinejčin\r\nGuinejec\r\nGuinejka\r\nguinejský\r\nGuiness\r\nGuinessův\r\nGujda\r\nGujdová\r\nGujdův\r\ngulag\r\nGulánová\r\nGulán\r\nGulánův\r\ngulášovější\r\ngulášový\r\nguláš\r\ngulden\r\nGulyášová\r\nGulyáš\r\nGulyášův\r\ngumák\r\ngumárenský\r\ngumárenství\r\ngumárna\r\nguma\r\ngumička\r\ngumovací\r\ngumování\r\ngumovaný\r\ngumovat\r\ngumovatelný\r\ngumovější\r\ngumovitý\r\ngumovka\r\ngumovník\r\ngumový\r\nGünther\r\nGüntherův\r\nGurinová\r\nGurin\r\nGurinův\r\nGürlichová\r\nGürlich\r\nGürlichův\r\ngurmán\r\ngurmánův\r\nguru\r\nguruův\r\nGusta\r\nGustav\r\nGustavův\r\ngustém\r\ngusto\r\nGustův\r\ngutaperča\r\nGutenberg\r\nGutenbergův\r\nGutová\r\nGut\r\nguturál\r\nguturální\r\nGutův\r\nguvernamentální\r\nguvernantčin\r\nguvernantka\r\nguvernérčin\r\nguvernérka\r\nguvernér\r\nguvernérský\r\nguvernérův\r\nGuyaňančin\r\nGuyaňanka\r\nGuyaňan\r\nGuyaňanův\r\nGuyana\r\nGuyancův\r\nGuyančin\r\nGuyanec\r\nGuyanka\r\nguyanský\r\nGy\r\ngymnasiálnější\r\ngymnasista\r\ngymnasistčin\r\ngymnasistka\r\ngymnasistův\r\ngymnasium\r\ngymnasta\r\ngymnastický\r\ngymnastičtější\r\ngymnastika\r\ngymnastka\r\ngymnastův\r\ngymnaziálnější\r\ngymnaziálníc\r\ngymnaziální\r\ngymnazijní\r\ngymnazista\r\ngymnazistčin\r\ngymnazistka\r\ngymnazistův\r\ngymnázium\r\ngympl\r\ngynekofobie\r\ngynekologický\r\ngynekologičtější\r\ngynekologie\r\ngynekolog\r\ngynekologův\r\ngynekoložčin\r\ngynekoložka\r\ngynekomastie\r\ngyps\r\ngypsový\r\ngyroplán\r\ngyroskop\r\nha\r\nHaag\r\nhaagská\r\nhaagský\r\nhaagský\r\nHaasová\r\nHaas\r\nHaasův\r\nHabada\r\nhabaděj\r\nHabadová\r\nhabaďura\r\nhabaďůra\r\nHabadův\r\nhabán\r\nhabánský\r\nhabánův\r\nHaba\r\nHába\r\nHabartice\r\nhabartický\r\nHabartová\r\nHabartov\r\nhabartovský\r\nHabart\r\nHabartův\r\nHabásko\r\nHabásková\r\nHabáskův\r\nhabilitace\r\nhabilitační\r\nhabilitování\r\nhabilitovaný\r\nhabilitovat\r\nhabitat\r\nhábit\r\nhabituace\r\nhabituální\r\nhabitus\r\nHabová\r\nHábová\r\nhabr\r\nhabroví\r\nhabrový\r\nHabrůvka\r\nhabrůvský\r\nHabřina\r\nhabřinka\r\nHabsburk\r\nHabsburkův\r\nhabsburský\r\nHabův\r\nHábův\r\nHacek\r\nhacení\r\nhacený\r\nhacienda\r\nhacker\r\nhackerský\r\nhackerství\r\nhackerův\r\nHacková\r\nHackův\r\nhačat\r\nHačecký\r\nháček\r\nháček\r\nháčko\r\nháčkovací\r\nháčkování\r\nháčkovaný\r\nháčkovat\r\nháčkovitý\r\nháčkový\r\nháčkův\r\nhačnout\r\nhádačka\r\nhadač\r\nhadačův\r\nhádající\r\nhádanější\r\nhádání\r\nhádankářčin\r\nhádankářka\r\nhádankářský\r\nhádankář\r\nhádankářův\r\nhádanka\r\nhádankovitý\r\nhádankový\r\nhádaný\r\nhádat\r\nháďátko\r\nhádavcův\r\nhádavec\r\nhádavější\r\nhádavý\r\nhadcový\r\nhadec\r\nhádě\r\nhádek\r\nHaderek\r\nHaderka\r\nHaderková\r\nHaderkův\r\nHádes\r\nHádesův\r\nhadice\r\nhadicový\r\nhadička\r\nhadimrška\r\nhadincový\r\nhadinec\r\nhadí\r\nhádka\r\nHadmarův\r\nhadonoš\r\nHadová\r\nhadovcův\r\nhadovec\r\nhadovitější\r\nhadovitý\r\nhadovka\r\nhadový\r\nhad\r\nHad\r\nHadraba\r\nHadrabová\r\nHadrabův\r\nhadrák\r\nhadrář\r\nhadrářův\r\nHadrava\r\nHadravová\r\nHadravova\r\nHadravův\r\nhadr\r\nHadrián\r\nHadriánův\r\nhadrnice\r\nhadrník\r\nhadrníkův\r\nhadronický\r\nhadronový\r\nhadron\r\nhadronův\r\nHadroušek\r\nHadroušková\r\nHadrouškův\r\nhadrovatět\r\nhadrovější\r\nhadrovitý\r\nhadrový\r\nhadříček\r\nhadříkách\r\nhadřík\r\nHadův\r\nhadův\r\nhaf\r\nhafan\r\nhafanův\r\nhafat\r\nhafniový\r\nhafnium\r\nhafnout\r\nhagioterapie\r\nhaha\r\nhahnium\r\nHácha\r\nHáchová\r\nHáchův\r\nHaighův\r\nHaindlová\r\nHaindl\r\nHaindlův\r\nHainová\r\nHain\r\nHainův\r\nHaisová\r\nHais\r\nHaisův\r\nHaiťančin\r\nHaiťanka\r\nHaiťan\r\nHaiťanův\r\nHaiti\r\nhaitský\r\nhajání\r\nhajat\r\nHajduková\r\nHajduk\r\nHajdukův\r\nhajdy\r\nháječčin\r\nháječek\r\nháječka\r\nHajek\r\nHájek\r\nhájek\r\nhájemství\r\nhájenější\r\nhájení\r\nhájenka\r\nhájený\r\nhájící\r\nhájíček\r\nHájíček\r\nHájíčková\r\nHájíčkův\r\nHajičová\r\nHajič\r\nHajičův\r\nhajinkání\r\nhajinkat\r\nhájit\r\nhajitelnější\r\nhájitelnější\r\nHajková\r\nHájková\r\nHajkův\r\nHájkův\r\nhajlování\r\nhajlovaný\r\nhajlovat\r\nhajlující\r\nHajnišová\r\nHajniš\r\nHajnišův\r\nHajný\r\nhajný\r\nhájovna\r\nhájový\r\nháj\r\nHajský\r\nHajzlerová\r\nHajzler\r\nHajzlerův\r\nhajzlík\r\nhajzlíkův\r\nhajzl\r\nhajzlův\r\nHakenová\r\nHaken\r\nHakenův\r\nhák\r\nháklivější\r\nháklivý\r\nHaklová\r\nHakl\r\nHaklův\r\nhákování\r\nhákovaný\r\nhákovat\r\nHáková\r\nhákovější\r\nhákovitý\r\nhákový\r\nHák\r\nHakulínová\r\nHakulín\r\nHakulínův\r\nHákův\r\nhalabala\r\nHaláček\r\nHaláčková\r\nHaláčkův\r\nHaladová\r\nHalad\r\nHaladův\r\nhalali\r\nHalama\r\nhalama\r\nHalamíček\r\nHalamíčková\r\nHalamíčkův\r\nHalamka\r\nHalamková\r\nHalamkův\r\nHalamová\r\nHalamův\r\nhalamův\r\nhalančík\r\nhalapartna\r\nhalapartník\r\nhalapartníkův\r\nHála\r\nhalasení\r\nhalasený\r\nhalas\r\nhalasící\r\nhalasit\r\nhalasnější\r\nhalasný\r\nHalasová\r\nhalasovský\r\nHalas\r\nHalasův\r\nHalašová\r\nHalaš\r\nHalašův\r\nhala\r\nHalberstadtský\r\nHalbichová\r\nHalbich\r\nHalbichův\r\nhalda\r\nhaldička\r\nhaldovina\r\nhalekačka\r\nhalekání\r\nhalekaný\r\nhalekat\r\nhalekavý\r\nHálek\r\nhaleluja\r\nhalena\r\nHalenčáková\r\nHalenčák\r\nHalenčákův\r\nhalení\r\nhalenka\r\nHalenkovice\r\nhalenkovický\r\nHalenkov\r\nhalenkovský\r\nhalený\r\nhaléřový\r\nhaléř\r\nHalešová\r\nHaleš\r\nHalešův\r\nHalfarová\r\nHalfar\r\nHalfarův\r\nhalibut\r\nhalibutův\r\nhalící\r\nhaličský\r\nhaličský\r\nhaličštější\r\nHalič\r\nhalid\r\nHalíková\r\nHalík\r\nHalíkův\r\nHalina\r\nHalinin\r\nHalířová\r\nhalířový\r\nhalíř\r\nHalíř\r\nHalířův\r\nhalit\r\nHálková\r\nHálkův\r\nHallmanová\r\nHallman\r\nHallmanův\r\nhalloyzit\r\nhalloyzitový\r\nhaló\r\nhalogenderivát\r\nhalogen\r\nhalogenid\r\nhalogenkyselina\r\nhalogenovaný\r\nhalogenovodík\r\nhalogenový\r\nhalogenový\r\nHalousek\r\nHalousková\r\nHalouskův\r\nhalouzka\r\nHálová\r\nhalový\r\nhalštatský\r\nHalštrov\r\nhalucinace\r\nhalucinační\r\nhalucinogen\r\nhalucinogenní\r\nHaluska\r\nHalusková\r\nHaluskův\r\nHaluška\r\nhaluška\r\nHalušková\r\nHaluškův\r\nhalušky\r\nHálův\r\nHaluza\r\nhaluzka\r\nHaluzová\r\nHaluzův\r\nhaluz\r\nHalvigerová\r\nHalviger\r\nHalvigerův\r\nhalv\r\nhalvův\r\nHalysa\r\nHalysová\r\nHalysův\r\nham\r\nHamáček\r\nHamáčková\r\nHamáčkův\r\nHamáková\r\nHamák\r\nHamákův\r\nHamalčíková\r\nHamalčík\r\nHamalčíkův\r\nHamanová\r\nHaman\r\nHamanův\r\nhambalek\r\nhambalka\r\nhambálka\r\nhambalkový\r\nhamburger\r\nhamburgerový\r\nhamburgr\r\nHamburk\r\nhamburský\r\nHamerleová\r\nHamerle\r\nhamerleska\r\nHamerleův\r\nHamerníková\r\nHamerník\r\nHamerníkův\r\nHameršmídová\r\nHameršmíd\r\nHameršmídův\r\nHamilton\r\nhamitský\r\nhamižnější\r\nhamižník\r\nhamižný\r\nhamletovský\r\nHamlet\r\nHamletův\r\nHammingův\r\nHamouzová\r\nHamouz\r\nHamouzův\r\nHampejsová\r\nHampejs\r\nHampejsův\r\nhampejzový\r\nHamplová\r\nHampl\r\nHamplův\r\nhamr\r\nHamrová\r\nHamr\r\nHamrův\r\nHamšíková\r\nHamšík\r\nHamšíkův\r\nHamžíková\r\nHamžík\r\nHamžíkův\r\nHanácký\r\nhanácký\r\nHanaččin\r\nHanáček\r\nHanačíková\r\nHanačík\r\nHanačíkův\r\nHanačka\r\nHanáčková\r\nHanáčkův\r\nhanáčtější\r\nHanáková\r\nHanák\r\nHanákův\r\nHána\r\nHanava\r\nHaná\r\nHana\r\nhana\r\nhanbatější\r\nhanbatý\r\nhanba\r\nhanbení\r\nhanbit\r\nHancvenclová\r\nHancvencl\r\nHancvenclův\r\nHančarová\r\nHančar\r\nHančarův\r\nHančin\r\nHančlová\r\nHančl\r\nHančlův\r\nHändelová\r\nHändel\r\nHändelův\r\nhandicap\r\nhandicapování\r\nhandicapovaný\r\nhandicapovat\r\nhandicapový\r\nhandicapující\r\nhandl\r\nHandlířová\r\nhandlířský\r\nhandlíř\r\nHandlíř\r\nHandlířův\r\nhandlířův\r\nhandlování\r\nhandlovat\r\nHandlová\r\nhandlovní\r\nhandlující\r\nhandrkování\r\nhandrkovaný\r\nhandrkovat\r\nhandžár\r\nhanebnější\r\nhanebnice\r\nhanebničin\r\nhanebník\r\nhanebný\r\nhaněnější\r\nhanění\r\nhaněný\r\nhanět\r\nhangár\r\nhangárující\r\nHanibal\r\nHanibalův\r\nhanící\r\nHaniččin\r\nHaničincová\r\nHaničincův\r\nHaničinec\r\nHanička\r\nHanika\r\nHaniková\r\nHanikův\r\nHanin\r\nhanit\r\nHanka\r\nhanlivější\r\nhanlivý\r\nHannover\r\nHannoversko\r\nhannoverský\r\nhanobení\r\nhanobený\r\nhanobící\r\nhanobit\r\nhanobitelka\r\nhanojský\r\nhanopis\r\nHanousek\r\nHanousková\r\nHanouskův\r\nHánová\r\nHanovcová\r\nHanovcův\r\nHanovec\r\nHanover\r\nhanoverský\r\nHanšová\r\nHanš\r\nHanšův\r\nHantáková\r\nHanták\r\nHantákův\r\nhantýrka\r\nHanusová\r\nHanus\r\nHanusův\r\nHanuščin\r\nHanuška\r\nHanušová\r\nHanušovice\r\nhanušovický\r\nHanuš\r\nHanušův\r\nHánův\r\nHanýžčin\r\nHanýžka\r\nHanzáková\r\nHanzák\r\nHanzákův\r\nHanzalová\r\nHanzal\r\nHanzalův\r\nHanza\r\nhanza\r\nHanzela\r\nHanzele\r\nHanzelech\r\nHanzelem\r\nHanzelka\r\nHanzelková\r\nHanzelkův\r\nHanzelová\r\nHanzelové\r\nHanzelovi\r\nHanzel\r\nHanzelů\r\nHanzelům\r\nHanzelův\r\nHanzely\r\nHanzlíček\r\nHanzlíčková\r\nHanzlíčkův\r\nHanzlíková\r\nHanzlík\r\nHanzlíkův\r\nHanzlová\r\nHanzlové\r\nHanzl\r\nHanzlův\r\nHanzová\r\nhanzovní\r\nHanzův\r\nHápa\r\nhapat\r\nhaploidní\r\nhaplologie\r\nHápová\r\nhappening\r\nhappeningový\r\nhappyend\r\nhaprování\r\nhaprovat\r\nhapták\r\nhaptický\r\nHápův\r\nharaburdí\r\nhárací\r\nhárající\r\nharakiri\r\nharampádí\r\nhárání\r\nHarantová\r\nharant\r\nHarant\r\nHarantův\r\nharantův\r\nharašení\r\nharašící\r\nharašit\r\nharašivý\r\nhárat\r\nhárávat\r\nháravý\r\nHarazinová\r\nHarazin\r\nHarazinův\r\nHarc\r\nharcování\r\nharcovat\r\nharcovnice\r\nharcovník\r\nharcovníkův\r\nharcující\r\nHarčárová\r\nHarčár\r\nHarčárův\r\nHardinová\r\nHardin\r\nHardinův\r\nhardrockový\r\nhardware\r\nhardwarový\r\nharém\r\nharémismus\r\nharémistický\r\nharémový\r\nharfa\r\nharfenice\r\nharfeník\r\nharfeníkův\r\nharfenista\r\nharfenistčin\r\nharfenistka\r\nharfenistův\r\nharfička\r\nharfista\r\nharfistčin\r\nharfistka\r\nharfistův\r\nharfový\r\nharlekýn\r\nharlekýnštější\r\nharlekýnův\r\nHarlem\r\nharmonický\r\nharmonička\r\nharmoničtější\r\nharmonie\r\nharmonikářčin\r\nharmonikářka\r\nharmonikář\r\nharmonikářův\r\nharmonika\r\nharmonikový\r\nharmonisování\r\nharmonisovaný\r\nharmonisovat\r\nharmonium\r\nharmonizace\r\nharmonizační\r\nharmonizování\r\nharmonizovaný\r\nharmonizovat\r\nharmonizující\r\nharmonogram\r\nharmonování\r\nharmonovat\r\nharmonující\r\nHarmův\r\nHároníková\r\nHároník\r\nHároníkův\r\nharpagonovský\r\nHarpagon\r\nharpagonský\r\nHarpagonův\r\nharpuna\r\nharpunování\r\nharpunovaný\r\nharpunovat\r\nharpunový\r\nharpyje\r\nHarrachov\r\nharrachovský\r\nHartigová\r\nHartig\r\nHartigův\r\nHartinkov\r\nhartinkovský\r\nHartlová\r\nHärtlová\r\nHartl\r\nHärtl\r\nHartlův\r\nHärtlův\r\nHartmanice\r\nhartmanický\r\nHartmannová\r\nHartmann\r\nHartmannův\r\nHartmanová\r\nHartman\r\nHartmanův\r\nHartová\r\nHart\r\nhartusení\r\nhartusit\r\nhartusivý\r\nHartův\r\nHarvard\r\nharvardský\r\nharvardský\r\nharvester\r\nhasák\r\nhasební\r\nhasicí\r\nhasící\r\nhasiččin\r\nhasička\r\nhasičský\r\nhasičštější\r\nhasič\r\nhasičův\r\nhasidlo\r\nHasíková\r\nHasík\r\nHasíkův\r\nHasilová\r\nHasil\r\nHasilův\r\nHasištejnský\r\nhasit\r\nhasívat\r\nhasivka\r\nhasnoucí\r\nhasnout\r\nhasnutí\r\nhasnutý\r\nHasprová\r\nHaspr\r\nHasprův\r\nhassium\r\nHastrdlo\r\nHastrdlová\r\nHastrdlův\r\nhastrmančin\r\nhastrmánek\r\nhastrmanka\r\nhastrmánkův\r\nhastrman\r\nhastrmanův\r\nhastrošský\r\nhastroš\r\nhastrošův\r\nHasův\r\nHaščáková\r\nHaščák\r\nHaščákův\r\nhašé\r\nHašek\r\nhašení\r\nhašený\r\nhašišáčtější\r\nhašišový\r\nhašiš\r\nHašková\r\nHaškovcová\r\nHaškovcova\r\nHaškovcův\r\nHaškovec\r\nHaškův\r\nHašlarová\r\nHašlar\r\nHašlarův\r\nhašlerka\r\nHašlerová\r\nHašler\r\nHašlerův\r\nhašovací\r\nhašování\r\nhašovaný\r\nhašteření\r\nhašteřený\r\nhašteřící\r\nhašteřilčin\r\nhašteřilka\r\nhašteřit\r\nhašteřivější\r\nhašteřivý\r\nHatašová\r\nHataš\r\nHatašův\r\nHatín\r\nhatínský\r\nhatit\r\nhatmatilka\r\nhaťmatilka\r\nhattrick\r\nHatzelová\r\nHatzel\r\nHatzelův\r\nhať\r\nHauerová\r\nHauer\r\nHauerův\r\nHauferová\r\nHaufer\r\nHauferův\r\nHaumerová\r\nHaumer\r\nHaumerův\r\nhausbót\r\nhausdorfův\r\nHausenblasová\r\nHausenblas\r\nHausenblasův\r\nHausnerová\r\nHausner\r\nHausnerův\r\nHausrucký\r\nHauzerová\r\nHauzer\r\nHauzerův\r\nHavajcův\r\nHavajec\r\nhavajský\r\nHavaj\r\nHavana\r\nhavanský\r\nhavarie\r\nhavárie\r\nhavarijnější\r\nhavarijní\r\nhavárka\r\nhavarování\r\nhavarovaný\r\nhavarovat\r\nhavarující\r\nHavelka\r\nHavelková\r\nHavelkův\r\nhavelok\r\nHavel\r\nHavelský\r\nhavěť\r\nháv\r\nHavířov\r\nHavířovsko\r\nhavířovský\r\nhavířský\r\nhavířství\r\nhavíř\r\nhavířův\r\nHavlasová\r\nHavlas\r\nHavlasův\r\nHavlíček\r\nHavlíčkobrodsko\r\nhavlíčkobrodský\r\nHavlíčková\r\nHavlíčkův\r\nHavliková\r\nHavlíková\r\nHavlik\r\nHavlík\r\nHavlikův\r\nHavlíkův\r\nHavlina\r\nHavlinová\r\nHavlínová\r\nHavlín\r\nHavlinův\r\nHavlínův\r\nHavlitschek\r\nHavlitschková\r\nHavlitschkův\r\nHavlová\r\nHavlovice\r\nhavlovický\r\nHavlůj\r\nHavlůjová\r\nHavlůjův\r\nHavlův\r\nHavola\r\nHavolsko\r\nHavránek\r\nhavraní\r\nhavránka\r\nHavránková\r\nHavránkův\r\nHavranová\r\nhavranovitý\r\nhavranový\r\nhavran\r\nHavran\r\nHavranův\r\nhavranův\r\nHavrda\r\nHavrdová\r\nHavrdův\r\nHavrillová\r\nHavrill\r\nHavrillův\r\nHavrlantová\r\nHavrlant\r\nHavrlantův\r\nhazardérčin\r\nhazardérka\r\nhazardér\r\nhazardérský\r\nhazardérství\r\nhazardérštější\r\nhazardérův\r\nhazard\r\nhazardnější\r\nhazardní\r\nhazardování\r\nhazardovat\r\nhazardující\r\nházecí\r\nhazeč\r\nházeč\r\nházečův\r\nházející\r\nházená\r\nházenější\r\nházení\r\nházenkářčin\r\nházenkářka\r\nházenkářský\r\nházenkářštější\r\nházenkář\r\nházenkářův\r\nházený\r\nházet\r\nHazlov\r\nhazlovský\r\nhazuka\r\nhbitější\r\nhbitý\r\nHeardův\r\nheavymetalový\r\nhebčejší\r\nhebčí\r\nHebelek\r\nHebelková\r\nHebelkův\r\nhebký\r\nHeblíková\r\nHeblík\r\nHeblíkův\r\nheboučký\r\nhebounký\r\nhebraismus\r\nhebraista\r\nhebraistčin\r\nhebraistka\r\nhebraistův\r\nHebrejcův\r\nHebrejec\r\nhebrejský\r\nhebrejština\r\nhebridský\r\nHebridy\r\nHebron\r\nhebronský\r\nhec\r\nHeclová\r\nHecl\r\nHeclův\r\nhecování\r\nhecovaný\r\nhecovat\r\nhecovávání\r\nhecovávaný\r\nhecovávat\r\nhecující\r\nheč\r\nHečka\r\nHečková\r\nHečkův\r\nhečte\r\nHedánek\r\nHedánková\r\nHedánkův\r\nhedenbergit\r\nhedenbergitový\r\nHeděncová\r\nHeděncův\r\nHeděnec\r\nhedgeový\r\nhédonický\r\nhedonický\r\nhedonismus\r\nhédonismus\r\nhedonistický\r\nhédonistický\r\nhédonističtější\r\nHedrlínová\r\nHedrlín\r\nHedrlínův\r\nhedvábí\r\nhedvábnice\r\nhedvábnictví\r\nhedvábník\r\nhedvábníkův\r\nHedvábný\r\nhedvábný\r\nHedviččin\r\nHedvičin\r\nHedvička\r\nHedvika\r\nhefebrand\r\nHegel\r\nHegela\r\nHegele\r\nHegelem\r\nhegelianismus\r\nhegelovcův\r\nhegelovec\r\nHegelovi\r\nhegelovský\r\nhegelovštější\r\nHegel\r\nHegelův\r\nhegemonie\r\nhegemonismus\r\nhegemonní\r\nhegemon\r\nhegemonův\r\nHegerová\r\nHeger\r\nHegerův\r\nheideggerovský\r\nHeidegger\r\nHeideggerův\r\nHeidelbergerová\r\nHeidelberger\r\nHeidelbergerův\r\nHeilmannův\r\nHeimlichová\r\nHeimlich\r\nHeimlichův\r\nHeine\r\nHeineův\r\nHein\r\nHeisenberg\r\nHeisenbergův\r\nhej\r\nhejbání\r\nHejcmanová\r\nHejcman\r\nHejcmanův\r\nHejčín\r\nhejčínský\r\nHejdánek\r\nHejdánková\r\nHejdánkův\r\nHejda\r\nHejdová\r\nHejdrychová\r\nHejdrych\r\nHejdrychův\r\nHejduková\r\nHejduk\r\nHejdukův\r\nHejdův\r\nhejenský\r\nHejhalová\r\nHejhal\r\nHejhalův\r\nhejkal\r\nhejkalův\r\nHejlová\r\nHejl\r\nhejl\r\nHejlův\r\nHejma\r\nHejmová\r\nHejmův\r\nhejn\r\nHejnalová\r\nHejnal\r\nHejnalův\r\nHejna\r\nHejná\r\nHejnice\r\nhejnický\r\nhejno\r\nHejnová\r\nHejnův\r\nHejný\r\nHejralová\r\nHejral\r\nHejralův\r\nhejsa\r\nhejsek\r\nhejskovštější\r\nhejskův\r\nhejtmančin\r\nhejtmánek\r\nHejtmánek\r\nhejtmanka\r\nHejtmánková\r\nHejtmánkovice\r\nhejtmánkovický\r\nhejtmánkový\r\nHejtmánkův\r\nhejtmánkův\r\nhejtman\r\nhejtmanský\r\nhejtmanství\r\nhejtmanův\r\nHejzlarová\r\nHejzlar\r\nHejzlarův\r\nhekající\r\nhekání\r\nhekat\r\nhekatomba\r\nhekavější\r\nhekavý\r\nHeklová\r\nHekl\r\nHeklův\r\nheknout\r\nheknutí\r\nhektar\r\nhektarový\r\nhektický\r\nhektičtější\r\nhektograf\r\nhektolitr\r\nhektolitrový\r\nhektopascal\r\nHelanová\r\nHelan\r\nHelanův\r\nHela\r\nHelclová\r\nHelcl\r\nHelclův\r\nhele\r\nheleď\r\nheleďme\r\nheleďte\r\nheleme\r\nHelena\r\nHelenčin\r\nHelenin\r\nhelenismus\r\nhelénismus\r\nhelenistický\r\nhelénistický\r\nhelénističtější\r\nHelenka\r\nhelénský\r\nhelénštější\r\nHelešicová\r\nHelešic\r\nHelešicův\r\nHelfštýn\r\nhelfštýnský\r\nHeligarová\r\nHeligar\r\nHeligarův\r\nHeligeová\r\nHelige\r\nHeligeův\r\nheligonka\r\nHeligrová\r\nHeligr\r\nHeligrův\r\nhelikon\r\nhelikoptéra\r\nhelikoptérový\r\nHelin\r\nheliocentrický\r\nheliocentrismus\r\nheliocentristický\r\nheliopauza\r\nheliosféra\r\nhelioskop\r\nhelioskopický\r\nheliostat\r\nheliotechnický\r\nheliotechničtější\r\nheliotropický\r\nheliotropismus\r\nheliový\r\nhéliový\r\nhelium\r\nhélium\r\nHellerová\r\nHeller\r\nHellerův\r\nhelma\r\nHelmholtz\r\nHelmholtzův\r\nhelmice\r\nHelmichová\r\nHelmich\r\nHelmichův\r\nhelmovka\r\nhelmový\r\nHelmut\r\nHelmutův\r\nHelsinky\r\nhelsinský\r\nhelvetský\r\nhelvetštější\r\nHemala\r\nHemalová\r\nHemalův\r\nhemangiom\r\nhematit\r\nhematitový\r\nhematologický\r\nhematologie\r\nhematolog\r\nhematologův\r\nhematoložčin\r\nhematoložka\r\nhematoonkologický\r\nhematopoetický\r\nhemeroidy\r\nhemicelulóza\r\nhemin\r\nhemisféra\r\nhemocyanin\r\nhemofilie\r\nhemofilik\r\nhemofilikův\r\nhemoglobin\r\nhemolymfa\r\nhemolýza\r\nhemoragický\r\nhemoroid\r\nhemžení\r\nhemžící\r\nhemžit\r\nhemživý\r\nhendikep\r\nhendikepovat\r\nhendikepový\r\nHendrichová\r\nHendrich\r\nHendrichův\r\nHendrix\r\nHendrixův\r\nHendrychová\r\nHendrych\r\nHendrychův\r\nhenka\r\nhenleinovec\r\nhenleinovský\r\nhenleinovštější\r\nHenlein\r\nHenleinův\r\nHenry\r\nHenychová\r\nHenych\r\nHenychův\r\nhepatitida\r\nhepatitis\r\nhepatologický\r\nhepatologie\r\nhepatolog\r\nhepatologův\r\nhepatoložčin\r\nhepatoložka\r\nHepburnová\r\nHepburn\r\nHepburnův\r\nhepčí\r\nhepčík\r\nHepnerová\r\nHepner\r\nHepnerův\r\nheptagonální\r\nheptahydrát\r\nheptan\r\nheptoda\r\nheptonolakton\r\nheptyl\r\nHerajnová\r\nHerajn\r\nHerajnův\r\nherák\r\nHérakleitos\r\nHérakleitův\r\nHérakles\r\nheraklit\r\nheraklitový\r\nHéraklův\r\nHeráková\r\nHerák\r\nHerákův\r\nheraldický\r\nheraldičtější\r\nheraldika\r\nHerálecký\r\nherálecký\r\nHerálec\r\nHeraltice\r\nheraltický\r\nHeranová\r\nHeran\r\nHeranův\r\nherbářový\r\nherbář\r\nHerbenová\r\nHerben\r\nHerbenův\r\nHerbert\r\nHerbertův\r\nherbicid\r\nherbicidní\r\nherbologie\r\nHerbrichová\r\nHerbrich\r\nHerbrichův\r\nHerbstův\r\nHercegovina\r\nhercegovinský\r\nhercegovka\r\nHercíková\r\nHercík\r\nHercíkův\r\nHerclíková\r\nHerclík\r\nHerclíkův\r\nhercův\r\nHercynský\r\nHerčíková\r\nHerčík\r\nHerčíkův\r\nHerda\r\nherda\r\nHerdová\r\nHerdův\r\nherecký\r\nherectví\r\nherec\r\nhereččin\r\nherečka\r\nherečtější\r\nheretický\r\nheretiččin\r\nheretička\r\nheretičtější\r\nheretik\r\nheretikův\r\nhereze\r\nHergesellová\r\nHergesell\r\nHergesellův\r\nHerinková\r\nHerink\r\nHerinkův\r\nHeritesová\r\nHerites\r\nHeritesův\r\nherka\r\nHerkula\r\nHerkule\r\nHerkulech\r\nHerkulem\r\nHerkules\r\nHerkules\r\nherkuleský\r\nHerkulové\r\nHerkulovi\r\nherkulovský\r\nherkulovský\r\nherkulový\r\nHerkulu\r\nHerkulů\r\nHerkulům\r\nHerkulův\r\nHerkuly\r\nhermafroditický\r\nhermafroditismus\r\nhermafrodit\r\nhermafrodit\r\nhermafroditův\r\nHermannová\r\nHermann\r\nHermannův\r\nHermanová\r\nHerman\r\nHermanův\r\nhermelín\r\nhermelínový\r\nhermenautický\r\nhermenautika\r\nhermeneutický\r\nhermeneutika\r\nHermes\r\nhermetický\r\nhermetický\r\nhermetičtější\r\nhermetismus\r\nhermetizace\r\nHermína\r\nHermínčin\r\nHermínin\r\nHermínka\r\nherna\r\nherní\r\nHernychová\r\nHernych\r\nHernychův\r\nheroický\r\nheroičtější\r\nheroin\r\nheroinista\r\nheroinistčin\r\nheroinistka\r\nheroinistův\r\nheroinový\r\nheroismus\r\nheroizující\r\nherold\r\nheroldův\r\nHeroltice\r\nheroltický\r\nHeroutová\r\nHerout\r\nHeroutův\r\nHeršálek\r\nHeršálková\r\nHeršálkův\r\nHeršpice\r\nheršpický\r\nHertvíkovice\r\nhertvíkovický\r\nhertz\r\nhertzích\r\nHertz\r\nHertzův\r\nHerulový\r\nHeryánová\r\nHeryán\r\nHeryánův\r\nherynkový\r\nHerzigová\r\nHerzig\r\nHerzigův\r\nHerzogová\r\nHerzog\r\nHerzogův\r\nHeřmánek\r\nheřmánek\r\nHeřmanice\r\nheřmanický\r\nHeřmánková\r\nHeřmánkovice\r\nheřmánkovický\r\nheřmánkový\r\nHeřmánkův\r\nHeřmanová\r\nHeřmanovice\r\nheřmanovický\r\nHeřmanov\r\nheřmanovský\r\nHeřman\r\nHeřmanský\r\nHeřmanův\r\nHeřmínův\r\nHES\r\nHesensko\r\nHésiodos\r\nHésiodův\r\nHesko\r\nheslář\r\nheslo\r\nheslo\r\nheslovitější\r\nheslovitý\r\nheslový\r\nHessensko\r\nhessenský\r\nHessová\r\nHess\r\nHessův\r\nhestický\r\nHesy\r\nheterakidóza\r\nhetéra\r\nheteroatom\r\nheterocykl\r\nheterocyklický\r\nheterocykličtější\r\nheterodyn\r\nheterofermentativní\r\nheterogenita\r\nheterogennější\r\nheterogenní\r\nheterolytický\r\nheteromorfóza\r\nheteropolární\r\nheterosexualita\r\nheterosexuálka\r\nheterosexuální\r\nheterosexuál\r\nheterosexuálův\r\nheterotrofní\r\nheterozygotní\r\nheterozygotnost\r\nheterozygot\r\nheterozygotův\r\nHettnerová\r\nHettner\r\nHettnerův\r\nheuréka\r\nheuristický\r\nheurističtější\r\nheuristika\r\nhever\r\nheverování\r\nheverovaný\r\nheverovat\r\nHevlín\r\nhevlínský\r\nhexadecimální\r\nhexafluorohlinitan\r\nhexafluronikličitan\r\nhexagonální\r\nhexahydrát\r\nhexachloroplatičitan\r\nhexachloroplatičitý\r\nhexachord\r\nhexakyanomanganatan\r\nhexakyanoželeznatan\r\nhexamethylentetramin\r\nhexametr\r\nhexan\r\nhexanitrokobaltitan\r\nhexoda\r\nhexóza\r\nheydrichiáda\r\nHeydrich\r\nHeydrichův\r\nHeyduková\r\nHeyduk\r\nHeydukův\r\nHeyrovský\r\nhezčí\r\nhezky\r\nhezký\r\nhezoučký\r\nhezounký\r\nhezoun\r\nhezounův\r\nHg\r\nhi\r\nhí\r\nhiát\r\nhiátový\r\nHiawatha\r\nhibernace\r\nhibernující\r\nhicování\r\nhicovaný\r\nhicovat\r\nHiczová\r\nHicz\r\nHiczův\r\nhierarcha\r\nhierarchický\r\nhierarchičtější\r\nhierarchičtější\r\nhierarchie\r\nhierarchizace\r\nhierarchizovanější\r\nhierarchizování\r\nhierarchizovaný\r\nhierarchizovat\r\nhierarchův\r\nhieroglyf\r\nhieroglyfický\r\nHieronymus\r\nHieronymův\r\nhihi\r\nhihňající\r\nhihňání\r\nhihňat\r\nhihňávání\r\nhihňávat\r\nhihňavý\r\nhije\r\nhildesheimský\r\nHilpertová\r\nHilpert\r\nHilpertův\r\nhilsneriáda\r\nHilsner\r\nHilsnerův\r\nHimaláje\r\nhimálajský\r\nhimalájský\r\nHimaláj\r\nHimmelová\r\nHimmel\r\nHimmelův\r\nhindí\r\nHindlsová\r\nHindls\r\nHindlsův\r\nHind\r\nhind\r\nHindráková\r\nHindrák\r\nHindrákův\r\nhindský\r\nhindština\r\nhinduismus\r\nhinduista\r\nhinduistčin\r\nhinduistický\r\nhinduistka\r\nhinduistův\r\nhindustánština\r\nHindův\r\nhindův\r\nhip\r\nhipík\r\nhipíkův\r\nhipolog\r\nhipologův\r\nhipoložčin\r\nhipoložka\r\nHipolyt\r\nhipoterapie\r\nHipparchos\r\nHipparchův\r\nhippie\r\nhippies\r\nhippiovský\r\nhippoterapie\r\nHirošima\r\nhirošimský\r\nHirschová\r\nHirsch\r\nHirschův\r\nHiršalová\r\nHiršal\r\nHiršalův\r\nHiršberk\r\nHirtová\r\nHirt\r\nHirtův\r\nHispánie\r\nhispanista\r\nhispanistčin\r\nhispanističin\r\nhispanistika\r\nhispanistka\r\nhispanistův\r\nhistamin\r\nhistaminový\r\nhistidin\r\nhistogram\r\nhistologický\r\nhistologie\r\nhistolog\r\nhistologův\r\nhistoložčin\r\nhistoložka\r\nhistoricismus\r\nhistoricistický\r\nhistoricita\r\nhistorickoprávní\r\nhistorický\r\nhistoriččin\r\nhistorička\r\nhistoričtější\r\nhistorie\r\nhistorik\r\nhistorikův\r\nhistoriografčin\r\nhistoriografický\r\nhistoriografie\r\nhistoriografka\r\nhistoriograf\r\nhistoriografův\r\nhistorismus\r\nhistorizující\r\nhistorka\r\nhit\r\nhitlerismus\r\nhitleristický\r\nhitlerovcův\r\nhitlerovec\r\nhitlerovský\r\nhitlerovštější\r\nhitlerový\r\nHitler\r\nHitlerův\r\nhitový\r\nhitparáda\r\nhitparádový\r\nHIV\r\nhl\r\nhlad\r\nhladicí\r\nhladící\r\nhladiččin\r\nhladička\r\nHladíková\r\nHladík\r\nHladíkův\r\nHladilová\r\nHladil\r\nHladilův\r\nhladina\r\nhladinka\r\nhladinový\r\nhladit\r\nhladítko\r\nhladivý\r\nhladkosrstý\r\nHladký\r\nhladký\r\nhladnější\r\nhladomor\r\nhladomorna\r\nhlaďoučký\r\nhlaďounký\r\nhladovějící\r\nhladovější\r\nhladovění\r\nhladovět\r\nhladovka\r\nHladov\r\nhladov\r\nhladovský\r\nhladový\r\nhladší\r\nhlady\r\nhlaholení\r\nhlahol\r\nhlaholice\r\nhlaholit\r\nhlaholivý\r\nhlaholnější\r\nhlaholský\r\nhlásající\r\nhlásání\r\nhlásaný\r\nhlasatelčin\r\nhlasatelka\r\nhlasatelna\r\nhlasatel\r\nhlasatelův\r\nhlásat\r\nhlásávání\r\nhlásávaný\r\nhlásávat\r\nhlásek\r\nhlas\r\nhlásící\r\nhlásič\r\nhlasista\r\nhlasistčin\r\nhlasistka\r\nhlasistův\r\nhlásit\r\nhlasitější\r\nhlasitý\r\nhlásívat\r\nhlasivka\r\nhlasivkový\r\nHlasivo\r\nhláska\r\nhláskosloví\r\nhláskoslovný\r\nhláskování\r\nhláskovaný\r\nhláskovat\r\nhláskový\r\nhlasnější\r\nHlásný\r\nhlásný\r\nhlasovací\r\nhlasování\r\nhlasovaný\r\nhlasovat\r\nhlasový\r\nhlasový\r\nhlasující\r\nhlášenější\r\nhlášení\r\nhlášený\r\nhláška\r\nHlaváček\r\nhlaváček\r\nhlavačka\r\nHlaváčková\r\nHlaváčkův\r\nHlaváčová\r\nhlaváč\r\nHlaváč\r\nHlaváčův\r\nhlaváčův\r\nHlava\r\nHlavata\r\nhlavatka\r\nHlavatová\r\nHlavatův\r\nHlavatý\r\nhlavatý\r\nhlava\r\nhlavenecký\r\nHlavenec\r\nhlavěnka\r\nhlavenský\r\nhlaveň\r\nHlavešová\r\nHlaveš\r\nHlavešův\r\nHlavice\r\nhlavice\r\nhlavický\r\nhlavicový\r\nhlavičkářčin\r\nhlavičkářka\r\nhlavičkář\r\nhlavičkářův\r\nhlavička\r\nhlavičkou\r\nhlavičkování\r\nhlavičkovaný\r\nhlavičkovat\r\nhlavičkovější\r\nhlavičkový\r\nhlavičkující\r\nhlavinka\r\nhlaviště\r\nHlávka\r\nhlávka\r\nHlávková\r\nhlávkový\r\nHlávkův\r\nhlavně\r\nhlavnější\r\nHlavnice\r\nhlavnický\r\nhlavnička\r\nhlavní\r\nHlavno\r\nHlavňovice\r\nhlavňovický\r\nhlavňový\r\nhlavolam\r\nhlavonožcův\r\nhlavonožec\r\nhlavoruční\r\nhlavovací\r\nhlavování\r\nhlavovaný\r\nhlavovat\r\nHlavová\r\nhlavový\r\nHlav\r\nHlavsa\r\nHlavsová\r\nHlavsův\r\nHlavův\r\nhlazenější\r\nhlazení\r\nhlazený\r\nhle\r\nHlebáková\r\nHlebák\r\nHlebákův\r\nhledací\r\nhledáček\r\nhledačka\r\nhledáčkový\r\nhledačský\r\nhledačství\r\nhledač\r\nhledačův\r\nhledající\r\nhledanější\r\nhledání\r\nhledaný\r\nhledat\r\nhledávání\r\nhledávaný\r\nhledávat\r\nhledění\r\nhleděný\r\nhledět\r\nhledící\r\nhledík\r\nHledíkový\r\nhlediska\r\nhledisko\r\nhlediště\r\nhlemýždí\r\nhlemýžďový\r\nhlemýžď\r\nhlemýžďův\r\nhlen\r\nhlenka\r\nhlenovitý\r\nhlenový\r\nhles\r\nhlesnout\r\nhlesnutí\r\nhlezenní\r\nhlezno\r\nhleznový\r\nhlídací\r\nhlídaččin\r\nhlídačka\r\nhlídačský\r\nhlídačštější\r\nhlídač\r\nhlídačův\r\nhlídající\r\nhlídanější\r\nhlídání\r\nhlídaný\r\nhlídat\r\nhlídávat\r\nhlídka\r\nhlídkovací\r\nhlídkování\r\nhlídkovat\r\nhlídkovější\r\nhlídkový\r\nhlídkující\r\nhliňák\r\nHlína\r\nhlína\r\nHlincová\r\nHlincův\r\nHlinec\r\nhliněnka\r\nhlinenský\r\nhliněný\r\nhliníkárna\r\nhliník\r\nhliníkový\r\nhliniště\r\nhlinitan\r\nhlinitanový\r\nhlinitější\r\nhlinitokřemičitan\r\nhlinitopísčitější\r\nhlinitopísčitý\r\nhlinitý\r\nHlinka\r\nhlinka\r\nHlinková\r\nhlinkový\r\nHlinkův\r\nHlinná\r\nHlínová\r\nhlínový\r\nHlinsko\r\nHlinský\r\nhlinský\r\nHlínův\r\nhlístice\r\nhlíst\r\nhlístův\r\nHlivice\r\nhlíza\r\nhlízka\r\nhlízkovitý\r\nhliznatější\r\nhlíznatější\r\nhlíznatý\r\nhlízovitý\r\nhlízovka\r\nHlízov\r\nhlízovský\r\nhlodák\r\nhlodanější\r\nhlodání\r\nhlodaný\r\nhlodášový\r\nhlodaš\r\nhlodat\r\nhlodávání\r\nhlodávaný\r\nhlodávat\r\nhlodavcův\r\nhlodavec\r\nhlodavější\r\nhlodavý\r\nhloh\r\nHlohov\r\nHlohová\r\nhlohovecký\r\nHlohovec\r\nhlohovský\r\nHlohový\r\nhlohový\r\nhlomoz\r\nhlomozivý\r\nhlomoznější\r\nhloubající\r\nhloubání\r\nhloubaný\r\nhloubat\r\nhloubávání\r\nhloubávat\r\nhloubavcův\r\nhloubavec\r\nhloubavější\r\nhloubavý\r\nhlouběji\r\nhlouběme\r\nhloubení\r\nhloubený\r\nhlouběte\r\nHloubětín\r\nhloubětínský\r\nhloubi\r\nhloubicí\r\nhloubící\r\nhloubi\r\nhloubit\r\nhloubka\r\nhloubkoměr\r\nhloubkovější\r\nhloubkový\r\nhlouček\r\nhloupější\r\nhloupnout\r\nhloupnutí\r\nhloupůstka\r\nhloupý\r\nHloušek\r\nHloušková\r\nHlouškův\r\nHložek\r\nhloží\r\nhložinka\r\nhložka\r\nHložková\r\nHložkův\r\nhltající\r\nhltan\r\nhltání\r\nhltanový\r\nhltaný\r\nhltat\r\nhltavcův\r\nhltavec\r\nhltavější\r\nhltavý\r\nhlteček\r\nhlt\r\nhltný\r\nhltoun\r\nhltounův\r\nhlubánka\r\nhlubič\r\nhlubičův\r\nhlubina\r\nhlubinnější\r\nhlubinný\r\nhlubinový\r\nhlubný\r\nhlubocký\r\nhlubocký\r\nHlubočany\r\nhlubočecký\r\nHlubočec\r\nhlubočnský\r\nhlubokánský\r\nHluboká\r\nHluboké\r\nhlubokomyslnější\r\nhlubokomyslný\r\nhluboký\r\nhlubotisk\r\nhlubotiskový\r\nhlubší\r\nHlubuček\r\nHlubůček\r\nHlubučková\r\nHlubůčková\r\nHlubučkův\r\nHlubůčkův\r\nhlučení\r\nhlučet\r\nhlučící\r\nHlučín\r\nHlučínsko\r\nhlučínsko\r\nhlučínský\r\nhlučnější\r\nhlučný\r\nhluchavka\r\nhluchavkotvarý\r\nhluchavkovitý\r\nhluchnout\r\nhluchoněmý\r\nhluchoněmý\r\nhluchota\r\nHluchov\r\nhluchovský\r\nhluchý\r\nhlukař\r\nhlukařův\r\nhluk\r\nhlukoměr\r\nhlukový\r\nhlupácký\r\nhlupaččin\r\nhlupáček\r\nhlupačka\r\nhlupáčkův\r\nhlupák\r\nhlupákův\r\nhlupcův\r\nhlupec\r\nHlupín\r\nhlupínský\r\nhlušcův\r\nhlušec\r\nhlušeji\r\nHlušice\r\nhlušický\r\nHlušička\r\nHlušičková\r\nHlušičkův\r\nhlušina\r\nhlušinový\r\nhlušší\r\nHluštíková\r\nHluštík\r\nHluštíkův\r\nhm\r\nhmatadlo\r\nhmatání\r\nhmataný\r\nhmatatelnější\r\nhmatatelný\r\nhmatat\r\nhmatávat\r\nhmat\r\nhmatník\r\nhmátnout\r\nhmátnutí\r\nhmatný\r\nhmatový\r\nhmitání\r\nhmitat\r\nhmit\r\nhmitnout\r\nhmm\r\nhmmm\r\nhmmmm\r\nhmotařský\r\nhmotařštější\r\nhmota\r\nhmotnější\r\nhmotněprávní\r\nhmotnostní\r\nhmotný\r\nhmotový\r\nhmoždinka\r\nhmoždíř\r\nhmoždit\r\nhmyz\r\nhmyze\r\nhmyzem\r\nhmyzí\r\nhmyzožravcův\r\nhmyzožravec\r\nhmyzožravý\r\nhmyzu\r\nhňácavý\r\nhnací\r\nHnačov\r\nhnačovský\r\nhnal\r\nhnanější\r\nhnaní\r\nhnán\r\nhnaný\r\nHnátek\r\nhnát\r\nhnát\r\nHnátková\r\nHnátkův\r\nHnátovský\r\nhned\r\nhnědák\r\nhnědákův\r\nhnědásek\r\nhnědáskův\r\nhnědavý\r\nhnědel\r\nhnědelový\r\nhněď\r\nhnědka\r\nhnědnoucí\r\nhnědnout\r\nhnědnutí\r\nhnědobílý\r\nhnědočerný\r\nhnědočervený\r\nhnědofialový\r\nhnědooký\r\nhnědorůžový\r\nhnědošedý\r\nhnědošedý\r\nhnědouhelný\r\nhnědouš\r\nhnědoušův\r\nhnědovlásčin\r\nhnědovláska\r\nhnědovlasý\r\nhnědozelený\r\nhnědozem\r\nhnědožlutý\r\nhnědší\r\nhnědý\r\nhnětací\r\nhnětač\r\nhnětání\r\nhnětaný\r\nhnětat\r\nhnětení\r\nhněten\r\nhnětený\r\nHnětkovský\r\nhněvající\r\nhněvání\r\nhněvaný\r\nhněvat\r\nhněvávat\r\nHněvčeves\r\nhněvčeveský\r\nhněv\r\nhněvivější\r\nhněvivý\r\nHněvkovice\r\nhněvkovický\r\nHněvkovský\r\nhněvnější\r\nHněvotín\r\nhněvotínský\r\nHnězdno\r\nhnida\r\nHnídek\r\nHnídková\r\nHnídkův\r\nhnidopich\r\nhnidopichův\r\nhnidopišský\r\nhnidopišství\r\nhnijící\r\nHniková\r\nHnik\r\nHnikův\r\nHnilica\r\nHnilicová\r\nHnilicův\r\nhnilička\r\nhniličkový\r\nhniloba\r\nhnilobnější\r\nhnilobný\r\nhnisající\r\nhnisání\r\nhnisat\r\nhnisavější\r\nhnisavý\r\nhnis\r\nhníst\r\nhnít\r\nHnitek\r\nhnití\r\nHnitková\r\nHnitkův\r\nhnízdečko\r\nhnízdění\r\nhnízděný\r\nhnízdící\r\nHnízdilová\r\nHnízdil\r\nHnízdilův\r\nhnízdiště\r\nhnízdit\r\nhnízdní\r\nhnízdo\r\nhnízdování\r\nhnízdovat\r\nhnízdový\r\nhnoje\r\nhnojem\r\nhnojení\r\nhnojený\r\nhnoji\r\nHnojice\r\nhnojicí\r\nhnojící\r\nhnojický\r\nhnojích\r\nhnojiště\r\nhnojit\r\nhnojivářský\r\nhnojivo\r\nhnojivý\r\nhnojnice\r\nhnojník\r\nhnojný\r\nhnojů\r\nhnojům\r\nhnojůvka\r\nhnout\r\nhnůj\r\nhňup\r\nhňupův\r\nhnusák\r\nhnusákův\r\nhnusení\r\nhnusený\r\nhnus\r\nhnusící\r\nhnusit\r\nhnusnějšícYRW\r\nhnusnější\r\nhnusný\r\nhnutí\r\nhnutý\r\nhnutý\r\nHnyková\r\nHnyk\r\nHnykův\r\nho\r\nhobby\r\nhobit\r\nhobitův\r\nhobla\r\nhoblice\r\nhoblík\r\nHoblíková\r\nhoblíkový\r\nHoblík\r\nHoblíkův\r\nhoblina\r\nhoblinka\r\nhoblovací\r\nhoblovačka\r\nhoblování\r\nhoblovaný\r\nhoblovat\r\nhoblovávání\r\nhoblovávaný\r\nhoblovávat\r\nhoblovka\r\nhobojista\r\nhobojistčin\r\nhobojistka\r\nhobojistův\r\nhobojový\r\nhoboj\r\nhobra\r\nhobrový\r\nHobza\r\nHobzí\r\nHobzová\r\nHobzův\r\nhoc\r\nhockeyový\r\nHocký\r\nhod\r\nHodějice\r\nhodějický\r\nHodějovice\r\nhodějovický\r\nHodek\r\nhoden\r\nHodětín\r\nhodětínský\r\nhod\r\nHodice\r\nhodící\r\nhodický\r\nhodinářčin\r\nhodinářka\r\nhodinářský\r\nhodinářství\r\nhodinář\r\nhodinářův\r\nhodina\r\nhodinka\r\nhodinkový\r\nhodinou\r\nhodinovka\r\nhodinový\r\nHodíškov\r\nhodíškovský\r\nhodit\r\nHodková\r\nHodkovice\r\nhodkovický\r\nHodkův\r\nhodlající\r\nhodlání\r\nhodlat\r\nhodna\r\nhodně\r\nhodnější\r\nhodni\r\nhodnocenější\r\nhodnocení\r\nhodnocený\r\nhodno\r\nhodnostářčin\r\nhodnostářka\r\nhodnostář\r\nhodnostářův\r\nhodnostní\r\nhodnota\r\nhodnoticí\r\nhodnotící\r\nhodnotící\r\nhodnotit\r\nhodnotitelčin\r\nhodnotitelka\r\nhodnotitelný\r\nhodnotitelský\r\nhodnotitel\r\nhodnotitelův\r\nhodnotnější\r\nhodnotný\r\nhodnotový\r\nhodnověrnější\r\nhodnověrný\r\nhodnu\r\nhodny\r\nhodný\r\nhodobožový\r\nhodokvas\r\nHodonice\r\nhodonický\r\nHodonín\r\nHodonínsko\r\nhodonínsko\r\nhodonínský\r\nHodonský\r\nhodování\r\nhodovat\r\nHodov\r\nhodovník\r\nhodovní\r\nhodovský\r\nhodový\r\nHodslavice\r\nhodslavický\r\nhodující\r\nHodyně\r\nhodyňský\r\nHodžový\r\nHodžův\r\nHoerová\r\nHoer\r\nHoerův\r\nHofbauerová\r\nHofbauer\r\nHofbauerův\r\nhoferčin\r\nhoferka\r\nHoffmannová\r\nhoffmannovštější\r\nHoffmann\r\nHoffmannův\r\nHoffmanová\r\nHoffman\r\nHoffmanův\r\nHofírek\r\nHofírková\r\nHofírkův\r\nHofmannová\r\nHofmann\r\nHofmannův\r\nHofmanová\r\nHofman\r\nHofmanův\r\nhofmistr\r\nhofmistrův\r\nHofrichterová\r\nHofrichter\r\nHofrichterův\r\nhofrychtář\r\nhofrychtářův\r\nHögerová\r\nHöger\r\nHögerův\r\nHohenštauf\r\nHohenwarthův\r\nHohenwartův\r\nHohenzollern\r\nHohenzollern\r\nHohenzollernský\r\nHohenzollernův\r\nhohol\r\nhoholův\r\nHochmalová\r\nHochmal\r\nHochmalův\r\nHochmannová\r\nHochmann\r\nHochmannův\r\nHochmanová\r\nHochman\r\nHochmanův\r\nhoch\r\nhochštapler\r\nhochštaplerský\r\nhochštaplerství\r\nhochštaplerův\r\nhochův\r\nhoj\r\nHojda\r\nHojdarová\r\nHojdar\r\nHojdarův\r\nHojdová\r\nHojdův\r\nhojení\r\nhojený\r\nHojeřice\r\nhojící\r\nhojit\r\nhojitelnější\r\nhojivější\r\nhojivý\r\nHojkov\r\nhojkovský\r\nhojnější\r\nHojný\r\nhojný\r\nHojsáková\r\nHojsák\r\nHojsákův\r\nHojsův\r\nhokejbalista\r\nhokejbalistčin\r\nhokejbalistka\r\nhokejbalistův\r\nhokejista\r\nhokejistčin\r\nhokejistka\r\nhokejistův\r\nhokejka\r\nhokejovější\r\nhokejový\r\nhokej\r\nHokkaidó\r\nhokus\r\nhokuspokus\r\nhokynářčin\r\nhokynářka\r\nhokynářský\r\nhokynářství\r\nhokynář\r\nhokynářův\r\nhokyně\r\nhokynin\r\nhola\r\nHolada\r\nHoladová\r\nHoladův\r\nholahou\r\nHolanďančin\r\nHolanďanka\r\nHolanďan\r\nHolanďanův\r\nHolandsko\r\nHolandsko\r\nholandský\r\nholandština\r\nHolanová\r\nHoláňová\r\nHolan\r\nholanský\r\nHoláň\r\nHolanův\r\nHoláňův\r\nHolasice\r\nholasický\r\nHolasová\r\nHolasovice\r\nholasovický\r\nHolas\r\nHolasův\r\nholátko\r\nHolbach\r\nHolbachův\r\nholba\r\nholbový\r\nHolbusová\r\nHolbus\r\nHolbusův\r\nHolcmanová\r\nHolcman\r\nHolcmanův\r\nHolcová\r\nHolcův\r\nholčičí\r\nholčička\r\nholčinčin\r\nholčinka\r\nholčin\r\nHolčovice\r\nholčovický\r\nhold\r\nholding\r\nholdingový\r\nholdovací\r\nholdování\r\nholdovaný\r\nholdovat\r\nholdovávání\r\nholdovávat\r\nholdující\r\nhole\r\nHolec\r\nHoleček\r\nHolečková\r\nHolečkův\r\nholedbající\r\nholedbání\r\nholedbat\r\nholedbavý\r\nholejší\r\nholemi\r\nholenčin\r\nHolenda\r\nHolendová\r\nHolendův\r\nholení\r\nholenka\r\nholenkové\r\nholenku\r\nholenní\r\nholeňový\r\nholený\r\nholeň\r\nHolešovice\r\nholešovický\r\nHolešovičky\r\nHolešov\r\nholešovský\r\nholešovský\r\nHoletín\r\nholetínský\r\nholi\r\nholí\r\nHolice\r\nholicí\r\nholící\r\nholický\r\nholiččin\r\nholička\r\nholičský\r\nholičství\r\nholičštější\r\nholič\r\nholičův\r\nholích\r\nHolíková\r\nHolík\r\nHolíkův\r\nholím\r\nHolina\r\nholina\r\nHolingová\r\nHoling\r\nHolingův\r\nholinka\r\nholínka\r\nHolín\r\nHolinová\r\nholínský\r\nHolinův\r\nholírna\r\nholismus\r\nholistický\r\nholističtější\r\nholit\r\nholkař\r\nholkařův\r\nholka\r\nHollanová\r\nHollan\r\nHollanův\r\nHollywood\r\nhollywoodský\r\nhollywoodský\r\nHolmanová\r\nHolman\r\nHolmanův\r\nholmiový\r\nholmium\r\nholobrádek\r\nholobrádkův\r\nholocaust\r\nholocaustovější\r\nholocaustový\r\nholocén\r\nholocenní\r\nholografický\r\nholografičtější\r\nhologram\r\nholohlavější\r\nholohlavý\r\nholokaust\r\nholokaustový\r\nholokrččin\r\nholokrčka\r\nholomek\r\nHolomek\r\nHolomíček\r\nHolomíčková\r\nHolomíčkův\r\nHolomková\r\nHolomkův\r\nholomkův\r\nholomorfie\r\nholomorfní\r\nholomráz\r\nholomraze\r\nholomrazech\r\nholomrazem\r\nholomrazu\r\nholomrazů\r\nholomrazům\r\nholomrazy\r\nholonomie\r\nholonomní\r\nholoseč\r\nholota\r\nHolotín\r\nholotínský\r\nholoubátko\r\nholoubě\r\nholoubek\r\nHoloubek\r\nHoloubková\r\nHoloubkov\r\nholoubkovský\r\nholoubkový\r\nHoloubkův\r\nholoubkův\r\nHolovský\r\nHolštejn\r\nholštejnský\r\nHolštýnsko\r\nHolubářová\r\nholubářský\r\nholubářství\r\nholubář\r\nHolubář\r\nHolubářův\r\nholubářův\r\nHolubcová\r\nHolubcův\r\nHolubec\r\nholuběnčin\r\nholuběnka\r\nholubice\r\nholubičin\r\nholubičí\r\nholubička\r\nholubinka\r\nholubinkový\r\nholubí\r\nholubník\r\nHolubová\r\nHolubov\r\nholubovský\r\nholubový\r\nholub\r\nHolub\r\nHolubův\r\nholubův\r\nHolýšov\r\nholýšovský\r\nHolý\r\nholý\r\nHolzmanová\r\nHolzman\r\nHolzmanův\r\nHolznerová\r\nHolzner\r\nHolznerův\r\nhomeomorfismus\r\nhomeomorfní\r\nhomeopatčin\r\nhomeopatický\r\nhomeopatikum\r\nhomeopatka\r\nhomeopat\r\nhomeopatův\r\nhomeostáza\r\nHomerová\r\nHomer\r\nHomér\r\nhomérský\r\nhomérštější\r\nHomerův\r\nHomérův\r\nhomespun\r\nhomespunový\r\nhomiletický\r\nhomiletika\r\nhomiliář\r\nhomilie\r\nhomofilní\r\nhomofóbie\r\nhomofonie\r\nhomogenisační\r\nhomogenita\r\nhomogenizace\r\nhomogenizační\r\nhomogenizovaný\r\nhomogenizovat\r\nhomogennější\r\nhomogenní\r\nhomoisoflavonoid\r\nHomola\r\nHomola\r\nhomole\r\nHomolka\r\nhomolka\r\nHomolková\r\nhomolkový\r\nHomolkův\r\nhomologace\r\nhomolog\r\nhomologický\r\nhomologičtější\r\nhomologie\r\nhomologování\r\nhomologovaný\r\nhomologovat\r\nhomologovávání\r\nhomologovávaný\r\nhomologovávat\r\nHomolová\r\nhomolový\r\nHomolův\r\nhomolytický\r\nhomomorfismus\r\nhomomorfní\r\nhomonymický\r\nhomonymie\r\nhomonymita\r\nhomonymní\r\nhomonymum\r\nhomopolární\r\nhomosexualita\r\nhomosexuálka\r\nhomosexuální\r\nhomosexuál\r\nhomosexuálův\r\nhomotopie\r\nhomozygotní\r\nhomozygot\r\nhomozygotův\r\nhomunkulus\r\nhonácký\r\nhonák\r\nhonákův\r\nhonba\r\nhoncování\r\nHoncová\r\nHonců\r\nHonc\r\nHoncův\r\nhoncův\r\nHondurasančin\r\nHondurasanka\r\nHondurasan\r\nHondurasanův\r\nHonduras\r\nhonduraský\r\nhoneb\r\nhonební\r\nhonec\r\nhonem\r\nhonění\r\nhoněný\r\nHongkong\r\nhongkongský\r\nhon\r\nhonicí\r\nhonící\r\nhonička\r\nhonič\r\nhoničův\r\nHönigerová\r\nHöniger\r\nHönigerův\r\nHönigová\r\nHönig\r\nHönigův\r\nhonit\r\nhonitba\r\nhonívání\r\nhonívaný\r\nhonívat\r\nHonolulu\r\nhonorace\r\nhonorární\r\nhonorářový\r\nhonorář\r\nhonorování\r\nhonorovaný\r\nhonorovat\r\nhonorovávat\r\nhonosení\r\nhonosící\r\nhonosit\r\nhonosnější\r\nhonosný\r\nhonovací\r\nhonovaččin\r\nhonovačka\r\nhonování\r\nhonovaný\r\nhonovat\r\nhonový\r\nHonsová\r\nHons\r\nHonsův\r\nHonšú\r\nHontzová\r\nHontz\r\nHontzův\r\nHonzáková\r\nHonzák\r\nHonzákův\r\nHonza\r\nHonzejek\r\nHonzejková\r\nHonzejk\r\nHonzejkův\r\nHonzíček\r\nHonzíčková\r\nHonzíčkův\r\nHonzíková\r\nHonzík\r\nHonzíkův\r\nHonzův\r\nHook\r\nHookův\r\nhop\r\nHopi\r\nhopkající\r\nhopkání\r\nhopkat\r\nhopkávání\r\nhopkávat\r\nhopla\r\nhopsa\r\nhopsáček\r\nhopsáčkův\r\nhopsající\r\nhopsání\r\nhopsasa\r\nhopsat\r\nhopsavý\r\nhorácký\r\nHoráček\r\nHoráčková\r\nHoráčkův\r\nHoráková\r\nHorákov\r\nhorákovský\r\nhorákovský\r\nhorák\r\nHorák\r\nHorákův\r\nhorákův\r\nhorákyně\r\nhoralčin\r\nHorálek\r\nHoralíková\r\nHoralík\r\nHoralíkův\r\nhoralka\r\nHorálková\r\nHorálkův\r\nHoralová\r\nHoral\r\nhoral\r\nHoralův\r\nhoralův\r\nhorama\r\nHora\r\nHoratschiceová\r\nHoratschice\r\nHoratschiceův\r\nHoratschkeová\r\nHoratschke\r\nHoratschkeův\r\nhora\r\nHoražďovice\r\nHoražďovicko\r\nhoražďovický\r\nHorčápsko\r\nhorčejší\r\nHorčička\r\nHorčičková\r\nHorčičkův\r\nhorda\r\nHorecký\r\nhorecký\r\nhorečka\r\nhorečnatější\r\nhorečnatý\r\nhorečnější\r\nhorečný\r\nhorem\r\nhoremdolem\r\nhorempádem\r\nHorenová\r\nHoren\r\nhorentnější\r\nhorentní\r\nHorenův\r\nhorilka\r\nhorizontála\r\nhorizontálnější\r\nhorizontální\r\nhorizont\r\nhorizontka\r\nhorka\r\nhorkokrevnější\r\nhorkokrevný\r\nhorko\r\nhorkovod\r\nhorkovodní\r\nhorkovzdušný\r\nHorký\r\nhorký\r\nhorlení\r\nhorlený\r\nhorlící\r\nhorlit\r\nhorlivcův\r\nhorlivec\r\nhorlivější\r\nhorlivý\r\nhormonální\r\nhormon\r\nhormonový\r\nhorňácký\r\nHornád\r\nhorňák\r\nhorňákův\r\nHorna\r\nhornatější\r\nhornatina\r\nhornatý\r\nhornější\r\nHorní\r\nhornický\r\nhornictví\r\nhornictvo\r\nHorníček\r\nHorníčková\r\nHorníčkův\r\nhorničtější\r\nHorníková\r\nhorník\r\nHorník\r\nHorníkův\r\nhorníkův\r\nhornina\r\nhorninový\r\nhornista\r\nhornistčin\r\nhornistka\r\nhornistův\r\nhorní\r\nhornodunajský\r\nhornolužický\r\nHornolužičan\r\nhornomoravský\r\nhornoplošník\r\nhornorakouský\r\nHornosín\r\nhornosínský\r\nhornoslezský\r\nHornová\r\nhornovoltský\r\nHornův\r\nHornychová\r\nHornych\r\nHornychův\r\nhorolezcův\r\nhorolezecký\r\nhorolezectví\r\nhorolezec\r\nhorolezkyně\r\nhorolezkynin\r\nhorologium\r\nHoroměřice\r\nhoroměřický\r\nhoropis\r\nhoropisný\r\nhoror\r\nhororovější\r\nhororový\r\nhoroskop\r\nhorotvorný\r\nhoroucí\r\nhoroucně\r\nhoroucný\r\nhorování\r\nhorovaný\r\nhorovat\r\nhorovávání\r\nhorovávat\r\nHorová\r\nhorozelecký\r\nhorror\r\nHorský\r\nhorský\r\nHorstová\r\nHorst\r\nHorstův\r\nhorstvo\r\nhoršení\r\nhoršený\r\nhoršící\r\nhoršit\r\nhorší\r\nHoršovský\r\nhorštější\r\nhortenzie\r\nHortobágy\r\nHortová\r\nHort\r\nHortův\r\nhorující\r\nHorušický\r\nHorův\r\nHorváthová\r\nHorváth\r\nHorváthův\r\nHorymír\r\nHorymírův\r\nHoryna\r\nHorynová\r\nHorynův\r\nhořáček\r\nhořák\r\nhořákový\r\nhořavka\r\nhořcokvětý\r\nhořcový\r\nhořčejší\r\nhořčice\r\nhořčičný\r\nhořčík\r\nhořčíkový\r\nhořčina\r\nhořčinka\r\nhořec\r\nhořečnatý\r\nhořejšek\r\nHořejšíová\r\nHořejší\r\nHořejšíův\r\nhořejší\r\nHořejšová\r\nHořejš\r\nHořejšův\r\nhořekování\r\nhořekovat\r\nhořekující\r\nhoře\r\nHořeníová\r\nHoření\r\nhoření\r\nHořeníův\r\nhořený\r\nhořet\r\nHořice\r\nhořící\r\nhořický\r\nHořínek\r\nHořiněves\r\nhořiněveský\r\nHořínková\r\nHořínkův\r\nHořín\r\nhořínský\r\nhořknout\r\nhořknutí\r\nhořkomandlový\r\nhořkosladší\r\nhořkoslaný\r\nhořký\r\nhořlavější\r\nhořlavina\r\nhořlavý\r\nHořovice\r\nhořovický\r\nhosana\r\nHoschová\r\nHosch\r\nHoschův\r\nHosín\r\nhosínský\r\nHoskovcová\r\nHoskovcův\r\nHoskovec\r\nhospic\r\nhospicový\r\nhospitace\r\nhospitalisace\r\nhospitalizace\r\nhospitalizování\r\nhospitalizovaný\r\nhospitalizovat\r\nhospitovat\r\nhospitující\r\nhospodárnější\r\nhospodárný\r\nhospodářčin\r\nhospodaření\r\nhospodařený\r\nhospodařící\r\nhospodáříček\r\nhospodáříčkův\r\nhospodařit\r\nhospodářka\r\nhospodářskoprávní\r\nhospodářský\r\nhospodářství\r\nhospodář\r\nhospodářův\r\nhospoda\r\nHospodin\r\nHospodinův\r\nhospodský\r\nhospodštější\r\nhospodyňčin\r\nhospodyně\r\nhospodynin\r\nhospodyňka\r\nhospodyňský\r\nhospodyňštější\r\nHospozín\r\nhospozínský\r\nhospůdka\r\nHostašovice\r\nhostašovický\r\nHostějov\r\nhostějovský\r\nhostel\r\nHostěradice\r\nhostěradický\r\nHostěrádky\r\nhostěrádský\r\nhosteska\r\nHostětín\r\nhostětínský\r\nhostí\r\nhostící\r\nhostie\r\nhostilita\r\nhostilní\r\nhostina\r\nhostinec\r\nhostinenský\r\nhostinka\r\nHostín\r\nHostinné\r\nhostínský\r\nhostinský\r\nhostinštější\r\nHostišová\r\nhostišovský\r\nhostit\r\nhostitelčin\r\nhostitelka\r\nhostitelský\r\nhostitelství\r\nhostitel\r\nhostitelův\r\nhostivařský\r\nhostivařský\r\nHostivař\r\nHostivice\r\nhostivický\r\nhostmi\r\nHostomice\r\nhostomický\r\nhostouňský\r\nHostouň\r\nhostování\r\nhostovat\r\nHostovice\r\nhostovický\r\nHostovlice\r\nhostovlický\r\nhost\r\nhostující\r\nhostův\r\nHostýn\r\nHostýnsko\r\nhostýnský\r\nHošek\r\nhošíček\r\nhošíčkův\r\nhošík\r\nhošíkův\r\nHošková\r\nHoškovice\r\nhoškovický\r\nHoškův\r\nHošťálek\r\nHošťálková\r\nhošťálkovský\r\nHošťálkův\r\nHošta\r\nHoštejn\r\nhoštejnský\r\nhoštění\r\nhoštěný\r\nHoštice\r\nhoštický\r\nHošťka\r\nHoštová\r\nHoštův\r\nhot\r\nHotařová\r\nHotař\r\nHotařův\r\nhotel\r\nhoteliérčin\r\nhoteliérka\r\nhoteliér\r\nhoteliérův\r\nhotelích\r\nhotelový\r\nHotentot\r\nHotentotův\r\nHotmarová\r\nHotmar\r\nHotmarův\r\nhotovější\r\nhotovení\r\nhotovící\r\nhotovka\r\nhotov\r\nhotovostní\r\nhotový\r\nhotýlek\r\nhou\r\nhoubařčin\r\nhoubaření\r\nhoubařka\r\nhoubařský\r\nhoubařštější\r\nhoubař\r\nhoubařův\r\nhouba\r\nhoubička\r\nhoubovější\r\nhoubovitější\r\nhoubovitý\r\nhoubový\r\nhoubožravý\r\nHouda\r\nHoudek\r\nHoudková\r\nHoudkův\r\nHoudová\r\nHoudův\r\nhoufec\r\nhouf\r\nhoufnější\r\nhoufnice\r\nhoufnicový\r\nhoufný\r\nhoufovanější\r\nhoufování\r\nhoufovaný\r\nhoufovat\r\nhoufující\r\nhoukačka\r\nhoukající\r\nhoukání\r\nhoukaný\r\nhoukat\r\nhoukavý\r\nhouknout\r\nhouknutí\r\nhoulení\r\nhoulit\r\nhouně\r\nhouňovitý\r\nhoupací\r\nhoupačka\r\nhoupačkový\r\nhoupadlo\r\nhoupající\r\nhoupání\r\nhoupaný\r\nhoupat\r\nhoupávání\r\nhoupávaný\r\nhoupávat\r\nhoupavý\r\nhoupity\r\nhoupy\r\nhousátko\r\nhouse\r\nhousenka\r\nhousenkový\r\nHouserová\r\nhouser\r\nHouser\r\nHouserův\r\nhouserův\r\nhousing\r\nhouska\r\nhouskový\r\nhouslařský\r\nhouslařství\r\nhouslař\r\nhouslařův\r\nhousle\r\nhousličky\r\nhouslista\r\nhouslistčin\r\nhouslistka\r\nhouslistův\r\nhouslový\r\nhoustička\r\nhoust\r\nhoustnoucí\r\nhoustnout\r\nhoustnutí\r\nHouston\r\nhoustonský\r\nHouška\r\nhouška\r\nHoušková\r\nHouškův\r\nhoušť\r\nhouští\r\nhouština\r\nHouzáková\r\nHouzák\r\nHouzákův\r\nhouževnatější\r\nhouževnatý\r\nhoužev\r\nhoužvička\r\nhovadina\r\nhovádko\r\nhovadný\r\nhovado\r\nhovění\r\nhovět\r\nhovězina\r\nhovězinka\r\nhovězí\r\nhovící\r\nhovínko\r\nhovnivál\r\nhovniválův\r\nhovnocuc\r\nhovno\r\nhovor\r\nHovorka\r\nHovorková\r\nHovorkův\r\nhovorna\r\nhovornější\r\nhovorný\r\nhovorovější\r\nhovorový\r\nhovoření\r\nhovořený\r\nhovořící\r\nhovořit\r\nhovořívající\r\nhovořívaný\r\nhovořívat\r\nhow\r\nhowgh\r\nHozáková\r\nHozák\r\nHozákův\r\nHozdelová\r\nHozdel\r\nHozdelův\r\nhozenější\r\nhození\r\nhozený\r\nHP\r\nhPa\r\nhr\r\nhrabací\r\nhrabačka\r\nhrabající\r\nHrabáková\r\nHrabák\r\nHrabákův\r\nHrabálek\r\nhrabalka\r\nHrabálková\r\nHrabálkův\r\nHrabalová\r\nHrabal\r\nHrabalův\r\nhrabanější\r\nHrabánek\r\nhrabání\r\nhrabaniště\r\nhrabanka\r\nHrabánková\r\nHrabánkův\r\nhrabaný\r\nhrabat\r\nhrabátko\r\nhrabávání\r\nhrabávaný\r\nhrabávat\r\nhrabavější\r\nhrabavý\r\nhrábě\r\nhraběcí\r\nhrabě\r\nHrábek\r\nhraběnčin\r\nhraběnka\r\nHraběšín\r\nhraběšínský\r\nHrabětice\r\nhrabětický\r\nhrabětův\r\nhrabicový\r\nhrabička\r\nhrabičky\r\nHrabišice\r\nHrabišín\r\nhrabišínský\r\nhrabivcův\r\nhrabivec\r\nhrabivější\r\nhrabivý\r\nHrábková\r\nHrábkův\r\nhrábnout\r\nhrábnutí\r\nhraboší\r\nhrabošovitý\r\nhraboš\r\nhrabošův\r\nHrabová\r\nHrabovský\r\nhrabovský\r\nhrabový\r\nhrabství\r\nHrabůvka\r\nhrací\r\nhráččin\r\nHráček\r\nhračička\r\nhračičkovství\r\nhračkárna\r\nhračkářčin\r\nhračkářka\r\nhračkářský\r\nhračkářství\r\nhračkář\r\nhračkářův\r\nhračka\r\nhráčka\r\nHráčková\r\nhračkový\r\nHráčkův\r\nhráčský\r\nhráčštější\r\nhráč\r\nhráčův\r\nhradba\r\nhradbička\r\nHradcová\r\nHradcův\r\nhradčanský\r\nhradčanský\r\nHradčany\r\nhradební\r\nHradecko\r\nHrádecko\r\nhradecko\r\nHradecký\r\nhrádecký\r\nhradecký\r\nHradec\r\nHradec\r\nHrádeček\r\nhradečenský\r\nHradečná\r\nHradečno\r\nHrádek\r\nhrádek\r\nHradešice\r\nhradešický\r\nHradešín\r\nhradešínský\r\nhrad\r\nhradicí\r\nhradící\r\nhradidlový\r\nHradilová\r\nHradil\r\nHradilův\r\nHradisko\r\nhradisko\r\nhradiský\r\nhradiště\r\nHradiště\r\nHradištko\r\nHradišťko\r\nhradištní\r\nhradišťsko\r\nhradišťský\r\nhradit\r\nhradítko\r\nhradlařčin\r\nhradlařka\r\nhradlař\r\nhradlařův\r\nhradlo\r\nhradlový\r\nhradní\r\nhradový\r\nHradský\r\nHradský\r\nhradský\r\nhrách\r\nhrachách\r\nhráchách\r\nhrachem\r\nHracholusk\r\nhracholuský\r\nHracholusky\r\nhrachor\r\nHrachovina\r\nHrachovinová\r\nhrachovinový\r\nHrachovinův\r\nhrachovka\r\nhrachový\r\nhrachu\r\nhrachů\r\nhráchů\r\nhrachům\r\nhráchům\r\nhrachy\r\nhráchy\r\nhrající\r\nhranatější\r\nhranatý\r\nhrana\r\nhranečník\r\nhranější\r\nHranek\r\nhranice\r\nhraničářský\r\nhraničář\r\nhraničářův\r\nhraničení\r\nhraničený\r\nhraničící\r\nhraničit\r\nhranička\r\nhraničník\r\nhraniční\r\nhraní\r\nhrání\r\nhranit\r\nHranková\r\nHrankův\r\nhranolek\r\nhranol\r\nhranolovitý\r\nhranolový\r\nhranostaj\r\nhranostajův\r\nhranový\r\nhraný\r\nhrášek\r\nHrašeová\r\nHraše\r\nHrašeův\r\nhráškový\r\nHraštice\r\nhraštický\r\nhrát\r\nhratelnější\r\nhratelný\r\nhrátky\r\nhrávanější\r\nhrávání\r\nhrávaný\r\nhrávat\r\nhravější\r\nhravý\r\nhrazda\r\nhrázděný\r\nHrazdíra\r\nHrazdirová\r\nHrazdírová\r\nHrazdir\r\nHrazdirův\r\nHrazdírův\r\nhrazení\r\nhrazený\r\nhrázička\r\nhrázka\r\nhrázný\r\nhrázový\r\nhra\r\nhráz\r\nhrbáček\r\nHrbáček\r\nHrbáčková\r\nHrbáčkův\r\nhrbáčkův\r\nhrbáč\r\nhrbáčův\r\nHrbálek\r\nHrbálková\r\nHrbálkův\r\nhrbatější\r\nHrbatová\r\nHrbat\r\nHrbatův\r\nhrbatý\r\nHrbek\r\nhrbení\r\nhrbený\r\nhrb\r\nhrbící\r\nhrbit\r\nHrbková\r\nHrbkův\r\nhrbolatější\r\nhrbolatý\r\nhrbolek\r\nhrbol\r\nhrbolkatý\r\nHrbotický\r\nHrčava\r\nhrčení\r\nhrčet\r\nhrčivý\r\nhrčka\r\nHrdějovice\r\nhrdějovický\r\nhrdější\r\nhrdélko\r\nhrdelní\r\nhrdelný\r\nHrdina\r\nhrdina\r\nhrdinčin\r\nHrdinek\r\nhrdinka\r\nHrdinková\r\nHrdinkův\r\nhrdinnější\r\nhrdinný\r\nHrdinová\r\nhrdinský\r\nhrdinství\r\nhrdinštější\r\nHrdinův\r\nhrdinův\r\nhrdliččin\r\nHrdlička\r\nhrdlička\r\nHrdličková\r\nhrdličkový\r\nHrdličkův\r\nhrdlo\r\nhrdlořez\r\nhrdlořezův\r\nhrdlový\r\nHrdoňovice\r\nhrdoňovický\r\nhrdopýška\r\nhrdopyšnější\r\nHrdý\r\nhrdý\r\nHrehorová\r\nHrehor\r\nHrehorův\r\nhrkač\r\nhrkačův\r\nhrkající\r\nHrkalová\r\nHrkal\r\nHrkalův\r\nhrkání\r\nhrkat\r\nhrkavý\r\nhrknout\r\nhrknutí\r\nhrkotající\r\nhrkotání\r\nhrkotat\r\nhrkotávání\r\nhrkotávat\r\nhrkot\r\nhrncovitý\r\nhrncový\r\nhrnčířčin\r\nhrnčířka\r\nHrnčířová\r\nhrnčířský\r\nhrnčířství\r\nhrnčíř\r\nHrnčíř\r\nHrnčířův\r\nhrnčířův\r\nhrnec\r\nhrneček\r\nhrnečkový\r\nhrnek\r\nhrníček\r\nhrníčkový\r\nhrnkách\r\nhrnkový\r\nhrnoucí\r\nhrnout\r\nhrnutí\r\nhrnutý\r\nhrobařík\r\nhrobaříkův\r\nHrobařová\r\nhrobař\r\nHrobař\r\nHrobařův\r\nhrobařův\r\nhrobeček\r\nhrob\r\nhrobka\r\nhrobník\r\nhrobníkův\r\nhrobní\r\nhrobovější\r\nhrobový\r\nhrocení\r\nHrochová\r\nhrochový\r\nhroch\r\nHroch\r\nHrochův\r\nhrochův\r\nHromada\r\nhromada\r\nhromadění\r\nhromaděný\r\nhromadící\r\nhromadit\r\nHromádka\r\nhromádka\r\nhromádkovací\r\nhromádkování\r\nhromádkovaný\r\nhromádkovat\r\nHromádková\r\nHromádkův\r\nhromadnější\r\nhromadný\r\nHromadová\r\nHromadův\r\nHromasová\r\nHromas\r\nHromasův\r\nhrome\r\nhrom\r\nhromnice\r\nhromnička\r\nhromniční\r\nHromníková\r\nHromník\r\nHromníkův\r\nhromobití\r\nhromosvod\r\nhromotlucký\r\nhromotluk\r\nhromotlukův\r\nhromování\r\nhromovat\r\nhromovládce\r\nhromovládcův\r\nhromový\r\nhromský\r\nhromující\r\nHroncová\r\nHroncův\r\nHronec\r\nHronek\r\nHronková\r\nHronkův\r\nHronová\r\nHronov\r\nhronovský\r\nHron\r\nHronův\r\nhrošice\r\nhroší\r\nhrot\r\nhrotitější\r\nhrotitý\r\nhrotnatější\r\nhrotnatka\r\nhrotnatkovitý\r\nhrotnice\r\nhrotovačka\r\nHrotovice\r\nhrotovický\r\nhrotový\r\nHroubovice\r\nhroubovický\r\nhroucení\r\nhroucený\r\nHrouda\r\nhrouda\r\nhroudička\r\nHroudová\r\nHroudův\r\nhroutící\r\nhroutit\r\nhrouzek\r\nhrouzkův\r\nhroužení\r\nhroužící\r\nhroužit\r\nHroza\r\nhrozba\r\nhrozebný\r\nhrození\r\nHrozenkov\r\nhrozenkovský\r\nHrozenkovský\r\nhrozen\r\nhrozený\r\nhrozící\r\nhrozinka\r\nhrozinkový\r\nhrozitánský\r\nhrozitánštější\r\nhrozit\r\nhrozivější\r\nhrozivý\r\nHroznatín\r\nhroznatínský\r\nhroznější\r\nHroznětín\r\nhroznětínský\r\nhroznovitý\r\nhroznový\r\nhroznýšek\r\nhroznýší\r\nhroznýškový\r\nhroznýšovitý\r\nhroznýš\r\nhroznýšův\r\nhrozný\r\nHrozová\r\nHrozův\r\nhrožení\r\nhrr\r\nhrstečka\r\nhrstička\r\nhrst\r\nHrstka\r\nhrstka\r\nHrstková\r\nHrstkův\r\nhrsťovací\r\nhrsťování\r\nhrsťovaný\r\nhrsťovat\r\nhrtan\r\nhrtanový\r\nHrubcová\r\nHrubcův\r\nhrubcův\r\nHrubčice\r\nhrubčický\r\nHrubec\r\nhrubec\r\nhrubější\r\nhrůbek\r\nHrubešová\r\nHrubeš\r\nHrubešův\r\nhrubián\r\nhrubiánský\r\nhrubiánství\r\nhrubiánštější\r\nhrubiánův\r\nHrubínová\r\nHrubín\r\nHrubínův\r\nhrubka\r\nhrůbkový\r\nhrubnout\r\nhrubnutí\r\nhrubnutý\r\nhrubo\r\nHruboňová\r\nHruboň\r\nHruboňův\r\nhruboskalsko\r\nhrubosrstý\r\nhrubozrnný\r\nhrubství\r\nHrubše\r\nHrubšem\r\nHrubši\r\nHrubších\r\nhrubší\r\nHrubšová\r\nHrubšové\r\nHrubšovi\r\nHrubšů\r\nHrubšům\r\nHrubšův\r\nHrubý\r\nhrubý\r\nhrud\r\nhruď\r\nHrudka\r\nhrudka\r\nHrudková\r\nhrudkovitý\r\nhrudkovna\r\nhrudkový\r\nHrudkův\r\nhrudníček\r\nhrudník\r\nhrudní\r\nhrudovitý\r\nHrusice\r\nhrusický\r\nHrušáková\r\nHrušák\r\nHrušákův\r\nHruša\r\nHrušek\r\nhrušeň\r\nHrušínský\r\nHruška\r\nhruška\r\nHrušková\r\nhruškovice\r\nhruškovitý\r\nhruškový\r\nHruškův\r\nhrušňový\r\nhrušovanský\r\nHrušovany\r\nHrušová\r\nHrušov\r\nhrušovský\r\nhrušový\r\nhruštička\r\nHrušův\r\nHrutov\r\nhrutovský\r\nHrůza\r\nhrůza\r\nhrůznější\r\nhrůzný\r\nhrůzostrašnější\r\nhrůzostrašný\r\nhrůzoucí\r\nHrůzová\r\nhrůzovláda\r\nhrůzovládce\r\nhrůzovládcův\r\nHrůzův\r\nhrůzyplnější\r\nhrůzyplný\r\nhryzající\r\nhryzanější\r\nhryzání\r\nhryzaný\r\nhryzat\r\nhryzávání\r\nhryzávaný\r\nhryzávat\r\nhryzavější\r\nhryzavý\r\nhryzcův\r\nhryzec\r\nhryzení\r\nhryz\r\nhryznutí\r\nhrýzt\r\nhřad\r\nhřadování\r\nhřadovat\r\nhřadový\r\nhřání\r\nhřát\r\nhřbet\r\nhřbetník\r\nhřbetní\r\nhřbetovací\r\nhřbetování\r\nhřbetovaný\r\nhřbetovat\r\nhřbitov\r\nhřbitovní\r\nhřbitůvek\r\nhřebcův\r\nhřebčinec\r\nhřebčín\r\nhřebčí\r\nhřebec\r\nhřebeček\r\nhřebečkův\r\nHřebejková\r\nHřebejk\r\nHřebejkův\r\nhřebelcování\r\nhřebelcovaný\r\nhřebelcovat\r\nhřebelcovávání\r\nhřebelcovávaný\r\nhřebelcovávat\r\nhřebelec\r\nhřeben\r\nhřebenatka\r\nhřebene\r\nhřebenech\r\nhřebenem\r\nhřeben\r\nhřebeni\r\nhřebenitý\r\nhřebenovitý\r\nhřebenovka\r\nhřebenový\r\nhřebenů\r\nhřebenům\r\nhřebeny\r\nhřeb\r\nhřebíček\r\nhřebíčkovcův\r\nhřebíčkovec\r\nhřebíčkový\r\nhřebíkárna\r\nhřebík\r\nhřebíkovací\r\nhřebíkování\r\nhřebíkovaný\r\nhřebíkovat\r\nHřebíková\r\nhřebíkový\r\nHřebík\r\nHřebíkův\r\nhřebínek\r\nhřeblo\r\nhřeblový\r\nhřející\r\nhřejivější\r\nhřejivý\r\nHřensko\r\nhřenský\r\nhřešení\r\nhřešený\r\nhřešící\r\nhřešit\r\nhříbátko\r\nhříběcí\r\nhříbeček\r\nhříbě\r\nhříbek\r\nhříbětina\r\nhřib\r\nhříbkách\r\nhříbkový\r\nhřibovitý\r\nhřibový\r\nhříčka\r\nhřídelka\r\nhřídelový\r\nhřídel\r\nhřích\r\nhříchový\r\nhřímající\r\nhřímání\r\nhřímaný\r\nhřímat\r\nhřímavý\r\nHříměždice\r\nhříměždický\r\nhříšek\r\nHříškov\r\nhříškovský\r\nhříšnější\r\nhříšnice\r\nhříšničin\r\nhříšník\r\nhříšníkův\r\nhříšný\r\nhřišťátko\r\nhřiště\r\nhříva\r\nhřivnáč\r\nhřivnáčův\r\nhřivnatější\r\nhřivna\r\nhřivnička\r\nhřížencův\r\nhříženec\r\nhřmějící\r\nhřmění\r\nhřmět\r\nhřmící\r\nhřmít\r\nhřmot\r\nhřmotit\r\nhřmotivý\r\nhřmotnější\r\nhřmotný\r\nHS\r\nHSR\r\nHTML\r\nHTTP\r\nhttp\r\nhu\r\nhub\r\nHubáček\r\nhubačení\r\nhubačit\r\nhubačka\r\nHubáčková\r\nHubáčkův\r\nHubálek\r\nHubálková\r\nHubálkův\r\nhubanec\r\nHubařová\r\nHubař\r\nHubařův\r\nhubatější\r\nhubatý\r\nhuba\r\nHubble\r\nHubblův\r\nhubenější\r\nhubení\r\nhubeňour\r\nhubeňourův\r\nHubenov\r\nhubenovský\r\nHubený\r\nhubený\r\nHuberová\r\nHuber\r\nHubertek\r\nhubertka\r\nHubertkův\r\nHubertová\r\nHubert\r\nhubertus\r\nHubertův\r\nHuberův\r\nhubice\r\nhubící\r\nhubicový\r\nHubička\r\nhubička\r\nhubičkovat\r\nHubičková\r\nhubičkový\r\nHubičkův\r\nhubinka\r\nhubit\r\nhubívání\r\nhubívaný\r\nhubívat\r\nhubka\r\nHübner\r\nHübnerův\r\nHubno\r\nhubnout\r\nhubnutí\r\nhubnutý\r\nhubování\r\nhubovaný\r\nhubovat\r\nhubovávání\r\nhubovávaný\r\nhubovávat\r\nhubový\r\nhučení\r\nhučet\r\nhučící\r\nhučivý\r\nhučka\r\nHudáková\r\nHudák\r\nHudákův\r\nhudba\r\nhudbení\r\nhudbymilovnější\r\nhudbymilovný\r\nHudcová\r\nHudcův\r\nhudcův\r\nHudčice\r\nhudčický\r\nhudebka\r\nhudebnější\r\nhudebněpohybový\r\nhudebněvýchovný\r\nhudebnice\r\nhudebník\r\nhudebníkův\r\nhudebnina\r\nhudební\r\nhudec\r\nHudec\r\nHudeček\r\nHudečková\r\nHudečkův\r\nhudení\r\nhudlaření\r\nhudlařený\r\nhudlařina\r\nhudlařit\r\nhudlat\r\nHudlice\r\nhudlický\r\nhudl\r\nHudousek\r\nHudousková\r\nHudouskův\r\nhudrat\r\nhudrování\r\nhudrovat\r\nhudrující\r\nHudsonův\r\nhudu\r\nHudzíková\r\nHudzík\r\nHudzíkův\r\nHUF\r\nHuffmanův\r\nhugenot\r\nhugenotův\r\nHughesová\r\nHughes\r\nHughesův\r\nHugo\r\nHugův\r\nhuhlající\r\nhuhlání\r\nhuhlaný\r\nhuhlat\r\nhuhlavý\r\nhuhňání\r\nhuhňat\r\nhuhňavý\r\nhuj\r\nHujerová\r\nHujer\r\nHujerův\r\nhukot\r\nhukvaldský\r\nHukvaldy\r\nhůl\r\nhulákající\r\nhulákání\r\nhulákaný\r\nhulákat\r\nHuláková\r\nHulák\r\nHulákův\r\nhulán\r\nHůla\r\nhůlčička\r\nhůlečka\r\nHulička\r\nHuličková\r\nHuličkův\r\nHulín\r\nHulinský\r\nHulínský\r\nhulínský\r\nhulit\r\nHůlka\r\nhůlka\r\nHůlková\r\nhůlkový\r\nHůlkův\r\nHůlová\r\nHulswitová\r\nHulswit\r\nHulswitův\r\nHůlův\r\nhulvátov\r\nhulvát\r\nhulvátský\r\nhulvátství\r\nhulvátův\r\nhumanismus\r\nhumanista\r\nhumanistčin\r\nhumanistický\r\nhumanističtější\r\nhumanistka\r\nhumanistův\r\nhumanitárnější\r\nhumanitární\r\nhumanita\r\nhumanitismus\r\nhumanitnější\r\nhumanitní\r\nhumanizace\r\nhumanizační\r\nhumanizování\r\nhumanizovaný\r\nhumanizovat\r\nhumanizující\r\nhumánnější\r\nhumánní\r\nhumanoidní\r\nhumanoid\r\nhumanoidův\r\nhumbuk\r\nHumeův\r\nHume\r\nhumifikace\r\nHumlová\r\nHuml\r\nHumlův\r\nHummelová\r\nHummel\r\nHummelův\r\nhumno\r\nhumorální\r\nhumoreska\r\nhumoreskový\r\nhumor\r\nhumorista\r\nhumoristčin\r\nhumoristický\r\nhumorističin\r\nhumorističtější\r\nhumoristika\r\nhumoristka\r\nhumoristův\r\nhumornější\r\nhumorný\r\nHumplíková\r\nHumplík\r\nHumplíkův\r\nhumpolácký\r\nhumpoláčtější\r\nhumpolecký\r\nHumpolec\r\nhumrový\r\nhumr\r\nhumrův\r\nhumří\r\nHumsa\r\nHumsová\r\nHumsův\r\nhumus\r\nhumusový\r\nhuňáč\r\nHůna\r\nhuňatější\r\nHuňátová\r\nHuňát\r\nHuňátův\r\nhuňatý\r\nhungarismus\r\nhungarista\r\nhungaristčin\r\nhungaristka\r\nhungaristův\r\nHuňka\r\nHuňková\r\nHuňkův\r\nHůnová\r\nHunový\r\nHun\r\nhunský\r\nhunštější\r\nHuntířov\r\nhuntířovský\r\nhuntování\r\nhuntovaný\r\nhuntovat\r\nHůnův\r\nHunyad\r\nHunyadův\r\nhup\r\nhupkání\r\nHupka\r\nhupkat\r\nhupkávání\r\nhupkávat\r\nhupkovat\r\nHupková\r\nHupkův\r\nhupnout\r\nhurá\r\nHurajtová\r\nHurajt\r\nHurajtův\r\nHurbanovo\r\nhurbanovský\r\nHurda\r\nHurdová\r\nHurdův\r\nhurikán\r\nhurisčin\r\nhuriska\r\nHůrka\r\nhůrka\r\nHůrková\r\nHůrkův\r\nHurníková\r\nHurník\r\nHurníkův\r\nhuronský\r\nhurónský\r\nhurónštější\r\nHůrský\r\nHurta\r\nHurtíková\r\nHurtík\r\nHurtíkův\r\nHurtová\r\nHurtův\r\nHurvínek\r\nhurvínkovštější\r\nHurvínkův\r\nhůř\r\nhůře\r\nHusajn\r\nHusajnův\r\nHusáková\r\nhusák\r\nHusák\r\nHusákův\r\nhusákův\r\nhusar\r\nhusarský\r\nhusarštější\r\nhusarův\r\nhusa\r\nHuserek\r\nHuserková\r\nHuserkův\r\nhusí\r\nhusice\r\nhusička\r\nhusinecký\r\nHusinec\r\nhusita\r\nhusitismus\r\nhusitský\r\nhusitství\r\nhusitův\r\nhusí\r\nHúska\r\nHúsková\r\nHúskův\r\nhusopaska\r\nHusová\r\nhusovský\r\nhuspenina\r\nHus\r\nHusserl\r\nHusserlův\r\nhustěji\r\nhustější\r\nhustilka\r\nhustit\r\nhustoměr\r\nHustopeče\r\nHustopečsko\r\nhustopečský\r\nhustota\r\nhustotní\r\nhustší\r\nhustý\r\nHusův\r\nHušek\r\nhuška\r\nHušková\r\nHuškův\r\nhuštění\r\nHuštěnovice\r\nhuštěnovický\r\nhuštěný\r\nHutařová\r\nHutař\r\nHutařův\r\nHutečka\r\nHutečková\r\nHutečkův\r\nHutisko\r\nHutka\r\nHutková\r\nHutkův\r\nhutnější\r\nhutnění\r\nhutněný\r\nhutnět\r\nhutnický\r\nhutnictví\r\nhutničtější\r\nHutníková\r\nhutník\r\nHutník\r\nHutníkův\r\nhutníkův\r\nhutnit\r\nhutnitelný\r\nhutní\r\nhutný\r\nHüttnerová\r\nHüttner\r\nHüttnerův\r\nhuť\r\nHuxley\r\nHuyghens\r\nHuyghensův\r\nHuzová\r\nhuzovský\r\nhvězdárna\r\nhvězdárnička\r\nhvězdářský\r\nhvězdářství\r\nhvězdář\r\nhvězdářův\r\nhvězda\r\nhvězdice\r\nhvězdicovitý\r\nhvězdicový\r\nhvězdička\r\nhvězdičkovaný\r\nhvězdičkovat\r\nhvězdičkový\r\nHvězdlice\r\nhvězdlický\r\nhvězdnatější\r\nhvězdnatý\r\nhvězdnější\r\nhvězdnicotvarý\r\nhvězdnicovitý\r\nhvězdný\r\nhvězdokupa\r\nhvězdolet\r\nhvězdopravcův\r\nhvězdopravec\r\nhvězdový\r\nHvězdův\r\nhvízdající\r\nhvízdák\r\nhvízdákův\r\nhvízdalka\r\nhvízdání\r\nhvízdaný\r\nhvízdat\r\nhvízdavý\r\nhvizd\r\nhvízdnout\r\nhvízdnutí\r\nhvízdnutý\r\nHvížďala\r\nHvížďalová\r\nHvížďalův\r\nhvozdecký\r\nHvozdec\r\nhvozdenský\r\nhvozd\r\nhvozdík\r\nhvozdíkový\r\nHvozdná\r\nHvozdnice\r\nhvozdnický\r\nhvožďanský\r\nHvožďany\r\nhy\r\nhý\r\nhyacinta\r\nhyacint\r\nhyacintový\r\nhýbací\r\nhýbající\r\nhýbání\r\nHybášek\r\nHybášková\r\nHybáškův\r\nhýbat\r\nhybatelčin\r\nhybatelka\r\nhybatel\r\nhybatelův\r\nhýbávání\r\nhýbávat\r\nHybenová\r\nHyben\r\nHybenův\r\nHybern\r\nHybešová\r\nHybeš\r\nHybešův\r\nhyblivý\r\nHýblová\r\nHýbl\r\nHýblův\r\nhybnější\r\nHybnerová\r\nHybner\r\nHybnerův\r\nhybný\r\nhybrálecký\r\nHybrálec\r\nhybridisace\r\nhybridizace\r\nhybridizační\r\nhybridnější\r\nhybridní\r\nhybridnost\r\nhybridový\r\nhybrid\r\nhybridův\r\nHybšová\r\nHybš\r\nHybšův\r\nhýčkající\r\nhýčkanější\r\nhýčkání\r\nhýčkaný\r\nhýčkat\r\nhydatoda\r\nHydčice\r\nhydčický\r\nhydrant\r\nhydratace\r\nhydratační\r\nhydrát\r\nhydratování\r\nhydratovaný\r\nhydratovat\r\nhydraulický\r\nhydraulika\r\nhydrazin\r\nhydrazinový\r\nhydra\r\nhydrický\r\nhydrid\r\nhydrobiologický\r\nhydrobiologie\r\nhydrobiolog\r\nhydrobiologův\r\nhydrobioložčin\r\nhydrobioložka\r\nhydrobiont\r\nhydrocefalus\r\nhydrodynamický\r\nhydrodynamičtější\r\nhydrodynamika\r\nhydroelektrárna\r\nhydroelektrický\r\nhydroelektričtější\r\nhydroelektrostatický\r\nhydroelektřina\r\nhydroenergetika\r\nhydrofilní\r\nhydrofilový\r\nhydrofobie\r\nhydrofobnější\r\nhydrofobní\r\nhydrofond\r\nhydrogenace\r\nhydrogenerátor\r\nhydrogenfosforečnan\r\nhydrogenkřemičitan\r\nhydrogenovaný\r\nhydrogenperoxid\r\nhydrogensíran\r\nhydrogensiřičitan\r\nhydrogensolemi\r\nhydrogensoli\r\nhydrogensolí\r\nhydrogensolích\r\nhydrogensolím\r\nhydrogensůl\r\nhydrogensulfid\r\nhydrogenuhličitan\r\nhydrogenxenonan\r\nhydrogeochemický\r\nhydrogeologický\r\nhydrogeologie\r\nhydrogeolog\r\nhydrogeologův\r\nhydrogeoložčin\r\nhydrogeoložka\r\nhydrografický\r\nhydrografičtější\r\nhydrografie\r\nhydrochemický\r\nhydrochemie\r\nhydrochinon\r\nhydrochlorid\r\nhydroisoterma\r\nhydroizolační\r\nhydrokarbon\r\nhydrokompatibilní\r\nhydrokrak\r\nhydroláza\r\nhydrolizovatelný\r\nhydrologický\r\nhydrologičtější\r\nhydrologie\r\nhydrolog\r\nhydrologův\r\nhydroložčin\r\nhydroložka\r\nhydrolytický\r\nhydrolytičtější\r\nhydrolyzát\r\nhydrolýza\r\nhydrolyzovaný\r\nhydrolyzující\r\nhydromechanický\r\nhydromechaničtější\r\nhydromechanika\r\nhydromeliorace\r\nhydromeliorační\r\nhydrometeorologický\r\nhydrometeorologičtější\r\nhydrometeorologie\r\nhydrometeorolog\r\nhydrometeorologův\r\nhydrometeoroložčin\r\nhydrometeoroložka\r\nhydrometrický\r\nhydrometričtější\r\nhydromotor\r\nhydroplán\r\nhydropneumatický\r\nhydroponický\r\nhydroponičtější\r\nhydroponie\r\nhydrosféra\r\nhydrosiřičitan\r\nhydroskopický\r\nhydroskopičtější\r\nhydrostatický\r\nhydrostatičtější\r\nhydrostatika\r\nhydrosulfid\r\nhydrotechnický\r\nhydrotechnika\r\nhydroterapie\r\nhydrotermální\r\nhydrouhličitan\r\nhydrovosk\r\nhydroxid\r\nhydroxidchlorid\r\nhydroxidový\r\nhydroxybenzoát\r\nhydroxyderivát\r\nhydroxyethylcelulóza\r\nhydroxykyselina\r\nhydroxyl\r\nhydroxylový\r\nhydroxymethylcelulósa\r\nhydroxypropylcelulóza\r\nhydroxypropyl\r\nhydroxypropylmethylcelulóza\r\nhydroxypropylovaný\r\nhydroxysloučenina\r\nHydrus\r\nhyena\r\nhyenismus\r\nhyenistický\r\nhyení\r\nhygiena\r\nhygienický\r\nhygieniččin\r\nhygienička\r\nhygieničtější\r\nhygienik\r\nhygienikův\r\nhygienista\r\nhygienistčin\r\nhygienistka\r\nhygienistův\r\nhygroskopicita\r\nhygroskopický\r\nhygroskopičtější\r\nhygrostat\r\nhyje\r\nhyjé\r\nhýkající\r\nhýkání\r\nhýkat\r\nhýkavý\r\nHyklová\r\nHykl\r\nHyklův\r\nhýknout\r\nhýknutí\r\nHyláková\r\nHylák\r\nHylákův\r\nHylenka\r\nHylenková\r\nHylenkův\r\nhýl\r\nhýlův\r\nhymna\r\nhymnický\r\nhymnus\r\nHynčice\r\nhynčický\r\nHynčíková\r\nHynčík\r\nHynčíkův\r\nHynčina\r\nHynek\r\nHynková\r\nHynkův\r\nhynoucí\r\nhynout\r\nhynutí\r\nhyperaktivace\r\nhyperaktivita\r\nhyperaktivní\r\nhyperalergizovaný\r\nhyperalergizovat\r\nhyperalergizující\r\nhyperbola\r\nhyperbolický\r\nhyperboličtější\r\nhyperbolometrický\r\nhyperdokument\r\nhyperelipsoid\r\nhypergeometrický\r\nhyperimunní\r\nhyperinflace\r\nhyperkeratosa\r\nhyperkinetický\r\nhyperkomplexní\r\nhyperkorektní\r\nhyperkriticismus\r\nhyperkritický\r\nhyperkritika\r\nhyperlektik\r\nhyperlektikův\r\nhypermangan\r\nhypermarket\r\nhypermédium\r\nhypermetropie\r\nhypermobilní\r\nhypermoderní\r\nhypernervózní\r\nhyperon\r\nhyperonymum\r\nhyperpigmentace\r\nhyperprolaktinemie\r\nhyperprolaktinémie\r\nhyperprostor\r\nhyperprostorový\r\nhyperprotektivita\r\nhyperprotektivní\r\nhyperrealismus\r\nhyperrealistický\r\nhypersenzibilita\r\nhypersenzibilizace\r\nhypersenzibilizování\r\nhypersenzibilizovaný\r\nhypersenzibilizovat\r\nhypersenzibilní\r\nhypersinusový\r\nhypersonický\r\nhypertechnika\r\nhypertenze\r\nhypertermální\r\nhypertext\r\nhypertextovější\r\nhypertextový\r\nhypertonický\r\nhypertoničtější\r\nhypertonie\r\nhypertonik\r\nhypertonikum\r\nhypertonikův\r\nhypertrofičtější\r\nhypertrofie\r\nhypertrofovaný\r\nHypiusová\r\nHypius\r\nHypiusův\r\nhypnoterapeutčin\r\nhypnoterapeutka\r\nhypnoterapeut\r\nhypnoterapeutův\r\nhypnoterapie\r\nhypnotický\r\nhypnotičtější\r\nhypnotikum\r\nhypnotismus\r\nhypnotizérčin\r\nhypnotizérka\r\nhypnotizér\r\nhypnotizérův\r\nhypnotizování\r\nhypnotizovaný\r\nhypnotizovat\r\nhypnotizující\r\nhypnóza\r\nhypoalergizovaný\r\nhypoalergizovat\r\nhypoalergizující\r\nhypocykloida\r\nhypofyza\r\nhypofýza\r\nhypoglykémie\r\nhypogonadismus\r\nhypochondričtější\r\nhypochondrie\r\nhypochondr\r\nhypochondrův\r\nhypoidní\r\nhypokoristický\r\nhypokoristický\r\nhypokoristikon\r\nhypolipidemizující\r\nhypomanický\r\nhypomanie\r\nhypomobilní\r\nhyponymie\r\nhyponymum\r\nhypoplasie\r\nhypoplastický\r\nhyposenzibilita\r\nhyposenzibilizace\r\nhyposenzibilizování\r\nhyposenzibilizovaný\r\nhyposenzibilizovat\r\nhyposenzibilní\r\nhypotaktický\r\nhypotalamus\r\nhypotaxe\r\nhypotéční\r\nhypoteční\r\nhypotéka\r\nhypotenze\r\nhypotetický\r\nhypotetičtější\r\nhypotéza\r\nhypothalamus\r\nhypotonický\r\nhypotoničtější\r\nhypoxantin\r\nhypoxantinový\r\nhypoxie\r\nHyppolit\r\nHyppolitův\r\nHypšová\r\nHypš\r\nHypšův\r\nHyršlová\r\nHyršl\r\nHyršlův\r\nhýření\r\nhýřený\r\nhýřící\r\nhýřil\r\nhýřilův\r\nhýřit\r\nhýřivější\r\nhýřivý\r\nhýsek\r\nHýsek\r\nHýsková\r\nHýskov\r\nhýskovský\r\nHýskův\r\nhýskův\r\nhysterčit\r\nhysterectomie\r\nhysterektomie\r\nhystereze\r\nhysterický\r\nhysteriččin\r\nhysterička\r\nhysteričtější\r\nhysterie\r\nhysterik\r\nhysterikův\r\nhysterka\r\nhytlák\r\nhyzdění\r\nhyzděný\r\nhyzdící\r\nhyzdit\r\nhyzdivý\r\nhýždě\r\nhyždění\r\nhyžděný\r\nhýžďový\r\nHz\r\nCh\r\ncha\r\nChabařovice\r\nchabařovický\r\nchabější\r\nchabnout\r\nchabnutí\r\nChabrová\r\nChabr\r\nchabrusový\r\nChabrův\r\nchabý\r\ncháčko\r\nChadima\r\nChadimová\r\nChadimův\r\nchacha\r\nchajdička\r\nchalcedon\r\nchalcedonový\r\nChalkis\r\nchalkogen\r\nchalkogenid\r\nchalkopyrit\r\nchalkosin\r\nChalopecký\r\nChaloupek\r\nChaloupka\r\nchaloupkářčin\r\nchaloupkářka\r\nchaloupkářství\r\nchaloupkář\r\nchaloupkářův\r\nchaloupka\r\nChaloupková\r\nChaloupkův\r\nchaluha\r\nChalupa\r\nchalupářčin\r\nchalupaření\r\nchalupářka\r\nchalupář\r\nchalupářský\r\nchalupářštější\r\nchalupářův\r\nchalupa\r\nChalupecký\r\nchalupnice\r\nchalupnictví\r\nchalupničin\r\nChalupníková\r\nchalupník\r\nChalupník\r\nChalupníkův\r\nchalupníkův\r\nChalupný\r\nChalupová\r\nchalupový\r\nChalupův\r\nChamberlain\r\nChamberlainův\r\nchameleon\r\nchameleón\r\nchameleonský\r\nchameleonství\r\nchameleonův\r\nchameleónův\r\nchám\r\nchámovod\r\nchámový\r\nchampagnský\r\nchamraď\r\nchamtivcův\r\nchamtivec\r\nchamtivější\r\nchamtivý\r\nChanovice\r\nchanovický\r\nchán\r\nChantal\r\nchanuka\r\nchanukový\r\nchánův\r\nchaos\r\nchaotický\r\nchaotičtější\r\nchapač\r\nchapadlo\r\nchapadlovitý\r\nchápající\r\nchápání\r\nchápaný\r\nchápat\r\nchápávat\r\nchápavější\r\nchápavý\r\nChaplin\r\nChaplinův\r\ncharakter\r\ncharakteristický\r\ncharakterističtější\r\ncharakteristika\r\ncharakterizace\r\ncharakterizační\r\ncharakterizovanější\r\ncharakterizování\r\ncharakterizovaný\r\ncharakterizovat\r\ncharakterizovatelnější\r\ncharakterizovatelný\r\ncharakterizující\r\ncharakternější\r\ncharakterní\r\ncharakterologický\r\ncharakterologie\r\ncharakterolog\r\ncharakterologův\r\ncharakteroložčin\r\ncharakteroložka\r\ncharakterovější\r\ncharakterový\r\nCharamza\r\nCharamzová\r\nCharamzův\r\nchargé\r\ncharisma\r\ncharismatický\r\ncharismatičtější\r\ncharitativnější\r\ncharitativní\r\ncharita\r\ncharitka\r\ncharitní\r\ncharizma\r\nCharkov\r\ncharkovský\r\ncharleston\r\nCharles\r\nCharlesův\r\nCharlie\r\nCharlotta\r\nCharousek\r\nCharousková\r\nCharouskův\r\nCharouzová\r\nCharouz\r\nCharouzův\r\ncharta\r\ncharterový\r\nchartismus\r\nchartista\r\nchartistčin\r\nchartistický\r\nchartistka\r\nchartistův\r\nChartúm\r\nchartúmský\r\nCharvátčin\r\nCharvátka\r\nCharvatová\r\nCharvátová\r\nCharvat\r\nCharvát\r\ncharvatský\r\nCharvatův\r\nCharvátův\r\nCharybda\r\nchasa\r\nchasidismus\r\nchasid\r\nchasidský\r\nchasidův\r\ncháska\r\nchasník\r\nchasníkův\r\nchassis\r\nchatařčin\r\nchataření\r\nchatařka\r\nchatařský\r\nchatař\r\nchatařův\r\nchata\r\nchatička\r\nchatka\r\nchatový\r\nchátrající\r\nchátrání\r\nchátraný\r\nchátrat\r\nchátra\r\nchatrč\r\nchatrnější\r\nchatrný\r\nChavalka\r\nChavalková\r\nChavalkův\r\nchce\r\nchcípáček\r\nchcípáčkův\r\nchcípání\r\nchcípat\r\nchcípavý\r\nchcíplý\r\nchcípnout\r\nchcípnutí\r\nche\r\nCheb\r\nchebsko\r\nchebský\r\ncheche\r\nchechot\r\nchechtání\r\nchechtat\r\nchechtávat\r\nchechtavější\r\nchechtavý\r\nchechtot\r\nChejnová\r\nChejn\r\nChejnův\r\nChelčice\r\nChelčický\r\nchelčický\r\nChemapol\r\nchemickofyzikální\r\nchemickomechanický\r\nchemickomechaničtější\r\nchemický\r\nchemička\r\nchemičtější\r\nchemie\r\nchemikálie\r\nchemik\r\nchemikův\r\nchemiluminiscence\r\nchemismus\r\nchemizace\r\nchemlon\r\nchemlonový\r\nchemoevoluce\r\nchemoprén\r\nchemotaxe\r\nchemoterapie\r\nCheníček\r\nCheníčková\r\nCheníčkův\r\ncherubín\r\ncherubínův\r\ncherub\r\ncherubův\r\nChetita\r\nchetitský\r\nchetitština\r\nChetitův\r\nCHF\r\nchi\r\nchianti\r\nChiara\r\nchiastolit\r\nchiastolitový\r\nChicago\r\nchicagský\r\nchichi\r\nchichotání\r\nchichotat\r\nchichot\r\nchichotý\r\nchichtání\r\nchichtat\r\nchichtot\r\nChilančin\r\nChilanka\r\nChilan\r\nChilanův\r\nChile\r\nchiliasmus\r\nchiliast\r\nchiliastický\r\nchiliastičtější\r\nchilli\r\nchilodonelóza\r\nchilský\r\nchiméra\r\nchimérický\r\nchiméričtější\r\nchinazolin\r\nchinin\r\nchininový\r\nchinolinový\r\nchinovník\r\nchirální\r\nchiropraktik\r\nchiropraktikův\r\nchirurgický\r\nchirurgický\r\nchirurgičtější\r\nchirurgie\r\nchirurg\r\nchirurgův\r\nchirurgyně\r\nchirurgynin\r\nchiruržčin\r\nchiruržka\r\nchitin\r\nchitinový\r\nCHKO\r\nChládek\r\nchládek\r\nchlad\r\nchladicí\r\nchladící\r\nchladič\r\nChladilová\r\nChladil\r\nChladilův\r\nchladírenský\r\nchladírenství\r\nchladírna\r\nchladit\r\nchladívanější\r\nchladívání\r\nchladívaný\r\nchladívat\r\nchladivější\r\nchladivo\r\nchladivý\r\nChládková\r\nChládkův\r\nchladnější\r\nchladnička\r\nchladnokrevnější\r\nchladnokrevný\r\nchladnomilnější\r\nchladnomilný\r\nchladno\r\nchladnoucí\r\nchladnout\r\nchladnutí\r\nchladný\r\nChládová\r\nchladový\r\nChlád\r\nChládův\r\nchlácholení\r\nchlácholený\r\nchlácholit\r\nchlácholivější\r\nchlácholivý\r\nchlamstání\r\nchlamstat\r\nchlamydie\r\nchlapáčtější\r\nchlapák\r\nchlapákův\r\nchlapcův\r\nchlapecký\r\nchlapectví\r\nchlapec\r\nchlapeček\r\nchlapečkův\r\nchlapečtější\r\nchlápek\r\nchlapíček\r\nchlapíčkův\r\nchlapík\r\nchlapíkův\r\nchlápkův\r\nchlap\r\nchlapský\r\nchlapštější\r\nchlapův\r\nchlastání\r\nchlastaný\r\nchlastat\r\nchlast\r\nchlazenější\r\nchlazení\r\nchlazený\r\nchléb\r\nchleba\r\nchlebárna\r\nchlebe\r\nchlebech\r\nchlebem\r\nchlebíček\r\nChlebičov\r\nchlebičovský\r\nchlebík\r\nchlebnatý\r\nchlebník\r\nchlebodárce\r\nchlebodárcův\r\nChleborad\r\nChleboradův\r\nchlebovka\r\nchlebový\r\nchlebu\r\nchlebů\r\nchlebům\r\nchleby\r\nchlemstání\r\nchlemstat\r\nchlemtání\r\nchlemtaný\r\nchlemtat\r\nchlév\r\nchlévský\r\nchlípnější\r\nchlípník\r\nchlípníkův\r\nchlípný\r\nchlístat\r\nchlístatka\r\nChlístovice\r\nchlístovický\r\nChlístov\r\nchlístovský\r\nchlíveček\r\nchlívek\r\nchlív\r\nChlomek\r\nChlomková\r\nChlomkův\r\nchlopenní\r\nchlopeň\r\nchlopňový\r\nchloproplast\r\nchlorace\r\nchlorbenzen\r\nchlorečnan\r\nchlorečný\r\nchlorfenol\r\nchlor\r\nchlór\r\nchloričitý\r\nchlorid\r\nchloridový\r\nchloristan\r\nchloristý\r\nchloritan\r\nchlorit\r\nchloritický\r\nchloritový\r\nchloritý\r\nchlorkaučukový\r\nchlorkyan\r\nchlormethan\r\nchlornan\r\nchlorný\r\nchlorociničitan\r\nchlorodusík\r\nchloroform\r\nchloroformování\r\nchloroformovaný\r\nchloroformovat\r\nchlorofosforečnan\r\nchlorofyl\r\nchlorofylin\r\nchloroiridičitan\r\nchloropalladičitan\r\nchloroplast\r\nchloroplatičitan\r\nchloroplatitan\r\nchloroplatnatan\r\nchlororutheničitan\r\nchlorovanadičnan\r\nchlorovanější\r\nchlorování\r\nchlorovaný\r\nchlorovaný\r\nchlorovat\r\nchlórovat\r\nchlorovodík\r\nchlorovodíkový\r\nchlorový\r\nchlórový\r\nchloróza\r\nchlorozlatitan\r\nchlorpentafluoroetan\r\nchlouba\r\nchloupek\r\nchlubení\r\nchlubený\r\nchlubící\r\nchlubit\r\nchlubívat\r\nchlubivý\r\nChlubna\r\nchlubnější\r\nChlubnová\r\nChlubnův\r\nchlubný\r\nChlumčanský\r\nchlumecký\r\nchlumecký\r\nChlumec\r\nChlumětín\r\nchlumětínský\r\nchlum\r\nChlumín\r\nchlumínský\r\nchlumní\r\nChlumno\r\nchlumský\r\nChlumže\r\nchlupáček\r\nchlupáčkův\r\nchlupáč\r\nchlupáčův\r\nchlupatější\r\nchlupatět\r\nchlupatý\r\nchlup\r\nChlupová\r\nchlupový\r\nChlup\r\nChlupův\r\nChlustina\r\nchm\r\nchmatáčtější\r\nchmaták\r\nchmatákův\r\nchmelařčin\r\nchmelařka\r\nChmelařová\r\nchmelařský\r\nchmelařství\r\nchmelař\r\nChmelař\r\nChmelařův\r\nchmelařův\r\nchmelenský\r\nChmelenský\r\nchmel\r\nChmelíková\r\nChmelík\r\nChmelíkův\r\nchmelištenský\r\nChmelištná\r\nChmelná\r\nchmelnice\r\nChmelová\r\nchmelový\r\nChmel\r\nChmelův\r\nchmura\r\nchmurka\r\nchmurnější\r\nchmurný\r\nchmuření\r\nchmuřený\r\nchmuřit\r\nchmuřování\r\nchmuřovaný\r\nchmuřovat\r\nchmýří\r\nchmýříčko\r\nchmýřovitý\r\nchňapající\r\nchňapání\r\nchňapaný\r\nchňapat\r\nchňapka\r\nchňapnout\r\nchňapnutí\r\nchňapnutý\r\nchobot\r\nchobotnatcův\r\nchobotnatec\r\nchobotnatka\r\nchobotnatkovitý\r\nchobotnatý\r\nchobotnice\r\nchobotnicovitý\r\nchobotnička\r\nChobotová\r\nChobot\r\nChobotův\r\nChocenice\r\nchocenický\r\nchoceňský\r\nChoceň\r\nchočský\r\nChoč\r\nChodaničová\r\nChodanič\r\nChodaničův\r\nchodba\r\nchodbička\r\nchodbový\r\nchodcův\r\nChodčin\r\nchodě\r\nchodecký\r\nchodec\r\nChodelek\r\nChodelková\r\nChodelkův\r\nchodění\r\nchod\r\nchodící\r\nchodidlo\r\nchodidlový\r\nchodit\r\nchodítko\r\nchodívání\r\nchodívat\r\nchodívávat\r\nchodivější\r\nchodivý\r\nChodka\r\nchodkyně\r\nchodkynin\r\nchodníček\r\nchodník\r\nchodníkový\r\nChodová\r\nChodov\r\nchodovský\r\nChod\r\nChod\r\nChodsko\r\nchodský\r\nchodština\r\nChodura\r\nChodurová\r\nChodurův\r\nChodův\r\nChocholáček\r\nchocholačka\r\nChocholáčková\r\nChocholáčkův\r\nChocholáčová\r\nChocholáč\r\nChocholáčův\r\nChochola\r\nchocholatější\r\nchocholatý\r\nchochol\r\nchocholík\r\nchocholka\r\nChocholoušová\r\nchocholouš\r\nChocholouš\r\nChocholoušův\r\nchocholoušův\r\nChocholová\r\nChocholův\r\nCholastová\r\nCholast\r\nCholastův\r\ncholera\r\ncholerický\r\ncholeriččin\r\ncholerička\r\ncholeričtější\r\ncholerik\r\ncholerikův\r\ncholerový\r\ncholestatický\r\ncholestatičtější\r\ncholesterický\r\ncholesteričtější\r\ncholesterol\r\nCholina\r\ncholový\r\nCholtice\r\ncholtický\r\nchomáček\r\nchomáčkovitý\r\nchomáč\r\nChomátová\r\nChomát\r\nChomátův\r\nchomout\r\nchomoutový\r\nChomský\r\nChomutov\r\nChomutovsko\r\nchomutovský\r\nchomýžský\r\nChomýž\r\nchondrit\r\nchondritický\r\nchondritový\r\nchopení\r\nchopený\r\nChopin\r\nChopinův\r\nchopit\r\nchorál\r\nchoralista\r\nchoralistčin\r\nchoralistka\r\nchoralistův\r\nchorálový\r\nChoratice\r\nchoratický\r\nchordala\r\nchoreografčin\r\nchoreografický\r\nchoreografie\r\nchoreografka\r\nchoreograf\r\nchoreografův\r\nchór\r\nchóričtější\r\nChorinský\r\nchórista\r\nchóristčin\r\nchóristka\r\nchóristův\r\nchoroba\r\nchorobinec\r\nchorobnější\r\nchorobný\r\nchorobopis\r\nchoroboplodný\r\nchoromyslný\r\nchoroš\r\nchórový\r\nchorus\r\nChorvatčin\r\nChorvatka\r\nChorvat\r\nChorvatsko\r\nchorvatský\r\nchorvatský\r\nchorvatština\r\nChorvatův\r\nchorý\r\nchoření\r\nchořet\r\nChotče\r\nChotči\r\nChotčí\r\nChotěborský\r\nchotěbuzský\r\nChotěbuz\r\nChoteč\r\nchotečský\r\nChotek\r\nChotěnov\r\nchotěnovský\r\nChotěšov\r\nchotěšovský\r\nchotěšovský\r\nChotětov\r\nchotětovský\r\nChotíkov\r\nchotíkovský\r\nChotilsko\r\nChotiněves\r\nchotiněveský\r\nchotin\r\nChotkův\r\nChotusice\r\nchotusický\r\nchoťův\r\nchoť\r\nchotýčanský\r\nChotýčany\r\nchoulení\r\nchoulený\r\nchoulící\r\nchoulit\r\nchoulivka\r\nchoulostivější\r\nchoulostivění\r\nchoulostivět\r\nchoulostivý\r\nChoura\r\nChourová\r\nChourův\r\nChoustníkovo\r\nchoutka\r\nchovající\r\nchovající\r\nChovancová\r\nChovancův\r\nchovancův\r\nchovančin\r\nchovanec\r\nChovanec\r\nchovanější\r\nchování\r\nchovanka\r\nChovanová\r\nChovan\r\nChovanův\r\nchovaný\r\nchovatelčin\r\nchovatelka\r\nchovatelný\r\nchovatelský\r\nchovatelství\r\nchovatel\r\nchovatelův\r\nchovat\r\nchovávání\r\nchovávaný\r\nchovávat\r\nchov\r\nchovnější\r\nchovný\r\nchození\r\nchozrasčot\r\nchozrasčotní\r\nChožov\r\nchožovský\r\nchrabrý\r\nchrabřejší\r\nchrám\r\nchrámový\r\nchramstání\r\nchramstat\r\nchráněncův\r\nchráněnec\r\nchráněnější\r\nchránění\r\nchráněnka\r\nchráněný\r\nchránící\r\nchránička\r\nchránič\r\nchránit\r\nchránítko\r\nchrápání\r\nchrápat\r\nchrápávat\r\nchrápavější\r\nchrápavý\r\nchraplák\r\nchraplavější\r\nchraplavý\r\nchrapot\r\nchraptění\r\nchraptět\r\nchraptící\r\nchraptit\r\nchraptivější\r\nchraptivý\r\nChrastava\r\nchrastavec\r\nchrastavý\r\nchrastění\r\nChrást\r\nchrást\r\nchrastice\r\nchrastící\r\nChrastina\r\nChrastinová\r\nChrastinův\r\nchrastit\r\nchrastítko\r\nchrastivější\r\nchrastivý\r\nChrbonín\r\nchrbonínský\r\nchrčení\r\nchrčet\r\nChrčice\r\nchrčící\r\nchrčický\r\nchrčivější\r\nchrčivý\r\nChrenek\r\nChrenková\r\nChrenkův\r\nchrchel\r\nchrchlání\r\nchrchlaný\r\nchrchlat\r\nchrchlavý\r\nchrchle\r\nchrchlech\r\nchrchlem\r\nchrchli\r\nchrchlích\r\nchrchlu\r\nchrchlů\r\nchrchlům\r\nchrchly\r\nChrin\r\nChristianová\r\nChristian\r\nChristianův\r\nChristina\r\nChristlová\r\nChristl\r\nChristlův\r\nchristologický\r\nchristologie\r\nchristolog\r\nchristologův\r\nchristoložčin\r\nchristoložka\r\nchrlení\r\nchrlený\r\nChrlice\r\nchrlící\r\nchrlický\r\nchrlič\r\nchrličův\r\nchrlit\r\nchrnící\r\nchrobáčí\r\nchrobačka\r\nchrobák\r\nchrochtající\r\nchrochtání\r\nchrochtat\r\nchrochtavější\r\nchrochtavý\r\nchroman\r\nchromanový\r\nchromatický\r\nchromatika\r\nchromatismus\r\nchromatografický\r\nchromatografičtější\r\nchromatografie\r\nchromátování\r\nChromcová\r\nChromcův\r\nchromdioxidový\r\nChromec\r\nchromější\r\nchrom\r\nchróm\r\nchrominace\r\nchrominační\r\nchromitan\r\nchromit\r\nchromitý\r\nchromnan\r\nchromniklový\r\nchromolitografický\r\nchromolitografičtější\r\nchromosféra\r\nchromovanější\r\nchrómovanější\r\nchromovaný\r\nchrómovaný\r\nchromovat\r\nchrómovat\r\nChromovský\r\nchromový\r\nchrómový\r\nchromový\r\nchromozom\r\nchromozóm\r\nChromý\r\nchromý\r\nchronický\r\nchroničtější\r\nchronifikovaný\r\nchronologický\r\nchronologičtější\r\nchronologie\r\nchronometráž\r\nchronometr\r\nchronoskop\r\nchroptění\r\nchroptět\r\nchroptící\r\nchroptit\r\nchroptivý\r\nChropyně\r\nchrostík\r\nchrostíkův\r\nchroupající\r\nchroupání\r\nchroupaný\r\nchroupat\r\nchroupávání\r\nchroupávaný\r\nchroupávat\r\nchroupavý\r\nchroustající\r\nchroustání\r\nchroustat\r\nchroust\r\nchroustí\r\nChroustovice\r\nchroustovický\r\nChroustov\r\nchroustovský\r\nchroust\r\nchroustův\r\nChrpa\r\nchrpa\r\nChrpová\r\nchrpovník\r\nchrpový\r\nChrpův\r\nchrrr\r\nchrstat\r\nchrstnout\r\nchrstnutí\r\nchrstnutý\r\nchrtařčin\r\nchrtařka\r\nchrtař\r\nchrtařův\r\nChrtek\r\nchrtí\r\nChrtková\r\nChrtkův\r\nchrt\r\nchrtův\r\nChrudim\r\nChrudimsko\r\nchrudimský\r\nchrupání\r\nchrupaný\r\nchrupat\r\nchrupavčitý\r\nchrupavka\r\nchrupavý\r\nchrup\r\nchrupka\r\nchrupnutí\r\nChrustenice\r\nchrustenický\r\nchruščovovský\r\nChruščov\r\nChruščovův\r\nchrutí\r\nchrysolitový\r\nchryzantéma\r\nchryzotil\r\nChržín\r\nchržínský\r\nchřadnoucí\r\nchřadnout\r\nchřadnutí\r\nchřaplavý\r\nchřástalovitý\r\nchřástal\r\nchřástalův\r\nchřestění\r\nchřest\r\nchřestící\r\nchřestidlo\r\nchřestit\r\nchřestítko\r\nchřestivější\r\nchřestivý\r\nchřestot\r\nchřestový\r\nchřestýšovitý\r\nchřestýš\r\nchřestýšův\r\nChřibka\r\nChřibková\r\nChřibkův\r\nChřibská\r\nchřibský\r\nChřiby\r\nchřípí\r\nchřipka\r\nchřipkový\r\nchřoupat\r\nchřtán\r\nchřupat\r\nchřupavý\r\nchtě\r\nchtěje\r\nchtějící\r\nchtěl\r\nchtěnější\r\nchtěnější\r\nchtění\r\nchtěn\r\nchtěný\r\nchtě\r\nchtíč\r\nchtít\r\nchtivější\r\nchtivka\r\nchtivý\r\nchtivý\r\nchudaččin\r\nchudáček\r\nchudačka\r\nchudáčkův\r\nchudák\r\nchudákův\r\nchuďas\r\nchuďasův\r\nchůda\r\nChudějová\r\nChuděj\r\nChudějův\r\nChudenice\r\nchudenický\r\nChudenín\r\nchudenínský\r\nchuděra\r\nchuděrčin\r\nchuděrka\r\nChuderov\r\nchuderovský\r\nChudeřice\r\nchudeřický\r\nchudičký\r\nchudina\r\nchudinka\r\nchudinský\r\nchudinštější\r\nchůdka\r\nchudnout\r\nchudnutí\r\nChudoba\r\nchudoba\r\nchudobinčin\r\nchudobinec\r\nchudobinka\r\nchudobka\r\nchudobnější\r\nchudobný\r\nChudobová\r\nChudobův\r\nchudokrevnější\r\nchudokrevný\r\nchudokvětý\r\nchůdovitý\r\nChudožilovová\r\nChudožilov\r\nChudožilovův\r\nchudší\r\nChudý\r\nchudý\r\nchuchelenský\r\nChuchelná\r\nChuchelna\r\nChuchelová\r\nChuchel\r\nchuchelský\r\nChuchelův\r\nChuchle\r\nchuchvalec\r\nchuligánka\r\nchuligán\r\nchuligánský\r\nchuligánství\r\nchuligánštější\r\nchuligánův\r\nchumáček\r\nchumáč\r\nChumanová\r\nChuman\r\nChumanův\r\nchumelenice\r\nchumelení\r\nchumelit\r\nchumel\r\nChumchalová\r\nChumchal\r\nChumchalův\r\nchumlající\r\nchumlání\r\nchumlaný\r\nchumlat\r\nchumlávání\r\nchumlávaný\r\nchumlávat\r\nChumlena\r\nChumlenová\r\nChumlenův\r\nchundelatý\r\nchundel\r\nchunta\r\nchuravějící\r\nchuravější\r\nchuravění\r\nchuravět\r\nchurav\r\nchuravý\r\nChurchill\r\nChurchillův\r\nchuřejší\r\nchutě\r\nchuť\r\nchutnající\r\nchutnání\r\nchutnaný\r\nchutnat\r\nchutnější\r\nchutný\r\nchuťovka\r\nchuťový\r\nchůva\r\nchůze\r\nchval\r\nchválabohu\r\nChvalatice\r\nchvála\r\nChvalčov\r\nchvalčovský\r\nChválenice\r\nchválenický\r\nchválení\r\nchválený\r\nChvaletice\r\nchvaletický\r\nchvaletický\r\nchválící\r\nchválihodný\r\nchválit\r\nchvalitebný\r\nchválívání\r\nchválívaný\r\nchválívat\r\nChvalkovice\r\nchvalkovický\r\nChvalkovský\r\nchvalnější\r\nChvalnov\r\nchvalnovský\r\nchvalný\r\nchvalořeč\r\nChvalová\r\nChválová\r\nChvalovice\r\nchvalovický\r\nchvalozpěv\r\nChval\r\nChvál\r\nChvalův\r\nChválův\r\nchvályhodnější\r\nchvályhodný\r\nchvástání\r\nchvástat\r\nchvástávání\r\nchvástávat\r\nchvástavější\r\nchvástavý\r\nchvastoun\r\nchvastounský\r\nchvastounství\r\nchvastounštější\r\nchvastounův\r\nchvátající\r\nChvátalová\r\nChvátal\r\nChvátalův\r\nchvátání\r\nchvátaný\r\nchvátat\r\nchvátávání\r\nchvátávat\r\nchvat\r\nChvatíková\r\nChvatík\r\nChvatíkův\r\nchvatnější\r\nchvatný\r\nchvějící\r\nchvějící\r\nchvějivější\r\nchvějivý\r\nchvění\r\nchvět\r\nchvil\r\nchvilečka\r\nchvílemi\r\nchvilenka\r\nchvíle\r\nchvilička\r\nchvilinka\r\nchvilka\r\nchvilkový\r\nchvojenecký\r\nChvojenec\r\nchvojí\r\nChvojka\r\nchvojka\r\nChvojková\r\nchvojkový\r\nChvojkův\r\nChvojno\r\nchvojový\r\nchvoj\r\nchvost\r\nChyba\r\nchyba\r\nchybějící\r\nchybení\r\nchybění\r\nchybený\r\nchybět\r\nchybička\r\nchybit\r\nchybka\r\nchybnější\r\nchybný\r\nchybování\r\nchybovaný\r\nchybovat\r\nChybová\r\nchybovější\r\nchybový\r\nchybující\r\nChybův\r\nchycenější\r\nchycení\r\nchycený\r\nchýlení\r\nchýlený\r\nchýlící\r\nchýlit\r\nChýlka\r\nChýlková\r\nChýlkův\r\nChyňava\r\nChýnova\r\nChýnov\r\nchýnovský\r\nchystající\r\nchystanější\r\nchystání\r\nchystaný\r\nchystat\r\nchyšenský\r\nchýše\r\nChyška\r\nchyška\r\nchýška\r\nChyšná\r\nchytačka\r\nchytač\r\nchytačův\r\nchytající\r\nchyták\r\nchytanější\r\nchytání\r\nchytaný\r\nchytatelný\r\nchytat\r\nchytávání\r\nchytávaný\r\nchytávat\r\nchyt\r\nChytilová\r\nChytil\r\nChytilův\r\nchytit\r\nChytka\r\nChytková\r\nChytkův\r\nchytlavější\r\nchytlavý\r\nchytnout\r\nchytnutí\r\nchytnutý\r\nchytový\r\nchytrácký\r\nchytráctví\r\nchytráček\r\nChytráček\r\nchytračení\r\nchytračit\r\nchytračka\r\nChytráčková\r\nChytráčkův\r\nchytráčkův\r\nchytráčtější\r\nchytrák\r\nchytrákův\r\nchytristika\r\nChytrý\r\nchytrý\r\nchytřejší\r\nI\r\ni\r\nIAEA\r\nIATA\r\niatrogenní\r\niberoamerický\r\niberoamerikanista\r\niberoamerikanistčin\r\niberoamerikanistka\r\niberoamerikanistův\r\niberský\r\niberština\r\nibisovitý\r\nibis\r\nibisův\r\nibišek\r\nibiškový\r\nIBM\r\nIBRD\r\nIbuprofen\r\nICAO\r\nICMP\r\níčko\r\nIČO\r\nIDA\r\nIda\r\nideál\r\nidealismus\r\nidealista\r\nidealistčin\r\nidealistický\r\nidealističtější\r\nidealistka\r\nidealistův\r\nidealizace\r\nidealizovanější\r\nidealizování\r\nidealizovaný\r\nidealizovat\r\nideálnější\r\nideální\r\nidea\r\nideje\r\nidejemi\r\nideji\r\nidejí\r\nidejích\r\nidejím\r\nidempotentní\r\nidentický\r\nidentičtější\r\nidentifikace\r\nidentifikační\r\nidentifikátor\r\nidentifikování\r\nidentifikovaný\r\nidentifikovat\r\nidentifikovatelný\r\nidentifikovávání\r\nidentifikovávaný\r\nidentifikovávat\r\nidentifikující\r\nidentita\r\nideografický\r\nideogram\r\nideologický\r\nideologičtější\r\nideologie\r\nideologismus\r\nideologistický\r\nideologizace\r\nideologizování\r\nideologizovaný\r\nideologizovat\r\nideologizující\r\nideolog\r\nideologův\r\nideoložčin\r\nideoložka\r\nideovější\r\nideový\r\nIdin\r\nidiolekt\r\nidiomatický\r\nidiomatičtější\r\nidiomatika\r\nidiom\r\nidiotický\r\nidiotismus\r\nidiot\r\nidiotský\r\nidiotství\r\nidiotův\r\nidolový\r\nidol\r\nidolův\r\nidyla\r\nidylický\r\nidyličtější\r\nidylismus\r\nidylka\r\nigelit\r\nigelitka\r\nigelitový\r\niglú\r\nIgnác\r\nIgnácův\r\nignorace\r\nignorance\r\nignoranství\r\nignorantčin\r\nignorantka\r\nignorant\r\nignorantský\r\nignorantství\r\nignorantův\r\nignorování\r\nignorovaný\r\nignorovat\r\nignorovávání\r\nignorovávaný\r\nignorovávat\r\nignorující\r\nIgor\r\nIgorův\r\nihned\r\nIHS\r\nichtyofauna\r\nichtyofonóza\r\nichtyologický\r\nichtyologie\r\nichtyolog\r\nichtyologův\r\nichtyoložčin\r\nichtyoložka\r\nichtyopatologický\r\nichtyosporitóza\r\nichtyoza\r\nII\r\nIII\r\nIkaros\r\nIkarův\r\nikebana\r\nikona\r\nikonický\r\nikoničtější\r\nikonka\r\nikonografický\r\nikonoklasmus\r\nikonový\r\nikosaedr\r\niksáky\r\niks\r\niksko\r\nIlečko\r\nIlečková\r\nIlečkův\r\nilegalita\r\nilegalizace\r\nilegálnější\r\nilegální\r\nÍlias\r\nilit\r\nilitový\r\nIlja\r\nIljič\r\nIljičův\r\nIljův\r\nIllichmannová\r\nIllichmann\r\nIllichmannův\r\nIllnerová\r\nIllner\r\nIllnerův\r\nIllustrator\r\nillyrština\r\nIlmenava\r\nILO\r\nilokuce\r\nilokuční\r\nIlona\r\nIlončin\r\nIlonin\r\nIlonka\r\niluminace\r\niluminační\r\niluminování\r\niluminovaný\r\niluminovat\r\niluse\r\nilusionista\r\nilusionistčin\r\nilusionistka\r\nilusionistův\r\nilusivnější\r\nilustrace\r\nilustrační\r\nilustrativnější\r\nilustrativní\r\nilustrátorčin\r\nilustrátorka\r\nilustrátor\r\nilustrátorův\r\nilustrování\r\nilustrovaný\r\nilustrovat\r\nilustrovávat\r\nilustrující\r\niluze\r\niluzionismus\r\niluzionista\r\niluzionistčin\r\niluzionistka\r\niluzionistův\r\niluzivnější\r\niluzívní\r\niluzivní\r\niluzornější\r\niluzorní\r\niluzotvorný\r\nIlyrie\r\nilyrismus\r\nimaginace\r\nimaginační\r\nimaginárnější\r\nimaginární\r\nimaginativnější\r\nimaginativní\r\nimagismus\r\nimago\r\nimám\r\nimámův\r\nimanence\r\nimanentismus\r\nimanentnější\r\nimanentní\r\nimatrikulace\r\nimatrikulační\r\nimatrikulovat\r\nimažinističtější\r\nimbecilita\r\nimbecilnější\r\nimbecilní\r\nimbecil\r\nimbecilův\r\nIMCO\r\nimigrace\r\nimigrační\r\nimigrantčin\r\nimigrantka\r\nimigrant\r\nimigrantštější\r\nimigrantův\r\nimigrování\r\nimigrovaný\r\nimigrovat\r\nimise\r\nimisnější\r\nimisní\r\nimitace\r\nimitační\r\nimitativnější\r\nimitátor\r\nimitátorský\r\nimitátorův\r\nimitování\r\nimitovaný\r\nimitovat\r\nimitovávání\r\nimitovávaný\r\nimitovávat\r\nimitující\r\nImlaufová\r\nImlauf\r\nImlaufův\r\nImmanuel\r\nimobilizér\r\nimobilnější\r\nimobilní\r\nimorálnější\r\nimpakt\r\nimpaktní\r\nimpaktor\r\nimpedance\r\nimpedanční\r\nimperativ\r\nimperativní\r\nimperátor\r\nimperátorský\r\nimperátorštější\r\nimperátorův\r\nimperfekce\r\nimperfektivní\r\nimperfektivum\r\nimperfektní\r\nimperfektum\r\nimperialismus\r\nimperialista\r\nimperialistčin\r\nimperialistický\r\nimperialističtější\r\nimperialistka\r\nimperialistův\r\nimperiálnější\r\nimperiální\r\nimperie\r\nimperioso\r\nimpérium\r\nimpertinence\r\nimpertinentnější\r\nimpertinentní\r\nimpetuoso\r\nimplantabilní\r\nimplantace\r\nimplantační\r\nimplantát\r\nimplantování\r\nimplantovaný\r\nimplantovat\r\nimplantovatelný\r\nimplantující\r\nimplementace\r\nimplementační\r\nimplementátor\r\nimplementátorův\r\nimplementování\r\nimplementovaný\r\nimplementovaný\r\nimplementovat\r\nimplementovatelný\r\nimplementovávání\r\nimplementovávaný\r\nimplementovávat\r\nimplementující\r\nimplicita\r\nimplicitnější\r\nimplicitní\r\nimplikace\r\nimplikativní\r\nimplikovanější\r\nimplikování\r\nimplikovaný\r\nimplikovat\r\nimplikovávání\r\nimplikovávaný\r\nimplikovávat\r\nimplikující\r\nimploze\r\nimponování\r\nimponovaný\r\nimponovat\r\nimponující\r\nimportér\r\nimportérův\r\nimport\r\nimportní\r\nimportovanější\r\nimportování\r\nimportovaný\r\nimportovat\r\nimportovávání\r\nimportovávaný\r\nimportovávat\r\nimportující\r\nimpotence\r\nimpotentnější\r\nimpotentní\r\nimpotent\r\nimpotentův\r\nimpozantnější\r\nimpozantní\r\nimpregnace\r\nimpregnační\r\nimpregnování\r\nimpregnovaný\r\nimpregnovat\r\nimpregnující\r\nimprese\r\nimpresionismus\r\nimpresionista\r\nimpresionistčin\r\nimpresionistický\r\nimpresionističtější\r\nimpresionistka\r\nimpresionistův\r\nimpresivnější\r\nimprimatura\r\nimprimé\r\nimprimování\r\nimprimovaný\r\nimprimovat\r\nimprinting\r\nimprintovaný\r\nimprovizace\r\nimprovizační\r\nimprovizátorčin\r\nimprovizátorka\r\nimprovizátor\r\nimprovizátorův\r\nimprovizovanější\r\nimprovizování\r\nimprovizovaný\r\nimprovizovaný\r\nimprovizovat\r\nimprovizující\r\nimpuls\r\nimpulsivnější\r\nimpulsivní\r\nimpulsívní\r\nimpulsivní\r\nimpulsnější\r\nimpulsní\r\nimpulsový\r\nimpulz\r\nimpulzivita\r\nimpulzivnější\r\nimpulzivní\r\nimpulzívní\r\nimpulzní\r\nimputovaný\r\nimputovat\r\nimunita\r\nimunitní\r\nimunizace\r\nimunizační\r\nimunizování\r\nimunizovaný\r\nimunizovat\r\nimunizující\r\nimunní\r\nimunogenetičin\r\nimunogenetika\r\nimunoglobulin\r\nimunoglobulinový\r\nimunohistochemický\r\nimunohistochemie\r\nimunologický\r\nimunologičtější\r\nimunologie\r\nimunolog\r\nimunologův\r\nimunoložčin\r\nimunoložka\r\nimunomodulátor\r\nimunoprofylaxe\r\nimunospecifický\r\nimunoterapie\r\nin\r\nIna\r\ninaktivace\r\ninaktivační\r\ninaktivování\r\ninaktivovaný\r\ninaktivovat\r\ninaugurace\r\ninaugurační\r\ninaugurální\r\ninaugurovat\r\nInc\r\nincest\r\nincestní\r\nincestuální\r\nincidence\r\nincidenční\r\nincident\r\nIndčin\r\nindefinitní\r\nIndermaurová\r\nIndermaur\r\nIndermaurův\r\nindeterminismus\r\nindeterministický\r\nindexace\r\nindex\r\nindexovací\r\nindexování\r\nindexování\r\nindexovaný\r\nindexovaný\r\nindexovat\r\nindexový\r\nindexující\r\nIndiana\r\nindianista\r\nindianistčin\r\nindianistka\r\nindianistův\r\nindiánka\r\nIndián\r\nindián\r\nindiánský\r\nindiánštější\r\nIndiánův\r\nindiánův\r\nindicie\r\nindície\r\nindickooceánský\r\nindický\r\nindičtější\r\nIndie\r\nindiferentismus\r\nindiferentnější\r\nindiferentní\r\nindigo\r\nindigotin\r\nindigový\r\nindikace\r\nindikační\r\nindikativ\r\nindikativní\r\nindikátor\r\nindikátorový\r\nindikování\r\nindikovaný\r\nindikovat\r\nindikovávání\r\nindikovávaný\r\nindikovávat\r\nindikující\r\nindiový\r\nindiskrece\r\nindiskrétní\r\nindisponovaný\r\nindisponovat\r\nindispozice\r\ninditý\r\nindium\r\nindividualismus\r\nindividualista\r\nindividualistčin\r\nindividualistický\r\nindividualističtější\r\nindividualistka\r\nindividualistův\r\nindividualita\r\nindividualizace\r\nindividualizování\r\nindividualizovaný\r\nindividualizovat\r\nindividualizující\r\nindividuálnější\r\nindividuální\r\nindividuum\r\nIndka\r\nIndočína\r\nindočínština\r\nindoevropeista\r\nindoevropeistčin\r\nindoevropeistika\r\nindoevropeistka\r\nindoevropeistův\r\nindoevropský\r\nindoevropský\r\nindoevropštější\r\nindoíránský\r\nindolentnější\r\nindol\r\nIndonésančin\r\nIndonésanka\r\nIndonésan\r\nIndonésanův\r\nIndonésie\r\nindonéský\r\nindonéština\r\nindosace\r\nindosament\r\nindosant\r\nindosantův\r\nindosatář\r\nindosatářův\r\nindosování\r\nindosovaný\r\nindosovat\r\nindosovatelný\r\nInd\r\nIndra\r\nIndrová\r\nIndrův\r\nindukace\r\nindukce\r\nindukční\r\nindukování\r\nindukovaný\r\nindukovat\r\nindukovávání\r\nindukovávaný\r\nindukovávat\r\ninduktance\r\ninduktivnější\r\ninduktivní\r\ninduktor\r\ninduktorový\r\nIndulona\r\nindurace\r\nindustrialismus\r\nindustrialistický\r\nindustrializace\r\nindustrializovaný\r\nindustrializovat\r\nindustrializující\r\nindustriální\r\nindustrie\r\nIndův\r\ninercialita\r\ninerciálnější\r\ninerciální\r\ninertizace\r\ninertizační\r\ninertizovat\r\ninertní\r\ninervace\r\ninervační\r\ninervování\r\ninervovaný\r\ninervovat\r\ninfantčin\r\ninfanterista\r\ninfanteristův\r\ninfanticida\r\ninfantilismus\r\ninfantilnější\r\ninfantilní\r\ninfantka\r\ninfarkt\r\ninfarktový\r\ninfekce\r\ninfekcionista\r\ninfekcionistčin\r\ninfekcionistka\r\ninfekcionistův\r\ninfekčnější\r\ninfekční\r\ninferenční\r\ninferiornější\r\ninfernálnější\r\ninferno\r\ninfikování\r\ninfikovaný\r\ninfikovat\r\ninfikovávání\r\ninfikovávaný\r\ninfikovávat\r\ninfiltrace\r\ninfiltrační\r\ninfiltrovanější\r\ninfiltrování\r\ninfiltrovaný\r\ninfiltrovat\r\ninfiltrovávat\r\ninfiltrující\r\ninfimum\r\ninfinitesimální\r\ninfinitiv\r\ninfinitivní\r\ninfix\r\ninfixový\r\ninflace\r\ninflační\r\ninflagranti\r\ninfluenza\r\ninformace\r\ninformační\r\ninformatický\r\ninformatičtější\r\ninformatika\r\ninformativní\r\ninformatizace\r\ninformátorčin\r\ninformatorium\r\ninformátorka\r\ninformátor\r\ninformátorův\r\ninformovanější\r\ninformování\r\ninformovaný\r\ninformovat\r\ninformovávání\r\ninformovávaný\r\ninformovávat\r\ninformující\r\ninfra\r\ninfračervený\r\ninfradalekohled\r\ninframěření\r\ninfrastruktura\r\ninfrastrukturní\r\ninfrateploměr\r\ninfravize\r\ninfrazářič\r\ninfrazvuk\r\ninfrazvukový\r\ninfuze\r\ninfúze\r\ninfuzor\r\ninfuzoriový\r\ning\r\ningerence\r\ningot\r\ningredience\r\nIngrid\r\nIngridin\r\ninhalace\r\ninhalační\r\ninhalátor\r\ninhalování\r\ninhalovaný\r\ninhalovat\r\ninhalovávání\r\ninhalovávaný\r\ninhalovávat\r\ninherence\r\ninherentnější\r\ninherentní\r\ninhibice\r\ninhibičnější\r\ninhibiční\r\ninhibitor\r\ninhibující\r\niniciace\r\niniciační\r\niniciála\r\ninicializace\r\ninicializační\r\ninicializátor\r\ninicializovanější\r\ninicializování\r\ninicializovaný\r\ninicializovat\r\niniciálka\r\niniciálnější\r\niniciální\r\niniciálový\r\niniciativa\r\niniciativnější\r\niniciativní\r\niniciátorčin\r\niniciátorka\r\niniciátor\r\niniciátorův\r\niniciování\r\niniciovaný\r\niniciovat\r\niniciující\r\ninjakulace\r\ninjekce\r\ninjekční\r\ninjektážní\r\ninjektáž\r\ninjektivní\r\ninjektor\r\ninjektorový\r\ninjektování\r\ninjikování\r\ninjikovaný\r\ninjikovat\r\nInka\r\ninkarnace\r\ninkasista\r\ninkasistčin\r\ninkasistka\r\ninkasistův\r\ninkasní\r\ninkaso\r\ninkasování\r\ninkasovaný\r\ninkasovat\r\ninkasovávání\r\ninkasovávaný\r\ninkasovávat\r\ninkasující\r\ninklinace\r\ninklinometr\r\ninklinování\r\ninklinovat\r\ninklinující\r\ninkluze\r\ninkluzní\r\ninkognito\r\ninkolát\r\ninkonel\r\ninkonelový\r\ninkontinence\r\ninkonzistence\r\ninkorporace\r\ninkorporační\r\ninkorporující\r\ninkoust\r\ninkoustový\r\ninkrementace\r\ninkrementální\r\ninkrement\r\ninkrementování\r\ninkrementovaný\r\ninkrementovat\r\ninkriminace\r\ninkriminovaný\r\ninkriminovat\r\ninkriminující\r\ninkrustace\r\ninkubace\r\ninkubační\r\ninkubátor\r\ninkubování\r\ninkubovaný\r\ninkubovat\r\ninkulturace\r\ninkvizice\r\ninkviziční\r\ninkvizitor\r\ninkvizitorský\r\ninkvizitorův\r\nInmarsat\r\nInnsbruck\r\ninnsbrucký\r\nInnský\r\ninokulování\r\ninokulovaný\r\ninokulovat\r\nInomostí\r\ninosinan\r\ninosin\r\ninosinový\r\ninovace\r\ninovační\r\ninovativní\r\ninovátorčin\r\ninovátorka\r\ninovátor\r\ninovátorův\r\ninovování\r\ninovovaný\r\ninovovaný\r\ninovovat\r\ninovující\r\ninozitoltrisfosfát\r\nINRI\r\ninscenace\r\ninscenační\r\ninscenátor\r\ninscenování\r\ninscenovaný\r\ninscenovat\r\ninsekticid\r\ninsekticidní\r\ninseminace\r\ninseminační\r\ninseminátor\r\ninseminátorův\r\ninseminování\r\ninseminovaný\r\ninseminovat\r\ninsertivní\r\ninsignie\r\ninsolventní\r\ninsolvetní\r\ninspekce\r\ninspekční\r\ninspektorát\r\ninspektorčin\r\ninspektoriální\r\ninspektorie\r\ninspektorka\r\ninspektor\r\ninspektorský\r\ninspektorův\r\ninspicient\r\ninspicientův\r\ninspirace\r\ninspirační\r\ninspirativnější\r\ninspirativní\r\ninspirátorčin\r\ninspirátorka\r\ninspirátor\r\ninspirátorův\r\ninspiromat\r\ninspirovanější\r\ninspirování\r\ninspirovaný\r\ninspirovat\r\ninspirovávat\r\ninspirující\r\ninstalace\r\ninstalační\r\ninstalatér\r\ninstalatérský\r\ninstalatérství\r\ninstalatérův\r\ninstalátor\r\ninstalovanější\r\ninstalování\r\ninstalovaný\r\ninstalovat\r\ninstalovatelnější\r\ninstalovatelný\r\ninstalovávání\r\ninstalovávaný\r\ninstalovávat\r\ninstalující\r\ninstance\r\ninstanciace\r\ninstanční\r\ninstantní\r\ninstinkt\r\ninstinktivnější\r\ninstinktivní\r\ninstituce\r\ninstitucionalismus\r\ninstitucionalistický\r\ninstitucionalizace\r\ninstitucionalizování\r\ninstitucionalizovaný\r\ninstitucionalizovat\r\ninstitucionálnější\r\ninstitucionální\r\ninstituční\r\ninstitut\r\ninstrukce\r\ninstrukční\r\ninstruktážní\r\ninstruktáž\r\ninstruktivnější\r\ninstruktivní\r\ninstruktorčin\r\ninstruktorka\r\ninstruktor\r\ninstruktorský\r\ninstruktorův\r\ninstrumentace\r\ninstrumentál\r\ninstrumentalista\r\ninstrumentalistčin\r\ninstrumentalistka\r\ninstrumentalistův\r\ninstrumentální\r\ninstrumentálový\r\ninstrumentárium\r\ninstrumentarium\r\ninstrumentářčin\r\ninstrumentářka\r\ninstrumentář\r\ninstrumentářův\r\ninstrument\r\ninstrumentování\r\ninstrumentovaný\r\ninstrumentovat\r\ninstruování\r\ninstruovaný\r\ninstruovat\r\ninsuficience\r\ninsulinový\r\nInšpruk\r\nintaktnější\r\nintarsie\r\nintarzie\r\nintarzovaný\r\nintegrabilita\r\nintegrace\r\nintegrační\r\nintegrál\r\nintegralismus\r\nintegrálnější\r\nintegrální\r\nintegrand\r\nintegrátor\r\nintegrátorův\r\nintegrista\r\nintegristčin\r\nintegristka\r\nintegristův\r\nintegrita\r\nintegritní\r\nintegritní\r\nintegrovanější\r\nintegrování\r\nintegrovaný\r\nintegrovaný\r\nintegrovat\r\nintegrovatelný\r\nintegrovávání\r\nintegrovávaný\r\nintegrovávat\r\nintegrující\r\nintelekt\r\nintelektový\r\nintelektualismus\r\nintelektualistický\r\nintelektualističtější\r\nintelektualita\r\nintelektualizovat\r\nintelektuálka\r\nintelektuálnější\r\nintelektuální\r\nintelektuál\r\nintelektuálský\r\nintelektuálství\r\nintelektuálštější\r\nintelektuálův\r\nIntel\r\ninteligence\r\ninteligenční\r\ninteligentnější\r\ninteligentní\r\ninteligent\r\ninteligentův\r\nintence\r\nintencích\r\nintencionalita\r\nintencionálnější\r\nintencionální\r\nintenční\r\nintendantčin\r\nintendantka\r\nintensifikace\r\nintensita\r\nintensivnější\r\nintenzifikace\r\nintenzifikační\r\nintenzifikovaný\r\nintenzita\r\nintenzivnější\r\nintenzívnější\r\nintenzivnění\r\nintenzivněný\r\nintenzivnět\r\nintenzívnět\r\nintenzivní\r\nintenzívní\r\ninteragování\r\ninteragovat\r\ninteragující\r\ninterakce\r\ninterakce\r\ninterakcionismus\r\ninterakční\r\ninteraktivita\r\ninteraktivnější\r\ninteraktivní\r\ninterbrigáda\r\ninterbrigadista\r\ninterbrigadistčin\r\ninterbrigadistka\r\ninterbrigadistův\r\ninterdentální\r\ninterdialekt\r\ninterdikt\r\ninterdisciplinarita\r\ninterdisciplinární\r\ninteresantnější\r\ninteresantní\r\ninteres\r\ninteresování\r\ninteresovaný\r\ninteresovat\r\ninterference\r\ninterferenční\r\ninterferometr\r\ninterferometrie\r\ninterferon\r\ninterferování\r\ninterferovat\r\nintergalaktický\r\nintergalaktičtější\r\nIntergraph\r\ninterhotel\r\ninterier\r\ninteriér\r\ninterierový\r\ninteriérový\r\ninterinstitucionální\r\ninteriorizace\r\ninterjekce\r\ninterkom\r\ninterkonfesionální\r\ninterkontinentální\r\ninterkrystalický\r\ninterkrystaličtější\r\ninterlingua\r\ninterlock\r\ninterlokový\r\ninterludium\r\nintermetalický\r\nintermetaličtější\r\nintermezzo\r\ninternace\r\ninternacionála\r\ninternacionalismus\r\ninternacionalista\r\ninternacionalistčin\r\ninternacionalistický\r\ninternacionalistka\r\ninternacionalistův\r\ninternacionalizace\r\ninternacionalizační\r\ninternacionalizovanější\r\ninternacionalizování\r\ninternacionalizovaný\r\ninternacionalizovat\r\ninternacionálnější\r\ninternacionální\r\ninternacionál\r\ninternacionálův\r\ninternační\r\ninternalizace\r\ninternalizování\r\ninternalizovaný\r\ninternalizovat\r\ninternát\r\ninternátní\r\ninterna\r\ninternější\r\ninternet\r\ninternetovský\r\ninternetový\r\ninternista\r\ninternistčin\r\ninternistka\r\ninternistův\r\ninterní\r\ninternizace\r\ninternování\r\ninternovaný\r\ninternovat\r\ninterolerabilita\r\ninteroperabilita\r\ninteroperabilní\r\ninterpelace\r\ninterpelační\r\ninterpelování\r\ninterpelovaný\r\ninterpelovat\r\ninterpelovávání\r\ninterpelovávaný\r\ninterpelovávat\r\ninterpelující\r\ninterpersonálnější\r\ninterpersonální\r\ninterpolace\r\ninterpolační\r\ninterpolátor\r\ninterpolování\r\ninterpolovaný\r\ninterpolovat\r\ninterpolovávání\r\ninterpolovávaný\r\ninterpolovávat\r\ninterpretace\r\ninterpretační\r\ninterpretant\r\ninterpretantův\r\ninterpretčin\r\ninterpretka\r\ninterpretování\r\ninterpretovaný\r\ninterpretovaný\r\ninterpretovat\r\ninterpretovatelnější\r\ninterpretovatelný\r\ninterpretovávání\r\ninterpretovávaný\r\ninterpretovávat\r\ninterpret\r\ninterpretr\r\ninterpretující\r\ninterpretův\r\ninterpunkce\r\ninterpunkční\r\ninterrupce\r\ninterrupční\r\ninterstelární\r\nintersticiální\r\nintersubjektivní\r\ninterval\r\nintervalový\r\nintervence\r\nintervencionalismus\r\nintervencionalistický\r\nintervencionismus\r\nintervencionistický\r\nintervenčnější\r\nintervenční\r\nintervenování\r\nintervenovat\r\nintervent\r\ninterventův\r\nintervenující\r\ninterview\r\ninterviewovat\r\nintesionální\r\nintimita\r\nintimnější\r\nintimní\r\nintolerance\r\nintolerantnější\r\nintonace\r\nintonační\r\nintonování\r\nintonovaný\r\nintonovat\r\nintonující\r\nintoxikace\r\nintráda\r\nintradermální\r\nintrafamiliární\r\nintraindividuální\r\nintranet\r\nintranetový\r\nintranzitivita\r\nintranzitivní\r\nintrapersonální\r\nintrapsychický\r\nintravenózní\r\nintravilán\r\nintrička\r\nintrikánčin\r\nintrikánka\r\nintrikán\r\nintrikánství\r\nintrikánštější\r\nintrikánův\r\nintrikářčin\r\nintrikářka\r\nintrikářský\r\nintrikářství\r\nintrikář\r\nintrikářův\r\nintrika\r\nintrikování\r\nintrikovaný\r\nintrikovat\r\nintrikovávání\r\nintrikovávat\r\nintrikující\r\nintrodukce\r\nintroflexní\r\nintroitus\r\nintrospekce\r\nintrospektivní\r\nintrovertčin\r\nintrovertka\r\nintrovertnější\r\nintrovertní\r\nintrovert\r\nintrovertův\r\nintroverze\r\nintuice\r\nintuicionista\r\nintuicionistčin\r\nintuicionistický\r\nintuicionističtější\r\nintuicionistka\r\nintuicionistův\r\nintuitivnější\r\nintuitivní\r\ninu\r\ninulin\r\ninundace\r\ninundační\r\ninvalida\r\ninvalidčin\r\ninvalidita\r\ninvalidizovat\r\ninvalidizující\r\ninvalidka\r\ninvalidní\r\ninvalidovna\r\ninvalidův\r\ninvariant\r\ninvariantní\r\ninvarový\r\ninvase\r\ninvaze\r\ninvazivní\r\ninvazní\r\ninvektiva\r\ninvence\r\ninvenčnější\r\ninvenční\r\ninventarizace\r\ninventarizační\r\ninventarizování\r\ninventarizovaný\r\ninventarizovat\r\ninventární\r\ninventář\r\ninventura\r\ninventurní\r\ninverse\r\ninversní\r\ninvertáza\r\ninvertibilní\r\ninvertní\r\ninvertor\r\ninvertorový\r\ninvertování\r\ninvertovaný\r\ninvertovat\r\ninvertovatelný\r\ninvertující\r\ninverze\r\ninverzní\r\ninvestice\r\ninvestiční\r\ninvestitura\r\ninvestor\r\ninvestorský\r\ninvestorství\r\ninvestorův\r\ninvestování\r\ninvestovaný\r\ninvestovat\r\ninvestovávání\r\ninvestovávaný\r\ninvestovávat\r\ninvestující\r\ninvokace\r\ninvoluce\r\ninvolutorní\r\ninzerát\r\ninzerce\r\ninzerentčin\r\ninzerentka\r\ninzerent\r\ninzerentův\r\ninzerování\r\ninzerovaný\r\ninzerovat\r\ninzerovávání\r\ninzerovávaný\r\ninzerovávat\r\ninzertní\r\ninzerující\r\ninzulin\r\ninzulín\r\ninzulínový\r\ninzulinový\r\ninzultace\r\ninzultovat\r\ninženýrčin\r\ninženýrka\r\ninženýr\r\ninženýrskogeologický\r\ninženýrskotechnický\r\ninženýrskotechničtější\r\ninženýrský\r\ninženýrství\r\ninženýrštější\r\ninženýrův\r\nion\r\nionexový\r\nionisování\r\nionisovaný\r\nionisovat\r\nionizace\r\nionizační\r\nionizátor\r\nionizování\r\nionizovaný\r\nionizovat\r\nionizující\r\nionosféra\r\nionosférický\r\nionský\r\niont\r\niontoforéza\r\niontoměnič\r\niontový\r\nIP\r\nIpeľ\r\nIPX\r\nIQ\r\niracionalismus\r\niracionalistický\r\niracionalita\r\niracionálnější\r\niracionální\r\nirácký\r\nIráčančin\r\nIráčanka\r\nIráčan\r\nIráčanův\r\niráčtina\r\nIrák\r\nÍráncův\r\nÍránčin\r\nÍránec\r\nÍrán\r\níránista\r\níránistčin\r\níránistka\r\níránistův\r\nÍránka\r\níránský\r\níránština\r\nIRC\r\nIrča\r\nIrčin\r\nireálnější\r\nireální\r\niredentismus\r\niredentista\r\niredentistčin\r\niredentistka\r\niredentistův\r\nireflexivita\r\nireflexivní\r\nIreinová\r\nIrein\r\nIreinův\r\nirelevance\r\nirelevantnější\r\nirelevantní\r\nIrena\r\nIrenčin\r\nIrenin\r\nIrenka\r\nireversibilní\r\nireverzibilnější\r\nireverzibilní\r\niridiový\r\niridium\r\nIris\r\nirisace\r\nirisový\r\niritace\r\niritování\r\niritovaný\r\niritovat\r\niritující\r\nirizování\r\nirizovaný\r\nirizovat\r\nIrka\r\nIrma\r\nIrmiččin\r\nIrmička\r\nIrmin\r\niron\r\nironický\r\nironiččin\r\nironička\r\nironičtější\r\nironie\r\nironik\r\nironikův\r\nironismus\r\nironisování\r\nironisovaný\r\nironisovat\r\nironizování\r\nironizovaný\r\nironizovat\r\nironizující\r\nIr\r\nirreflexivní\r\nIrsko\r\nirský\r\nirština\r\nIrův\r\nIsaac\r\nIsaacův\r\nIsabela\r\nIsabelin\r\nISBN\r\nISDN\r\nischemický\r\nischemie\r\nischiadický\r\nischias\r\nischiatický\r\nIslamabad\r\nislamabadský\r\nislám\r\nislamista\r\nislamistčin\r\nislamistka\r\nislamistův\r\nislamizace\r\nislamizující\r\nislámský\r\nIslanďančin\r\nIslanďanka\r\nIslanďan\r\nIslanďanův\r\nIsland\r\nislandský\r\nislandština\r\nismus\r\nISO\r\nisobara\r\nisobutan\r\nisobutyrát\r\nisofota\r\nisogenní\r\nisogonální\r\nisochronie\r\nisochronismus\r\nisochronní\r\nisolace\r\nisolátor\r\nisoleucin\r\nisolování\r\nisolovaný\r\nisolovat\r\nisolovávání\r\nisolovávaný\r\nisolovávat\r\nisomalt\r\nisomerie\r\nisomerizovaný\r\nisometrický\r\nisometričtější\r\nisometrie\r\nisomorfismus\r\nisomorfní\r\nisopropylnatý\r\nisothiokynatan\r\nisotonický\r\nisotoničtější\r\nisotop\r\nisotopický\r\nisotopie\r\nisotopový\r\nispell\r\nISSN\r\nistambulský\r\nIstanbul\r\nIstrie\r\nistrijský\r\nItalčin\r\nitalický\r\nItálie\r\nitalistika\r\nItalka\r\nItal\r\nitalský\r\nitalštější\r\nitalština\r\nItalův\r\nitem\r\niterace\r\niterační\r\niterativní\r\niterátor\r\niterování\r\niterovaný\r\niterovat\r\niterovávat\r\nithacký\r\nIthaka\r\nitinerář\r\nITL\r\nITU\r\nIuvavský\r\nIV\r\nIvana\r\nIvančice\r\nIvančicko\r\nivančický\r\nIvančin\r\nIvaničová\r\nIvanič\r\nIvaničův\r\nIvanin\r\nIvanka\r\nIvanová\r\nIvanovice\r\nivanovický\r\nIvanovičová\r\nIvanovič\r\nIvanovičův\r\nIvanovová\r\nIvanov\r\nIvanovův\r\nIvan\r\nIvanův\r\nIva\r\nIvčin\r\nIveta\r\nIvetčin\r\nIvetin\r\nIvetka\r\nIvin\r\nIvka\r\nIvona\r\nIvončin\r\nIvonin\r\nIvonka\r\nIvo\r\nIvův\r\nIX\r\nIzabela\r\nIzabelin\r\nIzaiáš\r\nIzaiášův\r\nIzák\r\nIzákův\r\nIzmir\r\nizoamylacetát\r\nizobara\r\nizobarický\r\nizobaričtější\r\nizocitrát\r\nizočára\r\nizoelektrický\r\nizoelektričtější\r\nizoelektronický\r\nizoelektroničtější\r\nizogenní\r\nizoglosa\r\nizoglukóza\r\nizogonální\r\nizochorický\r\nizochronní\r\nizolace\r\nizolacionalismus\r\nizolacionismus\r\nizolacionista\r\nizolacionistčin\r\nizolacionistický\r\nizolacionistka\r\nizolacionistův\r\nizolačka\r\nizolační\r\nizolant\r\nizolatér\r\nizolatérství\r\nizolatérův\r\nizolát\r\nizolátor\r\nizolátorový\r\nIzolda\r\nizolinie\r\nizolovanější\r\nizolování\r\nizolovaný\r\nizolovat\r\nizolovávání\r\nizolovávaný\r\nizolovávat\r\nizolující\r\nizomerace\r\nizomer\r\nizomerie\r\nizometrie\r\nizomorfismus\r\nizomorfní\r\nizostatický\r\nizostatičtější\r\nizoterma\r\nizotermický\r\nizotermičtější\r\nizotonní\r\nizotop\r\nizotopický\r\nizotopie\r\nizotopový\r\nizotropní\r\nizovalerinový\r\nIzraelcův\r\nIzraelčin\r\nIzraelec\r\nizraelita\r\nizraelitův\r\nIzraelka\r\nizraelský\r\nIzrael\r\nizraelštější\r\njá\r\nJabkenice\r\njabkenický\r\njablečnan\r\njablečný\r\njablíčko\r\njablko\r\njablkovice\r\njablkovitý\r\njablkový\r\nJablonecko\r\njablonecký\r\njablonecký\r\nJablonec\r\njablonenský\r\njabloňka\r\nJablonná\r\nJabloňov\r\njabloňovský\r\njabloňový\r\nJablonský\r\njabloň\r\nJablůnka\r\njablůnka\r\njablůňka\r\nJablunkov\r\nJablunkovsko\r\njablunkovský\r\njablunkovský\r\njacíkoli\r\njacíkoliv\r\njacípak\r\njacís\r\njacísi\r\njackpot\r\nJack\r\nJackův\r\nJacquard\r\njacquardský\r\nJacquardův\r\nJacquelina\r\nJacqueline\r\nJacquelinin\r\nJacques\r\nJacquesův\r\njačí\r\nJáčová\r\nJáč\r\nJáčův\r\njadeit\r\njadeitový\r\njader\r\njadérko\r\njaderník\r\njaderný\r\njaderský\r\nJadran\r\njadranský\r\njadrnější\r\nJadrný\r\njadrný\r\njádro\r\njádrovací\r\njádrování\r\njádrovaný\r\njádrovat\r\njádrovina\r\njádrový\r\njádřincový\r\njadřinec\r\njádřinec\r\njadýrko\r\nJaffa\r\nJagellonský\r\nJagellovec\r\njagelonský\r\nJägerová\r\nJäger\r\nJägerův\r\nJagger\r\nJaggerův\r\nJágrová\r\nJágr\r\nJágrův\r\njaguár\r\njaguárův\r\njahel\r\njahelčin\r\nJahelek\r\njahelka\r\nJahelková\r\nJahelkův\r\njahelník\r\njahelný\r\njáhen\r\njáhenský\r\njáhenství\r\njáhla\r\njáhlový\r\njáhna\r\njáhne\r\njáhnech\r\njáhnem\r\njáhni\r\nJahnová\r\njáhnové\r\njáhnovi\r\nJahn\r\njáhnu\r\njáhnů\r\njáhnům\r\nJahnův\r\njáhnův\r\njáhny\r\nJahoda\r\njahoda\r\njahodí\r\njahodiní\r\nJahodníček\r\nJahodníčková\r\nJahodníčkův\r\njahodník\r\njahodníkový\r\nJahodová\r\nJahodov\r\njahodovský\r\njahodový\r\nJahodův\r\njahůdka\r\nJahve\r\nJahveho\r\nJahvem\r\nJahvemu\r\njachetní\r\njacht\r\njachtařčin\r\njachtařka\r\njachtařský\r\njachtařství\r\njachtař\r\njachtařův\r\njachta\r\njachting\r\njachtink\r\nJáchymov\r\nJáchymovsko\r\njáchymovský\r\nJáchym\r\nJáchymův\r\njaj\r\njajaj\r\njak\r\njakákoli\r\njakákoliv\r\nJakalová\r\nJakal\r\nJakalův\r\njakápak\r\nJakarta\r\nJakartovice\r\njakartovický\r\njakartský\r\njakás\r\njakási\r\njakáž\r\njakby\r\njakbysmet\r\njakéhokoli\r\njakéhokoliv\r\njakéhopak\r\njakéhos\r\njakéhosi\r\njakékoli\r\njakékoliv\r\njakémkoli\r\njakémkoliv\r\njakémpak\r\njakéms\r\njakémsi\r\njakémukoli\r\njakémukoliv\r\njakémupak\r\njakémus\r\njakémusi\r\njaképak\r\njakés\r\njakési\r\nJakešová\r\nJakeš\r\nJakešův\r\njakkoli\r\njakkoliv\r\nJaklová\r\nJáklová\r\nJakl\r\nJákl\r\nJaklův\r\nJáklův\r\njakmile\r\njako\r\njakobián\r\njakobín\r\njakobín\r\njakobínský\r\njakobínův\r\nJákob\r\nJákobův\r\njakoby\r\njakost\r\njakostnější\r\njakostní\r\njakou\r\nJakoubek\r\nJakoubková\r\nJakoubkův\r\njakoukoli\r\njakoukoliv\r\njakoupak\r\njakous\r\njakousi\r\njakový\r\njakož\r\njakože\r\njakožto\r\njakpak\r\njak\r\nJakrle\r\nJakrlová\r\nJakrlův\r\njaksepatří\r\nJakschová\r\nJaksch\r\nJakschův\r\njaksi\r\nJakše\r\nJakšem\r\nJakši\r\nJakších\r\nJakšová\r\nJakšové\r\nJakšovi\r\nJakšů\r\nJakšům\r\nJakš\r\nJakšův\r\njaktěživ\r\njaktěživo\r\nJakubcová\r\nJakubcův\r\nJakubčin\r\nJakubčovice\r\njakubčovický\r\nJakubec\r\nJakůbek\r\nJakubíček\r\nJakubíčková\r\nJakubíčkův\r\nJakubíková\r\nJakubík\r\nJakubíkův\r\nJakubisko\r\nJakubiskův\r\nJakubka\r\nJakůbková\r\nJakůbkův\r\nJakubová\r\nJakubovová\r\nJakubov\r\nJakubovův\r\nJakub\r\nJakubů\r\nJakubův\r\nJakutsko\r\njakutský\r\njakutština\r\njakův\r\njakýchkoli\r\njakýchkoliv\r\njakýchpak\r\njakýchs\r\njakýchsi\r\njakýkoli\r\njakýkoliv\r\njakýmakoli\r\njakýmakoliv\r\njakýmapak\r\njakýmas\r\njakýmasi\r\njakýmikoli\r\njakýmikoliv\r\njakýmipak\r\njakýmis\r\njakýmisi\r\njakýmkoli\r\njakýmkoliv\r\njakýmpak\r\njakýms\r\njakýmsi\r\njakýpak\r\njakýs\r\njakýsi\r\njaký\r\njakž\r\njakže\r\njakživ\r\njakživo\r\njakžtakž\r\njal\r\njalovcový\r\njalovčinka\r\njalovec\r\njalovější\r\njalovice\r\njalovička\r\njalovina\r\njalový\r\nJalta\r\njaltský\r\njalůvčin\r\nJalůvek\r\nJalůvka\r\njalůvka\r\nJalůvková\r\nJalůvkův\r\njam\r\njamách\r\nJamaičin\r\nJamaika\r\nJamajčančin\r\nJamajčanka\r\nJamajčan\r\nJamajčanův\r\nJamajka\r\njamajský\r\njamám\r\njáma\r\njamb\r\njambický\r\njambičtější\r\njamboree\r\nJamborová\r\nJambor\r\nJamborův\r\njambus\r\njamenský\r\nJamestown\r\nJames\r\nJamesův\r\njamka\r\njamkovací\r\njamkování\r\njamkovaný\r\njamkovat\r\njamkoviště\r\njamkový\r\nJamné\r\nJamolice\r\njamolický\r\njamovat\r\njámový\r\njamský\r\nJAMU\r\njamující\r\njánabráchismus\r\nJanáček\r\nJanáčková\r\njanáčkovský\r\nJanáčkův\r\nJanáková\r\nJanák\r\nJanákův\r\nJanásová\r\nJanás\r\nJanásův\r\nJanata\r\nJanatová\r\nJanatův\r\nJana\r\nJancurová\r\nJancur\r\nJancurův\r\nJančáková\r\nJančák\r\nJančákův\r\nJančárek\r\nJančárková\r\nJančárkův\r\nJančarová\r\nJančárová\r\nJančar\r\nJančár\r\nJančarův\r\nJančárův\r\nJančaříková\r\nJančařík\r\nJančaříkův\r\njančení\r\nJančíková\r\nJančík\r\nJančíkův\r\nJánčin\r\njančit\r\nJančová\r\nJanč\r\nJančův\r\nJandáček\r\nJandáčková\r\nJandáčkův\r\nJandáková\r\nJandák\r\nJandákův\r\nJanda\r\nJandera\r\nJanderová\r\nJanderův\r\nJandíková\r\nJandík\r\nJandíkův\r\nJandlová\r\nJandl\r\nJandlův\r\nJandora\r\nJandorová\r\nJandorův\r\nJandourek\r\nJanďourek\r\nJandourková\r\nJanďourková\r\nJandourkův\r\nJanďourkův\r\nJandová\r\nJandův\r\nJaneba\r\nJanebová\r\nJanebův\r\nJanecký\r\nJaneček\r\nJanečka\r\nJanečková\r\nJanečkův\r\nJaneiro\r\njanek\r\nJanek\r\nJanglová\r\nJangl\r\nJanglův\r\nJaniččin\r\nJaníček\r\nJanička\r\nJaníčková\r\nJaníčkův\r\nJaníková\r\nJaník\r\nJaníkův\r\nJaninčin\r\nJaninka\r\nJanin\r\nJánka\r\nJanko\r\njankovat\r\njankovatět\r\nJanková\r\nJankovcová\r\nJankovcův\r\nJankovec\r\nJankovice\r\njankovický\r\njankovitější\r\njankovitý\r\nJankov\r\nJankovský\r\njankovský\r\nJanků\r\nJankův\r\njankův\r\njánošíkovský\r\njánošíkovštější\r\nJánošík\r\nJánošíkův\r\nJanota\r\nJanotová\r\nJanotův\r\nJanouchová\r\nJanouch\r\nJanouchův\r\nJanoušek\r\nJanoušková\r\nJanouškovcová\r\nJanouškovcův\r\nJanouškovec\r\nJanouškův\r\nJanoušová\r\nJanoušov\r\njanoušovský\r\nJanouš\r\nJanoušův\r\nJanoutová\r\nJanout\r\nJanoutův\r\nJanová\r\nJanovcová\r\njanovcový\r\nJanovcův\r\nJanovčin\r\njanovec\r\nJanovec\r\nJanovice\r\njanovický\r\nJanovka\r\nJanov\r\nJanovský\r\njanovský\r\nJan\r\nJansa\r\njansenismus\r\njansenista\r\njansenistčin\r\njansenistický\r\njansenističtější\r\njansenistka\r\njansenistův\r\nJanská\r\nJanský\r\nJánský\r\nJansová\r\nJansův\r\nJantáková\r\nJanták\r\nJantákův\r\njantar\r\njantarový\r\nJäntschová\r\nJäntsch\r\nJäntschův\r\nJanů\r\nJanusová\r\njanusový\r\nJanus\r\nJanusův\r\nJanův\r\nJanžura\r\nJanžurová\r\nJanžurův\r\njapan\r\njapanista\r\njapanistčin\r\njapanističin\r\njapanistika\r\njapanistka\r\njapanistův\r\njapanologie\r\nJaponcův\r\nJapončin\r\nJaponec\r\nJaponka\r\nJaponsko\r\njaponský\r\njaponštější\r\njaponština\r\nJAR\r\nJára\r\nJarcová\r\njarcovský\r\nJarča\r\nJarčin\r\nJarda\r\nJardův\r\nJarešová\r\nJareš\r\nJarešův\r\nJarka\r\nJarka\r\njarka\r\nJarkovský\r\nJarkův\r\nJarlochův\r\njarmarečnější\r\njarmarečník\r\njarmarečníkův\r\njarmareční\r\njarmarečný\r\njarmark\r\nJarmarová\r\nJarmar\r\nJarmarův\r\nJarmila\r\nJarmilčin\r\nJarmilin\r\nJarmilka\r\nJarmil\r\nJarmilův\r\njarmulka\r\njarnější\r\nJarníková\r\nJarník\r\nJarníkův\r\njarní\r\nJarolímek\r\nJarolímková\r\nJarolímkův\r\nJarolímová\r\nJarolím\r\nJarolímův\r\nJaroměřice\r\njaroměřický\r\nJaroměřský\r\njaroměřský\r\nJaroměř\r\nJaromír\r\nJaromírův\r\njaro\r\nJaroslava\r\nJaroslavice\r\njaroslavický\r\nJaroslavin\r\nJaroslav\r\nJaroslavův\r\nJarošová\r\nJarošov\r\nJarošovský\r\njarošovský\r\nJaroš\r\nJarošův\r\njarovizace\r\njarovizování\r\njarovizovaný\r\njarovizovat\r\nJarov\r\njarovský\r\nJaruška\r\nJarušková\r\nJaruškův\r\nJárův\r\nJarý\r\njarý\r\nJařabová\r\nJařab\r\nJařabův\r\njařejší\r\njařina\r\njářku\r\njařmatkovitý\r\njařmo\r\njařmový\r\njař\r\njásající\r\njasan\r\njásání\r\njasanový\r\nJasanský\r\nJasa\r\njásat\r\njásávání\r\njásávat\r\njásavější\r\njásavý\r\njasenenský\r\njasénka\r\nJasenná\r\njas\r\nJaslovský\r\njasmín\r\njasmínový\r\njasnější\r\njasnění\r\njasnovidcův\r\njasnovidčin\r\njasnovidecký\r\njasnovidectví\r\njasnovidec\r\njasnovidečtější\r\njasnovidka\r\njasnovidný\r\njasnozření\r\njasnozřivější\r\njasnozřivý\r\nJasný\r\njasný\r\njasoň\r\njásot\r\nJasová\r\njasový\r\njaspis\r\njaspisový\r\njáství\r\nJasův\r\nJászberény\r\nJašek\r\nJašková\r\nJaškův\r\njatečný\r\njatější\r\njater\r\njaternice\r\njaternicový\r\njaternička\r\njaterník\r\njaterní\r\njatka\r\njatky\r\njat\r\njátra\r\njátrech\r\njátrovka\r\njátrový\r\njatýrka\r\njatý\r\nJavánec\r\njavánský\r\njavánština\r\nJava\r\nJáva\r\njavor\r\nJavorin\r\nJavornický\r\nJavorník\r\nJavorníky\r\njavorový\r\nJavorský\r\njavorský\r\nJavořický\r\njávský\r\njávština\r\nJavůrek\r\nJavůrková\r\nJavůrkův\r\njazýček\r\njazýčkovitý\r\njazýčkový\r\njazyčný\r\njazykářčin\r\njazykářka\r\njazykář\r\njazykářův\r\njazyk\r\njazykolam\r\njazykověda\r\njazykovědcův\r\njazykovědec\r\njazykovědný\r\njazykovější\r\njazykový\r\njazykozpytcův\r\njazykozpytec\r\njazykozpyt\r\njazylka\r\njazylkový\r\njazz\r\njazzman\r\njazzmanův\r\njazzmen\r\njazzmenův\r\njazzovější\r\njazzový\r\njazzrock\r\njazzrockový\r\njazzující\r\nJČMF\r\nJČU\r\njda\r\njdoucí\r\njdu\r\nje\r\njé\r\njeans\r\nJebavý\r\nječení\r\nječený\r\nječet\r\nječící\r\nječivější\r\nječivý\r\njéčko\r\nječmenářský\r\nječmenka\r\nječmen\r\nJečmínek\r\nJečmínková\r\nječmínkový\r\nJečmínkův\r\nječný\r\njedelský\r\njedenáctero\r\njedenácteronásobný\r\njedenáctery\r\njedenácterý\r\njedenáct\r\njedenáctibodový\r\njedenáctibodový\r\njedenáctibrankový\r\njedenáctice\r\njedenáctičlenný\r\njedenáctidenní\r\njedenáctihodinový\r\njedenáctikilogramový\r\njedenáctikilometrový\r\njedenáctikilový\r\njedenáctikolový\r\njedenáctiletka\r\njedenáctiletý\r\njedenáctilitrový\r\njedenáctiměsíční\r\njedenáctimetrový\r\njedenáctimiliardový\r\njedenáctimilimetrový\r\njedenáctimilionový\r\njedenáctimiliónový\r\njedenáctiminutový\r\njedenáctinásobný\r\njedenáctina\r\njedenáctipatrový\r\njedenáctiposchoďový\r\njedenáctiroční\r\njedenáctisekundový\r\njedenáctisemestrový\r\njedenáctista\r\njedenáctistčin\r\njedenáctistka\r\njedenáctistránkový\r\njedenáctistupňový\r\njedenáctistův\r\njedenáctisvazkový\r\njedenáctitisícový\r\njedenáctitunový\r\njedenáctitýdenní\r\njedenáctivteřinový\r\njedenáctka\r\njedenáctkový\r\njedenáctkrát\r\njedenáctkráte\r\njedenáctý\r\njedenačtyřicátý\r\njedenadvacátý\r\njedenadvacetiletý\r\njedenapůldenní\r\njedenapůlhodinový\r\njedenapůlkilometrový\r\njedenapůllitrový\r\njedenapůlměsíční\r\njedenapůlmetrový\r\njedenapůlminutový\r\njedenapůlroční\r\njedenapůltýdenní\r\njedenašedesátiletý\r\njedení\r\njedenkrát\r\njedenkráte\r\njeden\r\njedený\r\njed\r\njedináček\r\njedináčkovský\r\njedináčkovství\r\njedináčkův\r\njedincův\r\njedině\r\njedinec\r\njedinečnější\r\njedinečný\r\njedinkrát\r\njedinkráte\r\njedinký\r\njedinost\r\njediný\r\nJedlá\r\njedlejší\r\njedle\r\nJedlička\r\njedlička\r\nJedličková\r\nJedličkův\r\njedlík\r\njedlíkův\r\nJedlinský\r\nJedlová\r\njedlovější\r\njedlovský\r\njedlový\r\njedlý\r\njednací\r\njednadvacetikilometrový\r\njednadvacetitunový\r\njednající\r\njednak\r\njedna\r\njednanější\r\njednání\r\njednáno\r\njednaný\r\njednapadesátimiliónový\r\njednatelčin\r\njednatelka\r\njednatelský\r\njednatelství\r\njednatel\r\njednatelův\r\njednat\r\njednatřicetibodový\r\njednávající\r\njednávání\r\njednávat\r\njedněch\r\njedněmi\r\njedněm\r\njedné\r\njedni\r\njednice\r\njednicový\r\njedničkářčin\r\njedničkářka\r\njedničkář\r\njedničkářův\r\njednička\r\njedničkový\r\njedním\r\njedni\r\njednina\r\njednoaktovka\r\njednoaktový\r\njednoatomový\r\njednoatributový\r\njednobajtový\r\njednobarevnější\r\njednobarevný\r\njednobitový\r\njednobodový\r\njednobodový\r\njednobodový\r\njednobožství\r\njednobrankový\r\njednobuněčný\r\njednocení\r\njednocestný\r\njednociferný\r\njednočárkovaný\r\njednočinný\r\njednočipový\r\njednočlenný\r\njednočočkový\r\njednoděložný\r\njednodenní\r\njednodesetibytový\r\njednodeskový\r\njednodílný\r\njednodisketový\r\njednodolarový\r\njednodomý\r\njednodrátový\r\njednodříkový\r\njednoduchoučký\r\njednoduchý\r\njednoduchý\r\njednodušeji\r\njednodušší\r\njednodveřový\r\njednoetážový\r\njednofázový\r\njednogólový\r\njednohlas\r\njednohlasný\r\njednohlasý\r\njednohlavňový\r\njednohlavový\r\njednohlavý\r\njednohodinový\r\njednoho\r\njednohrbý\r\njednohřídelový\r\njednohubicový\r\njednohubka\r\njednohvězdičkový\r\njednojazyčný\r\njednojehlový\r\njednokanálový\r\njednokarburátorový\r\njednokilogramový\r\njednokilometrový\r\njednoklonný\r\njednokmitočtový\r\njednokolejka\r\njednokolejný\r\njednokolejový\r\njednokolový\r\njednokomorový\r\njednokorunový\r\njednokotoučový\r\njednokrokový\r\njednokřídlový\r\njednokusový\r\njednolampový\r\njednolanový\r\njednoletý\r\njednolitější\r\njednolitrový\r\njednolitý\r\njednolodní\r\njednolůžko\r\njednolůžkový\r\njednomandátový\r\njednomarkový\r\njednomegabajtový\r\njednoměsíční\r\njednometrový\r\njednomiliardový\r\njednomilimetrový\r\njednomilionový\r\njednominutový\r\njednomístný\r\njednom\r\njednomocný\r\njednomotorový\r\njednomu\r\njednomužný\r\njednomyslnější\r\njednomyslný\r\njedno\r\njednonápravový\r\njednonásobek\r\njednonásobný\r\njednonohý\r\njednooborový\r\njednookruhový\r\njednooký\r\njednooperační\r\njednootvorový\r\njednopalcový\r\njednopalubní\r\njednopalubový\r\njednopásmový\r\njednopásový\r\njednopaticový\r\njednopatrový\r\njednopísmenný\r\njednopísmenový\r\njednoplášťový\r\njednoplatový\r\njednoplošník\r\njednopodlažní\r\njednopokojový\r\njednopólový\r\njednoposchoďový\r\njednopostel\r\njednoprocentní\r\njednoprocesní\r\njednoprocesorový\r\njednoprogramový\r\njednoprostorový\r\njednoprostorový\r\njednoproudový\r\njednoprstý\r\njednoprůchodový\r\njednoprvkový\r\njednoramenný\r\njednoranový\r\njednorázovější\r\njednorázový\r\njednoroček\r\njednoročkův\r\njednoroční\r\njednoroční\r\njednorohý\r\njednorozený\r\njednorozměrný\r\njednorožcův\r\njednorožec\r\njednoruč\r\njednoruký\r\njednořádkový\r\njednořadový\r\njednořadý\r\njednosedadlový\r\njednosektorový\r\njednosekundový\r\njednosemestrový\r\njednoslabičný\r\njednoslovný\r\njednosložkový\r\njednosměnný\r\njednosměnný\r\njednosměrný\r\njednosměrový\r\njednosnímkový\r\njednostavový\r\njednostejný\r\njednostěžňový\r\njednostojanový\r\njednostolový\r\njednostopý\r\njednostránkový\r\njednostrannější\r\njednostranný\r\njednostrunný\r\njednostupňový\r\njednosvazkový\r\njednosystémový\r\njednosytný\r\njednošnekový\r\njednota\r\njednoticí\r\njednotící\r\njednotit\r\njednotka\r\njednotkový\r\njednotlivcův\r\njednotlivec\r\njednotlivina\r\njednotlivý\r\njednotnější\r\njednotný\r\njednotraktový\r\njednotřídka\r\njednotřídní\r\njednotunový\r\njednotvárnější\r\njednotvárný\r\njednotýdenní\r\njednou\r\njednoúčelový\r\njednoúlohový\r\njednou\r\njednoúrovňový\r\njednouživatelský\r\njednovaječný\r\njednoválcový\r\njednoválec\r\njednovariantní\r\njednovidový\r\njednovidý\r\njednovousý\r\njednovrcholový\r\njednovrstvový\r\njednovrstvý\r\njednovýznamový\r\njednozdvižný\r\njednoznačnější\r\njednoznačný\r\njednoznakový\r\njednozvučný\r\njednoženství\r\njednu\r\njednuščin\r\njednuška\r\njedny\r\njedoucí\r\nJedousov\r\njedousovský\r\njedovatější\r\njedovatý\r\njedovější\r\njedovka\r\nJedovnice\r\nJedovnice\r\njedovnický\r\njedový\r\njedu\r\njeduplný\r\njeduprostý\r\njedvaže\r\nJefferson\r\nJeffersonův\r\njeffersonův\r\njégrovka\r\njeh\r\njehelníček\r\njehelník\r\njehlancovitý\r\njehlancový\r\njehlan\r\njehlanovitý\r\njehlanový\r\njehla\r\njehlice\r\njehlicovitý\r\njehlicový\r\njehličí\r\nJehlička\r\njehlička\r\nJehličková\r\njehličkový\r\nJehličkův\r\njehličnan\r\njehličnatý\r\njehlovací\r\njehlování\r\njehlovaný\r\njehlovat\r\njehlovitý\r\njehlovka\r\njehlový\r\njehňátko\r\njehněcí\r\njehněčinka\r\njehněčí\r\njehněda\r\njehně\r\njehnička\r\njeho\r\nJehova\r\njehovista\r\njehovistčin\r\njehovistka\r\njehovistův\r\nJehovův\r\njehož\r\nJecha\r\nJechová\r\nJech\r\nJechův\r\njej\r\njejda\r\njeje\r\njéje\r\njejej\r\njejeje\r\njejíhož\r\njejich\r\njejichž\r\njejíchž\r\njejímaž\r\njejímiž\r\njejímuž\r\njejímž\r\njejí\r\njejíž\r\njejž\r\nJekaterinburg\r\nJekatěrinoslav\r\njek\r\nJekor\r\njekorový\r\njekot\r\njektající\r\njektání\r\njektaný\r\njektat\r\njektavý\r\njekyllovský\r\nJelcin\r\nJelcinův\r\njelcův\r\njelec\r\njelencův\r\nJelenčin\r\njelenec\r\njelenice\r\njelenicový\r\njelení\r\nJelenka\r\nJelenová\r\njelenovitý\r\njelen\r\nJelen\r\nJelenův\r\njelenův\r\nJelgava\r\njelikož\r\njelimánek\r\njelimánkův\r\njelínek\r\nJelínek\r\nJelínková\r\nJelínkův\r\njelínkův\r\njelítko\r\njelito\r\njelitový\r\njel\r\nJemelek\r\nJemelková\r\nJemelkův\r\nJemencův\r\nJemenčin\r\nJemenec\r\nJemen\r\nJemenka\r\njemenský\r\njemin\r\njémin\r\njemnější\r\njemnění\r\njemněný\r\njemnět\r\nJemnice\r\nJemniště\r\njemnišťský\r\njemnocit\r\njemnocitnější\r\njemnocitný\r\njemnosrstý\r\njemňoučký\r\njemňounký\r\njemnovlnný\r\njemnozrnnější\r\njemnozrnný\r\njemnožebrový\r\njemnůstka\r\njemný\r\njemu\r\njemuž\r\njen\r\nJena\r\nJenčíková\r\nJenčík\r\nJenčíkův\r\nJenčo\r\nJenčová\r\nJenčův\r\nJenda\r\nJendův\r\njenerálka\r\njenever\r\njen\r\nJeníček\r\nJeníčková\r\nJeníčkův\r\nJeníková\r\nJeníkovice\r\njeníkovický\r\nJeníkov\r\njeníkovský\r\nJeník\r\nJeníkův\r\nJenisej\r\njenisejský\r\njení\r\nJenišovice\r\njenišovický\r\nJenišov\r\njenišovský\r\nJeništa\r\nJeništová\r\nJeništův\r\njenjen\r\nJenkins\r\nJenkinsův\r\nJenky\r\njen\r\njenom\r\njenom\r\njenomže\r\njenotkový\r\nJenovéfa\r\nJenovéfin\r\nJensen\r\nJensenův\r\njenský\r\nJenšíová\r\nJenší\r\nJenšíův\r\nJenštejn\r\njenštejnský\r\nJenůfčin\r\nJenůfka\r\njenž\r\njenže\r\njepice\r\njepičí\r\njeptiška\r\nJeremiáš\r\nJeremiášův\r\nJeremová\r\nJerem\r\nJeremův\r\nJerevan\r\njerevanský\r\njer\r\nJericho\r\nJeriová\r\nJeri\r\njerišský\r\nJeriův\r\nJerjeová\r\nJerje\r\nJerjeův\r\nJeromeová\r\nJerome\r\nJeromeův\r\nJeroným\r\nJeronýmův\r\njerový\r\nJersáková\r\nJersák\r\nJersákův\r\nJersey\r\nJersín\r\njersínský\r\nJerusalem\r\nJerusalém\r\njerusalémský\r\nJeruzalém\r\njeruzalémský\r\njeruzalémský\r\njeř\r\njeřábek\r\nJeřábek\r\njeřáb\r\njeřabina\r\njeřabinka\r\njeřabinový\r\nJeřábková\r\nJeřábkův\r\njeřábkův\r\njeřábnice\r\njeřábnický\r\njeřábničin\r\njeřábník\r\njeřábníkův\r\njeřábový\r\njeřábův\r\njeřík\r\nJeřišno\r\njesencovitý\r\njesenecký\r\nJesenec\r\nJesenice\r\nJesenicko\r\njesenický\r\nJeseníkách\r\nJeseník\r\njesenní\r\nJesenský\r\njeseň\r\njeseterovitý\r\njeseter\r\njeseterův\r\njeseteří\r\njeskyně\r\njeskyňka\r\njeskynní\r\njeskyňovitý\r\njesle\r\njesličkový\r\njesličky\r\njeslový\r\njespák\r\njespákův\r\nJessie\r\nJessiin\r\njest\r\njestli\r\njestlipak\r\njestliže\r\njestřábí\r\njestřábník\r\njestřáb\r\njestřábův\r\nješita\r\nješitnější\r\nješitný\r\nješitův\r\nještě\r\nJeštěd\r\nještědský\r\nještěrčin\r\nještěrčí\r\nještěrka\r\nještěrovitý\r\nještěr\r\nještěrův\r\nještěřička\r\nještěří\r\nještěže\r\njetější\r\njetelíček\r\njetelinka\r\njetelotravina\r\njetelovina\r\njetelový\r\njetel\r\nJetenský\r\nJetětice\r\njetětický\r\njet\r\njetí\r\nJetřichovice\r\njetřichovický\r\nJetřichov\r\njetřichovský\r\njetýlek\r\njetý\r\njevení\r\njevený\r\njev\r\njevící\r\nJevíčko\r\njevíčský\r\nJeviněves\r\njeviněveský\r\nJevišovice\r\nJevišovka\r\njeviště\r\njevištní\r\njevit\r\njevovější\r\njevový\r\nJevšniková\r\nJevšnik\r\nJevšnikův\r\njezdcový\r\njezdcův\r\njezdecký\r\njezdectví\r\njezdectvo\r\njezdec\r\njezdečtější\r\njezdění\r\njezděný\r\njezdící\r\njezdit\r\njezdívání\r\njezdívat\r\njezdkyně\r\njezdkynin\r\njezernatý\r\njezerní\r\njezero\r\njezevcův\r\njezevče\r\njezevčíček\r\njezevčíčkův\r\njezevčík\r\njezevčíkův\r\njezevčí\r\njezevec\r\njez\r\njezích\r\njezinka\r\njezírko\r\njezový\r\njezuita\r\njezuitský\r\njezuitství\r\njezuitův\r\nJezulátko\r\njež\r\nježatější\r\nježatka\r\nježatý\r\nježčí\r\nježdění\r\nježdík\r\nježdíkův\r\nježeček\r\nježečkův\r\nježek\r\nJežek\r\nJežená\r\nježení\r\nježenský\r\nježený\r\nježibaba\r\nježibabí\r\nježící\r\nJežíšek\r\nJežíškův\r\nježíšmarjá\r\nJežíš\r\nJežíšův\r\nježit\r\nJežková\r\nježkový\r\nJežkův\r\nježkův\r\nJežová\r\nježovka\r\nJežov\r\nježovský\r\nježto\r\nJež\r\nJežův\r\njho\r\nji\r\njí\r\nJianliová\r\nJianli\r\nJianliův\r\nJibrovice\r\njícen\r\njícnový\r\nJičíněves\r\njičíněveský\r\nJičín\r\nJičínsko\r\nJičínský\r\njičínský\r\njídání\r\njídaný\r\njidášek\r\njidášský\r\njidášství\r\njidášštější\r\nJidáš\r\njidáš\r\nJidášův\r\njidášův\r\njídat\r\njídávání\r\njídávaný\r\njídávat\r\njídelna\r\njídelníček\r\njídelnička\r\njídelní\r\njidiš\r\njídlo\r\njídlonoš\r\njídlonošův\r\njih\r\nJihlava\r\nJihlávka\r\nJihlavsko\r\njihlavský\r\njihlavský\r\njihnout\r\njihnutí\r\njihoafrický\r\njihoafrický\r\njihoafričančin\r\njihoafričanka\r\njihoafričan\r\njihoafričanův\r\njihoafričtější\r\njihoamerický\r\njihoameričančin\r\njihoameričanka\r\njihoameričan\r\njihoameričanův\r\njihoameričtější\r\njihoanglický\r\njihoangličtější\r\njihobulharský\r\njihočech\r\njihočechův\r\njihočeský\r\nJihočeščin\r\nJihočeška\r\njihočínský\r\njihoevropančin\r\njihoevropanka\r\njihoevropan\r\njihoevropanův\r\njihoevropský\r\njihoevropštější\r\njihofrancouzský\r\njihokorejský\r\njihomaďarský\r\njihomexický\r\njihomoravan\r\njihomoravanův\r\njihomoravský\r\njihoněmecký\r\nJihoslovančin\r\nJihoslovanka\r\nJihoslovan\r\njihoslovanský\r\nJihoslovanův\r\njihoslovenský\r\njihosrbský\r\njihošpanělský\r\njihovýchod\r\njihovýchodnější\r\njihovýchodní\r\njihozápad\r\njihozápadnější\r\njihozápadní\r\njich\r\nJícha\r\njícha\r\nJíchová\r\nJíchův\r\njichž\r\njikernaččin\r\njikernačka\r\njikernáč\r\njikernáčův\r\njikernatý\r\njikra\r\njikrnačka\r\njikrnáč\r\njikrnáčův\r\njikrnatý\r\njílec\r\nJílek\r\njílek\r\nJilemnice\r\nJilemnický\r\njilemnický\r\njíl\r\nJiljí\r\nJílková\r\nJílkův\r\njilm\r\njilmovější\r\njilmový\r\njílopísek\r\njílovcový\r\njílovec\r\nJílové\r\nJílovice\r\njílovický\r\njíloviště\r\njílovitý\r\njílovka\r\njílovský\r\njílový\r\njim\r\njím\r\njímací\r\njímající\r\njímání\r\njímaný\r\njímat\r\njímavější\r\njímavý\r\nJimblatová\r\nJimblat\r\nJimblatův\r\njimi\r\njimiž\r\njímka\r\njímkový\r\nJimlín\r\njimlínský\r\nJimramov\r\njimramovský\r\njimž\r\njímž\r\njinačejší\r\nJinačovice\r\njinačovický\r\njináč\r\njinak\r\njinak\r\njinaký\r\njinam\r\njinan\r\nJína\r\njinde\r\nJindra\r\nJindra\r\nJindrová\r\nJindrův\r\nJindřichohradecko\r\njindřichohradecký\r\nJindřichová\r\nJindřichovice\r\njindřichovický\r\nJindřichov\r\njindřichovský\r\nJindřich\r\nJindřichův\r\nJindřin\r\nJindřiščin\r\nJindřiška\r\njindy\r\nJíně\r\nJinín\r\njinínský\r\njíní\r\njinišovický\r\njinobarevný\r\nJinochová\r\njinoch\r\nJinoch\r\nJinochův\r\njinochův\r\njinojazyčný\r\nJinolice\r\njinolický\r\njinonárodnější\r\njinonárodní\r\nJinonice\r\njinonický\r\nJinošov\r\njinošovský\r\njinošský\r\njinošství\r\njinotajný\r\njinotaj\r\njinovatka\r\nJínová\r\nJíňová\r\njinověrcův\r\njinověrčin\r\njinověrec\r\njinověrka\r\njinověrný\r\njinší\r\njinudy\r\nJínův\r\nJíňův\r\njiný\r\njiný\r\nJiráček\r\nJiráčková\r\nJiráčkův\r\nJiráková\r\nJirák\r\nJirákův\r\nJiránek\r\nJiránková\r\nJiránkův\r\nJiranová\r\nJiran\r\nJiranův\r\nJíra\r\nJirásek\r\nJirásková\r\nJiráskův\r\nJiravová\r\nJirav\r\nJiravův\r\nJirčáková\r\nJirčák\r\nJirčákův\r\nJirešová\r\nJireš\r\nJirešův\r\njirchárna\r\njircha\r\nJirkalová\r\nJirkal\r\nJirkalův\r\nJirka\r\nJirka\r\nJirková\r\nJirkov\r\nJirkovský\r\njirkovský\r\nJirků\r\nJirkův\r\nJirmannová\r\nJirmann\r\nJirmannův\r\nJirmanová\r\nJirman\r\nJirmanův\r\nJirmusová\r\nJirmus\r\nJirmusův\r\nJirošová\r\nJiroš\r\nJirošův\r\nJirotka\r\nJirotková\r\nJirotkův\r\nJirousek\r\nJirousková\r\nJirouskův\r\nJirousová\r\nJirous\r\nJirousův\r\nJiroušek\r\nJiroušková\r\nJirouškův\r\nJiroušová\r\nJirouš\r\nJiroušův\r\nJiroutová\r\nJirout\r\nJiroutův\r\nJírová\r\njírovec\r\nJírovský\r\nJirowetzová\r\nJirowetz\r\nJirowetzův\r\nJirsáková\r\nJirsák\r\nJirsákův\r\nJirsa\r\nJirsová\r\nJirsův\r\nJirušek\r\nJirušková\r\nJiruškův\r\nJirůtek\r\nJirůtková\r\nJirůtkův\r\nJírův\r\nJiřčin\r\nJiřetín\r\njiřetínský\r\nJiřice\r\njiřický\r\nJiříček\r\nJiřička\r\njiřička\r\nJiřičková\r\nJiříčková\r\nJiřičkův\r\nJiříčkův\r\nJiříková\r\nJiříkovice\r\njiříkovický\r\nJiříkov\r\nJiřikovský\r\nJiříkovský\r\njiříkovský\r\nJiřík\r\nJiřík\r\nJiříkův\r\nJiřina\r\njiřina\r\nJiřinin\r\njiřinka\r\njiřinkový\r\njiřinový\r\nJiří\r\nJiřka\r\nJiřský\r\njiskérečka\r\njiskérka\r\nJiskra\r\njiskra\r\njiskrnější\r\njiskrný\r\nJiskrová\r\njiskrový\r\nJiskrův\r\njiskření\r\njiskřící\r\njiskřička\r\njiskřiště\r\njiskřit\r\njiskřivější\r\njiskřivý\r\njistě\r\njistější\r\njistěže\r\njisticí\r\njistící\r\njistič\r\njistina\r\njistit\r\njíst\r\njisťme\r\njisť\r\njistojistý\r\njist\r\njistota\r\njistotnější\r\njisťte\r\njistý\r\njíška\r\njíškový\r\njištěnější\r\njištění\r\njištěný\r\njíštička\r\nJitčin\r\njít\r\njití\r\nJitka\r\nJitkov\r\njitkovský\r\njitrnice\r\njitrnicový\r\njitrnička\r\njitrocelový\r\njitrocel\r\njitro\r\njitrozpěvný\r\njitření\r\njitřenka\r\njitřený\r\njitřící\r\njitřit\r\njitřivější\r\njitřivý\r\njitřní\r\nJituščin\r\nJituška\r\nJíva\r\njíva\r\njive\r\nJivina\r\nJívka\r\njívka\r\nJivno\r\nJívová\r\njívovský\r\njívový\r\nJívův\r\njizba\r\nJizbice\r\njizbický\r\njizbový\r\njízdárna\r\njízda\r\njízdenka\r\njízdenkový\r\njízdmo\r\njízdné\r\njízdní\r\njízdný\r\njízdychtivý\r\nJizera\r\njizerský\r\njízlivější\r\njízlivý\r\njizlivý\r\njizva\r\njizvení\r\njizvený\r\njizvička\r\njizvit\r\njiž\r\njíž\r\njižan\r\njižanský\r\njižanův\r\njižnější\r\njižní\r\njmelí\r\njmen\r\njménem\r\njmeniny\r\njmění\r\njmenný\r\njméno\r\njmenovací\r\njmenovanější\r\njmenování\r\njmenovaný\r\njmenovat\r\njmenovatel\r\njmenovcův\r\njmenovec\r\njmenovitý\r\njmenovka\r\njmenovkyně\r\njmenovkynin\r\njmenující\r\njmout\r\njmu\r\njmutí\r\njo\r\njó\r\njob\r\nJobová\r\njobovka\r\nJob\r\nJobův\r\njodace\r\nJodasová\r\nJodas\r\nJodasův\r\njod\r\njód\r\njodičnan\r\njodičný\r\njodid\r\njodidovaný\r\njodisol\r\njodistan\r\njodistý\r\njoditan\r\njoditý\r\njodizovaný\r\njódler\r\njódlerův\r\njódlování\r\njódlovaný\r\njódlovat\r\njódlující\r\njodmethan\r\njodobromový\r\njododusík\r\njodoform\r\njodoformový\r\njodování\r\njódovaný\r\njodovaný\r\njodovat\r\njódovat\r\njodovodík\r\njodovodíkový\r\njodový\r\njódový\r\njodurie\r\njóga\r\njoggingový\r\njoggující\r\njogín\r\njogínův\r\njogistický\r\njógový\r\njogurt\r\njogurtovač\r\njogurtový\r\nJohana\r\nJohančin\r\nJohanin\r\nJohanisová\r\nJohanis\r\nJohanisův\r\njohanita\r\njohanitův\r\nJohanka\r\nJohanna\r\nJohannesburg\r\njohannesburský\r\nJohannin\r\nJohann\r\nJohannův\r\nJohnová\r\nJohn\r\nJohnsonová\r\nJohnson\r\nJohnsonův\r\nJohnův\r\nJohová\r\nJoh\r\nJohův\r\nJochová\r\nJoch\r\nJochův\r\njoint\r\njojo\r\nJokešová\r\nJokeš\r\nJokešův\r\nJolana\r\nJolančin\r\nJolanin\r\nJolanka\r\njola\r\njolka\r\njonácký\r\njonáctví\r\nJonáková\r\njonák\r\nJonák\r\nJonákův\r\njonákův\r\nJonášek\r\nJonášková\r\nJonáškův\r\nJonášová\r\nJonáš\r\nJonášův\r\njonatán\r\njónský\r\nJordáncův\r\nJordánčin\r\nJordánec\r\nJordán\r\nJordánka\r\nJordánsko\r\njordánský\r\njordánský\r\nJosefa\r\njosefinismus\r\njosefínský\r\njosefínství\r\nJosefin\r\nJosefová\r\nJosefov\r\njosefovský\r\nJosef\r\njosefský\r\nJosefův\r\nJosífek\r\nJosífková\r\nJosífkův\r\nJoštův\r\njota\r\njoule\r\nJourová\r\nJour\r\nJourův\r\nJouza\r\nJouzová\r\nJouzův\r\njoystick\r\njozefinismus\r\njozefínský\r\nJozífek\r\nJozífková\r\nJozífkův\r\nJožčin\r\nJožka\r\nJPEG\r\nJPY\r\njr\r\njsa\r\njsem\r\njsi\r\njsme\r\njsoucí\r\njsoucno\r\njsoucnost\r\njsoucnost\r\njsou\r\njste\r\njüan\r\njubilantčin\r\njubilantka\r\njubilant\r\njubilantův\r\njubilejní\r\njubileum\r\njubilovat\r\njubilující\r\njudaismus\r\njudaista\r\njudaistčin\r\njudaistický\r\njudaističtější\r\njudaistika\r\njudaistka\r\njudaistův\r\nJuda\r\njudikát\r\njudikatura\r\njudista\r\njudistčin\r\njudistka\r\njudistův\r\nJudita\r\nJuditin\r\njudo\r\nJudová\r\nJUDr\r\nJudsko\r\njudský\r\nJudův\r\njugoslávcový\r\nJugoslávcův\r\nJugoslávčin\r\nJugoslávec\r\nJugoslávie\r\njugoslavismus\r\nJugoslávka\r\njugoslávský\r\njuch\r\njuchá\r\njuchacha\r\njuchajda\r\njuché\r\njuchej\r\njucht\r\njuchta\r\njuchtovice\r\njuchtovina\r\njuchtový\r\njuchu\r\njuchú\r\njuj\r\njujda\r\njukání\r\njukat\r\nJuklíček\r\nJuklíčková\r\nJuklíčkův\r\njuknout\r\njuknutí\r\nJulčin\r\njuliánský\r\nJulie\r\nJuliin\r\nJulinčin\r\nJulinka\r\nJulišová\r\nJuliš\r\nJulišův\r\nJulius\r\nJuliův\r\nJulka\r\njulský\r\njun\r\njunácký\r\njunáctví\r\njunaččin\r\njunačka\r\njunáčtější\r\njunák\r\njunákův\r\nJuna\r\njunda\r\nJunek\r\nJungerová\r\nJunger\r\nJungerův\r\nJungmannová\r\njungmannovský\r\nJungmann\r\nJungmannův\r\nJungová\r\njungovský\r\nJung\r\nJungův\r\nJungwirthová\r\nJungwirth\r\nJungwirthův\r\nJungwirtová\r\nJungwirt\r\nJungwirtův\r\njuniorčin\r\njuniorka\r\njunior\r\njuniorský\r\njuniorštější\r\njuniorův\r\njunker\r\njunkerský\r\njunkerštější\r\nJunková\r\nJunkův\r\njunonštější\r\nJunová\r\njunta\r\nJunův\r\nJupiter\r\nJupiterův\r\nJuračka\r\nJuračková\r\nJuračkův\r\nJuráková\r\nJurák\r\nJurákův\r\nJuránek\r\nJuránková\r\nJuránkův\r\nJura\r\nJurásek\r\nJurásková\r\nJuráskův\r\njura\r\nJurčíková\r\nJurčík\r\nJurčíkův\r\nJurečka\r\nJurečková\r\nJurečkův\r\nJurenka\r\nJurenková\r\nJurenkův\r\nJuríková\r\nJurík\r\nJuríkův\r\njurisdikce\r\njurista\r\njuristčin\r\njuristka\r\njuristův\r\nJurišová\r\nJuriš\r\nJurišův\r\nJurka\r\nJurková\r\nJurkův\r\njurodivější\r\njurodivý\r\njurský\r\nJurův\r\njury\r\nJuřica\r\nJuřicová\r\nJuřicův\r\nJuříková\r\nJuřík\r\nJuříkův\r\njustice\r\njustiční\r\nJustová\r\nJust\r\nJustův\r\nJustýna\r\nJustýnin\r\njuta\r\njutový\r\nJutsko\r\njutský\r\njuvenilnější\r\njuvenilní\r\njuxtapozice\r\nJůza\r\nJůzlová\r\nJůzl\r\nJůzlův\r\nJůzová\r\nJůzův\r\nk\r\nkabala\r\nkabalista\r\nkabalistčin\r\nkabalistka\r\nkabalistův\r\nkabanos\r\nKába\r\nkabaret\r\nkabaretiér\r\nkabaretiérův\r\nkabaretní\r\nkabátcový\r\nkabátec\r\nKabátek\r\nkabátek\r\nkabát\r\nKabátková\r\nKabátkův\r\nKabátová\r\nkabátovější\r\nkabátový\r\nKabát\r\nKabátův\r\nKabeláčová\r\nKabeláč\r\nKabeláčův\r\nkabela\r\nkabelážní\r\nkabeláž\r\nKábele\r\nkabel\r\nkabelizace\r\nKabelka\r\nkabelka\r\nKabelková\r\nKabelkův\r\nkabelogram\r\nkabelovací\r\nkabelování\r\nkabelovaný\r\nkabelovat\r\nKábelová\r\nkabelovna\r\nkabelovod\r\nkabelový\r\nkabílkový\r\nkabina\r\nkabinet\r\nkabinetní\r\nkabinka\r\nkabinkový\r\nkabinový\r\nkablík\r\nkabonit\r\nkabotážní\r\nkabotáž\r\nKabourek\r\nKabourková\r\nKabourkův\r\nKábová\r\nKabrhelová\r\nKabrhel\r\nKabrhelův\r\nKabrielová\r\nKabriel\r\nKabrielův\r\nkabriolet\r\nKábrtová\r\nKábrt\r\nKábrtův\r\nkabřinec\r\nKábul\r\nkábulský\r\nKábův\r\nkacabajka\r\nKacáková\r\nKacák\r\nKacákův\r\nkácecí\r\nkácející\r\nkácení\r\nkácený\r\nKaceřov\r\nkaceřovský\r\nkácet\r\nKacetlová\r\nKacetl\r\nKacetlův\r\nkacířčin\r\nkacířka\r\nkacířský\r\nkacířství\r\nkacíř\r\nkacířův\r\nKácov\r\nKácovský\r\nkácovský\r\nkačátko\r\nkáčátko\r\nkáča\r\nKaččin\r\nkáče\r\nKačena\r\nkačena\r\nKačenčin\r\nkačenin\r\nkačení\r\nKačenka\r\nkačenka\r\nKačenová\r\nKačenův\r\nKačerová\r\nKačerov\r\nkačerovský\r\nkačer\r\nKačer\r\nKačerův\r\nkačerův\r\nkačeří\r\nKačice\r\nkačický\r\nKačin\r\nKačírek\r\nKačírková\r\nKačírkův\r\nKačka\r\nkačka\r\nkáčko\r\nkačuánština\r\nKadaníková\r\nKadaník\r\nKadaníkův\r\nKadaňsko\r\nkadaňský\r\nKadaň\r\nkádárismus\r\nkadaver\r\nkadaverin\r\nKadavý\r\nKadečka\r\nkadečka\r\nKadečková\r\nKadečkův\r\nkademnatý\r\nkadence\r\nkadencový\r\nKaděrová\r\nKaděr\r\nKaděrův\r\nKadeřábek\r\nKadeřábková\r\nKadeřábkův\r\nKadeřávek\r\nkadeřávek\r\nkadeřávka\r\nKadeřávková\r\nKadeřávkův\r\nkadeřavý\r\nkadeření\r\nkadeřený\r\nkadeřicí\r\nkadeřící\r\nkadeřit\r\nkadeřnice\r\nkadeřnický\r\nkadeřnictví\r\nkadeřničtější\r\nkadeřník\r\nkadeřníkův\r\nkadeř\r\nkadetka\r\nkadetní\r\nkadet\r\nkadetský\r\nkadetův\r\nkadibudka\r\nkadidelnice\r\nkadidlo\r\nkadidlový\r\nkádinka\r\nkaditelnice\r\nKadlcová\r\nKadlcův\r\nKadlčíková\r\nKadlčík\r\nKadlčíkův\r\nKadlec\r\nKadlece\r\nKadlecech\r\nKadlecem\r\nKadleci\r\nKadlecová\r\nKadlecové\r\nKadlecovi\r\nKadleců\r\nKadlecům\r\nKadlecův\r\nKadlecy\r\nKadleček\r\nKadlečíková\r\nKadlečík\r\nKadlečíkův\r\nKadlečková\r\nKadlečkův\r\nKadlín\r\nkadlínský\r\nkadlub\r\nkadmiový\r\nkadmium\r\nkadolecký\r\nKadolec\r\nKadov\r\nkadovský\r\nkádr\r\nKadrnožka\r\nKadrnožková\r\nKadrnožkův\r\nkádrovací\r\nkádrováctví\r\nkádrováčtější\r\nkádrovák\r\nkádrování\r\nkádrovaný\r\nkádrovat\r\nkádrovka\r\nkádrový\r\nkáď\r\nkafetérie\r\nkafíčko\r\nkafilérie\r\nkafilerka\r\nkafilerní\r\nkafiště\r\nKafka\r\nKafková\r\nkafkovský\r\nkafkovštější\r\nKafkův\r\nkafový\r\nkafr\r\nkafrovník\r\nkafrový\r\nkaftan\r\nKagera\r\nkahancový\r\nkahanec\r\nkahánek\r\nkahan\r\nkahánkový\r\nkahanový\r\nKáhira\r\nkáhirský\r\nKahounová\r\nKahoun\r\nKahounův\r\nkachel\r\nkachexie\r\nkachle\r\nkachlem\r\nkachli\r\nkachlíček\r\nkachlička\r\nkachlíčkovaný\r\nkachlíčkovat\r\nkachlíčkový\r\nkachlích\r\nkachlík\r\nkachlíkový\r\nKachlířová\r\nKachlíř\r\nKachlířův\r\nkachlový\r\nkachlů\r\nkachlům\r\nkachňátko\r\nkachna\r\nkachně\r\nkachnička\r\nkachní\r\nkachnovitý\r\nKachyňa\r\nkachýnčin\r\nkachýnka\r\nKachyňová\r\nKachyňův\r\nKainarová\r\nKainar\r\nKainarův\r\nkainovský\r\nKain\r\nKainův\r\nKaisera\r\nKaisere\r\nKaiserech\r\nKaiserem\r\nKaiserová\r\nKaiserové\r\nKaiserovi\r\nKaiser\r\nKaiserů\r\nKaiserům\r\nKaiserův\r\nKaisery\r\nKaisnerová\r\nKaisner\r\nKaisnerův\r\nKaisrová\r\nKaisrův\r\nKaizlův\r\nKaizrová\r\nKaizr\r\nKaizrův\r\nkajakářčin\r\nkajakářka\r\nkajakářský\r\nkajakář\r\nkajakářův\r\nkajak\r\nKája\r\nkajčí\r\nKajdošová\r\nKajdoš\r\nKajdošův\r\nkajetán\r\nKajetán\r\nKajetánský\r\nKajetánův\r\nkající\r\nkajícnější\r\nkajícnice\r\nkajícník\r\nkajícníkův\r\nkajícný\r\nkajka\r\nKajlíková\r\nKajlík\r\nKajlíkův\r\nkajmaní\r\nkajmanka\r\nkajman\r\nkajmanský\r\nkajmanův\r\nKájov\r\nkájovský\r\nKajsrová\r\nKajsr\r\nKajsrův\r\nkajuta\r\nkajutový\r\nKájův\r\nKajzrová\r\nKajzr\r\nkajzrrok\r\nKajzrův\r\nkakadu\r\nkakání\r\nkakao\r\nkakaovník\r\nkakaový\r\nkakat\r\nkakávání\r\nkakávat\r\nKakejcov\r\nkakejcovský\r\nkakofonický\r\nkakofonie\r\nkakost\r\nkaktusářčin\r\nkaktusářka\r\nkaktusář\r\nkaktusářův\r\nkaktus\r\nkaktusovitý\r\nkaktusový\r\nkakuminální\r\nkakuška\r\nKal\r\nKalabisová\r\nKalabis\r\nKalabisův\r\nKalábová\r\nKaláb\r\nKalábrie\r\nKalábův\r\nKalačová\r\nKalač\r\nKalačův\r\nkalafuna\r\nkalafunování\r\nkalafunovaný\r\nkalafunovat\r\nkalafunový\r\nKálalová\r\nKálal\r\nKálalův\r\nkalamajka\r\nkalamář\r\nkalambúr\r\nkalamín\r\nkalamita\r\nkalamitní\r\nkalamóza\r\nkalandr\r\nkalandrovací\r\nkalandrování\r\nkalandrovaný\r\nkalandrovat\r\nkalandrový\r\nkalanetika\r\nKala\r\nKalášek\r\nKalášková\r\nKaláškův\r\nkalašnikov\r\nKalašová\r\nKalaš\r\nKalašův\r\nKalava\r\nkala\r\nkalcifikovaný\r\nkalcifikovat\r\nkalcifyt\r\nkalciový\r\nkalcit\r\nkalcitický\r\nkalcitový\r\nkalcium\r\nKalčíková\r\nKalčík\r\nKalčíkův\r\nkaldera\r\nKaledonie\r\nkaledonský\r\nkaleidoskop\r\nkaleidoskopický\r\nkaleidoskopičtější\r\nKalencový\r\nKalenda\r\nkalendárium\r\nkalendáříček\r\nkalendářík\r\nkalendářní\r\nkalendářový\r\nkalendář\r\nKalendová\r\nKalendův\r\nkalení\r\nkálení\r\nkalenský\r\nkalený\r\nkálený\r\nkálet\r\nKalfusová\r\nKalfus\r\nKalfusův\r\nkal\r\nkalhotkový\r\nkalhotky\r\nkalhotový\r\nkalhoty\r\nKalhov\r\nkalhovský\r\nKalianek\r\nKalianková\r\nKaliankův\r\nKalibánová\r\nKalibán\r\nKalibánův\r\nkalibrace\r\nkalibrační\r\nkalibrátor\r\nkalibr\r\nkalibrovací\r\nkalibrování\r\nkalibrovaný\r\nkalibrovat\r\nkalibrující\r\nkalicí\r\nkalící\r\nkalič\r\nkaličův\r\nKaliforňančin\r\nKaliforňanka\r\nKaliforňan\r\nKaliforňanův\r\nKalifornie\r\nkalifornium\r\nkalifornský\r\nkaligrafický\r\nkaligrafičtější\r\nkaligrafie\r\nkaligram\r\nkaligramový\r\nkalich\r\nkalich\r\nkalichový\r\nkaliko\r\nKalikovský\r\nkalikový\r\nKalina\r\nkalina\r\nKalinek\r\nkalinka\r\nKalinková\r\nKalinkův\r\nKalinová\r\nkalinový\r\nKalinův\r\nKaliopi\r\nkaliopky\r\nkalírna\r\nKalista\r\nKalistová\r\nKalistův\r\nKališ\r\nkalíšek\r\nkalíškový\r\nkališnický\r\nkališnictví\r\nkališničtější\r\nkališník\r\nkališníkův\r\nkališní\r\nKališová\r\nkaliště\r\nKališ\r\nKališův\r\nkalit\r\nkalitelný\r\nkalium\r\nKalivoda\r\nKalivodová\r\nKalivodův\r\nKalkata\r\nkalkatský\r\nkalk\r\nkalkukační\r\nkalkulace\r\nkalkulačka\r\nkalkulačkový\r\nkalkulační\r\nkalkulantčin\r\nkalkulantka\r\nkalkulant\r\nkalkulantův\r\nkalkulátor\r\nkalkul\r\nkalkulování\r\nkalkulovaný\r\nkalkulovat\r\nkalkulovávání\r\nkalkulovávaný\r\nkalkulovávat\r\nkalkulující\r\nKalkusová\r\nKalkus\r\nKalkusův\r\nKallista\r\nKallistová\r\nKallistův\r\nKalná\r\nkalnější\r\nkalný\r\nkalomelový\r\nkalometrický\r\nkalorický\r\nkaloričtější\r\nkalorie\r\nkalorimetr\r\nkalorimetrický\r\nkalorimetričtější\r\nkaloun\r\nKalousek\r\nKalousková\r\nKalouskův\r\nKalousová\r\nKalous\r\nkalous\r\nKalousův\r\nkalousův\r\nKalová\r\nkalový\r\nKaluhová\r\nKaluh\r\nKaluhův\r\nkalumet\r\nkalupinka\r\nkalus\r\nkalusový\r\nKalův\r\nkalužina\r\nkalužinka\r\nkaluž\r\nkalvádos\r\nKalvarie\r\nkalvárie\r\nkalvinismus\r\nkalvinista\r\nkalvinistčin\r\nkalvinistický\r\nkalvinističtější\r\nkalvinistka\r\nkalvinistův\r\nKalvín\r\nkalvínský\r\nkalvínství\r\nkalvínštější\r\nkalvínův\r\nKalvoda\r\nKalvodová\r\nKalvodův\r\nkalypso\r\nkam\r\nkamarádění\r\nkamarádíček\r\nkamarádíčkův\r\nkamarádit\r\nkamarádka\r\nkamarád\r\nkamarádský\r\nkamarádství\r\nkamarádštější\r\nkamarádův\r\nkamarila\r\nkámasútra\r\nkamaše\r\nkambala\r\nKamberk\r\nKambodžančin\r\nKambodžanka\r\nKambodžan\r\nKambodžanův\r\nKambodža\r\nkambodžský\r\nkambrický\r\nkambrium\r\nKamčatka\r\nkamčatský\r\nkamej\r\nkamélie\r\nkamelotčin\r\nkamelotka\r\nkamelot\r\nkamelotův\r\nkamen\r\nkámen\r\nkamenáč\r\nkamenáčův\r\nkameňák\r\nkamencový\r\nkamene\r\nkamenec\r\nKamenečná\r\nkamenech\r\nkamének\r\nkamenem\r\nkamenění\r\nkamenenský\r\nkameněný\r\nkamenět\r\nkameni\r\nkamení\r\nKamenice\r\nKamenický\r\nkamenický\r\nkamenictví\r\nkameniččin\r\nKameníček\r\nkameničenský\r\nKamenička\r\nkamenička\r\nKameničková\r\nKameníčková\r\nKameničkův\r\nKameníčkův\r\nKameničná\r\nKameníková\r\nkameník\r\nKameník\r\nKameníkův\r\nkameníkův\r\nkamenina\r\nkameninový\r\nkamenitější\r\nkamenitý\r\nkamenivo\r\nkamenka\r\nKamenná\r\nkamenný\r\nkamenodělník\r\nkamenodělníkův\r\nkamenolom\r\nkamenoprůmysl\r\nkamenoryt\r\nkamenorytina\r\nkamenosochařský\r\nkamenotiskařský\r\nkamenotisk\r\nkamenotiskový\r\nkamenouhelný\r\nkamenování\r\nkamenovaný\r\nkamenovat\r\nkamenový\r\nKamenský\r\nkamenu\r\nkamenů\r\nkamenům\r\nkameny\r\nkameralismus\r\nkameralista\r\nkameralistčin\r\nkameralistka\r\nkameralistův\r\nkamerální\r\nkameramančin\r\nkameramanka\r\nkameraman\r\nkameramanův\r\nkamera\r\nkamerka\r\nkamerový\r\nKameruncův\r\nKamerunčin\r\nKamerunec\r\nKamerun\r\nKamerunka\r\nkamerunský\r\nkamikadze\r\nKamila\r\nKamilčin\r\nKamilin\r\nKamilka\r\nKamil\r\nKamilův\r\nkamínek\r\nkamínka\r\nkamínkování\r\nkamínkový\r\nkamion\r\nkamión\r\nkamiónový\r\nkamionový\r\nKamišová\r\nKamiš\r\nKamišův\r\nkamizola\r\nkamizolka\r\nkamkoli\r\nkamkoliv\r\nKamlejnek\r\nKamlejnková\r\nKamlejnkův\r\nKamlerová\r\nKamler\r\nKamlerův\r\nkamna\r\nkamnářský\r\nkamnářství\r\nkamnář\r\nkamnářův\r\nkamnech\r\nkamnový\r\nkamnům\r\nkamny\r\nkámoščin\r\nkámoška\r\nkámoš\r\nkámoš\r\nkámošův\r\nKampala\r\nKampánie\r\nkampaňovitý\r\nkampaňový\r\nkampaň\r\nkampatibilita\r\nKampa\r\nkampelička\r\nKampelíková\r\nKampelík\r\nKampelíkův\r\nKampučia\r\nkampus\r\nkampusový\r\nkamrlík\r\nkamsi\r\nkamuflážní\r\nkamufláž\r\nkamuflování\r\nkamuflovaný\r\nkamuflovat\r\nkamuflovávání\r\nkamuflovávaný\r\nkamuflovávat\r\nkamuflující\r\nkamýcký\r\nKamýk\r\nkamzice\r\nkamzíče\r\nkamzíček\r\nkamzičí\r\nkamzíčkův\r\nkamzičník\r\nkamzíkový\r\nkamzík\r\nkamzíkův\r\nKanaďančin\r\nKanaďanka\r\nKanaďan\r\nKanaďanův\r\nkanaďanův\r\nKanada\r\nkanadský\r\nkanafas\r\nkanafasový\r\nkanálek\r\nkanál\r\nkanalizace\r\nkanalizační\r\nkanalizování\r\nkanalizovaný\r\nkanalizovat\r\nkanálka\r\nkanálkový\r\nKanalošová\r\nKanaloš\r\nKanalošův\r\nkanálový\r\nKananga\r\nkanánština\r\nkanape\r\nkanapíčko\r\nKaňa\r\nKáňa\r\nkanárčí\r\nkanárek\r\nkanárkový\r\nkanárkův\r\nkanár\r\nkanárský\r\nkanárův\r\nkanáří\r\nkanasta\r\nkanava\r\nkancelářský\r\nkancelář\r\nkancelista\r\nkancelistčin\r\nkancelistka\r\nkancelistův\r\nkancerogennější\r\nkancerogenní\r\nkancionál\r\nkancléřský\r\nkancléřství\r\nkancléř\r\nkancléřův\r\nkancův\r\nkančí\r\nkandelábr\r\nkandela\r\nkandidátčin\r\nkandidátka\r\nkandidátní\r\nkandidát\r\nkandidátský\r\nkandidatura\r\nkandidátův\r\nkandidování\r\nkandidovat\r\nkandidovávání\r\nkandidovávat\r\nkandidující\r\nkandování\r\nkandovaný\r\nkandovat\r\nKandřín\r\nkandys\r\nkandysování\r\nkandysovaný\r\nkandysovat\r\nkandysový\r\nkanec\r\nkaneček\r\nkanečkův\r\nKaněk\r\nkáně\r\nKaněra\r\nKaněrová\r\nKaněrův\r\nkanetovací\r\nkanetování\r\nkanetovaný\r\nkanetovat\r\nkanibalismus\r\nkanibalistický\r\nkanibal\r\nkanibalský\r\nkanibalství\r\nkanibalův\r\nkanička\r\nKanina\r\nKanioková\r\nKaniok\r\nKaniokův\r\nkání\r\nkankán\r\nkaňkání\r\nkankánový\r\nKaňka\r\nkaňkat\r\nkaňka\r\nkaňkování\r\nKaňková\r\nKaňkovský\r\nKaňkův\r\nkanoe\r\nkánoe\r\nkanoista\r\nkanoistčin\r\nkanoistický\r\nkanoistika\r\nkanoistka\r\nkanoistův\r\nKaňoková\r\nKaňok\r\nKaňokův\r\nkanonáda\r\nkanon\r\nkanón\r\nkaňon\r\nkánon\r\nkanonický\r\nkanoničtější\r\nkanonie\r\nkanonisování\r\nkanonisovaný\r\nkanonisovat\r\nkanonista\r\nkanonistčin\r\nkanonistka\r\nkanonistův\r\nkanonizace\r\nkanonizování\r\nkanonizovaný\r\nkanonizovat\r\nkaňonovitý\r\nkanónový\r\nkanonýr\r\nkanonýrštější\r\nkanonýrův\r\nkanoucí\r\nkanout\r\nKaňová\r\nKáňová\r\nkanovničtější\r\nkanovník\r\nkanovníkův\r\nKánpur\r\nKansas\r\nkansaský\r\nKaňský\r\nKánský\r\nkantáta\r\nkantátový\r\nkanthaxanthin\r\nkantiléna\r\nkantilénový\r\nkantonální\r\nkanton\r\nkantorčin\r\nKantorek\r\nKantoriková\r\nKantorik\r\nKantorikův\r\nkantorka\r\nKantorková\r\nKantorkův\r\nKantorová\r\nkantor\r\nKantor\r\nkantorský\r\nkantorštější\r\nKantorův\r\nkantorův\r\nkantořina\r\nkantovský\r\nKant\r\nkantůrek\r\nKantův\r\nkantýna\r\nkanutí\r\nKaňův\r\nKáňův\r\nkanýrek\r\nkanýr\r\nkanystr\r\nKanyza\r\nKanyzová\r\nKanyzův\r\nkaolin\r\nkaolín\r\nkaolinit\r\nkaolinitický\r\nkaolinitový\r\nkaolinizovaný\r\nkaolinizovat\r\nkaolinový\r\nkaolínový\r\nkap\r\nkapacitance\r\nkapacita\r\nkapacitní\r\nkapací\r\nkapačka\r\nkapající\r\nkapalina\r\nkapalinný\r\nkapalinový\r\nkapalnější\r\nkapalnění\r\nkapalnět\r\nkapalný\r\nkapanější\r\nkapánek\r\nkapání\r\nkapaný\r\nkapar\r\nKaparová\r\nKapar\r\nKaparův\r\nkapat\r\nkapátko\r\nkapátkový\r\nkapávání\r\nkapávat\r\nkapavka\r\nkapela\r\nkapelin\r\nkapelník\r\nkapelníkův\r\nkapénka\r\nkapénkový\r\nkapes\r\nkapesné\r\nkapesníček\r\nkapesník\r\nkapesní\r\nkápě\r\nkapička\r\nkapičkový\r\nkapičku\r\nkapie\r\nkapilára\r\nkapilarita\r\nkapilární\r\nkapiový\r\nkapírování\r\nkapírovat\r\nkapitace\r\nkapitál\r\nkapitalismus\r\nkapitalista\r\nkapitalistčin\r\nkapitalistický\r\nkapitalističtější\r\nkapitalistka\r\nkapitalistův\r\nkapitalizace\r\nkapitalizování\r\nkapitalizovaný\r\nkapitalizovat\r\nkapitalizující\r\nkapitálka\r\nkapitálkovací\r\nkapitálkování\r\nkapitálkovaný\r\nkapitálkovat\r\nkapitální\r\nkapitálový\r\nkapitánčin\r\nkapitánka\r\nkapitán\r\nkapitánský\r\nkapitánštější\r\nkapitánův\r\nkapitola\r\nkapitolka\r\nkapitulace\r\nkapitulační\r\nkapitulant\r\nkapitulantský\r\nkapitulantství\r\nkapitulární\r\nkapitula\r\nkapitulní\r\nkapitulování\r\nkapitulovaný\r\nkapitulovat\r\nkapitulovávání\r\nkapitulovávat\r\nkapka\r\nkapkový\r\nkaplančin\r\nkaplanka\r\nKaplanová\r\nkaplan\r\nKaplan\r\nkaplanštější\r\nKaplanův\r\nkaplanův\r\nkaple\r\nKaplice\r\nkaplice\r\nkaplický\r\nkaplička\r\nkapličkový\r\nkaplový\r\nkápnout\r\nkápnutí\r\nkápnutý\r\nkapok\r\nkapota\r\nKapounek\r\nkapouní\r\nKapounková\r\nkapounkový\r\nKapounkův\r\nKapounová\r\nkapoun\r\nKapoun\r\nKapounův\r\nkapounův\r\nkapradí\r\nkapradina\r\nkapradinový\r\nkapraďorost\r\nkapraďovitý\r\nkapraďový\r\nkapraď\r\nkaprálčin\r\nkaprálka\r\nkaprál\r\nkaprálský\r\nkaprálův\r\nkaprařský\r\nkapricióznější\r\nkapronový\r\nKaprová\r\nkaprovitý\r\nkaprový\r\nkapr\r\nKapr\r\nKaprův\r\nkaprův\r\nkaprylový\r\nkapřík\r\nkapříkův\r\nkapří\r\nkapsanthin\r\nkapsářčin\r\nkapsářka\r\nkapsář\r\nkapsa\r\nkapsička\r\nkapský\r\nkapsle\r\nkapslička\r\nkapslovačka\r\nkapslovka\r\nkapslovna\r\nkapslový\r\nkapsorubin\r\nkapsování\r\nkapsovaný\r\nkapsovat\r\nkapsový\r\nkapsulka\r\nkapu\r\nkapuce\r\nkapucínek\r\nkapucínkův\r\nkapucín\r\nkapucínský\r\nkapucínštější\r\nkapucínův\r\nKapusta\r\nkapusta\r\nkapustička\r\nKapustová\r\nkapustový\r\nKapustův\r\nKapverďančin\r\nKapverďanka\r\nKapverďan\r\nKapverďanův\r\nkapverdský\r\nKapverdy\r\nkarabáč\r\nkarabina\r\nkarabiniér\r\nkarabiniérův\r\nkarabinka\r\nKarabínová\r\nKarabín\r\nKarabínův\r\nKaraexport\r\nkarafa\r\nkarafiát\r\nKarafiátová\r\nkarafiátový\r\nKarafiát\r\nKarafiátův\r\nkaragenan\r\nkárající\r\nKaramazův\r\nkarambol\r\nkarambolový\r\nkaramela\r\nkaramel\r\nkaramelka\r\nkaramelový\r\nkáranější\r\nkárání\r\nKarantánie\r\nkaranténa\r\nkaranténní\r\nkáraný\r\nKára\r\nkararský\r\nKarásek\r\nKarásková\r\nKaráskův\r\nKarasová\r\nkaras\r\nKaras\r\nKarasův\r\nkarasův\r\nkarate\r\nkaratelčin\r\nkaratelka\r\nkaratelský\r\nkaratel\r\nkaratelův\r\nkarát\r\nkaratista\r\nkaratistčin\r\nkaratistka\r\nkaratistův\r\nkárat\r\nkarátový\r\nkaravana\r\nkaravan\r\nkaravanka\r\nkaravanní\r\nkaravanový\r\nkáravější\r\nkaravela\r\nkáravý\r\nkaraya\r\nkára\r\nkarbamát\r\nkarbamylchlorid\r\nkarbanátek\r\nkarbanění\r\nkarbaněný\r\nkarban\r\nkarbaničtější\r\nkarbaník\r\nkarbaníkův\r\nkarbanit\r\nKarbanová\r\nkarbanový\r\nKarban\r\nKarbanův\r\nkarbid\r\nkarbidka\r\nkarbidonitrid\r\nkarbidový\r\nkarbimid\r\nkarbocyklický\r\nkarbocykličtější\r\nkarbolka\r\nkarbonářský\r\nkarbonář\r\nkarbonářův\r\nkarbonatace\r\nkarbonát\r\nkarbonatovaný\r\nkarbonátový\r\nkarbon\r\nkarbonizace\r\nkarbonizační\r\nkarbonizovaný\r\nkarbonový\r\nkarbonský\r\nkarbonylbromid\r\nkarbonylfluorid\r\nkarbonyl\r\nkarbonylchlorid\r\nkarbonylový\r\nkarbonylsulfid\r\nkarborundum\r\nkarbotermický\r\nkarbotermičtější\r\nkarboxyamin\r\nkarboxyaminový\r\nkarboxyl\r\nkarboxylový\r\nkarboxymethylcelulóza\r\nkarburátor\r\nkarburátorový\r\nkarcinogen\r\nkarcinogenita\r\nkarcinogennější\r\nkarcinogenní\r\nkarcinogenní\r\nkarcinom\r\nkarcinotron\r\nKarcolová\r\nKarcol\r\nKarcolův\r\nkardan\r\nkardanový\r\nKardašova\r\nkardinalita\r\nkardinálnější\r\nkardinální\r\nkardinál\r\nkardinálský\r\nkardinálštější\r\nkardinálův\r\nkardiocentrum\r\nkardioda\r\nkardiograf\r\nkardiogram\r\nkardiochirurgie\r\nkardiologický\r\nkardiologie\r\nkardiolog\r\nkardiologův\r\nkardioložčin\r\nkardioložka\r\nkardiostimulátor\r\nkardiovaskulární\r\nKareisová\r\nKareis\r\nKareisův\r\nKarel\r\nkarence\r\nKarenina\r\nKarešová\r\nKareš\r\nKarešův\r\nkaret\r\nkareta\r\nkaretní\r\nKarfíková\r\nKarfík\r\nKarfíkův\r\nkarfiol\r\nkarfiolový\r\nKarfusová\r\nKarfus\r\nKarfusův\r\nKargerová\r\nKarger\r\nKargerův\r\nkar\r\nkari\r\nkarí\r\nkaribský\r\nkaribu\r\nkaribú\r\nkariéra\r\nkariérismus\r\nkariérista\r\nkariéristčin\r\nkariéristický\r\nkariérističtější\r\nkariéristka\r\nkariéristův\r\nkariérní\r\nkariérový\r\nkarikatura\r\nkarikatura\r\nkarikaturista\r\nkarikaturistčin\r\nkarikaturističtější\r\nkarikaturistka\r\nkarikaturistův\r\nkarikaturní\r\nkarikaturův\r\nkarikování\r\nkarikovaný\r\nkarikovat\r\nkarikující\r\nkarimatka\r\nKarina\r\nKarinčin\r\nKarinin\r\nKarinka\r\nkarioka\r\nkárka\r\nKarkulčin\r\nKarkulka\r\nkarkulka\r\nKarla\r\nKarliččin\r\nKarlíček\r\nKarlíček\r\nKarlička\r\nKarlíčková\r\nKarlíčkův\r\nKarlíková\r\nKarlík\r\nKarlík\r\nKarlíkův\r\nKarlín\r\nkarlínský\r\nkarlínský\r\nKarlin\r\nKarlomanový\r\nKarlomanův\r\nKarlovarsko\r\nkarlovarský\r\nkarlovarský\r\nKarlová\r\nKarlovec\r\nKarlovice\r\nkarlovický\r\nKarlov\r\nkarlovský\r\nKarlsruhe\r\nKarlštejn\r\nkarlštejnský\r\nkarlštejnský\r\nKarlův\r\nKarmasin\r\nkarma\r\nkarmelitánka\r\nkarmelitán\r\nkarmelitánský\r\nkarmelitánův\r\nkarmelitka\r\nkarmelizovaný\r\nkarmický\r\nkarmín\r\nkarmínový\r\nkarnaubský\r\nkarneol\r\nkarneval\r\nkarnevalový\r\nKárníková\r\nKárník\r\nKárníkův\r\nkarnotit\r\nkarnýr\r\nKárný\r\nkárný\r\nKarolína\r\nKarolínčin\r\nKarolin\r\nKarolínin\r\nKarolinka\r\nKarolínka\r\nkarolínský\r\nkarolinský\r\nkarolínský\r\nKarolinum\r\nKarolová\r\nKarol\r\nKarolův\r\nkáro\r\nkarosárna\r\nkarosářský\r\nkarosář\r\nkarosářův\r\nKarosa\r\nkaroserie\r\nkarosérie\r\nkarotenal\r\nkaroten\r\nkaroteniod\r\nkarotenoid\r\nkarotenový\r\nkarotický\r\nkarotičtější\r\nkarotka\r\nkárovaný\r\nKárová\r\nkárový\r\nkarový\r\nkarpatoněmecká\r\nkarpatoněmecký\r\nkarpatský\r\nKarpaty\r\nKarpeta\r\nKarpetová\r\nKarpetův\r\nKarpíšek\r\nKarpíšková\r\nKarpíškův\r\nkartáček\r\nkartáčkový\r\nkartáčnický\r\nkartáčovací\r\nkartáčování\r\nkartáčovaný\r\nkartáčovat\r\nkartáčový\r\nkartáč\r\nkartagenský\r\nkartáginský\r\nKartágo\r\nkartářčin\r\nkartářka\r\nkarta\r\nkartel\r\nkartelový\r\nkartenianismus\r\nkarter\r\nkartezianismus\r\nkarteziánský\r\nkarteziánství\r\nkartézský\r\nkartička\r\nkartografčin\r\nkartografický\r\nkartografičtější\r\nkartografie\r\nkartografka\r\nkartograf\r\nkartografův\r\nkartogram\r\nkartonážka\r\nkartonážní\r\nkartónek\r\nkarton\r\nkartón\r\nkartónka\r\nkartonovací\r\nkartonování\r\nkartonovaný\r\nkartonovat\r\nkartonový\r\nkartónový\r\nkartotéční\r\nkartotéka\r\nkartotékový\r\nkartoun\r\nkartounka\r\nkartounový\r\nkartový\r\nkartuše\r\nkartuzián\r\nkartuziánský\r\nkartvelský\r\nkarubin\r\nkaruselový\r\nKárův\r\nKarvayová\r\nKarvayův\r\nKarvay\r\nKarviná\r\nKarvinsko\r\nkarvinský\r\nkarvínský\r\nkaryatida\r\nkasační\r\nKasalová\r\nKasal\r\nKasalův\r\nkasání\r\nkasaný\r\nkasárenský\r\nkasárenštější\r\nkasárna\r\nkasárník\r\nkasárníkův\r\nkasární\r\nkasárny\r\nkasař\r\nkasařův\r\nkasaštyk\r\nkasat\r\nkasávání\r\nkasávat\r\nkasa\r\nkaseinát\r\nkasein\r\nKasejovice\r\nkasejovický\r\nkasemata\r\nkasematy\r\nkasematy\r\nkasička\r\nKasíková\r\nKasík\r\nKasíkův\r\nkasino\r\nkasíno\r\nkasírování\r\nkasírovaný\r\nkasírovat\r\nkasiterit\r\nkasiteritový\r\nkaskáda\r\nkaskadérčin\r\nkaskadérka\r\nkaskadér\r\nkaskadérův\r\nkaskádování\r\nkaskádovější\r\nkaskádovitější\r\nkaskádovitý\r\nkaskádový\r\nKaslová\r\nKasl\r\nKaslův\r\nkasový\r\nkaspický\r\nkaspičtější\r\nKasprzáková\r\nKasprzák\r\nKasprzákův\r\nkastaněty\r\nkasta\r\nkastelánčin\r\nkastelánka\r\nkastelán\r\nkastelánův\r\nKastilie\r\nKastílie\r\nkastilský\r\nkastovitý\r\nkastovnický\r\nkastovnictví\r\nkastovní\r\nkastrace\r\nkastrační\r\nkastrát\r\nkastrátův\r\nkastrolek\r\nkastrólek\r\nkastrol\r\nkastról\r\nkastrovací\r\nkastrování\r\nkastrovaný\r\nkastrovat\r\nkastrovávat\r\nkastrůlek\r\nkasuista\r\nkasuistčin\r\nkasuistika\r\nkasuistka\r\nkasuistův\r\nkasus\r\nKašava\r\nKašek\r\nkašel\r\nkaše\r\nKašička\r\nkašička\r\nKašičková\r\nKašičkův\r\nkašírovací\r\nkašírování\r\nkašírovaný\r\nkašírovat\r\nKašková\r\nKaškův\r\nkašlající\r\nkašlání\r\nkašlat\r\nkašle\r\nkašlem\r\nkašli\r\nkašlích\r\nkašlů\r\nkašlům\r\nkašmír\r\nkašmírový\r\nkašna\r\nKašnice\r\nkašnický\r\nKašová\r\nKášová\r\nkašovitý\r\nkašový\r\nkašpárek\r\nKašpárek\r\nKašpárková\r\nkašpárkovštější\r\nkašpárkový\r\nKašpárkův\r\nkašpárkův\r\nKašparová\r\nKašparovský\r\nkašpar\r\nKašpar\r\nKašparův\r\nkašparův\r\nKašperk\r\nkašperský\r\nKaššeová\r\nKašše\r\nKaššeův\r\nKaššovicová\r\nKaššovic\r\nKaššovicův\r\nKaštánek\r\nkaštan\r\nKaštánková\r\nkaštánkový\r\nKaštánkův\r\nkaštanovník\r\nkaštanový\r\nkaštnový\r\nkašubština\r\nKaš\r\nKáš\r\nKašův\r\nKášův\r\nkatabatický\r\nkatabolický\r\nkataboličtější\r\nkatabolismus\r\nkatadioptrický\r\nkatafalk\r\nkatafora\r\nkataforický\r\nkataklyzma\r\nkataklyzmatický\r\nkataklyzmatičtější\r\nkataklyzmický\r\nkatakombový\r\nkatakomby\r\nKatalánčin\r\nKatalánie\r\nKatalánka\r\nKatalánsko\r\nkatalánský\r\nkatalánský\r\nkatalánština\r\nkatalog\r\nkatalogizace\r\nkatalogizační\r\nkatalogizování\r\nkatalogizovaný\r\nkatalogizovat\r\nkatalogovější\r\nkatalogový\r\nkatalytický\r\nkatalytičtější\r\nkatalyzátor\r\nkatalyzátorový\r\nkatalýza\r\nkatalyzování\r\nkatalyzovaný\r\nkatalyzovat\r\nkatalyzující\r\nkatamarán\r\nkatan\r\nkatapult\r\nkatapultovací\r\nkatapultování\r\nkatapultovaný\r\nkatapultovat\r\nkatarakt\r\nkatarální\r\nKatarcův\r\nKatarčin\r\nKatarec\r\nKatar\r\nkatar\r\nKatarína\r\nKatarínin\r\nKatarka\r\nkatarský\r\nkatarze\r\nKatařančin\r\nKatařanka\r\nKatařan\r\nKatařanův\r\nkatastrální\r\nkatastr\r\nkatastrofálnější\r\nkatastrofální\r\nkatastrofa\r\nkatastrofický\r\nkatastrofičtější\r\nkatastrofismus\r\nkatastrofista\r\nkatastrofistčin\r\nkatastrofistka\r\nkatastrofistův\r\nkatatrofismus\r\nKáťa\r\nkát\r\nKatčin\r\nkatedrála\r\nkatedrální\r\nkatedra\r\nkatedrový\r\nkategoriálnější\r\nkategoriální\r\nkategorický\r\nkategoričtější\r\nkategorie\r\nkategorizace\r\nkategorizační\r\nkategorizování\r\nkategorizovaný\r\nkategorizovaný\r\nkategorizovat\r\nkatechese\r\nkatecheta\r\nkatechetčin\r\nkatechetický\r\nkatechetika\r\nkatechetka\r\nkatechetův\r\nkatecheze\r\nkatechin\r\nkatechismus\r\nkatechistický\r\nkatechizmový\r\nkatechizování\r\nkatechumenální\r\nkatechumenát\r\nkatechumen\r\nkatechumenův\r\nKátěnčin\r\nKátěnka\r\nkatenoid\r\nKateřina\r\nKateřinčin\r\nKateřinin\r\nKateřinka\r\nKateřinky\r\nKateřinský\r\nkatetr\r\nkatetrizace\r\nkatilinárčin\r\nkatilinárka\r\nKátin\r\nkation\r\nkationt\r\nKatka\r\nkatoda\r\nkatodický\r\nkatodový\r\nkatolicismus\r\nkatolicita\r\nkatolický\r\nkatolictví\r\nkatoliččin\r\nkatolička\r\nkatoličtější\r\nkatolík\r\nkatolíkův\r\nkatolizující\r\nKatovice\r\nkatovický\r\nKatov\r\nkatovský\r\nkatovský\r\nkatovštější\r\nkat\r\nKatusice\r\nkatusický\r\nKatuščin\r\nKatuška\r\nkatův\r\nKatynčin\r\nKatynka\r\nkauce\r\nkaučukárna\r\nkaučuk\r\nkaučukovník\r\nkaučukový\r\nKaulfussová\r\nKaulfuss\r\nKaulfussův\r\nkausalita\r\nkausálnější\r\nkausální\r\nkaustický\r\nkaustičtější\r\nkaustifikace\r\nkauterizace\r\nkauzalita\r\nkauzálnější\r\nkauzální\r\nkauzativum\r\nkauza\r\nkavalec\r\nKaválek\r\nkavalérie\r\nkavalerista\r\nkavaleristův\r\nkavalírka\r\nKavalírová\r\nkavalír\r\nKavalír\r\nkavalírský\r\nkavalírství\r\nkavalírštější\r\nKavalírův\r\nkavalírův\r\nkavalkáda\r\nKaválková\r\nKaválkův\r\nKavanová\r\nKavan\r\nKavanův\r\nkavárenský\r\nkavárenštější\r\nkavárna\r\nkavárnička\r\nkáva\r\nKavčáková\r\nKavčák\r\nKavčákův\r\nkavče\r\nkavčí\r\nkaverna\r\nkavernosní\r\nkavernový\r\nkavernózní\r\nkaviár\r\nkaviárový\r\nkávička\r\nKavka\r\nKavkazan\r\nKavkazanův\r\nKavkaz\r\nkavka\r\nkavkazský\r\nkavkazský\r\nKavková\r\nKavkův\r\nkávomlýnek\r\nkávovar\r\nkávovina\r\nkávovinový\r\nkávovník\r\nkávový\r\nKazach\r\nKazachstán\r\nKazachův\r\nkázající\r\nkazajka\r\nkázanější\r\nkázáníčko\r\nkázání\r\nkázán\r\nkazaňský\r\nkázaný\r\nKazaň\r\nKazaščin\r\nKazaška\r\nkazašský\r\nkazaština\r\nkázat\r\nkazatelčin\r\nkazatelka\r\nkazatelna\r\nkazatelnictví\r\nkazatelnový\r\nKazatelová\r\nKazatel\r\nkazatelský\r\nkazatelství\r\nkazatelštější\r\nkazatel\r\nKazatelův\r\nkazatelův\r\nKazda\r\nKazdová\r\nKazdův\r\nkázeňský\r\nkázeňštější\r\nkázeň\r\nkazeťák\r\nkazeta\r\nkazetopáskový\r\nkazetový\r\nkaz\r\nkazící\r\nKazický\r\nKazíková\r\nKazík\r\nKazíkův\r\nkazimír\r\nKazimír\r\nKazimírův\r\nkazimírův\r\nkazisvět\r\nkazisvětův\r\nkazit\r\nkazivcový\r\nkazivec\r\nkazivý\r\nKaznějov\r\nKaznějovský\r\nkaznějovský\r\nkáznice\r\nkazový\r\nkazuistický\r\nkazuistika\r\nkaždičký\r\nkaždinký\r\nkaždodennější\r\nkaždodenní\r\nkaždopádně\r\nkaždoroční\r\nkaždotýdenní\r\nkaždovečerní\r\nkaždý\r\nkažení\r\nkažený\r\nkáži\r\nKB\r\nkB\r\nKbel\r\nkbelíček\r\nkbelík\r\nKBSE\r\nkcal\r\nKč\r\nKčs\r\nKČT\r\nkdák\r\nkdákající\r\nkdákání\r\nkdákaný\r\nkdákat\r\nkdákavý\r\nkdáknout\r\nkde\r\nkdeco\r\nkdečí\r\nkdejak\r\nkdejaký\r\nkdekam\r\nkdekdo\r\nkdekdy\r\nkdekoli\r\nkdekoliv\r\nkdekterý\r\nkdekudy\r\nkdepak\r\nkdes\r\nkdesi\r\nkdežto\r\nkdo\r\nkdojíjak\r\nkdokoli\r\nkdokoliv\r\nkdopak\r\nkdos\r\nkdosi\r\nkdoule\r\nkdouloň\r\nkdoulový\r\nKdousov\r\nkdousovský\r\nkdoví\r\nkdovíco\r\nkdovíčí\r\nkdovíjak\r\nkdovíjaký\r\nkdovíjaký\r\nkdovíkam\r\nkdovíkde\r\nkdovíkdo\r\nkdovíkdy\r\nkdovíkolik\r\nkdovíkterý\r\nkdovíkterý\r\nkdovíkudy\r\nkdovínač\r\nkdovíodkud\r\nkdovíproč\r\nkdo\r\nkdož\r\nkdožví\r\nkdožvíjak\r\nkdožvíkam\r\nkdožvíkde\r\nkdožvíkdy\r\nkdožvíkudy\r\nkdožvíodkud\r\nkdožvíproč\r\nKDS\r\nKDU\r\nkdy\r\nkdyby\r\nkdyby;\r\nkdybych\r\nkdybych;\r\nkdybychom\r\nkdybychom;\r\nkdybys\r\nkdybys;\r\nkdybyste\r\nkdykoli\r\nkdykoliv\r\nKdyně\r\nkdyňský\r\nkdypak\r\nkdys\r\nkdysi\r\nkdyž\r\nke\r\nkebab\r\nKeblov\r\nkeblovský\r\nKEBS\r\nkecání\r\nkecat\r\nkec\r\nkecka\r\nkecnout\r\nkecnutí\r\nkečup\r\nKedajová\r\nKedaj\r\nKedajův\r\nkedluben\r\nkedlubna\r\nkedlubnový\r\nkefír\r\nkefírový\r\nKeighleyův\r\nKeilová\r\nKeil\r\nKeilův\r\nkejda\r\nkejdový\r\nkejhající\r\nkejhák\r\nkejhání\r\nkejhat\r\nkejhavý\r\nkejhnout\r\nkejklavý\r\nkejkle\r\nkejklířčin\r\nkejklířka\r\nkejklířský\r\nkejklířství\r\nkejklíř\r\nkejklířův\r\nKejvalová\r\nKejval\r\nKejvalův\r\nkeks\r\nKelblová\r\nKelbl\r\nKelblův\r\nkelčský\r\nKelč\r\nkelec\r\nKelemenová\r\nKelemen\r\nKelemenův\r\nkelímek\r\nkelímkový\r\nKellerová\r\nKeller\r\nKellerův\r\nKellnerová\r\nKellner\r\nKellnerův\r\nKelloggův\r\nkel\r\nKeltnerová\r\nKeltner\r\nKeltnerův\r\nKelt\r\nkelt\r\nKelt\r\nkeltský\r\nkeltský\r\nkeltština\r\nKeltův\r\nkeltův\r\nkelvin\r\nkemp\r\nkempink\r\nkempinkový\r\nKempný\r\nkempování\r\nkempový\r\nKeňančin\r\nKeňanka\r\nKeňan\r\nKeňanův\r\nKeňa\r\nKendlerová\r\nKendler\r\nKendlerův\r\nkenotaf\r\nkeňský\r\nkentaur\r\nkentaurův\r\nkentucký\r\nKepka\r\nKepková\r\nKepkův\r\nkeplerovský\r\nKepler\r\nKeplerův\r\nkepr\r\nkeprový\r\nKerametal\r\nKeramchemie\r\nkeramický\r\nkeramiččin\r\nkeramička\r\nkeramika\r\nkeratektomie\r\nkeratinový\r\nkeratologie\r\nkeratoplastika\r\nkeratotomie\r\nkerblík\r\nKerenský\r\nKerhartice\r\nkerhartický\r\nKerliková\r\nKerlik\r\nKerlikův\r\nkernel\r\nKernerová\r\nKerner\r\nKernerův\r\nkerningový\r\nkerný\r\nkerogen\r\nkersantit\r\nkersantitový\r\nKeršláger\r\nKeršlágrová\r\nKeršlágrův\r\nKertészová\r\nKertész\r\nKertészův\r\nkeříček\r\nkeříčkovitý\r\nkeříčkový\r\nkeřík\r\nkeříkový\r\nKeřkovský\r\nkeřovitý\r\nkeřový\r\nkeř\r\nkeser\r\nKesnerová\r\nKesner\r\nKesnerův\r\nkeson\r\nkesonový\r\nkestřanský\r\nKestřany\r\nkešú\r\nkeťasení\r\nkeťasit\r\nkeťas\r\nkeťasův\r\nKetnerová\r\nKetner\r\nKetnerův\r\nketogenní\r\nketokyselina\r\nketolaglutarový\r\nketon\r\nketonový\r\nketosa\r\nKettnerová\r\nKettner\r\nKettnerův\r\nkeynesiánský\r\nkeynesiánství\r\nkéž\r\nKežmarok\r\nkežmarský\r\nkg\r\nKGB\r\nkhaki\r\nKhalilová\r\nKhalil\r\nKhalilův\r\nkhmerština\r\nkhmérština\r\nkhoisanský\r\nKholová\r\nKhol\r\nKholův\r\nKhýnová\r\nKhýn\r\nKhýnův\r\nkHz\r\nkibicování\r\nkibicovaný\r\nkibicovat\r\nkibic\r\nkibicův\r\nkibuc\r\nKijev\r\nkijevský\r\nkikiriki\r\nkikirikí\r\nkiks\r\nKiliánová\r\nKilián\r\nKiliánův\r\nkilíčko\r\nkilobajt\r\nkilobajtový\r\nkilobit\r\nkilobitový\r\nkilobyte\r\nkilobytový\r\nkilogram\r\nkilogramový\r\nkilohertz\r\nkilohertzích\r\nkilojoul\r\nkilokalorie\r\nkilometráž\r\nkilometr\r\nkilometrovník\r\nkilometrový\r\nkilometřík\r\nkilo\r\nkiloparsek\r\nkilopond\r\nkilovka\r\nkilovolt\r\nkilový\r\nkilowatt\r\nkilowatthodina\r\nkilowattový\r\nkilt\r\nkimono\r\nkimonový\r\nkinantropologie\r\nKinazsová\r\nKinazs\r\nKinazsův\r\nKinclová\r\nKincl\r\nKinclův\r\nKindlová\r\nKindl\r\nKindlův\r\nkindžál\r\nkinematický\r\nkinematičtější\r\nkinematika\r\nkinematograf\r\nkinematografický\r\nkinematografičtější\r\nkinematografie\r\nkinestetický\r\nkinestetičtější\r\nkinestéze\r\nkinetický\r\nkinetika\r\nkinetismus\r\nkinetoskop\r\nkinetóza\r\nkineziologický\r\nkineziologie\r\nkineziolog\r\nkineziologův\r\nkinezioložčin\r\nkinezioložka\r\nKing\r\nKingston\r\nKingstown\r\nKingův\r\nkinoaparát\r\nkinoautomat\r\nkinofilm\r\nkinofilmový\r\nkinokamera\r\nkino\r\nkinosál\r\nKinshasa\r\nKinský\r\nKinzelová\r\nKinzel\r\nKinzelův\r\nkinžál\r\nkiosek\r\nkiosk\r\nKipp\r\nKippův\r\nKirgizie\r\nKirchhoff\r\nKirchhoffův\r\nKirchnerová\r\nKirchner\r\nKirchnerův\r\nkiribarský\r\nKiribati\r\nKirschlagerová\r\nKirschlager\r\nKirschlagerův\r\nKislingerová\r\nKislinger\r\nKislingerův\r\nKissová\r\nKiss\r\nKissův\r\nKišiněv\r\nkišiněvský\r\nKiššová\r\nKišš\r\nKiššův\r\nkit\r\nkitharista\r\nkitharistčin\r\nkitharistka\r\nkitharistův\r\nKittnerová\r\nKittner\r\nKittnerův\r\nkivi\r\nkiwi\r\nKjúšú\r\nKlabalová\r\nKlabal\r\nKlabalův\r\nKlabanová\r\nKlaban\r\nKlabanův\r\nKlabava\r\nklabonosý\r\nklábosení\r\nklábosit\r\nklábosivější\r\nklábosivý\r\nklacek\r\nklácení\r\nklácený\r\nklacíček\r\nklacík\r\nklackovat\r\nklackovitější\r\nklackovitý\r\nklackovský\r\nkládající\r\nkláda\r\nkladba\r\nkladečský\r\nkladeč\r\nkladečův\r\nkladení\r\nKladensko\r\nkladenský\r\nkladený\r\nklad\r\nklad\r\nkladička\r\nkladičkový\r\nkladina\r\nkladivářčin\r\nkladivářka\r\nkladivářský\r\nkladivář\r\nkladivářův\r\nkladívko\r\nKladívko\r\nKladívková\r\nkladívkový\r\nKladívkův\r\nkladivo\r\nkladivoun\r\nkladivounův\r\nkladivový\r\nkladka\r\nkladkostroj\r\nkladkový\r\nkladnější\r\nKladno\r\nkladný\r\nkladoucí\r\nkladrubiensie\r\nkladrubský\r\nkladrubský\r\nKladruby\r\nKladsko\r\nkladský\r\nkladský\r\nKlagenfurt\r\nKlailová\r\nKlail\r\nKlailův\r\nklaka\r\nklakson\r\nklamající\r\nklamanější\r\nklamání\r\nklamaný\r\nklamat\r\nklamávání\r\nklamávaný\r\nklamávat\r\nklamavější\r\nklamavý\r\nklam\r\nklamnější\r\nklamný\r\nklandr\r\nklanění\r\nklanět\r\nklan\r\nKlanica\r\nKlanicová\r\nKlanicův\r\nklání\r\nKlánová\r\nKlánovice\r\nklánovický\r\nklanový\r\nklánový\r\nKlán\r\nKlánský\r\nKlánův\r\nklapačka\r\nklapající\r\nKlapalová\r\nKlapal\r\nKlapalův\r\nklapání\r\nklapaný\r\nklapat\r\nklapavý\r\nKlapka\r\nklapka\r\nKlapková\r\nklapkový\r\nKlapkův\r\nklapnout\r\nklapnutí\r\nklapnutý\r\nklapot\r\nKlapsiová\r\nKlapsi\r\nKlapsiův\r\nKlápšťová\r\nKlápšť\r\nKlápšťův\r\nklapy\r\nKlára\r\nKlárčin\r\nklaret\r\nklarinet\r\nklarinetista\r\nklarinetistčin\r\nklarinetistka\r\nklarinetistův\r\nklarinetový\r\nklarisčin\r\nklariska\r\nklaristčin\r\nklaristka\r\nKlárka\r\nKlárov\r\nklárovský\r\nKlářin\r\nKlasa\r\nklásek\r\nklas\r\nklasicismus\r\nklasicista\r\nklasicistický\r\nklasicističtější\r\nklasicistní\r\nklasicistův\r\nklasicizující\r\nklasický\r\nklasička\r\nklasičtější\r\nklasifikace\r\nklasifikační\r\nklasifikátor\r\nklasifikování\r\nklasifikovaný\r\nklasifikovat\r\nklasifikovatelnější\r\nklasifikovatelný\r\nklasifikovávání\r\nklasifikovávaný\r\nklasifikovávat\r\nklasika\r\nklasik\r\nklasikův\r\nkláskový\r\nklasnatější\r\nKlasová\r\nklasový\r\nklást\r\nklásti\r\nKlasův\r\nklášterecký\r\nklášterecký\r\nKlášterec\r\nklášter\r\nklášternější\r\nklášterní\r\nKlášťov\r\nklášťovský\r\nklatba\r\nklát\r\nklátící\r\nklátit\r\nklátivější\r\nklátivý\r\nklatovecký\r\nKlatovec\r\nKlatovsko\r\nklatovský\r\nKlatovy\r\nklatý\r\nKlaudie\r\nKlaudiin\r\nklaunovštější\r\nklaun\r\nklaunštější\r\nklaunův\r\nKlauserový\r\nklausismus\r\nKlausnerová\r\nKlausner\r\nKlausnerův\r\nKlausová\r\nklausovský\r\nKlaus\r\nklaustrofobický\r\nklaustrofobičtější\r\nklaustrofobie\r\nklaustrofobní\r\nklausura\r\nKlausův\r\nklauze\r\nKlauzová\r\nKlauz\r\nklauzule\r\nklauzura\r\nklauzurní\r\nKlauzův\r\nklávesák\r\nklávesákův\r\nklávesa\r\nklávesista\r\nklávesistčin\r\nklávesistka\r\nklávesistův\r\nklávesnice\r\nklávesnicový\r\nklávesový\r\nklaviatura\r\nKlavíková\r\nKlavík\r\nKlavíkův\r\nklavír\r\nklavírista\r\nklavíristčin\r\nklavíristka\r\nklavíristův\r\nklavírní\r\nklavírový\r\nKlazarová\r\nKlazar\r\nKlazarův\r\nKlebsa\r\nKlebsová\r\nKlebsův\r\nklecní\r\nklecovitý\r\nklecový\r\nklec\r\nkleče\r\nklečení\r\nklečet\r\nklečící\r\nKlečka\r\nklečka\r\nKlečková\r\nKlečkův\r\nklečmo\r\nklečový\r\nkleč\r\nKleinová\r\nKlein\r\nKleinův\r\nkleji\r\nklející\r\nklejotok\r\nklekačka\r\nklekánice\r\nklekáničin\r\nklekání\r\nklekáno\r\nklekat\r\nklekátko\r\nklek\r\nkleknout\r\nkleknutí\r\nkleknutý\r\nklel\r\nklementinský\r\nKlementinum\r\nKlementová\r\nKlement\r\nKlementův\r\nKlempa\r\nKlempířová\r\nklempířský\r\nklempířství\r\nklempíř\r\nKlempíř\r\nKlempířův\r\nklempířův\r\nKlempová\r\nKlempův\r\nklenba\r\nklenbový\r\nklencový\r\nKlenčí\r\nkleneb\r\nklenební\r\nklenek\r\nklen\r\nKlenice\r\nklení\r\nklenot\r\nklenotnice\r\nklenotnický\r\nklenotnictví\r\nklenotničtější\r\nklenotník\r\nklenotníkův\r\nklenoucí\r\nklenout\r\nKlenová\r\nKlenovice\r\nklenovický\r\nklenovka\r\nklenovský\r\nKlenový\r\nklenový\r\nklenutější\r\nklenutí\r\nklenutý\r\nklenutý\r\nKleofáš\r\nKleofášův\r\nKleopatra\r\nKleopatřin\r\nklepací\r\nklepačka\r\nklepač\r\nklepadlo\r\nklepající\r\nKlepalová\r\nKlepal\r\nKlepalův\r\nklepanější\r\nklepání\r\nklepaný\r\nklepat\r\nklepátko\r\nklepávající\r\nklepávanější\r\nklepávání\r\nklepávaný\r\nklepávat\r\nklepavý\r\nklepeto\r\nklep\r\nklepítkatcův\r\nklepítkatec\r\nklepítkatý\r\nklepítko\r\nKleplová\r\nKlepl\r\nKleplův\r\nklepna\r\nklepnin\r\nklepnout\r\nklepnutější\r\nklepnutí\r\nklepnutý\r\nklepnutý\r\nklepot\r\nKlepsa\r\nKlepsová\r\nKlepsův\r\nklepsydra\r\nkleptomančin\r\nkleptomanie\r\nkleptomanka\r\nklér\r\nklerikalismus\r\nklerikalistický\r\nklerikalizující\r\nklerikální\r\nklerikál\r\nklerikálův\r\nklerika\r\nklerik\r\nklerikův\r\nklerofašismus\r\nklerofašista\r\nklerofašistčin\r\nklerofašistický\r\nklerofašistka\r\nklerofašistův\r\nklérus\r\nklesající\r\nklesání\r\nklesat\r\nklesávání\r\nklesávat\r\nklesavý\r\nkleslý\r\nklesnout\r\nklesnutí\r\nklest\r\nklestí\r\nklestit\r\nkleště\r\nkleštěncův\r\nkleštěnec\r\nkleštění\r\nkleštěný\r\nkleštička\r\nkleštičky\r\nkleština\r\nkleštinový\r\nkleštit\r\nklešťový\r\nkletba\r\nKletečka\r\nKletečková\r\nKletečkův\r\nkletější\r\nkletí\r\nKleť\r\nkletr\r\nkleťský\r\nkletý\r\nklevecení\r\nklevecený\r\nkleveta\r\nklevetění\r\nklevetit\r\nklevetivý\r\nklevetnice\r\nklevetnický\r\nklevetnictví\r\nklevetničin\r\nklevetník\r\nklevetníkův\r\nklícka\r\nklíčavský\r\nklíček\r\nklíčení\r\nklíčenka\r\nklíčený\r\nklíčící\r\nklíčit\r\nklíčivý\r\nklička\r\nkličkování\r\nkličkovaný\r\nkličkovat\r\nkličkovávání\r\nkličkovávaný\r\nkličkovávat\r\nklíčkový\r\nkličkový\r\nkličkující\r\nklíčnice\r\nklíčník\r\nklíčníkův\r\nklíční\r\nklíčování\r\nklíčovaný\r\nklíčovat\r\nklíčovější\r\nKlíčov\r\nklíčovský\r\nklíčový\r\nklíč\r\nkliďas\r\nkliďasův\r\nklídek\r\nklid\r\nklidit\r\nklidnější\r\nklidný\r\nklidovější\r\nklidový\r\nklidumilovnější\r\nklientčin\r\nklientela\r\nklientelismus\r\nklientelistický\r\nklientka\r\nklient\r\nklientský\r\nklientův\r\nklihárna\r\nklih\r\nklihovací\r\nklihování\r\nklihovaný\r\nklihovat\r\nklihovatění\r\nklihovatěný\r\nklihovatět\r\nklihovatý\r\nklihovina\r\nklihovitý\r\nklihovka\r\nklihový\r\nKlícha\r\nKlíchová\r\nKlíchův\r\nklikacení\r\nklikacený\r\nklikací\r\nklikající\r\nklikání\r\nKlika\r\nklikař\r\nklikařův\r\nklikatější\r\nklikatící\r\nklikatina\r\nklikatit\r\nklikat\r\nklikatý\r\nklikávání\r\nklikávaný\r\nklikávat\r\nklika\r\nkliknout\r\nkliknutí\r\nklikolet\r\nKliková\r\nklikovka\r\nklikový\r\nKlikův\r\nklikva\r\nklikyhák\r\nklímající\r\nklima\r\nklimakterický\r\nklimakterium\r\nklimaktérium\r\nklímání\r\nKlíma\r\nklimatický\r\nklimatizace\r\nklimatizační\r\nklimatizátor\r\nklimatizování\r\nklimatizovaný\r\nklimatizovat\r\nklímat\r\nklimatogram\r\nklimatologický\r\nklimatologie\r\nklimatolog\r\nklimatologův\r\nklimatoložčin\r\nklimatoložka\r\nklímavější\r\nklímavý\r\nklimax\r\nklimaxový\r\nklimbající\r\nklimbání\r\nklimbat\r\nklimbávání\r\nklimbávat\r\nKlimčuková\r\nKlimčuk\r\nKlimčukův\r\nKlimek\r\nKlimentová\r\nKliment\r\nKlimentův\r\nKlimešová\r\nKlimeš\r\nKlimešův\r\nKlimková\r\nKlimkovice\r\nklimkovický\r\nKlimkův\r\nKlímová\r\nKlimpera\r\nKlimperová\r\nKlimperův\r\nKlimplová\r\nKlimpl\r\nKlimplův\r\nKlimša\r\nKlimše\r\nKlimšem\r\nKlimši\r\nKlimších\r\nKlimšová\r\nKlimšové\r\nKlimšovi\r\nKlimšů\r\nKlimšům\r\nKlimšův\r\nKlimtová\r\nKlimt\r\nKlimtův\r\nKlímův\r\nklínecký\r\nKlínec\r\nklínek\r\nKlingerová\r\nKlinger\r\nKlingerův\r\nklín\r\nklinický\r\nkliničtější\r\nklinika\r\nKlinkáček\r\nKlinkáčková\r\nKlinkáčkův\r\nklinkání\r\nklinkaný\r\nklinkat\r\nklinkavý\r\nklínopis\r\nklínopisný\r\nklínovecký\r\nKlínovec\r\nklínovitý\r\nklínový\r\nklípek\r\nklip\r\nklipový\r\nklipsa\r\nklips\r\nklipsna\r\nklíring\r\nklisna\r\nklisnička\r\nklisnin\r\nklišé\r\nklíště\r\nklíšťky\r\nklíšťový\r\nklít\r\nklíti\r\nklitoridální\r\nklitoris\r\nklívie\r\nklizení\r\nklizený\r\nklížení\r\nklížený\r\nklížicí\r\nklížící\r\nklížidlo\r\nklížit\r\nkližka\r\nKlížová\r\nKlíž\r\nKlížův\r\nklk\r\nklnout\r\nklnutí\r\nkloakální\r\nkloaka\r\nkloakovitý\r\nklobása\r\nklobáska\r\nklobásový\r\nklobat\r\nklobnout\r\nKlobouček\r\nklobouček\r\nKloboučková\r\nkloboučkový\r\nKloboučkův\r\nkloboučnice\r\nkloboučnický\r\nkloboučnictví\r\nkloboučničtější\r\nKloboučníková\r\nkloboučník\r\nKloboučník\r\nKloboučníkův\r\nkloboučníkův\r\nklobouk\r\nkloboukový\r\nKlobušický\r\nKlofáčová\r\nKlofáč\r\nKlofáčův\r\nklofající\r\nklofat\r\nklofnout\r\nklokaní\r\nKlokanová\r\nklokan\r\nKlokan\r\nKlokanův\r\nklokanův\r\nklokočenský\r\nklokočí\r\nKlokočka\r\nKlokočná\r\nKlokočníková\r\nKlokočník\r\nKlokočníkův\r\nKlokočov\r\nklokočovský\r\nklokočský\r\nklokotající\r\nklokotání\r\nklokotat\r\nklokotávání\r\nklokotávat\r\nklokotavý\r\nklokot\r\nkloktadlo\r\nkloktání\r\nkloktaný\r\nkloktat\r\nkloktávání\r\nkloktávat\r\nkloktavý\r\nkloněnější\r\nklonění\r\nkloněný\r\nklon\r\nklonící\r\nklonit\r\nklonovací\r\nklonování\r\nklonovaný\r\nklonovat\r\nklonový\r\nklopa\r\nklopenější\r\nklopení\r\nklopený\r\nklopící\r\nKlopina\r\nklopit\r\nklopný\r\nklopotit\r\nklopotnější\r\nklopotný\r\nklopýtající\r\nklopýtání\r\nklopýtat\r\nklopýtávání\r\nklopýtávat\r\nklopýtavý\r\nklopýtnout\r\nklopýtnutí\r\nKlosová\r\nKlos\r\nKlostermannová\r\nKlostermann\r\nKlostermannův\r\nKlosův\r\nkloš\r\nklošův\r\nklot\r\nklotový\r\nkloub\r\nkloubící\r\nkloubní\r\nkloubový\r\nklouče\r\nklouček\r\nKlouček\r\nKloučková\r\nKloučkův\r\nkloučkův\r\nKlouda\r\nkloudnější\r\nkloudný\r\nKloudová\r\nKloudův\r\nklouzačka\r\nklouzadlo\r\nklouzající\r\nklouzání\r\nklouzat\r\nklouzavost\r\nklouzavý\r\nklouzek\r\nklouzkovací\r\nklouzkování\r\nklouzkovaný\r\nklouzkovat\r\nklouznout\r\nklouznutí\r\nKlouža\r\nKloužová\r\nKloužův\r\nklování\r\nklovaný\r\nklovatina\r\nklovat\r\nklovávání\r\nklovávaný\r\nklovávat\r\nklovec\r\nklovnout\r\nklovnutí\r\nklovnutý\r\nklovu\r\nklový\r\nklozet\r\nklozetní\r\nklozetový\r\nKlozová\r\nKloz\r\nKlozův\r\nKlsáková\r\nKlsák\r\nKlsákův\r\nklub\r\nklubající\r\nklubání\r\nklubat\r\nklubávání\r\nklubávaný\r\nklubávat\r\nklub\r\nklubíčko\r\nklubismus\r\nklubista\r\nklubistčin\r\nklubistický\r\nklubistka\r\nklubistův\r\nklubko\r\nklubkovací\r\nklubkování\r\nklubkovaný\r\nklubkovat\r\nklubovější\r\nklubovka\r\nklubovna\r\nklubovní\r\nklubový\r\nklubu\r\nklůcek\r\nKlučenice\r\nklučenický\r\nklučení\r\nklučicí\r\nklučící\r\nklučičí\r\nklučík\r\nklučíkův\r\nklučina\r\nklučinův\r\nklučit\r\nklučka\r\nKlučov\r\nklučovský\r\nKlugarová\r\nKlugar\r\nKlugarův\r\nKlüglová\r\nKlügl\r\nKlüglův\r\nKluková\r\nKlukovice\r\nklukovický\r\nklukovina\r\nklukovský\r\nklukovství\r\nklukovštější\r\nkluk\r\nKluk\r\nKlukův\r\nklukův\r\nklusácký\r\nKlusáček\r\nKlusáčková\r\nKlusáčkův\r\nklusající\r\nklusák\r\nklusákův\r\nklusání\r\nklusat\r\nklusavka\r\nklusavý\r\nklus\r\nklusot\r\nkluzadlo\r\nkluzák\r\nKluzáková\r\nKluzák\r\nKluzákův\r\nkluz\r\nkluziště\r\nkluzký\r\nkluznice\r\nkluzný\r\nKluž\r\nKlužínek\r\nKlužínková\r\nKlužínkův\r\nklužštější\r\nklysma\r\nklystýr\r\nklyzma\r\nkm\r\nkmán\r\nKmecíková\r\nKmecík\r\nKmecíkův\r\nkmen\r\nkmenosloví\r\nkmenotvorný\r\nkmenovější\r\nkmenovina\r\nkmenový\r\nKmenta\r\nKmentová\r\nkmentový\r\nKment\r\nKmentův\r\nKmetiněves\r\nkmetiněveský\r\nkmet\r\nkmetství\r\nkmetštější\r\nkmetův\r\nkmihání\r\nkmihat\r\nkmih\r\nkmihnout\r\nKmínek\r\nkmínek\r\nkmín\r\nkmínka\r\nKmínková\r\nKmínkův\r\nkmínový\r\nkmitačka\r\nkmitající\r\nkmitání\r\nkmitat\r\nkmitávání\r\nkmitávat\r\nkmitavý\r\nkmit\r\nkmitnout\r\nkmitnutí\r\nkmitnutý\r\nkmitočet\r\nkmitočtový\r\nkmitoměr\r\nKmochová\r\nKmoch\r\nKmochův\r\nkmol\r\nkmotra\r\nkmotrovství\r\nkmotrovštější\r\nkmotr\r\nkmotrův\r\nkmotřencův\r\nkmotřenčin\r\nkmotřenec\r\nkmotřenka\r\nkmotříček\r\nkmotřička\r\nkmotříčkův\r\nkmotřin\r\nkmpromitující\r\nKnajflová\r\nKnajfl\r\nKnajflův\r\nknajpa\r\nKnápek\r\nKnapíková\r\nKnapík\r\nKnapíkův\r\nKnápková\r\nKnápkův\r\nKnapová\r\nKnappová\r\nKnapp\r\nKnappův\r\nKnap\r\nKnapův\r\nKnauteová\r\nKnaute\r\nKnauteův\r\nKneblová\r\nKnebl\r\nKneblův\r\nknedlíček\r\nknedlíčkový\r\nknedlík\r\nknedlíkovitější\r\nknedlíkový\r\nKneidlová\r\nKneidl\r\nKneidlův\r\nKneřová\r\nKneř\r\nKneřův\r\nkněz\r\nkněze\r\nknězem\r\nknězi\r\nkněz\r\nknězův\r\nKněždub\r\nKněževes\r\nkněževeský\r\nkněží\r\nkněžice\r\nkněžiččin\r\nkněžička\r\nkněžích\r\nkněžím\r\nkněžími\r\nkněžiště\r\nkněžka\r\nkněžna\r\nkněžnin\r\nKněžourek\r\nKněžourková\r\nKněžourkův\r\nkněžský\r\nkněžství\r\nkněžstvo\r\nkněžštější\r\nKnický\r\nkničení\r\nkničený\r\nkničet\r\nkničivější\r\nkničivý\r\nKníčová\r\nKníč\r\nKníčův\r\nknihárna\r\nknihařčin\r\nknihařka\r\nknihařský\r\nknihařství\r\nknihařštější\r\nknihař\r\nknihařův\r\nkniha\r\nknihkupcův\r\nknihkupectví\r\nknihkupec\r\nknihomil\r\nknihomilův\r\nknihomol\r\nknihomolštější\r\nknihomolův\r\nknihování\r\nknihovaný\r\nknihovat\r\nknihověda\r\nknihovna\r\nknihovnice\r\nknihovnický\r\nknihovnictví\r\nknihovničin\r\nknihovnička\r\nknihovník\r\nknihovníkův\r\nknihovní\r\nknihový\r\nknihtiskárna\r\nknihtiskařský\r\nknihtiskařství\r\nknihtisk\r\nknihtiskový\r\nkníkavý\r\nKnínice\r\nknínický\r\nKnín\r\nknínský\r\nknipl\r\nknírač\r\nkníračův\r\nkníratější\r\nknírek\r\nknír\r\nknírovitý\r\nKnirschová\r\nKnirsch\r\nKnirschův\r\nKnittlová\r\nKnittl\r\nKnittlův\r\nKnížáková\r\nKnížák\r\nKnížákův\r\nKníže\r\nknížecí\r\nknížectví\r\nknížečka\r\nkníže\r\nKnížete\r\nKnížetech\r\nKnížetem\r\nKnížeti\r\nKnižetová\r\nKnížetové\r\nKnížetů\r\nKnížetům\r\nKnížetův\r\nKnížety\r\nknížka\r\nknížkový\r\nknižnější\r\nknižnice\r\nknižní\r\nKnížová\r\nKnoblochová\r\nKnobloch\r\nKnoblochův\r\nknoflíček\r\nknoflíčkový\r\nknoflík\r\nknoflíkovací\r\nknoflíkovačka\r\nknoflíkování\r\nknoflíkovaný\r\nknoflíkovat\r\nknoflíkovitý\r\nknoflíkový\r\nknokaut\r\nknokautování\r\nknokautovaný\r\nknokautovat\r\nKnopová\r\nKnoppová\r\nKnopp\r\nKnoppův\r\nKnop\r\nKnopův\r\nKnotek\r\nknot\r\nKnotková\r\nKnotkův\r\nknotovka\r\nknotový\r\nkňourající\r\nkňourání\r\nkňouraný\r\nkňourat\r\nkňourávat\r\nkňouravější\r\nkňouravý\r\nkňour\r\nkňourův\r\nknovízský\r\nknow\r\nkňučení\r\nkňučet\r\nkňučící\r\nkňučivější\r\nkňučivý\r\nknuta\r\nkoagulace\r\nkoagulační\r\nkoagulátor\r\nkoagulování\r\nkoagulovaný\r\nkoagulovat\r\nkoagulovávání\r\nkoagulovávaný\r\nkoagulovávat\r\nkoala\r\nkoalice\r\nkoaliční\r\nkoalův\r\nkoaxiální\r\nkobalt\r\nkobaltitan\r\nkobaltitý\r\nkobaltnatý\r\nkobaltový\r\nKobělek\r\nKobělková\r\nKobělkův\r\nKobera\r\nkobercovina\r\nkobercový\r\nkoberec\r\nkobereček\r\nKoberová\r\nKoberův\r\nKobeřice\r\nkobeřický\r\nkobka\r\nKoblenec\r\nKobliha\r\nkobliha\r\nKoblihová\r\nkoblihový\r\nKoblihův\r\nKoblížek\r\nkoblížek\r\nkobližka\r\nKoblížková\r\nKoblížkův\r\nKobosilová\r\nKobosil\r\nKobosilův\r\nkobra\r\nKobrleová\r\nKobrle\r\nKobrleův\r\nKoburk\r\nKoburský\r\nkobyla\r\nkobylinec\r\nkobyliský\r\nKobylisy\r\nkobylí\r\nkobylka\r\nkobylkový\r\nKobylnice\r\nkobylnický\r\nKobza\r\nKobzová\r\nKobzův\r\nkocábka\r\nKocábová\r\nKocáb\r\nKocábův\r\nKocanda\r\nKocandová\r\nKocandův\r\nKocianová\r\nKociánová\r\nKocian\r\nKocián\r\nKocianův\r\nKociánův\r\nKoclířov\r\nkoclířovský\r\nKocmanová\r\nKocman\r\nKocmanův\r\nkocourek\r\nKocourek\r\nKocourková\r\nkocourkov\r\nkocourkovský\r\nKocourkův\r\nkocourkův\r\nkocourový\r\nkocour\r\nkocourův\r\nkocouří\r\nkocovina\r\nKocumová\r\nKocum\r\nKocumův\r\nKocůrová\r\nKocůr\r\nKocůrův\r\nKocychová\r\nKocych\r\nKocychův\r\nKočandrle\r\nKočandrlová\r\nKočandrlův\r\nKočárek\r\nkočárek\r\nkočár\r\nkočárkárna\r\nKočárková\r\nkočárkový\r\nKočárkův\r\nKočárníková\r\nKočárník\r\nKočárníkův\r\nkočárový\r\nkoččin\r\nKočenda\r\nKočendová\r\nKočendův\r\nkočenka\r\nkočiččin\r\nkočičina\r\nkočičí\r\nKočička\r\nkočička\r\nKočičková\r\nkočičkový\r\nKočičkův\r\nKočín\r\nkočínský\r\nkočírování\r\nkočírovaný\r\nkočírovat\r\nKočí\r\nkočí\r\nkočka\r\nkočkodan\r\nkočkodanův\r\nkočkovat\r\nkočkovitý\r\nkočování\r\nkočovat\r\nKočová\r\nKočov\r\nkočovnější\r\nkočovnický\r\nkočovničtější\r\nkočovník\r\nkočovníkův\r\nkočovný\r\nkočovský\r\nkočující\r\nKočův\r\nkodaňský\r\nKodaň\r\nkodein\r\nKodera\r\nkodér\r\nKoderová\r\nkodér\r\nKoderův\r\nkodérův\r\nKodešová\r\nKodeš\r\nKodešův\r\nKodetová\r\nKodet\r\nKodetův\r\nkodex\r\nkód\r\nKodíček\r\nKodíčková\r\nKodíčkův\r\nkodifikace\r\nkodifikační\r\nkodifikovanější\r\nkodifikování\r\nkodifikovaný\r\nkodifikovat\r\nkodifikovávání\r\nkodifikovávaný\r\nkodifikovávat\r\nkodifikující\r\nKodoňová\r\nKodoň\r\nKodoňův\r\nkódovací\r\nkódovač\r\nkódovačův\r\nkódování\r\nkódovaný\r\nkódovat\r\nkódovávání\r\nkódovávaný\r\nkódovávat\r\nkódový\r\nkodrcající\r\nkodrcání\r\nkodrcaný\r\nkodrcat\r\nkodrcavý\r\nkódující\r\nKodymová\r\nKodym\r\nKodymův\r\nkoedice\r\nkoedukace\r\nkoedukační\r\nkoedukční\r\nkoedukovaný\r\nkoeficient\r\nkoenzym\r\nKoerberový\r\nKoerberův\r\nkoexistence\r\nkoexistování\r\nkoexistovat\r\nkoexistující\r\nkofaktor\r\nkofein\r\nkofeinový\r\nkofinální\r\nkoflíček\r\nkoflík\r\nKofránek\r\nKofránková\r\nKofránkův\r\nkofunkce\r\nkogenerace\r\nkogenerační\r\nkognitivistický\r\nkognitivnější\r\nkognitivní\r\nkogradient\r\nKoháček\r\nKoháčková\r\nKoháčkův\r\nKoháková\r\nKohák\r\nKohákův\r\nkoherence\r\nkoherentní\r\nkoherer\r\nkoheze\r\nkohezivní\r\nkoheznější\r\nkohezní\r\nKohlíček\r\nKohlíčková\r\nKohlíčkův\r\nKohlíková\r\nKohlík\r\nKohlíkův\r\nkoho\r\nkohokoli\r\nkohokoliv\r\nkohomologie\r\nkohomotopie\r\nkohopak\r\nkohorta\r\nkohos\r\nkohosi\r\nkohoutek\r\nKohoutek\r\nkohoutí\r\nKohoutková\r\nkohoutkový\r\nKohoutkův\r\nkohoutkův\r\nKohoutová\r\nKohoutovice\r\nkohoutovický\r\nKohoutov\r\nkohoutovský\r\nkohoutový\r\nkohout\r\nKohout\r\nKohoutův\r\nkohoutův\r\nkohož\r\nkochající\r\nkochání\r\nKochánov\r\nkochánovský\r\nkochat\r\nKöchlinův\r\nKochová\r\nKoch\r\nKochův\r\nkoinciální\r\nkoincidence\r\nkoincidenční\r\nkoincidentní\r\nkoincidování\r\nkoincidovaný\r\nkoincidovat\r\nkoitální\r\nkoitus\r\nkojádro\r\nKojatín\r\nkojatínský\r\nKojčice\r\nkojčický\r\nkojencův\r\nkojenčin\r\nkojenecký\r\nkojenec\r\nkojenečtější\r\nkojenější\r\nkojení\r\nkojenka\r\nkojený\r\nKojetice\r\nkojetický\r\nKojetín\r\nkojetínský\r\nkóje\r\nkojící\r\nkojit\r\nkojivý\r\nkojná\r\nkojotí\r\nkojot\r\nkojotův\r\nKójová\r\nKojšovice\r\nkojšovický\r\nKój\r\nKójův\r\nkokain\r\nkokainista\r\nkokainistčin\r\nkokainistka\r\nkokainistův\r\nkokainový\r\nkokarda\r\nkoka\r\nkokcidie\r\nKokela\r\nKokešová\r\nKokeš\r\nKokešův\r\nkoketa\r\nkoketérie\r\nkoketin\r\nkoketka\r\nkoketnější\r\nkoketní\r\nkoketování\r\nkoketovaný\r\nkoketovat\r\nkoketující\r\nkok\r\nkokila\r\nkokilový\r\nkokodák\r\nkokokodák\r\nkokon\r\nKokořín\r\nKokořínsko\r\nkokořínský\r\nKokořová\r\nKokoř\r\nKokořův\r\nkokos\r\nkokoska\r\nkokosový\r\nKokoška\r\nkokoška\r\nKokošková\r\nKokoškův\r\nkokotčin\r\nkokotice\r\nkokotka\r\nkokový\r\nkokpit\r\nkokrhání\r\nkokrhaný\r\nkokrhat\r\nkokrhavý\r\nkokrhel\r\nkokršpaněl\r\nkokršpanělův\r\nkoksárenský\r\nkoksárenství\r\nkoksárna\r\nkoks\r\nkoksovací\r\nkoksování\r\nkoksovaný\r\nkoksovat\r\nkoksovatelnější\r\nkoksovatelný\r\nkoksovna\r\nkoksový\r\nkoktail\r\nkoktající\r\nkoktajl\r\nkoktání\r\nkoktaný\r\nkokta\r\nkoktat\r\nkoktávání\r\nkoktávaný\r\nkoktávat\r\nkoktavější\r\nkoktavý\r\nkoktejl\r\nkoktejlový\r\nkoktův\r\nkokus\r\nkol\r\nkolaborace\r\nkolaborantčin\r\nkolaborantka\r\nkolaborant\r\nkolaborantský\r\nkolaborantství\r\nkolaborantštější\r\nkolaborantův\r\nkolaborování\r\nkolaborovat\r\nkolaborovávání\r\nkolaborovávat\r\nkolaborující\r\nkolabování\r\nkolabovat\r\nkolabovávání\r\nkolabovávat\r\nkolabující\r\nkolace\r\nkolacionovat\r\nKoláček\r\nkoláček\r\nKoláčková\r\nkoláčkový\r\nKoláčkův\r\nKolačný\r\nkoláčový\r\nkoláč\r\nkolagen\r\nkolaps\r\nkolapsový\r\nkolárek\r\nKolaříková\r\nKolařík\r\nKolaříkův\r\nKolářová\r\nkolářský\r\nkolářství\r\nkolář\r\nKolář\r\nKolářův\r\nkolářův\r\nkolaudace\r\nkolaudační\r\nkolaudování\r\nkolaudovaný\r\nkolaudovat\r\nkolaudovávání\r\nkolaudovávaný\r\nkolaudovávat\r\nKola\r\nkolážista\r\nkolážistčin\r\nkolážistka\r\nkolážistův\r\nkolážový\r\nkoláž\r\nkolba\r\nkolbenka\r\nkolbiště\r\nKolčava\r\nkolčava\r\nKolčavová\r\nKolčavův\r\nKolda\r\nKolderová\r\nKolder\r\nKolderův\r\nKoldinský\r\nKoldínský\r\nKoldův\r\nkolébající\r\nkolébání\r\nkolébaný\r\nkolébat\r\nkolébávání\r\nkolébávaný\r\nkolébávat\r\nkolébavější\r\nkolébavý\r\nkolébka\r\nkolébkový\r\nkolečkářčin\r\nkolečkářka\r\nkolečkář\r\nkolečkářův\r\nkolečko\r\nKolečko\r\nKolečková\r\nkolečkovější\r\nkolečkový\r\nKolečkův\r\nkoleda\r\nkolednice\r\nkoledničin\r\nkoledník\r\nkoledníkův\r\nkolední\r\nkoledování\r\nkoledovaný\r\nkoledovat\r\nkolega\r\nkolegialita\r\nkolegiálnější\r\nkolegiální\r\nkolegiátní\r\nkolegiát\r\nkolegiátův\r\nkolegium\r\nkolegův\r\nkolegyňčin\r\nkolegyně\r\nkolegynin\r\nkolegyňka\r\nkolejenka\r\nkolejiště\r\nkolejka\r\nkolejkův\r\nkolejnice\r\nkolejnicový\r\nkolejnička\r\nkolejní\r\nkolejový\r\nkolej\r\nkolekce\r\nKolek\r\nkolek\r\nkolektiv\r\nkolektivismus\r\nkolektivista\r\nkolektivistčin\r\nkolektivistický\r\nkolektivistka\r\nkolektivistův\r\nkolektivita\r\nkolektivizace\r\nkolektivizační\r\nkolektivizování\r\nkolektivizovaný\r\nkolektivizovat\r\nkolektivizující\r\nkolektivnější\r\nkolektivní\r\nkolektor\r\nkolektorový\r\nkolektorský\r\nkolem\r\nkolemjdoucí\r\nkolemjedoucí\r\nkolemprojíždějící\r\nkolemsedící\r\nkolemstojící\r\nkolenatější\r\nkolene\r\nkolénko\r\nkolenní\r\nkoleno\r\nkolenopákový\r\nkolenou\r\nKolesárová\r\nKolesár\r\nKolesárův\r\nkoleska\r\nkoleso\r\nkolesový\r\nKolešovice\r\nKolešov\r\nkolešovský\r\nkolchoz\r\nkolchoznice\r\nkolchoznický\r\nkolchozničin\r\nkolchozník\r\nkolchozníkův\r\nkolchozní\r\nkolíbací\r\nKoliba\r\nkolíbavý\r\nkoliba\r\nkolíbka\r\nKolibová\r\nkolibřík\r\nkolibříkův\r\nkolibří\r\nKolibův\r\nkolíček\r\nkolíčkovací\r\nkolíčkování\r\nkolíčkovaný\r\nkolíčkovat\r\nkolíčkový\r\nkolidování\r\nkolidovat\r\nkolidovávání\r\nkolidovávat\r\nkolie\r\nkoliha\r\nkolik\r\nkolika\r\nkolikaciferný\r\nkolikahodinový\r\nkolikanásobný\r\nkolikapatrový\r\nkolikastránkový\r\nkolikátý\r\nkolika\r\nkolikero\r\nkolikery\r\nkolikerý\r\nkolík\r\nkolíkovat\r\nkolíkový\r\nkolikový\r\nkolikpak\r\nkolikrát\r\nkolikráte\r\nkolikže\r\nkolineární\r\nkolinecký\r\nKolinec\r\nkolínko\r\nKolín\r\nKolínová\r\nKolín\r\nKolínsko\r\nkolínský\r\nKolínův\r\nkolísající\r\nkolísání\r\nkolísat\r\nkolísávání\r\nkolísávat\r\nkolísavější\r\nkolísavý\r\nkolíska\r\nKolísko\r\nKolísková\r\nKolískův\r\nkoliště\r\nkolitida\r\nkolize\r\nkoliznější\r\nkolizní\r\nkoljuška\r\nkolkolem\r\nkolkování\r\nkolkovaný\r\nkolkovat\r\nkolkovávání\r\nkolkovávaný\r\nkolkovávat\r\nKolková\r\nkolkovné\r\nkolkový\r\nKolkův\r\nKollár\r\nKollárův\r\nKollertová\r\nKollert\r\nKollertův\r\nKolmanová\r\nKolman\r\nKolmanův\r\nkolměji\r\nkolmější\r\nkolmice\r\nkolmo\r\nKolmogorov\r\nKolmogorovův\r\nkolmý\r\nkolna\r\nKolnerová\r\nKolner\r\nKolnerův\r\nkolnička\r\nkoloběh\r\nkoloběžka\r\nKolobřeh\r\nkolobřežský\r\nKoločava\r\nkoločavský\r\nkoločský\r\nKoloděje\r\nkoloděj\r\nkolodium\r\nkolódium\r\nkolohnát\r\nkolohnátův\r\nkoloid\r\nkoloidní\r\nkolokace\r\nkolokointový\r\nkolokvialismus\r\nkolokvialistický\r\nkolokvium\r\nkolomaz\r\nKolomazníková\r\nKolomazník\r\nKolomazníkův\r\nkolombína\r\nkolombínčin\r\nkolombínin\r\nkolombínka\r\nKolombo\r\nKolombová\r\nKolombův\r\nkolo\r\nkolonáda\r\nkolonádní\r\nkolona\r\nkoloniál\r\nkolonialismus\r\nkolonialista\r\nkolonialistický\r\nkolonialističtější\r\nkolonialistův\r\nkoloniální\r\nkolonie\r\nkolonista\r\nkolonistčin\r\nkolonistka\r\nkolonistův\r\nkolonizace\r\nkolonizační\r\nkolonizátor\r\nkolonizátorský\r\nkolonizátorův\r\nkolonizování\r\nkolonizovaný\r\nkolonizovat\r\nkolonka\r\nkolonoskopie\r\nkolonový\r\nKolorado\r\nkoloratura\r\nkoloraturní\r\nkolorimetr\r\nkolorimetrický\r\nkolorimetričtější\r\nkolorimetrie\r\nkolorismus\r\nkolorista\r\nkoloristčin\r\nkoloristický\r\nkoloristika\r\nkoloristka\r\nkoloristův\r\nkolorit\r\nkolorování\r\nkolorovaný\r\nkolorovat\r\nkolorovávání\r\nkolorovávaný\r\nkolorovávat\r\nkolosálnější\r\nkolosální\r\nkoloseum\r\nkolos\r\nkolostrální\r\nkolotající\r\nkolotání\r\nkolotočářčin\r\nkolotočářka\r\nkolotočář\r\nkolotočářův\r\nkolotočový\r\nkolotoč\r\nKolouchová\r\nkolouch\r\nKolouch\r\nKolouchův\r\nkolouchův\r\nkoloušek\r\nkolovací\r\nkolovadlo\r\nkolování\r\nkolovat\r\nkolovávání\r\nkolovávat\r\nKolová\r\nKoloveč\r\nkolovrátek\r\nkolovrat\r\nkolovrátkový\r\nkolovský\r\nkolový\r\nKolowratová\r\nKolowrat\r\nKolowratský\r\nKolowratův\r\nkolportážní\r\nkolportáž\r\nkolportérčin\r\nkolportérka\r\nkolportér\r\nkolportérův\r\nkolportování\r\nkolportovaný\r\nkolportovat\r\nkolský\r\nKolšov\r\nkolšovský\r\nkolt\r\nkolující\r\nkolumbárium\r\nKolumbie\r\nKolumbijcův\r\nKolumbijčin\r\nKolumbijec\r\nKolumbijka\r\nkolumbijský\r\nkolumbijský\r\nkolumbit\r\nKolumbus\r\nKolumbův\r\nkóma\r\nKomancová\r\nKomancův\r\nkomanč\r\nkomančův\r\nkomandant\r\nkomandantův\r\nkomandér\r\nkomandérův\r\nkomandista\r\nkomandistčin\r\nkomandistka\r\nkomandistův\r\nkomanditista\r\nkomanditistčin\r\nkomanditistka\r\nkomanditistův\r\nkomanditní\r\nkomando\r\nkomandování\r\nkomandovaný\r\nkomandovat\r\nkomandující\r\nKomanec\r\nkománek\r\nKomanický\r\nkomárek\r\nKomárek\r\nKomárková\r\nKomárkův\r\nkomárkův\r\nKomárno\r\nKomárov\r\nkomárovský\r\nkomár\r\nkomárův\r\nkomáří\r\nkomatózní\r\nkoma\r\nkombajnérčin\r\nkombajnérka\r\nkombajnér\r\nkombajnérův\r\nkombajn\r\nkombajnista\r\nkombajnistčin\r\nkombajnistka\r\nkombajnistův\r\nkombajnový\r\nkombi\r\nkombinace\r\nkombinačky\r\nkombinačnější\r\nkombinační\r\nkombinát\r\nkombinátní\r\nkombinátor\r\nkombinatorický\r\nkombinatoričtější\r\nkombinatorika\r\nkombinátorův\r\nkombiné\r\nkombinéza\r\nkombinovanější\r\nkombinování\r\nkombinovaný\r\nkombinovat\r\nkombinovatelný\r\nkombinovatelný\r\nkombinující\r\nkombo\r\nkomediálnější\r\nkomediální\r\nkomediantčin\r\nkomediantka\r\nkomediant\r\nkomediantský\r\nkomediantství\r\nkomediantštější\r\nkomediantův\r\nkomedie\r\nkomedijní\r\nKomenda\r\nkomenda\r\nKomendová\r\nKomendův\r\nKomenský\r\nkomentářový\r\nkomentář\r\nkomentátorčin\r\nkomentátorka\r\nkomentátor\r\nkomentátorský\r\nkomentátorův\r\nkomentovanější\r\nkomentování\r\nkomentovaný\r\nkomentovat\r\nkomentující\r\nkomepenzační\r\nkomerce\r\nkomercialismus\r\nkomercialistický\r\nkomercializace\r\nkomercializování\r\nkomercializovaný\r\nkomercializovat\r\nkomercionalismus\r\nkomercionalizace\r\nkomercionalizování\r\nkomercionalizovaný\r\nkomercionalizovat\r\nkomerčnější\r\nkomerční\r\nkometární\r\nkometa\r\nkomfort\r\nkomfortnější\r\nkomfortní\r\nkomický\r\nkomiččin\r\nkomička\r\nkomično\r\nkomičtější\r\nkomíhající\r\nkomíhání\r\nkomíhat\r\nkomíhavý\r\nkomika\r\nkomik\r\nkomiks\r\nkomiksový\r\nkomikův\r\nKomínek\r\nkomínek\r\nkomín\r\nkominice\r\nkominický\r\nkominictví\r\nkominíček\r\nkominičtější\r\nkominík\r\nkominíkův\r\nKomínková\r\nkomínkový\r\nKomínkův\r\nkomín\r\nkomínovka\r\nkomínový\r\nkominterna\r\nkomisárek\r\nkomisařčin\r\nkomisařka\r\nkomisařský\r\nkomisařství\r\nkomisař\r\nkomisařův\r\nkomise\r\nkomisionální\r\nkomisionářský\r\nkomisionářství\r\nkomisionář\r\nkomisionářův\r\nkomisnější\r\nkomisní\r\nkomitent\r\nkomitentův\r\nkomitét\r\nkomitý\r\nkomkoli\r\nkomkoliv\r\nkomnata\r\nKomňa\r\nKomnénosův\r\nkomoda\r\nkomodita\r\nkomoditní\r\nkomodor\r\nkomodorův\r\nkomolení\r\nkomolený\r\nkomolící\r\nkomolit\r\nkomolý\r\nkomondor\r\nkomondorův\r\nkomoň\r\nkomoňův\r\nkomora\r\nkomorná\r\nkomornější\r\nkomorník\r\nkomorníkův\r\nkomorní\r\nKomorousová\r\nKomorous\r\nKomorousův\r\nkomorový\r\nkomorský\r\nKomory\r\nKomořančin\r\nKomořanka\r\nKomořan\r\nKomořanův\r\nkomoří\r\nkompak\r\nkompaktátum\r\nkompakt\r\nkompaktifikace\r\nkompaktnější\r\nkompaktní\r\nkompaktor\r\nkompanie\r\nkompaňon\r\nkomparace\r\nkomparační\r\nkomparatista\r\nkomparatistčin\r\nkomparatistika\r\nkomparatistka\r\nkomparatistův\r\nkomparativ\r\nkomparativní\r\nkomparátor\r\nkompars\r\nkomparsista\r\nkomparsistčin\r\nkomparsistka\r\nkomparsistův\r\nkomparsový\r\nkomparz\r\nkomparzista\r\nkomparzistčin\r\nkomparzistka\r\nkomparzistův\r\nkompas\r\nkompasový\r\nkompatibilita\r\nkompatibilnější\r\nkompatibilní\r\nkompendium\r\nkompenzace\r\nkompenzační\r\nkompenzátor\r\nkompenzování\r\nkompenzovaný\r\nkompenzovat\r\nkompenzovatelný\r\nkompenzující\r\nkompetence\r\nkompetenční\r\nkompetentnější\r\nkompetentní\r\nkompetitivnější\r\nkompilace\r\nkompilační\r\nkompilát\r\nkompilátor\r\nkompilování\r\nkompilovaný\r\nkompilovat\r\nkompilovávání\r\nkompilovávaný\r\nkompilovávat\r\nkompilující\r\nkomplementarita\r\nkomplementárnější\r\nkomplementární\r\nkomplementářčin\r\nkomplementářka\r\nkomplementář\r\nkomplementářův\r\nkomplementfixační\r\nkomplement\r\nkompletace\r\nkompletář\r\nkompletářův\r\nkomplet\r\nkompletnější\r\nkompletní\r\nkompletování\r\nkompletovaný\r\nkompletovat\r\nkompletující\r\nkomplex\r\nkomplexifikace\r\nkomplexita\r\nkomplexnější\r\nkomplexní\r\nkomplexotvorný\r\nkomplic\r\nkomplicův\r\nkomplikace\r\nkomplikovanější\r\nkomplikování\r\nkomplikovaný\r\nkomplikovat\r\nkomplikovávání\r\nkomplikovávaný\r\nkomplikovávat\r\nkomplikující\r\nkompliment\r\nkomplot\r\nkomponenta\r\nkomponent\r\nkomponentní\r\nkomponentový\r\nkomponista\r\nkomponistčin\r\nkomponistka\r\nkomponistův\r\nkomponování\r\nkomponovaný\r\nkomponovat\r\nkomponovatelný\r\nkomponovávání\r\nkomponovávaný\r\nkomponovávat\r\nkomponující\r\nkomposesorát\r\nkomposice\r\nkompositní\r\nkompost\r\nkompostní\r\nkompostování\r\nkompostovaný\r\nkompostovat\r\nkompostový\r\nkompot\r\nkompotování\r\nkompotovaný\r\nkompotovat\r\nkompotový\r\nkompoundní\r\nkompozice\r\nkompoziční\r\nkompoziční\r\nkompozit\r\nkompozitní\r\nkompozitový\r\nkompozitum\r\nkomprese\r\nkompresivní\r\nkompresní\r\nkompresor\r\nkompresorovna\r\nkompresorový\r\nkomprimace\r\nkomprimační\r\nkomprimát\r\nkomprimování\r\nkomprimovaný\r\nkomprimovat\r\nkomprimující\r\nkompromis\r\nkompromisnější\r\nkompromisní\r\nkompromitace\r\nkompromitování\r\nkompromitovaný\r\nkompromitovat\r\nkompromitující\r\nkomputer\r\nKomrska\r\nKomrsková\r\nKomrskův\r\nkoms\r\nkomsi\r\nKomské\r\nkomsomolcův\r\nkomsomolčin\r\nkomsomolec\r\nKomsomol\r\nkomsomolka\r\nkomsomolský\r\nkomsomolský\r\nkomsomolštější\r\nkomtesa\r\nkomtesčin\r\nkomtesin\r\nkomteska\r\nkomtur\r\nkomturství\r\nkomturův\r\nkomukoli\r\nkomukoliv\r\nkomunálčin\r\nkomunál\r\nkomunál\r\nkomunálka\r\nkomunální\r\nkomunard\r\nkomunardův\r\nkomuna\r\nkomunikace\r\nkomunikační\r\nkomunikát\r\nkomunikativnější\r\nkomunikativní\r\nkomunikativnost\r\nkomunikátor\r\nkomuniké\r\nkomunikování\r\nkomunikovaný\r\nkomunikovat\r\nkomunikovatelnější\r\nkomunikovatelný\r\nkomunikovávání\r\nkomunikovávaný\r\nkomunikovávat\r\nkomunikující\r\nkomunismus\r\nkomunista\r\nkomunistčin\r\nkomunistický\r\nkomunističtější\r\nkomunistka\r\nkomunistův\r\nkomunitární\r\nkomunita\r\nkomunitní\r\nkomunizující\r\nkomupak\r\nkomůrka\r\nkomůrkový\r\nkomus\r\nkomusi\r\nkomutace\r\nkomutační\r\nkomutant\r\nkomutativita\r\nkomutativní\r\nkomutátor\r\nkomutátorový\r\nkomutování\r\nkomutovaný\r\nkomutovaný\r\nkomutovat\r\nkomuž\r\nkomž\r\nkomžička\r\nkoňadra\r\nkonající\r\nkoňak\r\nkoňák\r\nkoňakový\r\nkonanější\r\nkonání\r\nkonaný\r\nKoňárek\r\nKoňárková\r\nKoňárkův\r\nKoňaříková\r\nKoňařík\r\nKoňaříkův\r\nKoňasová\r\nKoňas\r\nKoňasův\r\nkonatelský\r\nkonatel\r\nkonatelův\r\nkonativní\r\nkonat\r\nkonávající\r\nkonávanější\r\nkonávání\r\nkonávaný\r\nkonávat\r\nkonce\r\nkoncelebrace\r\nkoncelebrant\r\nkoncelebrantův\r\nkoncelebrování\r\nkoncelebrovaný\r\nkoncelebrovat\r\nkoncelebrovávání\r\nkoncelebrovávaný\r\nkoncelebrovávat\r\nkoncem\r\nkoncentrace\r\nkoncentráčnice\r\nkoncentráčnický\r\nkoncentráčničin\r\nkoncentráčník\r\nkoncentráčníkův\r\nkoncentrační\r\nkoncentrák\r\nkoncentrát\r\nkoncentrátor\r\nkoncentrický\r\nkoncentrovanější\r\nkoncentrování\r\nkoncentrovaný\r\nkoncentrovat\r\nkoncentrovávat\r\nkoncentrující\r\nkoncepce\r\nkoncepčnější\r\nkoncepční\r\nkoncept\r\nkonceptismus\r\nkonceptní\r\nkonceptualismus\r\nkonceptualista\r\nkonceptualistčin\r\nkonceptualistický\r\nkonceptualističtější\r\nkonceptualistka\r\nkonceptualistův\r\nkonceptualizace\r\nkonceptualizační\r\nkonceptualizovatelný\r\nkonceptuálnější\r\nkonceptuální\r\nkonceptuální\r\nkoncern\r\nkoncernový\r\nkoncert\r\nkoncertní\r\nkoncertování\r\nkoncertovat\r\nkoncertovávání\r\nkoncertovávat\r\nkoncertující\r\nkoncese\r\nkoncesionářčin\r\nkoncesionářka\r\nkoncesionářský\r\nkoncesionář\r\nkoncesionářův\r\nkoncesní\r\nkoncesovaný\r\nkonci\r\nkoncil\r\nkonciliantnější\r\nkoncilní\r\nkoncilový\r\nkoncipientčin\r\nkoncipientka\r\nkoncipient\r\nkoncipientův\r\nkoncipista\r\nkoncipistčin\r\nkoncipistka\r\nkoncipistův\r\nkoncipování\r\nkoncipovaný\r\nkoncipovat\r\nkoncipovávání\r\nkoncipovávaný\r\nkoncipovávat\r\nkoncipující\r\nkoncízní\r\nkoncovka\r\nkoncovkový\r\nkoncový\r\nkonče\r\nkončení\r\nkončený\r\nkončetina\r\nkončetinový\r\nkončíc\r\nkončící\r\nkončina\r\nkončit\r\nkončívání\r\nkončívaný\r\nkončívat\r\nkondensování\r\nkondensovaný\r\nkondensovat\r\nkondenzace\r\nkondenzační\r\nkondenzát\r\nkondenzátor\r\nkondenzátorový\r\nkondenzor\r\nkondenzovanější\r\nkondenzování\r\nkondenzovaný\r\nkondenzovat\r\nkondenzovatelný\r\nkondenzující\r\nkondice\r\nkondicionační\r\nkondicionál\r\nkondicionalismus\r\nkondicionér\r\nkondiční\r\nkondolence\r\nkondolenční\r\nkondolování\r\nkondolovaný\r\nkondolovat\r\nkondolovávání\r\nkondolovávaný\r\nkondolovávat\r\nkondom\r\nkondominium\r\nkondomový\r\nkondor\r\nkondorův\r\nKondrová\r\nKondr\r\nKondrův\r\nkonduktérčin\r\nkonduktérka\r\nkonduktér\r\nkonduktérův\r\nkonduktometrický\r\nkonduktometričtější\r\nkonduktor\r\nkonduktorův\r\nkondylom\r\nkoně\r\nkoneckonců\r\nkonec\r\nkoneček\r\nkonečně\r\nkonečnější\r\nkonečník\r\nkonečníkový\r\nKonečný\r\nkonečný\r\nkonejšení\r\nkonejšený\r\nkonejšící\r\nkonejšit\r\nkonejšivější\r\nkonejšivý\r\nkonektivita\r\nkonektivní\r\nkonektor\r\nkonektorový\r\nkoněm\r\nkoněspřežní\r\nKoněšín\r\nkoněšínský\r\nkonévka\r\nkoněvodstvo\r\nkonev\r\nkonexe\r\nkonfederace\r\nkonfederační\r\nkonfekce\r\nkonfekční\r\nkonference\r\nkonferenciérčin\r\nkonferenciérka\r\nkonferencier\r\nkonferenciér\r\nkonferencierův\r\nkonferenciérův\r\nkonferenční\r\nkonferování\r\nkonferovaný\r\nkonferovat\r\nkonfese\r\nkonfesijní\r\nkonfesionalismus\r\nkonfesionalistický\r\nkonfesionálnější\r\nkonfesní\r\nkonfeta\r\nkonfidenční\r\nkonfidentčin\r\nkonfidentka\r\nkonfident\r\nkonfidentství\r\nkonfidentův\r\nkonfigurace\r\nkonfigurační\r\nkonfigurátor\r\nkonfigurátorův\r\nkonfigurovanější\r\nkonfigurování\r\nkonfigurovaný\r\nkonfigurovat\r\nkonfigurovatelnější\r\nkonfigurovatelný\r\nkonfigurovávání\r\nkonfigurovávaný\r\nkonfigurovávat\r\nkonfigurující\r\nkonfirmace\r\nkonfirmační\r\nkonfirmand\r\nkonfirmování\r\nkonfirmovaný\r\nkonfirmovaný\r\nkonfirmovat\r\nkonfirmovávat\r\nkonfiskace\r\nkonfiskační\r\nkonfiskát\r\nkonfiskování\r\nkonfiskovaný\r\nkonfiskovat\r\nkonfiskovávání\r\nkonfiskovávaný\r\nkonfiskovávat\r\nkonflagrace\r\nkonflikt\r\nkonfliktnější\r\nkonfliktní\r\nkonfliktový\r\nkonfokální\r\nkonformace\r\nkonformační\r\nkonformer\r\nkonformismus\r\nkonformista\r\nkonformistčin\r\nkonformistický\r\nkonformistka\r\nkonformistův\r\nkonformita\r\nkonformnější\r\nkonformní\r\nkonformovat\r\nkonfrontace\r\nkonfrontačnější\r\nkonfrontační\r\nkonfrontování\r\nkonfrontovaný\r\nkonfrontovat\r\nkonfrontovávání\r\nkonfrontovávaný\r\nkonfrontovávat\r\nkonfrontující\r\nkonfucianismus\r\nkonfucián\r\nkonfuciánský\r\nkonfuciánství\r\nkonfuciánův\r\nKonfucius\r\nKonfuciův\r\nkonfusnější\r\nkonfúznější\r\nkonfuzní\r\nkonfúzní\r\nKongančin\r\nKonganka\r\nKongan\r\nKonganův\r\nkongenialita\r\nkongeniální\r\nkonglomerát\r\nKongo\r\nkongregace\r\nkongregační\r\nkongres\r\nkongresman\r\nkongresmanův\r\nkongresový\r\nkongruální\r\nkongruence\r\nkongruentní\r\nkongruový\r\nkonchoida\r\nkoni\r\nkoní\r\nkoniášovský\r\nKonice\r\nkonický\r\nkónický\r\nkoníček\r\nKoníček\r\nKoníčková\r\nkoníčkový\r\nKoníčkův\r\nkoníčkův\r\nkóničtější\r\nkonidie\r\nkonidiový\r\nkonifera\r\nkoniferový\r\nKönigová\r\nKönig\r\nKönigův\r\nkoních\r\nkoniklec\r\nkoník\r\nkoníkův\r\nkoním\r\nkonina\r\nkonipásek\r\nkonipasovitý\r\nkonipas\r\nkonipasův\r\nkonírna\r\nkonjekturální\r\nkonjektura\r\nkonjugace\r\nkonjugační\r\nkonjugování\r\nkonjugovaný\r\nkonjugovat\r\nkonjukturalismus\r\nkonjukturalistický\r\nkonjunkce\r\nkonjunktiv\r\nkonjunktivní\r\nkonjunkturalismus\r\nkonjunkturalista\r\nkonjunkturalistčin\r\nkonjunkturalistka\r\nkonjunkturalistův\r\nkonjunkturálnější\r\nkonjunkturální\r\nkonjunktura\r\nkonjunkturní\r\nkonkatenace\r\nkonkávnější\r\nkonkávní\r\nkoňka\r\nkonkludentnější\r\nkonkludentní\r\nkonkordance\r\nkonkordát\r\nkonkrece\r\nkonkretista\r\nkonkretistčin\r\nkonkretistka\r\nkonkretistův\r\nkonkretizace\r\nkonkretizování\r\nkonkretizovaný\r\nkonkretizovat\r\nkonkretizující\r\nkonkrétnější\r\nkonkrétní\r\nkonkretní\r\nkonkrétum\r\nkonkubinát\r\nkonkubína\r\nkonkubínin\r\nkonkurenceneschopnější\r\nkonkurenceschopnější\r\nkonkurenceschopný\r\nkonkurence\r\nkonkurenčnější\r\nkonkurenční\r\nkonkurentčin\r\nkonkurentka\r\nkonkurent\r\nkonkurentův\r\nkonkurování\r\nkonkurovat\r\nkonkurovávat\r\nkonkurs\r\nkonkursní\r\nkonkurující\r\nkonkurz\r\nkonkurzní\r\nkoňmi\r\nkoňmo\r\nkonoid\r\nkonoidní\r\nKonopáčová\r\nKonopáč\r\nKonopáčův\r\nKonopa\r\nKonopásek\r\nKonopásková\r\nKonopáskův\r\nkonopí\r\nKonopiský\r\nKonopiště\r\nKonopka\r\nkonopka\r\nKonopková\r\nKonopkův\r\nkonopný\r\nKonopová\r\nKonopův\r\nKonorský\r\nkonotace\r\nkoňovi\r\nkoňovitý\r\nKonrádová\r\nKonrád\r\nKonrádův\r\nkonsekrace\r\nkonsekrační\r\nkonsekrovaný\r\nkonsekrovat\r\nkonsekvence\r\nkonsekventnější\r\nkonsekventní\r\nkonsensuální\r\nkonsensus\r\nkonsenzus\r\nkonservatismus\r\nkonservativnější\r\nkonservativní\r\nkonservatoř\r\nkonservatořův\r\nkonserva\r\nkonsignace\r\nkonsiliární\r\nkonsilium\r\nkonsistence\r\nkonsistentnější\r\nkonsistentní\r\nkonsituace\r\nkoňský\r\nkonsolidace\r\nkonsolidační\r\nkonsolidovanější\r\nkonsolidování\r\nkonsolidovaný\r\nkonsolidovat\r\nkonsolidující\r\nkonsolový\r\nkonsonance\r\nkonsonanční\r\nkonsonant\r\nkonsonantický\r\nkonsonantní\r\nkonsorcium\r\nkonspekt\r\nkonspektování\r\nkonspektovaný\r\nkonspektovat\r\nkonspirace\r\nkonspiračnější\r\nkonspirační\r\nkonspirativnější\r\nkonspirativní\r\nkonspirování\r\nkonspirovaný\r\nkonspirovat\r\nkonspirující\r\nkonstábl\r\nkonstáblův\r\nKonstancie\r\nkonstantan\r\nkonstantanový\r\nkonstanta\r\nKonstantin\r\nKonstantinopol\r\nKonstantinův\r\nkonstantnější\r\nkonstantní\r\nkonstantový\r\nkonstatovací\r\nkonstatování\r\nkonstatovaný\r\nkonstatovat\r\nkonstatující\r\nkonstelace\r\nkonsternace\r\nkonsternovanější\r\nkonsternování\r\nkonsternovaný\r\nkonsternovat\r\nkonstituce\r\nkonstitucionalismus\r\nkonstitucionalista\r\nkonstitucionalistčin\r\nkonstitucionalistka\r\nkonstitucionalistův\r\nkonstituční\r\nkonstituent\r\nkonstituovanější\r\nkonstituování\r\nkonstituovaný\r\nkonstituovat\r\nkonstitutivnější\r\nkonstitutivní\r\nkonstituující\r\nkonstrastující\r\nkonstriktiva\r\nkonstrukce\r\nkonstrukční\r\nkonstruktérčin\r\nkonstruktérka\r\nkonstruktér\r\nkonstruktérský\r\nkonstruktérštější\r\nkonstruktérův\r\nkonstrukt\r\nKonstruktiva\r\nkonstruktivismus\r\nkonstruktivista\r\nkonstruktivistčin\r\nkonstruktivistický\r\nkonstruktivističtější\r\nkonstruktivistka\r\nkonstruktivistův\r\nkonstruktivita\r\nkonstruktivnější\r\nkonstruktivní\r\nkonstruktor\r\nkonstruovanější\r\nkonstruování\r\nkonstruovaný\r\nkonstruovat\r\nkonstruovávání\r\nkonstruovávaný\r\nkonstruovávat\r\nkonstruující\r\nkonsulární\r\nkonsulát\r\nkonsul\r\nkonsultace\r\nkonsultační\r\nkonsultování\r\nkonsultovaný\r\nkonsultovat\r\nkonsulův\r\nkonsumace\r\nkonsumování\r\nkonsumovaný\r\nkonsumovat\r\nkonšel\r\nkonšelský\r\nkonšelův\r\nkoňštější\r\nkontaktáž\r\nkontakt\r\nkontaktní\r\nkontaktolog\r\nkontaktologův\r\nkontaktovanější\r\nkontaktování\r\nkontaktovaný\r\nkontaktovat\r\nkontaktový\r\nkontaktující\r\nkontaminace\r\nkontaminační\r\nkontaminant\r\nkontaminovanější\r\nkontaminování\r\nkontaminovaný\r\nkontaminovat\r\nkontaminující\r\nkontejner\r\nkontejnerizace\r\nkontejnerový\r\nkontemplace\r\nkontemplativní\r\nkontemplování\r\nkontemplovaný\r\nkontemplovat\r\nkontemplovávání\r\nkontemplovávat\r\nkontext\r\nkontextovější\r\nkontextový\r\nkontextualismus\r\nkontextualistický\r\nkontextuálnější\r\nkontextuální\r\nkontiguita\r\nkontinentální\r\nkontinent\r\nkontinent\r\nkontinentní\r\nkontingence\r\nkontingenční\r\nkontingent\r\nkontingentní\r\nkontinuální\r\nkontinuita\r\nkontinuum\r\nkonto\r\nkontokorent\r\nkontokorentní\r\nkonto\r\nkontový\r\nkontra\r\nkontraagitace\r\nkontraalt\r\nkontraaltistčin\r\nkontraaltistka\r\nkontraband\r\nkontrabas\r\nkontrabasista\r\nkontrabasistčin\r\nkontrabasistka\r\nkontrabasistův\r\nkontrabasový\r\nkontraceptivum\r\nkontradikce\r\nkontradikční\r\nkontradiktornější\r\nkontradiktorní\r\nkontradmirál\r\nkontradmirálův\r\nkontragradientní\r\nkontrahování\r\nkontrahovaný\r\nkontrahovat\r\nkontraindikace\r\nkontrakce\r\nkontraktace\r\nkontraktační\r\nkontrakt\r\nkontramatka\r\nkontraoktáva\r\nkontrapozice\r\nkontraproduktivnější\r\nkontraproduktivní\r\nkontrapunkt\r\nkontrapunktik\r\nkontrapunktikův\r\nkontrapunktní\r\nkontrarevoluce\r\nkontrarevolucionář\r\nkontrarevolucionářův\r\nkontrarevolučnější\r\nkontrarevoluční\r\nkontrární\r\nkontrarozvědčík\r\nkontrarozvědčíkův\r\nkontrarozvědka\r\nkontrarozvědný\r\nkontrasignace\r\nkontrasignovaný\r\nkontrast\r\nkontrastnější\r\nkontrastní\r\nkontrastování\r\nkontrastovaný\r\nkontrastovat\r\nkontrastující\r\nkontrašpionážní\r\nkontrašpionáž\r\nkontratenorista\r\nkontratenoristův\r\nkontravariantní\r\nkontribuce\r\nkontribuční\r\nkontrola\r\nkontrolér\r\nkontrolka\r\nkontrolní\r\nkontrolorčin\r\nkontrolorka\r\nkontrolor\r\nkontrolorův\r\nkontrolovanější\r\nkontrolování\r\nkontrolovaný\r\nkontrolovat\r\nkontrolovatelnější\r\nkontrolovatelný\r\nkontrolovávání\r\nkontrolovávaný\r\nkontrolovávat\r\nkontrolující\r\nkontrování\r\nkontrovaný\r\nkontrovat\r\nkontroversní\r\nkontroverze\r\nkontroverznější\r\nkontroverzní\r\nkontrující\r\nkontumace\r\nkontumační\r\nkontura\r\nkonturní\r\nkonturovací\r\nkonturový\r\nkontušovka\r\nkoňů\r\nkonulárie\r\nkoňům\r\nkónus\r\nKonvalina\r\nKonvalinka\r\nkonvalinka\r\nKonvalinková\r\nkonvalinkový\r\nKonvalinkův\r\nKonvalinová\r\nkonvalinový\r\nKonvalinův\r\nkonvečnější\r\nkonvekce\r\nkonvekční\r\nkonvektivní\r\nkonvektor\r\nkonvektorový\r\nkonvence\r\nkonvencionalismus\r\nkonvencionální\r\nkonvenčněji\r\nkonvenčnější\r\nkonvenční\r\nkonvenienční\r\nkonvenování\r\nkonvenovat\r\nkonvent\r\nkonventní\r\nkonvenující\r\nkonvergence\r\nkonvergenční\r\nkonvergentní\r\nkonvergování\r\nkonvergovaný\r\nkonvergovat\r\nkonverse\r\nkonversovat\r\nkonvertibilita\r\nkonvertibilnější\r\nkonvertibilní\r\nkonvertita\r\nkonvertitův\r\nkonvertor\r\nkonvertorový\r\nkonvertovanější\r\nkonvertování\r\nkonvertovaný\r\nkonvertovat\r\nkonvertovávání\r\nkonvertovávaný\r\nkonvertovávat\r\nkonverzace\r\nkonverzačka\r\nkonverzační\r\nkonverze\r\nkonverzní\r\nkonverzování\r\nkonverzovat\r\nkonverzující\r\nkonvexita\r\nkonvexnější\r\nkonvexní\r\nkonvice\r\nkonvička\r\nkonvikt\r\nkonviktský\r\nkonvojový\r\nkonvoj\r\nkonvoluce\r\nkonvoluta\r\nkonvolut\r\nkonvový\r\nKonyová\r\nKonyův\r\nKonývek\r\nKonývka\r\nkonývka\r\nKonývková\r\nKonývkův\r\nKony\r\nKonzalová\r\nKonzal\r\nKonzalův\r\nkonzervace\r\nkonzervační\r\nkonzervant\r\nkonzervárenský\r\nkonzervárna\r\nkonzervatismus\r\nkonzervativcův\r\nkonzervativec\r\nkonzervativismus\r\nkonzervativistický\r\nkonzervativita\r\nkonzervativnější\r\nkonzervativní\r\nkonzervatorista\r\nkonzervatoristčin\r\nkonzervatoristka\r\nkonzervatoristův\r\nkonzervatoř\r\nkonzerva\r\nkonzervovadlo\r\nkonzervování\r\nkonzervovaný\r\nkonzervovat\r\nkonzervový\r\nkonzervující\r\nkonzilium\r\nkonzistence\r\nkonzistenční\r\nkonzistentnější\r\nkonzistentní\r\nkonzistoř\r\nkonzola\r\nkonzolka\r\nkonzolový\r\nkonzulární\r\nkonzulát\r\nkonzul\r\nkonzultace\r\nkonzultační\r\nkonzultantčin\r\nkonzultantka\r\nkonzultant\r\nkonzultantský\r\nkonzultantův\r\nkonzultativní\r\nkonzultování\r\nkonzultovaný\r\nkonzultovat\r\nkonzultovávání\r\nkonzultovávaný\r\nkonzultovávat\r\nkonzulův\r\nkonzumace\r\nkonzumentčin\r\nkonzumentka\r\nkonzument\r\nkonzumentský\r\nkonzumentův\r\nkonzum\r\nkonzumismus\r\nkonzumistický\r\nkonzumnější\r\nkonzumní\r\nkonzumování\r\nkonzumovaný\r\nkonzumovat\r\nkonzumující\r\nKonžančin\r\nKonžanka\r\nKonžan\r\nKonžanův\r\nkonžský\r\nkonžský\r\nkoobraz\r\nkooperace\r\nkooperační\r\nKooperativa\r\nkooperativní\r\nkooperování\r\nkooperovaný\r\nkooperovat\r\nkooperovávat\r\nkooperující\r\nkooptace\r\nkooptování\r\nkooptovaný\r\nkooptovat\r\nkooptovávání\r\nkooptovávaný\r\nkooptovávat\r\nkoordinace\r\nkoordinační\r\nkoordinátorčin\r\nkoordinátorka\r\nkoordinátor\r\nkoordinátorův\r\nkoordinovanější\r\nkoordinování\r\nkoordinovaný\r\nkoordinovat\r\nkoordinující\r\nkopací\r\nKopáček\r\nkopačka\r\nKopáčková\r\nKopáčkův\r\nkopáčštější\r\nkopáč\r\nkopáčův\r\nkopající\r\nKopalová\r\nKopal\r\nKopalův\r\nkopaná\r\nkopanec\r\nkopanější\r\nkopanice\r\nkopaničářčin\r\nkopaničářka\r\nkopaničářský\r\nkopaničář\r\nkopaničářův\r\nkopanina\r\nkopání\r\nkopaný\r\nkopat\r\nkopávání\r\nkopávaný\r\nkopávat\r\nkopa\r\nkopcovitý\r\nkopcový\r\nKopčanová\r\nKopčan\r\nKopčanův\r\nKopča\r\nKopčová\r\nKopčův\r\nKopecký\r\nkopec\r\nkopeček\r\nKopeček\r\nkopeček\r\nKopečková\r\nkopečkovitý\r\nkopečkový\r\nKopečkův\r\nkopečkův\r\nKopečný\r\nkopejka\r\nkopějka\r\nKoperník\r\nKoperníkův\r\nkop\r\nkopička\r\nKopidlno\r\nKopidlnsko\r\nkopidlnský\r\nKopidlo\r\nkopie\r\nkopinatcův\r\nkopinatec\r\nkopinatý\r\nkopiník\r\nkopiníkův\r\nkopírák\r\nkopírka\r\nkopírovací\r\nkopírovanější\r\nkopírování\r\nkopírovaný\r\nkopírovat\r\nkopírovatelnější\r\nkopírovatelný\r\nkopírovávanější\r\nkopírovávání\r\nkopírovávaný\r\nkopírovávat\r\nkopírující\r\nkopí\r\nkopista\r\nkopistčin\r\nkopist\r\nkopistka\r\nkopisťovitý\r\nkopistův\r\nkopiště\r\nKopka\r\nkopka\r\nKopková\r\nKopkův\r\nkoplanární\r\nkopnější\r\nKopník\r\nkopnout\r\nkopnutí\r\nkopnutý\r\nkopný\r\nkopolyester\r\nkopolyesterový\r\nkopolymerace\r\nkopolymer\r\nkopový\r\nkopra\r\nkopretina\r\nkopr\r\nkoprnění\r\nkoprnět\r\nKoprnický\r\nkoprocesor\r\nkoprocesorový\r\nkoproducentčin\r\nkoproducentka\r\nkoproducent\r\nkoproducentův\r\nkoprodukce\r\nkoprodukční\r\nkoprodukující\r\nkoprogram\r\nkoprovka\r\nkoprový\r\nKopřiva\r\nkopřiva\r\nkopřivenský\r\nkopřivka\r\nKopřivná\r\nKopřivnice\r\nKopřivnicko\r\nkopřivnický\r\nKopřivová\r\nkopřivový\r\nKopřivův\r\nkoptisin\r\nkoptový\r\nkopt\r\nkoptština\r\nkoptův\r\nkopulace\r\nkopulační\r\nkopulativní\r\nkopule\r\nkopulka\r\nkopulování\r\nkopulovaný\r\nkopulovat\r\nkopulovávání\r\nkopulovávat\r\nkopulovitý\r\nkopulující\r\nkopýtko\r\nkopytnatý\r\nkopytník\r\nkopytník\r\nkopytníkův\r\nkopyto\r\nkorábek\r\nkoráb\r\nKorábová\r\nKoráb\r\nKorábův\r\nkorálek\r\nkorál\r\nkorálkovitý\r\nkorálkový\r\nkorálnatcův\r\nkorálnatec\r\nkorálovcovitý\r\nkorálový\r\nkorán\r\nkoránový\r\nkorba\r\nKorbelová\r\nkorbelový\r\nKorbel\r\nkorbel\r\nKorbelův\r\nKorberová\r\nKorber\r\nKorberův\r\nkorbička\r\nkorbílek\r\nkorblík\r\nKorcová\r\nkorcový\r\nKorcův\r\nKorčáková\r\nKorčák\r\nKorčákův\r\nKordačová\r\nKordač\r\nKordačův\r\nKorda\r\nkord\r\nkordík\r\nKordillery\r\nkordista\r\nkordistčin\r\nkordistka\r\nkordistův\r\nkordofánský\r\nkordon\r\nkordón\r\nKordová\r\nkordový\r\nkordulka\r\nKordův\r\nkoreanista\r\nkoreanistčin\r\nkoreanistka\r\nkoreanistův\r\nKorea\r\nKorecký\r\nkorec\r\nKorec\r\nKoreček\r\nkoreček\r\nKorečková\r\nkorečkový\r\nKorečkův\r\nkoreferát\r\nkoreference\r\nKorejcův\r\nKorejčin\r\nKorejec\r\nKorejka\r\nkorejský\r\nkorejský\r\nkorejština\r\nkorekce\r\nkorekční\r\nkorek\r\nkorektiv\r\nkorektivní\r\nkorektnější\r\nkorektní\r\nkorektorčin\r\nkorektorka\r\nkorektor\r\nkorektorský\r\nkorektorův\r\nkorektura\r\nkorekturní\r\nkorelace\r\nkorelační\r\nkorelát\r\nkorelativní\r\nkorelátor\r\nkorelování\r\nkorelovaný\r\nkorelovat\r\nKoreňová\r\nKoreň\r\nKoreňův\r\nkorepetice\r\nkorepetitorčin\r\nkorepetitorka\r\nkorespondence\r\nkorespondenční\r\nkorespondentčin\r\nkorespondentka\r\nkorespondent\r\nkorespondentův\r\nkorespondování\r\nkorespondovaný\r\nkorespondovat\r\nkorespondovávání\r\nkorespondovávaný\r\nkorespondovávat\r\nkorespondující\r\nkorfbalista\r\nkorfbalistčin\r\nkorfbalistka\r\nkorfbalistův\r\nKorfová\r\nKorf\r\nKorfův\r\nkoriandr\r\nkorida\r\nkoridor\r\nkoridorový\r\nkorigování\r\nkorigovaný\r\nkorigovat\r\nkorigující\r\nKorinťan\r\nKorinťanův\r\nKorint\r\nKorint\r\nkorintský\r\nkorintský\r\nKoriťáková\r\nKoriťák\r\nKoriťákův\r\nkorkový\r\nkormidelna\r\nkormidelnický\r\nkormidelník\r\nkormidelníkův\r\nkormidelní\r\nkormidlo\r\nkormidlování\r\nkormidlovaný\r\nkormidlovat\r\nkormidlový\r\nkormoránovitý\r\nkormorán\r\nkormoránův\r\nkormoucení\r\nkormoucený\r\nkormoutit\r\nkormutlivější\r\nkormutlivý\r\nkornatějící\r\nkornatění\r\nkornatěný\r\nkornatět\r\nkornatý\r\nKornelie\r\nkornet\r\nkornetista\r\nkornetistčin\r\nkornetistka\r\nkornetistův\r\nKorno\r\nkornoutek\r\nkornout\r\nkornoutovitý\r\nkornový\r\nkornština\r\nkorodování\r\nkorodovaný\r\nkorodovat\r\nkorodovatelný\r\nkorodovávání\r\nkorodovávat\r\nkorodující\r\nkorolár\r\nkoronální\r\nkoronární\r\nkorona\r\nkoróna\r\nkoroner\r\nkoronerův\r\nkoronograf\r\nkorónový\r\nkoroptev\r\nkoroptvička\r\nkoroptví\r\nkorou\r\nkorouhev\r\nkorouhvička\r\nKorousová\r\nKorous\r\nKorousův\r\nKoroušová\r\nKorouš\r\nKoroušův\r\nkorouženský\r\nKoroužné\r\nkorový\r\nkoroze\r\nkorozivnější\r\nkorozivní\r\nkorozivzdornější\r\nkorozivzdorný\r\nkorozní\r\nkorporace\r\nkorporační\r\nkorporativismus\r\nkorporativistický\r\nkorporativní\r\nkorpulence\r\nkorpulentnější\r\nkorpulentní\r\nkorpus\r\nkorpuskulární\r\nkorpuskule\r\nKorseltová\r\nKorselt\r\nKorseltův\r\nkorsický\r\nkorsičtější\r\nKorsika\r\nkorsovat\r\nkortikoid\r\nkortikosteroid\r\nkorumpování\r\nkorumpovaný\r\nkorumpovat\r\nkorumpující\r\nkoruna\r\nkorund\r\nkorundový\r\nkorunka\r\nkorunkový\r\nkorunní\r\nkorunovace\r\nkorunovační\r\nkorunování\r\nkorunovaný\r\nkorunovat\r\nkorunový\r\nkorupce\r\nkorupční\r\nkorutanský\r\nKorutany\r\nKorvasová\r\nKorvas\r\nKorvasův\r\nkorveta\r\nkorvetní\r\nKorvín\r\nKorvínův\r\nkoryčanský\r\nKoryčany\r\nkoryfej\r\nkoryfejův\r\nKoryntová\r\nKorynt\r\nKoryntův\r\nkorýšovitý\r\nkorýš\r\nkorýšův\r\nKorytářová\r\nKorytář\r\nKorytářův\r\nkorytenský\r\nkorýtko\r\nKorytná\r\nKorytný\r\nkoryto\r\nKoryto\r\nKorytová\r\nkorytový\r\nKorytův\r\nkorzár\r\nkorzárův\r\nkorzet\r\nkorzetový\r\nkorzo\r\nkorzovat\r\nkorzující\r\nkořala\r\nkořalečník\r\nkořalečníkův\r\nkořalička\r\nkořalka\r\nKořánová\r\nKořán\r\nKořánův\r\nkořenáč\r\nkořenářčin\r\nkořenářka\r\nkořenecký\r\nKořenec\r\nKořenek\r\nkořeněnější\r\nkořenění\r\nkořeněný\r\nkořenící\r\nkořeninový\r\nkoření\r\nkořenit\r\nkořenitější\r\nkořenitý\r\nkořenka\r\nKořenková\r\nKořenkův\r\nkořenný\r\nkořenovitý\r\nKořenov\r\nkořenovník\r\nkořenovský\r\nkořenový\r\nkořen\r\nKořenský\r\nkořenův\r\nKořínek\r\nkořínek\r\nKořínková\r\nkořínkový\r\nKořínkův\r\nkořistit\r\nkořist\r\nKořistka\r\nKořistková\r\nKořistkův\r\nkořistnický\r\nkořistnictví\r\nkořistničtější\r\nkořistník\r\nkořistníkův\r\nkořistný\r\nkořištění\r\nkořištěný\r\nkořit\r\nkosák\r\nkosákův\r\nkosatcotvarý\r\nkosatcovější\r\nkosatcovitý\r\nkosatcový\r\nkosatec\r\nkosatka\r\nkosa\r\nkosejší\r\nkosekans\r\nkosekanta\r\nKosek\r\nkosení\r\nkosený\r\nKosice\r\nkosicí\r\nkosící\r\nkosický\r\nkosička\r\nKosíková\r\nkosík\r\nKosík\r\nKosíkův\r\nkosíkův\r\nKosina\r\nkosinka\r\nKosinová\r\nkosinový\r\nkosinusový\r\nkosinus\r\nKosinův\r\nkosiště\r\nkosit\r\nkosí\r\nKosková\r\nKoskův\r\nKosmas\r\nkosmatější\r\nkosmatka\r\nkosmatý\r\nkosme\r\nkosmem\r\nkosmetický\r\nkosmetiččin\r\nkosmetička\r\nkosmetika\r\nkosmetologie\r\nkosmický\r\nkosmičtější\r\nkosmodrom\r\nkosmogonie\r\nkosmografický\r\nkosmografie\r\nkosmologický\r\nkosmologie\r\nkosmolog\r\nkosmologův\r\nkosmoložčin\r\nkosmoložka\r\nkosmonautčin\r\nkosmonautický\r\nkosmonautika\r\nkosmonautka\r\nkosmonaut\r\nkosmonautův\r\nkosmonoský\r\nKosmonosy\r\nkosmopolita\r\nkosmopolitčin\r\nkosmopolitický\r\nkosmopolitičtější\r\nkosmopolitismus\r\nkosmopolitizující\r\nkosmopolitka\r\nkosmopolitnější\r\nkosmopolitní\r\nkosmopolitův\r\nkosmos\r\nkosmos\r\nkosmu\r\nKosmův\r\nKosnarová\r\nKosnar\r\nKosnarův\r\nkosočtvercový\r\nkosočtverec\r\nkosočtverečný\r\nkosodélník\r\nkosodřevina\r\nkosodřevinný\r\nKosořín\r\nkosořínský\r\nkosoúhelník\r\nkosoúhlejší\r\nkosoúhlý\r\nKosová\r\nkosovka\r\nKosov\r\nkosovský\r\nkosovský\r\nkos\r\nKos\r\nkostarický\r\nKostaričančin\r\nKostaričanka\r\nKostaričan\r\nKostaričanův\r\nkostaričtější\r\nKostarika\r\nkostečka\r\nkostečkový\r\nKostelany\r\nKostelecký\r\nkostelecký\r\nKostelec\r\nkostelíček\r\nkostelích\r\nkostelík\r\nkostel\r\nkostelnice\r\nkostelniččin\r\nkostelničin\r\nkostelnička\r\nkostelník\r\nkostelníkův\r\nkostelní\r\nkostelový\r\nkostěný\r\nkosterní\r\nkostice\r\nkostička\r\nkostičkovaný\r\nkostičkový\r\nkostival\r\nkostivalový\r\nkostižer\r\nkost\r\nKostka\r\nkostka\r\nkostkování\r\nkostkovaný\r\nkostkovat\r\nKostková\r\nkostkový\r\nKostkův\r\nkostlivcův\r\nkostlivec\r\nkostlivější\r\nkostlivý\r\nkostnatější\r\nkostnatění\r\nkostnatět\r\nkostnatý\r\nKostnice\r\nkostnice\r\nkostnický\r\nkostnický\r\nkostní\r\nkostomlatský\r\nKostomlaty\r\nKostovčíková\r\nKostovčík\r\nKostovčíkův\r\nkostra\r\nkostrbatější\r\nkostrbatý\r\nkostrční\r\nkostrč\r\nkostrč\r\nKostrhunová\r\nKostrhun\r\nKostrhunův\r\nkostrovitý\r\nkostrový\r\nkostřava\r\nkostřička\r\nKostřín\r\nkostýmek\r\nkostymérčin\r\nkostymérka\r\nkostymér\r\nkostymérův\r\nkostým\r\nkostýmní\r\nkostýmování\r\nkostýmovaný\r\nkostýmový\r\nKosův\r\nkosův\r\nKosygin\r\nkosý\r\nKošalín\r\nKošařisko\r\nkošařský\r\nkošatější\r\nkošatění\r\nkošatět\r\nkošatící\r\nkošatina\r\nkošatka\r\nKošátko\r\nKošátková\r\nKošátkův\r\nkošatý\r\nKošek\r\nKošelja\r\nKošeljová\r\nKošeljův\r\nkošenilový\r\nKošetice\r\nkošetický\r\nKošice\r\nkošický\r\nKošíček\r\nkošíček\r\nKošíčková\r\nkošíčkový\r\nKošíčkův\r\nkošikárna\r\nkošíkárna\r\nkošíkářčin\r\nkošíkářka\r\nkošíkařský\r\nkošíkářský\r\nkošikařský\r\nkošíkařství\r\nkošíkářství\r\nkošikář\r\nkošíkář\r\nkošikářův\r\nkošíkářův\r\nkošík\r\nKošíková\r\nkošíkový\r\nKošík\r\nKošíkův\r\nkošilatější\r\nkošilatý\r\nkošilenka\r\nkošile\r\nkošilka\r\nkošilovina\r\nkošilový\r\nKošín\r\nkošínský\r\nKošíře\r\nkošířský\r\nKošková\r\nKoškův\r\nkošový\r\nkoš\r\nKošťáková\r\nKošťák\r\nKošťákův\r\nkošťál\r\nKošťálová\r\nkošťálovina\r\nkošťálovitý\r\nKošťálov\r\nkošťálovský\r\nkošťálový\r\nKošťál\r\nKošťálův\r\nkošťátko\r\nKoštejnová\r\nKoštejn\r\nKoštejnův\r\nkoště\r\nkoštér\r\nKoštířová\r\nKoštíř\r\nKoštířův\r\nkoštování\r\nkoštovaný\r\nkoštovat\r\nKošumberk\r\nkošumberský\r\nKošvancová\r\nKošvancův\r\nKošvanec\r\nkótace\r\nkotangens\r\nkotangenta\r\nKotásek\r\nKotásková\r\nKotáskův\r\nKotasová\r\nKotas\r\nKotasův\r\nkoťátko\r\nkóta\r\nKotecký\r\nkotec\r\nkotě\r\nKotek\r\nkotel\r\nkotelna\r\nkotelník\r\nkotelníkův\r\nkotelní\r\nKotera\r\nKoterová\r\nKoterův\r\nkotevní\r\nkotit\r\nKotková\r\nKotkův\r\nkotlárna\r\nKotlárová\r\nKotlár\r\nKotlárův\r\nkotlářský\r\nKotlasová\r\nKotlas\r\nKotlasův\r\nkotle\r\nkotlech\r\nkotlem\r\nKotlerová\r\nKotler\r\nKotlerův\r\nkotleta\r\nkotletka\r\nkotli\r\nkotlíček\r\nkotlích\r\nkotlík\r\nkotlíkový\r\nkotlina\r\nkotlinka\r\nkotlový\r\nkotlu\r\nkotlů\r\nkotlům\r\nkotly\r\nkotníček\r\nkotníčkový\r\nkotník\r\nkotníkový\r\nkotonový\r\nkotouček\r\nkotoučkový\r\nkotoučový\r\nkotouč\r\nkotoul\r\nkótovací\r\nkótování\r\nkótovaný\r\nkótovat\r\nKotrányi\r\nKotrányiová\r\nKotrányiův\r\nKotrba\r\nKotrbová\r\nKotrbův\r\nKotrčová\r\nKotrč\r\nKotrčův\r\nKotrlý\r\nkotrmelec\r\nKottová\r\nKott\r\nKottův\r\nKotvaldová\r\nKotvald\r\nKotvaldův\r\nkotva\r\nkotvení\r\nkotvený\r\nkotvicí\r\nkotvící\r\nkotvička\r\nkotviště\r\nkotvit\r\nkotvový\r\nKotvrdovice\r\nkotvrdovický\r\nKotyza\r\nKotyzová\r\nKotyzův\r\nKouba\r\nKoubek\r\nKoubková\r\nKoubkův\r\nKoublová\r\nKoubl\r\nKoublův\r\nKoubová\r\nKoubovský\r\nKoubský\r\nKoubův\r\nKoucký\r\nkouč\r\nkoučův\r\nKoudeláková\r\nKoudelák\r\nKoudelákův\r\nKoudela\r\nKoudelka\r\nkoudelka\r\nKoudelková\r\nKoudelkův\r\nKoudelová\r\nkoudelový\r\nKoudelův\r\nkoudel\r\nkoukající\r\nKoukalová\r\nKoukal\r\nKoukalův\r\nkoukání\r\nkoukat\r\nkouknout\r\nkouknutí\r\nKoukola\r\nkoukol\r\nKoukolíková\r\nKoukolík\r\nKoukolíkův\r\nKoukolová\r\nkoukolový\r\nKoukolův\r\nkoulařčin\r\nkoulařka\r\nkoulařský\r\nkoulař\r\nkoulařův\r\nkoulející\r\nkoulení\r\nkoulený\r\nkoulet\r\nkoule\r\nkoulička\r\nkoulivý\r\nkoulovačka\r\nkoulování\r\nkoulovaný\r\nkoulovat\r\nkoulující\r\nkoumák\r\nkoumákův\r\nkoumání\r\nkoumaný\r\nKoumarová\r\nKoumar\r\nKoumarův\r\nkoumat\r\nkoumavější\r\nkoumavý\r\nKounek\r\nKounice\r\nkounický\r\nKounicová\r\nKounic\r\nKounicův\r\nKounková\r\nKounkův\r\nKounov\r\nkounovský\r\nkoupací\r\nkoupající\r\nkoupaliště\r\nkoupání\r\nkoupaný\r\nkoupat\r\nkoupávání\r\nkoupávaný\r\nkoupávat\r\nkoupěchtivý\r\nkoupelna\r\nkoupelnička\r\nkoupelnový\r\nkoupelový\r\nkoupel\r\nkoupení\r\nkoupený\r\nkoupěschopný\r\nkoupě\r\nkoupit\r\nkouření\r\nkouřený\r\nkouřící\r\nKouřilová\r\nKouřil\r\nKouřilův\r\nKouřim\r\nKouřimsko\r\nkouřimský\r\nkouřit\r\nkouřivý\r\nkouřmo\r\nkouřovod\r\nkouřový\r\nkouř\r\nkousací\r\nkousající\r\nKousalová\r\nKousal\r\nKousalův\r\nkousanec\r\nkousanější\r\nkousání\r\nkousaný\r\nkousat\r\nkousávající\r\nkousávanější\r\nkousávání\r\nkousávaný\r\nkousávat\r\nkousavější\r\nkousavý\r\nkousek\r\nkousek\r\nkousíček\r\nkousínek\r\nkouskách\r\nkouskování\r\nkouskovaný\r\nkouskovat\r\nkousnout\r\nkousnutější\r\nkousnutí\r\nkousnutý\r\nkousnutý\r\nkouštíček\r\nkoušu\r\nkouta\r\nkout\r\nkoutě\r\nKoutecký\r\nkouteček\r\nkoutech\r\nkoutek\r\nKoutek\r\nkoutek\r\nKoutenský\r\nkout\r\nKoutková\r\nKoutkův\r\nkout\r\nKoutníková\r\nKoutník\r\nKoutníkův\r\nKoutný\r\nKoutová\r\nkoutový\r\nKout\r\nKoutský\r\nkoutů\r\nKoutův\r\nkouty\r\nkouzelnější\r\nkouzelnice\r\nkouzelnický\r\nkouzelnictví\r\nkouzelničin\r\nkouzelničtější\r\nkouzelník\r\nkouzelníkův\r\nkouzelný\r\nkouzlení\r\nkouzlený\r\nkouzlit\r\nkouzlo\r\nkovací\r\nKovačičová\r\nKovačič\r\nKovačičův\r\nKováčiková\r\nKováčik\r\nKováčikův\r\nKováčová\r\nKováč\r\nKováčův\r\nkovadlina\r\nkovadlinka\r\nkovák\r\nkovákův\r\nkovalentní\r\nKovalová\r\nKoval\r\nKovalský\r\nKovalův\r\nKovanda\r\nKovandová\r\nKovandův\r\nkovanecký\r\nKovanec\r\nkovanější\r\nKovanice\r\nkovanický\r\nkování\r\nkovaný\r\nkovariance\r\nkovarianční\r\nkovariantní\r\nkovárna\r\nKovárníková\r\nKovárník\r\nKovárníkův\r\nkovářčin\r\nkováříček\r\nkováříčkův\r\nKovaříková\r\nKováříková\r\nkovařík\r\nKovařík\r\nKovářík\r\nKovaříkův\r\nkovaříkův\r\nKováříkův\r\nkovářka\r\nKovářová\r\nKovářov\r\nkovářovský\r\nKovářská\r\nkovářský\r\nkovářství\r\nkovář\r\nKovář\r\nKovářův\r\nkovářův\r\nkovat\r\nkovávání\r\nkovávaný\r\nkovávat\r\nkovbojka\r\nkovbojský\r\nkovboj\r\nkovbojův\r\nkoverkot\r\nkoverkotový\r\nkov\r\nkovnatý\r\nKovno\r\nkovodělník\r\nkovodělníkův\r\nkovodělný\r\nkovodílna\r\nkovodružstvo\r\nkovohuť\r\nkovolijcův\r\nkovolijec\r\nkovolist\r\nkovolitcův\r\nkovolitectví\r\nkovolitec\r\nKovolová\r\nKovol\r\nKovolův\r\nkovomodelárna\r\nkovoobráběcí\r\nkovoobráběčství\r\nkovoobráběč\r\nkovoobráběčův\r\nkovoobrábějící\r\nkovoobrábění\r\nkovoorganický\r\nkovoorganičtější\r\nKovoplast\r\nkovoprůmysl\r\nKovoslužba\r\nkovosoustružník\r\nkovotepcův\r\nkovotepectví\r\nkovotepec\r\nkovotepkyně\r\nkovotepkynin\r\nkovovýroba\r\nkovový\r\nkovozpracující\r\nKovral\r\nkovralový\r\nkovu\r\nKowalová\r\nKowal\r\nKowalův\r\nKoyšová\r\nKoyš\r\nKoyšův\r\nkozácký\r\nkozáček\r\nkozačka\r\nkozáčkův\r\nkozáčtější\r\nKozáková\r\nKozákov\r\nkozákovský\r\nkozák\r\nKozák\r\nKozákův\r\nkozákův\r\nKoza\r\nKozárov\r\nkozárovský\r\nkoza\r\nKozčín\r\nkozčínský\r\nKozdera\r\nKozderka\r\nKozderková\r\nKozderkův\r\nKozderová\r\nKozderův\r\nkozelec\r\nKozelová\r\nkozel\r\nKozel\r\nkozelský\r\nKozelův\r\nkozelův\r\nkozička\r\nkozílek\r\nkozílkův\r\nkozinka\r\nkozin\r\nkozí\r\nkozka\r\nkozlečí\r\nkozle\r\nkozlice\r\nkozlíček\r\nkozlíčkový\r\nkozlíčkův\r\nKozlíková\r\nkozlíkový\r\nkozlík\r\nKozlík\r\nKozlíkův\r\nkozlíkův\r\nKozlín\r\nkozlí\r\nKozloková\r\nKozlok\r\nKozlokův\r\nKozlovice\r\nkozlovický\r\nkozlovitý\r\nKozlov\r\nKozlovský\r\nkozlovský\r\nkozlův\r\nKozmice\r\nkozmický\r\nKozmíková\r\nKozmík\r\nKozmíkův\r\nKozojedová\r\nKozojed\r\nKozojedův\r\nKozojedy\r\nKozolupy\r\nKozomín\r\nkozomínský\r\nkozoroh\r\nkozorohův\r\nkozorožcův\r\nkozorožec\r\nKozová\r\nKozumplíková\r\nKozumplík\r\nKozumplíkův\r\nKozův\r\nkožařčin\r\nkožařka\r\nkožedělný\r\nkoželuh\r\nkoželuhův\r\nkoželužna\r\nkoželužský\r\nkoželužství\r\nkoženější\r\nkoženka\r\nkoženkový\r\nKožený\r\nkožený\r\nkožešina\r\nkožešinka\r\nkožešinový\r\nkožešnice\r\nkožešnický\r\nkožešnictví\r\nkožešničin\r\nkožešnička\r\nkožešník\r\nkožešníkův\r\nkoží\r\nkožích\r\nkožich\r\nkožím\r\nkožíšek\r\nkožišina\r\nkožišnický\r\nkožišnictví\r\nkožišník\r\nkožišníkův\r\nkožka\r\nkožlanský\r\nKožlany\r\nkožnatý\r\nkožní\r\nkožovitý\r\nKožušice\r\nkožušický\r\nkp\r\nkPa\r\nkpt\r\nKr\r\nkrá\r\nkrabacení\r\nkrabacený\r\nkrabatější\r\nkrabatět\r\nkrabatit\r\nkrabatý\r\nKrabčice\r\nkrabčický\r\nkrabice\r\nkrabicovitější\r\nkrabicový\r\nkrabička\r\nkrabičkový\r\nkrabí\r\nkrabovací\r\nkrabování\r\nkrabovaný\r\nkrabovat\r\nkrab\r\nkrabův\r\nkrácení\r\nkrácený\r\nKracíková\r\nKracík\r\nKracíkův\r\nkráčející\r\nkráčení\r\nkráčený\r\nkráčet\r\nkráčivý\r\nKračmarová\r\nKračmar\r\nKračmarův\r\nKračunová\r\nKračun\r\nKračunův\r\nkradenější\r\nkradení\r\nkradený\r\nkrádež\r\nkradmější\r\nkradmo\r\nkradmý\r\nKraftová\r\nKraft\r\nKraftův\r\nkrahujcovitý\r\nkrahujcův\r\nkrahujčí\r\nkrahujec\r\nKrahulcová\r\nKrahulcův\r\nKrahulec\r\nKrahulov\r\nkrahulovský\r\nkrach\r\nkrachování\r\nkrachovat\r\nkrachující\r\nkrajačka\r\nkrajáč\r\nKrajáková\r\nKraják\r\nKrajákův\r\nkrajančin\r\nkrajánek\r\nkrajanka\r\nkrajánkův\r\nkrajan\r\nkrajanský\r\nkrajanštější\r\nkrajanův\r\nKrajcová\r\nKrajc\r\nKrajcův\r\nKrajča\r\nKrajčíková\r\nKrajčík\r\nKrajčíkův\r\nKrajčí\r\nKrajčová\r\nKrajčův\r\nkrájecí\r\nkraječka\r\nkráječka\r\nkraječkový\r\nkráječ\r\nkrájenější\r\nkrájení\r\nkrájený\r\nkrájet\r\nkrajíc\r\nKrajíček\r\nkrajíček\r\nKrajíčková\r\nKrajíčkův\r\nkrajinářčin\r\nkrajinářka\r\nkrajinářský\r\nkrajinářství\r\nkrajinář\r\nkrajinářův\r\nkrajina\r\nkrajinka\r\nkrajinněekologický\r\nkrajinný\r\nkrajinomalba\r\nkrajinotvorný\r\nkrajinový\r\nkrajinský\r\nKrajinův\r\nkrajkářčin\r\nkrajkářka\r\nkrajkářský\r\nkrajkářství\r\nkrajka\r\nkrajkovanější\r\nkrajkovaný\r\nKrajková\r\nkrajkovina\r\nkrajkovský\r\nkrajkový\r\nkrajnější\r\nkrajnice\r\nKrajníčko\r\nkrajní\r\nkrajovější\r\nkrajový\r\nkraj\r\nkrajský\r\nkrajštější\r\nkrajta\r\nkrákající\r\nkrakání\r\nkrákání\r\nkrakaný\r\nkrákaný\r\nkrakat\r\nkrákat\r\nKrakatoa\r\nkrákavý\r\nKrakonoš\r\nKrakonošův\r\nkrákorání\r\nkrákorat\r\nkrákoravý\r\nkrakorcový\r\nkrakorec\r\nKrakorová\r\nKrakor\r\nKrakorův\r\nkrakovací\r\nkrakování\r\nkrakovaný\r\nkrakovat\r\nkrakovecký\r\nKrakovec\r\nKrakov\r\nkrakovský\r\nkrakovský\r\nkraksna\r\nkralevic\r\nkralevicův\r\nKralice\r\nKrálický\r\nkralický\r\nkralický\r\nkrálíček\r\nKrálíček\r\nkráličina\r\nkráličí\r\nKrálíčková\r\nkrálíčkový\r\nKrálíčkův\r\nkrálíčkův\r\nkrálikárna\r\nkrálíkárna\r\nKrálíková\r\nkrálíkový\r\nkrálík\r\nKrálík\r\nKrálíkův\r\nkrálíkův\r\nkrálka\r\nkralování\r\nkralovat\r\nKrálová\r\nKrálovcová\r\nKrálovcův\r\nKrálovecko\r\nkrálovecký\r\nKrálovec\r\nKrálovec\r\nkrálovédvorský\r\nKrálovéhradecko\r\nkrálovéhradecký\r\nKralovice\r\nKrálovice\r\nkralovický\r\nkrálovický\r\nkrálovna\r\nkrálovniččin\r\nkrálovnička\r\nkrálovnin\r\nkrálovodvorský\r\nkrálovopolský\r\nkrálovrah\r\nkrálovrahův\r\nkrálovražda\r\nkrálovský\r\nkrálovství\r\nKrál\r\nkralující\r\nKralupy\r\nkrál\r\nKrálův\r\nkrálův\r\nKramárová\r\nKramár\r\nKramárův\r\nkramářčin\r\nkramařit\r\nkramářka\r\nkramářský\r\nkramářství\r\nkramářštější\r\nkramář\r\nkramářův\r\nkrámeček\r\nkrámek\r\nKrameriusův\r\nKramerová\r\nKramer\r\nKramerův\r\nkramflek\r\nkrám\r\nkramle\r\nkramlový\r\nKramolín\r\nkramolínský\r\nKramolna\r\nkrámovat\r\nKrámský\r\nkrámský\r\nkrámštější\r\nKraň\r\nkraniologický\r\nkraniologie\r\nkraniolog\r\nkraniologův\r\nkranioložčin\r\nkranioložka\r\nkraniometrický\r\nkraniometrie\r\nKraňsko\r\nkrapáček\r\nkrápající\r\nkrápalo\r\nkrapánek\r\nkrápat\r\nkrápe\r\nkrapet\r\nkrapínek\r\nkrapka\r\nkrápníček\r\nkrápník\r\nkrápníkový\r\nkrápnout\r\nKrása\r\nkrasavcův\r\nkrasavec\r\nkrasavice\r\nkrása\r\nKraselov\r\nkraselovský\r\nKrásensko\r\nkrásenský\r\nkras\r\nKrasíkov\r\nkrasíkovský\r\nkráska\r\nKraslice\r\nkraslice\r\nKraslicko\r\nkraslický\r\nKrásná\r\nkrásnější\r\nkrásnější\r\nkrásnění\r\nkrásněný\r\nkrásnět\r\nKrásněves\r\nkrásněveský\r\nKrásné\r\nKrásnohorský\r\nKrasnojarsk\r\nkrasnojarský\r\nkrásno\r\nkrásnoočko\r\nkrasný\r\nkrásný\r\nkrasobruslařčin\r\nkrasobruslařka\r\nkrasobruslařský\r\nkrasobruslař\r\nkrasobruslařův\r\nkrasobruslení\r\nkrasojezdcův\r\nkrasojezdecký\r\nkrasojezdec\r\nkrasojezdkyně\r\nkrasojezdkynin\r\nkrasojízda\r\nkrasopis\r\nkrasopisnější\r\nkrasopisný\r\nkrasořečený\r\nkrasořečnění\r\nkrasořečnický\r\nkrasořečnický\r\nkrasořečnictví\r\nkrasořečník\r\nkrasosmutnění\r\nkrasotinka\r\nKrasová\r\nKrásová\r\nKrasov\r\nkrasovský\r\nkrasový\r\nkrást\r\nKrásův\r\nkrášlenější\r\nkrášlení\r\nkrášlený\r\nkrášlící\r\nkrášlit\r\nKrašovice\r\nkrašovický\r\nKrašov\r\nkrašovský\r\nkrát\r\nkráter\r\nkráterovaný\r\nkráterový\r\nkrátící\r\nkratičký\r\nkratiknot\r\nKratina\r\nKratinová\r\nKratinův\r\nkrátit\r\nkrátkodechý\r\nkrátkodobější\r\nkrátkodobý\r\nkrátkokřídlý\r\nkrátkolebý\r\nkrátkometrážní\r\nkrátkonohý\r\nkrátkoperiodický\r\nkrátkoprstý\r\nkrátkosrstý\r\nkrátkovlasý\r\nkrátkovlnný\r\nkrátkozraký\r\nKrátký\r\nkrátký\r\nkratochvíle\r\nKratochvilka\r\nkratochvilnější\r\nkratochvilný\r\nKratochvílová\r\nKratochvíl\r\nKratochvílův\r\nkraťounký\r\nkratší\r\nKratušín\r\nkratušínský\r\nkraulařčin\r\nkraulařka\r\nkraulař\r\nkraulařův\r\nkraul\r\nkraulovat\r\nkraulový\r\nKrauseová\r\nKrauseův\r\nKrause\r\nKrauskopfová\r\nKrauskopf\r\nKrauskopfův\r\nKrausová\r\nKraus\r\nKrausův\r\nkrav\r\nkravách\r\nkravál\r\nkraválista\r\nkraválistčin\r\nkraválistka\r\nkraválistův\r\nkravám\r\nkravami\r\nKravař\r\nKravaře\r\nKravařemi\r\nKravařích\r\nkravařský\r\nKravařům\r\nkravata\r\nkravatka\r\nkravatový\r\nkráva\r\nkravička\r\nkravina\r\nkravinec\r\nkravín\r\nkravinka\r\nkraví\r\nkravka\r\nkrávovina\r\nKravsko\r\nkravský\r\nkravštější\r\nkra\r\nkrážem\r\nKrbcová\r\nKrbcův\r\nKrbec\r\nKrbeček\r\nKrbečková\r\nKrbečkův\r\nkrb\r\nkrbový\r\nkrcálek\r\nKrčálová\r\nKrčál\r\nKrčálův\r\nkrček\r\nkrčení\r\nkrčený\r\nkrčící\r\nkrčit\r\nkrčkový\r\nkrčmaňský\r\nKrčma\r\nkrčmářčin\r\nkrčmářka\r\nKrčmářová\r\nKrčmář\r\nkrčmář\r\nKrčmářův\r\nkrčmářův\r\nkrčma\r\nKrčmová\r\nkrčmový\r\nKrčmův\r\nkrční\r\nKrčová\r\nKrč\r\nKrčův\r\nkreace\r\nkreacionismus\r\nkreacionista\r\nkreacionistčin\r\nkreacionistický\r\nkreacionistka\r\nkreacionistův\r\nkreativita\r\nkreativnější\r\nkreativní\r\nkreatura\r\nKrebsová\r\nKrebs\r\nKrebsův\r\nKrečmerová\r\nKrečmer\r\nKrečmerův\r\nkredenc\r\nkredibilita\r\nkredit\r\nkreditní\r\nkrédo\r\nKredviková\r\nKredvik\r\nKredvikův\r\nkrecht\r\nKreibichová\r\nKreibich\r\nKreibichův\r\nkrejcar\r\nKrejcarová\r\nkrejcarový\r\nKrejcar\r\nKrejcarův\r\nKrejča\r\nKrejčíková\r\nkrejčík\r\nKrejčík\r\nKrejčíkův\r\nkrejčíkův\r\nKrejčířová\r\nKrejčíř\r\nKrejčířův\r\nKrejčí\r\nkrejčí\r\nKrejčová\r\nkrejčová\r\nkrejčovský\r\nkrejčovství\r\nKrejčův\r\nKrejchová\r\nKrejch\r\nKrejchův\r\nkrejon\r\nKrejsa\r\nKrejsová\r\nKrejsův\r\nKrejza\r\nKrejzová\r\nKrejzův\r\nkremace\r\nkremační\r\nkrematorium\r\nkremelský\r\nkrém\r\nKremláček\r\nKremláčková\r\nKremláčkův\r\nKreml\r\nKremlička\r\nKremličková\r\nKremličkův\r\nKremnica\r\nkrémovat\r\nkrémovější\r\nkrémovitý\r\nkrémový\r\nkrempa\r\nkremrole\r\nkremrolka\r\nKremže\r\nkreol\r\nkreolizace\r\nkreolizovaný\r\nkreolka\r\nkreolský\r\nkreolština\r\nkreosot\r\nkreozot\r\nkreozotový\r\nkrepdešín\r\nkrepdešínový\r\nkrep\r\nkrepovací\r\nkrepování\r\nkrepovaný\r\nkrepovat\r\nkrepový\r\nkrepsilon\r\nkrepsilonový\r\nKresanová\r\nKresan\r\nKresanův\r\nkresba\r\nkresbička\r\nkresebnější\r\nkresebný\r\nkreslenější\r\nkreslení\r\nkreslený\r\nkreslicí\r\nkreslící\r\nkreslička\r\nkresličský\r\nkreslič\r\nkresličův\r\nkreslírna\r\nkreslířčin\r\nkreslířka\r\nkreslířský\r\nkreslířštější\r\nkreslíř\r\nkreslířův\r\nkreslit\r\nkreslívat\r\nKreščak\r\nKréťan\r\nKréťanův\r\nKréta\r\nkretenismus\r\nkreténismus\r\nkretén\r\nkreténský\r\nkreténštější\r\nkreténův\r\nkreton\r\nkretonový\r\nKretschmerová\r\nKretschmer\r\nKretschmerův\r\nkrétský\r\nkrevel\r\nkrevelový\r\nkreveta\r\nkrevetový\r\nkrevnatější\r\nkrevnatý\r\nkrevní\r\nkrev\r\nKrhánek\r\nKrhanice\r\nkrhanický\r\nKrhánková\r\nKrhánkův\r\nKrha\r\nkrhavý\r\nKrhová\r\nKrhovice\r\nkrhovický\r\nKrhov\r\nkrhovský\r\nKrhutová\r\nKrhut\r\nKrhutův\r\nKrhův\r\nKrchleby\r\nkrchov\r\nKrchovová\r\nKrchov\r\nKrchovův\r\nKrieglerová\r\nKriegler\r\nKrieglerův\r\nkriket\r\nkriketový\r\nKrimičov\r\nkrimikomedie\r\nkriminál\r\nkriminalisace\r\nkriminalista\r\nkriminalistčin\r\nkriminalistický\r\nkriminalističtější\r\nkriminalistika\r\nkriminalistka\r\nkriminalistův\r\nkriminalita\r\nkriminalizace\r\nkriminalizování\r\nkriminalizovaný\r\nkriminalizovat\r\nkriminalizující\r\nkriminálka\r\nkriminálnější\r\nkriminálník\r\nkriminálníkův\r\nkriminální\r\nkriminogenní\r\nkriminologický\r\nkriminologičtější\r\nkriminologie\r\nkriminolog\r\nkriminologův\r\nkriminoložčin\r\nkriminoložka\r\nKrimlaková\r\nKrimlak\r\nKrimlakův\r\nkrinolína\r\nkrinolínový\r\nkripl\r\nkriplův\r\nKristek\r\nkristiánčin\r\nkristiánka\r\nKristiánová\r\nKristián\r\nKristiánův\r\nKristína\r\nKristinčin\r\nKristinka\r\nKristková\r\nKristkův\r\nkristovství\r\nkristový\r\nKristus\r\nKristův\r\nKristýna\r\nKristýnčin\r\nKristýnin\r\nKristýnka\r\nKrištofová\r\nKrištof\r\nKrištofův\r\nkriteriální\r\nkriterium\r\nkritérium\r\nkriticismus\r\nkriticistický\r\nkritický\r\nkritiččin\r\nkritička\r\nkritičtější\r\nkritika\r\nkritik\r\nkritikův\r\nkritizovanější\r\nkritizování\r\nkritizovaný\r\nkritizovat\r\nkritizující\r\nkrize\r\nkrizovější\r\nkrizový\r\nKrižanovský\r\nkrkání\r\nkrkaný\r\nkrkat\r\nkrkatý\r\nkrkávání\r\nkrkávat\r\nkrkavcovitý\r\nkrkavcův\r\nkrkavče\r\nkrkavčí\r\nkrkavec\r\nkrkavice\r\nkrk\r\nkrknout\r\nkrknutí\r\nkrknutý\r\nkrkolomnější\r\nkrkolomný\r\nKrkonoše\r\nKrkonoši\r\nkrkonošský\r\nKrkoška\r\nkrkoška\r\nKrkošková\r\nKrkoškův\r\nkrkovice\r\nkrkovička\r\nkrmelec\r\nKrmelín\r\nkrmelínský\r\nkrmení\r\nkrmený\r\nkrmě\r\nkrmicí\r\nkrmící\r\nkrmička\r\nkrmič\r\nkrmičův\r\nkrmiště\r\nkrmit\r\nkrmitelný\r\nkrmítko\r\nkrmivářský\r\nkrmivářství\r\nkrmivář\r\nkrmivářův\r\nkrmivější\r\nkrmivo\r\nkrmivový\r\nkrmivý\r\nkrmník\r\nkrmníkův\r\nkrmný\r\nKrnáčová\r\nKrnáč\r\nKrnáčův\r\nKRNAP\r\nKrnov\r\nKrnovsko\r\nkrnovský\r\nKrnsko\r\nKrobatin\r\nkrobián\r\nkrobiánský\r\nkrobiánství\r\nkrobiánův\r\nKrobotová\r\nKrobot\r\nKrobotův\r\nkrocaní\r\nkrocan\r\nkrocanův\r\nkrocení\r\nkrocený\r\nkročej\r\nKroftová\r\nKroft\r\nKroftův\r\nKroisová\r\nKrois\r\nKroisův\r\nkrojování\r\nkrojovaný\r\nkrojovat\r\nkrojový\r\nkroj\r\nkroketa\r\nkroket\r\nkroketka\r\nkroketový\r\nkrokev\r\nkrok\r\nKrokočín\r\nkrokočínský\r\nkrokodýlí\r\nkrokodýl\r\nkrokodýlův\r\nkrokoměr\r\nkrokovací\r\nkrokování\r\nkrokovaný\r\nkrokovat\r\nkrokový\r\nkrokus\r\nkrom\r\nkromě\r\nKroměříž\r\nKroměřížsko\r\nkroměřížský\r\nkromobyčejnější\r\nkromobyčejný\r\nkrompáč\r\nkrompáčův\r\nKrompach\r\nkrompašský\r\nKrompholcová\r\nKrompholc\r\nKrompholcův\r\nKronawetterová\r\nKronawetter\r\nKronawetterův\r\nKronďáková\r\nKronďák\r\nKronďákův\r\nkronikářčin\r\nkronikaření\r\nkronikářka\r\nkronikářský\r\nkronikářství\r\nkronikář\r\nkronikářův\r\nkronika\r\nKropáček\r\nKropáčková\r\nKropáčkův\r\nKropáčova\r\nkropáč\r\nkropátko\r\nkropenatější\r\nkropenatý\r\nkropenější\r\nkropenička\r\nkropení\r\nkropenka\r\nkropený\r\nkropicí\r\nkropící\r\nkropička\r\nkropit\r\nkropítko\r\nkropka\r\nkrosček\r\nkrosčekovat\r\nkros\r\nkrosnář\r\nkrosnářův\r\nkrosna\r\nkrosnička\r\nkrosový\r\nkrotčeji\r\nkrotčejší\r\nkrotící\r\nkrotilelý\r\nkrotit\r\nkrotitelčin\r\nkrotitelka\r\nkrotitelský\r\nkrotitel\r\nkrotitelův\r\nKrotký\r\nkrotký\r\nkrotnout\r\nkrotnutí\r\nkroton\r\nkrotší\r\nkroucenější\r\nkroucení\r\nkroucený\r\nKroučová\r\nkroučovský\r\nkrouhačka\r\nkrouhání\r\nkrouhaný\r\nkrouhat\r\nkrouhávání\r\nkrouhávaný\r\nkrouhávat\r\nKrouna\r\nKroupa\r\nkroupa\r\nKroupová\r\nkroupový\r\nKroupův\r\nkrouticí\r\nkroutící\r\nKroutilová\r\nKroutil\r\nKroutilův\r\nkroutit\r\nkroutivý\r\nKrouzová\r\nKrouz\r\nKrouzův\r\nkroužek\r\nKrouželová\r\nKroužel\r\nKrouželův\r\nkroužení\r\nkroužící\r\nkroužit\r\nkrouživý\r\nkroužkovací\r\nkroužkovanější\r\nkroužkování\r\nkroužkovaný\r\nkroužkovat\r\nkroužkovávání\r\nkroužkovávaný\r\nkroužkovávat\r\nkroužkovcův\r\nkroužkovec\r\nkroužkovitý\r\nkroužkový\r\nkrov\r\nkrovka\r\nKrovová\r\nkrovový\r\nKrov\r\nKrovův\r\nKrpačová\r\nKrpač\r\nKrpačův\r\nKrpcová\r\nKrpcův\r\nKrpec\r\nKrsek\r\nKrsková\r\nKrskův\r\nKrška\r\nKršková\r\nKrškův\r\nkrtčí\r\nkrteček\r\nkrtečkův\r\nkrtek\r\nkrtičníkotvarý\r\nkrtičníkovitý\r\nkrtina\r\nkrtinec\r\nkrtkův\r\nkrtonožka\r\nKrtov\r\nkrtovský\r\nkruciální\r\nkruciát\r\nkrucifix\r\nKrucký\r\nkrůček\r\nkručení\r\nkručet\r\nkručící\r\nkručinka\r\nkruhadlo\r\nkruh\r\nkruhovější\r\nkruhovitý\r\nkruhovka\r\nkruhový\r\nkruchta\r\nKrula\r\nKrulczuková\r\nKrulczuk\r\nKrulczukův\r\nKrulichová\r\nKrulich\r\nKrulichův\r\nKrulišová\r\nKruliš\r\nKrulišův\r\nKrulová\r\nKrulův\r\nKrumhanslová\r\nKrumhansl\r\nKrumhanslův\r\nKrumlová\r\nKrumlov\r\nkrumlovský\r\nKruml\r\nKrumlův\r\nkrumpáček\r\nkrumpáč\r\nkrumplování\r\nKrumpolcová\r\nKrumpolc\r\nKrumpolcův\r\nKrumsín\r\nkrumsínský\r\nkrunýř\r\nkrup\r\nKrupá\r\nkrůpěj\r\nkrupice\r\nkrupicový\r\nKrupička\r\nkrupička\r\nkrupičkovatý\r\nKrupičková\r\nkrupičkovitý\r\nkrupičkový\r\nKrupičkův\r\nkrupičný\r\nkrupiér\r\nkrupiérův\r\nKrupincová\r\nKrupincův\r\nKrupinec\r\nKrupka\r\nkrupka\r\nKrupková\r\nkrupkový\r\nKrupkův\r\nkrupnatý\r\nkrupobití\r\nkrupon\r\nKrupová\r\nKrup\r\nkrupský\r\nKrupův\r\nkrusta\r\nKrušina\r\nkrušina\r\nkrušinka\r\nKrušinová\r\nkrušinový\r\nKrušinův\r\nkrušnější\r\nkrušnohorský\r\nKrušnohoří\r\nkrušný\r\nKrušovice\r\nkrušovický\r\nkrůťátko\r\nkrůta\r\nkrutější\r\nkrůtě\r\nkrut\r\nkrutihlav\r\nkrutihlavův\r\nKrutišová\r\nKrutiš\r\nKrutišův\r\nkrůtí\r\nkrutovláda\r\nkrutovládce\r\nkrutovládcův\r\nkrutovládný\r\nkrutý\r\nkružba\r\nKružberk\r\nkružidlo\r\nkružítko\r\nkružnice\r\nkružnicový\r\nkrvácející\r\nkrvácení\r\nkrvácet\r\nkrvácívání\r\nkrvácívat\r\nkrvácivý\r\nkrvák\r\nkrvákový\r\nkrvavec\r\nkrvavější\r\nkrvavý\r\nkrvelačnější\r\nkrvelačný\r\nkrveprolévání\r\nkrveprolití\r\nkrvesmilnější\r\nkrvesmilný\r\nkrvesmilství\r\nkrvesmilstvo\r\nkrvetvorný\r\nkrvežíznivější\r\nkrvežíznivý\r\nkrvinka\r\nkrycí\r\nkrychle\r\nkrychlička\r\nkrychlovitější\r\nkrychlovitý\r\nkrychlový\r\nKrychnov\r\nkrychnovský\r\nKrychtálek\r\nKrychtálková\r\nKrychtálkův\r\nkryjící\r\nKrylová\r\nKryl\r\nKrylův\r\nKrym\r\nkrymský\r\nkryobiologie\r\nkryoelektrický\r\nkryoelektričtější\r\nkryogenický\r\nkryogeničtější\r\nkryogenika\r\nkryogenní\r\nkryochirurgie\r\nkryokonzervace\r\nkryolit\r\nkryomagnetický\r\nkryomagnetičtější\r\nkryoprotein\r\nkryotechniččin\r\nkryotechnička\r\nkryotechnika\r\nkryoterapie\r\nkryotherapie\r\nkryotrón\r\nkrypta\r\nkryptický\r\nkryptobióza\r\nkryptografický\r\nkryptografie\r\nkryptogram\r\nkryptokomunismus\r\nkryptokomunista\r\nkryptokomunistčin\r\nkryptokomunistický\r\nkryptokomunistka\r\nkryptokomunistův\r\nkrypton\r\nkryptonka\r\nkryptonový\r\nkryptorchidní\r\nkryptorchismus\r\nkryptorchistický\r\nkryptoseparatismus\r\nkryptosocialista\r\nkryptosocialistčin\r\nkryptosocialistka\r\nkryptosocialistův\r\nkryptosystém\r\nkryptovací\r\nkryptování\r\nkryptovaný\r\nkryptovat\r\nkryptovávání\r\nkryptovávaný\r\nkryptovávat\r\nkryptoxantin\r\nkryptozoologie\r\nkrysařský\r\nkrysař\r\nkrysařův\r\nkrysa\r\nkrysiččin\r\nkrysička\r\nkrysí\r\nkrystalek\r\nkrystal\r\nkrystalický\r\nkrystaličtější\r\nkrystalinikum\r\nkrystalizace\r\nkrystalizační\r\nkrystalizování\r\nkrystalizovaný\r\nkrystalizovat\r\nkrystalizující\r\nkrystalka\r\nkrystalografčin\r\nkrystalografický\r\nkrystalografičtější\r\nkrystalografie\r\nkrystalografka\r\nkrystalograf\r\nkrystalografův\r\nkrystalování\r\nkrystalovaný\r\nkrystalovat\r\nkrystalový\r\nKrystová\r\nKryst\r\nKrystův\r\nKryška\r\nKryšková\r\nKryškův\r\nKryštofová\r\nKryštof\r\nKryštofův\r\nKryštůfek\r\nKryštůfková\r\nKryštůfkův\r\nkrýt\r\nkrytější\r\nkrytelnější\r\nkrytelný\r\nkryt\r\nkrytina\r\nkrytinový\r\nkrytí\r\nkrytka\r\nkrytonoscův\r\nkrytonosec\r\nkrytosemenný\r\nkrytový\r\nkrytý\r\nkrytý\r\nkřapat\r\nkřápat\r\nkřáp\r\nkřapky\r\nkřaplavější\r\nkřaplavý\r\nkřápnout\r\nkřeččí\r\nkřeček\r\nKřeček\r\nkřečkování\r\nkřečkovaný\r\nkřečkovat\r\nKřečková\r\nKřečkov\r\nkřečkovský\r\nkřečkový\r\nKřečkův\r\nkřečkův\r\nKřečovice\r\nkřečovický\r\nkřečovitější\r\nkřečovitý\r\nkřečový\r\nkřeč\r\nkřehčejší\r\nkřehčí\r\nkřehkolomový\r\nkřehký\r\nkřehnout\r\nkřehnutí\r\nkřehotinka\r\nKřekov\r\nkřekovský\r\nKřelina\r\nKřelinová\r\nKřelinův\r\nkřemelina\r\nkřemelinový\r\nkřemenáč\r\nkřemeňák\r\nKřemenáková\r\nKřemenák\r\nKřemenákův\r\nkřemencový\r\nkřemenec\r\nKřemeničov\r\nkřemenka\r\nkřemenný\r\nkřemenový\r\nkřemen\r\nkřemičitan\r\nkřemičitanový\r\nkřemičitý\r\nkřemík\r\nkřemíkový\r\nKřemílek\r\nKřemílek\r\nKřemílkův\r\nkřemínek\r\nkřemitý\r\nKřemže\r\nKřemžemi\r\nKřemží\r\nKřemžích\r\nkřemžský\r\nKřenek\r\nkřen\r\nKřenice\r\nkřenící\r\nkřenický\r\nkřenit\r\nKřenková\r\nKřenkův\r\nKřenovice\r\nkřenovický\r\nKřenov\r\nKřenovský\r\nkřenovský\r\nkřenový\r\nkřepčejší\r\nkřepčení\r\nkřepčený\r\nkřepčící\r\nkřepčit\r\nkřepčivější\r\nkřepčivý\r\nkřepčí\r\nkřepelčí\r\nkřepelička\r\nkřepelka\r\nKřepelová\r\nKřepel\r\nKřepelův\r\nKřepice\r\nkřepický\r\nkřepký\r\nkřesadlo\r\nkřesadlový\r\nkřesající\r\nkřesanější\r\nkřesání\r\nkřesaný\r\nkřesat\r\nkřesávající\r\nkřesávanější\r\nkřesávání\r\nkřesávaný\r\nkřesávat\r\nkřesílko\r\nKřesín\r\nkřesínský\r\nKřeslice\r\nkřeslický\r\nkřeslo\r\nkřeslový\r\nKřesomysl\r\nKřesomyslův\r\nkřest\r\nkřesťančin\r\nkřesťanka\r\nKřesťanová\r\nkřesťan\r\nKřesťan\r\nkřesťanský\r\nkřesťanství\r\nkřesťanstvo\r\nkřesťanštější\r\nKřesťanův\r\nkřesťanův\r\nkřestaný\r\nkřestní\r\nKřešice\r\nkřešický\r\nKřešín\r\nkřešínský\r\nKřetín\r\nKřetínský\r\nkřetínský\r\nkřičenější\r\nkřičení\r\nkřičený\r\nkřičet\r\nkřičící\r\nkříčící\r\nkřičívání\r\nkřičívaný\r\nkřičívat\r\nkřičívávat\r\nkřída\r\nkřidélko\r\nkřidélkový\r\nkřídelní\r\nkřídlatější\r\nkřídlatka\r\nkřídlatý\r\nkřídlo\r\nKřídlovický\r\nkřídlovka\r\nkřídlový\r\nkřídlový\r\nkřídování\r\nkřídovaný\r\nkřídovat\r\nkřídovávání\r\nkřídovávaný\r\nkřídovávat\r\nkřídový\r\nkřidýlko\r\nkřikavý\r\nkřik\r\nkřiklavější\r\nkřiklavý\r\nkřiklounčin\r\nkřiklounka\r\nkřikloun\r\nkřiklounský\r\nkřiklounství\r\nkřiklounův\r\nkřiknout\r\nkřiknutí\r\nkřiknutý\r\nKřimice\r\nkřimický\r\nKřimov\r\nkřimovský\r\nkřinecký\r\nKřinec\r\nKřinice\r\nkřinický\r\nKřipský\r\nkřísící\r\nkřísit\r\nkřísivý\r\nkřísnout\r\nkřísnutí\r\nkřísovatění\r\nkřísovitý\r\nKřístek\r\nKřístková\r\nKřístkův\r\nkříšení\r\nkříšený\r\nkřišťál\r\nkřišťálovější\r\nkřišťálový\r\nKřišťanová\r\nKřišťanovice\r\nkřišťanovický\r\nKřišťanov\r\nkřišťanovský\r\nKřišťan\r\nKřišťanův\r\nKřivancová\r\nKřivancův\r\nKřivanec\r\nKřivánek\r\nKřivánková\r\nKřivánkův\r\nkřivárna\r\nkřivda\r\nkřivdící\r\nkřivdit\r\nkřivější\r\nkřivení\r\nkřivený\r\nkřivice\r\nkřivit\r\nkřivítko\r\nkřivka\r\nkřivkový\r\nkřivočarý\r\nKřivohlavý\r\nKřivoklát\r\nkřivoklátsko\r\nkřivoklátský\r\nkřivolaký\r\nkřivonoska\r\nkřivopřísežnictví\r\nkřivopřísežný\r\nKřivošová\r\nKřivoš\r\nKřivošův\r\nkřivoústý\r\nkřivoveský\r\nKřivsoudov\r\nkřivsoudovský\r\nkřivule\r\nkřivý\r\nkřivzení\r\nkřivzený\r\nKřízenecký\r\nkřižácký\r\nkřižáčtější\r\nkřižákový\r\nkřižák\r\nkřižákův\r\nkřížala\r\nKřižánky\r\nKřižanovice\r\nkřižanovický\r\nKřižanov\r\nKřižanovský\r\nkřižanovský\r\nkřižatka\r\nKřížek\r\nkřížek\r\nkřížem\r\nkřížemkrážem\r\nkřížencův\r\nkříženec\r\nkřížení\r\nkříženka\r\nkřížený\r\nkřížící\r\nKřižíková\r\nKřižík\r\nKřižíkův\r\nKřižínkov\r\nkřižínkovský\r\nkřížit\r\nkřížkovat\r\nKřížková\r\nKřížkovský\r\nkřížkový\r\nKřížkův\r\nkřižmo\r\nkřižník\r\nkřižování\r\nkřižovaný\r\nkřížovaný\r\nkřižovat\r\nkřižovatka\r\nkřižovatkový\r\nKřížová\r\nkřížovější\r\nKřížovice\r\nkřížovický\r\nkřížovkář\r\nkřížovkářův\r\nkřížovka\r\nkřížový\r\nkříž\r\nkřižující\r\nKříž\r\nKřížův\r\nkřoupání\r\nkřoupaný\r\nkřoupat\r\nkřoupávání\r\nkřoupávaný\r\nkřoupávat\r\nkřoupavý\r\nkřoupnutí\r\nkřovácký\r\nkřováčtější\r\nKřovák\r\nKřovákův\r\nkřoví\r\nkřovíčko\r\nKřovina\r\nkřovinatější\r\nkřovinatý\r\nkřovina\r\nKřovinová\r\nKřovinův\r\nkřovisko\r\nkřovitý\r\nkřte\r\nkřtech\r\nkřtem\r\nkřtěncův\r\nkřtěnec\r\nkřtění\r\nKřtěnov\r\nkřtěnovský\r\nkřtěný\r\nkřtinský\r\nkřtiny\r\nkřtít\r\nkřtitelnice\r\nkřtitelnička\r\nkřtitel\r\nkřtitelův\r\nkřtu\r\nkřtů\r\nkřtům\r\nkřty\r\nkřupající\r\nkřupání\r\nkřupaný\r\nkřupat\r\nkřupavý\r\nkřupka\r\nkřupnout\r\nkřupnutí\r\nks\r\nKSČ\r\nKSČM\r\nksicht\r\nKSS\r\nKSSS\r\nkš\r\nkšá\r\nkšanda\r\nkšeftařčin\r\nkšeftařka\r\nkšeftařštější\r\nkšeftař\r\nkšeftařův\r\nkšeft\r\nkšeftík\r\nkšeftování\r\nkšeftovat\r\nkšeftující\r\nkšiltovka\r\nkšíry\r\nkšš\r\nkštice\r\nkterak\r\nkterákoli\r\nkterákoliv\r\nkterás\r\nkterási\r\nkterážto\r\nkteréhokoli\r\nkteréhokoliv\r\nkteréhos\r\nkteréhosi\r\nkteréhož\r\nkterékoli\r\nkterékoliv\r\nkterémkoli\r\nkterémkoliv\r\nkteréms\r\nkterémsi\r\nkterémukoli\r\nkterémukoliv\r\nkterémus\r\nkterémusi\r\nkterémuž\r\nkterémžto\r\nkterés\r\nkterési\r\nkteréžto\r\nkteroukoli\r\nkteroukoliv\r\nkterous\r\nkterousi\r\nkteroužto\r\nkterýchkoli\r\nkterýchkoliv\r\nkterýchs\r\nkterýchsi\r\nkterýchžto\r\nkterýkoli\r\nkterýkoliv\r\nkterýmakoli\r\nkterýmakoliv\r\nkterýmas\r\nkterýmasi\r\nkterýmikoli\r\nkterýmikoliv\r\nkterýmis\r\nkterýmisi\r\nkterýmiž\r\nkterýmkoli\r\nkterýmkoliv\r\nkterýms\r\nkterýmsi\r\nkterýmžto\r\nkterýs\r\nkterýsi\r\nkterý\r\nkterý\r\nkterýžto\r\nkteřís\r\nkteřísi\r\nkteřížto\r\nKtová\r\nktovský\r\nktříkoli\r\nktříkoliv\r\nKU\r\nku\r\nKuala\r\nkualalumpurský\r\nKubáček\r\nKubáčková\r\nKubáčkův\r\nKubaláková\r\nKubalák\r\nKubalákův\r\nKubala\r\nKubálek\r\nKubalíková\r\nKubalík\r\nKubalíkův\r\nKubálková\r\nKubálkův\r\nKubalová\r\nKubalův\r\nKubáncův\r\nKubánčin\r\nKubánec\r\nKubánek\r\nKubánka\r\nKubánková\r\nKubánkův\r\nkubáňský\r\nkubánský\r\nKubáň\r\nKuba\r\nKubata\r\nKubatová\r\nKubátová\r\nKubát\r\nkubatura\r\nKubatův\r\nKubátův\r\nKuba\r\nKubcová\r\nKubcův\r\nKubec\r\nKubečka\r\nKubečková\r\nKubečkův\r\nKubelíková\r\nKubelík\r\nKubelíkův\r\nKubelka\r\nKubelková\r\nKubelkův\r\nKuběna\r\nKuběnka\r\nkuběnka\r\nKuběnková\r\nKuběnkův\r\nKuběnová\r\nKuběnův\r\nKubešová\r\nKubeš\r\nKubešův\r\nKubiasová\r\nKubias\r\nKubiasův\r\nKubice\r\nkubický\r\nkubický\r\nKubíček\r\nKubičíková\r\nKubičík\r\nKubičíkův\r\nKubička\r\nKubičková\r\nKubíčková\r\nKubičkův\r\nKubíčkův\r\nkubičtější\r\nkubika\r\nkubík\r\nKubíková\r\nKubík\r\nKubíkův\r\nKubínová\r\nKubín\r\nKubínův\r\nkubismus\r\nkubista\r\nkubistčin\r\nkubistický\r\nkubističtější\r\nkubistka\r\nkubistův\r\nKubiszová\r\nKubisz\r\nKubiszův\r\nKubišová\r\nKubišta\r\nKubištová\r\nKubištův\r\nKubiš\r\nKubišův\r\nkubizující\r\nKublov\r\nkublovský\r\nkubofuturismus\r\nKuboňová\r\nKuboň\r\nKuboňův\r\nKubová\r\nkubovka\r\nKubový\r\nKubrický\r\nKubrichtová\r\nKubricht\r\nKubrichtův\r\nKubrová\r\nKubr\r\nKubrtová\r\nKubrt\r\nKubrtův\r\nKubrův\r\nKubše\r\nKubšem\r\nKubši\r\nKubších\r\nKubšová\r\nKubšové\r\nKubšovi\r\nKubšů\r\nKubšům\r\nKubšův\r\nKubů\r\nkubus\r\nKubův\r\nkuckání\r\nkuckat\r\nkuckavý\r\nKučera\r\nkučeravý\r\nkučera\r\nkučerčin\r\nkučerka\r\nKučerová\r\nKučerov\r\nkučerovský\r\nKučerův\r\nkučírčin\r\nkučírka\r\nKudela\r\nKudelová\r\nKudelův\r\nKudibalová\r\nKudibal\r\nKudibalův\r\nKudláček\r\nKudláčková\r\nKudláčkův\r\nkudlanka\r\nKudlášek\r\nKudlášková\r\nKudláškův\r\nkudla\r\nkudlička\r\nKudlichův\r\nKudlovice\r\nkudlovický\r\nkudrlinka\r\nKudrnáčová\r\nKudrnáč\r\nKudrnáčův\r\nKudrna\r\nkudrnatější\r\nkudrnatění\r\nkudrnatěný\r\nkudrnatět\r\nkudrnatit\r\nkudrnatý\r\nkudrna\r\nKudrnka\r\nkudrnka\r\nKudrnová\r\nKudrnův\r\nkudy\r\nkudykoli\r\nkudykoliv\r\nkudysi\r\nKuenring\r\nKuenstlerová\r\nKuenstler\r\nKuenstlerův\r\nkufírek\r\nkufr\r\nkufrování\r\nkufrovat\r\nKufrová\r\nkufrový\r\nKufr\r\nKufrův\r\nkufříček\r\nkufřík\r\nkufříkový\r\nKuglerová\r\nKugler\r\nKuglerův\r\nKühnelová\r\nKühnel\r\nKühnelův\r\nKuhngaberová\r\nKuhngaber\r\nKuhngaberův\r\nKühnlová\r\nKühnl\r\nKühnlův\r\nKuhnová\r\nKühnová\r\nKuhn\r\nKühn\r\nKuhnův\r\nKühnův\r\nkuchání\r\nkuchaný\r\nkuchařčin\r\nkuchaření\r\nkuchařinčin\r\nkuchařinka\r\nkuchařka\r\nKuchařová\r\nKuchařovice\r\nkuchařovický\r\nkuchařský\r\nkuchařství\r\nkuchařštější\r\nkuchař\r\nKuchař\r\nKuchařův\r\nkuchařův\r\nkuchat\r\nkuchávání\r\nkuchávaný\r\nkuchávat\r\nKuchta\r\nkuchtiččin\r\nkuchtička\r\nkuchtík\r\nkuchtíkův\r\nkuchtit\r\nKuchtová\r\nKuchtův\r\nkuchyně\r\nKuchynka\r\nKuchyňka\r\nkuchyňka\r\nKuchynková\r\nKuchyňková\r\nKuchynkův\r\nKuchyňkův\r\nkuchyňský\r\nkuchyňštější\r\nkuchyň\r\nKujanová\r\nKujan\r\nKujanův\r\nKujbyšev\r\nkujbyševský\r\nkující\r\nkujnější\r\nkujný\r\nkuk\r\nkukaččí\r\nKukačka\r\nkukačka\r\nKukačková\r\nkukačkový\r\nKukačkův\r\nkukadla\r\nkukadlo\r\nKukalová\r\nKukal\r\nKukalův\r\nkukání\r\nkukaný\r\nkukaň\r\nkukat\r\nkukátko\r\nkukátkový\r\nkukávání\r\nkukávat\r\nKukla\r\nkukla\r\nkuklení\r\nKuklíková\r\nKuklík\r\nKuklíkův\r\nkuklit\r\nKuklová\r\nKuklův\r\nKuks\r\nkukský\r\nkuku\r\nkukuč\r\nkukuřice\r\nkukuřičný\r\nkulacení\r\nkulacký\r\nkulactvo\r\nkulaččin\r\nkulačka\r\nkulačtější\r\nkulajda\r\nkulak\r\nkulakův\r\nkulantnější\r\nkulantní\r\nKůla\r\nkulatější\r\nkulaticí\r\nkulatina\r\nkulatinka\r\nkulatit\r\nkulatka\r\nkulaťoučký\r\nkulaťounký\r\nkulatozrnný\r\nkulatý\r\nKulda\r\nKuldová\r\nKuldův\r\nkulečník\r\nkulečníkový\r\nkulení\r\nkulený\r\nkulér\r\nkulérový\r\nkule\r\nkůl\r\nkulhající\r\nKulhánek\r\nkulhání\r\nKulhánková\r\nKulhánkův\r\nkulhat\r\nkulhávající\r\nkulhávání\r\nkulhávat\r\nkulhavcův\r\nkulhavec\r\nkulhavější\r\nkulhavka\r\nKulhavý\r\nkulhavý\r\nKulíček\r\nkulička\r\nkuličkovací\r\nkuličkování\r\nkuličkovaný\r\nkuličkovat\r\nKulíčková\r\nkuličkovitý\r\nkuličkový\r\nKulíčkův\r\nkuliferda\r\nkuliferdův\r\nkulich\r\nKulichová\r\nKulich\r\nKulichův\r\nkulíkovitý\r\nkulík\r\nkulíkův\r\nkulinářský\r\nkulinářštější\r\nKulířov\r\nkulířovský\r\nkulisák\r\nkulisákův\r\nkulisárna\r\nkulisa\r\nkulisovější\r\nkulisovitější\r\nkulisový\r\nkulišák\r\nkulišákův\r\nkulíšek\r\nKulíšek\r\nKulíšková\r\nKulíškův\r\nkulíškův\r\nKulišťáková\r\nKulišťák\r\nKulišťákův\r\nkulit\r\nkulka\r\nkulma\r\nkulminace\r\nkulminační\r\nkulminování\r\nkulminovaný\r\nkulminovat\r\nkulminující\r\nkulmování\r\nkulmovaný\r\nkulmovat\r\nkulmovávat\r\nkůlna\r\nkůlnička\r\nkuloár\r\nkuloární\r\nkuloárový\r\nkulomet\r\nkulometník\r\nkulometný\r\nKůlová\r\nkulovitý\r\nkůlovitý\r\nkulovnice\r\nkůlový\r\nkulový\r\nKulštejnová\r\nKulštejn\r\nKulštejnův\r\nkulteranismus\r\nkult\r\nkultický\r\nkultismus\r\nkultista\r\nkultistčin\r\nkultistický\r\nkultistka\r\nkultistův\r\nkultivace\r\nkultivační\r\nkultivar\r\nkultivátor\r\nkultivovanější\r\nkultivování\r\nkultivovaný\r\nkultivovat\r\nkultivující\r\nKultová\r\nkultovní\r\nkultový\r\nKult\r\nkultura\r\nkulturista\r\nkulturistčin\r\nkulturistický\r\nkulturistika\r\nkulturistka\r\nkulturistův\r\nkulturněhistorický\r\nkulturnější\r\nkulturní\r\nkulturologie\r\nkulturotvornější\r\nkulturotvorný\r\nkultus\r\nKultův\r\nKůlův\r\nKumán\r\nkumánský\r\nkumarin\r\nkumarový\r\nkumbálek\r\nkumbál\r\nKumbera\r\nKumberová\r\nKumberův\r\nkumpán\r\nkumpánův\r\nKumpochová\r\nKumpoch\r\nKumpochův\r\nKumpoštová\r\nKumpošt\r\nKumpoštův\r\nkumšt\r\nkumštýřský\r\nkumštýřství\r\nkumštýř\r\nkumštýřův\r\nkumulace\r\nkumulační\r\nkumulativnější\r\nkumulativní\r\nkumulonimbus\r\nkumulování\r\nkumulovaný\r\nkumulovat\r\nkumulovávání\r\nkumulovávaný\r\nkumulovávat\r\nkumulující\r\nkumulus\r\nkumys\r\nkůň\r\nKuna\r\nKunartová\r\nKunart\r\nKunartův\r\nKunášek\r\nKunášková\r\nKunáškův\r\nKunathová\r\nKunath\r\nKunathův\r\nkuna\r\nKuncová\r\nKunc\r\nKuncův\r\nKunčice\r\nkunčický\r\nKunčina\r\nKundera\r\nKunderová\r\nKunderův\r\nKundratice\r\nkundratický\r\nKundrátová\r\nKundrát\r\nKundrátův\r\nKunertová\r\nKunert\r\nKunertův\r\nKunešová\r\nKuneš\r\nKunešův\r\nKunětice\r\nkunětický\r\nKunhuta\r\nKunhutin\r\nKunice\r\nkunický\r\nKunín\r\nkunínský\r\nkuní\r\nkuňk\r\nkuňkalčin\r\nkuňkalka\r\nkuňkání\r\nkuňkaný\r\nkuňkat\r\nkuňkávat\r\nkuňkavý\r\nkuňka\r\nKunová\r\nKunovice\r\nkunovický\r\nkunovitý\r\nKunovský\r\nkunový\r\nKunratice\r\nkunratický\r\nkunsthistorický\r\nkunsthistoriččin\r\nkunsthistorička\r\nkunsthistorie\r\nkunsthistorik\r\nkunsthistorikův\r\nKünstlerová\r\nKünstler\r\nKünstlerův\r\nKunstová\r\nKunst\r\nKunstův\r\nKunštát\r\nKunštátsko\r\nkunštátský\r\nKuntová\r\nKunt\r\nKuntův\r\nKunův\r\nKunzová\r\nKunz\r\nKunzův\r\nkunžacký\r\nKunžak\r\nKunžvart\r\nkunžvartský\r\nkupa\r\nkupážní\r\nkupážování\r\nkupážovaný\r\nkupážovat\r\nkupáž\r\nKupcová\r\nKupcův\r\nkupcův\r\nkupčení\r\nKupčíková\r\nKupčík\r\nKupčíkův\r\nkupčit\r\nkupčí\r\nKupčová\r\nKupč\r\nKupčův\r\nkupé\r\nkupecký\r\nkupectví\r\nkupec\r\nKupec\r\nkupečka\r\nkupečtější\r\nkupení\r\nkupený\r\nkupící\r\nkupička\r\nKupilíková\r\nKupilík\r\nKupilíkův\r\nkupírovací\r\nkupírování\r\nkupírovaný\r\nkupírovat\r\nkupit\r\nKupka\r\nkupka\r\nKupková\r\nKupkův\r\nkupletek\r\nkuplet\r\nkupletista\r\nkupletistčin\r\nkupletistka\r\nkupletistův\r\nkuplířčin\r\nkuplířka\r\nkuplířství\r\nkuplíř\r\nkuplířův\r\nkuplový\r\nkupní\r\nkupní\r\nkupodivu\r\nkupole\r\nkupolovitý\r\nkupolový\r\nkupon\r\nkupón\r\nkuponový\r\nkupónový\r\nkupování\r\nkupovaný\r\nkupovat\r\nkupovitý\r\nkuprit\r\nkuprospěchu\r\nkupř\r\nkupředu\r\nkupříkladu\r\nkupující\r\nKurandová\r\nKurand\r\nKurandův\r\nKuráňová\r\nKuráň\r\nKuráňův\r\nkurátorčin\r\nkuratorium\r\nkurátorka\r\nkurátor\r\nkurátorův\r\nkurát\r\nkurátův\r\nkúra\r\nkůra\r\nkurážnější\r\nkurážný\r\nkuráž\r\nkurčatovium\r\nkůrčička\r\nkurděje\r\nKurdějov\r\nkurdějovský\r\nKurdistán\r\nkurdistánský\r\nKurd\r\nkurdský\r\nkurdův\r\nkurevník\r\nkurevníkův\r\nKurfiřtová\r\nkurfiřt\r\nKurfiřt\r\nkurfiřtský\r\nkurfiřtství\r\nKurfiřtův\r\nkurfiřtův\r\nkur\r\nkůr\r\nkuriální\r\nkurie\r\nkurikulární\r\nkurikulum\r\nkuriový\r\nkuriozita\r\nkurióznější\r\nkuriózní\r\nKurka\r\nKůrka\r\nkůrka\r\nKurková\r\nKůrková\r\nkůrkový\r\nkurkumin\r\nKurkův\r\nKůrkův\r\nkurník\r\nKuronsko\r\nkuropění\r\nkůrovcový\r\nkůrovcův\r\nkůrovec\r\nkurovitý\r\nkůrovitý\r\nkůrový\r\nkurový\r\nkurs\r\nkursista\r\nkursistčin\r\nkursistka\r\nkursistův\r\nkursor\r\nkursorový\r\nkursovné\r\nkursovní\r\nkursový\r\nkurt\r\nkurtizána\r\nkurtizánin\r\nkurtoaznější\r\nkurva\r\nkurvička\r\nkurýrčin\r\nkurýrka\r\nkurýrní\r\nkurýrování\r\nkurýrovaný\r\nkurýrovat\r\nkurýr\r\nkurýrský\r\nkurýrův\r\nkurz\r\nkurzista\r\nkurzistčin\r\nkurzistka\r\nkurzistův\r\nkurziva\r\nkurzíva\r\nkurzivní\r\nkurzívní\r\nkurzor\r\nkurzorový\r\nKurzová\r\nkurzovné\r\nkurzovní\r\nkurzový\r\nKurz\r\nKurzův\r\nkuřácký\r\nkuřáctví\r\nkuřaččin\r\nkuřačka\r\nkuřáčtější\r\nKuřáková\r\nkuřák\r\nKuřák\r\nKuřákův\r\nkuřákův\r\nkuřárna\r\nkuřátko\r\nkuřavka\r\nkuřecí\r\nkuře\r\nkuřice\r\nkuřička\r\nKuříková\r\nKuřík\r\nKuříkův\r\nKuřilová\r\nKuřil\r\nKuřilův\r\nKuřim\r\nkuřimský\r\nkuřivo\r\nkuří\r\nkusadlo\r\nkusadlový\r\nkusanec\r\nKůsa\r\nkusejší\r\nKusek\r\nkus\r\nKusková\r\nKuskův\r\nKůsová\r\nkusovější\r\nkusovitý\r\nkusovník\r\nkusovníkový\r\nkusový\r\nKůs\r\nkůstka\r\nkustod\r\nkustodův\r\nKůsův\r\nKusý\r\nkusý\r\nkuše\r\nKušiaková\r\nKušiak\r\nKušiakův\r\nkušitský\r\nKutáčová\r\nKutáč\r\nKutáčův\r\nKuťáková\r\nKuťák\r\nKuťákův\r\nkutálející\r\nkutálení\r\nkutálený\r\nkutálet\r\nkutálka\r\nKutalová\r\nKutal\r\nKutalův\r\nkutání\r\nkutaný\r\nkutat\r\nkutávat\r\nkutění\r\nkutěný\r\nkutící\r\nKutíková\r\nKutík\r\nKutíkův\r\nKutílek\r\nkutilka\r\nKutílková\r\nKutílkův\r\nKutilová\r\nKutil\r\nkutil\r\nkutilský\r\nkutilství\r\nKutilův\r\nkutilův\r\nkutinový\r\nkutí\r\nkutiště\r\nkutit\r\nkutloch\r\nKutnarová\r\nKutnar\r\nKutnarův\r\nKutná\r\nkutna\r\nKutnohorsko\r\nkutnohorský\r\nkutr\r\nkutý\r\nKuvajťančin\r\nKuvajťanka\r\nKuvajťan\r\nKuvajťanův\r\nKuvajt\r\nkuvajtský\r\nkůzlátko\r\nkůzlečí\r\nkůzle\r\nKužela\r\nkužel\r\nkuželík\r\nkuželíkový\r\nkuželkárna\r\nkuželkářčin\r\nkuželkářka\r\nkuželkářský\r\nkuželkář\r\nkuželkářův\r\nkuželka\r\nkuželkový\r\nkuželnatka\r\nkuželna\r\nkuželník\r\nkuželníkový\r\nkuželosečka\r\nKuželová\r\nkuželovitější\r\nkuželovitý\r\nKuželov\r\nkuželovský\r\nkuželový\r\nKužel\r\nKuželův\r\nkůže\r\nkůžička\r\nKužvartová\r\nKužvart\r\nKužvartův\r\nKV\r\nKvaček\r\nkvačení\r\nKvačice\r\nkvačický\r\nKvačiková\r\nKvačik\r\nKvačikův\r\nkvačit\r\nkvačka\r\nKvačková\r\nKvačkův\r\nkvád\r\nkvadrant\r\nkvadrantový\r\nkvadrát\r\nkvadratický\r\nkvadrátor\r\nkvadratura\r\nkvádr\r\nkvadriatlonista\r\nkvadriatlonistčin\r\nkvadriatlonistka\r\nkvadriatlonistův\r\nkvadrika\r\nkvadriliarda\r\nkvadrilion\r\nkvadrofonní\r\nkvádrový\r\nkvadruplegický\r\nkvadruplegiččin\r\nkvadruplegička\r\nkvadruplegie\r\nkvadruplegik\r\nkvadruplegikův\r\nkvádřík\r\nkvádříkový\r\nkvádský\r\nkvak\r\nkvák\r\nkvákající\r\nkvákání\r\nkvákaný\r\nkvákat\r\nkvákavější\r\nkvákavý\r\nkváknout\r\nkvakoš\r\nkvakošův\r\nkvalifikace\r\nkvalifikační\r\nkvalifikátor\r\nkvalifikovanější\r\nkvalifikování\r\nkvalifikovaný\r\nkvalifikovat\r\nkvalifikovatelný\r\nkvalifikovávání\r\nkvalifikovávaný\r\nkvalifikovávat\r\nkvalifikující\r\nkvalitativnější\r\nkvalitativní\r\nkvalita\r\nkvalitnější\r\nkvalitní\r\nkvaltování\r\nkvaltovat\r\nkvaltovka\r\nkvantifikace\r\nkvantifikační\r\nkvantifikátor\r\nkvantifikování\r\nkvantifikovantelný\r\nkvantifikovaný\r\nkvantifikovat\r\nkvantifikovatelný\r\nkvantil\r\nkvantilový\r\nkvantitativnější\r\nkvantitativní\r\nkvantita\r\nkvantování\r\nkvantovaný\r\nkvantovat\r\nkvantovávání\r\nkvantovávaný\r\nkvantovávat\r\nkvantový\r\nkvantum\r\nkvapem\r\nkvapení\r\nkvapený\r\nkvap\r\nkvapící\r\nkvapík\r\nkvapíkový\r\nKvapilová\r\nKvapil\r\nKvapilův\r\nkvapit\r\nkvapivý\r\nkvapnější\r\nkvapný\r\nkvarcit\r\nkvarcitový\r\nKvarda\r\nKvardová\r\nKvardův\r\nkvark\r\nkvartakord\r\nkvartakordový\r\nkvartál\r\nkvartální\r\nkvartánčin\r\nkvartánka\r\nkvartán\r\nkvartánův\r\nkvarta\r\nkvartdecima\r\nkvartér\r\nkvarterní\r\nkvartérní\r\nkvartetista\r\nkvartetistčin\r\nkvartetistka\r\nkvartetistův\r\nkvarteto\r\nkvartil\r\nkvartový\r\nkvartsextakord\r\nkvartsextakordový\r\nkvartýr\r\nkvasar\r\nkvásek\r\nkvas\r\nKvasice\r\nkvasící\r\nkvasický\r\nkvasidlo\r\nkvasinka\r\nkvasinkový\r\nkvasírna\r\nkvasit\r\nkvasivý\r\nkvasnice\r\nkvasnicový\r\nkvasničák\r\nKvasnička\r\nkvasnička\r\nKvasničková\r\nKvasničkův\r\nkvasniční\r\nkvasničný\r\nkvasný\r\nkvašení\r\nkvašený\r\nkvaternární\r\nkvaternion\r\nkvazar\r\nkvazialgebra\r\nkvazidynamický\r\nkvazigrupa\r\nkvaziideál\r\nkvazikřehký\r\nkvazimetrický\r\nkvaziparalelismus\r\nkvazipropozice\r\nkvazireálný\r\nkvazirevoluční\r\nkvazirezonanční\r\nkvazispolečnost\r\nkvazistatický\r\nkvaziuspořádání\r\nkvazivědecký\r\nkvečeru\r\nkvéčko\r\nkvedlačka\r\nkvedlání\r\nkvedlaný\r\nkvedlat\r\nkvedlávání\r\nkvedlávaný\r\nkvedlávat\r\nKvedlinburk\r\nkverulantčin\r\nkverulantka\r\nkverulant\r\nkverulantštější\r\nkverulantův\r\nkverulování\r\nkverulovaný\r\nkverulovat\r\nkverulující\r\nkvést\r\nkvětáček\r\nkvěták\r\nkvětákový\r\nKvěta\r\nkvětena\r\nkvetení\r\nkvěten\r\nkvětenský\r\nkvětenství\r\nkvetený\r\nkvět\r\nkvětilka\r\nkvětináček\r\nkvětináč\r\nkvětinářčin\r\nkvětinářka\r\nkvětinářský\r\nkvětinářství\r\nkvětinářštější\r\nkvětinář\r\nkvětinářův\r\nkvětina\r\nkvětinka\r\nkvětinkový\r\nKvětinov\r\nkvětinovský\r\nkvětinový\r\nKvětin\r\nkvětnatější\r\nkvětnatý\r\nKvětná\r\nKvětnice\r\nkvětnický\r\nkvětní\r\nkvětnový\r\nkvětný\r\nkvětomluva\r\nKvětoň\r\nkvětoň\r\nKvětoňův\r\nKvětoslava\r\nKvětoslavin\r\nKvětoslav\r\nKvětoslavův\r\nkvetoucí\r\nkvětování\r\nkvětovaný\r\nkvětovat\r\nKvětov\r\nkvětovský\r\nkvětový\r\nKvětuščin\r\nKvětuše\r\nKvětušin\r\nKvětuška\r\nKvíčala\r\nkvíčala\r\nKvíčalová\r\nKvíčalův\r\nkvičení\r\nkvičet\r\nkvičící\r\nkvičivější\r\nkvičivý\r\nKvido\r\nKvído\r\nKvídová\r\nKvidův\r\nKvídův\r\nkvietismus\r\nkvik\r\nkvík\r\nkvikání\r\nkvikat\r\nkvíkat\r\nkvikavý\r\nkviknout\r\nkvíknout\r\nkviknutí\r\nkvikot\r\nkvilajový\r\nKvilda\r\nkvílející\r\nkvílení\r\nkvílet\r\nkvil\r\nKvílice\r\nkvílící\r\nkvílický\r\nkvílit\r\nkvílivější\r\nkvílivý\r\nkvintakord\r\nkvintakordový\r\nkvintánčin\r\nkvintánka\r\nkvintán\r\nkvintánův\r\nkvinta\r\nkvintdecima\r\nkvintesence\r\nkvintet\r\nkvinteto\r\nkvintiliarda\r\nkvintilion\r\nkvintový\r\nKvisa\r\nkvitance\r\nkvíteček\r\nKvítek\r\nkvítek\r\nkvítí\r\nkvítko\r\nkvítkovanější\r\nkvítkovaný\r\nKvítková\r\nKvítkovice\r\nkvítkovický\r\nKvítkov\r\nkvítkovský\r\nkvítkový\r\nKvítkův\r\nkvitování\r\nkvitovaný\r\nkvitovat\r\nkvitovávání\r\nkvitovávaný\r\nkvitovávat\r\nkvitující\r\nkviz\r\nkvíz\r\nkvizový\r\nkvocient\r\nkvoč\r\nkvočka\r\nkvočna\r\nKvochová\r\nKvoch\r\nKvochův\r\nkvok\r\nkvokající\r\nkvokání\r\nkvokaný\r\nkvokat\r\nkvokavější\r\nkvokavý\r\nkvoknout\r\nkvorum\r\nkvotace\r\nkvóta\r\nkvótovaný\r\nkvrdlat\r\nkvůli\r\nkW\r\nkWh\r\nký\r\nkyanamid\r\nkyanatan\r\nkyan\r\nkyanid\r\nkyanidin\r\nkyanidový\r\nkyanovodík\r\nkyanovodíkový\r\nkyanový\r\nkyanozlatanový\r\nkyanoželezitan\r\nkyanoželeznatan\r\nkyberkultura\r\nkybernaut\r\nkybernautův\r\nkybernetický\r\nkybernetiččin\r\nkybernetička\r\nkybernetika\r\nkybernetik\r\nkybernetikův\r\nkyberprostor\r\nkyberpunk\r\nkyberpunkový\r\nkýbl\r\nkyblíček\r\nkyblík\r\nKyclová\r\nKycl\r\nKyclův\r\nkýčařský\r\nkyčel\r\nkyčelní\r\nkyčelní\r\nkyčle\r\nkyčlemi\r\nkyčli\r\nkyčlí\r\nkyčlích\r\nkyčlím\r\nkýčovější\r\nkýčovitější\r\nkýčovitý\r\nkýčový\r\nkýč\r\nkydání\r\nkydaný\r\nkydat\r\nkydávání\r\nkydávaný\r\nkydávat\r\nKydlíček\r\nKydlíčková\r\nKydlíčkův\r\nkyfóza\r\nkyhanka\r\nkýho\r\nkýchající\r\nkýchání\r\nkýchat\r\nkýchavý\r\nkýchnout\r\nkýchnutí\r\nkychta\r\nkychtový\r\nKyjev\r\nkyjevský\r\nKyjovčin\r\nKyjovice\r\nkyjovitý\r\nKyjovka\r\nKyjov\r\nkyjovský\r\nkyj\r\nkyklopský\r\nkyklopštější\r\nkykyryký\r\nkýla\r\nkýl\r\nkýlnatý\r\nkýlní\r\nkýlovitý\r\nkýlový\r\nkým\r\nkymácející\r\nkymácení\r\nkymácet\r\nkymácivější\r\nkymácivý\r\nkymerština\r\nkýmkoli\r\nkýmkoliv\r\nKymlová\r\nKyml\r\nKymlův\r\nkýmpak\r\nkýms\r\nkýmsi\r\nkýmž\r\nKynclová\r\nKyncl\r\nKynclův\r\nkynologický\r\nkynologie\r\nkynolog\r\nkynologův\r\nkynoložčin\r\nkynoložka\r\nkynoucí\r\nkynout\r\nKynšperk\r\nkynutí\r\nkynutý\r\nKynychová\r\nKynych\r\nKynychův\r\nKynžvart\r\nkynžvartský\r\nkypění\r\nkypěný\r\nkyperský\r\nkypět\r\nkypící\r\nkypivější\r\nkypivý\r\nkyprej\r\nKypr\r\nkyprý\r\nKypřančin\r\nKypřanka\r\nKypřan\r\nKypřanův\r\nkypřejší\r\nkypření\r\nkypřený\r\nkypřicí\r\nkypřící\r\nkypřič\r\nkypřidlo\r\nkypřit\r\nKyralová\r\nKyral\r\nKyralův\r\nkyretáž\r\nKyrgyzčin\r\nKyrgyzka\r\nKyrgyz\r\nkyrgyzský\r\nkyrgyzský\r\nKyrgyzstán\r\nkyrgyzština\r\nKyrgyzův\r\nKyrianová\r\nKyrian\r\nKyrianův\r\nkyrilika\r\nkyrys\r\nkyrysnický\r\nkyrysník\r\nkyrysníkův\r\nkysanější\r\nkysání\r\nkysaný\r\nkysat\r\nKyseláková\r\nKyselák\r\nKyselákův\r\nKysela\r\nkyselejší\r\nkyselina\r\nkyselinka\r\nkyselinotvorný\r\nkyselinový\r\nkyselinovzdorný\r\nKyselka\r\nkyselka\r\nkyselo\r\nKyselo\r\nKyselová\r\nKyselovice\r\nkyselovický\r\nKyselův\r\nkyselý\r\nkysibelka\r\nkysličník\r\nkyslíkatější\r\nkyslíkatý\r\nkyslík\r\nkyslíkoacetylénový\r\nkyslíkovodíkový\r\nkyslíkový\r\nkyslíkový\r\nkysnout\r\nkysnutí\r\nKysuca\r\nkysucký\r\nKyšice\r\nkyšický\r\nkyška\r\nkytara\r\nkytarista\r\nkytaristčin\r\nkytaristka\r\nkytaristův\r\nkytarový\r\nkýta\r\nkyt\r\nkytice\r\nkytička\r\nkytičkový\r\nKytín\r\nkytínský\r\nkytka\r\nKytlice\r\nkytlice\r\nkytlický\r\nkytování\r\nkytovaný\r\nkytovat\r\nkytovcův\r\nkytovec\r\nkyvadélko\r\nkyvadlo\r\nkyvadlový\r\nkývající\r\nkývalka\r\nkývání\r\nkývat\r\nkývavý\r\nkyveta\r\nkyv\r\nkývnout\r\nkývnutí\r\nkývnutý\r\nkyvný\r\nkyz\r\nKyzlinková\r\nKyzlink\r\nKyzlinkův\r\nkyzový\r\nkýženější\r\nkýžený\r\nLa\r\nLabajová\r\nLabaj\r\nLabajův\r\nLabe\r\nlabiálnější\r\nlabiální\r\nLabíková\r\nLabík\r\nLabíkův\r\nlabilita\r\nlabilnější\r\nlabilní\r\nlabiodentála\r\nlabiodentální\r\nlaborantčin\r\nlaborantka\r\nlaborant\r\nlaborantův\r\nlaboratornější\r\nlaboratorní\r\nlaboratoř\r\nlaborování\r\nlaborovat\r\nlaborující\r\nlabourista\r\nlabouristčin\r\nlabouristický\r\nlabourističtější\r\nlabouristka\r\nlabouristův\r\nLabrador\r\nlabradorit\r\nlabradoritový\r\nlabradorský\r\nlabský\r\nLábusová\r\nLábus\r\nLábusův\r\nlabutěnka\r\nlabutí\r\nlabuťový\r\nlabuť\r\nLabuzíková\r\nLabuzík\r\nLabuzíkův\r\nlabužnice\r\nlabužnický\r\nlabužničin\r\nlabužničtější\r\nlabužník\r\nlabužníkův\r\nlabyrint\r\nlabyrintový\r\nLacasseův\r\nláce\r\nLacina\r\nlacinější\r\nlacinění\r\nlacinět\r\nlacino\r\nLacinová\r\nLacinův\r\nlaciný\r\nlacl\r\nlaclový\r\nláčka\r\nláčkovcův\r\nláčkovec\r\nláčkovka\r\nláčkový\r\nlačnější\r\nlačnění\r\nlačněný\r\nlačnět\r\nlačnící\r\nLačnov\r\nlačnovský\r\nlačný\r\nladakde\r\nLada\r\nLáďa\r\nLada\r\nlada\r\nladem\r\nLaděna\r\nLaděnčin\r\nladěnější\r\nLaděnin\r\nladění\r\nLaděnka\r\nladěný\r\nlad\r\nladicí\r\nladící\r\nladička\r\nladičský\r\nladič\r\nladičův\r\nladinština\r\nLadin\r\nLadislav\r\nLadislavův\r\nladit\r\nladitelnější\r\nladnější\r\nladný\r\nLadoga\r\nladoňka\r\nládování\r\nládovaný\r\nládovat\r\nLadová\r\nladožský\r\nLadův\r\nLáďův\r\nLádví\r\nlady\r\nlafeta\r\nLagos\r\nlágr\r\nlágrový\r\nlaguna\r\nlagunový\r\nlahev\r\nláhev\r\nLahlová\r\nLahl\r\nLahlův\r\nlahoda\r\nlahodění\r\nlahodící\r\nlahodit\r\nlahodnější\r\nlahodný\r\nlahůdkářský\r\nlahůdkářství\r\nlahůdkář\r\nlahůdkářův\r\nlahůdka\r\nlahůdkový\r\nlahvárna\r\nlahvice\r\nlahvička\r\nlahvinka\r\nlahvovací\r\nlahvování\r\nlahvovaný\r\nláhvovaný\r\nlahvovat\r\nláhvovat\r\nlahvovna\r\nlahvový\r\nláhvový\r\nLachema\r\nLachmanová\r\nLachman\r\nLachmanův\r\nLachová\r\nLach\r\nlachtaní\r\nlachtan\r\nlachtanův\r\nLachův\r\nlaicismus\r\nlaicizace\r\nlaický\r\nlaiččin\r\nlaička\r\nlaičtější\r\nlaik\r\nlaikův\r\nlajdácký\r\nlajdáctví\r\nlajdačení\r\nlajdačit\r\nlajdačka\r\nlajdáčtější\r\nlajdák\r\nlajdákův\r\nlajdání\r\nlajdat\r\nlajdavější\r\nlajdavý\r\nlající\r\nlajn\r\nlajna\r\nlajnování\r\nlajnovaný\r\nlajnovat\r\nLajpoldová\r\nLajpold\r\nLajpoldův\r\nLajtkepová\r\nLajtkep\r\nLajtkepův\r\nlákadlo\r\nlákající\r\nlákání\r\nlákaný\r\nlákat\r\nLakatová\r\nLakat\r\nLakatův\r\nlákavější\r\nlákavý\r\nLake\r\nlak\r\nlák\r\nlakmus\r\nlakmusový\r\nlakolit\r\nlakomcův\r\nlakomec\r\nlakomější\r\nlakomství\r\nlakomý\r\nlakonický\r\nlakoničtější\r\nlakota\r\nlakotění\r\nlakotit\r\nlakotnější\r\nlakotný\r\nlakovací\r\nlakování\r\nlakovaný\r\nlakovat\r\nlakovávání\r\nlakovávaný\r\nlakovávat\r\nlakovka\r\nlakovna\r\nlákový\r\nlakový\r\nlakština\r\nlaktace\r\nlaktační\r\nlaktamový\r\nlaktát\r\nlaktátový\r\nlaktátový\r\nlaktitol\r\nlaktobakteriální\r\nlaktobakterie\r\nlakton\r\nlaktonový\r\nlaktosa\r\nlaktóza\r\nlaktózový\r\nlaktující\r\nlaktylovaný\r\nlakušník\r\nlakýrka\r\nlakýrnice\r\nlakýrnický\r\nlakýrnictví\r\nlakýrničin\r\nlakýrník\r\nlakýrníkův\r\nlaločnatější\r\nlaločnatý\r\nlalok\r\nlalokoploutvý\r\nLaloušek\r\nLaloušková\r\nLalouškův\r\nlalůček\r\nlalůčkový\r\nlámací\r\nlamaččin\r\nlamačka\r\nLamačová\r\nlamačský\r\nlamač\r\nLamač\r\nLamačův\r\nlamačův\r\nlamaismus\r\nlámaismus\r\nlamaista\r\nlamaistčin\r\nlámaistický\r\nlamaistka\r\nlamaistův\r\nlámající\r\nlámanější\r\nlámání\r\nlamanšský\r\nlamanšský\r\nlámaný\r\nláma\r\nlamarckismus\r\nlamarckistický\r\nlámat\r\nlámavější\r\nlámavý\r\nlama\r\nlambda\r\nLambův\r\nlamela\r\nlamelový\r\nlamentace\r\nlament\r\nlamentování\r\nlamentovat\r\nlamentující\r\nlametoso\r\nLamichová\r\nLamich\r\nLamichův\r\nlaminace\r\nlaminační\r\nlaminární\r\nlaminát\r\nlaminátový\r\nlamino\r\nlaminovací\r\nlaminování\r\nlaminovaný\r\nlaminovat\r\nlamí\r\nlampantový\r\nlampárna\r\nlampářčin\r\nlampářka\r\nlampář\r\nlampářův\r\nlampasák\r\nlampasákův\r\nlampas\r\nlampa\r\nLampertice\r\nlampertický\r\nlampička\r\nlampion\r\nlampión\r\nlampionový\r\nlampiónový\r\nlampovka\r\nlampový\r\nLamprechtová\r\nLamprecht\r\nLamprechtův\r\nlamprofyr\r\nlamprofyrový\r\nlámův\r\nlamželezo\r\nlamželezův\r\nLAN\r\nLaňarová\r\nLaňar\r\nLaňarův\r\nlanařčin\r\nlanaření\r\nlanařit\r\nlanařka\r\nlanař\r\nlanařův\r\nlancasterka\r\nLancelot\r\nLancelotův\r\nLancová\r\nLanc\r\nLancův\r\nlančmít\r\nLančov\r\nlančovský\r\nLanda\r\nLandek\r\nlandfrýd\r\nlandfrýdův\r\nLandkammerová\r\nLandkammer\r\nLandkammerův\r\nLandorová\r\nLandor\r\nLandorův\r\nLandová\r\nLandovský\r\nlandrát\r\nLandsteinerův\r\nLandův\r\nLandyšová\r\nLandyš\r\nLandyšův\r\nlánek\r\nlangage\r\nLangerhans\r\nLangerhansův\r\nLangerová\r\nLanger\r\nLangerův\r\nLange\r\nLanghammerová\r\nLanghammer\r\nLanghammerův\r\nLangmeierová\r\nLangmeier\r\nLangmeierův\r\nLangová\r\nLangpaulová\r\nLangpaul\r\nLangpaulův\r\nLang\r\nLangrová\r\nLangr\r\nLangrův\r\nlangue\r\nlangusta\r\nlangustina\r\nLangův\r\nLangyelová\r\nLangyel\r\nLangyelův\r\nlán\r\nLaníková\r\nLáníková\r\nLaník\r\nLáník\r\nLaníkův\r\nLáníkův\r\nlání\r\nlaní\r\nLanka\r\nlaňka\r\nlanko\r\nlankový\r\nlankrabě\r\nlankrabí\r\nlanolin\r\nlanolín\r\nlanolinový\r\nlano\r\nlanoví\r\nlanovka\r\nlanovkový\r\nLánov\r\nlánovský\r\nlánový\r\nlanový\r\nLánský\r\nLanškroun\r\nlanškrounský\r\nLANtastic\r\nlanthan\r\nlanthanoid\r\nlanthanový\r\nlanýžový\r\nlanýž\r\nlaň\r\nLanžhot\r\nlanžhotský\r\nLanžov\r\nlanžovský\r\nLaosančin\r\nLaosanka\r\nLaosan\r\nLaosanův\r\nLaos\r\nlaoský\r\nlaoština\r\nLapáček\r\nlapačka\r\nLapáčková\r\nLapáčkův\r\nlapač\r\nlapající\r\nlapák\r\nlapálie\r\nlapání\r\nlapaný\r\nlaparoskop\r\nlaparoskopický\r\nlaparoskopie\r\nlaparotomický\r\nlapat\r\nlapávat\r\nlapavý\r\nLapčíková\r\nLapčík\r\nLapčíkův\r\nlapení\r\nlapený\r\nlapidárium\r\nlapidárnější\r\nlapidární\r\nlapiduch\r\nlapiduchův\r\nlápis\r\nlapit\r\nlapitelnější\r\nlapitelný\r\nlapka\r\nlapkův\r\nlaplaceovský\r\nLaplaceův\r\nLaplace\r\nlapnout\r\nLaponsko\r\nlaponský\r\nlaponština\r\nlapovací\r\nlapování\r\nlapovaný\r\nlapovat\r\nlapsus\r\nlaptop\r\nlarev\r\nlargo\r\nLarisa\r\nlarmoyantnější\r\nlarmoyantní\r\nlartpourlartismus\r\nlarvální\r\nlarva\r\nlarviččin\r\nlarvička\r\nlarvový\r\nláry\r\nlaryngoskop\r\nLáryšov\r\nláryšovský\r\nlascivnější\r\nlascivný\r\nlascívný\r\nLásenice\r\nlásenický\r\nlaser\r\nlaseroterapie\r\nlaserový\r\nlasice\r\nlasicovitý\r\nlasička\r\nlaskání\r\nlaskaný\r\nLáska\r\nlaskat\r\nlaskávat\r\nlaskavec\r\nlaskavější\r\nlaskav\r\nlaskavý\r\nláska\r\nlaskomina\r\nlaskonka\r\nLásková\r\nLáskův\r\nláskychtivý\r\nláskyplnější\r\nláskyplný\r\nlaso\r\nlasování\r\nlasovaný\r\nlasovat\r\nlastexový\r\nlastura\r\nlasturka\r\nlasturnatka\r\nlasturnatý\r\nlasturovitý\r\nlasturový\r\nlaškování\r\nlaškovaný\r\nlaškovat\r\nLaškov\r\nlaškovnější\r\nlaškovný\r\nlaškovský\r\nlaškující\r\nlašský\r\nlaština\r\nlaštovčin\r\nlašťovčin\r\nlaštoviččin\r\nlašťoviččin\r\nLaštovička\r\nlaštovička\r\nlašťovička\r\nLaštovičková\r\nLaštovičkův\r\nLaštovka\r\nlaštovka\r\nlašťovka\r\nLaštovková\r\nLaštovkův\r\nlaštůvčin\r\nLaštůvka\r\nlaštůvka\r\nLaštůvková\r\nLaštůvkův\r\nlátací\r\nLátalová\r\nLátal\r\nLátalův\r\nlátání\r\nlátaný\r\nlátat\r\nlátávat\r\nlata\r\nlát\r\nlátečka\r\nLátek\r\nlatence\r\nlaténský\r\nlatentnější\r\nlatentní\r\nlaterála\r\nlateralita\r\nlaterální\r\nlateránský\r\nlaterit\r\nláteření\r\nláteřený\r\nláteřící\r\nláteřit\r\nLaTeX\r\nLaTeXem\r\nlatex\r\nlatexovací\r\nlatexování\r\nlatexovaný\r\nlatexovat\r\nLaTeXový\r\nlatexový\r\nLaTeXu\r\nlatička\r\nlatifundie\r\nlatifundista\r\nlatifundistčin\r\nlatifundistka\r\nlatifundistův\r\nlatifundium\r\nlatimérie\r\nlatinářčin\r\nlatinářka\r\nlatinář\r\nlatinářův\r\nlatina\r\nlatiník\r\nlatiníkův\r\nlatinizovaný\r\nlatinka\r\nlatinskoamerický\r\nlatinskoameričtější\r\nlatinský\r\nlatinštější\r\nlaťka\r\nlátka\r\nLátková\r\nlaťkový\r\nlátkový\r\nLátkův\r\nLatocha\r\nLatochová\r\nLatochův\r\nlaťovina\r\nlaťovka\r\nlaťovkový\r\nlaťový\r\nlatrína\r\nlať\r\nLaudon\r\nLaudonův\r\nlauenburský\r\nLauerová\r\nLauer\r\nLauerův\r\nLaura\r\nlaureátčin\r\nlaureátka\r\nlaureát\r\nlaureátský\r\nlaureátství\r\nlaureátův\r\nLaurinová\r\nLaurin\r\nLaurinův\r\nlaurový\r\nlaurylsulfát\r\nLaurynová\r\nLauryn\r\nLaurynův\r\nLauřin\r\nLausanne\r\nLaušmanová\r\nLaušman\r\nLaušmanův\r\nláva\r\nlavice\r\nLavický\r\nlavicovitý\r\nlavičenský\r\nLavička\r\nlavička\r\nLavičková\r\nlavičkový\r\nLavičkův\r\nLavičné\r\nlavina\r\nlavinovitější\r\nlavinovitý\r\nlavinový\r\nlavírování\r\nlavírovaný\r\nlavírovat\r\nlavírující\r\nlávka\r\nlávkový\r\nlávový\r\nLávra\r\nLávrová\r\nLávrův\r\nlawrencium\r\nlaxnější\r\nlaxní\r\nlazaret\r\nlazaretní\r\nlazarista\r\nlazaristčin\r\nlazaristka\r\nlazaristův\r\nLazarjanová\r\nLazarjan\r\nLazarjanův\r\nLazarová\r\nlazar\r\nLazar\r\nLazarův\r\nlazarův\r\nlazebnice\r\nlazebník\r\nlazebníkův\r\nLazecký\r\nlázeňský\r\nlázeňství\r\nlázeňštější\r\nlázeň\r\nLazinov\r\nlazinovský\r\nLázníček\r\nláznička\r\nLázníčková\r\nLázníčkův\r\nLázňovský\r\nLazsko\r\nlazura\r\nLažanský\r\nlažanský\r\nLažany\r\nlážový\r\nLB\r\nlb\r\nlbi\r\nlbí\r\nlbích\r\nlbím\r\nLCD\r\nldyž\r\nleader\r\nleaderův\r\nleasing\r\nleasingový\r\nLeaversův\r\nLea\r\nleb\r\nlebeční\r\nLebeda\r\nlebeda\r\nlebedka\r\nLebedová\r\nLebedův\r\nLebesgue\r\nLebesgueův\r\nLebišová\r\nLebiš\r\nLebišův\r\nlebka\r\nlebmi\r\nleccos\r\nlecco\r\nlecčems\r\nlecithin\r\nlecitin\r\nlecjak\r\nlecjakýs\r\nlecjaký\r\nleckam\r\nleckams\r\nleckde\r\nleckdes\r\nleckdo\r\nleckdy\r\nleckdys\r\nleckterý\r\nLeclanche\r\nLeclancheův\r\nleč\r\nléčba\r\nléčebna\r\nléčebný\r\nléčení\r\nléčený\r\nLečice\r\nléčící\r\nlečický\r\nléčit\r\nléčitelčin\r\nléčitelka\r\nléčitelnější\r\nléčitelný\r\nléčitelský\r\nléčitelství\r\nléčitel\r\nléčitelův\r\nléčivější\r\nléčivka\r\nléčivo\r\nléčivý\r\nléčka\r\nlečo\r\nleč\r\nléč\r\nLED\r\nleda\r\nledabylejší\r\nLedabylová\r\nLedabyl\r\nLedabylův\r\nledabylý\r\nledacos\r\nledaco\r\nledačí\r\nledajak\r\nledajaký\r\nledakdo\r\nledakterý\r\nledárna\r\nledasco\r\nledaskam\r\nledaskde\r\nledaskdo\r\nledaskdy\r\nledaže\r\nLedče\r\nLedči\r\nLedčí\r\nLedeburský\r\nLedeč\r\nLedečko\r\nledečský\r\nledek\r\nLedenice\r\nledenický\r\nleden\r\nLedererová\r\nLederer\r\nLedererův\r\nLederová\r\nLeder\r\nLederův\r\nled\r\nLédlová\r\nLédl\r\nLédlův\r\nledňáček\r\nledňáčkovitý\r\nledňáčKův\r\nledňáčkův\r\nledňák\r\nledňákův\r\nLednice\r\nlednice\r\nLednicko\r\nlednický\r\nlednička\r\nlední\r\nlednovější\r\nlednový\r\nledoborec\r\nledolam\r\nledopád\r\nledování\r\nledovaný\r\nledovat\r\nledovatět\r\nledovatka\r\nledovatý\r\nledovcový\r\nledovec\r\nledovější\r\nledovka\r\nledový\r\nLedská\r\nLedvice\r\nledvický\r\nLedvina\r\nledvina\r\nledvinitý\r\nLedvinka\r\nledvinka\r\nLedvinková\r\nledvinkový\r\nLedvinkův\r\nledvinný\r\nLedvinová\r\nledvinovitý\r\nledvinový\r\nLedvinův\r\nledví\r\nLeeds\r\nlegační\r\nlegalita\r\nlegalizace\r\nlegalizování\r\nlegalizovaný\r\nlegalizovat\r\nlegalizující\r\nlegálnější\r\nlegální\r\nlegato\r\nLegátová\r\nlegatový\r\nlegát\r\nLegát\r\nlegátský\r\nLegátův\r\nlegátův\r\nlegendárnější\r\nlegendární\r\nlegenda\r\nlegendista\r\nlegendistčin\r\nlegendistika\r\nlegendistka\r\nlegendistův\r\nleghornka\r\nlegie\r\nleginy\r\nlegionářský\r\nlegionář\r\nlegionářův\r\nlegionelní\r\nlegislativa\r\nlegislativcův\r\nlegislativec\r\nlegislativní\r\nlegista\r\nlegistčin\r\nlegistka\r\nlegistratura\r\nlegistův\r\nlegitimace\r\nlegitimismus\r\nlegitimista\r\nlegitimistčin\r\nlegitimističtější\r\nlegitimistka\r\nlegitimistův\r\nlegitimita\r\nlegitimizace\r\nlegitimizovaný\r\nlegitimizovat\r\nlegitimizující\r\nlegitimnější\r\nlegitimní\r\nlegitimování\r\nlegitimovaný\r\nlegitimovat\r\nlegitimující\r\nLegnerová\r\nLegner\r\nLegnerův\r\nLegnice\r\nlego\r\nlegovací\r\nlegování\r\nlegovaný\r\nlegovat\r\nlegový\r\nlegrace\r\nlegrácka\r\nlegračnější\r\nlegrační\r\nleguánek\r\nleguánkův\r\nleguán\r\nleguánův\r\nlegující\r\nlehací\r\nlehání\r\nléhání\r\nlehárna\r\nlehat\r\nléhat\r\nlehátko\r\nlehátkový\r\nlehávání\r\nléhávání\r\nlehávat\r\nléhávat\r\nlehčeji\r\nlehčenější\r\nlehčení\r\nlehčený\r\nlehčit\r\nlehčí\r\nleh\r\nlehko\r\nlehkoatletický\r\nlehkoatletičtější\r\nlehkomyslnější\r\nlehkomyslník\r\nlehkomyslníkův\r\nlehkomyslný\r\nlehkonohý\r\nlehkovážnější\r\nlehkovážný\r\nlehkověrnější\r\nlehkověrný\r\nLehký\r\nlehký\r\nlehlý\r\nLehnerová\r\nLehner\r\nLehnerův\r\nLehnice\r\nlehnický\r\nlehnout\r\nlehnutí\r\nlehoučký\r\nlehounký\r\nlechický\r\nLechotice\r\nlechotický\r\nLechovice\r\nlechovický\r\nlechtání\r\nlechtaný\r\nlechtat\r\nlechtávání\r\nlechtávaný\r\nlechtávat\r\nlechtavější\r\nlechtavý\r\nlechtivější\r\nlechtivý\r\nLechtýnský\r\nLeibniz\r\nLeibnizův\r\nLein\r\nleitmotiv\r\nLeitnerová\r\nLeitner\r\nLeitnerův\r\nLejdarová\r\nLejdar\r\nLejdarův\r\nlejno\r\nlejsek\r\nLejsek\r\nLejsková\r\nLejskův\r\nlejskův\r\nlejstro\r\nLejšovka\r\nlekací\r\nlekání\r\nlekaný\r\nlékárenský\r\nlékárenství\r\nlékárenštější\r\nlékárna\r\nlékárnice\r\nlékarnický\r\nlékárnický\r\nlékárnictví\r\nlékárničin\r\nlékárnička\r\nlékárničtější\r\nlékárník\r\nlékárníkův\r\nlékařčin\r\nlékařka\r\nlékařský\r\nlékařství\r\nlékařštější\r\nlékař\r\nlékařův\r\nlekat\r\nlekavější\r\nlekavý\r\nlekce\r\nlekcionář\r\nlekcionářův\r\nlék\r\nleklý\r\nleknín\r\nleknínotvarý\r\nleknínový\r\nleknout\r\nleknutí\r\nlékopis\r\nlékopisný\r\nlékořice\r\nlékořicový\r\nlékovka\r\nlékový\r\nLeksa\r\nLeksová\r\nLeksův\r\nlektorčin\r\nlektorka\r\nlektor\r\nlektorský\r\nlektorův\r\nlektvar\r\nLelekovice\r\nlelekovický\r\nlelek\r\nlelkování\r\nlelkovaný\r\nlelkovat\r\nlelkující\r\nlelkův\r\nLemberk\r\nlemberský\r\nLemfeldová\r\nLemfeld\r\nLemfeldův\r\nlem\r\nlemma\r\nlemmatizace\r\nlemniskáta\r\nlemovací\r\nlemovačka\r\nlemovač\r\nlemovadlo\r\nlemování\r\nlemovaný\r\nlemovat\r\nlemovávání\r\nlemovávaný\r\nlemovávat\r\nlemovka\r\nlemový\r\nlemující\r\nlemur\r\nlemurův\r\nLemúz\r\nLenártová\r\nLenárt\r\nLenártův\r\nLencová\r\nLenc\r\nLencův\r\nLenčin\r\nLendělová\r\nLenděl\r\nLendělův\r\nLendrová\r\nLendr\r\nLendrův\r\nLenešice\r\nlenešický\r\nLenfeldová\r\nLenfeld\r\nLenfeldův\r\nLengálová\r\nLengál\r\nLengálův\r\nlengyelský\r\nLeniččin\r\nLenička\r\nleník\r\nleníkův\r\nLeningrad\r\nleningradský\r\nleninismus\r\nleninista\r\nleninistčin\r\nleninistka\r\nleninistův\r\nleninovcův\r\nleninovec\r\nLenin\r\nleninský\r\nleninštější\r\nLeninův\r\nlenivější\r\nlenivění\r\nlenivět\r\nlenivý\r\nLenka\r\nLenko\r\nLenková\r\nLenkův\r\nlenní\r\nLennon\r\nLennonův\r\nlenochodí\r\nlenochod\r\nlenochodův\r\nlenoch\r\nlenochův\r\nléno\r\nLenora\r\nlenost\r\nlenošení\r\nlenošící\r\nlenošit\r\nlenošivější\r\nlenošivý\r\nlenoška\r\nlenoškový\r\nlenošnější\r\nlenošný\r\nlenový\r\nlen\r\nlentilka\r\nlento\r\nlentový\r\nleobenský\r\nLeonardo\r\nLeonardův\r\nLeona\r\nLeončin\r\nLeone\r\nLeonid\r\nLeonidův\r\nLeonin\r\nLeonka\r\nleónský\r\nLeontýna\r\nLeontýnčin\r\nLeontýnin\r\nLeontýnka\r\nleopard\r\nleopardův\r\nLeopold\r\nLeopoldův\r\nLeošek\r\nLeoškův\r\nLeoš\r\nLeošův\r\nlépe\r\nlepější\r\nlepek\r\nlepení\r\nlepenista\r\nlepenistčin\r\nlepenistka\r\nlepenistův\r\nlepenkárna\r\nlepenka\r\nlepenkový\r\nlepený\r\nlep\r\nlepicí\r\nlepící\r\nlepička\r\nLepičová\r\nlepič\r\nLepič\r\nLepičův\r\nlepičův\r\nlepidlo\r\nlepidopterologický\r\nlepidopterologie\r\nlepidopterolog\r\nlepidopterologův\r\nlepidopteroložčin\r\nlepidopteroložka\r\nLepilová\r\nLepil\r\nLepilův\r\nlepit\r\nlepivější\r\nlepivý\r\nlepkavější\r\nlepkavý\r\nlepkový\r\nleporello\r\nleporelo\r\nlepový\r\nlepra\r\nlepšící\r\nlepšil\r\nlepšit\r\nlepší\r\nleptací\r\nleptadlo\r\nleptající\r\nleptání\r\nleptaný\r\nleptat\r\nleptávání\r\nleptávaný\r\nleptávat\r\nleptavější\r\nleptavý\r\nlept\r\nlepton\r\nleptonický\r\nleptoničtější\r\nleptonový\r\nleptový\r\nlepý\r\nlesáčtější\r\nLesageová\r\nLesage\r\nLesageův\r\nlesák\r\nlesákův\r\nlesba\r\nlesbický\r\nlesbičančin\r\nlesbičanka\r\nlesbiččin\r\nlesbička\r\nlesbičtější\r\nlesbismus\r\nLesbos\r\nLesczynský\r\nlesenský\r\nLeschtina\r\nLeschtinová\r\nLeschtinův\r\nlesíček\r\nlesík\r\nlesk\r\nlesklejší\r\nlesklý\r\nlesknoucí\r\nlesknout\r\nlesknutí\r\nLeskovcův\r\nLeskovec\r\nleskový\r\nles\r\nlesmistr\r\nlesmistrův\r\nlesnatější\r\nlesnatý\r\nLesná\r\nLesnice\r\nlesnickotechnický\r\nlesnický\r\nlesnický\r\nlesnictví\r\nlesničtější\r\nlesník\r\nlesníkův\r\nlesní\r\nLesný\r\nLesonice\r\nlesopark\r\nlesostep\r\nlesostepní\r\nlesotechnický\r\nLesothančin\r\nLesothanka\r\nLesothan\r\nLesothanův\r\nLesotho\r\nlesothský\r\nlesovna\r\nlest\r\nLestkov\r\nlestkovský\r\nlestný\r\nLešek\r\nlešenářský\r\nlešenář\r\nlešenářův\r\nlešení\r\nlešenský\r\nlešenský\r\nLešetice\r\nlešetický\r\nLeško\r\nLešková\r\nLeškovice\r\nleškovický\r\nLeškův\r\nLešná\r\nLešno\r\nleštěnec\r\nleštění\r\nleštěnka\r\nleštěný\r\nlešticí\r\nleštící\r\nleštička\r\nleštič\r\nleštidlo\r\nLeština\r\nLeštinka\r\nleštit\r\nleštitelný\r\nleštítko\r\nleštivý\r\nlet\r\nlétací\r\nLetáček\r\nletáček\r\nLetáčková\r\nLetáčkův\r\nletadélko\r\nletadlo\r\nlétadlo\r\nletadlový\r\nletadýlko\r\nletající\r\nlétající\r\nleták\r\nletákový\r\nlétání\r\nlétaný\r\nletargický\r\nletargičtější\r\nletargie\r\nlétatelný\r\nlétat\r\nlétávání\r\nlétávat\r\nlétavice\r\nlétavka\r\nlétavý\r\nletcův\r\nleteckotechnický\r\nletecký\r\nletectví\r\nletectvo\r\nletec\r\nletečtější\r\nletech\r\nletění\r\nletenka\r\nletenský\r\nletěný\r\nletět\r\nlet\r\nletící\r\nletiště\r\nletištní\r\nletitější\r\nletitý\r\nletka\r\nLetkov\r\nletkovský\r\nletkyně\r\nletkynin\r\nletmější\r\nletmo\r\nletmý\r\nletňák\r\nletňákův\r\nletňanský\r\nLetňany\r\nLetná\r\nletnice\r\nletnicový\r\nletnička\r\nletniční\r\nletní\r\nletohrádek\r\nletokruh\r\nléto\r\nLetonice\r\nletonický\r\nletopiscův\r\nletopisecký\r\nletopisec\r\nletopis\r\nletopočet\r\nletora\r\nletorost\r\nletos\r\nletošák\r\nletošákův\r\nletošek\r\nletoší\r\nletošní\r\nLetošová\r\nLetoš\r\nLetošův\r\nletoucí\r\nletounek\r\nletoun\r\nletounův\r\nletovací\r\nletovačka\r\nletování\r\nletovaný\r\nletovat\r\nLetovice\r\nletovický\r\nletovisko\r\nletový\r\nlettrismus\r\nletuchtivý\r\nletům\r\nletuška\r\nlety\r\nleucin\r\nleucit\r\nleucitový\r\nleukémický\r\nleukémičtější\r\nleukemie\r\nleukémie\r\nleukocyt\r\nleukoplast\r\nleukóza\r\nleukózový\r\nlev\r\nleváctví\r\nlevačka\r\nlevák\r\nlevákův\r\nlevandule\r\nlevandulový\r\nlevější\r\nLeversův\r\nlevhartice\r\nlevhartí\r\nlevhart\r\nlevhartův\r\nleviatan\r\nlevice\r\nlevicovější\r\nlevicový\r\nlevicový\r\nlevičácký\r\nlevičáctví\r\nlevičáčtější\r\nlevičák\r\nlevičákův\r\nlevička\r\nLévinas\r\nLévinasův\r\nLevín\r\nlevínský\r\nlevírovací\r\nlevírování\r\nlevírovaný\r\nlevírovat\r\nlevitace\r\nlevita\r\nlevitování\r\nlevitovaný\r\nlevitovat\r\nlevitující\r\nlevitův\r\nlevnější\r\nlevný\r\nlevoboček\r\nlevobočkův\r\nlevobok\r\nlevobřežní\r\nLevoča\r\nlevočský\r\nlevoramenný\r\nlevoruký\r\nlevostranný\r\nlevotočivý\r\nLevová\r\nLev\r\nlevulóza\r\nLevův\r\nLevý\r\nlevý\r\nlewisit\r\nLexa\r\nlexém\r\nlexikalisování\r\nlexikalisovaný\r\nlexikalisovat\r\nlexikalizace\r\nlexikalizování\r\nlexikalizovaný\r\nlexikalizovat\r\nlexikální\r\nlexikografčin\r\nlexikografický\r\nlexikografie\r\nlexikografka\r\nlexikograf\r\nlexikografův\r\nlexikologický\r\nlexikologie\r\nlexikolog\r\nlexikologův\r\nlexikoložčin\r\nlexikoložka\r\nlexikon\r\nlexikum\r\nLexová\r\nLexův\r\nlezavý\r\nlezba\r\nlezcův\r\nlezec\r\nlezení\r\nlezkyně\r\nlezkynin\r\nlezoucí\r\nlézt\r\nlež\r\nležácký\r\nležák\r\nležatější\r\nležatý\r\nleže\r\nležení\r\nležérnější\r\nležérní\r\nležet\r\nležící\r\nležmo\r\nlg\r\nlhal\r\nlhaní\r\nlhářčin\r\nlhářka\r\nlhář\r\nlhářův\r\nLhasa\r\nlhaský\r\nlhát\r\nlhávaní\r\nlhávání\r\nlhávat\r\nlhavý\r\nlha\r\nLhenice\r\nlhenický\r\nlhostejen\r\nlhostejnější\r\nlhostejnění\r\nlhostejněný\r\nlhostejnět\r\nlhostejný\r\nLhotáková\r\nLhoták\r\nLhotákův\r\nLhota\r\nLhota\r\nlhotecký\r\nLhotice\r\nlhotický\r\nLhotka\r\nLhotová\r\nLhotsko\r\nLhotský\r\nlhotský\r\nLhotův\r\nlhůta\r\nlhůtní\r\nlhůtový\r\nli\r\nliána\r\nliánovitý\r\nliánový\r\nLIAZ\r\nliazka\r\nlíbající\r\nLíbalová\r\nLíbal\r\nLíbalův\r\nlíbání\r\nlíbánkový\r\nlíbanky\r\nlíbánky\r\nLibanoncův\r\nLibanončin\r\nLibanonec\r\nLibanon\r\nLibanonka\r\nlibanonský\r\nlibáňský\r\nlíbaný\r\nLibáň\r\nLiba\r\nlíbat\r\nLibavá\r\nlibavský\r\nLibá\r\nlibčanský\r\nLibčany\r\nLibčeves\r\nlibčeveský\r\nLibčice\r\nlibčický\r\nLibčin\r\nLibecina\r\nlibeček\r\nLiběchov\r\nliběchovský\r\nLibějovice\r\nlibějovický\r\nlibější\r\nlibela\r\nLiběna\r\nLiběnčin\r\nLibenice\r\nlibenický\r\nLiběnin\r\nlíbení\r\nLiběnka\r\nlibeňský\r\nLibeň\r\nliberálčin\r\nliberalismus\r\nliberalisování\r\nliberalisovaný\r\nliberalisovat\r\nliberalisovávat\r\nliberalista\r\nliberalistčin\r\nliberalistický\r\nliberalističtější\r\nliberalistka\r\nliberalistův\r\nliberalizace\r\nliberalizační\r\nliberalizovanější\r\nliberalizování\r\nliberalizovaný\r\nliberalizovat\r\nliberalizující\r\nliberálka\r\nliberálnější\r\nliberální\r\nliberál\r\nliberálův\r\nliberčin\r\nLiberecko\r\nliberecký\r\nliberecký\r\nliberecký\r\nLiberec\r\nLiberie\r\nLibérie\r\nLiberijcův\r\nLiberijčin\r\nLiberijec\r\nLiberijka\r\nliberijský\r\nlibérijský\r\nliberka\r\nLiberk\r\nlibertinismus\r\nlibertinistický\r\nLiběšice\r\nliběšický\r\nlíbeznější\r\nLíbeznice\r\nLíbeznice\r\nlíbeznický\r\nlíbezný\r\nLibchava\r\nLibice\r\nlíbící\r\nlibický\r\nlibický\r\nlibido\r\nLibina\r\nLibín\r\nlibínský\r\nlíbit\r\nlíbivější\r\nlíbivý\r\nLibka\r\nLibkova\r\nLibkovice\r\nlibkovický\r\nLibkov\r\nlibkovský\r\nLiblice\r\nliblický\r\nLiblín\r\nliblínský\r\nLibňatov\r\nlibňatovský\r\nLibochová\r\nLibochovice\r\nlibochovický\r\nlibochovský\r\nLibor\r\nLiborův\r\nLibotenice\r\nlibotenický\r\nLibotov\r\nlibotovský\r\nlibouchecký\r\nLibouchec\r\nlibování\r\nlibovat\r\nlibovávání\r\nlibovávat\r\nLibová\r\nlibovolnější\r\nlibovolný\r\nlibovonný\r\nlibovůle\r\nlibový\r\nlibozvučnější\r\nlibozvučný\r\nlibozvuk\r\nlibrace\r\nlibra\r\nlibretista\r\nlibretistčin\r\nlibretistka\r\nlibretistův\r\nlibreto\r\nlibrový\r\nLibřice\r\nLibřický\r\nlibřický\r\nlibský\r\nLibštát\r\nlibštátský\r\nLibštejn\r\nlibštejnský\r\nLibštejnský\r\nlibující\r\nLibunecký\r\nLibuňka\r\nlibuňský\r\nLibuň\r\nlibůstka\r\nLibuščin\r\nLibuše\r\nLibušín\r\nlibušínský\r\nLibušin\r\nLibuška\r\nLibův\r\nLibverda\r\nlibverdský\r\nLibye\r\nLibyjcův\r\nLibyjčin\r\nLibyjec\r\nLibyjka\r\nlibyjský\r\nlibý\r\nlíce\r\nlicence\r\nlicencovanější\r\nlicencování\r\nlicencovaný\r\nlicencovat\r\nlicenční\r\nlícenější\r\nlícení\r\nlícený\r\nlicitace\r\nlícit\r\nlicitátor\r\nlicitátorův\r\nlicitování\r\nlicitovaný\r\nlicitovat\r\nlicitující\r\nlicí\r\nlícní\r\nlicoměrnější\r\nlicoměrnice\r\nlicoměrničin\r\nlicoměrník\r\nlicoměrníkův\r\nlicoměrný\r\nlicous\r\nlícovací\r\nlícování\r\nlícovaný\r\nlícovat\r\nlícovka\r\nlícový\r\nlíc\r\nlíčení\r\nlíčený\r\nliči\r\nlíčí\r\nlíčící\r\nlíčidlo\r\nlíčím\r\nlíčit\r\nlíčívající\r\nlíčívaný\r\nlíčívat\r\nlíčko\r\nLičko\r\nLičková\r\nLičkův\r\nLično\r\nLíčov\r\nlid\r\nLída\r\nLidčin\r\nlide\r\nlidé\r\nLidečko\r\nlidech\r\nlidem\r\nlidi\r\nlidí\r\nLidice\r\nlidický\r\nlidičky\r\nLídin\r\nLidka\r\nlidmi\r\nLidmila\r\nLidmilin\r\nlidnatější\r\nlidnatý\r\nlidojed\r\nlidojedský\r\nlidojedství\r\nlidojedův\r\nlidoopí\r\nlidoop\r\nlidoopův\r\nlidospráva\r\nlidovcův\r\nlidovecký\r\nlidovec\r\nlidovější\r\nlidovění\r\nlidovět\r\nlidovka\r\nlidovláda\r\nlidový\r\nlidožravější\r\nlidožravý\r\nlidožrout\r\nlidožroutský\r\nlidožroutův\r\nlídr\r\nlídrův\r\nlidský\r\nlidství\r\nlidstvo\r\nlidštější\r\nlidštění\r\nlidštěný\r\nlidštět\r\nlidu\r\nlidumilný\r\nlidumil\r\nlidumilův\r\nLidunčin\r\nLidunka\r\nliduprázdný\r\nLiduščin\r\nLiduška\r\nLieblová\r\nLiebl\r\nLieblův\r\nlifrování\r\nlifrovaný\r\nlifrovat\r\nlifting\r\nligatura\r\nliga\r\nligista\r\nligistčin\r\nligistický\r\nligistka\r\nligistův\r\nLigna\r\nlignin\r\nligninový\r\nlignit\r\nlignitový\r\nlignosulfonát\r\nligovější\r\nligový\r\nlíh\r\nlihách\r\nlíha\r\nlihem\r\nlíheň\r\nLIHG\r\nlíhňař\r\nlíhňařův\r\nlíhniště\r\nlíhnout\r\nlíhnutí\r\nlíhnutý\r\nlihobenzín\r\nlihobenzinový\r\nlihobenzínový\r\nlihoměr\r\nlihovar\r\nlihovarnický\r\nlihovarnictví\r\nlihovarník\r\nlihovarníkův\r\nlihovarský\r\nlihovarství\r\nlihovější\r\nlihovina\r\nlihovinový\r\nlihový\r\nlihu\r\nlihů\r\nlihům\r\nlihuprostší\r\nlihy\r\nlihýřový\r\nlihýř\r\nLichkov\r\nlichkovský\r\nLichnov\r\nlichnovský\r\nlichoběžník\r\nlichoběžníkovitý\r\nlichoběžníkový\r\nlichocení\r\nlichocený\r\nLichoceves\r\nlichoceveský\r\nlichokopytník\r\nlichokopytníkův\r\nlichometnější\r\nlichometnictví\r\nlichometník\r\nlichometníkův\r\nlichotící\r\nlichotit\r\nlichotivější\r\nlichotivý\r\nlichotka\r\nlichotnější\r\nlichotnice\r\nlichotnický\r\nlichotničin\r\nlichotník\r\nlichotníkův\r\nlichotný\r\nLichtenburk\r\nLichtenštejňan\r\nLichtenštejňanův\r\nLichtenštejncův\r\nLichtenštejnčin\r\nLichtenštejnec\r\nLichtenštejnka\r\nLichtenštejnový\r\nLichtenštejnsko\r\nlichtenštejnský\r\nLichtenštejnův\r\nlichvářčin\r\nlichvářka\r\nlichvářský\r\nlichvářství\r\nlichvář\r\nlichvářův\r\nlichva\r\nlichý\r\nlijáček\r\nliják\r\nlijavec\r\nlikér\r\nlikérka\r\nlikérový\r\nliknavější\r\nliknavý\r\nlikvidace\r\nlikvidační\r\nlikvidátorčin\r\nlikvidátorka\r\nlikvidátor\r\nlikvidátorův\r\nlikvidita\r\nlikviditní\r\nlikvidnější\r\nlikvidní\r\nlikvidování\r\nlikvidovaný\r\nlikvidovat\r\nlikvidovatelný\r\nlikvidující\r\nlilek\r\nLiliana\r\nLilianin\r\nlilie\r\nliliovník\r\nliliový\r\nliliputánčin\r\nliliputánka\r\nlilipután\r\nliliputánský\r\nliliputánštější\r\nliliputánův\r\nliliputka\r\nlilkovitý\r\nlilkový\r\nlim\r\nlimanový\r\nLíma\r\nLima\r\nlimba\r\nLimburský\r\nlimbus\r\nlímcový\r\nlímcový\r\nlímec\r\nlímeček\r\nlímečkový\r\nlimetkový\r\nlimitace\r\nlimita\r\nlimit\r\nlimitní\r\nlimitovanější\r\nlimitování\r\nlimitovaný\r\nlimitovat\r\nlimitovávání\r\nlimitovávaný\r\nlimitovávat\r\nlimitující\r\nlimnologický\r\nlimnologie\r\nlimnolog\r\nlimnologův\r\nlimnoložčin\r\nlimnoložka\r\nlimonáda\r\nlimonádka\r\nlimonádový\r\nlimonit\r\nlimonitový\r\nlimonový\r\nLímová\r\nlimský\r\nLímův\r\nlimuzína\r\nlínání\r\nlínat\r\nlincoln\r\nLincoln\r\nLincolnův\r\nLindava\r\nlindavský\r\nLinda\r\nLindeberg\r\nLindebergův\r\nLindin\r\nLindov\r\nLindovský\r\nlinduška\r\nlineál\r\nlinearita\r\nlinearizace\r\nlinearizování\r\nlinearizovaný\r\nlinearizovat\r\nlineárnější\r\nlineární\r\nlinecký\r\nLinec\r\nlínější\r\nLinek\r\nLínek\r\nlinguální\r\nlingvista\r\nlingvistčin\r\nlingvistický\r\nlingvističtější\r\nlingvistika\r\nlingvistka\r\nlingvistův\r\nLinhartice\r\nlinhartický\r\nLinhartová\r\nLinhart\r\nLinhartův\r\nliniatura\r\nlinie\r\nliniový\r\nLinka\r\nlinka\r\nlinkovací\r\nlinkovanější\r\nlinkování\r\nlinkovaný\r\nlinkovat\r\nlinkovávání\r\nlinkovávaný\r\nlinkovávat\r\nLinková\r\nLínková\r\nlinkový\r\nLinkův\r\nLínkův\r\nlinolenový\r\nlinoleoryt\r\nlinoleový\r\nlinoleum\r\nlinolový\r\nlinoryt\r\nlinorytový\r\nlinotyp\r\nlinotypový\r\nlinout\r\nlín\r\nLintnerová\r\nLintner\r\nLintnerův\r\nLinus\r\nLinusův\r\nlinutí\r\nlinutý\r\nlínův\r\nLinux\r\nlinuxovější\r\nlinuxový\r\nlíný\r\nlip\r\nlipách\r\nlipám\r\nlipami\r\nlipan\r\nlipanský\r\nlipanův\r\nLipany\r\nLipava\r\nLipavský\r\nlipavský\r\nLipá\r\nlípa\r\nlipáza\r\nlíp\r\nlipecký\r\nLipec\r\nLipek\r\nLipensko\r\nlipenský\r\nlipid\r\nlipidový\r\nLipina\r\nLipinka\r\nlipka\r\nLipková\r\nLipkův\r\nLipnice\r\nlipnice\r\nLipnícka\r\nLipnícková\r\nLipníckův\r\nlipnický\r\nlipnický\r\nlipnicovitý\r\nLipník\r\nLipno\r\nLipoltice\r\nlipoltický\r\nLipo\r\nlipoprotein\r\nliposom\r\nliposukce\r\nlipou\r\nLipová\r\nlipovecký\r\nLipovec\r\nLipov\r\nLipovský\r\nlipovský\r\nlipový\r\nlípový\r\nLipsko\r\nLipský\r\nlipský\r\nLipšanský\r\nLipšová\r\nLipš\r\nLipšův\r\nliptovský\r\nLiptův\r\nLipůvka\r\nlira\r\nlířův\r\nLisabon\r\nlisabonský\r\nlisabonský\r\nlísající\r\nLisalová\r\nLisal\r\nLisalův\r\nlísání\r\nlísaný\r\nLísa\r\nlísat\r\nlísávání\r\nlísávat\r\nlísavý\r\nlis\r\nlíska\r\nlískooříškový\r\nLískovec\r\nlískovka\r\nlískový\r\nlisofoukací\r\nlisovací\r\nlisovadlo\r\nlisování\r\nlisovaný\r\nlisovat\r\nlisovávat\r\nLísová\r\nLisov\r\nlisovna\r\nlisovník\r\nlisovský\r\nLisový\r\nlisový\r\nlistárna\r\nlísteček\r\nlístek\r\nlisten\r\nListerův\r\nlist\r\nlistí\r\nlistina\r\nlisting\r\nlistinný\r\nlístkování\r\nlístkovaný\r\nlístkovat\r\nlístkovitý\r\nlístkovnice\r\nlístkový\r\nlistnáč\r\nlistnatější\r\nlistnatý\r\nlistonoščin\r\nlistonoška\r\nlistonoš\r\nlistonošův\r\nlistopad\r\nlistopadový\r\nlistoplod\r\nlistovací\r\nlistování\r\nlistovaný\r\nlistovat\r\nlistoví\r\nlistovitý\r\nlistovka\r\nlistovní\r\nlistový\r\nlistující\r\nlistův\r\nlisující\r\nLísův\r\nLisý\r\nlišácký\r\nlišáctví\r\nlišáček\r\nlišáčkův\r\nlišáčtější\r\nlišaje\r\nlišajeův\r\nlišaj\r\nlišajův\r\nlišák\r\nlišákův\r\nliščátko\r\nlišče\r\nliščin\r\nliščí\r\nlišejník\r\nlišejníkový\r\nlišej\r\nLišek\r\nlišení\r\nlíšenský\r\nlíšeňský\r\nlišený\r\nLíšeň\r\nlišicí\r\nlišící\r\nLíšina\r\nlišit\r\nLiška\r\nLiškařová\r\nLiškař\r\nLiškařův\r\nliška\r\nLišková\r\nLiškův\r\nLíšná\r\nLíšnice\r\nlíšnický\r\nLíšný\r\nLišov\r\nlišovský\r\nlišší\r\nlíšťanský\r\nLíšťany\r\nlišta\r\nlištička\r\nlištování\r\nlištovka\r\nlištový\r\nlítací\r\nlítačka\r\nlítač\r\nlítající\r\nlitanie\r\nlítání\r\nlítaný\r\nlítat\r\nLitava\r\nlitavský\r\nlít\r\nlítější\r\nliterál\r\nliterárněhistorický\r\nliterárnější\r\nliterárněkritický\r\nliterárněvědní\r\nliterárněvědný\r\nliterární\r\nliterátčin\r\nliterátka\r\nliterát\r\nliterátský\r\nliteratura\r\nliterátův\r\nlitera\r\nliterka\r\nliteřina\r\nLitevcův\r\nLitevčin\r\nLitevec\r\nLitevka\r\nlitevský\r\nlitevský\r\nlitevština\r\nLíté\r\nlithiový\r\nlithium\r\nlithný\r\nlitholrubin\r\nLitice\r\nlitice\r\nlítice\r\nlitický\r\nLiticový\r\nlitina\r\nlitinový\r\nlití\r\nlitný\r\nlíto\r\nlitofaciální\r\nlitografický\r\nlitografičtější\r\nlitografie\r\nLitohlavy\r\nLitochlebová\r\nLitochleb\r\nLitochlebův\r\nLitoldův\r\nLitoměřice\r\nLitoměřicko\r\nlitoměřický\r\nlitoměřický\r\nLitomyšlsko\r\nlitomyšlský\r\nLitomyšl\r\nlit\r\nlitosféra\r\nlítostivější\r\nlítostivý\r\nlítostnější\r\nlítostný\r\nLitostrov\r\nlitostrovský\r\nlitování\r\nlitovaný\r\nlitovat\r\nLitovel\r\nLitovelsko\r\nLitovle\r\nLitovlemi\r\nLitovli\r\nLitovlí\r\nLitovlích\r\nLitovlím\r\nlitr\r\nlitrovka\r\nlitrový\r\nlítský\r\nLitsterová\r\nLitster\r\nLitsterův\r\nlitující\r\nLitultovice\r\nlitultovický\r\nliturgický\r\nliturgičtější\r\nliturgie\r\nliturgika\r\nliturgový\r\nLitváková\r\nLitvák\r\nLitvákův\r\nLitva\r\nLitvínov\r\nlitvínovský\r\nlitvínovský\r\nlitý\r\nlítý\r\nlívancový\r\nlívanec\r\nlívaneček\r\nlívanečník\r\nLiverpool\r\nliverpoolský\r\nLivie\r\nLiviin\r\nLivonsko\r\nlivonský\r\nLivorová\r\nLivor\r\nLivorův\r\nlivrejovaný\r\nlivrej\r\nlízák\r\nlízání\r\nlízaný\r\nlízat\r\nlízátko\r\nlízávat\r\nlízavka\r\nLíza\r\nLizberk\r\nLizčin\r\nliz\r\nLízinčin\r\nLízinka\r\nLízin\r\nLizka\r\nlíznout\r\nlíznutí\r\nlíznutý\r\nliž\r\nLjapinová\r\nLjapin\r\nLjapinův\r\nLjapunovov\r\nLjapunovovův\r\nLjuba\r\nLjubin\r\nLjubov\r\nlkal\r\nlkám\r\nlkání\r\nlkát\r\nlkavý\r\nlm\r\nln\r\nLnáře\r\nLnářemi\r\nLnářích\r\nlnářský\r\nlnářství\r\nlnářštější\r\nLnářů\r\nLnářům\r\nlněme\r\nLněničkový\r\nlněný\r\nlněte\r\nlnice\r\nlni\r\nlnoucí\r\nlnout\r\nlnový\r\nlnutí\r\nloajalista\r\nloajalistčin\r\nloajalistka\r\nloajalistův\r\nloajalita\r\nloajálnější\r\nloajální\r\nlobbing\r\nlobbismus\r\nlobbista\r\nlobbistčin\r\nlobbistický\r\nlobbistka\r\nlobbistův\r\nlobbování\r\nlobbovaný\r\nlobbovat\r\nlobbující\r\nlobby\r\nlobbyismus\r\nlobelka\r\nLobendava\r\nlob\r\nlobismus\r\nlobista\r\nlobistčin\r\nlobistka\r\nlobistův\r\nLobkovice\r\nlobkovický\r\nlobkovický\r\nLobkovicová\r\nLobkovic\r\nLobkovicův\r\nLobkowiczová\r\nLobkowicz\r\nLobkowiczův\r\nLóblová\r\nLóbl\r\nLóblův\r\nLobodice\r\nlobodický\r\nlobotomie\r\nlobování\r\nlobovaný\r\nlobovat\r\nlocarnský\r\nlocika\r\nLočenice\r\nločenický\r\nloďařský\r\nloďařství\r\nloďař\r\nloďařův\r\nloděnice\r\nloděnička\r\nLodhéřov\r\nlodhéřovský\r\nlodice\r\nlodička\r\nlodičkový\r\nLodín\r\nlodínský\r\nlodivod\r\nlodivodský\r\nlodivodství\r\nlodivodův\r\nloďka\r\nloďkovitý\r\nloďmi\r\nloďmistrovský\r\nloďmistr\r\nloďmistrův\r\nlodnický\r\nlodník\r\nlodníkův\r\nlodní\r\nloďový\r\nloďstvo\r\nlodyha\r\nloď\r\nlodžie\r\nlodžiový\r\nLodž\r\nlog\r\nlogaritmický\r\nlogaritmování\r\nlogaritmovaný\r\nlogaritmovat\r\nlogaritmus\r\nlogicismus\r\nlogický\r\nlogičtější\r\nlogika\r\nlogikův\r\nlogistický\r\nlogističtější\r\nlogistika\r\nlognormální\r\nlogogram\r\nlogo\r\nlogopedčin\r\nlogopedický\r\nlogopedie\r\nlogopedka\r\nlogoped\r\nlogopedův\r\nlogos\r\nlogoterapeutický\r\nlogoterapie\r\nlógr\r\nLohonka\r\nLohonková\r\nLohonkův\r\nLohonský\r\nLochmannová\r\nLochmann\r\nLochmannův\r\nLochmanová\r\nLochman\r\nLochmanův\r\nlochneska\r\nLochotín\r\nlochotínský\r\nLochovice\r\nlochovický\r\nLochov\r\nlochovský\r\nloje\r\nlojem\r\nloji\r\nlojích\r\nLojka\r\nLojková\r\nLojkův\r\nlojovatý\r\nlojovitý\r\nlojový\r\nlojů\r\nlojům\r\nLojzčin\r\nLojziččin\r\nLojzička\r\nLojzka\r\nlokace\r\nlokajíček\r\nlokajíčkův\r\nlokajský\r\nlokajštější\r\nlokaj\r\nlokajův\r\nlokál\r\nlokalista\r\nlokalistčin\r\nlokalistka\r\nlokalistův\r\nlokalita\r\nlokalizace\r\nlokalizační\r\nlokalizovanější\r\nlokalizování\r\nlokalizovaný\r\nlokalizovat\r\nlokalizovatelnější\r\nlokalizovatelný\r\nlokalizující\r\nlokálka\r\nlokálnější\r\nlokální\r\nlokálový\r\nlokálpatriotismus\r\nlokálpatriot\r\nlokálpatriotův\r\nlokání\r\nlokaný\r\nlokativ\r\nlokativní\r\nlokat\r\nlokátor\r\nLoket\r\nloket\r\nloketní\r\nloketský\r\nlok\r\nlokna\r\nloknout\r\nloknutí\r\nloknutý\r\nlokomobila\r\nlokomobilní\r\nlokomoce\r\nlokomotiva\r\nlokomotivka\r\nlokomotivní\r\nlokomotivový\r\nlokovaný\r\nLokte\r\nlokte\r\nloktě\r\nloktech\r\nLoktem\r\nloktem\r\nLokti\r\nlokti\r\nloktu\r\nloktů\r\nloktům\r\nlokty\r\nlokuční\r\nlokýnka\r\nLokýtkův\r\nlomař\r\nlomařův\r\nLombardie\r\nlombardní\r\nLombardsko\r\nlombardský\r\nlomcovák\r\nlomcování\r\nlomcovat\r\nlomcující\r\nLomé\r\nlomecký\r\nLomec\r\nlomenice\r\nlomení\r\nlomenský\r\nlomený\r\nloméský\r\nlom\r\nlomící\r\nlomikámen\r\nlomikamene\r\nlomikamenech\r\nlomikamenem\r\nlomikameni\r\nlomikamenu\r\nlomikamenů\r\nlomikamenům\r\nlomikameny\r\nLomikar\r\nLomikarův\r\nlomit\r\nlomítko\r\nlomivý\r\nLomná\r\nLomnice\r\nlomnický\r\nLomnička\r\nlomničtější\r\nlomný\r\nLomonosov\r\nLomonosův\r\nlomový\r\nlomoz\r\nlomozit\r\nlomozivější\r\nlomozivý\r\nLomský\r\nLoncová\r\nLonc\r\nLoncův\r\nLonč\r\nLondýňančin\r\nLondýňanka\r\nLondýňan\r\nLondýňanův\r\nLondýn\r\nlondýnský\r\nlondýnský\r\nLoněk\r\nlongobardština\r\nloni\r\nLoníček\r\nLoníčková\r\nLoníčkův\r\nLoňková\r\nLoňkův\r\nloňsko\r\nLonský\r\nloňský\r\nlooping\r\nLoosová\r\nLoos\r\nLoosův\r\nlopata\r\nlopatička\r\nlopatka\r\nlopatkovitý\r\nlopatkový\r\nlopatový\r\nlopink\r\nlopocení\r\nlopota\r\nlopotění\r\nlopotící\r\nlopotit\r\nlopotnější\r\nlopotný\r\nLopotová\r\nLopot\r\nLopotův\r\nlopuch\r\nlopuchový\r\nLorčin\r\nlordóza\r\nlord\r\nlordstvo\r\nlordštější\r\nlordův\r\nLorencová\r\nLorenc\r\nLorencův\r\nLorenčíková\r\nLorenčík\r\nLorenčíkův\r\nLorentzová\r\nLorentz\r\nLorentzův\r\nLorenzová\r\nLorenz\r\nLorenzův\r\nloretánský\r\nloreta\r\nloretka\r\nLori\r\nLorka\r\nLosenice\r\nlosenický\r\nLosiná\r\nlosinský\r\nLosiny\r\nlosí\r\nLoskotová\r\nLoskot\r\nLoskotův\r\nlososí\r\nlososovitý\r\nlososový\r\nlosos\r\nlososův\r\nlosování\r\nlosovaný\r\nlosovat\r\nlosovitý\r\nlosový\r\nlos\r\nlosující\r\nlosův\r\nLošaková\r\nLošak\r\nLošakův\r\nLošťáková\r\nLošťák\r\nLošťákův\r\nLoštice\r\nloštický\r\nLotčin\r\nloterie\r\nloterijní\r\nLotharingie\r\nLothar\r\nLotharův\r\nLotka\r\nloto\r\nlotos\r\nlotosový\r\nlotový\r\nlotrando\r\nlotrandův\r\nLotrinsko\r\nlotrinský\r\nlotrovina\r\nlotrovský\r\nlotrovství\r\nlotr\r\nlotrův\r\nLotynčin\r\nLotynka\r\nLotyščin\r\nLotyška\r\nLotyšsko\r\nlotyšský\r\nlotyšský\r\nlotyština\r\nLotyš\r\nLotyšův\r\nloubí\r\nloubkový\r\nLoucká\r\nloučení\r\nloučenský\r\nloučící\r\nloučit\r\nLoučka\r\nloučka\r\nLoučková\r\nLoučkův\r\nLoučná\r\nLoučovice\r\nloučovický\r\nlouč\r\nloudající\r\nloudalčin\r\nloudalka\r\nloudání\r\nLouda\r\nlouda\r\nloudat\r\nloudavější\r\nloudavý\r\nloudění\r\nlouděný\r\nloudící\r\nloudit\r\nloudivý\r\nLoudová\r\nLoudův\r\nloudův\r\nLoufek\r\nLoufková\r\nLoufkův\r\nlouh\r\nlouhování\r\nlouhovitý\r\nlouhový\r\nLouisiana\r\nlouka\r\nLoukota\r\nLoukotka\r\nloukotka\r\nLoukotková\r\nLoukotkův\r\nLoukotová\r\nloukoťový\r\nLoukotův\r\nloukoť\r\nloukovecký\r\nLoukovec\r\nLoukov\r\nloukovský\r\nLoumová\r\nLoum\r\nLoumův\r\nLounek\r\nLounková\r\nLounkův\r\nLouňová\r\nLouňovice\r\nlouňovský\r\nLounsko\r\nlounský\r\nLouny\r\nloupací\r\nloupáček\r\nloupačka\r\nloupač\r\nloupající\r\nloupák\r\nloupání\r\nloupaný\r\nloupat\r\nloupávání\r\nloupávaný\r\nloupávat\r\nloupavý\r\nloupení\r\nloupený\r\nloupežit\r\nloupeživější\r\nloupeživý\r\nloupežnický\r\nloupežnictví\r\nloupežníček\r\nloupežníčkův\r\nloupežník\r\nloupežníkův\r\nloupežný\r\nloupež\r\nloupící\r\nloupit\r\nloupnout\r\nloupnutí\r\nlouskáček\r\nlouskající\r\nlouskání\r\nlouskaný\r\nlouskat\r\nlouskávání\r\nlouskávaný\r\nlouskávat\r\nlousknout\r\nlousknutí\r\nlousknutý\r\nloutečka\r\nloutkářčin\r\nloutkářka\r\nloutkářský\r\nloutkařství\r\nloutkářství\r\nloutkář\r\nloutkářův\r\nloutka\r\nloutkohercův\r\nloutkoherectví\r\nloutkoherec\r\nloutkohereččin\r\nloutkoherečka\r\nloutkovější\r\nloutkový\r\nloutna\r\nloutnista\r\nloutnistčin\r\nloutnistka\r\nloutnistův\r\nloutnový\r\nLoužecký\r\nloužení\r\nLouženský\r\nloužený\r\nlouže\r\nloužička\r\nloužírna\r\nloužit\r\nloužka\r\nLovaň\r\nlovcův\r\nLovčice\r\nlovčický\r\nlovčí\r\nLovecký\r\nlovecký\r\nlovectví\r\nlovec\r\nLovečkovice\r\nlovečkovický\r\nlovečtější\r\nlovení\r\nlovený\r\nLověšice\r\nlověšický\r\nlov\r\nlovící\r\nloviště\r\nlovit\r\nlovkyně\r\nlovkynin\r\nlovnější\r\nlovný\r\nLovosice\r\nLovosicko\r\nlovosický\r\nloxodroma\r\nloxodromický\r\nLoza\r\nlože\r\nloženější\r\nložený\r\nlóže\r\nložisko\r\nložiskový\r\nložnice\r\nložnicový\r\nložnička\r\nložní\r\nložný\r\nlóžový\r\nLP\r\nlpějící\r\nlpění\r\nlpět\r\nlpící\r\nlpít\r\nLSD\r\nlstech\r\nlstem\r\nLstg\r\nlsti\r\nlstí\r\nlstích\r\nlstím\r\nlstivější\r\nlstivý\r\nlstmi\r\nlstný\r\nLtd\r\nLuanda\r\nluandský\r\nLuba\r\nLübeck\r\nlübecký\r\nLubek\r\nlubenecký\r\nLubenec\r\nlubenský\r\nlub\r\nLubij\r\nLubín\r\nLubina\r\nLubínov\r\nLubinová\r\nLubinův\r\nLublaňka\r\nlublaňský\r\nLublaňský\r\nLublaň\r\nLublice\r\nlublický\r\nLubná\r\nLubné\r\nĽubochňa\r\nLubomír\r\nLubomírský\r\nLubomírův\r\nLubor\r\nLuborův\r\nLubošek\r\nLuboškův\r\nLuboš\r\nLubošův\r\nLubová\r\nlubrikace\r\nlubrikační\r\nlubrikant\r\nlubrikativní\r\nlubrikovaný\r\nLubův\r\nLucčin\r\nLucemburčančin\r\nLucemburčanka\r\nLucemburčan\r\nLucemburčanův\r\nLucemburk\r\nLucemburkový\r\nLucembursko\r\nlucemburský\r\nlucemburština\r\nLucern\r\nlucerna\r\nlucernička\r\nLucie\r\nLucifer\r\nlucifer\r\nLuciferův\r\nLuciin\r\nLucinčin\r\nLucinka\r\nluciper\r\nLucka\r\nlucký\r\nLucký\r\nLučan\r\nlučavka\r\nlučebník\r\nlučebníkův\r\nlučebnina\r\nlučební\r\nlučenecký\r\nlučenecký\r\nLučenec\r\nlučinatější\r\nlučina\r\nlučinka\r\nlučišnice\r\nlučišničin\r\nlučišník\r\nlučišníkův\r\nlučiště\r\nlučištník\r\nlučištníkův\r\nlučnatější\r\nluční\r\nluďák\r\nluďákův\r\nLuděk\r\nLudgeřovice\r\nludgeřovický\r\nLudíková\r\nLudíkov\r\nludíkovský\r\nLudík\r\nLudíkův\r\nLudina\r\nluďka\r\nLuďkův\r\nLudmila\r\nLudmilin\r\nludmilský\r\nLudmírov\r\nludmírovský\r\nludolfův\r\nludový\r\nLudva\r\nLudvičin\r\nLudvika\r\nLudvíková\r\nLudvíkov\r\nludvíkovský\r\nLudvík\r\nLudvíkův\r\nLudvův\r\nluetičtější\r\nLufinka\r\nLufinková\r\nLufinkův\r\nlufový\r\nluft\r\nLuhačovice\r\nluhačovický\r\nluhačovický\r\nluh\r\nLuhový\r\nluhový\r\nLuisiana\r\nluisianský\r\nlůj\r\nluk\r\nLukáčová\r\nLukáč\r\nLukáčův\r\nluka\r\nlukařství\r\nLukášek\r\nLukáškův\r\nLukášová\r\nLukáš\r\nLukášův\r\nLukavcová\r\nLukavcův\r\nLukavec\r\nLukavice\r\nlukavický\r\nLukavský\r\nLuká\r\nLukešová\r\nLukeš\r\nLukešův\r\nluk\r\nlukoprénový\r\nlukostřelba\r\nlukostřelcův\r\nlukostřelecký\r\nlukostřelec\r\nlukostřelečtější\r\nlukostřelkyně\r\nlukostřelkynin\r\nLuková\r\nLukov\r\nlukovský\r\nlukrativnější\r\nlukrativní\r\nlukulský\r\nlulka\r\nlulkový\r\nlumek\r\nLumiére\r\nLumiérův\r\nluminace\r\nluminační\r\nluminance\r\nluminiscence\r\nluminiscenční\r\nluminofor\r\nlumírovcův\r\nlumírovec\r\nLumír\r\nLumírův\r\nlumkův\r\nlumpačina\r\nlumpárna\r\nlumpenproletariát\r\nlump\r\nLumpur\r\nlumpův\r\nLuňáková\r\nluňák\r\nLuňák\r\nLuňákův\r\nluňákův\r\nlunapark\r\nlunaparkový\r\nlunární\r\nluna\r\nluneta\r\nlunochod\r\nlůno\r\nLupačová\r\nLupač\r\nLupačův\r\nlupat\r\nlupa\r\nĽupča\r\nlupek\r\nlupenatý\r\nlupen\r\nlupení\r\nlupenitka\r\nlupenka\r\nlupénkový\r\nlupenkový\r\nlup\r\nlupiččin\r\nlupička\r\nlupičský\r\nlupičství\r\nlupičštější\r\nlupič\r\nlupičův\r\nlupina\r\nLupínek\r\nlupínek\r\nLupínková\r\nlupínkový\r\nLupínkův\r\nlupkový\r\nlupnout\r\nlupnutí\r\nLupoměský\r\nlupovitý\r\nlupový\r\nlupu\r\nlurdský\r\nluskání\r\nluskaný\r\nluskat\r\nluskávání\r\nluskávat\r\nluska\r\nlusk\r\nlusknout\r\nlusknutí\r\nlusknutý\r\nluskovina\r\nLustigová\r\nLustig\r\nLustigův\r\nLustiková\r\nLustik\r\nLustikův\r\nlustrace\r\nlustrační\r\nlustr\r\nlustrování\r\nlustrovaný\r\nlustrovat\r\nlustrový\r\nlustrující\r\nLuštěnice\r\nluštěnický\r\nluštěnina\r\nluštěninový\r\nluštění\r\nluštěný\r\nluštící\r\nluštička\r\nluštit\r\nluštitelčin\r\nluštitelka\r\nluštitelnější\r\nluštitel\r\nluštitelův\r\nluteciový\r\nlutecium\r\nlutein\r\nluteránčin\r\nluteránka\r\nluterán\r\nluteránský\r\nluteránství\r\nluteránštější\r\nluteránův\r\nluterský\r\nluterství\r\nLuther\r\nLutherův\r\nLutice\r\nLutice\r\nlutický\r\nLutín\r\nlutínský\r\nLutoměř\r\nLutonina\r\nLutotín\r\nlutotínský\r\nLutovský\r\nLutych\r\nluvijština\r\nluxace\r\nluxe\r\nluxol\r\nluxování\r\nluxovaný\r\nluxovat\r\nLuxová\r\nLux\r\nluxsekunda\r\nluxus\r\nluxusnější\r\nluxusní\r\nLuxův\r\nluza\r\nlůza\r\nLuzern\r\nluzernský\r\nluznější\r\nluzný\r\nlůzovitý\r\nlužárna\r\nlužecký\r\nLužec\r\nluženský\r\nLužice\r\nLužice\r\nlužickosrbský\r\nlužický\r\nlužický\r\nLužičan\r\nlužičtina\r\nLužiny\r\nlužka\r\nlůžko\r\nlůžkovina\r\nlůžkoviny\r\nlůžkový\r\nLužná\r\nLužnice\r\nlužnický\r\nlužní\r\nlva\r\nlve\r\nlvech\r\nlvem\r\nlvi\r\nlvice\r\nlvíčátko\r\nlvíče\r\nlvíček\r\nlvíčkův\r\nlví\r\nlvoun\r\nlvounův\r\nlvovi\r\nLvovice\r\nlvovický\r\nLvov\r\nlvovský\r\nlvový\r\nlvu\r\nlvů\r\nlvům\r\nlvův\r\nlvy\r\nlx\r\nly\r\nlyceista\r\nlyceistčin\r\nlyceistka\r\nlyceistův\r\nlycejní\r\nlyceum\r\nlýčený\r\nLýdie\r\nLýdiin\r\nlýkohub\r\nlýkohubův\r\nlýko\r\nlykopen\r\nlýkovcový\r\nlýkovec\r\nlýkový\r\nlýkožrout\r\nlýkožroutův\r\nLylila\r\nLylilová\r\nLylilův\r\nlymeský\r\nlymfadenitida\r\nlymfatický\r\nlymfatičtější\r\nlymfa\r\nlymfoblastický\r\nlymfoblastičtější\r\nlymfocystóza\r\nlymfocytický\r\nlymfocytičtější\r\nlymský\r\nLymský\r\nLyna\r\nlynčovanější\r\nlynčování\r\nlynčovaný\r\nlynčovat\r\nlynč\r\nlynčující\r\nLynou\r\nLyon\r\nlyonský\r\nlyonský\r\nlyra\r\nlyrickoepický\r\nlyrický\r\nlyriččin\r\nlyrička\r\nlyričtější\r\nlyrika\r\nlyrik\r\nlyrikův\r\nlyrismus\r\nlyrizovaný\r\nlyrizující\r\nlyrovitý\r\nlysání\r\nlysat\r\nlysávat\r\nlysavý\r\nLysá\r\nlyscův\r\nlysec\r\nlysejší\r\nlysenka\r\nlysenkismus\r\nlysenkovský\r\nLysice\r\nlysický\r\nlysina\r\nlysinka\r\nlyska\r\nlyský\r\nLysoněk\r\nLysoňková\r\nLysoňkův\r\nLysovice\r\nlysovický\r\nlysozym\r\nlysý\r\nlýtko\r\nlýtkový\r\nlyzin\r\nlyzkynin\r\nlyzol\r\nlyzolový\r\nlyžáka\r\nlyžarský\r\nlyžařčin\r\nlyžařka\r\nlyžařský\r\nlyžařství\r\nlyžařštější\r\nlyžař\r\nlyžařův\r\nlyže\r\nlyžina\r\nlyžování\r\nlyžovaný\r\nlyžovat\r\nlyžující\r\nlze\r\nlžemi\r\nlži\r\nlží\r\nlžic\r\nlžicemi\r\nlžíce\r\nlžicí\r\nlžicích\r\nlžicím\r\nlžícovitý\r\nlžičák\r\nlžičákův\r\nlžička\r\nlžičkový\r\nlžidemokracie\r\nlžích\r\nlžím\r\nlžimorálka\r\nlživější\r\nlživý\r\nlžu\r\nmA\r\nmá\r\nMAAE\r\nMaagův\r\nmaastrichtský\r\nmacajský\r\nMacáková\r\nMacák\r\nMacákův\r\nMacao\r\nMacao\r\nmacarát\r\nmacarátův\r\nMáca\r\nMacDonaldová\r\nMacDonald\r\nMacDonaldův\r\nmacecha\r\nMacejová\r\nMacej\r\nMacejův\r\nMacek\r\nMacelová\r\nMacel\r\nMacelův\r\nmacerace\r\nmacerát\r\nmacerování\r\nmacerovaný\r\nmacerovat\r\nmacešin\r\nmaceška\r\nmaceškový\r\nmacešský\r\nmacíček\r\nmacíčkův\r\nMacke\r\nMacko\r\nMacková\r\nMacků\r\nMackův\r\nMacnerová\r\nMacner\r\nMacnerův\r\nmacoška\r\nMacounová\r\nMacoun\r\nMacounův\r\nMacourek\r\nMacourková\r\nMacourkův\r\nMácová\r\nMacura\r\nMacurová\r\nMacurův\r\nMácův\r\nMačáková\r\nMačák\r\nMačákův\r\nmáčecí\r\nMáček\r\nmáčení\r\nmáčený\r\nMáčeová\r\nMáče\r\nmáčet\r\nmačeta\r\nMáčeův\r\nmačkací\r\nmačkadlo\r\nmačkající\r\nmačkanice\r\nmačkání\r\nmačkaný\r\nmačkat\r\nmačkávání\r\nmačkávaný\r\nmačkávat\r\nmačkavější\r\nmačkavý\r\nmačka\r\nmáčka\r\nmáčknutí\r\nMáčková\r\nMačkov\r\nmačkovský\r\nMáčkův\r\nmačky\r\nmač\r\nMadagaskarcův\r\nMadagaskarec\r\nMadagaskar\r\nmadagaskarský\r\nMadagaskařančin\r\nMadagaskařanka\r\nMadagaskařan\r\nMadagaskařanův\r\nmadam\r\nmadame\r\nMaďarčin\r\nmaďarismus\r\nmaďarizace\r\nMaďarka\r\nMaďar\r\nMaďarsko\r\nmaďarský\r\nmaďarština\r\nMaďarův\r\nMadeira\r\nmadeirizace\r\nmadeirizování\r\nmadeirizovaný\r\nmadeirizovat\r\nmadeirový\r\nMaděra\r\nmaděra\r\nMaderová\r\nMaděrová\r\nMader\r\nMaderův\r\nMaděrův\r\nMadlenčin\r\nMadlenka\r\nMádlíková\r\nMádlík\r\nMádlíkův\r\nmadlo\r\nmadona\r\nmadonka\r\nMadras\r\nMadrid\r\nmadridský\r\nmadridský\r\nmadrigal\r\nmadrigalista\r\nmadrigalistčin\r\nmadrigalistka\r\nmadrigalistův\r\nmadrigalový\r\nMádrová\r\nMádr\r\nMádrův\r\nMaelströlm\r\nmaestoso\r\nmaestro\r\nMaffie\r\nmafiánčin\r\nmafiánka\r\nmafián\r\nmafiánský\r\nmafiánství\r\nmafiánštější\r\nmafiánův\r\nmafie\r\nmagabajtový\r\nmagazín\r\nmagazínový\r\nMagdalena\r\nMagdaléna\r\nMagdalenčin\r\nMagdalenin\r\nMagdalénin\r\nMagdalenka\r\nMagda\r\nmagdeburský\r\nMagdin\r\nMagdonův\r\nmagický\r\nmagičtější\r\nmagie\r\nmagika\r\nmagisterský\r\nmagistrála\r\nmagistrát\r\nmagistrátní\r\nmagistra\r\nmagistr\r\nmagistrův\r\nmagistřin\r\nmagma\r\nmagmatický\r\nmagmový\r\nmagnát\r\nmagnátský\r\nmagnátův\r\nmagna\r\nmagnesium\r\nmagneťáček\r\nmagneťák\r\nmagnet\r\nmagnetický\r\nmagnetičtější\r\nmagnetismus\r\nmagnetit\r\nmagnetitový\r\nmagnetizace\r\nmagnetizačnější\r\nmagnetizační\r\nmagnetizovanější\r\nmagnetizování\r\nmagnetizovaný\r\nmagnetizovat\r\nmagnetizující\r\nmagnetka\r\nmagnetoelastický\r\nmagnetoelastičtější\r\nmagnetoelektrický\r\nmagnetoelektričtější\r\nmagnetofon\r\nmagnetofonový\r\nmagnetokalorický\r\nmagnetokaloričtější\r\nmagnetometr\r\nmagnetooptický\r\nmagnetooptičtější\r\nmagnetooptika\r\nmagnetopáskový\r\nmagnetosféra\r\nmagnetoskop\r\nmagnetostrikční\r\nmagnetovací\r\nmagnetování\r\nmagnetovaný\r\nmagnetovat\r\nmagnetovec\r\nmagnetový\r\nmagnetron\r\nmagnéziový\r\nmagnezit\r\nmagnezitový\r\nmagnezium\r\nmagnézium\r\nMagnificence\r\nmagnituda\r\nmagnocelulární\r\nmagnolie\r\nmagoření\r\nmagořina\r\nmagořit\r\nmágovský\r\nmág\r\nmágův\r\nmahagon\r\nmahagonový\r\nmaharádža\r\nmahárádža\r\nmaharádžův\r\nmahárádžův\r\nmahdista\r\nmahdistčin\r\nmahdistka\r\nmahdistův\r\nMahelová\r\nMahel\r\nMahelův\r\nMahlerová\r\nMahler\r\nMahlerův\r\nMahulena\r\nMahulenčin\r\nMahulenin\r\nMahulenka\r\nmáchací\r\nMacháček\r\nMachačíková\r\nMachačík\r\nMachačíkův\r\nMacháčková\r\nMacháčkův\r\nMachačová\r\nMacháčová\r\nMachač\r\nMacháč\r\nMachačův\r\nMacháčův\r\nmáchající\r\nMachala\r\nMachálek\r\nMachalický\r\nMachalíková\r\nMachalík\r\nMachalíkův\r\nMachálka\r\nMachálková\r\nMachálkův\r\nMachalová\r\nMachalův\r\nmáchání\r\nMachaňová\r\nMacháňová\r\nMachaň\r\nMacháň\r\nMachaňův\r\nMacháňův\r\nmáchaný\r\nMácha\r\nMacharáček\r\nMacharáčková\r\nMacharáčkův\r\nMacharová\r\nMachar\r\nMacharův\r\nmáchat\r\nMachatý\r\nMachek\r\nmachiavelismus\r\nmachiavelista\r\nmachiavelistčin\r\nmachiavelistický\r\nmachiavelističtější\r\nmachiavelistka\r\nmachiavelistův\r\nmachiavellismus\r\nmachiavellistický\r\nmachinace\r\nmachističtější\r\nMachková\r\nMachkův\r\nmachna\r\nMachnín\r\nmachnínský\r\nmáchnout\r\nmáchnutí\r\nMachonský\r\nmachorka\r\nMachotek\r\nMachotková\r\nMachotkův\r\nMachová\r\nMáchová\r\nMachovcová\r\nMachovcův\r\nMachovec\r\nMachov\r\nmachovský\r\nmáchovský\r\nMach\r\nmachr\r\nmachrův\r\nMachů\r\nMachulský\r\nMachútová\r\nMachút\r\nMachútův\r\nMachův\r\nMáchův\r\nMachytka\r\nMachytková\r\nMachytkův\r\nMaierová\r\nMaier\r\nMaierův\r\nmailer\r\nmail\r\nmailovací\r\nmailovanější\r\nmailování\r\nmailovaný\r\nmailovat\r\nmailovávání\r\nmailovávaný\r\nmailovávat\r\nmailový\r\nMaixnerová\r\nMaixner\r\nMaixnerův\r\nmajáček\r\nmaják\r\nmajákový\r\nmajáles\r\nmajánský\r\nMajdalena\r\nMajerníková\r\nMajerník\r\nMajerníkův\r\nMajerová\r\nMajer\r\nMajerův\r\nmajestát\r\nmajestátnější\r\nmajestátní\r\nmajetek\r\nMajetín\r\nmajetínský\r\nmajetkářčin\r\nmajetkářka\r\nmajetkář\r\nmajetkářův\r\nmajetkoprávní\r\nmajetkový\r\nmajetnější\r\nmajetnice\r\nmajetnický\r\nmajetnictví\r\nmajetničtější\r\nmajetník\r\nmajetníkův\r\nmajetný\r\nmaje\r\nmající\r\nmají\r\nmajitelčin\r\nmajitelka\r\nmajitelštější\r\nmajitel\r\nmajitelův\r\nmajka\r\nmájka\r\nMajkuthová\r\nMajkuth\r\nMajkuthův\r\nMajolenčin\r\nMajolenka\r\nmajolika\r\nmajolikový\r\nmajolka\r\nmajonéza\r\nmajonézový\r\nmajoránka\r\nmajoránkový\r\nmajoranta\r\nmajorčin\r\nmajordomo\r\nmajordomův\r\nmajorismus\r\nmajorita\r\nmajoritnější\r\nmajoritní\r\nmajorizace\r\nmajorka\r\nmajor\r\nmajorův\r\nMajová\r\nMájová\r\nmájovec\r\nmájovější\r\nmájovka\r\nmájový\r\nmáj\r\nMajtaníková\r\nMajtaník\r\nMajtaníkův\r\nmajuskule\r\nMaj\r\nMáj\r\nMajův\r\nMájův\r\nMajzlíková\r\nMajzlík\r\nMajzlíkův\r\nmajznout\r\nmajznutí\r\nmajznutý\r\nmakačka\r\nmakadam\r\nmakadamový\r\nmakak\r\nmakakův\r\nMakaloušová\r\nMakalouš\r\nMakaloušův\r\nmakání\r\nMakarenko\r\nMakarenkův\r\nmakaron\r\nmakarón\r\nmakaronový\r\nmakarónový\r\nmakarónský\r\nmakarónština\r\nMakarová\r\nMakar\r\nMakarův\r\nmakat\r\nmakavý\r\nMakedoncův\r\nMakedončin\r\nmakedončin\r\nMakedonec\r\nMakedonie\r\nMakedonka\r\nmakedonský\r\nmakedonský\r\nmakedonština\r\nmakendoncův\r\nmaketa\r\nmák\r\nmakista\r\nmakistčin\r\nmakistka\r\nmakistův\r\nmakléřský\r\nmakléřství\r\nmakléř\r\nmakléřův\r\nmáknout\r\nMakotřasy\r\nMakovcová\r\nMakovcův\r\nmakovec\r\nMakovec\r\nmakovější\r\nmakovice\r\nmakovicový\r\nmakovička\r\nmakovka\r\nMakov\r\nmakovský\r\nMakový\r\nmakový\r\nmakrela\r\nmakrobiotický\r\nmakrobiotika\r\nmakroekonomický\r\nmakroekonomie\r\nmakroekonomika\r\nmakroekonom\r\nmakroekonomův\r\nmakrofág\r\nmakrofonie\r\nmakrofotografie\r\nmakrofyt\r\nmakrofytní\r\nmakroinstrukce\r\nmakrojazyk\r\nmakrokosmický\r\nmakrokosmos\r\nmakroměřítko\r\nmakrometoda\r\nmakromolekulární\r\nmakromolekula\r\nmakro\r\nmakroparametr\r\nmakroprocesor\r\nmakroprocesorový\r\nmakroprofil\r\nmakroprvek\r\nmakropříkaz\r\nmakroseismický\r\nmakrosféra\r\nmakrosituace\r\nmakroskopický\r\nmakroskopičtější\r\nmakrosociální\r\nmakrostruktura\r\nmakrosvět\r\nmakroúroveň\r\nmakrovegetace\r\nmakrovirus\r\nmakrozbytek\r\nmakulatura\r\nmala\r\nmála\r\nmalaga\r\nMalaga\r\nMalahov\r\nmalahovský\r\nmalachit\r\nmalachitový\r\nmalajámština\r\nMalajcův\r\nMalajčin\r\nMalajec\r\nMalajka\r\nMalajsie\r\nMalajsko\r\nmalajský\r\nmalajský\r\nmalajština\r\nMalardův\r\nmalarický\r\nmalaričtější\r\nmalárie\r\nmaláriový\r\nmalátnější\r\nmalátnět\r\nmalátný\r\nMalawi\r\nMalawicův\r\nMalawijčin\r\nMalawijec\r\nMalawijka\r\nmalawský\r\nmalba\r\nMalcová\r\nMalcův\r\nMalčín\r\nmalčínský\r\nmalebnější\r\nmalebný\r\nMalec\r\nMalečov\r\nmalečovský\r\nMaledivančin\r\nMaledivanka\r\nMaledivan\r\nMaledivanův\r\nMaledivcův\r\nMaledivec\r\nmaledivský\r\nMaledivy\r\nMalechovice\r\nmalechovický\r\nmaleinový\r\nMálek\r\nmálem\r\nMalenčin\r\nMalenka\r\nMalenová\r\nMalenovice\r\nmalenovický\r\nMalenovský\r\nMalen\r\nMalenův\r\nmaléreččin\r\nmalérečka\r\nmalér\r\nMaléřová\r\nMaléř\r\nMaléřův\r\nMalesice\r\nmalesický\r\nMalešice\r\nmalešický\r\nMalešov\r\nmalešovský\r\nMaletice\r\nmaletický\r\nMaletín\r\nmaletínský\r\nmalformace\r\nMalgašsko\r\nmalgašský\r\nMali\r\nMalibu\r\nmalíček\r\nmaličičký\r\nmalička\r\nmaličkatější\r\nmaličký\r\nmalignější\r\nmaligní\r\nmalichernější\r\nmalicherný\r\nMalijcův\r\nMalijčin\r\nMalijec\r\nMalijka\r\nmalík\r\nMalíková\r\nMalíkov\r\nmalíkovský\r\nmalíkový\r\nMalík\r\nMalíkův\r\nmalilinkatější\r\nmalilinký\r\nMalina\r\nmalina\r\nMálinčin\r\nmaliní\r\nmaliník\r\nmaliníkový\r\nmalinka\r\nmalinkatější\r\nmalinkatý\r\nMálinka\r\nmalinký\r\nMalín\r\nMalinová\r\nmalinovka\r\nMalinovský\r\nmalinovský\r\nmalinový\r\nmalínský\r\nMalinův\r\nmalířčin\r\nmalířka\r\nMalířová\r\nmalířský\r\nmalířství\r\nmalířštější\r\nmalíř\r\nMalíř\r\nMalířův\r\nmalířův\r\nmaliský\r\nMalivský\r\nMálková\r\nMálkovice\r\nmálkovický\r\nMálkov\r\nmálkovský\r\nMálkův\r\nMallorca\r\nmálo\r\nmaloburžoasie\r\nmaloburžoasnější\r\nmaloburžoazie\r\nmaloburžoaznější\r\nmaloburžoazní\r\nmáloco\r\nmalodohodový\r\nmalodrážní\r\nmálodruhový\r\nmalodušnější\r\nmalodušný\r\nmalofatranský\r\nmaloformátový\r\nmálokam\r\nmálokde\r\nmálokdo\r\nmálokdy\r\nmálokterý\r\nmaloměsto\r\nmaloměstský\r\nmaloměstštější\r\nmaloměšťácký\r\nmaloměšťáctví\r\nmaloměšťaččin\r\nmaloměšťačka\r\nmaloměšťáčtější\r\nmaloměšťák\r\nmaloměšťákův\r\nmalometrážní\r\nmálomluvný\r\nmalomocenství\r\nmalomocný\r\nmalomyslnější\r\nmalomyslnění\r\nmalomyslněný\r\nmalomyslnět\r\nmalomyslný\r\nmálo\r\nmaloobchod\r\nmaloobchodnice\r\nmaloobchodník\r\nmaloobchodníkův\r\nmaloobchodní\r\nmaloplošný\r\nMalopolsko\r\nmalopolský\r\nmaloprůměrový\r\nmalorážka\r\nmalorážkový\r\nmalorážní\r\nmalorolnice\r\nmalorolnický\r\nmalorolnictví\r\nmalorolník\r\nmalorolníkův\r\nMalorusko\r\nmálořešící\r\nmalosériový\r\nmalostranský\r\nmalosvatoňovický\r\nMalotice\r\nmalotický\r\nMalotínová\r\nMalotín\r\nMalotínův\r\nmalotraktor\r\nmalotřídka\r\nmálotřídka\r\nmalotřídní\r\nmalovánčin\r\nmalování\r\nmalovánka\r\nMalovaný\r\nmalovaný\r\nmalovat\r\nmalovávání\r\nmalovávaný\r\nmalovávat\r\nmalověrnější\r\nmalověrný\r\nMalovice\r\nmalovický\r\nmalovýroba\r\nmalovýrobce\r\nmalovýrobcův\r\nmalozemědělcův\r\nmalozemědělec\r\nMalše\r\nMalšice\r\nmalšický\r\nMalšín\r\nmalšínský\r\nMalšovice\r\nmalšovický\r\nmalšský\r\nMalťančin\r\nMalťanka\r\nMalťan\r\nMalťanův\r\nMalta\r\nmalta\r\nmaltézský\r\nmalthusiánství\r\nmaltitol\r\nmaltol\r\nmaltosa\r\nmaltový\r\nmaltóza\r\nmaltózy\r\nmaltský\r\nmaltština\r\nmaltuziánství\r\nmálu\r\nmalující\r\nMalusek\r\nMalusková\r\nMaluskův\r\nmalůvka\r\nmalvaz\r\nmalvazinka\r\nmalvice\r\nmalvidin\r\nMalvíňančin\r\nMalvíňanka\r\nMalvíňan\r\nMalvíňanův\r\nmalvínský\r\nmalvínský\r\nMalvíny\r\nMalypetrová\r\nMalypetr\r\nMalypetrův\r\nMalý\r\nmalý\r\nmáma\r\nmáme\r\nmámenější\r\nmámení\r\nmaměnka\r\nmámený\r\nmami\r\nmámící\r\nmamička\r\nmamina\r\nmaminčin\r\nmamineččin\r\nmaminečka\r\nmaminka\r\nmámin\r\nmámit\r\nmámivější\r\nmámivý\r\nmamka\r\nmám\r\nmamonářčin\r\nmamonářka\r\nmamonářství\r\nmamonář\r\nmamonářův\r\nmamon\r\nmamuščin\r\nmamuška\r\nmamutí\r\nmamut\r\nmamutův\r\nMan\r\nmá\r\nmanagement\r\nmanager\r\nmanagerský\r\nManagua\r\nmaňásek\r\nMaňásek\r\nMaňásková\r\nmaňáskový\r\nMaňáskův\r\nmaňáskův\r\nmana\r\nmanažerčin\r\nmanažérčin\r\nmanažerismus\r\nmanažerka\r\nmanažérka\r\nmanažer\r\nmanažér\r\nmanažerský\r\nmanažérský\r\nmanažerství\r\nmanažerův\r\nmanažérův\r\nManca\r\nMancová\r\nMancův\r\nMančinčin\r\nMančinka\r\nMančin\r\nmandantčin\r\nmandantka\r\nmandant\r\nmandantův\r\nmandarinka\r\nmandarínka\r\nmandarinkový\r\nmandarín\r\nmandarínův\r\nmandatář\r\nmandatářův\r\nmandát\r\nmandátní\r\nmandatorní\r\nmandátový\r\nmandelík\r\nmandelíkův\r\nmandelinka\r\nmandelinkovitý\r\nMandelový\r\nmandel\r\nMandíková\r\nMandík\r\nMandíkův\r\nmandle\r\nmandl\r\nmandlička\r\nMandlíková\r\nMandlík\r\nMandlíkův\r\nmandloňový\r\nmandloň\r\nmandlovací\r\nmandlování\r\nmandlovaný\r\nmandlovat\r\nmandlovávání\r\nmandlovávaný\r\nmandlovávat\r\nmandlovcový\r\nmandlovější\r\nmandlovitý\r\nmandlovna\r\nmandlovník\r\nmandlový\r\nmandolína\r\nmandolinista\r\nmandolinistčin\r\nmandolinistka\r\nmandolinistův\r\nmandragora\r\nMandžusko\r\nmandžuský\r\nmandžuský\r\nmaně\r\nMánek\r\nmanekýnka\r\nmanekýn\r\nmanekýnův\r\nMánesová\r\nMánes\r\nMánesův\r\nManětín\r\nmanětínský\r\nmanětínský\r\nmanévr\r\nmanévrovací\r\nmanévrování\r\nmanévrovaný\r\nmanévrovat\r\nmanévrový\r\nmanévrující\r\nmanéž\r\nmanganan\r\nmanganatý\r\nmangan\r\nmanganičitan\r\nmanganičitý\r\nmanganičnan\r\nmanganičný\r\nmanganistan\r\nmanganistý\r\nmanganit\r\nmanganitý\r\nmanganometrie\r\nmanganový\r\nmangold\r\nmango\r\nmangovník\r\nmangový\r\nmangrovový\r\nMaňhalová\r\nMaňhal\r\nMaňhalův\r\nManhattan\r\nmanhattanský\r\nManche\r\nManchester\r\nmanchesterský\r\nmání\r\nmaniaččin\r\nmaniačka\r\nmaniakální\r\nmaniak\r\nmaniakův\r\nmanický\r\nMániččin\r\nMánička\r\nmánička\r\nmánie\r\nmanifestace\r\nmanifestační\r\nmanifestant\r\nmanifest\r\nmanifestní\r\nmanifestování\r\nmanifestovaný\r\nmanifestovat\r\nmanifestující\r\nmanicheismus\r\nmanikérčin\r\nmanikérka\r\nmanikér\r\nmanikérův\r\nmaník\r\nmanikura\r\nmanikúra\r\nmanikůra\r\nmaníkův\r\nmanikýra\r\nmanikýrčin\r\nmanikýrka\r\nmanikýrování\r\nmanikýrovat\r\nManila\r\nmanilský\r\nmaniodepresivita\r\nmaniodepresivní\r\nmanioka\r\nmaniok\r\nmaniokový\r\nmanipulace\r\nmanipulační\r\nmanipulantčin\r\nmanipulantka\r\nmanipulant\r\nmanipulátorčin\r\nmanipulátor\r\nmanipulátorka\r\nmanipulátorství\r\nmanipulátorův\r\nmanipulovanější\r\nmanipulování\r\nmanipulovaný\r\nmanipulovat\r\nmanipulovatelnější\r\nmanipulovatelný\r\nmanipulující\r\nmanitol\r\nmanitový\r\nmank\r\nManka\r\nmanko\r\nMánková\r\nMánkův\r\nManligová\r\nManlig\r\nManligův\r\nMannheim\r\nmannheimský\r\nmannitol\r\nMannová\r\nMann\r\nMannův\r\nmanometr\r\nManová\r\nMaňovice\r\nmaňovický\r\nmanový\r\nMan\r\nman\r\nmansarda\r\nmansardový\r\nMansfeldová\r\nMansfeld\r\nMansfeldův\r\nmanský\r\nmanství\r\nmanšestráky\r\nmanšestr\r\nmanšestrový\r\nmanština\r\nmantinel\r\nmantisa\r\nmantra\r\nMantův\r\nmanuál\r\nmanuálnější\r\nmanuální\r\nmanuálový\r\nManuela\r\nManuelin\r\nmanufaktura\r\nmanufakturní\r\nmanuskript\r\nManův\r\nmanův\r\nmanýra\r\nmanýr\r\nmanýrismus\r\nmanýrista\r\nmanýristčin\r\nmanýristický\r\nmanýrističtější\r\nmanýristka\r\nmanýristův\r\nmanželčin\r\nmanželka\r\nmanžel\r\nmanželský\r\nmanželství\r\nmanželův\r\nmanžeta\r\nmanžetka\r\nmanžetový\r\nmanžílek\r\nmanžílkův\r\nmaoismus\r\nmaoista\r\nmaoistčin\r\nmaoistický\r\nmaoistka\r\nmaoistův\r\nMao\r\nmaorský\r\nmapa\r\nmapička\r\nmapka\r\nmapovací\r\nmapovanější\r\nmapování\r\nmapovaný\r\nmapovat\r\nmapovitý\r\nmapový\r\nmapující\r\nMaputo\r\nmarabu\r\nmarabu\r\nMaracaibo\r\nmarách\r\nmaranta\r\nMára\r\nmarasca\r\nmaraska\r\nmarasmus\r\nmarast\r\nmaratoncův\r\nmaratóncův\r\nmaratónčin\r\nmaratonec\r\nmaratónec\r\nmaraton\r\nmaratón\r\nmaratónka\r\nmaratonský\r\nmaratónský\r\nmarazmus\r\nMarburk\r\nMarcela\r\nMarcelčin\r\nMarcelin\r\nMarcelka\r\nMarcel\r\nMarcelův\r\nMarcinek\r\nMarcinková\r\nMarcinkův\r\nMarcinová\r\nMarcin\r\nMarcinův\r\nmarcipán\r\nmarcipánový\r\nMarco\r\nMareček\r\nMarečková\r\nMarečkův\r\nMarek\r\nmaréna\r\nMarešová\r\nMareš\r\nMarešův\r\nmaretialismus\r\nmargarin\r\nmargarín\r\nmargarínový\r\nmarginálie\r\nmarginálnější\r\nmarginální\r\nMarharie\r\nMarhoulová\r\nMarhoul\r\nMarhoulův\r\nMariana\r\nMariančin\r\nMarianin\r\nMarianka\r\nMarián\r\nMariánskolázeňsko\r\nmariánskolázeňský\r\nmariánský\r\nmariánštější\r\nMariánův\r\nmariášový\r\nmariáš\r\nMariazell\r\nmariazellský\r\nMaria\r\nMaričin\r\nMarie\r\nmarihuana\r\nmarihuanový\r\nMariin\r\nMarika\r\nmarináda\r\nmariňák\r\nmariňákův\r\nMarina\r\nMarinčin\r\nMarinčová\r\nMarinč\r\nMarinčův\r\nmaringotka\r\nMarinin\r\nmarinismus\r\nMarinka\r\nMarino\r\nmarinování\r\nmarinovaný\r\nmarinovat\r\nmariologie\r\nmarioneta\r\nmarionetka\r\nmarionetový\r\nMarjánčin\r\nMarjánka\r\nmarkantnější\r\nmarkantní\r\nmarka\r\nmarke\r\nmarker\r\nmarkér\r\nmarkérův\r\nMarkesová\r\nMarkes\r\nMarkesův\r\nMarkéta\r\nMarkétčin\r\nmarket\r\nmarketing\r\nmarketingový\r\nmarketink\r\nmarketinkový\r\nMarkétin\r\nMarkétka\r\nMarkomanie\r\nMarkoman\r\nmarkomanský\r\nMarkomanův\r\nMarko\r\nmarkování\r\nmarkovaný\r\nmarkovat\r\nMarková\r\nMarkovičová\r\nMarkovič\r\nMarkovičův\r\nmarkovovský\r\nMarkov\r\nMarkovův\r\nmarkový\r\nmarkraběcí\r\nmarkrabě\r\nmarkraběnčin\r\nmarkraběnka\r\nmarkrabětův\r\nmarkrabí\r\nmarkrabský\r\nmarkrabství\r\nMarkupová\r\nMarkup\r\nMarkupův\r\nMarkův\r\nMarkvartice\r\nmarkvartický\r\nmarkýrovanější\r\nmarkýrovaný\r\nmarkýrující\r\nmarkytánka\r\nmarkytán\r\nmarkytánský\r\nmarkytánův\r\nmarkýza\r\nmarkýzin\r\nmarkýz\r\nmarkýzův\r\nmarmeláda\r\nmarmeládový\r\nmarnější\r\nmarnění\r\nmarněný\r\nmárnice\r\nmarnit\r\nmarnivcův\r\nmarnivec\r\nmarnivější\r\nmarnivý\r\nmarnotratnější\r\nmarnotratnice\r\nmarnotratnictví\r\nmarnotratník\r\nmarnotratníkův\r\nmarnotratný\r\nmarný\r\nMarobudův\r\nmarocký\r\nMaročančin\r\nMaročanka\r\nMaročan\r\nMaročanův\r\nmaročtější\r\nmarodící\r\nmarodit\r\nmarodivější\r\nmarodivý\r\nmarodka\r\nmarodnější\r\nmarod\r\nmarodův\r\nmarokánčin\r\nmarokanizující\r\nmarokánka\r\nmarokén\r\nmarokénový\r\nMaroko\r\nMaroušek\r\nMaroušková\r\nMarouškův\r\nMárová\r\nMarovský\r\nMarseille\r\nMars\r\nMarshall\r\nMarshallův\r\nmarsovský\r\nMarsův\r\nmaršálek\r\nMaršálek\r\nMaršálková\r\nMaršálkův\r\nmaršálkův\r\nmaršál\r\nmaršálský\r\nmaršálský\r\nmaršálštější\r\nmaršálův\r\nMaršíková\r\nMaršík\r\nMaršíkův\r\nMaršounová\r\nMaršoun\r\nMaršounův\r\nMaršovice\r\nmaršovický\r\nMaršov\r\nmaršovský\r\nmaršový\r\nmarš\r\nMartanová\r\nmarťan\r\nMartan\r\nMartanův\r\nmarťanův\r\nMarta\r\nmartensit\r\nmartensitický\r\nmartensitika\r\nmartenzit\r\nmartenzitická\r\nMartiččin\r\nMartička\r\nMartina\r\nMartina\r\nMartincová\r\nMartincův\r\nMartinčin\r\nMartinec\r\nMartinek\r\nMartínek\r\nMartiněves\r\nmartiněveský\r\nMartinice\r\nmartinický\r\nMartinik\r\nMartinin\r\nMartinka\r\nMartinková\r\nMartínková\r\nMartínkov\r\nmartínkovský\r\nMartinkův\r\nMartínkův\r\nMartinová\r\nMartinovský\r\nMartin\r\nMartinský\r\nmartinský\r\nMartinů\r\nMartinův\r\nMartin\r\nMartíšek\r\nMartíšková\r\nMartíškův\r\nMartišová\r\nMartiš\r\nMartišův\r\nMartonka\r\nMartonková\r\nMartonkův\r\nMartův\r\nMartykánová\r\nMartykán\r\nMartykánův\r\nmartyrium\r\nMáruše\r\nMarušek\r\nMaruška\r\nmaruška\r\nMarušková\r\nMaruškův\r\nMárův\r\nMarvalová\r\nMarval\r\nMarvalův\r\nMarvanová\r\nMarvan\r\nMarvanův\r\nmarxismus\r\nmarxista\r\nmarxistčin\r\nmarxistický\r\nmarxističtější\r\nmarxistka\r\nmarxistův\r\nmarxleninismus\r\nmarxleninista\r\nmarxleninistčin\r\nmarxleninistka\r\nmarxleninistův\r\nMarx\r\nMarxův\r\nMary\r\nMaryččin\r\nMaryčka\r\nMarylin\r\nMarýnčin\r\nMarýnka\r\nMaryša\r\nMaryšek\r\nMaryšin\r\nMaryška\r\nMaryšková\r\nMaryškův\r\nmáry\r\nmarže\r\nMařánek\r\nMařánková\r\nMařánkův\r\nMařanová\r\nMařan\r\nMařanův\r\nMařatice\r\nmařatický\r\nMářa\r\nMařčin\r\nMařenčin\r\nMařenice\r\nmařenický\r\nmaření\r\nMařenka\r\nmařený\r\nMáří\r\nmařící\r\nMářích\r\nMaříková\r\nMařík\r\nMaříkův\r\nMářím\r\nMářími\r\nmařinka\r\nmařinkový\r\nMářin\r\nmařit\r\nMařka\r\nMářův\r\nMása\r\nmasakr\r\nmasakrování\r\nmasakrovaný\r\nmasakrovat\r\nmasakrovávání\r\nmasakrovávaný\r\nmasakrovávat\r\nmasakrující\r\nmasarykismus\r\nMasaryková\r\nmasarykovský\r\nMasaryk\r\nMasarykův\r\nMasaříková\r\nMasařík\r\nMasaříkův\r\nmasařina\r\nmasařka\r\nmasař\r\nmasařův\r\nmasa\r\nmasážní\r\nmasáž\r\nmáselnatý\r\nmáselnice\r\nmáselný\r\nmasérčin\r\nmaser\r\nmasérka\r\nmaserový\r\nmasér\r\nmasérský\r\nmasérštější\r\nmasérův\r\nMasiariková\r\nMasiarik\r\nMasiarikův\r\nmasíčko\r\nmasírovací\r\nmasírování\r\nmasírovaný\r\nmasírovat\r\nmasírovávat\r\nmasírující\r\nmasitější\r\nmasitý\r\nmasiv\r\nmasív\r\nmasivnější\r\nmasívnější\r\nmasivní\r\nmasívní\r\nmaskáče\r\nmaskáčemi\r\nmaskáčích\r\nmaskáčový\r\nmaskáčů\r\nmaskáčům\r\nmaska\r\nmaskérčin\r\nmaskérka\r\nmaskérna\r\nmaskér\r\nmaskérský\r\nmaskérův\r\nmaskot\r\nmaskotův\r\nmaskovací\r\nmaskování\r\nmaskovaný\r\nmaskovat\r\nmaskovatelnější\r\nmaskovatelný\r\nmaskový\r\nmaskující\r\nmaskulinita\r\nmaskulinnější\r\nmaskulinní\r\nmaskulinum\r\nmáslenka\r\nmáslíčko\r\nmáslo\r\nMáslo\r\nMáslová\r\nMáslovice\r\nmáslovický\r\nmáslovka\r\nmáslový\r\nMáslův\r\nmasmédium\r\nmasňák\r\nmasna\r\nmasnější\r\nMasnica\r\nMasnicová\r\nMasnicův\r\nmasný\r\nmasochismus\r\nmasochista\r\nmasochistčin\r\nmasochistický\r\nmasochističtější\r\nmasochistka\r\nmasochistův\r\nmasokombinát\r\nmasokostní\r\nmaso\r\nmasopust\r\nmasopustní\r\nMasopustová\r\nMasopust\r\nMasopustův\r\nmasovější\r\nmasový\r\nmasožravcův\r\nmasožravec\r\nmasožravý\r\nMassachusetts\r\nmastek\r\nmastic\r\nmasticí\r\nmastící\r\nmastičkářčin\r\nmastičkářka\r\nmastičkářství\r\nmastičkář\r\nmastičkářův\r\nmastička\r\nmastif\r\nmastích\r\nmastím\r\nmást\r\nmastit\r\nmastitis\r\nmast\r\nmastkový\r\nmastnější\r\nMastníková\r\nMastník\r\nMastníkův\r\nmastnota\r\nmastný\r\nmastodontí\r\nmastodont\r\nmastodontův\r\nmasťový\r\nmasturbace\r\nmasturbační\r\nmasturbování\r\nmasturbovat\r\nmasturbovávání\r\nmasturbovávat\r\nmasturbující\r\nMašata\r\nMašatová\r\nMašatův\r\nMáša\r\nMáša\r\nMašek\r\nMášenčin\r\nMášenka\r\nMašíček\r\nMašíčková\r\nMašíčkův\r\nmašina\r\nmašinerie\r\nmašinérie\r\nmašinismus\r\nmašinista\r\nmašinistčin\r\nmašinistka\r\nmašinistův\r\nmašinka\r\nMašínová\r\nMašín\r\nMašínův\r\nMášin\r\nmašírování\r\nmašírovaný\r\nmašírovat\r\nmašírující\r\nMaška\r\nmaškaráda\r\nmaškara\r\nMaškarincová\r\nMaškarincův\r\nMaškarinec\r\nmaškarní\r\nMašková\r\nMaškův\r\nmašle\r\nmašlička\r\nmašlovačka\r\nmáš\r\nMášová\r\nMašovice\r\nmašovický\r\nMaštálka\r\nmaštálka\r\nMaštálková\r\nMaštálkův\r\nmaštal\r\nmaštění\r\nmaštěný\r\nMaštera\r\nMašterová\r\nMašterův\r\nMašťov\r\nmašťovský\r\nMášův\r\nmatador\r\nmatadorův\r\nMatásek\r\nMatásková\r\nMatáskův\r\nMatasová\r\nMatas\r\nMatasův\r\nMaťátko\r\nMaťátková\r\nMaťátkův\r\nmáta\r\nmatčin\r\nmatečnice\r\nmatečník\r\nmateční\r\nmatečný\r\nMatěja\r\nMatějček\r\nMatějčíková\r\nMatějčík\r\nMatějčíkův\r\nMatějčková\r\nMatějčkův\r\nMatějíček\r\nMatějíčková\r\nMatějíčkův\r\nMatějičný\r\nMatějka\r\nMatějková\r\nMatějkův\r\nMatejová\r\nMatějová\r\nMatějov\r\nMatějovský\r\nmatějovský\r\nmatějský\r\nMatějů\r\nMatej\r\nMatěj\r\nMatejův\r\nMatějův\r\nMatela\r\nMatelová\r\nMatelův\r\nmatematický\r\nmatematiččin\r\nmatematička\r\nmatematika\r\nmatematik\r\nmatematikův\r\nmatematizace\r\nmatematizovaný\r\nmatematizovat\r\nmatematizující\r\nmáte\r\nmatenější\r\nmatení\r\nmaten\r\nmatený\r\nmateriál\r\nmaterialismus\r\nmaterialista\r\nmaterialistčin\r\nmaterialistický\r\nmaterialističtější\r\nmaterialistka\r\nmaterialistův\r\nmaterializovaný\r\nmaterializující\r\nmateriálnější\r\nmateriální\r\nmateriálový\r\nmaterie\r\nmatérie\r\nMaterna\r\nMaternová\r\nMaternův\r\nmateřídouška\r\nmateřídouškový\r\nmateřinka\r\nmateří\r\nMateřov\r\nmateřovský\r\nmateřský\r\nmateřství\r\nmateřštější\r\nmateřština\r\nmateř\r\nMatesová\r\nmates\r\nMates\r\nMatesův\r\nmatesy\r\nmat\r\nMathéová\r\nMathéův\r\nMathé\r\nmatice\r\nmaticový\r\nmatička\r\nmatikářčin\r\nmatikářka\r\nmatikář\r\nmatikářův\r\nmatika\r\nmatiné\r\nmatinka\r\nmatjes\r\nmatjesy\r\nmáť\r\nmatka\r\nmatkový\r\nmatlanina\r\nmatlání\r\nmatlaný\r\nmatlat\r\nmatlávání\r\nmatlávaný\r\nmatlávat\r\nmátl\r\nmatnější\r\nmatnice\r\nmatný\r\nmátoha\r\nMatocha\r\nMatochová\r\nMatochův\r\nmatolin\r\nmatolinovice\r\nmatolinový\r\nmatoucí\r\nMatouchová\r\nMatouch\r\nMatouchův\r\nMatoušek\r\nMatoušková\r\nMatouškův\r\nMatoušová\r\nMatouš\r\nMatoušův\r\nmatování\r\nmatovaný\r\nmatovat\r\nmátovější\r\nmatový\r\nmátový\r\nmátoživější\r\nmátoživý\r\nmátožnější\r\nmátožný\r\nmatrace\r\nmatracovitější\r\nmatracovitý\r\nmatracový\r\nmatriarchální\r\nmatriarchát\r\nmatrice\r\nmatricový\r\nmatriční\r\nmatrikářčin\r\nmatrikářka\r\nmatrikář\r\nmatrikářův\r\nmatrika\r\nmatrikový\r\nmatrimoniologický\r\nmatrona\r\nmatróna\r\nmatština\r\nmatu\r\nMatula\r\nMatulka\r\nMatulková\r\nMatulkův\r\nMatulová\r\nMatulův\r\nmaturantčin\r\nmaturantka\r\nmaturant\r\nmaturantův\r\nmatura\r\nmaturita\r\nmaturitní\r\nmaturování\r\nmaturovat\r\nmaturovávat\r\nMaturová\r\nMatur\r\nmaturující\r\nMaturův\r\nMatuský\r\nmátuščin\r\nMatušek\r\nMatuška\r\nmatuška\r\nmaťuška\r\nmátuška\r\nMatušková\r\nMatuškův\r\nMatúšův\r\nMatuzalémův\r\nMatyášová\r\nMatyáš\r\nMatyášův\r\nMatylda\r\nMatyldin\r\nMatysíková\r\nMatysík\r\nMatysíkův\r\nMatyska\r\nMatysková\r\nMatyskův\r\nMatysová\r\nMatys\r\nMatysův\r\nMaud\r\nMauderová\r\nMauder\r\nMauderův\r\nMaunová\r\nMaun\r\nMaunův\r\nMaurerová\r\nMaurer\r\nMaurerův\r\nMauretáncův\r\nMauretánčin\r\nMauretánec\r\nMauretánie\r\nMauretánka\r\nmauretánský\r\nMaurice\r\nMauricijcův\r\nMauricijčin\r\nMauricijec\r\nMauricijka\r\nmauricijský\r\nMauricius\r\nmaurický\r\nMaurová\r\nMaur\r\nMaur\r\nmaurský\r\nMaurův\r\nmaurův\r\nMautnerová\r\nMautner\r\nMautnerův\r\nMaův\r\nmauzoleum\r\nmávající\r\nmávání\r\nmávat\r\nmávátko\r\nmávavý\r\nmávnout\r\nmávnutí\r\nmávnutý\r\nMaxa\r\nmaxi\r\nmaxikabát\r\nmaximalismus\r\nmaximalista\r\nmaximalistčin\r\nmaximalistický\r\nmaximalističtější\r\nmaximalistka\r\nmaximalistův\r\nmaximalizace\r\nmaximalizování\r\nmaximalizovaný\r\nmaximalizovat\r\nmaximalizující\r\nmaximálně\r\nmaximálnější\r\nmaximální\r\nmaxima\r\nMaximová\r\nMaxim\r\nmaximum\r\nMaximův\r\nmaxisukně\r\nMaxmilián\r\nMaxmiliánův\r\nMaxová\r\nMax\r\nMaxův\r\nMayen\r\nMayerová\r\nMayer\r\nMayersbach\r\nMayerův\r\nMayotte\r\nmayottský\r\nmayovka\r\nmayský\r\nmayský\r\nMay\r\nMayův\r\nmayův\r\nmazací\r\nmazáctví\r\nmazačka\r\nMazáčová\r\nmazáčtější\r\nMazáč\r\nMazáčův\r\nmazadlo\r\nmazající\r\nMazáková\r\nmazák\r\nMazák\r\nMazákův\r\nmazákův\r\nMazalová\r\nMazal\r\nmazal\r\nMazalův\r\nmazalův\r\nmazanec\r\nmazanější\r\nmazánek\r\nMazánek\r\nmazanice\r\nmazanina\r\nmazání\r\nMazánková\r\nMazánkův\r\nmazánkův\r\nmazaný\r\nmazat\r\nmazatelný\r\nmazávající\r\nmazávání\r\nmazávaný\r\nmazávat\r\nmazavka\r\nmazavkův\r\nmazavý\r\nMazda\r\nmázdra\r\nmázdrovitý\r\nMazelov\r\nmazelovský\r\nmazel\r\nmazelův\r\nmaz\r\nmáz\r\nmazivo\r\nmazlavější\r\nmazlavý\r\nmazlení\r\nmazlený\r\nmazlící\r\nmazlíček\r\nmazlíčkův\r\nmazlík\r\nmazlíkův\r\nmazlit\r\nmazlivější\r\nmazlivý\r\nmazlův\r\nmaznice\r\nmaznička\r\nmáznout\r\nmáznutí\r\nmáznutý\r\nmazný\r\nmazotok\r\nmazovější\r\nMazovsko\r\nmazovský\r\nMazovský\r\nmazový\r\nMazura\r\nmazurka\r\nmazurkový\r\nMazurová\r\nmazurový\r\nMazursko\r\nMazurův\r\nMazury\r\nmazut\r\nmazutový\r\nmažoretka\r\nMB\r\nmbar\r\nmccarthismus\r\nMcDonaldová\r\nMcDonald\r\nMcDonaldův\r\nMcely\r\nMcTaggart\r\nMcTaggartův\r\nmdlejší\r\nmdlení\r\nmdlít\r\nmdloba\r\nmdlobný\r\nmdlý\r\nMDŽ\r\nME\r\nmé\r\nmě\r\nmeandr\r\nmeandrování\r\nmeandrovat\r\nmeandrující\r\nmecenáška\r\nmecenášský\r\nmecenášství\r\nmecenáš\r\nmecenášův\r\nMeclov\r\nmeclovský\r\nmečbol\r\nmečení\r\nmečený\r\nMečeříž\r\nmečet\r\nmečiarismus\r\nMečichov\r\nmečichovský\r\nmečík\r\nMěčín\r\nměčínský\r\nMečířová\r\nMečíř\r\nMečířův\r\nMečislav\r\nMečislavův\r\nmečivější\r\nmečivý\r\nmečoun\r\nmečounův\r\nmečovitější\r\nmečovitý\r\nmečovka\r\nmečový\r\nmeč\r\nmedaile\r\nmedailista\r\nmedailistčin\r\nmedailistka\r\nmedailistův\r\nmedailonek\r\nmedailónek\r\nmedailon\r\nmedailón\r\nmedailónový\r\nmedailový\r\nměďák\r\nMedard\r\nMedardův\r\nMédea\r\nMédein\r\nMedek\r\nměděnecký\r\nMěděnec\r\nměděnější\r\nměděnka\r\nměděnkovější\r\nměděnkový\r\nměděný\r\nmed\r\nmediace\r\nmediační\r\nmedializace\r\nmedializování\r\nmedializovaný\r\nmedializovat\r\nmediální\r\nmedián\r\nmediánový\r\nmediátor\r\nmediátorový\r\nmediátorův\r\nmedicinální\r\nmedicina\r\nmedicína\r\nmedicinbal\r\nmedicinman\r\nmedicinmanův\r\nmedicínský\r\nmedicínštější\r\nmedický\r\nmediččin\r\nmedička\r\nmedievalista\r\nmedievalistčin\r\nmedievalistika\r\nmedievalistka\r\nmedievalistův\r\nmedikament\r\nmedikamentosní\r\nmedikamentózní\r\nmedikovaný\r\nmědikovcův\r\nmědikovec\r\nmedik\r\nmedikův\r\nMědílek\r\nMědílková\r\nMědílkův\r\nmědiryt\r\nmědirytina\r\nmeditace\r\nmeditační\r\nmeditativní\r\nmeditování\r\nmeditovaný\r\nmeditovat\r\nmeditující\r\nmedium\r\nmédium\r\nměď\r\nMedková\r\nMedkův\r\nmědlice\r\nMedlík\r\nMedlov\r\nmedlovský\r\nmědnatý\r\nměďnatý\r\nměďnatý\r\nmedník\r\nměďný\r\nmedný\r\nmedobraní\r\nmedomet\r\nmedonosnější\r\nmedonosný\r\nMedová\r\nmedovější\r\nmedovice\r\nmedovicový\r\nmedovina\r\nmedový\r\nMed\r\nMedřický\r\nMeduna\r\nmeduňka\r\nMedunová\r\nMedunův\r\nMedův\r\nmedúza\r\nmedvědice\r\nmedvědinec\r\nmedvědí\r\nmedvědí\r\nmedvědovitý\r\nmedvěd\r\nmedvědův\r\nmedvíďátko\r\nmedvídě\r\nmedvídek\r\nmedvídkův\r\nmeeting\r\nmegabajt\r\nmegabajtový\r\nmegabit\r\nmegabitový\r\nmegabyte\r\nmegabytový\r\nmegafon\r\nmegafonový\r\nmegahertz\r\nmegahertzích\r\nmegalit\r\nmegalomaniak\r\nmegalomaniakův\r\nmegalomanie\r\nmegalománie\r\nmegaloman\r\nmegalomanský\r\nmegalomanštější\r\nmegaohm\r\nmegasvět\r\nmegatunový\r\nmegawatt\r\nmegera\r\nmého\r\nMecháček\r\nměchačka\r\nMecháčková\r\nMecháčkův\r\nmechanicismus\r\nmechanický\r\nmechaniččin\r\nmechanička\r\nmechaničtější\r\nmechanika\r\nmechanik\r\nmechanikův\r\nmechanismus\r\nmechanista\r\nmechanistčin\r\nmechanistický\r\nmechanističtější\r\nmechanistka\r\nmechanistův\r\nmechanizace\r\nmechanizační\r\nmechanizátorčin\r\nmechanizátorka\r\nmechanizátor\r\nmechanizátorský\r\nmechanizátorův\r\nmechanizovanější\r\nmechanizování\r\nmechanizovaný\r\nmechanizovat\r\nmechanizovatelnější\r\nmechanizovatelný\r\nmechanizovávat\r\nmechanoterapie\r\nmechatronický\r\nmechatronika\r\nMěchenice\r\nměchenický\r\nmech\r\nměch\r\nmechorost\r\nmechovatět\r\nmechovější\r\nmechovitější\r\nmechovitý\r\nmechovka\r\nměchovka\r\nmechovnatka\r\nmechový\r\nměchový\r\nmechtle\r\nMěchura\r\nMěchurová\r\nMěchurův\r\nměchuřina\r\nměchýřek\r\nměchýřovitý\r\nměchýř\r\nMeidingerová\r\nMeidinger\r\nMeidingerův\r\nMeierová\r\nMeier\r\nMeierův\r\nMeilichová\r\nMeilich\r\nMeilichův\r\nmeiotický\r\nmeioza\r\nmeióza\r\nmeitnerium\r\nMeixnerová\r\nMeixner\r\nMeixnerův\r\nmejdan\r\nmejdlíčko\r\nmějme\r\nměj\r\nMejsnarová\r\nMejsnar\r\nMejsnarův\r\nMejstříková\r\nMejstřík\r\nMejstříkův\r\nmějte\r\nMejtský\r\nMejzrová\r\nMejzr\r\nMejzrův\r\nměkčejší\r\nměkčení\r\nměkčený\r\nměkčící\r\nměkčí\r\nměkka\r\nMekka\r\nměkkopatrový\r\nměkkozobý\r\nměkkýší\r\nměkkýšovitý\r\nměkkýš\r\nměkkýšův\r\nměkký\r\nMeklenbursko\r\nmeklenburský\r\nměknout\r\nměknutí\r\nmekotání\r\nmekotat\r\nmekotávání\r\nmekotávat\r\nmekot\r\nměkoučký\r\nměkounký\r\nměkynecký\r\nMěkynec\r\nmelafyr\r\nmelafyrový\r\nMelanésie\r\nmelanéský\r\nmelancholický\r\nmelancholička\r\nmelancholičtější\r\nmelancholie\r\nmelancholik\r\nmelancholikův\r\nmelanin\r\nmelanismus\r\nmelanistický\r\nmelanocyt\r\nmelanom\r\nMelanová\r\nMelan\r\nMelantrichová\r\nMelantrich\r\nMelantrichův\r\nmelantriška\r\nMelanův\r\nmelanžér\r\nmelanžovací\r\nmelanžování\r\nmelanžovaný\r\nmelanžovat\r\nmelasa\r\nmelasovější\r\nmelasový\r\nmela\r\nMelbourne\r\nmelbournský\r\nmělčejší\r\nmělčina\r\nmělčí\r\nmeldování\r\nmeldovaný\r\nmeldovat\r\nMelichárek\r\nMelichárková\r\nMelichárkův\r\nMelicharová\r\nMelichar\r\nMelicharův\r\nMelichová\r\nMelich\r\nMelichův\r\nmelika\r\nmeliorace\r\nmeliorační\r\nmeliorismus\r\nmelioristický\r\nmeliorování\r\nmeliorovaný\r\nmeliorovat\r\nmelír\r\nmelírovaný\r\nmelivo\r\nmělkovodní\r\nmělký\r\nmělnění\r\nmělnící\r\nMělnicko\r\nmělnický\r\nMělník\r\nmelodický\r\nmelodičtější\r\nmelodie\r\nmelodika\r\nmelodizace\r\nmelodrama\r\nmelodramatický\r\nmelodramatičtější\r\nmelodram\r\nmelograf\r\nměl\r\nmeloucí\r\nmelouchář\r\nmelouchářův\r\nmelouch\r\nMelounek\r\nmeloun\r\nMelounková\r\nMelounkův\r\nmelounový\r\nmelta\r\nmelu\r\nmeluzína\r\nmém\r\nmembrána\r\nmembránový\r\nmemento\r\nMemfis\r\nmemoárový\r\nmemoáry\r\nmemorandový\r\nmemorandum\r\nmemoriál\r\nmemorovací\r\nmemorování\r\nmemorovaný\r\nmemorovat\r\nmému\r\nMEN\r\nMENA\r\nměňavější\r\nměňavka\r\nměňavý\r\nměna\r\nmenáž\r\nMencáková\r\nMencák\r\nMencákův\r\nMenclová\r\nMencl\r\nMenclův\r\nMencová\r\nMenc\r\nMencův\r\nMenčíková\r\nMenčík\r\nMenčíkův\r\nmendělejevium\r\nMendělejev\r\nMendělejevův\r\nmendelismus\r\nmendelistický\r\nMendelová\r\nMendel\r\nMendelův\r\nMendlová\r\nMendl\r\nMendlův\r\nméně\r\nméněcennější\r\nméněcenný\r\nméněhodnotný\r\nméně\r\nměněnější\r\nměnění\r\nměněný\r\nméněstupňový\r\nmenhir\r\nmenhirový\r\nměnící\r\nměničový\r\nměnič\r\nmenilitový\r\nmeningitida\r\nmeningoencefalomyelitida\r\nMěnín\r\nměnínský\r\nměnírenský\r\nměnírna\r\nmeniskus\r\nměnit\r\nměnitelnější\r\nměnitelný\r\nměnívat\r\nměnivější\r\nměnivý\r\nměnlivější\r\nměnlivý\r\nměnlivý\r\nmenopauza\r\nměnový\r\nmenstruace\r\nmenstruační\r\nmenstruování\r\nmenstruovat\r\nmenstruující\r\nmenšenec\r\nmenšení\r\nmenšený\r\nmenševický\r\nmenševictví\r\nmenševik\r\nmenševikův\r\nmenševismus\r\nmenšící\r\nMenšíková\r\nMenšík\r\nMenšíkův\r\nmenšina\r\nmenšinový\r\nmenšit\r\nmenšitel\r\nmenší\r\nmentalismus\r\nmentalistický\r\nmentalita\r\nmentální\r\nMentlíková\r\nMentlík\r\nMentlíkův\r\nmentol\r\nmentolka\r\nmentolový\r\nmentorčin\r\nmentorka\r\nmentorování\r\nmentorovaný\r\nmentorovat\r\nmentor\r\nmentorský\r\nmentorství\r\nmentorující\r\nmentorův\r\nmenu\r\nmenuet\r\nMenza\r\nmenza\r\nMenzelová\r\nMenzel\r\nMenzelův\r\nMenzová\r\nMenzův\r\nmeotar\r\nměr\r\nMerboltice\r\nmerboltický\r\nMercedes\r\nmercedes\r\nmercedeska\r\nmercerační\r\nmercerování\r\nmerenda\r\nmeridián\r\nmerinka\r\nmerino\r\nmerinový\r\nmeristém\r\nmeristémový\r\nmeritorní\r\nmerkantilismus\r\nmerkantilista\r\nmerkantilistčin\r\nmerkantilistický\r\nmerkantilistka\r\nmerkantilistův\r\nmerkaptan\r\nměrka\r\nMerklín\r\nmerklínský\r\nMerklovice\r\nmerklovický\r\nMerkur\r\nMerkurův\r\nmerlík\r\nmerlíkovitý\r\nmermo\r\nmermomocí\r\nměrný\r\nmeromorfismus\r\nmeromorfní\r\nMěrotín\r\nměrotínský\r\nměrou\r\nměrovější\r\nMěrovice\r\nměrovický\r\nměrový\r\nMerta\r\nMerthová\r\nMerth\r\nMerthův\r\nMertlíková\r\nMertlík\r\nMertlíkův\r\nMertlová\r\nMertl\r\nMertlův\r\nMertová\r\nMertův\r\nmeruna\r\nMerunka\r\nmeruňka\r\nMerunková\r\nmeruňkovice\r\nmeruňkový\r\nMerunkův\r\nmeruzalka\r\nmeruzalkový\r\nMervartová\r\nMervart\r\nMervartův\r\nměřenější\r\nměření\r\nměřený\r\nměřice\r\nměřicí\r\nměřící\r\nměřický\r\nměřiččin\r\nměřička\r\nměřičský\r\nměřičství\r\nměřič\r\nměřičův\r\nměřidlo\r\nMěřín\r\nměřínský\r\nměřit\r\nměřitelnější\r\nměřitelný\r\nměřítko\r\nměřítkový\r\nmesaliance\r\nmesianismus\r\nmesianističtější\r\nmesiánský\r\nmesiášský\r\nmesiášství\r\nmesiáštví\r\nmesiáš\r\nmesiášův\r\nměsíc\r\nměsíček\r\nměsíčkový\r\nměsíčník\r\nměsíčníkový\r\nměsíční\r\nměsíčný\r\nměsidlo\r\nmesmerismus\r\nmesmeristický\r\nMessmerová\r\nMessmer\r\nMessmerův\r\nměsťácký\r\nmést\r\nměstčin\r\nměstecký\r\nMěstec\r\nměstečko\r\nměstek\r\nmestický\r\nmestic\r\nmesticův\r\nměstka\r\nměstnání\r\nměstnaný\r\nměstnat\r\nměsto\r\nměstský\r\nměstštější\r\nměstys\r\nměšec\r\nMešejdová\r\nMešejd\r\nMešejdův\r\nMěšice\r\nměšický\r\nMěšín\r\nměšínský\r\nmešita\r\nmeškající\r\nmeškání\r\nmeškat\r\nmeškávání\r\nmeškávat\r\nMěškův\r\nmešní\r\nMešno\r\nměšťácký\r\nměšťáctví\r\nměšťáctvo\r\nměšťaččin\r\nměšťáček\r\nměšťačka\r\nměšťáčkův\r\nměšťáčtější\r\nměšťák\r\nměšťákův\r\nměšťančin\r\nměšťanka\r\nMěšťanová\r\nměšťan\r\nMěšťan\r\nměšťanský\r\nměšťanství\r\nměšťanstvo\r\nměšťanštější\r\nMěšťanův\r\nměšťanův\r\nměštčin\r\nměšťčin\r\nměštka\r\nměšťka\r\nMET\r\nmetaantimoničnan\r\nmetaarsenitan\r\nmetabelovský\r\nmetabolický\r\nmetaboličtější\r\nmetabolismus\r\nmetabolisovat\r\nmetabolit\r\nmetabolizovat\r\nmetabolizující\r\nmetaboritan\r\nmetací\r\nmetacyklický\r\nmetacykličtější\r\nmetadata\r\nmetadon\r\nmetadonový\r\nmetafora\r\nmetaforický\r\nmetaforičtější\r\nmetaforika\r\nmetafosforečnan\r\nmetafosforitan\r\nmetafysický\r\nmetafysika\r\nmetafyzický\r\nmetafyzično\r\nmetafyzičtější\r\nmetafyzika\r\nmetafyzik\r\nmetafyzikův\r\nmetahlinitan\r\nmetainformační\r\nmetajazyk\r\nmetajazykový\r\nmetající\r\nmetakritika\r\nmetakřemičitan\r\nmetakřemičitanový\r\nmetakvarcit\r\nmetakvarcitový\r\nmetál\r\nmetalický\r\nMetalimex\r\nmetalingvistický\r\nmetalista\r\nmetalistčin\r\nmetalistka\r\nmetalistův\r\nmetalíza\r\nmetalizovaný\r\nmetalografický\r\nmetalografie\r\nmetalotermický\r\nmetalotermie\r\nmetalový\r\nmetalurgický\r\nmetalurgičtější\r\nmetalurgie\r\nmetalurg\r\nmetalurgův\r\nmetamatematika\r\nmetamorfování\r\nmetamorfovaný\r\nmetamorfovat\r\nmetamorfóza\r\nmetan\r\nmetání\r\nmetanol\r\nmetaný\r\nmetaolovičitan\r\nmetapolitika\r\nmetařčin\r\nmetařka\r\nmetař\r\nmetařův\r\nmetasomatóza\r\nmetastabilita\r\nmetastabilní\r\nmetastáza\r\nmetastázující\r\nmetastruktura\r\nmetasymbol\r\nmetasyntaktický\r\nmetasyntaktičtější\r\nmetasystý\r\nmetateorie\r\nmetateze\r\nmetat\r\nmetavanadičnan\r\nmetávání\r\nmetávaný\r\nmetávat\r\nmetavinná\r\nmetazirkoničitan\r\nmetaznak\r\nmeta\r\nmetelice\r\nMetelka\r\nmetelka\r\nMetelková\r\nMetelkův\r\nmetení\r\nmetený\r\nmeteor\r\nmeteorický\r\nmeteorismus\r\nmeteorit\r\nmeteoritický\r\nmeteoroid\r\nmeteorologický\r\nmeteorologie\r\nmeteorolog\r\nmeteorologův\r\nmeteoroložčin\r\nmeteoroložka\r\nmeteosituace\r\nmetér\r\nmethamphetamin\r\nmethan\r\nmethanol\r\nmethionin\r\nmethotrexát\r\nmethylalkohol\r\nmethylbromid\r\nmethylcelulóza\r\nmethylen\r\nmethylester\r\nmethyl\r\nmethylový\r\nmethylparahydroxybenzoát\r\nmethylrtuť\r\nmethylvioleť\r\nmetla\r\nmetlice\r\nMetlička\r\nmetlička\r\nMetličková\r\nmetličkovější\r\nmetličkovitější\r\nmetličkovitý\r\nmetličkový\r\nMetličkův\r\nmetlovitější\r\nmetlovitý\r\nmetný\r\nmetoda\r\nMetoděj\r\nMetodějův\r\nmetodický\r\nmetodiččin\r\nmetodička\r\nmetodičtější\r\nmetodika\r\nmetodik\r\nmetodikův\r\nmetodista\r\nmetodistčin\r\nmetodistický\r\nmetodistka\r\nmetodistův\r\nmetodologický\r\nmetodologičtější\r\nmetodologie\r\nmetodolog\r\nmetodologův\r\nmetodoložčin\r\nmetodoložka\r\nmetonický\r\nmetonymický\r\nmetonymičtější\r\nmetonymie\r\nmetrák\r\nmetrákový\r\nmetráž\r\nmetr\r\nmetrický\r\nmetrika\r\nmetritida\r\nmetrizace\r\nmetrizační\r\nmetrizovatelný\r\nmetrologický\r\nmetrologičtější\r\nmetrologie\r\nmetrolog\r\nmetrologův\r\nmetroložčin\r\nmetroložka\r\nmetro\r\nmetronom\r\nmetropole\r\nmetropolita\r\nmetropolitní\r\nmetropolitův\r\nmetrový\r\nmetrum\r\nmetternichovský\r\nMetternich\r\nMetternichův\r\nMetuje\r\nMetuzalém\r\nmetylalkohol\r\nmetylénový\r\nmetylester\r\nmetylesterřepkový\r\nmetylfurfural\r\nmetyloktalakton\r\nMetylovice\r\nmetylovický\r\nmetylový\r\nmetylrtuť\r\nMěÚ\r\nMevaldová\r\nMevald\r\nMevaldův\r\nmexický\r\nMexičančin\r\nMexičanka\r\nMexičan\r\nMexičanův\r\nmexičtější\r\nMexiko\r\nmezaliance\r\nmezanin\r\nmezanino\r\nmezd\r\nmezek\r\nmezenský\r\nMezera\r\nmezera\r\nmezernice\r\nmezerník\r\nmezerní\r\nmezerování\r\nmezerovaný\r\nmezerovat\r\nMezerová\r\nmezerovitější\r\nmezerovitý\r\nmezerový\r\nMezerův\r\nmezi\r\nmeziaktí\r\nmeziamerický\r\nmeziameričtější\r\nmeziarší\r\nmeziatomový\r\nmezibankovní\r\nmeziblokový\r\nMezibor\r\nmezičas\r\nmezičlánek\r\nmezičlen\r\nmezidendritický\r\nmezidendritičtější\r\nmezidobí\r\nmezidruhový\r\nmezifáze\r\nmezifázový\r\nmezifrekvence\r\nmezifrekvenční\r\nmezigalaktický\r\nmezigalaktičtější\r\nmezigenerační\r\nmezihodnota\r\nMezihoří\r\nmezihoří\r\nmezihostitel\r\nmezihostitelův\r\nmezihra\r\nmezihrudí\r\nmezihvězdný\r\nmezích\r\nmezichod\r\nmeziklubový\r\nmezikmenový\r\nmeziknihovní\r\nmezikód\r\nmezikontinentální\r\nmezikrok\r\nmezikruží\r\nmezikrystalický\r\nmezikrystaličtější\r\nmezikrystalový\r\nmezikulisí\r\nmezikulturní\r\nmeziledový\r\nmezilehlý\r\nmezilidský\r\nmeziměstí\r\nmeziměstský\r\nmeziministerský\r\nmezimodulární\r\nmezimodulový\r\nmezimolekulární\r\nmezimozek\r\nmezináboženský\r\nmezinápravový\r\nmezinárodnější\r\nmezinárodněpolitický\r\nmezinárodněprávní\r\nmezinárodní\r\nMezina\r\nmezin\r\nmezioblast\r\nmezioborový\r\nmeziobratlový\r\nmeziodborový\r\nmeziodvětvový\r\nmeziokenní\r\nmezioperační\r\nmezipalubí\r\nmeziparlamentní\r\nmezipásmový\r\nmezipatro\r\nmeziplanetární\r\nmeziplodina\r\nmeziplocha\r\nmezipodnikový\r\nmeziprocesorový\r\nmeziprodukt\r\nmeziprogramový\r\nmeziprostor\r\nmezipředmětový\r\nmezipřistání\r\nmezirasový\r\nmeziregionální\r\nmeziresortní\r\nmezirezortní\r\nmezírka\r\nmeziroční\r\nmezirodový\r\nmeziřádkový\r\nMeziříčí\r\nmeziříčí\r\nMeziříčko\r\nMeziříčsko\r\nmeziříčský\r\nmeziřídící\r\nmezisektorový\r\nmezisíňový\r\nmezisíťový\r\nmezisklad\r\nmeziskládka\r\nmezisklizňový\r\nmeziskupinový\r\nmezislabičný\r\nmezislovní\r\nmezisoučet\r\nmezispotřeba\r\nmezistanice\r\nmezistátní\r\nmezistav\r\nmezistěna\r\nmezistupeň\r\nmezisušení\r\nmezisvalový\r\nmezisváteční\r\nmezisvazový\r\nmezitím\r\nmezitímco\r\nmeziúrovňový\r\nmeziválečný\r\nmezivětný\r\nmezivláda\r\nmezivládí\r\nmezivládní\r\nmezivodí\r\nmezivolební\r\nmezivrstva\r\nmezivrství\r\nmezivrší\r\nmezivýsledek\r\nmezivýsledný\r\nmezizasílatelčin\r\nmezizasílatelka\r\nmezizasílatel\r\nmezizasílatelův\r\nmezizubní\r\nmezižeberní\r\nmezkař\r\nmezkařův\r\nmezkův\r\nMézlová\r\nMézl\r\nMézlův\r\nMezná\r\nmezník\r\nmezníkový\r\nmezní\r\nMezno\r\nmezný\r\nmezoklima\r\nmezolit\r\nmezonetový\r\nmezon\r\nmezopický\r\nMezopotámie\r\nmezopotámský\r\nmezopotámský\r\nmezotrofní\r\nmez\r\nmezzo\r\nmezzoforte\r\nmezzopiano\r\nmezzosoprán\r\nmezzosopranistčin\r\nmezzosopránistčin\r\nmezzosopranistka\r\nmezzosopránistka\r\nmezzosopránový\r\nmf\r\nMFF\r\nmg\r\nMgr\r\nMHD\r\nmhourání\r\nmhourat\r\nmhouření\r\nmhouřený\r\nmhouřit\r\nMHz\r\nmi\r\nmí\r\nmicčin\r\nMicka\r\nmicka\r\nMicrosoft\r\nMíček\r\nmíček\r\nMičianová\r\nMičian\r\nMičianův\r\nMička\r\nMičková\r\nMíčková\r\nMičkův\r\nMíčkův\r\nMičová\r\nMíčov\r\nmíčovna\r\nmíčovský\r\nmíčový\r\nmíč\r\nmičuda\r\nmičurinštější\r\nMič\r\nMičův\r\nmiddleware\r\nmiddlewarový\r\nmidi\r\nmidianský\r\nmifepriston\r\nmigmatit\r\nmigmatitový\r\nmigrace\r\nmigrační\r\nmigrant\r\nmigrantův\r\nmigréna\r\nmigrování\r\nmigrovaný\r\nmigrovat\r\nmigrující\r\nmihající\r\nmíhající\r\nMihalčíková\r\nMihalčík\r\nMihalčíkův\r\nMiháliková\r\nMihálik\r\nMihálikův\r\nMihalová\r\nMihal\r\nMihalův\r\nmíhání\r\nmíhat\r\nmíhavý\r\nmihnout\r\nmihnutí\r\nmihnutý\r\nmihotající\r\nmihotání\r\nmihotat\r\nmihotávání\r\nmihotávat\r\nmihotavější\r\nmihotavý\r\nmíhotavý\r\nMihucová\r\nMihuc\r\nMihucův\r\nmihule\r\nmihulka\r\nmíchací\r\nmíchačka\r\nmíchač\r\nmíchačův\r\nmíchadlo\r\nMichaela\r\nMichaelin\r\nMichailidisová\r\nMichailidis\r\nMichailidisův\r\nmíchající\r\nMichalcová\r\nMichalcův\r\nMichalčin\r\nMichalec\r\nMichalek\r\nMichálek\r\nMichaleová\r\nMichale\r\nMichaleův\r\nMichalička\r\nMichaličková\r\nMichaličkův\r\nMichalíková\r\nMichalík\r\nMichalíkův\r\nMichalka\r\nMichalková\r\nMichálková\r\nMichalkův\r\nMichálkův\r\nMichalová\r\nMíchalová\r\nMichalovice\r\nmichalovický\r\nMichalovičová\r\nMichalovič\r\nMichalovičův\r\nMichal\r\nMíchal\r\nMichalův\r\nMíchalův\r\nmíchanice\r\nmíchanina\r\nmíchání\r\nmíchaný\r\nmíchat\r\nmíchávání\r\nmíchávaný\r\nmíchávat\r\nmícha\r\nMichek\r\nMichelangelo\r\nMichelangelův\r\nmichelský\r\nmichiganský\r\nMichková\r\nMichkův\r\nMichle\r\nMichlová\r\nMichl\r\nMichlův\r\nMichna\r\nMichnová\r\nMichnův\r\nMíchov\r\nmíchovský\r\nmíjející\r\nmíjenější\r\nmíjení\r\nmíjený\r\nmíjet\r\nmíjivý\r\nmikádo\r\nMika\r\nMíka\r\nMikešová\r\nMikeš\r\nMikešův\r\nmikina\r\nMiklica\r\nMiklicová\r\nMiklic\r\nMiklicův\r\nMiklová\r\nMiklovice\r\nmiklovický\r\nMikl\r\nMiklův\r\nmikobiální\r\nMikolajová\r\nMikolaj\r\nMikolajův\r\nMikolanda\r\nMikolandová\r\nMikolandův\r\nMikolášek\r\nMikolášková\r\nMikoláškův\r\nMikolášová\r\nMikoláš\r\nMikolášův\r\nMikota\r\nMikotová\r\nMikotův\r\nMiková\r\nMíková\r\nMikovcová\r\nMikovcův\r\nMikovec\r\nmikroabraze\r\nmikroampér\r\nmikroanalýza\r\nmikroaplikátor\r\nmikrob\r\nmikrobiální\r\nmikrobiální\r\nmikrobiologický\r\nmikrobiologičtější\r\nmikrobiologie\r\nmikrobiolog\r\nmikrobiologův\r\nmikrobiolologický\r\nmikrobiolologie\r\nmikrobiololog\r\nmikrobiolologův\r\nmikrobiololožčin\r\nmikrobiololožka\r\nmikrobioložčin\r\nmikrobioložka\r\nmikrobus\r\nmikrobův\r\nmikrocensus\r\nmikročástice\r\nmikročerpadlo\r\nmikročip\r\nmikročlánek\r\nmikrodeformace\r\nmikrodokument\r\nmikrodrážka\r\nmikrodrážkový\r\nmikroekonomický\r\nmikroekonomie\r\nmikroekonomika\r\nmikroelektronický\r\nmikroelektroničtější\r\nmikroelektronika\r\nmikrofarad\r\nmikrofilament\r\nmikrofilm\r\nmikrofiltrace\r\nmikrofiltr\r\nmikrofiš\r\nmikroflóra\r\nmikrofon\r\nmikrofón\r\nmikrofonový\r\nmikrofosilie\r\nmikrofotografie\r\nmikrogeometrie\r\nmikrografický\r\nmikrografičtější\r\nmikrografie\r\nmikrogram\r\nmikrochemický\r\nmikrochirurgický\r\nmikroinjekce\r\nmikroinstrukce\r\nmikrokanálový\r\nmikrokernel\r\nmikroklima\r\nmikroklimatický\r\nmikroklimatičtější\r\nmikrokód\r\nmikrokosmický\r\nmikrokosmos\r\nmikrokrvácení\r\nmikrokrystalický\r\nmikrolaboratoř\r\nmikrolegovaný\r\nmikrolit\r\nmikrolitografie\r\nmikromechanický\r\nmikromechanismus\r\nmikrometeorit\r\nmikrometr\r\nmikrometrový\r\nmikromodul\r\nMikronésie\r\nmikronéský\r\nmikron\r\nmikronový\r\nmikroobvod\r\nmikrookolí\r\nmikrooperace\r\nmikroorganismus\r\nmikropenis\r\nmikropočítačový\r\nmikropočítač\r\nmikropovídka\r\nmikroprocesor\r\nmikroprocesorový\r\nmikroprogram\r\nmikroprogramování\r\nmikroprogramovaný\r\nmikroprogramovat\r\nmikroprogramovatelný\r\nmikroprogramovávání\r\nmikroprogramovávaný\r\nmikroprogramovávat\r\nmikroprogramový\r\nmikroprojekt\r\nmikroprostředí\r\nmikroprvek\r\nmikropřepínač\r\nmikropuchýř\r\nmikrorajón\r\nmikroregion\r\nmikroreliéf\r\nmikrořadič\r\nmikrořasa\r\nmikrosekunda\r\nmikrosekundový\r\nmikrosféra\r\nmikroskop\r\nmikroskopický\r\nmikroskopičtější\r\nmikroskopie\r\nmikroskopování\r\nmikroskopovaný\r\nmikroskopovat\r\nmikroskopový\r\nmikrosonda\r\nmikrospánek\r\nmikrospínač\r\nmikrostruktura\r\nmikrosvět\r\nmikrosystém\r\nmikroštěrbina\r\nmikroštítek\r\nmikrotečka\r\nmikrotelefon\r\nmikroten\r\nmikroténový\r\nmikrotenový\r\nmikrotextový\r\nmikrotom\r\nmikroton\r\nmikrotrhlina\r\nmikrotužkový\r\nmikroúroveň\r\nmikrovlna\r\nmikrovlnný\r\nmikrovolt\r\nmikrovýživné\r\nmikrozkumavka\r\nMikša\r\nMikšová\r\nMikšovský\r\nMikš\r\nMikšův\r\nMikulandský\r\nMikula\r\nMikulášek\r\nMikulášková\r\nMikuláškův\r\nMikulášová\r\nMikulášovice\r\nmikulášovický\r\nmikulášský\r\nMikuláš\r\nMikulášův\r\nMikulcová\r\nMikulcův\r\nMikulčáková\r\nMikulčák\r\nMikulčákův\r\nMikulčice\r\nmikulčický\r\nMikulecký\r\nMikulec\r\nMikuleová\r\nMikule\r\nMikuleův\r\nMikulka\r\nMikulková\r\nMikulkův\r\nMikulová\r\nMikulovice\r\nmikulovický\r\nMikulov\r\nMikulovsko\r\nmikulovský\r\nMikul\r\nMikulůvka\r\nMikulův\r\nMikův\r\nMíkův\r\nMikyska\r\nMikysková\r\nMikyskův\r\nmil\r\nmiláček\r\nmiláčkův\r\nMilada\r\nMiládčin\r\nMiladin\r\nMiládka\r\nmilánek\r\nmilánkův\r\nMiláno\r\nMilan\r\nmilánský\r\nMilanův\r\nMíla\r\nmílařčin\r\nmílařka\r\nmílařský\r\nmílař\r\nmílařův\r\nMilasín\r\nmilasínský\r\nmilavečský\r\nMíla\r\nMilberk\r\nMilčan\r\nMilčanův\r\nMilčice\r\nmilčický\r\nMilčínský\r\nMildorfová\r\nMildorf\r\nMildorfův\r\nMileč\r\nmilejší\r\nMilena\r\nmilencův\r\nMilenčin\r\nmilenčin\r\nmilenecký\r\nmilenec\r\nmilenečtější\r\nmilenější\r\nMilenin\r\nmiléniový\r\nmilénium\r\nmilénium\r\nMilenka\r\nmilenka\r\nMilenov\r\nmilenovský\r\nmilený\r\nmilerád\r\nmilerád\r\nMilešín\r\nmilešínský\r\nMilešovka\r\nMilešov\r\nmilešovský\r\nmiléťan\r\nmiléťanův\r\nMiletín\r\nmiletínský\r\nMilevsko\r\nmíle\r\nMilhostov\r\nmilhostovský\r\nmiliampér\r\nmiliardářčin\r\nmiliardářka\r\nmiliardář\r\nmiliardářův\r\nmiliarda\r\nmiliardkrát\r\nmiliardový\r\nmiliardtina\r\nmiliardtý\r\nmilibar\r\nmilice\r\nmilicionářčin\r\nmilicionářka\r\nmilicionářský\r\nmilicionář\r\nmilicionářův\r\nMiličín\r\nmiličínský\r\nmilička\r\nmiliční\r\nMilíčov\r\nmilíčovský\r\nmilieu\r\nmiligram\r\nmiligramový\r\nMilíkov\r\nmilíkovský\r\nmililitr\r\nmilimagnituda\r\nmilimetr\r\nmilimetrový\r\nMilín\r\nMilínov\r\nmilínovský\r\nmilínský\r\nMílin\r\nmilionářčin\r\nmilionářka\r\nmilionářský\r\nmilionář\r\nmilionářův\r\nmilion\r\nmilión\r\nmilionkrát\r\nmiliónkrát\r\nmilionový\r\nmiliónový\r\nmiliontina\r\nmilióntina\r\nmiliontý\r\nmilióntý\r\nmiliradián\r\nmilíř\r\nmilisekunda\r\nmilitantnější\r\nmilitantní\r\nmilitarismus\r\nmilitarista\r\nmilitaristčin\r\nmilitaristický\r\nmilitarističtější\r\nmilitaristka\r\nmilitaristův\r\nmilitarizace\r\nmilitarizační\r\nmilitarizovaný\r\nmilitarizovat\r\nMilitký\r\nmilivolt\r\nmilka\r\nmilkování\r\nMilkov\r\nmilkovský\r\nMillerová\r\nMiller\r\nMillerův\r\nmilník\r\nmilodar\r\nMiloslava\r\nMiloslavin\r\nMiloslav\r\nMiloslavův\r\nmilosrdenství\r\nmilosrdnější\r\nmilosrdný\r\nMilostín\r\nmilostínský\r\nmilostiplnější\r\nmilostiplný\r\nmilostivější\r\nmilostiv\r\nmilostivý\r\nmilostnější\r\nmilostnice\r\nmilostný\r\nmilostpaní\r\nmilostpán\r\nmilostpánův\r\nMilošek\r\nMiloškův\r\nMiloš\r\nMilošův\r\nMilota\r\nMilotice\r\nmilotický\r\nMilotová\r\nMilotův\r\nmiloučký\r\nmilounký\r\nmilovanější\r\nmilování\r\nmilovaný\r\nmilovat\r\nmilovávání\r\nmilovávaný\r\nmilovávat\r\nMilovice\r\nmilovický\r\nmilovnice\r\nmilovnický\r\nmilovničin\r\nmilovník\r\nmilovníkův\r\nmilovný\r\nmílový\r\nmilující\r\nMiluščin\r\nMiluše\r\nMilušin\r\nMiluška\r\nMílův\r\nmilý\r\nmimeograf\r\nmimetický\r\nmimetismus\r\nmimetizace\r\nmimický\r\nmimičtější\r\nmimika\r\nmimikry\r\nmiminko\r\nmimino\r\nmimo\r\nmimobankovní\r\nmimoběžka\r\nmimoběžný\r\nmimoburzovní\r\nmimocenový\r\nmimočasový\r\nmimočítankový\r\nmimoděk\r\nmimoděložní\r\nmimoekologický\r\nmimoekonomický\r\nmimoekonomičtější\r\nmimoetický\r\nmimoevropský\r\nmimoevropštější\r\nmimofakultní\r\nmimogenomový\r\nmimochodem\r\nmimochod\r\nmimointelektový\r\nmimojazykový\r\nmimojdoucí\r\nmimolesní\r\nmimoliturgický\r\nmimomanželský\r\nmimoňský\r\nMimoň\r\nmimookresní\r\nmimoparlamentní\r\nmimopodnikový\r\nmimopracovní\r\nmimopražský\r\nmimoprodukční\r\nmimoprofesnější\r\nmimopstruhový\r\nmimoresortní\r\nmimorozpočtový\r\nmimorozumový\r\nmimořádnější\r\nmimořádný\r\nmimosklizňový\r\nmimoslovní\r\nmimosoudní\r\nmimostrojní\r\nmimostudijní\r\nmimosystémový\r\nmimoškolní\r\nmimošpičkový\r\nmimotělesný\r\nmimotělní\r\nmimotextový\r\nmimoto\r\nmimotonální\r\nmimotržní\r\nmimoúčetní\r\nmimouniverzitní\r\nmimoúrovňový\r\nmimoústavní\r\nmimovolnější\r\nmimovolní\r\nmimovolný\r\nmimóza\r\nmimozemský\r\nmimozemšťan\r\nmimozemšťanův\r\nmimožánrový\r\nmim\r\nmimus\r\nmimův\r\nmin\r\nMinarčíková\r\nMinarčík\r\nMinarčíkův\r\nminaret\r\nMinaříková\r\nMinařík\r\nMinaříkův\r\nMinářová\r\nMinář\r\nMinářův\r\nmina\r\nmináž\r\nmince\r\nmincíř\r\nmincmistr\r\nmincmistrův\r\nmincovna\r\nmincovnictví\r\nmincovní\r\nmincový\r\nMinčin\r\nmindrák\r\nmínění\r\nmíněný\r\nminerál\r\nminerálie\r\nmineralizace\r\nmineralizovaný\r\nminerálka\r\nminerální\r\nmineralogický\r\nmineralogičtější\r\nmineralogie\r\nmineralog\r\nmineralogův\r\nmineraložčin\r\nmineraložka\r\nMinerva\r\nMinervin\r\nminervista\r\nminervistčin\r\nminervistka\r\nminervistův\r\nminesengr\r\nminesengrův\r\nmineta\r\nminetový\r\nmini\r\nminialbum\r\nminiatura\r\nminiaturista\r\nminiaturistčin\r\nminiaturistka\r\nminiaturistův\r\nminiaturizace\r\nminiaturizovaný\r\nminiaturka\r\nminiaturnější\r\nminiaturní\r\nminiautomobil\r\nminibanka\r\nminibar\r\nminibus\r\nminidisk\r\nminidůchod\r\nminigolf\r\nminigolfista\r\nminigolfistčin\r\nminigolfistka\r\nminigolfistův\r\nminigolfový\r\nminihokej\r\nminiinterrupce\r\nminijatka\r\nminijeviště\r\nminikalkulačka\r\nminikamera\r\nminikatecheze\r\nminikuchyňka\r\nminilab\r\nminimalismus\r\nminimalista\r\nminimalistčin\r\nminimalistický\r\nminimalističtější\r\nminimalistka\r\nminimalistův\r\nminimalizace\r\nminimalizační\r\nminimalizování\r\nminimalizovaný\r\nminimalizovat\r\nminimalizující\r\nminimálnější\r\nminimální\r\nminimax\r\nminimum\r\nminiový\r\nminiplenka\r\nminipočítačka\r\nminipočítačový\r\nminipočítač\r\nminiponorka\r\nminipublikace\r\nminirozměr\r\nminiseriál\r\nminisídliště\r\nminisoudek\r\nministerský\r\nministerstvo\r\nministrantčin\r\nministrantka\r\nministrant\r\nministrantský\r\nministrantův\r\nministrování\r\nministrovat\r\nministr\r\nministrův\r\nministryně\r\nministrynin\r\nminisukně\r\nmínit\r\nminium\r\nmínívat\r\nminivěž\r\nMinka\r\nMinkowský\r\nminohledačka\r\nminolovka\r\nminomet\r\nminometník\r\nminometný\r\nmiňonka\r\nminonoska\r\nminor\r\nminorita\r\nminoritnější\r\nminoritní\r\nminoritský\r\nminout\r\nminování\r\nMiňovský\r\nminový\r\nMinsk\r\nminský\r\nminuciéznější\r\nminuciézní\r\nminucióznější\r\nminuciózní\r\nminulý\r\nminus\r\nmínus\r\nmínuska\r\nminuskule\r\nminusový\r\nminuta\r\nminutější\r\nminutelnější\r\nminutelný\r\nminutí\r\nminutka\r\nminutkový\r\nminutový\r\nminutý\r\nminutý\r\nmionový\r\nMiquelon\r\nmirabelka\r\nmíra\r\nMirčin\r\nMireček\r\nMirečkův\r\nMirek\r\nmír\r\nmiriáda\r\nMiriam\r\nMiriamin\r\nMirka\r\nmírka\r\nMirkův\r\nmírnější\r\nmírnění\r\nmírněný\r\nmírnící\r\nmírnit\r\nmírný\r\nMiroslava\r\nMiroslavin\r\nMiroslav\r\nMiroslav\r\nmiroslavský\r\nMiroslavův\r\nMirošovice\r\nmirošovický\r\nMirošov\r\nmirošovský\r\nMirotice\r\nmirotický\r\nMírová\r\nmírovější\r\nMirovice\r\nmirovický\r\nMírov\r\nmírovský\r\nmírový\r\nmírumilovnější\r\nmírumilovný\r\nmíruplný\r\nMiřátský\r\nMiřejovice\r\nmiřejovický\r\nMiřejovský\r\nmíření\r\nmířený\r\nMiřetice\r\nmiřetický\r\nmířící\r\nmířič\r\nmířičův\r\nmířidlo\r\nmiříkovitý\r\nmířit\r\nMířkov\r\nmířkovský\r\nmis\r\nmisálek\r\nmisál\r\nmisantropičtější\r\nmisantrop\r\nmisantropův\r\nMísařová\r\nMísař\r\nMísařův\r\nmísa\r\nmísečka\r\nMísečky\r\nmísení\r\nmiserere\r\nmise\r\nmísicí\r\nmísící\r\nmísička\r\nmísič\r\nmisie\r\nmisijní\r\nmisionářčin\r\nmisionářka\r\nmisionářský\r\nmisionář\r\nmisionářův\r\nmísit\r\nmísitelnější\r\nmísitelný\r\nmiska\r\nMiskovice\r\nmiskovitý\r\nmiskový\r\nmísovitý\r\nMississippi\r\nmississippský\r\nMissouri\r\nmissourský\r\nmístečko\r\nMístek\r\nmistela\r\nmístenka\r\nmístenkový\r\nmistička\r\nmístnější\r\nmístní\r\nmístnůstka\r\nmistodržící\r\nmístodržící\r\nmístodržitelčin\r\nmístodržitelka\r\nmístodržitelský\r\nmístodržitelství\r\nmístodržitel\r\nmístodržitelův\r\nmístokancléř\r\nmístokancléřův\r\nmístokrál\r\nmístokrálův\r\nmísto\r\nmístopis\r\nmístopisně\r\nmístopisný\r\nmístopředseda\r\nmístopředsedčin\r\nmístopředsedka\r\nmístopředsedkyně\r\nmístopředsedkynin\r\nmístopředsednický\r\nmístopředsednictví\r\nmístopředsedův\r\nmístopřísežný\r\nmístostarosta\r\nmístostarostův\r\nmistral\r\nmistrál\r\nmistrnější\r\nmistrný\r\nmistrování\r\nmistrovaný\r\nmistrovat\r\nmistrová\r\nmistrovský\r\nmistrovství\r\nmistrovštější\r\nmistr\r\nmistrův\r\nmistryně\r\nMistřice\r\nmistřický\r\nMistřín\r\nmistřínský\r\nMíša\r\nmíša\r\nMíša\r\nMíšek\r\nmíšek\r\nmíšencův\r\nmíšenčin\r\nmíšenec\r\nmíšení\r\nmíšenka\r\nmíšeňský\r\nmíšenský\r\nmíšeňský\r\nmíšený\r\nMíšeň\r\nMišíková\r\nMišík\r\nMišíkův\r\nMíšin\r\nMíšková\r\nMiškovský\r\nMíškův\r\nmišmaš\r\nmíšní\r\nMíšov\r\nmíšovský\r\nmišpule\r\nMíšův\r\nmíšův\r\nmithraistický\r\nmít\r\nmítink\r\nmítinkový\r\nmitochondriální\r\nmitochondrie\r\nMitošniková\r\nMitošnik\r\nMitošnikův\r\nmitotický\r\nmitóza\r\nmitra\r\nMitrovice\r\nmitrovický\r\nMitrovský\r\nmitterrandismus\r\nmívající\r\nmívání\r\nmívaný\r\nmívat\r\nMixa\r\nmixáž\r\nmixer\r\nmixér\r\nmix\r\nmixování\r\nmixovaný\r\nmixovat\r\nMixová\r\nmixující\r\nMixův\r\nmizantrop\r\nmíza\r\nmízdřicí\r\nmizející\r\nmizejí\r\nmizení\r\nMizera\r\nmizera\r\nmizérie\r\nmizernější\r\nmizerný\r\nMizerová\r\nMizerův\r\nmizerův\r\nmizet\r\nmizící\r\nmizina\r\nmizivější\r\nmizivý\r\nmízní\r\nmj\r\nmjr\r\nMK\r\nMKS\r\nml\r\nmlácení\r\nmlácený\r\nmlada\r\nmláďátko\r\nMlada\r\nMladecko\r\nmlaději\r\nMladějov\r\nmladějovský\r\nmládě\r\nmládek\r\nMládek\r\nmládencův\r\nmládenecký\r\nmládenec\r\nmládeneček\r\nmládenečkův\r\nmládenečtější\r\nmládež\r\nmládeže\r\nmládeži\r\nmládeží\r\nmládežnice\r\nmládežnický\r\nmládežničin\r\nmládežničtější\r\nmládežník\r\nmládežníkův\r\nmládí\r\nmladice\r\nmladický\r\nmladíček\r\nmladička\r\nmladíčkův\r\nmladičký\r\nmladičtější\r\nmladík\r\nmladíkův\r\nmladina\r\nmladinký\r\nMladin\r\nmladistvější\r\nmladistvý\r\nMládková\r\nMladkov\r\nmladkovský\r\nMládkův\r\nmládkův\r\nmládnout\r\nmládnutí\r\nmlád\r\nMladoboleslavsko\r\nmladoboleslavský\r\nmladočech\r\nmladočechův\r\nmladočeský\r\nmladočešství\r\nmladogramatik\r\nmladogramatikův\r\nMladotice\r\nmladotický\r\nmlaďoučký\r\nmlaďounký\r\nmladší\r\nmladuška\r\nmladý\r\nmlaskající\r\nmlaskání\r\nmlaskat\r\nmlaskavější\r\nmlaskavý\r\nmlasknout\r\nmlasknutí\r\nmlaskot\r\nMlateček\r\nmlatečka\r\nMlatečková\r\nMlatečkův\r\nmlat\r\nmlátící\r\nmlátička\r\nmlátit\r\nmláto\r\nmlátovice\r\nmlází\r\nmlazina\r\nMlázovice\r\nmlázovický\r\nMlček\r\nmlčelivější\r\nmlčelivý\r\nmlčení\r\nmlčenlivější\r\nmlčenlivý\r\nmlčet\r\nmlčící\r\nmlčka\r\nMlčková\r\nMlčkovský\r\nMlčkův\r\nmlčky\r\nMlčochová\r\nMlčoch\r\nMlčochův\r\nmld\r\nmlecí\r\nMlečice\r\nmlečický\r\nmléčka\r\nmléčnan\r\nmléčnější\r\nmléčnice\r\nmléčný\r\nmleč\r\nmléč\r\nMlejnek\r\nMlejnková\r\nMlejnkův\r\nmlékárenský\r\nmlékárenství\r\nmlékárna\r\nmlékařčin\r\nmlékařka\r\nmlékařský\r\nmlékařství\r\nmlékař\r\nmlékařův\r\nmlékojem\r\nmlékoměr\r\nmléko\r\nmlékovitý\r\nmlékovod\r\nmlékový\r\nmlel\r\nmlení\r\nmletější\r\nmletí\r\nmlet\r\nmletý\r\nmletý\r\nmlezivo\r\nmlhavější\r\nmlhavý\r\nmlha\r\nmlhovina\r\nmlhovka\r\nmlhový\r\nmlíčí\r\nmlíčko\r\nmlíčňák\r\nmlít\r\nmlknout\r\nmlknutí\r\nmločí\r\nmlokovitý\r\nmlok\r\nmlokův\r\nmlsající\r\nmlsalčin\r\nmlsalka\r\nmlsání\r\nmlsaný\r\nmlsat\r\nmls\r\nmlska\r\nMlsna\r\nmlsnější\r\nMlsnová\r\nMlsnův\r\nmlsný\r\nmlsota\r\nmlsoun\r\nmlsounův\r\nmluva\r\nmluvčí\r\nmluvení\r\nmluvený\r\nmluvicí\r\nmluvící\r\nmluvidlo\r\nmluvit\r\nmluvítko\r\nmluvíváno\r\nmluvívat\r\nmluvka\r\nmluvkův\r\nmluvnější\r\nmluvnice\r\nmluvnický\r\nmluvničtější\r\nmluvní\r\nmluvný\r\nmlynářčin\r\nmlynářka\r\nMlynářová\r\nmlynářský\r\nmlynářství\r\nmlynář\r\nMlynář\r\nMlynářův\r\nmlynářův\r\nmlýnek\r\nmlýnice\r\nmlýn\r\nmlýnový\r\nmlýnský\r\nmlýnštější\r\nmlžení\r\nmlženka\r\nmlžený\r\nmlžící\r\nmlžinatější\r\nmlžit\r\nmlživější\r\nmlživý\r\nmlžnatější\r\nmlžný\r\nmlž\r\nmlžův\r\nmm\r\nMme\r\nMMF\r\nmmmm\r\nmmmmm\r\nMn\r\nmňam\r\nmňau\r\nmne\r\nmně\r\nmnemonický\r\nmnemonika\r\nmnemotechnický\r\nmnemotechnika\r\nMnichovice\r\nmnichovický\r\nMnichov\r\nmnichovohradišťsko\r\nmnichovohradišťský\r\nmnichovský\r\nmnichovský\r\nmnichový\r\nmnich\r\nmnichův\r\nmník\r\nmníkův\r\nMníšek\r\nmniší\r\nmniška\r\nmnišský\r\nmnišství\r\nmno\r\nmnohabarevný\r\nmnohabitový\r\nmnohabodový\r\nmnohabytový\r\nmnohacestný\r\nmnohaciferný\r\nmnohačlenný\r\nmnohadenní\r\nmnohadruhový\r\nmnohahektarový\r\nmnohahodinový\r\nmnohajazykový\r\nmnohakanálový\r\nmnohakilometrový\r\nmnohakolíkový\r\nmnohakusový\r\nmnohaletější\r\nmnohaletý\r\nmnohalitrový\r\nmnohalůžkový\r\nmnohaměsíční\r\nmnohametrový\r\nmnohamiliardový\r\nmnohamiliónový\r\nmnohamilionový\r\nmnohaminutový\r\nmnoha\r\nmnohanárodní\r\nmnohanásobný\r\nmnohaoborový\r\nmnohapatrový\r\nmnohaposchoďový\r\nmnohaprocesorový\r\nmnoharoční\r\nmnoharozměrný\r\nmnohařádkový\r\nmnohasethlavý\r\nmnohasetkorunový\r\nmnohasetmetrový\r\nmnohasetmilionový\r\nmnohasetmiliónový\r\nmnohasetstránkový\r\nmnohasettisícový\r\nmnohasettunový\r\nmnohastránkový\r\nmnohastupňový\r\nmnohatisícový\r\nmnohatunový\r\nmnohatýdenní\r\nmnohaúrovňový\r\nmnohavidový\r\nmnohavrstevný\r\nmnohavrstvový\r\nmnohavrstvý\r\nmnohavýznamový\r\nmnohažilový\r\nmnohde\r\nmnohdy\r\nmnohem\r\nmnohobarevný\r\nmnohobodový\r\nmnohobožství\r\nmnohobuněčný\r\nmnohočetný\r\nmnohočlen\r\nmnohočlenný\r\nmnohodimenzionální\r\nmnohofázový\r\nmnohohektarový\r\nmnohohlasný\r\nmnohohlasý\r\nmnohohlavý\r\nmnohojazyčný\r\nmnohokanálový\r\nmnohokrát\r\nmnohokráte\r\nmnohokvětý\r\nmnoholetý\r\nmnoholůžkový\r\nmnohomilionový\r\nmnohomluvný\r\nmnoho\r\nmnohonárodní\r\nmnohonárodnostní\r\nmnohonásobek\r\nmnohonásobný\r\nmnohonásobný\r\nmnohonožka\r\nmnohoobročnictví\r\nmnohoobročník\r\nmnohoobročníkův\r\nmnohopatrový\r\nmnohoplošník\r\nmnohopólový\r\nmnohorasový\r\nmnohorozměrný\r\nmnohořádkový\r\nmnohosektorový\r\nmnohoslibný\r\nmnohostěn\r\nmnohostránkový\r\nmnohostrannější\r\nmnohostranný\r\nmnohostupňový\r\nmnohosvazkový\r\nmnohosystémový\r\nmnohotisíckrát\r\nmnohotisíckráte\r\nmnohotisícový\r\nmnohotvárnější\r\nmnohotvárný\r\nmnohotvarý\r\nmnohotvářný\r\nmnohoúčelový\r\nmnohoučenost\r\nmnohoúhelník\r\nmnohoúhelníkový\r\nmnohoválcův\r\nmnohovrstevnatější\r\nmnohovrstevnatý\r\nmnohovrstevný\r\nmnohovrstvý\r\nmnohovýznamný\r\nmnohovýznamový\r\nmnohoznačnější\r\nmnohoznačný\r\nmnohoznačný\r\nmnohoženství\r\nmnohý\r\nmnohý\r\nmnohý\r\nmnou\r\nmnoucí\r\nmňoukající\r\nmňoukání\r\nmňoukat\r\nmňoukavý\r\nmňouknout\r\nmňouknutí\r\nmnout\r\nmnožárna\r\nmnožení\r\nmnožený\r\nmnožící\r\nmnožina\r\nmnožinový\r\nmnožit\r\nmnožitelský\r\nmnoživý\r\nmnožný\r\nmnožstevní\r\nmnožství\r\nmnucí\r\nmnutí\r\nmnutý\r\nMNV\r\nMO\r\nMo\r\nmoaré\r\nmobile\r\nmobil\r\nmobiliární\r\nmobiliář\r\nmobilita\r\nmobilizace\r\nmobilizační\r\nmobilizování\r\nmobilizovaný\r\nmobilizovat\r\nmobilizovatelnější\r\nmobilizovávat\r\nmobilizující\r\nmobilnější\r\nmobilní\r\nMocek\r\nmocen\r\nmocenskoadministrativní\r\nmocenskopolitický\r\nmocenskopolitičtější\r\nmocenský\r\nmocenství\r\nmocenštější\r\nmoci\r\nmocích\r\nmocichtivý\r\nmocím\r\nmocipán\r\nmocipána\r\nmocipane\r\nmocipánech\r\nmocipánem\r\nmocipáni\r\nmocipánové\r\nmocipánovi\r\nmocipán\r\nmocipánu\r\nmocipánů\r\nmocipánům\r\nmocipánův\r\nmocipány\r\nmoc\r\nMocková\r\nmockrát\r\nMockův\r\nmocnářství\r\nmocnář\r\nmocnářův\r\nmocnější\r\nmocněnec\r\nmocnění\r\nmocněný\r\nmocnina\r\nmocninný\r\nmocnit\r\nmocnitel\r\nmocný\r\nMocová\r\nMoc\r\nMocův\r\nmočál\r\nmočáliště\r\nmočálovější\r\nmočálovitý\r\nmočálový\r\nmočení\r\nmočený\r\nMočidlanský\r\nmočit\r\nmočopudnější\r\nmočopudný\r\nmočovina\r\nmočovod\r\nmočový\r\nmočůvka\r\nmočůvkový\r\nmoč\r\nmodalita\r\nmodálnější\r\nmodální\r\nmodamedánský\r\nmóda\r\nmodelace\r\nmodelační\r\nmodelárna\r\nmodelářčin\r\nmodelářka\r\nmodelářský\r\nmodelářství\r\nmodelář\r\nmodelářův\r\nmodelčin\r\nmodelérský\r\nmodel\r\nmodelína\r\nmodeling\r\nmodelka\r\nmodelní\r\nmodelovací\r\nmodelování\r\nmodelovaný\r\nmodelovat\r\nmodelovávání\r\nmodelovávaný\r\nmodelovávat\r\nmodelovější\r\nmodelový\r\nmodelující\r\nmodelův\r\nmodem\r\nmodemový\r\nmoderato\r\nmoderátorčin\r\nmoderátorka\r\nmoderátor\r\nmoderátorův\r\nmoderna\r\nmodernější\r\nmodernismus\r\nmodernista\r\nmodernistčin\r\nmodernistický\r\nmodernističtější\r\nmodernistka\r\nmodernistův\r\nmoderní\r\nmodernizace\r\nmodernizační\r\nmodernizátorčin\r\nmodernizátorka\r\nmodernizátor\r\nmodernizátorův\r\nmodernizovanější\r\nmodernizování\r\nmodernizovaný\r\nmodernizovat\r\nmodernizující\r\nmoderování\r\nmoderovaný\r\nmoderovat\r\nmoderský\r\nmoderující\r\nmód\r\nmodifikace\r\nmodifikační\r\nmodifikátor\r\nmodifikovanější\r\nmodifikování\r\nmodifikovaný\r\nmodifikovat\r\nmodifikovatelnější\r\nmodifikovatelný\r\nmodifikovávání\r\nmodifikovávaný\r\nmodifikovávat\r\nmodifikující\r\nmodista\r\nmodistčin\r\nmodistka\r\nmodistův\r\nmodiství\r\nmodlářský\r\nmodlářství\r\nmodlář\r\nmodlářův\r\nmodla\r\nmodlení\r\nmodlený\r\nModletice\r\nmodletický\r\nmodlicí\r\nmodlící\r\nModlíkov\r\nmodlíkovský\r\nmodlit\r\nmodlitba\r\nmodlitbička\r\nmodlitbičkový\r\nmodlitebna\r\nmodlitebník\r\nmodlitebníkův\r\nmodlitební\r\nmodlívat\r\nmodloslužba\r\nmodloslužebnější\r\nmódnější\r\nmódní\r\nmodní\r\nmodrající\r\nmodrák\r\nmodrání\r\nmodrásek\r\nmodráskův\r\nmodrat\r\nModrava\r\nmodravější\r\nmodravý\r\nModrá\r\nModrláková\r\nModrlák\r\nModrlákův\r\nmodrobílý\r\nmodročerný\r\nmodročervený\r\nmodrofialový\r\nmodro\r\nmodrooččin\r\nmodroočka\r\nmodrooký\r\nmodrosivý\r\nmodrošedý\r\nmodrotisk\r\nmodrotiskový\r\nmodroučký\r\nmodrozelenější\r\nmodrozelený\r\nmodrý\r\nmodřejší\r\nmodřenka\r\nModřice\r\nModřický\r\nmodřický\r\nmodřidlo\r\nmodřina\r\nmodřín\r\nmodřinka\r\nmodřínový\r\nmodř\r\nmodulace\r\nmodulační\r\nmodularita\r\nmodulárnější\r\nmodulární\r\nmodulátor\r\nmodul\r\nmodulo\r\nmodulování\r\nmodulovaný\r\nmodulovat\r\nmodulový\r\nmodulující\r\nmodurit\r\nmodus\r\nMoellerová\r\nMoeller\r\nMoellerův\r\nMoháč\r\nmohamedánčin\r\nmohamedánka\r\nmohamedán\r\nmohamedánský\r\nmohamedánství\r\nmohamedánův\r\nMohamed\r\nMohamedův\r\nMohan\r\nmohanský\r\nMohelka\r\nMohelnice\r\nmohelnický\r\nMohelno\r\nmohér\r\nmohérový\r\nMohorita\r\nMohoritová\r\nMohoritův\r\nmohovitější\r\nmohovitý\r\nMohuč\r\nmohučský\r\nmohutnějící\r\nmohutnější\r\nmohutnění\r\nmohutněný\r\nmohutnět\r\nmohutnící\r\nmohutný\r\nmohykánčin\r\nmohykánka\r\nmohykán\r\nmohykánův\r\nMohyla\r\nmohyla\r\nmohylka\r\nMohylová\r\nmohylový\r\nMohylův\r\nmocha\r\nmochna\r\nMochov\r\nmochovský\r\nMochtín\r\nmochtínský\r\nmoje\r\nmojenský\r\nMojha\r\nMojhová\r\nMojhův\r\nmoji\r\nmojí\r\nMojmírovec\r\nmojmírovský\r\nMojmír\r\nMojmírův\r\nMojné\r\nMojžíšová\r\nmojžíšský\r\nMojžíš\r\nMojžíšův\r\nmoka\r\nmokasín\r\nmokasínový\r\nmokerský\r\nmok\r\nmoknoucí\r\nmoknout\r\nmoknutí\r\nMokošín\r\nmokošínský\r\nMokré\r\nmokrodopřádací\r\nmokrodopřádání\r\nmokrodopřádaný\r\nmokro\r\nMokrý\r\nmokrý\r\nmokřad\r\nmokřadní\r\nmokřaď\r\nmokřanský\r\nMokřany\r\nmokřejší\r\nmokřina\r\nmokřit\r\nMokřížová\r\nMokříž\r\nMokřížův\r\nmokvající\r\nmokvání\r\nmokvaný\r\nmokvat\r\nmokvávání\r\nmokvávat\r\nmokvavější\r\nmokvavý\r\nMoláková\r\nMolák\r\nMolákův\r\nmolární\r\nMolcarová\r\nMolcar\r\nMolcarův\r\nmoldánky\r\nmoldanubický\r\nMoldavančin\r\nMoldavanka\r\nMoldavan\r\nMoldavanův\r\nMoldava\r\nMoldávie\r\nmoldavit\r\nmoldavitový\r\nMoldavsko\r\nmoldavský\r\nmoldavský\r\nmoldavština\r\nmolekulární\r\nmolekula\r\nmolekulový\r\nMolínek\r\nMolingerová\r\nMolinger\r\nMolingerův\r\nMolínková\r\nMolínkův\r\nmolinový\r\nmolitan\r\nmolitanový\r\nmolí\r\nmoll\r\nMöllerová\r\nMöller\r\nMöllerův\r\nmollový\r\nMolnárová\r\nMolnár\r\nMolnárův\r\nmoloch\r\nmolochův\r\nmolo\r\nmol\r\nmolto\r\nmolučtější\r\nmolův\r\nMolvice\r\nmolvický\r\nmolybdenan\r\nmolybden\r\nmolybdeničitý\r\nmolybdenit\r\nmolybdenitý\r\nmolybdenový\r\nmomentální\r\nmoment\r\nmomentíček\r\nmomentka\r\nmomentní\r\nmomentový\r\nmonacký\r\nMonačančin\r\nMonačanka\r\nMonačan\r\nMonačanův\r\nmonada\r\nmonáda\r\nMonako\r\nmonarcha\r\nmonarchie\r\nmonarchismus\r\nmonarchista\r\nmonarchistčin\r\nmonarchistický\r\nmonarchistka\r\nmonarchistův\r\nmonarchův\r\nMondeková\r\nMondek\r\nMondekův\r\nmondénnější\r\nmondénní\r\nmondialismus\r\nmoném\r\nmonetarismus\r\nmonetarista\r\nmonetaristčin\r\nmonetaristka\r\nmonetaristův\r\nmonetarizovaný\r\nmonetární\r\nmonetický\r\nMongolčin\r\nmongolický\r\nmongolismus\r\nMongolka\r\nmongoloidní\r\nMongol\r\nMongolsko\r\nmongolský\r\nmongolský\r\nmongolština\r\nMongolův\r\nMonchzulová\r\nMonchzul\r\nMonchzulův\r\nMoniččin\r\nMoničin\r\nMonička\r\nMonika\r\nmoniliový\r\nmonismus\r\nmonista\r\nmonistčin\r\nmonistický\r\nmonistka\r\nmonistův\r\nmonitor\r\nmonitoring\r\nmonitorovací\r\nmonitorovanější\r\nmonitorování\r\nmonitorovaný\r\nmonitorovat\r\nmonitorovatelnější\r\nmonitorovatelný\r\nmonitorovávat\r\nmonitorový\r\nmonitorující\r\nmono\r\nmonoandrický\r\nmonoandrie\r\nmonoblok\r\nmonoblokový\r\nmonocyklický\r\nmonocyt\r\nmonočlánek\r\nmonodromie\r\nmonoester\r\nmonofazický\r\nmonofonie\r\nmonofonní\r\nmonofosfát\r\nmonofrekvenční\r\nmonoftongizace\r\nmonofyzitismus\r\nmonogamický\r\nmonogamie\r\nmonogamní\r\nmonogeneóza\r\nmonogenetický\r\nmonogenický\r\nmonogeničtější\r\nmonoglycerid\r\nmonografický\r\nmonografičtější\r\nmonografie\r\nmonografista\r\nmonografistčin\r\nmonografistka\r\nmonografistův\r\nmonogram\r\nmonohydrát\r\nmonochord\r\nmonochromatický\r\nmonochromátor\r\nmonochromní\r\nmonoid\r\nmonokiny\r\nmonokl\r\nmonokriteriální\r\nmonokultura\r\nmonokulturní\r\nmonolit\r\nmonolitický\r\nmonolitičtější\r\nmonolitnější\r\nmonolitní\r\nmonolitový\r\nmonolog\r\nmonologický\r\nmonologičtější\r\nmonomer\r\nmonominerální\r\nmononukleóza\r\nmonoparentální\r\nmonopol\r\nmonopolismus\r\nmonopolista\r\nmonopolistčin\r\nmonopolistický\r\nmonopolističtější\r\nmonopolistka\r\nmonopolistův\r\nmonopolizace\r\nmonopolizování\r\nmonopolizovaný\r\nmonopolizovat\r\nmonopolizovávat\r\nmonopolizující\r\nmonopolnější\r\nmonopolní\r\nmonopost\r\nmonosacharid\r\nmonosilan\r\nmonoskop\r\nmonostabilnější\r\nmonostabilní\r\nmonoteismus\r\nmonoteista\r\nmonoteistčin\r\nmonoteistický\r\nmonoteističtější\r\nmonoteistka\r\nmonoteistův\r\nmonotematický\r\nmonotematičtější\r\nmonotetický\r\nmonotheismus\r\nmonotheistický\r\nmonotonie\r\nmonotónie\r\nmonotónnější\r\nmonotonní\r\nmonotónní\r\nmonotyp\r\nmonotypický\r\nmonotypičtější\r\nmonotypový\r\nMonrovie\r\nmonsignore\r\nmonsignoreův\r\nmonsignorův\r\nmonstrance\r\nmonstrozita\r\nmonstróznější\r\nmonstrózní\r\nmonstrpodnik\r\nmonstrproces\r\nmonstrum\r\nmonsun\r\nMontana\r\nmontanista\r\nmontanistčin\r\nmontanistka\r\nmontanistův\r\nmontanový\r\nmontážník\r\nmontážníkův\r\nmontážní\r\nmontáž\r\nmontecassinský\r\nmontérkový\r\nmontérky\r\nmontér\r\nmontérský\r\nmontérštější\r\nmontérův\r\nmontgolfiéra\r\nmontování\r\nmontovaný\r\nmontovat\r\nmontovávání\r\nmontovávaný\r\nmontovávat\r\nMontserrat\r\nmontserratský\r\nmontující\r\nmonumentalista\r\nmonumentalistčin\r\nmonumentalistka\r\nmonumentalistův\r\nmonumentalizující\r\nmonumentálnější\r\nmonumentální\r\nmonument\r\nmonzum\r\nmonzumový\r\nmonzun\r\nmonzunový\r\nMooneyová\r\nMooneyův\r\nMooney\r\nmoonista\r\nmoonistčin\r\nmoonistka\r\nmoonistův\r\nMooreová\r\nMoore\r\nMooreův\r\nMOP\r\nmoped\r\nmop\r\nmopslík\r\nmopslíkův\r\nmoralismus\r\nmoralisování\r\nmoralisovaný\r\nmoralisovat\r\nmoralista\r\nmoralistčin\r\nmoralistický\r\nmoralističtější\r\nmoralistka\r\nmoralistnější\r\nmoralistův\r\nmoralita\r\nmoralizátorčin\r\nmoralizátorka\r\nmoralizátor\r\nmoralizátorův\r\nmoralizování\r\nmoralizovaný\r\nmoralizovat\r\nmoralizující\r\nmorálka\r\nmorálnější\r\nmorálněvolní\r\nmorální\r\nmorálnost\r\nMorany\r\nmoratorium\r\nMoravaččin\r\nMoravačka\r\nMoravančin\r\nMoravanka\r\nmoravan\r\nmoravanův\r\nMorava\r\nMoravcová\r\nMoravcův\r\nMoravčíková\r\nMoravčík\r\nMoravčíkův\r\nMoravčin\r\nMoravec\r\nMorávek\r\nMoravěnka\r\nMoravice\r\nmoravismus\r\nmoravista\r\nmoravistčin\r\nmoravistický\r\nmoravistka\r\nmoravistův\r\nMoravka\r\nMorávková\r\nMorávkův\r\nmoravskopanonský\r\nmoravskoslezský\r\nmoravskotřebovský\r\nmoravský\r\nmoravský\r\nmoravštější\r\nmorbidita\r\nmorbidnější\r\nmorbidní\r\nmorčák\r\nmorčákův\r\nmorče\r\nmorčin\r\nmorda\r\nmordie\r\nmordije\r\nmordování\r\nmordovaný\r\nmordovat\r\nmordvinština\r\nmordyje\r\nmordyjé\r\nmorek\r\nmoréna\r\nmorénový\r\nmorfematický\r\nmorfematika\r\nmorfém\r\nmorfémový\r\nmorf\r\nmorfický\r\nmorfin\r\nmorfinista\r\nmorfinistčin\r\nmorfinistka\r\nmorfinistův\r\nmorfinový\r\nmorfiový\r\nmorfismus\r\nmorfium\r\nmorfogenetický\r\nmorfologický\r\nmorfologičtější\r\nmorfologie\r\nmorfolog\r\nmorfologův\r\nmorfoložčin\r\nmorfoložka\r\nmorfometrie\r\nmorfoném\r\nmorfonologický\r\nmorfosyntax\r\nmorfování\r\nmorgána\r\nmorganismus\r\nmorganista\r\nmorganistčin\r\nmorganistický\r\nmorganistka\r\nmorganistův\r\nMorgenstern\r\nMorgenthalerův\r\nmor\r\nMorice\r\nmorický\r\nmorka\r\nMorkovice\r\nmorkovický\r\nmorkový\r\nmorousovitý\r\nmorous\r\nmorousův\r\nmorový\r\nMorse\r\nmorseovka\r\nMorseův\r\nmortalita\r\nmortem\r\nMortnon\r\nMortnonův\r\nmoruše\r\nmoruška\r\nmorušovitý\r\nmorušovník\r\nmorušovníkovitý\r\nmorušový\r\nmořčák\r\nmořčákův\r\nmoře\r\nmoření\r\nmořenovitý\r\nmořený\r\nmořeplavba\r\nmořeplavcův\r\nmořeplavební\r\nmořeplavecký\r\nmořeplavectví\r\nmořeplavec\r\nmořeplavkyně\r\nmořeplavkynin\r\nMořice\r\nmořicí\r\nmořící\r\nmořický\r\nmořička\r\nmořidlo\r\nMořina\r\nMořinka\r\nmořit\r\nmořivka\r\nMořkov\r\nmořkovský\r\nmořský\r\nmořštější\r\nMOS\r\nMosa\r\nmosaika\r\nmosambický\r\nMosambičančin\r\nMosambičanka\r\nMosambičan\r\nMosambičanův\r\nMosambik\r\nmosaz\r\nmosazemi\r\nmosazi\r\nmosazí\r\nmosazích\r\nmosazím\r\nmosaznější\r\nmosazný\r\nMosela\r\nmoselský\r\nMoskalová\r\nMoskal\r\nMoskalův\r\nmoskevský\r\nmoskevský\r\nMoskvančin\r\nMoskvanka\r\nMoskvan\r\nMoskvanův\r\nmoskvanův\r\nMoskva\r\nmoskvič\r\nmoskvocentrismus\r\nmoskytiéra\r\nmoskytí\r\nmoskyt\r\nmoskytův\r\nmostárna\r\nMostecko\r\nmostecký\r\nmostecký\r\nmostek\r\nMost\r\nmost\r\nmostka\r\nMostkovice\r\nmostkovický\r\nmostné\r\nmostní\r\nmostovka\r\nmostový\r\nMošna\r\nmošna\r\nmošnička\r\nMošnová\r\nMošnov\r\nmošnovský\r\nMošnův\r\nmoštárenský\r\nmoštárenství\r\nmoštárna\r\nMoštěnice\r\nmoštěnický\r\nmošt\r\nmoštový\r\nmošusový\r\nmotací\r\nmotající\r\nmoták\r\nmoták\r\nmotákův\r\nMotalová\r\nMotal\r\nMotalův\r\nmotání\r\nmotaný\r\nmotat\r\nmotávání\r\nmotávaný\r\nmotávat\r\nMotejlová\r\nMotejl\r\nMotejlův\r\nMotejzíková\r\nMotejzík\r\nMotejzíkův\r\nmotel\r\nmotelový\r\nmotivace\r\nmotivační\r\nmotiv\r\nmotivovanější\r\nmotivování\r\nmotivovaný\r\nmotivovat\r\nmotivový\r\nmotivující\r\nMotlová\r\nMotl\r\nMotlův\r\nmotocykl\r\nmotocyklista\r\nmotocyklistčin\r\nmotocyklistka\r\nmotocyklistův\r\nmotocyklový\r\nmotoduše\r\nmotohlídka\r\nmotokára\r\nmotokárista\r\nmotokáristčin\r\nmotokáristka\r\nmotokáristův\r\nmotokros\r\nmotokrosový\r\nmotolice\r\nmotoličnatý\r\nmoto\r\nmotoplášť\r\nmotorák\r\nmotorárna\r\nmotorek\r\nmotorest\r\nmotorgenerátor\r\nmotor\r\nmotorický\r\nmotorika\r\nmotorismus\r\nmotorista\r\nmotoristčin\r\nmotoristický\r\nmotorističtější\r\nmotoristka\r\nmotoristův\r\nmotorizace\r\nmotorizování\r\nmotorizovaný\r\nmotorizovat\r\nmotorkářský\r\nmotorkář\r\nmotorkářův\r\nmotorka\r\nmotorový\r\nmotostřelcův\r\nmotostřelecký\r\nmotostřelec\r\nmotostřelečtější\r\nmototurista\r\nmototuristčin\r\nmototuristika\r\nmototuristka\r\nmototuristův\r\nmotouz\r\nmotovidlo\r\nmotto\r\nmotůrek\r\nMotyčka\r\nmotyčka\r\nMotyčková\r\nMotyčkův\r\nmotyka\r\nmotýlek\r\nmotýlice\r\nmotýlí\r\nmotýlkový\r\nmotýlkův\r\nmotýlový\r\nmotýl\r\nmotýlův\r\nmou\r\nMouček\r\nMoučka\r\nmoučka\r\nMoučková\r\nmoučkový\r\nMoučkův\r\nmoučnatější\r\nmoučnatý\r\nmoučnější\r\nmoučník\r\nmoučníkový\r\nmoučnivka\r\nmoučný\r\nmoudivláček\r\nmoudivláčkův\r\nmoudro\r\nMoudrý\r\nmoudrý\r\nmoudřejší\r\nmoudření\r\nmoudřet\r\nMoucha\r\nmoucha\r\nMouchová\r\nMouchův\r\nmouka\r\nmoula\r\nmoulův\r\nMount\r\nMouralová\r\nMoural\r\nMouralův\r\nmourek\r\nmour\r\nmourkův\r\nmourovatější\r\nmourovatý\r\nmouřenínčin\r\nmouřenínka\r\nmouřenín\r\nmouřenínský\r\nmouřenínštější\r\nmouřenínův\r\nMOV\r\nmovitější\r\nmovitý\r\nmozaiek\r\nmozaikář\r\nmozaikářův\r\nmozaika\r\nmozaikovitější\r\nmozaikovitý\r\nmozaikový\r\nmozambický\r\nMozambičančin\r\nMozambičanka\r\nMozambičan\r\nMozambičanův\r\nMozambik\r\nmozartovský\r\nMozart\r\nMozartův\r\nmozeček\r\nmozečkový\r\nmozek\r\nMozíková\r\nMozík\r\nMozíkův\r\nmozkomíchový\r\nmozkomíšní\r\nmozkovna\r\nmozkový\r\nmozol\r\nmozolnatější\r\nmozolnatý\r\nmozolný\r\nmozolovitý\r\nmoždíř\r\nmožná\r\nmožnější\r\nmožno\r\nmožný\r\nmp\r\nMPa\r\nMPZ\r\nMr\r\nMráček\r\nmráček\r\nmračení\r\nmračený\r\nmračící\r\nmračit\r\nMráčková\r\nmráčkový\r\nMráčkův\r\nmračnější\r\nmračno\r\nmračnový\r\nmrákavější\r\nmrákavý\r\nmrak\r\nmrakodrap\r\nmrakodrapový\r\nmrákota\r\nMrákotín\r\nmrákotínský\r\nmrákotnější\r\nMrákov\r\nmrákovský\r\nmrakový\r\nmramor\r\nmramorování\r\nmramorovaný\r\nmramorovat\r\nmramorový\r\nMramotice\r\nmraska\r\nMratín\r\nmratínský\r\nmravencův\r\nmravenčan\r\nmravenčení\r\nmravenčí\r\nmravenec\r\nmraveneček\r\nmravenečkův\r\nmravenečník\r\nmravenečníkův\r\nmraveniště\r\nmrav\r\nmravkolev\r\nmravkolva\r\nmravkolve\r\nmravkolvech\r\nmravkolvem\r\nmravkolvi\r\nmravkolvovi\r\nmravkolvu\r\nmravkolvů\r\nmravkolvům\r\nmravkolvy\r\nmravnější\r\nmravní\r\nmravnostnější\r\nmravnostní\r\nmravný\r\nmravokárce\r\nmravokárcův\r\nmravokárnější\r\nmravokárný\r\nmravoličnější\r\nmravopočestnější\r\nmravopočestný\r\nmravoučnější\r\nmravoučný\r\nmravouka\r\nmravověda\r\nmra\r\nmráz\r\nmrazák\r\nmraze\r\nmrazech\r\nMrázek\r\nmrazem\r\nmrazení\r\nmrazený\r\nmrazicí\r\nmrazící\r\nmrazík\r\nMrazíková\r\nMrazík\r\nMrazíkův\r\nmrazírenský\r\nmrazírna\r\nmrazit\r\nmrazivější\r\nmrazivý\r\nMrázková\r\nMrázkův\r\nmraznička\r\nmrazotvorný\r\nMrázová\r\nmrazovka\r\nmrazový\r\nMráz\r\nmrazu\r\nmrazů\r\nmrazům\r\nmrazuodolný\r\nMrázův\r\nmrazuvzdornější\r\nmrazuvzdorný\r\nmrazy\r\nmražení\r\nmražený\r\nmrhající\r\nmrhání\r\nmrhaný\r\nmrhat\r\nmrholení\r\nmrholený\r\nmrholit\r\nmrcha\r\nmrchoviště\r\nmrchožroutštější\r\nmrkací\r\nmrkačka\r\nmrkající\r\nmrkání\r\nmrkaný\r\nmrkat\r\nmrkávat\r\nmrkavý\r\nmrkev\r\nmrknout\r\nmrknutí\r\nmrknutý\r\nMrkosová\r\nMrkos\r\nMrkosův\r\nMrkusová\r\nMrkus\r\nMrkusův\r\nmrkvička\r\nmrkvovější\r\nmrkvový\r\nmrmlání\r\nmrmlaný\r\nmrmlat\r\nmrmlávání\r\nmrmlávat\r\nMrňáková\r\nMrňák\r\nMrňákův\r\nmrňavější\r\nMrňavý\r\nmrňavý\r\nmrně\r\nmrňous\r\nmrňousův\r\nmroží\r\nmrož\r\nmrožův\r\nMrs\r\nmrskačka\r\nmrskající\r\nmrskání\r\nmrskaný\r\nmrskat\r\nmrsknout\r\nmrsknutí\r\nmrsknutý\r\nmrščin\r\nmršina\r\nmrška\r\nmrštěnější\r\nmrštění\r\nmrštěný\r\nMrštíková\r\nMrštík\r\nMrštíkův\r\nmrštit\r\nmrštnější\r\nmrštný\r\nmršťovanější\r\nmršťování\r\nmršťovaný\r\nmršťovat\r\nmrtev\r\nmrtící\r\nmrtvější\r\nmrtvění\r\nmrtvět\r\nmrtvice\r\nmrtvička\r\nmrtvičnatější\r\nmrtvičný\r\nmrtvola\r\nmrtvolka\r\nmrtvolnější\r\nmrtvolný\r\nmrtvorozený\r\nmrtvý\r\nmrť\r\nmručení\r\nmručený\r\nmručet\r\nmručivější\r\nmručivý\r\nMrva\r\nmrva\r\nMrvišová\r\nMrviš\r\nMrvišův\r\nmrvit\r\nMrvová\r\nMrvův\r\nmrzáček\r\nmrzačení\r\nmrzačený\r\nmrzačící\r\nmrzačit\r\nmrzáčkův\r\nmrzák\r\nmrzákův\r\nmrzčejší\r\nmrzení\r\nmrzený\r\nmrzet\r\nmrzký\r\nmrznoucí\r\nmrznout\r\nmrznutí\r\nmrznutý\r\nmrzout\r\nmrzoutský\r\nmrzoutství\r\nmrzoutštější\r\nmrzoutův\r\nmrzutější\r\nmrzut\r\nmrzutý\r\nmření\r\nmřenka\r\nmříčenský\r\nMříčná\r\nmřínek\r\nmřít\r\nmřížka\r\nmřížkování\r\nmřížkovaný\r\nmřížkovat\r\nmřížkovitý\r\nmřížkový\r\nmřížovaný\r\nmřížovec\r\nmřížoví\r\nmřížovina\r\nmřížovitý\r\nmřížový\r\nmříž\r\nMS\r\nMSD\r\nmsta\r\nmstění\r\nmstěný\r\nmstící\r\nmstít\r\nmstitelčin\r\nmstitelka\r\nmstitel\r\nmstitelův\r\nmstívání\r\nmstívat\r\nmstivější\r\nmstivý\r\nmstný\r\nmšecký\r\nMšec\r\nMšené\r\nMšeno\r\nmšenský\r\nmše\r\nmšice\r\nMŠMT\r\nMTF\r\nMTI\r\nMTZ\r\nMU\r\nmu\r\nMÚ\r\nmučednice\r\nmučednický\r\nmučednictví\r\nmučedničtější\r\nmučedník\r\nmučedníkův\r\nmučenější\r\nmučení\r\nmučenka\r\nmučený\r\nmučicí\r\nmučící\r\nmučidlo\r\nmučírna\r\nmučit\r\nmučitelčin\r\nmučitelka\r\nmučitel\r\nmučitelův\r\nmučivější\r\nmučivý\r\nmučka\r\nMUDr\r\nMudráková\r\nMudrák\r\nMudrákův\r\nMudra\r\nmudrc\r\nmudrcův\r\nmudrdlantčin\r\nmudrdlantka\r\nmudrdlant\r\nmudrdlantství\r\nmudrdlantův\r\nmudrlant\r\nmudrlantství\r\nmudrlantův\r\nMudrochová\r\nMudroch\r\nMudrochův\r\nmudrování\r\nmudrovaný\r\nmudrovat\r\nMudrová\r\nmudrující\r\nMudrův\r\nmudřec\r\nmudřece\r\nmudřecem\r\nmudřeci\r\nmudřecích\r\nmudřecové\r\nmudřeců\r\nmudřecům\r\nmudřecův\r\nmuflonče\r\nmufloní\r\nmuflonka\r\nmuflon\r\nmuflonův\r\nmuflový\r\nMuhlová\r\nMuhl\r\nMuhlův\r\nmuch\r\nMucha\r\nMuchek\r\nMuchková\r\nMuchkův\r\nmuchlání\r\nmuchlaný\r\nmuchlat\r\nmuchlávání\r\nmuchlávaný\r\nmuchlávat\r\nmuchlující\r\nMuchna\r\nmuchnička\r\nMuchnová\r\nMuchnův\r\nmucholapka\r\nmuchomůrka\r\nMuchová\r\nMuchův\r\nmůj\r\nmůj\r\nMukařov\r\nMukařovský\r\nmukařovský\r\nmukat\r\nmuka\r\nmuknout\r\nmuknutí\r\nmulatčin\r\nmulatka\r\nmulat\r\nmulatův\r\nmula\r\nmulčovací\r\nmulčování\r\nmulčovaný\r\nmulčovat\r\nMulda\r\nmuleta\r\nMullerová\r\nMüllerová\r\nMuller\r\nMüller\r\nMullerův\r\nMüllerův\r\nmultiagentový\r\nmultidimenzionální\r\nmultidisciplinární\r\nmultietnický\r\nmultifacetický\r\nmultifokální\r\nmultifunkční\r\nmultigraf\r\nmultiinstrumentalista\r\nmultiinstrumentalistčin\r\nmultiinstrumentalistka\r\nmultiinstrumentalistův\r\nmultijazyčný\r\nmultikanálový\r\nmultikriteriální\r\nmultikulturalismus\r\nmultikulturalistický\r\nmultikulturnější\r\nmultikulturní\r\nmultilateralismus\r\nmultilaterální\r\nmultilicence\r\nmultilicenční\r\nmultilingvismus\r\nmultimediální\r\nmultimédium\r\nmultimilionářčin\r\nmultimilionářka\r\nmultimilionář\r\nmultimilionářův\r\nmultiminerál\r\nmultinacionálnější\r\nmultinacionální\r\nmultinárodní\r\nmultinárodnostní\r\nmultinomický\r\nmultiperspektivita\r\nmultiplatformní\r\nmultiplexer\r\nmultiplex\r\nmultiplexing\r\nmultiplexní\r\nmultiplexor\r\nmultiplicita\r\nmultiplikace\r\nmultiplikační\r\nmultiplikativní\r\nmultiplikátor\r\nmultiportový\r\nmultiprocesing\r\nmultiprocesor\r\nmultiprocesorový\r\nmultiprofesní\r\nmultiprogramování\r\nmultiprogramovaný\r\nmultiprogramovat\r\nmultiprogramovatelný\r\nmultiprogramovávání\r\nmultiprogramovávaný\r\nmultiprogramovávat\r\nmultiprogramový\r\nmultiprotokolový\r\nmultirozměrný\r\nmultisegmentový\r\nmultiservis\r\nmultispektrální\r\nmultisystém\r\nmultitemporální\r\nmultithreadový\r\nmultiúčelový\r\nmultiúlohový\r\nmultiuživatelský\r\nmultiverbizace\r\nmultivibrátor\r\nmultividový\r\nmultivitamin\r\nmultivitamín\r\nmultivitaminový\r\nmultivrstevný\r\nmultivrstvý\r\nmultizávislý\r\nmumie\r\nmumifikace\r\nmumifikování\r\nmumifikovaný\r\nmumifikovat\r\nmumiový\r\nmumlající\r\nmumlání\r\nmumlaný\r\nmumlat\r\nmumlávání\r\nmumlávaný\r\nmumlávat\r\nmumlavější\r\nmumlavý\r\nmumraj\r\nmundúr\r\nmunice\r\nmunicipalizace\r\nmunicipální\r\nmunicipiální\r\nmunička\r\nmuniční\r\nmuňka\r\nmünsterberský\r\nmünsterský\r\nMunzarová\r\nMunzar\r\nMunzarův\r\nMura\r\nmůra\r\nmůrčin\r\nMurdychová\r\nMurdych\r\nMurdychův\r\nmurijský\r\nMurínová\r\nMurín\r\nMurínův\r\nmůrka\r\nMurla\r\nMurlová\r\nMurlův\r\nMurou\r\nMuřice\r\nmuseální\r\nmusejí\r\nmusel\r\nmuset\r\nmuseum\r\nmusika\r\nMusílek\r\nMusílková\r\nMusílkův\r\nmusil\r\nMusilová\r\nMusil\r\nMusilův\r\nmusíme\r\nmusím\r\nmusí\r\nmusíš\r\nmusíte\r\nmusit\r\nmuskovit\r\nmuskovitový\r\nmuslimčin\r\nmuslimka\r\nmuslim\r\nmuslimský\r\nmuslimův\r\nmustang\r\nmůstek\r\nmůstkový\r\nmušelín\r\nmušelínový\r\nmušinec\r\nmuší\r\nMuška\r\nmuškaření\r\nmuškařit\r\nmuškařský\r\nmuškař\r\nmuškařův\r\nmuškatelka\r\nmuškát\r\nmuškátovník\r\nmuškátový\r\nmuška\r\nmušketa\r\nmušketovější\r\nmušketový\r\nmušketýr\r\nmušketýrský\r\nmušketýrštější\r\nmušketýrův\r\nMušková\r\nMuškův\r\nmušle\r\nmušlička\r\nmušličkový\r\nmušlový\r\nMušov\r\nmušovský\r\nMušův\r\nmutace\r\nmutační\r\nmutagen\r\nmutagenita\r\nmutagenní\r\nmutant\r\nmutantův\r\nMutějovice\r\nmutějovický\r\nMutěnice\r\nmutěnický\r\nMutěnín\r\nmutěnínský\r\nMutina\r\nMutinová\r\nMutinův\r\nmutismus\r\nMutkov\r\nmutkovský\r\nmutovanější\r\nmutovaní\r\nmutování\r\nmutovaný\r\nmutovat\r\nmutovávání\r\nmutovávaný\r\nmutovávat\r\nmutující\r\nmúza\r\nmuzeálie\r\nmuzeální\r\nmuzejnější\r\nmuzejnictví\r\nmuzejník\r\nmuzejníkův\r\nmuzejní\r\nmuzeologie\r\nmuzeum\r\nmuzicírovat\r\nmuzicírující\r\nmúzický\r\nmuzičnost\r\nmúzičnost\r\nmúzičtější\r\nmuzikál\r\nmuzikálnější\r\nmuzikální\r\nmuzikálovější\r\nmuzikálový\r\nmuzikantčin\r\nmuzikantka\r\nmuzikant\r\nmuzikantský\r\nmuzikantský\r\nmuzikantštější\r\nmuzikantův\r\nMuzikářová\r\nMuzikář\r\nMuzikářův\r\nmuzika\r\nmuzikologický\r\nmuzikologie\r\nmuzikolog\r\nmuzikologův\r\nmuzikoložčin\r\nmuzikoložka\r\nmuzikoterapie\r\nMužáková\r\nMužák\r\nMužákův\r\nmužatka\r\nmužický\r\nmužíček\r\nmužíčkový\r\nmužíčkův\r\nMužíková\r\nmužik\r\nmužík\r\nMužík\r\nmužikův\r\nMužíkův\r\nmužíkův\r\nmužnější\r\nmužnění\r\nmužnět\r\nmužný\r\nmužský\r\nmužství\r\nmužstvo\r\nmužštější\r\nmuž\r\nmužův\r\nMV\r\nMVDr\r\nMW\r\nMWh\r\nMx\r\nmy\r\nmycelie\r\nmýcení\r\nmýcený\r\nmycí\r\nmyčka\r\nmýdelnatý\r\nmýdelníkovitý\r\nmydlárna\r\nmýdlárna\r\nmydlářčin\r\nmydlářka\r\nMydlářová\r\nmydlářský\r\nmydlářství\r\nmydlář\r\nMydlář\r\nMydlářův\r\nmydlářův\r\nmydlení\r\nmydlený\r\nmydlicí\r\nmydlící\r\nmydlinka\r\nmydlinkový\r\nmydlinový\r\nmydliny\r\nmydlit\r\nmydlívání\r\nmydlívaný\r\nmydlívat\r\nmýdlo\r\nmydlovarský\r\nMydlovary\r\nmýdlovější\r\nmýdlovitý\r\nmýdlový\r\nmýdlový\r\nmydriáza\r\nmyelinový\r\nmyeloblastický\r\nmyeloblastičtější\r\nmyelocytický\r\nmyelocytičtější\r\nmých\r\nmyjící\r\nmykací\r\nmykadlo\r\nmykání\r\nmykaný\r\nmykobakterióza\r\nmykologický\r\nmykologičtější\r\nmykologie\r\nmykolog\r\nmykologův\r\nmykoložčin\r\nmykoložka\r\nmykorhiza\r\nmykorhizní\r\nmykorrhizní\r\nmykotický\r\nmykotoxin\r\nmykoza\r\nmykóza\r\nmýlení\r\nmýlený\r\nmýlící\r\nmýlit\r\nmýlka\r\nmylnější\r\nmylný\r\nmým\r\nmými\r\nmyoglobin\r\nmyokard\r\nmyom\r\nmyopie\r\nmyotonický\r\nmyotoničtější\r\nmyrha\r\nmyriada\r\nmyriáda\r\nmyrta\r\nmyrtovitý\r\nmyrtový\r\nmys\r\nMysíková\r\nMysík\r\nMysíkův\r\nmysl\r\nMysla\r\nMyslbeková\r\nMyslbek\r\nMyslbekův\r\nmyslemi\r\nmyslení\r\nmyslený\r\nmyslet\r\nMysletín\r\nmysletínský\r\nmysli\r\nmyslí\r\nMysliboř\r\nMyslibořice\r\nmyslibořický\r\nmyslící\r\nmyslích\r\nMyslíková\r\nMyslík\r\nMyslíkův\r\nmyslím\r\nMyslinka\r\nMyslín\r\nmyslínský\r\nmyslit\r\nmyslitelčin\r\nmyslitelka\r\nmyslitelnější\r\nmyslitelný\r\nmyslitelský\r\nmyslitelštější\r\nmyslitel\r\nmyslitelův\r\nmyslívání\r\nmyslívat\r\nMyslivcová\r\nMyslivcův\r\nmyslivcův\r\nmyslivecký\r\nmyslivec\r\nMyslivec\r\nmysliveček\r\nMysliveček\r\nMyslivečková\r\nMyslivečkův\r\nmyslivečkův\r\nmyslivečtější\r\nmyslivna\r\nmyslivý\r\nMysločovice\r\nmysločovický\r\nMyslová\r\nmyslovský\r\nmysofilie\r\nmysterióznější\r\nmysteriózní\r\nmysteriozní\r\nmysterium\r\nmystérium\r\nmysticismus\r\nmystický\r\nmystiččin\r\nmystička\r\nmystično\r\nmystičtější\r\nmystifikace\r\nmystifikování\r\nmystifikovaný\r\nmystifikovat\r\nmystifikující\r\nmystika\r\nmystik\r\nmystikův\r\nmystizovaný\r\nmystizovat\r\nmystizující\r\nmyšáček\r\nmyšáčkův\r\nMyšáková\r\nmyšák\r\nMyšák\r\nMyšákův\r\nmyšákův\r\nmyšař\r\nmyšařův\r\nmyšátko\r\nmyšice\r\nmyšiččin\r\nmyšička\r\nmyšilov\r\nmyšilovův\r\nmyšina\r\nmyší\r\nmyš\r\nMyška\r\nmyška\r\nMyšková\r\nmyškový\r\nMyškův\r\nmyšlenečka\r\nmyšlení\r\nmyšlenka\r\nmyšlénka\r\nmyšlenkový\r\nmyšlen\r\nmyšlený\r\nmyšovitý\r\nMyšpulín\r\nMyšpulínův\r\nMyštěves\r\nmyštěveský\r\nmýt\r\nmytější\r\nmythisování\r\nmythisovaný\r\nmythisovat\r\nmythologie\r\nmythus\r\nmýtický\r\nmytický\r\nmytičtější\r\nmýtičtější\r\nmýtina\r\nmýtinka\r\nmytí\r\nmýtit\r\nmytizování\r\nmytizovaný\r\nmytizovat\r\nmytizující\r\nmýtné\r\nmytologický\r\nmytologičtější\r\nmytologie\r\nmytologizování\r\nmytologizovaný\r\nmytologizovat\r\nmytologizující\r\nmýto\r\nmýtus\r\nmytý\r\nmytý\r\nmytyzující\r\nmývalí\r\nmývalovcův\r\nmývalovec\r\nmývalovitý\r\nmýval\r\nmývalův\r\nmyxobolóza\r\nmyxomatóza\r\nMZ\r\nmzda\r\nmzdový\r\nMze\r\nmžení\r\nmžikání\r\nmžikat\r\nmžikávání\r\nmžikávaný\r\nmžikávat\r\nmžikavý\r\nmžik\r\nmžiknout\r\nmžiknutí\r\nmžikový\r\nmžít\r\nmžitka\r\nmžourající\r\nmžourání\r\nmžourat\r\nmžouravý\r\nMŽP\r\nmžurka\r\nna\r\nnaadresovaný\r\nnaakumulovaný\r\nnaaranžování\r\nnaaranžovaný\r\nnaaranžovat\r\nNába\r\nnabacání\r\nnabacaný\r\nnabacat\r\nnabádající\r\nnabádání\r\nnabádaný\r\nnabádat\r\nnabádavější\r\nnabádavý\r\nnabagrovanější\r\nnabagrování\r\nnabagrovaný\r\nnabagrovat\r\nnabagrovávání\r\nnabagrovávaný\r\nnabagrovávat\r\nnabájení\r\nnabájený\r\nnabájit\r\nnabálecí\r\nnabalenější\r\nnabalení\r\nnabalený\r\nnábal\r\nnabalit\r\nnabalitelnější\r\nnabalitelný\r\nnabalovací\r\nnabalovanější\r\nnabalování\r\nnabalovaný\r\nnabalovat\r\nnabalovávání\r\nnabalovávaný\r\nnabalovávat\r\nnabalující\r\nnabalzámovanější\r\nnabalzamování\r\nnabalzámování\r\nnabalzamovaný\r\nnabalzámovaný\r\nnabalzamovat\r\nnabalzámovat\r\nnabalzamovávání\r\nnabalzamovávaný\r\nnabalzamovávat\r\nnabarvenější\r\nnabarvení\r\nnabarvený\r\nnabarvit\r\nnabásnění\r\nnabásněný\r\nnabásnit\r\nnabažení\r\nnabažený\r\nnabažit\r\nnaběhání\r\nnaběhaný\r\nnaběhat\r\nnaběhávání\r\nnaběhávat\r\nnáběh\r\nnaběhlejší\r\nnaběhlý\r\nnaběhlý\r\nnaběhnout\r\nnaběhnutí\r\nnáběhovější\r\nnáběhový\r\nnaběrací\r\nnaběračka\r\nnaběrač\r\nnaběrák\r\nnáběžný\r\nnabídka\r\nnabídkový\r\nnabídnout\r\nnabídnutí\r\nnabídnutý\r\nnabídnutý\r\nnabiflování\r\nnabiflovaný\r\nnabiflovat\r\nnabiflovávání\r\nnabiflovávaný\r\nnabiflovávat\r\nnabíhající\r\nnabíhání\r\nnabíhaný\r\nnabíhat\r\nnabíhávání\r\nnabíhávaný\r\nnabíhávat\r\nnabiják\r\nnabíjecí\r\nnabíječka\r\nnabíječ\r\nnabíjející\r\nnabíjení\r\nnabíjený\r\nnabíjet\r\nnabíledni\r\nnabílení\r\nnabílený\r\nnabílit\r\nnabírající\r\nnabíranější\r\nnabírání\r\nnabíraný\r\nnabírat\r\nnabít\r\nnabitější\r\nnabití\r\nnabit\r\nnabitý\r\nnabízející\r\nnabízení\r\nnabízený\r\nnabízet\r\nnablblejší\r\nnablikání\r\nnablikat\r\nnablít\r\nnablití\r\nnablit\r\nnablitý\r\nnablívání\r\nnablívaný\r\nnablívat\r\nnablízku\r\nnablýskaný\r\nnablýskat\r\nnabobový\r\nnabob\r\nnabobský\r\nnabobtnalejší\r\nnabobtnalý\r\nnabobtnání\r\nnabobtnaný\r\nnabobtnat\r\nnabobtnávání\r\nnabobtnávat\r\nnabobův\r\nnabodání\r\nnabodaný\r\nnabodat\r\nnabodávání\r\nnabodávaný\r\nnabodávat\r\nnabodeníčko\r\nnabodnout\r\nnabodnutí\r\nnabodnutý\r\nnábojka\r\nnábojnice\r\nnábojový\r\nnáboj\r\nnabonzování\r\nnabonzovaný\r\nnabonzovat\r\nnáborář\r\nnáborářův\r\nnábor\r\nnáborový\r\nnaboření\r\nnabořený\r\nnabořit\r\nnaboso\r\nnabotnalý\r\nnabouchat\r\nnabourání\r\nnabouraný\r\nnabourat\r\nnabourávání\r\nnabourávaný\r\nnabourávat\r\nnáboženský\r\nnáboženství\r\nnáboženštější\r\nnábožnější\r\nnábožný\r\nnabranější\r\nnabraní\r\nnabrání\r\nnabraný\r\nnabrat\r\nnabrebtání\r\nnabrebtaný\r\nnabrebtat\r\nnabreptání\r\nnabreptaný\r\nnabreptat\r\nnabrnět\r\nnabrnkání\r\nnabrnkaný\r\nnabrnkat\r\nnabrnkávat\r\nnabrousit\r\nnabroušenější\r\nnabroušení\r\nnabroušený\r\nnabručenější\r\nnabručený\r\nnabruslení\r\nnabruslit\r\nnabrušovanější\r\nnabrušování\r\nnabrušovaný\r\nnabrušovat\r\nnabrušující\r\nnabryndání\r\nnabryndaný\r\nnabryndat\r\nnábřeží\r\nnábřežní\r\nnabubřelejší\r\nnabubřelý\r\nnabudit\r\nnabudu\r\nnabulíkování\r\nnabulíkovaný\r\nnabulíkovat\r\nnabulíkovávání\r\nnabulíkovávaný\r\nnabulíkovávat\r\nnabumbat\r\nnabuzení\r\nnabuzený\r\nnabuzovací\r\nnabuzování\r\nnabuzovaný\r\nnabuzovat\r\nnabyl\r\nnabytější\r\nnábytek\r\nnabýt\r\nnabytí\r\nnábytkářský\r\nnábytkářství\r\nnábytkář\r\nnábytkářův\r\nnábytkovější\r\nnábytkový\r\nnabyt\r\nnabytý\r\nnabytý\r\nnabývací\r\nnabývající\r\nnabývanější\r\nnabývání\r\nnabývaný\r\nnabyvatelčin\r\nnabývatelčin\r\nnabyvatelka\r\nnabývatelka\r\nnabyvatel\r\nnabývatel\r\nnabyvatelův\r\nnabývatelův\r\nnabývat\r\nnabyv\r\nnabyvše\r\nnabyvši\r\nnabyvší\r\nnacákání\r\nnacákaný\r\nnacákat\r\nnacamrat\r\nnacancání\r\nnacancat\r\nnacedit\r\nnacentrování\r\nnacentrovaný\r\nnacentrovat\r\nnacentrovávat\r\nnacestování\r\nnacestovaný\r\nnacestovat\r\nnacezení\r\nnacezený\r\nnacionále\r\nnacionálie\r\nnacionalismus\r\nnacionalista\r\nnacionalistčin\r\nnacionalistický\r\nnacionalističtější\r\nnacionalistka\r\nnacionalistův\r\nnacionalizování\r\nnacionalizovaný\r\nnacionalizovat\r\nnacionálkominismus\r\nnacionálkomunismus\r\nnacionálkomunista\r\nnacionálkomunistčin\r\nnacionálkomunistka\r\nnacionálkomunistův\r\nnacionálnější\r\nnacionální\r\nnacionálpatriot\r\nnacionálpatriotův\r\nnacionál\r\nnacionálsocialismus\r\nnacionálův\r\nnacismus\r\nnacista\r\nnacistčin\r\nnacistický\r\nnacističtější\r\nnacistka\r\nnacistův\r\nNaCl\r\nnacmrndání\r\nnacmrndaný\r\nnacmrndat\r\nnacmrndávat\r\nnacouvání\r\nnacouvaný\r\nnacouvat\r\nnacouvávání\r\nnacouvávat\r\nnacpanější\r\nnacpání\r\nnacpaný\r\nnacpat\r\nnacpávací\r\nnacpávání\r\nnacpávaný\r\nnacpávat\r\nnacpávka\r\nnacrčení\r\nnacrčet\r\nnactiutrhačnější\r\nnactiutrhačný\r\nnactiutrhačský\r\nnactiutrhačství\r\nnactiutrhač\r\nnactiutrhačův\r\nnactiutrhání\r\nnactiutrhat\r\nnacucající\r\nnacucanější\r\nnacucání\r\nnacucaný\r\nnacucat\r\nnacucávat\r\nnacupitání\r\nnacupitat\r\nnacupitávání\r\nnacupitávat\r\nnacupování\r\nnacupovaný\r\nnacupovat\r\nnacvakání\r\nnacvakaný\r\nnacvakat\r\nnacvakávat\r\nnacvaknout\r\nnacvaknutí\r\nnacvaknutý\r\nnacválání\r\nnacválat\r\nnacválávání\r\nnacválávat\r\nnacvičenější\r\nnacvičení\r\nnacvičený\r\nnacvičit\r\nnacvičování\r\nnacvičovaný\r\nnacvičovat\r\nnacvičující\r\nnácvik\r\nnácvikový\r\nnacyklostylování\r\nnacyklostylovaný\r\nnacyklostylovat\r\nnacyklostylovávání\r\nnacyklostylovávaný\r\nnacyklostylovávat\r\nnač\r\nnačadit\r\nnačančaný\r\nnačapání\r\nnačapaný\r\nnačapat\r\nnačárat\r\nnačárnout\r\nnačárnutí\r\nnačas\r\nnačase\r\nnačasování\r\nnačasovaný\r\nnačasovat\r\nnačasovávání\r\nnačasovávaný\r\nnačasovávat\r\nnačatý\r\nnačazení\r\nnačazený\r\nnačechranější\r\nnačechrání\r\nnačechraný\r\nnačechrat\r\nnačechrávání\r\nnačechrávaný\r\nnačechrávat\r\nnačekání\r\nnačekat\r\nnáčelnice\r\nnáčelnický\r\nnáčelničin\r\nnáčelničtější\r\nnáčelník\r\nnáčelníkův\r\nnačepování\r\nnačepovaný\r\nnačepovat\r\nnačepýřenější\r\nnačepýření\r\nnačepýřený\r\nnačepýřit\r\nnačeradecký\r\nNačeradec\r\nnačernalý\r\nnačernění\r\nnačerněný\r\nnačernit\r\nnačerno\r\nnačerpání\r\nnačerpaný\r\nnačerpat\r\nnačerpávání\r\nnačerpávaný\r\nnačerpávat\r\nnačervenalejší\r\nnačervenalý\r\nnačervenání\r\nnačervenat\r\nnačervenění\r\nnačerveněný\r\nnačervenit\r\nnačesanější\r\nnačesání\r\nnačesaný\r\nnačesat\r\nnačesávací\r\nnačesávání\r\nnačesávaný\r\nnačesávat\r\nnačesnekovat\r\nnačetí\r\nnačež\r\nnačichání\r\nnačichaný\r\nnačichat\r\nnačichlejší\r\nnačichlý\r\nnačichnout\r\nnačichnutí\r\nnačínání\r\nnačínaný\r\nnačínat\r\nnáčinek\r\nnáčiní\r\nnačíst\r\nnačisto\r\nnačítající\r\nnačítání\r\nnačítaný\r\nnačítat\r\nnačít\r\nnačmárání\r\nnačmáraný\r\nnačmárat\r\nnačmárnout\r\nnačmárnutí\r\nnačmárnutý\r\nnačpak\r\nnačpělý\r\nnačrtání\r\nnačrtaný\r\nnačrtat\r\nnačrtávání\r\nnačrtávaný\r\nnačrtávat\r\nnáčrtek\r\nnáčrt\r\nnáčrtkovitý\r\nnáčrtník\r\nnačrtnout\r\nnačrtnutí\r\nnačrtnutý\r\nnačrtnutý\r\nnáčrtový\r\nnačtenější\r\nnačtení\r\nnačtený\r\nnačuchlejší\r\nnačutnout\r\nnačutnutí\r\nnačutnutý\r\nnad\r\nnadabování\r\nnadabovaný\r\nnadabovat\r\nnadace\r\nnadační\r\nnadále\r\nnadálejší\r\nnadanější\r\nnadání\r\nnadání\r\nnadaný\r\nnadaný\r\nnadarmo\r\nnadát\r\nnadat\r\nnadávající\r\nnadávanější\r\nnadávání\r\nnadávaný\r\nnadávat\r\nnádavek\r\nnadávení\r\nnadávený\r\nnadávit\r\nnadávka\r\nnadávkování\r\nnadávkovaný\r\nnadávkovat\r\nnadávkovávání\r\nnadávkovávaný\r\nnadávkovávat\r\nNaďa\r\nnadběhnout\r\nnadběhnutí\r\nnadbíhající\r\nnadbíhanější\r\nnadbíhání\r\nnadbíhaný\r\nnadbíhat\r\nnadbíhávání\r\nnadbíhávaný\r\nnadbíhávat\r\nnadbytečnější\r\nnadbytečný\r\nnadbytek\r\nnadbytost\r\nnadčasový\r\nnadčesanější\r\nnadčesání\r\nnadčesaný\r\nnadčesat\r\nnadčesávání\r\nnadčesávaný\r\nnadčesávat\r\nnadčlověče\r\nnadčlověk\r\nnadčlověka\r\nnadčlověkem\r\nnadčlověku\r\nnadčsový\r\nnaddásňový\r\nnade\r\nnadefinovanější\r\nnadefinování\r\nnadefinovaný\r\nnadefinovat\r\nnadefinovatelnější\r\nnadefinovatelný\r\nnadefinovávanější\r\nnadefinovávání\r\nnadefinovávaný\r\nnadefinovávat\r\nnadehnal\r\nnadehnán\r\nnadehnat\r\nnadehtování\r\nnadehtovaný\r\nnadehtovat\r\nnadehvězdný\r\nnádech\r\nnadechnout\r\nnadechnutější\r\nnadechnutí\r\nnadechnutý\r\nnadechování\r\nnadechovaný\r\nnadechovat\r\nnadechovávání\r\nnadechovávaný\r\nnadechovávat\r\nnádechový\r\nnadejda\r\nnadejdu\r\nnadějeplnější\r\nnadějeplný\r\nnaděje\r\nnaději\r\nnadějíplnější\r\nnadejít\r\nnadejití\r\nNadějkov\r\nnadějkovský\r\nnadějnější\r\nnadějný\r\nNadějov\r\nnadějovský\r\nnaděj\r\nnadeklarování\r\nnadeklarovaný\r\nnadeklarovat\r\nnadekretování\r\nnadekretovaný\r\nnadekretovat\r\nnadél\r\nnadělání\r\nnadělaný\r\nnadělat\r\nnadělávání\r\nnadělávaný\r\nnadělávat\r\nnadělenější\r\nnadělení\r\nnadělený\r\nnadělit\r\nnadělitelnější\r\nnadělitelný\r\nnaděl\r\nnadělovací\r\nnadělovanější\r\nnadělování\r\nnadělovaný\r\nnadělovat\r\nnadělovatelnější\r\nnadělovatelný\r\nnadělovávání\r\nnadělovávaný\r\nnadělovávat\r\nnadělující\r\nnádenice\r\nnádenický\r\nnádeničení\r\nnádeničený\r\nnádeničina\r\nnádeničin\r\nnádeničit\r\nnádeničtější\r\nNádeníková\r\nnádeník\r\nNádeník\r\nNádeníkův\r\nnádeníkův\r\nnadepisovanější\r\nnadepisování\r\nnadepisovaný\r\nnadepisovat\r\nnadepisující\r\nnadepíši\r\nnadepíšu\r\nnadepsal\r\nnadepsanější\r\nnadepsanější\r\nnadepsání\r\nnadepsán\r\nnadepsaný\r\nnadepsáný\r\nnadepsat\r\nnaděrování\r\nnaděrovaný\r\nnaděrovat\r\nnadešel\r\nnadešlejší\r\nnadešlý\r\nnadeutektický\r\nnadeutektičtější\r\nnadevše\r\nnadevšecko\r\nnadezdívka\r\nNaděžda\r\nNaděždin\r\nnadeženu\r\nnadfakturování\r\nnadfakturovaný\r\nnadfakturovat\r\nnadgrupa\r\nnadhaněč\r\nnadháněč\r\nnadhaněčův\r\nnadháněčův\r\nnadhánějící\r\nnadháněnější\r\nnadhánění\r\nnadháněný\r\nnadhánět\r\nnadháňka\r\nnadhazovač\r\nnadhazovačův\r\nnadhazování\r\nnadhazovaný\r\nnadhazovat\r\nnadhazující\r\nnádhera\r\nnádhernější\r\nnádherný\r\nnadhladinový\r\nnadhlavník\r\nnadhled\r\nnadhmat\r\nnadhmotný\r\nnadhodit\r\nnadhodnocenější\r\nnadhodnocení\r\nnadhodnocený\r\nnadhodnocovanější\r\nnadhodnocování\r\nnadhodnocovaný\r\nnadhodnocovat\r\nnadhodnocující\r\nnadhodnota\r\nnadhodnotit\r\nnadhozenější\r\nnadhození\r\nnadhozený\r\nnadhoz\r\nnadhraniční\r\nnadhvězdnější\r\nnadhvězdný\r\nnadcházející\r\nnadcházení\r\nnadcházet\r\nnadcházívat\r\nnadcházka\r\nnadchnout\r\nnadchnutí\r\nnadchnutý\r\nnadchod\r\nnadiktování\r\nnadiktovaný\r\nnadiktovat\r\nnadílení\r\nnadílka\r\nnadimenzování\r\nnadimenzovaný\r\nnadimenzovat\r\nnadindividuálnější\r\nNadin\r\nnadir\r\nnaditější\r\nnadít\r\nnaditý\r\nnadívání\r\nnadívaný\r\nnadívat\r\nnádivka\r\nnádivkový\r\nnadivoko\r\nnadjedu\r\nnadjel\r\nnadjení\r\nnadjetější\r\nnadjet\r\nnadjetí\r\nnadjetý\r\nnadjezd\r\nnadjezdnější\r\nnadjezdní\r\nnadjezdný\r\nnadjezdový\r\nnadjíždění\r\nnadjížděný\r\nnadjíždět\r\nnadjížďka\r\nnadkmen\r\nnadkmenový\r\nnadkonfesní\r\nnadkotlový\r\nnadkrajový\r\nnadkritický\r\nnadlábnout\r\nnadlábnutí\r\nnadlábnutý\r\nnadledvina\r\nnadledvinka\r\nnadledvinkový\r\nnadledvinový\r\nnadledviny\r\nnadlehčenější\r\nnadlehčení\r\nnadlehčený\r\nnadlehčit\r\nnadlehčování\r\nnadlehčovat\r\nnadlehčující\r\nnadlepšit\r\nnadlepšovat\r\nnadlesní\r\nnadlétávat\r\nnadlétnout\r\nnadlézající\r\nnadlézání\r\nnadlézat\r\nnadlezení\r\nnadlézt\r\nnadlidé\r\nnadlidech\r\nnadlidem\r\nnadlidi\r\nnadlidí\r\nnadlidmi\r\nnadlidský\r\nnadlidštější\r\nnadlimitní\r\nnadlítávat\r\nnadloktí\r\nnadloubání\r\nnadloubaný\r\nnadloubat\r\nnadloubávání\r\nnadloubávaný\r\nnadloubávat\r\nnadlouho\r\nnadloží\r\nnadložní\r\nnadměrek\r\nnadměrnější\r\nnadměrný\r\nnadmíru\r\nnadmnožina\r\nnadmonopol\r\nnadmořský\r\nnadmout\r\nnadmutější\r\nnadmutí\r\nnadmutí\r\nnadmutý\r\nnadmutý\r\nnadnárodní\r\nnadnářečí\r\nnadnářeční\r\nnadnášející\r\nnadnášenější\r\nnadnášení\r\nnadnášený\r\nnadnášet\r\nnadnesenější\r\nnadnesení\r\nnadnesený\r\nnadnést\r\nnadnormální\r\nnadnormativní\r\nnaďobat\r\nnádoba\r\nnádobí\r\nnádobíčko\r\nnádobka\r\nnadoblačný\r\nnadoblast\r\nnádobový\r\nnadobro\r\nnadobyčej\r\nnadobyčejný\r\nnadocasní\r\nnadočnicový\r\nnadočník\r\nnadoční\r\nnadojení\r\nnadojený\r\nnadojit\r\nnadolovat\r\nnadoraz\r\nnádorek\r\nnadorganismus\r\nnádor\r\nnádorovitý\r\nnádorový\r\nnadosobnější\r\nnadosobní\r\nnadout\r\nnadouvadlo\r\nnadouvající\r\nnadouvání\r\nnadouvaný\r\nnadouvat\r\nnadpis\r\nnadpisování\r\nnadpisovaný\r\nnadpisovat\r\nnadpisový\r\nnadpisující\r\nnadplán\r\nnadplocha\r\nnadpočet\r\nnadpočetnější\r\nnadpočetný\r\nnadpočet\r\nnadpodnikový\r\nnadpolitický\r\nnadpoloviční\r\nnadporučice\r\nnadporučičin\r\nnadporučík\r\nnadporučíkův\r\nnadpozemský\r\nnadpozemštější\r\nnadpráce\r\nnadpracemi\r\nnadprací\r\nnadpráci\r\nnadpracích\r\nnadpracím\r\nnadpraporčice\r\nnadpraporčík\r\nnadpraporčíkův\r\nnadproducent\r\nnadproducentův\r\nnadprodukce\r\nnadprodukt\r\nnadproduktivní\r\nnadproudový\r\nnadprůměr\r\nnadprůměrnější\r\nnadprůměrný\r\nnadpřirozenější\r\nnadpřirozeno\r\nnadpřirozený\r\nnadranc\r\nnadranější\r\nnadraní\r\nnadrání\r\nnadraný\r\nnadrápanější\r\nnadrápání\r\nnadrápaný\r\nnadrápat\r\nnadrat\r\nňadratější\r\nnadra\r\nnádražíčko\r\nnádraží\r\nnadrážkovat\r\nnádražní\r\nnadrbání\r\nnadrbaný\r\nnadrbat\r\nnadrbávání\r\nnadrbávaný\r\nnadrbávat\r\nnadrcení\r\nnadrcený\r\nnadrealismus\r\nnadrealista\r\nnadrealistčin\r\nnadrealistický\r\nnadrealistka\r\nnadrealistův\r\nnadreálnější\r\nnadregionální\r\nnadresortní\r\nnadrchání\r\nnadrchaný\r\nnadrchat\r\nnadrnkat\r\nnadrobení\r\nnadrobený\r\nnadrobit\r\nnadrobno\r\nnadrogování\r\nnadrogovaný\r\nnadrogovat\r\nnadrolení\r\nnadrolený\r\nnadrolit\r\nňadro\r\nnadrotmistr\r\nnadrotmistrův\r\nnadrovina\r\nnadrozměrnější\r\nnadrozměrný\r\nnadrozpočtový\r\nnadrtit\r\nnadržencův\r\nnadrženec\r\nnadrženější\r\nnadržený\r\nnádržka\r\nnádržkový\r\nnadržování\r\nnadržovaný\r\nnadržovat\r\nnádržový\r\nnadržující\r\nnádrž\r\nnadřadění\r\nnadřaděný\r\nnadřadit\r\nnadřaďovat\r\nnadřazenější\r\nnadřazení\r\nnadřazený\r\nnadřazování\r\nnadřazovaný\r\nnadřazovat\r\nnadřazující\r\nnadřenější\r\nnadření\r\nnadřený\r\nnadřídit\r\nnadřít\r\nnadřízenější\r\nnadřízení\r\nnadřízený\r\nnadsadit\r\nnadsazenější\r\nnadsazení\r\nnadsazený\r\nnadsázka\r\nnadsazování\r\nnadsazovaný\r\nnadsazovat\r\nnadsíť\r\nnadskakování\r\nnadskakovat\r\nnadskakovávání\r\nnadskakovávaný\r\nnadskakovávat\r\nnadskočení\r\nnadskočit\r\nnadskupina\r\nnadskutečnější\r\nnadskutečný\r\nnadsmluvní\r\nnadsmyslový\r\nnadspolkový\r\nnadstandard\r\nnadstandardní\r\nnadstát\r\nnadstátnější\r\nnadstátní\r\nnadstavba\r\nnadstavbový\r\nnádstavec\r\nnadstavení\r\nnadstavený\r\nnadstavit\r\nnadstranický\r\nnadstrážmistr\r\nnadstrážmistrův\r\nnadsvětelný\r\nnadsvět\r\nnadšencův\r\nnadšenčin\r\nnadšenec\r\nnadšenečtější\r\nnadšenější\r\nnadšení\r\nnadšenka\r\nnadšenkyně\r\nnadšenkynin\r\nnadšený\r\nnadtěleso\r\nnadtisknout\r\nnadtisknutí\r\nnadtisknutý\r\nnadtištění\r\nnadtištěný\r\nnadto\r\nnadtrhající\r\nnadtrhanější\r\nnadtrhání\r\nnadtrhaný\r\nnadtrhat\r\nnadtrhávající\r\nnadtrhávanější\r\nnadtrhávání\r\nnadtrhávaný\r\nnadtrhávat\r\nnadtrhnout\r\nnadtrhnutější\r\nnadtrhnutí\r\nnadtrhnutý\r\nnadtržení\r\nnadtržený\r\nnadtřída\r\nnadtřídní\r\nnaducanější\r\nnaducání\r\nnaducaný\r\nnaducat\r\nnaducávat\r\nnadupání\r\nnadupaný\r\nnadupaný\r\nnadupat\r\nnadupávání\r\nnadupávaný\r\nnadupávat\r\nnadupu\r\nnádůrek\r\nnadúroda\r\nnadúrovňový\r\nnaduřelejší\r\nnaduřelý\r\nnadutcův\r\nnadutec\r\nnadutější\r\nnadutí\r\nnadutý\r\nnadužívající\r\nnadužívání\r\nnadužívaný\r\nnadužívat\r\nnadváha\r\nnadvakrát\r\nnadvarle\r\nnadvláda\r\nNádvorníková\r\nNádvorník\r\nNádvorníkův\r\nnádvorní\r\nnádvoří\r\nnadvýroba\r\nnadvýrobek\r\nnadýchanější\r\nnadýchání\r\nnadýchaný\r\nnadýchat\r\nnadýchnout\r\nnadýchnutější\r\nnadýchnutí\r\nnadýchnutý\r\nnadýmající\r\nnadýmání\r\nnadýmání\r\nnadýmaný\r\nnadýmat\r\nnadýmavější\r\nnadýmavý\r\nnadzákonný\r\nnadzdvihání\r\nnadzdvihaný\r\nnadzdvihat\r\nnadzdvihávání\r\nnadzdvihávaný\r\nnadzdvihávat\r\nnadzdvihnout\r\nnadzdvihnutí\r\nnadzdvihování\r\nnadzdvihovaný\r\nnadzdvihovat\r\nnadzdvižení\r\nnadzdvižený\r\nnadzemní\r\nnadzemský\r\nnadzemštější\r\nnadzvedání\r\nnadzvedaný\r\nnadzvedat\r\nnadzvedávání\r\nnadzvedávat\r\nnadzvednout\r\nnadzvednutí\r\nnadzvednutý\r\nnadzvukový\r\nnadživotní\r\nnaemailovat\r\nnaemulování\r\nnaemulovaný\r\nnaemulovat\r\nnaevus\r\nnaexponování\r\nnaexponovaný\r\nnaexponovat\r\nnafackování\r\nnafackovaný\r\nnafackovat\r\nnafakturování\r\nňafání\r\nňafaný\r\nnafasování\r\nnafasovaný\r\nnafasovat\r\nňafat\r\nňafavý\r\nnafermežovat\r\nnafialovělý\r\nnafičení\r\nnafičet\r\nnafilmování\r\nnafilmovaný\r\nnafilmovat\r\nnafilmovávání\r\nnafilmovávaný\r\nnafilmovávat\r\nnafintěnější\r\nnafintěný\r\nnafintit\r\nnafládrování\r\nnafládrovaný\r\nnafládrovat\r\nňafnutí\r\nnafocení\r\nnafocený\r\nnaformátování\r\nnaformátovaný\r\nnaformátovat\r\nnaformátovávání\r\nnaformátovávaný\r\nnaformátovávat\r\nnaformulování\r\nnaformulovaný\r\nnaformulovat\r\nnaformulovávání\r\nnaformulovávaný\r\nnaformulovávat\r\nnafotit\r\nnafotografování\r\nnafotografovaný\r\nnafotografovat\r\nnafotografovávání\r\nnafotografovávaný\r\nnafotografovávat\r\nnafoukancův\r\nnafoukanec\r\nnafoukanější\r\nnafoukání\r\nnafoukaný\r\nnafoukat\r\nnafoukávání\r\nnafoukávaný\r\nnafoukávat\r\nnafouklejší\r\nnafouklý\r\nnafouknout\r\nnafouknutější\r\nnafouknutí\r\nnafouknutý\r\nnafrkání\r\nnafrkaný\r\nnafrkat\r\nnafrněný\r\nnaftalen\r\nnaftalenový\r\nnaftalín\r\nnaftalínový\r\nnafta\r\nnaftenický\r\nnafteničtější\r\nnaftoflavon\r\nnaftovod\r\nnaftový\r\nnafučení\r\nnafučet\r\nnáfuka\r\nnafukovací\r\nnafukování\r\nnafukovaný\r\nnafukovat\r\nnafukovávání\r\nnafukovávaný\r\nnafukovávat\r\nnafukující\r\nnáfukův\r\nnagasacký\r\nNagasaki\r\nNágpur\r\nNagyová\r\nNagy\r\nNagyův\r\nnaha\r\nnahačat\r\nnaháč\r\nnaháčův\r\nnahafat\r\nnahajání\r\nnahajaný\r\nnahajat\r\nnaháněcí\r\nnaháněč\r\nnaháněčův\r\nnahánějící\r\nnaháněnější\r\nnahánění\r\nnaháněný\r\nnahánět\r\nnaháňka\r\nnahatější\r\nnahatý\r\nnaházenější\r\nnaházení\r\nnaházený\r\nnaházet\r\nnahazování\r\nnahazovaný\r\nnahazovat\r\nnahladko\r\nnahlas\r\nnahlásit\r\nnahlášenější\r\nnahlášení\r\nnahlášený\r\nnahlašovanější\r\nnahlašovaní\r\nnahlašování\r\nnahlašovaný\r\nnahlašovat\r\nnahlašovávat\r\nnahledat\r\nnahledění\r\nnahledět\r\nnáhled\r\nnahlédnout\r\nnahlédnul\r\nnahlédnutější\r\nnahlédnutí\r\nnahlédnutý\r\nnahlédnutý\r\nnáhledový\r\nnáhlejší\r\nnahlídnout\r\nnahlídnul\r\nnahlížecí\r\nnahlížející\r\nnahlíženější\r\nnahlížení\r\nnahlížený\r\nnahlížet\r\nnahlodanější\r\nnahlodání\r\nnahlodaný\r\nnahlodat\r\nnahlodávání\r\nnahlodávaný\r\nnahlodávat\r\nnahloučení\r\nnahloučený\r\nnahloučit\r\nNáhlov\r\nnáhlovský\r\nnahluchlejší\r\nnahluchlý\r\nnáhlý\r\nnahmatání\r\nnahmataný\r\nnahmatat\r\nnahmatávání\r\nnahmatávaný\r\nnahmatávat\r\nnahmátnout\r\nnahmátnutí\r\nnahmátnutý\r\nnahmoždit\r\nnahnal\r\nnahnanější\r\nnahnání\r\nnahnán\r\nnahnaný\r\nnahnat\r\nnahnědlý\r\nnahněvanější\r\nnahněvání\r\nnahněvaný\r\nnahněvat\r\nnahnilejší\r\nnahniličko\r\nnahnilý\r\nnahnít\r\nnahnití\r\nnahnívání\r\nnahnívaný\r\nnahnívat\r\nnahnout\r\nnahnutější\r\nnahnutí\r\nnahnutý\r\nnáhoda\r\nnáhodička\r\nnahodilejší\r\nnahodilý\r\nnahodit\r\nnáhodnější\r\nnáhodný\r\nnáhodou\r\nnáhoncův\r\nnáhončí\r\nnáhonec\r\nnahonění\r\nnahoněný\r\nnáhon\r\nnahonit\r\nnáhonový\r\nnáhorní\r\nnahoru\r\nnahoře\r\nnahořklejší\r\nnahořklý\r\nnahořknout\r\nnahořknutí\r\nnahosemenný\r\nnahospodaření\r\nnahospodařený\r\nnahospodařit\r\nnahota\r\nnahotina\r\nnahotinka\r\nnahovoření\r\nnahovořený\r\nnahovořit\r\nnahozenější\r\nnahození\r\nnahozený\r\nnahrabanější\r\nnahrabání\r\nnahrabaný\r\nnahrabat\r\nnahrabávání\r\nnahrabávaný\r\nnahrabávat\r\nnáhrada\r\nnahradit\r\nnahraditelnější\r\nnahraditelný\r\nnáhradnější\r\nnáhradnice\r\nnáhradnictví\r\nnáhradničin\r\nnáhradník\r\nnáhradníkův\r\nnáhradní\r\nnáhradní\r\nnáhradový\r\nnahranější\r\nnahrání\r\nnahraný\r\nnahrát\r\nnahrávací\r\nnahrávačka\r\nnahrávač\r\nnahrávající\r\nnahrávanější\r\nnahrávání\r\nnahrávaný\r\nnahrávat\r\nnahrávka\r\nnahrazení\r\nnahrazený\r\nnahrazovací\r\nnahrazování\r\nnahrazovaný\r\nnahrazovat\r\nnahrazující\r\nnáhražka\r\nnáhražkovitý\r\nnáhražkový\r\nnahrbenější\r\nnahrbení\r\nnahrbený\r\nnahrbit\r\nnahrblejší\r\nnáhrdelník\r\nnahrkat\r\nnahrnout\r\nnahrnování\r\nnahrnovat\r\nnahrnutí\r\nnahrnutý\r\nnáhrobek\r\nnáhrobní\r\nnahromadění\r\nnahromaděný\r\nnahromadit\r\nnahromaďovat\r\nnahrubo\r\nnahryzající\r\nnahryzanější\r\nnahryzání\r\nnahryzaný\r\nnahryzat\r\nnahryzávání\r\nnahryzávaný\r\nnahryzávat\r\nnahřání\r\nnahřát\r\nnahřátí\r\nnahřátý\r\nnahřešení\r\nnahřešený\r\nnahřešit\r\nnahřívací\r\nnahřívání\r\nnahřívaný\r\nnahřívat\r\nnáhubek\r\nnáhubka\r\nnahustit\r\nnahusto\r\nnahuštěnější\r\nnahuštění\r\nnahuštěný\r\nnahušťovat\r\nnahýbací\r\nnahýbající\r\nnahýbání\r\nnahýbat\r\nnahýbávání\r\nnahýbávat\r\nnáhyb\r\nnahýkání\r\nnahýkat\r\nnahý\r\nnacházející\r\nnacházenější\r\nnacházení\r\nnacházený\r\nnacházet\r\nnacházívat\r\nnachechtání\r\nnachechtat\r\nnach\r\nnachládání\r\nnachládat\r\nnachladit\r\nnachladlý\r\nnachladnout\r\nnachladnutí\r\nnachlazenější\r\nnachlazení\r\nnachlazený\r\nnachlazovat\r\nnachlup\r\nnachmelenější\r\nnáchod\r\nnachodit\r\nNáchod\r\nNáchodsko\r\nnáchodský\r\nnachomýtnout\r\nnachomýtnutí\r\nnachový\r\nnachození\r\nnachozený\r\nnachrchlání\r\nnachrchlat\r\nnachrlení\r\nnachvat\r\nnachýlenější\r\nnachýlení\r\nnachýlený\r\nnachýlit\r\nnáchylnější\r\nnáchylný\r\nnachylovanější\r\nnachylování\r\nnachylovaný\r\nnachylovat\r\nnachylovávání\r\nnachylovávaný\r\nnachylovávat\r\nnachylující\r\nnachystání\r\nnachystaný\r\nnachystat\r\nnachytanější\r\nnachytání\r\nnachytaný\r\nnachytat\r\nnachytávání\r\nnachytávaný\r\nnachytávat\r\nnaimportování\r\nnaimportovaný\r\nnaimportovat\r\nnaimpregnování\r\nnaimpregnovaný\r\nnaimpregnovat\r\nnaindukování\r\nnaindukovat\r\nnainstalovanější\r\nnainstalování\r\nnainstalovaný\r\nnainstalovat\r\nnainstalovávání\r\nnainstalovávaný\r\nnainstalovávat\r\nnainstalující\r\nnainvestování\r\nNairobi\r\nnairobský\r\nnaiva\r\nnaivčin\r\nnaivismus\r\nnaivista\r\nnaivistčin\r\nnaivistický\r\nnaivističtější\r\nnaivistka\r\nnaivistův\r\nnaivita\r\nnaivizující\r\nnaivka\r\nnaivkův\r\nnaivnější\r\nnaivní\r\nnajal\r\nnajatější\r\nnajat\r\nnajatý\r\nnajatý\r\nNajbrtová\r\nNajbrt\r\nNajbrtův\r\nnajda\r\nnajdu\r\nnajedenější\r\nnajedení\r\nnajedený\r\nnajednou\r\nnajedu\r\nnajel\r\nnájemce\r\nnájemcův\r\nnájemkyně\r\nnájemkynin\r\nnájemné\r\nnájemnice\r\nnájemnický\r\nnájemničin\r\nNájemníková\r\nnájemník\r\nNájemník\r\nNájemníkův\r\nnájemníkův\r\nnájemní\r\nnájemný\r\nnájem\r\nnajení\r\nnajetější\r\nnajet\r\nnajetí\r\nnajetý\r\nnajevo\r\nnajezdění\r\nnajezděný\r\nnájezd\r\nnajezdit\r\nnájezdnictví\r\nnájezdník\r\nnájezdníkův\r\nnájezdní\r\nnájezdný\r\nnájezdový\r\nnajezenější\r\nnaježenější\r\nnaježení\r\nnaježený\r\nnaježit\r\nnajímající\r\nnajímanější\r\nnajímání\r\nnajímaný\r\nnajímatelnější\r\nnajímatelný\r\nnajímat\r\nnajíst\r\nnajisto\r\nnajít\r\nnajití\r\nnajížděcí\r\nnajíždějící\r\nnajíždění\r\nnajíždět\r\nNajmanová\r\nNajman\r\nNajmanův\r\nnajmenovanější\r\nnajmenování\r\nnajmenovaný\r\nnajmenovat\r\nnajmout\r\nnajmu\r\nnajmutí\r\nnajodovat\r\nnajódovat\r\nnajust\r\nNajvrtová\r\nNajvrt\r\nNajvrtův\r\nnakadeření\r\nnakadeřený\r\nnakadeřit\r\nnakalafunování\r\nnakalafunovaný\r\nnakalafunovat\r\nnakalibrování\r\nnakalibrovaný\r\nnakalibrovat\r\nnakamuflovat\r\nnakapanější\r\nnakapání\r\nnakapaný\r\nnakapat\r\nnakapávání\r\nnakapávaný\r\nnakapávat\r\nnakapsování\r\nnakapsovaný\r\nnakapsovat\r\nnakapu\r\nnakašírování\r\nnakašírovaný\r\nnakašírovat\r\nnakašlání\r\nnakašlat\r\nnakázanější\r\nnakázání\r\nnakázán\r\nnakázaný\r\nnakázat\r\nnakazatelnější\r\nnakazatelný\r\nnákaza\r\nnakazit\r\nnakazovací\r\nnakazovanější\r\nnakazování\r\nnakazovaný\r\nnakazovat\r\nnákazový\r\nnakazující\r\nnakažení\r\nnakažený\r\nnakáži\r\nnakažlivější\r\nnakažlivý\r\nnakdákání\r\nnakdákaný\r\nnakdákat\r\nnakecání\r\nnakecat\r\nnakejhat\r\nnakeťasení\r\nnakeťasit\r\nnakládací\r\nnáklaďáček\r\nnakladačka\r\nnakládačka\r\nnakladač\r\nnakládač\r\nnakládající\r\nnáklaďák\r\nnakládanější\r\nnakládání\r\nnakládaný\r\nnakladatelčin\r\nnakladatelka\r\nnakladatelnější\r\nnakladatelný\r\nnakladatelský\r\nnakladatelství\r\nnakladatelštější\r\nnakladatel\r\nnakladatelův\r\nnakládat\r\nnakladení\r\nnakladený\r\nnáklad\r\nnáklad\r\nnákladiště\r\nnakládka\r\nnakládkovější\r\nnakládkový\r\nnákladnější\r\nnákladnický\r\nnákladní\r\nnákladný\r\nnákladovější\r\nnákladový\r\nnaklánějící\r\nnaklánění\r\nnakláněný\r\nnaklánět\r\nnaklápění\r\nnaklápěný\r\nnaklápět\r\nnaklást\r\nnaklepanější\r\nnaklepání\r\nnaklepaný\r\nnaklepat\r\nnaklepávací\r\nnaklepávač\r\nnaklepávající\r\nnaklepávanější\r\nnaklepávání\r\nnaklepávaný\r\nnaklepávat\r\nnaklepnout\r\nnaklepnutější\r\nnaklepnutí\r\nnaklepnutý\r\nnaklepnutý\r\nnaklíčenější\r\nnaklíčení\r\nnaklíčený\r\nnaklíčit\r\nnakličování\r\nnaklíčování\r\nnakličovaný\r\nnaklíčovaný\r\nnakličovat\r\nnaklíčovat\r\nnaklikání\r\nnaklikat\r\nnaklikávání\r\nnaklikávaný\r\nnaklikávat\r\nnaklížit\r\nnakližovací\r\nnakližování\r\nnakližovaný\r\nnakližovat\r\nnaklofat\r\nNáklo\r\nnakloněnější\r\nnaklonění\r\nnakloněný\r\nnáklon\r\nnaklonit\r\nnáklonnost\r\nnaklonování\r\nnaklonovaný\r\nnaklonovat\r\nnaklopení\r\nnaklopený\r\nnaklopit\r\nnáklopný\r\nnaklopýtání\r\nnaklopýtat\r\nnaklouzání\r\nnaklouzat\r\nnaklovávání\r\nnaklovávaný\r\nnaklovávat\r\nnaklusání\r\nnaklusat\r\nnakmitání\r\nnakmitaný\r\nnakmitat\r\nnakmitávání\r\nnakmitávaný\r\nnakmitávat\r\nnakodrcání\r\nnakodrcaný\r\nnakodrcat\r\nnakojenější\r\nnakojení\r\nnakojený\r\nnakojit\r\nnákolek\r\nnákolenice\r\nnákolenka\r\nnakolik\r\nnakomandovat\r\nnakombinovanější\r\nnakombinování\r\nnakombinovaný\r\nnakombinovat\r\nnakonec\r\nnakonfigurovanější\r\nnakonfigurování\r\nnakonfigurovaný\r\nnakonfigurovat\r\nnakonfigurovávání\r\nnakonfigurovávaný\r\nnakonfigurovávat\r\nnakontaktování\r\nnakontaktovaný\r\nnakontaktovat\r\nnakonzervování\r\nnakonzervovaný\r\nnakonzervovat\r\nnakopanější\r\nnakopání\r\nnakopaný\r\nnakopat\r\nnakopávající\r\nnakopávání\r\nnakopávaný\r\nnakopávat\r\nnakopírovanější\r\nnakopírování\r\nnakopírovaný\r\nnakopírovat\r\nnakopírovávat\r\nnakopnout\r\nnakopnutí\r\nnakopnutý\r\nnakosení\r\nnakosený\r\nnakosit\r\nnakoso\r\nnákotník\r\nnakoukání\r\nnakoukaný\r\nnakoukat\r\nnakouknout\r\nnakouknutí\r\nnakoulení\r\nnakoulený\r\nnakoulet\r\nnakoupení\r\nnakoupený\r\nnakoupit\r\nnakouření\r\nnakouřený\r\nnakouřit\r\nnakousanější\r\nnakousání\r\nnakousaný\r\nnakousat\r\nnakousávající\r\nnakousávanější\r\nnakousávání\r\nnakousávaný\r\nnakousávat\r\nnakouskování\r\nnakouskovaný\r\nnakouskovat\r\nnakousnout\r\nnakousnutější\r\nnakousnutí\r\nnakousnutý\r\nnakousnutý\r\nnakoušu\r\nnákovek\r\nnakrabacení\r\nnakrabacený\r\nnakrabatit\r\nnakráčení\r\nnakráčený\r\nnakráčet\r\nnakračování\r\nnakradenější\r\nnakradení\r\nnakradený\r\nnakrájenější\r\nnakrájení\r\nnakrájený\r\nnakrájet\r\nnakrajování\r\nnakrajovaný\r\nnakrajovat\r\nnakrajovávání\r\nnakrajovávaný\r\nnakrajovávat\r\nnakrápěcí\r\nnakrásně\r\nnakrást\r\nnakrátko\r\nnakrčenější\r\nnakrčení\r\nnakrčený\r\nnakrčit\r\nnákrčník\r\nnákrčníkový\r\nnakrémovat\r\nnákres\r\nnakreslenější\r\nnakreslení\r\nnakreslený\r\nnakreslit\r\nnákresna\r\nnakritizoval\r\nnakrknout\r\nnakrknutí\r\nnakrknutý\r\nnakrmení\r\nnakrmený\r\nnakrmit\r\nnakročení\r\nnakročený\r\nnakročit\r\nnakropení\r\nnakropený\r\nnakropit\r\nnakroucení\r\nnakroucený\r\nnakrouhání\r\nnakrouhaný\r\nnakrouhat\r\nnakrouhávání\r\nnakrouhávaný\r\nnakrouhávat\r\nnakroutit\r\nnakrucování\r\nnakrucovaný\r\nnakrucovat\r\nnakrvácení\r\nnakrvácet\r\nnakřapat\r\nnakřápat\r\nnakřaplý\r\nnakřáplý\r\nnakřapnout\r\nnakřápnout\r\nnakřápnutější\r\nnakřápnutý\r\nnakřečkovat\r\nnakřesající\r\nnakřesanější\r\nnakřesání\r\nnakřesaný\r\nnakřesat\r\nnakřesávající\r\nnakřesávanější\r\nnakřesávání\r\nnakřesávaný\r\nnakřesávat\r\nnakřídování\r\nnakřídovaný\r\nnakřídovat\r\nnakřídovávání\r\nnakřídovávaný\r\nnakřídovávat\r\nnakřivo\r\nnakukání\r\nnakukaný\r\nnakukat\r\nnakukávání\r\nnakukávat\r\nnakukování\r\nnakukovat\r\nnakulení\r\nnakulený\r\nnakulhání\r\nnakulhat\r\nnakulhávání\r\nnakulhávat\r\nnakulit\r\nnakulmování\r\nnakulmovaný\r\nnakulmovat\r\nnakumulování\r\nnakumulovaný\r\nnakumulovat\r\nnákupce\r\nnákupcův\r\nnákupčí\r\nnakupenina\r\nnakupení\r\nnakupený\r\nnákup\r\nnakupit\r\nnákupní\r\nnakupovací\r\nnakupování\r\nnakupovaný\r\nnakupovat\r\nnakupující\r\nnakuřování\r\nnakuřovaný\r\nnakuřovat\r\nnakusovat\r\nnakutálení\r\nnakutálený\r\nnakutálet\r\nnakutání\r\nnakutaný\r\nnakutat\r\nnakvap\r\nnakvasit\r\nnakvašenější\r\nnakvašení\r\nnakvášení\r\nnakvašený\r\nnakvašování\r\nnakvašovaný\r\nnakvašovat\r\nnakvedlání\r\nnakvedlaný\r\nnakvedlat\r\nnakvedlávání\r\nnakvedlávaný\r\nnakvedlávat\r\nnakvétající\r\nnakvétání\r\nnakvétat\r\nnakvíkat\r\nnakvrdlat\r\nnakydání\r\nnakydaný\r\nnakydat\r\nnakydávání\r\nnakydávaný\r\nnakydávat\r\nnakýchání\r\nnakýchat\r\nnakymácet\r\nnakynout\r\nnakynulý\r\nnakynutější\r\nnakynutí\r\nnakynutý\r\nnakypělý\r\nnákyp\r\nnakypření\r\nnakypřený\r\nnakypřit\r\nnakysání\r\nnakysaný\r\nnakysat\r\nnakyselo\r\nnakyslejší\r\nnakyslý\r\nnakysnout\r\nnakysnutí\r\nnalačno\r\nnálada\r\nnaladěnější\r\nnaladění\r\nnaladěný\r\nnáladička\r\nnaladit\r\nnáladotvorný\r\nnaládování\r\nnaládovaný\r\nnaládovat\r\nnáladový\r\nnalahvování\r\nnaláhvování\r\nnalahvovaný\r\nnaláhvovaný\r\nnalahvovat\r\nnaláhvovat\r\nnalajdat\r\nnalajnování\r\nnalajnovaný\r\nnalajnovat\r\nnalákání\r\nnalákaný\r\nnalákat\r\nnalakování\r\nnalakovaný\r\nnalakovat\r\nnalakovávání\r\nnalakovávaný\r\nnalakovávat\r\nnalámání\r\nnalámaný\r\nnalámat\r\nnalamentovat\r\nnalaminovat\r\nnalamovat\r\nnaléčení\r\nnaléčený\r\nnaléčit\r\nnáledí\r\nnaléhající\r\nnaléhání\r\nnaléhat\r\nnaléhávání\r\nnaléhávat\r\nnaléhavější\r\nnaléhavý\r\nnalehko\r\nnalehnout\r\nnalehnutí\r\nnalepení\r\nnalepený\r\nnalepit\r\nnálepka\r\nnálepkování\r\nnálepkovaný\r\nnálepkovat\r\nnálepkový\r\nnalepovací\r\nnalepování\r\nnalepovaný\r\nnalepovat\r\nnaleptání\r\nnaleptaný\r\nnaleptat\r\nnaleptávání\r\nnaleptávaný\r\nnaleptávat\r\nnaleštění\r\nnaleštěný\r\nnaleštit\r\nnalétání\r\nnalétaný\r\nnalétat\r\nnalétávající\r\nnalétávání\r\nnalétávat\r\nnaletění\r\nnaletěný\r\nnaletět\r\nnálet\r\nnalétnout\r\nnalétnutí\r\nnaletování\r\nnaletovaný\r\nnaletovat\r\nnáletový\r\nnalévací\r\nnalévačka\r\nnalévající\r\nnalévání\r\nnalévaný\r\nnalévat\r\nnálev\r\nnálevka\r\nnálevkovitý\r\nnálevkový\r\nnálevna\r\nnálevník\r\nnálevníkův\r\nnálevní\r\nnalevo\r\nnalézací\r\nnalézající\r\nnalézanější\r\nnalézání\r\nnalézaný\r\nnalézat\r\nnálezce\r\nnálezcův\r\nnalezencův\r\nnalezenčin\r\nnalezenec\r\nnalezenější\r\nnalezení\r\nnalezenka\r\nnalezen\r\nnalezený\r\nnález\r\nnalezinec\r\nnaleziště\r\nnálezkyně\r\nnálezkynin\r\nnálezné\r\nnaleznout\r\nnálezový\r\nnalézt\r\nnalézt\r\nnaležato\r\nnáležející\r\nnaležení\r\nnáležení\r\nnaležený\r\nnáležet\r\nnaležet\r\nnáležící\r\nnáležitější\r\nnáležitý\r\nnalhal\r\nnalhanější\r\nnalhaní\r\nnalhání\r\nnalhán\r\nnalhaný\r\nnalháný\r\nnalhat\r\nnalhávající\r\nnalhávanější\r\nnalhávaní\r\nnalhávání\r\nnalhávaný\r\nnalhávat\r\nnalíc\r\nnalíčenější\r\nnalíčení\r\nnalíčený\r\nnalíčit\r\nnalinkovanější\r\nnalinkování\r\nnalinkovaný\r\nnalinkovat\r\nnalinkovávání\r\nnalinkovávaný\r\nnalinkovávat\r\nnalisování\r\nnalisovaný\r\nnalisovat\r\nnalistování\r\nnalistovaný\r\nnalistovat\r\nnalítání\r\nnalítaný\r\nnalítat\r\nnalítávat\r\nnalít\r\nnalitější\r\nnálitek\r\nnalití\r\nnalítnout\r\nnalítnutí\r\nnalit\r\nnalitý\r\nnalívanější\r\nnalívání\r\nnalívaný\r\nnalívat\r\nnalkání\r\nnalkat\r\nnalodění\r\nnaloděný\r\nnalodit\r\nnaloďování\r\nnaloďovaný\r\nnaloďovat\r\nnalokání\r\nnalokaný\r\nnalokat\r\nnalomenější\r\nnalomení\r\nnalomený\r\nnalomit\r\nnalopotit\r\nnalosování\r\nnalosovaný\r\nnalosovat\r\nnaloupání\r\nnaloupaný\r\nnaloupat\r\nnaloupení\r\nnaloupený\r\nnaloupit\r\nnalovení\r\nnalovený\r\nnalovit\r\nnaložení\r\nnaložený\r\nnaložit\r\nnáložka\r\nnáložný\r\nnálož\r\nnaluštění\r\nnaluštěný\r\nnaluštit\r\nnaluxování\r\nnaluxovaný\r\nnaluxovat\r\nnalykání\r\nnalykaný\r\nnalyžování\r\nnalyžovaný\r\nnalyžovat\r\nnalžu\r\nnám\r\nňam\r\nnamáčecí\r\nnamáčení\r\nnamáčený\r\nnamáčet\r\nnamačkanější\r\nnamačkání\r\nnamačkaný\r\nnamačkat\r\nnamačkávání\r\nnamačkávaný\r\nnamačkávat\r\nnamáčknout\r\nnamáčknutí\r\nnamáčknutý\r\nnamáhající\r\nnamáhanější\r\nnamáhání\r\nnamáhaný\r\nnamáhat\r\nnamáhavější\r\nnamáhavý\r\nnámaha\r\nnamakání\r\nnamakat\r\nnamále\r\nnamalování\r\nnamalovaný\r\nnamalovat\r\nnamanout\r\nnamanutí\r\nnamapování\r\nnamapovaný\r\nnamapovat\r\nnamapovávání\r\nnamapovávaný\r\nnamapovávat\r\nnamasírování\r\nnamasírovaný\r\nnamasírovat\r\nnamaskování\r\nnamaskovaný\r\nnamaskovat\r\nnamastit\r\nnamaštění\r\nnamaštěný\r\nnamátkou\r\nnamátkovější\r\nnamátkový\r\nnamatlání\r\nnamatlaný\r\nnamatlat\r\nnamatlávání\r\nnamatlávaný\r\nnamatlávat\r\nnamazanější\r\nnamazání\r\nnamazaný\r\nnamazat\r\nnamáznout\r\nnamáznutí\r\nnamáznutý\r\nnaměkko\r\nnaměklý\r\nnámel\r\nnámelový\r\nnamelu\r\nnáměr\r\nnáměrný\r\nnáměrový\r\nnaměřenější\r\nnaměření\r\nnaměřený\r\nnaměřit\r\nnáměsíčnice\r\nnáměsíčnický\r\nnáměsíčničin\r\nnáměsíčník\r\nnáměsíčníkův\r\nnáměsíčný\r\nnamést\r\nnáměstek\r\nnáměstíčko\r\nnáměstí\r\nnáměstkův\r\nnáměstkyně\r\nnáměstkynin\r\nnáměšťský\r\nNáměšť\r\nnametání\r\nnametaný\r\nnametat\r\nnametávání\r\nnametávaný\r\nnametávat\r\nnametení\r\nnametený\r\nnámět\r\nnámětový\r\nnámezdník\r\nnámezdníkův\r\nnámezdní\r\nnámezdný\r\nnámi\r\nNamibie\r\nNamibijcův\r\nNamibijčin\r\nNamibijec\r\nNamibijka\r\nnamibijský\r\nnamíchanější\r\nnamíchání\r\nnamíchaný\r\nnamíchat\r\nnamíchávání\r\nnamíchávaný\r\nnamíchávat\r\nnamíchnout\r\nnamíření\r\nnamířený\r\nnamířit\r\nnamístě\r\nnamísto\r\nnamítající\r\nnamítanější\r\nnamítání\r\nnamítaný\r\nnamítat\r\nnámitka\r\nnámitkový\r\nnamítnout\r\nnamítnutější\r\nnamítnutí\r\nnamítnutý\r\nnamítnutý\r\nnamixovanější\r\nnamixování\r\nnamixovaný\r\nnamixovat\r\nnamlácení\r\nnamlácený\r\nnamlátit\r\nnamlel\r\nnamlení\r\nnamletější\r\nnamletí\r\nnamlet\r\nnamletý\r\nnamletý\r\nnamlít\r\nnamlouvací\r\nnamlouvání\r\nnamlouvaný\r\nnamlouvat\r\nnamlsání\r\nnamlsaný\r\nnamlsat\r\nnamluvení\r\nnamluvený\r\nnamluvit\r\nnámluvy\r\nnamnoze\r\nnamnožení\r\nnamnožený\r\nnamnožit\r\nnamnožovací\r\nnamnožování\r\nnamnožovaný\r\nnamnožovat\r\nnamoci\r\nnamočení\r\nnamočený\r\nnamočit\r\nnamodelování\r\nnamodelovaný\r\nnamodelovat\r\nnamodelovávání\r\nnamodelovávaný\r\nnamodelovávat\r\nnamodralejší\r\nnamodralý\r\nnamodrání\r\nnamodrat\r\nnamodro\r\nnamodulování\r\nnamodulovaný\r\nnamodulovat\r\nnamokající\r\nnamokání\r\nnamokat\r\nnamokávání\r\nnamokávaný\r\nnamokávat\r\nnamoklejší\r\nnamoklý\r\nnamoknout\r\nnamoknutí\r\nnamoknutý\r\nnamokřit\r\nnamol\r\nnamontování\r\nnamontovaný\r\nnamontovat\r\nnamontovávání\r\nnamontovávaný\r\nnamontovávat\r\nnamoření\r\nnamořený\r\nnamořit\r\nnámořnický\r\nnámořnictví\r\nnámořnictvo\r\nnámořníček\r\nnámořníčkův\r\nnámořničtější\r\nnámořník\r\nnámořníkův\r\nnámořní\r\nnamotaný\r\nnamotat\r\nnamotávání\r\nnamotávaný\r\nnamotávat\r\nnamouduši\r\nnamouvěru\r\nnamoženější\r\nnamožení\r\nnamožen\r\nnamožený\r\nnámraza\r\nnamrazení\r\nnamrazený\r\nnamrazit\r\nnámrazový\r\nnamrzající\r\nnamrzání\r\nnamrzat\r\nnamrzlejší\r\nnamrzlý\r\nnamrznout\r\nnamrznutí\r\nnamrznutý\r\nnamudrovat\r\nnamydlení\r\nnamydlený\r\nnamydlit\r\nnamyslení\r\nnamyslený\r\nnamyslet\r\nnamyslit\r\nnamyšlencův\r\nnamyšlenec\r\nnamyšlenější\r\nnamýšlení\r\nnamyšlen\r\nnamyšlený\r\nnamýšlený\r\nnamýšlet\r\nnaň\r\nnanaláhvování\r\nnanášecí\r\nnanášející\r\nnanášenější\r\nnanášení\r\nnanášený\r\nnanášet\r\nNančin\r\nnandání\r\nnandaný\r\nnandat\r\nnandávanější\r\nnandavání\r\nnandávání\r\nnandávaný\r\nnandavat\r\nnandávat\r\nnandrolon\r\nnanebevstoupení\r\nnanebevzetí\r\nnanečisto\r\nnanejvýš\r\nnanejvýše\r\nnanesenější\r\nnanesení\r\nnanesený\r\nnanést\r\nnaneštěstí\r\nnanicovatější\r\nnanicovatý\r\nNanka\r\nnanobakterie\r\nnanometr\r\nnanosekunda\r\nnános\r\nnanosit\r\nnánosnice\r\nnanostruktura\r\nnanošení\r\nnanošený\r\nnanotrubička\r\nnanovo\r\nnánožník\r\nnantský\r\nnanuk\r\nnanynčin\r\nnanynka\r\nnaobědvání\r\nnaobědvaný\r\nnaobědvat\r\nnaoblékání\r\nnaoblékaný\r\nnaoblékat\r\nnaobtěžovat\r\nnaoctovaný\r\nnaoctovatělý\r\nnaočkování\r\nnaočkovaný\r\nnaočkovat\r\nnaočkovávání\r\nnaočkovávaný\r\nnaočkovávat\r\nNaOH\r\nnaohýbání\r\nnaohýbaný\r\nnaohýbat\r\nnaohýbávání\r\nnaohýbávat\r\nnaoko\r\nnaokraj\r\nnaoktrojování\r\nnaoktrojovaný\r\nnaoktrojovat\r\nnaolejování\r\nnaolejovaný\r\nnaolejovat\r\nnaolejovávání\r\nnaolejovávaný\r\nnaolejovávat\r\nnaondulování\r\nnaondulovaný\r\nnaondulovat\r\nnaopak\r\nnaordinovanější\r\nnaordinování\r\nnaordinovaný\r\nnaordinovat\r\nnaorientování\r\nnaostro\r\nnaostřenější\r\nnaostření\r\nnaostřený\r\nnaostřit\r\nnaostřování\r\nnaostřovaný\r\nnaostřovat\r\nnaostřovávat\r\nnapadající\r\nnapadanější\r\nnapadání\r\nnapadaný\r\nnapadat\r\nnapadávání\r\nnapadávaný\r\nnapadávat\r\nnapadení\r\nnapaden\r\nnapadený\r\nnápad\r\nnápaditější\r\nnápaditý\r\nnapádlovat\r\nnapadlý\r\nnápadnější\r\nnápadnice\r\nnápadník\r\nnápadníkův\r\nnapadnout\r\nnapadnutelnější\r\nnapadnutelný\r\nnapadnutí\r\nnápadný\r\nnápadový\r\nnapadrť\r\nnapáchání\r\nnapáchaný\r\nnapáchat\r\nNapajadla\r\nnapajdání\r\nnapajdat\r\nnapájecí\r\nnapaječka\r\nnapáječka\r\nnapáječ\r\nnapajedelský\r\nnapajedlo\r\nnapájející\r\nnapájení\r\nnapájený\r\nnapájet\r\nnapakování\r\nnapakovaný\r\nnapakovat\r\nnapálenější\r\nnapálení\r\nnapálený\r\nnapálit\r\nnapalm\r\nnapalmový\r\nnapalovanější\r\nnapalovaní\r\nnapalování\r\nnapalovaný\r\nnapalovat\r\nnapalovávání\r\nnapalovávaný\r\nnapalovávat\r\nnapalující\r\nnapapání\r\nnapapaný\r\nnapapat\r\nnapapinkat\r\nnaparádění\r\nnaparáděný\r\nnaparádit\r\nnaparfemovanější\r\nnaparfemovaný\r\nnaparfemovat\r\nnaparování\r\nnaparovat\r\nnaparující\r\nnapaření\r\nnapařený\r\nnapařit\r\nnapařovací\r\nnapařovačka\r\nnapařování\r\nnapařovaný\r\nnapařovat\r\nnapařovávat\r\nnapásanější\r\nnapásání\r\nnapásaný\r\nnapásatelnější\r\nnapásatelný\r\nnapásat\r\nnapasenější\r\nnapasení\r\nnapasen\r\nnapasený\r\nnapásl\r\nnapasování\r\nnapasovaný\r\nnapasovat\r\nnapást\r\nnapastovat\r\nnapasu\r\nnapatinovanější\r\nnapatinovaný\r\nnapatinovat\r\nnapatlanější\r\nnapatlání\r\nnapatlaný\r\nnapatlat\r\nnapatlávání\r\nnapatlávaný\r\nnapatlávat\r\nnapéct\r\nnapečenější\r\nnapečení\r\nnapečený\r\nnapěchovanější\r\nnapěchování\r\nnapěchovaný\r\nnapěchovat\r\nnapěněnější\r\nnapěnění\r\nnapěněný\r\nnapěnit\r\nnapěňování\r\nnapěňovat\r\nnapětí\r\nnapěťový\r\nnápěvek\r\nnápěv\r\nnápěvkový\r\nnapevno\r\nnapíchání\r\nnapíchaný\r\nnapíchat\r\nnapíchávání\r\nnapíchávaný\r\nnapíchávat\r\nnapíchnout\r\nnapíchnutí\r\nnapíchnutý\r\nnapichování\r\nnapichovaný\r\nnapichovat\r\nnapichující\r\nnapilno\r\nnapilování\r\nnapilovaný\r\nnapilovat\r\nnapínací\r\nnapínáček\r\nnapínačka\r\nnapínač\r\nnapínadlo\r\nnapínající\r\nnapínák\r\nnapínání\r\nnapínaný\r\nnapínat\r\nnapínavější\r\nnapínavý\r\nnapínavý\r\nnapinkat\r\nnapíranější\r\nnapírání\r\nnapíraný\r\nnapírat\r\nnápisek\r\nnápis\r\nnapískanější\r\nnapískání\r\nnapískaný\r\nnapískat\r\nnápisový\r\nnapíši\r\nnapíšu\r\nnapít\r\nnapitější\r\nnapití\r\nnapit\r\nnapitý\r\nnapitý\r\nnapižlání\r\nnapižlaný\r\nnapižlat\r\nnapjal\r\nnapjatější\r\nnapjat\r\nnapjatý\r\nnapjatý\r\nnaplácání\r\nnaplácaný\r\nnaplácat\r\nnaplacenější\r\nnaplacení\r\nnaplacený\r\nnaplachtění\r\nnaplachtit\r\nnaplakající\r\nnaplakanější\r\nnaplakání\r\nnaplakaný\r\nnaplakat\r\nnaplano\r\nnaplánování\r\nnaplánovaný\r\nnaplánovat\r\nnáplastích\r\nnáplastím\r\nnáplast\r\nnáplasťový\r\nnaplat\r\nnaplatit\r\nnaplátkování\r\nnaplátkovaný\r\nnaplátkovat\r\nnaplátovaný\r\nnaplavání\r\nnaplavat\r\nnaplavávání\r\nnaplavávat\r\nnaplavejme\r\nnaplavej\r\nnaplavejte\r\nnaplavenina\r\nnaplavení\r\nnaplavený\r\nnáplav\r\nnaplavit\r\nnáplavka\r\nnaplavovací\r\nnaplavování\r\nnaplavovaný\r\nnaplavovat\r\nnáplavový\r\nnaplazení\r\nnaplazit\r\nnapleji\r\nnaplel\r\nnaplení\r\nnaplesnivělý\r\nnaplesnivět\r\nnaplést\r\nnaplétání\r\nnaplétaný\r\nnaplétat\r\nnapletení\r\nnapletený\r\nnáplet\r\nnapletí\r\nnaplet\r\nnapletý\r\nnaplít\r\nnaplivání\r\nnaplivaný\r\nnaplivat\r\nnaplněnější\r\nnaplnění\r\nnaplněný\r\nnaplnit\r\nnaplnitelnější\r\nnaplnitelný\r\nnaplno\r\nnaplňovací\r\nnaplňování\r\nnaplňovaný\r\nnaplňovat\r\nnaplňovatel\r\nnaplňovatelův\r\nnáplňový\r\nnaplňující\r\nnáplň\r\nnaplocho\r\nnaplout\r\nnaplutí\r\nnaplutý\r\nnapluženější\r\nnaplužení\r\nnaplužený\r\nnaplužit\r\nnapnout\r\nnapnutější\r\nnapnutí\r\nnapnutý\r\nnapočítání\r\nnapočítaný\r\nnapočítat\r\nnapočítávání\r\nnapočtvrté\r\nnapodesáté\r\nnapodeváté\r\nnapodkuřovávat\r\nnápodoba\r\nnapodobenina\r\nnapodobení\r\nnapodobený\r\nnapodobit\r\nnapodobitelčin\r\nnapodobitelka\r\nnapodobitelnější\r\nnapodobitelný\r\nnapodobitel\r\nnapodobitelův\r\nnapodobivější\r\nnapodobivý\r\nnápodobně\r\nnapodobovací\r\nnapodobování\r\nnapodobovaný\r\nnapodobovat\r\nnapodobovatelčin\r\nnapodobovatelka\r\nnapodobovatel\r\nnapodobovatelův\r\nnapodobující\r\nnapodruhé\r\nnapohlavkování\r\nnapohlavkovaný\r\nnapohlavkovat\r\nnapohlavkovávání\r\nnapohlavkovávaný\r\nnapohlavkovávat\r\nnapohled\r\nnapochodování\r\nnapochodovaný\r\nnapochodovat\r\nnapojenější\r\nnapojení\r\nnapojený\r\nnapojit\r\nnapojitelný\r\nnápojka\r\nnápojkový\r\nnapojovací\r\nnapojovanější\r\nnapojování\r\nnapojovaný\r\nnapojovat\r\nnapojovávání\r\nnapojovávaný\r\nnapojovávat\r\nnápojovější\r\nnápojový\r\nnápoj\r\nnapojující\r\nNapoleon\r\nnapoleonský\r\nNapoleonův\r\nnapolo\r\nnapolohování\r\nnapolohovaný\r\nnapolohovat\r\nnapolovic\r\nnapomádování\r\nnapomádovaný\r\nnapomádovat\r\nnapomáhající\r\nnapomáhání\r\nnapomáhat\r\nnapomenout\r\nnapomenutí\r\nnapomenutý\r\nnapomínající\r\nnapomínání\r\nnapomínaný\r\nnapomínat\r\nnápomocen\r\nnapomoci\r\nnápomocnější\r\nnápomocný\r\nnapomozme\r\nnapomoz\r\nnapomozte\r\nnapomoženější\r\nnapomožení\r\nnapomožen\r\nnapomožený\r\nnapoosmé\r\nnapopáté\r\nnapoprvé\r\nnaporcování\r\nnaporcovaný\r\nnaporcovat\r\nnaporcovávání\r\nnaporcovávaný\r\nnaporcovávat\r\nnápor\r\nnaporoučení\r\nnaporoučený\r\nnaporoučet\r\nnáporovější\r\nnáporový\r\nnáporový\r\nnapořád\r\nnapořizovat\r\nnaposedmé\r\nnaposled\r\nnaposledy\r\nnapospas\r\nnaposté\r\nnapošesté\r\nnapotřetí\r\nnapouštěcí\r\nnapouštějící\r\nnapouštěnější\r\nnapouštění\r\nnapouštěný\r\nnapouštět\r\nnápověda\r\nnápovědčin\r\nnapovědění\r\nnapověděný\r\nnapovědět\r\nnápověď\r\nnápovědka\r\nnápovědmi\r\nnápovědní\r\nnápovědný\r\nnápovědův\r\nnapovězen\r\nnapovídač\r\nnapovídající\r\nnapovídanější\r\nnapovídání\r\nnapovídaný\r\nnapovídat\r\nnapovrch\r\nnapracovanější\r\nnapracování\r\nnapracovaný\r\nnapracovat\r\nnapracovávanější\r\nnapracovávání\r\nnapracovávaný\r\nnapracovávat\r\nnapráskání\r\nnapráskaný\r\nnapráskat\r\nnaprasklejší\r\nnaprasklý\r\nnaprasknout\r\nnaprášenější\r\nnaprášení\r\nnaprášený\r\nnaprášit\r\nnaprašovací\r\nnaprašování\r\nnaprašovaný\r\nnaprašovat\r\nnáprava\r\nnapravení\r\nnapravený\r\nnapravit\r\nnapravitelnější\r\nnapravitelný\r\nnápravka\r\nNápravníková\r\nNápravník\r\nNápravníkův\r\nnápravní\r\nnápravný\r\nnapravo\r\nnapravovací\r\nnapravování\r\nnapravovaný\r\nnapravovat\r\nnapravovování\r\nnapravovovaný\r\nnapravovovat\r\nnápravový\r\nnapravující\r\nnaprázdno\r\nnapražení\r\nnapražený\r\nnapražit\r\nnapreparování\r\nnapreparovaný\r\nnapreparovat\r\nnapresování\r\nnapresovaný\r\nnapresovat\r\nnaprogramovanější\r\nnaprogramování\r\nnaprogramovaný\r\nnaprogramovat\r\nnaprogramovávání\r\nnaprogramovávaný\r\nnaprogramovávat\r\nnapromítání\r\nnapromítaný\r\nnapromítat\r\nnaprosení\r\nnaprosený\r\nnaprosit\r\nnaprosto\r\nnaprostý\r\nnaproti\r\nnáprsenka\r\nnáprsnice\r\nnáprsní\r\nNáprstek\r\nnáprstek\r\nNáprstková\r\nnáprstkový\r\nNáprstkův\r\nnáprstník\r\nnapršení\r\nnapršený\r\nnapršet\r\nnaprudit\r\nnapruzenější\r\nnapruzený\r\nnapružení\r\nnapružený\r\nnapružit\r\nnapř\r\nnapřáhnout\r\nnapřáhnutí\r\nnapřahování\r\nnapřahovaný\r\nnapřahovat\r\nnapřaženější\r\nnapřažený\r\nnapřed\r\nnapředený\r\nnapřednášení\r\nnapřednášený\r\nnapřednášet\r\nnapřemýšlení\r\nnapřemýšlet\r\nnapřenější\r\nnapření\r\nnapřený\r\nnapřesrok\r\nnapříč\r\nnapříklad\r\nnapřímenější\r\nnapřímení\r\nnapřímený\r\nnapřímit\r\nnapřimování\r\nnapřimovaný\r\nnapřimovat\r\nnapřimovávat\r\nnapřimující\r\nnapříště\r\nnapřít\r\nnapsal\r\nnapsanější\r\nnapsanější\r\nnapsání\r\nnapsán\r\nnapsaný\r\nnapsáný\r\nnapsat\r\nnapučení\r\nnapučený\r\nnapučet\r\nnapudrování\r\nnapudrovaný\r\nnapudrovat\r\nnapuchání\r\nnapuchat\r\nnapuchávat\r\nnapuchlejší\r\nnapuchlý\r\nnapuchnout\r\nnapuchnutí\r\nnapůl\r\nnapumpování\r\nnapumpovaný\r\nnapumpovat\r\nnapustit\r\nnapuštěnější\r\nnapuštění\r\nnapuštěný\r\nnarace\r\nnarafičení\r\nnarafičený\r\nnarafičit\r\nnáramek\r\nnárameník\r\nnáramkový\r\nnáramnější\r\nnáramný\r\nnarapování\r\nnarapovaný\r\nnarapovat\r\nnarašení\r\nnarašený\r\nnarašit\r\nnarativný\r\nnaráz\r\nnáraz\r\nnarazit\r\nnárazník\r\nnárazníkový\r\nnárazovější\r\nnárazový\r\nnárazový\r\nnárazuvzdorný\r\nnarážecí\r\nnarážečka\r\nnarážející\r\nnaraženina\r\nnaražení\r\nnarážení\r\nnaražený\r\nnarážený\r\nnarážet\r\nnarážka\r\nnarážkový\r\nnarcis\r\nnarcisismus\r\nnarcisista\r\nnarcisistčin\r\nnarcisistický\r\nnarcisistka\r\nnarcisistův\r\nnarciska\r\nnarcismus\r\nnarcisový\r\nnarcista\r\nnarcistčin\r\nnarcistický\r\nnarcistka\r\nnarcistní\r\nnarcistův\r\nnardový\r\nnaregulování\r\nnaremcat\r\nnarezavělý\r\nnarezivělý\r\nnarezlý\r\nnarežírování\r\nnarežírovaný\r\nnarežírovat\r\nnarkolepsie\r\nnarkoleptický\r\nnarkomafie\r\nnarkomančin\r\nnarkomanie\r\nnarkomanka\r\nnarkoman\r\nnarkomanův\r\nnarkoterorismus\r\nnarkotický\r\nnarkotikum\r\nnarkotizovat\r\nnarkotizující\r\nnarkóza\r\nnáročnější\r\nnáročný\r\nnárod\r\nnarodit\r\nnárod\r\nnárodnější\r\nnárodněobranný\r\nnárodněosvobozenecký\r\nnárodnictví\r\nnárodní\r\nnárodnostní\r\nnárodohospodářský\r\nnárodohospodářství\r\nnárodohospodář\r\nnárodohospodářův\r\nnárodopiscův\r\nnárodopisec\r\nnárodopis\r\nnárodopisný\r\nnárodověda\r\nnárodový\r\nnárok\r\nnárokování\r\nnárokovaný\r\nnárokovat\r\nnárokový\r\nnárokující\r\nnarolovat\r\nnárost\r\nnarostlejší\r\nnarostl\r\nnarostlý\r\nnarostu\r\nnaroubování\r\nnaroubovaný\r\nnaroubovat\r\nnaroveň\r\nnarovnání\r\nnarovnaný\r\nnarovnat\r\nnarovnávání\r\nnarovnávaný\r\nnarovnávat\r\nnarozeninový\r\nnarozeniny\r\nnarození\r\nnarozený\r\nnarozmýšlet\r\nnároží\r\nnárožní\r\nNárožný\r\nnárt\r\nnártní\r\nnarubání\r\nnarubaný\r\nnarubat\r\nnarubávání\r\nnarubávaný\r\nnarubávat\r\nnarubu\r\nnaruby\r\nnáruční\r\nnáruč\r\nnarudlý\r\nnarukování\r\nnarukovat\r\nnarukovávání\r\nnarukovávat\r\nnarůstající\r\nnarůstání\r\nnarůstat\r\nnárůst\r\nnarůst\r\nnarušenější\r\nnarušení\r\nnarušený\r\nnarušit\r\nnarušitelnější\r\nnarušitelný\r\nnarušitel\r\nnarušitelův\r\nnarušovanější\r\nnarušování\r\nnarušovaný\r\nnarušovat\r\nnarušovatelnější\r\nnarušovatelný\r\nnarušující\r\nnáruživcův\r\nnáruživec\r\nnáruživější\r\nnáruživý\r\nnarůžovělejší\r\nnarůžovělý\r\nnarůžovo\r\nnarvanější\r\nnarvání\r\nnarvaný\r\nnarvat\r\nnarvávání\r\nnarvávaný\r\nnarvávat\r\nNarva\r\nnarychlení\r\nnarychlený\r\nnarychlit\r\nnarychlo\r\nnárys\r\nnárysna\r\nnárysný\r\nnarýsování\r\nnarýsovaný\r\nnarýsovat\r\nNarysov\r\nnarysovský\r\nnarýžování\r\nnarýžovaný\r\nnarýžovat\r\nnářadí\r\nnářadíčko\r\nnářaďovna\r\nnářaďový\r\nnařasení\r\nnařasený\r\nnařasit\r\nnařčení\r\nnařčený\r\nnařečen\r\nnářečí\r\nnářeční\r\nnářečový\r\nnaředění\r\nnaředěný\r\nnaředit\r\nnařeďování\r\nnařeďovaný\r\nnařeďovat\r\nnařekl\r\nnařeknout\r\nnařeknu\r\nnařeknut\r\nnářek\r\nnařezanější\r\nnařezání\r\nnařezaný\r\nnařezat\r\nnařezávací\r\nnařezávající\r\nnařezávanější\r\nnařezávání\r\nnařezávaný\r\nnařezávat\r\nnářez\r\nnářezový\r\nnaříci\r\nnaříct\r\nnařídit\r\nnaříkající\r\nnaříkání\r\nnaříkat\r\nnaříkavější\r\nnaříkavý\r\nnařízení\r\nnařízený\r\nnaříznout\r\nnaříznutější\r\nnaříznutí\r\nnaříznutý\r\nnaříznutý\r\nnaříznutý\r\nnařizovací\r\nnařizování\r\nnařizovaný\r\nnařizovat\r\nnařizující\r\nnařknout\r\nnařknutí\r\nnařknutý\r\nnařvanější\r\nnařvání\r\nnařvat\r\nnás\r\nNASA\r\nnásada\r\nnásadec\r\nnasadit\r\nnasaditelný\r\nnásadka\r\nnásadový\r\nnasákavý\r\nnasáklejší\r\nnasáklý\r\nnasáknout\r\nnasáknutí\r\nnasáknutý\r\nnasakovat\r\nnasální\r\nnasání\r\nnasát\r\nnasát\r\nnasátý\r\nnasávací\r\nnasávající\r\nnasávání\r\nnasávaný\r\nnasávat\r\nnasavrcký\r\nNasavrky\r\nnasazencův\r\nnasazenec\r\nnasázenější\r\nnasazení\r\nnasázení\r\nnasazený\r\nnasázený\r\nnasázet\r\nnasazovací\r\nnasazovanější\r\nnasazování\r\nnasazovaný\r\nnasazovat\r\nnasazující\r\nnasbírání\r\nnasbíraný\r\nnasbírat\r\nnasedající\r\nnasedání\r\nnasedat\r\nnasedávání\r\nnasedávat\r\nnasedění\r\nnaseděný\r\nnasedět\r\nNásedlovice\r\nnásedlovický\r\nnasednout\r\nnasednutí\r\nnaseji\r\nnasekanější\r\nnasekání\r\nnasekaný\r\nnasekat\r\nnasekávací\r\nnasekávání\r\nnasekávaný\r\nnasekávat\r\nnaseknout\r\nnaseknutí\r\nnaseknutý\r\nnasel\r\nnasení\r\nnásep\r\nnaservírování\r\nnaservírovaný\r\nnaservírovat\r\nnasetější\r\nnasetí\r\nnaset\r\nnasetý\r\nnasetý\r\nnashromáždění\r\nnashromážděný\r\nnashromáždit\r\nnashromažďování\r\nnashromažďovaný\r\nnashromažďovat\r\nNashville\r\nnaschnl\r\nnaschnout\r\nnaschnutí\r\nnaschůzování\r\nnaschůzovat\r\nnaschvál\r\nnásilí\r\nnásilnější\r\nnásilnění\r\nnásilněný\r\nnásilnický\r\nnásilnictví\r\nnásilničtější\r\nnásilník\r\nnásilníkův\r\nnásilnit\r\nnásilný\r\nnasil\r\nnasimulování\r\nnasimulovaný\r\nnasimulovat\r\nnasimulovávání\r\nnasimulovávaný\r\nnasimulovávat\r\nnasírat\r\nnasít\r\nnaskákanější\r\nnaskákání\r\nnaskákáno\r\nnaskákaný\r\nnaskákat\r\nnaskakování\r\nnaskakovat\r\nnaskakovávání\r\nnaskakovávaný\r\nnaskakovávat\r\nnaskakující\r\nnaskenování\r\nnaskenovaný\r\nnaskenovat\r\nnaskicování\r\nnaskicovaný\r\nnaskicovat\r\nnaskicovávání\r\nnaskicovávaný\r\nnaskicovávat\r\nnaskládanější\r\nnaskládání\r\nnaskládaný\r\nnaskládat\r\nnaskládávání\r\nnaskládávaný\r\nnaskládávat\r\nnaskladnění\r\nnaskladněný\r\nnaskladnit\r\nnaskočení\r\nnaskočit\r\nnáskok\r\nnaskrz\r\nnaskřehotání\r\nnaskřehotaný\r\nnaskřehotat\r\nnaskuhrání\r\nnaskuhrat\r\nnaskýtající\r\nnaskýtání\r\nnaskytat\r\nnaskýtat\r\nnaskytnout\r\nnaskytnutí\r\nnaskytovat\r\nnásl\r\nnasládlejší\r\nnasládlý\r\nnásledek\r\nnásledkem\r\nnáslednice\r\nnáslednický\r\nnáslednictví\r\nnásledník\r\nnásledníkův\r\nnásledný\r\nnásledovanější\r\nnásledováníhodnější\r\nnásledováníhodný\r\nnasledování\r\nnásledování\r\nnasledovaný\r\nnásledovaný\r\nnasledovat\r\nnásledovat\r\nnásledovatelný\r\nnásledovatel\r\nnásledovatelův\r\nnásledovávání\r\nnásledovávaný\r\nnásledovávat\r\nnásledovnice\r\nnásledovničin\r\nnásledovník\r\nnásledovníkův\r\nnásledovný\r\nnásledující\r\nnásledující\r\nnáslech\r\nnáslechový\r\nnaslepo\r\nnaslibování\r\nnaslibovaný\r\nnaslibovat\r\nnasliněnější\r\nnaslinění\r\nnasliněný\r\nnaslinit\r\nnasliňování\r\nnaslouchací\r\nnaslouchač\r\nnaslouchačův\r\nnaslouchající\r\nnaslouchání\r\nnaslouchaný\r\nnaslouchat\r\nnaslouchátko\r\nnaslouchavý\r\nnasloužení\r\nnasloužený\r\nnasloužit\r\nnasluhování\r\nnasluhovaný\r\nnasluhovat\r\nnasluněný\r\nnasmání\r\nnasmát\r\nnasmažení\r\nnasmažený\r\nnasmažit\r\nnasměrovanější\r\nnasměrování\r\nnasměrovaný\r\nnasměrovat\r\nnasměrovatelnější\r\nnasměrovatelný\r\nnasměrovávání\r\nnasměrovávaný\r\nnasměrovávat\r\nnasměřování\r\nnasměřovaný\r\nnasměřovat\r\nnasměřovávat\r\nnasmlouvání\r\nnasmlouvaný\r\nnasmlouvat\r\nnasmradit\r\nnasmrdění\r\nnasmrdět\r\nnasnadě\r\nnasnění\r\nnasněný\r\nnasněženější\r\nnasněžení\r\nnasněžený\r\nnasněžit\r\nnasnídáníčko\r\nnasnídání\r\nnasnídaný\r\nnasnídat\r\nnasnídávání\r\nnasnídávaný\r\nnasnídávat\r\nnasnímání\r\nnasnímaný\r\nnasnímat\r\nnasnít\r\nnásobek\r\nnásobenec\r\nnásobení\r\nnásobený\r\nnásobicí\r\nnásobící\r\nnásobička\r\nnásobič\r\nnásobilka\r\nnásobit\r\nnásobitel\r\nnásobkový\r\nnásobný\r\nnasolenější\r\nnasolení\r\nnasolený\r\nnasolit\r\nnasolování\r\nnasolovaný\r\nnasolovat\r\nnasolovávání\r\nnasolovávaný\r\nnasolovávat\r\nnasosání\r\nnasosaný\r\nnasosat\r\nnásoska\r\nnásoskový\r\nnasoukání\r\nnasoukaný\r\nnasoukat\r\nnasoukávání\r\nnasoukávaný\r\nnasoukávat\r\nnasouvání\r\nnasouvaný\r\nnasouvat\r\nnaspalejší\r\nnaspalý\r\nnaspanější\r\nnaspání\r\nnaspaný\r\nnaspat\r\nnaspávání\r\nnaspávaný\r\nnaspávat\r\nnáspe\r\nnaspěch\r\nnáspech\r\nnaspěchání\r\nnaspěchat\r\nnáspem\r\nnaspod\r\nnaspodu\r\nnaspoření\r\nnaspořený\r\nnaspořit\r\nnáspu\r\nnáspů\r\nnáspům\r\nnáspy\r\nnasrání\r\nnasrat\r\nNassau\r\nNassavský\r\nnastálo\r\nnastál\r\nnastalý\r\nnastaní\r\nnastání\r\nnastartování\r\nnastartovaný\r\nnastartovat\r\nnastartovávat\r\nnastat\r\nnastát\r\nnastávající\r\nnastávání\r\nnastávat\r\nnástavba\r\nnástavbový\r\nnástavcový\r\nnástavec\r\nnástavek\r\nnastavenější\r\nnastavení\r\nnastavění\r\nnastavený\r\nnastavěný\r\nnastavět\r\nnastavit\r\nnastavitelný\r\nnástavka\r\nnastavovací\r\nnastavovanější\r\nnastavovaní\r\nnastavování\r\nnastavovaný\r\nnastavovat\r\nnastavující\r\nnastehnout\r\nnastehování\r\nnastěhování\r\nnastehovaný\r\nnastěhovaný\r\nnastehovat\r\nnastěhovat\r\nnastěhovávání\r\nnastěhovávaný\r\nnastěhovávat\r\nnastejno\r\nnastelu\r\nnástěnka\r\nnástěnný\r\nnastický\r\nnastie\r\nnastíněnější\r\nnastínění\r\nnastíněný\r\nnástin\r\nnastínit\r\nnastiňovanější\r\nnastiňování\r\nnastiňovaný\r\nnastiňovat\r\nnastiňující\r\nnastlal\r\nnastlanější\r\nnastlání\r\nnastlaný\r\nnastlat\r\nnastohování\r\nnastohovaný\r\nnastohovat\r\nnastojato\r\nnastojím\r\nnastokrát\r\nnastolení\r\nnastolení\r\nnastolený\r\nnastolit\r\nnastolování\r\nnastolovaný\r\nnastolovat\r\nnastolovávání\r\nnastolovávaný\r\nnastolovávat\r\nnastolující\r\nnastonal\r\nnastonání\r\nnastonat\r\nnastonejme\r\nnastonej\r\nnastonejte\r\nnastoupání\r\nnastoupat\r\nnastoupení\r\nnastoupený\r\nnastoupit\r\nnástraha\r\nnastraženější\r\nnastražení\r\nnastražený\r\nnastražit\r\nnastražovat\r\nnastrčení\r\nnastrčený\r\nnastrčit\r\nnástrčka\r\nnastrkanější\r\nnastrkání\r\nnastrkaný\r\nnastrkat\r\nnastrkávání\r\nnastrkávaný\r\nnastrkávat\r\nnastrkovat\r\nnástrojárna\r\nnástrojařčin\r\nnástrojařka\r\nnástrojářství\r\nnástrojař\r\nnástrojařův\r\nnastrojenější\r\nnastrojení\r\nnastrojený\r\nnastrojit\r\nnástrojový\r\nnástroj\r\nnástropní\r\nnastrouhanější\r\nnastrouhání\r\nnastrouhaný\r\nnastrouhat\r\nnastrouhávanější\r\nnastrouhávání\r\nnastrouhávaný\r\nnastrouhávat\r\nnastřádání\r\nnastřádaný\r\nnastřádat\r\nnastřelenější\r\nnastřelení\r\nnastřelený\r\nnástřel\r\nnastřelit\r\nnastřelování\r\nnastřelovaný\r\nnastřelovat\r\nnastřelovávání\r\nnastřelovávaný\r\nnastřelovávat\r\nnástřešní\r\nnastřihání\r\nnastříhání\r\nnastřihaný\r\nnastříhaný\r\nnastřihat\r\nnastříhat\r\nnastřihávání\r\nnastříhávání\r\nnastřihávaný\r\nnastříhávaný\r\nnastřihávat\r\nnastříhávat\r\nnástřih\r\nnastřihnout\r\nnastřihnutí\r\nnastřihování\r\nnastřihovaný\r\nnastřihovat\r\nnástřihový\r\nnastříkání\r\nnastříkaný\r\nnastříkat\r\nnastříkávání\r\nnastříkávaný\r\nnastříkávat\r\nnástřik\r\nnastříknout\r\nnastříknutí\r\nnastříknutý\r\nnastříknutý\r\nnastřikování\r\nnastřikovaný\r\nnastřikovat\r\nnastřikovávání\r\nnastřikovávaný\r\nnastřikovávat\r\nnástřikový\r\nnastřílení\r\nnastřílený\r\nnastřílet\r\nnastřižený\r\nnastudeno\r\nnastudit\r\nnastudovanější\r\nnastudování\r\nnastudovaný\r\nnastudovat\r\nnastudovávající\r\nnastudovávání\r\nnastudovávaný\r\nnastudovávat\r\nnastudovávavanější\r\nnastudovávavání\r\nnastudovávavaný\r\nnastudující\r\nnastůjme\r\nnastůj\r\nnastůjte\r\nnastůňu\r\nnástupce\r\nnástupcův\r\nnástup\r\nnástupiště\r\nnástupkyně\r\nnástupkynin\r\nnástupnice\r\nnástupnický\r\nnástupnictví\r\nnástupničtější\r\nnástupník\r\nnástupníkův\r\nnástupní\r\nnastupování\r\nnastupovat\r\nnástupový\r\nnastupující\r\nnastuzení\r\nnastuzený\r\nnastydlejší\r\nnastydlý\r\nnastydnout\r\nnastydnutí\r\nnastydnutý\r\nnastýlání\r\nnastýlaný\r\nnastýlat\r\nnastylizovat\r\nnasucho\r\nnasuchu\r\nnasunout\r\nnasunovací\r\nnasunování\r\nnasunovat\r\nnasunutí\r\nnasunutý\r\nnasupenější\r\nnasupení\r\nnasupený\r\nnasupit\r\nnasušení\r\nnasušený\r\nnasušit\r\nnasvačení\r\nnasvačený\r\nnasvačit\r\nnasvěcování\r\nnasvěcovaný\r\nnasvěcovat\r\nnasvědčování\r\nnasvědčovat\r\nnasvědčující\r\nnasvětlení\r\nnasvětlen\r\nnasvětlený\r\nnasvětlování\r\nnasvětlovaný\r\nnasvětlovat\r\nnasvícení\r\nnasvícený\r\nnasvítit\r\nnasycenější\r\nnasycení\r\nnasycený\r\nnasycování\r\nnasycovaný\r\nnasycovat\r\nnasykat\r\nnasypající\r\nnasypanější\r\nnasypání\r\nnasýpání\r\nnasypaný\r\nnasýpaný\r\nnasypat\r\nnasýpat\r\nnasypávající\r\nnasypávanější\r\nnasypávání\r\nnasypávaný\r\nnasypávat\r\nnásyp\r\nnásypka\r\nnásypkový\r\nnásypný\r\nnásypový\r\nnasyslení\r\nnasyslený\r\nnasyslit\r\nnasyslování\r\nnasyslovaný\r\nnasyslovat\r\nnasytit\r\nnasytitelnější\r\nnasytitelný\r\nnašamponování\r\nnašamponovaný\r\nnašamponovat\r\nnašaškování\r\nnašaškovat\r\nnašedivělý\r\nnašedlejší\r\nnašedlý\r\nnašel\r\nnašeptání\r\nnašeptaný\r\nnašeptat\r\nnašeptavaččin\r\nnašeptávaččin\r\nnašeptavačka\r\nnašeptávačka\r\nnašeptavač\r\nnašeptávač\r\nnašeptavačův\r\nnašeptávačův\r\nnašeptávající\r\nnašeptávání\r\nnašeptávaný\r\nnašeptávat\r\nnašetření\r\nnašetřený\r\nnašetřit\r\nnašincův\r\nnašinec\r\nnašinka\r\nnašíř\r\nnašít\r\nnašitější\r\nnašití\r\nnašitý\r\nnašitý\r\nnašívanější\r\nnašívání\r\nnašívaný\r\nnašívat\r\nnášivka\r\nnašizený\r\nnaškemrání\r\nnaškemrat\r\nnaškobrtání\r\nnaškobrtat\r\nnaškodu\r\nnaškrabající\r\nnaškrábající\r\nnaškrabanější\r\nnaškrábanější\r\nnaškrabání\r\nnaškrábání\r\nnaškrabaný\r\nnaškrábaný\r\nnaškrabat\r\nnaškrábat\r\nnaškrabávání\r\nnaškrabávaný\r\nnaškrabávat\r\nnaškrábnout\r\nnaškrábnutější\r\nnaškrábnutí\r\nnaškrábnutý\r\nnaškrábnutý\r\nnaškrabování\r\nnaškrabovaný\r\nnaškrabovat\r\nnaškrobenější\r\nnaškrobení\r\nnaškrobený\r\nnaškrobit\r\nnaškubání\r\nnaškubaný\r\nnaškubat\r\nnaškubávání\r\nnaškubávaný\r\nnaškubávat\r\nnaškubu\r\nnaškudlení\r\nnaškudlit\r\nnašlapání\r\nnašlapaný\r\nnašlapat\r\nnašlápnout\r\nnašlápnutí\r\nnašlápnutý\r\nnášlapný\r\nnašlapování\r\nnašlapovat\r\nnašlapující\r\nnašlehání\r\nnašlehaný\r\nnašlehat\r\nnašmejdění\r\nnašmejdit\r\nnašminkování\r\nnašminkovaný\r\nnašminkovat\r\nnašmudlat\r\nnašoupání\r\nnašoupaný\r\nnašoupat\r\nnašpendlení\r\nnašpendlený\r\nnašpendlit\r\nnašpendlovat\r\nnašpicování\r\nnašpicovaný\r\nnašpicovat\r\nnašpinění\r\nnašpiněný\r\nnašpinit\r\nnašplhání\r\nnašplhaný\r\nnašplhat\r\nnašplhávání\r\nnašplhávat\r\nnašplíchat\r\nnašplouchání\r\nnašplouchaný\r\nnašplouchat\r\nnašponování\r\nnašponovaný\r\nnašponovat\r\nnašprtání\r\nnašprtaný\r\nnašprtat\r\nnašpulenější\r\nnašpulení\r\nnašpulený\r\nnašpulit\r\nnašrocení\r\nnašrocený\r\nnašrot\r\nnašrotit\r\nnašroubování\r\nnašroubovaný\r\nnašroubovat\r\nnašroubovávání\r\nnašroubovávaný\r\nnašroubovávat\r\nnaštěkání\r\nnaštěkaný\r\nnaštěkat\r\nnaštěpení\r\nnaštěpený\r\nnaštěpit\r\nnaštepovat\r\nnaštěstí\r\nnaštípání\r\nnaštípaný\r\nnaštípat\r\nnaštípávání\r\nnaštípávaný\r\nnaštípávat\r\nnaštípnout\r\nnaštípnutí\r\nnaštípnutý\r\nnaštipování\r\nnaštipovaný\r\nnaštipovat\r\nnaštosování\r\nnaštosovaný\r\nnaštosovat\r\nnašťouchání\r\nnašťouchaný\r\nnašťouchat\r\nnašťouchávání\r\nnašťouchávaný\r\nnašťouchávat\r\nnaštukování\r\nnaštukovaný\r\nnaštukovat\r\nnaštvanější\r\nnaštvání\r\nnaštvaný\r\nnaštvat\r\nnaštvávání\r\nnaštvávaný\r\nnaštvávat\r\nnašukání\r\nnašukaný\r\nnašukat\r\nnašvihat\r\nnáš\r\nnatáčecí\r\nnatáčející\r\nnatáčení\r\nnatáčený\r\nnatáčet\r\nnatáčivý\r\nnatáčka\r\nnatahání\r\nnatahaný\r\nnatahat\r\nnatáhnout\r\nnatáhnutí\r\nnatahovací\r\nnatahovač\r\nnatahovanější\r\nnatahování\r\nnatahovaný\r\nnatahovat\r\nnatahovávání\r\nnatahovávaný\r\nnatahovávat\r\nnatahující\r\nNatálčin\r\nNatálie\r\nNatáliin\r\nNatálka\r\nnatamycin\r\nnatančení\r\nnatančený\r\nnatančit\r\nnatankování\r\nnatankovaný\r\nnatankovat\r\nnatankovávání\r\nnatankovávaný\r\nnatankovávat\r\nnaťapat\r\nnaťapkání\r\nnaťapkaný\r\nnaťapkat\r\nNataša\r\nNataščin\r\nNatašin\r\nNataška\r\nnatavení\r\nnatavený\r\nnatavit\r\nnataženější\r\nnatažení\r\nnatažený\r\nnatažitelnější\r\nnatažitelný\r\nnatéct\r\nnatečení\r\nnatékající\r\nnatékání\r\nnatékat\r\nnateklejší\r\nnateklý\r\nnátělník\r\nnátepník\r\nnatěračka\r\nnatěračský\r\nnatěrač\r\nnatěračův\r\nnátěr\r\nnátěrový\r\nnatěsnání\r\nnatěsnaný\r\nnatěsnat\r\nnatěsnávání\r\nnatěsnávaný\r\nnatěsnávat\r\nnatěsno\r\nnatěšení\r\nnatěšený\r\nnatěšit\r\nnatěžení\r\nnatěžený\r\nnatěžit\r\nnatírací\r\nnatíraní\r\nnatírání\r\nnatíraný\r\nnatírat\r\nnátisk\r\nnatisknout\r\nnatisknutí\r\nnatisknutý\r\nnátiskový\r\nnatištění\r\nnatištěný\r\nnativismus\r\nnativní\r\nnatknout\r\nnatlačenější\r\nnatlačení\r\nnatlačený\r\nnatlačit\r\nnátlačka\r\nnatlačovanější\r\nnatlačování\r\nnatlačovaný\r\nnatlačovat\r\nnatlachání\r\nnatlachaný\r\nnatlachat\r\nnátlak\r\nnatlakování\r\nnatlakovaný\r\nnatlakovat\r\nnátlakovější\r\nnátlakový\r\nnatláskání\r\nnatláskat\r\nnatlouct\r\nnatloukanější\r\nnatloukání\r\nnatloukaný\r\nnatloukat\r\nnatloukávanější\r\nnatloukávání\r\nnatloukávaný\r\nnatloukávat\r\nnatlučenější\r\nnatlučení\r\nnatlučený\r\nNATO\r\nnato\r\nnatočení\r\nnatočený\r\nnatočit\r\nnátok\r\nnatolik\r\nnatotata\r\nnatoužení\r\nnatoužený\r\nnatoužit\r\nnatož\r\nnatožpak\r\nnatrápení\r\nnatrápený\r\nnatrápit\r\nnatrávení\r\nnatrávený\r\nnatrávit\r\nnatra\r\nnatrefení\r\nnatrefený\r\nnatrefit\r\nnatrénování\r\nnatrénovaný\r\nnatrénovat\r\nnatrhající\r\nnatrhanější\r\nnatrhání\r\nnatrhaný\r\nnatrhat\r\nnatrhávající\r\nnatrhávanější\r\nnatrhávání\r\nnatrhávaný\r\nnatrhávat\r\nnatrhnout\r\nnatrhnutější\r\nnatrhnutí\r\nnatrhnutý\r\nnatriumamid\r\nnatrium\r\nnatropení\r\nnatropený\r\nnatropit\r\nnatrpění\r\nnatrpěný\r\nnatrpět\r\nnatrpklý\r\nnatrpknout\r\nnatrpknutí\r\nnátrubek\r\nnátrubkový\r\nnatruc\r\nnatrvalo\r\nnatržení\r\nnatržený\r\nnatřásací\r\nnatřásadlo\r\nnatřásání\r\nnatřásaný\r\nnatřásat\r\nnatřásávání\r\nnatřásávat\r\nnatřásl\r\nnatřást\r\nnatřásti\r\nnatřenější\r\nnatření\r\nnatřený\r\nnatřepávání\r\nnatřepávaný\r\nnatřepávat\r\nnatřesení\r\nnatřesen\r\nnatřesený\r\nnatřesu\r\nnatřikrát\r\nnatřískání\r\nnatřískaný\r\nnatřískat\r\nnatřít\r\nnaťukání\r\nnaťukaný\r\nnaťukat\r\nnaťukávání\r\nnaťukávaný\r\nnaťukávat\r\nnaťuknout\r\nnaťuknutí\r\nnaťuknutý\r\nnatupírování\r\nnatupírovaný\r\nnatupírovat\r\nnaturálie\r\nnaturalismus\r\nnaturalista\r\nnaturalistčin\r\nnaturalistický\r\nnaturalističtější\r\nnaturalistka\r\nnaturalistův\r\nnaturalizační\r\nnaturalizování\r\nnaturalizovaný\r\nnaturalizovat\r\nnaturální\r\nnátura\r\nnaturel\r\nnaturismus\r\nnaturista\r\nnaturistčin\r\nnaturistický\r\nnaturistka\r\nnaturistův\r\nnatužení\r\nnatvarování\r\nnatvarovaný\r\nnatvarovat\r\nnatváření\r\nnatvrdlejší\r\nnatvrdlý\r\nnatvrdo\r\nnať\r\nnaučenější\r\nnaučení\r\nnaučený\r\nnaučit\r\nnaučitelnější\r\nnaučitelný\r\nnaučnější\r\nnaučný\r\nnaúčtovanější\r\nnaúčtování\r\nnaúčtovaný\r\nnaúčtovat\r\nnaúčtovávání\r\nnaúčtovávaný\r\nnaúčtovávat\r\nnaudit\r\nnauhličení\r\nnauka\r\nnaukový\r\nnaurský\r\nNauru\r\nNaurujcův\r\nNaurujčin\r\nNaurujec\r\nNaurujka\r\nnausea\r\nnáustek\r\nnáústek\r\nnáušnice\r\nnáušnička\r\nnautika\r\nnauzení\r\nnauzený\r\nnaváděcí\r\nnavádějící\r\nnaváděnější\r\nnavádění\r\nnaváděný\r\nnavádět\r\nnavagónování\r\nnavagónovaný\r\nnavagónovat\r\nnavalení\r\nnaválení\r\nnavalený\r\nnaválený\r\nnaválet\r\nnával\r\nnavalit\r\nnavalování\r\nnavání\r\nNavara\r\nNavarová\r\nnávarový\r\nNavarův\r\nnavaření\r\nnaváření\r\nnavařený\r\nnavářený\r\nnavářet\r\nnavařit\r\nnavařování\r\nnavařovaný\r\nnavařovat\r\nnavařovávat\r\nnavát\r\nnavátý\r\nnavázanější\r\nnavázání\r\nnavázaný\r\nnavázat\r\nnavázávanější\r\nnavázávání\r\nnavázávaný\r\nnavázávat\r\nnávazec\r\nnávaznosti\r\nnávazný\r\nnavazovací\r\nnavazovanější\r\nnavazování\r\nnavazovaný\r\nnavazovat\r\nnavazující\r\nnaváženější\r\nnavážení\r\nnavážený\r\nnavážet\r\nnaváži\r\nnavážit\r\nnavážka\r\nnavažovanější\r\nnavažování\r\nnavažovaný\r\nnavažovat\r\nnavažovatelnější\r\nnavažovatelný\r\nnavažující\r\nnavečer\r\nnavečer\r\nnavečerní\r\nnavečeření\r\nnavečeřený\r\nnavečeřet\r\nnavedenější\r\nnavedení\r\nnaveden\r\nnavedený\r\nnavedl\r\nnavedu\r\nnávěj\r\nnavěky\r\nnavenek\r\nnaverbování\r\nnaverbovaný\r\nnaverbovat\r\nnaverbovávání\r\nnaverbovávaný\r\nnaverbovávat\r\nnávěs\r\nnavěsit\r\nnáves\r\nnávěska\r\nnaveslování\r\nnaveslovat\r\nnávesní\r\nnávěsný\r\nnávěstidlo\r\nnavést\r\nnávěstí\r\nnávěst\r\nnávěstní\r\nnavěšenější\r\nnavěšení\r\nnavěšený\r\nnavěšet\r\nnavěšování\r\nnavěšovaný\r\nnavěšovat\r\nnavěštění\r\nnávěštění\r\nnavěštěný\r\nnávěští\r\nnavěštit\r\nnávěštní\r\nnavětrání\r\nnávětrný\r\nnávětří\r\nnavezenější\r\nnavezení\r\nnavezený\r\nnavézt\r\nnavíc\r\nnavigace\r\nnavigační\r\nnavigátorčin\r\nnavigátorka\r\nnavigátor\r\nnavigátorův\r\nnavigování\r\nnavigovaný\r\nnavigovat\r\nnavigovávání\r\nnavigovávaný\r\nnavigovávat\r\nnavigující\r\nnaviják\r\nnavijákový\r\nnavíjecí\r\nnavíječka\r\nnavíječ\r\nnavíjedlo\r\nnavíjení\r\nnavíjený\r\nnavíjet\r\nnavinout\r\nnavinovací\r\nnavinování\r\nnavinovaný\r\nnavinovat\r\nnavinulý\r\nnavinutí\r\nnavinutý\r\nnavinutý\r\nnávka\r\nnávlačka\r\nnavláda\r\nnávladní\r\nnavlas\r\nnavléct\r\nnavlečenější\r\nnavlečení\r\nnavlečený\r\nnávlečka\r\nnavlékací\r\nnavlékání\r\nnavlékaný\r\nnavlékat\r\nnávlek\r\nnavlékl\r\nnavléknout\r\nnavléknutí\r\nnavléknutý\r\nnavléknutý\r\nnavlhavý\r\nnavlhčení\r\nnavlhčený\r\nnavlhčit\r\nnavlhčování\r\nnavlhčovaný\r\nnavlhčovat\r\nnavlhlejší\r\nnavlhlý\r\nnavlhnout\r\nnavlhnutí\r\nnavlhnutý\r\nnavlíknout\r\nnávnada\r\nnavnadění\r\nnavnaděný\r\nnavnadit\r\nnávodce\r\nnávodcův\r\nnavodění\r\nnavoděný\r\nnávod\r\nnavodíkování\r\nnavodíkovaný\r\nnavodit\r\nnávodka\r\nnávodkyně\r\nnávodkynin\r\nnávodný\r\nnávojenský\r\nNávojná\r\nnavolenější\r\nnavolení\r\nnavolený\r\nnavolit\r\nnavoněnější\r\nnavonění\r\nnavoněný\r\nnavonět\r\nnavoskování\r\nnavoskovaný\r\nnavoskovat\r\nnavoskovávání\r\nnavoskovávaný\r\nnavoskovávat\r\nnavozenější\r\nnavození\r\nnavozený\r\nnávoz\r\nnavozit\r\nnavozování\r\nnavozovaný\r\nnavozovat\r\nnavozující\r\nnavožení\r\nnavožený\r\nnavracející\r\nnavracení\r\nnavrácení\r\nnavracený\r\nnavrácený\r\nnavracet\r\nnávrat\r\nnavrátilcův\r\nnavrátilec\r\nNavrátilová\r\nNavrátil\r\nNavrátilův\r\nnavrátit\r\nnávratka\r\nnávratnější\r\nnávratný\r\nnávratovější\r\nnávratový\r\nnavrčenější\r\nnávrhářčin\r\nnávrhářka\r\nnávrhářský\r\nnávrhářství\r\nnávrhář\r\nnávrhářův\r\nnávrh\r\nnavrhnout\r\nnavrhnutí\r\nnavrhnut\r\nnavrhovací\r\nnavrhovanější\r\nnavrhování\r\nnavrhovaný\r\nnavrhovat\r\nnavrhovatelčin\r\nnavrhovatelka\r\nnavrhovatel\r\nnavrhovatelův\r\nnávrhový\r\nnavrhující\r\nnavrch\r\nnavrchu\r\nnavrkání\r\nnavrkat\r\nnavrkávání\r\nnavrkávat\r\nnavrstvenější\r\nnavrstvení\r\nnavrstvený\r\nnavrstvit\r\nnavrstvování\r\nnavrstvovaný\r\nnavrstvovat\r\nnavrstvující\r\nnavršení\r\nnavršený\r\nnávrší\r\nnavršit\r\nnavrtání\r\nnavrtaný\r\nnavrtat\r\nnavrtávačka\r\nnavrtávák\r\nnavrtávání\r\nnavrtávaný\r\nnavrtávat\r\nnavržení\r\nnavržený\r\nnávštěva\r\nnávštěvnice\r\nnávštěvnický\r\nnávštěvničin\r\nnávštěvník\r\nnávštěvníkův\r\nnávštěvní\r\nnavštěvovanější\r\nnavštěvování\r\nnavštěvovaný\r\nnavštěvovat\r\nnavštěvující\r\nnavštívení\r\nnavštívenka\r\nnavštívený\r\nnavštívit\r\nnavykající\r\nnavykání\r\nnavykaný\r\nnavykat\r\nnávyk\r\nnavykládání\r\nnavykládaný\r\nnavykládat\r\nnavyklejší\r\nnavyklý\r\nnavyklý\r\nnavyknout\r\nnavyknutí\r\nnavyknutý\r\nnávykovější\r\nnávykový\r\nnávykový\r\nnavymýšlení\r\nnavymýšlený\r\nnavymýšlet\r\nnavyprávění\r\nnavyprávět\r\nnavypravovat\r\nnavýsost\r\nnavýšení\r\nnavýšený\r\nnavýšit\r\nnavyšování\r\nnavyšovaný\r\nnavyšovat\r\nnavzájem\r\nnavzdor\r\nnavzdory\r\nnavzdychání\r\nnavzdychat\r\nnavzdychávání\r\nnavzdychávat\r\nnavzlykat\r\nnavztekanější\r\nnavztekání\r\nnavztekaný\r\nnavztekat\r\nnavztekávání\r\nnavztekávat\r\nnavždy\r\nnavždycky\r\nNaxera\r\nNaxerová\r\nnaxeroxování\r\nnaxeroxovaný\r\nnaxeroxovat\r\nNaxerův\r\nnaxoský\r\nNaxos\r\nnazad\r\nnazální\r\nnazapřenou\r\nNazaret\r\nnazaretský\r\nnazbyt\r\nnazdání\r\nnazdar\r\nnazdárek\r\nnazdařbůh\r\nnazdat\r\nnazdávání\r\nnazdávat\r\nnazdobenější\r\nnazdobení\r\nnazdobený\r\nnazdobit\r\nnazdvihání\r\nnazdvíhání\r\nnazdvihaný\r\nnazdvíhat\r\nnazdvihat\r\nnazdvihnout\r\nnazdvihnutí\r\nnazdvihování\r\nnazdvihovaný\r\nnazdvihovat\r\nnazdvižený\r\nnazelenalejší\r\nnazelenalý\r\nnázev\r\nnazírající\r\nnazírání\r\nnazíraný\r\nnazírat\r\nnazítří\r\nnazkoumání\r\nnazkoumat\r\nnazkoušení\r\nnazkoušený\r\nnazkoušet\r\nnazlátlejší\r\nnazlátlý\r\nnazlobenější\r\nnazlobení\r\nnazlobený\r\nnazmar\r\nnaznačení\r\nnaznačený\r\nnaznačit\r\nnaznačování\r\nnaznačovaný\r\nnaznačovat\r\nnaznačující\r\nnaznak\r\nnáznak\r\nnáznakovitý\r\nnáznakový\r\nnáznakový\r\nnaznání\r\nnaznaný\r\nnaznat\r\nnazobání\r\nnazobaný\r\nnazobat\r\nnazobávání\r\nnazobávaný\r\nnazobávat\r\nnázor\r\nnázornější\r\nnázorný\r\nnázorový\r\nnazout\r\nnazouvání\r\nnazouvaný\r\nnazouvat\r\nnazpaměť\r\nnazpátek\r\nnazpátky\r\nnazpět\r\nnazpívání\r\nnazpívaný\r\nnazpívat\r\nnazrálejší\r\nnazrálý\r\nnazrávající\r\nnazrávání\r\nnazrávat\r\nnazrzlejší\r\nnazrzlý\r\nnazření\r\nnazřený\r\nnazřít\r\nnazutí\r\nnazutý\r\nnazvání\r\nnazvaný\r\nnazvat\r\nnázvosloví\r\nnázvoslovný\r\nnázvový\r\nnazývající\r\nnazývanější\r\nnazývání\r\nnazývaný\r\nnazývat\r\nnažal\r\nnažatější\r\nnažat\r\nnažatý\r\nnažatý\r\nnažehlení\r\nnažehlený\r\nnažehlit\r\nnažehlování\r\nnažehlovat\r\nnaženu\r\nnažhavenější\r\nnažhavení\r\nnažhavený\r\nnažhavit\r\nnažít\r\nnaživo\r\nnaživu\r\nnažka\r\nnažloutlejší\r\nnažloutlý\r\nnažluto\r\nnažnout\r\nnažnu\r\nnažnutí\r\nnažnutý\r\nnažranější\r\nnažrání\r\nnažraný\r\nnažrat\r\nnažužlání\r\nnažužlaný\r\nnažužlat\r\nnažvýkání\r\nnažvýkaný\r\nnažvýkat\r\nnažvýkávat\r\nNB\r\nnbsp\r\nNCNA\r\nND\r\nNDR\r\nne\r\nně\r\nneandertálcův\r\nneandertálec\r\nNeandertal\r\nneandertálský\r\nneandrtálcův\r\nneandrtálčin\r\nneandrtálec\r\nneandrtálka\r\nneandrtálský\r\nneapolský\r\nNeapol\r\nneartikolovaný\r\nneb\r\nNebanice\r\nnebanický\r\nnebe\r\nnebes\r\nnebesa\r\nnebesa\r\nNebesařová\r\nNebesař\r\nNebesařův\r\nnebesích\r\nnebeský\r\nnebesům\r\nnebesův\r\nnebesy\r\nnebešťančin\r\nnebešťanka\r\nnebešťan\r\nnebešťanův\r\nnebeštější\r\nnebetyčný\r\nnebevědný\r\nnebezpečenství\r\nnebíčko\r\nnebo\r\nnebohý\r\nnebojsa\r\nnebojsův\r\nneboli\r\nneboť\r\nnebozez\r\nnebožaččin\r\nnebožačka\r\nnebožák\r\nnebožákův\r\nnebožejší\r\nnebožka\r\nnebožtík\r\nnebožtíkův\r\nnebrání\r\nNebraska\r\nnebrat\r\nNebušice\r\nnebušický\r\nnebývalý\r\nnecelistvost\r\nnecesér\r\nnecita\r\nnecitův\r\nNeckářová\r\nNeckář\r\nNeckářův\r\nnecking\r\nnecky\r\nněco\r\nnecpání\r\nnecpat\r\nNečásek\r\nnečas\r\nNečásková\r\nNečáskův\r\nNečasová\r\nNečas\r\nNečasův\r\nnečekanější\r\nNečín\r\nnečínský\r\nnečistota\r\nněčí\r\nnečtenář\r\nnečtenářův\r\nNedachlebice\r\nnedachlebický\r\nNedakonice\r\nnedakonický\r\nnedakonický\r\nnedaleko\r\nNedamov\r\nnedamovský\r\nnedání\r\nNedašova\r\nNedašov\r\nnedašovský\r\nnedat\r\nnedávna\r\nnedávnem\r\nnedbalcův\r\nnedbalec\r\nnedbalky\r\nnedbalostní\r\nNedbalová\r\nNedbal\r\nNedbalův\r\nnedbání\r\nnedbat\r\nnedejbože\r\nNeděla\r\nneděle\r\nNedeliaková\r\nNedeliak\r\nNedeliakův\r\nnedělka\r\nnedělní\r\nnědělní\r\nNedělová\r\nNedělův\r\nnedeterminismus\r\nnedílnější\r\nnedílný\r\nnedobytnější\r\nnedobytný\r\nnedočkavcův\r\nnedočkavec\r\nnedočkavý\r\nnedodělek\r\nnedohledno\r\nnedochůdče\r\nnedokrevný\r\nNedoma\r\nNedomelová\r\nNedomel\r\nNedomelův\r\nNedomlelová\r\nNedomlel\r\nNedomlelův\r\nNedomová\r\nnedomrlcův\r\nnedomrlec\r\nnedomrlejší\r\nnedomrlejší\r\nnedomrlý\r\nNedomův\r\nnedomykavý\r\nnedonošencův\r\nnedonošenec\r\nnedopalek\r\nnedopatření\r\nnedopitek\r\nnedoplatek\r\nnedoslýchat\r\nnedoslýchavější\r\nnedoslýchavý\r\nnedostižný\r\nnedostižný\r\nnedotknutelnější\r\nnedotknutelno\r\nnedotknutelný\r\nnedoukový\r\nnedouk\r\nnedoukův\r\nnedovtipnější\r\nnedovtipný\r\nnedozírnější\r\nnedozírno\r\nnedozírný\r\nnedrání\r\nnedrat\r\nnedřevní\r\nneduh\r\nnedutající\r\nnedutat\r\nnedůtklivý\r\nnedutnout\r\nneduživější\r\nneduživý\r\nNedvědice\r\nnedvědický\r\nNedvědička\r\nNedvědová\r\nNedvěd\r\nNedvědův\r\nneekonom\r\nneekonomův\r\nNeffová\r\nNeff\r\nNeffův\r\nneforemnější\r\nneforemný\r\nnefrit\r\nnefritový\r\nnefron\r\nnefropatie\r\nnegace\r\nnegativ\r\nnegativismus\r\nnegativista\r\nnegativistčin\r\nnegativistický\r\nnegativističtější\r\nnegativistka\r\nnegativistův\r\nnegativnější\r\nnegativní\r\nnegativum\r\nnegerský\r\nnegerštější\r\nnegližé\r\nnegování\r\nnegovaný\r\nnegovat\r\nnegr\r\nnegrův\r\nnegující\r\nněha\r\nnehet\r\nnehlasný\r\nnehlava\r\nnehledě\r\nnehledíc\r\nnehnat\r\nnehnutý\r\nněho\r\nnehoda\r\nnehodový\r\nnehoráznější\r\nnehorázní\r\nnehorázný\r\nnehostinější\r\nnehostinný\r\nněhož\r\nnehtík\r\nnehtový\r\nnehybnění\r\nnehybněný\r\nnehybnět\r\nnehýtek\r\nnechanější\r\nNechanice\r\nNechanický\r\nnechanický\r\nnechání\r\nnechaný\r\nnechat\r\nnechávající\r\nnechávanější\r\nnechávání\r\nnechávaný\r\nnechávat\r\nnechme\r\nnech\r\nNechranice\r\nnechranický\r\nnechť\r\nnechtě\r\nnechte\r\nnechtíc\r\nnechťsi\r\nnechutenství\r\nNechvalice\r\nnechvalický\r\nNechvalín\r\nnechvalínský\r\nNechvíle\r\nNechvílová\r\nNechvílův\r\nnechytatelný\r\nneincestní\r\nneinercialita\r\nneintervence\r\nněj\r\nnějak\r\nnějaký\r\nnějaký\r\nnejapnější\r\nnejapný\r\nnejdecký\r\nNejdek\r\nNejedla\r\nNejedlová\r\nNejedlův\r\nNejedlý\r\nnejen\r\nnejenom\r\nnejenže\r\nNejepín\r\nnejepínský\r\nNejezchlebová\r\nNejezchleb\r\nNejezchlebův\r\nnejistění\r\nnejistět\r\nnejprv\r\nnejprve\r\nnejspíš\r\nnejspíše\r\nnejvýhradnější\r\nnejzazší\r\nnějž\r\nnekalejší\r\nnekalý\r\nněkam\r\nnekatoliččin\r\nnekatolička\r\nněkde\r\nněkdejší\r\nněkdo\r\nněkdy\r\nneklid\r\nneklidnění\r\nneklidněný\r\nnekněz\r\nneknězův\r\nnekňuba\r\nnekňubův\r\nněkolik\r\nněkolika\r\nněkolikaarový\r\nněkolikabajtový\r\nněkolikabodový\r\nněkolikabrankový\r\nněkolikacentimetrový\r\nněkolikačlenný\r\nněkolikadenní\r\nněkolikadílný\r\nněkolikadolarový\r\nněkolikafázový\r\nněkolikahektarový\r\nněkolikahodinový\r\nněkolikajazyčný\r\nněkolikakilogramový\r\nněkolikakilometrový\r\nněkolikakilový\r\nněkolikakolový\r\nněkolikakorunový\r\nněkolikalanový\r\nněkolikaletý\r\nněkolikalitrový\r\nněkolikalůžkový\r\nněkolikaměsíční\r\nněkolikametrový\r\nněkolikamiliardový\r\nněkolikamilimetrový\r\nněkolikamilionový\r\nněkolikamiliónový\r\nněkolikaminutový\r\nněkolikamístný\r\nněkolikanásobek\r\nněkolikanásobný\r\nněkolikapalubní\r\nněkolikapatrový\r\nněkolikapočitadlový\r\nněkolikaposchoďový\r\nněkolikaroční\r\nněkolikarozměrný\r\nněkolikařádkový\r\nněkolikasekundový\r\nněkolikasethlavý\r\nněkolikasetkilogramový\r\nněkolikasetkilometrový\r\nněkolikasetkorunový\r\nněkolikasetmegawattový\r\nněkolikasetmetrový\r\nněkolikasetmiliardový\r\nněkolikasetmilionový\r\nněkolikasetmiliónový\r\nněkolikasetstránkový\r\nněkolikasettisícový\r\nněkolikastovkový\r\nněkolikastránkový\r\nněkolikastranný\r\nněkolikastupňový\r\nněkolikasvazkový\r\nněkolikatankový\r\nněkolikatisícový\r\nněkolikatunový\r\nněkolikatýdenní\r\nněkolikátý\r\nněkolikaúrovňový\r\nněkolikavrstvý\r\nněkolikavřetenový\r\nněkolikavteřinový\r\nněkolikero\r\nněkolikeronásobný\r\nněkolikerý\r\nněkolikrát\r\nněkolikráte\r\nNekolný\r\nnekonečno\r\nnekonformista\r\nnekonformistčin\r\nnekonformistka\r\nnekonformistův\r\nnekorunovaný\r\nNekovářová\r\nNekovář\r\nNekovářův\r\nnekov\r\nnekrasový\r\nnekritika\r\nnekrofilnější\r\nnekrofilní\r\nnekrolog\r\nnekrotičtější\r\nnekrotizující\r\nnekróza\r\nnekřesťan\r\nnekřesťanův\r\nnektar\r\nnektarinka\r\nnektarínka\r\nnektarinkový\r\nnektarový\r\nněkterý\r\nněkterý\r\nněkudy\r\nnekuřák\r\nnekuřákův\r\nnekvalita\r\nNekvinda\r\nNekvindová\r\nNekvindův\r\nnelad\r\nNelahozeves\r\nnelahozeveský\r\nneláska\r\nNela\r\nnelenění\r\nnelenit\r\nnelezcův\r\nnelezec\r\nnelhat\r\nnelibozvuk\r\nNeliččin\r\nNelička\r\nNelin\r\nnelítostnost\r\nnelkat\r\nnelogismus\r\nNelsonová\r\nNelson\r\nNelsonův\r\nněm\r\nNemanice\r\nnemanice\r\nnemanický\r\nnematický\r\nNěmcová\r\nněmcový\r\nNěmcův\r\nNěmčice\r\nněmčický\r\nNěmčičky\r\nNemčíková\r\nNemčík\r\nNemčíkův\r\nněmčinářčin\r\nněmčinářka\r\nněmčinář\r\nněmčinářův\r\nněmčina\r\nNěmčin\r\nNemčoková\r\nNemčok\r\nNemčokův\r\nNemčovský\r\nNěmecko\r\nněmecký\r\nněmectví\r\nNěmec\r\nNěmec\r\nNěmeček\r\nNěmečková\r\nNěmečkův\r\nněmečtější\r\nnemehlo\r\nněmější\r\nNěmen\r\nneměnný\r\nNémethová\r\nNémeth\r\nNémethův\r\nnemístný\r\nNěmka\r\nnemluva\r\nnemluvě\r\nnemluvňátko\r\nnemluvnější\r\nnemluvně\r\nnemnoho\r\nNemo\r\nnemocen\r\nnemocenská\r\nnemocenský\r\nnemocích\r\nnemocím\r\nnemoc\r\nnemocnější\r\nnemocnice\r\nnemocnička\r\nnemocniční\r\nnemocný\r\nnemodlencův\r\nnemodlenectví\r\nnemodlenec\r\nnemohoucí\r\nnemohoucný\r\nněmohra\r\nNemojov\r\nnemojovský\r\nněmota\r\nnemotora\r\nnemotornější\r\nnemotorný\r\nnemotorův\r\nNemrava\r\nnemrava\r\nNemravová\r\nNemravův\r\nnemravův\r\nNemšovský\r\nněmu\r\nNemův\r\nněmuž\r\nNemyčeves\r\nnemyčeveský\r\nněmý\r\nněmý\r\nněmž\r\nNenačovice\r\nnenačovický\r\nnenadálý\r\nnenáhradnější\r\nnenasyta\r\nnenasytnější\r\nnenasytný\r\nnenasytův\r\nnenávidějí\r\nnenávidějící\r\nnenáviděnější\r\nnenávidění\r\nnenáviděný\r\nnenávidět\r\nnenávistích\r\nnenávistím\r\nnenávistivý\r\nnenávist\r\nnenávistnější\r\nnenávistný\r\nnenávratno\r\nnenažrancův\r\nnenažranec\r\nnene\r\nnenechavcův\r\nnenechavec\r\nnenechavý\r\nnení\r\nneoabsolutismus\r\nneoabsolutistický\r\nneoaustralský\r\nneobarokní\r\nneoblomný\r\nneobolševismus\r\nneocenitelný\r\nneodarwinismus\r\nneodarwinistický\r\nneodbornice\r\nneodborničin\r\nneodborník\r\nneodborníkův\r\nneodčinitelný\r\nneodmyslitelný\r\nneodolatelný\r\nneodym\r\nneodymový\r\nneoexpresionismus\r\nneofašismus\r\nneofašista\r\nneofašistčin\r\nneofašistický\r\nneofašistka\r\nneofašistův\r\nneofunkcionalismus\r\nneogaullista\r\nneogaullistčin\r\nneogaullistka\r\nneogaullistův\r\nneogotický\r\nneogotika\r\nneohesperidin\r\nneohrabancův\r\nneohrabanec\r\nneohrabanější\r\nneohrabaný\r\nneohumanismus\r\nneohumanistický\r\nneochvějnější\r\nneochvějný\r\nneoimperialismus\r\nneoizolacionismus\r\nneoklasicismus\r\nneoklasicista\r\nneoklasicistčin\r\nneoklasicistka\r\nneoklasicistův\r\nneoklasický\r\nneokolonialismus\r\nneokolonialistický\r\nneokolonialističtější\r\nneokomunismus\r\nneokomunista\r\nneokomunistčin\r\nneokomunistka\r\nneokomunistův\r\nneokonfucianismus\r\nneokonfucián\r\nneokonfuciánský\r\nneokonfuciánství\r\nneokonfuciánův\r\nneokonstruktivismus\r\nneokonstruktivista\r\nneokonstruktivistčin\r\nneokonstruktivistka\r\nneokonstruktivistův\r\nneokonzervatismus\r\nneoliberalismus\r\nneoliberalistický\r\nneolingvistika\r\nneolit\r\nneolitický\r\nneologismus\r\nneologistický\r\nneologizovat\r\nneomalený\r\nneomarxismus\r\nneomarxista\r\nneomarxistčin\r\nneomarxistka\r\nneomarxistův\r\nneonacismus\r\nneonacista\r\nneonacistčin\r\nneonacistický\r\nneonacističtější\r\nneonacistka\r\nneonacistův\r\nneon\r\nneón\r\nneonka\r\nneónka\r\nneonový\r\nneónový\r\nneoplasticismus\r\nneoplastický\r\nneopoetismus\r\nneopozitivismus\r\nneoprén\r\nneoprénový\r\nneorealismus\r\nneorealista\r\nneorealistčin\r\nneorealistický\r\nneorealistka\r\nneorealistův\r\nneorenesance\r\nneoromantismus\r\nneoslavismus\r\nneoslavistický\r\nneosocialismus\r\nneostalinismus\r\nneostalinista\r\nneostalinistčin\r\nneostalinističtější\r\nneostalinistka\r\nneostalinistův\r\nneostrukturalismus\r\nneosurrealismus\r\nneosurrealista\r\nneosurrealistčin\r\nneosurrealistka\r\nneosurrealistův\r\nneotesancův\r\nneotesanec\r\nneotesánek\r\nneotesánkův\r\nneovládatelný\r\nneovulgáta\r\nNepálcův\r\nNepálčin\r\nNepálec\r\nNepál\r\nNepálka\r\nnepálský\r\nnepálština\r\nnepaměti\r\nnepamětna\r\nnepamětno\r\nNepilová\r\nNepil\r\nNepilův\r\nNeplachov\r\nneplachovský\r\nneplatiččin\r\nneplatička\r\nneplatičství\r\nneplatič\r\nneplatičův\r\nneplecha\r\nneplnič\r\nneplničův\r\nnepoctivcův\r\nnepoctivec\r\nnepohoda\r\nnepojízdnění\r\nnepojízdněný\r\nnepojízdnět\r\nnepokoj\r\nNepolský\r\nnepoměr\r\nNepomucenum\r\nnepomucký\r\nNepomuk\r\nneposeda\r\nneposednější\r\nneposedný\r\nneposedův\r\nnepostrádatelný\r\nnepotismus\r\nnepotistický\r\nnepotřeba\r\nnepozorovaný\r\nNeprakta\r\nNepraktová\r\nNepraktův\r\nneprání\r\nNeprašová\r\nNepraš\r\nNeprašův\r\nneprat\r\nnepravda\r\nNeprobylice\r\nneprobylický\r\nneprodlený\r\nneprofesionalismus\r\nneprůvar\r\nnepřeberný\r\nnepředpověditelný\r\nnepřetržitý\r\nNepřevázka\r\nnepřístup\r\nnepřítelkyně\r\nnepřítelkynin\r\nnepřítel\r\nnepřítelův\r\nnepsat\r\nneptání\r\nneptat\r\nneptuniový\r\nneptunium\r\nNeptun\r\nNeptunův\r\nnerad\r\nNeradová\r\nNerad\r\nNeradův\r\nNeratovice\r\nneratovický\r\nNeratov\r\nneratovský\r\nnercili\r\nnerealizace\r\nneregistrace\r\nnerez\r\nnerezový\r\nnerománský\r\nnerost\r\nnerostný\r\nnerovnice\r\nnerovnováha\r\nnerozborný\r\nnerozeznávající\r\nnerozlučný\r\nNeruda\r\nnerudný\r\nNerudová\r\nnerudovský\r\nNerudův\r\nnerváček\r\nnervák\r\nnervání\r\nnervat\r\nnerv\r\nnervnější\r\nnervní\r\nnervosnější\r\nnervosvalový\r\nnervování\r\nnervovaný\r\nnervovat\r\nnervovější\r\nnervový\r\nnervóza\r\nnervozita\r\nnervóznější\r\nnervóznění\r\nnervózněný\r\nnervóznět\r\nnervozní\r\nnervózní\r\nnervstvo\r\nneřád\r\nneřádstvo\r\nneřádův\r\nNeředín\r\nneředínský\r\nneřest\r\nneřestný\r\nneřkuli\r\nneřvání\r\nneřvat\r\nnesčetněkrát\r\nnesčetný\r\nnesčíslný\r\nnesenější\r\nnesení\r\nnesený\r\nnesexuální\r\nneshoda\r\nneschopenka\r\nNesiba\r\nNesibová\r\nNesibův\r\nneskonalý\r\nneslabikotvorný\r\nNesládek\r\nNesládková\r\nNesládkův\r\nneslovanský\r\nNeslovice\r\nneslovický\r\nneslučovací\r\nneslyšnější\r\nneslyšný\r\nnesmiřitelnější\r\nnesmysl\r\nnesmyslnější\r\nnesnášelivý\r\nnesnáz\r\nnesoucí\r\nnesouhlas\r\nnesoulad\r\nNesovice\r\nnesovický\r\nnespat\r\nnesperský\r\nnespočet\r\nnespokojencův\r\nnespokojenec\r\nnesrání\r\nnesrat\r\nnesrovnalost\r\nnést\r\nnestlat\r\nnestorčin\r\nnestorka\r\nnestor\r\nnestorův\r\nnestoudnější\r\nnestoudnice\r\nnestoudničin\r\nnestoudník\r\nnestoudný\r\nnestranice\r\nnestraničin\r\nnestraník\r\nnestraníkův\r\nnestrannější\r\nnestvořitelný\r\nnestvůrka\r\nnestyda\r\nnestydatější\r\nnestydatý\r\nNesvačilka\r\nNesvadba\r\nNesvadbová\r\nNesvadbův\r\nnesvár\r\nnesvátek\r\nnesvět\r\nnešika\r\nnešikův\r\nnešlechtice\r\nNešporová\r\nNešpor\r\nNešporův\r\nnešpory\r\nnešť\r\nnešťastnice\r\nnešťastník\r\nnešťastníkův\r\nNeštěmice\r\nneštěmický\r\nneštkání\r\nneštkat\r\nneštovice\r\nneštovička\r\nneštvání\r\nneštvat\r\nnešvar\r\nNetáhlo\r\nNetáhlová\r\nNetáhlův\r\nnetečnější\r\nnetečný\r\nnetečný\r\nnetento\r\nneterminál\r\nneteřiččin\r\nneteřička\r\nneteř\r\nNetín\r\nnetínský\r\nnetkání\r\nnetkat\r\nnetknutý\r\nNetolice\r\nNetolický\r\nnetolický\r\nnetoliko\r\nnetopýrovitý\r\nnetopýr\r\nnetopýrův\r\nnetopýří\r\nNetřebice\r\nnetřebický\r\nnetřesk\r\nnetting\r\nnetto\r\nnettování\r\nNetušilová\r\nNetušil\r\nNetušilův\r\nnetvor\r\nnetvorův\r\nNetvořice\r\nnetvořický\r\nnetykavka\r\nnetýkavka\r\nnetýkavkovitější\r\nNeubauerová\r\nNeubauer\r\nNeubauerův\r\nNeuburg\r\nneuburský\r\nneúcta\r\nNeugebauerová\r\nNeugebauer\r\nNeugebauerův\r\nneuhasitelný\r\nNeumaierová\r\nNeumaier\r\nNeumaierův\r\nNeumajerová\r\nNeumajer\r\nNeumajerův\r\nNeumannová\r\nNeumann\r\nNeumannův\r\nNeumanová\r\nNeuman\r\nNeumanův\r\nneúprosnější\r\nneúprosný\r\nneuralgický\r\nneuralgičtější\r\nneuralgie\r\nneurastenický\r\nneurasteniččin\r\nneurastenička\r\nneurasteničtější\r\nneurastenie\r\nneurastenik\r\nneurastenikův\r\nneurčitek\r\nneurčito\r\nneuroanatomie\r\nneurobiologický\r\nneúroda\r\nneurofyziologický\r\nneurofyziologie\r\nneurofyziolog\r\nneurofyziologův\r\nneurofyzioložčin\r\nneurofyzioložka\r\nneurochirurgický\r\nneurochirurgie\r\nneurochirurg\r\nneurochirurgův\r\nneurokybernetik\r\nneurokybernetikův\r\nneurolingvistický\r\nneurolingvistika\r\nneurologický\r\nneurologičtější\r\nneurologie\r\nneurolog\r\nneurologův\r\nneuroložčin\r\nneuroložka\r\nneuromotorický\r\nneuron\r\nneuronový\r\nneuropatologie\r\nneuropsychický\r\nneuropsychologie\r\nneuropsycholog\r\nneuropsychologův\r\nneuropsycholožčin\r\nneuropsycholožka\r\nneuropsychoterapie\r\nneuroradiologie\r\nneuroticismus\r\nneurotický\r\nneurotiččin\r\nneurotička\r\nneurotičtější\r\nneurotik\r\nneurotikův\r\nneurotizace\r\nneurotizující\r\nneurotransmitter\r\nneurověda\r\nneurovědní\r\nneurovegetativní\r\nneuróza\r\nneurvalcův\r\nneurvalec\r\nneurvalý\r\nneúspěch\r\nneustálý\r\nNeustupov\r\nneustupovský\r\nneutrál\r\nneutralisační\r\nneutralita\r\nneutralizace\r\nneutralizační\r\nneutralizování\r\nneutralizovaný\r\nneutralizovat\r\nneutralizující\r\nneutrálnější\r\nneutrální\r\nneutrino\r\nneutrinový\r\nneutron\r\nneutronový\r\nneutrum\r\nNeuwirthová\r\nNeuwirth\r\nNeuwirthův\r\nNeužilová\r\nNeužil\r\nNeužilův\r\nNevada\r\nnevadský\r\nnevčas\r\nnevdat\r\nnevděčnice\r\nnevděk\r\nNevečeřalová\r\nNevečeřal\r\nNevečeřalův\r\nnevědomky\r\nnevědoucí\r\nNeveklov\r\nneveklovský\r\nnevěra\r\nnevěrcův\r\nnevěrecký\r\nnevěrec\r\nnevěrnice\r\nnevěrničin\r\nnevěrník\r\nnevěrníkův\r\nnevěřícný\r\nnevěsta\r\nnevěstinec\r\nnevěstinka\r\nnevěstin\r\nnevěstka\r\nnevhod\r\nneviňátko\r\nnevina\r\nnevizuální\r\nnevodič\r\nnevodný\r\nnevoják\r\nnevojákův\r\nnevole\r\nnevolky\r\nnevolnice\r\nnevolnický\r\nnevolnictví\r\nnevolničtější\r\nnevolník\r\nnevolníkův\r\nNevosadová\r\nNevosad\r\nNevosadův\r\nnevražení\r\nnevražit\r\nnevraživější\r\nnevraživý\r\nnevrlejší\r\nnevrlý\r\nněvský\r\nnevydávající\r\nnevyhnutný\r\nnevýhoda\r\nNevyhoštěný\r\nnevychovancův\r\nnevychovanec\r\nnevyjímaje\r\nnevyjímajíc\r\nnevzdat\r\nnew\r\nnewcastleský\r\nNewfoundland\r\nnewfoundlandský\r\nnewton\r\nnewtonovský\r\nNewton\r\nNewtonův\r\nNewyorčančin\r\nNewyorčanka\r\nNewyorčan\r\nNewyorčanův\r\nnewyorský\r\nnexus\r\nnezadatelný\r\nNezamyslice\r\nnezamyslický\r\nNezamysl\r\nNezamyslův\r\nNezbeda\r\nnezbeda\r\nnezbednice\r\nnezbedničin\r\nnezbedník\r\nnezbedníkův\r\nnezbedný\r\nNezbedová\r\nNezbedův\r\nnezbedův\r\nnezdar\r\nNezdenice\r\nnezdenický\r\nNezdice\r\nnezdický\r\nnezdvořák\r\nnezdvořákův\r\nNezider\r\nNeziderský\r\nnezkrotnější\r\nnezkrotný\r\nnezlomnější\r\nnezlomný\r\nnezmar\r\nnezmarův\r\nnezměrnější\r\nnezměrný\r\nnezměrný\r\nneznaboh\r\nneznabohův\r\nneználek\r\nneználkův\r\nneznat\r\nnezpůsob\r\nnezřetelno\r\nNezvalová\r\nNezval\r\nNezvalův\r\nnezvat\r\nnezvedený\r\nNezvěstice\r\nnezvěstický\r\nnezvěstný\r\nnezvratitelný\r\nnezvyk\r\nnezvyklejší\r\nnež\r\nněž\r\nNežárka\r\nnežit\r\nnežli\r\nněžnější\r\nněžný\r\nnežrání\r\nnežrat\r\nNF\r\nnf\r\nNG\r\nNHL\r\nni\r\nní\r\nnic\r\nnicka\r\nnicméně\r\nnicnedělající\r\nnicnedělání\r\nnicneřešící\r\nnicneříkající\r\nnicnetušící\r\nnicota\r\nnicotnůstka\r\nnicotný\r\nNicov\r\nnicovský\r\nnicůtka\r\nničeho\r\nničem\r\nničema\r\nničemnice\r\nničemničin\r\nničemník\r\nničemný\r\nničemu\r\nničemův\r\nničení\r\nničený\r\nničící\r\nničím\r\nničit\r\nničitelčin\r\nničitelka\r\nničitel\r\nničitelův\r\nničivější\r\nničivý\r\nničí\r\nNidrleová\r\nNidrle\r\nNidrleův\r\nNiederleová\r\nNiederle\r\nNiederleův\r\nNiedermirtlová\r\nNiedermirtl\r\nNiedermirtlův\r\nNietze\r\nNietzsche\r\nNietzschův\r\nNietzův\r\nNiger\r\nNigérie\r\nNigerijcův\r\nNigerijčin\r\nNigerijec\r\nNigerijka\r\nnigerijský\r\nnigerský\r\nnigerštější\r\nNigeřančin\r\nNigeřanka\r\nNigeřan\r\nNigeřanův\r\nNigrin\r\nnihilismus\r\nnihilista\r\nnihilistčin\r\nnihilistický\r\nnihilističtější\r\nnihilistka\r\nnihilistův\r\nNihošovice\r\nnihošovický\r\nNíhov\r\nníhovský\r\nnich\r\nnichrom\r\nnichž\r\nnijak\r\nnijaký\r\nnijaký\r\nnikam\r\nNikaragua\r\nNikaragujcův\r\nNikaragujčin\r\nNikaragujec\r\nNikaragujka\r\nnikaraguyský\r\nnika\r\nnikde\r\nnikdo\r\nnikdy\r\nNiké\r\nnikelin\r\nnikelinový\r\nnikelnatý\r\nNikita\r\nNikitův\r\nnikláček\r\nniklák\r\nniklárna\r\nnikl\r\nniklovanější\r\nniklovaný\r\nniklovat\r\nNiklová\r\nniklový\r\nNikl\r\nNiklův\r\nNikodém\r\nNikodémův\r\nNikolajevičová\r\nNikolajevič\r\nNikolajevičův\r\nNikolajová\r\nNikolaj\r\nNikolajův\r\nNikola\r\nNikolčice\r\nnikolčický\r\nNikolčin\r\nnikoli\r\nNikolin\r\nnikoliv\r\nnikolivěk\r\nNikolka\r\nNikósie\r\nnikósijský\r\nnikotin\r\nnikotinismus\r\nnikotinistický\r\nnikotinový\r\nnikterak\r\nnikudy\r\nnilgrupa\r\nNil\r\nnilpotentní\r\nnilradikál\r\nnilský\r\nnim\r\nním\r\nnimbostratus\r\nnimbus\r\nNiměřice\r\nniměřický\r\nnimi\r\nnimiž\r\nNimpšov\r\nnimpšovský\r\nnimrání\r\nnimrat\r\nnimravý\r\nnimrod\r\nnimž\r\nnímž\r\nNina\r\nNineččin\r\nNinečka\r\nNinin\r\nNinoččin\r\nNinočka\r\nniob\r\nniobičný\r\nniobitý\r\nniobový\r\nnirvána\r\nNisa\r\nnisin\r\nnístějový\r\nnit\r\nniťárna\r\nniťařství\r\nniťař\r\nniťařův\r\nnitě\r\nnitěmi\r\nnitěnka\r\nnítěnka\r\nnitěný\r\nniternější\r\nniterní\r\nniterný\r\nniti\r\nnití\r\nnitích\r\nnitím\r\nnitka\r\nnitkovitější\r\nnitkovitý\r\nnitkový\r\nniťovaný\r\nniťovitý\r\nniťovka\r\nniťový\r\nnitrace\r\nnitranský\r\nnitrát\r\nnitrátový\r\nnitrid\r\nnitridový\r\nnitrifikace\r\nnitril\r\nnitroblána\r\nnitrocelulóza\r\nnitrocelulózový\r\nnitroděložní\r\nnitrogenium\r\nnitroglycerin\r\nnitroglycerín\r\nnitroglycerinový\r\nnitrokožní\r\nnitrolak\r\nnitrolebeční\r\nnitrolepidlo\r\nnitro\r\nnitrooční\r\nnitroskupina\r\nnitrosloučenina\r\nnitrosvalový\r\nnitrosyl\r\nnitroušní\r\nnitrování\r\nnitrovaný\r\nnitrovat\r\nnitrožilní\r\nniť\r\nNiue\r\nniueský\r\nniva\r\nnivelace\r\nnivelační\r\nnivelizace\r\nnivelizační\r\nnivelizování\r\nnivelizovaný\r\nnivelizovat\r\nnivelizující\r\nnivka\r\nNivnice\r\nnivnický\r\nnivní\r\nnivó\r\nnízkoaktivní\r\nnízkoalkoholický\r\nnízkocyklický\r\nnizkocyklický\r\nnizkocykličtější\r\nnízkocyklový\r\nnízkodávkovaný\r\nnízkoemisní\r\nnízkoenergetický\r\nnízkofrekvenční\r\nnízkohustotní\r\nnízkokalorický\r\nnízkokaloričtější\r\nnízkokapacitní\r\nnízkolegovaný\r\nnízkomolekulární\r\nnízkonapěťový\r\nnízkonohý\r\nnízkopaletový\r\nnízkoplošinový\r\nnízkopodlažní\r\nnízkoprahový\r\nnízkopříjmový\r\nnízkoputnový\r\nnízkostupňový\r\nnízkoteplotní\r\nnízkotlakový\r\nnízkotlaký\r\nnízkotučnější\r\nnízkouhlíkový\r\nnízkoúročený\r\nnízkoúrovňový\r\nnízký\r\nnizoučký\r\nnizounký\r\nNizozemcův\r\nNizozemčin\r\nNizozemec\r\nNizozemí\r\nNizozemka\r\nNizozemsko\r\nnizozemský\r\nnizozemština\r\nniž\r\nníž\r\nnižádný\r\nNižan\r\nNižbor\r\nnižborský\r\nníže\r\nnížinatější\r\nnížinatý\r\nnížina\r\nnížinný\r\nNížkov\r\nnížkovský\r\nnižší\r\nNLG\r\nNN\r\nNo\r\nno\r\nnó\r\nnobelium\r\nNobel\r\nNobelův\r\nnóbl\r\nnoblesa\r\nnoblesnější\r\nnoblesní\r\nnoc\r\nnocemi\r\nnoci\r\nnocí\r\nnocích\r\nnocím\r\nnocionální\r\nnoc\r\nnoclehárenský\r\nnoclehárna\r\nnocleh\r\nnocležiště\r\nnocležné\r\nnocležnice\r\nnocležničin\r\nnocležník\r\nnocležníkův\r\nnocování\r\nnocovat\r\nnocovávání\r\nnocovávat\r\nnocoviště\r\nnocující\r\nnočnější\r\nnočníček\r\nnočník\r\nnoční\r\nnodální\r\nNodlová\r\nNodl\r\nNodlův\r\nnodulární\r\nNoe\r\nNoeho\r\nNoem\r\nNoemi\r\nNoemovi\r\nNoemu\r\nNoemův\r\nnoetický\r\nnoetika\r\nnohama\r\nNoha\r\nnohatější\r\nnohatý\r\nNohavica\r\nnohavice\r\nNohavicová\r\nNohavicův\r\nnohavička\r\nnoha\r\nnohejbal\r\nnohejbalista\r\nnohejbalistčin\r\nnohejbalistka\r\nnohejbalistův\r\nnohejbalový\r\nnohou\r\nNohová\r\nnohsled\r\nnohsledův\r\nNohův\r\nnojo\r\nNOK\r\nnok\r\nnokturno\r\nnomádismus\r\nnomád\r\nnomádský\r\nnomádství\r\nnomádův\r\nnomenklatura\r\nnomenklaturnější\r\nnomenklaturní\r\nnominace\r\nnominační\r\nnominál\r\nnominalismus\r\nnominalistický\r\nnominalizace\r\nnominální\r\nnominativ\r\nnominativní\r\nnominování\r\nnominovaný\r\nnominovat\r\nnominující\r\nnomografie\r\nnomogram\r\nnonakord\r\nnonakordový\r\nnona\r\nnonekvivalence\r\nnoneta\r\nnonet\r\nnoniliarda\r\nnonilion\r\nnonimplikace\r\nnoniový\r\nnoniusový\r\nnonkomforní\r\nnonkonformismus\r\nnonkonformista\r\nnonkonformistčin\r\nnonkonformistický\r\nnonkonformistka\r\nnonkonformistův\r\nnonkonformnější\r\nnonkonformní\r\nnono\r\nnonokluze\r\nnonsens\r\nnonšalance\r\nnonšalantnější\r\nnonšalantní\r\nnonverbální\r\nnopovací\r\nnopování\r\nnopovaný\r\nnopovat\r\nnopový\r\nNora\r\nnora\r\nNorbert\r\nNorbertův\r\nnorbixin\r\nNorčin\r\nnordgavský\r\nnordický\r\nnordičtější\r\nnordista\r\nnordistčin\r\nnordistika\r\nnordistka\r\nnordistův\r\nnorek\r\nnoremní\r\nNorfolk\r\nnorfolský\r\nNorimberk\r\nnorimberský\r\nnorimberský\r\nNorka\r\nnorkový\r\nnorkův\r\nnormála\r\nnormál\r\nnormalita\r\nnormalizace\r\nnormalizační\r\nnormalizátor\r\nnormalizátorův\r\nnormalizování\r\nnormalizovaný\r\nnormalizovat\r\nnormalizující\r\nnormálnější\r\nnormální\r\nnormálový\r\nNormanďan\r\nNormanďanův\r\nNormandie\r\nnormandský\r\nNorman\r\nnormanský\r\nnormanův\r\nnormativ\r\nnormativismus\r\nnormativnější\r\nnormativní\r\nnorma\r\nnormohodina\r\nnormopis\r\nnormotvorba\r\nnormotvorný\r\nnormovací\r\nnormovaččin\r\nnormovačka\r\nnormovač\r\nnormovačův\r\nnormovanější\r\nnormování\r\nnormovaný\r\nnormovat\r\nnormový\r\nnormující\r\nnorník\r\nnorníkův\r\nnorný\r\nnorování\r\nNor\r\nNorsko\r\nnorský\r\nnorština\r\nNorton\r\nNortonův\r\nNorův\r\nnoření\r\nnořený\r\nnořící\r\nNořin\r\nnořit\r\nnosálka\r\nNosálová\r\nNosálov\r\nnosálovský\r\nnosál\r\nNosál\r\nNosálův\r\nnosálův\r\nnosánek\r\nnosatčík\r\nnosatčíkův\r\nnosatější\r\nnosatka\r\nnosatý\r\nNosek\r\nnos\r\nnosící\r\nnosíček\r\nnosičský\r\nnosičství\r\nnosič\r\nnosičův\r\nnosík\r\nnosit\r\nnositelčin\r\nnositelka\r\nnositel\r\nnositelův\r\nnosítka\r\nnosívání\r\nnosívaný\r\nnosívat\r\nNosková\r\nNoskův\r\nnosnější\r\nnosnice\r\nnosník\r\nnosní\r\nnosný\r\nnosohltan\r\nnosohltanový\r\nnosorožcův\r\nnosorožec\r\nnosorožík\r\nnosorožíkův\r\nnosovější\r\nnosovka\r\nnosový\r\nnostalgický\r\nnostalgiččin\r\nnostalgička\r\nnostalgičtější\r\nnostalgie\r\nnostalgik\r\nnostalgikův\r\nNostice\r\nNosticová\r\nNostic\r\nNosticův\r\nNostradamo\r\nNostradamus\r\nNostradamův\r\nnostratický\r\nnostrifikace\r\nnostrifikovat\r\nnošení\r\nnošený\r\nNošovice\r\nnošovický\r\nnotabene\r\nnotace\r\nnotační\r\nnotářčin\r\nnotářka\r\nnotářský\r\nnotářství\r\nnotář\r\nnotářův\r\nnota\r\nnóta\r\nnotebook\r\nNoteč\r\nnotes\r\nnoticka\r\nnotička\r\nnotifikace\r\nnotifikovaný\r\nnotka\r\nnotnější\r\nnotný\r\nnotorický\r\nnotoriččin\r\nnotorička\r\nnotoričtější\r\nnotorik\r\nnotorikův\r\nnototisk\r\nnotování\r\nnotovaný\r\nnotovat\r\nnotový\r\nnotující\r\nnotýsek\r\nňouma\r\nňoumův\r\nNouza\r\nnouze\r\nNouzová\r\nnouzovější\r\nnouzovka\r\nnouzový\r\nNouzův\r\nnovace\r\nnováček\r\nNováček\r\nNováčková\r\nnováčkovský\r\nNováčkův\r\nnováčkův\r\nNováková\r\nNovák\r\nNovákův\r\nnovátorčin\r\nnovátorka\r\nnovátor\r\nnovátorský\r\nnovátorství\r\nnovátorštější\r\nnovátorův\r\nnova\r\nnovější\r\nnovela\r\nnovelista\r\nnovelistčin\r\nnovelistický\r\nnovelističtější\r\nnovelistka\r\nnovelistův\r\nnovelizace\r\nnovelizační\r\nnovelizovanější\r\nnovelizování\r\nnovelizovaný\r\nnovelizovat\r\nnovelizující\r\nnovelka\r\nnovelovější\r\nnovelový\r\nnoviciát\r\nnovicka\r\nnovicovský\r\nnovic\r\nnovicův\r\nnovinářčin\r\nnovinařina\r\nnovinářka\r\nnovinářský\r\nnovinářství\r\nnovinářštější\r\nnovinář\r\nnovinářův\r\nnovina\r\nnovinka\r\nnovinkový\r\nnovinovější\r\nnovinový\r\nnovoaktivista\r\nnovoaktivistčin\r\nnovoaktivistický\r\nnovoaktivistka\r\nnovoaktivistův\r\nnovobarokní\r\nnovoborský\r\nnovobuddhismus\r\nnovocentralismus\r\nnovočeský\r\nnovodobější\r\nnovodobý\r\nnovodur\r\nnovodurový\r\nnovoevropský\r\nnovofundlanďan\r\nnovofundlanďanův\r\nnovofunkcionalismus\r\nnovogotický\r\nnovogotika\r\nnovohradský\r\nnovohumanismus\r\nnovohumanistický\r\nNovojičínsko\r\nnovojičínský\r\nnovokain\r\nnovokainový\r\nnovoklasicismus\r\nnovoklasicistický\r\nnovokřtěncův\r\nnovokřtěnčin\r\nnovokřtěnec\r\nnovokřtěnka\r\nnovoluní\r\nnovomanželčin\r\nnovomanželka\r\nnovomanžel\r\nnovomanželský\r\nnovomanželův\r\nnovoměstský\r\nnovomlýnský\r\nnovopacký\r\nnovopečený\r\nnovoplatonismus\r\nnovoplatónský\r\nnovopozitivismus\r\nnovopozitivistický\r\nnovorenesance\r\nnovorenesanční\r\nnovoročenka\r\nnovoroční\r\nnovorománský\r\nnovoromantický\r\nnovoromantičtější\r\nnovoromantika\r\nnovoromantismus\r\nnovorozeňátko\r\nnovorozencův\r\nnovorozenecký\r\nnovorozenec\r\nnovorozeně\r\nnovorozený\r\nnovořecký\r\nnovořečtější\r\nnovořečtina\r\nNovosadová\r\nNovosad\r\nNovosadův\r\nnovosedelský\r\nNovosedlice\r\nnovosedlický\r\nNovosedly\r\nNovosibirsk\r\nnovosibirský\r\nnovoslovanský\r\nnovostavba\r\nnovošlechtění\r\nNovota\r\nnovotářčin\r\nnovotářka\r\nnovotářský\r\nnovotářství\r\nnovotář\r\nnovotářův\r\nnovota\r\nNovotný\r\nnovotomismus\r\nnovotomista\r\nnovotomistčin\r\nnovotomistický\r\nnovotomistka\r\nnovotomistův\r\nNovotová\r\nNovotův\r\nnovotvar\r\nnovotvořený\r\nnovoutrakvista\r\nnovoutrakvistčin\r\nnovoutrakvistický\r\nnovoutrakvistka\r\nnovoutrakvistův\r\nnovověk\r\nnovověký\r\nnovověrcův\r\nnovověrec\r\nnovovysočanský\r\nnovozákonní\r\nnovozámecký\r\nNovozélanďančin\r\nNovozélanďanka\r\nNovozélanďan\r\nNovozélanďanův\r\nnovozélandský\r\nnovum\r\nNový\r\nNový\r\nnový\r\nnoxa\r\nnozdra\r\nnože\r\nnožem\r\nnoženka\r\nnoži\r\nnožíček\r\nNožička\r\nnožička\r\nNožičková\r\nnožičkový\r\nNožičkův\r\nnožích\r\nnožík\r\nNožina\r\nNožinová\r\nNožinův\r\nnožířský\r\nnožířství\r\nnožíř\r\nnožířův\r\nnožkama\r\nnožka\r\nnožní\r\nnožový\r\nnožů\r\nnožům\r\nNP\r\nnpor\r\nnprap\r\nNr\r\nNRT\r\nnrtm\r\nNS\r\nNSR\r\nnt\r\nNTSC\r\nnu\r\nnuance\r\nnucenější\r\nnucení\r\nnucený\r\nNučice\r\nnučický\r\nnuda\r\nnudění\r\nnuděný\r\nnudící\r\nnudismus\r\nnudista\r\nnudistčin\r\nnudistický\r\nnudističtější\r\nnudistka\r\nnudistův\r\nnudit\r\nnudle\r\nnudlička\r\nnudlový\r\nnudnější\r\nnudný\r\nnuerský\r\nnugát\r\nnugátový\r\nňuchací\r\nnukleace\r\nnukleační\r\nnukleární\r\nnukleáza\r\nnukleofilní\r\nnukleon\r\nnukleonový\r\nnukleotid\r\nnukleotidový\r\nnukleový\r\nnukleus\r\nnuklid\r\nnulák\r\nnulakrát\r\nnulární\r\nnulátko\r\nnula\r\nnula\r\nnulita\r\nnulitní\r\nnulovací\r\nnulování\r\nnulovaný\r\nnulovat\r\nnulovávání\r\nnulovávaný\r\nnulovávat\r\nnulovější\r\nnulový\r\nnulový\r\nnultý\r\nňuma\r\nnumerický\r\nnumero\r\nnumismatický\r\nnumismatika\r\nnumizmatický\r\nnumizmatika\r\nnumulitový\r\nňumův\r\nnunciatura\r\nnuncius\r\nnunciův\r\nnůsek\r\nnuselský\r\nNusiosová\r\nNusios\r\nNusiosův\r\nNuska\r\nNusková\r\nNuskův\r\nNusle\r\nnůše\r\nnutace\r\nnutící\r\nnutit\r\nnutkání\r\nnutkaný\r\nnutkat\r\nnutkavější\r\nnutkavý\r\nnutnější\r\nnutno\r\nnutný\r\nnutriční\r\nnutriční\r\nnutrie\r\nnutrií\r\nnutriový\r\nNuttallův\r\nnuzáctví\r\nnuzáčtější\r\nnuzák\r\nnuzákův\r\nnuznější\r\nnuzný\r\nnuzota\r\nnuž\r\nnůž\r\nnuže\r\nnůžkový\r\nnůžkový\r\nnůžky\r\nnůžtičky\r\nNVP\r\nnýbrž\r\nNýčová\r\nNýč\r\nNýčův\r\nNýdrová\r\nNýdr\r\nNýdrův\r\nnyjící\r\nNyklová\r\nNykl\r\nNyklův\r\nNykrýnová\r\nNykrýn\r\nNykrýnův\r\nnylon\r\nnylonka\r\nnylonky\r\nnylonový\r\nNymburk\r\nNymbursko\r\nnymburský\r\nnymfa\r\nnymfomanka\r\nnynějšek\r\nnynější\r\nnynějška\r\nnyní\r\nNýrov\r\nnýrovský\r\nNýrsko\r\nnýrský\r\nnýřanský\r\nNýřany\r\nnýtař\r\nnýtařův\r\nnýt\r\nnýtek\r\nnýt\r\nnytí\r\nnýtovací\r\nnýtovačka\r\nnýtovanější\r\nnýtování\r\nnýtovaný\r\nnýtovat\r\nnýtový\r\nnyvější\r\nNývltová\r\nNývlt\r\nNývltův\r\nnyvý\r\no\r\nOAJ\r\nOAS\r\noasa\r\noáza\r\noázový\r\nob\r\noba\r\nobahněnější\r\nobahněný\r\nobalamucení\r\nobalamucený\r\nobalamutit\r\nobaleč\r\nobalečův\r\nobalenější\r\nobalení\r\nobalený\r\nobal\r\nobalit\r\nobalitelnější\r\nobalitelný\r\nobálka\r\nobálkovací\r\nobálkování\r\nobálkovaný\r\nobálkovat\r\nobálkový\r\nobalovací\r\nobalovanější\r\nobalování\r\nobalovaný\r\nobalovat\r\nobalovávání\r\nObalová\r\nobalovna\r\nobalový\r\nObal\r\nobalující\r\nObalův\r\nobapolný\r\nobarvenější\r\nobarvení\r\nobarvený\r\nobarvit\r\nobarvování\r\nobarvovaný\r\nobarvovat\r\nobávající\r\nobávanější\r\nobávání\r\nobávaný\r\nobávat\r\nobava\r\nobcákání\r\nobcákaný\r\nobcákat\r\nobcovací\r\nobcování\r\nobcování\r\nobcovaný\r\nobcovat\r\nobcovávání\r\nobcovávat\r\nobčančin\r\nobčánek\r\nobčankářčin\r\nobčankářka\r\nobčanka\r\nobčánkův\r\nobčan\r\nobčanskoprávní\r\nobčanský\r\nobčanství\r\nobčanstvo\r\nobčanštější\r\nobčanův\r\nobčárnout\r\nobčárnutí\r\nobčas\r\nobčasnější\r\nobčasník\r\nobčasný\r\nobčerstvení\r\nobčerstvený\r\nobčerstvit\r\nobčerstvovací\r\nobčerstvování\r\nobčerstvovaný\r\nobčerstvovat\r\nobčerstvovatelčin\r\nobčerstvovatelka\r\nobčerstvovatel\r\nobčerstvovatelův\r\nobčerstvující\r\nobčina\r\nobčinový\r\nobčmárnout\r\nobčmárnutí\r\nobčmárnutý\r\nObčov\r\nobčovský\r\nobčurávající\r\nobčůrávající\r\nobčurávaný\r\nobčůrávaný\r\nobčurávat\r\nobčůrávat\r\nobdarovanější\r\nobdarování\r\nobdarovaný\r\nobdarovat\r\nobdarovávanější\r\nobdarovávání\r\nobdarovávaný\r\nobdarovávat\r\nobdařenější\r\nobdařenější\r\nobdaření\r\nobdařený\r\nobdařit\r\nobdařovat\r\nobdělání\r\nobdělaný\r\nobdělat\r\nobdělávající\r\nobdělávaní\r\nobdělávání\r\nobdělávaný\r\nobdělávatelnější\r\nobdělavatelný\r\nobdělávat\r\nobdělávka\r\nobdélníček\r\nobdélník\r\nobdélníkový\r\nobdélný\r\nobden\r\nobdiv\r\nobdivnější\r\nobdivný\r\nobdivovanější\r\nobdivování\r\nobdivovaný\r\nobdivovat\r\nobdivovatelčin\r\nobdivovatelka\r\nobdivovatel\r\nobdivovatelův\r\nobdivuhodnější\r\nobdivuhodný\r\nobdivující\r\nobdivuplnější\r\nobdoba\r\nobdobí\r\nobdobně\r\nobdobnější\r\nobdobný\r\nObdržálek\r\nObdržálková\r\nObdržálkův\r\nobdrženější\r\nobdržení\r\nobdržený\r\nobdržet\r\nobdržovanější\r\nobdržování\r\nobdržovaný\r\nobdržovat\r\nobdržující\r\nobdukce\r\nobě\r\nobecenstvo\r\nobecnější\r\nObecnice\r\nobecnický\r\nobecnina\r\nobecní\r\nobecný\r\nobec\r\noběd\r\nObědovice\r\nobědovický\r\nobědový\r\nobědvající\r\nobědvání\r\nobědvaný\r\nobědvat\r\nobědvávání\r\nobědvávaný\r\nobědvávat\r\noběhání\r\noběhaný\r\noběhat\r\noběh\r\noběhlý\r\nobehnal\r\nobehnanější\r\nobehnání\r\nobehnán\r\nobehnaný\r\nobehnat\r\noběhnout\r\noběhnutí\r\noběhnutý\r\noběhový\r\nobehranější\r\nobehrání\r\nobehraný\r\nobehrát\r\nobehrávající\r\nobehrávanější\r\nobehrávání\r\nobehrávaný\r\nobehrávat\r\nobejda\r\nobejda\r\nobejdu\r\nobejdův\r\nobejitější\r\nobejít\r\nobejití\r\nobejit\r\nobejitý\r\nobejmout\r\nobejmu\r\nobejmutí\r\nobelhal\r\nobelhanější\r\nobelhaní\r\nobelhání\r\nobelhán\r\nobelhaný\r\nobelháný\r\nobelhat\r\nobelhávanější\r\nobelhávaní\r\nobelhávání\r\nobelhávaný\r\nobelhávat\r\nobelisk\r\nObelix\r\nObelixův\r\nobelstění\r\nobelstěný\r\nobelstít\r\nobelžu\r\noběma\r\nobemknout\r\nobemknutí\r\nobemknutý\r\nobemykat\r\nobepínající\r\nobepínání\r\nobepínaný\r\nobepínat\r\nobeplavání\r\nobeplout\r\nobeplouvání\r\nobeplouvaný\r\nobeplouvat\r\nobeplutí\r\nobeplutý\r\nobepnout\r\nobepnutější\r\nobepnutí\r\nobepnutý\r\nobepředenější\r\nobepředení\r\nobepředen\r\nobepředený\r\nobepříst\r\noberlandrát\r\nObermanová\r\nOberman\r\nObermanův\r\noberst\r\noberstův\r\nobesílací\r\nobesílající\r\nobesílanější\r\nobesílání\r\nobesílaný\r\nobesílat\r\noběsit\r\nobeslal\r\nobeslanější\r\nobeslání\r\nobeslaný\r\nobeslat\r\nobesrat\r\nobestavění\r\nobestavěný\r\nobestavět\r\nobestelu\r\nobestírající\r\nobestíranější\r\nobestírání\r\nobestíraný\r\nobestírat\r\nobestlal\r\nobestlanější\r\nobestlání\r\nobestlaný\r\nobestlat\r\nobestoupení\r\nobestoupený\r\nobestoupit\r\nobestřenější\r\nobestření\r\nobestřený\r\nobestřít\r\nobestupování\r\nobešel\r\noběšencův\r\noběšenec\r\noběšení\r\noběšený\r\nobešlejší\r\nobešlu\r\nobešlý\r\nobětavcův\r\nobětavec\r\nobětavější\r\nobětavkyně\r\nobětavkynin\r\nobětavý\r\nobětech\r\nobětem\r\nobětina\r\nobětíplnější\r\nobětiště\r\nobětiště\r\noběť\r\nobetkávající\r\nobětmi\r\nobětní\r\nobětování\r\nobětovaný\r\nobětovat\r\nobětovávání\r\nobětovávaný\r\nobětovávat\r\nobětující\r\nobezděnější\r\nobezdění\r\nobezděný\r\nobezdít\r\nobezditelnější\r\nobezditelný\r\nobezdívat\r\nobezdívka\r\nobezita\r\nobezlička\r\nobeznalejší\r\nobeznámenější\r\nobeznámení\r\nobeznámený\r\nobeznámit\r\nobeznamující\r\nobéznější\r\nobézní\r\nobezřelejší\r\nobezřelý\r\nobezřelý\r\nobezřetnější\r\nobezřetný\r\nobeženu\r\noběživo\r\noběžnice\r\noběžnice\r\noběžnicový\r\noběžnička\r\noběžník\r\noběžný\r\nobfukování\r\nobfukovaný\r\nobfukovat\r\nobfukovávání\r\nobfukovávaný\r\nobfukovávat\r\nobháčkovat\r\nobhájce\r\nobhájcův\r\nobhájení\r\nobhájený\r\nobhájit\r\nobhajitelnější\r\nobhájitelnější\r\nobhajitelný\r\nobhájkyně\r\nobhájkynin\r\nobhajoba\r\nobhajovací\r\nobhajování\r\nobhajovaný\r\nobhajovat\r\nobhajující\r\nobhlédající\r\nobhlédnout\r\nobhlédnul\r\nobhlédnutější\r\nobhlédnutí\r\nobhlédnutý\r\nobhlédnutý\r\nobhlídka\r\nobhlídkový\r\nobhlídnout\r\nobhlídnul\r\nobhlížecí\r\nobhlížející\r\nobhlíženější\r\nobhlížení\r\nobhlížený\r\nobhlížet\r\nobhlodanější\r\nobhlodání\r\nobhlodaný\r\nobhlodat\r\nobhlodávání\r\nobhlodávaný\r\nobhlodávat\r\nobhodit\r\nobhořet\r\nobhospodaření\r\nobhospodařený\r\nobhospodařit\r\nobhospodařovanější\r\nobhospodařování\r\nobhospodařovaný\r\nobhospodařovat\r\nobhospodařovatelnější\r\nobhospodařovatelný\r\nobhospodařovatel\r\nobhospodařovatelův\r\nobhospodařovávat\r\nobhospodařující\r\nobhození\r\nobhozený\r\nobhroublejší\r\nobhroublý\r\nobhryzající\r\nobhryzanější\r\nobhryzání\r\nobhryzaný\r\nobhryzat\r\nobhryzávání\r\nobhryzávaný\r\nobhryzávat\r\nobcházející\r\nobcházenější\r\nobcházení\r\nobcházený\r\nobcházet\r\nobcházívat\r\nobcházka\r\nobchoďák\r\nobchodění\r\nobchod\r\nobchodit\r\nobchodnější\r\nobchodněpolitický\r\nobchodnice\r\nobchodnický\r\nobchodníček\r\nobchodničin\r\nobchodníčkův\r\nobchodničtější\r\nobchodník\r\nobchodníkův\r\nobchodní\r\nobchodovanější\r\nobchodování\r\nobchodovaný\r\nobchodovat\r\nobchodovatelnější\r\nobchodovatelný\r\nobchodovávání\r\nobchodovávaný\r\nobchodovávat\r\nobchodový\r\nobchodující\r\nobchůdek\r\nobchůzka\r\nobchůzkový\r\nobchvácení\r\nobchvácený\r\nobchvacovat\r\nobchvat\r\nobchvátit\r\nobchvatný\r\nobchvatový\r\nobíhající\r\nobíhanější\r\nobíhání\r\nobíhaný\r\nobíhat\r\nobíhávání\r\nobíhávaný\r\nobíhávat\r\nobíjení\r\nobíjený\r\nobíjet\r\nobílení\r\nobílený\r\nobilí\r\nobílit\r\nobilka\r\nobilnářský\r\nobilnářství\r\nobilnice\r\nobilnina\r\nobilní\r\nobilný\r\nobilovina\r\nobinadlo\r\nobírající\r\nobíranější\r\nobírání\r\nobíraný\r\nobírat\r\nobít\r\nobití\r\nobit\r\nobitý\r\nobjal\r\nobjasněnější\r\nobjasnění\r\nobjasněný\r\nobjasnit\r\nobjasnitelný\r\nobjasňovací\r\nobjasňování\r\nobjasňovaný\r\nobjasňovat\r\nobjasňující\r\nobjatější\r\nobjat\r\nobjatý\r\nobjednací\r\nobjednající\r\nobjednanější\r\nobjednání\r\nobjednáno\r\nobjednaný\r\nobjednatel\r\nobjednatelův\r\nobjednat\r\nobjednávající\r\nobjednávanější\r\nobjednávání\r\nobjednávaný\r\nobjednavatel\r\nobjednávatel\r\nobjednavatelův\r\nobjednávatelův\r\nobjednávat\r\nobjednávka\r\nobjednávkový\r\nobjedu\r\nobjekt\r\nobjektivace\r\nobjektiv\r\nobjektivismus\r\nobjektivista\r\nobjektivistčin\r\nobjektivistický\r\nobjektivističtější\r\nobjektivistka\r\nobjektivistův\r\nobjektivita\r\nobjektivizace\r\nobjektivizování\r\nobjektivizovaný\r\nobjektivizovat\r\nobjektivizovatelnější\r\nobjektivizovatelný\r\nobjektivizující\r\nobjektivnější\r\nobjektivní\r\nobjektivový\r\nobjektový\r\nobjel\r\nobjem\r\nobjemnější\r\nobjemnůstka\r\nobjemný\r\nobjemový\r\nobjení\r\nobjetější\r\nobjet\r\nobjetí\r\nobjetý\r\nobjevení\r\nobjevený\r\nobjev\r\nobjevit\r\nobjevitelčin\r\nobjevitelka\r\nobjevitelský\r\nobjevitelství\r\nobjevitelštější\r\nobjevitel\r\nobjevitelův\r\nobjevnější\r\nobjevný\r\nobjevování\r\nobjevovaný\r\nobjevovat\r\nobjevující\r\nobjezd\r\nobjezdní\r\nobjezdový\r\nobjímací\r\nobjímající\r\nobjímanější\r\nobjímání\r\nobjímaný\r\nobjímatelnější\r\nobjímatelný\r\nobjímat\r\nobjímka\r\nobjímkový\r\nobjízdný\r\nobjíždějící\r\nobjíždění\r\nobjížděný\r\nobjíždět\r\nobjížďka\r\nobjížďkový\r\nobkládací\r\nobkladačka\r\nobkládačka\r\nobkladač\r\nobkládačský\r\nobkladačský\r\nobkladačství\r\nobkladač\r\nobkládač\r\nobkladačův\r\nobkládačův\r\nobkládající\r\nobkládanější\r\nobkládání\r\nobkládaný\r\nobkladatelnější\r\nobkladatelný\r\nobkládat\r\nobklad\r\nobklad\r\nobkladovější\r\nobkladový\r\nobklíčenější\r\nobklíčení\r\nobklíčený\r\nobklíčit\r\nobkličovací\r\nobkličování\r\nobkličovaný\r\nobkličovat\r\nobklofat\r\nobklopení\r\nobklopený\r\nobklopit\r\nobklopování\r\nobklopovaný\r\nobklopovat\r\nobklopující\r\nobklusání\r\nobklusat\r\nobkopanější\r\nobkopání\r\nobkopaný\r\nobkopat\r\nobkopávání\r\nobkopávaný\r\nobkopávat\r\nobkousanější\r\nobkousání\r\nobkousaný\r\nobkousat\r\nobkousávající\r\nobkousávanější\r\nobkousávání\r\nobkousávaný\r\nobkousávat\r\nobkousnout\r\nobkousnutější\r\nobkousnutí\r\nobkousnutý\r\nobkousnutý\r\nobkoušu\r\nobkovanější\r\nobkování\r\nobkovaný\r\nobkovat\r\nobkovávání\r\nobkovávaný\r\nobkovávat\r\nobkovu\r\nobkračování\r\nobkračovat\r\nobkrajování\r\nobkrajovaný\r\nobkrajovat\r\nobkrajovávání\r\nobkrajovávaný\r\nobkrajovávat\r\nobkreslenější\r\nobkreslení\r\nobkreslený\r\nobkreslit\r\nobkreslování\r\nobkreslovaný\r\nobkreslovat\r\nobkreslovávání\r\nobkreslovávaný\r\nobkreslovávat\r\nobkreslující\r\nobkročák\r\nobkročení\r\nobkročený\r\nobkročit\r\nobkročmo\r\nobkročný\r\nobkročovat\r\nobkroužení\r\nobkroužený\r\nobkroužit\r\nobkroužkovaný\r\nobkružování\r\nobkružovaný\r\nobkružovat\r\nobkružující\r\nobkulhanější\r\nobkulhání\r\nobkulhaný\r\nobkulhat\r\nobkulhávanější\r\nobkulhávání\r\nobkulhávaný\r\nobkulhávat\r\nobkusovanější\r\nobkusování\r\nobkusovaný\r\nobkusovat\r\nobkusující\r\noblácení\r\noblácený\r\noblace\r\nobláček\r\nobláčka\r\nobláčkový\r\noblačný\r\noblafnout\r\noblafnutí\r\noblafnutý\r\noblaka\r\noblak\r\noblakový\r\noblasti\r\noblast\r\noblastnější\r\noblastní\r\noblátit\r\noblázek\r\noblázkový\r\noblažení\r\noblažen\r\noblažený\r\noblažit\r\noblažování\r\noblažovaný\r\noblažovat\r\noblažující\r\noblbnout\r\noblbování\r\noblbovaný\r\noblbovat\r\noblbující\r\nobléct\r\nobleček\r\noblečenější\r\nobléčenější\r\noblečení\r\noblečený\r\nobléčený\r\noblečný\r\nobléhací\r\nobléhající\r\nobléhání\r\nobléhaný\r\noblehatel\r\nobléhatel\r\noblehatelův\r\nobléhatelův\r\nobléhat\r\nobléhávání\r\nobléhávat\r\noblehnout\r\noblehnutí\r\noblejší\r\noblékací\r\noblékačka\r\noblékající\r\noblékání\r\noblékání\r\noblékaný\r\noblékárna\r\noblékat\r\noblek\r\noblékl\r\nobléknout\r\nobléknutelnější\r\nobléknutelný\r\nobléknutí\r\nobléknutý\r\noblekový\r\noblení\r\noblepení\r\noblepený\r\noblepit\r\noblepování\r\noblepovat\r\noblétání\r\noblétaný\r\noblétat\r\noblétávání\r\noblétávat\r\nobletění\r\nobletěný\r\nobletět\r\noblet\r\noblétnout\r\noblétnutí\r\nobletovanější\r\nobletování\r\nobletovaný\r\nobletovat\r\nobletující\r\noblévající\r\noblévání\r\noblévaný\r\noblévat\r\nobleva\r\noblézající\r\noblézanější\r\noblézání\r\noblézaný\r\noblézat\r\noblezenější\r\noblezení\r\noblezený\r\noblézt\r\nobleženější\r\nobležení\r\nobležený\r\nobliba\r\noblíbencův\r\noblíbenčin\r\noblíbenec\r\noblíbenější\r\noblíbení\r\noblíbenka\r\noblíbenkyně\r\noblíbenkynin\r\noblíbený\r\noblíbit\r\nobličejíček\r\nobličejík\r\nobličejový\r\nobličej\r\nobligace\r\nobligační\r\nobligátnější\r\nobligátní\r\nobligatornější\r\nobligatorní\r\noblíknout\r\noblina\r\noblítání\r\noblítaný\r\noblítat\r\noblítávat\r\noblít\r\noblití\r\noblítnout\r\noblítnutí\r\noblit\r\noblitý\r\noblívanější\r\noblívání\r\noblívaný\r\noblívat\r\noblízat\r\noblíznout\r\noblíznutí\r\noblíznutý\r\noblizování\r\noblizovaný\r\noblizovat\r\nobloha\r\noblomení\r\noblomený\r\noblomit\r\noblomnější\r\noblouček\r\nobloučkový\r\nobloudění\r\noblouděný\r\nobloudit\r\noblouk\r\nobloukovitý\r\nobloukovka\r\nobloukový\r\noblounek\r\noblouzení\r\nobloženější\r\nobložení\r\nobložený\r\nobložit\r\nobložný\r\nobluda\r\nobludnější\r\nobludný\r\nobluzení\r\nobluzování\r\nobluzovaný\r\nobluzovat\r\nobluzující\r\noblýskaný\r\noblý\r\nobmazat\r\nobměkčení\r\nobměkčený\r\nobměkčit\r\nobměna\r\nobměnější\r\nobměněnější\r\nobměnění\r\nobměněný\r\nobměnit\r\nobměnitelnější\r\nobměnitelný\r\nobměňovanější\r\nobměňování\r\nobměňovaný\r\nobměňovat\r\nobměňovávat\r\nobměňující\r\nobmeškat\r\nobmetení\r\nobmezenější\r\nobmotat\r\nobmotávání\r\nobmotávaný\r\nobmotávat\r\nobmýcení\r\nobmýcený\r\nobmykat\r\nobmyslet\r\nobmyslit\r\nobmyslnější\r\nobmyslný\r\nobmyšlen\r\nobmýšlet\r\nobmýt\r\nobmytější\r\nobmytí\r\nobmýtit\r\nobmytý\r\nobmytý\r\nobmývačka\r\nobmývač\r\nobmývačův\r\nobmývanější\r\nobmývání\r\nobmývaný\r\nobmývatelnější\r\nobmývatelný\r\nobmývat\r\nobnášející\r\nobnášenější\r\nobnášení\r\nobnášený\r\nobnášet\r\nobnaženější\r\nobnažení\r\nobnažený\r\nobnažit\r\nobnažování\r\nobnažovaný\r\nobnažovat\r\nobnažující\r\nobnitkovací\r\nobnitkování\r\nobnitkovaný\r\nobnitkovat\r\nobnitkovávací\r\nobnitkovávání\r\nobnitkovávaný\r\nobnitkovávat\r\nobnitkový\r\nobnos\r\nobnosit\r\nobnošenější\r\nobnošení\r\nobnošený\r\nobnova\r\nobnovení\r\nobnovený\r\nobnovený\r\nobnovit\r\nobnovitelčin\r\nobnovitelka\r\nobnovitelnější\r\nobnovitelný\r\nobnovitel\r\nobnovitelův\r\nobnovovací\r\nobnovovanější\r\nobnovování\r\nobnovovaný\r\nobnovovat\r\nobnovující\r\nobočí\r\nobodávání\r\nobodávaný\r\nobodávat\r\nobodovat\r\nobohacenější\r\nobohacení\r\nobohacený\r\nobohacování\r\nobohacovaný\r\nobohacovat\r\nobohacovatelnější\r\nobohacovatelný\r\nobohacovávání\r\nobohacovávaný\r\nobohacovávat\r\nobohacující\r\nobohatit\r\nobojaký\r\noboje\r\nobojek\r\nobojetnější\r\nobojetnice\r\nobojetnictví\r\nobojetník\r\nobojetníkův\r\nobojetný\r\noboji\r\nobojí\r\nobojí\r\nobojkový\r\nobojpohlavní\r\nobojživelník\r\nobojživelníkův\r\nobojživelný\r\nobolavělejší\r\nobolavělý\r\nobolení\r\nobolus\r\noborání\r\noborávání\r\noborávaný\r\noborávat\r\nobora\r\noborenský\r\nobor\r\nOborná\r\noboroh\r\noborový\r\noboření\r\nobořený\r\nObořilová\r\nObořil\r\nObořilův\r\nobořit\r\nobořovat\r\nobou\r\noboubřežní\r\noboujazyčný\r\noboulícní\r\nobounož\r\noboupohlavnější\r\noboupohlavní\r\nobouretný\r\nobourubní\r\nobouruč\r\nobouruký\r\nobousměrný\r\noboustrannější\r\noboustranný\r\nobout\r\nobouvání\r\nobouvaný\r\nobouvat\r\nobouvátko\r\nobouvidový\r\nobpínání\r\nobpínaný\r\nobpínat\r\nobplachtění\r\nobplachtit\r\nobplétání\r\nobplétaný\r\nobplétat\r\nobplouvání\r\nobplouvaný\r\nobplouvat\r\nobpřešívání\r\nobpřešívaný\r\nobpřešívat\r\nobráběcí\r\nobráběččin\r\nobráběčka\r\nobrábějící\r\nobráběnější\r\nobrábění\r\nobráběný\r\nobrábět\r\nobrace\r\nobracecí\r\nobracečka\r\nobraceč\r\nobracející\r\nobrácenější\r\nobracenější\r\nobracení\r\nobrácení\r\nobracený\r\nobrácený\r\nobracet\r\nobranářčin\r\nobranářka\r\nobrana\r\nobránce\r\nobráncův\r\nobranější\r\nobránění\r\nobráněný\r\nobraní\r\nobrání\r\nobránit\r\nobránkyně\r\nobránkynin\r\nobrannější\r\nobranný\r\nobranyschopnější\r\nobranyschopný\r\nobraný\r\nobrašení\r\nobrašený\r\nobrašit\r\nobrat\r\nobratu\r\nobratem\r\nobratel\r\nobratiště\r\nobrátit\r\nobrátka\r\nobrátkový\r\nobratle\r\nobratlem\r\nobratli\r\nobratlích\r\nobratlovcův\r\nobratlovec\r\nobratlový\r\nobratlů\r\nobratlům\r\nobratnější\r\nobratník\r\nobratnostní\r\nobratný\r\nobratový\r\nobrazárna\r\nobrazec\r\nobrázek\r\nobraz\r\nobrazit\r\nobrazivý\r\nobrázkový\r\nobraznější\r\nobrazný\r\nobrazoborcův\r\nobrazoborecký\r\nobrazoborectví\r\nobrazoborec\r\nobrazotvornější\r\nobrazotvorný\r\nobrazovka\r\nobrazovkový\r\nobrazový\r\nobrazový\r\nobrážečka\r\nobražení\r\nobrážení\r\nobražený\r\nobrážený\r\nobrážet\r\nobrečení\r\nobrečený\r\nobrečet\r\nObrmajerová\r\nObrmajer\r\nObrmajerův\r\nobrna\r\nobrněnější\r\nobrnění\r\nobrněnka\r\nobrněný\r\nObrnice\r\nobrnický\r\nobrnit\r\nobrňování\r\nobrňovaný\r\nobrňovat\r\nobrobek\r\nobrobenější\r\nobrobení\r\nobrobený\r\nobrobit\r\nobrobitelnější\r\nobrobitelný\r\nobrobkový\r\nobročí\r\nobročník\r\nobročníkův\r\nobroda\r\nobrodit\r\nobrodnější\r\nobrodný\r\nobrok\r\nobrostlejší\r\nobrostl\r\nobrostlý\r\nobrostu\r\nobroubení\r\nobroubený\r\nobroubit\r\nobroučka\r\nobrousit\r\nobroušenější\r\nobroušení\r\nobroušený\r\nobrovitánský\r\nobrovitější\r\nobrovitý\r\nobrovský\r\nobrovštější\r\nobrozencův\r\nobrozenecký\r\nobrozenec\r\nobrozenečtější\r\nobrozenější\r\nobrození\r\nobrozenský\r\nobrozený\r\nobrozování\r\nobrozovaný\r\nobrozovat\r\nobrozující\r\nobr\r\nObršálová\r\nObršál\r\nObršálův\r\nobrtlík\r\nobruba\r\nobrubeň\r\nobrubník\r\nobrubníkový\r\nobrubovací\r\nobrubovačka\r\nobrubování\r\nobrubovaný\r\nobrubovat\r\nobrubový\r\nobručový\r\nobruč\r\nobrusivý\r\nobrusný\r\nobrůstající\r\nobrůstání\r\nobrůstat\r\nobrůst\r\nobrušovací\r\nobrušovač\r\nobrušovanější\r\nobrušování\r\nobrušovaný\r\nobrušovat\r\nobrušující\r\nobrův\r\nobrýlený\r\nobryně\r\nobrynin\r\nobrys\r\nobrysovější\r\nobrysový\r\nobrýt\r\nobrytější\r\nobrytí\r\nobrytý\r\nobrývání\r\nobrývaný\r\nobrývat\r\nobřad\r\nobřadnější\r\nobřadník\r\nobřadníkův\r\nobřadní\r\nobřadný\r\nobřezancův\r\nobřezanec\r\nobřezanější\r\nobřezání\r\nobřezaný\r\nobřezat\r\nobřezávač\r\nobřezávající\r\nobřezávanější\r\nobřezávání\r\nobřezávaný\r\nobřezávat\r\nObříství\r\nobří\r\nobřízka\r\nobříznout\r\nobříznutější\r\nobříznutí\r\nobříznutý\r\nobříznutý\r\nobsadit\r\nobsaditelný\r\nobsádka\r\nobsah\r\nobsáhlejší\r\nobsáhlý\r\nobsáhlý\r\nobsáhnout\r\nobsáhnutí\r\nobsáhnutý\r\nobsahování\r\nobsahovaný\r\nobsahovat\r\nobsahový\r\nobsahující\r\nobsazenější\r\nobsazení\r\nobsázení\r\nobsazený\r\nobsázený\r\nobsázet\r\nobsázka\r\nobsazovanější\r\nobsazování\r\nobsazovaný\r\nobsazovat\r\nobsazující\r\nobsažení\r\nobsažený\r\nobsažnější\r\nobsažný\r\nobscenita\r\nobscénnější\r\nobscénní\r\nobsedání\r\nobsedantnější\r\nobsedantní\r\nobsedaný\r\nobsedat\r\nobsedávání\r\nobsedávat\r\nobsekanější\r\nobsekání\r\nobsekaný\r\nobsekat\r\nobsekávání\r\nobsekávaný\r\nobsekávat\r\nobseknout\r\nobseknutí\r\nobseknutý\r\nobservatoř\r\nobsese\r\nobsesivní\r\nobsidián\r\nobsidiánový\r\nobsílat\r\nobsílka\r\nobskakování\r\nobskakovaný\r\nobskakovat\r\nobskakovávání\r\nobskakovávaný\r\nobskakovávat\r\nobskočení\r\nobskočit\r\nobskurantismus\r\nobskurnější\r\nobskurní\r\nobslouženější\r\nobsloužení\r\nobsloužený\r\nobsloužit\r\nobsluha\r\nobsluhovaččin\r\nobsluhovačka\r\nobsluhovač\r\nobsluhování\r\nobsluhovaný\r\nobsluhovat\r\nobsluhovatelnější\r\nobsluhovatelný\r\nobsluhující\r\nobslužnější\r\nobslužný\r\nobsrat\r\nobstál\r\nobstaní\r\nobstání\r\nobstarání\r\nobstarán\r\nobstaraný\r\nobstaratel\r\nobstaratelův\r\nobstarat\r\nobstarávající\r\nobstarávání\r\nobstarávaný\r\nobstaravatelčin\r\nobstaravatelka\r\nobstaravatelský\r\nobstaravatel\r\nobstaravatelův\r\nobstarávat\r\nobstarožnější\r\nobstarožní\r\nobstarší\r\nobstát\r\nobstavení\r\nobstavění\r\nobstavený\r\nobstavit\r\nobstávka\r\nobstavování\r\nobstojím\r\nobstojnější\r\nobstojný\r\nobstoupení\r\nobstoupený\r\nobstoupit\r\nObstová\r\nObst\r\nobstrukce\r\nobstrukční\r\nobstřelení\r\nobstřelený\r\nobstřelit\r\nobstřihávání\r\nobstříhávání\r\nobstřihávaný\r\nobstříhávaný\r\nobstřihávat\r\nobstříhávat\r\nobstřih\r\nobstřihnout\r\nobstřihnutí\r\nobstřihování\r\nobstřihovaný\r\nobstřihovat\r\nobstříkání\r\nobstříkaný\r\nobstříkat\r\nobstříkávací\r\nobstříkávání\r\nobstříkávaný\r\nobstříkávat\r\nobstřik\r\nobstříknout\r\nobstříknutí\r\nobstříknutý\r\nobstřikovací\r\nobstřikování\r\nobstřikovaný\r\nobstřikovat\r\nobstřižený\r\nobstůjme\r\nobstůj\r\nobstůjte\r\nobstupování\r\nobstupovat\r\nObstův\r\nobsypající\r\nobsypanější\r\nobsypání\r\nobsýpání\r\nobsypaný\r\nobsýpaný\r\nobsypat\r\nobsýpat\r\nobsypávající\r\nobsypávanější\r\nobsypávání\r\nobsypávaný\r\nobsypávat\r\nobšírnější\r\nobšírný\r\nobšít\r\nobšitější\r\nobšití\r\nobšitý\r\nobšitý\r\nobšívací\r\nobšívanější\r\nobšívání\r\nobšívaný\r\nobšívat\r\nobšívka\r\nobšťastnění\r\nobšťastněný\r\nobšťastnit\r\nobšťastňování\r\nobšťastňovaný\r\nobšťastňovat\r\nobšťastňovávat\r\nobšťastňující\r\nobštípat\r\nobštipování\r\nobštipovaný\r\nobštipovat\r\nobtáčející\r\nobtáčení\r\nobtáčený\r\nobtáčet\r\nobtah\r\nobtáhnout\r\nobtáhnutí\r\nobtáhnutý\r\nobtahovací\r\nobtahovanější\r\nobtahování\r\nobtahovaný\r\nobtahovat\r\nobtahovávání\r\nobtahovávaný\r\nobtahovávat\r\nobtahující\r\nobtancování\r\nobtaženější\r\nobtažení\r\nobtažený\r\nobtažitelnější\r\nobtažitelný\r\nobtéct\r\nobtečení\r\nobtečený\r\nobtečkovanější\r\nobtečkovaný\r\nobtékající\r\nobtékání\r\nobtékaný\r\nobtékat\r\nobtelefonovanější\r\nobtelefonování\r\nobtelefonovaný\r\nobtelefonovat\r\nobtelefonovávat\r\nobtesávání\r\nobtesávaný\r\nobtesávat\r\nobtěžkanější\r\nobtěžkání\r\nobtěžkaný\r\nobtěžkat\r\nobtěžkávání\r\nobtěžkávaný\r\nobtěžkávat\r\nobtěžování\r\nobtěžovaný\r\nobtěžovat\r\nobtěžující\r\nobtisk\r\nobtisknout\r\nobtisknutí\r\nobtisknutý\r\nobtiskování\r\nobtiskovat\r\nobtíženější\r\nobtížení\r\nobtížený\r\nobtížit\r\nobtížnější\r\nobtížný\r\nobtíž\r\nobtlouct\r\nobtloukanější\r\nobtloukání\r\nobtloukaný\r\nobtloukat\r\nobtloukávanější\r\nobtloukávání\r\nobtloukávaný\r\nobtloukávat\r\nobtloustlejší\r\nobtloustlý\r\nobtlučenější\r\nobtlučení\r\nobtlučený\r\nobtočení\r\nobtočený\r\nobtočit\r\nobtočnový\r\nobtok\r\nobtokový\r\nobtrhající\r\nobtrhanější\r\nobtrhání\r\nobtrhaný\r\nobtrhat\r\nobtrhávající\r\nobtrhávanější\r\nobtrhávání\r\nobtrhávaný\r\nobtrhávat\r\nobtrhnout\r\nobtrhnutější\r\nobtrhnutí\r\nobtrhnutý\r\nobtržení\r\nobůrka\r\nobušek\r\nobuškový\r\nobutí\r\nobutý\r\nobutý\r\nobuv\r\nobuvi\r\nobuví\r\nobuvích\r\nobuvím\r\nobuvnice\r\nobuvnický\r\nobuvnictví\r\nobuvník\r\nobuvníkův\r\nobuvní\r\nobvázanější\r\nobvázání\r\nobvázaný\r\nobvázat\r\nobvázávanější\r\nobvázávání\r\nobvázávaný\r\nobvázávat\r\nobvazek\r\nobvaz\r\nobvaziště\r\nobvazivo\r\nobvazovanější\r\nobvazování\r\nobvazovaný\r\nobvazovat\r\nobvazovina\r\nobvazovna\r\nobvazový\r\nobvazující\r\nobváži\r\nobvejčitý\r\nobveselení\r\nobveselený\r\nobveselit\r\nobveselování\r\nobveselovaný\r\nobveselovat\r\nobveselovávání\r\nobveselovávaný\r\nobveselovávat\r\nobveselující\r\nobveslování\r\nobveslovat\r\nobvinění\r\nobviněný\r\nobvinit\r\nobviňování\r\nobviňovaný\r\nobviňovat\r\nobviňující\r\nobvinutí\r\nobvít\r\nobvitější\r\nobvití\r\nobvit\r\nobvitý\r\nobvitý\r\nobvívanější\r\nobvívání\r\nobvívaný\r\nobvívat\r\nobvlékání\r\nobvlékaný\r\nobvlékat\r\nobvod\r\nobvodní\r\nobvodový\r\nobvolající\r\nobvolanější\r\nobvolání\r\nobvolaný\r\nobvolat\r\nobvolávanější\r\nobvolávání\r\nobvolávaný\r\nobvolávat\r\nobvrtání\r\nobvrtaný\r\nobvrtat\r\nobvrtávat\r\nobvyklejší\r\nobvyklý\r\nobvyklý\r\nobvzláštní\r\nobyčejnější\r\nobyčejnský\r\nobyčejný\r\nobyčejový\r\nobyčej\r\nObyčtov\r\nobyčtovský\r\nobydlejí\r\nobydlení\r\nobydlený\r\nobydlet\r\nobydlí\r\nobydlit\r\nobytnější\r\nobytný\r\nobývací\r\nobývající\r\nobývák\r\nobývanější\r\nobývání\r\nobývaný\r\nobyvatelčin\r\nobyvatelka\r\nobyvatelnější\r\nobyvatelný\r\nobývatelný\r\nobyvatelský\r\nobyvatelství\r\nobyvatelstvo\r\nobyvatel\r\nobyvatelův\r\nobývat\r\nObzina\r\nObzinová\r\nObzinův\r\nobzírání\r\nobzíraný\r\nobzírat\r\nobzor\r\nobzorníkový\r\nobzorový\r\nobzvlášť\r\nobzvláště\r\nobzvláštnější\r\nobzvláštní\r\nobzvláštňování\r\nobzvláštňovaný\r\nobzvláštňovat\r\nobzvláštňovávat\r\nobzvonění\r\nobzvoněný\r\nobzvonit\r\nobžaloba\r\nobžalovací\r\nobžalování\r\nobžalovaný\r\nobžalovat\r\nobžalovatelný\r\nobžalovávající\r\nobžalovávání\r\nobžalovávaný\r\nobžalovávat\r\nobžerný\r\nobžerství\r\nobžínky\r\nobživa\r\nobživení\r\nobživlejší\r\nobživnější\r\nobživnout\r\nobživnutí\r\nobživnutý\r\nobživování\r\nocachtat\r\nocákání\r\nocákaný\r\nocákat\r\nocasatější\r\nocasatý\r\nocásek\r\nocas\r\nocaska\r\nocasní\r\nocasový\r\noceán\r\noceanický\r\nOceánie\r\noceánografický\r\noceánografie\r\noceánologie\r\noceánský\r\nocejchování\r\nocejchovaný\r\nocejchovat\r\nocejchovávání\r\nocejchovávaný\r\nocejchovávat\r\nocelárenský\r\nocelárna\r\nocelářský\r\nocelářství\r\nocelář\r\nocelářův\r\nocelek\r\nOcelíková\r\nOcelík\r\nOcelíkův\r\nocelolitina\r\nocelolitinový\r\noceloryt\r\nocelorytina\r\nocelotisk\r\nocelotiskový\r\nocelotový\r\nocelot\r\nocelotův\r\nocelový\r\nocel\r\noceněnější\r\noceněníhodný\r\nocenění\r\noceněný\r\nocenit\r\nocenitelnější\r\nocenitelný\r\nocenivý\r\noceňovací\r\noceňovanější\r\noceňování\r\noceňovaný\r\noceňovat\r\noceňující\r\nocet\r\nOcilka\r\nocílka\r\nOcilková\r\nOcilkův\r\nocínování\r\nocínovaný\r\nocínovat\r\nocitající\r\nocitání\r\nocitat\r\nocitávání\r\nocitávat\r\nocitnout\r\nocitnul\r\nocitnutí\r\nocitování\r\nocitovaný\r\nocitovat\r\nOcmanice\r\nocmanický\r\nocta\r\noctan\r\noctanový\r\noctárenský\r\noctárna\r\nocte\r\noctě\r\noctech\r\noctem\r\noctění\r\noctnout\r\noctnul\r\noctnutí\r\noctoměr\r\noctomilka\r\noctovatění\r\noctovatěný\r\noctovatět\r\noctovatý\r\noctový\r\noctu\r\noctů\r\noctům\r\nocty\r\nocucající\r\nocucanější\r\nocucání\r\nocucaný\r\nocucat\r\nocucávání\r\nocucávaný\r\nocucávat\r\nocukrování\r\nocukrovaný\r\nocukrovat\r\nocún\r\noč\r\nočadit\r\nočadlejší\r\nočalouněnější\r\nočalounění\r\nočalouněný\r\nočalounit\r\nočárkovat\r\nočarování\r\nočarovaný\r\nočarovat\r\nočazenější\r\nočazení\r\nočazený\r\nočekávající\r\nočekávanější\r\nočekávání\r\nočekávaný\r\nočekávatelnější\r\nočekávat\r\nočekávávání\r\nočekávávaný\r\nočekávávat\r\nOčenášek\r\nOčenášková\r\nOčenáškův\r\nočenichání\r\nočenichaný\r\nočenichat\r\nočernění\r\nočerněný\r\nočernit\r\nočerňování\r\nočerňovaný\r\nočerňovat\r\nočerňující\r\nočesanější\r\nočesání\r\nočesaný\r\nočesat\r\nočesávat\r\noči\r\nočí\r\nočičkama\r\nočičko\r\nočíhnout\r\nOčihov\r\nočihovský\r\nočích\r\nočichání\r\nočichaný\r\nočichat\r\nočichávání\r\nočichávaný\r\nočichávat\r\nočím\r\nočima\r\nočinkama\r\nočipování\r\nočipovat\r\nočíslování\r\nočíslovaný\r\nočíslovat\r\nočíslovávání\r\nočíslovávaný\r\nočíslovávat\r\nočista\r\nočistcový\r\nočistec\r\nočistění\r\nočistit\r\nočistnější\r\nočistný\r\nočisťovací\r\nočisťovat\r\nočisťující\r\nočištěnější\r\nočištění\r\nočištěný\r\nočišťovací\r\nočišťování\r\nočišťovaný\r\nočišťovat\r\nočišťující\r\nočitější\r\nočitější\r\nočitý\r\nočividnější\r\nočividný\r\nočkama\r\nočko\r\nóčko\r\nočkovací\r\nočkovadlo\r\nočkování\r\nočkování\r\nočkovaný\r\nočkovat\r\nočkovávání\r\nočkovávaný\r\nočkovávat\r\nočkový\r\nočmuchání\r\nočmuchaný\r\nočmuchat\r\nočmuchávající\r\nočmuchávat\r\nočnice\r\nočník\r\noční\r\nočoudit\r\nočpak\r\nočuchání\r\nočuchaný\r\nočuchat\r\nočumování\r\nočumovaný\r\nočumovat\r\nočurání\r\nočůrání\r\nočuraný\r\nočůraný\r\nočurat\r\nočůrat\r\nočurávající\r\nočůrávající\r\nočurávaný\r\nočůrávaný\r\nočurávat\r\nočůrávat\r\nod\r\nODA\r\nodafričtění\r\nodafričtěný\r\nodafričtit\r\nodalisčin\r\nodaliska\r\nodalkoholizovat\r\nodalkoholizovávat\r\nodangličtění\r\nodangličtěný\r\nodangličtit\r\nodaretování\r\nodaretovaný\r\nodaretovat\r\nóda\r\nodbagrování\r\nodbagrovaný\r\nodbagrovat\r\nodbagrovávání\r\nodbagrovávaný\r\nodbagrovávat\r\nodbahnění\r\nodbahněný\r\nodbahnit\r\nodbahňování\r\nodbarvenější\r\nodbarvení\r\nodbarvený\r\nodbarvit\r\nodbarvovací\r\nodbarvovač\r\nodbarvování\r\nodbarvovaný\r\nodbarvovat\r\nodbavení\r\nodbavený\r\nodbavit\r\nodbavovací\r\nodbavování\r\nodbavovaný\r\nodbavovat\r\nODBC\r\nodbednění\r\nodbedněný\r\nodbednit\r\nodbedňování\r\nodbedňovaný\r\nodbedňovat\r\nodběhání\r\nodběhaný\r\nodběhat\r\nodběh\r\nodběhnout\r\nodběhnutí\r\nodběhovější\r\nodběhový\r\nodbelhání\r\nodbelhat\r\nodbelhávání\r\nodbelhávat\r\nodběrák\r\nodběratelčin\r\nodběratelka\r\nodběratelský\r\nodběratelštější\r\nodběratel\r\nodběratelův\r\nodběr\r\nodběrní\r\nodběrný\r\nodběrový\r\nodbíhající\r\nodbíhání\r\nodbíhaný\r\nodbíhat\r\nodbíhávání\r\nodbíhávaný\r\nodbíhávat\r\nodbíjející\r\nodbíjení\r\nodbíjenkářčin\r\nodbíjenkářka\r\nodbíjenkářský\r\nodbíjenkář\r\nodbíjenkářův\r\nodbíjený\r\nodbíjet\r\nodbimbat\r\nodbírání\r\nodbíraný\r\nodbírat\r\nodbít\r\nodbití\r\nodblácení\r\nodblácený\r\nodblanit\r\nodblaňovat\r\nodblátit\r\nodblokování\r\nodblokovaný\r\nodblokovat\r\nodblokovávání\r\nodblokovávaný\r\nodblokovávat\r\nodbočení\r\nodbočený\r\nodbočit\r\nodbočka\r\nodbočování\r\nodbočovaný\r\nodbočovat\r\nodbočující\r\nodbojářčin\r\nodbojářka\r\nodbojář\r\nodbojářův\r\nodbojnější\r\nodbojník\r\nodbojníkův\r\nodbojný\r\nodbojovější\r\nodbojový\r\nodboj\r\nodborářčin\r\nodborářka\r\nodborářský\r\nodborářštější\r\nodborář\r\nodborářův\r\nodbor\r\nodbornější\r\nodbornice\r\nodbornický\r\nodbornictví\r\nodborničin\r\nodborničtější\r\nodborník\r\nodborníkův\r\nodborný\r\nodborový\r\nodbouchnout\r\nodbouchnutí\r\nodbouchnutý\r\nodbourání\r\nodbouraný\r\nodbouratelný\r\nodbourat\r\nodbourávající\r\nodbourávání\r\nodbourávaný\r\nodbourávat\r\nodbožšťující\r\nodbrečení\r\nodbrečený\r\nodbrečet\r\nodbrnkání\r\nodbrnkaný\r\nodbrnkat\r\nodbrnkávat\r\nodbrousit\r\nodbroušenější\r\nodbroušení\r\nodbroušený\r\nodbruslení\r\nodbruslit\r\nodbrušovanější\r\nodbrušování\r\nodbrušovaný\r\nodbrušovat\r\nodbrušující\r\nodbrzdění\r\nodbrzděný\r\nodbrzdit\r\nodbrzďování\r\nodbrzďovaný\r\nodbrzďovat\r\nodbřemenit\r\nodbřitování\r\nodbřitovat\r\nodbudu\r\nodburácení\r\nodburácet\r\nodbydlování\r\nodbydlovaný\r\nodbydlovat\r\nodbyl\r\nodbyrokratizování\r\nodbyrokratizovaný\r\nodbyrokratizovat\r\nodbytější\r\nodbyt\r\nodbýt\r\nodbytí\r\nodbytiště\r\nodbytnější\r\nodbytný\r\nodbyt\r\nodbytovější\r\nodbytový\r\nodbytý\r\nodbytý\r\nodbývající\r\nodbývanější\r\nodbývání\r\nodbývaný\r\nodbývat\r\nodbyv\r\nodbyvše\r\nodbyvši\r\nodbyvší\r\nodcedit\r\nodcentrování\r\nodcentrovaný\r\nodcentrovat\r\nodcentrovávat\r\nodcestování\r\nodcestovaný\r\nodcestovat\r\nodcezení\r\nodcezený\r\nodcinkávající\r\nodcitování\r\nodcitovaný\r\nodcitovat\r\nodcizenější\r\nodcizení\r\nodcizený\r\nodcizit\r\nodcizitelnější\r\nodcizitelný\r\nodcizování\r\nodcizovaný\r\nodcizovat\r\nodcizující\r\nodclonění\r\nodcloněný\r\nodclonit\r\nodcouvání\r\nodcouvaný\r\nodcouvat\r\nodcouvávání\r\nodcouvávat\r\nodcucající\r\nodcucanější\r\nodcucání\r\nodcucaný\r\nodcucat\r\nodcucávat\r\nodcukření\r\nodcupitání\r\nodcupitat\r\nodcupitávání\r\nodcupitávat\r\nodcválání\r\nodcválat\r\nodcválávání\r\nodcválávat\r\nodcvičení\r\nodcvičený\r\nodcvičit\r\nodcvičování\r\nodcvičovaný\r\nodcvičovat\r\nodcvičující\r\nodcvrnknout\r\nodcvrnknutí\r\nodcvrnknutý\r\nodčárkování\r\nodčárkovaný\r\nodčárkovat\r\nodčarování\r\nodčarovaný\r\nodčarovat\r\nodčerpání\r\nodčerpaný\r\nodčerpat\r\nodčerpávající\r\nodčerpávání\r\nodčerpávaný\r\nodčerpávat\r\nodčervení\r\nodčervování\r\nodčervovaný\r\nodčervovat\r\nodčesanější\r\nodčesání\r\nodčesaný\r\nodčesat\r\nodčesávání\r\nodčesávaný\r\nodčesávat\r\nodčinění\r\nodčiněný\r\nodčinit\r\nodčinitelnější\r\nodčinitelný\r\nodčiňování\r\nodčiňovaný\r\nodčiňovat\r\nodčíst\r\nodčítačka\r\nodčítání\r\nodčítaný\r\nodčitatelnější\r\nodčitatelný\r\nodčítat\r\nodčleněnější\r\nodčlenění\r\nodčleněný\r\nodčlenit\r\nodčlenitelnější\r\nodčlenitelný\r\nodčleňování\r\nodčleňovaný\r\nodčleňovat\r\nodčleňující\r\nodd\r\noddací\r\noddálení\r\noddálený\r\noddálit\r\noddalování\r\noddalovaný\r\noddalovat\r\noddalovávání\r\noddalovávaný\r\noddalovávat\r\noddalující\r\noddanější\r\noddanější\r\noddání\r\noddaný\r\noddat\r\noddávací\r\noddávající\r\noddávanější\r\noddávání\r\noddávaný\r\noddávat\r\noddavky\r\noddech\r\noddechnout\r\noddechnutí\r\noddechnutý\r\noddechování\r\noddechovaný\r\noddechovat\r\noddechovávání\r\noddechovávat\r\noddechový\r\noddělání\r\noddělaný\r\noddělat\r\noddělávání\r\noddělávaný\r\noddělávat\r\noddělenější\r\noddělení\r\noddělený\r\noddělit\r\noddělitelnější\r\noddělitelný\r\noddělovací\r\noddělovač\r\noddělovanější\r\noddělování\r\noddělovaný\r\noddělovat\r\noddělovatelnější\r\noddělovatelný\r\noddělovávání\r\noddělovávaný\r\noddělovávat\r\noddělující\r\noddémonizování\r\noddémonizovaný\r\noddémonizovat\r\noddenek\r\noddenkový\r\noddestilovanější\r\noddestilování\r\noddestilovaný\r\noddestilovat\r\noddestilovávání\r\noddestilovávaný\r\noddestilovávat\r\noddíl\r\noddílový\r\noddiskutování\r\noddiskutovaný\r\noddiskutovat\r\noddiskutovatelný\r\noddiskutovávání\r\noddiskutovávaný\r\noddiskutovávat\r\noddlabání\r\noddlabaný\r\noddlabat\r\noddlabávání\r\noddlabávaný\r\noddlabávat\r\noddlužení\r\noddlužený\r\noddlužit\r\noddojování\r\noddojovaný\r\noddojovat\r\noddra\r\noddrcený\r\noddrmolení\r\noddrmolený\r\noddrmolit\r\noddrnkat\r\noddrolení\r\noddrolovat\r\noddření\r\noddřený\r\noddřít\r\noddupanější\r\noddupání\r\noddupaný\r\noddupat\r\noddupávanější\r\noddupávání\r\noddupávaný\r\noddupávat\r\noddupu\r\noddych\r\noddýchnout\r\noddychnout\r\noddychnutí\r\noddychnutý\r\noddychování\r\noddychovaný\r\noddychovat\r\noddychový\r\node\r\nodebíhající\r\nodebírající\r\nodebíranější\r\nodebírání\r\nodebíraný\r\nodebírat\r\nodebranější\r\nodebraní\r\nodebrání\r\nodebraný\r\nodebrat\r\nodečet\r\nodečíst\r\nodečítající\r\nodečítání\r\nodečítaný\r\nodečitatelnější\r\nodečitatelný\r\nodečítat\r\nodečtenější\r\nodečtení\r\nodečtený\r\nodedávna\r\nodedávnější\r\nodedra\r\nodedření\r\nodedřený\r\nodedřít\r\nodehnal\r\nOdehnalová\r\nOdehnal\r\nOdehnalův\r\nodehnanější\r\nodehnání\r\nodehnán\r\nodehnaný\r\nodehnat\r\nodehnívání\r\nodehranější\r\nodehrání\r\nodehraný\r\nodehrát\r\nodehrávající\r\nodehrávanější\r\nodehrávání\r\nodehrávaný\r\nodehrávat\r\nodejda\r\nodejdu\r\nodejedu\r\nodejel\r\nodejení\r\nodejet\r\nodejetí\r\noději\r\nodejít\r\nodejití\r\nodejmout\r\nodejmu\r\nodejmutí\r\nodejmutý\r\noděju\r\noděl\r\nodemčení\r\nodemčený\r\nodemelu\r\nodemknout\r\nodemknutí\r\nodemknutý\r\nodemlel\r\nodemlení\r\nodemletí\r\nodemlet\r\nodemletý\r\nodemlít\r\nodemykací\r\nodemykající\r\nodemykání\r\nodemykaný\r\nodemykat\r\nodendání\r\nodendaný\r\nodendat\r\nodendávanější\r\nodendavání\r\nodendávání\r\nodendávaný\r\nodendavat\r\nodendávat\r\noděnější\r\nodění\r\noděn\r\noděný\r\nodepínací\r\nodepínání\r\nodepínaný\r\nodepínat\r\nodepírající\r\nodepírání\r\nodepíraný\r\nodepírat\r\nodepisovanější\r\nodepisování\r\nodepisovaný\r\nodepisovat\r\nodepisující\r\nodepíši\r\nodepíšu\r\nodepjal\r\nodepjat\r\nodeplout\r\nodeplutí\r\nodeplutý\r\nodepnout\r\nodepnutější\r\nodepnutí\r\nodepnutý\r\nodepřenější\r\nodepření\r\nodepřený\r\nodepřít\r\nodepsal\r\nodepsanější\r\nodepsanější\r\nodepsání\r\nodepsán\r\nodepsaný\r\nodepsáný\r\nodepsatelný\r\nodepsat\r\nodér\r\noděr\r\noděrka\r\noděrový\r\noderský\r\noděruvzdorný\r\nodervanější\r\nodervaní\r\nodervání\r\nodervaný\r\nodervat\r\nodervávání\r\nodervávaný\r\nodervávat\r\nOděsa\r\nodesílací\r\nodesílající\r\nodesílanější\r\nodesílání\r\nodesílaný\r\nodesilatelčin\r\nodesílatelčin\r\nodesilatelka\r\nodesílatelka\r\nodesilatel\r\nodesílatel\r\nodesilatelův\r\nodesílatelův\r\nodesílat\r\noděský\r\nodeslal\r\nodeslanější\r\nodeslání\r\nodeslaný\r\nodeslat\r\nodespalejší\r\nodespalý\r\nodespanější\r\nodespání\r\nodespaný\r\nodespat\r\nodespávání\r\nodespávat\r\nodesrat\r\nodestál\r\nodestaní\r\nodestát\r\nodestátý\r\nodestelu\r\nodestetizování\r\nodestetizovaný\r\nodestetizovat\r\nodestlal\r\nodestlanější\r\nodestlání\r\nodestlaný\r\nodestlat\r\nodestojím\r\nodestoupení\r\nodestoupený\r\nodestoupit\r\nodestůjme\r\nodestůj\r\nodestůjte\r\nodestýlat\r\nodešel\r\nodešlejší\r\nodešlu\r\nodešlý\r\nodetnout\r\nodetnu\r\nodetnutější\r\nodetnutelnější\r\nodetnutelný\r\nodetnutí\r\nodetnutý\r\noděv\r\noděvnický\r\noděvnictví\r\noděvničtější\r\noděvní\r\nodevropštění\r\nodevropštěný\r\nodevropštit\r\nodevropšťování\r\nodevropšťovaný\r\nodevropšťovat\r\nodevšad\r\nodevšud\r\nodevzdanější\r\nodevzdání\r\nodevzdaný\r\nodevzdat\r\nodevzdávací\r\nodevzdávající\r\nodevzdávanější\r\nodevzdávání\r\nodevzdávaný\r\nodevzdávat\r\nodevzdávka\r\nodezírající\r\nodezírání\r\nodezíraný\r\nodezírat\r\nodeznění\r\nodeznít\r\nodeznívající\r\nodeznívání\r\nodeznívat\r\nodezření\r\nodezřený\r\nodezřít\r\nodezvánění\r\nodezváněný\r\nodezvánět\r\nodezva\r\nodezvový\r\nodeženu\r\nodfárat\r\nodfaxování\r\nodfaxovaný\r\nodfaxovat\r\nodfičení\r\nodfičet\r\nodfiknout\r\nodfiltrovanější\r\nodfiltrování\r\nodfiltrovaný\r\nodfiltrovat\r\nodfiltrovávání\r\nodfiltrovávat\r\nodfláknout\r\nodfláknutí\r\nodfláknutý\r\nodflinknout\r\nodformalizování\r\nodformalizovaný\r\nodformalizovat\r\nodfotografování\r\nodfotografovaný\r\nodfotografovat\r\nodfoukat\r\nodfoukávat\r\nodfouknout\r\nodfouknutí\r\nodfouknutý\r\nodfrancouzštění\r\nodfrancouzštěný\r\nodfrancouzštit\r\nodfrčení\r\nodfrčet\r\nodfrézování\r\nodfrézovaný\r\nodfrézovat\r\nodfrknout\r\nodfrknutí\r\nodfrknutý\r\nodfučení\r\nodfučet\r\nodfukování\r\nodfukovaný\r\nodfukovat\r\nodfukovávání\r\nodfukovávaný\r\nodfukovávat\r\nodgermanizování\r\nodgermanizovaný\r\nodgermanizovat\r\nodhadce\r\nodhadcův\r\nodhad\r\nodhadkyně\r\nodhadkynin\r\nodhadní\r\nodhadnout\r\nodhadnutější\r\nodhadnutelnější\r\nodhadnutelný\r\nodhadnutí\r\nodhadnutý\r\nodhadnutý\r\nodhadovanější\r\nodhadování\r\nodhadovaný\r\nodhadovat\r\nodhadový\r\nodhadující\r\nodhafat\r\nodhákování\r\nodhákovaný\r\nodhákovat\r\nodhalenější\r\nodhalení\r\nodhalený\r\nodhalit\r\nodhalitelný\r\nodhalování\r\nodhalovaný\r\nodhalovat\r\nodhalovávání\r\nodhalovávaný\r\nodhalovávat\r\nodhalující\r\nodhánějící\r\nodháněnější\r\nodhánění\r\nodháněný\r\nodhánět\r\nodházenější\r\nodházení\r\nodházený\r\nodházet\r\nodhazování\r\nodhazovaný\r\nodhazovat\r\nodhazující\r\nodhlásit\r\nodhlasování\r\nodhlasovaný\r\nodhlasovat\r\nodhlasovávání\r\nodhlasovávaný\r\nodhlasovávat\r\nodhlášenější\r\nodhlášení\r\nodhlášený\r\nodhláška\r\nodhlašovací\r\nodhlašovanější\r\nodhlašovaní\r\nodhlašování\r\nodhlašovaný\r\nodhlašovat\r\nodhlašovávat\r\nodhlašující\r\nodhlavičkování\r\nodhlavičkovaný\r\nodhlavičkovat\r\nodhlédnout\r\nodhlédnul\r\nodhlédnutí\r\nodhlenění\r\nodhleněný\r\nodhlenit\r\nodhlídnout\r\nodhlídnul\r\nodhlížející\r\nodhlížení\r\nodhlíženo\r\nodhlížet\r\nodhlodanější\r\nodhlodání\r\nodhlodaný\r\nodhlodat\r\nodhlodávání\r\nodhlodávaný\r\nodhlodávat\r\nodhlučnění\r\nodhlučněný\r\nodhlučnit\r\nodhlučňující\r\nodhmotnění\r\nodhmotněný\r\nodhmotnit\r\nodhmotňující\r\nodhmyzení\r\nodhmyzit\r\nodhmyzovaččin\r\nodhmyzovačka\r\nodhmyzovač\r\nodhmyzovačův\r\nodhmyzovat\r\nodhnout\r\nodhnutí\r\nodhnutý\r\nodhodit\r\nodhodlanější\r\nodhodlání\r\nodhodlaný\r\nodhodlat\r\nodhodlávání\r\nodhodlávat\r\nodhodový\r\nodhojovací\r\nodhopkání\r\nodhopkat\r\nodhopsání\r\nodhopsat\r\nodhořet\r\nodhoukání\r\nodhoukaný\r\nodhoukat\r\nodhozenější\r\nodhození\r\nodhozený\r\nodhrabanější\r\nodhrabání\r\nodhrabaný\r\nodhrabat\r\nodhrabávání\r\nodhrabávaný\r\nodhrabávat\r\nodhrábnout\r\nodhrábnutější\r\nodhrábnutí\r\nodhrábnutý\r\nodhrabování\r\nodhrabovaný\r\nodhrabovat\r\nodhrabovávání\r\nodhrabovávaný\r\nodhrabovávat\r\nodhrčení\r\nodhrčet\r\nodhrkat\r\nodhrnout\r\nodhrnovačka\r\nodhrnovanější\r\nodhrnování\r\nodhrnovaný\r\nodhrnovat\r\nodhrnující\r\nodhrnutí\r\nodhrnutý\r\nodhrnutý\r\nodhryzající\r\nodhryzanější\r\nodhryzání\r\nodhryzaný\r\nodhryzat\r\nodhryzávání\r\nodhryzávaný\r\nodhryzávat\r\nodhuhňat\r\nodhumanizovat\r\nodhupkovat\r\nodhvízdání\r\nodhvízdaný\r\nodhvízdat\r\nodhvízdnout\r\nodhvízdnutí\r\nodhvízdnutý\r\nodhypnotizovaný\r\nodcházející\r\nodcházení\r\nodcházet\r\nodcházívat\r\nodchlípit\r\nodchlíplejší\r\nodchlíplý\r\nodchlípnout\r\nodchlípnutý\r\nodchlipování\r\nodchlipovat\r\nodchlipující\r\nodchodění\r\nodchod\r\nodchodit\r\nodchodné\r\nodchodový\r\nodchovancův\r\nodchovančin\r\nodchovanec\r\nodchování\r\nodchovanka\r\nodchovaný\r\nodchovat\r\nodchovávanější\r\nodchovávání\r\nodchovávaný\r\nodchovávat\r\nodchov\r\nodchovna\r\nodchovný\r\nodchozí\r\nodchycenější\r\nodchycení\r\nodchycený\r\nodchýlení\r\nodchýlený\r\nodchýlit\r\nodchylka\r\nodchylnější\r\nodchylný\r\nodchylovanější\r\nodchylování\r\nodchylovaný\r\nodchylovat\r\nodchylovávání\r\nodchylovávaný\r\nodchylovávat\r\nodchylující\r\nodchytanější\r\nodchytání\r\nodchytaný\r\nodchytat\r\nodchytávač\r\nodchytávající\r\nodchytávání\r\nodchytávaný\r\nodchytávat\r\nodchyt\r\nodchytit\r\nodchytnout\r\nodchytnutí\r\nodchytnutý\r\nodchytový\r\nodideologizování\r\nodideologizovaný\r\nodideologizovat\r\nodinstalace\r\nodinstalovanější\r\nodinstalování\r\nodinstalovaný\r\nodinstalovat\r\nodinstalovávání\r\nodinstalovávaný\r\nodinstalovávat\r\nodinstalující\r\nodintelektualizovat\r\nodióznější\r\nodiózní\r\nodírací\r\nodírající\r\nodíranější\r\nodírání\r\nodíraný\r\nodíratelnější\r\nodíratelný\r\nodírat\r\nodisolování\r\nodisolovaný\r\nodisolovat\r\nodisolovávání\r\nodisolovávaný\r\nodisolovávat\r\noditalštění\r\noditalštěný\r\noditalštit\r\nodít\r\nódium\r\nodívání\r\nodívaný\r\nodívat\r\nodiv\r\nodizolování\r\nodizolovaný\r\nodizolovat\r\nodizolovávání\r\nodizolovávaný\r\nodizolovávat\r\nodjakživa\r\nodjedení\r\nodjedený\r\nodjedu\r\nodjel\r\nodjení\r\nodjetější\r\nodjet\r\nodjetí\r\nodjetý\r\nodjezdění\r\nodjezděný\r\nodjezd\r\nodjezdit\r\nodjezdní\r\nodjezdový\r\nodjídání\r\nodjídaný\r\nodjídat\r\nodjídávání\r\nodjídávaný\r\nodjídávat\r\nodjímanější\r\nodjímání\r\nodjímaný\r\nodjímatelnější\r\nodjímatelný\r\nodjímat\r\nodjinud\r\nodjiskření\r\nodjistit\r\nodjíst\r\nodjištění\r\nodjištěný\r\nodjišťovanější\r\nodjišťování\r\nodjišťovaný\r\nodjišťovat\r\nodjízdný\r\nodjíždějící\r\nodjíždění\r\nodjíždět\r\nodjíždíte\r\nodkácení\r\nodkalení\r\nodkalený\r\nodkal\r\nodkaliště\r\nodkalištní\r\nodkalit\r\nodkalovací\r\nodkalovanější\r\nodkalování\r\nodkalovaný\r\nodkalovat\r\nodkalovávání\r\nodkalovávaný\r\nodkalovávat\r\nodkanalizování\r\nodkanalizovaný\r\nodkanalizovat\r\nodkapanější\r\nodkapání\r\nodkapaný\r\nodkapat\r\nodkapávač\r\nodkapávání\r\nodkapávat\r\nodkapu\r\nodkašlání\r\nodkašlaný\r\nodkašlat\r\nodkašlávací\r\nodkašlávání\r\nodkašlávaný\r\nodkašlávat\r\nodkatoličtění\r\nodkatoličtěný\r\nodkatoličtit\r\nodkázanější\r\nodkázání\r\nodkázán\r\nodkázaný\r\nodkázat\r\nodkazatelnější\r\nodkazatelný\r\nodkaz\r\nodkazovací\r\nodkazovanější\r\nodkazování\r\nodkazovaný\r\nodkazovat\r\nodkazový\r\nodkazující\r\nodkáži\r\nodkdy\r\nodkládací\r\nodkladač\r\nodkládající\r\nodkládanější\r\nodkládání\r\nodkládaný\r\nodkladatelnější\r\nodkladatelný\r\nodkládat\r\nodklad\r\nodklad\r\nodkladiště\r\nodkladnější\r\nodkladní\r\nodkladný\r\nodkladovější\r\nodkladový\r\nodklánění\r\nodkláněný\r\nodklánět\r\nodklápění\r\nodklápěný\r\nodklápět\r\nodklepanější\r\nodklepání\r\nodklepaný\r\nodklepat\r\nodklepávající\r\nodklepávanější\r\nodklepávání\r\nodklepávaný\r\nodklepávat\r\nodklepnout\r\nodklepnutější\r\nodklepnutí\r\nodklepnutý\r\nodklepnutý\r\nodklidit\r\nodkliditelný\r\nodklikání\r\nodklikaný\r\nodklikat\r\nodklikávání\r\nodklikávaný\r\nodklikávat\r\nodkliknout\r\nodkliknutí\r\nodklinkání\r\nodklinkaný\r\nodklinkat\r\nodklínování\r\nodklínovaný\r\nodklínovat\r\nodklízející\r\nodklizení\r\nodklízení\r\nodklizený\r\nodklízený\r\nodklízet\r\nodkliz\r\nodklizovací\r\nodklizování\r\nodklizovat\r\nodklížit\r\nodklofat\r\nodkloněnější\r\nodklonění\r\nodkloněný\r\nodklon\r\nodklonit\r\nodkloňovat\r\nodklonový\r\nodklopení\r\nodklopený\r\nodklopit\r\nodklopný\r\nodklopovat\r\nodklopýtání\r\nodklopýtaný\r\nodklopýtat\r\nodklouzání\r\nodklouzat\r\nodklovávání\r\nodklovávaný\r\nodklovávat\r\nodklusání\r\nodklusat\r\nodkmitávání\r\nodkmitávat\r\nodkmitnout\r\nodkódování\r\nodkódovaný\r\nodkódovat\r\nodkojenější\r\nodkojení\r\nodkojený\r\nodkojit\r\nodkokrhání\r\nodkokrhaný\r\nodkokrhat\r\nodkolébání\r\nodkolébaný\r\nodkolébat\r\nodkolébávání\r\nodkolébávat\r\nodkomentovanější\r\nodkomentování\r\nodkomentovaný\r\nodkomentovat\r\nodkonzervování\r\nodkonzervovaný\r\nodkonzervovat\r\nodkopanější\r\nodkopání\r\nodkopaný\r\nodkopat\r\nodkopávání\r\nodkopávaný\r\nodkopávat\r\nodkopávka\r\nodkop\r\nodkopnout\r\nodkopnutí\r\nodkopnutý\r\nodkorek\r\nodkornění\r\nodkorňovací\r\nodkornovačka\r\nodkorňovačka\r\nodkorňování\r\nodkorňovaný\r\nodkorňovat\r\nodkostění\r\nodkostěný\r\nodkostit\r\nodkoukanější\r\nodkoukání\r\nodkoukaný\r\nodkoukat\r\nodkoukávat\r\nodkouknout\r\nodkouknutí\r\nodkouknutý\r\nodkoulení\r\nodkoulený\r\nodkoulet\r\nodkoupení\r\nodkoupený\r\nodkoupit\r\nodkouření\r\nodkouřený\r\nodkouřit\r\nodkousanější\r\nodkousání\r\nodkousaný\r\nodkousat\r\nodkousávající\r\nodkousávanější\r\nodkousávání\r\nodkousávaný\r\nodkousávat\r\nodkousnout\r\nodkousnutější\r\nodkousnutí\r\nodkousnutý\r\nodkousnutý\r\nodkoušu\r\nodkráčení\r\nodkráčený\r\nodkráčet\r\nodkradení\r\nodkráglování\r\nodkráglovaný\r\nodkráglovat\r\nodkrájenější\r\nodkrájení\r\nodkrájený\r\nodkrájet\r\nodkrajování\r\nodkrajovaný\r\nodkrajovat\r\nodkrajovávání\r\nodkrajovávaný\r\nodkrajovávat\r\nodkrást\r\nodkrmení\r\nodkrmený\r\nodkrm\r\nodkrmit\r\nodkrojek\r\nodkrojení\r\nodkrojený\r\nodkrojit\r\nodkrojovat\r\nodkrokování\r\nodkrokovaný\r\nodkrokovat\r\nodkroucení\r\nodkroucený\r\nodkrouhání\r\nodkrouhaný\r\nodkrouhat\r\nodkrouhávání\r\nodkrouhávaný\r\nodkrouhávat\r\nodkroutit\r\nodkroužení\r\nodkroužený\r\nodkroužit\r\nodkrvení\r\nodkrvený\r\nodkrvit\r\nodkrýt\r\nodkrytější\r\nodkrytelnější\r\nodkrytelný\r\nodkryt\r\nodkrytí\r\nodkrytý\r\nodkrytý\r\nodkrývající\r\nodkrývanější\r\nodkrývání\r\nodkrývaný\r\nodkrývatelnější\r\nodkrývatelný\r\nodkrývat\r\nodkryv\r\nodkrývka\r\nodkřičení\r\nodkřičený\r\nodkřičet\r\nodkuckání\r\nodkuckat\r\nodkud\r\nodkudkoli\r\nodkudkoliv\r\nodkudsi\r\nodkulení\r\nodkulený\r\nodkulhanější\r\nodkulhání\r\nodkulhaný\r\nodkulhat\r\nodkulhávanější\r\nodkulhávání\r\nodkulhávaný\r\nodkulhávat\r\nodkulit\r\nodkulování\r\nodkulovaný\r\nodkulovat\r\nodkup\r\nodkupní\r\nodkupování\r\nodkupovaný\r\nodkupovat\r\nodkupující\r\nodkusovanější\r\nodkusování\r\nodkusovaný\r\nodkusovat\r\nodkusující\r\nodkutálení\r\nodkutálený\r\nodkutálet\r\nodkvasit\r\nodkvašení\r\nodkvašený\r\nodkvést\r\nodkvétající\r\nodkvétající\r\nodkvétání\r\nodkvétat\r\nodkvétávání\r\nodkvétávat\r\nodkvetení\r\nodkvetený\r\nodkvět\r\nodkvetlejší\r\nodkvetlý\r\nodkymácení\r\nodkymácet\r\nodkyselení\r\nodkyselený\r\nodkyselit\r\nodkyselování\r\nodkyselovaný\r\nodkyselovat\r\nodkysličení\r\nodkysličený\r\nodkysličit\r\nodkysličitelný\r\nodkysličovadlo\r\nodkysličování\r\nodkysličovaný\r\nodkysličovat\r\nodkývání\r\nodkývaný\r\nodkývat\r\nodladění\r\nodladěný\r\nodladit\r\nodladitelnost\r\nodladitelný\r\nodlaďovač\r\nodlaďování\r\nodlaďovaný\r\nodlaďovat\r\nodlákání\r\nodlákaný\r\nodlákat\r\nodlakovač\r\nodlakování\r\nodlakovaný\r\nodlakovat\r\nodlakovávání\r\nodlakovávaný\r\nodlakovávat\r\nodlámání\r\nodlámaný\r\nodlámat\r\nodlamování\r\nodlamovaný\r\nodlamovat\r\nodlamovávání\r\nodlamovávaný\r\nodlamovávat\r\nodléčení\r\nodléčený\r\nodléčit\r\nodlednění\r\nodlednit\r\nodléhání\r\nodléhat\r\nodléhávání\r\nodléhávat\r\nodlehčenější\r\nodlehčení\r\nodlehčený\r\nodlehčit\r\nodlehčovací\r\nodlehčovanější\r\nodlehčování\r\nodlehčovaný\r\nodlehčovat\r\nodlehčující\r\nodlehlejší\r\nodlehlý\r\nodlehlý\r\nodlehnout\r\nodlehnutí\r\nodlehnutý\r\nodlepení\r\nodlepený\r\nodlepit\r\nodlepování\r\nodlepovaný\r\nodlepovat\r\nodleptání\r\nodleptaný\r\nodleptat\r\nodleptávání\r\nodleptávaný\r\nodleptávat\r\nodlepující\r\nodlesk\r\nodlesnění\r\nodlesněný\r\nodlesnit\r\nodlesňování\r\nodlesňovat\r\nodlesňovávat\r\nodlétající\r\nodlétali\r\nodlétání\r\nodlétaný\r\nodlétat\r\nodlétávání\r\nodlétávat\r\nodletění\r\nodletěný\r\nodletět\r\nodlet\r\nodlétnout\r\nodlétnutí\r\nodletování\r\nodletovaný\r\nodletovat\r\nodletový\r\nodletující\r\nodleva\r\nodlévací\r\nodlévačka\r\nodlévající\r\nodlévání\r\nodlévaný\r\nodlévárna\r\nodlévat\r\nodlézající\r\nodlézání\r\nodlézat\r\nodlezení\r\nodlézt\r\nodleželejší\r\nodležení\r\nodležený\r\nodležet\r\nodlíčení\r\nodlíčený\r\nodlíčit\r\nodličovací\r\nodlidštění\r\nodlidštěný\r\nodlidštit\r\nodlidšťovat\r\nodlidšťující\r\nodlika\r\nodlistěný\r\nodlistování\r\nodlišení\r\nodlišený\r\nodlišit\r\nodlišitelnější\r\nodlišitelný\r\nodlišnější\r\nodlišný\r\nodlišování\r\nodlišovaný\r\nodlišovat\r\nodlišující\r\nodlítání\r\nodlítaný\r\nodlítat\r\nodlítávat\r\nodlít\r\nodlitek\r\nodlití\r\nodlítnout\r\nodlítnutí\r\nodlit\r\nodlitý\r\nodlívanější\r\nodlívání\r\nodlívaný\r\nodlívat\r\nodlivečka\r\nodliv\r\nodlivka\r\nodlomení\r\nodlomený\r\nodlomit\r\nodloučenější\r\nodloučení\r\nodloučený\r\nodloučit\r\nodloudání\r\nodloudat\r\nodloudění\r\nodlouděný\r\nodloudit\r\nodloupání\r\nodloupaný\r\nodloupat\r\nodloupávání\r\nodloupávaný\r\nodloupávat\r\nodloupnout\r\nodloupnutí\r\nodloupnutý\r\nodlovení\r\nodlovený\r\nodlov\r\nodlovit\r\nodlovovat\r\nodložení\r\nodložený\r\nOdložilíková\r\nOdložilík\r\nOdložilíkův\r\nOdložilová\r\nOdložil\r\nOdložilův\r\nodložit\r\nodlučitelnější\r\nodlučitelný\r\nodlučivý\r\nodlučnější\r\nodlučný\r\nodlučovací\r\nodlučovač\r\nodlučování\r\nodlučovaný\r\nodlučovat\r\nodluh\r\nodluka\r\nodlukový\r\nodlupování\r\nodlupovaný\r\nodlupovat\r\nodlupující\r\nodmáčení\r\nodmáčený\r\nodmáčet\r\nodmaďarštění\r\nodmaďarštěný\r\nodmaďarštit\r\nodmagnetizovanější\r\nodmagnetizování\r\nodmagnetizovaný\r\nodmagnetizovat\r\nodmagnetování\r\nodmakání\r\nodmakat\r\nodmala\r\nodmalička\r\nodmalinka\r\nodmanévrování\r\nodmanévrovaný\r\nodmanévrovat\r\nodmapování\r\nodmapovaný\r\nodmapovat\r\nodmapovávání\r\nodmapovávaný\r\nodmapovávat\r\nodmaskování\r\nodmaskovaný\r\nodmaskovat\r\nodmastit\r\nodmastitelný\r\nodmašírování\r\nodmašírovaný\r\nodmašírovat\r\nodmaštění\r\nodmaštěný\r\nodmašťovací\r\nodmašťovač\r\nodmašťovadlo\r\nodmašťování\r\nodmašťovaný\r\nodmašťovat\r\nodmatematizace\r\nodmatematizovaný\r\nodmatematizovat\r\nodmatematizující\r\nodmaturování\r\nodmaturovat\r\nodmaturovávat\r\nodmávnout\r\nodmávnutí\r\nodmávnutý\r\nodmazanější\r\nodmazání\r\nodmazaný\r\nodmazat\r\nodmazávající\r\nodmazávání\r\nodmazávaný\r\nodmazávat\r\nodmáznout\r\nodmáznutí\r\nodmáznutý\r\nodměna\r\nodměnější\r\nodměněnější\r\nodměnění\r\nodměněný\r\nodměnit\r\nodměnitelnější\r\nodměnitelný\r\nodměňovanější\r\nodměňování\r\nodměňovaný\r\nodměňovat\r\nodměňovávat\r\nodměňující\r\nodměr\r\nodměrka\r\nodměrný\r\nodměřenější\r\nodměření\r\nodměřený\r\nodměřit\r\nodměřování\r\nodměřovaný\r\nodměřovat\r\nodměřovávat\r\nodměřující\r\nodmést\r\nodměšek\r\nodměšování\r\nodměšovaný\r\nodměšovat\r\nodmetání\r\nodmetaný\r\nodmetat\r\nodmetávání\r\nodmetávaný\r\nodmetávat\r\nodmetení\r\nodmetený\r\nodminovací\r\nodminování\r\nodminovat\r\nodminovávání\r\nodminovávaný\r\nodminovávat\r\nodmítací\r\nodmítající\r\nodmítající\r\nodmítal\r\nodmítanější\r\nodmítání\r\nodmítaný\r\nodmítat\r\nodmítavější\r\nodmítavý\r\nodmítnout\r\nodmítnutější\r\nodmítnutelnější\r\nodmítnutelný\r\nodmítnutí\r\nodmítnutý\r\nodmítnutý\r\nodmixování\r\nodmixovaný\r\nodmixovat\r\nodmlada\r\nodmlčení\r\nodmlčet\r\nodmlčovat\r\nodmlka\r\nodmlouvačný\r\nodmlouvající\r\nodmlouvání\r\nodmlouvaný\r\nodmlouvat\r\nodmlouvavější\r\nodmluva\r\nodmluvení\r\nodmluvený\r\nodmluvit\r\nodmlžení\r\nodmlžený\r\nodmlžit\r\nodmlžování\r\nodmlžovaný\r\nodmlžovat\r\nodmocněnec\r\nodmocnění\r\nodmocněný\r\nodmocnina\r\nodmocnit\r\nodmocnitel\r\nodmocnítko\r\nodmocňovanější\r\nodmocňování\r\nodmocňovaný\r\nodmocňovat\r\nodmočit\r\nodmodralý\r\nodmontování\r\nodmontovaný\r\nodmontovat\r\nodmontovávání\r\nodmontovávaný\r\nodmontovávat\r\nodmoření\r\nodmořený\r\nodmořit\r\nodmořovat\r\nodmotání\r\nodmotaný\r\nodmotat\r\nodmotávání\r\nodmotávaný\r\nodmotávat\r\nodmrazení\r\nodmrazený\r\nodmrazit\r\nodmrazovač\r\nodmrazovat\r\nodmrštěnější\r\nodmrštění\r\nodmrštěný\r\nodmrštit\r\nodmršťovanější\r\nodmršťování\r\nodmršťovaný\r\nodmršťovat\r\nodmykání\r\nodmykaný\r\nodmykat\r\nodmyslení\r\nodmyslený\r\nodmyslet\r\nodmyslit\r\nodmyslitelnější\r\nodmyšlení\r\nodmýšlení\r\nodmyšlen\r\nodmýšlený\r\nodmýšlet\r\nodnacizování\r\nodnacizovaný\r\nodnacizovat\r\nodňal\r\nodnárodnění\r\nodnárodněný\r\nodnárodnit\r\nodnárodňování\r\nodnárodňovaný\r\nodnárodňovat\r\nodnárodňující\r\nodnášející\r\nodnášenější\r\nodnášení\r\nodnášený\r\nodnášet\r\nodnáška\r\nodňatější\r\nodňat\r\nodňatý\r\nodňatý\r\nodnaučení\r\nodnaučený\r\nodnaučit\r\nodnaučování\r\nodnaučovaný\r\nodnaučovat\r\nodnedávna\r\nodněkud\r\nodněmčení\r\nodněmčený\r\nodněmčit\r\nodnepaměti\r\nodnesenější\r\nodnesení\r\nodnesený\r\nodnést\r\nodnětí\r\nodnikud\r\nodnímací\r\nodnímanější\r\nodnímání\r\nodnímaný\r\nodnímatelnější\r\nodnimatelný\r\nodnímatelný\r\nodnímat\r\nodnít\r\nodnos\r\nodnosit\r\nodnosnější\r\nodnosný\r\nodnošení\r\nodnošený\r\nodnož\r\nodokujovací\r\nodokujování\r\nodokujovaný\r\nodokujovat\r\nodolání\r\nodolatelnější\r\nodolatelný\r\nodolat\r\nodolávající\r\nodolávání\r\nodolávat\r\nOdolena\r\nodolnější\r\nodolný\r\nodometr\r\nodoperování\r\nodoperovaný\r\nodoperovat\r\nodoperovávat\r\nodorant\r\nodorizování\r\nodorizovaný\r\nodorizovat\r\nodosobnělejší\r\nodosobnění\r\nodosobněný\r\nodosobnit\r\nodosobňování\r\nodosobňovaný\r\nodosobňovat\r\nodpadající\r\nodpadanější\r\nodpadání\r\nodpadaný\r\nodpadat\r\nodpadávající\r\nodpadávání\r\nodpadávaný\r\nodpadávat\r\nodpadek\r\nodpad\r\nodpadkový\r\nodpadlejší\r\nodpadlice\r\nodpadlictví\r\nodpadličin\r\nodpadlík\r\nodpadlík\r\nodpadlíkův\r\nodpádlovat\r\nodpadlý\r\nodpadní\r\nodpadnout\r\nodpadnutí\r\nodpadovější\r\nodpadový\r\nodpajdání\r\nodpajdat\r\nodpájení\r\nodpájený\r\nodpájet\r\nodpálenější\r\nodpálení\r\nodpálený\r\nodpal\r\nodpaliště\r\nodpálit\r\nodpálkování\r\nodpálkovaný\r\nodpálkovat\r\nodpálkovávání\r\nodpálkovávaný\r\nodpálkovávat\r\nodpalovací\r\nodpalovač\r\nodpalovačův\r\nodpalovanější\r\nodpalovaní\r\nodpalování\r\nodpalovaný\r\nodpalovat\r\nodpalovávání\r\nodpalovávaný\r\nodpalovávat\r\nodpalující\r\nodpapouškování\r\nodpapouškovaný\r\nodpapouškovat\r\nodpapouškovávání\r\nodpapouškovávaný\r\nodpapouškovávat\r\nodpárání\r\nodpáraný\r\nodpárat\r\nodpar\r\nodparka\r\nodparní\r\nodpářeme\r\nodpáře\r\nodpaření\r\nodpařený\r\nodpářeš\r\nodpářete\r\nodpařit\r\nodpařivý\r\nodpářou\r\nodpařovací\r\nodpařovač\r\nodpařování\r\nodpařovaný\r\nodpařovat\r\nodpářu\r\nodpeckovačka\r\nodpeckování\r\nodpeckovaný\r\nodpeckovat\r\nodpečetění\r\nodpečetěný\r\nodpečetit\r\nodpečeťovaný\r\nodpečeťovat\r\nodpelášení\r\nodpelášit\r\nodpěnění\r\nodpěněný\r\nodpěnit\r\nodpěňovač\r\nodpěňovadlo\r\nodpěňování\r\nodpěňovat\r\nodpěňující\r\nodperuánštění\r\nodperuánštěný\r\nodperuánštit\r\nodpesíkovací\r\nodpesíkování\r\nodpesíkovaný\r\nodpesíkovat\r\nodpich\r\nodpíchnout\r\nodpíchnutí\r\nodpíchnutý\r\nodpichování\r\nodpichovaný\r\nodpichovat\r\nodpichovátko\r\nodpichový\r\nodpichující\r\nodpíjenější\r\nodpíjení\r\nodpíjený\r\nodpíjet\r\nodpilování\r\nodpilovaný\r\nodpilovat\r\nodpínací\r\nodpínání\r\nodpínaný\r\nodpínat\r\nodpinkat\r\nodpíraččin\r\nodpíračka\r\nodpírač\r\nodpíračův\r\nodpírající\r\nodpíranější\r\nodpírání\r\nodpíraný\r\nodpírat\r\nodpis\r\nodpískanější\r\nodpískání\r\nodpískaný\r\nodpískat\r\nodpisný\r\nodpisovanější\r\nodpisování\r\nodpisovaný\r\nodpisovat\r\nodpisový\r\nodpít\r\nodpitější\r\nodpití\r\nodpit\r\nodpitý\r\nodpitý\r\nodpižlání\r\nodpižlaný\r\nodpižlat\r\nodplácející\r\nodplacenější\r\nodplácenější\r\nodplacení\r\nodplácení\r\nodplacený\r\nodplácený\r\nodplácet\r\nodpláchnout\r\nodpláchnutí\r\nodpláchnutý\r\nodplachtění\r\nodplachtit\r\nodpláštění\r\nodpláštěný\r\nodpláštit\r\nodplata\r\nodplatit\r\nodplatnější\r\nodplavání\r\nodplavat\r\nodplavávání\r\nodplavávaný\r\nodplavávat\r\nodplavejme\r\nodplavej\r\nodplavejte\r\nodplavení\r\nodplavený\r\nodplavit\r\nodplavitelný\r\nodplavování\r\nodplavovaný\r\nodplavovat\r\nodplazení\r\nodplazit\r\nodplést\r\nodplétání\r\nodplétaný\r\nodplétat\r\nodpletení\r\nodpletený\r\nodplevelení\r\nodplevelený\r\nodplevelit\r\nodplevelování\r\nodplevelovaný\r\nodplevelovat\r\nodplivnout\r\nodplivnutí\r\nodplivnutý\r\nodplivovat\r\nodplížení\r\nodplížit\r\nodplodit\r\nodplout\r\nodplouvající\r\nodplouvání\r\nodplouvaný\r\nodplouvat\r\nodploužení\r\nodploužit\r\nodplození\r\nodplozený\r\nodplozování\r\nodplozovaný\r\nodplozovat\r\nodplsťovací\r\nodplsťování\r\nodplsťovaný\r\nodplsťovat\r\nodpluchování\r\nodpluchovat\r\nodplutí\r\nodplutý\r\nodpluženější\r\nodplužení\r\nodplužený\r\nodplužit\r\nodplynout\r\nodplynování\r\nodplynovaný\r\nodplynovat\r\nodplynulejší\r\nodplynutí\r\nodplynutý\r\nodplývající\r\nodplývání\r\nodplývat\r\nodpočatější\r\nodpočátku\r\nodpočat\r\nodpočatý\r\nodpočet\r\nodpočinek\r\nodpočinkovější\r\nodpočinkový\r\nodpočinout\r\nodpočinutější\r\nodpočinutí\r\nodpočinutý\r\nodpočíst\r\nodpočítání\r\nodpočítaný\r\nodpočitatelnější\r\nodpočitatelný\r\nodpočítat\r\nodpočítávající\r\nodpočítávání\r\nodpočítávaný\r\nodpočítávat\r\nodpočívadlo\r\nodpočívající\r\nodpočívání\r\nodpočívárna\r\nodpočívat\r\nodpočívka\r\nodpočnout\r\nodpočnutý\r\nodpočtení\r\nodpočtený\r\nodpočtový\r\nodpohlavnění\r\nodpohlavněný\r\nodpohlavnit\r\nodpochodování\r\nodpochodovaný\r\nodpochodovat\r\nodpojenější\r\nodpojení\r\nodpojený\r\nodpojit\r\nodpojitelnější\r\nodpojitelný\r\nodpojka\r\nodpojkový\r\nodpojovací\r\nodpojovač\r\nodpojovanější\r\nodpojování\r\nodpojovaný\r\nodpojovat\r\nodpojovávání\r\nodpojovávaný\r\nodpojovávat\r\nodpoledne\r\nodpoledne\r\nodpolední\r\nodpolitizování\r\nodpolitizovaný\r\nodpolitizovat\r\nodpomáhat\r\nodpomocích\r\nodpomocím\r\nodpomoc\r\nodpopelňovací\r\nodpopelňování\r\nodpor\r\nodpornější\r\nodporník\r\nodporný\r\nodporoučení\r\nodporoučený\r\nodporoučet\r\nodporovací\r\nodporování\r\nodporovaný\r\nodporovat\r\nodporovatelný\r\nodporovější\r\nodporový\r\nodporující\r\nodposlech\r\nodposlechnout\r\nodposlechnutější\r\nodposlechnutí\r\nodposlechnutý\r\nodposlechnutý\r\nodposlechovější\r\nodposlechový\r\nodposlouchající\r\nodposlouchanější\r\nodposlouchání\r\nodposlouchaný\r\nodposlouchat\r\nodposlouchávací\r\nodposlouchávač\r\nodposlouchávačův\r\nodposlouchávající\r\nodposlouchávanější\r\nodposlouchávání\r\nodposlouchávaný\r\nodposlouchávat\r\nodpotácení\r\nodpotácet\r\nodpouštějící\r\nodpouštěnější\r\nodpouštění\r\nodpouštěný\r\nodpouštět\r\nodpoutanější\r\nodpoutání\r\nodpoutaný\r\nodpoutat\r\nodpoutávající\r\nodpoutávání\r\nodpoutávaný\r\nodpoutávat\r\nodpovědění\r\nodpověděný\r\nodpovědět\r\nodpověď\r\nodpovědmi\r\nodpovědna\r\nodpovědnější\r\nodpovědní\r\nodpovědnostní\r\nodpovědný\r\nodpovězen\r\nodpovězený\r\nodpovídací\r\nodpovídač\r\nodpovídající\r\nodpovídanější\r\nodpovídání\r\nodpovídaný\r\nodpovídat\r\nodpozorování\r\nodpozorovaný\r\nodpozorovat\r\nodpozorovávat\r\nodpracovanější\r\nodpracování\r\nodpracovaný\r\nodpracovat\r\nodpracovávanější\r\nodpracovávání\r\nodpracovávaný\r\nodpracovávat\r\nodpradávna\r\nodprásknout\r\nodprásknutí\r\nodprásknutý\r\nodprášený\r\nodprašovací\r\nodprašování\r\nodprašovaný\r\nodprašovat\r\nodprava\r\nodprava\r\nodpravení\r\nodpravený\r\nodpravit\r\nodpravování\r\nodpravovaný\r\nodpravovat\r\nodprejsknout\r\nodprejsknutí\r\nodpreparování\r\nodpreparovaný\r\nodpreparovat\r\nodprodání\r\nodprodaný\r\nodprodat\r\nodprodávání\r\nodprodávaný\r\nodprodávat\r\nodprodejní\r\nodprodej\r\nodpromítání\r\nodpromítaný\r\nodpromítat\r\nodprosení\r\nodprosený\r\nodprosit\r\nodprošení\r\nodprošování\r\nodprošovaný\r\nodprošovat\r\nodprošující\r\nodpružení\r\nodpružený\r\nodpružit\r\nodprýskanější\r\nodprýskání\r\nodprýskaný\r\nodprýskat\r\nodprýskávání\r\nodprýskávaný\r\nodprýskávat\r\nodprýsknout\r\nodprýsknutí\r\nodprýsknutý\r\nodpryskyřičovač\r\nodpřáhnout\r\nodpřednášení\r\nodpřednášený\r\nodpřednášet\r\nodpředu\r\nodpřevodování\r\nodpřírodnění\r\nodpřírodnit\r\nodpřísahání\r\nodpřísahaný\r\nodpřísahat\r\nodpřisáhnout\r\nodpřisáhnutí\r\nodpřisáhnutý\r\nodpudit\r\nodpudivější\r\nodpudivý\r\nodpůrce\r\nodpůrcův\r\nodpůrkyně\r\nodpůrkynin\r\nodpůrnější\r\nodpustek\r\nodpustit\r\nodpustitelnější\r\nodpustitelný\r\nodpustkový\r\nodpuštěnější\r\nodpuštění\r\nodpuštěný\r\nodpuzení\r\nodpuzený\r\nodpuzovač\r\nodpuzování\r\nodpuzovaný\r\nodpuzovat\r\nodpuzující\r\nodpykání\r\nodpykaný\r\nodpykat\r\nodpykávající\r\nodpykávání\r\nodpykávat\r\nodradit\r\nodrakouštění\r\nodrakouštěný\r\nodrakouštit\r\nodranější\r\nodraní\r\nodrání\r\nodraný\r\nodrásání\r\nodrásaný\r\nodrásat\r\nOdrášek\r\nOdrášková\r\nOdráškův\r\nodrat\r\nOdrava\r\nodra\r\nodrazení\r\nodrazený\r\nodraz\r\nodraziště\r\nodrazit\r\nodrazivý\r\nodrazka\r\nodraznější\r\nodrazník\r\nodrazný\r\nodrazování\r\nodrazovaný\r\nodrazovat\r\nodrazovější\r\nodrazový\r\nOdra\r\nodrazující\r\nodrážející\r\nodrážející\r\nOdrážek\r\nodražení\r\nodrážení\r\nodražený\r\nodrážený\r\nodrážet\r\nodrážka\r\nOdrážková\r\nOdrážkův\r\nodrbanější\r\nodrbání\r\nodrbaný\r\nodrbat\r\nodrbávání\r\nodrbávaný\r\nodrbávat\r\nodreagování\r\nodreagovaný\r\nodreagovat\r\nodreagovatelný\r\nodreagovávání\r\nodreagovávat\r\nodreaování\r\nodrecitování\r\nodrecitovat\r\nodregistrování\r\nodregistrovaný\r\nodregistrovat\r\nodregistrovávání\r\nodregistrovávaný\r\nodregistrovávat\r\nodrezovací\r\nodrezovač\r\nodrezování\r\nodrezovaný\r\nodrezovat\r\nodrhnout\r\nodrhnutí\r\nodrhnutý\r\nodrhovačka\r\nodročení\r\nodročený\r\nodročit\r\nodročovací\r\nodročování\r\nodročovaný\r\nodročovat\r\nodrodilcův\r\nodrodilčin\r\nodrodilec\r\nodrodilejší\r\nodrodilka\r\nodrodilství\r\nodrodilý\r\nodrodit\r\nodrolení\r\nodrolený\r\nodrolit\r\nodrolování\r\nodrolovaný\r\nodrolovat\r\nodrolovávání\r\nodrolovávaný\r\nodrolovávat\r\nodrostlejší\r\nodrostl\r\nodrostlý\r\nodrostu\r\nodrotování\r\nodrotovaný\r\nodrotovat\r\nOdrovice\r\nodrovický\r\nodrovnání\r\nodrovnaný\r\nodrovnat\r\nodrovnávání\r\nodrovnávaný\r\nodrovnávat\r\nodrozmazávanější\r\nodrozmazávaný\r\nodrůda\r\nodrůdový\r\nodrůstající\r\nodrůstání\r\nodrůstat\r\nodrůst\r\nodrušenější\r\nodrušení\r\nodrušený\r\nodrušit\r\nodrušitelnější\r\nodrušitelný\r\nodrušovanější\r\nodrušování\r\nodrušovaný\r\nodrušovat\r\nodrušovatelnější\r\nodrušovatelný\r\nodruštění\r\nodruštěný\r\nodruštit\r\nodrušující\r\nodrybňovanější\r\nodrybňování\r\nodrybňovaný\r\nodrybňovat\r\nodrýpávání\r\nodrýpávaný\r\nodrýpávat\r\nodrýpnout\r\nodrypovat\r\nodrývací\r\nodrývání\r\nodrývaný\r\nodrývat\r\nodřadění\r\nodřaděný\r\nodřadit\r\nodřádkování\r\nodřádkovaný\r\nodřádkovat\r\nodřazení\r\nodřazený\r\nodřazování\r\nodřazovaný\r\nodřazovat\r\nodřečen\r\nodřečený\r\nodřečtění\r\nodřečtěný\r\nodřečtit\r\nodřekl\r\nodřeknout\r\nodřeknu\r\nodřeknutí\r\nodřeknut\r\nodřeknutý\r\nodřeknuv\r\nodřenější\r\nodřenina\r\nodření\r\nodření\r\nodřený\r\nodřený\r\nodřepíkovací\r\nodřepíkování\r\nodřepíkovaný\r\nodřepíkovat\r\nodřezanější\r\nodřezání\r\nodřezaný\r\nodřezat\r\nodřezávací\r\nodřezávačka\r\nodřezávající\r\nodřezávanější\r\nodřezávání\r\nodřezávaný\r\nodřezávat\r\nodřezek\r\nodříci\r\nodříct\r\nodřídit\r\nodříkání\r\nodříkaný\r\nodříkat\r\nodříkávaččin\r\nodříkávačka\r\nodříkávač\r\nodříkávačův\r\nodříkávání\r\nodříkávaný\r\nodříkávat\r\nodříkavější\r\nodříkavý\r\nodřít\r\nodřízení\r\nodřízený\r\nodříznout\r\nodříznutější\r\nodříznutí\r\nodříznutý\r\nodříznutý\r\nodříznutý\r\nODS\r\nodsadit\r\nodsání\r\nodsát\r\nodsátí\r\nodsát\r\nodsátý\r\nodsávací\r\nodsávačka\r\nodsavač\r\nodsávající\r\nodsávání\r\nodsávaný\r\nodsávat\r\nodsazení\r\nodsazený\r\nodsazování\r\nodsazovaný\r\nodsedající\r\nodsedání\r\nodsedat\r\nodsedávání\r\nodsedávat\r\nodsedění\r\nodseděný\r\nodsedět\r\nodsedlání\r\nodsedlaný\r\nodsedlat\r\nodsedlávání\r\nodsedlávaný\r\nodsedlávat\r\nodsedlý\r\nodsednout\r\nodsednutí\r\nodsekanější\r\nodsekání\r\nodsekaný\r\nodsekat\r\nodsekávající\r\nodsekávání\r\nodsekávaný\r\nodsekávat\r\nodsek\r\nodseknout\r\nodseknutí\r\nodseknutý\r\nodsemeňovací\r\nodsemenování\r\nodsemeňování\r\nodsemeňovaný\r\nodsemenovat\r\nodsemeňovat\r\nodseparování\r\nodseparovaný\r\nodseparovat\r\nodsexualizování\r\nodsexualizovaný\r\nodsexualizovat\r\nodshora\r\nodsignalizování\r\nodsignalizovaný\r\nodsignalizovat\r\nodsimulování\r\nodsimulovaný\r\nodsimulovat\r\nodsimulovávání\r\nodsimulovávaný\r\nodsimulovávat\r\nodsírat\r\nodsíření\r\nodsířený\r\nodsířit\r\nodsiřovací\r\nodsiřování\r\nodsiřovaný\r\nodsiřovat\r\nodsiřovávat\r\nodskákanější\r\nodskákání\r\nodskákáno\r\nodskákaný\r\nodskákat\r\nodskakování\r\nodskakovat\r\nodskakovávání\r\nodskakovávaný\r\nodskakovávat\r\nodskakující\r\nodskládání\r\nodskládaný\r\nodskládat\r\nodskládávání\r\nodskládávaný\r\nodskládávat\r\nodskočení\r\nodskočit\r\nodskok\r\nodskotačení\r\nodskotačit\r\nodskřípnout\r\nodskřípnutí\r\nodskřípnutý\r\nodsloužení\r\nodsloužený\r\nodsloužit\r\nodslovenštění\r\nodslovenštěný\r\nodslovenštit\r\nodsluní\r\nodslupkování\r\nodsmradit\r\nodsolenější\r\nodsolení\r\nodsolený\r\nodsolit\r\nodsolovací\r\nodsolování\r\nodsolovaný\r\nodsolovat\r\nodsolovávání\r\nodsolovávaný\r\nodsolovávat\r\nodsoudit\r\nodsouhlasení\r\nodsouhlasený\r\nodsouhlasit\r\nodsouhlasování\r\nodsouhlasovaný\r\nodsouhlasovat\r\nodsouvající\r\nodsouvání\r\nodsouvaný\r\nodsouvat\r\nodsouzencův\r\nodsouzenec\r\nodsouzenější\r\nodsouzeníhodnější\r\nodsouzeníhodný\r\nodsouzení\r\nodsouzený\r\nodspoda\r\nodspodu\r\nodsrat\r\nodst\r\nodstálejší\r\nodstál\r\nodstálý\r\nodstaní\r\nodstartování\r\nodstartovaný\r\nodstartovat\r\nodstartovávat\r\nodstátější\r\nodstát\r\nodstátnění\r\nodstátněný\r\nodstátnit\r\nodstátňování\r\nodstátňovaný\r\nodstátňovat\r\nodstátňovávat\r\nodstátý\r\nodstávající\r\nodstávat\r\nodstavcový\r\nodstávče\r\nodstavec\r\nodstavení\r\nodstavený\r\nodstav\r\nodstavit\r\nodstávka\r\nodstávkový\r\nodstavný\r\nodstavovanější\r\nodstavování\r\nodstavovaný\r\nodstavovat\r\nodstěhování\r\nodstěhovaný\r\nodstěhovat\r\nodstěhovávání\r\nodstěhovávaný\r\nodstěhovávat\r\nodstíněnější\r\nodstínění\r\nodstíněný\r\nodstín\r\nodstínit\r\nodstiňovanější\r\nodstiňování\r\nodstiňovaný\r\nodstiňovat\r\nodstínový\r\nodstiňující\r\nodstojím\r\nodstonal\r\nodstonání\r\nodstonat\r\nodstonávání\r\nodstonávat\r\nodstonejme\r\nodstonej\r\nodstonejte\r\nodstoupení\r\nodstoupený\r\nodstoupit\r\nodstoupivší\r\nodstranění\r\nodstraněný\r\nodstranit\r\nodstranitelnější\r\nodstranitelný\r\nodstránkování\r\nodstránkovaný\r\nodstránkovat\r\nodstránkovávání\r\nodstránkovávaný\r\nodstránkovávat\r\nodstraňovací\r\nodstraňovač\r\nodstraňování\r\nodstraňovaný\r\nodstraňovat\r\nodstraňující\r\nodstrašení\r\nodstrašený\r\nodstrašit\r\nodstrašovaččin\r\nodstrašovačka\r\nodstrašovač\r\nodstrašovačův\r\nodstrašování\r\nodstrašovaný\r\nodstrašovat\r\nodstrašující\r\nodstrčenější\r\nodstrčení\r\nodstrčený\r\nOdstrčilová\r\nOdstrčil\r\nOdstrčilův\r\nodstrčit\r\nodstrkávání\r\nodstrkávaný\r\nodstrkávat\r\nodstrknutý\r\nodstrkování\r\nodstrkovaný\r\nodstrkovat\r\nodstrkující\r\nodstrojení\r\nodstrojený\r\nodstrojit\r\nodstrojování\r\nodstrojovaný\r\nodstrojovat\r\nodstrouhanější\r\nodstrouhání\r\nodstrouhaný\r\nodstrouhat\r\nodstrouhávanější\r\nodstrouhávání\r\nodstrouhávaný\r\nodstrouhávat\r\nodstředěný\r\nodstředivější\r\nodstředivka\r\nodstředivkový\r\nodstředivý\r\nodstřednější\r\nodstřeďovací\r\nodstřeďování\r\nodstřeďovaný\r\nodstřeďovat\r\nodstřelenější\r\nodstřelení\r\nodstřelený\r\nodstřel\r\nodstřelit\r\nodstřelovací\r\nodstřelovač\r\nodstřelovačův\r\nodstřelování\r\nodstřelovaný\r\nodstřelovat\r\nodstřelovávání\r\nodstřelovávaný\r\nodstřelovávat\r\nodstřelový\r\nodstřihání\r\nodstříhání\r\nodstřihaný\r\nodstříhaný\r\nodstřihat\r\nodstříhat\r\nodstřihávací\r\nodstřihávání\r\nodstříhávání\r\nodstřihávaný\r\nodstříhávaný\r\nodstřihávat\r\nodstříhávat\r\nodstřih\r\nodstřihnout\r\nodstřihnutí\r\nodstřihovací\r\nodstřihovač\r\nodstřihování\r\nodstřihovaný\r\nodstřihovat\r\nodstřihující\r\nodstříkání\r\nodstříkaný\r\nodstříkat\r\nodstříkávání\r\nodstříkávaný\r\nodstříkávat\r\nodstříknout\r\nodstříknutí\r\nodstříknutý\r\nodstřikování\r\nodstřikovaný\r\nodstřikovat\r\nodstřikovávání\r\nodstřikovávaný\r\nodstřikovávat\r\nodstřikující\r\nodstřílení\r\nodstřílený\r\nodstřílet\r\nodstřižek\r\nodstřižení\r\nodstřižený\r\nodstůjme\r\nodstůj\r\nodstůjte\r\nodstůňu\r\nodstup\r\nodstupné\r\nodstupňování\r\nodstupňovaný\r\nodstupňovat\r\nodstupňovávání\r\nodstupňovávaný\r\nodstupňovávat\r\nodstupování\r\nodstupovat\r\nodstupující\r\nodstýlání\r\nodstýlaný\r\nodstýlat\r\nodsud\r\nodsudečný\r\nodsudek\r\nodsukování\r\nodsukovat\r\nodsun\r\nodsunout\r\nodsunování\r\nodsunovaný\r\nodsunovat\r\nodsunový\r\nodsunutí\r\nodsunutý\r\nodsunutý\r\nodsupění\r\nodsupěný\r\nodsupět\r\nodsuvník\r\nodsuzovanější\r\nodsuzování\r\nodsuzovaný\r\nodsuzovat\r\nodsuzující\r\nodsvěcení\r\nodsvěcený\r\nodsvěcovávání\r\nodsvěcovávaný\r\nodsvěcovávat\r\nodsvětit\r\nodsypající\r\nodsypanější\r\nodsypání\r\nodsýpání\r\nodsypaný\r\nodsýpaný\r\nodsypat\r\nodsýpat\r\nodsypávající\r\nodsypávanější\r\nodsypávání\r\nodsypávaný\r\nodsypávat\r\nodšelestit\r\nodšifrování\r\nodšifrovaný\r\nodšifrovat\r\nodškodnění\r\nodškodněný\r\nodškodné\r\nodškodnit\r\nodškodňovací\r\nodškodňování\r\nodškodňovaný\r\nodškodňovat\r\nodškodňující\r\nodškrabající\r\nodškrábající\r\nodškrabanější\r\nodškrábanější\r\nodškrabání\r\nodškrábání\r\nodškrabaný\r\nodškrábaný\r\nodškrabat\r\nodškrábat\r\nodškrabávání\r\nodškrabávaný\r\nodškrabávat\r\nodškrábnout\r\nodškrábnutější\r\nodškrábnutí\r\nodškrábnutý\r\nodškrábnutý\r\nodškrabovanější\r\nodškrabování\r\nodškrabovaný\r\nodškrabovat\r\nodškrcení\r\nodškrtání\r\nodškrtaný\r\nodškrtat\r\nodškrtávání\r\nodškrtávaný\r\nodškrtávat\r\nodškrtnout\r\nodškrtnutí\r\nodškrtnutý\r\nodšlapaný\r\nodšlapat\r\nodšlapování\r\nodšlapovat\r\nodšlichtovací\r\nodšlichtování\r\nodšlichtovaný\r\nodšlichtovat\r\nodšmiknout\r\nodšmiknutí\r\nodšmiknutý\r\nodšoupnout\r\nodšoupnutí\r\nodšoupnutý\r\nodšourání\r\nodšourat\r\nodšpendlení\r\nodšpendlený\r\nodšpendlit\r\nodšpendlovat\r\nodšplhání\r\nodšplhaný\r\nodšplhat\r\nodšplhávání\r\nodšplhávat\r\nodšroubování\r\nodšroubovaný\r\nodšroubovat\r\nodšroubovávání\r\nodšroubovávaný\r\nodšroubovávat\r\nodšťavňovač\r\nodšťavňování\r\nodšťavňovaný\r\nodšťavňovat\r\nodšťavňovávat\r\nodštěpek\r\nodštěpencův\r\nodštěpenec\r\nodštěpenina\r\nodštěpení\r\nodštěpený\r\nodštěpit\r\nodštěpný\r\nodštěpování\r\nodštěpovaný\r\nodštěpovat\r\nodštětinovací\r\nodštětinování\r\nodštětinovaný\r\nodštětinovat\r\nodštípat\r\nodštípnout\r\nodštípnutí\r\nodštípnutý\r\nodštipování\r\nodštipovaný\r\nodštipovat\r\nodšťouchnout\r\nodšťouchnutí\r\nodšťouchnutý\r\nodšupovat\r\nodtabuizování\r\nodtabuizovaný\r\nodtabuizovat\r\nodtáčení\r\nodtáčet\r\nodtahání\r\nodtahaný\r\nodtahat\r\nodtah\r\nodtáhnout\r\nodtáhnutí\r\nodtahovanější\r\nodtahování\r\nodtahovaný\r\nodtahovat\r\nodtahovávání\r\nodtahovávaný\r\nodtahovávat\r\nodtahový\r\nodtahující\r\nodtajení\r\nodtajený\r\nodtajit\r\nodtajnění\r\nodtajněný\r\nodtajnit\r\nodtajňování\r\nodtajňovaný\r\nodtajňovat\r\nodtajování\r\nodtajovaný\r\nodtajovat\r\nodťal\r\nodtamtud\r\nodtancovat\r\nodtančení\r\nodtančený\r\nodtančit\r\nodtání\r\nodtaný\r\nodťapkání\r\nodťapkat\r\nodtát\r\nodťatější\r\nodťat\r\nodtátý\r\nodťatý\r\nodťatý\r\nodtávání\r\nodtávat\r\nodtavení\r\nodtavený\r\nodtavit\r\nodťav\r\nodtaženější\r\nodtažení\r\nodtažený\r\nodtažitější\r\nodtažitelnější\r\nodtažitelný\r\nodtažitý\r\nodtéct\r\nodtečení\r\nodteď\r\nodtékající\r\nodtékání\r\nodtékat\r\nodteklejší\r\nodteklý\r\nodtělesnění\r\nodtělesněný\r\nodtělesnit\r\nodtemnění\r\nodtemněný\r\nodtemnit\r\nodtesávání\r\nodtesávaný\r\nodtesávat\r\nodtěsnění\r\nodtěsněný\r\nodtěsnit\r\nodtětí\r\nodtěžba\r\nodtěžení\r\nodtěžený\r\nodtěžit\r\nodtikání\r\nodtikaný\r\nodtikat\r\nodtikávající\r\nodtikávání\r\nodtikávaný\r\nodtikávat\r\nodtínání\r\nodtínaný\r\nodtínat\r\nodtínávání\r\nodtínávaný\r\nodtínávat\r\nodtít\r\nodtlačení\r\nodtlačený\r\nodtlačit\r\nodtlačovanější\r\nodtlačování\r\nodtlačovaný\r\nodtlačovat\r\nodtlakování\r\nodtlakovaný\r\nodtlakovat\r\nodtlouct\r\nodtlumenější\r\nodtlumení\r\nodtlumený\r\nodtlumit\r\nodtočení\r\nodtočený\r\nodtočit\r\nodtok\r\nodtokový\r\nodtransportovanější\r\nodtransportování\r\nodtransportovaný\r\nodtransportovat\r\nodtransportovávání\r\nodtransportovávaný\r\nodtransportovávat\r\nodtrasování\r\nodtrasovaný\r\nodtrasovat\r\nodtravnění\r\nodtravněný\r\nodtravnit\r\nodtrénování\r\nodtrénovaný\r\nodtrénovat\r\nodtrhající\r\nodtrhanější\r\nodtrhání\r\nodtrhaný\r\nodtrhat\r\nodtrhávací\r\nodtrhávající\r\nodtrhávanější\r\nodtrhávání\r\nodtrhávaný\r\nodtrhávat\r\nodtrhnout\r\nodtrhnutější\r\nodtrhnutí\r\nodtrhnutý\r\nodtrhování\r\nodtrhovaný\r\nodtrhovat\r\nodtroubení\r\nodtroubený\r\nodtroubit\r\nodtrpění\r\nodtrpěný\r\nodtrpět\r\nodtrženější\r\nodtržení\r\nodtržený\r\nodtřásl\r\nodtřást\r\nodtřesení\r\nodtřesen\r\nodtřesený\r\nodtřesu\r\nodtučnění\r\nodtučněný\r\nodtučnět\r\nodtučnit\r\nodtučňovací\r\nodtučňování\r\nodtučňovat\r\nodtud\r\nodťukání\r\nodťukaný\r\nodťukat\r\nodťukávání\r\nodťukávaný\r\nodťukávat\r\nodtušení\r\nodtušený\r\nodtušit\r\nodučenější\r\nodučení\r\nodučený\r\nodučit\r\nodúčtování\r\nodúčtovna\r\noduhličení\r\nodulejší\r\nodulý\r\nodulý\r\nodumírající\r\nodumírání\r\nodumírat\r\nodumra\r\nodúmrť\r\nodumřelejší\r\nodumřelý\r\nodumření\r\nodumřít\r\nodunecký\r\nOdunec\r\nodupanější\r\nodupání\r\nodupaný\r\nodupat\r\nodupávanější\r\nodupávání\r\nodupávaný\r\nodupávat\r\nodupnout\r\nodupnutější\r\nodupnutí\r\nodupnutý\r\nodupnutý\r\nodupu\r\nodúročený\r\nodúřadování\r\nodúřadovaný\r\nodúřadovat\r\noduševnělejší\r\noduševnělý\r\noduševnění\r\noduševněný\r\noduševnit\r\noduševňovač\r\nodůvodněnější\r\nodůvodnění\r\nodůvodněný\r\nodůvodnit\r\nodůvodnitelnější\r\nodůvodnitelný\r\nodůvodňovací\r\nodůvodňování\r\nodůvodňovaný\r\nodůvodňovat\r\nodůvodňující\r\nodvábit\r\nodvádějící\r\nodváděnější\r\nodvádění\r\nodváděný\r\nodvádět\r\nodvaha\r\nodvalení\r\nodválení\r\nodvalený\r\nodválený\r\nodválet\r\nodval\r\nodvalit\r\nodvalovací\r\nodvalování\r\nodvalovaný\r\nodvalovat\r\nodvalovávání\r\nodvalovávaný\r\nodvalovávat\r\nodvalový\r\nodvalový\r\nodvalující\r\nodvandrovat\r\nodvání\r\nodvanout\r\nodvanulý\r\nodvanutí\r\nodvanutý\r\nodvápnění\r\nodvápněný\r\nodvápnit\r\nOdvárek\r\nodvar\r\nOdvárka\r\nodvárka\r\nOdvárková\r\nOdvárkův\r\nodvát\r\nodvátý\r\nodvázanější\r\nodvázání\r\nodvázaný\r\nodvázat\r\nodvázávanější\r\nodvázávání\r\nodvázávaný\r\nodvázávat\r\nodvaz\r\nodvazovanější\r\nodvazování\r\nodvazovaný\r\nodvazovat\r\nodvazový\r\nodvazující\r\nodvážející\r\nodváženější\r\nodvážení\r\nodvážený\r\nodvážet\r\nodváži\r\nodvážit\r\nodvážka\r\nodvážlivcův\r\nodvážlivec\r\nodvážlivější\r\nodvážlivkyně\r\nodvážlivkynin\r\nodvážlivý\r\nodvážnější\r\nodvážný\r\nodvažovací\r\nodvažovanější\r\nodvažování\r\nodvažovaný\r\nodvažovat\r\nodvažovatelnější\r\nodvažovatelný\r\nodvažující\r\nodvděčení\r\nodvděčený\r\nodvděčit\r\nodvděčovat\r\nodvěcení\r\nodvěcený\r\nodvedencův\r\nodvedenec\r\nodvedenější\r\nodvedení\r\nodveden\r\nodvedený\r\nodvedl\r\nodvedu\r\nodvěký\r\nodvelení\r\nodvelený\r\nodvelet\r\nodveslování\r\nodveslovat\r\nodveslovávání\r\nodveslovávaný\r\nodveslovávat\r\nodvěsna\r\nodvést\r\nodveta\r\nodvětit\r\nodvetný\r\nodvětralejší\r\nodvětrání\r\nodvětraný\r\nodvětratelný\r\nodvětrat\r\nodvětrávací\r\nodvětrávání\r\nodvětrávaný\r\nodvětrávat\r\nodvětvení\r\nodvětvený\r\nodvětví\r\nodvětvit\r\nodvětvovací\r\nodvětvování\r\nodvětvovaný\r\nodvětvovat\r\nodvětvový\r\nodvezenější\r\nodvezení\r\nodvezený\r\nodvézt\r\nodvíčkovací\r\nodvíčkování\r\nodvíčkovaný\r\nodvíčkovat\r\nodvíčkovávání\r\nodvíčkovávaný\r\nodvíčkovávat\r\nodvíječka\r\nodvíjející\r\nodvíjení\r\nodvíjený\r\nodvíjet\r\nodvinout\r\nodvinování\r\nodvinovaný\r\nodvinovat\r\nodvinutí\r\nodvinutý\r\nodvirování\r\nodvirovaný\r\nodvirovat\r\nodvisení\r\nodviset\r\nodvislejší\r\nodvislý\r\nodvislý\r\nodvívání\r\nodvláčení\r\nodvláčený\r\nodvláčet\r\nodvládnout\r\nodvládnutí\r\nodvládnutý\r\nodvlákňovací\r\nodvlákňování\r\nodvlákňovaný\r\nodvlákňovat\r\nodvlání\r\nodvlát\r\nodvléct\r\nodvlečenější\r\nodvlečení\r\nodvlečený\r\nodvlékání\r\nodvlékaný\r\nodvlékat\r\nodvlekl\r\nodvléknout\r\nodvlhčení\r\nodvlhčený\r\nodvlhčit\r\nodvlhčovací\r\nodvlhčovaný\r\nodvod\r\nodvodit\r\nodvoditelnější\r\nodvoditelný\r\nodvodnění\r\nodvodněný\r\nodvodnit\r\nodvodnitelný\r\nodvodní\r\nodvodňovací\r\nodvodňování\r\nodvodňovaný\r\nodvodňovat\r\nodvodňující\r\nodvodný\r\nodvodový\r\nOdvodyová\r\nOdvody\r\nOdvodyův\r\nodvolací\r\nodvolající\r\nodvolanější\r\nodvolání\r\nodvolaný\r\nodvolatelčin\r\nodvolatelka\r\nodvolatelnější\r\nodvolatelný\r\nodvolatel\r\nodvolatelův\r\nodvolat\r\nodvolávací\r\nodvolávající\r\nodvolávanější\r\nodvolávání\r\nodvolávaný\r\nodvolavatelčin\r\nodvolavatelka\r\nodvolavatel\r\nodvolavatelův\r\nodvolávat\r\nodvolávka\r\nodvolenější\r\nodvolení\r\nodvolený\r\nodvolit\r\nodvozenější\r\nodvozenina\r\nodvození\r\nodvozený\r\nodvoz\r\nodvozit\r\nodvozovací\r\nodvozování\r\nodvozovaný\r\nodvozovat\r\nodvozový\r\nodvozující\r\nodvožení\r\nodvožený\r\nodvracející\r\nodvrácenější\r\nodvracení\r\nodvrácení\r\nodvracený\r\nodvrácený\r\nodvracet\r\nodvrat\r\nodvrátit\r\nodvratitelnější\r\nodvratitelný\r\nodvratný\r\nodvrhnout\r\nodvrhnutí\r\nodvrhování\r\nodvrhující\r\nodvrstvení\r\nodvrtání\r\nodvrtaný\r\nodvrtat\r\nodvrtávací\r\nodvrtávání\r\nodvrtávaný\r\nodvrtávat\r\nodvržený\r\nodvšivení\r\nodvšivit\r\nodvšivování\r\nodvšivovaný\r\nodvšivovat\r\nodvykací\r\nodvykající\r\nodvykání\r\nodvykaný\r\nodvykat\r\nodvykládání\r\nodvykládaný\r\nodvykládat\r\nodvyklejší\r\nodvyklý\r\nodvyknout\r\nodvyknutí\r\nodvyknutý\r\nodvyprávění\r\nodvyprávěný\r\nodvyprávět\r\nodvysílání\r\nodvysílaný\r\nodvysílat\r\nodvysvětlovací\r\nodvýt\r\nodvytí\r\nodvzdušit\r\nodvzdušnění\r\nodvzdušněný\r\nodvzdušnit\r\nodvzdušňovací\r\nodvzdušňování\r\nodvzdušňovaný\r\nodvzdušňovat\r\nodvzdušňovávat\r\nodvzdušovací\r\nodvzdušování\r\nodvzdušovaný\r\nodvzdušovat\r\nodysea\r\nOdyssea\r\nOdysseus\r\nodzadu\r\nodzátkování\r\nodzátkovaný\r\nodzátkovat\r\nodzbrojení\r\nodzbrojený\r\nodzbrojit\r\nodzbrojovací\r\nodzbrojování\r\nodzbrojovaný\r\nodzbrojovat\r\nodzbrojovávání\r\nodzbrojovávaný\r\nodzbrojovávat\r\nodzbrojující\r\nodzdobení\r\nodzdobený\r\nodzdobit\r\nodzdola\r\nodzelenění\r\nodzeleněný\r\nodzelenit\r\nodzeleňování\r\nodzeleňovaný\r\nodzeleňovat\r\nodzemek\r\nodzkoušení\r\nodzkoušený\r\nodzkoušet\r\nodznáček\r\nodznačení\r\nodznačený\r\nodznačit\r\nodznačování\r\nodznačovaný\r\nodznačovat\r\nodznak\r\nodznít\r\nodzobání\r\nodzobaný\r\nodzobat\r\nodzobávání\r\nodzobávaný\r\nodzobávat\r\nodzpívání\r\nodzpívaný\r\nodzpívat\r\nodzpívávat\r\nodzrcadlení\r\nodzrcadlený\r\nodzrcadlit\r\nodzrcadlování\r\nodzrcadlovat\r\nodzrcadlovávání\r\nodzrcadlovávaný\r\nodzrcadlovávat\r\nodzrnit\r\nodzrňovačka\r\nodzrňování\r\nodzrňovaný\r\nodzrňovat\r\nodzvánění\r\nodzváněný\r\nodzvánět\r\nodzvonění\r\nodzvoněný\r\nodzvonit\r\nodzvoňování\r\nodzvoňovat\r\nodženštění\r\nodženštěný\r\nodženštit\r\nodžidovštění\r\nodžidovštěný\r\nodžidovštit\r\nodžít\r\nodžití\r\nodžitý\r\nOe\r\nOECD\r\noenin\r\nofačování\r\nofačovaný\r\nofačovat\r\nOfélie\r\nOféliin\r\nofensiva\r\nofensivní\r\nofenziva\r\nofenzíva\r\nofenzivnější\r\nofenzívnější\r\nofenzivní\r\nofenzívní\r\noferta\r\noffset\r\noficialita\r\noficiálnější\r\noficiální\r\noficína\r\noficiózní\r\noficír\r\noficírův\r\nofina\r\nofitický\r\nofocení\r\nofocený\r\nofotit\r\nofotografování\r\nofotografovaný\r\nofotografovat\r\nofotografovávání\r\nofotografovávaný\r\nofotografovávat\r\nofoukaný\r\nofoukat\r\nofoukávat\r\nofouknout\r\nofouknutí\r\nofrankování\r\nofrankovaný\r\nofrankovat\r\nofrankovávání\r\nofrankovávaný\r\nofrankovávat\r\nofrézování\r\nofrézovaný\r\nofrézovat\r\nofsajd\r\nofsajdový\r\nofset\r\nofsetový\r\noftalmologický\r\noftalmologie\r\noftalmolog\r\noftalmologův\r\noftalmoložčin\r\noftalmoložka\r\nofukování\r\nofukovaný\r\nofukovat\r\nofukovávání\r\nofukovávaný\r\nofukovávat\r\nOgnarová\r\nOgnar\r\nOgnarův\r\nogrilování\r\nogrilovaný\r\nogrilovat\r\nOH\r\noháknout\r\noháknutí\r\noháknutý\r\nohanbí\r\nohánějící\r\nohánění\r\nohánět\r\noháňka\r\noharek\r\noharka\r\noharkový\r\nOhařice\r\nohařický\r\nohaří\r\nohař\r\nohařův\r\nohavnější\r\nohavník\r\nohavníkův\r\nohavný\r\nohazování\r\nohbí\r\nohebnější\r\nohebný\r\noheň\r\nOhera\r\nOherová\r\nOherův\r\nOHES\r\nOhio\r\nohladit\r\nohlas\r\nohlásit\r\nohlasový\r\nohlášenější\r\nohlášení\r\nohlášený\r\nohláška\r\nohlášky\r\nohlašovací\r\nohlašovanější\r\nohlašovaní\r\nohlašování\r\nohlašovaný\r\nohlašovat\r\nohlašovatelčin\r\nohlašovatelka\r\nohlašovatel\r\nohlašovatelův\r\nohlašovávat\r\nohlašovna\r\nohlašující\r\nohlávka\r\nohlazení\r\nohlazený\r\nohlazování\r\nohlazovaný\r\nohlazovat\r\nohledanější\r\nohledání\r\nohledaný\r\nohledat\r\nohledávající\r\nohledávání\r\nohledávaný\r\nohledávat\r\nohledem\r\nohled\r\nohledně\r\nohlédnout\r\nohlédnul\r\nohlédnutí\r\nohledný\r\nohledu\r\nohleduplnější\r\nohleduplný\r\nohlídání\r\nohlídaný\r\nohlídat\r\nohlídka\r\nohlídnout\r\nohlídnul\r\nohlížející\r\nohlížení\r\nohlížet\r\nohlodanější\r\nohlodání\r\nohlodaný\r\nohlodat\r\nohlodávání\r\nohlodávaný\r\nohlodávat\r\nohluchlejší\r\nohluchlý\r\nohluchnout\r\nohluchnutí\r\nohluchnutý\r\nohlupování\r\nohlupovaný\r\nohlupovat\r\nohlupující\r\nohlušelý\r\nohlušení\r\nohlušený\r\nohlušit\r\nohlušování\r\nohlušovaný\r\nohlušovat\r\nohlušující\r\nohmatanější\r\nohmatání\r\nohmataný\r\nohmatat\r\nohmatávající\r\nohmatávání\r\nohmatávaný\r\nohmatávat\r\nohm\r\nohmický\r\nohmičtější\r\nohmmetr\r\nohmový\r\nOhm\r\nOhmův\r\nohnal\r\nohnání\r\nohnaný\r\nohnat\r\nohnice\r\nohníček\r\nohnisko\r\nohniskovitý\r\nohniskový\r\nOhnišov\r\nohnišovský\r\nohniště\r\nOhnivák\r\nohnivák\r\nohnivější\r\nohnivý\r\nohnivzdornější\r\nohnivzdorný\r\nohňostrojný\r\nohňostrojový\r\nohňostroj\r\nohnout\r\nohnoutka\r\nohňový\r\nohňový\r\nohnutější\r\nohnutí\r\nohnutka\r\nohnutý\r\nohnutý\r\nohó\r\nohoblovanější\r\nohoblování\r\nohoblovaný\r\nohoblovat\r\nohoblovávání\r\nohoblovávaný\r\nohoblovávat\r\nohodnocenější\r\nohodnocení\r\nohodnocený\r\nohodnocovanější\r\nohodnocování\r\nohodnocovaný\r\nohodnocovat\r\nohodnocující\r\nohodnotit\r\noholení\r\noholený\r\noholit\r\nohon\r\nohonový\r\nohořelejší\r\nohořelý\r\nohořet\r\nohořívání\r\nohořívaný\r\nohořívat\r\nohození\r\nohrada\r\nohradit\r\nohrádka\r\nohradník\r\nohradní\r\nohranější\r\nohraničenější\r\nohraničení\r\nohraničený\r\nohraničit\r\nohraničitelnější\r\nohraničitelný\r\nohraničování\r\nohraničovaný\r\nohraničovat\r\nohraničující\r\nohrání\r\nohraný\r\nohrát\r\nohrávanější\r\nohrávání\r\nohrávaný\r\nohrávat\r\nohrazenější\r\nOhrazenice\r\nohrazenický\r\nohrazení\r\nohrazený\r\nohrazování\r\nohrazovaný\r\nohrazovat\r\nohrazující\r\nohrnout\r\nohrnovanější\r\nohrnování\r\nohrnovaný\r\nohrnovat\r\nohrnující\r\nohrnutější\r\nohrnutí\r\nohrnutý\r\nohrobecký\r\nOhrobec\r\nohromenější\r\nohromení\r\nohromený\r\nohromit\r\nohromnější\r\nohromný\r\nohromování\r\nohromovaný\r\nohromovat\r\nohromující\r\nohrozenější\r\nohrozit\r\nohrozitelnější\r\nohrozitelný\r\nohroženější\r\nohrožení\r\nohrožený\r\nohrožovací\r\nohrožovanější\r\nohrožování\r\nohrožovaný\r\nohrožovat\r\nohrožující\r\nohryzající\r\nohryzanější\r\nohryzání\r\nohryzaný\r\nohryzat\r\nohryzávání\r\nohryzávaný\r\nohryzávat\r\nohryzek\r\nohryzovat\r\nohřání\r\nohřát\r\nohřátější\r\nohřátí\r\nohřátý\r\nohřebení\r\nohřebený\r\nohřebit\r\nOhře\r\nohřev\r\nohřívací\r\nohříváček\r\nohřívačka\r\nohřívač\r\nohřívadlo\r\nohřívající\r\nohřívák\r\nohřívanější\r\nohřívání\r\nohřívaný\r\nohřívárna\r\nohřívat\r\nohvězdičkovat\r\nohýbací\r\nohýbačka\r\nohybač\r\nohýbač\r\nohýbadlo\r\nohýbající\r\nohýbanější\r\nohýbání\r\nohýbaný\r\nohýbat\r\nohýbávání\r\nohýbávat\r\nohyb\r\nohybový\r\nohýnek\r\nohyzda\r\nohyzdin\r\nohyzdnější\r\nohyzdný\r\nohyzdův\r\noch\r\nochablejší\r\nochablý\r\nochabnout\r\nochabnutí\r\nochabování\r\nochabovat\r\nochabovávání\r\nochabovávat\r\nochabující\r\nochládání\r\nochládat\r\nochladit\r\nochladlejší\r\nochladnout\r\nochladnutí\r\nochlasta\r\nochlastův\r\nochlazenější\r\nochlazení\r\nochlazený\r\nochlazovací\r\nochlazovanější\r\nochlazování\r\nochlazovaný\r\nochlazovat\r\nochlazující\r\nochlupenější\r\nochlupení\r\nochlupený\r\nochmelka\r\nochmelkův\r\nochmýřenější\r\nochmýření\r\nochmýřený\r\nochmýřit\r\nochočenější\r\nochočení\r\nochočený\r\nochočit\r\nochočování\r\nochočovat\r\nochořelejší\r\nochořelý\r\nochoření\r\nochořet\r\nochota\r\nochoten\r\nochotnější\r\nochotnice\r\nochotnický\r\nochotničin\r\nochotník\r\nochotníkův\r\nochotný\r\nochození\r\nochozený\r\nochoz\r\nochozový\r\nochranářčin\r\nochranářka\r\nochranář\r\nochranářský\r\nochranářství\r\nochranářův\r\nochrana\r\nochránce\r\nochráncův\r\nochráněnější\r\nochránění\r\nochráněný\r\nochránit\r\nochranitelčin\r\nochranitelka\r\nochranitelský\r\nochranka\r\nochránkyně\r\nochránkynin\r\nochranný\r\nochranný\r\nochraňování\r\nochraňovaný\r\nochraňovat\r\nOchranov\r\nochraňující\r\nochraptělejší\r\nochraptělý\r\nochraptění\r\nochraptěný\r\nochraptět\r\nochraptit\r\nochrnout\r\nochrnutější\r\nochrnutí\r\nochrnutý\r\nochromenější\r\nochromení\r\nochromený\r\nochromit\r\nochromnout\r\nochromnutí\r\nochromování\r\nochromovaný\r\nochromovat\r\nochrómovat\r\nochromující\r\nochucenější\r\nochucení\r\nochucený\r\nochucování\r\nochucovaný\r\nochucovat\r\nochucovávání\r\nochucovávaný\r\nochucovávat\r\nochudit\r\nochuravělejší\r\nochuravět\r\nochutit\r\nochutnání\r\nochutnaný\r\nochutnat\r\nochutnavaččin\r\nochutnávaččin\r\nochutnavačka\r\nochutnávačka\r\nochutnavač\r\nochutnávač\r\nochutnavačův\r\nochutnávačův\r\nochutnávající\r\nochutnávání\r\nochutnávaný\r\nochutnávat\r\nochutnávka\r\nochuzenější\r\nochuzení\r\nochuzený\r\nochuzování\r\nochuzovaný\r\nochuzovat\r\nochuzující\r\noidipovský\r\nOidipus\r\nOidipův\r\noindexování\r\noindexovaný\r\noindexovat\r\nOIRT\r\nojedení\r\nojedený\r\nojedinělejší\r\nojedinělý\r\nojedu\r\nojehlený\r\nojel\r\nojení\r\nojetější\r\nojet\r\nojetí\r\nojetý\r\nojevování\r\nojevovaný\r\nojevovat\r\nojezděný\r\nojezdit\r\noježděný\r\nojídání\r\nojídaný\r\nojídat\r\nojídávání\r\nojídávaný\r\nojídávat\r\nojínělejší\r\nojíněnější\r\nojínění\r\nojíněný\r\nojínit\r\nOjíř\r\nojíst\r\nojka\r\nojnice\r\nojniční\r\noj\r\nOK\r\nokáč\r\nokáčův\r\nokál\r\nokamžíček\r\nokamžikem\r\nokamžik\r\nokamžikový\r\nokamžiku\r\nokamžitější\r\nokamžitý\r\nokapanější\r\nokapání\r\nokapaný\r\nokapat\r\nokapávající\r\nokapávání\r\nokapávat\r\nokap\r\nokapník\r\nokapní\r\nokapový\r\nokapu\r\nokarecký\r\nOkarec\r\nokarina\r\nokarína\r\nokartáčování\r\nokartáčovaný\r\nokartáčovat\r\nokatější\r\nokatý\r\nokázalejší\r\nokázalý\r\nokcidentalismus\r\nokcidentalistický\r\nokcidentálnější\r\nokcitánština\r\nOKD\r\nokecání\r\nokecat\r\nokenice\r\nokenička\r\nOkénka\r\nokénko\r\nOkénková\r\nokénkový\r\nOkénkův\r\nokenní\r\nOklahoma\r\noklahomský\r\noklahomský\r\noklamající\r\noklamanější\r\noklamání\r\noklamaný\r\noklamat\r\noklamávání\r\noklamávaný\r\noklamávat\r\noklasifikovat\r\noklepanější\r\noklepání\r\noklepaný\r\noklepat\r\noklepávající\r\noklepávanější\r\noklepávání\r\noklepávaný\r\noklepávat\r\noklepnout\r\noklepnutější\r\noklepnutí\r\noklepnutý\r\noklepnutý\r\noklestění\r\noklestit\r\noklesťovat\r\nokleštěnější\r\nokleštění\r\nokleštěný\r\nokleštit\r\noklešťkový\r\noklešťování\r\noklešťovaný\r\noklešťovat\r\noklešťující\r\noklika\r\noklobat\r\noklofat\r\noklopný\r\noklouzání\r\noklouzat\r\noklovat\r\noklovu\r\nokludovaný\r\nokludující\r\nokluze\r\nokluzíva\r\nokno\r\noknový\r\nokohybný\r\nokolek\r\nokolík\r\nokolí\r\nokolkách\r\nokolkování\r\nokolkovaný\r\nokolkovat\r\nokolkovávání\r\nokolkovávaný\r\nokolkovávat\r\nokolní\r\nokolo\r\nokolobydlící\r\nokolofrčící\r\nokolostojící\r\nokomentovanější\r\nokomentování\r\nokomentovaný\r\nokomentovat\r\noko\r\nokopanější\r\nokopanina\r\nokopání\r\nokopaný\r\nokopat\r\nokopávací\r\nokopávačka\r\nokopávající\r\nokopávání\r\nokopávaný\r\nokopávat\r\nokopávka\r\nokop\r\nokopírovanější\r\nokopírování\r\nokopírovaný\r\nokopírovat\r\nokopírovávanější\r\nokopírovávání\r\nokopírovávaný\r\nokopírovávat\r\nokoralejší\r\nokoralý\r\nokorání\r\nokoraný\r\nokorat\r\nokorávání\r\nokorávat\r\nokorunkování\r\nokořeněnější\r\nokořenění\r\nokořeněný\r\nokořenit\r\nokosení\r\nokosený\r\nokosit\r\nokostice\r\nokoštování\r\nokoštovaný\r\nokoštovat\r\nokotit\r\nokótování\r\nokótovaný\r\nokótovat\r\nokoukanější\r\nokoukání\r\nokoukaný\r\nokoukat\r\nokoukávání\r\nokoukávat\r\nokouknout\r\nokouknutí\r\nokouknutý\r\nokounek\r\nokounět\r\nokouník\r\nokounkův\r\nOkounov\r\nokounovský\r\nokoun\r\nokounův\r\nokouření\r\nokouřený\r\nokouřit\r\nokousanější\r\nokousání\r\nokousaný\r\nokousat\r\nokousávající\r\nokousávanější\r\nokousávání\r\nokousávaný\r\nokousávat\r\nokoušející\r\nokoušení\r\nokoušený\r\nokoušet\r\nokoušu\r\nokouzlenější\r\nokouzlení\r\nokouzlený\r\nokouzlit\r\nokouzlování\r\nokouzlovaný\r\nokouzlovat\r\nokouzlovávání\r\nokouzlovávaný\r\nokouzlovávat\r\nokouzlující\r\nokovanější\r\nokování\r\nokovaný\r\nokovat\r\nokovávání\r\nokovávaný\r\nokovávat\r\nokov\r\nokrádající\r\nokrádání\r\nokrádaný\r\nokrádat\r\nokradenější\r\nokradení\r\nokradený\r\nokrajek\r\nokrájenější\r\nokrájení\r\nokrájený\r\nokrájet\r\nokrajkovanější\r\nokrajkovaný\r\nokrajovací\r\nokrajovadlo\r\nokrajování\r\nokrajovaný\r\nokrajovat\r\nokrajovávání\r\nokrajovávaný\r\nokrajovávat\r\nokrajovější\r\nokrajový\r\nokraj\r\nokrasa\r\nokrasnější\r\nokrasný\r\nokrást\r\nokrášlenější\r\nokrášlení\r\nokrášlený\r\nokrášlit\r\nokrašlovací\r\nokrašlovat\r\nokres\r\nokresích\r\nokreska\r\nokresní\r\nokr\r\nokrouhání\r\nokrouhaný\r\nokrouhat\r\nokrouhávání\r\nokrouhávaný\r\nokrouhávat\r\nokrouhelský\r\nOkrouhlá\r\nokrouhlejší\r\nOkrouhlice\r\nokrouhlický\r\nOkrouhlička\r\nokrouhlík\r\nOkrouhlo\r\nokrouhlý\r\nokroužkování\r\nokroužkovaný\r\nokroužkovat\r\nokrový\r\nokrsek\r\nokrskový\r\nokruh\r\nokruhový\r\nokružní\r\nokružování\r\nokružovaný\r\nokružovat\r\nokřání\r\nokřát\r\nokřávání\r\nokřávat\r\nokřehek\r\nokřehkovitý\r\nOkřešice\r\nokřešický\r\nokřídlenější\r\nokřídlený\r\nokřiknout\r\nokřiknutí\r\nokřiknutý\r\nokřikování\r\nokřikovaný\r\nokřikovat\r\nokřikovávání\r\nokřikovávaný\r\nokřikovávat\r\nokřín\r\nokřívání\r\nokřívat\r\nokřížkovat\r\nokšírování\r\nokšírovaný\r\nokšírovat\r\noktaacetylsacharóza\r\nOktábcová\r\nOktábcův\r\nOktábec\r\noktadekahydrát\r\noktaedrální\r\noktaedrický\r\noktagonální\r\noktahydrát\r\noktalový\r\noktan\r\noktanový\r\noktavánčin\r\noktavánka\r\noktaván\r\noktavánský\r\noktavánův\r\noktáva\r\noktávový\r\noktenylsukcinát\r\noktet\r\nokteto\r\noktiliarda\r\noktilion\r\noktoda\r\noktrojování\r\noktrojovaný\r\noktrojovat\r\noktylgallát\r\nOkÚ\r\nokuje\r\nokukování\r\nokukovat\r\nokukující\r\nokulár\r\nokulárový\r\nokultismus\r\nokultista\r\nokultistčin\r\nokultistický\r\nokultistka\r\nokultistův\r\nokultní\r\nokupace\r\nokupační\r\nokupantčin\r\nokupantka\r\nokupant\r\nokupantský\r\nokupantův\r\nokupírování\r\nokupírovaný\r\nokupírovat\r\nokupování\r\nokupovaný\r\nokupovat\r\nokupující\r\nokurčička\r\nokurka\r\nokurkový\r\nokuřování\r\nokuřovaný\r\nokuřovat\r\nokusení\r\nokus\r\nokusit\r\nokusovanější\r\nokusování\r\nokusovaný\r\nokusovat\r\nokusovávanější\r\nokusovávání\r\nokusovávaný\r\nokusovávat\r\nokusující\r\nokvětí\r\nokvětní\r\nokýnko\r\nokyselení\r\nokyselený\r\nokyselit\r\nokyselování\r\nokyselovaný\r\nokyselovat\r\nokysličenější\r\nokysličení\r\nokysličený\r\nokysličit\r\nokysličitelný\r\nokysličovadlo\r\nokysličovanější\r\nokysličování\r\nokysličovaný\r\nokysličovat\r\nolámání\r\nolámaný\r\nolámat\r\nolamování\r\nolamovaný\r\nolamovat\r\nolamovávání\r\nolamovávaný\r\nolamovávat\r\nOlbrachtová\r\nOlbracht\r\nOlbrachtův\r\nOlbramkostel\r\nolbramkostelský\r\nOlbramovice\r\nolbramovický\r\nOlbramov\r\nolbramovský\r\nolbramský\r\nOlbramův\r\nOlda\r\nOldenburk\r\nOldřichovice\r\noldřichovický\r\nOldřichov\r\noldřichovský\r\nOldřich\r\nOldřichův\r\nOldřiščin\r\nOldřiška\r\nOldřišov\r\noldřišovský\r\nOldův\r\noleandr\r\noleandrový\r\nolefinový\r\nOleg\r\nOlegův\r\nOlehla\r\nOlehlová\r\nOlehlův\r\nolein\r\noleinový\r\nolejářčin\r\nolejářka\r\nolejářský\r\nolejář\r\nolejářův\r\nolejíček\r\nolejka\r\nolejnatější\r\nolejnatý\r\nolejnička\r\nOlejníková\r\nOlejník\r\nOlejníkův\r\nolejnina\r\nolejnin\r\nolejný\r\nolejomalba\r\nolejometr\r\nolejování\r\nolejovaný\r\nolejovat\r\nolejovávání\r\nolejovávaný\r\nolejovávat\r\nolejovitý\r\nolejovka\r\nolejový\r\nolej\r\nOlekšáková\r\nOlekšák\r\nOlekšákův\r\nolemování\r\nolemovaný\r\nolemovat\r\nolemovávání\r\nolemovávaný\r\nolemovávat\r\nolepení\r\nolepený\r\nolepit\r\nolepování\r\nolepovat\r\nOlešenka\r\nolešenský\r\nOleška\r\nOlešná\r\nOlešnice\r\nolešnický\r\nOlešovice\r\nolešovický\r\noleštění\r\noleštěný\r\noleštit\r\noleum\r\nolezlejší\r\nolezlý\r\nolfaktometrický\r\nOlga\r\nOličová\r\nOlič\r\nOličův\r\noligarchický\r\noligarchie\r\noligofrenický\r\noligofreniččin\r\noligofrenička\r\noligofrenie\r\noligofrenik\r\noligofrenikův\r\noligofrenní\r\noligoklas\r\noligoklasový\r\noligopolista\r\noligopolistčin\r\noligopolistka\r\noligopolistův\r\noligosacharid\r\noligospermie\r\noligotrofní\r\noliheň\r\nOlina\r\nOlinčin\r\nOlinin\r\nOlinka\r\nolistění\r\nolistěný\r\nOliva\r\noliva\r\nOlívie\r\nOlíviin\r\nolivín\r\nolivinický\r\nolivínovec\r\nolivínový\r\nolivka\r\nolivocerebelární\r\nOlivová\r\nolivovník\r\nolivový\r\nOlivův\r\nolízání\r\nolízaný\r\nolízat\r\nolízávat\r\nolíznout\r\nolíznutí\r\nolíznutý\r\nolizování\r\nolizovaný\r\nolizovat\r\nolizující\r\nOlomoucko\r\nolomoucký\r\nOlomouc\r\nOlomoučančin\r\nOlomoučanka\r\noloudit\r\noloupanější\r\noloupání\r\noloupaný\r\noloupat\r\noloupávání\r\noloupávaný\r\noloupávat\r\noloupení\r\noloupený\r\noloupit\r\nolování\r\nolovárna\r\nolověný\r\nolovičitan\r\nolovičitý\r\nolovnatan\r\nolovnatější\r\nolovnatý\r\nolovnice\r\nolovo\r\nolovoryt\r\nolovový\r\nOlšáková\r\nOlšák\r\nOlšákův\r\nolšanský\r\nolšanský\r\nOlšany\r\nolše\r\nolšina\r\nolšinka\r\nolšovecký\r\nOlšovec\r\nolšový\r\nOlštýn\r\nOlt\r\noltářní\r\noltář\r\nOltcit\r\nolupování\r\nolupovaný\r\nolupovat\r\nolupující\r\nOluščin\r\nOluška\r\nolůvko\r\nolympiáda\r\nolympijský\r\nolympionička\r\nolympionik\r\nolympionikův\r\nolympionismus\r\nolympismus\r\nolympský\r\nOlympus\r\nolysalejší\r\nolysalý\r\nolysání\r\nolysat\r\nOlžin\r\nomáčka\r\nomáčkový\r\nomáčník\r\nomak\r\nomalovánka\r\nomalovaný\r\nomalovat\r\nomámenější\r\nomámení\r\nomámený\r\nOmámiková\r\nOmámik\r\nOmámikův\r\nomámit\r\nomamnější\r\nomamný\r\nomamovanější\r\nomamování\r\nomamovaný\r\nomamovat\r\nomamovávání\r\nomamovávaný\r\nomamovávat\r\nomamující\r\nOmáňančin\r\nOmáňanka\r\nOmáňan\r\nOmáňanův\r\nOmáncův\r\nOmánčin\r\nOmánec\r\nOmán\r\nOmánka\r\nománský\r\nomastek\r\nomastit\r\nomaštění\r\nomaštěný\r\nomašťovat\r\nomatlání\r\nomatlaný\r\nomatlat\r\nomatlávání\r\nomatlávaný\r\nomatlávat\r\nomazat\r\nomáznout\r\nomáznutí\r\nomáznutý\r\nombudsman\r\nombudsmanův\r\nomdlelý\r\nomdlení\r\nomdlet\r\nomdlévající\r\nomdlévání\r\nomdlévaný\r\nomdlévat\r\nomdlít\r\nomdlívání\r\nomdlívat\r\nomega\r\noměj\r\nomeleta\r\nomeletka\r\nomeletový\r\nomelu\r\noměřenější\r\noměření\r\noměřený\r\noměřit\r\noměřování\r\noměřovaný\r\noměřovat\r\noměřovávat\r\nomést\r\nomeškat\r\nomeškávat\r\nometání\r\nometaný\r\nometat\r\nometávání\r\nometávaný\r\nometávat\r\nometení\r\nometený\r\nomezencův\r\nomezenec\r\nomezenější\r\nomezení\r\nomezený\r\nomezit\r\nomezovací\r\nomezovač\r\nomezovanější\r\nomezování\r\nomezovaný\r\nomezovat\r\nomezující\r\nomfacit\r\nomfacitový\r\nomílající\r\nomílání\r\nomílaný\r\nomílat\r\nomilostnění\r\nomilostněný\r\nomilostnit\r\nomilostňování\r\nomilostňovaný\r\nomilostňovat\r\nomilostňovávat\r\nomilostňující\r\nomítací\r\nomítačka\r\nomítající\r\nomítanější\r\nomítání\r\nomítaný\r\nomítat\r\nomítkář\r\nomítkářův\r\nomítka\r\nomítkovější\r\nomítkový\r\nomítnout\r\nomítnutější\r\nomítnutí\r\nomítnutý\r\nomítnutý\r\nomlácení\r\nomlácený\r\nomlacovat\r\nomladinář\r\nomladinářův\r\nomladina\r\nomladit\r\nomládlejší\r\nomládlý\r\nomladnice\r\nomládnout\r\nomládnutí\r\nomlátit\r\nomlazení\r\nomlazený\r\nomlazovací\r\nomlazování\r\nomlazovaný\r\nomlazovat\r\nomlazující\r\nomlel\r\nOmlenice\r\nomlenický\r\nomlení\r\nomletější\r\nomletí\r\nomlet\r\nomletý\r\nomletý\r\nomlít\r\nomlouvající\r\nomlouvání\r\nomlouvaný\r\nomlouvat\r\nomlouvavější\r\nomlouvavý\r\nomluva\r\nomluvenější\r\nomluvení\r\nomluvenka\r\nomluvený\r\nomluvit\r\nomluvitelnější\r\nomluvitelný\r\nomluvný\r\nomlžení\r\nomlžený\r\nomlžit\r\nomnibus\r\nomnibusový\r\nomnipotence\r\nomnipotentní\r\nomočení\r\nomočený\r\nomočit\r\nomokající\r\nomokání\r\nomokat\r\nomokávání\r\nomokávaný\r\nomokávat\r\nomoklejší\r\nomoklý\r\nomoknout\r\nomoknutí\r\nomoknutý\r\nomoření\r\nomořený\r\nomořit\r\nomotání\r\nomotaný\r\nomotat\r\nomotávání\r\nomotávaný\r\nomotávat\r\nomráčenější\r\nomráčení\r\nomráčený\r\nomráčit\r\nomračovací\r\nomračování\r\nomračovaný\r\nomračovat\r\nomračující\r\nomrknout\r\nomrknutí\r\nomrknutý\r\nomrzelejší\r\nomrzelý\r\nomrzení\r\nomrzený\r\nomrzet\r\nomrzlejší\r\nomrzlina\r\nomrzlý\r\nomrznout\r\nOmsk\r\nomský\r\nomšelejší\r\nomšelý\r\nomykací\r\nomykání\r\nomykaný\r\nomylem\r\nomyl\r\nomylnější\r\nomylný\r\nomýt\r\nomytější\r\nomytí\r\nomytý\r\nomytý\r\nomývačka\r\nomývač\r\nomývačův\r\nomývající\r\nomývanější\r\nomývání\r\nomývaný\r\nomyvatelnější\r\nomývatelnější\r\nomyvatelný\r\nomývatelný\r\nomývat\r\non\r\noň\r\nona\r\nonačejší\r\nonak\r\nonaký\r\nonálepkování\r\nonálepkovaný\r\nonálepkovat\r\nonanie\r\nonanista\r\nonanistčin\r\nonanistický\r\nonanistka\r\nonanistův\r\nonanovanější\r\nonanování\r\nonanovaný\r\nonanovat\r\nOnan\r\nonanující\r\nOnanův\r\nondatra\r\nondatří\r\nonde\r\nOnderka\r\nOnderková\r\nOnderkův\r\nOndráček\r\nOndráčková\r\nOndráčkův\r\nOndráková\r\nOndrák\r\nOndrákův\r\nOndra\r\nOndrászek\r\nOndrászková\r\nOndrászkův\r\nOndrášek\r\nOndráš\r\nOndrášův\r\nOndrejová\r\nOndrejovičová\r\nOndrejovič\r\nOndrejovičův\r\nOndrej\r\nOndrejův\r\nOndroušek\r\nOndroušková\r\nOndrouškův\r\nOndrová\r\nOndruchová\r\nOndruch\r\nOndruchův\r\nOndruška\r\nOndrušková\r\nOndruškův\r\nOndrušová\r\nOndruš\r\nOndrušův\r\nOndrův\r\nOndřejnice\r\nOndřejov\r\nondřejovský\r\nondřejovský\r\nOndřej\r\nOndřejův\r\nOndříček\r\nOndříčková\r\nOndříčkův\r\nondulace\r\nondulační\r\nondulovací\r\nondulování\r\nondulovaný\r\nondulovat\r\nOněga\r\nonehdy\r\noneirologický\r\noneirologie\r\noneirolog\r\noneirologův\r\noneiroložčin\r\noneiroložka\r\noněmělý\r\noněmění\r\noněměný\r\noněmět\r\nonemocnělý\r\nonemocnění\r\nonemocněný\r\nonemocnět\r\nonen\r\noněžský\r\noni\r\nonikání\r\nonikat\r\nonkat\r\nonkologický\r\nonkologie\r\nonkolog\r\nonkologův\r\nonkoložčin\r\nonkoložka\r\nono\r\nonomastický\r\nonomastika\r\nonomatopoický\r\nonomaziologie\r\nonošenější\r\nOnšova\r\nOnšov\r\nonšovský\r\nontarijský\r\nOntario\r\nOntário\r\nontogenetický\r\nontogeneze\r\nontologický\r\nontologie\r\nontolog\r\nontologův\r\nontoložčin\r\nontoložka\r\nonuce\r\nONV\r\nony\r\nonyx\r\nonyxový\r\noocyt\r\noočkování\r\noočkovaný\r\noočkovat\r\noočkovávání\r\noočkovávaný\r\noočkovávat\r\noolejovávání\r\noolejovávaný\r\noolejovávat\r\nOort\r\nOortův\r\noosféra\r\nop\r\nopáčení\r\nopáčený\r\nopáčit\r\nopáčko\r\nopačnější\r\nopačný\r\nopadající\r\nopadanější\r\nopadání\r\nopadaný\r\nopadat\r\nopadávající\r\nopadávání\r\nopadávaný\r\nopadávat\r\nopadavý\r\nopad\r\nopadnout\r\nopadnutí\r\nopájející\r\nopájení\r\nopájený\r\nopájet\r\nopak\r\nopakovací\r\nopakovačka\r\nopakovač\r\nopakovanější\r\nopakování\r\nopakovaný\r\nopakovat\r\nopakovatelnější\r\nopakovatelný\r\nopakovatelný\r\nopakující\r\nopálenější\r\nopálení\r\nopálený\r\nopalescence\r\nopaleskující\r\nopál\r\nopalisování\r\nopalisovaný\r\nopalisovat\r\nopálit\r\nopalizování\r\nopalizovat\r\nopalizující\r\nopálka\r\nopalovací\r\nopalovačky\r\nopalovanější\r\nopalovaní\r\nopalování\r\nopalovaný\r\nopalovat\r\nopalovávání\r\nopalovávaný\r\nopalovávat\r\nopálový\r\nopalující\r\nopancéřování\r\nopancéřovaný\r\nopancéřovat\r\nopancéřovávat\r\nopánek\r\nopanování\r\nopanovaný\r\nopanovat\r\nopar\r\nopařenější\r\nopařenina\r\nopaření\r\nopařený\r\nopařit\r\nopásanější\r\nopásání\r\nopásaný\r\nopásatelnější\r\nopásatelný\r\nopásat\r\nopasek\r\nopaskový\r\nopatek\r\nopatlanější\r\nopatlání\r\nopatlaný\r\nopatlat\r\nopatlávání\r\nopatlávaný\r\nopatlávat\r\nOpatová\r\nopatovecký\r\nOpatovec\r\nOpatovice\r\nopatovický\r\nopatovický\r\nOpatov\r\nopatovský\r\nopat\r\nOpat\r\nopatrnější\r\nopatrnický\r\nopatrnictví\r\nopatrničtější\r\nopatrník\r\nopatrníkův\r\nOpatrný\r\nopatrný\r\nopatrování\r\nopatrovaný\r\nopatrovat\r\nopatrovatelčin\r\nopatrovatelka\r\nopatrovatel\r\nopatrovatelův\r\nopatrovávání\r\nopatrovávaný\r\nopatrovávat\r\nopatrovna\r\nopatrovnice\r\nopatrovnický\r\nopatrovnictví\r\nopatrovničin\r\nopatrovník\r\nopatrovníkův\r\nopatrující\r\nopatření\r\nopatřený\r\nopatřit\r\nopatřování\r\nopatřovaný\r\nopatřovat\r\nopatřovávat\r\nopatský\r\nopatství\r\nOpatův\r\nopatův\r\nOpava\r\nOpavsko\r\nopavský\r\nOPBH\r\nopce\r\nopční\r\nopéct\r\nopečenější\r\nopečení\r\nopečený\r\nopečka\r\nopečování\r\nopečovaný\r\nopečovat\r\nopečovávaný\r\nopečovávat\r\nopékací\r\nopékač\r\nopékání\r\nopékaný\r\nopékat\r\nopelichanější\r\nopelichání\r\nopelichaný\r\nopelichat\r\nopentlenější\r\nopentlení\r\nopentlený\r\nopentlit\r\nopepření\r\nopepřený\r\nopepřit\r\noperace\r\noperacionalizace\r\noperační\r\nopěradlo\r\nopěrák\r\noperand\r\noperandový\r\noperatérčin\r\noperatérka\r\noperatér\r\noperatérův\r\noperativnější\r\noperativní\r\noperátorčin\r\noperátorka\r\noperátorový\r\noperátor\r\noperátorský\r\noperátorův\r\nopera\r\nopěra\r\nopereta\r\noperetka\r\noperetní\r\noperka\r\nopěrka\r\nopernější\r\noperní\r\nopěrný\r\noperování\r\noperovaný\r\noperovat\r\noperovatelný\r\noperovávat\r\noperující\r\nopeřencův\r\nopeřenec\r\nopeřenější\r\nopeření\r\nopeřený\r\nopeřit\r\nopět\r\nopětný\r\nopětovací\r\nopětování\r\nopětovaný\r\nopětovat\r\nopětovávání\r\nopětovávaný\r\nopětovávat\r\nopětovný\r\nopětující\r\nopevnění\r\nopevněný\r\nopevnit\r\nopevňovací\r\nopevňování\r\nopevňovaný\r\nopevňovat\r\nopevňovávat\r\nopěvovanější\r\nopěvování\r\nopěvovaný\r\nopěvovat\r\nopěvovatelnější\r\nopěvovatelný\r\nopěvující\r\nopiát\r\nopiátový\r\nopice\r\nopičácký\r\nopičák\r\nopičákův\r\nopičení\r\nopičený\r\nopičinka\r\nopičit\r\nopičí\r\nopička\r\nopíjející\r\nopíjenější\r\nopíjení\r\nopíjený\r\nopíjet\r\nopíjivý\r\nopilcův\r\nopilecký\r\nopilec\r\nopilečtější\r\nopilejší\r\nopilka\r\nopilotovávání\r\nopilotovávaný\r\nopilotovávat\r\nopilování\r\nopilovaný\r\nopilovat\r\nopilství\r\nopilý\r\nopiový\r\nopírající\r\nopíranější\r\nopírání\r\nopíraný\r\nopírat\r\nopis\r\nopískovaný\r\nopískovat\r\nopisnější\r\nopisný\r\nopisovaččin\r\nopisovačka\r\nopisovač\r\nopisovačův\r\nopisovanější\r\nopisování\r\nopisovaný\r\nopisovat\r\nopisový\r\nopisující\r\nopíši\r\nopíšu\r\nopít\r\nopitější\r\nopití\r\nopit\r\nopitý\r\nopitý\r\nOpitzová\r\nOpitz\r\nOpitzův\r\nopium\r\nopižlání\r\nopižlaný\r\nopižlat\r\noplácanější\r\noplácání\r\noplácaný\r\noplácat\r\noplácející\r\noplacenější\r\noplácenější\r\noplacení\r\noplácení\r\noplacený\r\noplácený\r\noplácet\r\noplach\r\nopláchnout\r\nopláchnutí\r\nopláchnutý\r\noplachovací\r\noplachování\r\noplachovaný\r\noplachovat\r\noplachovatelný\r\noplachovávání\r\noplachovávaný\r\noplachovávat\r\noplachový\r\noplachtění\r\noplachtěný\r\noplachtit\r\noplakající\r\noplakanější\r\noplakání\r\noplakaný\r\noplakat\r\noplakávající\r\noplakávání\r\noplakávaný\r\noplakávat\r\nopláštění\r\nopláštěný\r\nopláštit\r\noplášťování\r\noplášťovaný\r\noplášťovat\r\noplatit\r\noplatitelný\r\nOplatka\r\noplatka\r\noplátka\r\nOplatková\r\noplatkový\r\nOplatkův\r\noplátování\r\noplátovat\r\noplechování\r\noplechovaný\r\noplechovat\r\noplechovávání\r\noplechovávaný\r\noplechovávat\r\noplesnivělý\r\noplesnivět\r\noplést\r\noplešatět\r\noplétací\r\nopletačka\r\noplétačky\r\nOpletalová\r\nOpletal\r\nOpletalův\r\noplétání\r\noplétaný\r\noplétat\r\nopletení\r\nopletený\r\noplivání\r\noplivaný\r\noplivat\r\noplocení\r\noplocený\r\noplocování\r\noplocovaný\r\noplocovat\r\noplocovávání\r\noplocovávaný\r\noplocovávat\r\noplodí\r\noplodit\r\noplodnění\r\noplodněný\r\noplodnit\r\noplodňovací\r\noplodňování\r\noplodňovat\r\noplodňující\r\noploštění\r\noploštěný\r\noploštit\r\noplotecký\r\nOplotec\r\noplotit\r\noplozeníschopný\r\noplození\r\noplozen\r\noplozený\r\noplozovací\r\noplozování\r\noplozovaný\r\noplozovat\r\nOpltová\r\nOplt\r\nOpltův\r\nOpluštilová\r\nOpluštil\r\nOpluštilův\r\noplývající\r\noplývání\r\noplývat\r\noplzlejší\r\noplzlý\r\nopocení\r\nopocený\r\nopocování\r\nopocovaný\r\nopocovat\r\nOpočenský\r\nopočenský\r\nopočlověče\r\nopočlověk\r\nopočlověka\r\nopočlověkem\r\nopočlověku\r\nOpočnice\r\nopočnický\r\nOpočno\r\nopodál\r\nopodkuřovávat\r\nopodstatněnější\r\nopodstatnění\r\nopodstatněný\r\nopodstatnit\r\nopodstatňovat\r\nopodstatňující\r\nopojenější\r\nopojení\r\nopojený\r\nopojit\r\nopojitelný\r\nopojnější\r\nopojný\r\nOpolí\r\nopolidé\r\nopolidech\r\nopolidem\r\nopolidi\r\nopolidí\r\nopolidmi\r\nopolský\r\nopomenout\r\nopomenutelnější\r\nopomenutelný\r\nopomenutí\r\nopomenutý\r\nopomíjející\r\nopomíjenější\r\nopomíjení\r\nopomíjený\r\nopomíjet\r\nopomínání\r\nopomínaný\r\nopomínat\r\nopominout\r\nopominutější\r\nopominutelnější\r\nopominutelný\r\nopominutí\r\nopominutý\r\nopominutý\r\nopomněl\r\nopona\r\noponentčin\r\noponentka\r\noponentní\r\noponent\r\noponentský\r\noponentura\r\noponentův\r\noponka\r\noponování\r\noponovaný\r\noponovat\r\noponující\r\nopora\r\noporový\r\noportunismus\r\noportunista\r\noportunistčin\r\noportunistický\r\noportunističtější\r\noportunistka\r\noportunistův\r\noportunnější\r\noportunní\r\noposlouchání\r\noposlouchaný\r\noposlouchat\r\nopotit\r\nopotřebení\r\nopotřebený\r\nopotřebit\r\nopotřebitelnější\r\nopotřebitelný\r\nopotřebovací\r\nopotřebovanější\r\nopotřebování\r\nopotřebovaný\r\nopotřebovat\r\nopotřebovatelnější\r\nopotřebovatelný\r\nopotřebovávání\r\nopotřebovávaný\r\nopotřebovávat\r\nopouštějící\r\nopouštěnější\r\nopouštění\r\nopouštěný\r\nopouštět\r\nopouzdření\r\nopouzdřený\r\nopouzdřit\r\nopovážení\r\nopovážený\r\nopovážit\r\nopovážlivcův\r\nopovážlivec\r\nopovážlivější\r\nopovážlivkyně\r\nopovážlivkynin\r\nopovážlivý\r\nopovážlivý\r\nopovažování\r\nopovažovaný\r\nopovažovat\r\nopovažující\r\nopovědník\r\nopovrhnout\r\nopovrhnutí\r\nopovrhování\r\nopovrhovaný\r\nopovrhovat\r\nopovrhující\r\nopovrženější\r\nopovrženíhodnější\r\nopovrženíhodný\r\nopovržení\r\nopovržený\r\nopovržlivější\r\nopovržlivý\r\nopozdění\r\nopozděný\r\nopozdilcův\r\nopozdilec\r\nopozdilý\r\nopozdilý\r\nopozdit\r\nopozice\r\nopozičnější\r\nopozičník\r\nopozičníkův\r\nopoziční\r\nopozitum\r\nopožděnější\r\nopoždění\r\nopožděný\r\nopožďování\r\nopožďovaný\r\nopožďovat\r\nopožďující\r\nop\r\noppidum\r\nopracovanější\r\nopracování\r\nopracovaný\r\nopracovat\r\nopracovatelnější\r\nopracovatelný\r\nopracovávající\r\nopracovávanější\r\nopracovávání\r\nopracovávaný\r\nopracovávat\r\nopranější\r\noprání\r\nopraný\r\noprasení\r\noprášenější\r\noprášení\r\noprášený\r\noprášit\r\noprašování\r\noprašovaný\r\noprašovat\r\noprašující\r\noprat\r\noprátka\r\noprať\r\nopravárenský\r\nopravárenství\r\nopravářčin\r\nopravářka\r\nopravářský\r\nopravář\r\nopravářův\r\noprava\r\nopravdický\r\nopravdičtější\r\nopravdivý\r\nopravdovější\r\nopravdovský\r\nopravdový\r\nopravdu\r\nopravenější\r\nopravení\r\nopravenka\r\nopravený\r\nopravit\r\nopravitelnější\r\nopravitelný\r\noprávka\r\nopravna\r\noprávněnější\r\noprávnění\r\noprávněný\r\noprávnit\r\nopravňování\r\nopravňovaný\r\nopravňovat\r\nopravňovávat\r\nopravňující\r\nopravný\r\nopravovací\r\nopravování\r\nopravovaný\r\nopravovat\r\nopravovování\r\nopravovovaný\r\nopravovovat\r\nopravující\r\nopražení\r\nopražený\r\nopražit\r\noprerativní\r\noprostit\r\noproštěnější\r\noproštění\r\noproštěný\r\noprošťování\r\noprošťovaný\r\noprošťovat\r\noprotektorování\r\noprotektorovaný\r\noprotektorovat\r\noproti\r\nopršení\r\nopršený\r\nopršet\r\noprubovat\r\noprudit\r\nopruzenější\r\nopruzenina\r\nopruzený\r\noprýskanější\r\noprýskání\r\noprýskaný\r\noprýskat\r\noprýskávat\r\nopřádací\r\nopřádající\r\nopřádání\r\nopřádaný\r\nopřádat\r\nopředení\r\nopředen\r\nopředený\r\nopřekot\r\nopřenější\r\nopření\r\nopřený\r\nopřipomínkování\r\nopřipomínkovaný\r\nopřipomínkovat\r\nopříst\r\nopřít\r\nopsal\r\nopsanější\r\nopsanější\r\nopsání\r\nopsán\r\nopsaný\r\nopsáný\r\nopsat\r\noptání\r\noptaný\r\noptativ\r\noptat\r\noptický\r\noptiččin\r\noptička\r\noptičtější\r\noptika\r\noptik\r\noptikův\r\noptimalita\r\noptimalizace\r\noptimalizační\r\noptimalizování\r\noptimalizovaný\r\noptimalizovat\r\noptimalizující\r\noptimálnější\r\noptimální\r\noptimismus\r\noptimista\r\noptimistčin\r\noptimistický\r\noptimističtější\r\noptimistka\r\noptimistův\r\noptimum\r\noptoelektronický\r\noptoelektroničtější\r\noptoelektronika\r\noptogalvanický\r\noptogalvaničtější\r\noptometrista\r\noptometristčin\r\noptometristka\r\noptometristův\r\noptování\r\noptovaný\r\noptovat\r\noptovávání\r\noptovávaný\r\noptovávat\r\nopublikování\r\nopuchání\r\nopuchat\r\nopuchávat\r\nopuchlejší\r\nopuchlina\r\nopuchlý\r\nopuchnout\r\nopuchnutí\r\nopuka\r\nopukový\r\nopulentní\r\nopuncie\r\nopuncovat\r\nopus\r\nopusový\r\nopustit\r\nopuštěnější\r\nopuštění\r\nopuštěnka\r\nopuštěný\r\nopův\r\nopykání\r\nopylení\r\nopylený\r\nopylit\r\nopylovač\r\nopylování\r\nopylovaný\r\nopylovat\r\norace\r\noračka\r\nOráčov\r\noráčovský\r\noráč\r\noráčův\r\noradlo\r\norákulum\r\norální\r\norámovanější\r\norámování\r\norámovaný\r\norámovat\r\norámovávání\r\norámovávaný\r\norámovávat\r\norangutaní\r\norangutan\r\norangutanův\r\noranice\r\noranisko\r\norání\r\noraniště\r\noraný\r\noranžáda\r\noranžista\r\noranžistčin\r\noranžistka\r\noranžistův\r\noranžovější\r\noranžový\r\nOranžský\r\noranž\r\norat\r\noratorium\r\noratorní\r\noratoř\r\norávání\r\norávat\r\nOrava\r\nOravcová\r\nOravcův\r\nOravec\r\nOravsko\r\noravský\r\noraz\r\norazit\r\norazítkování\r\norazítkovaný\r\norazítkovat\r\noražení\r\norážení\r\noražený\r\norážený\r\norážet\r\norba\r\norbital\r\norbitální\r\norbita\r\norbit\r\nordálie\r\nordinace\r\nordinační\r\nordinálnější\r\nordinální\r\nordinární\r\nordinářčin\r\nordinářka\r\nordinář\r\nordinářův\r\nordinérnější\r\nordinérní\r\nordinovanější\r\nordinování\r\nordinovaný\r\nordinovat\r\nordinující\r\nordner\r\nordnerův\r\nordonance\r\nordovický\r\nordovik\r\nOreb\r\norebitý\r\norebský\r\noregano\r\nOregon\r\noregonský\r\norel\r\nOrel\r\norelský\r\norelův\r\nOrest\r\nOrestův\r\norfismus\r\norfista\r\norfistčin\r\norfistický\r\norfistka\r\norfistův\r\norganela\r\norgán\r\norganický\r\norganičtější\r\norganika\r\norganisace\r\norganisační\r\norganismický\r\norganismus\r\norganisování\r\norganisovaný\r\norganisovat\r\norganizace\r\norganizačnější\r\norganizační\r\norganizátorčin\r\norganizátorka\r\norganizátor\r\norganizátorský\r\norganizátorský\r\norganizátorství\r\norganizátorův\r\norganizovanější\r\norganizování\r\norganizovaný\r\norganizovat\r\norganizovatelnější\r\norganizovatelný\r\norganizovávat\r\norganizující\r\norganofosfát\r\norganofosfátový\r\norganogenní\r\norganohalogen\r\norganokovový\r\norganokřemičitý\r\norganoleptický\r\norganoleptičtější\r\norganopolutan\r\norganoterapeutický\r\norgánový\r\norgantýn\r\norgantýnový\r\norgasmus\r\norgastický\r\norgazmus\r\norgiasmus\r\norgie\r\nOrgoníková\r\nOrgoník\r\nOrgoníkův\r\norchestrální\r\norchestr\r\norchestrion\r\norchestrionový\r\norchestřiště\r\norchidea\r\norchidejový\r\norchidej\r\norchideový\r\norchil\r\norientace\r\norientačnější\r\norientační\r\norientálcův\r\norientálčin\r\norientálec\r\norientalismus\r\norientalista\r\norientalistčin\r\norientalistický\r\norientalistika\r\norientalistka\r\norientalistův\r\norientalizující\r\norientálka\r\norientálnější\r\norientální\r\norientátor\r\norientátorův\r\norient\r\norientovanější\r\norientování\r\norientovaný\r\norientovat\r\norientovávání\r\norientovávaný\r\norientovávat\r\norientující\r\noriginál\r\noriginalista\r\noriginalistčin\r\noriginalistka\r\noriginalistův\r\noriginalita\r\noriginálnější\r\noriginální\r\norigo\r\nOrion\r\nOrionův\r\norkán\r\nORL\r\nOrleans\r\norleánský\r\norlice\r\norlický\r\norlíček\r\nOrlíček\r\norličin\r\norlička\r\nOrlíčková\r\nOrlíčkův\r\norlíčkův\r\norlík\r\norlíkův\r\norlí\r\norloj\r\norlosup\r\norlosupův\r\nOrlová\r\norlovcův\r\norlovec\r\nOrlov\r\norlovna\r\norlovský\r\nOrlův\r\norlův\r\nornamentalismus\r\nornamentalistický\r\nornamentalističin\r\nornamentalistika\r\nornamentální\r\nornament\r\nornamentika\r\nornát\r\nornice\r\nornitologický\r\nornitologie\r\nornitolog\r\nornitologův\r\nornitoložčin\r\nornitoložka\r\norný\r\norobincový\r\norobinec\r\norodování\r\norodovat\r\norodovávání\r\norodovávat\r\norodovnice\r\norogenitální\r\norograf\r\norografický\r\norosenější\r\norosení\r\norosený\r\norosit\r\norosovat\r\noroubovat\r\norovnání\r\norovnaný\r\norovnat\r\norovnávání\r\norovnávat\r\norsej\r\nortel\r\nOrtenová\r\nOrten\r\nOrtenův\r\nortéza\r\northoarseničnan\r\northofenylfenolát\r\northofenylfenol\r\northofosforečnan\r\northokřemičitan\r\nortoamfibolit\r\nortoamfibolitový\r\nortoboritan\r\nortocerový\r\nortodoncie\r\nortodontický\r\nortodontie\r\nortodontista\r\nortodontistčin\r\nortodontistka\r\nortodontistův\r\nortodoxie\r\nortodoxnější\r\nortodoxní\r\nortodroma\r\nortoepický\r\nortoepie\r\nortofonický\r\nortofonie\r\nortofotosnímek\r\nortogonalita\r\nortogonalizace\r\nortogonalizační\r\nortogonalizovanější\r\nortogonalizovaný\r\nortogonalizovat\r\nortogonálnější\r\nortogonální\r\nortografický\r\nortografie\r\nortokeratologie\r\nortoklas\r\nortoklasový\r\nortokomplementární\r\nortokřemičitan\r\nortokvarcit\r\nortokvarcitový\r\nortomodulární\r\nortonormální\r\nortopedický\r\nortopedičtější\r\nortopedie\r\nortoped\r\nortopéd\r\nortopedův\r\nortopédův\r\nortorula\r\nortorulový\r\nOrtová\r\nOrt\r\nOrtův\r\norvanější\r\norvaní\r\norvání\r\norvaný\r\norvat\r\norvávání\r\norvávaný\r\norvávat\r\norwellismus\r\norwellovský\r\nOrwell\r\nOrwellův\r\nořechovější\r\nořechovka\r\nOřechov\r\nořechovský\r\nořechový\r\nořech\r\nořechův\r\nořešák\r\nořešina\r\nořeší\r\nořešník\r\nořezanější\r\nořezání\r\nořezaný\r\nořezat\r\nořezávací\r\nořezávačka\r\nořezávač\r\nořezávající\r\nořezávanější\r\nořezávání\r\nořezávaný\r\nořezávat\r\nořezávátko\r\nořez\r\nořezový\r\noříšek\r\noříškovější\r\noříškový\r\noříškův\r\nořízka\r\noříznout\r\noříznutější\r\noříznutí\r\noříznutý\r\noříznutý\r\noř\r\nořův\r\nOS\r\nósacký\r\nosada\r\nosadit\r\nosaditelný\r\nosádka\r\nosadnice\r\nosadnický\r\nosadničin\r\nosadník\r\nosadníkův\r\nosadní\r\nosahání\r\nosahaný\r\nosahat\r\nosahávající\r\nosahávání\r\nosahávaný\r\nosahávat\r\nÓsaka\r\nosamělejší\r\nosamělý\r\nosamění\r\nosamět\r\nosamocena\r\nosamocenější\r\nosamoceni\r\nosamocení\r\nosamocen\r\nosamoceno\r\nosamocenu\r\nosamoceny\r\nosamocený\r\nosamostatnění\r\nosamostatněný\r\nosamostatnit\r\nosamostatňování\r\nosamostatňovaný\r\nosamostatňovat\r\nosamostatňovávat\r\nosamostatňující\r\nosamotě\r\nosázenější\r\nosazení\r\nosázení\r\nosazenstvo\r\nosazený\r\nosázený\r\nosázet\r\nosazovací\r\nosazovanější\r\nosazování\r\nosazovaný\r\nosazovat\r\nosa\r\noscilace\r\noscilační\r\noscilátor\r\noscilograf\r\nosciloskop\r\noscilování\r\noscilovaný\r\noscilovat\r\noscilovávání\r\noscilovávat\r\noscilující\r\nOsčádalová\r\nOsčádal\r\nOsčádalův\r\nosečenský\r\nOsečná\r\nOsečnice\r\nosečnický\r\nosedět\r\nosedlání\r\nosedlaný\r\nosedlat\r\nosedlávání\r\nosedlávaný\r\nosedlávat\r\noseji\r\nOsek\r\nOsěk\r\nosekanější\r\nosekání\r\nosekaný\r\nosekat\r\nosekávačka\r\nosekávání\r\nosekávaný\r\nosekávat\r\nosel\r\nosel\r\noselův\r\nosemenění\r\nosemeněný\r\nosemenit\r\nosení\r\nosetější\r\nosetí\r\noset\r\nosetý\r\nosetý\r\nosévací\r\nosévání\r\nosévaný\r\nosévat\r\nosev\r\nosevní\r\noschlejší\r\noschlý\r\noschnl\r\noschnout\r\noschnutí\r\nOSI\r\nOsička\r\nosička\r\nOsíčko\r\nOsičková\r\nosičkový\r\nOsičkův\r\nosídlencův\r\nosídlenecký\r\nosídlenec\r\nosídlenější\r\nosídlení\r\nosídlený\r\nosídlit\r\nosidlo\r\nosidlovací\r\nosídlovací\r\nosidlování\r\nosídlování\r\nosidlovaný\r\nosídlovaný\r\nosidlovat\r\nosídlovat\r\nosidlovávání\r\nosídlovávání\r\nosidlovávaný\r\nosídlovávaný\r\nosidlovávat\r\nosídlovávat\r\nosídlující\r\nosifikace\r\nosifikační\r\nosifikování\r\nosifikovaný\r\nosifikovat\r\nosifikovávání\r\nosifikovávaný\r\nosifikovávat\r\nosifikující\r\nOsifová\r\nOsif\r\nOsifův\r\nosika\r\nosikový\r\nosil\r\nosina\r\nosinek\r\nosinka\r\nosinkocementový\r\nosinkový\r\nosiřelejší\r\nosiřelý\r\nosiření\r\nosiřet\r\nosít\r\nosívání\r\nosívaný\r\nosívat\r\nosivo\r\noskalpování\r\noskalpovaný\r\noskalpovat\r\nOskar\r\nOskarův\r\nOskava\r\noskenování\r\noskenovaný\r\noskenovat\r\noskičtina\r\noskulační\r\noslabenější\r\noslabení\r\noslabený\r\noslabit\r\noslabování\r\noslabovaný\r\noslabovat\r\noslabující\r\nosladit\r\noslátko\r\noslavanský\r\nOslavany\r\noslava\r\noslavencův\r\noslavenčin\r\noslavenec\r\noslavenější\r\noslavení\r\noslavenka\r\noslavenkyně\r\noslavenkynin\r\noslavený\r\nOslavice\r\nOslavička\r\noslavit\r\noslavnější\r\noslavný\r\noslavovanější\r\noslavování\r\noslavovaný\r\noslavovat\r\noslavující\r\noslazení\r\noslazený\r\noslazování\r\noslazovaný\r\noslazovat\r\noslepenější\r\noslepení\r\noslepený\r\noslepit\r\noslepivý\r\nosleplejší\r\nosleplý\r\noslepnout\r\noslepnutí\r\noslepování\r\noslepovaný\r\noslepovat\r\noslepující\r\noslice\r\noslíček\r\nosličin\r\noslíčkův\r\noslík\r\noslíkův\r\noslintání\r\noslintaný\r\noslintat\r\noslintávání\r\noslintávaný\r\noslintávat\r\noslí\r\noslizlejší\r\noslizlý\r\nosliznout\r\noslnění\r\noslněný\r\noslnit\r\noslnivější\r\noslnivý\r\noslňování\r\noslňovaný\r\noslňovat\r\noslňující\r\nOslo\r\noslovenější\r\noslovení\r\noslovený\r\nOslovičová\r\nOslovič\r\nOslovičův\r\noslovit\r\noslovitelnější\r\noslovitelný\r\noslovovanější\r\noslovování\r\noslovovaný\r\noslovovat\r\noslovující\r\noslunění\r\noslův\r\noslyšenější\r\noslyšení\r\noslyšený\r\noslyšet\r\noslyšitelný\r\noslzlejší\r\nosmaččin\r\nosmačka\r\nosmačtyřicetihodinový\r\nosmačtyřicetisekundový\r\nosmadvacetikilometrový\r\nosmadvacetimilionový\r\nosmadvacetiminutový\r\nosmadvacetistránkový\r\nosmadvacetistupňový\r\nosmahlejší\r\nosmahlý\r\nosmahnout\r\nosmahnutější\r\nosmahnutí\r\nosmahnutý\r\nosmahnutý\r\nosmák\r\nosmákův\r\nOsmanský\r\nosmanský\r\nosmapadesátiminutový\r\nosmasedmdesátimetrový\r\nosmatřicetibodový\r\nosmatřicetihodinový\r\nosmatřicetimilionový\r\nosmatřicetimiliónový\r\nosmatřicetiminutový\r\nosma\r\nosmažení\r\nosmažený\r\nosmažit\r\nosmdesátero\r\nosmdesateronásobný\r\nosmdesátery\r\nosmdesáterý\r\nosmdesaterý\r\nosmdesát\r\nosmdesáticentimetrový\r\nosmdesátice\r\nosmdesátihaléřový\r\nosmdesátihektarový\r\nosmdesátikilogramový\r\nosmdesátikilometrový\r\nosmdesátikilový\r\nosmdesátikorunový\r\nosmdesátiletý\r\nosmdesátilitrový\r\nosmdesátimetrový\r\nosmdesátimiliardový\r\nosmdesátimilionový\r\nosmdesátimiliónový\r\nosmdesátiminutový\r\nosmdesátinásobný\r\nosmdesátina\r\nosmdesátistránkový\r\nosmdesátitisícovka\r\nosmdesátitisícový\r\nosmdesátiznakový\r\nosmdesátka\r\nosmdesátkrát\r\nosmdesátnice\r\nosmdesátničin\r\nosmdesátník\r\nosmdesátníkův\r\nosmdesátý\r\nosmělenější\r\nosmělení\r\nosmělený\r\nosmělit\r\nosmělování\r\nosmělovaný\r\nosmělovat\r\nosmělovávání\r\nosmělovávaný\r\nosmělovávat\r\nosmerák\r\nosmerákův\r\nosmerče\r\nosmerka\r\nosmerkový\r\nosmero\r\nosmeronásobný\r\nosmery\r\nosmerý\r\nosm\r\nosmibajtový\r\nosmibarevný\r\nosmibitový\r\nosmibodový\r\nosmibodový\r\nosmiboký\r\nosmibrankový\r\nosmicentimetrový\r\nosmice\r\nosmiciferný\r\nosmičelý\r\nosmičitý\r\nosmička\r\nosmičkový\r\nosmičlenný\r\nosmidenní\r\nosmidesetibytový\r\nosmifinalista\r\nosmifinalistčin\r\nosmifinalistka\r\nosmifinalistův\r\nosmihaléřový\r\nosmihektarový\r\nosmihlavý\r\nosmihodinovka\r\nosmihodinový\r\nosmikanálový\r\nosmikilogramový\r\nosmikilometrový\r\nosmikilometrový\r\nosmikilový\r\nosmikolový\r\nosmiletka\r\nosmiletý\r\nosmilitrový\r\nosmilůžkový\r\nosmiměsíční\r\nosmimetrový\r\nosmimetrový\r\nosmimiliardový\r\nosmimilimetrový\r\nosmimilionový\r\nosmimiliónový\r\nosmiminutový\r\nosmimístný\r\nosmimocný\r\nosminásobek\r\nosminásobný\r\nosmina\r\nosminka\r\nosminkový\r\nosminový\r\nosmiový\r\nosmipatrový\r\nosmipísmenný\r\nosmiposchoďový\r\nosmirámkový\r\nosmiroční\r\nosmirolový\r\nosmiřádkový\r\nosmisáhový\r\nosmisedadlový\r\nosmisekundový\r\nosmisemestrový\r\nosmisetčlenný\r\nosmisetgramový\r\nosmisetkilometrový\r\nosmisetkorunový\r\nosmisetletý\r\nosmisetmetrový\r\nosmisetmilionový\r\nosmisetmiliónový\r\nosmisetstránkový\r\nosmisettisícový\r\nosmistavový\r\nosmistěn\r\nosmistovka\r\nosmistránkový\r\nosmistránkový\r\nosmistrunný\r\nosmistupňový\r\nosmistý\r\nosmisvazkový\r\nosmitisící\r\nosmitisícovka\r\nosmitisícový\r\nosmitřídní\r\nosmitunový\r\nosmitýdenní\r\nosmitý\r\nosmiúhelník\r\nosmiúhelníkový\r\nosmiúhlý\r\nosmium\r\nosmiválcový\r\nosmiválec\r\nosmiverší\r\nosmiveslice\r\nosmivteřinový\r\nosmiwattový\r\nosmizámkový\r\nosmiznakový\r\nosmkrát\r\nosmkráte\r\nosmnáctero\r\nosmnácteronásobný\r\nosmnáctery\r\nosmnácterý\r\nosmnáct\r\nosmnáctibodový\r\nosmnáctibodový\r\nosmnáctice\r\nosmnáctičlenný\r\nosmnáctihlavý\r\nosmnáctihodinový\r\nosmnáctikilometrový\r\nosmnáctiletý\r\nosmnáctimetrový\r\nosmnáctimiliardový\r\nosmnáctimilionový\r\nosmnáctimiliónový\r\nosmnáctiminutový\r\nosmnáctinásobný\r\nosmnáctina\r\nosmnáctipatrový\r\nosmnáctistránkový\r\nosmnáctistupňový\r\nosmnáctitisícový\r\nosmnáctitunový\r\nosmnáctka\r\nosmnáctkový\r\nosmnáctkrát\r\nosmnáctkráte\r\nosmnáctý\r\nosmotický\r\nosmóza\r\nosmý\r\nOSN\r\nosněženější\r\nosněžení\r\nosněžený\r\nosněžit\r\nosnímkování\r\nosnímkovaný\r\nosnímkovat\r\nosnímkovávání\r\nosnímkovávaný\r\nosnímkovávat\r\nosnování\r\nosnovaný\r\nosnovat\r\nosnova\r\nosnovní\r\nosnující\r\nosobák\r\nosoba\r\nosobička\r\nosobitější\r\nosobitý\r\nOsoblaha\r\nOsoblažsko\r\nosoblažský\r\nosobnější\r\nosobní\r\nosobnostní\r\nosobování\r\nosobovaný\r\nosobovat\r\nosobový\r\nosobující\r\nosočení\r\nosočený\r\nosočit\r\nosočování\r\nosočovaný\r\nosočovat\r\nosočující\r\nosolenější\r\nosolení\r\nosolený\r\nosolit\r\nosopení\r\nosopit\r\nosopování\r\nosopovat\r\nosoušení\r\nosoušený\r\nosoušet\r\nOsové\r\nOsov\r\nosovský\r\nosový\r\nospalcův\r\nospalec\r\nospalejší\r\nospalek\r\nospalka\r\nospalý\r\nospravedlnění\r\nospravedlněný\r\nospravedlnit\r\nospravedlnitelnější\r\nospravedlnitelný\r\nospravedlňování\r\nospravedlňovaný\r\nospravedlňovat\r\nospravedlňující\r\nosprchnout\r\nosprchnutí\r\nosprchování\r\nosprchovaný\r\nosprchovat\r\nosprchovávání\r\nosprchovávaný\r\nosprchovávat\r\nosrat\r\nosrstěnější\r\nosrstění\r\nosrstěný\r\nostálka\r\nOstašov\r\nostašovský\r\nostatek\r\nostatkový\r\nostatní\r\nOstende\r\nostění\r\nosten\r\nostentativnější\r\nostentativní\r\nosteologický\r\nosteomyelitida\r\nosteopatie\r\nosteoporóza\r\nosterský\r\nostiarie\r\nostnatý\r\nostnitý\r\nostnoploutvý\r\nOstopovice\r\nostopovický\r\nostošest\r\nostouzeččin\r\nostouzečka\r\nostouzeč\r\nostouzečův\r\nostouzející\r\nostouzení\r\nostouzený\r\nostouzet\r\nostraha\r\nostrakismus\r\nostrakisování\r\nostrakisovaný\r\nostrakisovat\r\nostrakistický\r\nostrakizování\r\nostrakizovaný\r\nostrakizovat\r\nostrakizující\r\nOstravančin\r\nOstravanka\r\nOstravan\r\nOstravanův\r\nOstrava\r\nOstravice\r\nostravický\r\nOstravsko\r\nostravský\r\nostravský\r\nOstrá\r\nostražitější\r\nostražitý\r\nOstrčilová\r\nOstrčil\r\nOstrčilův\r\nostrhávací\r\nostrobřichý\r\nostrogótština\r\nostroh\r\nostrohranný\r\nostroměřský\r\nOstroměř\r\nostropestřcův\r\nostropestřec\r\nostroretka\r\nostrostřelba\r\nostrostřelcův\r\nostrostřelec\r\nostrouhanější\r\nostrouhání\r\nostrouhaný\r\nostrouhat\r\nostrouhávanější\r\nostrouhávání\r\nostrouhávaný\r\nostrouhávat\r\nostroúhelník\r\nostroúhlejší\r\nostroúhlý\r\nostroun\r\nOstrovačice\r\nostrovačický\r\nostrovančin\r\nostrovanka\r\nostrovan\r\nostrovanův\r\nostrovecký\r\nOstrovec\r\nostrovid\r\nostrovidův\r\nOstrov\r\nostrov\r\nostrovnější\r\nostrovní\r\nostrovní\r\nostrovský\r\nostrovtip\r\nostrovtipnější\r\nostrozraký\r\nostrožka\r\nostrožský\r\nostruha\r\nostruhový\r\nostrůvek\r\nostrůvkovitý\r\nostrůvkový\r\nostruženský\r\nostružina\r\nostružiní\r\nostružiník\r\nostružiníkový\r\nostružinový\r\nOstružná\r\nOstružno\r\nostrý\r\nostřejší\r\nostřelení\r\nostřelený\r\nostřelit\r\nostřelovač\r\nostřelovačův\r\nostřelování\r\nostřelovaný\r\nostřelovat\r\nostřelovávání\r\nostřelovávaný\r\nostřelovávat\r\nostřelující\r\nostření\r\nostřený\r\nOstřetice\r\nostřetický\r\nOstřetín\r\nostřetínský\r\nostří\r\nostřice\r\nostřicový\r\nostřička\r\nostřič\r\nostřihání\r\nostříhání\r\nostřihaný\r\nostříhaný\r\nostřihat\r\nostříhat\r\nostřihávání\r\nostříhávání\r\nostřihávaný\r\nostříhávaný\r\nostřihávat\r\nostříhávat\r\nostřihnout\r\nOstřihom\r\nOstřihom\r\nostřihomský\r\nostřihovací\r\nostřihovadlo\r\nostřihování\r\nostřihovaný\r\nostřihovat\r\nostříkání\r\nostříkaný\r\nostříkat\r\nostříkávání\r\nostříkávaný\r\nostříkávat\r\nostříknutí\r\nostřílenější\r\nostřílení\r\nostřílený\r\nostřílet\r\nostřina\r\nostřírna\r\nostřit\r\nostřivo\r\nostřižek\r\nostříží\r\nostříž\r\nostřížův\r\nostuda\r\nostudnější\r\nostudný\r\nostýchání\r\nostýchat\r\nostýchavcův\r\nostýchavec\r\nostýchavější\r\nostýchavý\r\nostych\r\nosůbka\r\nosud\r\nosudí\r\nosudnější\r\nosudný\r\nosudovější\r\nosudový\r\nosušení\r\nosušený\r\nosušit\r\nosuška\r\nosušování\r\nosušovaný\r\nosušovat\r\nOsvaldová\r\nOsvald\r\nOsvaldův\r\nosvalení\r\nosvalený\r\nosvěcování\r\nosvěcovaný\r\nosvěcovat\r\nosvědčenější\r\nosvědčení\r\nosvědčený\r\nosvědčit\r\nosvědčme\r\nosvědč\r\nosvědčování\r\nosvědčovaný\r\nosvědčovat\r\nosvědčte\r\nosvědčující\r\nosvětářčin\r\nosvětářka\r\nosvěta\r\nOsvětim\r\nosvětimský\r\nosvětí\r\nosvětlenější\r\nosvětlení\r\nosvětlený\r\nosvětlit\r\nosvětlitelnější\r\nosvětlitelný\r\nosvětlovací\r\nosvětlovaččin\r\nosvětlovačka\r\nosvětlovač\r\nosvětlovačův\r\nosvětlovadlo\r\nosvětlování\r\nosvětlovaný\r\nosvětlovat\r\nosvětlovávání\r\nosvětlovávaný\r\nosvětlovávat\r\nosvětlující\r\nosvětovější\r\nosvětový\r\nosvěžení\r\nosvěžený\r\nosvěžit\r\nosvěžování\r\nosvěžovaný\r\nosvěžovat\r\nosvěžovna\r\nosvěžující\r\nosvícencův\r\nosvícenec\r\nosvícenečtější\r\nosvícenější\r\nosvícení\r\nosvícenský\r\nosvícenství\r\nosvícenštější\r\nosvícený\r\nosvit\r\nosvítit\r\nosvitnout\r\nosvitnutí\r\nosvitnutý\r\nosvitový\r\nosvobodit\r\nosvoboditelčin\r\nosvoboditelka\r\nosvoboditelnější\r\nosvoboditelný\r\nosvoboditelský\r\nosvoboditel\r\nosvoboditelův\r\nosvobodivější\r\nosvobodivý\r\nosvobozenecký\r\nosvobozenečtější\r\nosvobozenější\r\nosvobození\r\nosvobozenský\r\nosvobozený\r\nosvobozovací\r\nosvobozování\r\nosvobozovaný\r\nosvobozovat\r\nosvobozující\r\nosvojencův\r\nosvojenec\r\nosvojení\r\nosvojený\r\nosvojit\r\nosvojitelnější\r\nosvojitelný\r\nosvojitel\r\nosvojitelův\r\nosvojovací\r\nosvojování\r\nosvojovaný\r\nosvojovat\r\nosvojující\r\nOsvračín\r\nosvračínský\r\nOswald\r\nOswaldův\r\nosychající\r\nosychání\r\nosychat\r\nosýchat\r\nosypající\r\nosypanější\r\nosypání\r\nosýpání\r\nosypaný\r\nosýpaný\r\nosypat\r\nosýpat\r\nosypávající\r\nosypávanější\r\nosypávání\r\nosypávaný\r\nosypávat\r\nosypka\r\nošacenější\r\nošacení\r\nošacený\r\nošálenější\r\nošálení\r\nošálený\r\nošálit\r\nošatit\r\nošatka\r\nOšelín\r\nošelínský\r\nošemetnější\r\nošemetník\r\nošemetníkův\r\nošemetný\r\nošetřenější\r\nošetření\r\nošetřený\r\nošetřit\r\nošetřitelný\r\nošetřovací\r\nošetřování\r\nošetřovaný\r\nošetřovat\r\nošetřovatelčin\r\nošetřovatelka\r\nošetřovatelský\r\nošetřovatelství\r\nošetřovatel\r\nošetřovatelův\r\nošetřovávat\r\nošetřovna\r\nošetřující\r\nošettený\r\nošidit\r\nošidnější\r\nošidný\r\nošít\r\nošití\r\nošívací\r\nošívání\r\nošívaný\r\nošívat\r\nošizenější\r\nošizení\r\nošizený\r\nošklíbání\r\nošklíbat\r\nošklivcův\r\nošklivec\r\nošklivější\r\nošklivení\r\nošklivění\r\nošklivený\r\nošklivět\r\nošklivit\r\nošklivý\r\noškrabající\r\noškrábající\r\noškrabanější\r\noškrábanější\r\noškrabání\r\noškrábání\r\noškrabaný\r\noškrábaný\r\noškrabat\r\noškrábat\r\noškrabávání\r\noškrabávaný\r\noškrabávat\r\noškrabek\r\noškrábnout\r\noškrábnutější\r\noškrábnutí\r\noškrábnutý\r\noškrábnutý\r\noškrabování\r\noškrabovaný\r\noškrabovat\r\noškrobit\r\noškubanější\r\noškubání\r\noškubaný\r\noškubat\r\noškubávání\r\noškubávaný\r\noškubávat\r\noškubu\r\nošlapaný\r\nošlapat\r\nošlapek\r\nošlehání\r\nošlehaný\r\nošlehat\r\nošlehávání\r\nošlehávaný\r\nošlehávat\r\nošlehovat\r\nOšlejšek\r\nOšlejšková\r\nOšlejškův\r\nošoupanější\r\nošoupaný\r\nošoupat\r\nošoust\r\nošoustův\r\nošpendlení\r\nošpendlený\r\nošpendlit\r\nošpendlovat\r\nOšťádalová\r\nOšťádal\r\nOšťádalův\r\noštěpařčin\r\noštěpářčin\r\noštěpařka\r\noštěpářka\r\noštěpařský\r\noštěpař\r\noštěpář\r\noštěpařův\r\noštěpářův\r\noštěpek\r\noštěp\r\noštipování\r\noštipovaný\r\noštipovat\r\nošukání\r\nošukaný\r\nošukat\r\nošulit\r\nošumělejší\r\nošumělý\r\nošuntělejší\r\nošuntělý\r\nošvindlování\r\nošvindlovaný\r\nošvindlovat\r\notáčecí\r\notáčející\r\notáčení\r\notáčený\r\notáčet\r\notáčivější\r\notáčivý\r\notáčivý\r\notáčka\r\notáčkoměr\r\notáčkový\r\nOtáhalová\r\nOtáhal\r\nOtáhalův\r\notakárek\r\nOtakar\r\nOtakarův\r\notálející\r\notálení\r\notálet\r\notapetování\r\notapetovaný\r\notapetovat\r\notapetovávání\r\notapetovávaný\r\notapetovávat\r\nOtaslavice\r\notaslavický\r\nOtava\r\notava\r\notavení\r\notavený\r\notavit\r\nOtavová\r\nOtavův\r\notázání\r\notázaný\r\notázat\r\notázka\r\notazník\r\notázník\r\notazníkový\r\notáži\r\notcové\r\notcovrah\r\notcovrahův\r\notcovražda\r\notcovražedný\r\notcovský\r\notcovství\r\notcovštější\r\notcův\r\nOtčenášek\r\nOtčenášková\r\nOtčenáškův\r\nOtčenáš\r\notčenáš\r\notčím\r\notčímův\r\notčina\r\notecko\r\noteckův\r\notéct\r\notec\r\notěhotnění\r\notěhotnět\r\notékající\r\notékání\r\notékat\r\noteklejší\r\noteklý\r\notelení\r\notelený\r\notelit\r\notep\r\notépka\r\noteplenější\r\noteplení\r\noteplený\r\noteplit\r\noteplovací\r\noteplování\r\noteplovaný\r\noteplovat\r\noteplovávání\r\noteplovávaný\r\noteplovávat\r\noteplující\r\notěr\r\notěrný\r\notěrový\r\notěruvzdorný\r\notesanější\r\nOtesánek\r\notesání\r\nOtesánkův\r\notesaný\r\notesat\r\notesávání\r\notesávaný\r\notesávat\r\notestovanější\r\notestování\r\notestovaný\r\notestovat\r\notestovávání\r\notestovávaný\r\notestovávat\r\notevírací\r\notevírající\r\notevíranější\r\notevírání\r\notevíraný\r\notevíratelný\r\notevírat\r\nOtevřelová\r\nOtevřel\r\nOtevřelův\r\notevřenější\r\notevření\r\notevřený\r\notevřít\r\notevřivší\r\notextování\r\notextovaný\r\notextovat\r\notextovávání\r\notextovávaný\r\notextovávat\r\notexturovaný\r\notěž\r\nOtík\r\nOtíkův\r\nOtín\r\nOtinoves\r\notinoveský\r\notínský\r\nOtipka\r\nOtipková\r\nOtipkův\r\notipnout\r\notipovat\r\notíraní\r\notírání\r\notíraný\r\notírat\r\notisk\r\notisknout\r\notisknutí\r\notisknutý\r\notiskovací\r\notiskování\r\notiskovaný\r\notiskovat\r\notiskový\r\notištění\r\notištěný\r\notitulkování\r\notitulkovaný\r\notitulkovat\r\notitulkovávání\r\notitulkovávaný\r\notitulkovávat\r\notitulovávání\r\notitulovávaný\r\notitulovávat\r\nOtka\r\notlačenina\r\notlačení\r\notlačený\r\notlak\r\notlapat\r\notlapkání\r\notlapkaný\r\notlapkat\r\notlouct\r\notloukanější\r\notloukání\r\notloukaný\r\notloukat\r\notloukávanější\r\notloukávání\r\notloukávaný\r\notloukávat\r\notlučenější\r\notlučení\r\notlučený\r\nOtmarová\r\nOtmarov\r\notmarovský\r\nOtmar\r\nOtmarův\r\notočení\r\notočený\r\notočit\r\notočka\r\notočný\r\notok\r\notoman\r\notomanský\r\nOtomar\r\nOtomarův\r\notonský\r\notop\r\notopný\r\notopový\r\nOto\r\notorinolaryngologický\r\notorinolaryngologie\r\notorinolaryngolog\r\notorinolaryngologův\r\notorinolaryngoložčin\r\notorinolaryngoložka\r\nOtovice\r\notovický\r\nOtov\r\notovský\r\nOtradovský\r\notrapa\r\notrapův\r\notrava\r\notrávenější\r\notrávení\r\notrávený\r\notrávit\r\notravnější\r\notravný\r\notravování\r\notravovaný\r\notravovat\r\notravující\r\notra\r\notrhající\r\notrhancův\r\notrhanec\r\notrhanější\r\notrhání\r\notrhaný\r\notrhat\r\notrhávající\r\notrhávanější\r\notrhávání\r\notrhávaný\r\notrhávat\r\notrhnout\r\notrhnutější\r\notrhnutí\r\notrhnutý\r\notrkanější\r\notrkání\r\notrkaný\r\notrkat\r\notrkávání\r\notrkávaný\r\notrkávat\r\notrlejší\r\notrlý\r\notrnout\r\notrnutí\r\notrnutý\r\notrocký\r\notroctví\r\notročení\r\notročení\r\notročený\r\notročina\r\nOtročiněves\r\notročiněveský\r\nOtročín\r\notročínský\r\notročit\r\notročtější\r\notrokářský\r\notrokářství\r\notrokář\r\notrokářův\r\nOtrokovice\r\notrokovický\r\notrok\r\notrokův\r\notrokyně\r\notrokynin\r\nOtruba\r\notruba\r\nOtrubová\r\notrubový\r\nOtrub\r\nOtrubův\r\notrušík\r\notryskání\r\notryskaný\r\notryskat\r\notryskávání\r\notryskávaný\r\notryskávat\r\notržení\r\notřásající\r\notřásání\r\notřásaný\r\notřásat\r\notřásávání\r\notřásávat\r\notřásl\r\notřást\r\notřelejší\r\notřelý\r\notřenější\r\notření\r\notřený\r\notřepanější\r\notřepání\r\notřepaný\r\notřepat\r\notřepávání\r\notřepávaný\r\notřepávat\r\notřep\r\notřesenější\r\notřesení\r\notřesen\r\notřesený\r\notřes\r\notřesitelnější\r\notřesitelný\r\notřesnější\r\notřesnější\r\notřesný\r\notřesový\r\notřesu\r\notřískání\r\notřískaný\r\notřískat\r\notřít\r\nOtta\r\nOttawa\r\nottawský\r\nOtto\r\nOttová\r\nOttův\r\noťukání\r\noťukaný\r\noťukat\r\noťukávání\r\noťukávaný\r\noťukávat\r\noťuknout\r\noťuknutí\r\noťuknutý\r\notupělejší\r\notupělý\r\notupení\r\notupění\r\notupený\r\notupěný\r\notupět\r\notupit\r\notupování\r\notupovaný\r\notupovat\r\notupující\r\nOtův\r\notužení\r\notužený\r\notužilcův\r\notužilec\r\notužilejší\r\notužilý\r\notužit\r\notužovací\r\notužování\r\notužovaný\r\notužovat\r\notvírací\r\notvírač\r\notvíračův\r\notvírající\r\notvírák\r\notvíranější\r\notvírání\r\notvíraný\r\notvíratelnější\r\notvíratelný\r\notvírat\r\notvírávat\r\notvíravý\r\notvírka\r\notvor\r\notvorový\r\nOtvovice\r\notvovický\r\notvůrek\r\nOtylčin\r\notylejší\r\nOtýlie\r\nOtýliin\r\nOtylka\r\notylý\r\notýpka\r\notýpkový\r\notypování\r\notypovaný\r\notypovat\r\notypovatelný\r\notypovávání\r\nOU\r\nOÚ\r\nOuběnice\r\nouběnický\r\nOubramová\r\nOubram\r\nOubramův\r\noudil\r\noudím\r\noudit\r\nouďme\r\nouď\r\nouďte\r\nouha\r\nOuhrový\r\nouklejka\r\nouklej\r\nOulehla\r\nOulehlová\r\nOulehlův\r\nOulický\r\nOÚNZ\r\nOuřada\r\nouřada\r\nOuřadová\r\nOuřadův\r\nOuředníček\r\nOuředníčková\r\nOuředníčkův\r\nOuředníková\r\nOuředník\r\nOuředníkův\r\nouškama\r\nouško\r\nOutrata\r\nOutratová\r\nOutratův\r\noutsider\r\noutsiderův\r\noutsidrův\r\noutsourcing\r\noutsourcingový\r\nouvertura\r\nOuzký\r\nOV\r\novace\r\novadání\r\novadaný\r\novadat\r\novadávání\r\novadávat\r\novád\r\novádův\r\noválek\r\noválení\r\noválený\r\noválet\r\novál\r\novalita\r\noválnější\r\noválný\r\noválový\r\nování\r\novanout\r\novanutí\r\novanutý\r\novarectomie\r\novar\r\novariální\r\novarium\r\novarový\r\novaření\r\novařený\r\novařit\r\novát\r\novátý\r\novázanější\r\novázání\r\novázaný\r\novázat\r\novázávanější\r\novázávání\r\novázávaný\r\novázávat\r\novazovanější\r\novazování\r\novazovaný\r\novazovat\r\novazující\r\nováži\r\novce\r\novčácký\r\novčáčtější\r\novčák\r\novčákův\r\novčinec\r\novčinka\r\novčín\r\novčí\r\novdovělá\r\novdovělý\r\novdovění\r\novdovět\r\noveččin\r\nOvečka\r\novečka\r\nOvečková\r\nOvečkův\r\nověnčení\r\nověnčený\r\nověnčit\r\nověnčovaný\r\noveral\r\nověřenější\r\nověření\r\nověřený\r\nověřit\r\nověřitelnější\r\nověřitelný\r\nověřovací\r\nověřovanější\r\nověřování\r\nověřovaný\r\nověřovat\r\nověřovatelčin\r\nověřovatelka\r\nověřovatel\r\nověřovatelův\r\nověřovávat\r\nověřující\r\noves\r\nověsit\r\novesný\r\nověšení\r\nověšený\r\nověšování\r\nověšovaný\r\nověšovat\r\nOvidius\r\nOvidiův\r\novíjecí\r\novíjení\r\novíjený\r\novíjet\r\novíjivý\r\novinka\r\novinout\r\novinovačka\r\novinování\r\novinovaný\r\novinovat\r\novinutí\r\novinutý\r\novít\r\novitější\r\novití\r\novit\r\novitý\r\novitý\r\novívanější\r\novívání\r\novívaný\r\novívat\r\novládací\r\novladač\r\novládač\r\novládající\r\novládající\r\novládanější\r\novládání\r\novládaný\r\novladatelnější\r\novládatelnější\r\novladatelný\r\novládatelný\r\novladatel\r\novladatelův\r\novládat\r\novládávání\r\novládávaný\r\novládávat\r\novládnout\r\novládnutější\r\novladnutelnější\r\novládnutelnější\r\novládnutelný\r\novládnutí\r\novládnutý\r\novlažení\r\novlažený\r\novlažit\r\novlhčování\r\novlhčovaný\r\novlhčovat\r\novliňující\r\novlivněnější\r\novlivnění\r\novlivněný\r\novlivnit\r\novlivnitelnější\r\novlivnitelný\r\novlivňovanější\r\novlivňování\r\novlivňovaný\r\novlivňovat\r\novlivňovatel\r\novlivňovatelův\r\novlivňovávat\r\novlivňující\r\novoce\r\novocem\r\novoci\r\novocnářčin\r\novocnářka\r\novocnářský\r\novocnářství\r\novocnářštější\r\novocnář\r\novocnářův\r\novocnější\r\novocný\r\novocyt\r\novogeneze\r\novrstvovací\r\novrstvování\r\novrstvovaný\r\novrstvovat\r\nOVS\r\novsa\r\novse\r\novsech\r\novsem\r\novsíček\r\novsový\r\novsu\r\novsů\r\novsům\r\novsy\r\novšem\r\novšemže\r\novulace\r\novulační\r\novzduší\r\noxaloacetát\r\noxeroxování\r\noxeroxovaný\r\noxeroxovat\r\nOxford\r\noxfordský\r\noxidace\r\noxidační\r\noxidant\r\noxidativnější\r\noxidativní\r\noxidáza\r\noxid\r\noxidický\r\noxidoreduktasa\r\noxidování\r\noxidovaný\r\noxidovat\r\noxidovatelnější\r\noxidovatelný\r\noxidovávání\r\noxidovávat\r\noxidový\r\noxidující\r\noxoglutarát\r\noxokyselina\r\noxosolemi\r\noxosoli\r\noxosolí\r\noxosolích\r\noxosolím\r\noxosůl\r\noxybromid\r\noxygenoterapie\r\noxychlorid\r\noxyjodid\r\noxykarbid\r\noxymóron\r\noxysíroarsenitan\r\noxystearin\r\noxysulfid\r\noxytocin\r\nOybin\r\noybinský\r\noz\r\nozábl\r\nozábnout\r\nozábst\r\nozalidový\r\nozálohování\r\nozálohovaný\r\nozálohovat\r\nozářenější\r\nozáření\r\nozářený\r\nozářit\r\nozařovací\r\nozařování\r\nozařovaný\r\nozařovat\r\nozařovávat\r\nozařující\r\nozbrojencův\r\nozbrojenec\r\nozbrojenější\r\nozbrojení\r\nozbrojený\r\nozbrojit\r\nozbrojovací\r\nozbrojování\r\nozbrojovaný\r\nozbrojovat\r\nozbrojovávání\r\nozbrojovávaný\r\nozbrojovávat\r\nozbrojující\r\nozdoba\r\nozdobenější\r\nozdobenina\r\nozdobení\r\nozdobený\r\nozdobit\r\nozdobnější\r\nozdobnější\r\nozdobný\r\nozdobování\r\nozdobovaný\r\nozdobovat\r\nozdravení\r\nozdravění\r\nozdravený\r\nozdravěný\r\nozdravět\r\nozdravit\r\nozdravný\r\nozdravovací\r\nozdravování\r\nozdravovaný\r\nozdravovat\r\nozdravovna\r\nozdravující\r\nozdůbka\r\nozebu\r\nozelenění\r\nozeleněný\r\nozelenět\r\nozelenit\r\nozeleňovací\r\nozeleňování\r\nozeleňovaný\r\nozeleňovat\r\nozev\r\nozimější\r\nozim\r\nozimka\r\nozimý\r\nozkoušení\r\nozkoušený\r\nozkoušet\r\nozkusení\r\nozkusit\r\nozlacení\r\nozlacený\r\nozlatit\r\noznačenější\r\noznačení\r\noznačený\r\noznačit\r\noznačitelnější\r\noznačitelný\r\noznačkování\r\noznačkovaný\r\noznačkovat\r\noznačkovávání\r\noznačkovávaný\r\noznačkovávat\r\noznačovací\r\noznačovanější\r\noznačování\r\noznačovaný\r\noznačovat\r\noznačovatelčin\r\noznačovatelka\r\noznačovatelský\r\noznačovatel\r\noznačovatelův\r\noznačující\r\noznámenější\r\noznámení\r\noznámený\r\noznámit\r\noznámkování\r\noznámkovaný\r\noznámkovat\r\noznámkovávání\r\noznámkovávaný\r\noznámkovávat\r\noznamovací\r\noznamovač\r\noznamovanější\r\noznamování\r\noznamovaný\r\noznamovat\r\noznamovatelčin\r\noznamovatelka\r\noznamovatelský\r\noznamovatel\r\noznamovatelův\r\noznamovávání\r\noznamovávaný\r\noznamovávat\r\noznamující\r\noznobenina\r\noznobený\r\nozobání\r\nozobaný\r\nozobat\r\nozobávání\r\nozobávaný\r\nozobávat\r\nozokerit\r\nozokeritový\r\nozon\r\nozón\r\nozonizace\r\nozonizátor\r\nozonizovat\r\nozonosféra\r\nozónový\r\nozonový\r\nozpívat\r\nozřejmení\r\nozřejmění\r\nozřejmený\r\nozřejmit\r\nozřejmovat\r\nozřejmující\r\nozřejmujícnější\r\nozubačka\r\nozubec\r\nozubenější\r\nozubení\r\nozubený\r\nozub\r\nozubí\r\nozubnice\r\nozubnicový\r\nozvání\r\nozvat\r\nozvěna\r\nozvěnový\r\nozvláštnění\r\nozvláštněný\r\nozvláštnit\r\nozvláštňování\r\nozvláštňovaný\r\nozvláštňovat\r\nozvláštňovávat\r\nozvláštňující\r\nozvučení\r\nozvučený\r\nozvučit\r\nozvučnice\r\nozvučný\r\nozvučování\r\nozvučovaný\r\nozvučovat\r\nozývající\r\nozývání\r\nozývat\r\nožanka\r\nOžárek\r\nOžárková\r\nOžárkův\r\nožebračení\r\nožebračený\r\nožebračit\r\nožebračovanější\r\nožebračování\r\nožebračovaný\r\nožebračovat\r\nožehavější\r\nožehavý\r\nožehlejší\r\nožehlý\r\nožehnout\r\nožehovací\r\nožehování\r\nožehovaný\r\nožehovat\r\noželení\r\noželený\r\noželet\r\noženění\r\noženěný\r\noženit\r\noženu\r\nOžice\r\nožilý\r\nožírající\r\nožírání\r\nožíraný\r\nožírat\r\nožít\r\nožití\r\nožívající\r\nožívání\r\nožívaný\r\nožívat\r\noživenější\r\noživení\r\noživený\r\noživit\r\noživitelný\r\noživlejší\r\noživlý\r\noživnout\r\noživnutí\r\noživnutý\r\noživovací\r\noživovač\r\noživovačův\r\noživování\r\noživovaný\r\noživovat\r\noživující\r\nožižlat\r\nožižlávat\r\nožrala\r\nožralejší\r\nožralství\r\nožralův\r\nožralý\r\nožranější\r\nožrání\r\nožraný\r\nožrat\r\nožužlání\r\nožužlaný\r\nožužlat\r\nožužlávání\r\nožužlávaný\r\nožužlávat\r\nožvýkání\r\nožvýkaný\r\nožvýkat\r\nožvýkávat\r\nožvykovat\r\nPa\r\npa\r\npá\r\npábení\r\npaběrek\r\npaběrkářčin\r\npaběrkářka\r\npaběrkář\r\npaběrkářův\r\npaběrka\r\npaběrkování\r\npaběrkovaný\r\npaběrkovat\r\npábitelský\r\npábitelství\r\npábitel\r\npábitelův\r\npablb\r\npablbův\r\npablesk\r\npableskující\r\npac\r\nPacáková\r\nPacák\r\nPacákův\r\nPácalová\r\nPácal\r\nPácalův\r\npaci\r\npacička\r\npacientčin\r\npacientka\r\npacient\r\npacientský\r\npacientův\r\npacifický\r\npacifičtější\r\npacifikace\r\nPacifik\r\npacifikovat\r\npacifismus\r\npacifista\r\npacifistčin\r\npacifistický\r\npacifistka\r\npacifistův\r\npacinka\r\npackal\r\npackalův\r\npackard\r\nPackard\r\npacka\r\npacký\r\nPaclíková\r\nPaclík\r\nPaclíkův\r\nPacltová\r\nPaclt\r\nPacltův\r\nPacoldová\r\nPacold\r\nPacoldův\r\nPacov\r\nPacovsko\r\nPacovský\r\npacovský\r\nPačejov\r\npačejovský\r\npáčení\r\npáčený\r\nPačesová\r\nPačes\r\nPačesův\r\npačesy\r\npáčidlo\r\npáčit\r\npáčivý\r\npáčka\r\npáčkový\r\npačok\r\nPAD\r\npadací\r\npadáček\r\npadáčkářský\r\npadáčkář\r\npadáčkářův\r\npadáčkový\r\npadající\r\npadák\r\npadákový\r\npadalka\r\npadání\r\npadanka\r\npadaný\r\npadařovský\r\nPadařův\r\npadat\r\npadávání\r\npadávaný\r\npadávat\r\npadavče\r\npadavka\r\npadavkův\r\npadavý\r\npadělání\r\npadělaný\r\npadělaný\r\npadělatelčin\r\npadělatelka\r\npadělatelský\r\npadělatel\r\npadělatelův\r\npadělat\r\npadělávání\r\npadělávaný\r\npadělávat\r\npadělek\r\npádění\r\npadesátero\r\npadesateronásobný\r\npadesátery\r\npadesáterý\r\npadesát\r\npadesátibodový\r\npadesáticentimetrový\r\npadesátice\r\npadesátidolarový\r\npadesátigramový\r\npadesátihaléřový\r\npadesátihaléř\r\npadesátihalíř\r\npadesátihektarový\r\npadesátihlavý\r\npadesátihodinový\r\npadesátikilogramový\r\npadesátikilometrový\r\npadesátikilový\r\npadesátikoruna\r\npadesátikorunový\r\npadesátikusový\r\npadesátiletý\r\npadesátilibrový\r\npadesátilitrový\r\npadesátimarkový\r\npadesátimetrový\r\npadesátimikrometrový\r\npadesátimiliardový\r\npadesátimilimetrový\r\npadesátimilionový\r\npadesátimiliónový\r\npadesátiminutovka\r\npadesátiminutový\r\npadesátinásobný\r\npadesátina\r\npadesátiprocentní\r\npadesátistránkový\r\npadesátistupňový\r\npadesátitisícovka\r\npadesátitisícový\r\npadesátitunový\r\npadesátivteřinový\r\npadesátka\r\npadesátkrát\r\npadesátnice\r\npadesátničin\r\npadesátníkový\r\npadesátník\r\npadesátníkův\r\npadesátý\r\nPád\r\npád\r\npádící\r\npádit\r\npádivý\r\npadlejší\r\npadlí\r\npádlo\r\npádlování\r\npádlovat\r\npádlový\r\npádlující\r\npadlý\r\npádnější\r\npadnoucí\r\npadnout\r\npadnutí\r\npádný\r\npadostroj\r\npadoucnice\r\npadouch\r\npadouchův\r\nPaďourová\r\npaďour\r\nPaďour\r\npaďourský\r\nPaďourův\r\npaďourův\r\npadoušský\r\npadoušství\r\npádovější\r\npádový\r\npadrť\r\npádský\r\npádu\r\npaduánský\r\nPadův\r\npaf\r\npaging\r\npagingový\r\npaginovat\r\npaginýrka\r\npagoda\r\npahorek\r\npahorkatější\r\npahorkatina\r\npahorkatý\r\npahorkovitější\r\npahorkovitý\r\npahrbek\r\npahýl\r\npahýlovitý\r\npahýlový\r\npáchající\r\npáchání\r\npáchaný\r\npacharán\r\npachatelčin\r\npachatelka\r\npachatelství\r\npachatel\r\npachatelův\r\npáchat\r\npach\r\npáchnoucí\r\npáchnout\r\npáchnutí\r\npacholátko\r\npachole\r\npacholek\r\npacholíček\r\npacholíčkův\r\npacholík\r\npacholkův\r\npachový\r\npachtění\r\npacht\r\npachtící\r\npachtit\r\npachtovné\r\npachtovní\r\npachtýř\r\npachtýřův\r\npachuť\r\nPaintbrush\r\npajasan\r\nPajasová\r\nPajas\r\nPajasův\r\npajdání\r\npajdat\r\npajdavější\r\npajdavý\r\npájecí\r\npáječka\r\npájedlo\r\npájení\r\npájený\r\nPajerová\r\nPajer\r\nPajerův\r\npájet\r\npajetka\r\npájitelný\r\npájka\r\nPajkošová\r\nPajkoš\r\nPajkošův\r\npájkový\r\nPajkrtová\r\nPajkrt\r\nPajkrtův\r\npak\r\npakárna\r\npakatel\r\npakatýlek\r\nPaka\r\npáka\r\npakáž\r\npaket\r\npaketovací\r\npaketování\r\npaketovaný\r\npaketovat\r\npaketový\r\nPákistáncův\r\nPákistánčin\r\nPákistánec\r\nPákistán\r\nPákistánka\r\npákistánský\r\npakli\r\npaklíček\r\npaklíč\r\npakliže\r\npakobylka\r\npakomár\r\npakomárův\r\npakomáří\r\npakoně\r\npakoněm\r\npakoni\r\npakoní\r\npakoních\r\npakoním\r\npakoňovi\r\npakoňů\r\npakoňům\r\npakostnice\r\npakování\r\npakovaný\r\npakovat\r\npákový\r\npakt\r\npaktovat\r\npakulturnější\r\npakůň\r\nPAL\r\nPalacký\r\npalácový\r\npalác\r\npalačinka\r\npalačinkový\r\npaladiový\r\npaládiový\r\npaladium\r\npaládium\r\nPalachová\r\npalachový\r\nPalach\r\nPalachův\r\npalanda\r\nPalánek\r\nPalánková\r\nPalánkův\r\nPalánová\r\nPalán\r\nPalánův\r\nPala\r\nPála\r\nPalasová\r\nPalas\r\nPalasův\r\nPalašová\r\nPalaš\r\nPalašův\r\npalatála\r\npalatalizace\r\npalatálnější\r\npalatální\r\npalatin\r\npalatografický\r\npalatum\r\nPalau\r\npalauský\r\nPálava\r\npálavský\r\npálavý\r\npalba\r\npalcát\r\npalcový\r\npalčák\r\npalčivější\r\npalčivý\r\nPaldusová\r\nPaldus\r\nPaldusův\r\npalebný\r\npalec\r\nPaleček\r\npaleček\r\nPalečková\r\nPalečkův\r\npalečnice\r\nPalek\r\npálenější\r\npálenice\r\nPáleníková\r\nPáleník\r\nPáleníkův\r\npálení\r\npálenka\r\npálený\r\npaleoafrický\r\npaleoasijský\r\npaleoaustralský\r\npaleobazalt\r\npaleobazaltový\r\npaleobotanický\r\npaleobotaniččin\r\npaleobotanička\r\npaleobotanika\r\npaleobotanik\r\npaleobotanikův\r\npaleoekologický\r\npaleoekologie\r\npaleoekolog\r\npaleoekologův\r\npaleoekoložčin\r\npaleoekoložka\r\npaleofytologický\r\npaleofytologie\r\npaleofytolog\r\npaleofytologův\r\npaleofytoložčin\r\npaleofytoložka\r\npaleogenní\r\npaleografie\r\npaleokoryto\r\npaleolit\r\npaleolitický\r\npaleomagnetický\r\npaleontologický\r\npaleontologie\r\npaleontolog\r\npaleontologův\r\npaleontoložčin\r\npaleontoložka\r\npaleoryolit\r\npaleoryolitový\r\npaleotrachyt\r\npaleotrachytový\r\npaleozoologický\r\npaleozoologie\r\npaleozoolog\r\npaleozoologův\r\npaleozooložčin\r\npaleozooložka\r\nPalermo\r\npalermský\r\nPalestina\r\npalestinský\r\npaleta\r\npaletizace\r\npaletka\r\npaleto\r\npaletový\r\npalice\r\npálící\r\npálicí\r\npalicovitý\r\npaličácký\r\npaličák\r\npaličákův\r\npaličatější\r\npaličatý\r\nPalička\r\npalička\r\npaličkovací\r\npaličkování\r\npaličkovaný\r\npaličkovat\r\nPaličková\r\npaličkovcův\r\npaličkovec\r\npaličkový\r\nPaličkův\r\npaličský\r\npaličštější\r\npalič\r\npaličův\r\npalindrom\r\npalírna\r\npalisáda\r\npalisádový\r\npalisandrový\r\npalist\r\npálit\r\nPalivcová\r\nPalivcův\r\nPalivec\r\npálivější\r\npalivoenergetický\r\npalivoměr\r\npalivo\r\npalivový\r\npálivý\r\nPálka\r\npálkařčin\r\npálkařka\r\npálkař\r\npálkařův\r\npálka\r\npálkovač\r\npálkovačův\r\npálkování\r\npálkovaný\r\npálkovat\r\nPalková\r\nPálková\r\npálkový\r\nPalkův\r\nPálkův\r\npalladiový\r\npalladium\r\nPalla\r\nPallová\r\nPallův\r\npalmáre\r\npalma\r\npalmička\r\npalmitový\r\npalmojádrový\r\nPalmovka\r\npalmovka\r\npalmový\r\npalný\r\nPalonín\r\npalonínský\r\npalouček\r\npalouk\r\nPaloušová\r\nPalouš\r\nPaloušův\r\nPalová\r\nPálová\r\nPálovice\r\npálovický\r\npaluba\r\npalubka\r\npalubkový\r\npalubní\r\npalubovka\r\npalubový\r\nPalův\r\nPálův\r\nPAM\r\nPaM\r\npamátečnější\r\npamáteční\r\npamátkářčin\r\npamátkářka\r\npamátkářský\r\npamátkářství\r\npamátkář\r\npamátkářův\r\npamátka\r\npamátkový\r\npamátnější\r\npamátníček\r\npamátníčkový\r\npamátník\r\npamátný\r\npamatovák\r\npamatování\r\npamatovaný\r\npamatovat\r\npamatovávat\r\npamatující\r\npámbíček\r\npámbíčkův\r\npámelník\r\npámelníkový\r\npamětech\r\npamětem\r\npamětihodnější\r\npamětihodný\r\npaměť\r\npamětlivější\r\npamětliv\r\npamětlivý\r\npamětmi\r\npamětná\r\npamětnější\r\npamětnice\r\npamětnictví\r\npamětník\r\npamětníkův\r\npamětní\r\npamětný\r\npaměťový\r\npamflet\r\npamfletičtější\r\npamfletista\r\npamfletistčin\r\npamfletistka\r\npamfletistův\r\nPamír\r\npamírský\r\npamlsek\r\npamlska\r\npampa\r\npampeliška\r\npampeliškový\r\npan\r\npán\r\npana\r\npána\r\nPánaboha\r\npánaboha\r\npaňáca\r\npaňácův\r\npanáček\r\npanáčkování\r\npanáčkovat\r\npanáčkový\r\npanáčkující\r\npanáčkův\r\npanákovitější\r\npanák\r\npanákův\r\npanama\r\nPanama\r\nPanamcův\r\nPanamčin\r\nPanamec\r\npanamerický\r\nPanamka\r\npanamský\r\npanarabismus\r\npanarabistický\r\npánbíček\r\npánbíčkův\r\nPánbůh\r\npánbůh\r\npancéřovací\r\npancéřování\r\npancéřovaný\r\npancéřovat\r\npancéřovka\r\npancéřový\r\npancéř\r\npancířový\r\npancíř\r\nPancová\r\nPancův\r\npančaláma\r\npančalámův\r\npančování\r\npančovaný\r\npančovat\r\npandán\r\npandánový\r\npanda\r\npandemie\r\npanděro\r\npandořin\r\nPandrhola\r\nPandrholová\r\nPandrholův\r\nPaňdžáb\r\npaňdžábský\r\npandžábština\r\npaňdžábština\r\npane\r\npáně\r\nPanebože\r\npanebože\r\nPanec\r\npanečku\r\npanegyrický\r\npanegyrik\r\npanegyrik\r\npanegyrikův\r\npánech\r\nPánek\r\npaneláček\r\npanelák\r\npanelákový\r\npanelárna\r\npanel\r\npanelizace\r\npanelový\r\npanem\r\npánem\r\nPánembohem\r\npánembohem\r\npanenčin\r\npanenka\r\npanenkovský\r\npanenský\r\npanenství\r\npanenštější\r\npánevní\r\npanevropeismus\r\npanevropský\r\npanevropštější\r\npánev\r\npangermanismus\r\npangermánský\r\npanchromatický\r\npaní\r\npáni\r\npanický\r\npanictví\r\npanic\r\npanicův\r\npáníček\r\npanička\r\npáníčkův\r\npaničtější\r\npaních\r\npanikářčin\r\npanikaření\r\npanikařit\r\npanikářka\r\npanikářský\r\npanikářství\r\npanikář\r\npanikářův\r\npanika\r\npaním\r\npanímáma\r\npanímaminčin\r\npanímaminka\r\npaními\r\npaninčin\r\npaninka\r\npanin\r\npanislámismus\r\npankáč\r\npankáčův\r\nPánková\r\nPankrác\r\nPankrácův\r\npankreas\r\npankreatický\r\npankreatičtější\r\npankreatin\r\npankreatitida\r\nPánkův\r\npanmaďarismus\r\npanmiktický\r\npanna\r\nPanonie\r\npanonský\r\npanoptikálnější\r\npanoptikum\r\npanorama\r\npanoráma\r\npanoramatický\r\npanoramatičtější\r\nPanoramix\r\nPanoramixův\r\npanoramování\r\npanorámování\r\npanorámovaný\r\npanorámovat\r\npanorámující\r\npanoší\r\nPanošová\r\npanoš\r\nPanoš\r\nPanošův\r\npanošův\r\npanovačnější\r\npanovačný\r\npanování\r\npanovaný\r\npanovat\r\nPanová\r\nPánová\r\npánové\r\npánovi\r\npánovitější\r\npánovitý\r\npanovnice\r\npanovnický\r\npanovník\r\npanovníkův\r\nPanožka\r\npanožka\r\nPanožková\r\nPanožkův\r\nPan\r\nPan\r\nPán\r\npanrusismus\r\npanrusistický\r\npansexualismus\r\npánský\r\npanský\r\npanslavismus\r\npanslavista\r\npanslavistčin\r\npanslavistický\r\npanslavistka\r\npanslavistův\r\npansofie\r\npanství\r\npanstvo\r\npanštější\r\npánštější\r\npantáta\r\npantátův\r\npanteismus\r\npanteista\r\npanteistčin\r\npanteistický\r\npanteistka\r\npanteistův\r\npanteon\r\npanter\r\npanterův\r\npanteří\r\npant\r\npantheismus\r\npantheistický\r\npantofel\r\npantofel\r\npantofle\r\npantoflemi\r\npantofle\r\npantofli\r\npantoflí\r\npantoflíček\r\npantoflích\r\npantoflím\r\npantoflový\r\npantograf\r\npantografický\r\npantografový\r\npantomima\r\npantomimický\r\npantomimičtější\r\npantotenový\r\npanturkismus\r\npanu\r\npánu\r\npánů\r\nPánubohu\r\npánubohu\r\npanující\r\npánům\r\npanuščin\r\nPanušek\r\nPanuška\r\npanuška\r\nPanušková\r\nPanuškův\r\nPanušová\r\nPanuš\r\nPanušův\r\nPanův\r\nPánův\r\npánův\r\npánvička\r\npánvový\r\npány\r\npanychida\r\nPAP\r\npapa\r\npápá\r\npapacha\r\npapácha\r\npapain\r\npapája\r\npapaláš\r\npapalášův\r\npapání\r\npapaný\r\npapat\r\npapaverin\r\nPapeete\r\npápěra\r\npaperback\r\npaperbackový\r\npápěrka\r\npápěříčko\r\npápěří\r\nPapežová\r\npapežský\r\npapežství\r\npapežštější\r\nPapež\r\npapež\r\nPapežův\r\npapežův\r\npapila\r\npapinkat\r\nPapin\r\nPapinův\r\npapírek\r\npapírenský\r\npapírenství\r\npapír\r\npapírka\r\npapírkový\r\npapírna\r\npapírnický\r\npapírnictví\r\npapírničtější\r\npapírník\r\npapírníkův\r\npapírování\r\npapírovat\r\npapírovější\r\npapírovina\r\npapírovitý\r\npapírový\r\npapndeklový\r\npapouščí\r\npapoušek\r\nPapoušek\r\npapouškování\r\npapouškovaný\r\npapouškovat\r\npapouškovávání\r\npapouškovávaný\r\npapouškovávat\r\nPapoušková\r\npapouškový\r\npapouškující\r\nPapouškův\r\npapouškův\r\npaprčka\r\npáprda\r\npáprdův\r\npaprička\r\npaprikáš\r\npaprika\r\npaprikovaný\r\npaprikovat\r\npaprikový\r\nPaprocký\r\npaprsčitý\r\nPaprsek\r\npaprsek\r\npaprskoploutý\r\nPaprsková\r\npaprskovitý\r\npaprskový\r\nPaprskův\r\npapuáncův\r\npapuánčin\r\npapuánec\r\npapuánka\r\npapuánský\r\nPapua\r\nPapua\r\npapuče\r\npapučka\r\npapučový\r\npapundeklový\r\npapyrologie\r\npapyrový\r\npapyrusový\r\npapyrus\r\npar\r\npár\r\nparaamfibolit\r\nparaamfibolitový\r\nparabola\r\nparabolický\r\nparaboličtější\r\nparaboloid\r\nparabrigáda\r\nParačov\r\nparačovský\r\nparáda\r\nparádění\r\nparadentosní\r\nparadentóza\r\nparáděný\r\nparádička\r\nparadigma\r\nparadigmatický\r\nparádit\r\nparádivější\r\nparádivý\r\nparádnější\r\nparádnice\r\nparádník\r\nparádní\r\nparadont\r\nparadontóza\r\nparadox\r\nparadoxnější\r\nparadoxní\r\nparafa\r\nparafin\r\nparafín\r\nparafínový\r\nparafinový\r\nparafování\r\nparafovaný\r\nparafovat\r\nparafráze\r\nparafrázování\r\nparafrázovaný\r\nparafrázovat\r\nparafrázující\r\nparagliding\r\nparaglidingový\r\nparaglidista\r\nparaglidistčin\r\nparaglidistický\r\nparaglidistka\r\nparaglidistův\r\nparaglidový\r\nparagon\r\nparagraf\r\nparagrafovaný\r\nparagrafový\r\nParaguaycův\r\nParaguayčin\r\nParaguayec\r\nParaguayka\r\nparaguayský\r\nParaguay\r\nparách\r\npárák\r\nparakompaktní\r\nparakotoul\r\nParáková\r\nParák\r\nparakrezol\r\nParákův\r\nparalaktický\r\nparalaktičtější\r\nparalaxa\r\nparalela\r\nparalelismus\r\nparalelka\r\nparalelnější\r\nparalelní\r\nparalingvistika\r\nparaliturgie\r\nparalogismus\r\nPáralová\r\nPáral\r\nPáralův\r\nparalympijský\r\nparalysování\r\nparalysovaný\r\nparalysovat\r\nparalytický\r\nparalytičtější\r\nparalytik\r\nparalytikův\r\nparalýza\r\nparalyzovanější\r\nparalyzování\r\nparalyzovaný\r\nparalyzovat\r\nparalyzující\r\nparám\r\nparamagnetický\r\nparamagnetičtější\r\nparametr\r\nparametrický\r\nparametričtější\r\nparametrizace\r\nparametrizování\r\nparametrizovaný\r\nparametrizovat\r\nparametrizující\r\nparametron\r\nparametrování\r\nparametrový\r\nparami\r\nparamilitantní\r\nparanáboženský\r\npárání\r\nparanoia\r\nparanoický\r\nparanoidnější\r\nparanoidní\r\nparanoii\r\nparanoik\r\nparanoikův\r\nparanoiu\r\nparanormálnější\r\nparanormální\r\npáraný\r\nparapet\r\nparapetní\r\nparaplegický\r\nparaplegiččin\r\nparaplegička\r\nparaplegie\r\nparaplegik\r\nparaplegikův\r\nparaple\r\nparaplíčko\r\nparapsychologický\r\nparapsychologie\r\nparapsycholog\r\nparapsychologův\r\nparapsycholožčin\r\nparapsycholožka\r\nparapulpální\r\npararula\r\npararulový\r\nparasitismus\r\nparasitování\r\nparasitovat\r\nparasympatický\r\nparasympatik\r\nparašutisčin\r\nparašutiska\r\nparašutismus\r\nparašutista\r\nparašutistčin\r\nparašutistický\r\nparašutistka\r\nparašutistův\r\nparataxe\r\npárat\r\npárátko\r\nparatonický\r\nparatoničtější\r\nparatyf\r\nparatyfus\r\nparavan\r\nparaván\r\nparavojenský\r\nparavýsadek\r\npára\r\nparazitický\r\nparazitičtější\r\nparazitismus\r\nparazitní\r\nparazitologický\r\nparazitologie\r\nparazitolog\r\nparazitologův\r\nparazitoložčin\r\nparazitoložka\r\nparazitování\r\nparazitovat\r\nparazitový\r\nparazit\r\nparazitující\r\nparazitův\r\nparcelace\r\nparcela\r\nparcelní\r\nparcelovat\r\nparcelový\r\nparciálnější\r\nparciální\r\nparčík\r\npardálí\r\npardálový\r\npardál\r\npardálův\r\npardon\r\npardonovat\r\nPardubice\r\nPardubicko\r\npardubický\r\npardubický\r\npáreček\r\npárek\r\nparenchym\r\nparenchymový\r\nparere\r\nparfém\r\nparfémovací\r\nparfemovanější\r\nparfémování\r\nparfemovaný\r\nparfémovaný\r\nparfemovat\r\nparfémovat\r\nparfémový\r\nparforsní\r\nparfumerie\r\nparfumérie\r\nParfusová\r\nParfus\r\nParfusův\r\npár\r\nparchant\r\nparchantův\r\npária\r\nParidův\r\nparita\r\nparitní\r\npáriův\r\nparkán\r\nParkanová\r\nparkánový\r\nParkan\r\nParkanův\r\nParkerová\r\nParker\r\nParkerův\r\nparketárna\r\nparketářčin\r\nparketářka\r\nparketář\r\nparketářův\r\nparketa\r\nparketovaný\r\nparketovat\r\nparketový\r\npark\r\nparkhotel\r\nparking\r\nparkovací\r\nparkování\r\nparkovaný\r\nparkovat\r\npárkovat\r\nparkovávání\r\nparkovávaný\r\nparkovávat\r\nparkoviště\r\npárkovitý\r\nparkový\r\npárkový\r\npárkrát\r\npárkráte\r\nparkující\r\nparkurový\r\nparlamentarismus\r\nparlamentaristický\r\nparlamentární\r\nparlamentářčin\r\nparlamentářka\r\nparlamentářství\r\nparlamentář\r\nparlamentářův\r\nparlament\r\nparlamentní\r\nParléř\r\nParléřův\r\nparmazán\r\nparma\r\nparmezán\r\nparmice\r\nparmička\r\nparmový\r\nParnas\r\nparnasismus\r\nparnasista\r\nparnasistčin\r\nparnasistka\r\nparnasistův\r\nparnější\r\nparníček\r\nparnička\r\nparník\r\nparní\r\nparno\r\nparný\r\nparodický\r\nparodie\r\nparodizující\r\nparodontální\r\nparodontální\r\nparodontitida\r\nparodontóza\r\nparodování\r\nparodovaný\r\nparodovat\r\nparodovávání\r\nparodovávaný\r\nparodovávat\r\nparodující\r\nparogenerátor\r\nparoháč\r\nparoháčův\r\nparohatější\r\nparohatý\r\nparoh\r\nparojem\r\nparole\r\nparoloďmi\r\nparoloď\r\nparondotóza\r\nparonepropustný\r\nparoplavba\r\nparoplavební\r\nparoplynový\r\nparopropustný\r\nparostroj\r\nparou\r\npárovací\r\npárování\r\npárovaný\r\npárovat\r\nparovod\r\nparovodní\r\npárový\r\nparozábrana\r\nparoží\r\nparožnatka\r\nparožní\r\nparsek\r\npartajnější\r\npartajní\r\npartaj\r\nparťák\r\nparťákův\r\nparta\r\nparte\r\npartenogenetický\r\npartenogenetičtější\r\npartenogenický\r\npartenogeničtější\r\nparter\r\nparterový\r\nparticipace\r\nparticipační\r\nparticipant\r\nparticipantův\r\nparticipativní\r\nparticipium\r\nparticipování\r\nparticipovat\r\nparticipující\r\npartička\r\npartie\r\npartikularismus\r\npartikularističtější\r\npartikulárnější\r\npartikulární\r\npartikule\r\npartiový\r\npartitiv\r\npartitivní\r\npartitura\r\npartiturka\r\npartnerčin\r\npartnerka\r\npartner\r\npartnerský\r\npartnerství\r\npartnerův\r\npartyzánčin\r\npartyzánka\r\npartyzán\r\npartyzánský\r\npartyzánštější\r\npartyzánština\r\npartyzánův\r\nparučka\r\nparukářčin\r\nparukářka\r\nparuka\r\nparůžek\r\nparyba\r\npařák\r\npařát\r\npařátovitý\r\npařba\r\npářeme\r\npáře\r\npaření\r\npáření\r\npařeniště\r\npařeništní\r\npařený\r\npářený\r\npářeš\r\npářete\r\npařez\r\npařezovatý\r\nPařezová\r\nPařezov\r\npařezovský\r\nPařez\r\nPařezův\r\npařicí\r\npářicí\r\npařící\r\npářící\r\nPaříková\r\nPařík\r\nPaříkův\r\nPařilová\r\nPařil\r\nPařilův\r\npařit\r\npářit\r\nPařízek\r\npařízek\r\nPařízková\r\npařízkový\r\nPařízkův\r\nPařížančin\r\nPařížanka\r\nPařížan\r\nPařížanův\r\npařížský\r\nPaříž\r\npářou\r\npářu\r\npasaččin\r\npasáček\r\npasačka\r\npasáčkův\r\npasáčtější\r\npásák\r\npasák\r\npasákův\r\npásanější\r\npásání\r\npásaný\r\npásatelnější\r\npásatelný\r\npasát\r\npásat\r\npasátní\r\npasátový\r\npásávání\r\npásávaný\r\npásávat\r\npasažérčin\r\npasažérka\r\npasažér\r\npasažérský\r\npasažérův\r\npasážník\r\npasážní\r\npasážový\r\npasáž\r\npascal\r\npascalista\r\npascalistčin\r\npascalistka\r\npascalistův\r\nPascal\r\npascalský\r\nPascalův\r\npasé\r\npasecký\r\npaseka\r\nPasek\r\npásek\r\nPaseky\r\npasenější\r\npasení\r\npasen\r\npasený\r\npas\r\npás\r\npasiáns\r\npasírka\r\npasírovací\r\npasírování\r\npasírovaný\r\npasírovat\r\npasírovávat\r\npasířský\r\npasíř\r\npasířův\r\npasivace\r\npasivační\r\npasivační\r\npasivita\r\npasivnější\r\npasívnější\r\npasivní\r\npasívní\r\npasivovat\r\npasivovatelný\r\npasivující\r\npasivum\r\npasívum\r\npaska\r\npáska\r\npáskovací\r\npáskování\r\npáskovaný\r\npáskovat\r\nPasková\r\nPaskov\r\npaskovský\r\npáskový\r\npaskřivý\r\nPaskův\r\npaskvil\r\npaskvilnější\r\npásl\r\npásmo\r\npásmovitější\r\npásmovitý\r\npásmový\r\npásmový\r\npásnice\r\npasoucí\r\npasování\r\npasovaný\r\npasovat\r\npásovcův\r\npásovec\r\npasovka\r\npásovka\r\nPasov\r\npasovský\r\nPasovský\r\npasový\r\npásový\r\npaspárek\r\npasparta\r\npaspartovávání\r\npaspartovávaný\r\npaspartovávat\r\npasport\r\npasportizace\r\npaspulka\r\npaspulovací\r\npaspulování\r\npaspulovaný\r\npaspulovat\r\npasťák\r\npasta\r\npastel\r\npastelka\r\npastelovější\r\npastelový\r\npasterace\r\npasterizace\r\npasterizování\r\npasterizovaný\r\npasterizovat\r\npasterovat\r\nPasteur\r\nPasteurův\r\npastevcův\r\npastevecký\r\npastevectví\r\npastevec\r\npastevečtější\r\npastevní\r\npastička\r\npastích\r\npastilka\r\npastilkový\r\npastím\r\npást\r\npastinák\r\npastinákový\r\npastis\r\npast\r\npastorace\r\npastorační\r\npastorále\r\npastoralista\r\npastoralistčin\r\npastoralistka\r\npastoralistův\r\npastorálka\r\npastorální\r\nPastorčáková\r\nPastorčák\r\nPastorčákův\r\nPastorek\r\npastorek\r\npastorka\r\nPastorková\r\npastorkový\r\nPastorkův\r\npastorkyně\r\npastorkynin\r\nPastorová\r\npastor\r\nPastor\r\npastorský\r\npastorství\r\npastorštější\r\nPastorův\r\npastorův\r\npastouška\r\npastovat\r\npastovitý\r\npastóznější\r\npastózní\r\nPastrňáková\r\nPastrňák\r\nPastrňákův\r\nPastrnek\r\nPastrnková\r\nPastrnkův\r\nPastucha\r\nPastuchová\r\nPastuchovice\r\npastuchovický\r\nPastuchův\r\npastuší\r\npastuška\r\npastuškův\r\npastva\r\npastvinářský\r\npastvinářství\r\npastvina\r\npastvinka\r\npastvisko\r\npastviště\r\npastvištní\r\npastýřčin\r\nPastyříková\r\nPastyřík\r\nPastyříkův\r\npastýřka\r\npastýřský\r\npastýřštější\r\npastýř\r\npastýřův\r\npasu\r\npasující\r\npasus\r\nPasův\r\npaša\r\npašácký\r\npašák\r\npašákův\r\nPašek\r\npášeme\r\npáše\r\npašerácký\r\npašeráctví\r\npašeráček\r\npašeračka\r\npašeráčkův\r\npašeráčtější\r\npašerák\r\npašerákův\r\npášeš\r\npášete\r\npaši\r\npaších\r\npašije\r\npašijový\r\npašík\r\npašíkův\r\nPašinka\r\npaškál\r\nPašková\r\nPaškův\r\npašo\r\npašou\r\npášou\r\npašování\r\npašovaný\r\npašovat\r\npašové\r\npašovi\r\nPašťalka\r\nPašťalková\r\nPašťalkův\r\npaštička\r\npaštika\r\npaštikový\r\npašu\r\npašů\r\npašující\r\npašům\r\npášu\r\npáťaččin\r\npáťačka\r\npatafyzika\r\nPatagonie\r\npatagonský\r\npáťák\r\npáťákův\r\npatálie\r\npata\r\npátečnější\r\npátečník\r\npátečníkův\r\npáteční\r\nPatejdlová\r\nPatejdl\r\nPatejdlův\r\nPátek\r\npátek\r\npatena\r\npatent\r\npatentka\r\npatentní\r\npatentovanější\r\npatentování\r\npatentovaný\r\npatentovat\r\npatentovatelnější\r\npatentovatelný\r\npatentovávání\r\npatentovávaný\r\npatentovávat\r\npatentový\r\nPatera\r\npaterčátko\r\npaterče\r\npaternalismus\r\npaternalista\r\npaternalistčin\r\npaternalistický\r\npaternalističtější\r\npaternalistka\r\npaternalistův\r\npáternoster\r\npatero\r\npateronásobek\r\npateronásobný\r\nPaterová\r\npáter\r\nPaterův\r\npáterův\r\npatery\r\npaterý\r\npáteřní\r\npáteřový\r\npáteř\r\npáteř\r\npatetický\r\npatetičtější\r\npatetika\r\npatetismus\r\npatetizování\r\npatetizovaný\r\npatetizovat\r\npathetický\r\npathetičtější\r\npathos\r\npatice\r\npaticový\r\npatička\r\npatičkovací\r\npatičkování\r\npatičkovaný\r\npatičkovat\r\npatičkový\r\npatiens\r\npatina\r\npatinovanější\r\npatinovaný\r\npatinovat\r\npatinový\r\npatisk\r\npatison\r\npatitul\r\npatka\r\nPátková\r\npatkovější\r\npátkový\r\npatkový\r\nPátkův\r\npatlanější\r\npatlanina\r\npatlání\r\npatlaný\r\npatlat\r\npatlávání\r\npatlávaný\r\npatlávat\r\npatlavější\r\npatlavý\r\nPatloka\r\nPatloková\r\nPatlokův\r\npatnáctero\r\npatnácteronásobný\r\npatnáctery\r\npatnácterý\r\npatnáct\r\npatnáctibodový\r\npatnáctibodový\r\npatnáctibrankový\r\npatnácticentimetrový\r\npatnáctice\r\npatnáctičlenný\r\npatnáctidenní\r\npatnáctidolarový\r\npatnáctigramový\r\npatnáctihaléřový\r\npatnáctihektarový\r\npatnáctihlavý\r\npatnáctihodinový\r\npatnáctikilogramový\r\npatnáctikilometrový\r\npatnáctikilový\r\npatnáctikolový\r\npatnáctikorunový\r\npatnáctiletý\r\npatnáctilitrový\r\npatnáctimetrový\r\npatnáctimiliardový\r\npatnáctimilionový\r\npatnáctimiliónový\r\npatnáctimílový\r\npatnáctiminutovka\r\npatnáctiminutový\r\npatnáctinásobný\r\npatnáctina\r\npatnáctipatrový\r\npatnáctiposchoďový\r\npatnáctisekundový\r\npatnáctistovkový\r\npatnáctistránkový\r\npatnáctistupňový\r\npatnáctisvazkový\r\npatnáctitisícový\r\npatnáctitunový\r\npatnáctivteřinový\r\npatnáctka\r\npatnáctkový\r\npatnáctkrát\r\npatnáctkráte\r\npatnáctý\r\npatník\r\npatní\r\nPatočka\r\nPatočková\r\nPatočkův\r\npatogen\r\npatogennější\r\npatogenní\r\npatok\r\npatolízal\r\npatolízalský\r\npatolízalství\r\npatolízalštější\r\npatolízalův\r\npatologický\r\npatologičtější\r\npatologie\r\npatolog\r\npatologův\r\npatoložčin\r\npatoložka\r\npatos\r\npatotyp\r\npatový\r\npátrací\r\npátračka\r\npátrač\r\npátračův\r\npátrající\r\npátrání\r\npátraný\r\npátrat\r\npátravější\r\npátravý\r\npatriarchalismus\r\npatriarchálnější\r\npatriarchální\r\npatriarcha\r\npatriarchát\r\npatriarchův\r\npatriciát\r\nPatricie\r\nPatriciin\r\npatricijčin\r\npatricijka\r\npatricijský\r\npatricijštější\r\npatricij\r\npatricijův\r\nPatriciový\r\nPatrik\r\nPatrikův\r\npatrimoniální\r\npatriotčin\r\npatriotický\r\npatriotičtější\r\npatriotismus\r\npatriotistický\r\npatriotističtější\r\npatriotka\r\npatriot\r\npatriotův\r\npatristika\r\nPatrmanová\r\nPatrman\r\nPatrmanův\r\npatrnější\r\npatrn\r\npatrný\r\npatrohltanový\r\npatrola\r\npatrolování\r\npatrolovat\r\npatrolující\r\npatro\r\npatronace\r\npatronance\r\npatronát\r\npatronátní\r\npatrona\r\npatrončin\r\npatronit\r\npatronka\r\npatrónka\r\npatron\r\npatronův\r\npatrový\r\npatření\r\npatřící\r\npatřičnější\r\nPatřičný\r\npatřičný\r\nPatřínová\r\nPatřín\r\nPatřínův\r\npatřit\r\npatřívat\r\npatvar\r\npatyčinka\r\nPatyiová\r\nPatyi\r\nPatyiův\r\npátý\r\nPatzáková\r\nPatzák\r\nPatzákův\r\nPauerová\r\nPauer\r\nPauerův\r\nPaukertová\r\nPaukert\r\nPaukertův\r\nPaukrtová\r\nPaukrt\r\nPaukrtův\r\nPaulíková\r\nPaulík\r\nPaulíkův\r\nPaulina\r\nPaulinin\r\nPauliová\r\nPauli\r\nPauliův\r\nPaulová\r\nPaul\r\nPaulů\r\nPaulův\r\npaumění\r\npauperismus\r\npauperistický\r\npauperizace\r\nPaurová\r\nPaur\r\nPaurův\r\npausa\r\npausovací\r\npausovat\r\npaušál\r\npaušalizace\r\npaušalizování\r\npaušalizovaný\r\npaušalizovat\r\npaušalizující\r\npaušálnější\r\npaušální\r\npaušalovat\r\npaušálovat\r\npauzák\r\npauza\r\npauzička\r\npauzírující\r\npauzovací\r\npauzování\r\npauzovat\r\npavěda\r\npavědecký\r\npavědečtější\r\nPávek\r\nPavelek\r\nPavelka\r\nPavelková\r\nPavelkův\r\nPavelová\r\nPavel\r\nPavelův\r\npavéza\r\npaviání\r\npavián\r\npaviánův\r\npávice\r\npavilonek\r\npavilónek\r\npavilon\r\npavilón\r\npavilónkový\r\npavilónový\r\npaví\r\npáví\r\nPávková\r\nPávkův\r\npavláčka\r\npavlačový\r\npavlač\r\nPavlasová\r\nPavlas\r\nPavlasův\r\nPavlata\r\nPavlatová\r\nPavlátová\r\nPavlát\r\nPavlatův\r\nPavlátův\r\nPavla\r\nPavlica\r\nPavlice\r\nPavlice\r\npavlický\r\nPavlicová\r\nPavlicův\r\npavliččin\r\nPavlíček\r\npavlička\r\nPavlíčková\r\nPavlíčkův\r\nPavlíková\r\nPavlíkov\r\npavlíkovský\r\nPavlík\r\nPavlíkův\r\nPavlína\r\nPavlínčin\r\nPavlínin\r\nPavlínka\r\nPavlínov\r\npavlínovský\r\nPavlin\r\nPavlišová\r\nPavlišta\r\nPavlištová\r\nPavlištův\r\nPavliš\r\nPavlišův\r\nPavlová\r\nPavlovice\r\nPavlovicko\r\npavlovický\r\nPavlovičová\r\nPavlovič\r\nPavlovičův\r\nPavlov\r\nPavlov\r\nPavlovský\r\npavlovský\r\nPavlovův\r\nPavlů\r\nPavlův\r\npavouček\r\npavoučice\r\npavoučí\r\npavoučkův\r\npavoukovcův\r\npavoukovec\r\npavoukovitý\r\npavouk\r\npavoukův\r\nPávová\r\npávový\r\npáv\r\nPáv\r\npavučina\r\npavučinka\r\npavučinkový\r\npavučinový\r\nPávův\r\npávův\r\nPayneová\r\nPayne\r\nPayneův\r\nPazdera\r\nPazderka\r\npazderka\r\nPazderková\r\nPazderkův\r\npazderna\r\nPazderová\r\nPazderův\r\npazdeří\r\npazneht\r\nPazourek\r\npazourek\r\npazour\r\npazourka\r\nPazourková\r\npazourkový\r\nPazourkův\r\nPazour\r\nPazourův\r\npazvuk\r\npažba\r\npažbička\r\npaždí\r\npažební\r\npážecí\r\npáže\r\npažení\r\npaže\r\npaží\r\npažit\r\npažitka\r\npažitkový\r\npažnice\r\npažní\r\nPažoutová\r\nPažout\r\nPažoutův\r\npažravý\r\nPb\r\nPC\r\npc\r\nPČR\r\nPE\r\npec\r\npecař\r\npecařův\r\npece\r\nPecek\r\npecemi\r\npecen\r\npeci\r\npecí\r\npecička\r\npecích\r\npecím\r\nPecina\r\nPecinová\r\nPecinovský\r\nPecinův\r\npeciválka\r\npecivál\r\npeciválův\r\nPecka\r\npecka\r\nPecková\r\npeckovice\r\npeckovička\r\npeckovitý\r\npeckový\r\nPeckův\r\nPeclová\r\nPecl\r\nPeclův\r\npecní\r\npéct\r\npec\r\npečárka\r\npečárkovitý\r\npečecký\r\npečenáč\r\npečenější\r\npečení\r\nPečenka\r\npečenka\r\nPečenková\r\nPečenkův\r\nPečený\r\npečený\r\nPečery\r\npečetění\r\npečetěný\r\npečetící\r\npečetidlo\r\npečetit\r\npečetítko\r\npečetní\r\npečeťovaný\r\npečeťovat\r\npečeť\r\npéče\r\nPečice\r\npečicí\r\npečící\r\npečický\r\npečínka\r\npečínkový\r\nPěčín\r\npěčínský\r\nPečírek\r\nPečírková\r\nPečírkův\r\npečivárna\r\npečivo\r\npečivový\r\npečivý\r\npečka\r\npéčko\r\npečlivější\r\npečlivý\r\nPěčnov\r\npěčnovský\r\npečování\r\npečovaný\r\npečovat\r\npečovatelčin\r\npečovatelka\r\npečovatelský\r\npečovatel\r\npečovatelův\r\npečovávat\r\npečující\r\npedagogický\r\npedagogičtější\r\npedagogika\r\npedagog\r\npedagogův\r\npedagožčin\r\npedagožka\r\npedál\r\npedálový\r\npedantčin\r\npedanterie\r\npedantický\r\npedantismus\r\npedantka\r\npedant\r\npedantský\r\npedantství\r\npedantštější\r\npedantův\r\npedel\r\npedelův\r\npediatrický\r\npediatriččin\r\npediatrička\r\npediatrie\r\npediatr\r\npediatrův\r\npedikérčin\r\npedikérka\r\npedikér\r\npedikérův\r\npedikura\r\npedikúra\r\npedikůra\r\npediplén\r\npedocentrismus\r\npedofilie\r\npedofilní\r\npedofil\r\npedofilův\r\npedologický\r\npedologie\r\npedolog\r\npedologův\r\npedoložčin\r\npedoložka\r\npedopsychiatrický\r\npedopsychiatriččin\r\npedopsychiatrička\r\npedopsychiatrie\r\npedopsychiatr\r\npedopsychiatrův\r\npedopsychologický\r\npedopsychologie\r\npedopsycholog\r\npedopsychologův\r\npedopsycholožčin\r\npedopsycholožka\r\npedosféra\r\nPedro\r\nPedrův\r\npeeling\r\npeering\r\npeeringový\r\nPegas\r\nPegasův\r\npegmatit\r\npegmatitový\r\nPeheová\r\nPehe\r\nPeheův\r\nPecháček\r\nPecháčková\r\nPecháčkův\r\nPecha\r\npěchota\r\npěchotní\r\npěchovací\r\npěchovačka\r\npěchování\r\npěchovaný\r\npěchovat\r\nPechová\r\nPech\r\nPechův\r\nPejchalová\r\nPejchal\r\nPejchalův\r\nPejcharová\r\nPejchar\r\nPejcharův\r\npějící\r\npejorativnější\r\npejorativní\r\npejoratizující\r\nPejřilová\r\nPejřil\r\nPejřilův\r\npejsáneček\r\npejsánečkův\r\npejsánek\r\npejsánkův\r\npejsek\r\npejskův\r\npejz\r\npekáček\r\npekáč\r\nPekárek\r\npekárenský\r\npekárenství\r\nPekárková\r\nPekárkův\r\npekárna\r\npekárnička\r\npekařčin\r\npekařka\r\nPekařová\r\npekařský\r\npekařství\r\npekař\r\nPekař\r\nPekařův\r\npekařův\r\npékávání\r\npékávaný\r\npékávat\r\npekelnější\r\npekelnický\r\npekelník\r\npekelníkův\r\npekelný\r\nPeking\r\npekingský\r\npeklíčko\r\npeklo\r\npěknější\r\npěkňoučký\r\nPěkný\r\npěkný\r\npektan\r\npektinát\r\npektin\r\npektinový\r\npelagický\r\nPelantová\r\nPelant\r\nPelantův\r\npelargonie\r\npelargónie\r\npelargoniový\r\npelášení\r\npelášit\r\nPelcová\r\nPelc\r\nPelcův\r\nPelčáková\r\nPelčák\r\nPelčákův\r\nPelda\r\nPeldová\r\nPeldův\r\npelech\r\npelerína\r\npelerínka\r\npelestích\r\npelestím\r\npelest\r\npeleš\r\npeleta\r\npeletizační\r\npeleton\r\npel\r\nPelhřimov\r\nPelhřimovsko\r\npelhřimovský\r\npelhřimovský\r\npelichající\r\npelichání\r\npelichat\r\nPelikánová\r\npelikán\r\nPelikán\r\nPelikánův\r\npelikánův\r\nPelíšek\r\npelíšek\r\nPelíšková\r\nPelíškův\r\nPellová\r\nPell\r\nPellův\r\nPelnářová\r\nPelnář\r\nPelnářův\r\npeloid\r\npeloton\r\nPelouchová\r\nPelouch\r\nPelouchův\r\npelový\r\nPeltrámová\r\nPeltrám\r\nPeltrámův\r\npeluška\r\npelyněk\r\npelyňkový\r\npemza\r\npemzový\r\nPEN\r\npenále\r\npenál\r\npenalizace\r\npenalizování\r\npenalizovaný\r\npenalizovat\r\npenalta\r\npenaltový\r\nPeňázová\r\npěna\r\nPeňáz\r\nPeňázův\r\npence\r\nPěnčín\r\npěnčínský\r\npendant\r\npendler\r\npendlerství\r\npendlerův\r\npendlování\r\npendlovat\r\npendlovky\r\npendlující\r\npendrek\r\npendrekový\r\npendrekový\r\npendrek\r\npěnění\r\npěněný\r\npenetrace\r\npenetrační\r\npenetrátor\r\npenetrovaný\r\npenetrovat\r\npenetrující\r\npeněz\r\npenězi\r\npenězích\r\npenězokazecký\r\npenězokazectví\r\npenězokaz\r\npenězokazův\r\npenězům\r\npeněženka\r\npeněžitý\r\npeněžnický\r\npeněžnictví\r\npeněžník\r\npeněžníkův\r\npeněžní\r\npěnice\r\npenicilin\r\npenicilín\r\npenicilínka\r\npenicilinový\r\npenicilínový\r\npěnicí\r\npěnící\r\nPěnička\r\npěnička\r\nPěničková\r\nPěničkův\r\npěnidlo\r\npenilní\r\npenis\r\npění\r\npenispletysmograf\r\npěnišník\r\npěnit\r\npěnivější\r\npěnivý\r\npeníze\r\npenízek\r\npenízkový\r\npenízovka\r\npeníz\r\npěnkava\r\npěnkavčí\r\npěnkaví\r\npěnkavka\r\nPennigerový\r\npenny\r\npěnovitý\r\npěnovka\r\npěnový\r\npeň\r\npense\r\npensijní\r\npension\r\npensión\r\npensista\r\npensistčin\r\npensistka\r\npensistův\r\npentaboritan\r\npentaerythrytolester\r\npentagonální\r\npentahydrát\r\npentalogický\r\npentalogie\r\npentametr\r\npentan\r\npentasulfid\r\npentatonický\r\npentatonika\r\npentelka\r\nPentium\r\npentlandit\r\npentlení\r\npentlený\r\npentle\r\npentlička\r\npentlit\r\npentoda\r\npentosa\r\npentosový\r\npenze\r\npenzijní\r\npenzionát\r\npenzionek\r\npenzion\r\npenzión\r\npenzionování\r\npenzionovaný\r\npenzionovat\r\npenzista\r\npenzistčin\r\npenzistka\r\npenzistův\r\npenzum\r\npeonidin\r\nPepa\r\nPepiččin\r\nPepíček\r\nPepička\r\nPepíčkův\r\npepičtější\r\nPepík\r\nPepíkův\r\nPepinčin\r\nPepinka\r\npepito\r\npepka\r\npeprmintový\r\npeprnější\r\npeprný\r\npepření\r\npepřenka\r\npepřený\r\npepřit\r\npepřovník\r\npepřový\r\npepř\r\nPepsi\r\npepsin\r\npeptid\r\npeptidický\r\npeptidový\r\nPepův\r\npérák\r\npérákův\r\nperálecký\r\nPerálec\r\npercentil\r\npercentilový\r\npercepce\r\npercepční\r\nperceptron\r\nPeregrin\r\nPerek\r\nPeremský\r\nperenský\r\nperestrojka\r\nperestrojkový\r\nperfekcionalismus\r\nperfekcionalista\r\nperfekcionalistčin\r\nperfekcionalistický\r\nperfekcionalistka\r\nperfekcionalistův\r\nperfekcionismus\r\nperfekcionista\r\nperfekcionistčin\r\nperfekcionistický\r\nperfekcionistka\r\nperfekcionistův\r\nperfektivní\r\nperfektivum\r\nperfektnější\r\nperfektní\r\nperfektum\r\nperfidnější\r\nperfidní\r\nperforace\r\nperformance\r\nperformativní\r\nperforovací\r\nperforování\r\nperforovaný\r\nperforovat\r\npergamen\r\npergamenka\r\npergamenovitý\r\npergamenový\r\npergamentka\r\nPerglerová\r\nPergler\r\nPerglerův\r\npergola\r\nperchroman\r\nperidiocita\r\nperidotit\r\nperidotitový\r\nperiferie\r\nperiférie\r\nperifernější\r\nperiferní\r\nperifrastický\r\nperifráze\r\nperigenitální\r\nperigeum\r\nperihel\r\nperihelium\r\nperikard\r\nperikarditida\r\nPeriklisová\r\nPeriklis\r\nPeriklisův\r\nperikopa\r\nperilymfa\r\nperinatální\r\nperioda\r\nperiodicita\r\nperiodický\r\nperiodičtější\r\nperiodikum\r\nperiodizace\r\nperiodizační\r\nperiodizovat\r\nperipetie\r\nperiskop\r\nperistaltika\r\nperitonitida\r\nperivaginální\r\nperka\r\nperkolace\r\npérko\r\nPerková\r\nperkový\r\nperkuse\r\nperkusionista\r\nperkusionistčin\r\nperkusionistka\r\nperkusionistův\r\nperkusista\r\nperkusistčin\r\nperkusistka\r\nperkusistův\r\nperkusní\r\nPerkův\r\nperla\r\nperlení\r\nperlený\r\nperleťovcův\r\nperleťovec\r\nperleťový\r\nperleť\r\nperlící\r\nperlička\r\nperličkový\r\nperlík\r\nperlín\r\nperlínův\r\nperlit\r\nperlit\r\nperlitický\r\nperlitičtější\r\nperlivější\r\nperlivý\r\nperlokuce\r\nperlokuční\r\nperloočka\r\nperlorodka\r\nperlovka\r\nperlový\r\nperlustrace\r\nperlustrování\r\nperlustrovaný\r\nperlustrovat\r\npermanence\r\npermanentka\r\npermanentnější\r\npermanentní\r\npermeabilita\r\npermeace\r\npermeační\r\nperm\r\npermisivní\r\npermitivita\r\npermokarbonský\r\npermutace\r\npermutační\r\npermutovanější\r\npermutování\r\npermutovaný\r\npermutovat\r\npermutovávání\r\npermutovávaný\r\npermutovávat\r\npermutující\r\npernarecký\r\nPernarec\r\npernatější\r\npernatý\r\nPernava\r\nPerná\r\npernější\r\nPernekrová\r\nPernekr\r\nPernekrův\r\nPernerová\r\nPerner\r\nPernerův\r\nPernica\r\nPernický\r\nPernicová\r\nPernicův\r\nperníček\r\nperníkárna\r\nperníkářčin\r\nperníkářka\r\nPernikářová\r\nperníkář\r\nPernikář\r\nPernikářův\r\nperníkářův\r\nperník\r\nperníkovější\r\nperníkový\r\nPernink\r\nPerno\r\nPernov\r\nPernštejn\r\npernštejnský\r\npernštejnský\r\nPerný\r\nperný\r\nperoctový\r\nperokresba\r\npero\r\npéro\r\nperon\r\nperón\r\nperónismus\r\nperonista\r\nperónista\r\nperonistčin\r\nperónistčin\r\nperonistka\r\nperónistka\r\nperonistův\r\nperónistův\r\nperonizace\r\nperonka\r\nperónka\r\nperonní\r\nperónový\r\nperořízek\r\nperotina\r\nPeroutka\r\nperoutka\r\nPeroutková\r\nPeroutkův\r\npérování\r\npérovaný\r\npérovat\r\npérovitý\r\nperovka\r\npérovka\r\npérový\r\nperový\r\nperoxid\r\nperoxoboritan\r\nperpetuum\r\nPerrotův\r\npersekuce\r\nperseverace\r\npersiánový\r\nPersie\r\npersíran\r\npersistence\r\nperský\r\npersonál\r\npersonálie\r\npersonalismus\r\npersonalista\r\npersonalistčin\r\npersonalistický\r\npersonalističtější\r\npersonalistika\r\npersonalistka\r\npersonalistův\r\npersonalita\r\npersonálnější\r\npersonální\r\npersona\r\npersóna\r\npersonifikace\r\npersonifikování\r\npersonifikovaný\r\npersonifikovat\r\npersonifikovávání\r\npersonifikovávaný\r\npersonifikovávat\r\npersonifikující\r\nperspektiva\r\nperspektivismus\r\nperspektivistický\r\nperspektivnější\r\nperspektivní\r\nPeršan\r\nPeršínová\r\nPeršín\r\nPeršínův\r\nPerštejn\r\nperštejnský\r\nperština\r\nPertoltice\r\npertoltický\r\nPeru\r\nPeruáncův\r\nPeruánčin\r\nPeruánec\r\nPeruánka\r\nperuánský\r\nPeruc\r\nperucký\r\nPerugie\r\nperuhličitan\r\npérující\r\nPerutek\r\nPerutková\r\nPerutkův\r\nperuť\r\npervazivní\r\nperversnější\r\nperverze\r\nperverzita\r\nperverznější\r\nperverzní\r\npervitin\r\nperzekuce\r\nperzekuční\r\nperzekvování\r\nperzekvovaný\r\nperzekvovat\r\nperzián\r\nperziánka\r\nperziánový\r\nperzifláž\r\nperzistentní\r\nperzonál\r\npeřejka\r\npeřej\r\npeřenosečný\r\npeří\r\npeříčko\r\nPeřimov\r\npeřimovský\r\npeřináč\r\npeřiňák\r\nPeřina\r\npeřina\r\npeřinka\r\nPeřinová\r\npeřinový\r\nPeřinův\r\npeřový\r\npéřový\r\nPES\r\npes\r\npesar\r\npeseta\r\npesetový\r\npesík\r\npesimismus\r\npesimista\r\npesimistčin\r\npesimistický\r\npesimističtější\r\npesimistka\r\npesimistův\r\npeskování\r\npeskovaný\r\npeskovat\r\npeskující\r\nPesničáková\r\nPesničák\r\nPesničákův\r\npěsnička\r\npěstební\r\npěstěnější\r\npěstění\r\npěstěný\r\npesticid\r\npěstící\r\npěstička\r\npěstích\r\npestík\r\npestíkový\r\npěstím\r\npěstit\r\npěstitelčin\r\npěstitelka\r\npěstitelský\r\npěstitelství\r\npěstitel\r\npěstitelův\r\npěst\r\npěstní\r\npěstounka\r\npěstoun\r\npěstounský\r\npěstounův\r\npěstovanější\r\npěstování\r\npěstovaný\r\npěstovat\r\npěstovávání\r\npěstovávaný\r\npěstovávat\r\npestrobarevnější\r\npestrobarevný\r\npestrobarvcův\r\npestrobarvec\r\npestrolistý\r\npestrý\r\npestřec\r\npestřejší\r\npěstující\r\npěšácký\r\npěšák\r\npěšákův\r\nPešanová\r\nPešánová\r\nPešan\r\nPešán\r\nPešanův\r\nPešánův\r\nPešatová\r\nPešat\r\nPešatův\r\npěšcový\r\npěšcův\r\npěšec\r\npešek\r\nPešek\r\nPešíková\r\nPešík\r\nPešíkův\r\nPešina\r\npěšina\r\npěšinka\r\nPešinová\r\nPešinův\r\npěší\r\nPeška\r\nPešková\r\nPeškův\r\npeškův\r\npěšky\r\nPešlová\r\nPešl\r\nPešlův\r\nPešoutová\r\nPešout\r\nPešoutův\r\nPešta\r\nPeštová\r\nPeštův\r\npětačtyřicátníkův\r\npětačtyřicetikilometrový\r\npětačtyřicetilitrový\r\npětačtyřicetimetrový\r\npětačtyřicetimilionový\r\npětačtyřicetiminutovka\r\npětačtyřicetiminutový\r\npětačtyřicetistránkový\r\npětačtyřicetitisícový\r\npětačtyřicetivteřinový\r\npětadvacetibodový\r\npětadvaceticentimetrový\r\npětadvacetihaléř\r\npětadvacetihodinový\r\npětadvacetikilogramový\r\npětadvacetikilometrový\r\npětadvacetikilový\r\npětadvacetikoruna\r\npětadvacetikorunový\r\npětadvacetilitrový\r\npětadvacetimetrový\r\npětadvacetimiliardový\r\npětadvacetiminutový\r\npětadvacetisekundový\r\npětadvacetistránkový\r\npětadvacetistupňový\r\npětadvacetitisícový\r\npětadvacetitunový\r\npětadvacetivteřinový\r\npětadvacetiwattový\r\npětadvacetník\r\npétainismus\r\npétainista\r\npétainistčin\r\npétainistka\r\npétainistův\r\npěťák\r\npětaosmdesátimilionový\r\npětaosmdesátiminutový\r\npětaosmdesátistránkový\r\npětaosmdesátitisícový\r\npětaosmdesátníkův\r\npětapadesátikorunový\r\npětapadesátilitrový\r\npětapadesátimílový\r\npětapadesátiminutový\r\npětapadesátníkův\r\npětapůlroční\r\nPéťa\r\npetarda\r\npětasedmdesátikilometrový\r\npětasedmdesátimetrový\r\npětasedmdesátiminutový\r\npětasedmdesátitunový\r\npětasedmdesátníkův\r\npětašedesáticentimetrový\r\npětašedesátihektarový\r\npětašedesátimetrový\r\npětašedesátistránkový\r\npětašedesátitisícový\r\npětašedesátníkův\r\npětatřicátníkův\r\npětatřiceticentimetrový\r\npětatřicetihodinový\r\npětatřicetikilogramový\r\npětatřicetikilometrový\r\npětatřicetimetrový\r\npětatřicetimilimetrový\r\npětatřicetimilionový\r\npětatřicetimiliónový\r\npětatřicetiminutovka\r\npětatřicetiminutový\r\npětatřicetipatrový\r\npětatřicetistránkový\r\npětatřicetistupňový\r\npětatřicetitisícový\r\nPéťa\r\npět\r\npetelice\r\npétépák\r\npétépákův\r\nPetera\r\nPeterek\r\nPeterka\r\nPeterková\r\nPeterkův\r\nPeterová\r\nPeter\r\nPetersburg\r\npetersburský\r\nPeterův\r\npět\r\npětiaktovka\r\npětibajtový\r\npětibarevný\r\npětibitový\r\npětibodový\r\npětibodový\r\npětibojařčin\r\npětibojařka\r\npětibojař\r\npětibojařův\r\npětiboj\r\npětiboký\r\npětibrankový\r\npěticent\r\npěticentimetrový\r\npěticentový\r\npetice\r\npětice\r\npěticiferný\r\npěticípý\r\npětičárkovaný\r\npětičetný\r\npětičíslí\r\npětičlenný\r\npetiční\r\npětidecibelový\r\npětidenní\r\npětidesetibytový\r\npětidolar\r\npětidolarovka\r\npětidolarový\r\npětidveřový\r\npětidvéřový\r\npětietapový\r\npětifázový\r\npětigólový\r\npětigramový\r\npětihaléř\r\npětihektarový\r\npětihlavý\r\npětihodinový\r\npětihvězdičkový\r\npětijazyčný\r\npětikanálový\r\npětikilogramový\r\npětikilometrový\r\npětikilometrový\r\npětikilový\r\npětikolový\r\npětikoruna\r\npětikorunový\r\nPětikostelí\r\npětikusový\r\npětiletka\r\npětiletý\r\npětilibrový\r\npětilístek\r\npětilist\r\npětilistový\r\npětilistý\r\npětilitrový\r\npětilůžkový\r\npětimarkový\r\npětimegawattový\r\npětiměsíční\r\npětimetrový\r\npětimetrový\r\npětimiliardový\r\npětimilimetrový\r\npětimilionový\r\npětimiliónový\r\npětimílový\r\npětiminutovka\r\npětiminutový\r\npětimístný\r\npětimocný\r\npětinápravový\r\npětinásobek\r\npětinásobný\r\npětina\r\npetinetový\r\npětinka\r\npětinový\r\nPétin\r\npětipatrový\r\npětipísmenný\r\npětipodlažní\r\npětipokojový\r\npětiposchoďový\r\npětiprocentní\r\npětiprstý\r\npětiroční\r\npětirohý\r\npětirychlostní\r\npětiřádkový\r\npětisedadlový\r\npětisekundový\r\npětisemestrový\r\npětisetbodový\r\npětisetdolarový\r\npětisethektarový\r\npětisethlavý\r\npětisetkilogramový\r\npětisetkilometrový\r\npětisetkoruna\r\npětisetkorunový\r\npětisetkusový\r\npětisetlitrový\r\npětisetmegawattový\r\npětisetmetrový\r\npětisetmiliardový\r\npětisetmiligramový\r\npětisetmilionový\r\npětisetmiliónový\r\npětisetmílový\r\npětisetový\r\npětisetřádkový\r\npětisetstránkový\r\npětisettisícový\r\npětistěžňový\r\npětistopý\r\npětistovka\r\npětistovkový\r\npětistránkový\r\npětistrunný\r\npětistupňový\r\npětistý\r\npětisvazkový\r\npetit\r\npětitisícikoruna\r\npětitisící\r\npětitisícovka\r\npětitisícový\r\npetitový\r\npětitřídní\r\npětitunový\r\npětitýdenní\r\npětiúhelník\r\npětivaječný\r\npětiverší\r\npětivozový\r\npětivrstvý\r\npětivteřinový\r\npětkařčin\r\npětkařka\r\npětkař\r\npětkařův\r\npětka\r\nPetkovová\r\nPetkov\r\nPetkovův\r\npětkový\r\npětkrát\r\npětkráte\r\npetlice\r\npetlička\r\npětník\r\nPetráček\r\nPetráčková\r\nPetráčkův\r\nPetráková\r\nPetrák\r\nPetrákův\r\nPetránek\r\nPetránková\r\nPetránkův\r\nPetráňová\r\nPetráň\r\nPetráňův\r\nPetrásek\r\nPetrásková\r\nPetráskův\r\nPetrasová\r\nPetras\r\nPetrasův\r\nPetrášek\r\nPetrášková\r\nPetráškův\r\nPetrášová\r\nPetráš\r\nPetrášův\r\nPetra\r\nPetreková\r\nPetrek\r\nPetrekův\r\npetrifikace\r\npetrifikační\r\npetrifikovaný\r\npetrifikovat\r\npetrifikující\r\nPetríková\r\nPetrík\r\nPetríkův\r\npetrklíč\r\nPetrlíková\r\nPetrlík\r\nPetrlíkův\r\nPetrmichlová\r\nPetrmichl\r\nPetrmichlův\r\npetrogeneze\r\npetrografčin\r\npetrografický\r\npetrografie\r\npetrografka\r\npetrograf\r\npetrografův\r\nPetrohrad\r\npetrohradský\r\npetrohradský\r\npetrochemický\r\npetrochemičtější\r\npetrochemie\r\npetrolejářčin\r\npetrolejářka\r\npetrolejářský\r\npetrolejářský\r\npetrolejář\r\npetrolejářův\r\npetrolejka\r\npetrolejový\r\npetrolej\r\npetrologie\r\npetropavlovský\r\nPetroušek\r\nPetroušková\r\nPetrouškův\r\nPetrová\r\nPetrovice\r\npetrovický\r\nPetrovičová\r\nPetrovič\r\nPetrovičův\r\nPetrov\r\npetrovský\r\nPetr\r\nPetrtýlová\r\nPetrtýl\r\nPetrtýlův\r\nPetrů\r\nPetrusek\r\nPetrusková\r\nPetruskův\r\nPetruščin\r\nPetruška\r\nPetrův\r\nPetruželová\r\nPetružel\r\nPetruželův\r\npetržalka\r\nPetržela\r\nPetrželek\r\npetrželka\r\nPetrželková\r\nPetrželkův\r\nPetrželová\r\npetrželový\r\nPetrželův\r\npetržel\r\nPetržíková\r\nPetržík\r\nPetržíkův\r\nPetržilka\r\npetržilka\r\nPetržilková\r\nPetržilkův\r\nPetříček\r\nPetříček\r\nPetříčková\r\nPetříčkův\r\nPetříková\r\nPetříkov\r\npetříkovský\r\nPetřík\r\nPetřík\r\nPetříkův\r\nPetřín\r\npetřínský\r\nPetřin\r\nPetřvaldová\r\nPetřvald\r\nPetřvaldův\r\npětsetletý\r\nPetschkový\r\npetting\r\npetunidin\r\npetúnie\r\nPéťův\r\npěvcův\r\npěvecký\r\npěvec\r\npeverzní\r\npěvkyně\r\npěvkynin\r\npevnější\r\npevnina\r\npevninský\r\npevninštější\r\npevnostní\r\npevnůstka\r\npevný\r\npěvuška\r\npexeso\r\npf\r\nPfannenstielová\r\nPfannenstiel\r\nPfannenstielův\r\nPfeiferová\r\nPfeifer\r\nPfeiferův\r\nPfeifferová\r\nPfeiffer\r\nPfeifferův\r\nPfeifrová\r\nPfeifr\r\nPfeifrův\r\nPh\r\npH\r\nPhare\r\nPharmDr\r\nPhDr\r\nphenylalanin\r\nphenylethylamin\r\nPhMr\r\nPhotoshop\r\npcháč\r\npi\r\npí\r\npiafový\r\npianino\r\npianissimo\r\npianissimový\r\npianista\r\npianistčin\r\npianistický\r\npianistka\r\npianistův\r\npiano\r\npiáno\r\npiano\r\npianový\r\npiarista\r\npiaristický\r\npiaristův\r\nPiastovec\r\npiastovský\r\nPiava\r\npiavský\r\npiavský\r\nPibylová\r\nPibyl\r\nPibylův\r\npica\r\nPicek\r\npíce\r\npícka\r\nPicková\r\nPick\r\nPickův\r\nPíclová\r\nPícl\r\nPíclův\r\npícninářčin\r\npícninářka\r\npícninářství\r\npícninář\r\npícninářův\r\npícnina\r\npícní\r\nPicno\r\npicosekunda\r\npíča\r\nPičín\r\npičínský\r\nPičmanová\r\nPičman\r\nPičmanův\r\npíďalka\r\npíďalkovitý\r\npídění\r\npídící\r\npidimužík\r\npidimužíkův\r\npídit\r\npíď\r\npidžin\r\nPieczonek\r\nPieczonková\r\nPieczonkův\r\npiedestal\r\nPiemont\r\npierot\r\npierotův\r\nPierre\r\npieta\r\npietismus\r\npietnější\r\npietní\r\npiezoelektrický\r\npiezoelektričtější\r\npiezoelektřina\r\nPifek\r\npifka\r\nPifková\r\nPifkův\r\npiglovat\r\npigmentace\r\npigment\r\npigmentovaný\r\npigmentový\r\npihatější\r\npihatý\r\npiha\r\npihovatější\r\npihovatění\r\npihovatěný\r\npihovatět\r\npihovatý\r\npihovitý\r\npíchací\r\npíchačka\r\npíchající\r\npíchák\r\npíchanec\r\npíchání\r\npíchaný\r\nPícha\r\npíchat\r\npíchávání\r\npíchávaný\r\npíchávat\r\npíchavější\r\npíchavý\r\npichlák\r\npichlavější\r\npichlavý\r\npíchnout\r\npíchnutí\r\npíchnutý\r\npíchnutý\r\nPíchová\r\nPíchův\r\npijácký\r\npijácký\r\npijáctví\r\npijaččin\r\npijačka\r\npijáčtější\r\npiják\r\npijákův\r\npijan\r\npijanský\r\npijanství\r\npijanštější\r\npijanův\r\npijatika\r\npijavice\r\npijavka\r\npijavý\r\npijící\r\npikantérie\r\npikantnější\r\npikantní\r\npikarecký\r\nPikarec\r\npikart\r\npikartův\r\npika\r\npíka\r\npik\r\nPikhartová\r\nPikhart\r\nPikhartův\r\npikle\r\npiknik\r\npiknikový\r\npikola\r\npikolík\r\npikolíkův\r\npikolka\r\nPikora\r\nPikorová\r\nPikorův\r\npikování\r\npikovaný\r\npikovat\r\npikový\r\npikrový\r\npiksla\r\npikslička\r\npiktografický\r\npiktogram\r\npikýrovací\r\npikýrování\r\npikýrovaný\r\npikýrovat\r\npilaf\r\nPilarová\r\nPilar\r\nPilarův\r\nPilařová\r\npilařský\r\nPilař\r\nPilařův\r\npilatka\r\nPilátová\r\nPilát\r\nPilátův\r\nPilava\r\npila\r\npilečka\r\npíle\r\npiliňáky\r\npilina\r\npilinový\r\nPilipová\r\nPilip\r\nPilipův\r\npilírovaný\r\npilířovitý\r\npilířový\r\npilíř\r\npilka\r\npilkový\r\nPillerová\r\nPiller\r\nPillersdorfový\r\nPillersdorfův\r\nPillerův\r\npilnější\r\npilnice\r\npilnický\r\npilníček\r\npilník\r\nPilníkov\r\npilníkovský\r\nPilný\r\npilný\r\npilota\r\npilotáž\r\npilotčin\r\npilotka\r\npilotní\r\npilotování\r\npilotovaný\r\npilotovat\r\npilotovávání\r\npilotovávaný\r\npilotovávat\r\npilotový\r\npilot\r\npilotující\r\npilotův\r\npilous\r\npilousův\r\npilovací\r\npilovačka\r\npilování\r\npilovaný\r\npilovat\r\npilovávání\r\npilovávaný\r\npilovávat\r\npilovitý\r\npilový\r\npilulka\r\npimprlátko\r\npimprle\r\npimprlový\r\npinčl\r\npinč\r\nPindurová\r\nPindur\r\nPindurův\r\nPinek\r\npineta\r\npinetka\r\nping\r\npingpongový\r\npin\r\npinie\r\npiniový\r\nPinkasová\r\nPinkas\r\nPinkasův\r\npinkat\r\nPinkava\r\nPinkavová\r\nPinkavův\r\npinka\r\nPinkerová\r\nPinker\r\nPinkerův\r\nPinková\r\nPinkův\r\npinochetismus\r\nPiňosová\r\nPiňos\r\nPiňosův\r\npinožení\r\npinožit\r\npinseta\r\npinta\r\npintový\r\npinzeta\r\npionýrčin\r\npionýrka\r\npionýr\r\npionýrský\r\npionýrštější\r\npionýrův\r\npíp\r\npípací\r\npípající\r\npípání\r\npípaný\r\nPípa\r\npípat\r\npípavý\r\npípa\r\npipčin\r\npipeta\r\npipetka\r\npipi\r\npípí\r\npipinčin\r\npipinka\r\nPipinův\r\nPipišek\r\nPipišková\r\nPipiškův\r\npipka\r\npiplačka\r\npiplání\r\npiplaný\r\npiplat\r\npiplávání\r\npiplávaný\r\npiplávat\r\npiplavější\r\npiplavý\r\npípnout\r\npípnutí\r\nPípová\r\nPípův\r\npiraňovitý\r\npirát\r\npirátský\r\npirátství\r\npirátštější\r\npirátův\r\nPirklová\r\nPirkl\r\nPirklův\r\npírko\r\nPírko\r\nPírková\r\npírkový\r\nPírkův\r\npiroh\r\npirožek\r\npirožka\r\npirueta\r\npiruetka\r\npisálek\r\npisálkovství\r\npisálkův\r\npísanka\r\npisárna\r\npísárna\r\npísařčin\r\nPísaříková\r\nPísařík\r\nPísaříkův\r\npísařina\r\npísařka\r\nPísařová\r\nPísařovice\r\npísařovický\r\nPísařov\r\npísařovský\r\npísařský\r\npísař\r\nPísař\r\nPísařův\r\npísařův\r\npisatelčin\r\npisatelka\r\npisatel\r\npisatelův\r\npisátko\r\npiscinoodinóza\r\npísčina\r\npísčitější\r\npísčitohlinitý\r\npísčitý\r\nPísecko\r\npísecký\r\npísecký\r\npíseček\r\npísečenský\r\npísečnatka\r\nPísečná\r\npísečnější\r\nPísečné\r\npísečný\r\npísečtější\r\nPísek\r\nPísek\r\npísek\r\npísemka\r\npísemnictví\r\npísemný\r\npíseň\r\nPiskáček\r\nPiskáčková\r\nPiskáčkův\r\npískající\r\npískanější\r\npískání\r\npískaný\r\npískat\r\npískavější\r\npískavý\r\npisklavější\r\npisklavý\r\npísklavý\r\npískle\r\npísknout\r\npísknutí\r\npískomil\r\npískomilův\r\npiskoř\r\npiskořův\r\npískot\r\npískovačka\r\npískovaný\r\npískovat\r\nPísková\r\npískovcový\r\npískovcův\r\npískovec\r\npískoviště\r\npískovitý\r\npískovka\r\npískovna\r\npískový\r\nPískův\r\npísm\r\npísmák\r\npísmákův\r\npísmene\r\npísmenko\r\npísmenkování\r\npísmenkovaný\r\npísmenkovat\r\npísmenkový\r\npísmenkový\r\npísmenný\r\npísmeno\r\npísmenový\r\npísmička\r\npísmolička\r\npísmolijcův\r\npísmolijec\r\npísmolijna\r\npísmo\r\npísmovina\r\npísmovka\r\npísmový\r\nPísnice\r\npísnický\r\npísničkářčin\r\npísničkářka\r\npísničkářský\r\npísničkář\r\npísničkářův\r\npísnička\r\npísničkový\r\npísňovější\r\npísňový\r\npisoár\r\npisoárový\r\npistácie\r\npistáciový\r\npístek\r\npíst\r\nPístina\r\npístnice\r\npístnicový\r\npístní\r\npistole\r\npistolka\r\npistolnický\r\npistolničtější\r\npistolník\r\npistolníkův\r\npistolový\r\npístový\r\nPíša\r\npíši\r\npíšící\r\npišingr\r\npišingrový\r\npiškotek\r\npiškot\r\npiškotový\r\npiškvorek\r\nPíšová\r\npíšťala\r\npíšťalička\r\npíšťalka\r\npíšťalkový\r\npíšťalový\r\npištcův\r\npištec\r\nPištěková\r\nPištěk\r\nPištěkův\r\npíštěl\r\npištění\r\npištěný\r\npištět\r\nPištín\r\npištínský\r\npištivější\r\npištivý\r\npíšu\r\nPíšův\r\nPitáková\r\nPiták\r\nPitákův\r\nPitašová\r\nPitaš\r\nPitašův\r\npít\r\nPitcairn\r\npitcairnský\r\nPitcairnův\r\npitelnější\r\npitelný\r\npitevna\r\npitevní\r\nPiťha\r\nPithartová\r\nPithart\r\nPithartův\r\nPiťhová\r\nPiťhův\r\nPitín\r\npitínský\r\npití\r\npitivo\r\npitka\r\npitnější\r\npitný\r\npitomcův\r\npitomec\r\npitomeček\r\npitomečkův\r\npitomější\r\npitomina\r\npitominka\r\npitomý\r\npit\r\npitoresknější\r\npitoreskní\r\nPitra\r\nPitrová\r\nPitrův\r\npitting\r\nPittnerová\r\nPittner\r\nPittnerův\r\nPittsburgh\r\npittsburský\r\npittspurgský\r\npitvající\r\npitvání\r\npitvaný\r\npitvat\r\npitvávání\r\npitvávaný\r\npitvávat\r\npitva\r\npitvorka\r\npitvornější\r\npitvorný\r\npitvoření\r\npitvořící\r\npitvořit\r\npitvořivější\r\npitvořivý\r\npitý\r\npiú\r\nPius\r\nPiův\r\npívání\r\npívaný\r\npívat\r\npivečko\r\nPivín\r\npivínský\r\npivko\r\npivnější\r\npivnice\r\npivnička\r\npivní\r\nPivoda\r\nPivodová\r\nPivodův\r\npivo\r\nPivoňka\r\npivoňka\r\nPivoňková\r\npivoňkový\r\nPivoňkův\r\npivotmančin\r\npivotmanka\r\npivotman\r\npivotní\r\npivot\r\npivotův\r\npivovar\r\npivovarnický\r\npivovarnictví\r\npivovarník\r\npivovarníkův\r\npivovarský\r\npivovarství\r\npivovař\r\npivovařův\r\nPivrncová\r\nPivrncův\r\nPivrnec\r\npixel\r\npizza\r\npizzerie\r\npizzicato\r\npizzicato\r\npižlání\r\npižlaný\r\npižlat\r\npižlávat\r\nPižlová\r\nPižl\r\nPižlův\r\npižmo\r\npižmovka\r\npižmový\r\npjal\r\npjat\r\nplác\r\nplácačka\r\nplacák\r\nplácání\r\nplácaný\r\nplacatější\r\nplácat\r\nplacatka\r\nplacatý\r\nplácavý\r\nplacebo\r\nplácek\r\nplacenější\r\nplacení\r\nplacentární\r\nplacenta\r\nplacený\r\nplac\r\nplacička\r\nplacírka\r\nplacka\r\npláclý\r\nplácnout\r\nplácnutí\r\nplácnutý\r\nPlaček\r\nplačící\r\nplačka\r\nPlačková\r\nPlačkův\r\nplačky\r\npláč\r\nplačtivější\r\nplačtivý\r\nplagální\r\nplagiát\r\nplagiátor\r\nplagiátorský\r\nplagiátorství\r\nplagioklas\r\nplagioklasový\r\nplagioplas\r\nplagioplasový\r\nplahočení\r\nplahočící\r\nplahočit\r\nPlachecký\r\nPlachetka\r\nplachetka\r\nPlachetková\r\nPlachetkův\r\nplachetnice\r\nplachetnicový\r\nplachetní\r\npláchnout\r\npláchnutí\r\nPlachta\r\nplachtařský\r\nplachtařství\r\nplachtař\r\nplachtařův\r\nplachta\r\nplachtění\r\nplachtící\r\nplachtit\r\nplachtivý\r\nPlachtová\r\nplachtoví\r\nplachtovina\r\nplachtový\r\nPlachtův\r\nPlachý\r\nplachý\r\nplakající\r\nplakání\r\nplakat\r\nplakátek\r\nplakát\r\nplakátovací\r\nplakátování\r\nplakátovat\r\nplakátovitý\r\nplakátový\r\nplakávání\r\nplakávat\r\nplaketa\r\nplaketka\r\nplak\r\npláme\r\nplameňák\r\nplameňákův\r\nplamencový\r\nplamenec\r\nplamének\r\nplamen\r\nplamenka\r\nplaměnka\r\nplamennější\r\nplamenný\r\nplamenomet\r\nplamenometný\r\nplamenopojistka\r\nplamenový\r\nplamínek\r\nplamínkový\r\nplám\r\nplá\r\nPlaná\r\nPlanck\r\nPlanckův\r\nplandající\r\nplandání\r\nplandat\r\nplandavější\r\nplandavý\r\nplanější\r\npláně\r\nplánek\r\nplanění\r\nplanetárium\r\nplanetární\r\nplaneta\r\nplanět\r\nplanetka\r\nplanetoid\r\nplanetologický\r\nplanetologie\r\nplanetolog\r\nplanetologův\r\nplanetoložčin\r\nplanetoložka\r\nplanetový\r\nplán\r\nPlánice\r\nplánický\r\nPlánička\r\nplánička\r\nPláničková\r\nPláničkův\r\nplanimetr\r\nplanimetrický\r\nplanimetrie\r\nplanimetrování\r\nplanina\r\nplaninka\r\nplání\r\nplaňka\r\nplánka\r\npláňka\r\nplaňkový\r\nplánkový\r\nplankton\r\nplanografický\r\nplanografičtější\r\nplanografie\r\nplanoucí\r\nplanout\r\nplánovací\r\nplánovač\r\nplánovačův\r\nplánovanější\r\nplánování\r\nplánovaný\r\nplánovat\r\nplánovitější\r\nplánovitý\r\nplánový\r\nplanparalelní\r\nplanský\r\nplantážnický\r\nplantážník\r\nplantážníkův\r\nplantážní\r\nplantážový\r\nplantáž\r\nplánující\r\nplanutí\r\nplanýrovací\r\nplanýrování\r\nplanýrovaný\r\nplanýrovat\r\nplaný\r\npláň\r\nplanžeta\r\nplanžetový\r\nplápolající\r\nplápolání\r\nplápolaný\r\nplápolat\r\nplápolavější\r\nplápolavý\r\nplápol\r\nplaský\r\nplasma\r\nplasmový\r\nplasský\r\nPlassová\r\nPlass\r\nPlassův\r\nplástek\r\nplastelína\r\nplastelínový\r\nplástevný\r\nplástev\r\nplast\r\nplást\r\nplasticita\r\nplastický\r\nplastický\r\nplastičtější\r\nplastid\r\nplastidový\r\nplastifikace\r\nplastifikační\r\nplastifikátor\r\nplastifikovat\r\nplastika\r\nplastik\r\nplastikovější\r\nplastikový\r\nplástový\r\nplastový\r\nPlasy\r\nplašeji\r\nplašení\r\nplašený\r\nPlášilová\r\nPlášil\r\nPlášilův\r\nplašit\r\npláš\r\nplašší\r\npláštěnka\r\npláštík\r\npláštíkový\r\nPlaštilová\r\nPlaštil\r\nPlaštilův\r\nplášťový\r\nplášť\r\nplatan\r\nplatanový\r\nplatba\r\nplátce\r\nplátcův\r\nplatební\r\nplatební\r\npláteček\r\nplátek\r\npláte\r\nplátenice\r\nplátenický\r\nplátenictví\r\npláteničin\r\nPláteníková\r\npláteník\r\nPláteník\r\nPláteníkův\r\npláteníkův\r\nplátěnka\r\npláténko\r\nplátěnky\r\nplátěný\r\nplatforma\r\nplatformní\r\nplat\r\nplát\r\nplatící\r\nplatidlo\r\nplatina\r\nplatinový\r\nplatit\r\nplatívat\r\nplát\r\nplátkování\r\nplátkovaný\r\nplátkovat\r\nplátkový\r\nplátkyně\r\nplátkynin\r\nplatnější\r\nplatnéřský\r\nplátno\r\nplátnový\r\nplatný\r\nplató\r\nplato\r\nplatonický\r\nplatoničtější\r\nplatonik\r\nplatonikův\r\nplatonismus\r\nplatónový\r\nPlaton\r\nPlatón\r\nplatónský\r\nPlatonův\r\nPlatónův\r\nplátovací\r\nplátování\r\nplátovaný\r\nplatový\r\nplatýs\r\nplatýsův\r\nplausibilnější\r\nplavací\r\nPlaváček\r\nplavačkář\r\nplaváčkář\r\nplavačkářův\r\nplaváčkářův\r\nPlaváčkův\r\nplavající\r\nplavák\r\nplavání\r\nplavaný\r\nplavat\r\nplavatka\r\nplavávání\r\nplavávaný\r\nplavávat\r\nplavba\r\nplavbyschopný\r\nPlavcová\r\nPlavcův\r\nplavcův\r\nplavčík\r\nplavčíkův\r\nplavební\r\nplavecký\r\nplavectví\r\nplavec\r\nPlavec\r\nplavečkový\r\nplavečky\r\nplavečtější\r\nplavečtější\r\nplavejme\r\nplavej\r\nplavější\r\nplavejte\r\nplavení\r\nplavený\r\nplavicí\r\nplavící\r\nplavidlo\r\nplavit\r\nplavka\r\nplavkový\r\nplavkyně\r\nplavkynin\r\nplavky\r\nplavmo\r\nplavnější\r\nPlavno\r\nplavný\r\nplavovláska\r\nplavovlasý\r\nPlavsko\r\nplavuňka\r\nplavuňový\r\nplavuň\r\nplavý\r\nplayback\r\nplaybackový\r\nplayboy\r\nplayboyův\r\nplazení\r\nplazící\r\nplazit\r\nplazivější\r\nplazivý\r\nplazí\r\nplazma\r\nplazmatický\r\nplazmid\r\nplazmochemický\r\nplazmolýza\r\nplazmon\r\nplazmový\r\nplazový\r\nplaz\r\nplazův\r\nplážička\r\nplážovější\r\nplážový\r\npláž\r\nplebejcův\r\nplebejčin\r\nplebejec\r\nplebejka\r\nplebejský\r\nplebejství\r\nplebej\r\nplebejův\r\nplebiscit\r\nplebs\r\nplebse\r\nplebsem\r\nplebs\r\nplebsu\r\nPlecitý\r\nplecko\r\nplec\r\nplečka\r\nplečkovat\r\npléd\r\nplecháček\r\nPlechačová\r\nPlecháčová\r\nplecháč\r\nPlechač\r\nPlecháč\r\nPlechačův\r\nPlecháčův\r\nplechárna\r\nPlechatý\r\nplechetní\r\nplech\r\nplechovka\r\nplechový\r\nPlechý\r\npleistocén\r\npleistoforóza\r\nplejáda\r\nplejboj\r\nplejbojův\r\npleji\r\nplející\r\nplejtvák\r\nplejtvákův\r\nplel\r\nplémě\r\nplemenářčin\r\nplemenářka\r\nplemenářský\r\nplemenářství\r\nplemenář\r\nplemenářův\r\nplemene\r\nplemenění\r\nplemeněný\r\nplemenice\r\nplemeník\r\nplemeníkův\r\nplemenit\r\nplemenitba\r\nplemenný\r\nplemeno\r\nplenárka\r\nplenární\r\nplena\r\nplenčička\r\nplenění\r\npleněný\r\nplenér\r\nplenérový\r\nplenící\r\nplení\r\nplenit\r\nplenitel\r\nplenitelův\r\nplenivější\r\nplenivý\r\nplenka\r\nplénka\r\nplenkový\r\nplenový\r\nplenta\r\nplénum\r\npleonasmus\r\npleonastický\r\npleonastičtější\r\npleoptický\r\nplesající\r\nplesání\r\nplesat\r\nplesenský\r\nples\r\nplesích\r\nplesk\r\npleskačka\r\npleskač\r\npleskačův\r\npleskách\r\npleskající\r\npleskání\r\npleskaný\r\npleskat\r\npleskávat\r\npleskavý\r\nplesknout\r\nplesknutí\r\nplesknutý\r\npleskot\r\nPleskotová\r\nPleskot\r\nPleskotův\r\nplesky\r\nplesky\r\nPlesná\r\nplesnivec\r\nplesnivějící\r\nplesnivější\r\nplesnivění\r\nplesnivět\r\nplesnivina\r\nplesnivka\r\nplesnivý\r\npleso\r\nplesový\r\nplesový\r\nplést\r\nPlešáková\r\nPlešák\r\nPlešákův\r\nplešatcův\r\nplešatec\r\nplešatějící\r\nplešatější\r\nplešatění\r\nplešatět\r\nplešatící\r\nplešatý\r\nPlešingerová\r\nPlešinger\r\nPlešingerův\r\nPlešingrová\r\nPlešingr\r\nPlešingrův\r\nplešivecký\r\nPlešivec\r\nplešší\r\nPleštilová\r\nPleštil\r\nPleštilův\r\npleš\r\npletací\r\npletačka\r\npletařčin\r\npletařka\r\npletařský\r\npletařství\r\npletař\r\npletařův\r\nplétávání\r\nplétávat\r\npletější\r\npletenec\r\npletenina\r\npletení\r\npletenka\r\npletený\r\nPleticha\r\npletichářčin\r\npletichaření\r\npletichařený\r\npletichařící\r\npletichařit\r\npletichářka\r\npletichářský\r\npletichářství\r\npletichář\r\npletichářův\r\npleticha\r\nPletichová\r\nPletichův\r\npletí\r\npletivo\r\npletivový\r\npleť\r\npletka\r\nplet\r\npletoucí\r\npleťový\r\npletýnka\r\npletý\r\npletý\r\npleuritida\r\nPleva\r\npleva\r\nplevel\r\nplevelnatější\r\nplevelnější\r\nplevelný\r\nplevka\r\nPlevová\r\nplevový\r\nPlevův\r\nplexisklo\r\nplexisklový\r\nPlháková\r\nPlhák\r\nPlhákův\r\nPlhalová\r\nPlhal\r\nPlhalův\r\nPlchová\r\nPlchov\r\nplchovský\r\nplch\r\nPlch\r\nPlchův\r\nplchův\r\nplic\r\nplicemi\r\nplíce\r\nplicích\r\nplicím\r\nPlicka\r\nPlicková\r\nPlickův\r\nplicník\r\nplicníkovitý\r\nplicníkový\r\nplicní\r\nplíčko\r\nplíčky\r\nPlíhalová\r\nPlíhal\r\nPlíhalův\r\nplihnoucí\r\nplihnout\r\nplihnutí\r\nplínečka\r\nplínka\r\nplisé\r\nplíseň\r\nplískanice\r\npliska\r\nPlískov\r\nplískovský\r\nPlisna\r\nplísnění\r\nplísněný\r\nplísnící\r\nplísnit\r\nplísňovitý\r\nplísňový\r\nplisovací\r\nplisování\r\nplisovaný\r\nplisovat\r\nPlíšek\r\nplíška\r\nPlíšková\r\nplíškový\r\nPlíškův\r\nPlištilová\r\nPlištil\r\nPlištilův\r\nplít\r\nplivající\r\nplivanec\r\nplivání\r\nplivaný\r\nPlíva\r\nplivat\r\nplivátko\r\nplivnout\r\nplivnutí\r\nplivnutý\r\nPlívová\r\nPlívův\r\nplizé\r\nplizovat\r\nplížení\r\nplížící\r\nplížit\r\nplíživější\r\nplíživý\r\nplk\r\nplkající\r\nplkat\r\nplm\r\nplnější\r\nplněnější\r\nplnění\r\nplněný\r\nplněprahový\r\nplnicí\r\nplnící\r\nplnička\r\nplničký\r\nplnič\r\nplničův\r\nplnidlo\r\nplnírna\r\nplnit\r\nplnitelčin\r\nplnitelka\r\nplnitelnější\r\nplnitelný\r\nplnitel\r\nplnitelův\r\nplnivo\r\nplnoautomatický\r\nplnoautomatičtější\r\nplnohodnotnější\r\nplnohodnotný\r\nplnoklávesový\r\nplnokrevník\r\nplnokrevníkův\r\nplnokrevný\r\nplnokvětý\r\nplnoletý\r\nplnometr\r\nplnomocenství\r\nplnomocnější\r\nplnomocník\r\nplnomocníkův\r\nplnomocný\r\npln\r\nplnoprávnější\r\nplnoprávný\r\nplnoprůtokový\r\nplnopryžový\r\nplnosecí\r\nplnosortimentní\r\nplnostěnný\r\nplnoštíhlejší\r\nplnoštíhlý\r\nplnotextový\r\nplnotlaký\r\nplnotučnější\r\nplnotučný\r\nplnovous\r\nplnovýznamový\r\nPlný\r\nplný\r\nPlocek\r\nPlocková\r\nPlockův\r\nplodenství\r\nplod\r\nplodící\r\nplodina\r\nplodinový\r\nplodiště\r\nplodit\r\nploditelčin\r\nploditelka\r\nploditel\r\nploditelův\r\nplodívat\r\nplodivější\r\nplodivý\r\nplodnější\r\nplodnice\r\nplodnička\r\nplodný\r\nplodolist\r\nplodomorka\r\nplodonosný\r\nplodový\r\nplocha\r\nplochodrážní\r\nplochý\r\nplomba\r\nplombovací\r\nplombování\r\nplombovaný\r\nplombovat\r\nploník\r\nplonkový\r\nploska\r\nploskohřbetka\r\nploskonohý\r\nPloskovice\r\nploskovický\r\nPloskovský\r\nploský\r\nplošina\r\nplošinka\r\nplošinový\r\nploška\r\nplošnější\r\nplošný\r\nplošší\r\nploštější\r\nploštěnec\r\nploštenka\r\nploštěnka\r\nploštice\r\nploténka\r\nplot\r\nplotice\r\nPlotina\r\nPlotinová\r\nPlotinův\r\nPlotiště\r\nplotišťský\r\nplotna\r\nplotnička\r\nplotnovitý\r\nplotovka\r\nplotový\r\nplotter\r\nplotýnka\r\nplotýnkový\r\nPloučnice\r\nploučnický\r\nplouhání\r\nplouhaný\r\nplouhat\r\nplouhavý\r\nplout\r\nploutevní\r\nploutev\r\nploutvička\r\nploutvonožcův\r\nploutvonožec\r\nploutvovitý\r\nploutvový\r\nploužení\r\nploužit\r\nplouživější\r\nplouživý\r\nplovací\r\nplováčkový\r\nplovaje\r\nplovák\r\nplovákový\r\nploval\r\nplování\r\nplovárenský\r\nplovárna\r\nplovatelnost\r\nplovat\r\nplovatka\r\nplovávání\r\nplovávat\r\nplovavý\r\nPlovdiv\r\nplovdivský\r\nplovejme\r\nplovej\r\nplovejte\r\nplovme\r\nplov\r\nplovoucí\r\nplovte\r\nplovu\r\nplození\r\nplozený\r\nplsť\r\nplstěncový\r\nplstěnec\r\nplstěný\r\nplsticí\r\nplstící\r\nplstích\r\nplstím\r\nplst\r\nplstnatější\r\nplstnatění\r\nplstnatý\r\nplstní\r\nplsťovitý\r\nplsťový\r\nPlšek\r\nplšík\r\nplšíkův\r\nplší\r\nPlšková\r\nPlškův\r\npltní\r\nplť\r\nPludek\r\nplůdek\r\nPludková\r\nplůdkový\r\nPludkův\r\nPluháček\r\nPluháčková\r\nPluháčkův\r\nPluhařová\r\nPluhař\r\nPluhařův\r\npluh\r\nPluhov\r\npluhovský\r\npluhový\r\npluchatý\r\nplucha\r\nplující\r\npluk\r\nplukovnice\r\nplukovnický\r\nplukovničin\r\nplukovník\r\nplukovníkův\r\nplukovní\r\nplukový\r\nPlumlov\r\nplumlovský\r\nPlumlovský\r\nplundrování\r\nplundrovaný\r\nplundrovat\r\nplunžr\r\nplunžrový\r\nplurál\r\npluralismus\r\npluralista\r\npluralistčin\r\npluralistický\r\npluralističtější\r\npluralistka\r\npluralistův\r\npluralita\r\npluralitní\r\nplurálový\r\nplus\r\nPluskalová\r\nPluskal\r\nPluskalův\r\npluskvamperfektum\r\nplusový\r\nplusquamperfektum\r\nPlutarchos\r\nPlutarchův\r\nplůtek\r\nplutí\r\nplutokratičtější\r\nplutoniový\r\nplutonium\r\nPlutonův\r\nPluto\r\nPlutův\r\nplutý\r\nplužení\r\npluženský\r\nplužený\r\nplužící\r\nplužin\r\nplužit\r\nPlužná\r\nplymó\r\nplymo\r\nplynárenský\r\nplynárenství\r\nplynárna\r\nplynař\r\nplynařův\r\nplynatý\r\nplyn\r\nplynnější\r\nplynný\r\nplynofikace\r\nplynofikační\r\nplynofikovat\r\nplynoinstalace\r\nplynojem\r\nplynoměr\r\nplynoprachový\r\nPlynoprojekt\r\nplynosilikátový\r\nplynotěsný\r\nplynoucí\r\nplynout\r\nplynování\r\nplynovka\r\nplynovod\r\nplynovodní\r\nplynový\r\nplynulejší\r\nplynulý\r\nplynutí\r\nplynutý\r\nplyšák\r\nplyšákův\r\nplyšovací\r\nplyšování\r\nplyšovaný\r\nplyšovat\r\nplyšový\r\nplyš\r\nplytčejší\r\nplytký\r\nplýtvající\r\nplýtvající\r\nplýtvání\r\nplýtvaný\r\nplýtvat\r\nplýtvávání\r\nplýtvávat\r\nplýtvavější\r\nplýtvavý\r\nPLZ\r\nPlzáková\r\nplzák\r\nPlzák\r\nPlzákův\r\nplzákův\r\nPlzeňaččin\r\nPlzeňačka\r\nplzeňákův\r\nPlzeňančin\r\nPlzeňanka\r\nPlzeňan\r\nPlzeňanův\r\nplzenecký\r\nPlzenec\r\nPlzeňsko\r\nplzeňský\r\nplzeňský\r\nPlzeň\r\nplžatka\r\nplžovitý\r\nplž\r\nPMEZ\r\nPn\r\nPňaček\r\nPňačková\r\nPňačkův\r\npneumatický\r\npneumatikárenský\r\npneumatikářský\r\npneumatika\r\npneumogastrický\r\npneumologický\r\npneumologie\r\npneumolog\r\npneumologův\r\npneumoložčin\r\npneumoložka\r\npneumonie\r\npneumotorax\r\npnoucí\r\npnout\r\nPňovice\r\npňovický\r\nPňov\r\npňovský\r\npnutější\r\npnutí\r\npnutý\r\npo\r\npoafričtění\r\npoafričtěný\r\npoafričtit\r\npoakreční\r\npoameričtěnější\r\npoameričtěný\r\npoangličtění\r\npoangličtěný\r\npoangličtit\r\npoangličťování\r\npoangličťovaný\r\npoangličťovat\r\npoapoštolský\r\npobafání\r\npobafaný\r\npobafat\r\npobalenější\r\npobalení\r\npobalený\r\npobalit\r\npobalitelnější\r\npobalitelný\r\npobalovanější\r\npobalování\r\npobalovaný\r\npobalovat\r\npobalovávání\r\npobalovávaný\r\npobalovávat\r\nPobaltí\r\npobaltí\r\npobaltský\r\npobalující\r\npobarvený\r\npobavenější\r\npobavení\r\npobavený\r\npobavit\r\npoběhání\r\npoběhaný\r\npoběhat\r\npoběhlice\r\npobekávat\r\npobělohorský\r\npoberta\r\npobertův\r\npobesedování\r\npobesedovat\r\npobesedovávání\r\npobesedovávat\r\npoběžím\r\nPoběžovice\r\npoběžovický\r\npobídka\r\npobídkový\r\npobídnout\r\npobídnutí\r\npobídnutý\r\npobíhající\r\npobíhání\r\npobíhat\r\npobíhavější\r\npobíhavý\r\npobíhavý\r\npobíjející\r\npobíjení\r\npobíjený\r\npobíjet\r\npobírající\r\npobíranější\r\npobírání\r\npobíraný\r\npobírat\r\npobít\r\npobití\r\npobit\r\npobitý\r\npobízející\r\npobízení\r\npobízený\r\npobízet\r\npobízivý\r\npoblácení\r\npoblácený\r\npoblahopřání\r\npoblahopřaný\r\npoblahopřát\r\npoblátit\r\npoblázněnější\r\npobláznění\r\npoblázněný\r\npobláznit\r\npoblbnout\r\npobledlejší\r\npobledlý\r\npoblednout\r\npoblednutí\r\npoblikávající\r\npoblikávání\r\npoblikávat\r\npoblinkání\r\npoblinkaný\r\npoblinkat\r\npoblít\r\npoblití\r\npoblit\r\npoblitý\r\npoblívání\r\npoblívaný\r\npoblívat\r\npoblíž\r\npoblíže\r\npobloudilcův\r\npobloudilec\r\npobloudilejší\r\npobloudilý\r\npoblouzenější\r\npoblouzněnější\r\npoblouznění\r\npoblouzněný\r\npoblouznit\r\npobočka\r\npobočkový\r\npobočnější\r\npobočník\r\npobočníkův\r\npobočný\r\npobodání\r\npobodaný\r\npobodat\r\npobodávání\r\npobodávaný\r\npobodávat\r\npobodnout\r\npobodnutí\r\npobodnutý\r\npobolívající\r\npobolívání\r\npobolívat\r\npoboření\r\npobořený\r\nPobořilová\r\nPobořil\r\nPobořilův\r\npobořit\r\npobourání\r\npobouraný\r\npobourat\r\npobouřenější\r\npobouření\r\npobouřený\r\npobouřit\r\npobožnější\r\npobožnůstkářčin\r\npobožnůstkářka\r\npobožnůstkářský\r\npobožnůstkářství\r\npobožnůstkář\r\npobožnůstkářův\r\npobožný\r\npobranější\r\npobraní\r\npobrání\r\npobraný\r\npobrat\r\npobratření\r\npobratřený\r\npobratřit\r\npobrečení\r\npobrečet\r\npobrekávající\r\npobrekávání\r\npobrekávat\r\npobrnkávat\r\npobroukávat\r\npobrouzdání\r\npobrouzdaný\r\npobrouzdat\r\npobrukování\r\npobrukovaný\r\npobrukovat\r\npobryndání\r\npobryndaný\r\npobryndat\r\npobřeznový\r\nPobřeží\r\npobřeží\r\npobřežní\r\npobřišnice\r\npobublávat\r\npobuda\r\npobudu\r\npobudův\r\npobuřování\r\npobuřovaný\r\npobuřovat\r\npobuřovávat\r\npobuřující\r\npobyl\r\npobyt\r\npobýt\r\npobytí\r\npobytovější\r\npobytový\r\npobývající\r\npobývání\r\npobývat\r\npobyv\r\npobyvše\r\npobyvši\r\npobyvší\r\npobzukování\r\npobzukovaný\r\npobzukovat\r\npobzukovávání\r\npobzukovávaný\r\npobzukovávat\r\npocákání\r\npocákaný\r\npocákat\r\npocelování\r\npocelovaný\r\npocelovat\r\npocelující\r\npocení\r\npocený\r\npocestný\r\npocínovací\r\npocínování\r\npocínovaný\r\npocínovat\r\nPocinovice\r\npocinovický\r\npocítění\r\npocítěný\r\npocit\r\npocítit\r\npociťování\r\npociťovaný\r\npociťovat\r\npocitovější\r\npocitový\r\npociťující\r\npocmrndání\r\npocmrndaný\r\npocmrndat\r\npocmrndávat\r\npocta\r\npoctění\r\npoctěný\r\npoctít\r\npoctívání\r\npoctívaný\r\npoctívat\r\npoctivcův\r\npoctivec\r\npoctivější\r\npoctivý\r\npocucající\r\npocucanější\r\npocucání\r\npocucaný\r\npocucat\r\npocucávat\r\npocuchání\r\npocuchaný\r\npocuchat\r\npocuchávat\r\npocukávání\r\npocukávat\r\npocukrování\r\npocukrovaný\r\npocukrovat\r\npocvakávat\r\npocvičení\r\npocvičený\r\npocvičit\r\npocvrnkávání\r\npocvrnkávaný\r\npocvrnkávat\r\npoč\r\nPočáply\r\npočasíčko\r\npočasí\r\npočastování\r\npočastovaný\r\npočastovat\r\npočastovávání\r\npočastovávaný\r\npočastovávat\r\npočátečnější\r\npočáteční\r\npočátek\r\npočátkem\r\npočátkový\r\nPočátky\r\npočatý\r\npočatý\r\nPočepice\r\npočepický\r\nPočernice\r\npočernický\r\npočesávací\r\npočesávání\r\npočesávaný\r\npočesávat\r\npočesnekovat\r\npočest\r\npočestnější\r\npočestný\r\npočeštělý\r\npočeštění\r\npočeštěný\r\npočeštit\r\npočeštitelnější\r\npočeštitelný\r\npočešťovací\r\npočešťování\r\npočešťovaný\r\npočešťovat\r\npočešťující\r\npočetí\r\npočetnější\r\npočetnice\r\npočetnický\r\npočetničtější\r\npočetník\r\npočetní\r\npočetný\r\npočet\r\npočíhání\r\npočíhat\r\npočínaje\r\npočínajíc\r\npočínající\r\npočínání\r\npočínaný\r\npočínat\r\npočinek\r\npočin\r\npočíst\r\npočištění\r\npočišťovací\r\npočišťování\r\npočítací\r\npočítačka\r\npočítačový\r\npočítač\r\npočitadélko\r\npočitadlo\r\npočítadlo\r\npočítaje\r\npočítajíc\r\npočítající\r\npočítání\r\npočítaný\r\npočitatelnější\r\npočitatelný\r\npočítatelný\r\npočítat\r\npočít\r\npočítávání\r\npočitek\r\npočkání\r\npočkaný\r\npočkat\r\npočmárání\r\npočmáraný\r\npočmárat\r\npočtářčin\r\npočtářka\r\npočtářský\r\npočtář\r\npočtářův\r\npočtenější\r\npočteníčko\r\npočtení\r\npočtený\r\npočtrnácté\r\npočtvrté\r\npočtyřicáté\r\npočurání\r\npočůrání\r\npočuraný\r\npočůraný\r\npočurat\r\npočůrat\r\npočurávající\r\npočůrávající\r\npočurávaný\r\npočůrávaný\r\npočurávat\r\npočůrávat\r\npod\r\npodací\r\npodadresářový\r\npodadresář\r\npodadresa\r\npodalgebra\r\npodanější\r\npodání\r\nPodaný\r\npodaný\r\npodarovanější\r\npodarování\r\npodarovaný\r\npodarovat\r\npodařenější\r\npodaření\r\npodařený\r\npodařit\r\npodatelna\r\npodat\r\npodávací\r\npodavač\r\npodávající\r\npodávanější\r\npodávání\r\npodávaný\r\npodávat\r\npodávení\r\npodávený\r\npodávit\r\npodávky\r\npodbarvení\r\npodbarvený\r\npodbarvit\r\npodbarvování\r\npodbarvovaný\r\npodbarvovat\r\npodbarvující\r\npodběh\r\npodběhnout\r\npodběhnutí\r\npodběhnutý\r\npodběhovější\r\npodběhový\r\npodběl\r\npodbělový\r\npodběrák\r\npodbíhající\r\npodbíhanější\r\npodbíhání\r\npodbíhaný\r\npodbíhat\r\npodbíhávání\r\npodbíhávaný\r\npodbíhávat\r\npodbiják\r\npodbíječka\r\npodbíjení\r\npodbíjený\r\npodbíjet\r\npodbírat\r\npodbít\r\npodbití\r\npodbit\r\npodbitý\r\npodbízející\r\npodbízení\r\npodbízený\r\npodbízet\r\npodbízivější\r\npodbízivý\r\nPodborský\r\nPodbořansko\r\npodbořanský\r\nPodbořany\r\npodbradek\r\npodbrázdí\r\npodbrdský\r\nPodbřežice\r\npodbřežický\r\npodbřišek\r\npodbřišník\r\npodbuzený\r\npodceněnější\r\npodcenění\r\npodceněný\r\npodcenit\r\npodcenitelnější\r\npodceňování\r\npodceňovaný\r\npodceňovat\r\npodceňující\r\npodcíl\r\npodčárník\r\npodčasový\r\npodčeleď\r\npodčelistní\r\npodčesanější\r\npodčesání\r\npodčesaný\r\npodčesat\r\npodčesávání\r\npodčesávaný\r\npodčesávat\r\npoddajnější\r\npoddajný\r\npoddanější\r\npoddanější\r\npoddání\r\npoddanský\r\npoddanství\r\npoddanštější\r\nPoddaný\r\npoddaný\r\npoddásňový\r\npoddat\r\npoddávající\r\npoddávanější\r\npoddávání\r\npoddávaný\r\npoddávat\r\npoddimenzování\r\npoddimenzovaný\r\npoddimenzovat\r\npoddlužnice\r\npoddlužník\r\npoddlužníkův\r\npoddodávka\r\npoddolování\r\npoddolovaný\r\npoddolovat\r\npoddolovávání\r\npoddolovávaný\r\npoddolovávat\r\npoddoména\r\npoddruh\r\npoddruh\r\npoddruhův\r\npoddůstojnice\r\npoddůstojnický\r\npoddůstojničin\r\npoddůstojničtější\r\npoddůstojník\r\npoddůstojníkův\r\nPoddvorov\r\npoddvorovský\r\npode\r\npodebatování\r\npodebatovaný\r\npodebatovat\r\npodebírající\r\npodebíranější\r\npodebírání\r\npodebíraný\r\npodebírat\r\npoděbradka\r\nPoděbradsko\r\npoděbradský\r\nPoděbrady\r\npodebranější\r\npodebraní\r\npodebrání\r\npodebraný\r\npodebrat\r\npodědění\r\npoděděný\r\npodědit\r\npodedvorský\r\npodehnívání\r\npodehnívaný\r\npodehnívat\r\npodejda\r\npodejdu\r\npoději\r\npodejít\r\npodejití\r\npodejit\r\npodejmout\r\npodejmu\r\npodejmutí\r\npodekování\r\npoděkování\r\npodekovaný\r\npoděkovaný\r\npodekovat\r\npoděkovat\r\npodekovávání\r\npodekovávaný\r\npodekovávat\r\npodél\r\npodělanější\r\npodělání\r\npodělaný\r\npodělat\r\npodělávání\r\npodělávaný\r\npodělávat\r\npodělávka\r\npodělek\r\npodělenější\r\npodělení\r\npodělený\r\npodělit\r\npodělitelnější\r\npodělitelný\r\npodélnější\r\npodélník\r\npodélný\r\npoděl\r\npodělovací\r\npodělovanější\r\npodělování\r\npodělovaný\r\npodělovat\r\npodělovatelnější\r\npodělovatelný\r\npodělující\r\npodemelu\r\npodemílání\r\npodemílaný\r\npodemílat\r\npodemlel\r\npodemlení\r\npodemletější\r\npodemletí\r\npodemlet\r\npodemletý\r\npodemletý\r\npodemlít\r\npodepírající\r\npodepírání\r\npodepíraný\r\npodepírat\r\npodepisovanější\r\npodepisování\r\npodepisovaný\r\npodepisovat\r\npodepisující\r\npodepíši\r\npodepíšu\r\npodeplout\r\npodeplutí\r\npodepřenější\r\npodepření\r\npodepřený\r\npodepřít\r\npodepsal\r\npodepsanější\r\npodepsanější\r\npodepsání\r\npodepsán\r\npodepsaný\r\npodepsáný\r\npodepsat\r\npodesáté\r\npoděsit\r\npodestávka\r\npodesta\r\npodestelu\r\npodestlal\r\npodestlanější\r\npodestlání\r\npodestlaný\r\npodestlat\r\npodestýlání\r\npodestýlaný\r\npodestýlat\r\npodestýlka\r\npodestýlkový\r\npodešel\r\npoděšenější\r\npoděšení\r\npoděšený\r\npodešev\r\nPoděšín\r\npoděšínský\r\npodešlejší\r\npodešlý\r\npodešvový\r\npodetnout\r\npodetnu\r\npodetnutější\r\npodetnutelnější\r\npodetnutelný\r\npodetnutí\r\npodetnutý\r\npodeutektický\r\npodeutektičtější\r\npodevadesáté\r\npodeváté\r\npodevatenácté\r\npodexponování\r\npodexponovaný\r\npodexponovat\r\npodezdění\r\npodezděný\r\npodezdít\r\npodezdívat\r\npodezdívka\r\npodezírající\r\npodezíranější\r\npodezírání\r\npodezíraný\r\npodezírat\r\npodezíravější\r\npodezíravý\r\npodezíravý\r\npodezřelejší\r\npodezřelý\r\npodezřelý\r\npodezření\r\npodezřívání\r\npodezřívaný\r\npodezřívat\r\npodezřívavější\r\npodezřívavý\r\npodfakturování\r\npodfakturovaný\r\npodfakturovat\r\npodfouknout\r\npodfouknutí\r\npodfouknutý\r\npodfuk\r\npodfukování\r\npodfukovaný\r\npodfukovat\r\npodfukovávání\r\npodfukovávaný\r\npodfukovávat\r\nPodgorný\r\npodgraf\r\npodgrupa\r\npodhájí\r\npodhlavník\r\npodhled\r\npodhledový\r\npodhmat\r\npodhmátnutí\r\npodhodit\r\npodhodnocenější\r\npodhodnocení\r\npodhodnocený\r\npodhodnocovanější\r\npodhodnocování\r\npodhodnocovaný\r\npodhodnocovat\r\npodhodnocující\r\npodhodnotit\r\npodhorní\r\nPodhorný\r\nPodhorský\r\npodhorský\r\npodhoubí\r\npodhozenější\r\npodhození\r\npodhozený\r\npodhoz\r\npodhrabanější\r\npodhrabání\r\npodhrabaný\r\npodhrabat\r\npodhrabávání\r\npodhrabávaný\r\npodhrabávat\r\npodhrábnout\r\npodhrábnutější\r\npodhrábnutí\r\npodhrábnutý\r\npodhradí\r\npodhrbolí\r\npodhrnout\r\npodhrnovat\r\npodhrnutý\r\npodhůří\r\npodhustit\r\npodhuštěný\r\npodcházející\r\npodcházenější\r\npodcházení\r\npodcházený\r\npodcházet\r\npodcházívat\r\npodchladit\r\npodchlazení\r\npodchlazený\r\npodchlazovat\r\npodchod\r\npodchycenější\r\npodchycení\r\npodchycený\r\npodchycovanější\r\npodchycování\r\npodchycovaný\r\npodchycovat\r\npodchycovávání\r\npodchycovávaný\r\npodchycovávat\r\npodchycující\r\npodchytávat\r\npodchytit\r\npodchytitelný\r\npodchytnout\r\npodchytnutí\r\npodchytnutý\r\npodílející\r\npodílení\r\npodílet\r\npodíl\r\npodílnice\r\npodílnický\r\npodílnictví\r\npodílník\r\npodílníkův\r\npodílný\r\npodílový\r\npodinvestovaný\r\npódiový\r\npodiskutování\r\npodiskutovat\r\npodít\r\npódium\r\npodívaná\r\npodívání\r\npodívaný\r\npodívat\r\npodivenější\r\npodivení\r\npodiv\r\nPodivice\r\npodivický\r\npodivínčin\r\npodivínka\r\npodivín\r\npodivínský\r\npodivínství\r\npodivínštější\r\npodivínův\r\npodivit\r\npodivnější\r\npodivnůstka\r\npodivný\r\npodivování\r\npodivovat\r\npodivuhodnější\r\npodivuhodný\r\npodjáhenský\r\npodjal\r\npodjatější\r\npodjat\r\npodjatý\r\npodjatý\r\npodjazykový\r\npodjednotka\r\npodjednou\r\npodjedu\r\npodjel\r\npodjení\r\nPodještědí\r\npodještědský\r\npodjetější\r\npodjet\r\npodjetí\r\npodjetý\r\npodjezd\r\npodjezdnější\r\npodjezdní\r\npodjezdný\r\npodjezdový\r\npodjímanější\r\npodjímání\r\npodjímaný\r\npodjímatelnější\r\npodjímatelný\r\npodjímat\r\npodjíždějící\r\npodjíždění\r\npodjížděný\r\npodjíždět\r\npodkaliberní\r\npodkanál\r\npodkapitalizování\r\npodkapitalizovaný\r\npodkapitalizovat\r\npodkapitola\r\npodkarpatoruský\r\npodkarpatský\r\npodkasanější\r\npodkasání\r\npodkasaný\r\npodkasat\r\npodkasávání\r\npodkasávaný\r\npodkasávat\r\npodkategorie\r\npodkládací\r\npodkládající\r\npodkládání\r\npodkládaný\r\npodkladatelnější\r\npodkladatelný\r\npodkládat\r\npodklad\r\npodklad\r\npodkladnější\r\npodkladnice\r\npodkladní\r\npodkladný\r\npodkladovější\r\npodkladový\r\npodklesávat\r\npodklesnout\r\npodklíčkový\r\npodklouzávat\r\npodklouznout\r\npodklouznutí\r\npodkluzování\r\npodkluzovat\r\npodkluzující\r\npodkmen\r\npodkolenka\r\npodkolenní\r\npodkomoří\r\nPodkonický\r\npodkoní\r\npodkopanější\r\npodkopání\r\npodkopaný\r\npodkopat\r\npodkopávající\r\npodkopávání\r\npodkopávaný\r\npodkopávat\r\npodkop\r\npodkopnout\r\npodkopnutí\r\npodkopnutý\r\npodkopový\r\npodkorodování\r\npodkorový\r\npodkošový\r\npodkovářský\r\npodkovář\r\npodkovářův\r\npodkova\r\npodkovička\r\npodkovka\r\npodkovovitý\r\npodkovový\r\npodkoží\r\npodkožní\r\npodkresba\r\npodkreslení\r\npodkreslený\r\npodkreslit\r\npodkreslování\r\npodkreslovaný\r\npodkreslovat\r\npodkreslovávání\r\npodkreslovávaný\r\npodkreslovávat\r\npodkreslující\r\npodkritický\r\npodkritičný\r\nPodkrkonoší\r\npodkrkonoší\r\npodkrkonošský\r\npodkročení\r\npodkroví\r\npodkrovní\r\npodkrušnohorský\r\npodkurie\r\npodkuřování\r\npodkuřovaný\r\npodkuřovat\r\npodkuřující\r\npodkus\r\npodkůvka\r\npodlahářčin\r\npodlahářka\r\npodlahářství\r\npodlahář\r\npodlahářův\r\npodlaha\r\npodlahovější\r\npodlahovina\r\npodlahový\r\npodlamování\r\npodlamovaný\r\npodlamovat\r\npodlamovávání\r\npodlamovávaný\r\npodlamovávat\r\npodlamující\r\npodlaží\r\npodlážka\r\npodlcův\r\npodle\r\npodlec\r\npodléhající\r\npodléhání\r\npodléhat\r\npodléhávání\r\npodléhávat\r\npodlehnout\r\npodlehnutí\r\npodlejší\r\npodlepení\r\npodlepený\r\npodlepit\r\npodlepovací\r\npodlepování\r\npodlepovaný\r\npodlepovat\r\nPodlešáková\r\nPodlešák\r\nPodlešákův\r\nPodlešín\r\npodlešínský\r\npodléška\r\npodlétání\r\npodlétaný\r\npodlétat\r\npodlétávající\r\npodlétávání\r\npodlétávat\r\npodletění\r\npodletěný\r\npodletět\r\npodlet\r\npodletnější\r\npodlétnout\r\npodlétnutí\r\npodlévající\r\npodlévání\r\npodlévaný\r\npodlévat\r\npodlézající\r\npodlézanější\r\npodlézání\r\npodlézaný\r\npodlézat\r\npodlézavcův\r\npodlézavec\r\npodlézavější\r\npodlézavý\r\npodlezenější\r\npodlezení\r\npodlezený\r\npodlézt\r\npodlimitní\r\nPodlipný\r\npodlítání\r\npodlítaný\r\npodlítat\r\npodlít\r\npodlitina\r\npodlití\r\npodlítnout\r\npodlítnutí\r\npodlit\r\npodlitý\r\npodlívanější\r\npodlívání\r\npodlívaný\r\npodlívat\r\npodlízavcův\r\npodlízavec\r\npodlízavý\r\npodlomenější\r\npodlomení\r\npodlomený\r\npodlomit\r\npodloubí\r\npodloudnější\r\npodloudnický\r\npodloudnictví\r\npodloudničtější\r\npodloudník\r\npodloudníkův\r\npodloudný\r\npodlouhlejší\r\npodlouhlý\r\npodloženější\r\npodložení\r\npodložený\r\npodloží\r\npodložit\r\npodložka\r\npodložní\r\npodlož\r\npodluží\r\npodlý\r\npodmáčený\r\npodmalování\r\npodmalovaný\r\npodmalovat\r\npodmalovávání\r\npodmalovávaný\r\npodmalovávat\r\npodmanění\r\npodmaněný\r\npodmanit\r\npodmanivější\r\npodmanivý\r\npodmaňování\r\npodmaňovaný\r\npodmaňovat\r\npodmaňující\r\npodmaršálkův\r\npodmáslí\r\npodmásník\r\npodmazanější\r\npodmazání\r\npodmazaný\r\npodmazat\r\npodmazávající\r\npodmazávání\r\npodmazávaný\r\npodmazávat\r\npodmáznout\r\npodmáznutí\r\npodmáznutý\r\npodmenu\r\npodměrečný\r\npodmést\r\npodmetání\r\npodmetaný\r\npodmetat\r\npodmetávání\r\npodmetávaný\r\npodmetávat\r\npodmetení\r\npodmetený\r\npodmět\r\npodmětný\r\npodmětový\r\npodmětový\r\npodmílat\r\npodmínečnější\r\npodmínečný\r\npodmíněnější\r\npodmínění\r\npodmíněn\r\npodmíněný\r\npodmínit\r\npodmínka\r\npodmínkou\r\npodmínkový\r\npodmínky\r\npodmiňovací\r\npodminování\r\npodmiňování\r\npodmiňovaný\r\npodminovat\r\npodmiňovat\r\npodminovávání\r\npodminovávaný\r\npodminovávat\r\npodmiňující\r\npodmítka\r\npodmítnout\r\npodmnožina\r\npodmočení\r\npodmočený\r\npodmočit\r\npodmokelský\r\npodmok\r\nPodmokly\r\npodmořský\r\npodmračenější\r\npodmračený\r\npodmračnější\r\npodnabídka\r\npodnadpis\r\npodnájemce\r\npodnájemcův\r\npodnájemnice\r\npodnájemničin\r\npodnájemník\r\npodnájemníkův\r\npodnájemní\r\npodnájem\r\npodnajímání\r\npodnajímaný\r\npodnajímat\r\npodnapilejší\r\npodnapilý\r\npodnebí\r\npodnební\r\npodnebný\r\npodněcování\r\npodněcovaný\r\npodněcovat\r\npodněcovatelčin\r\npodněcovatelka\r\npodněcovatelský\r\npodněcovatelštější\r\npodněcovatel\r\npodněcovatelův\r\npodněcující\r\npodnět\r\npodnětnější\r\npodnětný\r\npodnícenější\r\npodnícení\r\npodnícený\r\npodnikající\r\npodnikání\r\npodnikaný\r\npodnikatelčin\r\npodnikatelka\r\npodnikatelský\r\npodnikatelství\r\npodnikatelštější\r\npodnikatel\r\npodnikatelův\r\npodnikat\r\npodnikavcův\r\npodnikavec\r\npodnikavější\r\npodnikavý\r\npodnik\r\npodniknout\r\npodniknutější\r\npodniknutelnější\r\npodniknutelný\r\npodniknutí\r\npodniknutý\r\npodniknutý\r\npodnikohospodářský\r\npodnikový\r\npodnítit\r\npodnormální\r\npodnos\r\npodnožka\r\npodnožník\r\npodnožový\r\npodnož\r\npodobající\r\npoďobanější\r\npodobání\r\npoďobaný\r\npoďobat\r\npodobat\r\npodobávání\r\npodobávat\r\npodoba\r\npodobenka\r\npodoben\r\npodobenství\r\npodobizna\r\npodobjekt\r\npodoblast\r\npodobnější\r\npodobnostní\r\npodobný\r\npodobojí\r\npodobor\r\npodocasní\r\npodoční\r\npododdělení\r\npododdíl\r\npododstavec\r\npodojení\r\npodojený\r\npodojit\r\npodokenní\r\nPodolanka\r\npodolek\r\nPodolí\r\npodolský\r\npodolský\r\npodomácku\r\npodomácký\r\npodomek\r\npodomkův\r\npodomní\r\nPodorlicko\r\npodorlický\r\npodorniční\r\npodotázka\r\npodotčení\r\npodotčený\r\npodotknout\r\npodotknutí\r\npodotknutý\r\npodotýkání\r\npodotýkaný\r\npodotýkat\r\npodouství\r\npodpálenější\r\npodpálení\r\npodpálený\r\npodpal\r\npodpálit\r\npodpalovací\r\npodpalovač\r\npodpalovanější\r\npodpalovaní\r\npodpalování\r\npodpalovaný\r\npodpalovat\r\npodpalovávání\r\npodpalovávaný\r\npodpalovávat\r\npodpalubí\r\npodpalující\r\npodparlament\r\npodpatek\r\npodpatkový\r\npodpaždí\r\npodpaží\r\npodpažní\r\npodpěra\r\npodpěrka\r\npodpěrný\r\npodpětí\r\npodpíchnout\r\npodpichovat\r\npodpinka\r\npodpírající\r\npodpíranější\r\npodpírání\r\npodpíraný\r\npodpírat\r\npodpis\r\npodpiska\r\npodpisování\r\npodpisovaný\r\npodpisovat\r\npodpisovatelčin\r\npodpisovatelka\r\npodpisovatel\r\npodpisovatelův\r\npodpisový\r\npodpisující\r\npodplácející\r\npodplacenější\r\npodplácenější\r\npodplacení\r\npodplácení\r\npodplacený\r\npodplácený\r\npodplácet\r\npodplatit\r\npodplatitelnější\r\npodplatitelný\r\npodplavání\r\npodplavat\r\npodplavávání\r\npodplavávaný\r\npodplavávat\r\npodplavejme\r\npodplavej\r\npodplavejte\r\npodplout\r\npodplouvání\r\npodplouvaný\r\npodplouvat\r\npodplukovnice\r\npodplukovničin\r\npodplukovník\r\npodplukovníkův\r\npodplutí\r\npodplutý\r\npodpobočka\r\npodpole\r\npodpologrupa\r\npodpoloviční\r\npodpoložka\r\npodpora\r\npodporovač\r\npodporovačův\r\npodporování\r\npodporovaný\r\npodporovat\r\npodporovatelčin\r\npodporovatelka\r\npodporovatel\r\npodporovatelův\r\npodporovávat\r\npodporový\r\npodporučice\r\npodporučičin\r\npodporučík\r\npodporučíkův\r\npodporující\r\npodpoření\r\npodpořený\r\npodpořit\r\npodpovrchový\r\npodprahový\r\npodpraporčice\r\npodpraporčík\r\npodpraporčíkův\r\npodprefekt\r\npodprefektův\r\npodproblém\r\npodproces\r\npodprogram\r\npodprostor\r\npodprsenka\r\npodprůměr\r\npodprůměrnější\r\npodprůměrný\r\npodpříkaz\r\npodpultový\r\npodpůrčí\r\npodpůrnější\r\npodpůrný\r\nPodrábský\r\npodrápající\r\npodrápanější\r\npodrápání\r\npodrápaný\r\npodrápat\r\nPodrápský\r\npodrazák\r\npodrazákův\r\npodraz\r\npodrazit\r\nPodrázský\r\npodrážděnější\r\npodráždění\r\npodrážděný\r\npodráždit\r\npodražení\r\npodrážení\r\npodražený\r\npodrážený\r\npodrážet\r\npodražit\r\npodrážka\r\npodrážkový\r\npodrbání\r\npodrbaný\r\npodrbat\r\npodrbávání\r\npodrbávaný\r\npodrbávat\r\npodrcení\r\npodrcený\r\npodrobenější\r\npodrobení\r\npodrobený\r\npodrobit\r\npodrobivý\r\npodrobnější\r\npodrobný\r\npodrobování\r\npodrobovaný\r\npodrobovat\r\npodrobovávání\r\npodrobovávaný\r\npodrobovávat\r\npodrost\r\npodroštový\r\npodroušenější\r\npodroušen\r\npodroušený\r\nPodroužek\r\nPodroužková\r\nPodroužkův\r\npodrozmazávanější\r\npodrozmazávaný\r\npodrozvaha\r\npodrozvahový\r\npodrtit\r\npodručí\r\npodručka\r\npodruhé\r\npodruh\r\npodruhův\r\npodružnější\r\npodružný\r\npodrýt\r\npodrytí\r\npodrytý\r\npodrývající\r\npodrývák\r\npodrývání\r\npodrývaný\r\npodrývat\r\npodryvnější\r\npodrženější\r\npodržení\r\npodržený\r\npodržet\r\npodržovanější\r\npodržování\r\npodržovaný\r\npodržovat\r\npodržující\r\npodřadění\r\npodřaděný\r\npodřaděný\r\npodřád\r\npodřadicí\r\npodřadící\r\npodřadit\r\npodřaditelnější\r\npodřaditelný\r\npodřadnější\r\npodřadný\r\npodřaďovat\r\npodřazenější\r\npodřazení\r\npodřazený\r\npodřazovanější\r\npodřazování\r\npodřazovaný\r\npodřazovat\r\npodřazovatelnější\r\npodřazovatelný\r\npodřekl\r\npodřeknout\r\npodřeknu\r\npodřeknutí\r\npodřep\r\npodřetězec\r\npodřezání\r\npodřezaný\r\npodřezat\r\npodřezávající\r\npodřezávání\r\npodřezávaný\r\npodřezávat\r\npodřez\r\npodříci\r\npodříct\r\npodřídit\r\npodřimování\r\npodřimovat\r\npodřimující\r\nPodřipsko\r\npodřízenější\r\npodřízení\r\npodřízený\r\npodříznout\r\npodříznutí\r\npodříznutý\r\npodřizovanější\r\npodřizování\r\npodřizovaný\r\npodřizovat\r\npodřizující\r\npodsada\r\npodsadit\r\npodsaditější\r\npodsaditý\r\npodsádka\r\npodsazenější\r\npodsazení\r\npodsazený\r\npodsazovat\r\nPodsedice\r\npodsedický\r\nPodsedníček\r\nPodsedníčková\r\nPodsedníčkův\r\npodsední\r\npodsekanější\r\npodsekání\r\npodsekaný\r\npodsekat\r\npodsekávání\r\npodsekávaný\r\npodsekávat\r\npodsekce\r\npodsestava\r\npodseznam\r\npodsíť\r\npodskákanější\r\npodskákání\r\npodskákáno\r\npodskákaný\r\npodskákat\r\npodskakovanější\r\npodskakování\r\npodskakovaný\r\npodskakovat\r\npodskakovávání\r\npodskakovávaný\r\npodskakovávat\r\nPodskalí\r\npodsklepení\r\npodsklepený\r\npodsklepit\r\npodskočenější\r\npodskočení\r\npodskočený\r\npodskočit\r\npodskupina\r\npodslovník\r\npodsložka\r\npodslupka\r\npodsoubor\r\npodsouvání\r\npodsouvaný\r\npodsouvat\r\npodst\r\npodstál\r\npodstanice\r\npodstaní\r\npodstata\r\npodstát\r\npodstát\r\npodstatnější\r\npodstatný\r\npodstava\r\npodstavba\r\npodstavcový\r\npodstavec\r\npodstaveček\r\npodstavený\r\npodstav\r\npodstavit\r\npodstávka\r\npodstávkový\r\npodstavovat\r\npodstojím\r\npodstolí\r\npodstoupení\r\npodstoupený\r\npodstoupit\r\npodstránka\r\npodstrčení\r\npodstrčený\r\npodstrčit\r\npodstrkávání\r\npodstrkávaný\r\npodstrkávat\r\npodstrkování\r\npodstrkovaný\r\npodstrkovat\r\npodstrojovat\r\npodstrom\r\npodstruktura\r\npodstřeší\r\npodstřešní\r\npodstůjme\r\npodstůj\r\npodstůjte\r\npodstupování\r\npodstupovaný\r\npodstupovat\r\npodstupující\r\npodsunout\r\npodsunovat\r\npodsunutí\r\npodsunutý\r\npodsvaz\r\npodsvětí\r\npodsvětlení\r\npodsvětlený\r\npodsvětlit\r\npodsvětní\r\npodsvětový\r\npodsvícení\r\npodsvícený\r\npodsvinčátko\r\npodsvinče\r\npodsvítit\r\npodsypající\r\npodsypanější\r\npodsypání\r\npodsýpání\r\npodsypaný\r\npodsýpaný\r\npodsypat\r\npodsýpat\r\npodsypávající\r\npodsypávanější\r\npodsypávání\r\npodsypávaný\r\npodsypávat\r\npodsystém\r\npodšálek\r\npodšít\r\npodšitější\r\npodšití\r\npodšitý\r\npodšitý\r\npodšívání\r\npodšívat\r\npodšívka\r\npodšívkovina\r\npodšívkový\r\npodškrtat\r\npodškrtávat\r\npodškrtnout\r\nPodškubka\r\nPodškubková\r\nPodškubkův\r\npodtáhnout\r\npodtáhnutí\r\npodťal\r\npodtančení\r\npodtančený\r\npodtančit\r\npodťatější\r\npodťat\r\npodťatý\r\npodťatý\r\npodťav\r\npodtaženější\r\npodtažení\r\npodtažený\r\npodtažitelnější\r\npodtažitelný\r\npodtéct\r\npodtečení\r\npodtečkovat\r\npodtékající\r\npodtékání\r\npodtékaný\r\npodtékat\r\npodteklejší\r\npodteklý\r\npodtéma\r\npodtětí\r\npodtext\r\npodtextový\r\npodtínat\r\npodtisk\r\npodtisknout\r\npodtisknutí\r\npodtisknutý\r\npodtištění\r\npodtištěný\r\npodtít\r\npodtitulek\r\npodtitul\r\npodtlak\r\npodtlakový\r\npodtočení\r\npodtočený\r\npodtočit\r\npodtón\r\npodtrhající\r\npodtrhanější\r\npodtrhání\r\npodtrhaný\r\npodtrhat\r\npodtrhávající\r\npodtrhávanější\r\npodtrhávání\r\npodtrhávaný\r\npodtrhávat\r\npodtrhnout\r\npodtrhnutější\r\npodtrhnutí\r\npodtrhnutý\r\npodtrhování\r\npodtrhovaný\r\npodtrhovat\r\npodtrhující\r\npodtržení\r\npodtržený\r\npodtržítko\r\npodtřída\r\npodtyp\r\npodúčet\r\npodúčtě\r\npodujatý\r\npodumat\r\nPodunají\r\npodunajská\r\npodunajský\r\npodupanější\r\npodupání\r\npodupaný\r\npodupat\r\npodupávanější\r\npodupávání\r\npodupávaný\r\npodupávat\r\npodupu\r\npodúrovňový\r\npodúředník\r\npodúředníkův\r\npodusanější\r\npodusání\r\npodusaný\r\npodusat\r\npodusávání\r\npodusávat\r\npodusit\r\npodušení\r\npodušený\r\npoduška\r\npoduškovitý\r\npodvacáté\r\npodvádějící\r\npodváděnější\r\npodvádění\r\npodváděný\r\npodvádět\r\npodvádivější\r\npodvádivý\r\npodval\r\npodvalovací\r\npodvalování\r\npodvalovaný\r\npodvalovat\r\nPodvalová\r\nPodval\r\nPodvalův\r\npodvanácté\r\npodvarianta\r\npodvázanější\r\npodvázání\r\npodvázaný\r\npodvázat\r\npodvazek\r\npodvazkový\r\npodvazovanější\r\npodvazování\r\npodvazovaný\r\npodvazovat\r\npodvazující\r\npodváži\r\npodvážka\r\npodvečer\r\npodvečerní\r\npodvedenější\r\npodvedení\r\npodveden\r\npodvedený\r\npodvedl\r\npodvědomější\r\npodvědomý\r\npodvedu\r\npodverze\r\npodvěsek\r\npodvěs\r\npodvěska\r\npodvést\r\npodvléct\r\npodvlečenější\r\npodvlečení\r\npodvlečený\r\npodvlékačky\r\npodvlékl\r\npodvléknutí\r\npodvlíkačky\r\npodvod\r\npodvodnější\r\npodvodnice\r\npodvodnictví\r\npodvodníček\r\npodvodničin\r\npodvodníčkův\r\npodvodničtější\r\npodvodník\r\npodvodníkův\r\npodvodní\r\npodvodný\r\npodvojnější\r\npodvojný\r\npodvolení\r\npodvolený\r\npodvolit\r\npodvolování\r\npodvolovaný\r\npodvolovat\r\npodvolovávání\r\npodvolovávaný\r\npodvolovávat\r\npodvozek\r\npodvozkový\r\npodvraceč\r\npodvracečův\r\npodvracející\r\npodvrácenější\r\npodvracení\r\npodvrácení\r\npodvracený\r\npodvrácený\r\npodvracet\r\npodvraťáčtější\r\npodvrátit\r\npodvratnější\r\npodvratník\r\npodvratný\r\npodvrh\r\npodvrhnout\r\npodvrhnutí\r\npodvrhování\r\npodvrhovaný\r\npodvrhovat\r\npodvrstva\r\npodvrší\r\npodvrtnout\r\npodvrtnutí\r\npodvrtnutý\r\npodvrženější\r\npodvržení\r\npodvržený\r\npodvůdek\r\npodvýbor\r\npodvýraz\r\npodvýroba\r\npodvýživa\r\npodvyživenější\r\npodvyživený\r\npodvzor\r\nPodyjí\r\npodyjský\r\npodzákonný\r\npodzámčí\r\npodzaměstnaný\r\npodzástava\r\npodzástavní\r\npodzemí\r\npodzemka\r\npodzemnější\r\npodzemnice\r\npodzemnicový\r\npodzemní\r\nPodzemský\r\nPodzimek\r\npodzim\r\nPodzimková\r\npodzimkový\r\nPodzimkův\r\npodzimnější\r\npodzimní\r\npodzol\r\npodzolový\r\npodzvíře\r\npodzvukový\r\npodžebří\r\nPoeková\r\nPoek\r\nPoekův\r\npoema\r\npoéma\r\npoesie\r\npoeta\r\npoetčin\r\npoetický\r\npoetičtější\r\npoetika\r\npoetismus\r\npoetista\r\npoetistčin\r\npoetistický\r\npoetistka\r\npoetistův\r\npoetizace\r\npoetizování\r\npoetizovaný\r\npoetizovat\r\npoetizující\r\npoetka\r\npoetův\r\npoevropštění\r\npoevropštěný\r\npoevropštit\r\npoevropšťování\r\npoevropšťovaný\r\npoevropšťovat\r\npoezie\r\npofidérní\r\npoflakování\r\npoflakovaný\r\npoflakovat\r\npoflakující\r\npofňukání\r\npofňukat\r\npofňukávání\r\npofňukávat\r\npofoukání\r\npofoukaný\r\npofoukat\r\npofoukávání\r\npofoukávaný\r\npofoukávat\r\npofrancouzštění\r\npofrancouzštěný\r\npofrancouzštit\r\npofukování\r\npofukovaný\r\npofukovat\r\npofukovávání\r\npofukovávaný\r\npofukovávat\r\npofukující\r\npogratulování\r\npogratulovaný\r\npogratulovat\r\npogrom\r\npogromista\r\npogromistčin\r\npogromistka\r\npogromistův\r\npogum\r\npogumování\r\npogumovaný\r\npogumovat\r\npohádání\r\npohádaný\r\npohádat\r\npohádkářčin\r\npohádkářka\r\npohádkář\r\npohádkářův\r\npohádka\r\npohádkovější\r\npohádkový\r\npohana\r\npoháněcí\r\npoháněč\r\npoháněčův\r\npohánějící\r\npoháněnější\r\npohaněnější\r\npohanění\r\npohánění\r\npohaněný\r\npoháněný\r\npohanět\r\npohánět\r\npohanit\r\nPohanka\r\npohanka\r\npoháňka\r\nPohanková\r\npohankový\r\nPohankův\r\npohan\r\npohanský\r\npohanství\r\npohanštější\r\npohanův\r\npohárek\r\npohár\r\npohárový\r\npohasínající\r\npohasínání\r\npohasínaný\r\npohasínat\r\npohaslejší\r\npohaslý\r\npohasnout\r\npohasnutí\r\npohasnutý\r\npohašteřit\r\npoházenější\r\npoházení\r\npoházený\r\npoházet\r\npohazování\r\npohazovaný\r\npohazovat\r\npohladit\r\npohlavár\r\npohlavárův\r\npohlavek\r\npohlaví\r\npohlavkování\r\npohlavkovaný\r\npohlavkovat\r\npohlavkovávání\r\npohlavkovávaný\r\npohlavkovávat\r\npohlavnější\r\npohlavní\r\npohlazení\r\npohlazený\r\npohlcení\r\npohlcený\r\npohlcovač\r\npohlcování\r\npohlcovaný\r\npohlcovat\r\npohlcovávání\r\npohlcovávaný\r\npohlcovávat\r\npohlcující\r\npohledání\r\npohledaný\r\npohledat\r\npohledávání\r\npohledávat\r\npohledávka\r\npohledávkový\r\npohledění\r\npohledět\r\npohled\r\npohledka\r\npohlednější\r\npohlednice\r\npohlednicový\r\npohlédnout\r\npohlédnul\r\npohlédnutí\r\npohledný\r\npohledový\r\npohlídání\r\npohlídaný\r\npohlídat\r\npohlídnout\r\npohlídnul\r\npohliníkovaný\r\npohlížející\r\npohlížení\r\npohlíženo\r\npohlížet\r\nPohlová\r\nPohl\r\npohltit\r\npohltivý\r\nPohlův\r\npohmat\r\npohmatový\r\npohmožděnina\r\npohmoždění\r\npohmožděný\r\npohmoždit\r\npohnal\r\npohnánecký\r\nPohnánec\r\npohnanější\r\npohnání\r\npohnán\r\npohnaný\r\npohnat\r\npohněvanější\r\npohněvání\r\npohněvaný\r\npohněvat\r\npohnojení\r\npohnojený\r\npohnojit\r\npohnout\r\npohnutější\r\npohnutí\r\npohnutka\r\npohnutlivější\r\npohnutlivý\r\npohnutý\r\npohnutý\r\npohoda\r\npohodička\r\npohodit\r\npohodlíčko\r\npohodlí\r\npohodlí\r\npohodlnější\r\npohodlnění\r\npohodlnět\r\npohodlný\r\npohodnout\r\npohodnutí\r\npohodný\r\npohodový\r\npohonění\r\npohoněný\r\npohon\r\npohonit\r\npohonný\r\npohopsávání\r\npohorka\r\npohorský\r\npohoršení\r\npohoršený\r\npohoršit\r\npohoršlivější\r\npohoršlivý\r\npohoršování\r\npohoršovaný\r\npohoršovat\r\npohoršující\r\nPohořelice\r\npohořelický\r\npohořelý\r\npohoření\r\npohořený\r\npohořet\r\npohoří\r\npohospitační\r\npohostinnější\r\npohostinný\r\npohostinský\r\npohostinství\r\npohostinštější\r\npohostit\r\npohoštění\r\npohoštěný\r\npohotovější\r\npohotovostnější\r\npohotovostní\r\npohotový\r\npohoupání\r\npohoupaný\r\npohoupat\r\npohoupávání\r\npohoupávat\r\npohovění\r\npohovět\r\npohov\r\npohovka\r\npohovkový\r\npohovor\r\npohovoření\r\npohovořený\r\npohovořit\r\npohozenější\r\npohození\r\npohozený\r\npohrabáč\r\npohrabanější\r\npohrabání\r\npohrabaný\r\npohrabat\r\npohrabávání\r\npohrabávaný\r\npohrabávat\r\npohrabovač\r\npohrabování\r\npohrabovaný\r\npohrabovat\r\npohrabovávání\r\npohrabovávaný\r\npohrabovávat\r\npohranější\r\npohraničí\r\npohraničník\r\npohraničníkův\r\npohraniční\r\npohraniční\r\npohrání\r\npohraný\r\npohrát\r\npohrávající\r\npohrávanější\r\npohrávání\r\npohrávaný\r\npohrávat\r\npohrdající\r\npohrdání\r\npohrdat\r\npohrdavější\r\npohrdavost\r\npohrdavý\r\npohrdlivější\r\npohrdlivý\r\npohrdnout\r\npohrdnutí\r\npohrobek\r\npohrobkův\r\npohromadě\r\npohroma\r\npohroužení\r\npohroužený\r\npohroužit\r\npohrození\r\npohrozený\r\npohrozit\r\npohrudnice\r\npohrudniční\r\npohrůžka\r\npohryzající\r\npohryzanější\r\npohryzání\r\npohryzaný\r\npohryzat\r\npohryzávání\r\npohryzávaný\r\npohryzávat\r\npohřbe\r\npohřbech\r\npohřbem\r\npohřbení\r\npohřbený\r\npohřbít\r\npohřbívání\r\npohřbívaný\r\npohřbívat\r\npohřbu\r\npohřbů\r\npohřbům\r\npohřby\r\npohřeb\r\npohřebák\r\npohřebákův\r\npohřebiště\r\npohřebištní\r\npohřebnější\r\npohřebné\r\npohřebnictví\r\npohřební\r\npohřešit\r\npohřešování\r\npohřešovaný\r\npohřešovat\r\npohříchu\r\npohřížení\r\npohřížený\r\npohřížit\r\npohublý\r\npohubnout\r\npohůnek\r\npohůnkův\r\npohupování\r\npohupovaný\r\npohupovat\r\npohupující\r\npohvizdování\r\npohvizdovaný\r\npohvizdovat\r\npohvizdující\r\npohyb\r\npohyblivější\r\npohyblivý\r\npohybný\r\npohybování\r\npohybovaný\r\npohybovat\r\npohybovávání\r\npohybovávat\r\npohybovější\r\npohybový\r\npohybující\r\npohýčkání\r\npohýčkaný\r\npohýčkat\r\npohynutí\r\npohýření\r\npohýřený\r\npohýřit\r\npochabnout\r\npocházející\r\npocházení\r\npocházet\r\npocházívat\r\npocházka\r\npochcípání\r\npochcípat\r\npochechtávání\r\npochechtávat\r\npochichtávání\r\npochichtávaný\r\npochichtávat\r\npochlapení\r\npochlapit\r\npochlebnice\r\npochlebničin\r\npochlebník\r\npochlebníkův\r\npochlebovačnější\r\npochlebování\r\npochlebovaný\r\npochlebovat\r\npochlebující\r\npochlubení\r\npochlubený\r\npochlubit\r\npochmurnatka\r\npochmurnější\r\npochmurný\r\npochodění\r\npochodeň\r\npochod\r\npochodit\r\npochodňový\r\npochodování\r\npochodovaný\r\npochodovat\r\npochodovávání\r\npochodovávaný\r\npochodovávat\r\npochodový\r\npochodující\r\npochopenější\r\npochopení\r\npochopený\r\npochopit\r\npochopitelnější\r\npochopitelný\r\nPochopová\r\nPochop\r\nPochopův\r\npochoutka\r\npochoutkový\r\npochování\r\npochovaný\r\npochovat\r\npochovávání\r\npochovávaný\r\npochovávat\r\npochození\r\npochromovanější\r\npochrómovanější\r\npochromování\r\npochromovaný\r\npochrómovaný\r\npochromovat\r\npochrómovat\r\npochroumání\r\npochroumaný\r\npochroumat\r\npochudlejší\r\npochudlý\r\npochutina\r\npochutnání\r\npochutnat\r\npochutnávající\r\npochutnávání\r\npochutnávaný\r\npochutnávat\r\npochůzkářčin\r\npochůzkářka\r\npochůzkář\r\npochůzkářův\r\npochůzka\r\npochůzkový\r\npochůzný\r\npochvala\r\npochválení\r\npochválený\r\npochválit\r\npochvalnější\r\npochvalný\r\npochvalování\r\npochvalovaný\r\npochvalovat\r\npochvalovávání\r\npochvalovávat\r\nPochvalov\r\npochvalovský\r\npochva\r\npochyba\r\npochybenější\r\npochybení\r\npochybený\r\npochybit\r\npochybnější\r\npochybný\r\npochybovačnější\r\npochybovačný\r\npochybovač\r\npochybovačův\r\npochybování\r\npochybovat\r\npochybující\r\npochycenější\r\npochycení\r\npochycený\r\npochytanější\r\npochytání\r\npochytaný\r\npochytat\r\npochytávání\r\npochytávaný\r\npochytávat\r\npochytit\r\npochytnout\r\npochytnutí\r\npochytnutý\r\npoinformování\r\npoinformovaný\r\npoinformovat\r\npointace\r\npointa\r\npointilismus\r\npointilistický\r\npointování\r\npointovaný\r\npointovat\r\npointovávání\r\npointovávaný\r\npointovávat\r\npointující\r\nPoirot\r\nPoisson\r\nPoissonův\r\npoitalštění\r\npoitalštěný\r\npoitalštit\r\npojal\r\npojatější\r\npojat\r\npojatý\r\npojď\r\npojda\r\npojďme\r\npojďte\r\npojdu\r\npojedenácté\r\npojedení\r\npojedený\r\npojednací\r\npojednající\r\npojednanější\r\npojednání\r\npojednáno\r\npojednaný\r\npojednat\r\npojednávací\r\npojednávající\r\npojednávanější\r\npojednávání\r\npojednávaný\r\npojednávat\r\npojednou\r\npojedu\r\npojem\r\npojení\r\npojený\r\nPojerová\r\nPojer\r\nPojerův\r\npojetí\r\npojezd\r\npojezdní\r\npojezdný\r\npojezdový\r\npojící\r\npojídající\r\npojídání\r\npojídaný\r\npojídat\r\npojídávání\r\npojídávaný\r\npojídávat\r\npojidlo\r\npojímající\r\npojímání\r\npojímaný\r\npojímat\r\npojistit\r\npojistitelčin\r\npojistitelka\r\npojistitelnější\r\npojistitelný\r\npojistitel\r\npojistitelův\r\npojíst\r\npojistka\r\npojistkový\r\npojistník\r\npojistníkův\r\npojistný\r\npojištěncův\r\npojištěnčin\r\npojištěnecký\r\npojištěnec\r\npojištění\r\npojištěnka\r\npojištěný\r\npojišťovací\r\npojišťovák\r\npojišťovákův\r\npojišťovanější\r\npojišťování\r\npojišťovaný\r\npojišťovat\r\npojišťovatelčin\r\npojišťovatelka\r\npojišťovatel\r\npojišťovatelův\r\npojišťovna\r\npojišťovnictví\r\npojišťující\r\npojit\r\npojít\r\npojití\r\npojítko\r\npojítkový\r\npojivější\r\npojivo\r\npojivový\r\npojivý\r\npojízdnější\r\npojízdnější\r\npojízdný\r\nPojizeří\r\npojíždějící\r\npojíždění\r\npojíždět\r\npojížďka\r\npojkročilejší\r\npojmenovací\r\npojmenovanější\r\npojmenování\r\npojmenovaný\r\npojmenovat\r\npojmenovatelčin\r\npojmenovatelka\r\npojmenovatelnější\r\npojmenovatelný\r\npojmenovatel\r\npojmenovatelův\r\npojmenovávací\r\npojmenovávající\r\npojmenovávanější\r\npojmenovávání\r\npojmenovávaný\r\npojmenovávat\r\npojmosloví\r\npojmout\r\npojmovější\r\npojmový\r\npojmu\r\npojmutí\r\npokácení\r\npokácený\r\npokácet\r\npokakání\r\npokakat\r\npokakávání\r\npokakávat\r\npokálenější\r\npokálení\r\npokálený\r\npokálet\r\npokání\r\npokaňkání\r\npokaňkaný\r\npokaňkat\r\npokapanější\r\npokapání\r\npokapaný\r\npokapat\r\npokapávání\r\npokapávaný\r\npokapávat\r\npokapu\r\npokárání\r\npokáraný\r\npokárat\r\npokašlání\r\npokašlaný\r\npokašlat\r\npokašlávající\r\npokašlávání\r\npokašlávaný\r\npokašlávat\r\npokatoličtění\r\npokatoličtěný\r\npokatoličtit\r\npokazit\r\npokaždé\r\npokaženější\r\npokažení\r\npokažený\r\npokecání\r\npokecaný\r\npokecat\r\npoker\r\npokerový\r\npoklábosení\r\npoklábosit\r\npokládací\r\npokladač\r\npokládající\r\npokládanější\r\npokládání\r\npokládaný\r\npokládat\r\npokladení\r\npokladený\r\npoklad\r\npoklad\r\npokládka\r\npokladna\r\npokladnice\r\npokladničin\r\npokladnička\r\npokladniční\r\npokladník\r\npokladníkův\r\npokladní\r\npoklást\r\npoklekání\r\npoklekáno\r\npoklekat\r\npoklekávání\r\npoklekávat\r\npoklek\r\npokleknout\r\npokleknutí\r\npokleknutý\r\npoklepanější\r\npoklepání\r\npoklepaný\r\npoklepat\r\npoklepávací\r\npoklepávající\r\npoklepávanější\r\npoklepávání\r\npoklepávaný\r\npoklepávat\r\npoklep\r\npoklepnout\r\npoklepnutější\r\npoklepnutí\r\npoklepnutý\r\npoklepnutý\r\npoklepový\r\npoklesání\r\npoklesat\r\npoklesávající\r\npoklesávání\r\npoklesávat\r\npoklesek\r\npokles\r\npokleslejší\r\npokleslý\r\npoklesnout\r\npoklesnutí\r\npoklesový\r\npoklice\r\npoklička\r\npokličkovitý\r\npoklid\r\npoklidit\r\npoklidnější\r\npoklidný\r\npoklimbání\r\npoklimbat\r\npoklimbávající\r\npoklimbávání\r\npoklimbávat\r\npoklizení\r\npoklízení\r\npoklizený\r\npoklízený\r\npoklízet\r\npoklofat\r\npoklona\r\npokloněnější\r\npoklonění\r\npokloněný\r\npoklonit\r\npoklonka\r\npoklonkování\r\npoklonkovaný\r\npoklonkovat\r\npoklonkovávání\r\npoklonkovávat\r\npoklonkující\r\npoklopcový\r\npoklopec\r\npoklop\r\npoklopka\r\npoklopový\r\npoklouzání\r\npoklouzat\r\npoklusání\r\npoklusat\r\npoklus\r\npokmitávání\r\npokmitávat\r\npokochání\r\npokochat\r\npokojen\r\npokojíček\r\npokojík\r\npokojnější\r\npokojný\r\npokojovější\r\nPokojov\r\npokojovský\r\npokojový\r\npokoj\r\npokojský\r\npokolébat\r\npokolení\r\npokolikáté\r\npokoncilní\r\npokonversovat\r\npokonverzování\r\npokonverzovat\r\npokopanější\r\npokopání\r\npokopaný\r\npokopat\r\npokora\r\npokornější\r\npokornění\r\npokorněný\r\npokornět\r\nPokorný\r\npokorný\r\npokorsovat\r\npokorzovat\r\npokořenější\r\npokoření\r\npokořený\r\npokořit\r\npokořitelčin\r\npokořitelka\r\npokořitelný\r\npokořování\r\npokořovaný\r\npokořovat\r\npokořovávat\r\npokořující\r\npokosení\r\npokosený\r\npokos\r\npokosit\r\npokosník\r\npokosný\r\npokouknout\r\npokouknutí\r\npokoulení\r\npokoulený\r\npokoulet\r\npokouření\r\npokouřený\r\npokouřit\r\npokousanější\r\npokousání\r\npokousaný\r\npokousat\r\npokousávající\r\npokousávanější\r\npokousávání\r\npokousávaný\r\npokousávat\r\npokoušející\r\npokoušení\r\npokoušený\r\npokoušet\r\npokoušu\r\npokoutnější\r\npokoutní\r\npokovení\r\npokovený\r\npokovit\r\npokovování\r\npokovovaný\r\npokovovat\r\npokožka\r\npokožkový\r\npokrácení\r\npokrácený\r\npokračovací\r\npokračování\r\npokračovaný\r\npokračovat\r\npokračovatelčin\r\npokračovatelka\r\npokračovatel\r\npokračovatelův\r\npokračující\r\npokradmo\r\npokradmu\r\npokrájenější\r\npokrájení\r\npokrájený\r\npokrájet\r\npokraji\r\npokraj\r\npokrást\r\npokrátit\r\npokrčenější\r\npokrčení\r\npokrčený\r\npokrčit\r\npokrčování\r\npokrčovaný\r\npokrčovat\r\npokreslenější\r\npokreslení\r\npokreslený\r\npokreslit\r\npokreslování\r\npokreslovaný\r\npokreslovat\r\npokreslovávání\r\npokreslovávaný\r\npokreslovávat\r\npokreslující\r\npokrevenství\r\npokrevnější\r\npokrevní\r\npokrevný\r\npokritizování\r\npokritizovaný\r\npokritizovat\r\npokrm\r\npokrmový\r\npokročení\r\npokročený\r\npokročilejší\r\npokročilý\r\npokročit\r\npokrokář\r\npokrokářův\r\npokrok\r\npokrokovější\r\npokrokový\r\npokropení\r\npokropený\r\npokropit\r\npokroucenější\r\npokroucení\r\npokroucený\r\npokrouhání\r\npokrouhaný\r\npokrouhat\r\npokrouhávání\r\npokrouhávaný\r\npokrouhávat\r\npokroutit\r\npokroutka\r\npokrutina\r\npokrýt\r\npokrytcův\r\npokrytecký\r\npokrytectví\r\npokrytec\r\npokrytečtější\r\npokrytější\r\npokrytelnější\r\npokrytelný\r\npokrytí\r\npokrytý\r\npokrytý\r\npokrývaččin\r\npokrývačka\r\npokrývačský\r\npokrývačství\r\npokrývač\r\npokrývačův\r\npokrývající\r\npokrývanější\r\npokrývání\r\npokrývaný\r\npokrývatelnější\r\npokrývatelný\r\npokrývat\r\npokrývečka\r\npokryv\r\npokrývka\r\npokryvný\r\npokřik\r\npokřikování\r\npokřikovaný\r\npokřikovat\r\npokřikovávání\r\npokřikovávaný\r\npokřikovávat\r\nPokřikov\r\npokřikovský\r\npokřikující\r\npokřivencův\r\npokřivenec\r\npokřivenější\r\npokřivenina\r\npokřivení\r\npokřivený\r\npokřivit\r\npokřivování\r\npokřivovaný\r\npokřivovat\r\npokřižovat\r\npokřtění\r\npokřtěný\r\npokřtít\r\npokud\r\npokukování\r\npokukovat\r\npokulhávající\r\npokulhávání\r\npokulhávat\r\npokuřování\r\npokuřovaný\r\npokuřovat\r\npokuřující\r\npokusení\r\npokus\r\npokusit\r\npokusnější\r\npokusnice\r\npokusnictví\r\npokusník\r\npokusníkův\r\npokusný\r\npokušení\r\npokušitelčin\r\npokušitelka\r\npokušitel\r\npokušitelův\r\npokuta\r\npokutička\r\npokutovanější\r\npokutování\r\npokutovaný\r\npokutovat\r\npokutovávání\r\npokutovávaný\r\npokutovávat\r\npokutový\r\npokvasit\r\npokvašení\r\npokvašený\r\npokvětnový\r\npokvetu\r\npokydání\r\npokydaný\r\npokydat\r\npokydávání\r\npokydávaný\r\npokydávat\r\npokyn\r\npokynout\r\npokynutí\r\npokynutý\r\npokývat\r\npokývnutí\r\npokyvování\r\npokyvovat\r\npolabí\r\npolabský\r\npolabština\r\nPoláček\r\nPoláčková\r\nPoláčkův\r\nPoláková\r\npolákový\r\nPolák\r\npolák\r\nPolák\r\nPolákův\r\npolákův\r\npolámanější\r\npolámání\r\npolámaný\r\npolámat\r\nPolanka\r\npolanka\r\nPolánka\r\nPolanský\r\npolapení\r\npolapený\r\npolapit\r\npolapitelnější\r\npolapitelný\r\npolapitelný\r\npolára\r\npolarimetr\r\npolarita\r\npolarizace\r\npolarizační\r\npolarizátor\r\npolarizování\r\npolarizovaný\r\npolarizovat\r\npolarizující\r\npolárka\r\npolárkový\r\npolárnější\r\npolárnice\r\npolárničin\r\npolárník\r\npolárníkův\r\npolární\r\npolarograf\r\npolarografický\r\npolarografičtější\r\npolarografie\r\npolarogram\r\npolaskání\r\npolaskaný\r\npolaskat\r\npolaskávat\r\nPolášek\r\nPolášková\r\nPoláškův\r\nPolcarová\r\nPolcar\r\nPolcarův\r\npolcení\r\npolcený\r\nPolcová\r\nPolc\r\nPolcův\r\nPolčin\r\npolda\r\npolder\r\npoldovka\r\npoldův\r\npolednách\r\nPoledňáková\r\nPoledňák\r\nPoledňákův\r\npoledne\r\npolednice\r\npoledník\r\nPoledníková\r\npoledníkový\r\nPoledník\r\nPoledníkův\r\npolední\r\nPoledno\r\nPolednová\r\npolednový\r\nPolednův\r\npoledový\r\npolehání\r\npolehat\r\npoléhat\r\npolehávající\r\npolehávání\r\npolehávat\r\npoléhavější\r\npoléhavý\r\npolehčení\r\npolehčený\r\npolehčit\r\npolehčovanější\r\npolehčování\r\npolehčovaný\r\npolehčovat\r\npolehčující\r\npolehku\r\npolehlejší\r\npolehlý\r\npolehnout\r\npolehnutí\r\npolehoučku\r\npolehounku\r\npolechtání\r\npolechtaný\r\npolechtat\r\npolekanější\r\npolekání\r\npolekaný\r\npolekat\r\npole\r\npolemický\r\npolemička\r\npolemičtější\r\npolemika\r\npolemik\r\npolemikův\r\npolemisování\r\npolemisovaný\r\npolemisovat\r\npolemizování\r\npolemizovaný\r\npolemizovat\r\npolemizovávat\r\npolemizující\r\nPolenda\r\nPolendová\r\nPolendův\r\npolene\r\npoleno\r\npolenošení\r\npolenošit\r\npolenský\r\npolenský\r\npolepení\r\npolepený\r\npolepit\r\npolepovací\r\npolepování\r\npolepovaný\r\npolepovat\r\npolepšení\r\npolepšený\r\npolepšit\r\npolepšitelnější\r\npolepšitelný\r\npolepšovací\r\npolepšování\r\npolepšovaný\r\npolepšovat\r\npolepšovna\r\npoleptání\r\npoleptat\r\npolesí\r\npolesný\r\nPolešovice\r\npolešovický\r\npolétání\r\npolétavý\r\npoletavý\r\npoletím\r\npoletování\r\npoletovaný\r\npoletovat\r\npoletový\r\npoletující\r\npolévací\r\npolévající\r\npolévání\r\npolévaný\r\npolévat\r\npoleva\r\npolevení\r\npolevený\r\npolevit\r\npolévka\r\npolevkový\r\npolévkový\r\npolevování\r\npolevovat\r\nPolevsko\r\npolevující\r\npolevý\r\npolézavý\r\npolezení\r\npolezu\r\npoležení\r\npoležet\r\npól\r\npoli\r\npolibek\r\npolíbení\r\npolíbený\r\npolíbit\r\npolibovat\r\npolicajtčin\r\npolicajtka\r\npolicajt\r\npolicajtův\r\npolicejnější\r\npolicejní\r\npolice\r\npolicie\r\npolicista\r\npolicistčin\r\npolicistka\r\npolicistův\r\nPolický\r\npolicový\r\npolíček\r\npolíčení\r\npolíčený\r\npolíčit\r\npolička\r\npolíčko\r\npolíčkování\r\npolíčkovaný\r\npolíčkovat\r\npolíčkový\r\npolidštění\r\npolidštěný\r\npolidštit\r\npolidšťovací\r\npolidšťování\r\npolidšťovaný\r\npolidšťovat\r\npolidšťující\r\npolichocena\r\npolichocenější\r\npolichoceni\r\npolichocení\r\npolichocen\r\npolichoceno\r\npolichocenu\r\npolichoceny\r\npolichocený\r\npolichotit\r\npoliklinika\r\npolínko\r\npolínkový\r\npolipanský\r\npolír\r\npolírův\r\npólista\r\npólistčin\r\npólistka\r\npolistopadový\r\npolistování\r\npolistovaný\r\npolistovat\r\npólistův\r\nPolišenský\r\npolít\r\npolitbyro\r\npolitější\r\npolitickoekonomický\r\npolitickohospodářský\r\npolitickoorganizační\r\npolitickovýchovný\r\npolitický\r\npolitička\r\npolitiční\r\npolitičtější\r\npolitikaření\r\npolitikařit\r\npolitika\r\npolitik\r\npolitikův\r\npolití\r\npolitisování\r\npolitisovaný\r\npolitisovat\r\npolitizace\r\npolitizování\r\npolitizovaný\r\npolitizovat\r\npolitizovávat\r\npolitizující\r\npolitologický\r\npolitologie\r\npolitolog\r\npolitologův\r\npolitoložčin\r\npolitoložka\r\npolit\r\npolitováníhodnější\r\npolitováníhodný\r\npolitování\r\npolitovaný\r\npolitovat\r\npolitruk\r\npolitrukův\r\npolitura\r\npolitý\r\npolitý\r\npolívanější\r\npolívání\r\npolívaný\r\npolívat\r\npolívčička\r\nPolívka\r\npolívka\r\nPolívková\r\npolívkový\r\nPolívkův\r\nPolka\r\npolka\r\npolknout\r\npolknutí\r\npolknutý\r\npolkový\r\nPolma\r\nPolmová\r\nPolmův\r\nPolná\r\npolnice\r\npolnička\r\npolní\r\npolnohospodářský\r\npolo\r\npoloabsolutismus\r\npoloacetalový\r\npoloamatérčin\r\npoloamatérka\r\npoloamatér\r\npoloamatérský\r\npoloamatérův\r\npoloautomat\r\npoloautomatický\r\npoloautomatičtější\r\npoloautomatizovaný\r\npolobavlněný\r\npolobdící\r\npolobílý\r\npoloboha\r\npolobohem\r\npolobohové\r\npolobohovi\r\npolobohu\r\npolobohů\r\npolobohům\r\npolobohy\r\npolobotka\r\npolobozi\r\npolobozích\r\npolobože\r\npolobůh\r\npolocizopasný\r\npoločas\r\npoločlánek\r\npolodálnice\r\npolodenní\r\npolodetailní\r\npolodivočejší\r\npolodivoch\r\npolodivochův\r\npolodlouhý\r\npolodokument\r\npolodrahokam\r\npolodrahokamový\r\npolodrážka\r\npoloduplex\r\npoloduplexní\r\npolofakt\r\npolofašismus\r\npolofašistický\r\npolofeudalismus\r\npolofeudální\r\npolofunkční\r\npologramotný\r\npologrupa\r\npoloha\r\npolohladový\r\npolohlas\r\npolohlasný\r\npolohopis\r\npolohopisný\r\npolohovací\r\npolohovadlo\r\npolohování\r\npolohovaný\r\npolohovat\r\npolohovka\r\npolohový\r\npolohrubý\r\npolohustý\r\npolohybrid\r\npolohybridův\r\npoloindiánský\r\npolointeligent\r\npolointeligentův\r\npolointenzivní\r\npolointenzívní\r\npolojasnější\r\npolojasný\r\npolojeskyně\r\npolokabriolet\r\npolokarton\r\npolokeř\r\npoloklopený\r\npolokmen\r\npolokočovný\r\npolokolonie\r\npolokonzultant\r\npolokonzultantův\r\npolokoule\r\npolokov\r\npolokovový\r\npolokožený\r\npolokruh\r\npolokruhovitý\r\npolokruhový\r\npolokulovitý\r\npolokulový\r\nPololáníková\r\nPololáník\r\nPololáníkův\r\npololátka\r\npololeklý\r\npololesk\r\npololesklý\r\npololetí\r\npololetky\r\npololetní\r\npololežící\r\npololidovější\r\npololidový\r\npolomasiv\r\npolomaska\r\npoloměkka\r\npoloměkký\r\npoloměr\r\npoloměrový\r\npolom\r\npolomluvící\r\npolomový\r\npólo\r\npolomrtev\r\npolomrtvější\r\npolomrtvý\r\npolonahý\r\npolonáprava\r\npolonepřímější\r\npolonesený\r\npolonezávislý\r\npolonéza\r\npolonézový\r\npolonina\r\npoloninský\r\npolonismus\r\npolonista\r\npolonistčin\r\npolonistický\r\npolonistika\r\npolonistka\r\npolonistův\r\npolonium\r\npolooblečený\r\npolooblouk\r\npoloodborný\r\npolooficiální\r\npolookruh\r\npoloomletý\r\npoloopice\r\npoloosa\r\npoloostrov\r\npoloostrovní\r\npolootáčecí\r\npolootevřený\r\npoloparalytický\r\npoloparalytičtější\r\npolopatě\r\npolopatický\r\npolopatismus\r\npolopatistický\r\npolopatro\r\npolopenze\r\npolopesík\r\npoloplastický\r\npoloplátěný\r\npoloplnější\r\npolopohádkovější\r\npolopohádkový\r\npolopohanský\r\npolopouštní\r\npolopoušť\r\npolopravda\r\npolopravdivější\r\npolopravdivý\r\npoloprázdnější\r\npoloprázdný\r\npoloprivátní\r\npoloprodukt\r\npoloprofesionální\r\npoloproletariát\r\npolopropustnější\r\npolopropustný\r\npoloprostor\r\npoloprovozní\r\npoloprůhlednější\r\npoloprůhledný\r\npoloprůtočný\r\npolopříčetný\r\npolopříčka\r\npolopřímější\r\npolopřímka\r\npolopřímý\r\npolorolák\r\npolorovina\r\npolorozbořený\r\npolorozpadající\r\npolorozpadlý\r\npolosamočinný\r\npolosamohláska\r\npolosamostatnější\r\npolosamota\r\npolosedátko\r\npolosedě\r\npolosedět\r\npolosed\r\npolosedící\r\npolosesutý\r\npolosirotek\r\npolosirotkův\r\npoloskryt\r\npolosladký\r\npoloslaný\r\npoloslepější\r\npolosocialismus\r\npolosouhláska\r\npolospánek\r\npolospící\r\npolostát\r\npolostátní\r\npolostín\r\npolosuchý\r\npolosvaz\r\npolosvět\r\npolosyntetický\r\npolosyntetičtější\r\npolosyrový\r\npološepot\r\npološero\r\npološílený\r\npološvestka\r\npolotandemový\r\npolotěžký\r\npolotěžší\r\npolotmavý\r\npolotón\r\npolotónový\r\npolotovar\r\npolotučnější\r\npolotučný\r\npolotuhý\r\npolotvar\r\npolotvarovaný\r\npolotvrdý\r\npoloudání\r\npoloudat\r\npolouzavřený\r\npolovalba\r\npólování\r\npólovaný\r\npólovat\r\npólovávání\r\npólovávaný\r\npólovávat\r\npolovazba\r\npolovážnější\r\npolovědomější\r\npolovenkovský\r\npoloveřejný\r\npolovětný\r\npolovice\r\npolovice\r\npolovičatější\r\npolovičatý\r\npolovička\r\npoloviční\r\npolovina\r\npoloviny\r\npolovlhký\r\npolovodičový\r\npolovodič\r\npolovojenský\r\npolovrstva\r\npolovypouklý\r\npolovyslovený\r\npolovyspělý\r\npolovyšší\r\npólový\r\npolovzdělaný\r\npolozahrabaný\r\npolozakázaný\r\npolozakrytější\r\npolozaměstnaný\r\npolozapomenutý\r\npolozávěrový\r\npolozvíře\r\npoložení\r\npoložený\r\npoložertem\r\npoložit\r\npoloživější\r\npoloživot\r\npoloživý\r\npoložka\r\npoložkový\r\npolpotismus\r\nPolsko\r\npolský\r\npolský\r\npolstr\r\npolstrování\r\npolstrovaný\r\npolstrovaný\r\npolstrovat\r\npolštářek\r\npolštářkovitý\r\npolštářkový\r\npolštářování\r\npolštářovaný\r\npolštářovat\r\npolštářovitý\r\npolštářový\r\npolštář\r\npolština\r\npoltergeist\r\npoltergeistův\r\npoltit\r\npoluce\r\npolutant\r\npolyamid\r\npolyamidový\r\npolyandrický\r\npolyandrie\r\npolyantka\r\npolybilineární\r\npolybutylentereftalát\r\npolycentrismus\r\npolycyklický\r\npolydextróza\r\npolyedrický\r\npolyedričtější\r\npolyekran\r\npolyelektrolyt\r\npolyester\r\npolyesterový\r\npolyethylenglykol\r\npolyethylen\r\npolyethylennaftalát\r\npolyethylenový\r\npolyetylen\r\npolyetylén\r\npolyetylénnaftalát\r\npolyetylenový\r\npolyetylénový\r\npolyetylentereftalát\r\npolyfenol\r\npolyfenolický\r\npolyfonie\r\npolyfonní\r\npolyfosforečnan\r\npolyfunkční\r\npolygafický\r\npolygafičtější\r\npolygamický\r\npolygamie\r\npolygamista\r\npolygamistův\r\npolygamní\r\npolygenetický\r\npolygenismus\r\npolyglotismus\r\npolyglot\r\npolyglotův\r\npolyglycerol\r\npolyglycerolpolyricinoleát\r\npolygom\r\npolygonální\r\npolygon\r\npolygonový\r\npolygrafický\r\npolygrafičtější\r\npolygrafie\r\npolyhistorismus\r\npolyhistor\r\npolyhistorův\r\npolychlorovaný\r\npolychromie\r\npolychromovaný\r\npolykací\r\npolykaččin\r\npolykačka\r\npolykač\r\npolykačův\r\npolykající\r\npolykanější\r\npolykání\r\npolykaný\r\npolykarbonát\r\npolykarbonátový\r\npolykat\r\npolykávání\r\npolykávaný\r\npolykávat\r\npolykondenzace\r\npolykondenzát\r\npolykrystalický\r\npolykrystlický\r\npolykulturní\r\npolylineární\r\npolymerace\r\npolymerační\r\npolymerázový\r\npolymer\r\npolymerizace\r\npolymerizující\r\npolymerní\r\npolymerování\r\npolymerovat\r\npolymerový\r\npolymerující\r\npolymethylakrylát\r\npolymethylen\r\npolymethylmetakrylát\r\npolymetylakrylát\r\npolymetylmetakrylát\r\npolymorfismus\r\npolymorfní\r\npolymúzický\r\npolynenasycený\r\nPolynésie\r\npolynéský\r\npolynéštější\r\npolynom\r\npolynomiální\r\npolynomický\r\npolynomičtější\r\npolyolefinový\r\npolyoxyethylenmonostearát\r\npolyoxyethylensorbitanmonolaurát\r\npolyoxyethylensorbitanmonooleát\r\npolyoxyethylensorbitanmonopalmitát\r\npolyoxyethylensorbitanmonostearát\r\npolyoxyethylensorbitantristearát\r\npolyoxyethylenstearát\r\npolypeptid\r\npolypeptidový\r\npolyp\r\npolypovcův\r\npolypovec\r\npolypropylen\r\npolypropylén\r\npolypropylenový\r\npolypropylénový\r\npolypův\r\npolyrytmika\r\npolysacharid\r\npolysacharidický\r\npolysémický\r\npolysémie\r\npolysémní\r\npolysiloxan\r\npolystylový\r\npolystyren\r\npolystyrén\r\npolystyrenový\r\npolystyrénový\r\npolysulfid\r\npolysyntetický\r\npolytechnický\r\npolytechničtější\r\npolytechnika\r\npolyteismus\r\npolyteista\r\npolyteistčin\r\npolyteistický\r\npolyteistka\r\npolyteistův\r\npolytetrafluoretylén\r\npolyuretan\r\npolyuretanový\r\npolyvinylalkohol\r\npolyvinyl\r\npolyvinylchlorid\r\npolyvinylchloridový\r\npolyvinylpolypyrrolidon\r\npolyvitaminový\r\npolyžánrový\r\nPolžice\r\npolžický\r\npomačkanější\r\npomačkání\r\npomačkaný\r\npomačkat\r\npomaďarštění\r\npomaďarštěný\r\npomaďarštit\r\npomáda\r\npomádování\r\npomádovaný\r\npomádovat\r\npomáhaččin\r\npomáhačka\r\npomahač\r\npomáhač\r\npomahačův\r\npomáhačův\r\npomáhající\r\npomáhání\r\npomáhat\r\npomala\r\npomalejší\r\npomaličku\r\npomalinku\r\npomaloučku\r\npomalounku\r\npomalovanější\r\npomalování\r\npomalovaný\r\npomalovat\r\npomalovávání\r\npomalovávaný\r\npomalovávat\r\npomalu\r\npomálu\r\npomaluběžný\r\npomaluschnoucí\r\npomalý\r\npomást\r\npomastit\r\npomatencův\r\npomatenec\r\npomatenější\r\npomatení\r\npomaten\r\npomatený\r\npomatlání\r\npomatlaný\r\npomatlat\r\npomatlávání\r\npomatlávaný\r\npomatlávat\r\npomátl\r\npomátnout\r\npomátnutí\r\npomátnutý\r\npomatu\r\npomaturitní\r\npomazanější\r\npomazání\r\npomazánka\r\npomazánkovější\r\npomazánkový\r\npomazaný\r\npomazat\r\npomazávající\r\npomazávání\r\npomazávaný\r\npomazávat\r\npomazlení\r\npomazlený\r\npomazlit\r\npoměděnější\r\npoměděný\r\npomeditovat\r\npoměďování\r\npoměďovaný\r\npoměďovat\r\npomelu\r\npomění\r\npomenší\r\npomerančovější\r\npomerančovník\r\npomerančovníkový\r\npomerančový\r\npomeranč\r\npoměr\r\npoměrnější\r\npoměrný\r\npoměrový\r\npoměřenější\r\npoměření\r\npoměřený\r\npoměřit\r\npoměřovací\r\npoměřování\r\npoměřovaný\r\npoměřovat\r\npoměřovávat\r\npomět\r\npometení\r\npometlo\r\npometlový\r\npomezí\r\npomeznější\r\npomezní\r\npomfrit\r\npomfritový\r\npomíchanější\r\npomíchání\r\npomíchaný\r\npomíchat\r\npomíjející\r\npomíjejícný\r\npomíjenější\r\npomíjení\r\npomíjený\r\npomíjet\r\npomíjitelný\r\npomíjivější\r\npomíjivý\r\npomíjívý\r\npomilionté\r\npomilování\r\npomilovaný\r\npomilovat\r\npomilovávání\r\npomilovávaný\r\npomilovávat\r\npominout\r\npominutější\r\npominutelnější\r\npominutelný\r\npominutí\r\npominutý\r\npominutý\r\npomísení\r\npomístní\r\npomíšenější\r\npomlácení\r\npomlácený\r\npomlaskávání\r\npomlaskávaný\r\npomlaskávat\r\npomlátit\r\npomlázka\r\npomlázkový\r\npomlčení\r\npomlčet\r\npomlčka\r\npomlčkový\r\npomlčování\r\npomlel\r\npomlení\r\npomletější\r\npomletí\r\npomlet\r\npomletý\r\npomletý\r\npomlít\r\npomlka\r\npomlouvačnější\r\npomlouvačný\r\npomlouvač\r\npomlouvačův\r\npomlouvající\r\npomlouvání\r\npomlouvaný\r\npomlouvat\r\npomluva\r\npomluvení\r\npomluvený\r\npomluvit\r\npomněnka\r\npomněnkový\r\npomníček\r\npomnichovský\r\npomník\r\npomníkový\r\npomnožení\r\npomnožený\r\npomnožit\r\npomnožný\r\npomnožovací\r\npomnožování\r\npomnožovaný\r\npomnožovat\r\npomocí\r\npomoci\r\npomocích\r\npomocím\r\npomoc\r\npomocnice\r\npomocníček\r\npomocničin\r\npomocníčkův\r\npomocník\r\npomocníkův\r\npomocný\r\npomoct\r\npomočení\r\npomočený\r\npomočit\r\npomočování\r\npomočovaný\r\npomočovat\r\npomodlení\r\npomodlený\r\npomodlit\r\npomologický\r\npomologie\r\nPomoraví\r\nPomořansko\r\npomořanský\r\nPomořanský\r\nPomořany\r\npomoření\r\npomořený\r\npomořit\r\nPomořský\r\npomoučnění\r\npomoučněný\r\npomoučnit\r\npomozme\r\npomoz\r\npomozte\r\nPompa\r\npompa\r\nPompeje\r\npompejský\r\npompéznější\r\npompézní\r\nPompová\r\nPompův\r\npomra\r\npomrkávající\r\npomrkávání\r\npomrkávat\r\npomrznout\r\npomrznutí\r\npomrznutý\r\npomřelejší\r\npomřelý\r\npomření\r\npomřít\r\npomsta\r\npomstění\r\npomstěný\r\npomstít\r\npomstychtivější\r\npomstychtivý\r\npomstychtivý\r\npomstylačnější\r\npomůcka\r\npomuchlanější\r\npomuchlání\r\npomuchlaný\r\npomuchlat\r\npomuchlávání\r\npomuchlávaný\r\npomuchlávat\r\npomyje\r\nPomykalová\r\nPomykal\r\nPomykalův\r\npomýlenější\r\npomýlení\r\npomýlený\r\npomýlit\r\npomyslení\r\npomyslený\r\npomyslet\r\npomyslit\r\npomyslnější\r\npomyslný\r\npomýšlející\r\npomyšlení\r\npomýšlení\r\npomyšlen\r\npomýšlet\r\npomžikávající\r\npomžikávání\r\npomžikávaný\r\npomžikávat\r\nponad\r\nPonaderová\r\nPonader\r\nPonaderův\r\npoňafání\r\npoňafaný\r\npoňafat\r\nponacházení\r\nponacházet\r\nponacházívat\r\nponakládání\r\nponakládaný\r\nponakládat\r\nponaučení\r\nponaučený\r\nponaučit\r\nponaučný\r\nponceau\r\nPoncová\r\nPonc\r\nPoncův\r\npončo\r\nPončová\r\nPonč\r\nPončův\r\nPondělek\r\npondělek\r\npondělí\r\nPondělková\r\nPondělkův\r\npondělní\r\nPonědrážka\r\nponechanější\r\nponechání\r\nponechaný\r\nponechat\r\nponechávající\r\nponechávanější\r\nponechávání\r\nponechávaný\r\nponechávat\r\nponechme\r\nponech\r\nponechte\r\nponejprv\r\nponejprve\r\nponejvíc\r\nponejvíce\r\nponěkolikáté\r\nponěkud\r\nponěmčelý\r\nponěmčenější\r\nponěmčení\r\nponěmčený\r\nponěmčit\r\nponěmčování\r\nponěmčovaný\r\nponěmčovat\r\nponenáhlu\r\nPonertová\r\nPonert\r\nPonertův\r\nponesu\r\nponětí\r\nPonětovice\r\nponětovický\r\nponěvadž\r\npong\r\nponičenější\r\nponičení\r\nponičený\r\nponičit\r\nponikelský\r\nPoniklá\r\nponiklovanější\r\nponiklovaný\r\nponiklovat\r\nponík\r\nponíkův\r\nponíženější\r\nponížení\r\nponížený\r\nponížit\r\nponižovaní\r\nponižování\r\nponižovaný\r\nponižovat\r\nponižující\r\nponk\r\nPonocný\r\nponocný\r\nponocování\r\nponocovat\r\nponocovávání\r\nponocovávat\r\nponor\r\nponorka\r\nponorkový\r\nponorný\r\nponorový\r\nponořenější\r\nponoření\r\nponořený\r\nponořit\r\nponořovací\r\nponořování\r\nponořovaný\r\nponořovat\r\nponořovávat\r\nponořující\r\nponos\r\nponoukání\r\nponoukaný\r\nponoukat\r\nponouknout\r\nponožka\r\nponožkový\r\nponrava\r\npontifikální\r\npontifikát\r\nponton\r\npontonový\r\nPontos\r\npontský\r\nPontus\r\nponůcka\r\nponuka\r\nponurý\r\nponuřejší\r\npony\r\npoobědvat\r\npoodběhnout\r\npoodběhnutí\r\npoodejdu\r\npoodejít\r\npoodešel\r\npoodhalení\r\npoodhalený\r\npoodhalit\r\npoodhalování\r\npoodhalovaný\r\npoodhalovat\r\npoodhalovávání\r\npoodhalovávaný\r\npoodhalovávat\r\npoodhrnout\r\npoodhrnutí\r\npoodhrnutý\r\npoodjedu\r\npoodjel\r\npoodjení\r\npoodjet\r\npoodjetí\r\npoodkrýt\r\npoodkrytí\r\npoodkrytý\r\npoodrůstat\r\nPoodří\r\npoodskočení\r\npoodskočit\r\npoodstoupení\r\npoodstoupený\r\npoodstoupit\r\npoodsunout\r\npoodsunutí\r\npoodsunutý\r\npoohlédnout\r\npoohlédnul\r\npoohlédnutí\r\npoohlídnout\r\npoohlídnul\r\npoohlížející\r\npoohlížení\r\npoohlížet\r\nPoohří\r\nPoohří\r\npookřání\r\npookřát\r\npookřívající\r\npoolověný\r\npoomračování\r\npoomračovaný\r\npoomračovat\r\npooperační\r\npoopravení\r\npoopravený\r\npoopravit\r\npoopravování\r\npoopravovaný\r\npoopravovat\r\npoorání\r\npooraný\r\npoorat\r\npoosmdesáté\r\npoosmé\r\npoosmnácté\r\npootáčející\r\npootáčení\r\npootáčený\r\npootáčet\r\nPootaví\r\npootevíranější\r\npootevírání\r\npootevíraný\r\npootevírat\r\npootevřenější\r\npootevření\r\npootevřený\r\npootevřít\r\npootočenější\r\npootočení\r\npootočený\r\npootočený\r\npootočit\r\npootvírat\r\npopadající\r\npopadanější\r\npopadání\r\npopadaný\r\npopadat\r\npopadávání\r\npopadávaný\r\npopadávat\r\npopadesáté\r\npopadnout\r\npopadnutí\r\npopálenější\r\npopálenina\r\npopáleninový\r\npopálení\r\npopálený\r\npopálit\r\npopaměti\r\npopart\r\npopásání\r\npopásaný\r\npopásat\r\npopasenější\r\npopasení\r\npopasen\r\npopasený\r\npopásl\r\npopasování\r\npopasovaný\r\npopasovat\r\npopást\r\npopasu\r\npopáté\r\npopatnácté\r\npopatření\r\npopatřený\r\npopatřit\r\nPopeláková\r\nPopelák\r\nPopelákův\r\npopelářský\r\npopelář\r\npopelářův\r\npopelavější\r\npopelavý\r\nPopelčin\r\npopelčin\r\nPopelec\r\npopeleční\r\npopelení\r\npopel\r\nPopelíková\r\nPopelík\r\nPopelíkův\r\npopelín\r\npopelínový\r\npopeliště\r\npopelit\r\nPopelka\r\nPopelka\r\npopelka\r\nPopelková\r\npopelkový\r\nPopelkův\r\npopelnatý\r\npopelnice\r\npopelnicový\r\npopelníček\r\npopelník\r\npopelníkový\r\nPopelová\r\npopelovější\r\npopelovina\r\npopelovitý\r\npopelový\r\nPopel\r\nPopelův\r\npopepření\r\npopepřený\r\npopepřit\r\npopěrný\r\npoperuánštění\r\npoperuánštěný\r\npoperuánštit\r\npopěvek\r\npopěvka\r\npop\r\nPopice\r\npopický\r\npopíchání\r\npopíchaný\r\npopíchat\r\npopíchávání\r\npopíchávaný\r\npopíchávat\r\npopíchnout\r\npopíchnutí\r\npopíchnutý\r\npopichování\r\npopichovaný\r\npopichovat\r\npopichující\r\npopíjející\r\npopíjenější\r\npopíjení\r\npopíjený\r\npopíjet\r\npopílek\r\npopínání\r\npopínat\r\npopínavější\r\npopínavý\r\npopírací\r\npopírač\r\npopírající\r\npopíranější\r\npopírání\r\npopíraný\r\npopiratelnější\r\npopíratelnější\r\npopiratelný\r\npopíratelný\r\npopírat\r\npopisek\r\npopis\r\npopiska\r\npopisnější\r\npopisný\r\npopisovací\r\npopisovač\r\npopisovanější\r\npopisování\r\npopisovaný\r\npopisovat\r\npopisovatelný\r\npopisovatel\r\npopisovatelův\r\npopisový\r\npopisující\r\npopíši\r\npopíšu\r\npopít\r\npopitější\r\npopití\r\npopit\r\npopitý\r\npopitý\r\npopka\r\npoplácání\r\npoplácaný\r\npoplácat\r\npoplácávající\r\npoplácávání\r\npoplácávaný\r\npoplácávat\r\npoplacenější\r\npoplacení\r\npoplacený\r\npoplach\r\npoplachový\r\npoplakající\r\npoplakanější\r\npoplakání\r\npoplakaný\r\npoplakat\r\npoplakávání\r\npoplakávat\r\npoplašenější\r\npoplašení\r\npoplašený\r\npoplašit\r\npoplašnější\r\npoplašný\r\npoplatek\r\npoplatit\r\npoplatkový\r\npoplatnější\r\npoplatnice\r\npoplatničin\r\npoplatník\r\npoplatníkův\r\npoplatný\r\npoplavávání\r\npoplavávat\r\npoplavek\r\npoplavu\r\npoplazení\r\npoplazit\r\npoplenění\r\npopleněný\r\npoplenit\r\npopleskání\r\npopleskaný\r\npopleskat\r\npopleskávat\r\npoplést\r\npopleta\r\npopletenější\r\npopletení\r\npopletený\r\npopletův\r\npoplicnice\r\npoplivání\r\npoplivaný\r\npoplivat\r\npoplkat\r\npopluji\r\npoplužní\r\npoplyne\r\npoplynou\r\npopoběhnout\r\npopoběhnutí\r\npopobíhající\r\npopobíhání\r\npopobíhat\r\npopodkuřovávat\r\npopoháněč\r\npopoháněčův\r\npopohánějící\r\npopoháněnější\r\npopohánění\r\npopoháněný\r\npopohánět\r\npopohnal\r\npopohnanější\r\npopohnání\r\npopohnán\r\npopohnaný\r\npopohnat\r\npopocházející\r\npopocházení\r\npopocházet\r\npopocházívat\r\npopojda\r\npopojdu\r\npopojedu\r\npopojel\r\npopojení\r\npopojetější\r\npopojet\r\npopojetí\r\npopojetý\r\npopojít\r\npopojití\r\npopojížděč\r\npopojížděčův\r\npopojíždění\r\npopojíždět\r\npopoletění\r\npopolétnutí\r\npopolézající\r\npopolézání\r\npopolézat\r\npopolezení\r\npopolézt\r\npoponášeč\r\npoponášečův\r\npoponášení\r\npoponášený\r\npoponášet\r\npoponesenější\r\npoponesení\r\npoponesený\r\npoponést\r\npoporodní\r\npoporostlejší\r\npoporostl\r\npoporostlý\r\npoporostu\r\npoporůstat\r\npoporůst\r\npopořadě\r\npopořádku\r\npoposadit\r\npoposazení\r\npoposazený\r\npoposedání\r\npoposedat\r\npoposedávání\r\npoposedávat\r\npoposednout\r\npoposednutí\r\npoposkočení\r\npoposkočit\r\npopostoupení\r\npopostrčení\r\npopostrčený\r\npopostrčit\r\npoposunutí\r\npopošel\r\npopošít\r\npopošlejší\r\npopošlý\r\npopošťouchnout\r\npopošťouchnutí\r\npopošťouchnutý\r\npopotáhnout\r\npopotáhnutí\r\npopotahování\r\npopotahovaný\r\npopotahovat\r\npopotahovávání\r\npopotahovávaný\r\npopotahovávat\r\npopotaženější\r\npopotažení\r\npopotažený\r\npopotažitelnější\r\npopotažitelný\r\npopotlačení\r\npopotlačený\r\npopotlačit\r\npopouštěcí\r\npopouštějící\r\npopouštěnější\r\npopouštění\r\npopouštěný\r\npopouštět\r\npopouzející\r\npopouzení\r\npopouzený\r\npopouzet\r\npopovezenější\r\npopovezení\r\npopovezený\r\npopovézt\r\nPopovice\r\npopovický\r\npopovídanější\r\npopovídání\r\npopovídaný\r\npopovídat\r\nPopov\r\npopovský\r\npopový\r\npopozítří\r\npopoženu\r\npopperismus\r\npopracování\r\npopracovat\r\nPoprad\r\npopradský\r\npoprání\r\npopraskanější\r\npopraskání\r\npopraskaný\r\npopraskat\r\npoprask\r\npoprašek\r\npoprášenější\r\npoprášení\r\npoprášený\r\npoprášit\r\npoprašovací\r\npoprašování\r\npoprašovaný\r\npoprašovat\r\npoprat\r\npoprat\r\npoprava\r\npopravčí\r\npopravdě\r\npopravení\r\npopravený\r\npopraviště\r\npopravit\r\npoprávka\r\npopravní\r\npopravování\r\npopravovaný\r\npopravovat\r\npopravující\r\npoprázdninový\r\npoprchávání\r\npoprchávat\r\npoprivatizační\r\npoprockový\r\npoprodejní\r\npoproduktivní\r\npoprosení\r\npoprosený\r\npoprosit\r\npoprsí\r\npoprskat\r\npopruh\r\npoprvé\r\npopř\r\npopřání\r\npopřaný\r\npopřát\r\npopřávání\r\npopřávat\r\npopředí\r\npopředí\r\npopřednější\r\npopřední\r\npopřemýšlení\r\npopřemýšlet\r\npopřenější\r\npopření\r\npopřený\r\npopřevratový\r\npopřípadě\r\npopřít\r\npopsal\r\npopsanější\r\npopsání\r\npopsán\r\npopsaný\r\npopsáný\r\npopsatelný\r\npopsat\r\npopštější\r\npoptání\r\npoptaný\r\npoptat\r\npoptávající\r\npoptávání\r\npoptávaný\r\npoptávat\r\npoptávka\r\npoptávkový\r\npopud\r\npopudit\r\npopudivý\r\npopudlivější\r\npopudlivý\r\npopukání\r\npopukat\r\npopulace\r\npopulační\r\npopularita\r\npopularizace\r\npopularizační\r\npopularizátorčin\r\npopularizátorka\r\npopularizátor\r\npopularizátorský\r\npopularizátorství\r\npopularizátorův\r\npopularizování\r\npopularizovaný\r\npopularizovat\r\npopularizující\r\npopulárnější\r\npopulárnění\r\npopulárnět\r\npopulárněvědečtější\r\npopulární\r\npopulismus\r\npopulista\r\npopulistčin\r\npopulistický\r\npopulistka\r\npopulistův\r\npopustit\r\npopustitelný\r\npopuštěnější\r\npopuštění\r\npopuštěný\r\npoputovat\r\npopův\r\npopuzenější\r\npopuzení\r\npopuzený\r\npopuzování\r\npopuzovaný\r\npopuzovat\r\npopuzující\r\npopzpěvák\r\npor\r\nporada\r\nporadce\r\nporadcův\r\nporadění\r\nporadenský\r\nporadenství\r\nporaděný\r\nporadit\r\nporadkyně\r\nporadkynin\r\nporadna\r\nporadní\r\nporafat\r\nporakouštění\r\nporakouštěný\r\nporakouštit\r\nporaněnější\r\nporanění\r\nporaněný\r\nporanit\r\nporazit\r\nporazitelnější\r\nporazitelný\r\nporážeč\r\nporážečův\r\nporážející\r\nporažencův\r\nporaženecký\r\nporaženectví\r\nporaženec\r\nporaženečtější\r\nporaženější\r\nporažení\r\nporážení\r\nporažený\r\nporážený\r\nporážet\r\nporážka\r\nporážkový\r\nporcelán\r\nporcelanit\r\nporcelanitový\r\nporcelánka\r\nporcelánovější\r\nporcelánový\r\nporce\r\nporcička\r\nporcovací\r\nporcovač\r\nporcovačův\r\nporcování\r\nporcovaný\r\nporcovat\r\nporcovávání\r\nporcovávaný\r\nporcovávat\r\nporculánka\r\nporculánový\r\nporeferování\r\nporeferovaný\r\nporeferovat\r\npórek\r\nporésnější\r\nporevoluční\r\nporéznější\r\nporézní\r\nporfyr\r\nporfyrický\r\nporfyrit\r\npór\r\nPorkertová\r\nPorkert\r\nPorkertův\r\npórkový\r\npornofilm\r\npornografický\r\npornografičtější\r\npornografie\r\npornohercův\r\npornoherec\r\npornoherečka\r\npornokazeta\r\nporno\r\npornoshop\r\nporoba\r\nporobenější\r\nporobení\r\nporobený\r\npórobeton\r\npórobetonový\r\nporobit\r\nporobitelčin\r\nporobitelka\r\nporobitel\r\nporobitelův\r\nporod\r\nporodit\r\nporodna\r\nporodné\r\nporodnice\r\nporodnice\r\nporodnický\r\nporodnictví\r\nporodník\r\nporodníkův\r\nporodní\r\nporodní\r\nporosení\r\nporosený\r\nporosit\r\nporost\r\nporostlejší\r\nporostl\r\nporostlý\r\nporostní\r\nporostu\r\nporota\r\nporotce\r\nporotcův\r\nporotkyně\r\nporotkynin\r\nporotní\r\nporoučení\r\nporoučený\r\nporoučet\r\nporoučivější\r\nporoučivý\r\nporoučlivost\r\nporouchanější\r\nporouchání\r\nporouchaný\r\nporouchat\r\nporouchávání\r\nporouchávat\r\npórovinový\r\npórovitý\r\nporovnání\r\nporovnaný\r\nporovnatelnější\r\nporovnatelný\r\nporovnat\r\nporovnávací\r\nporovnávač\r\nporovnávající\r\nporovnávání\r\nporovnávaný\r\nporovnávat\r\npórový\r\nporozbíjení\r\nporozbíjený\r\nporozbíjet\r\nporození\r\nporozený\r\nporozhlédnout\r\nporozhlédnul\r\nporozhlédnutí\r\nporozhlídnout\r\nporozhlídnul\r\nporozhlížení\r\nporozhlížet\r\nporozita\r\nporozmazávanější\r\nporozmazávaný\r\nporozprávění\r\nporozprávěný\r\nporozprávět\r\nporozumění\r\nporozumět\r\nporozvažovanější\r\nporozvažování\r\nporozvažovaný\r\nporozvažovat\r\nporozvažovatelnější\r\nporozvažovatelný\r\nporozvažující\r\nporozvírat\r\nporozvodový\r\nportabilní\r\nportace\r\nportálek\r\nportál\r\nportálový\r\nportavit\r\nporta\r\nporter\r\nPorterová\r\nPorter\r\nPorterův\r\nportfej\r\nportfolio\r\nportfólio\r\nportfoliový\r\nportfolium\r\nport\r\nportiéra\r\nPortíková\r\nPortík\r\nportikus\r\nPortíkův\r\nPortland\r\nportlandský\r\nportmonka\r\nportorický\r\nPortoričančin\r\nPortoričanka\r\nPortoričan\r\nPortoričanův\r\nPortoriko\r\nportovanější\r\nportování\r\nportovaný\r\nportovat\r\nportovatelný\r\nportovávání\r\nportovávaný\r\nportovávat\r\nportrét\r\nportrétista\r\nportrétistčin\r\nportrétistka\r\nportrétistův\r\nportrétní\r\nportrétování\r\nportrétovaný\r\nportrétovat\r\nportrétovávání\r\nportrétovávaný\r\nportrétovávat\r\nportrétový\r\nportrétující\r\nportský\r\nPortugalcův\r\nPortugalčin\r\nPortugalec\r\nPortugalka\r\nPortugalsko\r\nportugalský\r\nportugalština\r\nportýr\r\nportýrův\r\nPoruba\r\nporub\r\nporubní\r\nporubový\r\nPorubský\r\nporubský\r\nporučencův\r\nporučenec\r\nporučení\r\nporučenský\r\nporučenství\r\nporučenštější\r\nporučený\r\nporučice\r\nporučičin\r\nporučík\r\nporučíkův\r\nporučit\r\nporučnice\r\nporučnický\r\nporučnictví\r\nporučničin\r\nporučničtější\r\nporučníkování\r\nporučníkovat\r\nporučník\r\nporučníkův\r\nporucha\r\nporuchovější\r\nporuchový\r\nPorúří\r\nPorůří\r\nporůstání\r\nporůstat\r\nporůst\r\nporušenější\r\nporušení\r\nporušený\r\nporušit\r\nporušitelnější\r\nporušitelný\r\nporušovanější\r\nporušování\r\nporušovaný\r\nporušovat\r\nporušovatelnější\r\nporušovatelný\r\nporuštění\r\nporuštěný\r\nporuštit\r\nporušující\r\nporůznu\r\nporvání\r\nporvat\r\nporvávání\r\nporvávaný\r\nporvávat\r\nporybný\r\nPorýní\r\nporýní\r\nporýnský\r\nporýnský\r\nporýpání\r\nporýpaný\r\nporýpat\r\nporýt\r\nporytější\r\nporytí\r\nporytý\r\nporývání\r\nporývaný\r\nporývat\r\nporyv\r\npořád\r\npořádací\r\npořadač\r\npořádající\r\npořádanější\r\npořádání\r\npořádaný\r\npořadatelčin\r\npořadatelka\r\npořadatelský\r\npořadatelství\r\npořadatel\r\npořadatelův\r\npořádat\r\npořádávající\r\npořádávanější\r\npořádávání\r\npořádávaný\r\npořádávat\r\npořádek\r\npořad\r\npořadí\r\npořadí\r\npořádka\r\npořádkový\r\npořádkumilovnější\r\npořádkumilovný\r\npořádnější\r\npořadník\r\npořadníkový\r\npořádný\r\npořadovější\r\npořadový\r\npořečtění\r\npořečtěný\r\npořečtit\r\npořekadlo\r\npořezanější\r\npořezání\r\npořezaný\r\npořezat\r\npořezávající\r\npořezávanější\r\npořezávání\r\npořezávaný\r\npořezávat\r\npoříčí\r\npoříční\r\npořídit\r\npořiditelnější\r\npoříjnový\r\npořízek\r\nPořízek\r\npořízení\r\npořízený\r\npoříz\r\nPořízka\r\nPořízková\r\nPořízkův\r\npořízkův\r\npořizovací\r\npořizovanější\r\npořizování\r\npořizovaný\r\npořizovat\r\nPořízová\r\nPoříz\r\npořizující\r\nPořízův\r\npořvání\r\npořvat\r\npořvávat\r\nposada\r\nposadit\r\nposádka\r\nposádkový\r\nPosázaví\r\nposázavský\r\nposazení\r\nposázení\r\nposazený\r\nposázený\r\nposázet\r\nposazovat\r\nposbírání\r\nposbíraný\r\nposbírat\r\nposcípání\r\nposcípat\r\nposečení\r\nposečen\r\nposečený\r\nposečkání\r\nposečkat\r\nposečkávání\r\nposečkávat\r\nposeču\r\nposedající\r\nposedání\r\nposedaný\r\nposedat\r\nposedávající\r\nposedávání\r\nposedávat\r\nposedění\r\nposedět\r\nposedět\r\nposed\r\nposedlejší\r\nposedlý\r\nposedmdesáté\r\nposedmé\r\nposedminácté\r\nposednout\r\nposednutí\r\nposednutý\r\nposedový\r\nposeji\r\nposekanější\r\nposekání\r\nposekaný\r\nposekat\r\nposekl\r\nposelkyně\r\nposelkynin\r\nposel\r\nposel\r\nposelství\r\nposelstvo\r\nposelstvo\r\nposelův\r\nposení\r\nposera\r\nposerka\r\nposerkův\r\nposerův\r\nposesivní\r\nposetější\r\nposetí\r\nposet\r\nposetý\r\nposetý\r\nposezení\r\nposhovění\r\nposchodí\r\nposchoďový\r\nposchovávání\r\nposchovávaný\r\nposchovávat\r\nposice\r\nposíct\r\nposílací\r\nposílající\r\nposílanější\r\nposílání\r\nposílaný\r\nposílat\r\nposila\r\nposílenější\r\nposílení\r\nposílený\r\nposílit\r\nposílkářčin\r\nposílkářka\r\nposílkář\r\nposílkářův\r\nposílka\r\nposilnění\r\nposilněný\r\nposilnit\r\nposilňování\r\nposilňovaný\r\nposilňovat\r\nposilňovatel\r\nposilňovatelův\r\nposilňující\r\nposil\r\nposilovací\r\nposilovač\r\nposilování\r\nposilovaný\r\nposilovat\r\nposilovávání\r\nposilovávaný\r\nposilovávat\r\nposilovna\r\nposilový\r\nposilující\r\nposírání\r\nposíraný\r\nposírat\r\nposít\r\npositivismus\r\npositivistický\r\npositivnější\r\npositivní\r\nposjezdový\r\nposkákanější\r\nposkákání\r\nposkákáno\r\nposkákaný\r\nposkákat\r\nposkakování\r\nposkakovat\r\nposkakovávání\r\nposkakovávaný\r\nposkakovávat\r\nposkakující\r\nposkládanější\r\nposkládání\r\nposkládaný\r\nposkládat\r\nposkládávání\r\nposkládávaný\r\nposkládávat\r\nposklizňový\r\nposklizňový\r\nposkočení\r\nposkočit\r\nposkok\r\nposkok\r\nposkokův\r\nposkrovnu\r\nposkvrna\r\nposkvrněnější\r\nposkvrnění\r\nposkvrněný\r\nposkvrnit\r\nposkvrnka\r\nposkvrňování\r\nposkvrňovaný\r\nposkvrňovat\r\nposkytnout\r\nposkytnutější\r\nposkytnutí\r\nposkytnutý\r\nposkytnutý\r\nposkytovanější\r\nposkytování\r\nposkytovaný\r\nposkytovat\r\nposkytovatelčin\r\nposkytovatelka\r\nposkytovatel\r\nposkytovatelův\r\nposkytovávání\r\nposkytovávaný\r\nposkytovávat\r\nposkytující\r\nposlabší\r\nposlal\r\nposlamný\r\nposlancování\r\nposlancovat\r\nposlancův\r\nposlanecký\r\nposlanec\r\nposlanější\r\nposlání\r\nposlankyně\r\nposlankynin\r\nposlaný\r\nposlat\r\nposledka\r\nposledku\r\nposlednější\r\nposlední\r\nposlední\r\nposlech\r\nposlechnout\r\nposlechnutější\r\nposlechnutí\r\nposlechnutý\r\nposlechnutý\r\nposlechovější\r\nposlechový\r\nposlechový\r\nposlepování\r\nposlepovaný\r\nposlepovat\r\nposlepu\r\nposléz\r\nposléze\r\nposlíček\r\nposlíčkův\r\nposlintání\r\nposlintaný\r\nposlintat\r\nposlintávání\r\nposlintávaný\r\nposlintávat\r\nposlouchající\r\nposlouchanější\r\nposlouchání\r\nposlouchaný\r\nposlouchatelnější\r\nposlouchatelný\r\nposlouchat\r\nposlouchávající\r\nposlouchávanější\r\nposlouchávání\r\nposlouchávaný\r\nposlouchávat\r\nposloupnější\r\nposloupnost\r\nposloupný\r\nposloužení\r\nposloužit\r\nposlovenštění\r\nposlovenštěný\r\nposlovenštit\r\nposluha\r\nposluhovaččin\r\nposluhovačka\r\nposluhovač\r\nposluhovačův\r\nposluhování\r\nposluhovat\r\nposluhův\r\nposluchaččin\r\nposluchačka\r\nposluchačský\r\nposluchačský\r\nposluchačstvo\r\nposluchač\r\nposluchačův\r\nposluchárna\r\nposlušen\r\nposlušenství\r\nposlušna\r\nposlušnější\r\nposlušni\r\nposlušno\r\nposlušnu\r\nposlušny\r\nposlušný\r\nposlův\r\nposlyš\r\nposlyšme\r\nposlyšte\r\nposmání\r\nposmát\r\nposměch\r\nposměšek\r\nposměšnější\r\nposměšný\r\nposměvacký\r\nposměváček\r\nposměvačnější\r\nposměvačný\r\nposmívající\r\nposmívání\r\nposmívat\r\nposmrkání\r\nposmrkaný\r\nposmrkat\r\nposmrkávající\r\nposmrkávání\r\nposmrkávaný\r\nposmrkávat\r\nposmrtný\r\nposmutnělejší\r\nposmutnělý\r\nposmutnění\r\nposmutnět\r\nposmýkání\r\nposmýkaný\r\nposmýkat\r\nposnídáníčko\r\nposnídání\r\nposnídaný\r\nposnídat\r\nposnídávání\r\nposnídávaný\r\nposnídávat\r\nposolenější\r\nposolení\r\nposolený\r\nposolit\r\nposoudit\r\nposouvač\r\nposouvající\r\nposouvání\r\nposouvaný\r\nposouvatelnější\r\nposouvat\r\nposouzenější\r\nposouzení\r\nposouzený\r\nposoužení\r\nposoužený\r\nposoužit\r\npospání\r\npospas\r\npospat\r\npospávající\r\npospávání\r\npospávat\r\npospíchající\r\nPospíchalová\r\nPospíchal\r\nPospíchalův\r\npospíchání\r\npospíchat\r\npospíchávání\r\npospíchávat\r\npospíchavý\r\npospíšení\r\nPospíšilová\r\nPospíšil\r\nPospíšilův\r\npospíšit\r\npospojování\r\npospojovaný\r\npospojovaný\r\npospojovat\r\npospolitější\r\npospolitý\r\npospolný\r\npospolu\r\nposrat\r\nposrážení\r\nposrážený\r\nposrážet\r\nposrpnový\r\nPosseltová\r\nPosselt\r\nPosseltův\r\npostačení\r\npostačit\r\npostačitelnější\r\npostačitelný\r\npostačování\r\npostačovat\r\npostačující\r\npostál\r\npostalveolára\r\npostalveolární\r\npostaní\r\npostarání\r\npostaráno\r\npostarat\r\npostarší\r\npostaru\r\npostát\r\npostátnění\r\npostátněný\r\npostátnit\r\npostátňování\r\npostátňovaný\r\npostátňovat\r\npostátňovávat\r\npostávající\r\npostávání\r\npostavantgardní\r\nPostava\r\npostávat\r\npostava\r\npostavení\r\npostavený\r\npostavička\r\npostavit\r\npostavitelný\r\nPostavová\r\nPostavův\r\npostdějinný\r\npostdekrement\r\npostdoktorandský\r\nposte\r\nposté\r\npostěhuji\r\npostelový\r\npostelu\r\npostel\r\npostembryonální\r\npostění\r\nposter\r\nposterizování\r\nposterizovaný\r\nposterizovat\r\npostesknout\r\npostesknutí\r\npostěžování\r\npostěžovat\r\npostfašista\r\npostfašistčin\r\npostfašistka\r\npostfašistův\r\npostfix\r\npostfixový\r\npostfordismus\r\npostgraduální\r\npost\r\npostideologičtější\r\npostíhání\r\npostíhaný\r\npostíhat\r\npostih\r\npostihnout\r\npostihnutelnější\r\npostihnutí\r\npostihnut\r\npostihnutý\r\npostihovanější\r\npostihování\r\npostihovaný\r\npostihovat\r\npostihový\r\npostihující\r\npostilion\r\npostilionův\r\npostimpresionismus\r\npostimpresionistický\r\npostindustirální\r\npostindustrialismus\r\npostindustriální\r\npostinkrement\r\npostinterrupční\r\npostit\r\npostiženější\r\npostižení\r\npostižený\r\npostižitelnější\r\npostižitelný\r\npostižní\r\npostkapitalistický\r\npostklimakterický\r\npostkomunismus\r\npostkomunista\r\npostkomunistčin\r\npostkomunistický\r\npostkomunističtější\r\npostkomunistka\r\npostkomunistův\r\npostlal\r\npostlat\r\npostliberalizační\r\npostmoderna\r\npostmodernější\r\npostmodernismus\r\npostmodernista\r\npostmodernistčin\r\npostmodernistický\r\npostmodernističtější\r\npostmodernistka\r\npostmodernistův\r\npostmoderní\r\npostmortální\r\npostnatální\r\npostní\r\npostojím\r\nPostojná\r\nPostojna\r\npostojový\r\npostoj\r\npostoloprtský\r\nPostoloprty\r\npostonal\r\npostonání\r\npostonat\r\npostonávající\r\npostonávání\r\npostonávat\r\npostonejme\r\npostonej\r\npostonejte\r\nPostonová\r\nPoston\r\nPostonův\r\npostoupenější\r\npostoupení\r\npostoupený\r\npostoupit\r\npostpostmodernismus\r\npostpostmodernistický\r\npostprocesor\r\npostprocesorový\r\npostprodukce\r\npostpunkový\r\npostrádající\r\npostrádání\r\npostrádaný\r\npostradatelnější\r\npostrádatelnější\r\npostradatelný\r\npostrádat\r\npostrach\r\nPostránecký\r\npostraněk\r\npostranice\r\npostrannější\r\npostranní\r\npostrašenější\r\npostrašení\r\npostrašený\r\npostrašit\r\npostrčenější\r\npostrčení\r\npostrčený\r\npostrčit\r\npostrkávání\r\npostrkávaný\r\npostrkávat\r\npostrk\r\npostrkování\r\npostrkovaný\r\npostrkovat\r\npostrkový\r\npostrojení\r\npostrojený\r\npostrojit\r\npostroj\r\npostruhovací\r\npostruhování\r\npostruhovaný\r\npostruhovat\r\npostřeh\r\npostřehnout\r\npostřehnutelnější\r\npostřehnutelný\r\npostřehnutí\r\npostřehnutý\r\nPostřekov\r\npostřekovský\r\npostřelenější\r\npostřelení\r\npostřelený\r\npostřelit\r\nPostřelmov\r\npostřelmovský\r\npostřelování\r\npostřelovaný\r\npostřelovat\r\npostřelovávání\r\npostřelovávaný\r\npostřelovávat\r\npostříbřený\r\npostříbřit\r\npostříbřování\r\npostříbřovat\r\npostřihání\r\npostříhání\r\npostřihaný\r\npostříhaný\r\npostřihat\r\npostříhat\r\npostřihávání\r\npostříhávání\r\npostřihávaný\r\npostříhávaný\r\npostřihávat\r\npostříhávat\r\npostřihovací\r\npostřihování\r\npostřihovaný\r\npostřihovat\r\npostříkání\r\npostříkaný\r\npostříkat\r\npostříkávání\r\npostříkávaný\r\npostříkávat\r\npostřik\r\npostříknout\r\npostřikovací\r\npostřikovač\r\npostřikování\r\npostřikovaný\r\npostřikovat\r\npostřikovávání\r\npostřikovávaný\r\npostřikovávat\r\npostřikový\r\npostřílení\r\npostřílený\r\npostřílet\r\nPostřižín\r\npostřižínský\r\nPostScript\r\npostscriptový\r\npostsekundární\r\npostskriptový\r\npostskriptum\r\npostsocialismus\r\npostsocialistický\r\npoststalinismus\r\npoststrukturalismus\r\npostsynaptický\r\npostsynchronizování\r\npostsynchronizovaný\r\npostsynchronizovat\r\nposttotalitní\r\nposttraumatický\r\npostůjme\r\npostůj\r\npostůjte\r\npostulát\r\npostulování\r\npostulovaný\r\npostulovat\r\npostulovávání\r\npostulovávaný\r\npostulovávat\r\npostůňu\r\npostup\r\nPostupice\r\npostupický\r\nPostupim\r\npostupimský\r\npostupitelčin\r\npostupitelka\r\npostupitel\r\npostupitelův\r\npostupka\r\npostupnější\r\npostupnice\r\npostupničin\r\npostupník\r\npostupníkův\r\npostupný\r\npostupování\r\npostupováno\r\npostupovaný\r\npostupovat\r\npostupový\r\npostupující\r\nposturální\r\npostýlka\r\npostžiro\r\nposud\r\nposudek\r\nposudkářčin\r\nposudkářka\r\nposudkář\r\nposudkářův\r\nposudkový\r\nposukovací\r\nposukování\r\nposukovaný\r\nposukovat\r\nposunek\r\nposuněk\r\nposun\r\nposunkovat\r\nposuňkovat\r\nposunkový\r\nposuňkový\r\nposunout\r\nposunovací\r\nposunovačka\r\nposunovač\r\nposunovačův\r\nposunování\r\nposunovaný\r\nposunovat\r\nposunovatelnější\r\nposunující\r\nposunutější\r\nposunutelnější\r\nposunutelný\r\nposunutí\r\nposunutý\r\nposunutý\r\nposupnější\r\nposupný\r\nposušení\r\nposušený\r\nposušit\r\nposuv\r\nposuvka\r\nposuvna\r\nposuvník\r\nposuvný\r\nposuzovací\r\nposuzovanější\r\nposuzování\r\nposuzovaný\r\nposuzovat\r\nposuzovatelčin\r\nposuzovatelka\r\nposuzovatelný\r\nposuzovatelský\r\nposuzovatel\r\nposuzovatelův\r\nposuzující\r\nposvačení\r\nposvačený\r\nposvačit\r\nposvatební\r\nposvátnější\r\nposvátný\r\nposvěcení\r\nposvěcený\r\nposvěcování\r\nposvěcovaný\r\nposvěcovat\r\nposvěcující\r\nposvětit\r\nposvícenecký\r\nposvícení\r\nposvícenský\r\nposvítění\r\nposvítit\r\nposypající\r\nposypanější\r\nposypání\r\nposýpání\r\nposypaný\r\nposýpaný\r\nposypat\r\nposýpat\r\nposypátko\r\nposýpátko\r\nposypávající\r\nposypávanější\r\nposypávání\r\nposypávaný\r\nposypávat\r\nposyp\r\nposypka\r\nposypový\r\npošedesáté\r\npošel\r\npošenský\r\npošeptání\r\npošeptaný\r\npošeptat\r\npošeptmo\r\npošesté\r\npošestnácté\r\npošetilcův\r\npošetilčin\r\npošetilec\r\npošetilejší\r\npošetilka\r\npošetilý\r\npoševní\r\npošihlávat\r\npošilhávající\r\npošilhávání\r\npošilhávat\r\npošimrání\r\npošimraný\r\npošimrat\r\npošinout\r\npošinutý\r\npošít\r\npošití\r\npošitý\r\nPošívalová\r\nPošíval\r\nPošívalův\r\npoškádlení\r\npoškádlený\r\npoškádlit\r\npošklebek\r\npošklebování\r\npošklebovaný\r\npošklebovat\r\npošklebovávání\r\npošklebovávat\r\npošklebující\r\npoškodit\r\npoškolaččin\r\npoškolačka\r\npoškolák\r\npoškolákův\r\npoškorpení\r\npoškorpený\r\npoškorpit\r\npoškozencův\r\npoškozenec\r\npoškozenější\r\npoškození\r\npoškozený\r\npoškozovanější\r\npoškozování\r\npoškozovaný\r\npoškozovat\r\npoškozovatel\r\npoškozovatelův\r\npoškozující\r\npoškrabající\r\npoškrábající\r\npoškrabanější\r\npoškrábanější\r\npoškrabání\r\npoškrábání\r\npoškrabaný\r\npoškrábaný\r\npoškrabat\r\npoškrábat\r\npoškrabávání\r\npoškrabávat\r\npoškrábnout\r\npoškrábnutější\r\npoškrábnutí\r\npoškrábnutý\r\npoškrábnutý\r\npoškrtat\r\npošlapání\r\npošlapaný\r\npošlapat\r\npošlapávání\r\npošlapávaný\r\npošlapávat\r\npošlehání\r\npošlehaný\r\npošlehat\r\npošlejší\r\npošlu\r\npošlý\r\npošmournější\r\npošmourný\r\npošmurnější\r\nPošná\r\npošoupnout\r\npošpinění\r\npošpiněný\r\npošpinit\r\npošpiňování\r\npošpiňovaný\r\npošpiňovat\r\npošramocený\r\npošramotění\r\npošramotit\r\npošťácký\r\npošťaččin\r\npošťačka\r\npošťák\r\npošťákův\r\npošta\r\npoštěbetat\r\npoštěkávající\r\npoštěkávání\r\npoštěkávaný\r\npoštěkávat\r\npoštěkování\r\npoštěstit\r\npoštěváček\r\npoštípání\r\npoštípaný\r\npoštípat\r\npoštípávání\r\npoštípávaný\r\npoštípávat\r\npoštmistrová\r\npoštmistr\r\npoštmistrův\r\nPoštolek\r\nPoštolka\r\npoštolka\r\nPoštolková\r\nPoštolkův\r\npošťourání\r\npošťouraný\r\npošťourat\r\npoštovné\r\npoštovnictví\r\npoštovní\r\npoštovský\r\npoštrachání\r\npoštrachaný\r\npoštrachat\r\npošťuchování\r\npošťuchovaný\r\npošťuchovat\r\npoštvanější\r\npoštvání\r\npoštvaný\r\npoštvat\r\npoštvávání\r\npoštvávaný\r\npoštvávat\r\npošuk\r\npošukův\r\npošumaví\r\npošumavský\r\npošušňáníčko\r\nPošvář\r\npotácející\r\npotácení\r\npotácet\r\npotácet\r\npotácivější\r\npotácivý\r\npotáčový\r\npotáč\r\npotahání\r\npotahaný\r\npotahat\r\npotah\r\npotáhnout\r\npotáhnutí\r\npotahovací\r\npotahovačky\r\npotahování\r\npotahovaný\r\npotahovat\r\npotahovávání\r\npotahovávaný\r\npotahovávat\r\npotahový\r\npotahující\r\npotají\r\npotajmu\r\npoťapat\r\npotápěčka\r\npotápěčský\r\npotápěčství\r\npotápěč\r\npotápěčův\r\npotápějící\r\npotápěnější\r\npotápění\r\npotápěný\r\npotápět\r\npotápka\r\npotápkovitý\r\npotáplice\r\npotápník\r\npotápníkův\r\npotaš\r\npotavinový\r\npotázání\r\npotázaný\r\npotázat\r\npotaz\r\npotaženější\r\npotažení\r\npotažený\r\npotáži\r\npotažitelnější\r\npotažitelný\r\npotažmo\r\npotažní\r\npoté\r\npoteče\r\npotečkovanější\r\npotečkování\r\npotečkovaný\r\npotečkovat\r\npotěh\r\npotěcha\r\npotěmkinovský\r\npotěmkinský\r\npotemnělý\r\npotemnění\r\npotemněný\r\npotemnět\r\npotemník\r\npotemníkův\r\npotemnit\r\npotence\r\npotenciál\r\npotencialita\r\npotenciální\r\npotenciálový\r\npotenciodynamický\r\npotenciometr\r\npotenciometrický\r\npotenciometrický\r\npotencionální\r\npotenciostat\r\npotenciostatický\r\npotencovat\r\npotentát\r\npotentátův\r\npotentnější\r\npotentní\r\npotěrací\r\npotěračka\r\npotěr\r\npotěšení\r\npotěšený\r\npotěšit\r\npotěšitelnější\r\npotěšitelný\r\npotěšnější\r\npotěšující\r\npotetování\r\npotetovaný\r\npotetovat\r\npotěžkanější\r\npotěžkání\r\npotěžkaný\r\npotěžkat\r\npotěžkávání\r\npotěžkávaný\r\npotěžkávat\r\npot\r\npotící\r\npotichoučku\r\npotichu\r\npotírající\r\npotíraní\r\npotírání\r\npotíraný\r\npotírat\r\npotisící\r\npotisk\r\npotisknout\r\npotisknutí\r\npotisknutý\r\npotiskovací\r\npotiskování\r\npotiskovaný\r\npotiskovat\r\npotiskovatelný\r\npotištění\r\npotištěný\r\npotit\r\npotítko\r\npotivý\r\npotížista\r\npotížistčin\r\npotížistka\r\npotížistův\r\npotíž\r\npotkanější\r\npotkání\r\npotkaní\r\npotkan\r\npotkanův\r\npotkaný\r\npotkat\r\npotkávací\r\npotkávanější\r\npotkávání\r\npotkávaný\r\npotkávat\r\npotka\r\npotknout\r\npotlačení\r\npotlačený\r\npotlačit\r\npotlačitelnější\r\npotlačitelný\r\npotlačovací\r\npotlačovanější\r\npotlačování\r\npotlačovaný\r\npotlačovat\r\npotlačovatelský\r\npotlačující\r\npotlachání\r\npotlachaný\r\npotlachat\r\npotlach\r\npotlapat\r\npotlesk\r\npotlouct\r\npotloukající\r\npotloukanější\r\npotloukání\r\npotloukaný\r\npotloukat\r\npotloukávanější\r\npotloukávání\r\npotloukávaný\r\npotloukávat\r\npotlučenější\r\npotlučení\r\npotlučený\r\npotmě\r\npotměchuť\r\npotměšilcův\r\npotměšilec\r\npotměšilejší\r\nPotměšilová\r\nPotměšil\r\nPotměšilův\r\npotměšilý\r\npotní\r\nPotocký\r\nPotoček\r\nPotočková\r\nPotočkův\r\npotoční\r\npotok\r\npotok\r\npotom\r\npotomek\r\npotomkův\r\npotomstvo\r\npotopa\r\npotopenější\r\npotopení\r\npotopený\r\npotopit\r\npotopitelnější\r\npotopitelný\r\npotopovější\r\npotopový\r\npotos\r\npoťouchlejší\r\npoťouchlý\r\npotový\r\npotpouri\r\npotracení\r\npotracený\r\npotrácivý\r\npotrápení\r\npotrápený\r\npotrápit\r\npotrat\r\npotratit\r\npotratový\r\npotrava\r\npotrávení\r\npotrávený\r\npotravinářský\r\npotravinářství\r\npotravinář\r\npotravinářův\r\npotravina\r\npotravinový\r\npotrávit\r\npotravní\r\npotravový\r\npotra\r\npotrefení\r\npotrefený\r\npotrénování\r\npotrénovat\r\npotrestanější\r\npotrestání\r\npotrestaný\r\npotrestat\r\npotrhanější\r\npotrhání\r\npotrhaný\r\npotrhat\r\npotrhlejší\r\npotrhlý\r\npotrkat\r\npotrpění\r\npotrpěný\r\npotrpět\r\npotrubář\r\npotrubářův\r\npotrubí\r\npotrubní\r\npotrvám\r\npotrvat\r\npotřásání\r\npotřásaný\r\npotřásat\r\npotřásávání\r\npotřásávat\r\npotřásl\r\npotřást\r\npotřeba\r\npotřebnější\r\npotřebný\r\npotřebování\r\npotřebovaný\r\npotřebovat\r\npotřebu\r\npotřebující\r\npotřeby\r\npotřenější\r\npotření\r\npotřený\r\npotřesení\r\npotřesen\r\npotřesený\r\npotřesu\r\npotřeštěncův\r\npotřeštěnec\r\npotřeštěnější\r\npotřeštěný\r\npotřetí\r\npotřicáté\r\npotřinácté\r\npotřísnění\r\npotřísněný\r\npotřísnit\r\npotříštěnější\r\npotříštěný\r\npotřít\r\nPotštát\r\npotštátský\r\nPotštejn\r\npotštejnský\r\nPotůček\r\npotůček\r\nPotůčková\r\npotůčkový\r\nPotůčkův\r\npotud\r\npotucha\r\npotulka\r\npotulnější\r\npotulný\r\npotulování\r\npotulovaný\r\npotulovat\r\npotulovávání\r\npotulovávat\r\npotulující\r\npotupa\r\npotupení\r\npotupený\r\npotupit\r\npotupitelnější\r\npotupitelný\r\npotupnější\r\npotupný\r\npoturčencův\r\npoturčenec\r\npotutelnější\r\npotutelný\r\npotvora\r\npotvorný\r\nPotvorov\r\npotvorovský\r\npotvrdit\r\npotvrzenější\r\npotvrzení\r\npotvrzenka\r\npotvrzený\r\npotvrzovací\r\npotvrzování\r\npotvrzovaný\r\npotvrzovat\r\npotvrzující\r\npotvůrka\r\npotyčka\r\npotýkající\r\npotykání\r\npotýkání\r\npotykat\r\npotýkat\r\npotýrání\r\npotýraný\r\npotýrat\r\npoučenější\r\npoučení\r\npoučený\r\npoučil\r\npoučím\r\npoučitelnější\r\npoučitelný\r\npoučit\r\npoučka\r\npoučkovější\r\npoučkový\r\npoučme\r\npouč\r\npoučnější\r\npoučný\r\npoučovací\r\npoučovanější\r\npoučování\r\npoučovaný\r\npoučovat\r\npoučovatelčin\r\npoučovatelka\r\npoučovatelství\r\npoučovatel\r\npoučovatelův\r\npoučte\r\npoučující\r\npoudil\r\npoudím\r\npoudit\r\npouďme\r\npouď\r\npouďte\r\npouhopouhý\r\npouhý\r\nPoucha\r\nPouchová\r\nPouchův\r\npoukázanější\r\npoukázání\r\npoukázán\r\npoukázaný\r\npoukázat\r\npoukazatelčin\r\npoukazatelka\r\npoukazatel\r\npoukazatelův\r\npoukaz\r\npoukázka\r\npoukázkový\r\npoukazník\r\npoukazníkův\r\npoukazovací\r\npoukazovanější\r\npoukazování\r\npoukazovaný\r\npoukazovat\r\npoukazující\r\npoukáži\r\npoulení\r\npoulený\r\nPoulíček\r\nPoulíčková\r\nPoulíčkův\r\npouliční\r\npoulit\r\nPoulová\r\nPoul\r\nPoulův\r\npoúnorový\r\nPoupa\r\npoupátko\r\npoupě\r\nPoupová\r\npoupravení\r\npoupravený\r\npoupravit\r\nPoupův\r\npoúrazový\r\npourážení\r\npourážený\r\npourážet\r\nPourová\r\nPour\r\nPourův\r\npousmání\r\npousmát\r\npoustevna\r\npoustevnice\r\npoustevnický\r\npoustevnictví\r\npoustevníček\r\npoustevničin\r\npoustevníčkův\r\npoustevničtější\r\npoustevník\r\npoustevníkův\r\nPoustka\r\npouštějící\r\npouštěnější\r\npouštění\r\npouštěný\r\npouštět\r\npouštní\r\npoušť\r\npoutací\r\npoutač\r\npoutající\r\npoutání\r\npoutaný\r\npoutat\r\npoutávání\r\npoutávaný\r\npoutávat\r\npoutavější\r\npoutavý\r\npoutíkání\r\npoutíkat\r\npoutko\r\npoutnice\r\npoutnický\r\npoutničtější\r\npoutník\r\npoutníkův\r\npoutní\r\npouto\r\npouťovější\r\npouťový\r\npoutrácení\r\npoutrácený\r\npoutrácet\r\npouť\r\npouvažovanější\r\npouvažování\r\npouvažovaný\r\npouvažovat\r\npouvažovatelnější\r\npouvažovatelný\r\npouvažující\r\nPouzarová\r\nPouzar\r\nPouzarův\r\npouzdro\r\npouzdrový\r\npouze\r\npoužít\r\npoužitější\r\npoužitelnější\r\npoužitelný\r\npoužití\r\npoužitý\r\npoužitý\r\npoužívající\r\npoužívající\r\npoužívanější\r\npoužívání\r\npoužívaný\r\npouživatelčin\r\npouživatelka\r\npouživatelnější\r\npouživatelný\r\npouživatel\r\npouživatelův\r\npoužívat\r\npovadání\r\npovadaný\r\npovadat\r\npovadávání\r\npovadávat\r\npovadlejší\r\npovadlý\r\npovadnout\r\npovaha\r\npovahopis\r\npovahový\r\npoválečný\r\npovalečský\r\npovalečství\r\npovalečštější\r\npovaleč\r\npovalečův\r\npovalení\r\npoválení\r\npovalený\r\npoválený\r\npoválet\r\npovalit\r\npoválka\r\npovalování\r\npovalovat\r\npovalovávání\r\npovalovávaný\r\npovalovávat\r\npovalový\r\npovalující\r\npovaření\r\npovařený\r\npovařit\r\npovázanější\r\npovázání\r\npovázaný\r\npovázat\r\npovázávanější\r\npovázávání\r\npovázávaný\r\npovázávat\r\npovazující\r\npováženější\r\npovážení\r\npovážený\r\npováži\r\npovážit\r\npovážlivější\r\npovážlivý\r\npovažovanější\r\npovažování\r\npovažovaný\r\npovažovat\r\npovažovatelnější\r\npovažovatelný\r\npovažující\r\npovděčen\r\npovděčna\r\npovděčni\r\npovděčno\r\npovděčnu\r\npovděčny\r\npovděčný\r\npovděkem\r\npovečeření\r\npovečeřený\r\npovečeřet\r\npovedenější\r\npovedení\r\npovědění\r\npoveden\r\npovedený\r\npověděný\r\npovědět\r\npovedl\r\npovědomější\r\npovědomí\r\npovědom\r\npovědomý\r\npovedu\r\nPovejšilová\r\nPovejšil\r\nPovejšilův\r\npovel\r\npovelový\r\npověra\r\npověrčivější\r\npověrčivý\r\npověrečnější\r\npověrečný\r\npověřencův\r\npověřenčin\r\npověřenecký\r\npověřenec\r\npověřenější\r\npověření\r\npověřenka\r\npověřenkyně\r\npověřenkynin\r\npověřený\r\npověřit\r\npověřovací\r\npověřovanější\r\npověřování\r\npověřovaný\r\npověřovat\r\npověřovatelčin\r\npověřovatelka\r\npověřovatel\r\npověřovatelův\r\npověřovávat\r\npověřující\r\npoveselení\r\npoveselený\r\npoveselit\r\npověsit\r\npovést\r\npověst\r\npověstnější\r\npověstný\r\npověšení\r\npověšený\r\npovětrnější\r\npovětrnostní\r\npovětrný\r\npovětroň\r\npovětří\r\npovětšinou\r\npovětší\r\npovězen\r\npovezu\r\npovícero\r\npovídačka\r\npovídající\r\npovídálek\r\npovídálkův\r\npovídanější\r\npovídání\r\npovídánka\r\npovídaný\r\npovídat\r\npovídavější\r\npovídavý\r\npovídečka\r\npovídkářčin\r\npovídkářka\r\npovídkář\r\npovídkářův\r\npovídka\r\npovídkový\r\npovidlo\r\npovidlový\r\npovijan\r\npovinen\r\npovinnější\r\npovinný\r\npovinován\r\npovinovaný\r\npovislejší\r\npovislý\r\npovislý\r\npovít\r\npovitější\r\npovití\r\npovitivismus\r\npovit\r\npovitý\r\npovitý\r\npovívající\r\npovívanější\r\npovívání\r\npovívaný\r\npovívat\r\npovláčka\r\npovlak\r\npovlakování\r\npovlakovaný\r\npovlakovat\r\npovlakový\r\npovlávající\r\npovlávání\r\npovlávat\r\npovléct\r\npovlečenější\r\npovlečení\r\npovlečený\r\npovlékací\r\npovlékání\r\npovlékaný\r\npovlékat\r\npovlékl\r\npovleklý\r\npovléknout\r\npovléknutí\r\npovléknutý\r\npóvl\r\npovlíknout\r\npovločkování\r\npovločkovat\r\npovlovnější\r\npovlovný\r\nPovltaví\r\npovltavský\r\npovodění\r\npovoděný\r\npovodeň\r\npovodí\r\npovodit\r\npovodňový\r\npovolající\r\npovolancův\r\npovolanec\r\npovolanější\r\npovolání\r\npovolaný\r\npovolat\r\npovolávací\r\npovolávající\r\npovolávanější\r\npovolávání\r\npovolávaný\r\npovolávat\r\npovolební\r\npovolenější\r\npovolení\r\npovolenka\r\npovolený\r\npovolit\r\npovolnější\r\npovolný\r\npovolovací\r\npovolování\r\npovolovaný\r\npovolovat\r\npovolovávání\r\npovolovávaný\r\npovolovávat\r\npovolující\r\nPovondra\r\nPovondrová\r\nPovondrův\r\npovoskovat\r\npovoz\r\npovozit\r\npovoznický\r\npovoznictví\r\npovozničtější\r\npovozník\r\npovozníkův\r\npovožení\r\npovožený\r\npovracení\r\npovracený\r\npovracet\r\npovraždění\r\npovražděný\r\npovraždit\r\npovrch\r\npovrchnější\r\npovrchní\r\npovrchovější\r\npovrchový\r\nPovrová\r\nPovr\r\npovrstvení\r\npovrstvený\r\npovrstvit\r\npovrší\r\npovrška\r\nPovrův\r\npovrženější\r\npovříslo\r\npovstalcův\r\npovstalecký\r\npovstalec\r\npovstalečtější\r\npovstalý\r\npovstání\r\npovstání\r\npovstat\r\npovstávající\r\npovstávání\r\npovstávat\r\npovšechnější\r\npovšechný\r\npovšimnout\r\npovšimnutí\r\npovšimnutý\r\nPovydří\r\npovyhrnout\r\npovyhrnutí\r\npovyhrnutý\r\npovyk\r\npovykládání\r\npovykládaný\r\npovykládat\r\npovykování\r\npovykovaný\r\npovykovat\r\npovykovávání\r\npovykovávaný\r\npovykovávat\r\npovykující\r\npovylézt\r\npovypravení\r\npovyprávění\r\npovypravený\r\npovyprávět\r\npovypravit\r\npovypustit\r\npovypuštění\r\npovypuštěný\r\npovyrazit\r\npovyražení\r\npovyražený\r\npovýrobní\r\npovyrostlejší\r\npovyrostl\r\npovyrostlý\r\npovyrostu\r\npovyrůstat\r\npovyrůst\r\npovyskočení\r\npovyskočit\r\npovystrčenější\r\npovystrčený\r\npovýšencův\r\npovýšenecký\r\npovýšenectví\r\npovýšenec\r\npovýšenečtější\r\npovýšenější\r\npovýšení\r\npovýšenka\r\npovýšený\r\npovýšit\r\npovyšování\r\npovyšovaný\r\npovyšovat\r\npovyšující\r\npovytáhnout\r\npovytáhnutí\r\npovytahování\r\npovytahovaný\r\npovytahovat\r\npovytahovávání\r\npovytahovávaný\r\npovytahovávat\r\npovytaženější\r\npovytažení\r\npovytažený\r\npovytažitelnější\r\npovytažitelný\r\npovzbudit\r\npovzbudivější\r\npovzbudivý\r\npovzbudivý\r\npovzbuzení\r\npovzbuzený\r\npovzbuzování\r\npovzbuzovaný\r\npovzbuzovat\r\npovzbuzující\r\npovzdech\r\npovzdechnout\r\npovzdechnutí\r\npovzdychnout\r\npovzdychnutí\r\npovzdychnutý\r\npovznášející\r\npovznášení\r\npovznášený\r\npovznášet\r\npovznesenější\r\npovznesení\r\npovznesený\r\npovznést\r\npovznešený\r\npovztekání\r\npovztekaný\r\npovztekat\r\npovztekávání\r\npovztekávat\r\npoza\r\npozabíjení\r\npozabíjený\r\npozabíjet\r\npozadí\r\npozadí\r\npozaďový\r\npozadu\r\npozamykat\r\npozánětlivý\r\npozapomenout\r\npozapomenutí\r\npozapomenutý\r\npozapomněl\r\npozastavení\r\npozastavení\r\npozastavený\r\npozastavit\r\npozastavovanější\r\npozastavování\r\npozastavovaný\r\npozastavovat\r\npozastavující\r\npozastření\r\npozastřený\r\npozastřít\r\npozatýkání\r\npozatýkaný\r\npozatýkat\r\npozavírající\r\npozavíranější\r\npozavírání\r\npozavíraný\r\npozavírat\r\npozávodění\r\npozávodit\r\npóza\r\npozbudu\r\npozbyl\r\npozbytější\r\npozbýt\r\npozbytí\r\npozbyt\r\npozbytý\r\npozbytý\r\npozbývající\r\npozbývání\r\npozbývaný\r\npozbývat\r\npozbyv\r\npozbyvše\r\npozbyvši\r\npozbyvší\r\nPozďatín\r\npozďatínský\r\npozdě\r\nPozděchov\r\npozděchovský\r\npozdější\r\npozdější\r\npozdění\r\npozdit\r\npozdněgotický\r\npozdní\r\npozdravení\r\npozdravený\r\npozdrav\r\npozdravit\r\npozdravnější\r\npozdravný\r\npozdravování\r\npozdravovaný\r\npozdravovat\r\npozdravující\r\npozdrženější\r\npozdržení\r\npozdržený\r\npozdržet\r\npozdvihání\r\npozdvíhání\r\npozdvihaný\r\npozdvíhaný\r\npozdvihat\r\npozdvíhat\r\npozdvihnout\r\npozdvihnutí\r\npozdvihování\r\npozdvihovaný\r\npozdvihovat\r\npozdvižení\r\npozdvižený\r\npozemek\r\npozemka\r\npozemkový\r\npozemní\r\npozemský\r\npozemšťančin\r\npozemšťanka\r\npozemšťan\r\npozemšťanův\r\npozemštější\r\npozeptání\r\npozeptaný\r\npozeptat\r\npozeptávání\r\npozeptávat\r\npozérčin\r\npozérka\r\npozér\r\npozérský\r\npozérství\r\npozérův\r\npozhasínat\r\npozice\r\npoziční\r\npozinkovanější\r\npozinkování\r\npozinkovaný\r\npozinkovat\r\npozitiv\r\npozitivismus\r\npozitivista\r\npozitivistčin\r\npozitivistický\r\npozitivističtější\r\npozitivistka\r\npozitivistův\r\npozitivita\r\npozitivnější\r\npozitivní\r\npozitivum\r\npozitron\r\npozitronový\r\npozítří\r\npozlacení\r\npozlacený\r\npozlacovač\r\npozlacování\r\npozlacovaný\r\npozlacovat\r\npozlatit\r\npozlátko\r\npozlátkový\r\npozlobení\r\npozlobený\r\npozlobit\r\nPozlovice\r\npozlovický\r\npozměněnější\r\npozměnění\r\npozměněný\r\npozměnit\r\npozměnitelnější\r\npozměnitelný\r\npozměnovací\r\npozměňovací\r\npozměňovanější\r\npozměňování\r\npozměňovaný\r\npozměňovat\r\npozměňovávat\r\npozměňující\r\npozn\r\npoznačení\r\npoznačený\r\npoznačit\r\npoznačování\r\npoznačovaný\r\npoznačovat\r\npoznamenanější\r\npoznamenání\r\npoznamenaný\r\npoznamenat\r\npoznamenávající\r\npoznamenávanější\r\npoznamenávání\r\npoznamenávaný\r\npoznamenávat\r\npoznámka\r\npoznámkový\r\npoznanější\r\npoznáníchtivější\r\npoznání\r\npoznaňský\r\npoznaný\r\nPoznaň\r\npoznatek\r\npoznatelnější\r\npoznatelný\r\npoznat\r\npoznatkový\r\npoznávací\r\npoznávající\r\npoznávanější\r\npoznávání\r\npoznávaný\r\npoznávat\r\npoznenáhlu\r\npoznenáhlý\r\nPozníková\r\nPozník\r\nPozníkův\r\npozobání\r\npozobaný\r\npozobat\r\npozobávání\r\npozobávaný\r\npozobávat\r\npozor\r\npozornější\r\npozornění\r\npozornět\r\npozorný\r\npozorovací\r\npozorovanější\r\npozorování\r\npozorovaný\r\npozorovat\r\npozorovatelčin\r\npozorovatelka\r\npozorovatelna\r\npozorovatelnější\r\npozorovatelný\r\npozorovatelský\r\npozorovatel\r\npozorovatelův\r\npozorovávání\r\npozorovávaný\r\npozorovávat\r\npozoruhodnější\r\npozoruhodný\r\npozorující\r\nPozořice\r\npozořický\r\npozotvíranější\r\npozotvírání\r\npozotvíraný\r\npozotvírat\r\npozounér\r\npozounérův\r\npozoun\r\npozounista\r\npozounistčin\r\npozounistka\r\npozounistův\r\npózování\r\npózovat\r\npózovitý\r\npozpátku\r\npozpívat\r\npozrušování\r\npozrušovaný\r\npozrušovat\r\npozření\r\npozřený\r\npozřít\r\npoztrácení\r\npoztrácený\r\npoztrácet\r\npózující\r\npozurážení\r\npozurážený\r\npozurážet\r\npozůstalostní\r\npozůstalý\r\npozůstalý\r\npozůstatek\r\npozůstávající\r\npozůstávání\r\npozůstávat\r\npozvanější\r\npozvání\r\npozvánka\r\npozvaný\r\npozvat\r\npozvedající\r\npozvedání\r\npozvedaný\r\npozvedat\r\npozvedávání\r\npozvedávat\r\npozvednout\r\npozvednutí\r\npozvednutý\r\npozvolna\r\npozvolnější\r\npozvolný\r\npozvracení\r\npozvracený\r\npozvracet\r\npozývání\r\npozývaný\r\npožádanější\r\npožádání\r\npožádaný\r\npožádat\r\npožadavek\r\npožadovanější\r\npožadování\r\npožadovaný\r\npožadováný\r\npožadovat\r\npožadovatel\r\npožadovatelův\r\npožadovávání\r\npožadovávat\r\npožadující\r\npožahovací\r\npožahování\r\npožahovaný\r\npožahovat\r\npožal\r\npožár\r\npožárnice\r\npožárnický\r\npožárničtější\r\npožárník\r\npožárníkův\r\npožární\r\npožárový\r\npožářiště\r\npožatější\r\npožat\r\npožatý\r\npožatý\r\npožehnanější\r\npožehnání\r\npožehnaný\r\npožehnat\r\npožehnávání\r\npožehnávaný\r\npožehnávat\r\npoženštění\r\npoženštěný\r\npoženštit\r\npoženu\r\npožerák\r\npožerek\r\npožhavenější\r\npožhavení\r\npožhavený\r\npožhavit\r\npožidovštění\r\npožidovštěný\r\npožidovštit\r\npožínání\r\npožínaný\r\npožínat\r\npožírač\r\npožíračův\r\npožírající\r\npožírání\r\npožíraný\r\npožírat\r\npožít\r\npožitek\r\npožít\r\npožití\r\npožitkářčin\r\npožitkářka\r\npožitkářský\r\npožitkářství\r\npožitkář\r\npožitkářův\r\npožitkový\r\npožitý\r\npožívacký\r\npoživačnější\r\npoživačný\r\npožívačný\r\npožívač\r\npožívačův\r\npožívající\r\npožívanější\r\npožívání\r\npožívaný\r\npoživatelčin\r\npoživatelka\r\npoživatelnější\r\npoživatelný\r\npoživatelský\r\npoživatel\r\npoživatelův\r\npoživatina\r\npožívat\r\nPoživilová\r\nPoživil\r\nPoživilův\r\npožnout\r\npožnu\r\npožnutí\r\npožnutý\r\npožrání\r\npožraný\r\npožrat\r\npožvanění\r\npožvanit\r\npožvýkání\r\npožvýkaný\r\npožvýkat\r\npožvýkávat\r\npožvykovat\r\nPP\r\npp\r\npplpk\r\nppm\r\nppor\r\nppp\r\npprap\r\npr\r\nprabába\r\nprababiččin\r\nprababička\r\nprabábin\r\nprabídnější\r\nprabídný\r\nprabídný\r\npracák\r\npracákův\r\npracant\r\npracantův\r\npráce\r\nPracejovice\r\npracejovický\r\npracemi\r\npráceneschopnější\r\npráceneschopný\r\npráceschopnější\r\npráceschopný\r\nprací\r\npráci\r\npracička\r\nprácička\r\npracích\r\npracím\r\nprací\r\npracka\r\nPrackovice\r\nprackovický\r\npracna\r\npracnější\r\npracný\r\npracování\r\npracovat\r\npracovávání\r\npracovávaný\r\npracovávat\r\npracoviště\r\npracovitější\r\npracovitý\r\npracovivý\r\npracovna\r\npracovnější\r\npracovněprávní\r\npracovnice\r\npracovničin\r\npracovník\r\npracovníkův\r\npracovní\r\npracující\r\npračeština\r\npračka\r\npračkový\r\npračlověče\r\npračlověk\r\npračlověka\r\npračlověkem\r\npračlověku\r\npráč\r\npráčův\r\npradávnější\r\npradávno\r\npradávný\r\npradědeček\r\npradědečkův\r\npradědek\r\npradědkův\r\npradědový\r\npraděd\r\npradědův\r\nprádélko\r\nprádelna\r\nprádelníček\r\nprádelník\r\nprádelní\r\npradlářský\r\npradlena\r\npradlenčin\r\npradlenin\r\npradlenka\r\nprádlo\r\nprádlovina\r\nprádlový\r\nPrádová\r\nPrád\r\nPrádův\r\nprádýlko\r\npraevropa\r\npragmalingvistika\r\npragmatický\r\npragmatiččin\r\npragmatička\r\npragmatičtější\r\npragmatika\r\npragmatik\r\npragmatikův\r\npragmatismus\r\npragmatista\r\npragmatistčin\r\npragmatistka\r\npragmatistův\r\npragocentričtější\r\npragocentrismus\r\npragocentrista\r\npragocentristčin\r\npragocentristka\r\npragocentristův\r\nPragoexport\r\npragovka\r\npráh\r\nPraha\r\nprahem\r\nprahmota\r\nprahnout\r\nprahnutí\r\nprahorní\r\nprahory\r\nprahovější\r\nprahový\r\nprahu\r\nprahů\r\nprahům\r\nprahy\r\nprachárna\r\nPrachařová\r\nPrachař\r\nPrachařův\r\nprachatější\r\nPrachatice\r\nPrachaticko\r\nprachatický\r\nprachatý\r\nprachbídnější\r\nPrácheňsko\r\nprácheňský\r\nPrácheň\r\nprach\r\nprachmizernější\r\nprachmizerný\r\npráchnivějící\r\npráchnivění\r\npráchnivět\r\npráchnivý\r\nprachobyčejnější\r\nprachobyčejný\r\nprachoplynný\r\nprachotěsnější\r\nprachotěsný\r\nprachovější\r\nPrachovice\r\nprachovický\r\nprachovka\r\nprachovnice\r\nprachovský\r\nprachový\r\nprachsprostější\r\nprachsprostší\r\nprachšpatnější\r\nprachšpatný\r\nprachuvzdornější\r\nprachuvzdorný\r\nPraisová\r\nPrais\r\nPraisův\r\nprajazyk\r\nprajednoduchý\r\nprak\r\nprákrtský\r\nPrakšice\r\nprakšický\r\nprakticismus\r\nprakticista\r\nprakticistčin\r\nprakticistický\r\nprakticistka\r\nprakticistův\r\npraktický\r\npraktičtější\r\npraktikantčin\r\npraktikantka\r\npraktikant\r\npraktikantský\r\npraktikantův\r\npraktika\r\npraktikování\r\npraktikovaný\r\npraktikovat\r\npraktikovávání\r\npraktikovávaný\r\npraktikovávat\r\npraktik\r\npraktikující\r\npraktikum\r\npraktikův\r\npralátka\r\nprales\r\npralesní\r\npralidé\r\npralidech\r\npralidem\r\npralidi\r\npralidí\r\npralidmi\r\npralidský\r\npralinka\r\npramálo\r\npramalý\r\npramatčin\r\npramatka\r\npramének\r\npramenění\r\npramen\r\npramenící\r\nprameniště\r\npramenit\r\npramenitý\r\npramenný\r\npramenový\r\nprám\r\npramice\r\npramička\r\npramínek\r\npranepatrnější\r\npranic\r\npranice\r\npraničeho\r\npraničem\r\npraničemu\r\npraničím\r\npraní\r\npranostika\r\npranýřování\r\npranýřovaný\r\npranýřovat\r\npranýř\r\npranýřující\r\npraný\r\npraobyvatelčin\r\npraobyvatelka\r\npraobyvatel\r\npraobyvatelův\r\npraotcové\r\npraotcův\r\npraotec\r\nprap\r\npraparát\r\npraplaz\r\nprapočátek\r\nprapodivnější\r\nprapodivný\r\npraporčice\r\npraporčický\r\npraporčík\r\npraporčíkův\r\npraporec\r\npraporeček\r\npraporečník\r\npraporečníkův\r\npraporek\r\nprapor\r\npraporovina\r\npraporovitý\r\npraporový\r\npraprabába\r\npraprababiččin\r\npraprababička\r\npraprabábin\r\nprapradědeček\r\nprapradědečkův\r\nprapradědek\r\nprapradědkův\r\nprapraděd\r\nprapradědův\r\nprapravnuččin\r\nprapravnučka\r\nprapravnuk\r\nprapravnukův\r\nprapředek\r\nprapředkův\r\nprapříčina\r\nprapůvodce\r\nprapůvodcův\r\nprapůvod\r\nprapůvodnější\r\nprapůvodní\r\nprarodič\r\nprarodičův\r\npraruda\r\nprasáčtější\r\nprasák\r\nprasákův\r\nprasátko\r\nprasečí\r\nPrasečnice\r\nprasečnický\r\nprase\r\npraseodym\r\npraseodymový\r\nprásk\r\npráskaččin\r\nPraskačka\r\npráskačka\r\npraskající\r\npráskající\r\npráskanější\r\npraskání\r\npráskání\r\npráskaný\r\npraskat\r\npráskat\r\npraskavý\r\nPrasklice\r\nprasklický\r\nprasklina\r\nprasklinka\r\nprasklý\r\nprasknout\r\nprásknout\r\nprasknutí\r\nprásknutí\r\nprasknutý\r\nprásknutý\r\npraskot\r\npraslovanský\r\npraslovanština\r\nprasnice\r\nprasnička\r\nprastarší\r\nprastarý\r\nprastrýc\r\nprastrýcův\r\nprastrýček\r\nprastrýčkův\r\nprašan\r\nPrášek\r\nprášek\r\nprašelma\r\nprášenější\r\nprášení\r\nprášený\r\nPrášilová\r\nprášilovina\r\nprášilovský\r\nPrášil\r\nPrášilův\r\nprášit\r\nprašivcův\r\nprašivec\r\nprašivější\r\nprášivější\r\nprašivina\r\nprašivka\r\nprašivý\r\nprášivý\r\npráškovací\r\npráškování\r\npráškovaný\r\npráškovat\r\nPrášková\r\npráškovitý\r\npráškový\r\nPráškův\r\nprašnější\r\nprašník\r\nprašníkový\r\nprašný\r\nprašpatnější\r\npraštěnější\r\npraštění\r\npraštěný\r\npraštět\r\npraštit\r\nprát\r\nprateta\r\npratetička\r\npratetin\r\npratvar\r\nPrausová\r\nPraus\r\nPrausův\r\npraváctví\r\npravačka\r\npravák\r\npravákův\r\nPravcová\r\nPravcův\r\nPravda\r\npravda\r\npravděnepodobnější\r\npravděpodobně\r\npravděpodobnější\r\npravděpodobno\r\npravděpodobnostní\r\npravděpodobný\r\npravdista\r\npravdistčin\r\npravdistka\r\npravdistův\r\npravdivější\r\npravdivostní\r\npravdivý\r\npravdomluvnější\r\npravdomluvný\r\npravdoucí\r\nPravdová\r\nPravdův\r\npravdymilovnější\r\nprávě\r\nPravec\r\npravější\r\npravěk\r\npravěký\r\nprávem\r\nprávem\r\npravení\r\npravený\r\npravěpodobnější\r\npravice\r\npravící\r\npravicovější\r\npravicový\r\npravicový\r\npravičácký\r\npravičáctví\r\npravičáčtější\r\npravičák\r\npravičákův\r\npravička\r\npravidelnější\r\npravidelný\r\npravidlo\r\npravit\r\npravítko\r\npravítkový\r\npravlastích\r\npravlastím\r\npravlast\r\nPravlov\r\npravlovský\r\nprávnický\r\nprávniččin\r\nprávnička\r\nprávničtější\r\nprávník\r\nprávníkův\r\nprávní\r\npravnoučátko\r\npravnouče\r\npravnouček\r\npravnoučkův\r\npravnuččin\r\npravnučka\r\npravnuk\r\npravnukův\r\npravobarevný\r\npravobok\r\npravobřežní\r\npravolevý\r\npravomocích\r\npravomocím\r\npravomoc\r\npravomocnější\r\npravomocný\r\nprávo\r\npráv\r\nPravonín\r\npravonínský\r\npravopis\r\npravopisný\r\npravoplatnější\r\nprávoplatnější\r\npravoplatný\r\nprávoplatný\r\npravoramenný\r\npravoruký\r\npravoslaví\r\npravoslavný\r\nPravoslav\r\nPravoslavův\r\npravostranný\r\npravostředový\r\npravotočivý\r\npravotočivý\r\npravoúhelník\r\npravoúhlejší\r\npravoúhlý\r\nprávovárečný\r\npravověrnější\r\npravověrný\r\npravý\r\npravzor\r\npraxeologický\r\npraxe\r\nprazáklad\r\nprazákladnější\r\nprázdnější\r\nprázdnění\r\nprázdněný\r\nprázdninovější\r\nprázdninový\r\nprázdniny\r\nprázdnit\r\nprázdno\r\nprázdnota\r\nprázdný\r\nprazdroj\r\nprazích\r\nprazvláštní\r\nPražaččin\r\nPražačka\r\npražádný\r\nPražáková\r\nPražák\r\nPražákův\r\nPražančin\r\npražan\r\nPražanka\r\npražanový\r\nPražan\r\npražan\r\nPražanův\r\npražanův\r\npražcový\r\nPražčin\r\npražec\r\nPraženica\r\nPraženicová\r\nPraženicův\r\npražení\r\npražený\r\npražící\r\npražička\r\npražírna\r\npražit\r\nPražka\r\nPražmo\r\npražský\r\npražský\r\npražštější\r\npražština\r\nprcek\r\nprcinka\r\nprckův\r\nprcovní\r\nprča\r\nPrčice\r\nprčický\r\nprdelka\r\nprdelolezcův\r\nprdelolezec\r\nprdel\r\nprdýlka\r\nprealveolára\r\nprealveolární\r\npreambule\r\nprebenda\r\nprecedenční\r\nprecedent\r\nprecedentnější\r\nprecedentní\r\nprecese\r\nprecesní\r\nprecióznější\r\nprecipitace\r\nprecipitační\r\nprecipitát\r\nprecipitovaný\r\nprecipitovat\r\nprecisnější\r\nprecisování\r\nprecisovaný\r\nprecisovat\r\nprecizace\r\npreciznější\r\nprecizní\r\nprecizování\r\nprecizovaný\r\nprecizovat\r\npreclíček\r\npreclikář\r\npreclíkář\r\npreclikářův\r\npreclíkářův\r\npreclík\r\npredační\r\npredátor\r\npredátorův\r\npredekrement\r\npredestinovaný\r\npredikace\r\npredikát\r\npredikativní\r\npredikátní\r\npredikátový\r\npredikce\r\npredikční\r\npredikovanější\r\npredikování\r\npredikovaný\r\npredikovat\r\npredikovatelný\r\npredikovávání\r\npredikovávaný\r\npredikovávat\r\nprediktivní\r\nprediktor\r\npredispozice\r\npreeklampsie\r\npreempce\r\npreemptivní\r\nprefabrikace\r\nprefabrikát\r\nprefabrikátový\r\nprefabrikovaný\r\nprefabrikovat\r\npreface\r\nprefekt\r\nprefektura\r\nprefektův\r\npreference\r\npreferenční\r\npreferentní\r\npreferovanější\r\npreferování\r\npreferovaný\r\npreferovat\r\npreferující\r\nprefix\r\nprefixní\r\nprefixovanější\r\nprefixování\r\nprefixovaný\r\nprefixovat\r\nprefixový\r\npreformování\r\npreformovaný\r\npreformovat\r\npregnantnější\r\npregnantní\r\nPregola\r\npregraduální\r\nprehistorický\r\nprehistoričtější\r\nprehistorie\r\nPreiningerová\r\nPreininger\r\nPreiningerův\r\npreinkrement\r\nprejt\r\nprejudikující\r\nprejz\r\nprejzový\r\nprekambrium\r\nprekérnější\r\nprekérní\r\npreklinický\r\nprekluzivní\r\nprekompenzace\r\nprekompenzační\r\nprekursor\r\nprekurzor\r\nprekurzorový\r\nprelát\r\nprelátský\r\nprelátství\r\nprelatura\r\nprelátův\r\npreliminářčin\r\npreliminářka\r\npreliminář\r\npreliminářův\r\nprelingvistický\r\npreludium\r\npreludování\r\npreludovaný\r\npreludovat\r\npreludující\r\npremedikace\r\npremiantčin\r\npremiantka\r\npremiant\r\npremiantství\r\npremiantův\r\npremiéra\r\npremiérka\r\npremiérkčin\r\npremiérovat\r\npremiérový\r\npremiér\r\npremiérův\r\nprémie\r\nprémiový\r\npremisa\r\npremix\r\npremonstát\r\npremonstátův\r\npremonstrátčin\r\npremonstrátka\r\npremonstrát\r\npremonstrátský\r\npremonstrátův\r\npremorfologický\r\npremovaný\r\nprenatální\r\npreobligatorní\r\npreparace\r\npreparační\r\npreparát\r\npreparativní\r\npreparátor\r\npreparátorův\r\npreparování\r\npreparovaný\r\npreparovat\r\npreprint\r\npreprocesor\r\npreprocesorový\r\nprepsychický\r\nprepubertální\r\nprerafaelismus\r\nprerafaelistický\r\nprerekvizita\r\nprérie\r\nprérijní\r\nprériový\r\npreromantismus\r\npresbytář\r\npresbyterium\r\npresence\r\npresenční\r\npresentace\r\nprésent\r\npresentování\r\npresentovaný\r\npresentovat\r\npresidentčin\r\npresidentka\r\npresident\r\npresidentský\r\npresidentství\r\npresidentův\r\npreskripce\r\npresokratický\r\npresokratik\r\npresokratikův\r\npresování\r\npresovaný\r\npresovat\r\nPressburgerová\r\nPressburger\r\nPressburgerův\r\nprestissimo\r\nprestižnější\r\nprestižní\r\nprestiž\r\npresto\r\npresumpce\r\npresupozice\r\npresynaptický\r\nPrešov\r\nPrešovsko\r\nprešovský\r\npretendentčin\r\npretendent\r\npretendentka\r\npréteritum\r\npreuspořádání\r\nprevalence\r\nprevalenční\r\nprevence\r\nprevenční\r\npreventista\r\npreventistčin\r\npreventistka\r\npreventistův\r\npreventivnější\r\npreventivní\r\nprevít\r\nprevítův\r\nprezence\r\nprezenční\r\nprézens\r\nprezentace\r\nprezentační\r\nprezentismus\r\nprézentní\r\nprezentovanější\r\nprezentování\r\nprezentovaný\r\nprezentovat\r\nprezentovatelnější\r\nprezentovatelný\r\nprezentovávání\r\nprezentovávaný\r\nprezentovávat\r\nprezentující\r\nprezervativ\r\nprezervativový\r\nprezidentčin\r\nprezidentka\r\nprezident\r\nprezidentský\r\nprezidentství\r\nprezidentův\r\nprezidiální\r\nprezidium\r\nprezídium\r\nprha\r\nprchající\r\nPrchalová\r\nPrchal\r\nPrchalův\r\nprchání\r\nprchat\r\nprchávat\r\nprchavější\r\nprchavý\r\nprchlivcův\r\nprchlivec\r\nprchlivější\r\nprchlivý\r\nprchnout\r\nprchnutí\r\nprchnutý\r\npriapismus\r\npriapistický\r\nPribin\r\nPribinův\r\nPriesmeyerová\r\nPriesmeyer\r\nPriesmeyerův\r\nPrievidza\r\npríma\r\nprimabalerína\r\nprimabalerínin\r\nprimadona\r\nprimadonin\r\nprimalex\r\nprimánčin\r\nprimánka\r\nprimán\r\nprimánův\r\nprimárius\r\nprimárnější\r\nprimární\r\nprimářčin\r\nprimářka\r\nprimář\r\nprimářův\r\nprimasčin\r\nprimaska\r\nprimas\r\nprimasův\r\nprimáš\r\nprimášův\r\nprimátorčin\r\nprimátorka\r\nprimátor\r\nprimátorský\r\nprimátorství\r\nprimátorův\r\nprimát\r\nprimátův\r\nprima\r\nprimer\r\nprimérnější\r\nprimice\r\nprimitivismus\r\nprimitivistický\r\nprimitivizující\r\nprimitivnější\r\nprimitivní\r\nprimitiv\r\nprimitivum\r\nprimitivův\r\nprimový\r\nprimule\r\nprimulka\r\nprimus\r\nPrimusová\r\nPrimus\r\nPrimusův\r\nPrinceton\r\nprincetonský\r\nprincezčin\r\nprincezka\r\nprincezna\r\nprinceznička\r\nprinceznin\r\nprincipálčin\r\nprincipálka\r\nprincipál\r\nprincipálův\r\nprincip\r\nprincipiálnější\r\nprincipiální\r\nprincipu\r\nPrincová\r\nprinc\r\nPrinc\r\nPrincův\r\nprincův\r\npriorita\r\nprioritnější\r\nprioritní\r\nPripeť\r\nprisma\r\nprismový\r\nprivát\r\nprivatista\r\nprivatistčin\r\nprivatistka\r\nprivatistův\r\nprivativní\r\nprivatizace\r\nprivatizační\r\nprivatizátor\r\nprivatizátorův\r\nprivatizování\r\nprivatizovaný\r\nprivatizovat\r\nprivátnější\r\nprivátní\r\nprivilegium\r\nprivilegovanější\r\nprivilegovaný\r\nprivilegovat\r\nprivilej\r\nPriwin\r\nprizma\r\nprizmatický\r\nprkénko\r\nprkennější\r\nprkenný\r\nprkno\r\nprkotina\r\nprkýnko\r\nPrlov\r\nprlovský\r\npro\r\nproamerický\r\nprobace\r\nprobační\r\nprobádanější\r\nprobádání\r\nprobádaný\r\nprobadatelný\r\nprobádat\r\nprobarvenější\r\nprobarvení\r\nprobarvený\r\nprobarvit\r\nprobarvování\r\nprobarvovaný\r\nprobarvovat\r\nprobatolení\r\nprobatolit\r\nprobdělý\r\nprobděnější\r\nprobdění\r\nprobděný\r\nprobdít\r\nproběhání\r\nproběhaný\r\nproběhat\r\nproběhlý\r\nproběhnout\r\nproběhnutí\r\nproběhnutý\r\nproběhnuvší\r\nproběhovější\r\nproběhový\r\nprobelhání\r\nprobelhat\r\nprobelhávání\r\nprobelhávat\r\nprobendění\r\nprobenděný\r\nprobendit\r\nprobíhačka\r\nprobíhající\r\nprobíhanější\r\nprobíhání\r\nprobíhaný\r\nprobíhat\r\nprobíhávání\r\nprobíhávaný\r\nprobíhávat\r\nprobíječka\r\nprobíjející\r\nprobíjení\r\nprobíjený\r\nprobíjet\r\nprobírající\r\nprobíranější\r\nprobíranější\r\nprobírání\r\nprobíraný\r\nprobírat\r\nprobírka\r\nprobít\r\nprobití\r\nprobit\r\nprobitý\r\nproblebtnout\r\nproblebtnutí\r\nproblebtnutý\r\nproblematický\r\nproblematičtější\r\nproblematika\r\nproblematizovanější\r\nproblematizování\r\nproblematizovaný\r\nproblematizovat\r\nproblematizovávat\r\nproblematizující\r\nproblémek\r\nproblém\r\nproblémovější\r\nproblémový\r\nprobleskávající\r\nproblesknout\r\nproblesknutí\r\nprobleskování\r\nprobleskovaný\r\nprobleskovat\r\nprobleskující\r\nproblikání\r\nproblikaný\r\nproblikat\r\nproblikávání\r\nproblikávat\r\nprobliknout\r\nprobliknutí\r\nproblít\r\nproblití\r\nproblit\r\nproblitý\r\nproblívání\r\nproblívaný\r\nproblívat\r\nprobloumání\r\nprobloumaný\r\nprobloumat\r\nprobloumávat\r\nprobodání\r\nprobodaný\r\nprobodat\r\nprobodávání\r\nprobodávaný\r\nprobodávat\r\nproboden\r\nprobodený\r\nprobodnout\r\nprobodnutí\r\nprobodnutý\r\nproboha\r\nprobojování\r\nprobojovaný\r\nprobojovat\r\nprobojovávající\r\nprobojovávání\r\nprobojovávaný\r\nprobojovávat\r\nprobolení\r\nprobolet\r\nproboření\r\nprobořený\r\nprobořit\r\nProboštov\r\nproboštovský\r\nprobošt\r\nproboštství\r\nproboštův\r\nprobourání\r\nprobouraný\r\nprobourat\r\nprobourávající\r\nprobourávání\r\nprobourávaný\r\nprobourávat\r\nprobouzející\r\nprobouzení\r\nprobouzený\r\nprobouzet\r\nproboxování\r\nproboxovaný\r\nproboxovat\r\nproboxovávání\r\nproboxovávaný\r\nproboxovávat\r\nprobranější\r\nprobraní\r\nprobrání\r\nprobraný\r\nprobrat\r\nprobrečení\r\nprobrečený\r\nprobrečet\r\nprobreptání\r\nprobreptaný\r\nprobreptat\r\nprobreptnout\r\nprobreptnutí\r\nprobreptnutý\r\nprobrousit\r\nprobroušenější\r\nprobroušení\r\nprobroušený\r\nprobrouzdání\r\nprobrouzdaný\r\nprobrouzdat\r\nprobrušovanější\r\nprobrušování\r\nprobrušovaný\r\nprobrušovat\r\nprobrušující\r\nprobublání\r\nprobublaný\r\nprobublat\r\nprobublávající\r\nprobublávat\r\nprobudit\r\nprobůh\r\nProbulov\r\nprobulovský\r\nprobušení\r\nprobušený\r\nprobušit\r\nprobuzenější\r\nprobuzení\r\nprobuzený\r\nprocamrat\r\nprocapat\r\nprocarský\r\nprocedit\r\nprocedurálnější\r\nprocedurální\r\nprocedura\r\nprocentický\r\nprocentíčko\r\nprocentní\r\nprocento\r\nprocentový\r\nprocentuální\r\nproces\r\nprocesionální\r\nprocesí\r\nprocesní\r\nprocesor\r\nprocesorový\r\nprocesový\r\nprocestování\r\nprocestovaný\r\nprocestovat\r\nprocesu\r\nprocesualista\r\nprocesualistčin\r\nprocesualistka\r\nprocesualistův\r\nprocesuálnější\r\nprocezení\r\nprocezený\r\nprocitající\r\nprocitání\r\nprocitat\r\nprocitávání\r\nprocitávat\r\nprocítěnější\r\nprocítění\r\nprocítěný\r\nprocítit\r\nprocitnout\r\nprocitnutí\r\nprociťování\r\nprociťovaný\r\nprociťovat\r\nproclení\r\nproclený\r\nproclít\r\nproclívání\r\nproclívaný\r\nproclívat\r\nprocmrndání\r\nprocmrndaný\r\nprocmrndat\r\nprocmrndávat\r\nprocouvání\r\nprocouvaný\r\nprocouvat\r\nprocouvávání\r\nprocouvávaný\r\nprocouvávat\r\nprocovský\r\nprocovství\r\nprocovštější\r\nprocpanější\r\nprocpání\r\nprocpaný\r\nprocpat\r\nprocpávání\r\nprocpávaný\r\nprocpávat\r\nprocrčení\r\nprocrčet\r\nprocucající\r\nprocucanější\r\nprocucání\r\nprocucaný\r\nprocucat\r\nprocucávat\r\nprocupat\r\nprocupitání\r\nprocupitat\r\nprocupitávání\r\nprocupitávat\r\nprocupu\r\nproc\r\nprocův\r\nprocvakání\r\nprocvakaný\r\nprocvakat\r\nprocvakávání\r\nprocvakávaný\r\nprocvakávat\r\nprocvaknout\r\nprocvaknutí\r\nprocvaknutý\r\nprocválání\r\nprocválaný\r\nprocválat\r\nprocválávání\r\nprocválávat\r\nprocvičenější\r\nprocvičení\r\nprocvičený\r\nprocvičit\r\nprocvičování\r\nprocvičovaný\r\nprocvičovat\r\nprocvičující\r\nprocvrlikání\r\nprocvrlikaný\r\nprocvrlikat\r\nprocvrnkávání\r\nprocvrnkávaný\r\nprocvrnkávat\r\nproč\r\npročekání\r\npročekaný\r\npročekat\r\npročenichání\r\npročenichaný\r\npročenichat\r\npročerpání\r\npročerpaný\r\npročerpat\r\npročervenání\r\npročervenat\r\npročesanější\r\npročesání\r\npročesaný\r\npročesat\r\npročesávací\r\npročesávání\r\npročesávaný\r\npročesávat\r\npročež\r\npročísnout\r\npročísnutí\r\npročísnutý\r\npročíst\r\npročistění\r\npročistit\r\npročisťovat\r\npročisťující\r\npročištění\r\npročištěný\r\npročišťovací\r\npročišťování\r\npročišťovaný\r\npročišťovat\r\npročišťující\r\npročítající\r\npročítání\r\npročítaný\r\npročítat\r\npročmuchání\r\npročmuchaný\r\npročmuchat\r\npročmuchávat\r\npročpak\r\npročtenější\r\npročtení\r\npročtený\r\npročuchání\r\npročuchaný\r\npročuchat\r\npročutnout\r\npročutnutí\r\npročutnutý\r\nprodanější\r\nprodání\r\nprodanka\r\nprodaný\r\nprodat\r\nprodávací\r\nprodavaččin\r\nprodavačka\r\nprodavač\r\nprodavačův\r\nprodávající\r\nprodávanější\r\nprodávání\r\nprodávaný\r\nprodávat\r\nprodebatování\r\nprodebatovaný\r\nprodebatovat\r\nprodejce\r\nprodejcův\r\nprodejna\r\nprodejnější\r\nprodejní\r\nprodejný\r\nprodej\r\nproděkančin\r\nproděkanka\r\nproděkan\r\nproděkanský\r\nproděkanův\r\nprodělání\r\nprodělaný\r\nprodělat\r\nprodělávající\r\nprodělávání\r\nprodělávaný\r\nprodělávat\r\nprodělečnější\r\nprodělečný\r\nprodělek\r\nprodělení\r\nproděravělý\r\nproděravěnější\r\nproděravění\r\nproděravěn\r\nproděravět\r\nprodchnout\r\nprodchnutí\r\nprodchnutý\r\nprodírající\r\nprodírání\r\nprodíraný\r\nprodírat\r\nprodírkovat\r\nprodiskutování\r\nprodiskutovaný\r\nprodiskutovat\r\nprodiskutovávání\r\nprodiskutovávaný\r\nprodiskutovávat\r\nprodlabání\r\nprodlabaný\r\nprodlabat\r\nprodlabávání\r\nprodlabávaný\r\nprodlabávat\r\nprodlení\r\nprodlévání\r\nprodlévat\r\nprodleva\r\nprodlouženější\r\nprodloužení\r\nprodloužený\r\nprodloužit\r\nprodlužitelný\r\nprodlužovací\r\nprodlužování\r\nprodlužovaný\r\nprodlužovat\r\nprodlužující\r\nprodranější\r\nprodraní\r\nprodrání\r\nprodraný\r\nprodrápající\r\nprodrápanější\r\nprodrápání\r\nprodrápaný\r\nprodrápat\r\nprodrat\r\nprodrátování\r\nprodrátovaný\r\nprodrátovat\r\nprodra\r\nprodražení\r\nprodražený\r\nprodražit\r\nprodražování\r\nprodražovaný\r\nprodražovat\r\nprodražující\r\nprodrbání\r\nprodrbaný\r\nprodrbat\r\nprodrbávání\r\nprodrbávaný\r\nprodrbávat\r\nprodriblovat\r\nprodření\r\nprodřený\r\nprodřít\r\nproducentčin\r\nproducentka\r\nproducent\r\nproducentský\r\nproducentův\r\nproducírování\r\nproducírovat\r\nprodůchodový\r\nproduchovnělý\r\nproduchovnění\r\nproduchovněný\r\nproduchovnit\r\nprodukce\r\nprodukčnější\r\nprodukční\r\nprodukční\r\nprodukování\r\nprodukovaný\r\nprodukovat\r\nprodukovatelnější\r\nprodukovatelný\r\nprodukovávání\r\nprodukovávaný\r\nprodukovávat\r\nprodukt\r\nproduktivismus\r\nproduktivita\r\nproduktivnější\r\nproduktivní\r\nproduktovod\r\nproduktový\r\nprodukující\r\nprodumání\r\nprodumaný\r\nprodumat\r\nprodumávání\r\nprodumávaný\r\nprodumávat\r\nprodupanější\r\nprodupání\r\nprodupaný\r\nprodupat\r\nprodupávanější\r\nprodupávání\r\nprodupávaný\r\nprodupávat\r\nprodupnout\r\nprodupnutější\r\nprodupnutí\r\nprodupnutý\r\nprodupnutý\r\nprodupu\r\nprodusání\r\nprodusat\r\nprodusit\r\nprodušení\r\nprodušený\r\nprodýchání\r\nprodýchaný\r\nprodýchat\r\nprodýchávání\r\nprodýchávaný\r\nprodýchávat\r\nprodýmat\r\nprodyšnější\r\nprodyšný\r\nproekologický\r\nproevropský\r\nproexportní\r\nprof\r\nprofackování\r\nprofackovaný\r\nprofackovat\r\nprofanace\r\nprofánnější\r\nprofánní\r\nprofanování\r\nprofanovaný\r\nprofanovat\r\nprofaxování\r\nprofaxovaný\r\nprofaxovat\r\nprofese\r\nprofesionálčin\r\nprofesionalismus\r\nprofesionalita\r\nprofesionalizace\r\nprofesionalizovanější\r\nprofesionalizování\r\nprofesionalizovaný\r\nprofesionalizovat\r\nprofesionalizující\r\nprofesionálka\r\nprofesionálnější\r\nprofesionální\r\nprofesionál\r\nprofesionálův\r\nprofesnější\r\nprofesní\r\nprofesorčin\r\nprofesorka\r\nprofesor\r\nprofesorský\r\nprofesorštější\r\nprofesorův\r\nprofesura\r\nprofi\r\nprofiknout\r\nprofík\r\nprofíkův\r\nprofilace\r\nprofilační\r\nprofil\r\nprofilovací\r\nprofilování\r\nprofilovaný\r\nprofilovat\r\nprofilovávání\r\nprofilovávaný\r\nprofilovávat\r\nprofilový\r\nprofiltrovanější\r\nprofiltrování\r\nprofiltrovaný\r\nprofiltrovat\r\nprofiltrovávat\r\nprofilující\r\nprofinancování\r\nprofinancovaný\r\nprofinancovat\r\nprofinancovávání\r\nprofinancovávaný\r\nprofinancovávat\r\nprofitabilita\r\nprofit\r\nprofitnější\r\nprofitování\r\nprofitovat\r\nprofitující\r\nproflákání\r\nproflákaný\r\nproflákat\r\nprofláknout\r\nprofláknutí\r\nprofláknutý\r\nproflámování\r\nproflámovaný\r\nproflámovat\r\nproflinkání\r\nproflinkaný\r\nproflinkat\r\nprofňukání\r\nprofňukat\r\nprofoukávat\r\nprofouknout\r\nProfousová\r\nProfous\r\nProfousův\r\nprofrancouzský\r\nprofrčení\r\nprofrčet\r\nprofrnknout\r\nprofrnknutí\r\nprofukování\r\nprofukovaný\r\nprofukovat\r\nprofukovávání\r\nprofukovávaný\r\nprofukovávat\r\nprofukující\r\nprofylaktický\r\nprofylaktičtější\r\nprofylaktikum\r\nprofylaxe\r\nprogesteron\r\nprognostický\r\nprognostiččin\r\nprognostička\r\nprognostik\r\nprognostikův\r\nprognóza\r\nprognózní\r\nprognózování\r\nprognózovaný\r\nprognózovat\r\nprognózující\r\nprogramátorčin\r\nprogramátorka\r\nprogramátor\r\nprogramátorský\r\nprogramátorštější\r\nprogramátorův\r\nprográmek\r\nprogram\r\nprogramní\r\nprogramovací\r\nprogramovanější\r\nprogramování\r\nprogramovaný\r\nprogramovat\r\nprogramovatelnější\r\nprogramovatelný\r\nprogramovatelný\r\nprogramovávání\r\nprogramovávaný\r\nprogramovávat\r\nprogramovější\r\nprogramový\r\nprogramový\r\nprogramující\r\nprogrese\r\nprogresista\r\nprogresistčin\r\nprogresistka\r\nprogresistův\r\nprogresivita\r\nprogresivnější\r\nprogresívnější\r\nprogresivní\r\nprogresívní\r\nprohádanější\r\nprohádání\r\nprohádaný\r\nprohádat\r\nprohajání\r\nprohajat\r\nprohánějící\r\nproháněnější\r\nprohánění\r\nproháněný\r\nprohánět\r\nprohazardování\r\nprohazardovaný\r\nprohazardovat\r\nproházenější\r\nproházení\r\nproházený\r\nproházet\r\nprohazovačka\r\nprohazování\r\nprohazovaný\r\nprohazovat\r\nprohekání\r\nprohekaný\r\nprohekat\r\nprohibice\r\nprohibicionalismus\r\nprohibicionismus\r\nprohibiční\r\nprohibitivní\r\nprohibitní\r\nprohibitum\r\nprohlásit\r\nprohlasování\r\nprohlasovaný\r\nprohlasovat\r\nprohlášenější\r\nprohlášení\r\nprohlášený\r\nprohláška\r\nprohlašovanější\r\nprohlašovaní\r\nprohlašování\r\nprohlašovaný\r\nprohlašovat\r\nprohlašovávat\r\nprohlašující\r\nprohledanější\r\nprohledání\r\nprohledaný\r\nprohledat\r\nprohlédat\r\nprohledávací\r\nprohledávač\r\nprohledávající\r\nprohledávání\r\nprohledávaný\r\nprohledávat\r\nprohlédnout\r\nprohlédnul\r\nprohlédnutější\r\nprohlédnutí\r\nprohlédnutý\r\nprohlédnutý\r\nprohlídka\r\nprohlídkovější\r\nprohlídkový\r\nprohlídnout\r\nprohlídnul\r\nprohlížecí\r\nprohlížečka\r\nprohlížeč\r\nprohlížející\r\nprohlíženější\r\nprohlížení\r\nprohlížený\r\nprohlížet\r\nprohlodanější\r\nprohlodání\r\nprohlodaný\r\nprohlodat\r\nprohlodávání\r\nprohlodávaný\r\nprohlodávat\r\nprohloubenější\r\nprohloubenina\r\nprohloubení\r\nprohloubený\r\nprohloubit\r\nprohloupení\r\nprohloupit\r\nprohlubeň\r\nprohlubinka\r\nprohlubovací\r\nprohlubování\r\nprohlubovaný\r\nprohlubovat\r\nprohlubující\r\nprohmatání\r\nprohmataný\r\nprohmatat\r\nprohmatávat\r\nprohnal\r\nprohnanější\r\nprohnání\r\nprohnán\r\nprohnaný\r\nprohnat\r\nprohnětení\r\nprohněten\r\nprohnětený\r\nprohnilejší\r\nprohnilý\r\nprohnilý\r\nprohníst\r\nprohnít\r\nprohnívání\r\nprohnojení\r\nprohnojený\r\nprohnojit\r\nprohnout\r\nprohnutější\r\nprohnutí\r\nprohnutý\r\nprohnutý\r\nprohodit\r\nprohodování\r\nprohodovaný\r\nprohodovat\r\nprohořelejší\r\nprohoření\r\nprohořený\r\nprohořet\r\nprohořívání\r\nprohořívaný\r\nprohořívat\r\nprohospodaření\r\nprohospodařený\r\nprohospodařit\r\nprohovoření\r\nprohovořený\r\nprohovořit\r\nprohovořovat\r\nprohozenější\r\nprohození\r\nprohozený\r\nprohoz\r\nprohrabanější\r\nprohrabání\r\nprohrabaný\r\nprohrabat\r\nprohrabávání\r\nprohrabávaný\r\nprohrabávat\r\nprohrábnout\r\nprohrábnutější\r\nprohrábnutí\r\nprohrábnutý\r\nprohrabování\r\nprohrabovaný\r\nprohrabovat\r\nprohrabovávání\r\nprohrabovávaný\r\nprohrabovávat\r\nprohranější\r\nprohrání\r\nprohraný\r\nprohrát\r\nprohrávající\r\nprohrávanější\r\nprohrávání\r\nprohrávaný\r\nprohrávat\r\nprohra\r\nprohrkat\r\nprohrnout\r\nprohrnování\r\nprohrnutí\r\nprohrnutý\r\nprohryzající\r\nprohryzanější\r\nprohryzání\r\nprohryzaný\r\nprohryzat\r\nprohryzávání\r\nprohryzávaný\r\nprohryzávat\r\nprohřání\r\nprohřát\r\nprohřátější\r\nprohřátý\r\nprohřešek\r\nprohřešení\r\nprohřešený\r\nprohřešit\r\nprohřešování\r\nprohřešovaný\r\nprohřešovat\r\nprohřívající\r\nprohřívání\r\nprohřívaný\r\nprohřívat\r\nprohuhlání\r\nprohuhlaný\r\nprohuhlat\r\nprohulit\r\nprohupkovat\r\nprohvízdání\r\nprohvízdaný\r\nprohvízdat\r\nprohvízdnout\r\nprohvízdnutí\r\nprohvízdnutý\r\nprohýbací\r\nprohýbající\r\nprohýbanější\r\nprohýbání\r\nprohýbaný\r\nprohýbat\r\nprohýbávání\r\nprohýbávat\r\nprohýkání\r\nprohýkat\r\nprohýření\r\nprohýřený\r\nprohýřit\r\nprocházející\r\nProchazek\r\nProcházek\r\nprocházenější\r\nprocházení\r\nprocházený\r\nprocházet\r\nprocházívat\r\nProcházka\r\nprocházka\r\nProchazková\r\nProcházková\r\nprocházkový\r\nProchazkův\r\nProcházkův\r\nprochládání\r\nprochládat\r\nprochladit\r\nprochladlejší\r\nprochladlý\r\nprochladnout\r\nprochladnutí\r\nprochlastání\r\nprochlastaný\r\nprochlastat\r\nprochlazenější\r\nprochlazení\r\nprochlazený\r\nprochodit\r\nprochození\r\nprochozený\r\nprochrchlání\r\nprochrchlaný\r\nprochrchlat\r\nprochrnění\r\nprochrnět\r\nprochvění\r\nprochvět\r\nprochvívat\r\nproinflační\r\nproinovační\r\nproinvestiční\r\nproinvestování\r\nproinvestovaný\r\nproinvestovat\r\nproinvestovávání\r\nproinvestovávaný\r\nproinvestovávat\r\nprojásání\r\nprojásat\r\nprojasněnější\r\nprojasnění\r\nprojasněný\r\nprojasnit\r\nprojasňování\r\nprojasňovaný\r\nprojasňovat\r\nprojasňující\r\nprojda\r\nprojdu\r\nprojedení\r\nprojedený\r\nprojednající\r\nprojednanější\r\nprojednání\r\nprojednáno\r\nprojednaný\r\nprojednat\r\nprojednávací\r\nprojednávající\r\nprojednávanější\r\nprojednávání\r\nprojednávaný\r\nprojednávat\r\nprojedu\r\nprojekce\r\nprojekční\r\nprojektantčin\r\nprojektantka\r\nprojektant\r\nprojektantský\r\nprojektantův\r\nprojekt\r\nprojektil\r\nprojektivita\r\nprojektivní\r\nprojektor\r\nprojektovanější\r\nprojektování\r\nprojektovaný\r\nprojektovaný\r\nprojektovat\r\nprojektovější\r\nprojektový\r\nprojektující\r\nprojel\r\nprojemnění\r\nprojemněný\r\nprojemnit\r\nprojení\r\nprojetější\r\nprojet\r\nprojetí\r\nprojetý\r\nprojevení\r\nprojevený\r\nprojev\r\nprojevit\r\nprojevitelný\r\nprojevování\r\nprojevovaný\r\nprojevovat\r\nprojevující\r\nprojezdění\r\nprojezděný\r\nprojezdit\r\nprojídání\r\nprojídaný\r\nprojídat\r\nprojídávání\r\nprojídávaný\r\nprojídávat\r\nprojímací\r\nprojímadlo\r\nprojímající\r\nprojímanější\r\nprojímání\r\nprojímaný\r\nprojímatelnější\r\nprojímatelnější\r\nprojímatelný\r\nprojímat\r\nprojímavější\r\nprojímavý\r\nprojíst\r\nprojít\r\nprojití\r\nprojíždějící\r\nprojíždění\r\nprojížděný\r\nprojíždět\r\nprojížďka\r\nprojmout\r\nprojmu\r\nprojmul\r\nprojmutí\r\nprojmutý\r\nprojódlování\r\nprojódlovaný\r\nprojódlovat\r\nprokabelování\r\nprokabelovaný\r\nprokabelovat\r\nprokádrování\r\nprokádrovaný\r\nprokádrovat\r\nprokain\r\nprokalitelný\r\nprokalkulování\r\nprokalkulovaný\r\nprokalkulovat\r\nprokalkulovávání\r\nprokalkulovávaný\r\nprokalkulovávat\r\nprokapanější\r\nprokapání\r\nprokapaný\r\nprokapat\r\nprokapávání\r\nprokapávat\r\nprokapu\r\nprokaryotický\r\nprokaryotní\r\nprokaryot\r\nprokaryotův\r\nprokázanější\r\nprokázání\r\nprokázán\r\nprokázaný\r\nprokázat\r\nprokazatelnější\r\nprokazatelný\r\nprokazovací\r\nprokazovanější\r\nprokazování\r\nprokazovaný\r\nprokazovat\r\nprokazující\r\nprokáži\r\nprokdákání\r\nprokdákaný\r\nprokdákat\r\nprokecání\r\nprokecat\r\nprokejhat\r\nprokel\r\nProkešová\r\nProkeš\r\nProkešův\r\nproklábosení\r\nproklábosený\r\nproklábosit\r\nprokládací\r\nprokladač\r\nprokládanější\r\nprokládání\r\nprokládaný\r\nprokladatelnější\r\nprokladatelný\r\nprokládat\r\nproklad\r\nprokladovější\r\nprokladový\r\nproklamace\r\nproklamační\r\nproklamativní\r\nproklamovanější\r\nproklamování\r\nproklamovaný\r\nproklamovat\r\nproklamovávání\r\nproklamovávaný\r\nproklamovávat\r\nproklamující\r\nproklání\r\nproklaný\r\nproklatcův\r\nproklatec\r\nproklatější\r\nproklát\r\nproklatý\r\nprokleji\r\nproklel\r\nproklení\r\nproklepanější\r\nproklepání\r\nproklepaný\r\nproklepat\r\nproklepávající\r\nproklepávanější\r\nproklepávání\r\nproklepávaný\r\nproklepávat\r\nproklepnout\r\nproklepnutější\r\nproklepnutí\r\nproklepnutý\r\nproklepnutý\r\nproklestit\r\nproklesťování\r\nproklesťovaný\r\nproklesťovat\r\nprokleštění\r\nprokleštěný\r\nproklešťování\r\nproklešťovaný\r\nproklešťovat\r\nprokletější\r\nprokletí\r\nproklet\r\nprokletý\r\nprokličkování\r\nprokličkovaný\r\nprokličkovat\r\nprokličkovávání\r\nprokličkovávaný\r\nprokličkovávat\r\nproklikání\r\nproklikaný\r\nproklikat\r\nproklikávání\r\nproklikávaný\r\nproklikávat\r\nproklimbání\r\nproklimbaný\r\nproklimbat\r\nproklimbávání\r\nproklimbávat\r\nproklínací\r\nproklínající\r\nproklínání\r\nproklínaný\r\nproklínat\r\nproklít\r\nproklofat\r\nproklopýtání\r\nproklopýtaný\r\nproklopýtat\r\nproklouzání\r\nproklouzat\r\nproklouzávání\r\nproklouzávat\r\nproklouznout\r\nproklouznutí\r\nproklovávání\r\nproklovávaný\r\nproklovávat\r\nproklubání\r\nproklubaný\r\nproklubat\r\nproklubávající\r\nproklubávání\r\nproklubávaný\r\nproklubávat\r\nproklubu\r\nproklučit\r\nproklusání\r\nproklusat\r\nprokluz\r\nprokluzování\r\nprokluzovat\r\nprokluzující\r\nprokmitávání\r\nprokmitávat\r\nprokmitnout\r\nprokombinovanější\r\nprokombinování\r\nprokombinovaný\r\nprokombinovat\r\nprokomponování\r\nprokomponovaný\r\nprokomponovat\r\nprokomponovávání\r\nprokomponovávaný\r\nprokomponovávat\r\nprokomunistický\r\nprokomunističtější\r\nprokonsultování\r\nprokonsultovaný\r\nprokonsultovat\r\nprokonzultování\r\nprokonzultovaný\r\nprokonzultovat\r\nprokonzultovávání\r\nprokonzultovávaný\r\nprokonzultovávat\r\nprokopanější\r\nprokopání\r\nprokopaný\r\nprokopat\r\nprokopávání\r\nprokopávaný\r\nprokopávat\r\nprokopávka\r\nProkopcová\r\nProkopcův\r\nProkopčáková\r\nProkopčák\r\nProkopčákův\r\nProkopec\r\nprokop\r\nprokopírovanější\r\nprokopírování\r\nprokopírovaný\r\nprokopírovat\r\nprokopírovávanější\r\nprokopírovávání\r\nprokopírovávaný\r\nprokopírovávat\r\nprokopnout\r\nprokopnutí\r\nprokopnutý\r\nProkopová\r\nProkopov\r\nprokopovský\r\nProkop\r\nProkopův\r\nprokorodování\r\nprokorupční\r\nprokořenění\r\nprokořeněný\r\nprokořenit\r\nprokótování\r\nprokótovaný\r\nprokótovat\r\nprokouknout\r\nprokouknutí\r\nprokouknutý\r\nprokoulení\r\nprokoulený\r\nprokoulet\r\nprokouření\r\nprokouřený\r\nprokouřit\r\nprokousanější\r\nprokousání\r\nprokousaný\r\nprokousat\r\nprokousávající\r\nprokousávanější\r\nprokousávání\r\nprokousávaný\r\nprokousávat\r\nprokousnout\r\nprokousnutější\r\nprokousnutí\r\nprokousnutý\r\nprokousnutý\r\nprokoušu\r\nprokovanější\r\nprokování\r\nprokovaný\r\nprokovat\r\nprokovávání\r\nprokovávaný\r\nprokovávat\r\nprokovení\r\nprokovený\r\nprokovit\r\nprokovování\r\nprokovovaný\r\nprokovovat\r\nprokovu\r\nprokrajování\r\nprokrajovaný\r\nprokrajovat\r\nprokrajovávání\r\nprokrajovávaný\r\nprokrajovávat\r\nprokreativní\r\nprokreslenější\r\nprokreslení\r\nprokreslený\r\nprokreslit\r\nprokreslování\r\nprokreslovaný\r\nprokreslovat\r\nprokreslovávání\r\nprokreslovávaný\r\nprokreslovávat\r\nprokreslující\r\nprokrista\r\nprokristapána\r\nprokristčin\r\nprokristka\r\nprokristův\r\nprokrmení\r\nprokrmený\r\nprokrmit\r\nprokrokování\r\nprokrokovaný\r\nprokrokovat\r\nprokroužení\r\nprokroužit\r\nprokrvácení\r\nprokrvácený\r\nprokrvácet\r\nprokrvavění\r\nprokrvavět\r\nprokrvenější\r\nprokrvení\r\nprokrvený\r\nprokrvit\r\nprokrvování\r\nprokrvovaný\r\nprokrvovat\r\nprokrýlepána\r\nprokrýt\r\nprokrytí\r\nprokrytý\r\nprokřehlejší\r\nprokřehlý\r\nprokřehnout\r\nprokřepčení\r\nprokřepčený\r\nprokřepčit\r\nproktologický\r\nprokuckání\r\nprokuckaný\r\nprokuckat\r\nprokulení\r\nprokulený\r\nprokulhanější\r\nprokulhání\r\nprokulhaný\r\nprokulhat\r\nprokulhávanější\r\nprokulhávání\r\nprokulhávaný\r\nprokulhávat\r\nprokulit\r\nProkůpek\r\nProkůpková\r\nProkůpkův\r\nprokurátorčin\r\nprokurátorka\r\nprokurátor\r\nprokurátorův\r\nprokuratura\r\nprokura\r\nprokurista\r\nprokuristčin\r\nprokuristka\r\nprokuristův\r\nprokuřování\r\nprokuřovaný\r\nprokuřovat\r\nprokusovanější\r\nprokusování\r\nprokusovaný\r\nprokusovat\r\nprokusující\r\nprokutálení\r\nprokutálený\r\nprokutálet\r\nprokutávat\r\nprokvasit\r\nprokvašení\r\nprokvašený\r\nprokvašování\r\nprokvašovaný\r\nprokvašovat\r\nprokvétání\r\nprokvétat\r\nprokvetlý\r\nProkyon\r\nprokypření\r\nprokypřený\r\nprokypřit\r\nprokypřování\r\nprokypřovaný\r\nprokypřovat\r\nprokypřovávat\r\nprokývat\r\nproladění\r\nproladěný\r\nproladit\r\nprolaďování\r\nprolaďovaný\r\nprolaďovat\r\nprolajdat\r\nproláklina\r\nproláklý\r\nprolaktin\r\nprolámání\r\nprolámaný\r\nprolámat\r\nprolamovací\r\nprolamování\r\nprolamovaný\r\nprolamovat\r\nprolamovávání\r\nprolamovávaný\r\nprolamovávat\r\nprolamující\r\nprolelkování\r\nprolelkovaný\r\nprolelkovat\r\nprolenošení\r\nprolenošený\r\nprolenošit\r\nproleptávání\r\nproleptávaný\r\nproleptávat\r\nprolétající\r\nprolétání\r\nprolétaný\r\nproletariát\r\nproletarismus\r\nproletarizace\r\nproletářčin\r\nproletářka\r\nproletářský\r\nproletářštější\r\nproletář\r\nproletářův\r\nprolétat\r\nprolétávající\r\nprolétávání\r\nprolétávat\r\nproletění\r\nproletěný\r\nproletět\r\nprolétnout\r\nprolétnutí\r\nproletování\r\nproletovaný\r\nproletovat\r\nprolét\r\nproletující\r\nprolétův\r\nprolévající\r\nprolévání\r\nprolévaný\r\nprolévat\r\nprolézačka\r\nprolézající\r\nprolézanější\r\nprolézání\r\nprolézaný\r\nprolézat\r\nprolezenější\r\nprolezení\r\nprolezený\r\nprolezlejší\r\nprolezlý\r\nprolézt\r\nproleželý\r\nproleženina\r\nproleženin\r\nproležení\r\nproležet\r\nprolhal\r\nprolhanější\r\nprolhaní\r\nprolhání\r\nprolhaný\r\nprolhat\r\nprolhávaní\r\nprolíbání\r\nprolíbaný\r\nprolíbat\r\nprolínací\r\nprolínačka\r\nprolínač\r\nprolínající\r\nprolínání\r\nprolínat\r\nprolínavý\r\nprolis\r\nprolisování\r\nprolisovaný\r\nprolisovat\r\nprolisovávat\r\nprolistování\r\nprolistovaný\r\nprolistovat\r\nprolistovávání\r\nprolistovávaný\r\nprolistovávat\r\nprolítání\r\nprolítaný\r\nprolítat\r\nprolít\r\nprolití\r\nprolítnout\r\nprolítnutí\r\nprolit\r\nprolitý\r\nprolívanější\r\nprolívání\r\nprolívaný\r\nprolívat\r\nprolkání\r\nprolkat\r\nprolnout\r\nprolnutější\r\nprolnutí\r\nprolnutý\r\nprolog\r\nprolomení\r\nprolomený\r\nprolom\r\nprolomit\r\nprolomitelnější\r\nprolongace\r\nprolongování\r\nprolongovaný\r\nprolongovat\r\nprolopotění\r\nprolopotit\r\nproloudání\r\nproloudat\r\nprolouskání\r\nprolouskaný\r\nprolouskat\r\nprolouskávání\r\nprolouskávaný\r\nprolouskávat\r\nprolovení\r\nprolovený\r\nprolovit\r\nproloženější\r\nproložení\r\nproložený\r\nproložit\r\nproložka\r\nproluka\r\nprolustrovat\r\nprolžu\r\nPROM\r\nprom\r\npromáčení\r\npromáčený\r\npromáčet\r\npromačkání\r\npromačkaný\r\npromačkat\r\npromačkávání\r\npromačkávaný\r\npromačkávat\r\npromáčklina\r\npromáčknout\r\npromáčknutější\r\npromáčknutí\r\npromáčknutý\r\npromaďarský\r\npromarketingový\r\npromarněnější\r\npromarnění\r\npromarněný\r\npromarnit\r\npromarňování\r\npromarňovaný\r\npromarňovat\r\npromarodit\r\npromasírování\r\npromastit\r\npromaštění\r\npromaštěný\r\npromašťovat\r\npromazanější\r\npromazání\r\npromazaný\r\npromazat\r\npromazávající\r\npromazávání\r\npromazávaný\r\npromazávat\r\npromáznout\r\npromáznutí\r\npromáznutý\r\npromeditovat\r\npromenáda\r\npromenádní\r\npromenádování\r\npromenádovat\r\nproměna\r\nproměnější\r\nproměněnější\r\nproměnění\r\nproměněný\r\nproměnit\r\nproměnitelnější\r\nproměnitelný\r\nproměnlivější\r\nproměnlivý\r\nproměnnější\r\nproměnný\r\nproměňovanější\r\npromenování\r\nproměňování\r\nproměňovaný\r\npromenovat\r\nproměňovat\r\nproměňovávat\r\npromenující\r\nproměňující\r\nproměřenější\r\nproměření\r\nproměřený\r\nproměřit\r\nproměřování\r\nproměřovaný\r\nproměřovat\r\nproměřovávat\r\npromést\r\npromeškání\r\npromeškaný\r\npromeškat\r\npromeškávání\r\npromeškávaný\r\npromeškávat\r\nproměšovat\r\nprometení\r\nPrometheus\r\nPrometheův\r\npromethiový\r\npromethium\r\npromíchanější\r\npromíchání\r\npromíchaný\r\npromíchat\r\npromíchávání\r\npromíchávaný\r\npromíchávat\r\npromíjející\r\npromíjenější\r\npromíjení\r\npromíjený\r\npromíjet\r\npromile\r\npromilový\r\nprominence\r\nprominentčin\r\nprominentka\r\nprominentnější\r\nprominentní\r\nprominent\r\nprominentův\r\nprominout\r\nprominutější\r\nprominutelnější\r\nprominutelný\r\nprominutí\r\nprominutý\r\nprominutý\r\npromísení\r\npromísený\r\npromísit\r\npromiskuita\r\npromiskuitnější\r\npromiskuitní\r\npromiskuitní\r\npromíšenější\r\npromíšení\r\npromíšený\r\npromítací\r\npromítačka\r\npromítač\r\npromítačův\r\npromítající\r\npromítanější\r\npromítání\r\npromítaný\r\npromítat\r\npromítnout\r\npromítnutější\r\npromítnutí\r\npromítnutý\r\npromítnutý\r\npromixování\r\npromixovaný\r\npromixovat\r\npromlčecí\r\npromlčení\r\npromlčený\r\npromlčet\r\npromlčitelnější\r\npromlčitelný\r\npromlčování\r\npromlčovaný\r\npromlčovat\r\npromlka\r\npromlouvající\r\npromlouvání\r\npromlouvaný\r\npromlouvat\r\npromlsání\r\npromlsaný\r\npromlsat\r\npromluva\r\npromluvení\r\npromluvený\r\npromluvit\r\npromňoukání\r\npromňoukat\r\npromnout\r\npromnutí\r\npromnutý\r\npromoce\r\npromočení\r\npromočený\r\npromočit\r\npromoční\r\npromodlení\r\npromodlený\r\npromodlit\r\npromodralý\r\npromodrání\r\npromodraný\r\npromodrat\r\npromodulování\r\npromodulovaný\r\npromodulovat\r\npromodulovávání\r\npromodulovávaný\r\npromodulovávat\r\npromokající\r\npromokání\r\npromokat\r\npromokávání\r\npromokávaný\r\npromokávat\r\npromokavý\r\npromoklejší\r\npromoklý\r\npromoknout\r\npromoknutí\r\npromoknutý\r\npromořený\r\npromotor\r\npromotorův\r\npromování\r\npromovaný\r\npromovat\r\nprompt\r\npromptnější\r\npromptní\r\npromrhání\r\npromrhaný\r\npromrhat\r\npromrhávání\r\npromrhávaný\r\npromrhávat\r\npromrskání\r\npromrskaný\r\npromrskat\r\npromrzání\r\npromrzat\r\npromrzlejší\r\npromrzlý\r\npromrznout\r\npromrznutí\r\npromrznutý\r\npromydlení\r\npromydlený\r\npromydlit\r\npromyka\r\npromyslení\r\npromyslený\r\npromyslet\r\npromyslit\r\npromyšlenější\r\npromyšlenější\r\npromyšlení\r\npromýšlení\r\npromyšlen\r\npromyšlený\r\npromýšlený\r\npromýšlet\r\npromýt\r\npromytější\r\npromytí\r\npromytý\r\npromytý\r\npromývací\r\npromývačka\r\npromývač\r\npromývačův\r\npromývanější\r\npromývání\r\npromývaný\r\npromývatelnější\r\npromývatelný\r\npromývat\r\npromžikání\r\npromžikaný\r\npromžikat\r\npromžikávání\r\npromžikávaný\r\npromžikávat\r\nproň\r\npronacistický\r\npronacističtější\r\npronajal\r\npronajat\r\npronajatý\r\npronájem\r\npronajetí\r\npronajímající\r\npronajímání\r\npronajímaný\r\npronajímatelčin\r\npronajímatelka\r\npronajímatelnější\r\npronajímatel\r\npronajímatelův\r\npronajímat\r\npronajmout\r\npronajmu\r\npronajmutí\r\npronárod\r\npronásledovanější\r\npronásledování\r\npronásledovaný\r\npronásledovat\r\npronásledovatelčin\r\npronásledovatelka\r\npronásledovatel\r\npronásledovatelův\r\npronásledovávání\r\npronásledovávaný\r\npronásledovávat\r\npronásledující\r\npronášející\r\npronášenější\r\npronášení\r\npronášený\r\npronášet\r\nproněmecký\r\nproněmečtější\r\npronesenější\r\npronesení\r\npronesený\r\npronést\r\npronikající\r\npronikání\r\npronikaný\r\npronikat\r\npronikavější\r\npronikavý\r\nproniklejší\r\nproniklý\r\nproniknout\r\nproniknutější\r\nproniknutelnější\r\nproniknutelný\r\nproniknutí\r\nproniknutý\r\nproniknutý\r\nproobědvat\r\nproočkování\r\nproočkovaný\r\nproočkovat\r\nproočkovávání\r\nproočkovávaný\r\nproočkovávat\r\npropadající\r\npropadák\r\npropadanější\r\npropadání\r\npropadaný\r\npropadat\r\npropadávající\r\npropadávání\r\npropadávaný\r\npropadávat\r\npropad\r\npropadlejší\r\npropadlík\r\npropadlíkův\r\npropadlina\r\npropadliště\r\npropadlo\r\npropadlý\r\npropadlý\r\npropadnout\r\npropadnutí\r\npropadnuvší\r\npropadový\r\npropagace\r\npropagační\r\npropaganda\r\npropagandista\r\npropagandistčin\r\npropagandistický\r\npropagandističtější\r\npropagandistka\r\npropagandistův\r\npropagátorčin\r\npropagátorka\r\npropagátor\r\npropagátorský\r\npropagátorův\r\npropagování\r\npropagovaný\r\npropagovat\r\npropagovávání\r\npropagovávaný\r\npropagovávat\r\npropagující\r\npropachtování\r\npropachtovaný\r\npropachtovat\r\npropajdání\r\npropajdaný\r\npropajdat\r\npropájení\r\npropájený\r\npropájet\r\npropálenější\r\npropálení\r\npropálený\r\npropálit\r\npropalovací\r\npropalovanější\r\npropalovaní\r\npropalování\r\npropalovaný\r\npropalovat\r\npropalovávání\r\npropalovávaný\r\npropalovávat\r\npropalující\r\npropánaboha\r\npropánakrále\r\npropanbutanový\r\npropan\r\npropanový\r\npropaření\r\npropařený\r\npropařit\r\npropařovací\r\npropařování\r\npropařovaný\r\npropařovat\r\npropásanější\r\npropásání\r\npropásaný\r\npropásatelnější\r\npropásatelný\r\npropásat\r\npropasenější\r\npropasení\r\npropasen\r\npropasený\r\npropasírování\r\npropasírovaný\r\npropasírovat\r\npropasírovávat\r\npropásl\r\npropásnete\r\npropastích\r\npropastím\r\npropást\r\npropast\r\npropastnější\r\npropastný\r\npropasťovitý\r\npropasu\r\npropašování\r\npropašovaný\r\npropašovat\r\npropátrání\r\npropátraný\r\npropátrat\r\npropátrávající\r\npropéct\r\npropečenější\r\npropečení\r\npropečený\r\npropedeutičtější\r\npropedeutika\r\npropékání\r\npropékaný\r\npropékat\r\npropelent\r\npropen\r\npropepření\r\npropepřený\r\npropepřit\r\npropíchání\r\npropíchaný\r\npropíchat\r\npropíchávání\r\npropíchávaný\r\npropíchávat\r\npropíchnout\r\npropíchnutí\r\npropíchnutý\r\npropichovací\r\npropichování\r\npropichovaný\r\npropichovat\r\npropíjenější\r\npropíjení\r\npropíjený\r\npropíjet\r\npropilování\r\npropilovaný\r\npropilovat\r\npropínací\r\npropínání\r\npropínaný\r\npropínat\r\npropinkat\r\npropionan\r\npropionát\r\npropionový\r\npropírací\r\npropírající\r\npropírání\r\npropíraný\r\npropírat\r\npropírka\r\npropískanější\r\npropískání\r\npropískaný\r\npropískat\r\npropiska\r\npropisovací\r\npropisovačka\r\npropisovač\r\npropisovanější\r\npropisování\r\npropisovaný\r\npropisovat\r\npropisující\r\npropíši\r\npropíšu\r\npropít\r\npropitější\r\npropití\r\npropit\r\npropitý\r\npropitý\r\npropižlání\r\npropižlaný\r\npropižlat\r\nproplácející\r\nproplacenější\r\nproplácenější\r\nproplacení\r\nproplácení\r\nproplacený\r\nproplácený\r\nproplácet\r\nproplach\r\npropláchnout\r\npropláchnutí\r\npropláchnutý\r\nproplachovací\r\nproplachování\r\nproplachovaný\r\nproplachovat\r\nproplachovávání\r\nproplachovávaný\r\nproplachovávat\r\nproplachtění\r\nproplachtit\r\nproplakající\r\nproplakanější\r\nproplakání\r\nproplakaný\r\nproplakat\r\nproplakávání\r\nproplakávaný\r\nproplakávat\r\nproplatit\r\nproplatitelný\r\nproplavání\r\nproplavat\r\nproplavávání\r\nproplavávaný\r\nproplavávat\r\nproplavejme\r\nproplavej\r\nproplavejte\r\nproplazení\r\nproplazit\r\npropleji\r\nproplel\r\nproplení\r\nproplesnivělý\r\nproplesnivět\r\nproplést\r\nproplešatět\r\nproplétací\r\nproplétající\r\nproplétání\r\nproplétaný\r\nproplétat\r\npropletenec\r\npropletenější\r\npropletení\r\npropletený\r\npropletí\r\nproplet\r\npropletý\r\nproplítající\r\nproplít\r\nproplížení\r\nproplížit\r\nproplkaný\r\nproplkat\r\nproplout\r\nproplouvající\r\nproplouvání\r\nproplouvaný\r\nproplouvat\r\nproploužení\r\nproploužit\r\nproplutí\r\nproplutý\r\npropluženější\r\nproplužení\r\nproplužený\r\nproplužit\r\nproplýtvání\r\nproplýtvaný\r\nproplýtvat\r\nproplýtvávání\r\nproplýtvávaný\r\nproplýtvávat\r\npropnout\r\npropnutější\r\npropnutí\r\npropnutý\r\npropocenější\r\npropocení\r\npropocený\r\npropocování\r\npropocovaný\r\npropocovat\r\npropočet\r\npropočíst\r\npropočítání\r\npropočítaný\r\npropočítat\r\npropočítávající\r\npropočítávání\r\npropočítávaný\r\npropočítávat\r\npropočtení\r\npropočtený\r\npropočtový\r\npropodkuřovávat\r\npropochodování\r\npropochodovaný\r\npropochodovat\r\npropojenější\r\npropojení\r\npropojený\r\npropojištěný\r\npropojit\r\npropojitelný\r\npropojka\r\npropojkový\r\npropojovací\r\npropojovanější\r\npropojování\r\npropojovaný\r\npropojovat\r\npropojovávání\r\npropojovávaný\r\npropojovávat\r\npropoj\r\npropojující\r\npropolis\r\nproponovaný\r\nproporce\r\nproporcionalita\r\nproporcionálnější\r\nproporcionální\r\nproporční\r\npropotácení\r\npropotácet\r\npropotit\r\npropouštěcí\r\npropouštějící\r\npropouštěnější\r\npropouštění\r\npropouštěný\r\npropouštět\r\npropovídanější\r\npropovídání\r\npropovídaný\r\npropovídat\r\npropozice\r\npropoziční\r\npropracovanější\r\npropracování\r\npropracovaný\r\npropracovat\r\npropracovávanější\r\npropracovávání\r\npropracovávaný\r\npropracovávat\r\npropranější\r\nproprání\r\npropraný\r\nproprášenější\r\nproprášení\r\nproprášený\r\nproprášit\r\nproprat\r\nproprietarizace\r\nproprietárnější\r\nproprietární\r\nproprieta\r\npropršení\r\npropršený\r\npropršet\r\npropřednášení\r\npropřednášený\r\npropřednášet\r\npropřešívání\r\npropřešívaný\r\npropřešívat\r\npropříště\r\npropsal\r\npropsanější\r\npropsanější\r\npropsání\r\npropsán\r\npropsaný\r\npropsáný\r\npropsat\r\npropůjčení\r\npropůjčený\r\npropůjčil\r\npropůjčíme\r\npropůjčím\r\npropůjčí\r\npropůjčíš\r\npropůjčíte\r\npropůjčit\r\npropůjčme\r\npropůjč\r\npropůjčování\r\npropůjčovaný\r\npropůjčovat\r\npropůjčte\r\npropůjčující\r\npropukající\r\npropukání\r\npropukaný\r\npropukat\r\npropukávat\r\npropuknout\r\npropuknutí\r\npropuknutý\r\npropusť\r\npropustek\r\npropustích\r\npropustím\r\npropustit\r\npropust\r\npropustka\r\npropustnější\r\npropustný\r\npropuštějící\r\npropuštěnější\r\npropuštění\r\npropuštěný\r\nproputování\r\npropylenglykol\r\npropylen\r\npropylenoxid\r\npropylgallát\r\npropylparahydroxybenzoát\r\nproradnější\r\nproradný\r\nprorakouský\r\nprorapování\r\nprorapovat\r\nprorazit\r\nprorazítkování\r\nprorazítkovaný\r\nprorazítkovat\r\nprorážecí\r\nprorážející\r\nproraženější\r\nproražení\r\nprorážení\r\nproražený\r\nprorážený\r\nprorážet\r\nprorážka\r\nproreformnější\r\nproreformní\r\nprorejdění\r\nprorejděný\r\nprorejdit\r\nprorektorčin\r\nprorektorka\r\nprorektor\r\nprorektorský\r\nprorektorův\r\nprorezavělý\r\nprorezavění\r\nprorezavět\r\nprorezivělý\r\nprorežimní\r\nprorocký\r\nproroctví\r\nproročtější\r\nprorokování\r\nprorokovaný\r\nprorokovat\r\nprorok\r\nprorokův\r\nprorostlejší\r\nprorostl\r\nprorostlý\r\nprorostu\r\nprorozmazávanější\r\nprorozmazávaný\r\nprorubání\r\nprorubaný\r\nprorubat\r\nprorubávání\r\nprorubávaný\r\nprorubávat\r\nprorubu\r\nproruský\r\nprorůstající\r\nprorůstání\r\nprorůstat\r\nprorůst\r\nprorůstovější\r\nprorůstový\r\nprorvanější\r\nprorvaní\r\nprorvání\r\nprorvaný\r\nprorvat\r\nprorvávání\r\nprorvávaný\r\nprorvávat\r\nprorýpávání\r\nprorýpávaný\r\nprorýpávat\r\nprořčení\r\nprořčený\r\nprořečen\r\nprořečený\r\nprořekl\r\nprořeknout\r\nprořeknu\r\nprořeknutí\r\nprořeknut\r\nprořeknutý\r\nprořeknuv\r\nprořezanější\r\nprořezání\r\nprořezaný\r\nprořezat\r\nprořezávající\r\nprořezávanější\r\nprořezávání\r\nprořezávaný\r\nprořezávat\r\nprořezávka\r\nprořez\r\nproříci\r\nproříct\r\nprořídlý\r\nprořídnout\r\nprořidnout\r\nprořídnutí\r\nprořítit\r\nproříznout\r\nproříznutější\r\nproříznutí\r\nproříznutý\r\nproříznutý\r\nprořknout\r\nprořknutí\r\nprořknutý\r\nprořvání\r\nprořvat\r\nprosadit\r\nprosáklejší\r\nprosáklý\r\nprosáknout\r\nprosáknutí\r\nprosáknutý\r\nprosakovací\r\nprosakování\r\nprosakovaný\r\nprosakovat\r\nprosakovávání\r\nprosakovávaný\r\nprosakovávat\r\nprosakující\r\nProsatín\r\nprosatínský\r\nprosázenější\r\nprosazení\r\nprosázení\r\nprosazený\r\nprosázený\r\nprosázet\r\nprosazovací\r\nprosazovanější\r\nprosazování\r\nprosazovaný\r\nprosazovat\r\nprosazovatel\r\nprosazovatelův\r\nprosazující\r\nprosba\r\nprosbička\r\nprosebnější\r\nprosebnice\r\nprosebníček\r\nprosebničin\r\nprosebníčkův\r\nprosebník\r\nprosebníkův\r\nprosebný\r\nprosečenský\r\nProsečné\r\nprosečský\r\nProseč\r\nprosedění\r\nproseděný\r\nprosedět\r\nprosedlý\r\nprosednout\r\nprosednutí\r\nprosednutý\r\nproseji\r\nprosekanější\r\nprosekání\r\nprosekaný\r\nprosekat\r\nprosekávání\r\nprosekávaný\r\nprosekávat\r\nproseknout\r\nproseknutí\r\nproseknutý\r\nProsek\r\nprosektorčin\r\nprosektorka\r\nprosektura\r\nprosel\r\nprosení\r\nprosený\r\nprosetější\r\nProsetín\r\nprosetínský\r\nprosetí\r\nproset\r\nprosetý\r\nprosetý\r\nprosévací\r\nprosévačka\r\nprosévadlo\r\nprosévání\r\nprosévaný\r\nprosévárna\r\nprosévat\r\nproschlejší\r\nproschlý\r\nproschnl\r\nproschnout\r\nproschnutí\r\nprosící\r\nProsíčka\r\nprosík\r\nprosil\r\nProsiměřice\r\nprosiměřický\r\nprosincovější\r\nprosincový\r\nprosinec\r\nprosit\r\nprosít\r\nprosíťování\r\nproskákanější\r\nproskákání\r\nproskákáno\r\nproskákaný\r\nproskákat\r\nproskakovanější\r\nproskakování\r\nproskakovaný\r\nproskakovat\r\nproskakovávání\r\nproskakovávaný\r\nproskakovávat\r\nprosklenější\r\nprosklení\r\nprosklený\r\nprosklít\r\nprosklívání\r\nprosklívaný\r\nprosklívat\r\nproskočenější\r\nproskočení\r\nproskočený\r\nproskočit\r\nProsková\r\nproskribování\r\nproskribovaný\r\nproskribovat\r\nproskripční\r\nproskřehotání\r\nproskřehotaný\r\nproskřehotat\r\nproskurník\r\nProskův\r\nprosladit\r\nproslavenější\r\nproslavení\r\nproslavený\r\nproslavit\r\nproslazenější\r\nproslazení\r\nproslazený\r\nproslazování\r\nproslazovaný\r\nproslazovat\r\nproslechnout\r\nproslídění\r\nproslíděný\r\nproslídit\r\nproslout\r\nprosloužení\r\nprosloužený\r\nprosloužit\r\nproslovanský\r\nproslovení\r\nproslovenský\r\nproslovenštější\r\nproslovený\r\nproslov\r\nproslovit\r\nproslulejší\r\nproslulý\r\nprosluněný\r\nproslutí\r\nproslýchání\r\nproslýchaný\r\nproslýchat\r\nproslýchávání\r\nproslýchávaný\r\nproslýchávat\r\nprosmání\r\nprosmát\r\nprosmažení\r\nprosmažený\r\nprosmažit\r\nprosmekávání\r\nprosmekávaný\r\nprosmekávat\r\nprosmeknutí\r\nprosmýkání\r\nprosmýkaný\r\nprosmýkat\r\nprosmyknout\r\nprosmýknout\r\nprosmyknutí\r\nprosmýknutí\r\nprosnění\r\nprosněný\r\nprosněženější\r\nprosněžení\r\nprosněžený\r\nprosněžit\r\nprosnít\r\nprosný\r\nprosociální\r\nprosolenější\r\nprosolení\r\nprosolený\r\nprosolit\r\nproso\r\nprosoudit\r\nprosoukávání\r\nprosoukávaný\r\nprosoukávat\r\nprosouvání\r\nprosouvaný\r\nprosouvat\r\nprosouzenější\r\nprosouzení\r\nprosouzený\r\nprosoužení\r\nprosoužený\r\nprosoužit\r\nprosovětský\r\nprospalejší\r\nprospalý\r\nprospanější\r\nprospání\r\nprospaný\r\nprospat\r\nprospávání\r\nprospávaný\r\nprospávat\r\nprospěch\r\nprospěchání\r\nprospěchaný\r\nprospěchářčin\r\nprospěchářka\r\nprospěchářský\r\nprospěchářství\r\nprospěchář\r\nprospěchářův\r\nprospěchat\r\nprospěch\r\nprospěch\r\nprospěchový\r\nprospěchu\r\nprospekce\r\nprospekt\r\nprospektor\r\nprospektorův\r\nprospektový\r\nprospění\r\nprosperita\r\nprosperitní\r\nprosperování\r\nprosperovaný\r\nprosperovat\r\nprosperující\r\nprospěšnější\r\nprospěšnější\r\nprospěšný\r\nprospět\r\nprospívající\r\nprospívání\r\nprospívat\r\nprosrání\r\nprosrat\r\nprosťáček\r\nprosťáčkův\r\nprostál\r\nprostaní\r\nprostata\r\nprostát\r\nprostátý\r\nprostavění\r\nprostavěný\r\nprostavět\r\nprostávkování\r\nprostávkovat\r\nprostě\r\nprostehování\r\nprostehovaný\r\nprostehovat\r\nProstějov\r\nprostějovsko\r\nprostějovský\r\nprostější\r\nprostepování\r\nprostepovaný\r\nprostepovat\r\nprostěradlo\r\nprostěsdělovací\r\nprostinký\r\nprostírací\r\nprostírající\r\nprostíranější\r\nprostírání\r\nprostíraný\r\nprostírat\r\nprostírka\r\nprostituce\r\nprostituční\r\nprostituování\r\nprostituovaný\r\nprostituovat\r\nprostitutčin\r\nprostitutka\r\nprostitut\r\nprostitutův\r\nprostnější\r\nprostné\r\nprost\r\nprostoduchý\r\nprostojím\r\nprostoj\r\nprostomyslnější\r\nprostomyslný\r\nprostonal\r\nprostonání\r\nprostonat\r\nprostonávání\r\nprostonávaný\r\nprostonávat\r\nprostonejme\r\nprostonej\r\nprostonejte\r\nprostopášnější\r\nprostopášnice\r\nprostopášničin\r\nprostopášník\r\nprostopášníkův\r\nprostopášný\r\nprostora\r\nprostor\r\nprostornější\r\nprostorný\r\nprostoročas\r\nprostoročasový\r\nprostorovější\r\nprostorový\r\nprostořeký\r\nprostosrdečnější\r\nprostota\r\nprostoupenější\r\nprostoupení\r\nprostoupený\r\nprostoupit\r\nprostovlasý\r\nprostranný\r\nprostranství\r\nprostrčení\r\nprostrčený\r\nprostrčit\r\nprostrkaný\r\nprostrkat\r\nprostrkávání\r\nprostrkávaný\r\nprostrkávat\r\nprostrkování\r\nprostrkovaný\r\nprostrkovat\r\nprostředek\r\nprostředí\r\nprostředka\r\nprostředkování\r\nprostředkovaný\r\nprostředkovat\r\nprostředkový\r\nprostřednější\r\nprostřednice\r\nprostřednictvím\r\nprostřednictví\r\nprostředníček\r\nprostředník\r\nprostředníkův\r\nprostřední\r\nprostřelenější\r\nprostřelení\r\nprostřelený\r\nprostřelit\r\nprostřelování\r\nprostřelovaný\r\nprostřelovat\r\nprostřelovávání\r\nprostřelovávaný\r\nprostřelovávat\r\nprostřenější\r\nprostření\r\nprostřený\r\nprostřídání\r\nprostřídaný\r\nprostřídat\r\nprostřihání\r\nprostříhání\r\nprostřihaný\r\nprostříhaný\r\nprostřihat\r\nprostříhat\r\nprostřihávání\r\nprostříhávání\r\nprostřihávaný\r\nprostříhávaný\r\nprostřihávat\r\nprostříhávat\r\nprostřih\r\nprostřihnout\r\nprostřihnutí\r\nprostřihovací\r\nprostřihovadlo\r\nprostřihování\r\nprostřihovaný\r\nprostřihovat\r\nprostříkání\r\nprostříknout\r\nprostříknutí\r\nprostříknutý\r\nprostřílení\r\nprostřílený\r\nprostřílet\r\nprostřít\r\nprostřižený\r\nprostší\r\nprostudovanější\r\nprostudování\r\nprostudovaný\r\nprostudovat\r\nprostudovávající\r\nprostudovávání\r\nprostudovávaný\r\nprostudovávat\r\nprostudovávavanější\r\nprostudovávavání\r\nprostudovávavaný\r\nprostudující\r\nprostůjme\r\nprostůj\r\nprostůjte\r\nprostůňu\r\nprostup\r\nprostupnější\r\nprostupní\r\nprostupný\r\nprostupování\r\nprostupovaný\r\nprostupovat\r\nprostupující\r\nprostůrka\r\nprostydlejší\r\nprostydlý\r\nprostydnout\r\nprostydnutí\r\nprostydnutý\r\nprostý\r\nprosunutí\r\nprosvěcování\r\nprosvěcovaný\r\nprosvěcovat\r\nprosvěcující\r\nprosvětlenější\r\nprosvětlení\r\nprosvětlený\r\nprosvětlit\r\nprosvětlovací\r\nprosvětlování\r\nprosvětlovaný\r\nprosvětlovat\r\nprosvětlovávání\r\nprosvětlovávaný\r\nprosvětlovávat\r\nprosvětlující\r\nprosvícení\r\nprosvícený\r\nprosvištění\r\nprosvištět\r\nprosvítající\r\nprosvítání\r\nprosvítat\r\nprosvítit\r\nprosvitnout\r\nprosvitnutí\r\nprosycení\r\nprosycený\r\nprosycování\r\nprosycovaný\r\nprosycovat\r\nprosychat\r\nprosýchat\r\nprosykat\r\nprosypající\r\nprosypanější\r\nprosypání\r\nprosýpání\r\nprosypaný\r\nprosýpaný\r\nprosypat\r\nprosýpat\r\nprosypávající\r\nprosypávanější\r\nprosypávání\r\nprosypávaný\r\nprosypávat\r\nprosytit\r\nprošaškovat\r\nprošedivělý\r\nprošedivění\r\nprošedivět\r\nprošedlý\r\nProšek\r\nprošel\r\nprošení\r\nprošetření\r\nprošetřený\r\nprošetřit\r\nprošetřovací\r\nprošetřování\r\nprošetřovaný\r\nprošetřovat\r\nprošetřovávat\r\nprošetřující\r\nprošilhání\r\nprošilhat\r\nprošilhávání\r\nprošilhávat\r\nprošišlání\r\nprošišlaný\r\nprošišlat\r\nprošít\r\nprošitější\r\nprošití\r\nprošitý\r\nprošitý\r\nprošívací\r\nprošívačka\r\nprošívač\r\nprošívačův\r\nprošívanější\r\nprošívání\r\nprošívaný\r\nprošívat\r\nproškemrání\r\nproškemraný\r\nproškemrat\r\nproškolenější\r\nproškolení\r\nproškolený\r\nproškolit\r\nproškolování\r\nproškolovaný\r\nproškolovat\r\nProšková\r\nproškrabající\r\nproškrábající\r\nproškrabanější\r\nproškrábanější\r\nproškrabání\r\nproškrábání\r\nproškrabaný\r\nproškrábaný\r\nproškrabat\r\nproškrábat\r\nproškrabávání\r\nproškrabávaný\r\nproškrabávat\r\nproškrábnout\r\nproškrábnutější\r\nproškrábnutí\r\nproškrábnutý\r\nproškrábnutý\r\nproškrabovanější\r\nproškrabování\r\nproškrabovaný\r\nproškrabovat\r\nproškrtání\r\nproškrtaný\r\nproškrtat\r\nproškrtávání\r\nproškrtávaný\r\nproškrtávat\r\nproškrtnout\r\nproškrtnutí\r\nproškrtnutý\r\nproškubávající\r\nProškův\r\nprošlapanější\r\nprošlapání\r\nprošlapaný\r\nprošlapat\r\nprošlapávání\r\nprošlapávaný\r\nprošlapávat\r\nprošlápnout\r\nprošlápnutí\r\nprošlápnutý\r\nprošlehání\r\nprošlehaný\r\nprošlehat\r\nprošlehnout\r\nprošlechtěný\r\nprošlejší\r\nprošlost\r\nprošlup\r\nprošlý\r\nprošmátrání\r\nprošmátraný\r\nprošmátrat\r\nprošmejdění\r\nprošmejděný\r\nprošmejdit\r\nprošněrovávat\r\nprošoupaný\r\nprošoupat\r\nprošourání\r\nprošourat\r\nprošpásování\r\nprošpásovat\r\nprošpikování\r\nprošpikovaný\r\nprošpikovat\r\nprošpikovávání\r\nprošpikovávaný\r\nprošpikovávat\r\nproštěkání\r\nproštěkaný\r\nproštěkat\r\nproštepovat\r\nproštípnout\r\nproštípnutí\r\nproštípnutý\r\nproštipovat\r\nprošťouchání\r\nprošťouchaný\r\nprošťouchat\r\nprošťouchávání\r\nprošťouchávaný\r\nprošťouchávat\r\nprošťouchnout\r\nprošťouchnutí\r\nprošťouchnutý\r\nprošťourávat\r\nproštrachání\r\nproštrachaný\r\nproštrachat\r\nprošukání\r\nprošukaný\r\nprošukat\r\nprošumět\r\nprošuškat\r\nprošvihnout\r\nprošvihnutí\r\nprošvihnutý\r\nprotáčející\r\nprotáčení\r\nprotáčený\r\nprotáčet\r\nprotagonismus\r\nprotagonista\r\nprotagonistčin\r\nprotagonistka\r\nprotagonistův\r\nprotáhlejší\r\nprotáhlý\r\nprotáhnout\r\nprotáhnutí\r\nprotahovací\r\nprotahovačka\r\nprotahovák\r\nprotahovanější\r\nprotahování\r\nprotahovaný\r\nprotahovat\r\nprotahovávání\r\nprotahovávaný\r\nprotahovávat\r\nprotahující\r\nprotaktiniový\r\nprotaktinium\r\nproťal\r\nprotancování\r\nprotancovat\r\nprotančení\r\nprotančený\r\nprotančit\r\nproťapat\r\nprotápějící\r\nprotápěnější\r\nprotápění\r\nprotápěný\r\nprotápět\r\nproťapkání\r\nproťapkat\r\nproťápnout\r\nproťápnutí\r\nproťápnutý\r\nproťatější\r\nproťat\r\nproťatý\r\nproťatý\r\nprotavení\r\nprotavený\r\nprotavit\r\nproťav\r\nprotaženější\r\nprotažení\r\nprotažený\r\nprotažitelnější\r\nprotažitelný\r\nprotčení\r\nprotčený\r\nproteáza\r\nprotéct\r\nprotečení\r\nprotein\r\nproteinový\r\nprotějšek\r\nprotější\r\nprotějškův\r\nprotékající\r\nprotékání\r\nprotěkání\r\nprotékaný\r\nprotěkaný\r\nprotékat\r\nprotěkat\r\nprotekce\r\nprotekcionalismus\r\nprotekcionalistický\r\nprotekcionářčin\r\nprotekcionářka\r\nprotekcionářství\r\nprotekcionář\r\nprotekcionářův\r\nprotekcionismus\r\nprotekcionista\r\nprotekcionistčin\r\nprotekcionistický\r\nprotekcionističtější\r\nprotekcionistka\r\nprotekcionistův\r\nprotekčnější\r\nprotekční\r\nproteklejší\r\nproteklý\r\nprotektivní\r\nprotektorát\r\nprotektorátní\r\nprotektorčin\r\nprotektorka\r\nprotektorování\r\nprotektorovaný\r\nprotektorovat\r\nprotektorovávání\r\nprotektorovávaný\r\nprotektorovávat\r\nprotektor\r\nprotektorský\r\nprotektorův\r\nprotelefonovanější\r\nprotelefonování\r\nprotelefonovaný\r\nprotelefonovat\r\nprotence\r\nprotentokrát\r\nproteolytický\r\nproteolýza\r\nproteosyntéza\r\nproteplenější\r\nproteplení\r\nproteplený\r\nproteplit\r\nproteplovací\r\nproteplování\r\nproteplující\r\nprotestace\r\nprotestanský\r\nprotestanství\r\nprotestantčin\r\nprotestantismus\r\nprotestantka\r\nprotestant\r\nprotestantský\r\nprotestantství\r\nprotestantův\r\nprotest\r\nprotestnější\r\nprotestní\r\nprotestování\r\nprotestovaný\r\nprotestovat\r\nprotestovávání\r\nprotestovávaný\r\nprotestovávat\r\nprotestsong\r\nprotestující\r\nprotetický\r\nprotetika\r\nprotetik\r\nprotetikův\r\nprotětí\r\nprotéza\r\nproteze\r\nprotézní\r\nprotežování\r\nprotěžování\r\nprotežovaný\r\nprotěžovaný\r\nprotežovat\r\nprotěžovat\r\nprotěž\r\nproti\r\nprotiakce\r\nprotiakce\r\nprotiakt\r\nprotialergický\r\nprotialiance\r\nprotialkoholický\r\nprotialkoholičtější\r\nprotialkoholnější\r\nprotialkoholní\r\nprotiamerický\r\nprotiameričtější\r\nprotiamerikanismus\r\nprotiargument\r\nprotiatomový\r\nprotibakteriální\r\nprotiběh\r\nprotiběžný\r\nprotiběžný\r\nprotiblokovací\r\nprotibolševický\r\nprotibolševičtější\r\nprotibratrský\r\nprotibritštější\r\nprotiburžoaznější\r\nprotičeskoslovenský\r\nprotičeský\r\nprotičesový\r\nprotičínský\r\nprotidávivý\r\nprotidávka\r\nprotidělnický\r\nprotidělničtější\r\nprotidemokratičtější\r\nprotidopingovější\r\nprotidopingový\r\nprotidrahotní\r\nprotidrogový\r\nprotielektroda\r\nprotiepidemický\r\nprotiepidemičtější\r\nprotieroznější\r\nprotierozní\r\nprotifašistický\r\nprotifáze\r\nprotifeudální\r\nprotifrancouzský\r\nprotifrancouzštější\r\nprotifundamentalističtější\r\nprotihabsburský\r\nprotihitlerovský\r\nprotihlístový\r\nprotihlukový\r\nprotihmat\r\nprotihodnota\r\nprotihorečnatý\r\nprotihráččin\r\nprotihráčka\r\nprotihráč\r\nprotihráčův\r\nprotihra\r\nprotihusitský\r\nprotichemický\r\nprotichemičtější\r\nprotichod\r\nprotichřipkový\r\nprotichůdce\r\nprotichůdcův\r\nprotichůdnější\r\nprotichůdný\r\nprotiimperialistický\r\nprotiimperialističtější\r\nprotiindividualističtější\r\nprotiinfekčnější\r\nprotiinflační\r\nprotiiráčtější\r\nprotiitalský\r\nprotiizraelský\r\nprotiizraelštější\r\nprotijaderný\r\nprotijed\r\nprotijedoucí\r\nprotijezuitský\r\nprotijosefínský\r\nprotikandidátčin\r\nprotikandidátka\r\nprotikandidát\r\nprotikandidátův\r\nprotikandidování\r\nprotikandidovat\r\nprotikání\r\nprotikartelový\r\nprotikat\r\nprotikatolický\r\nprotikatoličtější\r\nprotiklad\r\nprotiklad\r\nprotikladnější\r\nprotikladný\r\nprotikladu\r\nprotiklerikalismus\r\nprotiklerikalistický\r\nprotiklerikálnější\r\nprotikluzový\r\nprotikolonialističtější\r\nprotikoloniálnější\r\nprotikomunistický\r\nprotikomunističtější\r\nprotikorozní\r\nprotikorozní\r\nprotikorupční\r\nprotikosmický\r\nprotikosmičtější\r\nprotikrizovější\r\nprotikrizový\r\nprotikřečový\r\nprotikulturnější\r\nprotikuřácký\r\nprotikuřáčtější\r\nprotikus\r\nprotilátka\r\nprotilehlý\r\nprotilehlý\r\nprotilék\r\nprotiletadlový\r\nprotiletecký\r\nprotilidovější\r\nprotilidový\r\nprotilucemburský\r\nprotimasarykovský\r\nprotiměšťáčtější\r\nprotimilitaristický\r\nprotimindrákový\r\nprotimírový\r\nprotimluv\r\nprotimonarchistický\r\nprotimonarchističtější\r\nprotimonopolní\r\nprotimonopolový\r\nprotimrazový\r\nprotimužský\r\nprotináboženštější\r\nprotinacistický\r\nprotinacističtější\r\nprotínající\r\nprotinákazový\r\nprotinámitka\r\nprotínání\r\nprotínaný\r\nprotinapoleonský\r\nprotinarkotický\r\nprotinárodnější\r\nprotinárodní\r\nprotinárok\r\nprotínat\r\nprotínávání\r\nprotínávaný\r\nprotínávat\r\nprotinávrh\r\nprotinázor\r\nprotiněmecký\r\nprotiněmečtější\r\nprotinožcův\r\nprotinožecký\r\nprotinožec\r\nprotiodborový\r\nprotiodpustkový\r\nprotiofensiva\r\nprotiofenziva\r\nprotiokupační\r\nprotiopatření\r\nprotiotázka\r\nprotiotrokářský\r\nprotipancéřový\r\nprotipanovnický\r\nprotiparazitární\r\nprotipěchotní\r\nprotiplísňový\r\nprotiplnění\r\nprotiplynový\r\nprotipohledávka\r\nprotipohyb\r\nprotipokrokový\r\nprotipól\r\nprotipólný\r\nprotipoložka\r\nprotiponorkový\r\nprotipotratový\r\nprotipovodňový\r\nprotipožadavek\r\nprotipožární\r\nprotiprachový\r\nprotiprašnější\r\nprotiprávnější\r\nprotiprávní\r\nprotiprokluzový\r\nprotiproud\r\nprotiproudový\r\nprotiproudý\r\nprotipruský\r\nprotipřenos\r\nprotipřenosový\r\nprotipříklad\r\nprotipříprava\r\nprotipřírodnější\r\nprotipřírodnější\r\nprotiradarový\r\nprotiradonový\r\nprotiraketový\r\nprotirakouský\r\nprotirakovinný\r\nprotírání\r\nprotíraný\r\nprotirasistický\r\nprotírat\r\nprotireformace\r\nprotireformační\r\nprotireformnější\r\nprotireformní\r\nprotirepublikánský\r\nprotirevmatický\r\nprotirevolučnější\r\nprotirevoluční\r\nprotirežimnější\r\nprotirežimní\r\nprotirobotní\r\nprotiromský\r\nprotirozumový\r\nprotiruský\r\nprotirůstový\r\nprotiřečení\r\nprotiřečící\r\nprotiřečit\r\nprotiřečivý\r\nprotiseparatističtější\r\nprotiskluzový\r\nprotisluní\r\nprotislužba\r\nprotisměr\r\nprotisměrnější\r\nprotisměrný\r\nprotismykový\r\nprotismyslnější\r\nprotismyslný\r\nprotisocialistický\r\nprotisociálnější\r\nprotisociální\r\nprotisovětský\r\nprotisovětštější\r\nprotispékavý\r\nprotispolečenský\r\nprotispolečenštější\r\nprotisrážlivý\r\nprotista\r\nprotistátní\r\nprotistátoprávní\r\nprotistávkový\r\nprotistčin\r\nprotistka\r\nprotistrana\r\nprotistraničtější\r\nprotistresový\r\nprotistův\r\nprotisvětlo\r\nprotisvit\r\nprotisystémový\r\nprotišance\r\nprotišpionážnější\r\nprotišpionážní\r\nprotitaaffovský\r\nprotitah\r\nprotitankový\r\nprotiteroristický\r\nprotiterorističtější\r\nprotitetanový\r\nprotít\r\nprotitlak\r\nprotitlakový\r\nprotitok\r\nprotitrustový\r\nprotitržnější\r\nprotiturecký\r\nprotiturečtější\r\nprotitvrzení\r\nprotiúčet\r\nprotiúder\r\nprotiúrazový\r\nprotiústavnější\r\nprotiústavní\r\nprotiútok\r\nprotiváclavský\r\nprotivah\r\nprotiváha\r\nprotiválečnější\r\nprotiválečný\r\nProtivanov\r\nprotivanovský\r\nprotiva\r\nprotivědečtější\r\nprotivení\r\nprotivenství\r\nprotivětrech\r\nprotivětrem\r\nprotivětru\r\nprotivětrů\r\nprotivětrům\r\nprotivětry\r\nprotivětře\r\nprotivící\r\nProtivín\r\nprotivínský\r\nprotivirový\r\nprotivit\r\nprotivítr\r\nprotivládnější\r\nprotivládní\r\nprotivnější\r\nprotivnice\r\nprotivničin\r\nprotivník\r\nprotivníkův\r\nprotivný\r\nprotivředový\r\nprotivzdušnější\r\nprotivzdušný\r\nprotivzorek\r\nprotizákonnější\r\nprotizákonný\r\nprotizánětlivý\r\nprotizápadnější\r\nprotizáruka\r\nprotizávaží\r\nprotižaloba\r\nprotiženský\r\nprotižidovský\r\nprotkanější\r\nprotkání\r\nprotkaný\r\nprotkat\r\nprotkávající\r\nprotkávanější\r\nprotkávání\r\nprotkávaný\r\nprotkávat\r\nprotknout\r\nprotknutí\r\nprotknutý\r\nprotlačení\r\nprotlačený\r\nprotlačit\r\nprotlačovací\r\nprotlačovačka\r\nprotlačovanější\r\nprotlačování\r\nprotlačovaný\r\nprotlačovat\r\nprotlachání\r\nprotlachaný\r\nprotlachat\r\nprotlak\r\nprotlouct\r\nprotloukající\r\nprotloukanější\r\nprotloukání\r\nprotloukaný\r\nprotloukat\r\nprotloukávanější\r\nprotloukávání\r\nprotloukávaný\r\nprotloukávat\r\nprotlučenější\r\nprotlučení\r\nprotlučený\r\nprotnout\r\nprotnu\r\nprotnutější\r\nprotnutelnější\r\nprotnutelný\r\nprotnutí\r\nprotnut\r\nprotnutý\r\nproto\r\nprotočení\r\nprotočený\r\nprotočit\r\nprotohvězda\r\nprotokachetový\r\nprotokat\r\nprotokeltský\r\nprotokolární\r\nprotokol\r\nprotokolista\r\nprotokolistčin\r\nprotokolistka\r\nprotokolistův\r\nprotokolování\r\nprotokolovaný\r\nprotokolovaný\r\nprotokolovat\r\nprotokolovávání\r\nprotokolovávaný\r\nprotokolovávat\r\nprotokolový\r\nprotolytický\r\nprotolytičtější\r\nproton\r\nprotonový\r\nprotopenější\r\nprotopení\r\nprotopený\r\nprotopit\r\nprotopitelnější\r\nprotopitelný\r\nprotoplanetární\r\nprotoplaneta\r\nprotoplazma\r\nprotosocialismus\r\nprotosocialistický\r\nprototyp\r\nprototypový\r\nprotozoologie\r\nprotože\r\nprotrahování\r\nprotrahovaný\r\nprotrahovat\r\nprotrápení\r\nprotrápený\r\nprotrápit\r\nprotrasování\r\nprotrasovaný\r\nprotrasovat\r\nprotra\r\nprotrhající\r\nprotrhanější\r\nprotrhání\r\nprotrhaný\r\nprotrhat\r\nprotrhávající\r\nprotrhávanější\r\nprotrhávání\r\nprotrhávaný\r\nprotrhávat\r\nprotrhnout\r\nprotrhnutější\r\nprotrhnutí\r\nprotrhnutý\r\nprotrmácení\r\nprotrmácet\r\nprotrpění\r\nprotrpěný\r\nprotrpět\r\nprotržení\r\nprotržený\r\nprotřásl\r\nprotřást\r\nprotřelejší\r\nprotřelý\r\nprotření\r\nprotřený\r\nprotřepání\r\nprotřepaný\r\nprotřepat\r\nprotřepávající\r\nprotřepávání\r\nprotřepávaný\r\nprotřepávat\r\nprotřesení\r\nprotřesen\r\nprotřesený\r\nprotřesu\r\nprotřít\r\nprotuberance\r\nprotýkačka\r\nproučenější\r\nproučení\r\nproučený\r\nproučil\r\nproučím\r\nproučit\r\nproučme\r\nprouč\r\nproučte\r\nproúčtovanější\r\nproúčtování\r\nproúčtovaný\r\nproúčtovat\r\nproúčtovávání\r\nproúčtovávaný\r\nproúčtovávat\r\nproudění\r\nproud\r\nproudící\r\nproudil\r\nproudím\r\nproudit\r\nproudit\r\nprouďme\r\nprouď\r\nproudnice\r\nproudnicový\r\nproudovitý\r\nproudový\r\nprouďte\r\nprouhelnění\r\nprouhelněný\r\nprouhelňování\r\nprouhelňovat\r\nproukrajinský\r\nProusek\r\nProusková\r\nProuskův\r\nProust\r\nProustův\r\nprouteček\r\nproutek\r\nproutěný\r\nproutíkání\r\nproutíkaný\r\nproutíkat\r\nproutí\r\nproutkařčin\r\nproutkaření\r\nproutkařka\r\nproutkařství\r\nproutkař\r\nproutkařův\r\nproutník\r\nproutníkův\r\nProuzová\r\nProuz\r\nProuzův\r\nproužek\r\nproužka\r\nproužkovací\r\nproužkování\r\nproužkovaný\r\nproužkovat\r\nproužkový\r\nprováděcí\r\nprovádějící\r\nprováděnější\r\nprovádění\r\nprováděný\r\nprovádět\r\nprovalení\r\nproválení\r\nprovalený\r\nproválený\r\nproválet\r\nprovalit\r\nprovalování\r\nprovalovat\r\nprovalovávání\r\nprovalovávaný\r\nprovalovávat\r\nprování\r\nprovanout\r\nprovanutí\r\nprovanutý\r\nprovařenější\r\nprovaření\r\nprovařený\r\nprovařit\r\nprovát\r\nprovátý\r\nprovázanější\r\nprovázání\r\nprovázaný\r\nprovazárna\r\nprovázat\r\nprovázávanější\r\nprovázávání\r\nprovázávaný\r\nprovázávat\r\nprovazcovitý\r\nprovazcový\r\nprovazec\r\nprovázející\r\nprovázek\r\nprovázenější\r\nprovázení\r\nprovázený\r\nprovázet\r\nprovaz\r\nprovaziště\r\nprovázívat\r\nprovázkový\r\nprovaznický\r\nprovaznictví\r\nprovazničtější\r\nProvazníková\r\nprovazník\r\nProvazník\r\nProvazníkův\r\nprovazníkův\r\nprovazochodcův\r\nprovazochodec\r\nprovazochodkyně\r\nprovazochodkynin\r\nprovazolezcův\r\nprovazolezec\r\nprovazovanější\r\nprovazování\r\nprovazovaný\r\nprovazovat\r\nprovazovka\r\nprovazový\r\nprovazující\r\nprováženější\r\nprovážení\r\nprovážený\r\nprovážet\r\nprováži\r\nprovážit\r\nprovažovanější\r\nprovažování\r\nprovažovaný\r\nprovažovat\r\nprovažovatelnější\r\nprovažovatelný\r\nprovažující\r\nprovdání\r\nprovdaný\r\nprovdat\r\nprovdávání\r\nprovdávaný\r\nprovdávat\r\nprovedenější\r\nprovedení\r\nproveden\r\nprovedený\r\nproveditelnější\r\nproveditelný\r\nprovedl\r\nprovedu\r\nprovelení\r\nprovelený\r\nprovelet\r\nProvence\r\nprovenience\r\nprovensálština\r\nprověrka\r\nprověrkový\r\nprověřenější\r\nprověření\r\nprověřený\r\nprověřit\r\nprověřitelnější\r\nprověřitelný\r\nprověřovací\r\nprověřovanější\r\nprověřování\r\nprověřovaný\r\nprověřovat\r\nprověřovatelčin\r\nprověřovatelka\r\nprověřovatel\r\nprověřovatelův\r\nprověřovávat\r\nprověřující\r\nprověs\r\nprověsit\r\nproveslování\r\nproveslovat\r\nprovést\r\nprověšení\r\nprověšený\r\nprovětrání\r\nprovětraný\r\nprovětratelný\r\nprovětrat\r\nprovětrávání\r\nprovětrávat\r\nprovezenější\r\nprovezení\r\nprovezený\r\nprovézt\r\nproviant\r\nproviantní\r\nprovincialismus\r\nprovincialistický\r\nprovinciálnější\r\nprovinciální\r\nprovinciál\r\nprovinciálův\r\nprovincie\r\nprovincionalismus\r\nprovincionalistický\r\nprovinčnější\r\nprovinční\r\nprovinění\r\nproviněný\r\nprovinilcův\r\nprovinilčin\r\nprovinilec\r\nprovinilejší\r\nprovinilka\r\nprovinilý\r\nprovinit\r\nproviňování\r\nproviňovat\r\nprovíření\r\nprovířený\r\nprovířit\r\nprovitamin\r\nprovívání\r\nprovívaný\r\nprovívat\r\nprovize\r\nprovizorium\r\nprovizórium\r\nprovizornější\r\nprovizorní\r\nprovláčení\r\nprovláčený\r\nprovláčet\r\nprovládní\r\nprovléct\r\nprovlečenější\r\nprovlečení\r\nprovlečený\r\nprovlékání\r\nprovlékaný\r\nprovlékat\r\nprovlékl\r\nprovléknout\r\nprovléknutí\r\nprovléknutý\r\nprovlhčování\r\nprovlhčovaný\r\nprovlhčovat\r\nprovlhlejší\r\nprovlhlý\r\nprovlhnout\r\nprovlhnutí\r\nprovlhnutý\r\nprovlíknout\r\nProvodín\r\nprovodínský\r\nprovodit\r\nProvodov\r\nprovodovský\r\nprovokace\r\nprovokační\r\nprovokatérčin\r\nprovokatérka\r\nprovokatér\r\nprovokatérštější\r\nprovokatérův\r\nprovokativní\r\nprovokování\r\nprovokovaný\r\nprovokovaný\r\nprovokovat\r\nprovokovávání\r\nprovokovávaný\r\nprovokovávat\r\nprovokující\r\nprovolající\r\nprovolanější\r\nprovolání\r\nprovolaný\r\nprovolat\r\nprovolávací\r\nprovolávající\r\nprovolávanější\r\nprovolávání\r\nprovolávaný\r\nprovolávat\r\nprovolávka\r\nprovolba\r\nprovonění\r\nprovoněný\r\nprovonět\r\nprovozářka\r\nprovozář\r\nprovozářův\r\nprovozce\r\nprovozcův\r\nprovození\r\nprovozený\r\nprovoz\r\nprovozit\r\nprovozní\r\nprovozovací\r\nprovozovanější\r\nprovozování\r\nprovozovaný\r\nprovozovat\r\nprovozovatelčin\r\nprovozovatelka\r\nprovozovatelný\r\nprovozovatel\r\nprovozovatelův\r\nprovozovna\r\nprovozující\r\nprovozuschopnější\r\nprovozuschopný\r\nprovožení\r\nprovožený\r\nprovrtání\r\nprovrtaný\r\nprovrtat\r\nprovrtávání\r\nprovrtávaný\r\nprovrtávat\r\nprovykládání\r\nprovykládaný\r\nprovykládat\r\nprovyprávění\r\nprovyprávěný\r\nprovyprávět\r\nprovýt\r\nprovytí\r\nprovzdušit\r\nprovzdušnění\r\nprovzdušněný\r\nprovzdušnit\r\nprovzdušňovací\r\nprovzdušňování\r\nprovzdušňovaný\r\nprovzdušňovat\r\nprovzdušňovávat\r\nprovzdušňující\r\nprovzdušovací\r\nprovzdušování\r\nprovzdušovaný\r\nprovzdušovat\r\nprovzdychání\r\nprovzdychaný\r\nprovzdychat\r\nprovzdychávání\r\nprovzdychávat\r\nprovztekání\r\nprovztekaný\r\nprovztekat\r\nprovztekávání\r\nprovztekávat\r\nprovždy\r\nproximitní\r\nproxy\r\nprozahálení\r\nprozahálený\r\nprozahálet\r\nprozaický\r\nprozaiččin\r\nprozaička\r\nprozaičtější\r\nprozaik\r\nprozaikův\r\nprozaismus\r\nprozápadnější\r\nprozápadní\r\nprozápolení\r\nprozářenější\r\nprozáření\r\nprozářený\r\nprozářit\r\nprozařování\r\nprozařovaný\r\nprozařovat\r\nprozařovávat\r\nprozařující\r\nprozatérčin\r\nprozatérka\r\nprozatím\r\nprozatímnější\r\nprozatímní\r\nprozaznívat\r\npróza\r\nprozevlování\r\nprozírající\r\nprozírání\r\nprozírat\r\nprozíravější\r\nprozíravý\r\nprozkoumanější\r\nprozkoumání\r\nprozkoumaný\r\nprozkoumatelnější\r\nprozkoumatelný\r\nprozkoumat\r\nprozkoumávající\r\nprozkoumávání\r\nprozkoumávaný\r\nprozkoumávat\r\nprozkoušení\r\nprozkoušený\r\nprozkoušet\r\nprozlobení\r\nproznít\r\nprozobání\r\nprozobaný\r\nprozobat\r\nprozobávání\r\nprozobávaný\r\nprozobávat\r\nprozodický\r\nprozódie\r\nprozpěvování\r\nprozpěvovaný\r\nprozpěvovat\r\nprozpěvující\r\nprozpívání\r\nprozpívaný\r\nprozpívat\r\nprozpívávání\r\nprozpívávaný\r\nprozpívávat\r\nprozradit\r\nprozrazení\r\nprozrazený\r\nprozrazování\r\nprozrazovaný\r\nprozrazovat\r\nprozrazující\r\nprozření\r\nprozřený\r\nprozřetelnější\r\nprozřetelný\r\nprozřít\r\nprozvánění\r\nprozváněný\r\nprozvánět\r\nprozvonění\r\nprozvoněný\r\nprozvonit\r\nproženu\r\nprožhavenější\r\nprožhavení\r\nprožhavený\r\nprožhavit\r\nprožírající\r\nprožírání\r\nprožíraný\r\nprožírat\r\nprožít\r\nprožitější\r\nprožitek\r\nprožití\r\nprožitkový\r\nprožitý\r\nprožitý\r\nprožívající\r\nprožívanější\r\nprožívání\r\nprožívaný\r\nprožívat\r\nproživoření\r\nproživořit\r\nprožluklejší\r\nprožranější\r\nprožrání\r\nprožraný\r\nprožrat\r\nprožvatlání\r\nprožvatlaný\r\nprožvatlat\r\nprožvýkat\r\nprr\r\nprsařčin\r\nprsařka\r\nprsatější\r\nprs\r\nprsíčko\r\nprsk\r\nprskající\r\nprskání\r\nprskaný\r\nprskat\r\nprskávání\r\nprskávaný\r\nprskávat\r\nPrskavcová\r\nPrskavcův\r\nprskavcův\r\nprskavec\r\nPrskavec\r\nprskavější\r\nprskavka\r\nprskavý\r\nprsknout\r\nprsknutí\r\nprsknutý\r\nprskot\r\nprsní\r\nprso\r\nprsou\r\nprstčin\r\nprstencovitý\r\nprstencový\r\nprstenec\r\nprsten\r\nprsteníček\r\nprsteník\r\nprstenový\r\nprst\r\nprstíček\r\nprstík\r\nprsť\r\nprstka\r\nprstnatcův\r\nprstnatec\r\nprstnatý\r\nprstní\r\nprstoklad\r\nprstoklad\r\nprstový\r\nprstýnek\r\npršáček\r\npršák\r\npršení\r\npršet\r\npršící\r\npršiplášť\r\npršívalo\r\npršívá\r\npršívat\r\nprška\r\nprták\r\nprťák\r\nprťavější\r\nprťavý\r\nprůběhem\r\nprůběh\r\nprůběhovější\r\nprůběhový\r\nprůběhu\r\nprůběžnější\r\nprůběžný\r\nprubířský\r\nprubnout\r\nprubnutí\r\nprůbojnější\r\nprůbojník\r\nprůbojný\r\nprůboj\r\nprůčelí\r\nprůčelní\r\nPrůdek\r\nprudérie\r\nprudérnější\r\nprudit\r\nPrůdková\r\nPrůdkův\r\nPrudký\r\nprudký\r\nprudší\r\nprůduch\r\nprůdušinka\r\nprůduška\r\nprůduškový\r\nprůdušnice\r\nprůdyšnější\r\npruh\r\nprůhled\r\nprůhledítko\r\nprůhlednější\r\nprůhledný\r\nprůhledový\r\nPrůhonice\r\nprůhonický\r\nprůhonický\r\npruhování\r\npruhovaný\r\npruhovat\r\npruhovitý\r\npruhový\r\nprůhyb\r\nprůhyboměr\r\nPrůcha\r\nprůchod\r\nprůchodiště\r\nprůchodka\r\nprůchodkový\r\nprůchodnější\r\nprůchodní\r\nprůchodný\r\nprůchodový\r\nPrůchová\r\nprůchozí\r\nPrůchův\r\nprůjem\r\nprůjezd\r\nprůjezdnější\r\nprůjezdní\r\nprůjezdný\r\nprůjezdový\r\nprůjmový\r\nprůkaz\r\nprůkazka\r\nprůkaznější\r\nprůkazní\r\nprůkazný\r\nprůkazový\r\nprůklep\r\nprůklepový\r\nprůklest\r\nPruknerová\r\nPrukner\r\nPruknerův\r\nprůkop\r\nprůkopnice\r\nprůkopnický\r\nprůkopničtější\r\nprůkopník\r\nprůkopníkův\r\nprůlet\r\nprůlez\r\nprůlezka\r\nprůlezový\r\nprůlinčitý\r\nprůlinový\r\nprůliv\r\nprůlom\r\nprůlomový\r\nprůměr\r\nprůměrka\r\nprůměrnější\r\nprůměrný\r\nprůměrovací\r\nprůměrování\r\nprůměrování\r\nprůměrovaný\r\nprůměrovat\r\nprůměrovávání\r\nprůměrovávaný\r\nprůměrovávat\r\nprůměrový\r\nprůměrující\r\nprůmět\r\nprůmětna\r\nprůmětový\r\nPrůmstav\r\nprůmysl\r\nprůmyslnický\r\nprůmyslničtější\r\nprůmyslník\r\nprůmyslníkův\r\nprůmyslovák\r\nprůmyslovější\r\nprůmyslovka\r\nprůmyslový\r\nPrunéřov\r\nprunéřovský\r\nprůnikář\r\nprůnikářův\r\nprůnik\r\nprůnikový\r\nprůpis\r\nprůpiska\r\nprůpisník\r\nprůplach\r\nprůplav\r\nprůplavní\r\nprůplavový\r\nprůplet\r\nprůpověď\r\nprůpovídka\r\nprůprava\r\nprůpravný\r\nprůramek\r\nprůraz\r\nprůraznější\r\nprůrazník\r\nprůrazný\r\nprůrva\r\nprůřez\r\nprůřezový\r\nprůsak\r\nprůsakový\r\nprůsečík\r\nprůsečíkový\r\nprůsečnice\r\nprůsek\r\nprůsekový\r\nPrusíková\r\nPrusík\r\nPrusíkův\r\nPrusinovice\r\nprusinovický\r\nPrusinovský\r\nPrusko\r\npruský\r\npruský\r\nprůsmyk\r\nPrusový\r\nPrus\r\nprůstřel\r\nprůstřelnější\r\nprůstřelný\r\nprůstup\r\nprůsvit\r\nprůsvitka\r\nprůsvitnější\r\nprůsvitný\r\nPrůša\r\nPrůšek\r\nPrůšková\r\nPrůškův\r\nPrůšová\r\npruština\r\nPrůšův\r\nprůšvihářčin\r\nprůšvihářka\r\nprůšvihář\r\nprůšvihářův\r\nprůšvih\r\nprůtah\r\nprůtahoměr\r\nprůtahový\r\nprůtažný\r\nprut\r\nprůtiskový\r\nprůtlačný\r\nprůtlak\r\nprůtočný\r\nprůtok\r\nprůtokoměr\r\nprůtokový\r\nprutovitý\r\nprutový\r\nprůtržík\r\nprůtrž\r\nprůval\r\nprůvalový\r\nprůvan\r\nprůvěs\r\nprůvětrný\r\nprůvlak\r\nprůvlakový\r\nprůvlek\r\nprůvodce\r\nprůvodcovský\r\nprůvodcovství\r\nprůvodcův\r\nprůvodčí\r\nprůvod\r\nprůvodič\r\nprůvodka\r\nprůvodkyně\r\nprůvodkynin\r\nprůvodnější\r\nprůvodní\r\nprůvodný\r\nprůvoz\r\nprůvozní\r\npruzenější\r\npruzený\r\nprůzkum\r\nprůzkumnice\r\nprůzkumník\r\nprůzkumníkův\r\nprůzkumný\r\nprůzkumový\r\nprůzor\r\nprůzorový\r\nprůzračnější\r\nprůzračný\r\nprůzvučnější\r\nprůzvučný\r\npružení\r\npruženka\r\npružící\r\npružina\r\npružinka\r\npružinový\r\nPružinský\r\npružit\r\npruživý\r\npružnější\r\npružnice\r\npružný\r\nprvák\r\nprvákův\r\nprve\r\nprvek\r\nprvenství\r\nprvka\r\nprvkový\r\nprvňaččin\r\nprvňáček\r\nprvňačka\r\nprvňáčkův\r\nprvňák\r\nprvňákův\r\nprvnější\r\nprvnička\r\nprvní\r\nprvobytný\r\nprvočinitel\r\nprvočíselný\r\nprvočíslo\r\nprvoelement\r\nprvohorní\r\nprvohory\r\nprvoideál\r\nprvoinstanční\r\nprvoklíček\r\nprvokomunikant\r\nprvokomunikantův\r\nprvokonzument\r\nprvokonzumentův\r\nprvok\r\nprvokřesťanský\r\nprvokův\r\nprvolezcův\r\nprvolezec\r\nprvoligista\r\nprvoligistčin\r\nprvoligistka\r\nprvoligistův\r\nprvoligový\r\nprvomájový\r\nprvomanžel\r\nprvomanželův\r\nprvopachatel\r\nprvopachatelův\r\nprvopis\r\nprvoplánovější\r\nprvoplánový\r\nprvopočáteční\r\nprvopočátek\r\nprvopojištění\r\nprvopřeskok\r\nprvorepublikový\r\nprvorodička\r\nprvorozencův\r\nprvorozenectví\r\nprvorozenec\r\nprvorozenství\r\nprvorozený\r\nprvořadě\r\nprvořadější\r\nprvořadý\r\nprvosenka\r\nprvosenkovitý\r\nprvostupňový\r\nprvotelka\r\nprvotina\r\nprvotisk\r\nprvotnější\r\nprvotní\r\nprvotnost\r\nprvotřídnější\r\nprvotřídní\r\nprvouka\r\nprvovýroba\r\nprvovýrobce\r\nprvovýrobcův\r\nprvovýstup\r\nprvozápis\r\nprvý\r\nprý\r\npryč\r\npryčka\r\npryčna\r\nprýmek\r\nprýmkařský\r\nprýmkař\r\nprýmkařův\r\nprýmkový\r\nprysčin\r\nprýskání\r\nprýskat\r\nprýskávání\r\nprýskávat\r\npryska\r\npryskyřice\r\npryskyřicový\r\npryskyřičnatý\r\npryskyřičný\r\npryskyřník\r\npryšcovitý\r\npryšec\r\nprýštění\r\nprýštěný\r\npryštící\r\nprýštící\r\nprýštit\r\nprýštivý\r\nprýt\r\npryžový\r\npryž\r\nprznění\r\nprzněný\r\nprznit\r\nPržno\r\npř\r\npřací\r\npřací\r\nPřáda\r\npřádelna\r\npřádelní\r\npřadene\r\npřadénko\r\npřadeno\r\npřadenový\r\npřadlácký\r\npřadláčtější\r\npřadlák\r\npřadlákův\r\npřadlena\r\npřadný\r\nPřádová\r\nPřádův\r\npřadýnko\r\npřáníčko\r\npřání\r\npřaný\r\nPřáslavice\r\npřáslavický\r\npřástevníček\r\npřástevníčkův\r\npřástevník\r\npřástevníkův\r\npřást\r\npřástka\r\npřástky\r\npřástový\r\npřát\r\npřátele\r\npřátelé\r\npřátelení\r\npřátelený\r\npřátelích\r\npřáteli\r\npřátelit\r\npřátel\r\npřátelský\r\npřátelství\r\npřátelství\r\npřátelštější\r\npřátelům\r\npřávání\r\npřávaný\r\npřávat\r\npřeadresování\r\npřeadresovaný\r\npřeadresovat\r\npřeadresovávání\r\npřeadresovávaný\r\npřeadresovávat\r\npřeangažovaný\r\npřebalenější\r\npřebalení\r\npřebalený\r\npřebal\r\npřebalit\r\npřebalitelnější\r\npřebalitelný\r\npřebalovací\r\npřebalovanější\r\npřebalování\r\npřebalovaný\r\npřebalovat\r\npřebalovávání\r\npřebalovávaný\r\npřebalovávat\r\npřebalový\r\npřebalující\r\npřebarvenější\r\npřebarvení\r\npřebarvený\r\npřebarvit\r\npřebarvování\r\npřebarvovaný\r\npřebarvovat\r\npřebásnění\r\npřebásněný\r\npřebásnit\r\npřebásňování\r\npřebásňovaný\r\npřebásňovat\r\npřebásňovávat\r\npřeběh\r\npřeběhlice\r\npřeběhličin\r\npřeběhlík\r\npřeběhlíkův\r\npřeběhlý\r\npřeběhnout\r\npřeběhnutí\r\npřeběhnutý\r\npřeběhovější\r\npřeběhový\r\npřebelhání\r\npřebelhat\r\npřebelhávání\r\npřebelhávat\r\npřebetonovat\r\npřebíhající\r\npřebíhanější\r\npřebíhání\r\npřebíhaný\r\npřebíhat\r\npřebíhávání\r\npřebíhávaný\r\npřebíhávat\r\npřebíhavější\r\npřebíhavý\r\npřebíhavý\r\npřebíjející\r\npřebíjení\r\npřebíjený\r\npřebíjet\r\npřebírací\r\npřebírající\r\npřebíranější\r\npřebírání\r\npřebíraný\r\npřebírat\r\npřebíravější\r\npřebíravý\r\npřebírka\r\npřebít\r\npřebití\r\npřebit\r\npřebitý\r\npřeblikání\r\npřeblikaný\r\npřeblikat\r\npřeblikávání\r\npřeblikávat\r\npřebodnout\r\npřebohatý\r\npřebolení\r\npřebolený\r\npřebolet\r\npřebor\r\npřebornice\r\npřebornický\r\npřebornictví\r\npřeborničin\r\npřeborník\r\npřeborníkův\r\nPřeborov\r\npřeborovský\r\npřebranější\r\npřebraní\r\npřebrání\r\npřebraný\r\npřebrat\r\npřebrečení\r\npřebrečet\r\npřebreptnout\r\npřebreptnutí\r\npřebreptnutý\r\npřebrnět\r\npřebrnkání\r\npřebrnkaný\r\npřebrnkat\r\npřebrnkávat\r\npřebrodění\r\npřebroděný\r\npřebrodit\r\npřebrousit\r\npřebroušenější\r\npřebroušení\r\npřebroušený\r\npřebruslení\r\npřebruslit\r\npřebrušovanější\r\npřebrušování\r\npřebrušovaný\r\npřebrušovat\r\npřebrušující\r\npřebudovanější\r\npřebudování\r\npřebudovaný\r\npřebudovat\r\npřebudovávající\r\npřebudovávanější\r\npřebudovávání\r\npřebudovávaný\r\npřebudovávat\r\npřebujelejší\r\npřebujelý\r\npřeburácení\r\npřeburácet\r\npřebuzení\r\npřebuzený\r\npřebuzování\r\npřebuzovaný\r\npřebuzovat\r\npřebytečnější\r\npřebytečný\r\npřebytek\r\npřebytkovější\r\npřebytkový\r\npřebytkový\r\npřebývající\r\npřebývání\r\npřebývat\r\npřecapat\r\npřece\r\npřecedit\r\npřecejchování\r\npřecejchovaný\r\npřecejchovat\r\npřecejchovávání\r\npřecejchovávaný\r\npřecejchovávat\r\npřeceněnější\r\npřecenění\r\npřeceněný\r\npřecenit\r\npřeceňování\r\npřeceňovaný\r\npřeceňovat\r\npřeceňující\r\npřecezení\r\npřecezený\r\npřecezování\r\npřecezovaný\r\npřecezovat\r\npřeci\r\npřecitlivělejší\r\npřecitlivělý\r\npřecitlivý\r\nPřeckov\r\npřeckovský\r\npřecpanější\r\npřecpanější\r\npřecpání\r\npřecpaný\r\npřecpat\r\npřecpávání\r\npřecpávaný\r\npřecpávat\r\npřecupitání\r\npřecupitat\r\npřecupitávání\r\npřecupitávat\r\npřecvakávat\r\npřecválání\r\npřecválat\r\npřecválávání\r\npřecválávat\r\npřecvičení\r\npřecvičený\r\npřecvičit\r\npřecvičování\r\npřecvičovaný\r\npřecvičovat\r\npřecvičující\r\npřecvrlikání\r\npřecvrlikaný\r\npřecvrlikat\r\npřecvrnkávání\r\npřecvrnkávaný\r\npřecvrnkávat\r\npřečalounění\r\npřečalouněný\r\npřečalounit\r\npřečárat\r\npřečárnout\r\npřečárnout\r\npřečárnutí\r\npřečárnutý\r\npřečastý\r\npřečerpání\r\npřečerpaný\r\npřečerpat\r\npřečerpávací\r\npřečerpávající\r\npřečerpávání\r\npřečerpávaný\r\npřečerpávat\r\npřečesanější\r\npřečesání\r\npřečesaný\r\npřečesat\r\npřečesávání\r\npřečesávaný\r\npřečesávat\r\npřečetný\r\npřečin\r\npřečíslení\r\npřečíslený\r\npřečíslit\r\npřečíslování\r\npřečíslovaný\r\npřečíslovat\r\npřečíslovávání\r\npřečíslovávaný\r\npřečíslovávat\r\npřečísnout\r\npřečísnutí\r\npřečísnutý\r\npřečíst\r\npřečistěnější\r\npřečistění\r\npřečistěný\r\npřečistit\r\npřečistší\r\npřečistý\r\npřečištěnější\r\npřečištění\r\npřečištěný\r\npřečišťování\r\npřečišťovaný\r\npřečišťovat\r\npřečkání\r\npřečkaný\r\npřečkatelnější\r\npřečkat\r\npřečkávání\r\npřečkávaný\r\npřečkávat\r\npřečleněnější\r\npřečlenění\r\npřečleněný\r\npřečlenit\r\npřečlenitelnější\r\npřečlenitelný\r\npřečmárat\r\npřečmárnout\r\npřečmárnutí\r\npřečmárnutý\r\npřečnívající\r\npřečnívání\r\npřečnívaný\r\npřečnívat\r\npřečtenější\r\npřečtení\r\npřečtený\r\npřečurání\r\npřečůrání\r\npřečuraný\r\npřečůraný\r\npřečurat\r\npřečůrat\r\npřečurávající\r\npřečůrávající\r\npřečurávaný\r\npřečůrávaný\r\npřečurávat\r\npřečůrávat\r\npřed\r\npředadopční\r\npředák\r\npředákův\r\npředaleký\r\npředalpský\r\npředanější\r\npředání\r\npředaný\r\npředat\r\npředaudit\r\npředávací\r\npředavač\r\npředávač\r\npředavačův\r\npředávačův\r\npředávající\r\npředávanější\r\npředávání\r\npředávaný\r\npředávat\r\npředávka\r\npředávkování\r\npředávkovaný\r\npředávkovat\r\npředávkovávání\r\npředávkovávaný\r\npředávkovávat\r\npředávný\r\npředběhnout\r\npředběhnutí\r\npředběhnutý\r\npředběhovější\r\npředběhový\r\npředbělohorský\r\npředběžnější\r\npředběžný\r\npředbíhající\r\npředbíhanější\r\npředbíhání\r\npředbíhaný\r\npředbíhat\r\npředbíhávání\r\npředbíhávaný\r\npředbíhávat\r\npředbíhavý\r\npředbouřkový\r\npředbřeznový\r\npředcvičení\r\npředcvičený\r\npředcvičit\r\npředcvičitelčin\r\npředcvičitelka\r\npředcvičitel\r\npředcvičitelův\r\npředcvičování\r\npředcvičovaný\r\npředcvičovat\r\npředčasnější\r\npředčasný\r\npředčení\r\npředčený\r\npředčerpání\r\npředčerpaný\r\npředčerpat\r\npředčesanější\r\npředčesání\r\npředčesaný\r\npředčesat\r\npředčesávání\r\npředčesávaný\r\npředčesávat\r\npředčíselný\r\npředčíslí\r\npředčíst\r\npředčistící\r\npředčištění\r\npředčištěný\r\npředčišťování\r\npředčišťovat\r\npředčítaččin\r\npředčítačka\r\npředčítající\r\npředčítání\r\npředčítaný\r\npředčitatelčin\r\npředčitatelka\r\npředčitatel\r\npředčitatelův\r\npředčítat\r\npředčit\r\npředčlověčí\r\npředčmuchání\r\npředčmuchaný\r\npředčmuchat\r\npředčmuchávat\r\npředčtení\r\npředčtený\r\npředčuchání\r\npředčuchaný\r\npředčuchat\r\npředdefinovanější\r\npředdefinování\r\npředdefinovaný\r\npředdefinovat\r\npředdefinovatelnější\r\npředdefinovatelný\r\npředdefinovávanější\r\npředdefinovávání\r\npředdefinovávaný\r\npředdefinovávat\r\npředdeklarovanější\r\npředdeklarovaný\r\npředděrování\r\npředděrovaný\r\npředděrovat\r\npředdůchodový\r\npřede\r\npředeběh\r\npředečíst\r\npředečtenější\r\npředečtení\r\npředečtený\r\npředefinovanější\r\npředefinování\r\npředefinovaný\r\npředefinovat\r\npředefinovatelnější\r\npředefinovatelný\r\npředefinovávanější\r\npředefinovávání\r\npředefinovávaný\r\npředefinovávat\r\npředefinovávý\r\npředehnal\r\npředehnanější\r\npředehnání\r\npředehnán\r\npředehnaný\r\npředehnat\r\npředehranější\r\npředehrání\r\npředehraný\r\npředehrát\r\npředehrávanější\r\npředehrávání\r\npředehrávaný\r\npředehrávat\r\npředehrávka\r\npředehra\r\npředehřání\r\npředehřát\r\npředehřátější\r\npředehřát\r\npředehřátý\r\npředehřev\r\npředehřívání\r\npředehřívaný\r\npředehřívat\r\npředejakulát\r\npředejda\r\npředejdu\r\npředejít\r\npředejití\r\npředejit\r\npředejmout\r\npředejmu\r\npředejmul\r\npředejmutí\r\npředek\r\npředělání\r\npředělaný\r\npředělat\r\npředělávání\r\npředělávaný\r\npředělávat\r\npředělávka\r\npředělenější\r\npředělení\r\npředělený\r\npředěl\r\npředělit\r\npředělitelnější\r\npředělitelný\r\npředělovací\r\npředělovanější\r\npředělování\r\npředělovaný\r\npředělovat\r\npředělovatelnější\r\npředělovatelný\r\npředělovávání\r\npředělovávaný\r\npředělovávat\r\npředělový\r\npředělující\r\npředem\r\npředemelu\r\npředemlel\r\npředemlení\r\npředemletější\r\npředemletí\r\npředemlet\r\npředemletý\r\npředemletý\r\npředemlít\r\npředenější\r\nPředenice\r\npředenický\r\npředení\r\npředen\r\npředený\r\npředepínání\r\npředepisovanější\r\npředepisování\r\npředepisovaný\r\npředepisovat\r\npředepisující\r\npředepíši\r\npředepíšu\r\npředeprání\r\npředeprat\r\npředepsal\r\npředepsanější\r\npředepsanější\r\npředepsání\r\npředepsán\r\npředepsaný\r\npředepsáný\r\npředepsat\r\npředěrování\r\npředěrovaný\r\npředěrovat\r\npředesílat\r\npředeslal\r\npředeslání\r\npředeslaný\r\npředeslat\r\npředestilovanější\r\npředestilování\r\npředestilovaný\r\npředestilovat\r\npředestilovávání\r\npředestilovávaný\r\npředestilovávat\r\npředestíranější\r\npředestírání\r\npředestíraný\r\npředestírat\r\npředestoupení\r\npředestoupený\r\npředestoupit\r\npředestřenější\r\npředestření\r\npředestřený\r\npředestřít\r\npředešel\r\npředešlejší\r\npředešlu\r\npředešlý\r\npředešlý\r\npředevčírem\r\npředevším\r\npředezdění\r\npředezděný\r\npředezdít\r\npředeženu\r\npředfilosofický\r\npředfinancování\r\npředfinancovaný\r\npředfinancovat\r\npředfinancovávání\r\npředfinancovávaný\r\npředfinancovávat\r\npředformátování\r\npředformátovaný\r\npředformovací\r\npředformování\r\npředformovaný\r\npředformovat\r\npředhánějící\r\npředháněnější\r\npředhánění\r\npředháněný\r\npředhánět\r\npředhazování\r\npředhazovaný\r\npředhazovat\r\npředhazující\r\npředhistorický\r\npředhlídání\r\npředhlídaný\r\npředhlídat\r\npředhlodanější\r\npředhlodání\r\npředhlodaný\r\npředhlodat\r\npředhlodávání\r\npředhlodávaný\r\npředhlodávat\r\npředhodit\r\npředhodnocenější\r\npředhodnocení\r\npředhodnocený\r\npředhodnocovanější\r\npředhodnocování\r\npředhodnocovaný\r\npředhodnocovat\r\npředhodnocující\r\npředhodnotit\r\npředhonění\r\npředhoněný\r\npředhonit\r\npředhoří\r\npředhozenější\r\npředhození\r\npředhozený\r\npředhradí\r\npředhrudí\r\npředhůří\r\npředhusitský\r\npředcházající\r\npředcházející\r\npředcházenější\r\npředcházení\r\npředcházený\r\npředcházet\r\npředcházívat\r\npředchlazování\r\npředchozí\r\npředchozí\r\npředchůdce\r\npředchůdcův\r\npředchůdkyně\r\npředchůdkynin\r\npředchůdný\r\npředimensovaný\r\npředimenzování\r\npředimenzovaný\r\npředimenzovat\r\npředimenzovávání\r\npředimenzovávaný\r\npředimenzovávat\r\npředindustriální\r\nPředín\r\npředínský\r\npředinstalovanější\r\npředinstalování\r\npředinstalovaný\r\npředinstalovat\r\npředinstalovávání\r\npředinstalovávaný\r\npředinstalovávat\r\npředinstalující\r\npředisponování\r\npředisponovaný\r\npředisponovat\r\npředisponovávání\r\npředisponovávaný\r\npředisponovávat\r\npředivo\r\npředjarnější\r\npředjaří\r\npředjednající\r\npředjednanější\r\npředjednání\r\npředjednáno\r\npředjednaný\r\npředjednat\r\npředjednávací\r\npředjednávající\r\npředjednávanější\r\npředjednávání\r\npředjednávaný\r\npředjednávat\r\npředjedu\r\npředjel\r\npředjení\r\npředjetější\r\npředjet\r\npředjetí\r\npředjetý\r\npředjezdcův\r\npředjezdec\r\npředjímající\r\npředjímanější\r\npředjímání\r\npředjímaný\r\npředjímatelnější\r\npředjímatelný\r\npředjímat\r\npředjímavější\r\npředjímavý\r\npředjímka\r\npředjíždějící\r\npředjíždění\r\npředjížděný\r\npředjíždět\r\npředkázání\r\npředkládací\r\npředkladač\r\npředkládající\r\npředkládanější\r\npředkládání\r\npředkládaný\r\npředkladatelčin\r\npředkladatelka\r\npředkladatelský\r\npředkladatelství\r\npředkladatel\r\npředkladatelův\r\npředkládat\r\npředklánění\r\npředklánět\r\npředklasický\r\npředkličování\r\npředkličovaný\r\npředkličovat\r\npředklonění\r\npředkloněný\r\npředklon\r\npředklonit\r\npředklonka\r\npředkolo\r\npředkompenzace\r\npředkompenzační\r\npředkompilace\r\npředkompilátor\r\npředkompilování\r\npředkompilovaný\r\npředkompilovat\r\npředkompilovávání\r\npředkompilovávaný\r\npředkompilovávat\r\npředkoncilní\r\npředkonfigurovanější\r\npředkonfigurování\r\npředkonfigurovaný\r\npředkonfigurovat\r\npředkonfigurovávání\r\npředkonfigurovávaný\r\npředkonfigurovávat\r\npředkop\r\npředkopnout\r\npředkopnutí\r\npředkopnutý\r\npředkorodovaný\r\npředkousanější\r\npředkousání\r\npředkousaný\r\npředkousat\r\npředkousávající\r\npředkousávanější\r\npředkousávání\r\npředkousávaný\r\npředkousávat\r\npředkousnout\r\npředkousnutější\r\npředkousnutí\r\npředkousnutý\r\npředkousnutý\r\npředkoušu\r\npředkovací\r\npředkování\r\npředkovaný\r\npředkovat\r\npředkožka\r\npředkožkový\r\npředkrajování\r\npředkrajovaný\r\npředkrajovat\r\npředkrajovávání\r\npředkrajovávaný\r\npředkrajovávat\r\npředkreslenější\r\npředkreslení\r\npředkreslený\r\npředkreslit\r\npředkreslování\r\npředkreslovaný\r\npředkreslovat\r\npředkreslovávání\r\npředkreslovávaný\r\npředkreslovávat\r\npředkreslující\r\npředkrizový\r\npředkrm\r\npředkroucení\r\npředkroucený\r\npředkroutit\r\npředkřesťanský\r\npředkulení\r\npředkulený\r\npředkulit\r\npředkup\r\npředkupní\r\npředkus\r\npředkusovanější\r\npředkusování\r\npředkusovaný\r\npředkusovat\r\npředkusující\r\npředkutálení\r\npředkutálený\r\npředkutálet\r\npředkův\r\npředkvalifikační\r\npředkvartérní\r\npředledový\r\npředleštění\r\npředleštěný\r\npředleštit\r\npředletění\r\npředletěný\r\npředletět\r\npředletový\r\npředlézající\r\npředlézání\r\npředlézat\r\npředlezenější\r\npředlezení\r\npředlezený\r\npředlézt\r\npředlidský\r\npředlisek\r\npředlisovací\r\npředlisování\r\npředlisovaný\r\npředlisovat\r\npředlistopadový\r\nPředlitavský\r\npředlitavský\r\npředloha\r\npředlohový\r\npředloketní\r\npředloktí\r\npředloni\r\npředloňska\r\npředloňský\r\npředlouhý\r\npředložení\r\npředložený\r\npředložit\r\npředložka\r\npředložkový\r\npředlužení\r\npředlužený\r\npředlužit\r\npředmájový\r\npředmanželský\r\npředmarxistický\r\npředmarxističtější\r\npředmastit\r\npředmašťovat\r\npředmatematický\r\npředmaturitní\r\nPředměřice\r\npředměřický\r\npředměstí\r\npředměstský\r\npředmět\r\npředmětný\r\npředmětový\r\npředmexický\r\npředmexičtější\r\npředmíchání\r\npředmíchaný\r\npředmíchat\r\npředmíchávání\r\npředmíchávaný\r\npředmíchávat\r\npředmincovní\r\npředminulý\r\npředmlácení\r\npředmlácený\r\npředmlátit\r\npředmluva\r\npředmluvení\r\npředmluvený\r\npředmluvit\r\npředmnichovský\r\npředmnožení\r\npředmnožený\r\npředmnožit\r\npředmostí\r\npřednastavení\r\npřednastavený\r\npřednastavit\r\npřednastavovanější\r\npřednastavovaní\r\npřednastavování\r\npřednastavovaný\r\npřednastavovat\r\npřednášející\r\npřednášenější\r\npřednášení\r\npřednášený\r\npřednášet\r\npřednáška\r\npřednáškový\r\npřednedávnem\r\npřednedělní\r\npřednější\r\npřednemocniční\r\npřednesenější\r\npřednesení\r\npřednesený\r\npřednes\r\npřednesový\r\npřednést\r\npřednice\r\npřední\r\npřednosta\r\npřednostčin\r\npřednostka\r\npřednostnější\r\npřednostní\r\npřednostův\r\npřednožení\r\npřednožený\r\npřednožit\r\npřednožka\r\npřednožmo\r\npřednožování\r\npřednožovaný\r\npřednožovat\r\npředobraz\r\npředobrý\r\npředodjezdový\r\npředolympijský\r\npředoperační\r\npředostření\r\npředostřený\r\npředostřit\r\npředoucí\r\npředovka\r\npředozadní\r\npředparlament\r\npředpažení\r\npředpažený\r\npředpažit\r\npředpažování\r\npředpažovaný\r\npředpažovat\r\npředpéct\r\npředpečenější\r\npředpečení\r\npředpečený\r\npředpeklí\r\npředpěstování\r\npředpěstovaný\r\npředpěstovat\r\npředpětí\r\npředpínací\r\npředpínaný\r\npředpírání\r\npředpíraný\r\npředpírat\r\npředpírka\r\npředpis\r\npředpisný\r\npředpisování\r\npředpisovaný\r\npředpisovat\r\npředpisový\r\npředpisující\r\npředpjatější\r\npředpjatý\r\npředplácející\r\npředplacenější\r\npředplácenější\r\npředplacení\r\npředplácení\r\npředplacený\r\npředplácený\r\npředplácet\r\npředplatit\r\npředplatitelčin\r\npředplatitelka\r\npředplatitelský\r\npředplatitel\r\npředplatitelův\r\npředplatní\r\npředplatný\r\npředplést\r\npředpletení\r\npředpletený\r\npředplížení\r\npředplížit\r\npředplodina\r\npředpnout\r\npředpnutější\r\npředpnutí\r\npředpnutý\r\npředpojatější\r\npředpojatý\r\npředpokládající\r\npředpokládanější\r\npředpokládání\r\npředpokládaný\r\npředpokládat\r\npředpoklad\r\npředpoklad\r\npředpokladu\r\npředpokoj\r\npředpolí\r\npředpolitický\r\nPředpomořansko\r\npředpona\r\npředponový\r\npředporada\r\npředporážkový\r\npředporodní\r\npředposlední\r\npředposlední\r\npředposraný\r\npředpotopnější\r\npředpotopní\r\npředpovědění\r\npředpověděný\r\npředpovědět\r\npředpověditelnější\r\npředpověditelný\r\npředpověď\r\npředpovědmi\r\npředpovědní\r\npředpovězen\r\npředpovězený\r\npředpovídač\r\npředpovídačův\r\npředpovídající\r\npředpovídanější\r\npředpovídání\r\npředpovídaný\r\npředpovídat\r\npředpracovanější\r\npředpracování\r\npředpracovaný\r\npředpracovat\r\npředpracovávanější\r\npředpracovávání\r\npředpracovávaný\r\npředpracovávat\r\npředpranější\r\npředprání\r\npředpraný\r\npředprat\r\npředprázdninový\r\npředpražení\r\npředpražený\r\npředpražit\r\npředpremiéra\r\npředpremiérový\r\npředprezidentský\r\npředprivatizační\r\npředprodání\r\npředprodaný\r\npředprodat\r\npředprodávání\r\npředprodávaný\r\npředprodávat\r\npředprodejní\r\npředprodej\r\npředprogramování\r\npředprogramovaný\r\npředprogramovat\r\npředprogramovávání\r\npředprogramovávaný\r\npředprogramovávat\r\npředprojekt\r\npředprojektový\r\npředprostor\r\npředprovozní\r\npředprseň\r\npředpřádací\r\npředpřádání\r\npředpřádaný\r\npředpřádat\r\npředpřástovací\r\npředpřástování\r\npředpřástovaný\r\npředpřástovat\r\npředpřevratový\r\npředpříprava\r\npředpřítomný\r\npředradlička\r\npředrazit\r\npředráždění\r\npředrážděný\r\npředražení\r\npředražený\r\npředražit\r\npředrážka\r\npředražování\r\npředražovaný\r\npředražovat\r\npředrcení\r\npředregulace\r\npředrenesanční\r\npředrevoluční\r\npředrnkat\r\npředrobek\r\npředrovnání\r\npředrovnaný\r\npředrovnat\r\npředrovnávání\r\npředrovnávaný\r\npředrovnávat\r\npředrozhodovací\r\npředržení\r\npředržet\r\npředržování\r\npředržovat\r\npředřadění\r\npředřaděný\r\npředřadící\r\npředřadit\r\npředřaditelnější\r\npředřaditelný\r\npředřadník\r\npředřadný\r\npředřazenější\r\npředřazení\r\npředřazený\r\npředřazovanější\r\npředřazování\r\npředřazovaný\r\npředřazovat\r\npředřazovatelnější\r\npředřazovatelný\r\npředřečnice\r\npředřečník\r\npředřečníkův\r\npředředění\r\npředředěný\r\npředředit\r\npředříkání\r\npředříkaný\r\npředříkat\r\npředříkávač\r\npředříkávačův\r\npředříkávání\r\npředříkávaný\r\npředříkávat\r\npředříznout\r\npředříznutí\r\npředříznutý\r\npředsadit\r\npředsádka\r\npředsálí\r\npředsazení\r\npředsazený\r\npředsazování\r\npředsazovaný\r\npředsazovat\r\npředscéna\r\npředsedající\r\npředsedání\r\npředseda\r\npředsedat\r\npředsedávání\r\npředsedávat\r\npředsedkyně\r\npředsedkynin\r\npředsednický\r\npředsednictví\r\npředsednictvo\r\npředsedův\r\npředsekanější\r\npředsekání\r\npředsekaný\r\npředsekat\r\npředsekávání\r\npředsekávaný\r\npředsekávat\r\npředseťový\r\npředsevzal\r\npředsevzatý\r\npředsevzetí\r\npředsevzít\r\npředsezónní\r\npředsílat\r\npředsíňka\r\npředsíňový\r\npředsíň\r\npředsjezdový\r\npředskákanější\r\npředskákání\r\npředskákáno\r\npředskákaný\r\npředskákat\r\npředskakování\r\npředskakovat\r\npředskakovávání\r\npředskakovávaný\r\npředskakovávat\r\npředsklizňový\r\npředskočení\r\npředskočit\r\npředskokan\r\npředskokanův\r\npředslovanský\r\npředsmažení\r\npředsmažený\r\npředsmažit\r\npředsňatkový\r\npředsocialistický\r\npředsocialističtější\r\npředsoušecí\r\npředsoušení\r\npředsoušený\r\npředsoušet\r\npředsouvat\r\npředspartakiádní\r\npředstartovní\r\npředstátní\r\npředstava\r\npředstavec\r\npředstavenější\r\npředstavení\r\npředstavenstvo\r\npředstavený\r\npředstavit\r\npředstavitelčin\r\npředstavitelka\r\npředstavitelnější\r\npředstavitelný\r\npředstavitel\r\npředstavitelův\r\npředstavivý\r\npředstavovanější\r\npředstavování\r\npředstavovaný\r\npředstavovat\r\npředstavový\r\npředstavující\r\npředstih\r\npředstihnout\r\npředstihnutí\r\npředstihovanější\r\npředstihování\r\npředstihovaný\r\npředstihovat\r\npředstihový\r\npředstihující\r\npředstírající\r\npředstíranější\r\npředstírání\r\npředstíraný\r\npředstírat\r\npředstíravější\r\npředstíravý\r\npředstiženější\r\npředstižení\r\npředstižený\r\npředstižitelnější\r\npředstižitelný\r\npředstojný\r\npředstoupení\r\npředstoupený\r\npředstoupit\r\npředstrčení\r\npředstrčený\r\npředstrčit\r\npředstrkávání\r\npředstrkávaný\r\npředstrkávat\r\npředstrukturální\r\npředstupeň\r\npředstupínek\r\npředstupování\r\npředstupovat\r\npředstupující\r\npředsudečný\r\npředsudek\r\npředsudkový\r\npředsunout\r\npředsunovat\r\npředsunutější\r\npředsunutí\r\npředsunutý\r\npředsunutý\r\npředsušení\r\npředsušený\r\npředsušit\r\npředsušování\r\npředsušovaný\r\npředsušovat\r\npředsvatební\r\npředšít\r\npředšitější\r\npředšití\r\npředšitý\r\npředšitý\r\npředšívanější\r\npředšívání\r\npředšívaný\r\npředšívat\r\npředškoláček\r\npředškoláčkův\r\npředškolák\r\npředškolákův\r\npředškolní\r\npředtáčení\r\npředtáčený\r\npředtáčet\r\npředtáhnout\r\npředtáhnutí\r\npředtahovanější\r\npředtahování\r\npředtahovaný\r\npředtahovat\r\npředtahovávání\r\npředtahovávaný\r\npředtahovávat\r\npředtahující\r\npředtančení\r\npředtančící\r\npředtančit\r\npředtápějící\r\npředtápěnější\r\npředtápění\r\npředtápěný\r\npředtápět\r\npředtaženější\r\npředtažení\r\npředtažený\r\npředtažitelnější\r\npředtažitelný\r\npředtermínový\r\npředtest\r\npředtím\r\npředtisk\r\npředtisknout\r\npředtisknutí\r\npředtisknutý\r\npředtiskovat\r\npředtiskový\r\npředtištění\r\npředtištěný\r\npředtkalcovský\r\npředtočení\r\npředtočený\r\npředtočit\r\npředtransformační\r\npředtrávení\r\npředtrávený\r\npředtrávit\r\npředtrhající\r\npředtrhanější\r\npředtrhání\r\npředtrhaný\r\npředtrhat\r\npředtrhávající\r\npředtrhávanější\r\npředtrhávání\r\npředtrhávaný\r\npředtrhávat\r\npředtrhnout\r\npředtrhnutější\r\npředtrhnutí\r\npředtrhnutý\r\npředtržení\r\npředtržený\r\npředtřetihorní\r\npředtřídění\r\npředtříděný\r\npředtřídit\r\npředtřiďování\r\npředtřiďovaný\r\npředtřiďovat\r\npředtucha\r\npředtvarovací\r\npředtvarování\r\npředtvarovaný\r\npředtvarovat\r\npředúnorový\r\npředupanější\r\npředupání\r\npředupaný\r\npředupat\r\npředupávanější\r\npředupávání\r\npředupávaný\r\npředupávat\r\npředúprava\r\npředupravení\r\npředupravený\r\npředupravit\r\npředupravovaný\r\npředupravovat\r\npředupu\r\npředurčení\r\npředurčený\r\npředurčit\r\npředurčování\r\npředurčovaný\r\npředurčovat\r\npředurčující\r\npředusání\r\npředusat\r\npředusávání\r\npředusávat\r\npředváděcí\r\npředváděčka\r\npředvádějící\r\npředváděnější\r\npředvádění\r\npředváděný\r\npředvádět\r\npředvádivý\r\npředválečný\r\npředvánoční\r\npředvaření\r\npředvařený\r\npředvařit\r\npředvázanější\r\npředvázání\r\npředvázaný\r\npředvázat\r\npředvázávanější\r\npředvázávání\r\npředvázávaný\r\npředvázávat\r\npředvazovanější\r\npředvazování\r\npředvazovaný\r\npředvazovat\r\npředvazující\r\npředváži\r\npředvažovanější\r\npředvažování\r\npředvažovaný\r\npředvažovat\r\npředvažovatelnější\r\npředvažovatelný\r\npředvažující\r\npředvčerejší\r\npředvečer\r\npředvědecký\r\npředvedenější\r\npředvedení\r\npředveden\r\npředvedený\r\npředvedl\r\npředvědomý\r\npředvedu\r\npředvěký\r\npředvelkomoravský\r\npředvést\r\npředvětí\r\npředvídající\r\npředvídanější\r\npředvídání\r\npředvídaný\r\npředvídatelnější\r\npředvidatelný\r\npředvídatelný\r\npředvídat\r\npředvídavější\r\npředvídavý\r\npředvíkendový\r\npředvojenský\r\npředvojový\r\npředvoj\r\npředvolací\r\npředvolající\r\npředvolanější\r\npředvolání\r\npředvolánka\r\npředvolaný\r\npředvolat\r\npředvolávací\r\npředvolávanější\r\npředvolávání\r\npředvolávaný\r\npředvolávat\r\npředvolba\r\npředvolební\r\npředvolební\r\npředvolenější\r\npředvolení\r\npředvolený\r\npředvolič\r\npředvoličův\r\npředvolit\r\npředvrtání\r\npředvrtaný\r\npředvrtat\r\npředvrtávat\r\npředvstřik\r\npředvstupní\r\npředvýběrový\r\npředvybrání\r\npředvybraný\r\npředvybrat\r\npředvýchova\r\npředvýkrm\r\npředvyplněnější\r\npředvyplnění\r\npředvyplněný\r\npředvyplnit\r\npředvýrobní\r\npředvýtěrový\r\npředvývoj\r\npředzahrádka\r\npředzámčí\r\npředzápas\r\npředzásobení\r\npředzásobený\r\npředzásobit\r\npředzásobování\r\npředzásobovaný\r\npředzásobovat\r\npředzdění\r\npředzděný\r\npředzdít\r\npředzesilovač\r\npředzkouška\r\npředznamenanější\r\npředznamenání\r\npředznamenaný\r\npředznamenat\r\npředznamenávající\r\npředznamenávanější\r\npředznamenávání\r\npředznamenávaný\r\npředznamenávat\r\npředzpěvaččin\r\npředzpěvačka\r\npředzpěv\r\npředzpěvovat\r\npředzpívání\r\npředzpívat\r\npředzpívávat\r\npředzpracovanější\r\npředzpracování\r\npředzpracovaný\r\npředzpracovat\r\npředzpracující\r\npředzvěst\r\npředžaludek\r\npředžhavenější\r\npředžhavení\r\npředžhavený\r\npředžhavit\r\npředžvýkání\r\npředžvýkaný\r\npředžvýkat\r\npředžvýkávat\r\npřeevidování\r\npřeexponování\r\npřeexponovaný\r\npřeexponovat\r\npřefakturace\r\npřefakturování\r\npřefakturovaný\r\npřefakturovat\r\npřefičení\r\npřefičet\r\npřefidlat\r\npřefiknout\r\npřefiltrovanější\r\npřefiltrování\r\npřefiltrovaný\r\npřefiltrovat\r\npřefiltrovávat\r\npřeformátování\r\npřeformátovaný\r\npřeformátovat\r\npřeformátovávání\r\npřeformátovávaný\r\npřeformátovávat\r\npřeformování\r\npřeformovaný\r\npřeformovat\r\npřeformovávání\r\npřeformovávaný\r\npřeformovávat\r\npřeformulace\r\npřeformulování\r\npřeformulovaný\r\npřeformulovat\r\npřeformulovávání\r\npřeformulovávaný\r\npřeformulovávat\r\npřefotografování\r\npřefotografovaný\r\npřefotografovat\r\npřefotografovávání\r\npřefotografovávaný\r\npřefotografovávat\r\npřefrčet\r\npřefrnknout\r\npřefrnknutí\r\npřefučení\r\npřefučet\r\npřefukování\r\npřefukovaný\r\npřefukovat\r\npřefukovávání\r\npřefukovávaný\r\npřefukovávat\r\npřegenerovanější\r\npřegenerování\r\npřegenerovaný\r\npřegenerovat\r\npřehádanější\r\npřehádání\r\npřehádaný\r\npřehádat\r\npřeháněcí\r\npřehánějící\r\npřeháněnější\r\npřehánění\r\npřeháněný\r\npřehánět\r\npřeháňka\r\npřeháňkový\r\npřeházenější\r\npřeházení\r\npřeházený\r\npřeházet\r\npřehazovací\r\npřehazovačka\r\npřehazování\r\npřehazovaný\r\npřehazovat\r\npřehazující\r\npřehlásit\r\npřehláska\r\npřehláskování\r\npřehláskovaný\r\npřehláskovat\r\npřehlasovaní\r\npřehlasování\r\npřehlasovaný\r\npřehlasovat\r\npřehlášenější\r\npřehlášení\r\npřehlášený\r\npřehlašovanější\r\npřehlašovaní\r\npřehlašování\r\npřehlašovaný\r\npřehlašovat\r\npřehlašovávat\r\npřehlavičkování\r\npřehlavičkovaný\r\npřehlavičkovat\r\npřehlazení\r\npřehlazovací\r\npřehlazování\r\npřehlazovaný\r\npřehlazovat\r\npřehlcení\r\npřehlcený\r\npřehlcování\r\npřehlcovaný\r\npřehlcovat\r\npřehlcovávání\r\npřehlcovávaný\r\npřehlcovávat\r\npřehlédat\r\npřehled\r\npřehlednější\r\npřehlédnout\r\npřehlédnul\r\npřehlédnutější\r\npřehlédnutelnější\r\npřehlédnutelný\r\npřehlédnutí\r\npřehlédnutý\r\npřehlédnutý\r\npřehledný\r\npřehledovější\r\npřehledový\r\npřehlídat\r\npřehlídka\r\npřehlídkovější\r\npřehlídkový\r\npřehlídnout\r\npřehlídnul\r\npřehlížecí\r\npřehlížející\r\npřehlíženější\r\npřehlížení\r\npřehlížený\r\npřehlížet\r\npřehlíživější\r\npřehlíživý\r\npřehlodanější\r\npřehlodání\r\npřehlodaný\r\npřehlodat\r\npřehlodávání\r\npřehlodávaný\r\npřehlodávat\r\npřehltit\r\npřehluboký\r\npřehlušení\r\npřehlušený\r\npřehlušit\r\npřehlušování\r\npřehlušovaný\r\npřehlušovat\r\npřehmatávání\r\npřehmatávaný\r\npřehmatávat\r\npřehmat\r\npřehmátnout\r\npřehmátnutí\r\npřehnal\r\npřehnanější\r\npřehnání\r\npřehnán\r\npřehnaný\r\npřehnat\r\npřehnojený\r\npřehnout\r\npřehnutí\r\npřehnutý\r\npřehoblování\r\npřehoblovaný\r\npřehoblovat\r\npřehoblovávání\r\npřehoblovávaný\r\npřehoblovávat\r\npřehodit\r\npřehodnocenější\r\npřehodnocení\r\npřehodnocený\r\npřehodnocovanější\r\npřehodnocování\r\npřehodnocovaný\r\npřehodnocovat\r\npřehodnocující\r\npřehodnotit\r\npřehopsání\r\npřehopsat\r\npřehořívání\r\npřehořívaný\r\npřehořívat\r\nPřehořov\r\npřehořovský\r\npřehoupat\r\npřehoupávání\r\npřehoupávaný\r\npřehoupávat\r\npřehoupnout\r\npřehoupnutí\r\npřehoustlejší\r\npřehozenější\r\npřehození\r\npřehozený\r\npřehoz\r\npřehrabanější\r\npřehrabání\r\npřehrabaný\r\npřehrabat\r\npřehrabávání\r\npřehrabávaný\r\npřehrabávat\r\npřehrabování\r\npřehrabovaný\r\npřehrabovat\r\npřehrabovávání\r\npřehrabovávaný\r\npřehrabovávat\r\npřehrada\r\npřehradit\r\npřehrádka\r\npřehradní\r\npřehranější\r\npřehrání\r\npřehraný\r\npřehrát\r\npřehrávací\r\npřehrávač\r\npřehrávající\r\npřehrávanější\r\npřehrávání\r\npřehrávaný\r\npřehrávat\r\npřehrávka\r\npřehrazení\r\npřehrazený\r\npřehrazování\r\npřehrazovaný\r\npřehrazovat\r\npřehrkat\r\npřehrnout\r\npřehrnovanější\r\npřehrnování\r\npřehrnovaný\r\npřehrnovat\r\npřehrnující\r\npřehrnutí\r\npřehrnutý\r\npřehršel\r\npřehršle\r\npřehršlemi\r\npřehršli\r\npřehršlí\r\npřehršlích\r\npřehršlím\r\npřehryzající\r\npřehryzanější\r\npřehryzání\r\npřehryzaný\r\npřehryzat\r\npřehryzávání\r\npřehryzávaný\r\npřehryzávat\r\npřehřání\r\npřehřát\r\npřehřátější\r\npřehřátí\r\npřehřátý\r\npřehřívající\r\npřehřívání\r\npřehřívaný\r\npřehřívat\r\npřehuhlání\r\npřehuhlaný\r\npřehuhlat\r\npřehuhňat\r\npřehupkovat\r\npřehustit\r\npřehušťování\r\npřehušťovaný\r\npřehušťovat\r\npřehvízdání\r\npřehvízdaný\r\npřehvízdat\r\npřehvízdnout\r\npřehvízdnutí\r\npřehvízdnutý\r\npřehýbací\r\npřehýbající\r\npřehýbanější\r\npřehýbání\r\npřehýbaný\r\npřehýbat\r\npřehyb\r\nPřehýšov\r\npřehýšovský\r\npřecházející\r\npřecházenější\r\npřecházení\r\npřecházený\r\npřecházet\r\npřecházívat\r\npřechladit\r\npřechlazenější\r\npřechlazení\r\npřechlazený\r\npřechlazovat\r\npřechlorovanější\r\npřechlorování\r\npřechlorovaný\r\npřechlorovat\r\npřechod\r\npřechodit\r\npřechodka\r\npřechodnější\r\npřechodník\r\npřechodníkový\r\npřechodný\r\npřechodový\r\npřechování\r\npřechovaný\r\npřechovat\r\npřechovávaččin\r\npřechovávačka\r\npřechovávač\r\npřechovávačův\r\npřechovávání\r\npřechovávaný\r\npřechovavatelčin\r\npřechovávatelčin\r\npřechovavatelka\r\npřechovávatelka\r\npřechovavatel\r\npřechovávatel\r\npřechovavatelův\r\npřechovávatelův\r\npřechovávat\r\npřechození\r\npřechozený\r\npřechválení\r\npřechválený\r\npřechválit\r\npřechýlení\r\npřechýlený\r\npřechýlit\r\npřechylovanější\r\npřechylování\r\npřechylovaný\r\npřechylovat\r\npřechylovávání\r\npřechylovávaný\r\npřechylovávat\r\npřechylující\r\npřechytračení\r\npřechytračený\r\npřechytračit\r\npřeindexování\r\npřeindexovaný\r\npřeindexovat\r\npřeinstalace\r\npřeinstalovanější\r\npřeinstalování\r\npřeinstalovaný\r\npřeinstalovat\r\npřeinstalovávání\r\npřeinstalovávaný\r\npřeinstalovávat\r\npřeinstalující\r\npřeinstrumentování\r\npřeinstrumentovaný\r\npřeinstrumentovat\r\npřeinzerovaný\r\npřejal\r\npřejásanější\r\npřejásání\r\npřejásaný\r\npřejásat\r\npřejatější\r\npřejat\r\npřejatý\r\npřejda\r\npřejdu\r\npřejedenější\r\npřejedení\r\npřejedený\r\npřejedu\r\npřejel\r\npřejemnělejší\r\npřejemnělý\r\npřejení\r\npřejetější\r\npřejet\r\npřejetí\r\npřejetý\r\npřejezd\r\npřejezdový\r\npřející\r\npřejícnější\r\npřejícný\r\npřejídající\r\npřejídání\r\npřejídaný\r\npřejídat\r\npřejídávání\r\npřejídávaný\r\npřejídávat\r\npřejímací\r\npřejímající\r\npřejímanější\r\npřejímání\r\npřejímaný\r\npřejímatelnější\r\npřejímatelný\r\npřejimatel\r\npřejimatelův\r\npřejímat\r\npřejímka\r\npřejíst\r\npřejít\r\npřejití\r\npřejíždějící\r\npřejíždění\r\npřejížděný\r\npřejíždět\r\npřejmenovanější\r\npřejmenování\r\npřejmenovaný\r\npřejmenovat\r\npřejmenovávání\r\npřejmenovávaný\r\npřejmenovávat\r\npřejmout\r\npřejmu\r\npřejmutí\r\npřekalkulování\r\npřekalkulovaný\r\npřekalkulovat\r\npřekalkulovávání\r\npřekalkulovávaný\r\npřekalkulovávat\r\npřekapanější\r\npřekapání\r\npřekapaný\r\npřekapat\r\npřekapávač\r\npřekapávání\r\npřekapávaný\r\npřekapávat\r\npřekapitalizování\r\npřekapitalizovaný\r\npřekapitalizovat\r\npřekapování\r\npřekapovaný\r\npřekapovat\r\npřekapu\r\npřekartáčování\r\npřekartáčovaný\r\npřekartáčovat\r\npřekategorizovat\r\npřekazit\r\npřekážející\r\npřekažení\r\npřekážení\r\npřekažený\r\npřekážet\r\npřekážkářčin\r\npřekážkářka\r\npřekážkářský\r\npřekážkář\r\npřekážkářův\r\npřekážka\r\npřekážkový\r\npřekecání\r\npřekecat\r\npřekládací\r\npřekladačový\r\npřekladač\r\npřekládající\r\npřekládanější\r\npřekládání\r\npřekládaný\r\npřekladatelčin\r\npřekladatelka\r\npřekladatelnější\r\npřekladatelný\r\npřekladatelský\r\npřekladatelství\r\npřekladatel\r\npřekladatelův\r\npřekládat\r\npřeklad\r\npřeklad\r\npřekladiště\r\npřekládka\r\npřekládkový\r\npřekladní\r\npřekladovější\r\npřekladový\r\npřeklánění\r\npřeklánět\r\npřeklápěcí\r\npřeklápění\r\npřeklápěný\r\npřeklápět\r\npřeklasifikování\r\npřeklasifikovaný\r\npřeklasifikovat\r\npřeklasifikovávání\r\npřeklasifikovávaný\r\npřeklasifikovávat\r\npřeklenout\r\npřeklenovací\r\npřeklenování\r\npřeklenovaný\r\npřeklenovat\r\npřeklenující\r\npřeklenutelnější\r\npřeklenutelný\r\npřeklenutí\r\npřeklenutý\r\npřeklepanější\r\npřeklepání\r\npřeklepaný\r\npřeklepat\r\npřeklepávající\r\npřeklepávanější\r\npřeklepávání\r\npřeklepávaný\r\npřeklepávat\r\npřeklep\r\npřeklepnout\r\npřeklepnutější\r\npřeklepnutí\r\npřeklepnutý\r\npřeklepnutý\r\npřeklepový\r\npřekliknout\r\npřekliknutí\r\npřeklimbání\r\npřeklimbaný\r\npřeklimbat\r\npřeklimbávání\r\npřeklimbávat\r\npřeklížený\r\npřekližka\r\npřekližkový\r\npřeklofat\r\npřekloněnější\r\npřeklonění\r\npřekloněný\r\npřeklonit\r\npřeklopek\r\npřeklopení\r\npřeklopený\r\npřeklopit\r\npřeklopný\r\npřeklopýtání\r\npřeklopýtaný\r\npřeklopýtat\r\npřeklouzání\r\npřeklouzat\r\npřeklovávání\r\npřeklovávaný\r\npřeklovávat\r\npřeklusání\r\npřeklusat\r\npřekmitávání\r\npřekmitávaný\r\npřekmitávat\r\npřekmitnout\r\npřekmitnutí\r\npřeknihovaný\r\npřekocení\r\npřekocený\r\npřekódovací\r\npřekódování\r\npřekódovaný\r\npřekódovat\r\npřekódovávání\r\npřekódovávaný\r\npřekódovávat\r\npřekodrcání\r\npřekodrcaný\r\npřekodrcat\r\npřekolkovat\r\npřekombinovanější\r\npřekombinování\r\npřekombinovaný\r\npřekompilování\r\npřekompilovaný\r\npřekompilovat\r\npřekompilovávání\r\npřekompilovávaný\r\npřekompilovávat\r\npřekomplikovaný\r\npřekomponování\r\npřekomponovaný\r\npřekomponovat\r\npřekomponovávání\r\npřekomponovávaný\r\npřekomponovávat\r\npřekonanější\r\npřekonání\r\npřekonaný\r\npřekonatelnější\r\npřekonatelný\r\npřekonat\r\npřekonávající\r\npřekonávanější\r\npřekonávání\r\npřekonávaný\r\npřekonávat\r\npřekonfigurovanější\r\npřekonfigurování\r\npřekonfigurovaný\r\npřekonfigurovat\r\npřekonfigurovávání\r\npřekonfigurovávaný\r\npřekonfigurovávat\r\npřekonstruování\r\npřekonstruovaný\r\npřekonstruovat\r\npřekonstruovávání\r\npřekonstruovávaný\r\npřekonstruovávat\r\npřekontrolování\r\npřekontrolovaný\r\npřekontrolovat\r\npřekontrolovávání\r\npřekontrolovávaný\r\npřekontrolovávat\r\npřekonvertovanější\r\npřekonvertování\r\npřekonvertovaný\r\npřekonvertovat\r\npřekonvertovávání\r\npřekonvertovávaný\r\npřekonvertovávat\r\npřekopanější\r\npřekopání\r\npřekopaný\r\npřekopat\r\npřekopávání\r\npřekopávaný\r\npřekopávat\r\npřekop\r\npřekopírovanější\r\npřekopírování\r\npřekopírovaný\r\npřekopírovat\r\npřekopírovávanější\r\npřekopírovávání\r\npřekopírovávaný\r\npřekopírovávat\r\npřekopnout\r\npřekopnutí\r\npřekopnutý\r\npřekormidlování\r\npřekormidlovaný\r\npřekormidlovat\r\npřekořeněnější\r\npřekořenění\r\npřekořeněný\r\npřekořenit\r\npřekot\r\npřekotit\r\npřekotnější\r\npřekotný\r\npřekouknout\r\npřekouknutí\r\npřekoulení\r\npřekoulený\r\npřekoulet\r\npřekousanější\r\npřekousání\r\npřekousaný\r\npřekousat\r\npřekousávající\r\npřekousávanější\r\npřekousávání\r\npřekousávaný\r\npřekousávat\r\npřekousnout\r\npřekousnutější\r\npřekousnutelný\r\npřekousnutí\r\npřekousnutý\r\npřekousnutý\r\npřekoušu\r\npřekout\r\npřekovanější\r\npřekování\r\npřekovaný\r\npřekovat\r\npřekovávání\r\npřekovávaný\r\npřekovávat\r\npřekovu\r\npřekračování\r\npřekračovaný\r\npřekračovat\r\npřekračující\r\npřekrájet\r\npřekrajování\r\npřekrajovaný\r\npřekrajovat\r\npřekrajovávání\r\npřekrajovávaný\r\npřekrajovávat\r\npřekrásný\r\npřekreslenější\r\npřekreslení\r\npřekreslený\r\npřekreslit\r\npřekreslování\r\npřekreslovaný\r\npřekreslovat\r\npřekreslovávání\r\npřekreslovávaný\r\npřekreslovávat\r\npřekreslující\r\npřekrmení\r\npřekrmený\r\npřekrmit\r\npřekrmování\r\npřekrmovaný\r\npřekrmovat\r\npřekročení\r\npřekročený\r\npřekročit\r\npřekročitelnější\r\npřekročitelný\r\npřekropení\r\npřekropený\r\npřekropit\r\npřekroucenější\r\npřekroucení\r\npřekroucený\r\npřekroutit\r\npřekroužení\r\npřekroužit\r\npřekrucování\r\npřekrucovaný\r\npřekrucovat\r\npřekrucovávání\r\npřekrucovávaný\r\npřekrucovávat\r\npřekrvenější\r\npřekrvení\r\npřekrvený\r\npřekrvit\r\npřekrystalizování\r\npřekrystalizovaný\r\npřekrystalizovat\r\npřekrystalování\r\npřekrystalovaný\r\npřekrystalovat\r\npřekrýt\r\npřekrytější\r\npřekrytelnější\r\npřekrytelný\r\npřekrytí\r\npřekrytý\r\npřekrytý\r\npřekrývací\r\npřekrývající\r\npřekrývanější\r\npřekrývání\r\npřekrývaný\r\npřekrývatelnější\r\npřekrývatelný\r\npřekrývat\r\npřekryv\r\npřekrývka\r\npřekryvný\r\npřekryvový\r\npřekřičení\r\npřekřičený\r\npřekřičet\r\npřekřiknout\r\npřekřikování\r\npřekřikovaný\r\npřekřikovat\r\npřekřikovávání\r\npřekřikovávaný\r\npřekřikovávat\r\npřekřížení\r\npřekřížený\r\npřekřížit\r\npřekřižování\r\npřekřižovaný\r\npřekřižovat\r\npřekřtění\r\npřekřtěný\r\npřekřtít\r\npřekuckání\r\npřekuckaný\r\npřekuckat\r\npřekulení\r\npřekulený\r\npřekulhanější\r\npřekulhání\r\npřekulhaný\r\npřekulhat\r\npřekulhávanější\r\npřekulhávání\r\npřekulhávaný\r\npřekulhávat\r\npřekulit\r\npřekultivovaný\r\npřekupník\r\npřekupníkův\r\npřekupování\r\npřekupovaný\r\npřekupovat\r\npřekusovanější\r\npřekusování\r\npřekusovaný\r\npřekusovat\r\npřekusující\r\npřekutálení\r\npřekutálený\r\npřekutálet\r\npřekutí\r\npřekutý\r\npřekvalifikování\r\npřekvalifikovaný\r\npřekvalifikovat\r\npřekvalifikovávání\r\npřekvalifikovávaný\r\npřekvalifikovávat\r\npřekvapenější\r\npřekvapení\r\npřekvapený\r\npřekvapit\r\npřekvapivější\r\npřekvapivý\r\npřekvápko\r\npřekvapování\r\npřekvapovaný\r\npřekvapovat\r\npřekvapující\r\npřekvasit\r\npřekvašení\r\npřekvašený\r\npřekvašování\r\npřekvašovaný\r\npřekvašovat\r\npřekynout\r\npřekypění\r\npřekypěný\r\npřekypět\r\npřekypování\r\npřekypovat\r\npřekypující\r\npřekyselení\r\npřekytování\r\npřekytovaný\r\npřekytovat\r\npřeladění\r\npřeladěný\r\npřeladit\r\npřelaďování\r\npřelaďovaný\r\npřelaďovat\r\npřelakování\r\npřelakovaný\r\npřelakovat\r\npřelakovávání\r\npřelakovávaný\r\npřelakovávat\r\npřelámání\r\npřelámaný\r\npřelámat\r\npřelaminovat\r\npřelamovat\r\npřelanaření\r\npřelanařit\r\npřelanění\r\npřelaněný\r\npřelanit\r\npřelaňování\r\npřelaňovaný\r\npřelaňovat\r\npřelaskavý\r\npřeléčení\r\npřeléčený\r\npřeléčit\r\npřelepení\r\npřelepený\r\npřelep\r\npřelepit\r\npřelepka\r\npřelepování\r\npřelepovaný\r\npřelepovat\r\npřeleštění\r\npřeleštěný\r\npřeleštit\r\npřelétající\r\npřelétání\r\npřelétaný\r\npřelétat\r\npřelétávající\r\npřelétávání\r\npřelétávat\r\npřelétavější\r\npřelétavý\r\npřeletění\r\npřeletěný\r\npřeletět\r\npřelet\r\npřelétnout\r\npřelétnutí\r\npřeletování\r\npřeletovaný\r\npřeletovat\r\npřeletový\r\npřeletující\r\npřelévající\r\npřelévání\r\npřelévaný\r\npřelévat\r\npřelévavý\r\npřelézající\r\npřelézanější\r\npřelézání\r\npřelézaný\r\npřelézat\r\npřelezenější\r\npřelezení\r\npřelezený\r\npřelézt\r\npřeleženější\r\npřeležení\r\npřeležet\r\npřelhal\r\npřelhanější\r\npřelhaní\r\npřelhání\r\npřelhán\r\npřelhaný\r\npřelháný\r\npřelhat\r\npřelhávanější\r\npřelhávaní\r\npřelhávání\r\npřelhávaný\r\npřelhávat\r\npřelicencování\r\npřelicencovaný\r\npřelicencovat\r\npřelíčení\r\npřelíčený\r\npřelíčit\r\npřelidněnější\r\npřelidnění\r\npřelidněný\r\npřelidnit\r\npřelidňovat\r\npřelinkovanější\r\npřelinkování\r\npřelinkovaný\r\npřelinkovat\r\npřelinkovávání\r\npřelinkovávaný\r\npřelinkovávat\r\npřelisování\r\npřelisovaný\r\npřelisovat\r\npřelisovávat\r\npřelítání\r\npřelítaný\r\npřelítat\r\npřelít\r\npřelití\r\npřelítnout\r\npřelítnutí\r\npřelit\r\npřelitý\r\npřelívanější\r\npřelívání\r\npřelívaný\r\npřelívat\r\npřeliv\r\npřelíznout\r\npřelíznutí\r\npřelíznutý\r\npřelobbování\r\npřelobbovaný\r\npřelobbovat\r\npřelobování\r\npřelobovaný\r\npřelobovat\r\npřelomenější\r\npřelomení\r\npřelomený\r\npřelom\r\npřelomit\r\npřelomový\r\npřelosování\r\npřelosovaný\r\npřelosovat\r\nPřelouč\r\npřeloučský\r\npřeloudání\r\npřeloudat\r\npřelouskání\r\npřelouskaný\r\npřelouskat\r\npřelouskávání\r\npřelouskávaný\r\npřelouskávat\r\npřelovování\r\npřelovovaný\r\npřelovovat\r\npřeložení\r\npřeložený\r\npřeložit\r\npřeložitelnější\r\npřeložitelný\r\npřeložka\r\npřelstění\r\npřelstěný\r\npřelstít\r\npřelud\r\npřeludný\r\npřeludový\r\npřelžu\r\npřemáhající\r\npřemáhanější\r\npřemáhání\r\npřemáhaný\r\npřemáhat\r\npřemáchat\r\npřemáchnout\r\npřemalování\r\npřemalovaný\r\npřemalovat\r\npřemalovávání\r\npřemalovávaný\r\npřemalovávat\r\npřemapování\r\npřemapovaný\r\npřemapovat\r\npřemaskování\r\npřemastit\r\npřemašťovat\r\npřemazanější\r\npřemazání\r\npřemazaný\r\npřemazat\r\npřemazávající\r\npřemazávání\r\npřemazávaný\r\npřemazávat\r\npřemáznout\r\npřemáznutí\r\npřemáznutý\r\nPřemek\r\npřemelu\r\npřeměna\r\npřeměnější\r\npřeměněnější\r\npřeměnění\r\npřeměněný\r\npřeměnit\r\npřeměnitelnější\r\npřeměnitelný\r\npřeměňovanější\r\npřeměňování\r\npřeměňovaný\r\npřeměňovat\r\npřeměňovávat\r\npřeměňující\r\npřeměřenější\r\npřeměření\r\npřeměřený\r\npřeměřit\r\npřeměřování\r\npřeměřovaný\r\npřeměřovat\r\npřeměřovávat\r\npřemést\r\npřemetení\r\npřemet\r\npřemíchání\r\npřemíchaný\r\npřemíchat\r\npřemíchávání\r\npřemíchávaný\r\npřemíchávat\r\npřemílání\r\npřemílaný\r\npřemílat\r\npřemilý\r\npřemíra\r\npřemístěnější\r\npřemístění\r\npřemístěný\r\npřemístit\r\npřemístitelnější\r\npřemístitelný\r\npřemisťme\r\npřemisť\r\npřemisťovanější\r\npřemísťovanější\r\npřemisťování\r\npřemísťování\r\npřemisťovaný\r\npřemísťovaný\r\npřemisťovat\r\npřemísťovat\r\npřemisťte\r\npřemisťující\r\npřemísťující\r\npřemítající\r\npřemítanější\r\npřemítání\r\npřemítaný\r\npřemítat\r\npřemítavější\r\npřemítavý\r\npřemítnout\r\npřemítnutější\r\npřemítnutí\r\npřemítnutý\r\npřemítnutý\r\nPřemkův\r\npřemlácení\r\npřemlácený\r\npřemlátit\r\npřemlel\r\npřemlení\r\npřemletější\r\npřemletí\r\npřemlet\r\npřemletý\r\npřemletý\r\npřemlít\r\npřemlouvání\r\npřemlouvaný\r\npřemlouvat\r\npřemluvení\r\npřemluvený\r\npřemluvit\r\npřemnohý\r\npřemnožení\r\npřemnožený\r\npřemnožit\r\npřemnožovací\r\npřemnožování\r\npřemnožovaný\r\npřemnožovat\r\npřemoci\r\npřemoct\r\npřemočení\r\npřemočený\r\npřemočit\r\npřemodulování\r\npřemontování\r\npřemontovaný\r\npřemontovat\r\npřemontovávání\r\npřemontovávaný\r\npřemontovávat\r\npřemoření\r\npřemostění\r\npřemostěný\r\npřemostit\r\npřemostitelný\r\npřemosťování\r\npřemosťovaný\r\npřemosťovat\r\npřemosťující\r\npřemotat\r\npřemoudřelý\r\npřemozme\r\npřemoz\r\npřemozte\r\npřemoženější\r\npřemožení\r\npřemožen\r\npřemožený\r\npřemožitelčin\r\npřemožitelka\r\npřemožitelnější\r\npřemožitelný\r\npřemožitel\r\npřemožitelův\r\npřemrštěnější\r\npřemrštěný\r\npřemrzání\r\npřemrzat\r\npřemrzlý\r\npřemrznout\r\npřemrznutí\r\npřemrznutý\r\nPřemyslav\r\npřemyslet\r\npřemyslit\r\npřemyslovcův\r\npřemyslovec\r\nPřemyslovice\r\npřemyslovický\r\npřemyslovka\r\nPřemyslovna\r\npřemyslovský\r\nPřemysl\r\nPřemysl\r\nPřemyslův\r\npřemýšlející\r\npřemýšlení\r\npřemyšlen\r\npřemýšlet\r\npřemýšlivější\r\npřemýšlivý\r\npřenádherný\r\npřenáhlení\r\npřenáhlený\r\npřenáramný\r\npřenastavení\r\npřenastavený\r\npřenastavit\r\npřenastavovanější\r\npřenastavovaní\r\npřenastavování\r\npřenastavovaný\r\npřenastavovat\r\npřenášecí\r\npřenašeččin\r\npřenášeččin\r\npřenašečka\r\npřenášečka\r\npřenašečový\r\npřenášeč\r\npřenašeč\r\npřenašečův\r\npřenášející\r\npřenášenější\r\npřenášení\r\npřenášený\r\npřenášet\r\npřendání\r\npřendaný\r\npřendat\r\npřendávanější\r\npřendavání\r\npřendávání\r\npřendávaný\r\npřendavat\r\npřendávat\r\npřenechanější\r\npřenechání\r\npřenechaný\r\npřenechat\r\npřenechávající\r\npřenechávanější\r\npřenechávání\r\npřenechávaný\r\npřenechávat\r\npřenechme\r\npřenech\r\npřenechte\r\npřenesenější\r\npřenesení\r\npřenesený\r\npřenést\r\npření\r\npřenocování\r\npřenocovat\r\npřenocovávání\r\npřenocovávat\r\npřenos\r\npřenosit\r\npřenositelnější\r\npřenositelný\r\npřenoska\r\npřenosnější\r\npřenosný\r\npřenosový\r\npřenosuschopný\r\npřenošení\r\npřenošený\r\npřeobjednání\r\npřeobjednaný\r\npřeobjednat\r\npřeobjednávání\r\npřeobjednávaný\r\npřeobjednávat\r\npřeobsadit\r\npřeobsazení\r\npřeobsazený\r\npřeočkování\r\npřeočkovaný\r\npřeočkovat\r\npřeočkovávání\r\npřeočkovávaný\r\npřeočkovávat\r\npřeochotný\r\npřeonačit\r\npřeorání\r\npřeoraný\r\npřeorat\r\npřeorávání\r\npřeorávaný\r\npřeorávat\r\npřeorganizování\r\npřeorganizovaný\r\npřeorganizovat\r\npřeorganizovávat\r\npřeorientování\r\npřeorientovaný\r\npřeorientovat\r\npřeorientovávající\r\npřeorientovávání\r\npřeorientovávaný\r\npřeorientovávat\r\npřeostření\r\npřeostřený\r\npřeostřit\r\npřeostřování\r\npřeostřovaný\r\npřeostřovat\r\npřepadající\r\npřepadanější\r\npřepadání\r\npřepadaný\r\npřepadat\r\npřepadávání\r\npřepadávaný\r\npřepadávat\r\npřepadení\r\npřepaden\r\npřepadený\r\npřepad\r\npřepadlejší\r\npřepádlovat\r\npřepadlý\r\npřepadnout\r\npřepadnutí\r\npřepadový\r\npřepajdání\r\npřepajdat\r\npřepájení\r\npřepájený\r\npřepájet\r\npřepakování\r\npřepakovaný\r\npřepakovat\r\npřepálenější\r\npřepálení\r\npřepálený\r\npřepálit\r\npřepalovací\r\npřepalovanější\r\npřepalovaní\r\npřepalování\r\npřepalovaný\r\npřepalovat\r\npřepalovávání\r\npřepalovávaný\r\npřepalovávat\r\npřepalující\r\npřeparcelování\r\npřeparcelovaný\r\npřeparcelovat\r\npřeparcelovávání\r\npřeparcelovávaný\r\npřeparcelovávat\r\npřeparkování\r\npřeparkovaný\r\npřeparkovat\r\npřeparkovávání\r\npřeparkovávaný\r\npřeparkovávat\r\npřepásanější\r\npřepásání\r\npřepásaný\r\npřepásatelnější\r\npřepásatelný\r\npřepásat\r\npřepásávání\r\npřepásávaný\r\npřepásávat\r\npřepasírování\r\npřepatrovaný\r\npřepažení\r\npřepažený\r\npřepažit\r\npřepážka\r\npřepážkový\r\npřepažování\r\npřepažovaný\r\npřepažovat\r\npřepéct\r\npřepečenější\r\npřepečení\r\npřepečený\r\npřepečlivý\r\npřepékání\r\npřepékaný\r\npřepékat\r\npřepěnění\r\npřepěněný\r\npřepěnit\r\npřepěňování\r\npřepěňovat\r\npřepepření\r\npřepepřený\r\npřepepřit\r\nPřepeře\r\nPřepeřemi\r\nPřepeří\r\nPřepeřích\r\nPřepeřím\r\npřepestrý\r\npřepětí\r\npřepěťový\r\npřepevný\r\npřepíchnout\r\npřepíchnutí\r\npřepíchnutý\r\npřepichování\r\npřepichovaný\r\npřepichovat\r\npřepíjení\r\npřepíjený\r\npřepíjet\r\npřepilotovávání\r\npřepilotovávaný\r\npřepilotovávat\r\npřepilování\r\npřepilovaný\r\npřepilovat\r\npřepínací\r\npřepínač\r\npřepínající\r\npřepínání\r\npřepínaný\r\npřepínatelnější\r\npřepínatelný\r\npřepínat\r\npřepírání\r\npřepíraný\r\npřepírat\r\npřepis\r\npřepískanější\r\npřepískání\r\npřepískaný\r\npřepískat\r\npřepísknout\r\npřepisovací\r\npřepisovanější\r\npřepisování\r\npřepisovaný\r\npřepisovat\r\npřepisovatelný\r\npřepisový\r\npřepisující\r\npřepíši\r\npřepíšu\r\npřepít\r\npřepití\r\npřepit\r\npřepižlání\r\npřepižlaný\r\npřepižlat\r\npřepjatější\r\npřepjatý\r\npřepjatý\r\npřeplácání\r\npřeplácaný\r\npřeplácat\r\npřeplácející\r\npřeplacenější\r\npřeplácenější\r\npřeplacení\r\npřeplácení\r\npřeplacený\r\npřeplácený\r\npřeplácet\r\npřeplachtění\r\npřeplachtit\r\npřeplánování\r\npřeplatek\r\npřeplatit\r\npřeplavání\r\npřeplavat\r\npřeplavávání\r\npřeplavávaný\r\npřeplavávat\r\npřeplavba\r\npřeplavejme\r\npřeplavej\r\npřeplavejte\r\npřeplavení\r\npřeplavený\r\npřeplavit\r\npřeplavování\r\npřeplavovaný\r\npřeplavovat\r\npřeplazení\r\npřeplazit\r\npřeplést\r\npřeplétání\r\npřeplétaný\r\npřeplétat\r\npřepletení\r\npřepletený\r\npřeplížení\r\npřeplížit\r\npřeplněnější\r\npřeplnění\r\npřeplněný\r\npřeplnit\r\npřeplnitelnější\r\npřeplnitelný\r\npřeplňovací\r\npřeplňování\r\npřeplňovaný\r\npřeplňovat\r\npřeplout\r\npřeplouvající\r\npřeplouvání\r\npřeplouvaný\r\npřeplouvat\r\npřeploužení\r\npřeploužit\r\npřeplutí\r\npřeplutý\r\npřepluženější\r\npřeplužení\r\npřeplužený\r\npřeplužit\r\npřepnout\r\npřepnutější\r\npřepnutí\r\npřepnutý\r\npřepočet\r\npřepočíst\r\npřepočítací\r\npřepočítání\r\npřepočítaný\r\npřepočítat\r\npřepočítávací\r\npřepočítávající\r\npřepočítávání\r\npřepočítávaný\r\npřepočítávat\r\npřepočtení\r\npřepočtený\r\npřepočtový\r\npřepodivný\r\npřepojenější\r\npřepojení\r\npřepojený\r\npřepojistit\r\npřepojištění\r\npřepojištěný\r\npřepojit\r\npřepojitelný\r\npřepojovací\r\npřepojovanější\r\npřepojování\r\npřepojovaný\r\npřepojovat\r\npřepojovávání\r\npřepojovávaný\r\npřepojovávat\r\npřepojující\r\npřepolitizovaný\r\npřepólování\r\npřepólovaný\r\npřepólovat\r\npřepólovávání\r\npřepólovávaný\r\npřepólovávat\r\npřepolštářovaný\r\npřepona\r\npřeportování\r\npřeportovaný\r\npřeportovat\r\npřeportovávání\r\npřeportovávaný\r\npřeportovávat\r\npřeposílání\r\npřeposílat\r\npřeposlal\r\npřeposlání\r\npřeposlat\r\npřepošlu\r\npřepotácení\r\npřepotácet\r\npřepouštěcí\r\npřepouštějící\r\npřepouštěnější\r\npřepouštění\r\npřepouštěný\r\npřepouštět\r\npřepoutání\r\npřepoutaný\r\npřepoutat\r\npřepoutávání\r\npřepoutávaný\r\npřepoutávat\r\npřepracovací\r\npřepracovanější\r\npřepracování\r\npřepracovaný\r\npřepracovat\r\npřepracovatelský\r\npřepracovávací\r\npřepracovávající\r\npřepracovávanější\r\npřepracovávání\r\npřepracovávaný\r\npřepracovávat\r\npřepranější\r\npřeprání\r\npřepraný\r\npřeprášenější\r\npřeprášení\r\npřeprášený\r\npřeprášit\r\npřeprat\r\npřeprava\r\npřepravce\r\npřepravcův\r\npřepravení\r\npřepravený\r\npřepravit\r\npřepravitelnější\r\npřepravitelný\r\npřepravka\r\npřepravník\r\npřepravní\r\npřepravní\r\npřepravný\r\npřepravování\r\npřepravovaný\r\npřepravovat\r\npřepravovování\r\npřepravovovaný\r\npřepravovovat\r\npřepravující\r\npřeprchávat\r\npřeprodukovaný\r\npřeprofilování\r\npřeprofilovaný\r\npřeprofilovat\r\npřeprofilovávání\r\npřeprofilovávaný\r\npřeprofilovávat\r\npřeprogramovanější\r\npřeprogramování\r\npřeprogramovaný\r\npřeprogramovat\r\npřeprogramovávání\r\npřeprogramovávaný\r\npřeprogramovávat\r\npřeprojektování\r\npřeprojektovaný\r\npřeprojektovat\r\npřeprška\r\npřepřahání\r\npřepřahaný\r\npřepřahat\r\npřepřáhnout\r\npřepřáhnutí\r\npřepřažený\r\npřepsal\r\npřepsanější\r\npřepsanější\r\npřepsání\r\npřepsán\r\npřepsaný\r\npřepsáný\r\npřepsat\r\npřeptání\r\npřeptaný\r\npřeptat\r\npřeptávání\r\npřeptávaný\r\npřeptávat\r\npřepudrování\r\npřepudrovaný\r\npřepudrovat\r\npřepůlení\r\npřepůlený\r\npřepůlit\r\npřepustit\r\npřepuštěnější\r\npřepuštění\r\npřepuštěný\r\npřepych\r\npřepychovější\r\npřepychový\r\npřerámovaný\r\npřerámovat\r\npřerastrovanější\r\npřerastrování\r\npřerastrovaný\r\npřerastrovat\r\npřerazit\r\npřerazítkování\r\npřerazítkovaný\r\npřerazítkovat\r\npřeraženější\r\npřeražení\r\npřerážení\r\npřeražený\r\npřerážený\r\npřerážet\r\npřeregistrace\r\npřeregistrování\r\npřeregistrovaný\r\npřeregistrovat\r\npřeregistrovávání\r\npřeregistrovávaný\r\npřeregistrovávat\r\npřeregulovaný\r\npřerod\r\npřerodit\r\npřerostlejší\r\npřerostl\r\npřerostlý\r\npřerostu\r\npřeroubování\r\npřeroubovaný\r\npřeroubovat\r\nPřerov\r\npřerovnání\r\npřerovnaný\r\npřerovnat\r\npřerovnávání\r\npřerovnávaný\r\npřerovnávat\r\nPřerovsko\r\npřerovský\r\npřerozdělení\r\npřerozdělený\r\npřerozdělit\r\npřerozdělovací\r\npřerozdělování\r\npřerozdělovaný\r\npřerozdělovat\r\npřerozdělovávání\r\npřerozdělovávaný\r\npřerozdělovávat\r\npřerození\r\npřerozený\r\npřerozmazávanější\r\npřerozmazávaný\r\npřeručkování\r\npřeručkovaný\r\npřeručkovat\r\npřeručkovávání\r\npřeručkovávaný\r\npřeručkovávat\r\npřerůstající\r\npřerůstání\r\npřerůstat\r\npřerůst\r\npřerušenější\r\npřerušení\r\npřerušený\r\npřerušit\r\npřerušitelnější\r\npřerušitelný\r\npřerušovací\r\npřerušovač\r\npřerušovanější\r\npřerušování\r\npřerušovaný\r\npřerušovat\r\npřerušovatelnější\r\npřerušovatelný\r\npřerušující\r\npřerůzný\r\npřervanější\r\npřervaní\r\npřervání\r\npřervaný\r\npřervat\r\npřervávání\r\npřervávaný\r\npřervávat\r\npřerva\r\npřerýsování\r\npřerýsovaný\r\npřerýsovat\r\npřerýt\r\npřerytější\r\npřerytí\r\npřerytý\r\npřerývanější\r\npřerývání\r\npřerývaný\r\npřerývat\r\npřerývavější\r\npřerývavý\r\npřeryv\r\npřerývka\r\npřeřadění\r\npřeřaděný\r\npřeřadící\r\npřeřadit\r\npřeřaditelnější\r\npřeřaditelný\r\npřeřaďovač\r\npřeřaďování\r\npřeřaďovat\r\npřeřazenější\r\npřeřazení\r\npřeřazený\r\npřeřazovač\r\npřeřazovanější\r\npřeřazování\r\npřeřazovaný\r\npřeřazovat\r\npřeřazovatelnější\r\npřeřazovatelný\r\npřeřečen\r\npřeřečený\r\npřeředění\r\npřeředěný\r\npřeředit\r\npřeřekl\r\npřeřeknout\r\npřeřeknu\r\npřeřeknutí\r\npřeřeknuv\r\npřeřezanější\r\npřeřezání\r\npřeřezaný\r\npřeřezat\r\npřeřezávací\r\npřeřezávající\r\npřeřezávanější\r\npřeřezávání\r\npřeřezávaný\r\npřeřezávat\r\npřeříci\r\npřeříct\r\npřeřídit\r\npřeříkání\r\npřeříkaný\r\npřeříkat\r\npřeříkávání\r\npřeříkávaný\r\npřeříkávat\r\npřeřízení\r\npřeřízený\r\npřeříznout\r\npřeříznutější\r\npřeříznutí\r\npřeříznutý\r\npřeříznutý\r\npřeřvání\r\npřeřvat\r\npřeřvávání\r\npřeřvávaný\r\npřeřvávat\r\npřes\r\npřesadit\r\npřesah\r\npřesáhnout\r\npřesáhnutí\r\npřesahování\r\npřesahovaný\r\npřesahovat\r\npřesahující\r\npřesávání\r\npřesávaný\r\npřesávat\r\npřesázenější\r\npřesazení\r\npřesázení\r\npřesazený\r\npřesázený\r\npřesázet\r\npřesazovací\r\npřesazovanější\r\npřesazování\r\npřesazovaný\r\npřesazovat\r\npřesažený\r\npřesčas\r\npřesčasový\r\npřese\r\npřesečení\r\npřesečen\r\npřesečený\r\npřeseču\r\npřesedající\r\npřesedání\r\npřesedat\r\npřesedávání\r\npřesedávat\r\npřesedět\r\npřesedlání\r\npřesedlaný\r\npřesedlat\r\npřesedlávání\r\npřesedlávaný\r\npřesedlávat\r\npřesedlý\r\npřesednout\r\npřesednutí\r\npřeseji\r\npřesekanější\r\npřesekání\r\npřesekaný\r\npřesekat\r\npřesekávání\r\npřesekávaný\r\npřesekávat\r\npřesekl\r\npřeseknout\r\npřeseknutí\r\npřeseknutý\r\npřesel\r\npřesení\r\npřesetější\r\npřesetí\r\npřeset\r\npřesetý\r\npřesetý\r\npřeshraniční\r\npřeschlejší\r\npřeschlý\r\npřeschnl\r\npřeschnout\r\npřeschnutí\r\npřeschvalovací\r\npřesíct\r\npřesídlencův\r\npřesídlenčin\r\npřesídlenec\r\npřesídlenější\r\npřesídlení\r\npřesídlenka\r\npřesídlený\r\npřesídlit\r\npřesídlovací\r\npřesidlování\r\npřesídlování\r\npřesidlovaný\r\npřesídlovaný\r\npřesidlovat\r\npřesídlovat\r\npřesidlovávání\r\npřesídlovávání\r\npřesidlovávaný\r\npřesídlovávaný\r\npřesidlovávat\r\npřesídlovávat\r\npřesila\r\npřesil\r\npřesilovka\r\npřesilový\r\npřesířený\r\npřesířit\r\npřesít\r\npřesívací\r\npřesívající\r\npřesívání\r\npřesívaný\r\npřesívat\r\npřesívka\r\npřeskáčka\r\npřeskáčku\r\npřeskákanější\r\npřeskákání\r\npřeskákáno\r\npřeskákaný\r\npřeskákat\r\npřeskakovanější\r\npřeskakování\r\npřeskakovaný\r\npřeskakovat\r\npřeskakovávání\r\npřeskakovávaný\r\npřeskakovávat\r\npřeskakující\r\npřeskládanější\r\npřeskládání\r\npřeskládaný\r\npřeskládat\r\npřeskládávání\r\npřeskládávaný\r\npřeskládávat\r\npřesklení\r\npřesklený\r\npřesklít\r\npřesklívání\r\npřesklívaný\r\npřesklívat\r\npřeskočenější\r\npřeskočení\r\npřeskočený\r\npřeskočit\r\npřeskok\r\npřeskokový\r\npřeskupení\r\npřeskupený\r\npřeskupit\r\npřeskupování\r\npřeskupovaný\r\npřeskupovat\r\npřeskupující\r\npřeslabikování\r\npřeslabikovaný\r\npřeslabikovat\r\npřesladit\r\npřesládlý\r\npřeslavnější\r\npřeslavný\r\npřeslazenější\r\npřeslazení\r\npřeslazený\r\npřeslazování\r\npřeslazovaný\r\npřeslazovat\r\npřeslech\r\npřeslechnout\r\npřeslechnutější\r\npřeslechnutelnější\r\npřeslechnutí\r\npřeslechnutý\r\npřeslechnutý\r\npřeslechový\r\npřeslen\r\npřeslice\r\npřeslička\r\npřesličník\r\npřesloužení\r\npřesloužený\r\npřesloužit\r\npřesložitější\r\npřesluhování\r\npřesluhovat\r\npřesluhující\r\npřesmažit\r\npřesměrovanější\r\npřesměrování\r\npřesměrovaný\r\npřesměrovat\r\npřesměrovatelnější\r\npřesměrovatelný\r\npřesměrovávání\r\npřesměrovávaný\r\npřesměrovávat\r\npřesmyčka\r\npřesmýkání\r\npřesmýkaný\r\npřesmýkat\r\npřesmyk\r\npřesmýknout\r\npřesmyknout\r\npřesmyknutí\r\npřesmýknutí\r\npřesmyslení\r\npřesnější\r\npřesnídávka\r\npřesný\r\npřesolenější\r\npřesolení\r\npřesolený\r\npřesolit\r\npřesolovat\r\npřesoustružení\r\npřesoustružený\r\npřesoustružit\r\npřesoušení\r\npřesoušený\r\npřesoušet\r\npřesouvadlo\r\npřesouvající\r\npřesouvání\r\npřesouvaný\r\npřesouvat\r\npřespalejší\r\npřespalý\r\npřespanější\r\npřespání\r\npřespaný\r\npřespásání\r\npřespat\r\npřespávající\r\npřespávání\r\npřespávat\r\npřespočet\r\npřespočetnější\r\npřespočetný\r\npřespolní\r\npřespoření\r\npřespořený\r\npřespořit\r\npřesprejování\r\npřesprejovaný\r\npřesprejovat\r\npřespříliš\r\npřespřílišnější\r\npřespříští\r\npřestál\r\npřestálý\r\npřestaní\r\npřestání\r\nPřestanov\r\npřestanovský\r\npřestárlejší\r\npřestárlý\r\npřestat\r\npřestát\r\npřestátý\r\npřestávající\r\npřestávání\r\npřestávat\r\npřestavba\r\npřestavení\r\npřestavění\r\npřestavený\r\npřestavěný\r\npřestavět\r\npřestavit\r\npřestavitelnější\r\npřestavitelný\r\npřestávka\r\npřestávkový\r\nPřestavlky\r\npřestavník\r\npřestavovanější\r\npřestavování\r\npřestavovaný\r\npřestavovat\r\npřestavující\r\npřestěhování\r\npřestěhovaný\r\npřestěhovat\r\npřestěhovávání\r\npřestěhovávaný\r\npřestěhovávat\r\npřestelu\r\npřestlal\r\npřestlanější\r\npřestlání\r\npřestlaný\r\npřestlat\r\npřesto\r\npřestojím\r\npřestoupaný\r\npřestoupení\r\npřestoupený\r\npřestoupit\r\npřestože\r\npřestránkování\r\npřestránkovaný\r\npřestránkovat\r\npřestránkovávání\r\npřestránkovávaný\r\npřestránkovávat\r\npřestrašenější\r\npřestrašný\r\npřestrkanější\r\npřestrkání\r\npřestrkaný\r\npřestrkat\r\npřestrkávání\r\npřestrkávaný\r\npřestrkávat\r\npřestrojení\r\npřestrojený\r\npřestrojit\r\npřestrojování\r\npřestrojovaný\r\npřestrojovat\r\npřestrukturování\r\npřestrukturovaný\r\npřestrukturovat\r\npřestřelenější\r\npřestřelení\r\npřestřelený\r\npřestřelit\r\npřestřelka\r\npřestřelování\r\npřestřelovaný\r\npřestřelovat\r\npřestřelovávání\r\npřestřelovávaný\r\npřestřelovávat\r\npřestřihání\r\npřestříhání\r\npřestřihaný\r\npřestříhaný\r\npřestřihat\r\npřestříhat\r\npřestřihávání\r\npřestříhávání\r\npřestřihávaný\r\npřestříhávaný\r\npřestřihávat\r\npřestříhávat\r\npřestřihnout\r\npřestřihnutí\r\npřestřihovací\r\npřestřihování\r\npřestřihovaný\r\npřestřihovat\r\npřestříkání\r\npřestříkaný\r\npřestříkat\r\npřestříkávání\r\npřestříkávaný\r\npřestříkávat\r\npřestříknout\r\npřestříknutí\r\npřestříknutý\r\npřestřikování\r\npřestřižení\r\npřestřižený\r\npřestudování\r\npřestudovaný\r\npřestudovat\r\npřestůjme\r\npřestůj\r\npřestůjte\r\npřestupek\r\npřestup\r\npřestupkový\r\npřestupník\r\npřestupníkův\r\npřestupní\r\npřestupný\r\npřestupování\r\npřestupovaný\r\npřestupovat\r\npřestupový\r\npřestupující\r\npřestýlání\r\npřestýlaný\r\npřestýlat\r\npřestylizování\r\npřestylizovaný\r\npřestylizovat\r\npřesublimování\r\npřesublimovaný\r\npřesublimovat\r\npřesun\r\npřesunout\r\npřesunování\r\npřesunovaný\r\npřesunovat\r\npřesunový\r\npřesunující\r\npřesunutí\r\npřesunutý\r\npřesunutý\r\npřesušení\r\npřesušený\r\npřesušit\r\npřesušování\r\npřesušovaný\r\npřesušovat\r\npřesuvnější\r\npřesvatý\r\npřesvěcení\r\npřesvěcený\r\npřesvědčenější\r\npřesvědčení\r\npřesvědčený\r\npřesvědčit\r\npřesvědčivější\r\npřesvědčivý\r\npřesvědčme\r\npřesvědč\r\npřesvědčovací\r\npřesvědčování\r\npřesvědčovaný\r\npřesvědčovat\r\npřesvědčte\r\npřesvědčující\r\npřesvětit\r\npřesvětlení\r\npřesvětlování\r\npřesvícení\r\npřesvícený\r\npřesvit\r\npřesvítit\r\npřesycenější\r\npřesycení\r\npřesycený\r\npřesycování\r\npřesycovaný\r\npřesycovat\r\npřesychání\r\npřesychat\r\npřesýchat\r\npřesýpací\r\npřesypající\r\npřesypanější\r\npřesypání\r\npřesýpání\r\npřesypaný\r\npřesýpaný\r\npřesypat\r\npřesýpat\r\npřesypávající\r\npřesypávanější\r\npřesypávání\r\npřesypávaný\r\npřesypávat\r\npřesyp\r\npřesytit\r\npřešel\r\npřešetření\r\npřešetřený\r\npřešetřit\r\npřešetřování\r\npřešetřovaný\r\npřešetřovat\r\npřešetřovávat\r\npřešetřující\r\npřeširoký\r\npřešišlání\r\npřešišlaný\r\npřešišlat\r\npřešít\r\npřešitější\r\npřešití\r\npřešitý\r\npřešitý\r\npřešívanější\r\npřešívání\r\npřešívaný\r\npřešívat\r\npřeškálování\r\npřeškálovaný\r\npřeškálovat\r\npřeškálovávání\r\npřeškálovávaný\r\npřeškálovávat\r\npřeškoda\r\npřeškolení\r\npřeškolený\r\npřeškolit\r\npřeškolovací\r\npřeškolování\r\npřeškolovaný\r\npřeškolovat\r\npřeškolovávání\r\npřeškolovávaný\r\npřeškolovávat\r\npřeškrabání\r\npřeškrábání\r\npřeškrabaný\r\npřeškrábaný\r\npřeškrabat\r\npřeškrábat\r\npřeškrabávání\r\npřeškrabávaný\r\npřeškrabávat\r\npřeškrabování\r\npřeškrabovaný\r\npřeškrabovat\r\npřeškrtání\r\npřeškrtaný\r\npřeškrtat\r\npřeškrtávání\r\npřeškrtávaný\r\npřeškrtávat\r\npřeškrtnout\r\npřeškrtnutí\r\npřeškrtnutý\r\npřeškubnout\r\npřeškubnutí\r\npřeškubnutý\r\npřeškvařený\r\npřeškvařit\r\npřeškvařovaný\r\npřeškvařovat\r\npřešlápnout\r\npřešlápnutí\r\npřešlápnutý\r\npřešlapování\r\npřešlapovat\r\npřešlapující\r\npřešlehání\r\npřešlehaný\r\npřešlehat\r\npřešlechtěný\r\npřešlejší\r\npřešlý\r\npřešmiknout\r\npřešmiknutí\r\npřešmiknutý\r\npřešněrovávat\r\npřešoupnout\r\npřešoupnutí\r\npřešoupnutý\r\npřešourání\r\npřešourat\r\npřešpendlení\r\npřešpendlený\r\npřešpendlit\r\npřešpendlovat\r\npřešplhání\r\npřešplhaný\r\npřešplhat\r\npřešplhávání\r\npřešplhávat\r\npřešroubování\r\npřešroubovaný\r\npřešroubovat\r\npřešroubovávání\r\npřešroubovávaný\r\npřešroubovávat\r\npřešťastný\r\npřeštěpování\r\nPřeštice\r\nPřešticko\r\npřeštický\r\npřeštípání\r\npřeštípaný\r\npřeštípat\r\npřeštípávání\r\npřeštípávaný\r\npřeštípávat\r\npřeštípnout\r\npřeštípnutí\r\npřeštípnutý\r\npřeštipování\r\npřeštipovaný\r\npřeštipovat\r\nPřešťovice\r\npřešťovický\r\npřetáčení\r\npřetáčený\r\npřetáčet\r\npřetáčivý\r\npřetahání\r\npřetahaný\r\npřetahat\r\npřetah\r\npřetáhnout\r\npřetáhnutí\r\npřetahovací\r\npřetahovanější\r\npřetahování\r\npřetahovaný\r\npřetahovat\r\npřetahovávání\r\npřetahovávaný\r\npřetahovávat\r\npřetahující\r\npřetaktování\r\npřetaktovaný\r\npřetaktovat\r\npřeťal\r\npřeťapat\r\npřetápějící\r\npřetápěnější\r\npřetápění\r\npřetápěný\r\npřetápět\r\npřetapetování\r\npřetapetovaný\r\npřetapetovat\r\npřetapetovávání\r\npřetapetovávaný\r\npřetapetovávat\r\npřeťapkání\r\npřeťapkaný\r\npřeťapkat\r\npřeťápnout\r\npřeťápnutí\r\npřeťápnutý\r\npřeťatější\r\npřeťat\r\npřeťatý\r\npřeťatý\r\npřetavba\r\npřetavenina\r\npřetavení\r\npřetavený\r\npřetavit\r\npřeťav\r\npřetavování\r\npřetavovaný\r\npřetavovat\r\npřetavující\r\npřetaženější\r\npřetažení\r\npřetažený\r\npřetažitelnější\r\npřetažitelný\r\npřetéct\r\npřetečení\r\npřetečený\r\npřetechnizovanější\r\npřetechnizovaný\r\npřetékající\r\npřetékání\r\npřetékat\r\npřeteklejší\r\npřeteklý\r\npřetěsnění\r\npřetěsněný\r\npřetěsnit\r\npřetětí\r\npřetextovat\r\npřetěžba\r\npřetěžení\r\npřetěžený\r\npřetěžit\r\npřetěžký\r\npřetěžování\r\npřetěžovaný\r\npřetěžovat\r\npřetínání\r\npřetínaný\r\npřetínat\r\npřetínávání\r\npřetínávaný\r\npřetínávat\r\npřetíraní\r\npřetírání\r\npřetíraný\r\npřetírat\r\npřetisk\r\npřetisknout\r\npřetisknutí\r\npřetisknutý\r\npřetiskovací\r\npřetiskování\r\npřetiskovaný\r\npřetiskovat\r\npřetiskový\r\npřetištěný\r\npřetít\r\npřetíženější\r\npřetížení\r\npřetížený\r\npřetížit\r\npřetížitelnější\r\npřetížitelný\r\npřetkanější\r\npřetkání\r\npřetkaný\r\npřetkat\r\npřetkávanější\r\npřetkávání\r\npřetkávaný\r\npřetkávat\r\npřetlačení\r\npřetlačený\r\npřetlačit\r\npřetlačovanější\r\npřetlačování\r\npřetlačovaný\r\npřetlačovat\r\npřetlačující\r\npřetlak\r\npřetlakový\r\npřetlučení\r\npřetlumočení\r\npřetlumočený\r\npřetlumočit\r\npřetlumočování\r\npřetmelování\r\npřetmelovaný\r\npřetmelovat\r\npřetmelovávání\r\npřetmelovávaný\r\npřetmelovávat\r\npřetnout\r\npřetnu\r\npřetnul\r\npřetnutější\r\npřetnutelnější\r\npřetnutelný\r\npřetnutí\r\npřetnutý\r\npřetočení\r\npřetočený\r\npřetočit\r\npřetok\r\npřetopenější\r\npřetopení\r\npřetopený\r\npřetopit\r\npřetopitelnější\r\npřetopitelný\r\npřetransferovat\r\npřetransformování\r\npřetransformovaný\r\npřetransformovat\r\npřetransformovávat\r\npřetransportovanější\r\npřetransportování\r\npřetransportovaný\r\npřetransportovat\r\npřetransportovávání\r\npřetransportovávaný\r\npřetransportovávat\r\npřetrávení\r\npřetrávený\r\npřetraversovat\r\npřetraverzovat\r\npřetrávit\r\npřetra\r\npřetrénování\r\npřetrénovaný\r\npřetrénovat\r\npřetrhající\r\npřetrhanější\r\npřetrhání\r\npřetrhaný\r\npřetrhat\r\npřetrhávající\r\npřetrhávanější\r\npřetrhávání\r\npřetrhávaný\r\npřetrhávat\r\npřetrhnout\r\npřetrhnutější\r\npřetrhnutí\r\npřetrhnutý\r\npřetrhovat\r\npřetrpení\r\npřetrpění\r\npřetrpěný\r\npřetrpět\r\npřetrumfnout\r\npřetrumfnutí\r\npřetrumfnutý\r\npřetrvání\r\npřetrvat\r\npřetrvávající\r\npřetrvávání\r\npřetrvávat\r\npřetržení\r\npřetržený\r\npřetržitější\r\npřetržitý\r\npřetřásání\r\npřetřásaný\r\npřetřásat\r\npřetřásávání\r\npřetřásávat\r\npřetřásl\r\npřetřást\r\npřetřenější\r\npřetření\r\npřetřený\r\npřetřesení\r\npřetřesen\r\npřetřesený\r\npřetřes\r\npřetřesu\r\npřetřídění\r\npřetříděný\r\npřetřídit\r\npřetřiďování\r\npřetřiďovaný\r\npřetřiďovat\r\npřetřít\r\npřetučnělý\r\npřetvarování\r\npřetvarovaný\r\npřetvarovat\r\npřetvářející\r\npřetvářenější\r\npřetváření\r\npřetvářený\r\npřetvářet\r\npřetvářka\r\npřetvařování\r\npřetvařovaný\r\npřetvařovat\r\npřetvařovávat\r\npřetvořenější\r\npřetvoření\r\npřetvořený\r\npřetvořit\r\npřetvořitelný\r\npřetvořitel\r\npřetvořitelův\r\npřetypování\r\npřetypovaný\r\npřetypovat\r\npřetypovávání\r\npřetypovávaný\r\npřetypovávat\r\npřeuctivější\r\npřeuctivý\r\npřeučenější\r\npřeučení\r\npřeučený\r\nPřeučilová\r\nPřeučil\r\nPřeučilův\r\npřeučit\r\npřeučovanější\r\npřeučování\r\npřeučovaný\r\npřeučovat\r\npřeúčtovací\r\npřeúčtovanější\r\npřeúčtování\r\npřeúčtovaný\r\npřeúčtovat\r\npřeúčtovávání\r\npřeúčtovávaný\r\npřeúčtovávat\r\npřeučující\r\npřeudit\r\npřeuspořádání\r\npřeuspořádaný\r\npřeuspořádat\r\npřeuzení\r\npřeuzený\r\npřeúzkostlivý\r\npřeváděcí\r\npřevaděčský\r\npřevaděčství\r\npřevaděč\r\npřevaděčův\r\npřevádějící\r\npřeváděnější\r\npřevádění\r\npřeváděný\r\npřevádět\r\npřevaha\r\npřeválcování\r\npřeválcovaný\r\npřeválcovat\r\npřeválcovávání\r\npřeválcovávaný\r\npřeválcovávat\r\npřevalení\r\npřeválení\r\npřevalený\r\npřeválený\r\npřeválet\r\npřeval\r\npřevalit\r\npřevalování\r\npřevalovaný\r\npřevalovat\r\npřevalovávání\r\npřevalovávaný\r\npřevalovávat\r\npřevalující\r\npřevání\r\npřevaření\r\npřeváření\r\npřevařený\r\npřevářený\r\npřevářet\r\npřevařit\r\npřevářka\r\npřevařování\r\npřevařovaný\r\npřevařovat\r\npřevařovávat\r\npřevát\r\npřevátý\r\npřevázanější\r\npřevázání\r\npřevázaný\r\npřevázat\r\npřevázávanější\r\npřevázávání\r\npřevázávaný\r\npřevázávat\r\npřevaz\r\npřevaziště\r\npřevazovací\r\npřevazovanější\r\npřevazování\r\npřevazovaný\r\npřevazovat\r\npřevazovna\r\npřevazový\r\npřevazující\r\npřevážející\r\npřevažek\r\npřeváženější\r\npřevážení\r\npřevážený\r\npřevážet\r\npřeváži\r\npřevážit\r\npřevážně\r\npřevážnější\r\npřevážný\r\npřevažovanější\r\npřevažování\r\npřevažovaný\r\npřevažovat\r\npřevažovatelnější\r\npřevažovatelný\r\npřevažující\r\npřevedenější\r\npřevedení\r\npřeveden\r\npřevedený\r\npřeveditelnější\r\npřeveditelný\r\npřevedl\r\npřevedu\r\npřevekslování\r\npřevekslovaný\r\npřevekslovat\r\npřevelení\r\npřevelený\r\npřevelet\r\npřeveliký\r\npřeverbování\r\npřeverbovaný\r\npřeverbovat\r\npřevěsit\r\npřevést\r\npřevěšenější\r\npřevěšení\r\npřevěšený\r\npřevěšet\r\npřevěšování\r\npřevěšovaný\r\npřevěšovat\r\npřevezenější\r\npřevezení\r\npřevezený\r\npřevezmu\r\npřevézt\r\npřevíjecí\r\npřevíječka\r\npřevíjení\r\npřevíjený\r\npřevíjet\r\npřevinout\r\npřevinování\r\npřevinovaný\r\npřevinovat\r\npřevinutí\r\npřevinutý\r\npřevis\r\npřevislejší\r\npřevislý\r\npřevislý\r\npřevláčení\r\npřevláčený\r\npřevláčet\r\npřevládající\r\npřevládání\r\npřevládaný\r\npřevládat\r\npřevládnout\r\npřevládnutí\r\npřevládnutý\r\npřevléct\r\npřevlečenější\r\npřevlečení\r\npřevlečený\r\npřevlečník\r\npřevlékací\r\npřevlékání\r\npřevlékaný\r\npřevlékárna\r\npřevlékat\r\npřevlek\r\npřevlekl\r\npřevlékl\r\npřevléknout\r\npřevléknutí\r\npřevléknutý\r\npřevlekový\r\npřevlhčení\r\npřevlíknout\r\npřevodce\r\npřevodcův\r\npřevod\r\npřevoditelnější\r\npřevoditelný\r\npřevodka\r\npřevodník\r\npřevodní\r\npřevodný\r\npřevodovka\r\npřevodový\r\npřevorčin\r\npřevorka\r\npřevor\r\npřevorství\r\npřevorův\r\npřevoskovat\r\npřevoz\r\npřevozit\r\npřevoznický\r\npřevoznictví\r\npřevozničtější\r\npřevozník\r\npřevozníkův\r\npřevozní\r\npřevozný\r\npřevožení\r\npřevožený\r\npřevracející\r\npřevrácenější\r\npřevracení\r\npřevrácení\r\npřevracený\r\npřevrácený\r\npřevracet\r\npřevrat\r\nPřevrátilová\r\nPřevrátil\r\nPřevrátilův\r\npřevrátit\r\npřevratnější\r\npřevratný\r\npřevratový\r\npřevrhlý\r\npřevrhnout\r\npřevrhnutí\r\npřevrhování\r\npřevrstvení\r\npřevrstvený\r\npřevrstvit\r\npřevrstvování\r\npřevrstvovaný\r\npřevrstvovat\r\npřevrtání\r\npřevrtaný\r\npřevrtat\r\npřevrtávání\r\npřevrtávaný\r\npřevrtávat\r\npřevržení\r\npřevržený\r\npřevtělení\r\npřevtělený\r\npřevtělit\r\npřevtělování\r\npřevtělovat\r\npřevtělovávání\r\npřevtělovávaný\r\npřevtělovávat\r\npřevtělující\r\npřevýborná\r\npřevýborný\r\npřevychování\r\npřevychovaný\r\npřevychovat\r\npřevychovávací\r\npřevychovávání\r\npřevychovávaný\r\npřevychovávat\r\npřevýchova\r\npřevýchovný\r\npřevyprávění\r\npřevyprávěný\r\npřevyprávět\r\npřevysoký\r\npřevýšenější\r\npřevýšení\r\npřevýšený\r\npřevýšit\r\npřevyšování\r\npřevyšovaný\r\npřevyšovat\r\nPřevýšov\r\npřevýšovský\r\npřevyšující\r\npřevzácný\r\npřevzal\r\npřevzání\r\npřevzat\r\npřevzatý\r\npřevzatý\r\npřevzdělaný\r\npřevzetí\r\npřevzít\r\npřevzorkování\r\npřevzorkovaný\r\npřevzorkovat\r\npře\r\npřezaměstnaný\r\npřezáření\r\npřezářený\r\npřezářit\r\npřezbrojení\r\npřezbrojený\r\npřezbrojit\r\npřezbrojovací\r\npřezbrojování\r\npřezbrojovaný\r\npřezbrojovat\r\npřezbrojovávání\r\npřezbrojovávaný\r\npřezbrojovávat\r\npřezdění\r\npřezděný\r\npřezdít\r\npřezdívání\r\npřezdívaný\r\npřezdívat\r\npřezdívka\r\npřezdívkový\r\npřezdobení\r\npřezdobený\r\npřezdobit\r\npřezimování\r\npřezimovaný\r\npřezimovat\r\npřezimovávání\r\npřezimovávat\r\npřezimující\r\npřezírající\r\npřezíranější\r\npřezírání\r\npřezíraný\r\npřezírat\r\npřezíravější\r\npřezíravý\r\npřezka\r\npřezkoumání\r\npřezkoumaný\r\npřezkoumatelnější\r\npřezkoumatelný\r\npřezkoumat\r\npřezkoumávání\r\npřezkoumávaný\r\npřezkoumávat\r\npřezkoušeč\r\npřezkoušení\r\npřezkoušený\r\npřezkoušet\r\npřezkum\r\npřezkumný\r\npřezkušovač\r\npřezkušovačův\r\npřezkušování\r\npřezkušovaný\r\npřezkušovat\r\nPřezletice\r\npřezletický\r\npřeznačení\r\npřeznačený\r\npřeznačit\r\npřeznačkovat\r\npřeznačování\r\npřeznačovaný\r\npřeznačovat\r\npřezout\r\npřezouvání\r\npřezouvaný\r\npřezouvat\r\npřezpěvování\r\npřezpěvovaný\r\npřezpěvovat\r\npřezpívání\r\npřezpívaný\r\npřezpívat\r\npřezpívávání\r\npřezpívávaný\r\npřezpívávat\r\npřezrálejší\r\npřezrálý\r\npřezrálý\r\npřezrání\r\npřezrát\r\npřezrávání\r\npřezrávat\r\npřezutí\r\npřezutý\r\npřezuvka\r\npřezůvka\r\npřezvánění\r\npřezváněný\r\npřezvánět\r\npřezvání\r\npřezvat\r\npřezvědný\r\npřežehlení\r\npřežehlený\r\npřežehlit\r\npřeženu\r\npřežhavenější\r\npřežhavení\r\npřežhavený\r\npřežhavit\r\npřežilý\r\npřežírající\r\npřežírání\r\npřežíraný\r\npřežírat\r\npřežít\r\npřežitější\r\npřežitek\r\npřežitelný\r\npřežití\r\npřežitý\r\npřežitý\r\npřežívací\r\npřežívající\r\npřežívanější\r\npřežívání\r\npřežívaný\r\npřežívat\r\npřeživší\r\npřežižlat\r\npřežižlávat\r\npřežranější\r\npřežrání\r\npřežraný\r\npřežrat\r\npřežvýkání\r\npřežvýkaný\r\npřežvýkat\r\npřežvýkávat\r\npřežvýkavcův\r\npřežvýkavec\r\npřežvýkavý\r\npřežvýknout\r\npřežvykování\r\npřežvykovaný\r\npřežvykovat\r\npřežvykovávání\r\npřežvykovávaný\r\npřežvykovávat\r\npřežvykující\r\npři\r\npřialkoholizovat\r\npřialkoholizovávat\r\npřibájení\r\npřibájený\r\npřibájit\r\npřibalenější\r\npřibalení\r\npřibalený\r\npřibalit\r\npřibalitelnější\r\npřibalitelný\r\npřibalovanější\r\npřibalování\r\npřibalovaný\r\npřibalovat\r\npřibalovávání\r\npřibalovávaný\r\npřibalovávat\r\npříbalový\r\npřibalující\r\npřibarvenější\r\npřibarvení\r\npřibarvený\r\npřibarvit\r\npřibarvování\r\npřibarvovaný\r\npřibarvovat\r\npříběh\r\npřiběhnout\r\npřiběhnutí\r\npříběhovější\r\npříběhový\r\npřibelhání\r\npřibelhat\r\npřibelhávání\r\npřibelhávat\r\nPříběnice\r\npříběnický\r\nPřibice\r\npřibický\r\npřibíhající\r\npřibíhání\r\npřibíhaný\r\npřibíhat\r\npřibíhávání\r\npřibíhávaný\r\npřibíhávat\r\npřibíjecí\r\npřibíjení\r\npřibíjený\r\npřibíjet\r\nPřibíková\r\nPřibík\r\nPřibíkův\r\npřibírající\r\npřibíranější\r\npřibírání\r\npřibíraný\r\npřibírat\r\npřibírka\r\npřibít\r\npřibití\r\npřibit\r\npřibitý\r\npřiblblejší\r\npřiblblý\r\npřiblížení\r\npřiblížený\r\npřiblížit\r\npřibližnější\r\npřibližný\r\npřibližovací\r\npřibližování\r\npřibližovat\r\npřibližující\r\npřibodnout\r\npříbojový\r\npříboj\r\npříbor\r\npříborník\r\npříborovější\r\npříborový\r\npřiboudlina\r\npřibouchnout\r\npřibouchnutí\r\npřibouchnutý\r\nPříbram\r\nPříbramí\r\nPříbramsko\r\npříbramský\r\npřibranější\r\npřibraní\r\npřibrání\r\npřibraný\r\npřibrat\r\npřibrousit\r\npřibroušenější\r\npřibroušení\r\npřibroušený\r\npřibrušovanější\r\npřibrušování\r\npřibrušovaný\r\npřibrušovat\r\npřibrušující\r\npřibrzdění\r\npřibrzděný\r\npřibrzdit\r\npřibrzďování\r\npřibrzďovaný\r\npřibrzďovat\r\npřibrzďující\r\npříbřežní\r\npřibudování\r\npřibudu\r\npřiburácení\r\npřiburácet\r\npříbuzenský\r\npříbuzenství\r\npříbuzenstvo\r\npříbuznější\r\npříbuzný\r\npřibyl\r\nPřibylová\r\nPřibyl\r\nPřibylův\r\nPřibyslav\r\npříbytek\r\npřibýt\r\npřibytí\r\npříbytkovější\r\npříbytkový\r\npřibývající\r\npřibývání\r\npřibývat\r\npřibyv\r\npřibyvše\r\npřibyvši\r\npřibyvší\r\npřicestování\r\npřicestovaný\r\npřicestovat\r\npřicpat\r\npřicpávat\r\npřicupitání\r\npřicupitat\r\npřicupitávání\r\npřicupitávat\r\npřicvakávat\r\npřicválání\r\npřicválat\r\npřicválávání\r\npřicválávat\r\npřičapnout\r\npřičapnutí\r\npřičapnutý\r\npřičarování\r\npřičarovaný\r\npřičarovat\r\npříčel\r\npřičemž\r\npříčení\r\npříčený\r\npřičerpání\r\npřičerpaný\r\npřičerpat\r\npřičerpávání\r\npřičerpávaný\r\npřičerpávat\r\npřičesanější\r\npřičesání\r\npřičesaný\r\npřičesat\r\npřičesávání\r\npřičesávaný\r\npřičesávat\r\npříčesek\r\npříčes\r\npříčestí\r\npříčetnější\r\npříčetný\r\npříčící\r\npřičichávat\r\npřičichnout\r\npřičichnutí\r\npříčina\r\npřičinění\r\npřičinit\r\npřičinlivější\r\npřičinlivý\r\npříčinný\r\npříčinou\r\npřičiňování\r\npřičiňovaný\r\npřičiňovat\r\npříčiny\r\npřičísnout\r\npřičísnutí\r\npřičísnutý\r\npřičíst\r\npřičítající\r\npřičítání\r\npřičítaný\r\npřičítat\r\npříčit\r\npříčka\r\npříčkovka\r\npříčkový\r\npříčle\r\npříčlem\r\npříčlemi\r\npřičleněnější\r\npřičlenění\r\npřičleněný\r\npřičlenit\r\npřičlenitelnější\r\npřičlenitelný\r\npřičleňování\r\npřičleňovaný\r\npřičleňovat\r\npřičleňující\r\npříčli\r\npříčlí\r\npříčlích\r\npříčlím\r\npříčlů\r\npříčlům\r\npřičmoudlejší\r\npříčnější\r\npříčník\r\npříčný\r\npřičtenější\r\npřičtení\r\npřičtený\r\nPřidalová\r\nPřidal\r\nPřidalův\r\npřidanější\r\npřidání\r\npřidaný\r\npřidat\r\npřídatnější\r\npřídatný\r\npřidávací\r\npřidavaččin\r\npřidavačka\r\npřidavač\r\npřidávač\r\npřidavačův\r\npřidávačův\r\npřidávající\r\npřidávající\r\npřidávanější\r\npřidávání\r\npřidávaný\r\npřidávat\r\npřídavek\r\npřídavkový\r\npřídavný\r\npřídech\r\npřídechový\r\npřidělání\r\npřidělaný\r\npřidělat\r\npřidělávání\r\npřidělávaný\r\npřidělávat\r\npřidělencův\r\npřidělenec\r\npřidělenější\r\npřidělení\r\npřidělený\r\npříděl\r\npřidělit\r\npřidělitelnější\r\npřidělitelný\r\npřidělovací\r\npřidělovač\r\npřidělovanější\r\npřidělování\r\npřidělovaný\r\npřidělovat\r\npřidělovatelnější\r\npřidělovatelný\r\npřidělovatel\r\npřidělovatelův\r\npřidělovávání\r\npřidělovávaný\r\npřidělovávat\r\npřídělový\r\npřidělující\r\npřídomek\r\npříďový\r\npřidrátování\r\npřidrátovaný\r\npřidrátovat\r\npřidružení\r\npřidružený\r\npřidružit\r\npřidružovací\r\npřidružování\r\npřidružovaný\r\npřidružovat\r\npřidružující\r\npřidrzlejší\r\npřidrženější\r\npřidržení\r\npřidržený\r\npřidržet\r\npřídržnější\r\npřídržný\r\npřidržovanější\r\npřidržování\r\npřidržovaný\r\npřidržovat\r\npřidržující\r\npřidupanější\r\npřidupání\r\npřidupaný\r\npřidupat\r\npřidupávanější\r\npřidupávání\r\npřidupávaný\r\npřidupávat\r\npřidupnout\r\npřidupnutější\r\npřidupnutí\r\npřidupnutý\r\npřidupnutý\r\npřidupu\r\npřidusání\r\npřidusat\r\npřidusit\r\npřidušenější\r\npřidušení\r\npřidušený\r\npříď\r\npřifukování\r\npřifukovaný\r\npřifukovat\r\npřifukovávání\r\npřifukovávaný\r\npřifukovávat\r\npřiháněcí\r\npřihánějící\r\npřiháněnější\r\npřihánění\r\npřiháněný\r\npřihánět\r\npřiházející\r\npřiházenější\r\npřiházení\r\npřiházený\r\npřiházet\r\npřihazování\r\npřihazovaný\r\npřihazovat\r\npřihladit\r\npřihlásit\r\npřihlášenější\r\npřihlášení\r\npřihlášený\r\npřihláška\r\npřihláškový\r\npřihlašovací\r\npřihlašovanější\r\npřihlašovaní\r\npřihlašování\r\npřihlašovaný\r\npřihlašovat\r\npřihlašovávat\r\npřihlašující\r\npřihlazení\r\npřihlazený\r\npřihlazovat\r\npřihlédnout\r\npřihlédnul\r\npřihlédnutím\r\npřihlédnutí\r\npřihlédnuto\r\npřihlídnout\r\npřihlídnul\r\npřihlídnuto\r\npřihlížeje\r\npřihlížejíc\r\npřihlížející\r\npřihlížení\r\npřihlíženo\r\npřihlížet\r\npřihlouplejší\r\npřihlouplý\r\npřihnal\r\npřihnanější\r\npřihnání\r\npřihnán\r\npřihnaný\r\npřihnat\r\npřihnojení\r\npřihnojený\r\npřihnojit\r\npřihnojování\r\npřihnojovaný\r\npřihnojovat\r\npřihnout\r\npřihnutí\r\npřihnutý\r\nPříhoda\r\npříhoda\r\npříhodička\r\npřihodit\r\npříhodnější\r\npříhodný\r\nPříhodová\r\nPříhodův\r\npříhon\r\nPříhonský\r\npřihořívání\r\npřihořívaný\r\npřihořívat\r\npřihozenější\r\npřihození\r\npřihozený\r\npříhoz\r\npřihrabanější\r\npřihrabání\r\npřihrabaný\r\npřihrabat\r\npřihrabávání\r\npřihrabávaný\r\npřihrabávat\r\npřihrábnout\r\npřihrábnutější\r\npřihrábnutí\r\npřihrábnutý\r\npřihrabování\r\npřihrabovaný\r\npřihrabovat\r\npřihrabovávání\r\npřihrabovávaný\r\npřihrabovávat\r\npříhrada\r\npříhradební\r\npřihrádka\r\npřihrádkový\r\npříhradový\r\npřihranější\r\npříhraničí\r\npříhraniční\r\npřihrání\r\npřihraný\r\npřihrát\r\npřihrávač\r\npřihrávačův\r\npřihrávající\r\npřihrávanější\r\npřihrávání\r\npřihrávaný\r\npřihrávat\r\npřihrávka\r\npříhrazský\r\nPříhrazy\r\npřihrbenější\r\npřihrbený\r\npřihrblejší\r\npřihrblý\r\npřihrčení\r\npřihrčet\r\npřihrkat\r\npřihrnout\r\npřihrnování\r\npřihrnovaný\r\npřihrnovat\r\npřihrnutí\r\npřihrnutý\r\npřihřání\r\npřihřát\r\npřihřátější\r\npřihřátý\r\npříhřev\r\npřihřívání\r\npřihřívaný\r\npřihřívat\r\npřihustit\r\npřihuštění\r\npřihuštěný\r\npřihušťování\r\npřihušťovaný\r\npřihušťovat\r\npřihýbací\r\npřihýbající\r\npřihýbanější\r\npřihýbání\r\npřihýbaný\r\npřihýbat\r\npřicházející\r\npřicházení\r\npřicházet\r\npřicházívat\r\npříchod\r\npříchodový\r\npříchovek\r\nPříchovice\r\npříchovický\r\nPříchovský\r\npříchozí\r\npříchuť\r\npřichycenější\r\npřichycení\r\npřichycený\r\npřichycovací\r\npřichycovanější\r\npřichycování\r\npřichycovaný\r\npřichycovat\r\npřichycovávání\r\npřichycovávaný\r\npřichycovávat\r\npřichycující\r\npříchylnější\r\npříchylný\r\npřichylovanější\r\npřichylování\r\npřichylovaný\r\npřichylovat\r\npřichylovávání\r\npřichylovávaný\r\npřichylovávat\r\npřichylující\r\nPřichystalová\r\nPřichystal\r\nPřichystalův\r\npřichystání\r\npřichystaný\r\npřichystat\r\npřichytávání\r\npřichytávaný\r\npřichytávat\r\npřichytit\r\npříchytka\r\npřichytnout\r\npřichytnutí\r\npřichytnutý\r\npřiinstalovanější\r\npřiinstalování\r\npřiinstalovaný\r\npřiinstalovat\r\npřiinstalovávání\r\npřiinstalovávaný\r\npřiinstalovávat\r\npřiinstalující\r\npřijal\r\npřijatější\r\npřijatelnější\r\npřijatelný\r\npřijat\r\npřijatý\r\npřijatý\r\npřijď\r\npřijda\r\npřijdeme\r\npřijde\r\npřijdeš\r\npřijdete\r\npřijďme\r\npřijdou\r\npřijďte\r\npřijdu\r\npřijedu\r\npřijel\r\npříjemce\r\npříjemcův\r\npříjemka\r\npříjemkyně\r\npříjemkynin\r\npříjemnější\r\npříjemnosti\r\npříjemnůstka\r\npříjemný\r\npříjem\r\npřijení\r\npřijetější\r\npřijet\r\npřijetí\r\npříjetí\r\npřijetý\r\npříjezd\r\npříjezdní\r\npříjezdový\r\npříjice\r\npřijímací\r\npřijímačky\r\npřijímačový\r\npřijímač\r\npřijímající\r\npřijímanější\r\npřijímání\r\npříjímání\r\npřijímaný\r\npřijímatelnější\r\npřijímatelný\r\npřijímat\r\npřijít\r\npřijití\r\npřijíždějící\r\npřijíždění\r\npřijíždět\r\npříjmení\r\npřijmout\r\npříjmový\r\npřijmu\r\npřijmutí\r\npřikapanější\r\npřikapání\r\npřikapaný\r\npřikapat\r\npřikapávání\r\npřikapávaný\r\npřikapávat\r\npřikápnout\r\npřikápnutí\r\npřikápnutý\r\npřikapu\r\npřikázanější\r\npřikázání\r\npřikázán\r\npřikázaný\r\npřikázat\r\npřikazatelnější\r\npřikazatelný\r\npříkazce\r\npříkazcův\r\npříkaz\r\npříkazník\r\npříkazníkův\r\npříkazní\r\npřikazovací\r\npřikazovanější\r\npřikazování\r\npřikazovaný\r\npřikazovat\r\npříkazový\r\npřikazující\r\npřikáži\r\npřikládací\r\npřikladač\r\npřikládající\r\npřikládanější\r\npřikládání\r\npřikládaný\r\npřikladatelnější\r\npřikladatelný\r\npřikládat\r\npříklad\r\npříkladnější\r\npříkladný\r\npříkladovější\r\npříkladový\r\npříkladu\r\npřiklánějící\r\npřiklánění\r\npřikláněný\r\npřiklánět\r\npřiklapnout\r\npřiklepanější\r\npřiklepání\r\npřiklepaný\r\npřiklepat\r\npřiklepávající\r\npřiklepávanější\r\npřiklepávání\r\npřiklepávaný\r\npřiklepávat\r\npříklep\r\npřiklepnout\r\npřiklepnutější\r\npřiklepnutí\r\npřiklepnutý\r\npřiklepnutý\r\npříklepový\r\npřiklížit\r\npřikloněnější\r\npřiklonění\r\npřikloněný\r\npříklon\r\npřiklonit\r\npříklonka\r\npřiklopení\r\npřiklopený\r\npříklop\r\npřiklopit\r\npříklopka\r\npříklopný\r\npřiklopovat\r\npříklopový\r\npříklůpek\r\npřiklusání\r\npřiklusat\r\npřikodrcání\r\npřikodrcaný\r\npřikodrcat\r\npřikolébání\r\npřikolébaný\r\npřikolébat\r\npřikolébávání\r\npřikolébávat\r\npřikolíčkovat\r\npřikolíkovat\r\npřikomponování\r\npřikomponovaný\r\npřikomponovat\r\npřikomponovávání\r\npřikomponovávaný\r\npřikomponovávat\r\npříkon\r\npříkop\r\npřikopírování\r\npřikopírovaný\r\npřikopírovat\r\npřikopírovávat\r\npřikopnout\r\npřikopnutí\r\npřikopnutý\r\npříkopový\r\npřikořenění\r\npřikořenit\r\npříkoří\r\npřikoulení\r\npřikoulený\r\npřikoulet\r\npřikoupení\r\npřikoupený\r\npřikoupit\r\npřikousnout\r\npřikousnutější\r\npřikousnutí\r\npřikousnutý\r\npřikousnutý\r\npřikovanější\r\npřikování\r\npřikovaný\r\npřikovat\r\npřikovávání\r\npřikovávaný\r\npřikovávat\r\npřikovu\r\npřikrácení\r\npřikrácený\r\npřikračovat\r\npřikradení\r\npřikrájet\r\npřikrajovací\r\npřikrajování\r\npřikrajovaný\r\npřikrajovat\r\npřikrajovávání\r\npřikrajovávaný\r\npřikrajovávat\r\npříkrasa\r\npřikrást\r\npřikrášlenější\r\npřikrášlení\r\npřikrášlený\r\npřikrášlit\r\npřikrašlování\r\npřikrášlování\r\npřikrášlovaný\r\npřikrašlovat\r\npřikrášlovat\r\npřikrášlující\r\npřikrátit\r\npřikrčenější\r\npřikrčení\r\npřikrčený\r\npřikrčit\r\npřikreslenější\r\npřikreslení\r\npřikreslený\r\npřikreslit\r\npřikreslování\r\npřikreslovaný\r\npřikreslovat\r\npřikreslovávání\r\npřikreslovávaný\r\npřikreslovávat\r\npřikreslující\r\npřikrmení\r\npřikrmený\r\npříkrm\r\npřikrmit\r\npřikrmování\r\npřikrmovaný\r\npřikrmovat\r\npřikročení\r\npřikročený\r\npřikročit\r\npřikročovat\r\npřikropení\r\npřikropený\r\npřikropit\r\npříkrov\r\npřikrucovací\r\npřikrucování\r\npřikrucovaný\r\npřikrucovat\r\nPřikrylová\r\nPřikryl\r\nPřikrylův\r\npřikrýt\r\npřikrytější\r\npřikrytelnější\r\npřikrytelný\r\npřikrytí\r\npřikrytý\r\npřikrytý\r\npřikrývající\r\npřikrývanější\r\npřikrývání\r\npřikrývaný\r\npřikrývatelnější\r\npřikrývatelný\r\npřikrývat\r\npřikrývka\r\npříkrý\r\npříkřejší\r\npřikulení\r\npřikulený\r\npřikulhanější\r\npřikulhání\r\npřikulhaný\r\npřikulhat\r\npřikulhávanější\r\npřikulhávání\r\npřikulhávaný\r\npřikulhávat\r\npřikulit\r\npřikulování\r\npřikulovaný\r\npřikulovat\r\npřikupování\r\npřikupovaný\r\npřikupovat\r\npřikupovávání\r\npřikupovávaný\r\npřikupovávat\r\npřikusovanější\r\npřikusování\r\npřikusovaný\r\npřikusovat\r\npřikusující\r\npřikutálení\r\npřikutálený\r\npřikutálet\r\npřikvačení\r\npřikvačit\r\npřikvapení\r\npřikvapený\r\npřikvapit\r\npřikyselovat\r\npřikývnout\r\npřikývnutí\r\npřikývnutý\r\npřikyvování\r\npřikyvovat\r\npřikyvující\r\npřilákání\r\npřílákání\r\npřilákaný\r\npřílákaný\r\npřilákat\r\npřílákat\r\npřilba\r\npřílba\r\npřilbice\r\npřilbicovitý\r\npřilbový\r\npřílbový\r\npřiléhající\r\npřiléhání\r\npřiléhaný\r\npřiléhat\r\npřiléhávání\r\npřiléhávat\r\npřiléhavější\r\npřiléhavý\r\npřilehlejší\r\npřilehlý\r\npřilehlý\r\npřilehnout\r\npřilehnutí\r\npřilepení\r\npřilepený\r\npřilepit\r\npřílepka\r\npřilepování\r\npřilepovaný\r\npřilepovat\r\npřílepský\r\npřilepšení\r\npřilepšený\r\npřilepšit\r\npřilepšování\r\npřilepšovaný\r\npřilepšovat\r\npřilepšující\r\nPřílepy\r\npřileštění\r\npřileštěný\r\npřileštit\r\npřilétající\r\npřilétání\r\npřilétaný\r\npřilétat\r\npřilétávání\r\npřilétávat\r\npřiletění\r\npřiletěný\r\npřiletět\r\npřílet\r\npřilétnout\r\npřilétnutí\r\npřiletování\r\npřiletovaný\r\npřiletovat\r\npříletový\r\npřilévající\r\npřilévání\r\npřilévaný\r\npřilévat\r\npřilézající\r\npřilézání\r\npřilézat\r\npřilezení\r\npřilézt\r\npříležitosti\r\npříležitost\r\npříležitostnější\r\npříležitostný\r\npřilinkování\r\npřilinkovat\r\npřilinkovávání\r\npřilinkovávaný\r\npřilinkovávat\r\npřilisování\r\npřilisovaný\r\npřilisovat\r\npříliš\r\npřílišný\r\npřilítání\r\npřilítaný\r\npřilítat\r\npřilít\r\npřilití\r\npřilítnout\r\npřilítnutí\r\npřilit\r\npřilitý\r\npřilívanější\r\npřilívání\r\npřilívaný\r\npřilívat\r\npříliv\r\npřílivový\r\npřilíznout\r\npřilíznutí\r\npřilíznutý\r\npřilnavější\r\npřilnavý\r\npřilnout\r\npřilnutí\r\npřilnutý\r\npříloha\r\npřílohový\r\npřiloudání\r\npřiloudat\r\npřiložení\r\npřiložený\r\npřiložit\r\npříložka\r\npříložník\r\npříložníkový\r\npříložní\r\npříložný\r\npřílož\r\nPříluka\r\npřimačkávání\r\npřimačkávaný\r\npřimačkávat\r\npřimáčknout\r\npřimáčknutí\r\npřimáčknutý\r\npřimalování\r\npřimalovaný\r\npřimalovat\r\npřimalovávání\r\npřimalovávaný\r\npřimalovávat\r\npřimastit\r\npřimašťovat\r\npřimazání\r\npřimazaný\r\npřimazat\r\npřimazávání\r\npřimazávaný\r\npřimazávat\r\npřimáznout\r\npřimáznutí\r\npřimáznutý\r\nPřimda\r\npřimdský\r\npřímější\r\npřimění\r\npřímení\r\npřímený\r\npříměr\r\npříměrový\r\npřiměřenější\r\npřiměřený\r\npříměří\r\npříměsek\r\npříměsemi\r\npříměs\r\npříměsový\r\npřimést\r\npříměstský\r\npřiměšovat\r\npřimetání\r\npřimetaný\r\npřimetat\r\npřimetávání\r\npřimetávaný\r\npřimetávat\r\npřimět\r\npřimetení\r\npřimetený\r\nPřímětice\r\npřímětický\r\npřimhouřenější\r\npřimhouření\r\npřimhouřený\r\npřimhouřit\r\npřimhuřování\r\npřimhuřovaný\r\npřimhuřovat\r\npřimhuřovávat\r\npřímidlo\r\npřimíchání\r\npřimíchaný\r\npřimíchat\r\npřimíchávání\r\npřimíchávaný\r\npřimíchávat\r\npřimísení\r\npřimísit\r\npřimíšenina\r\npřimíšení\r\npřimíšený\r\npřímit\r\npřimixování\r\npřimixovaný\r\npřimixovat\r\npřímka\r\npřimknout\r\npřimknutí\r\npřimknutý\r\npřímkový\r\npřimlouvající\r\npřimlouvání\r\npřimlouvaný\r\npřimlouvat\r\npřímluva\r\npřímluvce\r\npřímluvcův\r\npřimluvení\r\npřimluvený\r\npřimluvit\r\npřímluvkyně\r\npřímluvkynin\r\npřímluvný\r\npřímo\r\npřímočarý\r\npřímočařejší\r\npřímodopřádací\r\npřímodopřádání\r\npřímodopřádaný\r\npřimontování\r\npřimontovaný\r\npřimontovat\r\npřimontovávání\r\npřimontovávaný\r\npřimontovávat\r\npřímopropisující\r\npřímoří\r\npřímořský\r\npřímořštější\r\npřímosměšující\r\npřímospřádací\r\npřímospřádání\r\npřímospřádaný\r\npřimotání\r\npřimotaný\r\npřimotat\r\npřímotop\r\npřímoukazující\r\npřimrazení\r\npřimrazený\r\npřimrazit\r\npřimrzání\r\npřimrzat\r\npřimrzávat\r\npřimrzlý\r\npřimrznout\r\npřimrznutí\r\npřimrznutý\r\npřimykající\r\npřimykání\r\npřimykat\r\npřimyslení\r\npřimyslený\r\npřimyslet\r\npřimyslit\r\npřimyšlení\r\npřimýšlení\r\npřimyšlen\r\npřimýšlený\r\npřimýšlet\r\npřímý\r\npřináležející\r\npřináležení\r\npřináležet\r\npřináležící\r\npřináležitý\r\npřinášející\r\npřinášenější\r\npřinášení\r\npřinášený\r\npřinášet\r\nPřindová\r\nPřind\r\nPřindův\r\npřinejhorším\r\npřinejlepším\r\npřinejmenším\r\nPřinesdomů\r\npřinesenější\r\npřinesení\r\npřinesený\r\npřinést\r\npřínos\r\npřínosnější\r\npřínosný\r\npřinožení\r\npřinožený\r\npřinožit\r\npřinožování\r\npřinožovaný\r\npřinožovat\r\npřinucení\r\npřinucený\r\npřinucovací\r\npřinucování\r\npřinucovaný\r\npřinucovat\r\npřinucující\r\npřinutit\r\npřinýtovaný\r\npřiobjednání\r\npřiobjednaný\r\npřiobjednat\r\npřiobjednávání\r\npřiobjednávaný\r\npřiobjednávat\r\npřioději\r\npřioděju\r\npřioděl\r\npřioděnější\r\npřiodění\r\npřioděn\r\npřioděný\r\npřiodít\r\npřiodívání\r\npřiodívaný\r\npřiodívat\r\npřiostření\r\npřiostřený\r\npřiostřit\r\npřiostřování\r\npřiostřovaný\r\npřiostřovat\r\npřiostřovávat\r\npřiostřující\r\npřiotrávení\r\npřiotrávený\r\npřiotrávit\r\npříp\r\npřipadající\r\npřipadanější\r\npřipadání\r\npřipadaný\r\npřipadat\r\npřipadávání\r\npřipadávaný\r\npřipadávat\r\npřípadě\r\npřípad\r\npřípad\r\npřipadlejší\r\npřipadlý\r\npřípadnější\r\npřipadnout\r\npřipadnutí\r\npřípadný\r\npřípadový\r\npřipajdání\r\npřipajdat\r\npřipájení\r\npřipájený\r\npřipájet\r\npřipálenější\r\npřipálenina\r\npřipálení\r\npřipálený\r\npřipálit\r\npřipalovací\r\npřipalovanější\r\npřipalovaní\r\npřipalování\r\npřipalovaný\r\npřipalovat\r\npřipalovávání\r\npřipalovávaný\r\npřipalovávat\r\npřipalující\r\npřipamatování\r\npřipamatovaný\r\npřipamatovat\r\npřipaření\r\npřipařený\r\npřipařit\r\npřipařování\r\npřipařovaný\r\npřipařovat\r\npřipařovávat\r\npřipásanější\r\npřipásání\r\npřipásaný\r\npřipásatelnější\r\npřipásatelný\r\npřipásat\r\npřipažení\r\npřipažený\r\npřipažit\r\npřipažování\r\npřipažovaný\r\npřipažovat\r\npřipéct\r\npřipečenější\r\npřipečení\r\npřipečený\r\npřipékající\r\npřipékání\r\npřipékaný\r\npřipékat\r\npřipelášení\r\npřipelášit\r\npřipepření\r\npřipepřený\r\npřipepřit\r\npřipevnění\r\npřipevněný\r\npřipevnit\r\npřipevňovací\r\npřipevňování\r\npřipevňovaný\r\npřipevňovat\r\npřipevňovávat\r\npřipevňující\r\npřipíchnout\r\npřipíchnutí\r\npřipíchnutý\r\npřipichování\r\npřipichovaný\r\npřipichovat\r\npřipíjenější\r\npřipíjení\r\npřipíjený\r\npřipíjet\r\npřipilování\r\npřipilovaný\r\npřipilovat\r\npřipilovávání\r\npřipilovávaný\r\npřipilovávat\r\npřipínací\r\npřipínáček\r\npřipínání\r\npřipínaný\r\npřipínat\r\npřipinkat\r\npřípis\r\npřípiska\r\npřipisovanější\r\npřipisování\r\npřipisovaný\r\npřipisovat\r\npřipisující\r\npřipíši\r\npřipíšu\r\npřipít\r\npřipitější\r\npřípitek\r\npřipití\r\npřipitomělejší\r\npřipitomělý\r\npřipitomnělý\r\npřipit\r\npřipitý\r\npřipitý\r\npřipjal\r\npřipjat\r\npřipjatý\r\npřiplácející\r\npřiplacenější\r\npřiplácenější\r\npřiplacení\r\npřiplácení\r\npřiplacený\r\npřiplácený\r\npřiplácet\r\npřipláclý\r\npřiplácnout\r\npřiplácnutí\r\npřiplácnutý\r\npřiplachtění\r\npřiplachtit\r\npříplatek\r\npřiplatit\r\npříplatkový\r\npřiplavání\r\npřiplavat\r\npřiplavávání\r\npřiplavávat\r\npřiplavejme\r\npřiplavej\r\npřiplavejte\r\npřiplavení\r\npřiplavený\r\npřiplavit\r\npřiplavování\r\npřiplavovaný\r\npřiplavovat\r\npřiplazení\r\npřiplazit\r\npřiplést\r\npřiplétání\r\npřiplétat\r\npřípletek\r\npřipletení\r\npřipletený\r\npřiplížení\r\npřiplížit\r\npřiplout\r\npřiplouvání\r\npřiplouvaný\r\npřiplouvat\r\npřiploužení\r\npřiploužit\r\npřiplutí\r\npřiplutý\r\npřiplynout\r\npřiplynutí\r\npřiplynutý\r\npřipnout\r\npřipnutější\r\npřipnutí\r\npřipnutý\r\npřipočíst\r\npřipočítání\r\npřipočítaný\r\npřipočítat\r\npřipočítávající\r\npřipočítávání\r\npřipočítávaný\r\npřipočítávat\r\npřipočtení\r\npřipočtený\r\npřipodobení\r\npřipodobnění\r\npřipodobněný\r\npřipodobnit\r\npřipodobňování\r\npřipodobňovaný\r\npřipodobňovat\r\npřipodotčení\r\npřipodotčený\r\npřipodotknout\r\npřipodotknutí\r\npřipodotknutý\r\npřipochodování\r\npřipochodovaný\r\npřipochodovat\r\npřipojenější\r\npřipojení\r\npřípojení\r\npřipojený\r\npřípojený\r\npřipojistit\r\npřipojištění\r\npřipojištěný\r\npřipojišťovací\r\npřipojišťování\r\npřipojišťovaný\r\npřipojišťovat\r\npřipojit\r\npřípojit\r\npřipojitelnější\r\npřipojitelný\r\npřípojka\r\npřípojkový\r\npřípojnice\r\npřípojný\r\npřipojovací\r\npřipojovanější\r\npřipojování\r\npřipojovaný\r\npřipojovat\r\npřipojovatel\r\npřipojovatelův\r\npřipojovávání\r\npřipojovávaný\r\npřipojovávat\r\npřípojovější\r\npřípojový\r\npřípoj\r\npřipojující\r\npřipomenout\r\npřipomenutí\r\npřipomenutý\r\npřipomínající\r\npřipomínání\r\npřipomínaný\r\npřipomínat\r\npřipomínka\r\npřipomínkovací\r\npřipomínkování\r\npřipomínkovaný\r\npřipomínkovat\r\npřipomínkovávání\r\npřipomínkovávaný\r\npřipomínkovávat\r\npřipomínkový\r\npřipomněl\r\npřípona\r\npříponový\r\npříposlech\r\npříposlechovější\r\npříposlechový\r\npřiposlouchávající\r\npřiposlouchávanější\r\npřiposlouchávání\r\npřiposlouchávaný\r\npřiposlouchávat\r\npřiposražený\r\npřipotácení\r\npřipotácet\r\npřipouštěcí\r\npřipouštědlo\r\npřipouštějící\r\npřipouštěnější\r\npřipouštění\r\npřipouštěný\r\npřipouštět\r\npřipoutání\r\npřipoutaný\r\npřipoutat\r\npřipoutávání\r\npřipoutávaný\r\npřipoutávat\r\npřípovrchový\r\npřipozdívání\r\npřipozdívaný\r\npřipozdívat\r\npříprava\r\npřípravek\r\npřipravenější\r\npřipravení\r\npřipravený\r\npřipravit\r\npřipravitelnější\r\npřípravka\r\npřípravkový\r\npřípravna\r\npřípravný\r\npřipravovanější\r\npřipravování\r\npřipravovaný\r\npřipravovat\r\npřipravovování\r\npřipravovovaný\r\npřipravovovat\r\npřipravující\r\npřipražení\r\npřipražený\r\npřipražit\r\npřiprogramování\r\npřiprogramovaný\r\npřiprogramovat\r\npřiprogramovávání\r\npřiprogramovávaný\r\npřiprogramovávat\r\npřipřáhnout\r\npřipřáhnutí\r\npřipřahovat\r\npřipřažený\r\npřipřešívání\r\npřipřešívaný\r\npřipřešívat\r\npřípřež\r\npřipsal\r\npřipsanější\r\npřipsanější\r\npřipsání\r\npřipsán\r\npřipsaný\r\npřipsáný\r\npřipsat\r\npřípůstek\r\npřípusten\r\npřipustit\r\npřípustka\r\npřípustkový\r\npřípustkový\r\npřípustnější\r\npřípustný\r\npřipuštěnější\r\npřipuštění\r\npřipuštěný\r\npřiputování\r\npřiputovaný\r\npřiputovat\r\npříraz\r\npřirazit\r\npřiražení\r\npřirážení\r\npřiražený\r\npřirážený\r\npřirážet\r\npřirážka\r\npřirážkový\r\npříroda\r\npřírodnější\r\npřírodnina\r\npřírodní\r\npřírodopiscův\r\npřírodopisec\r\npřírodopis\r\npřírodopisný\r\npřírodověda\r\npřírodovědce\r\npřírodovědcův\r\npřírodovědecký\r\npřírodovědec\r\npřírodovědečtější\r\npřírodovědný\r\npřírodoznalství\r\npřírodozpytcův\r\npřírodozpytec\r\npřírodozpyt\r\npřirostlejší\r\npřirostl\r\npřirostlý\r\npřirostu\r\npřiroubování\r\npřiroubovaný\r\npřiroubovat\r\npřirovnání\r\npřirovnaný\r\npřirovnatelnější\r\npřirovnat\r\npřirovnávací\r\npřirovnávající\r\npřirovnávání\r\npřirovnávaný\r\npřirovnávat\r\npřirozenější\r\npřirození\r\npřirozený\r\npřirozpláclejší\r\npříruba\r\npřírubový\r\npříručí\r\npříručka\r\npříručkový\r\npříruční\r\npřirůstání\r\npřirůstat\r\npřírůstek\r\npřirůst\r\npřírůstkový\r\npřirýsování\r\npřiřadění\r\npřiřaděný\r\npřiřadit\r\npřiřaďovat\r\npřiřazení\r\npřiřazený\r\npřiřazovací\r\npřiřazování\r\npřiřazovaný\r\npřiřazovat\r\npřiřazující\r\npřiřčení\r\npřiřčený\r\npřiřčený\r\npřiřekl\r\npřiřeknu\r\npřiřeknut\r\npřiřezanější\r\npřiřezání\r\npřiřezaný\r\npřiřezat\r\npřiřezávací\r\npřiřezávající\r\npřiřezávanější\r\npřiřezávání\r\npřiřezávaný\r\npřiřezávat\r\npřířez\r\npřiříci\r\npřiříct\r\npřiřítit\r\npřiříznout\r\npřiříznutější\r\npřiříznutí\r\npřiříznutý\r\npřiříznutý\r\npřiřknout\r\npřiřknutí\r\npřiřknutý\r\npřísada\r\npřisadit\r\npřísahající\r\npřísahání\r\npřísahaný\r\npřísahat\r\npřísaha\r\npřisání\r\npřisát\r\npřisát\r\npřisátý\r\npřisávající\r\npřisávání\r\npřisávaný\r\npřisávat\r\npřísavka\r\npřísavný\r\npřisázenější\r\npřisazení\r\npřisázení\r\npřisazený\r\npřisázený\r\npřisázet\r\npřisazovací\r\npřisazovanější\r\npřisazování\r\npřisazovaný\r\npřisazovat\r\npřisečení\r\npřisečen\r\npřísečenský\r\npřisečený\r\nPřísečná\r\npřiseču\r\npřisedající\r\npřisedání\r\npřisedat\r\npřisedávání\r\npřisedávat\r\npřísedět\r\npřísedící\r\npřisedlý\r\npřisednout\r\npřisednutí\r\npřisekanější\r\npřisekání\r\npřisekaný\r\npřisekat\r\npřisekávání\r\npřisekávaný\r\npřisekávat\r\nPříseka\r\npřisekl\r\npřiseknout\r\npřiseknutí\r\npřiseknutý\r\npřísežný\r\npřischlý\r\npřischnl\r\npřischnout\r\npřischnutí\r\npřisíct\r\npřiskákanější\r\npřiskákání\r\npřiskákáno\r\npřiskákaný\r\npřiskákat\r\npřiskakování\r\npřiskakovat\r\npřiskakovávání\r\npřiskakovávaný\r\npřiskakovávat\r\npřiskočení\r\npřiskočit\r\npřískok\r\npřiskotačení\r\npřiskotačit\r\npřiskřípnout\r\npřiskřípnutí\r\npřiskřípnutý\r\npřisladit\r\npřislazení\r\npřislazený\r\npřislazování\r\npřislazovaný\r\npřislazovat\r\npřislíbení\r\npřislíbený\r\npříslib\r\npřislíbit\r\npřislibování\r\npřislibovat\r\npříslovce\r\npříslovečný\r\npřísloví\r\npříslovka\r\npřisluhovaččin\r\npřisluhovačka\r\npřisluhovačský\r\npřisluhovačství\r\npřisluhovač\r\npřisluhovačův\r\npřisluhování\r\npřisluhovat\r\npřisluhovatelka\r\npřisluhovatel\r\npřisluhovatelův\r\npřisluhující\r\npřísluní\r\npříslušející\r\npříslušení\r\npříslušenství\r\npříslušet\r\npříslušící\r\npříslušnější\r\npříslušnice\r\npříslušník\r\npříslušníkův\r\npříslušný\r\npřismahlejší\r\npřismahnutí\r\npřismažit\r\npřísnější\r\npřisnění\r\npřisněný\r\npřisnít\r\npřísný\r\npřisolenější\r\npřisolení\r\npřisolený\r\npřisolit\r\npřisolování\r\npřisolovaný\r\npřisolovat\r\npřisolovávání\r\npřisolovávaný\r\npřisolovávat\r\npřisoudit\r\npřisoušení\r\npřisoušený\r\npřisoušet\r\npřisouvání\r\npřisouvaný\r\npřisouvat\r\npřisouzenější\r\npřisouzení\r\npřisouzený\r\npřispání\r\npřispat\r\npřispávání\r\npřispávat\r\npřispěchání\r\npřispěchat\r\npřispění\r\npřispět\r\npřispěvatelčin\r\npřispěvatelka\r\npřispěvatel\r\npřispěvatelův\r\npříspěvek\r\npříspěvkový\r\npřispíšení\r\npřispíšit\r\npřispívající\r\npřispívání\r\npřispívatelčin\r\npřispívatelka\r\npřispívatel\r\npřispívatelův\r\npřispívat\r\npřistál\r\npřistaní\r\npřistání\r\npřistanu\r\npřistát\r\npříst\r\npřistávací\r\npřistávající\r\npřistávání\r\npřistávat\r\npřístavba\r\npřístavek\r\npřistavení\r\npřistavění\r\npřistavený\r\npřistavěný\r\npřistavět\r\npřístav\r\npřístaviště\r\npřistavit\r\npřístavkový\r\npřístavní\r\npřistavovanější\r\npřistavování\r\npřistavovaný\r\npřistavovat\r\npřistěhovalcův\r\npřistěhovalčin\r\npřistěhovalecký\r\npřistěhovalectví\r\npřistěhovalec\r\npřistěhovalka\r\npřistěhovalkyně\r\npřistěhovalkynin\r\npřistěhovalý\r\npřistěhování\r\npřistěhovaný\r\npřistehovat\r\npřistěhovat\r\npřistěhovávání\r\npřistěhovávaný\r\npřistěhovávat\r\npřistelu\r\npřístěnek\r\npřistihnout\r\npřistihnutí\r\npřistihovanější\r\npřistihování\r\npřistihovaný\r\npřistihovat\r\npřistihující\r\npřistíněnější\r\npřistínění\r\npřistíněný\r\npřistínit\r\npřistiňovanější\r\npřistiňování\r\npřistiňovaný\r\npřistiňovat\r\npřistiňující\r\npřistiženější\r\npřistižení\r\npřistižený\r\npřistlal\r\npřistlanější\r\npřistlání\r\npřistlaný\r\npřistlat\r\npřístojnější\r\npřístojný\r\npřistoupení\r\npřistoupený\r\npřistoupit\r\npřistrčení\r\npřistrčený\r\npřistrčit\r\npřistrkanější\r\npřistrkání\r\npřistrkaný\r\npřistrkat\r\npřistrkávání\r\npřistrkávaný\r\npřistrkávat\r\npřistrkovat\r\npřístrojek\r\npřistrojení\r\npřistrojený\r\npřistrojit\r\npřistrojování\r\npřistrojovaný\r\npřistrojovat\r\npřístrojový\r\npřístroj\r\npřistrouhanější\r\npřistrouhání\r\npřistrouhaný\r\npřistrouhat\r\npřistrouhávanější\r\npřistrouhávání\r\npřistrouhávaný\r\npřistrouhávat\r\npřistřelování\r\npřistřelovaný\r\npřistřelovat\r\npřistřelovávání\r\npřistřelovávaný\r\npřistřelovávat\r\npřístřešek\r\npřístřeší\r\npřístřeškový\r\npřistřihání\r\npřistříhání\r\npřistřihaný\r\npřistříhaný\r\npřistřihat\r\npřistříhat\r\npřistřihávání\r\npřistříhávání\r\npřistřihávaný\r\npřistříhávaný\r\npřistřihávat\r\npřistříhávat\r\npřistřihnout\r\npřistříhnout\r\npřistřihnutí\r\npřistřihovací\r\npřistřihovadlo\r\npřistřihování\r\npřistřihovaný\r\npřistřihovat\r\npřistřižený\r\npřístupen\r\npřístup\r\npřístupnější\r\npřístupný\r\npřistupování\r\npřistupováno\r\npřistupovat\r\npřístupový\r\npřistupující\r\npřistýlání\r\npřistýlaný\r\npřistýlat\r\npřistýlka\r\npřísudek\r\npřísudkový\r\npřisukovací\r\npřisukování\r\npřisukovaný\r\npřisukovat\r\npřísun\r\npřisunout\r\npřisunování\r\npřisunovaný\r\npřisunovat\r\npřísunový\r\npřisunutí\r\npřisunutý\r\npřisupění\r\npřisupěný\r\npřisupět\r\npřísušek\r\npřisuzovanější\r\npřisuzování\r\npřisuzovaný\r\npřisuzovat\r\npřisuzující\r\npřisvědčení\r\npřisvědčený\r\npřisvědčit\r\npřisvědčivý\r\npřisvědčování\r\npřisvědčovat\r\npřisvětlení\r\npřisvícení\r\npřisvícený\r\npřísvit\r\npřisvítit\r\npřisvojení\r\npřisvojený\r\npřisvojit\r\npřisvojovací\r\npřisvojování\r\npřisvojovaný\r\npřisvojovat\r\npřisvojující\r\npřisycení\r\npřisychat\r\npřisýchat\r\npřisypající\r\npřisypanější\r\npřisypání\r\npřisýpání\r\npřisypaný\r\npřisýpaný\r\npřisypat\r\npřisýpat\r\npřisypávající\r\npřisypávanější\r\npřisypávání\r\npřisypávaný\r\npřisypávat\r\npřišedší\r\npřišel\r\npříšera\r\npříšerka\r\npříšernější\r\npříšerný\r\npříšeří\r\npřišít\r\npřišitější\r\npřišití\r\npřišitý\r\npřišitý\r\npřišívanější\r\npřišívání\r\npřišívaný\r\npřišívat\r\npřiškrabání\r\npřiškrábání\r\npřiškrabaný\r\npřiškrábaný\r\npřiškrabat\r\npřiškrábat\r\npřiškrabávání\r\npřiškrabávaný\r\npřiškrabávat\r\npřiškrabování\r\npřiškrabovaný\r\npřiškrabovat\r\npřiškrcenější\r\npřiškrcení\r\npřiškrcený\r\npřiškrcování\r\npřiškrcovaný\r\npřiškrcovat\r\npřiškrcovávání\r\npřiškrcovávaný\r\npřiškrcovávat\r\npřiškrtit\r\npříškvarek\r\npřišlapání\r\npřišlapaný\r\npřišlapat\r\npřišlapávání\r\npřišlapávaný\r\npřišlapávat\r\npřišlápnout\r\npřišlápnutí\r\npřišlápnutý\r\npřišlapování\r\npřišlapovaný\r\npřišlapovat\r\npřišlapovat\r\npřišlejší\r\npřišlý\r\npřišněrovávat\r\npřišoupnout\r\npřišoupnutí\r\npřišoupnutý\r\npřišourat\r\nPříšovice\r\npříšovický\r\nPříšov\r\nPříšovský\r\npříšovský\r\npřišpendlení\r\npřišpendlený\r\npřišpendlit\r\npřišpendlovat\r\npřišroubování\r\npřišroubovaný\r\npřišroubovat\r\npřišroubovávání\r\npřišroubovávaný\r\npřišroubovávat\r\npříštipek\r\npříštipkaření\r\npříštipkařit\r\npřištipování\r\npřištipovaný\r\npřištipovat\r\npříštítný\r\npříští\r\npřišťouchnout\r\npřišťouchnutí\r\npřišťouchnutý\r\nPříštpo\r\npřištvanější\r\npřištvání\r\npřištvaný\r\npřištvat\r\npřištvávání\r\npřištvávaný\r\npřištvávat\r\npřitáčení\r\npřitahání\r\npřitahaný\r\npřitahat\r\npřítah\r\npřitáhnout\r\npřitáhnutí\r\npřitahovač\r\npřitahovanější\r\npřitahování\r\npřitahovaný\r\npřitahovat\r\npřitahovávání\r\npřitahovávaný\r\npřitahovávat\r\npřitahující\r\npřitakací\r\npřitakající\r\npřitakání\r\npřitakat\r\npřitakávač\r\npřitakávačův\r\npřitakávající\r\npřitakávání\r\npřitakávat\r\npřít\r\npřitančení\r\npřitančený\r\npřitančit\r\npřitápění\r\npřitápět\r\npřiťapkání\r\npřiťapkat\r\npřiťápnout\r\npřiťápnutí\r\npřiťápnutý\r\npřitaženější\r\npřitažení\r\npřitažený\r\npřitažitelnější\r\npřitažitelný\r\npřitažlivější\r\npřitažlivý\r\npřítažlivý\r\npřitéct\r\npřitékající\r\npřitékání\r\npřitékat\r\npřiteklejší\r\npřiteklý\r\npřítelčin\r\npřítelem\r\npřítele\r\npřítelíček\r\npřítelíčkův\r\npříteli\r\npřítelka\r\npřítelkyně\r\npřítelkynin\r\npřítel\r\npřítelův\r\npřitesanější\r\npřitesání\r\npřitesaný\r\npřitesat\r\npřitesávání\r\npřitesávaný\r\npřitesávat\r\npřitěžování\r\npřitěžovaný\r\npřitěžovat\r\npřitěžující\r\npřítěž\r\npřitírat\r\npřitisknout\r\npřitisknutější\r\npřitisknutí\r\npřitisknutý\r\npřitíženější\r\npřitížení\r\npřitížený\r\npřitížit\r\npřitknout\r\npřitlačení\r\npřitlačený\r\npřitlačit\r\npřítlačný\r\npřitlačovanější\r\npřitlačování\r\npřitlačovaný\r\npřitlačovat\r\npřítlak\r\npřitlouct\r\npřitloukanější\r\npřitloukání\r\npřitloukaný\r\npřitloukat\r\npřitloukávanější\r\npřitloukávání\r\npřitloukávaný\r\npřitloukávat\r\npřitlučenější\r\npřitlučení\r\npřitlučený\r\npřitlumenější\r\npřitlumení\r\npřitlumený\r\npřitlumit\r\npřítmí\r\npřitočení\r\npřitočený\r\npřitočit\r\nPřítočno\r\npřítok\r\npřítokový\r\npřitom\r\npřítomen\r\npřítomný\r\npřitopenější\r\npřitopení\r\npřitopený\r\npřítop\r\npřitopit\r\npřitopitelnější\r\npřitopitelný\r\npřitra\r\npřitrhající\r\npřitrhanější\r\npřitrhání\r\npřitrhaný\r\npřitrhat\r\npřitrhávající\r\npřitrhávanější\r\npřitrhávání\r\npřitrhávaný\r\npřitrhávat\r\npřitrhnout\r\npřitrhnutější\r\npřitrhnutí\r\npřitrhnutý\r\npřitroublejší\r\npřitroublý\r\npřitržení\r\npřitržený\r\npřítrž\r\npřitření\r\npřitřený\r\npřitřít\r\npřitučňující\r\npřituhnout\r\npřituhnutí\r\npřituhnutý\r\npřituhování\r\npřituhovat\r\npřiťukávání\r\npřiťukávaný\r\npřiťukávat\r\npřiťuknout\r\npřiťuknutí\r\npřiťuknutý\r\npřitulení\r\npřitulený\r\npřitulit\r\npřítulnější\r\npřítulný\r\npřitvrdit\r\npřitvrdlejší\r\npřitvrzení\r\npřitvrzený\r\npřitvrzování\r\npřitvrzovaný\r\npřitvrzovat\r\npřitvrzující\r\npřiučenější\r\npřiučení\r\npřiučený\r\npřiučit\r\npřiučovanější\r\npřiučování\r\npřiučovaný\r\npřiučovat\r\npřiúčtování\r\npřiučující\r\npřiudit\r\npříušnice\r\npříušní\r\npřiuzení\r\npřiuzený\r\npřivábení\r\npřivábený\r\npřivábit\r\npřivaděč\r\npřivádějící\r\npřiváděnější\r\npřivádění\r\npřiváděný\r\npřivádět\r\npřivalení\r\npřiválení\r\npřivalený\r\npřiválený\r\npřiválet\r\npříval\r\npřivalit\r\npřívalový\r\npřivandrovalcův\r\npřivandrovalectví\r\npřivandrovalec\r\npřivandrovat\r\npřivání\r\npřivanout\r\npřivaření\r\npřiváření\r\npřivařený\r\npřivářený\r\npřivářet\r\npřivařit\r\npřivařování\r\npřivařovaný\r\npřivařovat\r\npřivařovávat\r\npřivát\r\npřivátý\r\npřivázanější\r\npřivázání\r\npřivázaný\r\npřivázat\r\npřivázávanější\r\npřivázávání\r\npřivázávaný\r\npřivázávat\r\npřivazovanější\r\npřivazování\r\npřivazovaný\r\npřivazovat\r\npřivazující\r\npřivážející\r\npřívažek\r\npřiváženější\r\npřivážení\r\npřivážený\r\npřivážet\r\npřiváži\r\npřivážit\r\npřivažovanější\r\npřivažování\r\npřivažovaný\r\npřivažovat\r\npřivažovatelnější\r\npřivažovatelný\r\npřivažující\r\npřivdat\r\npřivedenější\r\npřivedení\r\npřiveden\r\npřivedený\r\npřivedl\r\npřivedu\r\npřívěsek\r\npřívěs\r\npřivěsit\r\npřiveslování\r\npřiveslovat\r\npřívěsný\r\npřivést\r\npřívěšek\r\npřivěšení\r\npřivěšený\r\npřivěšování\r\npřivěšovat\r\nPřívětice\r\npřívětický\r\npřívětivější\r\npřivětivý\r\npřívětivý\r\npřivezenější\r\npřivezení\r\npřivezený\r\npřivézt\r\npřivinout\r\npřivinování\r\npřivinovaný\r\npřivinovat\r\npřivinutí\r\npřivinutý\r\npřivíranější\r\npřivírání\r\npřivíraný\r\npřivírat\r\npřivítání\r\npřivítaný\r\npřivítat\r\npřivláčení\r\npřivláčený\r\npřivláčet\r\npřívlastek\r\npřívlastkový\r\npřivlastnění\r\npřivlastněný\r\npřivlastnit\r\npřivlastňovací\r\npřivlastňování\r\npřivlastňovaný\r\npřivlastňovat\r\npřivlastňovávat\r\npřivléct\r\npřivlečenější\r\npřivlečení\r\npřivlečený\r\npřivlékání\r\npřivlékaný\r\npřivlékat\r\npřivlekl\r\npřivléknout\r\npřivodění\r\npřivoděný\r\npřívod\r\npřivodit\r\npřívodka\r\npřívodní\r\npřívodný\r\npřívodový\r\npřivolající\r\npřivolanější\r\npřivolání\r\npřivolaný\r\npřivolat\r\npřivolávací\r\npřivolávající\r\npřivolávanější\r\npřivolávání\r\npřivolávaný\r\npřivolávat\r\npřivolení\r\npřivolený\r\npřivolit\r\npřivonění\r\npřivonět\r\npřivoskovat\r\npřívoz\r\npřivozit\r\npřívoznický\r\npřívozničtější\r\npřívozník\r\npřívozníkův\r\npřívozný\r\npřivožení\r\npřivožený\r\npřivracení\r\npřivrácení\r\npřivracený\r\npřivrácený\r\npřivracet\r\npřívrat\r\npřivrátit\r\npřívratný\r\nPřívratský\r\npřivrtání\r\npřivrtaný\r\npřivrtat\r\npřivrtávání\r\npřivrtávaný\r\npřivrtávat\r\npřívržencův\r\npřívrženec\r\npřívrženkyně\r\npřívrženkynin\r\npřivřenější\r\npřivření\r\npřivřený\r\npřivřít\r\npřivstání\r\npřivstat\r\npřivstávání\r\npřivstávat\r\npřivtělení\r\npřivtělovat\r\npřivydělání\r\npřivydělaný\r\npřivydělat\r\npřivydělávající\r\npřivydělávání\r\npřivydělávat\r\npřivykající\r\npřivykání\r\npřivykaný\r\npřivykat\r\npřivyklejší\r\npřivyklý\r\npřivyknout\r\npřivyknutí\r\npřivyknutý\r\npřivý\r\npřizabít\r\npřizabit\r\npřizavírat\r\npřizbrojování\r\npřizbrojovaný\r\npřizbrojovat\r\npřizbrojovávání\r\npřizbrojovávaný\r\npřizbrojovávat\r\npřizdění\r\npřizděný\r\npřizdít\r\npřizdívat\r\npřizdívka\r\npřízdoba\r\npřizdobení\r\npřizdobený\r\npřizdobit\r\npřizdobování\r\npřizdobovaný\r\npřizdobovat\r\npříze\r\npřízemek\r\npřízemí\r\npřízemnější\r\npřízemní\r\npřízeň\r\npříznačnější\r\npříznačný\r\npříznak\r\npříznakovější\r\npříznakový\r\npřiznanější\r\npřiznání\r\npřiznaný\r\npřiznat\r\npřiznávací\r\npřiznávající\r\npřiznávanější\r\npřiznávání\r\npřiznávaný\r\npřiznávat\r\npřiznávka\r\npříznivcův\r\npříznivec\r\npříznivější\r\npříznivkyně\r\npříznivkynin\r\npřízniv\r\npříznivý\r\npřízový\r\npřizpůsobenější\r\npřizpůsobení\r\npřizpůsobený\r\npřizpůsobit\r\npřizpůsobitelnější\r\npřizpůsobitelný\r\npřizpůsobivější\r\npřizpůsobivý\r\npřizpůsobivý\r\npřizpůsobovací\r\npřizpůsobování\r\npřizpůsobovaný\r\npřizpůsobovat\r\npřizpůsobující\r\npřízračnější\r\npřízračný\r\npřízrak\r\npřizvánění\r\npřizváněný\r\npřizvánět\r\npřizvání\r\npřizvaný\r\npřizvat\r\npřizvedání\r\npřizvedaný\r\npřizvedat\r\npřizvedávání\r\npřizvedávat\r\npřizvednout\r\npřizvednutí\r\npřizvednutý\r\npřízvisko\r\npřízvučnější\r\npřízvučný\r\npřízvuk\r\npřizvukování\r\npřízvukovaný\r\npřizvukovat\r\npřízvukovat\r\npřizvukovávání\r\npřizvukovávat\r\npřízvukový\r\npřizvukující\r\npřiženění\r\npřiženěný\r\npřiženit\r\npřiženu\r\npřižhavenější\r\npřižhavení\r\npřižhavený\r\npřižhavit\r\npřiživení\r\npřiživit\r\npříživnice\r\npříživnický\r\npříživnictví\r\npříživník\r\npříživníkův\r\npřiživování\r\npřiživovaný\r\npřiživovat\r\npřiživující\r\nPS\r\npsa\r\npsací\r\npsal\r\npsancův\r\npsanec\r\npsanější\r\npsaníčko\r\npsaní\r\npsán\r\npsaný\r\npsáný\r\npsárka\r\nPsárov\r\npsárovský\r\npsát\r\npsávání\r\npsávaný\r\npsávat\r\npsavý\r\nPSČ\r\npse\r\npsech\r\npsem\r\npseudoadiabatický\r\npseudoamatérismus\r\npseudoantičtější\r\npseudoargument\r\npseudodemokratičtější\r\npseudofilozofičtější\r\npseudogotický\r\npseudogotika\r\npseudografický\r\npseudografika\r\npseudogrupa\r\npseudohistorický\r\npseudohistoričtější\r\npseudohistorizující\r\npseudohumanismus\r\npseudohumanista\r\npseudohumanistčin\r\npseudohumanistický\r\npseudohumanističtější\r\npseudohumanistka\r\npseudohumanistův\r\npseudochlapáctví\r\npseudoinformace\r\npseudoinstrukce\r\npseudoinverse\r\npseudojeskyně\r\npseudokapitalismus\r\npseudoklasicismus\r\npseudokód\r\npseudokras\r\npseudokrasový\r\npseudokrystalický\r\npseudolevicovější\r\npseudolevicový\r\npseudoliberalismus\r\npseudoliberalistický\r\npseudolidový\r\npseudomajetek\r\npseudomonáda\r\npseudomorálka\r\npseudonadační\r\npseudonáhodný\r\npseudonorma\r\npseudonym\r\npseudonymum\r\npseudoparalelismus\r\npseudoperiferní\r\npseudopódium\r\npseudopodnikatelství\r\npseudopodnikatel\r\npseudopodnikatelův\r\npseudopodnik\r\npseudopoetičtější\r\npseudopokrok\r\npseudopravdivý\r\npseudoprogram\r\npseudorealismus\r\npseudoregistr\r\npseudorenesanční\r\npseudorevoluční\r\npseudorománský\r\npseudoromantičtější\r\npseudosféra\r\npseudoslohový\r\npseudosocialističtější\r\npseudostylový\r\npseudosurrealismus\r\npseudosvět\r\npseudoškrap\r\npseudotransformační\r\npseudotsuga\r\npseudoumělečtější\r\npseudoumění\r\npseudovarieta\r\npseudověda\r\npseudovědecký\r\npseudovlastenečtější\r\npseudovzdělancův\r\npseudovzdělanec\r\npseudoznak\r\npsi\r\npsíček\r\npsíček\r\npsíčkův\r\npsík\r\npsíkův\r\npsina\r\npsinec\r\npsineček\r\npsinka\r\npsiscích\r\npsisk\r\npsisko\r\npsí\r\nPskov\r\npskovský\r\npsohlavcův\r\npsohlavec\r\npsohlavý\r\npsoriáza\r\nPsota\r\npsota\r\npsotník\r\nPsotová\r\nPsotův\r\npsovi\r\npsovitý\r\npsovod\r\npsovodův\r\npsovský\r\nPSP\r\npsst\r\npst\r\npstroužek\r\npstroužkův\r\npstruhařský\r\npstruhařství\r\npstruhař\r\npstruhařův\r\npstruh\r\npstruhový\r\npstruh\r\npstruhův\r\npstružina\r\npstruží\r\nPstružná\r\npsu\r\npsů\r\npsům\r\nPsutka\r\nPsutková\r\nPsutkův\r\npsy\r\npsýcha\r\npsychiatrický\r\npsychiatriččin\r\npsychiatrička\r\npsychiatrie\r\npsychiatr\r\npsychiatrův\r\npsychiatryně\r\npsychiatrynin\r\npsychický\r\npsychičtější\r\npsychika\r\npsychismus\r\npsychoaktivní\r\npsychoakustika\r\npsychoanalytický\r\npsychoanalytiččin\r\npsychoanalytička\r\npsychoanalytik\r\npsychoanalytikův\r\npsychoanalýza\r\npsychoanalyzující\r\npsychodiagnostický\r\npsychodiagnostika\r\npsychodrama\r\npsychoerotismus\r\npsychofarmakoterapie\r\npsychofarmakum\r\npsychofyzický\r\npsychofyziččin\r\npsychofyzička\r\npsychofyzika\r\npsychofyziologický\r\npsychofyziologie\r\npsychofyziolog\r\npsychofyziologův\r\npsychofyzioložčin\r\npsychofyzioložka\r\npsychogenní\r\npsychogymnastika\r\npsychohra\r\npsychohygiena\r\npsychochemický\r\npsychochemičtější\r\npsycholingvistický\r\npsycholingvistika\r\npsychologický\r\npsychologie\r\npsychologismus\r\npsychologizace\r\npsychologizující\r\npsycholog\r\npsychologův\r\npsycholožčin\r\npsycholožka\r\npsychometrický\r\npsychomotorický\r\npsychomotoričtější\r\npsychopatčin\r\npsychopatický\r\npsychopatismus\r\npsychopatka\r\npsychopatologický\r\npsychopatologie\r\npsychopatolog\r\npsychopatologův\r\npsychopatoložčin\r\npsychopatoložka\r\npsychopat\r\npsychopatův\r\npsychopedie\r\npsychorehabilitační\r\npsychosexuální\r\npsychosociální\r\npsychosomatický\r\npsychosomatika\r\npsychostimulující\r\npsychotanec\r\npsychotechnický\r\npsychotechničtější\r\npsychoterapeutčin\r\npsychoterapeutický\r\npsychoterapeutičtější\r\npsychoterapeutka\r\npsychoterapeut\r\npsychoterapeutův\r\npsychoterapie\r\npsychotický\r\npsychotičtější\r\npsychotronický\r\npsychotroniččin\r\npsychotronička\r\npsychotronika\r\npsychotropní\r\npsychóza\r\npš\r\npšenice\r\nPšenička\r\npšenička\r\nPšeničková\r\nPšeničkův\r\npšeničný\r\npšenka\r\nPšovan\r\nPšovanův\r\nPšov\r\npšovský\r\npšš\r\npšššt\r\npššt\r\npšt\r\npštrosí\r\npštros\r\npštros\r\npštrosův\r\nPt\r\npta\r\nptactvo\r\nptáčátko\r\nptáče\r\nptáček\r\nPtáček\r\nptačinec\r\nptačí\r\nPtáčková\r\nPtáčkův\r\nptáčkův\r\nptáčnice\r\nPtáčníková\r\nptáčník\r\nPtáčník\r\nPtáčníkův\r\nptáčníkův\r\nptající\r\nptákohlavý\r\nptakopravcův\r\nptakopravectví\r\nptakopravec\r\nptakopysk\r\nptakopyskův\r\nPtáková\r\nptákovina\r\npták\r\nPták\r\nPtákův\r\nptákův\r\nptaní\r\nptát\r\nptávání\r\nptávat\r\nPtenín\r\nptenínský\r\nPTI\r\nPtolemaios\r\nptolemaiovský\r\nPtolemaiův\r\nPtuj\r\nptyalin\r\nptygmatit\r\nptygmatitový\r\nPtýrov\r\nptýrovský\r\npuberťácký\r\npuberťaččin\r\npuberťačka\r\npuberťák\r\npuberťákův\r\npubertálnější\r\npubertální\r\npuberta\r\npubický\r\npublicista\r\npublicistčin\r\npublicistický\r\npublicistika\r\npublicistka\r\npublicistův\r\npublicita\r\npublikace\r\npublikační\r\npublikánčin\r\npublikánka\r\npublikán\r\npublikánův\r\npublikování\r\npublikovaný\r\npublikovat\r\npublikovatelnější\r\npublikovatelný\r\npublikovávání\r\npublikovávaný\r\npublikovávat\r\npublikující\r\npublikum\r\npucflek\r\npucflkův\r\npucolánový\r\nPucov\r\npucovský\r\npučení\r\npučený\r\npučet\r\npučící\r\npučismus\r\npučista\r\npučistčin\r\npučistický\r\npučističtější\r\npučistka\r\npučistův\r\npučnice\r\npuč\r\npůda\r\npud\r\npůdička\r\nPudilová\r\nPudil\r\nPudilův\r\npuding\r\npudingový\r\npudink\r\npudinkový\r\npudit\r\npudivější\r\npudivý\r\nPudláková\r\nPudlák\r\nPudlákův\r\npudlice\r\npudlíček\r\npudlík\r\npudlíkův\r\npudlí\r\npudlovací\r\npudlování\r\npudlovaný\r\npudlovat\r\npudlovna\r\npudl\r\npudlův\r\npůdní\r\npůdorys\r\npůdorysna\r\npůdorysný\r\npůdorysný\r\npůdotvorný\r\npůdovací\r\npůdování\r\npůdovaný\r\npůdovat\r\npudovější\r\npudový\r\npůdoznalcův\r\npůdoznalecký\r\npůdoznalectví\r\npůdoznalec\r\npůdoznalkyně\r\npůdoznalkynin\r\npůdoznalství\r\npudr\r\npudrování\r\npudrovaný\r\npudrovat\r\npudrovátko\r\npudrový\r\npudřenka\r\npuf\r\npufrační\r\npufrovací\r\npugét\r\nPuhalová\r\nPuhal\r\nPuhalův\r\nPuchalský\r\npuch\r\nPuchlovice\r\npuchlovický\r\nPuchmajerová\r\nPuchmajer\r\nPuchmajerův\r\npuchnout\r\npuchnutí\r\nPúchov\r\npúchovský\r\npúchovský\r\npuchový\r\npuchřet\r\npuchýřek\r\npuchýřka\r\npuchýřkování\r\npuchýřovitý\r\npuchýř\r\npůjčení\r\npůjčený\r\npůjčil\r\npůjčíme\r\npůjčím\r\npůjčí\r\npůjčíš\r\npůjčitel\r\npůjčitelův\r\npůjčíte\r\npůjčit\r\npůjčka\r\npůjčkový\r\npůjčme\r\npůjč\r\npůjčování\r\npůjčovaný\r\npůjčovat\r\npůjčovatel\r\npůjčovatelův\r\npůjčovna\r\npůjčovné\r\npůjčovní\r\npůjčte\r\npůjčující\r\npůjdeme\r\npůjde\r\npůjdeš\r\npůjdete\r\npůjdou\r\npůjdu\r\npukající\r\npukání\r\npukaný\r\npukat\r\npukavec\r\npukavější\r\npukavý\r\npuk\r\npuklejší\r\npuklice\r\npuklina\r\npuklinka\r\npuklinový\r\npuklý\r\npuknout\r\npuknutí\r\npuknutý\r\npukrlátko\r\npukrle\r\npůl\r\npůlarch\r\npůlarchový\r\npůlcentimetrový\r\nPulcová\r\nPulcův\r\npulcův\r\npůlčtverčíkový\r\npůlden\r\npůldenní\r\npůldne\r\npůldnech\r\npůldne\r\npůldnem\r\npůldni\r\npůldní\r\npůldnu\r\npůldnů\r\npůldnům\r\npůldny\r\npůldolar\r\npůldruhadenní\r\npůldruhahodinový\r\npůldruhakilometrový\r\npůldruhalitrový\r\npůldruhaměsíční\r\npůldruhametrový\r\npůldruhaminutový\r\npůldruharoční\r\npůldruhatýdenní\r\npůldruhý\r\npůle\r\npulec\r\nPulec\r\npůlení\r\npůlený\r\npůle\r\npůlgramový\r\npůlhák\r\npůlhektarový\r\npůlhodina\r\npůlhodinka\r\npůlhodinový\r\npůli\r\npůlí\r\nPulicarová\r\nPulicar\r\nPulicarův\r\npůlicí\r\npůlící\r\nPulíček\r\nPulíčková\r\nPulíčkův\r\npulírování\r\npulírovaný\r\npulírovat\r\npůlit\r\npůlkařčin\r\npůlkařka\r\nPulkava\r\npůlka\r\npůlkilogramový\r\npůlkilometrový\r\nPulkov\r\npulkovský\r\nPulkrábek\r\nPulkrábková\r\nPulkrábkův\r\npůlkruh\r\npůlkruhový\r\npůlkulatý\r\npůlkulový\r\npůlkyv\r\npůllitr\r\npůllitrovka\r\npůllitrový\r\npůllitrový\r\npůlměsícový\r\npůlměsíc\r\npůlměsíček\r\npůlměsíčitý\r\npůlměsíční\r\npůlmetrákový\r\npůlmetrový\r\npůlmiliardový\r\npůlmilimetrový\r\npůlmilionový\r\npůlmiliónový\r\npůlminuta\r\npůlminutka\r\npůlminutový\r\npůlnoc\r\npůlnoční\r\npůloblouk\r\npůlobloukový\r\npůlobrat\r\npulovr\r\npůlový\r\npůlpalcový\r\nPůlpánová\r\nPůlpán\r\nPůlpánův\r\npulpa\r\npůlpinta\r\npulpit\r\npůlprocentní\r\npůlroční\r\npůlrok\r\npulsace\r\npulsační\r\npůlsáhový\r\npulsar\r\npuls\r\npůlslovo\r\npůlsnímek\r\npulsní\r\npulsování\r\npulsovat\r\npulsový\r\npůlstoletí\r\npůlstránka\r\npůlstránkový\r\npulsující\r\npůlšilink\r\npultek\r\npult\r\npultík\r\npůltón\r\npůltónový\r\npultový\r\npůltučný\r\npůltunový\r\npůltýdenní\r\npůlverš\r\npůlvlnný\r\npulzace\r\npulzační\r\npulzar\r\npulz\r\npulzní\r\npulzování\r\npulzovat\r\npulzující\r\npuma\r\npumiččin\r\npumička\r\npumometčík\r\npumometčíkův\r\npumový\r\npumpařčin\r\npumpařka\r\npumpař\r\npumpařův\r\npumpa\r\npumpička\r\npumpky\r\npumpnout\r\npumpnutí\r\npumpnutý\r\npumpování\r\npumpovaný\r\npumpovat\r\npumpující\r\npunc\r\npuncovanější\r\npuncovaný\r\npuncovat\r\npuncovnice\r\npuncovnictví\r\npuncovník\r\npuncovníkův\r\npuncovní\r\npunčocháč\r\npunčochářčin\r\npunčochářka\r\nPunčochářová\r\npunčochářský\r\nPunčochář\r\nPunčochářův\r\npunčocha\r\npunčochový\r\npunčoška\r\npunčoškový\r\npunčový\r\npunč\r\npůnebí\r\npunkce\r\npunkerčin\r\npunkerka\r\npunker\r\npunkerův\r\npunkevní\r\npunk\r\npunkový\r\npunkrockový\r\npunktace\r\npunktační\r\npunktující\r\nPunkva\r\npuntíček\r\npuntičkářčin\r\npuntičkářka\r\npuntičkářský\r\npuntičkářství\r\npuntičkář\r\npuntičkářův\r\npuntíčkovaný\r\npuntíčkový\r\npuntík\r\npuntíkovaný\r\npuntíkový\r\npupalka\r\npupava\r\npupečník\r\npupečníkový\r\npupeční\r\npupek\r\npupenec\r\npupen\r\npupenový\r\npupíček\r\npupík\r\npupila\r\npupínek\r\npupkáč\r\npupkáčův\r\npupkatější\r\npupkatý\r\nPupp\r\nPuppův\r\npurifikace\r\npurin\r\npurinový\r\npurismus\r\npurista\r\npuristčin\r\npuristický\r\npurističtější\r\npuristka\r\npuristův\r\npuritanismus\r\npuritanistický\r\npuritánka\r\npuritán\r\npuritánský\r\npuritánství\r\npuritánštější\r\npuritánův\r\nPurkartová\r\nPurkart\r\nPurkartův\r\npurkmistr\r\npurkmistrův\r\npurkrabí\r\npurkrabský\r\npurkrabství\r\nPurkyně\r\nPurkyňová\r\nPurkyňův\r\nPurmenský\r\nPurmová\r\nPurm\r\nPurmův\r\nPurová\r\npurpur\r\npurpurový\r\nPur\r\nPurův\r\npusa\r\nPuschová\r\nPusch\r\nPuschův\r\npusinka\r\npusinkování\r\npusinkovaný\r\npusinkovat\r\npusinkovávání\r\npusinkovávaný\r\npusinkovávat\r\npůsobek\r\npůsobení\r\npůsobený\r\npůsobící\r\npůsobiště\r\npůsobit\r\npůsobívání\r\npůsobívaný\r\npůsobívat\r\npůsobivější\r\npůsobivý\r\npůsobivý\r\npůsobnost\r\nPustějov\r\npustějovský\r\npustější\r\nPustek\r\nPustevny\r\npůst\r\npustiměřský\r\nPustiměř\r\npustina\r\npustinný\r\npustit\r\nPustka\r\nPustková\r\nPustkův\r\npustnout\r\npustnutí\r\npust\r\npustopustý\r\npustošení\r\npustošený\r\npustošící\r\npustošit\r\npustošivější\r\npustošivý\r\npustota\r\npustší\r\npustý\r\npuškař\r\npuškařův\r\npuška\r\nPuškin\r\nPuškinův\r\npuškový\r\npuškvorcový\r\npuškvorec\r\npuštěnější\r\npuštění\r\npuštěný\r\npuštík\r\npuštíkův\r\npuťák\r\nputiččin\r\nputička\r\nputifarčin\r\nputifarka\r\nPutim\r\nPutimov\r\nputimovský\r\nputimský\r\nPutišová\r\nPutiš\r\nPutišův\r\npuťka\r\npůtka\r\nputna\r\nputnový\r\nputování\r\nputovaný\r\nputovat\r\nputovní\r\nPuttová\r\nPutt\r\nPuttův\r\nputující\r\nputyka\r\nputýnka\r\npův\r\npůvab\r\npůvabnější\r\npůvabný\r\npůvodce\r\npůvodcovství\r\npůvodcův\r\npůvod\r\npůvod\r\npůvodkyně\r\npůvodkynin\r\npůvodnější\r\npůvodní\r\npůvodový\r\npuzení\r\npuzený\r\nPuža\r\nPužová\r\nPužův\r\nPVC\r\nPVO\r\nPVP\r\npyémie\r\nPygmej\r\nPygmejův\r\nPýcha\r\npýchavka\r\npýcha\r\npych\r\nPýchová\r\nPýchův\r\npyj\r\npykající\r\npykání\r\npykaný\r\npykat\r\npykávání\r\npykávat\r\npyknický\r\npyknik\r\npyknometr\r\npyknometrický\r\npyl\r\npyloanalytiččin\r\npyloanalytička\r\npyloanalytik\r\npyloanalytikův\r\npylon\r\npylový\r\npyramida\r\npyramidka\r\npyramidovitý\r\npyramidový\r\npyré\r\nPyreneje\r\npyrenejský\r\npýr\r\npyrhotin\r\npyrhotinový\r\npyridin\r\npyridoxin\r\npyrimidin\r\npyrimidinový\r\npyrit\r\npyritový\r\npyroarseničnan\r\npyroelektrický\r\npyroelektričtější\r\npyroforický\r\npyroforičtější\r\npyrofosforečnan\r\npyrohroznový\r\npyroluzit\r\npyrolýza\r\npyrolýzní\r\npyrometr\r\npyropový\r\npyrosíran\r\npyrosíra\r\npyrosiřičitan\r\npyrotechnický\r\npyrotechniččin\r\npyrotechnička\r\npyrotechničtější\r\npyrotechnika\r\npyrotechnik\r\npyrotechnikův\r\npyroxen\r\npyroxenický\r\npyroxenit\r\npyroxenovec\r\npyrrhonismus\r\npyrrhonistický\r\nPyrrhos\r\nPyrrhův\r\npyrrolidon\r\npyruvát\r\npýření\r\npýřící\r\npýří\r\npýřit\r\npýřivý\r\npyskatější\r\npyskatý\r\npysk\r\nPyšelích\r\nPyšely\r\npyšnější\r\npyšnění\r\npyšnící\r\npyšnit\r\npyšný\r\npytel\r\nPytelka\r\nPytelková\r\nPytelkův\r\nPythagoras\r\npythagoreismus\r\npythagorejcův\r\npythagorejec\r\npythagorejský\r\nPythagorův\r\npytlácký\r\npytláctví\r\npytlaččin\r\npytlačení\r\npytlačený\r\npytlačící\r\npytlačit\r\npytlačka\r\npytláčtější\r\npytlák\r\npytlákův\r\npytle\r\npytlech\r\npytlem\r\npytli\r\npytlíček\r\npytlích\r\npytlík\r\nPytlíková\r\npytlíkový\r\nPytlík\r\nPytlíkův\r\npytlovací\r\npytlování\r\npytlovaný\r\npytlovat\r\npytlovávání\r\npytlovávaný\r\npytlovávat\r\npytlovina\r\npytlovitý\r\npytlový\r\npytlů\r\npytlům\r\npyžamko\r\npyžamo\r\npyžamový\r\nPZO\r\nquasar\r\nQuebec\r\nquebecký\r\nquercetin\r\nQuijote\r\nquijotismus\r\nQuirenzová\r\nQuirenz\r\nQuirenzův\r\nquisling\r\nquislingův\r\nquot\r\nRa\r\nraabizace\r\nRaabová\r\nRaab\r\nRaabův\r\nRabakov\r\nrabakovský\r\nRabanová\r\nRaban\r\nRabanův\r\nrabat\r\nrabatový\r\nrabiácký\r\nrabiátnější\r\nrabiát\r\nrabiátský\r\nrabiátův\r\nrabicový\r\nrabinát\r\nrabín\r\nrabínský\r\nrabínštější\r\nrabínův\r\nRábí\r\nrabí\r\nrabování\r\nrabovaný\r\nrabovat\r\nrabovávání\r\nrabovávaný\r\nrabovávat\r\nRábová\r\nRáb\r\nrabský\r\nRabštejn\r\nrabštejnský\r\nrabující\r\nRabušice\r\nrabušický\r\nRábův\r\nracčí\r\nracek\r\nRacek\r\nracemický\r\nracionalismus\r\nracionalista\r\nracionalistčin\r\nracionalistický\r\nracionalističtější\r\nracionalistka\r\nracionalistův\r\nracionalita\r\nracionalizace\r\nracionalizační\r\nracionalizátor\r\nracionalizátorův\r\nracionalizovanější\r\nracionalizování\r\nracionalizovaný\r\nracionalizovat\r\nracionalizovatelnější\r\nracionalizovatelný\r\nracionalizující\r\nracionálnější\r\nracionální\r\nRacková\r\nrackovský\r\nRackův\r\nrackův\r\nRáclavský\r\nráček\r\nráčení\r\nRačice\r\nračický\r\nRačiněves\r\nračiněveský\r\nRačín\r\nračínský\r\nráčit\r\nračí\r\nráčkování\r\nráčkovaný\r\nráčkovat\r\nráčkovávání\r\nráčkovávat\r\nráčkový\r\nráčkující\r\nráčkův\r\nrad\r\nRadana\r\nRadanin\r\nRada\r\nradar\r\nradarový\r\nradarový\r\nrada\r\nRadbuza\r\nrádce\r\nrádcův\r\nRadčice\r\nradčický\r\nRadčin\r\nRadecký\r\nRadegast\r\nRadechová\r\nradechovský\r\nraději\r\nRadějov\r\nradějovský\r\nRadek\r\nRadenice\r\nradenický\r\nRadenín\r\nradenínský\r\nradění\r\nraděný\r\nRadešín\r\nradešínský\r\nRadhošť\r\nradhošťský\r\nradiace\r\nradiační\r\nradiála\r\nradiálčin\r\nradiálka\r\nradiálnější\r\nradiální\r\nradiance\r\nradián\r\nradiant\r\nradiátor\r\nradiátorový\r\nradící\r\nradikálčin\r\nradikalismus\r\nradikalista\r\nradikalistčin\r\nradikalistický\r\nradikalističtější\r\nradikalistka\r\nradikalistův\r\nradikalizace\r\nradikalizování\r\nradikalizovaný\r\nradikalizovat\r\nradikalizující\r\nradikálka\r\nradikálnější\r\nradikální\r\nradikálový\r\nradikál\r\nradikálův\r\nRadíkov\r\nradíkovský\r\nRadiměřický\r\nRadim\r\nRadimův\r\nradioaktivita\r\nradioaktivnější\r\nradioaktivní\r\nradioakustika\r\nradioamatérčin\r\nradioamatérismus\r\nradioamatérka\r\nradioamatér\r\nradioamatérský\r\nradioamatérův\r\nradioaparát\r\nradioaparatura\r\nradioastronomie\r\nradiobiologie\r\nradiodiagnostika\r\nradiodiagnóza\r\nradiodůstojník\r\nradiodůstojníkův\r\nradioelektrický\r\nradioelektričtější\r\nradioelektronický\r\nradioelektroničtější\r\nradioelektronika\r\nradiografický\r\nradiografie\r\nradiogram\r\nradiochemický\r\nradiochemičtější\r\nradiochemik\r\nradiochemikův\r\nradioizotop\r\nradioizotopový\r\nradiokarbonový\r\nradioklub\r\nradiokompas\r\nradiokomunikace\r\nradiokomunikační\r\nradioléčba\r\nradiologický\r\nradiologičtější\r\nradiologie\r\nradiolog\r\nradiologův\r\nradiolokace\r\nradiolokační\r\nradiolokátor\r\nradioložčin\r\nradioložka\r\nradiomagnetofon\r\nradiomechanika\r\nradiometr\r\nradiometrický\r\nradio\r\nrádio\r\nradionavigační\r\nradionuklid\r\nradionuklidový\r\nradioprovoz\r\nradiopřehrávač\r\nradiopřijímač\r\nradioreléový\r\nradiorežim\r\nradiosonda\r\nrádiosonda\r\nradiosoučástka\r\nradiostanice\r\nradiotechnický\r\nradiotechničtější\r\nradiotechnika\r\nradiotelefon\r\nradiotelefonický\r\nradiotelefonie\r\nradiotelefonista\r\nradiotelefonistčin\r\nradiotelefonistka\r\nradiotelefonistův\r\nradiotelefonní\r\nradiotelegraf\r\nradiotelegrafický\r\nradiotelegrafický\r\nradiotelegrafie\r\nradiotelegrafista\r\nradiotelegrafistčin\r\nradiotelegrafistka\r\nradiotelegrafistův\r\nradiotelegram\r\nradiotelekomunikace\r\nradiotelekomunikační\r\nradioteleskop\r\nradioterapeutický\r\nradioterapeutičtější\r\nradioterapie\r\nradioteraupetický\r\nrádiovka\r\nradiový\r\nrádiový\r\nradiožurnál\r\nRadislav\r\nRadislavův\r\nradista\r\nradistčin\r\nradistický\r\nradistka\r\nradistův\r\nradit\r\nradium\r\nrádium\r\nrádiusový\r\nrádius\r\nradix\r\nRadka\r\nRadkovice\r\nradkovický\r\nRadkov\r\nradkovský\r\nRadkovský\r\nRadkův\r\nrádkyně\r\nrádkynin\r\nRadlice\r\nradlice\r\nradlický\r\nradlička\r\nradličkový\r\nRadlinský\r\nrádlo\r\nrádlovací\r\nrádlování\r\nrádlovaný\r\nrádlovat\r\nRadmila\r\nRadmilin\r\nradnatý\r\nRadnice\r\nradnice\r\nradnický\r\nradniční\r\nradní\r\nradno\r\nRadňoves\r\nradňoveský\r\nrád\r\nrádoby\r\nrádobyhumanista\r\nrádobyhumanistčin\r\nrádobyhumanistka\r\nrádobyhumanistův\r\nradoměrský\r\nRadomír\r\nRadomírův\r\nradon\r\nRadonice\r\nradonický\r\nRadonín\r\nradonínský\r\nRadoňová\r\nradonový\r\nRadoň\r\nRadoňův\r\nRadoslav\r\nRadoslavův\r\nRadosta\r\nRadostice\r\nradostický\r\nRadostín\r\nradostínský\r\nradost\r\nradostnější\r\nradostný\r\nRadostová\r\nRadostov\r\nradostovský\r\nRadostův\r\nRadošová\r\nRadošovice\r\nradošovický\r\nRadošov\r\nradošovský\r\nRadoš\r\nRadošův\r\nRadotín\r\nradotínský\r\nradouňský\r\nRadouň\r\nradování\r\nradovánka\r\nradovánky\r\nRadovan\r\nRadovanův\r\nradovat\r\nRadová\r\nradová\r\nradši\r\nradující\r\nradůstka\r\nRadův\r\nRadvancová\r\nRadvancův\r\nRadvanec\r\nRadvanice\r\nradvanický\r\nRadvanovský\r\nRadyně\r\nradyňský\r\nrádža\r\nrádžův\r\nRafael\r\nRafaelův\r\nRafaja\r\nRafajová\r\nRafaj\r\nRafajův\r\nrafat\r\nráfek\r\nrafička\r\nrafie\r\nrafije\r\nrafika\r\nrafinace\r\nrafinační\r\nrafinerie\r\nrafinérie\r\nrafinovanější\r\nrafinování\r\nrafinovaný\r\nrafinovat\r\nrafinovatelný\r\nrafiový\r\nráfkový\r\nrafnout\r\nrafnutí\r\nrafnutý\r\nraft\r\nrafting\r\nraftování\r\nraftovat\r\nraftový\r\nragbista\r\nragbistčin\r\nragbistka\r\nragbistův\r\nragby\r\nragbyový\r\nraglán\r\nraglánový\r\nragú\r\nráhénko\r\nráhno\r\nráhnoví\r\nráhnový\r\nráhýnko\r\nRachačová\r\nRachač\r\nRachačův\r\nrachejtle\r\nRáchel\r\nrachitický\r\nrachitičtější\r\nrachitis\r\nrachocení\r\nrachota\r\nrachotění\r\nrachot\r\nrachotící\r\nrachotina\r\nrachotit\r\nrachotivější\r\nrachotivý\r\nRachová\r\nRach\r\nRachův\r\nRain\r\nRaisová\r\nRais\r\nRaisův\r\nRAJ\r\nRaJ\r\nrajcující\r\nrajčátko\r\nrajčatový\r\nrajče\r\nRajdlová\r\nRajdl\r\nRajdlův\r\nRajdová\r\nRajd\r\nRajdův\r\nrájecký\r\nRájec\r\nRáječko\r\nRajhradice\r\nrajhradický\r\nRajchéřov\r\nrajchéřovský\r\nrajka\r\nRajnochová\r\nRajnochovice\r\nrajnochovický\r\nRajnoch\r\nRajnochův\r\nrajon\r\nrajón\r\nrajonizace\r\nrajónování\r\nrajonový\r\nráj\r\nrajský\r\nrajštější\r\nrajtování\r\nrajtovat\r\nRajtrová\r\nRajtr\r\nRajtrův\r\nRájův\r\nraketa\r\nraketka\r\nraketojaderný\r\nraketomet\r\nraketometný\r\nraketoplán\r\nraketový\r\nrakev\r\nRákócziův\r\nRákóczi\r\nrákos\r\nrákosí\r\nrákosina\r\nrákosiště\r\nrákoska\r\nrákoskový\r\nrákosnice\r\nRákosníček\r\nRákosníčkův\r\nrákosník\r\nrákosníkův\r\nrákosovitý\r\nrákosový\r\nRakousko\r\nrakouskouherský\r\nrakouský\r\nRakousy\r\nRaková\r\nrakovina\r\nrakovinný\r\nrakovinotvornější\r\nrakovinotvorný\r\nrakovinový\r\nrakovka\r\nRakov\r\nRakovnicko\r\nrakovnický\r\nRakovník\r\nrakovský\r\nrakový\r\nrak\r\nRak\r\nRakušančin\r\nRakušanka\r\nRakušanová\r\nRakušan\r\nRakušan\r\nRakušanův\r\nRakůvka\r\nRakův\r\nrakův\r\nRakvice\r\nrakvický\r\nrakvička\r\nrakytník\r\nrakytníkový\r\nRálek\r\nRálková\r\nRálkův\r\nrallye\r\nRalsko\r\nralský\r\nRAM\r\nramadánový\r\nramazanový\r\nRambousek\r\nRambousková\r\nRambouskův\r\nrámci\r\nrámcovější\r\nrámcový\r\nrámě\r\nrámec\r\nrámeček\r\nrámečkový\r\nrámek\r\nrámě\r\nramenářství\r\nramenář\r\nramenářův\r\nramenatější\r\nramenatý\r\nramene\r\nraménko\r\nramenní\r\nramenný\r\nrameno\r\nramenonožcův\r\nramenonožec\r\nramenou\r\nramenový\r\nRamešová\r\nRameš\r\nRamešův\r\nrám\r\nramie\r\nramínko\r\nramínkový\r\nramiový\r\nRamirezová\r\nRamirézová\r\nRamirez\r\nRamiréz\r\nRamirezův\r\nRamirézův\r\nramnóza\r\nrámovanější\r\nrámování\r\nrámovaný\r\nrámovat\r\nrámovávání\r\nrámovávaný\r\nrámovávat\r\nrámovka\r\nrámový\r\nRampachová\r\nRampach\r\nRampachův\r\nrampa\r\nrampouch\r\nrampový\r\nrámující\r\nrámusení\r\nrámus\r\nrámusit\r\nrámusivější\r\nrámusivý\r\nran\r\nranách\r\nranám\r\nranami\r\nranařčin\r\nranařka\r\nranař\r\nranařův\r\nRaná\r\nrána\r\nrančer\r\nrančerův\r\nRančířov\r\nrančířovský\r\nranč\r\nRandáková\r\nRandák\r\nRandákův\r\nrandál\r\nRanda\r\nrand\r\nrandící\r\nRandová\r\nRandusová\r\nRandus\r\nRandusův\r\nRandův\r\nranec\r\nraneček\r\nranější\r\nraněnější\r\nranění\r\nraněný\r\nRangún\r\nraníčko\r\nranit\r\nranivější\r\nranivý\r\nranka\r\nRaňkův\r\nranní\r\nráno\r\nRansdorfová\r\nRansdorf\r\nRansdorfův\r\nranský\r\nRantířov\r\nrantířovský\r\nraný\r\nraperčin\r\nraperka\r\nraper\r\nraperův\r\nrap\r\nrapid\r\nrapidnější\r\nrapidní\r\nrapido\r\nrapír\r\nrapmetalový\r\nraport\r\nRapotice\r\nrapotický\r\nRapotina\r\nRapotín\r\nrapotínský\r\nrapování\r\nrapovat\r\nrapový\r\nrapsodický\r\nrapsodie\r\nrapsódie\r\nrapující\r\nrarach\r\nrarachův\r\nrarášek\r\nraráškův\r\nrarita\r\nraritnější\r\nraroh\r\nrarohův\r\nRARP\r\nrasance\r\nrasantnější\r\nrasantní\r\nrasa\r\nrasismus\r\nrasista\r\nrasistčin\r\nrasistický\r\nrasističtější\r\nrasistka\r\nrasistův\r\nrasoška\r\nrasování\r\nrasovaný\r\nrasovat\r\nrasovější\r\nrasovina\r\nrasový\r\nRaspenava\r\nraspenavský\r\nras\r\nrasterizace\r\nrasterizér\r\nRastislav\r\nRastislavův\r\nrastr\r\nrastrovací\r\nrastrovanější\r\nrastrování\r\nrastrovaný\r\nrastrovat\r\nrastrový\r\nrasův\r\nrašelina\r\nrašeliník\r\nrašeliníkový\r\nrašelinisko\r\nrašeliniště\r\nrašeliništní\r\nrašelinný\r\nrašelinovka\r\nrašelinový\r\nrašení\r\nrašený\r\nrašící\r\nRašín\r\nRašínová\r\nRašín\r\nrašínský\r\nRašínův\r\nrašit\r\nRaška\r\nRašková\r\nRaškovice\r\nraškovický\r\nRaškův\r\nrašlový\r\nRašnerová\r\nRašner\r\nRašnerův\r\nRašov\r\nrašovský\r\nrašple\r\nrašplička\r\nrašplování\r\nrašplovat\r\nRatajová\r\nratajský\r\nRataj\r\nRatajův\r\nratan\r\nratanový\r\nRatbodův\r\nratejna\r\nRathouský\r\nRatibořice\r\nratibořický\r\nratibořský\r\nratibořský\r\nRatiboř\r\nratifikace\r\nratifikační\r\nratifikování\r\nratifikovaný\r\nratifikovat\r\nratifikovávání\r\nratifikovávaný\r\nratifikovávat\r\nrating\r\nratinovací\r\nratinování\r\nratinovaný\r\nratinovat\r\nRatíškovice\r\nratíškovický\r\nratlík\r\nratlíkův\r\nRatměřice\r\nratměřický\r\nRatmírov\r\nratmírovský\r\nratolestích\r\nratolestím\r\nratolest\r\nrattan\r\nrattanový\r\nRatvajová\r\nRatvaj\r\nRatvajův\r\nraubíř\r\nraubířův\r\nRauerová\r\nRauer\r\nRauerův\r\nRaupachová\r\nRaupach\r\nRaupachův\r\nRauschová\r\nRausch\r\nRauschův\r\nraut\r\nravena\r\nRavenský\r\nraytracer\r\nrazance\r\nrazantnější\r\nrazantní\r\nrazavějící\r\nrázem\r\nráz\r\nrazicí\r\nrazící\r\nrazičský\r\nrazič\r\nrazičův\r\nrazidlo\r\nrazie\r\nrazit\r\nrazítko\r\nrazítkovací\r\nrazítkování\r\nrazítkovaný\r\nrazítkovat\r\nrazítkový\r\nRázlová\r\nRázl\r\nRázlův\r\nrázněji\r\nráznější\r\nraznice\r\nraznička\r\nrázný\r\nrázování\r\nrázovaný\r\nrázovat\r\nRazová\r\nrázovitější\r\nrázovitý\r\nrazovský\r\nrázový\r\nrázující\r\nražba\r\nraženější\r\nražení\r\nražený\r\nráže\r\nRažice\r\nražický\r\nražniči\r\nRážová\r\nRáž\r\nRážův\r\nRB\r\nrb\r\nrbl\r\nRC\r\nrceme\r\nrcete\r\nrci\r\nRCL\r\nrčení\r\nRDBMS\r\nrdění\r\nrdesno\r\nrdesnovitý\r\nrdící\r\nrdít\r\nrdousící\r\nrdousit\r\nrdoušenější\r\nrdoušení\r\nrdoušený\r\nreadmisní\r\nreagenční\r\nreagens\r\nreagentní\r\nreagování\r\nreagovaný\r\nreagovat\r\nreagovávání\r\nreagovávat\r\nreagující\r\nreakce\r\nreakcionářčin\r\nreakcionářka\r\nreakcionářský\r\nreakcionář\r\nreakcionářův\r\nreakčnější\r\nreakčník\r\nreakčníkův\r\nreakční\r\nreakreditace\r\nreaktance\r\nreaktant\r\nreaktiavace\r\nreaktivace\r\nreaktivační\r\nreaktivita\r\nreaktivnější\r\nreaktivní\r\nreaktivovat\r\nreaktor\r\nreaktorový\r\nreál\r\nreálie\r\nrealisace\r\nrealismus\r\nrealisování\r\nrealisovaný\r\nrealisovat\r\nrealista\r\nrealistčin\r\nrealistický\r\nrealističtější\r\nrealistka\r\nrealistův\r\nrealita\r\nrealitní\r\nrealizace\r\nrealizační\r\nrealizátorčin\r\nrealizátorka\r\nrealizátor\r\nrealizátorův\r\nrealizování\r\nrealizovaný\r\nrealizovat\r\nrealizovatelnější\r\nrealizovatelný\r\nrealizující\r\nrealkalizace\r\nreálka\r\nreálnější\r\nreálný\r\nrealokace\r\nrealokovat\r\nrealokovávat\r\nreambulace\r\nreaustenitizace\r\nrebarbora\r\nrebarborový\r\nrebase\r\nrebasovací\r\nrebazovací\r\nrebelantčin\r\nrebelantka\r\nrebelant\r\nrebelantský\r\nrebelantství\r\nrebelantův\r\nrebelčin\r\nrebelie\r\nRebélie\r\nrebelka\r\nrebel\r\nrebelující\r\nrebelův\r\nrebilance\r\nrebilancovat\r\nrébus\r\nrébusový\r\nrec\r\nrecenzentčin\r\nrecenzentka\r\nrecenzent\r\nrecenzentův\r\nrecenze\r\nrecenzní\r\nrecenzování\r\nrecenzovaný\r\nrecenzovaný\r\nrecenzovat\r\nrecepce\r\nrecepční\r\nreceptář\r\nrecept\r\nreceptivní\r\nreceptor\r\nreceptorový\r\nreceptura\r\nrecese\r\nrecesismus\r\nrecesista\r\nrecesistčin\r\nrecesistický\r\nrecesistka\r\nrecesistnější\r\nrecesistův\r\nrecesivnější\r\nrecesivní\r\nrecesní\r\nreci\r\nrecidiva\r\nrecidivista\r\nrecidivistčin\r\nrecidivistka\r\nrecidivistův\r\nrecidivující\r\nrecích\r\nrecipient\r\nrecipientův\r\nreciprocita\r\nrecipročnější\r\nreciproční\r\nreciproký\r\nrecirkulace\r\nrecirkulační\r\nrecirkulování\r\nrecirkulovaný\r\nrecirkulovat\r\nrecirkulující\r\nrecitace\r\nrecitační\r\nrecitál\r\nrecitálový\r\nrecitativ\r\nrecitátorčin\r\nrecitátorka\r\nrecitátor\r\nrecitátorův\r\nrecitování\r\nrecitovaný\r\nrecitovat\r\nrecitovatelnější\r\nrecitovávání\r\nrecitovávaný\r\nrecitovávat\r\nrecitující\r\nReckziegelová\r\nReckziegel\r\nReckziegelův\r\nRecmanová\r\nRecman\r\nRecmanův\r\nreconquista\r\nrecyklace\r\nrecyklační\r\nrecyklovací\r\nrecyklovanější\r\nrecyklování\r\nrecyklovaný\r\nrecyklovat\r\nrecyklovatelný\r\nrecyklovávání\r\nrecyklovávaný\r\nrecyklovávat\r\nredakce\r\nredakční\r\nredaktorčin\r\nredaktorka\r\nredaktor\r\nredaktorský\r\nredaktorův\r\nredefinice\r\nredefinování\r\nredefinovaný\r\nredefinovat\r\nredemptorista\r\nredemptoristův\r\nredemptor\r\nredemptorův\r\nredepozice\r\nredifundování\r\nredifundovaný\r\nredifundovat\r\nredigování\r\nredigovaný\r\nredigovat\r\nredigující\r\nredislokace\r\nredistribuce\r\nredistribuční\r\nredistribuování\r\nredistribuovaný\r\nredistribuovat\r\nredistributor\r\nredistributorův\r\nRedlová\r\nRedl\r\nRedlův\r\nredoxní\r\nredoxpotenciál\r\nredukce\r\nredukcionismus\r\nredukcionista\r\nredukcionistčin\r\nredukcionistický\r\nredukcionistka\r\nredukcionistův\r\nredukční\r\nredukovanější\r\nredukování\r\nredukovaný\r\nredukovat\r\nredukovatelnější\r\nredukovatelný\r\nredukovávání\r\nredukovávaný\r\nredukovávat\r\nreduktan\r\nreduktivní\r\nreduktor\r\nredukující\r\nredundance\r\nredundantnější\r\nredundantní\r\nreduplikace\r\nreduta\r\nredutní\r\nreedice\r\nreediční\r\nreedukace\r\nreedukační\r\nreemigrantčin\r\nreemigrantka\r\nreengineering\r\nreentrantní\r\nreeskontní\r\nreexport\r\nreexportování\r\nreexportovaný\r\nreexportovat\r\nrefektář\r\nreferát\r\nreference\r\nreferenční\r\nreferendář\r\nreferendářův\r\nreferendový\r\nreferendum\r\nreferentčin\r\nreferentka\r\nreferentní\r\nreferent\r\nreferentský\r\nreferentův\r\nreferování\r\nreferovaný\r\nreferovaný\r\nreferovat\r\nreferovávání\r\nreferovávaný\r\nreferovávat\r\nreferující\r\nrefinancování\r\nrefinancovaný\r\nrefinancovat\r\nrefinanční\r\nreflekční\r\nreflektometr\r\nreflektor\r\nreflektorový\r\nreflektovanější\r\nreflektování\r\nreflektovaný\r\nreflektovat\r\nreflektovávání\r\nreflektovávaný\r\nreflektovávat\r\nreflektující\r\nreflexech\r\nreflexe\r\nreflex\r\nreflexivita\r\nreflexivní\r\nreflexívní\r\nreflexivum\r\nreflexívum\r\nreflexní\r\nreflexologie\r\nreformace\r\nreformační\r\nreformátorčin\r\nreformátorka\r\nreformátor\r\nreformátorský\r\nreformátorštější\r\nreformátorův\r\nreforma\r\nreformička\r\nreformismus\r\nreformista\r\nreformistčin\r\nreformistický\r\nreformističtější\r\nreformistka\r\nreformistův\r\nreformnější\r\nreformní\r\nreformovanější\r\nreformování\r\nreformovaný\r\nreformovat\r\nreformovatelnější\r\nreformovatelný\r\nreformovávání\r\nreformovávaný\r\nreformovávat\r\nreformující\r\nreformulace\r\nrefrakce\r\nrefrakční\r\nrefraktometr\r\nrefraktometrický\r\nrefraktor\r\nrefrén\r\nrefrénový\r\nrefundace\r\nrefundační\r\nrefundování\r\nrefundovaný\r\nrefundovat\r\nrefýž\r\nregál\r\nregálie\r\nregálový\r\nregata\r\nregenerace\r\nregenerační\r\nregenerát\r\nregenerování\r\nregenerovaný\r\nregenerovat\r\nregenerující\r\nregenschori\r\nregentčin\r\nregentka\r\nRegentová\r\nregent\r\nRegent\r\nregentská\r\nregentský\r\nRegentův\r\nregentův\r\nregiment\r\nRegína\r\nRegínin\r\nReginová\r\nRegin\r\nReginův\r\nregionalismus\r\nregionalista\r\nregionalistčin\r\nregionalističtější\r\nregionalistka\r\nregionalistův\r\nregionalizace\r\nregionalizační\r\nregionálnější\r\nregionální\r\nregion\r\nregistrace\r\nregistračka\r\nregistrační\r\nregistrátorčin\r\nregistrátorka\r\nregistrátor\r\nregistrátorův\r\nregistratura\r\nregistr\r\nregistrovanější\r\nregistrování\r\nregistrovaný\r\nregistrovat\r\nregistrovatelnější\r\nregistrovávání\r\nregistrovávaný\r\nregistrovávat\r\nregistrový\r\nregistrující\r\nreglamá\r\nreglementace\r\nregolit\r\nregrese\r\nregresivnější\r\nregresivní\r\nregresívní\r\nregresnější\r\nregresní\r\nregulace\r\nregulační\r\nregularizátor\r\nregularizovanější\r\nregularizovaný\r\nregularizovat\r\nregularizující\r\nregulární\r\nregulativ\r\nregulativnější\r\nregulativní\r\nregulátor\r\nregulátorův\r\nregule\r\nregulérnější\r\nregulérní\r\nReguliová\r\nReguli\r\nReguliův\r\nregulovanější\r\nregulování\r\nregulovaný\r\nregulovat\r\nregulovatelnější\r\nregulovatelný\r\nregulovávání\r\nregulovávaný\r\nregulovávat\r\nregulující\r\nrehabilitace\r\nrehabilitační\r\nrehabilitování\r\nrehabilitovaný\r\nrehabilitovat\r\nrehabilitující\r\nrehek\r\nrehelénizace\r\nrehelénizační\r\nrehkův\r\nrehydratování\r\nrehydratovaný\r\nrehydratovat\r\nrehydrování\r\nrehydrovaný\r\nrehydrovat\r\nReicin\r\nReicinův\r\nReifová\r\nReif\r\nReifův\r\nReichela\r\nReichele\r\nReichelech\r\nReichelem\r\nReichelová\r\nReichelové\r\nReichelovi\r\nReichel\r\nReichelů\r\nReichelům\r\nReichelův\r\nReichely\r\nreichenbašský\r\nReichlová\r\nReichl\r\nReichlův\r\nReichmannová\r\nReichmann\r\nReichmannův\r\nReichmanová\r\nReichman\r\nReichmanův\r\nReilová\r\nReil\r\nReilův\r\nReimannová\r\nReimann\r\nReimannův\r\nreimplantování\r\nreimplantovaný\r\nreimplantovat\r\nreimplementace\r\nreimplementovaný\r\nreimportování\r\nreimportovaný\r\nreimportovat\r\nreimportovávání\r\nreimportovávaný\r\nreimportovávat\r\nReindlová\r\nReindl\r\nReindlův\r\nReinišová\r\nReiniš\r\nReinišův\r\nreinkarnace\r\nreinstalace\r\nreintegrace\r\nreintrodukce\r\nreinvestice\r\nreinvestování\r\nreinvestovaný\r\nreinvestovat\r\nreinženýring\r\nReisiegelová\r\nReisiegel\r\nReisiegelův\r\nReisnerová\r\nReisner\r\nReisnerův\r\nRejčkový\r\nrejdařský\r\nrejdařství\r\nrejdař\r\nrejdařův\r\nrejda\r\nrejdění\r\nrejd\r\nrejdiště\r\nrejdit\r\nrejdovák\r\nrejdovat\r\nrejektivita\r\nrejektivní\r\nRejhonová\r\nRejhon\r\nRejhonův\r\nRejcha\r\nRejchová\r\nRejchrtová\r\nRejchrt\r\nRejchrtův\r\nRejchův\r\nRejlová\r\nRejl\r\nRejlův\r\nRejmannová\r\nRejmann\r\nRejmannův\r\nRejmanová\r\nRejman\r\nRejmanův\r\nRejmontová\r\nRejmont\r\nRejmontův\r\nrejnokovitý\r\nrejnok\r\nrejnokův\r\nrejpal\r\nrejpalův\r\nrej\r\nrejscův\r\nrejsec\r\nrejsek\r\nrejskův\r\nrejstřík\r\nrejstříkový\r\nrejstříkující\r\nRejštejn\r\nrejštejnský\r\nRejzek\r\nRejzková\r\nRejzkův\r\nrejžák\r\nrek\r\nreka\r\nrekalibrace\r\nrekalkulace\r\nrekalkulovat\r\nrekapitalizace\r\nrekapitulace\r\nrekapitulování\r\nrekapitulovaný\r\nrekapitulovat\r\nrekapitulovávání\r\nrekapitulovávaný\r\nrekapitulovávat\r\nrekapitulující\r\nrekatalogizace\r\nrekatolizace\r\nrekatolizační\r\nrekce\r\nrekem\r\nreklamace\r\nreklamační\r\nreklama\r\nreklamka\r\nreklamní\r\nreklamovanější\r\nreklamování\r\nreklamovaný\r\nreklamovat\r\nreklamovávání\r\nreklamovávaný\r\nreklamovávat\r\nreklamový\r\nreklamující\r\nreklasifikace\r\nreklasifikační\r\nrekodér\r\nrekodifikace\r\nrekodifikovaný\r\nrekognoskace\r\nrekognoskativní\r\nrekolekce\r\nrekomando\r\nrekombinace\r\nrekompilace\r\nrekompilování\r\nrekompilovaný\r\nrekompilovat\r\nrekompilovávání\r\nrekompilovávaný\r\nrekompilovávat\r\nrekomunizující\r\nrekondice\r\nrekondiční\r\nrekonfigurace\r\nrekonfigurační\r\nrekonstituce\r\nrekonstituování\r\nrekonstituovaný\r\nrekonstituovat\r\nrekonstrukce\r\nrekonstrukční\r\nrekonstruktivní\r\nrekonstruovanější\r\nrekonstruování\r\nrekonstruovaný\r\nrekonstruovat\r\nrekonstruovatelný\r\nrekonstruovávání\r\nrekonstruovávaný\r\nrekonstruovávat\r\nrekonstruující\r\nrekonsultování\r\nrekonsultovaný\r\nrekonsultovat\r\nrekontaminace\r\nrekonvalescence\r\nrekonvalescentčin\r\nrekonvalescentka\r\nrekonvalescent\r\nrekonvalescentův\r\nrekonzultování\r\nrekonzultovaný\r\nrekonzultovat\r\nrekord\r\nrekordmančin\r\nrekordmanka\r\nrekordman\r\nrekordmanův\r\nrekordnější\r\nrekordní\r\nReková\r\nrekové\r\nrekovi\r\nrekovný\r\nRek\r\nrekreace\r\nrekreační\r\nrekreantčin\r\nrekreantka\r\nrekreant\r\nrekreantův\r\nrekreování\r\nrekreovat\r\nrekreující\r\nrekriminace\r\nrekriminační\r\nrekriminování\r\nrekriminovaný\r\nrekriminovat\r\nrekrutování\r\nrekrutovaný\r\nrekrutovat\r\nrekrutovávání\r\nrekrutovávat\r\nrekrut\r\nrekrutující\r\nrekrutův\r\nrektální\r\nrektascenze\r\nrektifikace\r\nrektifikační\r\nrektifikovaný\r\nrektifikující\r\nrektorát\r\nrektorátní\r\nrektorčin\r\nrektorka\r\nrektor\r\nrektorský\r\nrektorův\r\nrektoskopie\r\nreku\r\nreků\r\nrekultivace\r\nrekultivační\r\nrekultivování\r\nrekultivovaný\r\nrekultivovat\r\nrekům\r\nrekuperace\r\nrekuperační\r\nrekuperátor\r\nrekuperovaný\r\nrekuperovat\r\nrekuperující\r\nrekurence\r\nrekurentní\r\nrekurování\r\nrekurovaný\r\nrekurovat\r\nrekurs\r\nrekursivní\r\nrekurze\r\nrekurz\r\nrekurzivita\r\nrekurzivní\r\nrekurzívní\r\nRekův\r\nrekův\r\nrekvalifikace\r\nrekvalifikační\r\nrekvalifikování\r\nrekvalifikovaný\r\nrekvalifikovat\r\nrekvalifikovávat\r\nrekviem\r\nrekvírování\r\nrekvírovaný\r\nrekvírovat\r\nrekvírovávat\r\nrekvizice\r\nrekvizitárna\r\nrekvizitářčin\r\nrekvizitářka\r\nrekvizitář\r\nrekvizitářův\r\nrekvizita\r\nreky\r\nrelace\r\nrelační\r\nrelaps\r\nrelativismus\r\nrelativista\r\nrelativistčin\r\nrelativistický\r\nrelativističtější\r\nrelativistka\r\nrelativistův\r\nrelativita\r\nrelativizování\r\nrelativizovaný\r\nrelativizovat\r\nrelativizující\r\nrelativnější\r\nrelativní\r\nrelaxace\r\nrelaxační\r\nrelaxování\r\nrelaxovaný\r\nrelaxovat\r\nrelaxující\r\nrelé\r\nreléový\r\nrelevance\r\nrelevantnější\r\nrelevantní\r\nrelevovací\r\nrelevování\r\nrelevovaný\r\nrelevovat\r\nreliabilita\r\nreliabilní\r\nreliéf\r\nreliéfnější\r\nreliefní\r\nreliéfní\r\nreliéfový\r\nreligionista\r\nreligionistčin\r\nreligionistický\r\nreligionistika\r\nreligionistka\r\nreligionistův\r\nreligiozita\r\nreligióznější\r\nreligiozní\r\nreligiózní\r\nrelikt\r\nreliktnější\r\nreliktní\r\nrelikviář\r\nrelikvie\r\nrelokace\r\nrelokační\r\nreluice\r\nréma\r\nremake\r\nremanentní\r\nrematizátor\r\nRembrandt\r\nRembrandtův\r\nremcající\r\nremcal\r\nremcalův\r\nremcání\r\nremcat\r\nRemešová\r\nRemeš\r\nRemešův\r\nremilitarizace\r\nremilitarizování\r\nremilitarizovaný\r\nremilitarizovat\r\nremingtonka\r\nreminiscence\r\nremisiér\r\nremisiérův\r\nremisování\r\nremisovat\r\nremisový\r\nremix\r\nremíza\r\nremízek\r\nremíz\r\nremízka\r\nremizování\r\nremizovaný\r\nremizovat\r\nremízový\r\nremorkér\r\nremoska\r\nRenardův\r\nRenata\r\nRenáta\r\nRenatčin\r\nRenátčin\r\nRenatin\r\nRenátin\r\nRenatka\r\nRenátka\r\nrenaturace\r\nrenaturační\r\nrenaturalizace\r\nrenaturovaný\r\nrenaturovat\r\nRenčínová\r\nRenčín\r\nRenčínův\r\nRenčová\r\nRenč\r\nRenčův\r\nrendering\r\nrenderování\r\nrenderovaný\r\nrenderovat\r\nrendez\r\nrendlíček\r\nrendlík\r\nRendlová\r\nRendl\r\nRendlův\r\nrendrovat\r\nrendrující\r\nrenegátčin\r\nrenegátka\r\nrenegát\r\nrenegátský\r\nrenegátství\r\nrenegátův\r\nrenegociace\r\nrenesačnější\r\nrenesance\r\nrenesančnější\r\nrenesanční\r\nreneta\r\nRené\r\nrenezance\r\nrenezančnější\r\nrenezanční\r\nrengenovací\r\nrenomé\r\nrenomovanější\r\nrenomovaný\r\nrenormalizační\r\nrenovace\r\nrenovační\r\nrenovátor\r\nrenovátorův\r\nrenovování\r\nrenovovaný\r\nrenovovat\r\nrenovující\r\nrentabilita\r\nrentabilnější\r\nrentabilní\r\nrenta\r\nrentgen\r\nrentgenka\r\nrentgenografický\r\nrentgenografie\r\nrentgenologický\r\nrentgenologie\r\nrentgenolog\r\nrentgenologův\r\nrentgenoložčin\r\nrentgenoložka\r\nrentgenometrický\r\nrentgenování\r\nrentgenovaný\r\nrentgenovat\r\nrentgenový\r\nrentiérčin\r\nrentiérka\r\nrentiér\r\nrentiérský\r\nrentiérství\r\nrentiérův\r\nrentovat\r\nreofilní\r\nreorganizace\r\nreorganizační\r\nreorganizování\r\nreorganizovaný\r\nreorganizovat\r\nreorganizovávat\r\nreorientace\r\nreostat\r\nreparace\r\nreparační\r\nreparát\r\nreparování\r\nreparovaný\r\nreparovat\r\nrepasivace\r\nrepasování\r\nrepasovaný\r\nrepasovat\r\nrepatriace\r\nrepatriační\r\nrepatriant\r\nrepatriování\r\nrepatriovaný\r\nrepatriovat\r\nrepealista\r\nrepealistčin\r\nrepealistka\r\nrepealistův\r\nRepek\r\nrepelent\r\nrepelentní\r\nreperatura\r\nrepertoár\r\nrepertoárový\r\nrepetění\r\nrepetentčin\r\nrepetentka\r\nrepetent\r\nrepetentův\r\nrepetice\r\nrepetiční\r\nrepetit\r\nrepetitor\r\nrepetitorův\r\nRepiščáková\r\nRepiščák\r\nRepiščákův\r\nRepková\r\nRepkův\r\nreplikace\r\nreplika\r\nreplikování\r\nreplikovaný\r\nreplikovat\r\nreplikovávání\r\nreplikovávaný\r\nreplikovávat\r\nreplikující\r\nrepopulace\r\nreportážní\r\nreportážový\r\nreportáž\r\nreportérčin\r\nreportérka\r\nreportér\r\nreportérský\r\nreportérův\r\nreport\r\nreporting\r\nreportování\r\nreportovaný\r\nreportovat\r\nreportovávání\r\nreportovávaný\r\nreportovávat\r\nreposazba\r\nrepositář\r\nrepresálie\r\nrepresentace\r\nrepresentant\r\nrepresentantův\r\nrepresentativnější\r\nrepresentování\r\nrepresentovaný\r\nrepresentovat\r\nrepresentovatelný\r\nreprese\r\nrepresivnější\r\nrepresívnější\r\nrepresivní\r\nrepresívní\r\nreprezentace\r\nreprezentační\r\nreprezentantčin\r\nreprezentantka\r\nreprezentant\r\nreprezentantův\r\nreprezentativnější\r\nreprezentativní\r\nreprezentování\r\nreprezentovaný\r\nreprezentovat\r\nreprezentovatelnější\r\nreprezentovatelný\r\nreprezentovávání\r\nreprezentovávaný\r\nreprezentovávat\r\nreprezentující\r\nreprint\r\nrepríza\r\nreprízovaný\r\nreprízovat\r\nreprízový\r\nrepro\r\nreprodukce\r\nreprodukční\r\nreprodukční\r\nreprodukovanější\r\nreprodukování\r\nreprodukovaný\r\nreprodukovat\r\nreprodukovatelnější\r\nreprodukovatelný\r\nreprodukovávání\r\nreprodukovávaný\r\nreprodukovávat\r\nreproduktivní\r\nreproduktor\r\nreproduktorový\r\nreprodukující\r\nreprofilace\r\nreprografický\r\nreprografičtější\r\nreprografie\r\nreprosoustava\r\nreptající\r\nreptání\r\nreptaný\r\nreptat\r\nreptávání\r\nreptávat\r\nreptavější\r\nreptavý\r\nrepublička\r\nrepublikánčin\r\nrepublikanismus\r\nrepublikánka\r\nrepublikán\r\nrepublikánský\r\nrepublikánštější\r\nrepublikánův\r\nrepublika\r\nrepublikový\r\nreputace\r\nresekce\r\nresekování\r\nresekovaný\r\nresekovat\r\nresektování\r\nresektovaný\r\nresektovat\r\nreservace\r\nreserva\r\nreservoár\r\nresetování\r\nresetovaný\r\nresetovat\r\nresiduový\r\nresiduum\r\nresignace\r\nresignování\r\nresignovaný\r\nresignovat\r\nresilience\r\nresin\r\nresistance\r\nresistence\r\nresistentnější\r\nreskript\r\nreslovakizace\r\nReslová\r\nResl\r\nReslův\r\nresocializace\r\nresocializační\r\nresoluce\r\nresolventa\r\nresonance\r\nresonanční\r\nresonování\r\nresonovat\r\nresorbování\r\nresorbovaný\r\nresorbovat\r\nresorbovávání\r\nresorbovávaný\r\nresorbovávat\r\nresorpce\r\nresort\r\nresortismus\r\nresortní\r\nresp\r\nrespekt\r\nrespektive\r\nrespektovanější\r\nrespektování\r\nrespektovaný\r\nrespektovat\r\nrespektovávání\r\nrespektovávaný\r\nrespektovávat\r\nrespektující\r\nrespirační\r\nrespirátor\r\nrespiratorní\r\nrespirování\r\nrespondentčin\r\nrespondentka\r\nrespondent\r\nrespondentův\r\nresponsní\r\nRessel\r\nResselův\r\nResslová\r\nRessl\r\nResslův\r\nrestante\r\nrestart\r\nrestartování\r\nrestartovaný\r\nrestartovat\r\nrestartovávat\r\nrestaurace\r\nrestaurační\r\nrestaurant\r\nrestauratérčin\r\nrestauratérka\r\nrestaurátorčin\r\nrestaurátorka\r\nrestaurátor\r\nrestaurátorský\r\nrestaurátorství\r\nrestaurátorův\r\nrestaurovanější\r\nrestaurování\r\nrestaurování\r\nrestaurovaný\r\nrestaurovaný\r\nrestaurovat\r\nrestaurovávat\r\nrestaurující\r\nrest\r\nrestituce\r\nrestituční\r\nrestituentčin\r\nrestituentka\r\nrestituent\r\nrestituentův\r\nrestituování\r\nrestituovaný\r\nrestituovat\r\nrestituující\r\nrestování\r\nrestovaný\r\nrestovat\r\nrestrikce\r\nrestriktivnější\r\nrestriktivní\r\nrestriktura\r\nrestringování\r\nrestringovaný\r\nrestringovat\r\nrestrukturalizace\r\nrestrukturalizační\r\nrestrukturalizování\r\nrestrukturalizovaný\r\nrestrukturalizovat\r\nrestrukturování\r\nrestrukturovaný\r\nrestrukturovat\r\nresultant\r\nresumé\r\nrésumé\r\nresumování\r\nresumovaný\r\nresumovat\r\nresuscitace\r\nresuscitační\r\nrešeršér\r\nrešeršérův\r\nrešerše\r\nrešeršní\r\nRešice\r\nrešický\r\nRešlová\r\nRešl\r\nRešlův\r\nRešov\r\nrešovský\r\nretardace\r\nretardér\r\nretardovaný\r\nretardující\r\nReteč\r\nretence\r\nretenční\r\nretina\r\nretinol\r\nretinovaný\r\nretinovat\r\nretka\r\nretnice\r\nretní\r\nretný\r\nretoretný\r\nrétorický\r\nrétoričtější\r\nrétorika\r\nrétorismus\r\nrétorománský\r\nrétorománština\r\nrétor\r\nrétorštější\r\nretorta\r\nrétorův\r\nretozubný\r\nret\r\nretrakce\r\nretranslace\r\nretranslační\r\nretranslátor\r\nretribuce\r\nretribuční\r\nretriever\r\nretrieverův\r\nretro\r\nretroaktivita\r\nretrocese\r\nretrográdní\r\nretrokomedie\r\nretrospektiva\r\nretrospektivní\r\nRetrová\r\nretrovirus\r\nRetr\r\nRetrův\r\nRettigová\r\nRettig\r\nRettigův\r\nretušování\r\nretušovaný\r\nretušovat\r\nretušovávání\r\nretušovávaný\r\nretušovávat\r\nretušující\r\nretuš\r\nreumatismus\r\nRéunion\r\nréunionský\r\nrevalvace\r\nrevalvační\r\nrevalvování\r\nrevalvovaný\r\nrevalvovat\r\nrevanšismus\r\nrevanšista\r\nrevanšistčin\r\nrevanšistický\r\nrevanšističtější\r\nrevanšistka\r\nrevanšistův\r\nrevanšování\r\nrevanšovat\r\nrevanš\r\nréva\r\nreveň\r\nreveně\r\nreveněmi\r\nreveni\r\nrevení\r\nreveních\r\nrevením\r\nreveňový\r\nreverend\r\nreverendův\r\nrevers\r\nreversní\r\nreverzace\r\nreverz\r\nreverzibilita\r\nreverzibilnější\r\nreverzibilní\r\nreverzní\r\nRevický\r\nrevidování\r\nrevidování\r\nrevidovaný\r\nrevidovat\r\nrevidovávání\r\nrevidovávaný\r\nrevidovávat\r\nrevidující\r\nreviktimizace\r\nrevír\r\nrevírník\r\nrevírníkův\r\nrevírní\r\nrevise\r\nrevisionista\r\nrevisionistčin\r\nrevisionistka\r\nrevisionistův\r\nrevitalizace\r\nrevitalizační\r\nrevitalizování\r\nrevitalizovaný\r\nrevitalizovat\r\nrevivalismus\r\nrevize\r\nrevizionismus\r\nrevizionista\r\nrevizionistčin\r\nrevizionistický\r\nrevizionistka\r\nrevizionistův\r\nrevizní\r\nrevizorčin\r\nrevizorka\r\nrevizor\r\nrevizorský\r\nrevizorův\r\nrevma\r\nrevmatický\r\nrevmatiččin\r\nrevmatička\r\nrevmatičtější\r\nrevmatik\r\nrevmatikův\r\nrevmatismus\r\nrevmatolog\r\nrevmatologův\r\nrevmatoložčin\r\nrevmatoložka\r\nrevokace\r\nrévokaz\r\nrévokazův\r\nrevokovat\r\nrevokovávat\r\nrevolta\r\nrevoltovat\r\nrevoltující\r\nrevoluce\r\nrevolucionářčin\r\nrevolucionářka\r\nrevolucionářský\r\nrevolucionářství\r\nrevolucionář\r\nrevolucionářův\r\nrevolucionizovat\r\nrevolucionovat\r\nrevolučnější\r\nrevoluční\r\nrevolver\r\nrevolverový\r\nrevolving\r\nrevolvingový\r\nrévoví\r\nrévový\r\nrevuální\r\nRevúca\r\nrevúcký\r\nrevue\r\nrez\r\nrezatější\r\nrezatý\r\nrezavějící\r\nrezavější\r\nrezavění\r\nrezavět\r\nrezavohnědý\r\nrezavý\r\nrezeda\r\nRezek\r\nrezekvítek\r\nrezervace\r\nrezervační\r\nrezervátor\r\nrezerva\r\nrezervista\r\nrezervistčin\r\nrezervistka\r\nrezervistův\r\nrezervní\r\nrezervoár\r\nrezervovanější\r\nrezervování\r\nrezervovaný\r\nrezervovat\r\nrezervující\r\nrezidence\r\nrezidenční\r\nrezidentčin\r\nrezidentka\r\nrezidentní\r\nrezident\r\nrezidentura\r\nrezidentův\r\nreziduálnější\r\nreziduální\r\nreziduum\r\nrezignace\r\nrezignování\r\nrezignovaný\r\nrezignovat\r\nrezignující\r\nrezistance\r\nrezistence\r\nrezistentnější\r\nrezistentní\r\nrezistivita\r\nrezistor\r\nrezivějící\r\nrezivější\r\nrezivění\r\nrezivět\r\nrezivý\r\nRezková\r\nRezkův\r\nRezlerová\r\nRezler\r\nRezlerův\r\nrezoluce\r\nrezoluční\r\nrezolutnější\r\nrezolutní\r\nrezonance\r\nrezonanční\r\nrezonátor\r\nrezonování\r\nrezonovat\r\nrezonující\r\nrezort\r\nrezortismus\r\nrezortní\r\nrezovatý\r\nrezový\r\nrezultát\r\nrezultující\r\nrezumování\r\nrezumovaný\r\nrezumovat\r\nrežie\r\nrežijní\r\nrežim\r\nrežimista\r\nrežimistčin\r\nrežimistka\r\nrežimistův\r\nrežimový\r\nrežírování\r\nrežírovaný\r\nrežírovat\r\nrežírující\r\nrežisérčin\r\nrežisérismus\r\nrežisérka\r\nrežisér\r\nrežisérský\r\nrežisérštější\r\nrežisérův\r\nrežizér\r\nrežizérův\r\nRežňáková\r\nRežňák\r\nRežňákův\r\nrežnější\r\nrežný\r\nRf\r\nRGB\r\nRhein\r\nrheniový\r\nrhenium\r\nrheumatismus\r\nrhodanid\r\nRhodésančin\r\nRhodésanka\r\nRhodésan\r\nRhodésanův\r\nRhodésie\r\nrhodésijský\r\nrhodium\r\nRhodos\r\nrhodoxantin\r\nrhodský\r\nrial\r\nRibbentropův\r\nriboflavin\r\nribonukleotida\r\nribonukleový\r\nribosa\r\nribóza\r\nribozom\r\nribstol\r\nricínový\r\nricinový\r\nRick\r\nRickův\r\nRiedlová\r\nRiedl\r\nRiedlův\r\nRiegelová\r\nRiegel\r\nRiegelův\r\nRiegerová\r\nRieger\r\nRiegerův\r\nRiegrův\r\nRiemerová\r\nRiemer\r\nRiemerův\r\nRieseová\r\nRiese\r\nRieseův\r\nrif\r\nrifle\r\nriflový\r\nriftový\r\nRiga\r\nrigidita\r\nrigidnější\r\nrigidní\r\nrigol\r\nrigorismus\r\nrigoróznější\r\nrigorózní\r\nrigorózum\r\nRichard\r\nRichardův\r\nRichmond\r\nrichmondský\r\nRichterová\r\nRichter\r\nRichterův\r\nRichtrová\r\nRichtr\r\nRichtrův\r\nRiječin\r\nRijeka\r\nrikša\r\nrikšův\r\nring\r\nringle\r\nringový\r\nrinolálie\r\nRio\r\nriový\r\nRIP\r\nRISC\r\nrisiko\r\nriskantnější\r\nriskantní\r\nrisk\r\nrisknout\r\nrisknutí\r\nrisknutý\r\nriskování\r\nriskovaný\r\nriskovat\r\nriskující\r\nrisoluto\r\nRissmannová\r\nRissmann\r\nRissmannův\r\nRíša\r\nRíšův\r\nriterando\r\nrit\r\nrituál\r\nritualismus\r\nritualista\r\nritualistčin\r\nritualistka\r\nritualistův\r\nritualizace\r\nritualizovaný\r\nritualizovat\r\nritualizující\r\nrituálnější\r\nrituální\r\nritus\r\nrivalčin\r\nrivalita\r\nrivalizující\r\nrivalka\r\nrival\r\nrivalův\r\nriviéra\r\nrizalit\r\nrizicích\r\nriziko\r\nrizikovější\r\nrizikový\r\nrizoto\r\nrižský\r\nRjabcová\r\nRjabcův\r\nRjabec\r\nRK\r\nrkp\r\nRKZ\r\nrmen\r\nrmoucení\r\nrmoucený\r\nrmoutit\r\nrmut\r\nRNA\r\nRNDr\r\nRNK\r\nroadster\r\nroajalismus\r\nroajalista\r\nroajalistčin\r\nroajalistický\r\nroajalističtější\r\nroajalistka\r\nroajalistův\r\nrobátko\r\nróba\r\nrobčin\r\nrobě\r\nrobenější\r\nrobení\r\nrobený\r\nRobertek\r\nrobertek\r\nRobertkův\r\nRobert\r\nRobertův\r\nRobin\r\nrobinsonáda\r\nrobinsonovský\r\nrobinson\r\nrobinsonův\r\nRobinův\r\nrobinzonáda\r\nrobit\r\nrobka\r\nRoblín\r\nroblínský\r\nroborans\r\nrobota\r\nrobotický\r\nrobotika\r\nrobotí\r\nrobotizace\r\nrobotizační\r\nrobotizovaný\r\nrobotizovat\r\nrobotka\r\nrobotnický\r\nrobotník\r\nrobotní\r\nrobotný\r\nrobotovat\r\nrobotový\r\nrobot\r\nrobotující\r\nrobotův\r\nRobovský\r\nrobustnější\r\nrobustní\r\nrock\r\nrockovější\r\nrockový\r\nroč\r\nročák\r\nročákův\r\nroček\r\nRoček\r\nročenka\r\nRočková\r\nRočkův\r\nročkův\r\nročník\r\nročníkový\r\nroční\r\nRočov\r\nročovský\r\nrodaččin\r\nrodačka\r\nrodáčtější\r\nrodák\r\nrodákův\r\nRodenová\r\nRoden\r\nrodenský\r\nrodenticid\r\nRodenův\r\nrodeo\r\nrod\r\nrodící\r\nrodička\r\nrodičovský\r\nrodičovství\r\nrodičovštější\r\nrodič\r\nrodičův\r\nrodidla\r\nrodilý\r\nrodina\r\nrodinka\r\nrodinnější\r\nrodinněprávní\r\nrodinný\r\nRodinov\r\nrodinovský\r\nrodiště\r\nrodit\r\nroditelčin\r\nroditelka\r\nRodkov\r\nrodkovský\r\nRodná\r\nrodný\r\nrododendron\r\nrododendronový\r\nrodokaps\r\nrodokmen\r\nrodokmenový\r\nrodopis\r\nRodová\r\nrodovější\r\nRodovský\r\nrodový\r\nrodozměna\r\nRod\r\nRodův\r\nRodvínov\r\nrodvínovský\r\nRoentgen\r\nRoentgenův\r\nrogalista\r\nrogalistčin\r\nrogalistka\r\nrogalistův\r\nRogallův\r\nrogalo\r\nROH\r\nroháček\r\nRoháček\r\nRoháčková\r\nRoháčkův\r\nroháčkův\r\nrohačky\r\nRoháčová\r\nroháč\r\nRoháč\r\nRoháčův\r\nroháčův\r\nrohák\r\nRohalová\r\nRohal\r\nRohalův\r\nRohanová\r\nRohan\r\nRohanův\r\nrohatecký\r\nRohatec\r\nrohatější\r\nrohatka\r\nRohatsko\r\nrohatý\r\nroh\r\nRohlena\r\nRohlenová\r\nRohlenův\r\nRohlíček\r\nrohlíček\r\nRohlíčková\r\nRohlíčkův\r\nrohlík\r\nRohlíková\r\nrohlíkový\r\nRohlík\r\nRohlíkův\r\nrohodující\r\nrohování\r\nrohovat\r\nrohovatění\r\nrohovatěný\r\nrohovatět\r\nrohovatý\r\nrohovec\r\nrohovější\r\nrohovina\r\nrohovinový\r\nrohovitější\r\nrohovitý\r\nrohovka\r\nrohovkový\r\nRohov\r\nrohovnický\r\nrohovničtější\r\nrohovník\r\nrohovníkův\r\nrohovský\r\nrohový\r\nrohozecký\r\nRohozec\r\nrohozenský\r\nRohozná\r\nrohožka\r\nrohožovina\r\nrohožový\r\nrohož\r\nrohypnol\r\nrochání\r\nrochetka\r\nRochlov\r\nrochlovský\r\nrochňat\r\nrochnící\r\nrochnit\r\nRochov\r\nrochovský\r\nRoithová\r\nRoith\r\nRoithův\r\nRojarová\r\nRojar\r\nRojarův\r\nrojení\r\nrojený\r\nRojetín\r\nrojetínský\r\nrojit\r\nrojivý\r\nrojnice\r\nrojový\r\nroj\r\nroka\r\nrokaj\r\nrokem\r\nrokenrol\r\nrokenrolovější\r\nrokfór\r\nrok\r\nRoklan\r\nrokle\r\nroklina\r\nroklinka\r\nrokoko\r\nrokokovější\r\nrokokový\r\nRokosová\r\nRokos\r\nRokosův\r\nRokošová\r\nRokoš\r\nRokošův\r\nrokování\r\nrokovaný\r\nrokovat\r\nrokovatelčin\r\nrokovatelka\r\nrokovatel\r\nrokovatelův\r\nrokovější\r\nrokový\r\nrokující\r\nRokycansko\r\nrokycanský\r\nRokycanův\r\nRokycany\r\nRokytá\r\nRokytna\r\nRokytnice\r\nrokytnický\r\nrokytovecký\r\nRokytovec\r\nrokytský\r\nROL\r\nroláda\r\nrolák\r\nrolákový\r\nRoland\r\nRolandův\r\nrolba\r\nroleta\r\nroletka\r\nroletovina\r\nroletový\r\nrole\r\nroli\r\nrolička\r\nroll\r\nrolnice\r\nrolnický\r\nrolnictvo\r\nrolničení\r\nrolnička\r\nrolničkový\r\nrolničtější\r\nrolník\r\nrolníkův\r\nrolovací\r\nrolování\r\nrolovaný\r\nrolovat\r\nrolovávání\r\nrolovávaný\r\nrolovávat\r\nrolový\r\nrolující\r\nROM\r\nromadúr\r\nRomana\r\nromance\r\nRomancová\r\nRomancův\r\nRomančin\r\nRomanec\r\nrománek\r\nromanesknější\r\nromaneto\r\nromán\r\nRomanin\r\nromanista\r\nromanistčin\r\nromanistický\r\nromanistika\r\nromanistka\r\nromanistův\r\nromanizace\r\nromanizační\r\nRomanka\r\nrománkový\r\nromanopiscův\r\nromanopisec\r\nRomanová\r\nrománovější\r\nrománový\r\nRoman\r\nrománský\r\nrománštější\r\nromantický\r\nromantička\r\nromantičtější\r\nromantika\r\nromantik\r\nromantikův\r\nromantismus\r\nromantizování\r\nromantizovaný\r\nromantizovat\r\nromantizující\r\nRomanův\r\nRomčin\r\nromčin\r\nRomeo\r\nRomeův\r\nromista\r\nromistčin\r\nromistika\r\nromistka\r\nromistův\r\nRomka\r\nRom\r\nromský\r\nromský\r\nromština\r\nrómština\r\nRomův\r\nromův\r\nrondel\r\nrondokubismus\r\nrondokubistický\r\nroněnější\r\nronění\r\nroněný\r\nronící\r\nronit\r\nRonov\r\nronovský\r\nrooming\r\nropa\r\nRopek\r\nRopková\r\nRopkův\r\nropný\r\nroponosný\r\nropovod\r\nropový\r\nRoprachtice\r\nroprachtický\r\nropraskání\r\nropucha\r\nropuchovitý\r\nropuší\r\nropuška\r\nropušnice\r\nroráty\r\nrorejs\r\nrorejsův\r\nrorýs\r\nrorýsův\r\nRosáková\r\nRosák\r\nRosákův\r\nRosa\r\nrosa\r\nrosečtější\r\nRosenbaumová\r\nRosenbaum\r\nRosenbaumův\r\nRosenbergová\r\nRosenberg\r\nRosenbergův\r\nrosendorfský\r\nrosení\r\nRosenthalová\r\nRosenthal\r\nRosenthalův\r\nrosený\r\nRosice\r\nRosický\r\nrosický\r\nrosický\r\nrosička\r\nrosit\r\nRoskovcová\r\nRoskovcův\r\nRoskovec\r\nroslin\r\nrosnatka\r\nRosnice\r\nrosnička\r\nrosničkovitý\r\nrosný\r\nrosol\r\nrosolovatění\r\nrosolovatět\r\nRosolová\r\nrosolovitější\r\nrosolovitý\r\nRosol\r\nRosolův\r\nrosomák\r\nrosomákův\r\nRosová\r\nRosovice\r\nrosovický\r\nrosový\r\nRossie\r\nRosťa\r\nrostbíf\r\nrostený\r\nRostík\r\nRostíkův\r\nRostislav\r\nRostislavův\r\nrostlejší\r\nrostlinářčin\r\nrostlinářka\r\nrostlinář\r\nrostlinářův\r\nrostlina\r\nrostlinka\r\nrostlinný\r\nrostlinolékařčin\r\nrostlinolékařka\r\nrostlinolékařský\r\nrostlinolékařství\r\nrostlinolékař\r\nrostlinolékařův\r\nrostlinopis\r\nrostlinstvo\r\nrostl\r\nrostlý\r\nrostoucí\r\nRostov\r\nrostovský\r\nrostu\r\nRosťův\r\nRosůlek\r\nRosůlková\r\nRosůlkův\r\nRosův\r\nrošáda\r\nRošický\r\nrošťácký\r\nrošťák\r\nrošťákův\r\nrošťárna\r\nroštěná\r\nroštěnec\r\nroštěnka\r\nrošt\r\nRoštín\r\nroštínský\r\nroští\r\nRoštlapilová\r\nRoštlapil\r\nRoštlapilův\r\nroštový\r\nrotace\r\nrotačka\r\nrotačkový\r\nrotační\r\nrotaprint\r\nrotaprintový\r\nRotava\r\nrota\r\nRothová\r\nRoth\r\nRothův\r\nRotlevův\r\nrotmistr\r\nrotmistrův\r\nrotný\r\nrotoped\r\nrotor\r\nrotorový\r\nrotování\r\nrotovaný\r\nrotovat\r\nRotterdam\r\nrotterdamský\r\nrotterdamštější\r\nRotterová\r\nRotter\r\nRotterův\r\nRottová\r\nRott\r\nRottův\r\nrottweiler\r\nrottweilerův\r\nrotující\r\nrotunda\r\nrotvajler\r\nrotvajlerův\r\nrotweiller\r\nrotweillerův\r\nRoubalová\r\nRoubal\r\nRoubalův\r\nRoubanina\r\nroubení\r\nroubený\r\nroub\r\nRoubíček\r\nRoubíčková\r\nRoubíčkův\r\nroubík\r\nRoubíková\r\nroubíkový\r\nRoubík\r\nRoubíkův\r\nroubit\r\nroubování\r\nroubovaný\r\nroubovat\r\nroubový\r\nRouček\r\nRoučka\r\nRoučková\r\nRoučkův\r\nroudenský\r\nRoudka\r\nRoudná\r\nRoudné\r\nRoudnice\r\nroudnicko\r\nroudnický\r\nRoudno\r\nroudný\r\nrouhačský\r\nrouhačství\r\nrouhač\r\nrouhačův\r\nrouhání\r\nRouha\r\nrouhat\r\nrouhávání\r\nrouhávat\r\nrouhavější\r\nrouhavý\r\nRouhová\r\nRouhův\r\nroucho\r\nrouno\r\nrounotvořící\r\nrounovací\r\nrounování\r\nrounovaný\r\nrounovat\r\nrounovitý\r\nrounový\r\nroupcův\r\nroupec\r\nRoupov\r\nroupovský\r\nroup\r\nroupův\r\nroura\r\nrourka\r\nrourkový\r\nrourovna\r\nrourový\r\nRousek\r\nRousínov\r\nrousínovský\r\nRouské\r\nRousková\r\nRouskův\r\nRousměrov\r\nrousměrovský\r\nrousnice\r\nrousný\r\nRousová\r\nRous\r\nRousseau\r\nRousseaův\r\nRousův\r\nRoušarová\r\nRoušar\r\nRoušarův\r\nrouška\r\nrouta\r\nrouter\r\nrouting\r\nroutka\r\nroutovitý\r\nRovanová\r\nRovan\r\nRovanův\r\nrovečenský\r\nRovečné\r\nroven\r\nRovensko\r\nrovenský\r\nroveň\r\nrover\r\nroverův\r\nrov\r\nrovinatější\r\nrovinatý\r\nrovina\r\nrovinka\r\nrovinný\r\nrovinový\r\nRoviště\r\nrovišťský\r\nrovnací\r\nrovnačka\r\nrovnající\r\nrovna\r\nRovnaníková\r\nRovnaník\r\nRovnaníkův\r\nrovnání\r\nrovnaný\r\nrovnatelný\r\nrovnat\r\nrovnátko\r\nrovnávající\r\nrovnávání\r\nrovnávaný\r\nrovnávat\r\nRovná\r\nrovnější\r\nrovněž\r\nrovnice\r\nrovník\r\nrovníkový\r\nrovni\r\nrovnítko\r\nrovnoběžka\r\nrovnoběžkový\r\nrovnoběžník\r\nrovnoběžnostěn\r\nrovnoběžný\r\nrovnocennější\r\nrovnocenný\r\nrovnodenní\r\nrovnodušný\r\nrovnoměrnější\r\nrovnoměrný\r\nrovnomocný\r\nrovno\r\nrovnoprávnější\r\nrovnoprávný\r\nrovnoramenný\r\nrovnostářský\r\nrovnostářství\r\nrovnostář\r\nrovnostářův\r\nrovnostní\r\nrovnostranný\r\nrovnovah\r\nrovnováha\r\nrovnovážný\r\nrovnu\r\nrovny\r\nrovný\r\nrovový\r\nroyalismus\r\nroyalista\r\nroyalistčin\r\nroyalistický\r\nroyalističtější\r\nroyalistka\r\nroyalistův\r\nroz\r\nRozárčin\r\nRozárka\r\nrozbafání\r\nrozbafaný\r\nrozbafat\r\nrozbagrovanější\r\nrozbagrování\r\nrozbagrovaný\r\nrozbagrovat\r\nrozbagrovávání\r\nrozbagrovávaný\r\nrozbagrovávat\r\nrozbahnělejší\r\nrozbahnělý\r\nrozbahněnější\r\nrozbahnění\r\nrozbahněný\r\nrozbahnit\r\nrozbalenější\r\nrozbalení\r\nrozbalený\r\nrozbalit\r\nrozbalitelnější\r\nrozbalitelný\r\nrozbalovanější\r\nrozbalování\r\nrozbalovaný\r\nrozbalovat\r\nrozbalovávání\r\nrozbalovávaný\r\nrozbalovávat\r\nrozbalující\r\nrozbarvení\r\nrozbásnění\r\nrozbásněný\r\nrozbásnit\r\nrozbečení\r\nrozbečený\r\nrozbečet\r\nrozběhání\r\nrozběhaný\r\nrozběhat\r\nrozběhávání\r\nrozběhávaný\r\nrozběhávat\r\nrozběh\r\nrozběhlejší\r\nrozběhlý\r\nrozběhnout\r\nrozběhnutí\r\nrozběhnutý\r\nrozběhovější\r\nrozběhový\r\nrozběsněnější\r\nrozběsnění\r\nrozběsněný\r\nrozběsnit\r\nrozběžiště\r\nrozbíhající\r\nrozbíhanější\r\nrozbíhání\r\nrozbíhaný\r\nrozbíhat\r\nrozbíhávání\r\nrozbíhávaný\r\nrozbíhávat\r\nrozbíhavější\r\nrozbíhavý\r\nrozbíhavý\r\nrozbíječ\r\nrozbíjející\r\nrozbíjení\r\nrozbíjený\r\nrozbíjet\r\nrozbírající\r\nrozbírání\r\nrozbíraný\r\nrozbíratelný\r\nrozbírat\r\nrozbít\r\nrozbitější\r\nrozbitelnější\r\nrozbitelný\r\nrozbití\r\nrozbitnost\r\nrozbitný\r\nrozbit\r\nrozbitý\r\nrozblácenější\r\nrozblácení\r\nrozblácený\r\nrozblátit\r\nrozblikání\r\nrozblikaný\r\nrozblikat\r\nrozblikávání\r\nrozblikávaný\r\nrozblikávat\r\nrozbočení\r\nrozbočený\r\nrozbočit\r\nrozbočka\r\nrozbočovač\r\nrozbočování\r\nrozbočovaný\r\nrozbočovat\r\nrozbočující\r\nrozbodání\r\nrozbodaný\r\nrozbodat\r\nrozbodávání\r\nrozbodávaný\r\nrozbodávat\r\nrozbojování\r\nrozbojovaný\r\nrozbojovat\r\nrozbojovávání\r\nrozbojovávaný\r\nrozbojovávat\r\nrozbolavělejší\r\nrozbolavělý\r\nrozbolavěný\r\nrozbolení\r\nrozbolený\r\nrozbolet\r\nrozbombardování\r\nrozbombardovaný\r\nrozbombardovat\r\nrozbombardovávání\r\nrozbombardovávaný\r\nrozbombardovávat\r\nrozbor\r\nrozborka\r\nrozborový\r\nrozboření\r\nrozbořený\r\nrozbořit\r\nrozbourání\r\nrozbouraný\r\nrozbourat\r\nrozbourávání\r\nrozbourávaný\r\nrozbourávat\r\nrozbouřenější\r\nrozbouření\r\nrozbouřený\r\nrozbouřit\r\nrozbratřování\r\nrozbratřovaný\r\nrozbratřovat\r\nrozbratřovávat\r\nrozbrázděnější\r\nrozbrázdění\r\nrozbrázděný\r\nrozbrázdit\r\nrozbrečení\r\nrozbrečený\r\nrozbrečet\r\nrozbreptaný\r\nrozbrnkání\r\nrozbrnkaný\r\nrozbrnkat\r\nrozbrnkávat\r\nrozbroj\r\nrozbrousit\r\nrozbroušenější\r\nrozbroušení\r\nrozbroušený\r\nrozbruslení\r\nrozbruslit\r\nrozbrušovanější\r\nrozbrušování\r\nrozbrušovaný\r\nrozbrušovat\r\nrozbrušující\r\nrozbryndání\r\nrozbryndaný\r\nrozbryndat\r\nrozbředání\r\nrozbředat\r\nrozbředávání\r\nrozbředávaný\r\nrozbředávat\r\nrozbředlejší\r\nrozbředlý\r\nrozbřednout\r\nrozbřednutí\r\nrozbřesk\r\nrozbřesknout\r\nrozbřesknutí\r\nrozbřeskování\r\nrozbřeskovaný\r\nrozbřeskovat\r\nrozbublání\r\nrozbublaný\r\nrozbublat\r\nrozbublávat\r\nrozbudovanější\r\nrozbudování\r\nrozbudovaný\r\nrozbudovat\r\nrozbudovávanější\r\nrozbudovávání\r\nrozbudovávaný\r\nrozbudovávat\r\nrozbujelý\r\nrozbujení\r\nrozbujet\r\nrozburácení\r\nrozburácet\r\nrozbušenější\r\nrozbušení\r\nrozbušený\r\nrozbušit\r\nrozbuška\r\nrozcákání\r\nrozcákaný\r\nrozcákat\r\nrozcamrat\r\nrozcapenější\r\nrozcestí\r\nrozcestník\r\nrozcitlivělejší\r\nrozcitlivělý\r\nrozcmrndání\r\nrozcmrndaný\r\nrozcmrndat\r\nrozcmrndávat\r\nrozcouraný\r\nrozcrčení\r\nrozcrčet\r\nrozcuchanější\r\nrozcuchání\r\nrozcuchaný\r\nrozcuchat\r\nrozcuchávat\r\nrozcupat\r\nrozcupování\r\nrozcupovaný\r\nrozcupovat\r\nrozcupu\r\nrozcvakání\r\nrozcvakaný\r\nrozcvakat\r\nrozcvakávání\r\nrozcvakávaný\r\nrozcvakávat\r\nrozcválání\r\nrozcválaný\r\nrozcválat\r\nrozcválávání\r\nrozcválávat\r\nrozcvičenější\r\nrozcvičení\r\nrozcvičený\r\nrozcvičit\r\nrozcvička\r\nrozcvičování\r\nrozcvičovaný\r\nrozcvičovat\r\nrozcvičující\r\nrozcvrčet\r\nrozcvrnkávání\r\nrozcvrnkávaný\r\nrozcvrnkávat\r\nrozcvrnknout\r\nrozcvrnknutí\r\nrozcvrnknutý\r\nrozčarování\r\nrozčarovaný\r\nrozčarovat\r\nrozčepýřenější\r\nrozčepýření\r\nrozčepýřený\r\nrozčepýřit\r\nrozčerpání\r\nrozčerpaný\r\nrozčerpat\r\nrozčeření\r\nrozčeřený\r\nrozčeřit\r\nrozčeřovat\r\nrozčesanější\r\nrozčesání\r\nrozčesaný\r\nrozčesat\r\nrozčesávání\r\nrozčesávaný\r\nrozčesávat\r\nrozčilenější\r\nrozčílenější\r\nrozčilení\r\nrozčílení\r\nrozčilený\r\nrozčílený\r\nrozčilit\r\nrozčílit\r\nrozčilovač\r\nrozčilování\r\nrozčilovaný\r\nrozčilovat\r\nrozčilovávání\r\nrozčilovávaný\r\nrozčilovávat\r\nrozčilující\r\nrozčísnout\r\nrozčísnutí\r\nrozčísnutý\r\nrozčíst\r\nrozčlánkování\r\nrozčlánkovaný\r\nrozčlánkovat\r\nrozčleněnější\r\nrozčlenění\r\nrozčleněný\r\nrozčlenit\r\nrozčlenitelnější\r\nrozčlenitelný\r\nrozčleňovací\r\nrozčleňování\r\nrozčleňovaný\r\nrozčleňovat\r\nrozčleňující\r\nrozčtení\r\nrozčtený\r\nrozčtvrcení\r\nrozčtvrcený\r\nrozčtvrtit\r\nrozčutnout\r\nrozčutnutí\r\nrozčutnutý\r\nrozčvachtaný\r\nrozdanější\r\nrozdání\r\nrozdaný\r\nrozdat\r\nrozdávající\r\nrozdávanější\r\nrozdávání\r\nrozdávaný\r\nrozdavatelka\r\nrozdavatel\r\nrozdavatelův\r\nrozdávat\r\nrozdělanější\r\nrozdělání\r\nrozdělaný\r\nrozdělat\r\nrozdělávání\r\nrozdělávaný\r\nrozdělávat\r\nrozdělenější\r\nrozdělení\r\nrozdělený\r\nrozdělit\r\nrozdělitelnější\r\nrozdělitelný\r\nrozdělovací\r\nrozdělovač\r\nrozdělovanější\r\nrozdělování\r\nrozdělovaný\r\nrozdělovat\r\nrozdělovatelnější\r\nrozdělovatelný\r\nrozdělovávání\r\nrozdělovávaný\r\nrozdělovávat\r\nrozdělovna\r\nrozdělovník\r\nrozdělující\r\nrozdíl\r\nrozdílení\r\nrozdílený\r\nrozdílet\r\nrozdíl\r\nrozdílnější\r\nrozdílný\r\nrozdílový\r\nrozdírající\r\nrozdíranější\r\nrozdírání\r\nrozdíraný\r\nrozdíratelnější\r\nrozdíratelný\r\nrozdírat\r\nrozdíravý\r\nrozdistribuování\r\nrozdistribuovaný\r\nrozdistribuovat\r\nrozdivočelejší\r\nrozdivočelý\r\nrozdlabání\r\nrozdlabaný\r\nrozdlabat\r\nrozdlabávání\r\nrozdlabávaný\r\nrozdlabávat\r\nrozdloubání\r\nrozdloubaný\r\nrozdloubat\r\nrozdloubávání\r\nrozdloubávaný\r\nrozdloubávat\r\nrozdmychání\r\nrozdmýchání\r\nrozdmychaný\r\nrozdmýchaný\r\nrozdmychat\r\nrozdmýchat\r\nrozdmychávání\r\nrozdmýchávání\r\nrozdmychávaný\r\nrozdmýchávaný\r\nrozdmýchávat\r\nrozdmychávat\r\nrozďobat\r\nrozdoutnání\r\nrozdoutnat\r\nrozdoutnávání\r\nrozdoutnávat\r\nrozdováděnější\r\nrozdovádění\r\nrozdováděný\r\nrozdovádět\r\nrozdrápající\r\nrozdrápanější\r\nrozdrápání\r\nrozdrápaný\r\nrozdrápat\r\nrozdrápnout\r\nrozdrápnutí\r\nrozdrápnutý\r\nrozdrásání\r\nrozdrásaný\r\nrozdrásat\r\nrozdrážděnější\r\nrozdráždění\r\nrozdrážděný\r\nrozdráždit\r\nrozdrbání\r\nrozdrbaný\r\nrozdrbat\r\nrozdrbávání\r\nrozdrbávaný\r\nrozdrbávat\r\nrozdrcení\r\nrozdrcený\r\nrozdrnčení\r\nrozdrnčený\r\nrozdrnčet\r\nrozdrnkat\r\nrozdrobení\r\nrozdrobený\r\nrozdrobit\r\nrozdrobování\r\nrozdrobovaný\r\nrozdrobovat\r\nrozdrobovávání\r\nrozdrobovávaný\r\nrozdrobovávat\r\nrozdrobující\r\nRozdrojovice\r\nrozdrojovický\r\nrozdrolení\r\nrozdrolený\r\nrozdrolit\r\nrozdrolování\r\nrozdrolovaný\r\nrozdrolovat\r\nrozdrtit\r\nrozdupanější\r\nrozdupání\r\nrozdupaný\r\nrozdupat\r\nrozdupávanější\r\nrozdupávání\r\nrozdupávaný\r\nrozdupávat\r\nrozdupnout\r\nrozdupnutější\r\nrozdupnutí\r\nrozdupnutý\r\nrozdupnutý\r\nrozdupu\r\nrozdurděnější\r\nrozdurděný\r\nrozdvojenější\r\nrozdvojení\r\nrozdvojený\r\nrozdvojit\r\nrozdvojka\r\nrozdvojování\r\nrozdvojovaný\r\nrozdvojovat\r\nrozdýchání\r\nrozdýchaný\r\nrozdýchat\r\nrozdýchávání\r\nrozdýchávaný\r\nrozdýchávat\r\nrozdychtěnější\r\nrozdychtění\r\nrozdychtěný\r\nrozdychtit\r\nrozdýmat\r\nrozeběh\r\nrozeběhnout\r\nrozeběhnutější\r\nrozeběhnutí\r\nrozeběhnutý\r\nrozeběhnutý\r\nrozeběhovější\r\nrozeběhový\r\nrozebíhající\r\nrozebíhání\r\nrozebíhaný\r\nrozebíhat\r\nrozebíhávání\r\nrozebíhávaný\r\nrozebíhávat\r\nrozebírač\r\nrozebíračův\r\nrozebírající\r\nrozebíranější\r\nrozebírání\r\nrozebíraný\r\nrozebíratelnější\r\nrozebiratelný\r\nrozebíratelný\r\nrozebírat\r\nrozebranější\r\nrozebraní\r\nrozebrání\r\nrozebraný\r\nrozebrat\r\nrozebratelnější\r\nrozečíst\r\nrozečtenější\r\nrozečtení\r\nrozečtený\r\nrozedma\r\nrozednění\r\nrozednít\r\nrozednívání\r\nrozednívaný\r\nrozednívat\r\nrozedranější\r\nrozedraní\r\nrozedrání\r\nrozedraný\r\nrozedrat\r\nrozedra\r\nrozedřenější\r\nrozedření\r\nrozedřený\r\nrozedřít\r\nrozehnal\r\nRozehnalová\r\nRozehnal\r\nRozehnalův\r\nrozehnanější\r\nrozehnání\r\nrozehnán\r\nrozehnaný\r\nrozehnat\r\nrozehranější\r\nrozehrání\r\nrozehraný\r\nrozehrát\r\nrozehrávaččin\r\nrozehrávačka\r\nrozehrávač\r\nrozehrávačův\r\nrozehrávající\r\nrozehrávanější\r\nrozehrávání\r\nrozehrávaný\r\nrozehrávat\r\nrozehrávka\r\nrozehra\r\nrozehřání\r\nrozehřát\r\nrozehřátější\r\nrozehřátý\r\nrozehřívání\r\nrozehřívaný\r\nrozehřívat\r\nrozechvělejší\r\nrozechvělý\r\nrozechvěnější\r\nrozechvění\r\nrozechvěný\r\nrozechvět\r\nrozechvívání\r\nrozechvívaný\r\nrozechvívat\r\nrozejda\r\nrozejdu\r\nrozejít\r\nrozejití\r\nrozeklanější\r\nrozeklání\r\nrozeklaný\r\nrozeklát\r\nrozemelu\r\nrozemílání\r\nrozemílaný\r\nrozemílat\r\nrozemlel\r\nrozemlení\r\nrozemletější\r\nrozemletí\r\nrozemlet\r\nrozemletý\r\nrozemletý\r\nrozemlít\r\nrozemluvení\r\nrozemluvený\r\nrozemluvit\r\nrozemnout\r\nrozemnutí\r\nrozemnutý\r\nrození\r\nrozený\r\nrozený\r\nrozepínání\r\nrozepínaný\r\nrozepínat\r\nrozepisovanější\r\nrozepisování\r\nrozepisovaný\r\nrozepisovat\r\nrozepisující\r\nrozepíši\r\nrozepíšu\r\nrozepjal\r\nrozepjatý\r\nrozepnout\r\nrozepnutější\r\nrozepnutí\r\nrozepnutý\r\nrozepření\r\nrozepře\r\nrozepsal\r\nrozepsanější\r\nrozepsanější\r\nrozepsání\r\nrozepsán\r\nrozepsaný\r\nrozepsáný\r\nrozepsat\r\nrozervancův\r\nrozervanec\r\nrozervanější\r\nrozervaní\r\nrozervání\r\nrozervaný\r\nrozervat\r\nrozervávání\r\nrozervávaný\r\nrozervávat\r\nrozeřvání\r\nrozeřvat\r\nrozeřvávání\r\nrozeřvávaný\r\nrozeřvávat\r\nrozesazující\r\nrozeseji\r\nrozesel\r\nrozesení\r\nrozesetější\r\nrozesetí\r\nrozeset\r\nrozesetý\r\nrozesetý\r\nrozeschlejší\r\nrozeschlý\r\nrozeschnl\r\nrozeschnout\r\nrozeschnutí\r\nrozesílací\r\nrozesílající\r\nrozesílanější\r\nrozesílání\r\nrozesílaný\r\nrozesílat\r\nrozesít\r\nrozeskákanější\r\nrozeskákání\r\nrozeskákáno\r\nrozeskákaný\r\nrozeskákat\r\nrozeskakování\r\nrozeskakovat\r\nrozeskakovávání\r\nrozeskakovávaný\r\nrozeskakovávat\r\nrozeskočenější\r\nrozeskočení\r\nrozeskočený\r\nrozeskočit\r\nrozeslal\r\nrozeslanější\r\nrozeslání\r\nrozeslaný\r\nrozeslat\r\nrozesmání\r\nrozesmát\r\nrozesmátější\r\nrozesmátý\r\nrozesmávání\r\nrozesmávaný\r\nrozesmávat\r\nrozesmažit\r\nrozesmutnění\r\nrozesmutnět\r\nrozesmutnit\r\nrozespalejší\r\nrozespalý\r\nrozespanější\r\nrozespání\r\nrozespaný\r\nrozespat\r\nrozespávání\r\nrozespávat\r\nrozestavení\r\nrozestavění\r\nrozestavený\r\nrozestavěný\r\nrozestavět\r\nrozestavit\r\nrozestavování\r\nrozestelu\r\nrozestíranější\r\nrozestírání\r\nrozestíraný\r\nrozestírat\r\nrozestlal\r\nrozestlanější\r\nrozestlání\r\nrozestlaný\r\nrozestlat\r\nrozestoupení\r\nrozestoupený\r\nrozestoupit\r\nrozestouplejší\r\nrozestouplý\r\nrozestrčení\r\nrozestrčený\r\nrozestrčit\r\nrozestrkanější\r\nrozestrkání\r\nrozestrkaný\r\nrozestrkat\r\nrozestřenější\r\nrozestření\r\nrozestřený\r\nrozestřít\r\nrozestup\r\nrozestupní\r\nrozestupný\r\nrozestupování\r\nrozestupovat\r\nrozestupující\r\nrozestýlání\r\nrozestýlaný\r\nrozestýlat\r\nrozesychat\r\nrozesýchat\r\nrozešel\r\nrozešít\r\nrozešitý\r\nrozešlejší\r\nrozešlu\r\nrozešlý\r\nrozeštkat\r\nrozeštvanější\r\nrozeštvání\r\nrozeštvaný\r\nrozeštvat\r\nrozeštvávání\r\nrozeštvávaný\r\nrozeštvávat\r\nrozeta\r\nrozetka\r\nrozetnout\r\nrozetnu\r\nrozetnutější\r\nrozetnutelnější\r\nrozetnutelný\r\nrozetnutí\r\nrozetnutý\r\nrozetový\r\nrozetra\r\nrozetřenější\r\nrozetření\r\nrozetřený\r\nrozetřít\r\nrozevírací\r\nrozevírající\r\nrozevírání\r\nrozevíraný\r\nrozevírat\r\nrozevlání\r\nrozevlát\r\nrozevlátější\r\nrozevlátý\r\nrozevřenější\r\nrozevření\r\nrozevřený\r\nrozevřít\r\nrozevzdychání\r\nrozevzdychaný\r\nrozevzdychat\r\nrozevzdychávání\r\nrozevzdychávat\r\nrozezlenější\r\nrozezlený\r\nrozeznanější\r\nrozeznání\r\nrozeznaný\r\nrozeznatelnější\r\nrozeznatelný\r\nrozeznat\r\nrozeznávací\r\nrozeznávající\r\nrozeznávanější\r\nrozeznávání\r\nrozeznávaný\r\nrozeznávat\r\nrozeznění\r\nrozezněný\r\nrozeznít\r\nrozeznívající\r\nrozeznívání\r\nrozeznívaný\r\nrozeznívat\r\nrozezpívanější\r\nrozezpívání\r\nrozezpívaný\r\nrozezpívat\r\nrozezpívávač\r\nrozezpívávačův\r\nrozezpívávání\r\nrozezpívávaný\r\nrozezpívávat\r\nrozezvánění\r\nrozezváněný\r\nrozezvánět\r\nrozezvučení\r\nrozezvučený\r\nrozezvučet\r\nrozezvučovaný\r\nrozezvučovat\r\nrozezvučující\r\nrozeženu\r\nrozežírající\r\nrozežírání\r\nrozežíraný\r\nrozežírat\r\nrozežnout\r\nrozežnu\r\nrozežranější\r\nrozežrání\r\nrozežraný\r\nrozežrat\r\nrozfárání\r\nrozfáraný\r\nrozfárat\r\nrozfázování\r\nrozfázovaný\r\nrozfázovat\r\nrozflákání\r\nrozflákaný\r\nrozflákat\r\nrozfofrování\r\nrozfofrovaný\r\nrozfofrovat\r\nrozfoukání\r\nrozfoukaný\r\nrozfoukat\r\nrozfoukávání\r\nrozfoukávaný\r\nrozfoukávat\r\nrozfouknout\r\nrozfouknutí\r\nrozfouknutý\r\nrozfukovat\r\nrozhádanější\r\nrozhádání\r\nrozhádaný\r\nrozhádat\r\nrozhafat\r\nrozhalení\r\nrozhalenka\r\nrozhalený\r\nrozhalit\r\nrozhalování\r\nrozhalovat\r\nrozhánějící\r\nrozháněnější\r\nrozhánění\r\nrozháněný\r\nrozhánět\r\nrozháranější\r\nrozhárání\r\nrozháraný\r\nrozhárat\r\nrozházenější\r\nrozházení\r\nrozházený\r\nrozházet\r\nrozhazovačný\r\nrozhazovač\r\nrozhazovačův\r\nrozhazování\r\nrozhazovaný\r\nrozhazovat\r\nrozhazující\r\nrozhekání\r\nrozhekaný\r\nrozhekat\r\nrozhemžení\r\nrozhicování\r\nrozhicovaný\r\nrozhicovat\r\nrozhihňat\r\nrozhihňávat\r\nrozhlas\r\nrozhlásit\r\nrozhlasový\r\nrozhlasový\r\nrozhlášenější\r\nrozhlášení\r\nrozhlášený\r\nrozhlašovanější\r\nrozhlašovaní\r\nrozhlašování\r\nrozhlašovaný\r\nrozhlašovat\r\nrozhlašovávat\r\nrozhlazovací\r\nrozhlazování\r\nrozhlazovaný\r\nrozhlazovat\r\nrozhled\r\nrozhledna\r\nrozhlédnout\r\nrozhlédnul\r\nrozhlédnutější\r\nrozhlédnutí\r\nrozhlédnutý\r\nrozhlédnutý\r\nrozhledový\r\nrozhlehlý\r\nrozhlídnout\r\nrozhlídnul\r\nrozhlížející\r\nrozhlížení\r\nrozhlížet\r\nrozhlodanější\r\nrozhlodání\r\nrozhlodaný\r\nrozhlodat\r\nrozhlodávání\r\nrozhlodávaný\r\nrozhlodávat\r\nrozhněvanější\r\nrozhněvání\r\nrozhněvaný\r\nrozhněvat\r\nrozhněvávat\r\nrozhodce\r\nrozhodcův\r\nrozhodčí\r\nrozhodit\r\nrozhodnější\r\nrozhodnout\r\nrozhodnutější\r\nrozhodnutelnější\r\nrozhodnutelný\r\nrozhodnutí\r\nrozhodnutý\r\nrozhodnutý\r\nrozhodný\r\nrozhodovací\r\nrozhodování\r\nrozhodovaný\r\nrozhodovat\r\nrozhodující\r\nrozhojnění\r\nrozhojněný\r\nrozhojnit\r\nrozhojňování\r\nrozhojňovaný\r\nrozhojňovat\r\nrozhorlenější\r\nrozhorlení\r\nrozhorlený\r\nrozhorlit\r\nrozhořčenější\r\nrozhořčení\r\nrozhořčený\r\nrozhořčit\r\nrozhořčování\r\nrozhořčovaný\r\nrozhořčovat\r\nrozhořelý\r\nrozhoření\r\nrozhořený\r\nrozhořet\r\nrozhořívání\r\nrozhořívaný\r\nrozhořívat\r\nrozhostit\r\nrozhoštění\r\nrozhoštěný\r\nrozhoupání\r\nrozhoupaný\r\nrozhoupat\r\nrozhoupávání\r\nrozhoupávaný\r\nrozhoupávat\r\nrozhovor\r\nrozhovorový\r\nrozhovoření\r\nrozhovořený\r\nrozhovořit\r\nrozhozenější\r\nrozhození\r\nrozhozený\r\nrozhrabanější\r\nrozhrabání\r\nrozhrabaný\r\nrozhrabat\r\nrozhrabávání\r\nrozhrabávaný\r\nrozhrabávat\r\nrozhrábnout\r\nrozhrábnutější\r\nrozhrábnutí\r\nrozhrábnutý\r\nrozhrabování\r\nrozhrabovaný\r\nrozhrabovat\r\nrozhrabovávání\r\nrozhrabovávaný\r\nrozhrabovávat\r\nrozhraničení\r\nrozhraničený\r\nrozhraničit\r\nrozhraničovací\r\nrozhraničování\r\nrozhraničovaný\r\nrozhraničovat\r\nrozhraničující\r\nrozhraní\r\nrozhrkat\r\nrozhrnout\r\nrozhrnovanější\r\nrozhrnování\r\nrozhrnovaný\r\nrozhrnovat\r\nrozhrnující\r\nrozhrnutí\r\nrozhrnutý\r\nrozhryzající\r\nrozhryzanější\r\nrozhryzání\r\nrozhryzaný\r\nrozhryzat\r\nrozhryzávání\r\nrozhryzávaný\r\nrozhryzávat\r\nrozhřešení\r\nrozhřešený\r\nrozhřešit\r\nrozhřešovat\r\nrozhudrat\r\nrozhulákání\r\nrozhulákaný\r\nrozhulákat\r\nrozhýbací\r\nrozhýbající\r\nrozhýbanější\r\nrozhýbání\r\nrozhýbaný\r\nrozhýbat\r\nrozhýbávání\r\nrozhýbávat\r\nrozhýčkání\r\nrozhýčkaný\r\nrozhýčkat\r\nrozhýčkávání\r\nrozhýčkávaný\r\nrozhýčkávat\r\nrozhýření\r\nrozhýřený\r\nrozhýřit\r\nrozcházející\r\nrozcházení\r\nrozcházet\r\nrozcházívat\r\nrozchichotání\r\nrozchichotat\r\nrozchlípka\r\nrozchlístat\r\nrozchod\r\nrozchodit\r\nrozchodka\r\nrozchodnější\r\nrozchodník\r\nrozchodný\r\nrozchození\r\nrozchozený\r\nrozchrchlání\r\nrozchrchlaný\r\nrozchrchlat\r\nrozchuravění\r\nrozchuravěný\r\nrozchuravět\r\nrozchvácení\r\nrozchvácený\r\nrozchvátit\r\nrozchytání\r\nrozchytaný\r\nrozchytat\r\nrozchytávání\r\nrozchytávat\r\nRozínek\r\nrozinka\r\nRozínková\r\nrozinkový\r\nRozínkův\r\nrozjařenější\r\nrozjaření\r\nrozjařený\r\nrozjařilejší\r\nrozjařit\r\nrozjařující\r\nrozjásanější\r\nrozjásání\r\nrozjásaný\r\nrozjásat\r\nrozjasněnější\r\nrozjasnění\r\nrozjasněný\r\nrozjasnit\r\nrozjasňování\r\nrozjasňovaný\r\nrozjasňovat\r\nrozječení\r\nrozječený\r\nrozječet\r\nrozjedení\r\nrozjedený\r\nrozjednající\r\nrozjednanější\r\nrozjednání\r\nrozjednáno\r\nrozjednaný\r\nrozjednat\r\nrozjednávající\r\nrozjednávanější\r\nrozjednávání\r\nrozjednávaný\r\nrozjednávat\r\nrozjedu\r\nrozjektání\r\nrozjektaný\r\nrozjektat\r\nrozjel\r\nrozjení\r\nrozjetější\r\nrozjet\r\nrozjetí\r\nrozjetý\r\nrozjezdění\r\nrozjezděný\r\nrozjezd\r\nrozjezdit\r\nrozjezdní\r\nrozjezdový\r\nrozježděnější\r\nrozježdění\r\nrozježděný\r\nrozježenější\r\nrozježený\r\nrozjídání\r\nrozjídaný\r\nrozjídat\r\nrozjídávání\r\nrozjídávaný\r\nrozjídávat\r\nrozjímací\r\nrozjímanější\r\nrozjímání\r\nrozjímaný\r\nrozjímatelnější\r\nrozjímatelnější\r\nrozjímatelný\r\nrozjímat\r\nrozjímavější\r\nrozjímavý\r\nrozjiskřenější\r\nrozjiskření\r\nrozjiskřený\r\nrozjiskřit\r\nrozjíst\r\nrozjitřenější\r\nrozjitření\r\nrozjitřený\r\nrozjitřit\r\nrozjívenější\r\nrozjívený\r\nrozjíždějící\r\nrozjíždění\r\nrozjížděný\r\nrozjíždět\r\nrozjížďka\r\nrozjížďkový\r\nrozjuchanější\r\nrozkacenější\r\nrozkacení\r\nrozkacený\r\nrozkapanější\r\nrozkapání\r\nrozkapaný\r\nrozkapat\r\nrozkapávání\r\nrozkapávaný\r\nrozkapávat\r\nrozkapu\r\nrozkašlání\r\nrozkašlaný\r\nrozkašlat\r\nrozkatit\r\nrozkázanější\r\nrozkázání\r\nrozkázán\r\nrozkázaný\r\nrozkázat\r\nrozkazatelnější\r\nrozkazatelný\r\nrozkaz\r\nrozkazovací\r\nrozkazovačný\r\nrozkazovanější\r\nrozkazování\r\nrozkazovaný\r\nrozkazovat\r\nrozkazující\r\nrozkáži\r\nrozkecání\r\nrozkecat\r\nrozkejhat\r\nrozkládací\r\nrozkladač\r\nrozkládající\r\nrozkládanější\r\nrozkládání\r\nrozkládaný\r\nrozkladatelnější\r\nrozkladatelný\r\nrozkládat\r\nrozklad\r\nrozklad\r\nrozkladnější\r\nrozkladný\r\nrozkladovější\r\nrozkladový\r\nrozklenutější\r\nrozklenutí\r\nrozklepanější\r\nrozklepání\r\nrozklepaný\r\nrozklepat\r\nrozklepávající\r\nrozklepávanější\r\nrozklepávání\r\nrozklepávaný\r\nrozklepávat\r\nrozklepnout\r\nrozklepnutější\r\nrozklepnutí\r\nrozklepnutý\r\nrozklepnutý\r\nrozklíčování\r\nrozklíčovaný\r\nrozklíčovat\r\nrozklíčovávání\r\nrozklíčovávaný\r\nrozklíčovávat\r\nrozklínovat\r\nrozklíženější\r\nrozklížení\r\nrozklížený\r\nrozklížit\r\nrozkližování\r\nrozkližovaný\r\nrozkližovat\r\nrozklobat\r\nrozklobnout\r\nrozklovat\r\nrozklovávání\r\nrozklovávaný\r\nrozklovávat\r\nrozklovnout\r\nrozklovu\r\nrozklusání\r\nrozklusat\r\nrozkmitanější\r\nrozkmitání\r\nrozkmitaný\r\nrozkmitat\r\nrozkmitávání\r\nrozkmitávaný\r\nrozkmitávat\r\nrozkmit\r\nrozkódování\r\nrozkódovaný\r\nrozkódovat\r\nrozkódovávání\r\nrozkódovávaný\r\nrozkódovávat\r\nrozkohoutěnější\r\nrozkochanější\r\nrozkokrhání\r\nrozkokrhaný\r\nrozkokrhat\r\nrozkoktání\r\nrozkoktaný\r\nrozkoktat\r\nrozkoktávání\r\nrozkoktávaný\r\nrozkoktávat\r\nrozkolébání\r\nrozkolébaný\r\nrozkolébat\r\nrozkolébávání\r\nrozkolébávat\r\nrozkol\r\nrozkolísanější\r\nrozkolísání\r\nrozkolísaný\r\nrozkolísat\r\nrozkolísávání\r\nrozkolísávaný\r\nrozkolísávat\r\nrozkolník\r\nrozkolný\r\nrozkomíhat\r\nrozkopanější\r\nrozkopání\r\nrozkopaný\r\nrozkopat\r\nrozkopávání\r\nrozkopávaný\r\nrozkopávat\r\nrozkop\r\nrozkopírovanější\r\nrozkopírování\r\nrozkopírovaný\r\nrozkopírovat\r\nrozkopírovávanější\r\nrozkopírovávání\r\nrozkopírovávaný\r\nrozkopírovávat\r\nrozkopnout\r\nrozkopnutí\r\nrozkopnutý\r\nrozkošatělý\r\nrozkošatěný\r\nrozkošatět\r\nrozkošatit\r\nrozkoškoný\r\nrozkošnější\r\nrozkošnice\r\nrozkošnický\r\nrozkošnictví\r\nrozkošničtější\r\nrozkošník\r\nrozkošníkův\r\nrozkošný\r\nrozkoš\r\nRozkotová\r\nRozkot\r\nRozkotův\r\nrozkoukání\r\nrozkoukaný\r\nrozkoukat\r\nrozkoukávající\r\nrozkoukávání\r\nrozkoukávat\r\nrozkoulení\r\nrozkoulený\r\nrozkoulet\r\nrozkouření\r\nrozkouřený\r\nrozkouřit\r\nrozkousanější\r\nrozkousání\r\nrozkousaný\r\nrozkousat\r\nrozkousávající\r\nrozkousávanější\r\nrozkousávání\r\nrozkousávaný\r\nrozkousávat\r\nrozkouskování\r\nrozkouskovaný\r\nrozkouskovat\r\nrozkouskovávání\r\nrozkouskovávaný\r\nrozkouskovávat\r\nrozkousnout\r\nrozkousnutější\r\nrozkousnutí\r\nrozkousnutý\r\nrozkousnutý\r\nrozkoušu\r\nrozkout\r\nrozkovanější\r\nrozkování\r\nrozkovaný\r\nrozkovat\r\nrozkovávání\r\nrozkovávaný\r\nrozkovávat\r\nRozkovcová\r\nRozkovcův\r\nRozkovec\r\nrozkovu\r\nrozkračování\r\nrozkračovaný\r\nrozkračovat\r\nrozkradač\r\nrozkrádač\r\nrozkradačův\r\nrozkrádačův\r\nrozkrádání\r\nrozkrádaný\r\nrozkrádat\r\nrozkradenější\r\nrozkradení\r\nrozkradený\r\nrozkrájenější\r\nrozkrájení\r\nrozkrájený\r\nrozkrájet\r\nrozkrajování\r\nrozkrajovaný\r\nrozkrajovat\r\nrozkrajovávání\r\nrozkrajovávaný\r\nrozkrajovávat\r\nrozkrást\r\nrozkreslenější\r\nrozkreslení\r\nrozkreslený\r\nrozkreslit\r\nrozkreslování\r\nrozkreslovaný\r\nrozkreslovat\r\nrozkreslovávání\r\nrozkreslovávaný\r\nrozkreslovávat\r\nrozkreslující\r\nrozkročenější\r\nrozkročení\r\nrozkročený\r\nrozkročit\r\nrozkročmo\r\nrozkročný\r\nrozkročování\r\nrozkročovaný\r\nrozkročovat\r\nrozkrojenější\r\nrozkrojení\r\nrozkrojený\r\nrozkrojit\r\nrozkrok\r\nrozkroucení\r\nrozkroucený\r\nrozkrouhání\r\nrozkrouhaný\r\nrozkrouhat\r\nrozkrouhávání\r\nrozkrouhávaný\r\nrozkrouhávat\r\nrozkroutit\r\nrozkrvácení\r\nrozkrvácet\r\nrozkrýt\r\nrozkrytější\r\nrozkrytelnější\r\nrozkrytelný\r\nrozkrytí\r\nrozkrytý\r\nrozkrytý\r\nrozkrývající\r\nrozkrývanější\r\nrozkrývání\r\nrozkrývaný\r\nrozkrývatelnější\r\nrozkrývatelný\r\nrozkrývat\r\nrozkrývka\r\nrozkřapaný\r\nrozkřápaný\r\nrozkřápat\r\nrozkřáplý\r\nrozkřápnout\r\nrozkřápnutý\r\nrozkřepčení\r\nrozkřepčený\r\nrozkřepčit\r\nrozkřesající\r\nrozkřesanější\r\nrozkřesání\r\nrozkřesaný\r\nrozkřesat\r\nrozkřesávající\r\nrozkřesávanější\r\nrozkřesávání\r\nrozkřesávaný\r\nrozkřesávat\r\nrozkřičenější\r\nrozkřičení\r\nrozkřičený\r\nrozkřičet\r\nrozkřídlenější\r\nrozkřiknout\r\nrozkřiknutí\r\nrozkřiknutý\r\nrozkřikovat\r\nrozkuckání\r\nrozkuckaný\r\nrozkuckat\r\nrozkuchání\r\nrozkuchaný\r\nrozkuchat\r\nrozkuchávání\r\nrozkuchávaný\r\nrozkuchávat\r\nrozkulačení\r\nrozkulačený\r\nrozkulačit\r\nrozkulení\r\nrozkulený\r\nrozkulhanější\r\nrozkulhání\r\nrozkulhaný\r\nrozkulhat\r\nrozkulhávanější\r\nrozkulhávání\r\nrozkulhávaný\r\nrozkulhávat\r\nrozkulit\r\nrozkuráženější\r\nrozkusovanější\r\nrozkusování\r\nrozkusovaný\r\nrozkusovat\r\nrozkusující\r\nrozkutálení\r\nrozkutálený\r\nrozkutálet\r\nrozkutí\r\nrozkutý\r\nrozkvasit\r\nrozkvašenější\r\nrozkvašení\r\nrozkvašený\r\nrozkvedlání\r\nrozkvedlaný\r\nrozkvedlat\r\nrozkvedlávání\r\nrozkvedlávaný\r\nrozkvedlávat\r\nrozkvést\r\nrozkvétající\r\nrozkvétající\r\nrozkvétání\r\nrozkvétat\r\nrozkvetení\r\nrozkvetený\r\nrozkvět\r\nrozkvetlejší\r\nrozkvetlý\r\nrozkvikat\r\nrozkvíkat\r\nrozkvrdlat\r\nrozkydání\r\nrozkydaný\r\nrozkydat\r\nrozkydávání\r\nrozkydávaný\r\nrozkydávat\r\nrozkymácení\r\nrozkymácený\r\nrozkymácet\r\nrozkynutější\r\nrozkývání\r\nrozkývaný\r\nrozkývat\r\nrozladěnější\r\nrozladění\r\nrozladěný\r\nrozladit\r\nrozlámanější\r\nrozlámání\r\nrozlámaný\r\nrozlámat\r\nrozlamovat\r\nrozléhající\r\nrozléhání\r\nrozléhat\r\nrozléhávání\r\nrozléhávat\r\nrozlehlejší\r\nrozlehlý\r\nrozlehlý\r\nrozlehnout\r\nrozlehnutí\r\nrozlepení\r\nrozlepený\r\nrozlepit\r\nrozlepování\r\nrozlepovaný\r\nrozlepovat\r\nrozleptání\r\nrozleptaný\r\nrozleptat\r\nrozleptávající\r\nrozleptávání\r\nrozleptávaný\r\nrozleptávat\r\nrozlepující\r\nrozleštění\r\nrozleštěný\r\nrozleštit\r\nrozlétání\r\nrozlétaný\r\nrozlétat\r\nrozlétávání\r\nrozlétávat\r\nrozletění\r\nrozletěný\r\nrozletět\r\nrozlet\r\nrozlétnout\r\nrozlétnutí\r\nrozletování\r\nrozletovat\r\nrozlévající\r\nrozlévání\r\nrozlévaný\r\nrozlévat\r\nrozlézající\r\nrozlézání\r\nrozlézat\r\nrozlezení\r\nrozlezlejší\r\nrozlezlý\r\nrozlézt\r\nrozležení\r\nrozležený\r\nrozležet\r\nrozlícenější\r\nrozlícení\r\nrozlícený\r\nrozličnější\r\nrozličný\r\nrozlisování\r\nrozlisovaný\r\nrozlisovat\r\nrozlisovávat\r\nrozlišenější\r\nrozlišení\r\nrozlišený\r\nrozlišit\r\nrozlišitelnější\r\nrozlišitelný\r\nrozlišovací\r\nrozlišování\r\nrozlišovaný\r\nrozlišovat\r\nrozlišovatelný\r\nrozlišující\r\nrozlítanější\r\nrozlítání\r\nrozlítaný\r\nrozlítat\r\nrozlítávat\r\nrozlít\r\nrozlití\r\nrozlítit\r\nrozlítnout\r\nrozlítnutí\r\nrozlit\r\nrozlítostnělý\r\nrozlítostněný\r\nrozlítostnit\r\nrozlitý\r\nrozlitý\r\nrozlívanější\r\nrozlívání\r\nrozlívaný\r\nrozlívat\r\nrozlobení\r\nrozlobený\r\nrozloha\r\nrozlomenější\r\nrozlomení\r\nrozlomený\r\nrozlomit\r\nrozlosování\r\nrozlosovaný\r\nrozlosovat\r\nrozloučenější\r\nrozloučení\r\nrozloučený\r\nrozloučit\r\nrozloupání\r\nrozloupaný\r\nrozloupat\r\nrozloupávání\r\nrozloupávaný\r\nrozloupávat\r\nrozloupnout\r\nrozloupnutí\r\nrozlouskání\r\nrozlouskaný\r\nrozlouskat\r\nrozlouskávání\r\nrozlouskávaný\r\nrozlouskávat\r\nrozlousknout\r\nrozlousknutí\r\nrozlousknutý\r\nrozloženější\r\nrozložení\r\nrozložený\r\nrozložit\r\nrozložitější\r\nrozložitelnější\r\nrozložitelný\r\nrozložitý\r\nrozlučitelnější\r\nrozlučitelný\r\nrozlučka\r\nrozlučkový\r\nrozlučovat\r\nrozluka\r\nrozluštění\r\nrozluštěný\r\nrozluštit\r\nrozluštitelnější\r\nrozluštitelný\r\nrozmáčení\r\nrozmáčený\r\nrozmáčet\r\nrozmačkání\r\nrozmačkaný\r\nrozmačkat\r\nrozmačkávání\r\nrozmačkávaný\r\nrozmačkávat\r\nrozmáčknout\r\nrozmáčknutí\r\nrozmáčknutý\r\nrozmáhající\r\nrozmáhání\r\nrozmáhat\r\nrozmach\r\nrozmáchlejší\r\nrozmáchlý\r\nrozmáchnout\r\nrozmáchnutí\r\nrozmáchnutý\r\nrozmachování\r\nrozmachovat\r\nrozmanitější\r\nrozmanitý\r\nrozmar\r\nrozmarnější\r\nrozmarný\r\nrozmarýna\r\nrozmarýnek\r\nrozmarýn\r\nrozmarýnka\r\nrozmarýnový\r\nrozmařilcův\r\nrozmařilec\r\nrozmařilejší\r\nrozmařilý\r\nrozmasírování\r\nrozmasírovaný\r\nrozmasírovat\r\nrozmasírovávat\r\nrozmašírování\r\nrozmašírovaný\r\nrozmašírovat\r\nrozmatlání\r\nrozmatlaný\r\nrozmatlat\r\nrozmatlávání\r\nrozmatlávaný\r\nrozmatlávat\r\nrozmazanější\r\nrozmazání\r\nrozmazaný\r\nrozmazat\r\nrozmazávající\r\nrozmazávanější\r\nrozmazávání\r\nrozmazávaný\r\nrozmazávaný\r\nrozmazávat\r\nrozmazlencův\r\nrozmazlenec\r\nrozmazlenější\r\nrozmazlení\r\nrozmazlený\r\nrozmazlit\r\nrozmazlovanější\r\nrozmazlování\r\nrozmazlovaný\r\nrozmazlovat\r\nrozmazlovávání\r\nrozmazlovávaný\r\nrozmazlovávat\r\nrozmáznout\r\nrozmáznutí\r\nrozmáznutý\r\nrozměklejší\r\nrozměklý\r\nrozměknout\r\nrozměknutí\r\nrozmělnění\r\nrozmělněný\r\nrozmělnit\r\nrozmělňovací\r\nrozmělňování\r\nrozmělňovaný\r\nrozmělňovat\r\nrozměnější\r\nrozměněnější\r\nrozměnění\r\nrozměněný\r\nrozměnit\r\nrozměnitelnější\r\nrozměnitelný\r\nrozměňovanější\r\nrozměňování\r\nrozměňovaný\r\nrozměňovat\r\nrozměňovávat\r\nrozměňující\r\nrozměr\r\nrozměrnější\r\nrozměrný\r\nrozměrný\r\nrozměrový\r\nrozměřenější\r\nrozměření\r\nrozměřený\r\nrozměřit\r\nrozměřování\r\nrozměřovaný\r\nrozměřovat\r\nrozměřovávat\r\nrozmést\r\nrozmetací\r\nrozmetač\r\nrozmetadlo\r\nrozmetání\r\nrozmetaný\r\nrozmetat\r\nrozmetávání\r\nrozmetávaný\r\nrozmetávat\r\nrozmetení\r\nrozmetený\r\nrozmezí\r\nrozmíchání\r\nrozmíchaný\r\nrozmíchat\r\nrozmíchávání\r\nrozmíchávaný\r\nrozmíchávat\r\nrozmílat\r\nrozmilejší\r\nRozmilerová\r\nRozmiler\r\nRozmilerův\r\nrozmilý\r\nrozmístěnější\r\nrozmístěnější\r\nrozmístění\r\nrozmístěný\r\nrozmístit\r\nrozmístitelnější\r\nrozmístitelný\r\nrozmisťme\r\nrozmisť\r\nrozmísťovací\r\nrozmisťovanější\r\nrozmísťovanější\r\nrozmisťování\r\nrozmísťování\r\nrozmisťovaný\r\nrozmísťovaný\r\nrozmisťovat\r\nrozmísťovat\r\nrozmisťte\r\nrozmíška\r\nrozmítající\r\nrozmítanější\r\nrozmítání\r\nrozmítaný\r\nrozmítat\r\nrozmítnout\r\nrozmítnutější\r\nrozmítnutí\r\nrozmítnutý\r\nrozmítnutý\r\nrozmixovanější\r\nrozmixování\r\nrozmixovaný\r\nrozmixovat\r\nrozmlácenější\r\nrozmlácení\r\nrozmlácený\r\nrozmlátit\r\nrozmlouvající\r\nrozmlouvání\r\nrozmlouvaný\r\nrozmlouvat\r\nrozmlsání\r\nrozmlsaný\r\nrozmlsat\r\nrozmluva\r\nrozmluvení\r\nrozmluvený\r\nrozmluvit\r\nrozmlžení\r\nrozmlžený\r\nrozmlžit\r\nrozmnoženina\r\nrozmnožení\r\nrozmnožený\r\nrozmnožit\r\nrozmnožitelčin\r\nrozmnožitelka\r\nrozmnožitelnější\r\nrozmnožitel\r\nrozmnožitelův\r\nrozmnožovací\r\nrozmnožování\r\nrozmnožovaný\r\nrozmnožovat\r\nrozmnožovna\r\nrozmnožující\r\nrozmoci\r\nrozmočení\r\nrozmočený\r\nrozmočit\r\nrozmodlovač\r\nrozmoklejší\r\nrozmoklý\r\nrozmoknout\r\nrozmontování\r\nrozmontovaný\r\nrozmontovat\r\nrozmontovávání\r\nrozmontovávaný\r\nrozmontovávat\r\nrozmotání\r\nrozmotaný\r\nrozmotat\r\nrozmotávání\r\nrozmotávaný\r\nrozmotávat\r\nrozmrazení\r\nrozmrazený\r\nrozmrazit\r\nrozmrazovací\r\nrozmrazovač\r\nrozmrazování\r\nrozmrazovaný\r\nrozmrazovat\r\nrozmrhání\r\nrozmrhaný\r\nrozmrhat\r\nrozmrzající\r\nrozmrzání\r\nrozmrzat\r\nrozmrzávat\r\nrozmrzelejší\r\nrozmrzelý\r\nrozmrzelý\r\nrozmrzení\r\nrozmrzený\r\nrozmrzet\r\nrozmrzlejší\r\nrozmrzlý\r\nrozmrznout\r\nrozmrznutí\r\nrozmrznutý\r\nrozmyslení\r\nrozmyslený\r\nrozmyslet\r\nrozmysl\r\nrozmyslit\r\nrozmyslný\r\nrozmyšlenější\r\nrozmyšlenější\r\nrozmyšlení\r\nrozmýšlení\r\nrozmyšlen\r\nrozmyšlený\r\nrozmýšlený\r\nrozmýšlet\r\nrozmýt\r\nrozmytější\r\nrozmytí\r\nrozmytý\r\nrozmytý\r\nrozmývačka\r\nrozmývač\r\nrozmývačův\r\nrozmývanější\r\nrozmývání\r\nrozmývaný\r\nrozmývatelnější\r\nrozmývatelný\r\nrozmývat\r\nrozmžikání\r\nrozmžikaný\r\nrozmžikat\r\nrozmžikávání\r\nrozmžikávaný\r\nrozmžikávat\r\nrozňafání\r\nrozňafaný\r\nrozňafat\r\nroznásobení\r\nroznásobený\r\nroznásobit\r\nroznašeččin\r\nroznášeččin\r\nroznašečka\r\nroznášečka\r\nroznašeč\r\nroznášeč\r\nroznášející\r\nroznášenější\r\nroznášení\r\nroznášený\r\nroznášet\r\nroznáška\r\nroznáškový\r\nrozněcovadlo\r\nrozněcování\r\nrozněcovaný\r\nrozněcovat\r\nrozněcovatelčin\r\nrozněcovatelka\r\nrozněcující\r\nroznemoci\r\nroznemozme\r\nroznemoz\r\nroznemozte\r\nroznemožení\r\nroznesenější\r\nroznesení\r\nroznesený\r\nroznést\r\nroznět\r\nroznětka\r\nrozněžnělejší\r\nrozněžnělý\r\nrozněžněnější\r\nrozněžněný\r\nrozněžnit\r\nroznícenější\r\nroznícení\r\nroznícený\r\nroznimrání\r\nroznimrat\r\nroznítit\r\nroznos\r\nroznosit\r\nroznošení\r\nroznošený\r\nroznožení\r\nroznožený\r\nroznožit\r\nroznožka\r\nroznožmo\r\nroznožný\r\nroznožování\r\nroznožovaný\r\nroznožovat\r\nroznýtovanější\r\nroznýtování\r\nroznýtovaný\r\nroznýtovat\r\nroznýtovatelnější\r\nroznýtovatelný\r\nrozohněnější\r\nrozohnění\r\nrozohněný\r\nrozohnit\r\nrozohňovat\r\nrozorání\r\nrozoraný\r\nrozorat\r\nrozorávání\r\nrozorávaný\r\nrozorávat\r\nrozostřenější\r\nrozostření\r\nrozostřený\r\nrozostřit\r\nrozostřování\r\nrozostřovaný\r\nrozostřovat\r\nrozostřovávat\r\nrozoumek\r\nrozpačitější\r\nrozpačitění\r\nrozpačitěný\r\nrozpačitět\r\nrozpačitý\r\nrozpadající\r\nrozpadanější\r\nrozpadání\r\nrozpadaný\r\nrozpadat\r\nrozpadávající\r\nrozpadávání\r\nrozpadávaný\r\nrozpadávat\r\nrozpadavější\r\nrozpadavý\r\nrozpadený\r\nrozpad\r\nrozpadlejší\r\nrozpadlý\r\nrozpadnout\r\nrozpadnutí\r\nrozpadový\r\nrozpakování\r\nrozpakovaný\r\nrozpakovat\r\nrozpakující\r\nrozpaky\r\nrozpálenější\r\nrozpálení\r\nrozpálený\r\nrozpal\r\nrozpálit\r\nrozpalovací\r\nrozpalovanější\r\nrozpalovaní\r\nrozpalování\r\nrozpalovaný\r\nrozpalovat\r\nrozpalovávání\r\nrozpalovávaný\r\nrozpalovávat\r\nrozpalující\r\nrozparádění\r\nrozparáděný\r\nrozparádit\r\nrozpárání\r\nrozpáraný\r\nrozpárat\r\nrozparcelování\r\nrozparcelovaný\r\nrozparcelovat\r\nrozparcelovávání\r\nrozparcelovávaný\r\nrozparcelovávat\r\nrozparek\r\nrozparovač\r\nrozparovačův\r\nrozpářeme\r\nrozpáře\r\nrozpaření\r\nrozpařený\r\nrozpářeš\r\nrozpářete\r\nrozpařit\r\nrozpářou\r\nrozpařování\r\nrozpařovaný\r\nrozpařovat\r\nrozpářu\r\nrozpatlanější\r\nrozpatlání\r\nrozpatlaný\r\nrozpatlat\r\nrozpatlávání\r\nrozpatlávaný\r\nrozpatlávat\r\nrozpažení\r\nrozpažený\r\nrozpažit\r\nrozpažování\r\nrozpažovaný\r\nrozpažovat\r\nrozpéct\r\nrozpečenější\r\nrozpečení\r\nrozpečený\r\nrozpečetěný\r\nrozpečetit\r\nrozpečeťovaný\r\nrozpečeťovat\r\nrozpékání\r\nrozpékaný\r\nrozpékat\r\nrozpěra\r\nrozpěrka\r\nrozpětí\r\nrozpíchání\r\nrozpíchaný\r\nrozpíchat\r\nrozpíchávání\r\nrozpíchávaný\r\nrozpíchávat\r\nrozpíchnout\r\nrozpíchnutí\r\nrozpíchnutý\r\nrozpíjenější\r\nrozpíjení\r\nrozpíjený\r\nrozpíjet\r\nrozpínací\r\nrozpínající\r\nrozpínání\r\nrozpínaný\r\nrozpínat\r\nrozpínavější\r\nrozpínavý\r\nrozpínavý\r\nrozpínka\r\nrozpis\r\nrozpískanější\r\nrozpískání\r\nrozpískaný\r\nrozpískat\r\nrozpískávač\r\nrozpiska\r\nrozpisování\r\nrozpisovaný\r\nrozpisovat\r\nrozpít\r\nrozpitější\r\nrozpití\r\nrozpit\r\nrozpitvání\r\nrozpitvaný\r\nrozpitvat\r\nrozpitvávající\r\nrozpitvávání\r\nrozpitvávaný\r\nrozpitvávat\r\nrozpitý\r\nrozpitý\r\nrozpižlání\r\nrozpižlaný\r\nrozpižlat\r\nrozpjatější\r\nrozpjatý\r\nrozplácání\r\nrozplácaný\r\nrozplácat\r\nrozpláclejší\r\nrozpláclý\r\nrozplácnout\r\nrozplácnutější\r\nrozplácnutý\r\nrozplachtění\r\nrozplachtit\r\nrozplakající\r\nrozplakanější\r\nrozplakání\r\nrozplakaný\r\nrozplakat\r\nrozplakávání\r\nrozplakávaný\r\nrozplakávat\r\nrozplamenění\r\nrozplameněný\r\nrozplamenit\r\nrozplánování\r\nrozplánovaný\r\nrozplánovat\r\nrozplavání\r\nrozplavat\r\nrozplavávání\r\nrozplavávaný\r\nrozplavávat\r\nrozplavba\r\nrozplavejme\r\nrozplavej\r\nrozplavejte\r\nrozplazení\r\nrozplazit\r\nrozplemenění\r\nrozplemeněný\r\nrozplemenit\r\nrozplesknout\r\nrozplesknutí\r\nrozplesknutý\r\nrozplést\r\nrozplétání\r\nrozplétaný\r\nrozplétat\r\nrozpletení\r\nrozpletený\r\nrozplizlejší\r\nrozplizlý\r\nrozpliznout\r\nrozpliznutí\r\nrozpliznutý\r\nrozplodit\r\nrozplouvání\r\nrozplouvaný\r\nrozplouvat\r\nrozplození\r\nrozplozený\r\nrozplozování\r\nrozplozovaný\r\nrozplozovat\r\nrozpluženější\r\nrozplužení\r\nrozplužený\r\nrozplužit\r\nrozplynout\r\nrozplynulejší\r\nrozplynutí\r\nrozplynutý\r\nrozplýtvání\r\nrozplýtvaný\r\nrozplýtvat\r\nrozplýtvávání\r\nrozplýtvávaný\r\nrozplýtvávat\r\nrozplývající\r\nrozplývání\r\nrozplývat\r\nrozplývavější\r\nrozplývavý\r\nrozpočet\r\nrozpočitadlo\r\nrozpočítadlo\r\nrozpočítání\r\nrozpočítaný\r\nrozpočítat\r\nrozpočítávající\r\nrozpočítávání\r\nrozpočítávaný\r\nrozpočítávat\r\nrozpočítavý\r\nrozpočtářčin\r\nrozpočtářka\r\nrozpočtář\r\nrozpočtářův\r\nrozpočtený\r\nrozpočtování\r\nrozpočtovaný\r\nrozpočtovaný\r\nrozpočtovat\r\nrozpočtový\r\nrozpohybování\r\nrozpohybovaný\r\nrozpohybovat\r\nrozpochodování\r\nrozpochodovaný\r\nrozpochodovat\r\nrozpojenější\r\nrozpojení\r\nrozpojený\r\nrozpojit\r\nrozpojitelnější\r\nrozpojitelný\r\nrozpojka\r\nrozpojovací\r\nrozpojovanější\r\nrozpojování\r\nrozpojovaný\r\nrozpojovat\r\nrozpojovávání\r\nrozpojovávaný\r\nrozpojovávat\r\nrozpolcenější\r\nrozpolcení\r\nrozpolcený\r\nrozpoložení\r\nrozpoltěný\r\nrozpoltit\r\nrozpomenout\r\nrozpomenutí\r\nrozpomenutý\r\nrozpomínající\r\nrozpomínání\r\nrozpomínaný\r\nrozpomínat\r\nrozpomínka\r\nrozpomněl\r\nrozporcování\r\nrozporcovaný\r\nrozporcovat\r\nrozporcovávání\r\nrozporcovávaný\r\nrozporcovávat\r\nrozpor\r\nRozporka\r\nrozporka\r\nRozporková\r\nRozporkův\r\nrozpornější\r\nrozporný\r\nrozporování\r\nrozporovaný\r\nrozporovat\r\nrozporu\r\nrozporuplnější\r\nrozporuplný\r\nrozpouštěcí\r\nrozpouštědlo\r\nrozpouštějící\r\nrozpouštěnější\r\nrozpouštění\r\nrozpouštěný\r\nrozpouštět\r\nrozpoutanější\r\nrozpoutání\r\nrozpoutaný\r\nrozpoutat\r\nrozpoutávání\r\nrozpoutávaný\r\nrozpoutávat\r\nrozpovídanější\r\nrozpovídání\r\nrozpovídaný\r\nrozpovídat\r\nrozpoznání\r\nrozpoznaný\r\nrozpoznaný\r\nrozpoznatelnější\r\nrozpoznatelný\r\nrozpoznat\r\nrozpoznávací\r\nrozpoznávač\r\nrozpoznávající\r\nrozpoznávání\r\nrozpoznávaný\r\nrozpoznávaný\r\nrozpoznávat\r\nrozpracovanější\r\nrozpracování\r\nrozpracovaný\r\nrozpracovat\r\nrozpracovávající\r\nrozpracovávanější\r\nrozpracovávání\r\nrozpracovávaný\r\nrozpracovávat\r\nrozprach\r\nrozpraskanější\r\nrozpraskání\r\nrozpraskaný\r\nrozpráskaný\r\nrozpraskat\r\nrozprášenější\r\nrozprášení\r\nrozprášený\r\nrozprášit\r\nrozprašovací\r\nrozprašovač\r\nrozprašovák\r\nrozprašování\r\nrozprašovaný\r\nrozprašovat\r\nrozprava\r\nrozprávění\r\nrozprávěný\r\nrozprávět\r\nrozprávka\r\nrozprávkový\r\nrozpravný\r\nrozprchnout\r\nrozprchnutí\r\nrozprchnutý\r\nrozprodání\r\nrozprodaný\r\nrozprodat\r\nrozprodávání\r\nrozprodávaný\r\nrozprodávat\r\nrozprodej\r\nrozprostírací\r\nrozprostírající\r\nrozprostírání\r\nrozprostíraný\r\nrozprostírat\r\nrozprostraněný\r\nrozprostřenější\r\nrozprostření\r\nrozprostřený\r\nrozprostřít\r\nrozprošťourávat\r\nrozproudění\r\nrozprouděný\r\nrozproudit\r\nrozprsknout\r\nrozprsknutí\r\nrozprsknutý\r\nrozpršelý\r\nrozpršení\r\nrozpršený\r\nrozpršet\r\nrozprýskanější\r\nrozprýštění\r\nrozprýštěný\r\nrozprýštit\r\nrozpřádání\r\nrozpřádaný\r\nrozpřádat\r\nrozpřáhnout\r\nrozpřáhnutí\r\nrozpřahovat\r\nrozpřahující\r\nrozpřažený\r\nrozptýlenější\r\nrozptýlení\r\nrozptýlený\r\nrozptyl\r\nrozptýlit\r\nrozptylka\r\nrozptylný\r\nrozptylování\r\nrozptylovaný\r\nrozptylovat\r\nrozptylovávání\r\nrozptylovávaný\r\nrozptylovávat\r\nrozptylový\r\nrozptylující\r\nrozpučení\r\nrozpučený\r\nrozpučet\r\nrozpůjčení\r\nrozpůjčený\r\nrozpůjčil\r\nrozpůjčíme\r\nrozpůjčím\r\nrozpůjčí\r\nrozpůjčíš\r\nrozpůjčíte\r\nrozpůjčit\r\nrozpůjčme\r\nrozpůjč\r\nrozpůjčování\r\nrozpůjčovaný\r\nrozpůjčovat\r\nrozpůjčte\r\nrozpukanější\r\nrozpukání\r\nrozpukaný\r\nrozpukat\r\nrozpuk\r\nrozpuklý\r\nrozpuknout\r\nrozpuknutí\r\nrozpuknutý\r\nrozpůlení\r\nrozpůlený\r\nrozpůlit\r\nrozpulsování\r\nrozpulsovat\r\nrozpulzování\r\nrozpulzovat\r\nrozpumpování\r\nrozpumpovaný\r\nrozpumpovat\r\nrozpustidlo\r\nrozpustilcův\r\nrozpustilec\r\nrozpustilejší\r\nrozpustilý\r\nrozpustit\r\nrozpustitelnější\r\nrozpustitelný\r\nrozpustnější\r\nrozpustný\r\nrozpuštěnější\r\nrozpuštění\r\nrozpuštěný\r\nrozradostnělejší\r\nrozradostnělý\r\nrozradostněnější\r\nrozradostnění\r\nrozradostněný\r\nrozradostnit\r\nrozradovanější\r\nrozradování\r\nrozradovaný\r\nrozrastrovanější\r\nrozrastrování\r\nrozrastrovaný\r\nrozrastrovat\r\nrozrazil\r\nrozrazit\r\nrozrážející\r\nrozražení\r\nrozrážení\r\nrozražený\r\nrozrážený\r\nrozrážet\r\nrozresonovat\r\nrozrezonovat\r\nrozrochňat\r\nrozrochnit\r\nrozrostlejší\r\nrozrostl\r\nrozrostlý\r\nrozrostu\r\nrozrozmazávanější\r\nrozrozmazávaný\r\nrozrozpláclejší\r\nrozruch\r\nrozrůstající\r\nrozrůstání\r\nrozrůstat\r\nrozrůst\r\nrozrušenější\r\nrozrušení\r\nrozrušený\r\nrozrušit\r\nrozrušitelnější\r\nrozrušitelný\r\nrozrušovanější\r\nrozrušování\r\nrozrušovaný\r\nrozrušovat\r\nrozrušovatelnější\r\nrozrušovatelný\r\nrozrušující\r\nrozrůzněnější\r\nrozrůznění\r\nrozrůzněný\r\nrozrůznit\r\nrozrůzňování\r\nrozrůzňovaný\r\nrozrůzňovat\r\nrozrůzňovávat\r\nrozrýpat\r\nrozrýpávající\r\nrozrýpávání\r\nrozrýpávaný\r\nrozrýpávat\r\nrozrýt\r\nrozrytější\r\nrozrytí\r\nrozrytý\r\nrozrývač\r\nrozrývající\r\nrozrývání\r\nrozrývaný\r\nrozrývat\r\nrozryvnější\r\nrozryvný\r\nrozřadění\r\nrozřaděný\r\nrozřadící\r\nrozřadit\r\nrozřaditelnější\r\nrozřaditelný\r\nrozřaďovat\r\nrozřazenější\r\nrozřazení\r\nrozřazený\r\nrozřazovanější\r\nrozřazování\r\nrozřazovaný\r\nrozřazovat\r\nrozřazovatelnější\r\nrozřazovatelný\r\nrozředěnější\r\nrozředění\r\nrozředěný\r\nrozředit\r\nrozřeďování\r\nrozřeďovaný\r\nrozřeďovat\r\nrozřehtání\r\nrozřehtaný\r\nrozřehtat\r\nrozřešenější\r\nrozřešení\r\nrozřešený\r\nrozřešit\r\nrozřešitelnější\r\nrozřešitelný\r\nrozřezanější\r\nrozřezání\r\nrozřezaný\r\nrozřezat\r\nrozřezávající\r\nrozřezávanější\r\nrozřezávání\r\nrozřezávaný\r\nrozřezávat\r\nrozřičení\r\nrozřičet\r\nrozřinčení\r\nrozřinčený\r\nrozřinčet\r\nrozříznout\r\nrozříznutější\r\nrozříznutí\r\nrozříznutý\r\nrozříznutý\r\nrozsadit\r\nrozsah\r\nrozsáhlejší\r\nrozsáhlý\r\nrozsáhlý\r\nrozsahový\r\nrozsápanější\r\nrozsápání\r\nrozsápaný\r\nrozsápat\r\nrozsápávání\r\nrozsápávaný\r\nrozsápávat\r\nrozsázenější\r\nrozsazení\r\nrozsázení\r\nrozsazený\r\nrozsázený\r\nrozsázet\r\nrozsazovací\r\nrozsazovanější\r\nrozsazování\r\nrozsazovaný\r\nrozsazovat\r\nrozsečení\r\nrozsečen\r\nrozsečený\r\nrozseču\r\nrozsedající\r\nrozsedanější\r\nrozsedání\r\nrozsedaný\r\nrozsedat\r\nrozsedávání\r\nrozsedávaný\r\nrozsedávat\r\nrozsedět\r\nrozsedlina\r\nrozsedlý\r\nrozsednout\r\nrozsednutější\r\nrozsednutí\r\nrozsednutý\r\nrozsednutý\r\nrozseji\r\nrozsekanější\r\nrozsekání\r\nrozsekaný\r\nrozsekat\r\nrozsekávání\r\nrozsekávaný\r\nrozsekávat\r\nrozsekl\r\nrozseknout\r\nrozseknutí\r\nrozseknutý\r\nrozsel\r\nrozsemenění\r\nrozsemeněný\r\nrozsemenit\r\nrozsení\r\nrozsetější\r\nrozsetí\r\nrozset\r\nrozsetý\r\nrozsetý\r\nrozsévací\r\nrozsévačka\r\nrozsévač\r\nrozsévačův\r\nrozsévající\r\nrozsévání\r\nrozsévaný\r\nrozsévat\r\nrozsev\r\nrozsíct\r\nRozsička\r\nRozsíčka\r\nrozsil\r\nrozsít\r\nrozsivka\r\nrozsivkový\r\nrozskákat\r\nrozskakování\r\nrozskakovat\r\nrozskakovávání\r\nrozskakovávaný\r\nrozskakovávat\r\nrozskočení\r\nrozskočený\r\nrozskočit\r\nrozskok\r\nrozskřípanější\r\nrozskřípání\r\nrozskřípaný\r\nrozskřípat\r\nrozslzení\r\nrozslzet\r\nrozsochatecký\r\nRozsochatec\r\nrozsochatější\r\nrozsochatý\r\nrozsocha\r\nrozsoudit\r\nrozsouzenější\r\nrozsouzení\r\nrozsouzený\r\nrozstěhování\r\nrozstěhovaný\r\nrozstěhovat\r\nrozstěhovávat\r\nrozstonal\r\nrozstonání\r\nrozstonat\r\nrozstonávání\r\nrozstonávat\r\nrozstonejme\r\nrozstonej\r\nrozstonejte\r\nrozstoupení\r\nrozstoupený\r\nrozstoupit\r\nrozstránkování\r\nrozstránkovaný\r\nrozstránkovat\r\nrozstránkovávání\r\nrozstránkovávaný\r\nrozstránkovávat\r\nrozstrkanější\r\nrozstrkání\r\nrozstrkaný\r\nrozstrkat\r\nrozstrkávání\r\nrozstrkávaný\r\nrozstrkávat\r\nrozstrkovat\r\nrozstrouhanější\r\nrozstrouhání\r\nrozstrouhaný\r\nrozstrouhat\r\nrozstrouhávanější\r\nrozstrouhávání\r\nrozstrouhávaný\r\nrozstrouhávat\r\nrozstřelenější\r\nrozstřelení\r\nrozstřelený\r\nrozstřelit\r\nrozstřelování\r\nrozstřelovaný\r\nrozstřelovat\r\nrozstřelovávání\r\nrozstřelovávaný\r\nrozstřelovávat\r\nrozstřihání\r\nrozstříhání\r\nrozstřihaný\r\nrozstříhaný\r\nrozstřihat\r\nrozstříhat\r\nrozstřihávání\r\nrozstříhávání\r\nrozstřihávaný\r\nrozstříhávaný\r\nrozstřihávat\r\nrozstříhávat\r\nrozstřihnout\r\nrozstřihnutí\r\nrozstřihování\r\nrozstřihovaný\r\nrozstřihovat\r\nrozstříkání\r\nrozstříkaný\r\nrozstříkat\r\nrozstříkávání\r\nrozstříkávaný\r\nrozstříkávat\r\nrozstřik\r\nrozstříknout\r\nrozstříknutí\r\nrozstříknutý\r\nrozstřikovací\r\nrozstřikování\r\nrozstřikovaný\r\nrozstřikovat\r\nrozstřikovávání\r\nrozstřikovávaný\r\nrozstřikovávat\r\nrozstřikující\r\nrozstřílení\r\nrozstřílený\r\nrozstřílet\r\nrozstřižení\r\nrozstřižený\r\nrozstůňu\r\nrozstup\r\nrozsudek\r\nrozsutecký\r\nRozsutec\r\nrozsuzovanější\r\nrozsuzování\r\nrozsuzovaný\r\nrozsuzovat\r\nrozsuzující\r\nrozsvěcení\r\nrozsvěcet\r\nrozsvěcovač\r\nrozsvěcování\r\nrozsvěcovaný\r\nrozsvěcovat\r\nrozsvěcující\r\nrozsvícenější\r\nrozsvícení\r\nrozsvícený\r\nrozsvítit\r\nrozsynchronizování\r\nrozsynchronizovaný\r\nrozsynchronizovat\r\nrozsypající\r\nRozsypálek\r\nRozsypálková\r\nRozsypálkův\r\nRozsypalová\r\nRozsypal\r\nRozsypalův\r\nrozsypanější\r\nrozsypání\r\nrozsýpání\r\nrozsypaný\r\nrozsýpaný\r\nrozsypat\r\nrozsýpat\r\nrozsypávající\r\nrozsypávanější\r\nrozsypávání\r\nrozsypávaný\r\nrozsypávat\r\nrozšafnější\r\nrozšafný\r\nrozšifrovací\r\nrozšifrovanější\r\nrozšifrování\r\nrozšifrovaný\r\nrozšifrovat\r\nrozšifrovatelnější\r\nrozšifrovatelný\r\nrozšifrovávání\r\nrozšifrovávaný\r\nrozšifrovávat\r\nrozšifrující\r\nrozšilhání\r\nrozšilhat\r\nrozšilhávání\r\nrozšilhávat\r\nrozšířenější\r\nrozšíření\r\nrozšířený\r\nrozšířit\r\nrozšiřitelnější\r\nrozšířitelnější\r\nrozšiřitelný\r\nrozšířitelný\r\nrozšiřovací\r\nrozšiřovanější\r\nrozšiřování\r\nrozšiřovaný\r\nrozšiřovat\r\nrozšiřovatelnější\r\nrozšiřovatelný\r\nrozšiřovávat\r\nrozšiřující\r\nrozšířující\r\nrozšišlání\r\nrozšišlaný\r\nrozšišlat\r\nrozšít\r\nrozšitější\r\nrozšití\r\nrozšitý\r\nrozšitý\r\nrozšívanější\r\nrozšívání\r\nrozšívaný\r\nrozšívat\r\nrozškatulkování\r\nrozškatulkovaný\r\nrozškatulkovat\r\nrozšklebenější\r\nrozšklebení\r\nrozšklebený\r\nrozšklebit\r\nrozšklebující\r\nrozškrabající\r\nrozškrábající\r\nrozškrabanější\r\nrozškrábanější\r\nrozškrabání\r\nrozškrábání\r\nrozškrabaný\r\nrozškrábaný\r\nrozškrabat\r\nrozškrábat\r\nrozškrabávání\r\nrozškrabávaný\r\nrozškrabávat\r\nrozškrábnout\r\nrozškrábnutější\r\nrozškrábnutí\r\nrozškrábnutý\r\nrozškrábnutý\r\nrozškrabovanější\r\nrozškrabování\r\nrozškrabovaný\r\nrozškrabovat\r\nrozškrtnout\r\nrozškrtnutí\r\nrozškrtnutý\r\nrozškubání\r\nrozškubaný\r\nrozškubat\r\nrozškubávání\r\nrozškubávaný\r\nrozškubávat\r\nrozškubnout\r\nrozškubu\r\nrozškvařený\r\nrozškvařit\r\nrozškvařovaný\r\nrozškvařovat\r\nrozšlapání\r\nrozšlapaný\r\nrozšlapat\r\nrozšlapávání\r\nrozšlapávaný\r\nrozšlapávat\r\nrozšlápnout\r\nrozšlápnutí\r\nrozšlápnutý\r\nrozšlapování\r\nrozšlapovaný\r\nrozšlapovat\r\nrozšlehání\r\nrozšlehaný\r\nrozšlehat\r\nrozšmiknout\r\nrozšmiknutí\r\nrozšmiknutý\r\nrozšmodrchání\r\nrozšmodrchaný\r\nrozšmodrchat\r\nrozšněrování\r\nrozšněrovaný\r\nrozšněrovat\r\nrozšněrovávat\r\nrozšoupnout\r\nrozšoupnutí\r\nrozšoupnutý\r\nrozšpendlit\r\nrozšpendlovat\r\nrozšplhání\r\nrozšplhaný\r\nrozšplhat\r\nrozšplhávání\r\nrozšplhávat\r\nrozšrotovat\r\nrozšroubování\r\nrozšroubovaný\r\nrozšroubovat\r\nrozšroubovávání\r\nrozšroubovávaný\r\nrozšroubovávat\r\nrozštěbetání\r\nrozštěbetat\r\nrozštěbetávání\r\nrozštěbetávat\r\nrozštěpení\r\nrozštěpený\r\nrozštěp\r\nrozštěpit\r\nrozštěpitelnější\r\nrozštípání\r\nrozštípaný\r\nrozštípat\r\nrozštípnout\r\nrozštípnutí\r\nrozštípnutý\r\nrozštípnutý\r\nrozšťouchání\r\nrozšťouchaný\r\nrozšťouchat\r\nrozšťouchávání\r\nrozšťouchávaný\r\nrozšťouchávat\r\nrozšťouchnout\r\nrozšťouchnutí\r\nrozšťouchnutý\r\nrozšťourání\r\nrozšťouraný\r\nrozšťourat\r\nroztáčející\r\nroztáčení\r\nroztáčený\r\nroztáčet\r\nroztahanější\r\nroztahání\r\nroztahaný\r\nroztahat\r\nroztáhnout\r\nroztáhnutí\r\nroztahovanější\r\nroztahování\r\nroztahovaný\r\nroztahovat\r\nroztahovávání\r\nroztahovávaný\r\nroztahovávat\r\nroztahující\r\nroztálejší\r\nrozťal\r\nroztálý\r\nroztancování\r\nroztancovaný\r\nroztancovat\r\nroztancovávání\r\nroztancovávaný\r\nroztancovávat\r\nroztančenější\r\nroztančení\r\nroztančený\r\nroztančit\r\nroztání\r\nroztaný\r\nrozťapat\r\nroztápějící\r\nroztápěnější\r\nroztápění\r\nroztápěný\r\nroztápět\r\nrozťapkání\r\nrozťapkaný\r\nrozťapkat\r\nrozťápnout\r\nrozťápnutí\r\nrozťápnutý\r\nroztát\r\nroztátější\r\nrozťatější\r\nrozťat\r\nroztátý\r\nrozťatý\r\nrozťatý\r\nroztávání\r\nroztávat\r\nroztavenější\r\nroztavení\r\nroztavený\r\nroztavit\r\nroztavitelnější\r\nroztavitelný\r\nrozťav\r\nroztaženější\r\nroztažení\r\nroztažený\r\nroztažitelnější\r\nroztažitelný\r\nroztaživý\r\nroztažný\r\nroztéct\r\nrozteč\r\nroztékající\r\nroztěkanější\r\nroztékání\r\nroztěkaný\r\nroztékat\r\nrozteklejší\r\nrozteklý\r\nroztepanější\r\nroztepání\r\nroztepaný\r\nroztepat\r\nroztepávání\r\nroztepávaný\r\nroztepávat\r\nroztepu\r\nroztěrka\r\nrozteskněnější\r\nroztesknění\r\nrozteskněný\r\nroztesknit\r\nrozteskňovat\r\nroztětí\r\nroztěžení\r\nroztěžený\r\nroztěžit\r\nroztikání\r\nroztikaný\r\nroztikat\r\nroztínání\r\nroztínaný\r\nroztínat\r\nroztínávání\r\nroztínávaný\r\nroztínávat\r\nroztírací\r\nroztíraní\r\nroztírání\r\nroztíraný\r\nroztíratelnější\r\nroztiratelný\r\nroztíratelný\r\nroztírat\r\nroztít\r\nroztlačení\r\nroztlačený\r\nroztlačit\r\nroztlačovanější\r\nroztlačování\r\nroztlačovaný\r\nroztlačovat\r\nroztlapat\r\nroztlemenější\r\nroztleskání\r\nroztleskaný\r\nroztleskat\r\nroztleskávat\r\nroztlouct\r\nroztloukanější\r\nroztloukání\r\nroztloukaný\r\nroztloukat\r\nroztloukávanější\r\nroztloukávání\r\nroztloukávaný\r\nroztloukávat\r\nroztlučenější\r\nroztlučení\r\nroztlučený\r\nroztočenější\r\nroztočení\r\nroztočený\r\nroztočíkový\r\nRoztočilová\r\nRoztočil\r\nRoztočilův\r\nroztočit\r\nroztočitelnější\r\nroztočitelný\r\nroztočový\r\nroztoč\r\nroztočův\r\nroztodivnější\r\nroztodivný\r\nroztoka\r\nroztok\r\nroztomilejší\r\nroztomilý\r\nroztopenější\r\nroztopení\r\nroztopený\r\nroztopit\r\nroztopitelnější\r\nroztopitelný\r\nroztouženější\r\nroztoužení\r\nroztoužený\r\nroztoužit\r\nroztrhající\r\nroztrhanější\r\nroztrhání\r\nroztrhaný\r\nroztrhat\r\nroztrhávající\r\nroztrhávanější\r\nroztrhávání\r\nroztrhávaný\r\nroztrhávat\r\nroztrhnout\r\nroztrhnutější\r\nroztrhnutí\r\nroztrhnutý\r\nroztrousit\r\nroztroušenější\r\nroztroušení\r\nroztroušený\r\nroztrpčenější\r\nroztrpčení\r\nroztrpčený\r\nroztrpčit\r\nroztrpčování\r\nroztrpčovaný\r\nroztrpčovat\r\nroztrubování\r\nroztrubovaný\r\nroztrubovat\r\nroztrubovávání\r\nroztrubovávaný\r\nroztrubovávat\r\nroztrušování\r\nroztrušovaný\r\nroztrušovat\r\nroztrženější\r\nroztržení\r\nroztržený\r\nroztržitější\r\nroztržitý\r\nroztržka\r\nroztřásat\r\nroztřásl\r\nroztřást\r\nroztřepanější\r\nroztřepat\r\nroztřepávání\r\nroztřepávaný\r\nroztřepávat\r\nroztřepenější\r\nroztřepení\r\nroztřepený\r\nroztřepit\r\nroztřesenější\r\nroztřesení\r\nroztřesen\r\nroztřesený\r\nroztřesu\r\nroztřídění\r\nroztříděný\r\nroztřídit\r\nroztřiďování\r\nroztřiďovaný\r\nroztřiďovat\r\nroztřískání\r\nroztřískaný\r\nroztřískat\r\nroztřísknout\r\nroztříštěnější\r\nroztříštění\r\nroztříštěný\r\nroztříštit\r\nRoztyly\r\nroztžení\r\nrozúčtovanější\r\nrozúčtování\r\nrozúčtovaný\r\nrozúčtovat\r\nrozúčtovávání\r\nrozúčtovávaný\r\nrozúčtovávat\r\nrozudit\r\nrozumbrada\r\nrozumbradův\r\nrozumějící\r\nrozumění\r\nrozuměno\r\nrozuměný\r\nrozumět\r\nrozumět\r\nrozum\r\nrozumnější\r\nrozumný\r\nrozumování\r\nrozumovat\r\nrozumovější\r\nrozumový\r\nrozutéct\r\nrozutíkání\r\nrozutíkaný\r\nrozutíkat\r\nrozutíkávání\r\nrozutíkávat\r\nrozuzení\r\nrozuzený\r\nrozuzlení\r\nrozuzlený\r\nrozuzlit\r\nrozuzlování\r\nrozuzlovaný\r\nrozuzlovat\r\nrozuzlovávání\r\nrozuzlovávaný\r\nrozuzlovávat\r\nrozváděcí\r\nrozvaděčový\r\nrozváděčový\r\nrozvaděč\r\nrozváděč\r\nrozvádějící\r\nrozvaděnější\r\nrozváděnější\r\nrozvadění\r\nrozvádění\r\nrozvaděný\r\nrozváděný\r\nrozvádět\r\nrozvadit\r\nRozvadov\r\nrozvadovský\r\nrozvaha\r\nrozvahový\r\nrozválcování\r\nrozválcovaný\r\nrozválcovat\r\nrozválcovávání\r\nrozválcovávaný\r\nrozválcovávat\r\nrozvalení\r\nrozválení\r\nrozvalený\r\nrozválený\r\nrozválet\r\nrozvalina\r\nrozvalit\r\nrozvalování\r\nrozvalovaný\r\nrozvalovat\r\nrozvalovávání\r\nrozvalovávaný\r\nrozvalovávat\r\nrozvaření\r\nrozváření\r\nrozvařený\r\nrozvářený\r\nrozvářet\r\nrozvařit\r\nrozvařování\r\nrozvařovaný\r\nrozvařovat\r\nrozvařovávat\r\nrozvášněnější\r\nrozvášnění\r\nrozvášněný\r\nrozvášnit\r\nrozvášňovat\r\nrozvášňovávat\r\nrozvázanější\r\nrozvázání\r\nrozvázaný\r\nrozvázat\r\nrozvazatelnější\r\nrozvázávanější\r\nrozvázávání\r\nrozvázávaný\r\nrozvázávat\r\nrozvazovací\r\nrozvazovanější\r\nrozvazování\r\nrozvazovaný\r\nrozvazovat\r\nrozvazující\r\nrozvážející\r\nrozváženější\r\nrozvážení\r\nrozvážený\r\nrozvážet\r\nrozváži\r\nrozvážit\r\nrozvážka\r\nrozvážkový\r\nrozvážlivější\r\nrozvážlivý\r\nrozvážnější\r\nrozvážný\r\nrozvažovanější\r\nrozvažování\r\nrozvažovaný\r\nrozvažovat\r\nrozvažovatelnější\r\nrozvažovatelný\r\nrozvažující\r\nrozvědčík\r\nrozvědčíkův\r\nrozvedenější\r\nrozvedení\r\nrozveden\r\nrozvedený\r\nrozvědka\r\nrozvedl\r\nrozvědný\r\nrozvedu\r\nrozvernější\r\nrozverný\r\nrozveselenější\r\nrozveselení\r\nrozveselený\r\nrozveselit\r\nrozveselování\r\nrozveselovaný\r\nrozveselovat\r\nrozveselovávání\r\nrozveselovávaný\r\nrozveselovávat\r\nrozvěsit\r\nrozveslování\r\nrozveslovat\r\nrozvést\r\nrozvěšenější\r\nrozvěšení\r\nrozvěšený\r\nrozvěšet\r\nrozvěšovací\r\nrozvěšování\r\nrozvěšovaný\r\nrozvěšovat\r\nrozvětvenější\r\nrozvětvení\r\nrozvětvený\r\nrozvětvit\r\nrozvětvování\r\nrozvětvovaný\r\nrozvětvovat\r\nrozvětvující\r\nrozvezenější\r\nrozvezení\r\nrozvezený\r\nrozvézt\r\nrozvibrování\r\nrozvibrovaný\r\nrozvibrovat\r\nrozvidlenější\r\nrozvíjecí\r\nrozvíjející\r\nrozvíjenější\r\nrozvíjení\r\nrozvíjený\r\nrozvíjet\r\nrozviklanější\r\nrozviklání\r\nrozviklaný\r\nrozviklat\r\nrozviklávání\r\nrozviklávaný\r\nrozviklávat\r\nrozvinout\r\nrozvinování\r\nrozvinovaný\r\nrozvinovat\r\nrozvinutější\r\nrozvinutelnější\r\nrozvinutelný\r\nrozvinutí\r\nrozvinutý\r\nrozvírající\r\nrozvíranější\r\nrozvírání\r\nrozvíraný\r\nrozvírat\r\nrozvířenější\r\nrozvíření\r\nrozvířený\r\nrozvířit\r\nrozviřování\r\nrozviřovaný\r\nrozviřovat\r\nrozviřovávat\r\nrozviřující\r\nrozvít\r\nrozvitější\r\nrozvitelnější\r\nrozvitelný\r\nrozvití\r\nrozvit\r\nrozvitý\r\nrozvitý\r\nrozvláčnější\r\nrozvláčný\r\nrozvlákněný\r\nrozvlákňovací\r\nrozvlákňování\r\nrozvlákňovaný\r\nrozvlákňovat\r\nrozvlažování\r\nrozvlažovat\r\nrozvleklejší\r\nrozvleklý\r\nrozvléknout\r\nrozvlněnější\r\nrozvlnění\r\nrozvlněný\r\nrozvlnit\r\nrozvod\r\nrozvodí\r\nrozvodka\r\nrozvodna\r\nrozvodnění\r\nrozvodněný\r\nrozvodnice\r\nrozvodnit\r\nrozvodňovat\r\nrozvodný\r\nrozvodovější\r\nrozvodovka\r\nrozvodový\r\nrozvojovější\r\nrozvojový\r\nrozvoj\r\nrozvolněnější\r\nrozvolnění\r\nrozvolněný\r\nrozvolnit\r\nrozvolňovací\r\nrozvolňovadlo\r\nrozvolňování\r\nrozvolňovaný\r\nrozvolňovat\r\nrozvor\r\nrozvorový\r\nrozvoz\r\nrozvozit\r\nrozvozový\r\nrozvožení\r\nrozvožený\r\nrozvraceč\r\nrozvracečův\r\nrozvrácenější\r\nrozvracení\r\nrozvrácení\r\nrozvracený\r\nrozvrácený\r\nrozvracet\r\nrozvrat\r\nrozvrátit\r\nrozvratnější\r\nrozvratnický\r\nrozvratnictví\r\nrozvratník\r\nrozvratník\r\nrozvratníkův\r\nrozvratný\r\nrozvrčení\r\nrozvrčet\r\nrozvrh\r\nrozvrhnout\r\nrozvrhnutí\r\nrozvrhování\r\nrozvrhovaný\r\nrozvrhovat\r\nrozvrhový\r\nrozvrhující\r\nrozvrkání\r\nrozvrkat\r\nrozvrkávání\r\nrozvrkávat\r\nrozvrstvení\r\nrozvrstvený\r\nrozvrstvit\r\nrozvrstvovací\r\nrozvrstvování\r\nrozvrstvovaný\r\nrozvrstvovat\r\nrozvrtanější\r\nrozvrtání\r\nrozvrtaný\r\nrozvrtat\r\nrozvrtávat\r\nrozvrzanější\r\nrozvrzání\r\nrozvrzaný\r\nrozvrzat\r\nrozvrzávání\r\nrozvrzávaný\r\nrozvrzávat\r\nrozvržení\r\nrozvržený\r\nrozvržu\r\nrozvycvičitelnější\r\nrozvycvičitelný\r\nrozvyprávění\r\nrozvyprávěný\r\nrozvyprávět\r\nrozvzpomenout\r\nrozvzpomenutí\r\nrozvzpomenutý\r\nrozvzpomněl\r\nrozvztekání\r\nrozvztekaný\r\nrozvztekat\r\nrozvztekávání\r\nrozvztekávat\r\nrozvzteklenější\r\nrozvzteklení\r\nrozvzteklený\r\nrozvzteklit\r\nrozzářenější\r\nrozzáření\r\nrozzářený\r\nrozzářit\r\nrozzařování\r\nrozzávodění\r\nrozzávodit\r\nrozzlobenější\r\nrozzlobení\r\nrozzlobený\r\nrozzlobit\r\nrozzobání\r\nrozzobaný\r\nrozzobat\r\nrozzobávání\r\nrozzobávaný\r\nrozzobávat\r\nrozzpívání\r\nrozzpívaný\r\nrozzpívat\r\nrozzpívávat\r\nrozzuřenější\r\nrozzuření\r\nrozzuřený\r\nrozzuřit\r\nrozzvučovat\r\nrozžal\r\nrozžárlit\r\nrozžat\r\nrozžatý\r\nrozžav\r\nrozžehlit\r\nrozžehnání\r\nrozžehnaný\r\nrozžehnat\r\nrozžehnávání\r\nrozžehnávaný\r\nrozžehnávat\r\nrozžehnout\r\nrozžehnutí\r\nrozžehnutý\r\nrozžetí\r\nrozžhavenější\r\nrozžhavení\r\nrozžhavený\r\nrozžhavit\r\nrozžhavovat\r\nrozžíhání\r\nrozžíhaný\r\nrozžíhat\r\nrozžíhávat\r\nrozžínání\r\nrozžínaný\r\nrozžínat\r\nrozžírající\r\nrozžírání\r\nrozžíraný\r\nrozžírat\r\nrozžít\r\nrozžižlání\r\nrozžižlaný\r\nrozžižlat\r\nrozžižlávat\r\nrozžmoulat\r\nrozžnout\r\nrozžnu\r\nrozžvanění\r\nrozžvaněný\r\nrozžvanit\r\nrozžvaňování\r\nrozžvaňovaný\r\nrozžvaňovat\r\nrozžvýkání\r\nrozžvýkaný\r\nrozžvýkat\r\nrozžvýkávat\r\nrozžvykovat\r\nRožánek\r\nRožánková\r\nRožánkův\r\nRožátová\r\nRožát\r\nRožátův\r\nRožďalovice\r\nrožďalovický\r\nRožďalovský\r\nrožeň\r\nroženský\r\nRožínka\r\nRožmberk\r\nRožmberkový\r\nrožmberský\r\nRožmitál\r\nrožmitálský\r\nRožmitálský\r\nRožňava\r\nrožňavský\r\nRožná\r\nrožnění\r\nrožněný\r\nrožnit\r\nRožnov\r\nrožnovský\r\nRp\r\nRSA\r\nRSDr\r\nRSFSR\r\nRT\r\nRTDr\r\nrtěnka\r\nrtg\r\nrtík\r\nrtm\r\nrtn\r\nrtuť\r\nrtuťnatější\r\nrtuťnatý\r\nrtuťný\r\nrtuťovitější\r\nrtuťovitý\r\nrtuťový\r\nRtyně\r\nrtyňský\r\nrtyňský\r\nrubač\r\nrubačův\r\nrubanina\r\nrubání\r\nrubaný\r\nrubaška\r\nrubášový\r\nrubáš\r\nrubat\r\nrubávání\r\nrubávaný\r\nrubávat\r\nRubešová\r\nRubeš\r\nRubešův\r\nrub\r\nrubidiový\r\nrubidium\r\nrubidný\r\nRubik\r\nRubikův\r\nrubín\r\nrubínový\r\nrubixantin\r\nrubl\r\nrublový\r\nRubnerová\r\nRubner\r\nRubnerův\r\nrubopis\r\nrubový\r\nrubrička\r\nrubrika\r\nrubu\r\nruce\r\nRücek\r\nRücková\r\nRückův\r\nručejší\r\nručení\r\nručenka\r\nručící\r\nručička\r\nručičkový\r\nručit\r\nručitelčin\r\nručitelka\r\nručitel\r\nručitelův\r\nručkama\r\nručka\r\nručkování\r\nručkovaný\r\nručkovat\r\nručkovávání\r\nručkovávat\r\nručkový\r\nručnice\r\nručník\r\nručníkový\r\nruční\r\nRuda\r\nruda\r\nrudější\r\nrudenský\r\nruderalizace\r\nruderální\r\nRudice\r\nrudický\r\nRüdigerův\r\nRudíkov\r\nrudíkovský\r\nrudimentálnější\r\nrudimentální\r\nrudimentárnější\r\nrudimentární\r\nrudiment\r\nRudimov\r\nrudimovský\r\nrudka\r\nrudl\r\nRudňanský\r\nrudňanský\r\nRudňany\r\nRudná\r\nrudnický\r\nRudník\r\nrudnina\r\nrudní\r\nrudnout\r\nrudnutí\r\nrudný\r\nrudoarmějcův\r\nrudoarmejčin\r\nrudoarmějčin\r\nrudoarmějec\r\nrudoarmejka\r\nrudoarmějka\r\nrudohlavý\r\nrudohoří\r\nrudoch\r\nrudochův\r\nrudokrký\r\nrudolecký\r\nRudolec\r\nrudolfínský\r\nrudolfinský\r\nRudolfinum\r\nrudolfka\r\nRudolfová\r\nRudolfov\r\nrudolfovský\r\nRudolf\r\nRudolfův\r\nrudolící\r\nRudoltice\r\nrudoltický\r\nrudomodřejší\r\nrudonohý\r\nrudotmavý\r\nRudová\r\nrudovlásčin\r\nrudovláska\r\nrudovlasý\r\nrudový\r\nrudozelený\r\nrudozobý\r\nrudší\r\nRudův\r\nrudý\r\nRufferová\r\nRuffer\r\nRufferův\r\nruchadlo\r\nruch\r\nruchovcův\r\nruchovec\r\nruchový\r\nruina\r\nruinování\r\nruinovaný\r\nruinovat\r\nruinovávání\r\nruinovávaný\r\nruinovávat\r\nruinující\r\nRujana\r\nRujána\r\nrujanský\r\nRujbrová\r\nRujbr\r\nRujbrův\r\nrujnování\r\nrujnovaný\r\nrujnovat\r\nrujný\r\nRujzlová\r\nRujzl\r\nRujzlův\r\nrukama\r\nrukávec\r\nrukáv\r\nrukavice\r\nrukavicový\r\nrukavičkářčin\r\nrukavičkářka\r\nrukavičkářský\r\nrukavičkářství\r\nrukavičkář\r\nrukavičkářův\r\nrukavička\r\nrukávník\r\nrukávový\r\nruka\r\nrukodělný\r\nrukodílný\r\nrukojemský\r\nrukojemství\r\nrukojeť\r\nrukojmí\r\nrukomluva\r\nrukopis\r\nrukopisný\r\nrukoudání\r\nrukování\r\nrukovat\r\nrukovávání\r\nrukovávat\r\nrukověť\r\nruksak\r\nrukující\r\nrukulíbající\r\nrukulíbám\r\nruláda\r\nrulandský\r\nrula\r\nRulcová\r\nRulc\r\nRulcův\r\nruleta\r\nruletka\r\nruletový\r\nrulička\r\nrulík\r\nRulíková\r\nrulíkový\r\nRulík\r\nRulíkův\r\nrulový\r\nrumba\r\nrumbový\r\nRumburk\r\nrumburský\r\nrumělka\r\nrumělkový\r\nruměnec\r\nruměnější\r\nruměný\r\nrum\r\nRumíšek\r\nRumíšková\r\nRumíškův\r\nrumiště\r\nrumištní\r\nRumlová\r\nRuml\r\nRumlův\r\nrumovější\r\nrumoviště\r\nrumový\r\nrumpál\r\nrumpálový\r\nRumplíková\r\nRumplík\r\nRumplíkův\r\nRumunčin\r\nRumunka\r\nRumun\r\nRumunsko\r\nrumunský\r\nrumunština\r\nRumunův\r\nruna\r\nrunda\r\nrunový\r\nrupat\r\nrupie\r\nrupnout\r\nrupnutí\r\nRuprechtov\r\nruprechtovský\r\nruptura\r\nruralismus\r\nruralista\r\nruralistčin\r\nruralističtější\r\nruralistka\r\nruralistův\r\nrurálnější\r\nRúr\r\nRus\r\nrusalčí\r\nrusalka\r\nRusava\r\nRusčin\r\nRusevová\r\nRusev\r\nRusevův\r\nRusi\r\nRusí\r\nRusiňáková\r\nRusiňák\r\nRusiňákův\r\nRusinčin\r\nRusínčin\r\nRusinka\r\nRusínka\r\nRusinová\r\nRusín\r\nRusin\r\nrusínský\r\nRusinův\r\nRusínův\r\nrusismus\r\nrusista\r\nrusistčin\r\nrusistický\r\nrusistika\r\nrusistka\r\nrusistův\r\nRuska\r\nruskoamerický\r\nRusko\r\nruskoturecký\r\nruský\r\nruský\r\nRusnáková\r\nRusňáková\r\nRusnák\r\nRusňák\r\nRusnákův\r\nRusňákův\r\nrusofil\r\nrusofilský\r\nrusofilství\r\nrusofilův\r\nRusová\r\nrusovlásčin\r\nrusovláska\r\nrusovlasý\r\nrusový\r\nrus\r\nRus\r\nRussell\r\nRussellův\r\nrussellův\r\nRussel\r\nRusselův\r\nRussová\r\nRuss\r\nRussův\r\nrůst\r\nrustikál\r\nrustikálnější\r\nrustikální\r\nrustika\r\nrůst\r\nrustonka\r\nrůstový\r\nRusův\r\nRusý\r\nrusý\r\nrušenější\r\nrušení\r\nrušený\r\nrušící\r\nrušička\r\nRušinov\r\nrušinovský\r\nrušit\r\nrušitelčin\r\nrušitelka\r\nrušitelnější\r\nrušitelný\r\nrušitel\r\nrušitelův\r\nrušivější\r\nrušivý\r\nrušnější\r\nrušný\r\nruštinářčin\r\nruštinářka\r\nruštinář\r\nruštinářův\r\nruština\r\nRút\r\nRůta\r\nRuth\r\nRuthardový\r\nrutheničitan\r\nrutheniový\r\nruthenium\r\nrutherfordium\r\nrutil\r\nrutina\r\nrutinérčin\r\nrutinérka\r\nrutinér\r\nrutinérství\r\nrutinérův\r\nrutinka\r\nrutinnější\r\nrutinní\r\nrutinovaný\r\nRůtová\r\nRút\r\nRůt\r\nRútův\r\nRůtův\r\nRůznarová\r\nRůznar\r\nRůznarův\r\nrůznější\r\nrůznění\r\nrůzněný\r\nrůzněputnový\r\nrůznice\r\nrůznící\r\nrůznit\r\nrůznobarevný\r\nrůznoběžka\r\nrůznoběžník\r\nrůznoběžný\r\nrůznojazyčný\r\nrůznolistý\r\nrůznorodější\r\nrůznorodý\r\nrůznosměrný\r\nrůznostranný\r\nrůznotvárný\r\nrůznotvarý\r\nrůznověký\r\nrůznovýtrusný\r\nrůzný\r\nRuzyně\r\nruzyňský\r\nruzyňský\r\nrůžák\r\nRůžďka\r\nRůžek\r\nrůžek\r\nRůžená\r\nRůžena\r\nrůžencový\r\nRůženčin\r\nrůženec\r\nrůženín\r\nRůženin\r\nRůženka\r\nrůženský\r\nrůže\r\nrůžice\r\nRůžička\r\nrůžička\r\nRůžičková\r\nrůžičkovitý\r\nrůžičkový\r\nRůžičkův\r\nrůžkatější\r\nrůžkatka\r\nRůžková\r\nrůžkový\r\nRůžkův\r\nRůžodol\r\nrůžodolský\r\nrůžolící\r\nRužomberok\r\nRůžová\r\nrůžovější\r\nrůžovění\r\nrůžovět\r\nrůžovka\r\nrůžovofialový\r\nrůžovolící\r\nrůžovoučký\r\nrůžovský\r\nrůžový\r\nrůž\r\nrváččin\r\nrvačka\r\nrváčka\r\nrváč\r\nrváčův\r\nrvanější\r\nrvaní\r\nrvaný\r\nrvát\r\nrvávání\r\nrvávaný\r\nrvávat\r\nrvavější\r\nrvavý\r\nRVHP\r\nrvoucí\r\nRwanďančin\r\nRwanďanka\r\nRwanďan\r\nRwanďanův\r\nRwanda\r\nrwandský\r\nrwandský\r\nrybačka\r\nRybáková\r\nrybák\r\nRybák\r\nRybákův\r\nrybákův\r\nRyba\r\nrybárna\r\nrybářčin\r\nrybaření\r\nrybařící\r\nrybařina\r\nrybařit\r\nrybářka\r\nRybářová\r\nrybářský\r\nrybářství\r\nrybářštější\r\nrybář\r\nRybář\r\nRybářův\r\nrybářův\r\nryba\r\nRybek\r\nrybenka\r\nryběnka\r\nrybenský\r\nRybiařová\r\nRybiař\r\nRybiařův\r\nrybička\r\nrybina\r\nrybinka\r\nrybinovací\r\nrybinování\r\nrybinovaný\r\nrybinovat\r\nRybínová\r\nrybinový\r\nRybín\r\nRybínův\r\nRybitví\r\nrybí\r\nrybíz\r\nrybízový\r\nRybka\r\nrybka\r\nRybková\r\nRybkův\r\nrybnatější\r\nrybnatý\r\nRybná\r\nRybné\r\nRybnice\r\nrybnický\r\nRybníček\r\nrybníček\r\nRybníčková\r\nrybníčkový\r\nRybníčkův\r\nrybničnatý\r\nrybniční\r\nrybnikářčin\r\nrybnikářka\r\nrybníkářský\r\nrybnikářství\r\nrybníkářství\r\nrybnikář\r\nrybníkář\r\nrybnikářův\r\nrybníkářův\r\nrybník\r\nRybniště\r\nrybnišťský\r\nrybný\r\nrybochovný\r\nryboještěr\r\nryboještěrův\r\nryboještěří\r\nrybolov\r\nrybolovný\r\nRybová\r\nrybový\r\nrybožravý\r\nRybův\r\nrycí\r\nrýček\r\nryčení\r\nryčící\r\nryčnější\r\nryčný\r\nRyčová\r\nrýčový\r\nrýč\r\nRyč\r\nRyčův\r\nrydélko\r\nrydlo\r\nRydlo\r\nRydlová\r\nRýdlová\r\nRýdl\r\nRydlův\r\nRýdlův\r\nRydvalová\r\nRydval\r\nRydvalův\r\nRyglová\r\nRygl\r\nRyglův\r\nrýha\r\nrýhonoscův\r\nrýhonosec\r\nrýhovací\r\nrýhovanější\r\nrýhování\r\nrýhovaný\r\nrýhovat\r\nrýhový\r\nRychecký\r\nRychetský\r\nrychlebský\r\nRychleby\r\nrychleji\r\nrychlejší\r\nrychlení\r\nrychlený\r\nrychleschnoucí\r\nrychlík\r\nRychlíková\r\nrychlíkový\r\nRychlík\r\nRychlíkův\r\nrychlit\r\nrychlo\r\nrychloběh\r\nrychloběžný\r\nrychlobruslařčin\r\nrychlobruslařka\r\nrychlobruslař\r\nrychlobruslařův\r\nrychlobruslení\r\nrychločistírna\r\nrychlodrah\r\nrychlodráha\r\nrychloinstalace\r\nrychlokurs\r\nrychlokvašený\r\nrychlokvaška\r\nrychloměr\r\nrychloměrný\r\nrychlonohý\r\nRychlonožka\r\nRychlonožková\r\nRychlonožkův\r\nrychloopravna\r\nrychlopalba\r\nrychlopalný\r\nrychloposuv\r\nrychlopřijímací\r\nrychlopřijímání\r\nrychlopřijímaný\r\nrychloraziččin\r\nrychlorazička\r\nrychlorazič\r\nrychlorazičův\r\nrychloražení\r\nrychlořezný\r\nrychlospojka\r\nrychlosprávkárna\r\nrychlostní\r\nrychlotelegraf\r\nrychlotiskárna\r\nrychloupínací\r\nrychlováha\r\nrychlovarný\r\nrychlovařič\r\nrychlovka\r\nrychlovlak\r\nrychlovýkrm\r\nrychlovysílací\r\nrychlovysílání\r\nrychlovysílaný\r\nrychlovýtah\r\nrychlozmrazovací\r\nRychlý\r\nrychlý\r\nrychmburský\r\nRychnava\r\nRychnov\r\nRychnovsko\r\nrychnovský\r\nrychtářčin\r\nRychtaříková\r\nRychtařík\r\nRychtaříkův\r\nrychtářka\r\nRychtářová\r\nrychtářský\r\nrychtář\r\nRychtář\r\nRychtářův\r\nrychtářův\r\nrychta\r\nRychterová\r\nRychter\r\nRychterův\r\nRychtrová\r\nRychtr\r\nRychtrův\r\nRykala\r\nRykalová\r\nRykalův\r\nryk\r\nRýmařov\r\nrýmařovský\r\nrýma\r\nrým\r\nRymice\r\nrymický\r\nrýmovačka\r\nrýmování\r\nrýmovánka\r\nrýmovaný\r\nrýmovat\r\nrýmový\r\nrýmující\r\nrynárecký\r\nRynárec\r\nrýna\r\nRynda\r\nRyndová\r\nRyndův\r\nrynek\r\nRynešová\r\nRyneš\r\nRynešův\r\nryngle\r\nrynglový\r\nRýn\r\nrynholecký\r\nRynholec\r\nryniofyt\r\nrynk\r\nRynoltice\r\nrynoltický\r\nRýnovice\r\nrýnovický\r\nRýnsko\r\nrýnský\r\nrýnský\r\nryolit\r\nryolitový\r\nrýpací\r\nRypáček\r\nrypáček\r\nRypáčková\r\nRypáčkův\r\nrypadlo\r\nrýpadlo\r\nrýpající\r\nrypák\r\nrýpalka\r\nrýpal\r\nrýpalův\r\nrýpanec\r\nrýpání\r\nrýpaný\r\nrýpat\r\nrýpávání\r\nrýpávaný\r\nrýpávat\r\nrýpavější\r\nrýpavý\r\nrýpnout\r\nrýpnutí\r\nrýpnutý\r\nrypouší\r\nrypouš\r\nrypoušův\r\nryps\r\nrypsový\r\nrys\r\nrysí\r\nryska\r\nrýsovací\r\nrýsováček\r\nrysovadlo\r\nrýsovadlo\r\nrýsování\r\nrýsovaný\r\nrýsovat\r\nRysová\r\nrýsovna\r\nrysový\r\nrys\r\nRys\r\nrýsující\r\nRysův\r\nrysův\r\nRyšánek\r\nRyšánková\r\nRyšánkův\r\nryšavější\r\nRyšavý\r\nryšavý\r\nRyšek\r\nRyška\r\nRyšková\r\nRyškův\r\nRyšlavý\r\nRyšlinková\r\nRyšlink\r\nRyšlinkův\r\nrýt\r\nrytcův\r\nrytecký\r\nrytectví\r\nrytec\r\nrytečtější\r\nrytější\r\nrytina\r\nrytinka\r\nrytířčin\r\nrytířka\r\nRytířová\r\nrytířský\r\nrytířství\r\nrytířstvo\r\nrytířštější\r\nrytíř\r\nRytíř\r\nRytířův\r\nrytířův\r\nrytí\r\nrytmický\r\nrytmičtější\r\nrytmika\r\nrytmistr\r\nrytmistrův\r\nrytmizace\r\nrytmizovaný\r\nrytmizovat\r\nrytmizující\r\nrytmus\r\nrytý\r\nryv\r\nRyvola\r\nRyvolová\r\nRyvolův\r\nryzák\r\nryzákův\r\nryzalit\r\nryzcový\r\nryzčin\r\nryzec\r\nryzejší\r\nryzí\r\nryzka\r\nryzlink\r\nRýzmberk\r\nrýžák\r\nrýže\r\nrýžka\r\nrýžování\r\nrýžovaný\r\nrýžovat\r\nrýžovisko\r\nrýžoviště\r\nrýžovník\r\nrýžový\r\nRZ\r\nrzemi\r\nrzi\r\nrzí\r\nrzích\r\nrzím\r\nrzivý\r\nržající\r\nržání\r\nržát\r\nržávat\r\nřácký\r\nřada\r\nřádečka\r\nřádek\r\nřadění\r\nřádění\r\nřaděný\r\nřad\r\nřád\r\nřadicí\r\nřadící\r\nřádící\r\nřadič\r\nřadit\r\nřádit\r\nřaditelnější\r\nřaditelný\r\nřádka\r\nřádkovací\r\nřádkovač\r\nřádkování\r\nřádkovaný\r\nřádkovat\r\nřádkovitý\r\nřádkový\r\nřádnější\r\nřádný\r\nřadovější\r\nřádovější\r\nřadový\r\nřádový\r\nřachavý\r\nřapíkatější\r\nřapíkatý\r\nřapík\r\nřapíkový\r\nřasa\r\nřasení\r\nřasenka\r\nřásenský\r\nřasený\r\nřasící\r\nřasinka\r\nřasinkový\r\nřasit\r\nřasnatější\r\nřasnatý\r\nŘásná\r\nŘasnice\r\nřasnický\r\nřasnický\r\nřasovací\r\nřasování\r\nřasovaný\r\nřasovat\r\nřasový\r\nřazenější\r\nřazení\r\nřazený\r\nřebíček\r\nřebříček\r\nřebříčkův\r\nŘecích\r\nŘecko\r\nřeckokatolický\r\nřeckořímský\r\nřeckořímštější\r\nřecký\r\nřečení\r\nřečen\r\nřečený\r\nŘečice\r\nřečický\r\nřečička\r\nřečičky\r\nřečiště\r\nřeč\r\nŘečkovice\r\nřečkovický\r\nřečnější\r\nřečnění\r\nřečněný\r\nřečnice\r\nřečnící\r\nřečnický\r\nřečnictví\r\nřečničtější\r\nřečník\r\nřečníkův\r\nřečniště\r\nřečnit\r\nřečný\r\nřečový\r\nřeč\r\nřečtinářčin\r\nřečtinářka\r\nřečtinář\r\nřečtinářův\r\nřečtina\r\nředění\r\nředěný\r\nředící\r\nředidlo\r\nředit\r\nředitelčin\r\nředitelka\r\nředitelna\r\nředitelovat\r\nředitelský\r\nředitelství\r\nředitel\r\nředitelův\r\nředkev\r\nředkvička\r\nředkvičkový\r\nŘedvice\r\nŘeháček\r\nŘeháčková\r\nŘeháčkův\r\nŘeháková\r\nŘehák\r\nŘehákův\r\nŘehánek\r\nŘehánková\r\nŘehánkův\r\nŘehenice\r\nřehenický\r\nŘehlovice\r\nřehlovický\r\nŘehnice\r\nřehnický\r\nřehole\r\nřeholnice\r\nřeholník\r\nřeholníkův\r\nřeholní\r\nřehonění\r\nřehoněný\r\nřehonit\r\nŘehořčin\r\nŘehořka\r\nŘehořová\r\nřehořský\r\nŘehoř\r\nŘehořův\r\nřehot\r\nŘehoutová\r\nŘehout\r\nŘehoutův\r\nŘehová\r\nŘeh\r\nřehtačka\r\nřehtání\r\nřehtaný\r\nřehtat\r\nřehtavý\r\nŘehula\r\nŘehulová\r\nŘehulův\r\nŘehuřek\r\nŘehuřková\r\nŘehuřkův\r\nŘehův\r\nŘek\r\nŘeka\r\nřeka\r\nŘekem\r\nřekl\r\nřeknu\r\nřeknutí\r\nřeknuv\r\nŘekové\r\nŘekovi\r\nŘeku\r\nŘeků\r\nŘekům\r\nŘekův\r\nŘeky\r\nřekymilovnější\r\nřekymilovný\r\nŘekyně\r\nŘekynin\r\nřemenatka\r\nřemen\r\nřemení\r\nřemenice\r\nřemenička\r\nřemenový\r\nřemeslnější\r\nřemeslnice\r\nřemeslnický\r\nřemeslnictvo\r\nřemeslničtější\r\nřemeslník\r\nřemeslníkův\r\nřemeslný\r\nřemeslo\r\nŘemíčov\r\nřemíčovský\r\nřemínek\r\nřemínkář\r\nřemínkářův\r\nřemínkový\r\nŘendějov\r\nřendějovský\r\nŘepa\r\nřepařčin\r\nřepařka\r\nřepařský\r\nřepař\r\nřepařův\r\nřepa\r\nŘepčice\r\nřepčický\r\nřepíček\r\nřepík\r\nŘepín\r\nřepínský\r\nŘepka\r\nřepka\r\nŘepková\r\nřepkový\r\nŘepkův\r\nřepný\r\nŘeporyje\r\nřeporyjský\r\nŘepová\r\nřepovitý\r\nŘepov\r\nřepovský\r\nřepový\r\nřepský\r\nŘepův\r\nŘepy\r\nřeřavější\r\nřeřavět\r\nřeřavý\r\nŘeřicha\r\nřeřicha\r\nŘeřichová\r\nřeřichový\r\nŘeřichův\r\nřeřišnice\r\nřešátkový\r\nřešenější\r\nřešení\r\nřešený\r\nřešetlákovitý\r\nřešetlákový\r\nřešeto\r\nřešící\r\nřešit\r\nřešitelčin\r\nřešitelka\r\nřešitelnější\r\nřešitelný\r\nřešitelský\r\nřešitel\r\nřešitelův\r\nřešívanější\r\nřešívání\r\nřešívaný\r\nřešívat\r\nřetězcový\r\nřetězec\r\nřetězení\r\nřetězený\r\nřetěz\r\nřetězící\r\nřetězit\r\nřetězovější\r\nřetězovitý\r\nřetězovka\r\nřetězový\r\nřetízek\r\nřetízkovací\r\nřetízkování\r\nřetízkovaný\r\nřetízkovat\r\nřetízkový\r\nŘetová\r\nřetovský\r\nŘetůvka\r\nřev\r\nŘevnice\r\nřevnický\r\nŘevničov\r\nřevničovský\r\nřevnivější\r\nřevnivý\r\nřezací\r\nŘezáček\r\nřezačka\r\nŘezáčková\r\nŘezáčkův\r\nŘezáčová\r\nřezač\r\nŘezáč\r\nřezačův\r\nŘezáčův\r\nřezající\r\nřezák\r\nřezanější\r\nřezanina\r\nřezaní\r\nřezání\r\nŘezanka\r\nřezanka\r\nŘezanková\r\nřezankový\r\nŘezankův\r\nřezaný\r\nřezat\r\nřezátko\r\nřezávající\r\nřezávanější\r\nřezávání\r\nřezávaný\r\nřezávat\r\nřezavější\r\nřezavý\r\nřezbářčin\r\nřezbářka\r\nřezbářský\r\nřezbářství\r\nřezbář\r\nřezbářův\r\nřezba\r\nřezenský\r\nřez\r\nřezivo\r\nřezivý\r\nřeznice\r\nřeznický\r\nřeznictví\r\nŘezníček\r\nřezničin\r\nŘezníčková\r\nŘezníčkův\r\nřezničtější\r\nřezník\r\nřezníkův\r\nŘezno\r\nŘeznovice\r\nřeznovický\r\nřezný\r\nřezový\r\nřežavý\r\nřežba\r\nřež\r\nřícení\r\nřícený\r\nříci\r\nříct\r\nříčanský\r\nŘíčany\r\nřičení\r\nřičet\r\nřičící\r\nříčka\r\nříčkový\r\nříčnější\r\nříční\r\nříčný\r\nřidčeji\r\nřídčeji\r\nŘídelov\r\nřídelovský\r\nřídicí\r\nřídící\r\nřidičák\r\nřidička\r\nřidičský\r\nřidič\r\nřidičův\r\nřídit\r\nřiditelný\r\nříditelný\r\nřiditel\r\nřiditelův\r\nřidítka\r\nřídítka\r\nŘídký\r\nřídký\r\nřídnoucí\r\nřídnout\r\nřidnout\r\nřídnutí\r\nřidší\r\nříhání\r\nŘíha\r\nříhat\r\nříhnout\r\nříhnutí\r\nŘíhová\r\nŘíhův\r\nříjení\r\nříjen\r\nříjet\r\nříje\r\nříjící\r\nříjiště\r\nříjnovější\r\nříjnový\r\nříjný\r\nříjový\r\nříkačka\r\nříkadlo\r\nříkadlový\r\nříkající\r\nříkání\r\nříkanka\r\nříkánka\r\nříkaný\r\nříkat\r\nříkávání\r\nříkávaný\r\nříkávat\r\nŘikonín\r\nřikonínský\r\nŘíkov\r\nříkovský\r\nŘímalová\r\nŘímal\r\nŘímalův\r\nŘímančin\r\nŘímanka\r\nŘímanová\r\nŘíman\r\nŘíman\r\nŘímanův\r\nřimbabový\r\nŘím\r\nŘímov\r\nřímovský\r\nřímsa\r\nřímska\r\nřímskokatolický\r\nřímskokatoličtější\r\nřímskoněmecký\r\nřímský\r\nřímský\r\nřímsoví\r\nřímštější\r\nřinčení\r\nřinčený\r\nřinčet\r\nřinčící\r\nřinčivější\r\nřinčivý\r\nřinkot\r\nřinoucí\r\nřinout\r\nřinutí\r\nřinutý\r\nŘípa\r\nřípecký\r\nŘípec\r\nŘíp\r\nŘípová\r\nřípový\r\nŘípův\r\nříše\r\nříšský\r\nříš\r\nřitecký\r\nřítící\r\nřítit\r\nŘitka\r\nřitní\r\nřiť\r\nŘivnáčová\r\nŘivnáč\r\nŘivnáčův\r\nříza\r\nřízek\r\nřízení\r\nřízený\r\nřízkování\r\nřízkový\r\nříznačka\r\nříznější\r\nříznout\r\nříznutější\r\nříznutí\r\nříznutý\r\nříznutý\r\nřízný\r\nřka\r\nřkou\r\nřku\r\nřvaní\r\nřvaný\r\nřvát\r\nřvávání\r\nřvávaný\r\nřvávat\r\nřvavější\r\nřvavý\r\nřvoucí\r\nřvoun\r\nřvounův\r\ns\r\nSabašová\r\nSabaš\r\nSabašův\r\nsabat\r\nSába\r\nSábelová\r\nSábel\r\nSábelův\r\nSabina\r\nSabinčin\r\nSabinin\r\nSabinka\r\nSáblová\r\nSábl\r\nSáblův\r\nsabotážnický\r\nsabotážník\r\nsabotážní\r\nsabotáž\r\nsabotérčin\r\nsabotérka\r\nsabotér\r\nsabotérský\r\nsabotérův\r\nsabotování\r\nsabotovaný\r\nsabotovat\r\nsabotovávání\r\nsabotovávaný\r\nsabotovávat\r\nsabotující\r\nsací\r\nSacramento\r\nsáček\r\nsáčko\r\nsáčkovací\r\nsáčkování\r\nsáčkovaný\r\nsáčkovat\r\nsáčkový\r\nsadařský\r\nsadařství\r\nsadař\r\nsadařův\r\nSadat\r\nSadatův\r\nsada\r\nsadba\r\nsadbový\r\nsadební\r\nSadec\r\nsádelnatější\r\nsádelnatý\r\nsádelný\r\nsad\r\nSadílek\r\nSadílková\r\nSadílkův\r\nSadilová\r\nSadil\r\nSadilův\r\nsadismus\r\nsadista\r\nsadistčin\r\nsadistický\r\nsadističtější\r\nsadistka\r\nsadistův\r\nsádka\r\nsádkování\r\nsádkový\r\nsádlo\r\nSádlo\r\nSádlová\r\nSádlův\r\nsadomasochismus\r\nsadomasochista\r\nsadomasochistčin\r\nsadomasochistický\r\nsadomasochističtější\r\nsadomasochistka\r\nsadomasochistův\r\nSadová\r\nsadovější\r\nSadov\r\nsadovnický\r\nsadovnictví\r\nsadovský\r\nSádovský\r\nsadový\r\nsádra\r\nsádrokartonový\r\nsádrování\r\nsádrovaný\r\nsádrovat\r\nsádrovcový\r\nsádrovec\r\nsádrovka\r\nsádrový\r\nSadská\r\nSadvarová\r\nSadvar\r\nSadvarův\r\nsafari\r\nsafián\r\nsafiánový\r\nsafír\r\nsafírový\r\nsafraportský\r\nsága\r\nságový\r\nsahající\r\nsahání\r\nsahaný\r\nSahara\r\nsaharský\r\nsaharský\r\nsahat\r\nsáh\r\nsáhnout\r\nsáhnutí\r\nsáhnutý\r\nsáhodlouhý\r\nsáhový\r\nSahula\r\nSahulová\r\nSahulův\r\nSachalin\r\nsachalinský\r\nsacharasa\r\nsacharid\r\nsacharidový\r\nsacharin\r\nsacharínový\r\nsacharometrický\r\nsacharosa\r\nsacharóza\r\nSacherová\r\nSacher\r\nSacherův\r\nSachrová\r\nSachr\r\nSachrův\r\nSaidlová\r\nSaidl\r\nSaidlův\r\nSaiedová\r\nSaied\r\nSaiedův\r\nSaigon\r\nsaigonský\r\nSaint\r\nSajbrtová\r\nSajbrt\r\nSajbrtův\r\nsajda\r\nsajdkár\r\nsajdkárista\r\nsajdkáristčin\r\nsajdkáristka\r\nsajdkáristův\r\nsajdka\r\nsající\r\nsajrajt\r\nsajt\r\nsáknout\r\nsáknutí\r\nsako\r\nsakovina\r\nsakový\r\nsakra\r\nsakrálnější\r\nsakrální\r\nsakramentský\r\nsakristie\r\nsakrující\r\nsakura\r\nSalaam\r\nSalaba\r\nSalabová\r\nSalabův\r\nSalačová\r\nSalač\r\nSalačův\r\nsálající\r\nSalajka\r\nsalajka\r\nSalajková\r\nSalajkův\r\nsalamandr\r\nsalamandrův\r\nsalám\r\nsalámový\r\nsálání\r\nsálání\r\nsálaný\r\nsalár\r\nsalaš\r\nsalát\r\nsálat\r\nSalátová\r\nsalátový\r\nSalát\r\nSalátův\r\nsálávání\r\nsálávat\r\nsálavější\r\nsálavý\r\nsalcburka\r\nSalcburk\r\nsalcburský\r\nSalcpurk\r\nsaldokontista\r\nsaldokontistčin\r\nsaldokontistka\r\nsaldokontistův\r\nsaldokonto\r\nsaldo\r\nsaldovací\r\nsaldování\r\nsaldovaný\r\nsaldovat\r\nsalesiánčin\r\nsalesiánka\r\nsalesián\r\nsalesiánský\r\nsalesiánův\r\nSaleský\r\nSalfický\r\nsál\r\nSalhabová\r\nSalhab\r\nSalhabův\r\nSalice\r\nsalicyl\r\nsalicylový\r\nSalivarová\r\nSalivar\r\nSalivarův\r\nSaljut\r\nsalmiak\r\nsalmonela\r\nsalmonelosa\r\nsalmonelóza\r\nsalmonid\r\nsalonek\r\nsalónek\r\nsalon\r\nsalón\r\nsalónka\r\nsalonní\r\nsalónní\r\nsalónový\r\nsálovější\r\nsálový\r\nsálský\r\nsalto\r\nsalutování\r\nsalutovaný\r\nsalutovat\r\nsalutovávání\r\nsalutovávat\r\nsalutující\r\nSalvadorcův\r\nSalvadorčin\r\nSalvadorec\r\nSalvador\r\nSalvadorka\r\nsalvadorský\r\nSalvadořančin\r\nSalvadořanka\r\nSalvadořan\r\nSalvadořanův\r\nsalvatoriánův\r\nsalva\r\nSalzburg\r\nsalzburgský\r\nsám\r\nsama\r\nsamá\r\nSamara\r\nsamariový\r\nsamaritánčin\r\nsamaritánka\r\nsamaritán\r\nsamaritánský\r\nsamaritánství\r\nsamaritánův\r\nsamarium\r\nSamařančin\r\nSamařanka\r\nsamba\r\nsambový\r\nSamcová\r\nSamcův\r\nsamcův\r\nsamčí\r\nsamé\r\nsamec\r\nSamec\r\nsameček\r\nsámeček\r\nsamečkův\r\nsamého\r\nSamek\r\nsámek\r\nsamém\r\nsamému\r\nsamet\r\nsametka\r\nsametovější\r\nsametový\r\nsami\r\nsamice\r\nsamičin\r\nsamičí\r\nsamička\r\nsamizdat\r\nsamizdatový\r\nSamko\r\nSamková\r\nSamkův\r\nsamo\r\nsamoaktivace\r\nSamoa\r\nsamobuzení\r\nsamočinný\r\nsamočisticí\r\nsamočistící\r\nsamočištění\r\nsamodefinující\r\nsamoděržaví\r\nsamoduální\r\nsamofinancování\r\nsamofinancovaný\r\nsamofinancovat\r\nsamofinancovávání\r\nsamofinancovávaný\r\nsamofinancovávat\r\nsamofinancující\r\nsamofungující\r\nsamohláska\r\nsamohláskový\r\nsamohodnocení\r\nsamohodnotící\r\nsamohonka\r\nsamohrající\r\nsamohyb\r\nsamohybný\r\nsamochodka\r\nsamochodný\r\nsamochvála\r\nsamoindukční\r\nsamoinstalující\r\nsamointerakce\r\nSamojcův\r\nSamojčin\r\nSamojec\r\nsamojediný\r\nsamojedský\r\nsamojistící\r\nsamojízdný\r\nSamojka\r\nsamojský\r\nsamokalitelný\r\nsamokopírovací\r\nsamokřídlo\r\nsamokypřící\r\nsamoléčba\r\nsamoléčebný\r\nsamoléčitelčin\r\nsamoléčitelka\r\nsamoléčitel\r\nsamoléčitelství\r\nsamoléčitelův\r\nsamolepicí\r\nsamolepící\r\nsamolepka\r\nsamolibější\r\nsamolibý\r\nsamolikvidující\r\nsamomazný\r\nsamomluva\r\nsamonakládací\r\nsamonasírací\r\nsamonosný\r\nsamoobnovitelný\r\nsamoobsluha\r\nsamoobslužný\r\nsamoodečet\r\nsamoopalovací\r\nsamoopravitelný\r\nsamoopravný\r\nsamoorganizace\r\nsamoorganizovatelnější\r\nsamoorganizovatelný\r\nsamoorganizující\r\nsamopal\r\nsamopalník\r\nsamopalníkův\r\nsamopalový\r\nsamoprogramovatelný\r\nsamoregulace\r\nsamoregulační\r\nsamoregulovatelný\r\nsamoregulující\r\nsamoreprodukující\r\nsamorodný\r\nsamorost\r\nsamorostlý\r\nsamorozbalitelný\r\nsamorozbalovací\r\nsamorozbalující\r\nsamořídicí\r\nsamořídící\r\nsamosběrací\r\nsamosběrový\r\nsamosnímací\r\nsamosoudce\r\nsamosoudcův\r\nsamosoudkyně\r\nsamosoudkynin\r\nsamospád\r\nsamospasitelný\r\nsamospasitel\r\nsamospasitelův\r\nsamospojení\r\nsamospouštění\r\nsamospoušť\r\nsamosprášení\r\nsamosprašný\r\nsamospráva\r\nsamosprávní\r\nsamosprávný\r\nsamostatnější\r\nsamostatný\r\nsamostředící\r\nsamostříl\r\nsamostudium\r\nsamosvorný\r\nsamotářčin\r\nsamotářka\r\nsamotářský\r\nsamotářství\r\nsamotář\r\nsamotářův\r\nsamota\r\nsamoten\r\nsamotěsnící\r\nsamotka\r\nsamotnější\r\nsamotný\r\nsamotok\r\nsamotraumatizující\r\nsamou\r\nsamoúčelnější\r\nsamoúčelný\r\nsamoučící\r\nsamouk\r\nsamoukův\r\nsamouzdravující\r\nsamovar\r\nsamovázací\r\nsamovazač\r\nsamovazba\r\nsamovaz\r\nsamovláda\r\nsamovládce\r\nsamovládcův\r\nsamovládný\r\nsamovolnější\r\nsamovolný\r\nsamovybíjecí\r\nsamovýklopný\r\nsamovykonávací\r\nsamovyplňující\r\nsamovýroba\r\nsamovysvětlující\r\nsamovývoj\r\nsamovzdělávání\r\nsamovzhledný\r\nsamovznícení\r\nsamovznítitelný\r\nsamozápalný\r\nsamozásobení\r\nsamozásobitelčin\r\nsamozásobitelka\r\nsamozásobitelný\r\nsamozásobitel\r\nsamozásobitelův\r\nsamozaváděcí\r\nsamozavlažovací\r\nsamozesilující\r\nsamozhášivý\r\nsamoznak\r\nsamoznakový\r\nsamozřejmější\r\nsamozřejmý\r\nsamozvancův\r\nsamozvanec\r\nsamozvaný\r\nsamožitný\r\nsamoživitelčin\r\nsamoživitelka\r\nsamoživitel\r\nsamoživitelův\r\nsamplování\r\nsamplovaný\r\nsamplovat\r\nSamšina\r\nSamšín\r\nsamšínský\r\nsamu\r\nSamuel\r\nSamuelův\r\nsamum\r\nsamurajský\r\nsamuraj\r\nsamurajův\r\nSámův\r\nsamy\r\nsamých\r\nsamým\r\nsamými\r\nsamý\r\nSan\r\nsanace\r\nsanační\r\nsanatorium\r\nsandálek\r\nsandál\r\nsandinista\r\nsandinistčin\r\nsandinistka\r\nsandinistův\r\nSandra\r\nSandřin\r\nsáně\r\nsaně\r\nSanegalcův\r\nsáněmi\r\nsanforizační\r\nsangvinický\r\nsangvinička\r\nsangvinik\r\nsangvinikův\r\nsanice\r\nsanidin\r\nsanidinový\r\nsání\r\nsanitace\r\nsanitární\r\nsanitářčin\r\nsanitářka\r\nsanitář\r\nsanitářův\r\nsanita\r\nsanitka\r\nsanitní\r\nsáňkařčin\r\nsáňkářčin\r\nsáňkařka\r\nsáňkářka\r\nsáňkařský\r\nsáňkářský\r\nsáňkař\r\nsáňkář\r\nsáňkařův\r\nsáňkářův\r\nsankce\r\nsankcionování\r\nsankcionovaný\r\nsankcionovat\r\nsankční\r\nsáňkovací\r\nsáňkování\r\nsáňkování\r\nsáňkovat\r\nsáňkový\r\nSankt\r\nsanktuář\r\nsanktusní\r\nsanktusový\r\nsáňkující\r\nsáňky\r\nsanmarinský\r\nSannista\r\nsanování\r\nsanovaný\r\nsanovat\r\nsaňovitost\r\nsaňový\r\nsáňový\r\nsansalvadorský\r\nsanskrt\r\nsanskrtský\r\nsantálový\r\nSantiago\r\nsantiagský\r\nsantiniovský\r\nSantosová\r\nSantos\r\nSantosův\r\nSanytrníková\r\nSanytrník\r\nSanytrníkův\r\nsaň\r\nSao\r\nsápání\r\nsápat\r\nsápávání\r\nsápávat\r\nsapér\r\nsapérův\r\nsaponát\r\nsaponátový\r\nsaponinový\r\nSapporo\r\nsaprobní\r\nsaprolegnióza\r\nSAR\r\nsarajevo\r\nsaranče\r\nsarapatička\r\nSára\r\nSára\r\nsardelový\r\nsardel\r\nSardinie\r\nsardinka\r\nsardinský\r\nsardinština\r\nsardština\r\nsárí\r\nsarkasmus\r\nsarkastický\r\nsarkastičtější\r\nsarkazmus\r\nsarkofág\r\nsarkom\r\nSarnecký\r\nsarong\r\nSárová\r\nSársko\r\nSárův\r\nSarvašová\r\nSarvaš\r\nSarvašův\r\nSářin\r\nsasanka\r\nsasankový\r\nSasek\r\nSaska\r\nSaskie\r\nSaskiin\r\nSasko\r\nSasková\r\nSaskův\r\nSaský\r\nsaský\r\nSasový\r\nSas\r\nsasův\r\nSaša\r\nSaša\r\nSašin\r\nSašův\r\nSatalice\r\nsatalický\r\nsatanáš\r\nsatanášův\r\nsatanismus\r\nsatanista\r\nsatanistčin\r\nsatanistický\r\nsatanistka\r\nsatanistův\r\nsatan\r\nsatanský\r\nsatanštější\r\nsatanův\r\nsát\r\nsatelit\r\nsatelitní\r\nsatelitový\r\nsatén\r\nsaténový\r\nsatinovací\r\nsatinování\r\nsatinovaný\r\nsatinovat\r\nsatira\r\nsatirický\r\nsatirička\r\nsatiričtější\r\nsatiričtější\r\nsatirik\r\nsatirikův\r\nsatirizování\r\nsatirizovaný\r\nsatirizovat\r\nsatirizující\r\nsatisfakce\r\nsát\r\nSatoriová\r\nSatori\r\nSatoriův\r\nSatrapa\r\nSatrapová\r\nSatrap\r\nSatrapův\r\nsaturace\r\nsaturejka\r\nsaturnálie\r\nSaturnem\r\nSaturn\r\nSaturnin\r\nSaturninův\r\nSaturnův\r\nsaturování\r\nsaturovaný\r\nsaturovat\r\nsaturovávání\r\nsaturovávaný\r\nsaturovávat\r\nsatyr\r\nsatyrský\r\nsatyrštější\r\nsatyrův\r\nsátý\r\nSaudek\r\nSaudková\r\nSaudkův\r\nSaudská\r\nsaudskoarabský\r\nSauerová\r\nSauer\r\nSauerův\r\nsauna\r\nsauternský\r\nSauvignon\r\nsavana\r\nSáva\r\nsavcovitý\r\nsavcův\r\nsavčí\r\nsavec\r\nsavější\r\nSavický\r\nSavín\r\nsavínský\r\nsavka\r\nSavojsko\r\nSavojský\r\nSávův\r\nsavý\r\nSaxlová\r\nSaxl\r\nSaxlův\r\nsaxofon\r\nsaxofonista\r\nsaxofonistčin\r\nsaxofonistka\r\nsaxofonistův\r\nsaxofonový\r\nsaxonský\r\nSazama\r\nSazamová\r\nSazam\r\nSazamův\r\nsazárna\r\nSázava\r\nSázavka\r\nsázavský\r\nsazba\r\nsazbový\r\nsazebník\r\nsazební\r\nsázecí\r\nsázeččin\r\nsazečka\r\nsázečka\r\nsazečský\r\nsazeč\r\nsázeč\r\nsazečův\r\nsázečův\r\nsázející\r\nSazená\r\nsázenější\r\nsazenice\r\nsazenička\r\nsázení\r\nsázenka\r\nsazenský\r\nsázený\r\nsázet\r\nsaze\r\nsázící\r\nsázítko\r\nsázkař\r\nsázkařův\r\nsazka\r\nsázka\r\nsázkový\r\nSazomín\r\nsazomínský\r\nSazovice\r\nsazovický\r\nsazovitý\r\nsazový\r\nSb\r\nsbalenější\r\nsbalení\r\nsbalený\r\nsbalit\r\nsbalitelnější\r\nsbalitelný\r\nsbalovanější\r\nsbalování\r\nsbalovaný\r\nsbalovat\r\nsbalovávání\r\nsbalovávaný\r\nsbalovávat\r\nsbalující\r\nsběh\r\nsběhlejší\r\nsběhlý\r\nsběhnout\r\nsběhnutí\r\nsběhnutý\r\nsběrací\r\nsběračka\r\nsběračský\r\nsběrač\r\nsběračův\r\nsběratelčin\r\nsběratelka\r\nsběratelský\r\nsběratelství\r\nsběratelštější\r\nsběratel\r\nsběratelův\r\nsběr\r\nsběrna\r\nsběrnice\r\nsběrnicový\r\nsběrný\r\nsběrový\r\nsběř\r\nsbíhající\r\nsbíhanější\r\nsbíhání\r\nsbíhaný\r\nsbíhat\r\nsbíhávání\r\nsbíhávaný\r\nsbíhávat\r\nsbíhavější\r\nsbíhavý\r\nsbíhavý\r\nsbíjecí\r\nsbíječka\r\nsbíjení\r\nsbíjený\r\nsbíjet\r\nsbírající\r\nsbíranější\r\nsbírání\r\nsbíraný\r\nsbírat\r\nsbírávat\r\nsbírečka\r\nsbírka\r\nsbírkový\r\nsbít\r\nsbití\r\nsbit\r\nsbitý\r\nsblížení\r\nsblížený\r\nsblížit\r\nsbližovací\r\nsbližování\r\nsbližovat\r\nsbližující\r\nsbohem\r\nsboj\r\nsbor\r\nsborista\r\nsboristčin\r\nsboristka\r\nsboristův\r\nsborka\r\nsbormistr\r\nsbormistrův\r\nsborná\r\nsborníček\r\nsborník\r\nsborníkový\r\nsborovější\r\nsborovna\r\nsborový\r\nsbratřenější\r\nsbratření\r\nsbratřený\r\nsbratřit\r\nsbratřovací\r\nsbratřování\r\nsbratřovaný\r\nsbratřovat\r\nsbratřovávat\r\nsbrousit\r\nsbroušenější\r\nsbroušený\r\nsbrušovanější\r\nsbrušování\r\nsbrušovaný\r\nsbrušovat\r\nsbrušující\r\nscanner\r\nScarlett\r\nscat\r\nscatující\r\nscedit\r\nscelenější\r\nscelení\r\nscelený\r\nscelit\r\nscelovací\r\nscelování\r\nscelovaný\r\nscelovat\r\nscelovávání\r\nscelovávaný\r\nscelovávat\r\nscelující\r\nscenárista\r\nscénárista\r\nscenáristčin\r\nscénáristčin\r\nscenáristický\r\nscenárističin\r\nscenáristika\r\nscenáristka\r\nscénáristka\r\nscenáristův\r\nscénáristův\r\nscénář\r\nscéna\r\nscenerie\r\nscenérie\r\nscénický\r\nscéničtější\r\nscénka\r\nscénografčin\r\nscénografický\r\nscénografie\r\nscénografka\r\nscénograf\r\nscénografův\r\nscénový\r\nscentrování\r\nscentrovaný\r\nscentrovat\r\nscentrovávat\r\nscestí\r\nscestnější\r\nscestný\r\nscestovalejší\r\nscestovalý\r\nscestovat\r\nscezení\r\nscezený\r\nscezovací\r\nscezování\r\nscezovaný\r\nscezovat\r\nscience\r\nscience\r\nscientismus\r\nscientista\r\nscientistčin\r\nscientistický\r\nscientistka\r\nscientistův\r\nscifista\r\nscifistčin\r\nscifistka\r\nscifistův\r\nscintigrafický\r\nscípání\r\nscípat\r\nScott\r\nScottův\r\nscrapie\r\nscreening\r\nscreeningový\r\nSCSI\r\nscuchání\r\nscuchaný\r\nscuchat\r\nscuchávat\r\nscválání\r\nscválat\r\nscválávání\r\nscválávat\r\nscvrkání\r\nscvrkaný\r\nscvrkat\r\nscvrkávající\r\nscvrkávání\r\nscvrkávat\r\nscvrklejší\r\nscvrklý\r\nscvrknout\r\nscvrknutí\r\nscvrknutý\r\nscvrknuvší\r\nscvrnkávání\r\nscvrnkávaný\r\nscvrnkávat\r\nscvrnknout\r\nscvrnknutí\r\nscvrnknutý\r\nSČ\r\nsčesanější\r\nsčesání\r\nsčesaný\r\nsčesat\r\nsčesávání\r\nsčesávaný\r\nsčesávat\r\nsčetlý\r\nsčísnout\r\nsčítací\r\nsčítačka\r\nsčítající\r\nsčítanec\r\nsčítání\r\nsčítaný\r\nsčitatelnější\r\nsčitatelný\r\nsčítat\r\nsčot\r\nsčutnout\r\nsčutnutí\r\nsčutnutý\r\nSDA\r\nsdělenější\r\nsdělení\r\nsdělený\r\nsdělit\r\nsdělitelnější\r\nsdělitelný\r\nsdělnější\r\nsdělný\r\nsdělovací\r\nsdělovač\r\nsdělovačův\r\nsdělovanější\r\nsdělování\r\nsdělovaný\r\nsdělovat\r\nsdělovatelnější\r\nsdělovatelný\r\nsdělovávání\r\nsdělovávaný\r\nsdělovávat\r\nsdělující\r\nsdílející\r\nsdílení\r\nsdílený\r\nsdílet\r\nsdílitelnější\r\nsdílitelný\r\nsdílnější\r\nsdílný\r\nsdíranější\r\nsdírání\r\nsdíraný\r\nsdíratelnější\r\nsdíratelný\r\nsdírat\r\nsdostatek\r\nsdrápkový\r\nsdrátování\r\nsdrátovaný\r\nsdrátovat\r\nsdruženář\r\nsdruženářův\r\nsdruženější\r\nsdružení\r\nsdružený\r\nsdružit\r\nsdružovací\r\nsdružování\r\nsdružovaný\r\nsdružovat\r\nsdružující\r\nse\r\nSEA\r\nseaborgium\r\nseance\r\nSeattle\r\nSeba\r\nsebe\r\nsebeabsurdnější\r\nsebeanalýza\r\nsebeaplikace\r\nsebebulvárnější\r\nsebecítění\r\nsebecit\r\nsebečastější\r\nsebečernější\r\nsebečistící\r\nsebedarování\r\nsebedefinice\r\nsebedefinování\r\nsebedelší\r\nsebedestruktivní\r\nsebedeterminující\r\nsebedistance\r\nsebedokonalejší\r\nsebedomestikace\r\nsebedražší\r\nsebedrobnější\r\nsebedůmyslnější\r\nsebedůstojnější\r\nsebedůvěra\r\nsebedůvěrnější\r\nsebeevaluace\r\nsebegeniálnější\r\nseběhání\r\nseběhaný\r\nseběhat\r\nsebehezčí\r\nsebehlasitější\r\nsebehlučnější\r\nseběhnout\r\nseběhnutí\r\nseběhnutý\r\nsebehodnocení\r\nsebehodnotící\r\nsebehorší\r\nseběhovější\r\nseběhový\r\nsebehruběji\r\nsebehrubší\r\nsebehůře\r\nsebechvála\r\nsebechytřejší\r\nsebeidentifikace\r\nsebeintenzívnější\r\nsebeironie\r\nsebeironizující\r\nsebejednodušeji\r\nsebejednodušší\r\nsebejistější\r\nsebejistota\r\nsebejistý\r\nsebekatoličtější\r\nsebekázeň\r\nsebeklam\r\nsebekoncentrovanější\r\nsebekontrola\r\nsebekonzervativnější\r\nsebekorigující\r\nsebekrásnější\r\nsebekritický\r\nsebekritičtější\r\nsebekritika\r\nsebekultivace\r\nsebekultivační\r\nsebekvalitnější\r\nsebelákavější\r\nsebeláska\r\nsebelehčí\r\nsebelépe\r\nsebelepší\r\nsebelibější\r\nsebeliberálnější\r\nsebelítost\r\nsebelitování\r\nsebeméně\r\nsebemenší\r\nsebemilovanější\r\nsebemladší\r\nsebemocnější\r\nsebemoudřejší\r\nsebemrskačství\r\nsebemučení\r\nsebemučivější\r\nsebemučivý\r\nsebenapínavější\r\nsebenaplňující\r\nsebenáprava\r\nsebenáročnější\r\nsebenepatrnější\r\nsebenepravděpodobnější\r\nsebenešikovnější\r\nsebeničivější\r\nsebeničivý\r\nsebeobdiv\r\nsebeobelhávající\r\nsebeobětavý\r\nsebeoběť\r\nsebeobětování\r\nsebeobětující\r\nsebeobhajování\r\nsebeobjevování\r\nsebeobnažující\r\nsebeobrana\r\nsebeobraz\r\nsebeobrozující\r\nsebeobsluha\r\nsebeobslužný\r\nsebeobviňující\r\nsebeočista\r\nsebeodevzdání\r\nsebeodhalování\r\nsebeodvážnější\r\nsebeomezující\r\nsebeoprávněnější\r\nsebeorganizace\r\nsebeospravedlňující\r\nsebeotevření\r\nsebeovládající\r\nsebeovládání\r\nsebeoznačení\r\nsebeparodující\r\nsebepečlivější\r\nsebepěknější\r\nsebepěstování\r\nsebepitomější\r\nsebepodceňování\r\nsebepodceňující\r\nsebepodivnější\r\nsebepochopení\r\nsebepojetí\r\nsebepokrokovější\r\nsebepopírající\r\nsebeposuzování\r\nsebepoškozující\r\nsebepotrhlejší\r\nsebepotvrzení\r\nsebepotvrzující\r\nsebepozitivnější\r\nsebepoznání\r\nsebepoznávací\r\nsebepoznávání\r\nsebepozorování\r\nsebepožírající\r\nsebepreciznější\r\nsebeprezentační\r\nsebeprimitivnější\r\nsebeproblematičtější\r\nsebeprojekce\r\nsebeprosazení\r\nsebeprosazování\r\nsebepředvádění\r\nsebepřemáhání\r\nsebepřijetí\r\nseberealizace\r\nseberealizovanější\r\nseberealizování\r\nseberealizovaný\r\nseberealizovat\r\nseberealizující\r\nsebereflektující\r\nsebereflexe\r\nseberegulace\r\nseberegulující\r\nseberovnější\r\nseberozumnější\r\nseberozvoj\r\nseberušnější\r\nseberychlejší\r\nsebeřízení\r\nsebesdílení\r\nsebeshazovačný\r\nsebesilnější\r\nsebeskrytější\r\nsebeskvělejší\r\nsebeslavnější\r\nsebesložitější\r\nsebesplňující\r\nsebespráva\r\nsebestarší\r\nsebestimulace\r\nsebestručnější\r\nsebestředný\r\nseběstředný\r\nsebesugestivnější\r\nsebesvědomitější\r\nsebesvobodnější\r\nsebesystém\r\nsebešikovnější\r\nsebetalentovanější\r\nsebetranscendující\r\nsebetrápení\r\nsebetrénink\r\nsebetrýznění\r\nsebetrýzněný\r\nsebetrýznit\r\nsebetrýznivý\r\nsebetvorba\r\nsebetvoření\r\nsebeúcta\r\nsebeučení\r\nsebeúčinnější\r\nsebeudržovací\r\nsebeukájení\r\nsebeukázněný\r\nsebeukojení\r\nsebeupálení\r\nsebeuplatnění\r\nsebeupřímnější\r\nsebeurčení\r\nsebeusilovnější\r\nsebeusměrnění\r\nsebeuspokojení\r\nsebeuspokojivý\r\nsebeutvářející\r\nsebeuvědomění\r\nsebeuvědomování\r\nsebeuzavření\r\nsebeuzdravení\r\nsebeúzdravný\r\nsebevážnější\r\nsebevědomější\r\nsebevědomí\r\nsebevědomý\r\nsebevětší\r\nsebevíc\r\nsebevíce\r\nsebevláda\r\nsebevrah\r\nsebevrahův\r\nsebevražda\r\nsebevražedkyně\r\nsebevražedkynin\r\nsebevražednice\r\nsebevražedničin\r\nsebevražedný\r\nsebevšednější\r\nsebevýchova\r\nsebevýchovný\r\nsebevyjádření\r\nsebevyjádřený\r\nsebevyjádřit\r\nsebevymezovací\r\nsebevymezující\r\nsebevýraz\r\nsebevyspělejší\r\nsebevyvracející\r\nsebevzdělání\r\nsebevzdělávání\r\nsebevzdělávaný\r\nsebevzdělávat\r\nsebevztahovačný\r\nsebezahleděný\r\nsebezáhuba\r\nsebezáchova\r\nsebezáchovnější\r\nsebezáchovný\r\nsebezajímavější\r\nsebezapírající\r\nsebezapírání\r\nsebezapíravý\r\nsebezápor\r\nsebezapření\r\nsebezaslouženější\r\nsebezdírající\r\nsebezdokonalování\r\nsebezkoumání\r\nsebezkušenostní\r\nsebezlepšování\r\nsebeznámější\r\nsebezničení\r\nsebezničující\r\nsebezodpovědný\r\nsebezpřítomnění\r\nsebezpytný\r\nsebezpytování\r\nsebezpytující\r\nsebezvnějšnění\r\nsebežádoucnější\r\nsebíhající\r\nsebíhání\r\nsebíhaný\r\nsebíhat\r\nsebíhávání\r\nsebíhávaný\r\nsebíhávat\r\nsebou\r\nsebranější\r\nSebranice\r\nsebranický\r\nsebraní\r\nsebrání\r\nsebranka\r\nsebránka\r\nsebraný\r\nsebrat\r\nsec\r\nSECAM\r\nsecco\r\nsecese\r\nsecesionista\r\nsecesionistčin\r\nsecesionistka\r\nsecesionistův\r\nsecesní\r\nsecí\r\nsecí\r\nsecvičenější\r\nsecvičení\r\nsecvičený\r\nsecvičit\r\nsecvičování\r\nsecvičovaný\r\nsecvičovat\r\nsecvičující\r\nSEČ\r\nsečení\r\nsečen\r\nsečený\r\nsečíst\r\nsečítací\r\nsečítání\r\nsečítaný\r\nsečítat\r\nsečkání\r\nsečkat\r\nsečkávání\r\nsečkávat\r\nsečka\r\nsečna\r\nsečný\r\nsečtělejší\r\nsečtělý\r\nsečtelý\r\nsečtenější\r\nsečtení\r\nsečtený\r\nsečuánský\r\nseču\r\nseč\r\nsedací\r\nsedačka\r\nsedačkový\r\nsedadlo\r\nsedadlový\r\nsedající\r\nsedák\r\nsedan\r\nsedání\r\nsedánka\r\nsedativum\r\nsedat\r\nsedátko\r\nsedávání\r\nsedávat\r\nsedavější\r\nsedavý\r\nSedčice\r\nsedčický\r\nsedě\r\nsedění\r\nsedění\r\nsedět\r\nsed\r\nsedící\r\nsedimentace\r\nsedimentační\r\nsedimentární\r\nsediment\r\nsedimentologie\r\nsedimentovat\r\nsedimentující\r\nsedisvakance\r\nsedívání\r\nsedívaný\r\nsedívat\r\nsedlácký\r\nsedlaččin\r\nSedláček\r\nsedlačení\r\nsedlačit\r\nsedlačka\r\nSedláčková\r\nSedláčkův\r\nsedláčtější\r\nSedlaková\r\nSedláková\r\nsedlák\r\nSedlak\r\nSedlák\r\nSedlakův\r\nSedlákův\r\nsedlákův\r\nsedlání\r\nsedlaný\r\nSedlaříková\r\nSedlařík\r\nSedlaříkův\r\nSedlářová\r\nsedlářský\r\nsedlářství\r\nsedlář\r\nSedlář\r\nSedlářův\r\nsedlářův\r\nsedlat\r\nsedlávání\r\nsedlávaný\r\nsedlávat\r\nsedlčanský\r\nSedlčany\r\nsedlecký\r\nSedlec\r\nSedlečko\r\nSedlejov\r\nsedlejovský\r\nSedletín\r\nsedletínský\r\nSedlice\r\nSedlice\r\nsedlický\r\nsedlina\r\nSedliště\r\nsedlišťský\r\nSedlmajerová\r\nSedlmajer\r\nSedlmajerův\r\nSedlnice\r\nsedlnický\r\nSedlnický\r\nsedlo\r\nSedloňová\r\nSedloňov\r\nsedloňovský\r\nSedloň\r\nSedloňův\r\nsedlovitý\r\nsedlový\r\nsedlý\r\nsedmaččin\r\nsedmačka\r\nsedmačtyřicetikilometrový\r\nsedmačtyřicetiminutový\r\nsedmadvacetihektarový\r\nsedmadvacetimiliardový\r\nsedmadvacetiminutový\r\nsedmadvacetipatrový\r\nsedmadvacetisvazkový\r\nsedmák\r\nsedmákův\r\nsedmapadesátiminutový\r\nsedmasedmdesátiminutový\r\nsedmašedesátistránkový\r\nsedmatřicetihodinový\r\nsedmatřicetistupňový\r\nsedma\r\nsedmdesátero\r\nsedmdesátery\r\nsedmdesáterý\r\nsedmdesaterý\r\nsedmdesát\r\nsedmdesáticentimetrový\r\nsedmdesátice\r\nsedmdesátikilometrový\r\nsedmdesátikilový\r\nsedmdesátiletý\r\nsedmdesátilitrový\r\nsedmdesátimetrový\r\nsedmdesátimilimetrový\r\nsedmdesátimilionový\r\nsedmdesátimiliónový\r\nsedmdesátiminutový\r\nsedmdesátinásobný\r\nsedmdesátina\r\nsedmdesátiprocentní\r\nsedmdesátistránkový\r\nsedmdesátistupňový\r\nsedmdesátitisícovka\r\nsedmdesátitisícový\r\nsedmdesátitunový\r\nsedmdesátka\r\nsedmdesátkrát\r\nsedmdesátnice\r\nsedmdesátničin\r\nsedmdesátník\r\nsedmdesátníkův\r\nsedmdesátý\r\nsedmerče\r\nsedmero\r\nsedmero\r\nsedmeronásobný\r\nsedmery\r\nsedmerý\r\nsedm\r\nsedmibajtový\r\nsedmibarevný\r\nsedmibitový\r\nsedmibodový\r\nsedmibodový\r\nsedmibojař\r\nsedmibojařův\r\nsedmiboj\r\nsedmiboký\r\nSedmibolestný\r\nsedmibolestný\r\nsedmibrankový\r\nsedmicentimetrový\r\nsedmice\r\nsedmiciferný\r\nsedmička\r\nsedmičkový\r\nsedmičlenný\r\nsedmidenní\r\nsedmidesetibytový\r\nsedmidílný\r\nsedmihektarový\r\nsedmihlásek\r\nsedmihlavý\r\nsedmihodinový\r\nSedmihradsko\r\nsedmihradský\r\nsedmikanálový\r\nsedmikilometrový\r\nsedmikilometrový\r\nsedmikilový\r\nsedmikolový\r\nsedmikorunový\r\nsedmikrása\r\nsedmikráska\r\nsedmiletka\r\nsedmiletý\r\nsedmilitrový\r\nsedmilůžkový\r\nsedmimarkový\r\nsedmiměsíční\r\nsedmimetrový\r\nsedmimetrový\r\nsedmimiliardový\r\nsedmimilimetrový\r\nsedmimiliónový\r\nsedmimilionový\r\nsedmimílový\r\nsedmiminutový\r\nsedmimocný\r\nsedminásobek\r\nsedminásobný\r\nsedmina\r\nsedminka\r\nsedmiocasý\r\nsedmipatrový\r\nsedmipísmenný\r\nsedmiposchoďový\r\nsedmiramenný\r\nsedmiroční\r\nsedmiřádkový\r\nsedmisekundový\r\nsedmisemestrový\r\nsedmisetdolarový\r\nsedmisethektarový\r\nsedmisethlavý\r\nsedmisetkilogramový\r\nsedmisetkorunový\r\nsedmisetmilionový\r\nsedmisetmiliónový\r\nsedmisetstránkový\r\nsedmisettisícový\r\nsedmistovka\r\nsedmistránkový\r\nsedmistrunný\r\nsedmistupňový\r\nsedmistý\r\nsedmisvazkový\r\nsedmitečný\r\nsedmitisící\r\nsedmitisícovka\r\nsedmitisícový\r\nsedmitřídní\r\nsedmitunový\r\nsedmitýdenní\r\nsedmivrstvový\r\nsedmivrstvý\r\nsedmiznakový\r\nsedmkrát\r\nsedmkráte\r\nsedmnáctero\r\nsedmnácteronásobný\r\nsedmnáctery\r\nsedmnácterý\r\nsedmnáct\r\nsedmnáctibodový\r\nsedmnáctibodový\r\nsedmnáctice\r\nsedmnáctičlenný\r\nsedmnáctihektarový\r\nsedmnáctihlavý\r\nsedmnáctihodinový\r\nsedmnáctikilometrový\r\nsedmnáctikorunový\r\nsedmnáctiletý\r\nsedmnáctimetrový\r\nsedmnáctimiliardový\r\nsedmnáctimilionový\r\nsedmnáctimiliónový\r\nsedmnáctiminutový\r\nsedmnáctinásobný\r\nsedmnáctina\r\nsedmnáctipatrový\r\nsedmnáctistránkový\r\nsedmnáctitisícový\r\nsedmnáctiznakový\r\nsedmnáctka\r\nsedmnáctkový\r\nsedmnáctkrát\r\nsedmnáctkráte\r\nsedmnáctý\r\nsedmsetletý\r\nsedmý\r\nsednice\r\nsednička\r\nsednout\r\nsednutí\r\nsedranější\r\nsedraní\r\nsedrání\r\nsedraný\r\nsedrat\r\nsedra\r\nsedřenější\r\nsedření\r\nsedřený\r\nsedřít\r\nSeemanová\r\nSeeman\r\nSeemanův\r\nSegedín\r\nsegedínský\r\nsegmentace\r\nsegmentační\r\nsegment\r\nsegmentování\r\nsegmentovaný\r\nsegmentovat\r\nsegmentový\r\nségra\r\nsegregace\r\nsegregační\r\nsegregování\r\nsegregovaný\r\nsegregovat\r\nsehnal\r\nSehnalová\r\nSehnal\r\nSehnalův\r\nsehnanější\r\nsehnání\r\nsehnán\r\nsehnaný\r\nsehnatelnější\r\nsehnatelný\r\nsehnat\r\nsehnout\r\nsehnutější\r\nsehnutí\r\nsehnutý\r\nSehořová\r\nSehoř\r\nSehořův\r\nsehranější\r\nsehrání\r\nsehraný\r\nsehrát\r\nsehrávající\r\nsehrávanější\r\nsehrávání\r\nsehrávaný\r\nsehrávat\r\nsehrávka\r\nSechovský\r\nSeidelová\r\nSeidel\r\nSeidelův\r\nSeidlová\r\nSeidl\r\nSeidlův\r\nSeifertová\r\nSeifert\r\nSeifertův\r\nSeifrtová\r\nSeifrt\r\nSeifrtův\r\nseismicita\r\nseismický\r\nseismičtější\r\nseismologický\r\nseismologičtější\r\nseismologie\r\nseismolog\r\nseismologův\r\nseismoložčin\r\nseismoložka\r\nseizmický\r\nseizmičtější\r\nseizmograf\r\nseizmografický\r\nSejáková\r\nSeják\r\nSejákův\r\nsejčkovat\r\nsejda\r\nsejdu\r\nsejf\r\nseji\r\nsejít\r\nsejití\r\nSejkora\r\nSejkorová\r\nSejkorův\r\nSejková\r\nSejk\r\nSejkův\r\nsejmout\r\nsejmový\r\nsejmu\r\nsejmutí\r\nsejmut\r\nSEK\r\nsekací\r\nsekáček\r\nsekačka\r\nsekáč\r\nsekáčův\r\nsekající\r\nSekalová\r\nSekal\r\nSekalův\r\nsekanější\r\nSekanina\r\nsekanina\r\nSekaninová\r\nSekaninův\r\nsekání\r\nsekans\r\nsekanta\r\nsekaný\r\nsekaný\r\nsekat\r\nsekávání\r\nsekávaný\r\nsekávat\r\nsekavcův\r\nsekavec\r\nsekce\r\nsekcionální\r\nsekční\r\nSekera\r\nsekera\r\nSekerka\r\nsekerka\r\nSekerková\r\nSekerkův\r\nsekerničtější\r\nsekeromlat\r\nSekerová\r\nsekerovitý\r\nsekerový\r\nSekerův\r\nsek\r\nsekl\r\nseknout\r\nseknutí\r\nseknutí\r\nseknutý\r\nsekrece\r\nsekreční\r\nsekretariát\r\nsekretářčin\r\nsekretářka\r\nsekretářský\r\nsekretář\r\nsekretářův\r\nsekret\r\nsektářčin\r\nsektářka\r\nsektářský\r\nsektářství\r\nsektářštější\r\nsektář\r\nsektářův\r\nsekta\r\nsekt\r\nsektorální\r\nsektor\r\nsektorový\r\nsektový\r\nsekularismus\r\nsekularizace\r\nsekularizování\r\nsekularizovaný\r\nsekularizovat\r\nsekulární\r\nSekulová\r\nSekul\r\nSekulův\r\nsekund\r\nsekunda\r\nsekundánčin\r\nsekundánka\r\nsekundán\r\nsekundant\r\nsekundantův\r\nsekundánův\r\nsekundárnější\r\nsekundární\r\nsekundářčin\r\nsekundářka\r\nsekundář\r\nsekundářův\r\nsekundista\r\nsekundistčin\r\nsekundistka\r\nsekundistův\r\nsekundování\r\nsekundovat\r\nsekundový\r\nsekvencer\r\nsekvence\r\nsekvenční\r\nsekvojovec\r\nsekvoj\r\nSekyra\r\nsekyra\r\nsekyrka\r\nsekýrování\r\nsekýrovaný\r\nsekýrovat\r\nsekýrovávat\r\nSekyrová\r\nsekyrový\r\nsekýrující\r\nSekyrův\r\nseladon\r\nseladonův\r\nselanka\r\nselankovitý\r\nselátko\r\nSELČ\r\nsele\r\nselekce\r\nselekční\r\nselektivita\r\nselektivnější\r\nselektivní\r\nselektor\r\nselektorový\r\nselektování\r\nselektovat\r\nselenan\r\nselen\r\nseleničitan\r\nseleničitý\r\nselenid\r\nselenocentrický\r\nselenový\r\nselénový\r\nSeletice\r\nseletický\r\nselfaktor\r\nselfmanagement\r\nselhal\r\nselhání\r\nselhat\r\nselhávající\r\nselhávání\r\nselhávat\r\nselhávka\r\nselka\r\nSelmice\r\nselmický\r\nsel\r\nselský\r\nselštější\r\nselžu\r\nsem\r\nsemafor\r\nsemaforový\r\nsemaforský\r\nséma\r\nSemanová\r\nSeman\r\nsémantém\r\nsémantický\r\nsémantičtější\r\nsémantika\r\nSemanův\r\nsémaziologický\r\nsémaziologie\r\nSemčice\r\nsemčický\r\nsémě\r\nsemelu\r\nsemenáček\r\nsemenačka\r\nsemenáč\r\nsemenářčin\r\nsemenářka\r\nsemenářský\r\nsemenářství\r\nsemenář\r\nsemenářův\r\nSemencová\r\nSemencův\r\nsemene\r\nsemenec\r\nSemenec\r\nsemeník\r\nsemeníkový\r\nsemeniště\r\nsemenný\r\nsemeno\r\nSemerádová\r\nSemerád\r\nSemerádův\r\nSemeráková\r\nSemerák\r\nSemerákův\r\nsemestrální\r\nsemestr\r\nsemestrový\r\nsemetrika\r\nsém\r\nsemhle\r\nsemiadaptivní\r\nSemice\r\nsemický\r\nsemidefinitní\r\nsemifinále\r\nsemifinalista\r\nsemifinalistčin\r\nsemifinalistka\r\nsemifinalistův\r\nsemifinálový\r\nsemigrafický\r\nsemigrafika\r\nsemikomplement\r\nsemikonsonant\r\nsemikřehký\r\nsemikvantitativní\r\nsemílat\r\nsemilogaritmický\r\nSemilsko\r\nsemilský\r\nSemily\r\nsemimikroaparatura\r\nsemimikroměřítko\r\nsemimodulární\r\nseminarista\r\nseminaristčin\r\nseminaristka\r\nseminaristův\r\nseminárka\r\nseminární\r\nseminář\r\nseminářský\r\nsemínko\r\nsemínkový\r\nSemín\r\nsemínský\r\nsémiologický\r\nsémiologie\r\nsémiolog\r\nsémiologův\r\nsémioložčin\r\nsémioložka\r\nsémiotický\r\nsémiotika\r\nSemirádová\r\nSemirád\r\nSemirádův\r\nsemiretinovaný\r\nsemiška\r\nsemišovací\r\nsemišování\r\nsemišovaný\r\nsemišovat\r\nsemišový\r\nsemiš\r\nsemita\r\nsemitismus\r\nsemitohamitský\r\nsemitový\r\nsemitský\r\nsemitův\r\nsemivokál\r\nsemivolatilní\r\nsemknout\r\nsemknutí\r\nsemknutý\r\nsemlel\r\nsemlení\r\nsemletější\r\nsemletí\r\nsemlet\r\nsemletý\r\nsemletý\r\nsemlít\r\nsemočinný\r\nsémoglyf\r\nSémová\r\nSém\r\nSemrádová\r\nSemrád\r\nSemrádův\r\nsemtex\r\nSémův\r\nsen\r\nsenař\r\nsenařův\r\nsenát\r\nsenátní\r\nsenátorčin\r\nsenátorka\r\nsenátor\r\nsenátorský\r\nsenátorův\r\nsenážování\r\nsenáž\r\nsenderista\r\nsenderistčin\r\nsenderistka\r\nsenderistův\r\nSendražice\r\nsendražický\r\nsendvičový\r\nsendvič\r\nSeneca\r\nsenecký\r\nSenec\r\nSenecův\r\nSenegalčin\r\nSenegalec\r\nSenegal\r\nSenegalka\r\nsenegalský\r\nSenetářov\r\nsenetářovský\r\nSenica\r\nSenice\r\nsenický\r\nSenička\r\nseník\r\nsenilita\r\nsenilnější\r\nsenilní\r\nSeninka\r\nseniorát\r\nseniorátní\r\nseniorčin\r\nseniorka\r\nsenior\r\nseniorský\r\nseniorštější\r\nseniorův\r\nsení\r\nsenný\r\nSenohraby\r\nSenomaty\r\nseno\r\nsenonský\r\nseňor\r\nseňorův\r\nsenoseč\r\nsenový\r\nSenožaty\r\nsen\r\nsensace\r\nsensačnější\r\nsensitivnější\r\nsensomotorický\r\nsensorium\r\nsensualističtější\r\nsentence\r\nsentimentalismus\r\nsentimentalista\r\nsentimentalistčin\r\nsentimentalistický\r\nsentimentalistka\r\nsentimentalistův\r\nsentimentalita\r\nsentimentálnější\r\nsentimentální\r\nsentiment\r\nsenzacechtivější\r\nsenzacechtivý\r\nsenzacechtivý\r\nsenzacemilovný\r\nsenzace\r\nsenzační\r\nsenzibilita\r\nsenzibilizace\r\nsenzibilizování\r\nsenzibilizovaný\r\nsenzibilizovat\r\nsenzibilizující\r\nsenzibilnější\r\nsenzibilní\r\nsenzibilování\r\nsenzibilovaný\r\nsenzibilovat\r\nsenzibil\r\nsenzibilův\r\nsenzitivita\r\nsenzitivnější\r\nsenzitivní\r\nsenzomotorický\r\nsenzomotorika\r\nsenzor\r\nsenzorický\r\nsenzoričtější\r\nsenzorika\r\nsenzorový\r\nsenzualismus\r\nsenzualista\r\nsenzualistčin\r\nsenzualistický\r\nsenzualistka\r\nsenzualistův\r\nsenzualita\r\nsenzuálnější\r\nseparabilita\r\nseparabilní\r\nseparace\r\nseparační\r\nseparát\r\nseparatismus\r\nseparatista\r\nseparatistčin\r\nseparatistický\r\nseparatističtější\r\nseparatistka\r\nseparatistův\r\nseparátní\r\nseparátor\r\nseparovanější\r\nseparování\r\nseparovaný\r\nseparovat\r\nseparovatelný\r\nseparovávání\r\nseparovávaný\r\nseparovávat\r\nseparující\r\nSepekov\r\nsepekovský\r\nsepětí\r\nsépie\r\nsepínání\r\nsepínaný\r\nsepínat\r\nsépiový\r\nsepisovanější\r\nsepisování\r\nsepisovaný\r\nsepisovat\r\nsepisující\r\nsepíši\r\nsepíšu\r\nsepjatější\r\nsepjatý\r\nsepjatý\r\nsepnout\r\nsepnutější\r\nsepnutí\r\nsepnutý\r\nsepranější\r\nseprání\r\nsepraný\r\nseprat\r\nsepředení\r\nsepředený\r\nsepříst\r\nsepsal\r\nsepsanější\r\nsepsanější\r\nsepsání\r\nsepsán\r\nsepsaný\r\nsepsáný\r\nsepsat\r\nsepse\r\nsepsout\r\nseptakord\r\nseptakordový\r\nseptet\r\nseptický\r\nseptičtější\r\nseptikemie\r\nseptikémie\r\nseptik\r\nseptiliarda\r\nseptilion\r\nseptimánčin\r\nseptimánka\r\nseptimán\r\nseptimánův\r\nseptima\r\nseptimový\r\nseptonex\r\nSerafínčin\r\nSerafínka\r\nserafín\r\nserafínský\r\nserafínův\r\nsérak\r\nsérakový\r\nSerbousek\r\nSerbousková\r\nSerbouskův\r\nserenáda\r\nserepetička\r\nSeret\r\nserfování\r\nseriál\r\nserializovaný\r\nserializovatelný\r\nseriálovější\r\nseriálový\r\nsericit\r\nsericitový\r\nsérie\r\nserioso\r\nsériovější\r\nsériový\r\nserioznější\r\nserióznější\r\nseriozní\r\nseriózní\r\nsériózní\r\nséroaglutinace\r\nsérologický\r\nserotonin\r\nserotoninový\r\nsérotyp\r\nsérový\r\nserózní\r\nserpentima\r\nserpentina\r\nserpentinit\r\nserpentinitový\r\nserpentinový\r\nSerrault\r\nSerraultův\r\nsérum\r\nsérumneutralizační\r\nServác\r\nServácův\r\nservanější\r\nservaní\r\nservání\r\nservaný\r\nservat\r\nservávání\r\nservávaný\r\nservávat\r\nserver\r\nserverový\r\nservilita\r\nservilnější\r\nservilní\r\nServinský\r\nservírka\r\nservírovací\r\nservírování\r\nservírovaný\r\nservírovaný\r\nservírovat\r\nservírovávat\r\nservírující\r\nservis\r\nserviska\r\nservisní\r\nservisový\r\nservítek\r\nservítový\r\nServít\r\nServítův\r\nservomechanismus\r\nservomotorek\r\nservomotor\r\nservo\r\nservonásobička\r\nservopohon\r\nservořízení\r\nseržantčin\r\nseržantka\r\nseržant\r\nseržantův\r\nserž\r\nseřadění\r\nseřaděný\r\nseřadící\r\nseřadiště\r\nseřadit\r\nseřaditelnější\r\nseřaditelný\r\nseřaďovací\r\nseřaďování\r\nseřaďovat\r\nseřazenější\r\nseřazení\r\nseřazený\r\nseřazovanější\r\nseřazování\r\nseřazovaný\r\nseřazovat\r\nseřazovatelnější\r\nseřazovatelný\r\nseřezanější\r\nseřezání\r\nseřezaný\r\nseřezat\r\nseřezávací\r\nseřezávající\r\nseřezávanější\r\nseřezávání\r\nseřezávaný\r\nseřezávat\r\nseřícení\r\nseřícený\r\nseřídit\r\nseřiditelnější\r\nseřiditelný\r\nseřítit\r\nseřízenější\r\nseřízení\r\nseřízený\r\nseříznout\r\nseříznutější\r\nseříznutí\r\nseříznutý\r\nseříznutý\r\nseříznutý\r\nseřizovací\r\nseřizovač\r\nseřizovanější\r\nseřizování\r\nseřizovaný\r\nseřizovat\r\nseřizující\r\nseřvání\r\nseřvat\r\nseřvávání\r\nseřvávaný\r\nseřvávat\r\nses\r\nsesadit\r\nsesaditelnější\r\nsesaditelný\r\nsesazení\r\nsesazený\r\nsesazovací\r\nsesazování\r\nsesazovaný\r\nsesazovat\r\nsesbíranější\r\nsesbírání\r\nsesbíraný\r\nsesbírat\r\nsesečení\r\nsesečen\r\nsesečený\r\nseseču\r\nsesedající\r\nsesedanější\r\nsesedání\r\nsesedaný\r\nsesedat\r\nsesedávání\r\nsesedávat\r\nsesedět\r\nsesedlejší\r\nsesednout\r\nsesednutí\r\nsesekanější\r\nsesekání\r\nsesekaný\r\nsesekat\r\nsesekávání\r\nsesekávaný\r\nsesekávat\r\nsesekl\r\nseseknout\r\nseseknutí\r\nseseknutý\r\nseshora\r\nseschlejší\r\nseschlý\r\nseschnl\r\nseschnout\r\nseschnutí\r\nsesíct\r\nsesílací\r\nsesílanější\r\nsesílání\r\nsesílaný\r\nsesílat\r\nseskákanější\r\nseskákání\r\nseskákáno\r\nseskákaný\r\nseskákat\r\nseskakovanější\r\nseskakování\r\nseskakovaný\r\nseskakovat\r\nseskakovávání\r\nseskakovávaný\r\nseskakovávat\r\nseskládaný\r\nseskládat\r\nseskládávaný\r\nseskládávat\r\nseskočení\r\nseskočit\r\nseskok\r\nseskupení\r\nseskupený\r\nseskupit\r\nseskupování\r\nseskupovaný\r\nseskupovat\r\nseskupující\r\nseslal\r\nseslanější\r\nseslání\r\nseslaný\r\nseslat\r\nsesle\r\nseslička\r\nsesmažit\r\nsesmekávání\r\nsesmekávaný\r\nsesmekávat\r\nsesmeknout\r\nsesmeknutí\r\nsesmeknutý\r\nsesmilnění\r\nsesmilněný\r\nsesmilnit\r\nsesmolení\r\nsesmolený\r\nsesmolit\r\nsesmýkání\r\nsesmýkaný\r\nsesmýkat\r\nsesmýknout\r\nsesmýknutí\r\nsesout\r\nsesouvající\r\nsesouvání\r\nsesouvaný\r\nsesouvat\r\nsestávající\r\nsestávání\r\nsestávat\r\nsestava\r\nsestavenější\r\nsestavení\r\nsestavený\r\nsestavit\r\nsestavitelnější\r\nsestavitelský\r\nsestavitelův\r\nsestavovací\r\nsestavovanější\r\nsestavování\r\nsestavovaný\r\nsestavovat\r\nsestavovatelčin\r\nsestavovatelka\r\nsestavující\r\nsestehování\r\nsestěhování\r\nsestehovaný\r\nsestěhovaný\r\nsestehovat\r\nsestěhovat\r\nsestěhovávání\r\nsestěhovávaný\r\nsestěhovávat\r\nsesterský\r\nsesterštější\r\nsestoupení\r\nsestoupený\r\nsestoupit\r\nsestoupivší\r\nsestra\r\nsestrčení\r\nsestrčený\r\nsestrčit\r\nsestrkanější\r\nsestrkání\r\nsestrkaný\r\nsestrkat\r\nsestrkávání\r\nsestrkávaný\r\nsestrkávat\r\nsestrkovat\r\nsestrojení\r\nsestrojený\r\nsestrojit\r\nsestrojování\r\nsestrojovaný\r\nsestrojovat\r\nsestřelenější\r\nsestřelení\r\nsestřelený\r\nsestřelit\r\nsestřelování\r\nsestřelovaný\r\nsestřelovat\r\nsestřelovávání\r\nsestřelovávaný\r\nsestřelovávat\r\nsestřenčin\r\nsestřenice\r\nsestřenka\r\nsestřička\r\nsestřihání\r\nsestříhání\r\nsestřihaný\r\nsestříhaný\r\nsestřihat\r\nsestříhat\r\nsestřihávání\r\nsestříhávání\r\nsestřihávaný\r\nsestříhávaný\r\nsestřihávat\r\nsestříhávat\r\nsestřih\r\nsestřihnout\r\nsestřihnutí\r\nsestřihování\r\nsestřihovaný\r\nsestřihovat\r\nsestřílet\r\nsestřin\r\nsestřiný\r\nsestřižení\r\nsestřižený\r\nsestudování\r\nsestudovaný\r\nsestudovat\r\nsestupek\r\nsestup\r\nsestupnější\r\nsestupní\r\nsestupný\r\nsestupování\r\nsestupovat\r\nsestupový\r\nsestupující\r\nsestylizovat\r\nsesumírování\r\nsesumírovaný\r\nsesumírovat\r\nsesun\r\nsesunout\r\nsesunovat\r\nsesunutí\r\nsesunutý\r\nsesutější\r\nsesutí\r\nsesutý\r\nsesuv\r\nsesuvný\r\nsesvahovaný\r\nsesychající\r\nsesychání\r\nsesychat\r\nsesýchat\r\nsesynchronizování\r\nsesynchronizovaný\r\nsesynchronizovat\r\nsesypající\r\nsesypanější\r\nsesypání\r\nsesýpání\r\nsesypaný\r\nsesýpaný\r\nsesypat\r\nsesýpat\r\nsesypávající\r\nsesypávanější\r\nsesypávání\r\nsesypávaný\r\nsesypávat\r\nSEŠ\r\nsešel\r\nsešeřelejší\r\nsešikmení\r\nsešikmený\r\nsešikmit\r\nsešikovanější\r\nsešikování\r\nsešikovaný\r\nsešikovat\r\nsešikovávání\r\nsešikovávaný\r\nsešikovávat\r\nsešinout\r\nsešít\r\nsešitější\r\nsešitek\r\nsešit\r\nsešití\r\nsešitovější\r\nsešitový\r\nsešitý\r\nsešitý\r\nsešívací\r\nsešívačka\r\nsešívanější\r\nsešívání\r\nsešívaný\r\nsešívat\r\nsešklebení\r\nsešklebený\r\nsešklebit\r\nseškrabající\r\nseškrábající\r\nseškrabanější\r\nseškrábanější\r\nseškrabání\r\nseškrábání\r\nseškrabaný\r\nseškrábaný\r\nseškrabat\r\nseškrábat\r\nseškrabávání\r\nseškrabávaný\r\nseškrabávat\r\nseškrábnout\r\nseškrábnutější\r\nseškrábnutí\r\nseškrábnutý\r\nseškrábnutý\r\nseškrabovanější\r\nseškrabování\r\nseškrabovaný\r\nseškrabovat\r\nseškrcení\r\nseškrcený\r\nseškrtání\r\nseškrtaný\r\nseškrtat\r\nseškrtávání\r\nseškrtávaný\r\nseškrtávat\r\nseškrtit\r\nseškvařený\r\nseškvařit\r\nseškvařovaný\r\nseškvařovat\r\nsešlapaný\r\nsešlapat\r\nsešlapávat\r\nsešlápnout\r\nsešlápnutí\r\nsešlápnutý\r\nsešlapování\r\nsešlapovaný\r\nsešlapovat\r\nsešlehání\r\nsešlehaný\r\nsešlehat\r\nsešlejší\r\nsešlu\r\nsešlý\r\nsešlý\r\nsešmiknout\r\nsešmiknutí\r\nsešmiknutý\r\nsešněrování\r\nsešněrovaný\r\nsešněrovat\r\nsešněrovávat\r\nsešoupnout\r\nsešoupnutí\r\nsešoupnutý\r\nsešourat\r\nsešpendlit\r\nsešpendlovat\r\nsešplhání\r\nsešplhaný\r\nsešplhat\r\nsešplhávání\r\nsešplhávat\r\nsešpulení\r\nsešpulený\r\nsešpulit\r\nsešrotování\r\nsešrotovaný\r\nsešrotovat\r\nsešrotovávání\r\nsešrotovávaný\r\nsešrotovávat\r\nsešroubování\r\nsešroubovaný\r\nsešroubovat\r\nsešroubovávání\r\nsešroubovávaný\r\nsešroubovávat\r\nseštelování\r\nseštelovaný\r\nseštelovat\r\nsešťouchnout\r\nsešťouchnutí\r\nsešťouchnutý\r\nsešup\r\nsešupnout\r\nsešupnutí\r\nsešupnutý\r\nsešvihat\r\nsešvindlování\r\nsešvindlovaný\r\nsešvindlovat\r\nset\r\nsetba\r\nsetbol\r\nsetbový\r\nsetější\r\nsetina\r\nsetinka\r\nsetinný\r\nsetinový\r\nsetí\r\nsetkání\r\nsetkat\r\nsetkávací\r\nsetkávající\r\nsetkávání\r\nsetkávat\r\nsetmělejší\r\nsetmělý\r\nsetmění\r\nsetmět\r\nsetmít\r\nsetník\r\nsetníkův\r\nsetnina\r\nsetnout\r\nsetnu\r\nsetnutější\r\nsetnutelnější\r\nsetnutelný\r\nsetnutí\r\nsetnutý\r\nset\r\nSeton\r\nSetonův\r\nseťový\r\nsetra\r\nsetr\r\nsetrův\r\nsetrvačka\r\nsetrvačkový\r\nsetrvačnější\r\nsetrvačník\r\nsetrvačníkový\r\nsetrvačný\r\nsetrvalejší\r\nsetrvalý\r\nsetrvání\r\nsetrvat\r\nsetrvávající\r\nsetrvávání\r\nsetrvávat\r\nsetřásací\r\nsetřásající\r\nsetřásání\r\nsetřásaný\r\nsetřásat\r\nsetřásávání\r\nsetřásávat\r\nsetřásl\r\nsetřást\r\nsetřelejší\r\nsetřenější\r\nsetření\r\nsetřený\r\nsetřepání\r\nsetřepaný\r\nsetřepat\r\nsetřepávání\r\nsetřepávaný\r\nsetřepávat\r\nsetřesení\r\nsetřesen\r\nsetřesený\r\nsetřesu\r\nsetříděnější\r\nsetřídění\r\nsetříděný\r\nsetřídit\r\nsetřiďování\r\nsetřiďovaný\r\nsetřiďovat\r\nsetřít\r\nsetý\r\nsetý\r\nsetý\r\nseverák\r\nSevera\r\nsever\r\nSeverin\r\nseverka\r\nsevernější\r\nseverní\r\nseveroafrický\r\nseveroafričančin\r\nseveroafričanka\r\nseveroafričan\r\nseveroafričanův\r\nseveroafričtější\r\nseveroamerický\r\nseveroameričančin\r\nseveroameričanka\r\nseveroameričan\r\nseveroameričanův\r\nseveroameričtější\r\nseveroanglický\r\nseveroatlantický\r\nseveroatlantičtější\r\nseveročech\r\nseveročechův\r\nseveročeský\r\nseveročeský\r\nseveroevropský\r\nseveroevropštější\r\nseverogermánský\r\nseveroitalský\r\nseverojižní\r\nseverokavkazský\r\nseverokorejský\r\nseveromoravan\r\nseveromoravanův\r\nseveromoravský\r\nseveroněmecký\r\nSeverová\r\nseverovýchod\r\nseverovýchodnější\r\nseverovýchodní\r\nseverozápad\r\nseverozápadnější\r\nseverozápadní\r\nseverský\r\nseverštější\r\nSeverův\r\nSeverýnová\r\nSeverýn\r\nSeverýnův\r\nseveřančin\r\nseveřanka\r\nseveřan\r\nseveřanův\r\nSevilla\r\nsevřenější\r\nsevření\r\nsevřený\r\nsevřít\r\nsexappeal\r\nsexbomba\r\nsex\r\nsexismus\r\nsexista\r\nsexistčin\r\nsexistický\r\nsexistka\r\nsexistův\r\nsexshop\r\nsextakord\r\nsextakordový\r\nsextánčin\r\nsextánka\r\nsextán\r\nsextant\r\nsextánův\r\nsexta\r\nsextet\r\nsexteto\r\nsextiliarda\r\nsextilion\r\nsextový\r\nsexualita\r\nsexuálnější\r\nsexuální\r\nsexuálnost\r\nsexuchtivý\r\nsexuologický\r\nsexuologie\r\nsexuolog\r\nsexuologův\r\nsexuoložčin\r\nsexuoložka\r\nsexus\r\nsexyobjekt\r\nSeyček\r\nSeyčková\r\nSeyčkův\r\nSeyfertová\r\nSeyfert\r\nSeyfertův\r\nSeychelančin\r\nSeychelanka\r\nSeychelan\r\nSeychelanův\r\nseychelský\r\nSeychely\r\nsezamový\r\nsezdanější\r\nsezdání\r\nsezdaný\r\nsezdat\r\nsezdávající\r\nsezdávanější\r\nsezdávání\r\nsezdávaný\r\nsezdávat\r\nSezemice\r\nsezemický\r\nsezení\r\nSezimovo\r\nSezimový\r\nseznámení\r\nseznámený\r\nseznam\r\nseznámit\r\nseznamka\r\nseznamovací\r\nseznamování\r\nseznamovaný\r\nseznamovat\r\nseznamovávání\r\nseznamovávaný\r\nseznamovávat\r\nseznamový\r\nseznamující\r\nseznanější\r\nseznání\r\nseznaný\r\nseznat\r\nseznávací\r\nseznávanější\r\nseznávání\r\nseznávaný\r\nseznávat\r\nsezobání\r\nsezobaný\r\nsezobat\r\nsezobávání\r\nsezobávaný\r\nsezobávat\r\nsezobnout\r\nsezobnutí\r\nsezobnutý\r\nsezonální\r\nsezona\r\nsezóna\r\nsezonní\r\nsezónní\r\nsezpívaný\r\nsezpívat\r\nsezvání\r\nsezvaný\r\nsezvat\r\nsežal\r\nsežat\r\nsežatý\r\nsežehlejší\r\nsežehlení\r\nsežehlený\r\nsežehlovat\r\nsežehnout\r\nsežehnutí\r\nsežehnutý\r\nsežehovat\r\nseženu\r\nsežínání\r\nsežínaný\r\nsežínat\r\nsežít\r\nsežmoulat\r\nsežnout\r\nsežnu\r\nsežnutí\r\nsežranější\r\nsežrání\r\nsežraný\r\nsežrat\r\nsežvýkání\r\nsežvýkaný\r\nsežvýkat\r\nsežvýkávat\r\nsežvýknout\r\nsežvykovat\r\nSF\r\nsfalerit\r\nsfárání\r\nsfáraný\r\nsfárat\r\nsféra\r\nsférický\r\nsféričtější\r\nsféroid\r\nsféře\r\nsfinga\r\nsflikování\r\nsflikovaný\r\nsflikovat\r\nsforzando\r\nsfoukat\r\nsfoukávat\r\nsfouknout\r\nsfouknutí\r\nsfouknutý\r\nsfragistika\r\nsfukovat\r\nsfúzování\r\nsfúzovat\r\nSgallová\r\nSgall\r\nSgallův\r\nSGI\r\nSGML\r\nsgrafito\r\nsgrafitový\r\nShakespeare\r\nShakespearův\r\nshánčivější\r\nshánčivý\r\nshánčlivější\r\nshánčlivý\r\nshánějící\r\nshánělka\r\nsháněnější\r\nshánění\r\nsháněný\r\nshánět\r\nsháňka\r\nshareware\r\nsharewarový\r\nShayebová\r\nShayeb\r\nShayebův\r\nsházenější\r\nsházení\r\nsházený\r\nsházet\r\nshazovací\r\nshazování\r\nshazovaný\r\nshazovat\r\nshazující\r\nSHD\r\nshedový\r\nSheffield\r\nSherlock\r\nSherlockův\r\nsherry\r\nsherryový\r\nshilling\r\nshladit\r\nshledanější\r\nshledání\r\nshledaný\r\nshledat\r\nshledávání\r\nshledávaný\r\nshledávat\r\nshlédnout\r\nshlédnul\r\nshlédnutí\r\nshlídnout\r\nshlídnul\r\nshlížející\r\nshlíženější\r\nshlížení\r\nshlížený\r\nshlížet\r\nshltání\r\nshltaný\r\nshltat\r\nshluk\r\nshluklý\r\nshluknout\r\nshluknutí\r\nshluknutý\r\nshlukování\r\nshlukovaný\r\nshlukovat\r\nshlukovější\r\nshlukový\r\nshlukující\r\nshnilejší\r\nshnilý\r\nshnilý\r\nshnít\r\nshnití\r\nshnívání\r\nshnívaný\r\nshnívat\r\nshoblovat\r\nshoda\r\nshodit\r\nshodli\r\nshodnější\r\nshodnostní\r\nshodnout\r\nshodnutí\r\nshodný\r\nshodování\r\nshodovat\r\nshodující\r\nshon\r\nshonový\r\nshop\r\nshora\r\nshořelý\r\nshoření\r\nshořený\r\nshořet\r\nshovívavější\r\nshovívavý\r\nshow\r\nshozenější\r\nshození\r\nshozený\r\nshoz\r\nshrabanější\r\nshrabání\r\nshrabaný\r\nshrabat\r\nshrabávání\r\nshrabávaný\r\nshrabávat\r\nshrabek\r\nshrábnout\r\nshrábnutější\r\nshrábnutí\r\nshrábnutý\r\nshrabovací\r\nshrabování\r\nshrabovaný\r\nshrabovat\r\nshrabovávání\r\nshrabovávaný\r\nshrabovávat\r\nshrbenější\r\nshrbený\r\nshrnout\r\nshrnovací\r\nshrnovač\r\nshrnovanější\r\nshrnování\r\nshrnovaný\r\nshrnovat\r\nshrnující\r\nshrnutí\r\nshrnutý\r\nshromáždění\r\nshromáždění\r\nshromážděný\r\nshromážděný\r\nshromaždiště\r\nshromáždiště\r\nshromáždit\r\nshromažďovací\r\nshromažďovač\r\nshromažďování\r\nshromažďování\r\nshromažďovaný\r\nshromažďovaný\r\nshromažďovat\r\nshromažďující\r\nshůry\r\nshýbací\r\nshýbající\r\nshýbání\r\nshýbat\r\nshýbávání\r\nshýbávat\r\nshyb\r\nshybka\r\nshýbnout\r\nshýbnutí\r\nSchaderová\r\nSchader\r\nSchaderův\r\nSchauenburský\r\nSchauerová\r\nSchauer\r\nSchauerův\r\nscházející\r\nscházení\r\nscházet\r\nscházívat\r\nSchejbalová\r\nSchejbal\r\nSchejbalův\r\nSchelling\r\nSchellingův\r\nschema\r\nschéma\r\nschematický\r\nschématický\r\nschematičtější\r\nschématičtější\r\nschematismus\r\nschematizování\r\nschematizovaný\r\nschematizovat\r\nschematizující\r\nschémátko\r\nScherbiův\r\nSchernsteinová\r\nSchernstein\r\nSchernsteinův\r\nscherzando\r\nscherzo\r\nSchierová\r\nSchier\r\nSchierův\r\nSchillerová\r\nSchiller\r\nSchillerův\r\nschilling\r\nSchindlerová\r\nSchindler\r\nSchindlerův\r\nschizma\r\nschizmatičtější\r\nschizofrenický\r\nschizofreniččin\r\nschizofrenička\r\nschizofreničtější\r\nschizofrenie\r\nschizofrenik\r\nschizofrenikův\r\nschizofrenní\r\nschizoidie\r\nschizoidnější\r\nschizoidní\r\nschlamstnout\r\nschlamstnutí\r\nschlamstnutý\r\nschlazení\r\nschlazený\r\nSchlesingerová\r\nSchlesinger\r\nSchlesingerův\r\nSchlingová\r\nSchling\r\nSchlingův\r\nschlíplejší\r\nschlíplý\r\nschlípnout\r\nSchmalzová\r\nSchmalz\r\nSchmalzův\r\nSchmerlingův\r\nSchmidtová\r\nSchmidt\r\nSchmidtův\r\nSchmiedová\r\nSchmied\r\nSchmiedův\r\nSchmitt\r\nSchmittův\r\nSchnatzerová\r\nSchnatzer\r\nSchnatzerův\r\nSchneiderová\r\nSchneider\r\nSchneiderův\r\nSchneidra\r\nSchneidre\r\nSchneidrech\r\nSchneidrem\r\nSchneidrová\r\nSchneidrové\r\nSchneidrovi\r\nSchneidrů\r\nSchneidrům\r\nSchneidrův\r\nSchneidry\r\nschnoucí\r\nschnout\r\nschnu\r\nschnutí\r\nSchöberlová\r\nSchöberl\r\nSchöberlův\r\nschodeček\r\nschodek\r\nschod\r\nschodiště\r\nschodištní\r\nschodišťový\r\nschodkový\r\nschodnější\r\nschodnicový\r\nschodný\r\nschodovat\r\nschodovitý\r\nschodový\r\nSchöffelová\r\nSchöffel\r\nSchöffelův\r\nscholár\r\nscholastický\r\nscholastičtější\r\nscholastika\r\nscholastik\r\nscholastikův\r\nScholzeová\r\nScholze\r\nScholzeův\r\nScholzová\r\nScholz\r\nScholzův\r\nSchönbrunnský\r\nSchönerová\r\nSchöner\r\nSchönerův\r\nSchönfeldský\r\nSchönová\r\nSchön\r\nSchönův\r\nschopen\r\nschopnější\r\nschopný\r\nSchořov\r\nschořovský\r\nschoulenější\r\nschoulení\r\nschoulený\r\nschoulit\r\nSchovancová\r\nSchovancův\r\nschovancův\r\nschovanec\r\nSchovanec\r\nschovanější\r\nSchovánek\r\nschování\r\nschovanka\r\nSchovánková\r\nSchovánkův\r\nschovaný\r\nschovatel\r\nschovatelův\r\nschovat\r\nschovávačka\r\nschovávající\r\nschovávání\r\nschovávaný\r\nschovávat\r\nschramstnout\r\nschramstnutí\r\nschramstnutý\r\nschrána\r\nschránka\r\nschraňování\r\nschraňovaný\r\nschraňovat\r\nschraňující\r\nschrastění\r\nschrastit\r\nSchreiba\r\nSchreiberová\r\nSchreiber\r\nSchreiberův\r\nSchreibová\r\nSchreibra\r\nSchreibre\r\nSchreibrech\r\nSchreibrem\r\nSchreibrová\r\nSchreibrové\r\nSchreibrovi\r\nSchreibrů\r\nSchreibrům\r\nSchreibrův\r\nSchreibry\r\nSchreibův\r\nschroupat\r\nschroustání\r\nschroustat\r\nschrupnout\r\nschrupnutí\r\nschřoupat\r\nSchubertová\r\nSchubert\r\nSchubertův\r\nschůdek\r\nschůdka\r\nschůdnější\r\nschůdný\r\nSchultzová\r\nSchultz\r\nSchultzův\r\nSchürerová\r\nSchürer\r\nSchürerův\r\nschůze\r\nschůzka\r\nschůzování\r\nschůzovat\r\nschůzovní\r\nschůzový\r\nschvácenější\r\nschvácení\r\nschvácený\r\nschvacující\r\nschválení\r\nschválený\r\nschválit\r\nschválně\r\nschválnost\r\nschvalovací\r\nschvalování\r\nschvalovaný\r\nschvalovat\r\nschvalovávání\r\nschvalovávaný\r\nschvalovávat\r\nschvalující\r\nschvátit\r\nSchwarzenberkový\r\nschwarzenberský\r\nSchwarzová\r\nSchwarz\r\nSchwarzův\r\nSchybalová\r\nSchybal\r\nSchybalův\r\nschýlenější\r\nschýlení\r\nschýlený\r\nschýlit\r\nschylovanější\r\nschylování\r\nschylovaný\r\nschylovat\r\nschylovávání\r\nschylovávaný\r\nschylovávat\r\nschylující\r\nschytání\r\nschytat\r\nschytávání\r\nschytávaný\r\nschytávat\r\nSI\r\nsi\r\nSiam\r\nsiamský\r\nsibérie\r\nSibiň\r\nsibiřský\r\nsibiřský\r\nSibiř\r\nSibiu\r\nSíbrtová\r\nSíbrt\r\nSíbrtův\r\nSibřinová\r\nSibřin\r\nSibřinův\r\nSibyla\r\nSibylin\r\nsic\r\nsice\r\nSicílie\r\nsicilský\r\nsíct\r\nsídelní\r\nsiderický\r\nsideritový\r\nsiderofilní\r\nsídlení\r\nsídlící\r\nsídlící\r\nsídliště\r\nsídlištnější\r\nsídlištní\r\nsídlit\r\nsídlo\r\nsiena\r\nSierraleoňančin\r\nSierraleoňanka\r\nSierraleoňan\r\nSierraleoňanův\r\nsierraleonský\r\nSierra\r\nsiesta\r\nsifilis\r\nsifon\r\nsifón\r\nsifonový\r\nsifónový\r\nsigma\r\nSigmund\r\nSigmundův\r\nsignál\r\nsignalisování\r\nsignalisovaný\r\nsignalisovat\r\nsignalista\r\nsignalistčin\r\nsignalistka\r\nsignalistův\r\nsignalizace\r\nsignalizační\r\nsignalizování\r\nsignalizovaný\r\nsignalizovat\r\nsignalizující\r\nsignálka\r\nsignální\r\nsignálový\r\nsignatářčin\r\nsignatářka\r\nsignatářský\r\nsignatář\r\nsignatářův\r\nsignatura\r\nsignifikantní\r\nsignorie\r\nsignovačka\r\nsignování\r\nsignovaný\r\nsignovat\r\nsichrhajcka\r\nSika\r\nsikařství\r\nsikhismus\r\nSiková\r\nsikulština\r\nSikův\r\nsil\r\nsilácký\r\nsiláctví\r\nsilačka\r\nsiláčtější\r\nsilách\r\nsilák\r\nsilákův\r\nsilám\r\nsilami\r\nsilan\r\nsíla\r\nsilážní\r\nsilážování\r\nsilážovaný\r\nsilážovat\r\nsilážovatelný\r\nsilážový\r\nsiláž\r\nsílení\r\nsilenka\r\nsílený\r\nsilice\r\nsilicid\r\nsilicium\r\nsílící\r\nsilikát\r\nsilikátový\r\nsilikofyt\r\nsilikon\r\nsilikonový\r\nsilikotermický\r\nsilikotermičtější\r\nsilikóza\r\nsilimanit\r\nsilimanitový\r\nsílit\r\nsílivý\r\nsilkový\r\nsilnější\r\nsilnice\r\nsilničář\r\nsilničářův\r\nsilnička\r\nsilniční\r\nsilnoproudý\r\nsilný\r\nsiločára\r\nsiločarový\r\nsilokřivka\r\nsiloměr\r\nsilo\r\nsil\r\nsilon\r\nsilonka\r\nsilonovější\r\nsilonový\r\nsilou\r\nsilovější\r\nsílový\r\nsilový\r\nsilozpytcův\r\nsilozpytec\r\nsilozpyt\r\nsílskinův\r\nsiltový\r\nsilueta\r\nsiluetový\r\nsilur\r\nsilurský\r\nSilva\r\nsilvestr\r\nsilvestrovský\r\nSilvestr\r\nSilvestrův\r\nSilvie\r\nSilviin\r\nSilvin\r\nSima\r\nsímě\r\nsimentský\r\nSimeon\r\nSimeonův\r\nSimethová\r\nSimeth\r\nSimethův\r\nSimjanovičová\r\nSimjanovič\r\nSimjanovičův\r\nsimka\r\nSimona\r\nSimončin\r\nSimonidesová\r\nSimonides\r\nSimonidesův\r\nSimonin\r\nSimonka\r\nSimonová\r\nSimon\r\nSimonův\r\nSimová\r\nsimplex\r\nsimplexní\r\nsimplexový\r\nsimplifikace\r\nSimpson\r\nSimpsonův\r\nsimulace\r\nsimulační\r\nsimulantčin\r\nsimulantka\r\nsimulant\r\nsimulantský\r\nsimulantství\r\nsimulantův\r\nsimulátor\r\nsimulování\r\nsimulovaný\r\nsimulovat\r\nsimulovávání\r\nsimulovávaný\r\nsimulovávat\r\nsimultánka\r\nsimultánní\r\nsimulující\r\nSimův\r\nsin\r\nsinajský\r\nSinaj\r\nsinalejší\r\nsinalý\r\nsinání\r\nsinat\r\nsinavější\r\nsinavý\r\nsinavý\r\nsindhština\r\nsinekura\r\nSingapurcův\r\nSingapurčin\r\nSingapurec\r\nSingapur\r\nSingapurka\r\nsingapurský\r\nsingapurský\r\nSingapuřan\r\nSingapuřanův\r\nsingl\r\nsinglista\r\nsinglistčin\r\nsinglistka\r\nsinglistův\r\nsinglkanoista\r\nsinglkanoistčin\r\nsinglkanoistka\r\nsinglkanoistův\r\nsinglový\r\nsingrovka\r\nsingulár\r\nsingularista\r\nsingularistčin\r\nsingularistka\r\nsingularistův\r\nsingularita\r\nsingularizovat\r\nsingulární\r\nsingulárový\r\nsinhalština\r\nsinice\r\nsinicový\r\nsíňka\r\nsinologie\r\nsinolog\r\nsinologův\r\nsinoložčin\r\nsinoložka\r\nsinový\r\nsíňový\r\nsintrační\r\nsintrování\r\nsintrovaný\r\nsintrovat\r\nSinuhet\r\nSinuhetův\r\nsinusoida\r\nsinusovitý\r\nsinusovka\r\nsinusový\r\nsinus\r\nsiný\r\nsíň\r\nSión\r\nsionismus\r\nsionista\r\nsionistčin\r\nsionistický\r\nsionističtější\r\nsionistka\r\nsionistův\r\nsiónský\r\nsípání\r\nsípaný\r\nsípat\r\nsípávání\r\nsípávat\r\nsípavější\r\nsípavý\r\nsípot\r\nSirákov\r\nsirákovský\r\nsíran\r\nsíranový\r\nSirá\r\nsíra\r\nSirek\r\nsiréna\r\nSirius\r\nsirkárna\r\nsirkařský\r\nsirka\r\nSirková\r\nsirkový\r\nSirkův\r\nsirnatan\r\nsirnatý\r\nsirník\r\nsirníkový\r\nsirný\r\nsiroba\r\nsirota\r\nsirotčinec\r\nsirotčí\r\nsirotek\r\nSirotek\r\nSirotková\r\nSirotkův\r\nsirotkův\r\nsirouhlík\r\nsirouhlíkový\r\nsirovodík\r\nsirovodíkový\r\nsírový\r\nsir\r\nsirský\r\nsirup\r\nsirupovitý\r\nsirupový\r\nsirův\r\nsirý\r\nsiřejší\r\nsíření\r\nsířený\r\nsiřičitan\r\nsiřičitý\r\nsířit\r\nsis\r\nsisal\r\nsisalový\r\nSisyfos\r\nsisyfovský\r\nSisyfův\r\nsisyfův\r\nsitarista\r\nsitárista\r\nsitaristčin\r\nsitáristčin\r\nsitaristka\r\nsitáristka\r\nsitaristův\r\nsitáristův\r\nsíťař\r\nsíťařův\r\nsítěnka\r\nsítěný\r\nsít\r\nsítina\r\nsíťka\r\nsítko\r\nsíťkovací\r\nsíťkování\r\nsíťkovaný\r\nsíťkovat\r\nsítnice\r\nsítnicový\r\nsíto\r\nsítotisk\r\nsítotiskový\r\nsíťovací\r\nsíťování\r\nsíťovaný\r\nsíťovat\r\nsíťovina\r\nsíťovitý\r\nsíťovka\r\nsítový\r\nsíťový\r\nsituace\r\nsituační\r\nsituování\r\nsituovaný\r\nsituovat\r\nsíť\r\nSiváková\r\nSivák\r\nSivákův\r\nsívání\r\nsívaný\r\nsívat\r\nsiven\r\nsivenův\r\nsivka\r\nsivooký\r\nsivý\r\nSixta\r\nSixtová\r\nSixtův\r\nsjednající\r\nsjednanější\r\nsjednání\r\nsjednáno\r\nsjednaný\r\nsjednatelnější\r\nsjednat\r\nsjednávající\r\nsjednávanější\r\nsjednávání\r\nsjednávaný\r\nsjednávat\r\nsjednocenější\r\nsjednocení\r\nsjednocený\r\nsjednocovací\r\nsjednocování\r\nsjednocovaný\r\nsjednocovat\r\nsjednocovávání\r\nsjednocovávaný\r\nsjednocovávat\r\nsjednocující\r\nsjednotit\r\nsjednotitelčin\r\nsjednotitelka\r\nsjednotitel\r\nsjednotitelův\r\nsjedu\r\nsjel\r\nsjení\r\nsjetější\r\nsjet\r\nsjetí\r\nsjetý\r\nsjezdařčin\r\nsjezdařka\r\nsjezdařský\r\nsjezdař\r\nsjezdařův\r\nsjezdění\r\nsjezděný\r\nsjezd\r\nsjezdit\r\nsjezdní\r\nsjezdování\r\nsjezdovat\r\nsjezdovější\r\nsjezdovka\r\nsjezdový\r\nsjízdnější\r\nsjízdný\r\nsjíždějící\r\nsjíždění\r\nsjížděný\r\nsjíždět\r\nSK\r\nSkácelová\r\nSkácel\r\nSkácelův\r\nskácení\r\nskácený\r\nskácet\r\nskací\r\nskafandr\r\nskákačka\r\nskákající\r\nSkákalová\r\nSkákal\r\nSkákalův\r\nskákanější\r\nskákání\r\nskákaný\r\nskákat\r\nskákavější\r\nskákavý\r\nskal\r\nskalách\r\nSkaláková\r\nSkalák\r\nSkalákův\r\nskalám\r\nskalami\r\nSkala\r\nSkála\r\nskalára\r\nskalár\r\nskalární\r\nskála\r\nskalenský\r\nSkalice\r\nskalice\r\nSkalický\r\nskalický\r\nSkalička\r\nSkalička\r\nskalička\r\nSkaličková\r\nSkaličkův\r\nskalina\r\nskalisko\r\nSkalisté\r\nSkalka\r\nskalka\r\nSkalková\r\nskalkový\r\nSkalkův\r\nSkalla\r\nSkallová\r\nSkallův\r\nskalnatější\r\nskalnatý\r\nSkalná\r\nskalnější\r\nskalničkářčin\r\nskalničkářka\r\nskalničkář\r\nskalničkářův\r\nskalnička\r\nSkalníková\r\nSkalník\r\nSkalníkův\r\nskalní\r\nskálopevnější\r\nskálopevný\r\nskalou\r\nSkalová\r\nSkálová\r\nskálový\r\nskalpel\r\nskalp\r\nskalpování\r\nskalpovaný\r\nskalpovat\r\nSkalsko\r\nSkalský\r\nSkalův\r\nSkálův\r\nskamarádění\r\nskamaráděný\r\nskamarádit\r\nskandál\r\nskandalisování\r\nskandalisovaný\r\nskandalisovat\r\nskandalista\r\nskandalistčin\r\nskandalistka\r\nskandalistův\r\nskandalizování\r\nskandalizovaný\r\nskandalizovat\r\nskandalizující\r\nskandálnější\r\nskandální\r\nskandalóznější\r\nskandinávcův\r\nSkandinávčin\r\nskandinávec\r\nSkandinávie\r\nSkandinávka\r\nskandinávský\r\nskandinávský\r\nskandiový\r\nskanditý\r\nskandium\r\nskandování\r\nskandovaný\r\nskandovat\r\nskandovávání\r\nskandovávaný\r\nskandovávat\r\nskandující\r\nSkanie\r\nskaní\r\nskanout\r\nskansen\r\nskanující\r\nskanutí\r\nskaný\r\nskanzen\r\nskapat\r\nskapávající\r\nskapávat\r\nskapu\r\nskarifikace\r\nSkarlantová\r\nSkarlant\r\nSkarlantův\r\nskarna\r\nskarnový\r\nskartace\r\nskartační\r\nskartovací\r\nskartování\r\nskartovaný\r\nskartovat\r\nskartovávání\r\nskartovávaný\r\nskartovávat\r\nSkašov\r\nskašovský\r\nskateboard\r\nskateboardista\r\nskateboardistčin\r\nskateboardistka\r\nskateboardistův\r\nskat\r\nskating\r\nskautčin\r\nskautka\r\nskaut\r\nskautský\r\nskautův\r\nskazka\r\nskeč\r\nskejt\r\nskeletální\r\nskelet\r\nskeletový\r\nskelnatění\r\nskelnatěný\r\nskelnatět\r\nskelnatý\r\nskelnička\r\nskelný\r\nskener\r\nskenovací\r\nskenování\r\nskenovaný\r\nskenovat\r\nskenující\r\nskepse\r\nskepticismus\r\nskepticistický\r\nskeptický\r\nskeptičtější\r\nskeptik\r\nskeptikův\r\nsketa\r\nskialpinismus\r\nskialpinista\r\nskialpinistčin\r\nskialpinistický\r\nskialpinistka\r\nskialpinistův\r\nskibob\r\nskibobista\r\nskibobistčin\r\nskibobistka\r\nskibobistův\r\nskicák\r\nskicář\r\nskica\r\nskicování\r\nskicovaný\r\nskicovat\r\nskicovávání\r\nskicovávaný\r\nskicovávat\r\nskicovitý\r\nskifařčin\r\nskifařka\r\nskif\r\nskinhead\r\nskinheads\r\nskinheadský\r\nskinheadův\r\nskin\r\nskinův\r\nskipový\r\nsklácení\r\nsklácený\r\nskládací\r\nskládačka\r\nskladač\r\nskládající\r\nskládanější\r\nskládání\r\nskládanka\r\nSkládaný\r\nskládaný\r\nskladatelčin\r\nskladatelka\r\nskladatelnější\r\nskladatelný\r\nskladatelský\r\nskladatelství\r\nskladatelštější\r\nskladatel\r\nskladatelův\r\nskládat\r\nskládávání\r\nskládávaný\r\nskládávat\r\nskladba\r\nskladbička\r\nskladebnější\r\nskladební\r\nskladebný\r\nsklad\r\nskladiště\r\nskladištní\r\nskladka\r\nskládka\r\nskládkování\r\nskládkovaný\r\nskládkovat\r\nskládkovější\r\nskládkový\r\nskladnější\r\nskladnice\r\nskladničin\r\nskladník\r\nskladníkův\r\nskladní\r\nskladný\r\nskladovací\r\nskladovanější\r\nskladování\r\nskladovaný\r\nskladovat\r\nskladovatelnější\r\nskladovatelný\r\nskladovatel\r\nskladovatelův\r\nskladovější\r\nskladový\r\nskladující\r\nsklánějící\r\nsklánění\r\nsklánět\r\nsklání\r\nsklaný\r\nsklápěcí\r\nsklápěčka\r\nsklápějící\r\nsklápění\r\nsklápěný\r\nsklápět\r\nsklapnout\r\nsklapnutí\r\nsklapnutý\r\nsklapovat\r\nsklárna\r\nsklářčin\r\nsklářka\r\nsklářský\r\nsklářství\r\nsklář\r\nsklářův\r\nsklátit\r\nsklát\r\nsklenářčin\r\nsklenářka\r\nSklenářová\r\nsklenářský\r\nsklenářství\r\nsklenář\r\nSklenář\r\nSklenářův\r\nsklenářův\r\nskleněnější\r\nskleněnka\r\nskleněný\r\nSklené\r\nsklenice\r\nskleníček\r\nSklenička\r\nsklenička\r\nSkleničková\r\nSkleničkův\r\nskleník\r\nskleníkovější\r\nskleníkový\r\nsklenka\r\nsklenout\r\nsklenský\r\nsklenutí\r\nsklenutý\r\nsklepanější\r\nsklepání\r\nsklepaný\r\nsklepat\r\nsklepávající\r\nsklepávanější\r\nsklepávání\r\nsklepávaný\r\nsklepávat\r\nsklepení\r\nsklep\r\nsklepích\r\nsklep\r\nsklepnice\r\nsklepničin\r\nsklepník\r\nsklepníkův\r\nsklepní\r\nsklepnout\r\nsklepnutější\r\nsklepnutí\r\nsklepnutý\r\nsklepnutý\r\nsklepový\r\nskleroplastika\r\nsklerosa\r\nskleroskopický\r\nskleroskopičtější\r\nsklerotický\r\nsklerotiččin\r\nsklerotička\r\nsklerotičtější\r\nsklerotik\r\nsklerotikův\r\nsklerotizace\r\nskleróza\r\nskleslejší\r\nskleslý\r\nsklesnout\r\nsklesnutí\r\nsklíčenější\r\nsklíčení\r\nsklíčený\r\nsklíčidlo\r\nsklíčidlový\r\nsklíčit\r\nsklíčko\r\nskličování\r\nskličovaný\r\nskličovat\r\nskličující\r\nsklidit\r\nskliditelný\r\nsklínka\r\nsklípek\r\nsklípkový\r\nsklivec\r\nsklízecí\r\nsklízečka\r\nsklízeč\r\nsklízečův\r\nsklízející\r\nsklizení\r\nsklízení\r\nsklizený\r\nsklízený\r\nsklizeň\r\nsklízet\r\nsklizňový\r\nsklížení\r\nsklížit\r\nskližování\r\nskližovaný\r\nskližovat\r\nsklobetonový\r\nSklodowský\r\nSkloexport\r\nsklolaminát\r\nsklolaminátový\r\nsklo\r\nsklonek\r\nskloněnější\r\nsklonění\r\nskloněný\r\nsklon\r\nsklonit\r\nsklonný\r\nskloňovanější\r\nskloňování\r\nskloňování\r\nskloňovaný\r\nskloňovaný\r\nskloňovat\r\nskloňovatelnější\r\nsklonový\r\nskloňující\r\nsklopení\r\nsklopený\r\nsklopit\r\nsklopitelnější\r\nsklopný\r\nsklopýtání\r\nsklopýtaný\r\nsklopýtat\r\nsklotextit\r\nskloubení\r\nskloubený\r\nskloubit\r\nsklouzávající\r\nsklouzávání\r\nsklouzávat\r\nsklouznout\r\nsklouznutí\r\nsklovatění\r\nsklovatěný\r\nsklovatět\r\nsklovina\r\nsklovitější\r\nsklovitý\r\nsklusání\r\nsklusat\r\nskluzavka\r\nskluz\r\nskluznice\r\nskluzoměr\r\nskluzový\r\nskoba\r\nskobička\r\nskobičkovací\r\nskobičkování\r\nskobičkovaný\r\nskobičkovat\r\nskobka\r\nskobkovací\r\nskobkování\r\nskobkovaný\r\nskobkovat\r\nSkočdopole\r\nSkočdopolová\r\nSkočdopolův\r\nskočec\r\nskočenější\r\nskočení\r\nskočený\r\nskočit\r\nskočnější\r\nskočný\r\nskokančin\r\nskokánek\r\nskokanka\r\nskokánkův\r\nSkokanová\r\nskokan\r\nSkokan\r\nskokanský\r\nSkokanův\r\nskokanův\r\nskokem\r\nskok\r\nskokovitý\r\nskokový\r\nskolení\r\nskolený\r\nskolióza\r\nskolit\r\nSkomelno\r\nskomírající\r\nskomírání\r\nskomírat\r\nskomírávání\r\nskomírávat\r\nskomíravější\r\nskomíravý\r\nskonání\r\nskonat\r\nskonávající\r\nskonávání\r\nskonávat\r\nskoncování\r\nskoncovaný\r\nskoncovat\r\nskoncovávání\r\nskoncovávat\r\nskončení\r\nskončený\r\nskončit\r\nskon\r\nskonto\r\nSkopalová\r\nSkopal\r\nSkopalův\r\nskopanější\r\nskopání\r\nskopaný\r\nskopat\r\nskopávání\r\nskopávaný\r\nskopávat\r\nSkopcová\r\nSkopcův\r\nskopcův\r\nskopčáčtější\r\nskopec\r\nSkopec\r\nSkopeček\r\nSkopečková\r\nSkopečkův\r\nskop\r\nskopičina\r\nskopičinka\r\nSkopje\r\nskopnout\r\nskopnutí\r\nskopnutý\r\nskopovice\r\nskopový\r\nskorbut\r\nskorcův\r\nskorec\r\nskóre\r\nSkorkov\r\nskorkovský\r\nskoro\r\nSkoronice\r\nskoronický\r\nSkorošice\r\nskorošický\r\nSkorotice\r\nskorotický\r\nskórování\r\nskórovat\r\nskórující\r\nskořápka\r\nskořápkovitý\r\nskořápkový\r\nskořejší\r\nSkořepa\r\nskořepina\r\nskořepinový\r\nskořepka\r\nSkořepová\r\nSkořepův\r\nskořice\r\nskořicovník\r\nskořicovníkový\r\nskořicový\r\nskosení\r\nskosený\r\nskosit\r\nskot\r\nskotačení\r\nskotačící\r\nskotačit\r\nskotačivější\r\nskotačivý\r\nSkotčin\r\nskote\r\nskotem\r\nSkotka\r\nskotopický\r\nskotový\r\nSkot\r\nSkotsko\r\nskotský\r\nskotština\r\nskotu\r\nSkotův\r\nskoulení\r\nskoulený\r\nskoulet\r\nSkoumalová\r\nSkoumal\r\nSkoumalův\r\nskoupější\r\nskoupení\r\nskoupený\r\nskoupit\r\nskoupý\r\nskousávající\r\nskousávanější\r\nskousávání\r\nskousávaný\r\nskousávat\r\nskousnout\r\nskousnutější\r\nskousnutí\r\nskousnutý\r\nskousnutý\r\nskoušení\r\nskoušet\r\nskrajování\r\nskrajovaný\r\nskrajovat\r\nskrajovávání\r\nskrajovávaný\r\nskrajovávat\r\nskráň\r\nskrápěcí\r\nskrápějící\r\nskrápění\r\nskrápěný\r\nskrápět\r\nskrápnout\r\nSkrbek\r\nSkrbenský\r\nSkrbková\r\nSkrbkův\r\nskrblení\r\nskrblící\r\nskrblický\r\nskrblictví\r\nskrbličtější\r\nskrblík\r\nskrblíkův\r\nskrblit\r\nskrblivý\r\nskrčencův\r\nskrčenčin\r\nskrčenecký\r\nskrčenec\r\nskrčenější\r\nskrčení\r\nskrčenka\r\nskrčený\r\nskrčit\r\nskrčka\r\nskrečování\r\nskrečovaný\r\nskrečovat\r\nskreč\r\nskreč\r\nskrejpr\r\nSkrejšovský\r\nSkrchov\r\nskrchovský\r\nskriptčin\r\nskriptérčin\r\nskriptérka\r\nskript\r\nskriptík\r\nskriptka\r\nskriptorium\r\nskriptovací\r\nskriptování\r\nskriptum\r\nskroječek\r\nskrojek\r\nskromnější\r\nskromný\r\nskropení\r\nskropený\r\nskropit\r\nskrouhnout\r\nskrouhnutí\r\nskrouhnutý\r\nskrovnější\r\nSkrovnice\r\nskrovnický\r\nskrovný\r\nSkršín\r\nskršínský\r\nskrucovací\r\nskrucování\r\nskrucovaný\r\nskrucovat\r\nskrumáž\r\nskrupule\r\nskrupulóznější\r\nskrupulózní\r\nskrutátor\r\nskrutinium\r\nSkružný\r\nskruž\r\nskrvnitý\r\nSkrýchov\r\nskrýchovský\r\nskrýška\r\nskrýš\r\nskrýt\r\nskrytější\r\nskrytelnější\r\nskrytelný\r\nskryt\r\nskrytí\r\nskrytý\r\nskrytý\r\nskrývačka\r\nskrývající\r\nskrývanější\r\nskrývání\r\nskrývaný\r\nskrývatelnější\r\nskrývatelný\r\nskrývat\r\nskrývka\r\nskrývkový\r\nskrz\r\nskrze\r\nskřehotající\r\nskřehotání\r\nskřehotaný\r\nskřehotat\r\nskřehotávání\r\nskřehotávat\r\nskřehotavější\r\nskřehotavý\r\nskřehot\r\nskřek\r\nskřele\r\nSkřemelice\r\nskřet\r\nskřetův\r\nSkřinářov\r\nskřinářovský\r\nskřínka\r\nskříňka\r\nskřínkový\r\nskříňkový\r\nskříňový\r\nskříň\r\nskříp\r\nskřípající\r\nskřípání\r\nskřípat\r\nskřípávání\r\nskřípávaný\r\nskřípávat\r\nskřípavější\r\nskřípavý\r\nskřipcový\r\nskřipec\r\nskřípějící\r\nskřípění\r\nskřípět\r\nskřipka\r\nskřipky\r\nskřípnout\r\nskřípnutí\r\nskřípnutý\r\nskřípot\r\nSkřipov\r\nSkřípov\r\nskřipovský\r\nskřípovský\r\nskřítek\r\nskřítkovský\r\nskřítkový\r\nskřítkův\r\nskřivánčí\r\nskřivánek\r\nSkřivánek\r\nskřivanka\r\nSkřivánková\r\nskřivánkový\r\nSkřivánkův\r\nskřivánkův\r\nSkřivanová\r\nskřivan\r\nSkřivan\r\nSkřivanův\r\nskřivanův\r\nskřížený\r\nskučení\r\nskučet\r\nskučící\r\nskučivý\r\nskuhrání\r\nskuhrat\r\nskuhrávat\r\nskuhravější\r\nskuhravý\r\nSkuhrov\r\nskuhrovský\r\nskulení\r\nskulený\r\nskulhanější\r\nskulhání\r\nskulhaný\r\nskulhat\r\nskulhávanější\r\nskulhávání\r\nskulhávaný\r\nskulhávat\r\nskulina\r\nskulinka\r\nskulit\r\nskulový\r\nskulptivní\r\nskulptura\r\nskunkový\r\nskunk\r\nskunkův\r\nskupenský\r\nskupenství\r\nskupina\r\nskupinečka\r\nskupinka\r\nskupinovější\r\nskupinový\r\nskupování\r\nskupovaný\r\nskupovat\r\nskupovávání\r\nskupovávaný\r\nskupovávat\r\nskupující\r\nskus\r\nskutálení\r\nskutálený\r\nskutálet\r\nSkutče\r\nSkutči\r\nSkutčí\r\nSkuteč\r\nskutečnější\r\nskutečno\r\nskutečný\r\nSkutečsko\r\nskutečský\r\nskutek\r\nskutkový\r\nskútr\r\nskužkovací\r\nskužkovaný\r\nskužkovat\r\nskvadra\r\nskvějící\r\nskvělejší\r\nskvělý\r\nskvění\r\nskvět\r\nskvící\r\nskvít\r\nskvívání\r\nskvívat\r\nskvost\r\nskvostnější\r\nskvostný\r\nskvoucí\r\nskvrna\r\nskvrnitější\r\nskvrnitý\r\nskvrnivka\r\nskvrnka\r\nSkvrňov\r\nskvrňovský\r\nskýtající\r\nskýtání\r\nskýtaný\r\nskýtat\r\nskýtávání\r\nskýtávat\r\nskýva\r\nSL\r\nsl\r\nslaběji\r\nslabější\r\nslabičnější\r\nslabičný\r\nslabikářový\r\nslabikář\r\nslabika\r\nslabikotvornější\r\nslabikotvorný\r\nslabikování\r\nslabikovaný\r\nslabikovat\r\nslabikový\r\nslabikující\r\nSlabina\r\nslabina\r\nSlabinová\r\nSlabinův\r\nslábnoucí\r\nslábnout\r\nslábnutí\r\nsláb\r\nslaboduchý\r\nslabodušší\r\nslaboch\r\nslabochův\r\nslabomyslnější\r\nslabomyslný\r\nslaboproudý\r\nslaboščin\r\nslaboška\r\nslabošský\r\nslabošství\r\nslaboučký\r\nslaboulinký\r\nslabounký\r\nslabouškův\r\nslabozraký\r\nslabší\r\nslabůstka\r\nSlabý\r\nslabý\r\nSládeček\r\nSládečková\r\nSládečkův\r\nsládek\r\nSládek\r\nsladěnější\r\nsladění\r\nsladěný\r\nslad\r\nsladičký\r\nsladidlo\r\nsladit\r\nsladit\r\nsladivý\r\nsladkobolnější\r\nsladkobolný\r\nsladkokyselejší\r\nsladkokyselý\r\nSládková\r\nsladkovodní\r\nSladkovský\r\nSládkův\r\nsládkův\r\nSladký\r\nsladký\r\nsládnout\r\nsládnutí\r\nslaďoulinký\r\nslaďounký\r\nsladování\r\nslaďování\r\nsladovaný\r\nslaďovaný\r\nsladovat\r\nslaďovat\r\nsladovna\r\nsladovnice\r\nsladovnický\r\nsladovnictví\r\nsladovničtější\r\nsladovník\r\nsladovníkův\r\nsladový\r\nsladší\r\nslalomářčin\r\nslalomářka\r\nslalomář\r\nslalomářův\r\nslalom\r\nslalomový\r\nslamáček\r\nslamák\r\nSláma\r\nsláma\r\nslaměnější\r\nslaměnka\r\nslaměný\r\nslámka\r\nslamnatý\r\nslamníček\r\nslamník\r\nSlámová\r\nslámovina\r\nslámový\r\nSlámův\r\nSlaná\r\nslaneček\r\nslanečkův\r\nslanější\r\nslanění\r\nslaněný\r\nslang\r\nslangovější\r\nslangový\r\nSlanina\r\nslanina\r\nSlaninová\r\nslaninový\r\nSlaninův\r\nslanit\r\nslánka\r\nslaňovací\r\nslaňování\r\nslaňovaný\r\nslaňovat\r\nslanský\r\nSlánský\r\nslánský\r\nslaný\r\nslap\r\nslapový\r\nSlapsko\r\nslapský\r\nslast\r\nslastnější\r\nslastný\r\nslátanější\r\nslátanina\r\nslátání\r\nslátaný\r\nslátat\r\nslatina\r\nSlatinice\r\nslatinický\r\nslatiniště\r\nslatinný\r\nslatinový\r\nsláva\r\nSlávek\r\nSlavěna\r\nSlavěnčin\r\nSlavěnin\r\nslavení\r\nslavení\r\nSlavěnka\r\nslavený\r\nSlavětice\r\nslavětický\r\nSlavětín\r\nslavětínský\r\nSlávia\r\nSlavia\r\nslavící\r\nslavíček\r\nSlavíček\r\nSlavičín\r\nslavičínský\r\nslavičí\r\nSlavíčková\r\nSlavíčkův\r\nslavíčkův\r\nSlavie\r\nSlávie\r\nSlavíková\r\nSlavíkov\r\nslavíkovský\r\nslavíkový\r\nslavík\r\nSlavík\r\nSlavíkův\r\nslavíkův\r\nSlavín\r\nslavínský\r\nslavismus\r\nslavista\r\nslávista\r\nslavistčin\r\nslávistčin\r\nslavistický\r\nslávistický\r\nslavističtější\r\nslávističtější\r\nslavistika\r\nslavistka\r\nslávistka\r\nslavistův\r\nslávistův\r\nslavit\r\nSlavitěhův\r\nslavívat\r\nslavjanofil\r\nslavjanofilský\r\nslavjanofilství\r\nslavjanofilův\r\nslávka\r\nSlavkovice\r\nSlavkov\r\nslavkovský\r\nSlávkův\r\nslavnější\r\nSlavníkovec\r\nslavníkovský\r\nslavnostnější\r\nslavnostní\r\nslavný\r\nslavobrána\r\nSlavoj\r\nslavomam\r\nSlavomír\r\nSlavomírův\r\nSlavonice\r\nSlavonicko\r\nslavonický\r\nSlavonie\r\nSlavoňov\r\nslavoňovský\r\nslavonský\r\nSlavošov\r\nslavošovský\r\nslávychtivý\r\nslazení\r\nslazený\r\nslazený\r\nslečinka\r\nslečinkovský\r\nslečna\r\nsled\r\nsledovací\r\nsledovanější\r\nsledování\r\nsledovaný\r\nsledovat\r\nsledovatelný\r\nsledovnaný\r\nsledový\r\nsleďový\r\nsleď\r\nsledující\r\nsleďův\r\nsléhání\r\nsléhaný\r\nsléhat\r\nslehávání\r\nsléhávání\r\nslehávaný\r\nsléhávat\r\nslehávat\r\nslehlý\r\nslehnout\r\nslehnutí\r\nslehnutý\r\nslech\r\nslechový\r\nslejška\r\nSlemeno\r\nslepcův\r\nslepecký\r\nslepectví\r\nslepec\r\nslepečtější\r\nslepější\r\nslepencový\r\nslepenec\r\nslepenější\r\nslepenina\r\nslepení\r\nslepený\r\nslepice\r\nslepičárna\r\nslepičí\r\nSlepička\r\nslepička\r\nSlepičková\r\nSlepičkův\r\nslepit\r\nslepka\r\nslepnout\r\nslepnutí\r\nslepohluchý\r\nslepota\r\nslepovací\r\nslepování\r\nslepovaný\r\nslepovat\r\nslepýš\r\nslepýšův\r\nslepý\r\nslepý\r\nslétání\r\nslétaný\r\nslétat\r\nslétávání\r\nslétávat\r\nsletění\r\nsletěný\r\nsletět\r\nslet\r\nsletiště\r\nslétnout\r\nslétnutí\r\nsletování\r\nsletovaný\r\nsletovat\r\nsletový\r\nslévačský\r\nslévačství\r\nslevač\r\nslévač\r\nslevačův\r\nslévačův\r\nslévající\r\nslévání\r\nslévaný\r\nslévarenský\r\nslévárenský\r\nslévárenství\r\nslévárna\r\nslévatelný\r\nslévat\r\nslévavý\r\nsleva\r\nslevení\r\nslevenka\r\nslevený\r\nslevit\r\nslevování\r\nslevovaný\r\nslevovat\r\nslevový\r\nSlezáček\r\nSlezáčková\r\nSlezáčkův\r\nslézající\r\nSlezáková\r\nSlezák\r\nSlezákův\r\nSlezančin\r\nslézanější\r\nslézání\r\nSlezanka\r\nSlezan\r\nSlezanův\r\nslézaný\r\nslézat\r\nslezenější\r\nslezení\r\nslezený\r\nslez\r\nsléz\r\nslezina\r\nsleziník\r\nsleziníkový\r\nslezinný\r\nslézovitý\r\nslézový\r\nSlezsko\r\nslezský\r\nslézt\r\nsliačský\r\nSliač\r\nslíbání\r\nslíbaný\r\nslíbatelnější\r\nslíbat\r\nslíbení\r\nslíbený\r\nslib\r\nslíbit\r\nslibnější\r\nslibný\r\nslibování\r\nslibovaný\r\nslibovaný\r\nslibovat\r\nslibovávání\r\nslibovávat\r\nslibový\r\nslibující\r\nslícování\r\nslícovaný\r\nslícovat\r\nsličnější\r\nsličný\r\nslída\r\nslídění\r\nslídiččin\r\nslídička\r\nslídičský\r\nslídičství\r\nslídič\r\nslídičův\r\nslídil\r\nslídilův\r\nslídit\r\nslídivější\r\nslídivost\r\nslídivý\r\nslídnatý\r\nslídový\r\nslimáček\r\nslimáčkův\r\nslimák\r\nslimákův\r\nslina\r\nslínek\r\nslinění\r\nsliněný\r\nslín\r\nslinící\r\nslinit\r\nslinivka\r\nslinka\r\nslinkovanější\r\nslinkování\r\nslinkovaný\r\nslinkovat\r\nslinkovávání\r\nslinkovávaný\r\nslinkovávat\r\nslínkový\r\nslinný\r\nslinovací\r\nslinování\r\nslinovaný\r\nslinovat\r\nslinovatelný\r\nslínovcový\r\nslínovec\r\nslínový\r\nslintáček\r\nslintající\r\nslinták\r\nslintání\r\nslintaný\r\nslinta\r\nslintat\r\nslintávání\r\nslintávat\r\nslintavka\r\nslintavý\r\nslintův\r\nslinutina\r\nslinutý\r\nslípka\r\nslipr\r\nslipy\r\nslisování\r\nslisovaný\r\nslisovat\r\nslisovávat\r\nslítání\r\nslítaný\r\nslítat\r\nslítávat\r\nslít\r\nslitější\r\nslitek\r\nslitina\r\nslitinový\r\nslití\r\nslítnout\r\nslítnutí\r\nslit\r\nslitování\r\nslitovaný\r\nslitovat\r\nslitovnější\r\nslitovný\r\nslitý\r\nslitý\r\nslívanější\r\nslívání\r\nslívaný\r\nSlíva\r\nslívat\r\nslíva\r\nSlivka\r\nslivka\r\nSlivková\r\nSlivkův\r\nSlivno\r\nslivoňový\r\nslivoň\r\nSlívová\r\nslivovice\r\nslivovicový\r\nslivovička\r\nslívový\r\nSlívův\r\nslízat\r\nslízávat\r\nsliz\r\nslizký\r\nsliznatka\r\nsliznice\r\nslizniční\r\nslíznout\r\nslíznutí\r\nslíznutý\r\nslizovatý\r\nslizovitý\r\nslizový\r\nslogan\r\nsloha\r\nsloh\r\nslohotvorný\r\nslohovější\r\nslohový\r\nsloj\r\nsloka\r\nslonice\r\nsloní\r\nslonovina\r\nslonovinový\r\nSlonoviny\r\nslonový\r\nslon\r\nslonův\r\nslopenský\r\nSlopné\r\nslosovací\r\nslosování\r\nslosovaný\r\nslosovat\r\nslosovatelnější\r\nslosovatelný\r\nslota\r\nslot\r\nsloučenější\r\nsloučenina\r\nsloučení\r\nsloučený\r\nsloučit\r\nslouha\r\nslouhův\r\nSloupa\r\nsloupání\r\nsloupaný\r\nsloupat\r\nsloupávání\r\nsloupávaný\r\nsloupávat\r\nsloupcovitý\r\nsloupcovka\r\nsloupcový\r\nsloupec\r\nsloupeček\r\nsloupečkovitý\r\nsloupek\r\nsloup\r\nsloupkař\r\nsloupkařův\r\nsloupkování\r\nsloupkovaný\r\nsloupkovat\r\nsloupkovitý\r\nsloupkový\r\nSloupnice\r\nsloupnický\r\nSloupno\r\nsloupnout\r\nsloupnutí\r\nsloupnutý\r\nsloupořadí\r\nSloupová\r\nsloupoví\r\nsloupovitý\r\nsloupový\r\nSloup\r\nSloupův\r\nslout\r\nsloužení\r\nsloužený\r\nsloužící\r\nsloužit\r\nSlovácko\r\nSlovácký\r\nslovácký\r\nSlováček\r\nSlováčková\r\nSlováčkův\r\nslovakismus\r\nslovakista\r\nslovakistčin\r\nslovakistický\r\nslovakističin\r\nslovakistika\r\nslovakistka\r\nslovakistův\r\nslovakizace\r\nSlovakofarma\r\nSlováková\r\nSlovák\r\nSlovák\r\nSlovákův\r\nslovákův\r\nslovanista\r\nslovanistčin\r\nslovanistka\r\nslovanistův\r\nSlovanka\r\nslovanofilský\r\nslovanofilství\r\nslovan\r\nslovanský\r\nslovanství\r\nslovanstvo\r\nslovanština\r\nslovanův\r\nSlovart\r\nSlovenčin\r\nSlovenka\r\nSlovensko\r\nslovenský\r\nslovenský\r\nslovenština\r\nslovesnost\r\nslovesný\r\nsloveso\r\nslovíčkářčin\r\nslovíčkaření\r\nslovíčkařit\r\nslovíčkářka\r\nslovíčkářství\r\nslovíčkář\r\nslovíčkářův\r\nslovíčko\r\nSlovincův\r\nslovincův\r\nSlovinčin\r\nSlovinec\r\nSlovinka\r\nSlovinsko\r\nslovinský\r\nslovinský\r\nslovinština\r\nSlovnaft\r\nslovnědruhový\r\nslovnější\r\nslovníček\r\nslovnikářčin\r\nslovníkářčin\r\nslovnikářka\r\nslovníkářka\r\nslovníkářský\r\nslovnikářství\r\nslovníkářství\r\nslovnikář\r\nslovníkář\r\nslovnikářův\r\nslovníkářův\r\nslovník\r\nslovníkový\r\nslovní\r\nslovní\r\nslovo\r\nslovosled\r\nslovosledný\r\nslovotvorba\r\nslovotvorný\r\nslovutnější\r\nslovutný\r\nslowfox\r\nslowfoxový\r\nslowrockový\r\nsloženina\r\nsložení\r\nsloženka\r\nsložený\r\nSložilová\r\nSložil\r\nSložilův\r\nsložiště\r\nsložit\r\nsložitější\r\nsložitelnější\r\nsložitel\r\nsložitelův\r\nsložitý\r\nsložka\r\nsložkový\r\nslož\r\nslučitelnější\r\nslučitelný\r\nslučivý\r\nslučí\r\nslučka\r\nslučovací\r\nslučování\r\nslučovaný\r\nslučovat\r\nslučující\r\nsluha\r\nsluhův\r\nsluchadlo\r\nsluchátko\r\nsluchátkový\r\nsluch\r\nsluchorovnovážný\r\nsluchový\r\nsluj\r\nSluka\r\nsluka\r\nSluková\r\nslukovitý\r\nSlukův\r\nslum\r\nslumový\r\nslůňátko\r\nslunce\r\nsluncepisný\r\nsluncovka\r\nsluncový\r\nslůněcí\r\nslunečenský\r\nslunéčko\r\nSlunečko\r\nSlunéčko\r\nSlunečková\r\nSlunéčková\r\nslunéčkový\r\nSlunečkův\r\nSlunéčkův\r\nSlunečná\r\nslunečnější\r\nslunečnice\r\nslunečnicový\r\nslunečníček\r\nslunečník\r\nsluneční\r\nslunečný\r\nslůně\r\nslunění\r\nsluněný\r\nslunící\r\nsluníčko\r\nslunit\r\nslunka\r\nslunnější\r\nslunný\r\nslunovrat\r\nslunovratový\r\nslupička\r\nslupka\r\nslupnout\r\nslupnutí\r\nslupnutý\r\nslupovací\r\nslušení\r\nslušet\r\nslušivější\r\nslušivý\r\nslušnější\r\nslušný\r\nSlušovice\r\nslušovický\r\nslušovický\r\nslutí\r\nslůvko\r\nslužba\r\nslužbička\r\nslužbukonající\r\nslužebna\r\nslužebnější\r\nslužebnice\r\nslužebnictví\r\nslužebnictvo\r\nslužebníček\r\nslužebníčkování\r\nslužebníčkovat\r\nslužebníčkův\r\nslužebník\r\nslužebníkův\r\nslužební\r\nslužebný\r\nSluževský\r\nslužka\r\nslužný\r\nSlužovice\r\nslužovický\r\nslužtička\r\nslýchání\r\nslýchaný\r\nslýchaný\r\nslýchat\r\nslýchávání\r\nslýchávaný\r\nslýchávat\r\nslynout\r\nslynutí\r\nslyšenější\r\nslyšení\r\nslyšený\r\nslyšet\r\nslyšící\r\nslyšitelnější\r\nslyšitelný\r\nslyšnější\r\nslzavější\r\nslzavý\r\nslza\r\nslzení\r\nslzení\r\nslzet\r\nslzící\r\nslzička\r\nslzný\r\nslzotvorný\r\nsmáčecí\r\nsmáčedlo\r\nsmaček\r\nsmáčení\r\nsmáčený\r\nsmáčet\r\nsmáčivý\r\nsmačkání\r\nsmačkaný\r\nsmačkat\r\nsmáčknout\r\nsmáčknutí\r\nsmačknutý\r\nsmáčknutý\r\nsmajlík\r\nsmaltér\r\nsmaltérství\r\nsmaltérův\r\nsmalt\r\nsmaltování\r\nsmaltovaný\r\nsmaltovat\r\nsmaltovna\r\nsmaltový\r\nsmání\r\nsmaragd\r\nsmaragdový\r\nsmát\r\nsmávání\r\nsmávat\r\nsmavější\r\nsmavý\r\nsmazanější\r\nsmazání\r\nsmazaný\r\nsmazat\r\nsmazatelnější\r\nsmazatelný\r\nsmazávající\r\nsmazávání\r\nsmazávaný\r\nsmazávat\r\nsmaženice\r\nsmaženina\r\nsmažení\r\nsmaženka\r\nsmažený\r\nsmažit\r\nsmečařčin\r\nsmečařka\r\nsmečař\r\nsmečařův\r\nsmečka\r\nSmečno\r\nsmečování\r\nsmečovaný\r\nsmečovat\r\nsmečovávat\r\nsmeč\r\nsmečující\r\nSmědá\r\nsmejčení\r\nsmejčený\r\nsmejčit\r\nsmějící\r\nSmejkalová\r\nSmejkal\r\nSmejkalův\r\nSmékalová\r\nSmékal\r\nSmékalův\r\nsmekání\r\nsmekat\r\nsmekávání\r\nsmekávaný\r\nsmekávat\r\nsmekavý\r\nsmeknout\r\nsmeknutí\r\nsmeknutý\r\nsmělejší\r\nsmělek\r\nSmělý\r\nsmělý\r\nsměnárenský\r\nsměnárenství\r\nsměnárna\r\nsměnárník\r\nsměnárníkův\r\nsměna\r\nsměnečník\r\nsměnečníkův\r\nsměnečný\r\nsměnější\r\nsměněnější\r\nsměnění\r\nsměněný\r\nsmění\r\nsměnit\r\nsměnitelnější\r\nsměnitelný\r\nsměnka\r\nsměnkový\r\nsměnnější\r\nsměnný\r\nsměnný\r\nsměňovanější\r\nsměňování\r\nsměňovaný\r\nsměňovat\r\nsměňovávat\r\nsměnový\r\nsměňující\r\nsměr\r\nsměrnice\r\nsměrnicový\r\nsměrník\r\nsměrný\r\nsměrodatnější\r\nsměrodatný\r\nsměrovací\r\nsměrovač\r\nsměrovanější\r\nsměrování\r\nsměrování\r\nsměrovaný\r\nsměrovat\r\nsměrovatelnější\r\nsměrovatelný\r\nsměrovávání\r\nsměrovávaný\r\nsměrovávat\r\nsměrovější\r\nsměrovka\r\nsměrový\r\nsměrový\r\nsměrující\r\nsměřování\r\nsměřovaný\r\nsměřovat\r\nsměřovávat\r\nsměřující\r\nsměsice\r\nsměs\r\nsměska\r\nsměskový\r\nsměsný\r\nsměsovací\r\nsměsování\r\nsměsovaný\r\nsměsovat\r\nsměsový\r\nsmést\r\nsměstnání\r\nsměstnaný\r\nsměstnatelný\r\nsměstnat\r\nsměstnávání\r\nsměstnávaný\r\nsměstnávat\r\nsměšnější\r\nsměšný\r\nsměšovací\r\nsměšovač\r\nsměšování\r\nsměšovaný\r\nsměšovat\r\nsměšující\r\nsmetáček\r\nsmetající\r\nsmět\r\nsmeták\r\nSmetáková\r\nsmetákový\r\nSmeták\r\nSmetákův\r\nSmetana\r\nsmetana\r\nSmetánek\r\nsmetání\r\nsmetanka\r\nsmetánka\r\nSmetánková\r\nsmetánkový\r\nSmetánkův\r\nSmetanová\r\nsmetanovcův\r\nsmetanovec\r\nsmetanový\r\nSmetanův\r\nsmetaný\r\nsmetat\r\nsmetávání\r\nsmetávaný\r\nsmetávat\r\nsmetení\r\nsmetený\r\nsmetí\r\nsmetiště\r\nSmiček\r\nSmičková\r\nSmičkův\r\nsmíchání\r\nsmíchaný\r\nsmíchat\r\nsmíchávání\r\nsmíchávaný\r\nsmíchávat\r\nsmích\r\nSmíchov\r\nsmíchovský\r\nsmíchovský\r\nsmíchy\r\nsmilka\r\nSmilkov\r\nsmilkovský\r\nsmilkový\r\nsmilnější\r\nsmilnění\r\nsmilněný\r\nsmilník\r\nsmilníkův\r\nsmilnit\r\nsmilný\r\nsmilování\r\nsmilovaný\r\nsmilovat\r\nsmilovávání\r\nsmilovávaný\r\nsmilovávat\r\nSmilovice\r\nsmilovický\r\nsmilstvo\r\nsmírčí\r\nsmirek\r\nsmír\r\nsmirkovací\r\nsmirkování\r\nsmirkovaný\r\nsmirkovat\r\nsmirkový\r\nsmírnější\r\nsmírný\r\nsmířenější\r\nsmíření\r\nsmířený\r\nSmiřice\r\nsmiřický\r\nSmiřický\r\nsmířit\r\nsmiřitelnější\r\nsmiřitelný\r\nsmířlivcův\r\nsmířlivec\r\nsmířlivější\r\nsmířlivý\r\nsmiřovací\r\nsmiřovačka\r\nsmiřování\r\nsmiřovaný\r\nsmiřovat\r\nsmiřovatel\r\nsmiřovatelův\r\nsmiřovávat\r\nsmiřující\r\nsmísení\r\nsmísit\r\nsmísitelnější\r\nsmísitelný\r\nsmíšek\r\nSmíšek\r\nsmíšenější\r\nsmíšenina\r\nsmíšení\r\nsmíšený\r\nSmíšková\r\nSmíškův\r\nsmíškův\r\nSmítalová\r\nSmítal\r\nSmítalův\r\nSmith\r\nSmithův\r\nsmítko\r\nsmixování\r\nsmixovaný\r\nsmixovat\r\nsmlčení\r\nsmlčet\r\nsmlčování\r\nsmlouvání\r\nsmlouvaný\r\nsmlouvat\r\nsmlouvavý\r\nsmlouva\r\nsmlsnout\r\nsmlsnutí\r\nsmluv\r\nsmluvenější\r\nsmluvení\r\nsmluvený\r\nsmluvit\r\nsmluvní\r\nsmočení\r\nsmočený\r\nsmočit\r\nsmočitelný\r\nsmog\r\nsmogový\r\nsmoking\r\nsmokink\r\nsmokinkový\r\nsmokvoň\r\nSmola\r\nsmolařčin\r\nsmolařka\r\nsmolařský\r\nsmolařství\r\nsmolař\r\nsmolařův\r\nsmola\r\nSmolčáková\r\nSmolčák\r\nSmolčákův\r\nsmolení\r\nsmolený\r\nsmolící\r\nSmolíček\r\nSmolíčkův\r\nSmolíková\r\nSmolík\r\nSmolíkův\r\nsmolinec\r\nSmolinek\r\nsmolinka\r\nSmolinková\r\nSmolinkův\r\nsmolit\r\nsmolivecký\r\nSmolivec\r\nSmoljaková\r\nSmoljak\r\nSmoljakův\r\nSmolka\r\nsmolka\r\nSmolková\r\nSmolkův\r\nsmolnatější\r\nsmolnička\r\nSmolný\r\nsmolný\r\nSmolová\r\nsmolový\r\nSmolův\r\nsmontování\r\nsmontovaný\r\nsmontovat\r\nsmontovatelnější\r\nsmontovatelný\r\nsmontovávání\r\nsmontovávaný\r\nsmontovávat\r\nsmotání\r\nsmotaný\r\nsmotat\r\nsmotávací\r\nsmotávání\r\nsmotávaný\r\nsmotávat\r\nsmotek\r\nsmrad\r\nSmradláková\r\nSmradlák\r\nSmradlákův\r\nsmradlavka\r\nsmradlavý\r\nsmraďoch\r\nsmraďochův\r\nsmrákající\r\nsmrákalo\r\nsmráká\r\nsmrákání\r\nsmrákat\r\nsmrákávání\r\nsmrákávat\r\nSmrček\r\nsmrček\r\nsmrčenský\r\nsmrčina\r\nsmrčinový\r\nsmrčí\r\nSmrčka\r\nsmrčka\r\nSmrčková\r\nsmrčkový\r\nSmrčkův\r\nSmrčná\r\nSmrčné\r\nsmrdění\r\nsmrdět\r\nsmrdící\r\nsmrdutější\r\nsmrdutý\r\nsmrkání\r\nsmrkaný\r\nsmrkat\r\nsmrkávání\r\nsmrkávaný\r\nsmrkávat\r\nsmrk\r\nsmrknout\r\nsmrkovější\r\nSmrkovice\r\nsmrkovický\r\nSmrkovský\r\nsmrkový\r\nsmrskávat\r\nsmrsknout\r\nsmrsknutí\r\nsmrsknutý\r\nsmrskovat\r\nsmrštěnější\r\nsmrštění\r\nsmrštěný\r\nsmrštit\r\nsmrštitelnější\r\nsmrštivý\r\nsmršťovací\r\nsmršťovanější\r\nsmršťování\r\nsmršťovaný\r\nsmršťovat\r\nsmršťující\r\nsmršť\r\nsmrt\r\nsmrtelnější\r\nsmrtelník\r\nsmrtelníkův\r\nsmrtelný\r\nsmrtholka\r\nsmrti\r\nsmrtí\r\nsmrticí\r\nsmrtící\r\nsmrtička\r\nsmrtihlav\r\nsmrtihlavův\r\nsmrtích\r\nsmrtím\r\nsmrtka\r\nsmrtmi\r\nsmrtný\r\nsmrtonosnější\r\nsmrtonosný\r\nsmrtonoš\r\nsmrtonošův\r\nSmržice\r\nsmržický\r\nSmržová\r\nSmržovka\r\nsmržovka\r\nSmržov\r\nsmržovský\r\nsmržový\r\nsmrž\r\nSmrž\r\nSmržův\r\nSMS\r\nSMTP\r\nsmůla\r\nsmutečnější\r\nsmuteční\r\nsmutek\r\nsmuten\r\nsmutna\r\nsmutnější\r\nsmutnění\r\nsmutni\r\nsmutnící\r\nsmutnit\r\nsmutno\r\nsmutnu\r\nsmutny\r\nSmutný\r\nsmutný\r\nsmýcení\r\nsmyčcový\r\nsmyčec\r\nsmýčení\r\nsmýčený\r\nsmýčit\r\nsmyčka\r\nsmyčkovitý\r\nsmyčkový\r\nsmykadlo\r\nsmýkadlo\r\nsmýkající\r\nsmýkání\r\nsmýkaný\r\nsmýkat\r\nsmýkavý\r\nsmyk\r\nsmyknout\r\nsmýknout\r\nsmýknutí\r\nsmykovější\r\nsmykový\r\nSmyrna\r\nsmyslet\r\nsmysl\r\nsmysl\r\nsmyslit\r\nsmyslnější\r\nsmyslný\r\nsmyslový\r\nsmyslový\r\nsmyslu\r\nsmysluplnější\r\nsmysluplný\r\nsmysluprázdný\r\nsmyšlející\r\nsmýšlející\r\nsmyšlenější\r\nsmyšlenější\r\nsmýšlení\r\nsmyšlenka\r\nsmyšlen\r\nsmyšlený\r\nsmýšlený\r\nsmýšlet\r\nsmýt\r\nsmytější\r\nsmytelnější\r\nsmytelný\r\nsmytí\r\nsmytý\r\nsmytý\r\nsmývačka\r\nsmývač\r\nsmývačův\r\nsmývající\r\nsmývanější\r\nsmývání\r\nsmývaný\r\nsmývatelnější\r\nsmývatelný\r\nsmývat\r\nSN\r\nSn\r\nsna\r\nsnad\r\nsnadnější\r\nsnadný\r\nsnaha\r\nsnách\r\nsnacha\r\nsnak\r\nsňal\r\nsnář\r\nsnášecí\r\nsnášející\r\nsnášenější\r\nsnášení\r\nsnášenlivější\r\nsnášenlivý\r\nsnášený\r\nsnášet\r\nsnašin\r\nsnáška\r\nsnáškový\r\nsňatečnost\r\nsňatečný\r\nsňatější\r\nsňatek\r\nsňatkový\r\nsňat\r\nsňatý\r\nsňatý\r\nsnáz\r\nsnáze\r\nsnazší\r\nsnažení\r\nsnažený\r\nsnažící\r\nsnažit\r\nsnaživcův\r\nsnaživec\r\nsnaživější\r\nsnaživý\r\nsnažnější\r\nsnažný\r\nSNB\r\nsněději\r\nsnědější\r\nsnědenější\r\nsnědení\r\nsnědený\r\nsnědku\r\nsnědší\r\nsnědý\r\nsněhem\r\nsněhobílejší\r\nsněhobílý\r\nsněhovější\r\nsněhovka\r\nsněhový\r\nsněhu\r\nsněhů\r\nsněhuláček\r\nsněhuláčkův\r\nsněhulák\r\nsněhulákův\r\nSněhulčin\r\nSněhulka\r\nsněhům\r\nSněhurčin\r\nSněhurka\r\nsněhy\r\nsněm\r\nsněmování\r\nsněmovat\r\nsněmovávat\r\nsněmovna\r\nsněmovník\r\nsněmovníkův\r\nsněmovní\r\nsněmový\r\nsnění\r\nsnění\r\nsněný\r\nsněrovadlo\r\nsnesenější\r\nsnesení\r\nsnesený\r\nsnesitelnější\r\nsnesitelný\r\nsnést\r\nsnětivý\r\nsnětlivý\r\nsněť\r\nsnězích\r\nsněžení\r\nsněžení\r\nsněženka\r\nsněženkový\r\nsněženský\r\nsněžit\r\nSněžka\r\nSněžné\r\nsněžnice\r\nsněžnický\r\nSněžník\r\nsněžný\r\nsnící\r\nsnídaně\r\nsnídáníčko\r\nsnídání\r\nsnídaný\r\nsnídat\r\nsnídávání\r\nsnídávaný\r\nsnídávat\r\nsníh\r\nsnílek\r\nsnílkovství\r\nsnílkův\r\nsnímací\r\nsnímač\r\nsnímající\r\nsnímanější\r\nsnímání\r\nsnímaný\r\nsnímatelnější\r\nsnímatelný\r\nsnímat\r\nsnímeček\r\nsnímek\r\nsnímka\r\nsnímkování\r\nsnímkovaný\r\nsnímkovat\r\nsnímkovávání\r\nsnímkovávaný\r\nsnímkovávat\r\nsnímkový\r\nsníst\r\nsnít\r\nSnítilý\r\nsnít\r\nsnítka\r\nsnívání\r\nsnívaný\r\nsnívat\r\nsnivější\r\nsnivý\r\nSnížek\r\nsnížek\r\nsníženější\r\nsníženina\r\nsnížení\r\nsnížený\r\nsnížit\r\nsnížitelný\r\nSnížková\r\nSnížkův\r\nsnižování\r\nsnižovaný\r\nsnižovat\r\nsnižující\r\nSNMP\r\nsnobárna\r\nsnobismus\r\nsnobistický\r\nsnob\r\nsnobský\r\nsnobství\r\nsnobštější\r\nsnobův\r\nSnopek\r\nsnopek\r\nsnop\r\nSnopková\r\nsnopkový\r\nSnopkův\r\nsnos\r\nsnoubencův\r\nsnoubenecký\r\nsnoubenec\r\nsnoubení\r\nsnoubenka\r\nsnoubený\r\nsnoubící\r\nsnoubit\r\nsnovací\r\nsnovaččin\r\nsnovačka\r\nsnování\r\nsnovaný\r\nsnovat\r\nsnový\r\nsnowboardista\r\nsnowboardistčin\r\nsnowboardistka\r\nsnowboardistův\r\nsnožení\r\nsnožený\r\nsnožit\r\nsnožka\r\nsnožmo\r\nsnožný\r\nsnožování\r\nsnožovaný\r\nsnožovat\r\nSNP\r\nSNR\r\nSNS\r\nSNTL\r\nsnubní\r\nsnující\r\nsnůpek\r\nsnůška\r\nsnůškový\r\nsnýtovanější\r\nsnýtování\r\nsnýtovaný\r\nsnýtovat\r\nsnýtovatelnější\r\nsnýtovatelný\r\nsobcův\r\nsobě\r\nsobecký\r\nsobectví\r\nsobec\r\nsobečtější\r\nSoběhrdová\r\nSoběhrd\r\nSoběhrdův\r\nSoběnov\r\nsoběnovský\r\nsoběpodobný\r\nsoběpostačující\r\nSoběslavice\r\nsoběslavický\r\nSoběslav\r\nSoběslavův\r\nsoběstačnější\r\nsoběstačný\r\nsobestačný\r\nsoběstředný\r\nSoběšice\r\nsoběšický\r\nSoběšín\r\nsoběšínský\r\nSobešovice\r\nsobešovický\r\nSobíňov\r\nsobíňovský\r\nsobí\r\nsobolí\r\nsobolový\r\nsobol\r\nsobolův\r\nSobota\r\nsobota\r\nsobotecký\r\nsobotěnka\r\nSobotín\r\nsobotínský\r\nSobotiště\r\nsobotišťský\r\nSobotka\r\nSobotka\r\nSobotková\r\nSobotkův\r\nsobotní\r\nSobotová\r\nSobotův\r\nsob\r\nsobův\r\nsoc\r\nsociáldemokratický\r\nsociáldemokratismus\r\nsociálfašismus\r\nsociálfašista\r\nsociálfašistčin\r\nsociálfašistický\r\nsociálfašističtější\r\nsociálfašistka\r\nsociálfašistův\r\nsociálimperialističtější\r\nsocialismus\r\nsocialista\r\nsocialistčin\r\nsocialistický\r\nsocialističtější\r\nsocialistka\r\nsocialistův\r\nsocializace\r\nsocializační\r\nsocializování\r\nsocializovaný\r\nsocializovat\r\nsocializující\r\nsociálka\r\nsociálnědemokratický\r\nsociálněekonomický\r\nsociálněgeografický\r\nsociálněhospodářský\r\nsociálnější\r\nsociální\r\nsociálový\r\nsociál\r\nsociálův\r\nsociobiologický\r\nsocioekologický\r\nsocioekomický\r\nsocioekonomický\r\nsocioekosféra\r\nsocioinformatický\r\nsocioinformatičtější\r\nsociokulturní\r\nsociolekt\r\nsociolingvista\r\nsociolingvistčin\r\nsociolingvistický\r\nsociolingvistika\r\nsociolingvistka\r\nsociolingvistův\r\nsociologický\r\nsociologičtější\r\nsociologie\r\nsociologismus\r\nsociologizující\r\nsociolog\r\nsociologův\r\nsocioložčin\r\nsocioložka\r\nsociometrický\r\nsociometričtější\r\nsociopatogenní\r\nsociopsychologický\r\nsociopsychologie\r\nsociopsycholog\r\nsociopsychologův\r\nsociopsycholožčin\r\nsociopsycholožka\r\nsociotechnika\r\nsocioterapeutický\r\nsocrealismus\r\nsocrealista\r\nsocrealistčin\r\nsocrealistický\r\nsocrealistka\r\nsocrealistův\r\nSOČ\r\nsočit\r\nsočský\r\nSoč\r\nsodalitový\r\nsoda\r\nsodík\r\nsodíkový\r\nsodnohlinitý\r\nsodný\r\nSodoma\r\nSodoma\r\nsodoma\r\nSodomka\r\nSodomková\r\nSodomkův\r\nSodomová\r\nsodomský\r\nSodomův\r\nsodovkárna\r\nsodovka\r\nsodovkový\r\nsodový\r\nSOF\r\nsofa\r\nSofie\r\nsofismus\r\nsofista\r\nsofistčin\r\nsofistický\r\nsofistika\r\nsofistikovanější\r\nsofistikovaný\r\nsofistka\r\nsofistův\r\nsoftbal\r\nsoftbalista\r\nsoftbalistčin\r\nsoftbalistka\r\nsoftbalistův\r\nsoftball\r\nsoftballový\r\nsoftbalový\r\nsoftware\r\nsoftwarový\r\nsoftwarový\r\nsochání\r\nsochaný\r\nSocha\r\nsochařčin\r\nsochařka\r\nsochařský\r\nsochařství\r\nsochař\r\nsochařův\r\nsochat\r\nsocha\r\nsochor\r\nSochorová\r\nsochorový\r\nSochor\r\nSochorův\r\nSochová\r\nSochův\r\nsoja\r\nsója\r\nsojčí\r\nSojka\r\nsojka\r\nSojková\r\nSojkův\r\nSojovice\r\nsojovický\r\nSojovský\r\nsojový\r\nsójový\r\nsoket\r\nsoketový\r\nsokl\r\nsoklový\r\nsokolčin\r\nsokoliště\r\nsokolí\r\nsokolka\r\nSokolnice\r\nsokolnický\r\nsokolnický\r\nsokolnictví\r\nsokolničtější\r\nsokolník\r\nsokolníkův\r\nSokolová\r\nsokolovecký\r\nSokolovec\r\nsokolovitý\r\nSokolov\r\nsokolovna\r\nSokolovsko\r\nsokolovský\r\nsokolový\r\nsokol\r\nSokol\r\nsokolský\r\nsokolství\r\nsokolstvo\r\nSokolův\r\nsokolův\r\nsokový\r\nsok\r\nsokův\r\nsokyně\r\nsokynin\r\nsolamyl\r\nsolanecký\r\nSolanec\r\nsolanka\r\nsolar\r\nsolarium\r\nsolárium\r\nsolární\r\nSolárová\r\nSolár\r\nSolárův\r\nSolařová\r\nSolař\r\nSolařův\r\nSoldánová\r\nSoldán\r\nSoldánův\r\nsoldateska\r\nSoldátová\r\nSoldát\r\nSoldátův\r\nsolemi\r\nsolenější\r\nSolenice\r\nSolenice\r\nsolenický\r\nsolení\r\nsolenoid\r\nsolenoidový\r\nsolený\r\nSolfronková\r\nSolfronk\r\nSolfronkův\r\nsol\r\nsoli\r\nsolí\r\nsolidarismus\r\nsolidarita\r\nsolidarizování\r\nsolidarizovaný\r\nsolidarizovat\r\nsolidárnější\r\nsolidární\r\nsolidifikace\r\nsolidifikovaný\r\nsolidnější\r\nsolidní\r\nsolích\r\nsolím\r\nsolipsismus\r\nsolipsista\r\nsolipsistčin\r\nsolipsistický\r\nsolipsistka\r\nsolipsistův\r\nsolista\r\nsólista\r\nsolistčin\r\nsólistčin\r\nsólističtější\r\nsolistka\r\nsólistka\r\nsolistův\r\nsólistův\r\nsolit\r\nsoliter\r\nsolitér\r\nsolívání\r\nsolívaný\r\nsolívat\r\nsolmizace\r\nsolmizační\r\nsolmizování\r\nsolmizovaný\r\nsolmizovat\r\nSolnice\r\nsolnický\r\nSolnička\r\nsolnička\r\nSolničková\r\nSolničkův\r\nsolní\r\nSolnohrad\r\nsolnohradský\r\nsolný\r\nsólokapr\r\nsólokaprův\r\nsólolezcův\r\nsólolezec\r\nsololit\r\nsololitový\r\nsólo\r\nsólový\r\nsoluce\r\nsólující\r\nsoluňský\r\nSoluň\r\nsolux\r\nsolventnější\r\nsolventní\r\nSomálcův\r\nSomálčin\r\nSomálec\r\nSomálka\r\nSomálsko\r\nsomálský\r\nsomálština\r\nsomatický\r\nsomatičtější\r\nsomatologický\r\nsomatologie\r\nsomatolog\r\nsomatologův\r\nsomatoložčin\r\nsomatoložka\r\nsomatopedie\r\nsomatrophin\r\nsombrero\r\nSommerová\r\nSommer\r\nSommerův\r\nSommra\r\nSommre\r\nSommrech\r\nSommrem\r\nSommrové\r\nSommrovi\r\nSommrů\r\nSommrům\r\nSommry\r\nsomnambulismus\r\nsomrák\r\nsomrákův\r\nsomrování\r\nsomrovat\r\nSomrová\r\nSomr\r\nSomrův\r\nsonant\r\nsonáta\r\nsonatina\r\nsonátový\r\nSoňa\r\nsonda\r\nsondážní\r\nsondáž\r\nsondování\r\nsondovaný\r\nsondovat\r\nsondovávání\r\nsondovávaný\r\nsondovávat\r\nsondující\r\nsonet\r\nsong\r\nsongový\r\nsonický\r\nSoniččin\r\nSonička\r\nSonin\r\nsonograf\r\nsonografický\r\nsonora\r\nsonorizace\r\nsonorní\r\nsopečnatý\r\nsopečný\r\nsopel\r\nsopka\r\nsople\r\nsoplech\r\nsoplem\r\nsopli\r\nsoplích\r\nsoplu\r\nsoplů\r\nsoplům\r\nsoply\r\nsopouch\r\nsoprán\r\nsopranistčin\r\nsopránistčin\r\nsopranistka\r\nsopránistka\r\nsopránový\r\nsopránsaxofonista\r\nsopránsaxofonistčin\r\nsopránsaxofonistka\r\nsopránsaxofonistův\r\nsoptění\r\nsoptěný\r\nsoptit\r\nsorabista\r\nsorabistčin\r\nsorabistka\r\nsorabistův\r\nsorbalit\r\nsorban\r\nsorbent\r\nsorbitanmonolaurát\r\nsorbitanmonooleát\r\nsorbitanmonopalmitát\r\nsorbitanmonostearát\r\nsorbitantrioleát\r\nsorbitantristearát\r\nsorbit\r\nsorbitol\r\nsorbová\r\nSorek\r\nSorková\r\nSorkův\r\nsorpční\r\nsorta\r\nsortimentace\r\nsortiment\r\nsortimentní\r\nSOS\r\nsosáček\r\nsosák\r\nsosání\r\nsosaný\r\nsosat\r\nsosávání\r\nsosávaný\r\nsosávat\r\nSosna\r\nsosna\r\nSosnová\r\nsosnovský\r\nsosnový\r\nSosnův\r\nsostenuto\r\nSOŠ\r\nsoška\r\nsošnější\r\nsošný\r\nsotva\r\nsotvaco\r\nsotvajak\r\nsotvakam\r\nsotvakde\r\nsotvakdo\r\nsotvakdy\r\nsotvaže\r\nSOU\r\nsou\r\nsouběh\r\nsouběhovější\r\nsouběhový\r\nsouběžnější\r\nsouběžný\r\nsoubojový\r\nsouboj\r\nsoubor\r\nsoubornější\r\nsouborný\r\nsouborový\r\nSoubusta\r\nSoubustová\r\nSoubustův\r\nsoucítění\r\nsoucítěný\r\nsoucit\r\nsoucítící\r\nsoucítit\r\nsoucitnější\r\nsoucitný\r\nsoučasnější\r\nsoučasnice\r\nsoučasničin\r\nsoučasník\r\nsoučasníkův\r\nsoučasný\r\nsoučást\r\nsoučástka\r\nsoučástkový\r\nsoučastnější\r\nSouček\r\nsouček\r\nsoučet\r\nsoučin\r\nsoučinitel\r\nsoučinnosti\r\nsoučinnostní\r\nsoučinný\r\nsoučinový\r\nSoučková\r\nSoučkův\r\nsoučtený\r\nsoučtový\r\nsoudce\r\nsoudcování\r\nsoudcovaný\r\nsoudcovat\r\nsoudcovi\r\nsoudcovský\r\nsoudcovství\r\nsoudcující\r\nsoudcův\r\nsoudě\r\nsoudeček\r\nsoudečkovitý\r\nsoudečkový\r\nsoudek\r\nsoudělný\r\nsoud\r\nsoudící\r\nsoudit\r\nsoudívání\r\nsoudívaný\r\nsoudívat\r\nsoudkovitý\r\nsoudkový\r\nsoudkový\r\nsoudkyně\r\nsoudkynin\r\nsoudnější\r\nsoudnický\r\nsoudnictví\r\nsoudnička\r\nsoudničtější\r\nsoudní\r\nsoudný\r\nsoudobější\r\nsoudobý\r\nsoudruh\r\nsoudruhův\r\nsoudružčin\r\nsoudružka\r\nsoudružný\r\nsoudružský\r\nsoudružství\r\nsoudružštější\r\nsoudržnější\r\nsoudržný\r\nsouhlasení\r\nsouhlas\r\nsouhlasící\r\nsouhlasit\r\nsouhláska\r\nsouhláskový\r\nsouhlasnější\r\nsouhlasný\r\nSouhrada\r\nSouhradová\r\nSouhradův\r\nsouhra\r\nsouhrn\r\nsouhrnnější\r\nsouhrnný\r\nsouhvězdí\r\nsouchotinářčin\r\nsouchotinářka\r\nsouchotinářský\r\nsouchotinář\r\nsouchotinářův\r\nsouchotiny\r\nsoukací\r\nsoukadlo\r\nsoukající\r\nsoukání\r\nsoukaný\r\nsoukat\r\nsoukávání\r\nsoukávaný\r\nsoukávat\r\nsoukenice\r\nsoukenický\r\nsoukenictví\r\nsoukeničtější\r\nsoukeník\r\nsoukeníkův\r\nsoukenka\r\nsoukennictví\r\nsoukenný\r\nsoukmenovcův\r\nsoukmenovec\r\nsoukojenka\r\nsoukolí\r\nsoukromější\r\nsoukromí\r\nsoukromnice\r\nsoukromničin\r\nsoukromník\r\nsoukromníkův\r\nsoukromopodnikatelský\r\nsoukromovlastnický\r\nsoukromovlastničtější\r\nsoukromý\r\nSoukupová\r\nSoukup\r\nSoukupův\r\nsoulad\r\nsouladnější\r\nsouladný\r\nsouladu\r\nsoul\r\nsoulový\r\nsouložení\r\nsouložený\r\nsouložící\r\nsouložit\r\nsouložnice\r\nsoulož\r\nsoulující\r\nSoumarová\r\nSoumar\r\nSoumarův\r\nsouměrnější\r\nsouměrný\r\nsouměřitelnější\r\nsouměřitelný\r\nsoumístný\r\nsoumračný\r\nsoumrak\r\nsounáležitý\r\nsoundtrack\r\nSouňov\r\nsouňovský\r\nsounožný\r\nsouostroví\r\nsouosý\r\nsoupeřčin\r\nsoupeření\r\nsoupeřící\r\nsoupeřit\r\nsoupeřivější\r\nsoupeřivý\r\nsoupeřka\r\nsoupeřství\r\nsoupeř\r\nsoupeřův\r\nsoupis\r\nsoupiska\r\nsoupisnice\r\nsoupisový\r\nsoupojistitel\r\nsoupojištění\r\nsouprava\r\nsoupravička\r\nsouproudný\r\nsouproudový\r\nsouproudý\r\nsouputnice\r\nsouputník\r\nsouputníkův\r\nsourodější\r\nsourodý\r\nsourozencův\r\nsourozenecký\r\nsourozenec\r\nsourozenka\r\nsouručenství\r\nsouřadicí\r\nsouřadnice\r\nsouřadnicový\r\nsouřadný\r\nsousedčin\r\nsousedění\r\nsousedící\r\nSousedíková\r\nSousedík\r\nSousedíkův\r\nsousedit\r\nsousedka\r\nsousední\r\nSousedovice\r\nsousedovický\r\nsoused\r\nsousedský\r\nsousedství\r\nsousedstvo\r\nsousedštější\r\nsousedův\r\nsousledný\r\nsousloví\r\nsousoší\r\nsoustátí\r\nsoustava\r\nsoustavnější\r\nsoustavný\r\nsoustečko\r\nsousto\r\nsoustrastích\r\nsoustrastím\r\nsoustrast\r\nsoustrastnější\r\nsoustrastný\r\nsoustrojí\r\nsoustruh\r\nsoustruhování\r\nsoustruhovaný\r\nsoustruhovat\r\nsoustružení\r\nsoustružený\r\nsoustružící\r\nsoustružit\r\nsoustružna\r\nsoustružnice\r\nsoustružnický\r\nsoustružnictví\r\nsoustružničin\r\nsoustružničtější\r\nSoustružníková\r\nsoustružník\r\nSoustružník\r\nSoustružníkův\r\nsoustružníkův\r\nsoustředěnější\r\nsoustředění\r\nsoustředěný\r\nsoustředit\r\nsoustřednější\r\nsoustředný\r\nsoustřeďovací\r\nsoustřeďování\r\nsoustřeďovaný\r\nsoustřeďovat\r\nsoustřeďující\r\nsouška\r\nsouš\r\nsoutěska\r\nsoutěskovitý\r\nsoutěžení\r\nsoutěžený\r\nsoutěžící\r\nsoutěžit\r\nsoutěžitel\r\nsoutěžitelův\r\nsoutěživý\r\nsoutěžní\r\nsoutěž\r\nSouthport\r\nsoutisk\r\nsoutiskový\r\nsoutok\r\nsouvěkovcův\r\nsouvěkovec\r\nsouvěký\r\nsouvěrcův\r\nsouvěrčin\r\nsouvěrec\r\nsouvěrka\r\nsouvěrkyně\r\nsouvěrkynin\r\nsouvětí\r\nsouvětný\r\nsouvisející\r\nsouvisení\r\nsouviset\r\nsouvisící\r\nsouvislejší\r\nsouvislý\r\nsouvislý\r\nsouvrat\r\nsouvrať\r\nsouvrať\r\nsouvrství\r\nsouvztah\r\nsouvztažný\r\nsouzajištění\r\nsouzenější\r\nsouzení\r\nsouzený\r\nsouznačný\r\nsouznějící\r\nsouznění\r\nsouznící\r\nsouznít\r\nsouznívat\r\nsouzvučný\r\nsouzvuk\r\nsouzvukový\r\nsoužení\r\nsoužení\r\nsoužený\r\nsoužit\r\nsoužít\r\nsoužití\r\nsoužívat\r\nSováková\r\nSovák\r\nSovákův\r\nSova\r\nsova\r\nsovět\r\nsovětismus\r\nsovětizování\r\nsovětizovaný\r\nsovětizovat\r\nsovětizující\r\nsovětový\r\nsovětskofinský\r\nsovětskoněmecký\r\nsovětskoněmečtější\r\nsovětský\r\nsovětův\r\nsovchoz\r\nsovchozní\r\nsovice\r\nsoviččin\r\nsovička\r\nSovíková\r\nSovík\r\nSovíkův\r\nsovisející\r\nsoví\r\nSovová\r\nSovův\r\nspacák\r\nspací\r\nSpáčilová\r\nSpáčil\r\nSpáčilův\r\nspáč\r\nspáčův\r\nspadající\r\nspadalý\r\nspadanější\r\nspadání\r\nspadaný\r\nspadat\r\nspadávání\r\nspadávaný\r\nspadávat\r\nspadeno\r\nspadený\r\nspad\r\nspád\r\nspádiště\r\nspadlejší\r\nspadlý\r\nspádnice\r\nspadnout\r\nspadnutí\r\nspádný\r\nspádový\r\nspadový\r\nspáchání\r\nspáchaný\r\nspáchat\r\nspájení\r\nspájený\r\nspájet\r\nspakování\r\nspakovaný\r\nspakovat\r\nspála\r\nspálenější\r\nspálenina\r\nspálení\r\nspáleniště\r\nSpálenka\r\nSpálenková\r\nSpálenkův\r\nSpálený\r\nspálený\r\nspalinový\r\nspaliny\r\nspálit\r\nspalitelnější\r\nspalitelný\r\nspalnější\r\nspalničkový\r\nspalničky\r\nspalný\r\nspal\r\nspalovací\r\nspalovač\r\nspalovačův\r\nspalovanější\r\nspalovaní\r\nspalování\r\nspalovaný\r\nspalovat\r\nspalovávání\r\nspalovávaný\r\nspalovávat\r\nSpálov\r\nspalovna\r\nspálovský\r\nspálový\r\nspalující\r\nspam\r\nspammer\r\nspammerův\r\nspánek\r\nspánembohem\r\nspanilejší\r\nSpanilý\r\nspanilý\r\nspaní\r\nspání\r\nspánkový\r\nSpáňov\r\nspáňovský\r\nspapání\r\nspapaný\r\nspapat\r\nspára\r\nspár\r\nspárkatý\r\nspárka\r\nspárovací\r\nspárování\r\nspárovaný\r\nspárovat\r\nspárovka\r\nSpartak\r\nspartakiáda\r\nspartakiádní\r\nSpartakus\r\nSpartakův\r\nSparťančin\r\nSparťanka\r\nsparťan\r\nspartánský\r\nsparťanský\r\nsparťanův\r\nsparťaný\r\nSparta\r\nspartský\r\nspaření\r\nspáření\r\nspařený\r\nspářený\r\nspařit\r\nspářit\r\nspařovací\r\nspařovačka\r\nspařování\r\nspařovaný\r\nspařovat\r\nspásající\r\nspásanější\r\nspásání\r\nspásaný\r\nspásatelnější\r\nspásatelný\r\nspásat\r\nspása\r\nspasenější\r\nspasení\r\nspasen\r\nspasený\r\nspasit\r\nspasitelčin\r\nspasitelka\r\nspasitelnější\r\nspasitelný\r\nspasitelský\r\nspasitelství\r\nspasitel\r\nspasitelův\r\nspásl\r\nspasmus\r\nspásný\r\nspásonosnější\r\nspásonosný\r\nspastický\r\nspást\r\nspasu\r\nspat\r\nspát\r\nspatlanější\r\nspatlání\r\nspatlaný\r\nspatlat\r\nspatlávání\r\nspatlávaný\r\nspatlávat\r\nspatný\r\nspatra\r\nspatra\r\nspatřenější\r\nspatření\r\nspatřený\r\nspatřit\r\nspatřování\r\nspatřovaný\r\nspatřovat\r\nspatřovávat\r\nspatřující\r\nspávání\r\nspávat\r\nspavější\r\nspavý\r\nspazmus\r\nSPD\r\nspeciál\r\nspecialista\r\nspecialistčin\r\nspecialistka\r\nspecialistův\r\nspecialita\r\nspecialitka\r\nspecializace\r\nspecializační\r\nspecializovanější\r\nspecializování\r\nspecializovaný\r\nspecializovat\r\nspecializující\r\nspeciálka\r\nspeciálnější\r\nspeciální\r\nspecificita\r\nspecifický\r\nspecifičtější\r\nspecifikace\r\nspecifikační\r\nspecifikátor\r\nspecifikátorův\r\nspecifika\r\nspecifikovanější\r\nspecifikování\r\nspecifikovaný\r\nspecifikovat\r\nspecifikovatelný\r\nspecifikovávání\r\nspecifikovávaný\r\nspecifikovávat\r\nspecifikující\r\nspecifikum\r\nspéct\r\nspečenec\r\nspečenější\r\nspečení\r\nspečený\r\nspediční\r\nspeditér\r\nspeditérův\r\nspěchající\r\nspěchání\r\nspěchat\r\nspěchávání\r\nspěchávat\r\nspěchavý\r\nspěch\r\nSpejbl\r\nSpejblův\r\nspějící\r\nspékací\r\nspékání\r\nspékaný\r\nspékat\r\nspékavý\r\nspektakulární\r\nspekticismus\r\nspektrální\r\nspektrofotometrie\r\nspektrograf\r\nspektrografický\r\nspektrografičtější\r\nspektrografie\r\nspektrogram\r\nspektrochemický\r\nspektrochemičtější\r\nspektrometr\r\nspektrometrický\r\nspektrometričtější\r\nspektrometrie\r\nspektroskop\r\nspektroskopický\r\nspektroskopičtější\r\nspektroskopie\r\nspektrum\r\nspekulace\r\nspekulační\r\nspekulantčin\r\nspekulantka\r\nspekulant\r\nspekulantský\r\nspekulantství\r\nspekulantův\r\nspekulativnější\r\nspekulativní\r\nspekulování\r\nspekulovaný\r\nspekulovat\r\nspekulovávání\r\nspekulovávaný\r\nspekulovávat\r\nspekulující\r\nspeleologický\r\nspeleologie\r\nspeleolog\r\nspeleologův\r\nspeleoložčin\r\nspeleoložka\r\nSpělkov\r\nspělkovský\r\nspelování\r\nspelovaný\r\nspelovat\r\nspelovávání\r\nspelovávaný\r\nspelovávat\r\nspění\r\nspěnka\r\nspěnkový\r\nspermabanka\r\nsperma\r\nspermatékový\r\nspermatický\r\nspermatocyt\r\nspermiace\r\nspermicid\r\nspermicidní\r\nspermie\r\nspermiogeneze\r\nspermiogram\r\nspermiologický\r\nspermotvorba\r\nspesartit\r\nspesartitový\r\nspěšnější\r\nspěšnina\r\nspěšný\r\nspět\r\nspětí\r\nSpěváček\r\nSpěváčková\r\nSpěváčkův\r\nSpěváková\r\nSpěvák\r\nSpěvákův\r\nspící\r\nSpiegel\r\nSpiegelův\r\nspíchnout\r\nspíchnutí\r\nspíchnutý\r\nspiklencův\r\nspiklenčin\r\nspiklenecký\r\nspiklenec\r\nspiklenečtější\r\nspiklenka\r\nspiknout\r\nspiknutí\r\nspiknutý\r\nspíkr\r\nspíkrův\r\nspílající\r\nspílání\r\nspílaný\r\nspílat\r\nSpilka\r\nspilka\r\nSpilková\r\nSpilkův\r\nspilování\r\nspím\r\nspínací\r\nspínač\r\nspínadlo\r\nspínající\r\nspinální\r\nspínání\r\nspínaný\r\nspínat\r\nspínátko\r\nspinel\r\nspinelový\r\nspinet\r\nspin\r\nspinkání\r\nspinkat\r\nspinkávat\r\nspinka\r\nspinový\r\nspirála\r\nspirálka\r\nspirální\r\nspirálovitější\r\nspirálovitý\r\nspirálový\r\nspiritismus\r\nspiritista\r\nspiritistčin\r\nspiritistický\r\nspiritističtější\r\nspiritistka\r\nspiritistův\r\nspiritka\r\nspirituál\r\nspiritualismus\r\nspiritualista\r\nspiritualistčin\r\nspiritualistický\r\nspiritualistka\r\nspiritualistův\r\nspiritualita\r\nspirituálnější\r\nspirituální\r\nspirituálův\r\nspirocheta\r\nspironukleóza\r\nspisek\r\nspis\r\nspískanější\r\nspískání\r\nspískaný\r\nspískat\r\nspisování\r\nspisovaný\r\nspisovat\r\nspisovatelčin\r\nspisovatelka\r\nspisovatelský\r\nspisovatelství\r\nspisovatelstvo\r\nspisovatelštější\r\nspisovatel\r\nspisovatelův\r\nspisovna\r\nspisovnější\r\nspisovný\r\nspisový\r\nSpisserová\r\nSpisser\r\nSpisserův\r\nspíš\r\nspíše\r\nspíše\r\nSpišek\r\nSpišková\r\nSpiškův\r\nspišský\r\nspíže\r\nspižírna\r\nspížka\r\nspížní\r\nspížování\r\nspíž\r\nspjatější\r\nspjat\r\nspjatý\r\nspjatý\r\nsplácanina\r\nsplácání\r\nsplácaný\r\nsplácat\r\nsplácející\r\nsplacenější\r\nsplácenější\r\nsplacení\r\nsplácení\r\nsplacený\r\nsplácený\r\nsplácet\r\nspláclejší\r\nspláclý\r\nsplácnout\r\nsplácnutí\r\nsplácnutý\r\nsplach\r\nspláchnout\r\nspláchnutí\r\nspláchnutý\r\nsplachovací\r\nsplachovadlo\r\nsplachování\r\nsplachovaný\r\nsplachovat\r\nsplachovávání\r\nsplachovávaný\r\nsplachovávat\r\nsplachový\r\nsplachtění\r\nsplachtit\r\nsplakající\r\nsplakání\r\nsplakat\r\nsplakávání\r\nsplakávat\r\nsplaskávající\r\nsplaskávat\r\nsplasklejší\r\nsplasklý\r\nsplasknout\r\nsplasknutí\r\nsplasknutý\r\nsplašencův\r\nsplašenec\r\nsplašenější\r\nsplašení\r\nsplašený\r\nsplašit\r\nsplaškách\r\nsplaškový\r\nsplašky\r\nsplatit\r\nsplatitelnější\r\nsplatitelný\r\nsplátka\r\nsplátkovější\r\nsplátkový\r\nsplatný\r\nsplávek\r\nsplavení\r\nsplavený\r\nsplav\r\nsplavit\r\nsplavnější\r\nsplavnění\r\nsplavněný\r\nsplavnit\r\nsplavňovat\r\nsplavný\r\nsplavování\r\nsplavovaný\r\nsplavovat\r\nsplaz\r\nsplečenství\r\nsplenectomie\r\nsplenektomie\r\nsplést\r\nsplešťule\r\nsplétací\r\nsplétající\r\nsplétanější\r\nsplétání\r\nsplétaný\r\nsplétat\r\nspletenější\r\nspletení\r\nspletený\r\nspletitější\r\nspletitelnější\r\nspletitelný\r\nspletitý\r\nspleť\r\nsplihlejší\r\nsplín\r\nSplit\r\nsplitský\r\nsplněnější\r\nsplnění\r\nsplněný\r\nsplnit\r\nsplnitelnější\r\nsplnitelný\r\nsplňovací\r\nsplňování\r\nsplňovaný\r\nsplňovat\r\nsplňující\r\nsplňující\r\nsplout\r\nsplouvání\r\nsplouvaný\r\nsplouvat\r\nsplupracující\r\nsplutí\r\nsplutý\r\nspluženější\r\nsplužení\r\nsplužený\r\nsplužit\r\nsplynout\r\nsplynutí\r\nsplynutý\r\nsplývající\r\nsplývání\r\nsplývat\r\nsplývavější\r\nsplývavý\r\nsplývavý\r\nSPN\r\nspočetný\r\nspočinek\r\nspočinout\r\nspočinutí\r\nspočíst\r\nspočítání\r\nspočítaný\r\nspočitatelnější\r\nspočitatelný\r\nspočítatelný\r\nspočítat\r\nspočívající\r\nspočívání\r\nspočívat\r\nspočtenější\r\nspočtení\r\nspočtený\r\nspodek\r\nspodem\r\nspodina\r\nspodkový\r\nspodkův\r\nspodnější\r\nspodnička\r\nspodní\r\nspodnoturonský\r\nspodoba\r\nspodobnění\r\nspoiler\r\nspojařčin\r\nspojařka\r\nspojařský\r\nspojař\r\nspojařův\r\nspojencův\r\nspojenčin\r\nSpojené\r\nspojenecký\r\nspojenectví\r\nspojenec\r\nspojenečtější\r\nspojenější\r\nspojení\r\nspojenka\r\nspojenkyně\r\nspojenkynin\r\nspojený\r\nspojit\r\nspojitější\r\nspojitelnější\r\nspojitelný\r\nspojitý\r\nspojitý\r\nspojivka\r\nspojivkový\r\nspojka\r\nspojkový\r\nspojler\r\nspojnice\r\nspojnicový\r\nspojný\r\nspojovací\r\nspojovanější\r\nspojování\r\nspojovaný\r\nspojovat\r\nspojovatelka\r\nspojovávání\r\nspojovávaný\r\nspojovávat\r\nspojovější\r\nspojovník\r\nspojový\r\nspoj\r\nspojující\r\nspokojena\r\nspokojenější\r\nspokojeni\r\nspokojení\r\nspokojen\r\nspokojeno\r\nspokojenu\r\nspokojeny\r\nspokojený\r\nspokojit\r\nspokojování\r\nspokojovat\r\nspokojující\r\nspol\r\nSpolana\r\nspolčení\r\nspolčený\r\nspolčit\r\nspolčovací\r\nspolčování\r\nspolčovat\r\nspolčující\r\nspolečenskoekonomický\r\nspolečenskoekonomičtější\r\nspolečenskohospodářský\r\nspolečenskokritičtější\r\nspolečenskopolitický\r\nspolečenskopolitičtější\r\nspolečenskoprávní\r\nspolečenskovědní\r\nspolečenskovědný\r\nspolečenskovýchovný\r\nspolečenský\r\nspolečenství\r\nspolečenstvo\r\nspolečenštější\r\nspolečnější\r\nspolečnenství\r\nspolečnice\r\nspolečník\r\nspolečníkův\r\nspolečný\r\nspoleč\r\nspoléhající\r\nspoléhání\r\nspoléhat\r\nspolehlivější\r\nspolehlivý\r\nspolehnout\r\nspolehnutí\r\nspolehnutí\r\nspolek\r\nspolknout\r\nspolknutí\r\nspolknutý\r\nspolkový\r\nspolu\r\nspoluautorčin\r\nspoluautorka\r\nspoluautor\r\nspoluautorství\r\nspoluautorův\r\nspolubojovnice\r\nspolubojovník\r\nspolubojovníkův\r\nspolubratr\r\nspolubratrův\r\nspolubratří\r\nspolubratřích\r\nspolubratřím\r\nspolubratřími\r\nspolubydlící\r\nspolubytí\r\nspolucestovatelčin\r\nspolucestovatelka\r\nspolucestovatel\r\nspolucestovatelův\r\nspolucestující\r\nspolucítění\r\nspolucítěný\r\nspolucítit\r\nspoludědicový\r\nspoludědic\r\nspoludědicův\r\nspoludědička\r\nspoludělání\r\nspoludělaný\r\nspoludělat\r\nspoludiskutující\r\nspoludlužník\r\nspoludlužníkův\r\nspoludržitelčin\r\nspoludržitelka\r\nspoluexistování\r\nspoluexistovat\r\nspoluexulantčin\r\nspoluexulantka\r\nspoluexulant\r\nspoluexulantův\r\nspolufavorit\r\nspolufavoritův\r\nspolufinancování\r\nspolufinancovaný\r\nspolufinancovat\r\nspolufinancovávání\r\nspolufinancovávaný\r\nspolufinancovávat\r\nspolufinancující\r\nspoluformování\r\nspoluformovaný\r\nspoluformovat\r\nspoluformovávání\r\nspoluformovávaný\r\nspoluformovávat\r\nspolugarant\r\nspolugarantův\r\nspoluhereččin\r\nspoluherečka\r\nspoluhláska\r\nspoluhospodaření\r\nspoluhospodařený\r\nspoluhospodařit\r\nspoluhráččin\r\nspoluhráčka\r\nspoluhráč\r\nspoluhráčův\r\nspoluchválení\r\nspoluchválený\r\nspoluchválit\r\nspolujednání\r\nspolujezdcův\r\nspolujezdec\r\nspolujezdkyně\r\nspolujezdkynin\r\nspolukomentování\r\nspolukomentovaný\r\nspolukomentovat\r\nspolukonat\r\nspolulezcův\r\nspolulezec\r\nspolumajitelčin\r\nspolumajitelka\r\nspolumajitelství\r\nspolumajitel\r\nspolumajitelův\r\nspolumateřství\r\nspolumoderování\r\nspolumoderovaný\r\nspolumoderovat\r\nspolumyšlení\r\nspolunájemce\r\nspolunájemcův\r\nspolunocležník\r\nspolunocležníkův\r\nspolunositel\r\nspolunositelův\r\nspoluobčančin\r\nspoluobčanka\r\nspoluobčan\r\nspoluobčanův\r\nspoluobětovat\r\nspoluobjevitelčin\r\nspoluobjevitelka\r\nspoluobjevitel\r\nspoluobjevitelův\r\nspoluodpovědný\r\nspoluorganizování\r\nspoluorganizovaný\r\nspoluorganizovat\r\nspoluorganizovávat\r\nspoluotcovství\r\nspoluovlivňování\r\nspoluovlivňovaný\r\nspoluovlivňovat\r\nspoluovlivňovávat\r\nspolupacient\r\nspolupacientův\r\nspolupachatelčin\r\nspolupachatelka\r\nspolupachatelství\r\nspolupachatel\r\nspolupachatelův\r\nspolupatřičný\r\nspolupodepisování\r\nspolupodepisovaný\r\nspolupodepisovat\r\nspolupodepsat\r\nspolupodílející\r\nspolupodílení\r\nspolupodílet\r\nspolupodílnictví\r\nspolupodílník\r\nspolupodílníkův\r\nspolupodnikání\r\nspolupodnikat\r\nspolupodpis\r\nspolupodpisovat\r\nspolupomáhání\r\nspolupomáhat\r\nspolupořádající\r\nspolupořádání\r\nspolupořádaný\r\nspolupořadatelčin\r\nspolupořadatelka\r\nspolupořadatel\r\nspolupořadatelův\r\nspolupořádat\r\nspoluposlouchání\r\nspoluposlouchaný\r\nspoluposlouchat\r\nspolupoutník\r\nspolupoutníkův\r\nspolupracemi\r\nspolupráce\r\nspolupráci\r\nspolupracích\r\nspolupracím\r\nspoluprací\r\nspolupráci\r\nspolupracování\r\nspolupracovat\r\nspolupracovnice\r\nspolupracovničin\r\nspolupracovník\r\nspolupracovníkův\r\nspolupracující\r\nspoluproducent\r\nspoluproducentův\r\nspoluprožít\r\nspoluprožití\r\nspoluprožitý\r\nspoluprožívání\r\nspoluprožívat\r\nspolupředkladatel\r\nspolupředkladatelův\r\nspolupředsedající\r\nspolupůsobení\r\nspolupůsobený\r\nspolupůsobící\r\nspolupůsobit\r\nspolurozhodnout\r\nspolurozhodnutí\r\nspolurozhodovací\r\nspolurozhodování\r\nspolurozhodovaný\r\nspolurozhodovat\r\nspolurozhodovávání\r\nspolurozhodovávat\r\nspolurozpoutání\r\nspolurozpoutaný\r\nspolurozpoutat\r\nspoluručení\r\nspoluručit\r\nspoluředitel\r\nspoluředitelův\r\nspoluřešení\r\nspoluřešený\r\nspoluřešit\r\nspoluřešitel\r\nspoluřešitelův\r\nspoluscenárista\r\nspoluscenáristčin\r\nspoluscenáristka\r\nspoluscenáristův\r\nspolusdílení\r\nspolusdílený\r\nspolusdílet\r\nspolusedící\r\nspoluslavení\r\nspolusoutěžící\r\nspolustolovník\r\nspolustolovníkův\r\nspolutrpitelka\r\nspolutvoření\r\nspolutvořený\r\nspolutvořit\r\nspolutvůrce\r\nspolutvůrcův\r\nspoluúčast\r\nspoluúčastnění\r\nspoluúčastněný\r\nspoluúčastnit\r\nspoluúčinkování\r\nspoluúčinkovat\r\nspoluúčinkovávání\r\nspoluúčinkovávaný\r\nspoluúčinkovávat\r\nspoluúčinkující\r\nspoluurčování\r\nspoluurčovaný\r\nspoluurčovat\r\nspoluuspořádání\r\nspoluutváření\r\nspoluutvářený\r\nspoluutvářet\r\nspoluužívání\r\nspoluuživatelčin\r\nspoluuživatelka\r\nspoluuživatel\r\nspoluuživatelův\r\nspoluvěřitel\r\nspoluvěřitelův\r\nspoluvězeňkyně\r\nspoluvězeňkynin\r\nspoluvězeň\r\nspoluvězňův\r\nspoluvina\r\nspoluvinen\r\nspoluvinice\r\nspoluviničin\r\nspoluviník\r\nspoluviníkův\r\nspoluvinný\r\nspoluvladař\r\nspoluvladařův\r\nspoluvláda\r\nspoluvládce\r\nspoluvládcův\r\nspoluvládnout\r\nspoluvládnutí\r\nspoluvládnutý\r\nspoluvlastích\r\nspoluvlastím\r\nspoluvlast\r\nspoluvlastnění\r\nspoluvlastněný\r\nspoluvlastnice\r\nspoluvlastnický\r\nspoluvlastnictví\r\nspoluvlastničin\r\nspoluvlastník\r\nspoluvlastníkův\r\nspoluvlastnit\r\nspoluvydávání\r\nspoluvydávaný\r\nspoluvydávat\r\nspoluvychování\r\nspoluvychovaný\r\nspoluvychovat\r\nspoluvychovávání\r\nspoluvychovávaný\r\nspoluvychovávat\r\nspoluvytvářející\r\nspoluvytváření\r\nspoluvytvářený\r\nspoluvytvářet\r\nspoluzajišťování\r\nspoluzajišťovaný\r\nspoluzajišťovat\r\nspoluzakládání\r\nspoluzakládaný\r\nspoluzakladatelčin\r\nspoluzakladatelka\r\nspoluzakladatel\r\nspoluzakladatelův\r\nspoluzakládat\r\nspoluzaměstnancův\r\nspoluzaměstnanec\r\nspoluzaměstnankyně\r\nspoluzaměstnankynin\r\nspoluzaznívat\r\nspoluzodpovědný\r\nspoluzodpovídání\r\nspoluzodpovídat\r\nspolužačka\r\nspolužák\r\nspolužákův\r\nspolužákyně\r\nspolužákynin\r\nspolužijící\r\nspolužít\r\nspolužití\r\nspolykání\r\nspolykaný\r\nspolykat\r\nspona\r\nspondej\r\nspondylartritida\r\nspongie\r\nspongiformní\r\nspongilitický\r\nsponka\r\nsponnheimský\r\nsponový\r\nsponsor\r\nsponsorský\r\nsponsorův\r\nspontaneita\r\nspontánnější\r\nspontánní\r\nsponzorování\r\nsponzorovaný\r\nsponzorovat\r\nsponzorovávání\r\nsponzorovávaný\r\nsponzorovávat\r\nsponzor\r\nsponzorský\r\nsponzorství\r\nsponzorující\r\nsponzorův\r\nspoofing\r\nsporadický\r\nsporadický\r\nsporadičtější\r\nsporák\r\nsporákový\r\nspora\r\nspóra\r\nspor\r\nspornější\r\nsporný\r\nsporofyt\r\nsporožiro\r\nsporožirový\r\nsporťáček\r\nsporťák\r\nsport\r\nsportka\r\nsportování\r\nsportovat\r\nsportovávání\r\nsportovávat\r\nsportovcův\r\nsportovec\r\nsportoviště\r\nsportovkyně\r\nsportovkynin\r\nsportovnější\r\nsportovní\r\nsportsmančin\r\nsportsmanka\r\nSportturist\r\nsportující\r\nsporý\r\nspořádající\r\nspořádanější\r\nspořádání\r\nspořádaný\r\nspořádat\r\nspořádávající\r\nspořádávanější\r\nspořádávání\r\nspořádávaný\r\nspořádávat\r\nspořejší\r\nspoření\r\nspořený\r\nSpořice\r\nSpořice\r\nspořící\r\nspořický\r\nspořič\r\nspořit\r\nspořitelna\r\nspořitelní\r\nspořivější\r\nspořivý\r\nspot\r\nspotový\r\nspotřeba\r\nspotřebič\r\nspotřebiště\r\nspotřebitelčin\r\nspotřebitelka\r\nspotřebitelský\r\nspotřebitel\r\nspotřebitelův\r\nspotřebnější\r\nspotřební\r\nspotřebování\r\nspotřebovaný\r\nspotřebovat\r\nspotřebovávající\r\nspotřebovávání\r\nspotřebovávaný\r\nspotřebovávat\r\nspotřebový\r\nspotřebující\r\nSpousta\r\nspousta\r\nSpoustová\r\nSpoustův\r\nspouštěcí\r\nspouštěč\r\nspouštějící\r\nspouštěnější\r\nspouštění\r\nspouštěný\r\nspouštět\r\nspoušťový\r\nspoušť\r\nspoutání\r\nspoutaný\r\nspoutat\r\nspoutávající\r\nspoutávání\r\nspoutávaný\r\nspoutávat\r\nSPR\r\nspráskání\r\nspráskaný\r\nspráskat\r\nsprásknout\r\nsprásknutí\r\nsprásknutý\r\nsprašový\r\nspraš\r\nspratek\r\nspratkový\r\nspratkův\r\nspráva\r\nsprávce\r\nsprávcování\r\nsprávcovat\r\nsprávcová\r\nsprávcovský\r\nsprávcovství\r\nsprávcův\r\nspravedlivější\r\nspravedlivý\r\nspravedlnost\r\nspravenější\r\nspravení\r\nspravený\r\nspravit\r\nsprávkárna\r\nsprávka\r\nsprávkový\r\nsprávkyně\r\nsprávkynin\r\nsprávnější\r\nsprávní\r\nsprávný\r\nspravovanější\r\nspravování\r\nspravovaný\r\nspravovat\r\nspravovování\r\nspravovovaný\r\nspravovovat\r\nspravující\r\nspražení\r\nspražený\r\nspražit\r\nsprdnout\r\nsprejování\r\nsprejovaný\r\nsprejovat\r\nsprejový\r\nsprej\r\nSpréva\r\nsprévský\r\nsprchávání\r\nsprcha\r\nsprchnout\r\nsprchnutí\r\nsprchovací\r\nsprchování\r\nsprchovaný\r\nsprchovat\r\nsprchovávání\r\nsprchovávaný\r\nsprchovávat\r\nsprchový\r\nsprchující\r\nSpringerová\r\nSpringer\r\nSpringerův\r\nsprinterčin\r\nsprinterka\r\nsprinter\r\nsprintér\r\nsprintérský\r\nsprinterský\r\nsprintérův\r\nsprint\r\nsprintování\r\nsprintovat\r\nsprintovávání\r\nsprintovávat\r\nsprintující\r\nspropitné\r\nsprosťáctví\r\nsprosťačka\r\nsprosťák\r\nsprosťákův\r\nsprosťárna\r\nsprosťárnička\r\nsprostější\r\nsprostota\r\nsprostší\r\nsprostý\r\nsprovodit\r\nsprovozenější\r\nsprovození\r\nsprovozený\r\nsprška\r\nspřádací\r\nspřádající\r\nspřádání\r\nspřádaný\r\nspřádat\r\nspřadený\r\nspřáhlový\r\nspřáhnout\r\nspřáhnutí\r\nspřahovat\r\nspřátelenější\r\nspřátelení\r\nspřátelený\r\nspřátelit\r\nspřaženější\r\nspřažený\r\nspředenější\r\nspředení\r\nspředen\r\nspředený\r\nspřežení\r\nspřežka\r\nspřežkový\r\nspřež\r\nspříbuzněný\r\nspříst\r\nspřízněnčin\r\nspřízněnější\r\nspříznění\r\nspřízněnka\r\nspřízněn\r\nspřízněný\r\nSPŠ\r\nSpudilová\r\nSpudil\r\nSpudilův\r\nSpurný\r\nspurt\r\nspurtování\r\nspurtovat\r\nspustit\r\nspustitelný\r\nspušťadlo\r\nspuštěnější\r\nspuštění\r\nspuštěný\r\nsputnik\r\nSpytihněv\r\nSpytihněvův\r\nSPZ\r\nSQL\r\nsquash\r\nsquatt\r\nSR\r\nsr\r\nsrab\r\nsrabův\r\nsračka\r\nsranda\r\nsrandička\r\nsrandista\r\nsrandistčin\r\nsrandistka\r\nsrandistův\r\nsrandovnější\r\nsrandovní\r\nsrát\r\nsraz\r\nsráz\r\nsrazit\r\nsráznější\r\nsrázný\r\nsrážecí\r\nsrážedlo\r\nsrážející\r\nsraženější\r\nsraženina\r\nsraženinka\r\nsražení\r\nsrážení\r\nsražený\r\nsrážený\r\nsrážet\r\nsrážka\r\nsrážkový\r\nsrážlivější\r\nsrážlivý\r\nSrbčin\r\nsrbčin\r\nSrbice\r\nsrbický\r\nsrbismus\r\nsrbistický\r\nSrbka\r\nsrbka\r\nsrbocharvátský\r\nsrbocharvátština\r\nsrbochorvatský\r\nsrbochorvatština\r\nsrbochorvátština\r\nSrbová\r\nsrbový\r\nSrb\r\nSrbská\r\nSrbsko\r\nsrbský\r\nsrbštější\r\nsrbština\r\nSrbův\r\nsrdcelomný\r\nsrdce\r\nsrdcervoucí\r\nsrdceryvnější\r\nsrdceryvný\r\nsrdcovitý\r\nsrdcovka\r\nsrdcový\r\nsrdčitý\r\nsrdéčko\r\nsrdéčkový\r\nsrdečnější\r\nsrdečnice\r\nsrdeční\r\nsrdečný\r\nsrdíčko\r\nsrdíčkový\r\nsrdnatější\r\nsrdnatý\r\nSrebrenice\r\nsrebrenický\r\nsrha\r\nSrí\r\nsrílanský\r\nsrkání\r\nsrkaný\r\nsrkat\r\nsrkávání\r\nsrkávaný\r\nsrkávat\r\nsrkavý\r\nsrknout\r\nsrknutí\r\nsrknutý\r\nSRN\r\nsrna\r\nSrncová\r\nSrncův\r\nsrncův\r\nsrnče\r\nsrnčí\r\nsrnec\r\nSrnec\r\nsrneček\r\nsrnečkův\r\nsrnička\r\nSrnín\r\nsrnínský\r\nsrní\r\nsrnka\r\nSRO\r\nsro\r\nsrocení\r\nsrocený\r\nsrocování\r\nsrocovat\r\nsrocovávání\r\nsrocovávat\r\nsrolování\r\nsrolovaný\r\nsrolovat\r\nsrolovávání\r\nsrolovávaný\r\nsrolovávat\r\nsrostlejší\r\nsrostl\r\nsrostlý\r\nsrostu\r\nsrotit\r\nsroubek\r\nsroubený\r\nsroubit\r\nsrov\r\nsrovnanější\r\nsrovnání\r\nsrovnání\r\nsrovnaný\r\nsrovnatelnější\r\nsrovnatelný\r\nsrovnat\r\nsrovnávací\r\nsrovnávačka\r\nsrovnavač\r\nsrovnávající\r\nsrovnávání\r\nsrovnávaný\r\nsrovnávat\r\nsrozmazávanější\r\nsrozmazávaný\r\nsrozpláclejší\r\nsrozuměnější\r\nsrozuměnější\r\nsrozumění\r\nsrozuměný\r\nsrozumět\r\nsrozumitelnější\r\nsrozumitelný\r\nsrpeček\r\nsrpek\r\nsrpen\r\nsrp\r\nsrpkovitý\r\nsrpkový\r\nsrpnovější\r\nsrpnový\r\nSrpová\r\nsrpovitý\r\nsrpový\r\nSrp\r\nSRPŠ\r\nSrpův\r\nsrst\r\nsrstka\r\nsrstkový\r\nsrstnatý\r\nsršatější\r\nsršatý\r\nsršení\r\nsršeň\r\nsršet\r\nsršící\r\nsršňový\r\nsrubecký\r\nSrubec\r\nsrub\r\nsrubový\r\nsrůstající\r\nsrůstání\r\nsrůstat\r\nsrůst\r\nsrůst\r\nsrv\r\nsřekl\r\nsřeknu\r\nsřetězení\r\nsřetězit\r\nsřezání\r\nsřezaný\r\nsřezat\r\nsřezávání\r\nsřezávaný\r\nsřezávat\r\nsříci\r\nsříct\r\nsříznout\r\nsříznutí\r\nsříznutý\r\nsříznutý\r\nSS\r\nssledovávání\r\nssledovávaný\r\nssledovávat\r\nSSM\r\nSSR\r\nSSSR\r\nSŠ\r\nst\r\nstabilisování\r\nstabilisovaný\r\nstabilisovat\r\nstabilita\r\nstabilita\r\nstabilitní\r\nstabilizace\r\nstabilizační\r\nstabilizát\r\nstabilizátor\r\nstabilizování\r\nstabilizovaný\r\nstabilizovat\r\nstabilizující\r\nstabilnější\r\nstabilní\r\nstaccato\r\nstaccatový\r\nstacionarita\r\nstacionární\r\nstacionář\r\nstáčecí\r\nstáčející\r\nstačení\r\nstáčení\r\nstáčený\r\nstáčet\r\nstačící\r\nstáčírna\r\nstačit\r\nstačování\r\nstačovat\r\nstádečko\r\nStadice\r\nstadický\r\nstadický\r\nstadion\r\nstadión\r\nstadiónový\r\nStadionův\r\nstádium\r\nstadium\r\nstádlecký\r\nStádlec\r\nstádní\r\nstádo\r\nstádovitý\r\nstádový\r\nstafáž\r\nstafylokok\r\nstafylokokový\r\nstafylokokus\r\nstagnace\r\nstagnování\r\nstagnovat\r\nstagnující\r\nstahání\r\nstahaný\r\nstahat\r\nstah\r\nstáhnout\r\nstáhnutí\r\nstáhnutý\r\nstahovací\r\nstahovačka\r\nstahovač\r\nstahovanější\r\nstahování\r\nstahovaný\r\nstahovat\r\nstahovatelnější\r\nstahovávání\r\nstahovávaný\r\nstahovávat\r\nstahující\r\nstachanovcův\r\nstachanovec\r\nstachanovština\r\nStachová\r\nStach\r\nStachův\r\nstachyóza\r\nstájovka\r\nstájový\r\nstáj\r\nstakilometrový\r\nstalagmit\r\nstalaktit\r\nstálejší\r\nstaletí\r\nstaletích\r\nstaletím\r\nstaletími\r\nstáletrvající\r\nstaletý\r\nstálice\r\nStalingrad\r\nstalingradský\r\nstalingradský\r\nstalinismus\r\nstalinista\r\nstalinistčin\r\nstalinistický\r\nstalinistka\r\nstalinistův\r\nstalinizující\r\nStalin\r\nstalinský\r\nstalinštější\r\nStalinův\r\nstálobarevný\r\nstal\r\nstál\r\nsťal\r\nstáložárný\r\nstálý\r\nstametrový\r\nStamicová\r\nStamic\r\nStamicův\r\nstamiliardový\r\nstamilión\r\nstamiliónový\r\nstamilionový\r\nStáňa\r\nStáňa\r\nStančíková\r\nStančík\r\nStančíkův\r\nStánčin\r\nStanda\r\nstandard\r\nstandardizace\r\nstandardizační\r\nstandardizovanější\r\nstandardizování\r\nstandardizovaný\r\nstandardizovat\r\nstandardizující\r\nstandardnější\r\nstandardní\r\nstandarta\r\nStandův\r\nStaněk\r\nstánek\r\nStanětice\r\nstanětický\r\nstanfordský\r\nstan\r\nstanice\r\nstanička\r\nstaniční\r\nStánin\r\nstaniol\r\nstaniolovější\r\nstaniolový\r\nStanislava\r\nStanislavin\r\nStanislavová\r\nStanislav\r\nStanislavův\r\nstaní\r\nstání\r\nstání\r\nStanka\r\nstánkařčin\r\nstánkařka\r\nstánkař\r\nstánkařův\r\nStánka\r\nStanková\r\nStaňková\r\nStaňkov\r\nstaňkovský\r\nstánkový\r\nStankův\r\nStaňkův\r\nstanný\r\nStaňo\r\nstanout\r\nstanování\r\nstanovat\r\nStaňová\r\nstanovení\r\nstanovení\r\nstanovený\r\nstanovený\r\nStanovice\r\nstanovící\r\nstanovický\r\nstanoviska\r\nstanovisko\r\nstanoviště\r\nstanovištní\r\nstanovit\r\nstanovitelnější\r\nstanovitelný\r\nstanovování\r\nstanovovaný\r\nstanovovat\r\nstanovující\r\nstanový\r\nstanovy\r\nstanutí\r\nStaňův\r\nStáňův\r\nstápějící\r\nstápěnější\r\nstápění\r\nstápěný\r\nstápět\r\nsťapkání\r\nsťapkaný\r\nsťapkat\r\nstaplový\r\nstarající\r\nstarání\r\nstarat\r\nstarávání\r\nstarávat\r\nstarce\r\nstarcem\r\nstarci\r\nstarcích\r\nStarcová\r\nstarců\r\nstarcům\r\nStarcův\r\nstarcův\r\nstarče\r\nStarčevičová\r\nStarčevič\r\nStarčevičův\r\nStarec\r\nstárek\r\nStárek\r\nstarka\r\nStárková\r\nStárkov\r\nstárkovský\r\nStárkův\r\nstárkův\r\nstárnoucí\r\nstárnout\r\nstárnul\r\nstárnutí\r\nstár\r\nstaroanglický\r\nstarobabylonský\r\nstaroba\r\nstarobní\r\nstaroboleslavský\r\nstarobrněnský\r\nstarobylejší\r\nstarobylý\r\nstarocírkevní\r\nstaročech\r\nstaročechův\r\nstaročeský\r\nstaročešství\r\nstaročeština\r\nstaročínský\r\nstarodávnější\r\nstarodávný\r\nstarodružiník\r\nstarodružiníkův\r\nstaroegypťan\r\nstaroegypťanův\r\nstaroegyptský\r\nstarogermánský\r\nstarohorní\r\nstarohornoněmecký\r\nstarohory\r\nStarohrad\r\nstarohradištní\r\nstarohradský\r\nstaroch\r\nstarochův\r\nstaroindický\r\nstarokališnický\r\nstarokališník\r\nstarokališníkův\r\nstarokatolický\r\nstarokomunista\r\nstarokomunistčin\r\nstarokomunistka\r\nstarokomunistův\r\nstaroměstský\r\nstaromilcův\r\nstaromilectví\r\nstaromilec\r\nstaromilnější\r\nstaromilství\r\nstaromládenecký\r\nstaromládenectví\r\nstaromládenečtější\r\nstaromódnější\r\nstaromódní\r\nstaromohylový\r\nstaroněmčina\r\nstaroněmecký\r\nstaronorský\r\nstaronovější\r\nstaronový\r\nstaroorientální\r\nstaropacký\r\nstaropaleolitický\r\nstaropanenský\r\nstaropanenství\r\nstaropanenštější\r\nstaroperský\r\nstaropramen\r\nstaropražský\r\nstaropruský\r\nstaropruský\r\nstarorežná\r\nstarorůžový\r\nstarořecký\r\nstarořečtější\r\nstarořečtina\r\nstarořímský\r\nstaroslávista\r\nstaroslávistčin\r\nstaroslávistka\r\nstaroslávistův\r\nstaroslavnější\r\nstaroslavný\r\nstaroslovanský\r\nstaroslověnský\r\nstaroslověnština\r\nStarosta\r\nstarosta\r\nstarostenský\r\nstarostka\r\nstarostlivější\r\nstarostlivý\r\nstarostnější\r\nStarostová\r\nStarostův\r\nstarostův\r\nstarosvětský\r\nstarosvětštější\r\nstarousedlice\r\nstarousedličin\r\nstarousedlík\r\nstarousedlíkův\r\nstarousedlý\r\nstaroušek\r\nstarouškův\r\nstarouš\r\nstaroušův\r\nstaroutrakvista\r\nstaroutrakvistčin\r\nstaroutrakvistický\r\nstaroutrakvistka\r\nstaroutrakvistův\r\nStárová\r\nstarověk\r\nstarověký\r\nstarověrcův\r\nstarověrec\r\nStarovice\r\nstarovický\r\nstarovlastenčin\r\nstarovlastenka\r\nstarozákonnější\r\nstarozákonní\r\nstarožitnější\r\nstarožitnice\r\nstarožitnický\r\nstarožitnictví\r\nstarožitník\r\nstarožitníkův\r\nstarožitný\r\nStár\r\nstaršina\r\nstaršinův\r\nstarší\r\nstartér\r\nstartérův\r\nstart\r\nstartovací\r\nstartování\r\nstartovaný\r\nstartovat\r\nstartovatelný\r\nstartovávání\r\nstartovávaný\r\nstartovávat\r\nstartoviště\r\nstartovka\r\nstartovné\r\nstartovní\r\nstartující\r\nstarůstka\r\nStárův\r\nStarý\r\nstarý\r\nstařec\r\nstařecký\r\nstařectví\r\nstařeček\r\nstařečkův\r\nstařečtější\r\nstařena\r\nstařenčin\r\nstařenka\r\nstařešina\r\nstařešinský\r\nstařešinův\r\nstáří\r\nstaříček\r\nstaříčkův\r\nstařičký\r\nstařík\r\nstaříkův\r\nstařina\r\nstařinka\r\nStašek\r\nStašková\r\nStaškovičová\r\nStaškovič\r\nStaškovičův\r\nStaškův\r\nStašov\r\nstašovský\r\nstáteček\r\nstatečnější\r\nstatečný\r\nsťatější\r\nstatek\r\nStatenice\r\nstatenický\r\nstát\r\nstatický\r\nstatičtější\r\nstatika\r\nstatik\r\nstatikův\r\nstát\r\nstatisíc\r\nstatisící\r\nstatisícovka\r\nstatisícový\r\nstatista\r\nstatistčin\r\nstatistický\r\nstatističčin\r\nstatistička\r\nstatistika\r\nstatistik\r\nstatistikův\r\nstatistka\r\nstatistův\r\nstativ\r\nstativový\r\nstatkářčin\r\nstatkářka\r\nstatkářský\r\nstatkář\r\nstatkářův\r\nstatkový\r\nstatnější\r\nstátnější\r\nstátnice\r\nstátnický\r\nstátnictví\r\nstátničtější\r\nstátník\r\nstátníkův\r\nstátní\r\nstatný\r\nsťat\r\nstátoprávník\r\nstátoprávníkův\r\nstátoprávní\r\nstator\r\nstatorový\r\nstátotvornější\r\nstátotvorný\r\nstatování\r\nstatovat\r\nstátověda\r\nstátovka\r\nstatus\r\nstatutární\r\nstatut\r\nStáty\r\nsťatý\r\nsťatý\r\nstať\r\nstaurolit\r\nstaurolitový\r\nstávající\r\nstávájící\r\nstávání\r\nstavařčin\r\nstavařka\r\nstavařský\r\nstavař\r\nstavařův\r\nstávat\r\nstavbař\r\nstavbařův\r\nstavba\r\nstavbička\r\nstavbyvedoucí\r\nstavebnější\r\nstavebnice\r\nstavebnicový\r\nstavebnictví\r\nstavebník\r\nstavebníkův\r\nstavebnina\r\nstavebniny\r\nstavební\r\nstavěč\r\nstavědlo\r\nstavějící\r\nstavení\r\nstavění\r\nstaveniště\r\nstaveništní\r\nstavený\r\nstavěný\r\nstavěný\r\nstavět\r\nstav\r\nstavící\r\nstavidlo\r\nstavidlový\r\nstavit\r\nstavitelčin\r\nstavitelka\r\nstavitelnější\r\nstavitelný\r\nstavitelský\r\nstavitelství\r\nstavitel\r\nstavitelův\r\nstavítko\r\nstavivo\r\nstávkařský\r\nstávka\r\nstávkokazectví\r\nstávkokaz\r\nstávkokazův\r\nstávkování\r\nstávkovat\r\nstávkovávání\r\nstávkovávaný\r\nstávkovávat\r\nstávkový\r\nstávkující\r\nsťav\r\nstavný\r\nStavoplast\r\nstavování\r\nstavovaný\r\nstavovat\r\nstavovský\r\nstavovství\r\nstavový\r\nstavoznak\r\nStázčin\r\nStázička\r\nStázka\r\nstaženější\r\nstaženina\r\nstažení\r\nstažený\r\nstážista\r\nstážistčin\r\nstážistka\r\nstážistův\r\nstažitelnější\r\nstažitelný\r\nstáž\r\nStB\r\nstč\r\nsteak\r\nstearan\r\nstearát\r\nstearin\r\nstearinový\r\nstearový\r\nstearoyllaktylát\r\nstearyl\r\nstearyltartrát\r\nsteatitový\r\nstébélka\r\nstébelnatý\r\nstéblo\r\nStéblová\r\nstéblovský\r\nstéblový\r\nStebno\r\nstéct\r\nstečení\r\nsteeplechase\r\nsteeplerčin\r\nsteeplerka\r\nStehelčeves\r\nstehelčeveský\r\nstehenní\r\nsteh\r\nstehlíček\r\nStehlíček\r\nStehlíčková\r\nStehlíčkův\r\nstehlíčkův\r\nStehlíková\r\nstehlík\r\nStehlík\r\nStehlíkův\r\nstehlíkův\r\nstehno\r\nStehno\r\nStehnová\r\nStehnův\r\nstehovací\r\nstěhovací\r\nstehovaččin\r\nstehovačka\r\nstěhování\r\nstehování\r\nstěhování\r\nstehovaný\r\nstěhovaný\r\nstehovat\r\nstěhovat\r\nstěhovávání\r\nstěhovávaný\r\nstěhovávat\r\nstěhovavý\r\nstěhující\r\nstehýnko\r\nstechiometrický\r\nSteidlová\r\nSteidl\r\nSteidlův\r\nSteinerová\r\nSteiner\r\nSteinerův\r\nSteinová\r\nStein\r\nSteinův\r\nStejfová\r\nStejf\r\nStejfův\r\nstejně\r\nstejnobarevný\r\nstejnocenný\r\nstejnojmenný\r\nstejnokrojový\r\nstejnokroj\r\nstejnolehlý\r\nstejnoměrnější\r\nstejnoměrný\r\nstejnopis\r\nstejnorodější\r\nstejnorodý\r\nstejnorozměrný\r\nstejnoslabičný\r\nstejnosměrný\r\nstejnoúhelný\r\nstejnoúhlý\r\nstejnozrnný\r\nstejný\r\nStejskalová\r\nStejskal\r\nStejskalův\r\nstejšn\r\nstékající\r\nstékání\r\nstékat\r\nstékavější\r\nstékavý\r\nsteklejší\r\nSteklý\r\nsteklý\r\nstelární\r\nStela\r\nstéla\r\nSteliččin\r\nStelička\r\nStelin\r\nstelivo\r\nstelivový\r\nstélkatý\r\nstélka\r\nstellit\r\nstellitový\r\nstelný\r\nstelu\r\nsténající\r\nsténání\r\nsténání\r\nsténat\r\nsténávat\r\nStěnava\r\nstěnavský\r\nsténavý\r\nstěna\r\nsten\r\nstěnka\r\nstenografčin\r\nstenografický\r\nstenografie\r\nstenografka\r\nstenografování\r\nstenografovat\r\nstenograf\r\nstenografův\r\nstenogram\r\nstenotypista\r\nstenotypistčin\r\nstenotypističin\r\nstenotypistika\r\nstenotypistka\r\nstenotypistův\r\nstěnový\r\nstenóza\r\nStěpanakert\r\nstepař\r\nstepařův\r\nstep\r\nstepní\r\nstepovací\r\nstepování\r\nstepovaný\r\nstepovat\r\nstepující\r\nstěrač\r\nsteradián\r\nstereodeska\r\nstereoefekt\r\nstereofonie\r\nstereofonní\r\nstereografický\r\nstereogramofon\r\nstereoizomer\r\nstereokamera\r\nstereo\r\nstereometrický\r\nstereometrie\r\nstereosignál\r\nstereoskop\r\nstereoskopický\r\nstereoskopičtější\r\nstereoskopie\r\nstereosouprava\r\nstereosystém\r\nstereotyp\r\nstereotypický\r\nstereotypnější\r\nstereotypní\r\nstereovah\r\nstereováha\r\nstěr\r\nsterilace\r\nsterilační\r\nsterilita\r\nsterilizace\r\nsterilizační\r\nsterilizátor\r\nsterilizování\r\nsterilizovaný\r\nsterilizovat\r\nsterilizovatelný\r\nsterilizovávat\r\nsterilnější\r\nsterilní\r\nsterilování\r\nsterilovaný\r\nsterilovat\r\nstěrka\r\nstěrkovaný\r\nstěrkovat\r\nsterling\r\nstero\r\nsteroid\r\nsteroidní\r\nsterol\r\nsteron\r\nstery\r\nsterý\r\nstesk\r\nstěsnanější\r\nstěsnání\r\nstěsnaný\r\nstěsnat\r\nstěsnávání\r\nstěsnávaný\r\nstěsnávat\r\nstětí\r\nstetoskop\r\nstevardčin\r\nstevardka\r\nstevard\r\nstevardův\r\nstewardka\r\nstezička\r\nStezka\r\nstezka\r\nStezková\r\nStezkův\r\nstěžej\r\nstěžejnější\r\nstěžejní\r\nstěžeň\r\nstěží\r\nstěžňový\r\nstěžování\r\nstěžovaný\r\nstěžovat\r\nstěžovatelčin\r\nstěžovatelka\r\nstěžovatel\r\nstěžovatelův\r\nstěžující\r\nStiborová\r\nStibor\r\nStiborův\r\nStieltjes\r\nStieltjesův\r\nstigma\r\nstigmatizování\r\nstigmatizovaný\r\nstigmatizovat\r\nstigmatizující\r\nstíhací\r\nstíhačka\r\nstíhač\r\nstíhačův\r\nstíhající\r\nstíhanější\r\nstíhání\r\nstíhání\r\nstíhaný\r\nstíhaný\r\nstihatelnější\r\nstíhatelnější\r\nstíhatelný\r\nstíhat\r\nstíhávání\r\nstíhávaný\r\nstíhávat\r\nstihnout\r\nstihnutelnější\r\nstihnutelný\r\nstihnutí\r\nstihnutí\r\nstihomam\r\nstimulace\r\nstimulační\r\nstimulant\r\nstimulativní\r\nstimulátor\r\nstimul\r\nstimulování\r\nstimulovaný\r\nstimulovat\r\nstimulovávání\r\nstimulovávaný\r\nstimulovávat\r\nstimulující\r\nstimulus\r\nstínající\r\nstínání\r\nstínaný\r\nstínat\r\nstínávání\r\nstínávaný\r\nstínávat\r\nStínava\r\nstíněnější\r\nstínění\r\nstínění\r\nstíněný\r\nstíněný\r\nStinglová\r\nStingl\r\nStinglův\r\nstín\r\nstínící\r\nstínidlo\r\nstínit\r\nstínítko\r\nstínítkový\r\nstínívání\r\nstínívat\r\nstinka\r\nstínka\r\nstinnější\r\nstinný\r\nstínohra\r\nstínomilnější\r\nstínovanější\r\nstínování\r\nstínovaný\r\nstínovaný\r\nstínovat\r\nstínovější\r\nstínový\r\nstínující\r\nstipendijní\r\nstipendista\r\nstipendistčin\r\nstipendistka\r\nstipendistův\r\nstipendium\r\nstírací\r\nstíračka\r\nstírač\r\nstírající\r\nstíranější\r\nstíraní\r\nstírání\r\nstíraný\r\nstíratelný\r\nstírat\r\nStirie\r\nstírka\r\nStirumův\r\nstiskací\r\nstiskání\r\nstiskávání\r\nstisk\r\nstisklý\r\nstisknout\r\nstisknutí\r\nstisknutý\r\nstisknutý\r\nstísněnější\r\nstísnění\r\nstísněný\r\nstísnit\r\nstísňovat\r\nstísňující\r\nstít\r\nstiženější\r\nstíženější\r\nstižení\r\nstižený\r\nstížený\r\nstížnost\r\nstížnostní\r\nstížný\r\nstlačenější\r\nstlačení\r\nstláčení\r\nstlačený\r\nstlačit\r\nstlačitelnější\r\nstlačitelný\r\nstlačovanější\r\nstlačování\r\nstlačovaný\r\nstlačovat\r\nstlačující\r\nstlal\r\nstlanější\r\nstlaní\r\nstlaný\r\nstlaný\r\nstlát\r\nstlouct\r\nstloukač\r\nstloukačův\r\nstloukanější\r\nstloukání\r\nstloukaný\r\nstloukat\r\nstloukávanější\r\nstloukávání\r\nstloukávaný\r\nstloukávat\r\nstlučenější\r\nstlučení\r\nstlučený\r\nstmelenější\r\nstmelení\r\nstmelený\r\nstmelit\r\nstmelovací\r\nstmelování\r\nstmelovaný\r\nstmelovat\r\nstmelovávání\r\nstmelovávaný\r\nstmelovávat\r\nstmelující\r\nstmívací\r\nstmívač\r\nstmívání\r\nstmívaný\r\nstmívat\r\nstmívávat\r\nstoa\r\nstobitový\r\nstobodový\r\nstobodový\r\nStockholm\r\nstockholmský\r\nstočenější\r\nstočení\r\nstočený\r\nstočit\r\nstočka\r\nstočlenný\r\nstočné\r\nstočtyřicetikilometrový\r\nstočtyřicetikilový\r\nstočtyřicetikorunový\r\nstočtyřicetimilionový\r\nstočtyřicetistránkový\r\nstočtyřicetitisícový\r\nStod\r\nstodesítka\r\nstodevadesáticentimetrový\r\nstodílný\r\nstodolarovčin\r\nstodolarovka\r\nstodolarový\r\nstodola\r\nstodolový\r\nstodůlka\r\nStodůlky\r\nstodvacetihektarový\r\nstodvacetikilogramový\r\nstodvacetikilometrový\r\nstodvacetikilový\r\nstodvacetikorunový\r\nstodvacetikusový\r\nstodvacetimetrový\r\nstodvacetimiliardový\r\nstodvacetimilimetrový\r\nstodvacetimilionový\r\nstodvacetimiliónový\r\nstodvacetiminutový\r\nstodvacetistránkový\r\nstodvacetitisícový\r\nstodvacetitunový\r\nstogramový\r\nstohektarový\r\nstoh\r\nstohlavý\r\nstohovací\r\nstohovačka\r\nstohování\r\nstohovaný\r\nstohovat\r\nstohovatelný\r\nstochastický\r\nstochastičtější\r\nStochov\r\nstochovský\r\nstoicismus\r\nstoický\r\nstoičtější\r\nstoik\r\nstoik\r\nstoikův\r\nstojací\r\nstojačka\r\nStojadinovičův\r\nstojánek\r\nstojan\r\nstojánka\r\nstojánkový\r\nStojanová\r\nstojanový\r\nStojan\r\nStojanův\r\nstojatější\r\nstojatka\r\nstojatý\r\nStojčevová\r\nStojčev\r\nStojčevův\r\nStojčín\r\nstojčínský\r\nstoje\r\nStojice\r\nstojící\r\nstojický\r\nstojím\r\nstojina\r\nStojka\r\nstojka\r\nStojková\r\nStojkovičová\r\nStojkovič\r\nStojkovičův\r\nStojkův\r\nstojmo\r\nstoj\r\nstoka\r\nstok\r\nstokilogramový\r\nstokilometrový\r\nstokilový\r\nStoklasa\r\nStoklasová\r\nStoklasův\r\nstokolový\r\nstokorcový\r\nstokoruna\r\nstokorunka\r\nstokorunový\r\nstokový\r\nstokrát\r\nstokusový\r\nstol\r\nstolařčin\r\nstolařka\r\nStolařová\r\nstolařský\r\nstolařství\r\nstolař\r\nStolař\r\nStolařův\r\nstolařův\r\nstole\r\nstolec\r\nstoleček\r\nstolech\r\nstolek\r\nstolem\r\nstoletím\r\nstoletí\r\nstoletý\r\nstolice\r\nStolička\r\nstolička\r\nStoličková\r\nStoličkův\r\nstoliční\r\nstoličný\r\nStolínová\r\nStolín\r\nStolínův\r\nstolístek\r\nstolitrový\r\nstolkovější\r\nstolkový\r\nstolničení\r\nstolničit\r\nstolník\r\nstolníkův\r\nstolní\r\nstolování\r\nstolovat\r\nstolovávání\r\nstolovávat\r\nstolovitý\r\nstolovník\r\nstolovníkův\r\nstolový\r\nstolu\r\nstolů\r\nstolující\r\nstolům\r\nstoly\r\nStolzová\r\nStolz\r\nStolzův\r\nstomarkovka\r\nstomarkový\r\nstomatitida\r\nstomatologický\r\nstomatologie\r\nstomatolog\r\nstomatologův\r\nstomatoložčin\r\nstomatoložka\r\nstomegabajtový\r\nstomegawattový\r\nstometrový\r\nstomiliardový\r\nstomiligramový\r\nstomilionový\r\nstomiliónový\r\nstominutový\r\nsto\r\nstonal\r\nstonání\r\nStonařov\r\nstonařovský\r\nstonásobek\r\nstonásobný\r\nstonat\r\nstonávání\r\nstonávat\r\nStonava\r\nstonavější\r\nstonavý\r\nstonejme\r\nstonej\r\nstonejte\r\nstonek\r\nstonka\r\nstonkový\r\nStonová\r\nstonožka\r\nSton\r\nStonův\r\nstoosmdesátikilometrový\r\nstoosmdesátikilový\r\nstoosmdesátimetrový\r\nstoosmdesátimilionový\r\nstoosmdesátistránkový\r\nstoosmdesátitisícový\r\nstoosmdesátý\r\nstopadesátidenní\r\nstopadesátigramový\r\nstopadesátihaléřový\r\nstopadesátihektarový\r\nstopadesátihodinový\r\nstopadesátikilometrový\r\nstopadesátikilový\r\nstopadesátikorunový\r\nstopadesátimetrový\r\nstopadesátimiliardový\r\nstopadesátimilionový\r\nstopadesátimiliónový\r\nstopadesátiminutový\r\nstopadesátistránkový\r\nstopadesátitisícový\r\nstopařčin\r\nstopařka\r\nstopařský\r\nstopařství\r\nstopař\r\nstopařův\r\nstopa\r\nstopečka\r\nstopenější\r\nstopení\r\nstopený\r\nstop\r\nstopička\r\nstopit\r\nstopitelnější\r\nstopitelný\r\nstopkatý\r\nstopka\r\nstopkovýtrusný\r\nstopkovýtrusý\r\nstopkový\r\nstopnout\r\nstopnutí\r\nstopnutý\r\nstopovací\r\nstopovač\r\nstopování\r\nstopování\r\nstopovaný\r\nstopovat\r\nstopovější\r\nstopovka\r\nstopový\r\nstoprocentní\r\nstopující\r\nstorno\r\nstornopoplatek\r\nstornovací\r\nstornování\r\nstornovaný\r\nstornovat\r\nstořádkový\r\nstosedmdesátikorunový\r\nstosedmdesátimiliónový\r\nstosedmdesátistránkový\r\nstosedmdesátitisícový\r\nstostránkový\r\nstošedesátikilometrový\r\nstošedesátistránkový\r\nstošedesátitisícový\r\nstotisící\r\nstotisícovka\r\nstotisícový\r\nstotřicetikilogramový\r\nstotřicetikilometrový\r\nstotřicetikilový\r\nstotřicetilitrový\r\nstotřicetimetrový\r\nstotřicetimiliardový\r\nstotřicetistránkový\r\nstotřicetitisícový\r\nstotřicetitunový\r\nstotunový\r\nstoudnější\r\nstoupací\r\nstoupačka\r\nstoupající\r\nstoupák\r\nstoupání\r\nstoupání\r\nStoupa\r\nstoupat\r\nstoupávání\r\nstoupávat\r\nstoupavější\r\nstoupavý\r\nstoupa\r\nstoupencův\r\nstoupenčin\r\nstoupenec\r\nstoupenka\r\nstoupenkyně\r\nstoupenkynin\r\nstoupnout\r\nstoupnutí\r\nStoupová\r\nstoupový\r\nStoupův\r\nstovečka\r\nstověžatý\r\nstovička\r\nstovka\r\nstovkový\r\nstowattový\r\nstožárek\r\nstožár\r\nstožarový\r\nstožárový\r\nstožecký\r\nStožec\r\nstr\r\nstrabismus\r\nstrabistický\r\nstrabologický\r\nstračí\r\nstračka\r\nStračov\r\nstračovský\r\nstrádající\r\nStrádalová\r\nStrádal\r\nStrádalův\r\nstrádání\r\nstrádat\r\nstrádávání\r\nstrádávat\r\nstrádavý\r\nstradivárky\r\nStradonice\r\nstradonický\r\nStrahov\r\nstrahovský\r\nstrach\r\nStrachotín\r\nstrachotínský\r\nstrachování\r\nstrachovat\r\nstrachovávání\r\nstrachovávat\r\nstrachující\r\nStrachujov\r\nstrachujovský\r\nstrachy\r\nstrakapoud\r\nstrakapoudův\r\nStraka\r\nstrakatější\r\nstrakatý\r\nstraka\r\nStrakonice\r\nStrakonicko\r\nstrakonický\r\nStrakošová\r\nStrakoš\r\nStrakošův\r\nStraková\r\nStrakov\r\nstrakovský\r\nStrakův\r\nstrana\r\nstránce\r\nStrančice\r\nstrančický\r\nstraně\r\nstránečka\r\nstranění\r\nstraněný\r\nstranící\r\nstranický\r\nstranictví\r\nstranička\r\nstraničtější\r\nstraničtina\r\nStraníková\r\nstraník\r\nStraník\r\nStraníkův\r\nstraníkův\r\nstranit\r\nstránka\r\nstránkovací\r\nstránkovač\r\nstránkování\r\nstránkovaný\r\nstránkovaný\r\nstránkovat\r\nstránkovávání\r\nstránkovávaný\r\nstránkovávat\r\nstránkový\r\nstranný\r\nstranou\r\nstranový\r\nStránský\r\nstráň\r\nStrasbourg\r\nStráský\r\nstrastích\r\nstrastím\r\nstrastiplnější\r\nstrastiplný\r\nstrast\r\nstrastnější\r\nstrastný\r\nstrašáčtější\r\nStrašáková\r\nstrašák\r\nStrašák\r\nStrašákův\r\nstrašákův\r\nStrašecí\r\nstrašení\r\nstrašený\r\nStrašice\r\nstrašicí\r\nstrašící\r\nstrašický\r\nstrašidelnější\r\nstrašidelný\r\nstrašidlo\r\nstrašidlový\r\nstrašilčin\r\nstrašilka\r\nStrašilová\r\nStrašil\r\nStrašilův\r\nStrašín\r\nstrašínský\r\nstrašit\r\nStraškov\r\nstraškovský\r\nStraškraba\r\nStraškrabová\r\nStraškrabův\r\nstrašlivější\r\nstrašlivý\r\nstrašnější\r\nStrašnice\r\nstrašnický\r\nStrašnov\r\nstrašnovský\r\nstrašný\r\nStrašov\r\nstrašovský\r\nstrašpytelčin\r\nstrašpytelka\r\nstrašpytel\r\nstrašpytelův\r\nstrašpytlův\r\nstrategický\r\nstrategičtější\r\nstrategie\r\nstratég\r\nstratégův\r\nstratifikace\r\nstratifikační\r\nstratigrafický\r\nstratigrafie\r\nstratosféra\r\nstratosférický\r\nStratov\r\nstratovský\r\nstratovulkán\r\nstratum\r\nstratus\r\nStraubová\r\nStraub\r\nStraubův\r\nStrauchův\r\nStraussová\r\nStrauss\r\nStraussův\r\nstrava\r\nstrávenější\r\nstrávení\r\nstravenka\r\nstrávený\r\nstrávit\r\nstravitelnější\r\nstravitelný\r\nstravné\r\nstrávnice\r\nstrávničin\r\nstrávník\r\nstrávníkův\r\nstravní\r\nstravovací\r\nstravování\r\nstravovaný\r\nstravovat\r\nstravovna\r\nstravující\r\nstrázeň\r\nstrážce\r\nstrážcův\r\nstrážecký\r\nstráženější\r\nstrážení\r\nstráženský\r\nstrážený\r\nstrážící\r\nStražisko\r\nStrážiště\r\nstrážišťský\r\nstrážit\r\nStrážkovice\r\nstrážkovický\r\nstrážkyně\r\nstrážkynin\r\nstrážmistr\r\nstrážmistrův\r\nStrážná\r\nStrážné\r\nStrážnice\r\nstrážnice\r\nstrážnicko\r\nstrážnický\r\nstrážníček\r\nstrážníčkův\r\nstrážničtější\r\nstrážník\r\nstrážníkův\r\nstrážní\r\nstrážný\r\nStrážov\r\nstrážovský\r\nstráž\r\nstrčení\r\nstrčený\r\nstrčit\r\nstrdí\r\nstreetworker\r\nstreetworkerův\r\nstrefení\r\nstrefený\r\nstrefit\r\nstrefování\r\nstrefovat\r\nStrejcová\r\nStrejc\r\nStrejcův\r\nstrejček\r\nStrejček\r\nStrejčková\r\nStrejčkův\r\nstrejda\r\nstrejdův\r\nstrejka\r\nStremayrův\r\nStrenice\r\nstrenický\r\nstreptokok\r\nstreptokokový\r\nstreptokokus\r\nstreptomycin\r\nstres\r\nstresogenní\r\nstresování\r\nstresovaný\r\nstresovat\r\nstresovávání\r\nstresovávaný\r\nstresovávat\r\nstresový\r\nstressový\r\nstresující\r\nstrhací\r\nstrhající\r\nstrhanější\r\nstrhání\r\nstrhaný\r\nstrhat\r\nstrhávací\r\nstrhávající\r\nstrhávanější\r\nstrhávání\r\nstrhávaný\r\nstrhávat\r\nstrhnout\r\nstrhnutější\r\nstrhnutí\r\nstrhnutý\r\nstrhování\r\nstrhovaný\r\nstrhovat\r\nstrhující\r\nstriace\r\nstriktnější\r\nstriktní\r\nstriktura\r\nstrip\r\nstriptérčin\r\nstriptérka\r\nstriptýz\r\nstriptýzový\r\nstrkající\r\nstrkanější\r\nstrkanice\r\nstrkání\r\nstrkaný\r\nstrkat\r\nstrkávání\r\nstrkávaný\r\nstrkávat\r\nStrkov\r\nstrkovský\r\nstrmější\r\nstrmělka\r\nstrmění\r\nstrmět\r\nstrmící\r\nStrmilov\r\nstrmilovský\r\nStrmisek\r\nStrmisková\r\nStrmiskův\r\nstrmý\r\nStrnádek\r\nStrnádková\r\nStrnádkův\r\nStrnadová\r\nstrnad\r\nStrnad\r\nStrnadův\r\nstrnadův\r\nstrnisko\r\nstrniskový\r\nstrniště\r\nstrnout\r\nstrnulejší\r\nstrnulý\r\nstrnulý\r\nstrnutí\r\nstrnutý\r\nstrofa\r\nstrofický\r\nstrofičtější\r\nstrohý\r\nstrojařský\r\nstrojařství\r\nstrojař\r\nstrojařův\r\nstrojek\r\nstrojenější\r\nstrojení\r\nstrojení\r\nstrojený\r\nStrojexport\r\nstrojící\r\nstrojírenský\r\nstrojírenství\r\nstrojírna\r\nstrojit\r\nstrojmistr\r\nstrojmistrův\r\nstrojnice\r\nstrojnický\r\nstrojnictví\r\nstrojničtější\r\nstrojník\r\nstrojníkův\r\nstrojní\r\nstrojopis\r\nstrojopisný\r\nstrojovější\r\nstrojovna\r\nstrojovnička\r\nstrojový\r\nStrojplast\r\nstroj\r\nstrojvedoucí\r\nstrojvůdce\r\nstrojvůdcovský\r\nstrojvůdcův\r\nstroka\r\nstromatit\r\nstromatitový\r\nstromatolit\r\nstromeček\r\nstromečkovitý\r\nstromečkový\r\nstromek\r\nstrom\r\nstromkový\r\nstromořadí\r\nstromovější\r\nstromoví\r\nstromovitý\r\nstromovka\r\nstromový\r\nstronciový\r\nstroncium\r\nstrontnatý\r\nStropešín\r\nstropešínský\r\nstrop\r\nStropnice\r\nstropnice\r\nstropnický\r\nStropnický\r\nstropní\r\nstropový\r\nstrouhající\r\nStrouhalová\r\nStrouhal\r\nStrouhalův\r\nstrouhanější\r\nstrouhání\r\nstrouhanka\r\nstrouhánka\r\nstrouhankový\r\nstrouhaný\r\nStrouha\r\nstrouhat\r\nstrouhávanější\r\nstrouhávání\r\nstrouhávaný\r\nstrouhávat\r\nstrouha\r\nStrouhová\r\nStrouhův\r\nstroupek\r\nStroupežnický\r\nstroužek\r\nstroužka\r\nstrožejší\r\nstrpení\r\nstrpění\r\nstrpěný\r\nstrpět\r\nstručnější\r\nstručný\r\nstruh\r\nstruhadlo\r\nStruhárová\r\nStruhár\r\nStruhárův\r\nStruhařov\r\nstruhařovský\r\nstruhátko\r\nstruha\r\nstrůjce\r\nstrůjcův\r\nstrůjkyně\r\nstrůjkynin\r\nstruk\r\nStrukov\r\nstrukovský\r\nstrukový\r\nstruktogram\r\nstrukturace\r\nstrukturalismus\r\nstrukturalista\r\nstrukturalistčin\r\nstrukturalistický\r\nstrukturalistka\r\nstrukturalistův\r\nstrukturalizace\r\nstrukturalizování\r\nstrukturalizovaný\r\nstrukturalizovat\r\nstrukturálnější\r\nstrukturální\r\nstruktura\r\nstrukturní\r\nstrukturovanější\r\nstrukturování\r\nstrukturovaný\r\nstrukturovat\r\nstrukturovatelný\r\nstrukturovávat\r\nstrukturující\r\nstruma\r\nstrunatcův\r\nstrunatec\r\nstruna\r\nstruník\r\nstrunka\r\nStrunkovice\r\nstrunkovický\r\nstrunný\r\nstrunový\r\nstrupatý\r\nStrupčice\r\nstrupčický\r\nstrup\r\nstrupovitý\r\nstruska\r\nstruskovitý\r\nstruskový\r\nstruženský\r\nstružinecký\r\nStružinec\r\nStružka\r\nstružka\r\nStružková\r\nstružkovitý\r\nstružkový\r\nStružkův\r\nStružná\r\nStružnice\r\nstružnický\r\nstrýcovský\r\nstrýc\r\nstrýcův\r\nstrýče\r\nstrýček\r\nStrýček\r\nStrýčková\r\nStrýčkův\r\nstrýčkův\r\nstrychnin\r\nstržení\r\nstržený\r\nstržit\r\nstržový\r\nstrž\r\nstřádací\r\nstřádač\r\nstřádal\r\nstřádalův\r\nstřádání\r\nstřádanka\r\nstřádaný\r\nstřadatelčin\r\nstřadatelka\r\nstřadatel\r\nstřadatelův\r\nstřádat\r\nstřádávat\r\nstřapatější\r\nstřapatý\r\nstřapec\r\nstřapeček\r\nstřásací\r\nstřásačka\r\nstřásání\r\nstřásaný\r\nstřásat\r\nstřásavý\r\nstřásl\r\nstřást\r\nstřeček\r\nstřečkování\r\nstřečkovat\r\nstřečkovitý\r\nstřečkův\r\nStředa\r\nstředa\r\nstředeční\r\nstředem\r\nstředění\r\nstředěný\r\nstřed\r\nstředicí\r\nstředící\r\nstředička\r\nstředisko\r\nstřediskový\r\nstřediště\r\nstředit\r\nstředivost\r\nstřednědobý\r\nstřednější\r\nstředněúhlý\r\nstřednězrnný\r\nstřednicový\r\nstředník\r\nstřední\r\nstředoafrický\r\nStředoafričančin\r\nStředoafričanka\r\nStředoafričan\r\nStředoafričanův\r\nstředoamerický\r\nstředoameričančin\r\nstředoameričanův\r\nstředoameričtější\r\nstředoanglický\r\nstředoangličtější\r\nstředoasijský\r\nstředobod\r\nstředočech\r\nstředočechův\r\nStředočeský\r\nstředočeský\r\nstředodunajský\r\nstředoevropančin\r\nstředoevropanka\r\nstředoevropan\r\nstředoevropanův\r\nstředoevropský\r\nstředoevropštější\r\nstředohoří\r\nstředometrážní\r\nStředomoří\r\nstředomoří\r\nstředomořský\r\nstředomořský\r\nstředoněmecký\r\nstředoplošník\r\nstředoslovenský\r\nstředostavovský\r\nstředoškolačka\r\nstředoškolák\r\nstředoškolákův\r\nstředoškolský\r\nstředouší\r\nstředoušní\r\nStředová\r\nstředověkářství\r\nstředověk\r\nstředověký\r\nstředovka\r\nstředovlnný\r\nStředovský\r\nstředovýchodnější\r\nstředový\r\nstředozápad\r\nStředozemí\r\nstředozemní\r\nstředozemský\r\nStřed\r\nStředův\r\nstřeh\r\nstřechatka\r\nstřecha\r\nstřechovitý\r\nstřechový\r\nStřekov\r\nstřekovský\r\nstřela\r\nStřelba\r\nstřelba\r\nStřelbová\r\nStřelbův\r\nstřelcův\r\nstřelecký\r\nstřelectví\r\nstřelec\r\nStřeleček\r\nStřelečková\r\nStřelečkův\r\nStřeleč\r\nstřelenější\r\nstřelení\r\nstřelenský\r\nstřelený\r\nstřelený\r\nstřelhbitější\r\nstřelhbitý\r\nStřelice\r\nstřelický\r\nstřeliště\r\nstřelit\r\nstřelivo\r\nStřelka\r\nstřelka\r\nStřelková\r\nStřelkův\r\nstřelkyně\r\nstřelkynin\r\nstřelmistrovský\r\nstřelmistr\r\nstřelmistrův\r\nStřelná\r\nstřelnice\r\nstřelný\r\nstřelovitý\r\nstřemhlav\r\nstřemhlavější\r\nstřemhlavý\r\nstřemcha\r\nstřemchový\r\nstřenější\r\nstření\r\nstřenka\r\nstřený\r\nstřepání\r\nstřepaný\r\nstřepat\r\nstřepávání\r\nstřepávaný\r\nstřepávat\r\nstřep\r\nstřepina\r\nstřepinka\r\nstřepinkový\r\nstřepinový\r\nstřesení\r\nstřesen\r\nstřesený\r\nstřesu\r\nstřešní\r\nStřešovice\r\nstřešovický\r\nstřetání\r\nstřetat\r\nstřetávající\r\nstřetávání\r\nstřetávat\r\nstřet\r\nstřetnout\r\nstřetnutí\r\nstřetnutý\r\nstřetný\r\nstřetový\r\nstřevícový\r\nstřevíc\r\nstřevíček\r\nstřevíčník\r\nstřevle\r\nstřevlička\r\nstřevlík\r\nstřevlíkův\r\nstřevní\r\nstřevo\r\nstřevový\r\nstřeženější\r\nstřežení\r\nstřežený\r\nstřežící\r\nstřežit\r\nstříbrecký\r\nStříbrec\r\nstříbrenský\r\nStříbrná\r\nstříbrnější\r\nStříbrnice\r\nstříbrnický\r\nstříbrnictví\r\nStříbrnský\r\nStříbrný\r\nstříbrný\r\nstříbrobílý\r\nstříbrolesklý\r\nstříbro\r\nstříbrošedý\r\nstříbrovlasý\r\nstříbřenčin\r\nstříbřenka\r\nstříbřený\r\nstříbřící\r\nstříbřit\r\nstříbřitější\r\nstříbřitý\r\nstřídací\r\nstřídačka\r\nstřídačový\r\nstřídač\r\nstřídající\r\nstřídání\r\nstřídání\r\nstřídaný\r\nstřídat\r\nstřídávání\r\nstřídávaný\r\nstřídávat\r\nstřídavější\r\nstřídavý\r\nstřída\r\nstřídka\r\nstřídmější\r\nstřídmý\r\nstřídnice\r\nstřihací\r\nstříhací\r\nstřihačka\r\nstříhačka\r\nstřihačský\r\nstříhačský\r\nstřihač\r\nstříhač\r\nstřihačův\r\nstříhačův\r\nstřihadlo\r\nstříhající\r\nstříhání\r\nstřihání\r\nstříhání\r\nstřihaný\r\nstříhaný\r\nstřihárna\r\nstříhárna\r\nstřihat\r\nstříhat\r\nstřihávání\r\nstříhávání\r\nstřihávaný\r\nstříhávaný\r\nstřihávat\r\nstříhávat\r\nStřihavka\r\nStřihavková\r\nStřihavkův\r\nstřih\r\nstřihnout\r\nstřihnutí\r\nstřihový\r\nstříkací\r\nstříkačka\r\nstříkač\r\nstříkačův\r\nstříkající\r\nstříkanec\r\nstříkání\r\nstříkaný\r\nstříkat\r\nstříkávání\r\nstříkávaný\r\nstříkávat\r\nstřik\r\nstříknout\r\nstříknutější\r\nstříknutí\r\nstříknutý\r\nstřikový\r\nstřílecí\r\nstřílečka\r\nstřílející\r\nstřílení\r\nstřílený\r\nstřílet\r\nstřílna\r\nstřípek\r\nstříška\r\nstřít\r\nStříteský\r\nstřívko\r\nstřízlík\r\nstřízlíkův\r\nstřízlivější\r\nstřízlivění\r\nstřízlivět\r\nstřízliv\r\nstřízlivý\r\nstřižení\r\nstřižený\r\nStřižíková\r\nStřižík\r\nStřižíkův\r\nstřižna\r\nstřižní\r\nStřížová\r\nStřížovice\r\nstřížovický\r\nStřížov\r\nstřížovský\r\nStříž\r\nStřížův\r\nstřiž\r\nstříž\r\nstůčka\r\nstůčkovací\r\nstůčkování\r\nstůčkovaný\r\nstůčkovat\r\nstůčkový\r\nstudánečka\r\nstudánka\r\nstudánkový\r\nStudená\r\nstudenecký\r\nstudénecký\r\nStudenec\r\nstudenější\r\nStudeněves\r\nstudeněveský\r\nStudené\r\nstudění\r\nstudenka\r\nStudénka\r\nstudénka\r\nstudenokrevný\r\nstudeno\r\nStudenov\r\nstudenovský\r\nstudenský\r\nstudenstvo\r\nstudentčin\r\nstudentík\r\nstudentíkův\r\nstudentka\r\nstudent\r\nstudentský\r\nstudentstvo\r\nstudentštější\r\nstudentův\r\nStudený\r\nstudený\r\nstud\r\nstudie\r\nStudihradová\r\nStudihrad\r\nStudihradův\r\nstudijnější\r\nstudijní\r\nstudio\r\nstudiovější\r\nstudiový\r\nstudit\r\nstudium\r\nstudivější\r\nstudivý\r\nstudnařský\r\nstudnař\r\nstudnařův\r\nstudna\r\nstudně\r\nStudnice\r\nstudnice\r\nstudnický\r\nStudnička\r\nstudnička\r\nStudničková\r\nStudničkův\r\nstudniční\r\nstudnový\r\nstudovanější\r\nstudování\r\nstudovaný\r\nstudovat\r\nstudovatelnější\r\nstudovatelný\r\nstudovávající\r\nstudovávání\r\nstudovávaný\r\nstudovávat\r\nstudovávavanější\r\nstudovávavání\r\nstudovávavaný\r\nstudovna\r\nstudující\r\nstudýnka\r\nstuhařský\r\nstuha\r\nstuhový\r\nstuchlejší\r\nStuchlíková\r\nStuchlík\r\nStuchlíkův\r\nStuchlý\r\nstuchlý\r\nstůjme\r\nstůj\r\nstůjte\r\nstůl\r\nstulení\r\nstulený\r\nstulík\r\nStulíková\r\nStulík\r\nStulíkův\r\nstulit\r\nStumpfův\r\nstůňu\r\nstupačka\r\nstupadlo\r\nstupátko\r\nStupava\r\nstupavský\r\nstupeň\r\nstup\r\nstupidita\r\nstupidnější\r\nstupidní\r\nstupínek\r\nStupka\r\nstupka\r\nStupková\r\nStupkův\r\nstupnice\r\nstupnicový\r\nstupňovací\r\nstupňovanější\r\nstupňování\r\nstupňovaný\r\nstupňovaný\r\nstupňovat\r\nstupňovatelnější\r\nstupňovatelný\r\nstupňovitější\r\nstupňovitý\r\nstupňový\r\nstupňující\r\nStuttgart\r\nstuttgartský\r\nstužka\r\nstužkonoska\r\nstužkovitý\r\nstužkový\r\nstužování\r\nstužovaný\r\nstužovat\r\nstvol\r\nStvolová\r\nstvolovský\r\nstvořenější\r\nstvořeníčko\r\nstvoření\r\nstvořený\r\nStvořidla\r\nstvořit\r\nstvořitelčin\r\nstvořitelka\r\nstvořitelský\r\nstvořitel\r\nstvořitelův\r\nstvrdit\r\nstvrzení\r\nstvrzenka\r\nstvrzený\r\nstvrzování\r\nstvrzovaný\r\nstvrzovat\r\nstvrzující\r\nstvůra\r\nstvůrný\r\nStyblíková\r\nStyblík\r\nStyblíkův\r\nStýblo\r\nStýblová\r\nStýblův\r\nStýbrová\r\nStýbr\r\nStýbrův\r\nstyčníkový\r\nstyčný\r\nstydění\r\nstydět\r\nstydký\r\nstydlivější\r\nstydlivka\r\nstydlivý\r\nstydno\r\nstydnout\r\nstydnutí\r\nstýkací\r\nstykač\r\nstýkající\r\nstýkání\r\nstýkat\r\nstyk\r\nstykovací\r\nstykovější\r\nstykový\r\nstykový\r\nstyl\r\nstylisování\r\nstylisovaný\r\nstylisovat\r\nstylista\r\nstylistčin\r\nstylistický\r\nstylistika\r\nstylistka\r\nstylistův\r\nstylizace\r\nstylizační\r\nstylizování\r\nstylizovaný\r\nstylizovat\r\nstylizující\r\nstylotvorný\r\nstylovější\r\nstylový\r\nstylus\r\nstyrenový\r\nstyrenoxid\r\nstýskání\r\nstýskat\r\nstýskávat\r\nstyx\r\nstý\r\nsubalterní\r\nsubartefakt\r\nsubatomární\r\nsubbáze\r\nsubdefinitní\r\nsubdeterminant\r\nsubdialekt\r\nsubdirektní\r\nsubdodavatelčin\r\nsubdodavatelka\r\nsubdodavatelský\r\nsubdodavatel\r\nsubdodavatelův\r\nsubdodávka\r\nsubdoména\r\nsubdominanta\r\nsubdominantní\r\nsubdukce\r\nsubdukční\r\nsubglaciální\r\nsubgraf\r\nsubharmonický\r\nsubharmoničtější\r\nsubhumánní\r\nsubchronický\r\nsubjekt\r\nsubjektivismus\r\nsubjektivista\r\nsubjektivistčin\r\nsubjektivistický\r\nsubjektivističtější\r\nsubjektivistka\r\nsubjektivistův\r\nsubjektivita\r\nsubjektivnější\r\nsubjektivní\r\nsubjektobjekt\r\nsubjektový\r\nsubkanál\r\nsubkapitola\r\nsubkategorie\r\nsubkategorizace\r\nsubkategorizovaný\r\nsubkategorizovat\r\nsubkategorizovatelný\r\nsubkomise\r\nsubkomponenta\r\nsubkonsolidovaný\r\nsubkontinent\r\nsubkontraoktáva\r\nsubkorpus\r\nsubkultura\r\nsubkvadrant\r\nsubkvóta\r\nsublicence\r\nsublimace\r\nsublimát\r\nsublimování\r\nsublimovaný\r\nsublimovat\r\nsublimující\r\nsubmatice\r\nsubmikronový\r\nsubmolekulární\r\nsubnanosekundový\r\nsubordinace\r\nSubotová\r\nSubot\r\nSubotův\r\nsubpolární\r\nsubpopulace\r\nsubprojekt\r\nsubreta\r\nsubsaharský\r\nsubsekce\r\nsubsektor\r\nsubschéma\r\nsubsidence\r\nsubsidiarita\r\nsubskribent\r\nsubskribentův\r\nsubskribovat\r\nsubskripce\r\nsubskripční\r\nsubsonický\r\nsubspecializace\r\nsubstance\r\nsubstantivizace\r\nsubstantivizování\r\nsubstantivizovaný\r\nsubstantivizovat\r\nsubstantivní\r\nsubstantivum\r\nsubstituce\r\nsubstituční\r\nsubstituování\r\nsubstituovaný\r\nsubstituovat\r\nsubstituovávání\r\nsubstituovávaný\r\nsubstituovávat\r\nsubstitut\r\nsubstituující\r\nsubstrát\r\nsubstrátový\r\nsubstruktura\r\nsubsumovat\r\nsubsystém\r\nsubtilnější\r\nsubtilní\r\nsubtraktivní\r\nsubtropický\r\nsubtropičtější\r\nsubtropy\r\nsubtyp\r\nsubvarianta\r\nsubvence\r\nsubvencovanější\r\nsubvencování\r\nsubvencovaný\r\nsubvencovat\r\nsubvencovávání\r\nsubvencovávaný\r\nsubvencovávat\r\nsubvencující\r\nsubvenční\r\nsubzrno\r\nsuccistearin\r\nsúčtovat\r\nsuď\r\nSúdáncův\r\nSúdánčin\r\nSúdánec\r\nSúdán\r\nSúdánka\r\nsúdánský\r\nsúdánský\r\nSuda\r\nsudba\r\nSudějov\r\nsudějovský\r\nSudek\r\nsudetoněmecký\r\nsudetský\r\nsudetský\r\nSudety\r\nsud\r\nSudice\r\nsudický\r\nsudička\r\nsudičský\r\nsudičství\r\nsudič\r\nsudičův\r\nsudidlo\r\nsudí\r\nsudka\r\nSudková\r\nSudkov\r\nsudkovský\r\nSudkův\r\nsudlice\r\nsudokopytník\r\nsudokopytníkův\r\nSudoměřice\r\nsudoměřický\r\nsudoměřský\r\nSudoměř\r\nsudoprstý\r\nSudová\r\nsudovější\r\nsudovina\r\nsudovitý\r\nSudovo\r\nsudový\r\nSudslava\r\nSudův\r\nsudý\r\nsuezský\r\nsufismus\r\nsúfismus\r\nsúfistický\r\nsufit\r\nsufitový\r\nsufix\r\nsufixový\r\nsuflérčin\r\nsuflérka\r\nsufražetčin\r\nsufražetka\r\nsugerování\r\nsugerovaný\r\nsugerovat\r\nsugerující\r\nsugesce\r\nsugestibilita\r\nsugestibilnější\r\nsugestibilní\r\nsugestivnější\r\nsugestivní\r\nSuchánek\r\nSuchánková\r\nSuchánkův\r\nSuchanová\r\nSuchan\r\nSuchanův\r\nsucharčin\r\nSucharda\r\nSuchardová\r\nSuchardův\r\nsuchar\r\nsucharka\r\nsucharský\r\nSuchařípa\r\nSuchařípová\r\nSuchařípův\r\nSuchá\r\nSuchdol\r\nsuchdolský\r\nsuchobytný\r\nsuchohřib\r\nSuchomelová\r\nSuchomel\r\nSuchomelův\r\nsuchomilný\r\nsucho\r\nsuchopár\r\nsuchopárnější\r\nsuchopárný\r\nsuchopýr\r\nSuchov\r\nsuchovský\r\nsuchovzdorný\r\nsuchozemský\r\nSuchumi\r\nsuchumský\r\nSuchý\r\nsuchý\r\nsuita\r\nsuitový\r\nsukcese\r\nsukcesní\r\nsukcinát\r\nsukénka\r\nsuk\r\nsukloněnější\r\nsuklonění\r\nsukně\r\nsuknice\r\nsukničkářský\r\nsukničkář\r\nsukničkářův\r\nsuknička\r\nsukno\r\nsukňový\r\nsukovatý\r\nSuková\r\nsukovice\r\nsukovitější\r\nsukovitý\r\nsukový\r\nSuk\r\nsukulent\r\nsukulentní\r\nSukupčáková\r\nSukupčák\r\nSukupčákův\r\nsukus\r\nSukův\r\nsukýnka\r\nsůl\r\nsulc\r\nsulcový\r\nSulejovice\r\nsulejovický\r\nsulfan\r\nsulfasalazin\r\nsulfát\r\nsulfátový\r\nsulfid\r\nsulfidický\r\nsulfidový\r\nsulfidující\r\nsulfitový\r\nsulfobromid\r\nsulfochlorid\r\nsulfojodid\r\nsulfokyanatan\r\nsulfonamid\r\nsulfonový\r\nsulfonylhalogenid\r\nsulfosukcinát\r\nSulice\r\nsulický\r\nSulíkov\r\nsulíkovský\r\nSulimov\r\nsulimovský\r\nsulka\r\nsulkovecký\r\nSulkovec\r\nSulovský\r\nsultanát\r\nsultánka\r\nsultán\r\nsultánský\r\nsultánův\r\nsumace\r\nsumarizace\r\nsumarizační\r\nsumarizování\r\nsumarizovaný\r\nsumarizovat\r\nsumarizující\r\nsumární\r\nsumárum\r\nsumář\r\nsumátor\r\nsumátorův\r\nSumatra\r\nsuma\r\nsumcovitý\r\nsumcův\r\nsumčí\r\nsumec\r\nsumeček\r\nsumečkův\r\nSumer\r\nsumerský\r\nsumerština\r\nSumerův\r\nSumgait\r\nsumička\r\nsumírování\r\nsumírovaný\r\nsumírovat\r\nsumit\r\nsumka\r\nsummit\r\nsumýš\r\nsumýšův\r\nsundání\r\nsundaný\r\nsundat\r\nsundávanější\r\nsundavání\r\nsundávání\r\nsundávaný\r\nsundávaný\r\nsundavat\r\nsundávat\r\nsun\r\nsunnitský\r\nsunout\r\nsunutí\r\nsunutý\r\nsupějící\r\nsupění\r\nsupěný\r\nsuper\r\nsuperagent\r\nsuperagentův\r\nsuperaudit\r\nsuperaustenitický\r\nsuperčástice\r\nsuperdividenda\r\nsuperdlouhý\r\nsuperdotace\r\nsuperduplexní\r\nsuperexcitace\r\nsuperferitický\r\nsuperfinišovací\r\nsuperfinišování\r\nsuperfinišovaný\r\nsuperfinišovat\r\nsuperfosfát\r\nsupergalaxie\r\nsupergravitace\r\nsupergravitační\r\nsuperheterodyn\r\nsuperhet\r\nsuperhit\r\nsuperhmotný\r\nsuperhvězda\r\nsuperchromatický\r\nsuperchromatičtější\r\nsuperintelekt\r\nsuperintendant\r\nsuperintendantův\r\nsuperinvestice\r\nsuperiorní\r\nsuperkategorie\r\nsuperkoalice\r\nsuperkontrakt\r\nsuperlativ\r\nsuperlativní\r\nsupermančin\r\nsupermanka\r\nsuperman\r\nsupermanův\r\nsupermarket\r\nsupermartensitický\r\nsupermartensitický\r\nsupermasivní\r\nsupermodelčin\r\nsupermodelka\r\nsupermoderní\r\nsupermolekulární\r\nsupernabídka\r\nsupernízký\r\nsupernova\r\nsupernový\r\nsupernulový\r\nsuperobří\r\nsuperokno\r\nsuperorganismus\r\nsuperosobnost\r\nsuperostrý\r\nsuperoxid\r\nsuperparlament\r\nsuperplasticita\r\nsuperplastický\r\nsuperplastičtější\r\nsuperpočítačový\r\nsuperpočítač\r\nsuperpozice\r\nsuperpoziční\r\nsuperpřesný\r\nsuperrychlý\r\nsuperserver\r\nsuperskalární\r\nsuperslitina\r\nsupersonický\r\nsupersonický\r\nsuperstát\r\nsuperstruktura\r\nsupersymetrický\r\nsupersymetrie\r\nsuperšpička\r\nsupertalent\r\nsupertalentův\r\nsupertřída\r\nsuperuživatelčin\r\nsuperuživatelka\r\nsuperuživatel\r\nsuperuživatelův\r\nsupervelmocích\r\nsupervelmocím\r\nsupervelmoc\r\nsupervize\r\nsupervizor\r\nsupervizorův\r\nsupět\r\nsupící\r\nsupí\r\nsuplent\r\nsuplika\r\nsuplování\r\nsuplovaný\r\nsuplovat\r\nsuplující\r\nsuportový\r\nsupot\r\nSupová\r\nsup\r\nsup\r\nSup\r\nsuprahustý\r\nsupranaturalismus\r\nsuprasegmentální\r\nsupratekutost\r\nsupratekutý\r\nsupravodič\r\nsupravodivější\r\nsupravodivý\r\nsuprematismus\r\nsuprematista\r\nsuprematistčin\r\nsuprematistický\r\nsuprematistka\r\nsuprematistův\r\nsupremum\r\nSupův\r\nsupův\r\nSůra\r\nsurdický\r\nsurdomutismus\r\nsurfing\r\nsurfink\r\nsurfování\r\nsurfový\r\nsurfující\r\nSurinamcův\r\nSurinamčin\r\nSurinamec\r\nSurinam\r\nSurinamka\r\nsurinamský\r\nsurjekce\r\nsurjektivní\r\nsurogátový\r\nSůrová\r\nsurovcův\r\nsurovec\r\nsurovější\r\nsurovět\r\nsurovina\r\nsurovinový\r\nsurový\r\nsurrealismus\r\nsurrealista\r\nsurrealistčin\r\nsurrealistický\r\nsurrealistka\r\nsurrealistův\r\nsurreálný\r\nSůrův\r\nSurý\r\nsuřík\r\nsuříkový\r\nsusceptibilita\r\nSuSE\r\nsuspektnější\r\nsuspendování\r\nsuspendovaný\r\nsuspendovat\r\nsuspense\r\nsuspenze\r\nsušák\r\nsušánka\r\nsušárenský\r\nsušárna\r\nsušeji\r\nsušenější\r\nsušení\r\nsušenka\r\nsušenkový\r\nsušený\r\nsušený\r\nSušice\r\nsušicí\r\nsušící\r\nSušicko\r\nsušický\r\nsušička\r\nsušič\r\nsušidlo\r\nsušina\r\nsušinka\r\nsušit\r\nsuška\r\nsušský\r\nsušší\r\nsutana\r\nsuterén\r\nsuterénní\r\nsutina\r\nsuťmi\r\nsuťovitý\r\nsuťový\r\nsuť\r\nSůva\r\nsůva\r\nsuvenýr\r\nsuverenita\r\nsuverénnější\r\nsuverénní\r\nsuverén\r\nsuverénův\r\nsůvička\r\nsuvný\r\nSuvorovův\r\nSůvová\r\nSůvův\r\nsužování\r\nsužovaný\r\nsužovat\r\nsužující\r\nSV\r\nSv\r\nsv\r\nsvačení\r\nsvačený\r\nsvačící\r\nSvačina\r\nsvačinářčin\r\nsvačinářka\r\nsvačina\r\nsvačinka\r\nsvačinkový\r\nSvačinová\r\nsvačinový\r\nSvačinův\r\nsvačit\r\nsvádějící\r\nsváděnější\r\nsvádění\r\nsváděný\r\nsvádět\r\nsvádivý\r\nsvah\r\nsvahilština\r\nsvahoměr\r\nsvahovací\r\nsvahování\r\nsvahovaný\r\nsvahovat\r\nsvahový\r\nsvalení\r\nsválení\r\nsvalený\r\nsválený\r\nsválet\r\nsval\r\nsvalit\r\nsvalnatější\r\nsvalnatý\r\nsvalování\r\nsvalovaný\r\nsvalovat\r\nsvalovávání\r\nsvalovávaný\r\nsvalovávat\r\nsvalovcův\r\nsvalovčitost\r\nsvalovec\r\nsvalovější\r\nsvalovina\r\nsvalovitý\r\nsvalový\r\nsvalstvo\r\nsvá\r\nsvání\r\nsvanout\r\nSvantovít\r\nSvantovítův\r\nsvar\r\nsvár\r\nsvárlivější\r\nsvárlivý\r\nSvárov\r\nSvárovský\r\nsvárovský\r\nsvarový\r\nsvářecí\r\nsvářecký\r\nsvářečka\r\nsvářečský\r\nsvářeč\r\nsvářečův\r\nsvařenec\r\nsvaření\r\nsváření\r\nsvařený\r\nsvářený\r\nsvářet\r\nsvářící\r\nsvářit\r\nsvařit\r\nsvařitelnější\r\nsvařitelný\r\nsvářkový\r\nsvařovací\r\nsvařování\r\nsvařovaný\r\nsvařovat\r\nsvařovatelný\r\nsvařovávat\r\nsvařovna\r\nsvařující\r\nsvastika\r\nsvaťák\r\nSvaťa\r\nSvatava\r\nSvatavin\r\nSvatá\r\nsvatba\r\nsvatbička\r\nsvát\r\nsvatebčančin\r\nsvatebčanka\r\nsvatebčan\r\nsvatebčanův\r\nsvatební\r\nsvátečnější\r\nsváteční\r\nsvatější\r\nSvatek\r\nSvátek\r\nsvátek\r\nSvatková\r\nSvátková\r\nsvátkový\r\nSvatkův\r\nSvátkův\r\nSvatobor\r\nsvatoborský\r\nSvatobořice\r\nsvatodorotský\r\nsvatodušní\r\nsvatohavelský\r\nsvatohostýnský\r\nsvatojakubský\r\nsvatojánek\r\nsvatojánkův\r\nsvatojánský\r\nsvatojanský\r\nsvatojiřský\r\nsvatokateřinský\r\nsvatokrádce\r\nsvatokrádcův\r\nsvatokrádežný\r\nsvatokrádež\r\nsvatokupcův\r\nsvatokupectví\r\nsvatokupec\r\nsvatomartinský\r\nSvatoňová\r\nSvatoňovice\r\nsvatoňovický\r\nSvatoň\r\nSvatoňův\r\nsvatopetrský\r\nsvatopiscův\r\nsvatopisec\r\nSvatopluk\r\nSvatoplukův\r\nsvatořečení\r\nsvatořečení\r\nsvatořečený\r\nsvatořečit\r\nSvatoslav\r\nSvatoslavův\r\nsvatostánek\r\nsvátostina\r\nsvátost\r\nsvátostný\r\nsvatosvatější\r\nsvatosvatý\r\nSvatošová\r\nsvatoštěpánská\r\nsvatoštěpánský\r\nSvatoš\r\nSvatošův\r\nsvatotrojický\r\nsvatoušek\r\nsvatoušek\r\nsvatouškovský\r\nsvatouškův\r\nsvatováclavský\r\nsvatovalentinský\r\nsvatovavřinecký\r\nsvatovítský\r\nsvatovojtěšský\r\nsvatozář\r\nsvatský\r\nSvatušek\r\nSvatušková\r\nSvatuškův\r\nSvaťův\r\nSvatý\r\nsvatyně\r\nsvatyňka\r\nsvatý\r\nsvátý\r\nsvazácký\r\nsvazaččin\r\nsvazačka\r\nsvazáčtější\r\nsvazák\r\nsvazákův\r\nsvázanější\r\nsvázání\r\nsvázaný\r\nSvazarm\r\nsvazarmovcův\r\nsvazarmovec\r\nsvazarmovkyně\r\nsvazarmovkynin\r\nsvazarmovský\r\nsvázat\r\nsvázávanější\r\nsvázávání\r\nsvázávaný\r\nsvázávat\r\nsvazčitý\r\nsvazeček\r\nsvazek\r\nsvaz\r\nSvazijcův\r\nSvazijčin\r\nSvazijec\r\nSvazijka\r\nSvazijsko\r\nsvazijský\r\nsvazkovací\r\nsvazkování\r\nsvazkovaný\r\nsvazkovat\r\nsvazkový\r\nsvazovanější\r\nsvazování\r\nsvazovaný\r\nsvazovat\r\nsvazovější\r\nsvazový\r\nsvazující\r\nsvážející\r\nsváženější\r\nsvážení\r\nsvážený\r\nsvážet\r\nsváži\r\nsvažitý\r\nsvážnice\r\nsvážný\r\nsvažovanější\r\nsvažování\r\nsvažovaný\r\nsvažovat\r\nsvažovatelnější\r\nsvažovatelný\r\nsvažující\r\nSvébohov\r\nsvébohovský\r\nsvébytnější\r\nsvébytný\r\nsvěcenější\r\nsvěcení\r\nsvěcený\r\nsvědčení\r\nsvědčící\r\nsvědčit\r\nsvědčme\r\nsvědč\r\nsvědčte\r\nsvědecký\r\nsvědectví\r\nsvědečtější\r\nsvědek\r\nsvedenější\r\nsvedení\r\nsvědění\r\nsveden\r\nsvedený\r\nsvěděný\r\nsvědět\r\nsvědící\r\nsvědit\r\nsvědivější\r\nsvědivý\r\nsvědkův\r\nsvědkyně\r\nsvědkynin\r\nsvedl\r\nsvědomí\r\nsvědomitější\r\nsvědomitý\r\nsvedu\r\nsvéhlavější\r\nsvéhlaviččin\r\nsvéhlavička\r\nsvéhlavý\r\nsvého\r\nsvém\r\nsvémocný\r\nsvému\r\nsvé\r\nsvépomocích\r\nsvépomocím\r\nsvépomoc\r\nsvépomocný\r\nsvéprávnější\r\nsvéprávný\r\nsvěrací\r\nsvěrač\r\nsvěrák\r\nSvěráková\r\nsvěrákový\r\nSvěrák\r\nSvěrákův\r\nsvéráz\r\nsvéráznější\r\nsvérázný\r\nsvěrka\r\nsvěrkový\r\nsvěřencův\r\nsvěřenčin\r\nsvěřenecký\r\nsvěřenectví\r\nsvěřenec\r\nsvěřenější\r\nsvěření\r\nsvěřenka\r\nsvěřenkyně\r\nsvěřenkynin\r\nsvěřenský\r\nsvěřenství\r\nsvěřenštější\r\nsvěřený\r\nsveřepější\r\nsveřepý\r\nsvěřit\r\nsvěřovanější\r\nsvěřování\r\nsvěřovaný\r\nsvěřovat\r\nsvěřovávat\r\nsvěsit\r\nsvést\r\nsvěšení\r\nsvěšený\r\nsvěšovat\r\nsvětácký\r\nsvětáctví\r\nsvětaččin\r\nsvětačka\r\nsvětáčtější\r\nsvětadíl\r\nSvětáková\r\nsvěták\r\nSvěták\r\nSvětákův\r\nsvětákův\r\nsvětastředný\r\nsvětaznalý\r\nsvětcův\r\nsvětecký\r\nsvětectví\r\nsvětec\r\nsvětečtější\r\nsvětější\r\nsvětélko\r\nsvětélkování\r\nsvětélkovaný\r\nsvětélkovat\r\nsvětélkující\r\nsvětelnější\r\nsvětelný\r\nsvětelský\r\nsvětice\r\nsvětící\r\nsvětit\r\nsvět\r\nSvětlana\r\nSvětlančin\r\nSvětlanin\r\nsvětlání\r\nSvětlanka\r\nsvětlat\r\nSvětlá\r\nsvětlehnědý\r\nsvětlejší\r\nsvětlemodrý\r\nsvětlezelenější\r\nsvětlezelený\r\nsvětlice\r\nsvětlicový\r\nsvětlík\r\nsvětlíkový\r\nsvětlina\r\nsvětlocit\r\nsvětlocitlivý\r\nsvětločivý\r\nsvětloléčba\r\nsvětlomet\r\nsvětlomilný\r\nsvětlomodřejší\r\nsvětlo\r\nsvětlonoš\r\nsvětlonošův\r\nsvětloplachý\r\nsvětlotisk\r\nsvětlotiskový\r\nsvětloučký\r\nsvětlovlásčin\r\nsvětlovláska\r\nsvětlovlasý\r\nsvětlový\r\nsvětluška\r\nSvětlův\r\nSvětlý\r\nsvětlý\r\nsvětnice\r\nsvětnicový\r\nsvětnička\r\nSvětnov\r\nsvětnovský\r\nsvětoběžnice\r\nsvětoběžnictví\r\nsvětoběžník\r\nsvětoběžníkův\r\nsvětobol\r\nsvětobornější\r\nsvětoborný\r\nsvětočar\r\nsvětočára\r\nsvětodějný\r\nsvětonázor\r\nsvětonázorový\r\nsvětoobčančin\r\nsvětoobčanka\r\nsvětoobčan\r\nsvětoobčanský\r\nsvětoobčanství\r\nsvětoobčanův\r\nsvětovější\r\nsvětovka\r\nsvětovláda\r\nsvětovládce\r\nsvětovládcův\r\nsvětovládný\r\nsvětový\r\nsvětoznámý\r\nsvětozor\r\nsvetr\r\nsvetříček\r\nsvetřík\r\nsvětský\r\nsvětštější\r\nsvětýlko\r\nsvévole\r\nsvévolnější\r\nsvévolný\r\nsvezenější\r\nsvezení\r\nsvezený\r\nsvézt\r\nsvěžejší\r\nsvěžest\r\nsvěží\r\nSviadnov\r\nsviadnovský\r\nsvícení\r\nsvícen\r\nsvíce\r\nsvíčička\r\nsvíčkař\r\nsvíčkařův\r\nsvíčka\r\nsvíčkový\r\nsvída\r\nSvídnice\r\nSvídnický\r\nSvídnický\r\nsvídovitý\r\nsvídový\r\nsvidřík\r\nsvíjející\r\nsvíjení\r\nsvíjený\r\nsvíjet\r\nsvíjivý\r\nsviluška\r\nsví\r\nSvinařov\r\nsvinařovský\r\nSvinčice\r\nsvinčický\r\nsvinčík\r\nsvině\r\nSvin\r\nSvinibrod\r\nsvinibrodský\r\nsvinka\r\nsvinout\r\nsvinovací\r\nsvinování\r\nsvinovaný\r\nsvinovat\r\nsvinský\r\nsviňský\r\nsvinský\r\nsvinstvo\r\nsviňštější\r\nsviňucha\r\nsvinutí\r\nsvinutka\r\nsvinutý\r\nsvinutý\r\nsvírající\r\nsvírák\r\nsvíranější\r\nsvírání\r\nsvíraný\r\nsvírat\r\nsvíravější\r\nsvíravý\r\nsvírka\r\nsvislejší\r\nsvislý\r\nsvislý\r\nsvislý\r\nsvist\r\nsvistot\r\nsvištění\r\nsvištět\r\nsvištící\r\nsvištivější\r\nsvištivý\r\nSvišťový\r\nsvišťový\r\nsvišť\r\nsvišťův\r\nSvitáková\r\nSviták\r\nSvitákův\r\nsvítání\r\nsvítat\r\nSvitava\r\nSvitávka\r\nsvitavsko\r\nsvitavský\r\nSvitavy\r\nsvita\r\nSvítek\r\nsvitek\r\nsvítek\r\nsvítění\r\nsvit\r\nsvítící\r\nsvítidlo\r\nsvítilka\r\nsvítilna\r\nsvítilnička\r\nsvítiplyn\r\nsvítit\r\nsvítívat\r\nsvítivější\r\nsvítivý\r\nSvítková\r\nsvitkový\r\nsvítkový\r\nSvítkův\r\nsvitnout\r\nsvitnutí\r\nsvízelnější\r\nsvízelný\r\nsvízel\r\nsvižnější\r\nsvižník\r\nsvižníkův\r\nsvižný\r\nsvlačcovitý\r\nsvlačec\r\nsvlak\r\nsvlakovka\r\nsvlakový\r\nsvlažení\r\nsvlažený\r\nsvlažit\r\nsvlažování\r\nsvlažovaný\r\nsvlažovat\r\nsvléct\r\nsvlečenější\r\nsvlečení\r\nsvlečený\r\nsvlékající\r\nsvlékání\r\nsvlékaný\r\nsvlékárna\r\nsvlékat\r\nsvlékl\r\nsvléknout\r\nsvléknutí\r\nsvléknutý\r\nsvlíknout\r\nsvob\r\nSvoboda\r\nsvobodárna\r\nsvoboda\r\nsvoboden\r\nsvobodna\r\nsvobodnější\r\nsvobodnice\r\nsvobodničin\r\nSvobodníková\r\nsvobodník\r\nSvobodník\r\nSvobodníkův\r\nsvobodníkův\r\nsvobodni\r\nsvobodno\r\nsvobodnu\r\nsvobodny\r\nSvobodný\r\nsvobodný\r\nsvobodomyslnější\r\nsvobodomyslný\r\nSvobodová\r\nSvobodův\r\nsvobodymilovnější\r\nsvobodymilovný\r\nSVOČ\r\nsvod\r\nsvod\r\nsvodidlo\r\nsvodidlový\r\nsvodka\r\nsvodnější\r\nsvodnice\r\nsvodný\r\nsvodový\r\nSvojanov\r\nsvojanovský\r\nsvoje\r\nSvojetice\r\nsvojetický\r\nSvojetín\r\nsvojetínský\r\nsvoji\r\nsvojí\r\nSvojkovice\r\nsvojkovický\r\nSvojkov\r\nsvojkovský\r\nSvojšice\r\nsvojšický\r\nSvojšín\r\nsvojšínský\r\nsvolající\r\nsvolanější\r\nsvolání\r\nsvolaný\r\nsvolatelčin\r\nsvolatelka\r\nsvolatel\r\nsvolatelův\r\nsvolat\r\nsvolávací\r\nsvolávající\r\nsvolávanější\r\nsvolávání\r\nsvolávaný\r\nsvolavatelčin\r\nsvolavatelka\r\nsvolavatel\r\nsvolavatelův\r\nsvolávat\r\nsvolenější\r\nsvolení\r\nsvolený\r\nSvolinský\r\nsvolit\r\nsvolnější\r\nsvolný\r\nsvolování\r\nsvolovaný\r\nsvolovat\r\nsvolující\r\nsvor\r\nsvorka\r\nsvorkovací\r\nsvorkování\r\nsvorkovaný\r\nsvorkovat\r\nsvorkovnice\r\nsvorkovnicový\r\nsvorkový\r\nsvornější\r\nsvorníček\r\nsvorník\r\nsvorníkový\r\nsvorný\r\nsvorový\r\nsvou\r\nsvoz\r\nSvozilová\r\nSvozil\r\nSvozilův\r\nsvozit\r\nsvozový\r\nsvožení\r\nsvožený\r\nsvrab\r\nSvrabov\r\nsvrabovský\r\nsvrabový\r\nsvraskalý\r\nsvrasklý\r\nsvrasknout\r\nsvraštělejší\r\nsvraštělý\r\nsvráštění\r\nsvraštění\r\nsvraštěný\r\nsvraštit\r\nsvrašťování\r\nsvrašťovaný\r\nsvrašťovat\r\nSvratecko\r\nsvratecký\r\nSvratka\r\nSvratouch\r\nsvrbění\r\nsvrběný\r\nsvrbět\r\nsvrbivější\r\nsvrbivý\r\nsvrhávání\r\nsvrhávaný\r\nsvrhávat\r\nsvrhnout\r\nsvrhnutí\r\nsvrhování\r\nsvrhovat\r\nsvrchnější\r\nsvrchník\r\nsvrchníkový\r\nsvrchní\r\nsvrchovanější\r\nsvrchovaný\r\nsvrchu\r\nsvršek\r\nsvrškový\r\nsvržení\r\nsvržený\r\nsvůdce\r\nsvůdcovský\r\nsvůdcův\r\nsvůdkyně\r\nsvůdkynin\r\nsvůdnější\r\nsvůdnice\r\nsvůdnický\r\nsvůdničtější\r\nsvůdník\r\nsvůdníkův\r\nsvůdný\r\nsvůj\r\nsvůj\r\nSVVŠ\r\nsvých\r\nsvými\r\nsvým\r\nswahilština\r\nswap\r\nSwift\r\nSwiftův\r\nswing\r\nswingování\r\nswingovat\r\nswingový\r\nswingující\r\nsycení\r\nsycený\r\nsýc\r\nsýcův\r\nsyčák\r\nsyčákův\r\nsyčárna\r\nsýček\r\nsyčení\r\nsyčení\r\nsyčený\r\nsyčet\r\nsyčící\r\nsyčivější\r\nsyčivý\r\nsýčkování\r\nsýčkovat\r\nsýčkovávání\r\nsýčkovávat\r\nsýčkův\r\nSydney\r\nsydneyský\r\nsyenit\r\nsyenitový\r\nsyfilis\r\nsyfilitický\r\nsyfilitiččin\r\nsyfilitička\r\nsyfilitičtější\r\nsyfilitik\r\nsyfilitikův\r\nSycha\r\nSychová\r\nsychravější\r\nSychravův\r\nsychravý\r\nSychrov\r\nsychrovský\r\nSychův\r\nSykáček\r\nSykáčková\r\nSykáčkův\r\nSyka\r\nsykat\r\nsykavější\r\nsykavka\r\nsykavý\r\nsyknout\r\nsyknutí\r\nsyknutý\r\nSýkora\r\nsýkora\r\nsýkorčin\r\nsýkorčí\r\nsýkorka\r\nSýkorová\r\nSýkorův\r\nsýkořice\r\nsýkořin\r\nsýkoří\r\nsykot\r\nSyková\r\nSykův\r\nsylabismus\r\nsylabus\r\nsylogismus\r\nsylogistický\r\nSylván\r\nsylvánský\r\nSylva\r\nSylvie\r\nSylviin\r\nsylvín\r\nSylvin\r\nsymbiont\r\nsymbiotický\r\nsymbióza\r\nsymbol\r\nsymbolický\r\nsymboličtější\r\nsymbolika\r\nsymbolismus\r\nsymbolista\r\nsymbolistčin\r\nsymbolistický\r\nsymbolističtější\r\nsymbolistika\r\nsymbolistka\r\nsymbolistnější\r\nsymbolistův\r\nsymbolisující\r\nsymbolizovanější\r\nsymbolizování\r\nsymbolizovaný\r\nsymbolizovat\r\nsymbolizující\r\nsymetrála\r\nsymetrický\r\nsymetričtější\r\nsymetrie\r\nsymetrizace\r\nsymfonický\r\nsymfoničtější\r\nsymfonie\r\nsympaťák\r\nsympaťákův\r\nsympatický\r\nsympatičtější\r\nsympatie\r\nsympatik\r\nsympatisování\r\nsympatisovat\r\nsympatizantčin\r\nsympatizantka\r\nsympatizant\r\nsympatizantův\r\nsympatizování\r\nsympatizovaný\r\nsympatizovat\r\nsympatizující\r\nsymposion\r\nsymposium\r\nsympozium\r\nsympózium\r\nsymptomatický\r\nsymptomatičtější\r\nsymptom\r\nsyn\r\nsyna\r\nsynáček\r\nSynáček\r\nSynáčková\r\nSynáčkův\r\nsynáčkův\r\nsynagoga\r\nsynagóga\r\nSynalov\r\nsynalovský\r\nsynapse\r\nsynátor\r\nsynátorův\r\nsyndikalismus\r\nsyndikalistický\r\nsyndikalizace\r\nsyndikát\r\nsyndrom\r\nsynech\r\nsynekdocha\r\nsynekologický\r\nsynek\r\nSynek\r\nsynem\r\nsynergetika\r\nsynergický\r\nsynergie\r\nsynergismus\r\nsynestézie\r\nsynchonizování\r\nsynchonizovaný\r\nsynchronicita\r\nsynchronický\r\nsynchronie\r\nsynchronismus\r\nsynchronizace\r\nsynchronizační\r\nsynchronizátor\r\nsynchronizátorův\r\nsynchronizování\r\nsynchronizovaný\r\nsynchronizovat\r\nsynchronizující\r\nsynchronnější\r\nsynchronní\r\nsynklinála\r\nsynkopa\r\nsynkopický\r\nsynkopičtější\r\nsynkopování\r\nsynkopovaný\r\nsynkopovat\r\nsynkopový\r\nSynková\r\nSynkov\r\nsynkovský\r\nsynkretický\r\nsynkretismus\r\nSynkův\r\nsynkův\r\nsynoda\r\nsynodický\r\nsynodní\r\nsynonymický\r\nsynonymičtější\r\nsynonymie\r\nsynonymita\r\nsynonymní\r\nsynonymum\r\nsynoptický\r\nsynoptičtější\r\nsynovcův\r\nsynové\r\nsynovec\r\nsynovi\r\nsynovka\r\nsynovský\r\nsynovství\r\nsynovštější\r\nsynsémantický\r\nsyntagma\r\nsyntagmatický\r\nsyntagmém\r\nsyntaktický\r\nsyntaktičtější\r\nsyntax\r\nsyntetický\r\nsyntetický\r\nsyntetičtější\r\nsyntetismus\r\nsyntetisování\r\nsyntetisovaný\r\nsyntetisovat\r\nsyntetizace\r\nsyntetizér\r\nsyntetizovanější\r\nsyntetizování\r\nsyntetizovaný\r\nsyntetizovat\r\nsyntetizovávat\r\nsyntetizující\r\nsyntezátor\r\nsyntezátorový\r\nsyntéza\r\nsynthetický\r\nsynthetisování\r\nsynthetisovaný\r\nsynthetisovat\r\nsyntonie\r\nsynu\r\nsynů\r\nsynům\r\nsynův\r\nsyny\r\nsypací\r\nsypající\r\nsypanější\r\nsypání\r\nsýpání\r\nsypaný\r\nsýpaný\r\nsypat\r\nsýpat\r\nsypátko\r\nsypávající\r\nsypávanější\r\nsypávání\r\nsypávaný\r\nsypávat\r\nsypavka\r\nsypčejší\r\nSypecký\r\nsypek\r\nsýpka\r\nsypkovina\r\nsýpkový\r\nsypký\r\nSyptáková\r\nSypták\r\nSyptákův\r\nsyrakuský\r\nSyrakusy\r\nsýrárna\r\nsýrařčin\r\nsýrařka\r\nsýrařský\r\nsýrařství\r\nsýrař\r\nsýrařův\r\nsyreček\r\nSýrie\r\nsýr\r\nSyrovátka\r\nsyrovátka\r\nSyrovátková\r\nsyrovátkový\r\nSyrovátkův\r\nsyrovější\r\nSyrovice\r\nsyrovický\r\nsyrovinka\r\nSyrovín\r\nsyrovínský\r\nSyrov\r\nsyrovský\r\nSyrový\r\nsyrový\r\nsýrový\r\nsyrský\r\nsyrština\r\nsyrův\r\nsyrý\r\nSyřančin\r\nSyřanka\r\nSyřan\r\nSyřanův\r\nsyřejší\r\nSyřenov\r\nsyřenovský\r\nsyřiště\r\nsyřišťový\r\nsysel\r\nSysel\r\nsyselův\r\nsyslení\r\nsyslený\r\nsyslit\r\nsyslí\r\nsyslování\r\nsyslovaný\r\nsyslovat\r\nSyslová\r\nSyslův\r\nsyslův\r\nsystematický\r\nsystematička\r\nsystematičtější\r\nsystematika\r\nsystematik\r\nsystematikův\r\nsystematizace\r\nsystematizování\r\nsystematizovaný\r\nsystematizovat\r\nsystém\r\nsystemizace\r\nsystemizovaný\r\nsystemizovat\r\nsystémovější\r\nsystémový\r\nsystola\r\nsystolický\r\nsytější\r\nsytící\r\nsytič\r\nsytit\r\nsytivý\r\nsyt\r\nsytý\r\nSýva\r\nSývin\r\nsyžet\r\nsyžetový\r\nSzalaiová\r\nSzalai\r\nSzalaiův\r\nSzepeová\r\nSzepe\r\nSzepeův\r\nSZO\r\nSzombately\r\nSZTŠ\r\nsžehnout\r\nsžírající\r\nsžírání\r\nsžíraný\r\nsžírat\r\nsžíravější\r\nsžíravý\r\nsžít\r\nsžitější\r\nsžití\r\nsžitý\r\nsžitý\r\nsžívající\r\nsžívanější\r\nsžívání\r\nsžívaný\r\nsžívat\r\nŠabata\r\nšabat\r\nŠabatka\r\nŠabatková\r\nŠabatkův\r\nŠabatová\r\nŠabatův\r\nšabbat\r\nšábes\r\nšábesový\r\nŠabina\r\nŠablatura\r\nŠablaturová\r\nŠablaturův\r\nšablona\r\nšablonka\r\nšablonovitější\r\nšablonovitý\r\nšablonový\r\nšábnout\r\nšábnutí\r\nšacení\r\nšacený\r\nŠacký\r\nšacování\r\nšacovaný\r\nšacovat\r\nŠádek\r\nŠádková\r\nŠádkův\r\nŠafaříková\r\nŠafařík\r\nŠafaříkův\r\nŠafářová\r\nšafář\r\nŠafář\r\nŠafářův\r\nšafářův\r\nŠaffek\r\nŠaffková\r\nŠaffkův\r\nŠafhúzy\r\nŠafka\r\nŠafková\r\nŠafkův\r\nŠafov\r\nšafovský\r\nŠafránek\r\nšafrán\r\nšafránka\r\nŠafránková\r\nŠafránkův\r\nšafránový\r\nŠafrová\r\nŠáfrová\r\nŠafr\r\nŠáfr\r\nŠafrův\r\nŠáfrův\r\nšagrénovací\r\nšagrénování\r\nšagrénovaný\r\nšagrénovat\r\nšáh\r\nšáhův\r\nšachetní\r\nšach\r\nšachista\r\nšachistčin\r\nšachistický\r\nšachistka\r\nšachistův\r\nšachmat\r\nšáchorovitý\r\nšachování\r\nšachovaný\r\nšachovat\r\nšachovávání\r\nšachovávat\r\nŠachov\r\nšachovnice\r\nšachovnicový\r\nšachovský\r\nšachový\r\nšachta\r\nšachtice\r\nšachtovitý\r\nšachtový\r\nšachův\r\nŠajava\r\nŠajmovičová\r\nŠajmovič\r\nŠajmovičův\r\nŠajnerová\r\nŠajner\r\nŠajnerův\r\nšajn\r\nšakalí\r\nšakalový\r\nšakal\r\nšakalův\r\nŠakvice\r\nšakvický\r\nšalala\r\nŠalamoun\r\nšalamounský\r\nšalamounství\r\nšalamounštější\r\nŠalamounův\r\nšála\r\nšalba\r\nŠalda\r\nŠaldová\r\nŠaldův\r\nšalebnější\r\nšalebný\r\nšálečka\r\nŠálek\r\nšálek\r\nšálenější\r\nšálení\r\nšálený\r\nšál\r\nšálit\r\nšálivější\r\nšálivý\r\nšálka\r\nŠálková\r\nŠálkův\r\nšalmaj\r\nŠalomoun\r\nšalomounský\r\nŠalomounův\r\nšalotka\r\nŠalounová\r\nŠaloun\r\nŠalounův\r\nšalování\r\nšalovaný\r\nšalovat\r\nŠalovský\r\nšálový\r\nšalupa\r\nšalvějový\r\nšalvěj\r\nŠamalíková\r\nŠamalík\r\nŠamalíkův\r\nŠamalová\r\nŠámalová\r\nŠamal\r\nŠámal\r\nŠamalův\r\nŠámalův\r\nšamančin\r\nšamanismus\r\nšamanista\r\nšamanistčin\r\nšamanistický\r\nšamanistka\r\nšamanistův\r\nšamanka\r\nšaman\r\nšamanský\r\nšamanství\r\nšamanův\r\nšamot\r\nšamotování\r\nšamotovaný\r\nšamotovat\r\nšamotový\r\nŠamotulský\r\nšampanizace\r\nšampaňské\r\nšampaňský\r\nšampionát\r\nšampiončin\r\nšampiónčin\r\nšampionka\r\nšampiónka\r\nšampion\r\nšampión\r\nšampionův\r\nšampiónův\r\nšampon\r\nšampón\r\nšamponování\r\nšamponovaný\r\nšamponovat\r\nšamponový\r\nšampus\r\nšampuska\r\nšance\r\nŠancová\r\nŠanc\r\nŠancův\r\nŠanda\r\nŠandera\r\nŠanderová\r\nŠanderův\r\nŠandová\r\nŠandův\r\nšanghajský\r\nŠanghaj\r\nšanon\r\nŠanov\r\nšanovský\r\nšanson\r\nšansoniérčin\r\nšansoniérka\r\nšansoniér\r\nšansoniérův\r\nšansonový\r\nšantán\r\nšantánový\r\nšantavý\r\nŠantrůček\r\nŠantrůčková\r\nŠantrůčkův\r\nšantung\r\nšantungový\r\nšanžán\r\nšanžánový\r\nšaolinský\r\nšapitó\r\nŠaplava\r\nšaráda\r\nšaramantnější\r\nšaramantní\r\nŠarapatka\r\nšarapatka\r\nŠarapatková\r\nŠarapatkův\r\nŠára\r\nšaratice\r\nŠárčin\r\nŠardice\r\nšardický\r\nŠaríková\r\nŠarík\r\nŠaríkův\r\nšarišský\r\nšarivari\r\nšarka\r\nŠárka\r\nšarlatánčin\r\nšarlatánka\r\nšarlatán\r\nšarlatánský\r\nšarlatánství\r\nšarlatánštější\r\nšarlatánův\r\nšarlat\r\nšarlatový\r\nŠarlota\r\nŠarlotin\r\nšarmantnější\r\nšarmantní\r\nšarm\r\nŠarounová\r\nŠaroun\r\nŠarounův\r\nŠárová\r\nŠárovcova\r\nŠárův\r\nšarvátka\r\nšarže\r\nšaržovitý\r\nšasi\r\nŠašalová\r\nŠašal\r\nŠašalův\r\nšašek\r\nŠašek\r\nšaškárna\r\nšaškování\r\nšaškovat\r\nšaškovávání\r\nšaškovávat\r\nŠašková\r\nšaškovina\r\nšaškovitější\r\nšaškovský\r\nŠaškův\r\nšaškův\r\nšáteček\r\nšatečky\r\nšátek\r\nšat\r\nšatičky\r\nšatit\r\nšatka\r\nšátkový\r\nšatlava\r\nšatnářčin\r\nšatnářka\r\nšatnář\r\nšatnářův\r\nšatna\r\nšatnička\r\nšatník\r\nšatníkový\r\nšatní\r\nšatnový\r\nšatovina\r\nšatovka\r\nŠatov\r\nšatovský\r\nšatový\r\nšátrání\r\nšátrat\r\nšatstvo\r\nŠaurová\r\nŠaur\r\nŠaurův\r\nšavle\r\nšavlička\r\nšavlista\r\nšavlistčin\r\nšavlistka\r\nšavlistův\r\nšavlovačka\r\nšavlování\r\nšavlovaný\r\nšavlovat\r\nšavlový\r\nšavlující\r\nŠavrda\r\nŠavrdová\r\nŠavrdův\r\nŠčerbáková\r\nŠčerbák\r\nŠčerbákův\r\nšči\r\nŠčuka\r\nŠčuková\r\nŠčukův\r\nŠebánek\r\nŠebánková\r\nŠebánkův\r\nŠebek\r\nŠebela\r\nŠebelka\r\nŠebelková\r\nŠebelkův\r\nŠebelová\r\nŠebelův\r\nŠebesta\r\nŠebestián\r\nŠebestiánův\r\nŠebestová\r\nŠebestův\r\nŠebetov\r\nšebetovský\r\nŠebířov\r\nšebířovský\r\nŠebíř\r\nŠebková\r\nŠebkovice\r\nšebkovický\r\nŠebkův\r\nŠeborová\r\nŠebor\r\nŠeborův\r\nŠebrleová\r\nŠebrle\r\nŠebrleův\r\nŠebrov\r\nšebrovský\r\nŠeda\r\nšedavý\r\nšedesátero\r\nšedesateronásobný\r\nšedesátery\r\nšedesáterý\r\nšedesaterý\r\nšedesát\r\nšedesátibodový\r\nšedesáticentimetrový\r\nšedesáticentový\r\nšedesátice\r\nšedesátihaléřový\r\nšedesátihektarový\r\nšedesátihlavý\r\nšedesátihodinový\r\nšedesátikilogramový\r\nšedesátikilometrový\r\nšedesátikilový\r\nšedesátikorunový\r\nšedesátikusový\r\nšedesátiletý\r\nšedesátilitrový\r\nšedesátimetrový\r\nšedesátimiliardový\r\nšedesátimilionový\r\nšedesátimiliónový\r\nšedesátiminutovka\r\nšedesátiminutový\r\nšedesátinásobný\r\nšedesátina\r\nšedesátinný\r\nšedesátipatrový\r\nšedesátiprocentní\r\nšedesátisekundový\r\nšedesátistránkový\r\nšedesátistupňový\r\nšedesátitisícovka\r\nšedesátitisícový\r\nšedesátivteřinový\r\nšedesátka\r\nšedesátkrát\r\nšedesátnice\r\nšedesátničin\r\nšedesátník\r\nšedesátníkův\r\nšedesátý\r\nŠedina\r\nšedina\r\nŠedinová\r\nŠedinův\r\nšedivcův\r\nšedivec\r\nšedivějící\r\nšedivější\r\nšedivění\r\nšedivět\r\nšedivka\r\nŠedivý\r\nšedivý\r\nšeď\r\nŠedlbauerová\r\nŠedlbauer\r\nŠedlbauerův\r\nšednout\r\nšednutí\r\nšedobéžový\r\nšedobílý\r\nšedočerný\r\nšedofialový\r\nšedohnědý\r\nšedomodrý\r\nšedomodřejší\r\nšedooký\r\nŠedo\r\nšedorůžový\r\nšedostříbrný\r\nŠedová\r\nšedovlasý\r\nšedozelený\r\nšedožlutý\r\nšedší\r\nŠedův\r\nŠedý\r\nšedý\r\nŠefčíková\r\nŠefčík\r\nŠefčíkův\r\nšéfčin\r\nšéfíček\r\nšéfíčkův\r\nšéfka\r\nšéfkonstruktér\r\nšéfkonstruktérův\r\nšéfkuchařčin\r\nšéfkuchařka\r\nšéfkuchařský\r\nšefkuchař\r\nšéfkuchař\r\nšefkuchařův\r\nšéfkuchařův\r\nšéflékařčin\r\nšéflékařka\r\nšéflékař\r\nšéflékařův\r\nŠeflová\r\nŠefl\r\nŠeflův\r\nšéfování\r\nšéfovaný\r\nšéfovat\r\nšéfová\r\nšéfovský\r\nšéf\r\nšéfredaktorčin\r\nšéfredaktorka\r\nšéfredaktor\r\nšéfredaktorský\r\nšéfredaktorův\r\nšéftrenér\r\nšéfův\r\nŠeherezáda\r\nŠeherezádin\r\nŠejba\r\nŠejbová\r\nŠejbův\r\nšejdířčin\r\nšejdířka\r\nšejdířský\r\nšejdířství\r\nšejdíř\r\nšejdířův\r\nšejchát\r\nšejch\r\nšejchův\r\nšejk\r\nšejkr\r\nšejkrování\r\nšejkrovaný\r\nšejkrovat\r\nšejkův\r\nšek\r\nšekovník\r\nšekovníkův\r\nšekový\r\nšelak\r\nšelakový\r\nŠelda\r\nšeldský\r\nšelestění\r\nšelest\r\nšelestící\r\nšelestit\r\nšelestivý\r\nšelf\r\nšelfový\r\nšelma\r\nšelmiččin\r\nšelmička\r\nšelmovský\r\nšelmovství\r\nšel\r\nšeltie\r\nŠembera\r\nŠemberová\r\nŠemberův\r\nšém\r\nŠenfeldová\r\nŠenfeld\r\nŠenfeldův\r\nšenk\r\nšenkování\r\nšenkovat\r\nŠenková\r\nŠenk\r\nŠenkův\r\nšenkýřčin\r\nšenkýřka\r\nŠenkýřová\r\nšenkýř\r\nŠenkýř\r\nŠenkýřův\r\nšenkýřův\r\nŠénová\r\nŠenov\r\nŠenovsko\r\nšenovský\r\nŠén\r\nŠénův\r\nšeplavější\r\nšeplavý\r\nšepotání\r\nšepotaný\r\nšepotat\r\nšepot\r\nŠepsová\r\nŠeps\r\nŠepsův\r\nšeptající\r\nšeptanda\r\nšeptání\r\nšeptaný\r\nšeptat\r\nšeptávání\r\nšeptávaný\r\nšeptávat\r\nšeptavější\r\nšeptavý\r\nšeptem\r\nšeptnout\r\nšeptnutí\r\nšeptnutý\r\nŠeráková\r\nŠerák\r\nŠerákův\r\nšereda\r\nšeredčin\r\nšeredka\r\nšerednější\r\nšeredný\r\nšerif\r\nšerifský\r\nšerifův\r\nšerm\r\nšermířčin\r\nšermířka\r\nšermířský\r\nšermířství\r\nšermíř\r\nšermířův\r\nšermování\r\nšermovaný\r\nšermovat\r\nšermující\r\nšero\r\nšeroslepější\r\nšeroslepý\r\nšeroslepý\r\nšerosvit\r\nšerosvitový\r\nšerpa\r\nšerý\r\nšeřejší\r\nšeření\r\nšeřík\r\nšeříkový\r\nšeřit\r\nšesnáctinka\r\nšesťaččin\r\nšestáček\r\nšesťačka\r\nšestačtyřicetibodový\r\nšestačtyřicetimiliónový\r\nšestadvacetihektarový\r\nšestadvacetihodinový\r\nšestadvacetimiliardový\r\nšestadvacetistránkový\r\nšestadvacetitunový\r\nŠestajovice\r\nšestajovický\r\nšesták\r\nŠestáková\r\nšestákový\r\nšesťák\r\nŠesták\r\nŠestákův\r\nšesťákův\r\nšestapadesátihektarový\r\nšestasedmdesátilitrový\r\nšestašedesátimilionový\r\nšestatřicetihektarový\r\nšestatřicetihodinový\r\nšestatřicetiminutový\r\nšesterák\r\nšesterákův\r\nšestero\r\nšesteronásobný\r\nšestery\r\nšesterý\r\nšest\r\nšestibajtový\r\nšestibarevný\r\nšestibitový\r\nšestibodový\r\nšestibodový\r\nšestiboký\r\nšestibrankový\r\nšesticentimetrový\r\nšestice\r\nšesticiferný\r\nšesticípý\r\nšestičlenný\r\nšestidenní\r\nšestidesetibytový\r\nšestidílný\r\nšestihektarový\r\nšestihlavňový\r\nšestihlavý\r\nšestihodinový\r\nšestihranný\r\nšestikanálový\r\nšestikilometrový\r\nšestikilometrový\r\nšestikilový\r\nšestikolka\r\nšestikolový\r\nšestikorunový\r\nšestikrokový\r\nšestiletka\r\nšestiletý\r\nšestilitrový\r\nšestilůžkový\r\nšestiměsíční\r\nšestiměstí\r\nšestimetrový\r\nšestimetrový\r\nšestimiliardový\r\nšestimilimetrový\r\nšestimilionový\r\nšestimiliónový\r\nšestiminutovka\r\nšestiminutový\r\nšestimístný\r\nšestimocný\r\nšestinápravový\r\nšestinásobek\r\nšestinásobný\r\nšestina\r\nšestinedělí\r\nšestinedělka\r\nšestinedělní\r\nšestinka\r\nšestinový\r\nšestipatrový\r\nšestipísmenný\r\nšestiposchoďový\r\nšestiproudový\r\nšestiranovka\r\nšestiranový\r\nšestiroční\r\nšestirohý\r\nšestiřádkový\r\nšestisekundový\r\nšestisemestrový\r\nšestisetbodový\r\nšestisethektarový\r\nšestisethlavý\r\nšestisetkorunový\r\nšestisetmetrový\r\nšestisetmilionový\r\nšestisetmiliónový\r\nšestisetstránkový\r\nšestisettisícový\r\nšestistěn\r\nšestistopý\r\nšestistovka\r\nšestistránkový\r\nšestistrunný\r\nšestistupňový\r\nšestistý\r\nšestisvazkový\r\nšestitisící\r\nšestitisícovka\r\nšestitisícový\r\nšestitřídní\r\nšestitunka\r\nšestitunový\r\nšestitýdenní\r\nšestiúhelník\r\nšestiúhelníkový\r\nšestiválcový\r\nšestiválec\r\nšestivrstvový\r\nšestivrstvý\r\nšestivteřinový\r\nšestiznakový\r\nšestka\r\nšestkový\r\nšestkrát\r\nšestkráte\r\nšestnácterák\r\nšestnácterákův\r\nšestnácterka\r\nšestnáctero\r\nšestnácteronásobný\r\nšestnáctery\r\nšestnácterý\r\nšestnáct\r\nšestnáctibajtový\r\nšestnáctibitový\r\nšestnáctibodový\r\nšestnáctibodový\r\nšestnácticentimetrový\r\nšestnáctice\r\nšestnáctičlenný\r\nšestnáctihektarový\r\nšestnáctihodinový\r\nšestnáctikilometrový\r\nšestnáctikilový\r\nšestnáctikolový\r\nšestnáctikorunový\r\nšestnáctiletý\r\nšestnáctimetrový\r\nšestnáctimiliardový\r\nšestnáctimilimetrový\r\nšestnáctimilionový\r\nšestnáctimiliónový\r\nšestnáctiminutový\r\nšestnáctinásobný\r\nšestnáctina\r\nšestnáctinový\r\nšestnáctipatrový\r\nšestnáctistavový\r\nšestnáctistránkový\r\nšestnáctistupňový\r\nšestnáctisvazkový\r\nšestnáctitisícový\r\nšestnáctitunový\r\nšestnáctiventilový\r\nšestnáctiznakový\r\nšestnáctka\r\nšestnáctkový\r\nšestnáctkrát\r\nšestnáctkráte\r\nšestnáctý\r\nšestý\r\nšešule\r\nšešulka\r\nŠetlíková\r\nŠetlík\r\nŠetlíkův\r\nšetrnější\r\nšetrný\r\nšetření\r\nšetřený\r\nšetřící\r\nšetřič\r\nšetřílkovství\r\nšetřit\r\nšetřivost\r\nšetřivý\r\nŠevce\r\nševce\r\nŠevcem\r\nševcem\r\nŠevci\r\nševci\r\nŠevcích\r\nševcích\r\nŠevcová\r\nŠevcové\r\nŠevcovi\r\nševcovina\r\nševcovský\r\nŠevců\r\nševců\r\nŠevcům\r\nševcům\r\nŠevcův\r\nševcův\r\nŠevče\r\nševče\r\nŠevčíková\r\nŠevčík\r\nŠevčíkův\r\nŠeveček\r\nŠevečková\r\nŠevečkův\r\nševelení\r\nševel\r\nševelící\r\nševelit\r\nševelivý\r\nŠevětín\r\nševětínský\r\nševingovací\r\nševingování\r\nševingovaný\r\nševingovat\r\nšev\r\nšibalčin\r\nšibalka\r\nšibal\r\nšibalský\r\nšibalství\r\nšibalštější\r\nšibalův\r\nšibenice\r\nšibenický\r\nšibenička\r\nšibeničnější\r\nšibeničník\r\nšibeničníkův\r\nšibeniční\r\nŠibeník\r\nšibování\r\nšibovaný\r\nšibovat\r\nšibřinky\r\nšicí\r\nšička\r\nŠída\r\nšidélko\r\nšidící\r\nšidit\r\nšidítko\r\nšídlatcův\r\nšídlatec\r\nšídlatka\r\nšídlo\r\nŠídlo\r\nŠídlová\r\nŠídlův\r\nŠídová\r\nŠíd\r\nŠídův\r\nšifon\r\nšifón\r\nšifra\r\nšifrovací\r\nšifrovanější\r\nšifrování\r\nšifrovaný\r\nšifrovat\r\nšifrovatelnější\r\nšifrovatelný\r\nšifrovávání\r\nšifrovávaný\r\nšifrovávat\r\nšifrový\r\nšifrující\r\nŠigišov\r\nŠicha\r\nŠícha\r\nŠichová\r\nŠíchová\r\nŠichtařová\r\nŠichtař\r\nŠichtařův\r\nšichta\r\nŠichův\r\nŠíchův\r\nšíje\r\nšijící\r\nšíjový\r\nšikana\r\nšikanista\r\nšikanování\r\nšikanovaný\r\nšikanovat\r\nšikanující\r\nšik\r\nŠiklová\r\nŠikl\r\nŠiklův\r\nšikmější\r\nšikmooký\r\nšikmý\r\nšikmý\r\nŠiknerová\r\nŠikner\r\nŠiknerův\r\nšiknout\r\nŠikola\r\nŠikolová\r\nŠikolův\r\nšikovanější\r\nšikování\r\nšikovaný\r\nšikovat\r\nšikovatelčin\r\nšikovatelka\r\nšikovatelský\r\nšikovatel\r\nšikovatelův\r\nšikovávání\r\nšikovávaný\r\nšikovávat\r\nšikovnější\r\nšikovný\r\nŠiktancová\r\nŠiktanc\r\nŠiktancův\r\nŠikula\r\nšikula\r\nšikulčin\r\nšikulka\r\nŠikulová\r\nŠikulův\r\nšikulův\r\nŠilarová\r\nŠilar\r\nŠilarův\r\nŠilcová\r\nŠilc\r\nŠilcův\r\nšílející\r\nšílencův\r\nšílenčin\r\nšílenec\r\nšílenější\r\nšílení\r\nšílenka\r\nšílenkyně\r\nšílenkynin\r\nšílenství\r\nšílený\r\nšílet\r\nšilhající\r\nŠilhánek\r\nšilhání\r\nŠilhánková\r\nŠilhánkův\r\nŠilhanová\r\nŠilhánová\r\nŠilhan\r\nŠilhán\r\nŠilhanův\r\nŠilhánův\r\nšilhat\r\nšilhávání\r\nšilhávat\r\nšilhavější\r\nŠilhavý\r\nšilhavý\r\nŠilheřovice\r\nšilheřovický\r\nšílící\r\nšilink\r\nŠílová\r\nŠíl\r\nŠílův\r\nŠimáček\r\nŠimáčková\r\nŠimáčkův\r\nŠimáková\r\nŠimák\r\nŠimákův\r\nŠimánek\r\nŠimánková\r\nŠimánkův\r\nŠimáňová\r\nŠimanov\r\nšimanovský\r\nŠimáň\r\nŠimáňův\r\nŠíma\r\nŠimberský\r\nŠimeček\r\nŠimečková\r\nŠimečkův\r\nŠimek\r\nŠimková\r\nŠimkův\r\nšiml\r\nšimlův\r\nŠimonek\r\nŠimoníková\r\nŠimoník\r\nŠimoníkův\r\nŠimonková\r\nŠimonkův\r\nŠimonová\r\nŠimon\r\nŠimonův\r\nŠímová\r\nšimpanzí\r\nšimpanz\r\nšimpanzův\r\nŠimperk\r\nšimperský\r\nšimrání\r\nšimraný\r\nšimrat\r\nšimravý\r\nŠimsa\r\nŠimsová\r\nŠimsův\r\nŠimůnek\r\nŠimůnková\r\nŠimůnkův\r\nŠímův\r\nŠindelářová\r\nŠindelář\r\nŠindelářův\r\nŠindelka\r\nšindelka\r\nŠindelková\r\nŠindelkův\r\nšindelnice\r\nŠindelová\r\nšindelovský\r\nšindelový\r\nšindel\r\nŠindlerová\r\nŠindler\r\nŠindlerův\r\nŠinkmajerová\r\nŠinkmajer\r\nŠinkmajerův\r\nŠinkorová\r\nŠinkor\r\nŠinkorův\r\nšinout\r\nŠínová\r\nŠín\r\nšintoismus\r\nšintoista\r\nšintoistčin\r\nšintoistický\r\nšintoistka\r\nšintoistův\r\nšinutí\r\nšinutý\r\nŠínův\r\nŠípalová\r\nŠípal\r\nŠípalův\r\nšípatka\r\nŠípek\r\nšípek\r\nšíp\r\nšipka\r\nšípka\r\nŠípková\r\nšípkoví\r\nšipkový\r\nšípkový\r\nŠípkův\r\nŠípová\r\nšípový\r\nŠíp\r\nŠipula\r\nŠipulová\r\nŠipulův\r\nŠípův\r\nširák\r\nširočina\r\nširoka\r\nširokánský\r\nširokánštější\r\nširokodechý\r\nširokolící\r\nširokopásmový\r\nširokopásový\r\nširokorozchodný\r\nširokosecí\r\nširokospektrý\r\nširokoúhlý\r\nŠiroký\r\nširoký\r\nširoširý\r\nŠírová\r\nŠír\r\nširší\r\nŠirůček\r\nŠirůčková\r\nŠirůčkův\r\nŠírův\r\nširý\r\nšířeji\r\nšířenější\r\nšířenější\r\nšíření\r\nšířený\r\nšíře\r\nšířící\r\nšířit\r\nšiřitelčin\r\nšiřitelka\r\nšiřitelnější\r\nšiřitelný\r\nšiřitel\r\nšiřitelův\r\nšířka\r\nšířkový\r\nŠístka\r\nšístka\r\nŠístková\r\nšístkový\r\nŠístkův\r\nšišák\r\nšišákův\r\nšišatější\r\nšišatý\r\nšišinka\r\nŠiška\r\nšiška\r\nŠišková\r\nšiškový\r\nŠiškův\r\nšišlající\r\nšišlání\r\nšišlaný\r\nšišlat\r\nšišlavější\r\nšišlavý\r\nŠišma\r\nšištice\r\nšištička\r\nŠitbořice\r\nšitbořický\r\nšít\r\nšitější\r\nŠítek\r\nšitíčko\r\nšití\r\nŠítková\r\nŠítkův\r\nšitý\r\nšitý\r\nšivaismus\r\nšivaista\r\nšivaistčin\r\nšivaistka\r\nšivaistův\r\nšívání\r\nšívaný\r\nšívat\r\nšizení\r\nšizený\r\nškádlení\r\nškádlený\r\nškádlit\r\nškádlivější\r\nškádlivý\r\nškála\r\nŠkaloudová\r\nŠkaloud\r\nŠkaloudův\r\nškálování\r\nškálovaný\r\nškálovat\r\nškálovatelný\r\nškálovávání\r\nškálovávaný\r\nškálovávat\r\nškálový\r\nškamna\r\nškandál\r\nškandální\r\nškára\r\nŠkarda\r\nŠkardová\r\nŠkardův\r\nškareda\r\nškaredější\r\nškaredění\r\nškaredin\r\nškaredit\r\nškaredší\r\nškaredův\r\nškaredý\r\nŠkarek\r\nškarka\r\nŠkarková\r\nŠkarkův\r\nškarohlídčin\r\nškarohlídka\r\nškarohlíd\r\nškarohlídský\r\nškarohlídství\r\nškarohlídštější\r\nškarohlídův\r\nškaroupka\r\nškarpa\r\nŠkarvada\r\nŠkarvadová\r\nŠkarvadův\r\nškatule\r\nškatulka\r\nškatulkování\r\nškeble\r\nškemrání\r\nškemrat\r\nškemravější\r\nškemravý\r\nšklebení\r\nškleb\r\nšklebící\r\nšklebit\r\nšklebivější\r\nšklebivý\r\nŠklíba\r\nšklíbivější\r\nšklíbivý\r\nŠklíbová\r\nŠklíbův\r\nškobrtající\r\nškobrtání\r\nškobrtat\r\nškobrtavý\r\nškobrtnout\r\nŠkodaexport\r\nŠkoda\r\nškoda\r\nškodění\r\nškodící\r\nškodit\r\nškodívání\r\nškodívat\r\nškodlivější\r\nškodlivina\r\nškodlivý\r\nškodnější\r\nškodný\r\nškodolibější\r\nškodolibý\r\nškodovák\r\nškodovákův\r\nŠkodová\r\nškodovka\r\nškodový\r\nŠkodův\r\nškolácký\r\nškoláček\r\nškolačka\r\nškoláčkův\r\nškoláčtější\r\nškolák\r\nškolákův\r\nškola\r\nškolenější\r\nškolení\r\nškolený\r\nškolicí\r\nškolící\r\nškolička\r\nškolit\r\nškolitelčin\r\nškolitelka\r\nškolitel\r\nškolitelův\r\nškolkařství\r\nškolkař\r\nškolkařův\r\nškolka\r\nškolkovací\r\nškolkování\r\nškolkovaný\r\nškolkovat\r\nškolné\r\nškolnice\r\nškolnický\r\nškolničin\r\nŠkolníková\r\nškolník\r\nŠkolník\r\nŠkolníkův\r\nškolníkův\r\nškolní\r\nškolomet\r\nškolometský\r\nškolometův\r\nškolový\r\nškolský\r\nškolství\r\nškolštější\r\nŠkopek\r\nškopek\r\nškopíček\r\nškopík\r\nŠkopková\r\nškopkový\r\nŠkopkův\r\nŠkopová\r\nŠkop\r\nŠkopův\r\nškorně\r\nškorpení\r\nškorpený\r\nškorpící\r\nŠkorpilová\r\nŠkorpil\r\nŠkorpilův\r\nškorpióní\r\nškorpion\r\nškorpión\r\nškorpionův\r\nškorpiónův\r\nškorpit\r\nškorpivý\r\nŠkoudlilová\r\nŠkoudlil\r\nŠkoudlilův\r\nškráb\r\nškrabací\r\nškrabačka\r\nškrabadlo\r\nškrabající\r\nškrábající\r\nškrabák\r\nŠkrabalová\r\nŠkrabal\r\nŠkrabalův\r\nškrabalův\r\nškrábanec\r\nškrabanější\r\nškrábanější\r\nškrabanice\r\nškrábanice\r\nškrabanina\r\nškrábanina\r\nškrabání\r\nškrábání\r\nškrabaný\r\nškrábaný\r\nškrabat\r\nškrábat\r\nškrabátko\r\nškrabávání\r\nškrabávaný\r\nškrabávat\r\nškrábavý\r\nškrabka\r\nškrablavý\r\nškrábnout\r\nškrábnutější\r\nškrábnutí\r\nškrábnutý\r\nškrábnutý\r\nškraboška\r\nškrabot\r\nškraloupek\r\nškraloup\r\nškrap\r\nškrapový\r\nškrcenější\r\nškrcení\r\nškrcený\r\nŠkrdlovice\r\nškrdlovický\r\nŠkréta\r\nŠkrétová\r\nŠkrétův\r\nŠkrha\r\nŠkrhová\r\nŠkrhův\r\nškrkavka\r\nškrobárenský\r\nškrobárenství\r\nškrobárna\r\nškrobařství\r\nškrobenější\r\nškrobení\r\nškrobený\r\nškrob\r\nškrobicí\r\nškrobící\r\nškrobit\r\nškrobnatější\r\nškrobnatý\r\nškrobovější\r\nškrobovitý\r\nškrobový\r\nškrobův\r\nŠkromachová\r\nŠkromach\r\nŠkromachův\r\nŠkroupová\r\nŠkroup\r\nŠkroupův\r\nškrtající\r\nškrtání\r\nškrtaný\r\nškrtat\r\nškrtátko\r\nškrtávání\r\nškrtávaný\r\nškrtávat\r\nškrt\r\nškrticí\r\nškrtící\r\nškrtič\r\nškrtičův\r\nškrtidlo\r\nškrtit\r\nškrtnout\r\nškrtnutí\r\nškrtnutý\r\nškubací\r\nškubající\r\nškubánek\r\nškubání\r\nškubaný\r\nškubat\r\nškubávání\r\nškubávaný\r\nškubávat\r\nškubavý\r\nŠkublová\r\nŠkubl\r\nŠkublův\r\nškubnout\r\nškubnutí\r\nškubnutý\r\nškubu\r\nškůdce\r\nškůdcovský\r\nškůdcovství\r\nškůdcův\r\nškůdkyně\r\nškůdkynin\r\nškudlení\r\nškudlilčin\r\nškudlilka\r\nškudlit\r\nškudlivější\r\nškudlivý\r\nŠkudrna\r\nŠkudrnová\r\nŠkudrnův\r\nškumpa\r\nškuner\r\nŠkutina\r\nŠkutinová\r\nŠkutinův\r\nškvára\r\nškvarek\r\nškvár\r\nškvarkový\r\nškvárobeton\r\nškvárobetonový\r\nŠkvárová\r\nškvárový\r\nŠkvár\r\nŠkvárův\r\nškvaření\r\nškvařený\r\nškvařící\r\nškvařit\r\nškvařovaný\r\nškvařovat\r\nškvíra\r\nškvírečka\r\nškvírka\r\nŠkvorecký\r\nškvorecký\r\nŠkvorec\r\nŠkvorová\r\nškvor\r\nŠkvor\r\nŠkvorův\r\nškvorův\r\nškvrně\r\nškvrrrk\r\nškyt\r\nškytající\r\nškytání\r\nškytaný\r\nškytat\r\nškytávání\r\nškytávat\r\nškytavka\r\nškytavý\r\nškytnout\r\nškytnutí\r\nšlágr\r\nšlágrový\r\nšlahoun\r\nšlahounovitější\r\nšlahounovitý\r\nšlacha\r\nšlachovitější\r\nšlachovitý\r\nšlachový\r\nŠlachta\r\nŠlachtová\r\nŠlachtův\r\nšlajfka\r\nšlajsna\r\nŠlajsová\r\nŠlajs\r\nŠlajsův\r\nšlak\r\nšlamastika\r\nšlamastyka\r\nšlapací\r\nšlapačka\r\nšlapač\r\nšlapadlo\r\nšlapající\r\nšlapák\r\nŠlapáková\r\nŠlapák\r\nŠlapákův\r\nŠlapanice\r\nšlapanický\r\nšlapání\r\nŠlapanov\r\nšlapanovský\r\nšlapaný\r\nšlapat\r\nšlapátko\r\nšlapávat\r\nšlapavý\r\nŠlapeta\r\nŠlapetová\r\nŠlapetův\r\nšlapka\r\nšlápnout\r\nšlápnutí\r\nšlápnutý\r\nšlápota\r\nŠléglov\r\nšléglovský\r\nšlehací\r\nšlehačka\r\nšlehačkový\r\nšlehač\r\nšlehající\r\nšlehání\r\nšlehaný\r\nšlehat\r\nšlehavější\r\nšlehavý\r\nšleh\r\nšlehnout\r\nšlehnutí\r\nšlehnutý\r\nšlechetnější\r\nšlechetný\r\nŠlechta\r\nšlechta\r\nšlechtění\r\nšlechtěný\r\nšlechtický\r\nšlechtictví\r\nšlechtic\r\nšlechticův\r\nšlechtična\r\nšlechtičnin\r\nšlechtičtější\r\nšlechtit\r\nšlechtitelčin\r\nšlechtitelka\r\nšlechtitelský\r\nšlechtitelství\r\nšlechtitel\r\nšlechtitelův\r\nŠlechtová\r\nŠlechtův\r\nšlejška\r\nšlem\r\nšlemový\r\nŠlemrová\r\nŠlemr\r\nŠlemrův\r\nšlendrián\r\nšlépěj\r\nŠlesingrová\r\nŠlesingr\r\nŠlesingrův\r\nŠlesvicko\r\nŠlesvik\r\nšle\r\nšlichta\r\nšlichtovací\r\nšlichtování\r\nšlichtovaný\r\nšlichtovat\r\nŠliková\r\nšlikovský\r\nŠlik\r\nŠlikův\r\nŠlitrová\r\nŠlitr\r\nŠlitrův\r\nšlofíček\r\nšlofík\r\nšlofík\r\nšlohnout\r\nšlohnutí\r\nšlohnutý\r\nŠlosarová\r\nŠlosar\r\nŠlosarův\r\nŠloufová\r\nŠlouf\r\nŠloufův\r\nšlový\r\nšluk\r\nšluknout\r\nŠluknov\r\nŠluknovsko\r\nšluknovský\r\nšluknutí\r\nšlukování\r\nšlukovaný\r\nšlukovat\r\nšlukující\r\nšlupička\r\nšlupka\r\nŠmahelová\r\nŠmahel\r\nŠmahelův\r\nšmahem\r\nšmajdavější\r\nšmajdavý\r\nŠmakalová\r\nŠmakal\r\nŠmakalův\r\nšmalkaldský\r\nŠmarda\r\nŠmardová\r\nŠmardův\r\nšmatlavější\r\nšmatlavý\r\nšmátrání\r\nšmátraný\r\nšmátrat\r\nšmejdění\r\nšmejd\r\nšmejdit\r\nŠmejkalová\r\nŠmejkal\r\nŠmejkalův\r\nšmelení\r\nšmelený\r\nŠmelhausová\r\nŠmelhaus\r\nŠmelhausův\r\nšmelinářčin\r\nšmelinářka\r\nšmelinářský\r\nšmelinářství\r\nšmelinář\r\nšmelinářův\r\nšmelina\r\nšmelit\r\nšmeralismus\r\nŠmeralová\r\nšmeralový\r\nŠmeral\r\nŠmeralův\r\nŠmerda\r\nŠmerdová\r\nŠmerdův\r\nšmidlání\r\nŠmídová\r\nŠmíd\r\nŠmidrkalová\r\nŠmidrkal\r\nŠmidrkalův\r\nŠmídův\r\nšmik\r\nšmiknout\r\nšmiknutí\r\nšmiknutý\r\nŠmilauerová\r\nŠmilauer\r\nŠmilauerův\r\nšminka\r\nšminky\r\nšmírák\r\nŠmirausová\r\nŠmiraus\r\nŠmirausův\r\nšmíra\r\nšmír\r\nšmírování\r\nšmírovaný\r\nšmírovat\r\nŠmiřáková\r\nŠmiřák\r\nŠmiřákův\r\nšmolka\r\nšmolkový\r\nšmouha\r\nšmrnc\r\nšmudla\r\nšmudlat\r\nšmukýřčin\r\nšmukýřka\r\nšmytec\r\nŠnajdrová\r\nŠnajdr\r\nŠnajdrův\r\nšneci\r\nšnecích\r\nšneček\r\nšnečí\r\nšnečkův\r\nŠnejdarová\r\nŠnejdar\r\nŠnejdarův\r\nšnek\r\nšneka\r\nšnekem\r\nšnekopístový\r\nšnekové\r\nšnekovi\r\nšnekovitý\r\nšnekový\r\nšneku\r\nšneků\r\nšnekům\r\nšnekův\r\nšneky\r\nšněrovací\r\nšněrovačka\r\nšněrovadlo\r\nšněrování\r\nšněrovaný\r\nšněrovat\r\nšněrovávat\r\nšněrující\r\nŠnoblová\r\nŠnobl\r\nŠnoblův\r\nŠnorek\r\nŠnorková\r\nŠnorkův\r\nšňupací\r\nšňupáček\r\nšňupák\r\nšňupání\r\nšňupaný\r\nšňupat\r\nšňupavější\r\nšňupavý\r\nšňupka\r\nšňupnout\r\nšňupnutí\r\nšňupnutý\r\nšňůra\r\nšňůrka\r\nšňůrový\r\nŠobáňová\r\nŠobáň\r\nŠobáňův\r\nšodó\r\nšoférčin\r\nšoférka\r\nšofér\r\nšoférský\r\nšoférův\r\nŠofrová\r\nŠofr\r\nŠofrův\r\nšohajčin\r\nšohajka\r\nšohaj\r\nšohajův\r\nŠojdrová\r\nŠojdr\r\nŠojdrův\r\nšok\r\nšokovanější\r\nšokování\r\nšokovaný\r\nšokovat\r\nšokovávání\r\nšokovávaný\r\nšokovávat\r\nšokový\r\nšokující\r\nŠolcová\r\nŠolc\r\nŠolcův\r\nŠolínová\r\nŠolín\r\nŠolínův\r\nŠolta\r\nŠoltésová\r\nŠoltés\r\nŠoltésův\r\nŠoltová\r\nŠoltův\r\nŠoltysová\r\nŠoltys\r\nŠoltysův\r\nŠonov\r\nšonovský\r\nŠonský\r\nšopka\r\nŠoproň\r\nšopský\r\nŠormová\r\nŠorm\r\nŠormův\r\nšortky\r\nšosácký\r\nšosáctví\r\nšosáčtější\r\nšosák\r\nšosákův\r\nšosatější\r\nšosatý\r\nšos\r\nŠostakovičová\r\nŠostakovič\r\nŠostakovičův\r\nšošolka\r\nŠošůvka\r\nšošůvský\r\nšotek\r\nšot\r\nšotkův\r\nŠotnerová\r\nŠotner\r\nŠotnerův\r\nŠotola\r\nšotolina\r\nšotolinový\r\nŠotolová\r\nŠotolův\r\nšou\r\nŠoubová\r\nŠoub\r\nŠoubův\r\nšoubyznys\r\nšoulavý\r\nšoupačka\r\nšoupák\r\nšoupálek\r\nšoupálkův\r\nšoupání\r\nšoupaný\r\nšoupat\r\nšoupátko\r\nšoupátkový\r\nšoupě\r\nšoupnout\r\nšoupnutí\r\nšoupnutý\r\nšourající\r\nšourák\r\nšourání\r\nšourat\r\nšouravější\r\nšouravý\r\nŠourek\r\nšourek\r\nŠourková\r\nšourkový\r\nŠourkův\r\nšovinismus\r\nšovinista\r\nšovinistčin\r\nšovinistický\r\nšovinističtější\r\nšovinistka\r\nšovinistův\r\nšpacírka\r\nšpaččí\r\nšpaček\r\nŠpaček\r\nŠpačková\r\nšpačkovitý\r\nŠpačkův\r\nšpačkův\r\nšpagátek\r\nšpagát\r\nšpagátový\r\nšpageta\r\nšpagetový\r\nšpachtle\r\nšpalda\r\nšpalek\r\nšpaletový\r\nšpalíček\r\nšpalík\r\nšpalíkový\r\nšpalír\r\nšpalkový\r\nŠpanbauerová\r\nŠpanbauer\r\nŠpanbauerův\r\nŠpánek\r\nŠpanělka\r\nŠpaněl\r\nŠpanělsko\r\nšpanělský\r\nšpanělský\r\nšpanělštinářčin\r\nšpanělštinářka\r\nšpanělštinář\r\nšpanělštinářův\r\nšpanělština\r\nŠpanělův\r\nšpanělův\r\nŠpanielová\r\nŠpaniel\r\nŠpanielův\r\nŠpanihelová\r\nŠpanihel\r\nŠpanihelův\r\nŠpánková\r\nŠpánkův\r\nšparglový\r\nšpás\r\nšpásování\r\nšpásovat\r\nšpatenka\r\nŠpatka\r\nŠpatková\r\nŠpatkův\r\nšpatnější\r\nšpatný\r\nšpehovanější\r\nšpehování\r\nšpehovaný\r\nšpehovat\r\nšpehovávání\r\nšpehovávat\r\nšpeh\r\nšpehující\r\nšpehův\r\nšpehýrka\r\nšpejchárek\r\nšpejchar\r\nšpejcharový\r\nšpejle\r\nšpekáček\r\nšpek\r\nšpekový\r\nšpelunka\r\nšpeluňka\r\nšpenát\r\nšpenátový\r\nšpendlení\r\nšpendlený\r\nšpendlíček\r\nšpendlík\r\nšpendlíkový\r\nšpendlit\r\nšperhák\r\nšperkařčin\r\nšperkařka\r\nšperkařský\r\nšperkařství\r\nšperkař\r\nšperkařův\r\nšperk\r\nšperkování\r\nšperkovaný\r\nšperkovat\r\nšperkovnice\r\nšperkovnice\r\nšperkovnictví\r\nŠperlová\r\nŠperl\r\nŠperlův\r\nšpetička\r\nšpetka\r\nšpetkovací\r\nšpetkování\r\nšpetkovaný\r\nšpetkovat\r\nšpetkový\r\nŠpetla\r\nŠpetlová\r\nŠpetlův\r\nŠpicberky\r\nšpicberský\r\nšpice\r\nšpice\r\nšpiclování\r\nšpiclovaný\r\nšpiclovat\r\nšpiclovský\r\nšpicl\r\nšpiclující\r\nšpiclův\r\nšpicování\r\nšpicovaný\r\nšpicovat\r\nŠpičáková\r\nšpičák\r\nŠpičák\r\nŠpičákův\r\nšpičákův\r\nšpičatější\r\nšpičatět\r\nšpičatý\r\nšpíček\r\nŠpička\r\nšpička\r\nšpičkování\r\nšpičkovat\r\nŠpičková\r\nšpičkovější\r\nšpičkový\r\nŠpičkův\r\nŠpidla\r\nŠpidlenová\r\nŠpidlen\r\nŠpidlenův\r\nŠpidlová\r\nŠpidlův\r\nšpikovačka\r\nšpikování\r\nšpikovaný\r\nšpikovat\r\nšpikovávání\r\nšpikovávaný\r\nšpikovávat\r\nŠpilberk\r\nšpilberský\r\nšpílec\r\nŠpinarová\r\nŠpinar\r\nŠpinarův\r\nšpinavcův\r\nšpinavec\r\nšpinavější\r\nšpinavoučký\r\nšpinavý\r\nšpína\r\nšpindíra\r\nŠpindlerová\r\nŠpindler\r\nŠpindlerův\r\nŠpinek\r\nšpinění\r\nšpiněný\r\nšpinící\r\nšpinit\r\nšpinka\r\nšpínka\r\nŠpinková\r\nŠpinkův\r\nšpionážní\r\nšpionáž\r\nšpiončin\r\nšpionka\r\nšpiónka\r\nšpion\r\nšpión\r\nšpionský\r\nšpiónský\r\nšpionův\r\nšpiónův\r\nŠpíšek\r\nŠpíšková\r\nŠpíškův\r\nšpitál\r\nšpitální\r\nšpitální\r\nŠpitálová\r\nŠpitál\r\nšpitálský\r\nŠpitálský\r\nŠpitálův\r\nšpitání\r\nšpitaný\r\nšpitat\r\nšpitnout\r\nšpitnutí\r\nšpíz\r\nšpíže\r\nšpižírna\r\nšpíž\r\nšplhadlo\r\nšplhající\r\nšplhání\r\nšplhaný\r\nšplhat\r\nšplhávání\r\nšplhávat\r\nšplhavcův\r\nšplhavec\r\nšplhavější\r\nšplhavý\r\nšplh\r\nšplhnout\r\nšplhoun\r\nšplhounství\r\nšplhounův\r\nŠplíchalová\r\nŠplíchal\r\nŠplíchalův\r\nšplíchání\r\nšplíchat\r\nšplíchnout\r\nšplíchnutí\r\nšplíchnutý\r\nšplouchající\r\nšplouchání\r\nšplouchaný\r\nšplouchat\r\nšplouchavý\r\nšplouchnout\r\nŠponarová\r\nŠponar\r\nŠponarův\r\nšpona\r\nšponování\r\nšponovaný\r\nšponovat\r\nšponovky\r\nšprot\r\nšprtání\r\nšprtat\r\nšprťouchle\r\nšprtoun\r\nšprtounův\r\nšprýmařský\r\nšprýmař\r\nšprýmařův\r\nšprým\r\nšprýmování\r\nšprýmovat\r\nšprýmovný\r\nšprýmový\r\nŠpuláková\r\nŠpulák\r\nŠpulákův\r\nšpulení\r\nšpulený\r\nšpulící\r\nšpulit\r\nŠpulka\r\nšpulka\r\nŠpulková\r\nŠpulkův\r\nŠpunda\r\nŠpundová\r\nŠpundův\r\nšpunt\r\nšpuntovka\r\nŠpůra\r\nŠpůrová\r\nŠpůrův\r\nšpýchárek\r\nšpýchar\r\nŠpýr\r\nšpýrský\r\nŠráček\r\nŠráčková\r\nŠráčkův\r\nšrafa\r\nšrafovací\r\nšrafování\r\nšrafovaný\r\nšrafovat\r\nšrafující\r\nŠraierová\r\nŠraier\r\nŠraierův\r\nŠrajbrová\r\nŠrajbr\r\nŠrajbrův\r\nŠrajerová\r\nŠrajer\r\nŠrajerův\r\nŠrámek\r\nšrám\r\nŠrámková\r\nŠrámkův\r\nšramlový\r\nšramocení\r\nšramot\r\nšramotící\r\nšramotit\r\nšraňka\r\nšrapnel\r\nšrapnelový\r\nŠrejma\r\nŠrejmová\r\nŠrejm\r\nŠrejmův\r\nŠrollerová\r\nŠroller\r\nŠrollerův\r\nŠrolová\r\nŠrol\r\nŠrolův\r\nšrot\r\nšrotiště\r\nšrotovací\r\nšrotovačka\r\nšrotování\r\nšrotovaný\r\nšrotovat\r\nšrotovávání\r\nšrotovávaný\r\nšrotovávat\r\nšrotovník\r\nšrotový\r\nšroubárna\r\nšroubatka\r\nšroubeček\r\nŠroubek\r\nšroubek\r\nšroub\r\nŠroubková\r\nšroubkový\r\nŠroubkův\r\nšroubovací\r\nšroubováček\r\nšroubovák\r\nšroubovanější\r\nšroubování\r\nšroubovaný\r\nšroubovat\r\nšroubovávání\r\nšroubovávaný\r\nšroubovávat\r\nšroubovice\r\nšroubovicový\r\nšroubovitý\r\nšroubový\r\nŠrůta\r\nšrůta\r\nŠrůtek\r\nšrůtka\r\nŠrůtková\r\nŠrůtkův\r\nŠrůtová\r\nŠrůtův\r\nŠrytrová\r\nŠrýtrová\r\nŠrytr\r\nŠrýtr\r\nŠrytrův\r\nŠrýtrův\r\nštáb\r\nštábní\r\nštace\r\nŠtádlerová\r\nŠtádler\r\nŠtádlerův\r\nštafeta\r\nštafetový\r\nštafírování\r\nštafírovaný\r\nštafírovat\r\nštafle\r\nŠťáhlavy\r\nŠtajerová\r\nŠtajer\r\nŠtajerův\r\nŠtajnarová\r\nŠtajnar\r\nŠtajnarův\r\nŠtampachová\r\nŠtampach\r\nŠtampachův\r\nštamprle\r\nštamprlička\r\nŠtanglerová\r\nŠtangler\r\nŠtanglerův\r\nŠtantejský\r\nšťárání\r\nšťáraný\r\nšťárat\r\nšťára\r\nŠtarnov\r\nštarnovský\r\nŠťástek\r\nšťasten\r\nŠťástková\r\nŠťástkův\r\nšťastlivcův\r\nšťastlivec\r\nštastnější\r\nšťastnější\r\nŠťastný\r\nšťastný\r\nŠtauf\r\nštaufský\r\nšťáva\r\nšťavelan\r\nšťavelový\r\nšťavel\r\nšťavnatější\r\nšťavnatka\r\nšťavnatý\r\nštěbetající\r\nštěbetalka\r\nštěbetání\r\nštěbetat\r\nštěbetávání\r\nštěbetávat\r\nštěbetavý\r\nštěbotání\r\nštěbotat\r\nštěbotávání\r\nštěbotávat\r\nštěderský\r\nŠtědrá\r\nŠtědroňová\r\nŠtědronský\r\nŠtědroň\r\nŠtědroňův\r\nštědrovečerní\r\nŠtědrý\r\nštědrý\r\nštědřejší\r\nštědřenec\r\nŠtefáček\r\nŠtefáčková\r\nŠtefáčkův\r\nŠtefánik\r\nŠtefánikův\r\nŠtefanová\r\nŠtefan\r\nŠtefanův\r\nŠtefányová\r\nŠtefányův\r\nŠtefány\r\nŠtefeček\r\nŠtefečková\r\nŠtefečkův\r\nŠtefek\r\nŠtefková\r\nŠtefkův\r\nŠteflová\r\nŠtefl\r\nŠteflův\r\nŠtěchová\r\nŠtěchovice\r\nštěchovický\r\nŠtěchov\r\nštěchovský\r\nŠtěch\r\nŠtěchův\r\nŠteinfestová\r\nŠteinfest\r\nŠteinfestův\r\nŠtejfová\r\nŠtejf\r\nŠtejfův\r\nštěkající\r\nštěkání\r\nštěkaný\r\nštěkat\r\nštěkávat\r\nštěkavější\r\nštěkavý\r\nštěkeňský\r\nŠtěkeň\r\nštěk\r\nštěkna\r\nštěknout\r\nštěknutí\r\nštěkot\r\nštelážka\r\nŠtembera\r\nŠtemberek\r\nŠtemberková\r\nŠtemberkův\r\nŠtemberová\r\nŠtemberův\r\nštěňátko\r\nŠtěnavský\r\nštěně\r\nštěnice\r\nštěnička\r\nštěničník\r\nŠtěpánčin\r\nŠtěpánek\r\nŠtěpánka\r\nŠtěpánková\r\nŠtěpánkovice\r\nštěpánkovický\r\nŠtěpánkův\r\nŠtěpánová\r\nŠtěpánovice\r\nštěpánovický\r\nŠtěpanovičová\r\nŠtěpanovič\r\nŠtěpanovičův\r\nŠtěpánov\r\nštěpánovský\r\nŠtěpán\r\nŠtěpánův\r\nŠtěpa\r\nŠtěpařová\r\nštěpařství\r\nŠtěpař\r\nŠtěpařův\r\nŠtěpčin\r\nštěpení\r\nštěpený\r\nštep\r\nštěp\r\nštěpící\r\nštěpina\r\nštěpinka\r\nštěpit\r\nštěpitelnější\r\nštěpitelný\r\nŠtěpka\r\nštěpka\r\nŠtěpkov\r\nštěpkovský\r\nštěpnice\r\nŠtěpnička\r\nštěpnička\r\nŠtěpničková\r\nŠtěpničkův\r\nštěpný\r\nštepování\r\nštěpování\r\nštepovaný\r\nštěpovaný\r\nštepovat\r\nštěpovat\r\nŠtěpová\r\nštěpový\r\nŠtěpův\r\nštěrbák\r\nŠtěrba\r\nštěrbina\r\nštěrbinka\r\nštěrbinovitý\r\nštěrbinový\r\nŠtěrbová\r\nŠtěrbův\r\nštěrk\r\nštěrkopísek\r\nštěrkopískovna\r\nštěrkopískový\r\nštěrkování\r\nštěrkovaný\r\nštěrkovat\r\nštěrkoviště\r\nštěrkovitý\r\nštěrkovna\r\nštěrkový\r\nšterlink\r\nšterlinkový\r\nŠternberková\r\nŠternberk\r\nŠternberkův\r\nšternberský\r\nštěstěna\r\nštěstíčko\r\nštěstí\r\nštětcový\r\nštětec\r\nštěteček\r\nštět\r\nštětička\r\nŠtětina\r\nštětinatější\r\nštětinatý\r\nštětina\r\nštětinka\r\nštětinkovitý\r\nŠtětín\r\nŠtětinová\r\nštětinový\r\nštětínský\r\nŠtětinův\r\nŠtětí\r\nŠtětka\r\nštětka\r\nŠtětková\r\nštětkový\r\nŠtětkův\r\nŠtiavnica\r\nštiavnický\r\nštičí\r\nštička\r\nštíhlející\r\nštíhlejší\r\nštíhlonohý\r\nštíhlý\r\nŠtíhrad\r\nŠticha\r\nŠtícha\r\nŠtichová\r\nŠtíchová\r\nŠtichov\r\nštichovský\r\nŠtichův\r\nŠtíchův\r\nŠtika\r\nŠtikarová\r\nŠtikar\r\nŠtikarův\r\nštika\r\nŠtiková\r\nštikovitý\r\nštikovka\r\nštikový\r\nštikozubec\r\nŠtikův\r\nŠtilcová\r\nŠtilc\r\nŠtilcův\r\nŠtillerová\r\nŠtiller\r\nŠtillerův\r\nštípací\r\nštípačka\r\nštípačky\r\nštípanec\r\nštípání\r\nštípanka\r\nštípaný\r\nštípat\r\nštípatelnější\r\nštípatelný\r\nštípávání\r\nštípávaný\r\nštípávat\r\nštípavý\r\nštipec\r\nŠtípek\r\nštípenka\r\nštipka\r\nŠtípková\r\nŠtípkův\r\nštiplavější\r\nštiplavý\r\nštípnout\r\nštípnutí\r\nštípnutý\r\nštírek\r\nštír\r\nštírův\r\nštíření\r\nŠtiřín\r\nštiřínský\r\nštířit\r\nštířivý\r\nštítarský\r\nŠtítary\r\nštítek\r\nštítění\r\nštítenka\r\nštít\r\nštítící\r\nŠtítina\r\nštítit\r\nštítivější\r\nštítivý\r\nštítkovací\r\nštítkování\r\nštítkovaný\r\nštítkovat\r\nštítkový\r\nštítkující\r\nštítnatý\r\nštítný\r\nštítovitý\r\nŠtítov\r\nštítovský\r\nštítový\r\nštkaní\r\nštkát\r\nštkavější\r\nštkavý\r\nŠtoček\r\nštoček\r\nŠtočková\r\nŠtočkův\r\nŠtohanzlová\r\nŠtohanzl\r\nŠtohanzlův\r\nŠtochlová\r\nŠtochl\r\nŠtochlův\r\nštok\r\nŠtokrava\r\nštokrdle\r\nštola\r\nštóla\r\nŠtolba\r\nštolba\r\nŠtolbová\r\nŠtolbův\r\nštolbův\r\nštolka\r\nŠtollová\r\nŠtoll\r\nŠtollův\r\nštolový\r\nŠtorek\r\nŠtorchová\r\nŠtorch\r\nŠtorchův\r\nŠtorkánová\r\nŠtorkán\r\nŠtorkánův\r\nŠtorková\r\nŠtorkův\r\nŠtorová\r\nŠtor\r\nŠtorův\r\nŠtosek\r\nštos\r\nŠtosková\r\nŠtoskův\r\nštosování\r\nštosovaný\r\nštosovat\r\nštoudev\r\nšťouch\r\nšťouchající\r\nšťouchanec\r\nšťouchání\r\nšťouchaný\r\nšťouchat\r\nšťouchávání\r\nšťouchávaný\r\nšťouchávat\r\nšťouchnout\r\nšťouchnutí\r\nšťouchnutý\r\nšťourající\r\nšťoural\r\nšťouralství\r\nšťouralův\r\nšťourání\r\nšťouraný\r\nšťoura\r\nšťourat\r\nšťouravější\r\nšťouravý\r\nšťourův\r\nšťovan\r\nŠťovíček\r\nŠťovíčková\r\nŠťovíčkův\r\nšťovík\r\nšťovíkový\r\nštráfka\r\nštrachání\r\nštrachaný\r\nštrachat\r\nŠtraitová\r\nŠtrait\r\nŠtraitův\r\nštramáčtější\r\nštramanda\r\nŠtramanová\r\nŠtraman\r\nŠtramanův\r\nŠtramberk\r\nštramberský\r\nŠtrasburk\r\nštrasburský\r\nštras\r\nštrasový\r\nŠtrbský\r\nštreka\r\nštrok\r\nštrokování\r\nŠtropová\r\nŠtrop\r\nŠtropův\r\nŠtrosová\r\nŠtros\r\nŠtrosův\r\nŠtrougalová\r\nŠtrougal\r\nŠtrougalův\r\nŠtrubina\r\nštrúdl\r\nštrúdlový\r\nŠtrumfová\r\nŠtrumf\r\nŠtrumfův\r\nŠtruncová\r\nŠtrunc\r\nŠtruncův\r\nštrykující\r\nŠtrynclová\r\nŠtryncl\r\nŠtrynclův\r\nštůček\r\nštůčka\r\nštudaččin\r\nštudačka\r\nštudák\r\nštudákův\r\nštudentčin\r\nštudentka\r\nštudie\r\nŠtudlov\r\nštudlovský\r\nštudovat\r\nštudýrka\r\nštukatérčin\r\nštukatérka\r\nštukatér\r\nštukatérský\r\nštukatérství\r\nštukatérův\r\nštukatura\r\nštuka\r\nštuk\r\nštukování\r\nštukovaný\r\nštukovat\r\nštukový\r\nŠtula\r\nŠtůla\r\nštulec\r\nŠtulíková\r\nŠtulík\r\nŠtulíkův\r\nŠtulová\r\nŠtůlová\r\nŠtulův\r\nŠtůlův\r\nštupování\r\nštupovaný\r\nštupovat\r\nštuprování\r\nštuprovat\r\nŠturma\r\nšturm\r\nšturmování\r\nšturmovaný\r\nšturmovat\r\nŠturmová\r\nšturmovština\r\nŠturm\r\nŠturmův\r\nštúrovcův\r\nštúrovec\r\nŠtursa\r\nŠtursová\r\nŠtursův\r\nŠtúrův\r\nštůsek\r\nštváčský\r\nštváč\r\nštváčův\r\nštvancův\r\nštvanec\r\nštvanější\r\nštvanice\r\nštvaní\r\nštvání\r\nštvaný\r\nštvát\r\nštvavější\r\nštvavý\r\nŠtveráková\r\nŠtverák\r\nŠtverákův\r\nštych\r\nŠtychový\r\nŠtýrsko\r\nštýrský\r\nŠtýsová\r\nŠtýs\r\nŠtýsův\r\nŠuba\r\nŠůba\r\nŠubertová\r\nŠubert\r\nŠubertův\r\nŠubíková\r\nŠubík\r\nŠubíkův\r\nŠubířov\r\nšubířovský\r\nšubka\r\nŠubová\r\nŠůbová\r\nŠubrtová\r\nŠubrt\r\nŠubrtův\r\nŠubův\r\nŠůbův\r\nšuby\r\nšuhaj\r\nšuhajův\r\nšukání\r\nšukaný\r\nšukat\r\nŠuková\r\nŠuk\r\nŠukův\r\nŠuláková\r\nŠulák\r\nŠulákův\r\nŠula\r\nŠůla\r\nŠulcová\r\nŠulc\r\nŠulcův\r\nŠulista\r\nŠulistová\r\nŠulistův\r\nŠulová\r\nŠůlová\r\nŠulův\r\nŠůlův\r\nšumák\r\nŠuma\r\nšumař\r\nšumařův\r\nšumavanka\r\nŠumava\r\nšumavský\r\nŠumbera\r\nŠumberová\r\nŠumberův\r\nšumění\r\nšuměnka\r\nšumenský\r\nšuměný\r\nšumět\r\nšum\r\nŠumice\r\nšumicí\r\nšumící\r\nšumický\r\nšumivější\r\nšumivý\r\nŠumná\r\nšumný\r\nšumot\r\nŠumová\r\nšumový\r\nŠumperk\r\nŠumpersko\r\nšumperský\r\nšumperský\r\nŠumpíková\r\nŠumpík\r\nŠumpíkův\r\nŠumův\r\nŠumvald\r\nšunka\r\nšunkový\r\nšunt\r\nšup\r\nšupácký\r\nšupáctví\r\nšupáčtější\r\nšupák\r\nšupákův\r\nŠupejová\r\nŠupej\r\nŠupejův\r\nšup\r\nŠupicová\r\nŠupic\r\nŠupicův\r\nšupináč\r\nšupinatější\r\nšupinatka\r\nšupinatý\r\nšupina\r\nšupinka\r\nšupinkovatý\r\nšupinkovitý\r\nšupinkový\r\nšupinovitý\r\nšupinovka\r\nšupinový\r\nšuple\r\nšuplík\r\nšuplíkový\r\nŠuráňová\r\nŠuráň\r\nŠuráňův\r\nŠura\r\nŠurová\r\nŠurův\r\nšusťák\r\nšusťákový\r\nŠustalová\r\nŠustal\r\nŠustalův\r\nŠusta\r\nŠusteková\r\nŠustek\r\nŠustekův\r\nšustění\r\nŠusterová\r\nŠuster\r\nŠusterův\r\nšustět\r\nšustící\r\nšustit\r\nšustivější\r\nšustivý\r\nšustnout\r\nšustnutí\r\nšustot\r\nŠustová\r\nŠustrová\r\nŠustr\r\nŠustrův\r\nŠustův\r\nšuškal\r\nšuškalův\r\nšuškanda\r\nšuškání\r\nšuškaný\r\nšuškat\r\nšuškávání\r\nšuškávaný\r\nšuškávat\r\nšutrák\r\nšutr\r\nšvabach\r\nšvabachový\r\nŠvábenice\r\nšvábenický\r\nŠvabinský\r\nšvábka\r\nŠvábová\r\nŠvábov\r\nšvábovský\r\nšváb\r\nŠváb\r\nŠvábsko\r\nšvábský\r\nŠvábův\r\nšvábův\r\nšvadlena\r\nšvadlenčin\r\nšvadlenin\r\nŠvadlenka\r\nšvadlenka\r\nŠvadlenková\r\nŠvadlenkův\r\nŠvagerka\r\nŠvagerková\r\nŠvagerkův\r\nšvagrová\r\nšvagrovský\r\nšvagr\r\nšvagrův\r\nŠvácha\r\nŠváchová\r\nŠváchův\r\nŠvajcrová\r\nŠvajcr\r\nŠvajcrův\r\nŠvajdlerová\r\nŠvajdler\r\nŠvajdlerův\r\nŠvanda\r\nšvanda\r\nŠvandová\r\nŠvandrlíková\r\nŠvandrlík\r\nŠvandrlíkův\r\nŠvandův\r\nŠvankmajerová\r\nŠvankmajer\r\nŠvankmajerův\r\nŠvarcenava\r\nŠvarcová\r\nŠvarc\r\nŠvarcův\r\nšvarnější\r\nšvarný\r\nšvařený\r\nŠvébišová\r\nŠvébiš\r\nŠvébišův\r\nŠvec\r\nšvec\r\nŠvece\r\nŠvecem\r\nŠveci\r\nŠvecích\r\nŠvecová\r\nŠvecové\r\nŠvecovi\r\nŠveců\r\nŠvecům\r\nŠvecův\r\nšvecův\r\nŠvédčin\r\nŠvédka\r\nšvédový\r\nŠvéd\r\nŠvédsko\r\nšvédský\r\nšvédštější\r\nšvédština\r\nŠvédův\r\nŠvehla\r\nŠvehlová\r\nŠvehlův\r\nšveholení\r\nšveholený\r\nšveholící\r\nšveholit\r\nšveholivý\r\nŠvejda\r\nŠvejdarová\r\nŠvejdar\r\nŠvejdarův\r\nŠvejdová\r\nŠvejdův\r\nšvejkovat\r\nŠvejková\r\nšvejkovina\r\nšvejkovský\r\nŠvejk\r\nŠvejkův\r\nŠvejnarová\r\nŠvejnar\r\nŠvejnarův\r\nŠverma\r\nŠvermová\r\nŠvermův\r\nšvestička\r\nŠvestka\r\nšvestka\r\nŠvestková\r\nšvestkový\r\nŠvestkův\r\nšvidravější\r\nšvidravý\r\nŠvidroňová\r\nŠvidroň\r\nŠvidroňův\r\nšvihácký\r\nšviháčtější\r\nšvihadlo\r\nšvihák\r\nšvihákův\r\nšvihání\r\nšvihaný\r\nŠviha\r\nšvihat\r\nšvihávání\r\nšvihávaný\r\nšvihávat\r\nšvih\r\nšvihlejší\r\nšvihnout\r\nšvihnutí\r\nšvihnutý\r\nŠvihová\r\nŠvihov\r\nŠvihovský\r\nšvihovský\r\nšvihovský\r\nšvihový\r\nŠvihův\r\nšvindl\r\nšvindlování\r\nšvindlovaný\r\nšvindlovat\r\nŠvingalová\r\nŠvingal\r\nŠvingalův\r\nšvitorka\r\nšvitorný\r\nšvitoření\r\nšvitořený\r\nšvitořící\r\nšvitořit\r\nšvitořivější\r\nšvitořivý\r\nšvorc\r\nŠvorcová\r\nšvorcový\r\nŠvorc\r\nŠvorcův\r\nšvový\r\nŠvrček\r\nŠvrčková\r\nŠvrčkův\r\nšvunk\r\nŠvýcarčin\r\nŠvýcarka\r\nŠvýcar\r\nŠvýcarsko\r\nšvýcarský\r\nšvýcarštější\r\nŠvýcarův\r\ntab\r\ntabáček\r\ntabačenka\r\ntabák\r\ntabakismus\r\ntabákovější\r\ntabákový\r\ntabatěrka\r\ntabelace\r\ntabelační\r\ntabelární\r\ntabelátor\r\ntabelátorový\r\ntabelování\r\ntabelovaný\r\ntabelovat\r\ntabelující\r\ntabernáklový\r\ntableta\r\ntabletenisový\r\ntabletenista\r\ntabletenistčin\r\ntabletenistka\r\ntabletenistův\r\ntabletennista\r\ntabletennistčin\r\ntabletennistka\r\ntabletennistův\r\ntablet\r\ntabletka\r\ntabletovací\r\ntabletovačka\r\ntabletování\r\ntabletovaný\r\ntabletovat\r\ntabletový\r\ntabló\r\ntablo\r\ntáborák\r\ntáborákovější\r\ntáborákový\r\nTáborčin\r\ntáborita\r\ntáboritský\r\ntáboritův\r\nTáborka\r\nTábor\r\ntábor\r\ntábornice\r\ntábornický\r\ntábornictví\r\ntáborničtější\r\ntáborník\r\ntáborníkův\r\ntáborovější\r\ntáborový\r\nTáborsko\r\nTáborský\r\ntáborský\r\ntáborství\r\ntáboření\r\ntábořený\r\ntábořící\r\ntábořiště\r\ntábořit\r\ntabu\r\ntabuizace\r\ntabuizovanější\r\ntabuizování\r\ntabuizovaný\r\ntabuizovat\r\ntabulace\r\ntabulační\r\ntabulátor\r\ntabulátorový\r\ntabulatura\r\ntabulaturní\r\ntabule\r\ntabulka\r\ntabulkový\r\ntabulnice\r\ntabulový\r\ntabuový\r\ntaburet\r\ntaburetka\r\ntácek\r\ntác\r\ntací\r\ntáčka\r\ntáčky\r\nTadeáš\r\nTadeášův\r\ntady\r\ntádžický\r\ntadžičtina\r\ntádžičtina\r\nTadžikistán\r\nTádžik\r\nTádžikův\r\nťafka\r\ntaft\r\ntaftový\r\ntagmém\r\ntagmémika\r\ntágo\r\ntahací\r\ntahačka\r\ntahač\r\ntahající\r\ntahák\r\ntahanice\r\ntahání\r\ntahaný\r\ntahat\r\ntahávání\r\ntahávaný\r\ntahávat\r\ntah\r\ntahiťan\r\ntahitský\r\ntahle\r\ntáhlejší\r\ntáhlicový\r\ntáhlovitý\r\ntáhlový\r\ntáhlý\r\ntáhnoucí\r\ntáhnout\r\ntáhnutí\r\ntahoun\r\ntahounův\r\ntahový\r\ntachismus\r\nTachlovice\r\ntachlovický\r\ntachograf\r\ntachografický\r\ntachoměr\r\ntachometr\r\nTachov\r\nTachovsko\r\ntachovský\r\ntachovštější\r\ntachyon\r\ntachyonový\r\ntachytyp\r\ntajemnější\r\ntajemnice\r\ntajemnický\r\ntajemník\r\ntajemníkův\r\ntajemno\r\ntajemnůstka\r\ntajemný\r\ntajemství\r\ntajení\r\ntajenka\r\ntajený\r\ntajfun\r\ntajga\r\ntající\r\ntajit\r\ntajnější\r\ntajnosnubnější\r\ntajnosnubný\r\ntajnůstkářčin\r\ntajnůstkářka\r\ntajnůstkářský\r\ntajnůstkářství\r\ntajnůstkář\r\ntajnůstkářův\r\ntajnůstka\r\ntajný\r\nTajovský\r\ntaj\r\nTajtlová\r\nTajtl\r\nTajtlův\r\ntajuplnější\r\ntajuplný\r\ntak\r\nťak\r\ntaká\r\nTakáčová\r\nTakáč\r\nTakáčův\r\ntaké\r\ntakeláž\r\ntakhle\r\ntakováto\r\ntakovéhoto\r\ntakovémto\r\ntakovémuto\r\ntakovéto\r\ntakovíto\r\ntakovouto\r\ntakový\r\ntakovýchto\r\ntakovýma\r\ntakovýmato\r\ntakovýmito\r\ntakovýmto\r\ntakovýto\r\ntakový\r\ntakový\r\ntakříkajíc\r\ntakřka\r\ntaktak\r\ntaktéž\r\ntakt\r\ntaktický\r\ntaktičtější\r\ntaktika\r\ntaktik\r\ntaktikův\r\ntaktisování\r\ntaktisovaný\r\ntaktisovat\r\ntaktizování\r\ntaktizovat\r\ntaktizující\r\ntaktnější\r\ntaktní\r\ntakto\r\ntaktovací\r\ntaktování\r\ntaktovaný\r\ntaktovat\r\ntaktovka\r\ntaktový\r\ntaky\r\ntaký\r\ntakzvaný\r\ntakž\r\ntakže\r\ntalár\r\ntalent\r\ntalentovanější\r\ntalentovaný\r\ntalentovější\r\ntalentový\r\ntalián\r\nTalin\r\nTálín\r\ntalinský\r\ntálínský\r\ntalířek\r\ntalířkovitý\r\nTalířová\r\ntalířový\r\ntalíř\r\nTalíř\r\nTalířův\r\ntalisman\r\nTallinn\r\ntallinský\r\nTalmanová\r\nTalman\r\nTalmanův\r\ntalmud\r\ntalmudista\r\ntalmudistčin\r\ntalmudistka\r\ntalmudistův\r\nťal\r\ntalon\r\ntalón\r\ntam\r\nTamara\r\ntamaryšek\r\nTamařin\r\ntambor\r\ntamburína\r\ntamější\r\ntamhle\r\ntamhleten\r\ntamhletudy\r\ntamilština\r\ntamní\r\ntamodsud\r\ntamodtud\r\ntamponáž\r\ntampon\r\ntampón\r\ntamponovat\r\ntampónový\r\ntamtam\r\ntamtamový\r\ntamten\r\ntamtéž\r\ntamtudy\r\nTANAP\r\nTáňa\r\ntancechtivější\r\ntancechtivý\r\nTancošová\r\nTancoš\r\nTancošův\r\ntancovačka\r\ntancování\r\ntancovaný\r\ntancovat\r\ntancovávání\r\ntancovávaný\r\ntancovávat\r\ntancující\r\ntančení\r\ntančený\r\ntančící\r\ntančírna\r\ntančit\r\ntandem\r\ntandemista\r\ntandemistčin\r\ntandemistka\r\ntandemistův\r\ntandemový\r\ntanec\r\ntaneček\r\ntanečnější\r\ntanečnice\r\ntanečník\r\ntanečníkův\r\ntaneční\r\nTanganičin\r\nTanganika\r\ntangens\r\ntangenta\r\ntango\r\ntangovaný\r\ntangovat\r\ntangový\r\ntanin\r\nTánin\r\ntání\r\ntanker\r\ntank\r\ntankista\r\ntankistický\r\ntankistův\r\ntankodrom\r\ntankovací\r\ntankování\r\ntankovaný\r\ntankovat\r\ntankovávání\r\ntankovávaný\r\ntankovávat\r\ntankoviště\r\ntankový\r\ntanout\r\ntantal\r\ntantaličný\r\ntantalit\r\nTantalos\r\ntantalový\r\nTantal\r\nTantalův\r\ntantiéma\r\ntantra\r\ntantrismus\r\ntantristický\r\ntantum\r\ntanutí\r\nTanvald\r\nTanvaldsko\r\ntanvalský\r\ntaný\r\nTanzaňančin\r\nTanzaňanka\r\nTanzaňan\r\nTanzaňanův\r\nTanzancův\r\nTanzančin\r\nTanzanec\r\nTanzanie\r\nTanzanka\r\ntanzanský\r\ntaoismus\r\ntaoista\r\ntaoistčin\r\ntaoistický\r\ntaoistka\r\ntaoistův\r\nťap\r\nTapa\r\ntápající\r\ntápání\r\ntápat\r\nťapat\r\ntápavější\r\ntápavý\r\nťapavý\r\nťapčin\r\ntapetář\r\ntapetářův\r\ntapeta\r\ntapetování\r\ntapetovaný\r\ntapetovat\r\ntapetovávání\r\ntapetovávaný\r\ntapetovávat\r\ntapetový\r\nťapi\r\ntapioka\r\ntapír\r\ntapíří\r\ntapiserie\r\ntapisérie\r\nťapity\r\nťapkání\r\nťapkat\r\nťapkávání\r\nťapkávat\r\nťapka\r\ntaplákách\r\nťápnout\r\nťápnutí\r\nťápnutý\r\nťápota\r\nťapy\r\nTarabová\r\nTarab\r\nTarábulus\r\nTarabův\r\nTarantová\r\nTarant\r\ntarantule\r\nTarantův\r\ntarasící\r\ntarasnice\r\ntara\r\ntára\r\nTarent\r\nTargoszová\r\nTargosz\r\nTargoszův\r\nTaric\r\ntarif\r\ntarifikace\r\ntarifikační\r\ntarifikční\r\ntarifní\r\ntarifový\r\ntarok\r\ntarokový\r\ntartan\r\ntartanový\r\ntartrazin\r\ntařice\r\ntasemnice\r\ntasení\r\ntasený\r\nTaschnerová\r\nTaschner\r\nTaschnerův\r\nTasičová\r\nTasič\r\nTasičův\r\ntasit\r\nTáslerová\r\nTásler\r\nTáslerův\r\nTasmánie\r\ntasmánský\r\nTasovice\r\ntasovický\r\nTasov\r\ntasovský\r\nTASS\r\ntašismus\r\ntaškářčin\r\ntaškařice\r\ntaškařina\r\ntaškařin\r\ntaškářka\r\ntaškářský\r\ntaškářství\r\ntaškář\r\ntaškářův\r\ntaška\r\nTaškent\r\ntaškentský\r\ntaškový\r\nTašov\r\ntašovský\r\ntaštička\r\nTaťána\r\nTaťánin\r\ntáta\r\ntatarka\r\nTatarová\r\nTatar\r\nTatar\r\ntatarský\r\ntatarština\r\nTatarův\r\ntatarův\r\ntatáž\r\ntát\r\nTatenice\r\ntatenický\r\ntati\r\ntatíček\r\ntatíčkův\r\ntatík\r\ntatíkův\r\nTatiná\r\ntatínek\r\ntatínkův\r\ntatinský\r\ntaťka\r\ntaťkův\r\ntato\r\nťat\r\ntatranka\r\ntatranský\r\ntatrčka\r\ntatrč\r\ntatrman\r\ntatrmanův\r\nTatrovice\r\ntatrovický\r\ntatrovka\r\nTatry\r\ntátův\r\nTatýrek\r\nTatýrková\r\nTatýrkův\r\nťatý\r\nTauchmanová\r\nTauchman\r\nTauchmanův\r\nTaurogy\r\nTaussigový\r\nTaušová\r\nTauš\r\nTaušův\r\ntautologický\r\ntautologičtější\r\ntautologie\r\ntautomerie\r\ntavba\r\ntavenější\r\ntavenina\r\ntaveninový\r\ntavení\r\ntavený\r\ntavicí\r\ntavící\r\ntaviččin\r\ntavička\r\ntavič\r\ntavičův\r\ntavidlo\r\ntavidlový\r\ntavírna\r\ntavit\r\ntavitelnější\r\ntavitelný\r\nťav\r\ntavný\r\ntavolník\r\ntavolníkový\r\ntaxametr\r\ntaxativní\r\ntaxa\r\ntaxi\r\ntaxidermie\r\ntaxikářčin\r\ntaxíkářčin\r\ntaxikářka\r\ntaxíkářka\r\ntaxíkářský\r\ntaxikář\r\ntaxíkář\r\ntaxikářův\r\ntaxíkářův\r\ntaxík\r\ntaxislužba\r\nTaxis\r\nTaxisův\r\ntaxon\r\ntaxonomický\r\ntaxonomičtější\r\ntaxonomie\r\ntaylorismus\r\ntaylorův\r\ntázací\r\ntázající\r\ntázání\r\ntázaný\r\ntázat\r\ntazatelčin\r\ntazatelka\r\ntazatel\r\ntazatelův\r\ntázavější\r\ntázavý\r\ntáž\r\ntažební\r\ntaženější\r\ntažení\r\ntažený\r\ntáži\r\ntažitelnější\r\ntažitelný\r\ntažný\r\ntbc\r\nTbilisi\r\ntbiliský\r\nTCP\r\nTe\r\ntě\r\nteakový\r\nteamový\r\nteatralističin\r\nteatralistika\r\nteatrálnější\r\nteatrální\r\nteatrologický\r\nteatrologie\r\nteatrolog\r\nteatrologův\r\nteatroložčin\r\nteatroložka\r\ntebe\r\ntebou\r\ntěbůh\r\ntéct\r\ntečení\r\ntečka\r\ntéčko\r\ntečkovací\r\ntečkovanější\r\ntečkování\r\ntečkovaný\r\ntečkovat\r\ntečkový\r\ntečna\r\ntečnový\r\ntečný\r\ntečování\r\ntečovat\r\nTečovice\r\ntečovický\r\nteď\r\nTedoušek\r\nTedouškův\r\ntedy\r\nteenagerovský\r\nteenager\r\nteenagerský\r\nteflon\r\nteflonový\r\ntefrit\r\ntefritový\r\ntehdejší\r\ntehdy\r\nTeherán\r\nteheránský\r\ntéhle\r\ntěhotenský\r\ntěhotenství\r\ntěhotný\r\ntehovecký\r\nTehovec\r\nTehov\r\ntehovský\r\ntéhož\r\nTěchanovice\r\ntěchanovický\r\nTěchařovice\r\ntěchařovický\r\ntěchhle\r\ntechniciový\r\ntechnicismus\r\ntechnicium\r\ntechnickoekonomický\r\ntechnickoekonomičtější\r\ntechnickohospodářský\r\ntechnickoinženýrský\r\ntechnickoorganizační\r\ntechnickovědecký\r\ntechnický\r\ntechnička\r\ntechničtější\r\ntechnika\r\ntechnik\r\ntechnikův\r\ntechnizace\r\ntechnizovat\r\ntechnogenní\r\ntechnokracie\r\ntechnokratický\r\ntechnokratismus\r\ntechnokrat\r\ntechnokratův\r\ntechnologický\r\ntechnologie\r\ntechnolog\r\ntechnologův\r\ntechnoložčin\r\ntechnoložka\r\ntechnosféra\r\nTěchonín\r\ntěchonínský\r\ntechtle\r\ntěchto\r\ntěchže\r\nTeige\r\nTeigová\r\nTeigův\r\nTeichmannová\r\nTeichmann\r\nTeichmannův\r\nTeichmanová\r\nTeichman\r\nTeichmanův\r\nTeimlová\r\nTeiml\r\nTeimlův\r\nteismus\r\nteista\r\nteistčin\r\nteistický\r\nteistka\r\nteistův\r\nTejklová\r\nTejkl\r\nTejklův\r\nTejnský\r\ntěkající\r\ntěkání\r\ntěkaný\r\ntěkat\r\ntěkávat\r\ntěkavější\r\ntěkavý\r\nteka\r\nTekeľová\r\nTekeľ\r\nTekeľův\r\ntekoucí\r\ntektogramatický\r\ntektonický\r\ntektoničtější\r\ntektonika\r\nTektoság\r\ntektosféra\r\ntekutější\r\ntekutina\r\ntekutinový\r\ntekutý\r\ntel\r\ntelátko\r\ntelčský\r\nTelč\r\ntelecí\r\nTelečkov\r\ntelečkovský\r\ntelefax\r\ntelefaxový\r\ntelefonát\r\ntelefon\r\ntelefonický\r\ntelefonie\r\ntelefonista\r\ntelefonistčin\r\ntelefonistka\r\ntelefonistův\r\ntelefonizace\r\ntelefonizovat\r\ntelefonní\r\ntelefonování\r\ntelefonovat\r\ntelefonující\r\ntelefoto\r\ntelegraf\r\ntelegrafický\r\ntelegrafie\r\ntelegrafista\r\ntelegrafistčin\r\ntelegrafistka\r\ntelegrafistův\r\ntelegrafní\r\ntelegrafování\r\ntelegrafovaný\r\ntelegrafovat\r\ntelegrafovávání\r\ntelegrafovávaný\r\ntelegrafovávat\r\ntelegram\r\ntelegramový\r\nteleinformatický\r\nteleinformatičtější\r\ntele\r\ntelekineze\r\ntelekomunikace\r\ntelekomunikační\r\ntelekonference\r\ntelekonferenční\r\ntelemarketing\r\ntelematický\r\ntelematičtější\r\ntelematika\r\ntelemechanik\r\ntelemechanikův\r\ntelemetrický\r\ntelemetrie\r\ntelemonitoring\r\ntelení\r\ntelený\r\nteleobjektiv\r\nteleologický\r\nteleonomní\r\ntelepatčin\r\ntelepatický\r\ntelepatičtější\r\ntelepatie\r\ntelepatka\r\ntelepat\r\ntelepatův\r\nteleportace\r\nteleport\r\nteleportování\r\nteleportovaný\r\nteleportovat\r\ntelepsychický\r\ntelepsychičtější\r\nteleshopping\r\nteleskop\r\nteleskopický\r\nteleskopičtější\r\ntělesnější\r\ntělesno\r\ntělesný\r\ntěleso\r\ntělesový\r\nteletext\r\nteletextový\r\nteletina\r\nteletinka\r\nteletinový\r\nteletník\r\ntelevarieté\r\ntelevise\r\ntelevize\r\ntelevizní\r\ntelevizor\r\ntelex\r\ntelexovat\r\ntelexový\r\nTelib\r\nTelička\r\ntelička\r\ntělíčko\r\nTeličková\r\nTeličkův\r\ntělísko\r\ntelit\r\ntělka\r\ntellur\r\ntellurid\r\ntělnaný\r\ntělnatější\r\ntělnatý\r\nTelnice\r\ntelnický\r\ntělní\r\ntělocvična\r\ntělocvičný\r\ntělocvikářčin\r\ntělocvikářka\r\ntělocvikářský\r\ntělocvikář\r\ntělocvikářův\r\ntělocvik\r\ntělo\r\ntělo\r\ntelopeptid\r\ntělověda\r\ntělovější\r\ntělovýchova\r\ntělovýchovný\r\ntělový\r\ntělu\r\ntelugština\r\ntelur\r\ntelurid\r\ntelurový\r\ntěmahle\r\ntéma\r\ntematický\r\ntématický\r\ntematičtější\r\ntématičtější\r\ntematika\r\ntématika\r\ntematizace\r\ntématizovatelnější\r\ntématizovatelný\r\ntematizující\r\ntémbr\r\ntémbrový\r\ntémě\r\nTemelín\r\ntemelínský\r\ntemene\r\ntemenní\r\ntemeno\r\ntéměř\r\nTemeš\r\nTemešov\r\ntemešský\r\nTemešvár\r\ntemešvárský\r\ntěmhle\r\ntěmihle\r\nTěmínová\r\nTěmín\r\nTěmínův\r\ntěmito\r\ntemnější\r\ntemněmodrý\r\ntemnění\r\ntemněný\r\ntemnět\r\ntemnice\r\ntemno\r\ntemnota\r\ntemný\r\ntémový\r\ntemperament\r\ntemperamentnější\r\ntemperamentní\r\ntemperatura\r\ntempera\r\ntemperovací\r\ntemperování\r\ntemperovaný\r\ntemperovat\r\ntemperový\r\ntemplářství\r\ntemplář\r\ntemplářův\r\ntempo\r\ntemporalita\r\ntemporálnější\r\ntemporální\r\ntempový\r\nTempus\r\ntěmto\r\ntémuž\r\ntémž\r\ntémže\r\nTemže\r\ntemžský\r\nten\r\ntenata\r\nTencerová\r\nTencer\r\nTencerův\r\ntenčení\r\ntenčený\r\ntenčící\r\ntenčit\r\ntenčí\r\ntendence\r\ntendenčnější\r\ntendenční\r\ntenderizace\r\ntendr\r\ntendrový\r\ntenhle\r\nTenice\r\nteninký\r\ntenisák\r\ntenis\r\nteniska\r\ntenisovější\r\ntenisový\r\ntenista\r\ntenistčin\r\ntenistka\r\ntenistův\r\ntenkostěnný\r\ntenkovrstvý\r\ntenkozobcův\r\ntenkozobec\r\ntenkrát\r\ntenkráte\r\ntenký\r\nTennessee\r\ntennis\r\ntennisový\r\ntenor\r\ntenorista\r\ntenoristův\r\ntenorový\r\ntenorsaxofon\r\ntenorsaxofonista\r\ntenorsaxofonistčin\r\ntenorsaxofonistka\r\ntenorsaxofonistův\r\ntenorsaxofonový\r\ntenorův\r\ntenoučký\r\ntenounký\r\ntensor\r\ntensorový\r\ntento\r\ntentoc\r\ntentočky\r\ntentohlečky\r\ntentok\r\ntentokrát\r\ntentokráte\r\ntenton\r\ntentonc\r\ntentonon\r\ntentononc\r\ntentýž\r\nten\r\ntenze\r\ntenzid\r\ntenzometrický\r\ntenzor\r\ntenzorový\r\nteocentrismus\r\nteodolit\r\nTeodor\r\nTeodorův\r\nteologický\r\nteologičtější\r\nteologie\r\nteolog\r\nteologův\r\nteoložčin\r\nteoložka\r\nteorém\r\nteoretický\r\nteoretiččin\r\nteoretička\r\nteoretičtější\r\nteoretik\r\nteoretikův\r\nteoretizování\r\nteoretizovaný\r\nteoretizovat\r\nteoretizující\r\nteorie\r\ntepající\r\ntepanější\r\ntepání\r\ntepaný\r\ntepat\r\ntepávání\r\ntepávaný\r\ntepávat\r\ntepavější\r\ntepavý\r\ntepcův\r\ntepecký\r\ntepectví\r\ntepec\r\ntepelný\r\ntepelský\r\ntepelský\r\ntepénka\r\ntepenný\r\ntep\r\ntepichový\r\ntepláčcích\r\ntepláčkách\r\ntepláčků\r\ntepláčkům\r\ntepláčky\r\nteplákový\r\ntepláky\r\nteplání\r\nTeplanský\r\nteplárenský\r\nteplárenství\r\nteplárna\r\nteplat\r\nteplávání\r\nteplávat\r\nTeplá\r\nteplejší\r\nTeplice\r\nTeplicko\r\nteplický\r\nTeplička\r\nteplíčko\r\nTeplíková\r\nTeplík\r\nTeplíkův\r\nteplofikace\r\nteplokrevný\r\nteploléčba\r\nteploměr\r\nteploměrný\r\nteploměrový\r\nteplomet\r\nteplomilný\r\nteplo\r\nteplosměnný\r\nteplota\r\nteplotechnika\r\nteplotní\r\nteplotový\r\nteploučko\r\nteploučký\r\nteplounký\r\nteploušský\r\nteploušství\r\nteplouš\r\nteplovod\r\nteplovodní\r\nteplovzdušný\r\ntěpluška\r\nTeplý\r\nteplý\r\ntepna\r\ntepnový\r\ntepot\r\ntepový\r\nteprv\r\nteprve\r\ntepu\r\ntequila\r\nterabajt\r\nterabit\r\nterabitový\r\nterabyte\r\nterabytový\r\nteracový\r\nterakota\r\nterakotový\r\nterapeutčin\r\nterapeutický\r\nterapeutika\r\nterapeutka\r\nterapeut\r\nterapeutův\r\nterapie\r\nterarijní\r\nterarista\r\nteraristčin\r\nteraristický\r\nterarističtější\r\nteraristika\r\nteraristka\r\nteraristův\r\nterárium\r\nterasa\r\nteráska\r\nterasování\r\nterasovitý\r\nterasový\r\nterbiový\r\nterbium\r\nTerbiž\r\ntercdecima\r\nterciální\r\nterciánčin\r\nterciánka\r\ntercián\r\nterciánův\r\nterciární\r\nterciářčin\r\nterciářka\r\nterciář\r\nterciářův\r\nterciér\r\ntercie\r\nterciový\r\nterčík\r\nterčíkový\r\nTerčin\r\nTerčová\r\nterčovitý\r\nterčový\r\nterč\r\nTerč\r\nTerčův\r\ntereftalový\r\nterén\r\nterénní\r\nterénový\r\nterestrický\r\nTerešov\r\nterešovský\r\nTereza\r\nTerezčin\r\ntereziánský\r\nTereziččin\r\nTerezička\r\nTerezie\r\nTereziin\r\nTerezín\r\nterezínský\r\nterezínský\r\nTerezin\r\nTerezka\r\nteriér\r\nteriérův\r\nTerinčin\r\nTerinka\r\nteritoriální\r\nteritorium\r\nTerka\r\ntěrka\r\nTěrlicko\r\ntermální\r\ntermický\r\ntermika\r\nterminál\r\nterminálie\r\nterminální\r\nterminálový\r\nterminátor\r\ntermín\r\nterminologický\r\nterminologičtější\r\nterminologie\r\nterminolog\r\nterminologův\r\nterminoložčin\r\nterminoložka\r\ntermínovaný\r\ntermínovat\r\ntermínovník\r\ntermínový\r\nterminus\r\ntermionický\r\ntermioničtější\r\ntermistor\r\ntermistorový\r\ntermitiště\r\ntermití\r\ntermit\r\ntermitův\r\ntermočlánek\r\ntermočlánkový\r\ntermodynamický\r\ntermodynamičtější\r\ntermodynamika\r\ntermoelasticita\r\ntermoelastický\r\ntermoelastičtější\r\ntermoelektrický\r\ntermoelektričtější\r\ntermoelektrotechnika\r\ntermoelektřina\r\ntermogalvanický\r\ntermografický\r\ntermografičtější\r\ntermochemický\r\ntermochemie\r\ntermoizolační\r\ntermojaderný\r\ntermokopírovací\r\ntermokopírování\r\ntermokopírovaný\r\ntermolepidlo\r\ntermomagnetický\r\ntermomagnetičtější\r\ntermomechanický\r\ntermomechaničtější\r\ntermomechanika\r\ntermometrie\r\ntermonádoba\r\ntermonukleární\r\ntermoplast\r\ntermoplastický\r\ntermoplastický\r\ntermoplastičtější\r\ntermoregulace\r\ntermoregulační\r\ntermosenzitivní\r\ntermoset\r\ntermosetový\r\ntermoska\r\ntermostabilní\r\ntermostat\r\ntermostatický\r\ntermostatičtější\r\ntermostatika\r\ntermostatovaný\r\nternální\r\nternární\r\nterno\r\nteror\r\nterorismus\r\nterorista\r\nteroristčin\r\nteroristický\r\nterorističtější\r\nteroristka\r\nteroristův\r\nterorizování\r\nterorizovaný\r\nterorizovat\r\nterorizovávat\r\nterorizující\r\ntérový\r\nterpen\r\nterpenický\r\nterpeničtější\r\nterpenoid\r\nterpentýn\r\nterpentýnový\r\nterrible\r\nTerrichová\r\nTerrich\r\nTerrichův\r\nTerst\r\nterstský\r\nterstský\r\nTeršlová\r\nTeršl\r\nTeršlův\r\ntesák\r\nTesáková\r\nTesák\r\nTesákův\r\ntesanější\r\ntesání\r\ntesaný\r\nTesárek\r\nTesárková\r\nTesárkův\r\ntesařčin\r\ntesaření\r\nTesaříková\r\ntesaříkovitý\r\ntesařík\r\nTesařík\r\nTesaříkův\r\ntesaříkův\r\ntesařina\r\ntesařit\r\ntesařka\r\nTesařová\r\ntesařský\r\ntesařství\r\ntesař\r\nTesař\r\nTesařův\r\ntesařův\r\ntesat\r\ntesávání\r\ntesávaný\r\ntesávat\r\ntesil\r\ntesilový\r\nTeska\r\ntesklivější\r\ntesklivý\r\nteskněji\r\ntesknější\r\ntesknění\r\ntesknící\r\ntesknit\r\ntesknivější\r\ntesknivý\r\ntesknota\r\nteskný\r\nTesková\r\nTeskův\r\nTesla\r\nTeslův\r\ntěsnání\r\ntěsnaný\r\ntěsnat\r\ntěsnější\r\ntěsnění\r\ntěsněný\r\nTesnerová\r\nTesner\r\nTesnerův\r\ntěsnicí\r\ntěsnící\r\ntěsnit\r\nTěsnohlídek\r\nTěsnohlídková\r\nTěsnohlídkův\r\ntěsnopiscův\r\ntěsnopisec\r\ntěsnopis\r\ntěsnopisný\r\ntěsnostní\r\ntěsný\r\ntesselace\r\ntestace\r\ntestační\r\ntestament\r\ntester\r\ntesterův\r\ntest\r\ntěstíčko\r\ntesto\r\ntěsto\r\ntestosteron\r\ntestovací\r\ntestovanější\r\ntestování\r\ntestovaný\r\ntestovat\r\ntestovatelnější\r\ntestovatelný\r\ntestovávání\r\ntestovávaný\r\ntestovávat\r\ntěstovina\r\ntěstovinový\r\ntěstovitý\r\ntestový\r\ntěstový\r\ntestující\r\ntěšení\r\nTěšetice\r\ntěšetický\r\ntěšící\r\nTěšina\r\nTěšín\r\nTěšinová\r\nTěšínsko\r\nTěšínský\r\ntěšínský\r\nTěšinův\r\ntěšit\r\ntěšitelčin\r\ntěšitelka\r\nTěšitelová\r\nTěšitel\r\ntěšitel\r\nTěšitelův\r\ntěšitelův\r\nTěškov\r\ntěškovský\r\nTešnarová\r\nTešnar\r\nTešnarův\r\nTěšovice\r\ntěšovický\r\ntetan\r\ntetanový\r\ntetanus\r\nteta\r\ntetelení\r\ntetelící\r\ntetelit\r\ntetelivý\r\ntetička\r\ntetinka\r\nTetín\r\ntetínský\r\ntetin\r\ntětí\r\ntětiva\r\ntětivový\r\ntetka\r\ntéto\r\ntetovací\r\ntetování\r\ntetovaný\r\ntetovat\r\nTetov\r\ntetovský\r\ntetraboritan\r\ntetracyklin\r\ntetracyklinový\r\ntetraedrický\r\ntetraethylolovo\r\ntetrahydrát\r\ntetrahydrogenkřemičitý\r\ntetrachlormethan\r\ntetrachlorozlatitý\r\ntetrakarbonyl\r\ntetralogie\r\ntetra\r\ntetroda\r\ntetřeví\r\ntetřev\r\ntetřevův\r\ntetřívek\r\ntetřívkův\r\nTeX\r\nTexas\r\ntexaský\r\ntexasky\r\nTeXem\r\nTexlová\r\nTexl\r\nTexlův\r\nTeXový\r\ntextace\r\ntextařčin\r\ntextařka\r\ntextařský\r\ntextařství\r\ntextař\r\ntextařův\r\ntextém\r\ntext\r\ntextilaččin\r\ntextilačka\r\ntextilák\r\ntextilákův\r\ntextilářčin\r\ntextilářka\r\ntextil\r\ntextilie\r\ntextilka\r\ntextilnictví\r\ntextilní\r\ntextologický\r\ntextologie\r\ntextolog\r\ntextologův\r\ntextoložčin\r\ntextoložka\r\ntextovat\r\ntextový\r\ntextura\r\nTeXu\r\ntezaurace\r\ntezaurovat\r\ntezaurus\r\nteze\r\ntéze\r\ntezovitější\r\ntezovitý\r\ntéž\r\ntěžařský\r\ntěžař\r\ntěžařův\r\ntěžba\r\ntéže\r\ntěžebna\r\ntěžební\r\ntěžení\r\ntěžený\r\ntěžící\r\ntěžisko\r\ntěžiště\r\ntěžit\r\ntěžitelnější\r\ntěžítko\r\ntěžkání\r\ntěžkat\r\ntěžkávání\r\ntěžkávaný\r\ntěžkávat\r\ntěžknout\r\ntěžknutí\r\ntěžkomyslnější\r\ntěžkomyslný\r\ntěžkoobrobitelnější\r\ntěžkooděncův\r\ntěžkooděnec\r\ntěžkooděný\r\ntěžkopádnější\r\ntěžkopádnění\r\ntěžkopádnět\r\ntěžkopádný\r\ntěžkotonážní\r\ntěžkovodní\r\ntěžký\r\ntěžnice\r\ntěžní\r\ntěžší\r\ntf\r\nTFT\r\ntg\r\nTGV\r\nThajcův\r\nThajčin\r\nThajec\r\nThajka\r\nThajsko\r\nthajský\r\nthajština\r\nThákurová\r\nThákur\r\nThákurův\r\nthalamus\r\nthaliový\r\nthalitý\r\nthalium\r\nthalný\r\nThálová\r\nThál\r\nThálův\r\nThámová\r\nThám\r\nThámův\r\nthatcherismus\r\nthatcherista\r\nthatcheristčin\r\nthatcheristický\r\nthatcheristka\r\nthatcheristův\r\nthaumatin\r\nThDr\r\nthé\r\ntheatin\r\nthébský\r\nthébský\r\nThéby\r\ntheismus\r\ntheodolit\r\ntheologický\r\ntheologie\r\ntheolog\r\ntheologův\r\ntheoložčin\r\ntheoložka\r\ntheosofčin\r\ntheosofický\r\ntheosofka\r\ntherapeutický\r\nThesálie\r\nthesaurizování\r\nthesaurus\r\nthese\r\ntheta\r\nthiabendazol\r\nthimin\r\nthiminový\r\nthiodipropionát\r\nthiofosgen\r\nthiokyanatan\r\nthiol\r\nthiomočovina\r\nthiopropionový\r\nthiosíran\r\nThomasová\r\nThomas\r\nThomasův\r\nThomová\r\nThom\r\nThomsonová\r\nThomson\r\nThomsonův\r\nThomův\r\nthoriový\r\nthorium\r\nthrácký\r\nthráčtina\r\nThrákie\r\nthrashmetalový\r\nthread\r\nthriller\r\nthuliový\r\nthulium\r\nThunovský\r\nThun\r\nThunův\r\nThurgau\r\nThurn\r\nThurnův\r\nthymidin\r\nTchaj\r\ntchajvanský\r\ntchán\r\ntchánův\r\ntchoří\r\nTchořovice\r\ntchořovický\r\ntchoř\r\ntchořův\r\ntchyně\r\nti\r\ntiára\r\nTiba\r\nTibera\r\ntiberský\r\nTibeťančin\r\nTibeťanka\r\nTibeťan\r\nTibeťanův\r\nTibet\r\ntibetobarmský\r\ntibetočínský\r\ntibetský\r\ntibetština\r\ntibie\r\nTibor\r\nTiborův\r\nTigridová\r\nTigrid\r\nTigridův\r\ntíha\r\ntihle\r\ntíhnoucí\r\ntíhnout\r\ntíhnutí\r\ntíhnutý\r\ntíhový\r\nTicháček\r\nTicháčková\r\nTicháčkův\r\nTichá\r\ntichnout\r\nTichomoří\r\ntichomoří\r\ntichomořský\r\ntichomořský\r\nticho\r\ntichošlápek\r\ntichošlápkův\r\ntichošlápství\r\nTichota\r\nTichotová\r\nTichotův\r\ntichoučký\r\ntichoulinký\r\ntichounký\r\nTichov\r\ntichovský\r\nTichý\r\ntichý\r\ntik\r\ntikající\r\nTikalová\r\nTikal\r\nTikalův\r\ntikání\r\ntikat\r\ntikávání\r\ntikávat\r\ntiket\r\ntiketový\r\ntik\r\ntikot\r\ntikový\r\ntiktak\r\ntilda\r\nTilerová\r\nTiler\r\nTilerův\r\ntílko\r\ntím\r\ntimbre\r\ntímhle\r\nTimor\r\ntimorský\r\nTimořančin\r\nTimořanka\r\nTimořan\r\nTimořanův\r\nTimoteus\r\nTimoteův\r\ntímtéž\r\ntímto\r\ntinktura\r\nTintěra\r\nTintěrová\r\nTintěrův\r\ntipec\r\ntípek\r\ntip\r\nTipka\r\nTipková\r\nTipkův\r\ntiplice\r\ntipnout\r\ntipnutí\r\ntipnutý\r\ntipovací\r\ntipování\r\ntipovaný\r\ntipovat\r\ntipující\r\nTIR\r\ntiráda\r\nTirana\r\ntiranský\r\ntirážní\r\ntiráž\r\ntiré\r\ntiret\r\nTisá\r\nTisa\r\ntíseň\r\ntis\r\ntisícero\r\ntisíceronásobný\r\ntisícery\r\ntisícerý\r\ntisícibodový\r\ntisícidolarový\r\ntisícihektarový\r\ntisícihlavý\r\ntisícikilometrový\r\ntisícikoruna\r\ntisícikorunový\r\ntisícikusový\r\ntisicíletí\r\ntisíciletí\r\ntisíciletý\r\ntísiciletý\r\ntisícilitrový\r\ntisícilůžkový\r\ntisícimarkový\r\ntisícimegawattový\r\ntisícimetrový\r\ntisícimílový\r\ntisícinásobek\r\ntisícinásobný\r\ntisícina\r\ntisícinový\r\ntisícistránkový\r\ntisícitunový\r\ntisíciwattový\r\ntisící\r\ntisící\r\ntisícka\r\ntisíckrát\r\ntisícovka\r\ntisícový\r\ntisíc\r\ntiskací\r\ntiskárenský\r\ntiskárna\r\ntiskárnička\r\ntiskařčin\r\ntiskařka\r\ntiskařský\r\ntiskařství\r\ntiskař\r\ntiskařův\r\ntiskátko\r\ntisk\r\ntisknoucí\r\ntisknout\r\ntisknutelný\r\ntisknutí\r\ntisknutý\r\ntisknutý\r\ntiskopis\r\ntiskopisní\r\ntiskopisný\r\ntiskovina\r\ntiskovka\r\ntiskový\r\ntiský\r\nTismenický\r\nTismice\r\ntismický\r\ntísnění\r\ntísněný\r\ntísnící\r\ntísnit\r\ntísnivější\r\ntísnivý\r\ntísňový\r\nTisová\r\ntisovecký\r\nTisovec\r\ntisovský\r\ntisový\r\ntisský\r\ntišeji\r\ntišení\r\ntišený\r\nTišerová\r\nTišer\r\nTišerův\r\ntišící\r\ntišina\r\ntišit\r\ntišivější\r\ntišivý\r\nTišnov\r\nTišnovsko\r\ntišnovský\r\ntišský\r\ntišší\r\ntištění\r\ntištěný\r\nTištín\r\ntištínský\r\ntitánčin\r\ntitan\r\nTitanic\r\ntitaničitan\r\ntitaničitý\r\ntitaničný\r\nTitanik\r\ntitanismus\r\ntitanistický\r\ntitanit\r\ntitanitový\r\ntitanitý\r\ntitánka\r\ntitanový\r\ntitán\r\nTitán\r\ntitánský\r\ntitánštější\r\nTitánův\r\ntitánův\r\ntitěrný\r\ntít\r\ntitíž\r\nTitka\r\nTitková\r\nTitkův\r\ntito\r\nTitograd\r\ntitogradský\r\ntitoismus\r\ntitrace\r\ntitrační\r\ntitr\r\ntitrovaný\r\ntitrovat\r\ntitulatura\r\ntitulek\r\ntitul\r\ntitulkovací\r\ntitulkování\r\ntitulkovaný\r\ntitulkovat\r\ntitulkovávání\r\ntitulkovávaný\r\ntitulkovávat\r\ntitulkový\r\ntitulní\r\ntitulování\r\ntitulovaný\r\ntitulovat\r\ntitulovávání\r\ntitulovávaný\r\ntitulovávat\r\ntitulový\r\ntitulu\r\nTitzová\r\nTitz\r\nTitzův\r\ntixotropní\r\ntizianový\r\ntíž\r\nTížek\r\ntíženější\r\ntížení\r\ntížený\r\ntíže\r\ntížící\r\ntížit\r\ntíživější\r\ntíživý\r\ntížka\r\nTížková\r\nTížkův\r\ntížnice\r\nTJ\r\ntj\r\ntjumeňský\r\ntkací\r\nTkačíková\r\nTkačík\r\nTkačíkův\r\nTkáčová\r\nTkáč\r\nTkáčův\r\nTkadlcová\r\nTkadlcův\r\nTkadlec\r\ntkadlec\r\nTkadlece\r\nTkadlecech\r\nTkadlecem\r\nTkadleci\r\nTkadlecová\r\nTkadlecové\r\nTkadlecovi\r\nTkadleců\r\nTkadlecům\r\nTkadlecův\r\nTkadlecy\r\ntkadleččin\r\nTkadleček\r\ntkadlečka\r\nTkadlečková\r\nTkadlečkův\r\ntkadlena\r\ntkadlenin\r\ntkalce\r\ntkalcem\r\ntkalci\r\ntkalcích\r\ntkalcovi\r\ntkalcovna\r\ntkalcovský\r\ntkalcovství\r\ntkalců\r\ntkalcům\r\ntkalcův\r\ntkalče\r\ntkalec\r\ntkaloun\r\ntkanice\r\ntkanička\r\ntkanina\r\ntkaninový\r\ntkaní\r\ntkanivo\r\ntkáňový\r\ntkáňový\r\ntkaný\r\ntkáň\r\ntkát\r\ntklivější\r\ntklivý\r\ntknout\r\ntknutí\r\ntknutý\r\ntkvění\r\ntkvět\r\ntkvící\r\ntkvít\r\ntlačenice\r\ntlačení\r\ntlačenka\r\ntlačenkový\r\ntlačený\r\ntlačící\r\ntlačit\r\ntlačítko\r\ntlačítkový\r\ntlačka\r\ntlačkovací\r\ntlačkování\r\ntlačkovaný\r\ntlačkovat\r\ntlačný\r\ntlachající\r\ntlachalčin\r\ntlachalka\r\ntlachání\r\ntlachaný\r\ntlachat\r\ntlachavější\r\ntlachavý\r\ntlach\r\ntlak\r\ntlakoměr\r\ntlakoměrný\r\ntlakový\r\ntlama\r\ntlamička\r\ntlampač\r\nTlapáková\r\nTlapák\r\nTlapákův\r\ntlapat\r\ntlapa\r\ntlapička\r\ntlapkání\r\ntlapkat\r\ntlapka\r\ntlápnout\r\nTláskalová\r\nTláskal\r\nTláskalův\r\ntláskání\r\ntláskat\r\ntlející\r\ntlejivka\r\ntlení\r\ntleskající\r\ntleskání\r\ntleskaný\r\ntleskat\r\ntlesknout\r\ntlít\r\ntlivý\r\ntlouct\r\ntloukávanější\r\ntloukávání\r\ntloukávaný\r\ntloukávat\r\ntloustnout\r\ntloustnutí\r\ntlouštík\r\ntlouštíkův\r\ntloušťka\r\ntloušťkoměr\r\ntloušťkový\r\ntloušť\r\ntloušťův\r\ntlučenější\r\ntlučení\r\ntlučenský\r\ntlučený\r\ntlučhuba\r\ntlučhubův\r\ntlučka\r\nTlučná\r\ntlukačka\r\ntlukadlo\r\ntlukot\r\ntlukoucí\r\nTlumačov\r\ntlumačovský\r\ntlumenější\r\ntlumení\r\ntlumený\r\ntlumicí\r\ntlumící\r\ntlumičový\r\ntlumič\r\ntlumit\r\ntlumitelný\r\ntlumítko\r\ntlumivější\r\ntlumivka\r\ntlumivý\r\ntlumočenější\r\ntlumočení\r\ntlumočený\r\ntlumočící\r\ntlumočit\r\ntlumočitelnější\r\ntlumočitelný\r\ntlumočnice\r\ntlumočnický\r\ntlumočnictví\r\ntlumočničin\r\ntlumočničtější\r\ntlumočník\r\ntlumočníkův\r\ntlumok\r\ntlupa\r\ntlustěji\r\ntlustější\r\nTlustice\r\ntlustický\r\ntlusťoch\r\ntlusťochův\r\ntlustokožcův\r\ntlustokožec\r\ntlustoocasý\r\ntlustostěnný\r\ntlusťoučký\r\ntlusťounký\r\ntlustší\r\nTlustý\r\ntlustý\r\nTmáň\r\ntmářčin\r\ntmářka\r\ntmářství\r\ntmář\r\ntmářův\r\ntmavější\r\ntmavění\r\ntmavět\r\ntmavnout\r\ntmavnutí\r\ntmavočerný\r\ntmavočervený\r\ntmavofialový\r\ntmavohnědý\r\ntmavokaštanový\r\ntmavomodrý\r\ntmavomodřejší\r\ntmavošedý\r\ntmavovláska\r\ntmavovlasý\r\ntmavozelený\r\ntmavší\r\ntmavý\r\ntma\r\ntmelení\r\ntmelený\r\ntmel\r\ntmelící\r\ntmelit\r\ntmelivý\r\ntmělka\r\ntmelový\r\ntmoucí\r\ntnout\r\nTNT\r\ntnu\r\ntnutí\r\nto\r\ntoaletářčin\r\ntoaletářka\r\ntoaleta\r\ntoaletka\r\ntoaletní\r\ntoast\r\ntoastovaný\r\ntoastový\r\nTobago\r\ntobě\r\nTobiášová\r\nTobiáš\r\nTobiášův\r\nTobiška\r\nTobišková\r\nTobiškův\r\ntobogan\r\ntobolka\r\ntočení\r\ntočený\r\ntočící\r\ntočit\r\ntočitější\r\ntočitý\r\ntočivý\r\ntočka\r\ntočna\r\ntočnický\r\nTočník\r\nTogančin\r\nToganka\r\nTogan\r\nToganův\r\ntóga\r\nTogo\r\ntogský\r\ntohle\r\ntoho\r\ntohohle\r\ntohoto\r\ntocharský\r\ntocharština\r\nTochovice\r\ntochovický\r\ntokající\r\ntokajský\r\ntokamak\r\ntokání\r\ntokaniště\r\ntokat\r\nTokelau\r\ntokelauský\r\ntok\r\ntokijský\r\nTokio\r\ntokoferol\r\nTókólyová\r\nTókólyův\r\nTókóly\r\ntokový\r\ntolar\r\ntolarový\r\nToledo\r\ntoledský\r\ntolerance\r\ntoleranční\r\ntolerantnější\r\ntolerantní\r\ntolerování\r\ntolerovaný\r\ntolerovat\r\ntolerovatelnější\r\ntolerovávání\r\ntolerovávaný\r\ntolerovávat\r\ntolerující\r\ntolik\r\ntolika\r\ntolikanásobný\r\ntolikátý\r\ntolikátý\r\ntolikeronásobný\r\ntolikerý\r\ntolikhle\r\ntoliko\r\ntolikrát\r\ntolikráte\r\ntolkienista\r\ntolkienistčin\r\ntolkienistka\r\ntolkienistův\r\nTollnerová\r\nTollner\r\nTollnerův\r\nTolstoj\r\ntolstolobec\r\ntolstolobik\r\ntolstolobikův\r\ntoluen\r\ntoluenovější\r\ntoluenový\r\ntomahavk\r\nTománek\r\nTomanica\r\nTomanicová\r\nTomanicův\r\nTománková\r\nTománkův\r\nTomanová\r\nToman\r\nTomanův\r\nToma\r\nTomaschová\r\nTomasch\r\nTomaschův\r\nTomáš\r\nTomášek\r\nTomášková\r\nTomáškův\r\nTomášová\r\nTomašovský\r\nTomáš\r\nTomášův\r\ntomato\r\ntomatový\r\ntombola\r\nTomeček\r\nTomečková\r\nTomečkův\r\nTomek\r\nTomešek\r\nTomešková\r\nTomeškův\r\nTomešová\r\nTomeš\r\nTomešův\r\ntomhle\r\nTomíček\r\nTomíčková\r\nTomíčkův\r\nTomičová\r\nTomič\r\nTomičův\r\nTominová\r\nTomin\r\nTominův\r\nTomka\r\nTomková\r\nTomkův\r\ntomografie\r\nTomová\r\nTomsa\r\nTomsová\r\nTomsův\r\nTomše\r\nTomšem\r\nTomši\r\nTomších\r\nTomšíková\r\nTomšík\r\nTomšíkův\r\nTomšová\r\nTomšové\r\nTomšovi\r\nTomšů\r\nTomšům\r\nTomšův\r\ntomtéž\r\ntomto\r\ntomu\r\ntomuhle\r\ntomuto\r\nTomův\r\ntonalita\r\ntonální\r\ntonáž\r\nTončin\r\nTonda\r\nTondrová\r\nTondr\r\nTondrův\r\nTondův\r\ntoner\r\nTonga\r\nTongančin\r\nTonganka\r\nTongan\r\nTonganův\r\ntón\r\ntónický\r\nToniččin\r\nToníček\r\nTonička\r\nToníčkův\r\ntoničtější\r\ntónika\r\nToník\r\ntonikum\r\nToníkův\r\ntónina\r\ntonizování\r\ntonizovaný\r\ntonizovat\r\ntonizující\r\nTonka\r\nTonnerová\r\nTonner\r\nTonnerův\r\ntonometr\r\ntonoucí\r\ntonout\r\ntónovací\r\ntónovač\r\ntónování\r\ntónovaný\r\ntónovat\r\ntónový\r\ntonsilitis\r\ntónující\r\ntonus\r\ntonutí\r\ntonzura\r\nTonžančin\r\nTonžanka\r\nTonžan\r\nTonžanův\r\ntonžský\r\ntopas\r\ntopaz\r\ntopenářský\r\ntopenářství\r\ntopenář\r\ntopenářův\r\ntopenější\r\ntopení\r\ntopeniště\r\ntopený\r\nTöpferová\r\nTöpfer\r\nTöpferův\r\ntopfinalista\r\ntopfinalistčin\r\ntopfinalistka\r\ntopfinalistův\r\ntopící\r\ntopiččin\r\ntopička\r\ntopičský\r\ntopičštější\r\ntopič\r\ntopičův\r\ntopidlo\r\ntopikalizace\r\ntopika\r\ntopinambur\r\nTopinka\r\ntopinka\r\ntopinkovač\r\nTopinková\r\ntopinkový\r\nTopinkův\r\ntopit\r\ntopitelnější\r\ntopitelný\r\ntopivo\r\ntopmodelčin\r\ntopmodelka\r\ntopný\r\ntopocentrický\r\ntopografický\r\ntopografičtější\r\ntopografie\r\ntopolenský\r\ntopol\r\nTopolná\r\ntopologický\r\ntopologičtější\r\ntopologie\r\ntopologizace\r\ntopolog\r\ntopologův\r\nTopolová\r\ntopolovější\r\ntopolový\r\ntopoložčin\r\ntopoložka\r\nTopol\r\nTopolův\r\ntoponomastika\r\ntoponymie\r\ntoponymum\r\ntopor\r\ntoporný\r\ntopoření\r\ntopořený\r\ntopořit\r\ntopořivější\r\ntopořivý\r\ntopůrko\r\ntóra\r\ntorba\r\nTordieuův\r\ntoreador\r\ntoreadorův\r\ntorero\r\ntorerův\r\nTorgava\r\ntorgavský\r\ntorický\r\nTorino\r\ntorkretování\r\ntorkretovat\r\ntornádo\r\ntornádový\r\ntornátor\r\ntorna\r\ntoroidální\r\nToronto\r\ntorontský\r\ntorpédoborec\r\ntorpédo\r\ntorpédování\r\ntorpédovaný\r\ntorpedovat\r\ntorpédovat\r\ntorpédovka\r\ntorpédový\r\ntorr\r\ntorse\r\ntorsní\r\ntorso\r\nTorstenssonův\r\ntortura\r\ntoruňský\r\nToruň\r\ntorus\r\ntorzálnější\r\ntorze\r\ntorzní\r\ntorzo\r\ntorzovitější\r\ntorzovitý\r\nTosca\r\nToskánsko\r\ntoskánský\r\ntoskánština\r\nTošovský\r\ntotalismus\r\ntotalitarismus\r\ntotalitaristický\r\ntotalitárnější\r\ntotalita\r\ntotalitnější\r\ntotalitní\r\ntotalizace\r\ntotalizátor\r\ntotalizátorový\r\ntotalizovat\r\ntotalizující\r\ntotálnější\r\ntotální\r\ntotem\r\ntotemismus\r\ntotemistický\r\ntotemový\r\ntotéž\r\ntotiž\r\ntoto\r\ntotožný\r\ntoufar\r\nToufarová\r\nToufar\r\nToufarův\r\ntouha\r\ntouhle\r\ntoulající\r\ntoulání\r\ntoulat\r\ntoulávat\r\ntoulavější\r\ntoulavý\r\ntoulec\r\ntoulka\r\nTousa\r\nTousová\r\ntoust\r\ntoustovač\r\ntoustový\r\nTousův\r\nToušek\r\nToušková\r\nTouškov\r\ntouškovský\r\nTouškův\r\ntouš\r\ntoutéž\r\ntouto\r\ntouž\r\ntouže\r\ntoužebný\r\ntoužení\r\ntoužený\r\nToužetín\r\ntoužetínský\r\ntoužící\r\nToužilová\r\nToužil\r\nToužilův\r\nToužim\r\nToužimsko\r\nToužimský\r\ntoužimský\r\ntoužit\r\nTovačov\r\ntovačovský\r\ntovárenský\r\ntovar\r\ntovárna\r\ntovárnička\r\ntovárník\r\ntovárníkův\r\ntovární\r\ntovaryšský\r\ntovaryšstvo\r\ntovaryš\r\ntovaryšův\r\ntoxémie\r\ntoxicita\r\ntoxický\r\ntoxičtější\r\ntoxikologický\r\ntoxikologie\r\ntoxikolog\r\ntoxikologův\r\ntoxikoložčin\r\ntoxikoložka\r\ntoxikomančin\r\ntoxikomanie\r\ntoxikománie\r\ntoxikomanka\r\ntoxikoman\r\ntoxikomanův\r\ntoxin\r\ntoxinogenní\r\ntoxoplasmosa\r\ntoxoplazmóza\r\ntož\r\nTožančin\r\nTožanka\r\nTožan\r\nTožanův\r\ntrabant\r\ntrabl\r\ntracení\r\ntracený\r\ntračník\r\ntradá\r\ntradeskancionalismus\r\ntradeskancionalista\r\ntradeskancionalistčin\r\ntradeskancionalistka\r\ntradeskancionalistův\r\ntradice\r\ntradicionalismus\r\ntradicionalista\r\ntradicionalistčin\r\ntradicionalistický\r\ntradicionalističtější\r\ntradicionalistka\r\ntradicionalistův\r\ntradicionálnější\r\ntradičnější\r\ntradiční\r\ntradovanější\r\ntradování\r\ntradovaný\r\ntradovat\r\ntradující\r\ntrafikantčin\r\ntrafikantka\r\ntrafikant\r\ntrafikantův\r\ntrafika\r\ntrafo\r\ntrafostanice\r\ntragant\r\ntragédčin\r\ntragedie\r\ntragédie\r\ntragédka\r\ntragéd\r\ntragédův\r\ntragický\r\ntragičtější\r\ntragika\r\ntragikomedie\r\ntragikomický\r\ntragikomičtější\r\ntragikomika\r\ntragismus\r\ntracheostomie\r\ntrachom\r\ntrachyt\r\ntrachytový\r\ntrajda\r\ntrajekt\r\ntrajektorie\r\ntrajektový\r\ntrakař\r\ntrakce\r\ntrakční\r\ntraktát\r\ntraktátový\r\ntrakt\r\ntraktor\r\ntraktorista\r\ntraktoristčin\r\ntraktoristka\r\ntraktoristův\r\ntraktorka\r\ntraktorový\r\ntraktovat\r\ntralala\r\ntrambusový\r\ntrámec\r\ntrámeček\r\ntrámek\r\ntrám\r\nTramín\r\ntrámoví\r\ntrámový\r\ntramping\r\ntrampink\r\ntrampolína\r\ntrampota\r\ntrampování\r\ntrampovaný\r\ntrampovat\r\ntrampový\r\ntramp\r\ntrampský\r\ntrampštější\r\ntrampův\r\ntramtadá\r\ntramtadam\r\ntramtará\r\ntramtárie\r\ntramvajácký\r\ntramvajaččin\r\ntramvajačka\r\ntramvaják\r\ntramvajákův\r\ntramvajenka\r\ntramvajka\r\ntramvajový\r\ntramvaj\r\ntransakce\r\ntransakční\r\ntransatlantický\r\ntransceiver\r\ntranscendentalismus\r\ntranscendentalista\r\ntranscendentalistčin\r\ntranscendentalistka\r\ntranscendentalistův\r\ntranscendentálnější\r\ntranscendentální\r\ntranscendentnější\r\ntranscendentní\r\ntranscendující\r\ntransduktor\r\ntransevropský\r\ntransferasa\r\ntransfer\r\ntransferní\r\ntransferovat\r\ntransferový\r\ntransfinitní\r\ntransfokátor\r\ntransformace\r\ntransformační\r\ntransformátor\r\ntransformátorový\r\ntransformování\r\ntransformovaný\r\ntransformovat\r\ntransformovatelnější\r\ntransformovávat\r\ntransformující\r\ntransfuze\r\ntransfúze\r\ntransfuzní\r\ntransfúzní\r\nTransgas\r\ntransgenní\r\ntrans\r\ntransistor\r\ntransistorový\r\ntransit\r\ntransitivum\r\ntransitní\r\ntransjunkce\r\ntranskontinentální\r\ntranskribování\r\ntranskribovaný\r\ntranskribovat\r\ntranskripce\r\ntranskripční\r\ntranskrystalický\r\ntranskulturalita\r\ntranslace\r\ntranslační\r\nTranslajtanie\r\ntranslátor\r\ntransliterace\r\ntransmise\r\ntransmisivita\r\ntransmisní\r\ntransmutace\r\ntransmutační\r\ntransmutování\r\ntransmutovaný\r\ntransmutovat\r\ntransnacionální\r\ntransoceánský\r\ntransparence\r\ntransparent\r\ntransparentnější\r\ntransparentní\r\ntranspersonalista\r\ntranspersonalistčin\r\ntranspersonalistka\r\ntranspersonalistův\r\ntranspersonalita\r\ntranspersonální\r\ntransplantace\r\ntransplantační\r\ntransplantát\r\ntransplantologický\r\ntransplantologie\r\ntransplantolog\r\ntransplantologův\r\ntransplantoložčin\r\ntransplantoložka\r\ntransplantování\r\ntransplantovaný\r\ntransplantovat\r\ntransponování\r\ntransponovaný\r\ntransponovat\r\nTransporta\r\ntransportér\r\ntransportérový\r\ntransport\r\ntransportní\r\ntransportovanější\r\ntransportování\r\ntransportovaný\r\ntransportovat\r\ntransportovávání\r\ntransportovávaný\r\ntransportovávat\r\ntranspozice\r\ntranspoziční\r\ntranssexualismus\r\ntranssexualistický\r\ntranssexualita\r\ntranssexuálka\r\ntranssexuální\r\ntranssexuál\r\ntranssexuálův\r\ntranssubjektivní\r\ntransuran\r\ntransuranový\r\ntransverzální\r\ntransvestita\r\ntransvestitický\r\ntransvestitismus\r\ntransvestitův\r\ntranverza\r\ntranzient\r\ntranzistoráček\r\ntranzistor\r\ntranzistorový\r\ntranzit\r\ntranzitivita\r\ntranzitivní\r\ntranzitivum\r\ntranzitní\r\ntranzitující\r\ntrapas\r\ntrápení\r\ntrápený\r\ntrapézový\r\ntrap\r\ntrápící\r\ntrapista\r\ntrapistčin\r\ntrapistka\r\ntrapistův\r\ntrápit\r\ntrapnější\r\ntrapno\r\ntrapný\r\ntrasa\r\ntrasérský\r\ntrasologický\r\ntrasologie\r\ntrasolog\r\ntrasologův\r\ntrasoložčin\r\ntrasoložka\r\ntrasovací\r\ntrasovanější\r\ntrasování\r\ntrasovaný\r\ntrasovat\r\ntrasový\r\ntrast\r\ntrata\r\ntratící\r\ntratit\r\ntrativod\r\ntrativodka\r\ntrativodní\r\ntraťmistr\r\ntraťmistrův\r\ntratoliště\r\ntratorie\r\ntraťový\r\ntrať\r\ntrauma\r\ntraumatický\r\ntraumatisování\r\ntraumatisovaný\r\ntraumatisovat\r\ntraumatizace\r\ntraumatizování\r\ntraumatizovaný\r\ntraumatizovat\r\ntraumatizující\r\ntraumatologický\r\ntraumatologie\r\ntraumatolog\r\ntraumatologův\r\ntraumatoložčin\r\ntraumatoložka\r\ntrav\r\ntravařka\r\ntráva\r\ntrávenina\r\ntrávení\r\ntrávený\r\ntraversovat\r\ntravertin\r\ntravertinový\r\ntraverza\r\ntraverzovat\r\ntraverzový\r\ntrávicí\r\ntrávící\r\ntraviččin\r\ntravička\r\ntravičský\r\ntravičství\r\ntravič\r\ntravičův\r\ntravinářčin\r\ntravinářka\r\ntravinářství\r\ntravinář\r\ntravinářův\r\ntravina\r\ntrávit\r\ntrávívat\r\ntravka\r\ntravnatější\r\ntravnatý\r\ntrávnice\r\nTrávníček\r\ntrávníček\r\ntrávnička\r\nTrávníčková\r\ntrávníčkový\r\nTrávníčkův\r\ntrávník\r\ntrávníkový\r\ntravní\r\ntrávní\r\ntravou\r\ntrávový\r\ntra\r\ntrčení\r\ntrčet\r\ntrčící\r\nTrčka\r\nTrčková\r\ntrčkovský\r\nTrčkův\r\ntrdlice\r\ntrdliště\r\ntrdlo\r\nTrebišov\r\ntrebišovský\r\ntreebank\r\ntrefa\r\ntrefení\r\ntrefený\r\nTrefilová\r\nTrefil\r\nTrefilův\r\ntrefit\r\nTrefný\r\ntrefný\r\ntrefování\r\ntrefovat\r\ntrefový\r\nTrejbalová\r\nTrejbal\r\nTrejbalův\r\ntrek\r\ntrekový\r\ntréma\r\ntrémista\r\ntrémistčin\r\ntrémistka\r\ntrémistův\r\ntremolo\r\ntremolování\r\ntremolovat\r\ntremolový\r\ntrémovat\r\ntremping\r\ntrempink\r\ntrempovat\r\ntremp\r\ntrempský\r\ntrenažér\r\nTrenčanský\r\nTrenčianský\r\nTrenčín\r\ntrenčínský\r\ntrenčínský\r\ntrend\r\ntrendový\r\ntrenérčin\r\ntrenérka\r\ntrenér\r\ntrenérský\r\ntrenérství\r\ntrenérův\r\ntréning\r\ntréningový\r\ntrénink\r\ntréninkový\r\ntrenky\r\ntrénovací\r\ntrénovanější\r\ntrénování\r\ntrénovaný\r\ntrénovat\r\ntrénující\r\ntrenýrky\r\ntrepanace\r\ntrepanační\r\ntrepanování\r\ntrepanovaný\r\ntrepanovat\r\ntreperenda\r\ntrepka\r\ntresčí\r\ntresenský\r\ntreska\r\ntreskovitý\r\nTresné\r\ntresor\r\ntrestající\r\ntrestancův\r\ntrestančin\r\ntrestanecký\r\ntrestanec\r\ntrestanečtější\r\ntrestanější\r\ntrestání\r\ntrestanka\r\ntrestankyně\r\ntrestankynin\r\ntrestaný\r\ntrestat\r\ntrestávání\r\ntrestávaný\r\ntrestávat\r\ntrest\r\ntresť\r\ntrestněprávní\r\ntrestnice\r\ntrestní\r\ntrestný\r\ntrestuhodnější\r\ntrestuhodný\r\nTrešlová\r\nTrešl\r\nTrešlův\r\ntretka\r\ntretra\r\ntretrovitý\r\nTrevír\r\ntrevírský\r\ntrevírský\r\ntrezor\r\ntrezorový\r\ntrhací\r\ntrháček\r\ntrhačka\r\ntrhač\r\ntrhající\r\ntrhák\r\ntrhančin\r\ntrhanec\r\ntrhanější\r\ntrhání\r\ntrhanka\r\nTrhanov\r\ntrhanovský\r\ntrhan\r\ntrhaný\r\ntrhat\r\ntrhávající\r\ntrhávanější\r\ntrhávání\r\ntrhávaný\r\ntrhávat\r\ntrhavější\r\ntrhavina\r\ntrhavý\r\ntrh\r\ntrhlejší\r\ntrhlina\r\ntrhlinka\r\ntrhlinový\r\ntrhlý\r\ntrhnout\r\ntrhnutější\r\ntrhnutí\r\ntrhnutý\r\ntrhnutý\r\nTrhoňová\r\nTrhoň\r\nTrhoňův\r\ntrhovcův\r\ntrhovec\r\ntrhovější\r\ntrhoviště\r\ntrhovka\r\ntrhovkyně\r\ntrhovkynin\r\ntrhovosvinský\r\ntrhový\r\ntriacylglycerol\r\ntriáda\r\ntriál\r\ntrialismus\r\ntrialista\r\ntrialistčin\r\ntrialistický\r\ntrialistka\r\ntrialistův\r\ntrialog\r\ntriangl\r\ntriangulace\r\ntriangulační\r\ntriangulování\r\ntriangulovaný\r\ntriangulovat\r\ntrianonský\r\ntrias\r\ntriatlon\r\ntriatlonista\r\ntriatlonistčin\r\ntriatlonistka\r\ntriatlonistův\r\ntriatlonový\r\ntribalismus\r\ntribologický\r\ntribologie\r\ntribolog\r\ntribologův\r\ntriboložčin\r\ntriboložka\r\ntribotechnika\r\ntribromderivát\r\ntribromid\r\ntribunál\r\ntribuna\r\ntribunka\r\ntribun\r\ntribunův\r\ntributární\r\ntricium\r\ntričko\r\ntričkový\r\ntridentský\r\ntridiagonální\r\ntrie\r\ntriedr\r\ntriethylcitrát\r\ntrifid\r\ntrifidův\r\ntrifosfatáza\r\ntrifosforečnan\r\ntriftong\r\ntriga\r\ntrigger\r\ntrigonometrický\r\ntrigonometrie\r\ntrigram\r\ntrigramový\r\ntrihydrát\r\ntrihydrogenarzeničný\r\ntrihydrogenfosforečný\r\ntrihydrogenfosforitý\r\ntrichinelóza\r\ntrichlorethylen\r\ntrichlormethan\r\ntrichloroctový\r\ntrichlorogalaktosacharóza\r\ntrichlorpropan\r\ntrichotomický\r\ntrichotomie\r\ntrijodid\r\ntrikalciumaluminát\r\ntrikalciumsilikát\r\ntrik\r\ntriklinický\r\ntrikliničtější\r\ntrikolora\r\ntrikolóra\r\ntrikolorní\r\ntrikolórový\r\ntriko\r\ntrikot\r\ntrikotový\r\ntrikotýn\r\ntrikotýnový\r\ntrikový\r\ntrilaterální\r\ntriliarda\r\ntrilion\r\ntrilión\r\ntrilobit\r\ntrilobitův\r\ntrilogie\r\ntrimestr\r\ntrim\r\nTrimlová\r\nTriml\r\nTrimlův\r\ntrimovací\r\ntrimování\r\ntrimovaný\r\ntrimovat\r\ntrimr\r\ntringlový\r\nTrinidad\r\ntrinidadský\r\ntrinitář\r\ntrinitářův\r\ntrinitron\r\ntrinitrotoluen\r\ntrioda\r\ntrio\r\ntriový\r\ntripartita\r\ntripartitní\r\ntripeptid\r\ntrip\r\ntriplet\r\ntriploidní\r\nTripolis\r\ntriptych\r\ntrisodný\r\nTristan\r\ntristnější\r\ntristní\r\ntritikale\r\ntritol\r\ntritolový\r\ntritonus\r\ntriumfalismus\r\ntriumfalističtější\r\ntriumfálnější\r\ntriumfální\r\ntriumf\r\ntriumfování\r\ntriumfovaný\r\ntriumfovat\r\ntriumfující\r\ntriumvirát\r\ntrivialita\r\ntrivializování\r\ntrivializovaný\r\ntrivializovat\r\ntriviálnější\r\ntriviální\r\ntrivium\r\ntrkající\r\nTrkalová\r\nTrkal\r\nTrkalův\r\ntrkání\r\ntrkaný\r\ntrkat\r\ntrkávání\r\ntrkávaný\r\ntrkávat\r\ntrkavý\r\ntrknout\r\ntrknutí\r\ntrknutý\r\ntrmácení\r\ntrmácet\r\nTrmice\r\ntrmický\r\nTrnavančin\r\nTrnavanka\r\ntrnavanový\r\nTrnavan\r\nTrnavanův\r\ntrnavanův\r\nTrnava\r\nTrnávka\r\ntrnavský\r\ntrnavský\r\ntrnečka\r\nTrnek\r\ntrn\r\ntrní\r\ntrnitější\r\ntrnitý\r\nTrnka\r\ntrnka\r\nTrnková\r\ntrnkový\r\nTrnkův\r\nTrnobranský\r\ntrnout\r\nTrnová\r\nTrnov\r\ntrnovský\r\ntrnový\r\ntrnož\r\ntrnutí\r\ntrnutý\r\ntrockismus\r\ntrockista\r\ntrockistčin\r\ntrockistický\r\ntrockistka\r\ntrockistův\r\nTrocnov\r\ntrocnovský\r\ntrofejní\r\ntrofejový\r\ntrofej\r\ntrofický\r\ntrofie\r\ntrocha\r\ntrochej\r\ntrochejský\r\ntrochu\r\nTrojánek\r\nTrojánková\r\nTrojánkův\r\nTrojanová\r\nTrojanovice\r\ntrojanovický\r\nTrojan\r\ntrojánský\r\nTrojanův\r\nTrója\r\ntrojbarevný\r\ntrojbodový\r\ntrojbodový\r\ntrojbojař\r\ntrojbojařův\r\ntrojboj\r\ntrojboký\r\ntrojciferný\r\ntrojcípý\r\ntrojčárkovaný\r\ntrojčátko\r\ntrojče\r\ntrojčetný\r\ntrojčinný\r\ntrojčíslí\r\ntrojčlen\r\ntrojčlenka\r\ntrojčlenný\r\ntrojdenní\r\ntrojd\r\ntrojdílný\r\ntrojdobý\r\ntroje\r\ntrojfázový\r\ntrojhlasný\r\ntrojhlasý\r\ntrojhlavňový\r\ntrojhlavý\r\ntrojhmat\r\ntrojhodinový\r\ntrojhránek\r\ntrojhran\r\ntrojhranný\r\ntrojhvězda\r\ntroji\r\ntrojice\r\ntrojitý\r\ntrojitý\r\ntrojí\r\ntrojjazyčný\r\ntrojjediný\r\ntrojkařčin\r\ntrojkařka\r\ntrojkař\r\ntrojkařův\r\ntrojka\r\ntrojkilometrový\r\ntrojklaný\r\ntrojkoalice\r\ntrojkolka\r\ntrojkolový\r\ntrojkolový\r\ntrojkombinace\r\ntrojkorunový\r\ntrojkový\r\ntrojkřídlý\r\ntrojlístek\r\ntrojlist\r\ntrojlistový\r\ntrojlistý\r\ntrojlitrový\r\ntrojlodní\r\ntrojlůžkový\r\ntrojměsíční\r\ntrojmetrový\r\ntrojmezí\r\ntrojminutový\r\ntrojmístný\r\ntrojmo\r\ntrojmocnina\r\ntrojmocný\r\ntrojnásob\r\ntrojnásobek\r\ntrojnásobný\r\ntrojnohý\r\ntrojnožka\r\ntrojný\r\ntrojpalubník\r\ntrojpásmový\r\ntrojpatrový\r\ntrojpísmenný\r\ntrojplošník\r\ntrojpolní\r\ntrojpólový\r\ntrojposchoďový\r\ntrojroční\r\ntrojrohý\r\ntrojrozměrný\r\ntrojřad\r\ntrojsemestrový\r\ntrojskokančin\r\ntrojskokanka\r\ntrojskokan\r\ntrojskokanův\r\ntrojskok\r\ntrojský\r\ntrójský\r\ntrojslabičný\r\ntrojsměnný\r\ntrojsoší\r\ntrojspolek\r\ntrojspolkový\r\ntrojspřeží\r\ntrojstěn\r\ntrojstěžník\r\ntrojstěžňový\r\ntrojstránkový\r\ntrojstranný\r\ntrojstrunný\r\ntrojstup\r\ntrojstupňový\r\ntrojsvazkový\r\ntrojštítový\r\ntrojtažka\r\ntrojtřídka\r\ntrojtřídní\r\ntrojtýdenní\r\ntrojúhelníček\r\ntrojúhelníčkový\r\ntrojúhelník\r\ntrojúhelníkovitý\r\ntrojúhelníkový\r\ntrojúrovňový\r\ntrojutkání\r\ntrojverší\r\ntrojvrstevný\r\ntrojvrstvový\r\ntrojvrstvý\r\ntrojznakový\r\ntrojzubec\r\ntrojzvuk\r\ntrokavecký\r\nTrokavec\r\ntrolejbus\r\ntrolejbusový\r\ntrolejový\r\ntrolej\r\ntroll\r\ntrollův\r\ntrombin\r\ntrombocyt\r\ntromboembolismus\r\ntrombon\r\ntrombón\r\ntrombonista\r\ntrombonistův\r\ntrombóza\r\ntroník\r\ntropení\r\ntropený\r\nTropez\r\ntropící\r\ntropický\r\ntropičtější\r\ntropiko\r\ntropismus\r\ntropit\r\ntropopauza\r\ntroposféra\r\ntroppo\r\ntropus\r\ntropy\r\ntrosečnice\r\ntrosečničin\r\ntrosečničtější\r\ntrosečník\r\ntrosečníkův\r\nTröschelová\r\nTröschel\r\nTröschelův\r\ntroska\r\ntroskotající\r\ntroskotat\r\ntrošička\r\ntrošičku\r\ntrošinka\r\ntrošinku\r\ntroška\r\ntroškový\r\ntrošku\r\nTrotina\r\ntrouba\r\ntroubel\r\ntroubení\r\ntroubený\r\ntroubící\r\ntroubit\r\ntroubívání\r\ntroubívaný\r\ntroubívat\r\nTroubky\r\ntroubový\r\nTroubsko\r\ntroud\r\ntroudnatcův\r\ntroudnatec\r\ntroufající\r\ntroufalejší\r\ntroufalý\r\ntroufání\r\ntroufaný\r\ntroufat\r\ntroufávání\r\ntroufávat\r\ntroufnout\r\ntroufnutí\r\ntrouchnivějící\r\ntrouchnivější\r\ntrouchnivý\r\ntrousící\r\ntrousit\r\ntroušenější\r\ntroušení\r\ntroušený\r\nTrpáková\r\nTrpák\r\nTrpákův\r\ntrpaslictví\r\ntrpasličí\r\ntrpaslík\r\ntrpaslík\r\ntrpaslíkův\r\ntrpčejší\r\ntrpčí\r\ntrpělivější\r\ntrpělivý\r\ntrpěnější\r\ntrpění\r\ntrpěný\r\ntrpět\r\ntrpící\r\nTrpín\r\ntrpínský\r\ntrpitelčin\r\ntrpitelka\r\ntrpitelský\r\ntrpitelštější\r\ntrpitel\r\ntrpitelův\r\ntrpknout\r\ntrpknutí\r\ntrpký\r\ntrpnější\r\ntrpný\r\ntrsací\r\ntrsání\r\ntrsat\r\ntrsátko\r\ntrs\r\ntrsovější\r\ntrsovitý\r\ntrsový\r\nTršice\r\ntršický\r\ntrub\r\ntrubač\r\ntrubačův\r\ntrubadúr\r\ntrubadúrský\r\ntrubadúrštější\r\ntrubadúrův\r\ntrubcovitý\r\ntrubcův\r\ntrubčí\r\ntrubec\r\nTrubelíková\r\nTrubelík\r\nTrubelíkův\r\nTrubicek\r\ntrubice\r\nTrubicková\r\nTrubickův\r\ntrubicovitý\r\ntrubicový\r\ntrubička\r\ntrubičkovitý\r\ntrubičkový\r\nTrubín\r\ntrubínský\r\ntrubka\r\ntrubkovitý\r\ntrubkovnice\r\ntrubkový\r\nTrubská\r\ntruc\r\ntruc\r\ntrucování\r\ntrucovat\r\ntrucovitější\r\ntrucovitý\r\ntrucující\r\ntrudnější\r\ntrudnomyslnější\r\ntrudnomyslný\r\ntrudný\r\ntrudomyslný\r\ntrudovitější\r\ntrudovitý\r\ntruhelka\r\ntruhlárna\r\ntruhlářčin\r\ntruhlařina\r\ntruhlářka\r\nTruhlářová\r\ntruhlářský\r\ntruhlářství\r\ntruhlář\r\nTruhlář\r\nTruhlářův\r\ntruhlářův\r\ntruhla\r\ntruhlice\r\ntruhlíček\r\ntruhlička\r\ntruhlíkový\r\ntruhlík\r\ntruhlíkův\r\ntruchlení\r\ntruchlený\r\ntruchlící\r\ntruchlit\r\ntruchlivější\r\ntruchlivý\r\ntruchlohra\r\ntruismus\r\ntruistický\r\nTrumanův\r\ntrumbera\r\ntrumberův\r\ntrumf\r\ntrumfnout\r\ntrumfnutí\r\ntrumfnutý\r\ntrumfování\r\ntrumfovat\r\ntrumfový\r\ntrumpeta\r\ntrumpetista\r\ntrumpetistčin\r\ntrumpetistka\r\ntrumpetistův\r\ntrumpetka\r\ntrumpetový\r\nTruneček\r\nTrunečková\r\nTrunečkův\r\ntrůnění\r\ntrůn\r\ntrůnící\r\ntrůnit\r\ntrůnní\r\ntrup\r\ntrupový\r\ntrus\r\nTruska\r\ntruskavec\r\ntruska\r\nTrusková\r\nTruskův\r\nTrusnov\r\ntrusnovský\r\ntrust\r\ntrustový\r\nTrutnov\r\nTrutnovsko\r\ntrutnovský\r\nTruxa\r\nTruxová\r\nTruxův\r\ntrvací\r\ntrvající\r\ntrvalejší\r\ntrvalka\r\ntrvalkový\r\ntrvalo\r\ntrvalý\r\ntrvání\r\ntrvanlivější\r\ntrvanlivý\r\ntrvat\r\ntrvávat\r\ntrychtýřový\r\ntrychtýř\r\ntrylek\r\ntrylkování\r\ntrylkovaný\r\ntrylkovat\r\ntrypsin\r\ntryptofan\r\ntryskací\r\ntryskáč\r\ntryskající\r\ntryskání\r\ntryskaný\r\ntryskat\r\ntryskávání\r\ntryskávat\r\ntryska\r\ntryskem\r\ntrysk\r\ntrysknout\r\ntrysknutí\r\ntrysknutý\r\ntryskový\r\ntrýzeň\r\ntryzna\r\ntrýznění\r\ntrýzněný\r\ntrýznit\r\ntrýznitelčin\r\ntrýznitelka\r\ntrýznitel\r\ntrýznitelův\r\ntrýznivější\r\ntrýznivý\r\ntržba\r\ntržení\r\ntržený\r\ntržiště\r\ntržit\r\ntržnice\r\ntržní\r\ntržný\r\ntřapatka\r\ntřapina\r\ntřásadlový\r\ntřasák\r\ntřásávání\r\ntřásávat\r\ntřasavka\r\ntřasený\r\ntřáseň\r\ntřaskan\r\ntřaskavější\r\ntřaskavina\r\ntřaskavý\r\ntřaslavější\r\ntřaslavý\r\ntřásl\r\ntřásnění\r\ntřásněnka\r\ntřásnicí\r\ntřásnička\r\ntřásňovací\r\ntřásňování\r\ntřásňovaný\r\ntřásňovat\r\ntřasořitka\r\ntřasořitkův\r\ntřasovisko\r\ntřást\r\ntřeba\r\ntřeba\r\nTřebařov\r\ntřebařovský\r\ntřebas\r\ntřebasže\r\ntřebaže\r\nTřebechovice\r\ntřebechovický\r\nTřebenice\r\ntřebenický\r\nTřebestovice\r\ntřebestovický\r\nTřebešice\r\ntřebešický\r\nTřebešov\r\ntřebešovský\r\nTřebětín\r\ntřebětínský\r\nTřebíčsko\r\ntřebíčský\r\nTřebíč\r\nTřebichovice\r\ntřebichovický\r\nTřebnice\r\ntřebnický\r\nTřebnouševes\r\ntřebnouševeský\r\nTřebohostice\r\ntřebohostický\r\nTřebomyslice\r\ntřebomyslický\r\nTřebonín\r\ntřebonínský\r\nTřeboňsko\r\ntřeboňský\r\nTřeboň\r\nTřebotov\r\ntřebotovský\r\nTřebová\r\nTřebovice\r\ntřebovický\r\ntřebovský\r\nTřebsko\r\nTřebusice\r\ntřebusický\r\nTřebušín\r\ntřebušínský\r\ntřecí\r\ntřecí\r\ntřech\r\ntřem\r\ntřemdava\r\ntřemešenský\r\nTřemešná\r\nTřemešné\r\ntřemi\r\ntřemošenský\r\nTřemošná\r\nTřemošnice\r\ntřemošnický\r\nTřemšínsko\r\ntřenější\r\ntřenice\r\ntření\r\ntřenový\r\ntřeň\r\ntřený\r\ntřepací\r\ntřepačka\r\ntřepání\r\ntřepaný\r\ntřepat\r\ntřepávání\r\ntřepávaný\r\ntřepávat\r\ntřepení\r\ntřepený\r\ntřepetající\r\ntřepetalka\r\ntřepetání\r\ntřepetat\r\ntřepetávání\r\ntřepetávat\r\ntřepetavější\r\ntřepetavý\r\ntřepit\r\ntřepnout\r\ntřepotající\r\ntřepotání\r\ntřepotaný\r\ntřepotat\r\ntřepotavější\r\ntřepotavý\r\ntřepot\r\ntřesavka\r\ntřesení\r\ntřesen\r\ntřesený\r\ntřes\r\ntřesk\r\ntřesknější\r\ntřesknout\r\ntřesknutí\r\ntřesknutý\r\ntřeskot\r\ntřeskutější\r\ntřeskutý\r\ntřesohlavý\r\ntřesoucí\r\nTřesov\r\ntřesovský\r\ntřesový\r\ntřesu\r\ntřešeň\r\ntřešinka\r\nTřešnáková\r\nTřešňáková\r\nTřešnák\r\nTřešňák\r\nTřešnákův\r\nTřešňákův\r\ntřešnička\r\ntřešňovecký\r\nTřešňovec\r\ntřešňovice\r\ntřešňovka\r\ntřešňový\r\ntřeštění\r\ntřeštěný\r\nTřeštice\r\ntřeštící\r\ntřeštický\r\ntřeštidlo\r\nTřeštíková\r\nTřeštík\r\nTřeštíkův\r\nTřeština\r\ntřeštit\r\ntřeštivý\r\nTřešť\r\ntřešťský\r\ntřeťaččin\r\ntřeťačka\r\ntřeťák\r\ntřeťákův\r\ntřetice\r\ntřetihorní\r\ntřetihory\r\ntřetiligový\r\ntřetina\r\ntřetinka\r\ntřetinový\r\ntřetiřadější\r\ntřetí\r\ntřezalka\r\ntřezalkovitý\r\ntřezalkový\r\ntři\r\ntří\r\ntřiačtyřicetihodinový\r\ntříadresní\r\ntřiadvacetibodový\r\ntřiadvacetimetrový\r\ntřiadvacetiposchoďový\r\ntřiadvacetistránkový\r\ntřiadvacetistupňový\r\ntříaktovka\r\ntříaktový\r\ntřiapadesátiminutový\r\ntříapůlminutový\r\ntříarchový\r\ntříarový\r\ntříatomový\r\ntřiatřicetiminutový\r\ntřiatřicetistupňový\r\ntřiatřicetitisícový\r\ntříbajtový\r\ntříbarevný\r\ntříbení\r\ntříbený\r\ntříbit\r\ntříbitový\r\ntříbodový\r\ntříbodový\r\ntříboký\r\ntříbrankový\r\ntřicatero\r\ntřicateronásobný\r\ntřicatery\r\ntřicaterý\r\ntřicátkový\r\ntřicátnice\r\ntřicátničin\r\ntřicátník\r\ntřicátníkův\r\ntřicátý\r\ntřícentimetrový\r\ntřicet\r\ntřicetibitový\r\ntřicetibodový\r\ntřiceticentimetrový\r\ntřicetice\r\ntřicetičlenný\r\ntřicetidolarový\r\ntřicetihaléřový\r\ntřicetihlavý\r\ntřicetihodinový\r\ntřicetikilogramový\r\ntřicetikilometrový\r\ntřicetikilový\r\ntřicetikorunový\r\ntřicetikusový\r\ntřicetiletý\r\ntřicetilitrový\r\ntřicetilůžkový\r\ntřicetimarkový\r\ntřicetimetrový\r\ntřicetimiliardový\r\ntřicetimilionový\r\ntřicetimiliónový\r\ntřicetiminutovka\r\ntřicetiminutový\r\ntřicetinásobný\r\ntřicetina\r\ntřicetiřádkový\r\ntřicetisedadlový\r\ntřicetisekundový\r\ntřicetistránkový\r\ntřicetistupňový\r\ntřicetisvazkový\r\ntřicetitisícovka\r\ntřicetitisícový\r\ntřicetitunový\r\ntřicetivteřinový\r\ntřicetkrát\r\ntříciferný\r\ntřicíti\r\ntřicítka\r\ntříčárkovaný\r\ntříčelisťový\r\ntříčlánkový\r\ntříčlenný\r\ntříčočkový\r\ntříčtvrteční\r\ntřičtvrtěhodinka\r\ntřičtvrtěhodinový\r\ntřičtvrtihodinový\r\ntříčtvrtinový\r\ntříčtvrtka\r\ntříčtvrtletní\r\ntříčvrťový\r\ntřída\r\ntřídění\r\ntřídenní\r\ntříděný\r\ntřídesetibytový\r\ntřídeskový\r\ntřídicí\r\ntřídící\r\ntřidička\r\ntřídička\r\ntřídič\r\ntřídílný\r\ntřídírenský\r\ntřídírna\r\ntřídit\r\ntříditelnější\r\ntřídnější\r\ntřídnický\r\ntřídnictví\r\ntřídní\r\ntřídobý\r\ntřídveřový\r\ntříelektrodový\r\ntříetážový\r\ntřífázový\r\ntřígólový\r\ntřígramový\r\ntřígrošový\r\ntříhaléř\r\ntříhektarový\r\ntříhlasý\r\ntříhlavňový\r\ntříhlavý\r\ntříhodinovka\r\ntříhodinový\r\ntříhodnotový\r\ntříhvězdičkový\r\ntříkilogramový\r\ntříkilometrový\r\ntříkilometrový\r\ntříkilový\r\ntříkolka\r\ntříkolový\r\ntříkomorový\r\ntříkoruna\r\ntříkorunový\r\ntříkrálový\r\ntřikrát\r\ntřikráte\r\ntříkrejcarový\r\ntříkrokový\r\ntříkřídlový\r\ntřílampovka\r\ntřílampový\r\ntříletka\r\ntříletost\r\ntříletý\r\ntřílistý\r\ntřílitrový\r\ntřílůžkový\r\ntřímající\r\ntřímání\r\ntřímaný\r\ntřímat\r\ntřímegawattový\r\ntříměsíční\r\ntřímetrový\r\ntřímetrový\r\ntřímiliardový\r\ntřímilimetrový\r\ntřímilionový\r\ntřímiliónový\r\ntříminutovka\r\ntříminutový\r\ntřímístný\r\ntřímotorový\r\ntřináctero\r\ntřinácteronásobný\r\ntřináctery\r\ntřinácterý\r\ntřináct\r\ntřináctibodový\r\ntřináctibodový\r\ntřináctibrankový\r\ntřináctice\r\ntřináctičlenný\r\ntřináctihektarový\r\ntřináctihodinový\r\ntřináctikilometrový\r\ntřináctikilový\r\ntřináctikolový\r\ntřináctiletý\r\ntřináctimetrový\r\ntřináctimilionový\r\ntřináctimiliónový\r\ntřináctiminutový\r\ntřináctinásobný\r\ntřináctina\r\ntřináctipatrový\r\ntřináctiposchoďový\r\ntřináctisekundový\r\ntřináctistránkový\r\ntřináctistupňový\r\ntřináctitisícový\r\ntřináctitunový\r\ntřináctivteřinový\r\ntřináctka\r\ntřináctkový\r\ntřináctkrát\r\ntřináctkráte\r\ntřináctý\r\ntřínápravový\r\ntřinecký\r\nTřinec\r\ntřínedělní\r\ntřínohý\r\ntřínožka\r\ntřínožový\r\ntřípalcový\r\ntřípatrový\r\ntřípětinový\r\ntřípísmenný\r\ntřípísmenový\r\ntříplášťový\r\ntřípodlažní\r\ntřípokojový\r\ntřípolohový\r\ntříposchoďový\r\ntříprocentní\r\ntříproudový\r\ntříprstý\r\ntříprvkový\r\ntříroční\r\ntřírohý\r\ntřírozměrný\r\ntřířádkový\r\ntřířadový\r\ntřísekundový\r\ntříselný\r\ntřísemestrový\r\ntřísethektarový\r\ntřísethlavý\r\ntřísetkilogramový\r\ntřísetkilometrový\r\ntřísetkorunový\r\ntřísetmetrový\r\ntřísetmilionový\r\ntřísetový\r\ntřísetstránkový\r\ntřísettisícový\r\ntřískání\r\ntřískaný\r\nTříska\r\ntřískat\r\ntříska\r\ntřísknout\r\ntřísknutí\r\ntřísknutý\r\ntřískovací\r\ntřískování\r\ntřískovaný\r\ntřískovat\r\nTřísková\r\ntřískovitý\r\ntřískový\r\nTřískův\r\ntříslabičný\r\ntříslo\r\ntříslovečný\r\ntříslovina\r\ntříslovinka\r\ntříslovitý\r\ntříslový\r\ntřísměnný\r\ntřísměnný\r\ntřísnění\r\ntřísněný\r\ntřísnící\r\ntřísnit\r\ntřistagramový\r\ntřistahektarový\r\ntřistahlavý\r\ntřistakilogramový\r\ntřistakilometrový\r\ntřistakilový\r\ntřistakorunový\r\ntřistaletý\r\ntřistametrový\r\ntřistamilionový\r\ntřistamiliónový\r\ntřistaminutový\r\ntřistastránkový\r\ntřistatisícový\r\ntřistatunový\r\ntřístavový\r\ntřístěžňový\r\nTřístoličník\r\ntřístovka\r\ntřístránkový\r\ntřístrunný\r\ntřístupňový\r\ntřístý\r\ntřísvazkový\r\ntříška\r\ntříštění\r\ntříštěný\r\ntříštící\r\ntříštič\r\ntříštit\r\ntříštivější\r\ntříštivý\r\ntříšť\r\ntřít\r\ntřítisící\r\ntřítisícovka\r\ntřítisícový\r\ntřítlačítkový\r\ntřítraktový\r\ntřítunový\r\ntřítýdenní\r\ntříúrovňový\r\ntřívaječný\r\ntříválcový\r\ntříválec\r\ntřívrstvový\r\ntřívrstvý\r\ntřívteřinový\r\ntřízápasový\r\ntříznakový\r\ntřmen\r\ntřmenový\r\ntřmínek\r\ntřmínkový\r\ntřpytění\r\ntřpyt\r\ntřpytící\r\ntřpytit\r\ntřpytivější\r\ntřpytivý\r\ntřpytka\r\ntřpytný\r\nTřtice\r\ntřtický\r\ntřtina\r\ntřtinový\r\nTschichold\r\nTschicholdův\r\ntsuga\r\nTTL\r\ntu\r\ntú\r\ntuba\r\ntuberák\r\ntuberákův\r\ntuberkulinace\r\ntuberkulin\r\ntuberkulinový\r\ntuberkulínový\r\ntuberkulosa\r\ntuberkulóza\r\ntuberkulózní\r\ntuberosa\r\ntubička\r\nTübingen\r\nTubinky\r\ntubista\r\ntubistův\r\ntubulus\r\ntubus\r\ntubusový\r\nTUC\r\ntucet\r\ntucet\r\ntuctovější\r\ntuctový\r\ntuctový\r\nTuček\r\nTučín\r\ntučínský\r\ntůčka\r\nTučková\r\nTučkův\r\ntučňáček\r\ntučňáčkův\r\ntučňák\r\ntučňákův\r\ntučnější\r\ntučnění\r\ntučnět\r\ntučnolistý\r\ntučnoocasý\r\ntučný\r\ntudíž\r\ntudy\r\ntuf\r\ntufový\r\ntuh\r\nTuháček\r\nTuháčková\r\nTuháčkův\r\ntuha\r\ntuhle\r\ntuhnoucí\r\ntuhnout\r\ntuhnutí\r\ntuhnutý\r\ntuhový\r\nťuhýk\r\nťuhýkův\r\ntuhý\r\nTuchlovice\r\ntuchlovický\r\nTuchoměřice\r\ntuchoměřický\r\ntúje\r\nťuk\r\nťukající\r\nťukání\r\nťukaný\r\nťukat\r\nťukávání\r\nťukávaný\r\nťukávat\r\nťukavý\r\ntuk\r\nťuknout\r\nťuknutí\r\nťuknutý\r\nťukot\r\ntukový\r\nTukum\r\ntukuprostý\r\nťuky\r\ntulácký\r\ntuláctví\r\ntuláček\r\ntulačka\r\ntuláčkův\r\ntuláčtější\r\nTulachová\r\nTulach\r\nTulachův\r\ntulák\r\ntulákův\r\ntularemie\r\ntularémie\r\ntulení\r\ntulení\r\ntuleň\r\ntuleňův\r\ntulící\r\ntulipán\r\ntulipánový\r\ntulit\r\ntulivý\r\ntulka\r\nťulpas\r\nťulpas\r\nťulpasův\r\nťululum\r\nTumajerová\r\nTumajer\r\nTumajerův\r\nTuma\r\nTůma\r\ntumor\r\ntumorogeneze\r\nTumová\r\nTůmová\r\ntumpachový\r\nTumův\r\nTůmův\r\ntuňákový\r\ntuňák\r\ntuňákův\r\ntuna\r\ntundra\r\ntundrový\r\ntunelářský\r\ntunelář\r\ntunelářův\r\ntunel\r\ntunelovací\r\ntunelování\r\ntunelovaný\r\ntunelovat\r\ntunelovávání\r\ntunelovávaný\r\ntunelovávat\r\ntunelový\r\ntunelující\r\ntuner\r\ntunerový\r\nTunguzka\r\ntunguzský\r\ntunika\r\nTunisančin\r\nTunisanka\r\nTunisan\r\nTunisanův\r\nTunis\r\nTunisko\r\ntuniský\r\ntuniský\r\ntuniský\r\ntuništější\r\nTunka\r\ntůňka\r\ntunokilometr\r\ntunový\r\nťunťání\r\ntůň\r\ntupcův\r\ntupec\r\ntupější\r\ntupení\r\ntupený\r\ntupírování\r\ntupírovaný\r\ntupírovat\r\ntupit\r\ntuplák\r\ntupohlavější\r\ntupohlavý\r\ntupojemný\r\ntupoúhelník\r\ntupoúhlejší\r\ntupoúhlý\r\ntupozraký\r\ntupý\r\ntúra\r\ntůra\r\nturban\r\nturbina\r\nturbína\r\nturbínka\r\nturbinový\r\nturbínový\r\nturboagregát\r\nturbodmychadlo\r\nturbogenerátor\r\nturbokompresor\r\nturbo\r\nturbosoustrojí\r\nturbovrtulový\r\nturbulence\r\nturbulentnější\r\nturbulentní\r\nTurczyniaková\r\nTurczyniak\r\nTurczyniakův\r\nTurecko\r\nturecký\r\nTureček\r\nTurečková\r\nTurečkův\r\nturečtější\r\nturečtina\r\nTurek\r\nturek\r\nTurek\r\nturenský\r\nturfový\r\nTuringův\r\nTurín\r\nturínský\r\nturismus\r\nturista\r\nturistčin\r\nturistický\r\nturističtější\r\nturistika\r\nturistka\r\nturistův\r\nturkický\r\nTurkmenčin\r\nTurkménie\r\nTurkmenistán\r\nTurkmenka\r\nTurkmen\r\nturkmenský\r\nturkmenština\r\nTurkmenův\r\nturkotatarský\r\nTurková\r\nTurks\r\nTurkův\r\nturkův\r\nTurkyně\r\nTurkynin\r\nturmalín\r\nturmalínový\r\nturmalínový\r\nturnajový\r\nturnaj\r\nTurná\r\nturné\r\nturner\r\nturnerka\r\nTurnerová\r\nTurner\r\nTurnerův\r\nturniket\r\nturniketový\r\nTurnov\r\nTurnovsko\r\nturnovský\r\nturnus\r\nturnusový\r\nturonský\r\ntúrování\r\ntúrovaný\r\ntúrovat\r\nturovecký\r\nTurovec\r\ntur\r\nTursko\r\nturův\r\nTurzová\r\nTurz\r\nTurzův\r\ntuřanský\r\nTuřany\r\ntuřín\r\ntuřínový\r\nTusarová\r\nTusar\r\nTusarův\r\ntušenější\r\ntušení\r\ntušený\r\ntušící\r\nTušimice\r\ntušimický\r\nTušinovský\r\ntušit\r\ntušivý\r\ntušový\r\ntuš\r\nTutajová\r\nTutaj\r\nTutajův\r\ntutéž\r\ntutlající\r\ntutlání\r\ntutlaný\r\ntutlat\r\ntutlávání\r\ntutlávaný\r\ntutlávat\r\ntuto\r\ntutoriál\r\ntutor\r\ntutorův\r\ntutovka\r\ntutový\r\ntutú\r\ntůůt\r\nTuvalančin\r\nTuvalanka\r\nTuvalan\r\nTuvalanův\r\ntuvalský\r\nTuvalu\r\nTuvora\r\nTuvorová\r\nTuvorův\r\nTuzarová\r\nTuzar\r\nTuzarův\r\ntuzemcův\r\ntuzemec\r\ntuzemsko\r\ntuzemský\r\ntuzér\r\nTuzex\r\ntuzexový\r\ntužba\r\ntužení\r\ntužený\r\nTužice\r\ntužicí\r\ntužící\r\ntužický\r\ntužidlo\r\nTužilová\r\nTužil\r\nTužilův\r\ntužinka\r\ntužit\r\ntužkárna\r\ntužka\r\ntužkový\r\nTužová\r\ntužší\r\ntužší\r\ntužtička\r\nTuž\r\nTužův\r\nTV\r\ntvá\r\ntvar\r\ntvárlivý\r\ntvárnější\r\ntvárnění\r\ntvárnice\r\ntvárnicový\r\ntvárný\r\ntvaroh\r\ntvarohovitý\r\ntvarohový\r\ntvarosloví\r\ntvaroslovný\r\ntvarovací\r\ntvarování\r\ntvarovaný\r\ntvarovat\r\ntvarovatelnější\r\ntvarovatelný\r\ntvarovka\r\ntvarový\r\ntvaroznalcův\r\ntvaroznalecký\r\ntvaroznalectví\r\ntvaroznalec\r\ntvaroznalkyně\r\ntvaroznalkynin\r\ntvaroznalství\r\ntvaroženský\r\nTvarožná\r\ntvarující\r\ntvarůžek\r\ntvarůžkový\r\ntvářecí\r\ntvářející\r\ntvářenější\r\ntváření\r\ntvářený\r\ntvářet\r\ntvářící\r\ntvářička\r\ntvářinka\r\ntvářit\r\ntvářitelný\r\ntvářívat\r\ntvářný\r\ntvářový\r\ntvář\r\ntvé\r\ntvého\r\ntvém\r\ntvému\r\ntví\r\ntvíd\r\ntvídový\r\ntvoje\r\ntvoji\r\ntvojí\r\ntvorba\r\ntvoreček\r\ntvorečkův\r\ntvor\r\ntvorstvo\r\ntvorův\r\ntvořenější\r\ntvořenější\r\ntvoření\r\ntvořený\r\ntvořící\r\ntvořit\r\ntvořivější\r\ntvořivý\r\ntvou\r\ntvrďásek\r\ntvrději\r\ntvrdící\r\ntvrdidlo\r\nTvrdíková\r\nTvrdík\r\nTvrdíkův\r\ntvrdit\r\ntvrditelný\r\ntvrdívání\r\ntvrdívaný\r\ntvrdívat\r\ntvrdka\r\nTvrdkov\r\ntvrdkovský\r\ntvrdnout\r\ntvrdnutí\r\ntvrdohlavcův\r\ntvrdohlavec\r\ntvrdohlavější\r\ntvrdohlavka\r\ntvrdohlavý\r\nTvrdonice\r\ntvrdonický\r\nTvrdoňová\r\nTvrdoň\r\nTvrdoňův\r\ntvrdopatrový\r\ntvrdošíjnější\r\ntvrdošíjný\r\ntvrdší\r\nTvrdý\r\ntvrdý\r\nTvrzdický\r\ntvrzenější\r\ntvrzení\r\ntvrzený\r\ntvrziště\r\nTvrzníková\r\nTvrzník\r\nTvrzníkův\r\ntvrz\r\ntvůj\r\ntvůj\r\ntvůrce\r\ntvůrcův\r\ntvůrčí\r\ntvůrkyně\r\ntvůrkynin\r\ntvých\r\ntvým\r\ntvými\r\ntwist\r\ntwistující\r\nty\r\nTybinky\r\ntýče\r\ntyčení\r\ntyčící\r\ntyčinka\r\ntyčinkovitý\r\ntyčinkový\r\ntyčit\r\ntyčkařčin\r\ntyčkařka\r\ntyčkařský\r\ntyčkař\r\ntyčkařův\r\ntyčka\r\ntyčkovitý\r\ntyčkový\r\ntyčovina\r\ntyčovitý\r\ntyčový\r\ntyč\r\ntýdeník\r\ntýdenní\r\ntýden\r\ntýdně\r\ntyf\r\ntyfový\r\ntyfus\r\ntyglík\r\ntygrovaný\r\ntygrovitý\r\ntygrovitý\r\ntygr\r\ntygrův\r\ntygře\r\ntygřice\r\ntygříček\r\ntygříčkův\r\ntygřík\r\ntygříkův\r\ntygří\r\ntyhle\r\ntýchž\r\ntyjící\r\ntýká\r\ntykadélko\r\ntykadlo\r\ntykající\r\ntýkající\r\ntykání\r\ntýkání\r\ntykat\r\ntýkat\r\ntýkavý\r\ntykev\r\ntýk\r\ntýkový\r\ntýkový\r\ntykvice\r\ntykvička\r\ntykvovitý\r\ntykvový\r\ntyl\r\ntýl\r\ntýlní\r\nTylová\r\ntylový\r\ntýlový\r\nTyl\r\nTylšová\r\nTylš\r\nTylšův\r\nTylův\r\nTylža\r\nTylže\r\nTymákov\r\ntymákovský\r\ntým\r\ntymián\r\ntymiánový\r\ntýmiž\r\nTymlová\r\nTyml\r\nTymlův\r\ntýmovější\r\ntýmový\r\ntympán\r\ntympanista\r\ntympanistčin\r\ntympanistka\r\ntympanistův\r\ntympanon\r\ntympánový\r\ntýmž\r\ntýnecký\r\nTýnec\r\nTýnice\r\ntýnický\r\nTýniště\r\nTýnišťko\r\ntýništský\r\nTýn\r\ntýnský\r\ntýnský\r\ntyp\r\ntypický\r\ntypičtější\r\ntypista\r\ntypistčin\r\ntypistka\r\ntypistův\r\ntypizace\r\ntypizační\r\ntypizování\r\ntypizovaný\r\ntypizovat\r\ntypografický\r\ntypografie\r\ntypograf\r\ntypografův\r\ntypologický\r\ntypologičtější\r\ntypologie\r\ntypolog\r\ntypologův\r\ntypoložčin\r\ntypoložka\r\ntypování\r\ntypovaný\r\ntypovat\r\ntypovější\r\ntypový\r\ntypující\r\ntýrající\r\ntyrančin\r\ntyranie\r\ntýrání\r\ntyranisování\r\ntyranisovaný\r\ntyranisovat\r\ntyranizování\r\ntyranizovaný\r\ntyranizovat\r\ntyranizující\r\ntyranka\r\ntyran\r\ntyranský\r\ntyranství\r\ntyranštější\r\ntyranův\r\ntýraný\r\ntýrat\r\ntyristor\r\ntyristorový\r\ntyrkys\r\ntyrkysový\r\nTyrolčin\r\nTyrolka\r\nTyrolsko\r\ntyrolský\r\nTyršová\r\nTyrš\r\nTyršův\r\nTýřová\r\nTýř\r\nTýřův\r\ntys\r\ntýt\r\ntytéž\r\ntytí\r\ntyto\r\ntytý\r\ntýž\r\ntzn\r\ntzv\r\nu\r\nUA\r\nubalenější\r\nubalení\r\nubalený\r\nubalit\r\nubalitelnější\r\nubalitelný\r\nubalovanější\r\nubalování\r\nubalovaný\r\nubalovat\r\nubalovávání\r\nubalovávaný\r\nubalovávat\r\nubalující\r\nubedněnější\r\nubednit\r\nuběhání\r\nuběhaný\r\nuběhat\r\nuběhlý\r\nuběhnout\r\nuběhnutí\r\nuběhnutý\r\nuběhnutý\r\núběl\r\núbělový\r\nuběrací\r\nubezpečení\r\nubezpečený\r\nubezpečit\r\nubezpečování\r\nubezpečovaný\r\nubezpečovat\r\núběžník\r\nUbiasová\r\nUbias\r\nUbiasův\r\nubíhající\r\nubíhání\r\nubíhat\r\nubíhávání\r\nubíhávaný\r\nubíhávat\r\nubíjející\r\nubíjení\r\nubíjený\r\nubíjet\r\nubikace\r\nubírající\r\nubíranější\r\nubírání\r\nubíraný\r\nubírat\r\nubít\r\nubitější\r\nubití\r\nubit\r\nubitý\r\nublácení\r\nublácený\r\nublátit\r\nublebtnout\r\nublebtnutí\r\nublebtnutý\r\nublíženečtější\r\nublíženější\r\nublížení\r\nublížený\r\nublížit\r\nubližování\r\nubližováno\r\nubližovat\r\nubližující\r\núbočí\r\nubodání\r\nubodaný\r\nubodat\r\nubodávání\r\nubodávaný\r\nubodávat\r\nubohoučký\r\nubohý\r\nubojování\r\nubojovaný\r\nubojovat\r\nubolenější\r\núbor\r\nubourání\r\nubouraný\r\nubourat\r\nubourávání\r\nubourávaný\r\nubourávat\r\nubožácký\r\nubožaččin\r\nubožáček\r\nubožačka\r\nubožáčkův\r\nubožák\r\nubožákův\r\nubožátko\r\nubožčin\r\nubožejší\r\nubožka\r\nubranější\r\nubránění\r\nubráněný\r\nubraní\r\nubrání\r\nubránit\r\nubraný\r\nubrat\r\nubrblanější\r\nubrblaný\r\nubrebencení\r\nubrebencený\r\nubrebentit\r\nubrečenější\r\nubrečení\r\nubrečený\r\nubrečet\r\nubreptaný\r\nubreptnout\r\nubreptnutí\r\nubreptnutý\r\nubrnkání\r\nubrnkaný\r\nubrnkat\r\nubrnkávat\r\nubrousek\r\nubrousit\r\nubroušenější\r\nubroušení\r\nubroušený\r\nubrus\r\nubrušovanější\r\nubrušování\r\nubrušovaný\r\nubrušovat\r\nubrušující\r\nubryndání\r\nubryndaný\r\nubryndat\r\nubrzdění\r\nubrzděný\r\nubrzdit\r\nubudu\r\nubyl\r\núbytě\r\núbytek\r\nubýt\r\nubytí\r\núbytkovější\r\núbytkový\r\nubytovací\r\nubytování\r\nubytovaný\r\nubytovat\r\nubytovatelčin\r\nubytovatelka\r\nubytovatel\r\nubytovatelův\r\nubytovávání\r\nubytovávaný\r\nubytovávat\r\nubytovna\r\nubývající\r\nubývání\r\nubývat\r\nubyv\r\nubyvše\r\nubyvši\r\nubyvší\r\nucákání\r\nucákaný\r\nucákat\r\nucedit\r\nucelenější\r\nucelení\r\nucelený\r\nucelit\r\nucelování\r\nucelovaný\r\nucelovat\r\nucelovávání\r\nucelující\r\nucezení\r\nucezený\r\nucítění\r\nucítěný\r\nucítit\r\nucloumání\r\nucloumaný\r\nucloumat\r\nucloumávat\r\nucouranější\r\nucourání\r\nucouraný\r\nucourat\r\nucouvnout\r\nucouvnutí\r\nucpanější\r\nucpání\r\nucpaný\r\nucpat\r\nucpávací\r\nucpávající\r\nucpávání\r\nucpávaný\r\nucpávat\r\nucpávka\r\nucpávkový\r\núcta\r\nuctění\r\nuctěný\r\nuctít\r\nuctívaččin\r\nuctívačka\r\nuctívač\r\nuctívačův\r\nuctívající\r\nuctívanější\r\nuctívání\r\nuctívaný\r\nuctívat\r\nuctivější\r\nuctivý\r\núctyhodnější\r\núctyhodný\r\nucucávání\r\nucucávaný\r\nucucávat\r\nucukávání\r\nucukávat\r\nucuknout\r\nucuknutí\r\nucukovat\r\nuculení\r\nuculit\r\nuculování\r\nuculovaný\r\nuculovat\r\nucumlání\r\nucumlaný\r\nucumlat\r\nucválání\r\nucválaný\r\nucválat\r\nucválávání\r\nucválávat\r\nucvrnknout\r\nucvrnknutí\r\nucvrnknutý\r\nučárnout\r\nučárnutí\r\nučarování\r\nučarovaný\r\nučarovat\r\núčaří\r\núčasnění\r\núčasnit\r\núčasten\r\núčastenství\r\núčast\r\núčastnější\r\núčastnění\r\núčastněný\r\núčastnice\r\núčastnící\r\núčastnický\r\núčastnictví\r\núčastník\r\núčastníkův\r\núčastnit\r\núčastný\r\nučebna\r\nučebnice\r\nučebnicovější\r\nučebnicový\r\nučební\r\nučednice\r\nučednický\r\nučedničtější\r\nučedník\r\nučedníkův\r\núčelem\r\núčel\r\nučelivý\r\núčelnější\r\núčelný\r\núčelovější\r\núčelový\r\nuče\r\nučencův\r\nučenčin\r\nučenecký\r\nučenec\r\nučenečtější\r\nučenější\r\nučení\r\nučenka\r\nučenkyně\r\nučenkynin\r\nučenlivější\r\nučenlivý\r\nUčeňová\r\nUčeň\r\nučeň\r\nUčeňův\r\nučený\r\nučesanější\r\nučesání\r\nučesaný\r\nučesat\r\nučesávání\r\nučesávaný\r\nučesávat\r\núčes\r\núčesový\r\núčet\r\núčetnický\r\nučetnictví\r\núčetnictví\r\núčetničtější\r\núčetní\r\núčet\r\nučíce\r\nučící\r\nučíc\r\nučiliště\r\nučilištní\r\nučil\r\nučím\r\núčinější\r\núčinek\r\nučinění\r\nučiněný\r\núčin\r\nučinit\r\nučinkování\r\núčinkování\r\nučinkovaný\r\núčinkovaný\r\núčinkovat\r\nučinkovávání\r\núčinkovávání\r\nučinkovávaný\r\núčinkovávaný\r\nučinkovávat\r\núčinkovávat\r\núčinkový\r\núčinkující\r\núčinlivější\r\núčinlivý\r\núčinnější\r\núčinný\r\nučíst\r\nučitelčin\r\nučitelka\r\nučitelský\r\nučitelství\r\nučitelstvo\r\nučitelštější\r\nučitel\r\nučitelův\r\nučit\r\nučivo\r\núčko\r\nučlenit\r\nučmárnout\r\nučmárnutí\r\nučmárnutý\r\nučme\r\nuč\r\nučňák\r\nučnice\r\nučňovský\r\nučňovství\r\nučňovštější\r\nučňův\r\nučoudit\r\núčtárenský\r\núčtárna\r\núčtařčin\r\núčtařka\r\núčtě\r\nučte\r\nučtení\r\núčtenka\r\núčtenkový\r\nučtený\r\núčtovací\r\núčtovanější\r\núčtování\r\núčtovaný\r\núčtovat\r\núčtovávání\r\núčtovávaný\r\núčtovávat\r\núčtovní\r\núčtový\r\núčtující\r\núdajný\r\núdajový\r\núdaj\r\nudálost\r\nudanější\r\nudání\r\nudánlivý\r\nudaný\r\nudát\r\nudat\r\nudatnější\r\nUdatný\r\nudatný\r\nudavaččin\r\nudavačka\r\nudavačský\r\nudavačství\r\nudavač\r\nudávač\r\nudavačův\r\nudávačův\r\nudávající\r\nudávanější\r\nudávání\r\nudávaný\r\nudavatelčin\r\nudavatelka\r\nudavatel\r\nudavatelův\r\nudávat\r\nudávení\r\nudávený\r\nudávit\r\nudělanější\r\nudělání\r\nudělaný\r\nudělat\r\nudělátko\r\nudělavší\r\nudělenější\r\nudělení\r\nudělený\r\núděl\r\nudělit\r\nudělitelnější\r\nudělitelný\r\núdělník\r\núdělníkův\r\núdělný\r\nudělovací\r\nudělovanější\r\nudělování\r\nudělovaný\r\nudělovat\r\nudělovatelnější\r\nudělovatelný\r\nudělovatel\r\nudělovatelův\r\nudělovávání\r\nudělovávaný\r\nudělovávat\r\nudělující\r\núderem\r\núder\r\núderka\r\núdernější\r\núdernice\r\núdernický\r\núderničtější\r\núderník\r\núderníkův\r\núderný\r\núderový\r\nudeření\r\nudeřený\r\nudeřit\r\núděs\r\núděsnější\r\núděsný\r\núd\r\nudice\r\nudička\r\nudidlo\r\nudílející\r\nudílení\r\nudílený\r\nudílet\r\nudil\r\nudím\r\nUdin\r\nudirigování\r\nudirigovaný\r\nudirigovat\r\nudírna\r\nudit\r\nudívání\r\nudívaný\r\nudívat\r\nudivenější\r\nudivení\r\nudivený\r\núdiv\r\nudivit\r\nudivování\r\nudivovaný\r\nudivovat\r\nudivující\r\nÚdlice\r\núdlický\r\nuďme\r\nuď\r\núdobí\r\nudobření\r\nudobřený\r\nudobřit\r\nudobřování\r\nudobřovat\r\nudolanější\r\nudolání\r\nudolaný\r\nudolat\r\nudolávání\r\nudolávaný\r\nudolávat\r\núdolíčko\r\núdolí\r\núdolnice\r\núdolní\r\núdový\r\nUDP\r\nudra\r\nudrbání\r\nudrbaný\r\nudrbat\r\nudrbávání\r\nudrbávaný\r\nudrbávat\r\nudrcání\r\nudrcaný\r\nudrcat\r\nudrchání\r\nudrchaný\r\nudrchat\r\nudrnkat\r\nudrolení\r\nudrolený\r\nudrolit\r\nudrolování\r\nudrolovaný\r\nudrolovat\r\nUdržalová\r\nUdržal\r\nUdržalův\r\núdržbářčin\r\núdržbářka\r\núdržbářský\r\núdržbářství\r\núdržbář\r\núdržbářův\r\núdržba\r\núdržbový\r\nudrženější\r\nudržení\r\nudržený\r\nudržet\r\nudržitelnější\r\nudržitelný\r\núdržný\r\nudržovací\r\nudržovanější\r\nudržování\r\nudržovaný\r\nudržovat\r\nudržovatelčin\r\nudržovatelka\r\nudržovatelný\r\nudržovatel\r\nudržovatelův\r\nudržující\r\nudřenější\r\nudření\r\nudřený\r\nudřít\r\nuďte\r\nudumlání\r\nudumlaný\r\nudumlat\r\nudupanější\r\nudupání\r\nudupaný\r\nudupat\r\nudupávanější\r\nudupávání\r\nudupávaný\r\nudupávat\r\nudupu\r\nudusanější\r\nudusání\r\nudusaný\r\nudusat\r\nudusávání\r\nudusávaný\r\nudusávat\r\nudusit\r\nudušení\r\nudušený\r\nudýchanější\r\nudýchání\r\nudýchaný\r\nudýchat\r\nUEFA\r\nuf\r\nÚFAL\r\nUfa\r\nuff\r\nufinancování\r\nufinancovaný\r\nufinancovat\r\nufinancovávání\r\nufinancovávaný\r\nufinancovávat\r\nufňukanější\r\nufňukaný\r\nUFO\r\nufologický\r\nufologie\r\nufolog\r\nufologův\r\nufoložčin\r\nufoložka\r\nufománie\r\nufoturista\r\nufoturistčin\r\nufoturistka\r\nufoturistův\r\nufrnknout\r\nufrnknutí\r\nUganďančin\r\nUganďanka\r\nUganďan\r\nUganďanův\r\nUganda\r\nugandský\r\nugrofinista\r\nugrofinistčin\r\nugrofinistka\r\nugrofinistův\r\nugrofinský\r\nugrofinština\r\nuháčkování\r\nuháčkovaný\r\nuháčkovat\r\nuhádanější\r\nuhádání\r\nuhádaný\r\nuhádat\r\nuhádnout\r\nuhádnutí\r\nuhadování\r\nuhadovaný\r\nuhadovat\r\nuhájení\r\nuhájený\r\nuhájit\r\nuhamounění\r\nuhamouněný\r\nuhamounit\r\nuhánějící\r\nuháněnější\r\nuhánění\r\nuháněný\r\nuhánět\r\nuhasínající\r\nuhasínat\r\nuhasit\r\nuhasitelnější\r\nuhasitelný\r\nuhasnout\r\nuhasnutí\r\nuhasnutý\r\nuhašení\r\nuhašený\r\nUhdeová\r\nUhde\r\nUhdeův\r\nuhejkaný\r\nuhel\r\nuhelenský\r\nuhelka\r\nuhelnatější\r\nuhelnatění\r\nuhelnatět\r\nuhelnatý\r\nUhelná\r\nuhelna\r\núhelník\r\núhelníkový\r\nuhelný\r\núhelný\r\núhel\r\nuher\r\nuheráček\r\nUherčice\r\nuherčický\r\nUherčin\r\nUherka\r\nUherová\r\nUher\r\nUherskobrodsko\r\nuherskobrodský\r\nUhersko\r\nuherskohradišťsko\r\nuherskohradišťský\r\nuherský\r\nuherský\r\nUherův\r\nUHF\r\nuhladit\r\nuhlák\r\nuhlákův\r\nÚhlava\r\núhlavnější\r\núhlavní\r\núhlavský\r\nuhlazenější\r\nuhlazení\r\nuhlazený\r\nuhlazování\r\nuhlazovaný\r\nuhlazovat\r\nuhlazující\r\nuhle\r\núhlednější\r\núhledný\r\nuhlech\r\nÚhlejov\r\núhlejovský\r\nuhlem\r\nuhli\r\nuhlí\r\nuhličitan\r\nuhličitanový\r\nuhličitý\r\nuhlídání\r\nuhlídaný\r\nuhlídat\r\nuhlích\r\nuhlíkatý\r\nuhlík\r\nUhlíková\r\nuhlíkový\r\nUhlík\r\nUhlíkův\r\nUhlířová\r\nUhlířov\r\nuhlířovský\r\nuhlířský\r\nuhlířství\r\nuhlířštější\r\nuhlíř\r\nUhlíř\r\nUhlířův\r\nuhlířův\r\nuhlobaron\r\nuhlobaronův\r\nuhlodanější\r\nuhlodání\r\nuhlodaný\r\nuhlodat\r\nuhlodávání\r\nuhlodávaný\r\nuhlodávat\r\nuhlohydrát\r\nuhlohydrátový\r\nuhlokresba\r\núhloměr\r\nuhlopříčka\r\núhlopříčka\r\núhlopříčný\r\núhlování\r\nuhlovodan\r\nuhlovodanový\r\nuhlovodík\r\nuhlovodíkový\r\nuhlový\r\núhlový\r\nuhlu\r\nuhlů\r\nuhlům\r\nuhly\r\nuhnal\r\nuhnanější\r\nuhnání\r\nuhnán\r\nuhnaný\r\nuhnat\r\nuhnětenější\r\nuhnětení\r\nuhněten\r\nuhnětený\r\nuhnilejší\r\nuhnilý\r\nuhníst\r\nuhnít\r\nuhnití\r\nuhnívání\r\nuhnívaný\r\nuhnívat\r\nuhnízdění\r\nuhnízděný\r\nuhnízdit\r\nuhnout\r\nuhnutí\r\nuhnutý\r\nuhodit\r\nuhodnout\r\nuhodnutější\r\nuhodnutí\r\nuhodnutý\r\nuhodnutý\r\núhona\r\nuhonění\r\nuhoněný\r\nÚhonice\r\núhonický\r\nuhonit\r\núhonný\r\núhor\r\núhorový\r\nuhořelejší\r\nuhořelý\r\nuhoření\r\nuhořený\r\nuhořet\r\nÚhořilka\r\núhoří\r\núhořovitější\r\núhořovitý\r\núhoř\r\núhořův\r\nuhostit\r\nuhoštění\r\nuhoštěný\r\nuhozenější\r\nuhození\r\nuhozený\r\núhoz\r\núhozový\r\nuhrabanější\r\nuhrabání\r\nuhrabaný\r\nuhrabat\r\nuhrabávání\r\nuhrabávaný\r\nuhrabávat\r\nuhrábnout\r\nuhrábnutější\r\nuhrábnutí\r\nuhrábnutý\r\nuhrabování\r\nuhrabovaný\r\nuhrabovat\r\nuhrabovávání\r\nuhrabovávaný\r\nuhrabovávat\r\nuhrabující\r\núhrada\r\nuhradit\r\nuhraditelnější\r\núhradový\r\nuhrančivější\r\nuhrančivý\r\nuhranější\r\nuhrání\r\nuhranout\r\nuhranutí\r\nuhranutý\r\nuhraný\r\nuhrát\r\nuhrávanější\r\nuhrávání\r\nuhrávaný\r\nuhrávat\r\nuhrazení\r\nuhrazený\r\nuhrazovací\r\nuhrazování\r\nuhrazovaný\r\nuhrazovat\r\nuhre\r\nuhrech\r\nuhrem\r\núhrn\r\núhrnnější\r\núhrnný\r\nuhrovatější\r\nUhrová\r\nuhrovitější\r\nuhrovitý\r\nUhr\r\nuhru\r\nuhrů\r\nuhrům\r\nUhrův\r\nuhry\r\nuhryzající\r\nuhryzanější\r\nuhryzání\r\nuhryzaný\r\nuhryzat\r\nuhryzávání\r\nuhryzávaný\r\nuhryzávat\r\nUhry\r\nuhřání\r\nuhřát\r\nuhřátí\r\nuhřátý\r\nUhřice\r\nuhřický\r\nUhřičice\r\nuhřičický\r\nUhřínov\r\nuhřínovský\r\nuhýbací\r\nuhýbající\r\nuhýbající\r\nuhýbání\r\nuhýbat\r\nuhýbávání\r\nuhýbávat\r\nuhýbavější\r\nuhýbavý\r\núhyb\r\núhybný\r\núhyn\r\nuhynout\r\nuhynulejší\r\nuhynulý\r\nuhynutí\r\nuchazeččin\r\nuchazečka\r\nuchazečský\r\nuchazečství\r\nuchazeč\r\nuchazečův\r\nucházející\r\nucházení\r\nucházet\r\nucházívat\r\nuchechtání\r\nuchechtat\r\nuchechtávat\r\nuchichtanější\r\nuchladit\r\nuchlácholení\r\nuchlácholený\r\nuchlácholit\r\nuchlastání\r\nuchlastaný\r\nuchlastat\r\nuchlazenější\r\nuchlazení\r\nuchlazený\r\nuchodit\r\nucho\r\nuchopení\r\nuchopený\r\nuchopit\r\nuchopitelnější\r\nuchopitelný\r\nuchopovací\r\nuchopovák\r\nuchopování\r\nuchopovaný\r\nuchopovat\r\nuchování\r\nuchovaný\r\nuchovatelnější\r\nuchovatelný\r\nuchovat\r\nuchovávající\r\nuchovávání\r\nuchovávaný\r\nuchovávatelčin\r\nuchovávatelka\r\nuchovávat\r\nuchození\r\nuchozený\r\nuchráněnější\r\nuchránění\r\nuchráněný\r\nuchránit\r\nuchraňující\r\nuchřadnutí\r\nuchvácenější\r\nuchvácení\r\nuchvácený\r\nuchvacování\r\nuchvacovaný\r\nuchvacovat\r\nuchvacující\r\nuchvátanější\r\nuchvátaný\r\nuchvátit\r\nuchvatitelský\r\nuchvatitel\r\nuchvatitelův\r\núchvatnější\r\núchvatný\r\nuchycenější\r\nuchycení\r\nuchycený\r\nuchycovanější\r\nuchycování\r\nuchycovaný\r\nuchycovat\r\nuchycovávání\r\nuchycovávaný\r\nuchycovávat\r\nuchýlení\r\nuchýlený\r\nuchýlit\r\núchylkář\r\núchylkářův\r\núchylka\r\núchylkoměr\r\núchylnější\r\núchylný\r\nuchylovanější\r\nuchylování\r\nuchylovaný\r\nuchylovat\r\nuchylovávání\r\nuchylovávaný\r\nuchylovávat\r\nuchylující\r\nuchystání\r\nuchystaný\r\nuchystat\r\núchyt\r\nUchytilová\r\nUchytil\r\nUchytilův\r\nuchytit\r\núchytka\r\nuchytnout\r\nuchytnutí\r\nuchytnutý\r\núchytný\r\nÚIV\r\nujal\r\nujařmenější\r\nujařmený\r\nujařmit\r\nujařmitel\r\nujařmitelův\r\nujařmovat\r\nujasnění\r\nujasněný\r\nujasnit\r\nujasňování\r\nujasňovaný\r\nujasňovat\r\nujasňující\r\nujatější\r\nujat\r\nujatý\r\nUjčín\r\nujčínský\r\nUjčov\r\nujčovský\r\nujda\r\nujdu\r\nujedení\r\nujedený\r\nújeď\r\nujednající\r\nujednanější\r\nujednání\r\nujednáno\r\nujednaný\r\nujednat\r\nujednávající\r\nujednávanější\r\nujednávání\r\nujednávaný\r\nujednávat\r\nujednocení\r\nujednocený\r\nujednotit\r\nujedu\r\nujel\r\nujení\r\nujetější\r\nujet\r\nujetí\r\nujetý\r\nujetý\r\nújezdecký\r\nÚjezdec\r\nujezdění\r\nujezděný\r\nújezd\r\nujezdit\r\nújezdní\r\nuježděný\r\nujídající\r\nujídání\r\nujídaný\r\nujídat\r\nujídávání\r\nujídávaný\r\nujídávat\r\nujímací\r\nujímanější\r\nujímání\r\nujímaný\r\nujímatelnější\r\nujímatelný\r\nujímat\r\nujistit\r\nujíst\r\nujištění\r\nujištěný\r\nujišťovanější\r\nujišťování\r\nujišťovaný\r\nujišťovat\r\nujišťující\r\nujít\r\nujití\r\nujíždějící\r\nujíždění\r\nujíždět\r\nujka\r\nújma\r\nujmout\r\nujmu\r\nujmul\r\nujmutí\r\nujmut\r\nUK\r\nukájející\r\nukájení\r\nukájený\r\nukájet\r\nukamenování\r\nukamenovaný\r\nukamenovat\r\nukapanější\r\nukapání\r\nukapaný\r\nukapat\r\nukapávání\r\nukapávaný\r\nukapávat\r\núkap\r\nukápnout\r\nukápnutí\r\nukápnutý\r\nukapu\r\nukázanější\r\nukázání\r\nukázán\r\nukázaný\r\nukázat\r\nukazatelnější\r\nukazatelný\r\nukazatel\r\núkaz\r\nukázka\r\nukázkový\r\nukázněnější\r\nukáznění\r\nukázněný\r\nukáznit\r\nukázňování\r\nukázňovaný\r\nukázňovat\r\nukázňovávat\r\nukázňující\r\nukazovací\r\nukazovaččin\r\nukazováček\r\nukazovačka\r\nukazovadlo\r\nukazovák\r\nukazovanější\r\nukazování\r\nukazovaný\r\nukazovat\r\nukazovatel\r\nukazovátko\r\nukazující\r\nukáži\r\nukážka\r\nukdákání\r\nukdákaný\r\nukdákat\r\nukecanější\r\nukecání\r\nukecaný\r\nukecat\r\nukládací\r\nukladač\r\nukládající\r\nukládanější\r\nukládání\r\nukládaný\r\nukladatelčin\r\nukladatelka\r\nukladatelský\r\nukladatelství\r\nukladatel\r\nukladatelův\r\nukládat\r\núklad\r\núklad\r\nukládka\r\núkladnější\r\núkladný\r\nuklánění\r\nuklánět\r\nuklepanější\r\nuklepání\r\nuklepaný\r\nuklepat\r\nuklepávající\r\nuklepávanější\r\nuklepávání\r\nuklepávaný\r\nuklepávat\r\nuklepnout\r\nuklepnutější\r\nuklepnutí\r\nuklepnutý\r\nuklepnutý\r\núklid\r\nuklidit\r\nuklidnění\r\nuklidněný\r\nuklidnit\r\nuklidňovací\r\nuklidňování\r\nuklidňovaný\r\nuklidňovat\r\nuklidňující\r\núklidový\r\nuklikání\r\nuklikaný\r\nuklikat\r\nuklikávání\r\nuklikávaný\r\nuklikávat\r\nuklimbání\r\nuklimbaný\r\nuklimbat\r\nuklimbávání\r\nuklimbávaný\r\nuklimbávat\r\nuklizeččin\r\nuklizečka\r\nuklízečka\r\nuklizeč\r\nuklízeč\r\nuklizečův\r\nuklízečův\r\nuklízející\r\nuklizenější\r\nuklizení\r\nuklízení\r\nuklizený\r\nuklízený\r\nuklízet\r\nuklobat\r\nuklofat\r\núklona\r\nuklonění\r\nukloněný\r\núklon\r\nuklonit\r\núklonný\r\nuklouzání\r\nuklouzat\r\nuklouzávání\r\nuklouzávat\r\nuklouznout\r\nuklouznutí\r\nuklovat\r\nuklovat\r\nuklovu\r\nukňouranější\r\nukňourání\r\nukňouraný\r\nukňourat\r\nukočírování\r\nukočírovaný\r\nukočírovat\r\nukodrcání\r\nukodrcaný\r\nukodrcat\r\nukojenější\r\nukojení\r\nukojený\r\nukojit\r\nukojitelnější\r\nukojitelný\r\nukoktanější\r\núkolářčin\r\núkolářka\r\núkolář\r\núkolářův\r\nukolébání\r\nukolébaný\r\nukolébat\r\nukolébávající\r\nukolébávání\r\nukolébávaný\r\nukolébávat\r\nukolébavka\r\nukolébavý\r\núkol\r\núkolování\r\núkolovaný\r\núkolovat\r\núkolovávání\r\núkolovávaný\r\núkolovávat\r\núkolový\r\nukončenější\r\nukončení\r\nukončený\r\nukončit\r\nukončovací\r\nukončování\r\nukončovaný\r\nukončovat\r\nukončující\r\nukonejšení\r\nukonejšený\r\nukonejšit\r\núkon\r\nukoordinování\r\nukoordinovaný\r\nukoordinovat\r\nukopanější\r\nukopání\r\nukopaný\r\nukopat\r\nukopávání\r\nukopávaný\r\nukopávat\r\nukopnout\r\nukopnutí\r\nukopnutý\r\nukoptěnější\r\nukoptěný\r\núkor\r\nukormidlování\r\nukormidlovaný\r\nukormidlovat\r\nukořistění\r\nukořistěný\r\nukořistit\r\nukořištění\r\nukořištěný\r\núkos\r\núkosový\r\nukotvení\r\nukotvený\r\nukotvit\r\nukotvovací\r\nukotvování\r\nukotvovaný\r\nukotvovat\r\nukotvující\r\nukoulení\r\nukoulený\r\nukoulet\r\nukousanější\r\nukousání\r\nukousaný\r\nukousat\r\nukousávající\r\nukousávanější\r\nukousávání\r\nukousávaný\r\nukousávat\r\nukousnout\r\nukousnutější\r\nukousnutí\r\nukousnutý\r\nukousnutý\r\nukoušu\r\nukout\r\nukovanější\r\nukování\r\nukovaný\r\nukovat\r\nukovávání\r\nukovávaný\r\nukovávat\r\nukovu\r\nukrácení\r\nukrácený\r\nukracovat\r\nukrádání\r\nukrádaný\r\nukrádat\r\nukradenější\r\nukradení\r\nukradený\r\nukradnout\r\nUkrajina\r\nUkrajincův\r\nUkrajinčin\r\nUkrajinec\r\nukrajinistika\r\nUkrajinka\r\nukrajinský\r\nukrajinština\r\nukrajování\r\nukrajovaný\r\nukrajovat\r\nukrajovávání\r\nukrajovávaný\r\nukrajovávat\r\nukrást\r\nukrátit\r\nukrocení\r\nukrocený\r\nukročení\r\nukročený\r\nukročit\r\núkrojek\r\nukrojení\r\nukrojený\r\nukrojit\r\núkrok\r\núkrop\r\nukrotit\r\nukroucení\r\nukroucený\r\nukrouhání\r\nukrouhaný\r\nukrouhat\r\nukrouhávání\r\nukrouhávaný\r\nukrouhávat\r\nukroutit\r\nukrutánštější\r\nukrutnější\r\nukrutnice\r\nukrutník\r\nukrutníkův\r\nukrutný\r\nukrýt\r\nukrytější\r\nukrytelnější\r\nukrytelný\r\núkryt\r\nukrytí\r\nukrytý\r\nukrytý\r\nukrývající\r\nukrývanější\r\nukrývání\r\nukrývaný\r\nukrývatelnější\r\nukrývatelný\r\nukrývat\r\nukrývka\r\nukřičenější\r\nukřičení\r\nukřičený\r\nukřičet\r\nukřivděnější\r\nukřivdění\r\nukřivděný\r\nukřivdit\r\nukřivzení\r\nukřivzený\r\nukřižování\r\nukřižovaný\r\nukřížovaný\r\nukřižovat\r\nukuchtění\r\nukuchtěný\r\nukuchtit\r\nukusovanější\r\nukusování\r\nukusovaný\r\nukusovat\r\nukusující\r\nukutí\r\nukutý\r\nukvapenější\r\nukvapení\r\nukvapený\r\nukvapit\r\nukvapování\r\nukvapovaný\r\nukvapovat\r\nukvasit\r\nukvašení\r\nukvašený\r\nukvedlání\r\nukvedlaný\r\nukvedlat\r\nukvedlávání\r\nukvedlávaný\r\nukvedlávat\r\nukvrdlat\r\nul\r\nuladění\r\nuladěný\r\nuladit\r\nulámání\r\nulámaný\r\nulámat\r\nulamování\r\nulamovaný\r\nulamovat\r\nulamovávání\r\nulamovávaný\r\nulamovávat\r\nulatňování\r\nUlbrichtová\r\nUlbricht\r\nUlbrichtův\r\nulehání\r\nuléhání\r\nulehat\r\nuléhat\r\nuléhávání\r\nuléhávat\r\nulehčenější\r\nulehčení\r\nulehčený\r\nulehčit\r\nulehčovanější\r\nulehčování\r\nulehčovaný\r\nulehčovat\r\nulehčující\r\nulehlý\r\nulehnout\r\nulehnutí\r\nulejvácký\r\nulejváctví\r\nulejvačka\r\nulejvák\r\nulekanější\r\nulekaně\r\núlek\r\núlek\r\nuleknout\r\nuleknutí\r\nulepenější\r\nulepení\r\nulepený\r\nulepit\r\nulétání\r\nulétaný\r\nulétat\r\nulétávání\r\nulétávat\r\nuletění\r\nuletěný\r\nuletět\r\núlet\r\nulétlý\r\nulétnout\r\nulétnutí\r\nulétnutý\r\núleva\r\nulevení\r\nulevený\r\nulevit\r\núlevnější\r\núlevný\r\nulevování\r\nulevovat\r\nulevující\r\nulezení\r\nulézt\r\nuleželejší\r\nuleželý\r\nuležení\r\nuležený\r\nuležet\r\núl\r\nulhanější\r\nÚlice\r\nulice\r\núlický\r\nulička\r\nuličnice\r\nuličnický\r\nuličnictví\r\nuličničtější\r\nuličník\r\nuličníkův\r\nuliční\r\nUličný\r\núlisnější\r\núlisný\r\nulítanější\r\nulítání\r\nulítaný\r\nulítat\r\nulita\r\núlitba\r\nulít\r\nulití\r\nulitka\r\nulítnout\r\nulítnutí\r\nulit\r\nulitý\r\nulívanější\r\nulívání\r\nulívaný\r\nulívat\r\nulízanější\r\nulízaný\r\nulíznout\r\nulíznutí\r\nulíznutý\r\nulizování\r\nulizovaný\r\nulizovat\r\nulkus\r\nUllmannová\r\nUllmann\r\nUllmannův\r\nUllrichová\r\nUllrich\r\nUllrichův\r\nUlmanová\r\nUlman\r\nUlmanův\r\núloha\r\núlohový\r\núlomek\r\nulomení\r\nulomený\r\nulomit\r\núlomkovitější\r\núlomkovitý\r\nuloupení\r\nuloupený\r\nuloupit\r\nuloupnout\r\nuloupnutí\r\nuloupnutý\r\núlovek\r\nulovení\r\nulovený\r\nulovit\r\nuloženina\r\nuložení\r\nuložený\r\núložiště\r\nuložit\r\nuložitelný\r\nuložitel\r\nuložitelův\r\núložka\r\núložní\r\núložný\r\nulpělý\r\nulpění\r\nulpět\r\nulpít\r\nulpívající\r\nulpívání\r\nulpívat\r\nUlrichová\r\nUlrich\r\nUlrichův\r\nUlrychová\r\nUlrych\r\nUlrychův\r\nultimativnější\r\nultimativní\r\nultimatum\r\nultimátum\r\nultra\r\nultrabazický\r\nultracitlivý\r\nultrafialový\r\nultrafiltrace\r\nultrafiltr\r\nultrajemnozrnný\r\nultrakomunista\r\nultrakomunistčin\r\nultrakomunistka\r\nultrakomunistův\r\nultrakonservatismus\r\nultrakonzervatismus\r\nultrakrátký\r\nultralehký\r\nultralevicovější\r\nultralevicový\r\nultralevičák\r\nultralevý\r\nultraliberalismus\r\nultraliberální\r\nultralight\r\nultramarín\r\nultramarínový\r\nultramikroduplexní\r\nultramikroduplexní\r\nultramikrotriplexní\r\nultramikrotriplexní\r\nultramoderní\r\nultramontanismus\r\nultranacionalismus\r\nultranacionalista\r\nultranacionalistčin\r\nultranacionalistický\r\nultranacionalistka\r\nultranacionalistův\r\nultrapravicový\r\nultrapravičák\r\nultrapravý\r\nultraradikální\r\nultrastruktura\r\nultravakuový\r\nultrazvuk\r\nultrazvukový\r\nUlvrová\r\nUlvr\r\nUlvrův\r\numáčenější\r\numáčení\r\numáčený\r\numáčet\r\numačkání\r\numačkaný\r\numačkat\r\numakanější\r\numakart\r\numakartový\r\numanout\r\numanutý\r\numastit\r\numaštění\r\numaštěný\r\numatlání\r\numatlaný\r\numatlat\r\numatlávání\r\numatlávaný\r\numatlávat\r\numazanější\r\numazání\r\numazaný\r\numazat\r\numazávající\r\numazávání\r\numazávaný\r\numazávat\r\numáznout\r\numáznutí\r\numáznutý\r\numberština\r\numdlelejší\r\numdlenější\r\numdlení\r\numdlený\r\numdlévající\r\numdlévání\r\numdlévaný\r\numdlévat\r\numdlít\r\numdlívání\r\numdlívat\r\numějící\r\numělcův\r\numěleckohistorický\r\numěleckopedagogický\r\numěleckoprůmyslový\r\numěleckořemeslný\r\numělecký\r\numělectví\r\numělec\r\numělečtější\r\numělejší\r\numělkyně\r\numělkynin\r\numělohmotný\r\numelu\r\numělý\r\numěnímilovný\r\numění\r\numenšení\r\numenšený\r\numenšit\r\numenšování\r\numenšovaný\r\numenšovat\r\núměra\r\núměrnější\r\núměrný\r\numěřenější\r\numěřený\r\numést\r\numět\r\numetání\r\numetaný\r\numetat\r\numetávání\r\numetávaný\r\numetávat\r\numetení\r\numetený\r\num\r\numíchání\r\numíchaný\r\numíchat\r\numíchávání\r\numíchávaný\r\numíchávat\r\numilování\r\numilovaný\r\numilovat\r\numilovávání\r\numilovávaný\r\numilovávat\r\numíněncův\r\numíněnec\r\numíněnější\r\numínění\r\numíněnkyně\r\numíněnkynin\r\numíněný\r\numínit\r\numiňování\r\numiňovaný\r\numiňovat\r\numírací\r\numíráček\r\numírající\r\numírající\r\numírání\r\numírat\r\numírávání\r\numírávat\r\numírněncův\r\numírněnec\r\numírněnější\r\numírnění\r\numírněný\r\numírnit\r\numírňování\r\numírňovaný\r\numírňovat\r\numírňující\r\numístěnější\r\numístění\r\numístěnka\r\numístěný\r\numístit\r\numístitelnější\r\numístitelný\r\numisťme\r\numisť\r\numístnění\r\numisťovanější\r\numísťovanější\r\numisťování\r\numísťování\r\numisťovaný\r\numísťovaný\r\numisťovat\r\numísťovat\r\numisťte\r\numixování\r\numixovaný\r\numixovat\r\numlácenější\r\numlácení\r\numlácený\r\numlátit\r\nUmlaufová\r\nUmlauf\r\nUmlaufův\r\numlaut\r\numlčení\r\numlčený\r\numlčet\r\numlčování\r\numlčovaný\r\numlčovat\r\numlčující\r\numlel\r\numlení\r\numletější\r\numletí\r\numlet\r\numletý\r\numletý\r\numlít\r\numlkající\r\numlkají\r\numlkáme\r\numlkám\r\numlká\r\numlkáš\r\numlkáte\r\numlkat\r\numlkejme\r\numlkej\r\numlkejte\r\numlknout\r\numlknutí\r\numlouvání\r\numlouvaný\r\numlouvat\r\númluva\r\numluvení\r\numluvený\r\numluvit\r\numnější\r\numný\r\numocněnější\r\numocnění\r\numocněný\r\numocnit\r\numocňování\r\numocňovaný\r\numocňovat\r\numocňující\r\numolousanější\r\numolousaný\r\nÚmonín\r\númonínský\r\númor\r\númorný\r\númorový\r\numořenější\r\numoření\r\numořený\r\numořit\r\numořitelnější\r\numořitelný\r\numořovací\r\numořování\r\numořovaný\r\numořovat\r\numořovávat\r\numotání\r\numotaný\r\numotat\r\numoudření\r\numoudřit\r\numouněnější\r\numouněný\r\numožněnější\r\numožnění\r\numožněný\r\numožnit\r\numožňování\r\numožňovaný\r\numožňovat\r\numožňovávat\r\numožnující\r\numožňující\r\numravnění\r\numravněný\r\numravnit\r\numravňování\r\numravňovaný\r\numravňovat\r\numravňovávat\r\numravňující\r\numra\r\numrazení\r\numrazený\r\numrazit\r\numrlcův\r\numrlčí\r\numrlec\r\numrlejší\r\numrlý\r\númrtí\r\númrtní\r\númrtnostní\r\numrtvení\r\numrtvený\r\numrtvit\r\numrtvovací\r\numrtvování\r\numrtvovaný\r\numrtvovat\r\numrtvující\r\numrzání\r\numrzat\r\numrzlejší\r\numrzlý\r\numrznout\r\numrznutí\r\numrznutý\r\numřelejší\r\numřelý\r\numření\r\numřít\r\numučenější\r\numučení\r\numučený\r\numučit\r\númysl\r\númyslnější\r\númyslný\r\numýt\r\numytější\r\numytí\r\numytý\r\numytý\r\numývací\r\numývačka\r\numývač\r\numývačův\r\numyvadélko\r\numyvadlo\r\numývadlo\r\numyvadlový\r\numývanější\r\numývání\r\numývaný\r\numyvárna\r\numývárna\r\numyvatelnější\r\numývatelnější\r\numývatelný\r\numývat\r\nUNAEC\r\nunáhlenější\r\nunáhlení\r\nunáhlený\r\nunáhlit\r\nunáhlovat\r\nunanimismus\r\nunanimista\r\nunanimistčin\r\nunanimistka\r\nunanimistův\r\nÚnanov\r\núnanovský\r\nunární\r\nunášející\r\nunášenější\r\nunášení\r\nunášený\r\nunášet\r\nunášivější\r\nunášivý\r\núnava\r\nunavenější\r\nunavení\r\nunavený\r\nunavit\r\nunavitelnější\r\nunavitelný\r\núnavnější\r\núnavný\r\nunavování\r\nunavovaný\r\nunavovat\r\núnavový\r\nunavující\r\nunce\r\nUNCTAD\r\nUnčín\r\nunčínský\r\nundecima\r\nundekahydrát\r\nunderground\r\nundergroundovější\r\nundergroundový\r\nunderwoodka\r\nUNDP\r\nUNEF\r\nUNESCO\r\nunesenější\r\nunesení\r\nunesený\r\nunést\r\nunešenější\r\nÚněšov\r\núněšovský\r\nÚnětice\r\núnětický\r\nUngelt\r\nUngerová\r\nUnger\r\nUngerův\r\nUngrová\r\nUngr\r\nUngrův\r\nunhošťský\r\nUnhošť\r\nuniat\r\nuniatův\r\nUNICEF\r\nunicita\r\nUničov\r\nuničovský\r\nUNIDO\r\nunie\r\nunifikace\r\nunifikační\r\nunifikování\r\nunifikovaný\r\nunifikovat\r\nunifikovatelný\r\nunifikovávání\r\nunifikovávaný\r\nunifikovávat\r\nunifikující\r\nuniforma\r\nuniformita\r\nuniformní\r\nuniformovaný\r\nunikající\r\nunikání\r\nunikát\r\nunikat\r\nunikátnější\r\nunikátní\r\nunikavější\r\nunikavý\r\núnik\r\nuniklejší\r\nuniklý\r\nuniknout\r\nuniknutí\r\nunikoherentní\r\núnikovější\r\núnikový\r\nunikum\r\nunimetrický\r\nunimodulární\r\nUnín\r\nunínský\r\nunionismus\r\nunionista\r\nunionistčin\r\nunionistický\r\nunionistka\r\nunionistův\r\nunionka\r\nunipolárnější\r\nunipolární\r\nunisono\r\nunisonový\r\nunitarismus\r\nunitarista\r\nunitaristčin\r\nunitaristický\r\nunitaristka\r\nunitaristův\r\nunitarizační\r\nunitární\r\nunitářčin\r\nunitářka\r\nunitářství\r\nunitář\r\nunitářův\r\nunita\r\nunivalentní\r\nuniverbizace\r\nuniversalismus\r\nuniversalista\r\nuniversalistčin\r\nuniversalistický\r\nuniversalističtější\r\nuniversalistka\r\nuniversalistův\r\nuniversálnější\r\nuniversální\r\nuniversita\r\nuniversitní\r\nuniversum\r\nuniverzálie\r\nuniverzalismus\r\nuniverzalista\r\nuniverzalistčin\r\nuniverzalističtější\r\nuniverzalistka\r\nuniverzalistův\r\nuniverzalita\r\nuniverzalizovat\r\nuniverzálnější\r\nuniverzální\r\nuniverziáda\r\nuniverziádní\r\nuniverzita\r\nuniverzitní\r\nuniverzum\r\nUnix\r\nunixovější\r\nunixový\r\nUNO\r\núnor\r\núnorovější\r\núnorový\r\núnosce\r\núnoscův\r\núnos\r\nunosit\r\núnoskyně\r\núnoskynin\r\núnosnější\r\núnosný\r\nunošení\r\nunošený\r\nunožení\r\nunožený\r\nunožit\r\nunožování\r\nunožovaný\r\nunožovat\r\nunuděnější\r\nunudění\r\nunuděný\r\nunudit\r\nunylejší\r\nunylý\r\nuondanější\r\nuondat\r\nuondávat\r\nUP\r\nupadající\r\nupadanější\r\nupadání\r\nupadaný\r\nupadat\r\nupadávání\r\nupadávaný\r\nupadávat\r\núpadce\r\núpadcův\r\núpadek\r\núpad\r\núpadkový\r\nupadlejší\r\nupadlý\r\nupadnout\r\nupadnutí\r\nupachtěnější\r\nupachtěný\r\nupálenější\r\nupálení\r\nupálený\r\núpal\r\nupálit\r\nupalovací\r\nupalovanější\r\nupalovaní\r\nupalování\r\nupalovaný\r\nupalovat\r\nupalovávání\r\nupalovávaný\r\nupalovávat\r\nupalující\r\nupamatování\r\nupamatovaný\r\nupamatovat\r\nupárání\r\nupáraný\r\nupárat\r\nupářeme\r\nupáře\r\nupářeš\r\nupářete\r\nupářou\r\nupářu\r\núpatí\r\nupatlanější\r\nupatlání\r\nupatlaný\r\nupatlat\r\nupatlávání\r\nupatlávaný\r\nupatlávat\r\núpatní\r\nÚpa\r\nupažení\r\nupažený\r\nupažit\r\nupažování\r\nupažovaný\r\nupažovat\r\nupéct\r\nupečenější\r\nupečení\r\nupečený\r\nupěchování\r\nupěchovaný\r\nupěchovat\r\núpějící\r\nupejpání\r\nupejpat\r\nupejpavější\r\nupejpavý\r\núpění\r\núpěnlivější\r\núpěnlivý\r\núpět\r\nupevnění\r\nupevněný\r\nupevnit\r\nupevňovací\r\nupevňování\r\nupevňovaný\r\nupevňovat\r\nupevňovávat\r\nupevňující\r\nUPI\r\nÚpice\r\núpící\r\núpický\r\núpický\r\nupíchání\r\nupíchaný\r\nupíchat\r\nupíchávání\r\nupíchávaný\r\nupíchávat\r\nupíchnout\r\nupíchnutí\r\nupíchnutý\r\nupichovací\r\nupichování\r\nupichovaný\r\nupichovat\r\nupíjející\r\nupíjenější\r\nupíjení\r\nupíjený\r\nupíjet\r\nupilování\r\nupilovaný\r\nupilovat\r\nupilovávání\r\nupilovávaný\r\nupilovávat\r\nupínací\r\nupínač\r\nupínadlo\r\nupínající\r\nupínání\r\nupínaný\r\nupínat\r\nupínka\r\nupírající\r\nupíranější\r\nupírání\r\nupíraný\r\nupírat\r\nupír\r\nupírství\r\nupírův\r\núpis\r\nupískanější\r\nupískání\r\nupískaný\r\nupískat\r\nupisovací\r\nupisovanější\r\nupisování\r\nupisovaný\r\nupisovat\r\nupisovatelský\r\nupisovatel\r\nupisovatelův\r\núpisový\r\nupisující\r\nupíši\r\nupíšu\r\nupít\r\nupitější\r\nupití\r\nupit\r\nupitý\r\nupitý\r\nupižlání\r\nupižlaný\r\nupižlat\r\nupižlávat\r\nupjatější\r\nupjatý\r\nupjatý\r\nuplácanější\r\nuplácanina\r\nuplácání\r\nuplácaný\r\nuplácat\r\nuplácávání\r\nuplácávaný\r\nuplácávat\r\nuplácející\r\nuplacenější\r\nuplácenější\r\nuplacení\r\nuplácení\r\nuplacený\r\nuplácený\r\nuplácet\r\nupláchnout\r\nupláchnutí\r\nupláchnutý\r\nuplakající\r\nuplakanější\r\nuplakání\r\nuplakaný\r\nuplakat\r\nuplánování\r\nuplánovaný\r\nuplánovat\r\nuplaňující\r\núplata\r\núplatek\r\nuplatit\r\nuplatitelnější\r\nuplatitelný\r\núplatkářský\r\núplatkařství\r\núplatkářství\r\núplatkář\r\núplatkářův\r\núplatkový\r\núplatnější\r\nuplatnění\r\nuplatněný\r\nuplatnit\r\nuplatnitelnější\r\nuplatnitelný\r\nuplatňování\r\nuplatňovaný\r\nuplatňovat\r\nuplatňovatelnější\r\nuplatňovávat\r\nuplatňující\r\núplatný\r\nuplavání\r\nuplavaný\r\nuplavat\r\nuplavávání\r\nuplavávat\r\nuplavejme\r\nuplavej\r\nuplavejte\r\núplavice\r\núplavičný\r\nuplazení\r\nuplazit\r\nuplést\r\nuplétání\r\nuplétaný\r\nuplétat\r\nupletenější\r\nupletení\r\nupletený\r\núplet\r\núpletový\r\nuplivnout\r\nuplivnutí\r\nuplivnutý\r\nuplivovat\r\nuplkanější\r\núplnější\r\núplněk\r\núplňkový\r\núplný\r\nupload\r\nuplouhanější\r\nuplout\r\nuplouvání\r\nuplouvaný\r\nuplouvat\r\nuplutí\r\nuplutý\r\nupluženější\r\nuplužení\r\nuplužený\r\nuplužit\r\nuplynout\r\nuplynulý\r\nuplynutí\r\nuplynutý\r\nuplývající\r\nuplývání\r\nuplývat\r\nupnout\r\nupnutější\r\nupnutí\r\nupnutý\r\nupocenější\r\nupocený\r\nupokojenější\r\nupokojení\r\nupokojený\r\nupokojit\r\nupolín\r\nupomenout\r\nupomenutí\r\nupomenutý\r\nupomínající\r\nupomínání\r\nupomínaný\r\nupomínat\r\nupomínka\r\nupomínkový\r\núponek\r\núpon\r\núponka\r\núponkovitý\r\núponový\r\núpornější\r\núporný\r\nuposlechnout\r\nuposlechnutější\r\nuposlechnutí\r\nuposlechnutý\r\nuposlechnutý\r\nupospíchaný\r\nupotřebenější\r\nupotřebení\r\nupotřebený\r\nupotřebit\r\nupotřebitelnější\r\nupotřebitelný\r\nupouštějící\r\nupouštěnější\r\nupouštění\r\nupouštěný\r\nupouštět\r\nupoutání\r\nupoutaný\r\nupoutat\r\nupoutávací\r\nupoutávající\r\nupoutávání\r\nupoutávaný\r\nupoutávat\r\nupoutávka\r\nupovídanější\r\nupovídání\r\nupovídaný\r\nupovídat\r\nupozaďovat\r\nupozaďující\r\nupozornění\r\nupozorněný\r\nupozornit\r\nupozorňovací\r\nupozorňování\r\nupozorňovaný\r\nupozorňovat\r\nupozorňující\r\nupracovanější\r\nupracování\r\nupracovaný\r\nupracovat\r\nupracovávanější\r\nupracovávání\r\nupracovávaný\r\nupracovávat\r\nuprání\r\nuprášenější\r\nuprášení\r\nuprášený\r\nuprášit\r\nuprat\r\núpravárenský\r\núpravárenství\r\núpravář\r\núpravářův\r\núprava\r\núpravce\r\núpravcův\r\nupravenější\r\nupravení\r\núpravenský\r\núpravenství\r\nupravený\r\nupravit\r\núpravna\r\núpravnější\r\núpravnický\r\núpravnictví\r\núpravný\r\nupravovací\r\nupravovač\r\nupravovačův\r\nupravování\r\nupravovaný\r\nupravovat\r\nupravovatel\r\nupravovatelův\r\nupravovování\r\nupravovovaný\r\nupravovovat\r\nupravující\r\nuprázdnění\r\nuprázdněný\r\nuprázdnit\r\nupražení\r\nupražený\r\nupražit\r\nuprchlice\r\nuprchlický\r\nuprchlictví\r\nuprchličin\r\nuprchlík\r\nuprchlíkův\r\nuprchlý\r\nuprchnout\r\nuprchnutí\r\nuprchnutý\r\núprk\r\núprkový\r\nuprosení\r\nuprosený\r\nuprosit\r\núprosnější\r\núprosný\r\nuprostřed\r\nuprošování\r\nuprošovat\r\nuprsknout\r\nuprsknutí\r\nuprsknutý\r\nupředenější\r\nupředení\r\nupředen\r\nupředený\r\nupřednostnění\r\nupřednostněný\r\nupřednostnit\r\nupřednostňování\r\nupřednostňovaný\r\nupřednostňovat\r\nupřednostňovávat\r\nupřednostňující\r\nupřenější\r\nupření\r\nupřený\r\nupřesněnější\r\nupřesnění\r\nupřesněný\r\nupřesnit\r\nupřesňovací\r\nupřesňování\r\nupřesňovaný\r\nupřesňovat\r\nupřesňovávat\r\nupřesňující\r\nupřílišněný\r\nupřílišnit\r\nupřímnější\r\nupřímný\r\nupřimný\r\nupříst\r\nupřít\r\nupsal\r\nupsanější\r\nupsanější\r\nupsání\r\nupsán\r\nupsaný\r\nupsáný\r\nupsat\r\núpský\r\nupustit\r\nupuštěnější\r\nupuštění\r\nupuštěný\r\nupytlačení\r\nupytlačený\r\nupytlačit\r\nuracil\r\nuracilový\r\nuráčení\r\nuráčit\r\núradek\r\nuragán\r\nUral\r\nuralský\r\nuralštější\r\nurámusený\r\nuran\r\nuraničitý\r\nuraničný\r\nuranitý\r\nuranový\r\nuranyl\r\núraz\r\nurazit\r\núrazovější\r\núrazovka\r\núrazový\r\núrazový\r\nurážející\r\nuraženectví\r\nuraženější\r\nuražení\r\nurážení\r\nuražený\r\nurážený\r\nurážet\r\nurážka\r\nurážlivější\r\nurážlivý\r\nurážlivý\r\nUrbancová\r\nUrbancův\r\nUrbanec\r\nUrbánek\r\nurbanismus\r\nurbanista\r\nurbanistčin\r\nurbanistický\r\nurbanističtější\r\nurbanistika\r\nurbanistka\r\nurbanistův\r\nurbanizace\r\nurbanizování\r\nurbanizovaný\r\nurbanizovat\r\nUrbánková\r\nUrbánkův\r\nUrbanová\r\nUrbanovičová\r\nUrbanovič\r\nUrbanovičův\r\nUrbanov\r\nurbanovský\r\nUrban\r\nUrbanův\r\nurbariální\r\nurbariát\r\nurbář\r\nurbářův\r\nUrbášek\r\nUrbášková\r\nUrbáškův\r\nurčenější\r\nurčení\r\nurčený\r\nUrčice\r\nurčický\r\nurčit\r\nurčitější\r\nurčitelnější\r\nurčitelný\r\nurčitý\r\nurčovací\r\nurčování\r\nurčovaný\r\nurčovat\r\nurčovatelčin\r\nurčovatelka\r\nurčovatel\r\nurčovatelův\r\nurčující\r\nUrdanová\r\nUrdan\r\nUrdanův\r\nurdština\r\nuregulování\r\nuregulovaný\r\nuregulovat\r\nuregulovávání\r\nuregulovávaný\r\nuregulovávat\r\nUrešová\r\nUreš\r\nUrešův\r\nurežírování\r\nurežírovaný\r\nurežírovat\r\nurgence\r\nurgentnější\r\nurgentní\r\nUrgošíková\r\nUrgošík\r\nUrgošíkův\r\nurgování\r\nurgovaný\r\nurgovat\r\nuridin\r\nurijština\r\nUriková\r\nUrik\r\nUrikův\r\nURL\r\nurna\r\nurniččin\r\nurnička\r\nurnový\r\nÚRO\r\núročení\r\núročený\r\núročit\r\núročník\r\núroční\r\núročný\r\núroda\r\núrodička\r\nurodit\r\núrodnější\r\núrodný\r\nurodynamika\r\núrok\r\núrokování\r\núrokovaný\r\núrokovat\r\núrokový\r\nurolithiáza\r\nurologický\r\nurologie\r\nurolog\r\nurologův\r\nuroložčin\r\nuroložka\r\nuroněnější\r\nuronění\r\nuroněný\r\nuronící\r\nuronit\r\nurostlejší\r\nurostlý\r\nurousanější\r\nurousání\r\nurousaný\r\nurousat\r\núroveň\r\nurovnanější\r\nurovnání\r\nurovnaný\r\nurovnat\r\nurovnávající\r\nurovnávání\r\nurovnávaný\r\nurovnávat\r\núrovňový\r\nurozenější\r\nurození\r\nurozený\r\nurozmazávanější\r\nurozmazávaný\r\nurputnější\r\nurputný\r\nUrquhart\r\nUrsínyová\r\nUrsínyův\r\nUrsíny\r\nurština\r\nUruguaycův\r\nUruguayčin\r\nUruguayec\r\nUruguayka\r\nuruguayský\r\nUruguay\r\nurvalejší\r\nurvanější\r\nurvaní\r\nurvání\r\nurvaný\r\nurvat\r\nurvávání\r\nurvávaný\r\nurvávat\r\nurychlenější\r\nurychlení\r\nurychlený\r\nurychlit\r\nurychlovací\r\nurychlovač\r\nurychlování\r\nurychlovaný\r\nurychlovat\r\nurychlovávání\r\nurychlovávaný\r\nurychlovávat\r\nurychlující\r\nUrychová\r\nUrych\r\nUrychův\r\nurýpávání\r\nurýpávaný\r\nurýpávat\r\nurýpnout\r\núryvek\r\núryvkovitější\r\núryvkovitý\r\núřada\r\núřad\r\núřadování\r\núřadovaný\r\núřadovat\r\núřadovna\r\nuřadující\r\núřadující\r\nuřčení\r\nuřečen\r\nuřečený\r\núřednější\r\núřednice\r\núřednický\r\núřednictvo\r\núředníček\r\núředníčkův\r\núředničtější\r\núředník\r\núředníkův\r\núřední\r\nuřehtání\r\nuřehtaný\r\nuřehtat\r\nuřekl\r\nuřeknout\r\nuřeknu\r\nuřeknutí\r\nuřeknuv\r\nuřezanější\r\nuřezání\r\nuřezaný\r\nuřezat\r\nuřezávající\r\nuřezávanější\r\nuřezávání\r\nuřezávaný\r\nuřezávat\r\nuřícenější\r\nuřícení\r\nuřícený\r\nuříci\r\nuříct\r\nuřídit\r\nuřízení\r\nuřízený\r\nuříznout\r\nuříznutější\r\nuříznutí\r\nuříznutý\r\nuříznutý\r\nuřknout\r\nuřknutí\r\nuřknutý\r\nuřvanější\r\nuřvání\r\nuřvaný\r\nuřvat\r\nUS\r\nUSA\r\núsada\r\nusadit\r\nusaditelný\r\nusazenější\r\nusazenina\r\nusazení\r\nusazený\r\nusazovací\r\nusazovadlo\r\nusazování\r\nusazovaný\r\nusazovat\r\nusazující\r\nUSD\r\nusebranější\r\nusebrání\r\nusebraný\r\nusebrat\r\núsečka\r\núsečnější\r\núsečný\r\núsečový\r\núseč\r\nusedající\r\nusedání\r\nusedat\r\nusedávání\r\nusedávat\r\nusedavější\r\nusedavý\r\nusedlejší\r\nusedlík\r\nusedlíkův\r\nusedlý\r\nusednout\r\nusednutí\r\nusekanější\r\nusekání\r\nusekaný\r\núsekářčin\r\núsekářka\r\núsekář\r\núsekářův\r\nusekat\r\nusekávající\r\nusekávání\r\nusekávaný\r\nusekávat\r\núsek\r\nuseknout\r\nuseknutí\r\nuseknutý\r\núsekový\r\núseku\r\nUsenet\r\nuseň\r\nÚSES\r\nuschlejší\r\nuschlý\r\nuschnl\r\nuschnout\r\nuschnutí\r\nuschopnění\r\nuschopněný\r\nuschopnit\r\nuschopňovat\r\nuschovací\r\nuschování\r\nuschovaný\r\nuschovaný\r\nuschovatelčin\r\nuschovatelka\r\nuschovatel\r\nuschovatelův\r\nuschovat\r\nuschovávací\r\nuschovávající\r\nuschovávání\r\nuschovávaný\r\nuschovávat\r\núschova\r\núschovna\r\núschovný\r\nusídlencův\r\nusídlenec\r\nusídlenější\r\nusídlení\r\nusídlený\r\nusídlit\r\nusidlování\r\nusídlování\r\nusidlovaný\r\nusídlovaný\r\nusidlovat\r\nusídlovat\r\nusidlovávání\r\nusídlovávání\r\nusidlovávaný\r\nusídlovávaný\r\nusidlovávat\r\nusídlovávat\r\nusidlující\r\nusídlující\r\núsilenský\r\núsilí\r\nÚsilné\r\nusilování\r\nusilovaný\r\nusilovat\r\nusilovávání\r\nusilovávaný\r\nusilovávat\r\nÚsilov\r\nusilovnější\r\nusilovný\r\núsilovský\r\nusilující\r\nusínací\r\nusínající\r\nusínání\r\nusínat\r\nuskákanější\r\nuskákání\r\nuskákáno\r\nuskákaný\r\nuskákat\r\nuskakování\r\nuskakovat\r\nuskakovávání\r\nuskakovávaný\r\nuskakovávat\r\núskalí\r\nuskladnění\r\nuskladněný\r\nuskladnit\r\nuskladňování\r\nuskladňovaný\r\nuskladňovat\r\nuskočení\r\nuskočit\r\núskočnější\r\núskočný\r\núskok\r\nuskromnění\r\nuskromněný\r\nuskromnit\r\nuskromňování\r\nuskromňovat\r\nuskrovnění\r\nuskrovněný\r\nuskrovnit\r\nuskrovňování\r\nuskrovňovat\r\nuskrovňovávat\r\nuskřinutý\r\nuskřípnout\r\nuskřípnutí\r\nuskřípnutý\r\nuskupení\r\nuskupený\r\nuskupit\r\nuskupování\r\nuskupovaný\r\nuskupovat\r\nuskutečněnější\r\nuskutečnění\r\nuskutečněný\r\nuskutečnit\r\nuskutečnitelnější\r\nuskutečnitelný\r\nuskutečňovanější\r\nuskutečňování\r\nuskutečňovaný\r\nuskutečňovat\r\nuskutečňovatelčin\r\nuskutečňovatelka\r\nuskutečňovávat\r\nuskutečňující\r\nuslintanější\r\núsloví\r\núsluha\r\núslužněji\r\núslužnější\r\núslužný\r\nuslyšenější\r\nuslyšení\r\nuslyšený\r\nuslyšet\r\nuslyšitelný\r\nuslzenější\r\nuslzený\r\nusmání\r\nusmát\r\nusmažení\r\nusmažený\r\nusmažit\r\nusmekání\r\nusmekaný\r\nusmekat\r\nusmekávání\r\nusmekávaný\r\nusmekávat\r\nusměrněnější\r\nusměrnění\r\nusměrněný\r\nusměrnit\r\nusměrnitelný\r\nusměrňovač\r\nusměrňování\r\nusměrňovaný\r\nusměrňovat\r\nusměrňující\r\núsměšek\r\nusměvavější\r\nusměvavý\r\núsměv\r\núsměvnější\r\núsměvný\r\nusmířenější\r\nusmíření\r\nusmířený\r\nusmířit\r\nusmiřitelnější\r\nusmiřovací\r\nusmiřování\r\nusmiřovaný\r\nusmiřovat\r\nusmiřovatel\r\nusmiřovatelův\r\nusmiřovávat\r\nusmívající\r\nusmívání\r\nusmívat\r\nusmívavější\r\nusmívavý\r\nusmlouvání\r\nusmlouvaný\r\nusmlouvat\r\nusmolenější\r\nusmolení\r\nusmolený\r\nusmolit\r\nusmrcení\r\nusmrcený\r\nusmrcování\r\nusmrcovaný\r\nusmrcovat\r\nusmrcovávání\r\nusmrcovávaný\r\nusmrcovávat\r\nusmrcující\r\nusmrkancův\r\nusmrkanec\r\nusmrkanější\r\nusmrkaný\r\nusmrtit\r\nusmýkání\r\nusmýkaný\r\nusmýkat\r\nusmyknout\r\nusmyknutí\r\nusmyslení\r\nusmyslený\r\nusmyslet\r\nusmyslit\r\nusmyšlen\r\nusmýšlet\r\nusnadnění\r\nusnadněný\r\nusnadnit\r\nusnadňování\r\nusnadňovaný\r\nusnadňovat\r\nusnadňující\r\nusnášecí\r\nusnášející\r\nusnášenější\r\nusnášeníneschopný\r\nusnášeníschopnější\r\nusnášeníschopný\r\nusnášení\r\nusnášený\r\nusnášet\r\nusnesení\r\nusnesení\r\nusnesený\r\nusnést\r\nusnout\r\nusňový\r\nusnutí\r\nÚSO\r\nÚsobrno\r\nusoudit\r\nusoukání\r\nusoukaný\r\nusoukat\r\nusoukávání\r\nusoukávaný\r\nusoukávat\r\nusoustavnit\r\nusoustavňovat\r\nusouvztažnění\r\nusouzenější\r\nusouzení\r\nusouzený\r\nusouženější\r\nusoužení\r\nusoužený\r\nusoužit\r\nÚsov\r\núsovský\r\nuspanější\r\nuspání\r\nuspaný\r\nuspat\r\nuspávací\r\nuspávačka\r\nuspávající\r\nuspávání\r\nuspávanka\r\nuspávaný\r\nuspávat\r\nuspěchanější\r\nuspěchání\r\nuspěchaný\r\nuspěchat\r\nuspěchávání\r\nuspěchávaný\r\nuspěchávat\r\núspěch\r\nuspění\r\núspěšnější\r\núspěšnější\r\núspěšnější\r\núspěšný\r\nuspět\r\nuspíšení\r\nuspíšený\r\nuspíšit\r\nuspívající\r\nuspívání\r\nuspívat\r\nusplavnění\r\nusplavněný\r\nusplavnit\r\nuspokojenější\r\nuspokojení\r\nuspokojený\r\nuspokojit\r\nuspokojitelnější\r\nuspokojitelný\r\nuspokojivější\r\nuspokojivý\r\nuspokojování\r\nuspokojovaný\r\nuspokojovat\r\nuspokojující\r\núspora\r\núspornější\r\núsporný\r\nuspořádací\r\nuspořádající\r\nuspořádanější\r\nuspořádání\r\nuspořádaný\r\nuspořadatelný\r\nuspořádat\r\nuspořádávající\r\nuspořádávanější\r\nuspořádávání\r\nuspořádávaný\r\nuspořádávat\r\nuspoření\r\nuspořený\r\nuspořit\r\nusrat\r\nusrkávání\r\nusrkávaný\r\nusrkávat\r\nusrknout\r\nusrknutí\r\nusrknutý\r\nusrkování\r\nusrkovaný\r\nusrkovat\r\nustájení\r\nustájený\r\nustájit\r\nustajovací\r\nustajovat\r\nustájovat\r\nustálenější\r\nustálení\r\nustálený\r\nustálit\r\nustál\r\nustalovací\r\nustalovač\r\nustalování\r\nustalovaný\r\nustalovat\r\nustalovávání\r\nustalovávaný\r\nustalovávat\r\nustalující\r\nústa\r\nustaní\r\nustání\r\nustanovení\r\nustanovený\r\nustanovit\r\nustanovovací\r\nustanovování\r\nustanovovaný\r\nustanovovat\r\nustanovující\r\nustaranější\r\nustarán\r\nustaraný\r\nustat\r\nustátější\r\nustát\r\nustátý\r\nustávající\r\nustávání\r\nustávat\r\nústava\r\nustavení\r\nustavený\r\nústav\r\nustavičnější\r\nustavičný\r\nustavit\r\nústavnější\r\nústavněprávní\r\nústavnictví\r\nústavní\r\nústavodárce\r\nústavodárcův\r\nústavodárný\r\nustavovanější\r\nustavování\r\nustavovaný\r\nustavovat\r\nústavověrnější\r\nústavověrný\r\nustavující\r\nÚstecko\r\nústecký\r\nústecký\r\nústech\r\nustelu\r\nústění\r\nústenka\r\nústící\r\nÚstín\r\nústínský\r\nÚstí\r\nústit\r\nústí\r\nustlal\r\nustlanější\r\nustlání\r\nustlaný\r\nustlat\r\nústní\r\nustojím\r\nustoupení\r\nustoupený\r\nustoupit\r\nústraní\r\nustrašencův\r\nustrašenec\r\nustrašenější\r\nustrašený\r\nÚstrašice\r\nústrašický\r\nÚstrašín\r\nústrašínský\r\nustrážení\r\nustrážený\r\nustrážit\r\nústrety\r\nústrk\r\nustrnout\r\nustrnulejší\r\nustrnulý\r\nustrnutí\r\nustrnutý\r\nustrojení\r\nustrojený\r\nústrojí\r\nustrojit\r\nústrojnější\r\nústrojný\r\nústroj\r\nustrouhání\r\nustrouhaný\r\nustrouhat\r\nústředí\r\nústředna\r\nústřednější\r\nústřední\r\nustřelenější\r\nustřelení\r\nustřelený\r\nústřel\r\nustřelit\r\nustřelování\r\nustřelovaný\r\nustřelovat\r\nustřelovávání\r\nustřelovávaný\r\nustřelovávat\r\nústřice\r\nústřicový\r\nustřihání\r\nustříhání\r\nustřihaný\r\nustříhaný\r\nustřihat\r\nustříhat\r\nustřihávání\r\nustříhávání\r\nustřihávaný\r\nustříhávaný\r\nustřihávat\r\nustříhávat\r\nustřihnout\r\nustřihnutí\r\nustřihovat\r\nústřižek\r\nustřižený\r\nustůjme\r\nustůj\r\nustůjte\r\nústupek\r\nústup\r\nústupnější\r\nústupní\r\nústupný\r\nustupování\r\nustupovat\r\nústupovější\r\nústupový\r\nustupující\r\nustydlejší\r\nustýlání\r\nustýlaný\r\nustýlat\r\núsudek\r\núsudkový\r\nusurpování\r\nusurpovaný\r\nusurpovat\r\nusurpující\r\nusus\r\núsušek\r\nusušenější\r\nusušení\r\nusušený\r\nusušit\r\nusuzovací\r\nusuzovanější\r\nusuzování\r\nusuzovaný\r\nusuzovat\r\nusuzující\r\nÚSV\r\nusvědčenější\r\nusvědčení\r\nusvědčený\r\nusvědčit\r\nusvědčme\r\nusvědč\r\nusvědčování\r\nusvědčovaný\r\nusvědčovat\r\nusvědčte\r\nusvědčující\r\núsvit\r\nusychající\r\nusychání\r\nusychat\r\nusýchat\r\nusypající\r\nusypanější\r\nusypání\r\nusýpání\r\nusypaný\r\nusýpaný\r\nusypat\r\nusýpat\r\nusypávající\r\nusypávanější\r\nusypávání\r\nusypávaný\r\nusypávat\r\núsyp\r\nUŠ\r\nušák\r\nUšáková\r\nUšák\r\nUšákův\r\nušákův\r\nušanka\r\nušatější\r\nušatý\r\nušejkrování\r\nušejkrovaný\r\nušejkrovat\r\nušel\r\nušetření\r\nušetřený\r\nušetřit\r\nuši\r\nuší\r\nuších\r\nuším\r\nušima\r\nušišlanější\r\nušít\r\nušitější\r\nušití\r\nušitý\r\nušitý\r\nušívanější\r\nušívání\r\nušívaný\r\nušívat\r\nuškemrat\r\núšklebek\r\nušklebování\r\nušklebovaný\r\nušklebovat\r\nušklíbající\r\nušklíbání\r\nušklíbat\r\nušklíbnout\r\nušklíbnutí\r\nušklibovat\r\nuškobrtání\r\nuškobrtat\r\nuškodění\r\nuškodilo\r\nuškodit\r\nuškození\r\nuškrabání\r\nuškrábání\r\nuškrabaný\r\nuškrábaný\r\nuškrabat\r\nuškrábat\r\nuškrabávání\r\nuškrabávaný\r\nuškrabávat\r\nuškrabování\r\nuškrabovaný\r\nuškrabovat\r\nuškrcenější\r\nuškrcení\r\nuškrcený\r\nuškrtit\r\nuškubnout\r\nuškubnutí\r\nuškubnutý\r\nuškudlení\r\nuškudlit\r\nuškvařený\r\nuškvařit\r\nuškvařovaný\r\nuškvařovat\r\nušlapanější\r\nušlapání\r\nušlapaný\r\nušlapat\r\nušlapávat\r\nušlápnout\r\nušlápnutí\r\nušlápnutý\r\nušlehání\r\nušlehaný\r\nušlehat\r\nušlechtilejší\r\nušlechtilý\r\nušlejší\r\nušlý\r\nušlý\r\nušmiknout\r\nušmiknutí\r\nušmiknutý\r\nušmodrchání\r\nušmodrchaný\r\nušmodrchat\r\nušmudlanější\r\nušmudlaný\r\nušmudlat\r\nušní\r\nušoupat\r\nušpiněnější\r\nušpinění\r\nušpiněný\r\nušpinit\r\nušpitnout\r\nušpitnutí\r\núštěcký\r\nuštědření\r\nuštědřený\r\nuštědřit\r\nuštědřovat\r\nÚštěk\r\nuštěpačnější\r\nuštěpačný\r\núštěpek\r\núštěp\r\nuštípat\r\nuštípnout\r\nuštípnutí\r\nuštípnutý\r\nuštipování\r\nuštipovaný\r\nuštipovat\r\nuštknout\r\nuštknutí\r\nuštknutý\r\nuštknutý\r\nušťouchání\r\nušťouchaný\r\nušťouchat\r\nušťouchávání\r\nušťouchávaný\r\nušťouchávat\r\nuštvanější\r\nuštvání\r\nuštvaný\r\nuštvat\r\nuštvávání\r\nuštvávaný\r\nuštvávat\r\nUT\r\nutáboření\r\nutábořený\r\nutábořit\r\nutahanější\r\nutahání\r\nutahaný\r\nutahat\r\nutáhnout\r\nutáhnutí\r\nutahovák\r\nutahování\r\nutahovaný\r\nutahovat\r\nutahovávání\r\nutahovávaný\r\nutahovávat\r\nutajenější\r\nutajení\r\nutajený\r\nutajit\r\nutajitelnější\r\nutajovací\r\nutajovač\r\nutajování\r\nutajovaný\r\nutajovat\r\nuťal\r\nutancování\r\nutancovat\r\nuťapat\r\nutápějící\r\nutápěnější\r\nutápění\r\nutápěný\r\nutápět\r\nuťápnout\r\nuťápnutí\r\nuťápnutý\r\nuťatější\r\nuťat\r\nuťatý\r\nuťatý\r\nutavení\r\nutavený\r\nutavit\r\nuťav\r\nutaženější\r\nutažení\r\nutažený\r\nutažitelnější\r\nutažitelný\r\nUTC\r\nutéct\r\nutečencův\r\nutečenecký\r\nutečenec\r\nutečenka\r\nútěcha\r\nÚtěchov\r\nútěchovský\r\nútěchyplnější\r\nútěk\r\nútěkový\r\nútek\r\núterek\r\nÚterek\r\nutěrka\r\nÚterková\r\nÚterkův\r\núterní\r\nuterus\r\núterý\r\núterých\r\núterým\r\núterými\r\nútes\r\nutěsnění\r\nutěsněný\r\nutěsnit\r\nutěsňování\r\nutěsňovaný\r\nutěsňovat\r\nutěsňovávat\r\nútesový\r\nutěšenější\r\nutěšení\r\nutěšený\r\nutěšit\r\nutěšitelčin\r\nutěšitelka\r\nutěšitelnější\r\nutěšitelný\r\nutěšitel\r\nutěšitelův\r\nutěšlivější\r\nútěšlivější\r\nutěšlivý\r\nútěšlivý\r\nútěšnější\r\nútěšný\r\nutěšování\r\nutěšovaný\r\nutěšovat\r\nutěšující\r\nutětí\r\nutichající\r\nutichání\r\nutichat\r\nutichávání\r\nutichávat\r\nutichlejší\r\nutichnout\r\nutichnutí\r\nutíkající\r\nutíkání\r\nutíkat\r\nutíkávání\r\nutíkávat\r\nutilisovat\r\nutilitarianismus\r\nutilitarismus\r\nutilitarista\r\nutilitaristčin\r\nutilitaristický\r\nutilitarističtější\r\nutilitaristka\r\nutilitaristův\r\nutilitárnější\r\nutilitární\r\nutilizace\r\nutilizovaný\r\nutilizovat\r\nutínání\r\nutínaný\r\nutínat\r\nutínávání\r\nutínávaný\r\nutínávat\r\nutíraní\r\nutírání\r\nutíraný\r\nutírat\r\nútisk\r\nutiskování\r\nutiskovaný\r\nutiskovat\r\nutiskovatelčin\r\nutiskovatelka\r\nutiskovatel\r\nutiskovatelův\r\nutišenější\r\nutišení\r\nutišený\r\nutišit\r\nutišitelnější\r\nutišitelný\r\nutišování\r\nutišovaný\r\nutišovat\r\nutišující\r\nutít\r\nutkanější\r\nutkání\r\nutkaný\r\nutkat\r\nutkávanější\r\nutkávání\r\nutkávaný\r\nutkávat\r\nútka\r\nútkový\r\nutkvělejší\r\nutkvělý\r\nutkvění\r\nutkvět\r\nutkvít\r\nutkvívání\r\nutkvívat\r\nutlačenější\r\nutlačení\r\nutlačený\r\nutlačit\r\nutlačivý\r\nutlačovanější\r\nutlačování\r\nutlačovaný\r\nutlačovat\r\nutlačovatelčin\r\nutlačovatelka\r\nutlačovatelnější\r\nutlačovatelný\r\nutlačovatel\r\nutlačovatelův\r\nutlačující\r\nútlak\r\nutlapat\r\nútlejší\r\nutleskání\r\nutleskaný\r\nutleskat\r\nútlocit\r\nútlocitnější\r\nútlocitný\r\nutlouct\r\nútloučký\r\nutloukanější\r\nutloukání\r\nutloukaný\r\nutloukat\r\nutloukávanější\r\nutloukávání\r\nutloukávaný\r\nutloukávat\r\nutlučenější\r\nutlučení\r\nutlučený\r\nutlumenější\r\nutlumení\r\nutlumený\r\nútlum\r\nutlumit\r\nutlumování\r\nutlumovaný\r\nutlumovat\r\nútlumový\r\nútlý\r\nutnout\r\nutnu\r\nutnutější\r\nutnutelnější\r\nutnutelný\r\nutnutí\r\nutnutý\r\nutočení\r\nútočení\r\nutočený\r\nútočený\r\nútočící\r\nútočiště\r\nútočit\r\nutočit\r\nútočit\r\nútočivý\r\nútočnější\r\nútočnice\r\nútočničin\r\nútočník\r\nútočníkův\r\nútočný\r\nútok\r\nutonout\r\nutonulý\r\nutonutí\r\nutopencův\r\nutopenec\r\nutopenější\r\nutopení\r\nutopený\r\nutopický\r\nutopičtější\r\nutopie\r\nutopismus\r\nutopista\r\nutopistčin\r\nutopistický\r\nutopističtější\r\nutopistka\r\nutopistův\r\nutopit\r\nutopitelnější\r\nutopitelný\r\nútor\r\nútorovací\r\nútorování\r\nútorovaný\r\nútorovat\r\nútorový\r\nutrácející\r\nutrácející\r\nutracenější\r\nutrácenější\r\nutracení\r\nutrácení\r\nutracený\r\nutrácený\r\nutrácet\r\nutrácivý\r\nutrakvismus\r\nutrakvista\r\nutrakvistčin\r\nutrakvistický\r\nutrakvistický\r\nutrakvistka\r\nutrakvistův\r\nútrapa\r\nutrápenější\r\nutrápení\r\nutrápený\r\nutrápit\r\nÚtrata\r\nútrata\r\nutratit\r\nÚtratová\r\nÚtratův\r\nutra\r\nutrefit\r\nUtrecht\r\nutrechtský\r\nutrhačnější\r\nutrhačný\r\nutrhač\r\nutrhající\r\nutrhanější\r\nutrhání\r\nutrhaný\r\nutrhat\r\nutrhávající\r\nutrhávanější\r\nutrhávání\r\nutrhávaný\r\nutrhávat\r\nutrhnout\r\nutrhnutější\r\nutrhnutí\r\nutrhnutý\r\nutrhování\r\nutrhovaný\r\nutrhovat\r\nutrmácenější\r\nutrmácení\r\nutrmácený\r\nutrmácet\r\nútroby\r\nutrousit\r\nutroušenější\r\nutroušení\r\nutroušený\r\nutrpení\r\nutrpění\r\nutrpěný\r\nutrpět\r\nútrpnější\r\nútrpný\r\nutrum\r\nutrýzněnější\r\nutrýznění\r\nutrýzněný\r\nutrýznit\r\nútržek\r\nutržení\r\nutržený\r\nutržit\r\nutržitelný\r\nútržka\r\nútržkovitější\r\nútržkovitý\r\nútržkový\r\nutřásl\r\nutřást\r\nutřenější\r\nutření\r\nutřený\r\nutřesení\r\nutřesen\r\nutřesený\r\nutřesu\r\nutříbení\r\nutříbený\r\nutříbit\r\nutříděnější\r\nutřídění\r\nutříděný\r\nutřídit\r\nutříditelnější\r\nutříditelný\r\nutřiďování\r\nutřiďovaný\r\nutřiďovat\r\nutřísnění\r\nutřísněný\r\nutřísnit\r\nutřít\r\nutuhlý\r\nutuhnout\r\nutuhnutí\r\nutuchající\r\nutuchat\r\nutuchnout\r\nútulek\r\nútulna\r\nútulnější\r\nútulný\r\nÚtušice\r\nútušický\r\nututlání\r\nututlaný\r\nututlat\r\nututlávání\r\nututlávaný\r\nututlávat\r\nutuženější\r\nutužení\r\nutužený\r\nutužit\r\nutužování\r\nutužovaný\r\nutužovat\r\nutužující\r\nútvar\r\nútvarný\r\nútvarový\r\nutvářející\r\nutvářenější\r\nutváření\r\nutvářený\r\nutvářet\r\nÚtvina\r\nutvořenější\r\nutvoření\r\nutvořený\r\nutvořit\r\nutvrdit\r\nutvrdnutí\r\nutvrzenější\r\nutvrzení\r\nutvrzený\r\nutvrzování\r\nutvrzovaný\r\nutvrzovat\r\nutvrzující\r\nutýranější\r\nutýrání\r\nutýraný\r\nutýrat\r\nUunet\r\nÚV\r\nuvadající\r\nuvadání\r\nuvadaný\r\nuvadat\r\nuvadávání\r\nuvadávat\r\nuváděcí\r\nuvaděččin\r\nuváděččin\r\nuvaděčka\r\nuváděčka\r\nuvaděč\r\nuváděč\r\nuvaděčův\r\nuváděčův\r\nuvádějící\r\nuváděnější\r\nuvádění\r\nuváděný\r\nuvádět\r\nuvadlejší\r\nuvadlý\r\nuvadnout\r\nuvadnutí\r\nuvadnutý\r\núvaha\r\núvahový\r\nuválcování\r\nuválcovaný\r\nuválcovat\r\nuvalenější\r\nuvalení\r\nuválení\r\nuvalený\r\nuválený\r\nuválet\r\núval\r\nuvalit\r\nÚvalno\r\nuvalování\r\nuvalovaný\r\nuvalovat\r\nuvalovávání\r\nuvalovávaný\r\nuvalovávat\r\núvalovitý\r\nuvalující\r\nuvarování\r\nuvarovaný\r\nuvarovat\r\nuvařenější\r\nuvaření\r\nuvařený\r\nuvařit\r\nuvázanější\r\nuvázání\r\nuvázaný\r\nuvázat\r\nuvázávanější\r\nuvázávání\r\nuvázávaný\r\nuvázávat\r\núvazek\r\núvaz\r\nuvázlý\r\nuváznout\r\nuváznutí\r\núvazný\r\nuvazovací\r\nuvazovanější\r\nuvazování\r\nuvazovaný\r\nuvazovat\r\núvazový\r\nuvazující\r\nuváženější\r\nuvážení\r\nuvážený\r\nuváži\r\nuvážit\r\nuvážlivější\r\nuvážlivý\r\nuvážlivý\r\nuvažovanější\r\nuvažování\r\nuvažovaný\r\nuvažovat\r\nuvažovatelnější\r\nuvažovatelný\r\nuvažující\r\nuvedenější\r\nuvedení\r\nuveden\r\nuvedený\r\nuvedl\r\nuvědomělejší\r\nuvědomělý\r\nuvědomení\r\nuvědomění\r\nuvědoměn\r\nuvědomený\r\nuvědomit\r\nuvědomovací\r\nuvědomování\r\nuvědomovaný\r\nuvědomovat\r\nuvědomující\r\nuvedu\r\nuvelebení\r\nuvelebený\r\nuvelebit\r\nuvelebovat\r\núvěr\r\núvěrní\r\núvěrování\r\núvěrovaný\r\núvěrovat\r\núvěrovávat\r\núvěrový\r\núvěrující\r\núvěruschopný\r\nuveřejnění\r\nuveřejněný\r\nuveřejnit\r\nuveřejňování\r\nuveřejňovaný\r\nuveřejňovat\r\nuveřejňující\r\nuvěření\r\nuvěřený\r\nuvěřit\r\nuvěřitelnější\r\nuvěřitelný\r\nuvést\r\nuvezenější\r\nuvezení\r\nuvezený\r\nuvěznění\r\nuvězněný\r\nuvěznit\r\nuvěznitelný\r\nuvězňování\r\nuvězňovaný\r\nuvězňovat\r\nuvézt\r\nuviděl\r\nuvidění\r\nuviděný\r\nuvidět\r\nuvidím\r\nuvítací\r\nuvítání\r\nuvítaný\r\nuvítat\r\nuvít\r\nuvitější\r\nuvití\r\nuvit\r\nuvitý\r\nuvitý\r\nuvívanější\r\nuvívání\r\nuvívaný\r\nuvívat\r\nUvizlová\r\nUvizl\r\nUvizlův\r\nuvízlý\r\nuvíznout\r\nuvíznutí\r\nuvláčení\r\nuvláčený\r\nuvláčet\r\nuvléct\r\nuvlečenější\r\nuvlečení\r\nuvlečený\r\nuvnitř\r\núvodem\r\nuvodění\r\nuvoděný\r\núvod\r\nuvodit\r\núvodník\r\núvodníkový\r\núvodní\r\nuvolání\r\nuvolaný\r\nuvolat\r\nuvolenější\r\nuvolení\r\nuvolený\r\nuvolit\r\nuvolněnější\r\nuvolnění\r\nuvolněný\r\nuvolnit\r\nuvolnitelnější\r\nuvolnitelný\r\nuvolňovací\r\nuvolňování\r\nuvolňovaný\r\nuvolňovat\r\nuvolňující\r\nuvolování\r\nuvozenější\r\nuvození\r\nuvozený\r\núvoz\r\nuvozit\r\nuvozovací\r\nuvozování\r\nuvozovaný\r\nuvozovat\r\nuvozovka\r\nuvozovky\r\núvozový\r\nuvozující\r\nuvožení\r\nuvožený\r\núvrať\r\núvraťový\r\nuvrhnout\r\nuvrhnutí\r\nuvrhování\r\nuvrhovaný\r\nuvrhovat\r\nuvrtání\r\nuvrtaný\r\nuvrtat\r\nuvrtávání\r\nuvrtávaný\r\nuvrtávat\r\nuvržený\r\nuvykající\r\nuvykání\r\nuvykaný\r\nuvykat\r\nuvyklejší\r\nuvyklý\r\nuvyknout\r\nuvyknutí\r\nuvyknutý\r\nuvzdychanější\r\nuvzdychání\r\nuvzdychaný\r\nuvzdychat\r\nuvzdychávání\r\nuvzdychávat\r\nuzákonění\r\nuzákoněný\r\nuzákonit\r\nuzákoňování\r\nuzákoňovaný\r\nuzákoňovat\r\nuzákoňující\r\nuzamčenější\r\nuzamčení\r\nuzamčen\r\nuzamčený\r\nuzamčený\r\nuzamknout\r\nuzamknutější\r\nuzamknutí\r\nuzamknutí\r\nuzamknutý\r\nuzamknutý\r\nuzamykací\r\nuzamykající\r\nuzamykání\r\nuzamykaný\r\nuzamykatelnější\r\nuzamykatelný\r\nuzamykat\r\nuzance\r\nuzardělejší\r\nuzardělý\r\nuzarděnější\r\nuzardění\r\nuzardít\r\nuzávěra\r\nuzávěr\r\nuzávěrka\r\nuzávěrkový\r\nuzávěrový\r\nuzavírací\r\nuzavíračka\r\nuzavírající\r\nuzavíranější\r\nuzavírání\r\nuzavíraný\r\nuzavíratelnější\r\nuzavíratelný\r\nuzavírat\r\nuzavírka\r\nuzávorkování\r\nuzávorkovaný\r\nuzávorkovat\r\nuzavřenější\r\nuzavření\r\nuzavřený\r\nuzavřít\r\nuzbecký\r\nuzbečtina\r\nUzbekistán\r\nUzbek\r\nUzbekův\r\nuzbrojení\r\nuzbrojený\r\nuzbrojit\r\nuzda\r\nuzdečka\r\nuzdička\r\nuzdičkový\r\nuzdravení\r\nuzdravený\r\nuzdravit\r\nuzdravování\r\nuzdravovaný\r\nuzdravovat\r\nuzdravující\r\nuzdvihnout\r\nuzel\r\núzemák\r\núzemíčko\r\núzemí\r\nuzemnění\r\nuzemněný\r\núzemněplánovací\r\nuzemnit\r\núzemní\r\nuzemňovanější\r\nuzemňování\r\nuzemňovaný\r\nuzemňovat\r\nuzemňující\r\nuzenáč\r\nuzenáčův\r\nuzenářčin\r\nuzenářka\r\nuzenářský\r\nuzenářství\r\nuzenář\r\nuzenářův\r\nuzenější\r\nuzenina\r\nuzení\r\nuzenka\r\nuzený\r\nuzený\r\nuzívanější\r\nuzívání\r\núzkokolejka\r\núzkokolejný\r\núzkolistý\r\núzkopásmový\r\núzkoprofilovější\r\núzkoprofilový\r\núzkoprsý\r\núzkorozchodný\r\núzkostiplnější\r\núzkostiplný\r\núzkostlivější\r\núzkostlivý\r\núzkostnější\r\núzkostný\r\núzkoúhlý\r\núzký\r\nuzlíček\r\nuzlíčkový\r\nuzlík\r\nuzlina\r\nuzlinka\r\nuzlinový\r\nuzlobený\r\nuzlobit\r\nuzlování\r\nuzlovitý\r\nuzlový\r\nuzmout\r\nuzmutí\r\nuzmutý\r\nuznalejší\r\nuznalý\r\nuznanější\r\nuznáníhodnější\r\nuznání\r\nuznaný\r\nuznatelnější\r\nuznatelný\r\nuznat\r\nuznávací\r\nuznávající\r\nuznávanější\r\nuznávání\r\nuznávaný\r\nuznávat\r\nuzobání\r\nuzobaný\r\nuzobat\r\nuzobávání\r\nuzobávaný\r\nuzobávat\r\nuzoučký\r\nuzounký\r\nuzpívání\r\nuzpívaný\r\nuzpívat\r\nuzpůsobenější\r\nuzpůsobení\r\nuzpůsobený\r\nuzpůsobit\r\nuzpůsobování\r\nuzpůsobovaný\r\nuzpůsobovat\r\nuzpůsobovatelčin\r\nuzpůsobovatelka\r\nuzpůsobovatel\r\nuzpůsobovatelův\r\nuzrálejší\r\nuzrálý\r\nuzrání\r\nuzrát\r\nuzrávání\r\nuzrávat\r\nuzřenější\r\nuzření\r\nuzřený\r\nuzřít\r\nuzuální\r\nuzurpace\r\nuzurpátor\r\nuzurpátorský\r\nuzurpátorský\r\nuzurpátorství\r\nuzurpování\r\nuzurpovaný\r\nuzurpovat\r\nuzurpující\r\núzus\r\nuzvedne\r\nuzvednout\r\nuzvednutí\r\nuzvednutý\r\nuž\r\núžas\r\nužaslejší\r\nužaslý\r\núžasnější\r\nužasnout\r\nužasnutí\r\núžasný\r\nuždibnout\r\nuždibování\r\nuždibovaný\r\nuždibovat\r\nuždibovávání\r\nuždibovávaný\r\nuždibovávat\r\nUže\r\núžeh\r\núžeji\r\núžení\r\nuženu\r\núžený\r\nUžhorod\r\nužhorodský\r\nÚžice\r\núžický\r\núžina\r\núžinový\r\nužírající\r\nužírání\r\nužíraný\r\nužírat\r\núžit\r\nužít\r\nužitečnější\r\nužitečný\r\nužitější\r\nužitek\r\nužitelný\r\nužití\r\nužitkovější\r\nužitkový\r\nužitnější\r\nužitný\r\nužitý\r\nužitý\r\nužívací\r\nužívající\r\nužívající\r\nužívanější\r\nužívání\r\nužívaný\r\nuživatelčin\r\nuživatelka\r\nuživatelnější\r\nuživatelný\r\nuživatelský\r\nuživatelštější\r\nuživatel\r\nuživatelův\r\nužívat\r\núžívat\r\nuživení\r\nuživený\r\nuživit\r\núživný\r\núžlabina\r\núžlabinka\r\núžlabí\r\nužovka\r\nužovkovitější\r\nužovkovitý\r\nužranější\r\nužrání\r\nužraný\r\nužrat\r\nužší\r\nužuž\r\nužvaněnější\r\nužvaněný\r\nužvatlanější\r\nužvýkat\r\nužvykovat\r\nV\r\nv\r\nVA\r\nvábení\r\nvábení\r\nvábený\r\nvábící\r\nvábit\r\nvábivější\r\nvábivý\r\nvábnější\r\nvábnička\r\nvábný\r\nVáca\r\nVacátko\r\nVacátková\r\nVacátkův\r\nVacek\r\nVacenovice\r\nvacenovický\r\nVacíková\r\nVacík\r\nVacíkův\r\nVacínův\r\nVacková\r\nVackův\r\nVáclavek\r\nVáclavice\r\nváclavický\r\nVáclavíková\r\nVáclavík\r\nVáclavíkův\r\nváclavka\r\nVáclavková\r\nVáclavkův\r\nVáclavovice\r\nváclavovický\r\nVáclavov\r\nVáclavovský\r\nváclavovský\r\nVáclav\r\nVáclavský\r\nVáclavův\r\nVacov\r\nVacovský\r\nvacovský\r\nVacula\r\nVaculíková\r\nVaculík\r\nVaculíkův\r\nVaculová\r\nVaculovičová\r\nVaculovič\r\nVaculovičův\r\nVaculův\r\nVácův\r\nváček\r\nvačice\r\nvačicový\r\nvačka\r\nváčkovitý\r\nváčkový\r\nvačkový\r\nVačlena\r\nVačlenová\r\nVačlenův\r\nvačnatcův\r\nvačnatec\r\nvačnatý\r\nvada\r\nváda\r\nvadění\r\nvadit\r\nvádium\r\nvadnější\r\nvadnost\r\nvadnoucí\r\nvadnout\r\nvadnutí\r\nvadnutí\r\nvadnutý\r\nvadný\r\nvadózní\r\nVaduz\r\nvafle\r\nvaflička\r\nvaflový\r\nvagabund\r\nvagabundův\r\nVagaiová\r\nVagai\r\nVagaiův\r\nVágenknechtová\r\nVágenknecht\r\nVágenknechtův\r\nvaginální\r\nvagina\r\nvagína\r\nvaginismus\r\nvaginistický\r\nvaginitida\r\nvágnější\r\nVágnerová\r\nVágner\r\nVágnerův\r\nvágní\r\nvagonek\r\nvagon\r\nvagón\r\nvagónka\r\nvagónový\r\nvagonový\r\nvagus\r\nvah\r\nvahadlo\r\nvahadlový\r\nvahách\r\nváhající\r\nVahalíková\r\nVahalík\r\nVahalíkův\r\nvahám\r\nvahami\r\nváhání\r\nváhání\r\nváhat\r\nváhavější\r\nváhavý\r\nváha\r\nVáh\r\nvahou\r\nváhový\r\nVáchalová\r\nVáchal\r\nVáchalův\r\nVácha\r\nVachata\r\nVachatová\r\nVachatův\r\nVáchová\r\nvachrlatější\r\nvachrlatý\r\nvachta\r\nVachunová\r\nVachun\r\nVachunův\r\nVáchův\r\nVaisová\r\nVais\r\nVaisův\r\nvajec\r\nvaječník\r\nvaječníkový\r\nvaječníkový\r\nvaječný\r\nvajíčko\r\nvajíčkový\r\nVajnarová\r\nVajnar\r\nVajnarův\r\nVajnorský\r\nVajshaitlová\r\nVajshaitl\r\nVajshaitlův\r\nVajsová\r\nVajs\r\nVajsův\r\nVajtrová\r\nVajtr\r\nVajtrův\r\nvakance\r\nvakcinace\r\nvakcinační\r\nvakcína\r\nvakcinování\r\nvakcinovaný\r\nvakcinovat\r\nvak\r\nvakovitý\r\nvakovka\r\nvakuola\r\nvakuometr\r\nvakuování\r\nvakuovaný\r\nvakuovat\r\nvakuový\r\nvakuum\r\nValachová\r\nvalach\r\nValach\r\nValachův\r\nvalachův\r\nVala\r\nVála\r\nValášek\r\nvalaška\r\nValášková\r\nValáškův\r\nValašsko\r\nvalašsko\r\nvalašský\r\nValát\r\nvalba\r\nvalbový\r\nValbřich\r\nvalbřišský\r\nvalcířský\r\nvalcíř\r\nvalcířův\r\nválcovací\r\nválcovačka\r\nválcování\r\nválcovaný\r\nválcovat\r\nválcovávání\r\nválcovávaný\r\nválcovávat\r\nválcovitý\r\nválcovna\r\nválcový\r\nválcující\r\nválčení\r\nválčení\r\nválčený\r\nvalčící\r\nválčící\r\nvalčík\r\nvalčíkový\r\nválčiště\r\nválčit\r\nValda\r\nValdemar\r\nValdemarův\r\nValdenburk\r\nvaldenský\r\nvaldenství\r\nValdice\r\nvaldický\r\nValdíkov\r\nvaldíkovský\r\nValdmanová\r\nValdman\r\nValdmanův\r\nValdsasy\r\nValdštejnová\r\nValdštejn\r\nvaldštejnský\r\nValdštejnův\r\nValdův\r\nválecí\r\nValecký\r\nválec\r\nváleček\r\nValečka\r\nvalečka\r\nválečka\r\nValečková\r\nválečkový\r\nValečkův\r\nválečnice\r\nválečnický\r\nválečnictví\r\nválečničtější\r\nválečník\r\nválečníkův\r\nválečný\r\nváleč\r\nválečův\r\nValeč\r\nválející\r\nValeková\r\nValek\r\nVálek\r\nValekův\r\nvalence\r\nvalenční\r\nválenda\r\nvalení\r\nválení\r\nválenka\r\nValenta\r\nValentin\r\nvalentinka\r\nValentová\r\nValentův\r\nValentýn\r\nValentýnův\r\nvalený\r\nválený\r\nválený\r\nvaleriánový\r\nValérie\r\nValériin\r\nvalerový\r\nValešová\r\nValeš\r\nValešův\r\nválet\r\nval\r\nvál\r\nvalchařčin\r\nvalchařka\r\nvalchařský\r\nvalchařství\r\nvalchař\r\nvalchařův\r\nvalcha\r\nvalchovací\r\nvalchování\r\nvalchovaný\r\nvalchovat\r\nValchov\r\nvalchovský\r\nvalící\r\nválící\r\nValíček\r\nValíčková\r\nValíčkův\r\nvalidace\r\nvalidátor\r\nvalidátorův\r\nvalidita\r\nvalidní\r\nvalidování\r\nvalidovaný\r\nvalidovat\r\nValina\r\nValinová\r\nValinův\r\nVališová\r\nVališ\r\nVališův\r\nvalit\r\nvalivý\r\nválka\r\nValko\r\nValková\r\nVálková\r\nValkův\r\nVálkův\r\nválkychtivější\r\nválkychtivý\r\nValměř\r\nValmont\r\nValmontův\r\nvalnější\r\nvalník\r\nvalníkový\r\nvalný\r\nValon\r\nValonsko\r\nvalonský\r\nValonův\r\nvalorický\r\nvalorizace\r\nvalorizování\r\nvalorizovaný\r\nvalorizovat\r\nValouchová\r\nValouch\r\nValouchův\r\nvalounek\r\nvaloun\r\nvalounkový\r\nvalounový\r\nValová\r\nVálová\r\nvalový\r\nválový\r\nValšov\r\nvalšovský\r\nValterová\r\nValter\r\nValterův\r\nValtice\r\nvaltický\r\nValtinov\r\nvaltinovský\r\nValtrová\r\nValtr\r\nValtrův\r\nvaluace\r\nvaluátor\r\nvaluta\r\nvalutový\r\nValův\r\nVálův\r\nValvoda\r\nValvodová\r\nValvodův\r\nvám\r\nVambera\r\nVamberk\r\nVamberová\r\nVamberský\r\nvamberský\r\nVamberův\r\nVambeřice\r\nvambeřický\r\nvámi\r\nvampyrismus\r\nvanad\r\nvanadičnan\r\nvanadičný\r\nvanadiový\r\nvanaditý\r\nvanadium\r\nvanadový\r\nVáňa\r\nvana\r\nVanclová\r\nVancl\r\nVanclův\r\nVancouver\r\nvancouverský\r\nVančura\r\nVančurová\r\nVančurův\r\nvandalismus\r\nvandalistický\r\nvandal\r\nvandalský\r\nvandalství\r\nvandalština\r\nvandalův\r\nVanda\r\nVanderbilt\r\nVanderbiltův\r\nVanderová\r\nVander\r\nVanderův\r\nVandin\r\nvandrák\r\nvandrákův\r\nvandr\r\nvandrování\r\nvandrovat\r\nvandrovka\r\nVaněček\r\nVaněčka\r\nVaněčková\r\nVaněčkův\r\nVaněk\r\nvánek\r\nVaněrka\r\nVaněrková\r\nVaněrkův\r\nVanerová\r\nVaner\r\nVanerův\r\nVaňha\r\nVaňhová\r\nVaňhův\r\nvánice\r\nVaníček\r\nvanička\r\nVaníčková\r\nvaničkový\r\nVaníčkův\r\nvanilin\r\nvanilín\r\nvanilinový\r\nvanilka\r\nvanilkový\r\nvání\r\nVanišová\r\nVaniš\r\nVanišův\r\nVaňkát\r\nVaňková\r\nVaňkův\r\nVanky\r\nvánoc\r\nvánoce\r\nvánocemi\r\nvánoci\r\nvánocích\r\nvánocům\r\nvánočka\r\nvánočkový\r\nvánočnější\r\nvánoční\r\nvanoucí\r\nVaňouček\r\nVaňoučková\r\nVaňoučkův\r\nVaňousek\r\nVaňousková\r\nVaňouskův\r\nVaňousová\r\nVaňous\r\nVaňousův\r\nvanout\r\nVáňová\r\nVanovice\r\nvanovický\r\nVanov\r\nvanovský\r\nvanový\r\nVantaa\r\nvantrok\r\nvanuatský\r\nVanuatu\r\nVaňura\r\nVaňurová\r\nVaňurův\r\nvanutí\r\nvanutý\r\nVáňův\r\nvápenatější\r\nvápenatění\r\nvápenatění\r\nvápenatět\r\nvápenatohlinitý\r\nvápenatosilikátový\r\nvápenatý\r\nvápenatý\r\nvápencový\r\nvápenec\r\nvápenenský\r\nVápenice\r\nvápenický\r\nvápenický\r\nVápeníková\r\nVápeník\r\nVápeníkův\r\nvápenitý\r\nvápenitý\r\nvápenka\r\nVápenná\r\nvápenný\r\nvápenopískový\r\nvápnění\r\nvápněný\r\nvápník\r\nvápníkový\r\nvápnit\r\nvápnitější\r\nvápnitý\r\nvápno\r\nVaradín\r\nvaraní\r\nvaran\r\nvaranův\r\nVaraždín\r\nvaraždínský\r\nVarga\r\nVargová\r\nVargův\r\nvar\r\nvarhanářčin\r\nvarhanářka\r\nvarhanářství\r\nvarhanář\r\nvarhanářův\r\nvarhánek\r\nvarhanice\r\nvarhanický\r\nvarhaník\r\nvarhaníkův\r\nvarhanista\r\nvarhanistčin\r\nvarhanistka\r\nvarhanistův\r\nvarhánka\r\nvarhánkovatý\r\nvarhánkovitý\r\nvarhánkový\r\nvarhanní\r\nvarhanový\r\nvarhany\r\nvariabilita\r\nvariabilnější\r\nvariabilní\r\nvariace\r\nvariační\r\nvariance\r\nvarianční\r\nvarianta\r\nvariantnější\r\nvariantní\r\nvariantový\r\nvariátor\r\nvariátorový\r\nvarieta\r\nvarieté\r\nvarietnější\r\nvarietní\r\nvariogram\r\nvariokon\r\nvariometr\r\nvariování\r\nvariovaný\r\nvariovat\r\nvaristor\r\nvariující\r\nvarix\r\nvárka\r\nvarle\r\nVarmuža\r\nVarmužová\r\nVarmužův\r\nvarna\r\nvarnice\r\nVarnsdorf\r\nVarnsdorfsko\r\nvarnsdorfský\r\nvarný\r\nVarol\r\nVarolův\r\nvarovací\r\nvarování\r\nvarování\r\nvarovaný\r\nvarovat\r\nvarovnější\r\nvarovný\r\nvarroáza\r\nVaršavančin\r\nVaršavanka\r\nVaršava\r\nvaršavský\r\nvarta\r\nvartování\r\nvartovat\r\nvartovávat\r\nvartující\r\nvarující\r\nVarvažov\r\nvarvažovský\r\nvařák\r\nvařečka\r\nvařečkový\r\nvaření\r\nvaření\r\nvařený\r\nvařený\r\nvařicí\r\nvařící\r\nvařič\r\nvařit\r\nvařívat\r\nvařivý\r\nvás\r\nvasectomie\r\nvasektomie\r\nVasil\r\nVasilův\r\nvaskularizace\r\nvaskulitida\r\nvasoprotektivum\r\nVašáková\r\nVašák\r\nVašákův\r\nVáša\r\nVašátko\r\nVašátková\r\nVašátkův\r\nVašatová\r\nVašat\r\nVašatův\r\nVašatý\r\nVáša\r\nVašek\r\nvášeň\r\nVašica\r\nVašicová\r\nVašicův\r\nVašíček\r\nVašíčková\r\nVašíčkův\r\nVašková\r\nVaškovský\r\nVaškův\r\nvášnička\r\nvášnivcův\r\nvášnivčin\r\nvášnivec\r\nvášnivější\r\nvášnivka\r\nvášnivý\r\nvašnosta\r\nvašnostův\r\nVašourek\r\nVašourková\r\nVašourkův\r\nVášová\r\nVaštíková\r\nVaštík\r\nVaštíkův\r\nVašutová\r\nVašut\r\nVašutův\r\nVášův\r\nváš\r\nvata\r\nvát\r\nvatelín\r\nvatelínový\r\nvatička\r\nVatikán\r\nVatikán\r\nvatikánský\r\nvatikánský\r\nVatín\r\nvatínský\r\nvatka\r\nvatovaný\r\nvatovitý\r\nvatový\r\nvatra\r\nVatuňa\r\nVatuňová\r\nVatuňův\r\nvátý\r\nvaudevillový\r\nVaverka\r\nVaverková\r\nVaverkův\r\nVávra\r\nVavrečka\r\nVavrečková\r\nVavrečkův\r\nVavrincová\r\nVavrincův\r\nVavrinec\r\nVavrochová\r\nVavroch\r\nVavrochův\r\nVavroušek\r\nVavroušková\r\nVavrouškův\r\nVávrová\r\nVavruška\r\nVavrušková\r\nVavruškův\r\nVávrův\r\nVavřička\r\nVavřičková\r\nVavřičkův\r\nVavříková\r\nVavřík\r\nVavříkův\r\nVavřina\r\nVavřincová\r\nVavřincův\r\nVavřinčin\r\nvavřinecký\r\nVavřinec\r\nVavřineččin\r\nVavřinečka\r\nvavřín\r\nVavřinka\r\nVavřinová\r\nvavřínový\r\nVavřinův\r\nvázací\r\nvazačka\r\nvázačka\r\nvazač\r\nvazačství\r\nvazadlo\r\nvázající\r\nvazák\r\nvazal\r\nvazalský\r\nvazalův\r\nvázanější\r\nvázanější\r\nvázánější\r\nvázání\r\nvázání\r\nvázanka\r\nvázankový\r\nvázaný\r\nvazárna\r\nvázat\r\nvázávanější\r\nvázávání\r\nvázávaný\r\nvázávat\r\nváza\r\nvazba\r\nvazbový\r\nvazčejší\r\nvazebnější\r\nvazební\r\nvazebný\r\nvazelina\r\nvazelína\r\nvazelinový\r\nvaz\r\nvázička\r\nvazivo\r\nvazivový\r\nvázka\r\nvazký\r\nvaznější\r\nvaznicový\r\nvazník\r\nvaznost\r\nváznoucí\r\nváznout\r\nváznutí\r\nvazný\r\nvazodilatační\r\nvazomotorický\r\nvázový\r\nváženější\r\nvážení\r\nvážený\r\nváži\r\nvážící\r\nvážit\r\nvážitelnější\r\nvažitelný\r\nváživý\r\nvážka\r\nvážkový\r\nvážlivý\r\nvažnější\r\nvážnější\r\nvážnění\r\nvážnět\r\nvažný\r\nvážný\r\nvážský\r\nVB\r\nvběhnout\r\nvběhnutí\r\nvběhovější\r\nvběhový\r\nvbíhající\r\nvbíhání\r\nvbíhaný\r\nvbíhat\r\nvbíhávání\r\nvbíhávaný\r\nvbíhávat\r\nvbíjení\r\nvbíjený\r\nvbíjet\r\nvbít\r\nvbití\r\nvbit\r\nvbitý\r\nvbočený\r\nvbodávání\r\nvbodávaný\r\nvbodávat\r\nvbodnout\r\nvbodnutí\r\nvbodnutý\r\nvbourání\r\nvbouraný\r\nvbourat\r\nvbourávání\r\nvbourávaný\r\nvbourávat\r\nvbrzku\r\nvburácení\r\nvburácet\r\nvcelku\r\nvcestování\r\nvcestovaný\r\nvcestovat\r\nvcítění\r\nvcítěný\r\nvcítit\r\nvciťování\r\nvciťovaný\r\nvciťovat\r\nvcupitání\r\nvcupitat\r\nvcupitávání\r\nvcupitávat\r\nvcválání\r\nvcválat\r\nvcválávání\r\nvcválávat\r\nvč\r\nvčas\r\nvčasnější\r\nvčasný\r\nVčelákov\r\nvčelákovský\r\nvčelaření\r\nvčelařící\r\nvčelařit\r\nvčelařský\r\nvčelařství\r\nvčelař\r\nvčelařův\r\nvčela\r\nvčelenský\r\nvčelička\r\nvčelín\r\nvčelín\r\nvčelí\r\nvčelka\r\nVčelná\r\nVčelnice\r\nvčelnický\r\nVčelnička\r\nvčelojed\r\nvčelojedův\r\nvčelový\r\nvčelstvo\r\nvčera\r\nvčerejšek\r\nvčerejší\r\nvčesanější\r\nvčesání\r\nvčesaný\r\nvčesat\r\nvčesávání\r\nvčesávaný\r\nvčesávat\r\nvčetně\r\nvčleněnější\r\nvčlenění\r\nvčleněný\r\nvčlenit\r\nvčlenitelnější\r\nvčlenitelný\r\nvčleňování\r\nvčleňovaný\r\nvčleňovat\r\nvčleňující\r\nvčutnout\r\nvčutnutí\r\nvčutnutý\r\nvdána\r\nvdaná\r\nvdaný\r\nvdát\r\nvdávající\r\nvdávanější\r\nvdávání\r\nvdávaný\r\nvdávat\r\nvdavekchtivější\r\nvdavekchtivý\r\nvdavky\r\nvděčení\r\nvděčen\r\nvděčící\r\nvděčit\r\nvděčna\r\nvděčnější\r\nvděčni\r\nvděčno\r\nvděčnu\r\nvděčny\r\nvděčný\r\nvdech\r\nvdechnout\r\nvdechnutí\r\nvdechnutý\r\nvdechování\r\nvdechovaný\r\nvdechovat\r\nvdechovávání\r\nvdechovávaný\r\nvdechovávat\r\nvdechový\r\nvděk\r\nvdlabání\r\nvdlabaný\r\nvdlabat\r\nvdlabávání\r\nvdlabávaný\r\nvdlabávat\r\nvdoleček\r\nvdolek\r\nvdova\r\nvdovcův\r\nvdovčin\r\nvdovecký\r\nvdovec\r\nvdoviččin\r\nvdovička\r\nvdovka\r\nvdovský\r\nvdovství\r\nvdupanější\r\nvdupání\r\nvdupaný\r\nvdupat\r\nvdupávanější\r\nvdupávání\r\nvdupávaný\r\nvdupávat\r\nvdupnout\r\nvdupnutější\r\nvdupnutí\r\nvdupnutý\r\nvdupnutý\r\nvdupu\r\nvdýchnout\r\nve\r\nVeba\r\nvéba\r\nVebrová\r\nVébrová\r\nVebr\r\nVébr\r\nVebrův\r\nVébrův\r\nvěcička\r\nvěc\r\nvěcnější\r\nvěcný\r\nVěcov\r\nvěcovský\r\nvecpanější\r\nvecpání\r\nvecpaný\r\nvecpat\r\nvecpávání\r\nvecpávaný\r\nvecpávat\r\nVečerka\r\nvečerka\r\nVečerková\r\nVečerkův\r\nvečer\r\nvečernější\r\nvečernice\r\nvečerníček\r\nvečerníček\r\nvečerníčkův\r\nvečerník\r\nVečerníková\r\nVečerník\r\nVečerníkův\r\nvečerní\r\nvečeřadlo\r\nVečeřa\r\nvečeření\r\nvečeřený\r\nvečeřet\r\nvečeře\r\nvečeřička\r\nvečeřívání\r\nvečeřívaný\r\nvečeřívat\r\nVečeřová\r\nVečeřův\r\nvečírek\r\nvečka\r\nvéčko\r\nvěčnější\r\nvěčný\r\nvědátorčin\r\nvědátorka\r\nvědátor\r\nvědátorův\r\nvěda\r\nvéda\r\nvěda\r\nvědcův\r\nvědeckofantastický\r\nvědeckofantastičtější\r\nvědeckopedagogický\r\nvědeckopedagogičtější\r\nvědeckotechnický\r\nvědeckotechničtější\r\nvědeckovýrobní\r\nvědeckovýzkumný\r\nvědecký\r\nvěděcký\r\nvědec\r\nvědečtější\r\nvěděčtější\r\nvedenější\r\nvedením\r\nvedení\r\nvedení\r\nvědění\r\nveden\r\nvedený\r\nvědérko\r\nvědět\r\nvédismus\r\nvědkyně\r\nvědkynin\r\nvedle\r\nvedlejší\r\nvedl\r\nvědma\r\nvědní\r\nvědomější\r\nvědomí\r\nvědom\r\nvědomostní\r\nvědomý\r\nvedoucí\r\nvědoucí\r\nVedralová\r\nVedral\r\nVedralův\r\nvedranější\r\nvedraní\r\nvedrání\r\nvedraný\r\nvedrat\r\nvedro\r\nvědro\r\nVedrovice\r\nvédský\r\nvedu\r\nvedutista\r\nvedutistčin\r\nvedutistka\r\nvedutistův\r\nvědychtivější\r\nvědychtivý\r\nvédy\r\nvefoukání\r\nvefoukaný\r\nvefoukat\r\nvefoukávání\r\nvefoukávaný\r\nvefoukávat\r\nvegan\r\nveganství\r\nveganův\r\nVega\r\nvegetace\r\nvegetační\r\nvegetariánčin\r\nvegetarianismus\r\nvegetariánismus\r\nvegetariánka\r\nvegetarián\r\nvegetariánský\r\nvegetariánství\r\nvegetariánův\r\nvegetářčin\r\nvegetářka\r\nvegetářství\r\nvegetář\r\nvegetářův\r\nvegetativní\r\nvegeta\r\nvegetování\r\nvegetovat\r\nvegetující\r\nVéghová\r\nVégh\r\nVéghův\r\nvehemence\r\nvehementnější\r\nvehementní\r\nvehikulum\r\nvěhlas\r\nvěhlasnější\r\nvěhlasný\r\nvehnal\r\nvehnanější\r\nvehnání\r\nvehnán\r\nvehnaný\r\nvehnat\r\nVěchetová\r\nVěchet\r\nvěchet\r\nVěchetův\r\nVěchnov\r\nvěchnovský\r\nvěchýtka\r\nvěchýtkovitý\r\nVeinfurtová\r\nVeinfurt\r\nVeinfurtův\r\nVeisová\r\nVeis\r\nVeisův\r\nvejce\r\nvejcorodý\r\nvejcovod\r\nvejcovodový\r\nvejcoživorodý\r\nvejčitější\r\nvejčitý\r\nvejda\r\nVejdělek\r\nVejdělková\r\nVejdělkův\r\nvejdu\r\nvějička\r\nvějířek\r\nvějířovitý\r\nvějířový\r\nvějíř\r\nvejít\r\nvejití\r\nvejmutovka\r\nVejprnice\r\nvejprnický\r\nvejprtský\r\nVejprty\r\nvejražka\r\nvejražkový\r\nVejrová\r\nVejr\r\nVejrův\r\nvejtaha\r\nvejtahův\r\nVejvanov\r\nvejvanovský\r\nVejvoda\r\nVejvodová\r\nVejvodův\r\nveka\r\nvěk\r\nvěkovitější\r\nvěkovitý\r\nvěkový\r\nvekslácký\r\nveksláctví\r\nveksláčtější\r\nvekslák\r\nvekslákův\r\nvekslování\r\nvekslovaný\r\nvekslovat\r\nvektor\r\nvektorizace\r\nvektorizování\r\nvektorizovaný\r\nvektorizovat\r\nvektorizovávat\r\nvektorový\r\nVela\r\nvelára\r\nvelární\r\nVelatice\r\nvelatický\r\nvelatický\r\nvelbloudě\r\nvelbloudice\r\nvelbloudí\r\nvelbloud\r\nvelbloudův\r\nvelebení\r\nvelebení\r\nvelebený\r\nvelebící\r\nVelebilová\r\nVelebil\r\nVelebilův\r\nvelebit\r\nvelebnější\r\nvelebníček\r\nvelebníčkův\r\nvelebník\r\nvelebníkův\r\nVelebný\r\nvelebný\r\nVelebová\r\nVeleb\r\nVelebův\r\nvelecenný\r\nVelecký\r\nvelectěnější\r\nvelectěný\r\nVelečín\r\nvelečínský\r\nveleděl\r\nveledílo\r\nveleduch\r\nveleduchův\r\nveledůležitý\r\nveledůmyslnější\r\nvelehit\r\nvelehora\r\nvelehorský\r\nvelehory\r\nVelehrad\r\nVelehradský\r\nvelehradský\r\nVelechovský\r\nvelechrám\r\nvelejemnější\r\nvelejemný\r\nveleještěr\r\nveleještěrův\r\nvelekněz\r\nvelekněze\r\nveleknězem\r\nveleknězi\r\nvelekněžčin\r\nvelekněží\r\nvelekněžích\r\nvelekněžím\r\nvelekněžími\r\nvelekněžka\r\nvelekněžský\r\nVelek\r\nvelekrásnější\r\nVelemín\r\nVelemínský\r\nvelemínský\r\nvelemocnější\r\nvelemoudřejší\r\nVelemyšleves\r\nvelemyšleveský\r\nVelenice\r\nvelenický\r\nvelení\r\nvelení\r\nVelenka\r\nVelenov\r\nvelenovský\r\nvelený\r\nveleobr\r\nveleobrův\r\nveleobtížnější\r\nveleostrý\r\nvelepísní\r\nvelerada\r\nveleříše\r\nVeleslavín\r\nVeleslavín\r\nveleslavínský\r\nVeleslavínův\r\nveleslavnější\r\nVeleslav\r\nVeleslavův\r\nveleslibnější\r\nvelesmutnější\r\nvelestát\r\nvelesvatyně\r\nVelešín\r\nvelešínský\r\nvelet\r\nveletoč\r\nveletok\r\nVeletov\r\nveletovský\r\nveletrh\r\nveletržiště\r\nveletržní\r\nveletucet\r\nveleúspěšnější\r\nveleúspěšný\r\nveleužitečnější\r\nvelevážený\r\nvelevzácnější\r\nvelezajímavější\r\nvelezajímavý\r\nveleznámější\r\nvelezrada\r\nvelezrádce\r\nvelezrádcův\r\nvelezrádkyně\r\nvelezrádkynin\r\nvelezrádnější\r\nvelezrádný\r\nVelhartice\r\nvelhartický\r\nvelice\r\nvelící\r\nveličenstvo\r\nveličina\r\nVelička\r\nveligradský\r\nVelichov\r\nvelichovský\r\nvelikanánštější\r\nvelikán\r\nvelikánský\r\nvelikánův\r\nvelikášský\r\nvelikášství\r\nvelikáš\r\nvelikášův\r\nvelikonoc\r\nvelikonoce\r\nvelikonocemi\r\nvelikonoci\r\nvelikonocích\r\nvelikonocům\r\nvelikonoční\r\nvelikost\r\nvelikostní\r\nveliký\r\nVelímský\r\nVelínová\r\nVelín\r\nVelinský\r\nVelínův\r\nVelíšek\r\nVelíšková\r\nVelíškův\r\nvelitelčin\r\nvelitelka\r\nvelitelský\r\nvelitelství\r\nvelitelštější\r\nvelitel\r\nvelitelův\r\nvelkoadmirál\r\nvelkoadmirálův\r\nvelkoakcionář\r\nvelkoakcionářův\r\nvelkobanka\r\nvelkobchod\r\nvelkoburžoaznější\r\nvelkoburžoazní\r\nvelkodole\r\nvelkodolech\r\nvelkodolem\r\nvelkodolu\r\nvelkodolů\r\nvelkodolům\r\nvelkodoly\r\nvelkodůl\r\nvelkodušnější\r\nvelkodušný\r\nvelkofatranský\r\nvelkofilm\r\nvelkogermánský\r\nvelkohlavý\r\nvelkohubý\r\nvelkochov\r\nvelkokapacitní\r\nvelkokapitál\r\nvelkokapitalista\r\nvelkokapitalistčin\r\nvelkokapitalistka\r\nvelkokapitalistův\r\nvelkoknížecí\r\nvelkoknížectví\r\nvelkokníže\r\nvelkokravín\r\nvelkokvětý\r\nvelkolepější\r\nvelkolepý\r\nvelkolistý\r\nvelkolom\r\nvelkolomový\r\nvelkoměsto\r\nvelkoměstský\r\nvelkoměstštější\r\nVelkomeziříčsko\r\nvelkomocnější\r\nvelkomoravský\r\nvelkomyslnější\r\nvelkomyslný\r\nvelkoněmecký\r\nvelkoobchod\r\nvelkoobchodník\r\nvelkoobchodníkův\r\nvelkoobchodní\r\nvelkoobjemový\r\nvelkoodběratelčin\r\nvelkoodběratelka\r\nvelkoodběratel\r\nvelkoodběratelův\r\nvelkoorganizace\r\nvelkopanský\r\nvelkopanštější\r\nvelkopáteční\r\nVelkopavlovicko\r\nvelkopavlovický\r\nvelkopivovar\r\nvelkoplodý\r\nvelkoplošnější\r\nvelkoplošný\r\nvelkopodnikatel\r\nvelkopodnikatelův\r\nvelkopodnik\r\nVelkopolsko\r\nvelkopolský\r\nVelkopopovicko\r\nvelkopopovický\r\nvelkoproducent\r\nvelkoproducentův\r\nvelkoprojekt\r\nvelkoprostorový\r\nvelkoprůmyslník\r\nvelkoprůmyslníkův\r\nvelkoprůmyslový\r\nvelkopřevorství\r\nvelkorážní\r\nvelkorodina\r\nvelkorozměrnější\r\nvelkorozměrový\r\nvelkoruský\r\nvelkorypadlo\r\nvelkorysejší\r\nvelkorysý\r\nvelkosériový\r\nvelkosklad\r\nvelkosrbský\r\nvelkostatek\r\nvelkostát\r\nvelkostatkářský\r\nvelkostatkář\r\nvelkostatkářův\r\nvelkostroj\r\nvelkosvatoňovický\r\nVelková\r\nvelkovévoda\r\nvelkovévodkyně\r\nvelkovévodkynin\r\nvelkovévodství\r\nvelkovévodův\r\nvelkovýkrm\r\nvelkovýkrmna\r\nvelkovýroba\r\nvelkovýrobce\r\nvelkovýrobcův\r\nvelkovýrobkyně\r\nvelkovýrobkynin\r\nvelkovýrobní\r\nvelkozávod\r\nvelkozrnný\r\nvelkplošný\r\nVelkův\r\nvelký\r\nvelmikrátkovlnný\r\nvelmi\r\nvelmistrovský\r\nvelmistr\r\nvelmistrův\r\nvelmocenský\r\nvelmocenštější\r\nvelmocích\r\nvelmocím\r\nvelmoc\r\nvelmožský\r\nvelmož\r\nvelmožův\r\nveloburžoasie\r\nveloburžoazie\r\nveloburžoazní\r\nvelociped\r\nvelocipéd\r\nvelocipedista\r\nvelocipedistčin\r\nvelocipedistka\r\nvelocipedistův\r\nvelodrom\r\nveloduše\r\nveloplášť\r\nVelová\r\nvelrybářčin\r\nvelrybářka\r\nvelrybářský\r\nvelrybářství\r\nvelrybář\r\nvelrybářův\r\nvelryba\r\nvelrybí\r\nVelšančin\r\nVelšanka\r\nVelšan\r\nVelšanův\r\nvelština\r\nvelterový\r\nveltlínský\r\nvelum\r\nvelur\r\nvelurový\r\nVelův\r\nvelvarský\r\nVelvary\r\nVelvet\r\nvelvyslancův\r\nvelvyslanecký\r\nvelvyslanectví\r\nvelvyslanec\r\nvelvyslankyně\r\nvelvyslankynin\r\nvémě\r\nvemene\r\nvemeno\r\nvemínko\r\nvemlouvání\r\nvemlouvaný\r\nvemlouvat\r\nvemlouvavější\r\nvemlouvavý\r\nvemluvení\r\nvemluvený\r\nvemluvit\r\nven\r\nVenca\r\nVěnceslav\r\nVěnceslavův\r\nVenclová\r\nVencl\r\nVenclův\r\nvěncový\r\nVencův\r\nvenčení\r\nvěnčení\r\nvenčený\r\nvěnčený\r\nvenčící\r\nvenčit\r\nvěnčit\r\nvěnčitý\r\nVenda\r\nVendelín\r\nVendelínův\r\nvendeta\r\nVendula\r\nVendulčin\r\nVendulin\r\nVendulka\r\nVendův\r\nvěnec\r\nvenectazie\r\nvěneček\r\nvenerický\r\nveneroložčin\r\nveneroložka\r\nvenetština\r\nVenezuelančin\r\nVenezuelanka\r\nVenezuelan\r\nVenezuelanův\r\nVenezuela\r\nVenezuelcův\r\nVenezuelčin\r\nVenezuelec\r\nVenezuelka\r\nvenezuelský\r\nvenkoncem\r\nvenkovanka\r\nvenkovan\r\nvenkovanův\r\nvenkov\r\nvenkovní\r\nvenkovský\r\nvenkovštější\r\nVenkrbcová\r\nVenkrbcův\r\nVenkrbec\r\nvenku\r\nvěnný\r\nvenografie\r\nvěno\r\nvenotonikum\r\nvěnovací\r\nvěnování\r\nvěnovaný\r\nvěnovat\r\nventilace\r\nventilační\r\nventilátor\r\nventilátorový\r\nventilek\r\nventil\r\nventilování\r\nventilovaný\r\nventilovat\r\nventilovávání\r\nventilovávaný\r\nventilovávat\r\nventilový\r\nVentohrad\r\nVentová\r\nVent\r\nVentův\r\nvěnující\r\nVenuše\r\nVenušin\r\nvepisování\r\nvepisovaný\r\nvepisovat\r\nvepisující\r\nvepíši\r\nvepíšu\r\nveplout\r\nveprostřed\r\nvepředu\r\nvepřenka\r\nVepříkov\r\nvepříkovský\r\nvepřík\r\nvepříkův\r\nvepřín\r\nVepřová\r\nvepřovice\r\nvepřovicový\r\nvepřovský\r\nvepřový\r\nvepř\r\nvepřův\r\nvepsal\r\nvepsanější\r\nvepsanější\r\nvepsání\r\nvepsán\r\nvepsaný\r\nvepsáný\r\nvepsat\r\nveranda\r\nverandička\r\nverandový\r\nVěra\r\nverbalismus\r\nverbalisování\r\nverbalisovaný\r\nverbalisovat\r\nverbalista\r\nverbalistčin\r\nverbalistický\r\nverbalističtější\r\nverbalistka\r\nverbalistnější\r\nverbalistův\r\nverbalizace\r\nverbalizování\r\nverbalizovaný\r\nverbalizovat\r\nverbálnější\r\nverbální\r\nverbigerace\r\nverbíř\r\nverbířův\r\nverbista\r\nverbistčin\r\nverbistka\r\nverbistův\r\nverbovací\r\nverbování\r\nverbovaný\r\nverbovat\r\nverbovávání\r\nverbovávaný\r\nverbovávat\r\nverbující\r\nverbum\r\nVěrčin\r\nverdikt\r\nVerdolův\r\nvěren\r\nvěren\r\nVerešová\r\nVereš\r\nVerešův\r\nverifikace\r\nverifikační\r\nverifikování\r\nverifikovaný\r\nverifikovat\r\nverifikovatelnější\r\nverifikovatelný\r\nverifikovávání\r\nverifikovávaný\r\nverifikovávat\r\nverismus\r\nverista\r\nveristčin\r\nveristický\r\nveristka\r\nveristův\r\nVěrka\r\nVermont\r\nvermontský\r\nvermut\r\nvermutový\r\nvěr\r\nvěrna\r\nvěrna\r\nvěrnější\r\nverneovka\r\nVernerová\r\nVerner\r\nVernerův\r\nVerneřice\r\nverneřický\r\nVernéřovice\r\nvernéřovický\r\nVerne\r\nvěrni\r\nvěrni\r\nvernisážový\r\nvernisáž\r\nvěrno\r\nvěrno\r\nvěrnostní\r\nvernovka\r\nvěrnu\r\nvěrnu\r\nVernův\r\nvěrny\r\nvěrny\r\nvěrný\r\nvěrohodnější\r\nvěrohodný\r\nvěrojatný\r\nvěrolomnější\r\nvěrolomný\r\nVerona\r\nVeroničin\r\nVeronika\r\nveronský\r\nVěroslav\r\nVěroslavův\r\nvěroučný\r\nvěrouka\r\nvěrozvěst\r\nvěrozvěstův\r\nverpánek\r\nVersailles\r\nversailleský\r\nverse\r\nversta\r\nversus\r\nveršík\r\nveršotepcův\r\nveršotepectví\r\nveršotepec\r\nveršotepkyně\r\nveršotepkynin\r\nveršování\r\nveršovánka\r\nveršovaný\r\nveršovat\r\nveršový\r\nverš\r\nveršující\r\nvěrtel\r\nvertikála\r\nvertikalismus\r\nvertikální\r\nvěru\r\nverukozní\r\nVerunčin\r\nVerunka\r\nVěruščin\r\nVěruška\r\nverva\r\nvervnější\r\nvervní\r\nverzálka\r\nverzatilka\r\nverze\r\nveřejnější\r\nveřejněprávní\r\nveřejnoprávní\r\nveřejný\r\nveřej\r\nvěření\r\nvěřený\r\nvěřící\r\nVěřin\r\nvěřit\r\nvěřitelčin\r\nvěřitelka\r\nvěřitelský\r\nvěřitelštější\r\nvěřitel\r\nvěřitelův\r\nvěřivý\r\nVeřtát\r\nVesecký\r\nVeselá\r\nveselejší\r\nveselení\r\nVeselé\r\nveselí\r\nveselice\r\nveselící\r\nVeselíčko\r\nveselit\r\nVeselka\r\nveselka\r\nVeselková\r\nVeselkův\r\nveseloherní\r\nveselohra\r\nveselo\r\nvesel\r\nVeselovský\r\nVeselský\r\nveselský\r\nVeselý\r\nveselý\r\nVesera\r\nveserský\r\nves\r\nveskákanější\r\nveskákání\r\nveskákáno\r\nveskákaný\r\nveskákat\r\nveskrz\r\nveskrze\r\nveslařčin\r\nveslařina\r\nveslařka\r\nveslařský\r\nveslařství\r\nveslař\r\nveslařův\r\nveslice\r\nveslo\r\nveslování\r\nveslovat\r\nveslovávání\r\nveslovávat\r\nveslovod\r\nveslovodův\r\nveslový\r\nveslující\r\nvesměs\r\nvesmír\r\nvesmírnější\r\nvesmírný\r\nvesmířan\r\nvesmířanův\r\nvesna\r\nvesnice\r\nvesnický\r\nvesničanka\r\nvesničan\r\nvesničanův\r\nvesnička\r\nvesničtější\r\nvespod\r\nvespodu\r\nvespolek\r\nvestálčin\r\nvestálka\r\nvestavba\r\nvestavění\r\nvestavěný\r\nvestavět\r\nvestavovanější\r\nvestavování\r\nvestavovaný\r\nvestavovat\r\nvesta\r\nvestecký\r\nVestec\r\nVestfálová\r\nVestfál\r\nVestfálsko\r\nvestfálský\r\nVestfálův\r\nvestibul\r\nvestička\r\nvést\r\nVěstín\r\nvěstínský\r\nvěstit\r\nvěstník\r\nvestoje\r\nVěstonice\r\nvěstonický\r\nvěstový\r\nVesuv\r\nvesuvský\r\nveš\r\nvěšáček\r\nvěšadlo\r\nvěšadlový\r\nvěšák\r\nvěšákový\r\nvešel\r\nvěšenější\r\nvěšení\r\nvěšený\r\nvěšet\r\nVěšín\r\nvěšínský\r\nveškeren\r\nveškerenstvo\r\nveškero\r\nveškeru\r\nveškerý\r\nveškerý\r\nVeškrna\r\nVeškrnová\r\nVeškrnův\r\nvešlejší\r\nvešlý\r\nvešmi\r\nvěštba\r\nvěštcův\r\nvěštecký\r\nvěštectví\r\nvěštec\r\nvěštečtější\r\nvěštění\r\nvěštění\r\nvěštěný\r\nvěštící\r\nvěštírna\r\nvěštit\r\nvěštka\r\nvěštkyně\r\nvěštkynin\r\nveštvat\r\nveta\r\nvěta\r\nvetčení\r\nvetčený\r\nveteránčin\r\nveteránka\r\nveterán\r\nveteránský\r\nveteránův\r\nveterinární\r\nveterinářčin\r\nveterinářka\r\nveterinářský\r\nveterinářství\r\nveterinář\r\nveterinářův\r\nVěteřov\r\nvěteřovský\r\nvěteřovský\r\nvetešnický\r\nvetešnictví\r\nvetešničtější\r\nvetešník\r\nvetešníkův\r\nveteš\r\nvětévka\r\nvětevnatý\r\nvětev\r\nvetchý\r\nvětička\r\nvetkanější\r\nvetkání\r\nvetkaný\r\nvetkat\r\nvetkávanější\r\nvetkávání\r\nvetkávaný\r\nvetkávat\r\nvetknout\r\nvetknutí\r\nvetknutý\r\nvetknutý\r\nvětněčlenský\r\nvetnout\r\nvetnu\r\nvetnutější\r\nvetnutelnější\r\nvetnutelný\r\nvetnutí\r\nvetnutý\r\nvětný\r\nveto\r\nvětosled\r\nvetování\r\nvetovaný\r\nvetovat\r\nvětový\r\nvětrací\r\nvětráček\r\nvětračka\r\nvětrák\r\nvětrání\r\nvětraný\r\nvětraný\r\nvětratelnější\r\nvětratelný\r\nvětrat\r\nvětrávání\r\nvětrávat\r\nvetra\r\nvětrech\r\nvětrem\r\nvětrnější\r\nvětrníček\r\nvětrnička\r\nvětrník\r\nvětrný\r\nvětrolam\r\nvětroměr\r\nvětroň\r\nvětroplach\r\nvětrosnubný\r\nVětrovcová\r\nVětrovcův\r\nVětrovec\r\nvětrovka\r\nVětrov\r\nvětrovský\r\nvětrový\r\nvětru\r\nvětrů\r\nvětrům\r\nVětrušice\r\nvětrušický\r\nvětry\r\nvětře\r\nvetřelcův\r\nvetřelec\r\nvetřelkyně\r\nvetřelkynin\r\nvetřenější\r\nvetření\r\nvětření\r\nvetřený\r\nvětřený\r\nvětřící\r\nvětříček\r\nvétřieska\r\nvětřík\r\nvetřít\r\nvětřit\r\nvetšejší\r\nvetšení\r\nvetšet\r\nvětšina\r\nvetšinou\r\nvětšinou\r\nvětšinovější\r\nvětšinový\r\nvětší\r\nvetující\r\nvětvení\r\nvětvení\r\nvětvený\r\nvětvící\r\nvětvička\r\nvětvit\r\nvětvoví\r\nvětvový\r\nvětývka\r\nvevalení\r\nvevalený\r\nvevalit\r\nvevání\r\nvevát\r\nvevátý\r\nvevázání\r\nvevázaný\r\nvevázat\r\nveverák\r\nveverákův\r\nVevera\r\nveverčí\r\nVeverka\r\nveverka\r\nVeverková\r\nveverkovitý\r\nVeverkův\r\nVeverová\r\nveverovitý\r\nveveruščin\r\nveveruška\r\nVeverův\r\nveveří\r\nvevnitř\r\nvévoda\r\nvévodění\r\nvévodící\r\nvévodit\r\nvévodkyně\r\nvévodkynin\r\nvévodský\r\nvévodství\r\nvévodův\r\nvezdejší\r\nvezdění\r\nvezděný\r\nvezdít\r\nvezdívat\r\nvezenější\r\nvězení\r\nvezení\r\nvězeňkyně\r\nvězeňkynin\r\nvězeňský\r\nvězeňství\r\nvězeňštější\r\nvězeň\r\nvezený\r\nvězet\r\nvězící\r\nvezikulární\r\nvezírek\r\nvezír\r\nvezírův\r\nvezmu\r\nvěznění\r\nvězněný\r\nvězněný\r\nvěznice\r\nvěznit\r\nvěznitelný\r\nvěznitel\r\nvěznitelův\r\nvězňův\r\nvezoucí\r\nvezpívat\r\nvezpívávat\r\nvézt\r\nvěžák\r\nvěženský\r\nvěžička\r\nvěžka\r\nVěžná\r\nVěžnička\r\nvěžní\r\nvěžný\r\nvěžovitý\r\nvěžovka\r\nvěžový\r\nvěž\r\nvf\r\nvhánějící\r\nvháněnější\r\nvhánění\r\nvháněný\r\nvhánět\r\nvhazování\r\nvhazovaný\r\nvhazovat\r\nvhazující\r\nVHF\r\nvhled\r\nvhlédnout\r\nvhlédnul\r\nvhlédnutí\r\nvhlídnout\r\nvhlídnul\r\nvhlížející\r\nvhlížení\r\nvhlížet\r\nvhloubenina\r\nvhloubený\r\nvhloubit\r\nvhloubit\r\nvhlubující\r\nvhluknutí\r\nvhod\r\nvhodit\r\nvhodnější\r\nvhodný\r\nvhozenější\r\nvhození\r\nvhozený\r\nvhoz\r\nvhrabanější\r\nvhrabání\r\nvhrabaný\r\nvhrabat\r\nvhrabávání\r\nvhrabávaný\r\nvhrabávat\r\nvhrknout\r\nvhrnout\r\nvhrnutí\r\nvhrnutý\r\nVHS\r\nvhupkání\r\nvhupnout\r\nvcházející\r\nvcházení\r\nvcházet\r\nvcházívat\r\nvchlípený\r\nvchlipování\r\nvchlipovaný\r\nvchlipovat\r\nvchlipovávání\r\nvchlipovávaný\r\nvchlipovávat\r\nvchod\r\nvchodový\r\nvchrstnout\r\nvchrstnutí\r\nvchrstnutý\r\nVchynice\r\nvchynický\r\nVI\r\nví\r\nviadukt\r\nvibrace\r\nvibrační\r\nvibrafon\r\nvibrafonista\r\nvibrafonistčin\r\nvibrafonistka\r\nvibrafonistův\r\nvibram\r\nvibramový\r\nvibrant\r\nvibráto\r\nvibrátor\r\nvibrometr\r\nvibrování\r\nvibrovat\r\nvibrující\r\nvíc\r\nviceadmirál\r\nviceadmirálský\r\nviceadmirálův\r\nvíceadresový\r\nvíceatomový\r\nvíceatributový\r\nvícebarevný\r\nvícebitový\r\nvícebodový\r\nvícebojařčin\r\nvícebojařka\r\nvícebojař\r\nvícebojařův\r\nvíceboj\r\nvícebuněčný\r\nvícecestný\r\nvíceciferný\r\nvícecívkový\r\nvícečetný\r\nvícečlenný\r\nvícedenní\r\nvícedětný\r\nvícedílný\r\nvícedílový\r\nvícedisketový\r\nvícedruhový\r\nvíce\r\nvíceetážový\r\nvícefázový\r\nvícefunkční\r\nviceguvernér\r\nviceguvernérův\r\nvícehlasý\r\nvícehlavňový\r\nvícehlavový\r\nvícehlavý\r\nvícehodinový\r\nvícehodnotový\r\nvícehvězdičkový\r\nvícejazyčný\r\nvícejazykový\r\nvícejehlový\r\nvícekanálový\r\nvicekancléř\r\nvicekancléřův\r\nvícekilový\r\nvíceklubkový\r\nvíceklubový\r\nvícekolejný\r\nvícekomorový\r\nvicekonzulát\r\nvícekotoučový\r\nvícekrát\r\nvícekráte\r\nvícekriteriální\r\nvícekrokový\r\nvícekusový\r\nvícelamelový\r\nvíceletý\r\nvícelodní\r\nvíceméně\r\nvícemístný\r\nvícemocný\r\nvícemodulový\r\nvícemotorový\r\nvícenápravový\r\nvícenásobek\r\nvícenásobný\r\nvícenázorový\r\nvícenohý\r\nvícenožový\r\nvíceoborový\r\nvíceodvětvový\r\nvíceoperační\r\nvíceosý\r\nvíceotvorový\r\nvíceparametrový\r\nvícepáskový\r\nvícepásmový\r\nvícepatrový\r\nvíceplánový\r\nvíceplatformní\r\nvíceplodinový\r\nvícepodlažní\r\nvícepokojový\r\nvícepólový\r\nvicepremiérčin\r\nvicepremiérka\r\nvicepremiér\r\nvicepremiérův\r\nvicepresident\r\nvicepresidentův\r\nviceprezident\r\nviceprezidentův\r\nvíceprocesorový\r\nvíceprofesní\r\nvíceprotokolový\r\nvíceproudový\r\nvíceprůchodový\r\nvíceprvkový\r\nvíceputnový\r\nvícerče\r\nvícero\r\nvícerodička\r\nvícerozměrný\r\nvícerý\r\nvíceřádkový\r\nvíceřezný\r\nvícesaňový\r\nvícesektorový\r\nvícesloupcový\r\nvíceslovný\r\nvícesložkový\r\nvícesměnný\r\nvícesměrový\r\nvícesouborový\r\nvícestanicový\r\nvícestavový\r\nvícestránkový\r\nvícestranný\r\nvícestupňový\r\nvícesvazkový\r\nvícesystémový\r\nvícesytný\r\nvícetypový\r\nvíceúčelový\r\nvíceúčelový\r\nvíceúhelník\r\nvíceúlohový\r\nvíceúrovňový\r\nvíceuživatelský\r\nvíceválcový\r\nvícevidový\r\nvícevláknový\r\nvícevrstevnatý\r\nvícevrstevný\r\nvícevrstvový\r\nvícevrstvý\r\nvícevrtulový\r\nvícevřetenový\r\nvícevýznamový\r\nvícezdrojový\r\nvíceznačnější\r\nvíceznačný\r\nvíceznačný\r\nvíceznakový\r\nvíckrát\r\nVíckův\r\nVícov\r\nvícovský\r\nvička\r\nvíčko\r\nvíčkovat\r\nvíčkový\r\nviď\r\nvídající\r\nvídání\r\nvídaný\r\nvídat\r\nvídávání\r\nvídávaný\r\nvídávat\r\nvida\r\nviděl\r\nVídeňaččin\r\nVídeňačka\r\nvidění\r\nVídeňka\r\nvídeňský\r\nviděný\r\nVídeň\r\nvideoadaptér\r\nvideoart\r\nvideodata\r\nvideodisk\r\nvideodokumentace\r\nvideoeditační\r\nvideofilm\r\nvideofonie\r\nvideoformát\r\nvideogramofon\r\nvideohra\r\nvideokabel\r\nvideokamera\r\nvideokaret\r\nvideokarta\r\nvideokazeta\r\nvideokit\r\nvideoklip\r\nvideokonference\r\nvideokonferenční\r\nvideolekce\r\nvideo\r\nvideomagnetofon\r\nvideomateriál\r\nvideonahrávací\r\nvideonahrávka\r\nvideopamětech\r\nvideopamětem\r\nvideopaměť\r\nvideopamětmi\r\nvideopáska\r\nvideoport\r\nvideoportrét\r\nvideopořad\r\nvideoprodukt\r\nvideoprogram\r\nvideoprospekt\r\nvideopřehlídka\r\nvideopřehrávač\r\nvideopůjčovna\r\nvideorekordér\r\nvideorežim\r\nvideosignál\r\nvideoslot\r\nvideosnímek\r\nvideostřižna\r\nvideosvět\r\nvideosystém\r\nvideotechnika\r\nvideotéka\r\nvideotelefon\r\nvideotelefonní\r\nvideotelefonování\r\nvideotelefonovat\r\nvideoterminál\r\nvideotex\r\nvideotexový\r\nvideotext\r\nvideozáznam\r\nvideozesilovač\r\nvidět\r\nvid\r\nVidice\r\nvidící\r\nvidický\r\nvidím\r\nVidímová\r\nVidím\r\nVidímův\r\nVidín\r\nvidina\r\nviditelnější\r\nviditelný\r\nvidlačka\r\nvidlák\r\nvidlákův\r\nvidle\r\nvidlice\r\nvidlicovitý\r\nvidlicový\r\nvidlička\r\nvidličnatka\r\nvidličnatý\r\nVidnava\r\nvidno\r\nVidochov\r\nvidochovský\r\nvidomý\r\nVidonín\r\nvidonínský\r\nvidoucí\r\nViďourek\r\nViďourková\r\nViďourkův\r\nvidování\r\nvidovaný\r\nvidovat\r\nVidov\r\nvidovský\r\nvidový\r\nviďte\r\nVidura\r\nVidurová\r\nVidurův\r\nViesnerová\r\nViesner\r\nViesnerův\r\nVietnamcův\r\nVietnamčin\r\nVietnamec\r\nVietnam\r\nVietnamka\r\nvietnamský\r\nvietnamský\r\nvietnamština\r\nVieweghová\r\nViewegh\r\nVieweghův\r\nvigilie\r\nvigvam\r\nVihorlat\r\nvihorlatský\r\nvích\r\nVíchová\r\nVích\r\nvichr\r\nvichrný\r\nVichrová\r\nVichr\r\nVichrův\r\nvichřice\r\nVíchův\r\nVII\r\nVIII\r\nviják\r\nvijé\r\nvijó\r\nvikariát\r\nvikárka\r\nvikářství\r\nvikář\r\nvikářův\r\nvika\r\nvíkend\r\nvíkendový\r\nvikev\r\nviking\r\nvikingský\r\nvikingův\r\nvikinský\r\nviklající\r\nviklan\r\nviklání\r\nviklaný\r\nviklat\r\nviklávání\r\nviklávaný\r\nviklávat\r\nviklavější\r\nviklavý\r\nviklefismus\r\nviklefista\r\nviklefistčin\r\nviklefistka\r\nviklefistův\r\nViklef\r\nViklefův\r\nViklický\r\nvíko\r\nvikomtesa\r\nvikomt\r\nvikomtův\r\nViková\r\nvikový\r\nVik\r\nvikslajvantový\r\nViktorčin\r\nviktoriáncův\r\nviktoriánec\r\nviktoriánský\r\nviktoriánství\r\nViktorie\r\nviktorie\r\nViktoriin\r\nViktorin\r\nViktorinová\r\nViktorin\r\nViktorinův\r\nViktorka\r\nViktorová\r\nViktor\r\nViktorův\r\nVikův\r\nvikvovitý\r\nvikvový\r\nVikýřovice\r\nvikýřovický\r\nvikýřový\r\nvikýř\r\nvílanecký\r\nVílanec\r\nvila\r\nvíla\r\nVilda\r\nVildová\r\nVild\r\nVildův\r\nvilejš\r\nvilejšův\r\nVilémovice\r\nvilémovický\r\nVilémov\r\nvilémovský\r\nVilém\r\nVilémův\r\nVilík\r\nVilíkův\r\nVilímek\r\nVilímková\r\nVilímkův\r\nVilímová\r\nVilímovský\r\nVilím\r\nVilímův\r\nvílí\r\nvilka\r\nvilkový\r\nVilma\r\nVilmiččin\r\nVilmička\r\nVilmin\r\nvilnější\r\nVilnjus\r\nvilnjuský\r\nVilno\r\nvilný\r\nvilový\r\nVimperk\r\nVimpersko\r\nvimperský\r\nvinan\r\nvínan\r\nvinárenský\r\nvinárna\r\nvinárnička\r\nvinařčin\r\nVinařice\r\nvinařický\r\nvinařka\r\nvinařský\r\nvinařství\r\nvinař\r\nvinařův\r\nvinasa\r\nvina\r\nVincenciův\r\nVincencová\r\nVincencov\r\nvincencovský\r\nVincenc\r\nVincencův\r\nVincentka\r\nvincentka\r\nVincent\r\nVincíková\r\nVincík\r\nVincíkův\r\nvincit\r\nVincová\r\nVinc\r\nVincův\r\nvindra\r\nvinecký\r\nVinec\r\nvínečko\r\nvinění\r\nvinen\r\nviněný\r\nviněta\r\nvinětka\r\nvinice\r\nvinící\r\nVinický\r\nvinička\r\nviniční\r\nviničný\r\nVinidový\r\nvinidský\r\nvinifikace\r\nviník\r\nviníkův\r\nvinit\r\nVinklářová\r\nVinklář\r\nVinklářův\r\nVinklátová\r\nVinklát\r\nVinklátův\r\nVinklerová\r\nVinkler\r\nVinklerův\r\nvínko\r\nvinkulace\r\nvinkulování\r\nvinkulovaný\r\nvinkulovat\r\nvinkulovávání\r\nvinkulovávaný\r\nvinkulovávat\r\nvinnější\r\nvinný\r\nvinobraní\r\nvinohrad\r\nvinohradnický\r\nvinohradnictví\r\nvinohradničtější\r\nvinohradník\r\nvinohradníkův\r\nvinohradský\r\nVinohrady\r\nvíno\r\nvinopalna\r\nvinorodý\r\nvínorodý\r\nvinou\r\nvinoucí\r\nvinout\r\nvínovice\r\nvínový\r\nVinšová\r\nVinš\r\nVinšův\r\nVintera\r\nVinterová\r\nVinter\r\nVinterův\r\nVintířov\r\nvintířovský\r\nVintrová\r\nVintr\r\nVintrův\r\nvinutější\r\nvinutí\r\nvinutý\r\nvinutý\r\nvinylacetát\r\nvinylbromid\r\nvinylesterový\r\nvinyl\r\nvinylchlorid\r\nvinylit\r\nViola\r\nviola\r\nViolčin\r\nViolin\r\nviolista\r\nviolistčin\r\nviolistka\r\nviolistův\r\nViolka\r\nviolka\r\nviolkovitý\r\nvioloncellista\r\nvioloncellistčin\r\nvioloncellistka\r\nvioloncellistův\r\nvioloncello\r\nvioloncellový\r\nviolový\r\nvioloxantin\r\nVirava\r\nVírava\r\nVíravová\r\nVíravův\r\nvíra\r\nvirblovat\r\nVircpurk\r\nvirémie\r\nVirginia\r\nvirgule\r\nvír\r\nvirilista\r\nvirilistčin\r\nvirilistka\r\nvirilistův\r\nvir\r\nvírník\r\nvirologický\r\nvirologie\r\nvirovější\r\nvírový\r\nvirový\r\nviróza\r\nVirtová\r\nVirt\r\nvirtualita\r\nvirtualizace\r\nvirtualizování\r\nvirtualizovaný\r\nvirtualizovat\r\nvirtuální\r\nvirtuosita\r\nvirtuoska\r\nvirtuosnější\r\nvirtuosní\r\nvirtuos\r\nvirtuosův\r\nvirtuózčin\r\nvirtuozita\r\nvirtuózka\r\nvirtuóznější\r\nvirtuózní\r\nvirtuóz\r\nvirtuózův\r\nVirtův\r\nvirulentnější\r\nvirulentnější\r\nvirulentní\r\nvirus\r\nviržinka\r\nvíření\r\nvířený\r\nvířící\r\nvířit\r\nvířivější\r\nvířivka\r\nvířivý\r\nvířník\r\nvisací\r\nvisačka\r\nvisatcův\r\nvisatec\r\nVisegrád\r\nvisegrádský\r\nvisející\r\nviselcův\r\nviselec\r\nviselský\r\nviselský\r\nvisení\r\nviset\r\nvisící\r\nvískání\r\nvískaný\r\nvískat\r\nvískávat\r\nviska\r\nvíska\r\nviskoelasticita\r\nviskóza\r\nviskozita\r\nviskóznější\r\nviskózní\r\nviskózový\r\nVisla\r\nvisový\r\nVistrahův\r\nvisum\r\nvisutý\r\nVíšek\r\nvišeň\r\nVíšková\r\nViškovský\r\nVíškův\r\nvišnička\r\nVišňová\r\nVišňové\r\nvišňovka\r\nVišňovský\r\nvišňovský\r\nvišňový\r\nvítací\r\nvítající\r\nVitáková\r\nViták\r\nVitákův\r\nvitalismus\r\nvitalista\r\nvitalistčin\r\nvitalistický\r\nvitalistka\r\nvitalistův\r\nvitalita\r\nvitalizující\r\nvitálnější\r\nvitální\r\nvitamin\r\nvitamín\r\nvitamínoterapie\r\nvitamínový\r\nvitaminový\r\nVítamvásová\r\nVítamvás\r\nVítamvásův\r\nvítanější\r\nvítání\r\nVítanov\r\nvítanovský\r\nvítaný\r\nvítaný\r\nVíta\r\nVíťa\r\nVitásek\r\nVitásková\r\nVitáskův\r\nvítat\r\nvítávání\r\nvítávaný\r\nvítávat\r\nvít\r\nVítějeves\r\nvítějeveský\r\nvitější\r\nVítek\r\nViterbi\r\nvítěství\r\nvítězení\r\nvítězenský\r\nvítězený\r\nvítězící\r\nvítězit\r\nvítězka\r\nVítězná\r\nvítěznější\r\nvítězný\r\nvítězosláva\r\nvítězoslavnější\r\nvítězoslavný\r\nVítězslav\r\nVítězslavův\r\nvítězství\r\nvítěz\r\nvítězův\r\nVitice\r\nvitický\r\nvitiligo\r\nVitiněves\r\nvitiněveský\r\nVitín\r\nvitínský\r\nVitinský\r\nvití\r\nVítková\r\nvítkovcův\r\nvítkovec\r\nVítkovice\r\nvítkovický\r\nvítkovický\r\nvítkovičtější\r\nVítkov\r\nvítkovský\r\nVítkův\r\nVitnerová\r\nVitner\r\nVitnerův\r\nVitoldův\r\nvit\r\nVitoraz\r\nVitoslavský\r\nVitoušová\r\nVitouš\r\nVitoušův\r\nVítová\r\nVítovice\r\nvítovický\r\nvítovka\r\nVít\r\nvítr\r\nvitrážka\r\nvitrážový\r\nvitráž\r\nvitrifikace\r\nvitrina\r\nvitrína\r\nvitrínka\r\nvitrínový\r\nvitriol\r\nvitrit\r\nvitritový\r\nvitro\r\nVitteková\r\nVittek\r\nVittekův\r\nVittorie\r\nVítů\r\nVitula\r\nVitulová\r\nVitulův\r\nVítůvová\r\nVítův\r\nVítůvův\r\nVítův\r\nVíťův\r\nVitvarová\r\nVitvar\r\nVitvarův\r\nvitý\r\nvitý\r\nvivace\r\nvivacissimo\r\nVivaldi\r\nvivaristika\r\nvivárium\r\nvivat\r\nvivendi\r\nvivisekce\r\nvivo\r\nviz\r\nvizážista\r\nvizážistčin\r\nvizážistka\r\nvizážistův\r\nvizáž\r\nVízek\r\nvize\r\nvizigótština\r\nvizionářčin\r\nvizionářka\r\nvizionářský\r\nvizionářství\r\nvizionář\r\nvizionářův\r\nvizír\r\nvizírka\r\nvizitace\r\nvizitační\r\nvizita\r\nvizitka\r\nvizitkový\r\nVízková\r\nVízkův\r\nvizme\r\nvizmut\r\nVíznerová\r\nVízner\r\nVíznerův\r\nVizovice\r\nVizovicko\r\nvizovický\r\nvízový\r\nvizte\r\nvizualismus\r\nvizualizace\r\nvizualizační\r\nvizualizování\r\nvizualizovaný\r\nvizualizovat\r\nvizualizující\r\nvizuální\r\nvízum\r\nVižina\r\nvížka\r\nvjedno\r\nvjedu\r\nvjel\r\nvjem\r\nvjemový\r\nvjení\r\nvjetější\r\nvjet\r\nvjetí\r\nvjetý\r\nvjezd\r\nvjezdní\r\nvjezdový\r\nvjíždějící\r\nvjíždění\r\nvjíždět\r\nvkapávání\r\nvkapávaný\r\nvkapávat\r\nvkládací\r\nvkladač\r\nvkládající\r\nvkládanější\r\nvkládání\r\nvkládaný\r\nvkladatelčin\r\nvkladatelka\r\nvkladatelnější\r\nvkladatelný\r\nvkladatelský\r\nvkladatelství\r\nvkladatel\r\nvkladatelův\r\nvkládat\r\nvklad\r\nvklad\r\nvkladní\r\nvkladovější\r\nvkladový\r\nvkleče\r\nvklíněnec\r\nvklínění\r\nvklíněný\r\nvklínit\r\nvkliňování\r\nvkliňovaný\r\nvkliňovat\r\nvklopýtání\r\nvklopýtat\r\nvkloubení\r\nvkloubený\r\nvkloubit\r\nvklouznout\r\nvklouznutí\r\nvklusání\r\nvklusat\r\nvkomponování\r\nvkomponovaný\r\nvkomponovat\r\nvkomponovávání\r\nvkomponovávaný\r\nvkomponovávat\r\nvkopanější\r\nvkopání\r\nvkopaný\r\nvkopat\r\nvkopávání\r\nvkopávaný\r\nvkopávat\r\nvkopírovanější\r\nvkopírování\r\nvkopírovaný\r\nvkopírovat\r\nvkopírovávanější\r\nvkopírovávání\r\nvkopírovávaný\r\nvkopírovávat\r\nvkopnout\r\nvkopnutí\r\nvkopnutý\r\nvkořenění\r\nvkořeněný\r\nvkoulení\r\nvkoulený\r\nvkoulet\r\nvkování\r\nvkovaný\r\nvkovat\r\nvkovu\r\nvkrádání\r\nvkrádaný\r\nvkrádat\r\nvkradení\r\nvkrajování\r\nvkrajovaný\r\nvkrajovat\r\nvkrajovávání\r\nvkrajovávaný\r\nvkrajovávat\r\nvkrást\r\nvkreslení\r\nvkreslený\r\nvkreslit\r\nvkreslování\r\nvkreslovaný\r\nvkreslovat\r\nvkreslovávání\r\nvkreslovávaný\r\nvkreslovávat\r\nvkreslující\r\nvkročení\r\nvkročený\r\nvkročit\r\nvkroucení\r\nvkroucený\r\nvkroutit\r\nvkroužení\r\nvkroužit\r\nvkulhání\r\nvkulhat\r\nvkulhávání\r\nvkulhávat\r\nvkus\r\nvkusnější\r\nvkusný\r\nvkusový\r\nvkutálení\r\nvkutálený\r\nvkutálet\r\nVKV\r\nvkvedlání\r\nvkvedlaný\r\nvkvedlat\r\nvkvedlávání\r\nvkvedlávaný\r\nvkvedlávat\r\nvkvrdlat\r\nvláček\r\nvláčení\r\nvláčený\r\nvláčet\r\nVláčilová\r\nVláčil\r\nVláčilův\r\nvláčka\r\nvláčkovitost\r\nvláčkový\r\nvláčnější\r\nvláčnět\r\nvláčný\r\nvládající\r\nVladan\r\nVladanův\r\nVláďa\r\nvladařčin\r\nvladařit\r\nvladařka\r\nvladařský\r\nvladařství\r\nvladař\r\nvladařův\r\nvláda\r\nvládce\r\nvládcův\r\nVladčin\r\nVladěna\r\nVladěnčin\r\nVladěnin\r\nVladěnka\r\nvladiměřský\r\nVladimírčin\r\nVladimírka\r\nVladimír\r\nVladimírův\r\nVladislav\r\nvladislavský\r\nVladislavův\r\nVladka\r\nvládkyně\r\nvládkynin\r\nvládní\r\nvládnoucí\r\nvládnout\r\nvládnutí\r\nVláďův\r\nvladycký\r\nvládychtivější\r\nvládychtivý\r\nVladyka\r\nvladyka\r\nVladyková\r\nVladykův\r\nvladykův\r\nvláha\r\nvláhový\r\nvláhyplnější\r\nvláhyplný\r\nvlahý\r\nvlachobřezský\r\nVlachová\r\nVlachovice\r\nvlachovický\r\nVlach\r\nVlachův\r\nVlachynský\r\nvlajčička\r\nvlaječka\r\nvlající\r\nvlajka\r\nvlajkonoš\r\nvlajkonošův\r\nvlajkosláva\r\nvlajkový\r\nvlákání\r\nvlákaný\r\nvlákat\r\nvlákénko\r\nvlak\r\nvláknina\r\nvlákninový\r\nvláknitější\r\nvláknitý\r\nvlákno\r\nvláknový\r\nvlakovější\r\nvlakový\r\nvlakvedoucí\r\nvlákýnko\r\nvlámání\r\nvlámaný\r\nvlámat\r\nvlamování\r\nvlamovaný\r\nvlamovat\r\nvlamovávání\r\nvlamovávaný\r\nvlamovávat\r\nVlám\r\nvlámský\r\nvlámština\r\nVlámův\r\nvlání\r\nvlárský\r\nVlasáková\r\nVlasák\r\nVlasákův\r\nvlasatcův\r\nvlasatec\r\nvlasatější\r\nvlasatice\r\nVlasatý\r\nvlasatý\r\nvlasec\r\nvlásečnice\r\nvlásečnicový\r\nvlásek\r\nvlásenkářčin\r\nvlásenkářka\r\nvlásenkářství\r\nvlásenkář\r\nvlásenkářův\r\nvlásenka\r\nvlas\r\nvláskovitý\r\nvláskový\r\nvlásnička\r\nvlasovcův\r\nvlasovec\r\nvlasovitý\r\nvlasovka\r\nVlasovův\r\nvlasový\r\nVlasta\r\nVlasta\r\nvlastecký\r\nVlastec\r\nVlastějovice\r\nvlastějovický\r\nvlastencův\r\nvlastenčení\r\nvlastenčící\r\nvlastenčin\r\nvlastenecký\r\nvlastenectví\r\nvlastenec\r\nvlastenečtější\r\nvlastenka\r\nVlastiččin\r\nVlastička\r\nvlastích\r\nVlastík\r\nVlastíkův\r\nvlastím\r\nVlastimil\r\nVlastimilův\r\nVlastin\r\nVlastislav\r\nVlastislavův\r\nvlastivěda\r\nvlastivědný\r\nvlastizrada\r\nvlastizrádce\r\nvlastizrádcův\r\nvlastizrádkyně\r\nvlastizrádkynin\r\nvlastizrádný\r\nvlast\r\nvlastně\r\nvlastnější\r\nvlastnění\r\nvlastněný\r\nvlastnící\r\nvlastnický\r\nvlastnictví\r\nvlastničtější\r\nvlastník\r\nvlastníkův\r\nvlastnit\r\nvlastní\r\nvlastnoruční\r\nVlastův\r\nVlášek\r\nVlašice\r\nvlašický\r\nVlašim\r\nVlašimsko\r\nvlašimský\r\nvlašimský\r\nVlašínová\r\nVlašín\r\nVlašínův\r\nVlášková\r\nVláškův\r\nVlašsko\r\nvlašský\r\nvlašský\r\nvlašťovčin\r\nvlaštovčí\r\nvlaštovice\r\nvlaštoviččin\r\nvlaštovička\r\nvlaštovičník\r\nvlaštovka\r\nvlašťovka\r\nvlaštovkovitý\r\nvlát\r\nvlávání\r\nvlávat\r\nvlavý\r\nvlažejší\r\nvlažicí\r\nvlažící\r\nvlažnější\r\nvlažný\r\nvlčák\r\nvlčákův\r\nVlčatín\r\nvlčatínský\r\nvlče\r\nvlček\r\nVlček\r\nvlčetinecký\r\nVlčetinec\r\nVlčeves\r\nvlčeveský\r\nvlčice\r\nvlčí\r\nVlčková\r\nVlčkov\r\nvlčkovský\r\nvlčkový\r\nVlčkův\r\nvlčkův\r\nvlčník\r\nVlčnov\r\nvlčnovský\r\nVlčovský\r\nVlčtejn\r\nvlčtejnský\r\nvléct\r\nvlečenější\r\nvlečení\r\nvlečený\r\nvlečka\r\nvlečkový\r\nvlečňák\r\nvlečný\r\nvlekací\r\nvlekání\r\nvlekaný\r\nvlekař\r\nvlekařův\r\nvlek\r\nvleklejší\r\nvlekl\r\nvleklý\r\nvlekoucí\r\nvlepení\r\nvlepený\r\nvlepit\r\nvlepka\r\nvlepovací\r\nvlepování\r\nvlepovaný\r\nvlepovat\r\nvleptávání\r\nvleptávaný\r\nvleptávat\r\nvlétání\r\nvlétaný\r\nvlétat\r\nvlétávání\r\nvlétávat\r\nvletění\r\nvletěný\r\nvletět\r\nvlet\r\nvlétnout\r\nvlétnutí\r\nvlévající\r\nvlévání\r\nvlévaný\r\nvlévat\r\nvlevo\r\nvlezdoprdelismus\r\nvlezení\r\nvlezlejší\r\nvlezlý\r\nvlezprdelka\r\nvlézt\r\nvleže\r\nvlha\r\nvlhčeji\r\nvlhčejší\r\nvlhčení\r\nvlhčený\r\nvlhčicí\r\nvlhčící\r\nvlhčit\r\nvlhčí\r\nvlhkoměr\r\nvlhkomilný\r\nvlhko\r\nvlhkostní\r\nvlhký\r\nvlhnoucí\r\nvlhnout\r\nvlhnutí\r\nvlhnutý\r\nvlícovací\r\nvlídnější\r\nvlídný\r\nvlichocení\r\nvlichocený\r\nvlichotit\r\nvlisování\r\nvlisovaný\r\nvlisovat\r\nvlisovávat\r\nvlítání\r\nvlítaný\r\nvlítat\r\nvlít\r\nvlití\r\nvlítnout\r\nvlítnutí\r\nvlit\r\nvlitý\r\nvlívanější\r\nvlívání\r\nvlívaný\r\nvlívat\r\nvlivem\r\nvliv\r\nvlivnější\r\nvlivný\r\nvlivový\r\nVLK\r\nVlkanov\r\nvlkanovský\r\nVlkava\r\nvlkavský\r\nvlkodlak\r\nvlkodlakův\r\nVlkošov\r\nvlkošovský\r\nVlková\r\nVlkov\r\nvlkovský\r\nvlk\r\nVlk\r\nVlkův\r\nvlkův\r\nvlnařčin\r\nvlnařka\r\nvlnařský\r\nvlnařství\r\nvlnař\r\nvlnařův\r\nvlnatka\r\nvlnatý\r\nvlna\r\nvlnění\r\nvlněný\r\nvlnice\r\nvlnící\r\nvlnit\r\nvlnitější\r\nvlnitý\r\nvlnivý\r\nvlnka\r\nvlnobití\r\nvlnočet\r\nvlnolam\r\nvlnoměr\r\nvlnovcův\r\nvlnovec\r\nvlnovitý\r\nvlnovka\r\nvlnovkový\r\nvlnovod\r\nvlnový\r\nvločka\r\nvločkovací\r\nvločkování\r\nvločkovaný\r\nvločkovat\r\nvločkovávání\r\nvločkovávaný\r\nvločkovávat\r\nvločkovitý\r\nvločkový\r\nvloha\r\nvlomení\r\nvlomený\r\nvlomit\r\nvloni\r\nVlosinský\r\nvloudění\r\nvlouděný\r\nvloudit\r\nvloupání\r\nvloupaný\r\nvloupat\r\nvloupávání\r\nvloupávat\r\nvložení\r\nvložený\r\nvložit\r\nvložka\r\nvložkování\r\nvložkovaný\r\nvložkovat\r\nvložkový\r\nvložný\r\nVltava\r\nVltavice\r\nvltavický\r\nvltavín\r\nvltavínový\r\nvltavský\r\nvlys\r\nvlýska\r\nvlýskový\r\nvmačkání\r\nvmačkaný\r\nvmačkat\r\nvmačkávat\r\nvmáčknout\r\nvmáčknutí\r\nvmáčknutý\r\nvmanévrování\r\nvmanévrovaný\r\nvmanévrovat\r\nvmanipulování\r\nvmanipulovaný\r\nvmanipulovat\r\nvmasírování\r\nvmasírovaný\r\nvmasírovat\r\nvmazat\r\nvmést\r\nvměstek\r\nvměstnání\r\nvměstnaný\r\nvměstnatelnější\r\nvměstnat\r\nvměstnávání\r\nvměstnávaný\r\nvměstnávat\r\nvměšování\r\nvměšovaný\r\nvměšovat\r\nvmetání\r\nvmetaný\r\nvmetat\r\nvmetávací\r\nvmetávání\r\nvmetávaný\r\nvmetávat\r\nvmetek\r\nvmetení\r\nvmetený\r\nvmezeřenější\r\nvmezeřený\r\nvmezeřit\r\nvmíchání\r\nvmíchaný\r\nvmíchat\r\nvmíchávání\r\nvmíchávaný\r\nvmíchávat\r\nvmísit\r\nvmíšení\r\nvmíšený\r\nvmixování\r\nvmixovaný\r\nvmixovat\r\nvmontování\r\nvmontovaný\r\nvmontovat\r\nvmontovávání\r\nvmontovávaný\r\nvmontovávat\r\nvmotat\r\nvmrzlý\r\nvmyslení\r\nvmyslený\r\nvmyslet\r\nvmyslit\r\nvmyšlen\r\nvmýšlet\r\nvn\r\nvnada\r\nvnadění\r\nvnaděný\r\nvnadidlo\r\nvnadit\r\nvnadnější\r\nvnadný\r\nvnášející\r\nvnášenější\r\nvnášení\r\nvnášený\r\nvnášet\r\nvně\r\nvnějšek\r\nvnější\r\nvnější\r\nvnějškovější\r\nvnějškový\r\nvnějšnější\r\nvnesenější\r\nvnesení\r\nvnesený\r\nvnést\r\nvnikající\r\nvnikání\r\nvnikat\r\nvnik\r\nvniklejší\r\nvniklý\r\nvniknout\r\nvniknutí\r\nvniknuvší\r\nvnímací\r\nvnímající\r\nvnímanější\r\nvnímání\r\nvnímaný\r\nvnímatelnější\r\nvnímatelný\r\nvnímat\r\nvnímavější\r\nvnímavý\r\nvnímavý\r\nvniternější\r\nvniterný\r\nvnitrobankovní\r\nvnitroblokový\r\nvnitrodruhový\r\nvnitrofakultní\r\nvnitro\r\nvnitroodborový\r\nvnitropodnikový\r\nvnitropolitický\r\nvnitropolitičtější\r\nvnitroregionální\r\nvnitroresortní\r\nvnitrostátní\r\nvnitrostranický\r\nvnitrostraničtější\r\nvnitrosvazový\r\nvnitrouherský\r\nvnitrozávodní\r\nvnitrozávodový\r\nvnitrozemcův\r\nvnitrozemec\r\nvnitrozemí\r\nvnitrozemský\r\nvnitřejší\r\nvnitřek\r\nvnitřka\r\nvnitřkem\r\nvnitřku\r\nvnitřnější\r\nvnitřní\r\nvniveč\r\nvnoření\r\nvnořený\r\nvnořit\r\nvnořitelný\r\nvnořování\r\nvnořovaný\r\nvnořovat\r\nvnořovávat\r\nvnoučátko\r\nvnouče\r\nvnouček\r\nVnouček\r\nVnoučková\r\nVnoučkův\r\nvnoučkův\r\nvnucenější\r\nvnucení\r\nvnucený\r\nvnucování\r\nvnucovaný\r\nvnucovat\r\nvnucující\r\nvnuččin\r\nvnučka\r\nvnukání\r\nvnukaný\r\nvnukat\r\nvnukávání\r\nvnukávaný\r\nvnukávat\r\nvnuknout\r\nvnuknutí\r\nvnuknutý\r\nvnuk\r\nvnukův\r\nvnutit\r\nvoálový\r\nVobejda\r\nVobejdová\r\nVobejdův\r\nVoborníková\r\nVoborník\r\nVoborníkův\r\nVoborský\r\nVobořilová\r\nVobořil\r\nVobořilův\r\nVobrová\r\nVobr\r\nVobrův\r\nVocetka\r\nVocetková\r\nVocetkův\r\nVoců\r\nVočadlo\r\nVočadlová\r\nVočadlův\r\nvodácký\r\nvodáctví\r\nvodaččin\r\nVodáček\r\nvodačka\r\nVodáčková\r\nVodáčkův\r\nvodáčtější\r\nVodáková\r\nvodák\r\nVodák\r\nVodákův\r\nvodákův\r\nVoda\r\nvodárenský\r\nvodárenství\r\nvodárna\r\nvodárnička\r\nvodař\r\nvodařův\r\nvoda\r\nvoděnější\r\nvodění\r\nvoděnka\r\nvoděný\r\nVoděra\r\nVoděrová\r\nVoděrův\r\nVodice\r\nvodicí\r\nvodící\r\nvodický\r\nvodičitý\r\nVodička\r\nvodička\r\nVodičková\r\nvodičkový\r\nVodičkův\r\nvodič\r\nvodík\r\nvodíkování\r\nvodíkovaný\r\nvodíkovat\r\nvodíkový\r\nvodilka\r\nvodit\r\nvodítko\r\nvodivější\r\nvodivostní\r\nvodivý\r\nvodka\r\nVodňansko\r\nVodňanský\r\nvodňanský\r\nVodňany\r\nVodnárek\r\nVodnárková\r\nVodnárkův\r\nvodnář\r\nvodnářův\r\nvodnatější\r\nvodnatelnější\r\nvodnatelný\r\nvodnatý\r\nvodnatý\r\nvodnice\r\nvodnický\r\nvodníček\r\nvodníčkův\r\nvodník\r\nvodníkův\r\nvodní\r\nvodný\r\nvodočet\r\nvodohospodářčin\r\nvodohospodářka\r\nvodohospodářský\r\nvodohospodářství\r\nvodohospodář\r\nvodohospodářův\r\nvodochodský\r\nVodochody\r\nvodoinstalace\r\nvodoinstalatér\r\nvodoinstalatérství\r\nvodoinstalatérův\r\nvodojem\r\nVodolanová\r\nVodolan\r\nVodolanův\r\nvodoléčba\r\nvodoléčebný\r\nvodoměr\r\nvodoměrka\r\nvodomilnější\r\nvodomilný\r\nvodomil\r\nvodomilův\r\nvodonepropustný\r\nvodoodpudivý\r\nvodopádek\r\nvodopád\r\nvodopádový\r\nvodopis\r\nvodoprávní\r\nvodopropustný\r\nvodorovnější\r\nvodorovný\r\nvodostálý\r\nvodoteč\r\nvodotěsnější\r\nvodotěsnící\r\nvodotěsný\r\nvodotisk\r\nvodotiskový\r\nvodotrysk\r\nvodouch\r\nvodouchův\r\nvodouš\r\nvodoušův\r\nvodovací\r\nvodováha\r\nvodování\r\nvodovaný\r\nvodovat\r\nvodovatý\r\nVodová\r\nvodovější\r\nvodovky\r\nvodovod\r\nvodovodní\r\nvodovodný\r\nvodový\r\nvodovzdornější\r\nvodovzdorný\r\nvodoznak\r\nvodoznakový\r\nVodrážka\r\nVodrážková\r\nVodrážkův\r\nvodstvo\r\nvodstvo\r\nvodunevytěsňující\r\nvoduodpuzující\r\nVodův\r\nvoduvytěsňující\r\nVodvárka\r\nVodvárková\r\nVodvárkův\r\nVodžáková\r\nVodžák\r\nVodžákův\r\nVogel\r\nVogela\r\nVogele\r\nVogelech\r\nVogelem\r\nVogelová\r\nVogelové\r\nVogelovi\r\nVogelů\r\nVogelům\r\nVogelův\r\nVogely\r\nVoglová\r\nVogl\r\nVoglův\r\nVoháňka\r\nVoháňková\r\nVoháňkův\r\nVohlídalová\r\nVohlídal\r\nVohlídalův\r\nVohnoutová\r\nVohnout\r\nVohnoutův\r\nvochlička\r\nvochličkový\r\nvochlovací\r\nvochlovačka\r\nvochlování\r\nvochlovaný\r\nvochlovat\r\nVochomůrka\r\nVochomůrkův\r\nVochov\r\nvochovský\r\nVochozka\r\nVochozková\r\nVochozkův\r\nvoj\r\nvojácký\r\nvojáctví\r\nvojaččin\r\nvojáček\r\nVojáček\r\nvojačka\r\nVojáčková\r\nVojáčkův\r\nvojáčkův\r\nvojáčtější\r\nvojákování\r\nvojákovat\r\nvoják\r\nvojákův\r\nvojákyně\r\nvojákynin\r\nvojanský\r\nVojany\r\nVojenice\r\nvojenický\r\nvojenskohospodářský\r\nvojenskopolitický\r\nvojenskopolitičtější\r\nvojenskoprůmyslový\r\nvojenskostrategický\r\nvojenskostrategičtější\r\nvojenský\r\nvojenství\r\nvojenštější\r\nvojevůdce\r\nvojevůdcovský\r\nvojevůdcův\r\nvojínka\r\nvojín\r\nvojínův\r\nVojířová\r\nVojíř\r\nVojířův\r\nvojka\r\nVojkovice\r\nvojkovický\r\nVojkov\r\nvojkovský\r\nVojna\r\nvojna\r\nVojníkov\r\nvojníkovský\r\nVojnová\r\nVojnovičová\r\nVojnovič\r\nVojnovičův\r\nvojnový\r\nVojnův\r\nvojsk\r\nvojsko\r\nvojskový\r\nVojslavice\r\nvojslavický\r\nVojtanov\r\nvojtanovský\r\nVojta\r\nVojtěchová\r\nVojtěchov\r\nVojtěchovský\r\nvojtěchovský\r\nVojtěch\r\nVojtěchův\r\nVojtek\r\nvojtěška\r\nvojtěškový\r\nVojtík\r\nVojtíkův\r\nVojtíšek\r\nVojtíšková\r\nVojtíškův\r\nVojtková\r\nVojtkův\r\nVojtová\r\nVojtův\r\nvojvoda\r\nVojvodíková\r\nVojvodík\r\nVojvodíkův\r\nvojvodství\r\nvojvodův\r\nVokáčová\r\nVokáč\r\nVokáčův\r\nvokál\r\nvokalický\r\nvokalismus\r\nvokalista\r\nvokalistčin\r\nvokalistka\r\nvokalistův\r\nvokalizace\r\nvokálnější\r\nvokální\r\nVokálová\r\nVokál\r\nVokálův\r\nvokativ\r\nvokativní\r\nVokatý\r\nVokounová\r\nVokoun\r\nVokounův\r\nVokovice\r\nvokovický\r\nVokov\r\nvokovský\r\nVokurka\r\nVokurková\r\nVokurkův\r\nvola\r\nvolací\r\nvolačka\r\nvolající\r\nVoláková\r\nVolák\r\nVolákův\r\nvolanější\r\nvolánek\r\nvolání\r\nvolánkový\r\nvolánový\r\nvolant\r\nvolaný\r\nVolárna\r\nvolarský\r\nVolary\r\nvolatilní\r\nvolat\r\nvolávanější\r\nvolávání\r\nvolávaný\r\nvolávat\r\nvolavčí\r\nvolavka\r\nvolavý\r\nvolba\r\nVoldánová\r\nVoldán\r\nVoldánův\r\nvole\r\nvolební\r\nvolební\r\nvoleček\r\nvolečkův\r\nvolech\r\nvolejbal\r\nvolejbalista\r\nvolejbalistčin\r\nvolejbalistka\r\nvolejbalistův\r\nvolejbalový\r\nVolejníková\r\nVolejník\r\nVolejníkův\r\nvolej\r\nvole\r\nvolek\r\nVolek\r\nvolem\r\nVolemanová\r\nVoleman\r\nVolemanův\r\nvolenější\r\nVoleníková\r\nVoleník\r\nVoleníkův\r\nvolení\r\nvolenka\r\nvolený\r\nvolený\r\nVolešová\r\nVoleš\r\nVolešův\r\nVolfartice\r\nvolfartický\r\nVolfířov\r\nvolfířovský\r\nVolfová\r\nVolf\r\nVolfštejn\r\nvolfštejnský\r\nVolfův\r\nVolgograd\r\nvolgogradský\r\nVolha\r\nVolhmut\r\nVolhmutův\r\nvoli\r\nvolící\r\nvolička\r\nvoličový\r\nvoličský\r\nvoličstvo\r\nvolič\r\nvoličův\r\nvoliéra\r\nvoliérový\r\nvolit\r\nvolitelčin\r\nvolitelka\r\nvolitelný\r\nvolitel\r\nvolitelův\r\nVolková\r\nVolkův\r\nvolkův\r\nvolky\r\nVolmanová\r\nVolman\r\nVolmanův\r\nVolma\r\nVolmová\r\nVolmův\r\nvolňásek\r\nvolnější\r\nvolní\r\nvolnoběžka\r\nvolnoběžný\r\nvolno\r\nvolnomyšlenkářčin\r\nvolnomyšlenkářka\r\nvolnomyšlenkářský\r\nvolnomyšlenkářství\r\nvolnomyšlenkář\r\nvolnomyšlenkářův\r\nVolný\r\nvolný\r\nvolontárie\r\nvolontérčin\r\nvolontérka\r\nVološin\r\nvolovi\r\nvolovina\r\nvolový\r\nvolský\r\nvoltampérový\r\nVolta\r\nVolta\r\nvolt\r\nvoltmetr\r\nvoltový\r\nVoltrová\r\nVoltr\r\nVoltrův\r\nVoltův\r\nvolů\r\nvolům\r\nvoluminézní\r\nvoluntarismus\r\nvoluntarista\r\nvoluntaristčin\r\nvoluntaristický\r\nvoluntarističtější\r\nvoluntaristka\r\nvoluntaristův\r\nvoluta\r\nvolutový\r\nVolvo\r\nvoly\r\nVolyn\r\nVolyně\r\nVolyňka\r\nvolyňský\r\nvolžský\r\nVomáčka\r\nVomáčko\r\nVomáčková\r\nVomáčkův\r\nvon\r\nvoňavější\r\nvoňavkářčin\r\nvoňavkářka\r\nvoňavkářství\r\nvoňavkář\r\nvoňavkářův\r\nvoňavka\r\nvoňavý\r\nVondráček\r\nVondráčková\r\nVondráčkův\r\nVondráková\r\nVondrák\r\nVondrákův\r\nVondra\r\nVondrášek\r\nVondrášková\r\nVondráškův\r\nVondrašová\r\nVondraš\r\nVondrašův\r\nVondroušová\r\nVondrouš\r\nVondroušův\r\nVondrová\r\nVondrovice\r\nvondrovický\r\nVondruška\r\nVondrušková\r\nVondruškův\r\nVondrův\r\nvonění\r\nvonět\r\nvonící\r\nvonička\r\nVoňka\r\nVoňková\r\nVoňkův\r\nVonnegut\r\nVonnegutův\r\nvonnější\r\nvonný\r\nVopálka\r\nVopálková\r\nVopálkův\r\nVopěnka\r\nVopěnková\r\nVopěnkův\r\nvoperování\r\nvoperovaný\r\nvoperovat\r\nvoperovávat\r\nVopička\r\nVopičková\r\nVopičkův\r\nvoraččin\r\nVoráček\r\nvoračka\r\nVoráčková\r\nVoráčkův\r\nVoráčová\r\nVoráč\r\nVoráčův\r\nVorarlbersko\r\nvorařčin\r\nvoraření\r\nvorařina\r\nvorařka\r\nvorařský\r\nvorařství\r\nvorař\r\nvorařův\r\nVorasický\r\nVorel\r\nvor\r\nVorlíček\r\nVorlíčková\r\nVorlíčkův\r\nVorlová\r\nVorlův\r\nvormovací\r\nvormování\r\nvormovaný\r\nvormovat\r\nvoroněžský\r\nVoroněž\r\nvoroplavba\r\nVoršilka\r\nVoršilková\r\nVoršilkův\r\nVoršilský\r\nVortová\r\nvortovský\r\nvorvaní\r\nvorvaň\r\nVoříšek\r\nVoříšek\r\nVoříšková\r\nVoříškův\r\nVosáhlo\r\nVosáhlová\r\nVosáhlův\r\nVosátka\r\nVosátková\r\nVosátkův\r\nvosa\r\nVosecký\r\nVosejpka\r\nVosejpková\r\nVosejpkův\r\nVosický\r\nvosička\r\nvosí\r\nvoskařčin\r\nvoskařka\r\nvoskařství\r\nvoskař\r\nvoskařův\r\nvosk\r\nvoskovací\r\nvoskování\r\nvoskovaný\r\nvoskovaný\r\nvoskovat\r\nvoskovávání\r\nvoskovávaný\r\nvoskovávat\r\nVoskovcová\r\nVoskovcův\r\nVoskovec\r\nvoskovější\r\nvoskovka\r\nvoskovník\r\nvoskový\r\nVostatek\r\nVostatková\r\nVostatkův\r\nVostrý\r\nVostřáková\r\nVostřák\r\nVostřákův\r\nVostřelová\r\nVostřel\r\nVostřelův\r\nVosyka\r\nVosyková\r\nVosykův\r\nVošahlíková\r\nVošahlík\r\nVošahlíkův\r\nVošoustová\r\nVošoust\r\nVošoustův\r\nvoština\r\nvoštinovitý\r\nvoštinový\r\nVotava\r\nVotavová\r\nVotavův\r\nVotice\r\nvotický\r\nvotivní\r\nVotoček\r\nVotočková\r\nVotočkův\r\nVotruba\r\nVotrubcová\r\nVotrubcův\r\nVotrubec\r\nVotrubová\r\nVotrubův\r\nvótum\r\nVotýpka\r\nVotýpková\r\nVotýpkův\r\nvous\r\nvousáč\r\nvousáčův\r\nvousatější\r\nvousatka\r\nvousatý\r\nvousek\r\nvous\r\nvouska\r\nVovčička\r\nVovčičková\r\nVovčičkův\r\nvoyerství\r\nvoyeurismus\r\nVozáková\r\nVozák\r\nVozákův\r\nVozanek\r\nVozanková\r\nVozankův\r\nvozatajčin\r\nvozatajka\r\nvozatajský\r\nvozatajství\r\nvozatajstvo\r\nvozataj\r\nvozatajův\r\nVozdecký\r\nvoze\r\nvozech\r\nvozem\r\nvozhřivka\r\nvozící\r\nvozíček\r\nvozíčkářčin\r\nvozíčkářka\r\nvozíčkář\r\nvozíčkářův\r\nvozíčkový\r\nvozidlo\r\nvozidlový\r\nvozík\r\nvozíkový\r\nvozit\r\nvozítko\r\nvozívání\r\nvozívaný\r\nvozívat\r\nVozka\r\nvozka\r\nVozková\r\nVozkův\r\nvozkův\r\nVoznice\r\nvoznice\r\nvoznický\r\nvozovka\r\nvozovna\r\nvozový\r\nvozu\r\nvozů\r\nvozům\r\nvozy\r\nVožehová\r\nVožeh\r\nVožehův\r\nVoženílek\r\nVoženílková\r\nVoženílkův\r\nvožení\r\nvožený\r\nVožice\r\nvožický\r\nVP\r\nvpáčení\r\nvpáčený\r\nvpáčit\r\nvpadání\r\nvpadat\r\nvpadávání\r\nvpadávaný\r\nvpadávat\r\nvpád\r\nvpadlejší\r\nvpadlý\r\nvpadnout\r\nvpadnutí\r\nvpálenější\r\nvpálení\r\nvpálený\r\nvpálit\r\nvpalovanější\r\nvpalovaní\r\nvpalování\r\nvpalovaný\r\nvpalovat\r\nvpalovávání\r\nvpalovávaný\r\nvpalovávat\r\nvpalující\r\nvpasování\r\nvpasovaný\r\nvpasovat\r\nvpašování\r\nvpašovaný\r\nvpašovat\r\nvpéct\r\nvpečenější\r\nvpečení\r\nvpečený\r\nvpich\r\nvpíchnout\r\nvpíchnutí\r\nvpíchnutý\r\nvpichovací\r\nvpichování\r\nvpichovaný\r\nvpichovat\r\nvpichový\r\nvpíjející\r\nvpíjenější\r\nvpíjení\r\nvpíjený\r\nvpíjet\r\nvpisek\r\nvpis\r\nvpisovanější\r\nvpisování\r\nvpisovaný\r\nvpisovat\r\nvpít\r\nvpitější\r\nvpití\r\nvpit\r\nvpitý\r\nvpitý\r\nvplachtění\r\nvplachtit\r\nvplavání\r\nvplavat\r\nvplavávání\r\nvplavávat\r\nvplavejme\r\nvplavej\r\nvplavejte\r\nvplazení\r\nvplazit\r\nvplést\r\nvplétání\r\nvplétaný\r\nvplétat\r\nvpletení\r\nvpletený\r\nvplížení\r\nvplížit\r\nvplout\r\nvplouvání\r\nvplouvaný\r\nvplouvat\r\nvplutí\r\nvplutý\r\nvplynout\r\nvplynutí\r\nvplynutý\r\nvplývání\r\nvplývat\r\nvpochodování\r\nvpochodovaný\r\nvpochodovat\r\nvpolosedě\r\nvposledku\r\nvpotácení\r\nvpotácet\r\nvpouštějící\r\nvpouštěnější\r\nvpouštění\r\nvpouštěný\r\nvpouštět\r\nvpravdě\r\nvpravení\r\nvpravený\r\nvpravit\r\nvpravo\r\nvpravování\r\nvpravovaný\r\nvpravovat\r\nvpravovování\r\nvpravovovaný\r\nvpravovovat\r\nvpřed\r\nvpředu\r\nvpustit\r\nvpust\r\nvpuštěnější\r\nvpuštění\r\nvpuštěný\r\nVrabcová\r\nVrabcův\r\nvrabcův\r\nvrabčák\r\nvrabčí\r\nvrabec\r\nVrabec\r\nVrábel\r\nVrábla\r\nVráblech\r\nVráblem\r\nVrábli\r\nVrablice\r\nvrablický\r\nVrábliková\r\nVráblik\r\nVráblikův\r\nVráblová\r\nVráblové\r\nVráblovi\r\nVráblů\r\nVráblům\r\nVráblův\r\nVrábly\r\nvracející\r\nvracení\r\nvrácení\r\nvrácenka\r\nvracený\r\nvrácený\r\nvracet\r\nvracívání\r\nvracívaný\r\nvracívat\r\nVracov\r\nvracovský\r\nvrah\r\nvrahův\r\nvrak\r\nvrakovací\r\nvrakoviště\r\nvran\r\nvranách\r\nvranám\r\nvranami\r\nVrána\r\nvrána\r\nvranější\r\nVránek\r\nVranický\r\nvraník\r\nvraníkův\r\nvraní\r\nvranka\r\nVránková\r\nVránkův\r\nVranová\r\nVránová\r\nVranovice\r\nvranovický\r\nVranov\r\nvranovský\r\nVránův\r\nVraný\r\nvraný\r\nvrápencův\r\nvrápenec\r\nvrása\r\nvrásčitější\r\nvrásčitý\r\nvráska\r\nvráskovitý\r\nvrásnění\r\nvrásný\r\nvraštění\r\nvraštěný\r\nvraštící\r\nVraštilová\r\nVraštil\r\nVraštilův\r\nvraštit\r\nvrata\r\nVráťa\r\nvrátek\r\nVratěnín\r\nvratěnínský\r\nvratičový\r\nvratidlo\r\nVrátilová\r\nVrátil\r\nVrátilův\r\nVratimov\r\nvratimovský\r\nvratiplachta\r\nvratiprst\r\nVratislávka\r\nVratislav\r\nvratislavský\r\nVratislavův\r\nvrátit\r\nvratitelnější\r\nvratitelný\r\nvrátka\r\nvratka\r\nVrátkov\r\nvrátkovský\r\nvratký\r\nvrátnice\r\nvrátnicový\r\nVrátníček\r\nVrátníčková\r\nVrátníčkův\r\nVrátno\r\nVrátný\r\nvrátný\r\nvratný\r\nVráto\r\nvratový\r\nvratší\r\nVráťův\r\nvrávorající\r\nvrávorání\r\nvrávorat\r\nvrávoravější\r\nvrávoravý\r\nvrazit\r\nvražda\r\nvraždění\r\nvražděný\r\nvraždící\r\nvraždička\r\nvraždit\r\nvražedkyně\r\nvražedkynin\r\nvražednější\r\nvražednice\r\nvražedničin\r\nvražedný\r\nvražení\r\nvrážení\r\nvráženský\r\nvražený\r\nvrážený\r\nvrážet\r\nvražící\r\nVražkov\r\nvražkovský\r\nVrážné\r\nVráž\r\nVrba\r\nVrbata\r\nVrbatka\r\nVrbatková\r\nVrbatkův\r\nVrbatová\r\nVrbatův\r\nvrba\r\nVrbenský\r\nvrbice\r\nVrbický\r\nvrbička\r\nvrbina\r\nvrbka\r\nvrbkový\r\nVrbno\r\nVrbný\r\nVrbová\r\nvrbovecký\r\nVrbovec\r\nvrbovější\r\nvrbovka\r\nvrbový\r\nVrbský\r\nVrbův\r\nvrčení\r\nvrčet\r\nvrčící\r\nvrčivý\r\nvrhaččin\r\nvrhačka\r\nvrhačský\r\nvrhač\r\nvrhačův\r\nvrhající\r\nvrhání\r\nvrhaný\r\nvrhat\r\nvrhávání\r\nvrhávaný\r\nvrhávat\r\nvrh\r\nvrhnout\r\nvrhnutí\r\nvrhnutý\r\nvrchem\r\nvrch\r\nVrchlabí\r\nVrchlický\r\nvrchlík\r\nvrchnější\r\nvrchní\r\nvrchnostenský\r\nvrcholek\r\nvrcholení\r\nvrcholený\r\nvrchol\r\nvrcholící\r\nvrcholičnatý\r\nvrcholík\r\nvrcholit\r\nvrcholnější\r\nvrcholný\r\nvrcholovější\r\nvrcholový\r\nvrcholu\r\nVrchoslavice\r\nvrchoslavický\r\nvrchovatější\r\nvrchovatý\r\nVrchovecký\r\nvrchovina\r\nvrchoviště\r\nvrchový\r\nvrkající\r\nvrkání\r\nvrkání\r\nvrkat\r\nvrkávání\r\nvrkávat\r\nvrklající\r\nVrkočová\r\nvrkoč\r\nVrkoč\r\nVrkočův\r\nvrkú\r\nVrňata\r\nVrňatová\r\nVrňatův\r\nvrnění\r\nvrnět\r\nvrnící\r\nvrnivý\r\nvročení\r\nvročený\r\nvročit\r\nvrostlejší\r\nvrostl\r\nvrostlý\r\nvrostu\r\nvroubek\r\nvroubení\r\nvroubený\r\nvroubící\r\nvroubit\r\nvroubkovací\r\nvroubkování\r\nvroubkovaný\r\nvroubkovat\r\nvroucí\r\nvroucnější\r\nvroucný\r\nvrozenější\r\nvrozen\r\nvrozený\r\nvrr\r\nvrrr\r\nvrstevnatější\r\nvrstevnatý\r\nvrstevnice\r\nvrstevnicový\r\nvrstevník\r\nvrstevníkův\r\nvrstevný\r\nvrstva\r\nvrstvenější\r\nvrstvení\r\nvrstvení\r\nvrstvený\r\nvrstvicí\r\nvrstvící\r\nvrstvička\r\nvrstvit\r\nvrstvový\r\nVršecký\r\nvršek\r\nvršení\r\nvršený\r\nvršící\r\nvršíček\r\nvršit\r\nvrškový\r\nVršovec\r\nVršovice\r\nvršovický\r\nvršovický\r\nVršovka\r\nVršovský\r\nvrtací\r\nvrtáček\r\nvrtačka\r\nvrtačkový\r\nvrtáčkový\r\nvrtající\r\nvrták\r\nvrtání\r\nvrtaný\r\nvrtat\r\nvrtávání\r\nvrtávaný\r\nvrtávat\r\nvrtavý\r\nvrtba\r\nvrtčejší\r\nvrtějš\r\nvrtění\r\nvrtění\r\nvrtěný\r\nvrtět\r\nvrt\r\nvrtící\r\nvrtichvost\r\nvrtichvostův\r\nVrtiška\r\nVrtišková\r\nVrtiškův\r\nvrtívat\r\nvrtivý\r\nvrtkavcův\r\nvrtkavec\r\nvrtkavější\r\nvrtkavý\r\nvrtmistr\r\nvrtmistrův\r\nvrtnout\r\nvrtnutí\r\nvrtnutý\r\nvrtný\r\nvrtohlavý\r\nvrtoch\r\nvrtošivější\r\nvrtošivý\r\nvrtule\r\nvrtulka\r\nvrtulníček\r\nvrtulník\r\nvrtulníkový\r\nvrtulový\r\nvrub\r\nvrub\r\nvrubopis\r\nvrubounovitý\r\nvrubovací\r\nvrubování\r\nvrubovaný\r\nvrubovat\r\nvrubovka\r\nvrubový\r\nvrůstající\r\nvrůstání\r\nvrůstat\r\nvrůst\r\nvrůst\r\nvrut\r\nVrutice\r\nvrutický\r\nvryp\r\nvrýt\r\nvrytější\r\nvrytí\r\nvrytý\r\nvrývání\r\nvrývaný\r\nvrývat\r\nvrývavý\r\nvrz\r\nVrzáček\r\nVrzáčková\r\nVrzáčkův\r\nvrzající\r\nVrzáková\r\nVrzák\r\nVrzákův\r\nVrzala\r\nVrzalová\r\nVrzal\r\nVrzalův\r\nvrzání\r\nvrzat\r\nvrzávání\r\nvrzávat\r\nvrzavější\r\nvrzavý\r\nvrz\r\nvrznout\r\nvrznutí\r\nvrzy\r\nvržení\r\nvržený\r\nvržu\r\nvřadění\r\nvřaděný\r\nvřadící\r\nvřadit\r\nvřaditelnější\r\nvřaditelný\r\nvřaďovat\r\nvřava\r\nvřazenější\r\nvřazení\r\nvřazený\r\nvřazovanější\r\nvřazování\r\nvřazovaný\r\nvřazovat\r\nvřazovatelnější\r\nvřazovatelný\r\nvřeckatý\r\nvřecko\r\nvřeckovýtrusý\r\nvřed\r\nvředovatění\r\nvředovitý\r\nvředový\r\nvřelejší\r\nvřelý\r\nvření\r\nvření\r\nvřes\r\nVřesina\r\nVřeskovice\r\nvřeskovický\r\nVřesová\r\nvřesovcovitý\r\nvřesovec\r\nVřesovice\r\nvřesovický\r\nvřesoviště\r\nvřesovitý\r\nvřesovka\r\nvřesovský\r\nvřesový\r\nVřešťálová\r\nVřešťál\r\nVřešťálův\r\nvřešťan\r\nvřeštění\r\nvřeštěný\r\nvřeštět\r\nvřeštící\r\nvřeštivější\r\nvřeštivý\r\nVřešťov\r\nVřešťovský\r\nvřešťovský\r\nvřetánko\r\nvřetene\r\nvřeteník\r\nvřeteníkový\r\nvřeténko\r\nvřetenní\r\nvřeteno\r\nvřetenovitý\r\nvřetenový\r\nVřetenský\r\nvřetenuška\r\nvřetýnko\r\nvřezanější\r\nvřezání\r\nvřezaný\r\nvřezat\r\nvřezávající\r\nvřezávanější\r\nvřezávání\r\nvřezávaný\r\nvřezávat\r\nvřícení\r\nvřícený\r\nvřící\r\nvřídek\r\nvřídelní\r\nvřídlo\r\nvřídlovec\r\nvřískající\r\nvřískání\r\nvřískaný\r\nvřískat\r\nvřískávat\r\nvřískavý\r\nvřísknout\r\nvřískot\r\nvřít\r\nvřítit\r\nvříznout\r\nvříznutější\r\nvříznutí\r\nvříznutý\r\nvříznutý\r\nVS\r\nvsadit\r\nvsadka\r\nvsádka\r\nvsádkový\r\nvsákavý\r\nvsak\r\nvsáklý\r\nvsáknout\r\nvsáknutí\r\nvsáknutý\r\nvsakování\r\nvsakovaný\r\nvsakovat\r\nvsakovávání\r\nvsakovávaný\r\nvsakovávat\r\nvsání\r\nvsát\r\nvsát\r\nvsátý\r\nvsávat\r\nvsázecí\r\nvsazení\r\nvsázení\r\nvsazený\r\nvsázený\r\nvsázet\r\nvsázka\r\nvsázkový\r\nvsazování\r\nvsazovaný\r\nvsazovat\r\nvsedající\r\nvsedání\r\nvsedat\r\nvsedávání\r\nvsedávat\r\nvsedě\r\nvsednout\r\nvsednutí\r\nvsekávání\r\nvsekávaný\r\nvsekávat\r\nvsení\r\nVsetín\r\nvsetínský\r\nvset\r\nvsetý\r\nvsítění\r\nvsítěný\r\nvsítit\r\nvskakování\r\nvskakovat\r\nvskakovávání\r\nvskakovávaný\r\nvskakovávat\r\nvskočení\r\nvskočit\r\nvskrytu\r\nvskutku\r\nvsoukání\r\nvsoukaný\r\nvsoukat\r\nvsoukávání\r\nvsoukávaný\r\nvsoukávat\r\nvsouvání\r\nvsouvaný\r\nvsouvat\r\nvstal\r\nvstaní\r\nvstanu\r\nvstát\r\nvstavačovitý\r\nvstavač\r\nvstávající\r\nvstávání\r\nvstávat\r\nvstoje\r\nvstoupení\r\nvstoupený\r\nvstoupit\r\nvstrčení\r\nvstrčený\r\nvstrčit\r\nvstřebanější\r\nvstřebání\r\nvstřebaný\r\nvstřebatelnější\r\nvstřebatelný\r\nvstřebat\r\nvstřebávající\r\nvstřebávání\r\nvstřebávaný\r\nvstřebávat\r\nvstřelenější\r\nvstřelení\r\nvstřelený\r\nvstřel\r\nvstřelit\r\nvstřelování\r\nvstřelovaný\r\nvstřelovat\r\nvstřelovávání\r\nvstřelovávaný\r\nvstřelovávat\r\nvstříc\r\nvstřícnější\r\nvstřícný\r\nvstříkávání\r\nvstříkávaný\r\nvstříkávat\r\nvstřik\r\nvstříknout\r\nvstřiknutí\r\nvstříknutí\r\nvstříknutý\r\nvstřikovací\r\nvstřikovač\r\nvstřikování\r\nvstřikovaný\r\nvstřikovat\r\nvstřikovávání\r\nvstřikovávaný\r\nvstřikovávat\r\nvstřikový\r\nvstupenka\r\nvstup\r\nvstupní\r\nvstupný\r\nvstupování\r\nvstupováno\r\nvstupovat\r\nvstupte\r\nvstupující\r\nvsugerování\r\nvsugerovaný\r\nvsugerovat\r\nvsugerovávání\r\nvsugerovávaný\r\nvsugerovávat\r\nvsunout\r\nvsunování\r\nvsunovaný\r\nvsunovat\r\nvsunutí\r\nvsunutý\r\nvsuvka\r\nvsuvkový\r\nvsypající\r\nvsypanější\r\nvsypání\r\nvsýpání\r\nvsypaný\r\nvsýpaný\r\nvsypat\r\nvsýpat\r\nvsypávající\r\nvsypávanější\r\nvsypávání\r\nvsypávaný\r\nvsypávat\r\nVŠ\r\nvšak\r\nvšanc\r\nVŠB\r\nVŠD\r\nVŠE\r\nvše\r\nvšecek\r\nvšecka\r\nvšecko\r\nvšecky\r\nvšedemokratický\r\nvšednější\r\nvšednění\r\nvšedněný\r\nvšednět\r\nvšední\r\nvšednodenní\r\nvšehltavý\r\nvšeho\r\nvšehochuť\r\nvšehomíra\r\nvšehovšudy\r\nVšehrdy\r\nvšech\r\nvšechápající\r\nvšechen\r\nvšechna\r\nvšechní\r\nvšechno\r\nvšechnu\r\nvšechny\r\nVšechovice\r\nvšechovický\r\nvšekaz\r\nvšekazův\r\nvšekřesťanský\r\nvšelék\r\nvšelicos\r\nvšelico\r\nvšeličehos\r\nvšeličems\r\nvšeličemus\r\nvšeličíms\r\nvšeličí\r\nvšelidovější\r\nvšelidový\r\nvšelidský\r\nvšelijak\r\nvšelijaký\r\nvšelikam\r\nvšelikde\r\nvšelikdo\r\nvšeliký\r\nvšelisco\r\nvšeliskdo\r\nvšem\r\nvšemi\r\nVšemina\r\nvšemocnější\r\nvšemocný\r\nvšemohoucí\r\nvšemohoucnost\r\nvšemožnější\r\nvšemožný\r\nvšemu\r\nVšemyslice\r\nvšemyslický\r\nvšenárodní\r\nvšeněmecký\r\nvšeničící\r\nvšeobčanský\r\nvšeobecnější\r\nvšeobecnina\r\nvšeobecný\r\nvšeobjímající\r\nvšeobklopující\r\nvšeoborový\r\nvšeobsáhlejší\r\nvšeobsáhlý\r\nvšeobsahující\r\nvšeodborový\r\nvšeodmítající\r\nvšeodpouštějící\r\nvšeohlušující\r\nvšeomlouvající\r\nvšeovládající\r\nvšeplatnější\r\nvšepohlcující\r\nvšepojímající\r\nvšepokrývající\r\nvšepolykající\r\nvšepoznatelný\r\nvšepožírající\r\nvšepronikající\r\nvšeprostupující\r\nVšeradice\r\nvšeradický\r\nVšeradov\r\nvšeradovský\r\nvšerozhodující\r\nvšerubský\r\nVšeruby\r\nvšeříkající\r\nvšeshrnující\r\nvšeslibující\r\nvšeslitovnější\r\nvšeslovanský\r\nvšeslyšící\r\nvšesměrný\r\nvšesměrovější\r\nvšesměrový\r\nvšesmiřující\r\nvšesokolský\r\nvšespásnější\r\nvšespolečenštější\r\nvšestranější\r\nvšestrannější\r\nvšestranný\r\nvšestravující\r\nVšesulov\r\nvšesulovský\r\nvšesvazovější\r\nvšesvazový\r\nvšesvětový\r\nvšetatský\r\nVšetaty\r\nVšetečka\r\nvšetečka\r\nVšetečková\r\nVšetečkův\r\nvšetečkův\r\nvšetečnější\r\nvšetečný\r\nvšeubíjející\r\nvšeumějící\r\nvšeumělcův\r\nvšeumělčin\r\nvšeumělec\r\nvšeumělka\r\nvšeumělkyně\r\nvšeumělkynin\r\nvšeuměl\r\nvšeumělův\r\nvšeužitečný\r\nvševědoucí\r\nvševědoucný\r\nvševěd\r\nvševědův\r\nvševládce\r\nvševládcův\r\nvševládnější\r\nvševládnoucí\r\nvševojskový\r\nvševypovídající\r\nvševysvětlující\r\nvšezahrnující\r\nvšezaplašující\r\nvšezaplavující\r\nvšezhoubnější\r\nvšeznající\r\nvšeználek\r\nvšeználkův\r\nvšezničující\r\nvšezotročující\r\nvšežravcův\r\nvšežravec\r\nvšežravý\r\nvšežrout\r\nvšežroutův\r\nVŠCHT\r\nvši\r\nvší\r\nvšicci\r\nvších\r\nvšichni\r\nvším\r\nvšímající\r\nvšímání\r\nvšímat\r\nvšímavější\r\nvšímavý\r\nvšimnout\r\nvšimnutí\r\nvšimnutý\r\nvšít\r\nvšitější\r\nvšití\r\nvšitý\r\nvšitý\r\nvšívací\r\nvšivák\r\nvšivákův\r\nvšívanější\r\nvšívání\r\nvšívaný\r\nvšívat\r\nvšivější\r\nvšivý\r\nvškrabání\r\nvškrábání\r\nvškrabaný\r\nvškrábaný\r\nvškrabat\r\nvškrábat\r\nvškrabávání\r\nvškrabávaný\r\nvškrabávat\r\nvškrabování\r\nvškrabovaný\r\nvškrabovat\r\nvšlehání\r\nvšlehaný\r\nvšlehat\r\nvšlehávání\r\nvšlehávaný\r\nvšlehávat\r\nvšourání\r\nvšourat\r\nVŠSE\r\nVŠST\r\nvštěpení\r\nvštěpený\r\nvštěpit\r\nvštěpování\r\nvštěpovaný\r\nvštěpovat\r\nvštěpující\r\nvštípení\r\nvštípený\r\nvštípit\r\nvštípivý\r\nvšude\r\nvšudepřítomný\r\nvšudy\r\nvšudybyl\r\nvšudybylův\r\nvšudypronikající\r\nvšudypřítomnější\r\nvšudypřítomný\r\nVŠUP\r\nVŠV\r\nVŠZ\r\nvtah\r\nvtáhnout\r\nvtáhnutí\r\nvtahování\r\nvtahovaný\r\nvtahovat\r\nvtahovávání\r\nvtahovávaný\r\nvtahovávat\r\nvtahující\r\nvťal\r\nvtančení\r\nvtančený\r\nvtančit\r\nvťapkání\r\nvťapkat\r\nvťatější\r\nvťat\r\nvťatý\r\nvťatý\r\nvtavení\r\nvtavený\r\nvtavit\r\nvťav\r\nvtaženější\r\nvtažení\r\nvtažený\r\nvtažitelnější\r\nvtažitelný\r\nvtéct\r\nvtečení\r\nvtékající\r\nvtékání\r\nvtékat\r\nvteklejší\r\nvteklý\r\nvtělení\r\nvtělený\r\nvtělit\r\nVtelno\r\nvtělování\r\nvtělovat\r\nvtělovávání\r\nvtělovávaný\r\nvtělovávat\r\nvteřina\r\nvteřinka\r\nvteřinový\r\nvtesávání\r\nvtesávaný\r\nvtesávat\r\nvtěsnání\r\nvtěsnaný\r\nvtěsnat\r\nvtěsnávání\r\nvtěsnávaný\r\nvtěsnávat\r\nvtětí\r\nvtipálek\r\nvtipálkův\r\nvtípek\r\nvtip\r\nvtipkování\r\nvtipkování\r\nvtipkovaný\r\nvtipkovat\r\nvtipkující\r\nvtipnější\r\nvtipný\r\nvtírající\r\nvtíraní\r\nvtírání\r\nvtíraný\r\nvtírat\r\nvtíravější\r\nvtíravý\r\nvtisk\r\nvtisknout\r\nvtisknutí\r\nvtisknutý\r\nvtiskování\r\nvtiskovaný\r\nvtiskovat\r\nvtištění\r\nvtištěný\r\nvtít\r\nvtknout\r\nvtlačení\r\nvtláčení\r\nvtlačený\r\nvtlačit\r\nvtlačovanější\r\nvtlačování\r\nvtlačovaný\r\nvtlačovat\r\nvtlouct\r\nvtloukanější\r\nvtloukání\r\nvtloukaný\r\nvtloukat\r\nvtloukávanější\r\nvtloukávání\r\nvtloukávaný\r\nvtloukávat\r\nvtlučenější\r\nvtlučení\r\nvtlučený\r\nvtočení\r\nvtočený\r\nvtočit\r\nvtok\r\nvtokový\r\nvtom\r\nvtrhající\r\nvtrhanější\r\nvtrhání\r\nvtrhaný\r\nvtrhat\r\nvtrhávající\r\nvtrhávanější\r\nvtrhávání\r\nvtrhávaný\r\nvtrhávat\r\nvtrhnout\r\nvtrhnutější\r\nvtrhnutí\r\nvtrhnutý\r\nvtržení\r\nvtřiďování\r\nvtřiďovaný\r\nvtřiďovat\r\nvůbec\r\nvůči\r\nvůčihledně\r\nVůčka\r\nVůčková\r\nVůčkův\r\nvůdce\r\nvůdcovský\r\nvůdcovství\r\nvůdcovštější\r\nvůdcův\r\nvůdčí\r\nvůdkyně\r\nvůdkynin\r\nvůkol\r\nvůl\r\nvůle\r\nvulgarismus\r\nvulgarita\r\nvulgarizace\r\nvulgarizování\r\nvulgarizovaný\r\nvulgarizovat\r\nvulgarizující\r\nvulgárnější\r\nvulgárnění\r\nvulgárněný\r\nvulgárnět\r\nvulgární\r\nvulgáta\r\nvulgo\r\nvůli\r\nvulkanfíbr\r\nvulkán\r\nvulkanický\r\nvulkaničtější\r\nvulkanismus\r\nvulkanizace\r\nvulkanizační\r\nvulkanizérský\r\nvulkanizování\r\nvulkanizovaný\r\nvulkanizovat\r\nvulkanizující\r\nvulkanologický\r\nvulkanologie\r\nvulkanolog\r\nvulkanologův\r\nvulkanoložčin\r\nvulkanoložka\r\nVulterinová\r\nVulterin\r\nVulterinův\r\nvulva\r\nvulvopletysmograf\r\nvůně\r\nvuřt\r\nvústění\r\nvústit\r\nVUT\r\nvůz\r\nvvn\r\nvy\r\nvyabstrahování\r\nvyabstrahovaný\r\nvyabstrahovat\r\nvyasfaltování\r\nvyasfaltovaný\r\nvyasfaltovat\r\nvyautování\r\nvyautovaný\r\nvyautovat\r\nvybabrání\r\nvybabrat\r\nvybádání\r\nvybádaný\r\nvybádat\r\nvybafání\r\nvybafaný\r\nvybafat\r\nvybafnout\r\nvybafnutí\r\nvybagrování\r\nvybagrovaný\r\nvybagrovat\r\nvybagrovávání\r\nvybagrovávaný\r\nvybagrovávat\r\nvybahnění\r\nvybahněný\r\nvybahnit\r\nvybájenější\r\nvybájení\r\nvybájený\r\nvybájit\r\nvybalancování\r\nvybalancovaný\r\nvybalancovat\r\nvybalancovávání\r\nvybalancovávaný\r\nvybalancovávat\r\nvybalenější\r\nvybalení\r\nvybalený\r\nvybalit\r\nvybalitelnější\r\nvybalitelný\r\nvybalovací\r\nvybalovanější\r\nvybalování\r\nvybalovaný\r\nvybalovat\r\nvybalovávání\r\nvybalovávaný\r\nvybalovávat\r\nvybalující\r\nvybarvenější\r\nvybarvení\r\nvybarvený\r\nvybarvit\r\nvybarvování\r\nvybarvovaný\r\nvybarvovat\r\nvybarvující\r\nvybatolení\r\nvybatolit\r\nvýbava\r\nvybavenější\r\nvybavení\r\nvybavený\r\nvýbavička\r\nvybavit\r\nvybavovací\r\nvybavování\r\nvybavovaný\r\nvybavovat\r\nvýbavový\r\nvybavující\r\nvyběhanější\r\nvyběhání\r\nvyběhaný\r\nvyběhat\r\nvyběhávání\r\nvyběhávaný\r\nvyběhávat\r\nvýběh\r\nvyběhnout\r\nvyběhnutí\r\nvyběhnutý\r\nvýběhovější\r\nvýběhový\r\nvybělenější\r\nvybělení\r\nvybělený\r\nvybelhání\r\nvybelhat\r\nvybelhávání\r\nvybelhávat\r\nvybělit\r\nvybělování\r\nvybělovaný\r\nvybělovat\r\nvyběravý\r\nvýběrčí\r\nvýběr\r\nvýběrovější\r\nvyběrový\r\nvýběrový\r\nvýběrový\r\nvybetonování\r\nvybetonovaný\r\nvybetonovat\r\nvybetonovávání\r\nvybetonovávaný\r\nvybetonovávat\r\nvýběžek\r\nvýběžkatý\r\nvybičování\r\nvybičovaný\r\nvybičovat\r\nvybičovávat\r\nvybídka\r\nvybídnout\r\nvybídnutější\r\nvybídnutí\r\nvybídnutý\r\nvybídnutý\r\nvybíhající\r\nvybíhanější\r\nvybíhání\r\nvybíhaný\r\nvybíhat\r\nvybíhávání\r\nvybíhávaný\r\nvybíhávat\r\nvybíhavý\r\nvybíjecí\r\nvybíječ\r\nvybíjející\r\nvybíjení\r\nvybíjený\r\nvybíjet\r\nvybílení\r\nvybílený\r\nvybílit\r\nvybírací\r\nvybírající\r\nVybíralíková\r\nVybíralík\r\nVybíralíkův\r\nVybíralová\r\nVybíral\r\nVybíralův\r\nvybíranější\r\nvybírání\r\nvybíraný\r\nvybírat\r\nvybíravější\r\nvybíravý\r\nvybíravý\r\nvybít\r\nvybití\r\nvybit\r\nvybitý\r\nvybízecí\r\nvybízející\r\nvybízení\r\nvybízený\r\nvybízet\r\nvybízivější\r\nvybízivý\r\nvybláznění\r\nvyblázněný\r\nvybláznit\r\nvyblbnout\r\nvyblbnutí\r\nvyblbnutý\r\nvyblebtnout\r\nvyblebtnutí\r\nvyblebtnutý\r\nvyblédající\r\nvybledlejší\r\nvybledlý\r\nvyblednout\r\nvyblednutí\r\nvyblít\r\nvyblití\r\nvyblit\r\nvyblitý\r\nvyblívání\r\nvyblívaný\r\nvyblívat\r\nvyblízat\r\nvyblokování\r\nvyblokovaný\r\nvyblokovat\r\nvyblokovávání\r\nvyblokovávaný\r\nvyblokovávat\r\nvyblýskání\r\nvyblýskaný\r\nvyblýskat\r\nvybočení\r\nvybočený\r\nvybočit\r\nvybočování\r\nvybočovat\r\nvybočující\r\nvybodnout\r\nvybodnutí\r\nvybodnutý\r\nvybodovaný\r\nvýbojka\r\nvýbojkový\r\nvýbojnější\r\nvýbojný\r\nvybojování\r\nvybojovaný\r\nvybojovat\r\nvybojovávání\r\nvybojovávaný\r\nvybojovávat\r\nvýbojový\r\nvýboj\r\nvybombardování\r\nvybombardovaný\r\nvybombardovat\r\nvybombardovávání\r\nvybombardovávaný\r\nvybombardovávat\r\nvýbor\r\nvýbornější\r\nVýborný\r\nvýborný\r\nvýborový\r\nvyboření\r\nvybořený\r\nvybořit\r\nvybouchnout\r\nvybouchnutí\r\nvybouchnutý\r\nvyboulenější\r\nvyboulenina\r\nvyboulení\r\nvyboulený\r\nvyboulit\r\nvybourání\r\nvybouraný\r\nvybourat\r\nvybourávání\r\nvybourávaný\r\nvybourávat\r\nvybouření\r\nvybouřený\r\nvybouřit\r\nvyboxování\r\nvyboxovaný\r\nvyboxovat\r\nvyboxovávání\r\nvyboxovávaný\r\nvyboxovávat\r\nvybrakování\r\nvybrakovaný\r\nvybrakovat\r\nvybranější\r\nvybraní\r\nvybrání\r\nvybraný\r\nvybrat\r\nvybrebtání\r\nvybrebtaný\r\nvybrebtat\r\nvybrečení\r\nvybrečený\r\nvybrečet\r\nvybreptání\r\nvybreptaný\r\nvybreptat\r\nvybreptnout\r\nvybreptnutí\r\nvybreptnutý\r\nvybrnkání\r\nvybrnkaný\r\nvybrnkat\r\nvybrnkávání\r\nvybrnkávat\r\nvybrouknout\r\nvybrousit\r\nvybroušenější\r\nvybroušení\r\nvybroušený\r\nvýbrus\r\nvybruslení\r\nvybruslit\r\nvýbrusový\r\nvybrušovanější\r\nvybrušování\r\nvybrušovaný\r\nvybrušovat\r\nvybrušující\r\nvybryndání\r\nvybryndaný\r\nvybryndat\r\nvybředání\r\nvybředat\r\nvybředávání\r\nvybředávaný\r\nvybředávat\r\nvybřednout\r\nvybřednutí\r\nvybřežení\r\nvybřežující\r\nvybublání\r\nvybublaný\r\nvybublat\r\nvybublávat\r\nvybubnování\r\nvybubnovaný\r\nvybubnovat\r\nvybubnovávání\r\nvybubnovávaný\r\nvybubnovávat\r\nvybudit\r\nvybuditelný\r\nvybudovanější\r\nvybudování\r\nvybudovaný\r\nvybudovat\r\nvybudovávanější\r\nvybudovávání\r\nvybudovávaný\r\nvybudovávat\r\nvybudu\r\nvýbuch\r\nvybuchlý\r\nvybuchnout\r\nvybuchnutí\r\nvybuchnutý\r\nvybuchování\r\nvybuchovat\r\nvýbuchový\r\nvybuchující\r\nvybujení\r\nvybujet\r\nvybumbání\r\nvybumbaný\r\nvybumbat\r\nvyburcování\r\nvyburcovaný\r\nvyburcovat\r\nvyburcovávání\r\nvyburcovávaný\r\nvyburcovávat\r\nvybušení\r\nvybušený\r\nvybušit\r\nvýbuška\r\nvýbušnější\r\nvýbušnina\r\nvýbušný\r\nvybuzení\r\nvybuzený\r\nvybuzování\r\nvybuzovaný\r\nvybuzovat\r\nvybydlejí\r\nvybydlení\r\nvybydlený\r\nvybydlet\r\nvybydlovávání\r\nvybydlovávaný\r\nvybydlovávat\r\nvybyl\r\nvybýt\r\nvybytí\r\nvybývající\r\nvybývání\r\nvybývat\r\nvybyv\r\nvybyvše\r\nvybyvši\r\nvybyvší\r\nvycákání\r\nvycákaný\r\nvycákat\r\nvycamrat\r\nvycedit\r\nvycementovat\r\nvyceněnější\r\nvycenění\r\nvyceněný\r\nvycenit\r\nvycentrování\r\nvycentrovaný\r\nvycentrovat\r\nvycentrovávat\r\nvycepování\r\nvycepovaný\r\nvycepovat\r\nvycestování\r\nvycestovaný\r\nvycestovat\r\nvycezenina\r\nvycezení\r\nvycezený\r\nvycídění\r\nvycíděný\r\nvycídit\r\nvycítění\r\nvycítěný\r\nvycítit\r\nvyciťovat\r\nvyclívací\r\nvycmrndání\r\nvycmrndaný\r\nvycmrndat\r\nvycmrndávat\r\nvycourání\r\nvycouraný\r\nvycourat\r\nvycouvání\r\nvycouvaný\r\nvycouvat\r\nvycouvávání\r\nvycouvávat\r\nvycouvnout\r\nvycpanější\r\nvycpanina\r\nvycpání\r\nvycpaný\r\nvycpat\r\nvycpavač\r\nvycpavačův\r\nvycpávání\r\nvycpávaný\r\nvycpávat\r\nvycpávka\r\nvycpávkový\r\nvycrčení\r\nvycrčet\r\nvycucající\r\nvycucanější\r\nvycucání\r\nvycucaný\r\nvycucat\r\nvycucávání\r\nvycucávaný\r\nvycucávat\r\nvycucnout\r\nvycucnutí\r\nvycucnutý\r\nvycukání\r\nvycukat\r\nvycukávání\r\nvycukávat\r\nvycumlání\r\nvycumlaný\r\nvycumlat\r\nvycupitání\r\nvycupitat\r\nvycupitávání\r\nvycupitávat\r\nvycválanější\r\nvycválání\r\nvycválat\r\nvycválávání\r\nvycválávat\r\nvycvičenější\r\nvycvičení\r\nvycvičený\r\nvycvičit\r\nvycvičování\r\nvycvičovaný\r\nvycvičovat\r\nvycvičující\r\nvýcvik\r\nvýcvikový\r\nvycvrlikání\r\nvycvrlikaný\r\nvycvrlikat\r\nvycvrnkávání\r\nvycvrnkávaný\r\nvycvrnkávat\r\nvyčáhlejší\r\nvyčalounění\r\nvyčalouněný\r\nvyčalounit\r\nvyčárkování\r\nvyčárkovaný\r\nvyčárkovat\r\nvyčarování\r\nvyčarovaný\r\nvyčarovat\r\nvyčasení\r\nvyčasený\r\nvyčasit\r\nvyčenichání\r\nvyčenichaný\r\nvyčenichat\r\nvýčep\r\nvýčepnický\r\nvýčepnictví\r\nvýčepní\r\nvyčernění\r\nvyčerněný\r\nvyčernit\r\nvyčerpanější\r\nvyčerpání\r\nvyčerpaný\r\nvyčerpatelnější\r\nvyčerpatelný\r\nvyčerpat\r\nvyčerpávající\r\nvyčerpávání\r\nvyčerpávaný\r\nvyčerpávat\r\nvyčeření\r\nvyčeřený\r\nvyčeřit\r\nvyčeřovat\r\nvyčesanější\r\nvyčesání\r\nvyčesaný\r\nvyčesat\r\nvyčesávání\r\nvyčesávaný\r\nvyčesávat\r\nvýčetka\r\nvýčet\r\nvyčíhání\r\nvyčíhaný\r\nvyčíhat\r\nvyčíhnout\r\nvyčichat\r\nvyčichávat\r\nvyčichlejší\r\nvyčichlý\r\nvyčichnout\r\nvyčichnutí\r\nvyčinění\r\nvyčiněný\r\nvyčinit\r\nvyčiňování\r\nvyčiňovaný\r\nvyčiňovat\r\nvyčíslení\r\nvyčíslený\r\nvyčíslit\r\nvyčíslitelnější\r\nvyčíslitelný\r\nvyčíslování\r\nvyčíslovaný\r\nvyčíslovat\r\nvyčíslovávání\r\nvyčíslovávaný\r\nvyčíslovávat\r\nvyčíslující\r\nvyčíst\r\nvyčistění\r\nvyčistit\r\nvyčištěnější\r\nvyčištění\r\nvyčištěný\r\nvyčišťovací\r\nvyčišťování\r\nvyčišťovaný\r\nvyčišťovat\r\nvyčítající\r\nvyčítání\r\nvyčítaný\r\nvyčítat\r\nvyčítavější\r\nvyčítavý\r\nvýčitka\r\nvyčkání\r\nvyčkaný\r\nvyčkat\r\nvyčkávací\r\nvyčkávající\r\nvyčkávání\r\nvyčkávaný\r\nvyčkávat\r\nvyčkávavější\r\nvyčkávavý\r\nvyčleněnější\r\nvyčlenění\r\nvyčleněný\r\nvyčlenit\r\nvyčlenitelnější\r\nvyčlenitelný\r\nvyčleňování\r\nvyčleňovaný\r\nvyčleňovat\r\nvyčleňující\r\nvyčmuchání\r\nvyčmuchaný\r\nvyčmuchat\r\nvyčmuchávající\r\nvyčmuchávat\r\nvyčnělejší\r\nvýčnělek\r\nvyčnělý\r\nvyčnívající\r\nvyčnívání\r\nvyčnívaný\r\nvyčnívat\r\nvyčouhlý\r\nvyčpělejší\r\nvyčpělý\r\nvyčpění\r\nvyčpět\r\nvyčpít\r\nvýčtě\r\nvyčtenější\r\nvyčtení\r\nvyčtený\r\nvýčtový\r\nvyčuhování\r\nvyčuhovaný\r\nvyčuhovat\r\nvyčuhující\r\nvyčuchání\r\nvyčuchaný\r\nvyčuchat\r\nvyčurání\r\nvyčůrání\r\nvyčuraný\r\nvyčůraný\r\nvyčurat\r\nvyčůrat\r\nvyčurávající\r\nvyčůrávající\r\nvyčurávaný\r\nvyčůrávaný\r\nvyčurávat\r\nvyčůrávat\r\nvyčutnout\r\nvyčutnutí\r\nvyčutnutý\r\nvyd\r\nvydací\r\nvydadání\r\nvydadat\r\nvýdajový\r\nvýdaj\r\nvydanější\r\nvydání\r\nvydaný\r\nvydařenější\r\nvydaření\r\nvydařený\r\nvydařit\r\nvydat\r\nvydatnější\r\nvydatný\r\nvydávací\r\nvydávající\r\nvydávanější\r\nvydávání\r\nvydávaný\r\nvydavatelčin\r\nvydavatelka\r\nvydavatelský\r\nvydavatelství\r\nvydavatel\r\nvydavatelův\r\nvydávat\r\nvydávení\r\nvydávený\r\nvydávit\r\nvyděděncův\r\nvyděděnec\r\nvydědění\r\nvyděděný\r\nvydědit\r\nvydedukování\r\nvydedukovaný\r\nvydedukovat\r\nvydefinování\r\nvydefinovaný\r\nvydefinovat\r\nvýdech\r\nvydechnout\r\nvydechnutí\r\nvydechnutý\r\nvydechování\r\nvydechovaný\r\nvydechovat\r\nvydechovávání\r\nvydechovávaný\r\nvydechovávat\r\nvýdechový\r\nvýdechový\r\nvýdejka\r\nvýdejna\r\nvýdejní\r\nvýdejový\r\nvýdej\r\nvydělání\r\nvydělaný\r\nvydělat\r\nvydělávající\r\nvydělávání\r\nvydělávaný\r\nvydělávat\r\nvýdělečnější\r\nvýdělečný\r\nvýdělek\r\nvydělenější\r\nvydělení\r\nvydělený\r\nvydělit\r\nvydělitelnější\r\nvydělitelný\r\nvýdělkářský\r\nvýdělkový\r\nvydělovací\r\nvydělovanější\r\nvydělování\r\nvydělovaný\r\nvydělovat\r\nvydělovatelnější\r\nvydělovatelný\r\nvydělovávání\r\nvydělovávaný\r\nvydělovávat\r\nvydělující\r\nvyděracký\r\nvyděraččin\r\nvyděračka\r\nvyděračný\r\nvyděračský\r\nvyděračství\r\nvyděrač\r\nvyděračův\r\nvyděrování\r\nvyděrovaný\r\nvyděrovat\r\nvyděsit\r\nvydestilovanější\r\nvydestilování\r\nvydestilovaný\r\nvydestilovat\r\nvydestilovávání\r\nvydestilovávaný\r\nvydestilovávat\r\nvyděšenější\r\nvyděšení\r\nvyděšený\r\nvydezinfikování\r\nvydezinfikovaný\r\nvydezinfikovat\r\nvydírající\r\nvydíranější\r\nvydírání\r\nvydíraný\r\nvydíratelnější\r\nvydíratelný\r\nvydírat\r\nvydíravější\r\nvydíravý\r\nvydiskutování\r\nvydiskutovaný\r\nvydiskutovat\r\nvydlabání\r\nvydlabaný\r\nvydlabat\r\nvydlabávání\r\nvydlabávaný\r\nvydlabávat\r\nvydlábnout\r\nvydlabovat\r\nvydlážděnější\r\nvydláždění\r\nvydlážděný\r\nvydlaždičkovat\r\nvydláždit\r\nvydloubání\r\nvydloubaný\r\nvydloubat\r\nvydloubávání\r\nvydloubávaný\r\nvydloubávat\r\nvydloubnout\r\nvydloubnutí\r\nvydloubnutý\r\nvydlužený\r\nvydlužovat\r\nvydmout\r\nvydmutí\r\nvydmutý\r\nvydobudu\r\nvydobyl\r\nvýdobytek\r\nvydobýt\r\nvydobytí\r\nvýdobytkovější\r\nvýdobytkový\r\nvydobyt\r\nvydobytý\r\nvydobytý\r\nvydobývaný\r\nvydobývat\r\nvydojení\r\nvydojený\r\nvydojit\r\nvydojování\r\nvydojovaný\r\nvydojovat\r\nvydolávání\r\nvydolování\r\nvydolovaný\r\nvydolovat\r\nvydolovávání\r\nvydolovávaný\r\nvydolovávat\r\nvydout\r\nvydouvací\r\nvydouvající\r\nvydouvání\r\nvydouvaný\r\nvydouvat\r\nvydovádění\r\nvydováděný\r\nvydovádět\r\nvydrancování\r\nvydrancovaný\r\nvydrancovat\r\nvydrancovávání\r\nvydrancovávaný\r\nvydrancovávat\r\nvydrání\r\nvydraný\r\nvydrápající\r\nvydrápanější\r\nvydrápání\r\nvydrápaný\r\nvydrápat\r\nvydrápnout\r\nvydrápnutí\r\nvydrápnutý\r\nVydra\r\nvydrat\r\nvydrátkování\r\nvydrátkovaný\r\nvydrátkovat\r\nvydra\r\nvydra\r\nvydrážděnější\r\nvydráždění\r\nvydrážděný\r\nvydráždit\r\nvydražďovat\r\nvydražení\r\nvydražený\r\nvydražit\r\nvydražitelčin\r\nvydražitelka\r\nvydražitel\r\nvydražitelův\r\nvydražování\r\nvydražovaný\r\nvydražovat\r\nvydražovatelčin\r\nvydražovatelka\r\nvydražovatel\r\nvydražovatelův\r\nvydrbání\r\nvydrbaný\r\nvydrbat\r\nvydrbávání\r\nvydrbávaný\r\nvydrbávat\r\nvydrcání\r\nvydrcaný\r\nvydrcat\r\nvydrezírování\r\nvydrezírovaný\r\nvydrezírovat\r\nvydrhnout\r\nvydrhnutí\r\nvydrhnutý\r\nvydrnkat\r\nvydrolení\r\nvydrolený\r\nvýdrol\r\nvydrolit\r\nvydrolování\r\nvydrolovaný\r\nvydrolovat\r\nVydrová\r\nvydrovka\r\nvydrový\r\nVydrův\r\nvydrženější\r\nvydržení\r\nvydržený\r\nvydržet\r\nvýdržný\r\nvydržovanější\r\nvydržování\r\nvydržovaný\r\nvydržovat\r\nvydržující\r\nvýdrž\r\nvydře\r\nvydřenější\r\nvydření\r\nvydřený\r\nvýdřeva\r\nvydřiččin\r\nvydřička\r\nvydřiduch\r\nvydřiduchův\r\nvydřidušský\r\nvydřidušský\r\nvydřidušství\r\nvydřít\r\nvydří\r\nvýduch\r\nvydumání\r\nvydumaný\r\nvydumat\r\nvydumávání\r\nvydumávaný\r\nvydumávat\r\nvydumlání\r\nvydumlaný\r\nvydumlat\r\nvydupanější\r\nvydupání\r\nvydupaný\r\nvydupat\r\nvydupávanější\r\nvydupávání\r\nvydupávaný\r\nvydupávat\r\nvydupnout\r\nvydupnutější\r\nvydupnutí\r\nvydupnutý\r\nvydupnutý\r\nvydupu\r\nvydusanější\r\nvydusání\r\nvydusaný\r\nvydusat\r\nvydusávání\r\nvydusávaný\r\nvydusávat\r\nvydusit\r\nvýduska\r\nvydušení\r\nvydušený\r\nvýdušný\r\nvydutější\r\nvydutí\r\nvydutý\r\nvýduť\r\nvydýchanější\r\nvydýchání\r\nvydýchaný\r\nvydýchat\r\nvydýchávání\r\nvydýchávat\r\nvydychnout\r\nvydýchnout\r\nvydychnutí\r\nvydychnutý\r\nvydýmat\r\nvydžusovat\r\nvyeliminování\r\nvyeliminovaný\r\nvyeliminovat\r\nvyexcerpovaný\r\nvyexpedování\r\nvyexpedovaný\r\nvyexpedovat\r\nvyexpedovávání\r\nvyexpedovávaný\r\nvyexpedovávat\r\nvyexportování\r\nvyexportovaný\r\nvyexportovat\r\nvyexportovávání\r\nvyexportovávaný\r\nvyexportovávat\r\nvyextrahování\r\nvyextrahovaný\r\nvyextrahovat\r\nvyfabulování\r\nvyfabulovaný\r\nvyfabulovat\r\nvyfakturovaný\r\nvyfantazírování\r\nvyfantazírovaný\r\nvyfantazírovat\r\nvyfárání\r\nvyfáraný\r\nvyfárat\r\nvyfasování\r\nvyfasovaný\r\nvyfasovat\r\nvyfénovaný\r\nvyfiknout\r\nvyfiltrování\r\nvyfiltrovaný\r\nvyfiltrovat\r\nvyfiltrovávat\r\nvyfintěnější\r\nvyfintěný\r\nvyfintit\r\nvyfocení\r\nvyfocený\r\nvyfotit\r\nvyfotografování\r\nvyfotografovaný\r\nvyfotografovat\r\nvyfotografovávání\r\nvyfotografovávaný\r\nvyfotografovávat\r\nvyfoukání\r\nvyfoukaný\r\nvyfoukat\r\nvyfoukávání\r\nvyfoukávaný\r\nvyfoukávat\r\nvyfouklejší\r\nvyfouknout\r\nvyfouknutí\r\nvyfouknutý\r\nvyfrézování\r\nvyfrézovaný\r\nvyfrézovat\r\nvyfrkání\r\nvyfrkaný\r\nvyfrkat\r\nvyfrknout\r\nvyfrknutí\r\nvyfrknutý\r\nvýfuk\r\nvyfukování\r\nvyfukovaný\r\nvyfukovat\r\nvyfukovávání\r\nvyfukovávaný\r\nvyfukovávat\r\nvýfukový\r\nvygenerovanější\r\nvygenerování\r\nvygenerovaný\r\nvygenerovat\r\nvygradování\r\nvygradovaný\r\nvygradovat\r\nvygruntování\r\nvygruntovaný\r\nvygruntovat\r\nvygumování\r\nvygumovaný\r\nvygumovat\r\nvyhačat\r\nvyháčkování\r\nvyháčkovaný\r\nvyháčkovat\r\nvyhádanější\r\nvyhádání\r\nvyhádaný\r\nvyhádat\r\nvyhajání\r\nvyhajaný\r\nvyhajat\r\nvyháknout\r\nvyháknutí\r\nvyháknutý\r\nvyhandlování\r\nvyhandlovaný\r\nvyhandlovat\r\nvyhánějící\r\nvyháněnější\r\nvyhánění\r\nvyháněný\r\nvyhánět\r\nvyhasínající\r\nvyhasínání\r\nvyhasínaný\r\nvyhasínat\r\nvyhasit\r\nvyhaslejší\r\nvyhaslý\r\nvyhasnout\r\nvyhasnutí\r\nvyhasnutý\r\nvyhašení\r\nvyhašený\r\nvyházenější\r\nvyházení\r\nvyházený\r\nvyházet\r\nvyhazovač\r\nvyhazování\r\nvyhazovaný\r\nvyhazovat\r\nvyhazov\r\nvyhazující\r\nvyhecovanější\r\nvyhecování\r\nvyhecovaný\r\nvyhecovat\r\nvyhecovávání\r\nvyhecovávaný\r\nvyhecovávat\r\nvyheknout\r\nvyheknutí\r\nvýheň\r\nvýherce\r\nvýhercův\r\nvýherní\r\nvyheverování\r\nvyheverovaný\r\nvyheverovat\r\nvyhladit\r\nvyhladitelnější\r\nvyhládlejší\r\nvyhládlý\r\nvyhládnout\r\nvyhládnutí\r\nvyhladovělejší\r\nvyhladovělý\r\nvyhladověnější\r\nvyhladovění\r\nvyhladověný\r\nvyhladovět\r\nvyhlásit\r\nVyhlasová\r\nVyhlas\r\nVyhlasův\r\nvyhlášenější\r\nvyhlášení\r\nvyhlášený\r\nvyhláška\r\nvyhláškový\r\nvyhlašovací\r\nvyhlašovanější\r\nvyhlašovaní\r\nvyhlašování\r\nvyhlašovaný\r\nvyhlašovat\r\nvyhlašovatel\r\nvyhlašovatelův\r\nvyhlašovávat\r\nvyhlašující\r\nvyhlavičkování\r\nvyhlavičkovaný\r\nvyhlavičkovat\r\nvyhlazenější\r\nvyhlazení\r\nvyhlazený\r\nvyhlazovací\r\nvyhlazování\r\nvyhlazovaný\r\nvyhlazovat\r\nvyhlazující\r\nvyhledanější\r\nvyhledání\r\nvyhledaný\r\nvyhledatelnější\r\nvyhledatelný\r\nvyhledat\r\nvyhledávací\r\nvyhledávač\r\nvyhledávající\r\nvyhledávanější\r\nvyhledávání\r\nvyhledávaný\r\nvyhledávat\r\nvýhled\r\nvyhlédnout\r\nvyhlédnul\r\nvyhlédnutější\r\nvyhlédnutí\r\nvyhlédnutý\r\nvyhlédnutý\r\nvýhledový\r\nVyhlídalová\r\nVyhlídal\r\nVyhlídalův\r\nvyhlídka\r\nvyhlídkovější\r\nvyhlídkový\r\nvyhlídnout\r\nvyhlídnul\r\nvyhlídnutý\r\nvyhlížející\r\nvyhlíženější\r\nvyhlížení\r\nvyhlížený\r\nvyhlížet\r\nvyhlodanější\r\nvyhlodání\r\nvyhlodaný\r\nvyhlodat\r\nvyhlodávání\r\nvyhlodávaný\r\nvyhlodávat\r\nvyhloubenější\r\nvyhloubenina\r\nvyhloubení\r\nvyhloubený\r\nvyhloubit\r\nvyhlubování\r\nvyhlubovat\r\nvyhmatání\r\nvyhmataný\r\nvyhmatat\r\nvyhmatávání\r\nvyhmatávaný\r\nvyhmatávat\r\nvyhmátnout\r\nvyhmátnutí\r\nvyhmátnutý\r\nVyhnálek\r\nVyhnálková\r\nVyhnálkův\r\nvyhnal\r\nvyhnancův\r\nvyhnančin\r\nvyhnanecký\r\nvyhnanec\r\nvyhnanější\r\nVyhnánek\r\nvyhnání\r\nvyhnanka\r\nVyhnánková\r\nVyhnánkův\r\nvyhnankyně\r\nvyhnankynin\r\nvyhnán\r\nvyhnanství\r\nvyhnaný\r\nvyhnat\r\nvyhnilejší\r\nvyhnisání\r\nvyhnisat\r\nvyhnít\r\nvyhnití\r\nvyhnívací\r\nvyhnívající\r\nvyhnívání\r\nvyhnívaný\r\nvyhnívat\r\nvyhnojení\r\nvyhnojený\r\nvyhnojit\r\nvyhnout\r\nvyhnutelnější\r\nvyhnutelný\r\nvyhnutí\r\nvyhnutý\r\nvyhnutý\r\nvýhoda\r\nvýhodička\r\nvyhodit\r\nvýhodnější\r\nvyhodnocenější\r\nvyhodnocení\r\nvyhodnocený\r\nvyhodnocovací\r\nvyhodnocovanější\r\nvyhodnocování\r\nvyhodnocovaný\r\nvyhodnocovat\r\nvyhodnocující\r\nvyhodnotit\r\nvyhodnotitelný\r\nvýhodný\r\nvyhojení\r\nvyhojený\r\nvyhojit\r\nvyholení\r\nvyholený\r\nvyholit\r\nvyholování\r\nvyholovaný\r\nvyholovat\r\nvyholovávání\r\nvyholovávaný\r\nvyholovávat\r\nvýhonek\r\nvýhon\r\nvýhonový\r\nvyhořelejší\r\nvyhořelý\r\nvyhoření\r\nvyhořený\r\nvyhořet\r\nvyhořívání\r\nvyhořívaný\r\nvyhořívat\r\nvyhostit\r\nvýhostní\r\nvyhoštěncův\r\nvyhoštěnec\r\nvyhoštění\r\nvyhoštěný\r\nvyhošťovací\r\nvyhošťování\r\nvyhošťovaný\r\nvyhošťovat\r\nvyhotovení\r\nvyhotovený\r\nvyhotovit\r\nvyhotovování\r\nvyhotovovaný\r\nvyhotovovat\r\nvyhouknout\r\nvyhouknutí\r\nvyhoupnout\r\nvyhoupnutí\r\nvyhovění\r\nvyhověno\r\nvyhovět\r\nvyhovování\r\nvyhovovat\r\nvyhovující\r\nvyhozenější\r\nvyhození\r\nvyhozený\r\nvyhrabanější\r\nvyhrabání\r\nvyhrabaný\r\nvyhrabat\r\nvyhrabávání\r\nvyhrabávaný\r\nvyhrabávat\r\nvýhrabek\r\nvyhrábnout\r\nvyhrábnutější\r\nvyhrábnutí\r\nvyhrábnutý\r\nvyhrabování\r\nvyhrabovaný\r\nvyhrabovat\r\nvyhrabovávání\r\nvyhrabovávaný\r\nvyhrabovávat\r\nvýhrada\r\nvyhradit\r\nvýhradnější\r\nvýhradní\r\nvyhranější\r\nvyhraněnější\r\nvyhranění\r\nvyhraněný\r\nvyhrání\r\nvyhranit\r\nvyhraňování\r\nvyhraňovaný\r\nvyhraňovat\r\nvyhraňující\r\nvyhraný\r\nvyhrát\r\nvyhrávající\r\nvyhrávanější\r\nvyhrávání\r\nvyhrávaný\r\nvyhrávat\r\nvyhrazení\r\nvyhrazený\r\nvyhrazování\r\nvyhrazovaný\r\nvyhrazovat\r\nvýhra\r\nvyhrbenější\r\nvyhrknout\r\nvyhrknutí\r\nvyhrknutý\r\nvyhrnout\r\nvyhrnovanější\r\nvyhrnování\r\nvyhrnovaný\r\nvyhrnovat\r\nvyhrnující\r\nvyhrnutí\r\nvyhrnutý\r\nvyhrocenější\r\nvyhrocení\r\nvyhrocený\r\nvyhrocování\r\nvyhrocovaný\r\nvyhrocovat\r\nvyhrocovávání\r\nvyhrocovávaný\r\nvyhrocovávat\r\nvyhrocující\r\nvyhrotit\r\nvyhrotitelnější\r\nvyhrotitelný\r\nvyhrožování\r\nvyhrožovaný\r\nvyhrožovat\r\nvyhrožující\r\nvyhrůžka\r\nvýhrůžka\r\nvýhružnější\r\nvýhrůžnější\r\nvýhružný\r\nvýhrůžný\r\nvyhryzající\r\nvyhryzanější\r\nvyhryzání\r\nvyhryzaný\r\nvyhryzat\r\nvyhryzávání\r\nvyhryzávaný\r\nvyhryzávat\r\nvyhryzovat\r\nvyhřání\r\nvyhřát\r\nvyhřátější\r\nvyhřátý\r\nvyhřebelcování\r\nvyhřebelcovaný\r\nvyhřebelcovat\r\nvyhřebelcovávání\r\nvyhřebelcovávaný\r\nvyhřebelcovávat\r\nvýhřev\r\nvýhřevnější\r\nvýhřevný\r\nvyhřezávající\r\nvyhřezávat\r\nvýhřez\r\nvyhřezlejší\r\nvyhřezlý\r\nvyhřeznout\r\nvyhřeznutí\r\nvyhřeznutý\r\nvyhřívací\r\nvyhřívající\r\nvyhřívanější\r\nvyhřívání\r\nvyhřívaný\r\nvyhřívatelnější\r\nvyhřívatelný\r\nvyhřívat\r\nvyhubenější\r\nvyhubení\r\nvyhubený\r\nvyhubit\r\nvyhubitelčin\r\nvyhubitelka\r\nvyhubitelnější\r\nvyhubitel\r\nvyhubitelův\r\nvyhublý\r\nvyhubování\r\nvyhubovaný\r\nvyhubovat\r\nvyhubovávání\r\nvyhubovávaný\r\nvyhubovávat\r\nvyhuhlání\r\nvyhuhlaný\r\nvyhuhlat\r\nvyhuhňat\r\nvyhulit\r\nvyhupkovat\r\nvyhvízdání\r\nvyhvízdaný\r\nvyhvízdat\r\nvyhvízdnout\r\nvyhvízdnutí\r\nvyhvízdnutý\r\nvyhýbací\r\nvyhýbající\r\nvyhýbající\r\nvyhýbání\r\nvyhýbat\r\nvyhýbávání\r\nvyhýbávat\r\nvyhýbavější\r\nvyhýbavý\r\nvýhybkářčin\r\nvýhybkářka\r\nvýhybkář\r\nvýhybkářův\r\nvýhybka\r\nvýhybkový\r\nvyhynout\r\nvyhynulý\r\nvyhynutí\r\nvycházeje\r\nvycházejíc\r\nvycházející\r\nvycházení\r\nvycházeno\r\nvycházet\r\nvycházívat\r\nvycházka\r\nvycházkový\r\nvychcípání\r\nvychcípat\r\nvychechtávající\r\nvychládající\r\nvychládání\r\nvychládat\r\nvychladit\r\nvychladlejší\r\nvychladlý\r\nvychladnout\r\nvychladnutí\r\nvychlazenější\r\nvychlazení\r\nvychlazený\r\nvychlazování\r\nvychlazovat\r\nvychlemtání\r\nvychlemtaný\r\nvychlemtat\r\nvychlípenina\r\nvychlípený\r\nvychlípit\r\nvýchlipka\r\nvychlipování\r\nvychlipovaný\r\nvychlipovat\r\nvychlipovávání\r\nvychlipovávaný\r\nvychlipovávat\r\nvychloubačnější\r\nvychloubačný\r\nvychloubač\r\nvychloubačův\r\nvychloubálek\r\nvychloubálkův\r\nvychloubání\r\nvychloubat\r\nvychloubavý\r\nvýchod\r\nVychodilová\r\nVychodil\r\nVychodilův\r\nvýchodisko\r\nvýchodiskový\r\nvýchodiště\r\nvychodit\r\nvýchodnější\r\nvýchodní\r\nvýchodoafrický\r\nvýchodoafričtější\r\nvýchodoafričtější\r\nvýchodoasijský\r\nvýchodočech\r\nvýchodočechův\r\nvýchodočeský\r\nvýchodočínský\r\nvýchodoevropančin\r\nvýchodoevropanka\r\nvýchodoevropan\r\nvýchodoevropanův\r\nvýchodoevropský\r\nvýchodoevropštější\r\nvýchodofranský\r\nvýchodoindický\r\nvýchodoindičtější\r\nvýchodomoravský\r\nvýchodoněmecký\r\nvýchodoněmečtější\r\nvýchodopruský\r\nvýchodořímský\r\nvýchodoslovanský\r\nvýchodoslovenský\r\nvýchodotimorský\r\nvýchodouherský\r\nvýchodový\r\nvychovanější\r\nvychování\r\nvychovaný\r\nvychovatelčin\r\nvychovatelka\r\nvychovatelna\r\nvychovatelnější\r\nvychovatelný\r\nvychovatelský\r\nvychovatelství\r\nvychovatel\r\nvychovatelův\r\nvychovat\r\nvychovávající\r\nvychovávání\r\nvychovávaný\r\nvychovávat\r\nvýchova\r\nvýchovnější\r\nvýchovný\r\nvychozenější\r\nvychození\r\nvychozený\r\nvýchoz\r\nvýchozí\r\nvychrchlání\r\nvychrchlaný\r\nvychrchlat\r\nvychrlení\r\nvychrlený\r\nvychrlit\r\nVychroňová\r\nVychroň\r\nVychroňův\r\nvychrstnout\r\nvychrstnutí\r\nvychrstnutý\r\nvychrtlejší\r\nvychrtlý\r\nvychutnání\r\nvychutnaný\r\nvychutnat\r\nvychutnávající\r\nvychutnávání\r\nvychutnávaný\r\nvychutnávat\r\nvychválení\r\nvychválený\r\nvychválit\r\nvychvalování\r\nvychvalovaný\r\nvychvalovat\r\nvychvalovávání\r\nvychvalovávaný\r\nvychvalovávat\r\nvychvalující\r\nvychýlenější\r\nvychýlení\r\nvychýlený\r\nvychýlit\r\nvýchylka\r\nvychylovací\r\nvychylovanější\r\nvychylování\r\nvychylovaný\r\nvychylovat\r\nvychylovávání\r\nvychylovávaný\r\nvychylovávat\r\nvychylující\r\nvychytanější\r\nvychytání\r\nvychytaný\r\nvychytat\r\nvychytávání\r\nvychytávaný\r\nvychytávat\r\nvychytračení\r\nvychytračený\r\nvychytračit\r\nvychytralejší\r\nvychytralý\r\nvyimportování\r\nvyimportovaný\r\nvyimportovat\r\nvyinkasování\r\nvyinkasovaný\r\nvyinkasovat\r\nvyjádřenější\r\nvyjádření\r\nvyjádřený\r\nvyjádřit\r\nvyjádřitelnější\r\nvyjádřitelný\r\nvyjadřovací\r\nvyjadřování\r\nvyjadřovaný\r\nvyjadřovat\r\nvyjadřovávat\r\nvyjadřující\r\nvyjádřující\r\nvyjasněnější\r\nvyjasnění\r\nvyjasněný\r\nvyjasnit\r\nvyjasňovací\r\nvyjasňování\r\nvyjasňovaný\r\nvyjasňovat\r\nvyjasňující\r\nvyjda\r\nvyjdu\r\nvyjedenější\r\nvyjedení\r\nvyjedený\r\nvyjednající\r\nvyjednanější\r\nvyjednání\r\nvyjednáno\r\nvyjednaný\r\nvyjednat\r\nvyjednávací\r\nvyjednavaččin\r\nvyjednávaččin\r\nvyjednavačka\r\nvyjednávačka\r\nvyjednavač\r\nvyjednávač\r\nvyjednavačův\r\nvyjednávačův\r\nvyjednávající\r\nvyjednávanější\r\nvyjednávání\r\nvyjednávaný\r\nvyjednávat\r\nvyjednotit\r\nvyjedu\r\nvyjeknout\r\nvyjeknutí\r\nvyjel\r\nvyjení\r\nvyjetější\r\nvyjet\r\nvyjetí\r\nvyjetý\r\nvyjetý\r\nvyjevenější\r\nvyjevení\r\nvyjevený\r\nvýjev\r\nvyjevit\r\nvyjevovací\r\nvyjevování\r\nvyjevovaný\r\nvyjevovat\r\nvyjevující\r\nvyjezdění\r\nvyjezděný\r\nvýjezd\r\nvyjezdit\r\nvýjezdní\r\nvýjezdový\r\nvyježděnější\r\nvyježděný\r\nvyjící\r\nvyjídání\r\nvyjídaný\r\nvyjídat\r\nvyjídávání\r\nvyjídávaný\r\nvyjídávat\r\nvyjímající\r\nvyjímanější\r\nvyjímání\r\nvyjímaný\r\nvyjímatelnější\r\nvyjímatelný\r\nvyjímat\r\nvýjimečnější\r\nvýjimečný\r\nvýjimeč\r\nvýjimka\r\nvýjimkový\r\nvyjíst\r\nvyjít\r\nvyjití\r\nvyjíždějící\r\nvyjíždění\r\nvyjížděný\r\nvyjíždět\r\nvyjížďka\r\nvyjížďkový\r\nvyjma\r\nvyjmenovanější\r\nvyjmenování\r\nvyjmenovaný\r\nvyjmenovat\r\nvyjmenovávající\r\nvyjmenovávání\r\nvyjmenovávaný\r\nvyjmenovávat\r\nvyjmout\r\nvyjmu\r\nvyjmul\r\nvyjmutelný\r\nvyjmutí\r\nvyjmut\r\nvyjmutý\r\nvyjukanější\r\nvyjuknout\r\nvyjuknutí\r\nvykácení\r\nvykácený\r\nvykácet\r\nvykachlíčkovat\r\nvykající\r\nvykakání\r\nvykakat\r\nvykakávání\r\nvykakávat\r\nvykálení\r\nvykálený\r\nvykálet\r\nvýkal\r\nvykalkulování\r\nvykalkulovaný\r\nvykalkulovat\r\nvykalkulovávání\r\nvykalkulovávaný\r\nvykalkulovávat\r\nvýkalový\r\nvýkalový\r\nvykání\r\nvykapanější\r\nvykapání\r\nvykapaný\r\nvykapat\r\nvykapávání\r\nvykapávaný\r\nvykapávat\r\nvykapu\r\nvykartáčování\r\nvykartáčovaný\r\nvykartáčovat\r\nvykasanější\r\nvykasání\r\nvykasaný\r\nvykasat\r\nvykasávání\r\nvykasávaný\r\nvykasávat\r\nvykastrování\r\nvykastrovaný\r\nvykastrovat\r\nvykastrovávat\r\nvykašlání\r\nvykašlaný\r\nvykašlat\r\nvykašlávající\r\nvykašlávání\r\nvykašlávaný\r\nvykašlávat\r\nvykat\r\nvykázanější\r\nvykázání\r\nvykázán\r\nvykázaný\r\nvykázat\r\nvykazatelnější\r\nvykazatelný\r\nvýkaz\r\nvýkaznictví\r\nvýkazní\r\nvykazovací\r\nvykazovanější\r\nvykazování\r\nvykazovaný\r\nvykazovat\r\nvýkazový\r\nvykazující\r\nvykáži\r\nvykdákání\r\nvykdákaný\r\nvykdákat\r\nvykecání\r\nvykecat\r\nvykecnout\r\nvykládací\r\nvykladačka\r\nvykladač\r\nvykladačský\r\nvykládač\r\nvykladač\r\nvykladačův\r\nvykládající\r\nvykládanější\r\nvykládání\r\nvykládaný\r\nvykladatelčin\r\nvykladatelka\r\nvykladatelnější\r\nvykladatelný\r\nvykladatelský\r\nvykladatelství\r\nvykladatel\r\nvykladatelův\r\nvykládat\r\nvýkladce\r\nvýkladcův\r\nvýklad\r\nvykládka\r\nvykládkovější\r\nvykládkový\r\nvýkladní\r\nvýkladovější\r\nvýkladový\r\nvykláněč\r\nvykláněčův\r\nvyklánějící\r\nvyklánění\r\nvyklánět\r\nvyklápěcí\r\nvyklápějící\r\nvyklápění\r\nvyklápěný\r\nvyklápět\r\nvýklenek\r\nvýklenkář\r\nvýklenkářův\r\nvýklenkový\r\nvyklenout\r\nvyklenování\r\nvyklenutější\r\nvyklenutí\r\nvyklenutý\r\nvyklenutý\r\nvyklepanější\r\nvyklepání\r\nvyklepaný\r\nvyklepat\r\nvyklepávací\r\nvyklepávající\r\nvyklepávanější\r\nvyklepávání\r\nvyklepávaný\r\nvyklepávat\r\nvýklep\r\nvyklepnout\r\nvyklepnutější\r\nvyklepnutí\r\nvyklepnutý\r\nvyklepnutý\r\nvyklesání\r\nvyklestěný\r\nvyklestit\r\nvykleštění\r\nvykleštěný\r\nvykleštit\r\nvyklešťování\r\nvyklešťovaný\r\nvyklešťovat\r\nvyklíčení\r\nvyklíčený\r\nvyklíčit\r\nvykličkování\r\nvykličkovaný\r\nvykličkovat\r\nvykličkovávání\r\nvykličkovávaný\r\nvykličkovávat\r\nvyklidit\r\nvyklízecí\r\nvyklízející\r\nvyklizení\r\nvyklízení\r\nvyklizený\r\nvyklízený\r\nvyklízet\r\nvýkliz\r\nvyklizovací\r\nvyklizovaný\r\nvyklofat\r\nvykloktání\r\nvykloktaný\r\nvykloktat\r\nvykloktávání\r\nvykloktávat\r\nvykloněnější\r\nvyklonění\r\nvykloněný\r\nvýklon\r\nvyklonit\r\nvyklonování\r\nvyklonovaný\r\nvyklonovat\r\nvyklopení\r\nvyklopený\r\nvyklopit\r\nvýklopný\r\nvyklopýtání\r\nvyklopýtat\r\nvykloubenější\r\nvykloubení\r\nvykloubený\r\nvykloubit\r\nvyklouzávání\r\nvyklouzávat\r\nvyklouznout\r\nvyklouznutí\r\nvyklovat\r\nvyklovávání\r\nvyklovávaný\r\nvyklovávat\r\nvyklubání\r\nvyklubaný\r\nvyklubat\r\nvyklubávání\r\nvyklubávaný\r\nvyklubávat\r\nvyklubu\r\nvyklučení\r\nvyklučit\r\nvyklusání\r\nvyklusat\r\nvyklusávání\r\nvyklusávaný\r\nvyklusávat\r\nvykluzování\r\nvykluzovat\r\nvykmitnout\r\nvykodrcání\r\nvykodrcaný\r\nvykodrcat\r\nvykoktání\r\nvykoktaný\r\nvykoktat\r\nvykoktávání\r\nvykoktávaný\r\nvykoktávat\r\nvykoledování\r\nvykoledovaný\r\nvykoledovat\r\nvykolejení\r\nvykolejený\r\nvykolejit\r\nvýkolejka\r\nvykolejování\r\nvykolejovaný\r\nvykolejovat\r\nvykolení\r\nvykolíkování\r\nvykolíkovaný\r\nvykolíkovat\r\nvykombinovanější\r\nvykombinování\r\nvykombinovaný\r\nvykombinovat\r\nvykomentovanější\r\nvykomentování\r\nvykomentovaný\r\nvykomentovat\r\nvykompenzování\r\nvykompenzovaný\r\nvykompenzovat\r\nvykonanější\r\nvykonání\r\nvykonaný\r\nvykonatelnější\r\nvykonatelný\r\nvykonat\r\nvykonávací\r\nvykonávající\r\nvykonávanější\r\nvykonávání\r\nvykonávaný\r\nvykonavatelčin\r\nvykonavatelka\r\nvykonavatelnější\r\nvykonavatelný\r\nvykonavatel\r\nvykonavatelův\r\nvykonávat\r\nvýkon\r\nvýkonnější\r\nvýkonnostní\r\nvýkonný\r\nvýkonový\r\nvykonstruovanější\r\nvykonstruování\r\nvykonstruovaný\r\nvykonstruovat\r\nvykonstruovávání\r\nvykonstruovávaný\r\nvykonstruovávat\r\nvýkoný\r\nvykopanější\r\nvykopání\r\nvykopaný\r\nvykopat\r\nvykopávání\r\nvykopávaný\r\nvykopávat\r\nvykopávka\r\nvykopávkový\r\nvýkop\r\nvykopírovanější\r\nvykopírování\r\nvykopírovaný\r\nvykopírovat\r\nvykopírovávanější\r\nvykopírovávání\r\nvykopírovávaný\r\nvykopírovávat\r\nvykopnout\r\nvykopnutí\r\nvykopnutý\r\nvýkopový\r\nvykorespondování\r\nvykorespondovaný\r\nvykorespondovat\r\nvykorespondovávání\r\nvykorespondovávaný\r\nvykorespondovávat\r\nvykořeněnější\r\nvykořenění\r\nvykořeněný\r\nvykořenit\r\nvykořenitelnější\r\nvykořenitelný\r\nvykořeňující\r\nvykořisťovanější\r\nvykořisťování\r\nvykořisťovaný\r\nvykořisťovat\r\nvykořisťovatelčin\r\nvykořisťovatelka\r\nvykořisťovatelský\r\nvykořisťovatelštější\r\nvykořisťovatel\r\nvykořisťovatelův\r\nvykořisťující\r\nvykostění\r\nvykostěný\r\nvykostit\r\nvykosťovat\r\nvykotlanější\r\nvykotlaný\r\nVykoukalová\r\nVykoukal\r\nVykoukalův\r\nvykoukání\r\nvykoukaný\r\nvykoukat\r\nvykouknout\r\nvykouknutí\r\nvykoulení\r\nvykoulený\r\nvykoulet\r\nvykoumání\r\nvykoumaný\r\nvykoumat\r\nvykoupání\r\nvykoupaný\r\nvykoupat\r\nvykoupenější\r\nvykoupení\r\nvykoupený\r\nvykoupit\r\nvykouřenější\r\nvykouření\r\nvykouřený\r\nvykouřit\r\nvykousanější\r\nvykousání\r\nvykousaný\r\nvykousat\r\nvykousávající\r\nvykousávanější\r\nvykousávání\r\nvykousávaný\r\nvykousávat\r\nvykousnout\r\nvykousnutější\r\nvykousnutí\r\nvykousnutý\r\nvykousnutý\r\nvykoušení\r\nvykoušet\r\nvykoušu\r\nvykout\r\nvykouzlení\r\nvykouzlený\r\nvykouzlit\r\nvykovanější\r\nvykování\r\nvykovaný\r\nvykovat\r\nvykovávání\r\nvykovávaný\r\nvykovávat\r\nvýkovek\r\nvykovu\r\nvykrácený\r\nvykračování\r\nvykračovaný\r\nvykračovat\r\nvykradaččin\r\nvykradačka\r\nvykradač\r\nvykrádač\r\nvykradačův\r\nvykrádačův\r\nvykrádající\r\nvykrádání\r\nvykrádaný\r\nvykrádat\r\nvykradenější\r\nvykradení\r\nvykradený\r\nvykrájenější\r\nvykrájení\r\nvykrájený\r\nvykrájet\r\nvykrajovací\r\nvykrajování\r\nvykrajovaný\r\nvykrajovat\r\nvykrajovávání\r\nvykrajovávaný\r\nvykrajovávat\r\nvykrakání\r\nvykrákání\r\nvykrakaný\r\nvykrákaný\r\nvykrakat\r\nvykrákat\r\nvykrást\r\nvýkres\r\nvykreslenější\r\nvykreslení\r\nvykreslený\r\nvykreslit\r\nvykreslování\r\nvykreslovaný\r\nvykreslovat\r\nvykreslovávání\r\nvykreslovávaný\r\nvykreslovávat\r\nvykreslující\r\nvýkresový\r\nvykrmenější\r\nvykrmení\r\nvykrmený\r\nvýkrm\r\nvykrmit\r\nvýkrmna\r\nvýkrmný\r\nvykrmování\r\nvykrmovaný\r\nvykrmovat\r\nvýkrmový\r\nvykrmující\r\nvykročení\r\nvykročený\r\nvykročit\r\nvykrojenější\r\nvykrojení\r\nvykrojený\r\nvykrojit\r\nvýkroj\r\nvykropení\r\nvykropený\r\nvykropit\r\nvykroucení\r\nvykroucený\r\nvykrouhání\r\nvykrouhaný\r\nvykrouhat\r\nvykrouhávání\r\nvykrouhávaný\r\nvykrouhávat\r\nvykroutit\r\nvykrouženější\r\nvykroužení\r\nvykroužený\r\nvykroužit\r\nvykrucování\r\nvykrucovaný\r\nvykrucovat\r\nvýkrut\r\nvykružovačka\r\nvykružování\r\nvykružovaný\r\nvykružovat\r\nvykrvácení\r\nvykrvácet\r\nvykrvení\r\nvykrvený\r\nvykrvit\r\nvykrystalizování\r\nvykrystalizovaný\r\nvykrystalizovat\r\nvykrystalování\r\nvykrystalovaný\r\nvykrystalovat\r\nvykrýt\r\nvykrytější\r\nvykrytelnější\r\nvykrytelný\r\nvykrytí\r\nvykrytý\r\nvykrytý\r\nvykrývací\r\nvykrývač\r\nvykrývačův\r\nvykrývající\r\nvykrývanější\r\nvykrývání\r\nvykrývaný\r\nvykrývatelnější\r\nvykrývatelný\r\nvykrývat\r\nvykrývka\r\nvykřápat\r\nvykřesající\r\nvykřesanější\r\nvykřesání\r\nvykřesaný\r\nvykřesat\r\nvykřesávající\r\nvykřesávanější\r\nvykřesávání\r\nvykřesávaný\r\nvykřesávat\r\nvykřičenější\r\nvykřičení\r\nvykřičený\r\nvykřičet\r\nvykřičník\r\nvykřičníkový\r\nvýkřik\r\nvykřiknout\r\nvykřiknutí\r\nvykřiknutý\r\nvykřikování\r\nvykřikovaný\r\nvykřikovat\r\nvykřikovávání\r\nvykřikovávaný\r\nvykřikovávat\r\nvykřikující\r\nvykřísnout\r\nvykuckání\r\nvykuckaný\r\nvykuckat\r\nvykuchanější\r\nvykuchání\r\nvykuchaný\r\nvykuchat\r\nvykuchávání\r\nvykuchávaný\r\nvykuchávat\r\nvykukování\r\nvykukovat\r\nvykukující\r\nvykulenější\r\nvykulení\r\nvykulený\r\nvykulhání\r\nvykulhat\r\nvykulhávání\r\nvykulhávat\r\nvykulit\r\nvykulování\r\nvykulovaný\r\nvykulovat\r\nvýkupčí\r\nvýkup\r\nvykupitelčin\r\nvykupitelka\r\nvykupitelský\r\nvykupitelství\r\nvykupitel\r\nvykupitelův\r\nvýkupna\r\nvýkupné\r\nvýkupní\r\nvýkupní\r\nvykupování\r\nvykupovaný\r\nvykupovat\r\nvykupující\r\nvykurýrování\r\nvykurýrovaný\r\nvykurýrovat\r\nvykuřovadlo\r\nvykuřování\r\nvykuřovaný\r\nvykuřovat\r\nvykusovanější\r\nvykusování\r\nvykusovaný\r\nvykusovat\r\nVykusová\r\nVykus\r\nvykusující\r\nVykusův\r\nvykutálenější\r\nvykutálení\r\nvykutálený\r\nvykutálet\r\nvykutání\r\nvykutaný\r\nvykutat\r\nvykutávat\r\nvykutí\r\nvykutý\r\nvykvákání\r\nvykvákaný\r\nvykvákat\r\nvykvasit\r\nvykvašenější\r\nvykvašení\r\nvykvašený\r\nvykvašování\r\nvykvašovaný\r\nvykvašovat\r\nvykvedlání\r\nvykvedlaný\r\nvykvedlat\r\nvykvedlávání\r\nvykvedlávaný\r\nvykvedlávat\r\nvykvést\r\nvykvétající\r\nvykvétání\r\nvykvétat\r\nvykvetení\r\nvykvetený\r\nvýkvět\r\nvykvetlejší\r\nvykvetlý\r\nvykviknout\r\nvykviknutí\r\nvykvrdlat\r\nvykydání\r\nvykydaný\r\nvykydat\r\nvykydávání\r\nvykydávaný\r\nvykydávat\r\nvykynout\r\nvykynulý\r\nvykynutí\r\nvykynutý\r\nvykypění\r\nvykypěný\r\nvykypět\r\nVykysalý\r\nvykytování\r\nvykytovaný\r\nvykytovat\r\nvýkyv\r\nvýkyvný\r\nvyladěnější\r\nvyladění\r\nvyladěný\r\nvyladit\r\nvylaďování\r\nvylaďovaný\r\nvylaďovat\r\nvylákání\r\nvylákaný\r\nvylákat\r\nvylámání\r\nvylámaný\r\nvylámat\r\nvylamování\r\nvylamovaný\r\nvylamovat\r\nvylamovávání\r\nvylamovávaný\r\nvylamovávat\r\nvyléčení\r\nvyléčený\r\nvyléčit\r\nvyléčitelnější\r\nvyléčitelný\r\nvylehčenější\r\nvylehčení\r\nvylehčený\r\nvylehčit\r\nvylehčovanější\r\nvylehčování\r\nvylehčovaný\r\nvylehčovat\r\nvylehčující\r\nvylekanější\r\nvylekání\r\nvylekaný\r\nvylekat\r\nvylepení\r\nvylepený\r\nvylepit\r\nvylepování\r\nvylepovaný\r\nvylepovat\r\nvylepšení\r\nvylepšený\r\nvylepšit\r\nvylepšování\r\nvylepšovaný\r\nvylepšovat\r\nvylepšující\r\nvyleptaný\r\nvyleptat\r\nvyleptávání\r\nvyleptávaný\r\nvyleptávat\r\nvyleštěnější\r\nvyleštění\r\nvyleštěný\r\nvyleštit\r\nvylétající\r\nVyleťalová\r\nVyleťal\r\nVyleťalův\r\nvylétání\r\nvylétaný\r\nvylétat\r\nvylétávání\r\nvylétávat\r\nvyletění\r\nvyletěný\r\nvyletět\r\nvýlet\r\nvýlet\r\nvýletnice\r\nvýletničin\r\nvýletník\r\nvýletníkův\r\nvýletní\r\nvylétnout\r\nvylétnutí\r\nvyletování\r\nvyletovaný\r\nvyletovat\r\nvýletový\r\nvyletující\r\nvylévající\r\nvylévání\r\nvylévaný\r\nvylévat\r\nvýlev\r\nvýlevka\r\nvýlevný\r\nvylézající\r\nvylézanější\r\nvylézání\r\nvylézaný\r\nvylézat\r\nvylezenější\r\nvylezení\r\nvylezený\r\nvýlez\r\nvylezlejší\r\nvylezlý\r\nvylézt\r\nvyležení\r\nvyležený\r\nvyležet\r\nvylhal\r\nvylhanější\r\nvylhaní\r\nvylhání\r\nvylhán\r\nvylhaný\r\nvylháný\r\nvylhat\r\nvylhávanější\r\nvylhávaní\r\nvylhávání\r\nvylhávaný\r\nvylhávat\r\nvylicitování\r\nvylicitovaný\r\nvylicitovat\r\nvylíčení\r\nvylíčený\r\nvylíčit\r\nvylíčitelnější\r\nvylidněnější\r\nvylidnění\r\nvylidněný\r\nvylidnit\r\nvylidňování\r\nvylidňovaný\r\nvylidňovat\r\nvylidňující\r\nvylíhlý\r\nvylíhnout\r\nvylíhnutí\r\nvylíhnutý\r\nvylíhnutý\r\nvylikvidování\r\nvylikvidovaný\r\nvylikvidovat\r\nvylínat\r\nvýlisek\r\nvýlisný\r\nvylisování\r\nvylisovaný\r\nvylisovat\r\nvylisovávat\r\nvylítání\r\nvylítaný\r\nvylítat\r\nvylít\r\nvylitější\r\nvylití\r\nvylítnout\r\nvylítnutí\r\nvylit\r\nvylitý\r\nvylitý\r\nvylívanější\r\nvylívání\r\nvylívaný\r\nvylívat\r\nvýlivka\r\nvylízání\r\nvylízaný\r\nvylízat\r\nvylízávat\r\nvylíznout\r\nvylíznutí\r\nvylíznutý\r\nvylizování\r\nvylizovaný\r\nvylizovat\r\nvylobbování\r\nvylobbovaný\r\nvylobbovat\r\nvylobování\r\nvylobovaný\r\nvylobovat\r\nvylodění\r\nvyloděný\r\nvylodit\r\nvyloďovací\r\nvyloďování\r\nvyloďovaný\r\nvyloďovat\r\nvýloha\r\nvylomenina\r\nvylomení\r\nvylomený\r\nvylomit\r\nvylosování\r\nvylosovaný\r\nvylosovat\r\nvyloučenější\r\nvyloučenina\r\nvyloučení\r\nvyloučený\r\nvyloučit\r\nvyloučitelný\r\nvyloudání\r\nvyloudat\r\nvyloudění\r\nvylouděný\r\nvyloudit\r\nvylouhování\r\nvylouhovaný\r\nvylouhovat\r\nvyloupání\r\nvyloupaný\r\nvyloupat\r\nvyloupávání\r\nvyloupávaný\r\nvyloupávat\r\nvyloupení\r\nvyloupený\r\nvyloupit\r\nvyloupnout\r\nvyloupnutí\r\nvyloupnutý\r\nvyloužení\r\nvyloužený\r\nvyloužilý\r\nvyloužit\r\nvylovení\r\nvylovený\r\nvýlov\r\nvylovit\r\nvylovování\r\nvylovovat\r\nvyloženější\r\nvyložení\r\nvyložený\r\nvyložit\r\nvyložitelnější\r\nvýložka\r\nvýložník\r\nvýložníkový\r\nvýložní\r\nvýlož\r\nvylučitelnější\r\nvylučitelný\r\nvýlučně\r\nvýlučnější\r\nvýlučný\r\nvylučovací\r\nvylučování\r\nvylučovaný\r\nvylučovat\r\nvylučující\r\nvýluh\r\nvyluhovací\r\nvyluhování\r\nvyluhovaný\r\nvyluhovat\r\nvyluhovatelný\r\nvyluhovávání\r\nvyluhovávaný\r\nvyluhovávat\r\nvýluhový\r\nvýluka\r\nvýlupek\r\nvylupovací\r\nvylupování\r\nvylupovaný\r\nvylupovat\r\nvýlusk\r\nvyluštění\r\nvyluštěný\r\nvyluštit\r\nvylušťování\r\nvylušťovat\r\nvyluxování\r\nvyluxovaný\r\nvyluxovat\r\nvyluzování\r\nvyluzovaný\r\nvyluzovat\r\nvyluzující\r\nvylžu\r\nvymáčení\r\nvymáčet\r\nvymačkání\r\nvymačkaný\r\nvymačkat\r\nvymačkávání\r\nvymačkávaný\r\nvymačkávat\r\nvymáčknout\r\nvymáčknutí\r\nvymáčknutý\r\nvymáhací\r\nvymahač\r\nvymahačův\r\nvymáhající\r\nvymáhanější\r\nvymáhání\r\nvymáhaný\r\nvymahatelnější\r\nvymáhatelnější\r\nvymahatelný\r\nvymáhat\r\nvymáchanější\r\nvymáchání\r\nvymáchaný\r\nvymáchat\r\nvymakání\r\nvymakat\r\nvýmalba\r\nvymalování\r\nvymalovaný\r\nvymalovat\r\nvymámenější\r\nvymámení\r\nvymámený\r\nvymámit\r\nvymandlovat\r\nvymanění\r\nvymaněný\r\nvymanévrování\r\nvymanévrovaný\r\nvymanévrovat\r\nvymanit\r\nvymaňování\r\nvymaňovaný\r\nvymaňovat\r\nvymaňující\r\nVýmar\r\nvymarodit\r\nvýmarský\r\nvymaskování\r\nvymaskovaný\r\nvymaskovat\r\nvymastit\r\nvymaštění\r\nvymaštěný\r\nVymazalová\r\nVymazal\r\nVymazalův\r\nvymazanější\r\nvymazání\r\nvymazaný\r\nvymazat\r\nvymazatelnější\r\nvymazávající\r\nvymazávání\r\nvymazávaný\r\nvymazávat\r\nvýmaz\r\nvýmazovější\r\nvýmazový\r\nvyměklý\r\nvymelu\r\nvýměna\r\nvyměnější\r\nvýměnek\r\nvyměněnější\r\nvyměnění\r\nvyměněný\r\nvýměník\r\nvýměníkový\r\nvyměnit\r\nvyměnitelnější\r\nvyměnitelný\r\nvýměnkářčin\r\nvýměnkářka\r\nvýměnkář\r\nvýměnkářův\r\nvýměnka\r\nvýměnnější\r\nvýměnný\r\nvyměňovanější\r\nvyměňování\r\nvyměňovaný\r\nvyměňovat\r\nvyměňovávat\r\nvyměňující\r\nvýměra\r\nvýměr\r\nvýměrný\r\nvyměřenější\r\nvyměření\r\nvyměřený\r\nvyměřit\r\nvyměřovací\r\nvyměřovač\r\nvyměřovačův\r\nvyměřování\r\nvyměřovaný\r\nvyměřovat\r\nvyměřovávat\r\nvyměřující\r\nvýměsek\r\nvymést\r\nvýměšek\r\nvyměšovací\r\nvyměšování\r\nvyměšovaný\r\nvyměšovat\r\nvyměšující\r\nvymetací\r\nVymětalová\r\nVymětal\r\nVymětalův\r\nvymetání\r\nvymetaný\r\nvymetat\r\nvymetávání\r\nvymetávaný\r\nvymetávat\r\nvýmětek\r\nvymetení\r\nvymetený\r\nvýmět\r\nvymezenější\r\nvymezení\r\nvymezený\r\nvymezerování\r\nvymezerovaný\r\nvymezerovat\r\nvymezit\r\nvymezitelnější\r\nvymezitelný\r\nvymezovací\r\nvymezovanější\r\nvymezování\r\nvymezovaný\r\nvymezovat\r\nvymezující\r\nvymílání\r\nvymílaný\r\nvymílat\r\nvymínění\r\nvymíněný\r\nvymínit\r\nvýminka\r\nvymiňování\r\nvymiňovaný\r\nvymiňovat\r\nvymírající\r\nvymírající\r\nvymírání\r\nvymírat\r\nvymístění\r\nvymítač\r\nvymítačův\r\nvymítající\r\nvymítanější\r\nvymítání\r\nvymítaný\r\nvymítat\r\nvymítnout\r\nvymítnutější\r\nvymítnutí\r\nvymítnutý\r\nvymítnutý\r\nvymizejí\r\nvymizení\r\nvymizet\r\nvymknout\r\nvymknutí\r\nvymknutý\r\nvymlácení\r\nvymlácený\r\nvýmladek\r\nvýmladkový\r\nvýmlatek\r\nvýmlat\r\nvymlátit\r\nvymlel\r\nvymlení\r\nvymletější\r\nvymletí\r\nvymlet\r\nvymletý\r\nvymletý\r\nvymlít\r\nvymlouvající\r\nvymlouvání\r\nvymlouvaný\r\nvymlouvat\r\nvýmluva\r\nvymluvení\r\nvymluvený\r\nvymluvit\r\nvýmluvnější\r\nvýmluvný\r\nvymňouknout\r\nvymňouknutí\r\nvymňouknutý\r\nvymnout\r\nvymnutí\r\nvymnutý\r\nvymoci\r\nvymoct\r\nvymočení\r\nvymočený\r\nvymočit\r\nvymodelování\r\nvymodelovaný\r\nvymodelovat\r\nvymodelovávání\r\nvymodelovávaný\r\nvymodelovávat\r\nvymódit\r\nvymodlení\r\nvymodlený\r\nvymodlit\r\nvymoklejší\r\nvymoklý\r\nvymoknout\r\nvymoknutí\r\nvymoknutý\r\nvýmol\r\nvýmolový\r\nvymontování\r\nvymontovaný\r\nvymontovat\r\nvymontovávání\r\nvymontovávaný\r\nvymontovávat\r\nvymotání\r\nvymotaný\r\nvymotat\r\nvymotávání\r\nvymotávaný\r\nvymotávat\r\nvymozme\r\nvymoz\r\nvymozte\r\nvymoženější\r\nvymožení\r\nvymožen\r\nvymoženost\r\nvymožený\r\nvymra\r\nvymrazení\r\nvymrazený\r\nvymrazit\r\nvymrazování\r\nvymrskání\r\nvymrskaný\r\nvymrskat\r\nvymrštění\r\nvymrštěný\r\nvymrštit\r\nvymršťování\r\nvymršťovaný\r\nvymršťovat\r\nvymrzání\r\nvymrzat\r\nvymrzávat\r\nvymrzlejší\r\nvymrzlý\r\nvymrznout\r\nvymrznutí\r\nvymrznutý\r\nvymřelejší\r\nvymřelý\r\nvymření\r\nvymřít\r\nvymstění\r\nvymstěný\r\nvymstít\r\nvymýcení\r\nvymýcený\r\nvymycování\r\nvymycovaný\r\nvymycovat\r\nvymycovávání\r\nvymycovávaný\r\nvymycovávat\r\nvymydlenější\r\nvymydlení\r\nvymydlený\r\nvymydlit\r\nvymykající\r\nvymykání\r\nvymykat\r\nvýmyk\r\nvymyslení\r\nvymyslený\r\nvymyslet\r\nvýmysl\r\nvymyslit\r\nvymýšlející\r\nvymyšlenější\r\nvymyšlenější\r\nvymyšlení\r\nvymýšlení\r\nvymyšlen\r\nvymyšlený\r\nvymýšlený\r\nvymýšlet\r\nvymýtání\r\nvymýtaný\r\nvymýtat\r\nvymýt\r\nvymytější\r\nvymytí\r\nvymýtit\r\nvymytý\r\nvymytý\r\nvymývačka\r\nvymývač\r\nvymývačův\r\nvymývanější\r\nvymývání\r\nvymývaný\r\nvymývatelnější\r\nvymývatelný\r\nvymývat\r\nvynadání\r\nvynadat\r\nvynadávání\r\nvynadávat\r\nvynadívání\r\nvynadívat\r\nvynadivení\r\nvynadivit\r\nvyňafání\r\nvyňafaný\r\nvyňafat\r\nvynahradit\r\nvynahrazení\r\nvynahrazený\r\nvynahrazování\r\nvynahrazovaný\r\nvynahrazovat\r\nvynachválení\r\nvynachválený\r\nvynachválit\r\nvynajdu\r\nvynajít\r\nvynakládání\r\nvynakládaný\r\nvynakládat\r\nvynalézající\r\nvynalézanější\r\nvynalézání\r\nvynalézaný\r\nvynalézat\r\nvynalézavější\r\nvynalézavý\r\nvynálezce\r\nvynálezcovský\r\nvynálezcovství\r\nvynálezcův\r\nvynálezecký\r\nvynálezectví\r\nvynalezenější\r\nvynalezení\r\nvynalezený\r\nvynález\r\nvynálezkyně\r\nvynálezkynin\r\nvynaleznout\r\nvynalézt\r\nvyňal\r\nvynaložení\r\nvynaložení\r\nvynaložený\r\nvynaložit\r\nvynasmání\r\nvynasmát\r\nvynasnažení\r\nvynasnažit\r\nvynásobení\r\nvynásobený\r\nvynásobit\r\nvynašeč\r\nvynášející\r\nvynašel\r\nvynášenější\r\nvynášení\r\nvynášený\r\nvynášet\r\nvynáška\r\nvyňatější\r\nvýňatek\r\nvyňat\r\nvyňatý\r\nvyňatý\r\nvyňatý\r\nvyndání\r\nvyndaný\r\nvyndat\r\nvyndávanější\r\nvyndavání\r\nvyndávání\r\nvyndávaný\r\nvyndavat\r\nvyndávat\r\nvynechanější\r\nvynechání\r\nvynechaný\r\nvynechat\r\nvynechávající\r\nvynechávanější\r\nvynechávání\r\nvynechávaný\r\nvynechávat\r\nvynechávka\r\nvynechme\r\nvynech\r\nvynechte\r\nvynesenější\r\nvynesení\r\nvynesený\r\nvynést\r\nvynětí\r\nvynikající\r\nvynikání\r\nvynikat\r\nvyniklejší\r\nvyniklý\r\nvyniknout\r\nvyniknutí\r\nvýnimka\r\nvynoření\r\nvynořený\r\nvynořit\r\nvynořování\r\nvynořovaný\r\nvynořovat\r\nvynořovávat\r\nvynořující\r\nvýnos\r\nvynosit\r\nvýnosnější\r\nvýnosný\r\nvýnosový\r\nvynošení\r\nvynošený\r\nvynucenější\r\nvynucení\r\nvynucený\r\nvynucování\r\nvynucovaný\r\nvynucovat\r\nvynucující\r\nvynulování\r\nvynulovaný\r\nvynulovat\r\nvynulovávání\r\nvynulovávaný\r\nvynulovávat\r\nvynutit\r\nvynutitelnější\r\nvynutitelný\r\nvyobcování\r\nvyobcovaný\r\nvyobcovat\r\nvyobcovávání\r\nvyobcovávaný\r\nvyobcovávat\r\nvyobchodování\r\nvyobchodovaný\r\nvyobchodovat\r\nvyoblení\r\nvyobrazení\r\nvyobrazený\r\nvyobrazit\r\nvyobrazování\r\nvyobrazovaný\r\nvyobrazovat\r\nvyoperování\r\nvyoperovaný\r\nvyoperovat\r\nvyoperovávat\r\nVyoralová\r\nVyoral\r\nVyoralův\r\nvyorání\r\nvyoraný\r\nvyorat\r\nvyorávač\r\nvyorávající\r\nvyorávání\r\nvyorávaný\r\nvyorávat\r\nvyorávka\r\nvyorganizování\r\nvyorganizovaný\r\nvyorganizovat\r\nvyorganizovávat\r\nvyostření\r\nvyostřený\r\nvyostřit\r\nvyostřování\r\nvyostřovaný\r\nvyostřovat\r\nvyostřovávat\r\nvyostřující\r\nvypáčení\r\nvypáčený\r\nvypáčit\r\nvypadající\r\nvypadanější\r\nvypadání\r\nvypadaný\r\nvypadat\r\nvypadávající\r\nvypadávání\r\nvypadávaný\r\nvypadávat\r\nvýpadek\r\nvýpad\r\nvýpadkový\r\nvypadlejší\r\nvypádlovat\r\nvypadlý\r\nvýpadní\r\nvypadnout\r\nvypadnutí\r\nvypadnutý\r\nvýpadovka\r\nvýpadový\r\nvypájení\r\nvypájený\r\nvypájet\r\nvypakování\r\nvypakovaný\r\nvypakovat\r\nvýpalek\r\nvypálenější\r\nvypálení\r\nvypálený\r\nvýpal\r\nvypálit\r\nvýpalkový\r\nvýpalné\r\nvypalovací\r\nvypalovačka\r\nvypalovanější\r\nvypalovaní\r\nvypalování\r\nvypalovaný\r\nvypalovat\r\nvypalovávání\r\nvypalovávaný\r\nvypalovávat\r\nvypalující\r\nvyparáděný\r\nvypárání\r\nvypáraný\r\nvypárat\r\nvýpar\r\nvyparketovaný\r\nvyparketovat\r\nvýparník\r\nvýparníkový\r\nvypářeme\r\nvypáře\r\nvypaření\r\nvypařený\r\nvypářeš\r\nvypářete\r\nvypařit\r\nvypářou\r\nvypařovací\r\nvypařování\r\nvypařovaný\r\nvypařovat\r\nvypařovávat\r\nvypařující\r\nvypářu\r\nvypásanější\r\nvypásání\r\nvypásaný\r\nvypásatelnější\r\nvypásatelný\r\nvypásat\r\nvypasenější\r\nvypasení\r\nvypasen\r\nvypasený\r\nvypásl\r\nvypasování\r\nvypasovaný\r\nvypasovat\r\nvypást\r\nvypasu\r\nvypátrání\r\nvypátraný\r\nvypátrat\r\nvypeckování\r\nvypeckovaný\r\nvypeckovat\r\nvypéct\r\nvýpeček\r\nvypečenější\r\nvypečení\r\nvypečený\r\nvypékání\r\nvypékaný\r\nvypékat\r\nvypelichanější\r\nvypelichání\r\nvypelichaný\r\nvypelichat\r\nvypěnění\r\nvypěněný\r\nvypění\r\nvypěnit\r\nvypěnování\r\nvypěňování\r\nvypěňovat\r\nvypérovaný\r\nvypérovat\r\nvypeskování\r\nvypeskovaný\r\nvypeskovat\r\nvýpěstek\r\nvypěstovanější\r\nvypěstování\r\nvypěstovaný\r\nvypěstovat\r\nvypěstovávání\r\nvypěstovávaný\r\nvypěstovávat\r\nvypět\r\nvypětí\r\nvypíchání\r\nvypíchaný\r\nvypíchat\r\nvypíchávání\r\nvypíchávaný\r\nvypíchávat\r\nvypíchnout\r\nvypíchnutí\r\nvypíchnutý\r\nvypichování\r\nvypichovaný\r\nvypichovat\r\nvypichující\r\nvypíjenější\r\nvypíjení\r\nvypíjený\r\nvypíjet\r\nvypilotovávání\r\nvypilotovávaný\r\nvypilotovávat\r\nvypilování\r\nvypilovaný\r\nvypilovat\r\nvypilovávání\r\nvypilovávaný\r\nvypilovávat\r\nvypínací\r\nvypínač\r\nvypínající\r\nvypínání\r\nvypínaný\r\nvypínatelný\r\nvypínat\r\nvypínavější\r\nvypínavý\r\nvypiplanější\r\nvypiplání\r\nvypiplaný\r\nvypiplat\r\nvypiplávání\r\nvypiplávaný\r\nvypiplávat\r\nvypírací\r\nvypírání\r\nvypírat\r\nvýpisek\r\nvýpis\r\nvypískanější\r\nvypískání\r\nvypískaný\r\nvypískat\r\nvýpiska\r\nvypísknout\r\nvypísknutí\r\nvypísknutý\r\nvypisovanější\r\nvypisování\r\nvypisovaný\r\nvypisovat\r\nvýpisový\r\nvypisující\r\nvypíši\r\nvypíšu\r\nvypít\r\nvypitější\r\nvypití\r\nvypit\r\nvypitý\r\nvypitý\r\nvypižlání\r\nvypižlaný\r\nvypižlat\r\nvypjal\r\nvypjatější\r\nvypjat\r\nvypjatý\r\nvyplácání\r\nvyplácaný\r\nvyplácat\r\nvyplácející\r\nvyplacenější\r\nvyplácenější\r\nvyplacení\r\nvyplácení\r\nvyplacený\r\nvyplácený\r\nvyplácet\r\nvýplach\r\nvypláchnout\r\nvypláchnutí\r\nvypláchnutý\r\nvyplachovací\r\nvyplachování\r\nvyplachovaný\r\nvyplachovat\r\nvyplachovávání\r\nvyplachovávaný\r\nvyplachovávat\r\nvýplachový\r\nvýplachový\r\nvyplachtění\r\nvyplachtit\r\nvyplakající\r\nvyplakanější\r\nvyplakání\r\nvyplakaný\r\nvyplakat\r\nvyplakátování\r\nvyplakátovat\r\nvyplakávání\r\nvyplakávaný\r\nvyplakávat\r\nvyplašenější\r\nvyplašení\r\nvyplašený\r\nvyplašit\r\nvýplata\r\nvyplatit\r\nvyplatitelný\r\nvýplatnice\r\nvýplatní\r\nvýplatní\r\nvyplavání\r\nvyplavat\r\nvyplavávání\r\nvyplavávat\r\nvyplavejme\r\nvyplavej\r\nvyplavejte\r\nvyplavení\r\nvyplavený\r\nvyplavit\r\nvyplavování\r\nvyplavovaný\r\nvyplavovat\r\nvyplazení\r\nvyplazený\r\nvyplazit\r\nvypláznout\r\nvypláznutí\r\nvypláznutý\r\nvyplazování\r\nvyplazovaný\r\nvyplazovat\r\nvyplazující\r\nvypleji\r\nvyplel\r\nVyplelová\r\nVyplel\r\nVyplelův\r\nvyplenění\r\nvypleněný\r\nvyplení\r\nvyplenit\r\nvyplést\r\nvyplétání\r\nvyplétaný\r\nvyplétat\r\nvypletější\r\nvypletenější\r\nvypletení\r\nvypletený\r\nvýplet\r\nvypletí\r\nvyplet\r\nvýpletový\r\nvypletý\r\nvypletý\r\nvyplísnění\r\nvyplísněný\r\nvyplísnit\r\nvyplít\r\nvyplivnout\r\nvyplivnutí\r\nvyplivnutý\r\nvyplivování\r\nvyplivovaný\r\nvyplivovat\r\nvyplížení\r\nvyplížit\r\nvýplněk\r\nvyplněnější\r\nvyplnění\r\nvyplněný\r\nvyplnit\r\nvyplnitelnější\r\nvyplnitelný\r\nvýplňkový\r\nvyplňovací\r\nvyplňování\r\nvyplňovaný\r\nvyplňovat\r\nvýplňový\r\nvyplňující\r\nvýplň\r\nvýplod\r\nvyplodit\r\nvyplout\r\nvyplouvající\r\nvyplouvání\r\nvyplouvaný\r\nvyplouvat\r\nvyploužení\r\nvyploužit\r\nvyplození\r\nvyplozený\r\nvyplundrovat\r\nvyplutí\r\nvyplutý\r\nvypluženější\r\nvyplužení\r\nvyplužený\r\nvyplužit\r\nvyplynout\r\nvyplynování\r\nvyplynovaný\r\nvyplynovat\r\nvyplynutí\r\nvyplynutý\r\nvyplýtvání\r\nvyplýtvaný\r\nvyplýtvat\r\nvyplýtvávání\r\nvyplýtvávaný\r\nvyplýtvávat\r\nvyplývající\r\nvyplývání\r\nvyplývat\r\nvypnout\r\nvypnutější\r\nvypnutí\r\nvypnutý\r\nvypocení\r\nvypocený\r\nvypocování\r\nvypocovaný\r\nvypocovat\r\nvýpočetní\r\nvýpočet\r\nvypočíst\r\nvypočítání\r\nvypočítaný\r\nvypočitatelnější\r\nvypočitatelný\r\nvypočítatelný\r\nvypočítat\r\nvypočítávající\r\nvypočítávání\r\nvypočítávaný\r\nvypočítávat\r\nvypočítavcův\r\nvypočítavec\r\nvypočítavější\r\nvypočítavý\r\nvypočtenější\r\nvypočtení\r\nvypočtený\r\nvýpočtový\r\nvypodkuřovávat\r\nvypodložení\r\nvypodložit\r\nvypodobení\r\nvypodobnění\r\nvypodobněný\r\nvypodobnit\r\nvypodobňování\r\nvypodobňovaný\r\nvypodobňovat\r\nvypodobovat\r\nvypochodování\r\nvypochodovaný\r\nvypochodovat\r\nvypointování\r\nvypointovaný\r\nvypointovat\r\nvypointovávání\r\nvypointovávaný\r\nvypointovávat\r\nvypojenější\r\nvypojení\r\nvypojený\r\nvypojit\r\nvypojitelný\r\nvypojování\r\nvypojovat\r\nvypoklonkování\r\nvypoklonkovaný\r\nvypoklonkovat\r\nvypolstrování\r\nvypolstrovaný\r\nvypolstrovaný\r\nvypolstrovat\r\nvypomáhající\r\nvypomáhání\r\nvypomáhat\r\nvypomoci\r\nvýpomocích\r\nvýpomocím\r\nvýpomoc\r\nvýpomocný\r\nvypomoct\r\nvypomozme\r\nvypomoz\r\nvypomozte\r\nvypomožení\r\nvýpon\r\nvypořádací\r\nvypořádající\r\nvypořádanější\r\nvypořádání\r\nvypořádaný\r\nvypořádat\r\nvypořádávací\r\nvypořádávající\r\nvypořádávanější\r\nvypořádávání\r\nvypořádávaný\r\nvypořádávat\r\nvyposlechnout\r\nvyposlechnutější\r\nvyposlechnutí\r\nvyposlechnutý\r\nvyposlechnutý\r\nvyposlouchání\r\nvyposlouchaný\r\nvyposlouchat\r\nvypotácení\r\nvypotácet\r\nvýpotek\r\nvypotit\r\nvypotřebování\r\nvypotřebovaný\r\nvypotřebovat\r\nvypotřebovávat\r\nvypouklina\r\nvypouklý\r\nvypoulenější\r\nvypoulení\r\nvypoulený\r\nvypoulit\r\nvypouštěcí\r\nvypouštějící\r\nvypouštěnější\r\nvypouštění\r\nvypouštěný\r\nvypouštět\r\nvypovědění\r\nvypověděný\r\nvypovědět\r\nvypověditelnější\r\nvypověditelný\r\nvýpověď\r\nvýpovědmi\r\nvýpovědní\r\nvypovězení\r\nvypovězen\r\nvypovězený\r\nvypovídací\r\nvypovídač\r\nvypovídačův\r\nvypovídající\r\nvypovídanější\r\nvypovídání\r\nvypovídaný\r\nvypovídat\r\nvypozorování\r\nvypozorovaný\r\nvypozorovat\r\nvypozorovávat\r\nvypracovanější\r\nvypracování\r\nvypracovaný\r\nvypracovat\r\nvypracovávanější\r\nvypracovávání\r\nvypracovávaný\r\nvypracovávat\r\nvyprahlejší\r\nvyprahlý\r\nvyprahnout\r\nvyprahnutí\r\nvypranější\r\nvyprání\r\nvypraný\r\nvypráskanější\r\nvypráskaný\r\nvýprask\r\nvyprášenější\r\nvyprášení\r\nvyprášený\r\nvyprášit\r\nvyprašování\r\nvyprašovat\r\nvyprat\r\nvýprava\r\nvýpravčí\r\nvyprávěcí\r\nvypravěččin\r\nvypravěčka\r\nvyprávěčka\r\nvyprávěč\r\nvypravěčský\r\nvypravěčství\r\nvypravěč\r\nvypravěčův\r\nvypravějící\r\nvyprávějící\r\nvypravenější\r\nvyprávěnější\r\nvypravení\r\nvyprávění\r\nvyprávěnka\r\nvyprávěnky\r\nvypravený\r\nvyprávěný\r\nvyprávět\r\nvypravit\r\nvýpravka\r\nvýpravna\r\nvýpravnější\r\nvýpravný\r\nvypravovací\r\nvypravování\r\nvypravovaný\r\nvypravovat\r\nvypravovování\r\nvypravovovaný\r\nvypravovovat\r\nvypravující\r\nvyprázdnění\r\nvyprázdněný\r\nvyprázdnit\r\nvyprazdňování\r\nvyprazdňovaný\r\nvyprazdňovat\r\nvyprazdňující\r\nvypražení\r\nvypražený\r\nvypražit\r\nvyprecipitovat\r\nvyprecizování\r\nvyprecizovaný\r\nvyprecizovat\r\nvypreparování\r\nvypreparovaný\r\nvypreparovat\r\nvyprchání\r\nvyprchaný\r\nvyprchat\r\nvyprchávající\r\nvyprchávání\r\nvyprchávat\r\nvyprodanější\r\nvyprodání\r\nvyprodaný\r\nvyprodat\r\nvyprodávání\r\nvyprodávaný\r\nvyprodávat\r\nvýprodejní\r\nvýprodejový\r\nvýprodej\r\nvyprodukování\r\nvyprodukovaný\r\nvyprodukovat\r\nvyprodukovávání\r\nvyprodukovávaný\r\nvyprodukovávat\r\nvyprofilování\r\nvyprofilovaný\r\nvyprofilovat\r\nvyprofilovávání\r\nvyprofilovávaný\r\nvyprofilovávat\r\nvyprojektování\r\nvyprojektovaný\r\nvyprojektovat\r\nvyprosení\r\nvyprosený\r\nvyprosit\r\nvyprostit\r\nvyprošení\r\nvyprošování\r\nvyprošovaný\r\nvyprošovat\r\nvyproštění\r\nvyproštěný\r\nvyprošťovací\r\nvyprošťování\r\nvyprošťovaný\r\nvyprošťovat\r\nvyprotézovat\r\nvyprovázející\r\nvyprovázenější\r\nvyprovázení\r\nvyprovázený\r\nvyprovázet\r\nvyprovodit\r\nvyprovokování\r\nvyprovokovaný\r\nvyprovokovat\r\nvyprovokovávání\r\nvyprovokovávaný\r\nvyprovokovávat\r\nvyprovozenější\r\nvyprovození\r\nvyprovozený\r\nvyprskávání\r\nvyprskávaný\r\nvyprskávat\r\nvyprsknout\r\nvyprsknutí\r\nvyprsknutý\r\nvypršení\r\nvypršený\r\nvypršet\r\nvyprýštění\r\nvyprýštěný\r\nvyprýštit\r\nvypřahání\r\nvypřahaný\r\nvypřahat\r\nvypřáhnout\r\nvypřáhnutí\r\nvypřažený\r\nvypřešívání\r\nvypřešívaný\r\nvypřešívat\r\nvypsal\r\nvypsanější\r\nvypsanější\r\nvypsání\r\nvypsán\r\nvypsaný\r\nvypsáný\r\nvypsat\r\nvyptání\r\nvyptaný\r\nvyptat\r\nvyptávající\r\nvyptávání\r\nvyptávaný\r\nvyptávat\r\nvypučení\r\nvypučený\r\nvypučet\r\nvypudit\r\nvypůjčení\r\nvypůjčený\r\nvypůjčil\r\nvypůjčíme\r\nvypůjčím\r\nvypůjčí\r\nvypůjčíš\r\nvypůjčitel\r\nvypůjčitelův\r\nvypůjčíte\r\nvypůjčit\r\nvýpůjčka\r\nvypůjčme\r\nvypůjč\r\nvýpůjční\r\nvypůjčovací\r\nvypůjčování\r\nvypůjčovaný\r\nvypůjčovat\r\nvypůjčovatelčin\r\nvypůjčovatelka\r\nvypůjčovatel\r\nvypůjčovatelův\r\nvypůjčte\r\nvypukat\r\nvypuklejší\r\nvypuklý\r\nvypuknout\r\nvypuknutí\r\nvypuknutý\r\nvypulírování\r\nvypulírovaný\r\nvypulírovat\r\nvypumpování\r\nvypumpovaný\r\nvypumpovat\r\nvypuntíkování\r\nvypuntíkovat\r\nvýpustích\r\nvýpustím\r\nvypustit\r\nvypustitelnější\r\nvýpust\r\nvýpustka\r\nvýpustní\r\nvýpustní\r\nvýpustný\r\nvypuštěnější\r\nvypuštění\r\nvypuštěný\r\nvypuzení\r\nvypuzený\r\nvypuzovací\r\nvypuzování\r\nvypuzovaný\r\nvypuzovat\r\nvyrábějící\r\nvyráběnější\r\nvyráběnější\r\nvyrábění\r\nvyráběný\r\nvyrábět\r\nvyrabování\r\nvyrabovaný\r\nvyrabovat\r\nvyrabovávání\r\nvyrabovávaný\r\nvyrabovávat\r\nvyrastrovanější\r\nvyrastrování\r\nvyrastrovaný\r\nvyrastrovat\r\nvyrašení\r\nvyrašený\r\nvyrašící\r\nvyrašit\r\nVýrava\r\nvýraz\r\nvyrazit\r\nvýrazivo\r\nvýraznější\r\nvýrazný\r\nvýrazovější\r\nvýrazový\r\nvýrazový\r\nvýrazuplnější\r\nvyrážecí\r\nvyrážečka\r\nvyrážedlo\r\nvyrážející\r\nvyražení\r\nvyrážení\r\nvyražený\r\nvyrážený\r\nvyrážet\r\nvyrážka\r\nvýražka\r\nvýražkový\r\nvyrážkový\r\nvýreček\r\nvýrečkův\r\nvyredukovat\r\nvyregulování\r\nvyregulovaný\r\nvyregulovat\r\nvyregulovávání\r\nvyregulovávaný\r\nvyregulovávat\r\nvyrejdění\r\nvyrejděný\r\nvyrejdit\r\nvyrenderovat\r\nvyrendrovat\r\nvyretušování\r\nvyretušovaný\r\nvyretušovat\r\nvyretušovávání\r\nvyretušovávaný\r\nvyretušovávat\r\nvýroba\r\nvýrobce\r\nvýrobcův\r\nvýrobek\r\nvyrobenější\r\nvyrobení\r\nvyrobený\r\nvyrobit\r\nvyrobitelnější\r\nvyrobitelný\r\nvýrobkový\r\nvýrobkyně\r\nvýrobkynin\r\nvýrobna\r\nvýrobník\r\nvýrobní\r\nvýročí\r\nvýroční\r\nvýročný\r\nvyrochňat\r\nvyrochnit\r\nvyrojení\r\nvyrojený\r\nvyrojit\r\nvýrok\r\nvýrokový\r\nvyroněnější\r\nvyronění\r\nvyroněný\r\nvýron\r\nvyronící\r\nvyronit\r\nvýronový\r\nvýrostek\r\nvýrostkův\r\nvyrostlejší\r\nvyrostlice\r\nvyrostl\r\nvyrostlý\r\nvyrostu\r\nVyroubalová\r\nVyroubal\r\nVyroubalův\r\nvýrovka\r\nVýrov\r\nvyrovnací\r\nvyrovnanější\r\nvyrovnání\r\nvyrovnaný\r\nvyrovnatelnější\r\nvyrovnatelný\r\nvyrovnat\r\nvyrovnávací\r\nvyrovnávač\r\nvyrovnávající\r\nvyrovnávání\r\nvyrovnávaný\r\nvyrovnávat\r\nvyrovnávavací\r\nvýrovský\r\nvyrozmazávanější\r\nvyrozmazávaný\r\nvyrozprávění\r\nvyrozprávět\r\nvyrozuměnější\r\nvyrozumění\r\nvyrozuměný\r\nvyrozumět\r\nvyrozumívání\r\nvyrozumívat\r\nvýr\r\nvyrubání\r\nvyrubaný\r\nvyrubat\r\nvyrubávání\r\nvyrubávaný\r\nvyrubávat\r\nvýrubnost\r\nvyrubu\r\nvyručkování\r\nvyručkovaný\r\nvyručkovat\r\nvyručkovávání\r\nvyručkovávaný\r\nvyručkovávat\r\nvyrudlejší\r\nvyrudlý\r\nvyrudnout\r\nvyrudnutí\r\nvyrukování\r\nvyrukovat\r\nvyrukovávání\r\nvyrukovávat\r\nvyrůstající\r\nvyrůstání\r\nvyrůstat\r\nvýrůstek\r\nvyrůst\r\nvyrušenější\r\nvyrušení\r\nvyrušený\r\nvyrušit\r\nvyrušitelnější\r\nvyrušitelný\r\nvyrušoval\r\nvyrušovanější\r\nvyrušování\r\nvyrušovaný\r\nvyrušovat\r\nvyrušovatelnější\r\nvyrušovatelný\r\nvyrušující\r\nvýrův\r\nvyrvanější\r\nvyrvaní\r\nvyrvání\r\nvyrvaný\r\nvyrvat\r\nvyrvávání\r\nvyrvávaný\r\nvyrvávat\r\nvyrýpat\r\nvyrýpávání\r\nvyrýpávaný\r\nvyrýpávat\r\nvyrýpnout\r\nvyrýt\r\nvyrytější\r\nvyrytí\r\nvyrytý\r\nvyrývání\r\nvyrývaný\r\nvyrývat\r\nvyrýžování\r\nvyrýžovaný\r\nvyrýžovat\r\nvyřadění\r\nvyřádění\r\nvyřaděný\r\nvyřáděný\r\nvýřad\r\nvyřadící\r\nvyřadit\r\nvyřádit\r\nvyřaditelnější\r\nvyřaditelný\r\nvyřaďovat\r\nvyřazenější\r\nvyřazení\r\nvyřazený\r\nvyřazovací\r\nvyřazovanější\r\nvyřazování\r\nvyřazovaný\r\nvyřazovat\r\nvyřazovatelnější\r\nvyřazovatelný\r\nvyřazující\r\nvyřčenější\r\nvyřčení\r\nvyřčený\r\nvyřčený\r\nvýřečnější\r\nvýřečný\r\nvyřeknu\r\nvyřešenější\r\nvyřešení\r\nvyřešený\r\nvyřešit\r\nvyřešitelnější\r\nvyřešitelný\r\nvyřezanější\r\nvyřezání\r\nvyřezaný\r\nvyřezat\r\nvyřezávací\r\nvyřezávačka\r\nvyřezávající\r\nvyřezávanější\r\nvyřezávání\r\nvyřezávaný\r\nvyřezávat\r\nvýřez\r\nvyřícení\r\nvyřícený\r\nvyříci\r\nvyříct\r\nvyřídilka\r\nvyřídit\r\nvyříhání\r\nvyříhaný\r\nvyříhat\r\nvyříkání\r\nvyříkaný\r\nvyříkat\r\nvyříkávání\r\nvyříkávaný\r\nvyříkávat\r\nvyřinout\r\nvyřinutí\r\nvyřinutý\r\nvyřítit\r\nvyřízenější\r\nvyřízení\r\nvyřízený\r\nvyříznout\r\nvyříznutější\r\nvyříznutí\r\nvyříznutý\r\nvyříznutý\r\nvyřizovanější\r\nvyřizování\r\nvyřizovaný\r\nvyřizovat\r\nvyřizující\r\nvyřknout\r\nvyřknutí\r\nvyřknutý\r\nvyřvanější\r\nvyřvání\r\nvyřvat\r\nvyřvávání\r\nvyřvávaný\r\nvyřvávat\r\nvýsada\r\nvýsadba\r\nvýsadbový\r\nvýsadek\r\nvysadit\r\nvýsadkářský\r\nvýsadkářství\r\nvýsadkář\r\nvýsadkářův\r\nvýsadka\r\nvýsadkový\r\nvýsadnější\r\nvýsadní\r\nvysání\r\nvysát\r\nvysát\r\nvysátý\r\nvysavačový\r\nvysavač\r\nvysávající\r\nvysávání\r\nvysávaný\r\nvysávat\r\nvysazenější\r\nvysázenější\r\nvysazení\r\nvysázení\r\nvysazený\r\nvysázený\r\nvysázet\r\nvysazovací\r\nvysazovanější\r\nvysazování\r\nvysazovaný\r\nvysazovat\r\nvysbírání\r\nvysbíraný\r\nvysbírat\r\nvysbírávání\r\nvysbírávat\r\nvyscípání\r\nvyscípat\r\nvysečení\r\nvysečen\r\nvysečený\r\nvýsečový\r\nvyseču\r\nvýseč\r\nvysedající\r\nvysedání\r\nvysedat\r\nvysedávající\r\nvysedávání\r\nvysedávat\r\nvysedění\r\nvyseděný\r\nvysedět\r\nvysedlejší\r\nvysedlý\r\nvysednout\r\nvysednutí\r\nvyseji\r\nvysekanější\r\nvysekání\r\nvysekaný\r\nvysekat\r\nvysekávací\r\nvysekávání\r\nvysekávaný\r\nvysekávat\r\nvýseka\r\nvýsek\r\nvysekl\r\nvyseknout\r\nvyseknutí\r\nvyseknutý\r\nvýsekový\r\nvyselektovat\r\nvysel\r\nvysemenění\r\nvysemeněný\r\nvysemenit\r\nvysení\r\nvyseparování\r\nvyseparovaný\r\nvyseparovat\r\nvysetější\r\nvysetí\r\nvyset\r\nvysetý\r\nvysetý\r\nvysévací\r\nvysévání\r\nvysévaný\r\nvysévat\r\nvýsev\r\nvýsevní\r\nvýsevný\r\nvysezení\r\nvysezen\r\nvyschlejší\r\nvyschlý\r\nvyschnl\r\nvyschnout\r\nvyschnutí\r\nvysíct\r\nvysídlencův\r\nvysídlenec\r\nvysídlenější\r\nvysídlení\r\nvysídlený\r\nvysídlit\r\nvysidlování\r\nvysídlování\r\nvysidlovaný\r\nvysídlovaný\r\nvysidlovat\r\nvysídlovat\r\nvysidlovávání\r\nvysídlovávání\r\nvysidlovávaný\r\nvysídlovávaný\r\nvysidlovávat\r\nvysídlovávat\r\nvysílací\r\nvysílačka\r\nvysílač\r\nvysílající\r\nvysílanější\r\nvysílání\r\nvysílaný\r\nvysílat\r\nvysílenější\r\nvysílení\r\nvysílený\r\nvysílit\r\nvysil\r\nvysilování\r\nvysilovaný\r\nvysilovat\r\nvysilovávání\r\nvysilovávaný\r\nvysilovávat\r\nvysilující\r\nvysíření\r\nvysířený\r\nvysířit\r\nvysiřování\r\nvysiřovaný\r\nvysiřovat\r\nvysiřovávat\r\nvysít\r\nvýskající\r\nvyskákanější\r\nvyskákání\r\nvyskákáno\r\nvyskákaný\r\nvyskákat\r\nvyskakovací\r\nvyskakování\r\nvyskakovat\r\nvyskakovávání\r\nvyskakovávaný\r\nvyskakovávat\r\nvyskakující\r\nvýskání\r\nvýskání\r\nvýskat\r\nvýskávat\r\nvýskavý\r\nvyskládanější\r\nvyskládání\r\nvyskládaný\r\nvyskládat\r\nvyskládávání\r\nvyskládávaný\r\nvyskládávat\r\nvyskladnění\r\nvyskladněný\r\nvyskladnit\r\nvyskladňování\r\nvyskladňovaný\r\nvyskladňovat\r\nvýskledek\r\nvysklení\r\nvysklený\r\nvysklít\r\nvysklívání\r\nvysklívaný\r\nvysklívat\r\nvyskloňování\r\nvyskloňovaný\r\nvyskloňovat\r\nvýsknout\r\nvýsknutí\r\nvyskočení\r\nVyskočilová\r\nVyskočil\r\nVyskočilův\r\nvyskočit\r\nvýskočnější\r\nvýskočný\r\nvýskok\r\nvýskot\r\nvyskytenský\r\nvýskyt\r\nvýskytiště\r\nVyskytná\r\nvyskytnout\r\nvyskytnutí\r\nvyskytování\r\nvyskytovat\r\nvyskytovatelčin\r\nvyskytovatelka\r\nvyskytovávání\r\nvyskytovávat\r\nvýskytový\r\nvyskytující\r\nvyslal\r\nvyslancův\r\nvyslanecký\r\nvyslanectví\r\nvyslanec\r\nvyslanější\r\nvyslání\r\nvyslankyně\r\nvyslankynin\r\nvyslaný\r\nvyslat\r\nvýsledek\r\nvýsledkový\r\nvýslednice\r\nvýsledný\r\nvysledování\r\nvysledovaný\r\nvysledovat\r\nvysledovatelnější\r\nvysledovatelný\r\nvysledovávání\r\nvysledovávaný\r\nvysledovávat\r\nvýsledovka\r\nvýslech\r\nvyslechnout\r\nvyslechnutější\r\nvyslechnutí\r\nvyslechnutý\r\nvyslechnutý\r\nvýslechový\r\nvyslepený\r\nvyslídění\r\nvyslíděný\r\nvyslídit\r\nvysloužení\r\nvysloužený\r\nvysloužilcův\r\nvysloužilec\r\nVysloužilová\r\nVysloužil\r\nVysloužilův\r\nvysloužilý\r\nvysloužit\r\nvyslovenější\r\nvyslovení\r\nvyslovený\r\nvyslovit\r\nvyslovitelnější\r\nvyslovitelný\r\nvýslovnější\r\nvýslovnostní\r\nvýslovný\r\nvyslovovanější\r\nvyslovování\r\nvyslovovaný\r\nvyslovovat\r\nvyslovující\r\nvýsluha\r\nvysluhování\r\nvysluhovat\r\nvýsluhový\r\nvýsluní\r\nvýslunnější\r\nvýslunný\r\nvýslužba\r\nvýslužka\r\nvyslýchající\r\nvyslýchání\r\nvyslýchaný\r\nvyslýchat\r\nvyslýchávání\r\nvyslýchávaný\r\nvyslýchávat\r\nvyslyšenější\r\nvyslyšení\r\nvyslyšený\r\nvyslyšet\r\nvyslyšitelný\r\nvysmahnout\r\nvysmání\r\nvysmát\r\nvysmažit\r\nvýsměch\r\nvysmejčení\r\nvysmejčený\r\nvysmejčit\r\nvysmekávání\r\nvysmekávaný\r\nvysmekávat\r\nvysmeknout\r\nvysmeknutí\r\nvysmeknutý\r\nvysmekovací\r\nvýsměšnější\r\nvýsměšný\r\nvysmívající\r\nvysmívání\r\nvysmívaný\r\nvysmívat\r\nvysmolení\r\nvysmolený\r\nvysmolit\r\nvysmrkání\r\nvysmrkaný\r\nvysmrkat\r\nvysmrkávání\r\nvysmrkávaný\r\nvysmrkávat\r\nvysmýčení\r\nvysmýčený\r\nvysmýčit\r\nvysmyknout\r\nvysmýknout\r\nvysmyknutí\r\nvysmýknutí\r\nvysněnější\r\nvysnění\r\nvysněný\r\nvysněženější\r\nvysněžení\r\nvysněžený\r\nvysněžit\r\nvysnít\r\nvysnívání\r\nvysnívaný\r\nvysnívat\r\nvysocekalorický\r\nvysocelegovaný\r\nvysocký\r\nvysočanský\r\nVysočany\r\nvysočina\r\nvysochání\r\nvysochaný\r\nvysochat\r\nvysoka\r\nvysokánský\r\nVysoká\r\nVysoké\r\nvysokobřezí\r\nvysokoenergetický\r\nvysokofrekvenční\r\nvysokohorský\r\nvysokohustotní\r\nvysokoindexový\r\nvysokokalorický\r\nvysokokapacitní\r\nvysokokmen\r\nvysokolegovaný\r\nvysokomolekulární\r\nvysokomyslný\r\nVysokomýtsko\r\nvysokomýtský\r\nvysokonamáhaný\r\nvysokonapěťový\r\nvysokonohý\r\nvysokooktanový\r\nvysokootáčkový\r\nvysokopecní\r\nvysokopevnostní\r\nvysokoprocentní\r\nvysokorychlostní\r\nvysokoškolačka\r\nvysokoškolák\r\nvysokoškolákův\r\nvysokoškolský\r\nvysokotepelný\r\nvysokoteplotní\r\nvysokotlakový\r\nvysokotlaký\r\nvysokoúčinný\r\nvysokouhlíkový\r\nvysokoúrovňový\r\nVysokov\r\nvysokovský\r\nvysokovýkonný\r\nvysokozdvižný\r\nvysoký\r\nvysolenější\r\nvysolení\r\nvysolený\r\nvysolit\r\nvysolování\r\nvysolovaný\r\nvysolovat\r\nvysomrování\r\nvysomrovaný\r\nvysomrovat\r\nvysondování\r\nvysondovaný\r\nvysondovat\r\nvysondovávání\r\nvysondovávaný\r\nvysondovávat\r\nvysosání\r\nvysosaný\r\nvysosat\r\nvýsost\r\nvýsostnější\r\nvýsostný\r\nvysoudit\r\nvysoukání\r\nvysoukaný\r\nvysoukat\r\nvysoukávání\r\nvysoukávaný\r\nvysoukávat\r\nvysoupeření\r\nvysoupeřený\r\nvysoupeřit\r\nvysoustruhování\r\nvysoustruhovaný\r\nvysoustruhovat\r\nvysoustružení\r\nvysoustružený\r\nvysoustružit\r\nvysoušecí\r\nvysoušeč\r\nvysoušedlo\r\nvysoušející\r\nvysoušení\r\nvysoušený\r\nvysoušet\r\nvysoutěžení\r\nvysoutěžený\r\nvysoutěžit\r\nvysouvací\r\nvysouvající\r\nvysouvání\r\nvysouvaný\r\nvysouvatelnější\r\nvysouvat\r\nvysouzenější\r\nvysouzení\r\nvysouzený\r\nvyspádovaný\r\nvyspádovat\r\nvyspalejší\r\nvyspalý\r\nvyspanější\r\nvyspání\r\nvyspaný\r\nvyspárovaný\r\nvyspárovat\r\nvyspat\r\nvyspávání\r\nvyspávat\r\nvýspa\r\nvyspekulovanější\r\nvyspekulování\r\nvyspekulovaný\r\nvyspekulovat\r\nvyspělejší\r\nvyspělý\r\nvyspění\r\nvyspět\r\nvyspílání\r\nvyspílaný\r\nvyspílat\r\nvyspinkat\r\nvyspívání\r\nvyspívat\r\nvyspravení\r\nvyspravený\r\nvyspravit\r\nvysprávka\r\nvyspravování\r\nvyspravovat\r\nvysprchování\r\nvysprchovaný\r\nvysprchovat\r\nvysprchovávání\r\nvysprchovávaný\r\nvysprchovávat\r\nvyspurtování\r\nvyspurtovat\r\nvysrání\r\nvysrat\r\nvysrážení\r\nvysrážený\r\nvysrážet\r\nvystačení\r\nvystačit\r\nvystačování\r\nvystačovat\r\nvystačující\r\nvystál\r\nvystaní\r\nvystání\r\nvystarání\r\nvystarán\r\nvystaraný\r\nvystarat\r\nvystartování\r\nvystartovaný\r\nvystartovat\r\nvystát\r\nvystátý\r\nvystávající\r\nvystávání\r\nvystávat\r\nvýstava\r\nvýstavba\r\nvýstavbový\r\nvýstavce\r\nvýstavcův\r\nvystavenější\r\nvystavení\r\nvystavění\r\nvystavený\r\nvystavěný\r\nvystavět\r\nvýstav\r\nvýstaviště\r\nvystavit\r\nvystavitelný\r\nvystavitel\r\nvystavitelův\r\nvýstavka\r\nvystávkování\r\nvystávkovat\r\nvýstavnější\r\nvýstavnictví\r\nvýstavní\r\nvýstavný\r\nvystavovací\r\nvystavovanější\r\nvystavování\r\nvystavovaný\r\nvystavovat\r\nvystavovatelčin\r\nvystavovatelka\r\nvystavovatelský\r\nvystavovatel\r\nvystavovatelův\r\nvystavující\r\nvystěhovalcův\r\nvystěhovalecký\r\nvystěhovalectví\r\nvystěhovalec\r\nvystěhovalý\r\nvystěhování\r\nvystěhovaný\r\nvystěhovat\r\nvystěhovávání\r\nvystěhovávaný\r\nvystěhovávat\r\nvýstelka\r\nvystelu\r\nvysterilizovat\r\nvystěžování\r\nvystěžovat\r\nvystihnout\r\nvystihnutí\r\nvystihovanější\r\nvystihování\r\nvystihovaný\r\nvystihovat\r\nvystihující\r\nvystínování\r\nvystínovaný\r\nvystínovat\r\nvystiženější\r\nvystižení\r\nvystižený\r\nvystižitelnější\r\nvystižnější\r\nvýstižnější\r\nvýstižný\r\nvystlal\r\nvystlanější\r\nvystlání\r\nvystlaný\r\nvystlat\r\nvystojím\r\nvystonal\r\nvystonání\r\nvystonat\r\nvystonávání\r\nvystonávat\r\nvystonejme\r\nvystonej\r\nvystonejte\r\nvystopování\r\nvystopovaný\r\nvystopovat\r\nvystopovatelný\r\nvystoupání\r\nvystoupat\r\nvystoupavý\r\nvystoupení\r\nvystoupený\r\nvystoupit\r\nvystouplejší\r\nvystouplý\r\nvystoupnout\r\nvystoupnutí\r\nvýstraha\r\nvystrašenější\r\nvystrašení\r\nvystrašený\r\nvystrašit\r\nvýstražnější\r\nvýstražný\r\nvystrčení\r\nvystrčený\r\nVystrčilová\r\nVystrčil\r\nVystrčilův\r\nvystrčit\r\nvystresování\r\nvystresovaný\r\nvystresovat\r\nvystresovávat\r\nvystrkanější\r\nvystrkání\r\nvystrkaný\r\nvystrkat\r\nvystrkávání\r\nvystrkávaný\r\nvystrkávat\r\nvystrkování\r\nvystrkovaný\r\nvystrkovat\r\nVystrkov\r\nvystrkov\r\nvystrkovský\r\nvystrnadění\r\nvystrnaděný\r\nvystrnadit\r\nvystrojení\r\nvystrojený\r\nvystrojit\r\nvýstrojní\r\nvystrojování\r\nvystrojovaný\r\nvystrojovat\r\nvýstroj\r\nvýstroj\r\nvystružovací\r\nvystružování\r\nvystružovaný\r\nvystružovat\r\nvystředění\r\nvystředěný\r\nvystředit\r\nvýstřednější\r\nvýstředník\r\nvýstředníkový\r\nvýstřední\r\nvýstředný\r\nvýstřelek\r\nvystřelenější\r\nvystřelení\r\nvystřelený\r\nvýstřel\r\nvystřelit\r\nvystřelovací\r\nvystřelování\r\nvystřelovaný\r\nvystřelovat\r\nvystřelovávání\r\nvystřelovávaný\r\nvystřelovávat\r\nvystřelující\r\nvystřenější\r\nvystření\r\nvystřený\r\nvystřídání\r\nvystřídaný\r\nvystřídat\r\nvystřídávaný\r\nvystřihání\r\nvystříhání\r\nvystřihaný\r\nvystříhaný\r\nvystřihat\r\nvystříhat\r\nvystřihávání\r\nvystříhávání\r\nvystřihávaný\r\nvystříhávaný\r\nvystřihávat\r\nvystříhávat\r\nvýstřih\r\nvystřihnout\r\nvystřihnutí\r\nvystřihování\r\nvystřihovánka\r\nvystřihovaný\r\nvystřihovat\r\nvystříkání\r\nvystříkaný\r\nvystříkat\r\nvystříkávání\r\nvystříkávaný\r\nvystříkávat\r\nvýstřik\r\nvystřiknout\r\nvystříknout\r\nvystřiknutí\r\nvystříknutí\r\nvystřiknutý\r\nvystříknutý\r\nvystřikovací\r\nvystřikování\r\nvystřikovaný\r\nvystřikovat\r\nvystřikovávání\r\nvystřikovávaný\r\nvystřikovávat\r\nvýstřikový\r\nvystřikující\r\nvystřílení\r\nvystřílený\r\nvystřílet\r\nvystřít\r\nvystřízlivění\r\nvystřízlivěný\r\nvystřízlivět\r\nvýstřižek\r\nvystřižený\r\nvýstřižkový\r\nvystudovanější\r\nvystudování\r\nvystudovaný\r\nvystudovat\r\nvystudovávající\r\nvystudovávání\r\nvystudovávaný\r\nvystudovávat\r\nvystudovávavanější\r\nvystudovávavání\r\nvystudovávavaný\r\nvystudující\r\nvystůjme\r\nvystůj\r\nvystůjte\r\nvystůňu\r\nvýstupek\r\nvýstup\r\nvýstupní\r\nvystupňování\r\nvystupňovaný\r\nvystupňovat\r\nvýstupný\r\nvystupování\r\nvystupováno\r\nvystupovat\r\nvýstupový\r\nvystupující\r\nvýstužný\r\nvýstužový\r\nvystydlejší\r\nvystydlý\r\nvystydnout\r\nvystydnutí\r\nvystýlající\r\nvystýlání\r\nvystýlaný\r\nvystýlat\r\nvystýlka\r\nvysublimování\r\nvysublimovaný\r\nvysublimovat\r\nvysunout\r\nvysunování\r\nvysunovaný\r\nvysunovat\r\nvysunovatelnější\r\nvysunující\r\nvysunutelnější\r\nvysunutí\r\nvysunutý\r\nvysunutý\r\nvysupění\r\nvysupěný\r\nvysupět\r\nvysušenější\r\nvysušení\r\nvysušený\r\nVysušilová\r\nVysušil\r\nVysušilův\r\nvysušit\r\nvýsušnost\r\nvysušování\r\nvysušovaný\r\nvysušovat\r\nvysutý\r\nvýsuvka\r\nvýsuvný\r\nvysuzování\r\nvysuzovaný\r\nvysuzovat\r\nvysvátkovaný\r\nvysvěcení\r\nvysvěcený\r\nvysvěcovat\r\nvysvědčení\r\nvysvětit\r\nvysvětlení\r\nvysvětlený\r\nvysvětlit\r\nvysvětlitelnější\r\nvysvětlitelný\r\nvysvětlivka\r\nvysvětlivkový\r\nvysvětlovací\r\nvysvětlovací\r\nvysvětlování\r\nvysvětlovaný\r\nvysvětlovat\r\nvysvětlovávání\r\nvysvětlovávaný\r\nvysvětlovávat\r\nvysvětlující\r\nvysvícení\r\nvysvícený\r\nvysvítání\r\nvysvítat\r\nvysvítit\r\nvysvitnout\r\nvysvitnutí\r\nvysvléct\r\nvysvlečení\r\nvysvlečený\r\nvysvlékání\r\nvysvlékaný\r\nvysvlékat\r\nvysvlékl\r\nvysvléknout\r\nvysvléknutí\r\nvysvléknutý\r\nvysvlíknout\r\nvysvobodit\r\nvysvoboditelčin\r\nvysvoboditelka\r\nvysvoboditel\r\nvysvoboditelův\r\nvysvobození\r\nvysvobozený\r\nvysvobozovat\r\nvysvobozující\r\nvysychající\r\nvysychání\r\nvysychat\r\nvysýchat\r\nvysychavý\r\nvysýchavý\r\nvysyknout\r\nvysyknutí\r\nvysyknutý\r\nvysypající\r\nvysypanější\r\nvysypání\r\nvysýpání\r\nvysypaný\r\nvysýpaný\r\nvysypat\r\nvysýpat\r\nvysypávající\r\nvysypávanější\r\nvysypávání\r\nvysypávaný\r\nvysypávat\r\nvýsypka\r\nvýsypkový\r\nvýsypný\r\nvyšachování\r\nvyšachovaný\r\nvyšachovat\r\nvyšachovávání\r\nvyšachovávaný\r\nvyšachovávat\r\nvyšamotovat\r\nvyšamponování\r\nvyšamponovaný\r\nvyšamponovat\r\nVyšanský\r\nVyšata\r\nVyšatová\r\nVyšatův\r\nvýš\r\nvyšedlý\r\nvyšednutí\r\nvýše\r\nVyšehrad\r\nvyšehradský\r\nvyšel\r\nvýšeměďnatý\r\nvýše\r\nvyšeptalejší\r\nvyšeptalý\r\nvyšetření\r\nvyšetřený\r\nvyšetřit\r\nvyšetřovací\r\nvyšetřovančin\r\nvyšetřovanější\r\nvyšetřování\r\nvyšetřovanka\r\nvyšetřovaný\r\nvyšetřovat\r\nvyšetřovatelčin\r\nvyšetřovatelka\r\nvyšetřovatel\r\nvyšetřovatelův\r\nvyšetřovávat\r\nvyšetřovna\r\nvyšetřující\r\nvýšeuvedený\r\nvýše\r\nvyšifrování\r\nvyšifrovaný\r\nvyšifrovat\r\nvyšilující\r\nvýšina\r\nvýšinka\r\nvýšinný\r\nvyšinout\r\nvyšinutější\r\nvyšinutí\r\nvyšinutý\r\nvyšisovaný\r\nvyšišlání\r\nvyšišlaný\r\nvyšišlat\r\nvyšít\r\nvyšitější\r\nvyšití\r\nvyšitý\r\nvyšitý\r\nvyšívací\r\nvyšívaččin\r\nvyšívačka\r\nvyšívající\r\nvyšívanější\r\nvyšívání\r\nvyšívaný\r\nvyšívat\r\nvýšivka\r\nvýškařčin\r\nvýškařka\r\nvýškařský\r\nvýškař\r\nvýškařův\r\nvýška\r\nvyškemrání\r\nvyškemraný\r\nvyškemrat\r\nvyšklebenější\r\nvyškolenější\r\nvyškolení\r\nvyškolený\r\nvyškolit\r\nvyškolkování\r\nvyškolování\r\nvyškolovat\r\nvýškoměr\r\nvýškopis\r\nvyškovecký\r\nVyškovec\r\nvýškovka\r\nVyškov\r\nVýškov\r\nvyškovsko\r\nvyškovský\r\nvýškovský\r\nvýškový\r\nvýškozapisovatel\r\nvýškozapisovatelův\r\nvyškrabající\r\nvyškrábající\r\nvyškrabanější\r\nvyškrábanější\r\nvyškrabání\r\nvyškrábání\r\nvyškrabaný\r\nvyškrábaný\r\nvyškrabat\r\nvyškrábat\r\nvyškrabávání\r\nvyškrabávaný\r\nvyškrabávat\r\nvýškrabek\r\nvýškrab\r\nvýškrabka\r\nvyškrábnout\r\nvyškrábnutější\r\nvyškrábnutí\r\nvyškrábnutý\r\nvyškrábnutý\r\nvyškrabování\r\nvyškrabovaný\r\nvyškrabovat\r\nvyškrtání\r\nvyškrtaný\r\nvyškrtat\r\nvyškrtávání\r\nvyškrtávaný\r\nvyškrtávat\r\nvyškrtnout\r\nvyškrtnutí\r\nvyškrtnutý\r\nvyškubání\r\nvyškubaný\r\nvyškubat\r\nvyškubávání\r\nvyškubávaný\r\nvyškubávat\r\nvyškubnout\r\nvyškubnutí\r\nvyškubnutý\r\nvyškubování\r\nvyškubu\r\nvyškvařený\r\nvyškvařit\r\nvyškvařovaný\r\nvyškvařovat\r\nvyšlapání\r\nvyšlapaný\r\nvyšlapat\r\nvyšlapávání\r\nvyšlapávaný\r\nvyšlapávat\r\nvýšlap\r\nvyšlápnout\r\nvyšlápnutí\r\nvyšlápnutý\r\nvyšlapování\r\nvyšlapovat\r\nvyšlehání\r\nvyšlehaný\r\nvyšlehat\r\nvyšlehávání\r\nvyšlehávaný\r\nvyšlehávat\r\nvýšleh\r\nvyšlehnout\r\nvyšlehnutí\r\nvyšlehnutý\r\nvyšlehovat\r\nvyšlehující\r\nvyšlechtění\r\nvyšlechtěný\r\nvyšlechtit\r\nvyšlejší\r\nvyšlu\r\nvyšlý\r\nvyšmátrání\r\nvyšmátraný\r\nvyšmátrat\r\nvyšmejdění\r\nvyšmejděný\r\nvyšmejdit\r\nvyšmelení\r\nvyšmelený\r\nvyšmelit\r\nvyšňoření\r\nvyšňořený\r\nvyšňořit\r\nVyšný\r\nVyšohlídová\r\nVyšohlíd\r\nVyšohlídův\r\nvyšoupnout\r\nvyšoupnutí\r\nvyšoupnutý\r\nVýšovice\r\nvýšovický\r\nvyšpekulování\r\nvyšpekulovaný\r\nvyšpekulovat\r\nvyšperkování\r\nvyšperkovaný\r\nvyšperkovat\r\nvyšperkovávání\r\nvyšperkovávaný\r\nvyšperkovávat\r\nvyšplhání\r\nvyšplhaný\r\nvyšplhat\r\nvyšplhávání\r\nvyšplhávat\r\nvyšplíchat\r\nvyšplíchávání\r\nvyšplíchávaný\r\nvyšplíchávat\r\nvyšplíchnout\r\nvyšplouchání\r\nvyšplouchaný\r\nvyšplouchat\r\nvyšplouchnout\r\nvyšponování\r\nvyšponovaný\r\nvyšponovat\r\nvyšpulení\r\nvyšpulený\r\nvyšpulit\r\nvyšrafování\r\nvyšrafovaný\r\nvyšrafovat\r\nvyšroubování\r\nvyšroubovaný\r\nvyšroubovat\r\nvyšroubovávání\r\nvyšroubovávaný\r\nvyšroubovávat\r\nvyšší\r\nvyštafírování\r\nvyštafírovaný\r\nvyštafírovat\r\nvyšťárání\r\nvyšťáraný\r\nvyšťárat\r\nvyštěbetání\r\nvyštěbetat\r\nvyštěkávat\r\nvyštěknout\r\nvyštěknutí\r\nvyštepovat\r\nvyštípání\r\nvyštípaný\r\nvyštípat\r\nvyštípávání\r\nvyštípávaný\r\nvyštípávat\r\nvyštípnout\r\nvyštípnutí\r\nvyštípnutý\r\nvyštipování\r\nvyštipovaný\r\nvyštipovat\r\nvyšťouchání\r\nvyšťouchaný\r\nvyšťouchat\r\nvyšťouchávání\r\nvyšťouchávaný\r\nvyšťouchávat\r\nvyšťouchnout\r\nvyšťouchnutí\r\nvyšťouchnutý\r\nvyšťourání\r\nvyšťouraný\r\nvyšťourat\r\nvyštrachání\r\nvyštrachaný\r\nvyštrachat\r\nvyštvanější\r\nvyštvání\r\nvyštvaný\r\nvyštvat\r\nvyštvávání\r\nvyštvávaný\r\nvyštvávat\r\nvyšukání\r\nvyšukaný\r\nvyšukat\r\nvyšumění\r\nvyšuměný\r\nvyšumět\r\nvyšvařený\r\nvyšvihnout\r\nvyšvihnutí\r\nvyšvihnutý\r\nvyšvindlování\r\nvyšvindlovaný\r\nvyšvindlovat\r\nvytáčející\r\nvytáčení\r\nvytáčený\r\nvytáčet\r\nvytáčivý\r\nvytáčka\r\nvytáčový\r\nvytahanější\r\nvytahání\r\nvytahaný\r\nvytahat\r\nvýtah\r\nvytáhlejší\r\nvytáhlý\r\nvytáhnout\r\nvytáhnutí\r\nvytahovací\r\nvytahovačný\r\nvytahovanější\r\nvytahování\r\nvytahovaný\r\nvytahovat\r\nvytahovávání\r\nvytahovávaný\r\nvytahovávat\r\nvýtahový\r\nvytahující\r\nvyťal\r\nvytancování\r\nvytancovaný\r\nvytancovat\r\nvytancovávání\r\nvytancovávaný\r\nvytancovávat\r\nvytančení\r\nvytančený\r\nvytančit\r\nvytání\r\nvytanout\r\nvytanutí\r\nvytaný\r\nvytápěcí\r\nvytápějící\r\nvytápěnější\r\nvytápěnější\r\nvytápění\r\nvytápěný\r\nvytápět\r\nvytapetování\r\nvytapetovaný\r\nvytapetovat\r\nvytapetovávání\r\nvytapetovávaný\r\nvytapetovávat\r\nvyťapkání\r\nvyťapkaný\r\nvyťapkat\r\nvytasení\r\nvytasený\r\nvytasit\r\nvytát\r\nvyťat\r\nvytátý\r\nvyťatý\r\nvytavení\r\nvytavený\r\nvytavit\r\nvyťav\r\nvytavování\r\nvytavovaný\r\nvytavovat\r\nvýtažek\r\nvytaženější\r\nvytažení\r\nvytažený\r\nvytažitelnější\r\nvytažitelný\r\nvýtažkový\r\nvýt\r\nvytčení\r\nvytčený\r\nvytéct\r\nvytečení\r\nvytečkovanější\r\nvytečkování\r\nvytečkovaný\r\nvytečkovat\r\nvytečkovávání\r\nvytečkovávaný\r\nvytečkovávat\r\nvýtečník\r\nvýtečníkův\r\nvýtečný\r\nvytékající\r\nvytékání\r\nvytěkání\r\nvytěkaný\r\nvytékat\r\nvytěkat\r\nvytěkávat\r\nvyteklejší\r\nvyteklý\r\nvytelefonovanější\r\nvytelefonování\r\nvytelefonovaný\r\nvytelefonovat\r\nvytepanější\r\nvytepání\r\nvytepaný\r\nvytepat\r\nvytepávání\r\nvytepávaný\r\nvytepávat\r\nvyteplenější\r\nvyteplení\r\nvyteplený\r\nvyteplit\r\nvytepu\r\nvýtěr\r\nvýtěrový\r\nvytesanější\r\nvytesání\r\nvytesaný\r\nvytesat\r\nvytesávání\r\nvytesávaný\r\nvytesávat\r\nvytěsnění\r\nvytěsněný\r\nvytěsnit\r\nvytěsňování\r\nvytěsňovaný\r\nvytěsňovat\r\nvytěsňovávat\r\nvytěsňující\r\nvytětí\r\nvytetování\r\nvytetovaný\r\nvytetovat\r\nvýtěžek\r\nvytěžení\r\nvytěžený\r\nvytěžit\r\nvytěžitelný\r\nvýtěžnost\r\nvýtěžný\r\nvytěžovací\r\nvytěžování\r\nvytěžovaný\r\nvytěžovat\r\nvytěžující\r\nvytínat\r\nvytipnout\r\nvytipnutí\r\nvytipnutý\r\nvytipovanější\r\nvytipování\r\nvytipovaný\r\nvytipovat\r\nvytipovávání\r\nvytipovávaný\r\nvytipovávat\r\nvytíraní\r\nvytírání\r\nvytíraný\r\nvytírat\r\nvytí\r\nVytiska\r\nvýtisk\r\nvytisknout\r\nvytisknutí\r\nvytisknutý\r\nvytisknutý\r\nVytisková\r\nVytiskův\r\nvytí\r\nvytištění\r\nvytištěný\r\nvytít\r\nvytíženější\r\nvytížení\r\nvytížený\r\nvytížit\r\nvytkávání\r\nvýtka\r\nvytknout\r\nvytknutí\r\nvytknutý\r\nvytknutý\r\nvýtlaček\r\nvytlačení\r\nvytlačený\r\nvytlačit\r\nvýtlačný\r\nvytlačovací\r\nvytlačovanější\r\nvytlačování\r\nvytlačovaný\r\nvytlačovat\r\nvytlačující\r\nvytlachání\r\nvytlachaný\r\nvytlachat\r\nvýtlak\r\nvytleskání\r\nvytleskaný\r\nvytleskat\r\nvytleskávat\r\nvytlouct\r\nvytloukající\r\nvytloukanější\r\nvytloukání\r\nvytloukaný\r\nvytloukat\r\nvytloukávanější\r\nvytloukávání\r\nvytloukávaný\r\nvytloukávat\r\nvytlučenější\r\nvytlučení\r\nvytlučený\r\nvytmavení\r\nvytmavený\r\nvytmavit\r\nvytmelený\r\nvytmelit\r\nvytmelování\r\nvytmelovaný\r\nvytmelovat\r\nvytmelovávání\r\nvytmelovávaný\r\nvytmelovávat\r\nvytnout\r\nvytnu\r\nvytnutí\r\nvytočení\r\nvytočený\r\nvytočit\r\nvýtok\r\nvýtokový\r\nvytopenější\r\nvytopení\r\nvytopený\r\nvytopit\r\nvytopitelnější\r\nvytopitelný\r\nvýtopna\r\nvýtopový\r\nvytouženější\r\nvytoužení\r\nvytoužený\r\nvytoužit\r\nvytrácející\r\nvytracení\r\nvytrácení\r\nvytracený\r\nvytrácet\r\nvytrasování\r\nvytrasovaný\r\nvytrasovat\r\nvýtrata\r\nvytratit\r\nvytrávení\r\nvytrávený\r\nvytrávit\r\nvytra\r\nvytrénování\r\nvytrénovaný\r\nvytrénovat\r\nvytrestání\r\nvytrestaný\r\nvytrestat\r\nvytrhající\r\nvytrhanější\r\nvytrhání\r\nvytrhaný\r\nvytrhat\r\nvytrhávací\r\nvytrhávající\r\nvytrhávanější\r\nvytrhávání\r\nvytrhávaný\r\nvytrhávat\r\nvytrhnout\r\nvytrhnutější\r\nvytrhnutí\r\nvytrhnutý\r\nvytrhování\r\nvytrhovaný\r\nvytrhovat\r\nvytroubení\r\nvytroubený\r\nvytroubit\r\nvytrousit\r\nvytroušenější\r\nvytroušení\r\nvytroušený\r\nvytrpění\r\nvytrpěný\r\nvytrpět\r\nvytrubování\r\nvytrubovaný\r\nvytrubovat\r\nvytrubovávání\r\nvytrubovávaný\r\nvytrubovávat\r\nvytrucování\r\nvytrucovat\r\nvýtrus\r\nvýtrusnice\r\nvýtrusný\r\nvýtrusový\r\nvytrušování\r\nvytrušovaný\r\nvytrušovat\r\nvytrvalcův\r\nvytrvalecký\r\nvytrvalec\r\nvytrvalečtější\r\nvytrvalejší\r\nvytrvalkyně\r\nvytrvalkynin\r\nvytrvalostní\r\nvytrvalý\r\nvytrvání\r\nvytrvat\r\nvytrvávající\r\nvytrvávání\r\nvytrvávat\r\nvytryskávat\r\nvýtrysk\r\nvytrysknout\r\nvytrysknutí\r\nvytrysknutý\r\nvytryskovat\r\nvytrženější\r\nvytržení\r\nvytržený\r\nvýtržnice\r\nvýtržnický\r\nvýtržnictví\r\nvýtržník\r\nvýtržníkův\r\nvýtržnost\r\nvytřásací\r\nvytřásadlo\r\nvytřásání\r\nvytřásaný\r\nvytřásat\r\nvytřásávání\r\nvytřásávat\r\nvytřásl\r\nvytřást\r\nvytřenější\r\nvytření\r\nvytřený\r\nvytřepání\r\nvytřepaný\r\nvytřepat\r\nvytřepávání\r\nvytřepávaný\r\nvytřepávat\r\nvytřesení\r\nvytřesen\r\nvytřesený\r\nvytřesu\r\nvytřeštěnější\r\nvytřeštění\r\nvytřeštěný\r\nvytřeštit\r\nvytříbenější\r\nvytříbení\r\nvytříbený\r\nvytříbit\r\nvytříbitelnější\r\nvytříbitelný\r\nvytřídění\r\nvytříděný\r\nvytřídit\r\nvytřiďování\r\nvytřiďovaný\r\nvytřiďovat\r\nvytřískání\r\nvytřískaný\r\nvytřískat\r\nvytřít\r\nvyťukání\r\nvyťukaný\r\nvyťukat\r\nvyťukávání\r\nvyťukávaný\r\nvyťukávat\r\nvytunelování\r\nvytunelovaný\r\nvytunelovat\r\nvytunelovávání\r\nvytunelovávaný\r\nvytunelovávat\r\nvytušení\r\nvytušený\r\nvytušit\r\nvytušování\r\nvytušovaný\r\nvytušovat\r\nvýtvarnější\r\nvýtvarnice\r\nvýtvarnický\r\nvýtvarnictví\r\nvýtvarničin\r\nvýtvarník\r\nvýtvarníkův\r\nvýtvarný\r\nvytvarování\r\nvytvarovaný\r\nvytvarovat\r\nvytvářecí\r\nvytvářející\r\nvytvářenější\r\nvytváření\r\nvytvářený\r\nvytvářet\r\nvýtvor\r\nvytvořenější\r\nvytvoření\r\nvytvoření\r\nvytvořený\r\nvytvořený\r\nvytvořit\r\nvytvořující\r\nvytvrdit\r\nvytvrzení\r\nvytvrzený\r\nvytvrzování\r\nvytvrzovaný\r\nvytvrzovat\r\nvytvrzující\r\nvytýčení\r\nvytyčení\r\nvytyčený\r\nvytyčit\r\nvýtyčka\r\nvytyčovací\r\nvytyčování\r\nvytyčovaný\r\nvytyčovat\r\nvytyčující\r\nvytýkací\r\nvytýkající\r\nvytýkanější\r\nvytýkání\r\nvytýkaný\r\nvytýkat\r\nvytypovanější\r\nvytypovaný\r\nvytypovat\r\nvyučenější\r\nvyučení\r\nvyučený\r\nvyučit\r\nvýuční\r\nvyučovací\r\nvyučovanější\r\nvyučování\r\nvyučovaný\r\nvyučovat\r\nvyúčtovací\r\nvyúčtovanější\r\nvyúčtování\r\nvyúčtovaný\r\nvyúčtovat\r\nvyúčtovávání\r\nvyúčtovávaný\r\nvyúčtovávat\r\nvyučující\r\nvyudit\r\nvyuhlený\r\nvýuka\r\nvýukový\r\nvyumělkovaný\r\nvyústění\r\nvyústěný\r\nvyústit\r\nvyústky\r\nvyúsťování\r\nvyúsťovaný\r\nvyúsťovat\r\nvyúsťující\r\nvyuzenější\r\nvyuzení\r\nvyuzený\r\nvyužít\r\nvyužitější\r\nvyužitelnější\r\nvyužitelný\r\nvyužití\r\nvyužitkování\r\nvyužitkovaný\r\nvyužitkovat\r\nvyužitkovávání\r\nvyužitkovávaný\r\nvyužitkovávat\r\nvyužitý\r\nvyužitý\r\nvyužívající\r\nvyužívající\r\nvyužívanější\r\nvyužívání\r\nvyužívaný\r\nvyuživatelnější\r\nvyuživatelný\r\nvyužívat\r\nvyvádějící\r\nvyváděnější\r\nvyvádění\r\nvyváděný\r\nvyvádět\r\nvyvádivější\r\nvyvádivý\r\nvyválcování\r\nvyválcovaný\r\nvyválcovat\r\nvyválcovávání\r\nvyválcovávaný\r\nvyválcovávat\r\nvyválčení\r\nvyválčený\r\nvyválčit\r\nvývalek\r\nvyvalenější\r\nvyválenější\r\nvyvalení\r\nvyválení\r\nvyvalený\r\nvyválený\r\nvyválet\r\nvyvalit\r\nvyvalovací\r\nvyvalování\r\nvyvalovaný\r\nvyvalovat\r\nvyvalující\r\nvyvání\r\nvyvanout\r\nvyvanulý\r\nvyvanutí\r\nvyvanutý\r\nvývar\r\nvyvarování\r\nvyvarovaný\r\nvyvarovat\r\nvyvářecí\r\nvyvaření\r\nvyváření\r\nvyvařený\r\nvyvářený\r\nvyvářet\r\nvývařiště\r\nvyvařit\r\nvyvářka\r\nvyvařovací\r\nvyvařování\r\nvyvařovaný\r\nvyvařovat\r\nvyvařovávat\r\nvyvařovna\r\nvývařovna\r\nvyvát\r\nvyvátý\r\nvyvázanější\r\nvyvázání\r\nvyvázaný\r\nvyvázat\r\nvyvázávanější\r\nvyvázávání\r\nvyvázávaný\r\nvyvázávat\r\nvyváznout\r\nvyváznutí\r\nvyvazovací\r\nvyvazovanější\r\nvyvazování\r\nvyvazovaný\r\nvyvazovat\r\nvyvazující\r\nvyvážející\r\nvývažek\r\nvyváženější\r\nvyvážení\r\nvyvážený\r\nvyvážet\r\nvyváži\r\nvyvážit\r\nvyvážitelnější\r\nvyvažovací\r\nvyvažovačka\r\nvyvažovanější\r\nvyvažování\r\nvyvažovaný\r\nvyvažovat\r\nvyvažovatelnější\r\nvyvažovatelný\r\nvyvažující\r\nvyvdání\r\nvyvdaný\r\nvyvdat\r\nvyvdávání\r\nvyvdávaný\r\nvyvdávat\r\nvyvedenější\r\nvyvedení\r\nvyveden\r\nvyvedený\r\nvyvedl\r\nvyvedu\r\nvyvekslování\r\nvyvekslovaný\r\nvyvekslovat\r\nvyvenčení\r\nvyvenčený\r\nvyvenčit\r\nvyvěračka\r\nvyvěrající\r\nvyvěrání\r\nvyvěrat\r\nvývěr\r\nvyvěsit\r\nvyvěsitelný\r\nvývěskář\r\nvývěskářův\r\nvývěska\r\nvývěskový\r\nvývěsní\r\nvývěsný\r\nvyvést\r\nvyvěstit\r\nvyvěšení\r\nvyvěšený\r\nvyvěšování\r\nvyvěšovaný\r\nvyvěšovat\r\nvyvěštění\r\nvyvěštěný\r\nvyvěštit\r\nvyvětralý\r\nvyvětrání\r\nvyvětraný\r\nvyvětratelný\r\nvyvětrat\r\nvyvětrávání\r\nvyvětrávat\r\nvývěva\r\nvyvezenější\r\nvyvezení\r\nvyvezený\r\nvyvézt\r\nvyvíjející\r\nvyvíjení\r\nvyvíjený\r\nvyvíjet\r\nvyviklání\r\nvyviklaný\r\nvyviklat\r\nvyviklávání\r\nvyviklávaný\r\nvyviklávat\r\nvývin\r\nvyvinout\r\nvyvinutější\r\nvyvinutí\r\nvyvinutý\r\nvyvinutý\r\nvyvláčení\r\nvyvláčený\r\nvyvláčet\r\nvyvlastnění\r\nvyvlastněný\r\nvyvlastnit\r\nvyvlastňovací\r\nvyvlastňování\r\nvyvlastňovaný\r\nvyvlastňovat\r\nvyvlastňovávat\r\nvyvléct\r\nvyvlečenější\r\nvyvlečení\r\nvyvlečený\r\nVyvlečka\r\nVyvlečková\r\nVyvlečkův\r\nvyvlékání\r\nvyvlékaný\r\nvyvlékat\r\nvyvlekl\r\nvyvlékl\r\nvyvléknout\r\nvyvléknutí\r\nvyvléknutý\r\nvyvlíknout\r\nvyvločkovat\r\nvyvložkování\r\nvyvložkovaný\r\nvyvložkovat\r\nvyvložkovávání\r\nvyvložkovávaný\r\nvyvložkovávat\r\nvývod\r\nvyvodit\r\nvyvoditelný\r\nvývodka\r\nvývodní\r\nvývodový\r\nvývojářský\r\nvývojář\r\nvývojářův\r\nvývojeschopný\r\nvývojka\r\nvývojový\r\nvývoj\r\nvyvolající\r\nvyvolanější\r\nvyvolání\r\nvyvolaný\r\nvyvolatelnější\r\nvyvolat\r\nvyvolávací\r\nvyvolavaččin\r\nvyvolávaččin\r\nvyvolavačka\r\nvyvolávačka\r\nvyvolavač\r\nvyvolávač\r\nvyvolavačův\r\nvyvolávačův\r\nvyvolávající\r\nvyvolávanější\r\nvyvolávání\r\nvyvolávaný\r\nvyvolávat\r\nvyvolávka\r\nvyvolencův\r\nvyvolenčin\r\nvyvolenec\r\nvyvolenější\r\nvyvolení\r\nvyvolenka\r\nvyvolený\r\nvyvolit\r\nvývozce\r\nvývozcův\r\nvyvození\r\nvyvozený\r\nvývoz\r\nvyvozit\r\nvývozní\r\nvyvozování\r\nvyvozovaný\r\nvyvozovat\r\nvývozový\r\nvyvožení\r\nvyvožený\r\nvyvracející\r\nvyvrácenější\r\nvyvracení\r\nvyvrácení\r\nvyvracený\r\nvyvrácený\r\nvyvracet\r\nvývrat\r\nvyvrátit\r\nvyvratitelnější\r\nvyvratitelný\r\nvyvrávorání\r\nvyvrávorat\r\nvyvraždění\r\nvyvražděný\r\nvyvraždit\r\nvyvražďování\r\nvyvražďovaný\r\nvyvražďovat\r\nvyvražďující\r\nvyvrhel\r\nvyvrhelův\r\nvyvrhnout\r\nvyvrhnutí\r\nvyvrhnutý\r\nvyvrhnutý\r\nvyvrhování\r\nvyvrhovaný\r\nvyvrhovat\r\nvyvrhující\r\nvyvrcholení\r\nvyvrcholený\r\nvyvrcholit\r\nvyvrcholovat\r\nvyvrknutý\r\nvyvrtání\r\nvyvrtaný\r\nvyvrtat\r\nvyvrtávací\r\nvyvrtávačka\r\nvyvrtávání\r\nvyvrtávaný\r\nvyvrtávat\r\nvývrt\r\nvývrtka\r\nvyvrtnout\r\nvyvrtnutí\r\nvyvrtnutý\r\nvyvržencův\r\nvyvrženec\r\nvyvrženečtější\r\nvyvrženější\r\nvyvržení\r\nvyvrženka\r\nvyvržený\r\nvyvřelejší\r\nvyvřelina\r\nvyvřelý\r\nvyvřenější\r\nvyvření\r\nvyvřený\r\nvyvřít\r\nvyvstání\r\nvyvstat\r\nvyvstávající\r\nvyvstávání\r\nvyvstávat\r\nvyvycvičitelnější\r\nvyvycvičitelný\r\nvyvýšencův\r\nvyvýšenec\r\nvyvýšenější\r\nvyvýšenina\r\nvyvýšení\r\nvyvýšený\r\nvyvýšit\r\nvyvyšování\r\nvyvyšovaný\r\nvyvyšovat\r\nvyvyšující\r\nvyvzdorování\r\nvyvzdorovaný\r\nvyvzdorovat\r\nvyvzdorovávání\r\nvyvzdorovávaný\r\nvyvzdorovávat\r\nvyvzpomenout\r\nvyvztekání\r\nvyvztekaný\r\nvyvztekat\r\nvyvztekávání\r\nvyvztekávat\r\nvyzáblejší\r\nvyzáblý\r\nvyzábnout\r\nvyzáření\r\nvyzářený\r\nvyzářit\r\nvyzařovací\r\nvyzařování\r\nvyzařovaný\r\nvyzařovat\r\nvyzařovávat\r\nvyzařující\r\nvyzávodění\r\nvyzávodit\r\nvyzážistčin\r\nvyzážistka\r\nvyzbrojenější\r\nvyzbrojení\r\nvyzbrojený\r\nvyzbrojit\r\nvýzbrojní\r\nvyzbrojovací\r\nvyzbrojování\r\nvyzbrojovaný\r\nvyzbrojovat\r\nvyzbrojovávání\r\nvyzbrojovávaný\r\nvyzbrojovávat\r\nvýzbroj\r\nvyzbrojující\r\nvýzbroj\r\nvyzděnější\r\nvyzdění\r\nvyzděný\r\nvyzdít\r\nvyzdívání\r\nvyzdívaný\r\nvyzdívat\r\nvyzdívka\r\nvyzdívkový\r\nvýzdoba\r\nvyzdobenější\r\nvyzdobení\r\nvyzdobený\r\nvyzdobit\r\nvýzdobný\r\nvyzdobování\r\nvyzdravení\r\nvyzdravený\r\nvyzdravit\r\nvyzdvihnout\r\nvyzdvihnutí\r\nvyzdvihování\r\nvyzdvihovaný\r\nvyzdvihovat\r\nvyzdvihující\r\nvyzdvižený\r\nvyzískání\r\nvyzískaný\r\nvyzískat\r\nvyzkoumání\r\nvyzkoumaný\r\nvyzkoumatelnější\r\nvyzkoumat\r\nvyzkoumávání\r\nvyzkoumávaný\r\nvyzkoumávat\r\nvyzkoušenější\r\nvyzkoušení\r\nvyzkoušený\r\nvyzkoušet\r\nvyzkratování\r\nvyzkratovaný\r\nvyzkratovat\r\nvýzkum\r\nvýzkumnice\r\nvýzkumnický\r\nvýzkumnictví\r\nvýzkumničin\r\nvýzkumník\r\nvýzkumníkův\r\nvýzkumný\r\nvyzmizíkování\r\nvyzmizíkovaný\r\nvyzmizíkovat\r\nvyznačenější\r\nvyznačení\r\nvyznačený\r\nvyznačit\r\nvyznačkování\r\nvyznačkovaný\r\nvyznačkovat\r\nvyznačkovávání\r\nvyznačkovávaný\r\nvyznačkovávat\r\nvýznačnější\r\nvýznačný\r\nvyznačování\r\nvyznačovaný\r\nvyznačovat\r\nvyznačující\r\nvyznamenanější\r\nvyznamenání\r\nvyznamenaný\r\nvyznamenat\r\nvyznamenávající\r\nvyznamenávanější\r\nvyznamenávání\r\nvyznamenávaný\r\nvyznamenávat\r\nvýznam\r\nvýznamnější\r\nvýznamný\r\nvýznamovější\r\nvýznamový\r\nvyznanější\r\nvyznání\r\nvyznaný\r\nvyznat\r\nvyznávací\r\nvyznavaččin\r\nvyznavačka\r\nvyznavač\r\nvyznavačův\r\nvyznávající\r\nvyznávanější\r\nvyznávání\r\nvyznávaný\r\nvyznávat\r\nvyznění\r\nvyznít\r\nvyznívající\r\nvyznívání\r\nvyznívat\r\nvyzobání\r\nvyzobaný\r\nvyzobat\r\nvyzobávající\r\nvyzobávání\r\nvyzobávaný\r\nvyzobávat\r\nvyzobnout\r\nvyzobnutí\r\nvyzobnutý\r\nvyzout\r\nvyzouvací\r\nvyzouvání\r\nvyzouvaný\r\nvyzouvat\r\nvyzpěvování\r\nvyzpěvovaný\r\nvyzpěvovat\r\nvyzpěvující\r\nvyzpívání\r\nvyzpívaný\r\nvyzpívat\r\nvyzpívávání\r\nvyzpívávaný\r\nvyzpívávat\r\nvyzpovídající\r\nvyzpovídanější\r\nvyzpovídání\r\nvyzpovídaný\r\nvyzpovídat\r\nvyzpovídávat\r\nvyzpytatelnější\r\nvyzpytatelný\r\nvyzradit\r\nvyzrálejší\r\nvyzrálý\r\nvyzrálý\r\nvyzrání\r\nvyzrát\r\nvyzrávající\r\nvyzrávání\r\nvyzrávat\r\nvyzrazení\r\nvyzrazený\r\nvyzrazování\r\nvyzrazovaný\r\nvyzrazovat\r\nvyzrazující\r\nvyzrněný\r\nvyzrňovací\r\nvyzrňovačka\r\nvyzrňování\r\nvyzrňovaný\r\nvyzrňovat\r\nvýztuha\r\nvyztuženější\r\nvyztužení\r\nvyztužený\r\nvyztužený\r\nvyztužit\r\nvýztužní\r\nvýztužný\r\nvyztužování\r\nvyztužovaný\r\nvyztužovat\r\nvyztužující\r\nvýztuž\r\nvyzunknout\r\nvyzuřit\r\nvyzutí\r\nvyzutý\r\nvyzváněcí\r\nvyzvánějící\r\nvyzvánění\r\nvyzváněný\r\nvyzvánět\r\nvyzvání\r\nvyzvaný\r\nvyzvat\r\nvyzvavší\r\nvýzva\r\nvyzvědaččin\r\nvyzvědačka\r\nvyzvědačský\r\nvyzvědačství\r\nvyzvědač\r\nvyzvědačův\r\nvyzvedání\r\nvyzvedaný\r\nvyzvedat\r\nvyzvedávání\r\nvyzvedávat\r\nvyzvědění\r\nvyzvědět\r\nvyzvednout\r\nvyzvednutí\r\nvyzvednutý\r\nvyzvednutý\r\nvýzvědný\r\nvýzvědy\r\nvyzvídání\r\nvyzvídat\r\nvyzvonění\r\nvyzvoněný\r\nvyzvonit\r\nvyzvracení\r\nvyzvrácení\r\nvyzvracený\r\nvyzvrácený\r\nvyzvracet\r\nvyzvrátit\r\nvyzývací\r\nvyzývající\r\nvyzývání\r\nvyzývaný\r\nvyzývatelčin\r\nvyzývatelka\r\nvyzyvatel\r\nvyzývatel\r\nvyzyvatelův\r\nvyzývatelův\r\nvyzývat\r\nvyzývavější\r\nvyzývavý\r\nvyžádanější\r\nvyžádání\r\nvyžádaný\r\nvyžádat\r\nvyžadoněný\r\nvyžadovanější\r\nvyžadování\r\nvyžadovaný\r\nvyžadovat\r\nvyžadovatelný\r\nvyžadovávání\r\nvyžadovávaný\r\nvyžadovávat\r\nvyžadující\r\nvyžal\r\nvyžatější\r\nvyžat\r\nvyžatý\r\nvyžatý\r\nvyždímání\r\nvyždímaný\r\nvyždímat\r\nvyžebrání\r\nvyžebraný\r\nvyžebrat\r\nvyžebrávání\r\nvyžebrávaný\r\nvyžebrávat\r\nvyžebronit\r\nvyžehlenější\r\nvyžehlení\r\nvyžehlený\r\nvyžehlit\r\nvyženění\r\nvyženěný\r\nvyženit\r\nvyženu\r\nvyžíhaný\r\nvyžilejší\r\nvyžilý\r\nvyžínání\r\nvyžínaný\r\nvyžínat\r\nvyžírající\r\nvyžírání\r\nvyžíraný\r\nvyžírat\r\nvyžírka\r\nvyžírkův\r\nvyžít\r\nvyžitější\r\nvyžít\r\nvyžití\r\nvyžitý\r\nvyžitý\r\nvyžívající\r\nvyžívanější\r\nvyžívání\r\nvyžívaný\r\nvyžívat\r\nvýživa\r\nvyživení\r\nvyživený\r\nvýživnější\r\nvýživný\r\nvyživovací\r\nvyživování\r\nvyživovaný\r\nvyživovat\r\nvýživový\r\nvyživující\r\nvyžlábkování\r\nvyžlábkovaný\r\nvyžlábkovat\r\nvyžle\r\nVyžlovka\r\nvyžnout\r\nvyžnu\r\nvyžnutí\r\nvyžnutý\r\nvyžranější\r\nvyžrání\r\nvyžraný\r\nvyžrat\r\nvyžvanění\r\nvyžvaněný\r\nvyžvanit\r\nvyžvaňování\r\nvyžvaňovaný\r\nvyžvaňovat\r\nvyžvatlání\r\nvyžvatlaný\r\nvyžvatlat\r\nvyžvýkání\r\nvyžvýkaný\r\nvyžvýkat\r\nvyžvýkávat\r\nvyžvýknout\r\nvzácnější\r\nvzácnostní\r\nvzácný\r\nvzad\r\nvzadu\r\nvzájemnější\r\nvzájemnůstka\r\nvzájemný\r\nvzal\r\nvzání\r\nvzápětí\r\nvzatek\r\nvzat\r\nvzatý\r\nvzatý\r\nvzatý\r\nvzbouřencův\r\nvzbouřenčin\r\nvzbouřenecký\r\nvzbouřenec\r\nvzbouřenečtější\r\nvzbouřenější\r\nvzbouření\r\nvzbouřenka\r\nvzbouřený\r\nvzbouřit\r\nvzbouzení\r\nvzbouzený\r\nvzbouzet\r\nvzbudit\r\nvzbuzenější\r\nvzbuzení\r\nvzbuzený\r\nvzbuzování\r\nvzbuzovaný\r\nvzbuzovat\r\nvzbuzující\r\nvzdálenější\r\nvzdálení\r\nvzdálenostní\r\nvzdálený\r\nvzdálit\r\nvzdalování\r\nvzdalovaný\r\nvzdalovat\r\nvzdalovávání\r\nvzdalovávaný\r\nvzdalovávat\r\nvzdalující\r\nvzdanější\r\nvzdání\r\nvzdaný\r\nvzdát\r\nvzdávající\r\nvzdávanější\r\nvzdávání\r\nvzdávaný\r\nvzdávat\r\nvzdech\r\nvzdechnout\r\nvzdechnutí\r\nvzdělancův\r\nvzdělanecký\r\nvzdělanec\r\nvzdělanečtější\r\nvzdělanější\r\nvzdělání\r\nvzdělanostní\r\nvzdělaný\r\nvzdělatelnější\r\nvzdělat\r\nvzdělávací\r\nvzdělávající\r\nvzdělávanější\r\nvzdělávání\r\nvzdělávaný\r\nvzdělavatelčin\r\nvzdělavatelka\r\nvzdělavatelnější\r\nvzdělavatelný\r\nvzdělavatelský\r\nvzdělavatel\r\nvzdělavatelův\r\nvzdělávat\r\nvzdor\r\nvzdor\r\nvzdornější\r\nvzdorný\r\nvzdorocentrum\r\nvzdorojednota\r\nvzdorokrál\r\nvzdorokrálův\r\nvzdoropapež\r\nvzdoropapežův\r\nvzdoroparlament\r\nvzdoroprezident\r\nvzdoroprezidentův\r\nvzdorosjezd\r\nvzdorování\r\nvzdorovaný\r\nvzdorovat\r\nvzdorovávání\r\nvzdorovávat\r\nvzdorovitější\r\nvzdorovitý\r\nvzdorující\r\nvzdout\r\nvzdouvací\r\nvzdouvající\r\nvzdouvání\r\nvzdouvaný\r\nvzdouvat\r\nvzduch\r\nvzduchojem\r\nvzducholoďmi\r\nvzducholoď\r\nvzduchoměr\r\nvzduchoplavba\r\nvzduchoplavcův\r\nvzduchoplavební\r\nvzduchoplavecký\r\nvzduchoplavectví\r\nvzduchoplavec\r\nvzduchoplavkyně\r\nvzduchoplavkynin\r\nvzduchoprázdnější\r\nvzduchoprázdno\r\nvzduchoprázdný\r\nvzduchotechnický\r\nvzduchotechničtější\r\nvzduchotechnika\r\nvzduchotěsnější\r\nvzduchotěsný\r\nvzduchovka\r\nvzduchovkový\r\nvzduchovod\r\nvzduchový\r\nvzdušina\r\nvzdušnější\r\nvzdušnice\r\nvzdušnicovec\r\nvzdušnina\r\nvzdušný\r\nvzdutější\r\nvzdutí\r\nvzdutý\r\nvzdutý\r\nvzdychající\r\nvzdychání\r\nvzdychat\r\nvzdychávání\r\nvzdychávat\r\nvzdychnout\r\nvzdychnutí\r\nvzdychnutý\r\nvzedmout\r\nvzedmutější\r\nvzedmutí\r\nvzedmutý\r\nvzejda\r\nvzejdu\r\nvzejít\r\nvzejmout\r\nvzejmu\r\nvzejmutí\r\nvzepětí\r\nvzepjal\r\nvzepnout\r\nvzepnutější\r\nvzepnutí\r\nvzepnutý\r\nvzepřenější\r\nvzepření\r\nvzepřený\r\nvzepřít\r\nvzestup\r\nvzestupnější\r\nvzestupný\r\nvzestupování\r\nvzestupovat\r\nvzestupující\r\nvzešel\r\nvzešlý\r\nvzetí\r\nvzezření\r\nvzezření\r\nvzhledem\r\nvzhled\r\nvzhlednější\r\nvzhlédnout\r\nvzhlédnul\r\nvzhlédnutí\r\nvzhledný\r\nvzhledový\r\nvzhlídnout\r\nvzhlídnul\r\nvzhlížející\r\nvzhlíženější\r\nvzhlížení\r\nvzhlížený\r\nvzhlížet\r\nvzhůru\r\nvzcházející\r\nvzcházení\r\nvzcházet\r\nvzcházívat\r\nvzcházivý\r\nvzchopení\r\nvzchopený\r\nvzchopit\r\nvzít\r\nvzkázanější\r\nvzkázání\r\nvzkázán\r\nvzkázaný\r\nvzkázat\r\nvzkazatelnější\r\nvzkazatelný\r\nvzkaz\r\nvzkazovací\r\nvzkazovanější\r\nvzkazování\r\nvzkazovaný\r\nvzkazovat\r\nvzkazující\r\nvzkáži\r\nvzkládání\r\nvzklíčení\r\nvzklíčený\r\nvzklíčit\r\nvzkřiknout\r\nvzkřiknutí\r\nvzkřiknutý\r\nvzkřísit\r\nvzkříšení\r\nvzkříšený\r\nvzkvétající\r\nvzkvétající\r\nvzkvétání\r\nvzkvétat\r\nvzkvétávání\r\nvzkvétávat\r\nvzkypění\r\nvzkypěný\r\nvzkypět\r\nvzlétající\r\nvzlétání\r\nvzlétaný\r\nvzlétat\r\nvzlétávání\r\nvzlétávat\r\nvzlétavý\r\nvzletění\r\nvzletěný\r\nvzletět\r\nvzlet\r\nvzletnější\r\nvzlétnout\r\nvzlétnutí\r\nvzletný\r\nvzletový\r\nvzlínající\r\nvzlínání\r\nvzlínat\r\nvzlínavější\r\nvzlínavý\r\nvzlítání\r\nvzlítaný\r\nvzlítat\r\nvzlítnout\r\nvzlítnutí\r\nvzlykající\r\nvzlykání\r\nvzlykaný\r\nvzlykat\r\nvzlykávání\r\nvzlykávat\r\nvzlykavý\r\nvzlyk\r\nvzlyknout\r\nvzlyknutí\r\nvzlykot\r\nvzmáhající\r\nvzmáhání\r\nvzmáhat\r\nvzmach\r\nvzmátořit\r\nvzmoci\r\nvzmožení\r\nvzmužení\r\nvzmužený\r\nvzmužilý\r\nvzmužit\r\nvzňal\r\nvznášedlo\r\nvznášedlový\r\nvznášející\r\nvznášenější\r\nvznášení\r\nvznášený\r\nvznášet\r\nvznášivý\r\nvzněcovat\r\nvznesenější\r\nvznesení\r\nvznesený\r\nvznést\r\nvznešenější\r\nvznešený\r\nvznět\r\nvznětlivější\r\nvznětlivý\r\nvznětový\r\nvznícenější\r\nvznícení\r\nvznícený\r\nvznikající\r\nvznikání\r\nvznikat\r\nvznik\r\nvzniklejší\r\nvzniklý\r\nvzniknout\r\nvzniknutí\r\nvzniknuvší\r\nvznít\r\nvznítit\r\nvznos\r\nvznosnější\r\nvznosný\r\nvzorec\r\nvzoreček\r\nvzorek\r\nvzor\r\nvzorkař\r\nvzorkařův\r\nvzorkovací\r\nvzorkovač\r\nvzorkování\r\nvzorkování\r\nvzorkovaný\r\nvzorkovat\r\nvzorkovna\r\nvzorkovnice\r\nvzorkovník\r\nvzorkový\r\nvzornější\r\nvzorník\r\nvzorný\r\nvzorovací\r\nvzorování\r\nvzorovaný\r\nvzorovat\r\nvzorovější\r\nvzorový\r\nvzoru\r\nVZP\r\nvzpamatování\r\nvzpamatovaný\r\nvzpamatovat\r\nvzpamatovávající\r\nvzpamatovávání\r\nvzpamatovávaný\r\nvzpamatovávat\r\nvzpažení\r\nvzpažený\r\nvzpažit\r\nvzpažování\r\nvzpažovaný\r\nvzpažovat\r\nvzpěčující\r\nvzpěnění\r\nvzpěněný\r\nvzpěnit\r\nvzpěňování\r\nvzpěňovat\r\nvzpěraččin\r\nvzpěračka\r\nvzpěračský\r\nvzpěrač\r\nvzpěračův\r\nvzpěradlo\r\nvzpěra\r\nvzpěrka\r\nvzpěrný\r\nvzpínající\r\nvzpínání\r\nvzpínaný\r\nvzpínat\r\nvzpírající\r\nvzpíranější\r\nvzpírání\r\nvzpíraný\r\nvzpírat\r\nvzpláme\r\nvzplám\r\nvzplá\r\nvzplání\r\nvzplanout\r\nvzplanutí\r\nvzplanuvší\r\nvzpláš\r\nvzpláte\r\nvzplát\r\nvzplývavý\r\nvzplývavý\r\nvzpomenout\r\nvzpomenutí\r\nvzpomenutý\r\nvzpomínající\r\nvzpomínání\r\nvzpomínaný\r\nvzpomínat\r\nvzpomínka\r\nvzpomínkový\r\nvzpomněl\r\nvzpor\r\nvzpoura\r\nvzpouzející\r\nvzpouzení\r\nvzpouzený\r\nvzpouzet\r\nvzpruha\r\nvzpruženější\r\nvzpružení\r\nvzpružený\r\nvzpružit\r\nvzpružovat\r\nvzpružující\r\nvzpříčení\r\nvzpříčený\r\nvzpříčit\r\nvzpřičovat\r\nvzpřímenější\r\nvzpřímení\r\nvzpřímený\r\nvzpřímit\r\nvzpřimovač\r\nvzpřimování\r\nvzpřimovaný\r\nvzpřimovat\r\nvzpurnější\r\nvzpurný\r\nvzrostlejší\r\nvzrostl\r\nvzrostlý\r\nvzrostu\r\nvzruch\r\nvzruchový\r\nvzrůstající\r\nvzrůstání\r\nvzrůstat\r\nvzrůst\r\nvzrůst\r\nvzrušenější\r\nvzrušení\r\nvzrušený\r\nvzrušit\r\nvzrušitelnější\r\nvzrušitelný\r\nvzrušivější\r\nvzrušivý\r\nvzrušovanější\r\nvzrušování\r\nvzrušovaný\r\nvzrušovat\r\nvzrušovatelnější\r\nvzrušovatelný\r\nvzrušující\r\nvztah\r\nvztáhnout\r\nvztáhnutí\r\nvztahovačnější\r\nvztahovačný\r\nvztahovanější\r\nvztahování\r\nvztahovaný\r\nvztahovat\r\nvztahovávání\r\nvztahovávaný\r\nvztahovávat\r\nvztahový\r\nvztahu\r\nvztahující\r\nvztaženější\r\nvztažení\r\nvztažený\r\nvztažitelnější\r\nvztažitelný\r\nvztažný\r\nvztekající\r\nvztekání\r\nvztekat\r\nvztekávání\r\nvztekávat\r\nvztek\r\nvzteklejší\r\nvzteklina\r\nvztekloun\r\nvzteklounství\r\nvzteklounův\r\nvzteklý\r\nvzteklý\r\nvzteknout\r\nvzteky\r\nvztlak\r\nvztlakový\r\nvztyčení\r\nvztyčený\r\nvztyčit\r\nvztyčování\r\nvztyčovaný\r\nvztyčovat\r\nvztyk\r\nvzvolávání\r\nvzvolávaný\r\nvzvolávat\r\nvzývající\r\nvzývání\r\nvzývaný\r\nvzývat\r\nvždy\r\nvždycky\r\nvždyť\r\nvždyzelený\r\nvženu\r\nvžít\r\nvžitější\r\nvžití\r\nvžitý\r\nvžitý\r\nvžívající\r\nvžívanější\r\nvžívání\r\nvžívaný\r\nvžívat\r\nWackernagel\r\nWackernagelův\r\nWagenknechtová\r\nWagenknecht\r\nWagenknechtův\r\nwagnerianismus\r\nWagnerová\r\nWagner\r\nWagnerův\r\nwahhábismus\r\nWaldhansová\r\nWaldhans\r\nWaldhansův\r\nWaldsteinský\r\nWales\r\nwaleský\r\nwaleština\r\nwalkman\r\nWallisová\r\nWallis\r\nWallisův\r\nWalramův\r\nWalrasův\r\nwalsový\r\nWalterová\r\nWalter\r\nWalterův\r\nWaltra\r\nWaltrech\r\nWaltrem\r\nWaltrová\r\nWaltrové\r\nWaltrovi\r\nwaltrovka\r\nWaltr\r\nWaltrů\r\nWaltrům\r\nWaltrův\r\nWaltry\r\nWaltře\r\nwaltz\r\nwaltzový\r\nwampumový\r\nWAN\r\nwan\r\nwartburg\r\nwartburgový\r\nWashington\r\nwashingtonský\r\nWaterloo\r\nwatt\r\nwatthodinový\r\nwattmetr\r\nwattový\r\nWb\r\nWeberová\r\nWeber\r\nWeberův\r\nweb\r\nwebový\r\nwebový\r\nWebra\r\nWebrech\r\nWebrem\r\nWebrová\r\nWebrové\r\nWebrovi\r\nWebrů\r\nWebrům\r\nWebrův\r\nWebry\r\nWebře\r\nWebsterův\r\nwehrmacht\r\nWeibull\r\nWeibullův\r\nWeigelová\r\nWeigel\r\nWeigelův\r\nWeinerová\r\nWeiner\r\nWeinerův\r\nWeiserová\r\nWeiser\r\nWeiserův\r\nweismannismus\r\nweismannistický\r\nWeissová\r\nWeiss\r\nWeissův\r\nwelšský\r\nwelština\r\nwelterový\r\nWenigová\r\nWenig\r\nWenigův\r\nWenkeová\r\nWenke\r\nWenkeův\r\nWerichová\r\nWerich\r\nWerichův\r\nWernerová\r\nWerner\r\nWernerův\r\nwestern\r\nwesternový\r\nwestminsterský\r\nWettin\r\nWh\r\nwhippet\r\nwhippetův\r\nwhiska\r\nwhiskey\r\nwhisky\r\nwhist\r\nwhistový\r\nWhiteheadová\r\nWhitehead\r\nWhiteheadův\r\nWHO\r\nWhorf\r\nWhorfův\r\nWiedemanová\r\nWiedeman\r\nWiedemanův\r\nWienerová\r\nWiener\r\nWienerův\r\nWiesnerová\r\nWiesner\r\nWiesnerův\r\nWichová\r\nWich\r\nWichterle\r\nWichterlová\r\nWichterlův\r\nWichův\r\nWildová\r\nWild\r\nWildův\r\nWilliam\r\nWilliams\r\nWilliamsův\r\nWilliamův\r\nWill\r\nWillův\r\nWilsonův\r\nWimbledon\r\nWimmerová\r\nWimmer\r\nWimmerův\r\nwinbledonský\r\nWindischgrätz\r\nWindischgrätzův\r\nWindows\r\nwindsurfing\r\nWingelmüllerův\r\nWinchesterský\r\nWinklerová\r\nWinkler\r\nWinklerův\r\nWinston\r\nWinstonův\r\nWinterová\r\nWinter\r\nWinterův\r\nWintra\r\nWintrech\r\nWintrem\r\nWintrová\r\nWintrové\r\nWintrovi\r\nWintrů\r\nWintrům\r\nWintrův\r\nWintry\r\nWintře\r\nWittelsbachový\r\nWittelsbach\r\nWMO\r\nWohlmannová\r\nWohlmann\r\nWohlmannův\r\nWolfová\r\nWolf\r\nwolframan\r\nwolfram\r\nwolframičitý\r\nwolframičný\r\nwolframit\r\nwolframitý\r\nwolframný\r\nwolframový\r\nWolfův\r\nWolkerová\r\nWolker\r\nWolkerův\r\nwollastonit\r\nwollastonitový\r\nWollmannová\r\nWollmann\r\nWollmannův\r\nworcester\r\nworcesterová\r\nworcesterský\r\nworcestrový\r\nwordprocesor\r\nworchester\r\nworkoholismus\r\nworkshop\r\nwormský\r\nWoznica\r\nWoznicová\r\nWoznicův\r\nWrangelův\r\nWs\r\nwulfenit\r\nWurmová\r\nWurm\r\nWurmův\r\nWürttembersko\r\nwürzburský\r\nWWW\r\nwww\r\nWYSIWYG\r\nX\r\nxanthan\r\nxanthanový\r\nxanthoproteinový\r\nXantipa\r\nxantipa\r\nXantipin\r\nxantofyl\r\nXaverov\r\nxaverovský\r\nXenie\r\nXeniin\r\nxenobiotika\r\nxenofobie\r\nxenofobní\r\nxenonatý\r\nxenon\r\nxenoničelan\r\nxenoničitý\r\nxenonový\r\nxenotransplantace\r\nxerografický\r\nxerografický\r\nxerografičtější\r\nxerografie\r\nxerokopie\r\nxeropapír\r\nxerothermní\r\nxerox\r\nxeroxování\r\nxeroxovaný\r\nxeroxovat\r\nxeroxový\r\nXI\r\nXII\r\nXIII\r\nXIV\r\nXIX\r\nXML\r\nXV\r\nXVI\r\nXVII\r\nXVIII\r\nXX\r\nXY\r\nxylen\r\nxylit\r\nxylitol\r\nxylitový\r\nxylofon\r\nxylofonista\r\nxylofonistčin\r\nxylofonistka\r\nxylofonistův\r\nxylofonový\r\nxylolit\r\nxylolitový\r\nxylóza\r\nyang\r\nYankee\r\nyard\r\nyardový\r\nyd\r\nyetti\r\nyin\r\nYMCA\r\nyohimbin\r\nYokohama\r\nyokohamský\r\nYork\r\nYorkshire\r\nyorkshirský\r\nyorský\r\nyperit\r\nyperitový\r\nypsilon\r\nypsilonový\r\nytriový\r\nytritý\r\nytrium\r\nytterbiový\r\nytterbium\r\nyttrium\r\nYucatan\r\nyukatánský\r\nYukon\r\nYveta\r\nYvetin\r\nYvetta\r\nYvettin\r\nYvona\r\nYvonin\r\nYWCA\r\nyzop\r\nyzopový\r\nz\r\nza\r\nzaalpský\r\nzaangažování\r\nzaangažovaný\r\nzaangažovat\r\nzaaretování\r\nzaaretovaný\r\nzaaretovat\r\nzaarmování\r\nzaarmovaný\r\nzaarmovat\r\nzabafání\r\nzabafaný\r\nzabafat\r\nzabagrovanější\r\nzabagrování\r\nzabagrovaný\r\nzabagrovat\r\nzabagrovávání\r\nzabagrovávaný\r\nzabagrovávat\r\nzabahněnější\r\nzabahnění\r\nzabahněný\r\nzabahnit\r\nzabájení\r\nzabájený\r\nzabájit\r\nzabalenější\r\nzabalení\r\nzabalený\r\nzábal\r\nzabalit\r\nzabalitelnější\r\nzabalitelný\r\nzabalovanější\r\nzabalování\r\nzabalovaný\r\nzabalovat\r\nzabalovávání\r\nzabalovávaný\r\nzabalovávat\r\nzábalový\r\nzabalující\r\nzabandážování\r\nzabandážovaný\r\nzabandážovat\r\nzabarikádování\r\nzabarikádovaný\r\nzabarikádovat\r\nzabarikádovávání\r\nzabarikádovávaný\r\nzabarikádovávat\r\nzabarvenější\r\nzabarvení\r\nzabarvený\r\nzabarvit\r\nzabarvování\r\nzabarvovaný\r\nzabarvovat\r\nzabásnění\r\nzabásněný\r\nzabásnit\r\nzabásnout\r\nzabásnutí\r\nzabasovat\r\nzábava\r\nzabavení\r\nzabavený\r\nzábavička\r\nzabavit\r\nzábavnější\r\nzábavní\r\nzábavný\r\nzabavování\r\nzabavovaný\r\nzabavovat\r\nzabavující\r\nzábavychtivější\r\nzábavychtivý\r\nzábavymilovnější\r\nzabečení\r\nzabečený\r\nzabečet\r\nzabedněncův\r\nzabedněnec\r\nzabedněnější\r\nzabednění\r\nzabedněný\r\nzabednit\r\nzabedňování\r\nzabedňovaný\r\nzabedňovat\r\nzabědování\r\nzabědovaný\r\nzabědovat\r\nzaběhanější\r\nzaběhání\r\nzaběhaný\r\nzaběhat\r\nzaběhávání\r\nzaběhávat\r\nzáběh\r\nzaběhlejší\r\nZáběhlice\r\nzáběhlický\r\nzaběhlý\r\nzaběhnout\r\nzaběhnutější\r\nzaběhnutí\r\nzaběhnutý\r\nzáběhovější\r\nzáběhový\r\nzabělání\r\nzabělat\r\nzáběr\r\nzáběrový\r\nzabetonování\r\nzabetonovaný\r\nzabetonovat\r\nzabetonovávání\r\nzabetonovávaný\r\nzabetonovávat\r\nzabezpečenější\r\nzabezpečení\r\nzabezpečený\r\nzabezpečit\r\nzabezpečitelnější\r\nzabezpečitelný\r\nzabezpečovací\r\nzabezpečování\r\nzabezpečovaný\r\nzabezpečovat\r\nzabezpečující\r\nZabí\r\nzabíhací\r\nzabíhající\r\nzabíhání\r\nzabíhaný\r\nzabíhat\r\nzabíhávání\r\nzabíhávaný\r\nzabíhávat\r\nzabíhavý\r\nzabíhavý\r\nzabijácký\r\nzabijačka\r\nzabíjačka\r\nzabijačkový\r\nzabíjačkový\r\nzabiják\r\nzabijákův\r\nzabíjející\r\nzabíjení\r\nzabíjený\r\nzabíjet\r\nzabílení\r\nzabílený\r\nzabílit\r\nzabimbat\r\nzabírající\r\nzabíranější\r\nzabírání\r\nzabíraný\r\nzabírat\r\nzabít\r\nzabitější\r\nzabití\r\nzabit\r\nzabitý\r\nzabivakování\r\nzabivakovaný\r\nzabivakovat\r\nzablácení\r\nzablácený\r\nZáblatí\r\nzablátit\r\nzablbnout\r\nzablbnutí\r\nzablbnutý\r\nzablebtnout\r\nzablebtnutí\r\nzablebtnutý\r\nzablekotání\r\nzablekotaný\r\nzablekotat\r\nzáblesk\r\nzablesknout\r\nzablesknutí\r\nzábleskový\r\nzablešenější\r\nzablikání\r\nzablikat\r\nzablikávání\r\nzablikávat\r\nzabliknout\r\nzabliknutí\r\nzablokování\r\nzablokovaný\r\nzablokovat\r\nzablokovávání\r\nzablokovávaný\r\nzablokovávat\r\nzábl\r\nzabloudění\r\nZabloudilová\r\nZabloudil\r\nZabloudilův\r\nzabloudit\r\nzablýskat\r\nzablýsknout\r\nzablýsknutí\r\nzablyštění\r\nzablyštět\r\nzablyštit\r\nzábnout\r\nzábnutí\r\nzabobovat\r\nzabočení\r\nzabočený\r\nzabočit\r\nzabočování\r\nzabočovat\r\nzabodávání\r\nzabodávaný\r\nzabodávat\r\nzabodnout\r\nzabodnutí\r\nzabodnutý\r\nzabodování\r\nzabodovaný\r\nzabodovat\r\nzabojování\r\nzabojovaný\r\nzabojovat\r\nzabolení\r\nzabolet\r\nzáborenský\r\nzábor\r\nZáborná\r\nzáborový\r\nzaboření\r\nzabořený\r\nZabořilová\r\nZabořil\r\nZabořilův\r\nzáboří\r\nzabořit\r\nzabořovat\r\nzabouchání\r\nzabouchaný\r\nzabouchat\r\nzabouchávání\r\nzabouchávaný\r\nzabouchávat\r\nzabouchnout\r\nzabouchnutí\r\nzabouchnutý\r\nzabouření\r\nzabouřený\r\nzabouřit\r\nzaboxovat\r\nzábradlíčko\r\nzábradlí\r\nzábrana\r\nzabranější\r\nzabránění\r\nzabráněný\r\nzabraní\r\nzabrání\r\nzabránit\r\nzábranný\r\nzabraňování\r\nzabraňovaný\r\nzabraňovat\r\nZábranský\r\nzabraňující\r\nzabraný\r\nzabrat\r\nzabrblání\r\nzabrblat\r\nZábrdí\r\nZábrdovice\r\nzábrdovický\r\nzábrdský\r\nzabrebtání\r\nzabrebtaný\r\nzabrebtat\r\nzabrečení\r\nzabrečet\r\nzabreptání\r\nzabreptaný\r\nzabreptat\r\nzabreptnout\r\nzabreptnutí\r\nzabreptnutý\r\nzabrnět\r\nzabrnkání\r\nzabrnkaný\r\nzabrnkat\r\nzabrnkávat\r\nzabroukání\r\nzabroukaný\r\nzabroukat\r\nzabrouknout\r\nzabrousit\r\nzabroušenější\r\nzabroušení\r\nzabroušený\r\nzabručení\r\nzabručený\r\nzabručet\r\nzabrumlání\r\nzabrumlaný\r\nzabrumlat\r\nzabrumlávání\r\nzabrumlávat\r\nzabruslení\r\nzabruslit\r\nzábrusový\r\nzabrušovanější\r\nzabrušování\r\nzabrušovaný\r\nzabrušovat\r\nzabrušující\r\nzabrzdění\r\nzabrzděný\r\nzabrzdit\r\nzabrzďování\r\nzabrzďovaný\r\nzabrzďovat\r\nzabředání\r\nzabředat\r\nzabředávání\r\nzabředávaný\r\nzabředávat\r\nzabředlejší\r\nzabřednout\r\nzabřednutí\r\nZábřeh\r\nzabřezávání\r\nzabřezávaný\r\nzabřezávat\r\nzabřezlý\r\nzabřeznout\r\nzabřeznutí\r\nzabřeznutý\r\nZábřežsko\r\nzábřežský\r\nzabřinkat\r\nzabříst\r\nzábst\r\nzabublání\r\nzabublat\r\nzabublávat\r\nzabubnování\r\nzabubnovaný\r\nzabubnovat\r\nzabučení\r\nzabučet\r\nzabudovanější\r\nzabudování\r\nzabudovaný\r\nzabudovat\r\nzabudovávanější\r\nzabudovávání\r\nzabudovávaný\r\nzabudovávat\r\nzaburácení\r\nzaburácet\r\nzabušení\r\nzabušený\r\nzabušit\r\nzabýčený\r\nzabydlejí\r\nzabydlenější\r\nzabydlení\r\nzabydlený\r\nzabydlet\r\nzabydlit\r\nzabydlování\r\nzabydlovaný\r\nzabydlovat\r\nzabydlovávání\r\nzabydlovávaný\r\nzabydlovávat\r\nzabydlující\r\nzabývající\r\nzabývání\r\nzabývat\r\nzabzíkat\r\nzabzučení\r\nzabzučený\r\nzabzučet\r\nzacákání\r\nzacákaný\r\nzacákat\r\nzacamrat\r\nzacelení\r\nzacelený\r\nzacelit\r\nzacelitelnější\r\nzacelování\r\nzacelovaný\r\nzacelovat\r\nzacelovávání\r\nzacelovávaný\r\nzacelovávat\r\nzacelující\r\nzacementování\r\nzacementovaný\r\nzacementovat\r\nzacementovávání\r\nzacementovávaný\r\nzacementovávat\r\nzacentrování\r\nzacentrovaný\r\nzacentrovat\r\nzacentrovávat\r\nzacílení\r\nzacílený\r\nzacílit\r\nzacilování\r\nzacilovaný\r\nzacilovat\r\nzacinkání\r\nzacinkaný\r\nzacinkat\r\nzacinknout\r\nzacitování\r\nzacitovaný\r\nzacitovat\r\nzaclánějící\r\nzaclánění\r\nzacláněný\r\nzaclánět\r\nzáclonářský\r\nzáclona\r\nzaclonění\r\nzacloněný\r\nzaclonit\r\nzáclonka\r\nzáclonovina\r\nzáclonový\r\nzacloumání\r\nzacloumaný\r\nzacloumat\r\nzacouvání\r\nzacouvaný\r\nzacouvat\r\nzacouvávání\r\nzacouvávat\r\nzacpanější\r\nzacpání\r\nzacpaný\r\nzacpat\r\nzacpávání\r\nzacpávaný\r\nzacpávat\r\nzacpávka\r\nzácpa\r\nzacucající\r\nzacucanější\r\nzacucání\r\nzacucaný\r\nzacucat\r\nzacucávat\r\nzacuchání\r\nzacuchaný\r\nzacuchat\r\nzacuchávat\r\nzacukání\r\nzacukat\r\nzacukávání\r\nzacukávat\r\nzaculení\r\nzaculit\r\nzacupitání\r\nzacupitat\r\nzacupitávání\r\nzacupitávat\r\nzacvakání\r\nzacvakat\r\nzacvakávací\r\nzacvakávání\r\nzacvakávaný\r\nzacvakávat\r\nzacvaknout\r\nzacvaknutí\r\nzacvaknutý\r\nzacválání\r\nzacválat\r\nzacválávání\r\nzacválávat\r\nzacvičenější\r\nzacvičení\r\nzacvičený\r\nzacvičit\r\nzacvičování\r\nzacvičovaný\r\nzacvičovat\r\nzacvičující\r\nzácvik\r\nzácvikový\r\nzacvrčet\r\nzacvrlikání\r\nzacvrlikaný\r\nzacvrlikat\r\nzacvrnkávání\r\nzacvrnkávaný\r\nzacvrnkávat\r\nzacyklení\r\nzacyklený\r\nzacyklit\r\nzacyklování\r\nzacyklovaný\r\nzacyklovat\r\nzacyklovávání\r\nzacyklovávaný\r\nzacyklovávat\r\nzač\r\nzačaděný\r\nzačadit\r\nzačárat\r\nzačárkovat\r\nzačarování\r\nzačarovaný\r\nzačarovat\r\nzačastý\r\nzačátečnice\r\nzačátečnický\r\nzačátečník\r\nzačátečníkův\r\nzačáteční\r\nzačátek\r\nzačátkem\r\nzačátku\r\nzačatý\r\nzačazení\r\nzačazený\r\nzačenichání\r\nzačenichat\r\nzačepení\r\nzačepený\r\nzačepit\r\nzačernalejší\r\nzačernalý\r\nzačernání\r\nzačernaný\r\nzačernat\r\nzačernění\r\nzačerněný\r\nzačernit\r\nzačerňování\r\nzačerňovaný\r\nzačerňovat\r\nzačerpání\r\nzačervenalejší\r\nzačervenalý\r\nzačervenání\r\nzačervenat\r\nzačervenění\r\nzačerveněný\r\nzačervenit\r\nzačesanější\r\nzačesání\r\nzačesaný\r\nzačesat\r\nzačesávání\r\nzačesávaný\r\nzačesávat\r\nzačetí\r\nzačichání\r\nzačichaný\r\nzačichat\r\nzačínající\r\nzačínání\r\nzačínaný\r\nzačínat\r\nzačiřikání\r\nzačiřikat\r\nzačíst\r\nzačistění\r\nzačistit\r\nzačisťovat\r\nzačišťování\r\nzačišťovaný\r\nzačišťovat\r\nzačít\r\nzačíti\r\nzačleněnější\r\nzačlenění\r\nzačleněný\r\nzačlenit\r\nzačlenitelnější\r\nzačlenitelný\r\nzačleňování\r\nzačleňovaný\r\nzačleňovat\r\nzačleňující\r\nzačmárání\r\nzačmáraný\r\nzačmárat\r\nzačmuchání\r\nzačmuchat\r\nzačmuchávat\r\nzačoudit\r\nzačouzenější\r\nzačouzený\r\nzačpak\r\nzačpění\r\nzačpět\r\nzačpít\r\nzačtenější\r\nzačtení\r\nzačtený\r\nzačuchání\r\nzačuchat\r\nzačutnout\r\nzačutnutí\r\nzačutnutý\r\nzačuzený\r\nzad\r\nZadáková\r\nzadák\r\nZadák\r\nZadákův\r\nzadákův\r\nzáda\r\nzadanější\r\nzadání\r\nzadaný\r\nzadaptování\r\nzadaptovaný\r\nzadaptovat\r\nzadaptovávání\r\nzadaptovávaný\r\nzadaptovávat\r\nZáda\r\nzadarmo\r\nzadatelnější\r\nzadat\r\nzadávací\r\nzadávající\r\nzadávající\r\nzadávanější\r\nzadávánější\r\nzadávání\r\nzadávaný\r\nzadáváný\r\nzadavatelčin\r\nzadavatelka\r\nzadavatelský\r\nzadavatel\r\nzadavatelův\r\nzadávat\r\nzadávení\r\nzadávený\r\nzadávit\r\nzadeček\r\nzadefinovanější\r\nzadefinování\r\nzadefinovaný\r\nzadefinovat\r\nzadefinovatelnější\r\nzadefinovatelný\r\nzadefinovávanější\r\nzadefinovávání\r\nzadefinovávaný\r\nzadefinovávat\r\nzadehtování\r\nzadehtovaný\r\nzadehtovat\r\nzádech\r\nzadek\r\nzadekretování\r\nzadekretovaný\r\nzadekretovat\r\nzadělání\r\nzadělaný\r\nzadělat\r\nzadělávací\r\nzadělávání\r\nzadělávaný\r\nzadělávat\r\nzadělávka\r\nzadem\r\nzáděra\r\nzádíčka\r\nzadinový\r\nzadírající\r\nzadíranější\r\nzadírání\r\nzadíraný\r\nzadíratelnější\r\nzadíratelný\r\nzadírat\r\nzadívání\r\nzadívaný\r\nzadívat\r\nzadlabání\r\nzadlabaný\r\nzadlabat\r\nzadlabávání\r\nzadlabávaný\r\nzadlabávat\r\nzadlouho\r\nzadluženější\r\nzadlužení\r\nzadlužený\r\nzadlužit\r\nzadlužování\r\nzadlužovaný\r\nzadlužovat\r\nzadnější\r\nzadnice\r\nzadnička\r\nzadní\r\nzadobře\r\nzadokumentování\r\nzadokumentovaný\r\nzadokumentovat\r\nZádo\r\nzadost\r\nzadostiučinění\r\nzadostučinění\r\nzadout\r\nzadovádění\r\nzadovádět\r\nZádová\r\nzadovka\r\nzádový\r\nzáďový\r\nzadrápnout\r\nzadrápnutí\r\nzadrápnutý\r\nzadrátování\r\nzadrátovaný\r\nzadrátovat\r\nzadra\r\nZadražilová\r\nZadražil\r\nZadražilův\r\nzadresnění\r\nzadresněný\r\nzadresnit\r\nzadrhání\r\nzadrhat\r\nzadrhávající\r\nzadrhávání\r\nzadrhávat\r\nzádrhelovitý\r\nzádrhel\r\nzadrhnout\r\nzadrhnutější\r\nzadrhnutí\r\nzadrhnutý\r\nzadrhovaný\r\nzadrhovat\r\nzadrhující\r\nzadriblovat\r\nzadrkotání\r\nzadrkotat\r\nzadrmolení\r\nzadrmolený\r\nzadrmolit\r\nzadrnčení\r\nzadrnčet\r\nzadrnkat\r\nzádruha\r\nzadrženější\r\nzadrženější\r\nzadržení\r\nzadržený\r\nzadržet\r\nzadržitelnější\r\nzadržitelný\r\nzádržný\r\nzadržovací\r\nzadržovanější\r\nzadržování\r\nzadržovaný\r\nzadržovat\r\nzadržující\r\nzádrž\r\nzadřenější\r\nzadření\r\nzadřený\r\nzadřít\r\nzadudání\r\nzadudat\r\nzáducha\r\nzadumanější\r\nzadumání\r\nzadumaný\r\nzadumat\r\nzádumčivější\r\nzádumčivý\r\nzadunění\r\nzadunět\r\nzadupanější\r\nzadupání\r\nzadupaný\r\nzadupat\r\nzadupávanější\r\nzadupávání\r\nzadupávaný\r\nzadupávat\r\nzadupnout\r\nzadupnutější\r\nzadupnutí\r\nzadupnutý\r\nzadupnutý\r\nzadupu\r\nzadusanější\r\nzadusání\r\nzadusaný\r\nzadusat\r\nzadusávání\r\nzadusávaný\r\nzadusávat\r\nzadusit\r\nzadušenější\r\nzadušení\r\nzadušený\r\nzáduší\r\nzádušní\r\nzadutí\r\nzadutý\r\nZádův\r\nZádveřice\r\nzádveřický\r\nzadýchanější\r\nzadýchání\r\nzadýchaný\r\nzadýchat\r\nzadýchávání\r\nzadýchávat\r\nzadýmený\r\nzadýmovací\r\nzáď\r\nzaevidování\r\nzaevidovaný\r\nzaevidovat\r\nzaevidovávání\r\nzaevidovávaný\r\nzaevidovávat\r\nzaexperimentování\r\nzaexperimentovaný\r\nzaexperimentovat\r\nzafačování\r\nzafačovaný\r\nzafačovat\r\nzafandění\r\nzafandit\r\nzafaxování\r\nzafaxovaný\r\nzafaxovat\r\nzafičení\r\nzafičet\r\nzafidlat\r\nzafilozofování\r\nzafilozofovat\r\nzafinancování\r\nzafinancovaný\r\nzafinancovat\r\nzafinancovávání\r\nzafinancovávaný\r\nzafinancovávat\r\nzafixlování\r\nzafixlovaný\r\nzafixlovat\r\nzafixování\r\nzafixovaný\r\nzafixovat\r\nzaflikování\r\nzaflikovaný\r\nzaflikovat\r\nzaflirtování\r\nzaflirtovat\r\nzafňukání\r\nzafňukat\r\nzafoukat\r\nzafouknout\r\nzafouknutí\r\nzafouknutý\r\nZafranovičová\r\nZafranovič\r\nZafranovičův\r\nzafrkání\r\nzafrkaný\r\nzafrkat\r\nzafučení\r\nzafučet\r\nzáfuk\r\nzafukování\r\nzafukovaný\r\nzafukovat\r\nzafukovávání\r\nzafukovávaný\r\nzafukovávat\r\nzafunění\r\nzafunět\r\nzafungování\r\nzafungovaný\r\nzafungovat\r\nzagestikulovat\r\nzagitovat\r\nzaglosování\r\nzaglosovat\r\nZagora\r\nZagorová\r\nZagorův\r\nzaháčkování\r\nzaháčkovaný\r\nzaháčkovat\r\nzáhada\r\nzáhadnější\r\nzáhadný\r\nzahafat\r\nzahájení\r\nzahájený\r\nzahájit\r\nzahajlování\r\nzahajlovaný\r\nzahajlovat\r\nzahajovací\r\nzahajování\r\nzahajovaný\r\nzahajovat\r\nZahajský\r\nzahajující\r\nzaháknout\r\nzaháknutí\r\nzaháknutý\r\nzahákování\r\nzahákovaný\r\nzahákovat\r\nzahalasení\r\nzahalasený\r\nzahalasit\r\nzahálčivější\r\nzahálčivý\r\nzaháleč\r\nzahálečův\r\nzahálející\r\nzahalekání\r\nzahalekaný\r\nzahalekat\r\nzahalenější\r\nzahalení\r\nzahálení\r\nzahalený\r\nzahálet\r\nzahalit\r\nzahalitelnější\r\nzahalitelný\r\nZahálka\r\nzahálka\r\nZahálková\r\nZahálkův\r\nzahalování\r\nzahalovaný\r\nzahalovat\r\nzahalovávání\r\nzahalovávaný\r\nzahalovávat\r\nzahalující\r\nzahanbenější\r\nzahanbení\r\nzahanbený\r\nzahanbit\r\nzahanbování\r\nzahanbovaný\r\nzahanbovat\r\nzahanbující\r\nzahánějící\r\nzaháněnější\r\nzahánění\r\nzaháněný\r\nzahánět\r\nZaháňský\r\nzaháňský\r\nzaharašit\r\nzahartusení\r\nzahartusit\r\nzaházenější\r\nzaházení\r\nzaházený\r\nzaházet\r\nzahazování\r\nzahazovaný\r\nzahazovat\r\nzahazující\r\nzahekání\r\nzahekat\r\nzahihňání\r\nzahihňat\r\nzahladit\r\nzahlaholit\r\nzahlásit\r\nzahlasování\r\nzahlasovaný\r\nzahlasovat\r\nzahlášenější\r\nzahlášení\r\nzahlášený\r\nzahlašovanější\r\nzahlašovaní\r\nzahlašování\r\nzahlašovaný\r\nzahlašovat\r\nzahlašovávat\r\nzáhlaví\r\nzáhlavní\r\nzahlazení\r\nzahlazený\r\nzahlazování\r\nzahlazovaný\r\nzahlazovat\r\nzahlazující\r\nzahlcenější\r\nzahlcení\r\nzahlcený\r\nzahlcování\r\nzahlcovaný\r\nzahlcovat\r\nzahlcovávání\r\nzahlcovávaný\r\nzahlcovávat\r\nzahlcující\r\nzahleděnější\r\nzahledění\r\nzahleděný\r\nzahledět\r\nzahlédnout\r\nzahlédnul\r\nzahlédnutější\r\nzahlédnutí\r\nzahlédnutý\r\nzahlédnutý\r\nzahlenění\r\nzahleněný\r\nzahlenit\r\nzahlídnout\r\nzahlídnul\r\nzahlinění\r\nzahlížející\r\nzahlížení\r\nzahlíženo\r\nzahlížet\r\nzahlodat\r\nzahlodávat\r\nzahloubání\r\nzahloubaný\r\nzahloubat\r\nzahloubávání\r\nzahloubávat\r\nzahloubenina\r\nzahloubení\r\nzahloubený\r\nzahloubit\r\nzahltit\r\nzahlubovací\r\nzahlubování\r\nzahlubovaný\r\nzahlubovat\r\nzahlučení\r\nzahlučet\r\nzahlušenější\r\nzahlušení\r\nzahlušený\r\nzahlušit\r\nzahlušování\r\nzahlušovaný\r\nzahlušovat\r\nzahlušující\r\nzahmatání\r\nzahmataný\r\nzahmatat\r\nzahmyzenější\r\nzahmyzit\r\nzahnal\r\nzahnanější\r\nzahnání\r\nzahnán\r\nzahnaný\r\nzahnat\r\nzáhněda\r\nzahnědlý\r\nzáhnědový\r\nzahnít\r\nzahnití\r\nzahnívající\r\nzahnívání\r\nzahnívaný\r\nzahnívat\r\nzahnízdění\r\nzahnízděný\r\nzahnízdit\r\nzahnizďovat\r\nzahnojenější\r\nzahnout\r\nzahnutější\r\nzahnutí\r\nzahnutý\r\nzahnutý\r\nzahodit\r\nzáhodnější\r\nzáhodno\r\nzáhodný\r\nzahojení\r\nzahojený\r\nzahojit\r\nzáhonek\r\nzáhon\r\nzáhon\r\nzáhonový\r\nZáhora\r\nzahorka\r\nZáhorová\r\nZáhorovice\r\nzáhorovický\r\nZáhorský\r\nZáhorův\r\nZáhořanský\r\nzahoření\r\nzahořený\r\nzahořet\r\nzahořklejší\r\nzahořklý\r\nzahořknout\r\nzahořknutí\r\nzahořování\r\nzahoukání\r\nzahoukaný\r\nzahoukat\r\nzahouknout\r\nzahoupání\r\nzahoupaný\r\nzahoupat\r\nzahoust\r\nzahoustnout\r\nzahoustnutí\r\nzahozenější\r\nzahození\r\nzahozený\r\nzahrabanější\r\nzahrabání\r\nzahrabaný\r\nzahrabat\r\nzahrabávání\r\nzahrabávaný\r\nzahrabávat\r\nzáhrab\r\nzahrábnout\r\nzahrábnutější\r\nzahrábnutí\r\nzahrábnutý\r\nzahrabování\r\nzahrabovaný\r\nzahrabovat\r\nzahrabovávání\r\nzahrabovávaný\r\nzahrabovávat\r\nzahrada\r\nzahrádečka\r\nZahradilová\r\nZahradil\r\nZahradilův\r\nzahradit\r\nZahrádka\r\nzahrádkářčin\r\nzahrádkářka\r\nzahrádkářský\r\nzahrádkářství\r\nzahrádkář\r\nzahrádkářův\r\nzahrádka\r\nZahrádková\r\nzahrádkový\r\nZahrádkův\r\nzahradnice\r\nzahradnický\r\nzahradnictví\r\nZahradníček\r\nzahradničení\r\nzahradničený\r\nzahradničin\r\nzahradničit\r\nZahradníčková\r\nZahradníčkův\r\nzahradničtější\r\nZahradníková\r\nzahradník\r\nZahradník\r\nZahradníkův\r\nzahradníkův\r\nzahradní\r\nzahradní\r\nzahranější\r\nzahranění\r\nzahraněný\r\nzahraničí\r\nzahraničněobchodní\r\nzahraničněpolitický\r\nzahraniční\r\nzahrání\r\nzahranit\r\nzahraňování\r\nzahraňovaný\r\nzahraňovat\r\nzahraný\r\nzahrát\r\nzahrávanější\r\nzahrávání\r\nzahrávaný\r\nzahrávat\r\nzahrazenější\r\nzahrazení\r\nzahrazený\r\nzahrazování\r\nzahrázování\r\nzahrazovaný\r\nzahrazovat\r\nzahrazující\r\nzahrčení\r\nzahrčet\r\nzahrkat\r\nzahrkotání\r\nzahrkotat\r\nzahrnout\r\nzahrnovanější\r\nzahrnování\r\nzahrnovaný\r\nzahrnovat\r\nzahrnující\r\nzahrnutí\r\nzahrnutý\r\nzahrnutý\r\nzáhrobí\r\nzáhrobní\r\nzahrocenější\r\nzahromovat\r\nzahrození\r\nzahrozený\r\nzahrozit\r\nzahryzat\r\nzahryzávání\r\nzahryzávaný\r\nzahryzávat\r\nzahryznout\r\nzahryznutí\r\nzahryznutý\r\nzahřání\r\nzahřát\r\nzahřátější\r\nzahřátí\r\nzahřátý\r\nZáhřeb\r\nzáhřebský\r\nzáhřebský\r\nzahřešení\r\nzahřešený\r\nzahřešit\r\nzáhřevný\r\nzahřímání\r\nzahřímaný\r\nzahřímat\r\nzahřívací\r\nzahřívající\r\nzahřívanější\r\nzahřívání\r\nzahřívaný\r\nzahřívat\r\nzahřmění\r\nzahřmět\r\nzahřmít\r\nzahřmotit\r\nzáhuba\r\nzahubení\r\nzahubený\r\nzahubit\r\nzahubitelnější\r\nzahubitelný\r\nzahubovat\r\nzahučení\r\nzahučet\r\nzahudení\r\nzahudlat\r\nzahudl\r\nzahudrat\r\nzahudrovat\r\nzahudu\r\nzahuhlání\r\nzahuhlaný\r\nzahuhlat\r\nzahuhňat\r\nzahulákání\r\nzahulákaný\r\nzahulákat\r\nzahulit\r\nzáhumenek\r\nzáhumenka\r\nzáhumenkový\r\nzahustit\r\nzahuštěnější\r\nzahuštění\r\nzahuštěný\r\nzahušťovací\r\nzahušťovač\r\nzahušťovadlo\r\nzahušťování\r\nzahušťovaný\r\nzahušťovat\r\nzahušťující\r\nzahvízdání\r\nzahvízdaný\r\nzahvízdat\r\nzahvízdnout\r\nzahvízdnutí\r\nzahvízdnutý\r\nzáhy\r\nzahýbací\r\nzahýbající\r\nzahýbání\r\nzahýbat\r\nzahýbávání\r\nzahýbávat\r\nzáhyb\r\nzáhybkovací\r\nzáhybkování\r\nzáhybkovaný\r\nzáhybkovat\r\nzahýkání\r\nzahýkat\r\nzahynout\r\nzahynulý\r\nzahynutí\r\nzahýření\r\nzahýřený\r\nzahýřit\r\nzahysterčit\r\nZachariášová\r\nZachariáš\r\nZachariášův\r\nZacharová\r\nZachar\r\nZacharův\r\nzacházející\r\nzacházení\r\nzacházeno\r\nzacházet\r\nzacházívat\r\nzacházka\r\nzachce\r\nzachechtání\r\nzachechtat\r\nZacheus\r\nZacheův\r\nzachichotání\r\nzachichotat\r\nzachichtání\r\nzachichtat\r\nzachladit\r\nzachlazenější\r\nzachlazení\r\nzachlazený\r\nzachmuřenější\r\nzachmuření\r\nzachmuřený\r\nzachmuřit\r\nzachmuřování\r\nzachmuřovaný\r\nzachmuřovat\r\nzachňapání\r\nzachňapaný\r\nzachňapat\r\nzáchodek\r\nzáchod\r\nzáchodkový\r\nzáchod\r\nzáchodový\r\nZachotín\r\nzachotínský\r\nzachovalejší\r\nZachovalová\r\nZachoval\r\nZachovalův\r\nzachovalý\r\nzachovanější\r\nzachování\r\nzachovaný\r\nzachovat\r\nzachovávající\r\nzachovávání\r\nzachovávaný\r\nzachovávat\r\nZachová\r\nzáchovnější\r\nzáchovný\r\nZach\r\nzáchranářský\r\nzáchranářství\r\nzáchranář\r\nzáchranářův\r\nzáchrana\r\nzachránce\r\nzachráncův\r\nzachráněnější\r\nzachránění\r\nzachráněný\r\nzachránit\r\nzáchranka\r\nzachránkyně\r\nzachránkynin\r\nzáchranný\r\nzachraňovací\r\nzachraňování\r\nzachraňovaný\r\nzachraňovat\r\nzachraňující\r\nzachraptěný\r\nzachrastění\r\nzachrastit\r\nzachrčení\r\nzachrčet\r\nzachrchlání\r\nzachrchlat\r\nzachrochtání\r\nzachrochtat\r\nzachroptěný\r\nzachroptět\r\nzachroptit\r\nzachroupání\r\nzachroupat\r\nzachřestění\r\nzachřestit\r\nzachtěl\r\nzachtělo\r\nzachtění\r\nzachtít\r\nzachumelení\r\nzachumelený\r\nzachumelit\r\nzachumlání\r\nzachumlaný\r\nzachumlat\r\nzachumlávání\r\nzachumlávaný\r\nzachumlávat\r\nzachutnání\r\nzachutnat\r\nZachův\r\nzachvácení\r\nzachvácený\r\nzachvacování\r\nzachvacovaný\r\nzachvacovat\r\nzachvacující\r\nzáchvat\r\nzachvátit\r\nzáchvatovitý\r\nzachvění\r\nzachvět\r\nzáchvěv\r\nzachvívání\r\nzachvívat\r\nzachybování\r\nzachybovaný\r\nzachybovat\r\nzachycenější\r\nzachycení\r\nzachycený\r\nzachycovač\r\nzachycovanější\r\nzachycování\r\nzachycovaný\r\nzachycovat\r\nzachycovávání\r\nzachycovávaný\r\nzachycovávat\r\nzachycující\r\nzachytání\r\nzachytat\r\nzachytávající\r\nzachytávání\r\nzachytávaný\r\nzachytávat\r\nzáchyt\r\nzachytit\r\nzachytitelnější\r\nzachytitelný\r\nzáchytka\r\nzáchytnost\r\nzachytnout\r\nzachytnutí\r\nzachytnutý\r\nzáchytný\r\nzaimponování\r\nzaimponovat\r\nzaimprovizování\r\nzaimprovizovaný\r\nzaimprovizovat\r\nzaintegrování\r\nzaintegrovaný\r\nzaintegrovat\r\nzaintegrovávání\r\nzaintegrovávaný\r\nzaintegrovávat\r\nzainteresovanější\r\nzainteresování\r\nzainteresovaný\r\nzainteresovat\r\nzainteresovávání\r\nzainteresovávaný\r\nzainteresovávat\r\nzainvestování\r\nzainvestovaný\r\nzainvestovat\r\nzainvestovávání\r\nzainvestovávaný\r\nzainvestovávat\r\nZair\r\nzairský\r\nZaiřančin\r\nZaiřanka\r\nZaiřan\r\nZaiřanův\r\nzaisolování\r\nzaisolovaný\r\nzaisolovat\r\nzaisolovávání\r\nzaisolovávaný\r\nzaisolovávat\r\nzaizolování\r\nzaizolovaný\r\nzaizolovat\r\nzaizolovávání\r\nzaizolovávaný\r\nzaizolovávat\r\nzajal\r\nzajamovat\r\nzajásání\r\nzajásat\r\nzajatcův\r\nzajatecký\r\nzajatec\r\nzajatečtější\r\nzajatější\r\nzajatkyně\r\nzajatkynin\r\nzajat\r\nzajatý\r\nzajatý\r\nzajda\r\nzajdu\r\nzaječení\r\nzaječený\r\nzaječet\r\nzaječice\r\nzaječí\r\nzaječka\r\nZaječov\r\nzaječovský\r\nzajedení\r\nzajedený\r\nzajedno\r\nzajedu\r\nzajektání\r\nzajektaný\r\nzajektat\r\nzajel\r\nzájemce\r\nzájemcův\r\nzájemkyně\r\nzájemkynin\r\nzájem\r\nzajení\r\nzajetější\r\nzajeti\r\nzajet\r\nzajetí\r\nzajetý\r\nzájezdecký\r\nZájezdec\r\nzajezdění\r\nzajezděný\r\nzájezd\r\nzajezdit\r\nzájezdní\r\nzájezdový\r\nZajícová\r\nzajícovitý\r\nzajíc\r\nZajíc\r\nZajícův\r\nzajícův\r\nzajíček\r\nZajíček\r\nZajíčková\r\nZajíčkov\r\nzajíčkovský\r\nZajíčkův\r\nzajíčkův\r\nzajídání\r\nzajídaný\r\nzajídat\r\nzajídávání\r\nzajídávaný\r\nzajídávat\r\nzajíkající\r\nzajíkání\r\nzajíkaný\r\nzajíkat\r\nzajíkávání\r\nzajíkávat\r\nzajíkavější\r\nzajíkavý\r\nzajiknout\r\nzajíknout\r\nzajíknutí\r\nzajímající\r\nzajímanější\r\nzajímání\r\nzajímaný\r\nzajímatelnější\r\nzajímatelnější\r\nzajímatelný\r\nzajímat\r\nzajímavější\r\nzajímavůstka\r\nzajímavý\r\nzajiskření\r\nzajiskřit\r\nzajisté\r\nzajistit\r\nzajistitelnější\r\nzajistitel\r\nzajistitelův\r\nzajíst\r\nzajistné\r\nzajištěnější\r\nzajištění\r\nzajištěný\r\nzajišťovací\r\nzajišťovanější\r\nzajišťování\r\nzajišťovaný\r\nzajišťovat\r\nzajištující\r\nzajišťující\r\nzajišující\r\nzajít\r\nzajití\r\nzajizvení\r\nzajizvený\r\nzajizvit\r\nzajizvovat\r\nzajiždějící\r\nzajíždějící\r\nzajíždění\r\nzajížděný\r\nzajíždět\r\nzajížďka\r\nzájmene\r\nzájmenný\r\nzájmeno\r\nzajmout\r\nzájmovější\r\nzájmový\r\nzájmu\r\nzajmu\r\nzajmutí\r\nzajódlování\r\nzajódlovaný\r\nzajódlovat\r\nzajukat\r\nzák\r\nzakabelování\r\nzakabelovaný\r\nzakabelovat\r\nzakaboněnější\r\nzakabonění\r\nzakaboněný\r\nzakabonit\r\nzakademizovaný\r\nzakademizovat\r\nzákalek\r\nzakalenější\r\nzakalení\r\nzakalený\r\nzákal\r\nzakalit\r\nzakalkulování\r\nzakalkulovaný\r\nzakalkulovat\r\nzakalkulovávání\r\nzakalkulovávaný\r\nzakalkulovávat\r\nzákalný\r\nzakalovanější\r\nzakalování\r\nzakalovaný\r\nzakalovat\r\nzakalovávání\r\nzakalovávaný\r\nzakalovávat\r\nzákalový\r\nzakamuflování\r\nzakamuflovaný\r\nzakamuflovat\r\nzakamuflovávání\r\nzakamuflovávaný\r\nzakamuflovávat\r\nzakaňkání\r\nzakaňkaný\r\nzakaňkat\r\nzakapanější\r\nzakapání\r\nzakapaný\r\nzakapat\r\nzakapávání\r\nzakapávaný\r\nzakapávat\r\nzakápnout\r\nzakápnutí\r\nzakápnutý\r\nzakapu\r\nzakarpatský\r\nzakašlání\r\nzakašlat\r\nzakavkazí\r\nZakavkazsko\r\nzakavkazský\r\nzakázanější\r\nzakázání\r\nzakázán\r\nzakázaný\r\nzakázat\r\nzakazatelnější\r\nzakazatelný\r\nzákaz\r\nzakázka\r\nzakázkový\r\nzákaznice\r\nzákaznický\r\nzákaznictvo\r\nzákazničin\r\nzákazničtější\r\nzákazník\r\nzákazníkův\r\nzakazovací\r\nzakazovanější\r\nzakazování\r\nzakazovaný\r\nzakazovat\r\nzákazový\r\nzakazující\r\nzakáži\r\nzakceschopnění\r\nzakceschopněný\r\nzakceschopnit\r\nzakčnět\r\nzakdákání\r\nzakdákaný\r\nzakdákat\r\nzakecání\r\nzakecat\r\nzákeřnější\r\nzákeřník\r\nzákeřníkův\r\nzákeřný\r\nzakládací\r\nzakladač\r\nzakládající\r\nzakládájící\r\nzákladající\r\nzakládanější\r\nzakládání\r\nzakládaný\r\nzakladatelčin\r\nzakladatelka\r\nzakladatelnější\r\nzakladatelný\r\nzakladatelský\r\nzakladatelství\r\nzakladatel\r\nzakladatelův\r\nzakládat\r\nzákladě\r\nzáklad\r\nzákladka\r\nzákladkový\r\nzákladna\r\nzákladnější\r\nzákladní\r\nzákladnový\r\nzákladování\r\nzákladovější\r\nzákladový\r\nzaklánění\r\nzakláněný\r\nzaklánět\r\nzaklapání\r\nzaklapaný\r\nzaklapat\r\nzaklapávání\r\nzaklapávat\r\nzaklápěcí\r\nzaklápěný\r\nzaklapnout\r\nzaklapnutí\r\nzaklapnutý\r\nzaklapovat\r\nZáklasníková\r\nZáklasník\r\nZáklasníkův\r\nzakleji\r\nzaklekávat\r\nzakleknout\r\nzakleknutí\r\nzakleknutý\r\nzaklel\r\nzaklenější\r\nzaklení\r\nzaklenutí\r\nzaklenutý\r\nzaklepanější\r\nzaklepání\r\nzaklepaný\r\nzaklepat\r\nzaklepávací\r\nzaklepávající\r\nzaklepávanější\r\nzaklepávání\r\nzaklepávaný\r\nzaklepávat\r\nzaklepnout\r\nzaklepnutější\r\nzaklepnutí\r\nzaklepnutý\r\nzaklepnutý\r\nzakleslejší\r\nzaklesnout\r\nzaklesnutí\r\nzaklesnutý\r\nzakletější\r\nzakletí\r\nzaklet\r\nzakletý\r\nzaklíčování\r\nzaklíčovaný\r\nzaklíčovat\r\nzaklíčovávání\r\nzaklíčovávaný\r\nzaklíčovávat\r\nzaklikacení\r\nzaklikacený\r\nzaklikání\r\nzaklikatit\r\nzaklikat\r\nzaklikávání\r\nzaklikávaný\r\nzaklikávat\r\nzakliknout\r\nzakliknutí\r\nzaklínací\r\nzaklínačka\r\nzaklínač\r\nzaklínačův\r\nzaklínadlo\r\nzaklínající\r\nzaklínání\r\nzaklínaný\r\nzaklínat\r\nzaklínění\r\nzaklíněný\r\nzaklínit\r\nzaklinkání\r\nzaklinkaný\r\nzaklinkat\r\nzakliňování\r\nzaklínování\r\nzakliňovaný\r\nzaklínovaný\r\nzakliňovat\r\nzaklínovat\r\nzaklít\r\nzaklížit\r\nzaklokotání\r\nzaklokotat\r\nzakloktání\r\nzakloktaný\r\nzakloktat\r\nzakloktávání\r\nzakloktávat\r\nzakloněnější\r\nzaklonění\r\nzakloněný\r\nzáklon\r\nzaklonit\r\nzaklopení\r\nzaklopený\r\nzaklopit\r\nzáklopka\r\nzáklopový\r\nzaklouzávání\r\nzaklouzávat\r\nzaklusání\r\nzaklusat\r\nzákluz\r\nzakluzování\r\nzakluzovat\r\nzákluzový\r\nzakmenění\r\nzakmitání\r\nzakmitat\r\nzakmitávání\r\nzakmitávat\r\nzákmit\r\nzakničení\r\nzakničený\r\nzakničet\r\nzakničivější\r\nzakničivý\r\nzaknihování\r\nzaknihovaný\r\nzaknihovat\r\nzaknihovávání\r\nzaknihovávaný\r\nzaknihovávat\r\nzakňourání\r\nzakňouraný\r\nzakňourat\r\nzakňučení\r\nzakňučet\r\nzakódování\r\nzakódovaný\r\nzakódovat\r\nzakódovávání\r\nzakódovávaný\r\nzakódovávat\r\nzakoketování\r\nzakoketovaný\r\nzakoketovat\r\nzakokrhání\r\nzakokrhaný\r\nzakokrhat\r\nzakoktání\r\nzakoktat\r\nzakoktávat\r\nzakolébáno\r\nzakolébat\r\nzakolísání\r\nzakolísaný\r\nzakolísat\r\nzakolísávání\r\nzakolísávat\r\nzákolník\r\nzakomentovanější\r\nzakomentování\r\nzakomentovaný\r\nzakomentovat\r\nzakompilování\r\nzakompilovaný\r\nzakompilovat\r\nzakomplexovanější\r\nzakomplexovaný\r\nzakomponování\r\nzakomponovaný\r\nzakomponovat\r\nzakomponovávání\r\nzakomponovávaný\r\nzakomponovávat\r\nzakomunikování\r\nzakomunikovaný\r\nzakomunikovat\r\nzakomunikovávání\r\nzakomunikovávaný\r\nzakomunikovávat\r\nzakoncentrování\r\nzakoncentrovaný\r\nzakoncentrovat\r\nzakoncentrovávat\r\nzakončení\r\nzakončený\r\nzakončit\r\nzakončovací\r\nzakončování\r\nzakončovaný\r\nzakončovat\r\nzakončující\r\nzákoník\r\nzákoníkův\r\nzákonitější\r\nzákonitý\r\nzákon\r\nzákonnější\r\nzákonný\r\nzákonodárce\r\nzákonodárcův\r\nzákonodárka\r\nzákonodárnější\r\nzákonodárný\r\nzákonodárství\r\nzakonspirování\r\nzakonspirovaný\r\nzakonspirovat\r\nzakontrování\r\nzakontrovat\r\nzakonzervování\r\nzakonzervovaný\r\nzakonzervovat\r\nZakopalová\r\nZakopal\r\nZakopalův\r\nzakopanější\r\nzakopání\r\nzakopaný\r\nzakopat\r\nzakopávání\r\nzakopávaný\r\nzakopávat\r\nzákop\r\nzakopnout\r\nzakopnutí\r\nzakopnutý\r\nzákopový\r\nzakormidlování\r\nzakormidlovaný\r\nzakormidlovat\r\nzakořenělejší\r\nzakořeněnější\r\nzakořenění\r\nzakořeněný\r\nzakořenit\r\nzakořeňovat\r\nzakótování\r\nzakótovaný\r\nzakótovat\r\nzakotvenější\r\nzakotvení\r\nzakotvený\r\nzakotvit\r\nzakotvování\r\nzakotvovaný\r\nzakotvovat\r\nzakotvující\r\nZákoucký\r\nzakoukání\r\nzakoukaný\r\nzakoukat\r\nzakoulení\r\nzakoulený\r\nzakoulet\r\nzakoupení\r\nzakoupený\r\nzakoupit\r\nzakouřenější\r\nzakouření\r\nzakouřený\r\nzakouřit\r\nzakousávající\r\nzakousávanější\r\nzakousávání\r\nzakousávaný\r\nzakousávat\r\nzakousnout\r\nzakousnutější\r\nzakousnutí\r\nzakousnutý\r\nzakousnutý\r\nzakoušející\r\nzakoušení\r\nzakoušený\r\nzakoušet\r\nzákoutí\r\nzakování\r\nzakovaný\r\nzakovat\r\nzakovávání\r\nzakovávaný\r\nzakovávat\r\nzákožka\r\nzákožkovitý\r\nzakrajování\r\nzakrajovaný\r\nzakrajovat\r\nzakrajovávání\r\nzakrajovávaný\r\nzakrajovávat\r\nzakrakání\r\nzakrákání\r\nzakrakaný\r\nzakrákaný\r\nzakrakat\r\nzakrákat\r\nzakrákorání\r\nzakrákorat\r\nzakramařit\r\nzakrápěný\r\nzakrátko\r\nZákravský\r\nzákres\r\nzakreslenější\r\nzakreslení\r\nzakreslený\r\nzakreslit\r\nzakreslování\r\nzakreslovaný\r\nzakreslovat\r\nzakreslovávání\r\nzakreslovávaný\r\nzakreslovávat\r\nzakreslující\r\nzákristie\r\nzakrnělejší\r\nzakrnělý\r\nzakrnění\r\nzakrněný\r\nzakrnět\r\nzakrňování\r\nzakrňovaný\r\nzakrňovat\r\nzakročení\r\nzakročený\r\nzakročit\r\nzakročování\r\nzakročovaný\r\nzakročovat\r\nzakročující\r\nzakrojenější\r\nzakrojení\r\nzakrojený\r\nzakrojit\r\nzakrojovat\r\nzákrok\r\nzakroucenější\r\nzakroucení\r\nzakroucený\r\nzakroutit\r\nzakroužení\r\nzakroužit\r\nzakroužkování\r\nzakroužkovaný\r\nzakroužkovat\r\nzakroužkovávání\r\nzakroužkovávaný\r\nzakroužkovávat\r\nzakrsávání\r\nzakrsávat\r\nzákrsek\r\nzakrslejší\r\nzakrslík\r\nzakrslíkův\r\nzakrslý\r\nzakrsnout\r\nzakrucování\r\nzakrucovat\r\nzakručení\r\nzakručet\r\nzákruta\r\nzákrut\r\nzákrutovací\r\nzákrutování\r\nzákrutovaný\r\nzákrutovat\r\nzakružovací\r\nzakružovačka\r\nzakružování\r\nzakružovaný\r\nzakružovat\r\nzakrvácenější\r\nzakrvácení\r\nzakrvácený\r\nzakrvácet\r\nzakrvavělejší\r\nzakrvavělý\r\nzakrvavenější\r\nzakrvavění\r\nzakrvavený\r\nzakrvavět\r\nzakryptování\r\nzakryptovaný\r\nzakryptovat\r\nzakryptovávání\r\nzakryptovávaný\r\nzakryptovávat\r\nzakrýt\r\nzakrytější\r\nzakrytelnější\r\nzakrytelný\r\nzákryt\r\nzakrytí\r\nzakrytování\r\nzákrytový\r\nzakrytý\r\nzakrytý\r\nzakrývací\r\nzakrývající\r\nzakrývanější\r\nzakrývání\r\nzakrývaný\r\nzakrývatelnější\r\nzakrývatelný\r\nzakrývat\r\nzakrývka\r\nzakřapat\r\nzakřápat\r\nzakřenit\r\nzakřepčení\r\nzakřepčený\r\nzakřepčit\r\nzakřičení\r\nzakřičený\r\nzakřičet\r\nzakřiknout\r\nzakřiknutější\r\nzakřiknutí\r\nzakřiknutý\r\nzakřivenější\r\nzakřivení\r\nzakřivený\r\nzakřivit\r\nzakřivování\r\nzakřivovaný\r\nzakřivovat\r\nzakřížkovaný\r\nzakřížkovat\r\nzakřupání\r\nzakřupaný\r\nzakřupat\r\nzaktivizování\r\nzaktivizovaný\r\nzaktivizovat\r\nzaktivnit\r\nzaktivování\r\nzaktivovaný\r\nzaktivovat\r\nzaktualizování\r\nzaktualizovaný\r\nzaktualizovat\r\nzaktuálněný\r\nzakuckání\r\nzakuckaný\r\nzakuckat\r\nzakuckávat\r\nzakufrovat\r\nzakukání\r\nzakukaný\r\nzakukat\r\nzakuklenější\r\nzakuklení\r\nzakuklený\r\nzakuklit\r\nzakuklovat\r\nzakulacenější\r\nzakulacený\r\nzakulacování\r\nzakulacovaný\r\nzakulacovat\r\nzakulacovávání\r\nzakulacovávaný\r\nzakulacovávat\r\nzakulatit\r\nzakulhání\r\nzakulhat\r\nzakulhávání\r\nzakulhávat\r\nzákulisí\r\nzákulisní\r\nzakuňkání\r\nzakuňkaný\r\nzakuňkat\r\nzákupný\r\nzakupování\r\nzakupovaný\r\nzakupovat\r\nzákupský\r\nZákupy\r\nzakuřování\r\nzakuřovaný\r\nzakuřovat\r\nzákusek\r\nzakusení\r\nzakusit\r\nzákuska\r\nzákuskový\r\nzakusovanější\r\nzakusování\r\nzakusovaný\r\nzakusovat\r\nzakusující\r\nzakutálení\r\nzakutálený\r\nzakutálet\r\nzakutání\r\nzakutaný\r\nzakutat\r\nzakutávat\r\nzakvákání\r\nzakvákaný\r\nzakvákat\r\nzákvas\r\nzakvasit\r\nzakvašení\r\nzakvašený\r\nzakvašování\r\nzakvašovaný\r\nzakvašovat\r\nzakvedlání\r\nzakvedlaný\r\nzakvedlat\r\nzakvedlávání\r\nzakvedlávaný\r\nzakvedlávat\r\nzakvičet\r\nzakvikat\r\nzakvíkat\r\nzakvílení\r\nzakvílet\r\nzakvokání\r\nzakvokaný\r\nzakvokat\r\nzakvrdlat\r\nzakymácení\r\nzakymácet\r\nzakysání\r\nzakysaný\r\nzakysat\r\nzakysávat\r\nzakyslejší\r\nzakyslý\r\nzakysnout\r\nzakysnutí\r\nzakytování\r\nzakytovaný\r\nzakytovat\r\nzakývat\r\nzal\r\nzalahodění\r\nzalahodit\r\nzalajdat\r\nzalakování\r\nzalakovaný\r\nzalakovat\r\nzalakovávání\r\nzalakovávaný\r\nzalakovávat\r\nzalamovací\r\nzalamování\r\nzalamovaný\r\nzalamovat\r\nzalamovávání\r\nzalamovávaný\r\nzalamovávat\r\nzalapání\r\nzalapaný\r\nzalapat\r\nzalarmování\r\nzalarmovaný\r\nzalarmovat\r\nzalaškování\r\nzalaškovaný\r\nzalaškovat\r\nzalátání\r\nzalátaný\r\nzalátat\r\nzalátávat\r\nzalednění\r\nzaledněný\r\nzalednit\r\nzaledování\r\nzaledovaný\r\nzaledovat\r\nzaléhání\r\nzaléhat\r\nzaléhávání\r\nzaléhávat\r\nzalehlejší\r\nzalehlý\r\nzalehnout\r\nzalehnutí\r\nzalehnutý\r\nzaleknout\r\nzaleknutí\r\nzalenošení\r\nzalenošit\r\nzalepení\r\nzalepený\r\nzalepit\r\nzálepka\r\nzalepovací\r\nzalepování\r\nzalepovaný\r\nzalepovat\r\nzalergizovaný\r\nzalergizovat\r\nzalergizující\r\nzálesácký\r\nzálesáctví\r\nzálesáčtější\r\nzálesák\r\nzálesákův\r\nzálesí\r\nzalesknout\r\nzalesknutí\r\nZáleský\r\nzalesněnější\r\nzalesnění\r\nzalesněný\r\nzalesnit\r\nzalesnitelnější\r\nzalesnitelný\r\nzalesňovací\r\nzalesňování\r\nzalesňovaný\r\nzalesňovat\r\nzalesňovávat\r\nzalesňující\r\nZálešáková\r\nZálešák\r\nZálešákův\r\nzálešský\r\nzaleštění\r\nzaleštěný\r\nzaleštit\r\nzalétání\r\nzalétaný\r\nzalétat\r\nzalétávání\r\nzalétávat\r\nzaletění\r\nzaletěný\r\nzaletět\r\nzálet\r\nzalétlý\r\nzáletnější\r\nzáletnice\r\nzáletnictví\r\nzáletničin\r\nzáletník\r\nzáletníkův\r\nzalétnout\r\nzalétnutí\r\nzáletný\r\nzaletování\r\nzaletovaný\r\nzaletovat\r\nzalévající\r\nzalévání\r\nzalévaný\r\nzalévat\r\nzalézající\r\nzalézání\r\nzalézat\r\nzalezení\r\nzalezlejší\r\nZálezlice\r\nzálezlický\r\nzalezlý\r\nzalézt\r\nzáležející\r\nzáležení\r\nzáležet\r\nzáležící\r\nzáležitost\r\nzalhal\r\nzalhanější\r\nzalhaní\r\nzalhání\r\nzalhán\r\nzalhaný\r\nzalháný\r\nzalhat\r\nzalhávanější\r\nzalhávaní\r\nzalhávání\r\nzalhávaný\r\nzalhávat\r\nzáliba\r\nzalíbení\r\nzalíbit\r\nzálibný\r\nzalícenější\r\nzalícení\r\nzalícený\r\nzalícit\r\nzalíčení\r\nzalíčený\r\nzalíčit\r\nzalidněnější\r\nzalidnění\r\nzalidněný\r\nzalidnit\r\nzalidnitelnější\r\nzalidnitelný\r\nzalidňování\r\nzalidňovaný\r\nzalidňovat\r\nzalidňující\r\nzalichocení\r\nzalichocený\r\nzalichotit\r\nzalisování\r\nzalisovat\r\nzalisovávat\r\nzalistování\r\nzalistovaný\r\nzalistovat\r\nzalítání\r\nzalítaný\r\nzalítat\r\nzalítávat\r\nzalít\r\nzalitější\r\nzalití\r\nzalítnout\r\nzalítnutí\r\nzalit\r\nzalitování\r\nzalitovaný\r\nzalitovat\r\nzalitý\r\nzalitý\r\nzalívanější\r\nzalívání\r\nzalívaný\r\nzalívat\r\nzáliv\r\nzálivka\r\nzálivkový\r\nzálivový\r\nzalkání\r\nzalkat\r\nzalknout\r\nzalknutí\r\nzalknutý\r\nzalobbování\r\nzalobbovaný\r\nzalobbovat\r\nzalobování\r\nzalobovaný\r\nzalobovat\r\nzáloha\r\nzálohovací\r\nzálohování\r\nzálohování\r\nzálohovaný\r\nzálohovat\r\nzálohový\r\nzálohující\r\nzáloktí\r\nzalomcování\r\nzalomcovat\r\nzálomek\r\nzalomenější\r\nzalomení\r\nzalomený\r\nzalomit\r\nzalomozit\r\nZaloňov\r\nzaloňovský\r\nzaloupení\r\nzaloupený\r\nzaloupit\r\nzalovení\r\nzalovený\r\nzalovit\r\nzaložení\r\nzaložený\r\nzaložit\r\nzáložka\r\nzáložkový\r\nzáložna\r\nzáložnický\r\nzáložník\r\nzáložníkův\r\nzáložní\r\nzáložní\r\nZálší\r\nzáludnější\r\nzáludný\r\nzálusk\r\nzaluštění\r\nzaluštěný\r\nzaluštit\r\nZáluží\r\nZálužice\r\nzálužický\r\nzálužský\r\nzalykající\r\nzalykání\r\nzalykaný\r\nzalykat\r\nzalykávání\r\nzalykávat\r\nzalykavější\r\nzalykavý\r\nzalyžování\r\nzalyžovaný\r\nzalyžovat\r\nzalžu\r\nzamačkání\r\nzamačkaný\r\nzamačkat\r\nzamačkávací\r\nzamačkávání\r\nzamačkávaný\r\nzamačkávat\r\nzamáčknout\r\nzamáčknutí\r\nzamáčknutý\r\nzamáčknutý\r\nzamakání\r\nzamakat\r\nzamalování\r\nzamalovaný\r\nzamalovat\r\nzamalovávání\r\nzamalovávaný\r\nzamalovávat\r\nzamanout\r\nzamanutí\r\nzamapování\r\nzamapovaný\r\nzamapovat\r\nzamaskování\r\nzamaskovaný\r\nzamaskovat\r\nzamaskovávat\r\nzamastit\r\nzamaštění\r\nzamaštěný\r\nzamašťovat\r\nzamatlání\r\nzamatlaný\r\nzamatlat\r\nzamatlávání\r\nzamatlávaný\r\nzamatlávat\r\nzamávání\r\nzamávat\r\nzamazanější\r\nzamazání\r\nzamazaný\r\nzamazat\r\nzamazávající\r\nzamazávání\r\nzamazávaný\r\nzamazávat\r\nzamáznout\r\nzamáznutí\r\nzamáznutý\r\nZambie\r\nZambijcův\r\nZambijčin\r\nZambijec\r\nZambijka\r\nzambijský\r\nzamčení\r\nzamčený\r\nzamčený\r\nzámecký\r\nzámeček\r\nzamečení\r\nzamečený\r\nzamečet\r\nzámečnice\r\nzámečnický\r\nzámečnictví\r\nzámečničtější\r\nZámečníková\r\nzámečník\r\nZámečník\r\nZámečníkův\r\nzámečníkův\r\nzámečtější\r\nzameditovat\r\nzamechovatělý\r\nzamekotání\r\nzamekotat\r\nzámek\r\nzamelu\r\nzáměna\r\nzaměnější\r\nzaměněnější\r\nzaměnění\r\nzaměněný\r\nzaměnit\r\nzaměnitelnější\r\nzaměnitelný\r\nzáměnnější\r\nzáměnný\r\nzaměňovanější\r\nzaměňování\r\nzaměňovaný\r\nzaměňovat\r\nzaměňovávat\r\nzaměňující\r\nzáměr\r\nzamerikanizování\r\nzamerikanizovaný\r\nzamerikanizovat\r\nzáměrka\r\nzáměrnější\r\nzáměrný\r\nzáměrový\r\nzaměřenější\r\nzaměření\r\nzaměřený\r\nzaměřit\r\nzaměřovací\r\nzaměřovač\r\nzaměřovačův\r\nzaměřování\r\nzaměřovaný\r\nzaměřovat\r\nzaměřovávat\r\nzaměřující\r\nzáměs\r\nzáměsový\r\nzamést\r\nzaměstnancův\r\nzaměstnanecký\r\nzaměstnanec\r\nzaměstnanečtější\r\nzaměstnanější\r\nzaměstnání\r\nzaměstnankyně\r\nzaměstnankynin\r\nzaměstnaný\r\nzaměstnatelnější\r\nzaměstnatelný\r\nzaměstnat\r\nzaměstnávající\r\nzaměstnávání\r\nzaměstnávaný\r\nzaměstnavatelčin\r\nzaměstnavatelka\r\nzaměstnavatelský\r\nzaměstnavatel\r\nzaměstnavatelův\r\nzaměstnávat\r\nzameškání\r\nzameškaný\r\nzameškat\r\nzameškávání\r\nzameškávaný\r\nzameškávat\r\nzametací\r\nzametač\r\nzametačův\r\nzametající\r\nzametání\r\nzametaný\r\nzametat\r\nzametávání\r\nzametávaný\r\nzametávat\r\nzametení\r\nzametený\r\nzamezenější\r\nzamezení\r\nzamezený\r\nzámezí\r\nzamezit\r\nzamezovanější\r\nzamezování\r\nzamezovaný\r\nzamezovat\r\nzamezující\r\nzamhlenější\r\nzamhouření\r\nzamhouřený\r\nzamhouřit\r\nzamhuřovat\r\nzamihotání\r\nzamihotat\r\nzamíchání\r\nzamíchaný\r\nzamíchat\r\nzamíchávání\r\nzamíchávaný\r\nzamíchávat\r\nzamilovanější\r\nzamilování\r\nzamilovaný\r\nzamilovat\r\nzamilovávání\r\nzamilovávaný\r\nzamilovávat\r\nzamindrákovaný\r\nzamínka\r\nzáminka\r\nzaminování\r\nzaminovat\r\nzaminovávání\r\nzaminovávaný\r\nzaminovávat\r\nzamíření\r\nzamířený\r\nzamířit\r\nzámišnický\r\nzámišnictví\r\nZámišová\r\nzámišový\r\nzámiš\r\nZámiš\r\nZámišův\r\nzamítací\r\nzamítající\r\nzamítanější\r\nzamítání\r\nzamítaný\r\nzamítat\r\nzamítavější\r\nzamítavý\r\nzamítnout\r\nzamítnutější\r\nzamítnutí\r\nzamítnutý\r\nzamítnutý\r\nzamixování\r\nzamixovaný\r\nzamixovat\r\nzamknout\r\nzamknutější\r\nzamknutí\r\nzamknutí\r\nzamknutý\r\nzamknutý\r\nzámkový\r\nzamlada\r\nzamlaskání\r\nzamlaskat\r\nzamlčení\r\nzamlčený\r\nzamlčet\r\nzámlčka\r\nzamlčování\r\nzamlčovaný\r\nzamlčovat\r\nzamlčující\r\nzamlel\r\nzamlení\r\nzamlet\r\nzamletý\r\nzamlít\r\nzámlka\r\nzámlk\r\nzamlklejší\r\nzamlklý\r\nzamlknout\r\nzamlknutí\r\nzamlouvající\r\nzamlouvání\r\nzamlouvaný\r\nzamlouvat\r\nzamluvení\r\nzamluvený\r\nzamluvit\r\nzamluvitelný\r\nzamlženější\r\nzamlžení\r\nzamlžený\r\nzamlžit\r\nzamlžovací\r\nzamlžování\r\nzamlžovaný\r\nzamlžovat\r\nzamlžující\r\nzamňoukání\r\nzamňoukat\r\nzamnout\r\nzamnutí\r\nzamnutý\r\nzamokření\r\nzamokřený\r\nzamokřit\r\nzamontování\r\nzamontovaný\r\nzamontovat\r\nzamontovávání\r\nzamontovávaný\r\nzamontovávat\r\nzamordovat\r\nzamořenější\r\nzamoření\r\nzamořený\r\nzámoří\r\nzamořit\r\nzamořování\r\nzamořovaný\r\nzamořovat\r\nzamořovávat\r\nzámořský\r\nzamořující\r\nZámostný\r\nzamotání\r\nzamotaný\r\nzamotat\r\nzamotávání\r\nzamotávaný\r\nzamotávat\r\nzámotek\r\nzamoučený\r\nzámožnější\r\nzámožný\r\nZamprová\r\nZampr\r\nZamprův\r\nzamračenější\r\nzamračení\r\nzamračený\r\nzamračit\r\nzámrazek\r\nzamrazení\r\nzamrazený\r\nzamrazit\r\nzamrkání\r\nzamrkaný\r\nzamrkat\r\nzamrmlání\r\nzamrmlaný\r\nzamrmlat\r\nZámrsk\r\nzamručení\r\nzamručený\r\nzamručet\r\nzamrzající\r\nzamrzání\r\nzamrzat\r\nzamrzávat\r\nzamrzení\r\nzamrzený\r\nzamrzet\r\nzamrzlejší\r\nzamrzlý\r\nzamrznout\r\nzamrznutí\r\nzamrznutý\r\nzamřížování\r\nzamřížovaný\r\nzamřížovat\r\nzamumlání\r\nzamumlaný\r\nzamumlat\r\nzamumlávání\r\nzamumlávaný\r\nzamumlávat\r\nzamykací\r\nzamykající\r\nzamykání\r\nzamykaný\r\nzamykatelný\r\nzamykat\r\nzamyslení\r\nzamyslený\r\nzamyslet\r\nzámysl\r\nzamyslit\r\nzamýšlející\r\nzamyšlenější\r\nzamyšlenější\r\nzamyšlení\r\nzamýšlení\r\nzamyšlen\r\nzamyšlený\r\nzamýšlený\r\nzamýšlet\r\nzamženější\r\nzamžen\r\nzamžený\r\nzamžikání\r\nzamžikat\r\nzamžikávání\r\nzamžikávaný\r\nzamžikávat\r\nzamžít\r\nzamžourání\r\nzamžourat\r\nzaň\r\nzanadávání\r\nzanadávat\r\nzáňadří\r\nzaňafání\r\nzaňafaný\r\nzaňafat\r\nzanalyzování\r\nzanalyzovaný\r\nzanalyzovat\r\nzánártí\r\nzánártní\r\nzanaříkání\r\nzanaříkat\r\nzanášející\r\nzanášenější\r\nzanášení\r\nzanášený\r\nzanášet\r\nzanáška\r\nZaňa\r\nzandání\r\nzandaný\r\nzandat\r\nzandávanější\r\nzandavání\r\nzandávání\r\nzandávaný\r\nzandavat\r\nzandávat\r\nzaněcovat\r\nzanedbanější\r\nzanedbání\r\nzanedbaný\r\nzanedbatelnější\r\nzanedbatelný\r\nzanedbat\r\nzanedbávanější\r\nzanedbávání\r\nzanedbávaný\r\nzanedbávat\r\nzanedlouho\r\nzanechanější\r\nzanechání\r\nzanechaný\r\nzanechat\r\nzanechávající\r\nzanechávanější\r\nzanechávání\r\nzanechávaný\r\nzanechávat\r\nzanechme\r\nzanech\r\nzanechte\r\nzaneprázdnění\r\nzaneprázdněný\r\nzaneprázdnit\r\nzaneprazdňování\r\nzaneprazdňovaný\r\nzaneprazdňovat\r\nzaneřádění\r\nzaneřáděný\r\nzaneřádit\r\nzanesenější\r\nzanesení\r\nzanesený\r\nzanést\r\nzánět\r\nzánětlivější\r\nzánětlivý\r\nzanevřít\r\nzanic\r\nzanícenější\r\nzanícení\r\nzanícený\r\nzanikající\r\nzanikání\r\nzanikat\r\nzánik\r\nzaniklejší\r\nzaniklý\r\nzaniknout\r\nzaniknutí\r\nzánikový\r\nzanimování\r\nzanimovaný\r\nzanimovat\r\nzanítit\r\nzaniťovaný\r\nzanoření\r\nzanořený\r\nzanořit\r\nzanořování\r\nzanořovaný\r\nzanořovat\r\nzanořovávat\r\nzános\r\nzanotování\r\nzanotovaný\r\nzanotovat\r\nZaňová\r\nzánovní\r\nzanožení\r\nzanožený\r\nzanožit\r\nzánožka\r\nzanožování\r\nzanožovaný\r\nzanožovat\r\nZaňův\r\nzanýtování\r\nzanýtovaný\r\nzanýtovat\r\nzaobalenější\r\nzaobalení\r\nzaobalený\r\nzaobalit\r\nzaobalitelnější\r\nzaobalitelný\r\nzaobalovanější\r\nzaobalování\r\nzaobalovaný\r\nzaobalovat\r\nzaobalovávání\r\nzaobalující\r\nzaobírající\r\nzaobírání\r\nzaobírat\r\nzaoblenější\r\nzaoblení\r\nzaoblený\r\nzaoblit\r\nzaoblitelnější\r\nzaoblitelný\r\nzaoblovací\r\nzaoblování\r\nzaoblovaný\r\nzaoblovat\r\nzaoblovávání\r\nzaoblovávaný\r\nzaoblovávat\r\nzaobroubit\r\nzaoceánský\r\nzáoční\r\nzaodporovat\r\nzaokrouhlenější\r\nzaokrouhlení\r\nzaokrouhlený\r\nzaokrouhlit\r\nzaokrouhlovací\r\nzaokrouhlování\r\nzaokrouhlovaný\r\nzaokrouhlovat\r\nzaokrouhlovávání\r\nzaokrouhlovávaný\r\nzaokrouhlovávat\r\nzaokruhlení\r\nzaokruhlený\r\nzaokruhovat\r\nzaolejovávání\r\nzaolejovávaný\r\nzaolejovávat\r\nzaonačit\r\nzaopatřenější\r\nzaopatření\r\nzaopatřený\r\nzaopatřit\r\nzaopatřovací\r\nzaopatřování\r\nzaopatřovaný\r\nzaopatřovat\r\nzaopatřovávat\r\nzaopatřující\r\nZaorálek\r\nZaorálková\r\nZaorálkův\r\nZaoralová\r\nZaoral\r\nZaoralův\r\nzaorání\r\nzaoraný\r\nzaorat\r\nzaorávání\r\nzaorávaný\r\nzaorávat\r\nzaorávka\r\nzaostalejší\r\nzaostalý\r\nzaostalý\r\nzaostání\r\nzaostat\r\nzaostávající\r\nzaostávání\r\nzaostávat\r\nzaostřenější\r\nzaostření\r\nzaostřený\r\nzaostřit\r\nzaostřovací\r\nzaostřování\r\nzaostřovaný\r\nzaostřovat\r\nzaostřovávat\r\nzapáčení\r\nzapáčený\r\nzapáčit\r\nzápaďácký\r\nzápaďáčtější\r\nzapadající\r\nzapadák\r\nzapadákov\r\nzapadanější\r\nzapadání\r\nzapadaný\r\nzapadat\r\nzapadávající\r\nzapadávání\r\nzapadávaný\r\nzapadávat\r\nzápad\r\nzápadka\r\nzápadkový\r\nzapadlejší\r\nzapadlý\r\nzapadlý\r\nzápadnější\r\nzápadní\r\nzápadní\r\nzapadnout\r\nzapadnutí\r\nzápadoafrický\r\nzápadoafričtější\r\nzápadoasijský\r\nzápadoběloruský\r\nzápadočech\r\nzápadočechův\r\nzápadočeský\r\nzápadoevropančin\r\nzápadoevropanka\r\nzápadoevropan\r\nzápadoevropanův\r\nzápadoevropský\r\nzápadoevropštější\r\nzápadofrancouzský\r\nzápadofranský\r\nzápadoindický\r\nzápadoindičtější\r\nzápadokřesťanský\r\nzápadomoravský\r\nzápadondický\r\nzápadoněmecký\r\nzápadoněmečtější\r\nzápadořímský\r\nzápadosaharský\r\nzápadosamojský\r\nzápadoslovanský\r\nzápadoslovenský\r\nzapáchající\r\nzapáchání\r\nzapáchat\r\nzapáchavý\r\nzápach\r\nzápachový\r\nzapajdání\r\nzapajdat\r\nzapájení\r\nzapájený\r\nzapájet\r\nzapakování\r\nzapakovaný\r\nzapakovat\r\nzapálenější\r\nzapálení\r\nzapálený\r\nzápal\r\nzapálit\r\nzápalka\r\nzápalkový\r\nzápalnější\r\nzápalnice\r\nzápalník\r\nzápalný\r\nzapalovací\r\nzapalovač\r\nzapalovadlo\r\nzapalovanější\r\nzapalovaní\r\nzapalování\r\nzapalovaný\r\nzapalovat\r\nzapalovávání\r\nzapalovávaný\r\nzapalovávat\r\nzapalující\r\nzapamatovanější\r\nzapamatování\r\nzapamatovaný\r\nzapamatovat\r\nzapamatovatelnější\r\nzapamatovatelný\r\nzapamatovávání\r\nzapamatovávaný\r\nzapamatovávat\r\nzapanáčkovat\r\nzápara\r\nzápar\r\nzaparkování\r\nzaparkovaný\r\nzaparkovat\r\nzaparkovávání\r\nzaparkovávaný\r\nzaparkovávat\r\nzapařenější\r\nzapářenější\r\nzapaření\r\nzapařený\r\nzapářený\r\nzapařit\r\nzapářka\r\nzapařovací\r\nzapařování\r\nzapařovaný\r\nzapařovat\r\nzápasení\r\nzápasený\r\nzápas\r\nzápasící\r\nzápasiště\r\nzápasit\r\nzapasivování\r\nzapasivovaný\r\nzapasivovat\r\nzápasivý\r\nzápasnice\r\nzápasnický\r\nzápasnictví\r\nzápasník\r\nzápasníkův\r\nzapasování\r\nzapasovaný\r\nzapasovat\r\nzápasový\r\nzapaspartování\r\nzapaspartovaný\r\nzapaspartovat\r\nzapaspartovávání\r\nzapaspartovávaný\r\nzapaspartovávat\r\nzápatí\r\nzapatista\r\nzapatistčin\r\nzapatistka\r\nzapatistův\r\nzapatlanější\r\nzapatlání\r\nzapatlaný\r\nzapatlat\r\nzapatlávání\r\nzapatlávaný\r\nzapatlávat\r\nzápatní\r\nzapátrání\r\nzapátraný\r\nzapátrat\r\nzapažení\r\nzapažený\r\nzapažit\r\nzapažování\r\nzapažovaný\r\nzapažovat\r\nzápecnický\r\nzápecnictví\r\nzápecník\r\nzapéct\r\nzapečenější\r\nzapečení\r\nzapečený\r\nzapečetění\r\nzapečetěný\r\nzapečetit\r\nzapečeťovaný\r\nzapečeťovat\r\nzapékací\r\nzapékání\r\nzapékaný\r\nzapékat\r\nzapeklitější\r\nzapeklitý\r\nzapěněnější\r\nzapěnění\r\nzapění\r\nzapěnit\r\nzapěňování\r\nzapěňovat\r\nzapěný\r\nzaperlení\r\nzaperlit\r\nzápěstí\r\nzápěstní\r\nzapět\r\nzapíchání\r\nzapíchaný\r\nzapíchat\r\nzapíchnout\r\nzapíchnutí\r\nzapíchnutý\r\nzapíchnutý\r\nzapichování\r\nzapichovaný\r\nzapichovat\r\nzapíjenější\r\nzapíjení\r\nzapíjený\r\nzapíjet\r\nzapilování\r\nzapilovaný\r\nzapilovat\r\nzapínací\r\nzapínající\r\nzapínání\r\nzapínaný\r\nzapínat\r\nzapinkání\r\nzapinkat\r\nzapípání\r\nzapípaný\r\nzapípat\r\nzapírač\r\nzapíračův\r\nzapírající\r\nzapíranější\r\nzapírání\r\nzapíraný\r\nzapírat\r\nzápisek\r\nzápis\r\nzapískanější\r\nzapískání\r\nzapískaný\r\nzapískat\r\nzápiska\r\nzapísknout\r\nzapísknutí\r\nzápisné\r\nzápisníček\r\nzápisník\r\nzápisníkový\r\nzapisovací\r\nzapisovaččin\r\nzapisovačka\r\nzapisovač\r\nzapisovač\r\nzapisovačův\r\nzapisovanější\r\nzapisování\r\nzapisovaný\r\nzapisovat\r\nzapisovatelčin\r\nzapisovatelka\r\nzapisovatelný\r\nzapisovatelský\r\nzapisovatel\r\nzapisovatelův\r\nzápisový\r\nzapisující\r\nzapíši\r\nzapištění\r\nzapištěný\r\nzapištět\r\nzapíšu\r\nzapít\r\nzapitější\r\nzapití\r\nzapit\r\nzapitý\r\nzapitý\r\nzapjal\r\nzapjatější\r\nzapjat\r\nzapjatý\r\nzaplácání\r\nzaplácaný\r\nzaplácat\r\nzaplácávání\r\nzaplácávaný\r\nzaplácávat\r\nzaplacenější\r\nzaplacení\r\nzaplacený\r\nzapláclý\r\nzaplácnout\r\nzaplácnutí\r\nzaplácnutý\r\nzaplachtění\r\nzaplachtit\r\nzaplakající\r\nzaplakání\r\nzaplakat\r\nzapláme\r\nzaplám\r\nzaplá\r\nzaplandání\r\nzaplandat\r\nzaplání\r\nzaplanout\r\nzaplánování\r\nzaplanutí\r\nzaplápolání\r\nzaplápolaný\r\nzaplápolat\r\nzaplašení\r\nzaplašený\r\nzaplašit\r\nzapláš\r\nzáplata\r\nzapláte\r\nZaplatílek\r\nZaplatílková\r\nZaplatílkův\r\nzaplatit\r\nzaplatitelný\r\nzaplát\r\nzáplatovací\r\nzáplatovanější\r\nzáplatování\r\nzáplatovaný\r\nzáplatovaný\r\nzáplatovat\r\nzáplatovávání\r\nzáplatovávaný\r\nzáplatovávat\r\nzaplavání\r\nzaplavat\r\nzaplavávání\r\nzaplavávat\r\nzáplava\r\nzaplavejme\r\nzaplavej\r\nzaplavejte\r\nzaplavení\r\nzaplavený\r\nzaplavit\r\nzaplavitelný\r\nzaplavování\r\nzaplavovaný\r\nzaplavovat\r\nzáplavový\r\nzaplavující\r\nzaplazení\r\nzaplazit\r\nzaplesání\r\nzaplesat\r\nzaplesnivělý\r\nzaplést\r\nzaplétající\r\nZapletálek\r\nZapletálková\r\nZapletálkův\r\nZapletalová\r\nZapletal\r\nZapletalův\r\nzaplétání\r\nzaplétaný\r\nzaplétat\r\nzapletenější\r\nzapletení\r\nzapletený\r\nzápletka\r\nzaplevelenější\r\nzaplevelení\r\nzaplevelený\r\nzaplevelit\r\nzaplevelování\r\nzaplevelovaný\r\nzaplevelovat\r\nzaplísnění\r\nzaplivanější\r\nzaplivání\r\nzaplivaný\r\nzaplivat\r\nzaplkat\r\nzaplněnější\r\nzaplnění\r\nzaplněný\r\nzaplnit\r\nzaplnitelnější\r\nzaplnitelný\r\nzaplňovací\r\nzaplňování\r\nzaplňovaný\r\nzaplňovat\r\nzaplňující\r\nzaplombování\r\nzaplombovaný\r\nzaplombovat\r\nzaplout\r\nzaplouvání\r\nzaplouvaný\r\nzaplouvat\r\nzaplutí\r\nzaplutý\r\nzapluženější\r\nzaplužení\r\nzaplužený\r\nzaplužit\r\nzaplynování\r\nzaplynovaný\r\nzaplynovat\r\nzapnout\r\nzapnutější\r\nzapnutí\r\nzapnutý\r\nzapocenější\r\nzapocení\r\nzapocený\r\nzapočatý\r\nzapočatý\r\nzapočetí\r\nzápočet\r\nzapočínání\r\nzapočínaný\r\nzapočínat\r\nzapočíst\r\nzapočítání\r\nzapočítaný\r\nzapočitatelný\r\nzapočítatelný\r\nzapočítat\r\nzapočít\r\nzapočítávající\r\nzapočítávání\r\nzapočítávaný\r\nzapočítávat\r\nzapočtení\r\nzapočtený\r\nzápočtový\r\nzapodkuřovávat\r\nzapochybování\r\nzapochybovat\r\nzápojemi\r\nzapojenější\r\nzapojení\r\nzapojený\r\nzapojit\r\nzapojitelnější\r\nzapojitelný\r\nzapojovací\r\nzapojovanější\r\nzapojování\r\nzapojovaný\r\nzapojovat\r\nzapojovávání\r\nzapojovávaný\r\nzapojovávat\r\nzápoj\r\nzapojující\r\nzapolemizování\r\nzapolemizovaný\r\nzapolemizovat\r\nzápolení\r\nzápolící\r\nzápolit\r\nZápolský\r\nzapomenout\r\nzapomenutější\r\nzapomenutelnější\r\nzapomenutelný\r\nzapomenutí\r\nzapomenutý\r\nzapomenutý\r\nzapomínající\r\nzapomínání\r\nzapomínaný\r\nzapomínat\r\nzapomněl\r\nzapomnění\r\nzapomnětlivější\r\nzapomnětlivý\r\nzápor\r\nzáporka\r\nzápornější\r\nzáporný\r\nzáporový\r\nzaposlouchání\r\nzaposlouchaný\r\nzaposlouchat\r\nzaposlouchávat\r\nzapošít\r\nzapošitější\r\nzapošití\r\nzapošitý\r\nzapošitý\r\nzapošívanější\r\nzapošívání\r\nzapošívaný\r\nzapošívat\r\nzapošívka\r\nzapotácení\r\nzapotácet\r\nzapotit\r\nZápotocký\r\nzapotřebí\r\nzapouštěcí\r\nzapouštějící\r\nzapouštěnější\r\nzapouštění\r\nzapouštěný\r\nzapouštět\r\nzapouzdření\r\nzapouzdřený\r\nzapouzdřit\r\nzapovědění\r\nzapověděný\r\nzapovědět\r\nzapovězenější\r\nzapovězen\r\nzapovězený\r\nzapovídající\r\nzapovídanější\r\nzapovídání\r\nzapovídaný\r\nzapovídat\r\nzapózování\r\nzapózovat\r\nZappeová\r\nZappe\r\nZappeův\r\nzapracovanější\r\nzapracování\r\nzapracovaný\r\nzapracovat\r\nzapracovávající\r\nzapracovávanější\r\nzapracovávání\r\nzapracovávaný\r\nzapracovávat\r\nzaprahlý\r\nzapranější\r\nzaprání\r\nzapraný\r\nzapraskání\r\nzapráskání\r\nzapráskaný\r\nzapraskat\r\nzapráskat\r\nzaprášenější\r\nzaprášení\r\nzaprášený\r\nzaprášit\r\nzaprat\r\nzapravdu\r\nzapravení\r\nzapravený\r\nzapravit\r\nzapravovací\r\nzapražení\r\nzapražený\r\nzápraží\r\nzapražit\r\nzápražka\r\nzapražovat\r\nzáprdek\r\nzaprodancův\r\nzaprodanec\r\nzaprodanější\r\nzaprodání\r\nzaprodaný\r\nzaprodat\r\nzaprodávání\r\nzaprodávaný\r\nzaprodávat\r\nzaprosení\r\nzaprosený\r\nzaprosit\r\nzaprotestování\r\nzaprotestovaný\r\nzaprotestovat\r\nzaprotokolování\r\nzaprotokolovaný\r\nzaprotokolovat\r\nzaprotokolovávání\r\nzaprotokolovávaný\r\nzaprotokolovávat\r\nzaprovokování\r\nzaprovokovaný\r\nzaprovokovat\r\nzaprovokovávání\r\nzaprovokovávaný\r\nzaprovokovávat\r\nzaprskat\r\nzáprstí\r\nzáprstní\r\nzapršení\r\nzapršet\r\nzáprtek\r\nzapřádání\r\nzapřádaný\r\nzapřádat\r\nzapřahání\r\nzapřahaný\r\nzapřahat\r\nzápřah\r\nzapřáhnout\r\nzapřáhnutí\r\nzapřahovat\r\nzapřaženější\r\nzapřažený\r\nzapředenější\r\nzapředení\r\nzapředen\r\nzapředený\r\nzapřemýšlet\r\nzapřenější\r\nzapření\r\nzapřený\r\nzapřešívání\r\nzapřešívaný\r\nzapřešívat\r\nzápřež\r\nzapříčení\r\nzapříčený\r\nzapříčinění\r\nzapřičiněný\r\nzapříčiněný\r\nzapříčinit\r\nzapříčiňování\r\nzapříčiňovaný\r\nzapříčiňovat\r\nzapřičiňující\r\nzapříčit\r\nzapřísahání\r\nzapřísahaný\r\nzapřísahat\r\nzapřisáhlejší\r\nzapřísáhlejší\r\nzapřisáhlý\r\nzapřísáhlý\r\nzapřisáhnout\r\nzapřisáhnutí\r\nzapřisáhnutý\r\nzapříst\r\nzapřít\r\nzapsal\r\nzapsanější\r\nzapsanější\r\nzapsání\r\nzapsán\r\nzapsaný\r\nzapsáný\r\nzapsat\r\nzapšklejší\r\nzapšklý\r\nzapudit\r\nzapudrování\r\nzapudrovaný\r\nzapudrovat\r\nzapudrovávat\r\nzapůjčení\r\nzapůjčený\r\nzapůjčil\r\nzapůjčíme\r\nzapůjčím\r\nzapůjčí\r\nzapůjčíš\r\nzapůjčíte\r\nzapůjčit\r\nzápůjčka\r\nzapůjčme\r\nzapůjč\r\nzápůjční\r\nzapůjčování\r\nzapůjčovaný\r\nzapůjčovat\r\nzapůjčte\r\nzapůjčující\r\nzapulsování\r\nzapulsovat\r\nzapulzování\r\nzapulzovat\r\nzapumpování\r\nzapumpovaný\r\nzapumpovat\r\nzapůsobení\r\nzapůsobený\r\nzapůsobit\r\nzapustit\r\nzápustka\r\nzápustkový\r\nzapuštěnější\r\nzapuštění\r\nzapuštěný\r\nzapuzení\r\nzapuzený\r\nzapuzování\r\nzapuzovaný\r\nzapuzovat\r\nzapýření\r\nzapýřit\r\nzapytlačení\r\nzapytlačený\r\nzapytlačit\r\nzaradování\r\nzaradovat\r\nzarachotění\r\nzarachotit\r\nzarámovanější\r\nzarámování\r\nzarámovaný\r\nzarámovat\r\nzarámovávání\r\nzarámovávaný\r\nzarámovávat\r\nzaranžování\r\nzaranžovaný\r\nzaranžovat\r\nzarapování\r\nzarapovat\r\nzarazit\r\nzarážecí\r\nzarážející\r\nzaraženější\r\nzaražení\r\nzarážení\r\nzaražený\r\nzarážený\r\nzarážet\r\nzarážka\r\nzarážkový\r\nzardělejší\r\nzardělý\r\nzardění\r\nzarděnky\r\nzarděný\r\nzardít\r\nzardívání\r\nzardívat\r\nzardousit\r\nzardoušenější\r\nzardoušení\r\nzardoušený\r\nzareagování\r\nzareagovaný\r\nzareagovat\r\nzarecitování\r\nzarecitovaný\r\nzarecitovat\r\nzaregistrovanější\r\nzaregistrování\r\nzaregistrovaný\r\nzaregistrovat\r\nzaregistrovávání\r\nzaregistrovávaný\r\nzaregistrovávat\r\nzarejdění\r\nzarejdit\r\nzaremcat\r\nzareptat\r\nzaresonovat\r\nzaretušování\r\nzaretušovaný\r\nzaretušovat\r\nzarezavělejší\r\nzarezavělý\r\nzarezavět\r\nzarezervování\r\nzarezervovaný\r\nzarezervovat\r\nzarezivělý\r\nzarezlejší\r\nzarezonovat\r\nzarežírování\r\nzarežírovaný\r\nzarežírovat\r\nzariskování\r\nzariskovaný\r\nzariskovat\r\nzarmoucenější\r\nzarmoucení\r\nzarmoucený\r\nzarmoutit\r\nzarmucování\r\nzarmucovaný\r\nzarmucovat\r\nzarmucující\r\nzármutek\r\nzárodečnější\r\nzárodečný\r\nzárodek\r\nzarosení\r\nzarosený\r\nzarosit\r\nzarostlejší\r\nzarostl\r\nzarostlý\r\nzarostu\r\nzároveň\r\nzarovnanější\r\nzarovnání\r\nzarovnaný\r\nzarovnat\r\nzarovnávající\r\nzarovnávání\r\nzarovnávaný\r\nzarovnávat\r\nzarozmazávanější\r\nzarozmazávaný\r\nzarozpláclejší\r\nzarputilejší\r\nzarputilý\r\nzarubání\r\nzarubaný\r\nZáruba\r\nzarubat\r\nzarubávání\r\nzarubávaný\r\nzarubávat\r\nzáruba\r\nzárubeň\r\nZárubová\r\nzarubu\r\nZárubův\r\nzaručenější\r\nzaručení\r\nzaručený\r\nzaručit\r\nzáruční\r\nzaručování\r\nzaručovaný\r\nzaručovat\r\nzaručující\r\nzarudlejší\r\nzarudlý\r\nzarudnout\r\nzarudnutí\r\nzáruka\r\nzarůstající\r\nzarůstání\r\nzarůstat\r\nzarůst\r\nzarušenější\r\nzarušení\r\nzarušený\r\nzarušit\r\nzarušitelnější\r\nzarušitelný\r\nZárův\r\nzarůžovělejší\r\nzarůžovělý\r\nzarvání\r\nzarvat\r\nzarvávání\r\nzarvávaný\r\nzarvávat\r\nzarybaření\r\nzarybařit\r\nzarybněný\r\nzarybňovací\r\nzarybňovanější\r\nzarybňování\r\nzarybňovaný\r\nzarybňovat\r\nzarýpání\r\nzarýpaný\r\nzarýpat\r\nzarýpávání\r\nzarýpávaný\r\nzarýpávat\r\nzarýt\r\nzarytcův\r\nzarytec\r\nzarytější\r\nzarytější\r\nzarytí\r\nzarytý\r\nzarytý\r\nzarývání\r\nzarývaný\r\nzarývat\r\nzaržát\r\nzařadění\r\nzařádění\r\nzařaděný\r\nzařáděný\r\nzařadící\r\nzařadit\r\nzařádit\r\nzařaditelnější\r\nzařaditelný\r\nzařaďovat\r\nzařazenější\r\nzařazení\r\nzařazený\r\nzařazovanější\r\nzařazování\r\nzařazovaný\r\nzařazovat\r\nzařazovatelnější\r\nzařazovatelný\r\nzařazující\r\nZářecký\r\nzařehtání\r\nzařehtaný\r\nzařehtat\r\nzařekl\r\nzařeknout\r\nzařeknu\r\nzařeknutí\r\nzáření\r\nzáření\r\nzáře\r\nzařezanější\r\nzařezání\r\nzařezaný\r\nzařezat\r\nzařezávající\r\nzařezávanější\r\nzařezávání\r\nzařezávaný\r\nzařezávat\r\nzářez\r\nzářezový\r\nzáří\r\nzaříci\r\nzařící\r\nzářící\r\nzaříct\r\nzařičení\r\nzařičet\r\nzářič\r\nzařídit\r\nzaříhání\r\nzaříhat\r\nzářijový\r\nzáříjový\r\nzaříkadlo\r\nzaříkání\r\nzaříkaný\r\nzaříkat\r\nzaříkávač\r\nzaříkávačův\r\nzaříkávadlo\r\nzaříkávání\r\nzaříkávaný\r\nzaříkávat\r\nzařinčení\r\nzařinčený\r\nzařinčet\r\nzářit\r\nzářívat\r\nzářivější\r\nzářivka\r\nzářivkový\r\nzářivý\r\nzařízenější\r\nzařízení\r\nzařízený\r\nzaříznout\r\nzaříznutější\r\nzaříznutí\r\nzaříznutý\r\nzaříznutý\r\nzařizovací\r\nzařizovanější\r\nzařizování\r\nzařizovaný\r\nzařizovat\r\nzařizovatel\r\nzařizovatelův\r\nzařizující\r\nzařknout\r\nzářný\r\nzařvání\r\nzařvat\r\nzář\r\nzas\r\nzásada\r\nzasadit\r\nzásaditější\r\nzasaditelný\r\nzásaditý\r\nzásadnější\r\nzásadní\r\nzásadotvorný\r\nzásadovější\r\nzásadový\r\nzasádrování\r\nzasádrovaný\r\nzasádrovat\r\nzásah\r\nzasáhnout\r\nzasáhnutí\r\nzasahování\r\nzasahovaný\r\nzasahovat\r\nzásahový\r\nzasahující\r\nzasáklý\r\nzasakování\r\nzasakovat\r\nzasálání\r\nzasálaný\r\nzasálat\r\nzasalutování\r\nzasalutovaný\r\nzasalutovat\r\nzasáňkování\r\nzasáňkovat\r\nzasázenější\r\nzasazení\r\nzasázení\r\nzasazený\r\nzasázený\r\nzasázet\r\nzasazovací\r\nzasazovanější\r\nzasazování\r\nzasazovaný\r\nzasazovat\r\nzasazující\r\nzasažení\r\nzasažený\r\nzasažitelnější\r\nzase\r\nzasedací\r\nzasedačka\r\nzasedající\r\nzasedání\r\nzasedat\r\nzasedávání\r\nzasedávaný\r\nzasedávat\r\nzásed\r\nzasedlý\r\nzasednout\r\nzasednutější\r\nzasednutí\r\nzasednutý\r\nzasednutý\r\nzaseji\r\nzasekanější\r\nzasekání\r\nzasekaný\r\nzasekat\r\nzasekávání\r\nzasekávaný\r\nzasekávat\r\nzáseka\r\nzásek\r\nzaseklejší\r\nzaseknout\r\nzaseknutí\r\nzaseknutý\r\nzásekový\r\nzasel\r\nzasení\r\nzasetější\r\nzasetí\r\nzaset\r\nzasetý\r\nzasetý\r\nzasévání\r\nzasévaný\r\nzasévat\r\nzaschlejší\r\nzaschlý\r\nzaschnl\r\nzaschnout\r\nzaschnutí\r\nzasílací\r\nzasílanější\r\nzasílání\r\nzasílaný\r\nzasílatelský\r\nzasilatelský\r\nzasilatelství\r\nzasílatelství\r\nzasilatel\r\nzasílatel\r\nzasilatelův\r\nzasílatelův\r\nzasílat\r\nzásilka\r\nzásilkový\r\nzasil\r\nzasípání\r\nzasípaný\r\nzasípat\r\nzasípěný\r\nzasíření\r\nzasířený\r\nzasířit\r\nzasít\r\nzasíťování\r\nzasíťovaný\r\nzasíťovat\r\nzasívání\r\nzasívaný\r\nzasívat\r\nzaskákanější\r\nzaskákání\r\nzaskákáno\r\nzaskákaný\r\nzaskákat\r\nzaskakovanější\r\nzaskakování\r\nzaskakovaný\r\nzaskakovat\r\nzaskakovávání\r\nzaskakovávaný\r\nzaskakovávat\r\nzaskakující\r\nzaskládanější\r\nzaskládání\r\nzaskládaný\r\nzaskládat\r\nzaskládávání\r\nzaskládávaný\r\nzaskládávat\r\nzasklenější\r\nzasklení\r\nzasklený\r\nzasklít\r\nzasklívací\r\nzasklívání\r\nzasklívaný\r\nzasklívat\r\nzaskočenější\r\nzaskočení\r\nzaskočený\r\nzaskočit\r\nzáskočka\r\nzáskok\r\nzáskokový\r\nzaskórování\r\nzaskórovat\r\nzaskotačení\r\nzaskotačit\r\nzaskřehotání\r\nzaskřehotaný\r\nzaskřehotat\r\nzaskřípání\r\nzaskřípat\r\nzaskřípět\r\nzaskučení\r\nzaskučet\r\nzaskuhrání\r\nzaskuhrat\r\nzaskvění\r\nzaskvět\r\nzaskvít\r\nzaslal\r\nzaslanější\r\nzaslání\r\nzaslaný\r\nzaslat\r\nzaslechnout\r\nzaslechnutější\r\nzaslechnutí\r\nzaslechnutý\r\nzaslechnutý\r\nzaslepencův\r\nzaslepenecčin\r\nzaslepenecka\r\nzaslepenec\r\nzaslepenější\r\nzaslepení\r\nzaslepený\r\nzaslepit\r\nzáslepka\r\nzaslepování\r\nzaslepovaný\r\nzaslepovat\r\nzaslepující\r\nzaslíbenější\r\nzaslíbení\r\nzaslíbený\r\nzaslíbit\r\nzaslouženější\r\nzasloužení\r\nzasloužený\r\nzasloužilejší\r\nzasloužilý\r\nzasloužit\r\nzásluha\r\nzásluhou\r\nzasluhování\r\nzasluhovaný\r\nzasluhovat\r\nzásluhový\r\nzasluhující\r\nzasluněnější\r\nzáslužnější\r\nzáslužný\r\nzaslzenější\r\nzaslzení\r\nzaslzet\r\nzasmání\r\nzasmát\r\nzásmažka\r\nzasmečování\r\nzasmečovaný\r\nzasmečovat\r\nzasmolení\r\nzasmolený\r\nzasmolit\r\nzasmradit\r\nzasmrádlejší\r\nzasmrádlý\r\nzasmrádnout\r\nzasmrdění\r\nzasmrdět\r\nzasmušenější\r\nzasmušení\r\nzasmušený\r\nzasmušilejší\r\nzasmušilý\r\nzasmušit\r\nzasmyknout\r\nzasmyknutí\r\nzasněnější\r\nzasnění\r\nzasněný\r\nzasněženější\r\nzasněžení\r\nzasněžený\r\nzasněžit\r\nzasněžovací\r\nzasněžování\r\nzasněžovaný\r\nzasněžovat\r\nzasnít\r\nzasnoubenější\r\nzasnoubení\r\nzasnoubený\r\nzasnoubit\r\nzasnout\r\nzásnubní\r\nzasnubování\r\nzasnubovaný\r\nzasnubovat\r\nzásnuby\r\nzasnutí\r\nzásobárna\r\nzásoba\r\nzásobení\r\nzásobený\r\nzásobička\r\nzásobit\r\nzásobitelčin\r\nzásobitelka\r\nzásobitel\r\nzásobitelův\r\nzásobnice\r\nzásobník\r\nzásobníkový\r\nzásobní\r\nzásobovací\r\nzásobovaččin\r\nzásobovačka\r\nzásobovač\r\nzásobování\r\nzásobovaný\r\nzásobovat\r\nzásobovatelčin\r\nzásobovatelka\r\nzásobovatel\r\nzásobovatelův\r\nzásobující\r\nzasolenější\r\nzasolení\r\nzasolený\r\nzasolit\r\nzasolování\r\nzasolovaný\r\nzasolovat\r\nzasolovávání\r\nzasolovávaný\r\nzasolovávat\r\nzasout\r\nzasoutěžení\r\nzasoutěžený\r\nzasoutěžit\r\nzasouvací\r\nzasouvač\r\nzasouvající\r\nzasouvání\r\nzasouvaný\r\nzasouvat\r\nzaspání\r\nzaspaný\r\nzaspat\r\nzaspávání\r\nzaspávaný\r\nzaspávat\r\nzaspávat\r\nzáspí\r\nzasportování\r\nzasportovat\r\nzaspurtování\r\nzaspurtovat\r\nzasrat\r\nzasršení\r\nzasršet\r\nzastánce\r\nzastáncův\r\nzastání\r\nzastánkyně\r\nzastánkynin\r\nzastaralejší\r\nzastaralý\r\nzastarání\r\nzastarat\r\nzastarávající\r\nzastarávání\r\nzastarávat\r\nzastat\r\nzastávající\r\nzastávanější\r\nzastávání\r\nzastávaný\r\nzastavárna\r\nzastavárník\r\nzastavárníkův\r\nzastávat\r\nzástava\r\nzástavba\r\nzástavbový\r\nzástavce\r\nzástavcův\r\nzastaveníčko\r\nzastavení\r\nzastavění\r\nzastavený\r\nzastavěný\r\nzastavět\r\nzastavit\r\nzastavitelnější\r\nzastavitelný\r\nzastávka\r\nzástavka\r\nzastávkování\r\nzastávkovat\r\nzastávkový\r\nzástavní\r\nzastavovací\r\nzastavovanější\r\nzastavování\r\nzastavovaný\r\nzastavovat\r\nzastavující\r\nzastelu\r\nzasténání\r\nzasténat\r\nzástěna\r\nZástěra\r\nzástěra\r\nzástěrka\r\nzástěrkový\r\nZástěrová\r\nzástěrový\r\nZástěrův\r\nzastesknout\r\nzastesknutí\r\nzastihnout\r\nzastihnutí\r\nzastihovanější\r\nzastihování\r\nzastihovaný\r\nzastihovat\r\nzastihující\r\nzastíněnější\r\nzastínění\r\nzastíněný\r\nzastínit\r\nzastiňovanější\r\nzastiňování\r\nzastiňovaný\r\nzastiňovat\r\nzastiňující\r\nzastírací\r\nzastírající\r\nzastíranější\r\nzastírání\r\nzastíraný\r\nzastírat\r\nzastiženější\r\nzastižení\r\nzastižený\r\nzastižitelnější\r\nzastižitelný\r\nzastlal\r\nzastlanější\r\nzastlání\r\nzastlaný\r\nzastlat\r\nzástojný\r\nzástoj\r\nzastonal\r\nzastonání\r\nzastonat\r\nzastonejme\r\nzastonej\r\nzastonejte\r\nzastoupení\r\nzastoupení\r\nzastoupený\r\nzastoupit\r\nzastrašenější\r\nzastrašení\r\nzastrašený\r\nzastrašit\r\nzastrašovací\r\nzastrašování\r\nzastrašovaný\r\nzastrašovat\r\nzastrašující\r\nzastrčenější\r\nzastrčení\r\nzastrčený\r\nzastrčit\r\nzástrčka\r\nzástrčkový\r\nzastrkání\r\nzastrkaný\r\nzastrkat\r\nzastrkávání\r\nzastrkávaný\r\nzastrkávat\r\nzastrkování\r\nzastrkovaný\r\nzastrkovat\r\nzastřelenější\r\nzastřelení\r\nzastřelený\r\nzástřel\r\nzastřelit\r\nzastřelování\r\nzastřelovaný\r\nzastřelovat\r\nzastřelovávání\r\nzastřelovávaný\r\nzastřelovávat\r\nzastřenější\r\nzastření\r\nzastřený\r\nzastřešení\r\nzastřešený\r\nzastřešit\r\nzastřešovací\r\nzastřešování\r\nzastřešovaný\r\nzastřešovat\r\nzastřešující\r\nzastřihání\r\nzastříhání\r\nzastřihaný\r\nzastříhaný\r\nzastřihat\r\nzastříhat\r\nzastřihávání\r\nzastříhávání\r\nzastřihávaný\r\nzastříhávaný\r\nzastřihávat\r\nzastříhávat\r\nzástřih\r\nzastřihnout\r\nzastřihnutí\r\nzastřihovač\r\nzastřihování\r\nzastřihovaný\r\nzastřihovat\r\nzastříkání\r\nzastříkaný\r\nzastříkat\r\nzastříkávání\r\nzastříkávaný\r\nzastříkávat\r\nzastřílení\r\nzastřílený\r\nzastřílet\r\nzastřít\r\nzastřižený\r\nzastudena\r\nzastudit\r\nzastůňu\r\nzástupce\r\nzástupcův\r\nzástup\r\nzastupitelčin\r\nzastupitelka\r\nzastupitelnější\r\nzastupitelný\r\nzastupitel\r\nzastupitelský\r\nzastupitelství\r\nzastupitelstvo\r\nzastupitelův\r\nzástupka\r\nzástupkyně\r\nzástupkynin\r\nzástupný\r\nzastupovanější\r\nzastupování\r\nzastupovaný\r\nzastupovat\r\nzástupový\r\nzastupující\r\nzastuzenější\r\nzastuzený\r\nzastydění\r\nzastydět\r\nzastydlejší\r\nzastydlý\r\nzastýlat\r\nzasunout\r\nzasunovací\r\nzasunování\r\nzasunovaný\r\nzasunovat\r\nzasunovatelnější\r\nzasunutí\r\nzasunutý\r\nzasupění\r\nzasupěný\r\nzasupět\r\nzasutější\r\nzasutí\r\nzasutý\r\nzásuvka\r\nzásuvkový\r\nzásuvný\r\nzasvé\r\nzasvěcencův\r\nzasvěcenčin\r\nzasvěcenec\r\nzasvěcenější\r\nzasvěcení\r\nzasvěcenka\r\nzasvěcený\r\nzasvěcovací\r\nzasvěcování\r\nzasvěcovaný\r\nzasvěcovat\r\nzasvěcovatelčin\r\nzasvěcovatelka\r\nzasvěcovávání\r\nzasvěcovávaný\r\nzasvěcovávat\r\nzasvěcující\r\nzasvětit\r\nzasvětlání\r\nzasvětlat\r\nzasvícení\r\nzasvícený\r\nzasviněný\r\nzasvinit\r\nzasvištění\r\nzasvištět\r\nzásvit\r\nzasvítit\r\nzasvitnout\r\nzasvitnutí\r\nzasvrbět\r\nzasycenější\r\nzasycení\r\nzasycený\r\nzasycování\r\nzasycovaný\r\nzasycovat\r\nzasyčení\r\nzasyčený\r\nzasyčet\r\nzasychající\r\nzasychání\r\nzasýchání\r\nzasychat\r\nzasýchat\r\nzasyknout\r\nzasyknutí\r\nzasyknutý\r\nzasynchronizování\r\nzasynchronizovaný\r\nzasynchronizovat\r\nzasypající\r\nzasypanější\r\nzasypání\r\nzasýpání\r\nzasypaný\r\nzasýpaný\r\nzasypat\r\nzasýpat\r\nzasypávající\r\nzasypávanější\r\nzasypávání\r\nzasypávaný\r\nzasypávat\r\nzásyp\r\nzásypka\r\nzásypový\r\nzasytit\r\nzašalovat\r\nzašantročit\r\nzašaškování\r\nzašaškovat\r\nzašátrání\r\nzašátrat\r\nzašedivělý\r\nzašedlejší\r\nzašedlý\r\nzašelestit\r\nzašel\r\nzašepotat\r\nzašeptání\r\nzašeptaný\r\nzašeptat\r\nzašeptnout\r\nzáševek\r\nzaševelit\r\nzašifrovací\r\nzašifrovanější\r\nzašifrování\r\nzašifrovaný\r\nzašifrovat\r\nzašifrovatelnější\r\nzašifrovatelný\r\nzašifrovávání\r\nzašifrovávaný\r\nzašifrovávat\r\nzašifrující\r\nzašilhání\r\nzašilhat\r\nzašilhávání\r\nzašilhávat\r\nzašimrání\r\nzašimraný\r\nzašimrat\r\nzašišlání\r\nzašišlaný\r\nzašišlat\r\nzašít\r\nzašitější\r\nzašití\r\nzašitý\r\nzašitý\r\nzašívanější\r\nzašívání\r\nzašívaný\r\nzašívat\r\nzaškaredění\r\nzaškaredit\r\nzaškatulkování\r\nzaškatulkovaný\r\nzaškatulkovat\r\nzašklebení\r\nzašklebit\r\nzáškodnice\r\nzáškodnický\r\nzáškodnictví\r\nzáškodničtější\r\nzáškodník\r\nzáškodníkův\r\nzáškoláctví\r\nzáškolaččin\r\nzáškolačka\r\nzáškolák\r\nzáškolákův\r\nzaškolenější\r\nzaškolení\r\nzaškolený\r\nzaškolit\r\nzaškolovací\r\nzaškolování\r\nzaškolovaný\r\nzaškolovat\r\nzaškrabání\r\nzaškrábání\r\nzaškrabaný\r\nzaškrábaný\r\nzaškrabat\r\nzaškrábat\r\nzaškrabávání\r\nzaškrabávaný\r\nzaškrabávat\r\nzaškrabování\r\nzaškrabovaný\r\nzaškrabovat\r\nzaškrcenější\r\nzaškrcení\r\nzaškrcený\r\nzaškrcování\r\nzaškrcovaný\r\nzaškrcovat\r\nzaškrcovávání\r\nzaškrcovávaný\r\nzaškrcovávat\r\nzaškrtání\r\nzaškrtaný\r\nzaškrtat\r\nzaškrtávací\r\nzaškrtávání\r\nzaškrtávaný\r\nzaškrtávat\r\nzáškrt\r\nzaškrtit\r\nzaškrtnout\r\nzaškrtnutí\r\nzaškrtnutý\r\nzáškrtový\r\nzaškubání\r\nzaškubaný\r\nzaškubat\r\nzaškubávání\r\nzaškubávaný\r\nzaškubávat\r\nzaškubnout\r\nzaškubu\r\nzaškytat\r\nzašlapanější\r\nzašlapání\r\nzašlapaný\r\nzašlapat\r\nzašlapávání\r\nzašlapávaný\r\nzašlapávat\r\nzašlápnout\r\nzašlápnutí\r\nzašlápnutý\r\nzašlapování\r\nzašlehání\r\nzašlehaný\r\nzašlehat\r\nzašlehávání\r\nzašlehávaný\r\nzašlehávat\r\nzášleh\r\nzašlejší\r\nzašlu\r\nzašlukovat\r\nzašlý\r\nzašlý\r\nzašmátrání\r\nzašmátraný\r\nzašmátrat\r\nzašmelení\r\nzašmelený\r\nzašmelit\r\nzašmiknout\r\nzašmiknutí\r\nzašmiknutý\r\nzašmodrchanější\r\nzašmodrchání\r\nzašmodrchaný\r\nzašmodrchat\r\nzašmodrchávat\r\nzašněrování\r\nzašněrovaný\r\nzašněrovat\r\nzašněrovávat\r\nzašňupání\r\nzašňupaný\r\nzašňupat\r\nzašoupat\r\nzašoupnout\r\nzašoupnutí\r\nzašoupnutý\r\nzašourání\r\nzašourat\r\nZašová\r\nzašovský\r\nzašpásování\r\nzašpásovat\r\nzašpendlení\r\nzašpendlený\r\nzašpendlit\r\nzašpendlovat\r\nzašpičatělejší\r\nzašpičatělý\r\nzašpičatěný\r\nzašpičatit\r\nzašpiněnější\r\nzašpinění\r\nzašpiněný\r\nzašpinit\r\nzašpiňování\r\nzašpiňovaný\r\nzašpiňovat\r\nzašpitání\r\nzašpitaný\r\nzašpitat\r\nzašpitnout\r\nzašpitnutí\r\nzašramotit\r\nzašroubování\r\nzašroubovaný\r\nzašroubovat\r\nzašroubovávání\r\nzašroubovávaný\r\nzašroubovávat\r\nzašťárání\r\nzašťáraný\r\nzašťárat\r\nzaštěbetání\r\nzaštěbetat\r\nzaštěbotání\r\nzaštěbotat\r\nzaštěkání\r\nzaštěkaný\r\nzaštěkat\r\nzaštěknout\r\nzaštepování\r\nzaštepovaný\r\nzaštepovat\r\nzáštiplnější\r\nzáštiplný\r\nzaštípnout\r\nzaštípnutí\r\nzaštípnutý\r\nzaštipovací\r\nzaštipování\r\nzaštipovaný\r\nzaštipovat\r\nzáští\r\nzáštita\r\nzaštítěnější\r\nzaštítění\r\nzaštítěný\r\nzaštítit\r\nzáštitou\r\nzaštiťování\r\nzaštiťovaný\r\nzaštiťovat\r\nzaštiťující\r\nzášť\r\nzaštkaný\r\nzaštkat\r\nzašťouchání\r\nzašťouchaný\r\nzašťouchat\r\nzašťouchávání\r\nzašťouchávaný\r\nzašťouchávat\r\nzašťourání\r\nzašťouraný\r\nzašťourat\r\nzaštrachání\r\nzaštrachaný\r\nzaštrachat\r\nzaštupování\r\nzaštupovaný\r\nzaštupovat\r\nzašukání\r\nzašukaný\r\nzašukat\r\nzašumělý\r\nzašumění\r\nzašuměný\r\nzašumět\r\nzašupovací\r\nzašupování\r\nzašupovat\r\nzašustění\r\nzašustět\r\nzašustit\r\nzašuškat\r\nzašveholení\r\nzašveholený\r\nzašveholit\r\nzašvindlování\r\nzašvindlovaný\r\nzašvindlovat\r\nzašvitořit\r\nzatáčející\r\nzatáčení\r\nzatáčený\r\nzatáčet\r\nzatáčka\r\nzatahání\r\nzatahaný\r\nzatahat\r\nzátah\r\nzatáhnout\r\nzatáhnutí\r\nzatahovací\r\nzatahovanější\r\nzatahování\r\nzatahovaný\r\nzatahovat\r\nzatahovávání\r\nzatahovávaný\r\nzatahovávat\r\nzátahový\r\nzatahující\r\nzatajenější\r\nzatajení\r\nzatajený\r\nzatajit\r\nzatajitelnější\r\nzatajování\r\nzatajovaný\r\nzatajovat\r\nzatajující\r\nzaťal\r\nzatamponovaný\r\nzatancování\r\nzatancovaný\r\nzatancovat\r\nzatancovávání\r\nzatancovávaný\r\nzatancovávat\r\nzatančení\r\nzatančený\r\nzatančit\r\nzatápání\r\nzatápat\r\nzatápěč\r\nzatápěčův\r\nzatápění\r\nzatápět\r\nzatapetování\r\nzatapetovaný\r\nzatapetovat\r\nzatapetovávání\r\nzatapetovávaný\r\nzatapetovávat\r\nzaťápnout\r\nzaťápnutí\r\nzaťápnutý\r\nzatarasenější\r\nzatarasení\r\nzatarasený\r\nzátaras\r\nzatarasit\r\nzatarasovat\r\nzatarasující\r\nzaťatější\r\nzaťat\r\nzaťatý\r\nzaťatý\r\nzatavení\r\nzatavený\r\nzatavit\r\nzaťav\r\nzatavovací\r\nzatavování\r\nzatavovaný\r\nzatavovat\r\nzatavující\r\nzataženější\r\nzatažení\r\nzatažený\r\nzatažitelnější\r\nzatažitelný\r\nzátažný\r\nzatčení\r\nzatčený\r\nzatéct\r\nzatečení\r\nzatékající\r\nzatékání\r\nzatěkání\r\nzatěkaný\r\nzatékat\r\nzatěkat\r\nzatékavost\r\nzateklejší\r\nzateklý\r\nzatelefonování\r\nzatelefonovat\r\nzatelegrafovat\r\nzatemnělejší\r\nzatemněnější\r\nzatemnění\r\nzatemněný\r\nzatemnit\r\nzatemňovač\r\nzatemňování\r\nzatemňovaný\r\nzatemňovat\r\nzatemňující\r\nzatepla\r\nzateplenější\r\nzateplení\r\nzateplený\r\nzateplit\r\nzateplování\r\nzateplovaný\r\nzateplovat\r\nzateplovávání\r\nzateplovávaný\r\nzateplovávat\r\nzatěsnění\r\nzatetelení\r\nzatetelit\r\nzatětí\r\nzatěžkanější\r\nzatěžkání\r\nzatěžkaný\r\nzatěžkat\r\nzatěžkávací\r\nzatěžkávající\r\nzatěžkávání\r\nzatěžkávaný\r\nzatěžkávat\r\nzatěžko\r\nzatěžovací\r\nzatěžování\r\nzatěžovaný\r\nzatěžovat\r\nzátěžový\r\nzatěžující\r\nzátěž\r\nzatikání\r\nzatikat\r\nzatím\r\nzatímco\r\nzatímní\r\nzatínající\r\nzatínání\r\nzatínaný\r\nzatínat\r\nzatínávání\r\nzatínávaný\r\nzatínávat\r\nzatipování\r\nzatipovaný\r\nzatipovat\r\nzatíraní\r\nzatírání\r\nzatíraný\r\nzatírat\r\nzátiší\r\nzatít\r\nzatíženější\r\nzatížení\r\nzatížený\r\nzatížit\r\nzatížitelnější\r\nzatižitelný\r\nzatížitelný\r\nZátka\r\nzátka\r\nzatknout\r\nzatknutí\r\nzatknutý\r\nzatkoukání\r\nzátkovací\r\nzátkovačka\r\nzátkování\r\nzátkovaný\r\nzátkovat\r\nZátková\r\nzátkový\r\nZátkův\r\nzatlačení\r\nzatlačený\r\nzatlačit\r\nzatlačovanější\r\nzatlačování\r\nzatlačovaný\r\nzatlačovat\r\nzatleskání\r\nzatleskaný\r\nzatleskat\r\nzatlouct\r\nzatloukací\r\nzatloukající\r\nZatloukalová\r\nZatloukal\r\nZatloukalův\r\nzatloukanější\r\nzatloukání\r\nzatloukaný\r\nzatloukat\r\nzatloukávající\r\nzatloukávanější\r\nzatloukávání\r\nzatloukávaný\r\nzatloukávat\r\nzatlučenější\r\nzatlučení\r\nzatlučený\r\nzatlumenější\r\nzatlumení\r\nzatlumený\r\nzatlumit\r\nzatmelený\r\nzatmelit\r\nzatmelování\r\nzatmelovaný\r\nzatmelovat\r\nzatmelovávání\r\nzatmelovávaný\r\nzatmelovávat\r\nzatmění\r\nzatměný\r\nzatmět\r\nzatmít\r\nzatmívačka\r\nzatmívající\r\nzatmívání\r\nzatmívat\r\nzatnout\r\nzatnu\r\nzatnul\r\nzatnutější\r\nzatnutelnější\r\nzatnutelný\r\nzatnutí\r\nzatnutý\r\nzato\r\nzatočenější\r\nzatočení\r\nzatočený\r\nzátočina\r\nzátočinka\r\nzatočit\r\nzátočka\r\nzatokat\r\nzátoka\r\nzátok\r\nzátopa\r\nZátopek\r\nzatopenější\r\nzatopení\r\nzatopený\r\nzátop\r\nzatopit\r\nzatopitelnější\r\nzatopitelný\r\nZátopková\r\nZátopkův\r\nzatopovat\r\nzátopovější\r\nzátopový\r\nzatoulání\r\nzatoulaný\r\nzatoulat\r\nzatoulávat\r\nzatoužení\r\nzatoužit\r\nzatracencův\r\nzatracenec\r\nzatracenější\r\nzatracení\r\nzatracený\r\nzatracovanější\r\nzatracování\r\nzatracovaný\r\nzatracovat\r\nzatracovávání\r\nzatracovávaný\r\nzatracovávat\r\nzatracující\r\nzatraktivnění\r\nzatraktivněný\r\nzatraktivnit\r\nzatratit\r\nzátravka\r\nzatravnění\r\nzatravněný\r\nzatravnit\r\nzatra\r\nzatrénování\r\nzatrénovat\r\nzatrhající\r\nzatrhanější\r\nzatrhání\r\nzatrhaný\r\nzatrhat\r\nzatrhávající\r\nzatrhávanější\r\nzatrhávání\r\nzatrhávaný\r\nzatrhávat\r\nzátrh\r\nzatrhnout\r\nzatrhnutější\r\nzatrhnutí\r\nzatrhnutý\r\nzatrhovat\r\nzatrnout\r\nzatrnutí\r\nzatrnutý\r\nzatrolencův\r\nzatrolenec\r\nzatrolenější\r\nzatroubení\r\nzatroubený\r\nzatroubit\r\nzatrpklejší\r\nzatrpklý\r\nzatrpknout\r\nzatrpknutí\r\nzatrvzelý\r\nzatrylkování\r\nzatrylkovaný\r\nzatrylkovat\r\nzatržení\r\nzatržený\r\nzatřásl\r\nzatřást\r\nzatřenější\r\nzatření\r\nzatřený\r\nzatřepání\r\nzatřepaný\r\nzatřepat\r\nzatřepetat\r\nzatřepotat\r\nzatřesení\r\nzatřesen\r\nzatřesený\r\nzatřesu\r\nzatřídění\r\nzatříděný\r\nzatřídit\r\nzatřiďování\r\nzatřiďovaný\r\nzatřiďovat\r\nzatřít\r\nzatřpytění\r\nzatřpytit\r\nzatuhlý\r\nzatuhnout\r\nzatuhnutí\r\nzatuhnutý\r\nzatuchající\r\nzatuchat\r\nzatuchávat\r\nzatuchlina\r\nzatuchlý\r\nzatuchnout\r\nzatuchnutí\r\nzatuchnutý\r\nzaťukání\r\nzaťukaný\r\nzaťukat\r\nzaťukávání\r\nzaťukávaný\r\nzaťukávat\r\nzatušování\r\nzatušovaný\r\nzatušovat\r\nzatváření\r\nzatvářit\r\nzatvrdit\r\nzatvrdlejší\r\nzatvrdlina\r\nzatvrdlinka\r\nzatvrdlý\r\nzatvrdnout\r\nzatvrdnutí\r\nzatvrdnutý\r\nzatvrzelejší\r\nzatvrzelý\r\nzatvrzenější\r\nzatvrzení\r\nzatvrzený\r\nzatvrzování\r\nzatvrzovaný\r\nzatvrzovat\r\nzatýkací\r\nzatykač\r\nzatýkající\r\nzatýkanější\r\nzatýkání\r\nzatýkaný\r\nzatýkat\r\nzátylek\r\nzátylní\r\nzaučenější\r\nzaučení\r\nzaučený\r\nzaučit\r\nzaučovací\r\nzaučovanější\r\nzaučování\r\nzaučovaný\r\nzaučovat\r\nzaúčtovanější\r\nzaúčtování\r\nzaúčtovaný\r\nzaúčtovat\r\nzaúčtovávání\r\nzaúčtovávaný\r\nzaúčtovávat\r\nzaučující\r\nzauditovat\r\nzaúhlení\r\nzaúhlený\r\nzaujal\r\nzaujatější\r\nzaujat\r\nzaujatý\r\nzaujatý\r\nzaujetí\r\nzaujímající\r\nzaujímanější\r\nzaujímání\r\nzaujímaný\r\nzaujímatelnější\r\nzaujímatelný\r\nzaujímat\r\nzaujmout\r\nzaujmu\r\nzaujmutí\r\nzaúpění\r\nzaúpěný\r\nzaúpět\r\nzaurgování\r\nzaurgovat\r\nzaústění\r\nzaústit\r\nzaútočení\r\nzaútočený\r\nzaútočit\r\nzaútočit\r\nzautomatizování\r\nzautomatizovaný\r\nzautomatizovaný\r\nzautomatizovat\r\nzauvažovanější\r\nzauvažování\r\nzauvažovaný\r\nzauvažovat\r\nzauvažovatelnější\r\nzauvažovatelný\r\nzauvažující\r\nzaúvěrovaný\r\nzauzlenější\r\nzauzlení\r\nzauzlený\r\nzauzlit\r\nzauzlovací\r\nzauzlování\r\nzauzlovaný\r\nzauzlovat\r\nzauzlovávání\r\nzauzlovávaný\r\nzauzlovávat\r\nzaužívaný\r\nZávacký\r\nzavadání\r\nzavadaný\r\nZávada\r\nzavadat\r\nzavadávání\r\nzavadávat\r\nzávada\r\nzaváděcí\r\nzavaděč\r\nzavaděčův\r\nzavádějící\r\nzávádějící\r\nzaváděnější\r\nzavadění\r\nzavádění\r\nzávádění\r\nzaváděný\r\nzavádět\r\nZavadilová\r\nZavadil\r\nZavadilův\r\nzavadit\r\nzavadlý\r\nzávadnější\r\nzavadnout\r\nzavadnutí\r\nzavadnutý\r\nzávadný\r\nZávadová\r\nzávadový\r\nZávadův\r\nzaváhání\r\nzaváhat\r\nzaválcování\r\nzaválcovaný\r\nzavalenější\r\nzavalení\r\nzavalený\r\nzával\r\nzavalit\r\nzavalitější\r\nzavalitý\r\nzaválka\r\nzavalování\r\nzavalovaný\r\nzavalovat\r\nzavalovávání\r\nzavalovávaný\r\nzavalovávat\r\nZávalová\r\nZával\r\nzavalující\r\nZávalův\r\nzavánějící\r\nzavánění\r\nzavánět\r\nzávan\r\nzavání\r\nzavanout\r\nzavanutí\r\nzavanutý\r\nzavápnění\r\nzavápněný\r\nzavápnit\r\nzavařenina\r\nzavařeninový\r\nzavaření\r\nzaváření\r\nzavařený\r\nzavářený\r\nzavářet\r\nzavařit\r\nzavářka\r\nzavařovací\r\nzavařovačka\r\nzavařování\r\nzavařovaný\r\nzavařovat\r\nzavařovávat\r\nzavát\r\nzavátý\r\nzavazadlo\r\nzavazadlový\r\nZavázalová\r\nZavázal\r\nZavázalův\r\nzavázanější\r\nzavázání\r\nzavázaný\r\nzavázat\r\nzávazek\r\nzávazkový\r\nzávaznější\r\nzávazný\r\nzavazovanější\r\nzavazování\r\nzavazovaný\r\nzavazovat\r\nzavazující\r\nzavážecí\r\nzaváženější\r\nzavážení\r\nzavážený\r\nzavážet\r\nzaváži\r\nzávažíčko\r\nzávaží\r\nzavážka\r\nzavážkový\r\nzávažnější\r\nzávažný\r\nzavčas\r\nzavčasu\r\nzavdání\r\nzavdat\r\nzavdávající\r\nzavdávání\r\nzavdávaný\r\nzavdávat\r\nzávdavek\r\nzavděčení\r\nzavděčený\r\nzavděčit\r\nzavděčovat\r\nzavděk\r\nzavedenější\r\nzavedení\r\nzaveden\r\nzavedený\r\nzaveditelnější\r\nzaveditelný\r\nzavedl\r\nzavedu\r\nzávěj\r\nzavelení\r\nzavelený\r\nzavelet\r\nzávěra\r\nzávěrečný\r\nzávěrem\r\nzávěr\r\nzávěrka\r\nzávěrkový\r\nzávěrný\r\nzávěrový\r\nzávěsek\r\nzávěs\r\nzavěsit\r\nzaveslování\r\nzaveslovat\r\nzávěsný\r\nzávěsový\r\nzavést\r\nzavěšenější\r\nzavěšení\r\nzavěšený\r\nzavěšovací\r\nzavěšování\r\nzavěšovaný\r\nzavěšovat\r\nzavěštění\r\nzavěštit\r\nzávětí\r\nzávěť\r\nzávětmi\r\nzávětrný\r\nzavětrování\r\nzavětrovat\r\nzávětrovka\r\nzavětření\r\nzávětří\r\nzavětřit\r\nzavezenější\r\nzavezení\r\nzavezený\r\nzavézt\r\nzavibrování\r\nzavibrovat\r\nzavíčkování\r\nzavíčkovaný\r\nzavíčkovat\r\nzavíčkovávání\r\nzavíčkovávaný\r\nzavíčkovávat\r\nzávidějí\r\nzáviděníhodnější\r\nzáviděníhodný\r\nzávidění\r\nzáviděný\r\nzávidět\r\nZavidov\r\nzavidovský\r\nzavíječka\r\nzavíjející\r\nzavíjenější\r\nzavíjení\r\nzavilejší\r\nzavilý\r\nzavináč\r\nzavináčův\r\nzaviněnější\r\nzavinění\r\nzaviněný\r\nzávin\r\nzavinit\r\nzavinout\r\nzavinovačka\r\nzavinování\r\nzaviňování\r\nzavinovaný\r\nzaviňovat\r\nzavinovat\r\nzávinový\r\nzaviňující\r\nzavinutější\r\nzavinutí\r\nzavinutý\r\nzavinutý\r\nzavírací\r\nzavírající\r\nzavírák\r\nzavíranější\r\nzavírání\r\nzavíraný\r\nzavírat\r\nzavírávat\r\nzavirblovat\r\nzavírka\r\nzavirování\r\nzavirovaný\r\nzavirovat\r\nzavíření\r\nzavířit\r\nzávisející\r\nzávisení\r\nzáviset\r\nzávisící\r\nzávislejší\r\nzávislosti\r\nzávislostní\r\nzávislý\r\nzávislý\r\nzávistích\r\nzávistím\r\nzávistivcův\r\nzávistivec\r\nzávistivější\r\nzávistivý\r\nzávist\r\nzávistnější\r\nZávišín\r\nzávišínský\r\nZávišová\r\nZáviš\r\nZávišův\r\nzavítání\r\nzavítat\r\nzavít\r\nzavitější\r\nzávitek\r\nzávit\r\nzavití\r\nzávitka\r\nzávitnice\r\nzávitník\r\nzavit\r\nzávitořezný\r\nzávitovací\r\nzávitování\r\nzávitovaný\r\nzávitovat\r\nzávitovka\r\nzávitový\r\nzavitý\r\nzávlačka\r\nzávlačkový\r\nzavládnout\r\nzavládnutí\r\nzavládnutý\r\nzávlaha\r\nzávlahový\r\nzavlání\r\nzavlát\r\nzavlažení\r\nzavlažený\r\nzavlažit\r\nzavlažovací\r\nzavlažování\r\nzavlažovaný\r\nzavlažovat\r\nzavléct\r\nzavlečenější\r\nzavlečení\r\nzavlečený\r\nzavlečkovat\r\nzavlékání\r\nzavlékaný\r\nzavlékat\r\nzavlekl\r\nzavléknout\r\nZavlekov\r\nzavlekovský\r\nzavlhčovací\r\nzavlhčování\r\nzavlhčovaný\r\nzavlhčovat\r\nzavlhlejší\r\nzavlnit\r\nzávodčí\r\nzávodění\r\nzávod\r\nzávodící\r\nzávodiště\r\nzávodit\r\nzávodivý\r\nzávodka\r\nzavodněnější\r\nzavodnění\r\nzavodněný\r\nzávodnice\r\nzávodnický\r\nzávodničtější\r\nzávodník\r\nzávodníkův\r\nzavodnit\r\nzávodní\r\nzavodňovací\r\nzavodňování\r\nzavodňovaný\r\nzavodňovat\r\nZávodný\r\nzávodový\r\nzávojenka\r\nzávojíček\r\nzávojnatka\r\nzávojovina\r\nzávojový\r\nzávoj\r\nzavolanější\r\nzavolání\r\nzavolaný\r\nzavolat\r\nzavolení\r\nzavolený\r\nzavolit\r\nzavonění\r\nzavonět\r\nZavoralová\r\nZavoral\r\nZavoralův\r\nzávora\r\nZávorka\r\nzávorka\r\nzávorkovací\r\nzávorkování\r\nzávorkovaný\r\nzávorkovat\r\nZávorková\r\nzávorkový\r\nZávorkův\r\nzávorovací\r\nzávorování\r\nzávorovaný\r\nzávorovat\r\nzávorový\r\nzavoskovat\r\nzavozit\r\nzávoznický\r\nzávozničtější\r\nzávozník\r\nzávozníkův\r\nzavožení\r\nzavožený\r\nzávrativý\r\nzávrať\r\nzávratnější\r\nzávratný\r\nzávrať\r\nzavrávorání\r\nzavrávorat\r\nzavraždění\r\nzavražděný\r\nzavraždit\r\nzavrčení\r\nzavrčet\r\nzavrhnout\r\nzavrhnutí\r\nzavrhovanější\r\nzavrhování\r\nzavrhovaný\r\nzavrhovat\r\nzavrhující\r\nzavrkání\r\nzavrkat\r\nzavrkávání\r\nzavrkávat\r\nzavrnění\r\nzavrněný\r\nzavrnět\r\nzavršení\r\nzavršený\r\nzavršit\r\nzavršování\r\nzavršovaný\r\nzavršovat\r\nzavršující\r\nzavrtání\r\nzavrtaný\r\nzavrtat\r\nzavrtávání\r\nzavrtávat\r\nzavrtění\r\nzavrtěný\r\nzavrtět\r\nzávrt\r\nzavrzání\r\nzavrzaný\r\nzavrzat\r\nzavrzávání\r\nzavrzávat\r\nzavrznout\r\nzavržencův\r\nzavrženec\r\nzavrženější\r\nzavrženíhodnější\r\nzavrženíhodný\r\nzavržení\r\nzavržený\r\nzavržitelnější\r\nzavržu\r\nZavřelová\r\nZavřel\r\nZavřelův\r\nzavřenější\r\nzavření\r\nzavřený\r\nzavřeštění\r\nzavřeštěný\r\nzavřeštět\r\nzavřískání\r\nzavřískaný\r\nzavřískat\r\nzavřísknout\r\nzavřít\r\nzavšivenější\r\nzavšivený\r\nzavšivit\r\nzavšivování\r\nzavšivovaný\r\nzavšivovat\r\nzavtipkování\r\nzavtipkovaný\r\nzavtipkovat\r\nzávůdek\r\nzavycvičitelnější\r\nzavycvičitelný\r\nzavýskání\r\nzavýskat\r\nzavýsknout\r\nzavýsknutí\r\nzavýt\r\nzavytí\r\nzavzdechnout\r\nzavzdušit\r\nzavzdušnit\r\nzavzdušňovací\r\nzavzdušňování\r\nzavzdušňovaný\r\nzavzdušňovat\r\nzavzdušňovávat\r\nzavzdušovací\r\nzavzdušování\r\nzavzdušovaný\r\nzavzdušovat\r\nzavzdychat\r\nzavzdychnout\r\nzavzlykat\r\nzavzlyknout\r\nzavzpomínání\r\nzavzpomínaný\r\nzavzpomínat\r\nzazábl\r\nzazábnout\r\nzazábst\r\nzazálohování\r\nzazálohovaný\r\nzazálohovat\r\nzazáření\r\nzazářit\r\nzazátkování\r\nzazátkovaný\r\nzazátkovat\r\nzazávodění\r\nzazávodit\r\nzazdál\r\nzazdá\r\nzazdát\r\nzazděnější\r\nzazdění\r\nzazděný\r\nzazdít\r\nzazdívání\r\nzazdívaný\r\nzazdívat\r\nzazdívka\r\nzazebu\r\nzazelenání\r\nzazelenat\r\nzazelenávání\r\nzazelenávat\r\nzázemí\r\nzazemněný\r\nzazemňování\r\nzazimování\r\nzazimovaný\r\nzazimovat\r\nzazlívání\r\nzazlívaný\r\nzazlívat\r\nzazlobení\r\nzazlobený\r\nzazmatkaření\r\nzazmatkařit\r\nzazmatkování\r\nzazmatkovat\r\nzaznačení\r\nzaznačený\r\nzaznačit\r\nzaznamenanější\r\nzaznamenání\r\nzaznamenaný\r\nzaznamenatelný\r\nzaznamenat\r\nzaznamenávající\r\nzaznamenávanější\r\nzaznamenávání\r\nzaznamenávaný\r\nzaznamenávat\r\nzáznam\r\nzáznamník\r\nzáznamní\r\nzáznamový\r\nzáznějový\r\nzázněj\r\nzaznění\r\nzaznít\r\nzaznívající\r\nzaznívání\r\nzaznívat\r\nzazobancův\r\nzazobanec\r\nzazobanější\r\nzazobaný\r\nzazpívání\r\nzazpívaný\r\nzazpívat\r\nzázračnější\r\nzázračný\r\nzázrak\r\nzazubení\r\nzazubit\r\nzazurčení\r\nzazurčet\r\nzazuření\r\nzazuřit\r\nzazvonění\r\nzazvoněný\r\nzazvonit\r\nzázvor\r\nzázvorka\r\nzázvorkový\r\nzázvorový\r\nzazvučení\r\nzazvučený\r\nzazvučet\r\nzažádanější\r\nzažádání\r\nzažádaný\r\nzažádat\r\nzažal\r\nzažalování\r\nzažalovaný\r\nzažalovat\r\nzažalovávání\r\nzažalovávaný\r\nzažalovávat\r\nzažat\r\nzažatý\r\nzažehávat\r\nzážeh\r\nzažehlení\r\nzažehlený\r\nzažehlit\r\nzažehlovat\r\nzažehnající\r\nzažehnanější\r\nzažehnání\r\nzažehnaný\r\nzažehnat\r\nzažehnávanější\r\nzažehnávání\r\nzažehnávaný\r\nzažehnávat\r\nzažehnout\r\nzažehnutí\r\nzažehnutý\r\nzažehování\r\nzažehovat\r\nzážehový\r\nzažehrat\r\nzaženu\r\nzažertování\r\nzažertovat\r\nzažíhání\r\nzažíhaný\r\nzažíhat\r\nzažíhávat\r\nzažínání\r\nzažínaný\r\nzažínat\r\nzažírající\r\nzažírání\r\nzažíraný\r\nzažírat\r\nzažít\r\nzažitější\r\nzážitek\r\nzažít\r\nzažití\r\nzážitkový\r\nzažitý\r\nzažitý\r\nzaživa\r\nzažívací\r\nzažívadlo\r\nzažívající\r\nzažívanější\r\nzažívání\r\nzažívaný\r\nzažívat\r\nzáživnější\r\nzáživný\r\nzažloutlejší\r\nzažloutlý\r\nzažlucenější\r\nzažlunkat\r\nzažluňkat\r\nzažnout\r\nzažnu\r\nzažnutí\r\nzažonglování\r\nzažonglovat\r\nzažonglovávání\r\nzažonglovávat\r\nzažranější\r\nzažrání\r\nzažraný\r\nzažrat\r\nzažužlání\r\nzažužlat\r\nzažvatlání\r\nzažvatlaný\r\nzažvatlat\r\nzažvýkání\r\nzažvýkaný\r\nzažvýkat\r\nzbabělcův\r\nzbabělec\r\nzbabělejší\r\nzbabělý\r\nzbabrat\r\nzbabštělý\r\nzbadatelnější\r\nzbadatelný\r\nzbahnilý\r\nzbachratět\r\nzbanalizování\r\nzbanalizovaný\r\nzbanalizovat\r\nzbankrotování\r\nzbankrotovaný\r\nzbankrotovat\r\nzbarvenější\r\nzbarvení\r\nzbarvený\r\nzbarvit\r\nzbarvování\r\nzbarvovaný\r\nzbarvovat\r\nzbarvující\r\nzbaštění\r\nzbaštěný\r\nzbaštit\r\nzbavení\r\nzbavený\r\nzbavit\r\nzbavování\r\nzbavovaný\r\nzbavovat\r\nzbavující\r\nZbečno\r\nzbědovanější\r\nzbědování\r\nzbědovaný\r\nzbědovat\r\nzběhání\r\nzběhaný\r\nzběhat\r\nzběhlejší\r\nzběhlý\r\nzběhlý\r\nzběhnout\r\nzběhnutí\r\nzběh\r\nzběhův\r\nzbělání\r\nzbělat\r\nzbělelejší\r\nzbělenější\r\nzbělení\r\nzbělený\r\nzbělet\r\nZbelitov\r\nzbelitovský\r\nzběsilejší\r\nzběsilý\r\nzbezvýznamnění\r\nzbezvýznamněný\r\nzbezvýznamnit\r\nzběžnější\r\nzběžný\r\nzbičování\r\nzbičovaný\r\nzbičovat\r\nzbídačelejší\r\nzbídačelý\r\nzbídačenější\r\nzbídačení\r\nzbídačený\r\nzbídačit\r\nzbídačování\r\nzbídačovaný\r\nzbídačovat\r\nzbíhající\r\nzbíhanější\r\nzbíhání\r\nzbíhaný\r\nzbíhat\r\nzbilancování\r\nzbilancovaný\r\nzbilancovat\r\nzbilancovávání\r\nzbilancovávaný\r\nzbilancovávat\r\nZbiroh\r\nzbirožský\r\nzbít\r\nzbití\r\nzbit\r\nzbitý\r\nzbla\r\nzblázněnější\r\nzbláznění\r\nzblázněný\r\nzbláznit\r\nzblbělý\r\nzblblejší\r\nzblblý\r\nzblbnout\r\nzblbnutí\r\nzblbnutý\r\nzbledlejší\r\nzbledlý\r\nzblednout\r\nzblednutí\r\nzblít\r\nzblití\r\nzblit\r\nzblitý\r\nzblívání\r\nzblívaný\r\nzblívat\r\nzblízka\r\nzblo\r\nzblokovaný\r\nzblokovávání\r\nzblokovávaný\r\nzblokovávat\r\nzbloudění\r\nzbloudilcův\r\nzbloudilčin\r\nzbloudilec\r\nzbloudilka\r\nzbloudilý\r\nzbloudit\r\nzbobtnalý\r\nzbobtnání\r\nzbobtnaný\r\nzbobtnat\r\nzbohatlejší\r\nzbohatlice\r\nzbohatličin\r\nzbohatlík\r\nzbohatlíkův\r\nzbohatlý\r\nzbohatnout\r\nzbohatnutí\r\nzbojnický\r\nzbojnictví\r\nzbojník\r\nzbojníkův\r\nzboku\r\nzbolševizovaný\r\nzbolševizovat\r\nZborajová\r\nZboraj\r\nZborajův\r\nzborcenější\r\nzborcení\r\nzborcený\r\nZborovice\r\nzborovický\r\nZborov\r\nzborovský\r\nzbortěný\r\nzbortit\r\nzbořenina\r\nzbořenisko\r\nzboření\r\nzbořeniště\r\nzbořený\r\nZbořilová\r\nZbořil\r\nZbořilův\r\nzbořit\r\nzbořitelnější\r\nzbotnalý\r\nzbouchnout\r\nzbouchnutí\r\nzbouchnutý\r\nzbourání\r\nzbouraný\r\nzbourat\r\nzboží\r\nzbožíčko\r\nzbožíznalcův\r\nzbožíznalecký\r\nzbožíznalectví\r\nzbožíznalec\r\nzbožíznalkyně\r\nzbožíznalkynin\r\nzbožíznalství\r\nzbožnější\r\nzbožněnější\r\nzbožnění\r\nzbožněný\r\nzbožnit\r\nzbožní\r\nzbožňovanější\r\nzbožňování\r\nzbožňovaný\r\nzbožňovat\r\nzbožňovatelčin\r\nzbožňovatelka\r\nzbožňovatel\r\nzbožňovatelův\r\nzbožňovávat\r\nzbožňující\r\nzbožný\r\nzbožový\r\nzbožštělejší\r\nzbožštění\r\nzbožštěný\r\nzbožštit\r\nzbožšťovaný\r\nzbožšťovat\r\nzbožšťující\r\nZbránek\r\nZbránková\r\nZbránkův\r\nzbraňování\r\nzbraňovaný\r\nzbraňovat\r\nzbraňový\r\nzbraňující\r\nzbraň\r\nzbraslavecký\r\nZbraslavec\r\nZbraslavice\r\nzbraslavický\r\nZbraslav\r\nzbraslavský\r\nzbraslavský\r\nZbrašín\r\nzbrašínský\r\nzbrázděnější\r\nzbrázděný\r\nzbrázděný\r\nzbrázdit\r\nzbrklejší\r\nzbrklý\r\nzbrocený\r\nzbrojařčin\r\nzbrojařka\r\nzbrojařský\r\nzbrojařství\r\nzbrojař\r\nzbrojařův\r\nzbrojení\r\nzbrojený\r\nzbrojící\r\nzbrojířský\r\nzbrojířství\r\nzbrojíř\r\nzbrojířův\r\nzbrojit\r\nzbrojmistr\r\nzbrojmistrův\r\nzbrojnice\r\nzbrojní\r\nzbrojnoš\r\nzbrojnošův\r\nzbrojovka\r\nzbroj\r\nzbroj\r\nzbrousit\r\nzbroušenější\r\nzbroušení\r\nzbroušený\r\nzbrusu\r\nzbrušovanější\r\nzbrušování\r\nzbrušovaný\r\nzbrušovat\r\nzbrušující\r\nzbrzdění\r\nzbrzděný\r\nzbrzdit\r\nzbrzďování\r\nzbrzďovaný\r\nzbrzďovat\r\nzbudovanější\r\nzbudování\r\nzbudovaný\r\nzbudovat\r\nzbudovávanější\r\nzbudovávání\r\nzbudovávaný\r\nzbudovávat\r\nzbudu\r\nzbůhdarma\r\nzbujelejší\r\nzbujelý\r\nzbujnět\r\nzburcování\r\nzburcovaný\r\nzburcovat\r\nzburcovávání\r\nzburcovávaný\r\nzburcovávat\r\nzburžoaznělejší\r\nzbušení\r\nzbušený\r\nzbušit\r\nzbyl\r\nzbylý\r\nzbylý\r\nZbynďa\r\nZbynďův\r\nZbyněk\r\nZbyňkův\r\nzbyrokratizování\r\nzbyrokratizovaný\r\nzbyrokratizovat\r\nzbystřenější\r\nzbystření\r\nzbystřený\r\nzbystřit\r\nzbystřovat\r\nZbyšek\r\nZbyškův\r\nZbýšov\r\nzbýšovský\r\nzbyteček\r\nzbytečnější\r\nzbytečný\r\nzbytek\r\nzbýt\r\nzbytí\r\nzbytkovější\r\nzbytkový\r\nzbytkový\r\nzbytnější\r\nzbytnělejší\r\nzbytnělý\r\nzbytnění\r\nzbytněný\r\nzbytnět\r\nzbytňovat\r\nzbytný\r\nzbývající\r\nzbývání\r\nzbývat\r\nzbývávat\r\nzbyv\r\nzbyvše\r\nzbyvši\r\nzbyvší\r\nzcedit\r\nzcela\r\nzcelit\r\nzcelování\r\nzcentralizování\r\nzcentralizovaný\r\nzcentralizovat\r\nzcenzurování\r\nzcenzurovaný\r\nzcenzurovat\r\nzcepenělý\r\nzcepenění\r\nzcepeněný\r\nzcepenět\r\nzcestnější\r\nzcestný\r\nzcestovalejší\r\nzcestovalý\r\nzcestování\r\nzcestovat\r\nzcezení\r\nzcezený\r\nzcezování\r\nzcezovaný\r\nzcezovat\r\nzcibebovatělý\r\nzcibébovatět\r\nzcitlivění\r\nzcitlivěný\r\nzcivilizování\r\nzcivilizovaný\r\nzcivilizovat\r\nzcivilizovávat\r\nzcivilnění\r\nzcivilněný\r\nzcivilnit\r\nzcivilňovací\r\nzcivilňování\r\nzcizení\r\nzcizený\r\nzcizit\r\nzcizitelčin\r\nzcizitelka\r\nzcizitelnější\r\nzcizitelný\r\nzcizitel\r\nzcizitelův\r\nzcizoložit\r\nzcizovací\r\nzcizování\r\nzcizovaný\r\nzcizovat\r\nzcizující\r\nzcuchanější\r\nzcuchání\r\nzcuchaný\r\nzcuchat\r\nzcuchávat\r\nzcukernatělý\r\nzcukernatění\r\nzcukernatět\r\nzcukření\r\nzcukřený\r\nzcukřit\r\nzcvrklejší\r\nzcvrknout\r\nzcyničtělejší\r\nzčásti\r\nzčernalejší\r\nzčernalý\r\nzčernání\r\nzčernaný\r\nzčernat\r\nzčerstva\r\nzčervavět\r\nzčervenalejší\r\nzčervenalý\r\nzčervenání\r\nzčervenat\r\nzčervivělý\r\nzčeření\r\nzčeřený\r\nzčeřit\r\nzčeřovat\r\nzčesanější\r\nzčesání\r\nzčesaný\r\nzčesat\r\nzčesávání\r\nzčesávaný\r\nzčesávat\r\nzčeštělý\r\nzčeštění\r\nzčeštěný\r\nzčeštit\r\nzčešťování\r\nzčešťovaný\r\nzčešťovat\r\nzčista\r\nzčistajasna\r\nzčistit\r\nzčištěný\r\nzčtyřnásobení\r\nzčtyřnásobený\r\nzčtyřnásobit\r\nZČU\r\nZD\r\nzda\r\nzdaleka\r\nzdali\r\nzdáli\r\nzdalipak\r\nzdálky\r\nzdanění\r\nzdaněný\r\nzdání\r\nzdanit\r\nzdanitelnější\r\nzdanitelný\r\nzdánlivý\r\nzdaňovací\r\nzdaňování\r\nzdaňovaný\r\nzdaňovat\r\nzdar\r\nzdarma\r\nzdárnější\r\nzdárný\r\nzdařenější\r\nzdaření\r\nzdařený\r\nzdařilejší\r\nzdařilý\r\nzdařit\r\nzdařivší\r\nzdát\r\nzdatnější\r\nzdatný\r\nzdávání\r\nzdávat\r\nzde\r\nZdebský\r\nzdecimování\r\nzdecimovaný\r\nzdecimovat\r\nzdecimovávání\r\nzdecimovávaný\r\nzdecimovávat\r\nzděděnější\r\nzdědění\r\nzděděný\r\nzdědit\r\nzděditelnější\r\nzdeformování\r\nzdeformovaný\r\nzdeformovaný\r\nzdeformovat\r\nzdegenerování\r\nzdegenerovaný\r\nzdegenerovat\r\nzdegradovat\r\nzdech\r\nzdechlina\r\nzdechlý\r\nzdechnout\r\nzdechnutí\r\nzdechnutý\r\nZděchov\r\nzděchovský\r\nzdejchnout\r\nzdejchnutí\r\nzdejší\r\nzdělení\r\nzdělený\r\nzdělit\r\nZdelov\r\nzdelovský\r\nzdem\r\nzdemokratizování\r\nzdemokratizovaný\r\nzdemokratizovat\r\nzdemolování\r\nzdemolovaný\r\nzdemolovat\r\nzdemoralizování\r\nzdemoralizovaný\r\nzdemoralizovat\r\nZdemyslice\r\nzdemyslický\r\nZdena\r\nZdenčinčin\r\nZdenčinka\r\nZdenčin\r\nZdeňčin\r\nZdenek\r\nZdeněk\r\nZdenice\r\nzdenický\r\nZdeniččin\r\nZdenička\r\nzdění\r\nZdenka\r\nZdeňka\r\nZdeňková\r\nZdeňkov\r\nzdeňkovský\r\nZdenkův\r\nZdeňkův\r\nZdenová\r\nZdenův\r\nzděný\r\nzděný\r\nzdeprimovat\r\nzdeptanější\r\nzdeptání\r\nzdeptaný\r\nzdeptat\r\nzdeptávání\r\nzdeptávaný\r\nzdeptávat\r\nzderivování\r\nzderivovaný\r\nzderivovat\r\nzděř\r\nzdesateronásobení\r\nzděsení\r\nzdesetinásobení\r\nzdesetinásobený\r\nzdesetinásobit\r\nzděsit\r\nzdestruování\r\nzdestruovaný\r\nzdestruovat\r\nzděšenější\r\nzděšení\r\nzděšený\r\nZdětín\r\nzdětínský\r\nzdětinštění\r\nzdětinštět\r\nzdevastovanější\r\nzdevastování\r\nzdevastovaný\r\nzdevastovat\r\nzdi\r\nzdí\r\nZdice\r\nzdicí\r\nzdící\r\nzdický\r\nzdigitalizování\r\nzdigitalizovaný\r\nzdigitalizovat\r\nzdích\r\nZdíkov\r\nzdíkovský\r\nzdím\r\nzdířka\r\nzdisgustovat\r\nzdiskreditování\r\nzdiskreditovaný\r\nzdiskreditovat\r\nzdiskreditovávání\r\nzdiskreditovávaný\r\nzdiskreditovávat\r\nZdislava\r\nZdislavice\r\nzdislavický\r\nZdislavin\r\nZdíša\r\nZdíšin\r\nzdít\r\nzdivadelnění\r\nzdivadelněný\r\nzdivadelnit\r\nzdívat\r\nzdivočelejší\r\nzdivočelý\r\nzdivočení\r\nzdivočet\r\nzdivočit\r\nzdivo\r\nzdlabování\r\nzdlabovat\r\nzdlouha\r\nzdlouhavější\r\nzdlouhavý\r\nzdmi\r\nzdobencův\r\nzdobenec\r\nzdobenější\r\nzdobení\r\nzdobený\r\nzdobený\r\nzdobicí\r\nzdobící\r\nZdobín\r\nzdobínský\r\nzdobit\r\nzdobivější\r\nzdobivý\r\nzdobnější\r\nZdobnice\r\nzdobný\r\nzdokladovat\r\nzdokonalenější\r\nzdokonalení\r\nzdokonalený\r\nzdokonalit\r\nzdokonalitelnější\r\nzdokonalitelný\r\nzdokonalovací\r\nzdokonalování\r\nzdokonalovaný\r\nzdokonalovat\r\nzdokonalovávání\r\nzdokonalovávaný\r\nzdokonalovávat\r\nzdokonalující\r\nzdokonolovávání\r\nzdokonolovávaný\r\nzdokonolovávat\r\nzdokumentování\r\nzdokumentovaný\r\nzdokumentovat\r\nzdokumetování\r\nzdokumetovaný\r\nzdokumetovat\r\nzdola\r\nzdolání\r\nzdolaný\r\nzdolatelnější\r\nzdolatelný\r\nzdolat\r\nzdolávací\r\nzdolávající\r\nzdolávání\r\nzdolávaný\r\nzdolávat\r\nzdolný\r\nzdomácnělejší\r\nzdomácnělý\r\nzdomácněnější\r\nzdomácnění\r\nzdomácněný\r\nzdomácnět\r\nzdomácňování\r\nzdomácňovat\r\nzdráhající\r\nZdráhalová\r\nZdráhal\r\nZdráhalův\r\nzdráhání\r\nzdráhat\r\nzdráhávání\r\nzdráhávat\r\nzdráhavější\r\nzdráhavý\r\nzdramatizování\r\nzdramatizovaný\r\nzdramatizovat\r\nzdramatizovávat\r\nzdrávas\r\nzdravější\r\nzdravení\r\nzdravený\r\nzdraví\r\nzdravice\r\nzdravící\r\nzdravíčko\r\nzdravit\r\nzdráv\r\nzdravotechnika\r\nzdravotněpojišťovací\r\nzdravotnice\r\nzdravotnický\r\nzdravotnictví\r\nzdravotničtější\r\nzdravotník\r\nzdravotníkův\r\nzdravotní\r\nzdravověda\r\nzdravý\r\nzdravý\r\nzdražení\r\nzdražený\r\nZdražilová\r\nZdražil\r\nZdražilův\r\nzdražit\r\nzdražování\r\nzdražovaný\r\nzdražovat\r\nzdražující\r\nzdrbání\r\nzdrbaný\r\nzdrbat\r\nzdrbávání\r\nzdrbávaný\r\nzdrbávat\r\nzdrcenější\r\nzdrcení\r\nzdrcený\r\nzdrcnutý\r\nzdrcující\r\nzdrhnout\r\nzdrhnutí\r\nzdrhnutý\r\nzdrhovací\r\nzdrhovadlo\r\nzdrhování\r\nzdrhovaný\r\nzdrhovat\r\nzdrchanější\r\nzdrchání\r\nzdrchaný\r\nzdrchat\r\nzdrobnělejší\r\nzdrobnělina\r\nzdrobnělý\r\nzdrobňující\r\nzdrogování\r\nzdrogovaný\r\nzdrogovat\r\nzdrojový\r\nzdroj\r\nzdrsnělejší\r\nzdrsnělý\r\nzdrsněnější\r\nzdrsnění\r\nzdrsněný\r\nzdrsnět\r\nzdrsnit\r\nzdrsňovací\r\nzdrsňování\r\nzdrsňovaný\r\nzdrsňovat\r\nzdrsňující\r\nzdrtit\r\nzdruhovět\r\nzdružstevněný\r\nzdružstevnit\r\nzdružstevňování\r\nzdružstevňovat\r\nzdrželivý\r\nzdrženější\r\nzdržení\r\nzdrženlivější\r\nzdrženlivý\r\nzdržený\r\nzdržet\r\nzdržovací\r\nzdržovačka\r\nzdržovanější\r\nzdržování\r\nzdržovaný\r\nzdržovat\r\nzdržující\r\nzdrž\r\nzdřevěnělejší\r\nzdřevěnělý\r\nzdřevěnění\r\nzdřevěněný\r\nzdřevěnět\r\nzdřevnatělejší\r\nzdřevnatělý\r\nzdřevnatět\r\nzdřímnout\r\nzdřímnutí\r\nZDŠ\r\nzduchovnělejší\r\nzduchovnělý\r\nzduchovnění\r\nzduchovněný\r\nzduchovnit\r\nzdupanější\r\nzdupání\r\nzdupaný\r\nzdupat\r\nzdupávanější\r\nzdupávání\r\nzdupávaný\r\nzdupávat\r\nzduplikování\r\nzduplikovaný\r\nzduplikovat\r\nzduplikovávání\r\nzduplikovávaný\r\nzduplikovávat\r\nzdupnout\r\nzdupnutější\r\nzdupnutí\r\nzdupnutý\r\nzdupnutý\r\nzdupu\r\nzdůrazněnější\r\nzdůraznění\r\nzdůrazněný\r\nzdůraznit\r\nzdůrazňování\r\nzdůrazňovaný\r\nzdůrazňovat\r\nzdůrazňovávat\r\nzdůrazňující\r\nzduřelejší\r\nzduřelý\r\nzduřenina\r\nzduření\r\nzduřený\r\nzduřet\r\nzdusanější\r\nzdusání\r\nzdusaný\r\nzdusat\r\nzdusávání\r\nzdusávaný\r\nzdusávat\r\nzdusit\r\nzdůslednění\r\nzdůsledněný\r\nzdůslednit\r\nzdušenější\r\nzdušení\r\nzdušený\r\nzdůvěrnělejší\r\nzdůvěrnění\r\nzdůvěrněný\r\nzdůvěrnit\r\nzdůvěrňující\r\nzdůvodněnější\r\nzdůvodnění\r\nzdůvodněný\r\nzdůvodnit\r\nzdůvodnitelnější\r\nzdůvodnitelný\r\nzdůvodňování\r\nzdůvodňovaný\r\nzdůvodňovat\r\nzdůvodňující\r\nzdužnatělejší\r\nzdužnatělý\r\nzdužnatět\r\nzdvihací\r\nzdvíhací\r\nzdvihač\r\nzdvihadlo\r\nzdvihající\r\nzdvíhající\r\nzdvihák\r\nZdvihalová\r\nZdvíhalová\r\nZdvihal\r\nZdvíhal\r\nZdvihalův\r\nZdvíhalův\r\nzdvihání\r\nzdvihání\r\nzdvíhání\r\nzdvihaný\r\nzdvíhaný\r\nzdvihat\r\nzdvíhat\r\nzdvihátko\r\nzdvihávání\r\nzdvíhávání\r\nzdvihávaný\r\nzdvíhávaný\r\nzdvihávat\r\nzdvíhávat\r\nzdvih\r\nzdvihnout\r\nzdvihnutější\r\nzdvihnutí\r\nzdvihnutý\r\nzdvihový\r\nzdvižení\r\nzdvižený\r\nzdvižený\r\nzdvižný\r\nzdviž\r\nzdvojenější\r\nzdvojení\r\nzdvojený\r\nzdvojit\r\nzdvojmocněný\r\nzdvojnásobení\r\nzdvojnásobený\r\nzdvojnásobit\r\nzdvojnásobování\r\nzdvojnásobovaný\r\nzdvojnásobovat\r\nzdvojovací\r\nzdvojovačka\r\nzdvojovač\r\nzdvojování\r\nzdvojovaný\r\nzdvojovat\r\nzdvojující\r\nzdvořilejší\r\nzdvořilostní\r\nzdvořilý\r\nzdýmací\r\nzdymadlo\r\nzdymadlový\r\nzdynamizování\r\nzdynamizovaný\r\nzdynamizovat\r\nze\r\nzebení\r\nzebezpečování\r\nzeblít\r\nzeblití\r\nzeblit\r\nzeblitý\r\nzeblívání\r\nzeblívaný\r\nzeblívat\r\nzebra\r\nzebřiččin\r\nzebřička\r\nzebří\r\nzebu\r\nzebu\r\nzečtyřnásobení\r\nzečtyřnásobený\r\nzečtyřnásobit\r\nzeď\r\nzeditování\r\nzeditovaný\r\nzeditovat\r\nzednářský\r\nzednářství\r\nzednář\r\nzednářův\r\nzednický\r\nzednictví\r\nZedníček\r\nZedníčková\r\nZedníčkův\r\nZedníková\r\nzedník\r\nZedník\r\nZedníkův\r\nzedníkův\r\nzední\r\nzedraný\r\nzedřený\r\nzefektivnění\r\nzefektivněný\r\nzefektivnit\r\nzefektivňování\r\nzefektivňovaný\r\nzefektivňovat\r\nzefektivňovávat\r\nzefektivňující\r\nzefír\r\nzefýr\r\nZeisbergerová\r\nZeisberger\r\nZeisbergerův\r\nZeithamlová\r\nZeithaml\r\nZeithamlův\r\nZeithammerová\r\nZeithammer\r\nZeithammerův\r\nZejbrdlíková\r\nZejbrdlík\r\nZejbrdlíkův\r\nZejfertová\r\nZejfert\r\nZejfertův\r\nzející\r\nzejména\r\nzekonomizovat\r\nZéland\r\nzelánka\r\nzelektrifikovat\r\nzelenačka\r\nzelenáč\r\nzelenáčův\r\nzelenající\r\nZelenáková\r\nZelenák\r\nZelenákův\r\nzelenání\r\nzelenat\r\nzelenávání\r\nzelenávat\r\nzelenavý\r\nzelenější\r\nzelenina\r\nzeleninový\r\nzelenivka\r\nZelenka\r\nzelenkavý\r\nzelenka\r\nZelenková\r\nZelenkův\r\nzelenočerný\r\nzelenohnědý\r\nzelenohorský\r\nzelenomodravý\r\nzelenomodrý\r\nzelenooký\r\nzelenošedý\r\nzelenožlutý\r\nZelený\r\nzelený\r\nzeleň\r\nzelí\r\nzelinářčin\r\nzelinářka\r\nzelinářský\r\nzelinářství\r\nzelinář\r\nzelinářův\r\nZelinka\r\nzelinka\r\nZelinková\r\nZelinkův\r\nzelinový\r\nZelinský\r\nzelňačka\r\nzelný\r\nZelot\r\nzemák\r\nzemákový\r\nZemančíková\r\nZemančík\r\nZemančíkův\r\nzemančin\r\nZemánek\r\nzemanka\r\nZemánková\r\nZemánkův\r\nZemanová\r\nzeman\r\nZeman\r\nzemanský\r\nzemanstvo\r\nZemanův\r\nzemanův\r\nZemčíková\r\nZemčík\r\nZemčíkův\r\nzemdlelejší\r\nzemdlelý\r\nzemdlenější\r\nzemdlení\r\nzemdlený\r\nzemdlet\r\nzemdlít\r\nzemdlívání\r\nzemdlívat\r\nzeměbrana\r\nzeměbranecký\r\nzemědělcův\r\nzemědělec\r\nzemědělka\r\nzemědělskopotravinářský\r\nzemědělskoprůmyslový\r\nzemědělský\r\nzemědělství\r\nzemědíl\r\nzeměkoule\r\nZemek\r\nzeměměřický\r\nzeměměřictví\r\nzeměměřičský\r\nzeměměřičství\r\nzeměměřič\r\nzeměměřičův\r\nzeměměřiský\r\nzeměpiscův\r\nzeměpisec\r\nzeměpis\r\nzeměpisný\r\nzemětřesení\r\nzemětřesný\r\nzeměvládce\r\nzeměvládcův\r\nzemě\r\nzeměžlučový\r\nzeměžluč\r\nzemička\r\nzemina\r\nzemitější\r\nzemitý\r\nZemková\r\nZemkův\r\nzemljanka\r\nzemněný\r\nzemnice\r\nzemnící\r\nzemní\r\nzemplínský\r\nzemra\r\nzemřelejší\r\nzemřelý\r\nzemření\r\nzemřít\r\nzemský\r\nzem\r\nzenbuddhista\r\nzenbuddhistčin\r\nzenbuddhistka\r\nzenbuddhistův\r\nzenismus\r\nzení\r\nzenista\r\nzenistčin\r\nzenistka\r\nzenistův\r\nZenitcentrum\r\nzenit\r\nzenitový\r\nZenklová\r\nZenkl\r\nZenklův\r\nZenko\r\nZenková\r\nZenkův\r\nZenon\r\nZenonův\r\nzenový\r\nzeolit\r\nzeolitový\r\nZeppelin\r\nZeppelinův\r\nzepředu\r\nzepsutější\r\nzeptání\r\nzeptaný\r\nzeptat\r\nZeráková\r\nZerák\r\nZerákův\r\nzerav\r\nzerodovat\r\nzerotizování\r\nzerotizovaný\r\nzerotizovat\r\nzerový\r\nzeselštěný\r\nzesilážovat\r\nzesílenější\r\nzesílení\r\nzesílený\r\nzesílit\r\nzesilnění\r\nzesilovací\r\nzesilovač\r\nzesilování\r\nzesilovaný\r\nzesilovat\r\nzesilovávání\r\nzesilovávaný\r\nzesilovávat\r\nzesilující\r\nzesinalý\r\nzesinání\r\nzesinat\r\nzesíťování\r\nzeskelnatění\r\nzeskelnatěný\r\nzeskelnatět\r\nzesklovatění\r\nzesklovatěný\r\nzesklovatět\r\nzeslabení\r\nzeslabený\r\nzeslabit\r\nzesláblejší\r\nzesláblý\r\nzeslábnout\r\nzeslábnutí\r\nzeslabovač\r\nzeslabování\r\nzeslabovaný\r\nzeslabovat\r\nzeslabující\r\nzesládlejší\r\nzesládnout\r\nzesládnutí\r\nzesladovaný\r\nzesladovat\r\nzesložitění\r\nzesměšnění\r\nzesměšněný\r\nzesměšnit\r\nzesměšňování\r\nzesměšňovaný\r\nzesměšňovat\r\nzesměšňovávat\r\nzesměšňující\r\nzesmutnělejší\r\nzesmutnělý\r\nzesmutnění\r\nzesmutnět\r\nzesnout\r\nzesnulý\r\nzesnutí\r\nzesobečtění\r\nzesolidní\r\nzesoustavnit\r\nzespoda\r\nzespodu\r\nzespolečenštěný\r\nzespolečenšťování\r\nzespolečenšťovat\r\nzestárlý\r\nzestárnout\r\nzestárnul\r\nzestárnutí\r\nzestátnění\r\nzestátněný\r\nzestátnit\r\nzestátňovací\r\nzestátňování\r\nzestátňovaný\r\nzestátňovat\r\nzestátňovávat\r\nzestejnění\r\nzestonásobení\r\nzestonásobený\r\nzestonásobit\r\nzestručnělejší\r\nzestručnění\r\nzestručněný\r\nzestručnit\r\nzestručňovat\r\nzestylizovat\r\nzesumarizování\r\nzesumarizovaný\r\nzesumarizovat\r\nzesurovění\r\nzesurovět\r\nzesvětlení\r\nzesvětlený\r\nzesvětlet\r\nzesvětlit\r\nzesvětlování\r\nzesvětlovaný\r\nzesvětlovat\r\nzesvětlovávání\r\nzesvětlovávaný\r\nzesvětlovávat\r\nzesvětštělý\r\nzesvětštění\r\nzesvětštěný\r\nzesvětštit\r\nzesvětšťovat\r\nzesýrovatělý\r\nzešedivělý\r\nzešedivění\r\nzešedivět\r\nzešedlejší\r\nzešednout\r\nzešednutí\r\nzešeřelejší\r\nzešeřelý\r\nzešeřelý\r\nzešeření\r\nzešeřit\r\nzešikma\r\nzešikmenější\r\nzešikmení\r\nzešikmený\r\nzešikmit\r\nzešílení\r\nzešílet\r\nzešílit\r\nzeširoka\r\nzešpičatět\r\nzeštíhlení\r\nzeštíhlený\r\nzeštíhlet\r\nzeštíhlit\r\nzeštíhlování\r\nzeštíhlovaný\r\nzeštíhlovat\r\nzeštíhlovávání\r\nzeštíhlovávaný\r\nzeštíhlovávat\r\nzeštíhlující\r\nzet\r\nzetko\r\nZetkový\r\nzetlelý\r\nzetlení\r\nzetlít\r\nZetor\r\nzeťovi\r\nzeť\r\nzeťův\r\nzeugma\r\nZeus\r\nzevangelizování\r\nzevangelizovaný\r\nzevangelizovat\r\nzevloun\r\nzevlounův\r\nzevlování\r\nzevlovaný\r\nzevlovat\r\nzevlovávání\r\nzevlovávat\r\nzevlující\r\nzevnějšek\r\nzevnější\r\nzevnější\r\nzevnějškový\r\nzevnitř\r\nzevní\r\nzevropštělý\r\nzevrubnější\r\nzevrubný\r\nzevšednělý\r\nzevšednění\r\nzevšedněný\r\nzevšednět\r\nzevšednit\r\nzevšedňovat\r\nzevšeobecnění\r\nzevšeobecněný\r\nzevšeobecnit\r\nzevšeobecňování\r\nzevšeobecňovaný\r\nzevšeobecňovat\r\nzevšeobecňující\r\nZeyerová\r\nZeyer\r\nZeyerův\r\nzeza\r\nzezadu\r\nzezdola\r\nzezelenalý\r\nzezelenání\r\nzezelenat\r\nzezelenávání\r\nzezelenávat\r\nzezlátlejší\r\nzezlátnout\r\nzezlátnutí\r\nZezuláková\r\nZezulák\r\nZezulákův\r\nZezula\r\nzezulčin\r\nzezulka\r\nZezulová\r\nZezulův\r\nzezvířečtělý\r\nzežloutlejší\r\nzežloutlý\r\nzežloutnout\r\nzežloutnutí\r\nzežloutnutý\r\nzežmolkovatění\r\nzežmolkovatěný\r\nzežmolkovatět\r\nzfackování\r\nzfackovaný\r\nzfackovat\r\nzfalšování\r\nzfalšovaný\r\nzfalšovat\r\nzfalšovatelný\r\nzfanatizování\r\nzfanatizovaný\r\nzfanatizovat\r\nzfanfrněný\r\nzfaulování\r\nzfaulovaný\r\nzfaulovat\r\nzfetování\r\nzfetovaný\r\nzfetovat\r\nzfialovělý\r\nzfialovění\r\nzfialověný\r\nzfialovět\r\nzfilmování\r\nzfilmovaný\r\nzfilmovat\r\nzfilmovatelný\r\nzfilmovávání\r\nzfilmovávaný\r\nzfilmovávat\r\nzfiltrovanější\r\nzfiltrování\r\nzfiltrovaný\r\nzfiltrovat\r\nzfiltrovávat\r\nzformalizování\r\nzformalizovaný\r\nzformalizovat\r\nzformátování\r\nzformátovaný\r\nzformátovat\r\nzformátovávání\r\nzformátovávaný\r\nzformátovávat\r\nzformování\r\nzformovaný\r\nzformovat\r\nzformovávání\r\nzformovávaný\r\nzformovávat\r\nzformulování\r\nzformulovaný\r\nzformulovat\r\nzformulovávání\r\nzformulovávaný\r\nzformulovávat\r\nzfotrovatělý\r\nzfušování\r\nzfušovaný\r\nzfušovat\r\nzgermanizování\r\nzgermanizovaný\r\nzgermanizovat\r\nzglajchšaltování\r\nzglajchšaltovaný\r\nzglajchšaltovat\r\nzglajchšaltovávání\r\nzglajchšaltovávaný\r\nzglajchšaltovávat\r\nzgruntu\r\nzgustnout\r\nzhacení\r\nzhacený\r\nzhadrovatělý\r\nzhadrovatět\r\nzhanět\r\nzhanit\r\nzhanobení\r\nzhanobený\r\nzhanobit\r\nzharmonizování\r\nzharmonizovaný\r\nzharmonizovat\r\nzhasínač\r\nzhasínající\r\nzhasínání\r\nzhasínaný\r\nzhasínat\r\nzhasínátko\r\nzhasit\r\nzhaslý\r\nzhasnout\r\nzhasnutí\r\nzhasnutý\r\nzhasnutý\r\nzhášecí\r\nzhášedlo\r\nzhašení\r\nzhášení\r\nzhašený\r\nzhatit\r\nzhavarování\r\nzhavarovaný\r\nzhavarovat\r\nzhebnout\r\nzhebnutí\r\nzhlédnout\r\nzhlédnul\r\nzhlédnutější\r\nzhlédnutí\r\nzhlédnutý\r\nzhlédnutý\r\nzhlídnout\r\nzhlídnul\r\nzhlížející\r\nzhlíženější\r\nzhlížení\r\nzhlížený\r\nzhlížet\r\nzhlouplejší\r\nzhlouplý\r\nzhloupnout\r\nzhloupnutí\r\nzhltání\r\nzhltaný\r\nzhltat\r\nzhltnout\r\nzhltnutí\r\nzhltnutý\r\nzhluboka\r\nzhmotnělejší\r\nzhmotnělý\r\nzhmotněnější\r\nzhmotnění\r\nzhmotněný\r\nzhmotnět\r\nzhmotnit\r\nzhmotňovat\r\nzhmotňující\r\nzhmožděnější\r\nzhmožděnina\r\nzhmoždění\r\nzhmožděný\r\nzhmoždit\r\nzhnědlejší\r\nzhnědnout\r\nzhnědnutí\r\nzhnědnutý\r\nzhnisání\r\nzhnisaný\r\nzhnusenější\r\nzhnusení\r\nzhnusený\r\nzhnusit\r\nzhnusující\r\nzhodnocenější\r\nzhodnocení\r\nzhodnocený\r\nzhodnocovanější\r\nzhodnocování\r\nzhodnocovaný\r\nzhodnocovat\r\nzhodnocující\r\nzhodnotit\r\nzhojení\r\nzhojený\r\nzhojit\r\nzhojitelnější\r\nzhola\r\nzhoršenější\r\nzhoršení\r\nzhoršený\r\nzhoršit\r\nzhoršovanější\r\nzhoršování\r\nzhoršovaný\r\nzhoršovat\r\nzhoršující\r\nzhořčování\r\nzhořčovaný\r\nzhořčovat\r\nzhořecký\r\nZhořec\r\nzhořelecký\r\nZhořelec\r\nzhořklejší\r\nzhořknout\r\nzhořknutí\r\nZhořová\r\nZhoř\r\nZhořův\r\nzhospodárnění\r\nzhospodárněný\r\nzhospodárnit\r\nzhospodárňování\r\nzhospodárňovat\r\nzhostit\r\nzhoštění\r\nzhoštěný\r\nzhošťovat\r\nzhotovení\r\nzhotovený\r\nzhotovit\r\nzhotovitelnější\r\nzhotovitelný\r\nzhotovitel\r\nzhotovitelův\r\nzhotovování\r\nzhotovovaný\r\nzhotovovat\r\nzhotovující\r\nzhouba\r\nzhoubce\r\nzhoubcův\r\nzhoubnější\r\nzhoubný\r\nzhoupnout\r\nzhoupnutí\r\nzhoustnout\r\nzhoustnutí\r\nzhoustnutý\r\nzhouževnatění\r\nzhovadění\r\nzhovaděný\r\nzhovadilejší\r\nzhovadilý\r\nzhovadit\r\nzhrdat\r\nzhrdavý\r\nzhrdnout\r\nzhroucenější\r\nzhroucení\r\nzhroucený\r\nzhroutit\r\nzhrození\r\nzhrozený\r\nzhrozit\r\nzhruba\r\nzhrubaný\r\nzhrubělejší\r\nzhrubělý\r\nzhrublý\r\nzhrubnout\r\nzhrubnutí\r\nzhrubnutý\r\nzhrzenější\r\nzhrzený\r\nzhřešení\r\nzhřešený\r\nzhřešit\r\nzhubení\r\nzhubený\r\nzhubit\r\nzhublý\r\nzhubnout\r\nzhubnutí\r\nzhubnutý\r\nzhudebnění\r\nzhudebněný\r\nzhudebnit\r\nzhudebňování\r\nzhudebňovaný\r\nzhudebňovat\r\nzhudebňující\r\nzhudlaření\r\nzhudlařený\r\nzhudlařit\r\nzhulákaný\r\nzhumanizování\r\nzhumanizovaný\r\nzhumanizovat\r\nzhuntování\r\nzhuntovaný\r\nzhuntovat\r\nzhurta\r\nzhusta\r\nzhustit\r\nzhuštěnější\r\nzhuštění\r\nzhuštěný\r\nzhušťovací\r\nzhušťovač\r\nzhušťovadlo\r\nzhušťování\r\nzhušťovaný\r\nzhušťovat\r\nzhušťující\r\nzhutnělý\r\nzhutnění\r\nzhutněný\r\nzhutnět\r\nzhutnit\r\nzhutnitelný\r\nzhutňovací\r\nzhutňování\r\nzhutňovaný\r\nzhutňovat\r\nzhutňovávat\r\nzhutňující\r\nzhůvěřilý\r\nzhýčkanější\r\nzhýčkání\r\nzhýčkaný\r\nzhýčkat\r\nzhynout\r\nzhynutí\r\nzhypnotizování\r\nzhypnotizovaný\r\nzhypnotizovat\r\nzhýralcův\r\nzhýralec\r\nzhýralejší\r\nzhýralství\r\nzhýralý\r\nzhyzdit\r\nzhyžďovat\r\nzchátralejší\r\nzchátralý\r\nzchátrání\r\nzchátraný\r\nzchátrat\r\nzchladit\r\nzchladlejší\r\nzchladlý\r\nzchladnout\r\nzchladnutí\r\nzchlazenější\r\nzchlazení\r\nzchlazený\r\nzchlazování\r\nzchlazovaný\r\nzchlazovat\r\nzchlazující\r\nzchlupatět\r\nzchoulostivělejší\r\nzchoulostivělý\r\nzchoulostivění\r\nzchoulostivěný\r\nzchoulostivět\r\nzchromení\r\nzchromený\r\nzchromit\r\nzchromlý\r\nzchromnout\r\nzchromnutí\r\nzchroustání\r\nzchroustat\r\nzchřadnout\r\nzchřadnutí\r\nzchudlejší\r\nzchudlý\r\nzchudnout\r\nzchudnutí\r\nzchumlaný\r\nzchutňující\r\nzchvácenější\r\nzchvácení\r\nzchvácený\r\nzchvátit\r\nzchystat\r\nzchytra\r\nzchytralejší\r\nzchytralý\r\nZíbrtová\r\nZíbrt\r\nZíbrtův\r\nzidealizovaný\r\nzidealizovat\r\nZídek\r\nzideologizování\r\nzideologizovaný\r\nzideologizovat\r\nzídka\r\nZídková\r\nzídkový\r\nZídkův\r\nZiebikerová\r\nZiebiker\r\nZiebikerův\r\nZieglerová\r\nZiegler\r\nZieglerův\r\nZieleniec\r\nZieleniece\r\nZieleniecech\r\nZieleniecem\r\nZieleniecová\r\nZieleniecové\r\nZieleniecovi\r\nZielenieců\r\nZieleniecům\r\nZieleniecův\r\nZieleniecy\r\nZicháček\r\nZicháčková\r\nZicháčkův\r\nZicha\r\nZichová\r\nzichovecký\r\nZichovec\r\nZich\r\nZichův\r\nZikánová\r\nZikán\r\nZikánův\r\nZika\r\nZíka\r\nZikešová\r\nZikeš\r\nZikešův\r\nZiklová\r\nZikl\r\nZiklův\r\nZikmundová\r\nZikmund\r\nZikmundův\r\nZiková\r\nZíková\r\nZikův\r\nZíkův\r\nZilkův\r\nZimáková\r\nZimák\r\nZimákův\r\nZima\r\nZíma\r\nzimavý\r\nzima\r\nZimbabwančin\r\nZimbabwanka\r\nZimbabwan\r\nZimbabwanův\r\nZimbabwe\r\nzimbabwský\r\nZimermanová\r\nZimerman\r\nZimermanův\r\nZimmelová\r\nZimmel\r\nZimmelův\r\nZimmermannová\r\nZimmermann\r\nZimmermannův\r\nzimnice\r\nzimníček\r\nzimnička\r\nzimničný\r\nzimník\r\nzimní\r\nzimolez\r\nzimolezový\r\nzimomřivější\r\nzimomřivý\r\nzimostráz\r\nzimostrázový\r\nzimování\r\nzimovaný\r\nzimovat\r\nZimová\r\nZímová\r\nzimoviště\r\nzimový\r\nzimovzdorný\r\nZimův\r\nZímův\r\nZina\r\nZindrová\r\nZindr\r\nZindrův\r\nZindulka\r\nZindulková\r\nZindulkův\r\nzindustrializovat\r\nzinečnatý\r\nzinek\r\nzinicializování\r\nzinicializovaný\r\nzinicializovat\r\nZinin\r\nzinkasování\r\nzinkasovaný\r\nzinkasovat\r\nzinkograf\r\nzinkoklihový\r\nzinkovanější\r\nzinkování\r\nzinkovaný\r\nzinkovat\r\nzinkovna\r\nzinkový\r\nzinkovzdušný\r\nzinovování\r\nzinovovaný\r\nzinovovat\r\nzinscenování\r\nzinscenovaný\r\nzinscenovat\r\nzinstitucionalizování\r\nzinstitucionalizovaný\r\nzinstitucionalizovat\r\nzintegrování\r\nzintegrovaný\r\nzintegrovat\r\nzintelektualizovat\r\nzintelektuálnění\r\nzintelektuálněný\r\nzintelektuálnit\r\nzintensivnit\r\nzintenzivnění\r\nzintenzívnění\r\nzintenzivněný\r\nzintenzívněný\r\nzintenzivnět\r\nzintenzívnět\r\nzintenzivnit\r\nzintenzívnit\r\nzintenzivňování\r\nzintenzívňování\r\nzintenzivňovaný\r\nzintenzivňovat\r\nzintenzívňovat\r\nzintenzivňovávat\r\nzintenzívňovávat\r\nzintenzivňující\r\nzinternalizování\r\nzinternalizovaný\r\nzinternalizovat\r\nzintimnění\r\nzintimněný\r\nzintimnit\r\nzinventarizování\r\nzinventarizovaný\r\nzinventarizovat\r\nZipfův\r\nzip\r\nZippeová\r\nZippe\r\nZippeův\r\nzírající\r\nzírání\r\nzírání\r\nzírat\r\nzirkon\r\nzirkoničitan\r\nzirkoničitý\r\nzirkoničný\r\nzirkoniový\r\nzirkonium\r\nzironizování\r\nzironizovaný\r\nzironizovat\r\nzískání\r\nzískaný\r\nzískatelnější\r\nzískatelný\r\nzískat\r\nzískávající\r\nzískávání\r\nzískávaný\r\nzískávat\r\nzisk\r\nziskovější\r\nziskovější\r\nziskový\r\nziskuchtivější\r\nziskuchtivý\r\nzištnější\r\nzištný\r\nZita\r\nZita\r\nZítek\r\nZitin\r\nZítka\r\nzítka\r\nZítková\r\nZítkův\r\nZitová\r\nzítra\r\nzítřejší\r\nzítřek\r\nZitta\r\nZittová\r\nZittův\r\nZituščin\r\nZituška\r\nZitův\r\nzívačka\r\nzívající\r\nzívání\r\nzívaný\r\nzívat\r\nzívnout\r\nzívnutí\r\nZizienová\r\nZizien\r\nZizienův\r\nzjančení\r\nzjančený\r\nzjančit\r\nzjankovatět\r\nzjara\r\nzjasněnější\r\nzjasnění\r\nzjasněný\r\nzjasnit\r\nzjasňování\r\nzjasňovaný\r\nzjasňovat\r\nzjasňující\r\nzjednající\r\nzjednanější\r\nzjednání\r\nzjednáno\r\nzjednaný\r\nzjednat\r\nzjednávající\r\nzjednávanější\r\nzjednávání\r\nzjednávaný\r\nzjednávat\r\nzjednodušenější\r\nzjednodušení\r\nzjednodušený\r\nzjednodušit\r\nzjednodušitelnější\r\nzjednodušitelný\r\nzjednodušovací\r\nzjednodušovač\r\nzjednodušovanější\r\nzjednodušování\r\nzjednodušovaný\r\nzjednodušovat\r\nzjednodušující\r\nzjednoznačnění\r\nzjednoznačněný\r\nzjednoznačnit\r\nzjednoznačnitelný\r\nzjednoznačňovaný\r\nzjednoznačňovat\r\nzjednoznačňovatelný\r\nzjemnělejší\r\nzjemnělý\r\nzjemnění\r\nzjemněný\r\nzjemnět\r\nzjemnit\r\nzjemňovací\r\nzjemňování\r\nzjemňovaný\r\nzjemňovat\r\nzjemňující\r\nzjevenější\r\nzjevení\r\nzjevený\r\nzjev\r\nzjevit\r\nzjevnější\r\nzjevný\r\nzjevování\r\nzjevovaný\r\nzjevovat\r\nzjevující\r\nzježenější\r\nzježený\r\nzježit\r\nzjihlejší\r\nzjihlý\r\nzjihnout\r\nzjihnutí\r\nzjistit\r\nzjistitelnější\r\nzjistitelný\r\nzjištění\r\nzjištěný\r\nzjišťovací\r\nzjišťovanější\r\nzjišťování\r\nzjišťovaný\r\nzjišťovat\r\nzjišťující\r\nzjitřenější\r\nzjitření\r\nzjitřený\r\nzjitřit\r\nzjitřovat\r\nzjitřující\r\nzjizvení\r\nzjizvený\r\nzjizvit\r\nzkadeřenější\r\nzkadeření\r\nzkadeřený\r\nzkadeřit\r\nzkalenější\r\nzkalení\r\nzkalený\r\nzkalibrování\r\nzkalibrovaný\r\nzkalibrovat\r\nzkalit\r\nzkalkulování\r\nzkalkulovaný\r\nzkalkulovat\r\nzkalkulovávání\r\nzkalkulovávaný\r\nzkalkulovávat\r\nzkamenělejší\r\nzkamenělina\r\nzkamenělý\r\nzkamenění\r\nzkameněný\r\nzkamenět\r\nzkaolinizovat\r\nzkapacitnění\r\nzkapacitnit\r\nzkapalnělý\r\nzkapalněnější\r\nzkapalnění\r\nzkapalněný\r\nzkapalnět\r\nzkapalnit\r\nzkapalnitelný\r\nzkapalňovač\r\nzkapalňování\r\nzkapalňovaný\r\nzkapalňovat\r\nzkarbonatovaný\r\nzkarikovaný\r\nzkarikovat\r\nzkasírování\r\nzkasírovaný\r\nzkasírovat\r\nzkatalogizovat\r\nzkáza\r\nzkazit\r\nzkazitelnější\r\nzkazitelný\r\nzkazka\r\nzkáznější\r\nzkázněný\r\nzkázný\r\nzkázonosnější\r\nzkázonosný\r\nzkaženější\r\nzkažení\r\nzkažený\r\nzkejsnout\r\nzklamající\r\nzklamanější\r\nzklamání\r\nzklamaný\r\nzklamat\r\nzklamávání\r\nzklamávaný\r\nzklamávat\r\nzklíčení\r\nzklíčený\r\nzklíčit\r\nzklidněnější\r\nzklidnění\r\nzklidněný\r\nzklidnět\r\nzklidnit\r\nzklidňování\r\nzklidňovaný\r\nzklidňovat\r\nzklidňující\r\nzklihovatění\r\nzklihovatěný\r\nzklihovatět\r\nzklofat\r\nzkolabování\r\nzkolabovaný\r\nzkolabovat\r\nzkolabovávání\r\nzkolabovávat\r\nzkolacionovat\r\nzkolaudování\r\nzkolaudovaný\r\nzkolaudovat\r\nzkolaudovávání\r\nzkolaudovávaný\r\nzkolaudovávat\r\nzkombinovanější\r\nzkombinování\r\nzkombinovaný\r\nzkombinovat\r\nzkomercializování\r\nzkomercializovaný\r\nzkomercializovat\r\nzkomercionalizovanější\r\nzkomercionalizování\r\nzkomercionalizovaný\r\nzkomercionalizovat\r\nzkomolenější\r\nzkomolenina\r\nzkomolení\r\nzkomolený\r\nzkomolit\r\nzkompatibilnění\r\nzkompatibilněný\r\nzkompatibilnit\r\nzkompilování\r\nzkompilovaný\r\nzkompilovat\r\nzkompilovávání\r\nzkompilovávaný\r\nzkompilovávat\r\nzkompletování\r\nzkompletovaný\r\nzkompletovat\r\nzkomplikování\r\nzkomplikovaný\r\nzkomplikovat\r\nzkomplikovávání\r\nzkomplikovávaný\r\nzkomplikovávat\r\nzkomponování\r\nzkomponovaný\r\nzkomponovat\r\nzkomponovávání\r\nzkomponovávaný\r\nzkomponovávat\r\nzkompostování\r\nzkompostovaný\r\nzkompostovat\r\nzkomprimovanější\r\nzkomprimování\r\nzkomprimovaný\r\nzkomprimovat\r\nzkompromitování\r\nzkompromitovaný\r\nzkompromitovat\r\nzkoncentrování\r\nzkoncentrovaný\r\nzkoncentrovat\r\nzkoncentrovávat\r\nzkoncipování\r\nzkoncipovaný\r\nzkoncipovat\r\nzkondenzování\r\nzkondenzovaný\r\nzkondenzovat\r\nzkonfigurovanější\r\nzkonfigurování\r\nzkonfigurovaný\r\nzkonfigurovat\r\nzkonfiskování\r\nzkonfiskovaný\r\nzkonfiskovat\r\nzkonfiskovávání\r\nzkonfiskovávaný\r\nzkonfiskovávat\r\nzkonfrontování\r\nzkonfrontovaný\r\nzkonfrontovat\r\nzkonkretizování\r\nzkonkretizovaný\r\nzkonkretizovat\r\nzkonkrétnělý\r\nzkonkrétnit\r\nzkonsolidování\r\nzkonsolidovaný\r\nzkonsolidovat\r\nzkonstatování\r\nzkonstatovaný\r\nzkonstatovat\r\nzkonstituování\r\nzkonstituovaný\r\nzkonstituovat\r\nzkonstruovanější\r\nzkonstruování\r\nzkonstruovaný\r\nzkonstruovat\r\nzkonstruovávání\r\nzkonstruovávaný\r\nzkonstruovávat\r\nzkonsultování\r\nzkonsultovaný\r\nzkonsultovat\r\nzkontaktování\r\nzkontaktovaný\r\nzkontaktovat\r\nzkontrolování\r\nzkontrolovaný\r\nzkontrolovat\r\nzkontrolovávání\r\nzkontrolovávaný\r\nzkontrolovávat\r\nzkonvertovanější\r\nzkonvertování\r\nzkonvertovaný\r\nzkonvertovat\r\nzkonvertovávání\r\nzkonvertovávaný\r\nzkonvertovávat\r\nzkonzultování\r\nzkonzultovaný\r\nzkonzultovat\r\nzkonzumování\r\nzkonzumovaný\r\nzkonzumovat\r\nzkoordinovanější\r\nzkoordinování\r\nzkoordinovaný\r\nzkoordinovat\r\nzkopanější\r\nzkopání\r\nzkopaný\r\nzkopat\r\nzkopávání\r\nzkopávaný\r\nzkopávat\r\nzkopírovanější\r\nzkopírování\r\nzkopírovaný\r\nzkopírovat\r\nzkopírovatelnější\r\nzkopírovatelný\r\nzkopírovávanější\r\nzkopírovávání\r\nzkopírovávaný\r\nzkopírovávat\r\nzkoprnělejší\r\nzkoprnělý\r\nzkoprnění\r\nzkoprnět\r\nzkorigování\r\nzkorigovaný\r\nzkorigovat\r\nzkormoucenější\r\nzkormoucený\r\nzkornatělý\r\nzkornatění\r\nzkornatěný\r\nzkornatět\r\nzkorodovaný\r\nzkorodovat\r\nzkorumpovanější\r\nzkorumpování\r\nzkorumpovaný\r\nzkorumpovat\r\nzkosenější\r\nzkosení\r\nzkosený\r\nzkosit\r\nzkosování\r\nzkostnatělejší\r\nzkostnatělý\r\nzkostnatění\r\nzkostnatět\r\nzkošatění\r\nzkošatět\r\nzkoulení\r\nzkoulený\r\nzkoulet\r\nzkoulovaný\r\nzkoulovat\r\nzkoumající\r\nzkoumanější\r\nzkoumání\r\nzkoumaný\r\nzkoumat\r\nzkoumávání\r\nzkoumávaný\r\nzkoumávat\r\nzkoumavější\r\nzkoumavý\r\nzkoupání\r\nzkoupaný\r\nzkoupat\r\nzkouřenější\r\nzkousání\r\nzkousaný\r\nzkousat\r\nzkoušecí\r\nzkoušečka\r\nzkoušeč\r\nzkoušející\r\nzkoušenější\r\nzkoušení\r\nzkoušený\r\nzkoušet\r\nzkouška\r\nzkouškový\r\nzkoušu\r\nzkovanější\r\nzkování\r\nzkovaný\r\nzkovat\r\nzkovávání\r\nzkovávaný\r\nzkovávat\r\nzkovu\r\nzkr\r\nzkrabacení\r\nzkrabacený\r\nzkrabatělý\r\nzkrabatět\r\nzkrabatit\r\nzkrácenější\r\nzkrácení\r\nzkrácený\r\nzkracovací\r\nzkracování\r\nzkracovaný\r\nzkracovat\r\nzkracující\r\nzkrachovalý\r\nzkrachovancův\r\nzkrachovanec\r\nzkrachování\r\nzkrachovaný\r\nzkrachovat\r\nzkrachovávání\r\nzkrachovávat\r\nzkraje\r\nzkrápěcí\r\nzkrápění\r\nzkrápěný\r\nzkrápět\r\nzkrásnělý\r\nzkrásnění\r\nzkrásněný\r\nzkrásnět\r\nzkrášlenější\r\nzkrášlení\r\nzkrášlený\r\nzkrášlit\r\nzkrášlovací\r\nzkrášlování\r\nzkrášlovaný\r\nzkrášlovat\r\nzkrášlující\r\nzkrat\r\nzkrátit\r\nzkrátka\r\nzkratka\r\nzkratkovitý\r\nzkratkový\r\nzkratování\r\nzkratovaný\r\nzkratovat\r\nzkratovávání\r\nzkratovávaný\r\nzkratovávat\r\nzkratovitější\r\nzkratovitý\r\nzkratový\r\nzkreslenější\r\nzkreslení\r\nzkreslený\r\nzkreslit\r\nzkreslování\r\nzkreslovaný\r\nzkreslovat\r\nzkreslovávání\r\nzkreslovávaný\r\nzkreslovávat\r\nzkreslující\r\nzkriminalizování\r\nzkriminalizovaný\r\nzkriminalizovat\r\nzkritizování\r\nzkritizovaný\r\nzkritizovat\r\nzkrmení\r\nzkrmený\r\nzkrmit\r\nzkrmitelnější\r\nzkrmitelný\r\nzkrmování\r\nzkrmovaný\r\nzkrmovat\r\nzkrocenější\r\nzkrocení\r\nzkrocený\r\nzkropení\r\nzkropený\r\nzkropit\r\nzkrotit\r\nzkrotitelnější\r\nzkrotitelný\r\nzkrotlejší\r\nzkrotlý\r\nzkrotnout\r\nzkrotnutí\r\nzkroucenější\r\nzkroucení\r\nzkroucený\r\nzkroušenější\r\nzkroušený\r\nzkroutit\r\nzkrucovací\r\nzkrucování\r\nzkrucovaný\r\nzkrucovat\r\nzkrušenější\r\nzkrušení\r\nzkrušený\r\nzkrušit\r\nzkrušovat\r\nzkrušující\r\nzkrut\r\nzkrutný\r\nzkružovací\r\nzkružování\r\nzkružovaný\r\nzkružovat\r\nzkrvavělejší\r\nzkrvavělý\r\nzkrvavění\r\nzkrvavený\r\nzkrvavět\r\nzkrvavit\r\nzkrystalizování\r\nzkrystalizovaný\r\nzkrystalizovat\r\nzkřehlejší\r\nzkřehlý\r\nzkřehnout\r\nzkřehnutí\r\nzkřehnutý\r\nzkřísnout\r\nzkřivenější\r\nzkřivení\r\nzkřivený\r\nzkřivit\r\nzkřivování\r\nzkřivovaný\r\nzkřivovat\r\nzkříženější\r\nzkřížení\r\nzkřížený\r\nzkřížit\r\nzkudrnatění\r\nzkudrnatěný\r\nzkudrnatět\r\nzkujňování\r\nzkujňovat\r\nzkulatět\r\nzkulatit\r\nzkultivování\r\nzkultivovaný\r\nzkultivovat\r\nzkulturnění\r\nzkulturněný\r\nzkulturnit\r\nzkumavčička\r\nzkumavka\r\nzkusení\r\nzkusit\r\nzkusmější\r\nzkusmo\r\nzkusmý\r\nzkušebna\r\nzkušebnictví\r\nzkušební\r\nzkušenější\r\nzkušenný\r\nzkušenostní\r\nzkušený\r\nzkutečný\r\nzkvalitnění\r\nzkvalitněný\r\nzkvalitnit\r\nzkvalitňování\r\nzkvalitňovaný\r\nzkvalitňovat\r\nzkvalitňovávat\r\nzkvalitňující\r\nzkvasit\r\nzkvasitelnější\r\nzkvasitelný\r\nzkvašení\r\nzkvašený\r\nzkvašování\r\nzkvašovaný\r\nzkvašovat\r\nzkypření\r\nzkypřený\r\nzkypřit\r\nzkypřování\r\nzkypřovaný\r\nzkypřovat\r\nzkypřovávat\r\nzkysání\r\nzkysaný\r\nzkysat\r\nzkyslejší\r\nzkyslý\r\nzkysnout\r\nzkysnutí\r\nzl\r\nzlacenější\r\nzlacení\r\nzlacený\r\nzlacinění\r\nzlacinět\r\nzlákání\r\nzlákaný\r\nzlákat\r\nzlakomění\r\nzlakomět\r\nZlámalová\r\nZlámal\r\nZlámalův\r\nzlámanecký\r\nZlámanec\r\nzlámání\r\nzlámaný\r\nzlámat\r\nzlanaření\r\nzlanařit\r\nzlanovací\r\nzlanování\r\nzlanovaný\r\nzlanovat\r\nzlasování\r\nzlasovaný\r\nzlasovat\r\nzlaťáček\r\nzlaťák\r\nzlatavější\r\nzlatavý\r\nZlatá\r\nZlata\r\nZlatčin\r\nzlatější\r\nZlátenka\r\nzlatice\r\nzlaticí\r\nzlatící\r\nzlatíčko\r\nzlatič\r\nzlatičův\r\nZlatin\r\nzlatistější\r\nzlatistý\r\nzlatit\r\nzlatitý\r\nZlatka\r\nzlatka\r\nzlatkový\r\nzlatnice\r\nzlatnický\r\nzlatnictví\r\nzlatničtější\r\nzlatníkový\r\nzlatník\r\nzlatníkův\r\nzlátnoucí\r\nzlátnout\r\nzlátnutí\r\nzlatný\r\nzlatohlávek\r\nZlatohlávek\r\nzlatohlav\r\nZlatohlávková\r\nzlatohlávkový\r\nZlatohlávkův\r\nzlatohlávkův\r\nzlatohlavý\r\nzlatohnědý\r\nzlatokopčin\r\nzlatokopecký\r\nzlatokopectví\r\nzlatokopečtější\r\nzlatokopka\r\nzlatokop\r\nzlatokopův\r\nzlatokorunský\r\nzlato\r\nzlatonosný\r\nzlatoočka\r\nzlatooranžový\r\nzlatoparohatý\r\nzlatotepcův\r\nzlatotepecký\r\nzlatotepectví\r\nzlatotepec\r\nzlatoústý\r\nZlatovlásčin\r\nZlatovláska\r\nzlatovláska\r\nzlatovlasý\r\nzlatový\r\nzlatozbrojný\r\nzlatozelenější\r\nzlatozelený\r\nzlatožlutý\r\nzlatožlytý\r\nzlatský\r\nZlatuška\r\nZlatušková\r\nZlatuškův\r\nzlatý\r\nzlatý\r\nzledovacení\r\nzledovacený\r\nzledovatělejší\r\nzledovatělý\r\nzledovatění\r\nzledovatět\r\nzledovatit\r\nzlegalizování\r\nzlegalizovaný\r\nzlegalizovat\r\nzlehčenější\r\nzlehčení\r\nzlehčený\r\nzlehčit\r\nzlehčovanější\r\nzlehčování\r\nzlehčovaný\r\nzlehčovat\r\nzlehčující\r\nzlehka\r\nzlehounka\r\nzlehýnka\r\nZlechov\r\nzlechovský\r\nzlenivělý\r\nzlenivění\r\nzlenivěný\r\nzlenivět\r\nzlenošení\r\nzlenošit\r\nzlepšení\r\nzlepšit\r\nzlepšovací\r\nzlepšováček\r\nzlepšovák\r\nzlepšovanější\r\nzlepšování\r\nzlepšovaný\r\nzlepšovat\r\nzlepšovatelčin\r\nzlepšovatelka\r\nzlepšovatelský\r\nzlepšovatelství\r\nzlepšovatel\r\nzlepšovatelův\r\nzlepšující\r\nzletilcův\r\nzletilec\r\nzletilejší\r\nzletilý\r\nzleva\r\nzlevněnější\r\nzlevnění\r\nzlevněný\r\nzlevnit\r\nzlevňování\r\nzlevňovaný\r\nzlevňovat\r\nzlevňovávat\r\nzlevňující\r\nzlézající\r\nzlézanější\r\nzlézání\r\nzlézaný\r\nzlézat\r\nzlezenější\r\nzlezení\r\nzlezený\r\nzlézt\r\nzlhostejnění\r\nzlhostejněný\r\nzlhostejnět\r\nzlíbání\r\nzlíbaný\r\nzlíbat\r\nzlíbení\r\nzliberalisování\r\nzliberalisovaný\r\nzliberalisovat\r\nzliberalizování\r\nzliberalizovaný\r\nzliberalizovat\r\nzlíbeznělý\r\nzlíbit\r\nZličín\r\nzličínský\r\nzlidovělý\r\nzlidovění\r\nzlidověný\r\nzlidovět\r\nzlidštění\r\nzlidštěný\r\nzlidštět\r\nzlidštit\r\nzlidšťování\r\nzlidšťovaný\r\nzlidšťovat\r\nzlidšťující\r\nzlikvidnění\r\nzlikvidněný\r\nzlikvidnit\r\nzlikvidování\r\nzlikvidovaný\r\nzlikvidovat\r\nzlinkovat\r\nzlinkovávat\r\nZlín\r\nZlínsko\r\nzlínský\r\nzlínský\r\nzlít\r\nzlití\r\nzlit\r\nzlitý\r\nzlívanější\r\nzlívání\r\nzlívaný\r\nzlívat\r\nzloba\r\nzlobbování\r\nzlobbovaný\r\nzlobbovat\r\nzlobení\r\nzlobený\r\nzlobící\r\nzlobit\r\nzlobivější\r\nzlobivý\r\nzlobnější\r\nzlobný\r\nzlobování\r\nzlobovaný\r\nzlobovat\r\nzločincův\r\nzločinčin\r\nzločinecký\r\nzločinec\r\nzločinečtější\r\nzločin\r\nzločinka\r\nzločinnější\r\nzločinný\r\nzlodějíček\r\nzlodějíčkův\r\nzlodějina\r\nzlodějka\r\nzlodějna\r\nzlodějnička\r\nzlodějský\r\nzlodějství\r\nzloděj\r\nzlodějův\r\nzloduch\r\nzloduchův\r\nzlolajnější\r\nzlolajný\r\nzlomeček\r\nzlomek\r\nzlomenější\r\nzlomenina\r\nzlomení\r\nzlomený\r\nzlom\r\nzlomit\r\nzlomitelnější\r\nzlomitelný\r\nzlomkovitější\r\nzlomkovitý\r\nzlomkový\r\nzlomocnější\r\nzlomocný\r\nzlomový\r\nzlo\r\nzlomyslnější\r\nzlomyslník\r\nzlomyslný\r\nZlonice\r\nzlonický\r\nZlonín\r\nzlonínský\r\nzlopověstnější\r\nzlořád\r\nzlořečení\r\nzlořečení\r\nzlořečený\r\nzlořečený\r\nzlořečit\r\nzlostnější\r\nzlostník\r\nzlostníkův\r\nzlostný\r\nzlosyn\r\nzlosynův\r\nzlotřilcův\r\nzlotřilec\r\nzlotřilý\r\nzlotý\r\nzlověstnější\r\nzlověstný\r\nzlovolnější\r\nzlovolný\r\nzlovůle\r\nzlozvyk\r\nZlukov\r\nzlukovský\r\nzlynčovanější\r\nzlynčování\r\nzlynčovaný\r\nzlynčovat\r\nzlý\r\nzlý\r\nzmáčení\r\nzmáčený\r\nzmáčet\r\nzmačkanější\r\nzmačkání\r\nzmačkaný\r\nzmačkat\r\nzmačkávání\r\nzmačkávaný\r\nzmačkávat\r\nzmáčknout\r\nzmačknutí\r\nzmáčknutí\r\nzmáčknutý\r\nzmagnetizovanější\r\nzmagnetizování\r\nzmagnetizovaný\r\nzmagnetizovat\r\nzmagoření\r\nzmagořený\r\nzmagořit\r\nzmáhání\r\nzmáhaný\r\nzmáhat\r\nzmáchat\r\nzmáknout\r\nzmáknutí\r\nzmáknutý\r\nzmalátnělejší\r\nzmalátnělý\r\nzmalátnět\r\nzmalomyslnělý\r\nzmalomyslnění\r\nzmalomyslněný\r\nzmalomyslnět\r\nzmalovanější\r\nzmalování\r\nzmalovaný\r\nzmalovat\r\nzmámenější\r\nzmámení\r\nzmámený\r\nzmámit\r\nzmanipulování\r\nzmanipulovaný\r\nzmanipulovat\r\nzmanipulovatelný\r\nzmapování\r\nzmapovaný\r\nzmapovat\r\nzmar\r\nzmarnění\r\nzmarněný\r\nzmarnit\r\nzmaření\r\nzmařený\r\nzmařit\r\nzmasakrování\r\nzmasakrovaný\r\nzmasakrovat\r\nzmasakrovávání\r\nzmasakrovávaný\r\nzmasakrovávat\r\nzmasilý\r\nzmást\r\nzmastit\r\nzmaštění\r\nzmaštěný\r\nzmašťovat\r\nzmatečnější\r\nzmatečný\r\nzmatek\r\nzmatematizace\r\nzmatematizovaný\r\nzmatematizovat\r\nzmatematizující\r\nzmatenější\r\nzmatení\r\nzmaten\r\nzmatený\r\nzmatkářčin\r\nzmatkaření\r\nzmatkařit\r\nzmatkářka\r\nzmatkářský\r\nzmatkář\r\nzmatkářův\r\nzmatkování\r\nzmatkovat\r\nZmatlíková\r\nZmatlík\r\nZmatlíkův\r\nzmátl\r\nzmatnění\r\nzmatněný\r\nzmatnit\r\nzmátořit\r\nzmátožit\r\nzmatu\r\nzmazání\r\nzmazaný\r\nzmazat\r\nzmedializování\r\nzmedializovaný\r\nzmedializovat\r\nzmechanizování\r\nzmechanizovaný\r\nzmechanizovat\r\nzmechovatět\r\nzměkčení\r\nzměkčený\r\nzměkčilejší\r\nzměkčilý\r\nzměkčit\r\nzměkčovací\r\nzměkčovač\r\nzměkčovadlo\r\nzměkčování\r\nzměkčovaný\r\nzměkčovat\r\nzměkčující\r\nzměklejší\r\nzměklý\r\nzměknout\r\nzměknutí\r\nzmělčení\r\nzměna\r\nzměněnější\r\nzměnění\r\nzměněný\r\nzměnit\r\nzměnitelnější\r\nzměnitelný\r\nzměnový\r\nzmenšenější\r\nzmenšenina\r\nzmenšení\r\nzmenšený\r\nzmenšit\r\nzmenšitelný\r\nzmenšovací\r\nzmenšování\r\nzmenšovaný\r\nzmenšovat\r\nzmenšující\r\nzmerčení\r\nzmerčený\r\nzmerčit\r\nzměrný\r\nzměření\r\nzměřený\r\nzměřit\r\nzměřitelnější\r\nzměřitelný\r\nZmeškalová\r\nZmeškal\r\nZmeškalův\r\nzmeškání\r\nzmeškaný\r\nzmeškat\r\nzmeškávání\r\nzmeškávaný\r\nzmeškávat\r\nzměšťáčtělejší\r\nzmetání\r\nzmetaný\r\nzmetat\r\nzmetávání\r\nzmetávaný\r\nzmetávat\r\nzmetek\r\nzmětenější\r\nzměť\r\nzmetkovější\r\nzmetkovitější\r\nzmetkovitý\r\nzmetkový\r\nzmezinárodnění\r\nzmezinárodněný\r\nzmezinárodnět\r\nzmezinárodnit\r\nzmije\r\nzmijí\r\nzmijovitý\r\nzmijovka\r\nzmilitarizování\r\nzmilitarizovaný\r\nzmilitarizovat\r\nzmínění\r\nzmíněný\r\nzmínit\r\nzmínka\r\nzmiňovanější\r\nzmiňování\r\nzmiňovaný\r\nzmiňovat\r\nzmiňující\r\nzmírající\r\nzmírání\r\nzmírat\r\nzmírněnější\r\nzmírnění\r\nzmírněný\r\nzmírnit\r\nzmírňovací\r\nzmírňování\r\nzmírňovaný\r\nzmirňovat\r\nzmírňovat\r\nzmírňující\r\nzmítající\r\nzmítanější\r\nzmítání\r\nzmítaný\r\nzmítat\r\nzmítnout\r\nzmítnutější\r\nzmítnutí\r\nzmítnutý\r\nzmítnutý\r\nzmizejí\r\nzmizelý\r\nzmizení\r\nzmizet\r\nzmizík\r\nzmiznout\r\nzmiznutí\r\nzmlácenější\r\nzmlácení\r\nzmlácený\r\nzmladit\r\nzmlátit\r\nzmlazení\r\nzmlazený\r\nzmlazování\r\nzmlazovaný\r\nzmlazovat\r\nzmlkat\r\nzmlklejší\r\nzmlklý\r\nzmlknout\r\nzmlknutí\r\nzmlsanější\r\nzmlsání\r\nzmlsaný\r\nzmlsat\r\nzmnohonásobení\r\nzmnohonásobený\r\nzmnohonásobit\r\nzmnohonásobovat\r\nzmnoženější\r\nzmnožení\r\nzmnožený\r\nzmnožit\r\nzmnožovací\r\nzmnožování\r\nzmnožovaný\r\nzmnožovat\r\nzmnožující\r\nzmobilizování\r\nzmobilizovaný\r\nzmobilizovat\r\nzmobilizovávat\r\nzmoci\r\nzmocněncův\r\nzmocněnec\r\nzmocněnější\r\nzmocnění\r\nzmocněnkyně\r\nzmocněnkynin\r\nzmocněný\r\nzmocnit\r\nzmocnitelčin\r\nzmocnitelka\r\nzmocnitel\r\nzmocnitelův\r\nzmocňovací\r\nzmocňování\r\nzmocňovaný\r\nzmocňovat\r\nzmocňující\r\nzmodernizování\r\nzmodernizovaný\r\nzmodernizovat\r\nzmodralejší\r\nzmodralý\r\nzmodrání\r\nzmodraný\r\nzmodrat\r\nzmohutnělejší\r\nzmohutnění\r\nzmohutněný\r\nzmohutnět\r\nzmoklejší\r\nzmoklý\r\nzmoknout\r\nzmoknutí\r\nzmoknutý\r\nzmokřit\r\nzmonitorování\r\nzmonitorovaný\r\nzmonitorovat\r\nzmonopolizování\r\nzmonopolizovaný\r\nzmonopolizovat\r\nzmonopolizovávat\r\nzmontovat\r\nzmořený\r\nzmotání\r\nzmotaný\r\nzmotat\r\nzmoudřelejší\r\nzmoudřelý\r\nzmoudření\r\nzmoudřet\r\nzmoženější\r\nzmožení\r\nzmožen\r\nzmožený\r\nzmravnění\r\nzmravněný\r\nzmravnit\r\nzmrazek\r\nzmrazenější\r\nzmrazení\r\nzmrazený\r\nzmrazit\r\nzmrazivění\r\nzmrazivěný\r\nzmrazivět\r\nzmrazovací\r\nzmrazování\r\nzmrazovat\r\nzmrazující\r\nzmražení\r\nzmražený\r\nzmražování\r\nzmražovat\r\nzmrhaný\r\nzmrhat\r\nzmrskání\r\nzmrskaný\r\nzmrskat\r\nzmrtvělejší\r\nzmrtvělý\r\nzmrtvění\r\nzmrtvěný\r\nzmrtvět\r\nzmrtvýchvstalý\r\nzmrtvýchvstání\r\nzmrzačenější\r\nzmrzačení\r\nzmrzačený\r\nzmrzačit\r\nzmrzání\r\nzmrzat\r\nzmrzlejší\r\nzmrzlík\r\nzmrzlinářčin\r\nzmrzlinářka\r\nzmrzlinářský\r\nzmrzlinář\r\nzmrzlinářův\r\nzmrzlina\r\nzmrzlinový\r\nzmrzlý\r\nzmrznout\r\nzmrznutí\r\nzmrznutý\r\nzmrzoutět\r\nzmučenější\r\nzmučený\r\nzmuchlání\r\nzmuchlaný\r\nzmuchlat\r\nzmuchlávání\r\nzmuchlávaný\r\nzmuchlávat\r\nzmutovanější\r\nzmutování\r\nzmutovaný\r\nzmutovat\r\nzmutovávání\r\nzmutovávaný\r\nzmutovávat\r\nzmutující\r\nzmužilejší\r\nzmužilý\r\nzmužnění\r\nzmužněný\r\nzmužnět\r\nzmužnit\r\nzmýdelnitelný\r\nzmydlení\r\nzmydlený\r\nzmydlit\r\nzmýlená\r\nzmýlení\r\nzmýlený\r\nzmýlit\r\nzmyslet\r\nzmyslit\r\nzmystifikování\r\nzmystifikovaný\r\nzmystifikovat\r\nzmyšlen\r\nzmýšlet\r\nZn\r\nznacionalizování\r\nznacionalizovaný\r\nznacionalizovat\r\nznáček\r\nznačení\r\nznačený\r\nznačící\r\nznačit\r\nznačkařčin\r\nznačkářčin\r\nznačkařka\r\nznačkářka\r\nznačkař\r\nznačkář\r\nznačkařův\r\nznačkářův\r\nznačka\r\nznačkovací\r\nznačkovač\r\nznačkovadlo\r\nznačkování\r\nznačkovaný\r\nznačkovat\r\nznačkovávání\r\nznačkovávaný\r\nznačkovávat\r\nznačkový\r\nznačnější\r\nznačný\r\nznající\r\nznakařčin\r\nznakařka\r\nznak\r\nznakoplavka\r\nznakování\r\nznakovat\r\nznakovější\r\nznakový\r\nznalcův\r\nznalecký\r\nznalectví\r\nznalec\r\nznalejší\r\nznalkyně\r\nznalkynin\r\nznalostní\r\nznalství\r\nznalý\r\nznámější\r\nZnamenáček\r\nZnamenáčková\r\nZnamenáčkův\r\nznamenající\r\nznamenanější\r\nznamenání\r\nznamenaný\r\nznamenat\r\nznamenávání\r\nznamenávat\r\nznamení\r\nznamenitější\r\nznamenitý\r\nznaménko\r\nznaménkový\r\nznamínko\r\nZnamínko\r\nZnamínková\r\nZnamínkův\r\nznámka\r\nznámkovací\r\nznámkování\r\nznámkovaný\r\nznámkovat\r\nznámkovávání\r\nznámkovávaný\r\nznámkovávat\r\nznámkový\r\nznámkující\r\nznám\r\nznámý\r\nznání\r\nznápadnit\r\nznárodnělý\r\nznárodnění\r\nznárodněný\r\nznárodnět\r\nznárodnit\r\nznárodňovací\r\nznárodňování\r\nznárodňovaný\r\nznárodňovat\r\nznárodňující\r\nznásilnění\r\nznásilněný\r\nznásilnit\r\nznásilňování\r\nznásilňovaný\r\nznásilňovat\r\nznásilňující\r\nznásobení\r\nznásobený\r\nznásobit\r\nznásobný\r\nznásobování\r\nznásobovaný\r\nznásobovat\r\nznásobující\r\nznatelnější\r\nznatelný\r\nznát\r\nznávanější\r\nznávání\r\nznávaný\r\nznávat\r\nznavenější\r\nznavení\r\nznavený\r\nznavit\r\nznavující\r\nznázornění\r\nznázorněný\r\nznázornit\r\nznázorňovací\r\nznázorňování\r\nznázorňovaný\r\nznázorňovat\r\nznázorňující\r\nznecitlivení\r\nznecitlivění\r\nznecitlivený\r\nznecitlivěný\r\nznecitlivět\r\nznecitlivit\r\nznecitlivovat\r\nznecitlivující\r\nznectění\r\nznectěný\r\nznectít\r\nznečistěnější\r\nznečistěný\r\nznečistit\r\nznečisťování\r\nznečisťovaný\r\nznečisťovat\r\nznečisťovatelčin\r\nznečisťovatelka\r\nznečisťovatel\r\nznečisťovatelův\r\nznečisťující\r\nznečištěnější\r\nznečištění\r\nznečištěný\r\nznečišťovač\r\nznečišťování\r\nznečišťovaný\r\nznečišťovat\r\nznečišťovatelčin\r\nznečišťovatelka\r\nznečišťovatel\r\nznečišťovatelův\r\nznečišťující\r\nznegování\r\nznegovaný\r\nznegovat\r\nznehodnocenější\r\nznehodnocení\r\nznehodnocený\r\nznehodnocovanější\r\nznehodnocování\r\nznehodnocovaný\r\nznehodnocovat\r\nznehodnocovávání\r\nznehodnocovávaný\r\nznehodnocovávat\r\nznehodnocující\r\nznehodnotit\r\nznehybnělejší\r\nznehybnění\r\nznehybněný\r\nznehybnět\r\nznehybnit\r\nznehybňovací\r\nznehybňující\r\nznechucenější\r\nznechucení\r\nznechucený\r\nznechucování\r\nznechucovaný\r\nznechucovat\r\nznechucovávání\r\nznechucovávaný\r\nznechucovávat\r\nznechucující\r\nznechutit\r\nznejasnění\r\nznejasněný\r\nznejasnit\r\nznějící\r\nznejistělý\r\nznejistění\r\nznejistěný\r\nznejistět\r\nznejistit\r\nznejisťování\r\nznejisťovaný\r\nznejisťovat\r\nznejisťující\r\nznejišťovat\r\nznejmilejší\r\nzneklidněnější\r\nzneklidnění\r\nzneklidněný\r\nzneklidnět\r\nzneklidnit\r\nzneklidňování\r\nzneklidňovaný\r\nzneklidňovat\r\nzneklidňující\r\nzněkolikanásobení\r\nzněkolikanásobený\r\nzněkolikanásobit\r\nzněkolikanásobovat\r\nznekompatibilnění\r\nznekompatibilněný\r\nznekompatibilnit\r\nznekvalitnění\r\nznekvalitněný\r\nznekvalitnit\r\nznělcový\r\nznělec\r\nznělejší\r\nznelíbení\r\nznelíbit\r\nznělka\r\nznělý\r\nznemožněnější\r\nznemožnění\r\nznemožněný\r\nznemožnit\r\nznemožňování\r\nznemožňovaný\r\nznemožňovat\r\nznemožňovávat\r\nznemožňující\r\nznemravnění\r\nznemravnění\r\nznemravněný\r\nznemravnit\r\nznemravňující\r\nznenadála\r\nznenadání\r\nznenáhla\r\nznenáhlejší\r\nznenápadnit\r\nznění\r\nznění\r\nznenormalizování\r\nznenormalizovaný\r\nznenormalizovat\r\nzneplatnění\r\nzneplatněný\r\nzneplatnit\r\nznepojízdnění\r\nznepojízdněný\r\nznepojízdnět\r\nznepokojenější\r\nznepokojení\r\nznepokojený\r\nznepokojit\r\nznepokojivější\r\nznepokojivý\r\nznepokojování\r\nznepokojovaný\r\nznepokojovat\r\nznepokojující\r\nzneprůhlednění\r\nzneprůhledněný\r\nzneprůhlednit\r\nzneprůhledňování\r\nzneprůhledňovaný\r\nzneprůhledňovat\r\nzneprůchodnění\r\nzneprůchodněný\r\nzneprůchodnit\r\nzneprůjezdnění\r\nzneprůjezdněný\r\nzneprůjezdnit\r\nzneprůzračnění\r\nzneprůzračněný\r\nzneprůzračnit\r\nznepřátelenější\r\nznepřátelení\r\nznepřátelený\r\nznepřátelený\r\nznepřátelit\r\nznepřehlednění\r\nznepřehledněný\r\nznepřehlednit\r\nznepřehledňování\r\nznepřehledňovaný\r\nznepřehledňovat\r\nznepřesnění\r\nznepřesněný\r\nznepřesnit\r\nznepříjemněnější\r\nznepříjemnění\r\nznepříjemněný\r\nznepříjemnit\r\nznepříjemňování\r\nznepříjemňovaný\r\nznepříjemňovat\r\nznepříjemňující\r\nznepřístupnění\r\nznepřístupněný\r\nznepřístupnit\r\nznepřítomnění\r\nznepřítomněný\r\nznepřítomnit\r\nznervóznění\r\nznervózněný\r\nznervóznět\r\nznervóznit\r\nznervózňování\r\nznervózňovaný\r\nznervózňovat\r\nznervózňovávat\r\nznervozňující\r\nznervózňující\r\nzneschopnění\r\nzneschopněný\r\nzneschopnit\r\nzneschopňovat\r\nznesnadnění\r\nznesnadněný\r\nznesnadnit\r\nznesnadňování\r\nznesnadňovaný\r\nznesnadňovat\r\nznesnadňující\r\nznesváření\r\nznesvářený\r\nznesvářit\r\nznesvěcení\r\nznesvěcený\r\nznesvěcování\r\nznesvěcovaný\r\nznesvěcovat\r\nznesvěcovávání\r\nznesvěcovávaný\r\nznesvěcovávat\r\nznesvěcující\r\nznesvětit\r\nzneškodnění\r\nzneškodněný\r\nzneškodnit\r\nzneškodňování\r\nzneškodňovaný\r\nzneškodňovat\r\nzneškodňující\r\nznetvářející\r\nznetvářenější\r\nznetváření\r\nznetvářený\r\nznetvářet\r\nznetvořenější\r\nznetvoření\r\nznetvoření\r\nznetvořený\r\nznetvořený\r\nznetvořit\r\nznetvořovat\r\nznetvořující\r\nzneuctění\r\nzneuctění\r\nzneuctěný\r\nzneuctít\r\nzneuctívat\r\nzneucťovat\r\nzneutralizování\r\nzneutralizovaný\r\nzneutralizovat\r\nzneuznanější\r\nzneuznání\r\nzneuznaný\r\nzneuznávat\r\nzneužít\r\nzneužitější\r\nzneužitelnější\r\nzneužitelný\r\nzneužití\r\nzneužitý\r\nzneužitý\r\nzneužívající\r\nzneužívanější\r\nzneužívání\r\nzneužívaný\r\nzneuživatelnější\r\nzneuživatelný\r\nzneužívat\r\nznevážení\r\nznevážený\r\nznevážit\r\nznevažování\r\nznevažovaný\r\nznevažovat\r\nznevažující\r\nznevěrohodnění\r\nznevěrohodněný\r\nznevěrohodnit\r\nznevěrohodňování\r\nznevěrohodňovaný\r\nznevěrohodňovat\r\nzneviditelnění\r\nzneviditelněný\r\nzneviditelnit\r\nzneviditelňování\r\nzneviditelňovaný\r\nzneviditelňovat\r\nznevolňování\r\nznevšednění\r\nznevšedněný\r\nznevšednit\r\nznevýhodnění\r\nznevýhodněný\r\nznevýhodnit\r\nznevýhodňování\r\nznevýhodňovaný\r\nznevýhodňovat\r\nznevýhodňující\r\nznící\r\nzničeho\r\nzničehonic\r\nzničenější\r\nzničení\r\nzničený\r\nzničit\r\nzničitelnější\r\nzničitelný\r\nzničující\r\nzniternění\r\nznít\r\nznívat\r\nznivelizování\r\nznivelizovaný\r\nznivelizovat\r\nznivý\r\nZnojemsko\r\nznojemský\r\nZnojmo\r\nznoj\r\nznormalizování\r\nznormalizovaný\r\nznormalizovat\r\nznormálnění\r\nznormálněný\r\nznormálnit\r\nznormování\r\nznormovaný\r\nznormovat\r\nznova\r\nznovu\r\nznovudobytí\r\nznovudosazení\r\nznovudosažení\r\nznovukandidování\r\nznovukandidovat\r\nznovukandidovávání\r\nznovukandidovávat\r\nznovunabytí\r\nznovunabytý\r\nznovunarození\r\nznovunastavení\r\nznovunastolení\r\nznovunastolený\r\nznovunastolit\r\nznovunastudování\r\nznovunavázání\r\nznovunavlékání\r\nznovunavlékat\r\nznovuobjevení\r\nznovuobjevení\r\nznovuobjevený\r\nznovuobjevit\r\nznovuobjevování\r\nznovuobjevovaný\r\nznovuobjevovat\r\nznovuobnovení\r\nznovuobnovený\r\nznovuobnovit\r\nznovuobrodit\r\nznovuobrození\r\nznovuobrozený\r\nznovuoddaný\r\nznovuosídlení\r\nznovuotevření\r\nznovuotevřený\r\nznovuotevřít\r\nznovuožívající\r\nznovuožívat\r\nznovuoživení\r\nznovuoživený\r\nznovuoživit\r\nznovuoživlý\r\nznovuoživování\r\nznovuoživovaný\r\nznovuoživovat\r\nznovupostavení\r\nznovupoužitelný\r\nznovupoužití\r\nznovupovstávající\r\nznovuprožít\r\nznovuprožití\r\nznovuprožitý\r\nznovuprožívat\r\nznovupřipojení\r\nznovurozdělení\r\nznovurozdělování\r\nznovurozdělovaný\r\nznovurozdělovat\r\nznovurozdělovávání\r\nznovurozdělovávaný\r\nznovurozdělovávat\r\nznovuspouštěný\r\nznovuukládání\r\nznovuuložení\r\nznovuuschopňovat\r\nznovuusídlení\r\nznovuuspořádání\r\nznovuustavený\r\nznovuustavit\r\nznovuvybudování\r\nznovuvybudovaný\r\nznovuvybudovat\r\nznovuvybudovávání\r\nznovuvybudovávaný\r\nznovuvybudovávat\r\nznovuvysazování\r\nznovuvytvářející\r\nznovuvytvářenější\r\nznovuvytváření\r\nznovuvytvářený\r\nznovuvytvářet\r\nznovuvytvořenější\r\nznovuvytvoření\r\nznovuvytvoření\r\nznovuvytvořený\r\nznovuvytvořený\r\nznovuvytvořit\r\nznovuvyužití\r\nznovuvyzbrojení\r\nznovuvzkříšení\r\nznovuzačlenění\r\nznovuzahájení\r\nznovuzahřívání\r\nznovuzahřívaný\r\nznovuzahřívat\r\nznovuzalesnění\r\nznovuzalesnit\r\nznovuzalesňování\r\nznovuzalesňovat\r\nznovuzalesňovávat\r\nznovuzaváděný\r\nznovuzavedení\r\nznovuzbudování\r\nznovuzbudovaný\r\nznovuzbudovat\r\nznovuzbudovávání\r\nznovuzbudovávaný\r\nznovuzbudovávat\r\nznovuzhodnocení\r\nznovuzískání\r\nznovuzískávání\r\nznovuzískávaný\r\nznovuzískávat\r\nznovuzplození\r\nznovuzpřítomnění\r\nznovuzpřítomněný\r\nznovuzpřítomnit\r\nznovuzrodit\r\nznovuzrození\r\nznovuzrození\r\nznovuzrozený\r\nznovuzrozený\r\nznovuzrozování\r\nznovuzrozovaný\r\nznovuzrozovat\r\nznovuzřízení\r\nznovuzvolení\r\nznuděnější\r\nznudění\r\nznuděný\r\nznudit\r\nzobáček\r\nzobák\r\nzobání\r\nzobaný\r\nzobat\r\nzobávání\r\nzobávaný\r\nzobávat\r\nzobcový\r\nzobecněnější\r\nzobecnění\r\nzobecněný\r\nzobecnět\r\nzobecnit\r\nzobecnitelnější\r\nzobecnitelný\r\nzobecňování\r\nzobecňovaný\r\nzobecňovat\r\nzobecňující\r\nzobec\r\nzob\r\nzobchodování\r\nzobchodovaný\r\nzobchodovat\r\nzobjektivizování\r\nzobjektivizovaný\r\nzobjektivizovat\r\nzobjektivnění\r\nzobnout\r\nzobnutí\r\nzobnutý\r\nzobrazení\r\nzobrazený\r\nzobrazit\r\nzobrazitelnější\r\nzobrazitelný\r\nzobrazivý\r\nzobrazovací\r\nzobrazovač\r\nzobrazovanější\r\nzobrazování\r\nzobrazovaný\r\nzobrazovat\r\nzobrazující\r\nzocelení\r\nzocelený\r\nzocelit\r\nzocelování\r\nzocelovaný\r\nzocelovat\r\nzoctovatění\r\nzoctovatěný\r\nzoctovatět\r\nzodiak\r\nzodpovědění\r\nzodpověděný\r\nzodpovědět\r\nzodpověditelnější\r\nzodpovědnější\r\nzodpovědný\r\nzodpovězení\r\nzodpovězen\r\nzodpovězený\r\nzodpovídající\r\nzodpovídanější\r\nzodpovídání\r\nzodpovídaný\r\nzodpovídat\r\nZoe\r\nZOH\r\nzohavenější\r\nzohavení\r\nzohavený\r\nzohavit\r\nzohavovat\r\nzohlednění\r\nzohledněný\r\nzohlednit\r\nzohledňování\r\nzohledňovaný\r\nzohledňovat\r\nzohledňující\r\nzohýbající\r\nzohýbanější\r\nzohýbání\r\nzohýbaný\r\nzohýbat\r\nzohýbávání\r\nzohýbávat\r\nzohyzdění\r\nzohyzděný\r\nzohyzdit\r\nzohyzďovat\r\nzohyzďující\r\nzohyžděný\r\nzohyžďovat\r\nZoin\r\nzokruhování\r\nzokujení\r\nzokujený\r\nzokujit\r\nZolmanová\r\nZolman\r\nZolmanův\r\nzonalita\r\nzonální\r\nzóna\r\nzónový\r\nzoo\r\nzoofilie\r\nzoohygiena\r\nzoologický\r\nzoologie\r\nzoolog\r\nzoologův\r\nzooložčin\r\nzooložka\r\nzoom\r\nzoonotický\r\nzoopark\r\nzooplankton\r\nzoosémantika\r\nzoosféra\r\nzootechnický\r\nzootechniččin\r\nzootechnička\r\nzootechničtější\r\nzootechnika\r\nzootechnik\r\nzootechnikův\r\nzooveterinární\r\nzopakování\r\nzopakovaný\r\nzopakovat\r\nzopakovatelnější\r\nzopakovatelný\r\nzorání\r\nzoraný\r\nzorat\r\nzorávání\r\nzorávaný\r\nzorávat\r\nZora\r\nzora\r\nZorčin\r\nzorganizování\r\nzorganizovaný\r\nzorganizovat\r\nzorganizovávat\r\nzorientování\r\nzorientovaný\r\nzorientovat\r\nzorientovávání\r\nzorientovávaný\r\nzorientovávat\r\nZorka\r\nzornice\r\nzornička\r\nzorník\r\nzorný\r\nzoroastrismus\r\nzortogonalizovat\r\nZořin\r\nZoserová\r\nZoser\r\nZoserův\r\nzosnování\r\nzosnovaný\r\nzosnovat\r\nzosobnění\r\nzosobněný\r\nzosobnit\r\nzosobňování\r\nzosobňovaný\r\nzosobňovat\r\nzosobňující\r\nzostouzející\r\nzostouzet\r\nzostra\r\nzostřenější\r\nzostření\r\nzostřený\r\nzostřit\r\nzostřování\r\nzostřovaný\r\nzostřovat\r\nzostřovávat\r\nzostřující\r\nzostudit\r\nzostuzení\r\nzostuzený\r\nzošklivení\r\nzošklivění\r\nzošklivený\r\nzošklivět\r\nzošklivit\r\nzošklivování\r\nzošklivovaný\r\nzošklivovat\r\nzotavení\r\nzotavený\r\nzotavit\r\nzotavovací\r\nzotavování\r\nzotavovat\r\nzotavovna\r\nzotavující\r\nzotročenější\r\nzotročení\r\nzotročený\r\nzotročit\r\nzotročování\r\nzotročovaný\r\nzotročovat\r\nzotročující\r\nzotvírat\r\nzotvírávat\r\nzoubeček\r\nZoubek\r\nzoubek\r\nzoubkovací\r\nzoubkování\r\nzoubkovaný\r\nzoubkovat\r\nZoubková\r\nzoubkový\r\nZoubkův\r\nzoufající\r\nzoufalcův\r\nzoufalec\r\nzoufalejší\r\nzoufalství\r\nzoufalý\r\nzoufání\r\nzoufaný\r\nzoufat\r\nzoufávání\r\nzoufávat\r\nZouharová\r\nZouhar\r\nZouharův\r\nZoulová\r\nZoul\r\nZoulův\r\nzout\r\nzouvák\r\nzouvání\r\nzouvaný\r\nzouvat\r\nzoxidovaný\r\nzoxidovat\r\nZPA\r\nzpacifikovat\r\nzpackanější\r\nzpackání\r\nzpackaný\r\nzpackat\r\nzpackávání\r\nzpackávaný\r\nzpackávat\r\nzpaměti\r\nzpanenštění\r\nzpanenštěný\r\nzpanenštit\r\nzpanikaření\r\nzpanikařený\r\nzpanikařit\r\nzpanštělý\r\nzparchantělý\r\nzparodování\r\nzparodovaný\r\nzparodovat\r\nzpátečka\r\nzpátečnice\r\nzpátečnický\r\nzpátečnictví\r\nzpátečničtější\r\nzpátečník\r\nzpátečníkův\r\nzpáteční\r\nzpátky\r\nzpečetění\r\nzpečetěný\r\nzpečetit\r\nzpečeťovaný\r\nzpečeťovat\r\nzpěčování\r\nzpěčovat\r\nzpěněnější\r\nzpěnění\r\nzpěněný\r\nzpeněžení\r\nzpeněžený\r\nzpeněžit\r\nzpeněžitelnější\r\nzpeněžitelný\r\nzpeněžování\r\nzpeněžovaný\r\nzpeněžovat\r\nzpěnit\r\nzpěňovadlo\r\nzpěňování\r\nzpěňovat\r\nzpěňující\r\nzpeřený\r\nzpestření\r\nzpestřený\r\nzpestřit\r\nzpestřování\r\nzpestřovaný\r\nzpestřovat\r\nzpestřovávat\r\nzpestřující\r\nzpět\r\nzpětinásobení\r\nzpětinásobený\r\nzpětinásobit\r\nzpětnovazební\r\nzpětnovazebný\r\nzpětný\r\nzpětvzetí\r\nzpěvácký\r\nzpěvaččin\r\nzpěváček\r\nzpěvačka\r\nzpěváčkův\r\nzpěvák\r\nzpěvákův\r\nzpěvánka\r\nzpěvavější\r\nzpěvavý\r\nzpěv\r\nzpěvnější\r\nzpevněnější\r\nzpevnění\r\nzpevněný\r\nzpěvník\r\nzpevnit\r\nzpevňovací\r\nzpevňování\r\nzpevňovaný\r\nzpevňovat\r\nzpevňovávat\r\nzpevňující\r\nzpěvný\r\nzpěvohra\r\nzpihovatění\r\nzpihovatěný\r\nzpihovatět\r\nzpíjející\r\nzpíjenější\r\nzpíjení\r\nzpíjený\r\nzpíjet\r\nzpít\r\nzpitější\r\nzpití\r\nzpitomělejší\r\nzpitomělý\r\nzpitomět\r\nzpit\r\nzpitvořenější\r\nzpitý\r\nzpitý\r\nzpívající\r\nzpívání\r\nzpívánka\r\nzpívaný\r\nzpívatelnější\r\nzpívat\r\nzpívávat\r\nzplacený\r\nzplana\r\nzplanělejší\r\nzplanělý\r\nzplanění\r\nzplanět\r\nzplanýrování\r\nzplanýrovaný\r\nzplanýrovat\r\nzplatnění\r\nzplatněný\r\nzplatnit\r\nzplesnivělý\r\nzplesnivět\r\nzplešatět\r\nzplihlejší\r\nzplihlý\r\nzplihnout\r\nzplihnutí\r\nzplna\r\nzplnomocněncův\r\nzplnomocněnec\r\nzplnomocnění\r\nzplnomocněnkyně\r\nzplnomocněnkynin\r\nzplnomocněný\r\nzplnomocnit\r\nzplnomocňování\r\nzplnomocňovaný\r\nzplnomocňovat\r\nzplodina\r\nzplodit\r\nzploštělejší\r\nzploštělý\r\nzploštění\r\nzploštěný\r\nzploštit\r\nzplošťování\r\nzplošťovaný\r\nzplošťovat\r\nzplozencův\r\nzplozenčin\r\nzplozenec\r\nzplození\r\nzplozenka\r\nzplozený\r\nzplstnatělejší\r\nzplsťovací\r\nzplsťování\r\nzplsťovaný\r\nzplsťovat\r\nzplundrovat\r\nzplynovací\r\nzplynovač\r\nzplynování\r\nzplyňování\r\nzplynovaný\r\nzplyňovaný\r\nzplynovat\r\nzplyňovat\r\nzplyňovávat\r\nzpocenější\r\nzpocení\r\nzpocený\r\nzpočátku\r\nzpod\r\nzpodivínštění\r\nzpodoba\r\nzpodobení\r\nzpodobený\r\nzpodobit\r\nzpodobnění\r\nzpodobněný\r\nzpodobnit\r\nzpodobňování\r\nzpodobňovaný\r\nzpodobňovat\r\nzpodobňující\r\nzpodobování\r\nzpodobovaný\r\nzpodobovat\r\nzpodobující\r\nzpodrobnění\r\nzpodrobněný\r\nzpodrobnit\r\nzpodrobňování\r\nzpodrobňovaný\r\nzpodrobňovat\r\nzpodstatnělý\r\nzpodstatnění\r\nzpodstatňování\r\nzpoetizování\r\nzpoetizovaný\r\nzpoetizovat\r\nzpohlavkování\r\nzpohlavkovaný\r\nzpohlavkovat\r\nzpohlavkovávání\r\nzpohlavkovávaný\r\nzpohlavkovávat\r\nzpohodlnělý\r\nzpohodlnění\r\nzpohodlněný\r\nzpohodlnět\r\nzpohodlnit\r\nzpohodlňující\r\nzpochybnění\r\nzpochybněný\r\nzpochybnit\r\nzpochybnitelnější\r\nzpochybnitelný\r\nzpochybňování\r\nzpochybňovaný\r\nzpochybňovat\r\nzpochybňující\r\nzpokornění\r\nzpokorněný\r\nzpokornět\r\nzpola\r\nzpolarizování\r\nzpolarizovaný\r\nzpolarizovat\r\nzpolíčkování\r\nzpolíčkovaný\r\nzpolíčkovat\r\nzpolitizování\r\nzpolitizovaný\r\nzpolitizovat\r\nzpolovic\r\nzpolovice\r\nzpomalenější\r\nzpomalení\r\nzpomalený\r\nzpomalit\r\nzpomalovací\r\nzpomalovač\r\nzpomalovadlo\r\nzpomalování\r\nzpomalovaný\r\nzpomalovat\r\nzpomalující\r\nzponad\r\nzpopelnění\r\nzpopelněný\r\nzpopelnit\r\nzpopelňování\r\nzpopelňovaný\r\nzpopelňovat\r\nzpoplatnění\r\nzpoplatněný\r\nzpoplatnit\r\nzpoplatňování\r\nzpoplatňovat\r\nzpoplatňující\r\nzpopularizování\r\nzpopularizovaný\r\nzpopularizovat\r\nzpopulárnění\r\nzpopulárnět\r\nzporážet\r\nzpotit\r\nzpotvořenější\r\nzpotvořenina\r\nzpověď\r\nzpovědmi\r\nzpovědnice\r\nzpovědník\r\nzpovědníkův\r\nzpovědní\r\nzpovídající\r\nzpovídanější\r\nzpovídání\r\nzpovídaný\r\nzpovídat\r\nzpovykanější\r\nzpovzdálí\r\nzpoza\r\nzpozavírat\r\nzpozdění\r\nzpozděný\r\nzpozdilejší\r\nzpozdilý\r\nzpozdit\r\nzpozemštění\r\nzpozemštěný\r\nzpozemštit\r\nzpozemšťování\r\nzpozitivnit\r\nzpozornění\r\nzpozornět\r\nzpozorňování\r\nzpozorování\r\nzpozorovaný\r\nzpozorovat\r\nzpozorovávat\r\nzpožděnější\r\nzpoždění\r\nzpožděný\r\nzpožďovací\r\nzpožďování\r\nzpožďovaný\r\nzpožďovat\r\nzpožďující\r\nzpracovanější\r\nzpracování\r\nzpracovaný\r\nzpracovat\r\nzpracovatelčin\r\nzpracovatelka\r\nzpracovatelnější\r\nzpracovatelný\r\nzpracovatelský\r\nzpracovatel\r\nzpracovatelův\r\nzpracovávající\r\nzpracovávanější\r\nzpracovávání\r\nzpracovávaný\r\nzpracovávatelský\r\nzpracovávat\r\nzpracovna\r\nzpracující\r\nzprahlý\r\nzpráchnivělejší\r\nzpráchnivělý\r\nzpráchnivění\r\nzpráchnivět\r\nzpráskání\r\nzpráskaný\r\nzpráskat\r\nzprava\r\nzpráva\r\nzpravenější\r\nzpravení\r\nzpravený\r\nzprávička\r\nzpravidla\r\nzpravit\r\nzpravodajce\r\nzpravodajcův\r\nzpravodajčin\r\nzpravodajka\r\nzpravodajský\r\nzpravodajství\r\nzpravodaj\r\nzpravodajův\r\nzpravování\r\nzpravovaný\r\nzpravovat\r\nzpražit\r\nzpreciznění\r\nzprecizněný\r\nzpreciznit\r\nzprivatizování\r\nzprivatizovaný\r\nzprivatizovat\r\nzproblematizování\r\nzproblematizovaný\r\nzproblematizovat\r\nzprocesnění\r\nzprocesněný\r\nzprocesnit\r\nzproduktivnění\r\nzproduktivněný\r\nzproduktivnit\r\nzprofanování\r\nzprofanovaný\r\nzprofanovat\r\nzprofesionalizování\r\nzprofesionalizovaný\r\nzprofesionalizovat\r\nzprogresívnění\r\nzprogresívněný\r\nzprogresívnit\r\nzprogresivňování\r\nzprohýbanější\r\nzprohýbání\r\nzprohýbaný\r\nzprohýbat\r\nzpronevěra\r\nzpronevěření\r\nzpronevěřený\r\nzpronevěřit\r\nzpronevěřování\r\nzpronevěřovaný\r\nzpronevěřovat\r\nzpronevěřovávat\r\nzpropadenější\r\nzpropadený\r\nzprostit\r\nzprostorovělý\r\nzprostorovění\r\nzprostřed\r\nzprostředka\r\nzprostředkovací\r\nzprostředkovanější\r\nzprostředkování\r\nzprostředkovaný\r\nzprostředkovat\r\nzprostředkovatelčin\r\nzprostředkovatelka\r\nzprostředkovatelna\r\nzprostředkovatelský\r\nzprostředkovatel\r\nzprostředkovatelův\r\nzprostředkovávající\r\nzprostředkovávání\r\nzprostředkovávaný\r\nzprostředkovávat\r\nzprostředkující\r\nzproštění\r\nzproštěný\r\nzprošťovací\r\nzprošťování\r\nzprošťovaný\r\nzprošťovat\r\nzprošťující\r\nzprotivení\r\nzprotivený\r\nzprotivit\r\nzprovozněnější\r\nzprovoznění\r\nzprovozněný\r\nzprovoznit\r\nzprovozňování\r\nzprovozňovaný\r\nzprovozňovat\r\nzprovozňovávat\r\nzprubovat\r\nzprudit\r\nzprudka\r\nzpruha\r\nzprůhlednění\r\nzprůhledněný\r\nzprůhlednit\r\nzprůhledňování\r\nzprůhledňovaný\r\nzprůhledňovat\r\nzprůchodnění\r\nzprůchodněný\r\nzprůchodnit\r\nzprůjezdnění\r\nzprůjezdněný\r\nzprůjezdnit\r\nzprůměrování\r\nzprůměrovaný\r\nzprůměrovat\r\nzprůmyslnění\r\nzprůmyslněný\r\nzprůmyslnit\r\nzprůmyslňovat\r\nzprůsvitnět\r\nzprůsvitňovat\r\nzprůtočnění\r\nzprůtočněný\r\nzprůtočnit\r\nzpruzenější\r\nzpruzený\r\nzprůzračnění\r\nzprůzračněný\r\nzprůzračnit\r\nzpružina\r\nzpružnění\r\nzpružněný\r\nzpružnit\r\nzprvu\r\nzprznění\r\nzprzněný\r\nzprznit\r\nzpřažený\r\nzpředu\r\nzpřeházenější\r\nzpřeházení\r\nzpřeházený\r\nzpřeházet\r\nzpřehlednění\r\nzpřehledněný\r\nzpřehlednit\r\nzpřehledňování\r\nzpřehledňovaný\r\nzpřehledňovat\r\nzpřehledňující\r\nzpřehýbat\r\nzpřelámaný\r\nzpřelámat\r\nzpřerážení\r\nzpřerážený\r\nzpřerážet\r\nzpřesnění\r\nzpřesněný\r\nzpřesnit\r\nzpřesňování\r\nzpřesňovaný\r\nzpřesňovat\r\nzpřesňovávat\r\nzpřesňující\r\nzpřetrhání\r\nzpřetrhaný\r\nzpřetrhat\r\nzpřetrhávání\r\nzpřetrhávaný\r\nzpřetrhávat\r\nzpřežvýkat\r\nzpřídavnělý\r\nzpříjemněnější\r\nzpříjemnění\r\nzpříjemněný\r\nzpříjemnit\r\nzpříjemňování\r\nzpříjemňovaný\r\nzpříjemňovat\r\nzpříjemňující\r\nzpříma\r\nzpřírodnit\r\nzpřísnění\r\nzpřísněný\r\nzpřísnit\r\nzpřísňování\r\nzpřísňovaný\r\nzpřísňovat\r\nzpřísňovávat\r\nzpřísňující\r\nzpřístupněnější\r\nzpřístupnění\r\nzpřístupněný\r\nzpřístupnit\r\nzpřístupňování\r\nzpřístupňovaný\r\nzpřístupňovat\r\nzpřístupňující\r\nzpřítomnění\r\nzpřítomněný\r\nzpřítomnit\r\nzpřítomňování\r\nzpřítomňovaný\r\nzpřítomňovat\r\nzpřítomňující\r\nzpřítulnění\r\nzpuchřelejší\r\nzpuchřelý\r\nzpuchřet\r\nzpuchýřující\r\nzpůli\r\nzpupnější\r\nzpupný\r\nzpůsoba\r\nzpůsobení\r\nzpůsobený\r\nzpůsob\r\nzpůsobilejší\r\nzpůsobilý\r\nzpůsobit\r\nzpůsobnější\r\nzpůsobný\r\nzpůsobování\r\nzpůsobovaný\r\nzpůsobovaný\r\nzpůsobovat\r\nzpůsobovější\r\nzpůsobový\r\nzpůsobující\r\nzpustlejší\r\nzpustlík\r\nzpustlíkův\r\nzpustlý\r\nzpustnout\r\nzpustnutí\r\nzpustošenější\r\nzpustošení\r\nzpustošený\r\nzpustošit\r\nzpuštěnější\r\nzpychlejší\r\nzpychnout\r\nzpychnutí\r\nzpytavější\r\nzpytavý\r\nzpytování\r\nzpytovaný\r\nzpytovat\r\nzpytovávání\r\nzpytovávaný\r\nzpytovávat\r\nzracionalizování\r\nzracionalizovaný\r\nzracionalizovat\r\nzracionálnění\r\nzracionálněný\r\nzracionálnit\r\nzrací\r\nzračení\r\nzračící\r\nzračit\r\nzrada\r\nzrádce\r\nzrádcovský\r\nzrádcovství\r\nzrádcův\r\nzradikalizování\r\nzradikalizovaný\r\nzradikalizovat\r\nzradit\r\nzrádkyně\r\nzrádkynin\r\nzrádnější\r\nzrádný\r\nzrající\r\nzrak\r\nzrakový\r\nzrakový\r\nzralejší\r\nzralý\r\nzrána\r\nzraněnější\r\nzranění\r\nzraněný\r\nzrání\r\nzranit\r\nzranitelnější\r\nzranitelný\r\nzraňování\r\nzraňovaný\r\nzraňovat\r\nzraňující\r\nzrasování\r\nzrasovaný\r\nzrasovat\r\nzrašeliněný\r\nzrát\r\nzrávání\r\nzrávat\r\nzrazenější\r\nzrazení\r\nzrazený\r\nzrazování\r\nzrazovaný\r\nzrazovat\r\nzrazující\r\nzrcadélko\r\nzrcadlení\r\nzrcadlený\r\nzrcadlící\r\nzrcadlit\r\nzrcadlo\r\nzrcadlovka\r\nzrcadlový\r\nzrcátko\r\nzrcátkový\r\nzreagovaný\r\nzreagovat\r\nzrealizování\r\nzrealizovaný\r\nzrealizovat\r\nzreálnění\r\nzreálněný\r\nzreálnit\r\nzrecenzování\r\nzrecenzovaný\r\nzrecenzovat\r\nzredigování\r\nzredigovaný\r\nzredigovat\r\nzredukování\r\nzredukovaný\r\nzredukovat\r\nzreformování\r\nzreformovaný\r\nzreformovat\r\nzregenerování\r\nzregenerovaný\r\nzregenerovat\r\nzregularizovat\r\nzregulování\r\nzregulovaný\r\nzregulovat\r\nzregulovávání\r\nzregulovávaný\r\nzregulovávat\r\nzrekapitulování\r\nzrekapitulovaný\r\nzrekapitulovat\r\nzrekapitulovávání\r\nzrekapitulovávaný\r\nzrekapitulovávat\r\nzrekonstruování\r\nzrekonstruovaný\r\nzrekonstruovat\r\nzrekreování\r\nzrekreovaný\r\nzrekreovat\r\nzrekrutování\r\nzrekrutovaný\r\nzrekrutovat\r\nzrekrutovávání\r\nzrekrutovávaný\r\nzrekrutovávat\r\nzrekultivování\r\nzrekultivovaný\r\nzrekultivovat\r\nzrelativizování\r\nzrelativizovaný\r\nzrelativizovat\r\nzremizování\r\nzremizovaný\r\nzremizovat\r\nzrenovování\r\nzrenovovaný\r\nzrenovovat\r\nzrentgenování\r\nzrentgenovaný\r\nzrentgenovat\r\nzreorganizování\r\nzreorganizovaný\r\nzreorganizovat\r\nzreorganizovávat\r\nzrepasování\r\nzrepasovaný\r\nzrepasovat\r\nzreplikování\r\nzreplikovaný\r\nzreplikovat\r\nzreprodukování\r\nzreprodukovaný\r\nzreprodukovat\r\nzresetování\r\nzresetovaný\r\nzresetovat\r\nzrestaurování\r\nzrestaurovaný\r\nzrestaurovat\r\nzrestrukturalizování\r\nzrestrukturalizovaný\r\nzrestrukturalizovat\r\nzrevidování\r\nzrevidovaný\r\nzrevidovat\r\nzrevolucionizovat\r\nzrevolucionovat\r\nzrezatělý\r\nzrezavělý\r\nzrezavění\r\nzrezavět\r\nzrezivělejší\r\nzrezivělý\r\nzrezivění\r\nzrezivěný\r\nzrezivět\r\nzrezlejší\r\nzrezovatělý\r\nzrežírování\r\nzrežírovaný\r\nzrežírovat\r\nzrnění\r\nzrněný\r\nzrní\r\nzrnicí\r\nzrnící\r\nzrníčko\r\nzrnina\r\nzrnit\r\nzrnitější\r\nzrnitostní\r\nzrnitý\r\nzrnko\r\nzrnkový\r\nzrno\r\nzrnový\r\nzrobenější\r\nzrobení\r\nzrobený\r\nzrobit\r\nzrod\r\nzrodit\r\nzrohovatělý\r\nzrohovatění\r\nzrohovatěný\r\nzrohovatět\r\nzrosený\r\nzrosolovatění\r\nzrosolovatět\r\nzrostlý\r\nzrovna\r\nzrovnoprávnění\r\nzrovnoprávněný\r\nzrovnoprávnit\r\nzrovnopravňovat\r\nzrovnoprávňovat\r\nzrovnovážňující\r\nzrození\r\nzrozený\r\nzrozpačitělejší\r\nzrozpačitění\r\nzrozpačitěný\r\nzrozpačitět\r\nzrubání\r\nzrubaný\r\nzrubat\r\nzrubávání\r\nzrubávaný\r\nzrubávat\r\nzrubu\r\nzručnější\r\nzručný\r\nZruč\r\nzrůda\r\nzrůdička\r\nzrudlejší\r\nzrudlý\r\nzrůdnější\r\nzrudnout\r\nzrudnutí\r\nzrůdný\r\nzruinování\r\nzruinovaný\r\nzruinovat\r\nzruinovávání\r\nzruinovávaný\r\nzruinovávat\r\nzrujnování\r\nzrujnovaný\r\nzrujnovat\r\nzrušenější\r\nzrušení\r\nzrušený\r\nzrušit\r\nzrušitelnější\r\nzrušitelný\r\nzrušovací\r\nzrušování\r\nzrušovaný\r\nzrušovat\r\nzrušující\r\nzrůznění\r\nzrůžovělý\r\nzrůžovění\r\nzrůžověný\r\nzrůžovět\r\nzrychlenější\r\nzrychlení\r\nzrychlený\r\nzrychlit\r\nzrychlovací\r\nzrychlovač\r\nzrychlování\r\nzrychlovaný\r\nzrychlovat\r\nzrychlovávání\r\nzrychlovávaný\r\nzrychlovávat\r\nzrychlující\r\nzrýmování\r\nzrýmovaný\r\nzrýmovat\r\nzrýt\r\nzrytější\r\nzrytí\r\nzrytmizovat\r\nzrytý\r\nzrzava\r\nzrzavější\r\nzrzavý\r\nzrzčin\r\nzrzeččin\r\nzrzeček\r\nzrzečka\r\nzrzečkův\r\nzrzek\r\nzrzka\r\nzrzkův\r\nzrzohlávka\r\nzrzounčin\r\nzrzounka\r\nzřasení\r\nzřasený\r\nzřasit\r\nzřečen\r\nzřečený\r\nzředění\r\nzředěný\r\nzředit\r\nzřeďování\r\nzřeďovaný\r\nzřeďovat\r\nzřeďující\r\nzřejmější\r\nzřejmý\r\nzřekl\r\nzřeknout\r\nzřeknu\r\nzřeknutí\r\nzřeknuv\r\nzřenější\r\nzřením\r\nzření\r\nzřený\r\nzřetele\r\nzřetelem\r\nzřetelnější\r\nzřetelný\r\nzřetelový\r\nzřetel\r\nzřetězení\r\nzřetězený\r\nzřetězit\r\nzřetězování\r\nzřetězovaný\r\nzřetězovat\r\nzřezat\r\nzřícenina\r\nzříceninka\r\nzřícení\r\nzřícený\r\nzříci\r\nzřící\r\nzříct\r\nzřídit\r\nzřídkaco\r\nzřídkakde\r\nzřídkakdo\r\nzřídkakdy\r\nzřídka\r\nzřídkavý\r\nzřídlo\r\nzřídlý\r\nzřídnout\r\nzřidnout\r\nzřídnutí\r\nzříkající\r\nzříkání\r\nzříkat\r\nzřítelnice\r\nzřítit\r\nzřít\r\nzřízencův\r\nzřízenec\r\nzřízenější\r\nzřízení\r\nzřízený\r\nzřizovací\r\nzřizovanější\r\nzřizování\r\nzřizovaný\r\nzřizovat\r\nzřizovatelčin\r\nzřizovatelka\r\nzřizovatelský\r\nzřizovatelství\r\nzřizovatel\r\nzřizovatelův\r\nzřizující\r\nzsinalejší\r\nzsinalý\r\nzsinat\r\nZŠ\r\nzšedlejší\r\nzšednout\r\nzšeřelejší\r\nzšeřelý\r\nzšíři\r\nztajenější\r\nztápějící\r\nztápěnější\r\nztápění\r\nztápěný\r\nztápět\r\nztéct\r\nztečení\r\nztečený\r\nzteč\r\nztechnizovaný\r\nztechnizovat\r\nztékat\r\nztělesněnější\r\nztělesnění\r\nztělesněný\r\nztělesnit\r\nztělesňování\r\nztělesňovaný\r\nztělesňovat\r\nztělesňovávat\r\nztělesňující\r\nztemnělejší\r\nztemnělý\r\nztemnění\r\nztemněný\r\nztemnět\r\nztemnit\r\nztemňování\r\nztemňovaný\r\nztenčenější\r\nztenčení\r\nztenčený\r\nztenčit\r\nztenčování\r\nztenčovaný\r\nztenčovat\r\nztenčující\r\nztenšovatka\r\nztepilejší\r\nztepilý\r\nzteplalejší\r\nzteplalý\r\nzteplání\r\nzteplat\r\nzteplávání\r\nzteplávat\r\nzteřelý\r\nzteřet\r\nztěžka\r\nztěžkání\r\nztěžkat\r\nztěžklejší\r\nztěžklý\r\nztěžknout\r\nztěžknutí\r\nztěžování\r\nztěžovaný\r\nztěžovat\r\nztěžující\r\nzticha\r\nztichlejší\r\nztichlý\r\nztichnout\r\nztichnutí\r\nztišení\r\nztišený\r\nztišit\r\nztišování\r\nztišovaný\r\nztišovat\r\nztišující\r\nztíženější\r\nztížení\r\nztížený\r\nztížit\r\nztlouct\r\nztloukanější\r\nztloukání\r\nztloukaný\r\nztloukat\r\nztloukávanější\r\nztloukávání\r\nztloukávaný\r\nztloukávat\r\nztloustlejší\r\nztloustlý\r\nztloustnout\r\nztloustnutí\r\nztlučenější\r\nztlučení\r\nztlučený\r\nztlumenější\r\nztlumení\r\nztlumený\r\nztlumit\r\nztlumovat\r\nztlustlý\r\nztluštělý\r\nztmavení\r\nztmavění\r\nztmavený\r\nztmavět\r\nztmavit\r\nztmavlejší\r\nztmavnout\r\nztmavnutí\r\nztmavování\r\nztmavovaný\r\nztmavovat\r\nztmívač\r\nztopenější\r\nztopení\r\nztopený\r\nztopit\r\nztopitelnější\r\nztopitelný\r\nztopořenější\r\nztopoření\r\nztopořený\r\nztopořit\r\nztopořování\r\nztotožnění\r\nztotožněný\r\nztotožnit\r\nztotožnitelný\r\nztotožňování\r\nztotožňovaný\r\nztotožňovat\r\nztotožňovávat\r\nztotožňující\r\nztrácející\r\nztrácející\r\nztracencův\r\nztracenec\r\nztracenější\r\nztracení\r\nztrácení\r\nztracený\r\nztrácený\r\nztrácet\r\nztrápenější\r\nztrápení\r\nztrápený\r\nztrapnění\r\nztrapněný\r\nztrapnit\r\nztrapňování\r\nztrapňovaný\r\nztrapňovat\r\nztráta\r\nztratit\r\nztratné\r\nztrátovější\r\nztrátový\r\nztrávený\r\nztrémovaný\r\nztrémovat\r\nztrestanější\r\nztrestání\r\nztrestaný\r\nztrestat\r\nztrhající\r\nztrhanější\r\nztrhání\r\nztrhaný\r\nztrhat\r\nztrhávající\r\nztrhávanější\r\nztrhávání\r\nztrhávaný\r\nztrhávat\r\nztrhnout\r\nztrhnutější\r\nztrhnutí\r\nztrhnutý\r\nztrivializování\r\nztrivializovaný\r\nztrivializovat\r\nztrmácený\r\nztrnulejší\r\nztrnulý\r\nztrnutí\r\nztrojnásobení\r\nztrojnásobený\r\nztrojnásobit\r\nztrojnásobování\r\nztrojnásobovaný\r\nztrojnásobovat\r\nztrojovač\r\nztropení\r\nztropený\r\nztropit\r\nztroskotancův\r\nztroskotanec\r\nztroskotání\r\nztroskotaný\r\nztroskotat\r\nztroskotávání\r\nztroskotávat\r\nztrouchnivělý\r\nztrpčení\r\nztrpčený\r\nztrpčit\r\nztrpčování\r\nztrpčovaný\r\nztrpčovat\r\nztrpknout\r\nztrpknutí\r\nztrženější\r\nztržení\r\nztržený\r\nztřeštěncův\r\nztřeštěnčin\r\nztřeštěnec\r\nztřeštěnější\r\nztřeštěnka\r\nztřeštěný\r\nztřískání\r\nztřískaný\r\nztřískat\r\nztučnělejší\r\nztučnění\r\nztučněný\r\nztučnět\r\nztučnit\r\nztuha\r\nztuhlejší\r\nztuhlý\r\nztuhnout\r\nztuhnutí\r\nztuhnutý\r\nztuchlejší\r\nztuchlina\r\nztuchlý\r\nztuchlý\r\nztuchnout\r\nztupělejší\r\nztupení\r\nztupený\r\nztupit\r\nztupovat\r\nztužení\r\nztužený\r\nztužit\r\nztužovací\r\nztužovač\r\nztužování\r\nztužovaný\r\nztužovat\r\nztužující\r\nZTV\r\nztvárnění\r\nztvárněný\r\nztvárnit\r\nztvárňování\r\nztvárňovaný\r\nztvárňovat\r\nztvárňující\r\nztvarování\r\nztvrdit\r\nztvrdlejší\r\nztvrdlý\r\nztvrdlý\r\nztvrdnout\r\nztvrdnutí\r\nztvrdnutý\r\nztvrzení\r\nztvrzený\r\nztvrzování\r\nztvrzovaný\r\nztvrzovat\r\nztýraný\r\nztýrat\r\nzubačka\r\nzubařčin\r\nzubařka\r\nzubařský\r\nzubař\r\nzubařův\r\nzubatější\r\nzubatý\r\nZůbek\r\nzubení\r\nzub\r\nzubící\r\nzubit\r\nZůbková\r\nZůbkův\r\nzubní\r\nzubný\r\nzubolékařčin\r\nzubolékařka\r\nzubolékařský\r\nzubolékařství\r\nzubolékař\r\nzubolékařův\r\nzubovací\r\nzubování\r\nzubovaný\r\nzubovat\r\nzubovina\r\nzubovitý\r\nzubový\r\nzuboženější\r\nzubožení\r\nzubožený\r\nZubrnice\r\nzubrnický\r\nzubrovka\r\nzubr\r\nzubrův\r\nzubří\r\nzúčasnění\r\nzúčasnit\r\nzúčastněnější\r\nzúčastnění\r\nzúčastněný\r\nzúčastnit\r\nzúčastňování\r\nzúčastňovat\r\nzúčastňovávat\r\nzúčastňující\r\nzúčtovací\r\nzúčtovanější\r\nzúčtování\r\nzúčtovaný\r\nzúčtovat\r\nzúčtovatelnější\r\nzúčtovatelný\r\nzúčtovávání\r\nzúčtovávaný\r\nzúčtovávat\r\nzúčtující\r\nzuhelnatělý\r\nzuhelnatění\r\nzuhelnatět\r\nzulámat\r\nzulíbání\r\nzulíbat\r\nZummerová\r\nZummer\r\nZummerův\r\nzúmyslný\r\nZuna\r\nZunová\r\nZuntová\r\nZunt\r\nZuntův\r\nZunův\r\nzupácký\r\nzupáčtější\r\nzúplnění\r\nzurážet\r\nzurbanizování\r\nzurbanizovaný\r\nzurbanizovat\r\nzurčení\r\nzurčet\r\nzurčící\r\nzurčivý\r\nzúročení\r\nzúročený\r\nzúročit\r\nzúročitelnější\r\nzúročování\r\nzúročovaný\r\nzúročovat\r\nzúrodnění\r\nzúrodněný\r\nzúrodnit\r\nzúrodňovací\r\nzúrodňování\r\nzúrodňovat\r\nzúrodňující\r\nzúrokování\r\nzúrokovaný\r\nzúrokovat\r\nZurynek\r\nZurynková\r\nZurynkův\r\nzúřadování\r\nzúřadovaný\r\nzúřadovat\r\nzuření\r\nzuřící\r\nzuřit\r\nzuřivcův\r\nzuřivčin\r\nzuřivec\r\nzuřivější\r\nzuřivka\r\nzuřivý\r\nZusek\r\nZusková\r\nZuskův\r\nzůstání\r\nzůstat\r\nzůstatek\r\nzůstatkovější\r\nzůstatkový\r\nzůstávající\r\nzůstávání\r\nzůstávat\r\nzůstavený\r\nzůstavit\r\nzůstavitelčin\r\nzůstavitelka\r\nzůstavitel\r\nzůstavitelův\r\nZUŠ\r\nzušlechtění\r\nzušlechtěný\r\nzušlechtit\r\nzušlechtitelnější\r\nzušlechťovací\r\nzušlechťovač\r\nzušlechťování\r\nzušlechťovaný\r\nzušlechťovat\r\nzušlechťovna\r\nzušlechťující\r\nzutínaný\r\nzutí\r\nzútulnění\r\nzútulněný\r\nzútulnit\r\nzutý\r\nZuzáková\r\nZuzák\r\nZuzákův\r\nZuzana\r\nZuzančin\r\nZuzánek\r\nZuzanin\r\nZuzanka\r\nZuzánková\r\nZuzánkův\r\nZuzčin\r\nZuzka\r\nzúženější\r\nzúžení\r\nzúžený\r\nzúžit\r\nzužitkování\r\nzužitkovaný\r\nzužitkovat\r\nzužitkovatelnější\r\nzužitkovávání\r\nzužitkovávaný\r\nzužitkovávat\r\nzužme\r\nzuž\r\nzužování\r\nzužovaný\r\nzužovat\r\nzužte\r\nzužující\r\nZV\r\nzvábení\r\nzvábený\r\nzvábit\r\nzvací\r\nzvadlejší\r\nzvadlost\r\nzvadlý\r\nzvadnout\r\nzvadnutí\r\nzvadnutý\r\nzválcování\r\nzválcovaný\r\nzválcovat\r\nzválcovávání\r\nzválcovávaný\r\nzválcovávat\r\nzválení\r\nzválený\r\nzválet\r\nzvalchování\r\nzvalchovaný\r\nzvalchovat\r\nzval\r\nzvanější\r\nzvaní\r\nzvání\r\nzván\r\nZvánovice\r\nzvánovický\r\nzvaný\r\nzvápenatění\r\nzvápenatět\r\nzvát\r\nzváženější\r\nzvážení\r\nzvážený\r\nzvážit\r\nzvažitelnější\r\nzvážnění\r\nzvážnět\r\nzvažovanější\r\nzvažování\r\nzvažovaný\r\nzvažovat\r\nzvažovatelnější\r\nzvažovatelný\r\nzvažující\r\nzvěcnění\r\nzvěcněný\r\nzvěcnit\r\nzvěcňování\r\nzvěcňovaný\r\nzvěcňovat\r\nzvěcňující\r\nzvečera\r\nzvěčnělejší\r\nzvěčnělý\r\nzvěčnění\r\nzvěčněný\r\nzvěčnit\r\nzvěčňování\r\nzvěčňovaný\r\nzvěčňovat\r\nzvěčňovávat\r\nzvěčňující\r\nzvedací\r\nzvedající\r\nzvedák\r\nzvedání\r\nzvedaný\r\nzvedat\r\nzvedávání\r\nzvedávat\r\nzvědavcův\r\nzvědavec\r\nzvědavější\r\nzvědavka\r\nzvědav\r\nzvědavý\r\nzvědečtění\r\nzvědečtit\r\nzvědečťovat\r\nzvedenější\r\nzvědění\r\nzvedený\r\nzvědět\r\nzvednout\r\nzvednutí\r\nzvednutý\r\nzvednutý\r\nzvěd\r\nzvědův\r\nzvektorizování\r\nzvektorizovaný\r\nzvektorizovat\r\nzvelebení\r\nzvelebený\r\nZvelebilová\r\nZvelebil\r\nZvelebilův\r\nzvelebit\r\nzvelebovací\r\nzvelebování\r\nzvelebovaný\r\nzvelebovat\r\nzveličenější\r\nzveličení\r\nzveličený\r\nzveličit\r\nzveličování\r\nzveličovaný\r\nzveličovat\r\nzveličující\r\nzvenčí\r\nzvenku\r\nzverbování\r\nzverbovaný\r\nzverbovat\r\nzverbovávání\r\nzverbovávaný\r\nzverbovávat\r\nzvěrohodnění\r\nzvěrohodněný\r\nzvěrohodnit\r\nzvěrohodňování\r\nzvěrohodňovaný\r\nzvěrohodňovat\r\nzvěrokruh\r\nzvěrolékařčin\r\nzvěrolékařka\r\nzvěrolékařský\r\nzvěrolékařství\r\nzvěrolékař\r\nzvěrolékařův\r\nzvěrský\r\nzvěrstvo\r\nzveršování\r\nzveršovaný\r\nzveršovat\r\nzveřejnění\r\nzveřejněný\r\nzveřejnit\r\nzveřejnitelnější\r\nzveřejnitelný\r\nzveřejňování\r\nzveřejňovaný\r\nzveřejňovat\r\nzveřejňující\r\nZvěřina\r\nzvěřina\r\nzvěřinec\r\nzvěřinka\r\nZvěřín\r\nZvěřinová\r\nzvěřinový\r\nzvěřínský\r\nZvěřinův\r\nzvěř\r\nzvesela\r\nzvěstích\r\nzvěstím\r\nzvěst\r\nzvěstování\r\nzvěstovaný\r\nzvěstovat\r\nzvěstovatelčin\r\nzvěstovatelka\r\nzvěstovatel\r\nzvěstovatelův\r\nzvěstovávání\r\nzvěstovávaný\r\nzvěstovávat\r\nZvěstov\r\nzvěstovský\r\nzvěstující\r\nzvětralejší\r\nzvětralina\r\nzvětralinový\r\nzvětralý\r\nzvětrání\r\nzvětraný\r\nzvětrat\r\nzvětrávající\r\nzvětrávání\r\nzvětrávat\r\nzvětření\r\nzvětřený\r\nzvětřit\r\nzvetšelejší\r\nzvetšelý\r\nzvětšelý\r\nzvětšenější\r\nzvětšenina\r\nzvetšení\r\nzvětšení\r\nzvetšený\r\nzvětšený\r\nzvetšet\r\nzvětšit\r\nzvětšovací\r\nzvětšování\r\nzvětšovaný\r\nzvětšovat\r\nzvětšující\r\nzviadista\r\nzviadistčin\r\nzviadistka\r\nzviadistův\r\nzvící\r\nZvičina\r\nzvídání\r\nzvídat\r\nzvídavější\r\nzvídavý\r\nzviditelnění\r\nzviditelněný\r\nzviditelnit\r\nzviditelňování\r\nzviditelňovaný\r\nzviditelňovat\r\nzviditelňující\r\nzvichřenější\r\nzvichřený\r\nZvikava\r\nzviklanější\r\nzviklání\r\nzviklaný\r\nzviklat\r\nzviklávání\r\nzviklávaný\r\nzviklávat\r\nzvíkovecký\r\nZvíkovec\r\nZvíkov\r\nzvíkovský\r\nzvířátko\r\nzvířecí\r\nzvířecký\r\nzvířectvo\r\nzvíře\r\nzvíření\r\nzvířený\r\nZvířetice\r\nzvířetický\r\nzvířetník\r\nzvířetníkový\r\nzvířit\r\nzviřovat\r\nzvítězení\r\nzvítězený\r\nzvítězit\r\nzvizualizování\r\nzvizualizovaný\r\nzvizualizovat\r\nzvl\r\nzvláčení\r\nzvláčený\r\nzvláčet\r\nzvláčkovatělý\r\nzvláčkovatění\r\nzvláčnět\r\nzvláčnit\r\nzvláčňovadlo\r\nzvláčňovat\r\nzvláčňující\r\nzvládající\r\nzvládanější\r\nzvládání\r\nzvládaný\r\nzvladatelnější\r\nzvládatelnější\r\nzvladatelný\r\nzvládat\r\nzvládávání\r\nzvládávaný\r\nzvládávat\r\nzvládnout\r\nzvládnutější\r\nzvladnutelnější\r\nzvládnutelnější\r\nzvládnutelný\r\nzvládnutí\r\nzvládnutý\r\nzvlákňovací\r\nzvlákňování\r\nzvlákňovaný\r\nzvlákňovat\r\nzvlášť\r\nzvláště\r\nzvláštnější\r\nzvláštní\r\nzvláštnůstka\r\nzvlažit\r\nzvlažnělejší\r\nzvlažnění\r\nzvlčilejší\r\nzvlčilý\r\nzvlhčení\r\nzvlhčený\r\nzvlhčit\r\nzvlhčovací\r\nzvlhčovač\r\nzvlhčovadlo\r\nzvlhčování\r\nzvlhčovaný\r\nzvlhčovat\r\nzvlhčující\r\nzvlhlejší\r\nzvlhlý\r\nzvlhnout\r\nzvlhnutí\r\nzvlhnutý\r\nzvlnění\r\nzvlněný\r\nzvlnit\r\nzvlňovací\r\nzvlňování\r\nzvlňovaný\r\nzvlňovat\r\nzvnějška\r\nzvnějšku\r\nzvnějšněný\r\nzvnitřka\r\nzvnitřku\r\nzvnitřnění\r\nzvnitřněný\r\nzvnitřnit\r\nzvodeň\r\nzvodnělý\r\nzvodnění\r\nzvolací\r\nzvolající\r\nzvolanější\r\nzvolání\r\nzvolaný\r\nzvolat\r\nzvolenější\r\nZvoleněves\r\nzvoleněveský\r\nzvolení\r\nzvolený\r\nzvolit\r\nzvolitelný\r\nzvolna\r\nzvolnění\r\nzvolněný\r\nzvolnit\r\nzvolňování\r\nzvolňovaný\r\nzvolňovat\r\nzvolňující\r\nZvolský\r\nzvonařčin\r\nzvonařka\r\nZvonařová\r\nzvonařský\r\nzvonařství\r\nzvonař\r\nZvonař\r\nZvonařův\r\nzvonařův\r\nzvoncový\r\nzvonec\r\nzvoneček\r\nzvonek\r\nzvonění\r\nzvoněný\r\nzvon\r\nzvonice\r\nzvonící\r\nZvoníček\r\nzvonička\r\nZvoníčková\r\nZvoníčkův\r\nZvoníková\r\nzvoník\r\nZvoník\r\nZvoníkův\r\nzvoníkův\r\nzvonit\r\nzvonivější\r\nzvonivka\r\nzvonivý\r\nzvonkohra\r\nzvonkovitý\r\nzvonkový\r\nzvonovina\r\nzvonovitý\r\nzvonový\r\nzvoucí\r\nzvracející\r\nzvrácenější\r\nzvracení\r\nzvrácení\r\nzvracený\r\nzvrácený\r\nzvracet\r\nzvracivý\r\nzvrásněnější\r\nzvrásnění\r\nzvrásněný\r\nzvrásnit\r\nzvratek\r\nzvrat\r\nzvrátit\r\nzvratitelnější\r\nzvratitelný\r\nzvratnější\r\nzvratný\r\nzvratový\r\nzvrhání\r\nzvrhaný\r\nzvrhat\r\nzvrhávání\r\nzvrhávaný\r\nzvrhávat\r\nzvrhlejší\r\nzvrhlík\r\nzvrhlíkův\r\nzvrhlý\r\nzvrhlý\r\nzvrhnout\r\nzvrhnutí\r\nzvrstvení\r\nzvrstvený\r\nzvrtnout\r\nzvrtnutí\r\nzvrtnutý\r\nzvrznout\r\nzvrznutí\r\nzvrznutý\r\nzvržený\r\nzvředovatělý\r\nzvu\r\nzvučení\r\nzvučený\r\nzvučet\r\nzvučící\r\nzvučit\r\nzvučnější\r\nzvučný\r\nzvukařský\r\nzvukař\r\nzvukařův\r\nzvuk\r\nzvukomalba\r\nzvukomalebnější\r\nzvukomalebný\r\nzvukoměr\r\nzvukotechnika\r\nzvukotěsný\r\nzvukovější\r\nzvukovod\r\nzvukový\r\nzvukový\r\nzvůle\r\nzvulgarizovanější\r\nzvulgarizování\r\nzvulgarizovaný\r\nzvulgarizovat\r\nzvulgárnění\r\nzvulgárněný\r\nzvulgárnět\r\nzvulkanizovat\r\nzvýhodněnější\r\nzvýhodnění\r\nzvýhodněný\r\nzvýhodnit\r\nzvýhodňování\r\nzvýhodňovaný\r\nzvýhodňovat\r\nzvýhodňující\r\nzvykající\r\nzvykání\r\nzvykaný\r\nzvykat\r\nzvyk\r\nzvyklejší\r\nzvyklý\r\nzvyklý\r\nzvyknout\r\nzvyknutí\r\nzvyknutý\r\nzvykoslovný\r\nzvykovější\r\nzvykový\r\nzvýraznění\r\nzvýrazněný\r\nzvýraznit\r\nzvýrazňovací\r\nzvýrazňování\r\nzvýrazňovaný\r\nzvýrazňovat\r\nzvýrazňovávat\r\nzvýrazňující\r\nzvysoka\r\nzvýšenější\r\nzvýšení\r\nzvýšený\r\nzvýšit\r\nzvyšovací\r\nzvyšování\r\nzvyšovaný\r\nzvyšovat\r\nzvyšující\r\nZweigeltrebe\r\nzygota\r\nZykánová\r\nZykán\r\nZykánův\r\nZyka\r\nZýka\r\nZyková\r\nZýková\r\nZykův\r\nZýkův\r\nzželení\r\nzželený\r\nzželet\r\nzženštění\r\nzženštěný\r\nzženštilcův\r\nzženštilec\r\nzženštilejší\r\nzženštilý\r\nzženštit\r\nzženšťování\r\nzženšťovat\r\nzžírání\r\nzživotnění\r\nžab\r\nžabách\r\nžabák\r\nžabákův\r\nžabám\r\nžabařčin\r\nžabařka\r\nžába\r\nžabcův\r\nŽabčice\r\nžabčický\r\nžabec\r\nžábě\r\nžaber\r\nžaberní\r\nžabička\r\nžabincový\r\nžabinec\r\nžabí\r\nŽabka\r\nžabka\r\nŽabková\r\nžabkový\r\nŽabkův\r\nžabomyší\r\nžábronožka\r\nžábrový\r\nžábry\r\nžací\r\nŽacléř\r\nŽacléřsko\r\nžacléřský\r\nžactvo\r\nžáček\r\nŽáček\r\nžačka\r\nŽáčková\r\nŽáčkův\r\nžáčkův\r\nžádací\r\nžádající\r\nžádanější\r\nžádání\r\nžádanka\r\nžádaný\r\nžadatelčin\r\nžadatelka\r\nžadatel\r\nžadatelův\r\nžádat\r\nžádávat\r\nŽádníková\r\nŽádník\r\nŽádníkův\r\nŽádný\r\nžádný\r\nžádný\r\nžadonění\r\nžadoněný\r\nžadonící\r\nžadonit\r\nžádostivější\r\nžádostiv\r\nžádostivý\r\nžádost\r\nžádoucí\r\nžádoucnější\r\nžádoucnost\r\nžahadlo\r\nžahavější\r\nžahavka\r\nžahavý\r\nžáha\r\nŽaigla\r\nŽaiglová\r\nŽaiglův\r\nžakárový\r\nžakárský\r\nŽákava\r\nžakéř\r\nžakéřův\r\nžaket\r\nŽáková\r\nžákovský\r\nžák\r\nŽák\r\nŽákův\r\nžákův\r\nžákyňčin\r\nžákyně\r\nžákynin\r\nžákyňka\r\nžalářník\r\nžalářníkův\r\nžalářní\r\nžalářovanější\r\nžalářování\r\nžalářovaný\r\nžalářovat\r\nžalář\r\nžal\r\nŽalkovice\r\nžalkovický\r\nžalman\r\nžalmanův\r\nžalm\r\nžalmista\r\nžalmistův\r\nžalmový\r\nžalnější\r\nžalný\r\nžaloba\r\nžalobce\r\nžalobcův\r\nžalobkyně\r\nžalobkynin\r\nžalobnice\r\nžalobníček\r\nžalobničin\r\nžalobníčkův\r\nžalobník\r\nžalobníkův\r\nžal\r\nžalostivý\r\nžalost\r\nžalostnější\r\nžalostný\r\nŽaloudek\r\nŽaloudková\r\nŽaloudkův\r\nžalování\r\nžalovaný\r\nžalovat\r\nžalovatelnější\r\nžalovatelný\r\nžalovávání\r\nžalovávaný\r\nžalovávat\r\nžalozpěv\r\nžaltář\r\nžaludeční\r\nžaludek\r\nžalud\r\nžaludkový\r\nŽaludová\r\nžaludový\r\nŽalud\r\nžaludský\r\nŽaludův\r\nžalující\r\nžaluplnější\r\nžaluplný\r\nžaluzie\r\nžaluziový\r\nŽambaldoržová\r\nŽambaldorž\r\nŽambaldoržův\r\nŽamberk\r\nžamberský\r\nŽampachová\r\nŽampach\r\nŽampachův\r\nŽampa\r\nžampion\r\nžampión\r\nžampionový\r\nžampiónový\r\nŽampová\r\nŽampův\r\nžandár\r\nžandárův\r\nŽandov\r\nŽandovsko\r\nžandovský\r\nŽaneta\r\nŽanetčin\r\nŽanetin\r\nŽanetka\r\nžánr\r\nžánrista\r\nžánristčin\r\nžánristka\r\nžánristův\r\nžánrovější\r\nžánrový\r\nŽanta\r\nŽantová\r\nŽantovský\r\nŽantův\r\nžargon\r\nžargonový\r\nžár\r\nžárlení\r\nžárlený\r\nžárlící\r\nžárlit\r\nžárlivcův\r\nžárlivčin\r\nžárlivecký\r\nžárlivec\r\nžárlivější\r\nžárlivka\r\nžárlivý\r\nžarlivý\r\nžárnější\r\nžárný\r\nžárobeton\r\nžárobetonový\r\nŽarošice\r\nžarošický\r\nžárovčička\r\nžárovenský\r\nžárovička\r\nžároviště\r\nžárovka\r\nžárovkový\r\nŽárovná\r\nžárový\r\nžárovzdorný\r\nŽárský\r\nžáruvzdorný\r\nžasnout\r\nžasnutí\r\nŽaškův\r\nŽatecko\r\nžatecký\r\nžatecký\r\nŽatec\r\nžatečka\r\nžatější\r\nžat\r\nŽatva\r\nžatva\r\nžatý\r\nžatý\r\nžbluňk\r\nžblunkavý\r\nžblunknout\r\nžbluňknout\r\nžblunknutí\r\nžbluňknutí\r\nŽdánice\r\nždánický\r\nŽdánov\r\nždánovský\r\nžďárecký\r\nŽďárec\r\nžďárenský\r\nŽďár\r\nŽďárná\r\nžďárový\r\nŽďársko\r\nŽďárský\r\nžďárský\r\nžďáření\r\nŽďas\r\nždibec\r\nždibeček\r\nždibek\r\nždibíček\r\nždímací\r\nždímačka\r\nždímání\r\nždímaný\r\nždímat\r\nždírecký\r\nŽdírec\r\nže\r\nžebernatka\r\nžeberní\r\nžebírko\r\nžebírkový\r\nžebrací\r\nžebrácký\r\nžebráctví\r\nžebraččin\r\nžebráček\r\nžebračenka\r\nžebračka\r\nžebráčkův\r\nžebráčtější\r\nžebradlo\r\nžebrající\r\nžebrák\r\nžebrákův\r\nžebrání\r\nžebraný\r\nžebrat\r\nžebratka\r\nžebrávání\r\nžebrávaný\r\nžebrávat\r\nžebravější\r\nžebravý\r\nžebro\r\nžebronění\r\nžebronit\r\nžebrota\r\nžebrování\r\nžebrovaný\r\nžebrovat\r\nžebrový\r\nžebříček\r\nžebříčkovější\r\nžebříčkovitý\r\nžebříčkový\r\nžebřík\r\nžebříkový\r\nžebřiňáček\r\nžebřiňák\r\nžebřina\r\nžebřinový\r\nžeh\r\nžehlení\r\nžehlený\r\nžehlicí\r\nžehlící\r\nžehlička\r\nžehličkový\r\nžehlírna\r\nžehlířčin\r\nžehlířka\r\nžehlíř\r\nžehlířův\r\nžehlit\r\nžehlivý\r\nžehnací\r\nžehnající\r\nžehnání\r\nžehnaný\r\nžehnat\r\nžehnávanější\r\nžehnávání\r\nžehnávaný\r\nžehnávat\r\nžehrající\r\nžehrat\r\nŽehrovice\r\nžehrovický\r\nŽehrovka\r\nžehrovský\r\nŽehušice\r\nžehušický\r\nžejdlíček\r\nžejdlík\r\nŽejdlíková\r\nŽejdlík\r\nŽejdlíkův\r\nžel\r\nželatina\r\nželatinovací\r\nželatinový\r\nželbohu\r\nželé\r\nŽelechovice\r\nželechovický\r\nŽelenice\r\nželenický\r\nželení\r\nželený\r\nŽelešice\r\nželešický\r\nželet\r\nŽeletava\r\nŽeletavka\r\nželezárenský\r\nželezárna\r\nželezářský\r\nželezářství\r\nželezář\r\nželezářův\r\nželezenský\r\nželezitan\r\nželezitější\r\nželezitouhličitý\r\nželezitý\r\nželezitý\r\nželezňák\r\nželeznatý\r\nŽelezná\r\nželeznější\r\nŽelezné\r\nželeznice\r\nželezničářčin\r\nželezničářka\r\nželezničářský\r\nželezničář\r\nželezničářův\r\nželeznička\r\nželezniční\r\nŽeleznobrodsko\r\nželeznobrodský\r\nželeznorudný\r\nŽeleznorudsko\r\nželeznorudský\r\nŽelezný\r\nželezný\r\nželezobeton\r\nželezobetonový\r\nželezo\r\nželezoniklový\r\nželezorudný\r\nželezový\r\nželící\r\nŽelina\r\nŽelinová\r\nŽelinský\r\nŽelinův\r\nželírující\r\nŽeliv\r\nŽelivka\r\nŽelívsko\r\nŽelivský\r\nželivský\r\nželivský\r\nželízko\r\nželízský\r\nŽelízy\r\nželka\r\nŽelkovice\r\nželkovický\r\nŽelnava\r\nželva\r\nželvička\r\nželví\r\nželvovina\r\nželvovinový\r\nžemle\r\nŽemlička\r\nžemlička\r\nŽemličková\r\nžemličkový\r\nŽemličkův\r\nžemlovka\r\nžemlový\r\nženáč\r\nženáčův\r\nženat\r\nženatý\r\nžena\r\nžence\r\nžencem\r\nženci\r\nžencích\r\nžencovi\r\nženců\r\nžencům\r\nžencův\r\nženče\r\nženčin\r\nženění\r\nženěný\r\nŽenevančin\r\nŽenevanka\r\nŽenevan\r\nŽenevanův\r\nŽeneva\r\nženevský\r\nženich\r\nženichův\r\nženijní\r\nženin\r\nženista\r\nženistčin\r\nženistka\r\nženistův\r\nŽeníšek\r\nŽeníšková\r\nŽeníškův\r\nženit\r\nženitba\r\nženka\r\nŽenklava\r\nženoucí\r\nženský\r\nženství\r\nženštější\r\nženština\r\nžentour\r\nženu\r\nženuška\r\nžeň\r\nŽeranovice\r\nžeranovický\r\nŽeravice\r\nžeravický\r\nžeravý\r\nžerď\r\nžernosecký\r\nŽernoseky\r\nžernov\r\nŽerotín\r\nŽerotín\r\nžerotínský\r\nžerotínský\r\nŽerotínův\r\nžertem\r\nžertéř\r\nžertéřův\r\nžert\r\nžertík\r\nžertování\r\nžertovat\r\nŽertová\r\nžertovný\r\nŽert\r\nžertující\r\nžertumilovnější\r\nŽertův\r\nžertva\r\nžervé\r\nžerzejový\r\nžerzej\r\nžerzet\r\nžerzetový\r\nžes\r\nžestě\r\nžesti\r\nžestích\r\nžesťový\r\nžesťů\r\nžesťům\r\nžetí\r\nžeton\r\nžezlo\r\nžezlonoš\r\nžezlonošův\r\nžežulička\r\nŽežulka\r\nžežulka\r\nŽežulková\r\nŽežulkův\r\nžhářčin\r\nžhářka\r\nžhářský\r\nžhářství\r\nžhář\r\nžhářův\r\nžhavější\r\nžhavenější\r\nžhavení\r\nžhavený\r\nžhavicí\r\nžhavící\r\nžhavit\r\nžhavotekutý\r\nžhavý\r\nžhnoucí\r\nžhnout\r\nžhnutí\r\nžhoucí\r\nžiarský\r\nžidák\r\nžidákův\r\nŽídek\r\nŽidenice\r\nžidenický\r\nŽídková\r\nŽídkův\r\nžidle\r\nŽidlický\r\nžidlička\r\nŽidlochovice\r\nŽidlochovicko\r\nžidlochovický\r\nŽidněves\r\nŽidněveský\r\nžidobolševismus\r\nŽidová\r\nžidovčin\r\nžidovka\r\nžidovka\r\nžidovský\r\nžidovství\r\nžidovstvo\r\nžidovštější\r\nŽid\r\nžid\r\nŽid\r\nŽidův\r\nžidův\r\nžigulík\r\nžigulíkův\r\nžíhací\r\nžihadlo\r\nžíhanější\r\nžíhání\r\nžíhaný\r\nžíhárna\r\nžíhat\r\nŽichovice\r\nžichovický\r\nžijící\r\nŽikovský\r\nžil\r\nžilách\r\nžilám\r\nžilami\r\nŽíla\r\nžíla\r\nžiletka\r\nžiletkový\r\nŽilina\r\nžilinský\r\nŽilka\r\nžilka\r\nžilkovací\r\nžilkování\r\nžilkovaný\r\nžilkovat\r\nžilkovatý\r\nŽilková\r\nžilkovitý\r\nžilkový\r\nŽilkův\r\nžilnatější\r\nžilnatina\r\nžilnatý\r\nžilní\r\nžilný\r\nžilou\r\nŽílová\r\nŽilov\r\nžilovský\r\nžilový\r\nŽílův\r\nŽimrovice\r\nžimrovický\r\nŽimutice\r\nžimutický\r\nžinantnější\r\nžinčica\r\nžíněnka\r\nžíněný\r\nžíně\r\nžínka\r\nžinylkovací\r\nžinylkování\r\nžinylkovaný\r\nžinylkovat\r\nžinýrování\r\nžinýrovat\r\nŽipajová\r\nŽipaj\r\nŽipajův\r\nžirafa\r\nžirafčin\r\nžirafí\r\nžirafka\r\nžíravější\r\nžíravina\r\nžíravý\r\nžír\r\nžírnější\r\nžírný\r\nŽirov\r\nŽirovnice\r\nžirovnický\r\nžirovský\r\nžirový\r\nŽíšov\r\nžíšovský\r\nŽitava\r\nŽitavsko\r\nžitavský\r\nžít\r\nžitější\r\nžít\r\nžití\r\nŽitková\r\nžitkovský\r\nŽitníková\r\nŽitník\r\nŽitníkův\r\nŽitný\r\nžitný\r\nžito\r\nžitovka\r\nžitý\r\nžitý\r\nživáček\r\nživáčkův\r\nŽivanice\r\nživanický\r\nžívání\r\nžívaný\r\nžívat\r\nživcový\r\nživec\r\nživější\r\nživelnější\r\nživelní\r\nživelný\r\nživel\r\nživenější\r\nživení\r\nživený\r\nživice\r\nživící\r\nživicový\r\nživičný\r\nživina\r\nživinový\r\nživio\r\nživit\r\nživitelčin\r\nživitelka\r\nživitel\r\nživitelův\r\nživlový\r\nŽivnobanka\r\nživnostenskoprávní\r\nživnostenský\r\nživnostenstvo\r\nživnostnice\r\nživnostnický\r\nživnostničin\r\nživnostník\r\nživnostníkův\r\nživnůstka\r\nŽivný\r\nživný\r\nživobytí\r\nživočichopis\r\nživočich\r\nživočichův\r\nživočišnější\r\nživočišný\r\nživočišstvo\r\nživ\r\nŽivora\r\nživorodka\r\nživorodý\r\nŽivorová\r\nŽivorův\r\nživoření\r\nživořící\r\nživořit\r\nživotabudič\r\nživotadárnější\r\nživotadárný\r\nživotaplnější\r\nživotaschopnější\r\nživotaschopný\r\nživotaspráva\r\nŽivotice\r\nživotický\r\nživot\r\nživotnější\r\nživotní\r\nživotný\r\nživotobudič\r\nživotodárce\r\nživotodárcův\r\nživotodárnější\r\nživotodárný\r\nživotopiscův\r\nživotopisec\r\nživotopis\r\nživotopisnější\r\nživotopisný\r\nživotospráva\r\nživoucí\r\nživoucnější\r\nživůtek\r\nživý\r\nžízeň\r\nžíznění\r\nžíznící\r\nžíznit\r\nžíznivější\r\nžíznivka\r\nžízniv\r\nžíznivý\r\nŽížala\r\nžížala\r\nžížalí\r\nžížalka\r\nŽížalová\r\nŽížalův\r\nŽiželice\r\nžiželický\r\nŽižice\r\nžižický\r\nŽižka\r\nŽižkovančin\r\nŽižkovanka\r\nŽižková\r\nŽižkov\r\nŽižkovský\r\nžižkovský\r\nžižkovský\r\nŽižkův\r\nžižlání\r\nžižlaný\r\nžižlat\r\nžižlávat\r\nžížnivější\r\nžížnivý\r\nžlabatka\r\nžlábek\r\nžlab\r\nžlábkovací\r\nžlábkování\r\nžlábkovaný\r\nžlábkovat\r\nžlábkovitý\r\nžlábkový\r\nžlabový\r\nžláza\r\nžlázka\r\nžláznatý\r\nžlaznatý\r\nžlázový\r\nžleb\r\nžloutek\r\nžloutenka\r\nžloutenkový\r\nžloutkový\r\nžloutnoucí\r\nžloutnout\r\nžloutnutí\r\nžloutnutý\r\nžlučník\r\nžlučníkový\r\nžlučovitější\r\nžlučovitý\r\nžlučovod\r\nžlučový\r\nžluč\r\nžluklejší\r\nžluklý\r\nžluknout\r\nžluknutí\r\nžluna\r\nžlunkat\r\nžluňkat\r\nžluťácký\r\nžluťásek\r\nžluťáskův\r\nŽlutava\r\nžlutavý\r\nžlutější\r\nŽlutice\r\nžlutický\r\nžluť\r\nžlutka\r\nžlutobílý\r\nžlutobřichý\r\nžlutočerný\r\nžlutočervený\r\nžlutohlavý\r\nžlutohnědý\r\nžlutomasý\r\nžlutooranžový\r\nžlutorohý\r\nžlutorůžový\r\nžlutoskvrnný\r\nžlutošedý\r\nžluťoučký\r\nžluťounký\r\nžlutozelený\r\nžlutozem\r\nžlutší\r\nžlutý\r\nžluva\r\nžmolek\r\nžmolení\r\nžmolka\r\nžmolkovatění\r\nžmolkovatěný\r\nžmolkovatět\r\nžmolkovitý\r\nžmoulající\r\nžmoulání\r\nžmoulat\r\nŽmuď\r\nžnec\r\nžnec\r\nžnečka\r\nžnout\r\nžňový\r\nžnu\r\nžnutí\r\nžnutý\r\nžnutý\r\nŽofčin\r\nŽofie\r\nŽofiin\r\nŽofinčin\r\nŽofinka\r\nŽofín\r\nžofínský\r\nžofínský\r\nŽofka\r\nžokejčin\r\nžokejka\r\nžokejský\r\nžokej\r\nžokejův\r\nžok\r\nžoldácký\r\nžoldák\r\nžoldákův\r\nžold\r\nžoldnéřský\r\nžoldnéř\r\nžoldnéřův\r\nžolíkový\r\nžolík\r\nžolíkův\r\nžonglér\r\nžonglérský\r\nžonglérství\r\nžonglérův\r\nžonglování\r\nžonglovat\r\nžonglovávání\r\nžonglovávaný\r\nžonglovávat\r\nžonglující\r\nžoržet\r\nžoržetový\r\nžoužel\r\nžoviálnější\r\nžoviální\r\nŽP\r\nžrací\r\nžrádlo\r\nžraločisko\r\nžraločí\r\nžralok\r\nžralokův\r\nžranější\r\nžranice\r\nžraní\r\nžrání\r\nžraný\r\nžrát\r\nžravcův\r\nžravec\r\nžravější\r\nžravý\r\nžrec\r\nžrecův\r\nžroutčin\r\nžroutka\r\nžrout\r\nžroutův\r\nžudro\r\nŽufanová\r\nŽufan\r\nŽufanův\r\nžuchnout\r\nžuchnutí\r\nŽuková\r\nŽuk\r\nŽukův\r\nžula\r\nžulorula\r\nŽulová\r\nžulovský\r\nžulový\r\nŽumberk\r\nžumpa\r\nžupánek\r\nžupan\r\nžupanův\r\nžupa\r\nžupka\r\nžupní\r\nŽurek\r\nŽurková\r\nŽurkův\r\nžurnál\r\nžurnalismus\r\nžurnalista\r\nžurnalistčin\r\nžurnalistický\r\nžurnalističtější\r\nžurnalistika\r\nžurnalistka\r\nžurnalistův\r\nžurnálovější\r\nžurnálový\r\nžurnálový\r\nžužlání\r\nžužlaný\r\nžužlat\r\nžužlávání\r\nžužlávaný\r\nžužlávat\r\nŽváček\r\nŽváčková\r\nŽváčkův\r\nŽváková\r\nŽvák\r\nŽvákův\r\nžvancův\r\nžvanec\r\nžvanění\r\nžvaněný\r\nžvanící\r\nžvanilčin\r\nžvanilka\r\nžvanil\r\nžvanilův\r\nžvanit\r\nžvanivější\r\nžvanivý\r\nŽvanovice\r\nžvanovický\r\nžvástání\r\nžvástaný\r\nžvástat\r\nžvást\r\nžvatlající\r\nžvatlání\r\nžvatlaný\r\nžvatlat\r\nžvatlavější\r\nžvatlavý\r\nžvavější\r\nžvavý\r\nžvejka\r\nžvýkací\r\nžvýkačka\r\nžvýkač\r\nžvýkající\r\nžvýkání\r\nžvýkaný\r\nžvýkat\r\nžvýkávat\r\nžvýknout\r\n"
  },
  {
    "path": "Quelea/dictionaries/dictionaries.properties",
    "content": "#Mon Jul 29 23:50:52 BST 2013\r\nsv.words=Svenska\r\nde.words=Deutsch\r\nus.words=English (US)\r\ngb.words=English (GB)\r\nnl.words=Nederlands (NL)\r\ncs.words=\\u010ce\\u0161tina\r\nsk.words=Sloven\\u010dina\r\n"
  },
  {
    "path": "Quelea/dictionaries/gb.words",
    "content": "﻿a\r\naardvark\r\naardvarks\r\naardvark's\r\naardwolf\r\nab\r\nabaca\r\naback\r\nabacus\r\nabacuses\r\nabaft\r\nabalone\r\nabalones\r\nabalone's\r\nabandon\r\nabandoned\r\nabandonee\r\nabandoner\r\nabandoning\r\nabandonment\r\nabandons\r\nabase\r\nabased\r\nabasement\r\nabasements\r\nabases\r\nabash\r\nabashed\r\nabashes\r\nabashing\r\nabashment\r\nabasing\r\nabate\r\nabated\r\nabatement\r\nabatements\r\nabates\r\nabating\r\nabattoir\r\nabbacy\r\nabbatial\r\nabbess\r\nabbey\r\nabbeys\r\nabbey's\r\nabbot\r\nabbots\r\nabbot's\r\nabbreviate\r\nabbreviated\r\nabbreviates\r\nabbreviating\r\nabbreviation\r\nabbreviations\r\nabbreviator\r\nabdicable\r\nabdicate\r\nabdicated\r\nabdicates\r\nabdicating\r\nabdication\r\nabdicator\r\nabdomen\r\nabdomens\r\nabdomen's\r\nabdominal\r\nabdominally\r\nabducing\r\nabduct\r\nabducted\r\nabducting\r\nabduction\r\nabductions\r\nabduction's\r\nabductor\r\nabductors\r\nabductor's\r\nabducts\r\nabeam\r\nabecedarian\r\nabed\r\naberrance\r\naberrancy\r\naberrant\r\naberrantly\r\naberration\r\naberrational\r\naberrations\r\nabet\r\nabetment\r\nabets\r\nabetted\r\nabetter\r\nabetting\r\nabettor\r\nabeyance\r\nabeyant\r\nabhor\r\nabhorred\r\nabhorrence\r\nabhorrent\r\nabhorrently\r\nabhorrer\r\nabhorring\r\nabhors\r\nabidance\r\nabide\r\nabided\r\nabider\r\nabides\r\nabiding\r\nabidingly\r\nabilities\r\nability\r\nability's\r\nabiogenetically\r\nabiogenist\r\nabject\r\nabjection\r\nabjections\r\nabjectly\r\nabjectness\r\nabjuration\r\nabjure\r\nabjured\r\nabjurer\r\nabjures\r\nabjuring\r\nablate\r\nablated\r\nablates\r\nablating\r\nablation\r\nablative\r\nablator\r\nablaut\r\nablaze\r\nable\r\nabler\r\nablest\r\nabloom\r\nablution\r\nablutionary\r\nablutions\r\nably\r\nabnegate\r\nabnegates\r\nabnegation\r\nabnegator\r\nabnormal\r\nabnormalities\r\nabnormality\r\nabnormally\r\naboard\r\nabode\r\nabodes\r\nabode's\r\nabolish\r\nabolishable\r\nabolished\r\nabolisher\r\nabolishers\r\nabolishes\r\nabolishing\r\nabolishment\r\nabolishment's\r\nabolition\r\nabolitionary\r\nabolitionism\r\nabolitionist\r\nabolitionists\r\nabominable\r\nabominably\r\nabominate\r\nabominated\r\nabominates\r\nabominating\r\nabomination\r\nabominations\r\nabominator\r\nabominators\r\naboriginal\r\naborigine\r\naborigines\r\naborigine's\r\nabort\r\naborted\r\naborting\r\nabortion\r\nabortionist\r\nabortionists\r\nabortions\r\nabortion's\r\nabortive\r\nabortively\r\nabortiveness\r\naborts\r\naboulia\r\nabound\r\nabounded\r\nabounding\r\nabounds\r\nabout\r\nabove\r\naboveboard\r\naboveground\r\nabovementioned\r\nabracadabra\r\nabrade\r\nabraded\r\nabrader\r\nabrades\r\nabrading\r\nabrasion\r\nabrasions\r\nabrasion's\r\nabrasive\r\nabrasively\r\nabrasiveness\r\nabrasives\r\nabreact\r\nabreaction\r\nabreactions\r\nabreaction's\r\nabreast\r\nabridge\r\nabridged\r\nabridgement\r\nabridger\r\nabridges\r\nabridging\r\nabridgment\r\nabroad\r\nabrogate\r\nabrogated\r\nabrogates\r\nabrogating\r\nabrogation\r\nabrupt\r\nabruption\r\nabruptly\r\nabruptness\r\nabscess\r\nabscessed\r\nabscesses\r\nabscise\r\nabscised\r\nabscising\r\nabscissa\r\nabscission\r\nabscond\r\nabsconded\r\nabsconder\r\nabsconding\r\nabsconds\r\nabseil\r\nabsence\r\nabsences\r\nabsence's\r\nabsent\r\nabsented\r\nabsentee\r\nabsenteeism\r\nabsentees\r\nabsentee's\r\nabsentia\r\nabsenting\r\nabsently\r\nabsentminded\r\nabsentmindedly\r\nabsentmindedness\r\nabsents\r\nabsinth\r\nabsinthe\r\nabsolute\r\nabsolutely\r\nabsoluteness\r\nabsolutes\r\nabsolution\r\nabsolutism\r\nabsolutist\r\nabsolutistic\r\nabsolve\r\nabsolved\r\nabsolver\r\nabsolves\r\nabsolving\r\nabsorb\r\nabsorbability\r\nabsorbable\r\nabsorbance\r\nabsorbed\r\nabsorbency\r\nabsorbent\r\nabsorbents\r\nabsorbent's\r\nabsorber\r\nabsorbing\r\nabsorbingly\r\nabsorbs\r\nabsorption\r\nabsorptions\r\nabsorption's\r\nabsorptive\r\nabstain\r\nabstained\r\nabstainer\r\nabstaining\r\nabstains\r\nabstemious\r\nabstemiously\r\nabstention\r\nabstentions\r\nabstentious\r\nabstergent\r\nabstinence\r\nabstinent\r\nabstinently\r\nabstract\r\nabstracted\r\nabstractedly\r\nabstractedness\r\nabstracter\r\nabstracting\r\nabstraction\r\nabstractionism\r\nabstractionist\r\nabstractionists\r\nabstractions\r\nabstraction's\r\nabstractive\r\nabstractly\r\nabstractness\r\nabstractor\r\nabstractors\r\nabstractor's\r\nabstracts\r\nabstrictions\r\nabstruse\r\nabstrusely\r\nabstruseness\r\nabsurd\r\nabsurdist\r\nabsurdities\r\nabsurdity\r\nabsurdity's\r\nabsurdly\r\nabsurdness\r\nabsurdum\r\nabundance\r\nabundances\r\nabundant\r\nabundantly\r\nabuse\r\nabused\r\nabuser\r\nabusers\r\nabuses\r\nabusing\r\nabusive\r\nabusively\r\nabusiveness\r\nabut\r\nabutilon\r\nabutment\r\nabutments\r\nabuts\r\nabutted\r\nabutter\r\nabutters\r\nabutter's\r\nabutting\r\nabuzz\r\nabysm\r\nabysmal\r\nabysmally\r\nabyss\r\nabyssal\r\nabysses\r\nabyss's\r\nacacia\r\nacademe\r\nacademia\r\nacademic\r\nacademically\r\nacademician\r\nacademicism\r\nacademics\r\nacademies\r\nacademism\r\nacademy\r\nacademy's\r\nacajou\r\nacanthine\r\nacanthocephalan\r\nacanthous\r\nacanthus\r\nacanthuses\r\nacatalectic\r\naccede\r\nacceded\r\naccedes\r\nacceding\r\naccelerando\r\naccelerate\r\naccelerated\r\naccelerates\r\naccelerating\r\nacceleration\r\naccelerations\r\naccelerative\r\naccelerator\r\naccelerators\r\naccelerometer\r\naccelerometers\r\naccelerometer's\r\naccent\r\naccented\r\naccenting\r\naccentless\r\naccentor\r\naccents\r\naccentual\r\naccentually\r\naccentuate\r\naccentuated\r\naccentuates\r\naccentuating\r\naccentuation\r\naccept\r\nacceptability\r\nacceptable\r\nacceptableness\r\nacceptably\r\nacceptance\r\nacceptances\r\nacceptance's\r\nacceptant\r\nacceptation\r\naccepted\r\naccepter\r\naccepters\r\naccepting\r\nacceptingly\r\nacceptor\r\nacceptors\r\nacceptor's\r\naccepts\r\naccess\r\naccessed\r\naccesses\r\naccessibility\r\naccessible\r\naccessibly\r\naccessing\r\naccession\r\naccessional\r\naccessions\r\naccession's\r\naccessorial\r\naccessories\r\naccessorise\r\naccessory\r\naccessory's\r\nacciaccatura\r\naccidence\r\naccident\r\naccidental\r\naccidentally\r\naccidentalness\r\naccidents\r\naccident's\r\naccipiter\r\nacclaim\r\nacclaimed\r\nacclaimer\r\nacclaiming\r\nacclaims\r\nacclamation\r\nacclimate\r\nacclimated\r\nacclimates\r\nacclimating\r\nacclimation\r\nacclimatisable\r\nacclimatisation\r\nacclimatise\r\nacclimatised\r\nacclimatiser\r\nacclimatisers\r\nacclimatises\r\nacclimatising\r\nacclivity\r\naccolade\r\naccolades\r\naccommodate\r\naccommodated\r\naccommodates\r\naccommodating\r\naccommodatingly\r\naccommodation\r\naccommodations\r\naccommodative\r\naccommodativeness\r\naccommodator\r\naccommodators\r\naccompanied\r\naccompanier\r\naccompanies\r\naccompaniment\r\naccompaniments\r\naccompaniment's\r\naccompanist\r\naccompanists\r\naccompanist's\r\naccompany\r\naccompanying\r\naccomplice\r\naccomplices\r\naccomplish\r\naccomplishable\r\naccomplished\r\naccomplisher\r\naccomplishers\r\naccomplishes\r\naccomplishing\r\naccomplishment\r\naccomplishments\r\naccomplishment's\r\naccord\r\naccordance\r\naccordant\r\naccordantly\r\naccorded\r\naccorder\r\naccorders\r\naccording\r\naccordingly\r\naccordion\r\naccordionist\r\naccordionists\r\naccordions\r\naccordion's\r\naccords\r\naccost\r\naccosted\r\naccosting\r\naccosts\r\naccount\r\naccountabilities\r\naccountability\r\naccountable\r\naccountableness\r\naccountably\r\naccountancy\r\naccountant\r\naccountants\r\naccountant's\r\naccountantship\r\naccounted\r\naccounting\r\naccountings\r\naccounts\r\naccoutre\r\naccoutred\r\naccoutrement\r\naccoutrements\r\naccoutrement's\r\naccoutres\r\naccoutring\r\naccredit\r\naccreditation\r\naccreditations\r\naccredited\r\naccrete\r\naccreted\r\naccreting\r\naccretion\r\naccretionary\r\naccretions\r\naccretion's\r\naccretive\r\naccruable\r\naccrual\r\naccruals\r\naccrue\r\naccrued\r\naccruement\r\naccrues\r\naccruing\r\nacculturate\r\nacculturated\r\nacculturates\r\nacculturating\r\nacculturation\r\nacculturative\r\naccumbency\r\naccumulate\r\naccumulated\r\naccumulates\r\naccumulating\r\naccumulation\r\naccumulations\r\naccumulative\r\naccumulatively\r\naccumulativeness\r\naccumulator\r\naccumulators\r\naccumulator's\r\naccuracies\r\naccuracy\r\naccurate\r\naccurately\r\naccurateness\r\naccursed\r\naccursedly\r\naccursedness\r\naccurst\r\naccusation\r\naccusations\r\naccusation's\r\naccusative\r\naccusatory\r\naccuse\r\naccused\r\naccuser\r\naccusers\r\naccuses\r\naccusing\r\naccusingly\r\naccustom\r\naccustomed\r\naccustomedness\r\naccustoming\r\naccustoms\r\nace\r\naced\r\nacerb\r\nacerbate\r\nacerbic\r\nacerbically\r\nacerbity\r\naces\r\nace's\r\nacetaldehyde\r\nacetaminophen\r\nacetanilide\r\nacetate\r\nacetic\r\nacetifier\r\nacetify\r\nacetone\r\nacetous\r\nacetum\r\nacetyl\r\nacetylcholine\r\nacetylene\r\nacetylsalicylic\r\nache\r\nached\r\naches\r\nachier\r\nachiest\r\nachievable\r\nachieve\r\nachieved\r\nachievement\r\nachievements\r\nachievement's\r\nachiever\r\nachievers\r\nachieves\r\nachieving\r\naching\r\nachingly\r\nachromatic\r\nachromatically\r\nachromatise\r\nachromatised\r\nachromatises\r\nachromatising\r\nachy\r\naciculate\r\nacid\r\nacidhead\r\nacidic\r\nacidification\r\nacidifier\r\nacidify\r\nacidimetric\r\nacidities\r\nacidity\r\nacidly\r\nacidometer\r\nacidophil\r\nacidophilus\r\nacidosis\r\nacids\r\nacidulate\r\nacidulation\r\nacidulous\r\nacierate\r\nacing\r\nacknowledge\r\nacknowledgeable\r\nacknowledged\r\nacknowledgement\r\nacknowledgements\r\nacknowledgement's\r\nacknowledger\r\nacknowledgers\r\nacknowledges\r\nacknowledging\r\nacme\r\nacne\r\nacolyte\r\nacolytes\r\naconite\r\nacorn\r\nacorns\r\nacorn's\r\nacoustic\r\nacoustical\r\nacoustically\r\nacoustician\r\nacoustics\r\nacquaint\r\nacquaintance\r\nacquaintances\r\nacquaintance's\r\nacquaintanceship\r\nacquainted\r\nacquainting\r\nacquaints\r\nacquiesce\r\nacquiesced\r\nacquiescence\r\nacquiescent\r\nacquiescently\r\nacquiesces\r\nacquiescing\r\nacquirable\r\nacquire\r\nacquired\r\nacquirement\r\nacquires\r\nacquiring\r\nacquisition\r\nacquisitionist\r\nacquisitions\r\nacquisition's\r\nacquisitive\r\nacquisitively\r\nacquisitiveness\r\nacquit\r\nacquits\r\nacquittal\r\nacquittals\r\nacquitted\r\nacquitter\r\nacquitting\r\nacre\r\nacreage\r\nacres\r\nacre's\r\nacrid\r\nacridity\r\nacridly\r\nacridness\r\nacrimonious\r\nacrimoniously\r\nacrimony\r\nacrobat\r\nacrobatic\r\nacrobatically\r\nacrobatics\r\nacrobats\r\nacrobat's\r\nacrolith\r\nacronym\r\nacronymic\r\nacronyms\r\nacronym's\r\nacrophobia\r\nacrophobic\r\nacropolis\r\nacross\r\nacrostic\r\nacrostically\r\nacrylic\r\nact\r\nactability\r\nactable\r\nacted\r\nacting\r\nactinic\r\nactinide\r\nactinium\r\nactinozoan\r\naction\r\nactionable\r\nactionably\r\nactions\r\naction's\r\nactivate\r\nactivated\r\nactivates\r\nactivating\r\nactivation\r\nactivations\r\nactivator\r\nactivators\r\nactivator's\r\nactive\r\nactively\r\nactiveness\r\nactivism\r\nactivist\r\nactivists\r\nactivist's\r\nactivities\r\nactivity\r\nactivity's\r\nactor\r\nactors\r\nactor's\r\nactress\r\nactresses\r\nactress's\r\nacts\r\nactual\r\nactualisation\r\nactualisations\r\nactualisation's\r\nactualise\r\nactualised\r\nactualises\r\nactualising\r\nactualities\r\nactuality\r\nactually\r\nactuarial\r\nactuarially\r\nactuaries\r\nactuary\r\nactuate\r\nactuated\r\nactuates\r\nactuating\r\nactuation\r\nactuator\r\nactuators\r\nactuator's\r\nacuity\r\naculeate\r\nacumen\r\nacuminate\r\nacumination\r\nacupuncture\r\nacutance\r\nacute\r\nacutely\r\nacuteness\r\nacuter\r\nacutest\r\nacyclic\r\nad\r\nadage\r\nadages\r\nadagio\r\nadagios\r\nadamant\r\nadamantine\r\nadamantly\r\nadapt\r\nadaptability\r\nadaptable\r\nadaptation\r\nadaptations\r\nadaptation's\r\nadapted\r\nadapter\r\nadapters\r\nadapting\r\nadaptive\r\nadaptively\r\nadaptor\r\nadaptors\r\nadapts\r\nadd\r\naddable\r\naddax\r\nadded\r\naddend\r\naddenda\r\naddendum\r\nadder\r\nadders\r\naddible\r\naddict\r\naddicted\r\naddicting\r\naddiction\r\naddictions\r\naddiction's\r\naddictive\r\naddicts\r\nadding\r\naddition\r\nadditional\r\nadditionally\r\nadditions\r\naddition's\r\nadditive\r\nadditively\r\nadditives\r\nadditive's\r\naddle\r\naddled\r\naddles\r\naddling\r\naddress\r\naddressability\r\naddressable\r\naddressed\r\naddressee\r\naddressees\r\naddressee's\r\naddresser\r\naddressers\r\naddresses\r\naddressing\r\naddressor\r\nadds\r\nadduce\r\nadduced\r\nadducer\r\nadduces\r\nadducible\r\nadducing\r\nadduct\r\nadducted\r\nadducting\r\nadduction\r\nadductive\r\nadductor\r\nadducts\r\nadenine\r\nadenitis\r\nadenoid\r\nadenoidal\r\nadenoidectomy\r\nadenoids\r\nadenoma\r\nadenosine\r\nadenovirus\r\nadept\r\nadeptly\r\nadeptness\r\nadepts\r\nadequacies\r\nadequacy\r\nadequate\r\nadequately\r\nadequateness\r\nadhere\r\nadhered\r\nadherence\r\nadherences\r\nadherent\r\nadherently\r\nadherents\r\nadherent's\r\nadherer\r\nadherers\r\nadheres\r\nadhering\r\nadhesion\r\nadhesions\r\nadhesive\r\nadhesively\r\nadhesiveness\r\nadhesives\r\nadhesive's\r\nadiabatic\r\nadiabatically\r\nadiaphorous\r\nadieu\r\nadieux\r\nadios\r\nadipose\r\nadiposity\r\nadjacency\r\nadjacent\r\nadjacently\r\nadjectival\r\nadjectivally\r\nadjective\r\nadjectively\r\nadjectives\r\nadjective's\r\nadjoin\r\nadjoined\r\nadjoining\r\nadjoins\r\nadjourn\r\nadjourned\r\nadjourning\r\nadjournment\r\nadjourns\r\nadjudge\r\nadjudged\r\nadjudges\r\nadjudging\r\nadjudicate\r\nadjudicated\r\nadjudicates\r\nadjudicating\r\nadjudication\r\nadjudications\r\nadjudication's\r\nadjudicative\r\nadjudicator\r\nadjudicatory\r\nadjunct\r\nadjunction\r\nadjunctive\r\nadjuncts\r\nadjunct's\r\nadjuration\r\nadjuratory\r\nadjure\r\nadjured\r\nadjures\r\nadjuring\r\nadjust\r\nadjustability\r\nadjustable\r\nadjustably\r\nadjusted\r\nadjuster\r\nadjusters\r\nadjusting\r\nadjustment\r\nadjustments\r\nadjustment's\r\nadjustor\r\nadjustors\r\nadjustor's\r\nadjusts\r\nadjutancy\r\nadjutant\r\nadjutants\r\nadjuvant\r\nadman\r\nadmass\r\nadmeasure\r\nadminister\r\nadministered\r\nadministering\r\nadministers\r\nadministrable\r\nadministrant\r\nadministrate\r\nadministrated\r\nadministrates\r\nadministrating\r\nadministration\r\nadministrational\r\nadministrations\r\nadministration's\r\nadministrative\r\nadministratively\r\nadministrator\r\nadministrators\r\nadministrator's\r\nadmirable\r\nadmirableness\r\nadmirably\r\nadmiral\r\nadmirals\r\nadmiral's\r\nadmiralty\r\nadmiration\r\nadmirations\r\nadmire\r\nadmired\r\nadmirer\r\nadmirers\r\nadmires\r\nadmiring\r\nadmiringly\r\nadmissibility\r\nadmissible\r\nadmission\r\nadmissions\r\nadmission's\r\nadmissive\r\nadmit\r\nadmits\r\nadmittance\r\nadmitted\r\nadmittedly\r\nadmitter\r\nadmitters\r\nadmitting\r\nadmix\r\nadmixed\r\nadmixes\r\nadmixture\r\nadmonish\r\nadmonished\r\nadmonisher\r\nadmonishes\r\nadmonishing\r\nadmonishingly\r\nadmonishment\r\nadmonishments\r\nadmonishment's\r\nadmonition\r\nadmonitions\r\nadmonition's\r\nadmonitory\r\nadnominal\r\nadnoun\r\nado\r\nadobe\r\nadolescence\r\nadolescent\r\nadolescently\r\nadolescents\r\nadolescent's\r\nadopt\r\nadoptability\r\nadoptable\r\nadopted\r\nadoptee\r\nadopter\r\nadopters\r\nadopting\r\nadoption\r\nadoptions\r\nadoption's\r\nadoptive\r\nadoptively\r\nadopts\r\nadorability\r\nadorable\r\nadorableness\r\nadorably\r\nadoration\r\nadore\r\nadored\r\nadorer\r\nadores\r\nadoring\r\nadorn\r\nadorned\r\nadorning\r\nadornment\r\nadornments\r\nadornment's\r\nadorns\r\nadrenal\r\nadrenalin\r\nadrenaline\r\nadrenergic\r\nadrift\r\nadroit\r\nadroitly\r\nadroitness\r\nads\r\nadscription\r\nadsorb\r\nadsorbed\r\nadsorbent\r\nadsorbing\r\nadsorbs\r\nadsorption\r\nadsorptive\r\nadularia\r\nadulate\r\nadulating\r\nadulation\r\nadulations\r\nadulator\r\nadulatory\r\nadult\r\nadulterant\r\nadulterate\r\nadulterated\r\nadulterates\r\nadulterating\r\nadulteration\r\nadulterator\r\nadulterer\r\nadulterers\r\nadulterer's\r\nadulteress\r\nadulteresses\r\nadulterine\r\nadulterous\r\nadulterously\r\nadultery\r\nadulthood\r\nadultness\r\nadults\r\nadult's\r\nadumbral\r\nadumbrate\r\nadumbrated\r\nadumbrates\r\nadumbrating\r\nadumbration\r\nadumbrative\r\nadumbratively\r\nadvance\r\nadvanced\r\nadvancement\r\nadvancements\r\nadvancement's\r\nadvancer\r\nadvancers\r\nadvances\r\nadvancing\r\nadvantage\r\nadvantaged\r\nadvantageous\r\nadvantageously\r\nadvantageousness\r\nadvantages\r\nadvantaging\r\nadvection\r\nadvections\r\nadvent\r\nadventitia\r\nadventitious\r\nadventitiously\r\nadventitiousness\r\nadventure\r\nadventured\r\nadventurer\r\nadventurers\r\nadventures\r\nadventuresome\r\nadventuress\r\nadventuresses\r\nadventuring\r\nadventurism\r\nadventurous\r\nadventurously\r\nadventurousness\r\nadverb\r\nadverbial\r\nadverbially\r\nadverbs\r\nadverb's\r\nadversarial\r\nadversaries\r\nadversary\r\nadversary's\r\nadversative\r\nadversatively\r\nadverse\r\nadversely\r\nadversities\r\nadversity\r\nadvert\r\nadverted\r\nadvertence\r\nadvertency\r\nadvertent\r\nadvertently\r\nadverting\r\nadvertise\r\nadvertised\r\nadvertisement\r\nadvertisements\r\nadvertisement's\r\nadvertiser\r\nadvertisers\r\nadvertises\r\nadvertising\r\nadverts\r\nadvice\r\nadvisability\r\nadvisable\r\nadvisableness\r\nadvisably\r\nadvise\r\nadvised\r\nadvisedly\r\nadvisee\r\nadvisees\r\nadvisee's\r\nadvisement\r\nadvisements\r\nadviser\r\nadvisers\r\nadviser's\r\nadvises\r\nadvising\r\nadvisor\r\nadvisors\r\nadvisor's\r\nadvisory\r\nadvocacy\r\nadvocate\r\nadvocated\r\nadvocates\r\nadvocating\r\nadvocator\r\nadytum\r\nadze\r\nadzuki\r\naegis\r\naeon\r\naeonian\r\naeons\r\naeon's\r\naerate\r\naerated\r\naerates\r\naerating\r\naeration\r\naerator\r\naerators\r\naerial\r\naerialist\r\naerially\r\naerials\r\naerial's\r\naerie\r\naero\r\naeroballistics\r\naerobatic\r\naerobatics\r\naerobe\r\naerobic\r\naerobically\r\naerobics\r\naerobiological\r\naerobiology\r\naerodonetics\r\naerodrome\r\naerodynamic\r\naerodynamically\r\naerodynamicist\r\naerodynamics\r\naerodyne\r\naeroembolism\r\naerofoil\r\naerogram\r\naerographer\r\naerologist\r\naeromagnetic\r\naeromechanic\r\naeromechanics\r\naeromedicine\r\naerometeorograph\r\naerometer\r\naerometry\r\naeronaut\r\naeronautic\r\naeronautical\r\naeronautically\r\naeronautics\r\naeroneurosis\r\naeropause\r\naerophobia\r\naeroplane\r\naeroplanes\r\naeroplane's\r\naerosol\r\naerosolise\r\naerosolised\r\naerosols\r\naerospace\r\naerosphere\r\naerostat\r\naerostatics\r\naerostation\r\naerothermodynamics\r\naesthesia\r\naesthesis\r\naesthete\r\naesthetes\r\naesthetic\r\naesthetical\r\naesthetically\r\naesthetician\r\naestheticism\r\naesthetics\r\naestival\r\naestivate\r\naestivation\r\naetiologies\r\naetiology\r\naetiology's\r\nafar\r\nafeard\r\naffability\r\naffable\r\naffably\r\naffair\r\naffaire\r\naffaires\r\naffairs\r\naffair's\r\naffect\r\naffectability\r\naffectation\r\naffectations\r\naffectation's\r\naffected\r\naffectedly\r\naffectedness\r\naffecter\r\naffecting\r\naffectingly\r\naffection\r\naffectionate\r\naffectionately\r\naffectionless\r\naffections\r\naffection's\r\naffective\r\naffectively\r\naffectivity\r\naffects\r\nafferent\r\naffiance\r\naffianced\r\naffiant\r\naffidavit\r\naffidavits\r\naffidavit's\r\naffiliate\r\naffiliated\r\naffiliates\r\naffiliating\r\naffiliation\r\naffiliations\r\naffine\r\naffined\r\naffinities\r\naffinity\r\naffinity's\r\naffirm\r\naffirmable\r\naffirmation\r\naffirmations\r\naffirmation's\r\naffirmative\r\naffirmatively\r\naffirmed\r\naffirming\r\naffirms\r\naffix\r\naffixation\r\naffixed\r\naffixes\r\naffixing\r\nafflatus\r\nafflict\r\nafflicted\r\nafflicting\r\naffliction\r\nafflictions\r\naffliction's\r\nafflictive\r\nafflictively\r\nafflicts\r\naffluence\r\naffluent\r\naffluently\r\nafflux\r\nafford\r\naffordable\r\nafforded\r\naffording\r\naffords\r\nafforest\r\naffray\r\naffricate\r\naffricates\r\naffrication\r\naffricative\r\naffright\r\naffront\r\naffronted\r\naffronting\r\naffronts\r\nafghan\r\nafghani\r\nafghans\r\naficionado\r\naficionados\r\nafire\r\naflame\r\nafloat\r\naflutter\r\nafoot\r\nafore\r\naforementioned\r\naforesaid\r\naforethought\r\nafoul\r\nafraid\r\nafresh\r\nafro\r\naft\r\nafter\r\nafterbirth\r\nafterburner\r\nafterburners\r\nafterburning\r\naftercare\r\nafterdamp\r\nafterdeck\r\nafterglow\r\nafterheat\r\nafterimage\r\nafterlife\r\naftermath\r\naftermost\r\nafternoon\r\nafternoons\r\nafternoon's\r\nafterpiece\r\nafters\r\naftershave\r\naftershock\r\naftershocks\r\naftershock's\r\naftertaste\r\nafterthought\r\nafterthoughts\r\naftertime\r\nafterward\r\nafterwards\r\naga\r\nagain\r\nagainst\r\nagape\r\nagar\r\nagate\r\nagates\r\nagateware\r\nage\r\naged\r\nagedly\r\nagedness\r\nageing\r\nageless\r\nagelessly\r\nagelessness\r\nagencies\r\nagency\r\nagency's\r\nagenda\r\nagendas\r\nagenda's\r\nagendum\r\nagene\r\nagenesis\r\nagenise\r\nagent\r\nagentive\r\nagents\r\nagent's\r\nages\r\naggie\r\nagglomerate\r\nagglomerated\r\nagglomerates\r\nagglomeration\r\nagglomerative\r\nagglutinate\r\nagglutinated\r\nagglutinates\r\nagglutinating\r\nagglutination\r\nagglutinative\r\nagglutinin\r\nagglutinins\r\naggrandise\r\naggrandised\r\naggrandisement\r\naggrandisements\r\naggrandisement's\r\naggrandiser\r\naggrandisers\r\naggrandises\r\naggrandising\r\naggravate\r\naggravated\r\naggravates\r\naggravating\r\naggravation\r\naggravations\r\naggregate\r\naggregated\r\naggregately\r\naggregates\r\naggregating\r\naggregation\r\naggregations\r\naggregative\r\naggress\r\naggression\r\naggressions\r\naggression's\r\naggressive\r\naggressively\r\naggressiveness\r\naggressor\r\naggressors\r\naggrieve\r\naggrieved\r\naggrievedly\r\naggrieves\r\naggrieving\r\naggro\r\naghast\r\nagile\r\nagilely\r\nagility\r\naging\r\nagitate\r\nagitated\r\nagitatedly\r\nagitates\r\nagitating\r\nagitation\r\nagitations\r\nagitator\r\nagitators\r\nagitator's\r\nagitprop\r\nagleam\r\naglet\r\nagley\r\naglitter\r\naglow\r\nagnail\r\nagnate\r\nagnatic\r\nagnation\r\nagnomen\r\nagnostic\r\nagnosticism\r\nagnostics\r\nagnostic's\r\nago\r\nagog\r\nagonic\r\nagonies\r\nagonise\r\nagonised\r\nagonises\r\nagonising\r\nagonisingly\r\nagonist\r\nagonistic\r\nagonistically\r\nagonists\r\nagony\r\nagora\r\nagoraphobia\r\nagoraphobic\r\nagouti\r\nagrarian\r\nagrarianism\r\nagree\r\nagreeability\r\nagreeable\r\nagreeableness\r\nagreeably\r\nagreed\r\nagreeing\r\nagreement\r\nagreements\r\nagreement's\r\nagrees\r\nagribusiness\r\nagricultural\r\nagriculturalist\r\nagriculturalists\r\nagriculturally\r\nagriculture\r\nagriculturist\r\nagrologic\r\nagrological\r\nagrology\r\nagronomic\r\nagronomical\r\nagronomics\r\nagronomist\r\nagronomy\r\naground\r\nague\r\naguish\r\naguishly\r\nah\r\naha\r\nahead\r\nahem\r\nahimsa\r\nahoy\r\naid\r\naide\r\naided\r\naides\r\naiding\r\naids\r\naigrette\r\naiguillette\r\naikido\r\nail\r\nailanthus\r\nailed\r\naileron\r\nailerons\r\nailing\r\nailment\r\nailments\r\nailment's\r\nails\r\nailurophile\r\nailurophobe\r\naim\r\naimed\r\naimer\r\naimers\r\naiming\r\naimless\r\naimlessly\r\naimlessness\r\naims\r\nain\r\nain't\r\nair\r\nairbag\r\nairbags\r\nairbag's\r\nairboat\r\nairborne\r\nairbrick\r\nairbrush\r\nairburst\r\nairbus\r\naircraft\r\naircraftman\r\naircrafts\r\naircrew\r\nairdrome\r\nairdrop\r\nairdrops\r\naired\r\nairfare\r\nairfield\r\nairfields\r\nairfield's\r\nairflow\r\nairframe\r\nairframes\r\nairframe's\r\nairfreight\r\nairglow\r\nairgun\r\nairhead\r\nairier\r\nairiest\r\nairily\r\nairiness\r\nairing\r\nairings\r\nairless\r\nairlessness\r\nairlift\r\nairlifts\r\nairlift's\r\nairline\r\nairliner\r\nairliners\r\nairliner's\r\nairlines\r\nairline's\r\nairlock\r\nairlocks\r\nairlock's\r\nairmail\r\nairmails\r\nairman\r\nairmanship\r\nairmen\r\nairmobile\r\nairpark\r\nairplay\r\nairport\r\nairports\r\nairport's\r\nairs\r\nairscrew\r\nairship\r\nairships\r\nairship's\r\nairsick\r\nairsickness\r\nairspace\r\nairspeed\r\nairspeeds\r\nairstrip\r\nairstrips\r\nairstrip's\r\nairtight\r\nairwave\r\nairwaves\r\nairway\r\nairways\r\nairway's\r\nairworthiness\r\nairworthy\r\nairy\r\naisle\r\naisles\r\naitch\r\naitchbone\r\najar\r\nakimbo\r\nakin\r\nala\r\nalabaster\r\nalack\r\nalacritous\r\nalacrity\r\nalai\r\nalamode\r\nalarm\r\nalarmed\r\nalarming\r\nalarmingly\r\nalarmism\r\nalarmist\r\nalarms\r\nalarum\r\nalary\r\nalas\r\nalb\r\nalba\r\nalbacore\r\nalbatross\r\nalbeit\r\nalbinism\r\nalbino\r\nalbum\r\nalbumen\r\nalbumenise\r\nalbumenised\r\nalbumenises\r\nalbumenising\r\nalbumin\r\nalbums\r\nalchemic\r\nalchemical\r\nalchemically\r\nalchemise\r\nalchemist\r\nalchemistic\r\nalchemistical\r\nalchemy\r\nalcidine\r\nalcohol\r\nalcoholic\r\nalcoholically\r\nalcoholicity\r\nalcoholics\r\nalcoholic's\r\nalcoholise\r\nalcoholises\r\nalcoholism\r\nalcoholisms\r\nalcoholometry\r\nalcohols\r\nalcohol's\r\nalcove\r\nalcoves\r\nalcove's\r\nalder\r\nalderman\r\naldermanic\r\nalderman's\r\naldermen\r\nale\r\nalee\r\nalehouse\r\nalembic\r\nalembicated\r\naleph\r\nalert\r\nalerted\r\nalerter\r\nalerting\r\nalertly\r\nalertness\r\nalerts\r\nalewife\r\nalexandrine\r\nalexandrite\r\nalexia\r\nalexipharmic\r\nalfalfa\r\nalfresco\r\nalga\r\nalgae\r\nalgaecide\r\nalgal\r\nalgarroba\r\nalgebra\r\nalgebraic\r\nalgebraically\r\nalgebraist\r\nalgebras\r\nalgebra's\r\nalgid\r\nalgidity\r\nalginate\r\nalginates\r\nalgoid\r\nalgorism\r\nalgorithm\r\nalgorithmic\r\nalgorithmically\r\nalgorithms\r\nalgorithm's\r\nalias\r\naliased\r\naliases\r\naliasing\r\nalibi\r\nalibis\r\nalibi's\r\nalidade\r\nalien\r\nalienability\r\nalienable\r\nalienate\r\nalienated\r\nalienates\r\nalienating\r\nalienation\r\nalienator\r\nalienist\r\naliens\r\nalien's\r\nalight\r\nalighted\r\nalighting\r\nalign\r\naligned\r\naligner\r\naligning\r\nalignment\r\nalignments\r\naligns\r\nalike\r\nalikeness\r\naliment\r\nalimentary\r\nalimentation\r\nalimentative\r\naliments\r\nalimony\r\naliped\r\naliphatic\r\naliquot\r\naliquots\r\naliquot's\r\nalit\r\nalive\r\naliveness\r\nalizarin\r\nalkahest\r\nalkali\r\nalkalify\r\nalkalimeter\r\nalkaline\r\nalkalinise\r\nalkalinises\r\nalkalinity\r\nalkalis\r\nalkali's\r\nalkalisation\r\nalkalise\r\nalkalised\r\nalkalises\r\nalkalising\r\nalkaloid\r\nalkaloids\r\nalkaloid's\r\nalkalosis\r\nalky\r\nalkyd\r\nalkyl\r\nall\r\nallargando\r\nallay\r\nallayed\r\nallaying\r\nallays\r\nallegation\r\nallegations\r\nallegation's\r\nallege\r\nalleged\r\nallegedly\r\nalleges\r\nallegiance\r\nallegiances\r\nallegiance's\r\nallegiant\r\nalleging\r\nallegoric\r\nallegorical\r\nallegorically\r\nallegories\r\nallegorise\r\nallegorised\r\nallegorises\r\nallegorising\r\nallegorist\r\nallegory\r\nallegory's\r\nallegretto\r\nallegrettos\r\nallegretto's\r\nallegro\r\nallegros\r\nallegro's\r\nallele\r\nalleles\r\nallelic\r\nalleluia\r\nallemande\r\nallergen\r\nallergenic\r\nallergic\r\nallergies\r\nallergist\r\nallergy\r\nallergy's\r\nalleviate\r\nalleviated\r\nalleviates\r\nalleviating\r\nalleviation\r\nalleviative\r\nalleviator\r\nalleviators\r\nalleviator's\r\nalleviatory\r\nalley\r\nalleys\r\nalley's\r\nalleyway\r\nalleyways\r\nalleyway's\r\nalliaceous\r\nalliance\r\nalliances\r\nalliance's\r\nallied\r\nallies\r\nalligator\r\nalligators\r\nalligator's\r\nalliterate\r\nalliterated\r\nalliterates\r\nalliterating\r\nalliteration\r\nalliterations\r\nalliteration's\r\nalliterative\r\nalliteratively\r\nallocable\r\nallocate\r\nallocated\r\nallocates\r\nallocating\r\nallocation\r\nallocations\r\nallocation's\r\nallocution\r\nallodium\r\nallograft\r\nallograph\r\nallomorph\r\nallomorphic\r\nallonym\r\nallopath\r\nallopathic\r\nallopathically\r\nallophone\r\nallophones\r\nallophonic\r\nallot\r\nallotment\r\nallotments\r\nallotment's\r\nallotransplant\r\nallotrope\r\nallotropic\r\nallotropically\r\nallotropy\r\nallots\r\nallotted\r\nallotter\r\nallotting\r\nallow\r\nallowable\r\nallowableness\r\nallowably\r\nallowance\r\nallowanced\r\nallowances\r\nallowance's\r\nallowancing\r\nallowed\r\nallowedly\r\nallowing\r\nallows\r\nalloy\r\nalloyed\r\nalloying\r\nalloys\r\nalloy's\r\nallseed\r\nallspice\r\nallude\r\nalluded\r\nalludes\r\nalluding\r\nallure\r\nallured\r\nallurement\r\nallures\r\nalluring\r\nallusion\r\nallusions\r\nallusion's\r\nallusive\r\nallusively\r\nallusiveness\r\nalluvial\r\nalluvium\r\nally\r\nallying\r\nalma\r\nalmagest\r\nalmanac\r\nalmanacs\r\nalmanac's\r\nalmandine\r\nalmightiness\r\nalmighty\r\nalmond\r\nalmonds\r\nalmond's\r\nalmoner\r\nalmonry\r\nalmost\r\nalms\r\nalmsgiver\r\nalmsgiving\r\nalmshouse\r\nalmshouses\r\nalmsman\r\nalnico\r\naloe\r\naloes\r\naloft\r\naloha\r\nalone\r\naloneness\r\nalong\r\nalongshore\r\nalongside\r\naloof\r\naloofly\r\naloofness\r\nalopecia\r\naloud\r\nalp\r\nalpaca\r\nalpenglow\r\nalpenhorn\r\nalpenstock\r\nalpha\r\nalphabet\r\nalphabetic\r\nalphabetical\r\nalphabetically\r\nalphabetisation\r\nalphabetisations\r\nalphabetisation's\r\nalphabetise\r\nalphabetised\r\nalphabetiser\r\nalphabetisers\r\nalphabetises\r\nalphabetising\r\nalphabets\r\nalphabet's\r\nalphanumeric\r\nalphanumerical\r\nalphanumerically\r\nalphorn\r\nalpine\r\nalpinism\r\nalpinist\r\nalps\r\nalready\r\nalright\r\nalsike\r\nalso\r\nalt\r\naltar\r\naltarpiece\r\naltars\r\naltar's\r\nalter\r\nalterability\r\nalterable\r\nalterably\r\nalteration\r\nalterations\r\nalteration's\r\nalterative\r\naltercate\r\naltercation\r\naltercations\r\naltercation's\r\naltered\r\naltering\r\nalternant\r\nalternate\r\nalternated\r\nalternately\r\nalternates\r\nalternating\r\nalternation\r\nalternations\r\nalternative\r\nalternatively\r\nalternativeness\r\nalternatives\r\nalternator\r\nalternators\r\nalternator's\r\nalters\r\nalthea\r\nalthorn\r\nalthough\r\naltimeter\r\naltimeters\r\naltimeter's\r\naltimetry\r\naltissimo\r\naltitude\r\naltitudes\r\naltitudinal\r\naltitudinous\r\nalto\r\naltocumulus\r\naltogether\r\naltos\r\nalto's\r\naltostratus\r\naltruism\r\naltruist\r\naltruistic\r\naltruistically\r\naltruists\r\nalum\r\nalumina\r\naluminiferous\r\naluminise\r\naluminised\r\naluminises\r\naluminising\r\naluminium\r\naluminium's\r\naluminothermy\r\naluminous\r\nalumna\r\nalumnae\r\nalumna's\r\nalumni\r\nalumnus\r\nalumroot\r\nalveolar\r\nalveoli\r\nalveolus\r\nalways\r\nalyssum\r\nam\r\namah\r\namalgam\r\namalgamate\r\namalgamated\r\namalgamates\r\namalgamating\r\namalgamation\r\namalgamations\r\namalgamative\r\namalgamator\r\namalgams\r\namalgam's\r\namanita\r\namanuenses\r\namanuensis\r\namaranth\r\namaranthaceous\r\namaranthine\r\namarelle\r\namaryllidaceous\r\namass\r\namassed\r\namasser\r\namasses\r\namassing\r\namassment\r\namateur\r\namateurish\r\namateurishly\r\namateurishness\r\namateurism\r\namateurs\r\namateur's\r\namative\r\namatively\r\namativeness\r\namatol\r\namatory\r\namaze\r\namazed\r\namazedly\r\namazement\r\namazes\r\namazing\r\namazingly\r\namazonite\r\namazons\r\nambary\r\nambassador\r\nambassadorial\r\nambassadors\r\nambassador's\r\nambassadorship\r\nambassadress\r\namber\r\nambergris\r\namberjack\r\namberoid\r\nambiance\r\nambiances\r\nambidexterity\r\nambidextrous\r\nambidextrously\r\nambience\r\nambiences\r\nambient\r\nambiguities\r\nambiguity\r\nambiguity's\r\nambiguous\r\nambiguously\r\nambiguousness\r\nambit\r\nambition\r\nambitionless\r\nambitions\r\nambition's\r\nambitious\r\nambitiously\r\nambitiousness\r\nambivalence\r\nambivalent\r\nambivalently\r\namble\r\nambled\r\nambler\r\nambles\r\nambling\r\namblygonite\r\nambo\r\nambrosia\r\nambrosial\r\nambrosially\r\nambry\r\nambulance\r\nambulances\r\nambulance's\r\nambulant\r\nambulate\r\nambulation\r\nambulatory\r\nambuscade\r\nambuscader\r\nambush\r\nambushed\r\nambusher\r\nambushes\r\nameliorate\r\nameliorated\r\nameliorating\r\namelioration\r\nameliorative\r\nameliorator\r\namen\r\namenabilities\r\namenability\r\namenable\r\namenably\r\namend\r\namendable\r\namendatory\r\namended\r\namender\r\namending\r\namendment\r\namendments\r\namendment's\r\namends\r\namenities\r\namenity\r\namenorrhoea\r\namentia\r\namerce\r\namercing\r\namericium\r\namethyst\r\namethystine\r\namiability\r\namiable\r\namiableness\r\namiably\r\namicability\r\namicable\r\namicableness\r\namicably\r\namice\r\namicus\r\namid\r\namide\r\namidships\r\namidst\r\namigo\r\namine\r\namino\r\naminophenol\r\namiss\r\namitosis\r\namitotic\r\namity\r\nammeter\r\nammeters\r\nammeter's\r\nammine\r\nammo\r\nammonal\r\nammonia\r\nammoniac\r\nammonias\r\nammoniate\r\nammonic\r\nammonite\r\nammonites\r\nammonium\r\nammunition\r\nammunitions\r\namnesia\r\namnesiac\r\namnesic\r\namnesty\r\namniocentesis\r\namnion\r\namniotic\r\namoeba\r\namoebae\r\namoebaean\r\namoebas\r\namoeba's\r\namoebic\r\namoeboid\r\namok\r\namong\r\namongst\r\namontillado\r\namoral\r\namorality\r\namorally\r\namoretto\r\namorist\r\namorists\r\namorist's\r\namoroso\r\namorous\r\namorously\r\namorousness\r\namorphous\r\namorphously\r\namorphousness\r\namortisable\r\namortisation\r\namortisation's\r\namortise\r\namortised\r\namortisement\r\namortisements\r\namortisement's\r\namortises\r\namortising\r\namount\r\namounted\r\namounting\r\namounts\r\namour\r\namours\r\namour's\r\namp\r\namperage\r\namperages\r\nampere\r\namperes\r\nampersand\r\nampersands\r\nampersand's\r\namphetamine\r\namphetamines\r\namphibian\r\namphibians\r\namphibian's\r\namphibiotic\r\namphibious\r\namphibiously\r\namphibiousness\r\namphibole\r\namphibology\r\namphibrach\r\namphichroic\r\namphigory\r\namphimacer\r\namphioxus\r\namphipod\r\namphiprostyle\r\namphisbaena\r\namphitheatre\r\namphitheatres\r\namphitheatre's\r\namphitheatric\r\namphitheatrically\r\namphitricha\r\namphora\r\nample\r\nampleness\r\nampler\r\namplest\r\namplification\r\namplifications\r\namplified\r\namplifier\r\namplifiers\r\namplifies\r\namplify\r\namplifying\r\namplitude\r\namplitudes\r\namplitude's\r\namply\r\nampoule\r\nampoules\r\nampoule's\r\namps\r\namputate\r\namputated\r\namputates\r\namputating\r\namputation\r\namputee\r\namrita\r\namuck\r\namulet\r\namulets\r\namuse\r\namused\r\namusedly\r\namusement\r\namusements\r\namusement's\r\namuser\r\namusers\r\namuses\r\namusing\r\namusingly\r\namusingness\r\namygdalate\r\namygdale\r\namygdaline\r\namygdaloidal\r\namyl\r\namylase\r\namylopsin\r\nan\r\nanabantid\r\nanabasis\r\nanabatic\r\nanabolic\r\nanabolism\r\nanabranch\r\nanacardiaceous\r\nanachronism\r\nanachronisms\r\nanachronism's\r\nanachronistic\r\nanachronistically\r\nanachronous\r\nanachronously\r\nanacoluthia\r\nanacoluthic\r\nanacoluthon\r\nanaconda\r\nanacondas\r\nanacrusis\r\nanadiplosis\r\nanaemia\r\nanaemia's\r\nanaemic\r\nanaemically\r\nanaerobe\r\nanaerobic\r\nanaesthesia\r\nanaesthesias\r\nanaesthesia's\r\nanaesthesiologist\r\nanaesthesiology\r\nanaesthetic\r\nanaesthetically\r\nanaesthetics\r\nanaesthetic's\r\nanaesthetisation\r\nanaesthetisations\r\nanaesthetisation's\r\nanaesthetise\r\nanaesthetised\r\nanaesthetises\r\nanaesthetising\r\nanaesthetist\r\nanaesthetization\r\nanaesthetizations\r\nanaesthetization's\r\nanaglyph\r\nanaglyphic\r\nanagram\r\nanagrammatic\r\nanagrammatically\r\nanagrammatise\r\nanagrams\r\nanagram's\r\nanal\r\nanalects\r\nanaleptic\r\nanalgesia\r\nanalgesic\r\nanalogical\r\nanalogically\r\nanalogies\r\nanalogise\r\nanalogises\r\nanalogist\r\nanalogous\r\nanalogously\r\nanalogousness\r\nanalogue\r\nanalogues\r\nanalogue's\r\nanalogy\r\nanalogy's\r\nanalphabetic\r\nanalysable\r\nanalyse\r\nanalysed\r\nanalyser\r\nanalysers\r\nanalyses\r\nanalysing\r\nanalysis\r\nanalyst\r\nanalysts\r\nanalyst's\r\nanalytic\r\nanalytical\r\nanalytically\r\nanalyticities\r\nanalyticity\r\nanalytics\r\nanamnesis\r\nanamorphoscope\r\nanapaest\r\nanaphase\r\nanaphora\r\nanaphoric\r\nanaphylaxis\r\nanarchic\r\nanarchical\r\nanarchise\r\nanarchises\r\nanarchism\r\nanarchist\r\nanarchistic\r\nanarchists\r\nanarchist's\r\nanarchy\r\nanastigmatic\r\nanastrophe\r\nanathema\r\nanathematisation\r\nanathematise\r\nanathematised\r\nanathematises\r\nanathematising\r\nanatomic\r\nanatomical\r\nanatomically\r\nanatomise\r\nanatomist\r\nanatomy\r\nanatropous\r\nancestor\r\nancestors\r\nancestor's\r\nancestral\r\nancestrally\r\nancestress\r\nancestry\r\nanchor\r\nanchorage\r\nanchorages\r\nanchorage's\r\nanchored\r\nanchoress\r\nanchoret\r\nanchoring\r\nanchorite\r\nanchoritic\r\nanchorless\r\nanchorman\r\nanchors\r\nanchovies\r\nanchovy\r\nancient\r\nanciently\r\nancientness\r\nancients\r\nancillaries\r\nancillary\r\nancon\r\nand\r\nandante\r\nandantino\r\nandesine\r\nandiron\r\nandradite\r\nandrogen\r\nandrogenic\r\nandrogynous\r\nandrogyny\r\nandroid\r\nandrosphinx\r\nands\r\nanecdotage\r\nanecdotal\r\nanecdotally\r\nanecdote\r\nanecdotes\r\nanecdote's\r\nanecdotic\r\nanecdotist\r\nanechoic\r\nanemograph\r\nanemographic\r\nanemography\r\nanemology\r\nanemometer\r\nanemometers\r\nanemometer's\r\nanemometric\r\nanemometrical\r\nanemometry\r\nanemone\r\nanemoscope\r\nanent\r\naneroid\r\naneurism\r\naneurysm\r\nanew\r\nanfractuous\r\nangel\r\nangelfish\r\nangelic\r\nangelical\r\nangelically\r\nangelology\r\nangels\r\nangel's\r\nanger\r\nangered\r\nangering\r\nangers\r\nangina\r\nangiography\r\nangiosperm\r\nangle\r\nangled\r\nangler\r\nanglers\r\nangles\r\nanglesite\r\nangleworm\r\nanglicise\r\nanglicised\r\nanglicises\r\nangling\r\nangora\r\nangostura\r\nangrier\r\nangriest\r\nangrily\r\nangriness\r\nangry\r\nangst\r\nangstrom\r\nangstroms\r\nanguish\r\nanguished\r\nangular\r\nangularity\r\nangularly\r\nanhinga\r\nanhydride\r\nanhydrite\r\nanhydrous\r\nanhydrously\r\nanile\r\naniline\r\nanima\r\nanimadversion\r\nanimadvert\r\nanimal\r\nanimalcular\r\nanimalcule\r\nanimalisation\r\nanimalise\r\nanimalised\r\nanimalises\r\nanimalising\r\nanimalism\r\nanimalist\r\nanimalistic\r\nanimally\r\nanimals\r\nanimal's\r\nanimate\r\nanimated\r\nanimatedly\r\nanimates\r\nanimating\r\nanimation\r\nanimations\r\nanimato\r\nanimator\r\nanimators\r\nanimator's\r\nanimism\r\nanimist\r\nanimistic\r\nanimosity\r\nanimus\r\nanion\r\nanionic\r\nanions\r\nanion's\r\nanise\r\naniseed\r\nanisette\r\nanisole\r\nanisotropic\r\nanisotropies\r\nanisotropy\r\nanisotropy's\r\nankh\r\nankle\r\nanklebone\r\nanklebones\r\nankles\r\nankle's\r\nanklet\r\nannals\r\nannatto\r\nanneal\r\nannealed\r\nannealing\r\nanneals\r\nannelid\r\nannex\r\nannexation\r\nannexationist\r\nannexations\r\nannexe\r\nannexed\r\nannexes\r\nannexing\r\nannihilate\r\nannihilated\r\nannihilates\r\nannihilating\r\nannihilation\r\nannihilator\r\nanniversaries\r\nanniversary\r\nanniversary's\r\nannotate\r\nannotated\r\nannotates\r\nannotating\r\nannotation\r\nannotations\r\nannotative\r\nannotator\r\nannotators\r\nannounce\r\nannounced\r\nannouncement\r\nannouncements\r\nannouncement's\r\nannouncer\r\nannouncers\r\nannounces\r\nannouncing\r\nannoy\r\nannoyance\r\nannoyances\r\nannoyance's\r\nannoyed\r\nannoyer\r\nannoyers\r\nannoying\r\nannoyingly\r\nannoys\r\nannual\r\nannualise\r\nannualised\r\nannualises\r\nannualising\r\nannually\r\nannuals\r\nannuitant\r\nannuities\r\nannuity\r\nannul\r\nannular\r\nannularity\r\nannularly\r\nannulated\r\nannulet\r\nannuli\r\nannulled\r\nannulling\r\nannulment\r\nannulments\r\nannulment's\r\nannuls\r\nannulus\r\nannum\r\nannunciate\r\nannunciates\r\nannunciating\r\nannunciation\r\nanodal\r\nanode\r\nanodes\r\nanode's\r\nanodic\r\nanodise\r\nanodised\r\nanodises\r\nanodising\r\nanodyne\r\nanoestrus\r\nanoint\r\nanointed\r\nanointer\r\nanointing\r\nanointment\r\nanoints\r\nanole\r\nanomalies\r\nanomalistic\r\nanomalous\r\nanomalously\r\nanomalousness\r\nanomaly\r\nanomaly's\r\nanomic\r\nanomie\r\nanon\r\nanonym\r\nanonymity\r\nanonymous\r\nanonymously\r\nanonymousness\r\nanorak\r\nanorectic\r\nanorexia\r\nanorthic\r\nanother\r\nanother's\r\nanoxia\r\nanoxic\r\nanserine\r\nanswer\r\nanswerable\r\nanswered\r\nanswerer\r\nanswerers\r\nanswering\r\nanswers\r\nant\r\nantacid\r\nantagonise\r\nantagonised\r\nantagonises\r\nantagonising\r\nantagonism\r\nantagonisms\r\nantagonist\r\nantagonistic\r\nantagonistically\r\nantagonists\r\nantagonist's\r\nante\r\nanteater\r\nanteaters\r\nanteater's\r\nantebellum\r\nantecedence\r\nantecedent\r\nantecedents\r\nantecedent's\r\nantechamber\r\nantechambers\r\nantechoir\r\nanted\r\nantedate\r\nantedated\r\nantedates\r\nantedating\r\nantediluvian\r\nantefix\r\nantefixal\r\nanteing\r\nantelope\r\nantelopes\r\nantelope's\r\nantemeridian\r\nantenatal\r\nantenna\r\nantennae\r\nantennal\r\nantennas\r\nantenna's\r\nantependium\r\nantepenultimate\r\nanterior\r\nanteroom\r\nanterooms\r\nanthem\r\nanthemion\r\nanthems\r\nanthem's\r\nanther\r\nanthill\r\nanthologies\r\nanthologise\r\nanthologised\r\nanthologises\r\nanthologising\r\nanthologist\r\nanthology\r\nanthracite\r\nanthracitic\r\nanthracnose\r\nanthrax\r\nanthrop\r\nanthropocentric\r\nanthropocentrically\r\nanthropocentricity\r\nanthropogenesis\r\nanthropogenic\r\nanthropography\r\nanthropoid\r\nanthropological\r\nanthropologically\r\nanthropologist\r\nanthropologists\r\nanthropologist's\r\nanthropology\r\nanthropometric\r\nanthropometrical\r\nanthropometrically\r\nanthropometrics\r\nanthropometry\r\nanthropomorphic\r\nanthropomorphically\r\nanthropomorphise\r\nanthropomorphised\r\nanthropomorphises\r\nanthropomorphising\r\nanthropomorphism\r\nanthropomorphist\r\nanthropomorphosis\r\nanthropopathy\r\nanthropophagi\r\nanthropophagite\r\nanthropophagous\r\nanthropophagus\r\nanthroposophy\r\nanti\r\nantiaircraft\r\nantibacterial\r\nantibiosis\r\nantibiotic\r\nantibiotics\r\nantibodies\r\nantibody\r\nantic\r\nanticancer\r\nanticathode\r\nantichlor\r\nantichrist\r\nanticipant\r\nanticipants\r\nanticipatable\r\nanticipate\r\nanticipated\r\nanticipates\r\nanticipating\r\nanticipation\r\nanticipations\r\nanticipative\r\nanticipatively\r\nanticipator\r\nanticipatory\r\nanticlastic\r\nanticlerical\r\nanticlericalism\r\nanticlimactic\r\nanticlimactically\r\nanticlimax\r\nanticlimaxes\r\nanticline\r\nanticlockwise\r\nanticoagulant\r\nanticoagulation\r\nanticompetitive\r\nanticonvulsant\r\nanticonvulsive\r\nantics\r\nantic's\r\nanticyclone\r\nanticyclones\r\nantidepressant\r\nantidisestablishmentarianism\r\nantidote\r\nantidotes\r\nantidote's\r\nantiestablishment\r\nantifouling\r\nantifreeze\r\nantifriction\r\nantifundamentalist\r\nantifungal\r\nantigen\r\nantigenic\r\nantigens\r\nantigen's\r\nantigravity\r\nantihelices\r\nantihero\r\nantiheros\r\nantihistamine\r\nantihistaminic\r\nantihypertensive\r\nantiknock\r\nantilitter\r\nantilog\r\nantilogarithm\r\nantilogarithms\r\nantilogism\r\nantimacassar\r\nantimacassars\r\nantimagnetic\r\nantimasque\r\nantimatter\r\nantimatter's\r\nantimicrobial\r\nantimilitarist\r\nantimilitarists\r\nantimissile\r\nantimissiles\r\nantineutrino\r\nantineutron\r\nantinomian\r\nantinomy\r\nantinovel\r\nantioxidant\r\nantiparticle\r\nantipasto\r\nantipathetic\r\nantipathetically\r\nantipathy\r\nantipersonnel\r\nantiperspirant\r\nantiphon\r\nantiphonal\r\nantiphonally\r\nantiphonary\r\nantiphony\r\nantiphrasis\r\nantipodal\r\nantipode\r\nantipodes\r\nantipode's\r\nantipoetic\r\nantipollution\r\nantipope\r\nantiproton\r\nantipyretic\r\nantiquarian\r\nantiquarianism\r\nantiquarians\r\nantiquarian's\r\nantiquary\r\nantiquate\r\nantiquated\r\nantiquation\r\nantique\r\nantiques\r\nantique's\r\nantiquities\r\nantiquity\r\nantirrhinum\r\nantisepsis\r\nantiseptic\r\nantiseptically\r\nantisepticise\r\nantisepticises\r\nantiserum\r\nantislavery\r\nantisocial\r\nantispasmodic\r\nantistatic\r\nantistrophe\r\nantistrophic\r\nantisubmarine\r\nantitank\r\nantithesis\r\nantithetic\r\nantithetical\r\nantithetically\r\nantitoxic\r\nantitoxin\r\nantitoxins\r\nantitoxin's\r\nantitrades\r\nantitrust\r\nantitype\r\nantivenin\r\nantiviral\r\nantler\r\nantlered\r\nantonomasia\r\nantonym\r\nantonymic\r\nantonymous\r\nantonyms\r\nants\r\nant's\r\nanuran\r\nanus\r\nanvil\r\nanvils\r\nanvil's\r\nanxieties\r\nanxiety\r\nanxious\r\nanxiously\r\nanxiousness\r\nany\r\nanybodies\r\nanybody\r\nanyhow\r\nanymore\r\nanyone\r\nanyone's\r\nanyplace\r\nanything\r\nanytime\r\nanyway\r\nanyways\r\nanywhere\r\nanywise\r\naorta\r\naortal\r\naortic\r\naoudad\r\napace\r\napache\r\napaches\r\napagoge\r\napart\r\napartheid\r\napartment\r\napartments\r\napartment's\r\napartness\r\napathetic\r\napathetically\r\napathy\r\napatite\r\nape\r\naped\r\napelike\r\naperitif\r\naperture\r\napery\r\napes\r\napex\r\napexes\r\naphaeresis\r\naphaeretic\r\naphasia\r\naphasiac\r\naphasic\r\naphelion\r\napheliotropic\r\naphesis\r\naphetic\r\naphetically\r\naphid\r\naphides\r\naphids\r\naphid's\r\naphonic\r\naphorise\r\naphorised\r\naphorises\r\naphorising\r\naphorism\r\naphorisms\r\naphorism's\r\naphorist\r\naphoristic\r\naphoristically\r\naphrodisiac\r\naphrodisiacal\r\naphylly\r\napian\r\napiarian\r\napiaries\r\napiarist\r\napiary\r\napical\r\napices\r\napicultural\r\napiculture\r\napiculturist\r\napiece\r\naping\r\napish\r\napishly\r\napishness\r\napivorous\r\naplenty\r\naplomb\r\napnoea\r\napocalypse\r\napocalyptic\r\napocalyptical\r\napocalyptically\r\napocopate\r\napocrypha\r\napocryphal\r\napocryphally\r\napocryphalness\r\napocynthion\r\napodictic\r\napodictically\r\napodosis\r\napogamic\r\napogee\r\napogees\r\napolitical\r\napolitically\r\napologetic\r\napologetically\r\napologetics\r\napologia\r\napologies\r\napologise\r\napologised\r\napologiser\r\napologisers\r\napologises\r\napologising\r\napologist\r\napologists\r\napologist's\r\napologue\r\napology\r\napology's\r\napophasis\r\napophthegm\r\napophyge\r\napoplectic\r\napoplectically\r\napoplexy\r\naposiopesis\r\napostasy\r\napostate\r\napostates\r\napostatise\r\napostatised\r\napostatises\r\napostatising\r\napostil\r\napostle\r\napostles\r\napostle's\r\napostleship\r\napostolate\r\napostolic\r\napostolicity\r\napostrophe\r\napostrophes\r\napostrophic\r\napostrophise\r\napostrophised\r\napostrophises\r\napostrophising\r\napothecary\r\napothecial\r\napothegm\r\napothegmatic\r\napothegmatical\r\napothem\r\napotheoses\r\napotheosis\r\napotheosise\r\nappal\r\nappalled\r\nappalling\r\nappallingly\r\nappaloosa\r\nappaloosas\r\nappals\r\napparatus\r\napparatuses\r\napparel\r\napparelled\r\napparelling\r\napparels\r\napparent\r\napparently\r\napparentness\r\napparition\r\napparitional\r\napparitions\r\napparition's\r\nappassionato\r\nappeal\r\nappealed\r\nappealer\r\nappealers\r\nappealing\r\nappealingly\r\nappeals\r\nappear\r\nappearance\r\nappearances\r\nappeared\r\nappearing\r\nappears\r\nappease\r\nappeased\r\nappeasement\r\nappeaser\r\nappeases\r\nappeasing\r\nappellant\r\nappellants\r\nappellant's\r\nappellate\r\nappellation\r\nappellative\r\nappellatively\r\nappend\r\nappendage\r\nappendages\r\nappendage's\r\nappendectomy\r\nappended\r\nappendices\r\nappendicitis\r\nappendicle\r\nappending\r\nappendix\r\nappendixes\r\nappendix's\r\nappends\r\napperceive\r\napperception\r\nappertain\r\nappertained\r\nappertaining\r\nappertains\r\nappestat\r\nappetence\r\nappetency\r\nappetent\r\nappetiser\r\nappetisers\r\nappetising\r\nappetisingly\r\nappetite\r\nappetites\r\nappetite's\r\nappetitive\r\napplaud\r\napplauded\r\napplauder\r\napplauding\r\napplauds\r\napplause\r\napple\r\napplecart\r\napplejack\r\napples\r\napple's\r\napplesauce\r\nappliance\r\nappliances\r\nappliance's\r\napplicability\r\napplicable\r\napplicant\r\napplicants\r\napplicant's\r\napplication\r\napplications\r\napplication's\r\napplicative\r\napplicator\r\napplicators\r\napplicator's\r\napplicatory\r\napplied\r\napplier\r\nappliers\r\napplies\r\nappliqué\r\napply\r\napplying\r\nappoint\r\nappointed\r\nappointee\r\nappointees\r\nappointee's\r\nappointer\r\nappointers\r\nappointing\r\nappointive\r\nappointment\r\nappointments\r\nappointment's\r\nappoints\r\napportion\r\napportioned\r\napportioning\r\napportionment\r\napportionments\r\napportions\r\nappose\r\napposed\r\napposing\r\napposite\r\nappositely\r\nappositeness\r\napposition\r\nappositional\r\nappositionally\r\nappositive\r\nappositively\r\nappraisal\r\nappraisals\r\nappraisal's\r\nappraise\r\nappraised\r\nappraisement\r\nappraiser\r\nappraisers\r\nappraises\r\nappraising\r\nappraisingly\r\nappreciable\r\nappreciably\r\nappreciate\r\nappreciated\r\nappreciates\r\nappreciating\r\nappreciation\r\nappreciations\r\nappreciative\r\nappreciatively\r\nappreciator\r\nappreciatory\r\napprehend\r\napprehended\r\napprehender\r\napprehending\r\napprehends\r\napprehensible\r\napprehension\r\napprehensions\r\napprehension's\r\napprehensive\r\napprehensively\r\napprehensiveness\r\napprentice\r\napprenticed\r\napprentices\r\napprenticeship\r\napprenticeships\r\napprise\r\napprised\r\napprises\r\napprising\r\napproach\r\napproachability\r\napproachable\r\napproached\r\napproaches\r\napproaching\r\napprobate\r\napprobation\r\napprobatory\r\nappropriable\r\nappropriate\r\nappropriated\r\nappropriately\r\nappropriateness\r\nappropriates\r\nappropriating\r\nappropriation\r\nappropriations\r\nappropriative\r\nappropriator\r\nappropriators\r\nappropriator's\r\napprovable\r\napproval\r\napprovals\r\napproval's\r\napprove\r\napproved\r\napprover\r\napprovers\r\napproves\r\napproving\r\napprovingly\r\napprox\r\napproximant\r\napproximate\r\napproximated\r\napproximately\r\napproximates\r\napproximating\r\napproximation\r\napproximations\r\nappurtenance\r\nappurtenances\r\nappurtenant\r\napricot\r\napricots\r\napricot's\r\napriority\r\napron\r\naprons\r\napron's\r\napropos\r\napse\r\napses\r\napsidal\r\napt\r\napteral\r\napterygial\r\napteryx\r\naptitude\r\naptitudes\r\naptly\r\naptness\r\naqua\r\naquacade\r\naquaculture\r\naqualung\r\naquamarine\r\naquanaut\r\naquaplane\r\naquarelle\r\naquarellist\r\naquaria\r\naquarist\r\naquarium\r\naquatic\r\naquatically\r\naquatics\r\naquatint\r\naquatinter\r\naquavit\r\naqueduct\r\naqueducts\r\naqueduct's\r\naqueous\r\naquiculture\r\naquifer\r\naquifers\r\naquilegia\r\naquiline\r\naquiver\r\narabesque\r\narability\r\narable\r\narachnid\r\narachnids\r\narachnid's\r\naragonite\r\naraldite\r\naraliaceous\r\narapaima\r\narbalest\r\narbiter\r\narbiters\r\narbiter's\r\narbitrage\r\narbitrager\r\narbitrageur\r\narbitral\r\narbitrarily\r\narbitrariness\r\narbitrary\r\narbitrate\r\narbitrated\r\narbitrates\r\narbitrating\r\narbitration\r\narbitrational\r\narbitrative\r\narbitrator\r\narbitrators\r\narbitrator's\r\narbitress\r\narboreal\r\narborescence\r\narboretum\r\narboriculture\r\narborisation\r\narborvitae\r\narbour\r\narbours\r\narbour's\r\narbutus\r\narc\r\narcade\r\narcaded\r\narcades\r\narcade's\r\narcading\r\narcane\r\narccosine\r\narced\r\narch\r\narchaeological\r\narchaeologically\r\narchaeologist\r\narchaeologists\r\narchaeologist's\r\narchaeology\r\narchaic\r\narchaically\r\narchaise\r\narchaised\r\narchaiser\r\narchaisers\r\narchaises\r\narchaising\r\narchaism\r\narchaist\r\narchaistic\r\narchangel\r\narchangelic\r\narchangels\r\narchangel's\r\narchbishop\r\narchbishopric\r\narchdeacon\r\narchdeaconate\r\narchdeaconry\r\narchdiocesan\r\narchdiocese\r\narchdioceses\r\narchducal\r\narchduchess\r\narchduchy\r\narchduke\r\narchdukedom\r\narched\r\narchenemy\r\narchenteron\r\narcher\r\narcherfish\r\narchers\r\narchery\r\narches\r\narchetypal\r\narchetype\r\narchetypes\r\narchetypical\r\narchetypically\r\narchfiend\r\narchidiaconal\r\narchidiaconate\r\narchiepiscopal\r\narchiepiscopate\r\narchimandrite\r\narching\r\narchipelagic\r\narchipelago\r\narchiphoneme\r\narchitect\r\narchitectonic\r\narchitectonically\r\narchitectonics\r\narchitects\r\narchitect's\r\narchitectural\r\narchitecturally\r\narchitecture\r\narchitectures\r\narchitecture's\r\narchitrave\r\narchival\r\narchive\r\narchived\r\narchives\r\narchiving\r\narchivist\r\narchivists\r\narchivolt\r\narchly\r\narchon\r\narchpriest\r\narchway\r\narcing\r\narcograph\r\narcs\r\narcsine\r\narctangent\r\narctic\r\nardency\r\nardent\r\nardently\r\nardour\r\nardour's\r\narduous\r\narduously\r\narduousness\r\nare\r\narea\r\nareas\r\narea's\r\nareaway\r\narena\r\narenas\r\narena's\r\naren't\r\nareola\r\nareolation\r\nareole\r\nargali\r\nargand\r\nargent\r\nargentine\r\nargentite\r\nargentous\r\nargil\r\nargillaceous\r\nargilliferous\r\nargillite\r\nargon\r\nargot\r\narguable\r\narguably\r\nargue\r\nargued\r\narguer\r\narguers\r\nargues\r\nargufy\r\narguing\r\nargument\r\nargumentation\r\nargumentative\r\nargumentatively\r\narguments\r\nargument's\r\nargumentum\r\nargyle\r\naria\r\narid\r\naridity\r\naridness\r\narietta\r\naright\r\naril\r\narioso\r\narise\r\narisen\r\narises\r\narising\r\naristocracy\r\naristocrat\r\naristocratic\r\naristocratically\r\naristocrats\r\naristocrat's\r\narithmetic\r\narithmetical\r\narithmetically\r\narithmetician\r\nark\r\narm\r\narmada\r\narmadillo\r\narmadillos\r\narmament\r\narmamentarium\r\narmaments\r\narmament's\r\narmature\r\narmatures\r\narmband\r\narmchair\r\narmchairs\r\narmchair's\r\narmed\r\narmful\r\narmfuls\r\narmhole\r\narmies\r\narmiger\r\narmillary\r\narming\r\narmistice\r\narmless\r\narmlet\r\narmload\r\narmoire\r\narmorial\r\narmour\r\narmoured\r\narmourer\r\narmourers\r\narmourer's\r\narmouries\r\narmouring\r\narmours\r\narmour's\r\narmoury\r\narmoury's\r\narmpit\r\narmpits\r\narmpit's\r\narmrest\r\narms\r\narm's\r\narmy\r\narmy's\r\narnica\r\naroid\r\naroma\r\naromas\r\naromatic\r\naromatically\r\naromatisation\r\naromatise\r\naromatised\r\naromatises\r\naromatising\r\narose\r\naround\r\narousal\r\narouse\r\naroused\r\narouses\r\narousing\r\narpeggio\r\narpeggios\r\narpeggio's\r\narrack\r\narraign\r\narraigned\r\narraigning\r\narraignment\r\narraignments\r\narraignment's\r\narraigns\r\narrange\r\narranged\r\narrangement\r\narrangements\r\narrangement's\r\narranger\r\narrangers\r\narranges\r\narranging\r\narrant\r\narrantly\r\narras\r\narray\r\narrayed\r\narraying\r\narrays\r\narrear\r\narrearage\r\narrears\r\narrest\r\narrestable\r\narrested\r\narrestee\r\narrestees\r\narrestee's\r\narrester\r\narresters\r\narresting\r\narrestingly\r\narrestment\r\narrestor\r\narrestors\r\narrestor's\r\narrests\r\narrhythmia\r\narrhythmic\r\narrival\r\narrivals\r\narrival's\r\narrive\r\narrived\r\narrives\r\narriving\r\narrivisme\r\narriviste\r\narroba\r\narrogance\r\narrogant\r\narrogantly\r\narrogate\r\narrogated\r\narrogates\r\narrogating\r\narrogation\r\narrondissement\r\narrow\r\narrowed\r\narrowhead\r\narrowheads\r\narrowhead's\r\narrowroot\r\narrows\r\narroyo\r\narroyos\r\narse\r\narsehole\r\narseholes\r\narsehole's\r\narsenal\r\narsenals\r\narsenal's\r\narsenate\r\narsenic\r\narsenical\r\narsenide\r\narsine\r\narsines\r\narsis\r\narson\r\narsonist\r\nart\r\narte\r\nartefact\r\nartefacts\r\narterial\r\narterialisation\r\narterialisations\r\narterialisation's\r\narterialise\r\narterialised\r\narterialises\r\narterialising\r\narterially\r\narteries\r\narteriogram\r\narteriolar\r\narteriole\r\narterioles\r\narteriole's\r\narteriolosclerosis\r\narteriosclerosis\r\nartery\r\nartery's\r\nartesian\r\nartful\r\nartfully\r\nartfulness\r\narthritic\r\narthritically\r\narthritis\r\narthropod\r\narthropods\r\narthropod's\r\nartic\r\nartichoke\r\nartichokes\r\nartichoke's\r\narticle\r\narticled\r\narticles\r\narticle's\r\narticling\r\narticular\r\narticulate\r\narticulated\r\narticulately\r\narticulates\r\narticulating\r\narticulation\r\narticulations\r\narticulator\r\narticulators\r\nartier\r\nartifice\r\nartificer\r\nartifices\r\nartificial\r\nartificialities\r\nartificiality\r\nartificially\r\nartificialness\r\nartilleries\r\nartillerist\r\nartillery\r\nartilleryman\r\nartily\r\nartiness\r\nartisan\r\nartisans\r\nartisan's\r\nartist\r\nartiste\r\nartistic\r\nartistically\r\nartistry\r\nartists\r\nartist's\r\nartless\r\nartlessly\r\narts\r\nart's\r\nartwork\r\narty\r\narum\r\narundinaceous\r\naryl\r\nas\r\nasafoetida\r\nasbestos\r\nasbestosis\r\nascend\r\nascendable\r\nascendance\r\nascendancy\r\nascendant\r\nascended\r\nascender\r\nascenders\r\nascendible\r\nascending\r\nascends\r\nascension\r\nascensions\r\nascent\r\nascertain\r\nascertainable\r\nascertained\r\nascertaining\r\nascertainment\r\nascertains\r\nascetic\r\nascetical\r\nascetically\r\nasceticism\r\nascetics\r\nascetic's\r\nasclepiadaceous\r\nascorbic\r\nascosporic\r\nascosporous\r\nascot\r\nascribable\r\nascribe\r\nascribed\r\nascribes\r\nascribing\r\nascription\r\nasdic\r\nasepsis\r\naseptic\r\naseptically\r\nasexual\r\nasexually\r\nash\r\nashamed\r\nashamedly\r\nashcan\r\nashen\r\nashes\r\nashier\r\nashlars\r\nashore\r\nashram\r\nashtray\r\nashtrays\r\nashtray's\r\nashy\r\naside\r\nasides\r\nasinine\r\nasininely\r\nasininity\r\nask\r\naskance\r\nasked\r\naskers\r\naskew\r\nasking\r\nasks\r\naslant\r\nasleep\r\naslope\r\nasocial\r\nasp\r\nasparagus\r\naspartic\r\naspect\r\naspects\r\naspect's\r\naspectual\r\naspen\r\nasperity\r\nasperse\r\naspersed\r\naspersing\r\naspersion\r\naspersions\r\naspersion's\r\nasphalt\r\nasphalted\r\naspheric\r\nasphodel\r\nasphyxia\r\nasphyxiate\r\nasphyxiation\r\naspic\r\naspidistra\r\naspirant\r\naspirants\r\naspirant's\r\naspirate\r\naspirated\r\naspirates\r\naspirating\r\naspiration\r\naspirations\r\naspiration's\r\naspirator\r\naspirators\r\naspire\r\naspired\r\naspirer\r\naspires\r\naspirin\r\naspiring\r\naspirins\r\nasquint\r\nass\r\nassai\r\nassail\r\nassailable\r\nassailant\r\nassailants\r\nassailant's\r\nassailed\r\nassailing\r\nassails\r\nassassin\r\nassassinate\r\nassassinated\r\nassassinates\r\nassassinating\r\nassassination\r\nassassinations\r\nassassinator\r\nassassins\r\nassassin's\r\nassault\r\nassaulted\r\nassaulter\r\nassaulting\r\nassaults\r\nassay\r\nassayed\r\nassayer\r\nassayers\r\nassaying\r\nassegai\r\nassemblage\r\nassemblages\r\nassemblage's\r\nassemble\r\nassembled\r\nassembler\r\nassemblers\r\nassembles\r\nassemblies\r\nassembling\r\nassembly\r\nassemblyman\r\nassembly's\r\nassemblywoman\r\nassent\r\nassented\r\nassenter\r\nassenting\r\nassents\r\nassert\r\nasserted\r\nasserter\r\nasserters\r\nasserting\r\nassertion\r\nassertions\r\nassertion's\r\nassertive\r\nassertively\r\nassertiveness\r\nasserts\r\nasses\r\nassess\r\nassessable\r\nassessed\r\nassesses\r\nassessing\r\nassessment\r\nassessments\r\nassessment's\r\nassessor\r\nassessors\r\nassessor's\r\nasset\r\nassets\r\nasset's\r\nasseverate\r\nasseveration\r\nassibilate\r\nassiduity\r\nassiduous\r\nassiduously\r\nassiduousness\r\nassign\r\nassignable\r\nassignation\r\nassignations\r\nassigned\r\nassignee\r\nassignees\r\nassignee's\r\nassigner\r\nassigners\r\nassigning\r\nassignment\r\nassignments\r\nassignment's\r\nassignor\r\nassigns\r\nassimilability\r\nassimilate\r\nassimilated\r\nassimilates\r\nassimilating\r\nassimilation\r\nassimilations\r\nassimilative\r\nassimilator\r\nassimilatory\r\nassist\r\nassistance\r\nassistances\r\nassistant\r\nassistants\r\nassistant's\r\nassistantship\r\nassistantships\r\nassisted\r\nassister\r\nassisting\r\nassists\r\nassize\r\nassizes\r\nassn\r\nassociable\r\nassociate\r\nassociated\r\nassociates\r\nassociating\r\nassociation\r\nassociational\r\nassociations\r\nassociation's\r\nassociative\r\nassociatively\r\nassoil\r\nassonance\r\nassonant\r\nassort\r\nassorted\r\nassorting\r\nassortment\r\nassortments\r\nassortment's\r\nassorts\r\nass's\r\nassuage\r\nassuaged\r\nassuagement\r\nassuages\r\nassuaging\r\nassuasive\r\nassumable\r\nassume\r\nassumed\r\nassumer\r\nassumes\r\nassuming\r\nassumption\r\nassumptions\r\nassumption's\r\nassumptive\r\nassurance\r\nassurances\r\nassurance's\r\nassure\r\nassured\r\nassuredly\r\nassuredness\r\nassures\r\nassurgent\r\nassuring\r\nassuror\r\nastatically\r\nastaticism\r\nastatine\r\naster\r\nasteriated\r\nasterisk\r\nasterisks\r\nasterisk's\r\nasterism\r\nasterisms\r\nastern\r\nasteroid\r\nasteroids\r\nasteroid's\r\nasters\r\naster's\r\nasthenia\r\nasthma\r\nasthmatic\r\nasthmatically\r\nastigmatic\r\nastigmatism\r\nastir\r\nastonish\r\nastonished\r\nastonishes\r\nastonishing\r\nastonishingly\r\nastonishment\r\nastound\r\nastounded\r\nastounding\r\nastoundingly\r\nastounds\r\nastraddle\r\nastragal\r\nastrakhan\r\nastral\r\nastraphobia\r\nastray\r\nastride\r\nastringency\r\nastringent\r\nastringently\r\nastrobiology\r\nastrobotany\r\nastrocompass\r\nastrodome\r\nastrolabe\r\nastrologer\r\nastrologers\r\nastrologer's\r\nastrological\r\nastrologically\r\nastrology\r\nastrometry\r\nastron\r\nastronaut\r\nastronautic\r\nastronautically\r\nastronautics\r\nastronauts\r\nastronaut's\r\nastronavigation\r\nastronomer\r\nastronomers\r\nastronomer's\r\nastronomic\r\nastronomical\r\nastronomically\r\nastronomy\r\nastrophotography\r\nastrophysical\r\nastrophysicist\r\nastrophysicists\r\nastrophysicist's\r\nastrophysics\r\nastrosphere\r\nastute\r\nastutely\r\nastuteness\r\nasunder\r\nasylum\r\nasylums\r\nasymmetric\r\nasymmetrical\r\nasymmetrically\r\nasymmetries\r\nasymmetry\r\nasymptomatic\r\nasymptomatically\r\nasymptote\r\nasymptotes\r\nasymptote's\r\nasymptotic\r\nasymptotical\r\nasymptotically\r\nasync\r\nasynchronise\r\nasynchronised\r\nasynchronises\r\nasynchronising\r\nasynchronism\r\nasynchronous\r\nasynchronously\r\nasynchrony\r\nasyndetically\r\nasyndeton\r\nat\r\nataman\r\nataractic\r\natavism\r\natavist\r\natavistic\r\natavistically\r\nataxia\r\nataxic\r\nate\r\natelier\r\natheism\r\natheist\r\natheistic\r\natheistically\r\natheists\r\natheist's\r\nathenaeum\r\nathermanous\r\natherosclerosis\r\nathirst\r\nathlete\r\nathletes\r\nathlete's\r\nathletic\r\nathletically\r\nathleticism\r\nathletics\r\nathodyd\r\nathwart\r\nathwartships\r\natilt\r\natlantes\r\natlas\r\natman\r\natmosphere\r\natmospheres\r\natmosphere's\r\natmospheric\r\natmospherically\r\natmospherics\r\natoll\r\natolls\r\natoll's\r\natom\r\natomic\r\natomically\r\natomicity\r\natomics\r\natomisation\r\natomisation's\r\natomise\r\natomised\r\natomiser\r\natomisers\r\natomises\r\natomising\r\natomism\r\natomist\r\natomistic\r\natoms\r\natom's\r\natomy\r\natonal\r\natonalism\r\natonalistic\r\natonality\r\natonally\r\natone\r\natoned\r\natonement\r\natones\r\natoning\r\natop\r\natrabilious\r\natremble\r\natrium\r\natriums\r\natrocious\r\natrociously\r\natrociousness\r\natrocities\r\natrocity\r\natrocity's\r\natrophic\r\natrophied\r\natrophies\r\natrophy\r\natrophying\r\natropine\r\nattach\r\nattachable\r\nattached\r\nattaches\r\nattaching\r\nattachment\r\nattachments\r\nattachment's\r\nattack\r\nattackable\r\nattacked\r\nattacker\r\nattackers\r\nattacker's\r\nattacking\r\nattacks\r\nattain\r\nattainability\r\nattainable\r\nattainableness\r\nattainably\r\nattainder\r\nattained\r\nattaining\r\nattainment\r\nattainments\r\nattainment's\r\nattains\r\nattaint\r\nattar\r\nattempt\r\nattemptable\r\nattempted\r\nattempter\r\nattempters\r\nattempting\r\nattempts\r\nattend\r\nattendance\r\nattendances\r\nattendance's\r\nattendant\r\nattendants\r\nattendant's\r\nattended\r\nattendee\r\nattendees\r\nattendee's\r\nattending\r\nattends\r\nattention\r\nattentions\r\nattention's\r\nattentive\r\nattentively\r\nattentiveness\r\nattenuate\r\nattenuated\r\nattenuates\r\nattenuating\r\nattenuation\r\nattenuator\r\nattenuators\r\nattenuator's\r\nattest\r\nattestation\r\nattested\r\nattester\r\nattesting\r\nattests\r\nattic\r\nattics\r\nattic's\r\nattire\r\nattired\r\nattires\r\nattiring\r\nattitude\r\nattitudes\r\nattitude's\r\nattitudinal\r\nattitudinally\r\nattitudinise\r\nattitudinised\r\nattitudinises\r\nattitudinising\r\nattorney\r\nattorneys\r\nattorney's\r\nattract\r\nattractable\r\nattractant\r\nattracted\r\nattracting\r\nattraction\r\nattractions\r\nattraction's\r\nattractive\r\nattractively\r\nattractiveness\r\nattractor\r\nattractors\r\nattractor's\r\nattracts\r\nattributable\r\nattribute\r\nattributed\r\nattributer\r\nattributes\r\nattributing\r\nattribution\r\nattributions\r\nattributive\r\nattributively\r\nattrition\r\nattune\r\nattuned\r\nattunes\r\nattuning\r\natwitter\r\natypical\r\natypically\r\nauburn\r\nauction\r\nauctioned\r\nauctioneer\r\nauctioneers\r\nauctioneer's\r\nauctioning\r\nauctorial\r\naudacious\r\naudaciously\r\naudaciousness\r\naudacity\r\naudibility\r\naudible\r\naudibly\r\naudience\r\naudiences\r\naudience's\r\naudient\r\naudio\r\naudiogram\r\naudiograms\r\naudiogram's\r\naudiologist\r\naudiologists\r\naudiologist's\r\naudiometer\r\naudiometers\r\naudiometer's\r\naudiometric\r\naudiophile\r\naudiotape\r\naudiovisual\r\naudiovisuals\r\naudit\r\nauditable\r\naudited\r\nauditing\r\naudition\r\nauditioned\r\nauditioning\r\nauditions\r\naudition's\r\nauditor\r\nauditorium\r\nauditoriums\r\nauditors\r\nauditor's\r\nauditory\r\naudits\r\nauger\r\naugers\r\nauger's\r\naught\r\naugment\r\naugmentable\r\naugmentation\r\naugmentations\r\naugmentative\r\naugmented\r\naugmenter\r\naugmenting\r\naugments\r\naugur\r\naugurs\r\naugury\r\naugust\r\naugustly\r\naugustness\r\nauk\r\nauklet\r\nauld\r\naunt\r\nauntie\r\naunts\r\naunt's\r\naura\r\naural\r\naurally\r\nauras\r\naura's\r\naureate\r\naureole\r\nauricle\r\nauricular\r\nauriferous\r\naurochs\r\naurora\r\naurous\r\nauscultation\r\nauscultations\r\nauspicate\r\nauspice\r\nauspices\r\nauspicious\r\nauspiciously\r\nauspiciousness\r\naustenite\r\naustenitic\r\naustere\r\nausterely\r\naustereness\r\nausterity\r\naustral\r\naustralopithecine\r\nautarchy\r\nautarky\r\nauteur\r\nauthentic\r\nauthentically\r\nauthenticate\r\nauthenticated\r\nauthenticates\r\nauthenticating\r\nauthentication\r\nauthentications\r\nauthenticator\r\nauthenticators\r\nauthenticity\r\nauthor\r\nauthored\r\nauthoress\r\nauthorial\r\nauthoring\r\nauthorisation\r\nauthorisations\r\nauthorisation's\r\nauthorise\r\nauthorised\r\nauthoriser\r\nauthorisers\r\nauthorises\r\nauthorising\r\nauthoritarian\r\nauthoritarianism\r\nauthoritative\r\nauthoritatively\r\nauthoritativeness\r\nauthorities\r\nauthority\r\nauthority's\r\nauthors\r\nauthor's\r\nauthorship\r\nautism\r\nautistic\r\nauto\r\nautoantibody\r\nautobahn\r\nautobiographic\r\nautobiographical\r\nautobiographically\r\nautobiographies\r\nautobiography\r\nautobiography's\r\nautocatalysis\r\nautocatalytic\r\nautocephalous\r\nautochthon\r\nautochthonous\r\nautoclave\r\nautoclaved\r\nautocollimator\r\nautocorrelate\r\nautocorrelated\r\nautocorrelates\r\nautocorrelating\r\nautocorrelation\r\nautocorrelations\r\nautocracies\r\nautocracy\r\nautocrat\r\nautocratic\r\nautocratically\r\nautocrats\r\nautocrat's\r\nautocross\r\nautocue\r\nautodial\r\nautodidact\r\nautodidactic\r\nautodyne\r\nautoerotic\r\nautoeroticism\r\nautoerotism\r\nautogenesis\r\nautogenetic\r\nautogenic\r\nautogenously\r\nautogiro\r\nautograph\r\nautographed\r\nautographic\r\nautographically\r\nautographing\r\nautographs\r\nautography\r\nautogyro\r\nautohypnosis\r\nautoimmune\r\nautoimmunisation\r\nautoimmunity\r\nautoinfection\r\nautoinoculation\r\nautointoxication\r\nautoloader\r\nautolysin\r\nautolysis\r\nautomaker\r\nautomat\r\nautomata\r\nautomate\r\nautomated\r\nautomates\r\nautomatic\r\nautomatically\r\nautomatics\r\nautomating\r\nautomation\r\nautomatism\r\nautomatist\r\nautomaton\r\nautomatons\r\nautomobile\r\nautomobiles\r\nautomobile's\r\nautomotive\r\nautonomic\r\nautonomist\r\nautonomous\r\nautonomously\r\nautonomy\r\nautopilot\r\nautopilots\r\nautopilot's\r\nautoplastic\r\nautopsied\r\nautopsies\r\nautopsy\r\nautoradiogram\r\nautoradiograph\r\nautoradiography\r\nautoregressive\r\nautorotation\r\nautos\r\nauto's\r\nautosuggest\r\nautosuggestibility\r\nautosuggestible\r\nautosuggestion\r\nautotimer\r\nautotoxaemia\r\nautotoxin\r\nautotransformer\r\nautotrophic\r\nautotrophy\r\nautotype\r\nautumn\r\nautumnal\r\nautumnally\r\nautumns\r\nautumn's\r\naux\r\nauxanometer\r\nauxiliaries\r\nauxiliary\r\nauxotroph\r\navadavat\r\navail\r\navailabilities\r\navailability\r\navailable\r\navailableness\r\navailably\r\navailed\r\navailing\r\navails\r\navalanche\r\navalanched\r\navalanches\r\navalanching\r\navarice\r\navaricious\r\navariciously\r\navariciousness\r\navatar\r\navec\r\navenge\r\navenged\r\navenger\r\navenges\r\navenging\r\navenue\r\navenues\r\navenue's\r\naver\r\naverage\r\naveraged\r\naveragely\r\naverages\r\naveraging\r\naverment\r\naverred\r\naverring\r\navers\r\naverse\r\naversely\r\naverseness\r\naversion\r\naversions\r\naversion's\r\naversive\r\navert\r\naverted\r\naverting\r\naverts\r\navian\r\naviaries\r\naviary\r\naviation\r\naviations\r\naviator\r\naviators\r\naviator's\r\naviatress\r\naviatrix\r\naviculture\r\naviculturist\r\navid\r\navidity\r\navidly\r\navidness\r\navifauna\r\navifaunal\r\navionic\r\navionics\r\navocado\r\navocados\r\navocation\r\navocations\r\navocation's\r\navocet\r\navoid\r\navoidable\r\navoidably\r\navoidance\r\navoided\r\navoider\r\navoiders\r\navoiding\r\navoids\r\navoirdupois\r\navouch\r\navouchment\r\navow\r\navowal\r\navowed\r\navowedly\r\navower\r\navows\r\navulse\r\navulsing\r\navulsion\r\navuncular\r\nawait\r\nawaited\r\nawaiting\r\nawaits\r\nawake\r\nawaked\r\nawaken\r\nawakened\r\nawakener\r\nawakening\r\nawakens\r\nawakes\r\nawaking\r\naward\r\nawardable\r\nawarded\r\nawarder\r\nawarders\r\nawarding\r\nawards\r\naware\r\nawareness\r\nawash\r\naway\r\nawe\r\naweather\r\nawed\r\naweigh\r\nawesome\r\nawesomely\r\nawesomeness\r\nawestricken\r\nawestruck\r\nawful\r\nawfully\r\nawfulness\r\nawheel\r\nawhile\r\nawhirl\r\nawing\r\nawkward\r\nawkwardly\r\nawkwardness\r\nawl\r\nawls\r\nawl's\r\nawn\r\nawning\r\nawnings\r\nawning's\r\nawoke\r\nawoken\r\nawry\r\naxe\r\naxed\r\naxel\r\naxes\r\naxial\r\naxially\r\naxing\r\naxiological\r\naxiology\r\naxiom\r\naxiomatic\r\naxiomatically\r\naxioms\r\naxiom's\r\naxis\r\naxle\r\naxles\r\naxle's\r\naxletree\r\naxolotl\r\naxolotls\r\naxolotl's\r\naxon\r\naxons\r\naxon's\r\nayah\r\naye\r\nayes\r\nazalea\r\nazaleas\r\nazalea's\r\nazan\r\nazimuth\r\nazimuthally\r\nazimuths\r\nazimuth's\r\nazoth\r\nazotise\r\nazotised\r\nazotises\r\nazotising\r\nazure\r\nazurite\r\nbaa\r\nbaas\r\nbabble\r\nbabbled\r\nbabbler\r\nbabbles\r\nbabbling\r\nbabe\r\nbabes\r\nbabe's\r\nbabied\r\nbabies\r\nbaboon\r\nbaboonish\r\nbabul\r\nbabushka\r\nbaby\r\nbabyhood\r\nbabying\r\nbabyish\r\nbaby's\r\nbabysat\r\nbabysitter\r\nbabysitters\r\nbabysitting\r\nbaccalaureate\r\nbaccarat\r\nbacchanal\r\nbacchanalia\r\nbacchanalian\r\nbacchant\r\nbacchante\r\nbacchantes\r\nbacchantic\r\nbacchius\r\nbachelor\r\nbachelorhood\r\nbachelorise\r\nbachelors\r\nbachelor's\r\nbacillary\r\nbacilli\r\nbacillus\r\nback\r\nbackache\r\nbackaches\r\nbackache's\r\nbackbench\r\nbackbencher\r\nbackbenchers\r\nbackbite\r\nbackbiter\r\nbackblocks\r\nbackboard\r\nbackbone\r\nbackbones\r\nbackbone's\r\nbackbreaker\r\nbackbreaking\r\nbackchat\r\nbackcloth\r\nbackcomb\r\nbackcountry\r\nbackcourt\r\nbackcross\r\nbackdate\r\nbackdated\r\nbackdates\r\nbackdating\r\nbackdrop\r\nbackdrops\r\nbackdrop's\r\nbacked\r\nbackend\r\nbacker\r\nbackers\r\nbackfield\r\nbackfill\r\nbackfilled\r\nbackfilling\r\nbackfills\r\nbackfire\r\nbackfired\r\nbackfires\r\nbackfiring\r\nbackgammon\r\nbackgammon's\r\nbackground\r\nbackgrounds\r\nbackground's\r\nbackhand\r\nbackhanded\r\nbackhandedly\r\nbackhander\r\nbackhoe\r\nbackhouse\r\nbacking\r\nbacklash\r\nbacklasher\r\nbackless\r\nbacklog\r\nbacklogs\r\nbacklog's\r\nbackmost\r\nbackorder\r\nbackpack\r\nbackpacker\r\nbackpackers\r\nbackpacks\r\nbackpack's\r\nbackplane\r\nbackplanes\r\nbackplane's\r\nbackrest\r\nbacks\r\nbacksaw\r\nbackscatter\r\nbackscattered\r\nbackscattering\r\nbackscatters\r\nbackscratcher\r\nbackseat\r\nbackside\r\nbackslap\r\nbackslapper\r\nbackslash\r\nbackslashes\r\nbackslide\r\nbackslider\r\nbackspace\r\nbackspaced\r\nbackspaces\r\nbackspacing\r\nbackspin\r\nbackstabber\r\nbackstabbing\r\nbackstage\r\nbackstairs\r\nbackstay\r\nbackstitch\r\nbackstitched\r\nbackstitches\r\nbackstitching\r\nbackstop\r\nbackstreet\r\nbackstretch\r\nbackstroke\r\nbackswept\r\nbackswing\r\nbacksword\r\nbacktrack\r\nbacktracked\r\nbacktracker\r\nbacktrackers\r\nbacktracking\r\nbacktracks\r\nbackup\r\nbackups\r\nbackward\r\nbackwardation\r\nbackwardly\r\nbackwardness\r\nbackwards\r\nbackwash\r\nbackwater\r\nbackwaters\r\nbackwater's\r\nbackwoods\r\nbackwoodsman\r\nbackyard\r\nbackyards\r\nbackyard's\r\nbacon\r\nbacteraemia\r\nbacteria\r\nbacterial\r\nbacterially\r\nbactericidal\r\nbactericide\r\nbacteriological\r\nbacteriology\r\nbacterium\r\nbaculiform\r\nbad\r\nbaddie\r\nbade\r\nbadge\r\nbadger\r\nbadgered\r\nbadgering\r\nbadgers\r\nbadger's\r\nbadges\r\nbadinage\r\nbadlands\r\nbadly\r\nbadminton\r\nbadness\r\nbaffle\r\nbaffled\r\nbafflement\r\nbaffler\r\nbafflers\r\nbaffles\r\nbaffling\r\nbafflingly\r\nbag\r\nbagatelle\r\nbagatelles\r\nbagatelle's\r\nbagel\r\nbagels\r\nbagel's\r\nbagful\r\nbaggage\r\nbagged\r\nbagger\r\nbaggers\r\nbagger's\r\nbaggier\r\nbaggies\r\nbaggily\r\nbagginess\r\nbagging\r\nbaggy\r\nbagman\r\nbagnio\r\nbagpipe\r\nbagpiper\r\nbagpipes\r\nbagpipe's\r\nbags\r\nbag's\r\nbaguette\r\nbagwig\r\nbagworm\r\nbah\r\nbaht\r\nbail\r\nbailer\r\nbailie\r\nbailiff\r\nbailiffs\r\nbailiff's\r\nbailing\r\nbailiwick\r\nbailment\r\nbailsman\r\nbait\r\nbaited\r\nbaiter\r\nbaiting\r\nbaits\r\nbaize\r\nbake\r\nbaked\r\nbaker\r\nbakeries\r\nbakers\r\nbakery\r\nbakery's\r\nbakes\r\nbakeshop\r\nbaking\r\nbaklava\r\nbaksheesh\r\nbalaclava\r\nbalalaika\r\nbalalaikas\r\nbalalaika's\r\nbalance\r\nbalanced\r\nbalancer\r\nbalancers\r\nbalances\r\nbalancing\r\nbalas\r\nbalata\r\nbalbriggan\r\nbalconied\r\nbalconies\r\nbalcony\r\nbalcony's\r\nbald\r\nbalder\r\nbalderdash\r\nbaldhead\r\nbalding\r\nbaldish\r\nbaldly\r\nbaldness\r\nbaldpate\r\nbaldric\r\nbaldy\r\nbale\r\nbaled\r\nbaleen\r\nbalefire\r\nbaleful\r\nbalefully\r\nbalefulness\r\nbaler\r\nbalers\r\nbales\r\nbaling\r\nbalk\r\nbalkanisation\r\nbalkanise\r\nbalkanised\r\nbalkanising\r\nbalked\r\nbalkier\r\nbalkiness\r\nbalking\r\nbalks\r\nbalky\r\nball\r\nballad\r\nballade\r\nballadeer\r\nballadry\r\nballads\r\nballad's\r\nballast\r\nballasts\r\nballast's\r\nballed\r\nballerina\r\nballerinas\r\nballerina's\r\nballet\r\nballetomane\r\nballetomania\r\nballets\r\nballet's\r\nballflower\r\nballing\r\nballista\r\nballistic\r\nballistics\r\nballonet\r\nballoon\r\nballooned\r\nballooner\r\nballooners\r\nballooning\r\nballoonist\r\nballoons\r\nballot\r\nballoted\r\nballoting\r\nballots\r\nballot's\r\nballottement\r\nballplayer\r\nballplayers\r\nballplayer's\r\nballroom\r\nballrooms\r\nballroom's\r\nballs\r\nballyhoo\r\nbalm\r\nbalmier\r\nbalmily\r\nbalminess\r\nbalms\r\nbalm's\r\nbalmy\r\nbalneal\r\nbalneology\r\nbaloney\r\nbalsa\r\nbalsam\r\nbalsamic\r\nbalsamiferous\r\nbalsams\r\nbaluster\r\nbalustrade\r\nbalustrades\r\nbalustrade's\r\nbam\r\nbambino\r\nbamboo\r\nbamboos\r\nbamboozle\r\nbamboozled\r\nbamboozlement\r\nbamboozles\r\nbamboozling\r\nban\r\nbanal\r\nbanality\r\nbanally\r\nbanana\r\nbananas\r\nbanana's\r\nbanc\r\nband\r\nbandage\r\nbandaged\r\nbandager\r\nbandages\r\nbandaging\r\nbandana\r\nbandanna\r\nbandbox\r\nbandeau\r\nbandeaux\r\nbanded\r\nbandicoot\r\nbandied\r\nbandies\r\nbanding\r\nbandit\r\nbanditry\r\nbandits\r\nbandit's\r\nbanditti\r\nbandleader\r\nbandmaster\r\nbandoleer\r\nbandoleers\r\nbandolier\r\nbandore\r\nbands\r\nbandsman\r\nbandstand\r\nbandstands\r\nbandstand's\r\nbandwagon\r\nbandwagons\r\nbandwagon's\r\nbandwidth\r\nbandwidths\r\nbandy\r\nbandying\r\nbane\r\nbaneberry\r\nbaneful\r\nbanefully\r\nbang\r\nbanged\r\nbanger\r\nbanging\r\nbangle\r\nbangles\r\nbangle's\r\nbangs\r\nbangtail\r\nbanish\r\nbanished\r\nbanisher\r\nbanishes\r\nbanishing\r\nbanishment\r\nbanister\r\nbanisters\r\nbanister's\r\nbanjo\r\nbanjoist\r\nbanjos\r\nbanjo's\r\nbank\r\nbankable\r\nbankbook\r\nbankbooks\r\nbanked\r\nbanker\r\nbankers\r\nbanking\r\nbanknote\r\nbanknotes\r\nbankroll\r\nbankroller\r\nbankrupt\r\nbankruptcies\r\nbankruptcy\r\nbankruptcy's\r\nbankrupted\r\nbankrupting\r\nbankrupts\r\nbanks\r\nbanned\r\nbanner\r\nbannerette\r\nbanners\r\nbanner's\r\nbanning\r\nbannock\r\nbanns\r\nbanquet\r\nbanqueted\r\nbanqueter\r\nbanqueting\r\nbanquets\r\nbanquette\r\nbans\r\nban's\r\nbanshee\r\nbanshees\r\nbanshee's\r\nbantam\r\nbantamweight\r\nbanter\r\nbantered\r\nbanterer\r\nbantering\r\nbanteringly\r\nbanters\r\nbantling\r\nbanyan\r\nbanzai\r\nbaobab\r\nbaptise\r\nbaptised\r\nbaptiser\r\nbaptisers\r\nbaptises\r\nbaptising\r\nbaptism\r\nbaptismal\r\nbaptismally\r\nbaptisms\r\nbaptism's\r\nbaptistery\r\nbar\r\nbarb\r\nbarbarian\r\nbarbarianism\r\nbarbarians\r\nbarbarian's\r\nbarbaric\r\nbarbarically\r\nbarbarisation\r\nbarbarise\r\nbarbarised\r\nbarbarises\r\nbarbarising\r\nbarbarism\r\nbarbarities\r\nbarbarity\r\nbarbarous\r\nbarbarously\r\nbarbate\r\nbarbecue\r\nbarbecued\r\nbarbecues\r\nbarbecuing\r\nbarbed\r\nbarbell\r\nbarbells\r\nbarbell's\r\nbarber\r\nbarbered\r\nbarbering\r\nbarberry\r\nbarbers\r\nbarbershop\r\nbarbet\r\nbarbette\r\nbarbican\r\nbarbital\r\nbarbiturate\r\nbarbiturates\r\nbarbs\r\nbarbwire\r\nbarcarole\r\nbard\r\nbards\r\nbard's\r\nbare\r\nbareback\r\nbared\r\nbarefaced\r\nbarefacedly\r\nbarefacedness\r\nbarefoot\r\nbarefooted\r\nbarehanded\r\nbareheaded\r\nbarely\r\nbareness\r\nbarer\r\nbares\r\nbaresark\r\nbarest\r\nbarflies\r\nbarfly\r\nbarfly's\r\nbargain\r\nbargained\r\nbargaining\r\nbargains\r\nbarge\r\nbargeboard\r\nbarged\r\nbargee\r\nbargeman\r\nbargepole\r\nbarges\r\nbarging\r\nbaric\r\nbarilla\r\nbaring\r\nbarite\r\nbaritone\r\nbaritones\r\nbaritone's\r\nbarium\r\nbark\r\nbarked\r\nbarkeep\r\nbarkeeper\r\nbarker\r\nbarkers\r\nbarkier\r\nbarking\r\nbarks\r\nbarky\r\nbarley\r\nbarleycorn\r\nbarmaid\r\nbarman\r\nbarmier\r\nbarmy\r\nbarn\r\nbarnacle\r\nbarnacled\r\nbarns\r\nbarn's\r\nbarnstorm\r\nbarnstormed\r\nbarnstormer\r\nbarnstorming\r\nbarnstorms\r\nbarnyard\r\nbarnyards\r\nbarnyard's\r\nbarograms\r\nbarogram's\r\nbarograph\r\nbarometer\r\nbarometers\r\nbarometer's\r\nbarometric\r\nbarometrical\r\nbarometrically\r\nbarometry\r\nbaron\r\nbaronage\r\nbaroness\r\nbaronet\r\nbaronetage\r\nbaronetcy\r\nbarong\r\nbaronial\r\nbaronies\r\nbarons\r\nbaron's\r\nbarony\r\nbarony's\r\nbaroque\r\nbaroquely\r\nbarouche\r\nbarque\r\nbarrack\r\nbarracker\r\nbarracks\r\nbarracuda\r\nbarracudas\r\nbarracuda's\r\nbarrage\r\nbarraged\r\nbarrages\r\nbarrage's\r\nbarraging\r\nbarramundi\r\nbarrater\r\nbarratry\r\nbarred\r\nbarrel\r\nbarrelful\r\nbarrelhouse\r\nbarrelled\r\nbarrelling\r\nbarrels\r\nbarrel's\r\nbarrelsful\r\nbarren\r\nbarrenness\r\nbarrens\r\nbarrette\r\nbarrettes\r\nbarrette's\r\nbarricade\r\nbarricades\r\nbarricade's\r\nbarrier\r\nbarriers\r\nbarrier's\r\nbarring\r\nbarrio\r\nbarrister\r\nbarristers\r\nbarroom\r\nbarrooms\r\nbarrow\r\nbarrows\r\nbars\r\nbar's\r\nbarstool\r\nbarstools\r\nbarstool's\r\nbartend\r\nbartender\r\nbartenders\r\nbartender's\r\nbarter\r\nbartered\r\nbarterer\r\nbartering\r\nbarters\r\nbartizan\r\nbarware\r\nbarycentre\r\nbaryon\r\nbaryonic\r\nbaryons\r\nbaryon's\r\nbas\r\nbasal\r\nbasally\r\nbasalt\r\nbasaltic\r\nbascule\r\nbase\r\nbaseball\r\nbaseballs\r\nbaseball's\r\nbaseband\r\nbaseboard\r\nbaseboards\r\nbaseboard's\r\nbaseborn\r\nbaseburner\r\nbased\r\nbaseless\r\nbaseline\r\nbaselines\r\nbaseline's\r\nbasely\r\nbaseman\r\nbasemen\r\nbasement\r\nbasements\r\nbasement's\r\nbaseness\r\nbasenji\r\nbaser\r\nbases\r\nbasest\r\nbash\r\nbashed\r\nbasher\r\nbashes\r\nbashful\r\nbashfully\r\nbashfulness\r\nbashibazouk\r\nbashing\r\nbasic\r\nbasically\r\nbasics\r\nbasification\r\nbasify\r\nbasil\r\nbasilar\r\nbasilica\r\nbasilisk\r\nbasin\r\nbasined\r\nbasinet\r\nbasing\r\nbasins\r\nbasin's\r\nbasis\r\nbask\r\nbasked\r\nbasket\r\nbasketball\r\nbasketballs\r\nbasketball's\r\nbasketful\r\nbasketlike\r\nbasketry\r\nbaskets\r\nbasket's\r\nbasketwork\r\nbasking\r\nbasophile\r\nbasophilic\r\nbass\r\nbasses\r\nbasset\r\nbassinet\r\nbassinets\r\nbassinet's\r\nbassist\r\nbasso\r\nbassoon\r\nbassoonist\r\nbassoonists\r\nbassoonist's\r\nbassoons\r\nbassoon's\r\nbass's\r\nbasswood\r\nbastard\r\nbastardisation\r\nbastardisations\r\nbastardisation's\r\nbastardise\r\nbastardised\r\nbastardises\r\nbastardising\r\nbastardly\r\nbastardry\r\nbastards\r\nbastard's\r\nbaste\r\nbasted\r\nbastes\r\nbastinado\r\nbasting\r\nbastion\r\nbastioned\r\nbastions\r\nbastion's\r\nbat\r\nbatboy\r\nbatch\r\nbatched\r\nbatcher\r\nbatches\r\nbatching\r\nbate\r\nbateau\r\nbated\r\nbates\r\nbatfish\r\nbatfowl\r\nbath\r\nbathe\r\nbathed\r\nbather\r\nbathers\r\nbathes\r\nbathetic\r\nbathhouse\r\nbathhouses\r\nbathing\r\nbathometer\r\nbathometers\r\nbathometer's\r\nbathos\r\nbathrobe\r\nbathrobes\r\nbathrobe's\r\nbathroom\r\nbathrooms\r\nbathroom's\r\nbaths\r\nbathtub\r\nbathtubs\r\nbathtub's\r\nbathwater\r\nbathymetry\r\nbathyscaph\r\nbathysphere\r\nbatik\r\nbating\r\nbatiste\r\nbatman\r\nbaton\r\nbatons\r\nbaton's\r\nbats\r\nbat's\r\nbatsman\r\nbattalion\r\nbattalions\r\nbattalion's\r\nbatted\r\nbattement\r\nbatten\r\nbattened\r\nbattening\r\nbattens\r\nbatter\r\nbattered\r\nbatteries\r\nbattering\r\nbatters\r\nbattery\r\nbattery's\r\nbattier\r\nbattiness\r\nbatting\r\nbattle\r\nbattled\r\nbattledore\r\nbattlefield\r\nbattlefields\r\nbattlefield's\r\nbattlefront\r\nbattlefronts\r\nbattlefront's\r\nbattleground\r\nbattlegrounds\r\nbattleground's\r\nbattlement\r\nbattlemented\r\nbattlements\r\nbattlement's\r\nbattler\r\nbattlers\r\nbattles\r\nbattleship\r\nbattleships\r\nbattleship's\r\nbattlewagon\r\nbattling\r\nbattue\r\nbatty\r\nbatwing\r\nbatwings\r\nbauble\r\nbaubles\r\nbauble's\r\nbaud\r\nbauds\r\nbaulk\r\nbaulked\r\nbaulking\r\nbaulks\r\nbauxite\r\nbawd\r\nbawdier\r\nbawdily\r\nbawdiness\r\nbawdry\r\nbawdy\r\nbawdyhouse\r\nbawdyhouses\r\nbawl\r\nbawled\r\nbawler\r\nbawling\r\nbawls\r\nbay\r\nbayberries\r\nbayberry\r\nbayed\r\nbaying\r\nbayonet\r\nbayoneted\r\nbayoneting\r\nbayonets\r\nbayonet's\r\nbayou\r\nbayous\r\nbayou's\r\nbays\r\nbazaar\r\nbazaars\r\nbazaar's\r\nbazooka\r\nbazookas\r\nbdellium\r\nbe\r\nbeach\r\nbeachcomber\r\nbeachcombers\r\nbeached\r\nbeaches\r\nbeachfront\r\nbeachhead\r\nbeachheads\r\nbeachhead's\r\nbeaching\r\nbeachside\r\nbeachwear\r\nbeacon\r\nbeaconed\r\nbeaconing\r\nbeacons\r\nbeacon's\r\nbead\r\nbeaded\r\nbeading\r\nbeadle\r\nbeadledom\r\nbeadles\r\nbeadle's\r\nbeadroll\r\nbeads\r\nbeadsman\r\nbeadwork\r\nbeady\r\nbeagle\r\nbeagles\r\nbeagle's\r\nbeak\r\nbeaked\r\nbeaker\r\nbeakers\r\nbeaks\r\nbeam\r\nbeamed\r\nbeamer\r\nbeamers\r\nbeaming\r\nbeamish\r\nbeamishly\r\nbeams\r\nbeamy\r\nbean\r\nbeanbag\r\nbeanbags\r\nbeanbag's\r\nbeanery\r\nbeanie\r\nbeano\r\nbeanpole\r\nbeans\r\nbear\r\nbearable\r\nbearably\r\nbearbaiting\r\nbearberry\r\nbeard\r\nbearded\r\nbeardedness\r\nbeardless\r\nbeards\r\nbearer\r\nbearers\r\nbearing\r\nbearings\r\nbearish\r\nbearishly\r\nbearishness\r\nbears\r\nbearskin\r\nbeast\r\nbeastie\r\nbeasties\r\nbeastlier\r\nbeastliness\r\nbeastly\r\nbeasts\r\nbeat\r\nbeatable\r\nbeaten\r\nbeater\r\nbeaters\r\nbeatific\r\nbeatifically\r\nbeatification\r\nbeatify\r\nbeating\r\nbeatings\r\nbeatitude\r\nbeatitudes\r\nbeatitude's\r\nbeatnik\r\nbeatniks\r\nbeatnik's\r\nbeats\r\nbeau\r\nbeaus\r\nbeau's\r\nbeauteous\r\nbeauteously\r\nbeauteousness\r\nbeautician\r\nbeauticians\r\nbeauties\r\nbeautification\r\nbeautifications\r\nbeautified\r\nbeautifier\r\nbeautifiers\r\nbeautifies\r\nbeautiful\r\nbeautifully\r\nbeautifulness\r\nbeautify\r\nbeautifying\r\nbeauty\r\nbeauty's\r\nbeaux\r\nbeaver\r\nbeaverboard\r\nbeavers\r\nbeaver's\r\nbebop\r\nbebopper\r\nbecalm\r\nbecalmed\r\nbecalming\r\nbecalms\r\nbecame\r\nbecause\r\nbeccafico\r\nbechance\r\nbeck\r\nbeckon\r\nbeckoned\r\nbeckoning\r\nbeckons\r\nbecloud\r\nbecome\r\nbecomes\r\nbecoming\r\nbecomingly\r\nbed\r\nbedaub\r\nbedaubing\r\nbedazzle\r\nbedazzled\r\nbedazzlement\r\nbedazzles\r\nbedazzling\r\nbedbug\r\nbedbugs\r\nbedbug's\r\nbedchamber\r\nbedclothes\r\nbeddable\r\nbedded\r\nbedding\r\nbedeck\r\nbedevil\r\nbedevilled\r\nbedevilling\r\nbedevilment\r\nbedevils\r\nbedew\r\nbedfast\r\nbedfellow\r\nbedight\r\nbedim\r\nbedimmed\r\nbedimming\r\nbedizen\r\nbedlam\r\nbedlamite\r\nbedpan\r\nbedpans\r\nbedpan's\r\nbedplate\r\nbedpost\r\nbedposts\r\nbedpost's\r\nbedraggle\r\nbedraggled\r\nbedrail\r\nbedridden\r\nbedrock\r\nbedrock's\r\nbedroll\r\nbedroom\r\nbedrooms\r\nbedroom's\r\nbeds\r\nbed's\r\nbedside\r\nbedsore\r\nbedspread\r\nbedspreads\r\nbedspread's\r\nbedspring\r\nbedsprings\r\nbedspring's\r\nbedstead\r\nbedsteads\r\nbedstead's\r\nbedstraw\r\nbedtime\r\nbedwetting\r\nbee\r\nbeebread\r\nbeech\r\nbeechen\r\nbeechnut\r\nbeef\r\nbeefcake\r\nbeefeater\r\nbeefed\r\nbeefier\r\nbeefing\r\nbeefs\r\nbeefsteak\r\nbeefwood\r\nbeefy\r\nbeehive\r\nbeehives\r\nbeehive's\r\nbeekeeper\r\nbeekeeping\r\nbeelike\r\nbeeline\r\nbeen\r\nbeep\r\nbeeped\r\nbeeper\r\nbeeping\r\nbeeps\r\nbeer\r\nbeerier\r\nbeers\r\nbeery\r\nbees\r\nbeestings\r\nbeeswax\r\nbeeswing\r\nbeet\r\nbeetle\r\nbeetled\r\nbeetles\r\nbeetle's\r\nbeetling\r\nbeetroot\r\nbeetroots\r\nbeets\r\nbeet's\r\nbeeves\r\nbefall\r\nbefallen\r\nbefalling\r\nbefalls\r\nbefell\r\nbefit\r\nbefits\r\nbefitted\r\nbefitting\r\nbefittingly\r\nbefog\r\nbefogged\r\nbefogging\r\nbefogs\r\nbefool\r\nbefore\r\nbeforehand\r\nbeforetime\r\nbefoul\r\nbefouled\r\nbefouling\r\nbefouls\r\nbefriend\r\nbefriended\r\nbefriending\r\nbefriends\r\nbefuddle\r\nbefuddled\r\nbefuddlement\r\nbefuddles\r\nbefuddling\r\nbeg\r\nbegan\r\nbegat\r\nbeget\r\nbegets\r\nbegetter\r\nbegetting\r\nbeggar\r\nbeggared\r\nbeggaring\r\nbeggarliness\r\nbeggarly\r\nbeggars\r\nbeggary\r\nbegged\r\nbegging\r\nbegin\r\nbeginner\r\nbeginners\r\nbeginner's\r\nbeginning\r\nbeginnings\r\nbeginning's\r\nbegins\r\nbegird\r\nbegonia\r\nbegot\r\nbegotten\r\nbegrime\r\nbegrimed\r\nbegriming\r\nbegrudge\r\nbegrudged\r\nbegrudges\r\nbegrudging\r\nbegrudgingly\r\nbegs\r\nbeguile\r\nbeguiled\r\nbeguilement\r\nbeguiler\r\nbeguiles\r\nbeguiling\r\nbeguilingly\r\nbeguine\r\nbegum\r\nbegun\r\nbehalf\r\nbehave\r\nbehaved\r\nbehaves\r\nbehaving\r\nbehaviour\r\nbehavioural\r\nbehaviourally\r\nbehaviourism\r\nbehaviourisms\r\nbehaviourism's\r\nbehaviouristic\r\nbehaviours\r\nbehaviour's\r\nbehead\r\nbeheading\r\nbeheld\r\nbehemoth\r\nbehemoths\r\nbehest\r\nbehind\r\nbehindhand\r\nbehold\r\nbeholden\r\nbeholder\r\nbeholders\r\nbeholding\r\nbeholds\r\nbehove\r\nbehoved\r\nbehoves\r\nbehoving\r\nbeige\r\nbeing\r\nbeings\r\nbejewel\r\nbejewelled\r\nbejewelling\r\nbelabour\r\nbelaboured\r\nbelabouring\r\nbelabours\r\nbelated\r\nbelatedly\r\nbelatedness\r\nbelay\r\nbelayed\r\nbelaying\r\nbelays\r\nbelch\r\nbelched\r\nbelches\r\nbelching\r\nbeldam\r\nbeleaguer\r\nbelemnite\r\nbelfries\r\nbelfry\r\nbelfry's\r\nbelie\r\nbelied\r\nbelief\r\nbeliefs\r\nbelief's\r\nbelier\r\nbelies\r\nbelievability\r\nbelievable\r\nbelievably\r\nbelieve\r\nbelieved\r\nbeliever\r\nbelievers\r\nbelieves\r\nbelieving\r\nbelike\r\nbelittle\r\nbelittled\r\nbelittlement\r\nbelittler\r\nbelittles\r\nbelittling\r\nbell\r\nbelladonna\r\nbellbird\r\nbellboy\r\nbellboys\r\nbellboy's\r\nbelle\r\nbelles\r\nbelle's\r\nbelletrist\r\nbellflower\r\nbellhop\r\nbellhops\r\nbellhop's\r\nbellicose\r\nbellicosely\r\nbellicosity\r\nbellied\r\nbellies\r\nbelligerence\r\nbelligerency\r\nbelligerent\r\nbelligerently\r\nbelligerents\r\nbelligerent's\r\nbellman\r\nbellmen\r\nbellow\r\nbellowed\r\nbellowing\r\nbellows\r\nbells\r\nbell's\r\nbellum\r\nbellwether\r\nbellwethers\r\nbellwether's\r\nbellwort\r\nbelly\r\nbellyache\r\nbellyacher\r\nbellyaching\r\nbellyband\r\nbellybutton\r\nbellyful\r\nbellying\r\nbelly's\r\nbelong\r\nbelonged\r\nbelonging\r\nbelongingness\r\nbelongings\r\nbelongs\r\nbeloved\r\nbelow\r\nbelowground\r\nbelt\r\nbelted\r\nbelting\r\nbelts\r\nbeltway\r\nbeluga\r\nbeluga's\r\nbelvedere\r\nbelying\r\nbemire\r\nbemoan\r\nbemoaned\r\nbemoaning\r\nbemoans\r\nbemuse\r\nbemused\r\nbemusedly\r\nbemusement\r\nbench\r\nbenched\r\nbencher\r\nbenches\r\nbenching\r\nbenchmark\r\nbenchmarking\r\nbenchmarks\r\nbenchmark's\r\nbend\r\nbendable\r\nbended\r\nbender\r\nbenders\r\nbending\r\nbends\r\nbendy\r\nbeneath\r\nbenediction\r\nbenedictions\r\nbenediction's\r\nbenedictory\r\nbenefaction\r\nbenefactor\r\nbenefactors\r\nbenefactor's\r\nbenefactress\r\nbenefice\r\nbeneficence\r\nbeneficences\r\nbeneficent\r\nbeneficently\r\nbeneficial\r\nbeneficially\r\nbeneficiaries\r\nbeneficiary\r\nbeneficiate\r\nbeneficiation\r\nbenefit\r\nbenefited\r\nbenefiting\r\nbenefits\r\nbenevolence\r\nbenevolent\r\nbenevolently\r\nbenevolentness\r\nbengaline\r\nbenighted\r\nbenightedly\r\nbenign\r\nbenignancy\r\nbenignant\r\nbenignantly\r\nbenignity\r\nbenignly\r\nbent\r\nbenthic\r\nbenthonic\r\nbenthos\r\nbents\r\nbentwood\r\nbenumb\r\nbenzene\r\nbenzoate\r\nbenzoic\r\nbenzyl\r\nbequeath\r\nbequeathed\r\nbequeathing\r\nbequest\r\nbequests\r\nbequest's\r\nberate\r\nberated\r\nberates\r\nberating\r\nberceuse\r\nberceuses\r\nbereave\r\nbereaved\r\nbereavement\r\nbereavements\r\nbereaves\r\nbereaving\r\nbereft\r\nberet\r\nberets\r\nberet's\r\nberg\r\nbergamot\r\nbergs\r\nberibboned\r\nberiberi\r\nberk\r\nberkelium\r\nberks\r\nberretta\r\nberried\r\nberries\r\nberry\r\nberrylike\r\nberry's\r\nberserk\r\nberserker\r\nberth\r\nberthed\r\nberthing\r\nberths\r\nberyl\r\nberyllium\r\nbeseech\r\nbeseeches\r\nbeseeching\r\nbeseechingly\r\nbeseem\r\nbeset\r\nbesetment\r\nbesets\r\nbesetting\r\nbeside\r\nbesides\r\nbesiege\r\nbesieged\r\nbesieger\r\nbesiegers\r\nbesieging\r\nbesmear\r\nbesmirch\r\nbesmirched\r\nbesmirches\r\nbesmirching\r\nbesom\r\nbesot\r\nbesotted\r\nbesotting\r\nbesought\r\nbespangle\r\nbespatter\r\nbespeak\r\nbespeaks\r\nbespectacled\r\nbespoke\r\nbespoken\r\nbesprent\r\nbesprinkle\r\nbest\r\nbestead\r\nbesteaded\r\nbesteading\r\nbested\r\nbester\r\nbestial\r\nbestialise\r\nbestialised\r\nbestialises\r\nbestialising\r\nbestiality\r\nbestially\r\nbestiary\r\nbesting\r\nbestir\r\nbestirring\r\nbestow\r\nbestowal\r\nbestowed\r\nbestrew\r\nbestride\r\nbestrides\r\nbestriding\r\nbestrode\r\nbests\r\nbestseller\r\nbestsellers\r\nbestseller's\r\nbestselling\r\nbet\r\nbeta\r\nbetake\r\nbetas\r\nbetel\r\nbethel\r\nbethink\r\nbethought\r\nbetide\r\nbetimes\r\nbetoken\r\nbetokened\r\nbetokening\r\nbetony\r\nbetook\r\nbetray\r\nbetrayal\r\nbetrayed\r\nbetrayer\r\nbetraying\r\nbetrays\r\nbetroth\r\nbetrothal\r\nbetrothals\r\nbetrothed\r\nbets\r\nbet's\r\nbetted\r\nbetter\r\nbettered\r\nbettering\r\nbetterment\r\nbetterments\r\nbetters\r\nbetting\r\nbettor\r\nbetween\r\nbetweenwhiles\r\nbetwixt\r\nbevel\r\nbevelled\r\nbeveller\r\nbevellers\r\nbevelling\r\nbevels\r\nbeverage\r\nbeverages\r\nbeverage's\r\nbevies\r\nbevy\r\nbewail\r\nbewailed\r\nbewailing\r\nbewails\r\nbeware\r\nbewigged\r\nbewilder\r\nbewildered\r\nbewilderedly\r\nbewilderedness\r\nbewildering\r\nbewilderingly\r\nbewilderment\r\nbewilders\r\nbewitch\r\nbewitched\r\nbewitchery\r\nbewitches\r\nbewitching\r\nbewitchingly\r\nbewitchment\r\nbeyond\r\nbezel\r\nbezique\r\nbhang\r\nbiannual\r\nbiannulate\r\nbias\r\nbiased\r\nbiases\r\nbiasing\r\nbiasness\r\nbiathlon\r\nbiauriculate\r\nbiaxial\r\nbib\r\nbibbed\r\nbibber\r\nbibbing\r\nbibcock\r\nbibelot\r\nbibelots\r\nbible\r\nbibles\r\nbible's\r\nbiblical\r\nbiblically\r\nbibliographer\r\nbibliographic\r\nbibliographical\r\nbibliographically\r\nbibliographies\r\nbibliography\r\nbibliography's\r\nbibliolater\r\nbibliolatrous\r\nbibliolatry\r\nbibliomancy\r\nbibliomania\r\nbibliomaniac\r\nbibliomaniacal\r\nbibliopegy\r\nbibliophile\r\nbibliophiles\r\nbibliophilic\r\nbibliophilism\r\nbibliophilist\r\nbibliopole\r\nbibliopolic\r\nbibliotheca\r\nbibs\r\nbib's\r\nbibulous\r\nbibulously\r\nbibulousness\r\nbicameral\r\nbicameralism\r\nbicarbonate\r\nbicentenary\r\nbicentennial\r\nbicep\r\nbiceps\r\nbicker\r\nbickered\r\nbickerer\r\nbickering\r\nbickers\r\nbicolour\r\nbicoloured\r\nbiconcave\r\nbiconcavity\r\nbiconvex\r\nbiconvexity\r\nbicorn\r\nbicultural\r\nbiculturalism\r\nbicuspid\r\nbicuspidate\r\nbicycle\r\nbicycled\r\nbicycler\r\nbicyclers\r\nbicycles\r\nbicycling\r\nbicyclist\r\nbid\r\nbiddable\r\nbiddably\r\nbidden\r\nbidder\r\nbidders\r\nbidder's\r\nbiddies\r\nbidding\r\nbiddy\r\nbide\r\nbided\r\nbides\r\nbidet\r\nbiding\r\nbidirectional\r\nbids\r\nbid's\r\nbiennial\r\nbiennially\r\nbiennium\r\nbier\r\nbifacial\r\nbiff\r\nbifid\r\nbifidity\r\nbifidly\r\nbifilar\r\nbifilarly\r\nbiflagellate\r\nbifocal\r\nbifocals\r\nbiform\r\nbifurcate\r\nbifurcated\r\nbifurcates\r\nbifurcating\r\nbifurcation\r\nbifurcations\r\nbig\r\nbigamist\r\nbigamous\r\nbigamously\r\nbigamy\r\nbigger\r\nbiggest\r\nbighead\r\nbigheaded\r\nbighearted\r\nbigheartedly\r\nbigheartedness\r\nbighorn\r\nbighorns\r\nbighorn's\r\nbight\r\nbights\r\nbight's\r\nbigly\r\nbigmouth\r\nbigmouthed\r\nbigness\r\nbignonia\r\nbignoniaceous\r\nbigot\r\nbigoted\r\nbigotedly\r\nbigotry\r\nbigots\r\nbigot's\r\nbigwig\r\nbijou\r\nbijouterie\r\nbike\r\nbiked\r\nbiker\r\nbikers\r\nbiker's\r\nbikes\r\nbike's\r\nbikeway\r\nbiking\r\nbikini\r\nbikinied\r\nbikinis\r\nbikini's\r\nbilabial\r\nbilateral\r\nbilateralism\r\nbilaterally\r\nbilateralness\r\nbilberry\r\nbile\r\nbilge\r\nbilged\r\nbilges\r\nbilge's\r\nbilging\r\nbilgy\r\nbilinear\r\nbilingual\r\nbilingualism\r\nbilingually\r\nbilinguals\r\nbilious\r\nbiliously\r\nbiliousness\r\nbilk\r\nbilked\r\nbilker\r\nbilking\r\nbilks\r\nbill\r\nbillable\r\nbillabong\r\nbillboard\r\nbillboards\r\nbillboard's\r\nbilled\r\nbillet\r\nbilleted\r\nbilleting\r\nbillets\r\nbillfish\r\nbillfold\r\nbillfolds\r\nbillfold's\r\nbillhead\r\nbillhook\r\nbilliard\r\nbilliards\r\nbilling\r\nbillings\r\nbillion\r\nbillionaire\r\nbillions\r\nbillionth\r\nbillon\r\nbillow\r\nbillowed\r\nbillowing\r\nbillows\r\nbillowy\r\nbillposter\r\nbillposting\r\nbills\r\nbillycock\r\nbiltong\r\nbimanous\r\nbimanual\r\nbimanually\r\nbimbo\r\nbimestrial\r\nbimetal\r\nbimetallic\r\nbimetallism\r\nbimetallist\r\nbimetallistic\r\nbimodal\r\nbimodality\r\nbimolecular\r\nbimonthlies\r\nbimonthly\r\nbimorph\r\nbin\r\nbinaries\r\nbinary\r\nbinate\r\nbinaural\r\nbinaurally\r\nbind\r\nbinder\r\nbinders\r\nbindery\r\nbinding\r\nbindingly\r\nbindings\r\nbindle\r\nbinds\r\nbindweed\r\nbinge\r\nbinges\r\nbingo\r\nbingos\r\nbinnacle\r\nbinned\r\nbinning\r\nbinocular\r\nbinocularity\r\nbinocularly\r\nbinoculars\r\nbinomial\r\nbinomially\r\nbinominal\r\nbins\r\nbin's\r\nbint\r\nbinturong\r\nbinuclear\r\nbio\r\nbioactive\r\nbioassay\r\nbioastronautics\r\nbiocatalyst\r\nbiocenology\r\nbiochemical\r\nbiochemist\r\nbiochemistry\r\nbiochemists\r\nbiochip\r\nbiochips\r\nbiocide\r\nbioclimatic\r\nbioclimatology\r\nbiodegradability\r\nbiodegradable\r\nbiodegradation\r\nbiodegrade\r\nbioelectric\r\nbioelectrical\r\nbioelectricity\r\nbioenergetics\r\nbioengineering\r\nbioenvironmental\r\nbiofeedback\r\nbioflavonoid\r\nbiog\r\nbiogenesis\r\nbiogenetic\r\nbiogenetically\r\nbiogenic\r\nbiogeochemical\r\nbiogeochemistry\r\nbiogeography\r\nbiographer\r\nbiographers\r\nbiographer's\r\nbiographic\r\nbiographical\r\nbiographically\r\nbiographies\r\nbiography\r\nbiography's\r\nbioinstrumentation\r\nbiologic\r\nbiological\r\nbiologically\r\nbiologist\r\nbiologists\r\nbiologist's\r\nbiology\r\nbioluminescence\r\nbioluminescent\r\nbiolysis\r\nbiomass\r\nbiomaterial\r\nbiome\r\nbiomedical\r\nbiomedicine\r\nbiometric\r\nbiometrical\r\nbiometrically\r\nbiometrics\r\nbiometry\r\nbionic\r\nbionics\r\nbionomic\r\nbionomical\r\nbionomically\r\nbionomics\r\nbiophysical\r\nbiophysically\r\nbiophysicist\r\nbiophysicists\r\nbiophysics\r\nbiopolymer\r\nbiopolymers\r\nbiopsies\r\nbiopsy\r\nbiosatellite\r\nbioscience\r\nbiosciences\r\nbioscope\r\nbioscopy\r\nbiosphere\r\nbiostatics\r\nbiostatistics\r\nbiosynthesis\r\nbiosynthesised\r\nbiosynthetic\r\nbiosynthetically\r\nbiota\r\nbiotechnological\r\nbiotechnology\r\nbiotelemetry\r\nbiotic\r\nbiotin\r\nbiotitic\r\nbiotope\r\nbiotransformation\r\nbiotype\r\nbipartisan\r\nbipartisanism\r\nbipartisanship\r\nbipartite\r\nbipartitely\r\nbipartition\r\nbiped\r\nbipedal\r\nbipeds\r\nbipetalous\r\nbiphenyl\r\nbiplane\r\nbiplanes\r\nbiplane's\r\nbipod\r\nbipolar\r\nbipolarisation\r\nbipolarise\r\nbipolarises\r\nbipolarity\r\nbipropellant\r\nbiquadrate\r\nbiracial\r\nbiracialism\r\nbirch\r\nbirchen\r\nbirches\r\nbird\r\nbirdbath\r\nbirdbaths\r\nbirdbath's\r\nbirdbrain\r\nbirdcage\r\nbirdcages\r\nbirdcage's\r\nbirdcall\r\nbirder\r\nbirdhouse\r\nbirdie\r\nbirdied\r\nbirdies\r\nbirdlike\r\nbirdlime\r\nbirdman\r\nbirds\r\nbird's\r\nbirdseed\r\nbirefringence\r\nbireme\r\nbiretta\r\nbiro\r\nbiros\r\nbirr\r\nbirth\r\nbirthday\r\nbirthdays\r\nbirthday's\r\nbirthed\r\nbirthmark\r\nbirthplace\r\nbirthplaces\r\nbirthright\r\nbirthrights\r\nbirthright's\r\nbirthroot\r\nbirths\r\nbirth's\r\nbirthstone\r\nbirthwort\r\nbiscuit\r\nbiscuits\r\nbiscuit's\r\nbisect\r\nbisected\r\nbisecting\r\nbisection\r\nbisectional\r\nbisectionally\r\nbisections\r\nbisection's\r\nbisector\r\nbisectors\r\nbisector's\r\nbisects\r\nbisexual\r\nbisexuality\r\nbisexually\r\nbisexuals\r\nbisexual's\r\nbishop\r\nbishopric\r\nbishops\r\nbishop's\r\nbismuth\r\nbismuthic\r\nbison\r\nbisons\r\nbison's\r\nbisque\r\nbisques\r\nbissextile\r\nbistort\r\nbistre\r\nbistro\r\nbistros\r\nbisulphate\r\nbisulphide\r\nbisulphite\r\nbisymmetric\r\nbit\r\nbitch\r\nbitchery\r\nbitches\r\nbitchier\r\nbitchily\r\nbitchiness\r\nbitch's\r\nbitchy\r\nbite\r\nbiter\r\nbiters\r\nbites\r\nbiting\r\nbitingly\r\nbitmap\r\nbitmaps\r\nbitmap's\r\nbits\r\nbit's\r\nbitstock\r\nbitted\r\nbitten\r\nbitter\r\nbitterer\r\nbitterest\r\nbitterly\r\nbittern\r\nbitterness\r\nbitternut\r\nbitterroot\r\nbitters\r\nbittersweet\r\nbitty\r\nbitumen\r\nbituminisation\r\nbituminise\r\nbituminised\r\nbituminises\r\nbituminising\r\nbituminoid\r\nbituminous\r\nbitwise\r\nbivalent\r\nbivalve\r\nbivalves\r\nbivalve's\r\nbivouac\r\nbivouacs\r\nbiweekly\r\nbiyearly\r\nbiz\r\nbizarre\r\nbizarrely\r\nbizarreness\r\nblab\r\nblabbed\r\nblabber\r\nblabbered\r\nblabbering\r\nblabbermouth\r\nblabbermouths\r\nblabbing\r\nblabby\r\nblabs\r\nblack\r\nblackball\r\nblackballed\r\nblackballing\r\nblackballs\r\nblackberries\r\nblackberry\r\nblackberry's\r\nblackbird\r\nblackbirder\r\nblackbirds\r\nblackbird's\r\nblackboard\r\nblackboards\r\nblackboard's\r\nblackbodies\r\nblackbody\r\nblackbuck\r\nblackcap\r\nblackcock\r\nblackcurrant\r\nblackdamp\r\nblacked\r\nblacken\r\nblackened\r\nblackener\r\nblackening\r\nblackens\r\nblacker\r\nblackest\r\nblackface\r\nblackfish\r\nblackguard\r\nblackguardism\r\nblackguardly\r\nblackguards\r\nblackguard's\r\nblackhead\r\nblackheart\r\nblacking\r\nblackish\r\nblackjack\r\nblackjacks\r\nblackjack's\r\nblackleg\r\nblacklist\r\nblacklisted\r\nblacklisting\r\nblacklists\r\nblackly\r\nblackmail\r\nblackmailed\r\nblackmailer\r\nblackmailers\r\nblackmailing\r\nblackmails\r\nblackness\r\nblackout\r\nblackouts\r\nblackout's\r\nblackpoll\r\nblacks\r\nblacksmith\r\nblacksmithing\r\nblacksmiths\r\nblacksmith's\r\nblacksnake\r\nblackstrap\r\nblackthorn\r\nblacktop\r\nblacktops\r\nblacktop's\r\nblackwash\r\nbladder\r\nbladdernose\r\nbladdernut\r\nbladders\r\nbladder's\r\nbladderwort\r\nblade\r\nbladed\r\nblades\r\nblade's\r\nblah\r\nblain\r\nblamably\r\nblame\r\nblamed\r\nblameful\r\nblamefully\r\nblameless\r\nblamelessly\r\nblamelessness\r\nblamer\r\nblamers\r\nblames\r\nblameworthiness\r\nblameworthy\r\nblaming\r\nblanc\r\nblanch\r\nblanched\r\nblancher\r\nblanches\r\nblanching\r\nblancmange\r\nbland\r\nblandish\r\nblandisher\r\nblandishment\r\nblandishments\r\nblandly\r\nblandness\r\nblank\r\nblanked\r\nblanker\r\nblankest\r\nblanket\r\nblanketed\r\nblanketing\r\nblankets\r\nblanking\r\nblankly\r\nblankness\r\nblanks\r\nblare\r\nblared\r\nblares\r\nblaring\r\nblarney\r\nblaspheme\r\nblasphemed\r\nblasphemer\r\nblasphemes\r\nblasphemies\r\nblaspheming\r\nblasphemous\r\nblasphemously\r\nblasphemousness\r\nblasphemy\r\nblast\r\nblasted\r\nblaster\r\nblasters\r\nblasting\r\nblastoff\r\nblasts\r\nblastula\r\nblastulas\r\nblastula's\r\nblatancy\r\nblatant\r\nblatantly\r\nblather\r\nblathered\r\nblathering\r\nblaze\r\nblazed\r\nblazer\r\nblazers\r\nblazes\r\nblazing\r\nblazingly\r\nblazon\r\nblazoned\r\nblazoner\r\nblazoning\r\nblazonry\r\nbldg\r\nbleach\r\nbleachable\r\nbleached\r\nbleacher\r\nbleachers\r\nbleaches\r\nbleaching\r\nbleak\r\nbleakish\r\nbleakly\r\nbleakness\r\nblear\r\nblearily\r\nbleariness\r\nbleary\r\nbleat\r\nbleater\r\nbleating\r\nbleats\r\nbleb\r\nbled\r\nbleed\r\nbleeder\r\nbleeders\r\nbleeding\r\nbleedings\r\nbleeds\r\nbleep\r\nbleeped\r\nbleeper\r\nbleeping\r\nbleeps\r\nblemish\r\nblemished\r\nblemishes\r\nblemishing\r\nblemish's\r\nblench\r\nblend\r\nblended\r\nblender\r\nblenders\r\nblending\r\nblends\r\nblennioid\r\nblenny\r\nbless\r\nblessed\r\nblessedly\r\nblessedness\r\nblesses\r\nblessing\r\nblessings\r\nblest\r\nblether\r\nblew\r\nblight\r\nblighted\r\nblighter\r\nblimey\r\nblimp\r\nblimps\r\nblimp's\r\nblind\r\nblinded\r\nblinder\r\nblinders\r\nblindfish\r\nblindfold\r\nblindfolded\r\nblindfolding\r\nblindfolds\r\nblinding\r\nblindingly\r\nblindly\r\nblindness\r\nblinds\r\nblindside\r\nblindsided\r\nblindsides\r\nblindsiding\r\nblindstorey\r\nblindworm\r\nblink\r\nblinked\r\nblinker\r\nblinkered\r\nblinkers\r\nblinking\r\nblinks\r\nblintz\r\nblip\r\nblipping\r\nblips\r\nblip's\r\nbliss\r\nblissful\r\nblissfully\r\nblissfulness\r\nblister\r\nblistered\r\nblistering\r\nblisteringly\r\nblisters\r\nblistery\r\nblithe\r\nblithely\r\nblither\r\nblithesome\r\nblithesomely\r\nblithest\r\nblitz\r\nblitzed\r\nblitzes\r\nblitzkrieg\r\nblitz's\r\nblizzard\r\nblizzards\r\nblizzard's\r\nbloat\r\nbloated\r\nbloater\r\nbloaters\r\nbloating\r\nbloats\r\nblob\r\nblobbing\r\nblobs\r\nblob's\r\nbloc\r\nblock\r\nblockade\r\nblockaded\r\nblockader\r\nblockades\r\nblockading\r\nblockage\r\nblockages\r\nblockage's\r\nblockbuster\r\nblockbusters\r\nblockbusting\r\nblocked\r\nblocker\r\nblockers\r\nblockhead\r\nblockheads\r\nblockhouse\r\nblockhouses\r\nblockier\r\nblocking\r\nblockish\r\nblockishly\r\nblocks\r\nblock's\r\nblocky\r\nblocs\r\nbloc's\r\nbloke\r\nblokes\r\nbloke's\r\nblond\r\nblonde\r\nblondes\r\nblonde's\r\nblondish\r\nblonds\r\nblood\r\nbloodbath\r\nbloodbaths\r\nbloodcurdling\r\nbloodcurdlingly\r\nblooded\r\nbloodguilt\r\nbloodhound\r\nbloodhounds\r\nbloodhound's\r\nbloodied\r\nbloodiest\r\nbloodily\r\nbloodiness\r\nbloodless\r\nbloodlessly\r\nbloodlessness\r\nbloodletting\r\nbloodline\r\nbloodlines\r\nbloodline's\r\nbloodmobile\r\nbloodroot\r\nbloods\r\nbloodshed\r\nbloodshot\r\nbloodstain\r\nbloodstained\r\nbloodstains\r\nbloodstain's\r\nbloodstock\r\nbloodstone\r\nbloodstream\r\nbloodsucker\r\nbloodsucking\r\nbloodthirstily\r\nbloodthirstiness\r\nbloodthirsty\r\nbloodworm\r\nbloody\r\nbloodying\r\nbloom\r\nbloomed\r\nbloomer\r\nbloomers\r\nblooming\r\nblooms\r\nbloomy\r\nblooper\r\nblossom\r\nblossomed\r\nblossoms\r\nblossomy\r\nblot\r\nblotch\r\nblotchily\r\nblotchy\r\nblots\r\nblot's\r\nblotted\r\nblotter\r\nblotting\r\nblotto\r\nblouse\r\nblouses\r\nblouse's\r\nblousing\r\nblouson\r\nblow\r\nblowback\r\nblower\r\nblowers\r\nblowfish\r\nblowfly\r\nblowgun\r\nblowhard\r\nblowhole\r\nblowing\r\nblowlamp\r\nblown\r\nblowpipe\r\nblows\r\nblowsy\r\nblowtorch\r\nblowzy\r\nblubber\r\nblubbered\r\nblubbering\r\nblubbery\r\nblucher\r\nbludgeon\r\nbludgeoned\r\nbludgeoning\r\nbludgeons\r\nblue\r\nbluebeard\r\nbluebell\r\nblueberries\r\nblueberry\r\nblueberry's\r\nbluebill\r\nbluebird\r\nbluebirds\r\nbluebird's\r\nbluebonnet\r\nbluebonnets\r\nbluebonnet's\r\nbluebook\r\nbluebottle\r\nbluecoat\r\nblued\r\nbluefish\r\nbluegill\r\nbluegrass\r\nblueing\r\nbluejacket\r\nbluely\r\nblueness\r\nbluenose\r\nblueprint\r\nblueprinted\r\nblueprinting\r\nblueprints\r\nblueprint's\r\nbluer\r\nblues\r\nbluesman\r\nbluest\r\nbluestem\r\nbluestocking\r\nbluestone\r\nbluesy\r\nbluetongue\r\nblueweed\r\nbluff\r\nbluffed\r\nbluffer\r\nbluffing\r\nbluffly\r\nbluffness\r\nbluffs\r\nbluing\r\nbluish\r\nbluishness\r\nblunder\r\nblunderbuss\r\nblundered\r\nblunderer\r\nblundering\r\nblunderingly\r\nblunderings\r\nblunders\r\nblunt\r\nblunted\r\nblunter\r\nbluntest\r\nblunting\r\nbluntly\r\nbluntness\r\nblunts\r\nblur\r\nblurb\r\nblurred\r\nblurredly\r\nblurrier\r\nblurrily\r\nblurriness\r\nblurring\r\nblurry\r\nblurs\r\nblur's\r\nblurt\r\nblurted\r\nblurter\r\nblurting\r\nblurts\r\nblush\r\nblushed\r\nblusher\r\nblushes\r\nblushful\r\nblushing\r\nblushingly\r\nbluster\r\nblustered\r\nblusterer\r\nblustering\r\nblusteringly\r\nblusterous\r\nblusters\r\nblustery\r\nboa\r\nboar\r\nboard\r\nboarded\r\nboarder\r\nboarders\r\nboarding\r\nboardroom\r\nboards\r\nboardwalk\r\nboarfish\r\nboarhound\r\nboas\r\nboast\r\nboasted\r\nboaster\r\nboasters\r\nboastful\r\nboastfully\r\nboastfulness\r\nboasting\r\nboastings\r\nboasts\r\nboat\r\nboatbill\r\nboated\r\nboatel\r\nboatels\r\nboater\r\nboaters\r\nboathook\r\nboathouse\r\nboathouses\r\nboathouse's\r\nboating\r\nboatload\r\nboatloads\r\nboatload's\r\nboatman\r\nboatmanship\r\nboatmen\r\nboats\r\nboatswain\r\nboatswains\r\nboatswain's\r\nboatyard\r\nboatyards\r\nboatyard's\r\nbob\r\nbobbed\r\nbobber\r\nbobbies\r\nbobbin\r\nbobbinet\r\nbobbing\r\nbobbins\r\nbobbin's\r\nbobble\r\nbobbled\r\nbobbles\r\nbobbling\r\nbobby\r\nbobbysoxer\r\nbobcat\r\nbobolink\r\nbobolinks\r\nbobolink's\r\nbobs\r\nbob's\r\nbobsled\r\nbobsledder\r\nbobsledding\r\nbobsleigh\r\nbobstay\r\nbobtail\r\nbobtailed\r\nbobwhite\r\nbobwhites\r\nbobwhite's\r\nbock\r\nbodacious\r\nbode\r\nboded\r\nbodega\r\nbodes\r\nbodge\r\nbodhisattva\r\nbodice\r\nbodied\r\nbodies\r\nbodiless\r\nbodily\r\nboding\r\nbodkin\r\nbody\r\nbodybuilder\r\nbodybuilders\r\nbodybuilder's\r\nbodybuilding\r\nbodyguard\r\nbodyguards\r\nbodyguard's\r\nbodying\r\nbodysurf\r\nbodysurfer\r\nbodyweight\r\nbodywork\r\nboffin\r\nbog\r\nbogey\r\nbogeyed\r\nbogeying\r\nbogeyman\r\nbogeyman's\r\nbogeymen\r\nbogeys\r\nbogged\r\nbogging\r\nboggle\r\nboggled\r\nboggles\r\nboggling\r\nboggy\r\nbogie\r\nbogies\r\nbogs\r\nbog's\r\nbogtrotter\r\nbogus\r\nbogwood\r\nbogy\r\nboil\r\nboiled\r\nboiler\r\nboilermaker\r\nboilermakers\r\nboilermaker's\r\nboilerplate\r\nboilers\r\nboiling\r\nboils\r\nboisterous\r\nboisterously\r\nboisterousness\r\nbola\r\nbolas\r\nbold\r\nbolder\r\nboldest\r\nboldface\r\nboldfaced\r\nboldfaces\r\nboldfacing\r\nboldly\r\nboldness\r\nbole\r\nbolection\r\nbolero\r\nboletus\r\nboliviano\r\nboll\r\nbollard\r\nbollix\r\nbollocks\r\nbollworm\r\nbolo\r\nbolometer\r\nbolometric\r\nboloney\r\nbolos\r\nbolshevise\r\nbolster\r\nbolstered\r\nbolsterer\r\nbolstering\r\nbolsters\r\nbolt\r\nbolted\r\nbolter\r\nbolting\r\nboltrope\r\nbolts\r\nbolus\r\nbomb\r\nbombard\r\nbombarded\r\nbombardier\r\nbombardiers\r\nbombarding\r\nbombardment\r\nbombardments\r\nbombardon\r\nbombards\r\nbombast\r\nbombastic\r\nbombastically\r\nbombazine\r\nbombe\r\nbombed\r\nbomber\r\nbombers\r\nbombing\r\nbombings\r\nbombproof\r\nbombs\r\nbombshell\r\nbombsight\r\nbombycid\r\nbon\r\nbona\r\nbonanza\r\nbonanzas\r\nbonanza's\r\nbonbon\r\nbond\r\nbondable\r\nbondage\r\nbonded\r\nbonder\r\nbonders\r\nbondholder\r\nbonding\r\nbondmaid\r\nbondman\r\nbonds\r\nbondservant\r\nbondsman\r\nbondsmen\r\nbondwoman\r\nbone\r\nboneblack\r\nboned\r\nbonefish\r\nbonehead\r\nboneheaded\r\nboneless\r\nboner\r\nboners\r\nbones\r\nboneset\r\nbonesetter\r\nboneshaker\r\nbonfire\r\nbonfires\r\nbonfire's\r\nbong\r\nbongo\r\nbonhomie\r\nbonier\r\nboning\r\nbonito\r\nbonjour\r\nbonkers\r\nbonnet\r\nbonneted\r\nbonnets\r\nbonnier\r\nbonnily\r\nbonny\r\nbonsai\r\nbonspiel\r\nbonus\r\nbonuses\r\nbonus's\r\nbony\r\nbonze\r\nbonzes\r\nboo\r\nboob\r\nboobies\r\nbooboo\r\nbooby\r\nboodle\r\nbooger\r\nboogie\r\nboohoo\r\nbook\r\nbookbinder\r\nbookbinders\r\nbookbindery\r\nbookbinding\r\nbookcase\r\nbookcases\r\nbookcase's\r\nbooked\r\nbookend\r\nbookends\r\nbooker\r\nbookers\r\nbookie\r\nbookies\r\nbookie's\r\nbooking\r\nbookings\r\nbookish\r\nbookishly\r\nbookishness\r\nbookkeeper\r\nbookkeepers\r\nbookkeeper's\r\nbookkeeping\r\nbooklet\r\nbooklets\r\nbooklet's\r\nbooklist\r\nbooklouse\r\nbookmaker\r\nbookmakers\r\nbookmaking\r\nbookman\r\nbookmark\r\nbookmarker\r\nbookmarkers\r\nbookmarks\r\nbookmark's\r\nbookmobile\r\nbookmobiles\r\nbookplate\r\nbookplates\r\nbooks\r\nbookseller\r\nbooksellers\r\nbookseller's\r\nbookselling\r\nbookshelf\r\nbookshelf's\r\nbookshelves\r\nbookstall\r\nbookstore\r\nbookstores\r\nbookstore's\r\nbookworm\r\nbookworms\r\nbookworm's\r\nboolean\r\nboom\r\nboomed\r\nboomer\r\nboomerang\r\nboomerangs\r\nboomerang's\r\nbooming\r\nbooms\r\nboomtown\r\nboomtowns\r\nboon\r\nboondocks\r\nboondoggle\r\nboondoggling\r\nboor\r\nboorish\r\nboorishly\r\nboorishness\r\nboors\r\nboor's\r\nboos\r\nboost\r\nboosted\r\nbooster\r\nboosting\r\nboosts\r\nboot\r\nbootblack\r\nbootblacks\r\nbooted\r\nbootee\r\nbooth\r\nbooths\r\nbootie\r\nbooties\r\nbooting\r\nbootjack\r\nbootlace\r\nbootleg\r\nbootlegged\r\nbootlegger\r\nbootleggers\r\nbootlegger's\r\nbootlegging\r\nbootlegs\r\nbootless\r\nbootlessly\r\nbootlessness\r\nbootlick\r\nbootlicker\r\nboots\r\nbootstrap\r\nbootstrapped\r\nbootstrapping\r\nbootstraps\r\nbootstrap's\r\nbooty\r\nbooze\r\nboozer\r\nboozing\r\nboozy\r\nbop\r\nbopper\r\nbopping\r\nborage\r\nboraginaceous\r\nborate\r\nborated\r\nborates\r\nborax\r\nborazon\r\nbordello\r\nbordellos\r\nbordello's\r\nborder\r\nbordereau\r\nbordered\r\nborderer\r\nbordering\r\nborderland\r\nborderlands\r\nborderland's\r\nborderline\r\nborders\r\nbordure\r\nbore\r\nboreal\r\nborecole\r\nbored\r\nboredom\r\nborehole\r\nboreholes\r\nborer\r\nborers\r\nbores\r\nboric\r\nboride\r\nboring\r\nboringly\r\nboringness\r\nborn\r\nborne\r\nboron\r\nborosilicate\r\nborough\r\nboroughs\r\nborrow\r\nborrowed\r\nborrower\r\nborrowers\r\nborrowing\r\nborrowings\r\nborrows\r\nborstal\r\nborzoi\r\nbosh\r\nbosom\r\nbosoms\r\nbosom's\r\nbosomy\r\nboson\r\nboss\r\nbossed\r\nbosses\r\nbossier\r\nbossiness\r\nbossism\r\nbossy\r\nbotanic\r\nbotanical\r\nbotanically\r\nbotanise\r\nbotanised\r\nbotanises\r\nbotanising\r\nbotanist\r\nbotanists\r\nbotanist's\r\nbotany\r\nbotch\r\nbotched\r\nbotchers\r\nbotches\r\nbotching\r\nbotchy\r\nbotfly\r\nboth\r\nbother\r\nbotheration\r\nbothered\r\nbothering\r\nbothers\r\nbothersome\r\nbots\r\nbottle\r\nbottlebrush\r\nbottled\r\nbottleful\r\nbottleneck\r\nbottlenecks\r\nbottleneck's\r\nbottlenose\r\nbottler\r\nbottlers\r\nbottles\r\nbottling\r\nbottom\r\nbottomed\r\nbottoming\r\nbottomland\r\nbottomless\r\nbottommost\r\nbottoms\r\nbotulism\r\nboucle\r\nboudoir\r\nbouffant\r\nbougainvillaea\r\nbougainvillea\r\nbough\r\nboughs\r\nbough's\r\nbought\r\nbouillabaisse\r\nbouillon\r\nboulder\r\nboulders\r\nboulder's\r\nboulevard\r\nboulevardier\r\nboulevards\r\nboulevard's\r\nbouleversement\r\nbounce\r\nbounced\r\nbouncer\r\nbouncers\r\nbounces\r\nbouncier\r\nbouncily\r\nbouncing\r\nbouncingly\r\nbouncy\r\nbound\r\nboundaries\r\nboundary\r\nboundary's\r\nbounded\r\nbounden\r\nbounder\r\nbounding\r\nboundless\r\nboundlessly\r\nboundlessness\r\nbounds\r\nbounteous\r\nbounteously\r\nbounteousness\r\nbounties\r\nbountiful\r\nbountifully\r\nbountifulness\r\nbounty\r\nbounty's\r\nbouquet\r\nbouquets\r\nbouquet's\r\nbourbon\r\nbourbons\r\nbourdon\r\nbourgeois\r\nbourgeoisie\r\nbourgeon\r\nbourn\r\nbourse\r\nboustrophedon\r\nbout\r\nboutique\r\nboutiques\r\nboutonniere\r\nbouts\r\nbout's\r\nbouzouki\r\nbovid\r\nbovine\r\nbovines\r\nbovver\r\nbow\r\nbowdlerisation\r\nbowdlerise\r\nbowdlerised\r\nbowdleriser\r\nbowdlerises\r\nbowdlerising\r\nbowed\r\nbowel\r\nbowelled\r\nbowels\r\nbowel's\r\nbower\r\nbowerbird\r\nbowerbirds\r\nbowerbird's\r\nbowers\r\nbowery\r\nbowfin\r\nbowhead\r\nbowie\r\nbowing\r\nbowknot\r\nbowl\r\nbowled\r\nbowleg\r\nbowlegged\r\nbowler\r\nbowlers\r\nbowlful\r\nbowline\r\nbowlines\r\nbowline's\r\nbowling\r\nbowls\r\nbowman\r\nbowmen\r\nbows\r\nbowser\r\nbowshot\r\nbowsprit\r\nbowstring\r\nbowstrings\r\nbowstring's\r\nbowyer\r\nbox\r\nboxboard\r\nboxcar\r\nboxcars\r\nboxcar's\r\nboxed\r\nboxer\r\nboxers\r\nboxes\r\nboxfish\r\nboxful\r\nboxhaul\r\nboxier\r\nboxing\r\nboxlike\r\nboxthorn\r\nboxwood\r\nboxy\r\nboy\r\nboyar\r\nboyars\r\nboycott\r\nboycotted\r\nboycotter\r\nboycotting\r\nboycotts\r\nboyfriend\r\nboyfriends\r\nboyfriend's\r\nboyhood\r\nboyish\r\nboyishly\r\nboyishness\r\nboys\r\nboy's\r\nboysenberry\r\nbozo\r\nbozos\r\nbpi\r\nbra\r\nbrace\r\nbraced\r\nbracelet\r\nbracelets\r\nbracelet's\r\nbracer\r\nbraces\r\nbrachia\r\nbrachial\r\nbrachiopod\r\nbrachium\r\nbrachylogy\r\nbrachyuran\r\nbracing\r\nbracken\r\nbracket\r\nbracketed\r\nbracketing\r\nbrackets\r\nbrackish\r\nbrackishness\r\nbract\r\nbracteole\r\nbrad\r\nbradawl\r\nbrae\r\nbraes\r\nbrae's\r\nbrag\r\nbraggadocio\r\nbraggart\r\nbragged\r\nbragger\r\nbragging\r\nbrags\r\nbraid\r\nbraided\r\nbraider\r\nbraiding\r\nbraids\r\nbrail\r\nbraille\r\nbraillewriter\r\nbrain\r\nbraincase\r\nbrainchild\r\nbrainchildren\r\nbrainchild's\r\nbrained\r\nbrainier\r\nbraininess\r\nbraining\r\nbrainless\r\nbrainlessly\r\nbrainlessness\r\nbrainpan\r\nbrainpower\r\nbrains\r\nbrainsick\r\nbrainsickly\r\nbrainstem\r\nbrainstems\r\nbrainstem's\r\nbrainstorm\r\nbrainstorming\r\nbrainstorms\r\nbrainstorm's\r\nbrainteaser\r\nbrainwash\r\nbrainwashed\r\nbrainwasher\r\nbrainwashes\r\nbrainwashing\r\nbrainy\r\nbraise\r\nbraised\r\nbraises\r\nbraising\r\nbrake\r\nbraked\r\nbrakeless\r\nbrakeman\r\nbrakemen\r\nbrakemen's\r\nbrakes\r\nbraking\r\nbramble\r\nbrambles\r\nbramble's\r\nbrambling\r\nbrambly\r\nbramley\r\nbran\r\nbranch\r\nbranched\r\nbranches\r\nbranchiate\r\nbranching\r\nbranchiopod\r\nbranchless\r\nbranchy\r\nbrand\r\nbranded\r\nbrander\r\nbrandied\r\nbrandies\r\nbranding\r\nbrandish\r\nbrandishes\r\nbrandishing\r\nbrandling\r\nbrands\r\nbrandy\r\nbrandying\r\nbras\r\nbra's\r\nbrash\r\nbrashly\r\nbrashness\r\nbrass\r\nbrassard\r\nbrassbound\r\nbrasses\r\nbrassier\r\nbrassiere\r\nbrassily\r\nbrassiness\r\nbrassy\r\nbrat\r\nbrats\r\nbrat's\r\nbrattice\r\nbrattle\r\nbrattled\r\nbrattling\r\nbratty\r\nbratwurst\r\nbravado\r\nbrave\r\nbraved\r\nbravely\r\nbraveness\r\nbraver\r\nbravery\r\nbraves\r\nbravest\r\nbraving\r\nbravo\r\nbravoes\r\nbravos\r\nbravura\r\nbraw\r\nbrawl\r\nbrawled\r\nbrawler\r\nbrawlier\r\nbrawling\r\nbrawls\r\nbrawly\r\nbrawn\r\nbrawnier\r\nbrawniness\r\nbrawny\r\nbraxy\r\nbray\r\nbrayed\r\nbrayer\r\nbraying\r\nbrays\r\nbraze\r\nbrazed\r\nbrazen\r\nbrazened\r\nbrazening\r\nbrazenly\r\nbrazenness\r\nbrazes\r\nbrazier\r\nbraziers\r\nbrazier's\r\nbrazils\r\nbrazing\r\nbreach\r\nbreached\r\nbreaches\r\nbreaching\r\nbread\r\nbreadbasket\r\nbreadbaskets\r\nbreadboard\r\nbreadboards\r\nbreadboard's\r\nbreaded\r\nbreadfruit\r\nbreadfruits\r\nbreading\r\nbreadline\r\nbreadnut\r\nbreadnuts\r\nbreadroot\r\nbreads\r\nbreadstuff\r\nbreadth\r\nbreadthways\r\nbreadwinner\r\nbreadwinners\r\nbreadwinner's\r\nbreadwinning\r\nbreak\r\nbreakable\r\nbreakables\r\nbreakage\r\nbreakaway\r\nbreakdown\r\nbreakdowns\r\nbreakdown's\r\nbreaker\r\nbreakers\r\nbreakeven\r\nbreakfast\r\nbreakfasted\r\nbreakfaster\r\nbreakfasters\r\nbreakfasting\r\nbreakfasts\r\nbreakfront\r\nbreaking\r\nbreakneck\r\nbreakout\r\nbreakpoint\r\nbreakpoints\r\nbreakpoint's\r\nbreaks\r\nbreakthrough\r\nbreakthroughs\r\nbreakthrough's\r\nbreakwater\r\nbreakwaters\r\nbreakwater's\r\nbream\r\nbreams\r\nbreast\r\nbreastbone\r\nbreasted\r\nbreastfed\r\nbreastfeed\r\nbreastfeeding\r\nbreasting\r\nbreastpin\r\nbreastplate\r\nbreasts\r\nbreaststroke\r\nbreaststroker\r\nbreastwork\r\nbreastworks\r\nbreastwork's\r\nbreath\r\nbreathable\r\nbreathalyse\r\nbreathalyzer\r\nbreathe\r\nbreathed\r\nbreather\r\nbreathers\r\nbreathes\r\nbreathier\r\nbreathing\r\nbreathless\r\nbreathlessly\r\nbreathlessness\r\nbreaths\r\nbreathtaking\r\nbreathtakingly\r\nbreathy\r\nbreccias\r\nbrecciate\r\nbred\r\nbreech\r\nbreechblock\r\nbreechcloth\r\nbreechclout\r\nbreeches\r\nbreeching\r\nbreechloader\r\nbreech's\r\nbreed\r\nbreeder\r\nbreeding\r\nbreeds\r\nbreeze\r\nbreezed\r\nbreezeless\r\nbreezes\r\nbreeze's\r\nbreezeway\r\nbreezier\r\nbreezily\r\nbreeziness\r\nbreezing\r\nbreezy\r\nbrethren\r\nbrevet\r\nbreveted\r\nbreveting\r\nbrevets\r\nbreviaries\r\nbreviary\r\nbrevier\r\nbrevity\r\nbrew\r\nbrewage\r\nbrewed\r\nbrewer\r\nbreweries\r\nbrewers\r\nbrewery\r\nbrewery's\r\nbrewing\r\nbrews\r\nbriar\r\nbriarroot\r\nbriars\r\nbriar's\r\nbribe\r\nbribed\r\nbriber\r\nbribers\r\nbribery\r\nbribes\r\nbribing\r\nbrick\r\nbrickbat\r\nbricked\r\nbricking\r\nbricklayer\r\nbricklayers\r\nbricklayer's\r\nbricklaying\r\nbricks\r\nbrickwork\r\nbrickyard\r\nbridal\r\nbride\r\nbridegroom\r\nbrides\r\nbride's\r\nbridesmaid\r\nbridesmaids\r\nbridesmaid's\r\nbridge\r\nbridgeable\r\nbridgeboard\r\nbridged\r\nbridgehead\r\nbridgeheads\r\nbridgehead's\r\nbridgeless\r\nbridges\r\nbridgework\r\nbridgework's\r\nbridging\r\nbridle\r\nbridled\r\nbridles\r\nbridling\r\nbrie\r\nbrief\r\nbriefcase\r\nbriefcases\r\nbriefcase's\r\nbriefed\r\nbriefer\r\nbriefest\r\nbriefing\r\nbriefings\r\nbriefing's\r\nbriefly\r\nbriefness\r\nbriefs\r\nbrier\r\nbrig\r\nbrigade\r\nbrigaded\r\nbrigades\r\nbrigade's\r\nbrigadier\r\nbrigadiers\r\nbrigadier's\r\nbrigading\r\nbrigand\r\nbrigandage\r\nbrigandine\r\nbrigands\r\nbrigand's\r\nbrigantine\r\nbright\r\nbrighten\r\nbrightened\r\nbrightener\r\nbrighteners\r\nbrightening\r\nbrightens\r\nbrighter\r\nbrightest\r\nbrightly\r\nbrightness\r\nbrigs\r\nbrig's\r\nbrilliance\r\nbrilliancy\r\nbrilliant\r\nbrilliantine\r\nbrilliantly\r\nbrilliantness\r\nbrim\r\nbrimful\r\nbrimless\r\nbrimmed\r\nbrimming\r\nbrimstone\r\nbrindle\r\nbrindled\r\nbrine\r\nbring\r\nbringer\r\nbringers\r\nbringing\r\nbrings\r\nbrinier\r\nbrininess\r\nbrining\r\nbrink\r\nbrinkmanship\r\nbrinksmanship\r\nbriny\r\nbrio\r\nbrioche\r\nbriolette\r\nbriquette\r\nbrisance\r\nbrisk\r\nbrisker\r\nbrisket\r\nbriskly\r\nbriskness\r\nbrisling\r\nbristle\r\nbristlecone\r\nbristled\r\nbristles\r\nbristletail\r\nbristlier\r\nbristling\r\nbristly\r\nbritches\r\nbrittle\r\nbrittleness\r\nbritzka\r\nbroach\r\nbroached\r\nbroacher\r\nbroaches\r\nbroaching\r\nbroad\r\nbroadband\r\nbroadbill\r\nbroadcast\r\nbroadcasted\r\nbroadcaster\r\nbroadcasters\r\nbroadcasting\r\nbroadcastings\r\nbroadcasts\r\nbroadcloth\r\nbroaden\r\nbroadened\r\nbroadening\r\nbroadenings\r\nbroadens\r\nbroader\r\nbroadest\r\nbroadleaf\r\nbroadloom\r\nbroadly\r\nbroadminded\r\nbroadness\r\nbroads\r\nbroadsheet\r\nbroadside\r\nbroadsword\r\nbroadtail\r\nbrocade\r\nbrocaded\r\nbrocatelle\r\nbroccoli\r\nbrochette\r\nbrochure\r\nbrochures\r\nbrochure's\r\nbrocket\r\nbrogan\r\nbrogue\r\nbroider\r\nbroidery\r\nbroil\r\nbroiled\r\nbroiler\r\nbroilers\r\nbroiling\r\nbroils\r\nbroke\r\nbroken\r\nbrokenly\r\nbrokenness\r\nbroker\r\nbrokerage\r\nbrokers\r\nbrollies\r\nbrolly\r\nbromated\r\nbromating\r\nbrome\r\nbromeliad\r\nbromide\r\nbromides\r\nbromide's\r\nbromidic\r\nbromine\r\nbromines\r\nbronchi\r\nbronchia\r\nbronchial\r\nbronchiolar\r\nbronchiole\r\nbronchioles\r\nbronchiole's\r\nbronchitis\r\nbronchopneumonia\r\nbronchoscope\r\nbronchus\r\nbronco\r\nbroncobuster\r\nbroncos\r\nbrontosaur\r\nbrontosaurus\r\nbronze\r\nbronzed\r\nbronzer\r\nbronzes\r\nbronzing\r\nbronzy\r\nbrooch\r\nbrooches\r\nbrooch's\r\nbrood\r\nbrooder\r\nbroodiness\r\nbrooding\r\nbroodingly\r\nbroods\r\nbroody\r\nbrook\r\nbrooked\r\nbrooklime\r\nbrooks\r\nbroom\r\nbroomball\r\nbroomcorn\r\nbroomrape\r\nbrooms\r\nbroom's\r\nbroomstick\r\nbroomsticks\r\nbroomstick's\r\nbrose\r\nbroth\r\nbrothel\r\nbrothels\r\nbrothel's\r\nbrother\r\nbrotherhood\r\nbrotherliness\r\nbrotherly\r\nbrothers\r\nbrother's\r\nbroths\r\nbrougham\r\nbroughams\r\nbrought\r\nbrouhaha\r\nbrow\r\nbrowbeat\r\nbrowbeaten\r\nbrowbeating\r\nbrowbeats\r\nbrown\r\nbrowned\r\nbrowner\r\nbrownest\r\nbrownie\r\nbrownies\r\nbrownie's\r\nbrowning\r\nbrownish\r\nbrownness\r\nbrownnose\r\nbrownnoser\r\nbrownout\r\nbrowns\r\nbrownstone\r\nbrownstones\r\nbrows\r\nbrow's\r\nbrowse\r\nbrowsed\r\nbrowser\r\nbrowsers\r\nbrowses\r\nbrowsing\r\nbrucellosis\r\nbruin\r\nbruise\r\nbruised\r\nbruiser\r\nbruisers\r\nbruises\r\nbruising\r\nbruit\r\nbrumal\r\nbrumby\r\nbrume\r\nbrunch\r\nbrunches\r\nbrunet\r\nbrunette\r\nbrunettes\r\nbrunt\r\nbrush\r\nbrushed\r\nbrusher\r\nbrushes\r\nbrushfire\r\nbrushfires\r\nbrushfire's\r\nbrushier\r\nbrushing\r\nbrushless\r\nbrushstroke\r\nbrushstrokes\r\nbrushstroke's\r\nbrushwood\r\nbrushwork\r\nbrushy\r\nbrusque\r\nbrusquely\r\nbrusqueness\r\nbrut\r\nbrutal\r\nbrutalisation\r\nbrutalise\r\nbrutalised\r\nbrutalises\r\nbrutalising\r\nbrutalities\r\nbrutality\r\nbrutally\r\nbrute\r\nbrutes\r\nbrute's\r\nbrutish\r\nbrutishly\r\nbrutishness\r\nbryony\r\nbryophyte\r\nbubal\r\nbubaline\r\nbubble\r\nbubbled\r\nbubbler\r\nbubbles\r\nbubblier\r\nbubbling\r\nbubbly\r\nbubby\r\nbubonic\r\nbuccaneer\r\nbuccaneers\r\nbuccaneer's\r\nbuck\r\nbuckaroo\r\nbuckaroos\r\nbuckbean\r\nbuckboard\r\nbuckboards\r\nbuckboard's\r\nbucked\r\nbucker\r\nbucket\r\nbucketed\r\nbucketful\r\nbucketful's\r\nbucketing\r\nbuckets\r\nbucket's\r\nbucketsful\r\nbuckeye\r\nbuckhorn\r\nbuckhound\r\nbucking\r\nbuckish\r\nbuckle\r\nbuckled\r\nbuckler\r\nbuckles\r\nbuckling\r\nbucko\r\nbuckra\r\nbuckram\r\nbucks\r\nbucksaw\r\nbuckshee\r\nbuckshot\r\nbuckskin\r\nbuckskins\r\nbuckthorn\r\nbucktooth\r\nbuckwheat\r\nbucolic\r\nbucolically\r\nbud\r\nbudded\r\nbuddies\r\nbudding\r\nbuddle\r\nbuddy\r\nbuddy's\r\nbudge\r\nbudged\r\nbudgerigar\r\nbudges\r\nbudget\r\nbudgetary\r\nbudgeted\r\nbudgeter\r\nbudgeters\r\nbudgeting\r\nbudgets\r\nbudgie\r\nbudging\r\nbuds\r\nbud's\r\nbuff\r\nbuffalo\r\nbuffaloes\r\nbuffer\r\nbuffered\r\nbuffering\r\nbuffers\r\nbuffer's\r\nbuffet\r\nbuffeted\r\nbuffeting\r\nbuffetings\r\nbuffets\r\nbuffing\r\nbufflehead\r\nbuffo\r\nbuffoon\r\nbuffoonery\r\nbuffoonish\r\nbuffoons\r\nbuffoon's\r\nbuffs\r\nbuff's\r\nbug\r\nbugaboo\r\nbugbane\r\nbugbear\r\nbugbears\r\nbugged\r\nbugger\r\nbuggered\r\nbuggering\r\nbuggers\r\nbugger's\r\nbuggery\r\nbuggies\r\nbugging\r\nbuggy\r\nbuggy's\r\nbughouse\r\nbugle\r\nbugled\r\nbugler\r\nbugles\r\nbugleweed\r\nbugling\r\nbugloss\r\nbugs\r\nbug's\r\nbuild\r\nbuilder\r\nbuilders\r\nbuilding\r\nbuildings\r\nbuilding's\r\nbuilds\r\nbuilt\r\nbulb\r\nbulbaceous\r\nbulbar\r\nbulbiferous\r\nbulbous\r\nbulbously\r\nbulbs\r\nbulb's\r\nbulbul\r\nbulge\r\nbulged\r\nbulges\r\nbulginess\r\nbulging\r\nbulgur\r\nbulgy\r\nbulimia\r\nbulk\r\nbulked\r\nbulkhead\r\nbulkheads\r\nbulkhead's\r\nbulkier\r\nbulkily\r\nbulkiness\r\nbulks\r\nbulky\r\nbull\r\nbulla\r\nbullbat\r\nbulldog\r\nbulldogger\r\nbulldogs\r\nbulldog's\r\nbulldoze\r\nbulldozed\r\nbulldozer\r\nbulldozers\r\nbulldozes\r\nbulldozing\r\nbulled\r\nbullet\r\nbulletin\r\nbulletins\r\nbulletin's\r\nbullets\r\nbullet's\r\nbullfight\r\nbullfighter\r\nbullfighting\r\nbullfinch\r\nbullfrog\r\nbullhead\r\nbullheadedness\r\nbullhorn\r\nbullied\r\nbullies\r\nbulling\r\nbullion\r\nbullish\r\nbullishness\r\nbullnecked\r\nbullock\r\nbullpen\r\nbullring\r\nbullroarer\r\nbulls\r\nbullshit\r\nbullterrier\r\nbullwhackers\r\nbullwhip\r\nbully\r\nbullyboy\r\nbullyboys\r\nbullying\r\nbullyrag\r\nbulrush\r\nbulwark\r\nbum\r\nbumbershoot\r\nbumble\r\nbumblebee\r\nbumblebees\r\nbumblebee's\r\nbumbled\r\nbumbles\r\nbumbling\r\nbumboat\r\nbumf\r\nbummed\r\nbummer\r\nbummers\r\nbumming\r\nbump\r\nbumped\r\nbumper\r\nbumpers\r\nbumph\r\nbumpier\r\nbumpily\r\nbumpiness\r\nbumping\r\nbumpkin\r\nbumpkins\r\nbumpkin's\r\nbumps\r\nbumptious\r\nbumptiousness\r\nbumpy\r\nbums\r\nbum's\r\nbun\r\nbunch\r\nbunched\r\nbunches\r\nbunching\r\nbunchy\r\nbuncombe\r\nbund\r\nbundle\r\nbundled\r\nbundler\r\nbundles\r\nbundling\r\nbung\r\nbungalow\r\nbungalows\r\nbungalow's\r\nbunger\r\nbunghole\r\nbungle\r\nbungled\r\nbungler\r\nbunglers\r\nbungles\r\nbungling\r\nbunglingly\r\nbunion\r\nbunions\r\nbunion's\r\nbunk\r\nbunked\r\nbunker\r\nbunkered\r\nbunkering\r\nbunkers\r\nbunker's\r\nbunkhouse\r\nbunkhouses\r\nbunkhouse's\r\nbunking\r\nbunkmate\r\nbunkmates\r\nbunkmate's\r\nbunko\r\nbunks\r\nbunkum\r\nbunnies\r\nbunny\r\nbunny's\r\nbuns\r\nbun's\r\nbunt\r\nbunted\r\nbunter\r\nbunters\r\nbunting\r\nbuntline\r\nbunts\r\nbuoy\r\nbuoyancy\r\nbuoyant\r\nbuoyantly\r\nbuoyed\r\nbuoying\r\nbuoys\r\nbuprestid\r\nbur\r\nburble\r\nburbled\r\nburbler\r\nburbles\r\nburbling\r\nburden\r\nburdened\r\nburdening\r\nburdens\r\nburden's\r\nburdensome\r\nburdensomely\r\nburdensomeness\r\nburdock\r\nbureau\r\nbureaucracies\r\nbureaucracy\r\nbureaucracy's\r\nbureaucrat\r\nbureaucratic\r\nbureaucratically\r\nbureaucratisation\r\nbureaucratisation's\r\nbureaucratise\r\nbureaucratised\r\nbureaucratises\r\nbureaucrats\r\nbureaucrat's\r\nbureaus\r\nbureau's\r\nbureaux\r\nburette\r\nburettes\r\nburg\r\nburgee\r\nburgeon\r\nburgeoned\r\nburgeoning\r\nburgeons\r\nburger\r\nburgers\r\nburgess\r\nburgesses\r\nburgess's\r\nburgher\r\nburghers\r\nburgher's\r\nburglar\r\nburglaries\r\nburglarious\r\nburglars\r\nburglar's\r\nburglary\r\nburglary's\r\nburgle\r\nburgled\r\nburgles\r\nburgling\r\nburgomaster\r\nburgomasters\r\nburgonet\r\nburgoo\r\nburgoos\r\nburial\r\nburied\r\nburier\r\nburies\r\nburin\r\nburking\r\nburl\r\nburlap\r\nburled\r\nburlesque\r\nburlesqued\r\nburlesquer\r\nburlesques\r\nburlesquing\r\nburley\r\nburlier\r\nburliness\r\nburly\r\nburn\r\nburnable\r\nburned\r\nburner\r\nburners\r\nburnet\r\nburning\r\nburningly\r\nburnings\r\nburnish\r\nburnished\r\nburnishes\r\nburnishing\r\nburnoose\r\nburnout\r\nburns\r\nburnt\r\nburp\r\nburped\r\nburping\r\nburps\r\nburr\r\nburred\r\nburrier\r\nburro\r\nburros\r\nburro's\r\nburrow\r\nburrowed\r\nburrower\r\nburrowing\r\nburrows\r\nburrs\r\nburr's\r\nburrstone\r\nburry\r\nbursa\r\nbursar\r\nbursarial\r\nbursary\r\nbursas\r\nburse\r\nbursiform\r\nbursitis\r\nburst\r\nbursting\r\nbursts\r\nburthen\r\nbury\r\nburying\r\nbus\r\nbusbies\r\nbusboy\r\nbusboys\r\nbusboy's\r\nbuses\r\nbush\r\nbushbuck\r\nbushbucks\r\nbushed\r\nbushel\r\nbushels\r\nbushel's\r\nbushes\r\nbushfire\r\nbushido\r\nbushier\r\nbushiness\r\nbushing\r\nbushings\r\nbushman\r\nbushmaster\r\nbushranger\r\nbushtit\r\nbushwhack\r\nbushwhacked\r\nbushwhacker\r\nbushwhacking\r\nbushwhacks\r\nbushy\r\nbusied\r\nbusier\r\nbusies\r\nbusiest\r\nbusily\r\nbusiness\r\nbusinesses\r\nbusinesslike\r\nbusinessman\r\nbusinessmen\r\nbusiness's\r\nbusinesswoman\r\nbusinesswoman's\r\nbusinesswomen\r\nbusker\r\nbuskin\r\nbusload\r\nbusloads\r\nbusload's\r\nbuss\r\nbussed\r\nbusses\r\nbussing\r\nbust\r\nbustard\r\nbustards\r\nbustard's\r\nbusted\r\nbuster\r\nbusting\r\nbustle\r\nbustled\r\nbustling\r\nbustlingly\r\nbusts\r\nbusty\r\nbusy\r\nbusybody\r\nbusying\r\nbusyness\r\nbusywork\r\nbut\r\nbutadiene\r\nbutane\r\nbutanone\r\nbutch\r\nbutcher\r\nbutcherbird\r\nbutchered\r\nbutchering\r\nbutcherly\r\nbutchers\r\nbutcher's\r\nbutchery\r\nbutler\r\nbutlers\r\nbutler's\r\nbutt\r\nbutte\r\nbutted\r\nbutter\r\nbutterball\r\nbutterbur\r\nbuttercup\r\nbuttered\r\nbutterfat\r\nbutterfingered\r\nbutterfingers\r\nbutterfish\r\nbutterflies\r\nbutterfly\r\nbutterfly's\r\nbuttering\r\nbuttermilk\r\nbutternut\r\nbutters\r\nbutterscotch\r\nbutterweed\r\nbutterwort\r\nbuttery\r\nbuttes\r\nbutting\r\nbuttinski\r\nbuttock\r\nbuttocks\r\nbuttock's\r\nbutton\r\nbuttonball\r\nbuttonbush\r\nbuttoned\r\nbuttoner\r\nbuttonhole\r\nbuttonholer\r\nbuttonholes\r\nbuttonhole's\r\nbuttonhook\r\nbuttoning\r\nbuttonmould\r\nbuttons\r\nbuttonwood\r\nbuttress\r\nbuttressed\r\nbuttresses\r\nbuttressing\r\nbutts\r\nbutt's\r\nbutut\r\nbutyl\r\nbutyrate\r\nbutyric\r\nbuxom\r\nbuxomly\r\nbuxomness\r\nbuy\r\nbuyer\r\nbuyers\r\nbuyer's\r\nbuying\r\nbuys\r\nbuzz\r\nbuzzard\r\nbuzzards\r\nbuzzard's\r\nbuzzed\r\nbuzzer\r\nbuzzes\r\nbuzzing\r\nbuzzword\r\nbuzzwords\r\nbuzzword's\r\nbwana\r\nby\r\nbye\r\nbyelaw\r\nbyelaws\r\nbyes\r\nbygone\r\nbygones\r\nbylaw\r\nbylaws\r\nbylaw's\r\nbyname\r\nbypass\r\nbypassed\r\nbypasses\r\nbypassing\r\nbypath\r\nbyplay\r\nbyre\r\nbyroad\r\nbystander\r\nbystanders\r\nbystander's\r\nbystreet\r\nbyte\r\nbytes\r\nbyte's\r\nbyway\r\nbyways\r\nbyword\r\nbywords\r\nbyword's\r\ncab\r\ncabal\r\ncabala\r\ncabalism\r\ncabalist\r\ncabalistic\r\ncaballed\r\ncaballero\r\ncaballing\r\ncabals\r\ncabana\r\ncabanas\r\ncabaret\r\ncabarets\r\ncabbage\r\ncabbaged\r\ncabbages\r\ncabbage's\r\ncabbageworm\r\ncabbaging\r\ncabbala\r\ncabbie\r\ncabbies\r\ncabby\r\ncabdriver\r\ncabdrivers\r\ncaber\r\ncabin\r\ncabinet\r\ncabinetmaker\r\ncabinetmakers\r\ncabinetmaker's\r\ncabinetry\r\ncabinets\r\ncabinet's\r\ncabinetwork\r\ncabins\r\ncabin's\r\ncable\r\ncabled\r\ncablegram\r\ncablegrams\r\ncablegram's\r\ncables\r\ncableway\r\ncabling\r\ncabman\r\ncabob\r\ncabochon\r\ncaboodle\r\ncaboose\r\ncabriole\r\ncabriolet\r\ncabs\r\ncab's\r\ncabstand\r\ncacao\r\ncacciatore\r\ncachalot\r\ncache\r\ncached\r\ncachepot\r\ncaches\r\ncache's\r\ncachet\r\ncaching\r\ncachinnate\r\ncachou\r\ncachucha\r\ncacique\r\ncackle\r\ncackled\r\ncackler\r\ncackles\r\ncackling\r\ncacodemon\r\ncacoethes\r\ncacogenic\r\ncacogenics\r\ncacographical\r\ncacography\r\ncacomistle\r\ncacophonous\r\ncacophonously\r\ncacophony\r\ncacti\r\ncactus\r\ncactuses\r\ncacuminal\r\ncad\r\ncadastral\r\ncadastre\r\ncadaver\r\ncadaverous\r\ncadaverously\r\ncaddie\r\ncaddies\r\ncaddis\r\ncaddish\r\ncaddishly\r\ncaddishness\r\ncaddy\r\ncadence\r\ncadenced\r\ncadences\r\ncadent\r\ncadenza\r\ncadet\r\ncadetship\r\ncadge\r\ncadged\r\ncadger\r\ncadges\r\ncadging\r\ncadmium\r\ncadre\r\ncaducean\r\ncaduceus\r\ncaducity\r\ncaecilian\r\ncaesalpiniaceous\r\ncaesium\r\ncaespitose\r\ncaesura\r\ncafe\r\ncafes\r\ncafe's\r\ncafeteria\r\ncafeterias\r\ncafeteria's\r\ncaffeine\r\ncaffeine's\r\ncaftan\r\ncage\r\ncaged\r\ncageling\r\ncages\r\ncagey\r\ncagier\r\ncagily\r\ncaginess\r\ncaging\r\ncagoule\r\ncagoules\r\ncagy\r\ncahier\r\ncahoots\r\ncaiman\r\ncairn\r\ncairned\r\ncairngorm\r\ncairns\r\ncaisson\r\ncaitiff\r\ncajole\r\ncajoled\r\ncajolement\r\ncajoler\r\ncajolery\r\ncajoles\r\ncajoling\r\ncajuput\r\ncake\r\ncaked\r\ncakes\r\ncakewalk\r\ncakewalker\r\ncaking\r\ncalabash\r\ncalaboose\r\ncalamanco\r\ncalamine\r\ncalamite\r\ncalamities\r\ncalamitous\r\ncalamitously\r\ncalamitousness\r\ncalamity\r\ncalamity's\r\ncalash\r\ncalcareous\r\ncalcareousness\r\ncalcariferous\r\ncalceiform\r\ncalcification\r\ncalcified\r\ncalcify\r\ncalcimine\r\ncalcite\r\ncalcium\r\ncalculability\r\ncalculable\r\ncalculably\r\ncalculate\r\ncalculated\r\ncalculatedly\r\ncalculates\r\ncalculating\r\ncalculatingly\r\ncalculation\r\ncalculations\r\ncalculative\r\ncalculator\r\ncalculators\r\ncalculator's\r\ncalculi\r\ncalculus\r\ncaldarium\r\ncaldera\r\ncaldron\r\ncalefactory\r\ncalendar\r\ncalendared\r\ncalendaring\r\ncalendars\r\ncalendar's\r\ncalenderer\r\ncalends\r\ncalendula\r\ncalenture\r\ncalf\r\ncalfskin\r\ncalibrate\r\ncalibrated\r\ncalibrates\r\ncalibrating\r\ncalibration\r\ncalibrations\r\ncalibrator\r\ncalibrators\r\ncalibre\r\ncalibres\r\ncalices\r\ncalicle\r\ncalico\r\ncalifornium\r\ncaliginous\r\ncalipash\r\ncalipee\r\ncaliph\r\ncaliphate\r\ncaliphs\r\ncalisaya\r\ncalk\r\ncall\r\ncalla\r\ncallable\r\ncallboy\r\ncalled\r\ncaller\r\ncallers\r\ncaller's\r\ncalligrapher\r\ncalligraphers\r\ncalligraphic\r\ncalligraphically\r\ncalligraphist\r\ncalligraphy\r\ncalling\r\ncalliope\r\ncalliper\r\ncallipers\r\ncallipygian\r\ncallisthenics\r\ncallosity\r\ncallous\r\ncalloused\r\ncallously\r\ncallousness\r\ncallow\r\ncallowness\r\ncalls\r\ncallus\r\ncalluses\r\ncalm\r\ncalmative\r\ncalmed\r\ncalmer\r\ncalmest\r\ncalming\r\ncalmingly\r\ncalmly\r\ncalmness\r\ncalms\r\ncalomel\r\ncaloric\r\ncalorie\r\ncalories\r\ncalorie's\r\ncalorific\r\ncalorimeter\r\ncalorimeters\r\ncalorimeter's\r\ncalorimetric\r\ncalorimetrically\r\ncalotte\r\ncaltrop\r\ncaltrops\r\ncalumniate\r\ncalumniated\r\ncalumniation\r\ncalumniator\r\ncalumnious\r\ncalumniously\r\ncalumny\r\ncalve\r\ncalves\r\ncalving\r\ncalyces\r\ncalycle\r\ncalypso\r\ncalyx\r\ncam\r\ncamaraderie\r\ncamarilla\r\ncamass\r\ncamber\r\ncambered\r\ncambering\r\ncambial\r\ncambium\r\ncambric\r\ncame\r\ncamel\r\ncamelback\r\ncameleer\r\ncamellia\r\ncamellias\r\ncamelopard\r\ncamels\r\ncamel's\r\ncameo\r\ncameos\r\ncamera\r\ncameral\r\ncameraman\r\ncameramen\r\ncameras\r\ncamera's\r\ncamion\r\ncamisole\r\ncamlet\r\ncamomile\r\ncamorra\r\ncamouflage\r\ncamouflaged\r\ncamouflages\r\ncamouflaging\r\ncamp\r\ncampaign\r\ncampaigned\r\ncampaigner\r\ncampaigners\r\ncampaigning\r\ncampaigns\r\ncampanile\r\ncampanologist\r\ncampanology\r\ncampanula\r\ncamped\r\ncamper\r\ncampers\r\ncampfire\r\ncampground\r\ncampgrounds\r\ncamphene\r\ncamphor\r\ncamphorate\r\ncamphorated\r\ncamphoric\r\ncamping\r\ncampo\r\ncamps\r\ncampsite\r\ncampsites\r\ncampstool\r\ncampus\r\ncampuses\r\ncampus's\r\ncampy\r\ncams\r\ncamshaft\r\ncamshafts\r\ncan\r\ncanal\r\ncanalisation\r\ncanalisations\r\ncanalisation's\r\ncanalise\r\ncanalised\r\ncanalises\r\ncanalising\r\ncanalled\r\ncanalling\r\ncanals\r\ncanal's\r\ncanard\r\ncanaries\r\ncanary\r\ncanary's\r\ncanasta\r\ncancan\r\ncancel\r\ncancellable\r\ncancellation\r\ncancellations\r\ncancellation's\r\ncancelled\r\ncanceller\r\ncancelling\r\ncancels\r\ncancer\r\ncancerous\r\ncancerously\r\ncancers\r\ncancer's\r\ncandela\r\ncandelabra\r\ncandelabrum\r\ncandent\r\ncandescence\r\ncandescent\r\ncandid\r\ncandidacy\r\ncandidate\r\ncandidates\r\ncandidate's\r\ncandidature\r\ncandidly\r\ncandidness\r\ncandied\r\ncandies\r\ncandle\r\ncandleberry\r\ncandled\r\ncandlefish\r\ncandleholder\r\ncandlelight\r\ncandlelit\r\ncandlenut\r\ncandlepin\r\ncandlepins\r\ncandlepower\r\ncandles\r\ncandlesnuffer\r\ncandlestick\r\ncandlesticks\r\ncandlestick's\r\ncandlewick\r\ncandlewood\r\ncandling\r\ncandour\r\ncandours\r\ncandour's\r\ncandy\r\ncandyfloss\r\ncandying\r\ncandytuft\r\ncane\r\ncanebrake\r\ncaned\r\ncanella\r\ncaner\r\ncanes\r\ncangue\r\ncanine\r\ncanines\r\ncaning\r\ncanister\r\ncanisters\r\ncanker\r\ncankered\r\ncankering\r\ncankerous\r\ncankerworm\r\ncannabin\r\ncannabis\r\ncanned\r\ncannel\r\ncannelloni\r\ncanner\r\ncanneries\r\ncanners\r\ncanner's\r\ncannery\r\ncannibal\r\ncannibalisation\r\ncannibalisations\r\ncannibalisation's\r\ncannibalise\r\ncannibalised\r\ncannibalises\r\ncannibalising\r\ncannibalism\r\ncannibalism's\r\ncannibalistic\r\ncannibals\r\ncannibal's\r\ncannier\r\ncannily\r\ncanniness\r\ncanning\r\ncannon\r\ncannonade\r\ncannonball\r\ncannoned\r\ncannoning\r\ncannonry\r\ncannons\r\ncannon's\r\ncannot\r\ncanny\r\ncanoe\r\ncanoed\r\ncanoeing\r\ncanoeist\r\ncanoeists\r\ncanoeist's\r\ncanoes\r\ncanoe's\r\ncanon\r\ncanoness\r\ncanonical\r\ncanonically\r\ncanonicals\r\ncanonicate\r\ncanonicity\r\ncanonisation\r\ncanonisations\r\ncanonisation's\r\ncanonise\r\ncanonised\r\ncanonises\r\ncanonising\r\ncanonist\r\ncanonry\r\ncanons\r\ncanon's\r\ncanoodle\r\ncanopy\r\ncanorous\r\ncanorously\r\ncanorousness\r\ncans\r\ncan's\r\ncanst\r\ncant\r\ncan't\r\ncantabile\r\ncantaloupe\r\ncantaloupes\r\ncantaloupe's\r\ncantankerous\r\ncantankerously\r\ncantankerousness\r\ncantata\r\ncantatas\r\ncantatrice\r\ncanted\r\ncanteen\r\ncanteens\r\ncanter\r\ncantered\r\ncantharides\r\ncanticle\r\ncantilena\r\ncantilever\r\ncantilevers\r\ncantina\r\ncanting\r\ncantle\r\ncantles\r\ncanto\r\ncanton\r\ncantonal\r\ncantonment\r\ncantons\r\ncanton's\r\ncantor\r\ncantors\r\ncantor's\r\ncantos\r\ncantus\r\ncanvas\r\ncanvasback\r\ncanvases\r\ncanvass\r\ncanvas's\r\ncanvassed\r\ncanvasser\r\ncanvassers\r\ncanvasses\r\ncanvassing\r\ncanyon\r\ncanyons\r\ncanyon's\r\ncanzone\r\ncanzonet\r\ncap\r\ncapabilities\r\ncapability\r\ncapability's\r\ncapable\r\ncapably\r\ncapacious\r\ncapaciously\r\ncapaciousness\r\ncapacitance\r\ncapacitances\r\ncapacitate\r\ncapacities\r\ncapacitive\r\ncapacitor\r\ncapacitors\r\ncapacitor's\r\ncapacity\r\ncaparison\r\ncape\r\ncapelin\r\ncaper\r\ncapered\r\ncapering\r\ncapers\r\ncapes\r\ncapeskin\r\ncapful\r\ncapillaceous\r\ncapillarity\r\ncapillary\r\ncapita\r\ncapital\r\ncapitalisation\r\ncapitalisations\r\ncapitalisation's\r\ncapitalise\r\ncapitalised\r\ncapitalises\r\ncapitalising\r\ncapitalism\r\ncapitalist\r\ncapitalistic\r\ncapitalistically\r\ncapitalists\r\ncapitalist's\r\ncapitally\r\ncapitals\r\ncapitates\r\ncapitation\r\ncapitol\r\ncapitols\r\ncapitol's\r\ncapitulary\r\ncapitulate\r\ncapitulated\r\ncapitulates\r\ncapitulation\r\ncapo\r\ncapon\r\ncaponise\r\ncaponised\r\ncaponises\r\ncaponising\r\ncaporal\r\ncapote\r\ncapped\r\ncapper\r\ncappers\r\ncapping\r\ncappuccino\r\ncapriccio\r\ncapriccioso\r\ncaprice\r\ncapricious\r\ncapriciously\r\ncapriciousness\r\ncaprifoliaceous\r\ncapriole\r\ncaps\r\ncap's\r\ncapsaicin\r\ncapsize\r\ncapsized\r\ncapsizes\r\ncapsizing\r\ncapstan\r\ncapstans\r\ncapstone\r\ncapsular\r\ncapsulate\r\ncapsulated\r\ncapsule\r\ncapsules\r\ncaptain\r\ncaptaincy\r\ncaptained\r\ncaptaining\r\ncaptains\r\ncaptainship\r\ncaption\r\ncaptioned\r\ncaptioning\r\ncaptions\r\ncaption's\r\ncaptious\r\ncaptiously\r\ncaptiousness\r\ncaptivate\r\ncaptivated\r\ncaptivates\r\ncaptivating\r\ncaptivation\r\ncaptivator\r\ncaptive\r\ncaptives\r\ncaptive's\r\ncaptivity\r\ncaptor\r\ncaptors\r\ncaptor's\r\ncapture\r\ncaptured\r\ncapturer\r\ncapturers\r\ncaptures\r\ncapturing\r\ncapuche\r\ncapuchin\r\ncaput\r\ncapybara\r\ncar\r\ncarabineer\r\ncaracal\r\ncaracara\r\ncaracole\r\ncarafe\r\ncaramel\r\ncaramelise\r\ncaramelised\r\ncaramelises\r\ncaramelising\r\ncarangid\r\ncarapace\r\ncarapaces\r\ncarapace's\r\ncarat\r\ncaravan\r\ncaravans\r\ncaravan's\r\ncaravansary\r\ncaravanserai\r\ncaravel\r\ncaraway\r\ncarbide\r\ncarbine\r\ncarbineer\r\ncarbines\r\ncarbohydrate\r\ncarbohydrates\r\ncarbohydrate's\r\ncarbolated\r\ncarbolic\r\ncarbon\r\ncarbonaceous\r\ncarbonate\r\ncarbonated\r\ncarbonates\r\ncarbonation\r\ncarbonic\r\ncarboniferous\r\ncarbonisation\r\ncarbonisations\r\ncarbonisation's\r\ncarbonise\r\ncarbonised\r\ncarbonises\r\ncarbonising\r\ncarbonless\r\ncarbons\r\ncarbon's\r\ncarbonyl\r\ncarboxyl\r\ncarboxylic\r\ncarboy\r\ncarbuncle\r\ncarbuncled\r\ncarbuncular\r\ncarburet\r\ncarburetion\r\ncarburettor\r\ncarburisation\r\ncarburise\r\ncarburised\r\ncarburises\r\ncarburising\r\ncarcajou\r\ncarcase\r\ncarcass\r\ncarcasses\r\ncarcass's\r\ncarcinogen\r\ncarcinogenesis\r\ncarcinogenic\r\ncarcinogenicity\r\ncarcinogens\r\ncarcinoma\r\ncard\r\ncardamom\r\ncardboard\r\ncardboards\r\ncarded\r\ncarder\r\ncardiac\r\ncardigan\r\ncardigans\r\ncardigan's\r\ncardinal\r\ncardinalities\r\ncardinality\r\ncardinality's\r\ncardinally\r\ncardinals\r\ncardinalship\r\ncarding\r\ncardiogram\r\ncardiograms\r\ncardiogram's\r\ncardiograph\r\ncardiographer\r\ncardiographs\r\ncardioids\r\ncardioid's\r\ncardiologist\r\ncardiology\r\ncardiopulmonary\r\ncardiovascular\r\ncardoon\r\ncards\r\ncard's\r\ncardsharp\r\ncardsharper\r\ncare\r\ncared\r\ncareen\r\ncareened\r\ncareening\r\ncareer\r\ncareered\r\ncareering\r\ncareerism\r\ncareerist\r\ncareerists\r\ncareers\r\ncareer's\r\ncarefree\r\ncareful\r\ncarefully\r\ncarefulness\r\ncareless\r\ncarelessly\r\ncarelessness\r\ncarer\r\ncarers\r\ncares\r\ncaress\r\ncaressed\r\ncaresser\r\ncaresses\r\ncaressing\r\ncaressingly\r\ncaret\r\ncaretaker\r\ncaretakers\r\ncaretaking\r\ncarets\r\ncareworn\r\ncarfare\r\ncargo\r\ncargoes\r\ncargos\r\ncarhop\r\ncaribou\r\ncaribous\r\ncaricature\r\ncaricatured\r\ncaricatures\r\ncaricaturist\r\ncaries\r\ncarillon\r\ncarina\r\ncaring\r\ncarioca\r\ncariole\r\ncarious\r\ncarline\r\ncarling\r\ncarload\r\ncarloads\r\ncarmagnole\r\ncarmaker\r\ncarminative\r\ncarmine\r\ncarnage\r\ncarnal\r\ncarnality\r\ncarnally\r\ncarnation\r\ncarnations\r\ncarnauba\r\ncarne\r\ncarnelian\r\ncarnet\r\ncarnival\r\ncarnivals\r\ncarnival's\r\ncarnivore\r\ncarnivorous\r\ncarnivorously\r\ncarnivorousness\r\ncarob\r\ncaroche\r\ncarol\r\ncarolled\r\ncaroller\r\ncarollers\r\ncarolling\r\ncarols\r\ncarol's\r\ncarom\r\ncarotene\r\ncarotid\r\ncarousal\r\ncarouse\r\ncaroused\r\ncarousel\r\ncarousels\r\ncarousel's\r\ncarouser\r\ncarousing\r\ncarp\r\ncarpal\r\ncarped\r\ncarpel\r\ncarpenter\r\ncarpentered\r\ncarpentering\r\ncarpenters\r\ncarpenter's\r\ncarpentry\r\ncarpet\r\ncarpetbag\r\ncarpetbagger\r\ncarpetbags\r\ncarpetbag's\r\ncarpeted\r\ncarpeting\r\ncarpets\r\ncarping\r\ncarpingly\r\ncarpology\r\ncarport\r\ncarps\r\ncarrack\r\ncarrageen\r\ncarrel\r\ncarrels\r\ncarriage\r\ncarriages\r\ncarriage's\r\ncarriageway\r\ncarriageways\r\ncarried\r\ncarrier\r\ncarriers\r\ncarries\r\ncarrion\r\ncarronade\r\ncarrot\r\ncarrots\r\ncarrot's\r\ncarroty\r\ncarrousel\r\ncarry\r\ncarryall\r\ncarrycot\r\ncarrying\r\ncarryon\r\ncarryout\r\ncarryover\r\ncarryovers\r\ncars\r\ncar's\r\ncarsick\r\ncart\r\ncartage\r\ncarte\r\ncarted\r\ncartel\r\ncartelisation\r\ncartelise\r\ncartelises\r\ncartels\r\ncarter\r\ncarters\r\ncartful\r\ncarthorse\r\ncartilage\r\ncartilaginous\r\ncarting\r\ncartload\r\ncartloads\r\ncartogram\r\ncartograms\r\ncartogram's\r\ncartographer\r\ncartographers\r\ncartographic\r\ncartographical\r\ncartography\r\ncarton\r\ncartons\r\ncarton's\r\ncartoon\r\ncartoonist\r\ncartoonists\r\ncartoons\r\ncartoon's\r\ncartouche\r\ncartridge\r\ncartridges\r\ncartridge's\r\ncarts\r\ncartulary\r\ncartwheel\r\ncartwheels\r\ncarve\r\ncarved\r\ncarvel\r\ncarven\r\ncarver\r\ncarvers\r\ncarves\r\ncarving\r\ncarvings\r\ncaryatid\r\ncaryophyllaceous\r\ncaryopsis\r\ncasa\r\ncasaba\r\ncasabas\r\ncasaba's\r\ncascade\r\ncascaded\r\ncascades\r\ncascading\r\ncascara\r\ncascarilla\r\ncase\r\ncasebook\r\ncasebooks\r\ncased\r\ncasein\r\ncaseload\r\ncaseloads\r\ncasemate\r\ncasement\r\ncasements\r\ncasement's\r\ncasern\r\ncases\r\ncasework\r\ncaseworker\r\ncaseworkers\r\ncaseworm\r\ncash\r\ncashable\r\ncashbook\r\ncashed\r\ncasher\r\ncashers\r\ncashes\r\ncashew\r\ncashews\r\ncashier\r\ncashiers\r\ncashier's\r\ncashing\r\ncashless\r\ncashmere\r\ncasing\r\ncasings\r\ncasino\r\ncasinos\r\ncask\r\ncasket\r\ncaskets\r\ncasket's\r\ncasks\r\ncask's\r\ncassata\r\ncassation\r\ncassava\r\ncasserole\r\ncasseroles\r\ncasserole's\r\ncassette\r\ncassettes\r\ncassimere\r\ncassock\r\ncassocked\r\ncassowary\r\ncast\r\ncastanet\r\ncastanets\r\ncastaway\r\ncaste\r\ncastellan\r\ncastellany\r\ncastellated\r\ncaster\r\ncasters\r\ncastes\r\ncaste's\r\ncastigate\r\ncastigated\r\ncastigates\r\ncastigation\r\ncastigator\r\ncastigators\r\ncastile\r\ncasting\r\ncastings\r\ncastle\r\ncastled\r\ncastles\r\ncastling\r\ncastor\r\ncastrate\r\ncastrated\r\ncastrates\r\ncastrating\r\ncastration\r\ncastrato\r\ncastrator\r\ncastrators\r\ncasts\r\ncast's\r\ncasual\r\ncasually\r\ncasualness\r\ncasuals\r\ncasualties\r\ncasualty\r\ncasualty's\r\ncasuist\r\ncasuistic\r\ncasuistry\r\ncat\r\ncatabolic\r\ncatabolically\r\ncatabolism\r\ncatachresis\r\ncatachrestic\r\ncatachrestical\r\ncataclinal\r\ncataclysm\r\ncataclysmal\r\ncataclysmic\r\ncatacomb\r\ncatafalque\r\ncatalectic\r\ncatalepsy\r\ncataleptic\r\ncataleptically\r\ncatalo\r\ncatalogue\r\ncatalogued\r\ncataloguer\r\ncataloguers\r\ncatalogues\r\ncatalogue's\r\ncataloguing\r\ncatalpa\r\ncatalyse\r\ncatalyser\r\ncatalysers\r\ncatalyser's\r\ncatalyses\r\ncatalysis\r\ncatalyst\r\ncatalysts\r\ncatalyst's\r\ncatalytic\r\ncatalytically\r\ncatalyzed\r\ncatamaran\r\ncatamite\r\ncatamount\r\ncataphyll\r\ncataplasm\r\ncataplexy\r\ncatapult\r\ncatapulted\r\ncatapulting\r\ncatapults\r\ncataract\r\ncataracts\r\ncatarrh\r\ncatarrhal\r\ncatarrhally\r\ncatastasis\r\ncatastrophe\r\ncatastrophes\r\ncatastrophe's\r\ncatastrophic\r\ncatastrophically\r\ncatatonia\r\ncatatonic\r\ncatbird\r\ncatboat\r\ncatcall\r\ncatch\r\ncatchall\r\ncatcher\r\ncatchers\r\ncatcher's\r\ncatches\r\ncatchfly\r\ncatchier\r\ncatching\r\ncatchpenny\r\ncatchpole\r\ncatchpoll\r\ncatchword\r\ncatchwords\r\ncatchy\r\ncatechesis\r\ncatechetical\r\ncatechisation\r\ncatechisations\r\ncatechisation's\r\ncatechise\r\ncatechised\r\ncatechiser\r\ncatechisers\r\ncatechises\r\ncatechising\r\ncatechism\r\ncatechist\r\ncatechistic\r\ncatecholamine\r\ncatechu\r\ncatechumen\r\ncategorical\r\ncategorically\r\ncategories\r\ncategorisation\r\ncategorisations\r\ncategorisation's\r\ncategorise\r\ncategorised\r\ncategoriser\r\ncategorisers\r\ncategorises\r\ncategorising\r\ncategory\r\ncategory's\r\ncatena\r\ncatenation\r\ncatenulate\r\ncater\r\ncatered\r\ncaterer\r\ncateress\r\ncatering\r\ncaterpillar\r\ncaterpillars\r\ncaterpillar's\r\ncaters\r\ncaterwaul\r\ncatfish\r\ncatgut\r\ncatharses\r\ncatharsis\r\ncathartic\r\ncathead\r\ncathedra\r\ncathedral\r\ncathedrals\r\ncathedral's\r\ncatheter\r\ncatheterisation\r\ncatheterisations\r\ncatheterisation's\r\ncatheterise\r\ncatheterises\r\ncatheters\r\ncathode\r\ncathodes\r\ncathode's\r\ncatholic\r\ncatholically\r\ncatholicise\r\ncatholicises\r\ncatholicity\r\ncatholicon\r\ncathouse\r\ncationic\r\ncatkin\r\ncatlike\r\ncatmint\r\ncatnap\r\ncatnaps\r\ncatnip\r\ncatoptrics\r\ncats\r\ncat's\r\ncatsup\r\ncattail\r\ncattalo\r\ncattery\r\ncattier\r\ncatties\r\ncattily\r\ncattiness\r\ncattle\r\ncattleman\r\ncattlemen\r\ncatty\r\ncatwalk\r\ncatwalks\r\ncatwalk's\r\ncaucus\r\ncaucuses\r\ncaucusing\r\ncaudal\r\ncaudally\r\ncaudate\r\ncaudated\r\ncaudation\r\ncaudillo\r\ncaudle\r\ncaught\r\ncauldron\r\ncauldrons\r\ncaulicle\r\ncaulicles\r\ncauliflower\r\ncauliflowers\r\ncaulis\r\ncaulk\r\ncaulker\r\ncaulks\r\ncausal\r\ncausality\r\ncausally\r\ncausation\r\ncausations\r\ncausation's\r\ncausative\r\ncausatively\r\ncause\r\ncaused\r\ncauseless\r\ncauser\r\ncauserie\r\ncauses\r\ncauseway\r\ncauseways\r\ncauseway's\r\ncausey\r\ncauseys\r\ncausing\r\ncaustic\r\ncaustically\r\ncausticity\r\ncaustics\r\ncauterisation\r\ncauterisations\r\ncauterisation's\r\ncauterise\r\ncauterised\r\ncauterises\r\ncauterising\r\ncaution\r\ncautionary\r\ncautioned\r\ncautioner\r\ncautioners\r\ncautioning\r\ncautions\r\ncautious\r\ncautiously\r\ncautiousness\r\ncavalcade\r\ncavalcades\r\ncavalier\r\ncavalierly\r\ncavalla\r\ncavalry\r\ncavalryman\r\ncavalrymen\r\ncavatina\r\ncave\r\ncaveat\r\ncaveats\r\ncaveat's\r\ncaved\r\ncavefish\r\ncaveman\r\ncavemen\r\ncaver\r\ncavern\r\ncavernous\r\ncavernously\r\ncaverns\r\ncavern's\r\ncaves\r\ncaviar\r\ncavicorn\r\ncavies\r\ncavil\r\ncavilled\r\ncaviller\r\ncavillers\r\ncavilling\r\ncaving\r\ncavities\r\ncavity\r\ncavity's\r\ncavort\r\ncavorted\r\ncavorting\r\ncavy\r\ncaw\r\ncawed\r\ncawing\r\ncaws\r\ncay\r\ncayenne\r\ncc\r\ncease\r\nceased\r\nceasefire\r\nceasefire's\r\nceaseless\r\nceaselessly\r\nceaselessness\r\nceases\r\nceasing\r\ncedar\r\ncedarn\r\ncede\r\nceded\r\ncedi\r\ncedilla\r\nceding\r\nceil\r\nceilidh\r\nceiling\r\nceilings\r\nceiling's\r\nceilometers\r\nceilometer's\r\ncelandine\r\ncelebrant\r\ncelebrants\r\ncelebrate\r\ncelebrated\r\ncelebrates\r\ncelebrating\r\ncelebration\r\ncelebrations\r\ncelebrator\r\ncelebrators\r\ncelebratory\r\ncelebrities\r\ncelebrity\r\ncelebrity's\r\nceleriac\r\ncelerity\r\ncelery\r\ncelesta\r\ncelestial\r\ncelestially\r\nceliac\r\ncelibacy\r\ncelibate\r\ncelibates\r\ncell\r\ncellar\r\ncellarage\r\ncellared\r\ncellarer\r\ncellaret\r\ncellarets\r\ncellaring\r\ncellars\r\ncellar's\r\ncelled\r\ncellist\r\ncellists\r\ncellist's\r\ncello\r\ncellophane\r\ncellos\r\ncells\r\ncellular\r\ncellule\r\ncelluloid\r\ncelluloid's\r\ncellulose\r\ncelluloses\r\ncellulous\r\ncembalo\r\ncement\r\ncementation\r\ncemented\r\ncementer\r\ncementing\r\ncements\r\ncemeteries\r\ncemetery\r\ncemetery's\r\ncenacle\r\ncenospecies\r\ncenotaph\r\ncense\r\ncenser\r\ncensing\r\ncensor\r\ncensored\r\ncensorial\r\ncensoring\r\ncensorious\r\ncensoriously\r\ncensoriousness\r\ncensors\r\ncensorship\r\ncensurable\r\ncensure\r\ncensured\r\ncensurer\r\ncensures\r\ncensuring\r\ncensus\r\ncensuses\r\ncensus's\r\ncent\r\ncentaur\r\ncentaurs\r\ncentaury\r\ncentavo\r\ncentenarian\r\ncentenary\r\ncentennial\r\ncentennially\r\ncentesimal\r\ncentesimo\r\ncentigrade\r\ncentilitre\r\ncentime\r\ncentimetre\r\ncentimetres\r\ncentimetre's\r\ncentipede\r\ncentipedes\r\ncentipede's\r\ncento\r\ncentral\r\ncentralisation\r\ncentralisations\r\ncentralisation's\r\ncentralise\r\ncentralised\r\ncentraliser\r\ncentralisers\r\ncentralises\r\ncentralising\r\ncentralism\r\ncentralist\r\ncentralistic\r\ncentralists\r\ncentrality\r\ncentrally\r\ncentrals\r\ncentre\r\ncentreboard\r\ncentred\r\ncentrefold\r\ncentreline\r\ncentrelines\r\ncentrepiece\r\ncentrepieces\r\ncentrepiece's\r\ncentres\r\ncentre's\r\ncentric\r\ncentrically\r\ncentricity\r\ncentrifugal\r\ncentrifugalise\r\ncentrifugally\r\ncentrifugals\r\ncentrifugation\r\ncentrifuge\r\ncentrifuged\r\ncentrifuges\r\ncentrifuge's\r\ncentrifuging\r\ncentring\r\ncentripetal\r\ncentripetally\r\ncentrism\r\ncentrist\r\ncentroclinal\r\ncents\r\ncentum\r\ncenturial\r\ncenturies\r\ncenturion\r\ncentury\r\ncentury's\r\ncephalic\r\ncephalically\r\ncephalisation\r\ncephalochordate\r\ncephalopod\r\nceramal\r\nceramic\r\nceramicist\r\nceramics\r\nceramist\r\ncerate\r\nceratoid\r\ncereal\r\ncereals\r\ncereal's\r\ncerebellum\r\ncerebral\r\ncerebrally\r\ncerebrate\r\ncerebrated\r\ncerebrates\r\ncerebrating\r\ncerebration\r\ncerebrations\r\ncerebrospinal\r\ncerebrum\r\ncerecloth\r\ncerement\r\nceremonial\r\nceremonialism\r\nceremonialist\r\nceremonialists\r\nceremonially\r\nceremonies\r\nceremonious\r\nceremoniously\r\nceremoniousness\r\nceremony\r\nceremony's\r\nceresin\r\ncereus\r\nceria\r\ncerise\r\ncerium\r\ncernuous\r\ncero\r\ncerography\r\nceroplastic\r\nceroplastics\r\ncerotic\r\ncerotype\r\ncert\r\ncertain\r\ncertainly\r\ncertainties\r\ncertainty\r\ncertes\r\ncertifiable\r\ncertifiably\r\ncertificate\r\ncertificated\r\ncertificates\r\ncertificating\r\ncertification\r\ncertifications\r\ncertificatory\r\ncertified\r\ncertifier\r\ncertifiers\r\ncertifies\r\ncertify\r\ncertifying\r\ncertiorari\r\ncertitude\r\ncertitudes\r\ncerulean\r\nceruse\r\ncervical\r\ncervices\r\ncervix\r\ncervixes\r\ncess\r\ncessation\r\ncessations\r\ncessation's\r\ncession\r\ncessionary\r\ncesspit\r\ncesspool\r\ncetacean\r\ncetaceans\r\ncetacean's\r\ncetera\r\nceteris\r\nchaconne\r\nchaetopod\r\nchafe\r\nchafer\r\nchaff\r\nchaffer\r\nchaffered\r\nchafferer\r\nchaffering\r\nchaffinch\r\nchaffing\r\nchaffy\r\nchafing\r\nchagrin\r\nchagrined\r\nchagrining\r\nchagrins\r\nchain\r\nchained\r\nchaining\r\nchainlike\r\nchainman\r\nchains\r\nchair\r\nchaired\r\nchairing\r\nchairlady\r\nchairman\r\nchairmanship\r\nchairmanships\r\nchairmen\r\nchairperson\r\nchairpersons\r\nchairperson's\r\nchairs\r\nchairwoman\r\nchairwomen\r\nchaise\r\nchalcedonic\r\nchalcedony\r\nchalcography\r\nchalcopyrite\r\nchalet\r\nchalice\r\nchaliced\r\nchalices\r\nchalice's\r\nchalk\r\nchalkboard\r\nchalked\r\nchalking\r\nchalks\r\nchalkstone\r\nchalky\r\nchallenge\r\nchallenged\r\nchallenger\r\nchallengers\r\nchallenges\r\nchallenging\r\nchallengingly\r\nchallis\r\nchalybeate\r\nchamber\r\nchambered\r\nchambering\r\nchamberlain\r\nchamberlains\r\nchamberlain's\r\nchambermaid\r\nchambermaids\r\nchambers\r\nchambray\r\nchambrays\r\nchameleon\r\nchameleonic\r\nchameleons\r\nchamfer\r\nchamfered\r\nchamfering\r\nchamfers\r\nchamois\r\nchamomile\r\nchamp\r\nchampagne\r\nchampak\r\nchampers\r\nchampignon\r\nchampion\r\nchampioned\r\nchampioning\r\nchampions\r\nchampionship\r\nchampionships\r\nchampionship's\r\nchamps\r\nchance\r\nchanced\r\nchanceful\r\nchancel\r\nchancellery\r\nchancellor\r\nchancellors\r\nchancellorship\r\nchancellorships\r\nchancels\r\nchanceries\r\nchancery\r\nchances\r\nchancier\r\nchanciness\r\nchancing\r\nchancre\r\nchancres\r\nchancrous\r\nchancy\r\nchandelier\r\nchandeliers\r\nchandelier's\r\nchandelle\r\nchandler\r\nchandlery\r\nchange\r\nchangeability\r\nchangeable\r\nchangeableness\r\nchangeably\r\nchanged\r\nchangeful\r\nchangefully\r\nchangefulness\r\nchangeless\r\nchangelessly\r\nchangelessness\r\nchangeling\r\nchangeover\r\nchangeovers\r\nchangeover's\r\nchanger\r\nchangers\r\nchanges\r\nchanging\r\nchannel\r\nchannelled\r\nchannelling\r\nchannels\r\nchanson\r\nchant\r\nchanted\r\nchanter\r\nchanteuse\r\nchanteuses\r\nchantey\r\nchanticleer\r\nchanticleers\r\nchanticleer's\r\nchanting\r\nchants\r\nchaos\r\nchaotic\r\nchaotically\r\nchap\r\nchaparral\r\nchapatti\r\nchapbook\r\nchapeau\r\nchapeaus\r\nchapeaux\r\nchapel\r\nchapels\r\nchapel's\r\nchaperon\r\nchaperonage\r\nchaperone\r\nchaperoned\r\nchaperones\r\nchaplain\r\nchaplaincies\r\nchaplaincy\r\nchaplains\r\nchaplain's\r\nchaplet\r\nchapleted\r\nchaplets\r\nchapping\r\nchaps\r\nchap's\r\nchapter\r\nchaptered\r\nchapterhouse\r\nchaptering\r\nchapters\r\nchapter's\r\nchar\r\ncharabanc\r\ncharacin\r\ncharacter\r\ncharactering\r\ncharacterisation\r\ncharacterisations\r\ncharacterisation's\r\ncharacterise\r\ncharacterised\r\ncharacteriser\r\ncharacterisers\r\ncharacterises\r\ncharacterising\r\ncharacteristic\r\ncharacteristically\r\ncharacteristics\r\ncharacteristic's\r\ncharacterless\r\ncharacters\r\ncharacter's\r\ncharade\r\ncharades\r\ncharcoal\r\ncharcoaled\r\ncharcoals\r\ncharcuterie\r\nchard\r\nchare\r\ncharge\r\nchargeable\r\ncharged\r\ncharger\r\nchargers\r\ncharges\r\ncharging\r\ncharier\r\ncharily\r\nchariness\r\nchariot\r\ncharioteer\r\ncharioteers\r\nchariots\r\nchariot's\r\ncharisma\r\ncharismata\r\ncharismatic\r\ncharitable\r\ncharitableness\r\ncharitably\r\ncharities\r\ncharity\r\ncharity's\r\ncharivari\r\ncharladies\r\ncharlady\r\ncharlatan\r\ncharlatanism\r\ncharlatanry\r\ncharlatans\r\ncharlock\r\ncharm\r\ncharmed\r\ncharmer\r\ncharmers\r\ncharming\r\ncharmingly\r\ncharms\r\ncharnel\r\ncharpoy\r\ncharqui\r\ncharred\r\ncharring\r\nchars\r\nchart\r\nchartable\r\ncharted\r\ncharter\r\nchartered\r\ncharterhouse\r\nchartering\r\ncharters\r\ncharting\r\nchartings\r\nchartist\r\nchartists\r\nchartless\r\nchartreuse\r\nchartroom\r\nchartrooms\r\ncharts\r\nchartularies\r\nchartulary\r\ncharwoman\r\ncharwomen\r\nchary\r\nchase\r\nchased\r\nchaser\r\nchasers\r\nchases\r\nchasing\r\nchasm\r\nchasms\r\nchasm's\r\nchassepot\r\nchasseur\r\nchassis\r\nchaste\r\nchastely\r\nchasten\r\nchastened\r\nchastener\r\nchasteness\r\nchastening\r\nchastise\r\nchastised\r\nchastisement\r\nchastisements\r\nchastiser\r\nchastisers\r\nchastises\r\nchastising\r\nchastity\r\nchasuble\r\nchat\r\nchateau\r\nchateaubriand\r\nchateaus\r\nchateau's\r\nchateaux\r\nchatelaine\r\nchatelaines\r\nchatoyant\r\nchats\r\nchatted\r\nchattel\r\nchattels\r\nchatter\r\nchatterbox\r\nchatterboxes\r\nchattered\r\nchatterer\r\nchatterers\r\nchattering\r\nchatters\r\nchattier\r\nchattily\r\nchattiness\r\nchatting\r\nchatty\r\nchauffeur\r\nchauffeured\r\nchauffeuring\r\nchauffeurs\r\nchaulmoogra\r\nchausses\r\nchauvinism\r\nchauvinism's\r\nchauvinist\r\nchauvinistic\r\nchauvinistically\r\nchauvinists\r\nchauvinist's\r\nchayote\r\ncheap\r\ncheapen\r\ncheapened\r\ncheapening\r\ncheapens\r\ncheaper\r\ncheapest\r\ncheapie\r\ncheapish\r\ncheaply\r\ncheapness\r\ncheapskate\r\ncheapskates\r\ncheat\r\ncheated\r\ncheater\r\ncheaters\r\ncheating\r\ncheats\r\ncheck\r\ncheckable\r\nchecked\r\nchecker\r\ncheckerberry\r\ncheckerbloom\r\ncheckerboard\r\ncheckerboards\r\ncheckering\r\ncheckers\r\nchecking\r\nchecklist\r\nchecklists\r\ncheckmark\r\ncheckmarks\r\ncheckmate\r\ncheckmated\r\ncheckmates\r\ncheckmating\r\ncheckout\r\ncheckouts\r\ncheckpoint\r\ncheckpoints\r\ncheckpoint's\r\ncheckroom\r\ncheckrooms\r\ncheckrow\r\nchecks\r\nchecksum\r\nchecksums\r\nchecksum's\r\ncheddar\r\ncheek\r\ncheekbone\r\ncheekbones\r\ncheekier\r\ncheekily\r\ncheekiness\r\ncheeks\r\ncheek's\r\ncheeky\r\ncheep\r\ncheeps\r\ncheer\r\ncheered\r\ncheerer\r\ncheerers\r\ncheerful\r\ncheerfully\r\ncheerfulness\r\ncheerier\r\ncheerily\r\ncheeriness\r\ncheering\r\ncheerio\r\ncheerlead\r\ncheerleader\r\ncheerleaders\r\ncheerless\r\ncheerlessly\r\ncheerlessness\r\ncheers\r\ncheery\r\ncheese\r\ncheeseboard\r\ncheeseburger\r\ncheeseburgers\r\ncheesecake\r\ncheesecakes\r\ncheesecake's\r\ncheesecloth\r\ncheesed\r\ncheesemonger\r\ncheeseparing\r\ncheeseparings\r\ncheeses\r\ncheese's\r\ncheesewood\r\ncheesier\r\ncheesiness\r\ncheesing\r\ncheesy\r\ncheetah\r\ncheetahs\r\nchef\r\nchefs\r\nchef's\r\nchelonian\r\nchemic\r\nchemical\r\nchemically\r\nchemicals\r\nchemise\r\nchemises\r\nchemisette\r\nchemist\r\nchemistries\r\nchemistry\r\nchemists\r\nchemist's\r\nchemoautotrophic\r\nchemoautotrophy\r\nchemoprophylaxis\r\nchemoreception\r\nchemoreceptive\r\nchemoreceptor\r\nchemosphere\r\nchemosynthesis\r\nchemotherapy\r\nchemotherapy's\r\nchemotropism\r\nchenille\r\nchenopod\r\ncheque\r\nchequebook\r\nchequebooks\r\nchequebook's\r\nchequer\r\nchequerboard\r\nchequered\r\nchequers\r\ncheques\r\ncheque's\r\ncherish\r\ncherished\r\ncherisher\r\ncherishes\r\ncherishing\r\ncheroot\r\ncherries\r\ncherry\r\ncherry's\r\ncherrystone\r\nchersonese\r\nchert\r\ncherub\r\ncherubic\r\ncherubically\r\ncherubim\r\ncherubs\r\ncherub's\r\nchervil\r\nchervils\r\nchess\r\nchessboard\r\nchessboards\r\nchessman\r\nchessmen\r\nchest\r\nchestier\r\nchestnut\r\nchestnuts\r\nchestnut's\r\nchests\r\nchesty\r\nchevalier\r\ncheviot\r\nchevron\r\nchevrotain\r\nchew\r\nchewable\r\nchewed\r\nchewer\r\nchewers\r\nchewing\r\nchews\r\nchewy\r\nchi\r\nchiaroscurist\r\nchiaroscuro\r\nchiasmus\r\nchiastic\r\nchibouk\r\nchic\r\nchicane\r\nchicanery\r\nchicaning\r\nchichi\r\nchick\r\nchickadee\r\nchickadees\r\nchickadee's\r\nchicken\r\nchickened\r\nchickenhearted\r\nchickening\r\nchickenpox\r\nchickens\r\nchickpea\r\nchickpeas\r\nchickpea's\r\nchicks\r\nchickweed\r\nchickweeds\r\nchicly\r\nchicory\r\nchidden\r\nchide\r\nchided\r\nchides\r\nchiding\r\nchief\r\nchiefdom\r\nchiefdoms\r\nchiefly\r\nchiefs\r\nchief's\r\nchieftain\r\nchieftaincies\r\nchieftaincy\r\nchieftains\r\nchieftain's\r\nchieftainship\r\nchiffchaff\r\nchiffon\r\nchiffonier\r\nchigger\r\nchiggers\r\nchignon\r\nchilblain\r\nchilblains\r\nchild\r\nchildbearing\r\nchildbed\r\nchildbirth\r\nchildbirths\r\nchildcare\r\nchildhood\r\nchildhoods\r\nchildish\r\nchildishly\r\nchildishness\r\nchildless\r\nchildlessness\r\nchildlike\r\nchildlikeness\r\nchildminder\r\nchildminders\r\nchildminding\r\nchildrearing\r\nchildren\r\nchildren's\r\nchild's\r\nchiliad\r\nchiliasm\r\nchill\r\nchilled\r\nchillers\r\nchilli\r\nchillier\r\nchillies\r\nchillily\r\nchilliness\r\nchilling\r\nchillingly\r\nchillness\r\nchills\r\nchillum\r\nchilly\r\nchime\r\nchimed\r\nchimer\r\nchimera\r\nchimerical\r\nchimerically\r\nchimes\r\nchime's\r\nchiming\r\nchimney\r\nchimneypiece\r\nchimneypot\r\nchimneys\r\nchimney's\r\nchimp\r\nchimpanzee\r\nchimpanzees\r\nchimps\r\nchin\r\nchina\r\nchinaberry\r\nchinaware\r\nchinbone\r\nchinch\r\nchincherinchee\r\nchinchilla\r\nchine\r\nchink\r\nchinked\r\nchinks\r\nchinless\r\nchinned\r\nchinning\r\nchino\r\nchinos\r\nchinquapin\r\nchins\r\nchin's\r\nchintz\r\nchintzier\r\nchintzy\r\nchinwag\r\nchip\r\nchipboard\r\nchipmunk\r\nchipmunks\r\nchipmunk's\r\nchipolata\r\nchipped\r\nchipper\r\nchipping\r\nchips\r\nchip's\r\nchirm\r\nchirographer\r\nchirographic\r\nchirographical\r\nchiromancer\r\nchiromancy\r\nchiropodist\r\nchiropodists\r\nchiropody\r\nchiropractic\r\nchiropractor\r\nchiropractors\r\nchiropteran\r\nchirp\r\nchirped\r\nchirpily\r\nchirping\r\nchirps\r\nchirpy\r\nchirrup\r\nchirruped\r\nchirruping\r\nchirrups\r\nchisel\r\nchiselled\r\nchiseller\r\nchisellers\r\nchiselling\r\nchisels\r\nchit\r\nchital\r\nchitchat\r\nchitin\r\nchits\r\nchitterlings\r\nchivalric\r\nchivalrous\r\nchivalrously\r\nchivalrousness\r\nchivalry\r\nchive\r\nchives\r\nchivvied\r\nchivvy\r\nchivvying\r\nchlamydeous\r\nchloral\r\nchlorate\r\nchlordane\r\nchloride\r\nchlorides\r\nchlorinate\r\nchlorinated\r\nchlorinates\r\nchlorination\r\nchlorine\r\nchlorite\r\nchloroform\r\nchlorophyll\r\nchloropicrin\r\nchloroplast\r\nchloroplasts\r\nchloroplast's\r\nchloroprene\r\nchlorpromazine\r\nchlortetracycline\r\nchock\r\nchocked\r\nchocker\r\nchocking\r\nchocks\r\nchock's\r\nchocolate\r\nchocolates\r\nchocolate's\r\nchocolaty\r\nchoice\r\nchoicely\r\nchoiceness\r\nchoicer\r\nchoices\r\nchoicest\r\nchoir\r\nchoirboy\r\nchoirmaster\r\nchoirs\r\nchoir's\r\nchoke\r\nchokeberry\r\nchokebore\r\nchokecherry\r\nchoked\r\nchokedamp\r\nchoker\r\nchokers\r\nchokes\r\nchoking\r\nchokingly\r\nchoky\r\ncholer\r\ncholera\r\ncholeric\r\ncholesterol\r\ncholinergic\r\ncholinesterase\r\nchomp\r\nchon\r\nchook\r\nchoom\r\nchoose\r\nchooser\r\nchoosers\r\nchooses\r\nchoosey\r\nchoosier\r\nchoosing\r\nchoosy\r\nchop\r\nchopfallen\r\nchophouse\r\nchoplogic\r\nchopped\r\nchopper\r\nchoppers\r\nchopper's\r\nchoppier\r\nchoppily\r\nchoppiness\r\nchopping\r\nchoppy\r\nchops\r\nchopstick\r\nchopsticks\r\nchoragus\r\nchoral\r\nchorale\r\nchorales\r\nchorally\r\nchord\r\nchordate\r\nchorded\r\nchording\r\nchordophone\r\nchords\r\nchord's\r\nchore\r\nchorea\r\nchoreograph\r\nchoreographed\r\nchoreographer\r\nchoreographers\r\nchoreographic\r\nchoreographically\r\nchoreography\r\nchores\r\nchoriamb\r\nchoric\r\nchorine\r\nchorines\r\nchorister\r\nchorizo\r\nchorographic\r\nchorography\r\nchorology\r\nchortle\r\nchortled\r\nchortles\r\nchortling\r\nchorus\r\nchorused\r\nchoruses\r\nchose\r\nchosen\r\nchough\r\nchoux\r\nchow\r\nchowder\r\nchowders\r\nchowhound\r\nchowtime\r\nchrematistic\r\nchrestomathy\r\nchrism\r\nchrismatory\r\nchrisom\r\nchristen\r\nchristened\r\nchristening\r\nchristens\r\nchromate\r\nchromatic\r\nchromatically\r\nchromaticity\r\nchromatics\r\nchromatin\r\nchromatogram\r\nchromatograms\r\nchromatogram's\r\nchromatograph\r\nchromatographic\r\nchromatographically\r\nchromatography\r\nchrome\r\nchromed\r\nchromes\r\nchromic\r\nchrominance\r\nchroming\r\nchromium\r\nchromo\r\nchromolithograph\r\nchromolithography\r\nchromosomal\r\nchromosome\r\nchromosomes\r\nchromosome's\r\nchromyl\r\nchronic\r\nchronically\r\nchronicle\r\nchronicled\r\nchronicler\r\nchroniclers\r\nchronicles\r\nchronogram\r\nchronogrammatic\r\nchronograms\r\nchronograph\r\nchronographic\r\nchronographs\r\nchronologic\r\nchronological\r\nchronologically\r\nchronologies\r\nchronologist\r\nchronologists\r\nchronology\r\nchronology's\r\nchronometer\r\nchronometers\r\nchronometer's\r\nchronometric\r\nchronometrically\r\nchronometry\r\nchronoscope\r\nchronoscopes\r\nchrysalis\r\nchrysanthemum\r\nchrysanthemums\r\nchrysanthemum's\r\nchryselephantine\r\nchthonian\r\nchub\r\nchubbier\r\nchubbiest\r\nchubbiness\r\nchubby\r\nchubs\r\nchuck\r\nchucked\r\nchuckhole\r\nchucking\r\nchuckle\r\nchuckled\r\nchucklehead\r\nchuckleheaded\r\nchuckleheads\r\nchuckles\r\nchuckling\r\nchucks\r\nchuck's\r\nchuckwalla\r\nchufa\r\nchuff\r\nchuffed\r\nchuffing\r\nchug\r\nchugalug\r\nchugging\r\nchugs\r\nchukka\r\nchum\r\nchummier\r\nchummily\r\nchumminess\r\nchumming\r\nchummy\r\nchump\r\nchumps\r\nchump's\r\nchums\r\nchunk\r\nchunkier\r\nchunkily\r\nchunks\r\nchunk's\r\nchunky\r\nchunter\r\nchurch\r\nchurched\r\nchurches\r\nchurchgoer\r\nchurchgoers\r\nchurchgoing\r\nchurching\r\nchurchless\r\nchurchliness\r\nchurchly\r\nchurchman\r\nchurchmanship\r\nchurchmen\r\nchurchwarden\r\nchurchwardens\r\nchurchwoman\r\nchurchwomen\r\nchurchy\r\nchurchyard\r\nchurchyards\r\nchurchyard's\r\nchurl\r\nchurlish\r\nchurlishly\r\nchurlishness\r\nchurls\r\nchurn\r\nchurned\r\nchurner\r\nchurners\r\nchurning\r\nchurns\r\nchute\r\nchutes\r\nchute's\r\nchutney\r\nchutneys\r\nchutzpah\r\nciao\r\nciborium\r\ncicada\r\ncicadas\r\ncicatricle\r\ncicatrix\r\ncicerone\r\ncichlid\r\ncichlids\r\ncider\r\nciders\r\ncig\r\ncigar\r\ncigarette\r\ncigarettes\r\ncigarette's\r\ncigarillo\r\ncigarillos\r\ncigars\r\ncigar's\r\ncilia\r\nciliate\r\nciliated\r\nciliates\r\ncilice\r\nciliolate\r\ncilium\r\ncinch\r\ncinches\r\ncincture\r\ncinder\r\ncinders\r\ncinder's\r\ncindery\r\ncine\r\ncineaste\r\ncinema\r\ncinemagoer\r\ncinemagoers\r\ncinemas\r\ncinematic\r\ncinematically\r\ncinematise\r\ncinematograph\r\ncinematographer\r\ncinematographic\r\ncinematographically\r\ncinematographs\r\ncinematography\r\ncineol\r\ncinerarium\r\ncinereous\r\ncinnabar\r\ncinnamon\r\ncinque\r\ncinquecento\r\ncinquefoil\r\ncipher\r\nciphered\r\nciphering\r\nciphers\r\ncipher's\r\nciphertext\r\ncipolin\r\ncirca\r\ncircadian\r\ncircle\r\ncircled\r\ncircler\r\ncircles\r\ncirclet\r\ncircling\r\ncircuit\r\ncircuital\r\ncircuited\r\ncircuiting\r\ncircuitous\r\ncircuitously\r\ncircuitousness\r\ncircuitry\r\ncircuits\r\ncircuit's\r\ncircuity\r\ncircular\r\ncircularisation\r\ncircularise\r\ncircularised\r\ncirculariser\r\ncircularisers\r\ncircularises\r\ncircularising\r\ncircularities\r\ncircularity\r\ncircularly\r\ncirculars\r\ncircular's\r\ncirculate\r\ncirculated\r\ncirculates\r\ncirculating\r\ncirculation\r\ncirculations\r\ncirculator\r\ncirculators\r\ncirculatory\r\ncircumambient\r\ncircumbendibus\r\ncircumcise\r\ncircumcised\r\ncircumciser\r\ncircumcises\r\ncircumcising\r\ncircumcision\r\ncircumcisions\r\ncircumference\r\ncircumferences\r\ncircumferential\r\ncircumferentially\r\ncircumflex\r\ncircumflexes\r\ncircumfluent\r\ncircumfluous\r\ncircumfuse\r\ncircumfused\r\ncircumfusing\r\ncircumfusion\r\ncircumjacent\r\ncircumlocution\r\ncircumlocutions\r\ncircumlocution's\r\ncircumlocutory\r\ncircumlunar\r\ncircumnavigate\r\ncircumnavigated\r\ncircumnavigates\r\ncircumnavigating\r\ncircumnavigation\r\ncircumnavigations\r\ncircumnavigator\r\ncircumnavigators\r\ncircumpolar\r\ncircumscribe\r\ncircumscribed\r\ncircumscribes\r\ncircumscribing\r\ncircumscription\r\ncircumscriptions\r\ncircumsolar\r\ncircumspect\r\ncircumspection\r\ncircumspections\r\ncircumspectly\r\ncircumstance\r\ncircumstanced\r\ncircumstances\r\ncircumstance's\r\ncircumstancing\r\ncircumstantial\r\ncircumstantially\r\ncircumstantiate\r\ncircumstantiated\r\ncircumstantiates\r\ncircumstantiating\r\ncircumvallated\r\ncircumvallates\r\ncircumvallating\r\ncircumvallation\r\ncircumvent\r\ncircumvented\r\ncircumventing\r\ncircumvention\r\ncircumventions\r\ncircumvents\r\ncircumvolution\r\ncircumvolutions\r\ncircus\r\ncircuses\r\ncircus's\r\ncirque\r\ncirques\r\ncirrhoses\r\ncirrhosis\r\ncirrhotic\r\ncirri\r\ncirrocumulus\r\ncirrostratus\r\ncirrus\r\ncist\r\ncistern\r\ncisterns\r\ncistern's\r\ncit\r\ncitable\r\ncitadel\r\ncitadels\r\ncitadel's\r\ncitation\r\ncitations\r\ncitation's\r\ncite\r\ncited\r\ncites\r\ncithara\r\ncither\r\ncitied\r\ncities\r\ncitified\r\ncitify\r\nciting\r\ncitizen\r\ncitizenly\r\ncitizenry\r\ncitizens\r\ncitizen's\r\ncitizenship\r\ncitole\r\ncitrate\r\ncitrated\r\ncitreous\r\ncitric\r\ncitron\r\ncitronella\r\ncitrus\r\ncitruses\r\ncittern\r\ncitterns\r\ncity\r\ncity's\r\ncityscape\r\ncityscapes\r\ncitywide\r\nciudad\r\ncivet\r\ncivic\r\ncivically\r\ncivics\r\ncivil\r\ncivilian\r\ncivilianisation\r\ncivilianise\r\ncivilianised\r\ncivilianises\r\ncivilianising\r\ncivilians\r\ncivilian's\r\ncivilisable\r\ncivilisation\r\ncivilisations\r\ncivilisation's\r\ncivilise\r\ncivilised\r\nciviliser\r\ncivilisers\r\ncivilises\r\ncivilising\r\ncivilities\r\ncivility\r\ncivilly\r\ncivvies\r\nclabber\r\nclachan\r\nclack\r\nclacker\r\nclackers\r\nclacks\r\nclad\r\ncladding\r\ncladode\r\nclaim\r\nclaimable\r\nclaimant\r\nclaimants\r\nclaimant's\r\nclaimed\r\nclaimer\r\nclaiming\r\nclaims\r\nclairaudience\r\nclairvoyance\r\nclairvoyant\r\nclairvoyantly\r\nclairvoyants\r\nclam\r\nclamant\r\nclambake\r\nclambakes\r\nclamber\r\nclambered\r\nclamberer\r\nclambering\r\nclambers\r\nclammier\r\nclammily\r\nclamminess\r\nclamming\r\nclammy\r\nclamorous\r\nclamour\r\nclamoured\r\nclamourer\r\nclamourers\r\nclamourer's\r\nclamouring\r\nclamours\r\nclamp\r\nclampdown\r\nclamped\r\nclamper\r\nclamping\r\nclamps\r\nclams\r\nclam's\r\nclamshell\r\nclamshells\r\nclamworm\r\nclamworms\r\nclan\r\nclandestine\r\nclandestinely\r\nclandestineness\r\nclang\r\nclanged\r\nclanger\r\nclangers\r\nclanging\r\nclangour\r\nclangoured\r\nclangouring\r\nclangours\r\nclangour's\r\nclangs\r\nclank\r\nclanked\r\nclanking\r\nclankingly\r\nclannish\r\nclannishly\r\nclannishness\r\nclans\r\nclansman\r\nclansmen\r\nclap\r\nclapboard\r\nclapboards\r\nclapped\r\nclapper\r\nclapperboard\r\nclapperboards\r\nclappers\r\nclapping\r\nclaps\r\nclaptrap\r\nclaque\r\nclaques\r\nclaret\r\nclarets\r\nclarification\r\nclarifications\r\nclarified\r\nclarifier\r\nclarifies\r\nclarify\r\nclarifying\r\nclarinet\r\nclarinets\r\nclarinettist\r\nclarion\r\nclarity\r\nclash\r\nclashed\r\nclasher\r\nclashes\r\nclashing\r\nclasp\r\nclasped\r\nclasping\r\nclasps\r\nclass\r\nclassed\r\nclasser\r\nclasses\r\nclassic\r\nclassical\r\nclassicalism\r\nclassicalist\r\nclassicality\r\nclassically\r\nclassicisation\r\nclassicise\r\nclassicised\r\nclassicises\r\nclassicising\r\nclassicism\r\nclassicist\r\nclassicistic\r\nclassics\r\nclassier\r\nclassiest\r\nclassifiable\r\nclassification\r\nclassifications\r\nclassificatory\r\nclassified\r\nclassifieds\r\nclassifier\r\nclassifiers\r\nclassifies\r\nclassify\r\nclassifying\r\nclassiness\r\nclassing\r\nclassis\r\nclassless\r\nclasslessness\r\nclassmate\r\nclassmates\r\nclassmate's\r\nclassroom\r\nclassrooms\r\nclassroom's\r\nclassy\r\nclatter\r\nclattered\r\nclatterer\r\nclattering\r\nclatteringly\r\nclatters\r\nclausal\r\nclause\r\nclauses\r\nclause's\r\nclaustrophobia\r\nclaustrophobic\r\nclave\r\nclaver\r\nclavichord\r\nclavichordist\r\nclavicle\r\nclavicles\r\nclavicle's\r\nclavicorn\r\nclavier\r\nclaw\r\nclawed\r\nclawer\r\nclawing\r\nclaws\r\nclay\r\nclayed\r\nclayey\r\nclaying\r\nclayish\r\nclaymore\r\nclays\r\nclay's\r\nclean\r\ncleanable\r\ncleaned\r\ncleaner\r\ncleaners\r\ncleaner's\r\ncleanest\r\ncleaning\r\ncleanlier\r\ncleanliness\r\ncleanly\r\ncleanness\r\ncleans\r\ncleanse\r\ncleansed\r\ncleanser\r\ncleansers\r\ncleanses\r\ncleansing\r\ncleanup\r\ncleanups\r\ncleanup's\r\nclear\r\nclearable\r\nclearance\r\nclearances\r\nclearance's\r\ncleared\r\nclearer\r\nclearest\r\nclearheaded\r\nclearheadedly\r\nclearing\r\nclearinghouse\r\nclearings\r\nclearing's\r\nclearly\r\nclearness\r\nclears\r\nclearstory\r\nclearway\r\nclearways\r\nclearwing\r\ncleat\r\ncleats\r\ncleavage\r\ncleavages\r\ncleave\r\ncleaved\r\ncleaver\r\ncleavers\r\ncleaves\r\ncleaving\r\ncleek\r\nclef\r\nclefs\r\nclef's\r\ncleft\r\nclefts\r\ncleft's\r\nclemency\r\nclement\r\nclemently\r\nclench\r\nclenched\r\nclenches\r\nclenching\r\nclepsydra\r\nclerestory\r\nclergy\r\nclergyman\r\nclergymen\r\ncleric\r\nclerical\r\nclericalism\r\nclericalist\r\nclerically\r\nclericals\r\nclerics\r\nclerihew\r\nclerk\r\nclerked\r\nclerking\r\nclerkly\r\nclerks\r\nclerk's\r\nclerkship\r\ncleveite\r\nclever\r\ncleverer\r\ncleverest\r\ncleverish\r\ncleverly\r\ncleverness\r\nclevis\r\nclianthus\r\ncliché\r\nclichés\r\nclick\r\nclicked\r\nclicker\r\nclickers\r\nclicking\r\nclicks\r\nclient\r\ncliental\r\nclientele\r\nclients\r\nclient's\r\ncliff\r\ncliffhanging\r\ncliffs\r\ncliff's\r\ncliffy\r\nclimacteric\r\nclimactic\r\nclimactically\r\nclimate\r\nclimates\r\nclimate's\r\nclimatic\r\nclimatically\r\nclimatologically\r\nclimatologist\r\nclimatologists\r\nclimatology\r\nclimax\r\nclimaxed\r\nclimaxes\r\nclimaxing\r\nclimb\r\nclimbable\r\nclimbed\r\nclimber\r\nclimbers\r\nclimbing\r\nclimbs\r\nclime\r\nclimes\r\nclime's\r\nclinch\r\nclinched\r\nclincher\r\nclinches\r\nclinching\r\ncline\r\nclines\r\ncling\r\nclingfish\r\nclinging\r\nclings\r\nclingy\r\nclinic\r\nclinical\r\nclinically\r\nclinician\r\nclinicians\r\nclinics\r\nclinic's\r\nclink\r\nclinked\r\nclinker\r\nclinkered\r\nclinkering\r\nclinkers\r\nclinkstone\r\nclinometers\r\nclinometer's\r\nclinometric\r\nclinostat\r\nclinquant\r\nclip\r\nclipboard\r\nclipboards\r\nclipped\r\nclipper\r\nclippers\r\nclipper's\r\nclippie\r\nclipping\r\nclippings\r\nclipping's\r\nclips\r\nclip's\r\nclipsheet\r\nclique\r\ncliques\r\nclique's\r\ncliquey\r\ncliquish\r\ncliquishly\r\ncliquishness\r\nclitoral\r\nclitoris\r\ncloak\r\ncloaked\r\ncloaking\r\ncloakroom\r\ncloakrooms\r\ncloaks\r\ncloak's\r\nclobber\r\nclobbered\r\nclobbering\r\nclobbers\r\ncloche\r\nclock\r\nclocked\r\nclocker\r\nclocking\r\nclocklike\r\nclockmaker\r\nclocks\r\nclockwise\r\nclockwork\r\nclod\r\ncloddish\r\ncloddishness\r\ncloddy\r\nclodhopper\r\nclodhoppers\r\nclodhopper's\r\nclodhopping\r\nclods\r\nclod's\r\nclog\r\nclogged\r\nclogging\r\nclogs\r\nclog's\r\ncloister\r\ncloistered\r\ncloistering\r\ncloisters\r\ncloister's\r\ncloistral\r\nclomp\r\nclomped\r\nclomping\r\nclomps\r\nclonally\r\nclone\r\ncloned\r\nclones\r\ncloning\r\nclonk\r\nclonked\r\nclonking\r\nclonks\r\nclop\r\nclopped\r\nclopping\r\nclops\r\nclosable\r\nclose\r\nclosed\r\nclosedown\r\nclosefisted\r\nclosely\r\nclosemouthed\r\ncloseness\r\ncloseout\r\ncloser\r\nclosers\r\ncloses\r\nclosest\r\ncloset\r\ncloseted\r\nclosets\r\nclosing\r\nclosings\r\nclosure\r\nclosured\r\nclosures\r\nclosure's\r\nclosuring\r\nclot\r\ncloth\r\nclothbound\r\nclothe\r\nclothed\r\nclothes\r\nclotheshorse\r\nclothesline\r\nclotheslines\r\nclothespin\r\nclothespress\r\nclothier\r\nclothing\r\ncloths\r\nclotted\r\nclotting\r\ncloture\r\ncloud\r\ncloudberry\r\ncloudburst\r\ncloudbursts\r\nclouded\r\ncloudier\r\ncloudiest\r\ncloudily\r\ncloudiness\r\nclouding\r\ncloudland\r\ncloudless\r\ncloudlessly\r\ncloudlessness\r\ncloudlet\r\ncloudlets\r\nclouds\r\ncloudscape\r\ncloudy\r\nclough\r\nclout\r\nclove\r\ncloven\r\nclover\r\ncloverleaf\r\ncloverleaves\r\ncloves\r\nclown\r\nclownery\r\nclowning\r\nclownish\r\nclownishly\r\nclownishness\r\nclowns\r\ncloy\r\ncloying\r\ncloyingly\r\nclub\r\nclubbable\r\nclubbed\r\nclubber\r\nclubbier\r\nclubbing\r\nclubby\r\nclubfoot\r\nclubfooted\r\nclubhaul\r\nclubhouse\r\nclubman\r\nclubroom\r\nclubrooms\r\nclubs\r\nclub's\r\ncluck\r\nclucked\r\nclucking\r\nclucks\r\nclucky\r\nclue\r\nclueing\r\nclueless\r\nclues\r\nclue's\r\ncluing\r\nclumber\r\nclump\r\nclumped\r\nclumping\r\nclumps\r\nclumpy\r\nclumsier\r\nclumsiest\r\nclumsily\r\nclumsiness\r\nclumsy\r\nclung\r\nclunk\r\nclunked\r\nclunker\r\nclunking\r\nclunks\r\nclunky\r\nclupeid\r\ncluster\r\nclustered\r\nclustering\r\nclusters\r\nclustery\r\nclutch\r\nclutched\r\nclutches\r\nclutching\r\nclutter\r\ncluttered\r\ncluttering\r\nclutters\r\ncm\r\ncoach\r\ncoached\r\ncoacher\r\ncoaches\r\ncoaching\r\ncoachman\r\ncoachmen\r\ncoach's\r\ncoachwork\r\ncoactive\r\ncoadjutant\r\ncoadjutor\r\ncoadunate\r\ncoadunation\r\ncoagulant\r\ncoagulants\r\ncoagulate\r\ncoagulated\r\ncoagulates\r\ncoagulating\r\ncoagulation\r\ncoagulum\r\ncoal\r\ncoaled\r\ncoaler\r\ncoalesce\r\ncoalesced\r\ncoalescence\r\ncoalescent\r\ncoalesces\r\ncoalescing\r\ncoalface\r\ncoalfield\r\ncoalfields\r\ncoalfish\r\ncoaling\r\ncoalition\r\ncoalitionist\r\ncoalmine\r\ncoalmines\r\ncoals\r\ncoarse\r\ncoarsely\r\ncoarsen\r\ncoarsened\r\ncoarseness\r\ncoarsening\r\ncoarser\r\ncoarsest\r\ncoast\r\ncoastal\r\ncoasted\r\ncoaster\r\ncoasters\r\ncoastguard\r\ncoastguardsman\r\ncoasting\r\ncoastland\r\ncoastline\r\ncoasts\r\ncoastward\r\ncoastwise\r\ncoat\r\ncoated\r\ncoater\r\ncoaters\r\ncoati\r\ncoating\r\ncoatings\r\ncoatroom\r\ncoats\r\ncoattail\r\ncoattails\r\ncoax\r\ncoaxed\r\ncoaxer\r\ncoaxes\r\ncoaxial\r\ncoaxially\r\ncoaxing\r\ncob\r\ncobalt\r\ncobaltite\r\ncobber\r\ncobble\r\ncobbled\r\ncobbler\r\ncobblers\r\ncobbler's\r\ncobbles\r\ncobblestone\r\ncobblestones\r\ncobbling\r\ncobelligerent\r\ncobia\r\ncoble\r\ncobnut\r\ncobra\r\ncobs\r\ncob's\r\ncobweb\r\ncobwebbed\r\ncobwebby\r\ncobwebs\r\ncobweb's\r\ncoca\r\ncocaine\r\ncocainisation\r\ncocainise\r\ncocainises\r\ncoccid\r\ncoccyx\r\ncochineal\r\ncochlea\r\ncock\r\ncockade\r\ncockaded\r\ncockamamie\r\ncockatiel\r\ncockatoo\r\ncockatrice\r\ncockboat\r\ncockchafer\r\ncockcrow\r\ncocked\r\ncocker\r\ncockerel\r\ncockeye\r\ncockeyed\r\ncockfight\r\ncockfighting\r\ncockfights\r\ncockfight's\r\ncockhorse\r\ncockier\r\ncockily\r\ncockiness\r\ncocking\r\ncockle\r\ncockleboat\r\ncocklebur\r\ncockleshell\r\ncockloft\r\ncockney\r\ncockneyfy\r\ncockneyish\r\ncockneyism\r\ncockneys\r\ncockpit\r\ncockpits\r\ncockroach\r\ncockroaches\r\ncocks\r\ncockscomb\r\ncocksfoot\r\ncockshy\r\ncockspur\r\ncocksure\r\ncocktail\r\ncocktails\r\ncocktail's\r\ncocky\r\ncoco\r\ncocoa\r\ncoconscious\r\ncoconsciousness\r\ncoconut\r\ncoconuts\r\ncoconut's\r\ncocoon\r\ncocoons\r\ncocoon's\r\ncocotte\r\ncocoyam\r\ncod\r\ncoda\r\ncoddle\r\ncoddled\r\ncoddler\r\ncoddles\r\ncoddling\r\ncode\r\ncodebook\r\ncodebooks\r\ncoded\r\ncodeine\r\ncodeless\r\ncoder\r\ncoders\r\ncoder's\r\ncodes\r\ncodetermination\r\ncodetermine\r\ncodetermines\r\ncodeword\r\ncodewords\r\ncodex\r\ncodfish\r\ncodger\r\ncodices\r\ncodicil\r\ncodicillary\r\ncodification\r\ncodifications\r\ncodification's\r\ncodified\r\ncodifier\r\ncodifiers\r\ncodifier's\r\ncodifies\r\ncodify\r\ncodifying\r\ncoding\r\ncodling\r\ncodpiece\r\ncodpieces\r\ncods\r\ncodswallop\r\ncoeducation\r\ncoeducational\r\ncoeducationally\r\ncoefficient\r\ncoefficients\r\ncoefficient's\r\ncoelacanth\r\ncoelenterate\r\ncoenobite\r\ncoenzyme\r\ncoequal\r\ncoequality\r\ncoequally\r\ncoerce\r\ncoerced\r\ncoerces\r\ncoercible\r\ncoercing\r\ncoercion\r\ncoercions\r\ncoercive\r\ncoercively\r\ncoerciveness\r\ncoessential\r\ncoetaneous\r\ncoeternal\r\ncoeternally\r\ncoeternity\r\ncoeval\r\ncoexist\r\ncoexisted\r\ncoexistence\r\ncoexistent\r\ncoexisting\r\ncoexists\r\ncoextend\r\ncoextensive\r\ncoextensively\r\ncofactor\r\ncofactors\r\ncoffee\r\ncoffeehouse\r\ncoffeepot\r\ncoffees\r\ncoffee's\r\ncoffer\r\ncofferdam\r\ncoffers\r\ncoffer's\r\ncoffin\r\ncoffins\r\ncoffin's\r\ncoffle\r\ncoffles\r\ncog\r\ncogency\r\ncogent\r\ncogently\r\ncogged\r\ncogging\r\ncogitate\r\ncogitated\r\ncogitates\r\ncogitating\r\ncogitation\r\ncogitative\r\ncogito\r\ncognac\r\ncognate\r\ncognately\r\ncognates\r\ncognation\r\ncognations\r\ncognisable\r\ncognisably\r\ncognisance\r\ncognisant\r\ncognise\r\ncognised\r\ncognises\r\ncognising\r\ncognition\r\ncognitional\r\ncognitions\r\ncognitive\r\ncognitively\r\ncognomen\r\ncognoscenti\r\ncogon\r\ncogs\r\ncogwheel\r\ncogwheels\r\ncohabit\r\ncohabitant\r\ncohabitants\r\ncohabitation\r\ncohabitations\r\ncohabited\r\ncohabiting\r\ncohabits\r\ncoheir\r\ncohere\r\ncohered\r\ncoherence\r\ncoherency\r\ncoherent\r\ncoherently\r\ncoherer\r\ncoheres\r\ncohering\r\ncohesion\r\ncohesive\r\ncohesively\r\ncohesiveness\r\ncohobate\r\ncohort\r\ncohorts\r\ncohort's\r\ncohune\r\ncoif\r\ncoiffeur\r\ncoiffeuse\r\ncoiffing\r\ncoiffure\r\ncoil\r\ncoiled\r\ncoiling\r\ncoils\r\ncoin\r\ncoinage\r\ncoincide\r\ncoincided\r\ncoincidence\r\ncoincidences\r\ncoincidence's\r\ncoincident\r\ncoincidental\r\ncoincidentally\r\ncoincidently\r\ncoincides\r\ncoinciding\r\ncoined\r\ncoining\r\ncoins\r\ncoinsurance\r\ncoir\r\ncoital\r\ncoition\r\ncoitus\r\ncoke\r\ncokes\r\ncoking\r\ncol\r\ncola\r\ncolander\r\ncolanders\r\ncolatitudes\r\ncolcannon\r\ncolcothar\r\ncold\r\ncolder\r\ncoldest\r\ncoldheartedly\r\ncoldish\r\ncoldly\r\ncoldness\r\ncolds\r\ncoleopteran\r\ncoleslaw\r\ncoleus\r\ncolewort\r\ncoley\r\ncoli\r\ncolic\r\ncolicky\r\ncolicroot\r\ncoliseum\r\ncolitis\r\ncollaborate\r\ncollaborated\r\ncollaborates\r\ncollaborating\r\ncollaboration\r\ncollaborationism\r\ncollaborationist\r\ncollaborationists\r\ncollaborations\r\ncollaborative\r\ncollaboratively\r\ncollaborator\r\ncollaborators\r\ncollaborator's\r\ncollage\r\ncollagen\r\ncollages\r\ncollagist\r\ncollagists\r\ncollapse\r\ncollapsed\r\ncollapses\r\ncollapsibility\r\ncollapsible\r\ncollapsing\r\ncollar\r\ncollarbone\r\ncollard\r\ncollared\r\ncollaring\r\ncollarless\r\ncollars\r\ncollate\r\ncollated\r\ncollateral\r\ncollateralise\r\ncollaterally\r\ncollates\r\ncollating\r\ncollation\r\ncollations\r\ncollative\r\ncollator\r\ncollators\r\ncolleague\r\ncolleagues\r\ncolleague's\r\ncolleagueship\r\ncollect\r\ncollectable\r\ncollected\r\ncollectedly\r\ncollectedness\r\ncollectible\r\ncollecting\r\ncollection\r\ncollections\r\ncollection's\r\ncollective\r\ncollectively\r\ncollectives\r\ncollectivisation\r\ncollectivisations\r\ncollectivisation's\r\ncollectivise\r\ncollectivised\r\ncollectivises\r\ncollectivism\r\ncollectivist\r\ncollectivistic\r\ncollectivists\r\ncollector\r\ncollectors\r\ncollector's\r\ncollectorship\r\ncollects\r\ncollege\r\ncolleges\r\ncollege's\r\ncollegial\r\ncollegiality\r\ncollegially\r\ncollegian\r\ncollegians\r\ncollegiate\r\ncollembolan\r\ncollide\r\ncollided\r\ncollides\r\ncolliding\r\ncollie\r\ncollier\r\ncollieries\r\ncolliery\r\ncollies\r\ncolligate\r\ncolligation\r\ncollimate\r\ncollimated\r\ncollimates\r\ncollimating\r\ncollimation\r\ncollimator\r\ncollinear\r\ncollision\r\ncollisions\r\ncollision's\r\ncollocate\r\ncollocates\r\ncollocation\r\ncollocutor\r\ncolloid\r\ncolloidal\r\ncolloq\r\ncolloquia\r\ncolloquial\r\ncolloquialism\r\ncolloquialisms\r\ncolloquialism's\r\ncolloquially\r\ncolloquist\r\ncolloquium\r\ncolloquy\r\ncollotype\r\ncollude\r\ncolluded\r\ncolludes\r\ncolluding\r\ncollusion\r\ncollusions\r\ncollusive\r\ncollusively\r\ncollywobbles\r\ncolocynth\r\ncologne\r\ncolon\r\ncolonel\r\ncolonelcy\r\ncolonels\r\ncolonel's\r\ncolonial\r\ncolonialism\r\ncolonialist\r\ncolonially\r\ncolonials\r\ncolonic\r\ncolonies\r\ncolonisable\r\ncolonisation\r\ncolonisations\r\ncolonisation's\r\ncolonise\r\ncolonised\r\ncoloniser\r\ncolonisers\r\ncolonises\r\ncolonising\r\ncolonist\r\ncolonists\r\ncolonist's\r\ncolonnade\r\ncolonnaded\r\ncolonnades\r\ncolons\r\ncolon's\r\ncolony\r\ncolony's\r\ncolophon\r\ncolophony\r\ncoloration\r\ncoloratura\r\ncolossal\r\ncolossally\r\ncolossi\r\ncolossus\r\ncolossuses\r\ncolostomy\r\ncolour\r\ncolourability\r\ncolourable\r\ncolourableness\r\ncolourably\r\ncolouration\r\ncolourcast\r\ncoloured\r\ncoloureds\r\ncolourer\r\ncolourers\r\ncolourer's\r\ncolourfast\r\ncolourfastness\r\ncolourful\r\ncolourfully\r\ncolourfulness\r\ncolouring\r\ncolourings\r\ncolourisation\r\ncolourisations\r\ncolourisation's\r\ncolourise\r\ncolourises\r\ncolourist\r\ncolouristic\r\ncolourists\r\ncolourist's\r\ncolourless\r\ncolourlessly\r\ncolourlessness\r\ncolours\r\ncolour's\r\ncolporteur\r\ncolt\r\ncoltish\r\ncoltishly\r\ncoltishness\r\ncolts\r\ncolt's\r\ncoltsfoot\r\ncolubrine\r\ncolugo\r\ncolumbarium\r\ncolumbic\r\ncolumbine\r\ncolumbines\r\ncolumbium\r\ncolumn\r\ncolumnar\r\ncolumned\r\ncolumnists\r\ncolumns\r\ncolumn's\r\ncolure\r\ncolza\r\ncom\r\ncoma\r\ncomas\r\ncomate\r\ncomatose\r\ncomatulid\r\ncomb\r\ncombat\r\ncombatant\r\ncombatants\r\ncombatant's\r\ncombated\r\ncombating\r\ncombative\r\ncombatively\r\ncombativeness\r\ncombats\r\ncombed\r\ncomber\r\ncombers\r\ncombinability\r\ncombinable\r\ncombination\r\ncombinational\r\ncombinations\r\ncombination's\r\ncombinative\r\ncombinatorial\r\ncombinatory\r\ncombine\r\ncombined\r\ncombiner\r\ncombiners\r\ncombines\r\ncombing\r\ncombings\r\ncombining\r\ncombo\r\ncombos\r\ncombs\r\ncombust\r\ncombustibility\r\ncombustible\r\ncombustibles\r\ncombusting\r\ncombustion\r\ncombustions\r\ncombustive\r\ncombustor\r\ncombustors\r\ncome\r\ncomeback\r\ncomedian\r\ncomedians\r\ncomedian's\r\ncomedic\r\ncomedienne\r\ncomediennes\r\ncomedies\r\ncomedown\r\ncomedy\r\ncomedy's\r\ncomelier\r\ncomeliness\r\ncomely\r\ncomer\r\ncomers\r\ncomes\r\ncomestible\r\ncomestibles\r\ncomet\r\ncometh\r\ncomets\r\ncomet's\r\ncomeuppance\r\ncomfier\r\ncomfit\r\ncomfits\r\ncomfort\r\ncomfortable\r\ncomfortableness\r\ncomfortably\r\ncomforted\r\ncomforter\r\ncomforters\r\ncomforting\r\ncomfortingly\r\ncomfortless\r\ncomforts\r\ncomfrey\r\ncomfy\r\ncomic\r\ncomical\r\ncomicality\r\ncomically\r\ncomics\r\ncomic's\r\ncoming\r\ncomings\r\ncomitia\r\ncomity\r\ncomma\r\ncommand\r\ncommandant\r\ncommandants\r\ncommandant's\r\ncommanded\r\ncommandeer\r\ncommandeered\r\ncommandeering\r\ncommandeers\r\ncommander\r\ncommanders\r\ncommandership\r\ncommanding\r\ncommandingly\r\ncommandment\r\ncommandments\r\ncommandment's\r\ncommando\r\ncommandos\r\ncommands\r\ncommand's\r\ncommas\r\ncomma's\r\ncommeasure\r\ncommedia\r\ncommemorate\r\ncommemorated\r\ncommemorates\r\ncommemorating\r\ncommemoration\r\ncommemorations\r\ncommemorative\r\ncommemoratively\r\ncommemoratives\r\ncommemorator\r\ncommemorators\r\ncommence\r\ncommenced\r\ncommencement\r\ncommencements\r\ncommencement's\r\ncommencer\r\ncommences\r\ncommencing\r\ncommend\r\ncommendable\r\ncommendably\r\ncommendation\r\ncommendations\r\ncommendation's\r\ncommendatory\r\ncommended\r\ncommending\r\ncommends\r\ncommensally\r\ncommensurability\r\ncommensurable\r\ncommensurably\r\ncommensurate\r\ncommensurately\r\ncommensuration\r\ncommensurations\r\ncomment\r\ncommentaries\r\ncommentary\r\ncommentary's\r\ncommentate\r\ncommentates\r\ncommentator\r\ncommentators\r\ncommentator's\r\ncommented\r\ncommenter\r\ncommenting\r\ncomments\r\ncomment's\r\ncommerce\r\ncommercial\r\ncommercialisation\r\ncommercialisations\r\ncommercialisation's\r\ncommercialise\r\ncommercialised\r\ncommercialises\r\ncommercialising\r\ncommercialism\r\ncommercialist\r\ncommercialistic\r\ncommercially\r\ncommercials\r\ncommie\r\ncommies\r\ncomminatory\r\ncommingle\r\ncommingled\r\ncomminute\r\ncommiserate\r\ncommiserated\r\ncommiserates\r\ncommiserating\r\ncommiseration\r\ncommiserative\r\ncommissar\r\ncommissariat\r\ncommissary\r\ncommission\r\ncommissionaire\r\ncommissioned\r\ncommissioner\r\ncommissioners\r\ncommissionership\r\ncommissioning\r\ncommissions\r\ncommissural\r\ncommit\r\ncommitment\r\ncommitments\r\ncommitment's\r\ncommits\r\ncommittable\r\ncommittal\r\ncommitted\r\ncommittee\r\ncommitteeman\r\ncommitteemen\r\ncommittees\r\ncommittee's\r\ncommitteewoman\r\ncommitteewomen\r\ncommitting\r\ncommix\r\ncommixture\r\ncommode\r\ncommodes\r\ncommodious\r\ncommodiously\r\ncommodiousness\r\ncommodities\r\ncommodity\r\ncommodity's\r\ncommodore\r\ncommodores\r\ncommodore's\r\ncommon\r\ncommonage\r\ncommonalities\r\ncommonality\r\ncommonalty\r\ncommoner\r\ncommoners\r\ncommoner's\r\ncommonest\r\ncommonly\r\ncommonness\r\ncommonplace\r\ncommonplaceness\r\ncommonplaces\r\ncommons\r\ncommonsense\r\ncommonsensible\r\ncommonsensical\r\ncommonweal\r\ncommonwealth\r\ncommonwealths\r\ncommotion\r\ncommotions\r\ncommove\r\ncommoved\r\ncommoves\r\ncommoving\r\ncommunal\r\ncommunalisation\r\ncommunalisations\r\ncommunalisation's\r\ncommunalise\r\ncommunalised\r\ncommunaliser\r\ncommunalisers\r\ncommunalises\r\ncommunalising\r\ncommunalism\r\ncommunalist\r\ncommunalists\r\ncommunalities\r\ncommunality\r\ncommunally\r\ncommunard\r\ncommunards\r\ncommune\r\ncommuned\r\ncommunes\r\ncommunicability\r\ncommunicable\r\ncommunicableness\r\ncommunicably\r\ncommunicant\r\ncommunicants\r\ncommunicant's\r\ncommunicate\r\ncommunicated\r\ncommunicates\r\ncommunicating\r\ncommunication\r\ncommunicational\r\ncommunications\r\ncommunicative\r\ncommunicatively\r\ncommunicativeness\r\ncommunicator\r\ncommunicators\r\ncommunicator's\r\ncommunicatory\r\ncommuning\r\ncommunion\r\ncommuniqué\r\ncommuniqués\r\ncommunisation\r\ncommunisations\r\ncommunisation's\r\ncommunise\r\ncommunised\r\ncommunises\r\ncommunising\r\ncommunism\r\ncommunist\r\ncommunistic\r\ncommunistically\r\ncommunists\r\ncommunist's\r\ncommunitarian\r\ncommunities\r\ncommunity\r\ncommunity's\r\ncommutable\r\ncommutate\r\ncommutated\r\ncommutates\r\ncommutating\r\ncommutation\r\ncommutations\r\ncommutative\r\ncommutatively\r\ncommute\r\ncommuted\r\ncommuter\r\ncommuters\r\ncommutes\r\ncommuting\r\ncomp\r\ncompact\r\ncompacted\r\ncompacter\r\ncompacters\r\ncompacting\r\ncompaction\r\ncompactly\r\ncompactness\r\ncompactor\r\ncompactors\r\ncompactor's\r\ncompacts\r\ncompanies\r\ncompanion\r\ncompanionable\r\ncompanionableness\r\ncompanionably\r\ncompanionate\r\ncompanions\r\ncompanion's\r\ncompanionship\r\ncompanionway\r\ncompanionways\r\ncompany\r\ncompany's\r\ncomparability\r\ncomparable\r\ncomparableness\r\ncomparably\r\ncomparative\r\ncomparatively\r\ncomparativeness\r\ncomparatives\r\ncomparator\r\ncomparators\r\ncomparator's\r\ncompare\r\ncompared\r\ncomparer\r\ncompares\r\ncomparing\r\ncomparison\r\ncomparisons\r\ncomparison's\r\ncompartment\r\ncompartmental\r\ncompartmentalisation\r\ncompartmentalisations\r\ncompartmentalisation's\r\ncompartmentalise\r\ncompartmentalised\r\ncompartmentalises\r\ncompartmentalising\r\ncompartmented\r\ncompartmenting\r\ncompartments\r\ncompass\r\ncompassable\r\ncompassed\r\ncompasses\r\ncompassing\r\ncompassion\r\ncompassionate\r\ncompassionately\r\ncompassionateness\r\ncompassionless\r\ncompatibilities\r\ncompatibility\r\ncompatibility's\r\ncompatible\r\ncompatibleness\r\ncompatibles\r\ncompatibly\r\ncompatriot\r\ncompatriotic\r\ncompatriots\r\ncompeer\r\ncompel\r\ncompellable\r\ncompelled\r\ncompeller\r\ncompelling\r\ncompellingly\r\ncompels\r\ncompendia\r\ncompendious\r\ncompendiously\r\ncompendiousness\r\ncompendium\r\ncompensability\r\ncompensable\r\ncompensate\r\ncompensated\r\ncompensates\r\ncompensating\r\ncompensation\r\ncompensational\r\ncompensations\r\ncompensative\r\ncompensator\r\ncompensators\r\ncompensatory\r\ncompete\r\ncompeted\r\ncompetence\r\ncompetences\r\ncompetencies\r\ncompetency\r\ncompetent\r\ncompetently\r\ncompetes\r\ncompeting\r\ncompetition\r\ncompetitions\r\ncompetition's\r\ncompetitive\r\ncompetitively\r\ncompetitiveness\r\ncompetitor\r\ncompetitors\r\ncompetitor's\r\ncompilation\r\ncompilations\r\ncompilation's\r\ncompile\r\ncompiled\r\ncompiler\r\ncompilers\r\ncompiler's\r\ncompiles\r\ncompiling\r\ncomplacence\r\ncomplacency\r\ncomplacent\r\ncomplain\r\ncomplainant\r\ncomplainants\r\ncomplained\r\ncomplainer\r\ncomplainers\r\ncomplaining\r\ncomplainingly\r\ncomplains\r\ncomplaint\r\ncomplaints\r\ncomplaint's\r\ncomplaisance\r\ncomplaisant\r\ncomplaisantly\r\ncomplement\r\ncomplementarily\r\ncomplementariness\r\ncomplementary\r\ncomplementation\r\ncomplemented\r\ncomplementing\r\ncomplements\r\ncomplete\r\ncompleted\r\ncompletely\r\ncompleteness\r\ncompleter\r\ncompletes\r\ncompleting\r\ncompletion\r\ncompletions\r\ncompletive\r\ncomplex\r\ncomplexes\r\ncomplexion\r\ncomplexional\r\ncomplexioned\r\ncomplexities\r\ncomplexity\r\ncomplexly\r\ncomplexness\r\ncompliance\r\ncompliances\r\ncompliancy\r\ncompliant\r\ncompliantly\r\ncomplicacy\r\ncomplicate\r\ncomplicated\r\ncomplicatedly\r\ncomplicatedness\r\ncomplicates\r\ncomplicating\r\ncomplication\r\ncomplications\r\ncomplicity\r\ncomplied\r\ncomplier\r\ncompliers\r\ncomplies\r\ncompliment\r\ncomplimentarily\r\ncomplimentary\r\ncomplimented\r\ncomplimenting\r\ncompliments\r\ncomplot\r\ncomply\r\ncomplying\r\ncompo\r\ncomponent\r\ncomponential\r\ncomponents\r\ncomponent's\r\ncomport\r\ncomported\r\ncomportment\r\ncompos\r\ncompose\r\ncomposed\r\ncomposedly\r\ncomposedness\r\ncomposer\r\ncomposers\r\ncomposer's\r\ncomposes\r\ncomposing\r\ncomposite\r\ncompositely\r\ncomposites\r\ncomposition\r\ncompositional\r\ncompositionally\r\ncompositions\r\ncompositor\r\ncompositors\r\ncompost\r\ncomposure\r\ncompotation\r\ncompote\r\ncompound\r\ncompoundable\r\ncompounded\r\ncompounding\r\ncompounds\r\ncomprador\r\ncomprehend\r\ncomprehended\r\ncomprehendible\r\ncomprehending\r\ncomprehends\r\ncomprehensibility\r\ncomprehensible\r\ncomprehensibleness\r\ncomprehensibly\r\ncomprehension\r\ncomprehensive\r\ncomprehensively\r\ncomprehensiveness\r\ncompress\r\ncompressed\r\ncompresses\r\ncompressibility\r\ncompressible\r\ncompressing\r\ncompression\r\ncompressions\r\ncompressive\r\ncompressively\r\ncompressor\r\ncompressors\r\ncomprisable\r\ncomprisal\r\ncomprisals\r\ncomprise\r\ncomprised\r\ncomprises\r\ncomprising\r\ncompromise\r\ncompromised\r\ncompromiser\r\ncompromisers\r\ncompromises\r\ncompromising\r\ncompromisingly\r\ncomptroller\r\ncomptrollers\r\ncomptroller's\r\ncomptrollership\r\ncompulsion\r\ncompulsions\r\ncompulsion's\r\ncompulsive\r\ncompulsively\r\ncompulsiveness\r\ncompulsives\r\ncompulsivity\r\ncompulsorily\r\ncompulsory\r\ncompunction\r\ncompunctions\r\ncompunctious\r\ncompurgation\r\ncompurgator\r\ncomputability\r\ncomputable\r\ncomputation\r\ncomputational\r\ncomputationally\r\ncomputations\r\ncomputation's\r\ncompute\r\ncomputed\r\ncomputer\r\ncomputerisation\r\ncomputerise\r\ncomputerised\r\ncomputerises\r\ncomputerising\r\ncomputers\r\ncomputer's\r\ncomputes\r\ncomputing\r\ncomrade\r\ncomradely\r\ncomrades\r\ncomradeship\r\ncon\r\nconation\r\nconatus\r\nconcatenate\r\nconcatenated\r\nconcatenates\r\nconcatenating\r\nconcatenation\r\nconcatenations\r\nconcave\r\nconcavity\r\nconceal\r\nconcealable\r\nconcealed\r\nconcealing\r\nconcealment\r\nconceals\r\nconcede\r\nconceded\r\nconcededly\r\nconceder\r\nconcedes\r\nconceding\r\nconceit\r\nconceited\r\nconceitedly\r\nconceitedness\r\nconceits\r\nconceivability\r\nconceivable\r\nconceivableness\r\nconceivably\r\nconceive\r\nconceived\r\nconceiver\r\nconceives\r\nconceiving\r\nconcelebrate\r\nconcentrate\r\nconcentrated\r\nconcentrates\r\nconcentrating\r\nconcentration\r\nconcentrations\r\nconcentrative\r\nconcentrator\r\nconcentrators\r\nconcentre\r\nconcentric\r\nconcentrically\r\nconcentricity\r\nconcept\r\nconceptacle\r\nconception\r\nconceptions\r\nconception's\r\nconceptive\r\nconcepts\r\nconcept's\r\nconceptual\r\nconceptualisation\r\nconceptualisations\r\nconceptualisation's\r\nconceptualise\r\nconceptualised\r\nconceptualises\r\nconceptualising\r\nconceptualism\r\nconceptualist\r\nconceptualistic\r\nconceptuality\r\nconceptually\r\nconcern\r\nconcerned\r\nconcernedly\r\nconcerning\r\nconcernment\r\nconcerns\r\nconcert\r\nconcerted\r\nconcertedly\r\nconcertgoer\r\nconcerti\r\nconcertina\r\nconcertino\r\nconcertmaster\r\nconcerto\r\nconcertos\r\nconcerts\r\nconcession\r\nconcessionaire\r\nconcessionaires\r\nconcessionary\r\nconcessions\r\nconcession's\r\nconcessive\r\nconch\r\nconches\r\nconchie\r\nconchiferous\r\nconcierge\r\nconcierges\r\nconciliate\r\nconciliated\r\nconciliates\r\nconciliation\r\nconciliations\r\nconciliator\r\nconciliatory\r\nconcise\r\nconcisely\r\nconciseness\r\nconcision\r\nconcisions\r\nconclave\r\nconclaves\r\nconclude\r\nconcluded\r\nconcluder\r\nconcludes\r\nconcluding\r\nconclusion\r\nconclusions\r\nconclusion's\r\nconclusive\r\nconclusively\r\nconclusiveness\r\nconcoct\r\nconcocted\r\nconcocter\r\nconcoction\r\nconcoctive\r\nconcocts\r\nconcomitance\r\nconcomitant\r\nconcomitantly\r\nconcomitants\r\nconcord\r\nconcordance\r\nconcordant\r\nconcordantly\r\nconcordat\r\nconcourse\r\nconcourses\r\nconcrescence\r\nconcrescences\r\nconcrete\r\nconcreted\r\nconcretely\r\nconcreteness\r\nconcretes\r\nconcreting\r\nconcretion\r\nconcretionary\r\nconcretisation\r\nconcretisations\r\nconcretise\r\nconcretised\r\nconcretises\r\nconcretising\r\nconcubine\r\nconcubines\r\nconcupiscence\r\nconcupiscent\r\nconcur\r\nconcurred\r\nconcurrence\r\nconcurrencies\r\nconcurrency\r\nconcurrent\r\nconcurrently\r\nconcurring\r\nconcurs\r\nconcuss\r\nconcussed\r\nconcusses\r\nconcussing\r\nconcussion\r\nconcussions\r\nconcussive\r\nconcussively\r\ncondemn\r\ncondemnable\r\ncondemnation\r\ncondemnations\r\ncondemnatory\r\ncondemned\r\ncondemner\r\ncondemners\r\ncondemning\r\ncondemns\r\ncondensable\r\ncondensate\r\ncondensates\r\ncondensation\r\ncondensational\r\ncondensations\r\ncondense\r\ncondensed\r\ncondenser\r\ncondensers\r\ncondenses\r\ncondensing\r\ncondescend\r\ncondescendence\r\ncondescending\r\ncondescendingly\r\ncondescends\r\ncondescension\r\ncondign\r\ncondignly\r\ncondiment\r\ncondimental\r\ncondiments\r\ncondition\r\nconditional\r\nconditionality\r\nconditionally\r\nconditionals\r\nconditioned\r\nconditioner\r\nconditioners\r\nconditioning\r\nconditions\r\ncondo\r\ncondolatory\r\ncondole\r\ncondoled\r\ncondolence\r\ncondolences\r\ncondoling\r\ncondom\r\ncondominium\r\ncondominiums\r\ncondominium's\r\ncondoms\r\ncondonable\r\ncondone\r\ncondoned\r\ncondoner\r\ncondones\r\ncondoning\r\ncondor\r\ncondos\r\ncondo's\r\ncondottiere\r\nconduce\r\nconduced\r\nconduces\r\nconducing\r\nconducive\r\nconduciveness\r\nconduct\r\nconductance\r\nconducted\r\nconductibility\r\nconductible\r\nconducting\r\nconduction\r\nconductive\r\nconductively\r\nconductivities\r\nconductivity\r\nconductor\r\nconductors\r\nconductor's\r\nconductress\r\nconducts\r\nconduit\r\nconduits\r\ncone\r\nconed\r\nconeflower\r\ncones\r\ncone's\r\nconfab\r\nconfabbed\r\nconfabbing\r\nconfabulate\r\nconfabulated\r\nconfabulates\r\nconfabulation\r\nconfabulations\r\nconfabulator\r\nconfabulatory\r\nconfect\r\nconfection\r\nconfectionary\r\nconfectioner\r\nconfectioners\r\nconfectionery\r\nconfections\r\nconfects\r\nconfederacy\r\nconfederate\r\nconfederates\r\nconfederation\r\nconfederations\r\nconfederative\r\nconfer\r\nconferee\r\nconferees\r\nconference\r\nconferences\r\nconference's\r\nconferencing\r\nconferential\r\nconferment\r\nconferrable\r\nconferral\r\nconferrals\r\nconferred\r\nconferrer\r\nconferrers\r\nconferrer's\r\nconferring\r\nconfers\r\nconfess\r\nconfessable\r\nconfessant\r\nconfessed\r\nconfessedly\r\nconfesses\r\nconfessing\r\nconfession\r\nconfessional\r\nconfessionals\r\nconfessions\r\nconfession's\r\nconfessor\r\nconfessors\r\nconfessor's\r\nconfetti\r\nconfidant\r\nconfidante\r\nconfidantes\r\nconfidants\r\nconfidant's\r\nconfide\r\nconfided\r\nconfidence\r\nconfidences\r\nconfident\r\nconfidential\r\nconfidentiality\r\nconfidentially\r\nconfidentialness\r\nconfidently\r\nconfider\r\nconfides\r\nconfiding\r\nconfidingly\r\nconfidingness\r\nconfigurable\r\nconfiguration\r\nconfigurationally\r\nconfigurations\r\nconfiguration's\r\nconfigurative\r\nconfigure\r\nconfigured\r\nconfigures\r\nconfiguring\r\nconfine\r\nconfined\r\nconfinement\r\nconfinements\r\nconfinement's\r\nconfiner\r\nconfines\r\nconfining\r\nconfirm\r\nconfirmable\r\nconfirmation\r\nconfirmations\r\nconfirmation's\r\nconfirmatory\r\nconfirmed\r\nconfirmedly\r\nconfirmedness\r\nconfirming\r\nconfirms\r\nconfiscate\r\nconfiscated\r\nconfiscates\r\nconfiscating\r\nconfiscation\r\nconfiscations\r\nconfiscator\r\nconfiscators\r\nconfiscatory\r\nconflagrant\r\nconflagrate\r\nconflagrated\r\nconflagrates\r\nconflagration\r\nconflagrations\r\nconflate\r\nconflated\r\nconflates\r\nconflating\r\nconflation\r\nconflations\r\nconflict\r\nconflicted\r\nconflicting\r\nconflictingly\r\nconfliction\r\nconflictions\r\nconflictive\r\nconflicts\r\nconfluence\r\nconfluences\r\nconfluent\r\nconfluents\r\nconflux\r\nconfluxes\r\nconform\r\nconformability\r\nconformable\r\nconformably\r\nconformal\r\nconformance\r\nconformation\r\nconformational\r\nconformations\r\nconformation's\r\nconformed\r\nconformer\r\nconformers\r\nconforming\r\nconformism\r\nconformist\r\nconformists\r\nconformity\r\nconforms\r\nconfound\r\nconfounded\r\nconfoundedly\r\nconfounder\r\nconfounding\r\nconfounds\r\nconfraternities\r\nconfraternity\r\nconfrere\r\nconfreres\r\nconfront\r\nconfrontation\r\nconfrontational\r\nconfrontationist\r\nconfrontations\r\nconfrontation's\r\nconfronted\r\nconfronter\r\nconfronters\r\nconfronting\r\nconfronts\r\nconfuse\r\nconfused\r\nconfusedly\r\nconfusedness\r\nconfuses\r\nconfusing\r\nconfusingly\r\nconfusion\r\nconfusions\r\nconfutation\r\nconfutations\r\nconfutative\r\nconfute\r\nconfuted\r\nconfuter\r\nconfutes\r\nconfuting\r\ncong\r\nconga\r\ncongeal\r\ncongealed\r\ncongealing\r\ncongealment\r\ncongeals\r\ncongener\r\ncongenial\r\ncongeniality\r\ncongenially\r\ncongenital\r\ncongenitally\r\nconger\r\ncongeries\r\ncongest\r\ncongested\r\ncongesting\r\ncongestion\r\ncongestive\r\ncongests\r\nconglomerate\r\nconglomerated\r\nconglomerates\r\nconglomeratic\r\nconglomeration\r\nconglomerations\r\nconglutinate\r\nconglutinated\r\nconglutinates\r\nconglutinating\r\nconglutination\r\ncongou\r\ncongrats\r\ncongratulate\r\ncongratulated\r\ncongratulates\r\ncongratulation\r\ncongratulations\r\ncongratulator\r\ncongratulatory\r\ncongregant\r\ncongregate\r\ncongregated\r\ncongregates\r\ncongregating\r\ncongregation\r\ncongregational\r\ncongregationalism\r\ncongregations\r\ncongregator\r\ncongress\r\ncongressed\r\ncongresses\r\ncongressing\r\ncongressional\r\ncongressionally\r\ncongressman\r\ncongressmen\r\ncongress's\r\ncongresswoman\r\ncongresswomen\r\ncongruence\r\ncongruency\r\ncongruent\r\ncongruently\r\ncongruity\r\ncongruous\r\ncongruously\r\ncongruousness\r\nconic\r\nconical\r\nconically\r\nconics\r\nconifer\r\nconiferous\r\nconifers\r\nconiine\r\nconing\r\nconjectural\r\nconjecturally\r\nconjecture\r\nconjectured\r\nconjecturer\r\nconjectures\r\nconjecturing\r\nconjoin\r\nconjoined\r\nconjoining\r\nconjoins\r\nconjoint\r\nconjointly\r\nconjugal\r\nconjugality\r\nconjugally\r\nconjugant\r\nconjugate\r\nconjugated\r\nconjugates\r\nconjugating\r\nconjugation\r\nconjugational\r\nconjugationally\r\nconjugations\r\nconjugative\r\nconjunct\r\nconjunction\r\nconjunctional\r\nconjunctionally\r\nconjunctions\r\nconjunction's\r\nconjunctiva\r\nconjunctive\r\nconjunctively\r\nconjunctivitis\r\nconjuncts\r\nconjuncture\r\nconjunctures\r\nconjuration\r\nconjurations\r\nconjure\r\nconjured\r\nconjurer\r\nconjurers\r\nconjures\r\nconjuring\r\nconjuror\r\nconk\r\nconked\r\nconker\r\nconkers\r\nconking\r\nconks\r\nconnate\r\nconnately\r\nconnatural\r\nconnaturally\r\nconnect\r\nconnectable\r\nconnected\r\nconnectedly\r\nconnectedness\r\nconnecter\r\nconnecters\r\nconnectible\r\nconnecting\r\nconnection\r\nconnectional\r\nconnections\r\nconnection's\r\nconnective\r\nconnectively\r\nconnectives\r\nconnective's\r\nconnectivity\r\nconnector\r\nconnectors\r\nconnector's\r\nconnects\r\nconned\r\nconnexion\r\nconnexions\r\nconning\r\nconniption\r\nconnivance\r\nconnive\r\nconnived\r\nconniver\r\nconnives\r\nconniving\r\nconnoisseur\r\nconnoisseurs\r\nconnoisseur's\r\nconnoisseurship\r\nconnotation\r\nconnotations\r\nconnotative\r\nconnotatively\r\nconnote\r\nconnoted\r\nconnotes\r\nconnoting\r\nconnubial\r\nconnubiality\r\nconnubially\r\nconquer\r\nconquerable\r\nconquered\r\nconquering\r\nconqueror\r\nconquerors\r\nconqueror's\r\nconquers\r\nconquest\r\nconquests\r\nconquest's\r\nconquistador\r\nconquistadores\r\nconquistadors\r\ncons\r\nconsanguine\r\nconsanguineous\r\nconsanguineously\r\nconsanguinity\r\nconscience\r\nconscienceless\r\nconsciences\r\nconscience's\r\nconscientious\r\nconscientiously\r\nconscientiousness\r\nconscionable\r\nconscionably\r\nconscious\r\nconsciously\r\nconsciousness\r\nconscribe\r\nconscribed\r\nconscribes\r\nconscribing\r\nconscript\r\nconscripted\r\nconscripting\r\nconscription\r\nconscriptions\r\nconscripts\r\nconsecrate\r\nconsecrated\r\nconsecrates\r\nconsecrating\r\nconsecration\r\nconsecrations\r\nconsecrator\r\nconsecratory\r\nconsecution\r\nconsecutive\r\nconsecutively\r\nconsecutiveness\r\nconsensual\r\nconsensually\r\nconsensus\r\nconsent\r\nconsentaneous\r\nconsentaneously\r\nconsented\r\nconsenter\r\nconsenters\r\nconsentient\r\nconsenting\r\nconsentingly\r\nconsents\r\nconsequence\r\nconsequences\r\nconsequence's\r\nconsequent\r\nconsequential\r\nconsequentiality\r\nconsequentially\r\nconsequentialness\r\nconsequently\r\nconsequents\r\nconservancy\r\nconservation\r\nconservational\r\nconservationist\r\nconservationists\r\nconservationist's\r\nconservations\r\nconservation's\r\nconservatism\r\nconservative\r\nconservatively\r\nconservativeness\r\nconservatives\r\nconservatoire\r\nconservator\r\nconservatorium\r\nconservatory\r\nconserve\r\nconserved\r\nconserver\r\nconserves\r\nconserving\r\nconsider\r\nconsiderable\r\nconsiderably\r\nconsiderate\r\nconsiderately\r\nconsiderateness\r\nconsideration\r\nconsiderations\r\nconsidered\r\nconsiderer\r\nconsidering\r\nconsiders\r\nconsign\r\nconsignable\r\nconsignation\r\nconsigned\r\nconsignee\r\nconsigning\r\nconsignment\r\nconsignor\r\nconsigns\r\nconsist\r\nconsisted\r\nconsistence\r\nconsistencies\r\nconsistency\r\nconsistent\r\nconsistently\r\nconsisting\r\nconsistorial\r\nconsistory\r\nconsists\r\nconsociate\r\nconsociation\r\nconsol\r\nconsolable\r\nconsolation\r\nconsolations\r\nconsolation's\r\nconsolatory\r\nconsole\r\nconsoled\r\nconsoler\r\nconsolers\r\nconsoles\r\nconsolidate\r\nconsolidated\r\nconsolidates\r\nconsolidating\r\nconsolidation\r\nconsolidations\r\nconsolidator\r\nconsolidators\r\nconsoling\r\nconsolingly\r\nconsonance\r\nconsonant\r\nconsonantal\r\nconsonantly\r\nconsonants\r\nconsonant's\r\nconsort\r\nconsorted\r\nconsorting\r\nconsortium\r\nconsorts\r\nconspectus\r\nconspectuses\r\nconspicuous\r\nconspicuously\r\nconspicuousness\r\nconspiracies\r\nconspiracy\r\nconspiracy's\r\nconspirator\r\nconspiratorial\r\nconspiratorially\r\nconspirators\r\nconspirator's\r\nconspire\r\nconspired\r\nconspires\r\nconspiring\r\nconstable\r\nconstables\r\nconstable's\r\nconstabulary\r\nconstancy\r\nconstant\r\nconstantan\r\nconstantly\r\nconstants\r\nconstellate\r\nconstellation\r\nconstellations\r\nconstellation's\r\nconsternate\r\nconsternated\r\nconsternates\r\nconsternating\r\nconsternation\r\nconstipate\r\nconstipated\r\nconstipates\r\nconstipating\r\nconstipation\r\nconstituencies\r\nconstituency\r\nconstituency's\r\nconstituent\r\nconstituently\r\nconstituents\r\nconstituent's\r\nconstitute\r\nconstituted\r\nconstitutes\r\nconstituting\r\nconstitution\r\nconstitutional\r\nconstitutionalism\r\nconstitutionalist\r\nconstitutionality\r\nconstitutionally\r\nconstitutions\r\nconstitutive\r\nconstitutively\r\nconstrain\r\nconstrained\r\nconstrainedly\r\nconstraining\r\nconstrains\r\nconstraint\r\nconstraints\r\nconstraint's\r\nconstrict\r\nconstricted\r\nconstricting\r\nconstriction\r\nconstrictions\r\nconstrictive\r\nconstrictor\r\nconstrictors\r\nconstricts\r\nconstringe\r\nconstringed\r\nconstringent\r\nconstringes\r\nconstringing\r\nconstruable\r\nconstrual\r\nconstruct\r\nconstructed\r\nconstructible\r\nconstructing\r\nconstruction\r\nconstructional\r\nconstructionist\r\nconstructions\r\nconstruction's\r\nconstructive\r\nconstructively\r\nconstructiveness\r\nconstructivism\r\nconstructivist\r\nconstructor\r\nconstructors\r\nconstructor's\r\nconstructs\r\nconstrue\r\nconstrued\r\nconstrues\r\nconstruing\r\nconsubstantial\r\nconsubstantiate\r\nconsubstantiation\r\nconsuetude\r\nconsuetudinary\r\nconsul\r\nconsular\r\nconsulate\r\nconsulates\r\nconsulate's\r\nconsuls\r\nconsul's\r\nconsulship\r\nconsult\r\nconsultancies\r\nconsultancy\r\nconsultant\r\nconsultants\r\nconsultant's\r\nconsultation\r\nconsultations\r\nconsultation's\r\nconsultative\r\nconsulted\r\nconsulter\r\nconsulting\r\nconsults\r\nconsumable\r\nconsumables\r\nconsume\r\nconsumed\r\nconsumedly\r\nconsumer\r\nconsumerism\r\nconsumerist\r\nconsumers\r\nconsumer's\r\nconsumes\r\nconsuming\r\nconsummate\r\nconsummated\r\nconsummately\r\nconsummates\r\nconsummating\r\nconsummation\r\nconsummations\r\nconsummative\r\nconsummator\r\nconsumption\r\nconsumptions\r\nconsumption's\r\nconsumptive\r\nconsumptively\r\ncontact\r\ncontacted\r\ncontacting\r\ncontactor\r\ncontacts\r\ncontagion\r\ncontagious\r\ncontagiously\r\ncontagiousness\r\ncontain\r\ncontainable\r\ncontained\r\ncontainer\r\ncontainerboard\r\ncontainerisation\r\ncontainerise\r\ncontainerised\r\ncontainerises\r\ncontainerising\r\ncontainers\r\ncontaining\r\ncontainment\r\ncontainments\r\ncontainment's\r\ncontains\r\ncontaminant\r\ncontaminants\r\ncontaminate\r\ncontaminated\r\ncontaminates\r\ncontaminating\r\ncontamination\r\ncontaminations\r\ncontaminative\r\ncontaminator\r\ncont'd\r\ncontemn\r\ncontemplate\r\ncontemplated\r\ncontemplates\r\ncontemplating\r\ncontemplation\r\ncontemplations\r\ncontemplative\r\ncontemplatively\r\ncontemplativeness\r\ncontemplator\r\ncontemporaneous\r\ncontemporaneously\r\ncontemporaneousness\r\ncontemporaries\r\ncontemporarily\r\ncontemporariness\r\ncontemporary\r\ncontemporise\r\ncontemporised\r\ncontemporises\r\ncontemporising\r\ncontempt\r\ncontemptible\r\ncontemptibleness\r\ncontemptibly\r\ncontemptuous\r\ncontemptuously\r\ncontemptuousness\r\ncontend\r\ncontended\r\ncontender\r\ncontenders\r\ncontending\r\ncontends\r\ncontent\r\ncontented\r\ncontentedly\r\ncontentedness\r\ncontenting\r\ncontention\r\ncontentions\r\ncontention's\r\ncontentious\r\ncontentiously\r\ncontentiousness\r\ncontently\r\ncontentment\r\ncontents\r\nconterminous\r\nconterminously\r\ncontest\r\ncontestable\r\ncontestant\r\ncontestants\r\ncontestation\r\ncontested\r\ncontester\r\ncontesters\r\ncontesting\r\ncontests\r\ncontext\r\ncontexts\r\ncontext's\r\ncontextual\r\ncontextually\r\ncontexture\r\ncontiguity\r\ncontiguous\r\ncontiguously\r\ncontiguousness\r\ncontinence\r\ncontinent\r\ncontinental\r\ncontinentally\r\ncontinently\r\ncontinents\r\ncontinent's\r\ncontingence\r\ncontingencies\r\ncontingency\r\ncontingency's\r\ncontingent\r\ncontingently\r\ncontingents\r\ncontingent's\r\ncontinua\r\ncontinual\r\ncontinually\r\ncontinuance\r\ncontinuances\r\ncontinuance's\r\ncontinuant\r\ncontinuation\r\ncontinuations\r\ncontinuation's\r\ncontinuative\r\ncontinuatively\r\ncontinuator\r\ncontinue\r\ncontinued\r\ncontinuer\r\ncontinues\r\ncontinuing\r\ncontinuities\r\ncontinuity\r\ncontinuo\r\ncontinuous\r\ncontinuously\r\ncontinuousness\r\ncontinuum\r\ncontort\r\ncontorted\r\ncontorting\r\ncontortion\r\ncontortionist\r\ncontortionists\r\ncontortions\r\ncontorts\r\ncontour\r\ncontoured\r\ncontouring\r\ncontours\r\ncontour's\r\ncontraband\r\ncontrabandist\r\ncontrabass\r\ncontrabassist\r\ncontrabassoon\r\ncontraception\r\ncontraceptive\r\ncontraceptives\r\ncontract\r\ncontracted\r\ncontractibility\r\ncontractible\r\ncontractile\r\ncontractility\r\ncontracting\r\ncontraction\r\ncontractions\r\ncontraction's\r\ncontractive\r\ncontractor\r\ncontractors\r\ncontractor's\r\ncontracts\r\ncontractual\r\ncontractually\r\ncontracture\r\ncontradict\r\ncontradictable\r\ncontradicted\r\ncontradicting\r\ncontradiction\r\ncontradictions\r\ncontradiction's\r\ncontradictious\r\ncontradictor\r\ncontradictorily\r\ncontradictoriness\r\ncontradictory\r\ncontradicts\r\ncontradistinction\r\ncontradistinctions\r\ncontradistinctive\r\ncontradistinctively\r\ncontradistinguish\r\ncontrail\r\ncontraindicate\r\ncontraindicated\r\ncontraindicates\r\ncontraindicating\r\ncontraindication\r\ncontraindications\r\ncontraindication's\r\ncontraindicative\r\ncontralto\r\ncontraposition\r\ncontraption\r\ncontraptions\r\ncontraption's\r\ncontrapuntal\r\ncontrapuntally\r\ncontrapuntist\r\ncontrarieties\r\ncontrariety\r\ncontrarily\r\ncontrariness\r\ncontrariwise\r\ncontrary\r\ncontrast\r\ncontrastable\r\ncontrasted\r\ncontrasting\r\ncontrastingly\r\ncontrastive\r\ncontrastively\r\ncontrasts\r\ncontrasuggestible\r\ncontravallation\r\ncontravene\r\ncontravened\r\ncontravener\r\ncontravenes\r\ncontravening\r\ncontravention\r\ncontretemps\r\ncontribute\r\ncontributed\r\ncontributes\r\ncontributing\r\ncontribution\r\ncontributions\r\ncontributively\r\ncontributor\r\ncontributors\r\ncontributor's\r\ncontributory\r\ncontrite\r\ncontritely\r\ncontriteness\r\ncontrition\r\ncontrivance\r\ncontrivances\r\ncontrivance's\r\ncontrive\r\ncontrived\r\ncontriver\r\ncontrives\r\ncontriving\r\ncontrol\r\ncontrollability\r\ncontrollable\r\ncontrollably\r\ncontrolled\r\ncontroller\r\ncontrollers\r\ncontroller's\r\ncontrollership\r\ncontrollerships\r\ncontrolling\r\ncontrols\r\ncontrol's\r\ncontroversial\r\ncontroversialist\r\ncontroversialists\r\ncontroversially\r\ncontroversies\r\ncontroversy\r\ncontroversy's\r\ncontrovert\r\ncontroverter\r\ncontrovertible\r\ncontroverts\r\ncontumacious\r\ncontumaciously\r\ncontumacy\r\ncontumelious\r\ncontumeliously\r\ncontumely\r\ncontuse\r\ncontused\r\ncontuses\r\ncontusing\r\ncontusion\r\ncontusions\r\nconundrum\r\nconundrums\r\nconundrum's\r\nconurbation\r\nconurbations\r\nconvalesce\r\nconvalescence\r\nconvalescent\r\nconvalescing\r\nconvection\r\nconvectional\r\nconvections\r\nconvective\r\nconvector\r\nconvectors\r\nconvene\r\nconvened\r\nconvener\r\nconveners\r\nconvenes\r\nconvenience\r\nconveniences\r\nconvenience's\r\nconvenient\r\nconveniently\r\nconvening\r\nconvent\r\nconventicler\r\nconvention\r\nconventional\r\nconventionalisation\r\nconventionalise\r\nconventionalised\r\nconventionalises\r\nconventionalising\r\nconventionalism\r\nconventionalist\r\nconventionality\r\nconventionally\r\nconventioneer\r\nconventions\r\nconvention's\r\nconvents\r\nconvent's\r\nconverge\r\nconverged\r\nconvergence\r\nconvergences\r\nconvergent\r\nconverges\r\nconverging\r\nconversable\r\nconversance\r\nconversancy\r\nconversant\r\nconversantly\r\nconversation\r\nconversational\r\nconversationalist\r\nconversationally\r\nconversations\r\nconversation's\r\nconverse\r\nconversed\r\nconversely\r\nconverses\r\nconversing\r\nconversion\r\nconversional\r\nconversions\r\nconvert\r\nconverted\r\nconverter\r\nconverters\r\nconvertibility\r\nconvertible\r\nconvertibleness\r\nconvertibly\r\nconverting\r\nconvertiplane\r\nconverts\r\nconvex\r\nconvexity\r\nconvey\r\nconveyance\r\nconveyances\r\nconveyance's\r\nconveyed\r\nconveyer\r\nconveyers\r\nconveying\r\nconveyor\r\nconveyors\r\nconveys\r\nconvict\r\nconvicted\r\nconvicting\r\nconviction\r\nconvictions\r\nconviction's\r\nconvictive\r\nconvicts\r\nconvince\r\nconvinced\r\nconvincer\r\nconvincers\r\nconvinces\r\nconvincing\r\nconvincingly\r\nconvincingness\r\nconvivial\r\nconviviality\r\nconvivially\r\nconvocation\r\nconvocational\r\nconvocations\r\nconvoke\r\nconvoked\r\nconvokes\r\nconvoking\r\nconvolute\r\nconvoluted\r\nconvolution\r\nconvolutions\r\nconvolve\r\nconvolved\r\nconvolves\r\nconvolving\r\nconvoy\r\nconvoyed\r\nconvoying\r\nconvoys\r\nconvulse\r\nconvulsed\r\nconvulses\r\nconvulsing\r\nconvulsion\r\nconvulsionary\r\nconvulsions\r\nconvulsion's\r\nconvulsive\r\nconvulsively\r\nconvulsiveness\r\ncoo\r\ncooing\r\ncook\r\ncookbook\r\ncookbooks\r\ncooked\r\ncooker\r\ncookers\r\ncookery\r\ncookhouse\r\ncookie\r\ncookies\r\ncookie's\r\ncooking\r\ncookout\r\ncookouts\r\ncooks\r\ncook's\r\ncookware\r\ncool\r\ncoolant\r\ncoolants\r\ncooled\r\ncooler\r\ncoolers\r\ncooler's\r\ncoolest\r\ncoolheaded\r\ncoolie\r\ncoolies\r\ncoolie's\r\ncooling\r\ncoolly\r\ncoolness\r\ncools\r\ncoomb\r\ncoon\r\ncooncan\r\ncoons\r\ncoon's\r\ncoonskin\r\ncoop\r\ncooped\r\ncooper\r\ncooperage\r\ncooperate\r\ncooperated\r\ncooperates\r\ncooperating\r\ncooperation\r\ncooperationist\r\ncooperative\r\ncooperatively\r\ncooperativeness\r\ncooperatives\r\ncoopered\r\ncoopering\r\ncoopers\r\ncoops\r\ncoordinal\r\ncoordinate\r\ncoordinated\r\ncoordinateness\r\ncoordinates\r\ncoordinating\r\ncoordination\r\ncoordinative\r\ncoordinator\r\ncoordinators\r\ncoordinator's\r\ncoot\r\ncootie\r\ncop\r\ncopaiba\r\ncopal\r\ncoparcener\r\ncope\r\ncoped\r\ncopepod\r\ncopes\r\ncopestone\r\ncopied\r\ncopier\r\ncopiers\r\ncopies\r\ncoping\r\ncopings\r\ncopious\r\ncopiously\r\ncopiousness\r\ncoplanar\r\ncopolymer\r\ncopolymerisation\r\ncopolymerise\r\ncopolymerised\r\ncopolymerises\r\ncopolymerising\r\ncopolymers\r\ncopper\r\ncopperas\r\ncoppered\r\ncopperhead\r\ncoppering\r\ncopperplate\r\ncoppers\r\ncopper's\r\ncoppersmith\r\ncoppersmiths\r\ncoppery\r\ncoppice\r\ncopping\r\ncopra\r\ncoprocessor\r\ncoprocessors\r\ncoprocessor's\r\ncoprolite\r\ncoprology\r\ncops\r\ncop's\r\ncopse\r\ncopses\r\ncopter\r\ncopters\r\ncopula\r\ncopulas\r\ncopulate\r\ncopulated\r\ncopulates\r\ncopulating\r\ncopulation\r\ncopulative\r\ncopulatively\r\ncopy\r\ncopybook\r\ncopybooks\r\ncopyboy\r\ncopycat\r\ncopycats\r\ncopycatted\r\ncopycatting\r\ncopydesk\r\ncopyhold\r\ncopyholder\r\ncopying\r\ncopyist\r\ncopyreader\r\ncopyright\r\ncopyrighted\r\ncopyrighter\r\ncopyrighters\r\ncopyrighting\r\ncopyrights\r\ncopyright's\r\ncopywriter\r\ncoquet\r\ncoquetry\r\ncoquette\r\ncoquetted\r\ncoquetting\r\ncoquettish\r\ncoquettishly\r\ncoquettishness\r\ncoquina\r\ncoquito\r\ncoraciiform\r\ncoracle\r\ncoral\r\ncoralberry\r\ncoralline\r\ncoralloid\r\ncoralroot\r\ncorbel\r\ncorbelled\r\ncorbelling\r\ncorbellings\r\ncorbie\r\ncord\r\ncordage\r\ncordately\r\ncorded\r\ncordial\r\ncordiality\r\ncordially\r\ncordialness\r\ncordierite\r\ncordillera\r\ncordilleras\r\ncording\r\ncordite\r\ncordless\r\ncordon\r\ncords\r\ncorduroy\r\ncorduroys\r\ncordwood\r\ncore\r\ncored\r\ncoreligionist\r\ncorer\r\ncorers\r\ncores\r\ncorf\r\ncorgi\r\ncoriander\r\ncoring\r\ncorium\r\ncork\r\ncorkage\r\ncorkboard\r\ncorkboards\r\ncorked\r\ncorker\r\ncorkers\r\ncorkier\r\ncorking\r\ncorks\r\ncorkscrew\r\ncorkscrews\r\ncorkwood\r\ncorky\r\ncormorant\r\ncormorants\r\ncorn\r\ncornball\r\ncornbread\r\ncorncob\r\ncorncrake\r\ncorncrib\r\ncornea\r\ncorneal\r\ncorned\r\ncornel\r\ncornelian\r\ncorneous\r\ncorner\r\ncornered\r\ncornering\r\ncorners\r\ncornerstone\r\ncornerstones\r\ncornerstone's\r\ncornerwise\r\ncornet\r\ncornfield\r\ncornfields\r\ncornfield's\r\ncornflakes\r\ncornflower\r\ncornhusk\r\ncornice\r\ncorniced\r\ncornices\r\ncornicing\r\ncornier\r\ncorniest\r\ncorniness\r\ncorning\r\ncornmeal\r\ncorns\r\ncornstalk\r\ncornstarch\r\ncornucopia\r\ncornucopian\r\ncorny\r\ncorolla\r\ncorollaceous\r\ncorollaries\r\ncorollary\r\ncorollary's\r\ncorona\r\ncoronach\r\ncoronagraph\r\ncoronal\r\ncoronaries\r\ncoronary\r\ncoronate\r\ncoronation\r\ncoroner\r\ncoroners\r\ncoronet\r\ncoroneted\r\ncoronets\r\ncoronet's\r\ncorpora\r\ncorporal\r\ncorporality\r\ncorporally\r\ncorporals\r\ncorporal's\r\ncorporate\r\ncorporately\r\ncorporation\r\ncorporations\r\ncorporation's\r\ncorporatism\r\ncorporatist\r\ncorporative\r\ncorporeal\r\ncorporeality\r\ncorporeally\r\ncorporealness\r\ncorporeity\r\ncorposant\r\ncorps\r\ncorpse\r\ncorpses\r\ncorpse's\r\ncorpsman\r\ncorpsmen\r\ncorpulence\r\ncorpulent\r\ncorpulently\r\ncorpus\r\ncorpuscle\r\ncorpuscles\r\ncorpuscle's\r\ncorpuscular\r\ncorral\r\ncorralled\r\ncorralling\r\ncorrals\r\ncorrect\r\ncorrectable\r\ncorrected\r\ncorrecting\r\ncorrection\r\ncorrectional\r\ncorrections\r\ncorrectitude\r\ncorrective\r\ncorrectively\r\ncorrectives\r\ncorrectly\r\ncorrectness\r\ncorrector\r\ncorrects\r\ncorrelate\r\ncorrelated\r\ncorrelates\r\ncorrelating\r\ncorrelation\r\ncorrelations\r\ncorrelative\r\ncorrelatively\r\ncorrespond\r\ncorresponded\r\ncorrespondence\r\ncorrespondences\r\ncorrespondence's\r\ncorrespondent\r\ncorrespondents\r\ncorrespondent's\r\ncorresponding\r\ncorrespondingly\r\ncorresponds\r\ncorresponsive\r\ncorridor\r\ncorridors\r\ncorridor's\r\ncorrigenda\r\ncorrigendum\r\ncorrigibility\r\ncorrigible\r\ncorrigibly\r\ncorroborant\r\ncorroborate\r\ncorroborated\r\ncorroborates\r\ncorroborating\r\ncorroboration\r\ncorroborations\r\ncorroborative\r\ncorroboratively\r\ncorroborator\r\ncorroborators\r\ncorroboratory\r\ncorroboree\r\ncorrode\r\ncorroded\r\ncorrodes\r\ncorrodible\r\ncorroding\r\ncorrosion\r\ncorrosions\r\ncorrosive\r\ncorrosively\r\ncorrosiveness\r\ncorrosives\r\ncorrugate\r\ncorrugated\r\ncorrugates\r\ncorrugating\r\ncorrugation\r\ncorrugations\r\ncorrupt\r\ncorrupted\r\ncorrupter\r\ncorruptibility\r\ncorruptible\r\ncorruptibly\r\ncorrupting\r\ncorruption\r\ncorruptive\r\ncorruptively\r\ncorruptly\r\ncorrupts\r\ncorsage\r\ncorsages\r\ncorsair\r\ncorselet\r\ncorset\r\ncorsetry\r\ncorsets\r\ncortege\r\ncorteges\r\ncortex\r\ncortical\r\ncortically\r\ncorticated\r\ncortices\r\ncorticoid\r\ncorticosteroid\r\ncorticosteroids\r\ncorticotrophin\r\ncortisone\r\ncorundum\r\ncoruscate\r\ncoruscated\r\ncoruscates\r\ncoruscating\r\ncoruscation\r\ncoruscations\r\ncorves\r\ncorvette\r\ncorvine\r\ncoryphaeus\r\ncosec\r\ncosecant\r\ncoseismal\r\ncosh\r\ncosignatory\r\ncosily\r\ncosine\r\ncosines\r\ncosmetic\r\ncosmetician\r\ncosmeticians\r\ncosmetics\r\ncosmetologist\r\ncosmetologists\r\ncosmetology\r\ncosmic\r\ncosmically\r\ncosmogonist\r\ncosmogony\r\ncosmographer\r\ncosmographic\r\ncosmographical\r\ncosmography\r\ncosmologic\r\ncosmological\r\ncosmologically\r\ncosmologist\r\ncosmologists\r\ncosmologist's\r\ncosmology\r\ncosmonaut\r\ncosmopolitan\r\ncosmopolitanism\r\ncosmopolite\r\ncosmopolitism\r\ncosmos\r\ncosmoses\r\ncosmotron\r\ncosponsor\r\ncosponsored\r\ncosponsors\r\ncosset\r\ncosseted\r\ncosseting\r\ncossets\r\ncost\r\ncostal\r\ncostermonger\r\ncosting\r\ncostive\r\ncostively\r\ncostiveness\r\ncostless\r\ncostlier\r\ncostliness\r\ncostly\r\ncostmary\r\ncostrel\r\ncosts\r\ncostume\r\ncostumed\r\ncostumer\r\ncostumers\r\ncostumes\r\ncostumier\r\ncostuming\r\ncosy\r\ncot\r\ncotangent\r\ncote\r\ncotemporary\r\ncotenant\r\ncoterie\r\ncoteries\r\ncoterminous\r\ncotillion\r\ncotoneaster\r\ncots\r\ncot's\r\ncotta\r\ncottage\r\ncottager\r\ncottagers\r\ncottages\r\ncotter\r\ncotters\r\ncotton\r\ncottoned\r\ncottoning\r\ncottonmouth\r\ncottons\r\ncottonseed\r\ncottontail\r\ncottontails\r\ncottontail's\r\ncottonweed\r\ncottonwood\r\ncottony\r\ncotyledon\r\ncotyledons\r\ncotyledon's\r\ncouch\r\ncouchant\r\ncouched\r\ncouches\r\ncouchette\r\ncouching\r\ncougar\r\ncougars\r\ncough\r\ncoughed\r\ncougher\r\ncoughing\r\ncoughs\r\ncould\r\ncouldn't\r\ncouldst\r\ncould've\r\ncoulee\r\ncoulomb\r\ncoulometer\r\ncoumarone\r\ncouncil\r\ncouncillor\r\ncouncillors\r\ncouncillor's\r\ncouncillorship\r\ncouncilman\r\ncouncilmen\r\ncouncils\r\ncouncil's\r\ncouncilwoman\r\ncouncilwomen\r\ncounsel\r\ncounselled\r\ncounselling\r\ncounsellor\r\ncounsellors\r\ncounsellor's\r\ncounsellorship\r\ncounsels\r\ncounsel's\r\ncount\r\ncountable\r\ncountdown\r\ncountdowns\r\ncountdown's\r\ncounted\r\ncountenance\r\ncountenancer\r\ncounter\r\ncounteract\r\ncounteracted\r\ncounteracting\r\ncounteraction\r\ncounteractive\r\ncounteracts\r\ncounterargument\r\ncounterarguments\r\ncounterattack\r\ncounterattraction\r\ncounterbalance\r\ncounterbalanced\r\ncounterbalances\r\ncounterbalancing\r\ncounterblast\r\ncounterblow\r\ncounterchallenge\r\ncountercheck\r\ncounterclaim\r\ncounterculture\r\ncountercyclical\r\ncountered\r\ncounterespionage\r\ncounterexample\r\ncounterexamples\r\ncounterfactual\r\ncounterfeit\r\ncounterfeited\r\ncounterfeiter\r\ncounterfeiting\r\ncounterfeits\r\ncounterfoil\r\ncounterforce\r\ncountering\r\ncounterinsurgency\r\ncounterintelligence\r\ncounterintuitive\r\ncounterirritant\r\ncounterman\r\ncountermand\r\ncountermanded\r\ncountermanding\r\ncountermands\r\ncountermeasure\r\ncountermeasures\r\ncountermeasure's\r\ncountermen\r\ncountermove\r\ncountermovement\r\ncounteroffensive\r\ncounteroffer\r\ncounterpane\r\ncounterpart\r\ncounterparts\r\ncounterpart's\r\ncounterplea\r\ncounterplot\r\ncounterpoint\r\ncounterpoise\r\ncounterproductive\r\ncounterproof\r\ncounterproposal\r\ncounterpunch\r\ncounterreformation\r\ncounterrevolution\r\ncounterrevolutionaries\r\ncounterrevolutionary\r\ncounterrevolutionary's\r\ncounters\r\ncountershaft\r\ncountershafts\r\ncountersign\r\ncountersignature\r\ncountersink\r\ncountersinking\r\ncountersinks\r\ncounterspy\r\ncounterstatement\r\ncountersubject\r\ncountersunk\r\ncountertenor\r\ncountertenors\r\ncounterterrorism\r\ncounterterrorist\r\ncountertrend\r\ncountertype\r\ncountervail\r\ncountervailed\r\ncountervailing\r\ncountervails\r\ncounterview\r\ncounterweight\r\ncounterweighted\r\ncounterweights\r\ncounterweight's\r\ncounterword\r\ncounterwork\r\ncountess\r\ncounties\r\ncounting\r\ncountless\r\ncountries\r\ncountrified\r\ncountry\r\ncountryman\r\ncountrymen\r\ncountry's\r\ncountryseat\r\ncountryside\r\ncountrywide\r\ncountrywoman\r\ncounts\r\ncounty\r\ncounty's\r\ncountywide\r\ncoup\r\ncoupe\r\ncouple\r\ncoupled\r\ncoupler\r\ncouplers\r\ncouples\r\ncouple's\r\ncouplet\r\ncouplets\r\ncouplet's\r\ncoupling\r\ncouplings\r\ncoupon\r\ncoupons\r\ncoupon's\r\ncoups\r\ncourage\r\ncourageous\r\ncourageously\r\ncourageousness\r\ncourante\r\ncourgette\r\ncourier\r\ncouriers\r\ncourier's\r\ncourse\r\ncoursed\r\ncourser\r\ncourses\r\ncoursework\r\ncoursing\r\ncourt\r\ncourted\r\ncourteous\r\ncourteously\r\ncourteousness\r\ncourtesan\r\ncourtesies\r\ncourtesy\r\ncourtesy's\r\ncourthouse\r\ncourthouses\r\ncourthouse's\r\ncourtier\r\ncourtiers\r\ncourtier's\r\ncourting\r\ncourtliness\r\ncourtly\r\ncourtroom\r\ncourtrooms\r\ncourtroom's\r\ncourts\r\ncourtship\r\ncourtyard\r\ncourtyards\r\ncourtyard's\r\ncouscous\r\ncousin\r\ncousinhood\r\ncousins\r\ncousin's\r\ncousinship\r\ncouth\r\ncouture\r\ncouturier\r\ncouturiere\r\ncovalence\r\ncovalent\r\ncovalently\r\ncovariance\r\ncovariant\r\ncovariate\r\ncovariates\r\ncove\r\ncoven\r\ncovenant\r\ncovenantal\r\ncovenanted\r\ncovenanter\r\ncovenanting\r\ncovenants\r\ncovenant's\r\ncover\r\ncoverable\r\ncoverage\r\ncoverall\r\ncoveralls\r\ncovered\r\ncoverer\r\ncovering\r\ncoverings\r\ncoverless\r\ncoverlet\r\ncoverlets\r\ncoverlet's\r\ncovers\r\ncovert\r\ncovertly\r\ncovertness\r\ncovertures\r\ncoves\r\ncovet\r\ncovetable\r\ncoveted\r\ncoveter\r\ncoveting\r\ncovetous\r\ncovetously\r\ncovetousness\r\ncovets\r\ncovey\r\ncoveys\r\ncoving\r\ncow\r\ncowage\r\ncoward\r\ncowardice\r\ncowardliness\r\ncowardly\r\ncowards\r\ncowbane\r\ncowbell\r\ncowberry\r\ncowbird\r\ncowbirds\r\ncowboy\r\ncowboys\r\ncowboy's\r\ncowcatcher\r\ncowed\r\ncower\r\ncowered\r\ncowering\r\ncowers\r\ncowfish\r\ncowgirl\r\ncowgirls\r\ncowgirl's\r\ncowhand\r\ncowhands\r\ncowherb\r\ncowherd\r\ncowhide\r\ncowhided\r\ncowhiding\r\ncowing\r\ncowl\r\ncowlick\r\ncowling\r\ncowls\r\ncowman\r\ncowmen\r\ncowpat\r\ncowpea\r\ncowpoke\r\ncowpony\r\ncowpox\r\ncowpuncher\r\ncowry\r\ncows\r\ncowslip\r\ncowslips\r\ncowslip's\r\ncox\r\ncoxcomb\r\ncoxcombry\r\ncoxcombs\r\ncoxswain\r\ncoy\r\ncoyly\r\ncoyness\r\ncoyote\r\ncoyotes\r\ncoyote's\r\ncoypu\r\ncoz\r\ncozen\r\ncrab\r\ncrabbed\r\ncrabbedly\r\ncrabbedness\r\ncrabber\r\ncrabbier\r\ncrabbing\r\ncrabby\r\ncrabmeat\r\ncrabs\r\ncrab's\r\ncrabstick\r\ncrabwise\r\ncrack\r\ncrackbrain\r\ncrackbrained\r\ncrackdown\r\ncracked\r\ncracker\r\ncrackerjack\r\ncrackers\r\ncracking\r\ncrackle\r\ncrackled\r\ncrackles\r\ncrackling\r\ncrackly\r\ncracknel\r\ncrackpot\r\ncrackpots\r\ncracks\r\ncracksman\r\ncradle\r\ncradled\r\ncradler\r\ncradles\r\ncradling\r\ncraft\r\ncrafted\r\ncrafter\r\ncraftier\r\ncraftily\r\ncraftiness\r\ncrafting\r\ncrafts\r\ncraftsman\r\ncraftsmanship\r\ncraftsmen\r\ncraftspeople\r\ncraftsperson\r\ncraftswoman\r\ncraftswomen\r\ncrafty\r\ncrag\r\ncragged\r\ncraggier\r\ncraggily\r\ncragginess\r\ncraggy\r\ncrags\r\ncrag's\r\ncragsman\r\ncrake\r\ncram\r\ncrambo\r\ncrammed\r\ncrammer\r\ncramming\r\ncramoisy\r\ncramp\r\ncramped\r\ncrampon\r\ncrampons\r\ncrampon's\r\ncramps\r\ncramp's\r\ncrams\r\ncranberries\r\ncranberry\r\ncranberry's\r\ncrane\r\ncraned\r\ncranes\r\ncrane's\r\ncrania\r\ncranial\r\ncranially\r\ncraning\r\ncraniotomy\r\ncranium\r\ncrank\r\ncrankcase\r\ncranked\r\ncrankier\r\ncrankiest\r\ncrankily\r\ncrankiness\r\ncranking\r\ncrankpin\r\ncranks\r\ncrankshaft\r\ncranky\r\ncrannied\r\ncrannies\r\ncrannog\r\ncranny\r\ncrap\r\ncrape\r\ncrapper\r\ncrappie\r\ncrappier\r\ncrapping\r\ncrappy\r\ncraps\r\ncrapshooter\r\ncrapulent\r\ncrapulous\r\ncrash\r\ncrashed\r\ncrasher\r\ncrashers\r\ncrashes\r\ncrashing\r\ncrashworthiness\r\ncrashworthy\r\ncrass\r\ncrassest\r\ncrassly\r\ncrassness\r\ncrate\r\ncrater\r\ncratered\r\ncraters\r\ncrates\r\ncrating\r\ncravat\r\ncravats\r\ncravat's\r\ncrave\r\ncraved\r\ncraven\r\ncravenly\r\ncravenness\r\ncraver\r\ncraves\r\ncraving\r\ncraw\r\ncrawl\r\ncrawled\r\ncrawler\r\ncrawlers\r\ncrawling\r\ncrawls\r\ncrawlspace\r\ncrawly\r\ncrayfish\r\ncrayon\r\ncrayonist\r\ncrayons\r\ncraze\r\ncrazed\r\ncrazes\r\ncrazier\r\ncraziest\r\ncrazily\r\ncraziness\r\ncrazing\r\ncrazy\r\ncreak\r\ncreaked\r\ncreakier\r\ncreakily\r\ncreaking\r\ncreaks\r\ncreaky\r\ncream\r\ncreamed\r\ncreamer\r\ncreamers\r\ncreamery\r\ncreamily\r\ncreaminess\r\ncreaming\r\ncreams\r\ncreamy\r\ncrease\r\ncreased\r\ncreaseless\r\ncreaser\r\ncreases\r\ncreasing\r\ncreate\r\ncreated\r\ncreates\r\ncreating\r\ncreation\r\ncreationism\r\ncreationism's\r\ncreations\r\ncreative\r\ncreatively\r\ncreativeness\r\ncreativity\r\ncreator\r\ncreators\r\ncreator's\r\ncreatural\r\ncreature\r\ncreaturely\r\ncreatures\r\ncreature's\r\ncrèche\r\ncrèches\r\ncredence\r\ncredendum\r\ncredent\r\ncredential\r\ncredentials\r\ncredenza\r\ncredibility\r\ncredible\r\ncredibly\r\ncredit\r\ncreditability\r\ncreditable\r\ncreditableness\r\ncreditably\r\ncredited\r\ncrediting\r\ncreditor\r\ncreditors\r\ncreditor's\r\ncredits\r\ncredo\r\ncredos\r\ncredulity\r\ncredulous\r\ncredulously\r\ncredulousness\r\ncreed\r\ncreedal\r\ncreeds\r\ncreed's\r\ncreek\r\ncreeks\r\ncreek's\r\ncreel\r\ncreels\r\ncreep\r\ncreeper\r\ncreepers\r\ncreepier\r\ncreepiness\r\ncreeping\r\ncreeps\r\ncreepy\r\ncremate\r\ncremated\r\ncremates\r\ncremating\r\ncremation\r\ncremations\r\ncremator\r\ncrematorium\r\ncrematory\r\ncrenate\r\ncrenel\r\ncreodont\r\ncreosol\r\ncreosote\r\ncrepe\r\ncrepitate\r\ncrept\r\ncrepuscular\r\ncrepuscule\r\ncrescendo\r\ncrescent\r\ncrescents\r\ncrescent's\r\ncresol\r\ncress\r\ncresset\r\ncrest\r\ncrested\r\ncrestfallen\r\ncrestfallenly\r\ncrestfallenness\r\ncresting\r\ncrestless\r\ncrests\r\ncretin\r\ncretins\r\ncretonne\r\ncrevasse\r\ncrevice\r\ncrevices\r\ncrevice's\r\ncrew\r\ncrewed\r\ncrewel\r\ncrewelwork\r\ncrewing\r\ncrewless\r\ncrewman\r\ncrewmember\r\ncrewmembers\r\ncrewmen\r\ncrews\r\ncrib\r\ncribbage\r\ncribbage's\r\ncribber\r\ncribbing\r\ncribs\r\ncrib's\r\ncrick\r\ncricket\r\ncricketer\r\ncricketing\r\ncrickets\r\ncricket's\r\ncried\r\ncrier\r\ncriers\r\ncries\r\ncrikey\r\ncrime\r\ncrimes\r\ncrime's\r\ncriminal\r\ncriminalisation\r\ncriminalise\r\ncriminality\r\ncriminally\r\ncriminals\r\ncriminate\r\ncriminating\r\ncrimination\r\ncriminological\r\ncriminologist\r\ncriminology\r\ncrimp\r\ncrimped\r\ncrimpier\r\ncrimping\r\ncrimple\r\ncrimps\r\ncrimpy\r\ncrimson\r\ncrimsoning\r\ncringe\r\ncringed\r\ncringer\r\ncringes\r\ncringing\r\ncringle\r\ncrinite\r\ncrinkle\r\ncrinkled\r\ncrinkleroot\r\ncrinkles\r\ncrinkling\r\ncrinkly\r\ncrinoline\r\ncripes\r\ncripple\r\ncrippled\r\ncrippler\r\ncripples\r\ncrippling\r\ncrises\r\ncrisis\r\ncrisp\r\ncrispate\r\ncrisper\r\ncrispier\r\ncrispiness\r\ncrisply\r\ncrispness\r\ncrisps\r\ncrispy\r\ncrisscross\r\ncrisscrossed\r\ncriteria\r\ncriterion\r\ncritic\r\ncritical\r\ncriticality\r\ncritically\r\ncriticalness\r\ncriticaster\r\ncriticisable\r\ncriticise\r\ncriticised\r\ncriticiser\r\ncriticisers\r\ncriticises\r\ncriticising\r\ncriticism\r\ncriticisms\r\ncriticism's\r\ncritics\r\ncritic's\r\ncritique\r\ncritiqued\r\ncritiques\r\ncritiquing\r\ncritter\r\ncritters\r\ncritter's\r\ncroak\r\ncroaked\r\ncroakers\r\ncroaking\r\ncroaks\r\ncroaky\r\ncrochet\r\ncrocheted\r\ncrocheting\r\ncrochets\r\ncrock\r\ncrocked\r\ncrockery\r\ncrocket\r\ncrocks\r\ncrocodile\r\ncrocodiles\r\ncrocodilian\r\ncrocus\r\ncrocuses\r\ncroft\r\ncrofter\r\ncrofters\r\ncroissant\r\ncroissants\r\ncromlech\r\ncrone\r\ncrones\r\ncronies\r\ncrony\r\ncronyism\r\ncrook\r\ncrookback\r\ncrookbacked\r\ncrooked\r\ncrookedly\r\ncrookedness\r\ncrooks\r\ncroon\r\ncrooned\r\ncrooner\r\ncrooners\r\ncrooning\r\ncroons\r\ncrop\r\ncropland\r\ncroplands\r\ncropland's\r\ncropped\r\ncropper\r\ncroppers\r\ncropper's\r\ncropping\r\ncrops\r\ncrop's\r\ncroquet\r\ncroquette\r\ncrosier\r\ncross\r\ncrossable\r\ncrossbar\r\ncrossbars\r\ncrossbar's\r\ncrossbeam\r\ncrossbill\r\ncrossbones\r\ncrossbow\r\ncrossbowman\r\ncrossbred\r\ncrossbreed\r\ncrosscheck\r\ncrosscurrent\r\ncrosscurrents\r\ncrosscut\r\ncrossed\r\ncrosser\r\ncrossers\r\ncrosses\r\ncrossfire\r\ncrosshatch\r\ncrosshatched\r\ncrosshatches\r\ncrosshatching\r\ncrosshead\r\ncrossing\r\ncrossings\r\ncrossjack\r\ncrosslet\r\ncrosslink\r\ncrosslink's\r\ncrossly\r\ncrossopterygian\r\ncrossover\r\ncrossovers\r\ncrossover's\r\ncrosspatch\r\ncrosspiece\r\ncrossroad\r\ncrossroads\r\ncrossruff\r\ncrosstalk\r\ncrosstie\r\ncrossties\r\ncrosstree\r\ncrosswalk\r\ncrossway\r\ncrossways\r\ncrosswind\r\ncrosswise\r\ncrossword\r\ncrosswords\r\ncrossword's\r\ncrotch\r\ncrotched\r\ncrotches\r\ncrotchet\r\ncrotchetiness\r\ncrotchets\r\ncrotchety\r\ncroton\r\ncrouch\r\ncrouched\r\ncrouches\r\ncrouching\r\ncroup\r\ncroupier\r\ncroupy\r\ncrouton\r\ncroutons\r\ncrow\r\ncrowbar\r\ncrowbars\r\ncrowbar's\r\ncrowberry\r\ncrowd\r\ncrowded\r\ncrowdedness\r\ncrowding\r\ncrowds\r\ncrowed\r\ncrowfeet\r\ncrowfoot\r\ncrowfoots\r\ncrowing\r\ncrown\r\ncrowned\r\ncrowner\r\ncrowning\r\ncrownpiece\r\ncrowns\r\ncrownwork\r\ncrows\r\ncru\r\ncruces\r\ncrucial\r\ncrucially\r\ncrucible\r\ncrucifer\r\ncruciferous\r\ncrucified\r\ncrucifies\r\ncrucifix\r\ncrucifixion\r\ncruciform\r\ncruciformly\r\ncrucify\r\ncrucifying\r\ncrud\r\ncruddy\r\ncrude\r\ncrudely\r\ncrudeness\r\ncruder\r\ncrudest\r\ncrudities\r\ncrudity\r\ncruel\r\ncrueller\r\ncruellest\r\ncruelly\r\ncruelness\r\ncruelty\r\ncruet\r\ncruise\r\ncruised\r\ncruiser\r\ncruisers\r\ncruiserweight\r\ncruises\r\ncruising\r\ncruller\r\ncrumb\r\ncrumbier\r\ncrumble\r\ncrumbled\r\ncrumbles\r\ncrumblier\r\ncrumbliness\r\ncrumbling\r\ncrumbly\r\ncrumbs\r\ncrumby\r\ncrumhorn\r\ncrummier\r\ncrummy\r\ncrump\r\ncrumpet\r\ncrumple\r\ncrumpled\r\ncrumples\r\ncrumpling\r\ncrunch\r\ncrunched\r\ncruncher\r\ncrunchers\r\ncrunches\r\ncrunchier\r\ncrunchiest\r\ncrunchiness\r\ncrunching\r\ncrunchy\r\ncrupper\r\ncrusade\r\ncrusaded\r\ncrusader\r\ncrusaders\r\ncrusades\r\ncrusading\r\ncruse\r\ncrush\r\ncrushable\r\ncrushed\r\ncrusher\r\ncrushers\r\ncrushes\r\ncrushing\r\ncrushingly\r\ncrushproof\r\ncrust\r\ncrustacean\r\ncrustaceans\r\ncrustacean's\r\ncrustaceous\r\ncrusted\r\ncrustier\r\ncrustily\r\ncrustiness\r\ncrusting\r\ncrusts\r\ncrust's\r\ncrusty\r\ncrutch\r\ncrutched\r\ncrutches\r\ncrutch's\r\ncrux\r\ncrux's\r\ncry\r\ncrying\r\ncryobiology\r\ncryogen\r\ncryogenic\r\ncryogenically\r\ncryogenics\r\ncryohydrate\r\ncryonic\r\ncryonics\r\ncryophilic\r\ncryophyte\r\ncryoscopy\r\ncryostat\r\ncryosurgery\r\ncryotron\r\ncrypt\r\ncryptal\r\ncryptanalysis\r\ncryptanalyst\r\ncryptanalytic\r\ncryptic\r\ncryptically\r\ncrypto\r\ncryptoclastic\r\ncryptocrystalline\r\ncryptogam\r\ncryptogenic\r\ncryptogram\r\ncryptogrammic\r\ncryptograms\r\ncryptogram's\r\ncryptograph\r\ncryptographer\r\ncryptographic\r\ncryptographically\r\ncryptography\r\ncryptologist\r\ncryptology\r\ncryptozoic\r\ncrypts\r\ncrystal\r\ncrystalline\r\ncrystallisable\r\ncrystallisation\r\ncrystallisations\r\ncrystallisation's\r\ncrystallise\r\ncrystallised\r\ncrystalliser\r\ncrystallisers\r\ncrystallises\r\ncrystallising\r\ncrystallite\r\ncrystallites\r\ncrystallographer\r\ncrystallographers\r\ncrystallographic\r\ncrystallography\r\ncrystals\r\ncrystal's\r\nctenophore\r\ncub\r\ncubage\r\ncubature\r\ncubbies\r\ncubby\r\ncube\r\ncubeb\r\ncubed\r\ncubes\r\ncubic\r\ncubical\r\ncubically\r\ncubicle\r\ncubicles\r\ncubiculum\r\ncubing\r\ncubism\r\ncubist\r\ncubistic\r\ncubists\r\ncubit\r\ncubs\r\ncub's\r\ncuckold\r\ncuckoldry\r\ncuckoo\r\ncuckooflower\r\ncuckoopint\r\ncuckoos\r\ncuckoo's\r\ncuculiform\r\ncucumber\r\ncucumbers\r\ncucumber's\r\ncucurbit\r\ncud\r\ncudbear\r\ncuddle\r\ncuddled\r\ncuddles\r\ncuddlesome\r\ncuddlier\r\ncuddling\r\ncuddly\r\ncuddy\r\ncudgel\r\ncudgelled\r\ncudgeller\r\ncudgellers\r\ncudgelling\r\ncudgels\r\ncudgel's\r\ncudweed\r\ncue\r\ncued\r\ncueing\r\ncues\r\ncuff\r\ncuffed\r\ncuffing\r\ncufflink\r\ncufflinks\r\ncuffs\r\ncuff's\r\ncuing\r\ncuirass\r\ncuirassier\r\ncuisine\r\ncuisse\r\nculet\r\nculicid\r\nculinary\r\ncull\r\nculled\r\nculler\r\ncullet\r\nculling\r\nculls\r\ncully\r\nculmiferous\r\nculminant\r\nculminate\r\nculminated\r\nculminates\r\nculminating\r\nculmination\r\nculottes\r\nculpa\r\nculpability\r\nculpable\r\nculpableness\r\nculpably\r\nculprit\r\nculprits\r\nculprit's\r\ncult\r\ncultch\r\ncultic\r\ncultism\r\ncultist\r\ncultists\r\ncultivability\r\ncultivable\r\ncultivar\r\ncultivars\r\ncultivatable\r\ncultivate\r\ncultivated\r\ncultivates\r\ncultivating\r\ncultivation\r\ncultivations\r\ncultivator\r\ncultivators\r\ncultivator's\r\ncultrate\r\ncults\r\ncult's\r\ncultural\r\nculturally\r\nculture\r\ncultured\r\ncultures\r\nculturing\r\nculverin\r\nculvert\r\ncum\r\ncumber\r\ncumbersome\r\ncumbersomely\r\ncumbersomeness\r\ncumbrous\r\ncumbrously\r\ncumbrousness\r\ncumin\r\ncummerbund\r\ncumquat\r\ncumshaw\r\ncumulate\r\ncumulated\r\ncumulates\r\ncumulating\r\ncumulative\r\ncumulatively\r\ncumuliform\r\ncumulonimbus\r\ncumulous\r\ncumulus\r\ncuneal\r\ncuneiform\r\ncunnilingus\r\ncunning\r\ncunningly\r\ncunningness\r\ncup\r\ncupbearer\r\ncupboard\r\ncupboards\r\ncupboard's\r\ncupcake\r\ncupcakes\r\ncupellation\r\ncupful\r\ncupfuls\r\ncupidity\r\ncuplike\r\ncupola\r\ncuppa\r\ncupped\r\ncupping\r\ncupreous\r\ncupric\r\ncupriferous\r\ncuprous\r\ncuprum\r\ncups\r\ncup's\r\ncur\r\ncurability\r\ncurable\r\ncurableness\r\ncurably\r\ncuracy\r\ncurare\r\ncurassow\r\ncurate\r\ncurative\r\ncuratively\r\ncurator\r\ncuratorial\r\ncurators\r\ncurb\r\ncurbed\r\ncurbing\r\ncurbs\r\ncurd\r\ncurdle\r\ncurdled\r\ncurdles\r\ncurdling\r\ncurds\r\ncure\r\ncured\r\ncureless\r\ncurer\r\ncures\r\ncurettage\r\ncurette\r\ncuretted\r\ncuretting\r\ncurfew\r\ncurfews\r\ncurfew's\r\ncuria\r\ncuriae\r\ncurie\r\ncuring\r\ncurio\r\ncurios\r\ncuriosa\r\ncuriosities\r\ncuriosity\r\ncuriosity's\r\ncurious\r\ncuriously\r\ncuriousness\r\ncurium\r\ncurl\r\ncurled\r\ncurler\r\ncurlers\r\ncurlew\r\ncurlicue\r\ncurlier\r\ncurliness\r\ncurling\r\ncurlpaper\r\ncurls\r\ncurly\r\ncurmudgeon\r\ncurmudgeonly\r\ncurrant\r\ncurrants\r\ncurrant's\r\ncurrencies\r\ncurrency\r\ncurrency's\r\ncurrent\r\ncurrently\r\ncurrents\r\ncurricle\r\ncurricula\r\ncurricular\r\ncurriculum\r\ncurriculum's\r\ncurried\r\ncurrier\r\ncurries\r\ncurrish\r\ncurrishly\r\ncurry\r\ncurrycomb\r\ncurrying\r\ncurs\r\ncurse\r\ncursed\r\ncursedly\r\ncursedness\r\ncurses\r\ncursing\r\ncursive\r\ncursively\r\ncursor\r\ncursorily\r\ncursoriness\r\ncursors\r\ncursor's\r\ncursory\r\ncurst\r\ncurt\r\ncurtail\r\ncurtailed\r\ncurtailer\r\ncurtailing\r\ncurtailment\r\ncurtails\r\ncurtain\r\ncurtained\r\ncurtaining\r\ncurtains\r\ncurtly\r\ncurtness\r\ncurtsey\r\ncurtseyed\r\ncurtseying\r\ncurtseys\r\ncurtsied\r\ncurtsies\r\ncurtsy\r\ncurtsying\r\ncurtsy's\r\ncurvaceous\r\ncurvaceously\r\ncurvature\r\ncurvatures\r\ncurve\r\ncurveball\r\ncurved\r\ncurves\r\ncurvilinear\r\ncurving\r\ncurvy\r\ncusec\r\ncushiest\r\ncushion\r\ncushioned\r\ncushioning\r\ncushions\r\ncushiony\r\ncushy\r\ncusp\r\ncuspate\r\ncuspidate\r\ncuspidation\r\ncuspidor\r\ncusps\r\ncusp's\r\ncuss\r\ncussed\r\ncussedly\r\ncussedness\r\ncusses\r\ncustard\r\ncustodial\r\ncustodian\r\ncustodians\r\ncustodian's\r\ncustodianship\r\ncustodianships\r\ncustodies\r\ncustody\r\ncustom\r\ncustomable\r\ncustomarily\r\ncustomariness\r\ncustomary\r\ncustomer\r\ncustomers\r\ncustomer's\r\ncustomhouse\r\ncustomhouses\r\ncustomisable\r\ncustomisation\r\ncustomisations\r\ncustomisation's\r\ncustomise\r\ncustomised\r\ncustomises\r\ncustomising\r\ncustoms\r\ncut\r\ncutaway\r\ncutback\r\ncutbacks\r\ncutch\r\ncute\r\ncutely\r\ncuteness\r\ncuter\r\ncutes\r\ncutest\r\ncutesy\r\ncuticle\r\ncuticles\r\ncutie\r\ncutinise\r\ncutinised\r\ncutinises\r\ncutinising\r\ncutis\r\ncutlass\r\ncutler\r\ncutlery\r\ncutlet\r\ncutlets\r\ncutover\r\ncutpurse\r\ncuts\r\ncut's\r\ncutter\r\ncutters\r\ncutter's\r\ncutthroat\r\ncutting\r\ncuttingly\r\ncuttings\r\ncuttlebone\r\ncuttlebones\r\ncuttlefish\r\ncuttlefishes\r\ncutup\r\ncutups\r\ncutwater\r\ncutwork\r\ncutworm\r\ncyan\r\ncyanic\r\ncyanide\r\ncyanine\r\ncyanosis\r\ncyanotype\r\ncyber\r\ncybernation\r\ncybernetic\r\ncyberneticist\r\ncybernetics\r\ncycad\r\ncyclamate\r\ncyclamen\r\ncycle\r\ncycled\r\ncycles\r\ncyclic\r\ncyclical\r\ncyclically\r\ncycling\r\ncyclist\r\ncyclists\r\ncyclograph\r\ncycloid\r\ncycloids\r\ncyclometer\r\ncyclometers\r\ncyclometer's\r\ncyclone\r\ncyclones\r\ncyclone's\r\ncyclonic\r\ncyclonically\r\ncyclonite\r\ncyclopean\r\ncyclorama\r\ncyclostyle\r\ncyclotron\r\ncygnet\r\ncygnets\r\ncygnet's\r\ncylinder\r\ncylindered\r\ncylindering\r\ncylinders\r\ncylinder's\r\ncylindrical\r\ncylindrically\r\ncylix\r\ncyma\r\ncymatium\r\ncymbal\r\ncymbalist\r\ncymbalists\r\ncymbals\r\ncymbal's\r\ncymene\r\ncynic\r\ncynical\r\ncynically\r\ncynicism\r\ncynics\r\ncynosure\r\ncyperaceous\r\ncypress\r\ncyprinid\r\ncyprinodont\r\ncypsela\r\ncyst\r\ncystic\r\ncystitis\r\ncysts\r\ncytogenesis\r\ncytological\r\ncytologist\r\ncytology\r\ncytolysis\r\ncytoplasm\r\ncytoplast\r\ncytosine\r\nczar\r\nczardas\r\ndab\r\ndabbed\r\ndabber\r\ndabbers\r\ndabbing\r\ndabble\r\ndabbled\r\ndabbler\r\ndabblers\r\ndabbles\r\ndabbling\r\ndabchick\r\ndabs\r\ndace\r\ndacha\r\ndachshund\r\ndachshund\r\ndacoit\r\ndacron\r\ndactyl\r\ndactylic\r\ndactylology\r\ndactyls\r\ndad\r\ndaddies\r\ndaddy\r\ndado\r\ndads\r\ndad's\r\ndaedal\r\ndaemon\r\ndaemons\r\ndaemon's\r\ndaff\r\ndaffier\r\ndaffodil\r\ndaffodils\r\ndaffodil's\r\ndaffy\r\ndaft\r\ndafter\r\ndaftest\r\ndaftly\r\ndaftness\r\ndagger\r\ndaggers\r\ndaguerreotype\r\ndaguerreotypes\r\ndaguerreotype's\r\ndahlia\r\ndahlias\r\ndailies\r\ndaily\r\ndaimyo\r\ndaintier\r\ndainties\r\ndaintily\r\ndaintiness\r\ndainty\r\ndaiquiri\r\ndaiquiris\r\ndairies\r\ndairy\r\ndairying\r\ndairymaid\r\ndairyman\r\ndairymen\r\ndais\r\ndaises\r\ndaisies\r\ndaisy\r\ndaisy's\r\ndalai\r\ndalasi\r\ndale\r\ndales\r\ndale's\r\ndalliance\r\ndallied\r\ndallier\r\ndally\r\ndallying\r\ndalmatic\r\ndam\r\ndamage\r\ndamaged\r\ndamager\r\ndamagers\r\ndamages\r\ndamaging\r\ndamagingly\r\ndamask\r\ndame\r\ndammed\r\ndamming\r\ndamn\r\ndamnable\r\ndamnableness\r\ndamnably\r\ndamnation\r\ndamnatory\r\ndamned\r\ndamnedest\r\ndamning\r\ndamningly\r\ndamns\r\ndamp\r\ndamped\r\ndampen\r\ndampened\r\ndampener\r\ndampening\r\ndampens\r\ndamper\r\ndampers\r\ndamping\r\ndampish\r\ndamply\r\ndampness\r\ndamps\r\ndams\r\ndam's\r\ndamsel\r\ndamselfish\r\ndamselflies\r\ndamselfly\r\ndamsels\r\ndamsel's\r\ndance\r\ndanceable\r\ndanced\r\ndancer\r\ndancers\r\ndances\r\ndancing\r\ndandelion\r\ndandelions\r\ndandelion's\r\ndander\r\ndandier\r\ndandies\r\ndandification\r\ndandify\r\ndandily\r\ndandle\r\ndandled\r\ndandling\r\ndandruff\r\ndandy\r\ndandyish\r\ndandyism\r\ndang\r\ndanger\r\ndangerous\r\ndangerously\r\ndangerousness\r\ndangers\r\ndanger's\r\ndangle\r\ndangled\r\ndangler\r\ndanglers\r\ndangler's\r\ndangles\r\ndangling\r\ndank\r\ndankly\r\ndankness\r\ndanseur\r\ndaphnia\r\ndapper\r\ndapperly\r\ndapperness\r\ndapple\r\ndappled\r\ndapples\r\ndappling\r\ndare\r\ndared\r\ndaredevil\r\ndaredevilry\r\ndaredevils\r\ndarer\r\ndarers\r\ndares\r\ndaresay\r\ndaring\r\ndaringly\r\ndaringness\r\ndark\r\ndarken\r\ndarkened\r\ndarkener\r\ndarkeners\r\ndarkening\r\ndarker\r\ndarkest\r\ndarkish\r\ndarkle\r\ndarkly\r\ndarkness\r\ndarkroom\r\ndarkrooms\r\ndarks\r\ndarksome\r\ndarling\r\ndarlingness\r\ndarlings\r\ndarling's\r\ndarn\r\ndarned\r\ndarnel\r\ndarner\r\ndarning\r\ndarns\r\ndart\r\nd'art\r\ndartboard\r\ndarted\r\ndarter\r\ndarting\r\ndarts\r\ndash\r\ndashboard\r\ndashboards\r\ndashed\r\ndasheen\r\ndasher\r\ndashers\r\ndashes\r\ndashiki\r\ndashing\r\ndashingly\r\ndashpot\r\ndastard\r\ndastardliness\r\ndastardly\r\ndasyure\r\ndata\r\ndatabank\r\ndatabanks\r\ndatabase\r\ndatabases\r\ndatabase's\r\ndatable\r\ndatagram\r\ndatagram's\r\ndatary\r\ndataset\r\ndatasets\r\ndate\r\ndateable\r\ndated\r\ndatedness\r\ndateless\r\ndateline\r\ndatelined\r\ndatelines\r\ndater\r\ndates\r\ndating\r\ndative\r\ndatum\r\ndaub\r\ndaubed\r\ndauber\r\ndaubery\r\ndaubs\r\ndaughter\r\ndaughterless\r\ndaughterly\r\ndaughters\r\ndaughter's\r\ndaunt\r\ndaunted\r\ndaunting\r\ndauntless\r\ndauntlessly\r\ndauntlessness\r\ndaunts\r\ndauphin\r\ndauphine\r\ndavenport\r\ndavit\r\ndavits\r\ndawdle\r\ndawdled\r\ndawdler\r\ndawdlers\r\ndawdles\r\ndawdling\r\ndawn\r\ndawned\r\ndawning\r\ndawns\r\nday\r\ndaybed\r\ndaybook\r\ndayboy\r\ndaybreak\r\ndaybreaks\r\ndaydream\r\ndaydreamed\r\ndaydreamer\r\ndaydreamers\r\ndaydreaming\r\ndaydreams\r\ndayflower\r\ndayfly\r\ndaylight\r\ndaylights\r\ndaylight's\r\ndaylong\r\ndayroom\r\ndayrooms\r\ndays\r\nday's\r\ndayspring\r\ndaystar\r\ndaytime\r\ndaytimes\r\ndaze\r\ndazed\r\ndazedness\r\ndazes\r\ndazing\r\ndazzle\r\ndazzled\r\ndazzler\r\ndazzlers\r\ndazzles\r\ndazzling\r\ndazzlingly\r\ndb\r\nde\r\ndeacon\r\ndeaconess\r\ndeaconry\r\ndeacons\r\ndeacon's\r\ndeactivate\r\ndeactivated\r\ndeactivates\r\ndeactivating\r\ndeactivation\r\ndeactivator\r\ndead\r\ndeadbeat\r\ndeaden\r\ndeadened\r\ndeadener\r\ndeadening\r\ndeadens\r\ndeadeye\r\ndeadfall\r\ndeadhead\r\ndeadheads\r\ndeadlier\r\ndeadliest\r\ndeadlight\r\ndeadline\r\ndeadlines\r\ndeadline's\r\ndeadliness\r\ndeadlock\r\ndeadlocked\r\ndeadlocking\r\ndeadlocks\r\ndeadly\r\ndeadness\r\ndeadpan\r\ndeadweight\r\ndeadwood\r\ndeaf\r\ndeafen\r\ndeafened\r\ndeafening\r\ndeafeningly\r\ndeafens\r\ndeafer\r\ndeafest\r\ndeafly\r\ndeafness\r\ndeal\r\ndealer\r\ndealers\r\ndealership\r\ndealerships\r\ndealfish\r\ndealing\r\ndealings\r\ndeals\r\ndealt\r\ndean\r\ndeanery\r\ndeans\r\ndean's\r\ndeanship\r\ndear\r\ndearer\r\ndearest\r\ndearly\r\ndearness\r\ndears\r\ndearth\r\ndeath\r\ndeathbed\r\ndeathblow\r\ndeathless\r\ndeathlessly\r\ndeathlessness\r\ndeathly\r\ndeaths\r\ndeathward\r\ndebacle\r\ndebacles\r\ndebag\r\ndebar\r\ndebark\r\ndebarkation\r\ndebarks\r\ndebarment\r\ndebarred\r\ndebarring\r\ndebars\r\ndebase\r\ndebased\r\ndebasement\r\ndebaser\r\ndebases\r\ndebasing\r\ndebatable\r\ndebate\r\ndebated\r\ndebater\r\ndebaters\r\ndebates\r\ndebating\r\ndebauch\r\ndebauched\r\ndebauchedly\r\ndebauchedness\r\ndebauchee\r\ndebaucher\r\ndebauchery\r\ndebauches\r\ndebenture\r\ndebentures\r\ndebilitate\r\ndebilitated\r\ndebilitates\r\ndebilitating\r\ndebilitation\r\ndebility\r\ndebit\r\ndebited\r\ndebiting\r\ndebits\r\ndebonair\r\ndebonairly\r\ndebonairness\r\ndebouch\r\ndebrief\r\ndebriefed\r\ndebriefing\r\ndebriefs\r\ndebris\r\ndebs\r\ndebt\r\ndebtless\r\ndebtor\r\ndebtors\r\ndebts\r\ndebt's\r\ndebug\r\ndebugged\r\ndebugger\r\ndebuggers\r\ndebugger's\r\ndebugging\r\ndebugs\r\ndebunk\r\ndebunker\r\ndebunking\r\ndebunks\r\ndebus\r\ndebut\r\ndebutant\r\ndebutante\r\ndebutantes\r\ndebutante's\r\ndebuting\r\ndebuts\r\ndecade\r\ndecadence\r\ndecadency\r\ndecadent\r\ndecadently\r\ndecades\r\ndecade's\r\ndecaffeinate\r\ndecaffeinated\r\ndecaffeinates\r\ndecaffeinating\r\ndecagon\r\ndecagram\r\ndecahedron\r\ndecal\r\ndecalcification\r\ndecalcify\r\ndecalcomania\r\ndecalescence\r\ndecametre\r\ndecametres\r\ndecametre's\r\ndecamp\r\ndecampment\r\ndecamps\r\ndecanal\r\ndecant\r\ndecantation\r\ndecanted\r\ndecanter\r\ndecanters\r\ndecanting\r\ndecants\r\ndecapitate\r\ndecapitated\r\ndecapitates\r\ndecapitating\r\ndecapitation\r\ndecapitator\r\ndecapods\r\ndecarbonisation\r\ndecarbonise\r\ndecarbonised\r\ndecarbonises\r\ndecarbonising\r\ndecarburisation\r\ndecarburise\r\ndecarburised\r\ndecarburises\r\ndecarburising\r\ndecasualisation\r\ndecasyllabic\r\ndecasyllable\r\ndecathlon\r\ndecathlons\r\ndecay\r\ndecayed\r\ndecaying\r\ndecays\r\ndecease\r\ndeceased\r\ndeceases\r\ndeceasing\r\ndecedent\r\ndeceit\r\ndeceitful\r\ndeceitfully\r\ndeceitfulness\r\ndeceivable\r\ndeceivableness\r\ndeceive\r\ndeceived\r\ndeceiver\r\ndeceivers\r\ndeceives\r\ndeceiving\r\ndeceivingly\r\ndecelerate\r\ndecelerated\r\ndecelerates\r\ndecelerating\r\ndeceleration\r\ndecelerations\r\ndecelerator\r\ndecemvirate\r\ndecencies\r\ndecency\r\ndecency's\r\ndecennial\r\ndecennially\r\ndecennium\r\ndecent\r\ndecently\r\ndecentralisation\r\ndecentralisations\r\ndecentralisation's\r\ndecentralise\r\ndecentralised\r\ndecentralises\r\ndecentralising\r\ndecentralist\r\ndeception\r\ndeceptions\r\ndeception's\r\ndeceptive\r\ndeceptively\r\ndeceptiveness\r\ndecertification\r\ndecertify\r\ndecibel\r\ndecibels\r\ndecidability\r\ndecidable\r\ndecide\r\ndecided\r\ndecidedly\r\ndecidedness\r\ndecider\r\ndecides\r\ndeciding\r\ndeciduous\r\ndeciduously\r\ndeciduousness\r\ndecilitre\r\ndecilitres\r\ndecimal\r\ndecimalisation\r\ndecimalisations\r\ndecimalisation's\r\ndecimalise\r\ndecimalised\r\ndecimalises\r\ndecimalising\r\ndecimally\r\ndecimals\r\ndecimate\r\ndecimated\r\ndecimates\r\ndecimating\r\ndecimation\r\ndecimetre\r\ndecimetres\r\ndecimetre's\r\ndecipher\r\ndecipherable\r\ndeciphered\r\ndecipherer\r\ndecipherers\r\ndeciphering\r\ndecipherment\r\ndeciphers\r\ndecision\r\ndecisional\r\ndecisions\r\ndecision's\r\ndecisive\r\ndecisively\r\ndecisiveness\r\ndeck\r\ndecked\r\ndeckhand\r\ndeckhouse\r\ndecking\r\ndeckle\r\ndecks\r\ndeclaim\r\ndeclaimed\r\ndeclaimer\r\ndeclaiming\r\ndeclaims\r\ndeclamation\r\ndeclamations\r\ndeclamatory\r\ndeclarable\r\ndeclaration\r\ndeclarations\r\ndeclaration's\r\ndeclarative\r\ndeclaratively\r\ndeclaratives\r\ndeclaratory\r\ndeclare\r\ndeclared\r\ndeclarer\r\ndeclarers\r\ndeclares\r\ndeclaring\r\ndeclass\r\ndeclassification\r\ndeclassifications\r\ndeclassify\r\ndeclension\r\ndeclensional\r\ndeclensions\r\ndeclinable\r\ndeclination\r\ndeclinational\r\ndeclinations\r\ndeclination's\r\ndecline\r\ndeclined\r\ndecliner\r\ndecliners\r\ndeclines\r\ndeclining\r\ndeclinometer\r\ndeclivitous\r\ndeclivity\r\ndeclutch\r\ndeclutched\r\ndeclutches\r\ndeclutching\r\ndecoct\r\ndecocted\r\ndecocting\r\ndecoction\r\ndecoctions\r\ndecocts\r\ndecode\r\ndecoded\r\ndecoder\r\ndecoders\r\ndecodes\r\ndecoding\r\ndecollate\r\ndecollated\r\ndecollates\r\ndecollating\r\ndecollation\r\ndecollations\r\ndécolletage\r\ndecolonisation\r\ndecolonise\r\ndecolonised\r\ndecolonises\r\ndecolonising\r\ndecolour\r\ndecolourant\r\ndecolourants\r\ndecoloured\r\ndecolouring\r\ndecolourisation\r\ndecolourise\r\ndecolourised\r\ndecolouriser\r\ndecolourises\r\ndecolours\r\ndecommission\r\ndecompensate\r\ndecompile\r\ndecompiled\r\ndecompiler\r\ndecompilers\r\ndecompiles\r\ndecompiling\r\ndecomposability\r\ndecomposable\r\ndecompose\r\ndecomposed\r\ndecomposer\r\ndecomposes\r\ndecomposing\r\ndecomposition\r\ndecompositions\r\ndecomposition's\r\ndecompress\r\ndecompressed\r\ndecompresser\r\ndecompresses\r\ndecompressing\r\ndecompression\r\ndecongest\r\ndecongestant\r\ndecongestion\r\ndecongestive\r\ndeconsecrate\r\ndeconsecration\r\ndeconstruct\r\ndecontaminate\r\ndecontaminated\r\ndecontaminates\r\ndecontaminating\r\ndecontamination\r\ndecontaminations\r\ndecontrol\r\ndecontrolled\r\ndecontrolling\r\ndeconvolution\r\ndeconvolve\r\ndecor\r\ndecorate\r\ndecorated\r\ndecorates\r\ndecorating\r\ndecoration\r\ndecorations\r\ndecorative\r\ndecoratively\r\ndecorativeness\r\ndecorator\r\ndecorators\r\ndecorous\r\ndecorously\r\ndecorousness\r\ndecorticate\r\ndecorticated\r\ndecorticates\r\ndecorticating\r\ndecorticator\r\ndecorticators\r\ndecorum\r\ndecoupage\r\ndecoupages\r\ndecouple\r\ndecoupled\r\ndecouples\r\ndecoupling\r\ndecoy\r\ndecoys\r\ndecoy's\r\ndecrease\r\ndecreased\r\ndecreases\r\ndecreasing\r\ndecreasingly\r\ndecree\r\ndecreed\r\ndecreeing\r\ndecrees\r\ndecrement\r\ndecremental\r\ndecremented\r\ndecrementing\r\ndecrements\r\ndecrepit\r\ndecrepitly\r\ndecrepitude\r\ndecrescendo\r\ndecretive\r\ndecretory\r\ndecrial\r\ndecrials\r\ndecried\r\ndecrier\r\ndecries\r\ndecriminalisation\r\ndecriminalisation's\r\ndecriminalise\r\ndecry\r\ndecrying\r\ndecrypt\r\ndecrypted\r\ndecrypting\r\ndecryption\r\ndecrypts\r\ndecumbent\r\ndecuple\r\ndecussate\r\ndecussately\r\ndedicate\r\ndedicated\r\ndedicatedly\r\ndedicates\r\ndedicating\r\ndedication\r\ndedications\r\ndedicative\r\ndedicator\r\ndedicatory\r\ndedifferentiate\r\ndedifferentiated\r\ndedifferentiation\r\ndeduce\r\ndeduced\r\ndeduces\r\ndeducible\r\ndeducing\r\ndeduct\r\ndeducted\r\ndeductibility\r\ndeductible\r\ndeductibles\r\ndeducting\r\ndeduction\r\ndeductions\r\ndeduction's\r\ndeductive\r\ndeductively\r\ndeducts\r\ndeed\r\ndeeded\r\ndeeding\r\ndeedless\r\ndeeds\r\ndeejay\r\ndeem\r\ndeemed\r\ndeeming\r\ndeemphasise\r\ndeemphasised\r\ndeemphasises\r\ndeemphasising\r\ndeems\r\ndeenergise\r\ndeep\r\ndeepen\r\ndeepened\r\ndeepening\r\ndeepens\r\ndeeper\r\ndeepest\r\ndeeply\r\ndeepness\r\ndeeps\r\ndeer\r\ndeerhound\r\ndeerskin\r\ndeerskins\r\ndeerstalker\r\ndeface\r\ndefacement\r\ndefacer\r\ndefaces\r\ndefacing\r\ndefalcate\r\ndefalcation\r\ndefalcator\r\ndefamation\r\ndefamatory\r\ndefame\r\ndefamed\r\ndefamer\r\ndefames\r\ndefaming\r\ndefault\r\ndefaulted\r\ndefaulter\r\ndefaulting\r\ndefaults\r\ndefeasance\r\ndefeasibility\r\ndefeat\r\ndefeated\r\ndefeating\r\ndefeatism\r\ndefeatist\r\ndefeatists\r\ndefeats\r\ndefecate\r\ndefecated\r\ndefecates\r\ndefecating\r\ndefecation\r\ndefecations\r\ndefect\r\ndefected\r\ndefecting\r\ndefection\r\ndefections\r\ndefection's\r\ndefective\r\ndefectively\r\ndefectiveness\r\ndefectives\r\ndefector\r\ndefectors\r\ndefector's\r\ndefects\r\ndefence\r\ndefenceless\r\ndefencelessly\r\ndefencelessness\r\ndefences\r\ndefence's\r\ndefend\r\ndefendable\r\ndefendant\r\ndefendants\r\ndefendant's\r\ndefended\r\ndefender\r\ndefenders\r\ndefending\r\ndefends\r\ndefenestrate\r\ndefenestrated\r\ndefenestrates\r\ndefenestrating\r\ndefenestration\r\ndefensibility\r\ndefensible\r\ndefensibly\r\ndefensive\r\ndefensively\r\ndefensiveness\r\ndefer\r\ndeference\r\ndeferent\r\ndeferential\r\ndeferentially\r\ndeferment\r\ndeferments\r\ndeferment's\r\ndeferrable\r\ndeferral\r\ndeferred\r\ndeferrer\r\ndeferrers\r\ndeferrer's\r\ndeferring\r\ndefers\r\ndefiance\r\ndefiant\r\ndefiantly\r\ndefibrillation\r\ndefibrillator\r\ndeficiencies\r\ndeficiency\r\ndeficient\r\ndeficiently\r\ndeficit\r\ndeficits\r\ndeficit's\r\ndefied\r\ndefies\r\ndefilade\r\ndefile\r\ndefiled\r\ndefilement\r\ndefiler\r\ndefiles\r\ndefiling\r\ndefinable\r\ndefinably\r\ndefine\r\ndefined\r\ndefiner\r\ndefiners\r\ndefines\r\ndefiniendum\r\ndefining\r\ndefinite\r\ndefinitely\r\ndefiniteness\r\ndefinition\r\ndefinitional\r\ndefinitions\r\ndefinition's\r\ndefinitive\r\ndefinitively\r\ndefinitiveness\r\ndefinitude\r\ndeflagrate\r\ndeflagrated\r\ndeflagrates\r\ndeflagrating\r\ndeflagration\r\ndeflate\r\ndeflated\r\ndeflates\r\ndeflating\r\ndeflation\r\ndeflationary\r\ndeflator\r\ndeflect\r\ndeflected\r\ndeflecting\r\ndeflection\r\ndeflections\r\ndeflective\r\ndeflector\r\ndeflects\r\ndeflexed\r\ndefloration\r\ndeflorations\r\ndeflower\r\ndefocus\r\ndefocusing\r\ndefoliant\r\ndefoliate\r\ndefoliated\r\ndefoliates\r\ndefoliating\r\ndefoliation\r\ndefoliator\r\ndeforest\r\ndeforestation\r\ndeforester\r\ndeform\r\ndeformation\r\ndeformational\r\ndeformations\r\ndeformation's\r\ndeformed\r\ndeforming\r\ndeformities\r\ndeformity\r\ndeformity's\r\ndeforms\r\ndefraud\r\ndefrauded\r\ndefrauder\r\ndefrauding\r\ndefrauds\r\ndefray\r\ndefrayable\r\ndefrayal\r\ndefrayals\r\ndefrayed\r\ndefraying\r\ndefrays\r\ndefrock\r\ndefrost\r\ndefrosted\r\ndefroster\r\ndefrosting\r\ndefrosts\r\ndeft\r\ndefter\r\ndeftest\r\ndeftly\r\ndeftness\r\ndefunct\r\ndefuse\r\ndefused\r\ndefusing\r\ndefy\r\ndefying\r\ndegas\r\ndegassed\r\ndegasses\r\ndegassing\r\ndegauss\r\ndegaussed\r\ndegausses\r\ndegaussing\r\ndegeneracy\r\ndegenerate\r\ndegenerated\r\ndegenerately\r\ndegenerateness\r\ndegenerates\r\ndegenerating\r\ndegeneration\r\ndegenerative\r\ndeglutinate\r\ndeglutition\r\ndeglycerolised\r\ndegradable\r\ndegradation\r\ndegradations\r\ndegradation's\r\ndegrade\r\ndegraded\r\ndegradedly\r\ndegradedness\r\ndegrader\r\ndegrades\r\ndegrading\r\ndegradingly\r\ndegrease\r\ndegree\r\ndegrees\r\ndegree's\r\ndegust\r\ndehisce\r\ndehiscent\r\ndehorn\r\ndehumanisation\r\ndehumanisations\r\ndehumanisation's\r\ndehumanise\r\ndehumanised\r\ndehumanises\r\ndehumanising\r\ndehumidification\r\ndehumidified\r\ndehumidifier\r\ndehumidify\r\ndehydrate\r\ndehydrated\r\ndehydrates\r\ndehydrating\r\ndehydration\r\ndehydrator\r\ndehydrogenate\r\ndehypnotise\r\ndehypnotised\r\ndehypnotises\r\ndehypnotising\r\ndeicide\r\ndeictic\r\ndeific\r\ndeification\r\ndeiform\r\ndeify\r\ndeign\r\ndeigned\r\ndeigning\r\ndeigns\r\ndeil\r\ndeindustrialisation\r\ndeionisation\r\ndeionise\r\ndeionises\r\ndeism\r\ndeist\r\ndeistic\r\ndeistical\r\ndeistically\r\ndeities\r\ndeity\r\ndeity's\r\ndéjà\r\ndeject\r\ndejected\r\ndejectedly\r\ndejectedness\r\ndejection\r\ndejeuner\r\ndejeuners\r\ndekalitre\r\ndekko\r\ndelaine\r\ndelaminate\r\ndelay\r\ndelayed\r\ndelayer\r\ndelayers\r\ndelaying\r\ndelays\r\ndele\r\ndelectability\r\ndelectable\r\ndelectableness\r\ndelectably\r\ndelectate\r\ndelectation\r\ndelegable\r\ndelegacy\r\ndelegate\r\ndelegated\r\ndelegates\r\ndelegating\r\ndelegation\r\ndelegations\r\ndelete\r\ndeleted\r\ndeleterious\r\ndeleteriously\r\ndeleteriousness\r\ndeletes\r\ndeleting\r\ndeletion\r\ndeletions\r\ndelft\r\ndeli\r\ndeliberate\r\ndeliberated\r\ndeliberately\r\ndeliberateness\r\ndeliberates\r\ndeliberating\r\ndeliberation\r\ndeliberations\r\ndeliberative\r\ndeliberatively\r\ndeliberativeness\r\ndeliberator\r\ndeliberators\r\ndeliberator's\r\ndelicacies\r\ndelicacy\r\ndelicacy's\r\ndelicate\r\ndelicately\r\ndelicateness\r\ndelicates\r\ndelicatessen\r\ndelicious\r\ndeliciously\r\ndeliciousness\r\ndelicto\r\ndelight\r\ndelighted\r\ndelightedly\r\ndelightedness\r\ndelighter\r\ndelightful\r\ndelightfully\r\ndelightfulness\r\ndelighting\r\ndelights\r\ndelightsome\r\ndelightsomely\r\ndelimeter\r\ndelimeters\r\ndelimit\r\ndelimitate\r\ndelimitation\r\ndelimitative\r\ndelimited\r\ndelimiter\r\ndelimiters\r\ndelimiting\r\ndelimits\r\ndelineate\r\ndelineated\r\ndelineates\r\ndelineating\r\ndelineation\r\ndelineations\r\ndelineative\r\ndelineator\r\ndelinquency\r\ndelinquent\r\ndelinquently\r\ndelinquents\r\ndelinquent's\r\ndeliquesce\r\ndeliquescence\r\ndeliquescent\r\ndelirious\r\ndeliriously\r\ndeliriousness\r\ndelirium\r\ndeliriums\r\ndelis\r\ndeli's\r\ndelitescence\r\ndeliver\r\ndeliverability\r\ndeliverable\r\ndeliverables\r\ndeliverance\r\ndelivered\r\ndeliverer\r\ndeliverers\r\ndeliveries\r\ndelivering\r\ndelivers\r\ndelivery\r\ndeliveryman\r\ndeliveryman's\r\ndeliverymen\r\ndeliverymen's\r\ndelivery's\r\ndell\r\ndells\r\ndell's\r\ndelocalisation\r\ndelocalise\r\ndelouse\r\ndeloused\r\ndelouses\r\ndelousing\r\ndelphinium\r\ndelta\r\ndeltaic\r\ndeltas\r\ndelta's\r\ndeltiology\r\ndeltoid\r\ndeltoids\r\ndelude\r\ndeluded\r\ndeluder\r\ndeludes\r\ndeluding\r\ndeludingly\r\ndeluge\r\ndeluged\r\ndeluges\r\ndeluging\r\ndelusion\r\ndelusional\r\ndelusions\r\ndelusion's\r\ndelusive\r\ndelusively\r\ndelusiveness\r\ndelusory\r\ndeluxe\r\ndelve\r\ndelved\r\ndelver\r\ndelves\r\ndelving\r\ndemagnetisation\r\ndemagnetisations\r\ndemagnetisation's\r\ndemagnetise\r\ndemagnetised\r\ndemagnetiser\r\ndemagnetisers\r\ndemagnetises\r\ndemagnetising\r\ndemagnification\r\ndemagogic\r\ndemagogical\r\ndemagogically\r\ndemagogue\r\ndemagoguery\r\ndemagogues\r\ndemagogy\r\ndemand\r\ndemandable\r\ndemanded\r\ndemander\r\ndemanding\r\ndemandingly\r\ndemands\r\ndemarcate\r\ndemarcated\r\ndemarcates\r\ndemarcating\r\ndemarcation\r\ndemark\r\ndematerialisation\r\ndematerialise\r\ndematerialised\r\ndematerialises\r\ndematerialising\r\ndemean\r\ndemeaned\r\ndemeaning\r\ndemeanour\r\ndemeanours\r\ndemeanour's\r\ndemeans\r\ndement\r\ndemented\r\ndementedly\r\ndementedness\r\ndementia\r\ndemerara\r\ndemerit\r\ndemerits\r\ndemesne\r\ndemi\r\ndemigod\r\ndemigoddess\r\ndemijohn\r\ndemilitarisation\r\ndemilitarise\r\ndemilitarised\r\ndemilitarises\r\ndemilitarising\r\ndemimondaine\r\ndemimonde\r\ndemineralisation\r\ndemineralisations\r\ndemineralisation's\r\ndemineralise\r\ndemineralised\r\ndemineralises\r\ndemineralising\r\ndemirep\r\ndemise\r\ndemised\r\ndemisemiquaver\r\ndemises\r\ndemising\r\ndemission\r\ndemist\r\ndemit\r\ndemitasse\r\ndemitted\r\ndemitting\r\ndemiurge\r\ndemo\r\ndemob\r\ndemobilisation\r\ndemobilise\r\ndemobilised\r\ndemobilises\r\ndemobilising\r\ndemocracies\r\ndemocracy\r\ndemocracy's\r\ndemocrat\r\ndemocratic\r\ndemocratically\r\ndemocratisation\r\ndemocratisations\r\ndemocratisation's\r\ndemocratise\r\ndemocratised\r\ndemocratises\r\ndemocratising\r\ndemocrats\r\ndemocrat's\r\ndemodulate\r\ndemodulated\r\ndemodulates\r\ndemodulating\r\ndemodulation\r\ndemodulations\r\ndemodulation's\r\ndemodulator\r\ndemodulators\r\ndemodulator's\r\ndemographer\r\ndemographers\r\ndemographer's\r\ndemographic\r\ndemographical\r\ndemographically\r\ndemographics\r\ndemography\r\ndemoiselle\r\ndemolish\r\ndemolished\r\ndemolisher\r\ndemolishes\r\ndemolishing\r\ndemolishment\r\ndemolition\r\ndemolitionist\r\ndemolitions\r\ndemon\r\ndemonetisation\r\ndemonetise\r\ndemonetised\r\ndemonetises\r\ndemonetising\r\ndemoniac\r\ndemoniacal\r\ndemoniacally\r\ndemonian\r\ndemonic\r\ndemonical\r\ndemonically\r\ndemonise\r\ndemonised\r\ndemonises\r\ndemonising\r\ndemonism\r\ndemonolater\r\ndemonolatry\r\ndemonology\r\ndemons\r\ndemon's\r\ndemonstrability\r\ndemonstrable\r\ndemonstrableness\r\ndemonstrably\r\ndemonstrate\r\ndemonstrated\r\ndemonstrates\r\ndemonstrating\r\ndemonstration\r\ndemonstrational\r\ndemonstrationist\r\ndemonstrations\r\ndemonstrative\r\ndemonstratively\r\ndemonstrativeness\r\ndemonstrator\r\ndemonstrators\r\ndemonstrator's\r\ndemoralisation\r\ndemoralisations\r\ndemoralisation's\r\ndemoralise\r\ndemoralised\r\ndemoraliser\r\ndemoralisers\r\ndemoralises\r\ndemoralising\r\ndemos\r\ndemote\r\ndemoted\r\ndemotes\r\ndemotic\r\ndemoting\r\ndemotion\r\ndemount\r\ndemountable\r\ndemounted\r\ndemounting\r\ndemounts\r\ndemulcent\r\ndemulsify\r\ndemultiplex\r\ndemur\r\ndemure\r\ndemurely\r\ndemureness\r\ndemurrage\r\ndemurral\r\ndemurred\r\ndemurrer\r\ndemurring\r\ndemurs\r\ndemy\r\ndemystified\r\ndemystifies\r\ndemystify\r\ndemystifying\r\ndemythologisation\r\ndemythologise\r\ndemythologised\r\ndemythologises\r\ndemythologising\r\nden\r\ndenary\r\ndenationalisation\r\ndenationalise\r\ndenationalised\r\ndenationalises\r\ndenationalising\r\ndenaturalisation\r\ndenaturalise\r\ndenaturalised\r\ndenaturalises\r\ndenaturalising\r\ndenaturant\r\ndenature\r\ndenatured\r\ndenatures\r\ndenaturing\r\ndenaturisation\r\ndenaturise\r\ndenaturises\r\ndendrite\r\ndendrites\r\ndendrite's\r\ndendrologist\r\ndendrology\r\ndenegation\r\ndengue\r\ndeniable\r\ndenial\r\ndenials\r\ndenial's\r\ndenied\r\ndenier\r\ndenies\r\ndenigrate\r\ndenigrated\r\ndenigrates\r\ndenigrating\r\ndenigration\r\ndenigrator\r\ndenim\r\ndenims\r\ndenitrify\r\ndenizen\r\ndenizens\r\ndenominate\r\ndenominated\r\ndenomination\r\ndenominational\r\ndenominationalism\r\ndenominationalist\r\ndenominationally\r\ndenominations\r\ndenomination's\r\ndenominative\r\ndenominator\r\ndenominators\r\ndenominator's\r\ndenotable\r\ndenotation\r\ndenotations\r\ndenotation's\r\ndenotative\r\ndenote\r\ndenoted\r\ndenotes\r\ndenoting\r\ndenouement\r\ndenounce\r\ndenounced\r\ndenouncement\r\ndenouncer\r\ndenouncers\r\ndenounces\r\ndenouncing\r\ndens\r\nden's\r\ndense\r\ndensely\r\ndenseness\r\ndenser\r\ndensest\r\ndensification\r\ndensities\r\ndensitometer\r\ndensitometers\r\ndensitometer's\r\ndensitometry\r\ndensity\r\ndensity's\r\ndent\r\ndental\r\ndentally\r\ndentals\r\ndentate\r\ndented\r\ndenticulate\r\ndenticulation\r\ndentifrice\r\ndentil\r\ndentilabial\r\ndentilingual\r\ndentin\r\ndentinal\r\ndentine\r\ndenting\r\ndentist\r\ndentistry\r\ndentists\r\ndentist's\r\ndentition\r\ndents\r\ndenture\r\ndentures\r\ndenuclearisation\r\ndenuclearise\r\ndenuclearised\r\ndenuclearises\r\ndenuclearising\r\ndenudate\r\ndenudation\r\ndenude\r\ndenuded\r\ndenuder\r\ndenudes\r\ndenuding\r\ndenumerable\r\ndenunciate\r\ndenunciated\r\ndenunciates\r\ndenunciating\r\ndenunciation\r\ndenunciations\r\ndenunciative\r\ndenunciatory\r\ndeny\r\ndenying\r\ndeodar\r\ndeodorant\r\ndeodorants\r\ndeodorant's\r\ndeodorise\r\ndeodorised\r\ndeodorises\r\ndeodorising\r\ndeontological\r\ndeontologist\r\ndeontology\r\ndeoxidiser\r\ndeoxygenate\r\ndeoxyribonucleic\r\ndepart\r\ndeparted\r\ndeparting\r\ndepartment\r\ndepartmental\r\ndepartmentalisation\r\ndepartmentalisations\r\ndepartmentalisation's\r\ndepartmentalise\r\ndepartmentalises\r\ndepartmentalism\r\ndepartmentally\r\ndepartmentise\r\ndepartments\r\ndepartment's\r\ndeparts\r\ndeparture\r\ndepartures\r\ndeparture's\r\ndepend\r\ndependability\r\ndependable\r\ndependableness\r\ndependably\r\ndependant\r\ndependants\r\ndepended\r\ndependence\r\ndependences\r\ndependencies\r\ndependency\r\ndependent\r\ndependently\r\ndependents\r\ndepending\r\ndepends\r\ndepersonalisation\r\ndepersonalisations\r\ndepersonalisation's\r\ndepersonalise\r\ndepersonalised\r\ndepersonalises\r\ndepersonalising\r\ndepict\r\ndepicted\r\ndepicter\r\ndepicting\r\ndepiction\r\ndepictions\r\ndepicts\r\ndepicture\r\ndepilate\r\ndepilated\r\ndepilates\r\ndepilating\r\ndepilation\r\ndepilatory\r\ndeplane\r\ndeplaned\r\ndeplanes\r\ndeplaning\r\ndeplete\r\ndepleted\r\ndepletes\r\ndepleting\r\ndepletion\r\ndepletions\r\ndepletive\r\ndeplorable\r\ndeplorableness\r\ndeplorably\r\ndeplore\r\ndeplored\r\ndeplorer\r\ndeplores\r\ndeploring\r\ndeploringly\r\ndeploy\r\ndeployable\r\ndeployed\r\ndeploying\r\ndeployment\r\ndeployments\r\ndeployment's\r\ndeploys\r\ndeplume\r\ndepolarisation\r\ndepolarisations\r\ndepolarisation's\r\ndepolarise\r\ndepolarised\r\ndepolariser\r\ndepolarisers\r\ndepolarises\r\ndepolarising\r\ndepoliticise\r\ndepoliticised\r\ndepoliticises\r\ndepoliticising\r\ndepolymerise\r\ndepolymerised\r\ndepolymerises\r\ndepolymerising\r\ndeponent\r\ndepopulate\r\ndepopulation\r\ndepopulator\r\ndeport\r\ndeportable\r\ndeportation\r\ndeported\r\ndeportee\r\ndeportees\r\ndeportee's\r\ndeporting\r\ndeportment\r\ndeports\r\ndepose\r\ndeposed\r\ndeposes\r\ndeposing\r\ndeposit\r\ndepositary\r\ndeposited\r\ndepositing\r\ndeposition\r\ndepositional\r\ndepositions\r\ndeposition's\r\ndepositor\r\ndepositors\r\ndepositor's\r\ndepository\r\ndeposits\r\ndepot\r\ndepots\r\ndepot's\r\ndepravation\r\ndepravations\r\ndeprave\r\ndepraved\r\ndepravedly\r\ndepravedness\r\ndepraver\r\ndepraves\r\ndepraving\r\ndepravities\r\ndepravity\r\ndeprecate\r\ndeprecated\r\ndeprecates\r\ndeprecating\r\ndeprecatingly\r\ndeprecation\r\ndeprecations\r\ndeprecatorily\r\ndeprecatory\r\ndepreciable\r\ndepreciate\r\ndepreciated\r\ndepreciates\r\ndepreciating\r\ndepreciatingly\r\ndepreciation\r\ndepreciations\r\ndepreciative\r\ndepreciatively\r\ndepreciator\r\ndepreciators\r\ndepreciatory\r\ndepredate\r\ndepredated\r\ndepredates\r\ndepredating\r\ndepredation\r\ndepredations\r\ndepredator\r\ndepredators\r\ndepredatory\r\ndepress\r\ndepressant\r\ndepressants\r\ndepressed\r\ndepresses\r\ndepressible\r\ndepressing\r\ndepressingly\r\ndepression\r\ndepressions\r\ndepression's\r\ndepressive\r\ndepressively\r\ndepressomotor\r\ndepressor\r\ndepressors\r\ndepressurisation\r\ndepressurise\r\ndepressurised\r\ndepressurises\r\ndepressurising\r\ndeprivation\r\ndeprivations\r\ndeprivation's\r\ndeprive\r\ndeprived\r\ndeprives\r\ndepriving\r\ndepth\r\ndepthless\r\ndepths\r\ndepurative\r\ndeputation\r\ndeputations\r\ndepute\r\ndeputed\r\ndeputes\r\ndeputies\r\ndeputing\r\ndeputise\r\ndeputised\r\ndeputises\r\ndeputising\r\ndeputy\r\ndeputy's\r\nderail\r\nderailed\r\nderailing\r\nderailleur\r\nderailment\r\nderails\r\nderange\r\nderanged\r\nderangement\r\nderanges\r\nderanging\r\nderbies\r\nderby\r\ndereference\r\ndereferences\r\ndereferencing\r\nderegister\r\nderegulate\r\nderegulatory\r\nderelict\r\ndereliction\r\nderelicts\r\nderide\r\nderided\r\nderider\r\nderides\r\nderiding\r\nderidingly\r\nderisible\r\nderision\r\nderisive\r\nderisively\r\nderisiveness\r\nderisory\r\nderivable\r\nderivate\r\nderivation\r\nderivational\r\nderivations\r\nderivation's\r\nderivative\r\nderivatively\r\nderivativeness\r\nderivatives\r\nderivative's\r\nderive\r\nderived\r\nderiver\r\nderives\r\nderiving\r\nderma\r\ndermal\r\ndermatitis\r\ndermatoid\r\ndermatologic\r\ndermatological\r\ndermatologist\r\ndermatology\r\ndermatome\r\ndermis\r\nderogate\r\nderogated\r\nderogates\r\nderogating\r\nderogation\r\nderogative\r\nderogatorily\r\nderogatory\r\nderrick\r\nderricked\r\nderricking\r\nderricks\r\nderriere\r\nderringer\r\nderv\r\ndervish\r\ndervishes\r\ndesalinate\r\ndesalination\r\ndesalinisation\r\ndesalinise\r\ndesalting\r\ndescant\r\ndescend\r\ndescendant\r\ndescendants\r\ndescendant's\r\ndescended\r\ndescendent\r\ndescendents\r\ndescendible\r\ndescending\r\ndescends\r\ndescent\r\ndescents\r\ndescent's\r\ndescribable\r\ndescribe\r\ndescribed\r\ndescriber\r\ndescribers\r\ndescribes\r\ndescribing\r\ndescried\r\ndescription\r\ndescriptions\r\ndescription's\r\ndescriptive\r\ndescriptively\r\ndescriptiveness\r\ndescriptivism\r\ndescriptor\r\ndescriptors\r\ndescriptor's\r\ndescry\r\ndescrying\r\ndesecrate\r\ndesecrated\r\ndesecrater\r\ndesecrates\r\ndesecration\r\ndesecrator\r\ndesegregate\r\ndesegregated\r\ndesegregates\r\ndesegregating\r\ndesegregation\r\ndeselect\r\ndeselected\r\ndeselecting\r\ndeselects\r\ndesensitisation\r\ndesensitisations\r\ndesensitisation's\r\ndesensitise\r\ndesensitised\r\ndesensitiser\r\ndesensitisers\r\ndesensitises\r\ndesensitising\r\ndesert\r\ndeserted\r\ndeserter\r\ndeserters\r\ndeserting\r\ndesertion\r\ndesertions\r\ndeserts\r\ndeserve\r\ndeserved\r\ndeservedly\r\ndeservedness\r\ndeserver\r\ndeserves\r\ndeserving\r\ndeservingly\r\ndesexualise\r\ndesexualised\r\ndesexualises\r\ndesexualising\r\ndesiccant\r\ndesiccate\r\ndesiccated\r\ndesiccates\r\ndesiccation\r\ndesiccative\r\ndesiccator\r\ndesiderata\r\ndesiderate\r\ndesideration\r\ndesiderative\r\ndesideratum\r\ndesign\r\ndesignate\r\ndesignated\r\ndesignates\r\ndesignating\r\ndesignation\r\ndesignations\r\ndesignative\r\ndesignator\r\ndesignators\r\ndesignator's\r\ndesigned\r\ndesignedly\r\ndesignee\r\ndesigner\r\ndesigners\r\ndesigner's\r\ndesigning\r\ndesigns\r\ndesirability\r\ndesirable\r\ndesirableness\r\ndesirably\r\ndesire\r\ndesired\r\ndesirer\r\ndesires\r\ndesiring\r\ndesirous\r\ndesirously\r\ndesirousness\r\ndesist\r\ndesistance\r\ndesk\r\ndeskill\r\ndeskilled\r\ndeskilling\r\ndeskman\r\ndesks\r\ndesk's\r\ndesktop\r\ndesman\r\ndesolate\r\ndesolated\r\ndesolately\r\ndesolateness\r\ndesolater\r\ndesolates\r\ndesolating\r\ndesolation\r\ndesolations\r\ndesolator\r\ndesorbed\r\ndespair\r\ndespaired\r\ndespairing\r\ndespairingly\r\ndespairs\r\ndespatch\r\ndespatched\r\ndesperado\r\ndesperadoes\r\ndesperate\r\ndesperately\r\ndesperateness\r\ndesperation\r\ndespicable\r\ndespicableness\r\ndespicably\r\ndespise\r\ndespised\r\ndespiser\r\ndespises\r\ndespising\r\ndespite\r\ndespiteful\r\ndespitefully\r\ndespitefulness\r\ndespoil\r\ndespoiled\r\ndespoiler\r\ndespoilers\r\ndespoiling\r\ndespoilment\r\ndespoils\r\ndespoliation\r\ndespond\r\ndespondence\r\ndespondences\r\ndespondency\r\ndespondent\r\ndespondently\r\ndespot\r\ndespotic\r\ndespotically\r\ndespotise\r\ndespotises\r\ndespotism\r\ndespots\r\ndespot's\r\ndesquamate\r\ndessert\r\ndesserts\r\ndessert's\r\ndessertspoon\r\ndestabilisation\r\ndestabilise\r\ndestabilised\r\ndestabilises\r\ndestabilising\r\ndesterilise\r\ndestination\r\ndestinations\r\ndestination's\r\ndestine\r\ndestined\r\ndestinies\r\ndestining\r\ndestiny\r\ndestiny's\r\ndestitute\r\ndestituteness\r\ndestitution\r\ndestroy\r\ndestroyed\r\ndestroyer\r\ndestroyers\r\ndestroyer's\r\ndestroying\r\ndestroys\r\ndestruct\r\ndestructibility\r\ndestructible\r\ndestruction\r\ndestructionist\r\ndestructions\r\ndestruction's\r\ndestructive\r\ndestructively\r\ndestructiveness\r\ndestructivity\r\ndestructor\r\ndestructs\r\ndesuetude\r\ndesulphurisation\r\ndesultorily\r\ndesultoriness\r\ndesultory\r\ndesynchronisation\r\ndesynchronise\r\ndesynchronised\r\ndesynchronises\r\ndesynchronising\r\ndetach\r\ndetachability\r\ndetachable\r\ndetachably\r\ndetached\r\ndetachedly\r\ndetachedness\r\ndetacher\r\ndetaches\r\ndetaching\r\ndetachment\r\ndetachments\r\ndetachment's\r\ndetail\r\ndetailed\r\ndetailer\r\ndetailing\r\ndetails\r\ndetain\r\ndetained\r\ndetainee\r\ndetaining\r\ndetainment\r\ndetains\r\nd'état\r\ndetect\r\ndetectable\r\ndetectably\r\ndetectaphone\r\ndetected\r\ndetecting\r\ndetection\r\ndetections\r\ndetection's\r\ndetective\r\ndetectives\r\ndetector\r\ndetectors\r\ndetector's\r\ndetects\r\ndetent\r\ndetente\r\ndetention\r\ndetentions\r\ndeter\r\ndeterge\r\ndetergency\r\ndetergent\r\ndetergents\r\ndeteriorate\r\ndeteriorated\r\ndeteriorates\r\ndeteriorating\r\ndeterioration\r\ndeteriorative\r\ndeterment\r\ndeterments\r\ndeterminability\r\ndeterminable\r\ndeterminably\r\ndeterminacy\r\ndeterminant\r\ndeterminants\r\ndeterminant's\r\ndeterminate\r\ndeterminately\r\ndeterminateness\r\ndetermination\r\ndeterminations\r\ndeterminative\r\ndeterminatively\r\ndeterminativeness\r\ndetermine\r\ndetermined\r\ndeterminedly\r\ndeterminedness\r\ndeterminer\r\ndeterminers\r\ndetermines\r\ndetermining\r\ndeterminism\r\ndeterminist\r\ndeterministic\r\ndeterministically\r\ndeterred\r\ndeterrence\r\ndeterrent\r\ndeterrents\r\ndeterring\r\ndeters\r\ndetersive\r\ndetersives\r\ndetest\r\ndetestable\r\ndetestableness\r\ndetestably\r\ndetestation\r\ndetestations\r\ndetested\r\ndetesting\r\ndetests\r\ndethrone\r\ndethronement\r\ndetonable\r\ndetonate\r\ndetonated\r\ndetonates\r\ndetonating\r\ndetonation\r\ndetonative\r\ndetonator\r\ndetonators\r\ndetonator's\r\ndetour\r\ndetoured\r\ndetouring\r\ndetours\r\ndetoxification\r\ndetoxified\r\ndetoxifies\r\ndetoxify\r\ndetoxifying\r\ndetract\r\ndetracted\r\ndetracting\r\ndetraction\r\ndetractions\r\ndetractive\r\ndetractively\r\ndetractor\r\ndetractors\r\ndetractor's\r\ndetracts\r\ndetrain\r\ndetrained\r\ndetraining\r\ndetrainment\r\ndetrains\r\nd'être\r\ndetribalisation\r\ndetribalise\r\ndetribalised\r\ndetribalises\r\ndetribalising\r\ndetriment\r\ndetrimental\r\ndetrimentally\r\ndetriments\r\ndetritus\r\ndetrude\r\ndetruncate\r\ndetune\r\ndetuned\r\ndetunes\r\ndetuning\r\ndeuce\r\ndeuced\r\ndeucedly\r\ndeuces\r\ndeuterium\r\ndeuteron\r\ndeuteron's\r\ndevaluate\r\ndevaluation\r\ndevaluations\r\ndevalue\r\ndevalued\r\ndevalues\r\ndevaluing\r\ndevastate\r\ndevastated\r\ndevastates\r\ndevastating\r\ndevastatingly\r\ndevastation\r\ndevastations\r\ndevastative\r\ndevastator\r\ndevastators\r\ndevelop\r\ndevelopable\r\ndeveloped\r\ndeveloper\r\ndevelopers\r\ndeveloper's\r\ndeveloping\r\ndevelopment\r\ndevelopmental\r\ndevelopmentally\r\ndevelopments\r\ndevelopment's\r\ndevelops\r\ndeviance\r\ndeviances\r\ndeviancies\r\ndeviancy\r\ndeviant\r\ndeviants\r\ndeviant's\r\ndeviate\r\ndeviated\r\ndeviates\r\ndeviating\r\ndeviation\r\ndeviationism\r\ndeviationist\r\ndeviations\r\ndeviator\r\ndeviators\r\ndevice\r\ndevices\r\ndevice's\r\ndevil\r\ndevilfish\r\ndevilish\r\ndevilishly\r\ndevilishness\r\ndevilkin\r\ndevilled\r\ndevilling\r\ndevilment\r\ndevilments\r\ndevilry\r\ndevils\r\ndevil's\r\ndeviltry\r\ndevious\r\ndeviously\r\ndeviousness\r\ndevisable\r\ndevisal\r\ndevise\r\ndevised\r\ndevisee\r\ndeviser\r\ndevises\r\ndevising\r\ndevisor\r\ndevitalisation\r\ndevitalise\r\ndevitalised\r\ndevitalises\r\ndevitalising\r\ndevocalise\r\ndevoice\r\ndevoiced\r\ndevoices\r\ndevoicing\r\ndevoid\r\ndevoir\r\ndevoirs\r\ndevolution\r\ndevolutionary\r\ndevolutionist\r\ndevolve\r\ndevolved\r\ndevolves\r\ndevolving\r\ndevote\r\ndevoted\r\ndevotedly\r\ndevotee\r\ndevotees\r\ndevotee's\r\ndevotement\r\ndevotes\r\ndevoting\r\ndevotion\r\ndevotional\r\ndevotionally\r\ndevotions\r\ndevour\r\ndevoured\r\ndevourer\r\ndevouring\r\ndevours\r\ndevout\r\ndevoutly\r\ndevoutness\r\ndew\r\ndewater\r\ndewatered\r\ndewatering\r\ndewaters\r\ndewberry\r\ndewclaw\r\ndewdrop\r\ndewdrops\r\ndewdrop's\r\ndewed\r\ndewier\r\ndewily\r\ndewiness\r\ndewing\r\ndews\r\ndewy\r\ndexterity\r\ndexterous\r\ndexterously\r\ndexterousness\r\ndextral\r\ndextrally\r\ndextrin\r\ndextroglucose\r\ndextrose\r\ndextrose's\r\ndextrous\r\ndharma\r\ndhobi\r\ndhoti\r\ndhow\r\ndiabetes\r\ndiabetic\r\ndiabetics\r\ndiabolic\r\ndiabolical\r\ndiabolically\r\ndiabolicalness\r\ndiabolise\r\ndiabolised\r\ndiabolises\r\ndiabolising\r\ndiabolism\r\ndiabolist\r\ndiacaustic\r\ndiacetylmorphine\r\ndiachronic\r\ndiachronically\r\ndiaconal\r\ndiacritic\r\ndiacritical\r\ndiacritically\r\ndiacriticals\r\ndiacritics\r\ndiacritic's\r\ndiadem\r\ndiagnosable\r\ndiagnose\r\ndiagnosed\r\ndiagnoses\r\ndiagnosing\r\ndiagnosis\r\ndiagnostic\r\ndiagnostically\r\ndiagnostician\r\ndiagnosticians\r\ndiagnostics\r\ndiagnostic's\r\ndiagonal\r\ndiagonalisable\r\ndiagonally\r\ndiagonals\r\ndiagram\r\ndiagrammatic\r\ndiagrammatical\r\ndiagrammatically\r\ndiagrammed\r\ndiagramming\r\ndiagrams\r\ndiagram's\r\ndiagraph\r\ndial\r\ndialect\r\ndialectal\r\ndialectally\r\ndialectic\r\ndialectical\r\ndialectically\r\ndialectician\r\ndialecticians\r\ndialectics\r\ndialectological\r\ndialectologist\r\ndialectology\r\ndialects\r\ndialect's\r\ndialled\r\ndialler\r\ndiallers\r\ndialling\r\ndialog\r\ndialogic\r\ndialogical\r\ndialogically\r\ndialogism\r\ndialogist\r\ndialogistic\r\ndialogs\r\ndialog's\r\ndialogue\r\ndialogues\r\ndialogue's\r\ndials\r\ndial's\r\ndialup\r\ndialups\r\ndialup's\r\ndialyse\r\ndialysed\r\ndialyser\r\ndialysers\r\ndialyser's\r\ndialyses\r\ndialysis\r\ndiamagnetic\r\ndiamagnetism\r\ndiamantine\r\ndiameter\r\ndiameters\r\ndiameter's\r\ndiametric\r\ndiametrical\r\ndiametrically\r\ndiamond\r\ndiamondback\r\ndiamonds\r\ndiamond's\r\ndianoetic\r\ndiapason\r\ndiaper\r\ndiapered\r\ndiapering\r\ndiapers\r\ndiaper's\r\ndiaphaneity\r\ndiaphanous\r\ndiaphanously\r\ndiaphanousness\r\ndiaphone\r\ndiaphoresis\r\ndiaphoretic\r\ndiaphragm\r\ndiaphragmatic\r\ndiaphragmatically\r\ndiaphragms\r\ndiaphragm's\r\ndiarchy\r\ndiaries\r\ndiarist\r\ndiarrhoea\r\ndiarrhoeal\r\ndiarrhoeas\r\ndiarrhoea's\r\ndiarrhoeic\r\ndiary\r\ndiary's\r\ndiastalsis\r\ndiastase\r\ndiastole\r\ndiastolic\r\ndiastrophic\r\ndiastrophism\r\ndiathermancy\r\ndiathermy\r\ndiathesis\r\ndiatom\r\ndiatomaceous\r\ndiatomic\r\ndiatomite\r\ndiatoms\r\ndiatonic\r\ndiatonically\r\ndiatribe\r\ndiatribes\r\ndiatribe's\r\ndiazole\r\ndiazomethane\r\ndibasic\r\ndibble\r\ndibranchiate\r\ndibs\r\ndice\r\ndicer\r\ndices\r\ndicey\r\ndichloride\r\ndichotic\r\ndichotomies\r\ndichotomisation\r\ndichotomise\r\ndichotomised\r\ndichotomises\r\ndichotomising\r\ndichotomist\r\ndichotomous\r\ndichotomously\r\ndichotomy\r\ndichromate\r\ndichromatic\r\ndichromaticism\r\ndichroscope\r\ndicier\r\ndicing\r\ndick\r\ndickens\r\ndicker\r\ndickered\r\ndickering\r\ndickers\r\ndickey\r\ndicks\r\ndiclinous\r\ndicta\r\ndictate\r\ndictated\r\ndictates\r\ndictating\r\ndictation\r\ndictations\r\ndictator\r\ndictatorial\r\ndictatorially\r\ndictatorialness\r\ndictators\r\ndictator's\r\ndictatorship\r\ndictatorships\r\ndiction\r\ndictionaries\r\ndictionary\r\ndictionary's\r\ndictions\r\ndictum\r\ndictums\r\ndictum's\r\ndid\r\ndidactic\r\ndidactical\r\ndidactically\r\ndidacticism\r\ndidactics\r\ndiddle\r\ndiddled\r\ndiddling\r\ndidgeridoo\r\ndidn't\r\ndidymium\r\ndie\r\ndieback\r\ndied\r\ndiehard\r\ndiehards\r\ndieing\r\ndielectric\r\ndielectrics\r\ndielectric's\r\ndiem\r\ndieresis\r\ndies\r\ndiesel\r\ndieselisation\r\ndieselise\r\ndieselises\r\ndiesels\r\ndiesis\r\ndiestock\r\ndiet\r\ndietaries\r\ndietary\r\ndieter\r\ndieters\r\ndietetic\r\ndietetically\r\ndietetics\r\ndiethylstilbestrol\r\ndietician\r\ndieticians\r\ndiets\r\ndiffer\r\ndiffered\r\ndifference\r\ndifferenced\r\ndifferences\r\ndifference's\r\ndifferencing\r\ndifferent\r\ndifferentia\r\ndifferentiability\r\ndifferentiable\r\ndifferential\r\ndifferentially\r\ndifferentials\r\ndifferential's\r\ndifferentiate\r\ndifferentiated\r\ndifferentiates\r\ndifferentiating\r\ndifferentiation\r\ndifferentiations\r\ndifferentiator\r\ndifferentiators\r\ndifferently\r\ndiffering\r\ndiffers\r\ndifficult\r\ndifficulties\r\ndifficultly\r\ndifficulty\r\ndifficulty's\r\ndiffidence\r\ndiffident\r\ndiffidently\r\ndiffract\r\ndiffracted\r\ndiffracting\r\ndiffraction\r\ndiffractions\r\ndiffracts\r\ndiffuse\r\ndiffused\r\ndiffusely\r\ndiffuseness\r\ndiffuser\r\ndiffusers\r\ndiffuses\r\ndiffusible\r\ndiffusing\r\ndiffusion\r\ndiffusions\r\ndiffusive\r\ndiffusively\r\ndiffusiveness\r\ndiffusivity\r\ndig\r\ndigamma\r\ndigenesis\r\ndigenetic\r\ndigest\r\ndigested\r\ndigester\r\ndigestibility\r\ndigestible\r\ndigesting\r\ndigestion\r\ndigestions\r\ndigestive\r\ndigestively\r\ndigests\r\ndigger\r\ndiggers\r\ndigger's\r\ndigging\r\ndiggings\r\ndigit\r\ndigital\r\ndigitalis\r\ndigitalisation\r\ndigitalisations\r\ndigitalisation's\r\ndigitalise\r\ndigitalised\r\ndigitalises\r\ndigitalising\r\ndigitalism\r\ndigitally\r\ndigitisation\r\ndigitise\r\ndigitised\r\ndigitiser\r\ndigitisers\r\ndigitiser's\r\ndigitises\r\ndigitising\r\ndigits\r\ndigit's\r\ndignified\r\ndignify\r\ndignitaries\r\ndignitary\r\ndignities\r\ndignity\r\ndigress\r\ndigressed\r\ndigresses\r\ndigressing\r\ndigression\r\ndigressional\r\ndigressions\r\ndigression's\r\ndigressive\r\ndigressively\r\ndigressiveness\r\ndigs\r\ndihedral\r\ndike\r\ndikes\r\ndike's\r\ndiktat\r\ndilapidate\r\ndilapidated\r\ndilapidates\r\ndilapidating\r\ndilapidation\r\ndilatability\r\ndilatable\r\ndilatation\r\ndilatational\r\ndilate\r\ndilated\r\ndilates\r\ndilating\r\ndilation\r\ndilative\r\ndilatometer\r\ndilatometers\r\ndilatometer's\r\ndilator\r\ndilatorily\r\ndilatoriness\r\ndilatory\r\ndildo\r\ndildos\r\ndilemma\r\ndilemmas\r\ndilemma's\r\ndilemmatic\r\ndilettante\r\ndilettantes\r\ndilettanti\r\ndilettantish\r\ndilettantism\r\ndiligence\r\ndiligences\r\ndiligent\r\ndiligently\r\ndill\r\ndilly\r\ndillydally\r\ndilute\r\ndiluted\r\ndiluteness\r\ndiluter\r\ndilutes\r\ndiluting\r\ndilution\r\ndilutions\r\ndilutor\r\ndim\r\ndime\r\ndimension\r\ndimensional\r\ndimensionality\r\ndimensionally\r\ndimensioned\r\ndimensioning\r\ndimensionless\r\ndimensions\r\ndimerism\r\ndimes\r\ndime's\r\ndimethoxymethane\r\ndiminish\r\ndiminishable\r\ndiminished\r\ndiminishes\r\ndiminishing\r\ndiminishment\r\ndiminuendo\r\ndiminuendos\r\ndiminuendo's\r\ndiminution\r\ndiminutive\r\ndiminutively\r\ndiminutiveness\r\ndimity\r\ndimly\r\ndimmable\r\ndimmed\r\ndimmer\r\ndimmers\r\ndimmer's\r\ndimmest\r\ndimming\r\ndimness\r\ndimorph\r\ndimorphic\r\ndimorphism\r\ndimple\r\ndimpled\r\ndimples\r\ndimpling\r\ndimply\r\ndims\r\ndimwit\r\ndimwits\r\ndin\r\ndine\r\ndined\r\ndiner\r\ndiners\r\ndines\r\ndinette\r\nding\r\ndingbat\r\ndingbats\r\ndingdong\r\ndinghies\r\ndinghy\r\ndingier\r\ndingily\r\ndinginess\r\ndingle\r\ndingo\r\ndingy\r\ndining\r\ndinitrobenzene\r\ndink\r\ndinky\r\ndinner\r\ndinnerless\r\ndinners\r\ndinner's\r\ndinnertime\r\ndinnerware\r\ndinning\r\ndinosaur\r\ndinosaurian\r\ndinosaurs\r\ndinothere\r\ndint\r\ndiocesan\r\ndiocese\r\ndiode\r\ndiodes\r\ndiode's\r\ndioptre\r\ndiorama\r\ndioramas\r\ndioramic\r\ndiorite\r\ndioxide\r\ndioxides\r\ndip\r\ndipetalous\r\ndiphase\r\ndiphenylamine\r\ndiphosgene\r\ndiphtheria\r\ndiphtheritic\r\ndiphthong\r\ndiphthongal\r\ndiphthongisation\r\ndiphthongise\r\ndiphthongises\r\ndiphthongs\r\ndiplex\r\ndiploid\r\ndiploids\r\ndiploma\r\ndiplomacy\r\ndiplomas\r\ndiploma's\r\ndiplomat\r\ndiplomatic\r\ndiplomatically\r\ndiplomatist\r\ndiplomats\r\ndiplomat's\r\ndiplopod\r\ndiplostemonous\r\ndipnoan\r\ndipodic\r\ndipody\r\ndipolar\r\ndipole\r\ndipoles\r\ndipole's\r\ndipped\r\ndipper\r\ndipperful\r\ndippers\r\ndipper's\r\ndipping\r\ndippy\r\ndips\r\ndipsomania\r\ndipsomaniac\r\ndipsomaniacal\r\ndipstick\r\ndipteral\r\ndipterous\r\ndiptych\r\ndire\r\ndirect\r\ndirected\r\ndirecting\r\ndirection\r\ndirectional\r\ndirectionality\r\ndirectionally\r\ndirectionless\r\ndirections\r\ndirection's\r\ndirective\r\ndirectives\r\ndirective's\r\ndirectivity\r\ndirectly\r\ndirectness\r\ndirector\r\ndirectorate\r\ndirectorial\r\ndirectories\r\ndirectors\r\ndirector's\r\ndirectorship\r\ndirectory\r\ndirectory's\r\ndirects\r\ndireful\r\ndirefully\r\ndirely\r\ndireness\r\ndirer\r\ndirest\r\ndirge\r\ndirges\r\ndirge's\r\ndirigible\r\ndirigibles\r\ndiriment\r\ndirk\r\ndirndl\r\ndirt\r\ndirtied\r\ndirtier\r\ndirties\r\ndirtiest\r\ndirtily\r\ndirtiness\r\ndirt's\r\ndirty\r\ndirtying\r\ndisabilities\r\ndisability\r\ndisability's\r\ndisable\r\ndisabled\r\ndisablement\r\ndisabler\r\ndisablers\r\ndisables\r\ndisabling\r\ndisabuse\r\ndisaccharide\r\ndisaccharides\r\ndisaccord\r\ndisaccredit\r\ndisaccustom\r\ndisadvantage\r\ndisadvantaged\r\ndisadvantageous\r\ndisadvantageously\r\ndisadvantageousness\r\ndisadvantages\r\ndisadvantage's\r\ndisadvantaging\r\ndisaffect\r\ndisaffected\r\ndisaffectedly\r\ndisaffectedness\r\ndisaffection\r\ndisaffiliate\r\ndisaffiliated\r\ndisaffiliates\r\ndisaffiliating\r\ndisaffiliation\r\ndisaffirm\r\ndisaffirmation\r\ndisaggregate\r\ndisaggregated\r\ndisaggregating\r\ndisagree\r\ndisagreeability\r\ndisagreeable\r\ndisagreeableness\r\ndisagreeably\r\ndisagreed\r\ndisagreeing\r\ndisagreement\r\ndisagreements\r\ndisagreement's\r\ndisagrees\r\ndisallow\r\ndisallowance\r\ndisallowed\r\ndisallowing\r\ndisallows\r\ndisambiguate\r\ndisambiguated\r\ndisambiguates\r\ndisambiguating\r\ndisambiguation\r\ndisannul\r\ndisappear\r\ndisappearance\r\ndisappearances\r\ndisappearance's\r\ndisappeared\r\ndisappearing\r\ndisappears\r\ndisappoint\r\ndisappointed\r\ndisappointedly\r\ndisappointing\r\ndisappointingly\r\ndisappointment\r\ndisappointments\r\ndisappointment's\r\ndisappoints\r\ndisapprobation\r\ndisapproval\r\ndisapprove\r\ndisapproved\r\ndisapprover\r\ndisapproves\r\ndisapproving\r\ndisapprovingly\r\ndisarm\r\ndisarmament\r\ndisarmed\r\ndisarmer\r\ndisarmers\r\ndisarming\r\ndisarmingly\r\ndisarms\r\ndisarrange\r\ndisarranged\r\ndisarrangement\r\ndisarranges\r\ndisarray\r\ndisarrays\r\ndisarticulate\r\ndisarticulated\r\ndisarticulation\r\ndisassemble\r\ndisassembled\r\ndisassembler\r\ndisassembles\r\ndisassembling\r\ndisassembly\r\ndisassociate\r\ndisassociated\r\ndisassociates\r\ndisassociating\r\ndisassociation\r\ndisaster\r\ndisasters\r\ndisaster's\r\ndisastrous\r\ndisastrously\r\ndisavow\r\ndisavowal\r\ndisavowals\r\ndisavowed\r\ndisavowing\r\ndisavows\r\ndisband\r\ndisbanded\r\ndisbanding\r\ndisbandment\r\ndisbands\r\ndisbar\r\ndisbarment\r\ndisbars\r\ndisbelief\r\ndisbelieve\r\ndisbelieved\r\ndisbeliever\r\ndisbelievers\r\ndisbelieves\r\ndisbelieving\r\ndisbranch\r\ndisbud\r\ndisburden\r\ndisburdenment\r\ndisburse\r\ndisbursed\r\ndisbursement\r\ndisbursements\r\ndisbursement's\r\ndisburser\r\ndisburses\r\ndisbursing\r\ndisc\r\ndiscalced\r\ndiscard\r\ndiscarded\r\ndiscarder\r\ndiscarding\r\ndiscards\r\ndiscern\r\ndiscernable\r\ndiscerned\r\ndiscerner\r\ndiscernible\r\ndiscernibly\r\ndiscerning\r\ndiscerningly\r\ndiscernment\r\ndiscerns\r\ndischarge\r\ndischargeable\r\ndischarged\r\ndischarger\r\ndischarges\r\ndischarging\r\ndisciple\r\ndisciples\r\ndisciple's\r\ndiscipleship\r\ndisciplinable\r\ndisciplinal\r\ndisciplinant\r\ndisciplinarian\r\ndisciplinarily\r\ndisciplinary\r\ndiscipline\r\ndisciplined\r\ndiscipliner\r\ndisciplines\r\ndisciplining\r\ndisclaim\r\ndisclaimed\r\ndisclaimer\r\ndisclaimers\r\ndisclaiming\r\ndisclaims\r\ndisclamation\r\ndisclose\r\ndisclosed\r\ndiscloser\r\ndiscloses\r\ndisclosing\r\ndisclosure\r\ndisclosures\r\ndisclosure's\r\ndisco\r\ndiscographer\r\ndiscography\r\ndiscoid\r\ndiscolour\r\ndiscolouration\r\ndiscoloured\r\ndiscolouring\r\ndiscolours\r\ndiscombobulate\r\ndiscomfit\r\ndiscomfited\r\ndiscomfiting\r\ndiscomfits\r\ndiscomfiture\r\ndiscomfitures\r\ndiscomfort\r\ndiscomforting\r\ndiscomfortingly\r\ndiscommend\r\ndiscommendable\r\ndiscommendation\r\ndiscommode\r\ndiscommodes\r\ndiscommoding\r\ndiscommodity\r\ndiscompose\r\ndiscomposed\r\ndiscomposedly\r\ndiscomposure\r\ndisconcert\r\ndisconcerted\r\ndisconcerting\r\ndisconcertingly\r\ndisconcerts\r\ndisconfirm\r\ndisconfirmation\r\ndisconnect\r\ndisconnected\r\ndisconnectedly\r\ndisconnectedness\r\ndisconnecting\r\ndisconnection\r\ndisconnections\r\ndisconnects\r\ndisconsolate\r\ndisconsolately\r\ndisconsolateness\r\ndisconsolation\r\ndiscontent\r\ndiscontented\r\ndiscontentedly\r\ndiscontentment\r\ndiscontinuance\r\ndiscontinuation\r\ndiscontinue\r\ndiscontinued\r\ndiscontinues\r\ndiscontinuing\r\ndiscontinuities\r\ndiscontinuity\r\ndiscontinuity's\r\ndiscontinuous\r\ndiscontinuously\r\ndiscophile\r\ndiscord\r\ndiscordance\r\ndiscordances\r\ndiscordant\r\ndiscordantly\r\ndiscords\r\ndiscorporate\r\ndiscos\r\ndisco's\r\ndiscotheque\r\ndiscount\r\ndiscounted\r\ndiscountenance\r\ndiscounter\r\ndiscounting\r\ndiscounts\r\ndiscourage\r\ndiscouraged\r\ndiscouragement\r\ndiscourager\r\ndiscourages\r\ndiscouraging\r\ndiscouragingly\r\ndiscourse\r\ndiscoursed\r\ndiscourser\r\ndiscourses\r\ndiscourse's\r\ndiscoursing\r\ndiscourteous\r\ndiscourteously\r\ndiscourteousness\r\ndiscourtesy\r\ndiscover\r\ndiscoverable\r\ndiscovered\r\ndiscoverer\r\ndiscoverers\r\ndiscoveries\r\ndiscovering\r\ndiscovers\r\ndiscovery\r\ndiscovery's\r\ndiscredit\r\ndiscreditable\r\ndiscreditably\r\ndiscredited\r\ndiscrediting\r\ndiscredits\r\ndiscreet\r\ndiscreetly\r\ndiscreetness\r\ndiscrepancies\r\ndiscrepancy\r\ndiscrepancy's\r\ndiscrepant\r\ndiscrepantly\r\ndiscrete\r\ndiscretely\r\ndiscreteness\r\ndiscretion\r\ndiscretionary\r\ndiscretions\r\ndiscriminate\r\ndiscriminated\r\ndiscriminates\r\ndiscriminating\r\ndiscriminatingly\r\ndiscrimination\r\ndiscriminations\r\ndiscriminative\r\ndiscriminator\r\ndiscriminatorily\r\ndiscriminators\r\ndiscriminatory\r\ndiscs\r\ndisc's\r\ndiscursive\r\ndiscursively\r\ndiscursiveness\r\ndiscus\r\ndiscuses\r\ndiscuss\r\ndiscussable\r\ndiscussant\r\ndiscussants\r\ndiscussed\r\ndiscusser\r\ndiscusses\r\ndiscussible\r\ndiscussing\r\ndiscussion\r\ndiscussions\r\ndiscussion's\r\ndisdain\r\ndisdainful\r\ndisdainfully\r\ndisdainfulness\r\ndisdaining\r\ndisdains\r\ndisease\r\ndiseased\r\ndiseases\r\ndiseasing\r\ndisembark\r\ndisembarkation\r\ndisembarrass\r\ndisembodied\r\ndisembodiment\r\ndisembody\r\ndisembogue\r\ndisembowel\r\ndisembowelled\r\ndisembowelling\r\ndisembowelment\r\ndisembowels\r\ndisembroil\r\ndisenable\r\ndisenchant\r\ndisenchanter\r\ndisenchanting\r\ndisenchantment\r\ndisencumber\r\ndisenfranchise\r\ndisenfranchised\r\ndisenfranchisement\r\ndisenfranchisements\r\ndisenfranchisement's\r\ndisenfranchises\r\ndisenfranchising\r\ndisengage\r\ndisengaged\r\ndisengagement\r\ndisengages\r\ndisengaging\r\ndisentail\r\ndisentangle\r\ndisentangled\r\ndisentanglement\r\ndisentangles\r\ndisentangling\r\ndisenthralled\r\ndisenthralling\r\ndisentitle\r\ndisentomb\r\ndisentwine\r\ndisequilibrium\r\ndisestablish\r\ndisestablished\r\ndisestablishment\r\ndisestablishmentarian\r\ndisesteem\r\ndisfavour\r\ndisfavoured\r\ndisfavouring\r\ndisfavours\r\ndisfeature\r\ndisfeaturement\r\ndisfigure\r\ndisfigured\r\ndisfigurement\r\ndisfigurements\r\ndisfigures\r\ndisfiguring\r\ndisforest\r\ndisfranchise\r\ndisfranchised\r\ndisfranchisement\r\ndisfranchises\r\ndisfranchising\r\ndisfrock\r\ndisfurnish\r\ndisfurnishment\r\ndisgorge\r\ndisgorgement\r\ndisgorger\r\ndisgrace\r\ndisgraced\r\ndisgraceful\r\ndisgracefully\r\ndisgracefulness\r\ndisgracer\r\ndisgraces\r\ndisgracing\r\ndisgruntle\r\ndisgruntled\r\ndisgruntlement\r\ndisgruntles\r\ndisgruntling\r\ndisguise\r\ndisguised\r\ndisguisedly\r\ndisguiser\r\ndisguises\r\ndisguising\r\ndisgust\r\ndisgusted\r\ndisgustedly\r\ndisgustful\r\ndisgustfully\r\ndisgusting\r\ndisgustingly\r\ndisgusts\r\ndish\r\ndishabille\r\ndisharmonic\r\ndisharmonious\r\ndisharmonise\r\ndisharmonises\r\ndisharmony\r\ndishcloth\r\ndishearten\r\ndisheartening\r\ndishearteningly\r\ndisheartenment\r\ndisheartenments\r\ndished\r\ndishes\r\ndishevel\r\ndishevelled\r\ndishevelling\r\ndishevels\r\ndishing\r\ndishonest\r\ndishonestly\r\ndishonesty\r\ndishonour\r\ndishonourable\r\ndishonourableness\r\ndishonourably\r\ndishonoured\r\ndishonourer\r\ndishonourers\r\ndishonourer's\r\ndishonouring\r\ndishonours\r\ndishpan\r\ndishtowel\r\ndishwasher\r\ndishwashers\r\ndishwater\r\ndishy\r\ndisillusion\r\ndisillusioned\r\ndisillusioning\r\ndisillusionment\r\ndisillusionments\r\ndisillusionment's\r\ndisincentive\r\ndisincentives\r\ndisinclination\r\ndisincline\r\ndisinclined\r\ndisinclines\r\ndisinclining\r\ndisinfect\r\ndisinfectant\r\ndisinfectants\r\ndisinfected\r\ndisinfecting\r\ndisinfection\r\ndisinfects\r\ndisinfest\r\ndisinfested\r\ndisinfesting\r\ndisinfests\r\ndisinflation\r\ndisingenuous\r\ndisingenuously\r\ndisingenuousness\r\ndisinherit\r\ndisinheritance\r\ndisinherited\r\ndisinheriting\r\ndisinherits\r\ndisintegrate\r\ndisintegrated\r\ndisintegrates\r\ndisintegrating\r\ndisintegration\r\ndisintegrations\r\ndisintegrative\r\ndisintegrator\r\ndisintegrators\r\ndisinter\r\ndisinterest\r\ndisinterested\r\ndisinterestedly\r\ndisinterestedness\r\ndisinterment\r\ndisinterred\r\ndisinters\r\ndisinvest\r\ndisinvestment\r\ndisjoin\r\ndisjoint\r\ndisjointed\r\ndisjointedly\r\ndisjointedness\r\ndisjunction\r\ndisjunctions\r\ndisjunctive\r\ndisjunctively\r\ndisjuncture\r\ndisk\r\ndisked\r\ndiskette\r\ndiskettes\r\ndisking\r\ndisks\r\ndisk's\r\ndislike\r\ndislikeable\r\ndisliked\r\ndislikes\r\ndisliking\r\ndislocate\r\ndislocated\r\ndislocates\r\ndislocating\r\ndislocation\r\ndislocations\r\ndislodge\r\ndislodged\r\ndislodgement\r\ndislodges\r\ndislodging\r\ndisloyal\r\ndisloyally\r\ndisloyalty\r\ndismal\r\ndismally\r\ndismalness\r\ndismantle\r\ndismantled\r\ndismantlement\r\ndismantles\r\ndismantling\r\ndismast\r\ndismay\r\ndismayed\r\ndismaying\r\ndismayingly\r\ndismays\r\ndismember\r\ndismembered\r\ndismembering\r\ndismemberment\r\ndismiss\r\ndismissal\r\ndismissals\r\ndismissal's\r\ndismissed\r\ndismisses\r\ndismissing\r\ndismissive\r\ndismount\r\ndismounted\r\ndismounting\r\ndismounts\r\ndisobedience\r\ndisobedient\r\ndisobediently\r\ndisobey\r\ndisobeyed\r\ndisobeyer\r\ndisobeying\r\ndisobeys\r\ndisoblige\r\ndisoperation\r\ndisorder\r\ndisordered\r\ndisorderedly\r\ndisorderliness\r\ndisorderly\r\ndisorders\r\ndisorganization\r\ndisorganizations\r\ndisorganization's\r\ndisorganize\r\ndisorganized\r\ndisorganizer\r\ndisorganizers\r\ndisorganizes\r\ndisorganizing\r\ndisorient\r\ndisorientate\r\ndisorientated\r\ndisorientates\r\ndisorientating\r\ndisorientation\r\ndisoriented\r\ndisown\r\ndisowned\r\ndisowning\r\ndisownment\r\ndisowns\r\ndisparage\r\ndisparaged\r\ndisparagement\r\ndisparager\r\ndisparages\r\ndisparaging\r\ndisparagingly\r\ndisparate\r\ndisparately\r\ndisparateness\r\ndisparities\r\ndisparity\r\ndisparity's\r\ndispassion\r\ndispassionate\r\ndispassionately\r\ndispassionateness\r\ndispatch\r\ndispatched\r\ndispatcher\r\ndispatchers\r\ndispatches\r\ndispatching\r\ndispel\r\ndispelled\r\ndispelling\r\ndispels\r\ndispend\r\ndispensability\r\ndispensable\r\ndispensary\r\ndispensation\r\ndispensational\r\ndispensatory\r\ndispense\r\ndispensed\r\ndispenser\r\ndispensers\r\ndispenses\r\ndispensing\r\ndispersal\r\ndispersant\r\ndisperse\r\ndispersed\r\ndispersedly\r\ndisperser\r\ndisperses\r\ndispersible\r\ndispersing\r\ndispersion\r\ndispersions\r\ndispersive\r\ndispirit\r\ndispirited\r\ndispiritedly\r\ndispiritedness\r\ndispiriting\r\ndispirits\r\ndisplace\r\ndisplaceable\r\ndisplaced\r\ndisplacement\r\ndisplacements\r\ndisplacement's\r\ndisplacer\r\ndisplaces\r\ndisplacing\r\ndisplay\r\ndisplayable\r\ndisplayed\r\ndisplayer\r\ndisplaying\r\ndisplays\r\ndisplease\r\ndispleased\r\ndispleases\r\ndispleasing\r\ndispleasure\r\ndisport\r\ndisposability\r\ndisposable\r\ndisposal\r\ndisposals\r\ndisposal's\r\ndispose\r\ndisposed\r\ndisposer\r\ndisposes\r\ndisposing\r\ndisposition\r\ndispositional\r\ndispositions\r\ndisposition's\r\ndispossess\r\ndispossessed\r\ndispossesses\r\ndispossessing\r\ndispossession\r\ndispossessor\r\ndisposure\r\ndispraise\r\ndispraiser\r\ndispraisingly\r\ndispread\r\ndisprize\r\ndisproof\r\ndisproportion\r\ndisproportional\r\ndisproportionate\r\ndisproportionately\r\ndisprovable\r\ndisprove\r\ndisproved\r\ndisproven\r\ndisproves\r\ndisproving\r\ndisputable\r\ndisputant\r\ndisputation\r\ndisputatious\r\ndisputatiously\r\ndisputatiousness\r\ndispute\r\ndisputed\r\ndisputer\r\ndisputers\r\ndisputes\r\ndisputing\r\ndisqualification\r\ndisqualified\r\ndisqualifies\r\ndisqualify\r\ndisqualifying\r\ndisquiet\r\ndisquieting\r\ndisquietingly\r\ndisquietly\r\ndisquietude\r\ndisquisition\r\ndisregard\r\ndisregarded\r\ndisregardful\r\ndisregarding\r\ndisregards\r\ndisrelish\r\ndisremember\r\ndisrepair\r\ndisreputability\r\ndisreputable\r\ndisreputableness\r\ndisreputably\r\ndisrepute\r\ndisrespect\r\ndisrespectability\r\ndisrespectable\r\ndisrespectful\r\ndisrespectfully\r\ndisrespectfulness\r\ndisrobe\r\ndisrupt\r\ndisrupted\r\ndisrupter\r\ndisrupting\r\ndisruption\r\ndisruptions\r\ndisruption's\r\ndisruptive\r\ndisruptively\r\ndisruptiveness\r\ndisrupts\r\ndissatisfaction\r\ndissatisfactions\r\ndissatisfaction's\r\ndissatisfactory\r\ndissatisfied\r\ndissatisfies\r\ndissatisfy\r\ndissatisfying\r\ndissect\r\ndissected\r\ndissecting\r\ndissection\r\ndissector\r\ndissects\r\ndissemble\r\ndissembled\r\ndissembler\r\ndissembling\r\ndisseminate\r\ndisseminated\r\ndisseminates\r\ndisseminating\r\ndissemination\r\ndisseminator\r\ndisseminators\r\ndissension\r\ndissensions\r\ndissension's\r\ndissent\r\ndissented\r\ndissenter\r\ndissenters\r\ndissentient\r\ndissenting\r\ndissention\r\ndissentious\r\ndissents\r\ndissert\r\ndissertate\r\ndissertation\r\ndissertations\r\ndissertation's\r\ndissertator\r\ndisserve\r\ndisservice\r\ndissever\r\ndisseverance\r\ndisseverment\r\ndissidence\r\ndissident\r\ndissidents\r\ndissident's\r\ndissimilar\r\ndissimilarities\r\ndissimilarity\r\ndissimilarity's\r\ndissimilarly\r\ndissimilate\r\ndissimilated\r\ndissimilates\r\ndissimilating\r\ndissimilation\r\ndissimilative\r\ndissimilitude\r\ndissimulate\r\ndissimulation\r\ndissimulator\r\ndissipate\r\ndissipated\r\ndissipatedly\r\ndissipatedness\r\ndissipater\r\ndissipates\r\ndissipating\r\ndissipation\r\ndissipations\r\ndissipative\r\ndissociable\r\ndissocial\r\ndissocialise\r\ndissociate\r\ndissociated\r\ndissociates\r\ndissociating\r\ndissociation\r\ndissolubility\r\ndissoluble\r\ndissolute\r\ndissolutely\r\ndissoluteness\r\ndissolution\r\ndissolutions\r\ndissolution's\r\ndissolvable\r\ndissolve\r\ndissolved\r\ndissolvent\r\ndissolver\r\ndissolves\r\ndissolving\r\ndissonance\r\ndissonances\r\ndissonance's\r\ndissonant\r\ndissonantly\r\ndissuade\r\ndissuaded\r\ndissuader\r\ndissuades\r\ndissuading\r\ndissuasion\r\ndissuasive\r\ndissuasively\r\ndissuasiveness\r\ndissyllable\r\ndissymmetric\r\ndissymmetry\r\ndistaff\r\ndistaffs\r\ndistal\r\ndistally\r\ndistance\r\ndistanced\r\ndistances\r\ndistancing\r\ndistant\r\ndistantly\r\ndistantness\r\ndistaste\r\ndistasteful\r\ndistastefully\r\ndistastefulness\r\ndistastes\r\ndistemper\r\ndistend\r\ndistended\r\ndistensible\r\ndistension\r\ndistich\r\ndistil\r\ndistillate\r\ndistillates\r\ndistillation\r\ndistillations\r\ndistilled\r\ndistiller\r\ndistilleries\r\ndistillers\r\ndistillery\r\ndistilling\r\ndistinct\r\ndistinction\r\ndistinctions\r\ndistinction's\r\ndistinctive\r\ndistinctively\r\ndistinctiveness\r\ndistinctly\r\ndistinctness\r\ndistinguish\r\ndistinguishable\r\ndistinguishably\r\ndistinguished\r\ndistinguisher\r\ndistinguishes\r\ndistinguishing\r\ndistort\r\ndistortable\r\ndistorted\r\ndistorter\r\ndistorting\r\ndistortion\r\ndistortional\r\ndistortions\r\ndistortion's\r\ndistorts\r\ndistract\r\ndistracted\r\ndistractedly\r\ndistractibility\r\ndistractible\r\ndistracting\r\ndistractingly\r\ndistraction\r\ndistractions\r\ndistraction's\r\ndistractive\r\ndistracts\r\ndistrainable\r\ndistrait\r\ndistraught\r\ndistraughtly\r\ndistress\r\ndistressed\r\ndistresses\r\ndistressful\r\ndistressfully\r\ndistressfulness\r\ndistressing\r\ndistressingly\r\ndistribute\r\ndistributed\r\ndistributes\r\ndistributing\r\ndistribution\r\ndistributional\r\ndistributions\r\ndistribution's\r\ndistributive\r\ndistributiveness\r\ndistributor\r\ndistributors\r\ndistributor's\r\ndistributorship\r\ndistrict\r\ndistricted\r\ndistricting\r\ndistricts\r\ndistrict's\r\ndistrust\r\ndistrusted\r\ndistrustful\r\ndistrustfully\r\ndistrustfulness\r\ndistrusts\r\ndisturb\r\ndisturbance\r\ndisturbances\r\ndisturbance's\r\ndisturbed\r\ndisturber\r\ndisturbing\r\ndisturbingly\r\ndisturbs\r\ndisulfide\r\ndisulphate\r\ndisulphide\r\ndisulphuric\r\ndisunion\r\ndisunite\r\ndisunited\r\ndisunity\r\ndisuse\r\ndisused\r\ndisutility\r\ndisvalue\r\ndisvalues\r\ndisyllabic\r\ndisyllable\r\nditch\r\nditched\r\nditcher\r\nditches\r\nditching\r\nditch's\r\nditheism\r\ndither\r\ndithered\r\nditherer\r\ndithering\r\ndithery\r\ndithionite\r\ndithyramb\r\ndithyrambic\r\ndittander\r\ndittany\r\nditties\r\nditto\r\ndittography\r\ndittos\r\nditty\r\ndiuretic\r\ndiurnal\r\ndiv\r\ndiva\r\ndivagate\r\ndivagation\r\ndivalent\r\ndivan\r\ndivans\r\ndivan's\r\ndivaricator\r\ndive\r\ndived\r\ndiver\r\ndiverge\r\ndiverged\r\ndivergence\r\ndivergences\r\ndivergence's\r\ndivergent\r\ndivergently\r\ndiverges\r\ndiverging\r\ndivers\r\ndiverse\r\ndiversely\r\ndiverseness\r\ndiversification\r\ndiversified\r\ndiversifier\r\ndiversifies\r\ndiversiform\r\ndiversify\r\ndiversifying\r\ndiversion\r\ndiversionary\r\ndiversionist\r\ndiversions\r\ndiversities\r\ndiversity\r\ndivert\r\ndiverted\r\ndivertimento\r\ndiverting\r\ndivertissement\r\ndivertissements\r\ndiverts\r\ndives\r\ndivest\r\ndivested\r\ndivesting\r\ndivestiture\r\ndivestment\r\ndivests\r\ndividable\r\ndivide\r\ndivided\r\ndividend\r\ndividends\r\ndividend's\r\ndivider\r\ndividers\r\ndivides\r\ndividing\r\ndivination\r\ndivinatory\r\ndivine\r\ndivined\r\ndivinely\r\ndiviner\r\ndivines\r\ndiving\r\ndivining\r\ndivinisation\r\ndivinise\r\ndivinised\r\ndivinises\r\ndivinising\r\ndivinities\r\ndivinity\r\ndivinity's\r\ndivisibility\r\ndivisible\r\ndivisibly\r\ndivision\r\ndivisional\r\ndivisionism\r\ndivisions\r\ndivision's\r\ndivisive\r\ndivisively\r\ndivisiveness\r\ndivisor\r\ndivisors\r\ndivisor's\r\ndivorce\r\ndivorced\r\ndivorcee\r\ndivorcees\r\ndivorcement\r\ndivorces\r\ndivorcing\r\ndivot\r\ndivulgate\r\ndivulge\r\ndivulged\r\ndivulgence\r\ndivulges\r\ndivulging\r\ndivvied\r\ndivvies\r\ndivvy\r\ndivvying\r\ndizzied\r\ndizzier\r\ndizzily\r\ndizziness\r\ndizzy\r\ndizzying\r\ndizzyingly\r\ndo\r\ndoable\r\ndobbin\r\ndobby\r\ndobsonfly\r\ndoc\r\ndocent\r\ndocile\r\ndocilely\r\ndocility\r\ndock\r\ndockage\r\ndocked\r\ndocker\r\ndocket\r\ndocketed\r\ndocketing\r\ndockets\r\ndockhand\r\ndocking\r\ndockland\r\ndocklands\r\ndocks\r\ndockside\r\ndockworker\r\ndockyard\r\ndoctor\r\ndoctoral\r\ndoctorate\r\ndoctorates\r\ndoctorate's\r\ndoctored\r\ndoctoring\r\ndoctors\r\ndoctor's\r\ndoctrinaire\r\ndoctrinal\r\ndoctrinally\r\ndoctrine\r\ndoctrines\r\ndoctrine's\r\ndocument\r\ndocumental\r\ndocumentaries\r\ndocumentarily\r\ndocumentary\r\ndocumentary's\r\ndocumentation\r\ndocumentations\r\ndocumentation's\r\ndocumented\r\ndocumenter\r\ndocumenters\r\ndocumenting\r\ndocuments\r\ndocument's\r\ndodder\r\ndoddered\r\ndodderer\r\ndoddering\r\ndodders\r\ndoddery\r\ndoddle\r\ndodecagon\r\ndodecahedra\r\ndodecahedral\r\ndodecahedron\r\ndodecaphonic\r\ndodge\r\ndodged\r\ndodgem\r\ndodger\r\ndodgers\r\ndodges\r\ndodging\r\ndodgy\r\ndodo\r\ndodos\r\ndodo's\r\ndoe\r\ndoer\r\ndoers\r\ndoes\r\ndoeskin\r\ndoesn't\r\nd'oeuvre\r\ndoff\r\ndoffing\r\ndoffs\r\ndog\r\ndogbane\r\ndogberry\r\ndogcart\r\ndogcatcher\r\ndoge\r\ndogface\r\ndogfight\r\ndogfights\r\ndogfish\r\ndogged\r\ndoggedly\r\ndoggedness\r\ndoggerel\r\ndoggie\r\ndoggies\r\ndogging\r\ndoggish\r\ndoggishly\r\ndoggishness\r\ndoggo\r\ndoggone\r\ndoggy\r\ndoghouse\r\ndogleg\r\ndoglike\r\ndogma\r\ndogman\r\ndogmas\r\ndogma's\r\ndogmatic\r\ndogmatically\r\ndogmatisation\r\ndogmatise\r\ndogmatiser\r\ndogmatism\r\ndogmatist\r\ndogmatists\r\ndogmatist's\r\ndogs\r\ndog's\r\ndogsbody\r\ndogtooth\r\ndogtrot\r\ndogvane\r\ndogwatch\r\ndogwood\r\ndoilies\r\ndoily\r\ndoing\r\ndoings\r\ndojo\r\ndolabriform\r\ndolce\r\ndoldrums\r\ndole\r\ndoled\r\ndoleful\r\ndolefully\r\ndolefulness\r\ndolerite\r\ndoles\r\ndoling\r\ndoll\r\ndollar\r\ndollarfish\r\ndollars\r\ndollhouse\r\ndollied\r\ndollies\r\ndollish\r\ndollishly\r\ndollop\r\ndollops\r\ndollop's\r\ndolls\r\ndoll's\r\ndolly\r\ndolly's\r\ndolman\r\ndolmen\r\ndolomite\r\ndolomites\r\ndolomitise\r\ndoloroso\r\ndolorous\r\ndolorously\r\ndolorousness\r\ndolour\r\ndolphin\r\ndolphins\r\ndolphin's\r\ndolt\r\ndoltish\r\ndoltishly\r\ndoltishness\r\ndomain\r\ndomains\r\ndomain's\r\ndome\r\ndomed\r\ndomes\r\ndomestic\r\ndomestically\r\ndomesticate\r\ndomesticated\r\ndomesticates\r\ndomesticating\r\ndomestication\r\ndomesticity\r\ndomical\r\ndomicile\r\ndomiciled\r\ndomiciliary\r\ndomiciliation\r\ndominance\r\ndominant\r\ndominantly\r\ndominate\r\ndominated\r\ndominates\r\ndominating\r\ndomination\r\ndominations\r\ndominative\r\ndominator\r\ndomineer\r\ndomineering\r\ndomineeringly\r\ndomineeringness\r\ndoming\r\ndominical\r\ndominie\r\ndominion\r\ndominions\r\ndominium\r\ndomino\r\ndominoes\r\ndon\r\ndonate\r\ndonated\r\ndonates\r\ndonating\r\ndonation\r\ndonations\r\ndonator\r\ndone\r\ndoneness\r\ndong\r\ndonga\r\ndonjon\r\ndonkey\r\ndonkeys\r\ndonkey's\r\ndonned\r\ndonning\r\ndonnish\r\ndonnishly\r\ndonnishness\r\ndonnybrook\r\ndonor\r\ndonors\r\ndons\r\ndon't\r\ndonut\r\ndonuts\r\ndoodad\r\ndoodah\r\ndoodle\r\ndoodlebug\r\ndoodled\r\ndoodler\r\ndoodles\r\ndoodling\r\ndoom\r\ndoomed\r\ndooming\r\ndooms\r\ndoomsayer\r\ndoomsday\r\ndoomster\r\ndoor\r\ndoorbell\r\ndoorframe\r\ndoorjamb\r\ndoorkeeper\r\ndoorkeepers\r\ndoorknob\r\ndoorknobs\r\ndoorman\r\ndoormat\r\ndoormen\r\ndoornail\r\ndoorplate\r\ndoorpost\r\ndoors\r\ndoor's\r\ndoorsill\r\ndoorstep\r\ndoorsteps\r\ndoorstep's\r\ndoorstop\r\ndoorway\r\ndoorways\r\ndoorway's\r\ndooryard\r\ndope\r\ndoped\r\ndoper\r\ndopers\r\ndopes\r\ndopey\r\ndopier\r\ndopiness\r\ndoping\r\ndoppelganger\r\ndopy\r\ndorm\r\ndormancy\r\ndormant\r\ndormer\r\ndormice\r\ndormitories\r\ndormitory\r\ndormitory's\r\ndormobile\r\ndormouse\r\ndormouse's\r\ndorsal\r\ndorsally\r\ndorsum\r\ndory\r\ndosage\r\ndosages\r\ndose\r\ndosed\r\ndoses\r\ndosimeter\r\ndosimeters\r\ndosimeter's\r\ndosing\r\ndoss\r\ndossal\r\ndosser\r\ndossier\r\ndossiers\r\ndost\r\ndot\r\ndotage\r\ndotard\r\ndote\r\ndoted\r\ndoter\r\ndotes\r\ndoth\r\ndoting\r\ndotingly\r\ndots\r\ndot's\r\ndotted\r\ndotter\r\ndotterel\r\ndottier\r\ndottily\r\ndottiness\r\ndotting\r\ndotty\r\ndouble\r\ndoubled\r\ndoubleheader\r\ndoubler\r\ndoublers\r\ndoubles\r\ndoublespeak\r\ndoublet\r\ndoublethink\r\ndoubleton\r\ndoubletree\r\ndoublets\r\ndoublet's\r\ndoubling\r\ndoubloon\r\ndoubly\r\ndoubt\r\ndoubtable\r\ndoubted\r\ndoubter\r\ndoubters\r\ndoubtful\r\ndoubtfully\r\ndoubtfulness\r\ndoubting\r\ndoubtingly\r\ndoubtless\r\ndoubtlessly\r\ndoubtlessness\r\ndoubts\r\ndouceur\r\ndouche\r\ndough\r\ndoughboy\r\ndoughier\r\ndoughnut\r\ndoughnuts\r\ndoughnut's\r\ndoughtier\r\ndoughtily\r\ndoughtiness\r\ndoughty\r\ndoughy\r\ndour\r\ndourine\r\ndourly\r\ndourness\r\ndouse\r\ndoused\r\ndouser\r\ndouses\r\ndousing\r\ndove\r\ndovecot\r\ndovecote\r\ndovekie\r\ndoves\r\ndovetail\r\ndovish\r\ndowager\r\ndowagers\r\ndowdier\r\ndowdies\r\ndowdily\r\ndowdiness\r\ndowdy\r\ndowdyish\r\ndowel\r\ndowelled\r\ndowelling\r\ndower\r\ndown\r\ndownbeat\r\ndowncast\r\ndowndraught\r\ndowned\r\ndowner\r\ndowners\r\ndownfall\r\ndownfallen\r\ndowngrade\r\ndowngraded\r\ndowngrades\r\ndowngrading\r\ndownhaul\r\ndownhearted\r\ndownheartedly\r\ndownheartedness\r\ndownhill\r\ndownier\r\ndowning\r\ndownload\r\ndownloaded\r\ndownloading\r\ndownloads\r\ndownplay\r\ndownplayed\r\ndownplaying\r\ndownplays\r\ndownpour\r\ndownrange\r\ndownright\r\ndownrightly\r\ndownrightness\r\ndownriver\r\ndowns\r\ndownshift\r\ndownside\r\ndownspout\r\ndownstage\r\ndownstairs\r\ndownstate\r\ndownstream\r\ndownswing\r\ndownswings\r\ndowntime\r\ndowntown\r\ndowntowns\r\ndowntrend\r\ndowntrodden\r\ndownturn\r\ndownturns\r\ndownward\r\ndownwardly\r\ndownwardness\r\ndownwards\r\ndownwash\r\ndownwind\r\ndowny\r\ndowries\r\ndowry\r\ndowse\r\ndowser\r\ndowses\r\ndowsing\r\ndoxology\r\ndoxy\r\ndoyen\r\ndoyley\r\ndoze\r\ndozed\r\ndozen\r\ndozens\r\ndozer\r\ndozes\r\ndozier\r\ndoziness\r\ndozing\r\ndozy\r\ndrab\r\ndrabber\r\ndrabbest\r\ndrabbet\r\ndrabbing\r\ndrabble\r\ndrabbled\r\ndrabbling\r\ndrably\r\ndrabness\r\ndrabs\r\ndraft\r\ndrafted\r\ndraftee\r\ndraftees\r\ndrafter\r\ndrafters\r\ndrafting\r\ndrafts\r\ndraft's\r\ndraftsmen\r\ndrag\r\ndragged\r\ndragger\r\ndragging\r\ndraggle\r\ndraggled\r\ndraggletailed\r\ndraggling\r\ndragline\r\ndragnet\r\ndragoman\r\ndragon\r\ndragonet\r\ndragonfly\r\ndragonhead\r\ndragonish\r\ndragonroot\r\ndragons\r\ndragon's\r\ndragoon\r\ndragooned\r\ndragoons\r\ndragrope\r\ndrags\r\ndragster\r\ndrain\r\ndrainage\r\ndrainages\r\ndrained\r\ndrainer\r\ndrainers\r\ndraining\r\ndrainpipe\r\ndrainpipes\r\ndrains\r\ndrake\r\ndram\r\ndrama\r\ndramas\r\ndrama's\r\ndramatic\r\ndramatically\r\ndramatics\r\ndramatis\r\ndramatisation\r\ndramatisations\r\ndramatisation's\r\ndramatise\r\ndramatised\r\ndramatiser\r\ndramatisers\r\ndramatises\r\ndramatising\r\ndramatist\r\ndramatists\r\ndramatist's\r\ndramaturge\r\ndramaturgic\r\ndramaturgical\r\ndramaturgically\r\ndramaturgy\r\ndrank\r\ndrape\r\ndraped\r\ndraper\r\ndraperies\r\ndrapers\r\ndrapery\r\ndrapery's\r\ndrapes\r\ndraping\r\ndrastic\r\ndrastically\r\ndrat\r\ndratted\r\ndraught\r\ndraughtboard\r\ndraughtier\r\ndraughtily\r\ndraughtiness\r\ndraughts\r\ndraught's\r\ndraughtsman\r\ndraughtsmanship\r\ndraughtsperson\r\ndraughty\r\ndraw\r\ndrawback\r\ndrawbacks\r\ndrawback's\r\ndrawbar\r\ndrawbridge\r\ndrawbridges\r\ndrawbridge's\r\ndrawdown\r\ndrawer\r\ndrawers\r\ndrawing\r\ndrawings\r\ndrawknife\r\ndrawl\r\ndrawled\r\ndrawler\r\ndrawling\r\ndrawlingly\r\ndrawls\r\ndrawly\r\ndrawn\r\ndrawplate\r\ndraws\r\ndrawstring\r\ndrawstrings\r\ndrawstring's\r\ndrawtube\r\ndray\r\ndrayage\r\ndrayman\r\ndrayman's\r\ndraymen\r\ndraymen's\r\ndread\r\ndreaded\r\ndreadful\r\ndreadfully\r\ndreadfulness\r\ndreading\r\ndreadnought\r\ndreads\r\ndream\r\ndreamboat\r\ndreamed\r\ndreamer\r\ndreamers\r\ndreamful\r\ndreamier\r\ndreamily\r\ndreaminess\r\ndreaming\r\ndreamingly\r\ndreamland\r\ndreamless\r\ndreamlessly\r\ndreamlessness\r\ndreamlike\r\ndreams\r\ndreamt\r\ndreamy\r\ndrear\r\ndrearier\r\ndrearily\r\ndreariness\r\ndreary\r\ndredge\r\ndredged\r\ndredger\r\ndredgers\r\ndredges\r\ndredge's\r\ndredging\r\ndreg\r\ndreggy\r\ndregs\r\ndrench\r\ndrenched\r\ndrencher\r\ndrenches\r\ndrenching\r\ndress\r\ndressage\r\ndressed\r\ndresser\r\ndressers\r\ndresses\r\ndressier\r\ndressiness\r\ndressing\r\ndressings\r\ndressmaker\r\ndressmakers\r\ndressmaker's\r\ndressmaking\r\ndressy\r\ndrew\r\ndrib\r\ndribble\r\ndribbled\r\ndribbler\r\ndribbles\r\ndribbling\r\ndriblet\r\ndribs\r\ndried\r\ndrier\r\ndriers\r\ndrier's\r\ndries\r\ndriest\r\ndrift\r\ndriftage\r\ndrifted\r\ndrifter\r\ndrifters\r\ndrifting\r\ndrifts\r\ndriftwood\r\ndriftwood's\r\ndrifty\r\ndrill\r\ndrillable\r\ndrilled\r\ndriller\r\ndrilling\r\ndrillmaster\r\ndrills\r\ndrillstock\r\ndrink\r\ndrinkable\r\ndrinker\r\ndrinkers\r\ndrinking\r\ndrinks\r\ndrip\r\ndripped\r\ndripper\r\ndrippier\r\ndripping\r\ndrippy\r\ndrips\r\ndrip's\r\ndripstone\r\ndrivable\r\ndrive\r\ndriveable\r\ndrivel\r\ndriveline\r\ndrivelled\r\ndriveller\r\ndrivellers\r\ndrivelling\r\ndriven\r\ndriver\r\ndriverless\r\ndrivers\r\ndriver's\r\ndrives\r\ndriveway\r\ndriveways\r\ndriveway's\r\ndriving\r\ndrizzle\r\ndrizzled\r\ndrizzles\r\ndrizzling\r\ndrizzly\r\ndrogue\r\ndroll\r\ndrolleries\r\ndrollery\r\ndrollness\r\ndrolly\r\ndromedary\r\ndrone\r\ndrones\r\ndrone's\r\ndroning\r\ndroningly\r\ndrool\r\ndrooled\r\ndrooling\r\ndrools\r\ndroop\r\ndrooped\r\ndroopier\r\ndrooping\r\ndroopingly\r\ndroops\r\ndroopy\r\ndrop\r\ndropkick\r\ndroplet\r\ndroplets\r\ndroplight\r\ndropout\r\ndropouts\r\ndropped\r\ndropper\r\ndroppers\r\ndropper's\r\ndropping\r\ndroppings\r\ndropping's\r\ndrops\r\ndrop's\r\ndropsy\r\ndroshky\r\ndrosophila\r\ndross\r\ndrossy\r\ndrought\r\ndroughts\r\ndrought's\r\ndroughty\r\ndrove\r\ndrover\r\ndrovers\r\ndroves\r\ndrown\r\ndrowned\r\ndrowning\r\ndrowns\r\ndrowse\r\ndrowsed\r\ndrowses\r\ndrowsier\r\ndrowsiest\r\ndrowsily\r\ndrowsiness\r\ndrowsing\r\ndrowsy\r\ndrub\r\ndrubber\r\ndrubbing\r\ndrudge\r\ndrudger\r\ndrudgery\r\ndrudges\r\ndrudging\r\ndrudgingly\r\ndrug\r\ndrugged\r\ndrugging\r\ndruggist\r\ndruggists\r\ndruggist's\r\ndrugless\r\ndrugs\r\ndrug's\r\ndrugstore\r\ndrugstores\r\ndruid\r\ndruidic\r\ndruidical\r\ndruidism\r\ndrum\r\ndrumbeat\r\ndrumbeater\r\ndrumbeating\r\ndrumfire\r\ndrumhead\r\ndrumlin\r\ndrummed\r\ndrummer\r\ndrummers\r\ndrummer's\r\ndrumming\r\ndrums\r\ndrum's\r\ndrumstick\r\ndrumsticks\r\ndrunk\r\ndrunkard\r\ndrunkards\r\ndrunkard's\r\ndrunken\r\ndrunkenly\r\ndrunkenness\r\ndrunker\r\ndrunks\r\ndrunk's\r\ndrupe\r\ndry\r\ndryable\r\ndryad\r\ndryer\r\ndryers\r\ndrying\r\ndryly\r\ndryness\r\ndrywall\r\ndual\r\ndualism\r\ndualist\r\ndualistic\r\ndualistically\r\ndualities\r\nduality\r\nduality's\r\ndually\r\nduals\r\ndub\r\ndubbed\r\ndubbing\r\ndubiety\r\ndubious\r\ndubiously\r\ndubiousness\r\ndubitable\r\ndubitation\r\ndubs\r\nducal\r\nducally\r\nducat\r\nduchess\r\nduchesses\r\nduchess's\r\nduchies\r\nduchy\r\nduck\r\nduckbill\r\nduckbilled\r\nduckboard\r\nducked\r\nducker\r\nduckier\r\nducking\r\nduckling\r\nduckpin\r\nducks\r\nduckweed\r\nduckweeds\r\nduckweed's\r\nducky\r\nduct\r\nducted\r\nductile\r\nductility\r\nducting\r\nductless\r\nducts\r\nductwork\r\ndud\r\ndude\r\ndudeen\r\ndudgeon\r\nduds\r\ndue\r\nduel\r\nduelled\r\ndueller\r\nduellers\r\nduelling\r\nduellist\r\nduellists\r\nduello\r\nduels\r\nduenna\r\ndues\r\nduet\r\nduets\r\nduff\r\nduffel\r\nduffer\r\nduffers\r\nduffle\r\ndug\r\ndugong\r\ndugout\r\nduiker\r\nduke\r\ndukedom\r\ndukes\r\nduke's\r\ndulcet\r\ndulcetly\r\ndulcify\r\ndulcimer\r\ndulia\r\ndull\r\ndullard\r\ndulled\r\nduller\r\ndullest\r\ndulling\r\ndullish\r\ndullness\r\ndulls\r\ndullsville\r\ndully\r\nduly\r\ndumb\r\ndumbbell\r\ndumbbells\r\ndumbbell's\r\ndumber\r\ndumbest\r\ndumbfound\r\ndumbfounded\r\ndumbfounder\r\ndumbfounds\r\ndumbly\r\ndumbness\r\ndumbstruck\r\ndumbwaiter\r\ndumbwaiters\r\ndumdum\r\ndummied\r\ndummies\r\ndummy\r\ndummying\r\ndummy's\r\ndump\r\ndumped\r\ndumper\r\ndumpers\r\ndumpier\r\ndumpily\r\ndumpiness\r\ndumping\r\ndumpish\r\ndumpling\r\ndumplings\r\ndumpling's\r\ndumps\r\ndumpster\r\ndumpsters\r\ndumpster's\r\ndumpy\r\ndun\r\ndunce\r\ndunces\r\ndunce's\r\ndunderhead\r\ndunderheaded\r\ndune\r\ndunes\r\ndune's\r\ndung\r\ndungaree\r\ndungeon\r\ndungeons\r\ndungeon's\r\ndunghill\r\ndungy\r\ndunk\r\ndunker\r\ndunlin\r\nduo\r\nduodecimal\r\nduodecimo\r\nduodenal\r\nduodenary\r\nduodenum\r\nduologue\r\nduopolistic\r\nduopoly\r\nduos\r\nduotone\r\ndup\r\ndupe\r\nduped\r\nduper\r\ndupery\r\ndupes\r\nduping\r\nduple\r\nduplet\r\nduplex\r\nduplexer\r\nduplicable\r\nduplicate\r\nduplicated\r\nduplicates\r\nduplicating\r\nduplication\r\nduplications\r\nduplicative\r\nduplicator\r\nduplicators\r\nduplicator's\r\nduplicitous\r\nduplicitously\r\nduplicity\r\ndurability\r\ndurable\r\ndurableness\r\ndurables\r\ndurably\r\ndurance\r\nduration\r\ndurational\r\ndurations\r\nduration's\r\ndurative\r\ndurbar\r\nduress\r\ndurex\r\ndurian\r\nduring\r\ndurmast\r\ndurra\r\ndurst\r\ndurum\r\ndusk\r\nduskier\r\nduskily\r\nduskiness\r\ndusky\r\ndust\r\ndustbin\r\ndustbins\r\ndustcart\r\ndustcarts\r\ndustcover\r\ndusted\r\nduster\r\ndusters\r\ndustier\r\ndustiest\r\ndustily\r\ndustiness\r\ndusting\r\ndustless\r\ndustman\r\ndustmen\r\ndustpan\r\ndustpans\r\ndusts\r\ndustsheet\r\ndustsheets\r\ndustup\r\ndusty\r\nduteous\r\ndutiable\r\nduties\r\ndutiful\r\ndutifully\r\ndutifulness\r\nduty\r\nduty's\r\nduumvir\r\nduumvirate\r\nduvet\r\nduvets\r\ndux\r\ndwarf\r\ndwarfed\r\ndwarfishly\r\ndwarfishness\r\ndwarfism\r\ndwarfs\r\ndwarves\r\ndwell\r\ndwelled\r\ndweller\r\ndwellers\r\ndwelling\r\ndwellings\r\ndwells\r\ndwelt\r\ndwindle\r\ndwindled\r\ndwindles\r\ndwindling\r\ndyad\r\ndyadic\r\ndyads\r\ndye\r\ndyed\r\ndyeing\r\ndyer\r\ndyers\r\ndyes\r\ndyestuff\r\ndyewood\r\ndying\r\ndykes\r\ndynamic\r\ndynamical\r\ndynamically\r\ndynamics\r\ndynamism\r\ndynamist\r\ndynamistic\r\ndynamite\r\ndynamited\r\ndynamiter\r\ndynamites\r\ndynamitic\r\ndynamiting\r\ndynamo\r\ndynamoelectric\r\ndynamometer\r\ndynamometers\r\ndynamometer's\r\ndynamometric\r\ndynamometry\r\ndynamos\r\ndynamotor\r\ndynast\r\ndynastic\r\ndynastically\r\ndynasties\r\ndynasts\r\ndynasty\r\ndynasty's\r\ndynatron\r\ndyne\r\ndynode\r\ndynodes\r\ndysenteric\r\ndysentery\r\ndysfunction\r\ndysfunctional\r\ndysgenic\r\ndysgenics\r\ndyslexia\r\ndyslexic\r\ndyslogistic\r\ndyslogistically\r\ndysmenorrhoea\r\ndyspepsia\r\ndyspeptic\r\ndyspeptically\r\ndysphasia\r\ndysphasic\r\ndysphemism\r\ndysphonic\r\ndyspnoea\r\ndysprosium\r\ndystrophic\r\ndystrophy\r\ne's \r\neach\r\neager\r\neagerly\r\neagerness\r\neagle\r\neagles\r\neagle's\r\neaglet\r\nealdorman\r\near\r\nearache\r\neardrop\r\neardrops\r\neardrum\r\neardrums\r\neared\r\nearflap\r\nearful\r\nearl\r\nearlap\r\nearldom\r\nearless\r\nearlier\r\nearliest\r\nearliness\r\nearlobe\r\nearls\r\nearl's\r\nearly\r\nearmark\r\nearmarked\r\nearmarking\r\nearmarks\r\nearmuff\r\nearmuffs\r\nearn\r\nearned\r\nearner\r\nearners\r\nearner's\r\nearnest\r\nearnestly\r\nearnestness\r\nearning\r\nearnings\r\nearns\r\nearphone\r\nearphones\r\nearpiece\r\nearplug\r\nearring\r\nearrings\r\nearring's\r\nears\r\nearshot\r\nearth\r\nearthborn\r\nearthbound\r\nearthed\r\nearthen\r\nearthenware\r\nearthier\r\nearthily\r\nearthiness\r\nearthlight\r\nearthliness\r\nearthling\r\nearthly\r\nearthman\r\nearthmen\r\nearthmover\r\nearthmoving\r\nearthnut\r\nearthquake\r\nearthquakes\r\nearthquake's\r\nearthrise\r\nearths\r\nearth's\r\nearthshaking\r\nearthshakingly\r\nearthshine\r\nearthstar\r\nearthward\r\nearthwards\r\nearthwork\r\nearthworks\r\nearthworm\r\nearthworms\r\nearthworm's\r\nearthy\r\nearwax\r\nearwig\r\nease\r\neased\r\neaseful\r\neasefully\r\neasel\r\neasement\r\neasements\r\neasement's\r\neaser\r\neases\r\neasier\r\neasiest\r\neasily\r\neasiness\r\neasing\r\neast\r\neastbound\r\neasterly\r\neastern\r\neasterner\r\neasterners\r\neasternmost\r\neasting\r\neastward\r\neastwards\r\neasy\r\neasygoing\r\neasygoingness\r\neat\r\neatable\r\neatables\r\neaten\r\neater\r\neaters\r\neatery\r\neating\r\neats\r\neave\r\neaves\r\neavesdrop\r\neavesdropped\r\neavesdropper\r\neavesdroppers\r\neavesdropper's\r\neavesdropping\r\neavesdrops\r\nebb\r\nebbed\r\nebbing\r\nebbs\r\nebon\r\nebonise\r\nebonised\r\nebonises\r\nebonising\r\nebonite\r\nebony\r\nebullience\r\nebullient\r\nebulliently\r\nebullioscopy\r\nebullition\r\necce\r\neccentric\r\neccentrically\r\neccentricities\r\neccentricity\r\neccentrics\r\neccentric's\r\necclesia\r\necclesial\r\necclesiastic\r\necclesiastical\r\necclesiastically\r\necclesiasticism\r\necclesiolatry\r\necclesiological\r\necclesiology\r\neccrinology\r\necdysiast\r\nechelon\r\nechelons\r\nechidna\r\nechinoderm\r\nechinoid\r\nechinus\r\necho\r\nechoed\r\nechoes\r\nechoic\r\nechoing\r\nechoism\r\necholalia\r\necholocation\r\nechovirus\r\neclectic\r\neclectically\r\neclecticism\r\neclipse\r\neclipsed\r\neclipses\r\neclipsing\r\necliptic\r\neclogue\r\necocide\r\necol\r\necologic\r\necological\r\necologically\r\necologist\r\necologists\r\necology\r\neconometric\r\neconometrically\r\neconometrician\r\neconometricians\r\neconometrics\r\neconometrist\r\neconomic\r\neconomical\r\neconomically\r\neconomics\r\neconomies\r\neconomisation\r\neconomisations\r\neconomisation's\r\neconomise\r\neconomised\r\neconomiser\r\neconomisers\r\neconomises\r\neconomising\r\neconomist\r\neconomists\r\neconomist's\r\neconomy\r\neconomy's\r\necospecies\r\necosphere\r\necosystem\r\necosystems\r\necotype\r\necru\r\necstasy\r\necstatic\r\necstatically\r\nectoblastic\r\nectoderm\r\nectodermic\r\nectoplasm\r\nectype\r\necumenical\r\necumenicalism\r\necumenically\r\necumenicist\r\necumenicists\r\necumenicist's\r\necumenicity\r\necumenism\r\necumenist\r\necumenists\r\necumenist's\r\neczema\r\neczematous\r\ned\r\nedacious\r\nedacity\r\nedam\r\nedaphically\r\neddied\r\neddies\r\neddo\r\neddy\r\neddying\r\neddy's\r\nedelweiss\r\nedentate\r\nedentulous\r\nedge\r\nedged\r\nedgeless\r\nedger\r\nedges\r\nedgeways\r\nedgewise\r\nedgier\r\nedgily\r\nedginess\r\nedging\r\nedgy\r\nedibility\r\nedible\r\nedibleness\r\nedibles\r\nedict\r\nedictal\r\nedicts\r\nedict's\r\nedification\r\nedificatory\r\nedifice\r\nedifices\r\nedifice's\r\nedified\r\nedifies\r\nedify\r\nedifying\r\nedit\r\neditable\r\nedited\r\nediting\r\nedition\r\neditions\r\nedition's\r\neditor\r\neditorial\r\neditorialise\r\neditorialised\r\neditorialises\r\neditorialising\r\neditorialist\r\neditorially\r\neditorials\r\neditors\r\neditor's\r\neditorship\r\nedits\r\neducability\r\neducable\r\neducate\r\neducated\r\neducates\r\neducating\r\neducation\r\neducational\r\neducationalist\r\neducationalists\r\neducationally\r\neducationist\r\neducations\r\neducation's\r\neducative\r\neducator\r\neducators\r\neducator's\r\neducatory\r\neduce\r\neducible\r\neducing\r\neel\r\neelgrass\r\neelpout\r\neels\r\neel's\r\neelworm\r\neely\r\ne'er\r\neerie\r\neerier\r\neerily\r\neeriness\r\neffable\r\nefface\r\neffaceable\r\neffaced\r\neffacement\r\neffacer\r\neffaces\r\neffacing\r\neffect\r\neffected\r\neffecting\r\neffective\r\neffectively\r\neffectiveness\r\neffectives\r\neffectors\r\neffector's\r\neffects\r\neffectual\r\neffectuality\r\neffectually\r\neffectualness\r\neffectuate\r\neffectuated\r\neffectuates\r\neffectuating\r\neffectuation\r\neffeminacy\r\neffeminate\r\neffendi\r\nefferent\r\neffervesce\r\neffervescence\r\neffervescent\r\neffervescently\r\neffete\r\neffetely\r\neffeteness\r\nefficacious\r\nefficaciously\r\nefficaciousness\r\nefficacy\r\nefficiencies\r\nefficiency\r\nefficient\r\nefficiently\r\neffigy\r\neffloresce\r\nefflorescence\r\nefflorescent\r\neffluence\r\neffluent\r\neffluents\r\neffluvia\r\neffluvium\r\nefflux\r\neffort\r\neffortful\r\neffortless\r\neffortlessly\r\neffortlessness\r\nefforts\r\neffort's\r\neffrontery\r\neffulgence\r\neffulgent\r\neffuse\r\neffused\r\neffuses\r\neffusing\r\neffusion\r\neffusive\r\neffusively\r\neffusiveness\r\negad\r\negalitarian\r\negalitarianism\r\negg\r\neggbeater\r\neggcup\r\negged\r\negger\r\negghead\r\negging\r\neggnog\r\neggplant\r\neggs\r\neggshell\r\neglantine\r\nego\r\negocentric\r\negocentrically\r\negocentricity\r\negocentrism\r\negoism\r\negoist\r\negoistic\r\negoistical\r\negoistically\r\negoists\r\negomania\r\negomaniac\r\negomaniacal\r\negomaniacally\r\negomaniacs\r\negos\r\negotism\r\negotist\r\negotistic\r\negotistical\r\negotistically\r\negotists\r\negregious\r\negregiously\r\negregiousness\r\negress\r\negression\r\negret\r\negrets\r\neh\r\neider\r\neiderdown\r\neidetic\r\neidolon\r\neigenvector\r\neigenvectors\r\neight\r\neighteen\r\neighteens\r\neighteenth\r\neightfold\r\neighth\r\neighths\r\neighth's\r\neighties\r\neightieth\r\neights\r\neighty\r\neinsteinium\r\neither\r\nejaculate\r\nejaculated\r\nejaculates\r\nejaculating\r\nejaculation\r\nejaculations\r\nejaculatory\r\neject\r\nejected\r\nejecting\r\nejection\r\nejective\r\nejector\r\nejectors\r\nejects\r\neke\r\neked\r\nekes\r\neking\r\nekistics\r\nel\r\nelaborate\r\nelaborated\r\nelaborately\r\nelaborateness\r\nelaborates\r\nelaborating\r\nelaboration\r\nelaborations\r\nelaborative\r\nelaborators\r\neland\r\nelapid\r\nelapse\r\nelapsed\r\nelapses\r\nelapsing\r\nelastic\r\nelastically\r\nelasticise\r\nelasticised\r\nelasticises\r\nelasticising\r\nelasticity\r\nelastics\r\nelate\r\nelated\r\nelatedly\r\nelatedness\r\nelaterid\r\nelaterium\r\nelates\r\nelating\r\nelation\r\nelbow\r\nelbowed\r\nelbowing\r\nelbowroom\r\nelbows\r\nelder\r\nelderberry\r\nelderliness\r\nelderly\r\nelders\r\neldership\r\neldest\r\neldritch\r\nelecampane\r\nelect\r\nelected\r\nelecting\r\nelection\r\nelectioneer\r\nelectioneerer\r\nelections\r\nelection's\r\nelective\r\nelectively\r\nelectiveness\r\nelectives\r\nelector\r\nelectoral\r\nelectorate\r\nelectors\r\nelector's\r\nelectric\r\nelectrical\r\nelectrically\r\nelectrician\r\nelectricians\r\nelectricity\r\nelectrics\r\nelectrification\r\nelectrified\r\nelectrify\r\nelectrifying\r\nelectro\r\nelectrocardiogram\r\nelectrocardiograms\r\nelectrocardiogram's\r\nelectrocardiograph\r\nelectrocardiographically\r\nelectrocardiography\r\nelectrochemical\r\nelectrochemically\r\nelectrochemist\r\nelectrochemistry\r\nelectrochemists\r\nelectroconvulsive\r\nelectrocute\r\nelectrocuted\r\nelectrocutes\r\nelectrocuting\r\nelectrocution\r\nelectrocutions\r\nelectrode\r\nelectrodes\r\nelectrode's\r\nelectrodynamics\r\nelectrodynamometer\r\nelectrodynamometers\r\nelectrodynamometer's\r\nelectroencephalogram\r\nelectroencephalograms\r\nelectroencephalogram's\r\nelectroencephalograph\r\nelectroencephalography\r\nelectroform\r\nelectrograph\r\nelectroluminescence\r\nelectroluminescent\r\nelectrolyse\r\nelectrolysed\r\nelectrolyses\r\nelectrolysing\r\nelectrolysis\r\nelectrolyte\r\nelectrolytes\r\nelectrolyte's\r\nelectrolytic\r\nelectromagnet\r\nelectromagnetic\r\nelectromagnetically\r\nelectromagnetism\r\nelectromagnetisms\r\nelectromagnets\r\nelectromechanical\r\nelectromechanically\r\nelectrometallurgy\r\nelectrometer\r\nelectrometers\r\nelectrometer's\r\nelectromotive\r\nelectromyography\r\nelectron\r\nelectronegative\r\nelectronic\r\nelectronically\r\nelectronics\r\nelectrons\r\nelectron's\r\nelectrophone\r\nelectrophoresis\r\nelectrophorus\r\nelectrophysiological\r\nelectrophysiology\r\nelectroplate\r\nelectroplater\r\nelectropositive\r\nelectroscope\r\nelectroshock\r\nelectroshocks\r\nelectrostatic\r\nelectrostatics\r\nelectrostriction\r\nelectrosurgical\r\nelectrotherapist\r\nelectrotype\r\nelectrotyper\r\nelectrotypers\r\nelectrovalence\r\nelectrovalent\r\nelectroweak\r\nelectrum\r\nelects\r\nelectuary\r\neleemosynary\r\nelegance\r\nelegances\r\nelegancy\r\nelegant\r\nelegantly\r\nelegiac\r\nelegies\r\nelegise\r\nelegised\r\nelegises\r\nelegising\r\nelegy\r\nelement\r\nelemental\r\nelementally\r\nelementals\r\nelementarily\r\nelementariness\r\nelementary\r\nelements\r\nelement's\r\nelemi\r\nelenchus\r\nelephant\r\nelephantiasis\r\nelephantine\r\nelephants\r\nelephant's\r\nelevate\r\nelevated\r\nelevates\r\nelevating\r\nelevation\r\nelevations\r\nelevator\r\nelevators\r\nelevator's\r\neleven\r\nelevens\r\nelevenses\r\neleventh\r\nelf\r\nelfin\r\nelfish\r\nelfishly\r\nelflock\r\nelicit\r\nelicitation\r\nelicited\r\neliciting\r\nelicitor\r\nelicits\r\nelide\r\nelided\r\nelides\r\neliding\r\neligibilities\r\neligibility\r\neligible\r\neligibly\r\neliminable\r\neliminate\r\neliminated\r\neliminates\r\neliminating\r\nelimination\r\neliminations\r\neliminative\r\neliminator\r\neliminators\r\nelision\r\nelisions\r\nelite\r\nelites\r\nelitism\r\nelitist\r\nelitists\r\nelixir\r\nelk\r\nelkhound\r\nelks\r\nelk's\r\nell\r\nellipse\r\nellipses\r\nellipse's\r\nellipsis\r\nellipsoid\r\nellipsoidal\r\nellipsoids\r\nellipsoid's\r\nelliptic\r\nelliptical\r\nelliptically\r\nelm\r\nelms\r\nelocution\r\nelocutionary\r\nelocutionist\r\nelocutionists\r\neloign\r\nelongate\r\nelongated\r\nelongates\r\nelongating\r\nelongation\r\nelope\r\neloped\r\nelopement\r\neloper\r\nelopes\r\neloping\r\neloquence\r\neloquent\r\neloquently\r\nelse\r\nelse's\r\nelsewhere\r\nelucidate\r\nelucidated\r\nelucidates\r\nelucidating\r\nelucidation\r\nelucidative\r\nelucidator\r\nelude\r\neluded\r\neludes\r\neluding\r\nelusion\r\nelusive\r\nelusively\r\nelusiveness\r\nelute\r\neluted\r\neluting\r\nelution\r\nelutriate\r\nelutriator\r\nelves\r\nelysian\r\nemaciate\r\nemaciated\r\nemaciates\r\nemaciating\r\nemaciation\r\nemail\r\nemanate\r\nemanated\r\nemanates\r\nemanating\r\nemanation\r\nemanations\r\nemanative\r\nemancipate\r\nemancipated\r\nemancipates\r\nemancipating\r\nemancipation\r\nemancipationist\r\nemancipator\r\nemarginated\r\nemasculate\r\nemasculated\r\nemasculates\r\nemasculating\r\nemasculation\r\nemasculator\r\nembalm\r\nembalmer\r\nembalmers\r\nembalming\r\nembalmment\r\nembalms\r\nembank\r\nembanked\r\nembanking\r\nembankment\r\nembankments\r\nembanks\r\nembarcadero\r\nembargo\r\nembargoed\r\nembargoes\r\nembargoing\r\nembark\r\nembarkation\r\nembarked\r\nembarking\r\nembarks\r\nembarrass\r\nembarrassed\r\nembarrassedly\r\nembarrasses\r\nembarrassing\r\nembarrassingly\r\nembarrassment\r\nembassies\r\nembassy\r\nembassy's\r\nembattle\r\nembattled\r\nembattlement\r\nembattles\r\nembattling\r\nembay\r\nembayment\r\nembed\r\nembeddable\r\nembedded\r\nembedding\r\nembedment\r\nembeds\r\nembellish\r\nembellished\r\nembellisher\r\nembellishes\r\nembellishing\r\nembellishment\r\nembellishments\r\nembellishment's\r\nember\r\nembers\r\nembezzle\r\nembezzled\r\nembezzlement\r\nembezzler\r\nembezzlers\r\nembezzler's\r\nembezzles\r\nembezzling\r\nembitter\r\nembittered\r\nembitterment\r\nembitters\r\nemblaze\r\nemblazed\r\nemblazes\r\nemblazing\r\nemblazon\r\nemblazoned\r\nemblazoner\r\nemblazoning\r\nemblazonment\r\nemblazonry\r\nemblazons\r\nemblem\r\nemblematic\r\nemblematical\r\nemblematically\r\nemblematise\r\nemblematised\r\nemblematises\r\nemblematising\r\nemblemise\r\nemblemises\r\nemblems\r\nembodied\r\nembodies\r\nembodiment\r\nembodiments\r\nembodiment's\r\nembody\r\nembodying\r\nembolden\r\nemboldened\r\nemboldens\r\nembolic\r\nembolism\r\nembolismic\r\nembolus\r\nembosom\r\nemboss\r\nembossed\r\nembosser\r\nembossers\r\nembosses\r\nembossing\r\nembossment\r\nembouchure\r\nembowel\r\nembowelled\r\nembowelling\r\nembower\r\nembrace\r\nembraceable\r\nembraced\r\nembracement\r\nembraceor\r\nembracer\r\nembraces\r\nembracing\r\nembracive\r\nembranchment\r\nembrangle\r\nembranglement\r\nembrasure\r\nembrocate\r\nembrocated\r\nembrocates\r\nembrocating\r\nembroider\r\nembroidered\r\nembroiderer\r\nembroideries\r\nembroiders\r\nembroidery\r\nembroil\r\nembroiled\r\nembroiling\r\nembroilment\r\nembroils\r\nembrown\r\nembryo\r\nembryogenesis\r\nembryologic\r\nembryological\r\nembryologist\r\nembryology\r\nembryonic\r\nembryos\r\nembryo's\r\nemcee\r\nemceed\r\nemceeing\r\nemend\r\nemendable\r\nemendate\r\nemendation\r\nemendator\r\nemendatory\r\nemerald\r\nemeralds\r\nemerald's\r\nemerge\r\nemerged\r\nemergence\r\nemergencies\r\nemergency\r\nemergency's\r\nemergent\r\nemerges\r\nemerging\r\nemeriti\r\nemeritus\r\nemersion\r\nemery\r\nemesis\r\nemetic\r\nemetine\r\nemigrant\r\nemigrants\r\nemigrant's\r\nemigrate\r\nemigrated\r\nemigrates\r\nemigrating\r\nemigration\r\némigré\r\neminence\r\neminency\r\neminent\r\neminently\r\nemir\r\nemirate\r\nemissaries\r\nemissary\r\nemission\r\nemissions\r\nemission's\r\nemissive\r\nemit\r\nemits\r\nemitted\r\nemitter\r\nemitters\r\nemitting\r\nemmer\r\nemollient\r\nemollients\r\nemolument\r\nemoluments\r\nemote\r\nemoted\r\nemotes\r\nemoting\r\nemotion\r\nemotional\r\nemotionalise\r\nemotionalised\r\nemotionalises\r\nemotionalising\r\nemotionalism\r\nemotionalist\r\nemotionality\r\nemotionally\r\nemotionless\r\nemotions\r\nemotion's\r\nemotive\r\nemotively\r\nempanel\r\nempanelled\r\nempanelling\r\nempanels\r\nempathetic\r\nempathetically\r\nempathic\r\nempathise\r\nempathised\r\nempathises\r\nempathising\r\nempathy\r\nempennage\r\nemperies\r\nemperor\r\nemperors\r\nemperor's\r\nemperorship\r\nempery\r\nemphases\r\nemphasis\r\nemphasise\r\nemphasised\r\nemphasises\r\nemphasising\r\nemphatic\r\nemphatically\r\nemphysema\r\nemphysematous\r\nempire\r\nempires\r\nempire's\r\nempiric\r\nempirical\r\nempirically\r\nempiricism\r\nempiricist\r\nempiricists\r\nempiricist's\r\nemplace\r\nemplacement\r\nemplane\r\nemploy\r\nemployability\r\nemployable\r\nemployed\r\nemployee\r\nemployees\r\nemployee's\r\nemployer\r\nemployers\r\nemployer's\r\nemploying\r\nemployment\r\nemployments\r\nemployment's\r\nemploys\r\nempoison\r\nemporium\r\nemporiums\r\nempower\r\nempowered\r\nempowering\r\nempowerment\r\nempowers\r\nempress\r\nemprise\r\nemptied\r\nemptier\r\nempties\r\nemptiest\r\nemptily\r\nemptiness\r\nempty\r\nemptying\r\nempurple\r\nempurpled\r\nempurpling\r\nempyrean\r\nemulate\r\nemulated\r\nemulates\r\nemulating\r\nemulation\r\nemulations\r\nemulative\r\nemulator\r\nemulators\r\nemulator's\r\nemulous\r\nemulously\r\nemulousness\r\nemulsification\r\nemulsified\r\nemulsifier\r\nemulsifies\r\nemulsify\r\nemulsion\r\nemulsions\r\nen\r\nenable\r\nenabled\r\nenabler\r\nenablers\r\nenables\r\nenabling\r\nenact\r\nenacted\r\nenacting\r\nenactment\r\nenactments\r\nenactor\r\nenacts\r\nenamel\r\nenamelled\r\nenameller\r\nenamellers\r\nenamelling\r\nenamellings\r\nenamellist\r\nenamellists\r\nenamels\r\nenamelware\r\nenamour\r\nenamoured\r\nenamouring\r\nenamours\r\nencaenia\r\nencage\r\nencamp\r\nencamped\r\nencamping\r\nencampment\r\nencamps\r\nencapsulate\r\nencapsulated\r\nencapsulates\r\nencapsulating\r\nencapsulation\r\nencarnalise\r\nencarnalised\r\nencarnalises\r\nencarnalising\r\nencase\r\nencased\r\nencasement\r\nencashment\r\nencaustic\r\nenceinte\r\nencephalic\r\nencephalin\r\nencephalitic\r\nencephalitis\r\nencephalogram\r\nencephalograms\r\nencephalogram's\r\nencephalograph\r\nencephalographic\r\nencephalography\r\nencephalomyelitis\r\nencephalon\r\nenchain\r\nenchained\r\nenchainment\r\nenchant\r\nenchanted\r\nenchanter\r\nenchanting\r\nenchantingly\r\nenchantment\r\nenchantress\r\nenchants\r\nenchase\r\nenchased\r\nenchasing\r\nenchilada\r\nenchiladas\r\nenchiridion\r\nenchorial\r\nencipher\r\nenciphered\r\nenciphering\r\nencipherment\r\nenciphers\r\nencircle\r\nencircled\r\nencirclement\r\nencircles\r\nencircling\r\nenclave\r\nenclaves\r\nenclitic\r\nenclose\r\nenclosed\r\nencloses\r\nenclosing\r\nenclosure\r\nenclosures\r\nenclosure's\r\nencode\r\nencoded\r\nencoder\r\nencoders\r\nencodes\r\nencoding\r\nencodings\r\nencomia\r\nencomiast\r\nencomium\r\nencomiums\r\nencompass\r\nencompassed\r\nencompasses\r\nencompassing\r\nencompassment\r\nencore\r\nencored\r\nencores\r\nencoring\r\nencounter\r\nencountered\r\nencountering\r\nencounters\r\nencourage\r\nencouraged\r\nencouragement\r\nencouragements\r\nencourager\r\nencourages\r\nencouraging\r\nencouragingly\r\nencroach\r\nencroached\r\nencroacher\r\nencroaches\r\nencroaching\r\nencroachment\r\nencrust\r\nencrustation\r\nencrusted\r\nencrusting\r\nencrusts\r\nencrypt\r\nencrypted\r\nencrypting\r\nencryption\r\nencryptions\r\nencryption's\r\nencrypts\r\nenculturation\r\nencumber\r\nencumbered\r\nencumbering\r\nencumbers\r\nencumbrance\r\nencumbrances\r\nencyclical\r\nencyclopaedia\r\nencyclopaedias\r\nencyclopaedia's\r\nencyclopaedic\r\nencyclopaedically\r\nencyclopaedism\r\nencyclopaedist\r\nend\r\nendanger\r\nendangered\r\nendangering\r\nendangerment\r\nendangers\r\nendbrain\r\nendear\r\nendeared\r\nendearing\r\nendearingly\r\nendearment\r\nendearments\r\nendears\r\nendeavour\r\nendeavoured\r\nendeavourer\r\nendeavourers\r\nendeavourer's\r\nendeavouring\r\nendeavours\r\nended\r\nendemic\r\nendemically\r\nender\r\nenders\r\nendgame\r\nending\r\nendings\r\nendive\r\nendless\r\nendlessly\r\nendlessness\r\nendmost\r\nendnote\r\nendnotes\r\nendnote's\r\nendoblast\r\nendocarp\r\nendocentric\r\nendocrine\r\nendocrinologist\r\nendocrinology\r\nendoderm\r\nendodermis\r\nendoergic\r\nendogamous\r\nendogamy\r\nendogen\r\nendogenous\r\nendogenously\r\nendometrial\r\nendometriosis\r\nendomorph\r\nendomorphic\r\nendomorphism\r\nendoplasm\r\nendoplasmic\r\nendorse\r\nendorsed\r\nendorsee\r\nendorsement\r\nendorsements\r\nendorsement's\r\nendorser\r\nendorses\r\nendorsing\r\nendoscope\r\nendoskeleton\r\nendosmosis\r\nendosmotically\r\nendosperm\r\nendospermic\r\nendothelial\r\nendothelium\r\nendothermic\r\nendow\r\nendowed\r\nendowing\r\nendowment\r\nendowments\r\nendowment's\r\nendows\r\nendpaper\r\nendplate\r\nendplay\r\nendpoint\r\nendpoints\r\nends\r\nendue\r\nendued\r\nenduing\r\nendurable\r\nendurably\r\nendurance\r\nendure\r\nendured\r\nendures\r\nenduring\r\nenduringly\r\nenduringness\r\nendways\r\nendwise\r\nenema\r\nenemas\r\nenema's\r\nenemata\r\nenemies\r\nenemy\r\nenemy's\r\nenergetic\r\nenergetically\r\nenergies\r\nenergise\r\nenergised\r\nenergiser\r\nenergisers\r\nenergises\r\nenergising\r\nenergumen\r\nenergy\r\nenervate\r\nenervated\r\nenervates\r\nenervating\r\nenervation\r\nenervative\r\nenface\r\nenfant\r\nenfeeble\r\nenfeebled\r\nenfeeblement\r\nenfeebles\r\nenfeebling\r\nenfetter\r\nenfilade\r\nenflame\r\nenflamed\r\nenflames\r\nenflaming\r\nenfold\r\nenforce\r\nenforceability\r\nenforceable\r\nenforced\r\nenforcedly\r\nenforcement\r\nenforcer\r\nenforcers\r\nenforces\r\nenforcing\r\nenfranchise\r\nenfranchised\r\nenfranchisement\r\nenfranchiser\r\nenfranchises\r\nenfranchising\r\nengage\r\nengaged\r\nengagement\r\nengagements\r\nengagement's\r\nengages\r\nengaging\r\nengagingly\r\nengender\r\nengendered\r\nengendering\r\nengenders\r\nengine\r\nengineer\r\nengineered\r\nengineering\r\nengineers\r\nengineer's\r\nenginery\r\nengines\r\nengine's\r\nengird\r\nengirdle\r\nengorge\r\nengorged\r\nengorgement\r\nengorges\r\nengorging\r\nengraft\r\nengrail\r\nengrailed\r\nengrain\r\nengrave\r\nengraved\r\nengraver\r\nengravers\r\nengraves\r\nengraving\r\nengravings\r\nengross\r\nengrossed\r\nengrossing\r\nengrossingly\r\nengrossment\r\nengulf\r\nengulfed\r\nengulfing\r\nengulfment\r\nengulfs\r\nenhance\r\nenhanced\r\nenhancement\r\nenhancements\r\nenhancement's\r\nenhances\r\nenhancing\r\nenharmonic\r\nenharmonically\r\nenigma\r\nenigmatic\r\nenigmatical\r\nenigmatically\r\nenjambment\r\nenjoin\r\nenjoinder\r\nenjoined\r\nenjoining\r\nenjoins\r\nenjoy\r\nenjoyable\r\nenjoyableness\r\nenjoyably\r\nenjoyed\r\nenjoying\r\nenjoyment\r\nenjoys\r\nenkindle\r\nenlace\r\nenlacement\r\nenlarge\r\nenlargeable\r\nenlarged\r\nenlargement\r\nenlargements\r\nenlargement's\r\nenlarger\r\nenlargers\r\nenlarges\r\nenlarging\r\nenlighten\r\nenlightened\r\nenlightening\r\nenlightenment\r\nenlightens\r\nenlist\r\nenlisted\r\nenlistee\r\nenlister\r\nenlisting\r\nenlistment\r\nenlistments\r\nenlists\r\nenliven\r\nenlivened\r\nenlivening\r\nenlivens\r\nenmesh\r\nenmeshed\r\nenmeshment\r\nenmities\r\nenmity\r\nennead\r\nenneagon\r\nennoble\r\nennobled\r\nennoblement\r\nennobler\r\nennobles\r\nennobling\r\nennui\r\nenormities\r\nenormity\r\nenormous\r\nenormously\r\nenormousness\r\nenosis\r\nenough\r\nenounce\r\nenplane\r\nenquire\r\nenquired\r\nenquirer\r\nenquirers\r\nenquires\r\nenquiries\r\nenquiring\r\nenquiry\r\nenrage\r\nenraged\r\nenrages\r\nenraging\r\nenrapt\r\nenrapture\r\nenraptured\r\nenraptures\r\nenrapturing\r\nenrich\r\nenriched\r\nenriches\r\nenriching\r\nenrichment\r\nenrobe\r\nenrol\r\nenrolled\r\nenrolling\r\nenrolment\r\nenrolments\r\nenrolment's\r\nenrols\r\nenroot\r\nensample\r\nensanguine\r\nensconce\r\nensconced\r\nensconces\r\nensconcing\r\nensemble\r\nensembles\r\nensemble's\r\nenshrine\r\nenshrined\r\nenshrinement\r\nenshrines\r\nenshroud\r\nensign\r\nensigns\r\nensign's\r\nensilage\r\nensile\r\nensiled\r\nensiling\r\nenslave\r\nenslaved\r\nenslavement\r\nenslaver\r\nenslavers\r\nenslaves\r\nenslaving\r\nensnare\r\nensnared\r\nensnares\r\nensnaring\r\nensnarl\r\nensorcelled\r\nensue\r\nensued\r\nensues\r\nensuing\r\nensure\r\nensured\r\nensures\r\nensuring\r\nenswathe\r\nentablature\r\nentail\r\nentailed\r\nentailer\r\nentailing\r\nentailment\r\nentails\r\nentangle\r\nentangled\r\nentanglement\r\nentangler\r\nentangles\r\nentangling\r\nentelechy\r\nentellus\r\nentendre\r\nentente\r\nenter\r\nenterable\r\nentered\r\nenterer\r\nenteric\r\nentering\r\nenteritis\r\nenterprise\r\nenterpriser\r\nenterprises\r\nenterprising\r\nenterprisingly\r\nenters\r\nentertain\r\nentertained\r\nentertainer\r\nentertainers\r\nentertaining\r\nentertainingly\r\nentertainment\r\nentertainments\r\nentertainment's\r\nentertains\r\nenthalpy\r\nenthral\r\nenthralled\r\nenthralling\r\nenthralment\r\nenthralments\r\nenthralment's\r\nenthrals\r\nenthrone\r\nenthroned\r\nenthronement\r\nenthrones\r\nenthroning\r\nenthronisation\r\nenthronisations\r\nenthronisation's\r\nenthuse\r\nenthused\r\nenthuses\r\nenthusiasm\r\nenthusiasms\r\nenthusiast\r\nenthusiastic\r\nenthusiastically\r\nenthusiasts\r\nenthusiast's\r\nenthusing\r\nenthymeme\r\nentice\r\nenticed\r\nenticement\r\nenticements\r\nenticer\r\nenticers\r\nentices\r\nenticing\r\nentire\r\nentirely\r\nentireties\r\nentirety\r\nentities\r\nentitle\r\nentitled\r\nentitlement\r\nentitlements\r\nentitles\r\nentitling\r\nentity\r\nentity's\r\nentomb\r\nentombed\r\nentombment\r\nentomic\r\nentomological\r\nentomologise\r\nentomologised\r\nentomologises\r\nentomologising\r\nentomologist\r\nentomology\r\nentomostracan\r\nentophyte\r\nentopic\r\nentourage\r\nentourages\r\nentrails\r\nentrain\r\nentrained\r\nentraining\r\nentrainment\r\nentrains\r\nentrance\r\nentranced\r\nentrancement\r\nentrances\r\nentranceway\r\nentrancing\r\nentrant\r\nentrants\r\nentrap\r\nentrapment\r\nentrapments\r\nentrapped\r\nentraps\r\nentreat\r\nentreated\r\nentreaties\r\nentreating\r\nentreatingly\r\nentreats\r\nentreaty\r\nentrechat\r\nentree\r\nentrees\r\nentremets\r\nentrench\r\nentrenched\r\nentrenches\r\nentrenching\r\nentrenchment\r\nentrenchments\r\nentrepreneur\r\nentrepreneurial\r\nentrepreneurs\r\nentrepreneur's\r\nentrepreneurship\r\nentresol\r\nentries\r\nentropies\r\nentropy\r\nentrust\r\nentrusted\r\nentrusting\r\nentrustment\r\nentrusts\r\nentry\r\nentry's\r\nentryway\r\nentwine\r\nentwined\r\nentwinement\r\nentwines\r\nentwining\r\nentwist\r\nenucleate\r\nenucleated\r\nenucleating\r\nenumerable\r\nenumerate\r\nenumerated\r\nenumerates\r\nenumerating\r\nenumeration\r\nenumerations\r\nenumerative\r\nenumerator\r\nenumerators\r\nenumerator's\r\nenunciable\r\nenunciate\r\nenunciated\r\nenunciates\r\nenunciating\r\nenunciation\r\nenunciator\r\nenunciators\r\nenuresis\r\nenvelop\r\nenvelope\r\nenveloped\r\nenveloper\r\nenvelopes\r\nenveloping\r\nenvelopment\r\nenvelopments\r\nenvelops\r\nenvenom\r\nenvenomed\r\nenvenoming\r\nenvenoms\r\nenviable\r\nenviableness\r\nenviably\r\nenvied\r\nenvier\r\nenvies\r\nenvious\r\nenviously\r\nenviousness\r\nenviron\r\nenvironed\r\nenvironing\r\nenvironment\r\nenvironmental\r\nenvironmentalism\r\nenvironmentalist\r\nenvironmentalists\r\nenvironmentally\r\nenvironments\r\nenvironment's\r\nenvirons\r\nenvisage\r\nenvisaged\r\nenvisages\r\nenvisaging\r\nenvision\r\nenvisioned\r\nenvisioning\r\nenvisions\r\nenvoi\r\nenvois\r\nenvoy\r\nenvoys\r\nenvoy's\r\nenvy\r\nenvying\r\nenvyingly\r\nenwind\r\nenwinding\r\nenwomb\r\nenwrap\r\nenwreathe\r\nenzootic\r\nenzymatic\r\nenzyme\r\nenzymes\r\nenzymologist\r\neohippus\r\neolith\r\neon\r\neons\r\neon's\r\neosin\r\nepact\r\neparch\r\neparchy\r\nepaulet\r\nepaulets\r\nepaulet's\r\nepaulette\r\nepencephalon\r\nepenthesis\r\nepergne\r\nepexegesis\r\nephemeral\r\nephemerally\r\nephemerals\r\nephemeris\r\nephemeron\r\nephod\r\nepic\r\nepical\r\nepically\r\nepicedium\r\nepicene\r\nepicentre\r\nepicentres\r\nepicentre's\r\nepiclesis\r\nepics\r\nepic's\r\nepicure\r\nepicurean\r\nepicycle\r\nepicycles\r\nepicyclical\r\nepicyclically\r\nepideictic\r\nepidemic\r\nepidemical\r\nepidemically\r\nepidemics\r\nepidemic's\r\nepidemiologic\r\nepidemiological\r\nepidemiologically\r\nepidemiologist\r\nepidemiology\r\nepidermal\r\nepidermis\r\nepidiascope\r\nepidural\r\nepifocal\r\nepigenetic\r\nepigenous\r\nepigeous\r\nepiglottis\r\nepigone\r\nepigram\r\nepigrammatic\r\nepigrammatically\r\nepigrammatise\r\nepigrammatised\r\nepigrammatises\r\nepigrammatising\r\nepigrammatism\r\nepigrammatist\r\nepigrams\r\nepigraph\r\nepigrapher\r\nepigraphic\r\nepigraphically\r\nepigraphist\r\nepigraphy\r\nepilate\r\nepilepsy\r\nepileptic\r\nepileptically\r\nepileptics\r\nepilogue\r\nepilogues\r\nepimorphosis\r\nepinephrine\r\nepiphany\r\nepiphenomena\r\nepiphenomenal\r\nepiphenomenalism\r\nepiphenomenally\r\nepiphenomenon\r\nepiphysis\r\nepiphyte\r\nepiphytic\r\nepiscopacy\r\nepiscopate\r\nepiscope\r\nepisiotomy\r\nepisode\r\nepisodes\r\nepisode's\r\nepisodic\r\nepisodically\r\nepistemic\r\nepistemological\r\nepistemologically\r\nepistemologist\r\nepistemology\r\nepistle\r\nepistler\r\nepistles\r\nepistle's\r\nepistolary\r\nepitaph\r\nepitaphic\r\nepitaphs\r\nepithalamium\r\nepithelial\r\nepithelium\r\nepithet\r\nepithetic\r\nepithetical\r\nepithets\r\nepithet's\r\nepitome\r\nepitomes\r\nepitomise\r\nepitomised\r\nepitomiser\r\nepitomisers\r\nepitomises\r\nepitomising\r\nepizootic\r\nepoch\r\nepochal\r\nepochs\r\nepode\r\nepodes\r\neponym\r\neponymous\r\neponymy\r\nepos\r\nepoxy\r\nepsilon\r\nepsilons\r\nequability\r\nequable\r\nequableness\r\nequably\r\nequal\r\nequalisation\r\nequalisations\r\nequalisation's\r\nequalise\r\nequalised\r\nequaliser\r\nequalisers\r\nequaliser's\r\nequalises\r\nequalising\r\nequalitarian\r\nequalitarianism\r\nequalities\r\nequality\r\nequality's\r\nequalled\r\nequalling\r\nequally\r\nequals\r\nequanimities\r\nequanimity\r\nequate\r\nequated\r\nequates\r\nequating\r\nequation\r\nequations\r\nequator\r\nequatorial\r\nequators\r\nequator's\r\nequerries\r\nequerry\r\nequestrian\r\nequestrians\r\nequestrienne\r\nequiangular\r\nequidistant\r\nequidistantly\r\nequilateral\r\nequilaterals\r\nequilibrant\r\nequilibrate\r\nequilibrated\r\nequilibrates\r\nequilibrating\r\nequilibration\r\nequilibrator\r\nequilibrators\r\nequilibrist\r\nequilibristic\r\nequilibrium\r\nequilibriums\r\nequimolecular\r\nequine\r\nequines\r\nequinoctial\r\nequinox\r\nequip\r\nequipage\r\nequipment\r\nequipments\r\nequipoise\r\nequipollence\r\nequipollent\r\nequiponderant\r\nequiponderate\r\nequipotent\r\nequipped\r\nequipping\r\nequips\r\nequitability\r\nequitable\r\nequitableness\r\nequitably\r\nequitant\r\nequitation\r\nequities\r\nequity\r\nequivalence\r\nequivalences\r\nequivalency\r\nequivalent\r\nequivalently\r\nequivalents\r\nequivocal\r\nequivocally\r\nequivocalness\r\nequivocate\r\nequivocated\r\nequivocates\r\nequivocating\r\nequivocation\r\nequivocator\r\nequivoque\r\nera\r\neradiate\r\neradicable\r\neradicate\r\neradicated\r\neradicates\r\neradicating\r\neradication\r\neradicative\r\neradicator\r\neradicators\r\neras\r\nera's\r\nerasable\r\nerase\r\nerased\r\neraser\r\nerasers\r\nerases\r\nerasing\r\nerasure\r\nerbium\r\nere\r\nerect\r\nerectable\r\nerected\r\nerectile\r\nerectility\r\nerecting\r\nerection\r\nerections\r\nerection's\r\nerectly\r\nerectness\r\nerector\r\nerectors\r\nerector's\r\nerects\r\nerelong\r\neremite\r\nerenow\r\nerewhile\r\nerg\r\nergative\r\nergo\r\nergonomic\r\nergonomics\r\nergot\r\nergotamine\r\nericaceous\r\nerinaceous\r\neristic\r\nermine\r\nermined\r\nermines\r\nermine's\r\nerne\r\nerode\r\neroded\r\nerodes\r\neroding\r\nerogenous\r\nerosion\r\nerosive\r\nerotic\r\nerotica\r\nerotically\r\neroticisation\r\neroticise\r\neroticised\r\neroticises\r\neroticising\r\neroticism\r\neroticist\r\nerotology\r\nerr\r\nerrand\r\nerrands\r\nerrant\r\nerrantly\r\nerrantry\r\nerrata\r\nerratic\r\nerratically\r\nerratum\r\nerred\r\nerring\r\nerringly\r\nerroneous\r\nerroneously\r\nerroneousness\r\nerror\r\nerrorless\r\nerrors\r\nerror's\r\nerrs\r\nersatz\r\nerstwhile\r\neruct\r\nerudite\r\neruditely\r\nerudition\r\nerumpent\r\nerupt\r\nerupted\r\neruptible\r\nerupting\r\neruption\r\neruptions\r\neruptive\r\nerupts\r\neryngo\r\nerysipelas\r\nerythrism\r\nerythroblast\r\nerythrocyte\r\nerythromycin\r\nescadrille\r\nescalade\r\nescalader\r\nescalades\r\nescalate\r\nescalated\r\nescalates\r\nescalating\r\nescalation\r\nescalator\r\nescalators\r\nescalatory\r\nescallop\r\nescallops\r\nescalope\r\nescapable\r\nescapade\r\nescapades\r\nescapade's\r\nescape\r\nescaped\r\nescapee\r\nescapees\r\nescapee's\r\nescapement\r\nescapements\r\nescaper\r\nescapes\r\nescaping\r\nescapism\r\nescapist\r\nescapologist\r\nescapology\r\nescargot\r\nescarp\r\nescarpment\r\nescarpments\r\nescarpment's\r\neschatology\r\nescheat\r\neschew\r\neschewal\r\neschewed\r\neschewing\r\neschews\r\nescort\r\nescorted\r\nescorting\r\nescorts\r\nescritoire\r\nescrow\r\nescudo\r\nesculent\r\nescutcheon\r\nescutcheons\r\nesker\r\nesoteric\r\nesoterically\r\nesotericism\r\nespadrille\r\nespalier\r\nesparto\r\nespecial\r\nespecially\r\nespial\r\nespied\r\nespies\r\nespionage\r\nesplanade\r\nespousal\r\nespousals\r\nespouse\r\nespoused\r\nespouser\r\nespouses\r\nespousing\r\nespresso\r\nespressos\r\nesprit\r\nespy\r\nespying\r\nesquire\r\nesquires\r\nessay\r\nessayed\r\nessayer\r\nessayist\r\nessayistic\r\nessayists\r\nessays\r\nessence\r\nessences\r\nessence's\r\nessential\r\nessentialism\r\nessentialist\r\nessentiality\r\nessentially\r\nessentialness\r\nessentials\r\nessonite\r\nestablish\r\nestablished\r\nestablisher\r\nestablishes\r\nestablishing\r\nestablishment\r\nestablishmentarian\r\nestablishmentarianism\r\nestablishments\r\nestablishment's\r\nestancia\r\nestate\r\nestates\r\nestate's\r\nesteem\r\nesteemed\r\nesteeming\r\nesteems\r\nester\r\nesterase\r\nesters\r\nestimable\r\nestimableness\r\nestimate\r\nestimated\r\nestimates\r\nestimating\r\nestimation\r\nestimations\r\nestimative\r\nestimator\r\nestimators\r\nestipulate\r\nestragon\r\nestrange\r\nestranged\r\nestrangement\r\nestranger\r\nestranges\r\nestranging\r\nestrogenic\r\nestrogenically\r\nestrum\r\nestuarial\r\nestuaries\r\nestuarine\r\nestuary\r\nesurience\r\nesuriency\r\nesurient\r\nesuriently\r\net\r\netalon\r\netas\r\netc\r\netcetera\r\netceteras\r\netch\r\netched\r\netcher\r\netches\r\netching\r\neternal\r\neternalise\r\neternalised\r\neternalises\r\neternalising\r\neternally\r\neternalness\r\neterne\r\neternise\r\neternised\r\neternises\r\neternising\r\neternities\r\neternity\r\netesian\r\nethane\r\nethanol\r\nether\r\nethereal\r\netherealise\r\netherealised\r\netherealises\r\netherealising\r\nethereality\r\nethereally\r\netherealness\r\netherify\r\netherisation\r\netherise\r\netherised\r\netheriser\r\netherisers\r\netherises\r\netherising\r\nethers\r\nether's\r\nethic\r\nethical\r\nethicality\r\nethically\r\nethicalness\r\nethicise\r\nethicised\r\nethicises\r\nethicising\r\nethicist\r\nethicists\r\nethics\r\nethnic\r\nethnical\r\nethnically\r\nethnicities\r\nethnicity\r\nethnocentric\r\nethnocentrically\r\nethnocentricity\r\nethnocentrism\r\nethnogeny\r\nethnographer\r\nethnographers\r\nethnographic\r\nethnographical\r\nethnographically\r\nethnography\r\nethnologic\r\nethnological\r\nethnologically\r\nethnologist\r\nethnology\r\nethnomusicology\r\nethological\r\nethos\r\nethyl\r\nethylene\r\nethylic\r\netiolate\r\netiquette\r\netude\r\netudes\r\netui\r\netymological\r\netymologically\r\netymologies\r\netymologise\r\netymologised\r\netymologises\r\netymologising\r\netymologist\r\netymologists\r\netymology\r\netymon\r\neucalyptol\r\neucalyptus\r\neuchre\r\neudemon\r\neudemonia\r\neudemonics\r\neudiometer\r\neugenic\r\neugenically\r\neugenicist\r\neugenics\r\neuglena\r\neuhemerise\r\neuhemerism\r\neuhemerist\r\neuhemeristic\r\neuhemeristically\r\neukaryote\r\neukaryotic\r\neulachon\r\neulogia\r\neulogies\r\neulogise\r\neulogised\r\neulogiser\r\neulogisers\r\neulogises\r\neulogising\r\neulogist\r\neulogistic\r\neulogistically\r\neulogium\r\neulogy\r\neunuch\r\neunuchs\r\neupatrid\r\neupepsia\r\neuphemise\r\neuphemised\r\neuphemises\r\neuphemising\r\neuphemism\r\neuphemisms\r\neuphemism's\r\neuphemist\r\neuphemistic\r\neuphemistically\r\neuphonic\r\neuphonically\r\neuphonious\r\neuphoniously\r\neuphoniousness\r\neuphonise\r\neuphonised\r\neuphonises\r\neuphonising\r\neuphonium\r\neuphony\r\neuphorbia\r\neuphorbiaceous\r\neuphoria\r\neuphoric\r\neuphorically\r\neuphrasy\r\neuphuism\r\neuphuist\r\neuphuistic\r\neuphuistically\r\neuplastic\r\neupnoea\r\neureka\r\neurhythmic\r\neurhythmics\r\neurhythmy\r\neuripus\r\neuropium\r\neurypterid\r\neusporangiate\r\neutectic\r\neutectoid\r\neuthanasia\r\neuthenics\r\neuxenite\r\neV\r\nevacuate\r\nevacuated\r\nevacuates\r\nevacuating\r\nevacuation\r\nevacuations\r\nevacuative\r\nevacuator\r\nevacuee\r\nevacuees\r\nevadable\r\nevade\r\nevaded\r\nevader\r\nevades\r\nevading\r\nevaluate\r\nevaluated\r\nevaluates\r\nevaluating\r\nevaluation\r\nevaluations\r\nevaluative\r\nevaluator\r\nevaluators\r\nevaluator's\r\nevanesce\r\nevanesced\r\nevanescence\r\nevanescent\r\nevanesces\r\nevanescing\r\nevangel\r\nevangelic\r\nevangelical\r\nevangelicalism\r\nevangelically\r\nevangelisation\r\nevangelisations\r\nevangelisation's\r\nevangelise\r\nevangelised\r\nevangeliser\r\nevangelisers\r\nevangelises\r\nevangelising\r\nevangelism\r\nevangelist\r\nevangelistic\r\nevangelistically\r\nevangelists\r\nevanish\r\nevanishment\r\nevaporable\r\nevaporate\r\nevaporated\r\nevaporates\r\nevaporating\r\nevaporation\r\nevaporations\r\nevaporative\r\nevaporator\r\nevaporators\r\nevasion\r\nevasions\r\nevasive\r\nevasively\r\nevasiveness\r\neve\r\nevection\r\neven\r\nevened\r\nevener\r\nevenfall\r\nevening\r\nevenings\r\nevening's\r\nevenly\r\nevenness\r\nevens\r\nevensong\r\nevent\r\neventful\r\neventfully\r\neventfulness\r\neventide\r\neventides\r\neventless\r\nevents\r\nevent's\r\neventual\r\neventualities\r\neventuality\r\neventually\r\neventuate\r\neventuated\r\neventuates\r\neventuating\r\never\r\nevergreen\r\neverlasting\r\neverlastingly\r\neverlastingness\r\nevermore\r\neversible\r\nevery\r\neverybody\r\neverybody's\r\neveryday\r\neverydayness\r\neveryman\r\neveryone\r\neveryone's\r\neveryplace\r\neverything\r\neverywhere\r\neves\r\nevict\r\nevicted\r\nevictee\r\nevictees\r\nevicting\r\neviction\r\nevictions\r\neviction's\r\nevictor\r\nevictors\r\nevicts\r\nevidence\r\nevidenced\r\nevidences\r\nevidencing\r\nevident\r\nevidential\r\nevidentially\r\nevidentiary\r\nevidently\r\nevil\r\nevildoer\r\nevildoers\r\nevildoing\r\neviller\r\nevillest\r\nevilly\r\nevilness\r\nevils\r\nevince\r\nevinced\r\nevinces\r\nevincible\r\nevincing\r\neviscerate\r\neviscerated\r\neviscerates\r\neviscerating\r\nevisceration\r\nevitable\r\nevocable\r\nevocate\r\nevocation\r\nevocations\r\nevocative\r\nevocatively\r\nevocativeness\r\nevoke\r\nevoked\r\nevokes\r\nevoking\r\nevolutes\r\nevolute's\r\nevolution\r\nevolutionarily\r\nevolutionary\r\nevolutionism\r\nevolutionist\r\nevolutionists\r\nevolutions\r\nevolution's\r\nevolvable\r\nevolve\r\nevolved\r\nevolvement\r\nevolves\r\nevolving\r\nevulsions\r\newe\r\newer\r\newes\r\newe's\r\nex\r\nexacerbate\r\nexacerbated\r\nexacerbates\r\nexacerbating\r\nexacerbation\r\nexacerbations\r\nexact\r\nexacta\r\nexactable\r\nexacted\r\nexacter\r\nexacting\r\nexactingly\r\nexactingness\r\nexaction\r\nexactions\r\nexaction's\r\nexactitude\r\nexactly\r\nexactness\r\nexactor\r\nexactors\r\nexacts\r\nexaggerate\r\nexaggerated\r\nexaggeratedly\r\nexaggerates\r\nexaggerating\r\nexaggeration\r\nexaggerations\r\nexaggerative\r\nexaggerator\r\nexaggerators\r\nexalt\r\nexaltation\r\nexaltations\r\nexalted\r\nexaltedly\r\nexalter\r\nexalters\r\nexalting\r\nexalts\r\nexam\r\nexaminable\r\nexaminant\r\nexaminants\r\nexamination\r\nexaminational\r\nexaminations\r\nexamination's\r\nexamine\r\nexamined\r\nexaminee\r\nexaminees\r\nexaminer\r\nexaminers\r\nexamines\r\nexamining\r\nexample\r\nexampled\r\nexamples\r\nexample's\r\nexampling\r\nexams\r\nexam's\r\nexanimate\r\nexanthema\r\nexarchate\r\nexasperate\r\nexasperated\r\nexasperatedly\r\nexasperates\r\nexasperating\r\nexasperatingly\r\nexasperation\r\nexasperations\r\nexcaudate\r\nexcavate\r\nexcavated\r\nexcavates\r\nexcavating\r\nexcavation\r\nexcavations\r\nexcavator\r\nexcavators\r\nexceed\r\nexceeded\r\nexceeder\r\nexceeding\r\nexceedingly\r\nexceeds\r\nexcel\r\nexcelled\r\nexcellence\r\nexcellences\r\nexcellent\r\nexcellently\r\nexcelling\r\nexcels\r\nexcelsior\r\nexcept\r\nexcepted\r\nexcepting\r\nexception\r\nexceptionable\r\nexceptionably\r\nexceptional\r\nexceptionality\r\nexceptionally\r\nexceptionalness\r\nexceptions\r\nexception's\r\nexceptive\r\nexcepts\r\nexcerpt\r\nexcerpted\r\nexcerpter\r\nexcerption\r\nexcerptions\r\nexcerptor\r\nexcerptors\r\nexcerpts\r\nexcess\r\nexcesses\r\nexcessive\r\nexcessively\r\nexcessiveness\r\nexchange\r\nexchangeability\r\nexchangeable\r\nexchanged\r\nexchanger\r\nexchangers\r\nexchanges\r\nexchanging\r\nexchequer\r\nexchequers\r\nexchequer's\r\nexcide\r\nexcided\r\nexcides\r\nexciding\r\nexcisable\r\nexcise\r\nexcised\r\nexcises\r\nexcising\r\nexcision\r\nexcisions\r\nexcitability\r\nexcitable\r\nexcitableness\r\nexcitant\r\nexcitants\r\nexcitation\r\nexcitations\r\nexcitation's\r\nexcitatory\r\nexcite\r\nexcited\r\nexcitedly\r\nexcitement\r\nexciter\r\nexcites\r\nexciting\r\nexcitingly\r\nexclaim\r\nexclaimed\r\nexclaimer\r\nexclaimers\r\nexclaiming\r\nexclaims\r\nexclamation\r\nexclamations\r\nexclamation's\r\nexclamatory\r\nexclave\r\nexclaves\r\nexcludability\r\nexcludable\r\nexclude\r\nexcluded\r\nexcluder\r\nexcludes\r\nexcludible\r\nexcluding\r\nexclusion\r\nexclusionary\r\nexclusionist\r\nexclusionists\r\nexclusions\r\nexclusive\r\nexclusively\r\nexclusiveness\r\nexclusivity\r\nexcogitate\r\nexcogitation\r\nexcogitative\r\nexcommunicate\r\nexcommunicated\r\nexcommunicates\r\nexcommunicating\r\nexcommunication\r\nexcommunicative\r\nexcommunicator\r\nexcoriate\r\nexcoriated\r\nexcoriates\r\nexcoriating\r\nexcoriation\r\nexcoriations\r\nexcrement\r\nexcremental\r\nexcrements\r\nexcrement's\r\nexcrescence\r\nexcrescences\r\nexcrescency\r\nexcrescent\r\nexcreta\r\nexcretal\r\nexcrete\r\nexcreted\r\nexcretes\r\nexcreting\r\nexcretion\r\nexcretions\r\nexcretory\r\nexcruciate\r\nexcruciated\r\nexcruciates\r\nexcruciating\r\nexcruciatingly\r\nexcruciation\r\nexculpate\r\nexculpated\r\nexculpates\r\nexculpating\r\nexculpation\r\nexculpations\r\nexculpatory\r\nexcursion\r\nexcursionist\r\nexcursionists\r\nexcursions\r\nexcursion's\r\nexcursive\r\nexcursively\r\nexcursiveness\r\nexcursus\r\nexcursuses\r\nexcusable\r\nexcusableness\r\nexcusably\r\nexcusatory\r\nexcuse\r\nexcused\r\nexcuser\r\nexcuses\r\nexcusing\r\nexec\r\nexecrable\r\nexecrableness\r\nexecrably\r\nexecrate\r\nexecrated\r\nexecrates\r\nexecrating\r\nexecration\r\nexecrative\r\nexecrator\r\nexecrators\r\nexecutable\r\nexecutables\r\nexecutable's\r\nexecute\r\nexecuted\r\nexecuter\r\nexecuters\r\nexecutes\r\nexecuting\r\nexecution\r\nexecutioner\r\nexecutions\r\nexecutive\r\nexecutives\r\nexecutive's\r\nexecutor\r\nexecutorial\r\nexecutors\r\nexecutor's\r\nexecutrices\r\nexecutrix\r\nexecutrixes\r\nexedra\r\nexegesis\r\nexegete\r\nexegetic\r\nexegetical\r\nexegetically\r\nexegetics\r\nexemplar\r\nexemplarily\r\nexemplariness\r\nexemplarity\r\nexemplars\r\nexemplary\r\nexemplification\r\nexemplified\r\nexemplifier\r\nexemplifiers\r\nexemplifies\r\nexemplify\r\nexemplifying\r\nexemplum\r\nexempt\r\nexempted\r\nexempting\r\nexemption\r\nexemptions\r\nexempts\r\nexenterate\r\nexenterated\r\nexenterates\r\nexenterating\r\nexequatur\r\nexercisable\r\nexercise\r\nexercised\r\nexerciser\r\nexercisers\r\nexercises\r\nexercising\r\nexercitation\r\nexergue\r\nexert\r\nexerted\r\nexerting\r\nexertion\r\nexertions\r\nexertion's\r\nexerts\r\nexeunt\r\nexfoliate\r\nexfoliated\r\nexfoliates\r\nexfoliating\r\nexfoliation\r\nexhalant\r\nexhalants\r\nexhalation\r\nexhalations\r\nexhale\r\nexhaled\r\nexhalent\r\nexhalents\r\nexhales\r\nexhaling\r\nexhaust\r\nexhausted\r\nexhaustedly\r\nexhauster\r\nexhaustibility\r\nexhaustible\r\nexhausting\r\nexhaustingly\r\nexhaustion\r\nexhaustive\r\nexhaustively\r\nexhaustiveness\r\nexhaustless\r\nexhaustlessly\r\nexhaustlessness\r\nexhausts\r\nexhibit\r\nexhibited\r\nexhibiting\r\nexhibition\r\nexhibitioner\r\nexhibitionism\r\nexhibitionist\r\nexhibitionistic\r\nexhibitions\r\nexhibition's\r\nexhibitive\r\nexhibitor\r\nexhibitors\r\nexhibitor's\r\nexhibitory\r\nexhibits\r\nexhilarant\r\nexhilarate\r\nexhilarated\r\nexhilarates\r\nexhilarating\r\nexhilaratingly\r\nexhilaration\r\nexhilarative\r\nexhort\r\nexhortation\r\nexhortations\r\nexhortation's\r\nexhortative\r\nexhortatory\r\nexhorted\r\nexhorter\r\nexhorting\r\nexhorts\r\nexhumation\r\nexhumations\r\nexhume\r\nexhumed\r\nexhumer\r\nexhumes\r\nexhuming\r\nexigencies\r\nexigency\r\nexigent\r\nexigently\r\nexiguity\r\nexiguous\r\nexiguously\r\nexiguousness\r\nexile\r\nexiled\r\nexiles\r\nexilic\r\nexiling\r\nexist\r\nexisted\r\nexistence\r\nexistences\r\nexistent\r\nexistential\r\nexistentialism\r\nexistentialist\r\nexistentialistic\r\nexistentialistically\r\nexistentialists\r\nexistentialist's\r\nexistentially\r\nexisting\r\nexists\r\nexit\r\nexited\r\nexiting\r\nexits\r\nexobiological\r\nexobiology\r\nexocentric\r\nexocrine\r\nexodus\r\nexogamic\r\nexogamous\r\nexogamy\r\nexogenous\r\nexogenously\r\nexonerate\r\nexonerated\r\nexonerates\r\nexonerating\r\nexoneration\r\nexonerative\r\nexorable\r\nexorbitance\r\nexorbitances\r\nexorbitant\r\nexorbitantly\r\nexorcise\r\nexorcised\r\nexorcises\r\nexorcising\r\nexorcism\r\nexorcist\r\nexordial\r\nexordium\r\nexoskeleton\r\nexoskeletons\r\nexosphere\r\nexospheric\r\nexoteric\r\nexothermal\r\nexothermic\r\nexothermically\r\nexotic\r\nexotica\r\nexotically\r\nexoticism\r\nexoticness\r\nexpand\r\nexpandable\r\nexpanded\r\nexpander\r\nexpanders\r\nexpander's\r\nexpanding\r\nexpands\r\nexpanse\r\nexpanses\r\nexpansibility\r\nexpansible\r\nexpansion\r\nexpansionary\r\nexpansionism\r\nexpansionist\r\nexpansionistic\r\nexpansions\r\nexpansive\r\nexpansively\r\nexpansiveness\r\nexpatiate\r\nexpatiated\r\nexpatiates\r\nexpatiating\r\nexpatiation\r\nexpatriate\r\nexpatriated\r\nexpatriates\r\nexpatriating\r\nexpatriation\r\nexpect\r\nexpectable\r\nexpectably\r\nexpectance\r\nexpectancies\r\nexpectancy\r\nexpectant\r\nexpectantly\r\nexpectation\r\nexpectations\r\nexpectation's\r\nexpectative\r\nexpected\r\nexpectedly\r\nexpectedness\r\nexpecting\r\nexpectorant\r\nexpectorate\r\nexpectoration\r\nexpects\r\nexpedience\r\nexpediency\r\nexpedient\r\nexpediential\r\nexpediently\r\nexpedite\r\nexpedited\r\nexpediter\r\nexpedites\r\nexpediting\r\nexpedition\r\nexpeditionary\r\nexpeditions\r\nexpedition's\r\nexpeditious\r\nexpeditiously\r\nexpeditiousness\r\nexpeditor\r\nexpel\r\nexpellable\r\nexpellant\r\nexpelled\r\nexpellee\r\nexpeller\r\nexpellers\r\nexpelling\r\nexpels\r\nexpend\r\nexpendability\r\nexpendable\r\nexpended\r\nexpender\r\nexpending\r\nexpenditure\r\nexpenditures\r\nexpenditure's\r\nexpends\r\nexpense\r\nexpensed\r\nexpenses\r\nexpensing\r\nexpensive\r\nexpensively\r\nexpensiveness\r\nexperience\r\nexperienced\r\nexperiences\r\nexperiencing\r\nexperiential\r\nexperientialism\r\nexperientially\r\nexperiment\r\nexperimental\r\nexperimentalism\r\nexperimentalist\r\nexperimentalists\r\nexperimentalist's\r\nexperimentally\r\nexperimentation\r\nexperimentations\r\nexperimentation's\r\nexperimented\r\nexperimenter\r\nexperimenters\r\nexperimenting\r\nexperiments\r\nexpert\r\nexpertise\r\nexpertly\r\nexpertness\r\nexperts\r\nexpiable\r\nexpiate\r\nexpiated\r\nexpiates\r\nexpiating\r\nexpiation\r\nexpiator\r\nexpiatory\r\nexpiration\r\nexpirations\r\nexpiration's\r\nexpiratory\r\nexpire\r\nexpired\r\nexpires\r\nexpiring\r\nexpiry\r\nexplain\r\nexplainable\r\nexplained\r\nexplainer\r\nexplainers\r\nexplaining\r\nexplains\r\nexplanation\r\nexplanations\r\nexplanation's\r\nexplanative\r\nexplanatively\r\nexplanatorily\r\nexplanatory\r\nexplants\r\nexpletive\r\nexpletives\r\nexpletory\r\nexplicable\r\nexplicably\r\nexplicate\r\nexplicated\r\nexplicates\r\nexplicating\r\nexplication\r\nexplicative\r\nexplicatively\r\nexplicator\r\nexplicatory\r\nexplicit\r\nexplicitly\r\nexplicitness\r\nexplode\r\nexploded\r\nexploder\r\nexplodes\r\nexploding\r\nexploit\r\nexploitable\r\nexploitation\r\nexploitations\r\nexploitation's\r\nexploitative\r\nexploitatively\r\nexploited\r\nexploiter\r\nexploiters\r\nexploiting\r\nexploitive\r\nexploits\r\nexploration\r\nexplorations\r\nexploration's\r\nexplorative\r\nexploratory\r\nexplore\r\nexplored\r\nexplorer\r\nexplorers\r\nexplores\r\nexploring\r\nexplosion\r\nexplosions\r\nexplosion's\r\nexplosive\r\nexplosively\r\nexplosiveness\r\nexplosives\r\nexpo\r\nexponent\r\nexponential\r\nexponentially\r\nexponentials\r\nexponentiation\r\nexponentiations\r\nexponentiation's\r\nexponents\r\nexponent's\r\nexponible\r\nexport\r\nexportability\r\nexportable\r\nexportation\r\nexported\r\nexporter\r\nexporters\r\nexporting\r\nexports\r\nexpos\r\nexpose\r\nexposed\r\nexposes\r\nexposing\r\nexposit\r\nexposited\r\nexposition\r\nexpositional\r\nexpositions\r\nexposition's\r\nexpositor\r\nexpository\r\nexpostulate\r\nexpostulation\r\nexpostulatory\r\nexposure\r\nexposures\r\nexposure's\r\nexpound\r\nexpounded\r\nexpounder\r\nexpounding\r\nexpounds\r\nexpress\r\nexpressage\r\nexpressed\r\nexpresser\r\nexpresses\r\nexpressible\r\nexpressing\r\nexpression\r\nexpressional\r\nexpressionism\r\nexpressionist\r\nexpressionistic\r\nexpressionistically\r\nexpressionists\r\nexpressionless\r\nexpressionlessly\r\nexpressions\r\nexpression's\r\nexpressive\r\nexpressively\r\nexpressiveness\r\nexpressivity\r\nexpressly\r\nexpressway\r\nexpressways\r\nexpropriate\r\nexpropriated\r\nexpropriates\r\nexpropriating\r\nexpropriation\r\nexpropriations\r\nexpropriator\r\nexpropriators\r\nexpulsion\r\nexpulsive\r\nexpunction\r\nexpunge\r\nexpunged\r\nexpunger\r\nexpunges\r\nexpunging\r\nexpurgate\r\nexpurgated\r\nexpurgates\r\nexpurgating\r\nexpurgation\r\nexpurgator\r\nexpurgatorial\r\nexpurgatory\r\nexquisite\r\nexquisitely\r\nexquisiteness\r\nexscind\r\nexsiccate\r\nexsiccation\r\next\r\nextant\r\nextemporal\r\nextemporaneity\r\nextemporaneous\r\nextemporaneously\r\nextemporaneousness\r\nextemporarily\r\nextemporary\r\nextempore\r\nextemporisation\r\nextemporisations\r\nextemporisation's\r\nextemporise\r\nextemporised\r\nextemporiser\r\nextemporisers\r\nextemporises\r\nextemporising\r\nextend\r\nextendable\r\nextended\r\nextendedly\r\nextendedness\r\nextender\r\nextendibility\r\nextendible\r\nextending\r\nextends\r\nextensibility\r\nextensible\r\nextensile\r\nextension\r\nextensional\r\nextensionality\r\nextensionally\r\nextensions\r\nextension's\r\nextensity\r\nextensive\r\nextensively\r\nextensiveness\r\nextensometer\r\nextensometers\r\nextensometer's\r\nextensor\r\nextent\r\nextents\r\nextent's\r\nextenuate\r\nextenuated\r\nextenuating\r\nextenuation\r\nextenuator\r\nextenuatory\r\nexterior\r\nexteriorisation\r\nexteriorisations\r\nexteriorisation's\r\nexteriorise\r\nexteriorised\r\nexteriorises\r\nexteriorising\r\nexteriority\r\nexteriorly\r\nexteriors\r\nexterior's\r\nexterminate\r\nexterminated\r\nexterminates\r\nexterminating\r\nextermination\r\nexterminations\r\nexterminator\r\nexterminators\r\nexterminator's\r\nexterminatory\r\nextern\r\nexternal\r\nexternalisation\r\nexternalisations\r\nexternalisation's\r\nexternalise\r\nexternalised\r\nexternalises\r\nexternalising\r\nexternalism\r\nexternalities\r\nexternality\r\nexternally\r\nexternals\r\nexternship\r\nexterritorial\r\nextinct\r\nextinction\r\nextinctive\r\nextinguish\r\nextinguishable\r\nextinguished\r\nextinguisher\r\nextinguishers\r\nextinguishes\r\nextinguishing\r\nextinguishment\r\nextirpate\r\nextirpated\r\nextirpating\r\nextirpation\r\nextirpative\r\nextol\r\nextoll\r\nextolled\r\nextoller\r\nextolling\r\nextolment\r\nextols\r\nextort\r\nextorted\r\nextorter\r\nextorting\r\nextortion\r\nextortionate\r\nextortionately\r\nextortionist\r\nextortionists\r\nextortionist's\r\nextortive\r\nextorts\r\nextra\r\nextracanonical\r\nextracorporeal\r\nextract\r\nextractability\r\nextractable\r\nextracted\r\nextractible\r\nextracting\r\nextraction\r\nextractions\r\nextraction's\r\nextractive\r\nextractor\r\nextractors\r\nextractor's\r\nextracts\r\nextracurricular\r\nextraditable\r\nextradite\r\nextradites\r\nextradition\r\nextrados\r\nextradoses\r\nextragalactic\r\nextrajudicial\r\nextralegal\r\nextramarital\r\nextramundane\r\nextramural\r\nextramurally\r\nextraneous\r\nextraneously\r\nextraneousness\r\nextraordinarily\r\nextraordinariness\r\nextraordinary\r\nextrapolate\r\nextrapolated\r\nextrapolates\r\nextrapolating\r\nextrapolation\r\nextrapolations\r\nextrapolative\r\nextrapolator\r\nextras\r\nextrasensory\r\nextraterrestrial\r\nextraterritorial\r\nextraterritoriality\r\nextravagance\r\nextravagancy\r\nextravagant\r\nextravagantly\r\nextravaganza\r\nextravaganzas\r\nextravagate\r\nextravehicular\r\nextraversion\r\nextravert\r\nextraverted\r\nextreme\r\nextremely\r\nextremeness\r\nextremer\r\nextremes\r\nextremis\r\nextremism\r\nextremist\r\nextremists\r\nextremist's\r\nextremities\r\nextremity\r\nextremity's\r\nextricable\r\nextricate\r\nextricated\r\nextricates\r\nextricating\r\nextrication\r\nextrinsic\r\nextrinsically\r\nextrorsely\r\nextroversion\r\nextrovert\r\nextroverted\r\nextroverts\r\nextrude\r\nextruded\r\nextruder\r\nextrudes\r\nextruding\r\nextrusion\r\nextrusive\r\nexuberance\r\nexuberant\r\nexuberantly\r\nexuberate\r\nexudation\r\nexude\r\nexuded\r\nexudes\r\nexuding\r\nexult\r\nexultance\r\nexultancy\r\nexultant\r\nexultantly\r\nexultation\r\nexulted\r\nexulting\r\nexultingly\r\nexults\r\nexurban\r\nexurbanite\r\nexurbia\r\nexuviate\r\neye\r\neyeball\r\neyeballs\r\neyebath\r\neyebolt\r\neyebright\r\neyebrow\r\neyebrows\r\neyebrow's\r\neyecup\r\neyed\r\neyedropper\r\neyeful\r\neyeglass\r\neyeglasses\r\neyehole\r\neyehook\r\neyeing\r\neyelash\r\neyelashes\r\neyeless\r\neyelet\r\neyeleteer\r\neyelets\r\neyelid\r\neyelids\r\neyelid's\r\neyelike\r\neyeliner\r\neyepiece\r\neyepieces\r\neyepiece's\r\neyes\r\neyeshade\r\neyeshot\r\neyesight\r\neyesore\r\neyesores\r\neyesore's\r\neyespot\r\neyestalk\r\neyestrain\r\neyetie\r\neyewash\r\neyewink\r\neyewitness\r\neyewitnesses\r\neyewitness's\r\neying\r\neyrie\r\neyrir\r\nf's \r\nfab\r\nfable\r\nfabled\r\nfabler\r\nfables\r\nfabliau\r\nfabling\r\nfabric\r\nfabricant\r\nfabricate\r\nfabricated\r\nfabricates\r\nfabricating\r\nfabrication\r\nfabrications\r\nfabricator\r\nfabricators\r\nfabrics\r\nfabric's\r\nfabulist\r\nfabulous\r\nfabulously\r\nfabulousness\r\nfacade\r\nfacades\r\nface\r\nfaced\r\nfacedown\r\nfaceless\r\nfacelessness\r\nfaceplate\r\nfacer\r\nfaces\r\nfacet\r\nfaceted\r\nfacetiae\r\nfaceting\r\nfacetious\r\nfacetiously\r\nfacetiousness\r\nfacets\r\nfacetted\r\nfacia\r\nfacial\r\nfacially\r\nfacile\r\nfacilely\r\nfacileness\r\nfacilitate\r\nfacilitated\r\nfacilitates\r\nfacilitating\r\nfacilitation\r\nfacilitative\r\nfacilitator\r\nfacilitators\r\nfacilities\r\nfacility\r\nfacility's\r\nfacing\r\nfacings\r\nfacsimile\r\nfacsimiled\r\nfacsimiles\r\nfacsimile's\r\nfact\r\nfaction\r\nfactional\r\nfactionalism\r\nfactions\r\nfaction's\r\nfactious\r\nfactiously\r\nfactiousness\r\nfactitious\r\nfactitiously\r\nfactitiousness\r\nfactitive\r\nfactitively\r\nfacto\r\nfactor\r\nfactorable\r\nfactored\r\nfactorial\r\nfactories\r\nfactoring\r\nfactorings\r\nfactorisation\r\nfactorisations\r\nfactorisation's\r\nfactorise\r\nfactorised\r\nfactorises\r\nfactorising\r\nfactors\r\nfactory\r\nfactory's\r\nfactotum\r\nfacts\r\nfact's\r\nfactual\r\nfactualism\r\nfactualist\r\nfactualists\r\nfactuality\r\nfactually\r\nfactualness\r\nfacture\r\nfactures\r\nfaculae\r\nfacultative\r\nfaculties\r\nfaculty\r\nfaculty's\r\nfad\r\nfaddish\r\nfaddishness\r\nfaddism\r\nfaddist\r\nfaddists\r\nfade\r\nfaded\r\nfadeless\r\nfadelessly\r\nfadeout\r\nfader\r\nfaders\r\nfades\r\nfading\r\nfads\r\nfaecal\r\nfaeces\r\nfaerie\r\nfag\r\nfagging\r\nfaggot\r\nfaggoting\r\nfaggots\r\nfags\r\nfaience\r\nfail\r\nfailed\r\nfailing\r\nfailingly\r\nfailings\r\nfaille\r\nfails\r\nfailsafe\r\nfailure\r\nfailures\r\nfailure's\r\nfain\r\nfaint\r\nfainted\r\nfainter\r\nfaintest\r\nfainthearted\r\nfaintheartedness\r\nfainting\r\nfaintish\r\nfaintly\r\nfaintness\r\nfaints\r\nfair\r\nfaired\r\nfairer\r\nfairest\r\nfairgoer\r\nfairgoers\r\nfairground\r\nfairgrounds\r\nfairies\r\nfairing\r\nfairish\r\nfairlead\r\nfairleader\r\nfairly\r\nfairness\r\nfairs\r\nfairway\r\nfairways\r\nfairy\r\nfairyland\r\nfairylike\r\nfairy's\r\nfaith\r\nfaithful\r\nfaithfully\r\nfaithfulness\r\nfaithless\r\nfaithlessly\r\nfaithlessness\r\nfaiths\r\nfake\r\nfaked\r\nfaker\r\nfakery\r\nfakes\r\nfaking\r\nfakir\r\nfalafel\r\nfalcate\r\nfalchion\r\nfalcon\r\nfalconer\r\nfalconine\r\nfalconry\r\nfalcons\r\nfalderal\r\nfall\r\nfallacies\r\nfallacious\r\nfallaciously\r\nfallaciousness\r\nfallacy\r\nfallacy's\r\nfallback\r\nfallen\r\nfaller\r\nfallfish\r\nfallibility\r\nfallible\r\nfallibly\r\nfalling\r\nfalloff\r\nfallout\r\nfallouts\r\nfallow\r\nfallowness\r\nfalls\r\nfalse\r\nfalsehood\r\nfalsehoods\r\nfalsehood's\r\nfalsely\r\nfalseness\r\nfalser\r\nfalsest\r\nfalsetto\r\nfalsettos\r\nfalsies\r\nfalsification\r\nfalsified\r\nfalsifier\r\nfalsifies\r\nfalsify\r\nfalsifying\r\nfalsity\r\nfaltboat\r\nfalter\r\nfaltered\r\nfalterer\r\nfaltering\r\nfalteringly\r\nfalters\r\nfame\r\nfamed\r\nfames\r\nfamilial\r\nfamiliar\r\nfamiliarisation\r\nfamiliarisations\r\nfamiliarisation's\r\nfamiliarise\r\nfamiliarised\r\nfamiliarises\r\nfamiliarising\r\nfamiliarities\r\nfamiliarity\r\nfamiliarly\r\nfamiliars\r\nfamilies\r\nfamily\r\nfamily's\r\nfamine\r\nfamines\r\nfamine's\r\nfaming\r\nfamish\r\nfamished\r\nfamishes\r\nfamishing\r\nfamishment\r\nfamous\r\nfamously\r\nfamousness\r\nfan\r\nfanatic\r\nfanatical\r\nfanatically\r\nfanaticise\r\nfanaticised\r\nfanaticises\r\nfanaticising\r\nfanaticism\r\nfanatics\r\nfanatic's\r\nfancied\r\nfancier\r\nfanciers\r\nfancier's\r\nfancies\r\nfanciest\r\nfanciful\r\nfancifully\r\nfancifulness\r\nfancily\r\nfanciness\r\nfancy\r\nfancying\r\nfancywork\r\nfandangle\r\nfandango\r\nfane\r\nfanfare\r\nfanfaronade\r\nfanfold\r\nfang\r\nfanged\r\nfangled\r\nfangs\r\nfang's\r\nfanlight\r\nfanlike\r\nfanned\r\nfanner\r\nfanning\r\nfanon\r\nfans\r\nfan's\r\nfantail\r\nfantasia\r\nfantasies\r\nfantasise\r\nfantasised\r\nfantasises\r\nfantasising\r\nfantasist\r\nfantast\r\nfantastic\r\nfantastical\r\nfantasticality\r\nfantastically\r\nfantasticalness\r\nfantasy\r\nfantasy's\r\nfantod\r\nfanwise\r\nfar\r\nfarad\r\nfaradic\r\nfaradisation\r\nfaradisations\r\nfaradisation's\r\nfaradise\r\nfaradised\r\nfaradiser\r\nfaradisers\r\nfaradises\r\nfaradising\r\nfaradism\r\nfarandole\r\nfaraway\r\nfarce\r\nfarces\r\nfarce's\r\nfarceur\r\nfarcical\r\nfarcicality\r\nfarcically\r\nfarcing\r\nfare\r\nfared\r\nfarer\r\nfares\r\nfarewell\r\nfarewells\r\nfarfetched\r\nfarfetchedness\r\nfarina\r\nfarinaceous\r\nfaring\r\nfarinose\r\nfarm\r\nfarmed\r\nfarmer\r\nfarmers\r\nfarmer's\r\nfarmhand\r\nfarmhands\r\nfarmhouse\r\nfarmhouses\r\nfarmhouse's\r\nfarming\r\nfarmland\r\nfarmlands\r\nfarms\r\nfarmstead\r\nfarmyard\r\nfarmyards\r\nfarmyard's\r\nfaro\r\nfarrier\r\nfarriery\r\nfarrow\r\nfarseeing\r\nfarsighted\r\nfarsightedness\r\nfart\r\nfarther\r\nfarthermost\r\nfarthest\r\nfarthing\r\nfasces\r\nfascia\r\nfascicle\r\nfascicled\r\nfascicles\r\nfascicular\r\nfasciculate\r\nfasciculation\r\nfascicule\r\nfascinate\r\nfascinated\r\nfascinates\r\nfascinating\r\nfascinatingly\r\nfascination\r\nfascinations\r\nfascinator\r\nfascinators\r\nfascine\r\nfascism\r\nfascist\r\nfascistic\r\nfascistically\r\nfascists\r\nfashion\r\nfashionable\r\nfashionableness\r\nfashionably\r\nfashioned\r\nfashioner\r\nfashioners\r\nfashioning\r\nfashionmonger\r\nfashions\r\nfast\r\nfastback\r\nfastball\r\nfastballs\r\nfastball's\r\nfasted\r\nfasten\r\nfastened\r\nfastener\r\nfasteners\r\nfastening\r\nfastenings\r\nfastens\r\nfaster\r\nfastest\r\nfastidious\r\nfastidiously\r\nfastidiousness\r\nfasting\r\nfastness\r\nfasts\r\nfat\r\nfatal\r\nfatalism\r\nfatalist\r\nfatalistic\r\nfatalistically\r\nfatalists\r\nfatalities\r\nfatality\r\nfatality's\r\nfatally\r\nfatback\r\nfate\r\nfated\r\nfateful\r\nfatefully\r\nfatefulness\r\nfates\r\nfathead\r\nfatheaded\r\nfather\r\nfathered\r\nfatherhood\r\nfathering\r\nfatherland\r\nfatherless\r\nfatherliness\r\nfatherly\r\nfathers\r\nfather's\r\nfathom\r\nfathomable\r\nfathomed\r\nfathoming\r\nfathomless\r\nfathomlessly\r\nfathoms\r\nfatidic\r\nfatigability\r\nfatigable\r\nfatigue\r\nfatigued\r\nfatigues\r\nfatiguing\r\nfating\r\nfatling\r\nfatly\r\nfatness\r\nfats\r\nfatso\r\nfatted\r\nfatten\r\nfattened\r\nfattener\r\nfatteners\r\nfattening\r\nfattens\r\nfatter\r\nfattest\r\nfattier\r\nfatties\r\nfattiness\r\nfatting\r\nfattish\r\nfatty\r\nfatuity\r\nfatuous\r\nfatuously\r\nfatuousness\r\nfaucal\r\nfaucet\r\nfaucets\r\nfaugh\r\nfault\r\nfaulted\r\nfaultfinder\r\nfaultfinding\r\nfaultier\r\nfaultiness\r\nfaulting\r\nfaultless\r\nfaultlessly\r\nfaultlessness\r\nfaults\r\nfaulty\r\nfaun\r\nfauna\r\nfaunal\r\nfaunally\r\nfauteuil\r\nfauve\r\nfauvism\r\nfauvist\r\nfaux\r\nfavonian\r\nfavour\r\nfavourable\r\nfavourableness\r\nfavourably\r\nfavoured\r\nfavourer\r\nfavourers\r\nfavourer's\r\nfavouring\r\nfavouringly\r\nfavourite\r\nfavourites\r\nfavourite's\r\nfavouritism\r\nfavouritisms\r\nfavouritism's\r\nfavourless\r\nfavours\r\nfawn\r\nfawned\r\nfawner\r\nfawning\r\nfawningly\r\nfawns\r\nfax\r\nfaxes\r\nfax's\r\nfaze\r\nfazed\r\nfazes\r\nfazing\r\nfealty\r\nfear\r\nfeared\r\nfearer\r\nfearful\r\nfearfully\r\nfearfulness\r\nfearing\r\nfearless\r\nfearlessly\r\nfearlessness\r\nfears\r\nfearsome\r\nfearsomely\r\nfearsomeness\r\nfeasibility\r\nfeasible\r\nfeasibleness\r\nfeasibly\r\nfeast\r\nfeasted\r\nfeaster\r\nfeasting\r\nfeasts\r\nfeat\r\nfeather\r\nfeatherbed\r\nfeatherbedding\r\nfeatherbrain\r\nfeatherbrained\r\nfeathered\r\nfeatheredge\r\nfeatherhead\r\nfeatherheaded\r\nfeathering\r\nfeatherless\r\nfeathers\r\nfeatherstitch\r\nfeatherweight\r\nfeathery\r\nfeatly\r\nfeats\r\nfeat's\r\nfeature\r\nfeatured\r\nfeatureless\r\nfeatures\r\nfeaturing\r\nfebricity\r\nfebrifuge\r\nfebrile\r\nfeckless\r\nfecklessly\r\nfecklessness\r\nfeculence\r\nfeculent\r\nfecund\r\nfecundity\r\nfed\r\nfederal\r\nfederalisation\r\nfederalisations\r\nfederalisation's\r\nfederalise\r\nfederalised\r\nfederalises\r\nfederalising\r\nfederalism\r\nfederalist\r\nfederalists\r\nfederally\r\nfederals\r\nfederate\r\nfederated\r\nfederates\r\nfederating\r\nfederation\r\nfederations\r\nfederative\r\nfederatively\r\nfedora\r\nfeds\r\nfee\r\nfeeble\r\nfeebleminded\r\nfeeblemindedly\r\nfeeblemindedness\r\nfeebleness\r\nfeebler\r\nfeeblest\r\nfeebly\r\nfeed\r\nfeedback\r\nfeedbacks\r\nfeedbag\r\nfeeder\r\nfeeders\r\nfeeding\r\nfeedings\r\nfeedlot\r\nfeeds\r\nfeedstock\r\nfeedstuff\r\nfeeing\r\nfeel\r\nfeeler\r\nfeelers\r\nfeeling\r\nfeelingly\r\nfeelings\r\nfeels\r\nfees\r\nfeet\r\nfeign\r\nfeigned\r\nfeigner\r\nfeigning\r\nfeigns\r\nfeint\r\nfeinted\r\nfeinting\r\nfeints\r\nfeisty\r\nfeldspar\r\nfelicific\r\nfelicitate\r\nfelicitated\r\nfelicitates\r\nfelicitating\r\nfelicitation\r\nfelicitator\r\nfelicities\r\nfelicitous\r\nfelicitously\r\nfelicitousness\r\nfelicity\r\nfeline\r\nfelinely\r\nfelines\r\nfelinity\r\nfell\r\nfellable\r\nfellah\r\nfellatio\r\nfelled\r\nfeller\r\nfellers\r\nfelling\r\nfellmonger\r\nfellness\r\nfelloe\r\nfellow\r\nfellowman\r\nfellows\r\nfellow's\r\nfellowship\r\nfellowships\r\nfellowship's\r\nfells\r\nfelon\r\nfelonious\r\nfeloniously\r\nfeloniousness\r\nfelonry\r\nfelons\r\nfelony\r\nfelsitic\r\nfelt\r\nfelted\r\nfelting\r\nfelts\r\nfelucca\r\nfemale\r\nfemaleness\r\nfemales\r\nfemale's\r\nfeminine\r\nfemininely\r\nfeminineness\r\nfemininity\r\nfeminisation\r\nfeminisations\r\nfeminise\r\nfeminised\r\nfeminises\r\nfeminising\r\nfeminism\r\nfeminist\r\nfeministic\r\nfeminists\r\nfeminist's\r\nfemme\r\nfemmes\r\nfemoral\r\nfemur\r\nfemurs\r\nfemur's\r\nfen\r\nfence\r\nfenced\r\nfenceless\r\nfencelessness\r\nfencepost\r\nfencer\r\nfencers\r\nfences\r\nfencing\r\nfend\r\nfender\r\nfenders\r\nfenestrate\r\nfenestrated\r\nfenestration\r\nfennec\r\nfennel\r\nfennelflower\r\nfenny\r\nfenugreek\r\nfeoff\r\nferal\r\nferbam\r\nferetory\r\nferial\r\nferity\r\nferment\r\nfermentable\r\nfermentation\r\nfermentations\r\nfermentation's\r\nfermentative\r\nfermented\r\nfermenting\r\nferments\r\nfermions\r\nfermion's\r\nfermium\r\nfern\r\nfernery\r\nfernlike\r\nferns\r\nfern's\r\nferny\r\nferocious\r\nferociously\r\nferociousness\r\nferocity\r\nferrate\r\nferret\r\nferreted\r\nferreter\r\nferreting\r\nferrets\r\nferrety\r\nferriage\r\nferric\r\nferried\r\nferries\r\nferriferous\r\nferrite\r\nferrochromium\r\nferroelectric\r\nferromagnesian\r\nferromagnetic\r\nferromagnetism\r\nferromanganese\r\nferrosilicon\r\nferrotype\r\nferrous\r\nferruginous\r\nferrule\r\nferry\r\nferryboat\r\nferrying\r\nferryman\r\nfertile\r\nfertilely\r\nfertileness\r\nfertilisable\r\nfertilisation\r\nfertilisations\r\nfertilisation's\r\nfertilise\r\nfertilised\r\nfertiliser\r\nfertilisers\r\nfertilises\r\nfertilising\r\nfertilities\r\nfertility\r\nferula\r\nferule\r\nfervency\r\nfervent\r\nfervently\r\nfervid\r\nfervidly\r\nfervidness\r\nfervour\r\nfervours\r\nfervour's\r\nfescue\r\nfess\r\nfest\r\nfestal\r\nfester\r\nfestered\r\nfestering\r\nfesters\r\nfestinate\r\nfestival\r\nfestivals\r\nfestival's\r\nfestive\r\nfestively\r\nfestiveness\r\nfestivities\r\nfestivity\r\nfestoon\r\nfestoonery\r\nfestoons\r\nfestschrift\r\nfeta\r\nfetch\r\nfetched\r\nfetcher\r\nfetches\r\nfetching\r\nfetchingly\r\nfete\r\nfeted\r\nfetes\r\nfeticide\r\nfetish\r\nfetishes\r\nfetishism\r\nfetishist\r\nfetlock\r\nfetlocks\r\nfetor\r\nfetter\r\nfettered\r\nfettering\r\nfetters\r\nfettle\r\nfettled\r\nfettles\r\nfettling\r\nfettuccine\r\nfeud\r\nfeudal\r\nfeudalisation\r\nfeudalisations\r\nfeudalisation's\r\nfeudalise\r\nfeudalised\r\nfeudalises\r\nfeudalising\r\nfeudalism\r\nfeudalist\r\nfeudalistic\r\nfeudality\r\nfeudally\r\nfeudatory\r\nfeudist\r\nfeuds\r\nfeud's\r\nfever\r\nfevered\r\nfeverfew\r\nfevering\r\nfeverish\r\nfeverishly\r\nfeverishness\r\nfeverous\r\nfeverously\r\nfevers\r\nfeverwort\r\nfew\r\nfewer\r\nfewest\r\nfewness\r\nfey\r\nfeyness\r\nfez\r\nfezzes\r\nfiacre\r\nfiancé\r\nfiancée\r\nfiasco\r\nfiat\r\nfiats\r\nfib\r\nfibber\r\nfibbing\r\nfibre\r\nfibreboard\r\nfibred\r\nfibrefill\r\nfibreglass\r\nfibreless\r\nfibres\r\nfibre's\r\nfibril\r\nfibrillate\r\nfibrillated\r\nfibrillates\r\nfibrillation\r\nfibrilliform\r\nfibrillose\r\nfibrils\r\nfibrin\r\nfibrinogen\r\nfibro\r\nfibroblast\r\nfibrocement\r\nfibroid\r\nfibroin\r\nfibrosis\r\nfibrositis\r\nfibrous\r\nfibrously\r\nfibula\r\nfibular\r\nfiche\r\nfickle\r\nfickleness\r\nfictile\r\nfiction\r\nfictional\r\nfictionalisation\r\nfictionalise\r\nfictionalised\r\nfictionalises\r\nfictionalising\r\nfictionally\r\nfictionist\r\nfictions\r\nfiction's\r\nfictitious\r\nfictitiously\r\nfictitiousness\r\nfictive\r\nfictively\r\nfid\r\nfiddle\r\nfiddled\r\nfiddlehead\r\nfiddler\r\nfiddles\r\nfiddlestick\r\nfiddlesticks\r\nfiddlewood\r\nfiddling\r\nfide\r\nfideism\r\nfidelity\r\nfidget\r\nfidgeted\r\nfidgetiness\r\nfidgeting\r\nfidgets\r\nfidgety\r\nfiducially\r\nfiduciary\r\nfie\r\nfief\r\nfiefdom\r\nfield\r\nfielded\r\nfielder\r\nfielders\r\nfieldfare\r\nfielding\r\nfieldpiece\r\nfields\r\nfieldsman\r\nfieldstone\r\nfieldstrip\r\nfieldwork\r\nfieldworker\r\nfieldworkers\r\nfiend\r\nfiendish\r\nfiendishly\r\nfiendishness\r\nfiends\r\nfierce\r\nfiercely\r\nfierceness\r\nfiercer\r\nfiercest\r\nfierily\r\nfieriness\r\nfiery\r\nfiesta\r\nfife\r\nfifteen\r\nfifteens\r\nfifteenth\r\nfifth\r\nfifthly\r\nfifths\r\nfifties\r\nfiftieth\r\nfifty\r\nfig\r\nfight\r\nfighter\r\nfighters\r\nfighting\r\nfights\r\nfigment\r\nfigs\r\nfig's\r\nfigural\r\nfigurant\r\nfigurate\r\nfiguration\r\nfigurations\r\nfigurative\r\nfiguratively\r\nfigurativeness\r\nfigure\r\nfigured\r\nfigurehead\r\nfigurer\r\nfigurers\r\nfigures\r\nfigurine\r\nfigurines\r\nfiguring\r\nfigwort\r\nfilament\r\nfilamentary\r\nfilamentous\r\nfilaments\r\nfilament's\r\nfilarial\r\nfilature\r\nfilbert\r\nfilberts\r\nfilch\r\nfilched\r\nfilches\r\nfile\r\nfiled\r\nfilefish\r\nfilename\r\nfilenames\r\nfilename's\r\nfiler\r\nfilers\r\nfiles\r\nfile's\r\nfilet\r\nfilets\r\nfilial\r\nfilially\r\nfilibuster\r\nfilibustered\r\nfilibusterer\r\nfilibustering\r\nfilibusters\r\nfilicide\r\nfiligree\r\nfiligreed\r\nfiligreeing\r\nfiling\r\nfilings\r\nfill\r\nfilled\r\nfiller\r\nfillers\r\nfillet\r\nfilleted\r\nfilleting\r\nfillets\r\nfillies\r\nfilling\r\nfillings\r\nfillip\r\nfillips\r\nfills\r\nfilly\r\nfilm\r\nfilmcard\r\nfilmdom\r\nfilmed\r\nfilmic\r\nfilmier\r\nfilmily\r\nfilminess\r\nfilming\r\nfilmmaker\r\nfilmmakers\r\nfilmmaking\r\nfilms\r\nfilmsetting\r\nfilmstrip\r\nfilmstrips\r\nfilmy\r\nfilose\r\nfilter\r\nfilterability\r\nfilterable\r\nfiltered\r\nfilterer\r\nfiltering\r\nfilters\r\nfilter's\r\nfilth\r\nfilthier\r\nfilthiest\r\nfilthily\r\nfilthiness\r\nfilthy\r\nfiltrate\r\nfiltrated\r\nfiltrates\r\nfiltrating\r\nfiltration\r\nfiltration's\r\nfimbriation\r\nfin\r\nfinable\r\nfinagle\r\nfinagled\r\nfinagler\r\nfinagles\r\nfinagling\r\nfinal\r\nfinale\r\nfinales\r\nfinale's\r\nfinalisation\r\nfinalisations\r\nfinalise\r\nfinalised\r\nfinalises\r\nfinalising\r\nfinalism\r\nfinalist\r\nfinalists\r\nfinality\r\nfinally\r\nfinals\r\nfinance\r\nfinanced\r\nfinances\r\nfinancial\r\nfinancially\r\nfinancier\r\nfinanciers\r\nfinancier's\r\nfinancing\r\nfinback\r\nfinch\r\nfind\r\nfindable\r\nfinder\r\nfinders\r\nfinding\r\nfindings\r\nfinds\r\nfine\r\nfineable\r\nfined\r\nfinely\r\nfineness\r\nfiner\r\nfinery\r\nfines\r\nfinesse\r\nfinessed\r\nfinessing\r\nfinest\r\nfinger\r\nfingerboard\r\nfingerbreadth\r\nfingered\r\nfingerer\r\nfingering\r\nfingerings\r\nfingerling\r\nfingernail\r\nfingernails\r\nfingerpost\r\nfingerprint\r\nfingerprinted\r\nfingerprinting\r\nfingerprints\r\nfingers\r\nfingerstall\r\nfingerstalls\r\nfingertip\r\nfingertips\r\nfinial\r\nfinical\r\nfinically\r\nfinicalness\r\nfinicky\r\nfining\r\nfinis\r\nfinish\r\nfinished\r\nfinisher\r\nfinishers\r\nfinishes\r\nfinishing\r\nfinite\r\nfinitely\r\nfiniteness\r\nfinites\r\nfinitude\r\nfink\r\nfinlike\r\nfinned\r\nfinny\r\nfins\r\nfin's\r\nfiord\r\nfipple\r\nfir\r\nfire\r\nfirearm\r\nfirearms\r\nfirearm's\r\nfireback\r\nfireball\r\nfireballs\r\nfirebird\r\nfireboat\r\nfirebomb\r\nfirebox\r\nfirebrand\r\nfirebrat\r\nfirebreak\r\nfirebreaks\r\nfirebrick\r\nfirebug\r\nfireclay\r\nfirecracker\r\nfirecrackers\r\nfired\r\nfiredamp\r\nfiredog\r\nfiredrake\r\nfireflies\r\nfirefly\r\nfirefly's\r\nfireguard\r\nfirehouse\r\nfirehouses\r\nfireless\r\nfirelight\r\nfirelock\r\nfireman\r\nfiremen\r\nfireplace\r\nfireplaces\r\nfireplace's\r\nfireplug\r\nfireplugs\r\nfirepower\r\nfireproof\r\nfirer\r\nfirers\r\nfires\r\nfireside\r\nfirestorm\r\nfirethorn\r\nfiretrap\r\nfirewall\r\nfirewater\r\nfirewood\r\nfirework\r\nfireworks\r\nfiring\r\nfirings\r\nfirkin\r\nfirm\r\nfirma\r\nfirmament\r\nfirmamental\r\nfirmed\r\nfirmer\r\nfirmest\r\nfirming\r\nfirmly\r\nfirmness\r\nfirms\r\nfirm's\r\nfirmware\r\nfirry\r\nfirst\r\nfirstborn\r\nfirsthand\r\nfirstling\r\nfirstlings\r\nfirstly\r\nfirsts\r\nfirth\r\nfiscal\r\nfiscally\r\nfiscals\r\nfish\r\nfishable\r\nfishbowl\r\nfished\r\nfisher\r\nfisheries\r\nfisherman\r\nfisherman's\r\nfishermen\r\nfishermen's\r\nfishers\r\nfishery\r\nfishes\r\nfishgig\r\nfishhook\r\nfishier\r\nfishing\r\nfishmeal\r\nfishmonger\r\nfishmongers\r\nfishnet\r\nfishplate\r\nfishplates\r\nfishpond\r\nfishtail\r\nfishwife\r\nfishy\r\nfissile\r\nfission\r\nfissionability\r\nfissionable\r\nfissional\r\nfissions\r\nfissiparous\r\nfissirostral\r\nfissure\r\nfissured\r\nfissures\r\nfissuring\r\nfist\r\nfisted\r\nfistfight\r\nfistful\r\nfistic\r\nfisticuff\r\nfisticuffs\r\nfists\r\nfistula\r\nfistulous\r\nfit\r\nfitful\r\nfitfully\r\nfitfulness\r\nfitly\r\nfitment\r\nfitness\r\nfits\r\nfitted\r\nfitter\r\nfitters\r\nfitter's\r\nfittest\r\nfitting\r\nfittingly\r\nfittingness\r\nfittings\r\nfive\r\nfivefold\r\nfiver\r\nfives\r\nfix\r\nfixable\r\nfixate\r\nfixated\r\nfixates\r\nfixating\r\nfixation\r\nfixations\r\nfixative\r\nfixed\r\nfixedly\r\nfixedness\r\nfixer\r\nfixers\r\nfixes\r\nfixing\r\nfixings\r\nfixity\r\nfixture\r\nfixtures\r\nfixture's\r\nfizz\r\nfizzer\r\nfizzle\r\nfizzled\r\nfizzles\r\nfizzling\r\nfizzy\r\nfjord\r\nfjords\r\nflab\r\nflabbergast\r\nflabbergasted\r\nflabbergasts\r\nflabbier\r\nflabbily\r\nflabbiness\r\nflabby\r\nflabellate\r\nflabellum\r\nflaccid\r\nflaccidity\r\nflaccidly\r\nflack\r\nflacon\r\nflag\r\nflagellant\r\nflagellants\r\nflagellate\r\nflagellated\r\nflagellates\r\nflagellating\r\nflagellation\r\nflagellum\r\nflageolet\r\nflagged\r\nflagging\r\nflaggingly\r\nflaggy\r\nflagitious\r\nflagitiously\r\nflagitiousness\r\nflagman\r\nflagon\r\nflagpole\r\nflagpoles\r\nflagrance\r\nflagrancies\r\nflagrancy\r\nflagrant\r\nflagrante\r\nflagrantly\r\nflags\r\nflag's\r\nflagship\r\nflagships\r\nflagship's\r\nflagstaff\r\nflagstone\r\nflail\r\nflailed\r\nflailing\r\nflails\r\nflair\r\nflak\r\nflake\r\nflaked\r\nflakes\r\nflakier\r\nflakiness\r\nflaking\r\nflaky\r\nflam\r\nflambeau\r\nflamboyance\r\nflamboyancy\r\nflamboyant\r\nflamboyantly\r\nflame\r\nflamed\r\nflamenco\r\nflameout\r\nflameproof\r\nflamer\r\nflamers\r\nflames\r\nflamethrower\r\nflaming\r\nflamingly\r\nflamingo\r\nflammability\r\nflammable\r\nflammables\r\nflan\r\nflange\r\nflanged\r\nflanges\r\nflank\r\nflanked\r\nflanker\r\nflankers\r\nflanking\r\nflanks\r\nflannel\r\nflannelette\r\nflannelled\r\nflannelling\r\nflannels\r\nflannel's\r\nflap\r\nflapdoodle\r\nflapjack\r\nflapped\r\nflapper\r\nflappers\r\nflapping\r\nflaps\r\nflap's\r\nflare\r\nflareback\r\nflared\r\nflares\r\nflaring\r\nflaringly\r\nflash\r\nflashback\r\nflashbacks\r\nflashboard\r\nflashbulb\r\nflashbulbs\r\nflashcube\r\nflashcubes\r\nflashed\r\nflasher\r\nflashers\r\nflashes\r\nflashgun\r\nflashguns\r\nflashier\r\nflashily\r\nflashiness\r\nflashing\r\nflashlight\r\nflashlights\r\nflashlight's\r\nflashover\r\nflashovers\r\nflashtube\r\nflashy\r\nflask\r\nflasket\r\nflat\r\nflatbed\r\nflatboat\r\nflatcar\r\nflatfeet\r\nflatfish\r\nflatfishes\r\nflatfoot\r\nflatfooted\r\nflatfoots\r\nflathead\r\nflatiron\r\nflatirons\r\nflatland\r\nflatlander\r\nflatlands\r\nflatlet\r\nflatlets\r\nflatling\r\nflatly\r\nflatmate\r\nflatmates\r\nflatness\r\nflats\r\nflatted\r\nflatten\r\nflattened\r\nflattener\r\nflattening\r\nflattens\r\nflatter\r\nflattered\r\nflatterer\r\nflattering\r\nflatteringly\r\nflatters\r\nflattery\r\nflattest\r\nflatting\r\nflattish\r\nflattop\r\nflatulence\r\nflatulency\r\nflatulent\r\nflatulently\r\nflatus\r\nflatware\r\nflatways\r\nflatwork\r\nflatworm\r\nflaunt\r\nflaunted\r\nflaunting\r\nflauntingly\r\nflaunts\r\nflaunty\r\nflautist\r\nflavescent\r\nflavopurpurin\r\nflavorous\r\nflavour\r\nflavoured\r\nflavourer\r\nflavourers\r\nflavourer's\r\nflavourful\r\nflavourfully\r\nflavouring\r\nflavourings\r\nflavourless\r\nflavours\r\nflavour's\r\nflavoursome\r\nflaw\r\nflawed\r\nflawing\r\nflawless\r\nflawlessly\r\nflawlessness\r\nflaws\r\nflax\r\nflaxen\r\nflaxier\r\nflaxseed\r\nflaxy\r\nflay\r\nflea\r\nfleabag\r\nfleabane\r\nfleabite\r\nfleabites\r\nfleapit\r\nfleapits\r\nfleas\r\nflea's\r\nfleawort\r\nfleck\r\nflecked\r\nflecking\r\nflecks\r\nfled\r\nfledge\r\nfledged\r\nfledges\r\nfledging\r\nfledgling\r\nfledglings\r\nfledgling's\r\nfledgy\r\nflee\r\nfleece\r\nfleeced\r\nfleeces\r\nfleece's\r\nfleecier\r\nfleecy\r\nfleeing\r\nfleer\r\nfleeringly\r\nflees\r\nfleet\r\nfleetest\r\nfleeting\r\nfleetingly\r\nfleetingness\r\nfleetly\r\nfleetness\r\nfleets\r\nflense\r\nflesh\r\nfleshed\r\nflesher\r\nfleshes\r\nfleshier\r\nfleshiness\r\nfleshing\r\nfleshly\r\nfleshpot\r\nfleshpots\r\nfleshy\r\nfletch\r\nfletched\r\nfletcher\r\nfletches\r\nfletching\r\nflew\r\nflews\r\nflex\r\nflexed\r\nflexibilities\r\nflexibility\r\nflexible\r\nflexibly\r\nflexile\r\nflexing\r\nflexion\r\nflexitime\r\nflexography\r\nflexor\r\nflexuous\r\nflexuously\r\nflexural\r\nflexure\r\nflibbertigibbet\r\nflick\r\nflicked\r\nflicker\r\nflickered\r\nflickering\r\nflickeringly\r\nflicking\r\nflicks\r\nflier\r\nfliers\r\nflies\r\nflight\r\nflightier\r\nflightily\r\nflightiness\r\nflightless\r\nflights\r\nflight's\r\nflighty\r\nflimflam\r\nflimflammed\r\nflimflammer\r\nflimflamming\r\nflimsier\r\nflimsies\r\nflimsily\r\nflimsiness\r\nflimsy\r\nflinch\r\nflinched\r\nflincher\r\nflinches\r\nflinching\r\nflinders\r\nfling\r\nflinger\r\nflinging\r\nflings\r\nfling's\r\nflint\r\nflintier\r\nflintily\r\nflintiness\r\nflintlock\r\nflints\r\nflinty\r\nflip\r\nflippancy\r\nflippant\r\nflippantly\r\nflipped\r\nflipper\r\nflippers\r\nflipping\r\nflips\r\nflirt\r\nflirtation\r\nflirtations\r\nflirtatious\r\nflirtatiously\r\nflirtatiousness\r\nflirted\r\nflirter\r\nflirting\r\nflirts\r\nflirty\r\nflit\r\nflitch\r\nflits\r\nflitted\r\nflitter\r\nflitting\r\nflivver\r\nfloat\r\nfloatation\r\nfloated\r\nfloater\r\nfloaters\r\nfloating\r\nfloatplane\r\nfloats\r\nfloccose\r\nflocculants\r\nflocculate\r\nflocculated\r\nflocculates\r\nflocculating\r\nflocculation\r\nflocculent\r\nfloccus\r\nflock\r\nflocked\r\nflocking\r\nflocks\r\nfloe\r\nfloes\r\nflog\r\nflogged\r\nflogger\r\nflogging\r\nflogs\r\nflood\r\nflooded\r\nflooder\r\nfloodgate\r\nflooding\r\nfloodlight\r\nfloodlit\r\nfloodplain\r\nfloods\r\nfloodwall\r\nfloodwater\r\nfloodwaters\r\nfloodwater's\r\nfloodway\r\nfloor\r\nfloorage\r\nfloorboard\r\nfloorboards\r\nfloored\r\nfloorer\r\nflooring\r\nfloorings\r\nfloors\r\nfloorwalker\r\nfloozie\r\nfloozies\r\nfloozy\r\nflop\r\nflophouse\r\nflophouses\r\nflopped\r\nflopper\r\nfloppers\r\nfloppier\r\nfloppies\r\nfloppily\r\nfloppiness\r\nflopping\r\nfloppy\r\nfloppy's\r\nflops\r\nflop's\r\nflora\r\nfloral\r\nflorally\r\nflorescence\r\nflorescent\r\nfloret\r\nfloriated\r\nfloribunda\r\nfloricultural\r\nfloriculture\r\nfloriculturist\r\nflorid\r\nfloridity\r\nfloridly\r\nfloridness\r\nfloriferous\r\nflorin\r\nflorist\r\nfloristic\r\nfloristically\r\nfloristry\r\nflorists\r\nfloss\r\nflossed\r\nflosses\r\nflossier\r\nflossing\r\nflossy\r\nflotation\r\nflotilla\r\nflotillas\r\nflotsam\r\nflounce\r\nflounced\r\nflounces\r\nflouncing\r\nflounder\r\nfloundered\r\nfloundering\r\nflounders\r\nflour\r\nfloured\r\nflourish\r\nflourished\r\nflourisher\r\nflourishes\r\nflourishing\r\nflourishingly\r\nflours\r\nfloury\r\nflout\r\nflouted\r\nflouter\r\nflouting\r\nflouts\r\nflow\r\nflowage\r\nflowchart\r\nflowcharting\r\nflowcharts\r\nflowed\r\nflower\r\nflowerage\r\nflowerbed\r\nflowered\r\nflowerer\r\nfloweret\r\nfloweriness\r\nflowering\r\nflowerless\r\nflowerlike\r\nflowerpot\r\nflowers\r\nflowery\r\nflowing\r\nflowingly\r\nflown\r\nflows\r\nflowstone\r\nflu\r\nflub\r\nflubbed\r\nflubbing\r\nflubs\r\nfluctuant\r\nfluctuate\r\nfluctuated\r\nfluctuates\r\nfluctuating\r\nfluctuation\r\nfluctuations\r\nflue\r\nfluency\r\nfluent\r\nfluently\r\nflues\r\nfluff\r\nfluffier\r\nfluffiest\r\nfluffiness\r\nfluffs\r\nfluffy\r\nflugelhorn\r\nfluid\r\nfluidal\r\nfluidextract\r\nfluidic\r\nfluidics\r\nfluidisation\r\nfluidisations\r\nfluidisation's\r\nfluidise\r\nfluidised\r\nfluidiser\r\nfluidises\r\nfluidising\r\nfluidity\r\nfluidly\r\nfluidness\r\nfluidounce\r\nfluidram\r\nfluids\r\nfluke\r\nflukier\r\nfluky\r\nflume\r\nflumed\r\nflumes\r\nfluming\r\nflummery\r\nflummox\r\nflump\r\nflumped\r\nflumping\r\nflumps\r\nflung\r\nflunk\r\nflunked\r\nflunkeys\r\nflunking\r\nflunks\r\nflunky\r\nfluoresce\r\nfluorescence\r\nfluorescent\r\nfluoresces\r\nfluoric\r\nfluoridate\r\nfluoridated\r\nfluoridates\r\nfluoridating\r\nfluoridation\r\nfluoridations\r\nfluoride\r\nfluorides\r\nfluorinate\r\nfluorinated\r\nfluorinates\r\nfluorinating\r\nfluorination\r\nfluorinations\r\nfluorine\r\nfluorite\r\nfluorocarbon\r\nfluoroscope\r\nfluoroscopic\r\nfluoroscopy\r\nfluorspar\r\nflurried\r\nflurries\r\nflurry\r\nflurrying\r\nflush\r\nflushable\r\nflushed\r\nflushes\r\nflushing\r\nflushness\r\nfluster\r\nflustered\r\nflustering\r\nflusters\r\nflute\r\nfluted\r\nflutelike\r\nflutes\r\nflute's\r\nfluting\r\nflutist\r\nflutter\r\nfluttered\r\nflutterer\r\nfluttering\r\nflutters\r\nfluttery\r\nfluvial\r\nflux\r\nfluxed\r\nfluxes\r\nfluxion\r\nfluxional\r\nfly\r\nflyable\r\nflyaway\r\nflyblow\r\nflyblown\r\nflyboat\r\nflyboats\r\nflyby\r\nflybys\r\nflycatcher\r\nflycatchers\r\nflyer\r\nflyers\r\nflyer's\r\nflying\r\nflyleaf\r\nflyleaves\r\nflyover\r\nflyovers\r\nflypaper\r\nflypast\r\nflypasts\r\nflyspeck\r\nflyswatter\r\nflytrap\r\nflytraps\r\nflyway\r\nflyweight\r\nflywheel\r\nflywheels\r\nfoal\r\nfoals\r\nfoam\r\nfoamed\r\nfoamflower\r\nfoamier\r\nfoaminess\r\nfoaming\r\nfoamless\r\nfoams\r\nfoamy\r\nfob\r\nfobbing\r\nfocal\r\nfocalisation\r\nfocalisations\r\nfocalisation's\r\nfocalise\r\nfocalised\r\nfocalises\r\nfocalising\r\nfocally\r\nfoci\r\nfocus\r\nfocusable\r\nfocused\r\nfocuser\r\nfocuses\r\nfocusing\r\nfodder\r\nfoe\r\nfoeman\r\nfoes\r\nfoe's\r\nfoetal\r\nfoetation\r\nfoeticide\r\nfoetid\r\nfoetidly\r\nfoetidness\r\nfoetor\r\nfoetus\r\nfoetuses\r\nfoetus's\r\nfog\r\nfogbound\r\nfogbow\r\nfogbows\r\nfogdog\r\nfogey\r\nfogeys\r\nfogged\r\nfoggier\r\nfoggiest\r\nfoggily\r\nfogginess\r\nfogging\r\nfoggy\r\nfoghorn\r\nfoghorns\r\nfogies\r\nfogless\r\nfogs\r\nfog's\r\nfogy\r\nfoible\r\nfoibles\r\nfoil\r\nfoiled\r\nfoiling\r\nfoils\r\nfoilsman\r\nfoist\r\nfoisted\r\nfoisting\r\nfoists\r\nfold\r\nfoldable\r\nfoldaway\r\nfoldboat\r\nfolded\r\nfolder\r\nfolderol\r\nfolders\r\nfolding\r\nfoldout\r\nfoldouts\r\nfolds\r\nfolia\r\nfoliage\r\nfoliaged\r\nfoliages\r\nfoliar\r\nfoliate\r\nfoliated\r\nfoliates\r\nfoliating\r\nfoliation\r\nfoliations\r\nfolic\r\nfolio\r\nfolios\r\nfoliose\r\nfolium\r\nfolk\r\nfolklore\r\nfolkloric\r\nfolklorist\r\nfolkloristic\r\nfolkmoot\r\nfolks\r\nfolk's\r\nfolksier\r\nfolksiness\r\nfolksinger\r\nfolksingers\r\nfolksinger's\r\nfolksong\r\nfolksongs\r\nfolksy\r\nfolktale\r\nfolktales\r\nfolktale's\r\nfolkway\r\nfolkways\r\nfollicle\r\nfollicles\r\nfollicular\r\nfolliculate\r\nfolliculated\r\nfollies\r\nfollow\r\nfollowed\r\nfollower\r\nfollowers\r\nfollowing\r\nfollowings\r\nfollows\r\nfolly\r\nfoment\r\nfomentation\r\nfomentations\r\nfomented\r\nfomenter\r\nfomenting\r\nfoments\r\nfond\r\nfondant\r\nfondants\r\nfonder\r\nfondest\r\nfondle\r\nfondled\r\nfondler\r\nfondles\r\nfondling\r\nfondly\r\nfondness\r\nfondue\r\nfondues\r\nfont\r\nfontal\r\nfonts\r\nfont's\r\nfood\r\nfoodless\r\nfoodlessness\r\nfoods\r\nfood's\r\nfoodstuff\r\nfoodstuffs\r\nfoodstuff's\r\nfool\r\nfooled\r\nfoolery\r\nfoolhardily\r\nfoolhardiness\r\nfoolhardy\r\nfooling\r\nfoolish\r\nfoolishly\r\nfoolishness\r\nfoolproof\r\nfools\r\nfoolscap\r\nfoolscap's\r\nfoot\r\nfootage\r\nfootages\r\nfootball\r\nfootballer\r\nfootballers\r\nfootballs\r\nfootball's\r\nfootboard\r\nfootboards\r\nfootboy\r\nfootboys\r\nfootbridge\r\nfootbridges\r\nfootcloth\r\nfooted\r\nfooter\r\nfooters\r\nfootfall\r\nfootfalls\r\nfootgear\r\nfoothill\r\nfoothills\r\nfoothold\r\nfootholds\r\nfootie\r\nfooting\r\nfootings\r\nfootle\r\nfootled\r\nfootles\r\nfootless\r\nfootlessly\r\nfootlessness\r\nfootlight\r\nfootlights\r\nfootling\r\nfootlocker\r\nfootloose\r\nfootman\r\nfootmark\r\nfootmen\r\nfootnote\r\nfootnotes\r\nfootnote's\r\nfootpace\r\nfootpad\r\nfootpads\r\nfootpath\r\nfootpaths\r\nfootplate\r\nfootplates\r\nfootprint\r\nfootprints\r\nfootprint's\r\nfootrace\r\nfootrest\r\nfootrests\r\nfootrope\r\nfootropes\r\nfoots\r\nfootsie\r\nfootslog\r\nfootslogged\r\nfootslogger\r\nfootslogging\r\nfootslogs\r\nfootsore\r\nfootsoreness\r\nfootstalk\r\nfootstall\r\nfootstep\r\nfootsteps\r\nfootstock\r\nfootstool\r\nfootstools\r\nfootwall\r\nfootway\r\nfootways\r\nfootwear\r\nfootwork\r\nfooty\r\nfoozle\r\nfoozled\r\nfop\r\nfoppery\r\nfoppish\r\nfoppishly\r\nfoppishness\r\nfops\r\nfor\r\nforage\r\nforaged\r\nforager\r\nforages\r\nforaging\r\nforamen\r\nforaminifer\r\nforaminifera\r\nforasmuch\r\nforay\r\nforayer\r\nforays\r\nforay's\r\nforbade\r\nforbear\r\nforbearance\r\nforbearer\r\nforbearing\r\nforbears\r\nforbear's\r\nforbid\r\nforbiddance\r\nforbidden\r\nforbidder\r\nforbidding\r\nforbiddingly\r\nforbiddingness\r\nforbids\r\nforbode\r\nforbore\r\nforborne\r\nforce\r\nforced\r\nforcedly\r\nforceful\r\nforcefully\r\nforcefulness\r\nforceless\r\nforcemeat\r\nforceps\r\nforcer\r\nforces\r\nforce's\r\nforcible\r\nforcibleness\r\nforcibly\r\nforcing\r\nford\r\nfordable\r\nfordo\r\nfordone\r\nfords\r\nfore\r\nforearm\r\nforearmed\r\nforearms\r\nforearm's\r\nforebear\r\nforebears\r\nforebode\r\nforeboded\r\nforeboder\r\nforebodes\r\nforeboding\r\nforeboding\r\nforebodingly\r\nforebodingness\r\nforebodings\r\nforebrain\r\nforecast\r\nforecasted\r\nforecaster\r\nforecasters\r\nforecasting\r\nforecastle\r\nforecastles\r\nforecasts\r\nforeclose\r\nforeclosed\r\nforecloses\r\nforeclosing\r\nforeclosure\r\nforecourt\r\nforecourts\r\nforedeck\r\nforedoom\r\nforedoomed\r\nforefather\r\nforefathers\r\nforefather's\r\nforefeel\r\nforefeet\r\nforefend\r\nforefinger\r\nforefingers\r\nforefinger's\r\nforefoot\r\nforefront\r\nforegather\r\nforego\r\nforegoer\r\nforegoes\r\nforegoing\r\nforegone\r\nforeground\r\nforegrounds\r\nforegut\r\nforehand\r\nforehanded\r\nforehandedness\r\nforehead\r\nforeheads\r\nforehead's\r\nforeign\r\nforeigner\r\nforeigners\r\nforeignism\r\nforeignness\r\nforejudge\r\nforeknow\r\nforeknowledge\r\nforeknown\r\nforelady\r\nforeland\r\nforeleg\r\nforelimb\r\nforelock\r\nforeman\r\nforemanship\r\nforemast\r\nforemasts\r\nforemen\r\nforemost\r\nforemother\r\nforename\r\nforenamed\r\nforenames\r\nforenoon\r\nforensic\r\nforensically\r\nforensics\r\nforeordain\r\nforeordained\r\nforeordaining\r\nforeordains\r\nforeordination\r\nforepart\r\nforepaw\r\nforepaws\r\nforepeak\r\nforeplay\r\nforequarter\r\nforequarters\r\nforereach\r\nforerun\r\nforerunner\r\nforerunners\r\nforesaid\r\nforesail\r\nforesaw\r\nforesee\r\nforeseeable\r\nforeseeing\r\nforeseen\r\nforeseer\r\nforesees\r\nforeshadow\r\nforeshadowed\r\nforeshadower\r\nforeshadowing\r\nforeshadows\r\nforesheet\r\nforeshock\r\nforeshore\r\nforeshorten\r\nforeshortened\r\nforeshortening\r\nforeshortens\r\nforeshow\r\nforeside\r\nforesight\r\nforesighted\r\nforesightedly\r\nforesightedness\r\nforeskin\r\nforespeak\r\nforest\r\nforestage\r\nforestall\r\nforestalled\r\nforestaller\r\nforestalling\r\nforestalls\r\nforestation\r\nforestay\r\nforestaysail\r\nforested\r\nforester\r\nforesters\r\nforestry\r\nforests\r\nforeswear\r\nforesworn\r\nforetaste\r\nforetell\r\nforeteller\r\nforetelling\r\nforetells\r\nforethought\r\nforethoughtfully\r\nforethoughtfulness\r\nforethought's\r\nforetime\r\nforetoken\r\nforetold\r\nforetop\r\nforever\r\nforevermore\r\nforewarn\r\nforewarned\r\nforewarning\r\nforewarnings\r\nforewarns\r\nforewent\r\nforewing\r\nforewoman\r\nforeword\r\nforeworn\r\nforeyard\r\nforfeit\r\nforfeitable\r\nforfeited\r\nforfeiter\r\nforfeiters\r\nforfeiting\r\nforfeits\r\nforfeiture\r\nforfeitures\r\nforficate\r\nforgather\r\nforgave\r\nforge\r\nforgeable\r\nforged\r\nforger\r\nforgeries\r\nforgers\r\nforgery\r\nforgery's\r\nforges\r\nforget\r\nforgetful\r\nforgetfully\r\nforgetfulness\r\nforgets\r\nforgettable\r\nforgetter\r\nforgetting\r\nforging\r\nforgivable\r\nforgivably\r\nforgive\r\nforgiven\r\nforgiveness\r\nforgiver\r\nforgives\r\nforgiving\r\nforgivingly\r\nforgivingness\r\nforgo\r\nforgoer\r\nforgoes\r\nforgoing\r\nforgone\r\nforgot\r\nforgotten\r\nforint\r\nfork\r\nforked\r\nforkful\r\nforking\r\nforklift\r\nforklike\r\nforks\r\nforlorn\r\nforlornly\r\nforlornness\r\nform\r\nforma\r\nformability\r\nformable\r\nformal\r\nformaldehyde\r\nformalin\r\nformalisation\r\nformalisations\r\nformalisation's\r\nformalise\r\nformalised\r\nformaliser\r\nformalisers\r\nformalises\r\nformalising\r\nformalism\r\nformalisms\r\nformalism's\r\nformalist\r\nformalistic\r\nformalistically\r\nformalities\r\nformality\r\nformally\r\nformalness\r\nformals\r\nformant\r\nformants\r\nformat\r\nformation\r\nformational\r\nformations\r\nformation's\r\nformative\r\nformatively\r\nformativeness\r\nformats\r\nformatted\r\nformatter\r\nformatters\r\nformatter's\r\nformatting\r\nformed\r\nformer\r\nformerly\r\nformers\r\nformfitting\r\nformic\r\nformicary\r\nformicate\r\nformidability\r\nformidable\r\nformidableness\r\nformidably\r\nforming\r\nformless\r\nformlessly\r\nformlessness\r\nforms\r\nformula\r\nformulae\r\nformulaic\r\nformulaically\r\nformularisation\r\nformularisations\r\nformularise\r\nformularised\r\nformulariser\r\nformularises\r\nformularising\r\nformulary\r\nformulas\r\nformula's\r\nformulate\r\nformulated\r\nformulates\r\nformulating\r\nformulation\r\nformulations\r\nformulator\r\nformulators\r\nformulator's\r\nformulisation\r\nformulisations\r\nformulise\r\nformulised\r\nformulises\r\nformulising\r\nformulism\r\nformwork\r\nfornicate\r\nfornicated\r\nfornicates\r\nfornicating\r\nfornication\r\nfornications\r\nfornicator\r\nfornicators\r\nforsake\r\nforsaken\r\nforsakes\r\nforsaking\r\nforsook\r\nforsooth\r\nforswear\r\nforswears\r\nforswore\r\nforsworn\r\nfort\r\nfortalice\r\nforte\r\nfortepiano\r\nfortes\r\nforth\r\nforthcoming\r\nforthright\r\nforthrightly\r\nforthrightness\r\nforthwith\r\nforties\r\nfortieth\r\nfortification\r\nfortifications\r\nfortified\r\nfortifier\r\nfortifies\r\nfortify\r\nfortifying\r\nfortiori\r\nfortissimo\r\nfortitude\r\nfortnight\r\nfortnightly\r\nfortress\r\nfortresses\r\nfortress's\r\nforts\r\nfort's\r\nfortuitism\r\nfortuitous\r\nfortuitously\r\nfortuitousness\r\nfortuity\r\nfortunate\r\nfortunately\r\nfortunateness\r\nfortune\r\nfortuned\r\nfortunes\r\nfortune's\r\nfortuning\r\nforty\r\nforum\r\nforums\r\nforum's\r\nforward\r\nforwarded\r\nforwarder\r\nforwarders\r\nforwarding\r\nforwardly\r\nforwardness\r\nforwards\r\nforwent\r\nforwhy\r\nforzando\r\nfosse\r\nfossil\r\nfossilisation\r\nfossilisations\r\nfossilisation's\r\nfossilise\r\nfossilised\r\nfossilises\r\nfossilising\r\nfossils\r\nfoster\r\nfosterage\r\nfostered\r\nfosterer\r\nfostering\r\nfosterling\r\nfosterlings\r\nfosters\r\nfought\r\nfoul\r\nfoulard\r\nfouled\r\nfouler\r\nfoulest\r\nfouling\r\nfoully\r\nfoulmouthed\r\nfoulness\r\nfouls\r\nfound\r\nfoundation\r\nfoundational\r\nfoundationally\r\nfoundations\r\nfoundation's\r\nfounded\r\nfounder\r\nfoundered\r\nfoundering\r\nfounders\r\nfounding\r\nfoundling\r\nfoundlings\r\nfoundries\r\nfoundry\r\nfoundry's\r\nfounds\r\nfount\r\nfountain\r\nfountainhead\r\nfountains\r\nfountain's\r\nfounts\r\nfount's\r\nfour\r\nfourfold\r\nfourpence\r\nfourpenny\r\nfours\r\nfourscore\r\nfoursome\r\nfoursomes\r\nfoursquare\r\nfourteen\r\nfourteens\r\nfourteenth\r\nfourth\r\nfourthly\r\nfourths\r\nfovea\r\nfowl\r\nfowler\r\nfowling\r\nfowls\r\nfox\r\nfoxed\r\nfoxes\r\nfoxfire\r\nfoxglove\r\nfoxhole\r\nfoxholes\r\nfoxhound\r\nfoxier\r\nfoxily\r\nfoxiness\r\nfoxing\r\nfox's\r\nfoxtail\r\nfoxtrot\r\nfoxtrots\r\nfoxtrot's\r\nfoxy\r\nfoyer\r\nfracas\r\nfracases\r\nfractal\r\nfractals\r\nfractal's\r\nfraction\r\nfractional\r\nfractionalisation\r\nfractionalise\r\nfractionalised\r\nfractionalises\r\nfractionalising\r\nfractionally\r\nfractionate\r\nfractionated\r\nfractionates\r\nfractionating\r\nfractionation\r\nfractionations\r\nfractionators\r\nfractioned\r\nfractioning\r\nfractionise\r\nfractionises\r\nfractions\r\nfraction's\r\nfractious\r\nfractiously\r\nfractiousness\r\nfractocumulus\r\nfractostratus\r\nfracture\r\nfractured\r\nfractures\r\nfracturing\r\nfrae\r\nfraenum\r\nfragile\r\nfragilely\r\nfragility\r\nfragment\r\nfragmental\r\nfragmentally\r\nfragmentarily\r\nfragmentariness\r\nfragmentary\r\nfragmentation\r\nfragmentations\r\nfragmented\r\nfragmenting\r\nfragmentise\r\nfragmentised\r\nfragmentises\r\nfragmentising\r\nfragments\r\nfragrance\r\nfragrances\r\nfragrance's\r\nfragrant\r\nfragrantly\r\nfrail\r\nfrailer\r\nfrailest\r\nfrailly\r\nfrailness\r\nfrailties\r\nfrailty\r\nframboesia\r\nframe\r\nframed\r\nframer\r\nframers\r\nframes\r\nframe's\r\nframework\r\nframeworks\r\nframework's\r\nframing\r\nframings\r\nfranc\r\nfranca\r\nfranchise\r\nfranchised\r\nfranchisee\r\nfranchiser\r\nfranchises\r\nfranchise's\r\nfranchising\r\nfranchisor\r\nfrancium\r\nfrancolin\r\nfrancs\r\nfrangibility\r\nfrangible\r\nfrangipane\r\nfrangipani\r\nfrank\r\nfranked\r\nfranker\r\nfrankest\r\nfrankfurter\r\nfrankfurters\r\nfrankincense\r\nfranking\r\nfrankly\r\nfrankness\r\nfrankpledge\r\nfranks\r\nfrantic\r\nfrantically\r\nfranticly\r\nfranticness\r\nfrap\r\nfrappe\r\nfrapping\r\nfrat\r\nfraternal\r\nfraternalism\r\nfraternally\r\nfraternisation\r\nfraternisations\r\nfraternisation's\r\nfraternise\r\nfraternised\r\nfraterniser\r\nfraternisers\r\nfraternises\r\nfraternising\r\nfraternities\r\nfraternity\r\nfraternity's\r\nfratricidal\r\nfratricide\r\nfraud\r\nfrauds\r\nfraud's\r\nfraudulence\r\nfraudulent\r\nfraudulently\r\nfraught\r\nfraxinella\r\nfray\r\nfrayed\r\nfraying\r\nfrays\r\nfrazzle\r\nfrazzled\r\nfrazzles\r\nfrazzling\r\nfreak\r\nfreakier\r\nfreakish\r\nfreakishly\r\nfreakishness\r\nfreaks\r\nfreak's\r\nfreaky\r\nfreckle\r\nfreckled\r\nfreckles\r\nfreckling\r\nfreckly\r\nfree\r\nfreebie\r\nfreeboard\r\nfreeboot\r\nfreebooter\r\nfreebooters\r\nfreeborn\r\nfreed\r\nfreedman\r\nfreedmen\r\nfreedom\r\nfreedoms\r\nfreedom's\r\nfreedwoman\r\nfreehand\r\nfreehanded\r\nfreehandedly\r\nfreehearted\r\nfreehold\r\nfreeholder\r\nfreeholders\r\nfreeing\r\nfreelance\r\nfreeload\r\nfreeloader\r\nfreely\r\nfreeman\r\nfreemartin\r\nfreemason\r\nfreemasonry\r\nfreemen\r\nfreeness\r\nfreer\r\nfrees\r\nfreest\r\nfreestanding\r\nfreestone\r\nfreestyle\r\nfreethinker\r\nfreethinkers\r\nfreethinking\r\nfreeway\r\nfreeways\r\nfreeway's\r\nfreewheel\r\nfreewheeled\r\nfreewheeler\r\nfreewheelers\r\nfreewheeling\r\nfreewheels\r\nfreewill\r\nfreeze\r\nfreezer\r\nfreezers\r\nfreezes\r\nfreezing\r\nfreight\r\nfreightage\r\nfreighted\r\nfreighter\r\nfreighters\r\nfreighting\r\nfreightliner\r\nfreights\r\nfrenetic\r\nfrenetically\r\nfrenzied\r\nfrenziedly\r\nfrenzies\r\nfrenzy\r\nfrenzying\r\nfrequencies\r\nfrequency\r\nfrequent\r\nfrequentation\r\nfrequentations\r\nfrequentative\r\nfrequentatives\r\nfrequented\r\nfrequenter\r\nfrequenters\r\nfrequenting\r\nfrequently\r\nfrequentness\r\nfrequents\r\nfresco\r\nfrescoed\r\nfrescoes\r\nfrescoing\r\nfrescos\r\nfresh\r\nfreshen\r\nfreshened\r\nfreshener\r\nfresheners\r\nfreshening\r\nfreshens\r\nfresher\r\nfreshest\r\nfreshet\r\nfreshly\r\nfreshman\r\nfreshmen\r\nfreshness\r\nfreshwater\r\nfret\r\nfretful\r\nfretfully\r\nfretfulness\r\nfrets\r\nfretted\r\nfretting\r\nfretwork\r\nfriability\r\nfriable\r\nfriableness\r\nfriar\r\nfriarbird\r\nfriars\r\nfriar's\r\nfriary\r\nfricassee\r\nfrication\r\nfricative\r\nfricatives\r\nfriction\r\nfrictional\r\nfrictionally\r\nfrictionless\r\nfrictions\r\nfriction's\r\nfridge\r\nfridges\r\nfridge's\r\nfried\r\nfriend\r\nfriendless\r\nfriendlessness\r\nfriendlier\r\nfriendliest\r\nfriendlily\r\nfriendliness\r\nfriendly\r\nfriends\r\nfriend's\r\nfriendship\r\nfriendships\r\nfriendship's\r\nfries\r\nfrieze\r\nfriezes\r\nfrieze's\r\nfrig\r\nfrigate\r\nfrigates\r\nfrigate's\r\nfrigging\r\nfright\r\nfrighten\r\nfrightened\r\nfrightening\r\nfrighteningly\r\nfrightens\r\nfrightful\r\nfrightfully\r\nfrightfulness\r\nfrigid\r\nfrigidity\r\nfrigidly\r\nfrigidness\r\nfrigorific\r\nfrill\r\nfrilled\r\nfrills\r\nfrill's\r\nfrilly\r\nfringe\r\nfringed\r\nfringes\r\nfringier\r\nfringing\r\nfringy\r\nfrippery\r\nfrisk\r\nfrisked\r\nfrisker\r\nfriskier\r\nfriskily\r\nfriskiness\r\nfrisking\r\nfrisks\r\nfrisky\r\nfrisson\r\nfrissons\r\nfrit\r\nfritillary\r\nfritted\r\nfritter\r\nfritterer\r\nfritters\r\nfritting\r\nfrivol\r\nfrivolity\r\nfrivolled\r\nfrivoller\r\nfrivolling\r\nfrivolous\r\nfrivolously\r\nfrivolousness\r\nfrizz\r\nfrizzier\r\nfrizzle\r\nfrizzled\r\nfrizzles\r\nfrizzling\r\nfrizzy\r\nfro\r\nfrock\r\nfrocked\r\nfrocking\r\nfrocks\r\nfrock's\r\nfroe\r\nfrog\r\nfrogfish\r\nfroghopper\r\nfrogman\r\nfrogmarch\r\nfrogmen\r\nfrogmouth\r\nfrogs\r\nfrog's\r\nfrogspawn\r\nfrolic\r\nfrolicked\r\nfrolicking\r\nfrolics\r\nfrolicsome\r\nfrolicsomely\r\nfrolicsomeness\r\nfrom\r\nfrond\r\nfronded\r\nfrondescence\r\nfronds\r\nfrond's\r\nfront\r\nfrontage\r\nfrontal\r\nfrontally\r\nfronted\r\nfrontier\r\nfrontiers\r\nfrontier's\r\nfrontiersman\r\nfrontiersmen\r\nfronting\r\nfrontispiece\r\nfrontispieces\r\nfrontless\r\nfrontlet\r\nfronton\r\nfrontrunner\r\nfronts\r\nfrost\r\nfrostbite\r\nfrostbiting\r\nfrostbitten\r\nfrosted\r\nfrostier\r\nfrostily\r\nfrostiness\r\nfrosting\r\nfrosts\r\nfrostwork\r\nfrosty\r\nfroth\r\nfrothier\r\nfrothily\r\nfrothiness\r\nfrothing\r\nfroths\r\nfrothy\r\nfrottage\r\nfroufrou\r\nfrown\r\nfrowned\r\nfrowner\r\nfrowning\r\nfrowningly\r\nfrowns\r\nfrowsier\r\nfrowstier\r\nfrowsty\r\nfrowsy\r\nfrowzier\r\nfrowzy\r\nfroze\r\nfrozen\r\nfrozenly\r\nfrozenness\r\nfructiferous\r\nfructification\r\nfructifications\r\nfructify\r\nfructose\r\nfructose's\r\nfructuous\r\nfructuously\r\nfrugal\r\nfrugality\r\nfrugally\r\nfruit\r\nfruitage\r\nfruitarian\r\nfruitcake\r\nfruited\r\nfruiter\r\nfruiterer\r\nfruitful\r\nfruitfully\r\nfruitfulness\r\nfruitier\r\nfruition\r\nfruitless\r\nfruitlessly\r\nfruitlessness\r\nfruits\r\nfruit's\r\nfruity\r\nfrumenty\r\nfrump\r\nfrumpier\r\nfrumpish\r\nfrumps\r\nfrumpy\r\nfrustrate\r\nfrustrated\r\nfrustrates\r\nfrustrating\r\nfrustratingly\r\nfrustration\r\nfrustrations\r\nfrustum\r\nfrutescent\r\nfry\r\nfryer\r\nfrying\r\nft\r\nftp\r\nfubsy\r\nfuchsia\r\nfuck\r\nfucked\r\nfucker\r\nfuckers\r\nfucker's\r\nfucking\r\nfucks\r\nfuck's\r\nfuckwit\r\nfuddle\r\nfuddled\r\nfuddles\r\nfuddling\r\nfudge\r\nfudged\r\nfudges\r\nfudging\r\nfuel\r\nfuelled\r\nfuelling\r\nfuels\r\nfugacious\r\nfugacity\r\nfugal\r\nfugally\r\nfugato\r\nfugitive\r\nfugitively\r\nfugitiveness\r\nfugitives\r\nfugitive's\r\nfugue\r\nfulcra\r\nfulcrum\r\nfulfil\r\nfulfilled\r\nfulfiller\r\nfulfilling\r\nfulfilment\r\nfulfilments\r\nfulfilment's\r\nfulfils\r\nfulgent\r\nfulgently\r\nfulgurate\r\nfulgurated\r\nfulgurates\r\nfulgurating\r\nfulguration\r\nfulgurations\r\nfulgurous\r\nfuliginous\r\nfull\r\nfullback\r\nfuller\r\nfullest\r\nfullness\r\nfully\r\nfulmar\r\nfulminate\r\nfulminated\r\nfulminates\r\nfulminating\r\nfulmination\r\nfulminations\r\nfulminator\r\nfulminators\r\nfulminous\r\nfulsome\r\nfulsomely\r\nfulsomeness\r\nfulvous\r\nfumble\r\nfumbled\r\nfumbler\r\nfumbles\r\nfumbling\r\nfumblingly\r\nfume\r\nfumed\r\nfumes\r\nfumigant\r\nfumigate\r\nfumigated\r\nfumigates\r\nfumigation\r\nfumigations\r\nfumigator\r\nfumigators\r\nfuming\r\nfumitory\r\nfumy\r\nfun\r\nfunambulist\r\nfunction\r\nfunctional\r\nfunctionalise\r\nfunctionalises\r\nfunctionalism\r\nfunctionalist\r\nfunctionalistic\r\nfunctionalists\r\nfunctionalities\r\nfunctionality\r\nfunctionally\r\nfunctionary\r\nfunctioned\r\nfunctioning\r\nfunctionless\r\nfunctions\r\nfunction's\r\nfund\r\nfundament\r\nfundamental\r\nfundamentalism\r\nfundamentalist\r\nfundamentalists\r\nfundamentalist's\r\nfundamentally\r\nfundamentals\r\nfunded\r\nfunding\r\nfundraiser\r\nfundraisers\r\nfundraiser's\r\nfundraising\r\nfunds\r\nfuneral\r\nfunerals\r\nfuneral's\r\nfunerary\r\nfunereal\r\nfunereally\r\nfunfair\r\nfungal\r\nfungi\r\nfungible\r\nfungicidal\r\nfungicidally\r\nfungicide\r\nfungicides\r\nfungous\r\nfungus\r\nfunguses\r\nfunicular\r\nfunk\r\nfunkier\r\nfunkiness\r\nfunky\r\nfunnel\r\nfunnelled\r\nfunnelling\r\nfunnels\r\nfunnier\r\nfunnies\r\nfunniest\r\nfunnily\r\nfunniness\r\nfunning\r\nfunny\r\nfur\r\nfuran\r\nfurbearer\r\nfurbelow\r\nfurbish\r\nfurbisher\r\nfurbishes\r\nfurbishing\r\nfurcating\r\nfurfural\r\nfurfuran\r\nfuries\r\nfurious\r\nfuriously\r\nfuriousness\r\nfurl\r\nfurled\r\nfurless\r\nfurlong\r\nfurlongs\r\nfurlough\r\nfurloughed\r\nfurloughs\r\nfurmenty\r\nfurnace\r\nfurnaces\r\nfurnace's\r\nfurnish\r\nfurnished\r\nfurnisher\r\nfurnishers\r\nfurnishes\r\nfurnishing\r\nfurnishings\r\nfurniture\r\nfurore\r\nfurores\r\nfurore's\r\nfurred\r\nfurrier\r\nfurriers\r\nfurriery\r\nfurring\r\nfurrow\r\nfurrowed\r\nfurrowing\r\nfurrows\r\nfurry\r\nfurs\r\nfur's\r\nfurther\r\nfurtherance\r\nfurthered\r\nfurtherer\r\nfurthering\r\nfurthermore\r\nfurthermost\r\nfurthers\r\nfurthest\r\nfurtive\r\nfurtively\r\nfurtiveness\r\nfuruncle\r\nfurunculous\r\nfury\r\nfury's\r\nfurze\r\nfuscous\r\nfuse\r\nfused\r\nfuselage\r\nfuselages\r\nfuses\r\nfusibility\r\nfusible\r\nfusil\r\nfusilier\r\nfusillade\r\nfusillades\r\nfusing\r\nfusion\r\nfusionism\r\nfusionist\r\nfusions\r\nfuss\r\nfussbudget\r\nfusser\r\nfussier\r\nfussily\r\nfussiness\r\nfussing\r\nfusspot\r\nfussy\r\nfustian\r\nfustians\r\nfustic\r\nfustigate\r\nfustigated\r\nfustigates\r\nfustigating\r\nfustigation\r\nfustigations\r\nfustily\r\nfustiness\r\nfusty\r\nfutile\r\nfutilely\r\nfutileness\r\nfutilitarian\r\nfutility\r\nfuttock\r\nfuture\r\nfutureless\r\nfutures\r\nfuture's\r\nfuturism\r\nfuturist\r\nfuturistic\r\nfuturistically\r\nfuturists\r\nfuturity\r\nfuturology\r\nfuzz\r\nfuzzed\r\nfuzzier\r\nfuzziest\r\nfuzzily\r\nfuzziness\r\nfuzzy\r\nfylfot\r\ng's\r\ngab\r\ngabardine\r\ngabardines\r\ngabber\r\ngabbier\r\ngabbing\r\ngabble\r\ngabbled\r\ngabbler\r\ngabbles\r\ngabbling\r\ngabby\r\ngabfest\r\ngabfests\r\ngabion\r\ngabionade\r\ngable\r\ngabled\r\ngables\r\ngad\r\ngadabout\r\ngadabouts\r\ngadded\r\ngadding\r\ngadfly\r\ngadget\r\ngadgetry\r\ngadgets\r\ngadget's\r\ngadoid\r\ngadolinite\r\ngadolinium\r\ngadroon\r\ngadwall\r\ngaff\r\ngaffe\r\ngaffer\r\ngaffes\r\ngaffs\r\ngag\r\ngaga\r\ngage\r\ngages\r\ngagged\r\ngagger\r\ngagging\r\ngaggle\r\ngagman\r\ngagmen\r\ngags\r\ngagster\r\ngagsters\r\ngahnite\r\ngaieties\r\ngaiety\r\ngaillardia\r\ngaily\r\ngain\r\ngained\r\ngainer\r\ngainers\r\ngainful\r\ngainfully\r\ngainfulness\r\ngaining\r\ngains\r\ngainsay\r\ngainsayer\r\ngait\r\ngaited\r\ngaiter\r\ngaiters\r\ngaits\r\ngal\r\ngala\r\ngalactic\r\ngalangal\r\ngalantine\r\ngalaxies\r\ngalaxy\r\ngalaxy's\r\ngalbanum\r\ngale\r\ngalena\r\ngales\r\ngalingale\r\ngalipot\r\ngall\r\ngallant\r\ngallantly\r\ngallantry\r\ngallants\r\ngallbladder\r\ngalleass\r\ngalled\r\ngalleon\r\ngalleons\r\ngalleried\r\ngalleries\r\ngallery\r\ngalley\r\ngalleys\r\ngalley's\r\ngallfly\r\ngalliard\r\ngalligaskins\r\ngallimaufry\r\ngallinacean\r\ngallinaceous\r\ngalling\r\ngallingly\r\ngallinule\r\ngallium\r\ngallivant\r\ngallivanted\r\ngallivanting\r\ngallivants\r\ngallnut\r\ngalloglass\r\ngallon\r\ngallons\r\ngallon's\r\ngalloon\r\ngallop\r\ngallopade\r\ngalloped\r\ngalloper\r\ngallopers\r\ngalloping\r\ngallops\r\ngallous\r\ngallows\r\ngallowses\r\ngalls\r\ngallstone\r\ngallstones\r\ngaloot\r\ngalore\r\ngalosh\r\ngaloshes\r\ngals\r\ngalumph\r\ngalvanic\r\ngalvanisation\r\ngalvanisations\r\ngalvanisation's\r\ngalvanise\r\ngalvanised\r\ngalvaniser\r\ngalvanisers\r\ngalvanises\r\ngalvanising\r\ngalvanism\r\ngalvanometer\r\ngalvanometers\r\ngalvanometer's\r\ngalvanometric\r\ngalvanoscope\r\ngalyak\r\ngambado\r\ngambit\r\ngambits\r\ngamble\r\ngambled\r\ngambler\r\ngamblers\r\ngambles\r\ngambling\r\ngambol\r\ngambolled\r\ngambolling\r\ngambols\r\ngambrel\r\ngame\r\ngamecock\r\ngamed\r\ngamekeeper\r\ngamekeepers\r\ngamelan\r\ngamely\r\ngameness\r\ngames\r\ngamesman\r\ngamesmanship\r\ngamesome\r\ngamesomely\r\ngamesomeness\r\ngamester\r\ngamete\r\ngametes\r\ngamete's\r\ngametocyte\r\ngamier\r\ngamily\r\ngamin\r\ngamine\r\ngaminess\r\ngaming\r\ngamma\r\ngammadion\r\ngammas\r\ngamming\r\ngammon\r\ngamogenesis\r\ngamp\r\ngamut\r\ngamy\r\ngander\r\ngang\r\ngangbang\r\nganger\r\ngangland\r\nganglier\r\ngangling\r\nganglion\r\ngangly\r\ngangplank\r\ngangplow\r\ngangrene\r\ngangrened\r\ngangrenes\r\ngangrening\r\ngangrenous\r\ngangs\r\ngang's\r\ngangster\r\ngangsters\r\ngangster's\r\ngangue\r\ngangway\r\ngangways\r\nganister\r\ngannet\r\ngantlet\r\ngantries\r\ngantry\r\ngaol\r\ngap\r\ngape\r\ngaped\r\ngaper\r\ngapes\r\ngapeworm\r\ngaping\r\ngapingly\r\ngapped\r\ngapping\r\ngaps\r\ngap's\r\ngar\r\ngarage\r\ngaraged\r\ngarages\r\ngaraging\r\ngarb\r\ngarbage\r\ngarbage's\r\ngarbanzo\r\ngarbed\r\ngarble\r\ngarbled\r\ngarbler\r\ngarbles\r\ngarbling\r\ngarboard\r\ngarden\r\ngardened\r\ngardener\r\ngardeners\r\ngardenia\r\ngardenias\r\ngardening\r\ngardens\r\ngarderobe\r\ngarfish\r\ngargantuan\r\ngarget\r\ngargle\r\ngargled\r\ngargles\r\ngargling\r\ngargoyle\r\ngargoyles\r\ngarish\r\ngarishly\r\ngarishness\r\ngarland\r\ngarlanded\r\ngarlands\r\ngarlic\r\ngarlicky\r\ngarment\r\ngarmented\r\ngarmenting\r\ngarments\r\ngarment's\r\ngarner\r\ngarnered\r\ngarnering\r\ngarners\r\ngarnet\r\ngarnierite\r\ngarnish\r\ngarnished\r\ngarnishee\r\ngarnishees\r\ngarnishes\r\ngarnishment\r\ngarnishments\r\ngarniture\r\ngarnitures\r\ngarpike\r\ngarret\r\ngarrets\r\ngarrison\r\ngarrisoned\r\ngarrisoning\r\ngarrisons\r\ngarrotte\r\ngarrotted\r\ngarrotter\r\ngarrottes\r\ngarrottes\r\ngarrotting\r\ngarrulity\r\ngarrulous\r\ngarrulously\r\ngarrulousness\r\ngarter\r\ngartered\r\ngartering\r\ngarters\r\ngarter's\r\ngarth\r\ngas\r\ngasbag\r\ngaseous\r\ngaseousness\r\ngases\r\ngash\r\ngashed\r\ngashes\r\ngashing\r\ngasholder\r\ngashouse\r\ngash's\r\ngasification\r\ngasiform\r\ngasket\r\ngaskets\r\ngaskin\r\ngaslight\r\ngaslights\r\ngaslit\r\ngasman\r\ngasohol\r\ngasoliers\r\ngasoline\r\ngasometer\r\ngasp\r\ngasped\r\ngasper\r\ngaspers\r\ngasping\r\ngaspingly\r\ngasps\r\ngas's\r\ngassed\r\ngasser\r\ngassers\r\ngasses\r\ngassiness\r\ngassing\r\ngassings\r\ngassy\r\ngastight\r\ngastric\r\ngastritis\r\ngastroenteritis\r\ngastrointestinal\r\ngastronome\r\ngastronomes\r\ngastronomic\r\ngastronomically\r\ngastronomist\r\ngastronomy\r\ngastropod\r\ngastrotrich\r\ngastrula\r\ngasworker\r\ngasworks\r\ngat\r\ngate\r\ngated\r\ngatefold\r\ngatehouse\r\ngatekeeper\r\ngatekeepers\r\ngatekeeper's\r\ngatepost\r\ngates\r\ngateway\r\ngateways\r\ngateway's\r\ngather\r\ngathered\r\ngatherer\r\ngatherers\r\ngathering\r\ngatherings\r\ngathers\r\ngating\r\ngatling\r\ngator\r\ngauche\r\ngauchely\r\ngaucheness\r\ngaucherie\r\ngaucheries\r\ngaud\r\ngaudery\r\ngaudier\r\ngaudies\r\ngaudily\r\ngaudiness\r\ngauds\r\ngaudy\r\ngauge\r\ngaugeable\r\ngauged\r\ngauges\r\ngauging\r\ngaunt\r\ngauntlet\r\ngauntleted\r\ngauntly\r\ngauntness\r\ngaur\r\ngauss\r\ngausses\r\ngauze\r\ngauzed\r\ngauzelike\r\ngauzes\r\ngauzily\r\ngauziness\r\ngauzing\r\ngauzy\r\ngave\r\ngavel\r\ngavelled\r\ngavelling\r\ngavial\r\ngavotte\r\ngavottes\r\ngawk\r\ngawkier\r\ngawkily\r\ngawks\r\ngawky\r\ngawp\r\ngay\r\ngayer\r\ngayest\r\ngayety\r\ngayness\r\ngaze\r\ngazebo\r\ngazebos\r\ngazebo's\r\ngazed\r\ngazehound\r\ngazelle\r\ngazelles\r\ngazer\r\ngazers\r\ngazes\r\ngazette\r\ngazetted\r\ngazetteer\r\ngazetteers\r\ngazettes\r\ngazetting\r\ngazing\r\ngear\r\ngearbox\r\ngeared\r\ngearing\r\ngearless\r\ngears\r\ngearshift\r\ngearwheel\r\ngecko\r\ngee\r\ngeek\r\ngeeks\r\ngeek's\r\ngeese\r\ngeezer\r\ngefilte\r\ngeisha\r\ngeishas\r\ngel\r\ngelada\r\ngelatine\r\ngelatinisation\r\ngelatinise\r\ngelatinised\r\ngelatinises\r\ngelatinising\r\ngelatinous\r\ngelatinously\r\ngelatinousness\r\ngeld\r\ngelding\r\ngeldings\r\ngelid\r\ngelidity\r\ngelidly\r\ngelled\r\ngelling\r\ngels\r\ngel's\r\ngelt\r\ngem\r\ngeminate\r\ngeminately\r\ngemlike\r\ngemmated\r\ngemmates\r\ngemmating\r\ngemming\r\ngems\r\ngem's\r\ngemsbok\r\ngemstone\r\ngemstones\r\ngemstone's\r\ngendarme\r\ngendarmerie\r\ngender\r\ngendered\r\ngendering\r\ngenders\r\ngender's\r\ngene\r\ngenealogical\r\ngenealogically\r\ngenealogies\r\ngenealogist\r\ngenealogists\r\ngenealogy\r\ngenera\r\ngenerable\r\ngeneral\r\ngeneralisation\r\ngeneralisations\r\ngeneralisation's\r\ngeneralise\r\ngeneralised\r\ngeneralises\r\ngeneralising\r\ngeneralissimo\r\ngeneralist\r\ngeneralists\r\ngeneralist's\r\ngeneralities\r\ngenerality\r\ngenerally\r\ngeneralness\r\ngenerals\r\ngeneral's\r\ngenerate\r\ngenerated\r\ngenerates\r\ngenerating\r\ngeneration\r\ngenerational\r\ngenerations\r\ngenerative\r\ngeneratively\r\ngenerator\r\ngenerators\r\ngenerator's\r\ngeneric\r\ngenerically\r\ngenerosities\r\ngenerosity\r\ngenerosity's\r\ngenerous\r\ngenerously\r\ngenerousness\r\ngenes\r\ngene's\r\ngenesis\r\ngenet\r\ngenetic\r\ngenetically\r\ngeneticist\r\ngeneticists\r\ngeneticist's\r\ngenetics\r\ngenial\r\ngeniality\r\ngenially\r\ngenialness\r\ngenie\r\ngenies\r\ngenie's\r\ngenii\r\ngenipap\r\ngenital\r\ngenitalia\r\ngenitally\r\ngenitals\r\ngenitive\r\ngenitives\r\ngenitive's\r\ngenitor\r\ngenitourinary\r\ngenius\r\ngeniuses\r\ngenius's\r\ngenocide\r\ngenocides\r\ngenome\r\ngenomes\r\ngenome's\r\ngenotype\r\ngenotypes\r\ngenotype's\r\ngenotypic\r\ngenre\r\ngenres\r\ngenre's\r\ngent\r\ngenteel\r\ngenteelism\r\ngenteelly\r\ngenteelness\r\ngentian\r\ngentians\r\ngentile\r\ngentiles\r\ngentility\r\ngentle\r\ngentled\r\ngentlefolk\r\ngentleman\r\ngentlemanlike\r\ngentlemanliness\r\ngentlemanly\r\ngentlemen\r\ngentleness\r\ngentler\r\ngentlest\r\ngentlewoman\r\ngentlewomen\r\ngentlewomen's\r\ngentling\r\ngently\r\ngentries\r\ngentrification\r\ngentry\r\ngents\r\ngenuflect\r\ngenuflected\r\ngenuflecting\r\ngenuflection\r\ngenuflects\r\ngenuine\r\ngenuinely\r\ngenuineness\r\ngenus\r\ngeocentric\r\ngeocentrically\r\ngeocentricism\r\ngeochemist\r\ngeochemistry\r\ngeochronologist\r\ngeochronology\r\ngeode\r\ngeodes\r\ngeode's\r\ngeodesic\r\ngeodesics\r\ngeodesist\r\ngeodesy\r\ngeodetic\r\ngeodetically\r\ngeodynamics\r\ngeognosy\r\ngeographer\r\ngeographers\r\ngeographer's\r\ngeographic\r\ngeographical\r\ngeographically\r\ngeographies\r\ngeography\r\ngeoid\r\ngeologic\r\ngeological\r\ngeologise\r\ngeologised\r\ngeologises\r\ngeologising\r\ngeologist\r\ngeologists\r\ngeologist's\r\ngeology\r\ngeomagnetic\r\ngeomagnetism\r\ngeomancy\r\ngeomantic\r\ngeomechanics\r\ngeometer\r\ngeometers\r\ngeometer's\r\ngeometric\r\ngeometrical\r\ngeometrically\r\ngeometrician\r\ngeometrid\r\ngeometries\r\ngeometrise\r\ngeometrised\r\ngeometrises\r\ngeometrising\r\ngeometry\r\ngeomorphic\r\ngeomorphology\r\ngeophysical\r\ngeophysicist\r\ngeophysicists\r\ngeophysics\r\ngeopolitical\r\ngeopolitically\r\ngeopolitics\r\ngeoponic\r\ngeoponics\r\ngeorgic\r\ngeostatic\r\ngeosynchronous\r\ngeotaxis\r\ngeotectonic\r\ngeothermal\r\ngeothermic\r\ngeotropic\r\ngeotropically\r\ngeotropism\r\ngeranial\r\ngeranium\r\ngerbil\r\ngerent\r\ngerenuk\r\ngerfalcon\r\ngeriatric\r\ngeriatrician\r\ngeriatricians\r\ngeriatrics\r\ngeriatrist\r\ngerm\r\ngermander\r\ngermane\r\ngermanise\r\ngermanised\r\ngermanises\r\ngermanising\r\ngermanium\r\ngermanous\r\ngermen\r\ngermfree\r\ngermicidal\r\ngermicide\r\ngermicides\r\ngerminal\r\ngerminant\r\ngerminate\r\ngerminated\r\ngerminates\r\ngerminating\r\ngermination\r\ngerminations\r\ngermproof\r\ngerms\r\ngerm's\r\ngerontocracy\r\ngerontologist\r\ngerontologists\r\ngerontology\r\ngerrymander\r\ngerrymandered\r\ngerrymandering\r\ngerund\r\ngerundial\r\ngerundive\r\ngesso\r\ngestalt\r\ngestate\r\ngestated\r\ngestates\r\ngestating\r\ngestation\r\ngestational\r\ngestations\r\ngestation's\r\ngesticulate\r\ngesticulated\r\ngesticulates\r\ngesticulating\r\ngesticulation\r\ngesticulations\r\ngesticulator\r\ngesticulators\r\ngesticulatory\r\ngesture\r\ngestured\r\ngestures\r\ngesturing\r\nget\r\ngetaway\r\ngetaways\r\ngets\r\ngetter\r\ngetting\r\ngetup\r\ngetups\r\ngewgaw\r\ngeyser\r\ngeysers\r\nghastlier\r\nghastliness\r\nghastly\r\nghee\r\ngherkin\r\ngherkins\r\nghetto\r\nghettoise\r\nghettoised\r\nghettoises\r\nghettoising\r\nghettos\r\nghost\r\nghosted\r\nghosting\r\nghostlier\r\nghostlike\r\nghostliness\r\nghostly\r\nghosts\r\nghoul\r\nghoulish\r\nghoulishly\r\nghoulishness\r\nghouls\r\ngiant\r\ngiantess\r\ngiants\r\ngiant's\r\ngibber\r\ngibbered\r\ngibbering\r\ngibberish\r\ngibbers\r\ngibbet\r\ngibbeted\r\ngibbeting\r\ngibbets\r\ngibbon\r\ngibbons\r\ngibbous\r\ngibbously\r\ngibbousness\r\ngibbsite\r\ngibe\r\ngiber\r\ngibes\r\ngibing\r\ngiblet\r\ngiblets\r\ngiddied\r\ngiddier\r\ngiddily\r\ngiddiness\r\ngiddy\r\ngiddying\r\ngift\r\ngifted\r\ngiftedly\r\ngiftedness\r\ngifts\r\ngig\r\ngigabit\r\ngigabyte\r\ngigabytes\r\ngigahertz\r\ngigantesque\r\ngigantic\r\ngigantically\r\ngiganticness\r\ngigantism\r\ngigantisms\r\ngigantomachy\r\ngigging\r\ngiggle\r\ngiggled\r\ngiggler\r\ngiggles\r\ngiggling\r\ngiggly\r\ngigolo\r\ngigot\r\ngigots\r\ngigs\r\ngig's\r\ngigue\r\ngild\r\ngilded\r\ngilder\r\ngilding\r\ngilds\r\ngill\r\ngilled\r\ngills\r\ngill's\r\ngillyflower\r\ngilt\r\ngilthead\r\ngimballed\r\ngimbals\r\ngimcrack\r\ngimlet\r\ngimlets\r\ngimlet's\r\ngimmick\r\ngimmickry\r\ngimmicks\r\ngimmick's\r\ngimmicky\r\ngimp\r\ngimpy\r\ngin\r\nginger\r\ngingerbread\r\ngingered\r\ngingering\r\ngingerliness\r\ngingerly\r\ngingersnap\r\ngingery\r\ngingham\r\nginghams\r\ngingivitis\r\ngingko\r\ngink\r\nginkgo\r\nginning\r\ngins\r\ngin's\r\nginseng\r\ngip\r\ngiraffe\r\ngiraffes\r\ngiraffe's\r\ngirandole\r\ngird\r\ngirded\r\ngirder\r\ngirders\r\ngirder's\r\ngirding\r\ngirdle\r\ngirdled\r\ngirdler\r\ngirdles\r\ngirdling\r\ngirds\r\ngirl\r\ngirlfriend\r\ngirlfriends\r\ngirlfriend's\r\ngirlhood\r\ngirlhoods\r\ngirlie\r\ngirlish\r\ngirlishly\r\ngirlishness\r\ngirls\r\ngirl's\r\ngirly\r\ngiro\r\ngirt\r\ngirth\r\ngisarme\r\ngismo\r\ngismos\r\ngist\r\ngit\r\ngive\r\ngiveaway\r\ngiveaways\r\ngiven\r\ngivens\r\ngiver\r\ngivers\r\ngives\r\ngiveth\r\ngiving\r\ngizmo\r\ngizmos\r\ngizmo's\r\ngizzard\r\ngizzards\r\ngizzard's\r\nglacial\r\nglacially\r\nglaciate\r\nglaciated\r\nglaciates\r\nglaciating\r\nglaciation\r\nglacier\r\nglaciers\r\nglacier's\r\nglaciological\r\nglaciologist\r\nglaciology\r\nglacis\r\nglad\r\ngladded\r\ngladden\r\ngladdened\r\ngladdening\r\ngladdens\r\ngladder\r\ngladdest\r\ngladding\r\nglade\r\nglades\r\ngladiate\r\ngladiator\r\ngladiatorial\r\ngladiators\r\ngladiola\r\ngladiolus\r\ngladly\r\ngladness\r\ngladsome\r\ngladsomely\r\ngladsomeness\r\nglair\r\nglaive\r\nglamorisation\r\nglamorisations\r\nglamorise\r\nglamorised\r\nglamorises\r\nglamorising\r\nglamorous\r\nglamorously\r\nglamorousness\r\nglamour\r\nglance\r\nglanced\r\nglances\r\nglancing\r\ngland\r\nglandered\r\nglandless\r\nglands\r\ngland's\r\nglandular\r\nglandule\r\nglare\r\nglared\r\nglares\r\nglarier\r\nglaring\r\nglaringly\r\nglaringness\r\nglary\r\nglass\r\nglassblower\r\nglassblowing\r\nglassed\r\nglasses\r\nglassful\r\nglasshouse\r\nglassier\r\nglassily\r\nglassine\r\nglassiness\r\nglassless\r\nglassmaker\r\nglassmaking\r\nglassware\r\nglasswork\r\nglassworker\r\nglassworks\r\nglasswort\r\nglassy\r\nglaucoma\r\nglaze\r\nglazed\r\nglazer\r\nglazers\r\nglazes\r\nglazier\r\nglaziers\r\nglazing\r\ngleam\r\ngleamed\r\ngleaming\r\ngleams\r\nglean\r\ngleaned\r\ngleaner\r\ngleaning\r\ngleanings\r\ngleans\r\nglebe\r\nglee\r\ngleeful\r\ngleefully\r\ngleefulness\r\ngleeman\r\nglees\r\ngleesome\r\nglen\r\nglens\r\nglen's\r\nglib\r\nglibber\r\nglibbest\r\nglibly\r\nglibness\r\nglide\r\nglided\r\nglider\r\ngliders\r\nglides\r\ngliding\r\nglimmer\r\nglimmered\r\nglimmering\r\nglimmers\r\nglimpse\r\nglimpsed\r\nglimpser\r\nglimpsers\r\nglimpses\r\nglimpsing\r\nglint\r\nglinted\r\nglinting\r\nglints\r\nglissade\r\nglissando\r\nglisten\r\nglistened\r\nglistening\r\nglistens\r\nglister\r\nglitch\r\nglitches\r\nglitch's\r\nglitter\r\nglittered\r\nglittering\r\nglitteringly\r\nglitters\r\nglittery\r\ngloaming\r\ngloat\r\ngloated\r\ngloater\r\ngloats\r\nglob\r\nglobal\r\nglobalisation\r\nglobalisations\r\nglobalise\r\nglobalised\r\nglobalises\r\nglobally\r\nglobate\r\nglobe\r\nglobeflower\r\nglobes\r\nglobe's\r\nglobetrotter\r\nglobing\r\ngloboid\r\nglobular\r\nglobularity\r\nglobularly\r\nglobule\r\nglobulin\r\nglobulins\r\nglockenspiel\r\nglom\r\nglomeration\r\nglommed\r\nglomming\r\ngloms\r\ngloom\r\ngloomier\r\ngloomily\r\ngloominess\r\nglooms\r\ngloomy\r\ngloried\r\nglories\r\nglorification\r\nglorifications\r\nglorified\r\nglorifier\r\nglorifiers\r\nglorifies\r\nglorify\r\nglorious\r\ngloriously\r\ngloriousness\r\nglory\r\nglorying\r\ngloss\r\nglossarial\r\nglossaries\r\nglossarist\r\nglossary\r\nglossary's\r\nglossator\r\nglossed\r\nglosses\r\nglossier\r\nglossies\r\nglossily\r\nglossiness\r\nglossing\r\nglossy\r\nglottal\r\nglottis\r\nglottochronology\r\nglove\r\ngloved\r\ngloveless\r\nglover\r\nglovers\r\ngloves\r\ngloving\r\nglow\r\nglowed\r\nglower\r\nglowered\r\nglowering\r\nglowers\r\nglowing\r\nglowingly\r\nglows\r\ngloze\r\nglue\r\nglued\r\nglueing\r\ngluer\r\ngluers\r\nglues\r\ngluey\r\ngluing\r\nglum\r\nglumly\r\nglummer\r\nglummest\r\nglumness\r\ngluon\r\nglut\r\nglutamate\r\nglutamine\r\ngluten\r\ngluteus\r\nglutinous\r\nglutinously\r\nglutinousness\r\ngluts\r\nglutted\r\nglutting\r\nglutton\r\ngluttonise\r\ngluttonises\r\ngluttonous\r\ngluttonously\r\ngluttonousness\r\ngluttons\r\nglutton's\r\ngluttony\r\nglycerinate\r\nglycerinated\r\nglycerine\r\nglycerol\r\nglycerolise\r\nglycerolised\r\nglycerolises\r\nglycogen\r\nglycol\r\nglycolic\r\nglycols\r\nglycopeptides\r\nglycosidase\r\nglycoside\r\nglyph\r\nglyptic\r\nglyptodont\r\nglyptography\r\ngnarl\r\ngnarled\r\ngnarls\r\ngnarly\r\ngnash\r\ngnashes\r\ngnashing\r\ngnat\r\ngnatcatcher\r\ngnats\r\ngnat's\r\ngnaw\r\ngnawed\r\ngnawer\r\ngnawing\r\ngnaws\r\ngneiss\r\ngneissic\r\ngnocchi\r\ngnome\r\ngnomes\r\ngnomic\r\ngnomish\r\ngnomon\r\ngnomonic\r\ngnosis\r\ngnostic\r\ngnosticism\r\ngnu\r\ngnus\r\ngo\r\ngoad\r\ngoaded\r\ngoading\r\ngoads\r\ngoal\r\ngoalie\r\ngoalkeeper\r\ngoalmouth\r\ngoalpost\r\ngoals\r\ngoal's\r\ngoaltender\r\ngoaltending\r\ngoanna\r\ngoat\r\ngoatee\r\ngoatees\r\ngoatee's\r\ngoatfish\r\ngoatherd\r\ngoatish\r\ngoats\r\ngoat's\r\ngoatskin\r\ngoatsucker\r\ngob\r\ngobbet\r\ngobble\r\ngobbled\r\ngobbledegook\r\ngobbledygook\r\ngobbler\r\ngobblers\r\ngobbles\r\ngobbling\r\ngoblet\r\ngoblets\r\ngoblet's\r\ngoblin\r\ngoblins\r\ngoblin's\r\ngobo\r\ngobstopper\r\ngoby\r\ngod\r\ngodchild\r\ngoddamn\r\ngoddamned\r\ngoddaughter\r\ngoddess\r\ngoddesses\r\ngoddess's\r\ngodfather\r\ngodforsaken\r\ngodhead\r\ngodhood\r\ngodless\r\ngodlessness\r\ngodlier\r\ngodlike\r\ngodlikeness\r\ngodliness\r\ngodly\r\ngodmother\r\ngodmothers\r\ngodmother's\r\ngodparent\r\ngods\r\ngod's\r\ngodsend\r\ngodsends\r\ngodson\r\ngodwit\r\ngoer\r\ngoes\r\ngoethite\r\ngoggle\r\ngogglebox\r\ngoggled\r\ngoggles\r\ngoggling\r\ngoing\r\ngoings\r\ngoitre\r\ngoitres\r\ngold\r\ngoldbeater\r\ngoldbeating\r\ngoldbrick\r\ngolden\r\ngoldenly\r\ngoldenness\r\ngoldenrod\r\ngoldenseal\r\ngoldfinch\r\ngoldfish\r\ngoldilocks\r\ngoldsmith\r\ngoldsmiths\r\ngoldthread\r\ngolem\r\ngolf\r\ngolfer\r\ngolfers\r\ngolfing\r\ngoliard\r\ngoliardery\r\ngolliwog\r\ngolly\r\ngomuti\r\ngonad\r\ngonads\r\ngonad's\r\ngondola\r\ngondolas\r\ngondolier\r\ngondoliers\r\ngone\r\ngoner\r\ngonfalon\r\ngong\r\ngongs\r\ngong's\r\ngonococcus\r\ngonorrhoea\r\ngonorrhoeal\r\ngoober\r\ngood\r\ngoodbye\r\ngoodbyes\r\ngoodbye's\r\ngoodie\r\ngoodies\r\ngoodie's\r\ngoodish\r\ngoodly\r\ngoodness\r\ngoodnight\r\ngoods\r\ngoodwife\r\ngoodwill\r\ngoody\r\ngooey\r\ngoof\r\ngoofball\r\ngoofed\r\ngoofier\r\ngoofily\r\ngoofiness\r\ngoofing\r\ngoofs\r\ngoofy\r\ngoogly\r\ngoogol\r\ngoogolplex\r\ngook\r\ngoon\r\ngooney\r\ngoosander\r\ngoose\r\ngooseberry\r\ngooseflesh\r\ngoosefoot\r\ngoosegrass\r\ngooseneck\r\ngoosenecked\r\ngooses\r\ngoosing\r\ngoosy\r\ngopher\r\ngophers\r\ngoral\r\ngorblimey\r\ngore\r\ngored\r\ngores\r\ngorge\r\ngorgeous\r\ngorgeously\r\ngorgeousness\r\ngorger\r\ngorgerin\r\ngorges\r\ngorging\r\ngorgon\r\ngorgonian\r\ngorier\r\ngorilla\r\ngorillas\r\ngorilla's\r\ngoring\r\ngormandise\r\ngormandised\r\ngormandiser\r\ngormandises\r\ngormandising\r\ngormless\r\ngorse\r\ngory\r\ngosh\r\ngoshawk\r\ngosling\r\ngospel\r\ngospeller\r\ngospellers\r\ngospels\r\ngossamer\r\ngossip\r\ngossiper\r\ngossipers\r\ngossipmonger\r\ngossipmongers\r\ngossips\r\ngossipy\r\ngossoon\r\ngot\r\ngotcha\r\ngotten\r\ngouache\r\ngouda\r\ngouge\r\ngouged\r\ngouger\r\ngouges\r\ngouging\r\ngoulash\r\ngourd\r\ngourmand\r\ngourmandise\r\ngourmandised\r\ngourmandises\r\ngourmandising\r\ngourmands\r\ngourmand's\r\ngourmet\r\ngourmets\r\ngout\r\ngoutweed\r\ngouty\r\ngovern\r\ngovernable\r\ngovernance\r\ngoverned\r\ngoverness\r\ngovernesses\r\ngoverning\r\ngovernment\r\ngovernmental\r\ngovernmentally\r\ngovernments\r\ngovernment's\r\ngovernor\r\ngovernors\r\ngovernor's\r\ngovernorship\r\ngoverns\r\ngown\r\ngowned\r\ngowns\r\ngoy\r\ngoys\r\ngrab\r\ngrabbed\r\ngrabber\r\ngrabbers\r\ngrabber's\r\ngrabbier\r\ngrabbing\r\ngrabble\r\ngrabbled\r\ngrabbles\r\ngrabbling\r\ngrabby\r\ngrabs\r\ngrace\r\ngraced\r\ngraceful\r\ngracefully\r\ngracefulness\r\ngraceless\r\ngracelessly\r\ngracelessness\r\ngraces\r\ngracility\r\ngracing\r\ngracious\r\ngraciously\r\ngraciousness\r\ngrackle\r\ngrad\r\ngradable\r\ngradate\r\ngradated\r\ngradates\r\ngradating\r\ngradation\r\ngradational\r\ngradationally\r\ngradations\r\ngradation's\r\ngrade\r\ngraded\r\ngrader\r\ngraders\r\ngrades\r\ngradient\r\ngradients\r\ngradient's\r\ngrading\r\ngradiometer\r\ngradiometers\r\ngradiometer's\r\ngrads\r\ngradual\r\ngradualism\r\ngradualist\r\ngradualists\r\ngradually\r\ngradualness\r\ngraduate\r\ngraduated\r\ngraduates\r\ngraduating\r\ngraduation\r\ngraduations\r\ngraduator\r\ngraffiti\r\ngraffito\r\ngraft\r\ngrafted\r\ngrafter\r\ngrafting\r\ngrafts\r\ngraham\r\ngrahams\r\ngraham's\r\ngrail\r\ngrails\r\ngrain\r\ngrained\r\ngrainer\r\ngrainier\r\ngraininess\r\ngraining\r\ngrains\r\ngrainy\r\ngrallatorial\r\ngramercy\r\ngramicidin\r\ngrammar\r\ngrammarian\r\ngrammarians\r\ngrammars\r\ngrammar's\r\ngrammatical\r\ngrammaticality\r\ngrammatically\r\ngrammaticalness\r\ngrammatology\r\ngramme\r\ngrammes\r\ngramophone\r\ngramophones\r\ngramophone's\r\ngramps\r\ngrampus\r\ngranadilla\r\ngranaries\r\ngranary\r\ngranary's\r\ngrand\r\ngrandad\r\ngrandaddy\r\ngrandam\r\ngrandame\r\ngrandaunt\r\ngrandchild\r\ngrandchildren\r\ngranddad\r\ngranddaughter\r\ngranddaughters\r\ngrandee\r\ngrander\r\ngrandest\r\ngrandeur\r\ngrandfather\r\ngrandfatherly\r\ngrandfathers\r\ngrandfather's\r\ngrandiloquence\r\ngrandiloquent\r\ngrandiloquently\r\ngrandiose\r\ngrandiosely\r\ngrandiosity\r\ngrandioso\r\ngrandkid\r\ngrandkids\r\ngrandkid's\r\ngrandly\r\ngrandma\r\ngrandma's\r\ngrandmaster\r\ngrandmasters\r\ngrandmother\r\ngrandmotherly\r\ngrandmothers\r\ngrandmother's\r\ngrandnephew\r\ngrandnephews\r\ngrandness\r\ngrandniece\r\ngrandnieces\r\ngrandpa\r\ngrandparent\r\ngrandparental\r\ngrandparenthood\r\ngrandparents\r\ngrandpas\r\ngrandpa's\r\ngrandsire\r\ngrandsires\r\ngrandson\r\ngrandsons\r\ngrandson's\r\ngrandstand\r\ngrandstanded\r\ngrandstander\r\ngrandstanding\r\ngrandstands\r\ngranduncle\r\ngranduncles\r\ngrange\r\ngranger\r\ngrangerise\r\ngrangerised\r\ngrangeriser\r\ngrangerises\r\ngrangerising\r\ngranges\r\ngranite\r\ngraniteware\r\ngranitite\r\ngrannies\r\ngranny\r\ngranola\r\ngranolith\r\ngrant\r\ngrantable\r\ngranted\r\ngrantee\r\ngranter\r\ngranting\r\ngrantor\r\ngrants\r\ngrant's\r\ngranular\r\ngranularity\r\ngranularly\r\ngranulate\r\ngranulated\r\ngranulates\r\ngranulating\r\ngranulation\r\ngranulations\r\ngranulator\r\ngranule\r\ngranules\r\ngranulise\r\ngranulises\r\ngranulose\r\ngrape\r\ngrapefruit\r\ngrapes\r\ngrape's\r\ngrapeshot\r\ngrapevine\r\ngrapevines\r\ngrapevine's\r\ngraph\r\ngraphed\r\ngrapheme\r\ngraphic\r\ngraphical\r\ngraphically\r\ngraphicness\r\ngraphics\r\ngraphing\r\ngraphite\r\ngraphitic\r\ngraphitisation\r\ngraphitise\r\ngraphitises\r\ngraphologist\r\ngraphology\r\ngraphs\r\ngraph's\r\ngrapier\r\ngrapnel\r\ngrappa\r\ngrapple\r\ngrappled\r\ngrappler\r\ngrapples\r\ngrappling\r\ngraptolite\r\ngrapy\r\ngrasp\r\ngraspable\r\ngrasped\r\ngrasper\r\ngrasping\r\ngraspingly\r\ngraspingness\r\ngrasps\r\ngrass\r\ngrassed\r\ngrassers\r\ngrasses\r\ngrasshopper\r\ngrasshoppers\r\ngrasshopper's\r\ngrassier\r\ngrassiest\r\ngrassing\r\ngrassland\r\ngrasslands\r\ngrassroots\r\ngrassy\r\ngrate\r\ngrated\r\ngrateful\r\ngratefully\r\ngratefulness\r\ngrater\r\ngrates\r\ngraticule\r\ngratification\r\ngratifications\r\ngratified\r\ngratify\r\ngratifying\r\ngratifyingly\r\ngratin\r\ngrating\r\ngratingly\r\ngratings\r\ngratis\r\ngratitude\r\ngratuities\r\ngratuitous\r\ngratuitously\r\ngratuitousness\r\ngratuity\r\ngratuity's\r\ngrave\r\ngravel\r\ngravelled\r\ngravelling\r\ngravels\r\ngravely\r\ngraven\r\ngraveness\r\ngraver\r\ngravers\r\ngraves\r\ngravest\r\ngravestone\r\ngravestones\r\ngraveyard\r\ngraveyards\r\ngravid\r\ngravidity\r\ngravies\r\ngravimeter\r\ngravimeters\r\ngravimeter's\r\ngravimetric\r\ngravimetrical\r\ngravimetrically\r\ngraving\r\ngravitate\r\ngravitated\r\ngravitates\r\ngravitating\r\ngravitation\r\ngravitational\r\ngravitationally\r\ngravitations\r\ngravities\r\ngraviton\r\ngravitons\r\ngraviton's\r\ngravity\r\ngravure\r\ngravy\r\ngrayling\r\ngraylings\r\ngraze\r\ngrazed\r\ngrazer\r\ngrazes\r\ngrazier\r\ngraziers\r\ngrazing\r\ngrease\r\ngreased\r\ngreaseless\r\ngreasepaint\r\ngreasepaints\r\ngreaseproof\r\ngreaser\r\ngreasers\r\ngreases\r\ngreasewood\r\ngreasier\r\ngreasily\r\ngreasiness\r\ngreasing\r\ngreasy\r\ngreat\r\ngreatcoat\r\ngreatcoats\r\ngreaten\r\ngreatened\r\ngreatening\r\ngreater\r\ngreatest\r\ngreatly\r\ngreatness\r\ngreats\r\ngreave\r\ngreaves\r\ngrebe\r\ngreed\r\ngreedier\r\ngreedily\r\ngreediness\r\ngreedy\r\ngreen\r\ngreenback\r\ngreenbelt\r\ngreenbrier\r\ngreened\r\ngreener\r\ngreenery\r\ngreenest\r\ngreenfinch\r\ngreenfly\r\ngreengage\r\ngreengrocer\r\ngreengrocery\r\ngreenhead\r\ngreenheart\r\ngreenhorn\r\ngreenhouse\r\ngreenhouses\r\ngreenhouse's\r\ngreening\r\ngreenish\r\ngreenling\r\ngreenly\r\ngreenness\r\ngreenroom\r\ngreens\r\ngreensand\r\ngreenshank\r\ngreensickness\r\ngreenstick\r\ngreenstone\r\ngreensward\r\ngreenwood\r\ngreet\r\ngreeted\r\ngreeter\r\ngreeting\r\ngreetings\r\ngreets\r\ngregarious\r\ngregariously\r\ngregariousness\r\ngremial\r\ngremlin\r\ngremlins\r\ngremlin's\r\ngremmie\r\ngremmies\r\ngrenade\r\ngrenades\r\ngrenade's\r\ngrenadier\r\ngrenadine\r\ngressorial\r\ngrew\r\ngrey\r\ngreybeard\r\ngreyest\r\ngreyhen\r\ngreyhound\r\ngreying\r\ngreylag\r\ngreywacke\r\ngribble\r\ngrid\r\ngriddle\r\ngriddlecake\r\ngridiron\r\ngridlock\r\ngridlock's\r\ngrids\r\ngrid's\r\ngrief\r\ngriefless\r\ngrief's\r\ngrievance\r\ngrievances\r\ngrievance's\r\ngrievant\r\ngrieve\r\ngrieved\r\ngriever\r\ngrievers\r\ngrieves\r\ngrieving\r\ngrievingly\r\ngrievous\r\ngrievously\r\ngrievousness\r\ngriffin\r\ngrill\r\ngrillage\r\ngrille\r\ngrilled\r\ngriller\r\ngrilling\r\ngrillroom\r\ngrills\r\ngrillwork\r\ngrilse\r\ngrim\r\ngrimace\r\ngrimaced\r\ngrimacer\r\ngrimaces\r\ngrimacing\r\ngrimalkin\r\ngrime\r\ngrimed\r\ngrimes\r\ngrimier\r\ngriming\r\ngrimly\r\ngrimmer\r\ngrimmest\r\ngrimness\r\ngrimy\r\ngrin\r\ngrind\r\ngrinder\r\ngrinders\r\ngrindery\r\ngrinding\r\ngrindingly\r\ngrindings\r\ngrinds\r\ngrindstone\r\ngrindstones\r\ngrindstone's\r\ngringo\r\ngringos\r\ngrinned\r\ngrinner\r\ngrinning\r\ngrinningly\r\ngrins\r\ngrip\r\ngripe\r\ngriped\r\ngriper\r\ngripes\r\ngriping\r\ngrippe\r\ngripped\r\ngripper\r\ngrippers\r\ngripper's\r\ngripping\r\ngrippingly\r\ngrips\r\ngrisaille\r\ngriseous\r\ngrisliness\r\ngrisly\r\ngrist\r\ngristle\r\ngristlier\r\ngristliness\r\ngristly\r\ngristmill\r\ngrit\r\ngrits\r\ngrit's\r\ngritted\r\ngrittier\r\ngrittily\r\ngrittiness\r\ngritting\r\ngritty\r\ngrivet\r\ngrizzle\r\ngrizzled\r\ngrizzles\r\ngrizzlier\r\ngrizzling\r\ngrizzly\r\ngroan\r\ngroaned\r\ngroaner\r\ngroaners\r\ngroaning\r\ngroans\r\ngroat\r\ngrocer\r\ngroceries\r\ngrocers\r\ngrocer's\r\ngrocery\r\ngrockle\r\ngrog\r\ngroggier\r\ngroggily\r\ngrogginess\r\ngroggy\r\ngrogram\r\ngrogshop\r\ngroin\r\ngrommet\r\ngroom\r\ngroomed\r\ngrooming\r\ngrooms\r\ngroom's\r\ngroomsman\r\ngroomsmen\r\ngroove\r\ngrooved\r\ngroover\r\ngrooves\r\ngroovier\r\ngrooving\r\ngroovy\r\ngrope\r\ngroped\r\ngroper\r\ngropes\r\ngroping\r\ngrosbeak\r\ngrosgrain\r\ngross\r\ngrossed\r\ngrosser\r\ngrosses\r\ngrossest\r\ngrossing\r\ngrossly\r\ngrossness\r\ngrossularite\r\ngrot\r\ngrotesque\r\ngrotesquely\r\ngrotesqueness\r\ngrotesquery\r\ngrotto\r\ngrottoes\r\ngrottos\r\ngrotto's\r\ngrouch\r\ngrouched\r\ngrouches\r\ngrouchier\r\ngrouchily\r\ngrouchiness\r\ngrouching\r\ngrouch's\r\ngrouchy\r\nground\r\ngroundage\r\ngrounded\r\ngrounder\r\ngrounders\r\ngroundhog\r\ngroundhogs\r\ngroundhog's\r\ngrounding\r\ngroundless\r\ngroundlessly\r\ngroundlessness\r\ngroundling\r\ngroundmass\r\ngroundnut\r\ngroundout\r\ngrounds\r\ngroundsel\r\ngroundsheet\r\ngroundskeepers\r\ngroundsman\r\ngroundspeed\r\ngroundswell\r\ngroundwater\r\ngroundwork\r\ngroup\r\ngrouped\r\ngrouper\r\ngroupie\r\ngroupies\r\ngroupie's\r\ngrouping\r\ngroupings\r\ngroups\r\ngroup's\r\ngrouse\r\ngroused\r\ngrouser\r\ngrouses\r\ngrousing\r\ngrout\r\ngrouted\r\ngrouter\r\ngrouting\r\ngrouts\r\ngrove\r\ngrovel\r\ngrovelled\r\ngroveller\r\ngrovellers\r\ngrovelling\r\ngrovellingly\r\ngrovels\r\ngrover\r\ngrovers\r\ngroves\r\ngrow\r\ngrower\r\ngrowers\r\ngrowing\r\ngrowingly\r\ngrowl\r\ngrowled\r\ngrowler\r\ngrowling\r\ngrowlingly\r\ngrowls\r\ngrown\r\ngrownup\r\ngrownups\r\ngrownup's\r\ngrows\r\ngrowth\r\ngrowths\r\ngrub\r\ngrubber\r\ngrubbier\r\ngrubbily\r\ngrubbiness\r\ngrubbing\r\ngrubby\r\ngrubs\r\ngrub's\r\ngrubstake\r\ngrudge\r\ngrudged\r\ngrudger\r\ngrudges\r\ngrudge's\r\ngrudging\r\ngrudgingly\r\ngruel\r\ngruelling\r\ngruellingly\r\ngruesome\r\ngruesomely\r\ngruesomeness\r\ngruff\r\ngruffly\r\ngruffness\r\ngrugru\r\ngrumble\r\ngrumbled\r\ngrumbler\r\ngrumbles\r\ngrumbling\r\ngrumblingly\r\ngrummet\r\ngrump\r\ngrumped\r\ngrumpier\r\ngrumpily\r\ngrumpiness\r\ngrumping\r\ngrumps\r\ngrumpy\r\ngrunion\r\ngrunt\r\ngrunted\r\ngrunter\r\ngrunting\r\ngrunts\r\ngrysbok\r\nguacamole\r\nguacharo\r\nguaiacum\r\nguan\r\nguanaco\r\nguanidine\r\nguanine\r\nguano\r\nguarantee\r\nguaranteed\r\nguaranteeing\r\nguarantees\r\nguarantor\r\nguaranty\r\nguard\r\nguardant\r\nguarded\r\nguardedly\r\nguardedness\r\nguarder\r\nguardhouse\r\nguardian\r\nguardians\r\nguardian's\r\nguardianship\r\nguarding\r\nguardrail\r\nguardroom\r\nguards\r\nguardsman\r\nguava\r\nguayule\r\ngubbins\r\ngubernatorial\r\nguck\r\ngudgeon\r\nguenon\r\nguerdon\r\nguerrilla\r\nguerrillas\r\nguerrilla's\r\nguess\r\nguessed\r\nguesser\r\nguesses\r\nguessing\r\nguesstimate\r\nguesswork\r\nguest\r\nguesthouse\r\nguests\r\nguest's\r\nguff\r\nguffaw\r\nguffaws\r\nguidable\r\nguidance\r\nguide\r\nguidebook\r\nguidebooks\r\nguidebook's\r\nguided\r\nguideline\r\nguidelines\r\nguideline's\r\nguidepost\r\nguideposts\r\nguider\r\nguides\r\nguiding\r\nguild\r\nguilder\r\nguildhall\r\nguildsman\r\nguile\r\nguileful\r\nguilefully\r\nguilefulness\r\nguileless\r\nguilelessly\r\nguillemot\r\nguilloche\r\nguillotine\r\nguillotined\r\nguillotines\r\nguillotine's\r\nguillotining\r\nguilt\r\nguiltier\r\nguiltiest\r\nguiltily\r\nguiltiness\r\nguiltless\r\nguiltlessly\r\nguiltlessness\r\nguilty\r\nguinea\r\nguineas\r\nguipure\r\nguise\r\nguised\r\nguises\r\nguise's\r\nguising\r\nguitar\r\nguitarfish\r\nguitarist\r\nguitarists\r\nguitars\r\nguitar's\r\ngulag\r\ngulags\r\ngulch\r\ngulches\r\ngulch's\r\ngulden\r\ngules\r\ngulf\r\ngulfs\r\ngulf's\r\ngulfweed\r\ngull\r\ngulled\r\ngullet\r\ngullets\r\ngullibility\r\ngullible\r\ngullibly\r\ngullied\r\ngullies\r\ngulling\r\ngulls\r\ngully\r\ngully's\r\ngulp\r\ngulped\r\ngulper\r\ngulps\r\ngum\r\ngumbo\r\ngumboil\r\ngumdrop\r\ngumdrops\r\ngumdrop's\r\ngummed\r\ngummer\r\ngummier\r\ngumminess\r\ngumming\r\ngummite\r\ngummosis\r\ngummous\r\ngummy\r\ngumption\r\ngums\r\ngum's\r\ngumshoe\r\ngun\r\ngunboat\r\nguncotton\r\ngundog\r\ngunfight\r\ngunfighter\r\ngunfights\r\ngunfire\r\ngunflint\r\ngunge\r\ngunk\r\ngunlock\r\ngunman\r\ngunmen\r\ngunmetal\r\ngunned\r\ngunnel\r\ngunner\r\ngunners\r\ngunner's\r\ngunnery\r\ngunning\r\ngunny\r\ngunnysack\r\ngunpaper\r\ngunplay\r\ngunpoint\r\ngunpowder\r\ngunrunner\r\ngunrunning\r\nguns\r\ngun's\r\ngunship\r\ngunshot\r\ngunslinger\r\ngunsmith\r\ngunstock\r\ngunter\r\ngunwale\r\nguppies\r\nguppy\r\ngurgitation\r\ngurgle\r\ngurgled\r\ngurgles\r\ngurgling\r\ngurnard\r\ngurney\r\ngurneys\r\nguru\r\ngurus\r\nguru's\r\ngush\r\ngushed\r\ngusher\r\ngushes\r\ngushier\r\ngushiness\r\ngushing\r\ngushy\r\ngusset\r\ngussets\r\ngust\r\ngustative\r\ngustatory\r\ngustily\r\ngustiness\r\ngusto\r\ngustoes\r\ngusts\r\ngust's\r\ngusty\r\ngut\r\ngutbucket\r\ngutless\r\ngutlessness\r\nguts\r\ngutsier\r\ngutsy\r\ngutta\r\ngutted\r\ngutter\r\nguttered\r\nguttering\r\ngutters\r\nguttersnipe\r\ngutting\r\nguttural\r\ngutturalness\r\nguv\r\nguy\r\nguyed\r\nguying\r\nguys\r\nguy's\r\nguzzle\r\nguzzled\r\nguzzler\r\nguzzles\r\nguzzling\r\ngym\r\ngymkhana\r\ngymnasiarch\r\ngymnasium\r\ngymnasiums\r\ngymnasium's\r\ngymnast\r\ngymnastic\r\ngymnastically\r\ngymnastics\r\ngymnasts\r\ngymnast's\r\ngymnosperm\r\ngyms\r\ngymslip\r\ngynaecocracy\r\ngynaecologic\r\ngynaecological\r\ngynaecologist\r\ngynaecologists\r\ngynaecologist's\r\ngynaecology\r\ngynaecology's\r\ngyniatrics\r\ngyp\r\ngypping\r\ngypsies\r\ngypsum\r\ngypsy\r\ngypsy's\r\ngyrate\r\ngyrated\r\ngyrates\r\ngyrating\r\ngyration\r\ngyrations\r\ngyrator\r\ngyrators\r\ngyratory\r\ngyre\r\ngyrfalcon\r\ngyro\r\ngyrocompass\r\ngyroplane\r\ngyros\r\ngyroscope\r\ngyroscopes\r\ngyroscope's\r\ngyroscopic\r\ngyroscopically\r\ngyrostabiliser\r\ngyrostat\r\ngyrostatic\r\ngyrostatics\r\nh's\r\nha\r\nhabeas\r\nhaberdasher\r\nhaberdasheries\r\nhaberdashery\r\nhabiliment\r\nhabilitate\r\nhabilitated\r\nhabilitates\r\nhabilitating\r\nhabit\r\nhabitability\r\nhabitable\r\nhabitableness\r\nhabitably\r\nhabitant\r\nhabitants\r\nhabitat\r\nhabitation\r\nhabitations\r\nhabitation's\r\nhabitats\r\nhabitat's\r\nhabits\r\nhabit's\r\nhabitual\r\nhabitually\r\nhabitualness\r\nhabituate\r\nhabituated\r\nhabituates\r\nhabituating\r\nhabituation\r\nhabitude\r\nhabitudes\r\nhachure\r\nhacienda\r\nhaciendas\r\nhack\r\nhackamore\r\nhackberry\r\nhackbut\r\nhacked\r\nhacker\r\nhackers\r\nhacker's\r\nhacking\r\nhackle\r\nhackled\r\nhackler\r\nhackles\r\nhackling\r\nhackmatack\r\nhackney\r\nhackneyed\r\nhackneying\r\nhackneys\r\nhacks\r\nhacksaw\r\nhacksaws\r\nhackwork\r\nhad\r\nhaddock\r\nhaddocks\r\nhade\r\nhadn't\r\nhaemachrome\r\nhaemal\r\nhaematic\r\nhaematin\r\nhaematinic\r\nhaematite\r\nhaematocele\r\nhaematocryal\r\nhaematogenous\r\nhaematoid\r\nhaematological\r\nhaematology\r\nhaematoma\r\nhaematopoiesis\r\nhaematosis\r\nhaematothermal\r\nhaematoxylin\r\nhaemic\r\nhaemin\r\nhaemocyte\r\nhaemocytometer\r\nhaemodialysis\r\nhaemoglobin\r\nhaemoid\r\nhaemolysin\r\nhaemolysis\r\nhaemophilia\r\nhaemophiliac\r\nhaemophilic\r\nhaemoptysis\r\nhaemorrhage\r\nhaemorrhagic\r\nhaemorrhoidectomy\r\nhaemorrhoids\r\nhaemostasis\r\nhaemostat\r\nhaemostatic\r\nhafiz\r\nhafnium\r\nhaft\r\nhag\r\nhagfish\r\nhaggadic\r\nhaggadist\r\nhaggadistic\r\nhaggard\r\nhaggardly\r\nhaggardness\r\nhaggis\r\nhaggish\r\nhaggle\r\nhaggled\r\nhaggler\r\nhaggles\r\nhaggling\r\nhagiocracy\r\nhagiographer\r\nhagiographies\r\nhagiography\r\nhagiography's\r\nhagiolatry\r\nhagiology\r\nhagioscope\r\nhah\r\nhaiku\r\nhail\r\nhailed\r\nhailer\r\nhailing\r\nhails\r\nhailstone\r\nhailstorm\r\nhair\r\nhairball\r\nhairbreadth\r\nhairbrush\r\nhaircloth\r\nhaircut\r\nhaircuts\r\nhaircut's\r\nhaircutter\r\nhaircutting\r\nhairdo\r\nhairdos\r\nhairdresser\r\nhairdressers\r\nhairdresser's\r\nhairdressing\r\nhaired\r\nhairgrip\r\nhairier\r\nhairiness\r\nhairless\r\nhairlessness\r\nhairline\r\nhairnet\r\nhairpiece\r\nhairpin\r\nhairs\r\nhair's\r\nhairsbreadth\r\nhairspring\r\nhairsprings\r\nhairspring's\r\nhairstreak\r\nhairstyle\r\nhairstyles\r\nhairstyle's\r\nhairstyling\r\nhairstylist\r\nhairworm\r\nhairy\r\nhajj\r\nhake\r\nhalation\r\nhalberd\r\nhalberdier\r\nhalcyon\r\nhale\r\nhaler\r\nhalf\r\nhalfback\r\nhalfbacks\r\nhalfbeak\r\nhalfpennies\r\nhalfpenny\r\nhalftime\r\nhalftone\r\nhalfway\r\nhalfwit\r\nhalibut\r\nhalibuts\r\nhalide\r\nhalides\r\nhaling\r\nhalite\r\nhalitosis\r\nhall\r\nhallelujah\r\nhallelujahs\r\nhalliards\r\nhallmark\r\nhallmarked\r\nhallmarking\r\nhallmarks\r\nhallmark's\r\nhallo\r\nhalloo\r\nhalloos\r\nhallow\r\nhallowed\r\nhallowing\r\nhallows\r\nhalls\r\nhall's\r\nhallucinate\r\nhallucinated\r\nhallucinates\r\nhallucinating\r\nhallucination\r\nhallucinations\r\nhallucinatory\r\nhallucinogen\r\nhallucinogenic\r\nhallucinogens\r\nhallway\r\nhallways\r\nhallway's\r\nhalo\r\nhalocarbon\r\nhalocline\r\nhaloes\r\nhalogen\r\nhalogens\r\nhalophyte\r\nhalos\r\nhalothane\r\nhalt\r\nhalted\r\nhalter\r\nhaltered\r\nhaltering\r\nhalters\r\nhalting\r\nhaltingly\r\nhalts\r\nhalvah\r\nhalve\r\nhalved\r\nhalves\r\nhalving\r\nhalyard\r\nham\r\nhamburger\r\nhamburgers\r\nhamburger's\r\nhamlet\r\nhamlets\r\nhamlet's\r\nhammer\r\nhammered\r\nhammerer\r\nhammerhead\r\nhammering\r\nhammerless\r\nhammerlock\r\nhammers\r\nhammertoe\r\nhammier\r\nhamming\r\nhammock\r\nhammocks\r\nhammock's\r\nhammy\r\nhamper\r\nhampered\r\nhampering\r\nhampers\r\nhams\r\nham's\r\nhamster\r\nhamsters\r\nhamstring\r\nhamstrung\r\nhanaper\r\nhand\r\nhandbag\r\nhandbags\r\nhandbag's\r\nhandball\r\nhandbill\r\nhandbook\r\nhandbooks\r\nhandbook's\r\nhandbrake\r\nhandbreadth\r\nhandcar\r\nhandcart\r\nhandclasp\r\nhandcraft\r\nhandcuff\r\nhandcuffed\r\nhandcuffing\r\nhandcuffs\r\nhanded\r\nhandedness\r\nhandful\r\nhandfuls\r\nhandgrip\r\nhandgun\r\nhandguns\r\nhandhold\r\nhandicap\r\nhandicapped\r\nhandicapper\r\nhandicapping\r\nhandicaps\r\nhandicap's\r\nhandicraft\r\nhandicrafts\r\nhandicraftsman\r\nhandicraftsmen\r\nhandier\r\nhandiest\r\nhandily\r\nhandiness\r\nhanding\r\nhandiwork\r\nhandkerchief\r\nhandkerchiefs\r\nhandkerchief's\r\nhandle\r\nhandlebar\r\nhandlebars\r\nhandled\r\nhandler\r\nhandlers\r\nhandles\r\nhandless\r\nhandling\r\nhandmade\r\nhandmaid\r\nhandmaiden\r\nhandout\r\nhandouts\r\nhandpick\r\nhandpicked\r\nhandprint\r\nhandprints\r\nhandprint's\r\nhandrail\r\nhands\r\nhandsaw\r\nhandset\r\nhandsets\r\nhandshake\r\nhandshakes\r\nhandshake's\r\nhandshaking\r\nhandsome\r\nhandsomely\r\nhandsomeness\r\nhandsomer\r\nhandsomest\r\nhandspike\r\nhandspikes\r\nhandspring\r\nhandsprings\r\nhandstand\r\nhandstands\r\nhandwork\r\nhandwrite\r\nhandwrites\r\nhandwriting\r\nhandwritings\r\nhandwritten\r\nhandy\r\nhandyman\r\nhandymen\r\nhang\r\nhangar\r\nhangars\r\nhangar's\r\nhangbird\r\nhangdog\r\nhanged\r\nhanger\r\nhangers\r\nhanging\r\nhangman\r\nhangman's\r\nhangmen\r\nhangnail\r\nhangnails\r\nhangnail's\r\nhangout\r\nhangouts\r\nhangover\r\nhangovers\r\nhangover's\r\nhangs\r\nhangtag\r\nhank\r\nhanker\r\nhankered\r\nhankerer\r\nhankering\r\nhankers\r\nhankie\r\nhankies\r\nhanky\r\nhansom\r\nhap\r\nhaphazard\r\nhaphazardly\r\nhaphazardness\r\nhaphtarah\r\nhapless\r\nhaplessly\r\nhaplessness\r\nhaplite\r\nhaplography\r\nhaploid\r\nhaplology\r\nhaply\r\nhappen\r\nhappenchance\r\nhappened\r\nhappening\r\nhappenings\r\nhappens\r\nhappenstance\r\nhappier\r\nhappiest\r\nhappily\r\nhappiness\r\nhapping\r\nhappy\r\nharangue\r\nharangued\r\nharanguer\r\nharangues\r\nharanguing\r\nharass\r\nharassed\r\nharasser\r\nharasses\r\nharassing\r\nharassment\r\nharassments\r\nharbinger\r\nharbingers\r\nharbour\r\nharbourage\r\nharbourages\r\nharboured\r\nharbourer\r\nharbourers\r\nharbourer's\r\nharbouring\r\nharbourless\r\nharbours\r\nharbour's\r\nhard\r\nhardback\r\nhardball\r\nhardboard\r\nhardboiled\r\nhardbound\r\nhardcopies\r\nhardcopy\r\nhardcover\r\nharden\r\nhardened\r\nhardener\r\nhardening\r\nhardens\r\nharder\r\nhardest\r\nhardhack\r\nhardhat\r\nhardhead\r\nhardhearted\r\nhardheartedly\r\nhardheartedness\r\nhardier\r\nhardihood\r\nhardily\r\nhardiness\r\nhardly\r\nhardness\r\nhardpan\r\nhardscrabble\r\nhardship\r\nhardships\r\nhardship's\r\nhardstand\r\nhardtack\r\nhardtop\r\nhardtops\r\nhardware\r\nhardwire\r\nhardwired\r\nhardwires\r\nhardwiring\r\nhardwood\r\nhardwoods\r\nhardworking\r\nhardy\r\nhare\r\nharebell\r\nharebrained\r\nharelip\r\nharelips\r\nharem\r\nhares\r\nhare's\r\nharicot\r\nhark\r\nharked\r\nharken\r\nharking\r\nharks\r\nharlequin\r\nharlequinade\r\nharlot\r\nharlotry\r\nharlots\r\nharlot's\r\nharm\r\nharmed\r\nharmer\r\nharmful\r\nharmfully\r\nharmfulness\r\nharming\r\nharmless\r\nharmlessly\r\nharmlessness\r\nharmonic\r\nharmonica\r\nharmonically\r\nharmonicas\r\nharmonica's\r\nharmonics\r\nharmonies\r\nharmonious\r\nharmoniously\r\nharmoniousness\r\nharmonisation\r\nharmonisations\r\nharmonisation's\r\nharmonise\r\nharmonised\r\nharmoniser\r\nharmonisers\r\nharmonises\r\nharmonising\r\nharmonist\r\nharmonium\r\nharmony\r\nharms\r\nharness\r\nharnessed\r\nharnesser\r\nharnesses\r\nharnessing\r\nharp\r\nharped\r\nharpers\r\nharpies\r\nharping\r\nharpings\r\nharpist\r\nharpoon\r\nharpooned\r\nharpooner\r\nharpooning\r\nharpoons\r\nharpoon's\r\nharps\r\nharpsichord\r\nharpsichordist\r\nharpsichords\r\nharpy\r\nharpy's\r\nharquebus\r\nharquebusier\r\nharridan\r\nharried\r\nharrier\r\nharrow\r\nharrowed\r\nharrower\r\nharrowing\r\nharrows\r\nharrumph\r\nharrumphed\r\nharrumphing\r\nharrumphs\r\nharrying\r\nharsh\r\nharshening\r\nharsher\r\nharshest\r\nharshly\r\nharshness\r\nhart\r\nhartebeest\r\nharvest\r\nharvestable\r\nharvested\r\nharvester\r\nharvesters\r\nharvesting\r\nharvestman\r\nharvestmen\r\nharvests\r\nhas\r\nhash\r\nhashed\r\nhasher\r\nhashes\r\nhashing\r\nhashish\r\nhasn't\r\nhasp\r\nhasps\r\nhassle\r\nhassled\r\nhassles\r\nhassling\r\nhassock\r\nhassocks\r\nhast\r\nhastate\r\nhaste\r\nhasted\r\nhasten\r\nhastened\r\nhastener\r\nhastening\r\nhastens\r\nhastier\r\nhastiest\r\nhastily\r\nhastiness\r\nhasting\r\nhasty\r\nhat\r\nhatband\r\nhatbox\r\nhatch\r\nhatchability\r\nhatchback\r\nhatcheck\r\nhatched\r\nhatchelled\r\nhatchelling\r\nhatcheries\r\nhatchery\r\nhatchery's\r\nhatches\r\nhatchet\r\nhatchets\r\nhatchet's\r\nhatching\r\nhatchling\r\nhatchment\r\nhatchments\r\nhatchway\r\nhate\r\nhated\r\nhateful\r\nhatefully\r\nhatefulness\r\nhater\r\nhates\r\nhath\r\nhating\r\nhatless\r\nhatpin\r\nhatred\r\nhats\r\nhat's\r\nhatter\r\nhatters\r\nhauberk\r\nhaughtier\r\nhaughtily\r\nhaughtiness\r\nhaughty\r\nhaul\r\nhaulage\r\nhauled\r\nhauler\r\nhaulers\r\nhaulier\r\nhauling\r\nhaulm\r\nhauls\r\nhaunch\r\nhaunches\r\nhaunch's\r\nhaunt\r\nhaunted\r\nhaunting\r\nhauntingly\r\nhaunts\r\nhausfrau\r\nhautboy\r\nhaute\r\nhauteur\r\nhave\r\nhaven\r\nhavens\r\nhaven's\r\nhaven't\r\nhaversack\r\nhaversacks\r\nhaversack's\r\nhaves\r\nhaving\r\nhavoc\r\nhavocked\r\nhavocking\r\nhavocs\r\nhaw\r\nhawfinch\r\nhawing\r\nhawk\r\nhawked\r\nhawker\r\nhawkers\r\nhawking\r\nhawkish\r\nhawks\r\nhawksbill\r\nhawkweed\r\nhawse\r\nhawsehole\r\nhawser\r\nhawthorn\r\nhay\r\nhaycock\r\nhayfield\r\nhayfields\r\nhayfork\r\nhaying\r\nhayloft\r\nhaylofts\r\nhayloft's\r\nhaymaker\r\nhaymaking\r\nhaymow\r\nhayrack\r\nhayrick\r\nhayride\r\nhays\r\nhayseed\r\nhayseeds\r\nhaystack\r\nhaystacks\r\nhaywire\r\nhazard\r\nhazarded\r\nhazarding\r\nhazardous\r\nhazardously\r\nhazardousness\r\nhazards\r\nhazard's\r\nhaze\r\nhazed\r\nhazel\r\nhazelnut\r\nhazelnuts\r\nhazer\r\nhazes\r\nhaze's\r\nhazier\r\nhaziest\r\nhazily\r\nhaziness\r\nhazing\r\nhazy\r\nhe\r\nhead\r\nheadache\r\nheadaches\r\nheadache's\r\nheadachy\r\nheadband\r\nheadboard\r\nheadboards\r\nheadcount\r\nheaddress\r\nheaded\r\nheader\r\nheaders\r\nheadfirst\r\nheadforemost\r\nheadgear\r\nheadier\r\nheadily\r\nheadiness\r\nheading\r\nheadings\r\nheading's\r\nheadlamp\r\nheadland\r\nheadlands\r\nheadland's\r\nheadless\r\nheadlight\r\nheadlights\r\nheadline\r\nheadlined\r\nheadliner\r\nheadlines\r\nheadlining\r\nheadlock\r\nheadlong\r\nheadman\r\nheadman's\r\nheadmaster\r\nheadmastership\r\nheadmen\r\nheadmen's\r\nheadmistress\r\nheadmost\r\nheadphone\r\nheadphones\r\nheadphone's\r\nheadpiece\r\nheadpin\r\nheadquarter\r\nheadquartered\r\nheadquarters\r\nheadrace\r\nheadrest\r\nheadroom\r\nheads\r\nhead's\r\nheadsail\r\nheadscarf\r\nheadset\r\nheadsets\r\nheadship\r\nheadshrinker\r\nheadsman\r\nheadsmen\r\nheadspring\r\nheadstall\r\nheadstand\r\nheadstands\r\nheadstock\r\nheadstone\r\nheadstones\r\nheadstream\r\nheadstrong\r\nheadwaiter\r\nheadwall\r\nheadwalls\r\nheadwater\r\nheadwaters\r\nheadway\r\nheadwind\r\nheadwinds\r\nheadwind's\r\nheadword\r\nheadwork\r\nheady\r\nheal\r\nhealed\r\nhealer\r\nhealers\r\nhealing\r\nheals\r\nhealth\r\nhealthful\r\nhealthfully\r\nhealthfulness\r\nhealthier\r\nhealthiest\r\nhealthily\r\nhealthiness\r\nhealthy\r\nheap\r\nheaped\r\nheaping\r\nheaps\r\nhear\r\nheard\r\nhearer\r\nhearers\r\nhearing\r\nhearings\r\nhearken\r\nhearkened\r\nhearkening\r\nhears\r\nhearsay\r\nhearse\r\nhearses\r\nheart\r\nheartache\r\nheartaches\r\nheartache's\r\nheartbeat\r\nheartbeats\r\nheartbreak\r\nheartbreaking\r\nheartbreakingly\r\nheartbroken\r\nheartburn\r\nheartburning\r\nhearted\r\nheartedly\r\nhearten\r\nheartened\r\nheartening\r\nheartens\r\nheartfelt\r\nhearth\r\nhearths\r\nhearthstone\r\nheartier\r\nhearties\r\nheartiest\r\nheartily\r\nheartiness\r\nheartland\r\nheartland's\r\nheartless\r\nheartlessly\r\nheartlessness\r\nheartrending\r\nheartrendingly\r\nhearts\r\nheart's\r\nheartsease\r\nheartsick\r\nheartsickness\r\nheartstring\r\nheartstrings\r\nheartthrob\r\nheartthrobs\r\nheartthrob's\r\nheartwood\r\nheartworm\r\nhearty\r\nheat\r\nheated\r\nheatedly\r\nheater\r\nheaters\r\nheath\r\nheathen\r\nheathendom\r\nheathenise\r\nheathenised\r\nheathenises\r\nheathenish\r\nheathenishly\r\nheathenising\r\nheathenism\r\nheathenry\r\nheather\r\nheathery\r\nheating\r\nheatless\r\nheats\r\nheatstroke\r\nheave\r\nheaved\r\nheaven\r\nheavenliness\r\nheavenly\r\nheavens\r\nheaven's\r\nheavenward\r\nheavenwards\r\nheaver\r\nheavers\r\nheaves\r\nheavier\r\nheavies\r\nheaviest\r\nheavily\r\nheaviness\r\nheaving\r\nheavy\r\nheavyhearted\r\nheavyset\r\nheavyweight\r\nhebdomad\r\nhebdomadal\r\nhebdomadally\r\nhebephrenic\r\nhebetation\r\nhebetudinous\r\nhecatomb\r\nheck\r\nheckle\r\nheckled\r\nheckler\r\nhecklers\r\nheckles\r\nheckling\r\nhectare\r\nhectares\r\nhectic\r\nhectically\r\nhectograph\r\nhectolitre\r\nhectometre\r\nhectometres\r\nhectometre's\r\nhector\r\nhe'd\r\nheddle\r\nhedge\r\nhedged\r\nhedgehog\r\nhedgehogs\r\nhedgehog's\r\nhedgehop\r\nhedgehopper\r\nhedger\r\nhedgerow\r\nhedges\r\nhedging\r\nhedonic\r\nhedonically\r\nhedonics\r\nhedonism\r\nhedonist\r\nhedonistic\r\nhedonistically\r\nhedonists\r\nheed\r\nheeded\r\nheedful\r\nheedfully\r\nheedfulness\r\nheeding\r\nheedless\r\nheedlessly\r\nheedlessness\r\nheeds\r\nheehaw\r\nheel\r\nheelball\r\nheeled\r\nheeler\r\nheelers\r\nheeling\r\nheelless\r\nheelpiece\r\nheelpost\r\nheels\r\nheeltap\r\nheft\r\nhefted\r\nheftier\r\nheftily\r\nheftiness\r\nhefts\r\nhefty\r\nhegemonic\r\nhegemonies\r\nhegemony\r\nhegira\r\nheifer\r\nheight\r\nheighten\r\nheightened\r\nheightening\r\nheightens\r\nheights\r\nheinous\r\nheinously\r\nheinousness\r\nheir\r\nheiress\r\nheiresses\r\nheiress's\r\nheirless\r\nheirloom\r\nheirs\r\nheir's\r\nheist\r\nheisted\r\nheisting\r\nheists\r\nheist's\r\nheld\r\nheldentenor\r\nheliacal\r\nheliacally\r\nhelical\r\nhelically\r\nhelices\r\nhelicograph\r\nhelicon\r\nhelicopter\r\nhelicopters\r\nheliocentric\r\nheliogram\r\nheliograms\r\nheliogram's\r\nheliograph\r\nheliographer\r\nheliographic\r\nheliography\r\nheliolatrous\r\nheliolatry\r\nheliolithic\r\nheliometers\r\nheliometer's\r\nheliostat\r\nheliotherapy\r\nheliotrope\r\nheliotropically\r\nheliotropism\r\nheliotype\r\nheliozoan\r\nhelipad\r\nheliport\r\nhelium\r\nhelix\r\nhelixes\r\nhell\r\nhe'll\r\nhellbender\r\nhellbox\r\nhellcat\r\nhellebore\r\nhellfire\r\nhellgrammite\r\nhellhole\r\nhellhound\r\nhellion\r\nhellish\r\nhellishly\r\nhellishness\r\nhello\r\nhellos\r\nhells\r\nhell's\r\nhelm\r\nhelmet\r\nhelmeted\r\nhelmets\r\nhelmet's\r\nhelmsman\r\nhelmsmen\r\nhelot\r\nhelotism\r\nhelp\r\nhelped\r\nhelper\r\nhelpers\r\nhelpful\r\nhelpfully\r\nhelpfulness\r\nhelping\r\nhelpless\r\nhelplessly\r\nhelplessness\r\nhelpmate\r\nhelpmeet\r\nhelps\r\nhelve\r\nhelved\r\nhelves\r\nhelving\r\nhem\r\nhematite\r\nhemelytron\r\nhemichordate\r\nhemicycle\r\nhemidemisemiquaver\r\nhemisphere\r\nhemispheres\r\nhemisphere's\r\nhemispheric\r\nhemispherical\r\nhemispheroid\r\nhemistich\r\nhemiterpene\r\nhemline\r\nhemlock\r\nhemlocks\r\nhemlock's\r\nhemmed\r\nhemmer\r\nhemming\r\nhemorrhagic\r\nhemp\r\nhempen\r\nhems\r\nhem's\r\nhemstitch\r\nhen\r\nhenbane\r\nhenbit\r\nhence\r\nhenceforth\r\nhenceforward\r\nhenchman\r\nhenchmen\r\nhencoop\r\nhendecagon\r\nhendecahedron\r\nhendecasyllabic\r\nhendecasyllable\r\nhendiadys\r\nhenequen\r\nhenge\r\nhenhouse\r\nhenna\r\nhennery\r\nhenotheism\r\nhenotheist\r\nhenotheistic\r\nhenpeck\r\nhenpecked\r\nhens\r\nhen's\r\nhep\r\nheparin\r\nhepatic\r\nhepatica\r\nhepatise\r\nhepatised\r\nhepatises\r\nhepatising\r\nhepatitis\r\nhepcat\r\nheptagon\r\nheptagonal\r\nheptahedron\r\nheptameter\r\nheptameters\r\nheptameter's\r\nheptangular\r\nheptastich\r\nheptavalent\r\nher\r\nherald\r\nheralded\r\nheraldic\r\nheraldically\r\nheralding\r\nheraldry\r\nheralds\r\nherb\r\nherbaceous\r\nherbage\r\nherbal\r\nherbalist\r\nherbarium\r\nherbicidal\r\nherbicide\r\nherbicides\r\nherbicide's\r\nherbivore\r\nherbivorous\r\nherblike\r\nherbs\r\nherb's\r\nherby\r\nherd\r\nherded\r\nherder\r\nherding\r\nherds\r\nherdsman\r\nherdsmen\r\nhere\r\nhereabout\r\nhereabouts\r\nhereafter\r\nhereby\r\nhereditable\r\nhereditarianism\r\nhereditarily\r\nhereditary\r\nhereditist\r\nheredity\r\nherein\r\nhereinabove\r\nhereinafter\r\nhereinbefore\r\nhereinto\r\nhereof\r\nhereon\r\nhere's\r\nheresiarch\r\nheresy\r\nheretic\r\nheretical\r\nheretically\r\nheretics\r\nheretic's\r\nhereto\r\nheretofore\r\nhereunder\r\nhereunto\r\nhereupon\r\nherewith\r\nheritable\r\nheritage\r\nheritages\r\nheritor\r\nherm\r\nhermaphrodite\r\nhermaphrodites\r\nhermaphrodite's\r\nhermaphroditic\r\nhermaphroditically\r\nhermeneutic\r\nhermeneutical\r\nhermeneutically\r\nhermeneutics\r\nhermetic\r\nhermetical\r\nhermetically\r\nhermit\r\nhermitage\r\nhermitages\r\nhermitage's\r\nhermits\r\nhermit's\r\nhernia\r\nhernias\r\nhernia's\r\nherniated\r\nhero\r\nheroes\r\nheroic\r\nheroically\r\nheroics\r\nheroin\r\nheroine\r\nheroines\r\nheroine's\r\nheroism\r\nheron\r\nheronry\r\nherons\r\nheron's\r\nhero's\r\nherpes\r\nherpetic\r\nherpetological\r\nherpetologically\r\nherpetologist\r\nherpetologists\r\nherpetology\r\nherring\r\nherringbone\r\nherrings\r\nherring's\r\nhers\r\nherself\r\nhertz\r\nhe's\r\nhesitance\r\nhesitancy\r\nhesitant\r\nhesitantly\r\nhesitate\r\nhesitated\r\nhesitates\r\nhesitating\r\nhesitatingly\r\nhesitation\r\nhesitations\r\nhest\r\nhetaerism\r\nhetero\r\nheteroclite\r\nheterodox\r\nheterodoxy\r\nheterodyne\r\nheteroecism\r\nheterogamous\r\nheterogeneity\r\nheterogeneous\r\nheterogeneously\r\nheterogeneousness\r\nheterogynous\r\nheteronomy\r\nheteronym\r\nheterophony\r\nheterosexual\r\nheterosexuality\r\nheterosexually\r\nheterosexuals\r\nheterozygous\r\nheuristic\r\nheuristically\r\nheuristics\r\nheuristic's\r\nhew\r\nhewed\r\nhewing\r\nhewn\r\nhews\r\nhex\r\nhexachlorophene\r\nhexachord\r\nhexadecane\r\nhexadecimal\r\nhexadecimals\r\nhexagon\r\nhexagonal\r\nhexagonally\r\nhexagons\r\nhexagram\r\nhexahedron\r\nhexameter\r\nhexane\r\nhexangular\r\nhexapod\r\nhexapody\r\nhexastich\r\nhey\r\nheyday\r\nhi\r\nhiatus\r\nhiatuses\r\nhibachi\r\nhibernal\r\nhibernate\r\nhibernated\r\nhibernates\r\nhibernating\r\nhibernation\r\nhibernator\r\nhibiscus\r\nhic\r\nhiccough\r\nhiccoughed\r\nhiccoughing\r\nhick\r\nhickories\r\nhickory\r\nhicks\r\nhid\r\nhidalgo\r\nhidden\r\nhide\r\nhideaway\r\nhidebound\r\nhided\r\nhideous\r\nhideously\r\nhideousness\r\nhideout\r\nhideouts\r\nhideout's\r\nhider\r\nhides\r\nhiding\r\nhierarch\r\nhierarchal\r\nhierarchic\r\nhierarchical\r\nhierarchically\r\nhierarchies\r\nhierarchy\r\nhierarchy's\r\nhieratic\r\nhieratically\r\nhierocracy\r\nhierodule\r\nhieroglyph\r\nhieroglyphic\r\nhieroglyphically\r\nhieroglyphics\r\nhierogram\r\nhierology\r\nhierophant\r\nhigh\r\nhighball\r\nhighbinder\r\nhighborn\r\nhighboy\r\nhighbred\r\nhighbrow\r\nhighbrowed\r\nhighchair\r\nhigher\r\nhighest\r\nhighfalutin\r\nhighhanded\r\nhighjack\r\nhighland\r\nhighlander\r\nhighlands\r\nhighlife\r\nhighlight\r\nhighlighted\r\nhighlighting\r\nhighlights\r\nhighline\r\nhighly\r\nhighness\r\nhighnesses\r\nhighness's\r\nhighroad\r\nhighs\r\nhightail\r\nhighway\r\nhighwayman\r\nhighwaymen\r\nhighways\r\nhighway's\r\nhijack\r\nhijacked\r\nhijacker\r\nhijackers\r\nhijacking\r\nhijacks\r\nhijinks\r\nhike\r\nhiked\r\nhiker\r\nhikers\r\nhikes\r\nhiking\r\nhilarious\r\nhilariously\r\nhilariousness\r\nhilarity\r\nhill\r\nhillbilly\r\nhilled\r\nhillier\r\nhilling\r\nhillock\r\nhillocks\r\nhillocky\r\nhills\r\nhill's\r\nhillside\r\nhilltop\r\nhilltops\r\nhilltop's\r\nhilly\r\nhilt\r\nhilts\r\nhilt's\r\nhim\r\nhimself\r\nhind\r\nhindbrain\r\nhinder\r\nhindered\r\nhinderer\r\nhindering\r\nhinders\r\nhindgut\r\nhindmost\r\nhindquarter\r\nhindquarters\r\nhindrance\r\nhindrances\r\nhinds\r\nhindsight\r\nhinge\r\nhinged\r\nhinges\r\nhinging\r\nhint\r\nhinted\r\nhinterland\r\nhinterlands\r\nhinting\r\nhints\r\nhip\r\nhipbone\r\nhipped\r\nhipper\r\nhippest\r\nhippie\r\nhippies\r\nhipping\r\nhippo\r\nhippocampus\r\nhippocras\r\nhippodrome\r\nhippogriff\r\nhippopotamus\r\nhippos\r\nhippy\r\nhips\r\nhip's\r\nhipster\r\nhipsters\r\nhiragana\r\nhircine\r\nhire\r\nhired\r\nhireling\r\nhirelings\r\nhirer\r\nhirers\r\nhires\r\nhiring\r\nhirsute\r\nhirsuteness\r\nhis\r\nhispid\r\nhiss\r\nhissed\r\nhisser\r\nhisses\r\nhissing\r\nhistamine\r\nhistaminic\r\nhistogram\r\nhistograms\r\nhistogram's\r\nhistological\r\nhistologist\r\nhistology\r\nhistolysis\r\nhistolytic\r\nhistorian\r\nhistorians\r\nhistorian's\r\nhistoric\r\nhistorical\r\nhistorically\r\nhistoricalness\r\nhistoricism\r\nhistoricist\r\nhistoricity\r\nhistories\r\nhistoriographer\r\nhistoriography\r\nhistory\r\nhistory's\r\nhistrionic\r\nhistrionically\r\nhistrionics\r\nhit\r\nhitch\r\nhitched\r\nhitcher\r\nhitches\r\nhitchhike\r\nhitchhiked\r\nhitchhiker\r\nhitchhikers\r\nhitchhikes\r\nhitchhiking\r\nhitching\r\nhither\r\nhithermost\r\nhitherto\r\nhitherward\r\nhitless\r\nhits\r\nhit's\r\nhitter\r\nhitters\r\nhitter's\r\nhitting\r\nhive\r\nhiveless\r\nhives\r\nhiving\r\nhmm\r\nho\r\nhoagie\r\nhoagies\r\nhoar\r\nhoard\r\nhoarded\r\nhoarder\r\nhoarding\r\nhoards\r\nhoarfrost\r\nhoarier\r\nhoariness\r\nhoarse\r\nhoarsely\r\nhoarsen\r\nhoarsened\r\nhoarseness\r\nhoarsening\r\nhoarser\r\nhoarsest\r\nhoary\r\nhoatzin\r\nhoax\r\nhoaxed\r\nhoaxer\r\nhoaxes\r\nhoaxing\r\nhoax's\r\nhob\r\nhobbies\r\nhobble\r\nhobbled\r\nhobbledehoy\r\nhobbler\r\nhobbles\r\nhobbling\r\nhobby\r\nhobbyhorse\r\nhobbyist\r\nhobbyists\r\nhobbyist's\r\nhobby's\r\nhobgoblin\r\nhobnail\r\nhobnailed\r\nhobnob\r\nhobnobbed\r\nhobnobbing\r\nhobnobs\r\nhobo\r\nhobos\r\nhoc\r\nhock\r\nhockey\r\nhocking\r\nhocks\r\nhocus\r\nhocused\r\nhocusing\r\nhod\r\nhodgepodge\r\nhoe\r\nhoecake\r\nhoedown\r\nhoeing\r\nhoer\r\nhoes\r\nhoe's\r\nhog\r\nhogback\r\nhogged\r\nhogging\r\nhoggish\r\nhoggishly\r\nhoggishness\r\nhogmanay\r\nhogs\r\nhog's\r\nhogshead\r\nhogtie\r\nhogwash\r\nhogweed\r\nhoi\r\nhoicks\r\nhoist\r\nhoisted\r\nhoister\r\nhoisting\r\nhoists\r\nhokum\r\nhold\r\nholdall\r\nholdalls\r\nholdback\r\nholder\r\nholders\r\nholdfast\r\nholding\r\nholdings\r\nholdout\r\nholdouts\r\nholdover\r\nholdovers\r\nholds\r\nhole\r\nholed\r\nholes\r\nhole's\r\nholey\r\nholiday\r\nholidaymaker\r\nholidays\r\nholiday's\r\nholier\r\nholies\r\nholily\r\nholiness\r\nholing\r\nholism\r\nholistic\r\nholistically\r\nhollandaise\r\nholler\r\nhollered\r\nhollering\r\nhollers\r\nhollies\r\nhollow\r\nhollowed\r\nhollowing\r\nhollowly\r\nhollowness\r\nhollows\r\nhollowware\r\nholly\r\nhollyhock\r\nhollyhocks\r\nholmic\r\nholmium\r\nholocaust\r\nhologram\r\nholograms\r\nhologram's\r\nholograph\r\nholographic\r\nholography\r\nholophrastic\r\nhols\r\nholster\r\nholstered\r\nholstering\r\nholsters\r\nholt\r\nholy\r\nholystone\r\nholystones\r\nholytide\r\nhomage\r\nhombre\r\nhomburg\r\nhome\r\nhomebody\r\nhomebound\r\nhomebred\r\nhomebuilder\r\nhomebuilders\r\nhomebuilding\r\nhomebuilt\r\nhomecoming\r\nhomecomings\r\nhomed\r\nhomeland\r\nhomeless\r\nhomelessness\r\nhomelier\r\nhomelike\r\nhomeliness\r\nhomely\r\nhomemade\r\nhomemaker\r\nhomemakers\r\nhomemaker's\r\nhomemaking\r\nhomeopaths\r\nhomeowner\r\nhomeowners\r\nhomeownership\r\nhomer\r\nhomeroom\r\nhomers\r\nhomes\r\nhomesick\r\nhomesickness\r\nhomespun\r\nhomestead\r\nhomesteader\r\nhomesteaders\r\nhomesteads\r\nhomestretch\r\nhometown\r\nhomeward\r\nhomewards\r\nhomework\r\nhomey\r\nhomicidal\r\nhomicidally\r\nhomicide\r\nhomicides\r\nhomier\r\nhomiletic\r\nhomiletically\r\nhomiletics\r\nhomily\r\nhominess\r\nhoming\r\nhominid\r\nhominoid\r\nhominy\r\nhomo\r\nhomocentric\r\nhomochromatic\r\nhomodont\r\nhomoeopath\r\nhomoeopathic\r\nhomoeopathically\r\nhomoeopathy\r\nhomoeostasis\r\nhomoeostatic\r\nhomoerotic\r\nhomoeroticism\r\nhomogenate\r\nhomogenates\r\nhomogeneities\r\nhomogeneity\r\nhomogeneity's\r\nhomogeneous\r\nhomogeneously\r\nhomogeneousness\r\nhomogenisation\r\nhomogenisations\r\nhomogenisation's\r\nhomogenise\r\nhomogenised\r\nhomogeniser\r\nhomogenisers\r\nhomogenises\r\nhomogenising\r\nhomogenous\r\nhomogeny\r\nhomograph\r\nhomographic\r\nhomologate\r\nhomologation\r\nhomological\r\nhomologically\r\nhomologise\r\nhomologised\r\nhomologises\r\nhomologising\r\nhomologous\r\nhomologue\r\nhomology\r\nhomomorphism\r\nhomonym\r\nhomonymic\r\nhomonymous\r\nhomonyms\r\nhomonym's\r\nhomonymy\r\nhomophile\r\nhomophobe\r\nhomophobes\r\nhomophobia\r\nhomophone\r\nhomophonic\r\nhomophonous\r\nhomophony\r\nhomopterous\r\nhomorganic\r\nhomos\r\nhomosexual\r\nhomosexuality\r\nhomosexually\r\nhomosexuals\r\nhomunculi\r\nhomunculus\r\nhoncho\r\nhonchos\r\nhone\r\nhoned\r\nhones\r\nhonest\r\nhonestly\r\nhonesty\r\nhoney\r\nhoneybee\r\nhoneybees\r\nhoneycomb\r\nhoneycombed\r\nhoneydew\r\nhoneyed\r\nhoneying\r\nhoneymoon\r\nhoneymooned\r\nhoneymooner\r\nhoneymooners\r\nhoneymooning\r\nhoneymoons\r\nhoneys\r\nhoneysuckle\r\nhoning\r\nhonk\r\nhonked\r\nhonker\r\nhonkers\r\nhonkies\r\nhonking\r\nhonks\r\nhonky\r\nhonoraria\r\nhonorarium\r\nhonorary\r\nhonorific\r\nhonour\r\nhonourable\r\nhonourables\r\nhonourably\r\nhonoured\r\nhonouree\r\nhonourer\r\nhonourers\r\nhonourer's\r\nhonouring\r\nhonourless\r\nhonours\r\nhooch\r\nhood\r\nhooded\r\nhooding\r\nhoodlum\r\nhoodlumism\r\nhoodlums\r\nhoodoo\r\nhoodoos\r\nhoods\r\nhood's\r\nhoodwink\r\nhoodwinked\r\nhoodwinker\r\nhoodwinking\r\nhoodwinks\r\nhooey\r\nhoof\r\nhoofbound\r\nhoofed\r\nhoofer\r\nhoofs\r\nhoof's\r\nhook\r\nhookah\r\nhooked\r\nhooker\r\nhookers\r\nhooking\r\nhooknose\r\nhooks\r\nhookworm\r\nhooky\r\nhooligan\r\nhooliganism\r\nhooligans\r\nhoop\r\nhoopla\r\nhoopoe\r\nhoopoes\r\nhoops\r\nhooray\r\nhoorays\r\nhooray's\r\nhoosegow\r\nhoosegows\r\nhoot\r\nhootch\r\nhooted\r\nhootenanny\r\nhooter\r\nhooters\r\nhooting\r\nhoots\r\nhoover\r\nhooves\r\nhop\r\nhope\r\nhoped\r\nhopeful\r\nhopefully\r\nhopefulness\r\nhopefuls\r\nhopeless\r\nhopelessly\r\nhopelessness\r\nhoper\r\nhopes\r\nhophead\r\nhoping\r\nhoplite\r\nhopped\r\nhopper\r\nhoppers\r\nhopper's\r\nhopping\r\nhopple\r\nhoppled\r\nhopples\r\nhops\r\nhopsack\r\nhopscotch\r\nhoral\r\nhorary\r\nhorde\r\nhordes\r\nhorde's\r\nhorehound\r\nhorizon\r\nhorizons\r\nhorizon's\r\nhorizontal\r\nhorizontally\r\nhormonal\r\nhormonally\r\nhormone\r\nhormones\r\nhormone's\r\nhorn\r\nhornbeam\r\nhornbeams\r\nhornbill\r\nhornbills\r\nhornblende\r\nhornbook\r\nhorned\r\nhornet\r\nhornets\r\nhornet's\r\nhornier\r\nhorniness\r\nhornless\r\nhornlike\r\nhornpipe\r\nhornpipes\r\nhornpipe's\r\nhorns\r\nhornstone\r\nhorntail\r\nhornwort\r\nhorny\r\nhorologe\r\nhorologer\r\nhorologic\r\nhorologist\r\nhorologists\r\nhorology\r\nhoroscope\r\nhoroscopes\r\nhoroscopy\r\nhorrendous\r\nhorrendously\r\nhorrent\r\nhorrible\r\nhorribleness\r\nhorribly\r\nhorrid\r\nhorridly\r\nhorridness\r\nhorrific\r\nhorrifically\r\nhorrified\r\nhorrifies\r\nhorrify\r\nhorrifying\r\nhorrifyingly\r\nhorror\r\nhorrors\r\nhorror's\r\nhors\r\nhorse\r\nhorseback\r\nhorsebox\r\nhorseflesh\r\nhorseflies\r\nhorsefly\r\nhorsehair\r\nhorsehide\r\nhorselaugh\r\nhorseleech\r\nhorseleeches\r\nhorseman\r\nhorsemanship\r\nhorsemen\r\nhorsemint\r\nhorseplay\r\nhorseplayer\r\nhorsepower\r\nhorseradish\r\nhorseradishes\r\nhorses\r\nhorse's\r\nhorseshit\r\nhorseshoe\r\nhorseshoes\r\nhorsetail\r\nhorsewhip\r\nhorsewoman\r\nhorsewomen\r\nhorsier\r\nhorsiness\r\nhorsing\r\nhorst\r\nhorsy\r\nhortative\r\nhortatively\r\nhortatory\r\nhorticultural\r\nhorticulturalist\r\nhorticulture\r\nhorticulturist\r\nhosanna\r\nhose\r\nhosed\r\nhoses\r\nhose's\r\nhosier\r\nhosiery\r\nhosing\r\nhospice\r\nhospices\r\nhospitable\r\nhospitably\r\nhospital\r\nhospitalisation\r\nhospitalisations\r\nhospitalisation's\r\nhospitalise\r\nhospitalised\r\nhospitalises\r\nhospitalising\r\nhospitality\r\nhospitals\r\nhospital's\r\nhost\r\nhostage\r\nhostages\r\nhostage's\r\nhosted\r\nhostel\r\nhosteller\r\nhostelling\r\nhostelries\r\nhostelry\r\nhostels\r\nhostess\r\nhostesses\r\nhostess's\r\nhostile\r\nhostilely\r\nhostilities\r\nhostility\r\nhosting\r\nhosts\r\nhost's\r\nhot\r\nhotbed\r\nhotbox\r\nhotchpotch\r\nhotdogs\r\nhotel\r\nhotelier\r\nhotelman\r\nhotels\r\nhotel's\r\nhotfoot\r\nhotfoots\r\nhothead\r\nhotheadedness\r\nhothouse\r\nhotly\r\nhotness\r\nhotplate\r\nhotpot\r\nhotrod\r\nhotshot\r\nhotter\r\nhottest\r\nhound\r\nhounded\r\nhounding\r\nhounds\r\nhour\r\nhourdes\r\nhourdings\r\nhourglass\r\nhourly\r\nhours\r\nhour's\r\nhouse\r\nhouseboat\r\nhouseboats\r\nhousebound\r\nhouseboy\r\nhouseboys\r\nhousebreak\r\nhousebreaker\r\nhousebreakers\r\nhousebreaking\r\nhousebroken\r\nhouseclean\r\nhousecleaner\r\nhousecleaning\r\nhousecoat\r\nhoused\r\nhousedress\r\nhousefather\r\nhousefathers\r\nhouseflies\r\nhousefly\r\nhousefly's\r\nhouseful\r\nhouseguest\r\nhousehold\r\nhouseholder\r\nhouseholders\r\nhouseholds\r\nhousehold's\r\nhousekeep\r\nhousekeeper\r\nhousekeepers\r\nhousekeeper's\r\nhousekeeping\r\nhousel\r\nhouseleek\r\nhouseleeks\r\nhouseless\r\nhouselights\r\nhouseline\r\nhousemaid\r\nhousemaids\r\nhouseman\r\nhousemaster\r\nhousemasters\r\nhousemate\r\nhousemates\r\nhousemate's\r\nhousemother\r\nhousemothers\r\nhouseplant\r\nhouseroom\r\nhouses\r\nhouse's\r\nhousetop\r\nhousetops\r\nhousetop's\r\nhousewarming\r\nhousewife\r\nhousewifeliness\r\nhousewifely\r\nhousewifery\r\nhousewife's\r\nhousewives\r\nhousework\r\nhousing\r\nhousings\r\nhove\r\nhovel\r\nhovelled\r\nhovelling\r\nhovels\r\nhovel's\r\nhover\r\nhovercraft\r\nhovered\r\nhoverer\r\nhovering\r\nhovers\r\nhow\r\nhowbeit\r\nhowdah\r\nhowdy\r\nhowever\r\nhowitzer\r\nhowl\r\nhowled\r\nhowler\r\nhowling\r\nhowls\r\nhow's\r\nhowsoever\r\nhoyden\r\nhoydenish\r\nhrs\r\nhtml\r\nhub\r\nhubbies\r\nhubbub\r\nhubby\r\nhubcap\r\nhubcaps\r\nhubcap's\r\nhubris\r\nhubristic\r\nhubristically\r\nhubs\r\nhub's\r\nhuckaback\r\nhuckleberry\r\nhucklebone\r\nhuckster\r\nhuckstered\r\nhuckstering\r\nhucksters\r\nhuddle\r\nhuddled\r\nhuddler\r\nhuddles\r\nhuddling\r\nhue\r\nhued\r\nhues\r\nhue's\r\nhuff\r\nhuffier\r\nhuffiness\r\nhuffish\r\nhuffy\r\nhug\r\nhuge\r\nhugely\r\nhugeness\r\nhuger\r\nhugest\r\nhuggable\r\nhugged\r\nhugger\r\nhuggermugger\r\nhuggers\r\nhugging\r\nhugs\r\nhuh\r\nhula\r\nhulk\r\nhulked\r\nhulking\r\nhulks\r\nhull\r\nhullabaloo\r\nhullabaloos\r\nhulled\r\nhuller\r\nhulling\r\nhullo\r\nhulls\r\nhull's\r\nhum\r\nhuman\r\nhumane\r\nhumanely\r\nhumaneness\r\nhumanisation\r\nhumanisations\r\nhumanisation's\r\nhumanise\r\nhumanised\r\nhumaniser\r\nhumanisers\r\nhumanises\r\nhumanising\r\nhumanism\r\nhumanist\r\nhumanistic\r\nhumanists\r\nhumanitarian\r\nhumanitarianism\r\nhumanitarians\r\nhumanities\r\nhumanity\r\nhumanity's\r\nhumankind\r\nhumanlike\r\nhumanly\r\nhumanness\r\nhumanoid\r\nhumans\r\nhumble\r\nhumblebee\r\nhumbled\r\nhumbleness\r\nhumbler\r\nhumbles\r\nhumblest\r\nhumbling\r\nhumbly\r\nhumbug\r\nhumbugged\r\nhumbuggery\r\nhumbugging\r\nhumdinger\r\nhumdrum\r\nhumeral\r\nhumid\r\nhumidification\r\nhumidified\r\nhumidifier\r\nhumidifiers\r\nhumidifies\r\nhumidify\r\nhumidifying\r\nhumidistat\r\nhumidity\r\nhumidly\r\nhumidor\r\nhumiliate\r\nhumiliated\r\nhumiliates\r\nhumiliating\r\nhumiliatingly\r\nhumiliation\r\nhumiliations\r\nhumility\r\nhummed\r\nhummer\r\nhumming\r\nhummingbird\r\nhummingbirds\r\nhummock\r\nhummocks\r\nhummocky\r\nhumoresque\r\nhumorist\r\nhumoristic\r\nhumorists\r\nhumorist's\r\nhumorous\r\nhumorously\r\nhumorousness\r\nhumour\r\nhumoured\r\nhumouring\r\nhumourless\r\nhumourlessness\r\nhumours\r\nhumour's\r\nhump\r\nhumpback\r\nhumpbacked\r\nhumpbacks\r\nhumped\r\nhumph\r\nhumpier\r\nhumping\r\nhumps\r\nhumpty\r\nhumpy\r\nhums\r\nhumus\r\nhunch\r\nhunchback\r\nhunchbacked\r\nhunchbacks\r\nhunchback's\r\nhunched\r\nhunches\r\nhundred\r\nhundredfold\r\nhundreds\r\nhundredth\r\nhundredweight\r\nhundredweights\r\nhung\r\nhunger\r\nhungered\r\nhungering\r\nhungers\r\nhungrier\r\nhungriest\r\nhungrily\r\nhungriness\r\nhungry\r\nhunk\r\nhunker\r\nhunkered\r\nhunkering\r\nhunkers\r\nhunks\r\nhunk's\r\nhunt\r\nhunted\r\nhunter\r\nhunters\r\nhunting\r\nhuntress\r\nhunts\r\nhuntsman\r\nhurdle\r\nhurdled\r\nhurdler\r\nhurdles\r\nhurdling\r\nhurl\r\nhurled\r\nhurler\r\nhurlers\r\nhurling\r\nhurly\r\nhurrah\r\nhurray\r\nhurricane\r\nhurricanes\r\nhurricane's\r\nhurried\r\nhurriedly\r\nhurriedness\r\nhurries\r\nhurry\r\nhurrying\r\nhurt\r\nhurter\r\nhurtful\r\nhurtfully\r\nhurtfulness\r\nhurting\r\nhurtle\r\nhurtled\r\nhurtles\r\nhurtling\r\nhurts\r\nhusband\r\nhusbandly\r\nhusbandman\r\nhusbandmen\r\nhusbandry\r\nhusbands\r\nhusband's\r\nhush\r\nhushaby\r\nhushed\r\nhushes\r\nhushing\r\nhusk\r\nhusked\r\nhusker\r\nhuskier\r\nhuskies\r\nhuskily\r\nhuskiness\r\nhusking\r\nhusks\r\nhusky\r\nhussar\r\nhussies\r\nhussy\r\nhustings\r\nhustle\r\nhustled\r\nhustler\r\nhustlers\r\nhustles\r\nhustling\r\nhut\r\nhutch\r\nhutchie\r\nhutment\r\nhuts\r\nhut's\r\nhuzzah\r\nhuzzahs\r\nhyacinth\r\nhyacinthine\r\nhyacinths\r\nhyaline\r\nhyalinisation\r\nhyalinisation's\r\nhyalite\r\nhybrid\r\nhybridisable\r\nhybridisation\r\nhybridisations\r\nhybridisation's\r\nhybridise\r\nhybridised\r\nhybridiser\r\nhybridisers\r\nhybridises\r\nhybridising\r\nhybridism\r\nhybrids\r\nhydnocarpate\r\nhydra\r\nhydrangea\r\nhydrant\r\nhydranth\r\nhydrants\r\nhydrastinine\r\nhydrate\r\nhydrated\r\nhydrates\r\nhydrating\r\nhydration\r\nhydrations\r\nhydrator\r\nhydraulic\r\nhydraulically\r\nhydraulics\r\nhydrazine\r\nhydria\r\nhydride\r\nhydrides\r\nhydro\r\nhydrobiology\r\nhydrocarbon\r\nhydrocarbons\r\nhydrocellulose\r\nhydrocephalic\r\nhydrocephalus\r\nhydrochemistry\r\nhydrochloric\r\nhydrochloride\r\nhydrocoral\r\nhydrocortisone\r\nhydrodynamic\r\nhydrodynamics\r\nhydroelectric\r\nhydroelectrically\r\nhydroelectricity\r\nhydrofluoric\r\nhydrofoil\r\nhydrogen\r\nhydrogenate\r\nhydrogenation\r\nhydrogenise\r\nhydrogenised\r\nhydrogenising\r\nhydrogenous\r\nhydrogen's\r\nhydrograph\r\nhydrographer\r\nhydrographic\r\nhydrographically\r\nhydrography\r\nhydroid\r\nhydrokinetic\r\nhydrokinetics\r\nhydrologic\r\nhydrological\r\nhydrologically\r\nhydrologist\r\nhydrology\r\nhydrolyse\r\nhydrolysed\r\nhydrolyses\r\nhydrolysis\r\nhydrolyte\r\nhydrolytic\r\nhydrolytically\r\nhydromancy\r\nhydromechanics\r\nhydromedusa\r\nhydromel\r\nhydrometallurgy\r\nhydrometeor\r\nhydrometer\r\nhydrometers\r\nhydrometer's\r\nhydrometric\r\nhydrometrical\r\nhydrophane\r\nhydrophilic\r\nhydrophobia\r\nhydrophobic\r\nhydrophone\r\nhydroplane\r\nhydroponics\r\nhydropower\r\nhydroscope\r\nhydrosol\r\nhydrospace\r\nhydrosphere\r\nhydrostat\r\nhydrostatic\r\nhydrostatical\r\nhydrostatically\r\nhydrostatics\r\nhydrosulphate\r\nhydrosulphide\r\nhydrosulphurous\r\nhydrotherapeutics\r\nhydrotherapy\r\nhydrothermal\r\nhydrothorax\r\nhydrotropic\r\nhydrotropism\r\nhydrous\r\nhydroxide\r\nhydroxides\r\nhydroxonium\r\nhydroxyl\r\nhydroxylamine\r\nhydroxylation\r\nhydroxyls\r\nhydroxyl's\r\nhyena\r\nhyetograph\r\nhygiene\r\nhygienic\r\nhygienically\r\nhygienist\r\nhygienists\r\nhygrograph\r\nhygrometer\r\nhygrometers\r\nhygrometer's\r\nhygrometric\r\nhygrometry\r\nhygrophilous\r\nhygrophyte\r\nhygroscope\r\nhygroscopic\r\nhygrostat\r\nhylozoism\r\nhymen\r\nhymeneal\r\nhymens\r\nhymn\r\nhymnal\r\nhymnbook\r\nhymning\r\nhymnist\r\nhymnody\r\nhymnology\r\nhymns\r\nhymn's\r\nhyoid\r\nhypaesthesia\r\nhypaethral\r\nhype\r\nhyped\r\nhyper\r\nhyperacid\r\nhyperacidity\r\nhyperactive\r\nhyperactivity\r\nhyperaemia\r\nhyperaesthesia\r\nhyperaesthetic\r\nhyperbaton\r\nhyperbola\r\nhyperbole\r\nhyperbolic\r\nhyperbolical\r\nhyperbolically\r\nhyperbolise\r\nhyperbolised\r\nhyperbolises\r\nhyperbolising\r\nhyperboloid\r\nhyperborean\r\nhypercharge\r\nhypercorrect\r\nhypercorrection\r\nhypercritic\r\nhypercritical\r\nhypercritically\r\nhypercriticise\r\nhypercriticises\r\nhypercriticism\r\nhypercube\r\nhyperdulia\r\nhypereutectic\r\nhyperextension\r\nhyperfine\r\nhyperglycaemia\r\nhyperirritability\r\nhyperirritable\r\nhypermarket\r\nhypermeter\r\nhypermeters\r\nhypermeter's\r\nhypermetric\r\nhypermetrical\r\nhyperopic\r\nhyperphysical\r\nhyperpnoea\r\nhypersensitive\r\nhypersensitiveness\r\nhypersensitivity\r\nhypersonic\r\nhypersonically\r\nhyperspace\r\nhypertension\r\nhypertext\r\nhypertext's\r\nhyperthyroid\r\nhyperthyroidism\r\nhypertrophied\r\nhypertrophy\r\nhypervelocity\r\nhyperventilation\r\nhypes\r\nhype's\r\nhyphen\r\nhyphenate\r\nhyphenated\r\nhyphenates\r\nhyphenating\r\nhyphenation\r\nhyphenations\r\nhyphened\r\nhyphening\r\nhyphenise\r\nhyphens\r\nhyphen's\r\nhypnology\r\nhypnopaedia\r\nhypnoses\r\nhypnosis\r\nhypnotherapy\r\nhypnotic\r\nhypnotically\r\nhypnotics\r\nhypnotisability\r\nhypnotisable\r\nhypnotisation\r\nhypnotise\r\nhypnotised\r\nhypnotiser\r\nhypnotisers\r\nhypnotises\r\nhypnotising\r\nhypnotism\r\nhypnotist\r\nhypnotists\r\nhypo\r\nhypoactive\r\nhypoblast\r\nhypocaust\r\nhypocentre\r\nhypochondria\r\nhypochondriac\r\nhypochondriacally\r\nhypocoristic\r\nhypocoristically\r\nhypocrisies\r\nhypocrisy\r\nhypocrite\r\nhypocrites\r\nhypocrite's\r\nhypocritical\r\nhypocritically\r\nhypocycloid\r\nhypoderm\r\nhypodermic\r\nhypodermically\r\nhypodermics\r\nhypodermis\r\nhypoeutectic\r\nhypogeal\r\nhypogenous\r\nhypogeum\r\nhypoglycaemia\r\nhypognathous\r\nhypoid\r\nhyponasty\r\nhyponitrite\r\nhypophosphate\r\nhypopnoea\r\nhypos\r\nhypostatisation\r\nhypostatisation's\r\nhypostatise\r\nhypostatises\r\nhypostyle\r\nhyposulphite\r\nhyposulphurous\r\nhypotenuse\r\nhypotenuses\r\nhypothalamic\r\nhypothalamus\r\nhypothec\r\nhypothecate\r\nhypothecation\r\nhypothecator\r\nhypothermal\r\nhypothermia\r\nhypothermic\r\nhypotheses\r\nhypothesis\r\nhypothesise\r\nhypothesised\r\nhypothesiser\r\nhypothesisers\r\nhypothesises\r\nhypothesising\r\nhypothetic\r\nhypothetical\r\nhypothetically\r\nhypothyroid\r\nhypothyroidism\r\nhypoxemia\r\nhypoxemic\r\nhypoxia\r\nhypoxic\r\nhypsography\r\nhypsometer\r\nhypsometers\r\nhypsometer's\r\nhypsometric\r\nhypsometry\r\nhyracoid\r\nhyrax\r\nhyssop\r\nhysterectomy\r\nhysteresis\r\nhysteretic\r\nhysteria\r\nhysteric\r\nhysterical\r\nhysterically\r\nhysterics\r\nhysteron\r\ni\r\ni's\r\niamb\r\niambic\r\niambus\r\niambuses\r\niatric\r\nibex\r\nibid\r\nibis\r\nibises\r\nice\r\niceberg\r\nicebergs\r\niceberg's\r\niceblink\r\nicebound\r\nicebox\r\nicebreaker\r\nicecap\r\nicecaps\r\nicecap's\r\niced\r\nicefall\r\nicehouse\r\niceless\r\niceman\r\niceman's\r\nices\r\nichneumon\r\nichnography\r\nichthyic\r\nichthyology\r\nichthyosaur\r\nicicle\r\nicicles\r\nicier\r\niciest\r\nicily\r\niciness\r\nicing\r\nicings\r\nickier\r\nicky\r\nicon\r\niconic\r\niconicity\r\niconoclasm\r\niconoclast\r\niconoclastic\r\niconoclastically\r\niconographer\r\niconographic\r\niconographical\r\niconography\r\niconolatry\r\niconological\r\niconology\r\niconoscope\r\niconostasis\r\nicons\r\nicon's\r\nicosahedra\r\nictus\r\nicy\r\nid\r\nide\r\nidea\r\nideal\r\nidealess\r\nidealisation\r\nidealisations\r\nidealisation's\r\nidealise\r\nidealised\r\nidealiser\r\nidealisers\r\nidealises\r\nidealising\r\nidealism\r\nidealist\r\nidealistic\r\nidealistically\r\nideally\r\nideals\r\nideas\r\nidea's\r\nideate\r\nideates\r\nideation\r\nideational\r\nideationally\r\nidem\r\nidentical\r\nidentically\r\nidenticalness\r\nidentifiable\r\nidentifiably\r\nidentification\r\nidentifications\r\nidentified\r\nidentifier\r\nidentifiers\r\nidentifies\r\nidentify\r\nidentifying\r\nidentikit\r\nidentities\r\nidentity\r\nidentity's\r\nideogram\r\nideograms\r\nideogram's\r\nideograph\r\nideographic\r\nideographically\r\nideography\r\nideological\r\nideologically\r\nideologies\r\nideologist\r\nideologists\r\nideologue\r\nideologues\r\nideology\r\nides\r\nidiocies\r\nidiocy\r\nidiographic\r\nidiolect\r\nidiom\r\nidiomatic\r\nidiomatically\r\nidiomorphic\r\nidiomorphically\r\nidioms\r\nidiopathic\r\nidiophone\r\nidioplasmatic\r\nidioplasmic\r\nidiosyncrasies\r\nidiosyncrasy\r\nidiosyncrasy's\r\nidiosyncratic\r\nidiosyncratically\r\nidiot\r\nidiotic\r\nidiotically\r\nidiotism\r\nidiots\r\nidiot's\r\nidle\r\nidled\r\nidleness\r\nidler\r\nidlers\r\nidles\r\nidlest\r\nidling\r\nidly\r\nidol\r\nidolater\r\nidolatrise\r\nidolatrised\r\nidolatrises\r\nidolatrising\r\nidolatrous\r\nidolatrously\r\nidolatrousness\r\nidolatry\r\nidolisation\r\nidolisations\r\nidolisation's\r\nidolise\r\nidolised\r\nidoliser\r\nidolisers\r\nidolises\r\nidolising\r\nidols\r\nidol's\r\nid's\r\nidyll\r\nidyllic\r\nidyllically\r\nidyllist\r\nie\r\nif\r\niffy\r\nigloo\r\nigloos\r\nigneous\r\nignescent\r\nignitability\r\nignitable\r\nignite\r\nignited\r\nignites\r\nigniting\r\nignition\r\nignitions\r\nignitron\r\nignobility\r\nignoble\r\nignobleness\r\nignobly\r\nignominious\r\nignominiously\r\nignominy\r\nignorable\r\nignoramus\r\nignorance\r\nignorant\r\nignorantly\r\nignore\r\nignored\r\nignorer\r\nignores\r\nignoring\r\niguana\r\nihram\r\nii\r\niii\r\nikebana\r\nilea\r\nileac\r\nileitis\r\nileum\r\nilex\r\niliac\r\nilk\r\nilk's\r\nill\r\nillation\r\nillative\r\nillatively\r\nillaudable\r\nillaudably\r\nillegal\r\nillegalise\r\nillegalised\r\nillegalises\r\nillegalising\r\nillegalities\r\nillegality\r\nillegally\r\nillegibility\r\nillegible\r\nillegibly\r\nillegitimacy\r\nillegitimate\r\nillegitimately\r\nillegitimatise\r\nillegitimatises\r\nilliberal\r\nilliberally\r\nilliberalness\r\nillicit\r\nillicitly\r\nillimitability\r\nillimitable\r\nillimitableness\r\nillimitably\r\nilliquid\r\nilliteracy\r\nilliterate\r\nilliterately\r\nilliterateness\r\nilliterates\r\nillness\r\nillnesses\r\nillness's\r\nillocution\r\nillogic\r\nillogical\r\nillogically\r\nillogicalness\r\nills\r\nillume\r\nillumed\r\nilluminable\r\nilluminate\r\nilluminated\r\nilluminates\r\nilluminating\r\nilluminatingly\r\nillumination\r\nilluminations\r\nilluminative\r\nilluminator\r\nilluminators\r\nillumine\r\nillumined\r\nillumines\r\nilluming\r\nilluminist\r\nillus\r\nillusion\r\nillusionary\r\nillusionism\r\nillusionist\r\nillusions\r\nillusion's\r\nillusive\r\nillusively\r\nillusiveness\r\nillusorily\r\nillusoriness\r\nillusory\r\nillustrate\r\nillustrated\r\nillustrates\r\nillustrating\r\nillustration\r\nillustrational\r\nillustrations\r\nillustrative\r\nillustratively\r\nillustrator\r\nillustrators\r\nillustrator's\r\nillustrious\r\nillustriously\r\nillustriousness\r\ni'm\r\nimage\r\nimaged\r\nimagery\r\nimages\r\nimaginable\r\nimaginableness\r\nimaginably\r\nimaginarily\r\nimaginariness\r\nimaginary\r\nimagination\r\nimaginations\r\nimagination's\r\nimaginative\r\nimaginatively\r\nimaginativeness\r\nimagine\r\nimagined\r\nimaginer\r\nimagines\r\nimaging\r\nimagining\r\nimaginings\r\nimagism\r\nimagist\r\nimagistic\r\nimago\r\nimam\r\nimamate\r\nimaret\r\nimbalance\r\nimbalances\r\nimbecile\r\nimbecilely\r\nimbecilic\r\nimbecility\r\nimbed\r\nimbibe\r\nimbibed\r\nimbiber\r\nimbibing\r\nimbricate\r\nimbroglio\r\nimbrue\r\nimbrued\r\nimbruing\r\nimbrute\r\nimbruted\r\nimbruting\r\nimbue\r\nimbued\r\nimbuing\r\nimitable\r\nimitate\r\nimitated\r\nimitates\r\nimitating\r\nimitation\r\nimitational\r\nimitations\r\nimitative\r\nimitatively\r\nimitativeness\r\nimitator\r\nimitators\r\nimmaculacy\r\nimmaculate\r\nimmaculately\r\nimmanence\r\nimmanency\r\nimmanent\r\nimmanently\r\nimmaterial\r\nimmaterialise\r\nimmaterialised\r\nimmaterialises\r\nimmaterialising\r\nimmaterialism\r\nimmaterialist\r\nimmateriality\r\nimmaterially\r\nimmaterialness\r\nimmature\r\nimmaturely\r\nimmatureness\r\nimmaturity\r\nimmeasurable\r\nimmeasurableness\r\nimmeasurably\r\nimmediacies\r\nimmediacy\r\nimmediate\r\nimmediately\r\nimmediateness\r\nimmedicable\r\nimmemorial\r\nimmemorially\r\nimmense\r\nimmensely\r\nimmenseness\r\nimmensities\r\nimmensity\r\nimmensurable\r\nimmerge\r\nimmerged\r\nimmergence\r\nimmerging\r\nimmerse\r\nimmersed\r\nimmerses\r\nimmersing\r\nimmersion\r\nimmersionism\r\nimmersions\r\nimmethodical\r\nimmethodically\r\nimmigrant\r\nimmigrants\r\nimmigrant's\r\nimmigrate\r\nimmigrated\r\nimmigrates\r\nimmigrating\r\nimmigration\r\nimminence\r\nimminent\r\nimminently\r\nimmingle\r\nimmiscibility\r\nimmiscible\r\nimmiscibly\r\nimmitigable\r\nimmitigably\r\nimmix\r\nimmixture\r\nimmobile\r\nimmobilisation\r\nimmobilisations\r\nimmobilisation's\r\nimmobilise\r\nimmobilised\r\nimmobiliser\r\nimmobilises\r\nimmobilising\r\nimmobility\r\nimmoderate\r\nimmoderately\r\nimmoderateness\r\nimmoderation\r\nimmodest\r\nimmodestly\r\nimmodesty\r\nimmolate\r\nimmolation\r\nimmolator\r\nimmoral\r\nimmoralities\r\nimmorality\r\nimmorally\r\nimmortal\r\nimmortalisation\r\nimmortalisations\r\nimmortalisation's\r\nimmortalise\r\nimmortalised\r\nimmortaliser\r\nimmortalisers\r\nimmortalises\r\nimmortalising\r\nimmortality\r\nimmortally\r\nimmortals\r\nimmortelle\r\nimmotile\r\nimmovability\r\nimmovable\r\nimmovableness\r\nimmovably\r\nimmune\r\nimmunisation\r\nimmunisations\r\nimmunisation's\r\nimmunise\r\nimmunised\r\nimmunises\r\nimmunising\r\nimmunities\r\nimmunity\r\nimmunity's\r\nimmunoassay\r\nimmunochemical\r\nimmunochemically\r\nimmunologist\r\nimmunology\r\nimmunosuppressive\r\nimmure\r\nimmured\r\nimmurement\r\nimmures\r\nimmuring\r\nimmutability\r\nimmutable\r\nimmutableness\r\nimmutably\r\nimp\r\nimpact\r\nimpacted\r\nimpacting\r\nimpaction\r\nimpactions\r\nimpacts\r\nimpair\r\nimpaired\r\nimpairer\r\nimpairing\r\nimpairment\r\nimpairs\r\nimpala\r\nimpale\r\nimpaled\r\nimpalement\r\nimpales\r\nimpaling\r\nimpalpability\r\nimpalpable\r\nimpalpably\r\nimpanation\r\nimparadised\r\nimparity\r\nimpart\r\nimpartation\r\nimparted\r\nimpartial\r\nimpartiality\r\nimpartially\r\nimpartibly\r\nimparting\r\nimpartment\r\nimparts\r\nimpassability\r\nimpassable\r\nimpassableness\r\nimpassably\r\nimpasse\r\nimpasses\r\nimpassibility\r\nimpassibly\r\nimpassion\r\nimpassioned\r\nimpassioning\r\nimpassions\r\nimpassive\r\nimpassively\r\nimpassiveness\r\nimpassivity\r\nimpasto\r\nimpatience\r\nimpatient\r\nimpatiently\r\nimpeach\r\nimpeachable\r\nimpeached\r\nimpeaches\r\nimpeaching\r\nimpeachment\r\nimpearl\r\nimpeccable\r\nimpeccably\r\nimpeccant\r\nimpecunious\r\nimpecuniously\r\nimpecuniousness\r\nimpedance\r\nimpedances\r\nimpedance's\r\nimpede\r\nimpeded\r\nimpeder\r\nimpedes\r\nimpediment\r\nimpedimenta\r\nimpediments\r\nimpediment's\r\nimpeding\r\nimpel\r\nimpelled\r\nimpeller\r\nimpellers\r\nimpelling\r\nimpellor\r\nimpels\r\nimpend\r\nimpendent\r\nimpending\r\nimpenetrability\r\nimpenetrable\r\nimpenetrableness\r\nimpenetrably\r\nimpenitence\r\nimpenitent\r\nimpenitently\r\nimperative\r\nimperatively\r\nimperativeness\r\nimperatives\r\nimperator\r\nimperatorial\r\nimperceptibility\r\nimperceptible\r\nimperceptibly\r\nimperceptive\r\nimperceptiveness\r\nimperceptivity\r\nimperfect\r\nimperfectability\r\nimperfection\r\nimperfections\r\nimperfection's\r\nimperfective\r\nimperfectly\r\nimperfectness\r\nimperforate\r\nimperforated\r\nimperforates\r\nimperial\r\nimperialise\r\nimperialises\r\nimperialism\r\nimperialist\r\nimperialistic\r\nimperialistically\r\nimperialists\r\nimperialist's\r\nimperially\r\nimperil\r\nimperilled\r\nimperilling\r\nimperilment\r\nimperious\r\nimperiously\r\nimperiousness\r\nimperishable\r\nimperishableness\r\nimperishably\r\nimpermanence\r\nimpermanency\r\nimpermanent\r\nimpermeable\r\nimpermeableness\r\nimpermeably\r\nimpermissibility\r\nimpermissible\r\nimpermissibly\r\nimpersonal\r\nimpersonalise\r\nimpersonalised\r\nimpersonalises\r\nimpersonalising\r\nimpersonality\r\nimpersonally\r\nimpersonate\r\nimpersonated\r\nimpersonates\r\nimpersonating\r\nimpersonation\r\nimpersonations\r\nimpersonator\r\nimpertinence\r\nimpertinency\r\nimpertinent\r\nimpertinently\r\nimperturbability\r\nimperturbable\r\nimperturbably\r\nimpervious\r\nimperviously\r\nimperviousness\r\nimpetigo\r\nimpetrate\r\nimpetrated\r\nimpetrates\r\nimpetrating\r\nimpetration\r\nimpetrations\r\nimpetuosity\r\nimpetuous\r\nimpetuously\r\nimpetuousness\r\nimpetus\r\nimpi\r\nimpiety\r\nimpinge\r\nimpinged\r\nimpingement\r\nimpinges\r\nimpinging\r\nimpious\r\nimpiously\r\nimpish\r\nimpishly\r\nimpishness\r\nimplacability\r\nimplacable\r\nimplacableness\r\nimplacably\r\nimplacental\r\nimplant\r\nimplantation\r\nimplanted\r\nimplanter\r\nimplanting\r\nimplants\r\nimplausibility\r\nimplausible\r\nimplausibly\r\nimplement\r\nimplemental\r\nimplementation\r\nimplementations\r\nimplementation's\r\nimplemented\r\nimplementer\r\nimplementers\r\nimplementing\r\nimplements\r\nimplicate\r\nimplicated\r\nimplicates\r\nimplicating\r\nimplication\r\nimplications\r\nimplicative\r\nimplicatively\r\nimplicit\r\nimplicitly\r\nimplicitness\r\nimplied\r\nimplies\r\nimplode\r\nimploded\r\nimplodes\r\nimploding\r\nimplore\r\nimplored\r\nimplores\r\nimploring\r\nimplosion\r\nimplosions\r\nimplosive\r\nimplosively\r\nimply\r\nimplying\r\nimpolite\r\nimpolitely\r\nimpoliteness\r\nimpolitic\r\nimpoliticly\r\nimpoliticness\r\nimponderability\r\nimponderable\r\nimponderableness\r\nimponderables\r\nimponderably\r\nimport\r\nimportable\r\nimportance\r\nimportant\r\nimportantly\r\nimportation\r\nimportations\r\nimported\r\nimporter\r\nimporters\r\nimporting\r\nimports\r\nimportunate\r\nimportunately\r\nimportunateness\r\nimportune\r\nimportunely\r\nimportuner\r\nimportuners\r\nimportunities\r\nimportunity\r\nimposable\r\nimpose\r\nimposed\r\nimposer\r\nimposes\r\nimposing\r\nimposingly\r\nimposition\r\nimpositions\r\nimposition's\r\nimpossibilities\r\nimpossibility\r\nimpossible\r\nimpossibly\r\nimpost\r\nimpostor\r\nimpostors\r\nimpostor's\r\nimposts\r\nimposture\r\nimpotence\r\nimpotency\r\nimpotent\r\nimpotently\r\nimpound\r\nimpounded\r\nimpounding\r\nimpoundment\r\nimpoundments\r\nimpounds\r\nimpoverish\r\nimpoverished\r\nimpoverisher\r\nimpoverishes\r\nimpoverishing\r\nimpoverishment\r\nimpracticability\r\nimpracticable\r\nimpracticableness\r\nimpracticably\r\nimpractical\r\nimpracticality\r\nimpractically\r\nimpracticalness\r\nimprecate\r\nimprecated\r\nimprecates\r\nimprecating\r\nimprecation\r\nimprecations\r\nimprecatory\r\nimprecise\r\nimprecisely\r\nimpreciseness\r\nimprecision\r\nimpregnability\r\nimpregnable\r\nimpregnably\r\nimpregnate\r\nimpregnated\r\nimpregnates\r\nimpregnating\r\nimpregnation\r\nimpregnations\r\nimpregnator\r\nimpregnators\r\nimpresario\r\nimpress\r\nimpressed\r\nimpresser\r\nimpresses\r\nimpressible\r\nimpressing\r\nimpression\r\nimpressionability\r\nimpressionable\r\nimpressionableness\r\nimpressionably\r\nimpressionism\r\nimpressionist\r\nimpressionistic\r\nimpressionistically\r\nimpressionists\r\nimpressions\r\nimpression's\r\nimpressive\r\nimpressively\r\nimpressiveness\r\nimprimatur\r\nimprint\r\nimprinted\r\nimprinting\r\nimprints\r\nimprison\r\nimprisoned\r\nimprisoning\r\nimprisonment\r\nimprisonments\r\nimprisonment's\r\nimprisons\r\nimprobability\r\nimprobable\r\nimprobably\r\nimprobity\r\nimpromptu\r\nimproper\r\nimproperly\r\nimproperness\r\nimpropriety\r\nimprovability\r\nimprovable\r\nimprovably\r\nimprove\r\nimproved\r\nimprovement\r\nimprovements\r\nimprover\r\nimproves\r\nimprovidence\r\nimprovident\r\nimprovidently\r\nimproving\r\nimprovisation\r\nimprovisational\r\nimprovisations\r\nimprovisation's\r\nimprovisator\r\nimprovisatorial\r\nimprovisatory\r\nimprovise\r\nimprovised\r\nimproviser\r\nimprovisers\r\nimprovises\r\nimprovising\r\nimprudence\r\nimprudent\r\nimprudently\r\nimps\r\nimp's\r\nimpudence\r\nimpudent\r\nimpudently\r\nimpudicity\r\nimpugn\r\nimpugned\r\nimpugner\r\nimpugning\r\nimpugns\r\nimpuissance\r\nimpuissant\r\nimpulse\r\nimpulses\r\nimpulsion\r\nimpulsions\r\nimpulsive\r\nimpulsively\r\nimpulsiveness\r\nimpunity\r\nimpure\r\nimpurely\r\nimpureness\r\nimpurities\r\nimpurity\r\nimpurity's\r\nimputable\r\nimputation\r\nimputations\r\nimputative\r\nimputatively\r\nimpute\r\nimputed\r\nimputes\r\nimputing\r\nin\r\ninabilities\r\ninability\r\ninaccessibility\r\ninaccessible\r\ninaccessibly\r\ninaccuracies\r\ninaccuracy\r\ninaccurate\r\ninaccurately\r\ninaction\r\ninactions\r\ninactivate\r\ninactivation\r\ninactive\r\ninactively\r\ninactivity\r\ninadequacies\r\ninadequacy\r\ninadequate\r\ninadequately\r\ninadequateness\r\ninadmissibility\r\ninadmissible\r\ninadmissibly\r\ninadvertence\r\ninadvertency\r\ninadvertent\r\ninadvertently\r\ninadvisability\r\ninadvisable\r\ninalienability\r\ninalienable\r\ninalienably\r\ninalterability\r\ninalterable\r\ninalterably\r\ninane\r\ninanely\r\ninaner\r\ninanest\r\ninanimate\r\ninanimately\r\ninanimateness\r\ninanition\r\ninanity\r\ninappeasable\r\ninapplicability\r\ninapplicable\r\ninapplicably\r\ninapposite\r\ninappositely\r\ninappositeness\r\ninappreciable\r\ninappreciably\r\ninapprehensive\r\ninapproachable\r\ninappropriate\r\ninappropriately\r\ninappropriateness\r\ninapt\r\ninaptitude\r\ninaptly\r\ninaptness\r\ninarch\r\ninarguable\r\ninarguably\r\ninarticulate\r\ninarticulately\r\ninarticulateness\r\ninartificial\r\ninartistic\r\ninartistically\r\ninasmuch\r\ninattention\r\ninattentive\r\ninattentively\r\ninattentiveness\r\ninaudibility\r\ninaudible\r\ninaudibly\r\ninaugural\r\ninaugurate\r\ninaugurated\r\ninaugurating\r\ninauguration\r\ninaugurations\r\ninaugurator\r\ninaugurators\r\ninauspicious\r\ninauspiciously\r\ninauspiciousness\r\ninauthentic\r\ninbeing\r\ninboard\r\ninboards\r\ninborn\r\ninbound\r\ninbounds\r\ninbreathe\r\ninbred\r\ninbreed\r\ninbreeding\r\ninbuilt\r\nincalculability\r\nincalculable\r\nincalculableness\r\nincalculably\r\nincalescence\r\nincalescences\r\nincalescent\r\nincandesce\r\nincandesced\r\nincandescence\r\nincandescent\r\nincandescently\r\nincandesces\r\nincandescing\r\nincant\r\nincantation\r\nincantations\r\nincanted\r\nincapability\r\nincapable\r\nincapableness\r\nincapably\r\nincapacitate\r\nincapacitated\r\nincapacitates\r\nincapacitating\r\nincapacitation\r\nincapacity\r\nincarcerate\r\nincarcerated\r\nincarcerates\r\nincarcerating\r\nincarceration\r\nincardinate\r\nincardination\r\nincarnadine\r\nincarnate\r\nincarnation\r\nincarnations\r\nincarnation's\r\nincaution\r\nincautious\r\nincautiously\r\nincautiousness\r\nincendiaries\r\nincendiary\r\nincense\r\nincensed\r\nincenses\r\nincensing\r\nincensory\r\nincentive\r\nincentives\r\nincentive's\r\nincept\r\nincepted\r\nincepting\r\ninception\r\ninceptions\r\ninceptive\r\ninceptively\r\ninceptor\r\nincepts\r\nincertitude\r\nincessancy\r\nincessant\r\nincessantly\r\nincest\r\nincestuous\r\nincestuously\r\ninch\r\ninched\r\ninches\r\ninching\r\ninchmeal\r\ninchoate\r\ninchoately\r\ninchoateness\r\ninchoative\r\ninchworm\r\ninchworms\r\ninchworm's\r\nincidence\r\nincidences\r\nincident\r\nincidental\r\nincidentally\r\nincidentals\r\nincidents\r\nincident's\r\nincinerate\r\nincinerated\r\nincinerates\r\nincinerating\r\nincineration\r\nincinerations\r\nincinerator\r\nincinerators\r\nincipience\r\nincipiency\r\nincipient\r\nincipiently\r\nincipit\r\nincise\r\nincised\r\nincises\r\nincising\r\nincision\r\nincisions\r\nincision's\r\nincisive\r\nincisively\r\nincisiveness\r\nincisor\r\nincisors\r\nincisor's\r\nincitation\r\nincite\r\nincited\r\nincitement\r\nincitements\r\ninciter\r\nincites\r\ninciting\r\nincivility\r\ninclemency\r\ninclement\r\ninclemently\r\ninclinable\r\ninclination\r\ninclinational\r\ninclinations\r\ninclination's\r\nincline\r\ninclined\r\nincliner\r\ninclines\r\ninclining\r\ninclinometer\r\ninclinometers\r\ninclinometer's\r\ninclosing\r\nincludable\r\ninclude\r\nincluded\r\nincludes\r\nincludible\r\nincluding\r\ninclusion\r\ninclusions\r\ninclusion's\r\ninclusive\r\ninclusively\r\ninclusiveness\r\nincoercible\r\nincogitable\r\nincogitant\r\nincognisance\r\nincognisant\r\nincognita\r\nincognito\r\nincoherence\r\nincoherent\r\nincoherently\r\nincombustibility\r\nincombustible\r\nincome\r\nincomer\r\nincomers\r\nincomes\r\nincoming\r\nincommensurability\r\nincommensurable\r\nincommensurably\r\nincommensurate\r\nincommode\r\nincommodious\r\nincommodiously\r\nincommodiousness\r\nincommodity\r\nincommunicability\r\nincommunicable\r\nincommunicably\r\nincommunicado\r\nincommunicative\r\nincommutably\r\nincomparability\r\nincomparable\r\nincomparably\r\nincompatibilities\r\nincompatibility\r\nincompatibility's\r\nincompatible\r\nincompatibly\r\nincompetence\r\nincompetent\r\nincompetently\r\nincompetents\r\nincompetent's\r\nincomplete\r\nincompletely\r\nincompleteness\r\nincompletion\r\nincompliant\r\nincomprehensibility\r\nincomprehensible\r\nincomprehensibleness\r\nincomprehensibly\r\nincomprehension\r\nincomprehensive\r\nincompressibility\r\nincompressible\r\nincomputable\r\ninconceivability\r\ninconceivable\r\ninconceivableness\r\ninconceivably\r\ninconclusive\r\ninconclusively\r\ninconclusiveness\r\nincondensable\r\nincondite\r\ninconformity\r\nincongruence\r\nincongruent\r\nincongruently\r\nincongruities\r\nincongruity\r\nincongruous\r\nincongruously\r\nincongruousness\r\ninconsecutive\r\ninconsequence\r\ninconsequent\r\ninconsequential\r\ninconsequentiality\r\ninconsequentially\r\ninconsequently\r\ninconsiderable\r\ninconsiderableness\r\ninconsiderably\r\ninconsiderate\r\ninconsiderately\r\ninconsiderateness\r\ninconsideration\r\ninconsistence\r\ninconsistencies\r\ninconsistency\r\ninconsistency's\r\ninconsistent\r\ninconsistently\r\ninconsolable\r\ninconsolableness\r\ninconsolably\r\ninconsonance\r\ninconsonant\r\ninconspicuous\r\ninconspicuously\r\ninconspicuousness\r\ninconstancy\r\ninconstant\r\ninconstantly\r\ninconsumable\r\nincontestability\r\nincontestable\r\nincontestably\r\nincontinence\r\nincontinency\r\nincontinent\r\nincontinently\r\nincontrollable\r\nincontrovertible\r\nincontrovertibly\r\ninconvenience\r\ninconvenienced\r\ninconveniences\r\ninconveniencing\r\ninconveniency\r\ninconvenient\r\ninconveniently\r\ninconvertibility\r\ninconvertible\r\ninconvertibly\r\ninconvincible\r\nincorporable\r\nincorporate\r\nincorporated\r\nincorporates\r\nincorporating\r\nincorporation\r\nincorporative\r\nincorporator\r\nincorporeal\r\nincorporeally\r\nincorporeity\r\nincorrect\r\nincorrectly\r\nincorrectness\r\nincorrigibility\r\nincorrigible\r\nincorrigibleness\r\nincorrigibly\r\nincorrupt\r\nincorruptibility\r\nincorruptible\r\nincorruptibly\r\nincorruptly\r\nincorruptness\r\nincreasable\r\nincrease\r\nincreased\r\nincreaser\r\nincreases\r\nincreasing\r\nincreasingly\r\nincreate\r\nincredibility\r\nincredible\r\nincredibleness\r\nincredibly\r\nincredulity\r\nincredulous\r\nincredulously\r\nincrement\r\nincremental\r\nincrementally\r\nincremented\r\nincrementing\r\nincrements\r\nincrescent\r\nincriminate\r\nincriminated\r\nincriminates\r\nincriminating\r\nincrimination\r\nincriminatory\r\nincrust\r\nincrustation\r\nincubate\r\nincubated\r\nincubates\r\nincubating\r\nincubation\r\nincubational\r\nincubator\r\nincubators\r\nincubator's\r\nincubatory\r\nincubi\r\nincubus\r\ninculcate\r\ninculcated\r\ninculcates\r\ninculcation\r\ninculcator\r\ninculpate\r\ninculpation\r\nincumbency\r\nincumbent\r\nincumbents\r\nincunabula\r\nincunabulum\r\nincur\r\nincurability\r\nincurable\r\nincurableness\r\nincurables\r\nincurably\r\nincuriosity\r\nincurious\r\nincuriously\r\nincuriousness\r\nincurred\r\nincurrence\r\nincurrent\r\nincurring\r\nincurs\r\nincursion\r\nincursions\r\nincurvature\r\nincurve\r\nincuse\r\nindaba\r\nindebted\r\nindebtedness\r\nindecency\r\nindecent\r\nindecently\r\nindecipherable\r\nindecision\r\nindecisive\r\nindecisively\r\nindecisiveness\r\nindeclinable\r\nindecomposable\r\nindecorous\r\nindecorously\r\nindecorum\r\nindeed\r\nindefatigability\r\nindefatigable\r\nindefatigably\r\nindefeasibility\r\nindefeasible\r\nindefeasibly\r\nindefectibility\r\nindefectible\r\nindefectibly\r\nindefensibility\r\nindefensible\r\nindefensibly\r\nindefinable\r\nindefinableness\r\nindefinably\r\nindefinite\r\nindefinitely\r\nindefiniteness\r\nindehiscence\r\nindehiscent\r\nindelibility\r\nindelible\r\nindelibly\r\nindelicacy\r\nindelicate\r\nindelicately\r\nindemnification\r\nindemnifier\r\nindemnify\r\nindemnity\r\nindemonstrable\r\nindemonstrably\r\nindene\r\nindent\r\nindentation\r\nindentations\r\nindentation's\r\nindented\r\nindenter\r\nindenting\r\nindention\r\nindents\r\nindenture\r\nindentured\r\nindentures\r\nindenturing\r\nindependence\r\nindependency\r\nindependent\r\nindependently\r\nindependents\r\nindescribable\r\nindescribably\r\nindestructibility\r\nindestructible\r\nindestructibleness\r\nindestructibly\r\nindeterminable\r\nindeterminably\r\nindeterminacies\r\nindeterminacy\r\nindeterminacy's\r\nindeterminate\r\nindeterminately\r\nindeterminateness\r\nindeterminism\r\nindeterminist\r\nindex\r\nindexation\r\nindexed\r\nindexer\r\nindexers\r\nindexes\r\nindexical\r\nindexing\r\nindicant\r\nindicants\r\nindicate\r\nindicated\r\nindicates\r\nindicating\r\nindication\r\nindications\r\nindicative\r\nindicatively\r\nindicatives\r\nindicator\r\nindicators\r\nindicator's\r\nindicatory\r\nindices\r\nindicia\r\nindict\r\nindictable\r\nindicted\r\nindicter\r\nindictment\r\nindictments\r\nindictment's\r\nindictor\r\nindifference\r\nindifferent\r\nindifferentism\r\nindifferentist\r\nindifferently\r\nindigence\r\nindigene\r\nindigenes\r\nindigenous\r\nindigenously\r\nindigenousness\r\nindigent\r\nindigested\r\nindigestibility\r\nindigestible\r\nindigestion\r\nindigestive\r\nindignant\r\nindignantly\r\nindignation\r\nindignities\r\nindignity\r\nindigo\r\nindigoid\r\nindirect\r\nindirection\r\nindirections\r\nindirectly\r\nindirectness\r\nindiscernible\r\nindiscipline\r\nindiscoverable\r\nindiscreet\r\nindiscreetly\r\nindiscreetness\r\nindiscrete\r\nindiscretion\r\nindiscriminate\r\nindiscriminately\r\nindiscriminateness\r\nindiscriminating\r\nindiscriminatingly\r\nindiscrimination\r\nindispensability\r\nindispensable\r\nindispensably\r\nindispose\r\nindisposed\r\nindisposes\r\nindisposing\r\nindisposition\r\nindisputable\r\nindisputableness\r\nindisputably\r\nindissolubility\r\nindissoluble\r\nindissolubleness\r\nindissolubly\r\nindistinct\r\nindistinctive\r\nindistinctly\r\nindistinctness\r\nindistinguishable\r\nindistinguishableness\r\nindistinguishably\r\nindium\r\nindivertible\r\nindivertibly\r\nindividual\r\nindividualisation\r\nindividualisations\r\nindividualisation's\r\nindividualise\r\nindividualised\r\nindividualiser\r\nindividualisers\r\nindividualises\r\nindividualising\r\nindividualism\r\nindividualist\r\nindividualistic\r\nindividualistically\r\nindividualists\r\nindividuality\r\nindividually\r\nindividuals\r\nindividual's\r\nindividuate\r\nindividuated\r\nindividuates\r\nindividuating\r\nindividuation\r\nindivisibility\r\nindivisible\r\nindivisibleness\r\nindivisibly\r\nindo\r\nindocility\r\nindoctrinate\r\nindoctrinated\r\nindoctrinates\r\nindoctrinating\r\nindoctrination\r\nindoctrinator\r\nindolence\r\nindolent\r\nindolently\r\nindomitable\r\nindomitableness\r\nindomitably\r\nindoor\r\nindoors\r\nindrawn\r\nindubitable\r\nindubitableness\r\nindubitably\r\ninduce\r\ninduced\r\ninducement\r\ninducements\r\ninducement's\r\ninduces\r\ninducible\r\ninducing\r\ninduct\r\ninductance\r\ninductances\r\ninducted\r\ninductee\r\ninductees\r\ninductile\r\ninducting\r\ninduction\r\ninductions\r\ninduction's\r\ninductive\r\ninductively\r\ninductiveness\r\ninductor\r\ninductors\r\ninductor's\r\ninducts\r\nindulge\r\nindulged\r\nindulgence\r\nindulgences\r\nindulgence's\r\nindulgent\r\nindulgently\r\nindulger\r\nindulges\r\nindulging\r\nindult\r\ninduplicate\r\nindurate\r\nindustrial\r\nindustrialisation\r\nindustrialisations\r\nindustrialisation's\r\nindustrialise\r\nindustrialised\r\nindustrialises\r\nindustrialising\r\nindustrialism\r\nindustrialist\r\nindustrialists\r\nindustrialist's\r\nindustrially\r\nindustrials\r\nindustries\r\nindustrious\r\nindustriously\r\nindustriousness\r\nindustry\r\nindustry's\r\nindwell\r\nindwelling\r\ninebriant\r\ninebriate\r\ninebriated\r\ninebriates\r\ninebriating\r\ninebriation\r\ninebriety\r\ninedible\r\ninedited\r\nineffability\r\nineffable\r\nineffableness\r\nineffably\r\nineffaceability\r\nineffaceable\r\nineffaceably\r\nineffective\r\nineffectively\r\nineffectiveness\r\nineffectual\r\nineffectuality\r\nineffectually\r\nineffectualness\r\ninefficacious\r\ninefficaciously\r\ninefficaciousness\r\ninefficacy\r\ninefficiencies\r\ninefficiency\r\ninefficient\r\ninefficiently\r\ninelastic\r\ninelasticity\r\ninelegance\r\ninelegant\r\ninelegantly\r\nineligibility\r\nineligible\r\nineloquent\r\nineloquently\r\nineluctability\r\nineluctable\r\nineluctably\r\ninenarrable\r\ninept\r\nineptitude\r\nineptly\r\nineptness\r\ninequalities\r\ninequality\r\ninequitable\r\ninequitably\r\ninequities\r\ninequity\r\nineradicably\r\ninerrable\r\ninerrancy\r\ninerrant\r\ninert\r\ninertia\r\ninertial\r\ninertias\r\ninertly\r\ninertness\r\ninescapable\r\ninescapably\r\ninessential\r\ninestimable\r\ninestimably\r\ninevitabilities\r\ninevitability\r\ninevitable\r\ninevitably\r\ninexact\r\ninexactitude\r\ninexactly\r\ninexactness\r\ninexcusable\r\ninexcusableness\r\ninexcusably\r\ninexhaustibility\r\ninexhaustible\r\ninexhaustibleness\r\ninexhaustibly\r\ninexistence\r\ninexistent\r\ninexorable\r\ninexorably\r\ninexpedience\r\ninexpediency\r\ninexpedient\r\ninexpediently\r\ninexpensive\r\ninexpensively\r\ninexpensiveness\r\ninexperience\r\ninexperienced\r\ninexpert\r\ninexpertly\r\ninexpertness\r\ninexpiable\r\ninexpiably\r\ninexplicability\r\ninexplicable\r\ninexplicableness\r\ninexplicably\r\ninexplicit\r\ninexpressibility\r\ninexpressible\r\ninexpressibleness\r\ninexpressibly\r\ninexpressive\r\ninexpressively\r\ninexpressiveness\r\ninexpugnableness\r\ninexpugnably\r\ninextensible\r\ninextinguishable\r\ninextinguishably\r\ninextirpable\r\ninextricability\r\ninextricable\r\ninextricably\r\ninfallibility\r\ninfallible\r\ninfallibly\r\ninfamous\r\ninfamously\r\ninfamy\r\ninfancy\r\ninfant\r\ninfanticide\r\ninfanticide's\r\ninfantile\r\ninfantilism\r\ninfantry\r\ninfantryman\r\ninfantrymen\r\ninfants\r\ninfant's\r\ninfarct\r\ninfarction\r\ninfatuate\r\ninfatuated\r\ninfatuation\r\ninfatuations\r\ninfeasible\r\ninfect\r\ninfected\r\ninfecting\r\ninfection\r\ninfections\r\ninfection's\r\ninfectious\r\ninfectiously\r\ninfectiousness\r\ninfective\r\ninfectivity\r\ninfector\r\ninfects\r\ninfelicitous\r\ninfelicitously\r\ninfelicity\r\ninfer\r\ninferable\r\ninference\r\ninferences\r\ninference's\r\ninferential\r\ninferentially\r\ninferior\r\ninferiority\r\ninferiorly\r\ninferiors\r\ninferior's\r\ninfernal\r\ninfernally\r\ninferno\r\ninfernos\r\ninferno's\r\ninferred\r\ninferring\r\ninfers\r\ninfertile\r\ninfertility\r\ninfest\r\ninfestation\r\ninfestations\r\ninfested\r\ninfester\r\ninfesting\r\ninfests\r\ninfibulate\r\ninfidel\r\ninfidelity\r\ninfidels\r\ninfidel's\r\ninfield\r\ninfielder\r\ninfielders\r\ninfielder's\r\ninfields\r\ninfield's\r\ninfighter\r\ninfighters\r\ninfighter's\r\ninfighting\r\ninfill\r\ninfiltrate\r\ninfiltrated\r\ninfiltrates\r\ninfiltrating\r\ninfiltration\r\ninfiltrative\r\ninfiltrator\r\ninfiltrators\r\ninfinite\r\ninfinitely\r\ninfiniteness\r\ninfinitesimal\r\ninfinitesimally\r\ninfinities\r\ninfinitival\r\ninfinitive\r\ninfinitively\r\ninfinitives\r\ninfinitive's\r\ninfinitude\r\ninfinitum\r\ninfinity\r\ninfirm\r\ninfirmary\r\ninfirmed\r\ninfirmity\r\ninfirmly\r\ninfix\r\ninfixes\r\ninfix's\r\ninflame\r\ninflamed\r\ninflaming\r\ninflammable\r\ninflammableness\r\ninflammably\r\ninflammation\r\ninflammatorily\r\ninflammatory\r\ninflatable\r\ninflate\r\ninflated\r\ninflates\r\ninflating\r\ninflation\r\ninflationary\r\ninflationism\r\ninflationist\r\ninflator\r\ninflect\r\ninflected\r\ninflecting\r\ninflection\r\ninflectional\r\ninflectionally\r\ninflections\r\ninflective\r\ninflects\r\ninflexed\r\ninflexibility\r\ninflexible\r\ninflexibleness\r\ninflexibly\r\ninflexion\r\ninflict\r\ninflicted\r\ninflicting\r\ninfliction\r\ninflictive\r\ninflictor\r\ninflicts\r\ninflorescence\r\ninflorescences\r\ninflorescent\r\ninflow\r\ninflows\r\ninfluence\r\ninfluenced\r\ninfluencer\r\ninfluences\r\ninfluencing\r\ninfluent\r\ninfluential\r\ninfluentially\r\ninfluenza\r\ninflux\r\ninfo\r\ninform\r\ninformal\r\ninformality\r\ninformally\r\ninformant\r\ninformants\r\ninformant's\r\ninformatics\r\ninformation\r\ninformational\r\ninformative\r\ninformatively\r\ninformed\r\ninformer\r\ninformers\r\ninforming\r\ninforms\r\ninfra\r\ninfract\r\ninfraction\r\ninfractions\r\ninfrahuman\r\ninfralapsarian\r\ninfrangibility\r\ninfrangibleness\r\ninfrangibly\r\ninfrared\r\ninfrasonic\r\ninfrastructure\r\ninfrastructures\r\ninfrequence\r\ninfrequency\r\ninfrequent\r\ninfrequently\r\ninfringe\r\ninfringed\r\ninfringement\r\ninfringements\r\ninfringement's\r\ninfringes\r\ninfringing\r\ninfundibulate\r\ninfuriate\r\ninfuriated\r\ninfuriately\r\ninfuriates\r\ninfuriating\r\ninfuriatingly\r\ninfuriation\r\ninfuscate\r\ninfuse\r\ninfused\r\ninfuser\r\ninfuses\r\ninfusibility\r\ninfusible\r\ninfusibleness\r\ninfusing\r\ninfusion\r\ninfusionism\r\ninfusions\r\ningather\r\ningathering\r\ningeminate\r\ningenerate\r\ningenious\r\ningeniously\r\ningeniousness\r\ningenuity\r\ningenuous\r\ningenuously\r\ningenuousness\r\ningest\r\ningested\r\ningestible\r\ningestion\r\ningle\r\ninglenook\r\ninglorious\r\ningloriously\r\ningloriousness\r\ningoing\r\ningot\r\ningrain\r\ningrained\r\ningrains\r\ningrate\r\ningratiate\r\ningratiating\r\ningratiatingly\r\ningratiation\r\ningratiatory\r\ningratitude\r\ningredient\r\ningredients\r\ningredient's\r\ningress\r\ningression\r\ningressive\r\ningressiveness\r\ningrown\r\ningrowths\r\ninguinal\r\ningurgitation\r\ninhabit\r\ninhabitable\r\ninhabitancy\r\ninhabitant\r\ninhabitants\r\ninhabitant's\r\ninhabitation\r\ninhabited\r\ninhabiting\r\ninhabits\r\ninhalant\r\ninhalation\r\ninhalator\r\ninhale\r\ninhaled\r\ninhaler\r\ninhales\r\ninhaling\r\ninharmonious\r\ninharmoniously\r\ninharmoniousness\r\ninhaul\r\ninhere\r\ninhered\r\ninherence\r\ninherent\r\ninherently\r\ninheres\r\ninhering\r\ninherit\r\ninheritability\r\ninheritable\r\ninheritableness\r\ninheritance\r\ninheritances\r\ninheritance's\r\ninherited\r\ninheriting\r\ninheritor\r\ninheritors\r\ninheritor's\r\ninheritress\r\ninheritresses\r\ninherits\r\ninhesion\r\ninhibit\r\ninhibited\r\ninhibiter\r\ninhibiting\r\ninhibition\r\ninhibitions\r\ninhibition's\r\ninhibitive\r\ninhibitor\r\ninhibitors\r\ninhibitory\r\ninhibits\r\ninhomogeneous\r\ninhospitable\r\ninhospitableness\r\ninhospitably\r\ninhospitality\r\ninhuman\r\ninhumane\r\ninhumanely\r\ninhumanities\r\ninhumanity\r\ninhumanly\r\ninhumanness\r\ninhumation\r\ninhume\r\ninhumed\r\ninhumes\r\ninhuming\r\ninimical\r\ninimically\r\ninimitable\r\ninimitableness\r\ninimitably\r\niniquities\r\niniquitous\r\niniquitously\r\niniquitousness\r\niniquity\r\niniquity's\r\ninitial\r\ninitialisation\r\ninitialisations\r\ninitialisation's\r\ninitialise\r\ninitialised\r\ninitialises\r\ninitialising\r\ninitialled\r\ninitialling\r\ninitially\r\ninitials\r\ninitiate\r\ninitiated\r\ninitiates\r\ninitiating\r\ninitiation\r\ninitiations\r\ninitiative\r\ninitiatives\r\ninitiative's\r\ninitiator\r\ninitiators\r\ninitiator's\r\ninitiatory\r\ninject\r\ninjected\r\ninjecting\r\ninjection\r\ninjections\r\ninjection's\r\ninjector\r\ninjectors\r\ninjects\r\ninjudicious\r\ninjudiciously\r\ninjudiciousness\r\ninjunction\r\ninjunctions\r\ninjunction's\r\ninjunctive\r\ninjure\r\ninjured\r\ninjurer\r\ninjures\r\ninjuries\r\ninjuring\r\ninjurious\r\ninjuriously\r\ninjuriousness\r\ninjury\r\ninjury's\r\ninjustice\r\ninjustices\r\ninjustice's\r\nink\r\ninkberry\r\ninkblot\r\ninked\r\ninker\r\ninkers\r\ninkhorn\r\ninkiness\r\ninking\r\ninkle\r\ninkling\r\ninklings\r\ninkling's\r\ninks\r\ninkstand\r\ninkwell\r\ninky\r\ninlaid\r\ninland\r\ninlay\r\ninlayer\r\ninlaying\r\ninlet\r\ninlets\r\ninlet's\r\ninmate\r\ninmates\r\ninmate's\r\ninmost\r\ninn\r\ninnards\r\ninnate\r\ninnately\r\ninnateness\r\ninner\r\ninnermost\r\ninnersole\r\ninnerspring\r\ninnervate\r\ninnervated\r\ninnervates\r\ninnervating\r\ninnerve\r\ninning\r\ninnings\r\ninnkeeper\r\ninnkeepers\r\ninnkeeper's\r\ninnocence\r\ninnocent\r\ninnocently\r\ninnocents\r\ninnocuous\r\ninnocuously\r\ninnocuousness\r\ninnovate\r\ninnovated\r\ninnovates\r\ninnovating\r\ninnovation\r\ninnovations\r\ninnovation's\r\ninnovative\r\ninnovativeness\r\ninnovator\r\ninnovators\r\ninnovatory\r\ninns\r\ninnuendo\r\ninnuendoes\r\ninnuendos\r\ninnumerability\r\ninnumerable\r\ninnumerableness\r\ninnumerably\r\ninnumerate\r\ninnutrition\r\ninobservance\r\ninobservant\r\ninoculate\r\ninoculated\r\ninoculates\r\ninoculating\r\ninoculation\r\ninoculations\r\ninodorous\r\ninoffensive\r\ninoffensively\r\ninoffensiveness\r\ninoperable\r\ninoperative\r\ninoperativeness\r\ninopportune\r\ninopportunely\r\ninopportuneness\r\ninordinate\r\ninordinately\r\ninordinateness\r\ninorganic\r\ninorganically\r\ninosculate\r\ninosculated\r\ninosculates\r\ninosculating\r\ninosculation\r\ninpatient\r\ninput\r\ninputs\r\ninput's\r\ninputted\r\ninputting\r\ninquest\r\ninquire\r\ninquired\r\ninquirer\r\ninquirers\r\ninquires\r\ninquiries\r\ninquiring\r\ninquiringly\r\ninquiry\r\ninquiry's\r\ninquisition\r\ninquisitional\r\ninquisitions\r\ninquisition's\r\ninquisitive\r\ninquisitively\r\ninquisitiveness\r\ninquisitor\r\ninquisitorial\r\ninquisitorially\r\ninroad\r\ninroads\r\ninrush\r\nins\r\ninsalubrious\r\ninsane\r\ninsanely\r\ninsaneness\r\ninsanitary\r\ninsanity\r\ninsatiability\r\ninsatiable\r\ninsatiableness\r\ninsatiably\r\ninsatiate\r\ninsatiately\r\ninsatiateness\r\ninscape\r\ninscribe\r\ninscribed\r\ninscriber\r\ninscribes\r\ninscribing\r\ninscription\r\ninscriptional\r\ninscriptions\r\ninscription's\r\ninscriptive\r\ninscriptively\r\ninscroll\r\ninscrutability\r\ninscrutable\r\ninscrutableness\r\ninscrutably\r\ninseam\r\ninsect\r\ninsecticide\r\ninsecticides\r\ninsectivore\r\ninsectivores\r\ninsectivore's\r\ninsectivorous\r\ninsects\r\ninsect's\r\ninsecure\r\ninsecurely\r\ninsecurity\r\ninseminate\r\ninsemination\r\ninseminator\r\ninsensate\r\ninsensately\r\ninsensateness\r\ninsensibility\r\ninsensible\r\ninsensibly\r\ninsensitive\r\ninsensitively\r\ninsensitiveness\r\ninsensitivity\r\ninsentience\r\ninsentient\r\ninseparability\r\ninseparable\r\ninseparableness\r\ninseparably\r\ninsert\r\ninserted\r\ninserter\r\ninserting\r\ninsertion\r\ninsertions\r\ninsertion's\r\ninserts\r\ninset\r\ninsets\r\ninsetting\r\ninshore\r\ninside\r\ninsider\r\ninsiders\r\ninsides\r\ninsidious\r\ninsidiously\r\ninsidiousness\r\ninsight\r\ninsightful\r\ninsightfully\r\ninsights\r\ninsight's\r\ninsignia\r\ninsignias\r\ninsignificance\r\ninsignificances\r\ninsignificancy\r\ninsignificant\r\ninsignificantly\r\ninsincere\r\ninsincerely\r\ninsincerity\r\ninsinuate\r\ninsinuated\r\ninsinuates\r\ninsinuating\r\ninsinuatingly\r\ninsinuation\r\ninsinuations\r\ninsinuator\r\ninsipid\r\ninsipidity\r\ninsipidly\r\ninsipience\r\ninsist\r\ninsisted\r\ninsistence\r\ninsistency\r\ninsistent\r\ninsistently\r\ninsisting\r\ninsists\r\ninsobriety\r\ninsofar\r\ninsolate\r\ninsole\r\ninsolence\r\ninsolent\r\ninsolently\r\ninsolubility\r\ninsoluble\r\ninsolubleness\r\ninsolubly\r\ninsolvable\r\ninsolvably\r\ninsolvency\r\ninsolvent\r\ninsomnia\r\ninsomniac\r\ninsomniacs\r\ninsomuch\r\ninsouciance\r\ninsouciant\r\ninsouciantly\r\ninspect\r\ninspected\r\ninspecting\r\ninspection\r\ninspections\r\ninspection's\r\ninspective\r\ninspector\r\ninspectorate\r\ninspectors\r\ninspector's\r\ninspects\r\ninspiration\r\ninspirational\r\ninspirationally\r\ninspirations\r\ninspiration's\r\ninspire\r\ninspired\r\ninspirer\r\ninspires\r\ninspiring\r\ninspirit\r\ninstabilities\r\ninstability\r\ninstable\r\ninstall\r\ninstallation\r\ninstallations\r\ninstallation's\r\ninstalled\r\ninstaller\r\ninstallers\r\ninstalling\r\ninstalls\r\ninstalment\r\ninstalments\r\ninstance\r\ninstanced\r\ninstances\r\ninstancing\r\ninstant\r\ninstantaneity\r\ninstantaneous\r\ninstantaneously\r\ninstantaneousness\r\ninstanter\r\ninstantiate\r\ninstantiated\r\ninstantiates\r\ninstantiating\r\ninstantiation\r\ninstantiations\r\ninstantiation's\r\ninstantly\r\ninstants\r\ninstate\r\ninstated\r\ninstates\r\ninstating\r\ninstauration\r\ninstead\r\ninstep\r\ninsteps\r\ninstigate\r\ninstigated\r\ninstigates\r\ninstigating\r\ninstigation\r\ninstigative\r\ninstigator\r\ninstigators\r\ninstigator's\r\ninstil\r\ninstillation\r\ninstilled\r\ninstiller\r\ninstilling\r\ninstils\r\ninstinct\r\ninstinctive\r\ninstinctively\r\ninstincts\r\ninstinct's\r\ninstinctual\r\ninstitute\r\ninstituted\r\ninstitutes\r\ninstituting\r\ninstitution\r\ninstitutional\r\ninstitutionalisation\r\ninstitutionalisations\r\ninstitutionalisation's\r\ninstitutionalise\r\ninstitutionalised\r\ninstitutionalises\r\ninstitutionalising\r\ninstitutionalism\r\ninstitutionally\r\ninstitutions\r\ninstitution's\r\ninstitutive\r\ninstitutor\r\ninstruct\r\ninstructed\r\ninstructing\r\ninstruction\r\ninstructional\r\ninstructions\r\ninstruction's\r\ninstructive\r\ninstructively\r\ninstructiveness\r\ninstructor\r\ninstructors\r\ninstructor's\r\ninstructorship\r\ninstructress\r\ninstructs\r\ninstrument\r\ninstrumental\r\ninstrumentalism\r\ninstrumentalist\r\ninstrumentalists\r\ninstrumentalist's\r\ninstrumentalities\r\ninstrumentality\r\ninstrumentally\r\ninstrumentals\r\ninstrumentation\r\ninstrumented\r\ninstruments\r\ninsubordinate\r\ninsubordinately\r\ninsubordination\r\ninsubstantial\r\ninsubstantiality\r\ninsufferable\r\ninsufferableness\r\ninsufferably\r\ninsufficiencies\r\ninsufficiency\r\ninsufficient\r\ninsufficiently\r\ninsufflate\r\ninsufflates\r\ninsufflating\r\ninsular\r\ninsularism\r\ninsularity\r\ninsularly\r\ninsulate\r\ninsulated\r\ninsulates\r\ninsulating\r\ninsulation\r\ninsulations\r\ninsulator\r\ninsulators\r\ninsulator's\r\ninsulin\r\ninsult\r\ninsulted\r\ninsulter\r\ninsulting\r\ninsultingly\r\ninsults\r\ninsuperable\r\ninsuperably\r\ninsupportable\r\ninsupportableness\r\ninsupportably\r\ninsuppressibly\r\ninsurability\r\ninsurable\r\ninsurance\r\ninsurances\r\ninsure\r\ninsured\r\ninsurer\r\ninsurers\r\ninsures\r\ninsurgence\r\ninsurgency\r\ninsurgent\r\ninsurgents\r\ninsurgent's\r\ninsuring\r\ninsurmountable\r\ninsurmountably\r\ninsurrection\r\ninsurrectional\r\ninsurrectionary\r\ninsurrectionist\r\ninsurrections\r\ninsurrection's\r\ninsusceptibility\r\ninsusceptible\r\nintact\r\nintactness\r\nintaglio\r\nintake\r\nintakes\r\nintangibility\r\nintangible\r\nintangibleness\r\nintangibles\r\nintangible's\r\nintangibly\r\nintarsia\r\ninteger\r\nintegers\r\ninteger's\r\nintegral\r\nintegrally\r\nintegrals\r\nintegral's\r\nintegrand\r\nintegrant\r\nintegrate\r\nintegrated\r\nintegrates\r\nintegrating\r\nintegration\r\nintegrationist\r\nintegrations\r\nintegrative\r\nintegrator\r\nintegrity\r\nintegument\r\nintellect\r\nintellection\r\nintellective\r\nintellectively\r\nintellects\r\nintellect's\r\nintellectual\r\nintellectualisation\r\nintellectualisations\r\nintellectualisation's\r\nintellectualise\r\nintellectualised\r\nintellectualises\r\nintellectualising\r\nintellectualism\r\nintellectualist\r\nintellectualistic\r\nintellectuality\r\nintellectually\r\nintellectualness\r\nintellectuals\r\nintelligence\r\nintelligencer\r\nintelligences\r\nintelligent\r\nintelligential\r\nintelligently\r\nintelligentsia\r\nintelligibility\r\nintelligible\r\nintelligibleness\r\nintelligibly\r\nintemperance\r\nintemperate\r\nintemperately\r\nintemperateness\r\nintend\r\nintendancy\r\nintended\r\nintender\r\nintending\r\nintendment\r\nintends\r\nintense\r\nintensely\r\nintenseness\r\nintensification\r\nintensified\r\nintensifier\r\nintensifiers\r\nintensifies\r\nintensify\r\nintensifying\r\nintension\r\nintensities\r\nintensity\r\nintensive\r\nintensively\r\nintensiveness\r\nintent\r\nintention\r\nintentional\r\nintentionally\r\nintentioned\r\nintentions\r\nintently\r\nintentness\r\nintents\r\ninter\r\ninteract\r\ninteracted\r\ninteracting\r\ninteraction\r\ninteractions\r\ninteraction's\r\ninteractive\r\ninteractively\r\ninteractivity\r\ninteracts\r\ninteragency\r\ninterbrain\r\ninterbreed\r\nintercalary\r\nintercalate\r\nintercalated\r\nintercalates\r\nintercalating\r\nintercalation\r\nintercalative\r\nintercede\r\nintercedes\r\nintercellular\r\nintercept\r\nintercepted\r\nintercepting\r\ninterception\r\ninterceptor\r\nintercepts\r\nintercession\r\nintercessional\r\nintercessor\r\nintercessory\r\ninterchange\r\ninterchangeability\r\ninterchangeable\r\ninterchangeableness\r\ninterchangeably\r\ninterchanged\r\ninterchanger\r\ninterchanges\r\ninterchanging\r\nintercity\r\nintercollegiate\r\nintercolumniation\r\nintercom\r\nintercommunicate\r\nintercommunicated\r\nintercommunicates\r\nintercommunicating\r\nintercommunication\r\nintercommunion\r\ninterconnect\r\ninterconnected\r\ninterconnectedness\r\ninterconnecting\r\ninterconnection\r\ninterconnections\r\ninterconnection's\r\ninterconnectivity\r\ninterconnects\r\nintercontinental\r\nintercooler\r\nintercourse\r\nintercrop\r\nintercultural\r\ninterdenominational\r\ninterdentally\r\ninterdepartmental\r\ninterdepartmentally\r\ninterdependence\r\ninterdependencies\r\ninterdependency\r\ninterdependent\r\ninterdependently\r\ninterdict\r\ninterdiction\r\ninterdictor\r\ninterdictory\r\ninterdisciplinary\r\ninterest\r\ninterested\r\ninterestedly\r\ninteresting\r\ninterestingly\r\ninterestingness\r\ninterests\r\ninterface\r\ninterfaced\r\ninterfaces\r\ninterfacial\r\ninterfacing\r\ninterfaith\r\ninterfere\r\ninterfered\r\ninterference\r\ninterferences\r\ninterferential\r\ninterferer\r\ninterferes\r\ninterfering\r\ninterferingly\r\ninterferometer\r\ninterferometers\r\ninterferometer's\r\ninterferon\r\ninterfile\r\ninterflow\r\ninterfluent\r\ninterfusion\r\nintergalactic\r\nintergeneration\r\nintergenerational\r\ninterglacial\r\nintergovernmental\r\nintergrowth\r\ninterim\r\ninterior\r\ninteriorise\r\ninteriorised\r\ninteriorising\r\ninteriority\r\ninteriorly\r\ninteriors\r\ninterior's\r\ninterject\r\ninterjected\r\ninterjecting\r\ninterjection\r\ninterjectional\r\ninterjectionally\r\ninterjector\r\ninterjectory\r\ninterjects\r\ninterlace\r\ninterlaced\r\ninterlacement\r\ninterlaces\r\ninterlacing\r\ninterlaminate\r\ninterlamination\r\ninterlard\r\ninterlay\r\ninterlayer\r\ninterleaf\r\ninterleave\r\ninterleaved\r\ninterleaves\r\ninterleaving\r\ninterlibrary\r\ninterline\r\ninterlinear\r\ninterlining\r\ninterlink\r\ninterlinked\r\ninterlinking\r\ninterlinks\r\ninterlobular\r\ninterlock\r\ninterlocked\r\ninterlocker\r\ninterlocking\r\ninterlocks\r\ninterlocution\r\ninterlocutor\r\ninterlocutory\r\ninterlope\r\ninterloped\r\ninterloper\r\ninterlopes\r\ninterloping\r\ninterlude\r\ninterludes\r\ninterlunar\r\ninterlunation\r\nintermarriage\r\nintermarry\r\nintermeddle\r\nintermediaries\r\nintermediary\r\nintermediate\r\nintermediated\r\nintermediately\r\nintermediateness\r\nintermediates\r\nintermediate's\r\nintermediating\r\nintermediation\r\ninterment\r\nintermesh\r\nintermeshed\r\nintermezzo\r\nintermigration\r\ninterminable\r\ninterminableness\r\ninterminably\r\nintermingle\r\nintermingled\r\nintermingles\r\nintermingling\r\nintermission\r\nintermissions\r\nintermit\r\nintermittence\r\nintermittency\r\nintermittent\r\nintermittently\r\nintermix\r\nintermixed\r\nintermixes\r\nintermixing\r\nintermixture\r\nintermolecular\r\nintern\r\ninternal\r\ninternalisation\r\ninternalisations\r\ninternalisation's\r\ninternalise\r\ninternalised\r\ninternalises\r\ninternalising\r\ninternality\r\ninternally\r\ninternals\r\ninternational\r\ninternationalisation\r\ninternationalisations\r\ninternationalisation's\r\ninternationalise\r\ninternationalised\r\ninternationalises\r\ninternationalising\r\ninternationalism\r\ninternationalist\r\ninternationalists\r\ninternationality\r\ninternationally\r\ninternationals\r\ninterne\r\ninternecine\r\ninterned\r\ninternee\r\ninternet\r\ninterning\r\ninternist\r\ninternment\r\ninterns\r\ninternship\r\ninteroffice\r\ninterpellant\r\ninterpellation\r\ninterpellator\r\ninterpenetrate\r\ninterpenetrates\r\ninterpenetration\r\ninterpersonal\r\ninterpersonally\r\ninterphone\r\ninterplanetary\r\ninterplant\r\ninterplay\r\ninterplead\r\ninterpolate\r\ninterpolated\r\ninterpolates\r\ninterpolating\r\ninterpolation\r\ninterpolations\r\ninterpolative\r\ninterpolator\r\ninterpose\r\ninterposed\r\ninterposer\r\ninterposes\r\ninterposing\r\ninterposition\r\ninterpret\r\ninterpretability\r\ninterpretable\r\ninterpretation\r\ninterpretational\r\ninterpretations\r\ninterpretation's\r\ninterpretative\r\ninterpretatively\r\ninterpreted\r\ninterpreter\r\ninterpreters\r\ninterpreting\r\ninterpretive\r\ninterpretively\r\ninterprets\r\ninterracial\r\ninterred\r\ninterregional\r\ninterregnum\r\ninterrelate\r\ninterrelated\r\ninterrelatedness\r\ninterrelates\r\ninterrelating\r\ninterrelation\r\ninterrelations\r\ninterrelationship\r\ninterrelationships\r\ninterrelationship's\r\ninterrex\r\ninterring\r\ninterrogate\r\ninterrogated\r\ninterrogates\r\ninterrogating\r\ninterrogation\r\ninterrogational\r\ninterrogations\r\ninterrogative\r\ninterrogatively\r\ninterrogatives\r\ninterrogator\r\ninterrogatories\r\ninterrogators\r\ninterrogatory\r\ninterrupt\r\ninterrupted\r\ninterrupter\r\ninterrupters\r\ninterruptible\r\ninterrupting\r\ninterruption\r\ninterruptions\r\ninterruption's\r\ninterruptive\r\ninterrupts\r\ninterscholastic\r\nintersect\r\nintersected\r\nintersecting\r\nintersection\r\nintersections\r\nintersection's\r\nintersects\r\nintersession\r\ninterspecies\r\nintersperse\r\ninterspersed\r\nintersperses\r\ninterspersing\r\ninterspersion\r\ninterspersions\r\ninterstate\r\ninterstellar\r\ninterstice\r\ninterstices\r\ninterstitial\r\ninterstitially\r\nintersystem\r\nintertexture\r\nintertwine\r\nintertwined\r\nintertwinement\r\nintertwines\r\nintertwining\r\ninterurban\r\ninterval\r\nintervals\r\ninterval's\r\nintervene\r\nintervened\r\nintervener\r\nintervenes\r\nintervening\r\nintervention\r\ninterventionism\r\ninterventionist\r\ninterventions\r\nintervention's\r\ninterview\r\ninterviewed\r\ninterviewee\r\ninterviewees\r\ninterviewee's\r\ninterviewer\r\ninterviewers\r\ninterviewer's\r\ninterviewing\r\ninterviews\r\nintervocalic\r\ninterwar\r\ninterweave\r\ninterweaves\r\ninterweaving\r\ninterwoven\r\nintestacy\r\nintestate\r\nintestinal\r\nintestinally\r\nintestine\r\nintestines\r\nintestine's\r\nintimacy\r\nintimate\r\nintimated\r\nintimately\r\nintimateness\r\nintimates\r\nintimating\r\nintimation\r\nintimations\r\nintimidate\r\nintimidated\r\nintimidates\r\nintimidating\r\nintimidation\r\nintimidator\r\ninto\r\nintolerability\r\nintolerable\r\nintolerableness\r\nintolerably\r\nintolerance\r\nintolerant\r\nintolerantly\r\nintonate\r\nintonation\r\nintonations\r\nintonation's\r\nintone\r\nintoned\r\nintoner\r\nintoning\r\nintoxicant\r\nintoxicate\r\nintoxicated\r\nintoxicating\r\nintoxication\r\nintra\r\nintracellular\r\nintractability\r\nintractable\r\nintractableness\r\nintractably\r\nintradepartmental\r\nintrados\r\nintraepithelial\r\nintramural\r\nintramuscularly\r\nintranasal\r\nintrans\r\nintransigence\r\nintransigent\r\nintransigently\r\nintransigents\r\nintransitive\r\nintransitively\r\nintrapulmonary\r\nintrastate\r\nintrauterine\r\nintravenous\r\nintravenously\r\nintrench\r\nintrepid\r\nintrepidity\r\nintrepidly\r\nintrepidness\r\nintricacies\r\nintricacy\r\nintricate\r\nintricately\r\nintricateness\r\nintrigue\r\nintrigued\r\nintriguer\r\nintrigues\r\nintriguing\r\nintriguingly\r\nintrinsic\r\nintrinsically\r\nintro\r\nintroduce\r\nintroduced\r\nintroducer\r\nintroduces\r\nintroducing\r\nintroduction\r\nintroductions\r\nintroduction's\r\nintroductorily\r\nintroductory\r\nintroit\r\nintromission\r\nintrorsely\r\nintrospect\r\nintrospection\r\nintrospections\r\nintrospective\r\nintrospectively\r\nintrospectiveness\r\nintroversion\r\nintrovert\r\nintroverted\r\nintrude\r\nintruded\r\nintruder\r\nintruders\r\nintruder's\r\nintrudes\r\nintruding\r\nintrusion\r\nintrusions\r\nintrusion's\r\nintrusive\r\nintrusively\r\nintrusiveness\r\nintuit\r\nintuiting\r\nintuition\r\nintuitional\r\nintuitionism\r\nintuitionist\r\nintuitions\r\nintuition's\r\nintuitive\r\nintuitively\r\nintuitiveness\r\nintuitivism\r\nintumesce\r\ninundate\r\ninundated\r\ninundates\r\ninundating\r\ninundation\r\ninundations\r\ninundator\r\ninurbane\r\ninure\r\ninured\r\ninuring\r\ninutile\r\ninv\r\ninvade\r\ninvaded\r\ninvader\r\ninvaders\r\ninvades\r\ninvading\r\ninvalid\r\ninvalidate\r\ninvalidated\r\ninvalidates\r\ninvalidating\r\ninvalidation\r\ninvalidations\r\ninvalidator\r\ninvalidism\r\ninvalidities\r\ninvalidity\r\ninvalidly\r\ninvalids\r\ninvaluable\r\ninvaluableness\r\ninvaluably\r\ninvariability\r\ninvariable\r\ninvariableness\r\ninvariably\r\ninvariance\r\ninvariant\r\ninvariantly\r\ninvariants\r\ninvasion\r\ninvasions\r\ninvasion's\r\ninvasive\r\ninvasiveness\r\ninvective\r\ninvectively\r\ninvectiveness\r\ninveigh\r\ninveigher\r\ninveigle\r\ninveigled\r\ninveiglement\r\ninveigler\r\ninveigling\r\ninvent\r\ninvented\r\ninventing\r\ninvention\r\ninventions\r\ninvention's\r\ninventive\r\ninventively\r\ninventiveness\r\ninventor\r\ninventorial\r\ninventorially\r\ninventories\r\ninventors\r\ninventor's\r\ninventory\r\ninventory's\r\ninvents\r\ninveracity\r\ninverse\r\ninversely\r\ninverses\r\ninversion\r\ninversions\r\ninvert\r\ninvertebrate\r\ninvertebrates\r\ninvertebrate's\r\ninverted\r\ninverter\r\ninverters\r\ninvertible\r\ninverting\r\ninverts\r\ninvest\r\ninvested\r\ninvestigate\r\ninvestigated\r\ninvestigates\r\ninvestigating\r\ninvestigation\r\ninvestigational\r\ninvestigations\r\ninvestigative\r\ninvestigator\r\ninvestigators\r\ninvestigator's\r\ninvesting\r\ninvestiture\r\ninvestment\r\ninvestments\r\ninvestment's\r\ninvestor\r\ninvestors\r\ninvestor's\r\ninvests\r\ninveteracy\r\ninveterate\r\ninveterately\r\ninvidious\r\ninvidiously\r\ninvidiousness\r\ninvigorate\r\ninvigorated\r\ninvigorates\r\ninvigorating\r\ninvigoratingly\r\ninvigoration\r\ninvigorator\r\ninvincibility\r\ninvincible\r\ninvincibleness\r\ninvincibly\r\ninviolability\r\ninviolable\r\ninviolableness\r\ninviolably\r\ninviolacy\r\ninviolate\r\ninviolately\r\ninviolateness\r\ninvisibility\r\ninvisible\r\ninvisibleness\r\ninvisibly\r\ninvitation\r\ninvitational\r\ninvitations\r\ninvitation's\r\ninvitatory\r\ninvite\r\ninvited\r\ninvitee\r\ninvitees\r\ninviter\r\ninvites\r\ninviting\r\ninvitingly\r\ninvocate\r\ninvocation\r\ninvocations\r\ninvocation's\r\ninvocatory\r\ninvoice\r\ninvoiced\r\ninvoices\r\ninvoicing\r\ninvoke\r\ninvoked\r\ninvoker\r\ninvokers\r\ninvokes\r\ninvoking\r\ninvolucel\r\ninvolucrate\r\ninvoluntarily\r\ninvoluntariness\r\ninvoluntary\r\ninvolution\r\ninvolutions\r\ninvolve\r\ninvolved\r\ninvolvement\r\ninvolvements\r\ninvolvement's\r\ninvolver\r\ninvolves\r\ninvolving\r\ninvulnerability\r\ninvulnerable\r\ninvulnerableness\r\ninvulnerably\r\ninward\r\ninwardly\r\ninwardness\r\ninwards\r\ninwrought\r\niodated\r\niodating\r\niodide\r\niodinate\r\niodinated\r\niodinating\r\niodination\r\niodine\r\niodisation\r\niodise\r\niodised\r\niodiser\r\niodisers\r\niodises\r\niodising\r\niolite\r\nion\r\nionic\r\nionisable\r\nionisation\r\nionisations\r\nionisation's\r\nionise\r\nionised\r\nioniser\r\nionisers\r\nionises\r\nionising\r\nionone\r\nionosphere\r\nionospheric\r\nions\r\niota\r\niotacism\r\nipecac\r\nipso\r\nirascibility\r\nirascible\r\nirascibleness\r\nirascibly\r\nirate\r\nirately\r\nire\r\nireful\r\nirenic\r\nirenics\r\nire's\r\niridaceous\r\niridescence\r\niridescent\r\niridescently\r\niridium\r\niridosmine\r\niris\r\nirises\r\niritis\r\nirk\r\nirked\r\nirking\r\nirks\r\nirksome\r\nirksomely\r\nirksomeness\r\niron\r\nironbark\r\nironbound\r\nironclad\r\nironed\r\nironer\r\nironhanded\r\nironhandedness\r\nironic\r\nironical\r\nironically\r\nironicalness\r\nironies\r\nironing\r\nironings\r\nironist\r\nironmaster\r\nironmonger\r\nironmongery\r\nirons\r\nironsides\r\nironstone\r\nironware\r\nironweed\r\nironwood\r\nironwork\r\nironworker\r\nironworks\r\nironwork's\r\nirony\r\nirradiance\r\nirradiate\r\nirradiated\r\nirradiation\r\nirradiative\r\nirradiator\r\nirrational\r\nirrationalise\r\nirrationalises\r\nirrationalism\r\nirrationality\r\nirrationally\r\nirrationalness\r\nirrationals\r\nirreclaimable\r\nirreclaimably\r\nirreconcilability\r\nirreconcilable\r\nirreconcilableness\r\nirreconcilably\r\nirrecoverable\r\nirrecoverableness\r\nirrecoverably\r\nirrecusably\r\nirredeemable\r\nirredeemably\r\nirredentism\r\nirredentist\r\nirreducibility\r\nirreducible\r\nirreducibly\r\nirrefragability\r\nirrefragable\r\nirrefragably\r\nirrefutability\r\nirrefutable\r\nirrefutably\r\nirregardless\r\nirregular\r\nirregularities\r\nirregularity\r\nirregularly\r\nirregulars\r\nirrelative\r\nirrelatively\r\nirrelevance\r\nirrelevances\r\nirrelevancies\r\nirrelevancy\r\nirrelevant\r\nirrelevantly\r\nirreligion\r\nirreligionist\r\nirreligious\r\nirreligiously\r\nirremediable\r\nirremediableness\r\nirremediably\r\nirremovable\r\nirremovably\r\nirreparable\r\nirreparableness\r\nirreparably\r\nirreplaceable\r\nirreplaceably\r\nirrepressibility\r\nirrepressible\r\nirrepressibly\r\nirreproachability\r\nirreproachable\r\nirreproachableness\r\nirreproachably\r\nirreproducibility\r\nirreproducible\r\nirresistibility\r\nirresistible\r\nirresistibleness\r\nirresistibly\r\nirresolute\r\nirresolutely\r\nirresoluteness\r\nirresolution\r\nirresolvable\r\nirrespective\r\nirrespectively\r\nirrespirable\r\nirresponsibility\r\nirresponsible\r\nirresponsibleness\r\nirresponsibly\r\nirresponsive\r\nirresponsiveness\r\nirretentive\r\nirretrievability\r\nirretrievable\r\nirretrievably\r\nirreverence\r\nirreverent\r\nirreverently\r\nirreversibility\r\nirreversible\r\nirreversibly\r\nirrevocability\r\nirrevocable\r\nirrevocableness\r\nirrevocably\r\nirrigate\r\nirrigated\r\nirrigates\r\nirrigating\r\nirrigation\r\nirrigational\r\nirrigations\r\nirrigator\r\nirrigators\r\nirritability\r\nirritable\r\nirritableness\r\nirritably\r\nirritant\r\nirritants\r\nirritate\r\nirritated\r\nirritates\r\nirritating\r\nirritatingly\r\nirritation\r\nirritations\r\nirrupt\r\nirrupted\r\nirrupting\r\nirruption\r\nirruptions\r\nirruptive\r\nirrupts\r\nis\r\nisagogics\r\nisentropic\r\nisinglass\r\nisland\r\nislander\r\nislanders\r\nislands\r\nisle\r\nisles\r\nisle's\r\nislet\r\nislets\r\nislet's\r\nism\r\nisn't\r\nisobar\r\nisobaric\r\nisobutylene\r\nisochronal\r\nisochronally\r\nisochronise\r\nisochronised\r\nisochronises\r\nisochronising\r\nisochronous\r\nisochronously\r\nisochroous\r\nisocline\r\nisoclinic\r\nisocracy\r\nisodiaphere\r\nisodimorphism\r\nisogamete\r\nisogloss\r\nisograms\r\nisogram's\r\nisolate\r\nisolated\r\nisolates\r\nisolating\r\nisolation\r\nisolationism\r\nisolationist\r\nisolationistic\r\nisolations\r\nisolator\r\nisomer\r\nisomeric\r\nisomerise\r\nisomerised\r\nisomerises\r\nisomerising\r\nisomerism\r\nisomers\r\nisometric\r\nisometrics\r\nisomorphic\r\nisomorphism\r\nisomorphism's\r\nisonomy\r\nisooctane\r\nisopiestic\r\nisopleths\r\nisopod\r\nisoprene\r\nisopropyl\r\nisosceles\r\nisothere\r\nisotherm\r\nisothermal\r\nisothermally\r\nisotherms\r\nisotonic\r\nisotope\r\nisotopes\r\nisotope's\r\nisotopic\r\nisotropic\r\nisotropy\r\nissuance\r\nissuant\r\nissue\r\nissued\r\nissueless\r\nissuer\r\nissuers\r\nissues\r\nissuing\r\nisthmian\r\nisthmus\r\nistle\r\nit\r\nitalianate\r\nitalic\r\nitalicisation\r\nitalicisations\r\nitalicisation's\r\nitalicise\r\nitalicised\r\nitalicises\r\nitalicising\r\nitalics\r\nitch\r\nitches\r\nitchiness\r\nitching\r\nitchy\r\nit'd\r\nitem\r\nitemisation\r\nitemisations\r\nitemisation's\r\nitemise\r\nitemised\r\nitemiser\r\nitemisers\r\nitemises\r\nitemising\r\nitems\r\nitem's\r\niterance\r\niterant\r\niterate\r\niterated\r\niterates\r\niterating\r\niteration\r\niterations\r\niterative\r\niteratively\r\nithyphallic\r\nitinerancy\r\nitinerant\r\nitinerantly\r\nitineraries\r\nitinerary\r\nitinerate\r\nitinerated\r\nitinerates\r\nitinerating\r\nitineration\r\nit'll\r\nits\r\nit's\r\nitself\r\nitsy\r\niv\r\nivied\r\nivies\r\nivories\r\nivory\r\nivy\r\nivy's\r\nix\r\nj's\r\njab\r\njabbed\r\njabber\r\njabbered\r\njabberer\r\njabbering\r\njabbers\r\njabberwocky\r\njabbing\r\njabot\r\njabs\r\njab's\r\njacamar\r\njack\r\njackal\r\njackals\r\njackal's\r\njackanapes\r\njackass\r\njackboot\r\njackbooted\r\njackboots\r\njackdaw\r\njackdaws\r\njacked\r\njacket\r\njacketed\r\njackets\r\njackfish\r\njackfruit\r\njackhammer\r\njacking\r\njackpot\r\njackpots\r\njacks\r\njackscrew\r\njackshaft\r\njacksnipe\r\njackstay\r\njackstraws\r\njaconet\r\njade\r\njaded\r\njadedly\r\njadedness\r\njadeite\r\njades\r\njading\r\njag\r\njagged\r\njaggedly\r\njaggedness\r\njagging\r\njaggy\r\njaguar\r\njaguarondi\r\njai\r\njail\r\njailbait\r\njailbird\r\njailbreak\r\njailed\r\njailer\r\njailers\r\njailhouse\r\njailing\r\njailor\r\njails\r\njalap\r\njalopies\r\njalopy\r\njalousie\r\njam\r\njamb\r\njambalaya\r\njambeau\r\njamboree\r\njammed\r\njammer\r\njamming\r\njammy\r\njams\r\njangle\r\njangled\r\njangler\r\njangles\r\njangling\r\njanissaries\r\njanissary\r\njanitor\r\njanitorial\r\njanitors\r\njanitor's\r\njanitress\r\njapanned\r\njapanning\r\njape\r\njaper\r\njapery\r\njapes\r\njaping\r\njaponica\r\njar\r\njardinière\r\njarful\r\njargon\r\njargonise\r\njargonised\r\njargonises\r\njargonising\r\njarl\r\njarred\r\njarring\r\njarringly\r\njars\r\njar's\r\njasmine\r\njasper\r\njaspers\r\njaundice\r\njaundiced\r\njaundices\r\njaundicing\r\njaunt\r\njaunted\r\njauntier\r\njauntily\r\njauntiness\r\njaunting\r\njaunts\r\njaunt's\r\njaunty\r\njava\r\njavelin\r\njavelins\r\njavelin's\r\njaw\r\njawbone\r\njawbreaker\r\njawed\r\njaws\r\njaw's\r\njay\r\njaybird\r\njaywalk\r\njazz\r\njazzier\r\njazzily\r\njazziness\r\njazzman\r\njazzmen\r\njazzy\r\njealous\r\njealousies\r\njealously\r\njealousness\r\njealousy\r\njean\r\njeans\r\njeep\r\njeepers\r\njeeps\r\njeep's\r\njeer\r\njeerer\r\njeeringly\r\njeers\r\njeer's\r\njejune\r\njejunely\r\njejuneness\r\njejunum\r\njell\r\njelled\r\njellied\r\njellies\r\njells\r\njelly\r\njellybean\r\njellyfish\r\njellying\r\njellylike\r\njelly's\r\njenny\r\njeopardise\r\njeopardised\r\njeopardises\r\njeopardising\r\njeopardy\r\njequirity\r\njerboa\r\njerk\r\njerked\r\njerker\r\njerkier\r\njerkily\r\njerkin\r\njerkiness\r\njerking\r\njerks\r\njerkwater\r\njerky\r\njeroboam\r\njerry\r\njersey\r\njerseys\r\njersey's\r\njess\r\njest\r\njested\r\njester\r\njesting\r\njests\r\njesus\r\njet\r\njetliner\r\njetliners\r\njetport\r\njets\r\njet's\r\njetsam\r\njetted\r\njetties\r\njetting\r\njettison\r\njetty\r\njewel\r\njewelfish\r\njewelled\r\njeweller\r\njewelleries\r\njewellers\r\njewellery\r\njewelling\r\njewels\r\njewfish\r\njib\r\njibber\r\njibbers\r\njibbing\r\njibe\r\njibed\r\njibes\r\njibing\r\njiff\r\njiffies\r\njiffy\r\njig\r\njigged\r\njigger\r\njiggered\r\njiggermast\r\njigging\r\njiggle\r\njiggled\r\njiggles\r\njiggling\r\njigs\r\njig's\r\njigsaw\r\njihad\r\njillaroo\r\njillion\r\njilt\r\njilted\r\njilter\r\njilts\r\njimjams\r\njimmied\r\njimmies\r\njimmy\r\njimmying\r\njingle\r\njingled\r\njingles\r\njingling\r\njingly\r\njingo\r\njingoes\r\njingoish\r\njingoism\r\njingoist\r\njingoistic\r\njink\r\njinks\r\njinn\r\njinni\r\njinx\r\njitney\r\njitneys\r\njitter\r\njitterbug\r\njitterbugging\r\njitters\r\njittery\r\njiujutsu\r\njive\r\njived\r\njives\r\njiving\r\njob\r\njobbed\r\njobber\r\njobbers\r\njobbery\r\njobbing\r\njobcentre\r\njobcentres\r\njobholder\r\njobholders\r\njobless\r\njoblessness\r\njobs\r\njob's\r\njock\r\njockey\r\njockeyed\r\njockeying\r\njockeys\r\njocko\r\njocks\r\njockstrap\r\njockstraps\r\njocose\r\njocosely\r\njocoseness\r\njocosity\r\njocular\r\njocularity\r\njocularly\r\njocund\r\njocundity\r\njocundly\r\njodhpur\r\njodhpurs\r\njoey\r\njog\r\njogged\r\njogger\r\njoggers\r\njogging\r\njoggle\r\njoggled\r\njoggles\r\njoggling\r\njogs\r\njohn\r\njohns\r\njohn's\r\njoin\r\njoinable\r\njoined\r\njoiner\r\njoiners\r\njoinery\r\njoining\r\njoins\r\njoint\r\njointed\r\njointer\r\njointing\r\njointly\r\njoints\r\njoint's\r\njointure\r\njointures\r\njointworm\r\njoist\r\njoists\r\njoke\r\njoked\r\njoker\r\njokers\r\njokes\r\njoking\r\njokingly\r\njollied\r\njollier\r\njollies\r\njollification\r\njollifications\r\njollify\r\njollities\r\njollity\r\njolly\r\njollying\r\njolt\r\njolted\r\njolter\r\njolting\r\njolts\r\njolty\r\njonquil\r\njonquils\r\njorum\r\njosh\r\njoshed\r\njosher\r\njoshes\r\njoshing\r\njoss\r\njostle\r\njostled\r\njostles\r\njostling\r\njot\r\njota\r\njots\r\njotted\r\njotter\r\njotting\r\njoule\r\njounce\r\njounced\r\njounces\r\njouncing\r\njour\r\njournal\r\njournalese\r\njournalise\r\njournalised\r\njournalises\r\njournalising\r\njournalism\r\njournalist\r\njournalistic\r\njournalistically\r\njournalists\r\njournalist's\r\njournals\r\njournal's\r\njourney\r\njourneyed\r\njourneying\r\njourneyman\r\njourneymen\r\njourneys\r\njourneywork\r\njoust\r\njousted\r\njouster\r\njousting\r\njousts\r\njovial\r\njoviality\r\njovially\r\njowl\r\njowls\r\njoy\r\njoyful\r\njoyfully\r\njoyfulness\r\njoyless\r\njoylessly\r\njoylessness\r\njoyous\r\njoyously\r\njoyousness\r\njoypop\r\njoyride\r\njoyriding\r\njoys\r\njoy's\r\njoystick\r\njoysticks\r\njuba\r\njubbah\r\njubilant\r\njubilantly\r\njubilation\r\njubilations\r\njubilee\r\njudge\r\njudged\r\njudgement\r\njudgemental\r\njudgements\r\njudgement's\r\njudger\r\njudges\r\njudgeship\r\njudging\r\njudicable\r\njudicative\r\njudicator\r\njudicatory\r\njudicature\r\njudicatures\r\njudicial\r\njudicially\r\njudiciaries\r\njudiciary\r\njudicious\r\njudiciously\r\njudiciousness\r\njudo\r\njudoka\r\njug\r\njugged\r\njuggernaut\r\njuggernauted\r\njuggernauting\r\njuggernauts\r\njuggernaut's\r\njugging\r\njuggins\r\njuggle\r\njuggled\r\njuggler\r\njugglers\r\njugglery\r\njuggles\r\njuggling\r\njugs\r\njug's\r\njugular\r\njugulate\r\njuice\r\njuiced\r\njuiceless\r\njuicer\r\njuicers\r\njuices\r\njuice's\r\njuicier\r\njuiciest\r\njuicily\r\njuiciness\r\njuicing\r\njuicy\r\njujitsu\r\njuju\r\njujube\r\njujutsu\r\njuke\r\njukebox\r\njukes\r\njulep\r\njuleps\r\njulienne\r\njumble\r\njumbled\r\njumbles\r\njumbling\r\njumbo\r\njumbos\r\njumbuck\r\njump\r\njumped\r\njumper\r\njumpers\r\njumpier\r\njumpiness\r\njumping\r\njumps\r\njumpy\r\njuncaceous\r\njunco\r\njunction\r\njunctions\r\njunction's\r\njuncture\r\njunctures\r\njuncture's\r\njungle\r\njungles\r\njungle's\r\njunior\r\njuniors\r\njunior's\r\njuniper\r\njunk\r\njunket\r\njunketed\r\njunketeer\r\njunketeering\r\njunketer\r\njunketing\r\njunkets\r\njunkie\r\njunkies\r\njunkman\r\njunks\r\njunky\r\njunkyard\r\njunta\r\njupon\r\njurally\r\njuridical\r\njuries\r\njurisdiction\r\njurisdictional\r\njurisdictionally\r\njurisdictions\r\njurisdiction's\r\njurisprudence\r\njurisprudent\r\njurisprudential\r\njurisprudentially\r\njurist\r\njuristic\r\njuristically\r\njurists\r\njuror\r\njurors\r\njuror's\r\njury\r\njuryman\r\njury's\r\njus\r\njussive\r\njussives\r\njust\r\njustice\r\njustices\r\njustice's\r\njustifiability\r\njustifiable\r\njustifiably\r\njustification\r\njustifications\r\njustificatory\r\njustified\r\njustifier\r\njustifiers\r\njustifier's\r\njustifies\r\njustify\r\njustifying\r\njustly\r\njustness\r\njut\r\njute\r\njutes\r\njutted\r\njutties\r\njutting\r\njuttying\r\njuvenal\r\njuvenescence\r\njuvenescent\r\njuvenile\r\njuveniles\r\njuvenile's\r\njuvenilia\r\njuvenility\r\njuxtapose\r\njuxtaposed\r\njuxtaposes\r\njuxtaposing\r\njuxtaposition\r\nk's\r\nkabob\r\nkaka\r\nkakapo\r\nkakemono\r\nkaki\r\nkale\r\nkaleidoscope\r\nkaleidoscopes\r\nkaleidoscopic\r\nkaleidoscopically\r\nkali\r\nkalian\r\nkalmia\r\nkalong\r\nkalpak\r\nkalsomine\r\nkamala\r\nkamikaze\r\nkampong\r\nkana\r\nkanga\r\nkangaroo\r\nkangaroos\r\nkantar\r\nkaoliang\r\nkaolin\r\nkapellmeister\r\nkapok\r\nkappa\r\nkaput\r\nkarabiner\r\nkarat\r\nkarate\r\nkarma\r\nkarmic\r\nkart\r\nkaryotin\r\nkasbah\r\nkatakana\r\nkatydid\r\nkauri\r\nkava\r\nkayak\r\nkayaks\r\nkayo\r\nkayoed\r\nkayoing\r\nkazoo\r\nkazoos\r\nkcal\r\nkea\r\nkebab\r\nkebabs\r\nkebob\r\nked\r\nkedge\r\nkedgeree\r\nkeel\r\nkeelboat\r\nkeeled\r\nkeelhaul\r\nkeeling\r\nkeels\r\nkeelson\r\nkeen\r\nkeener\r\nkeenest\r\nkeening\r\nkeenly\r\nkeenness\r\nkeep\r\nkeeper\r\nkeepers\r\nkeeping\r\nkeeps\r\nkeepsake\r\nkeepsakes\r\nkeeshond\r\nkef\r\nkeg\r\nkegs\r\nkelp\r\nkelpie\r\nkempt\r\nken\r\nkendo\r\nkennel\r\nkennelled\r\nkennelling\r\nkennels\r\nkennel's\r\nkeno\r\nkenosis\r\nkept\r\nkeratin\r\nkeratinisation\r\nkeratinise\r\nkeratinised\r\nkeratinises\r\nkeratinising\r\nkerb\r\nkerbing\r\nkerbstone\r\nkerchief\r\nkerchiefs\r\nkerchief's\r\nkermes\r\nkermis\r\nkern\r\nkernel\r\nkernelled\r\nkernelling\r\nkernels\r\nkernel's\r\nkerosene\r\nkersey\r\nkerseymere\r\nkestrel\r\nketch\r\nketches\r\nketchup\r\nketene\r\nketosis\r\nkettle\r\nkettledrum\r\nkettles\r\nkettle's\r\nkevel\r\nkewpie\r\nkey\r\nkeyboard\r\nkeyboarder\r\nkeyboarding\r\nkeyboards\r\nkeyboard's\r\nkeyed\r\nkeyhole\r\nkeyholes\r\nkeying\r\nkeyless\r\nkeynote\r\nkeynoter\r\nkeynotes\r\nkeypad\r\nkeypads\r\nkeypad's\r\nkeypunch\r\nkeypunched\r\nkeypuncher\r\nkeypunches\r\nkeypunching\r\nkeys\r\nkeystone\r\nkeystones\r\nkeystroke\r\nkeystrokes\r\nkeystroke's\r\nkeyway\r\nkeyways\r\nkeyword\r\nkeywords\r\nkeyword's\r\nkhaki\r\nkhan\r\nkHz\r\nkibble\r\nkibbled\r\nkibbles\r\nkibbling\r\nkibbutz\r\nkibbutzim\r\nkibitz\r\nkibitzer\r\nkibosh\r\nkick\r\nkickback\r\nkickbacks\r\nkicked\r\nkicker\r\nkickers\r\nkicking\r\nkicks\r\nkickshaw\r\nkickshaws\r\nkickstand\r\nkid\r\nkidded\r\nkidder\r\nkiddie\r\nkiddies\r\nkidding\r\nkiddush\r\nkidnap\r\nkidnapped\r\nkidnapper\r\nkidnappers\r\nkidnapper's\r\nkidnapping\r\nkidnappings\r\nkidnapping's\r\nkidnaps\r\nkidney\r\nkidneys\r\nkidney's\r\nkids\r\nkid's\r\nkidskin\r\nkielbasa\r\nkike\r\nkill\r\nkillable\r\nkilldeer\r\nkilled\r\nkiller\r\nkillers\r\nkilling\r\nkillingly\r\nkillings\r\nkilljoy\r\nkills\r\nkiln\r\nkilo\r\nkilobit\r\nkilobits\r\nkilobyte\r\nkilobytes\r\nkilocalorie\r\nkilocalories\r\nkilocurie\r\nkilocycle\r\nkilocycles\r\nkilogauss\r\nkilogram\r\nkilohertz\r\nkilolitre\r\nkilolitres\r\nkilolitre's\r\nkilometre\r\nkilometres\r\nkilometre's\r\nkilos\r\nkiloton\r\nkilotons\r\nkilovolt\r\nkilovolts\r\nkilowatt\r\nkilowatts\r\nkilt\r\nkilter\r\nkilts\r\nkimono\r\nkin\r\nkina\r\nkinaesthesia\r\nkinaesthetic\r\nkinaesthetically\r\nkind\r\nkinder\r\nkindergarten\r\nkindergartner\r\nkindest\r\nkindle\r\nkindled\r\nkindler\r\nkindles\r\nkindlier\r\nkindliness\r\nkindling\r\nkindly\r\nkindness\r\nkindnesses\r\nkindred\r\nkinds\r\nkinematical\r\nkinematics\r\nkinescope\r\nkinescoped\r\nkinescopes\r\nkinesics\r\nkinesis\r\nkinetic\r\nkinetics\r\nkinfolk\r\nkinfolks\r\nking\r\nkingbird\r\nkingbolt\r\nkingcraft\r\nkingcup\r\nkingdom\r\nkingdoms\r\nkingdom's\r\nkingfish\r\nkingfisher\r\nkinglet\r\nkinglier\r\nkingliness\r\nkingly\r\nkingmaker\r\nkingpin\r\nkings\r\nkingship\r\nkingside\r\nkingwood\r\nkink\r\nkinkajou\r\nkinkajou's\r\nkinkier\r\nkinkiness\r\nkinky\r\nkinsfolk\r\nkinship\r\nkinsman\r\nkinsmen\r\nkinsmen's\r\nkinswoman\r\nkiosk\r\nkiosks\r\nkip\r\nkipper\r\nkippered\r\nkippering\r\nkippers\r\nkips\r\nkirsch\r\nkirtle\r\nkismet\r\nkiss\r\nkissable\r\nkissed\r\nkisser\r\nkissers\r\nkisses\r\nkissing\r\nkit\r\nkitbag\r\nkitbags\r\nkitchen\r\nkitchenette\r\nkitchenettes\r\nkitchens\r\nkitchen's\r\nkitchenware\r\nkite\r\nkited\r\nkites\r\nkith\r\nkithara\r\nkiting\r\nkits\r\nkit's\r\nkitsch\r\nkitschy\r\nkitten\r\nkittened\r\nkittening\r\nkittenish\r\nkittenishly\r\nkittenishness\r\nkittens\r\nkitten's\r\nkitties\r\nkittiwake\r\nkittle\r\nkittled\r\nkittler\r\nkittles\r\nkittling\r\nkitty\r\nkiwi\r\nkiwis\r\nkiwi's\r\nklatch\r\nklaxon\r\nkleptomania\r\nkleptomaniac\r\nklieg\r\nkludge\r\nkludged\r\nkludges\r\nkludge's\r\nkludging\r\nklutz\r\nklutzes\r\nklutziness\r\nklutz's\r\nklystron\r\nklystrons\r\nkm\r\nknack\r\nknacker\r\nknackery\r\nknacks\r\nknackwurst\r\nknag\r\nknap\r\nknapsack\r\nknapsacks\r\nknapsack's\r\nknar\r\nknave\r\nknavery\r\nknaves\r\nknave's\r\nknavish\r\nknavishly\r\nknawel\r\nknead\r\nkneaded\r\nkneader\r\nkneading\r\nkneads\r\nknee\r\nkneecap\r\nkneecaps\r\nkneed\r\nkneehole\r\nkneeholes\r\nkneeing\r\nkneel\r\nkneeled\r\nkneeler\r\nkneeling\r\nkneels\r\nkneepad\r\nkneepads\r\nknees\r\nknell\r\nknells\r\nknell's\r\nknelt\r\nknew\r\nknick\r\nknickers\r\nknickknack\r\nknife\r\nknifed\r\nknifelike\r\nknifes\r\nknifing\r\nknight\r\nknighted\r\nknighthood\r\nknighting\r\nknightliness\r\nknightly\r\nknights\r\nknish\r\nknit\r\nknits\r\nknitted\r\nknitter\r\nknitting\r\nknitwear\r\nknives\r\nknob\r\nknobbed\r\nknobs\r\nknob's\r\nknock\r\nknockabout\r\nknockabouts\r\nknockdown\r\nknockdowns\r\nknocked\r\nknocker\r\nknockers\r\nknocking\r\nknockout\r\nknockouts\r\nknocks\r\nknockwurst\r\nknoll\r\nknolls\r\nknoll's\r\nknot\r\nknotgrass\r\nknothole\r\nknots\r\nknot's\r\nknotted\r\nknottier\r\nknottiness\r\nknotting\r\nknotty\r\nknotweed\r\nknout\r\nknow\r\nknowable\r\nknower\r\nknowing\r\nknowingly\r\nknowledge\r\nknowledgeable\r\nknowledgeableness\r\nknowledgeably\r\nknown\r\nknows\r\nknuckle\r\nknuckleball\r\nknucklebone\r\nknucklebones\r\nknuckled\r\nknucklehead\r\nknuckleheaded\r\nknuckles\r\nknuckling\r\nknurl\r\nkoala\r\nkobold\r\nkohlrabi\r\nkola\r\nkolkhoz\r\nkook\r\nkookaburra\r\nkookier\r\nkookiness\r\nkooks\r\nkooky\r\nkopeck\r\nkopek\r\nkosher\r\nkoshered\r\nkoshering\r\nkowtow\r\nkraken\r\nkraut\r\nkrauts\r\nkremlinologist\r\nkrill\r\nkrypton\r\nkudos\r\nkudu\r\nkudzu\r\nkulak\r\nkumquat\r\nkurtosis\r\nkwashiorkor\r\nkymograph\r\nl's\r\nla\r\nlab\r\nlabarum\r\nlabdanum\r\nlabefaction\r\nlabel\r\nlabelled\r\nlabeller\r\nlabellers\r\nlabeller's\r\nlabelling\r\nlabels\r\nlabel's\r\nlabia\r\nlabial\r\nlabialisation\r\nlabialisations\r\nlabialisation's\r\nlabialise\r\nlabialised\r\nlabialises\r\nlabialising\r\nlabile\r\nlabiovelar\r\nlabium\r\nlablab\r\nlaboratories\r\nlaboratory\r\nlaboratory's\r\nlaborious\r\nlaboriously\r\nlaboriousness\r\nlabour\r\nlaboured\r\nlabouredly\r\nlabourer\r\nlabourers\r\nlabourer's\r\nlabouring\r\nlabouringly\r\nlabourite\r\nlabourites\r\nlabourite's\r\nlabours\r\nlabret\r\nlabroid\r\nlabs\r\nlab's\r\nlabyrinth\r\nlabyrinthine\r\nlabyrinths\r\nlace\r\nlaced\r\nlacelike\r\nlacer\r\nlacerate\r\nlacerated\r\nlacerates\r\nlacerating\r\nlaceration\r\nlacerations\r\nlacerative\r\nlacertilian\r\nlaces\r\nlacewing\r\nlacework\r\nlachrymal\r\nlachrymator\r\nlachrymatory\r\nlachrymose\r\nlachrymosely\r\nlacier\r\nlacing\r\nlack\r\nlackadaisical\r\nlackadaisically\r\nlackaday\r\nlacked\r\nlackey\r\nlackeyed\r\nlackeying\r\nlackeys\r\nlacking\r\nlacklustre\r\nlacks\r\nlaconic\r\nlaconically\r\nlaconism\r\nlacquer\r\nlacquered\r\nlacquerer\r\nlacquerers\r\nlacquering\r\nlacquers\r\nlacrosse\r\nlactase\r\nlactate\r\nlactated\r\nlactates\r\nlactating\r\nlactation\r\nlacteal\r\nlactic\r\nlactiferous\r\nlactometer\r\nlactose\r\nlacuna\r\nlacunae\r\nlacunaria\r\nlacunas\r\nlacy\r\nlad\r\nladder\r\nladders\r\nladdie\r\nlade\r\nladed\r\nladen\r\nladies\r\nlading\r\nladle\r\nladled\r\nladles\r\nladling\r\nlads\r\nlady\r\nladybird\r\nladybirds\r\nladybird's\r\nladybug\r\nladybugs\r\nladybug's\r\nladyfinger\r\nladylike\r\nladylove\r\nlady's\r\nladyship\r\nlaevogyrate\r\nlaevorotatory\r\nlaevulin\r\nlaevulose\r\nlag\r\nlagan\r\nlager\r\nlagers\r\nlaggard\r\nlaggardness\r\nlaggards\r\nlagged\r\nlagging\r\nlagniappe\r\nlagoon\r\nlagoons\r\nlagoon's\r\nlags\r\nlaic\r\nlaically\r\nlaicisation\r\nlaicise\r\nlaicised\r\nlaicises\r\nlaicising\r\nlaicism\r\nlaid\r\nlain\r\nlair\r\nlaird\r\nlairs\r\nlair's\r\nlaissez\r\nlaitance\r\nlaity\r\nlake\r\nlakefront\r\nlakes\r\nlake's\r\nlakeshore\r\nlakeside\r\nlaky\r\nlam\r\nlama\r\nlamas\r\nlamasery\r\nlamb\r\nlambaste\r\nlambda\r\nlambdas\r\nlambda's\r\nlambency\r\nlambent\r\nlambently\r\nlambkill\r\nlambkin\r\nlambrequin\r\nlambs\r\nlamb's\r\nlambskin\r\nlame\r\nlamebrain\r\nlamed\r\nlamella\r\nlamellae\r\nlamellar\r\nlamellas\r\nlamellate\r\nlamellicorn\r\nlamellirostral\r\nlamely\r\nlameness\r\nlament\r\nlamentable\r\nlamentableness\r\nlamentably\r\nlamentation\r\nlamentations\r\nlamentation's\r\nlamented\r\nlamenting\r\nlaments\r\nlamer\r\nlames\r\nlamest\r\nlamina\r\nlaminar\r\nlaminate\r\nlaminated\r\nlaminates\r\nlaminating\r\nlamination\r\nlaminations\r\nlaminator\r\nlaming\r\nlaminitis\r\nlamming\r\nlamp\r\nlampas\r\nlampblack\r\nlampion\r\nlamplight\r\nlamplighter\r\nlampoon\r\nlampooned\r\nlampooner\r\nlampoonery\r\nlampooning\r\nlampoons\r\nlamppost\r\nlampposts\r\nlamprey\r\nlampreys\r\nlamprophyre\r\nlamps\r\nlamp's\r\nlampshade\r\nlampshades\r\nlanai\r\nlance\r\nlanced\r\nlancelet\r\nlancer\r\nlancers\r\nlances\r\nlancet\r\nlanceted\r\nlancewood\r\nlancination\r\nlancinations\r\nlancing\r\nland\r\nlandau\r\nlandaulet\r\nlanded\r\nlander\r\nlandfall\r\nlandfill\r\nlandform\r\nlandgrave\r\nlandgraviate\r\nlandgravine\r\nlandholder\r\nlandholders\r\nlandholding\r\nlandholdings\r\nlanding\r\nlandings\r\nlandladies\r\nlandlady\r\nlandlady's\r\nlandless\r\nlandlocked\r\nlandlord\r\nlandlordism\r\nlandlords\r\nlandlord's\r\nlandlubber\r\nlandlubberly\r\nlandmark\r\nlandmarks\r\nlandmark's\r\nlandmass\r\nlandmasses\r\nlandowner\r\nlandowners\r\nlandowner's\r\nlandownership\r\nlandowning\r\nlandrace\r\nlands\r\nlandscape\r\nlandscaped\r\nlandscaper\r\nlandscapes\r\nlandscaping\r\nlandscapist\r\nlandscapists\r\nlandside\r\nlandsknecht\r\nlandslide\r\nlandslides\r\nlandslip\r\nlandslips\r\nlandsman\r\nlandward\r\nlandwards\r\nlane\r\nlanes\r\nlane's\r\nlanglauf\r\nlangouste\r\nlangrage\r\nlangsyne\r\nlanguage\r\nlanguages\r\nlanguage's\r\nlangue\r\nlanguet\r\nlanguid\r\nlanguidly\r\nlanguidness\r\nlanguish\r\nlanguished\r\nlanguisher\r\nlanguishes\r\nlanguishing\r\nlanguishingly\r\nlanguishment\r\nlanguor\r\nlanguorous\r\nlanguorously\r\nlaniary\r\nlank\r\nlankier\r\nlankily\r\nlankiness\r\nlankly\r\nlankness\r\nlanky\r\nlanner\r\nlanneret\r\nlanolin\r\nlansquenet\r\nlantern\r\nlanterns\r\nlantern's\r\nlanthanide\r\nlanthanum\r\nlanyard\r\nlap\r\nlapboard\r\nlapdog\r\nlapel\r\nlapelled\r\nlapels\r\nlapel's\r\nlapful\r\nlapidarian\r\nlapidary\r\nlapidate\r\nlapillus\r\nlapis\r\nlapped\r\nlapper\r\nlappet\r\nlapping\r\nlaps\r\nlap's\r\nlapse\r\nlapsed\r\nlapser\r\nlapses\r\nlapsing\r\nlapstreak\r\nlaptop\r\nlaptops\r\nlaptop's\r\nlapwing\r\nlarcener\r\nlarcenist\r\nlarcenous\r\nlarcenously\r\nlarceny\r\nlarch\r\nlard\r\nlarded\r\nlarder\r\nlarding\r\nlards\r\nlardy\r\nlarge\r\nlargely\r\nlargemouth\r\nlargeness\r\nlarger\r\nlargess\r\nlargesse\r\nlargest\r\nlarghetto\r\nlargish\r\nlargo\r\nlargos\r\nlariat\r\nlarine\r\nlark\r\nlarker\r\nlarks\r\nlark's\r\nlarkspur\r\nlarrikin\r\nlarrup\r\nlarva\r\nlarvae\r\nlarval\r\nlaryngeal\r\nlarynges\r\nlaryngitis\r\nlaryngoscope\r\nlarynx\r\nlarynxes\r\nlasagne\r\nlascar\r\nlascivious\r\nlasciviously\r\nlasciviousness\r\nlaser\r\nlasers\r\nlaser's\r\nlash\r\nlashed\r\nlasher\r\nlashes\r\nlashing\r\nlashings\r\nlasing\r\nlass\r\nlasses\r\nlassie\r\nlassies\r\nlassitude\r\nlasso\r\nlassoed\r\nlassoer\r\nlassoes\r\nlass's\r\nlast\r\nlasted\r\nlasting\r\nlastingly\r\nlastingness\r\nlastly\r\nlasts\r\nlat\r\nlatch\r\nlatched\r\nlatches\r\nlatchet\r\nlatching\r\nlatchkey\r\nlatchstring\r\nlate\r\nlatecomer\r\nlatecomers\r\nlateen\r\nlately\r\nlatencies\r\nlatency\r\nlatency's\r\nlateness\r\nlatent\r\nlatently\r\nlater\r\nlateral\r\nlaterally\r\nlatest\r\nlatex\r\nlatexes\r\nlatex's\r\nlath\r\nlathe\r\nlather\r\nlathered\r\nlatherer\r\nlathering\r\nlathery\r\nlathes\r\nlathing\r\nlathy\r\nlatish\r\nlatitude\r\nlatitudes\r\nlatitude's\r\nlatitudinal\r\nlatitudinarian\r\nlatitudinarianism\r\nlatria\r\nlatrine\r\nlatrines\r\nlatrine's\r\nlatten\r\nlatter\r\nlatterly\r\nlattermost\r\nlatter's\r\nlattice\r\nlatticed\r\nlattices\r\nlattice's\r\nlatticework\r\nlatticing\r\nlaud\r\nlaudability\r\nlaudable\r\nlaudableness\r\nlaudably\r\nlaudanum\r\nlaudation\r\nlaudations\r\nlaudatory\r\nlauder\r\nlauds\r\nlaugh\r\nlaughable\r\nlaughableness\r\nlaughably\r\nlaughed\r\nlaugher\r\nlaughers\r\nlaughing\r\nlaughingly\r\nlaughingstock\r\nlaughingstocks\r\nlaughs\r\nlaughter\r\nlaunch\r\nlaunched\r\nlauncher\r\nlaunchers\r\nlaunches\r\nlaunching\r\nlaunchings\r\nlaunder\r\nlaundered\r\nlaunderer\r\nlaunderette\r\nlaunderettes\r\nlaundering\r\nlaunderings\r\nlaunders\r\nlaundress\r\nlaundresses\r\nlaundries\r\nlaundry\r\nlaundryman\r\nlaundrymen\r\nlaundrywoman\r\nlauraceous\r\nlaureate\r\nlaureates\r\nlaureateship\r\nlaurel\r\nlaurelled\r\nlaurelling\r\nlaurels\r\nlaurel's\r\nlaurustinus\r\nlava\r\nlavabo\r\nlavaliere\r\nlavation\r\nlavational\r\nlavatories\r\nlavatory\r\nlavatory's\r\nlave\r\nlavender\r\nlaver\r\nlaving\r\nlavish\r\nlavished\r\nlavishing\r\nlavishly\r\nlavishness\r\nlavolta\r\nlaw\r\nlawbreaker\r\nlawbreakers\r\nlawbreaking\r\nlawful\r\nlawfully\r\nlawfulness\r\nlawgiver\r\nlawgivers\r\nlawgiving\r\nlawks\r\nlawless\r\nlawlessly\r\nlawlessness\r\nlawmaker\r\nlawmakers\r\nlawmaking\r\nlawman\r\nlawmen\r\nlawn\r\nlawns\r\nlawn's\r\nlawny\r\nlawrencium\r\nlaws\r\nlaw's\r\nlawsuit\r\nlawsuits\r\nlawsuit's\r\nlawyer\r\nlawyerly\r\nlawyers\r\nlawyer's\r\nlax\r\nlaxative\r\nlaxatives\r\nlaxity\r\nlaxly\r\nlaxness\r\nlay\r\nlayabout\r\nlayabouts\r\nlayaway\r\nlayer\r\nlayered\r\nlayering\r\nlayers\r\nlayette\r\nlaying\r\nlayman\r\nlaymen\r\nlayoff\r\nlayoffs\r\nlayout\r\nlayouts\r\nlayout's\r\nlayover\r\nlayovers\r\nlaypeople\r\nlayperson\r\nlays\r\nlaywoman\r\nlaywomen\r\nlazaretto\r\nlaze\r\nlazed\r\nlazes\r\nlazier\r\nlaziest\r\nlazily\r\nlaziness\r\nlazing\r\nlazuli\r\nlazy\r\nlazybones\r\nlb\r\nlbs\r\nlea\r\nleach\r\nleaches\r\nleaching\r\nlead\r\nleaded\r\nleaden\r\nleadenly\r\nleadenness\r\nleader\r\nleaderless\r\nleaders\r\nleader's\r\nleadership\r\nleaderships\r\nleadership's\r\nleading\r\nleadings\r\nleadless\r\nleadoff\r\nleads\r\nleadsman\r\nleadsmen\r\nleady\r\nleaf\r\nleafage\r\nleafcutter\r\nleafed\r\nleafhopper\r\nleafier\r\nleafiest\r\nleafing\r\nleafless\r\nleaflet\r\nleaflets\r\nleaflet's\r\nleafs\r\nleafstalk\r\nleafstalks\r\nleafy\r\nleague\r\nleagued\r\nleaguer\r\nleaguers\r\nleagues\r\nleaguing\r\nleak\r\nleakage\r\nleakages\r\nleakage's\r\nleaked\r\nleakier\r\nleakiness\r\nleaking\r\nleaks\r\nleaky\r\nlean\r\nleaned\r\nleaner\r\nleanest\r\nleaning\r\nleanings\r\nleanly\r\nleanness\r\nleans\r\nleant\r\nleap\r\nleaped\r\nleaper\r\nleapfrog\r\nleapfrogged\r\nleapfrogging\r\nleaping\r\nleaps\r\nleapt\r\nlearn\r\nlearnable\r\nlearned\r\nlearnedly\r\nlearnedness\r\nlearner\r\nlearners\r\nlearning\r\nlearns\r\nlearnt\r\nlease\r\nleaseback\r\nleased\r\nleasehold\r\nleaseholder\r\nleases\r\nleash\r\nleashes\r\nleash's\r\nleasing\r\nleast\r\nleastways\r\nleastwise\r\nleather\r\nleatherback\r\nleathered\r\nleatherhead\r\nleathering\r\nleatherjacket\r\nleathern\r\nleatherneck\r\nleathers\r\nleatherwood\r\nleatherwork\r\nleathery\r\nleave\r\nleaved\r\nleaven\r\nleavened\r\nleavening\r\nleaver\r\nleavers\r\nleaves\r\nleaving\r\nleavings\r\nlebensraum\r\nlecher\r\nlecherous\r\nlecherously\r\nlecherousness\r\nlechery\r\nlecithin\r\nlectern\r\nlecterns\r\nlectern's\r\nlection\r\nlectionary\r\nlector\r\nlecture\r\nlectured\r\nlecturer\r\nlecturers\r\nlectures\r\nlectureship\r\nlecturing\r\nled\r\nlederhosen\r\nledge\r\nledger\r\nledgers\r\nledges\r\nlee\r\nleeboard\r\nleech\r\nleeches\r\nleech's\r\nleek\r\nleer\r\nleered\r\nleering\r\nleers\r\nleery\r\nlees\r\nleeward\r\nleeway\r\nleft\r\nlefties\r\nleftist\r\nleftists\r\nleftist's\r\nleftmost\r\nleftover\r\nleftovers\r\nleftover's\r\nlefts\r\nleftward\r\nleftwards\r\nleftwing\r\nlefty\r\nleg\r\nlegacies\r\nlegacy\r\nlegacy's\r\nlegal\r\nlegalese\r\nlegalisation\r\nlegalisations\r\nlegalisation's\r\nlegalise\r\nlegalised\r\nlegalises\r\nlegalising\r\nlegalism\r\nlegalist\r\nlegalistic\r\nlegalistically\r\nlegalities\r\nlegality\r\nlegally\r\nlegate\r\nlegated\r\nlegatee\r\nlegates\r\nlegateship\r\nlegatine\r\nlegating\r\nlegation\r\nlegations\r\nlegato\r\nlegend\r\nlegendarily\r\nlegendary\r\nlegendry\r\nlegends\r\nlegend's\r\nlegerdemain\r\nlegged\r\nleggier\r\nlegging\r\nleggings\r\nleggy\r\nleghorn\r\nlegibility\r\nlegible\r\nlegibly\r\nlegion\r\nlegionary\r\nlegionnaire\r\nlegionnaires\r\nlegions\r\nlegion's\r\nlegislate\r\nlegislated\r\nlegislates\r\nlegislating\r\nlegislation\r\nlegislations\r\nlegislative\r\nlegislatively\r\nlegislator\r\nlegislatorial\r\nlegislators\r\nlegislator's\r\nlegislatress\r\nlegislature\r\nlegislatures\r\nlegislature's\r\nlegist\r\nlegit\r\nlegitimacy\r\nlegitimate\r\nlegitimated\r\nlegitimately\r\nlegitimates\r\nlegitimating\r\nlegitimatise\r\nlegitimatised\r\nlegitimatising\r\nlegitimisation\r\nlegitimisations\r\nlegitimisation's\r\nlegitimise\r\nlegitimised\r\nlegitimises\r\nlegitimising\r\nlegitimism\r\nlegitimist\r\nlegless\r\nlegman\r\nlegroom\r\nlegs\r\nlegume\r\nlegumes\r\nleguminous\r\nlegwork\r\nlei\r\nleister\r\nleisure\r\nleisured\r\nleisureliness\r\nleisurely\r\nleitmotif\r\nleitmotiv\r\nleman\r\nlemma\r\nlemmas\r\nlemma's\r\nlemming\r\nlemmings\r\nlemon\r\nlemonade\r\nlemons\r\nlemon's\r\nlemony\r\nlemur\r\nlemuroid\r\nlend\r\nlender\r\nlenders\r\nlending\r\nlends\r\nlength\r\nlengthen\r\nlengthened\r\nlengthener\r\nlengthening\r\nlengthens\r\nlengthier\r\nlengthily\r\nlengthiness\r\nlengths\r\nlengthways\r\nlengthwise\r\nlengthy\r\nlenience\r\nleniency\r\nlenient\r\nleniently\r\nlenis\r\nlenitive\r\nlenity\r\nlens\r\nlenses\r\nlens's\r\nlent\r\nlentamente\r\nlentil\r\nlentils\r\nlentil's\r\nlentissimo\r\nlento\r\nleonine\r\nleopard\r\nleopardess\r\nleopards\r\nleopard's\r\nleotard\r\nleotards\r\nleper\r\nlepers\r\nlepidopterist\r\nleporine\r\nleprechaun\r\nleprechauns\r\nleprosarium\r\nleprosy\r\nleprous\r\nleprously\r\nlepton\r\nleptons\r\nlepton's\r\nleptophyllous\r\nleptosome\r\nles\r\nlesbian\r\nlesbianism\r\nlesbians\r\nlesion\r\nlesions\r\nless\r\nlessee\r\nlessen\r\nlessened\r\nlessening\r\nlessens\r\nlesser\r\nlesson\r\nlessoned\r\nlessoning\r\nlessons\r\nlesson's\r\nlest\r\nlet\r\nletch\r\nletdown\r\nletdowns\r\nlethal\r\nlethality\r\nlethally\r\nlethargic\r\nlethargically\r\nlethargies\r\nlethargy\r\nlets\r\nlet's\r\nletter\r\nlettered\r\nletterer\r\nletterhead\r\nletterheads\r\nlettering\r\nletterman\r\nlettermen\r\nletterpress\r\nletters\r\nletterset\r\nletting\r\nlettuce\r\nletup\r\nleucocratic\r\nleucoplast\r\nleucopoiesis\r\nleucorrhoea\r\nleucotomy\r\nleukaemia\r\nleukocyte\r\nlevanter\r\nlevee\r\nlevees\r\nlevee's\r\nlevel\r\nlevelled\r\nleveller\r\nlevellers\r\nlevelling\r\nlevelly\r\nlevels\r\nlever\r\nleverage\r\nleveraged\r\nleverages\r\nleveraging\r\nlevered\r\nleveret\r\nlevering\r\nlevers\r\nlever's\r\nleviathan\r\nleviathan's\r\nlevied\r\nlevier\r\nlevies\r\nlevirate\r\nleviratic\r\nlevitate\r\nlevitated\r\nlevitates\r\nlevitating\r\nlevitation\r\nlevities\r\nlevity\r\nlevy\r\nlevying\r\nlewd\r\nlewdly\r\nlewdness\r\nlewisite\r\nlexeme\r\nlexical\r\nlexically\r\nlexicographer\r\nlexicographers\r\nlexicographer's\r\nlexicographic\r\nlexicographical\r\nlexicographically\r\nlexicography\r\nlexicology\r\nlexicon\r\nlexicons\r\nlexicon's\r\nlexicostatistic\r\nlexicostatistics\r\nlexis\r\nliabilities\r\nliability\r\nliability's\r\nliable\r\nliableness\r\nliaise\r\nliaised\r\nliaises\r\nliaising\r\nliaison\r\nliaisons\r\nliaison's\r\nliana\r\nliar\r\nliars\r\nliar's\r\nlib\r\nlibation\r\nlibations\r\nlibel\r\nlibellant\r\nlibellants\r\nlibelled\r\nlibellee\r\nlibellees\r\nlibeller\r\nlibellers\r\nlibelling\r\nlibellous\r\nlibellously\r\nlibels\r\nliberal\r\nliberalisation\r\nliberalisations\r\nliberalisation's\r\nliberalise\r\nliberalised\r\nliberaliser\r\nliberalisers\r\nliberalises\r\nliberalising\r\nliberalism\r\nliberalist\r\nliberalistic\r\nliberality\r\nliberally\r\nliberalness\r\nliberals\r\nliberate\r\nliberated\r\nliberates\r\nliberating\r\nliberation\r\nliberationist\r\nliberationists\r\nliberator\r\nliberators\r\nliberator's\r\nlibertarian\r\nlibertarianism\r\nlibertarians\r\nliberties\r\nlibertinage\r\nlibertine\r\nlibertines\r\nlibertinism\r\nliberty\r\nliberty's\r\nlibidinal\r\nlibidinous\r\nlibidinously\r\nlibidinousness\r\nlibido\r\nlibrarian\r\nlibrarians\r\nlibrarian's\r\nlibrarianship\r\nlibraries\r\nlibrary\r\nlibrary's\r\nlibratory\r\nlibretti\r\nlibrettist\r\nlibrettists\r\nlibretto\r\nlibrettos\r\nlibretto's\r\nlice\r\nlicence\r\nlicences\r\nlicence's\r\nlicense\r\nlicensed\r\nlicensee\r\nlicensees\r\nlicensee's\r\nlicenser\r\nlicenses\r\nlicensing\r\nlicensor\r\nlicensure\r\nlicentiate\r\nlicentiateship\r\nlicentious\r\nlicentiously\r\nlicentiousness\r\nlichen\r\nlichenin\r\nlichens\r\nlichen's\r\nlicit\r\nlick\r\nlicked\r\nlicker\r\nlickerish\r\nlicking\r\nlicks\r\nlickspittle\r\nlid\r\nlidded\r\nlidless\r\nlido\r\nlidos\r\nlids\r\nlid's\r\nlie\r\nlied\r\nlieder\r\nliege\r\nliegeman\r\nlien\r\nliens\r\nlien's\r\nlierne\r\nlies\r\nlieu\r\nlieutenancy\r\nlieutenant\r\nlieutenants\r\nlieutenant's\r\nlife\r\nlifeblood\r\nlifeboat\r\nlifeboats\r\nlifeguard\r\nlifeguards\r\nlifeless\r\nlifelessly\r\nlifelessness\r\nlifelike\r\nlifelikeness\r\nlifeline\r\nlifelines\r\nlifelong\r\nlifer\r\nlifers\r\nlife's\r\nlifesaver\r\nlifesaving\r\nlifespan\r\nlifestyle\r\nlifestyles\r\nlifetime\r\nlifetimes\r\nlifetime's\r\nlifework\r\nlift\r\nliftboy\r\nlifted\r\nlifter\r\nlifters\r\nlifting\r\nliftman\r\nlifts\r\nligament\r\nligaments\r\nligature\r\nligatured\r\nligatures\r\nligaturing\r\nliger\r\nlight\r\nlighted\r\nlighten\r\nlightened\r\nlightener\r\nlightening\r\nlightens\r\nlighter\r\nlighters\r\nlighter's\r\nlightest\r\nlightface\r\nlighthouse\r\nlighthouses\r\nlighthouse's\r\nlighting\r\nlightless\r\nlightly\r\nlightness\r\nlightning\r\nlightning's\r\nlightproof\r\nlights\r\nlightship\r\nlightships\r\nlightsome\r\nlightsomely\r\nlightsomeness\r\nlightweight\r\nlightweights\r\nligneous\r\nlignified\r\nlignifies\r\nlignifying\r\nlignin\r\nlignite\r\nlignum\r\nligroin\r\nlikable\r\nlike\r\nlikeable\r\nliked\r\nlikelier\r\nlikeliest\r\nlikelihood\r\nlikeliness\r\nlikely\r\nliken\r\nlikened\r\nlikeness\r\nlikenesses\r\nlikeness's\r\nlikening\r\nlikens\r\nliker\r\nlikes\r\nlikewise\r\nliking\r\nlikings\r\nlilac\r\nlilacs\r\nlilac's\r\nliliaceous\r\nlilied\r\nlilies\r\nlilt\r\nlilting\r\nliltingly\r\nlily\r\nlily's\r\nlimacine\r\nlimb\r\nlimbed\r\nlimber\r\nlimbered\r\nlimbering\r\nlimberly\r\nlimberness\r\nlimbers\r\nlimbic\r\nlimbless\r\nlimbo\r\nlimbos\r\nlimbs\r\nlime\r\nlimeade\r\nlimed\r\nlimekiln\r\nlimelight\r\nlimerick\r\nlimericks\r\nlimerick's\r\nlimes\r\nlime's\r\nlimestone\r\nlimewater\r\nlimey\r\nlimier\r\nliming\r\nlimit\r\nlimitability\r\nlimitable\r\nlimitary\r\nlimitation\r\nlimitations\r\nlimitation's\r\nlimitative\r\nlimited\r\nlimitedly\r\nlimitedness\r\nlimiter\r\nlimiters\r\nlimiting\r\nlimitless\r\nlimitlessly\r\nlimitlessness\r\nlimits\r\nlimn\r\nlimner\r\nlimning\r\nlimnologist\r\nlimnology\r\nlimo\r\nlimonene\r\nlimonite\r\nlimonitic\r\nlimos\r\nlimo's\r\nlimousine\r\nlimousines\r\nlimp\r\nlimped\r\nlimper\r\nlimpet\r\nlimpid\r\nlimpidity\r\nlimpidly\r\nlimpidness\r\nlimping\r\nlimpkin\r\nlimply\r\nlimpness\r\nlimps\r\nlimulus\r\nlimy\r\nlinage\r\nlinalool\r\nlinchpin\r\nlinchpins\r\nlinchpin's\r\nlinden\r\nline\r\nlineage\r\nlineages\r\nlineal\r\nlineally\r\nlineament\r\nlinear\r\nlinearity\r\nlinearly\r\nlineate\r\nlineation\r\nlinebacker\r\nlinebackers\r\nlined\r\nlinefeed\r\nlinefeeds\r\nlineman\r\nlinemen\r\nlinen\r\nlinens\r\nlinen's\r\nliner\r\nliners\r\nlines\r\nline's\r\nlinesman\r\nlingam\r\nlingcod\r\nlinger\r\nlingered\r\nlingerie\r\nlingering\r\nlingeringly\r\nlingers\r\nlingo\r\nlingoes\r\nlingua\r\nlingual\r\nlinguine\r\nlinguini\r\nlinguist\r\nlinguistic\r\nlinguistically\r\nlinguistics\r\nlinguists\r\nlinguist's\r\nliniment\r\nliniments\r\nlining\r\nlinings\r\nlink\r\nlinkage\r\nlinkages\r\nlinkage's\r\nlinkboy\r\nlinked\r\nlinker\r\nlinkers\r\nlinking\r\nlinkman\r\nlinks\r\nlinkup\r\nlinkwork\r\nlinnet\r\nlino\r\nlinocut\r\nlinoleum\r\nlinseed\r\nlint\r\nlintel\r\nlinter\r\nlintwhite\r\nlinty\r\nlion\r\nlioness\r\nlionesses\r\nlioness's\r\nlionfish\r\nlionhearted\r\nlionisation\r\nlionisations\r\nlionisation's\r\nlionise\r\nlionised\r\nlioniser\r\nlionisers\r\nlionises\r\nlionising\r\nlions\r\nlion's\r\nlip\r\nlipase\r\nlipid\r\nlipids\r\nlipid's\r\nlipless\r\nliplike\r\nlipoid\r\nlipoprotein\r\nlipped\r\nlippie\r\nlippy\r\nlips\r\nlip's\r\nlipstick\r\nliquate\r\nliquated\r\nliquates\r\nliquating\r\nliquation\r\nliquefaction\r\nliquefiable\r\nliquefied\r\nliquefier\r\nliquefiers\r\nliquefies\r\nliquefy\r\nliquefying\r\nliqueur\r\nliquid\r\nliquidate\r\nliquidated\r\nliquidates\r\nliquidating\r\nliquidation\r\nliquidations\r\nliquidation's\r\nliquidator\r\nliquidise\r\nliquidised\r\nliquidiser\r\nliquidisers\r\nliquidises\r\nliquidising\r\nliquidity\r\nliquidly\r\nliquidness\r\nliquids\r\nliquid's\r\nliquor\r\nliquored\r\nliquorice\r\nliquoring\r\nliquorish\r\nliquors\r\nliquor's\r\nlira\r\nliras\r\nlire\r\nlisle\r\nlisp\r\nlisped\r\nlisper\r\nlisping\r\nlisps\r\nlisp's\r\nlissom\r\nlist\r\nlisted\r\nlisten\r\nlistened\r\nlistener\r\nlisteners\r\nlistening\r\nlistens\r\nlisting\r\nlistings\r\nlisting's\r\nlistless\r\nlistlessly\r\nlistlessness\r\nlists\r\nlit\r\nlitanies\r\nlitany\r\nliteracy\r\nliteral\r\nliteralise\r\nliteralised\r\nliteraliser\r\nliteralisers\r\nliteralises\r\nliteralism\r\nliteralist\r\nliteralistic\r\nliterality\r\nliterally\r\nliteralness\r\nliterals\r\nliterarily\r\nliterariness\r\nliterary\r\nliterate\r\nliterately\r\nliterati\r\nliterature\r\nliteratures\r\nliterature's\r\nlitharge\r\nlithe\r\nlithely\r\nlitheness\r\nlithesome\r\nlithium\r\nlitho\r\nlithograph\r\nlithographer\r\nlithographers\r\nlithographic\r\nlithographically\r\nlithographs\r\nlithography\r\nlithomarge\r\nlithopone\r\nlithosphere\r\nlitigable\r\nlitigant\r\nlitigants\r\nlitigate\r\nlitigated\r\nlitigates\r\nlitigating\r\nlitigation\r\nlitigious\r\nlitigiously\r\nlitmus\r\nlitotes\r\nlitre\r\nlitres\r\nlitter\r\nlitterateur\r\nlitterbag\r\nlitterbug\r\nlittered\r\nlittering\r\nlittermate\r\nlittermates\r\nlittermate's\r\nlitters\r\nlittle\r\nlittleneck\r\nlittleness\r\nlittler\r\nlittlest\r\nlittoral\r\nliturgical\r\nliturgically\r\nliturgics\r\nliturgist\r\nliturgy\r\nlivableness\r\nlive\r\nliveability\r\nliveable\r\nlived\r\nlivelier\r\nliveliest\r\nlivelihood\r\nlivelily\r\nliveliness\r\nlivelong\r\nlively\r\nliven\r\nlivened\r\nlivening\r\nliver\r\nliveried\r\nliverish\r\nliverishness\r\nlivers\r\nliverwort\r\nlivery\r\nliveryman\r\nlives\r\nlivestock\r\nlivid\r\nlividness\r\nliving\r\nlivingly\r\nlivingness\r\nlivings\r\nlixiviate\r\nlixiviated\r\nlixiviates\r\nlixiviating\r\nlixiviation\r\nlixivium\r\nlizard\r\nlizards\r\nlizard's\r\nlizzy\r\nllama\r\nllamas\r\nllama's\r\nllano\r\nllanos\r\nlo\r\nloach\r\nloaches\r\nload\r\nloadable\r\nloaded\r\nloader\r\nloaders\r\nloading\r\nloadings\r\nloads\r\nloadstar\r\nloadstone\r\nloaf\r\nloafed\r\nloafer\r\nloafers\r\nloafing\r\nloafs\r\nloam\r\nloamy\r\nloan\r\nloaned\r\nloaner\r\nloaning\r\nloans\r\nloanword\r\nloanwords\r\nloanword's\r\nloath\r\nloathe\r\nloathed\r\nloather\r\nloathes\r\nloathing\r\nloathly\r\nloathsome\r\nloathsomely\r\nloathsomeness\r\nloaves\r\nlob\r\nlobar\r\nlobately\r\nlobbied\r\nlobbies\r\nlobbing\r\nlobby\r\nlobbyer\r\nlobbying\r\nlobbyism\r\nlobbyist\r\nlobe\r\nlobed\r\nlobelia\r\nlobes\r\nlobe's\r\nloblolly\r\nlobo\r\nlobos\r\nlobotomy\r\nlobscouse\r\nlobster\r\nlobsterman\r\nlobstermen\r\nlobsters\r\nlobster's\r\nlobular\r\nlobule\r\nlobules\r\nlobworm\r\nlocal\r\nlocale\r\nlocales\r\nlocalisable\r\nlocalisation\r\nlocalisations\r\nlocalisation's\r\nlocalise\r\nlocalised\r\nlocaliser\r\nlocalisers\r\nlocalises\r\nlocalising\r\nlocalism\r\nlocalisms\r\nlocalities\r\nlocality\r\nlocality's\r\nlocally\r\nlocals\r\nlocatable\r\nlocate\r\nlocated\r\nlocater\r\nlocates\r\nlocating\r\nlocation\r\nlocations\r\nlocative\r\nlocatives\r\nlocator\r\nlocators\r\nlocator's\r\nloch\r\nloci\r\nlock\r\nlockable\r\nlockage\r\nlockbox\r\nlocked\r\nlocker\r\nlockers\r\nlocket\r\nlocking\r\nlockjaw\r\nlocknut\r\nlockout\r\nlockouts\r\nlockout's\r\nlocks\r\nlocksmith\r\nlockstep\r\nlockstitch\r\nlockup\r\nlockups\r\nlockup's\r\nloco\r\nlocomotion\r\nlocomotive\r\nlocomotives\r\nlocomotive's\r\nlocoweed\r\nlocum\r\nlocus\r\nlocus's\r\nlocust\r\nlocusts\r\nlocust's\r\nlocution\r\nlode\r\nlodestar\r\nlodestone\r\nlodge\r\nlodged\r\nlodgement\r\nlodger\r\nlodgers\r\nlodger's\r\nlodges\r\nlodging\r\nlodgings\r\nloess\r\nloft\r\nloftier\r\nloftily\r\nloftiness\r\nlofts\r\nloft's\r\nlofty\r\nlog\r\nloganberry\r\nloganiaceous\r\nlogaoedic\r\nlogarithm\r\nlogarithmic\r\nlogarithmically\r\nlogarithms\r\nlogarithm's\r\nlogbook\r\nloge\r\nlogged\r\nlogger\r\nloggerhead\r\nloggers\r\nlogger's\r\nloggia\r\nlogging\r\nlogia\r\nlogic\r\nlogical\r\nlogicality\r\nlogically\r\nlogicalness\r\nlogician\r\nlogicians\r\nlogician's\r\nlogics\r\nlogic's\r\nlogin\r\nlogins\r\nlogion\r\nlogistic\r\nlogistical\r\nlogistically\r\nlogistician\r\nlogistics\r\nlogjam\r\nlognormal\r\nlogo\r\nlogoff\r\nlogogram\r\nlogogrammatic\r\nlogograms\r\nlogogram's\r\nlogograph\r\nlogographic\r\nlogographically\r\nlogography\r\nlogogriph\r\nlogorrhoea\r\nlogorrhoea's\r\nlogos\r\nlogotype\r\nlogout\r\nlogroll\r\nlogroller\r\nlogrolling\r\nlogs\r\nlog's\r\nlogwood\r\nlogy\r\nloin\r\nloincloth\r\nloins\r\nloin's\r\nloiter\r\nloitered\r\nloiterer\r\nloitering\r\nloiters\r\nloll\r\nlollapalooza\r\nlolling\r\nlollipop\r\nlollop\r\nlolly\r\nlollygag\r\nlollypop\r\nlone\r\nlonelier\r\nloneliest\r\nloneliness\r\nlonely\r\nloner\r\nloners\r\nlonesome\r\nlonesomeness\r\nlong\r\nlongboat\r\nlongboats\r\nlongbow\r\nlonged\r\nlonger\r\nlongest\r\nlongevity\r\nlonghair\r\nlonghaired\r\nlonghand\r\nlonghead\r\nlongheaded\r\nlonghorn\r\nlonghorns\r\nlonghouse\r\nlonging\r\nlongingly\r\nlongings\r\nlongish\r\nlongitude\r\nlongitudes\r\nlongitude's\r\nlongitudinal\r\nlongitudinally\r\nlongleaf\r\nlonglegs\r\nlongs\r\nlongshoreman\r\nlongshoremen\r\nlongsome\r\nlongspur\r\nlongstanding\r\nlongwinded\r\nloo\r\nlook\r\nlooked\r\nlookers\r\nlooking\r\nlookout\r\nlookouts\r\nlooks\r\nlookup\r\nlookups\r\nlookup's\r\nloom\r\nloomed\r\nlooming\r\nlooms\r\nloon\r\nloonier\r\nloony\r\nloop\r\nlooped\r\nloophole\r\nloopholes\r\nloophole's\r\nlooping\r\nloops\r\nloopy\r\nloose\r\nloosebox\r\nloosed\r\nloosely\r\nloosen\r\nloosened\r\nlooseness\r\nloosening\r\nloosens\r\nlooser\r\nlooses\r\nloosest\r\nloosestrife\r\nloosing\r\nloot\r\nlooted\r\nlooter\r\nlooting\r\nloots\r\nlop\r\nlope\r\nloped\r\nloping\r\nlopped\r\nlopper\r\nlopping\r\nlops\r\nlopsided\r\nlopsidedly\r\nlopsidedness\r\nloquacious\r\nloquaciously\r\nloquaciousness\r\nloquacity\r\nloquat\r\nloran\r\nlord\r\nlording\r\nlordlier\r\nlordliness\r\nlordly\r\nlords\r\nlord's\r\nlordship\r\nlore\r\nlorgnette\r\nlorgnettes\r\nlorikeet\r\nlorries\r\nlorry\r\nlosable\r\nlose\r\nloser\r\nlosers\r\nloses\r\nlosing\r\nloss\r\nlosses\r\nloss's\r\nlossy\r\nlost\r\nlot\r\nlotion\r\nlotions\r\nlots\r\nlot's\r\nlotteries\r\nlottery\r\nlotto\r\nlotus\r\nloud\r\nloudening\r\nlouder\r\nloudest\r\nloudly\r\nloudmouth\r\nloudmouthed\r\nloudness\r\nloudspeaker\r\nloudspeakers\r\nloudspeaker's\r\nlough\r\nlounge\r\nlounged\r\nlounges\r\nlounging\r\nloupe\r\nlouse\r\nloused\r\nlouses\r\nlousier\r\nlousily\r\nlousiness\r\nlousing\r\nlousy\r\nlout\r\nloutish\r\nloutishly\r\nloutishness\r\nlouts\r\nlouvre\r\nlouvred\r\nlovable\r\nlovably\r\nlove\r\nloveable\r\nlovebird\r\nlovebirds\r\nloved\r\nloveless\r\nlovelier\r\nlovelies\r\nloveliest\r\nloveliness\r\nlovelock\r\nlovelocks\r\nlovelorn\r\nlovely\r\nlovemaking\r\nlover\r\nlovers\r\nlover's\r\nloves\r\nlove's\r\nlovesick\r\nlovesickness\r\nloving\r\nlovingly\r\nlovingness\r\nlow\r\nlowborn\r\nlowboy\r\nlowbred\r\nlowbrow\r\nlower\r\nlowercase\r\nlowercased\r\nlowercases\r\nlowercasing\r\nlowered\r\nlowering\r\nlowermost\r\nlowers\r\nlowest\r\nlowing\r\nlowland\r\nlowlander\r\nlowlands\r\nlowlier\r\nlowliest\r\nlowlight\r\nlowlights\r\nlowliness\r\nlowly\r\nlowness\r\nlows\r\nlox\r\nloyal\r\nloyalist\r\nloyalists\r\nloyally\r\nloyalties\r\nloyalty\r\nloyalty's\r\nlozenge\r\nlozenges\r\nluau\r\nlubber\r\nlubberly\r\nlubbers\r\nlube\r\nlubricant\r\nlubricants\r\nlubricant's\r\nlubricate\r\nlubricated\r\nlubricates\r\nlubricating\r\nlubrication\r\nlubrications\r\nlubricator\r\nlubricious\r\nlubricous\r\nlucent\r\nlucid\r\nlucidity\r\nlucidly\r\nlucidness\r\nluck\r\nlucked\r\nluckier\r\nluckiest\r\nluckily\r\nluckiness\r\nluckless\r\nlucks\r\nlucky\r\nlucrative\r\nlucratively\r\nlucre\r\nlucubrate\r\nlucubrated\r\nlucubrates\r\nlucubrating\r\nlucubration\r\nluculent\r\nludicrous\r\nludicrously\r\nludicrousness\r\nluff\r\nluffed\r\nluffing\r\nluffs\r\nlug\r\nluge\r\nluggage\r\nlugged\r\nlugger\r\nlugging\r\nlugs\r\nlugsail\r\nlugubrious\r\nlugubriously\r\nlugworm\r\nlukewarm\r\nlukewarmly\r\nlull\r\nlullaby\r\nlulled\r\nlulls\r\nlulu\r\nlumbago\r\nlumbar\r\nlumber\r\nlumbered\r\nlumbering\r\nlumberjack\r\nlumberjacks\r\nlumberjack's\r\nlumberman\r\nlumbermen\r\nlumbers\r\nlumberyard\r\nlumen\r\nlumens\r\nluminance\r\nluminaries\r\nluminary\r\nluminescence\r\nluminescent\r\nluminosity\r\nluminous\r\nluminously\r\nluminousness\r\nlummox\r\nlump\r\nlumped\r\nlumpier\r\nlumpiness\r\nlumping\r\nlumpish\r\nlumps\r\nlumpy\r\nlunacy\r\nlunar\r\nlunatic\r\nlunatics\r\nlunation\r\nlunch\r\nlunched\r\nluncheon\r\nluncheonette\r\nluncheons\r\nluncheon's\r\nlunches\r\nlunching\r\nlunchroom\r\nlunchrooms\r\nlunchtime\r\nlunette\r\nlung\r\nlunge\r\nlunged\r\nlungfish\r\nlunging\r\nlungs\r\nlungworm\r\nlupine\r\nlupus\r\nlurch\r\nlurched\r\nlurcher\r\nlurches\r\nlurching\r\nlure\r\nlured\r\nlures\r\nlurid\r\nluridly\r\nluridness\r\nluring\r\nlurk\r\nlurked\r\nlurking\r\nlurks\r\nluscious\r\nlusciously\r\nlusciousness\r\nlush\r\nlushes\r\nlushly\r\nlushness\r\nlust\r\nlustful\r\nlustfully\r\nlustfulness\r\nlustier\r\nlustily\r\nlustiness\r\nlusting\r\nlustrate\r\nlustrated\r\nlustrates\r\nlustrating\r\nlustration\r\nlustrations\r\nlustre\r\nlustreless\r\nlustrous\r\nlustrously\r\nlustrum\r\nlusts\r\nlusty\r\nlute\r\nlutes\r\nlute's\r\nlutetium\r\nlux\r\nluxuriance\r\nluxuriant\r\nluxuriantly\r\nluxuriate\r\nluxuriated\r\nluxuriating\r\nluxuries\r\nluxurious\r\nluxuriously\r\nluxury\r\nluxury's\r\nlvi\r\nlvii\r\nlxi\r\nlxii\r\nlxiv\r\nlxix\r\nlxvi\r\nlxvii\r\nlycanthrope\r\nlycanthropic\r\nlyceum\r\nlye\r\nlying\r\nlymph\r\nlymphatic\r\nlymphocyte\r\nlymphocytes\r\nlymphoid\r\nlymphoma\r\nlynch\r\nlynched\r\nlynches\r\nlynx\r\nlynxes\r\nlynx's\r\nlyophilise\r\nlyophilised\r\nlyre\r\nlyrebird\r\nlyrebirds\r\nlyrebird's\r\nlyres\r\nlyre's\r\nlyric\r\nlyrical\r\nlyrically\r\nlyricism\r\nlyricist\r\nlyricists\r\nlyrics\r\nlyrist\r\nlysergic\r\nlyses\r\nlysine\r\nm's\r\nma\r\nma'am\r\nmacabre\r\nmacadam\r\nmacadamise\r\nmacadamised\r\nmacadamises\r\nmacadamising\r\nmacaque\r\nmacaroni\r\nmacaroni's\r\nmacaroon\r\nmacaw\r\nmacaws\r\nmacaw's\r\nmace\r\nmacebearer\r\nmacerate\r\nmacerated\r\nmacerates\r\nmacerating\r\nmaceration\r\nmacerations\r\nmacerator\r\nmacerators\r\nmaces\r\nmachete\r\nmachicolation\r\nmachinate\r\nmachinated\r\nmachinates\r\nmachinating\r\nmachination\r\nmachinations\r\nmachination's\r\nmachine\r\nmachined\r\nmachinelike\r\nmachineries\r\nmachinery\r\nmachines\r\nmachine's\r\nmachining\r\nmachinist\r\nmachinists\r\nmachismo\r\nmacho\r\nmackerel\r\nmackerels\r\nmackinaw\r\nmackintosh\r\nmacramé\r\nmacro\r\nmacrobiotic\r\nmacrobiotics\r\nmacroclimate\r\nmacrocosm\r\nmacrocosmic\r\nmacrocosmically\r\nmacroeconomic\r\nmacroeconomics\r\nmacroevolution\r\nmacrofossil\r\nmacrograph\r\nmacroinstruction\r\nmacromolecular\r\nmacromolecule\r\nmacromolecules\r\nmacromolecule's\r\nmacron\r\nmacronucleus\r\nmacronutrient\r\nmacrophage\r\nmacrophages\r\nmacrophysics\r\nmacros\r\nmacro's\r\nmacroscopic\r\nmacroscopically\r\nmacrosporangium\r\nmacrospore\r\nmacrostructure\r\nmacrostructure's\r\nmacula\r\nmaculate\r\nmaculated\r\nmaculates\r\nmaculating\r\nmaculation\r\nmad\r\nmadam\r\nmadams\r\nmadcap\r\nmadden\r\nmaddened\r\nmaddening\r\nmaddeningly\r\nmadder\r\nmaddest\r\nmadding\r\nmade\r\nmademoiselle\r\nmademoiselles\r\nmadhouse\r\nmadly\r\nmadman\r\nmadmen\r\nmadness\r\nmadras\r\nmadrigal\r\nmadrigals\r\nmadwoman\r\nmadwomen\r\nmaelstrom\r\nmaelstroms\r\nmaelstrom's\r\nmaenad\r\nmaestro\r\nmafia\r\nmagazine\r\nmagazines\r\nmagazine's\r\nmage\r\nmagenta\r\nmaggot\r\nmaggots\r\nmaggot's\r\nmaggoty\r\nmagi\r\nmagic\r\nmagical\r\nmagically\r\nmagician\r\nmagicians\r\nmagician's\r\nmagisterial\r\nmagisterially\r\nmagistracy\r\nmagistrate\r\nmagistrates\r\nmagistrate's\r\nmagma\r\nmagna\r\nmagnanimity\r\nmagnanimous\r\nmagnanimously\r\nmagnanimousness\r\nmagnate\r\nmagnates\r\nmagnesia\r\nmagnesium\r\nmagnet\r\nmagnetic\r\nmagnetically\r\nmagnetisation\r\nmagnetisations\r\nmagnetisation's\r\nmagnetise\r\nmagnetised\r\nmagnetiser\r\nmagnetisers\r\nmagnetises\r\nmagnetising\r\nmagnetism\r\nmagnetisms\r\nmagnetism's\r\nmagnetite\r\nmagneto\r\nmagnetoelectricity\r\nmagnetograph\r\nmagnetometer\r\nmagnetometers\r\nmagnetometer's\r\nmagnetopause\r\nmagnetos\r\nmagnetosphere\r\nmagnetron\r\nmagnetrons\r\nmagnets\r\nmagnet's\r\nmagnification\r\nmagnifications\r\nmagnificence\r\nmagnificent\r\nmagnificently\r\nmagnified\r\nmagnifier\r\nmagnifiers\r\nmagnifies\r\nmagnify\r\nmagnifying\r\nmagniloquence\r\nmagniloquent\r\nmagnitude\r\nmagnitudes\r\nmagnitude's\r\nmagnolia\r\nmagnolias\r\nmagnum\r\nmagnums\r\nmagpie\r\nmagpies\r\nmaguey\r\nmagus\r\nmaharaja\r\nmaharajah\r\nmaharaja's\r\nmaharani\r\nmahatma\r\nmahogany\r\nmahout\r\nmaid\r\nmaiden\r\nmaidenhair\r\nmaidenhead\r\nmaidenhood\r\nmaidenly\r\nmaidens\r\nmaids\r\nmaid's\r\nmaidservant\r\nmail\r\nmailbag\r\nmailbags\r\nmailbox\r\nmailboxes\r\nmailbox's\r\nmailed\r\nmailer\r\nmailers\r\nmailer's\r\nmailing\r\nmailings\r\nmaillot\r\nmailman\r\nmailmen\r\nmails\r\nmaim\r\nmaimed\r\nmaiming\r\nmaims\r\nmain\r\nmainframe\r\nmainframes\r\nmainframe's\r\nmainland\r\nmainlander\r\nmainlanders\r\nmainline\r\nmainlined\r\nmainliner\r\nmainliners\r\nmainlines\r\nmainlining\r\nmainly\r\nmainmast\r\nmains\r\nmainsail\r\nmainsheet\r\nmainspring\r\nmainstay\r\nmainstream\r\nmaintain\r\nmaintainability\r\nmaintainable\r\nmaintained\r\nmaintainer\r\nmaintainers\r\nmaintainer's\r\nmaintaining\r\nmaintains\r\nmaintenance\r\nmaintenances\r\nmaintenance's\r\nmaintop\r\nmaisonette\r\nmaisonettes\r\nmaitre\r\nmaize\r\nmajestic\r\nmajestically\r\nmajesties\r\nmajesty\r\nmajesty's\r\nmajolica\r\nmajor\r\nmajored\r\nmajorette\r\nmajorettes\r\nmajoring\r\nmajorities\r\nmajority\r\nmajority's\r\nmajors\r\nmajuscule\r\nmake\r\nmakefast\r\nmaker\r\nmakers\r\nmakes\r\nmakeshift\r\nmakeshifts\r\nmakeup\r\nmakeweight\r\nmaking\r\nmakings\r\nmal\r\nmalachite\r\nmaladapted\r\nmaladaptive\r\nmaladies\r\nmaladjusted\r\nmaladjustment\r\nmaladjustments\r\nmaladministration\r\nmaladroit\r\nmaladroitly\r\nmalady\r\nmalady's\r\nmalaise\r\nmalamute\r\nmalapert\r\nmalapropism\r\nmalapropos\r\nmalaria\r\nmalarial\r\nmalarkey\r\nmalcontent\r\nmalcontents\r\nmalcontent's\r\nmale\r\nmalediction\r\nmalefaction\r\nmalefactor\r\nmalefactors\r\nmalefactor's\r\nmalefic\r\nmaleficent\r\nmaleness\r\nmales\r\nmale's\r\nmalevolence\r\nmalevolencies\r\nmalevolent\r\nmalevolently\r\nmalfeasance\r\nmalfeasant\r\nmalformation\r\nmalformations\r\nmalformed\r\nmalfunction\r\nmalfunctioned\r\nmalfunctioning\r\nmalfunctions\r\nmalice\r\nmalicious\r\nmaliciously\r\nmaliciousness\r\nmalign\r\nmalignance\r\nmalignancies\r\nmalignancy\r\nmalignant\r\nmalignantly\r\nmaligned\r\nmalignity\r\nmalignly\r\nmalinger\r\nmalingered\r\nmalingerer\r\nmalingering\r\nmall\r\nmallard\r\nmallards\r\nmalleability\r\nmalleable\r\nmallet\r\nmallets\r\nmallet's\r\nmallow\r\nmalls\r\nmall's\r\nmalmsey\r\nmalnourished\r\nmalnutrition\r\nmalocclusion\r\nmalodorous\r\nmalodorously\r\nmalodour\r\nmalpractice\r\nmalt\r\nmaltase\r\nmalted\r\nmalthus\r\nmalting\r\nmaltose\r\nmaltreat\r\nmaltreatment\r\nmalts\r\nmama\r\nmamba\r\nmambo\r\nmambos\r\nmamma\r\nmammal\r\nmammalian\r\nmammals\r\nmammal's\r\nmammary\r\nmammas\r\nmamma's\r\nmammies\r\nmammography\r\nmammon\r\nmammoth\r\nmammy\r\nman\r\nmanacle\r\nmanacled\r\nmanacles\r\nmanacling\r\nmanage\r\nmanageability\r\nmanageable\r\nmanageably\r\nmanaged\r\nmanagement\r\nmanagements\r\nmanagement's\r\nmanager\r\nmanageress\r\nmanagerial\r\nmanagerially\r\nmanagers\r\nmanager's\r\nmanages\r\nmanaging\r\nmanatee\r\nmandamus\r\nmandamuses\r\nmandarin\r\nmandarins\r\nmandate\r\nmandated\r\nmandates\r\nmandating\r\nmandatory\r\nmandible\r\nmandolin\r\nmandolins\r\nmandolin's\r\nmandrake\r\nmandrakes\r\nmandrel\r\nmandrill\r\nmane\r\nmanes\r\nmane's\r\nmanful\r\nmanfully\r\nmanganese\r\nmange\r\nmanger\r\nmangers\r\nmanger's\r\nmangier\r\nmangle\r\nmangled\r\nmangles\r\nmangling\r\nmango\r\nmangos\r\nmango's\r\nmangrove\r\nmangy\r\nmanhandle\r\nmanhandled\r\nmanhandles\r\nmanhandling\r\nmanhole\r\nmanholes\r\nmanhood\r\nmanhunt\r\nmanhunts\r\nmania\r\nmaniac\r\nmaniacal\r\nmaniacally\r\nmaniacs\r\nmaniac's\r\nmanic\r\nmanically\r\nmanicotti\r\nmanicure\r\nmanicured\r\nmanicures\r\nmanicuring\r\nmanicurist\r\nmanicurists\r\nmanifest\r\nmanifestation\r\nmanifestations\r\nmanifestation's\r\nmanifested\r\nmanifesting\r\nmanifestly\r\nmanifesto\r\nmanifestoes\r\nmanifestos\r\nmanifesto's\r\nmanifests\r\nmanifold\r\nmanifoldness\r\nmanifolds\r\nmanifold's\r\nmanikin\r\nmanikins\r\nmanilla\r\nmanioc\r\nmaniple\r\nmanipulability\r\nmanipulate\r\nmanipulated\r\nmanipulates\r\nmanipulating\r\nmanipulation\r\nmanipulations\r\nmanipulative\r\nmanipulator\r\nmanipulators\r\nmanipulator's\r\nmankind\r\nmanlier\r\nmanliest\r\nmanlike\r\nmanliness\r\nmanly\r\nmanna\r\nmanned\r\nmannequin\r\nmannequins\r\nmanner\r\nmannered\r\nmannerism\r\nmannerisms\r\nmannerist\r\nmannerly\r\nmanners\r\nmanning\r\nmannish\r\nmannishly\r\nmannishness\r\nmanoeuvrability\r\nmanoeuvrable\r\nmanoeuvre\r\nmanoeuvred\r\nmanoeuvres\r\nmanoeuvring\r\nmanometer\r\nmanometers\r\nmanometer's\r\nmanor\r\nmanorial\r\nmanors\r\nmanor's\r\nmanpower\r\nmanqué\r\nmanrope\r\nmanropes\r\nmans\r\nman's\r\nmansard\r\nmanse\r\nmanservant\r\nmansion\r\nmansions\r\nmansion's\r\nmanslaughter\r\nmanslayer\r\nmantel\r\nmantelpiece\r\nmantels\r\nmantel's\r\nmantelshelf\r\nmanteltree\r\nmantic\r\nmantilla\r\nmantis\r\nmantises\r\nmantissa\r\nmantissas\r\nmantissa's\r\nmantle\r\nmantled\r\nmantles\r\nmantle's\r\nmantling\r\nmantra\r\nmantrap\r\nmanual\r\nmanually\r\nmanuals\r\nmanual's\r\nmanufactory\r\nmanufacture\r\nmanufactured\r\nmanufacturer\r\nmanufacturers\r\nmanufacturer's\r\nmanufactures\r\nmanufacturing\r\nmanumission\r\nmanumit\r\nmanumitted\r\nmanumitting\r\nmanure\r\nmanures\r\nmanus\r\nmanuscript\r\nmanuscripts\r\nmanuscript's\r\nmany\r\nmap\r\nmaple\r\nmaples\r\nmaple's\r\nmapmaker\r\nmapmakers\r\nmapmaking\r\nmapped\r\nmapping\r\nmappings\r\nmapping's\r\nmaps\r\nmap's\r\nmar\r\nmarabou\r\nmaraca\r\nmaraschino\r\nmarathon\r\nmarathons\r\nmaraud\r\nmarauder\r\nmarauders\r\nmarauding\r\nmarauds\r\nmarble\r\nmarbled\r\nmarbleise\r\nmarbleised\r\nmarbleises\r\nmarbleising\r\nmarbles\r\nmarbling\r\nmarch\r\nmarched\r\nmarcher\r\nmarches\r\nmarching\r\nmarchioness\r\nmare\r\nmares\r\nmare's\r\nmargarine\r\nmargarita\r\nmargin\r\nmarginal\r\nmarginalia\r\nmarginality\r\nmarginalize\r\nmarginally\r\nmargined\r\nmargining\r\nmargins\r\nmargin's\r\nmargrave\r\nmariachi\r\nmarigold\r\nmarigolds\r\nmarigold's\r\nmarijuana\r\nmarijuana's\r\nmarimba\r\nmarina\r\nmarinade\r\nmarinades\r\nmarinas\r\nmarinate\r\nmarinated\r\nmarinates\r\nmarinating\r\nmarine\r\nmariner\r\nmarines\r\nmarionette\r\nmarionettes\r\nmariposa\r\nmarital\r\nmaritime\r\nmarjoram\r\nmark\r\nmarkdown\r\nmarked\r\nmarkedly\r\nmarker\r\nmarkers\r\nmarket\r\nmarketability\r\nmarketable\r\nmarketed\r\nmarketer\r\nmarketing\r\nmarketplace\r\nmarketplaces\r\nmarketplace's\r\nmarkets\r\nmarketwise\r\nmarking\r\nmarkings\r\nmarks\r\nmarksman\r\nmarksmanship\r\nmarksmen\r\nmarkswoman\r\nmarkswomen\r\nmarl\r\nmarlin\r\nmarline\r\nmarmalade\r\nmarmalades\r\nmarmite\r\nmarmoreal\r\nmarmoset\r\nmarmosets\r\nmarmoset's\r\nmarmot\r\nmaroon\r\nmarooned\r\nmarplot\r\nmarquee\r\nmarquees\r\nmarquis\r\nmarquisate\r\nmarquise\r\nmarquises\r\nmarquisette\r\nmarred\r\nmarriage\r\nmarriageable\r\nmarriages\r\nmarriage's\r\nmarried\r\nmarries\r\nmarring\r\nmarrow\r\nmarrowbone\r\nmarrowbones\r\nmarrowfat\r\nmarrows\r\nmarry\r\nmarrying\r\nmars\r\nmarsh\r\nmarshal\r\nmarshals\r\nmarshes\r\nmarshier\r\nmarshland\r\nmarshlands\r\nmarshmallow\r\nmarshmallows\r\nmarsh's\r\nmarshy\r\nmarsupial\r\nmarsupials\r\nmarsupial's\r\nmart\r\nmarten\r\nmartens\r\nmartial\r\nmartially\r\nmartin\r\nmartinet\r\nmartingale\r\nmartini\r\nmartinis\r\nmarts\r\nmartyr\r\nmartyrdom\r\nmartyrs\r\nmartyr's\r\nmarvel\r\nmarvelled\r\nmarvelling\r\nmarvellous\r\nmarvellously\r\nmarvels\r\nmarzipan\r\nmascara\r\nmascaras\r\nmascot\r\nmascots\r\nmascot's\r\nmasculine\r\nmasculinity\r\nmaser\r\nmash\r\nmashed\r\nmasher\r\nmashers\r\nmashes\r\nmashie\r\nmashing\r\nmask\r\nmasked\r\nmasker\r\nmasking\r\nmasks\r\nmasochism\r\nmasochist\r\nmasochistic\r\nmasochistically\r\nmasochists\r\nmasochist's\r\nmason\r\nmasonry\r\nmasons\r\nmason's\r\nmasque\r\nmasquerade\r\nmasquerades\r\nmasquerading\r\nmasques\r\nmass\r\nmassacre\r\nmassacred\r\nmassacres\r\nmassacring\r\nmassage\r\nmassaged\r\nmassager\r\nmassages\r\nmassaging\r\nmassed\r\nmasses\r\nmasseur\r\nmasseurs\r\nmasseuse\r\nmassif\r\nmassifs\r\nmassing\r\nmassive\r\nmassively\r\nmassiveness\r\nmassy\r\nmast\r\nmastectomies\r\nmastectomy\r\nmasted\r\nmaster\r\nmastered\r\nmasterful\r\nmasterfully\r\nmastering\r\nmasterly\r\nmastermind\r\nmasterminded\r\nmasterminding\r\nmasterminds\r\nmasterpiece\r\nmasterpieces\r\nmasterpiece's\r\nmasters\r\nmaster's\r\nmastersinger\r\nmastersingers\r\nmasterstroke\r\nmasterstrokes\r\nmasterwork\r\nmastery\r\nmasthead\r\nmastic\r\nmasticate\r\nmasticated\r\nmasticates\r\nmasticating\r\nmastication\r\nmasticator\r\nmasticators\r\nmastiff\r\nmastitis\r\nmastodon\r\nmastodons\r\nmastoid\r\nmasts\r\nmasturbate\r\nmasturbated\r\nmasturbates\r\nmasturbating\r\nmasturbation\r\nmasturbatory\r\nmat\r\nmatador\r\nmatch\r\nmatchboard\r\nmatchbook\r\nmatchbox\r\nmatched\r\nmatcher\r\nmatchers\r\nmatches\r\nmatching\r\nmatchless\r\nmatchlessly\r\nmatchlock\r\nmatchmaker\r\nmatchmakers\r\nmatchmaker's\r\nmatchmaking\r\nmatchmaking's\r\nmatchstick\r\nmatchwood\r\nmate\r\nmated\r\nmatelot\r\nmater\r\nmaterial\r\nmaterialisation\r\nmaterialisations\r\nmaterialisation's\r\nmaterialise\r\nmaterialised\r\nmaterialises\r\nmaterialising\r\nmaterialism\r\nmaterialism's\r\nmaterialist\r\nmaterialistic\r\nmaterialistically\r\nmateriality\r\nmaterially\r\nmaterials\r\nmateriel\r\nmaternal\r\nmaternally\r\nmaternity\r\nmates\r\nmate's\r\nmatey\r\nmath\r\nmathematic\r\nmathematical\r\nmathematically\r\nmathematician\r\nmathematicians\r\nmathematician's\r\nmathematics\r\nmaths\r\nmatinee\r\nmating\r\nmatins\r\nmatriarch\r\nmatriarchal\r\nmatriarchy\r\nmatrices\r\nmatricidal\r\nmatricide\r\nmatriculate\r\nmatriculated\r\nmatriculates\r\nmatriculating\r\nmatriculation\r\nmatrilineal\r\nmatrimonial\r\nmatrimonially\r\nmatrimony\r\nmatrix\r\nmatrixes\r\nmatron\r\nmatronly\r\nmats\r\nmat's\r\nmatt\r\nmatte\r\nmatted\r\nmatter\r\nmattered\r\nmattering\r\nmatters\r\nmatting\r\nmattock\r\nmattress\r\nmattresses\r\nmattress's\r\nmaturate\r\nmaturated\r\nmaturates\r\nmaturating\r\nmaturation\r\nmaturational\r\nmaturations\r\nmature\r\nmatured\r\nmaturely\r\nmatures\r\nmaturing\r\nmaturities\r\nmaturity\r\nmatzo\r\nmatzos\r\nmaudlin\r\nmaul\r\nmauler\r\nmaulers\r\nmauling\r\nmauls\r\nmaulstick\r\nmaunder\r\nmausoleum\r\nmausoleums\r\nmauve\r\nmaverick\r\nmavericks\r\nmaw\r\nmawkish\r\nmawkishly\r\nmawkishness\r\nmax\r\nmaxi\r\nmaxilla\r\nmaxillae\r\nmaxillary\r\nmaxillas\r\nmaxim\r\nmaximal\r\nmaximally\r\nmaximisation\r\nmaximisations\r\nmaximisation's\r\nmaximise\r\nmaximised\r\nmaximises\r\nmaximising\r\nmaxims\r\nmaxim's\r\nmaximum\r\nmaximums\r\nmay\r\nmaybe\r\nmayday\r\nmayflower\r\nmayfly\r\nmayhap\r\nmayhem\r\nmayonnaise\r\nmayor\r\nmayoral\r\nmayoralty\r\nmayoress\r\nmayors\r\nmayor's\r\nmaypole\r\nmaze\r\nmazes\r\nmaze's\r\nmazy\r\nme\r\nmead\r\nmeadow\r\nmeadowland\r\nmeadowlark\r\nmeadowlarks\r\nmeadowlark's\r\nmeadows\r\nmeadow's\r\nmeadowsweet\r\nmeads\r\nmeagre\r\nmeal\r\nmealier\r\nmeals\r\nmeal's\r\nmealtime\r\nmealworm\r\nmealy\r\nmean\r\nmeander\r\nmeandered\r\nmeandering\r\nmeanderings\r\nmeanders\r\nmeaner\r\nmeanest\r\nmeaning\r\nmeaningful\r\nmeaningfully\r\nmeaningfulness\r\nmeaningless\r\nmeaninglessly\r\nmeaninglessness\r\nmeanings\r\nmeaning's\r\nmeanly\r\nmeanness\r\nmeans\r\nmeant\r\nmeantime\r\nmeanwhile\r\nmeasles\r\nmeasly\r\nmeasurability\r\nmeasurable\r\nmeasurably\r\nmeasure\r\nmeasured\r\nmeasureless\r\nmeasurement\r\nmeasurements\r\nmeasurement's\r\nmeasurer\r\nmeasures\r\nmeasuring\r\nmeat\r\nmeatball\r\nmeatballs\r\nmeatier\r\nmeatiest\r\nmeatiness\r\nmeats\r\nmeat's\r\nmeaty\r\nmecca\r\nmechanic\r\nmechanical\r\nmechanically\r\nmechanicals\r\nmechanics\r\nmechanic's\r\nmechanisation\r\nmechanisations\r\nmechanisation's\r\nmechanise\r\nmechanised\r\nmechanises\r\nmechanising\r\nmechanism\r\nmechanisms\r\nmechanism's\r\nmechanist\r\nmechanistic\r\nmechanistically\r\nmechanoreceptor\r\nmecum\r\nmed\r\nmedal\r\nmedalled\r\nmedalling\r\nmedallion\r\nmedallions\r\nmedallion's\r\nmedallist\r\nmedallists\r\nmedals\r\nmedal's\r\nmeddle\r\nmeddled\r\nmeddler\r\nmeddles\r\nmeddlesome\r\nmeddling\r\nmedia\r\nmediaeval\r\nmediaevalist\r\nmediaevalists\r\nmediaevalist's\r\nmedial\r\nmedially\r\nmedian\r\nmedians\r\nmedian's\r\nmedias\r\nmediate\r\nmediated\r\nmediates\r\nmediating\r\nmediation\r\nmediations\r\nmediator\r\nmediators\r\nmedic\r\nmedical\r\nmedically\r\nmedicament\r\nmedicaments\r\nmedicate\r\nmedicated\r\nmedicates\r\nmedicating\r\nmedication\r\nmedications\r\nmedicinal\r\nmedicinally\r\nmedicine\r\nmedicines\r\nmedicine's\r\nmedico\r\nmedicos\r\nmedics\r\nmedic's\r\nmedieval\r\nmedievalism\r\nmedievalist\r\nmedievalists\r\nmedievalist's\r\nmediocre\r\nmediocrities\r\nmediocrity\r\nmeditate\r\nmeditated\r\nmeditates\r\nmeditating\r\nmeditation\r\nmeditations\r\nmeditative\r\nmeditatively\r\nmedium\r\nmediumistic\r\nmediums\r\nmedium's\r\nmedley\r\nmedleys\r\nmedulla\r\nmeek\r\nmeeker\r\nmeekest\r\nmeekly\r\nmeekness\r\nmeerschaum\r\nmeet\r\nmeeting\r\nmeetinghouse\r\nmeetings\r\nmeets\r\nmega\r\nmegabit\r\nmegabits\r\nmegabuck\r\nmegabyte\r\nmegabytes\r\nmegacycle\r\nmegaflop\r\nmegaflops\r\nmegahertz\r\nmegakaryocytic\r\nmegalith\r\nmegalithic\r\nmegalomania\r\nmegalomaniac\r\nmegalopolis\r\nmegalopolises\r\nmegaphone\r\nmegaspore\r\nmegaton\r\nmegatons\r\nmegavolt\r\nmegawatt\r\nmegohm\r\nmegohms\r\nmegrim\r\nmegrims\r\nmeiosis\r\nmeiotic\r\nmelamine\r\nmelancholia\r\nmelancholic\r\nmelancholically\r\nmelancholy\r\nmelange\r\nmelanin\r\nmelanoma\r\nmelba\r\nmeld\r\nmelding\r\nmelds\r\nmelee\r\nmeliorate\r\nmeliorated\r\nmeliorates\r\nmeliorating\r\nmelioration\r\nmeliorations\r\nmellifluent\r\nmellifluous\r\nmellifluously\r\nmellifluousness\r\nmellow\r\nmellowed\r\nmellowing\r\nmellowness\r\nmellows\r\nmelodeon\r\nmelodic\r\nmelodically\r\nmelodies\r\nmelodious\r\nmelodiously\r\nmelodrama\r\nmelodramas\r\nmelodrama's\r\nmelodramatic\r\nmelodramatically\r\nmelodramatics\r\nmelody\r\nmelody's\r\nmelon\r\nmelons\r\nmelon's\r\nmelt\r\nmeltdown\r\nmeltdown's\r\nmelted\r\nmelting\r\nmeltingly\r\nmelts\r\nmember\r\nmembers\r\nmember's\r\nmembership\r\nmemberships\r\nmembership's\r\nmembrane\r\nmembranes\r\nmembrane's\r\nmembranous\r\nmemento\r\nmementoes\r\nmementos\r\nmemo\r\nmemoir\r\nmemoirs\r\nmemorabilia\r\nmemorable\r\nmemorably\r\nmemoranda\r\nmemorandum\r\nmemorandums\r\nmemorial\r\nmemorialise\r\nmemorialised\r\nmemorialises\r\nmemorialising\r\nmemorials\r\nmemoriam\r\nmemories\r\nmemorisation\r\nmemorisations\r\nmemorisation's\r\nmemorise\r\nmemorised\r\nmemorises\r\nmemorising\r\nmemory\r\nmemory's\r\nmemos\r\nmemo's\r\nmen\r\nmenace\r\nmenaced\r\nmenaces\r\nmenacing\r\nmenacingly\r\nmenagerie\r\nmenageries\r\nmenarche\r\nmend\r\nmendacious\r\nmendaciously\r\nmendaciousness\r\nmendacity\r\nmended\r\nmendelevium\r\nmender\r\nmendicancy\r\nmendicant\r\nmendicants\r\nmending\r\nmends\r\nmenhaden\r\nmenhir\r\nmenial\r\nmenially\r\nmenials\r\nmeningitis\r\nmenisci\r\nmeniscus\r\nmeniscuses\r\nmenopausal\r\nmenopause\r\nmenorah\r\nmen's\r\nmensal\r\nmenservants\r\nmenses\r\nmenstrual\r\nmenstruate\r\nmenstruated\r\nmenstruates\r\nmenstruating\r\nmenstruation\r\nmenstruations\r\nmensuration\r\nmenswear\r\nmental\r\nmentalist\r\nmentalities\r\nmentality\r\nmentally\r\nmenthol\r\nmentholated\r\nmention\r\nmentionable\r\nmentioned\r\nmentioning\r\nmentions\r\nmentor\r\nmentors\r\nmentor's\r\nmentorship\r\nmenu\r\nmenus\r\nmenu's\r\nmeow\r\nmeowed\r\nmeowing\r\nmeows\r\nmeow's\r\nmephitic\r\nmephitis\r\nmercantile\r\nmercantilism\r\nmercantilist\r\nmercenaries\r\nmercenarily\r\nmercenary\r\nmercenary's\r\nmercer\r\nmercerisation\r\nmercerisation's\r\nmercerise\r\nmercerised\r\nmercerises\r\nmercerising\r\nmercers\r\nmerchandise\r\nmerchandised\r\nmerchandiser\r\nmerchandises\r\nmerchandising\r\nmerchant\r\nmerchantability\r\nmerchantable\r\nmerchantman\r\nmerchantmen\r\nmerchants\r\nmerchant's\r\nmercies\r\nmerciful\r\nmercifully\r\nmercifulness\r\nmerciless\r\nmercilessly\r\nmercilessness\r\nmercurial\r\nmercurially\r\nmercurialness\r\nmercuric\r\nmercury\r\nmercy\r\nmere\r\nmerely\r\nmerest\r\nmeretricious\r\nmeretriciously\r\nmerganser\r\nmerge\r\nmerged\r\nmergence\r\nmerger\r\nmergers\r\nmerges\r\nmerging\r\nmeridian\r\nmeridians\r\nmeringue\r\nmeringues\r\nmerino\r\nmerit\r\nmerited\r\nmeriting\r\nmeritocracy\r\nmeritorious\r\nmeritoriously\r\nmerits\r\nmerlon\r\nmermaid\r\nmermaids\r\nmermaid's\r\nmerman\r\nmerman's\r\nmermen\r\nmerrier\r\nmerriest\r\nmerrily\r\nmerriment\r\nmerriments\r\nmerriness\r\nmerry\r\nmerrymaker\r\nmerrymaking\r\nmesa\r\nmescal\r\nmescaline\r\nmesenteric\r\nmesentery\r\nmesh\r\nmeshed\r\nmeshes\r\nmeshing\r\nmeshwork\r\nmesmeric\r\nmesmerism\r\nmesmerisms\r\nmesmerist\r\nmesmerists\r\nmesmerize\r\nmesmerized\r\nmesmerizes\r\nmesmerizing\r\nmesoderm\r\nmeson\r\nmesosphere\r\nmesospheric\r\nmesquite\r\nmess\r\nmessage\r\nmessaged\r\nmessages\r\nmessage's\r\nmessaging\r\nmessed\r\nmessenger\r\nmessengers\r\nmessenger's\r\nmesses\r\nmessiah\r\nmessiahs\r\nmessianic\r\nmessier\r\nmessiest\r\nmessieurs\r\nmessily\r\nmessiness\r\nmessing\r\nmessmate\r\nmessmates\r\nmessy\r\nmet\r\nmeta\r\nmetabolic\r\nmetabolically\r\nmetabolise\r\nmetabolised\r\nmetabolises\r\nmetabolising\r\nmetabolism\r\nmetabolisms\r\nmetabolite\r\nmetabolites\r\nmetacarpal\r\nmetacarpus\r\nmetal\r\nmetalled\r\nmetallic\r\nmetallically\r\nmetalloid\r\nmetallurgic\r\nmetallurgical\r\nmetallurgist\r\nmetallurgists\r\nmetallurgy\r\nmetals\r\nmetal's\r\nmetalwork\r\nmetalworker\r\nmetalworking\r\nmetamorphic\r\nmetamorphism\r\nmetamorphose\r\nmetamorphosed\r\nmetamorphosis\r\nmetaphase\r\nmetaphor\r\nmetaphoric\r\nmetaphorical\r\nmetaphorically\r\nmetaphors\r\nmetaphor's\r\nmetaphysic\r\nmetaphysical\r\nmetaphysically\r\nmetaphysician\r\nmetaphysics\r\nmetastasis\r\nmetastasise\r\nmetastasised\r\nmetastasises\r\nmetastasising\r\nmetatarsal\r\nmetatarsus\r\nmetathesis\r\nmetazoan\r\nmete\r\nmeted\r\nmetempsychosis\r\nmeteor\r\nmeteoric\r\nmeteorically\r\nmeteorite\r\nmeteorites\r\nmeteoritic\r\nmeteoroid\r\nmeteoroids\r\nmeteoroid's\r\nmeteorological\r\nmeteorologist\r\nmeteorology\r\nmeteors\r\nmeteor's\r\nmeter\r\nmetered\r\nmetering\r\nmeters\r\nmeter's\r\nmetes\r\nmethadone\r\nmethane\r\nmethanol\r\nmethinks\r\nmethod\r\nmethodical\r\nmethodically\r\nmethodise\r\nmethodised\r\nmethodises\r\nmethodising\r\nmethodological\r\nmethodologically\r\nmethodologies\r\nmethodologist\r\nmethodologists\r\nmethodology\r\nmethodology's\r\nmethods\r\nmethod's\r\nmeths\r\nmethyl\r\nmethylamine\r\nmethylene\r\nmethylnaphthalene\r\nmethylphenidate\r\nmeticulous\r\nmeticulously\r\nmeticulousness\r\nmetier\r\nmeting\r\nmetonym\r\nmetonymic\r\nmetonymical\r\nmetonymically\r\nmetonymy\r\nmetre\r\nmetres\r\nmetre's\r\nmetric\r\nmetrical\r\nmetrically\r\nmetrication\r\nmetrics\r\nmetric's\r\nmetro\r\nmetrological\r\nmetrology\r\nmetronome\r\nmetronomes\r\nmetropolis\r\nmetropolitan\r\nmetros\r\nmettle\r\nmettles\r\nmettlesome\r\nmew\r\nmewed\r\nmewl\r\nmews\r\nmezuzah\r\nmezzanine\r\nmezzanines\r\nmezzo\r\nmezzos\r\nmezzotint\r\nmho\r\nmiasma\r\nmiasmal\r\nmiasmic\r\nmica\r\nmice\r\nmicelle\r\nmicelles\r\nmicelle's\r\nmickle\r\nmicro\r\nmicroamp\r\nmicroampere\r\nmicroamperes\r\nmicroanalysis\r\nmicroanatomy\r\nmicrobalance\r\nmicrobalances\r\nmicrobarograph\r\nmicrobarographs\r\nmicrobe\r\nmicrobes\r\nmicrobe's\r\nmicrobial\r\nmicrobiologic\r\nmicrobiological\r\nmicrobiologically\r\nmicrobiologist\r\nmicrobiology\r\nmicrobus\r\nmicrochemistry\r\nmicrochip\r\nmicrochips\r\nmicrocircuit\r\nmicrocircuits\r\nmicrocirculation\r\nmicrocirculatory\r\nmicroclimate\r\nmicroclimates\r\nmicroclimatic\r\nmicroclimatological\r\nmicroclimatology\r\nmicrocline\r\nmicroclines\r\nmicrocode\r\nmicrocoded\r\nmicrocodes\r\nmicrocoding\r\nmicrocomputer\r\nmicrocomputers\r\nmicrocomputer's\r\nmicrocosm\r\nmicrocosmic\r\nmicrocosmically\r\nmicrocrystalline\r\nmicrodot\r\nmicroeconomic\r\nmicroeconomics\r\nmicroelectrode\r\nmicroelectronic\r\nmicroelectronics\r\nmicroelement\r\nmicroencapsulate\r\nmicroenvironment\r\nmicroevolution\r\nmicrofarad\r\nmicrofarads\r\nmicrofiche\r\nmicrofiches\r\nmicrofilm\r\nmicrofilmed\r\nmicrofilms\r\nmicrofilm's\r\nmicroform\r\nmicrofossil\r\nmicrofossils\r\nmicrograph\r\nmicrographs\r\nmicrogroove\r\nmicrohabitat\r\nmicroinjection\r\nmicroinstruction\r\nmicroinstructions\r\nmicroinstruction's\r\nmicromanipulation\r\nmicromanipulator\r\nmicromere\r\nmicrometeorite\r\nmicrometeorites\r\nmicrometeoroid\r\nmicrometeorological\r\nmicrometeorologist\r\nmicrometeorology\r\nmicrometer\r\nmicrometers\r\nmicrometer's\r\nmicrometre\r\nmicrometric\r\nmicrometry\r\nmicromicrofarad\r\nmicrominiature\r\nmicrominiaturisation\r\nmicrominiaturize\r\nmicrominiaturized\r\nmicron\r\nmicrons\r\nmicronucleus\r\nmicronutrient\r\nmicronutrients\r\nmicropaleontology\r\nmicrophage\r\nmicrophone\r\nmicrophones\r\nmicrophotograph\r\nmicrophotography\r\nmicrophysical\r\nmicrophysics\r\nmicropipette\r\nmicropore\r\nmicroprint\r\nmicroprobe\r\nmicroprocessor\r\nmicroprocessors\r\nmicroprocessor's\r\nmicroprogramming\r\nmicroradiograph\r\nmicroreader\r\nmicros\r\nmicroscope\r\nmicroscopes\r\nmicroscope's\r\nmicroscopic\r\nmicroscopically\r\nmicroscopy\r\nmicrosecond\r\nmicroseconds\r\nmicrosecond's\r\nmicrosporangium\r\nmicrospore\r\nmicrostate\r\nmicrostructure\r\nmicrostructures\r\nmicrosurgery\r\nmicrosurgical\r\nmicrotonal\r\nmicrotone\r\nmicrotones\r\nmicrotubule\r\nmicrotubules\r\nmicrovolt\r\nmicrowatt\r\nmicrowatts\r\nmicrowave\r\nmicrowaves\r\nmicrowave's\r\nmid\r\nmidair\r\nmidbrain\r\nmidcourse\r\nmidday\r\nmidden\r\nmiddies\r\nmiddle\r\nmiddlebrow\r\nmiddlebrows\r\nmiddleman\r\nmiddlemen\r\nmiddlemost\r\nmiddles\r\nmiddleweight\r\nmiddleweights\r\nmiddling\r\nmiddy\r\nmidfield\r\nmidfielder\r\nmidge\r\nmidges\r\nmidget\r\nmidi\r\nmidiron\r\nmidland\r\nmidlands\r\nmidlife\r\nmidline\r\nmidmorning\r\nmidmost\r\nmidnight\r\nmidnights\r\nmidpoint\r\nmidpoints\r\nmidpoint's\r\nmidrange\r\nmidrib\r\nmidriff\r\nmidriffs\r\nmidsection\r\nmidshipman\r\nmidshipmen\r\nmidships\r\nmidst\r\nmidstream\r\nmidsummer\r\nmidterm\r\nmidterms\r\nmidterm's\r\nmidtown\r\nmidway\r\nmidways\r\nmidweek\r\nmidweekly\r\nmidwife\r\nmidwifery\r\nmidwinter\r\nmidwives\r\nmidyear\r\nmien\r\nmiens\r\nmiff\r\nmiffed\r\nmiffing\r\nmiffs\r\nmight\r\nmightier\r\nmightiest\r\nmightily\r\nmightiness\r\nmighty\r\nmignon\r\nmignonette\r\nmigraine\r\nmigraines\r\nmigrant\r\nmigrants\r\nmigrant's\r\nmigrate\r\nmigrated\r\nmigrates\r\nmigrating\r\nmigration\r\nmigrations\r\nmigratory\r\nmike\r\nmil\r\nmilady\r\nmilch\r\nmild\r\nmilder\r\nmildest\r\nmildew\r\nmildews\r\nmildewy\r\nmildly\r\nmildness\r\nmile\r\nmileage\r\nmileages\r\nmileometer\r\nmilepost\r\nmiler\r\nmiles\r\nmile's\r\nmilestone\r\nmilestones\r\nmilestone's\r\nmilfoil\r\nmilfoils\r\nmilieu\r\nmilieus\r\nmilitancy\r\nmilitant\r\nmilitantly\r\nmilitants\r\nmilitaries\r\nmilitarily\r\nmilitarisation\r\nmilitarisations\r\nmilitarise\r\nmilitarised\r\nmilitarises\r\nmilitarising\r\nmilitarism\r\nmilitarisms\r\nmilitarist\r\nmilitaristic\r\nmilitaristically\r\nmilitary\r\nmilitate\r\nmilitated\r\nmilitates\r\nmilitating\r\nmilitia\r\nmilitiaman\r\nmilitiamen\r\nmilitias\r\nmilk\r\nmilked\r\nmilker\r\nmilkfish\r\nmilkier\r\nmilking\r\nmilkmaid\r\nmilkmaids\r\nmilkmaid's\r\nmilkman\r\nmilkmen\r\nmilks\r\nmilksop\r\nmilkweed\r\nmilkwort\r\nmilky\r\nmill\r\nmillboard\r\nmilldam\r\nmilled\r\nmillenarian\r\nmillenarianism\r\nmillenaries\r\nmillenary\r\nmillennia\r\nmillennial\r\nmillennialism\r\nmillennium\r\nmiller\r\nmillers\r\nmillet\r\nmilli\r\nmilliammeter\r\nmilliamp\r\nmilliampere\r\nmilliamperes\r\nmilliard\r\nmillibar\r\nmillicurie\r\nmillihenry\r\nmillihertz\r\nmillilitre\r\nmillilitres\r\nmillilitre's\r\nmillimetre\r\nmillimetres\r\nmillimetre's\r\nmilliner\r\nmilliners\r\nmillinery\r\nmilling\r\nmillion\r\nmillionaire\r\nmillionaires\r\nmillionaire's\r\nmillionairess\r\nmillions\r\nmillionth\r\nmillipede\r\nmillipedes\r\nmillipede's\r\nmillirad\r\nmilliroentgen\r\nmillisecond\r\nmilliseconds\r\nmillivolt\r\nmillivoltmeter\r\nmillivolts\r\nmilliwatt\r\nmilliwatts\r\nmillpond\r\nmillponds\r\nmillrace\r\nmillraces\r\nmillrun\r\nmills\r\nmillstone\r\nmillstones\r\nmillstone's\r\nmillstream\r\nmillstreams\r\nmillwheel\r\nmillwheels\r\nmillwork\r\nmillwright\r\nmillwrights\r\nmilord\r\nmilquetoast\r\nmilquetoasts\r\nmilt\r\nmime\r\nmimeograph\r\nmimeographed\r\nmimeographing\r\nmimesis\r\nmimetic\r\nmimetically\r\nmimic\r\nmimicked\r\nmimicking\r\nmimicry\r\nmimics\r\nmiming\r\nmimosa\r\nmin\r\nminaret\r\nminarets\r\nminas\r\nminatory\r\nmince\r\nminced\r\nmincemeat\r\nminces\r\nmincing\r\nmincingly\r\nmind\r\nminded\r\nmindedness\r\nminder\r\nminders\r\nmindful\r\nmindfully\r\nmindfulness\r\nminding\r\nmindless\r\nmindlessly\r\nmindlessness\r\nminds\r\nmine\r\nmined\r\nminefield\r\nminelayer\r\nminer\r\nmineral\r\nmineralise\r\nmineralised\r\nmineralises\r\nmineralising\r\nmineralogical\r\nmineralogist\r\nmineralogists\r\nmineralogy\r\nminerals\r\nmineral's\r\nminers\r\nmines\r\nminestrone\r\nminesweeper\r\nminesweepers\r\nminesweeping\r\nmineworker\r\nmineworkers\r\nmingle\r\nmingled\r\nmingles\r\nmingling\r\nmingy\r\nmini\r\nminiature\r\nminiatures\r\nminiature's\r\nminiaturisation\r\nminiaturisations\r\nminiaturise\r\nminiaturised\r\nminiaturises\r\nminiaturising\r\nminiaturist\r\nminiaturists\r\nminibus\r\nminibuses\r\nminicab\r\nminicabs\r\nminicar\r\nminicomputer\r\nminicomputers\r\nminicomputer's\r\nminidress\r\nminified\r\nminifies\r\nminify\r\nminifying\r\nminim\r\nminima\r\nminimal\r\nminimalism\r\nminimalist\r\nminimalists\r\nminimalist's\r\nminimally\r\nminimisation\r\nminimisations\r\nminimisation's\r\nminimise\r\nminimised\r\nminimises\r\nminimising\r\nminimum\r\nminimums\r\nmining\r\nminion\r\nminions\r\nminis\r\nminiscule\r\nminiskirt\r\nminister\r\nministered\r\nministerial\r\nministering\r\nministers\r\nminister's\r\nministrant\r\nministration\r\nministrations\r\nministries\r\nministry\r\nministry's\r\nmink\r\nminks\r\nmink's\r\nminnow\r\nminnows\r\nminnow's\r\nminor\r\nminored\r\nminorities\r\nminority\r\nminority's\r\nminors\r\nminor's\r\nminstrel\r\nminstrels\r\nminstrel's\r\nminstrelsy\r\nmint\r\nmintage\r\nminted\r\nminter\r\nminting\r\nmints\r\nminuend\r\nminuends\r\nminuet\r\nminus\r\nminuscule\r\nminuses\r\nminute\r\nminuted\r\nminutely\r\nminuteman\r\nminutemen\r\nminuteness\r\nminutes\r\nminutia\r\nminutiae\r\nminx\r\nminxes\r\nmiracle\r\nmiracles\r\nmiracle's\r\nmiraculous\r\nmiraculously\r\nmirage\r\nmirages\r\nmire\r\nmired\r\nmires\r\nmiring\r\nmirror\r\nmirrored\r\nmirroring\r\nmirrors\r\nmirth\r\nmirthful\r\nmirthfully\r\nmirthfulness\r\nmirthless\r\nmirthlessly\r\nmiry\r\nmisaddress\r\nmisaddressed\r\nmisadventure\r\nmisadventures\r\nmisadvise\r\nmisaim\r\nmisalign\r\nmisaligned\r\nmisaligning\r\nmisalignment\r\nmisalignments\r\nmisalignment's\r\nmisaligns\r\nmisalliance\r\nmisallocate\r\nmisallocated\r\nmisallocates\r\nmisallocating\r\nmisallocation\r\nmisanthrope\r\nmisanthropic\r\nmisanthropically\r\nmisanthropist\r\nmisanthropists\r\nmisanthropy\r\nmisapplication\r\nmisapplied\r\nmisapplies\r\nmisapply\r\nmisapplying\r\nmisapprehend\r\nmisapprehended\r\nmisapprehending\r\nmisapprehends\r\nmisapprehension\r\nmisapprehensions\r\nmisappropriate\r\nmisappropriates\r\nmisappropriation\r\nmisarranged\r\nmisattribution\r\nmisbegotten\r\nmisbehave\r\nmisbehaved\r\nmisbehaver\r\nmisbehaves\r\nmisbehaving\r\nmisbehaviour\r\nmisbehaviours\r\nmisbehaviour's\r\nmisbelieve\r\nmisbeliever\r\nmisbelieving\r\nmisbrand\r\nmisbranded\r\nmisbranding\r\nmisbrands\r\nmiscalculate\r\nmiscalculated\r\nmiscalculates\r\nmiscalculating\r\nmiscalculation\r\nmiscalculations\r\nmiscalculation's\r\nmiscall\r\nmiscarriage\r\nmiscarriages\r\nmiscarried\r\nmiscarries\r\nmiscarry\r\nmiscarrying\r\nmiscast\r\nmiscasting\r\nmiscasts\r\nmiscegenation\r\nmiscellaneous\r\nmiscellaneously\r\nmiscellanies\r\nmiscellany\r\nmischance\r\nmischief\r\nmischievous\r\nmischievously\r\nmischievousness\r\nmiscibility\r\nmiscible\r\nmisclassification\r\nmisclassifications\r\nmisclassified\r\nmisclassify\r\nmisclassifying\r\nmiscode\r\nmiscoded\r\nmiscodes\r\nmiscoding\r\nmiscommunication\r\nmiscomprehension\r\nmisconceive\r\nmisconceived\r\nmisconceiver\r\nmisconceives\r\nmisconceiving\r\nmisconception\r\nmisconceptions\r\nmisconception's\r\nmisconduct\r\nmisconducts\r\nmisconstruction\r\nmisconstructions\r\nmisconstrue\r\nmisconstrued\r\nmisconstrues\r\nmisconstruing\r\nmiscopy\r\nmiscount\r\nmiscounted\r\nmiscounting\r\nmiscounts\r\nmiscreant\r\nmiscreants\r\nmiscue\r\nmiscues\r\nmiscue's\r\nmisdate\r\nmisdeal\r\nmisdealing\r\nmisdeed\r\nmisdeeds\r\nmisdemeanant\r\nmisdemeanants\r\nmisdemeanour\r\nmisdemeanours\r\nmisdemeanour's\r\nmisdirect\r\nmisdirected\r\nmisdirection\r\nmisdirects\r\nmisdoing\r\nmisdoubt\r\nmisemploy\r\nmisemployment\r\nmiser\r\nmiserable\r\nmiserably\r\nmisericord\r\nmiseries\r\nmiserliness\r\nmiserly\r\nmisers\r\nmisery\r\nmisery's\r\nmisesteem\r\nmisestimate\r\nmisfeasance\r\nmisfeasor\r\nmisfile\r\nmisfiled\r\nmisfiles\r\nmisfiling\r\nmisfire\r\nmisfired\r\nmisfires\r\nmisfiring\r\nmisfit\r\nmisfits\r\nmisfit's\r\nmisfortune\r\nmisfortunes\r\nmisfortune's\r\nmisgauge\r\nmisgauged\r\nmisgauges\r\nmisgauging\r\nmisgiving\r\nmisgivings\r\nmisgovern\r\nmisgovernment\r\nmisguidance\r\nmisguide\r\nmisguided\r\nmisguidedly\r\nmisguides\r\nmisguiding\r\nmishandle\r\nmishandled\r\nmishandles\r\nmishandling\r\nmishap\r\nmishaps\r\nmishap's\r\nmishear\r\nmishmash\r\nmisidentification\r\nmisidentified\r\nmisidentifies\r\nmisidentify\r\nmisidentifying\r\nmisimpression\r\nmisinform\r\nmisinformation\r\nmisinformed\r\nmisinforming\r\nmisinforms\r\nmisinterpret\r\nmisinterpretation\r\nmisinterpretations\r\nmisinterpreted\r\nmisinterpreting\r\nmisinterprets\r\nmisjudge\r\nmisjudged\r\nmisjudgement\r\nmisjudges\r\nmisjudging\r\nmislabel\r\nmislabelled\r\nmislabelling\r\nmislaid\r\nmislay\r\nmislaying\r\nmislays\r\nmislead\r\nmisleading\r\nmisleadingly\r\nmisleads\r\nmisled\r\nmismanage\r\nmismanaged\r\nmismanagement\r\nmismanages\r\nmismanaging\r\nmismatch\r\nmismatched\r\nmismatches\r\nmismatching\r\nmisname\r\nmisnamed\r\nmisnames\r\nmisnaming\r\nmisnomer\r\nmisogamist\r\nmisogamists\r\nmisogamy\r\nmisogynist\r\nmisogynistic\r\nmisogynists\r\nmisogynist's\r\nmisogyny\r\nmisperceive\r\nmisperceived\r\nmisperceives\r\nmisperception\r\nmisperceptions\r\nmisplace\r\nmisplaced\r\nmisplacement\r\nmisplacements\r\nmisplaces\r\nmisplacing\r\nmisplay\r\nmisprint\r\nmisprision\r\nmisprisions\r\nmispronounce\r\nmispronounced\r\nmispronounces\r\nmispronouncing\r\nmispronunciation\r\nmisquotation\r\nmisquote\r\nmisquoted\r\nmisquotes\r\nmisread\r\nmisreading\r\nmisreads\r\nmisreckon\r\nmisrelated\r\nmisremember\r\nmisreport\r\nmisreporting\r\nmisrepresent\r\nmisrepresentation\r\nmisrepresentations\r\nmisrepresentation's\r\nmisrepresentative\r\nmisrepresented\r\nmisrepresenting\r\nmisrepresents\r\nmisroute\r\nmisrouted\r\nmisroutes\r\nmisrule\r\nmisruled\r\nmisrules\r\nmisruling\r\nmiss\r\nmissal\r\nmissals\r\nmissed\r\nmisses\r\nmisshape\r\nmisshapen\r\nmisshapenness\r\nmisshapes\r\nmissile\r\nmissilery\r\nmissiles\r\nmissile's\r\nmissing\r\nmission\r\nmissionaries\r\nmissionary\r\nmissionary's\r\nmissions\r\nmissive\r\nmissives\r\nmisspeak\r\nmisspecification\r\nmisspell\r\nmisspelled\r\nmisspelling\r\nmisspellings\r\nmisspells\r\nmisspelt\r\nmisspend\r\nmisspending\r\nmisspends\r\nmisstate\r\nmisstated\r\nmisstatement\r\nmisstatements\r\nmisstates\r\nmisstating\r\nmisstep\r\nmissus\r\nmist\r\nmistakable\r\nmistake\r\nmistaken\r\nmistakenly\r\nmistakes\r\nmistaking\r\nmisted\r\nmister\r\nmisters\r\nmistier\r\nmistiest\r\nmistily\r\nmistimed\r\nmistiness\r\nmisting\r\nmistletoe\r\nmistook\r\nmistral\r\nmistrals\r\nmistranslate\r\nmistranslation\r\nmistreat\r\nmistreated\r\nmistreating\r\nmistreatment\r\nmistreats\r\nmistress\r\nmistrial\r\nmistrust\r\nmistrusted\r\nmistrustful\r\nmistrustfully\r\nmistrustfulness\r\nmistrusting\r\nmistrusts\r\nmists\r\nmisty\r\nmistype\r\nmistyped\r\nmistypes\r\nmistyping\r\nmisunderstand\r\nmisunderstanding\r\nmisunderstandings\r\nmisunderstanding's\r\nmisunderstands\r\nmisunderstood\r\nmisuse\r\nmisused\r\nmisuses\r\nmisusing\r\nmiswrite\r\nmiswrites\r\nmiswriting\r\nmiswritten\r\nmite\r\nmites\r\nmitigate\r\nmitigated\r\nmitigates\r\nmitigating\r\nmitigation\r\nmitigations\r\nmitochondria\r\nmitochondrion\r\nmitosis\r\nmitotic\r\nmitre\r\nmitred\r\nmitring\r\nmitt\r\nmitten\r\nmittens\r\nmitten's\r\nmitts\r\nmitzvah\r\nmitzvahs\r\nmitzvah's\r\nmix\r\nmixable\r\nmixed\r\nmixer\r\nmixers\r\nmixes\r\nmixing\r\nmixture\r\nmixtures\r\nmixture's\r\nmizzen\r\nmizzenmast\r\nmizzle\r\nmizzled\r\nmizzles\r\nmizzling\r\nml\r\nmm\r\nmnemonic\r\nmnemonically\r\nmnemonics\r\nmnemonic's\r\nmoa\r\nmoan\r\nmoaned\r\nmoaning\r\nmoans\r\nmoat\r\nmoated\r\nmoats\r\nmoat's\r\nmob\r\nmobbed\r\nmobbing\r\nmobcap\r\nmobcaps\r\nmobile\r\nmobiles\r\nmobilisation\r\nmobilisations\r\nmobilisation's\r\nmobilise\r\nmobilised\r\nmobilises\r\nmobilising\r\nmobility\r\nmobs\r\nmob's\r\nmobster\r\nmobsters\r\nmoccasin\r\nmoccasins\r\nmoccasin's\r\nmocha\r\nmock\r\nmocked\r\nmocker\r\nmockers\r\nmockery\r\nmocking\r\nmockingbird\r\nmockingly\r\nmocks\r\nmod\r\nmodal\r\nmodalities\r\nmodality\r\nmodality's\r\nmodally\r\nmode\r\nmodel\r\nmodelled\r\nmodeller\r\nmodellers\r\nmodelling\r\nmodels\r\nmodel's\r\nmodem\r\nmodems\r\nmoderate\r\nmoderated\r\nmoderately\r\nmoderateness\r\nmoderates\r\nmoderating\r\nmoderation\r\nmoderations\r\nmoderato\r\nmoderator\r\nmoderators\r\nmoderator's\r\nmodern\r\nmodernisation\r\nmodernisations\r\nmodernisation's\r\nmodernise\r\nmodernised\r\nmodernises\r\nmodernising\r\nmodernism\r\nmodernist\r\nmodernistic\r\nmodernists\r\nmodernity\r\nmoderns\r\nmodes\r\nmodest\r\nmodestly\r\nmodesty\r\nmodicum\r\nmodifiability\r\nmodifiable\r\nmodification\r\nmodifications\r\nmodified\r\nmodifier\r\nmodifiers\r\nmodifies\r\nmodify\r\nmodifying\r\nmodillion\r\nmodish\r\nmodishly\r\nmodishness\r\nmodular\r\nmodularisation\r\nmodularise\r\nmodularised\r\nmodularises\r\nmodularising\r\nmodularity\r\nmodularly\r\nmodulate\r\nmodulated\r\nmodulates\r\nmodulating\r\nmodulation\r\nmodulations\r\nmodulator\r\nmodulators\r\nmodulator's\r\nmodule\r\nmodules\r\nmodule's\r\nmodulo\r\nmodulus\r\nmodus\r\nmogul\r\nmohair\r\nmoieties\r\nmoiety\r\nmoil\r\nmoiling\r\nmoiré\r\nmoist\r\nmoisten\r\nmoistened\r\nmoistener\r\nmoistening\r\nmoistly\r\nmoistness\r\nmoisture\r\nmoistures\r\nmoisturise\r\nmoisturised\r\nmoisturiser\r\nmoisturisers\r\nmoisturises\r\nmoisturising\r\nmolar\r\nmolars\r\nmolasses\r\nmole\r\nmolecular\r\nmolecularly\r\nmolecule\r\nmolecules\r\nmolecule's\r\nmolehill\r\nmoles\r\nmoleskin\r\nmoleskins\r\nmolest\r\nmolestation\r\nmolestations\r\nmolested\r\nmolester\r\nmolesters\r\nmolesting\r\nmolests\r\nmoll\r\nmollification\r\nmollifications\r\nmollified\r\nmollifies\r\nmollify\r\nmollifying\r\nmollusc\r\nmolluscs\r\nmollycoddle\r\nmollycoddled\r\nmollycoddles\r\nmollycoddling\r\nmolten\r\nmolybdenum\r\nmom\r\nmoment\r\nmomentarily\r\nmomentary\r\nmomentous\r\nmomentously\r\nmomentousness\r\nmoments\r\nmoment's\r\nmomentum\r\nmomentums\r\nmomma\r\nmommy\r\nmoms\r\nmom's\r\nmonad\r\nmonadic\r\nmonads\r\nmonarch\r\nmonarchic\r\nmonarchical\r\nmonarchies\r\nmonarchism\r\nmonarchist\r\nmonarchists\r\nmonarchs\r\nmonarchy\r\nmonarchy's\r\nmonasteries\r\nmonastery\r\nmonastery's\r\nmonastic\r\nmonastically\r\nmonasticism\r\nmonatomic\r\nmonaural\r\nmonaurally\r\nmonazite\r\nmonetarily\r\nmonetarism\r\nmonetarist\r\nmonetary\r\nmoney\r\nmoneybags\r\nmoneychanger\r\nmoneyed\r\nmoneylender\r\nmoneylenders\r\nmoneylending\r\nmoneyless\r\nmoneymaker\r\nmoneymaking\r\nmoneys\r\nmoney's\r\nmonger\r\nmongered\r\nmongering\r\nmongers\r\nmongolism\r\nmongoloid\r\nmongoose\r\nmongooses\r\nmongrel\r\nmongrelise\r\nmongrelised\r\nmongrelises\r\nmongrelising\r\nmonied\r\nmonies\r\nmoniker\r\nmonism\r\nmonist\r\nmonistic\r\nmonition\r\nmonitions\r\nmonitor\r\nmonitored\r\nmonitoring\r\nmonitors\r\nmonitory\r\nmonk\r\nmonkey\r\nmonkeys\r\nmonkfish\r\nmonkish\r\nmonks\r\nmonk's\r\nmonkshood\r\nmono\r\nmonoacid\r\nmonoamine\r\nmonocarp\r\nmonochord\r\nmonochromatic\r\nmonochromatically\r\nmonochrome\r\nmonochromes\r\nmonochromic\r\nmonocle\r\nmonocled\r\nmonocles\r\nmonocline\r\nmonoclinic\r\nmonocoque\r\nmonocracy\r\nmonocular\r\nmonoculture\r\nmonocycle\r\nmonocyclic\r\nmonodrama\r\nmonody\r\nmonoester\r\nmonofilament\r\nmonogamist\r\nmonogamists\r\nmonogamous\r\nmonogamously\r\nmonogamy\r\nmonogenesis\r\nmonogenetic\r\nmonogram\r\nmonograms\r\nmonogram's\r\nmonograph\r\nmonographic\r\nmonographs\r\nmonograph's\r\nmonogyny\r\nmonohull\r\nmonohybrid\r\nmonohydrate\r\nmonolingual\r\nmonolinguals\r\nmonolith\r\nmonolithic\r\nmonolithically\r\nmonoliths\r\nmonologist\r\nmonologists\r\nmonologue\r\nmonologues\r\nmonomania\r\nmonomaniac\r\nmonomer\r\nmonomers\r\nmonomer's\r\nmonometallic\r\nmonometer\r\nmonometers\r\nmonometer's\r\nmonomial\r\nmonomolecular\r\nmononuclear\r\nmononucleosis\r\nmonophobia\r\nmonophonic\r\nmonophonically\r\nmonophony\r\nmonoplane\r\nmonopodium\r\nmonopolies\r\nmonopolisation\r\nmonopolisations\r\nmonopolisation's\r\nmonopolise\r\nmonopolised\r\nmonopolises\r\nmonopolising\r\nmonopolist\r\nmonopolistic\r\nmonopolistically\r\nmonopolists\r\nmonopoly\r\nmonopoly's\r\nmonopropellant\r\nmonopulse\r\nmonorail\r\nmonorails\r\nmonorail's\r\nmonosodium\r\nmonosyllabic\r\nmonosyllabically\r\nmonosyllable\r\nmonosyllables\r\nmonosymmetry\r\nmonosynaptic\r\nmonotheism\r\nmonotheist\r\nmonotheistic\r\nmonotint\r\nmonotone\r\nmonotonic\r\nmonotonically\r\nmonotonicity\r\nmonotonous\r\nmonotonously\r\nmonotonousness\r\nmonotony\r\nmonotype\r\nmonotypic\r\nmonovalent\r\nmonoxide\r\nmonsieur\r\nmonsignor\r\nmonsoon\r\nmonsoons\r\nmonster\r\nmonsters\r\nmonster's\r\nmonstrance\r\nmonstrosities\r\nmonstrosity\r\nmonstrous\r\nmonstrously\r\nmonstrousness\r\nmontage\r\nmontages\r\nmonth\r\nmonthlies\r\nmonthly\r\nmonths\r\nmonth's\r\nmonticule\r\nmonument\r\nmonumental\r\nmonumentalise\r\nmonumentalised\r\nmonumentalises\r\nmonumentalising\r\nmonumentality\r\nmonumentally\r\nmonuments\r\nmonument's\r\nmoo\r\nmooch\r\nmoocher\r\nmooches\r\nmooching\r\nmood\r\nmoodier\r\nmoodily\r\nmoodiness\r\nmoods\r\nmood's\r\nmoody\r\nmooed\r\nmoon\r\nmoonbeam\r\nmoonbeams\r\nmoonbeam's\r\nmooncalf\r\nmooned\r\nmooneye\r\nmoonfish\r\nmoonflower\r\nmooning\r\nmoonless\r\nmoonlet\r\nmoonlight\r\nmoonlighted\r\nmoonlighter\r\nmoonlighting\r\nmoonlights\r\nmoonlit\r\nmoonquake\r\nmoonrise\r\nmoons\r\nmoonscape\r\nmoonseed\r\nmoonset\r\nmoonshine\r\nmoonstone\r\nmoonstruck\r\nmoonward\r\nmoony\r\nmoor\r\nmoorage\r\nmoored\r\nmoorfowl\r\nmoorhen\r\nmooring\r\nmoorings\r\nmoors\r\nmoor's\r\nmoos\r\nmoose\r\nmoot\r\nmooted\r\nmop\r\nmopboard\r\nmope\r\nmoped\r\nmopes\r\nmoping\r\nmopped\r\nmoppet\r\nmopping\r\nmops\r\nmoraine\r\nmoral\r\nmorale\r\nmoralisation\r\nmoralisations\r\nmoralisation's\r\nmoralise\r\nmoralised\r\nmoraliser\r\nmoralisers\r\nmoralises\r\nmoralising\r\nmoralist\r\nmoralistic\r\nmoralistically\r\nmoralities\r\nmorality\r\nmorally\r\nmorals\r\nmoral's\r\nmorass\r\nmorasses\r\nmoratorium\r\nmoratoriums\r\nmoray\r\nmorbid\r\nmorbidity\r\nmorbidly\r\nmordacious\r\nmordacity\r\nmordancy\r\nmordant\r\nmordantly\r\nmordent\r\nmore\r\nmorel\r\nmoreover\r\nmores\r\nmorganatic\r\nmorgue\r\nmorgues\r\nmoribund\r\nmorn\r\nmorning\r\nmornings\r\nmorocco\r\nmoron\r\nmoronic\r\nmoronically\r\nmorose\r\nmorosely\r\nmoroseness\r\nmorph\r\nmorpheme\r\nmorphemic\r\nmorphine\r\nmorphologic\r\nmorphological\r\nmorphologically\r\nmorphology\r\nmorphophonemic\r\nmorphophonemics\r\nmorrow\r\nmorsel\r\nmorsels\r\nmorsel's\r\nmort\r\nmortal\r\nmortality\r\nmortally\r\nmortals\r\nmortar\r\nmortarboard\r\nmortared\r\nmortaring\r\nmortars\r\nmortem\r\nmortgage\r\nmortgaged\r\nmortgager\r\nmortgages\r\nmortgage's\r\nmortgaging\r\nmortgagor\r\nmortgagors\r\nmortician\r\nmorticians\r\nmortification\r\nmortifications\r\nmortified\r\nmortifies\r\nmortify\r\nmortifying\r\nmortise\r\nmortising\r\nmortuaries\r\nmortuary\r\nmortuary's\r\nmosaic\r\nmosaics\r\nmosaic's\r\nmosey\r\nmoseyed\r\nmoseying\r\nmosque\r\nmosques\r\nmosquito\r\nmosquitoes\r\nmoss\r\nmossback\r\nmossbunker\r\nmosses\r\nmossier\r\nmoss's\r\nmossy\r\nmost\r\nmostly\r\nmot\r\nmote\r\nmotel\r\nmotels\r\nmotel's\r\nmotet\r\nmoth\r\nmothball\r\nmother\r\nmotherboard\r\nmotherboards\r\nmotherboard's\r\nmothered\r\nmotherhood\r\nmotherhouse\r\nmothering\r\nmotherland\r\nmotherless\r\nmotherliness\r\nmotherly\r\nmothers\r\nmother's\r\nmothproof\r\nmoths\r\nmotif\r\nmotifs\r\nmotif's\r\nmotile\r\nmotility\r\nmotion\r\nmotional\r\nmotioned\r\nmotioning\r\nmotionless\r\nmotionlessly\r\nmotionlessness\r\nmotions\r\nmotivate\r\nmotivated\r\nmotivates\r\nmotivating\r\nmotivation\r\nmotivational\r\nmotivationally\r\nmotivations\r\nmotivator\r\nmotive\r\nmotives\r\nmotley\r\nmotocross\r\nmotor\r\nmotorbike\r\nmotorboat\r\nmotorbus\r\nmotorcade\r\nmotorcades\r\nmotorcade's\r\nmotorcar\r\nmotorcars\r\nmotorcar's\r\nmotorcycle\r\nmotorcycles\r\nmotorcycle's\r\nmotorcyclist\r\nmotored\r\nmotoring\r\nmotorisation\r\nmotorisations\r\nmotorisation's\r\nmotorise\r\nmotorised\r\nmotorises\r\nmotorising\r\nmotorist\r\nmotorists\r\nmotorist's\r\nmotorman\r\nmotormen\r\nmotors\r\nmotorway\r\nmotown\r\nmotte\r\nmottle\r\nmottled\r\nmottles\r\nmottling\r\nmotto\r\nmottoes\r\nmottos\r\nmould\r\nmouldboard\r\nmoulded\r\nmoulder\r\nmouldering\r\nmoulding\r\nmoulds\r\nmouldy\r\nmoult\r\nmound\r\nmounded\r\nmounds\r\nmount\r\nmountable\r\nmountain\r\nmountaineer\r\nmountaineering\r\nmountaineers\r\nmountainous\r\nmountainously\r\nmountains\r\nmountain's\r\nmountainside\r\nmountainsides\r\nmountaintop\r\nmountaintops\r\nmountaintop's\r\nmountebank\r\nmounted\r\nmounting\r\nmountings\r\nmounts\r\nmourn\r\nmourned\r\nmourner\r\nmourners\r\nmournful\r\nmournfully\r\nmournfulness\r\nmourning\r\nmourns\r\nmouse\r\nmouser\r\nmousetrap\r\nmousier\r\nmousiness\r\nmoussaka\r\nmousse\r\nmoustache\r\nmoustached\r\nmoustaches\r\nmousy\r\nmouth\r\nmouthed\r\nmouthful\r\nmouthier\r\nmouthing\r\nmouthpart\r\nmouthpiece\r\nmouthpieces\r\nmouths\r\nmouthwash\r\nmouthy\r\nmovable\r\nmovably\r\nmove\r\nmoved\r\nmovement\r\nmovements\r\nmovement's\r\nmover\r\nmovers\r\nmoves\r\nmovie\r\nmoviegoer\r\nmoviemaker\r\nmovies\r\nmovie's\r\nmoving\r\nmovingly\r\nmow\r\nmowed\r\nmower\r\nmowers\r\nmowing\r\nmown\r\nmows\r\nmoxie\r\nmozzarella\r\nmuch\r\nmucilage\r\nmucilaginous\r\nmuck\r\nmucked\r\nmucking\r\nmuckle\r\nmuckrake\r\nmuckraker\r\nmuckraking\r\nmucks\r\nmuckworm\r\nmucky\r\nmucous\r\nmucus\r\nmud\r\nmudded\r\nmuddied\r\nmuddier\r\nmuddily\r\nmuddiness\r\nmudding\r\nmuddle\r\nmuddled\r\nmuddleheaded\r\nmuddles\r\nmuddling\r\nmuddy\r\nmuddying\r\nmudfish\r\nmudguard\r\nmudpack\r\nmudsill\r\nmudskipper\r\nmudskippers\r\nmudsling\r\nmudslinger\r\nmudslingers\r\nmudslinging\r\nmudstone\r\nmudstones\r\nmuenster\r\nmuesli\r\nmuezzin\r\nmuff\r\nmuffin\r\nmuffins\r\nmuffin's\r\nmuffle\r\nmuffled\r\nmuffler\r\nmufflers\r\nmuffles\r\nmuffling\r\nmuffs\r\nmuff's\r\nmufti\r\nmuftis\r\nmug\r\nmugged\r\nmugger\r\nmuggers\r\nmuggier\r\nmugginess\r\nmugging\r\nmuggings\r\nmuggins\r\nmuggy\r\nmugs\r\nmug's\r\nmukluk\r\nmulatto\r\nmulattoes\r\nmulattos\r\nmulberries\r\nmulberry\r\nmulberry's\r\nmulch\r\nmulched\r\nmulches\r\nmulching\r\nmulct\r\nmule\r\nmules\r\nmule's\r\nmuleteer\r\nmulish\r\nmulishly\r\nmulishness\r\nmull\r\nmullah\r\nmullein\r\nmullet\r\nmullets\r\nmulligan\r\nmulligatawny\r\nmulling\r\nmullion\r\nmulti\r\nmulticellular\r\nmultichannel\r\nmultichip\r\nmulticolour\r\nmulticoloured\r\nmulticolumn\r\nmulticoupler\r\nmultidimensional\r\nmultidimensionality\r\nmultidisciplinary\r\nmultiengine\r\nmultifaceted\r\nmultifarious\r\nmultifariously\r\nmultifibred\r\nmultiform\r\nmultihop\r\nmultihued\r\nmultihull\r\nmultilane\r\nmultilateral\r\nmultilateralist\r\nmultilaterally\r\nmultilayer\r\nmultilevel\r\nmultilevelled\r\nmultilingual\r\nmultilingualism\r\nmultilingually\r\nmultimedia\r\nmultimegaton\r\nmultimeter\r\nmultimillionaire\r\nmultinational\r\nmultinomial\r\nmultinuclear\r\nmultinucleate\r\nmultinucleated\r\nmultipacket\r\nmultipartite\r\nmultiphase\r\nmultiple\r\nmultiples\r\nmultiple's\r\nmultiplex\r\nmultiplexed\r\nmultiplexer\r\nmultiplexers\r\nmultiplexes\r\nmultiplexing\r\nmultiplexor\r\nmultiplexors\r\nmultiplexor's\r\nmultipliable\r\nmultiplicand\r\nmultiplicands\r\nmultiplicand's\r\nmultiplication\r\nmultiplications\r\nmultiplicative\r\nmultiplicatively\r\nmultiplicity\r\nmultiplied\r\nmultiplier\r\nmultipliers\r\nmultiplies\r\nmultiply\r\nmultiplying\r\nmultipolar\r\nmultiprocess\r\nmultiprocessing\r\nmultiprocessor\r\nmultiprocessors\r\nmultiprocessor's\r\nmultiprogramming\r\nmultipronged\r\nmultipurpose\r\nmultiracial\r\nmultiracialism\r\nmultirole\r\nmultistage\r\nmultitasking\r\nmultitude\r\nmultitudes\r\nmultitude's\r\nmultitudinous\r\nmultitudinously\r\nmultivalent\r\nmultivariable\r\nmultivariate\r\nmultiversity\r\nmultiword\r\nmum\r\nmumble\r\nmumbled\r\nmumbler\r\nmumbles\r\nmumbling\r\nmumblings\r\nmumbo\r\nmummer\r\nmummery\r\nmummies\r\nmummification\r\nmummifications\r\nmummified\r\nmummify\r\nmummy\r\nmummy's\r\nmumps\r\nmunch\r\nmunched\r\nmunches\r\nmunching\r\nmundane\r\nmundanely\r\nmunicipal\r\nmunicipalities\r\nmunicipality\r\nmunicipality's\r\nmunicipally\r\nmunificence\r\nmunificent\r\nmunificently\r\nmunitions\r\nmural\r\nmuralist\r\nmurals\r\nmurder\r\nmurdered\r\nmurderer\r\nmurderers\r\nmurderess\r\nmurdering\r\nmurderous\r\nmurderously\r\nmurders\r\nmurex\r\nmurk\r\nmurkier\r\nmurkily\r\nmurkiness\r\nmurky\r\nmurmur\r\nmurmured\r\nmurmuring\r\nmurmurs\r\nmurrain\r\nmuscatel\r\nmuscle\r\nmuscled\r\nmuscleman\r\nmusclemen\r\nmuscles\r\nmuscling\r\nmuscovite\r\nmuscular\r\nmuscularity\r\nmuscularly\r\nmusculature\r\nmuse\r\nmused\r\nmuseum\r\nmuseums\r\nmuseum's\r\nmush\r\nmushier\r\nmushily\r\nmushiness\r\nmushroom\r\nmushroomed\r\nmushrooming\r\nmushrooms\r\nmushy\r\nmusic\r\nmusical\r\nmusicale\r\nmusicality\r\nmusically\r\nmusicals\r\nmusician\r\nmusicians\r\nmusicianship\r\nmusicological\r\nmusicologist\r\nmusicologists\r\nmusicology\r\nmusing\r\nmusingly\r\nmusings\r\nmusk\r\nmuskeg\r\nmuskellunge\r\nmusket\r\nmusketeer\r\nmusketry\r\nmuskets\r\nmusket's\r\nmuskier\r\nmuskiness\r\nmuskmelon\r\nmuskrat\r\nmuskrats\r\nmuskrat's\r\nmusky\r\nmuslin\r\nmuss\r\nmussed\r\nmussel\r\nmussels\r\nmussel's\r\nmusses\r\nmussing\r\nmust\r\nmustachio\r\nmustachios\r\nmustang\r\nmustangs\r\nmustard\r\nmustards\r\nmuster\r\nmustered\r\nmustering\r\nmusters\r\nmustier\r\nmustiness\r\nmustn't\r\nmusts\r\nmust've\r\nmusty\r\nmutability\r\nmutable\r\nmutably\r\nmutant\r\nmutants\r\nmutate\r\nmutated\r\nmutates\r\nmutating\r\nmutation\r\nmutational\r\nmutations\r\nmutative\r\nmute\r\nmuted\r\nmutedly\r\nmutely\r\nmuteness\r\nmuter\r\nmutes\r\nmutest\r\nmutilate\r\nmutilated\r\nmutilates\r\nmutilating\r\nmutilation\r\nmutilations\r\nmutilator\r\nmutineer\r\nmuting\r\nmutinies\r\nmutinous\r\nmutinously\r\nmutiny\r\nmutiny's\r\nmutt\r\nmutter\r\nmuttered\r\nmutterer\r\nmutterers\r\nmuttering\r\nmutters\r\nmutton\r\nmuttonhead\r\nmutual\r\nmutualisation\r\nmutualisation's\r\nmutualism\r\nmutuality\r\nmutually\r\nmuumuu\r\nmuzzier\r\nmuzzle\r\nmuzzled\r\nmuzzles\r\nmuzzle's\r\nmuzzling\r\nmuzzy\r\nmy\r\nmyalgia\r\nmyasthenia\r\nmycelium\r\nmycin\r\nmycology\r\nmycosis\r\nmyelin\r\nmyeloid\r\nmylar\r\nmylonite\r\nmynah\r\nmyocardial\r\nmyocardium\r\nmyofibril\r\nmyopia\r\nmyopic\r\nmyopically\r\nmyosin\r\nmyriad\r\nmyrrh\r\nmyrtle\r\nmyself\r\nmysteries\r\nmysterious\r\nmysteriously\r\nmysteriousness\r\nmystery\r\nmystery's\r\nmystic\r\nmystical\r\nmystically\r\nmysticism\r\nmysticisms\r\nmystics\r\nmystic's\r\nmystification\r\nmystified\r\nmystifies\r\nmystify\r\nmystifying\r\nmystifyingly\r\nmystique\r\nmyth\r\nmythic\r\nmythical\r\nmythically\r\nmythmaker\r\nmythmaking\r\nmythological\r\nmythologies\r\nmythologist\r\nmythology\r\nmythology's\r\nmyths\r\nmyth's\r\nmzungu\r\nn's\r\nnab\r\nnabbed\r\nnabbing\r\nnabob\r\nnacelle\r\nnacre\r\nnacreous\r\nnadir\r\nnag\r\nnagged\r\nnagger\r\nnagging\r\nnags\r\nnag's\r\nnaiad\r\nnail\r\nnailbrush\r\nnailed\r\nnailing\r\nnails\r\nnaive\r\nnaively\r\nnaivety\r\nnaked\r\nnakedly\r\nnakedness\r\nname\r\nnameable\r\nnamed\r\nnameless\r\nnamelessly\r\nnamelessness\r\nnamely\r\nnameplate\r\nnameplates\r\nnames\r\nname's\r\nnamesake\r\nnamesakes\r\nnamesake's\r\nnametape\r\nnaming\r\nnankeen\r\nnannies\r\nnanny\r\nnanogramme\r\nnanogrammes\r\nnanometre\r\nnanometres\r\nnanometric\r\nnanoplankton\r\nnanosecond\r\nnanoseconds\r\nnap\r\nnapalm\r\nnape\r\nnapery\r\nnapes\r\nnaphtha\r\nnaphthalene\r\nnapkin\r\nnapkins\r\nnapkin's\r\nnapped\r\nnappies\r\nnapping\r\nnappy\r\nnaps\r\nnap's\r\nnarcissi\r\nnarcissism\r\nnarcissist\r\nnarcissistic\r\nnarcissus\r\nnarcissuses\r\nnarcolepsy\r\nnarcoleptic\r\nnarcosis\r\nnarcotic\r\nnarcotics\r\nnarcotise\r\nnarcotised\r\nnarcotises\r\nnarcotising\r\nnark\r\nnarrate\r\nnarrated\r\nnarrates\r\nnarrating\r\nnarration\r\nnarrations\r\nnarrative\r\nnarratives\r\nnarrative's\r\nnarrator\r\nnarrators\r\nnarrow\r\nnarrowed\r\nnarrower\r\nnarrowest\r\nnarrowing\r\nnarrowly\r\nnarrowness\r\nnarrows\r\nnarthex\r\nnarwhal\r\nnarwhals\r\nnarwhal's\r\nnary\r\nnasal\r\nnasality\r\nnasally\r\nnascence\r\nnascent\r\nnastier\r\nnastiest\r\nnastily\r\nnastiness\r\nnasturtium\r\nnasty\r\nnatal\r\nnatatorium\r\nnation\r\nnational\r\nnationalisation\r\nnationalisations\r\nnationalisation's\r\nnationalise\r\nnationalised\r\nnationalises\r\nnationalising\r\nnationalism\r\nnationalisms\r\nnationalist\r\nnationalistic\r\nnationalistically\r\nnationalists\r\nnationalist's\r\nnationalities\r\nnationality\r\nnationality's\r\nnationally\r\nnationals\r\nnationhood\r\nnations\r\nnation's\r\nnationwide\r\nnative\r\nnatively\r\nnatives\r\nnativity\r\nnatter\r\nnatterjack\r\nnattier\r\nnattily\r\nnattiness\r\nnatty\r\nnatural\r\nnaturalisation\r\nnaturalisations\r\nnaturalisation's\r\nnaturalise\r\nnaturalised\r\nnaturalises\r\nnaturalising\r\nnaturalism\r\nnaturalist\r\nnaturalistic\r\nnaturalistically\r\nnaturally\r\nnaturalness\r\nnaturals\r\nnature\r\nnatured\r\nnatures\r\nnature's\r\nnaturism\r\nnaturopath\r\nnaturopathy\r\nnaught\r\nnaughtier\r\nnaughtily\r\nnaughtiness\r\nnaughty\r\nnausea\r\nnauseas\r\nnauseate\r\nnauseated\r\nnauseates\r\nnauseating\r\nnauseatingly\r\nnauseous\r\nnauseously\r\nnautical\r\nnautically\r\nnautilus\r\nnaval\r\nnave\r\nnavel\r\nnavels\r\nnaves\r\nnavies\r\nnavigability\r\nnavigable\r\nnavigate\r\nnavigated\r\nnavigates\r\nnavigating\r\nnavigation\r\nnavigational\r\nnavigationally\r\nnavigations\r\nnavigator\r\nnavigators\r\nnavigator's\r\nnavvy\r\nnavy\r\nnavy's\r\nnay\r\nneap\r\nnear\r\nnearby\r\nneared\r\nnearer\r\nnearest\r\nnearing\r\nnearly\r\nnearness\r\nnears\r\nnearside\r\nnearsighted\r\nnearsightedly\r\nnearsightedness\r\nneat\r\nneaten\r\nneater\r\nneatest\r\nneatly\r\nneatness\r\nnebbish\r\nnebula\r\nnebulae\r\nnebular\r\nnebulosity\r\nnebulous\r\nnebulously\r\nnebulousness\r\nnecessaries\r\nnecessarily\r\nnecessary\r\nnecessitate\r\nnecessitated\r\nnecessitates\r\nnecessitating\r\nnecessitation\r\nnecessities\r\nnecessitous\r\nnecessitousness\r\nnecessity\r\nneck\r\nneckband\r\nnecked\r\nneckerchief\r\nnecking\r\nnecklace\r\nnecklaces\r\nnecklace's\r\nneckline\r\nneckpiece\r\nnecks\r\nnecktie\r\nneckties\r\nnecktie's\r\nneckwear\r\nnecrology\r\nnecromancer\r\nnecromancers\r\nnecromancy\r\nnecromantic\r\nnecrophilia\r\nnecrophobia\r\nnecropolis\r\nnecropsy\r\nnecroses\r\nnecrosis\r\nnecrotic\r\nnectar\r\nnectarine\r\nnee\r\nneed\r\nneeded\r\nneedful\r\nneedfulness\r\nneedier\r\nneediness\r\nneeding\r\nneedle\r\nneedlecord\r\nneedlecraft\r\nneedled\r\nneedlefish\r\nneedlepoint\r\nneedles\r\nneedless\r\nneedlessly\r\nneedlessness\r\nneedlewoman\r\nneedlewomen\r\nneedlework\r\nneedling\r\nneedn't\r\nneeds\r\nneedy\r\nnefarious\r\nnefariously\r\nnefariousness\r\nnegate\r\nnegated\r\nnegates\r\nnegating\r\nnegation\r\nnegations\r\nnegative\r\nnegatively\r\nnegatives\r\nnegativism\r\nnegativisms\r\nnegativist\r\nnegativistic\r\nnegativists\r\nnegativity\r\nnegatron\r\nneglect\r\nneglected\r\nneglecter\r\nneglectful\r\nneglectfully\r\nneglecting\r\nneglects\r\nnegligee\r\nnegligees\r\nnegligence\r\nnegligent\r\nnegligently\r\nnegligibility\r\nnegligible\r\nnegligibly\r\nnegotiability\r\nnegotiable\r\nnegotiate\r\nnegotiated\r\nnegotiates\r\nnegotiating\r\nnegotiation\r\nnegotiations\r\nnegotiator\r\nnegotiators\r\nnegritude\r\nneigh\r\nneighbour\r\nneighboured\r\nneighbourhood\r\nneighbourhoods\r\nneighbourhood's\r\nneighbouring\r\nneighbourliness\r\nneighbourly\r\nneighbours\r\nneighbour's\r\nneither\r\nnekton\r\nnelson\r\nnematocyst\r\nnematode\r\nnematodes\r\nnemeses\r\nnemesis\r\nneo\r\nneoclassic\r\nneoclassical\r\nneoclassicism\r\nneodymium\r\nneolith\r\nneologism\r\nneologisms\r\nneologism's\r\nneology\r\nneomycin\r\nneon\r\nneonatal\r\nneonate\r\nneophyte\r\nneophytes\r\nneoplasm\r\nneoprene\r\nnepenthe\r\nneper\r\nnephew\r\nnephews\r\nnephew's\r\nnephrite\r\nnephritic\r\nnephritis\r\nnepotism\r\nnepotistic\r\nneptunium\r\nnerve\r\nnerved\r\nnerveless\r\nnerves\r\nnerve's\r\nnervier\r\nnerviness\r\nnerving\r\nnervous\r\nnervously\r\nnervousness\r\nnervure\r\nnervy\r\nnest\r\nnested\r\nnester\r\nnesting\r\nnestle\r\nnestled\r\nnestles\r\nnestling\r\nnests\r\nnet\r\nnetball\r\nnether\r\nnethermost\r\nnetherworld\r\nnetkeeper\r\nnetlike\r\nnets\r\nnet's\r\nnetsuke\r\nnett\r\nnetted\r\nnetter\r\nnetting\r\nnettle\r\nnettled\r\nnettles\r\nnettlesome\r\nnettling\r\nnetwork\r\nnetworked\r\nnetworking\r\nnetworks\r\nnetwork's\r\nneural\r\nneuralgia\r\nneuralgic\r\nneurasthenia\r\nneurasthenic\r\nneuritis\r\nneuro\r\nneurobiology\r\nneurobiology's\r\nneurochemistry\r\nneurological\r\nneurologically\r\nneurologist\r\nneurologists\r\nneurology\r\nneuromuscular\r\nneuron\r\nneuronal\r\nneurons\r\nneuron's\r\nneuropath\r\nneuropathology\r\nneuropathy\r\nneurophysiology\r\nneuropsychiatric\r\nneuropsychiatry\r\nneuropteran\r\nneuroses\r\nneurosis\r\nneurosurgeon\r\nneurosurgery\r\nneurotic\r\nneurotically\r\nneuroticism\r\nneurotoxin\r\nneurotransmitter\r\nneurotransmitters\r\nneuter\r\nneutered\r\nneutering\r\nneuters\r\nneutral\r\nneutralisation\r\nneutralisations\r\nneutralisation's\r\nneutralise\r\nneutralised\r\nneutraliser\r\nneutralisers\r\nneutralises\r\nneutralising\r\nneutralism\r\nneutralist\r\nneutralists\r\nneutralities\r\nneutrality\r\nneutrally\r\nneutrals\r\nneutrino\r\nneutrinos\r\nneutrino's\r\nneutron\r\nneutrons\r\nnever\r\nnevermore\r\nnevertheless\r\nnevus\r\nnew\r\nnewborn\r\nnewborns\r\nnewcomer\r\nnewcomers\r\nnewcomer's\r\nnewel\r\nnewer\r\nnewest\r\nnewfangled\r\nnewfound\r\nnewly\r\nnewlywed\r\nnewlyweds\r\nnewness\r\nnews\r\nnewsagent\r\nnewsagents\r\nnewsboy\r\nnewsboys\r\nnewsbreak\r\nnewscast\r\nnewscaster\r\nnewscasters\r\nnewscasts\r\nnewsgroup\r\nnewsgroups\r\nnewsgroup's\r\nnewsier\r\nnewsletter\r\nnewsletters\r\nnewsletter's\r\nnewsmagazine\r\nnewsman\r\nnewsmen\r\nnewsmonger\r\nnewspaper\r\nnewspaperman\r\nnewspapermen\r\nnewspapers\r\nnewspaper's\r\nnewspeak\r\nnewsprint\r\nnewsreel\r\nnewsroom\r\nnewsstand\r\nnewswire\r\nnewsworthiness\r\nnewsworthy\r\nnewsy\r\nnewt\r\nnewts\r\nnext\r\nnexus\r\nnexuses\r\nniacin\r\nnib\r\nnibble\r\nnibbled\r\nnibbler\r\nnibblers\r\nnibbles\r\nnibbling\r\nnibs\r\nnice\r\nnicely\r\nniceness\r\nnicer\r\nnicest\r\nniceties\r\nnicety\r\nniche\r\nniches\r\nnick\r\nnicked\r\nnickel\r\nnickelodeon\r\nnickels\r\nnickel's\r\nnickered\r\nnickering\r\nnicking\r\nnickname\r\nnicknamed\r\nnicknames\r\nnicks\r\nnicotine\r\nnicotinic\r\nnictitate\r\nnictitating\r\nniece\r\nnieces\r\nniece's\r\nniff\r\nniftier\r\nnifty\r\nniggard\r\nniggardliness\r\nniggardly\r\nnigger\r\nniggled\r\nniggles\r\nniggling\r\nnigh\r\nnight\r\nnightcap\r\nnightclothes\r\nnightclub\r\nnightclubs\r\nnightdress\r\nnightfall\r\nnightglow\r\nnightgown\r\nnighthawk\r\nnightie\r\nnightingale\r\nnightingales\r\nnightingale's\r\nnightlife\r\nnightlong\r\nnightly\r\nnightmare\r\nnightmares\r\nnightmare's\r\nnightmarish\r\nnightmarishly\r\nnightrider\r\nnights\r\nnight's\r\nnightshade\r\nnightshirt\r\nnightspot\r\nnightstand\r\nnightstick\r\nnightwalker\r\nnightwear\r\nnihilism\r\nnihilisms\r\nnihilist\r\nnihilistic\r\nnihilistically\r\nnil\r\nnilpotent\r\nnimble\r\nnimbleness\r\nnimbler\r\nnimblest\r\nnimbly\r\nnimbostratus\r\nnimbus\r\nnimbuses\r\nnimiety\r\nnincompoop\r\nnine\r\nninebark\r\nninepin\r\nninepins\r\nnines\r\nnineteen\r\nnineteenth\r\nnineties\r\nninetieth\r\nninety\r\nninnies\r\nninny\r\nninth\r\nniobium\r\nnip\r\nnipped\r\nnipper\r\nnippers\r\nnippier\r\nnippiness\r\nnipping\r\nnipple\r\nnipples\r\nnippy\r\nnips\r\nnirvana\r\nnisei\r\nnisus\r\nnit\r\nnitpick\r\nnitrate\r\nnitrated\r\nnitrates\r\nnitrating\r\nnitration\r\nnitre\r\nnitric\r\nnitride\r\nnitrification\r\nnitrifications\r\nnitrify\r\nnitrite\r\nnitro\r\nnitrobacteria\r\nnitrobenzene\r\nnitrocellulose\r\nnitrogen\r\nnitrogenous\r\nnitrous\r\nnitwit\r\nnix\r\nnixed\r\nnixes\r\nnixing\r\nnm\r\nno\r\nnobble\r\nnobelium\r\nnobilities\r\nnobility\r\nnoble\r\nnobleman\r\nnoblemen\r\nnobleness\r\nnobler\r\nnobles\r\nnoblesse\r\nnoblest\r\nnoblewoman\r\nnobly\r\nnobodies\r\nnobody\r\nnobody's\r\nnock\r\nnocturnal\r\nnocturnally\r\nnocturne\r\nnocuous\r\nnod\r\nnodal\r\nnodded\r\nnodding\r\nnode\r\nnodes\r\nnode's\r\nnods\r\nnod's\r\nnodular\r\nnodulation\r\nnodule\r\nnodules\r\nnoggin\r\nnoise\r\nnoised\r\nnoiseless\r\nnoiselessly\r\nnoisemaker\r\nnoisemakers\r\nnoisemaking\r\nnoises\r\nnoisier\r\nnoisily\r\nnoisiness\r\nnoising\r\nnoisome\r\nnoisy\r\nnomad\r\nnomadic\r\nnomads\r\nnomenclature\r\nnomenclatures\r\nnominal\r\nnominalise\r\nnominally\r\nnominate\r\nnominated\r\nnominates\r\nnominating\r\nnomination\r\nnominations\r\nnomination's\r\nnominative\r\nnominator\r\nnominators\r\nnominee\r\nnominees\r\nnon\r\nnonadjacent\r\nnonagenarian\r\nnonagon\r\nnonblank\r\nnonce\r\nnonchalance\r\nnonchalant\r\nnonchalantly\r\nnoncommittal\r\nnoncommittally\r\nnonconforming\r\nnonconformist\r\nnonconformists\r\nnonconformity\r\nnondescript\r\nnondescriptly\r\nnondirective\r\nnondisclosure\r\nnondisclosures\r\nnone\r\nnonempty\r\nnonentities\r\nnonentity\r\nnonessential\r\nnonesuch\r\nnonetheless\r\nnonexistent\r\nnonfeasance\r\nnonferrous\r\nnongovernmental\r\nnonhuman\r\nnonillion\r\nnonintersecting\r\nnoninvertible\r\nnonlinearly\r\nnonnegative\r\nnonnumeric\r\nnono\r\nnonparallel\r\nnonparametric\r\nnonpareil\r\nnonplus\r\nnonporous\r\nnonprinting\r\nnonprocedural\r\nnonprogrammer\r\nnonreligious\r\nnonsense\r\nnonsensical\r\nnonsensically\r\nnonsensicalness\r\nnonsuch\r\nnontrivial\r\nnonuser\r\nnonverbal\r\nnonverbally\r\nnonviable\r\nnonvoting\r\nnonzero\r\nnoodle\r\nnoodles\r\nnook\r\nnooks\r\nnook's\r\nnoon\r\nnoonday\r\nnoontide\r\nnoontime\r\nnoose\r\nnooses\r\nnoosing\r\nnope\r\nnor\r\nnorm\r\nnormal\r\nnormalcy\r\nnormalisation\r\nnormalisations\r\nnormalisation's\r\nnormalise\r\nnormalised\r\nnormalises\r\nnormalising\r\nnormality\r\nnormally\r\nnormative\r\nnormatively\r\nnorms\r\nnorm's\r\nnorth\r\nnorthbound\r\nnortheast\r\nnortheaster\r\nnortherly\r\nnorthern\r\nnortherner\r\nnortherners\r\nnorthernmost\r\nnorthing\r\nnorthland\r\nnorth's\r\nnorthward\r\nnorthwards\r\nnorthwest\r\nnorthwester\r\nnose\r\nnosebag\r\nnosebags\r\nnosebag's\r\nnoseband\r\nnosebleed\r\nnosebleeds\r\nnosebleed's\r\nnosed\r\nnosegay\r\nnosepiece\r\nnoses\r\nnosey\r\nnosh\r\nnosier\r\nnosily\r\nnosiness\r\nnosing\r\nnostalgia\r\nnostalgic\r\nnostalgically\r\nnostril\r\nnostrils\r\nnostril's\r\nnostrum\r\nnosy\r\nnot\r\nnotability\r\nnotable\r\nnotables\r\nnotably\r\nnotarisation\r\nnotarisations\r\nnotarise\r\nnotarised\r\nnotarises\r\nnotarising\r\nnotary\r\nnotate\r\nnotated\r\nnotates\r\nnotating\r\nnotation\r\nnotational\r\nnotations\r\nnotation's\r\nnotch\r\nnotched\r\nnotches\r\nnotching\r\nnote\r\nnotebook\r\nnotebooks\r\nnotebook's\r\nnotecase\r\nnoted\r\nnotelet\r\nnotepaper\r\nnotes\r\nnoteworthiness\r\nnoteworthy\r\nnothing\r\nnothingness\r\nnothings\r\nnotice\r\nnoticeable\r\nnoticeably\r\nnoticed\r\nnotices\r\nnoticing\r\nnotifiable\r\nnotification\r\nnotifications\r\nnotified\r\nnotifies\r\nnotify\r\nnotifying\r\nnoting\r\nnotion\r\nnotional\r\nnotionally\r\nnotions\r\nnotochord\r\nnotoriety\r\nnotorious\r\nnotoriously\r\nnotoriousness\r\nnotwithstanding\r\nnougat\r\nnought\r\nnoughts\r\nnoun\r\nnouns\r\nnoun's\r\nnourish\r\nnourished\r\nnourishes\r\nnourishing\r\nnourishment\r\nnouveau\r\nnouvelle\r\nnova\r\nnovae\r\nnovas\r\nnova's\r\nnovel\r\nnovelette\r\nnovelise\r\nnovelised\r\nnovelises\r\nnovelising\r\nnovelist\r\nnovelistic\r\nnovelists\r\nnovelist's\r\nnovella\r\nnovels\r\nnovel's\r\nnovelties\r\nnovelty\r\nnovelty's\r\nnovena\r\nnovice\r\nnovices\r\nnovice's\r\nnovitiate\r\nnovitiates\r\nnovocaine\r\nnow\r\nnowadays\r\nnowhere\r\nnowhither\r\nnowise\r\nnowt\r\nnoxious\r\nnoxiously\r\nnoxiousness\r\nnozzle\r\nnozzles\r\nnth\r\nnuance\r\nnuances\r\nnub\r\nnubbin\r\nnubile\r\nnuclear\r\nnuclease\r\nnucleate\r\nnucleated\r\nnucleation\r\nnuclei\r\nnucleic\r\nnucleoli\r\nnucleolus\r\nnucleon\r\nnucleonic\r\nnucleons\r\nnucleon's\r\nnucleoprotein\r\nnucleoside\r\nnucleotide\r\nnucleotides\r\nnucleotide's\r\nnucleus\r\nnucleuses\r\nnuclide\r\nnude\r\nnudeness\r\nnudes\r\nnudge\r\nnudged\r\nnudges\r\nnudging\r\nnudism\r\nnudist\r\nnudists\r\nnudity\r\nnugatory\r\nnugget\r\nnuggets\r\nnuisance\r\nnuisances\r\nnuisance's\r\nnuke\r\nnull\r\nnulled\r\nnullification\r\nnullified\r\nnullifier\r\nnullifiers\r\nnullifies\r\nnullify\r\nnullifying\r\nnullity\r\nnulls\r\nnumb\r\nnumbed\r\nnumber\r\nnumbered\r\nnumbering\r\nnumberless\r\nnumbers\r\nnumbing\r\nnumbingly\r\nnumbly\r\nnumbness\r\nnumbs\r\nnumbskull\r\nnumerable\r\nnumeral\r\nnumerals\r\nnumeral's\r\nnumerate\r\nnumerated\r\nnumerates\r\nnumerating\r\nnumeration\r\nnumerations\r\nnumerator\r\nnumerators\r\nnumerator's\r\nnumeric\r\nnumerical\r\nnumerically\r\nnumerological\r\nnumerology\r\nnumerous\r\nnumerously\r\nnumerousness\r\nnuminous\r\nnumismatic\r\nnumismatics\r\nnumismatist\r\nnummular\r\nnumskull\r\nnun\r\nnuncio\r\nnuncupative\r\nnunnery\r\nnuns\r\nnun's\r\nnuptial\r\nnuptials\r\nnurse\r\nnursed\r\nnursemaid\r\nnurseries\r\nnursery\r\nnurseryman\r\nnursery's\r\nnurses\r\nnurse's\r\nnursing\r\nnursling\r\nnurture\r\nnurtured\r\nnurturer\r\nnurtures\r\nnurturing\r\nnut\r\nnutcase\r\nnutcracker\r\nnutgall\r\nnuthatch\r\nnuthouse\r\nnutlet\r\nnutlike\r\nnutmeg\r\nnutria\r\nnutrient\r\nnutrients\r\nnutriment\r\nnutrition\r\nnutritional\r\nnutritionally\r\nnutritionist\r\nnutritionists\r\nnutrition's\r\nnutritious\r\nnutritiously\r\nnutritive\r\nnuts\r\nnut's\r\nnutshell\r\nnutter\r\nnuttier\r\nnuttiness\r\nnutty\r\nnuzzle\r\nnuzzled\r\nnuzzles\r\nnuzzling\r\nnylon\r\nnylons\r\nnymph\r\nnymphet\r\nnympho\r\nnymphomania\r\nnymphomaniac\r\nnymphomaniacs\r\nnymphs\r\no'clock\r\no'er\r\no's\r\noaf\r\noafish\r\noafishly\r\noafishness\r\noafs\r\noak\r\noaken\r\noaks\r\noakum\r\noar\r\noared\r\noarfish\r\noaring\r\noarlock\r\noars\r\noar's\r\noarsman\r\noases\r\noasis\r\noast\r\noat\r\noatcake\r\noatcakes\r\noatcake's\r\noaten\r\noath\r\noaths\r\noatmeal\r\noats\r\nobduracy\r\nobdurate\r\nobdurately\r\nobedience\r\nobedient\r\nobediently\r\nobeisance\r\nobeisant\r\nobelisk\r\nobese\r\nobesity\r\nobey\r\nobeyed\r\nobeying\r\nobeys\r\nobfuscate\r\nobfuscated\r\nobfuscates\r\nobfuscating\r\nobfuscation\r\nobfuscations\r\nobi\r\nobit\r\nobiter\r\nobituaries\r\nobituary\r\nobject\r\nobjected\r\nobjectification\r\nobjectifications\r\nobjectified\r\nobjectifies\r\nobjectify\r\nobjectifying\r\nobjecting\r\nobjection\r\nobjectionable\r\nobjectionably\r\nobjections\r\nobjection's\r\nobjective\r\nobjectively\r\nobjectiveness\r\nobjectives\r\nobjectivism\r\nobjectivist\r\nobjectivistic\r\nobjectivity\r\nobjectless\r\nobjector\r\nobjectors\r\nobjector's\r\nobjects\r\nobject's\r\nobjurgate\r\nobjurgated\r\nobjurgates\r\nobjurgating\r\noblast\r\noblate\r\noblation\r\noblations\r\nobligate\r\nobligated\r\nobligates\r\nobligating\r\nobligation\r\nobligations\r\nobligation's\r\nobligator\r\nobligatorily\r\nobligatory\r\noblige\r\nobliged\r\nobliges\r\nobliging\r\nobligingly\r\nobligor\r\nobligors\r\noblique\r\nobliquely\r\nobliqueness\r\nobliquity\r\nobliterate\r\nobliterated\r\nobliterates\r\nobliterating\r\nobliteration\r\nobliterations\r\nobliterator\r\noblivion\r\noblivions\r\noblivious\r\nobliviously\r\nobliviousness\r\noblong\r\nobloquy\r\nobnoxious\r\nobnoxiously\r\nobnoxiousness\r\noboe\r\noboes\r\noboist\r\nobscene\r\nobscenely\r\nobscenities\r\nobscenity\r\nobscurant\r\nobscurantism\r\nobscurantist\r\nobscuration\r\nobscure\r\nobscured\r\nobscurely\r\nobscurer\r\nobscures\r\nobscuring\r\nobscurities\r\nobscurity\r\nobsequies\r\nobsequious\r\nobsequiously\r\nobsequiousness\r\nobsequy\r\nobservable\r\nobservably\r\nobservance\r\nobservances\r\nobservance's\r\nobservant\r\nobservantly\r\nobservation\r\nobservational\r\nobservationally\r\nobservations\r\nobservation's\r\nobservatories\r\nobservatory\r\nobserve\r\nobserved\r\nobserver\r\nobservers\r\nobserves\r\nobserving\r\nobsess\r\nobsessed\r\nobsesses\r\nobsession\r\nobsessions\r\nobsession's\r\nobsessive\r\nobsessively\r\nobsidian\r\nobsolesce\r\nobsolescence\r\nobsolescent\r\nobsolete\r\nobsoleteness\r\nobsoletes\r\nobstacle\r\nobstacles\r\nobstacle's\r\nobstetric\r\nobstetrical\r\nobstetrically\r\nobstetrician\r\nobstetricians\r\nobstetrician's\r\nobstetrics\r\nobstinacy\r\nobstinate\r\nobstinately\r\nobstreperous\r\nobstreperously\r\nobstreperousness\r\nobstruct\r\nobstructed\r\nobstructer\r\nobstructing\r\nobstruction\r\nobstructionism\r\nobstructionist\r\nobstructions\r\nobstruction's\r\nobstructive\r\nobstructively\r\nobstructs\r\nobtain\r\nobtainable\r\nobtained\r\nobtaining\r\nobtainment\r\nobtains\r\nobtrude\r\nobtruded\r\nobtrudes\r\nobtruding\r\nobtrusion\r\nobtrusive\r\nobtrusively\r\nobtrusiveness\r\nobtund\r\nobtuse\r\nobtusely\r\nobtuseness\r\nobverse\r\nobvert\r\nobviate\r\nobviated\r\nobviates\r\nobviating\r\nobviation\r\nobviations\r\nobvious\r\nobviously\r\nobviousness\r\nocarina\r\noccasion\r\noccasional\r\noccasionally\r\noccasioned\r\noccasioning\r\noccasions\r\noccident\r\noccidental\r\noccipital\r\nocclude\r\noccluded\r\noccludes\r\noccluding\r\nocclusion\r\nocclusions\r\nocclusion's\r\nocclusive\r\noccult\r\noccultation\r\noccultism\r\noccultist\r\noccupancies\r\noccupancy\r\noccupant\r\noccupants\r\noccupant's\r\noccupation\r\noccupational\r\noccupationally\r\noccupations\r\noccupation's\r\noccupied\r\noccupier\r\noccupiers\r\noccupies\r\noccupy\r\noccupying\r\noccur\r\noccurred\r\noccurrence\r\noccurrences\r\noccurrence's\r\noccurring\r\noccurs\r\nocean\r\noceanfront\r\noceanic\r\noceanographer\r\noceanographers\r\noceanographer's\r\noceanographic\r\noceanographically\r\noceanography\r\noceans\r\nocean's\r\nocelot\r\nochre\r\nochre's\r\nocotillo\r\noctagon\r\noctagonal\r\noctagons\r\noctahedral\r\noctahedron\r\noctal\r\noctane\r\noctant\r\noctants\r\noctant's\r\noctave\r\noctaves\r\noctavo\r\noctet\r\noctillion\r\noctogenarian\r\noctopus\r\noctoroon\r\nocular\r\noculist\r\nodalisque\r\nodd\r\noddball\r\noddballs\r\noddball's\r\nodder\r\noddest\r\noddities\r\noddity\r\noddity's\r\noddly\r\noddment\r\noddness\r\nodds\r\node\r\nodes\r\node's\r\nodious\r\nodiously\r\nodiousness\r\nodium\r\nodometer\r\nodometers\r\nodometer's\r\nodorant\r\nodoriferous\r\nodorise\r\nodorised\r\nodorises\r\nodorising\r\nodorous\r\nodorously\r\nodour\r\nodourless\r\nodours\r\nodour's\r\nodyssey\r\noedema\r\noedemas\r\noedema's\r\noedematous\r\noedipal\r\noesophagus\r\noestrogen\r\noestrous\r\noestrus\r\noeuvre\r\noeuvres\r\nof\r\noff\r\noffal\r\noffbeat\r\noffence\r\noffences\r\noffence's\r\noffend\r\noffended\r\noffender\r\noffenders\r\noffending\r\noffends\r\noffensive\r\noffensively\r\noffensiveness\r\noffensives\r\noffer\r\noffered\r\noffering\r\nofferings\r\noffers\r\noffertories\r\noffertory\r\noffhand\r\noffhanded\r\noffhandedly\r\noffhandedness\r\noffice\r\nofficeholder\r\nofficeholders\r\nofficemate\r\nofficemates\r\nofficer\r\nofficered\r\nofficers\r\nofficer's\r\noffices\r\noffice's\r\nofficial\r\nofficialdom\r\nofficially\r\nofficials\r\nofficial's\r\nofficiate\r\nofficiated\r\nofficiates\r\nofficiating\r\nofficinal\r\nofficio\r\nofficious\r\nofficiously\r\nofficiousness\r\noffing\r\noffish\r\noffline\r\noffload\r\noffloaded\r\noffloading\r\noffloads\r\noffprint\r\noffs\r\noffset\r\noffsets\r\noffset's\r\noffsetting\r\noffshoot\r\noffshore\r\noffside\r\noffspring\r\noffstage\r\noft\r\noften\r\noftener\r\noftentimes\r\nogee\r\nogle\r\nogled\r\nogles\r\nogling\r\nogre\r\nogress\r\noh\r\nohm\r\nohmmeter\r\nohmmeters\r\nohmmeter's\r\nohms\r\noho\r\noil\r\noilcan\r\noilcloth\r\noiled\r\noilfield\r\noilier\r\noiliest\r\noiliness\r\noiling\r\noilman\r\noilmen\r\noils\r\noilseed\r\noilseeds\r\noilskin\r\noilstone\r\noily\r\nointment\r\nointments\r\nokapi\r\nokay\r\nokays\r\nokay's\r\nokra\r\nold\r\nolden\r\nolder\r\noldest\r\noldie\r\noldies\r\noldness\r\noldster\r\noldsters\r\noldwife\r\noleaginous\r\noleander\r\noleanders\r\nolefin\r\noleic\r\noleograph\r\noleomargarine\r\noleoresin\r\nolfaction\r\nolfactory\r\noligarch\r\noligarchic\r\noligarchy\r\noligopoly\r\nolio\r\nolive\r\nolives\r\nolive's\r\nolivine\r\nolla\r\nombudsman\r\nombudsman's\r\nombudsperson\r\nomega\r\nomegas\r\nomelette\r\nomen\r\nomens\r\nomen's\r\nomicron\r\nominous\r\nominously\r\nomissible\r\nomission\r\nomissions\r\nomission's\r\nomit\r\nomits\r\nomitted\r\nomitting\r\nomni\r\nomnibus\r\nomnificence\r\nomnificent\r\nomnipotence\r\nomnipotent\r\nomnipresence\r\nomnipresent\r\nomniscience\r\nomniscient\r\nomnisciently\r\nomnivore\r\nomnivorous\r\nomnivorously\r\non\r\nonce\r\noncology\r\noncoming\r\none\r\noneness\r\nonerous\r\nonerously\r\nones\r\none's\r\noneself\r\nonetime\r\nongoing\r\nonion\r\nonions\r\nonionskin\r\nonline\r\nonlooker\r\nonlookers\r\nonly\r\nonomatopoeia\r\nonomatopoeia's\r\nonomatopoeic\r\nonrush\r\nonrushing\r\nonset\r\nonsets\r\nonset's\r\nonshore\r\nonside\r\nonslaught\r\nonslaughts\r\nonstage\r\nonto\r\nontogenesis\r\nontogenetic\r\nontogenetically\r\nontogeny\r\nontological\r\nontologically\r\nontology\r\nonus\r\nonward\r\nonwards\r\nonyx\r\noodles\r\nooh\r\noolong\r\noomph\r\noops\r\nooze\r\noozed\r\noozes\r\noozier\r\noozing\r\noozy\r\nop\r\nopacities\r\nopacity\r\nopal\r\nopalescence\r\nopalescent\r\nopals\r\nopal's\r\nopaque\r\nopaquely\r\nopaqueness\r\nopcode\r\nopen\r\nopencast\r\nopened\r\nopener\r\nopeners\r\nopenhandedly\r\nopenhearted\r\nopenheartedly\r\nopenheartedness\r\nopening\r\nopenings\r\nopening's\r\nopenly\r\nopenness\r\nopens\r\nopenwork\r\nopera\r\noperability\r\noperable\r\noperand\r\noperandi\r\noperands\r\noperand's\r\noperant\r\noperas\r\nopera's\r\noperate\r\noperated\r\noperates\r\noperatic\r\noperatically\r\noperating\r\noperation\r\noperational\r\noperationally\r\noperations\r\noperative\r\noperatively\r\noperatives\r\noperator\r\noperators\r\noperator's\r\noperculum\r\noperetta\r\nophidian\r\nophthalmic\r\nophthalmologic\r\nophthalmologist\r\nophthalmology\r\nophthalmoscope\r\nopiate\r\nopiates\r\nopine\r\nopined\r\nopines\r\nopining\r\nopinion\r\nopinionated\r\nopinionatedly\r\nopinionative\r\nopinions\r\nopinion's\r\nopium\r\nopossum\r\nopponent\r\nopponents\r\nopponent's\r\nopportune\r\nopportunely\r\nopportunism\r\nopportunist\r\nopportunistic\r\nopportunistically\r\nopportunities\r\nopportunity\r\nopportunity's\r\nopposability\r\nopposable\r\noppose\r\nopposed\r\nopposes\r\nopposing\r\nopposite\r\noppositely\r\noppositeness\r\nopposites\r\nopposition\r\noppositional\r\noppositions\r\noppress\r\noppressed\r\noppresses\r\noppressing\r\noppression\r\noppressive\r\noppressively\r\noppressiveness\r\noppressor\r\noppressors\r\noppressor's\r\nopprobrious\r\nopprobrium\r\noppugn\r\noppugner\r\nops\r\nopt\r\nopted\r\noptic\r\noptical\r\noptically\r\noptician\r\nopticians\r\noptics\r\noptima\r\noptimal\r\noptimality\r\noptimally\r\noptimisation\r\noptimisations\r\noptimisation's\r\noptimise\r\noptimised\r\noptimiser\r\noptimisers\r\noptimiser's\r\noptimises\r\noptimising\r\noptimism\r\noptimist\r\noptimistic\r\noptimistically\r\noptimists\r\noptimum\r\nopting\r\noption\r\noptional\r\noptionally\r\noptions\r\noption's\r\noptometric\r\noptometrist\r\noptometrists\r\noptometry\r\nopts\r\nopulence\r\nopulent\r\nopulently\r\nopus\r\nopuses\r\nor\r\noracle\r\noracles\r\noracle's\r\noracular\r\noral\r\norally\r\norals\r\norange\r\norangeade\r\norangeroot\r\norangery\r\noranges\r\norange's\r\norangewood\r\norangey\r\norate\r\norated\r\norates\r\norating\r\noration\r\norations\r\noration's\r\norator\r\noratorical\r\noratories\r\noratorio\r\noratorios\r\norators\r\norator's\r\noratory\r\noratory's\r\norb\r\norbicular\r\norbit\r\norbital\r\norbited\r\norbiter\r\norbiting\r\norbits\r\norca\r\norchard\r\norchards\r\norchard's\r\norchestra\r\norchestral\r\norchestras\r\norchestra's\r\norchestrate\r\norchestrated\r\norchestrates\r\norchestrating\r\norchestration\r\norchestrations\r\norchid\r\norchidaceous\r\norchids\r\norchid's\r\nordain\r\nordained\r\nordaining\r\nordainment\r\nordains\r\nordeal\r\nordeals\r\norder\r\nordered\r\nordering\r\norderings\r\norderlies\r\norderliness\r\norderly\r\norders\r\nordinal\r\nordinance\r\nordinances\r\nordinance's\r\nordinand\r\nordinaries\r\nordinarily\r\nordinariness\r\nordinary\r\nordinate\r\nordinates\r\nordination\r\nordinations\r\nordnance\r\nordnances\r\nordure\r\nore\r\noregano\r\nores\r\nore's\r\norgan\r\norgandie\r\norganelle\r\norganic\r\norganically\r\norganics\r\norganism\r\norganisms\r\norganism's\r\norganist\r\norganists\r\norganist's\r\norganization\r\norganizational\r\norganizationally\r\norganizations\r\norganization's\r\norganize\r\norganized\r\norganizer\r\norganizers\r\norganizes\r\norganizing\r\norgans\r\norgan's\r\norganza\r\norgasm\r\norgasmic\r\norgasms\r\norgiastic\r\norgies\r\norgy\r\norgy's\r\noriel\r\norient\r\noriental\r\norientate\r\norientated\r\norientates\r\norientating\r\norientation\r\norientations\r\norientation's\r\noriented\r\norienteering\r\norienting\r\norients\r\norifice\r\norifices\r\norifice's\r\norigami\r\norigin\r\noriginal\r\noriginality\r\noriginally\r\noriginals\r\noriginate\r\noriginated\r\noriginates\r\noriginating\r\norigination\r\noriginations\r\noriginator\r\noriginators\r\noriginator's\r\norigins\r\norigin's\r\noriole\r\norioles\r\norison\r\norlop\r\normolu\r\nornament\r\nornamental\r\nornamentally\r\nornamentation\r\nornamentations\r\nornamented\r\nornamenting\r\nornaments\r\nornate\r\nornately\r\nornery\r\nornithology\r\nornithology's\r\norotund\r\norphan\r\norphanage\r\norphanages\r\norphaned\r\norphaning\r\norphans\r\norpiment\r\norrery\r\nort\r\northicon\r\northo\r\northoclase\r\northodontia\r\northodontic\r\northodontics\r\northodontist\r\northodontists\r\northodox\r\northodoxy\r\northogonal\r\northographic\r\northographical\r\northographically\r\northographies\r\northography\r\northopaedic\r\northopaedics\r\northopaedist\r\northophosphate\r\northophosphates\r\northorhombic\r\norts\r\noscillate\r\noscillated\r\noscillates\r\noscillating\r\noscillation\r\noscillations\r\noscillation's\r\noscillator\r\noscillators\r\noscillator's\r\noscillatory\r\noscilloscope\r\noscilloscopes\r\noscilloscope's\r\noscilloscopic\r\noscine\r\nosculate\r\nosculated\r\nosculates\r\nosculating\r\nosculation\r\nosier\r\nosmium\r\nosmosis\r\nosmotic\r\nosprey\r\nospreys\r\nosseous\r\nossification\r\nossifications\r\nossified\r\nossify\r\nossuary\r\nostensible\r\nostensibly\r\nostensive\r\nostentation\r\nostentations\r\nostentatious\r\nostentatiously\r\nosteopath\r\nosteopathic\r\nosteopaths\r\nosteopathy\r\nosteoporosis\r\nostracise\r\nostracised\r\nostracises\r\nostracising\r\nostracism\r\nostrich\r\nostriches\r\nostrich's\r\nother\r\notherness\r\nothers\r\nother's\r\notherwise\r\notherworldliness\r\notherworldly\r\notiose\r\notolaryngology\r\notology\r\notter\r\notters\r\notter's\r\noubliette\r\nouch\r\nought\r\noughtn't\r\nounce\r\nounces\r\nour\r\nours\r\nourselves\r\noust\r\nousted\r\nouster\r\nousting\r\nout\r\noutage\r\noutages\r\noutage's\r\noutback\r\noutbalance\r\noutbid\r\noutboard\r\noutboards\r\noutbound\r\noutbrave\r\noutbreak\r\noutbreaks\r\noutbreak's\r\noutbreed\r\noutbuilding\r\noutburst\r\noutbursts\r\noutburst's\r\noutcast\r\noutcaste\r\noutcasts\r\noutcast's\r\noutclass\r\noutclassed\r\noutcome\r\noutcomes\r\noutcome's\r\noutcries\r\noutcrop\r\noutcrops\r\noutcross\r\noutcry\r\noutdate\r\noutdated\r\noutdistance\r\noutdistanced\r\noutdistancing\r\noutdo\r\noutdoor\r\noutdoors\r\noutdoorsman\r\noutdoorsy\r\noutdraw\r\noutdrew\r\nouter\r\noutermost\r\noutface\r\noutfall\r\noutfield\r\noutfielder\r\noutfielders\r\noutfight\r\noutfighting\r\noutfit\r\noutfits\r\noutfit's\r\noutfitted\r\noutfitter\r\noutfitting\r\noutflank\r\noutflow\r\noutflows\r\noutfought\r\noutfox\r\noutgas\r\noutgiving\r\noutgo\r\noutgoes\r\noutgoing\r\noutgoingness\r\noutgoings\r\noutgrew\r\noutgrip\r\noutgrow\r\noutgrowing\r\noutgrown\r\noutgrows\r\noutgrowth\r\noutguess\r\noutgun\r\nouthaul\r\nouthouse\r\nouting\r\noutings\r\nouting's\r\noutland\r\noutlander\r\noutlanders\r\noutlandish\r\noutlandishly\r\noutlandishness\r\noutlast\r\noutlasts\r\noutlaw\r\noutlawed\r\noutlawing\r\noutlawry\r\noutlaws\r\noutlay\r\noutlays\r\noutlay's\r\noutlet\r\noutlets\r\noutlet's\r\noutlier\r\noutliers\r\noutline\r\noutlined\r\noutlines\r\noutlining\r\noutlive\r\noutlived\r\noutlives\r\noutliving\r\noutlook\r\noutlying\r\noutman\r\noutmanoeuvre\r\noutmanoeuvred\r\noutmanoeuvres\r\noutmanoeuvring\r\noutmatch\r\noutmatched\r\noutmode\r\noutmoded\r\noutmoding\r\noutmost\r\noutnumber\r\noutnumbered\r\noutnumbering\r\noutnumbers\r\noutpace\r\noutpaced\r\noutpatient\r\noutpatients\r\noutperform\r\noutperformed\r\noutperforming\r\noutperforms\r\noutplay\r\noutplayed\r\noutpoint\r\noutpost\r\noutposts\r\noutpost's\r\noutpour\r\noutpouring\r\noutpourings\r\noutput\r\noutputs\r\noutput's\r\noutputted\r\noutputting\r\noutrace\r\noutrage\r\noutraged\r\noutrageous\r\noutrageously\r\noutrageousness\r\noutrages\r\noutraging\r\noutrange\r\noutrank\r\noutreach\r\noutride\r\noutrider\r\noutrigger\r\noutriggers\r\noutright\r\noutrival\r\noutrun\r\noutruns\r\nouts\r\noutscore\r\noutscoring\r\noutsell\r\noutset\r\noutshine\r\noutshone\r\noutshoot\r\noutside\r\noutsider\r\noutsiders\r\noutsider's\r\noutsight\r\noutsize\r\noutsized\r\noutskirt\r\noutskirts\r\noutsmart\r\noutsmarted\r\noutsmarting\r\noutsmarts\r\noutsoar\r\noutsole\r\noutspend\r\noutspent\r\noutspoken\r\noutspokenly\r\noutspokenness\r\noutspread\r\noutstand\r\noutstanding\r\noutstandingly\r\noutstare\r\noutstation\r\noutstay\r\noutstretch\r\noutstretched\r\noutstrip\r\noutstripped\r\noutstripping\r\noutstrips\r\nouttake\r\nouttalk\r\noutthink\r\noutturn\r\noutvote\r\noutvoted\r\noutvotes\r\noutvoting\r\noutward\r\noutwardly\r\noutwards\r\noutwash\r\noutwear\r\noutweigh\r\noutweighed\r\noutweighing\r\noutweighs\r\noutwit\r\noutwith\r\noutwits\r\noutwitted\r\noutwitting\r\noutwork\r\noutworn\r\nouzel\r\nouzo\r\nova\r\noval\r\novals\r\noval's\r\novarian\r\novaries\r\novary\r\novary's\r\novate\r\novation\r\novations\r\noven\r\novenbird\r\novenbirds\r\novenproof\r\novens\r\noven's\r\novenware\r\nover\r\noverabundance\r\noverabundant\r\noverachieve\r\noverachieved\r\noverachiever\r\noverachieves\r\noverachieving\r\noveract\r\noveractive\r\noverage\r\noveraggressive\r\noverall\r\noveralls\r\noverall's\r\noverarch\r\noverarching\r\noverawe\r\noverbalance\r\noverbear\r\noverbearing\r\noverbearingly\r\noverbid\r\noverbite\r\noverblown\r\noverboard\r\noverbought\r\noverbuild\r\noverburden\r\noverburdened\r\noverburdening\r\noverburdens\r\noverbuy\r\novercall\r\novercalled\r\novercalling\r\novercalls\r\novercame\r\novercapacity\r\novercapitalisation\r\novercapitalisations\r\novercapitalisation's\r\novercapitalise\r\novercapitalised\r\novercapitalises\r\novercapitalising\r\novercast\r\novercautious\r\novercharge\r\novercoat\r\novercoats\r\novercoat's\r\novercome\r\novercomes\r\novercoming\r\novercompensate\r\novercompensation\r\noverconfidence\r\noverconfident\r\noverconfidently\r\novercooked\r\novercooled\r\novercrowd\r\novercrowded\r\novercrowding\r\novercrowds\r\novercurious\r\noverdevelop\r\noverdeveloped\r\noverdo\r\noverdoing\r\noverdone\r\noverdose\r\noverdosed\r\noverdoses\r\noverdose's\r\noverdosing\r\noverdraft\r\noverdrafts\r\noverdraft's\r\noverdraw\r\noverdrawing\r\noverdrawn\r\noverdraws\r\noverdress\r\noverdrew\r\noverdrive\r\noverdriving\r\noverdue\r\novereager\r\novereagerly\r\novereat\r\novereaten\r\novereater\r\novereating\r\novereducated\r\noveremphasis\r\noveremphasise\r\noveremphasised\r\noveremphasises\r\noveremphasising\r\noverestimate\r\noverestimated\r\noverestimates\r\noverestimating\r\noverestimation\r\noverestimations\r\noverexcite\r\noverexcited\r\noverexcitement\r\noverexploitation\r\noverexploited\r\noverexpose\r\noverexposure\r\noverextend\r\noverextended\r\noverextending\r\noverextends\r\noverextension\r\noverfed\r\noverfeed\r\noverfill\r\noverfilled\r\noverfilling\r\noverfills\r\noverflow\r\noverflowed\r\noverflowing\r\noverflows\r\novergenerous\r\novergraze\r\novergrazing\r\novergrow\r\novergrown\r\novergrowth\r\noverhand\r\noverhang\r\noverhanging\r\noverhangs\r\noverhaul\r\noverhauled\r\noverhauling\r\noverhauls\r\noverhead\r\noverheads\r\noverhear\r\noverheard\r\noverhearing\r\noverhears\r\noverheat\r\noverheated\r\noverheating\r\noverheats\r\noverindulge\r\noverindulged\r\noverindulgence\r\noverindulgent\r\noverjoyed\r\noverkill\r\noverkill's\r\noverlabour\r\noverlabours\r\noverlaid\r\noverland\r\noverlap\r\noverlapped\r\noverlapping\r\noverlaps\r\noverlap's\r\noverlay\r\noverlaying\r\noverlays\r\noverleaf\r\noverleap\r\noverlie\r\noverload\r\noverloaded\r\noverloading\r\noverloads\r\noverlong\r\noverlook\r\noverlooked\r\noverlooking\r\noverlooks\r\noverlord\r\noverlords\r\noverloud\r\noverly\r\noverlying\r\novermaster\r\novermatch\r\novermuch\r\novernice\r\novernight\r\novernighter\r\novernighters\r\novernights\r\noveroptimistic\r\noveroptimistically\r\noverpaid\r\noverpass\r\noverpay\r\noverpayment\r\noverplay\r\noverplayed\r\noverplaying\r\noverpopulate\r\noverpopulated\r\noverpopulation\r\noverpower\r\noverpowered\r\noverpowering\r\noverpoweringly\r\noverpowers\r\noverpressure\r\noverprice\r\noverpriced\r\noverprint\r\noverprinted\r\noverprinting\r\noverprints\r\noverprize\r\noverproduce\r\noverproduced\r\noverproduces\r\noverproducing\r\noverproduction\r\noverprotect\r\noverprotection\r\noverprotective\r\noverran\r\noverrate\r\noverrated\r\noverreach\r\noverreached\r\noverreaches\r\noverreact\r\noverreaction\r\noverridden\r\noverride\r\noverrides\r\noverriding\r\noverripe\r\noverrode\r\noverrule\r\noverruled\r\noverrules\r\noverruling\r\noverrun\r\noverrunning\r\noverruns\r\noverseas\r\noversee\r\noverseeing\r\noverseen\r\noverseer\r\noverseers\r\noversees\r\noversell\r\noverselling\r\noversells\r\noversensitive\r\noverset\r\noversexed\r\novershadow\r\novershadowed\r\novershadowing\r\novershadows\r\novershoe\r\novershoes\r\novershoot\r\novershooting\r\novershoots\r\novershot\r\noversight\r\noversights\r\noversight's\r\noversimplification\r\noversimplifications\r\noversimplified\r\noversimplifies\r\noversimplify\r\noversimplifying\r\noversize\r\noversized\r\noverskirt\r\noversleep\r\noversold\r\noverspecialisation\r\noverspecialisations\r\noverspecialisation's\r\noverspecialise\r\noverspecialised\r\noverspecialises\r\noverspend\r\noverspending\r\noverspends\r\noverspent\r\noverspill\r\noverspread\r\noverstaff\r\noverstaffed\r\noverstaffing\r\noverstate\r\noverstated\r\noverstatement\r\noverstatements\r\noverstatement's\r\noverstates\r\noverstating\r\noverstay\r\noversteer\r\noverstep\r\noverstepped\r\noverstepping\r\noversteps\r\noverstock\r\noverstocks\r\noverstrain\r\noverstraining\r\noverstress\r\noverstressed\r\noverstrike\r\noverstrikes\r\noverstuff\r\noverstuffed\r\noverstuffing\r\noverstuffs\r\noversubscribe\r\noversubscribed\r\noversubscribes\r\noversubscribing\r\noversupply\r\novert\r\novertake\r\novertaken\r\novertakes\r\novertaking\r\novertax\r\novertaxed\r\noverthrew\r\noverthrow\r\noverthrowing\r\noverthrown\r\noverthrows\r\novertime\r\novertly\r\novertone\r\novertones\r\novertone's\r\novertook\r\novertop\r\novertrade\r\novertrick\r\novertrump\r\noverture\r\novertures\r\noverture's\r\noverturn\r\noverturned\r\noverturning\r\noverturns\r\novertype\r\novertyping\r\noveruse\r\novervalue\r\noverview\r\noverviews\r\noverview's\r\noverweening\r\noverweigh\r\noverweight\r\noverwhelm\r\noverwhelmed\r\noverwhelming\r\noverwhelmingly\r\noverwhelms\r\noverwork\r\noverworked\r\noverworking\r\noverworks\r\noverwrite\r\noverwrites\r\noverwriting\r\noverwritten\r\noverwrote\r\noverwrought\r\noverzealous\r\noviduct\r\noviform\r\novine\r\noviparous\r\novipositor\r\novoid\r\novoviviparous\r\novular\r\novulate\r\novulated\r\novulates\r\novulating\r\novulation\r\novulations\r\novule\r\novum\r\nowe\r\nowed\r\nowes\r\nowing\r\nowl\r\nowlet\r\nowlish\r\nowlishly\r\nowls\r\nowl's\r\nown\r\nowned\r\nowner\r\nowners\r\nowner's\r\nownership\r\nownerships\r\nowning\r\nowns\r\nox\r\noxalate\r\noxalic\r\noxalis\r\noxblood\r\noxbow\r\noxcart\r\noxen\r\noxeye\r\noxidant\r\noxidation\r\noxidations\r\noxidative\r\noxide\r\noxides\r\noxide's\r\noxidisation\r\noxidisations\r\noxidisation's\r\noxidise\r\noxidised\r\noxidiser\r\noxidisers\r\noxidises\r\noxidising\r\noxtail\r\noxyacetylene\r\noxygen\r\noxygenate\r\noxygenated\r\noxygenates\r\noxygenating\r\noxygenation\r\noxygenations\r\noxygenic\r\noxygenise\r\noxygenises\r\noxymoron\r\noyez\r\noyster\r\noystercatcher\r\noysterman\r\noystermen\r\noysters\r\noyster's\r\noz\r\nozone\r\nozonosphere\r\np's\r\npH\r\npa\r\npabulum\r\npace\r\npaced\r\npacemaker\r\npacer\r\npacers\r\npaces\r\npace's\r\npacesetter\r\npacesetting\r\npachyderm\r\npachydermatous\r\npachysandra\r\npacific\r\npacifically\r\npacification\r\npacifications\r\npacificator\r\npacificators\r\npacified\r\npacifier\r\npacifies\r\npacifism\r\npacifist\r\npacifistic\r\npacifistically\r\npacify\r\npacifying\r\npacing\r\npack\r\npackage\r\npackaged\r\npackager\r\npackagers\r\npackages\r\npackaging\r\npacked\r\npacker\r\npackers\r\npacket\r\npackets\r\npacket's\r\npackhorse\r\npacking\r\npackinghouse\r\npackman\r\npacks\r\npacksack\r\npacksaddle\r\npackthread\r\npact\r\npacts\r\npact's\r\npad\r\npadded\r\npaddies\r\npadding\r\npaddle\r\npaddleboard\r\npaddled\r\npaddlefish\r\npaddles\r\npaddling\r\npaddock\r\npaddy\r\npadlock\r\npadlocked\r\npadlocks\r\npadre\r\npads\r\npad's\r\npadsaw\r\npaean\r\npaeans\r\npaediatrician\r\npaediatrics\r\npaedophilia\r\npaella\r\npagan\r\npaganism\r\npagans\r\npagan's\r\npage\r\npageant\r\npageantry\r\npageants\r\npageant's\r\npageboy\r\npaged\r\npager\r\npagers\r\npager's\r\npages\r\npage's\r\npaginate\r\npaginated\r\npaginates\r\npaginating\r\npagination\r\npaginations\r\npaging\r\npagoda\r\npagodas\r\npaid\r\npail\r\npails\r\npail's\r\npain\r\npained\r\npainful\r\npainfully\r\npainfulness\r\npaining\r\npainkiller\r\npainless\r\npainlessly\r\npainlessness\r\npains\r\npainstaking\r\npainstakingly\r\npaint\r\npaintbrush\r\npainted\r\npainter\r\npainterly\r\npainters\r\npainting\r\npaintings\r\npaints\r\npair\r\npaired\r\npairing\r\npairings\r\npairs\r\npaisley\r\npal\r\npalace\r\npalaces\r\npalace's\r\npaladin\r\npalaeography\r\npalaeontology\r\npalaeontology's\r\npalanquin\r\npalatability\r\npalatable\r\npalatably\r\npalatal\r\npalatalise\r\npalatalised\r\npalatalises\r\npalatalising\r\npalate\r\npalates\r\npalate's\r\npalatial\r\npalatinate\r\npalaver\r\npalavered\r\npalavering\r\npalazzo\r\npalazzos\r\npale\r\npaled\r\npaleface\r\npalefaces\r\npalely\r\npaleness\r\npaler\r\npales\r\npalest\r\npalette\r\npalfrey\r\npalimpsest\r\npalindrome\r\npalindromes\r\npaling\r\npalinode\r\npalisade\r\npalisades\r\npall\r\npalladium\r\npallbearer\r\npallet\r\npalletise\r\npalletised\r\npalletises\r\npalletising\r\npalliate\r\npalliation\r\npalliative\r\npalliatives\r\npallid\r\npalling\r\npallor\r\npallor's\r\npalm\r\npalmate\r\npalmed\r\npalmer\r\npalmetto\r\npalming\r\npalmist\r\npalmistry\r\npalms\r\npalomino\r\npalpability\r\npalpable\r\npalpably\r\npalpate\r\npalpated\r\npalpates\r\npalpating\r\npalpation\r\npalpations\r\npalpitate\r\npalpitated\r\npalpitates\r\npalpitating\r\npals\r\npal's\r\npalsied\r\npalsies\r\npalsy\r\npalter\r\npaltered\r\npaltering\r\npaltrier\r\npaltriness\r\npaltry\r\npampas\r\npamper\r\npampered\r\npampering\r\npampers\r\npamphlet\r\npamphleteer\r\npamphleteers\r\npamphlets\r\npamphlet's\r\npan\r\npanacea\r\npanaceas\r\npanacea's\r\npanache\r\npanama\r\npanatela\r\npancake\r\npancakes\r\npancake's\r\npanchromatic\r\npancreas\r\npancreatic\r\npanda\r\npandas\r\npanda's\r\npandect\r\npandemic\r\npandemonium\r\npander\r\npandered\r\npanderer\r\npandering\r\npanders\r\npandowdy\r\npane\r\npanegyric\r\npanegyrist\r\npanel\r\npanelled\r\npanelling\r\npanellist\r\npanellists\r\npanels\r\npanes\r\npane's\r\npang\r\npanga\r\npangenesis\r\npangenetic\r\npangolin\r\npangs\r\npang's\r\npanhandle\r\npanhandled\r\npanhandler\r\npanhandles\r\npanhandling\r\npanhuman\r\npanic\r\npanicked\r\npanicking\r\npanicky\r\npanicle\r\npanics\r\npanic's\r\npanjandrum\r\npanned\r\npannier\r\npanning\r\npanoply\r\npanoptic\r\npanorama\r\npanoramas\r\npanoramic\r\npanoramically\r\npanpipe\r\npanpipes\r\npans\r\npan's\r\npansies\r\npansy\r\npansy's\r\npant\r\npantalets\r\npantaloon\r\npantaloons\r\npantechnicon\r\npanted\r\npantheism\r\npantheist\r\npantheistic\r\npantheon\r\npanther\r\npanthers\r\npanther's\r\npanties\r\npanting\r\npantograph\r\npantographic\r\npantomime\r\npantomimed\r\npantomimic\r\npantries\r\npantry\r\npantry's\r\npants\r\npantsuit\r\npanty\r\npantywaist\r\npanzer\r\npap\r\npapa\r\npapacy\r\npapal\r\npapaw\r\npapaya\r\npaper\r\npaperback\r\npaperbacks\r\npaperback's\r\npaperboard\r\npaperbound\r\npaperboy\r\npaperboys\r\npaperclip\r\npaperclips\r\npapered\r\npaperhanger\r\npaperhangers\r\npaperhanging\r\npapering\r\npaperknife\r\npaperknives\r\npaperless\r\npapermaker\r\npapermakers\r\npapermaking\r\npapers\r\npaper's\r\npaperweight\r\npaperweights\r\npaperwork\r\npapery\r\npapilla\r\npapillae\r\npapillary\r\npapist\r\npapoose\r\npappies\r\npappy\r\npaprika\r\npapule\r\npapyri\r\npapyrus\r\npapyruses\r\npar\r\nparable\r\nparables\r\nparabola\r\nparabolic\r\nparachute\r\nparachuted\r\nparachutes\r\nparachute's\r\nparachuting\r\nparachutist\r\nparade\r\nparaded\r\nparades\r\nparadigm\r\nparadigmatic\r\nparadigms\r\nparadigm's\r\nparading\r\nparadise\r\nparadisiacal\r\nparadox\r\nparadoxes\r\nparadoxical\r\nparadoxically\r\nparadox's\r\nparaffin\r\nparagon\r\nparagons\r\nparagon's\r\nparagraph\r\nparagraphed\r\nparagraphing\r\nparagraphs\r\nparakeet\r\nparakeets\r\nparalanguage\r\nparaldehyde\r\nparalinguistic\r\nparallax\r\nparallax's\r\nparallel\r\nparallelepiped\r\nparallelepipeds\r\nparallelogram\r\nparallelograms\r\nparallelogram's\r\nparallels\r\nparalyse\r\nparalysed\r\nparalyses\r\nparalysing\r\nparalysis\r\nparalytic\r\nparamagnet\r\nparamagnetic\r\nparamecium\r\nparamedic\r\nparamedical\r\nparameter\r\nparameterisation\r\nparameterisations\r\nparameterisation's\r\nparameterise\r\nparameterised\r\nparameterises\r\nparameters\r\nparameter's\r\nparametric\r\nparametrical\r\nparametrically\r\nparamilitary\r\nparamount\r\nparamour\r\nparang\r\nparanoia\r\nparanoiac\r\nparanoiacs\r\nparanoid\r\nparanormal\r\nparanormally\r\nparapet\r\nparapets\r\nparapet's\r\nparaphernalia\r\nparaphrase\r\nparaphrased\r\nparaphrases\r\nparaphrasing\r\nparaplegia\r\nparaplegic\r\nparaprofessional\r\nparaprofessionals\r\nparapsychology\r\nparasite\r\nparasites\r\nparasite's\r\nparasitic\r\nparasitical\r\nparasitically\r\nparasitism\r\nparasol\r\nparasols\r\nparasympathetic\r\nparatactic\r\nparataxis\r\nparathion\r\nparathyroid\r\nparatrooper\r\nparatroopers\r\nparatroops\r\nparatyphoid\r\nparaxial\r\nparboil\r\nparboiled\r\nparcel\r\nparcelled\r\nparcelling\r\nparcels\r\nparch\r\nparched\r\nparchment\r\npardon\r\npardonable\r\npardonably\r\npardoned\r\npardoner\r\npardoners\r\npardoning\r\npardons\r\npare\r\nparegoric\r\nparenchyma\r\nparent\r\nparentage\r\nparental\r\nparentally\r\nparentheses\r\nparenthesis\r\nparenthesise\r\nparenthesised\r\nparenthesises\r\nparenthesising\r\nparenthetic\r\nparenthetical\r\nparenthetically\r\nparenthood\r\nparenting\r\nparents\r\nparent's\r\npares\r\nparesis\r\nparfait\r\npariah\r\nparietal\r\nparing\r\nparings\r\nparish\r\nparishes\r\nparishioner\r\nparishioners\r\nparish's\r\nparities\r\nparity\r\npark\r\nparka\r\nparkas\r\nparka's\r\nparked\r\nparker\r\nparkers\r\nparking\r\nparkland\r\nparks\r\nparkway\r\nparlance\r\nparlay\r\nparlayed\r\nparley\r\nparleys\r\nparliament\r\nparliamentarian\r\nparliamentarians\r\nparliamentary\r\nparliaments\r\nparliament's\r\nparlour\r\nparlours\r\nparlour's\r\nparlous\r\nparochial\r\nparochialism\r\nparochialisms\r\nparochialism's\r\nparochially\r\nparodied\r\nparodies\r\nparody\r\nparole\r\nparoled\r\nparolee\r\nparolees\r\nparoles\r\nparoling\r\nparonomasia\r\nparotid\r\nparoxysm\r\nparoxysmal\r\nparquet\r\nparquetry\r\nparricidal\r\nparricide\r\nparried\r\nparrot\r\nparrotfish\r\nparroting\r\nparrots\r\nparry\r\nparrying\r\npars\r\nparse\r\nparsec\r\nparsecs\r\nparsed\r\nparser\r\nparsers\r\nparser's\r\nparses\r\nparsimonious\r\nparsimoniously\r\nparsimony\r\nparsing\r\nparsley\r\nparsnip\r\nparson\r\nparsonage\r\nparsons\r\nparson's\r\npart\r\npartake\r\npartaker\r\npartakes\r\npartaking\r\nparted\r\nparterre\r\nparthenogenesis\r\npartial\r\npartiality\r\npartially\r\npartials\r\nparticipant\r\nparticipants\r\nparticipant's\r\nparticipate\r\nparticipated\r\nparticipates\r\nparticipating\r\nparticipation\r\nparticipations\r\nparticipative\r\nparticipator\r\nparticipatory\r\nparticipial\r\nparticiple\r\nparticiples\r\nparticle\r\nparticles\r\nparticle's\r\nparticular\r\nparticularisation\r\nparticularisations\r\nparticularisation's\r\nparticularise\r\nparticularised\r\nparticularises\r\nparticularising\r\nparticularistic\r\nparticularity\r\nparticularly\r\nparticulars\r\nparticulate\r\nparticulates\r\npartied\r\nparties\r\nparting\r\npartings\r\npartisan\r\npartisans\r\npartisan's\r\npartisanship\r\npartite\r\npartition\r\npartitioned\r\npartitioning\r\npartitions\r\npartly\r\npartner\r\npartnered\r\npartnering\r\npartners\r\npartner's\r\npartnership\r\npartnerships\r\npartook\r\npartridge\r\npartridges\r\npartridge's\r\nparts\r\nparturient\r\nparturition\r\npartway\r\nparty\r\npartying\r\nparty's\r\nparvenu\r\npas\r\npaschal\r\npasha\r\npass\r\npassable\r\npassably\r\npassage\r\npassages\r\npassage's\r\npassageway\r\npassant\r\npassbook\r\npassbooks\r\npassbook's\r\npassé\r\npassed\r\npassenger\r\npassengers\r\npassenger's\r\npasser\r\npasserby\r\npasserine\r\npassers\r\npassersby\r\npasses\r\npassim\r\npassing\r\npassion\r\npassionate\r\npassionately\r\npassionflower\r\npassionless\r\npassions\r\npassive\r\npassively\r\npassiveness\r\npassives\r\npassivity\r\npasskey\r\npassport\r\npassports\r\npassport's\r\npassword\r\npasswords\r\npassword's\r\npast\r\npasta\r\npaste\r\npasteboard\r\npasted\r\npastel\r\npastels\r\npastern\r\npasterns\r\npastes\r\npasteurisation\r\npasteurisations\r\npasteurise\r\npasteurised\r\npasteurises\r\npasteurising\r\npastiche\r\npastier\r\npasties\r\npastilles\r\npastime\r\npastimes\r\npastime's\r\npastiness\r\npasting\r\npastor\r\npastoral\r\npastorate\r\npastors\r\npastor's\r\npastrami\r\npastries\r\npastry\r\npasts\r\npast's\r\npasturage\r\npasture\r\npastured\r\npastureland\r\npastures\r\npasture's\r\npasturing\r\npasty\r\npat\r\npatch\r\npatched\r\npatches\r\npatchier\r\npatchily\r\npatchiness\r\npatching\r\npatchouli\r\npatchwork\r\npatchy\r\npate\r\npatella\r\npatellae\r\npatellar\r\npaten\r\npatent\r\npatented\r\npatentee\r\npatentees\r\npatenting\r\npatently\r\npatents\r\npaterfamilias\r\npaternal\r\npaternalism\r\npaternalist\r\npaternalistic\r\npaternally\r\npaternity\r\npaternoster\r\npath\r\npathetic\r\npathetically\r\npathfinder\r\npathless\r\npathname\r\npathnames\r\npathname's\r\npathogen\r\npathogenesis\r\npathogenic\r\npathogenically\r\npathogens\r\npathologic\r\npathological\r\npathologically\r\npathologies\r\npathologist\r\npathologists\r\npathologist's\r\npathology\r\npathos\r\npaths\r\npathway\r\npathways\r\npathway's\r\npatience\r\npatient\r\npatiently\r\npatients\r\npatient's\r\npatina\r\npatinas\r\npatio\r\npatios\r\npatisserie\r\npatisseries\r\npatois\r\npatriarch\r\npatriarchal\r\npatriarchies\r\npatriarchs\r\npatriarchy\r\npatrician\r\npatricians\r\npatrician's\r\npatricidal\r\npatricide\r\npatrimonial\r\npatrimony\r\npatriot\r\npatriotic\r\npatriotically\r\npatriotism\r\npatriots\r\npatriot's\r\npatristic\r\npatrol\r\npatrolled\r\npatroller\r\npatrolling\r\npatrolman\r\npatrolmen\r\npatrols\r\npatrol's\r\npatron\r\npatronage\r\npatroness\r\npatronisation\r\npatronisations\r\npatronisation's\r\npatronise\r\npatronised\r\npatronises\r\npatronising\r\npatronisingly\r\npatrons\r\npatron's\r\npatronymic\r\npats\r\npat's\r\npatted\r\npatter\r\npattered\r\npattering\r\npattern\r\npatterned\r\npatterning\r\npatterns\r\npatters\r\npatties\r\npatting\r\npatty\r\npatty's\r\npatulous\r\npaucity\r\npaunch\r\npaunchier\r\npaunchiness\r\npaunchy\r\npauper\r\npauperisation\r\npauperisations\r\npauperisation's\r\npauperise\r\npauperised\r\npauperises\r\npauperising\r\npauperism\r\npause\r\npaused\r\npauses\r\npausing\r\npavane\r\npave\r\npaved\r\npavement\r\npavements\r\npavement's\r\npaves\r\npavilion\r\npavilions\r\npavilion's\r\npaving\r\npaw\r\npawed\r\npawing\r\npawl\r\npawn\r\npawnbroker\r\npawnbrokers\r\npawnbroker's\r\npawned\r\npawning\r\npawns\r\npawn's\r\npawnshop\r\npawnshops\r\npawnshop's\r\npaws\r\npay\r\npayable\r\npayday\r\npayee\r\npayer\r\npayers\r\npayer's\r\npaying\r\npayload\r\npayloads\r\npayload's\r\npaymaster\r\npaymasters\r\npayment\r\npayments\r\npayment's\r\npayoff\r\npayoffs\r\npayoff's\r\npayola\r\npayroll\r\npayrolls\r\npays\r\npea\r\npeace\r\npeaceable\r\npeaceably\r\npeaceful\r\npeacefully\r\npeacefulness\r\npeacekeeper\r\npeacekeeping\r\npeacemaker\r\npeacemaking\r\npeaces\r\npeacetime\r\npeacetimes\r\npeach\r\npeaches\r\npeachier\r\npeach's\r\npeachy\r\npeacock\r\npeacocks\r\npeacock's\r\npeafowl\r\npeahen\r\npeak\r\npeaked\r\npeaking\r\npeaks\r\npeaky\r\npeal\r\npealed\r\npealing\r\npeals\r\npeanut\r\npeanuts\r\npeanut's\r\npear\r\npearl\r\npearlier\r\npearls\r\npearl's\r\npearly\r\npears\r\npeas\r\npea's\r\npeasant\r\npeasantry\r\npeasants\r\npeasant's\r\npeashooter\r\npeat\r\npeaty\r\npeavey\r\npebble\r\npebbled\r\npebbles\r\npebble's\r\npebbling\r\npebbly\r\npecan\r\npecans\r\npeccadillo\r\npeccadilloes\r\npeccary\r\npeck\r\npecked\r\npecker\r\npecking\r\npeckish\r\npecks\r\npectin\r\npectoral\r\npectorals\r\npeculate\r\npeculated\r\npeculates\r\npeculating\r\npeculation\r\npeculator\r\npeculiar\r\npeculiarities\r\npeculiarity\r\npeculiarity's\r\npeculiarly\r\npeculiars\r\npecuniary\r\npedagogic\r\npedagogical\r\npedagogically\r\npedagogue\r\npedagogy\r\npedal\r\npedalled\r\npedalling\r\npedalo\r\npedals\r\npedant\r\npedantic\r\npedantically\r\npedantry\r\npeddle\r\npeddled\r\npeddler\r\npeddlers\r\npeddler's\r\npeddles\r\npeddling\r\npederast\r\npederasts\r\npederasty\r\npedestal\r\npedestals\r\npedestrian\r\npedestrians\r\npedestrian's\r\npedicel\r\npedicle\r\npedicure\r\npedicurist\r\npedigree\r\npedigreed\r\npediment\r\npedometer\r\npedometers\r\npedometer's\r\npee\r\npeek\r\npeeked\r\npeeking\r\npeeks\r\npeel\r\npeeled\r\npeeler\r\npeeler's\r\npeeling\r\npeels\r\npeen\r\npeens\r\npeep\r\npeeped\r\npeepers\r\npeephole\r\npeeping\r\npeeps\r\npeepshow\r\npeer\r\npeerage\r\npeered\r\npeeress\r\npeering\r\npeerless\r\npeerlessly\r\npeers\r\npeeve\r\npeeved\r\npeeves\r\npeeve's\r\npeeving\r\npeevish\r\npeevishly\r\npeevishness\r\npeewee\r\npeg\r\npegboard\r\npegboards\r\npegged\r\npegging\r\npegmatite\r\npegs\r\npeg's\r\npeignoir\r\npejorative\r\npejoratively\r\npejoratives\r\npekoe\r\npelage\r\npelagic\r\npelerine\r\npelf\r\npelican\r\npelicans\r\npelisse\r\npellagra\r\npellagrous\r\npellet\r\npellets\r\npellet's\r\npellicle\r\npellucid\r\npelmet\r\npelt\r\npelting\r\npelts\r\npelvic\r\npelvis\r\npelvises\r\npemmican\r\npen\r\npenal\r\npenalisation\r\npenalisations\r\npenalisation's\r\npenalise\r\npenalised\r\npenalises\r\npenalising\r\npenalties\r\npenalty\r\npenalty's\r\npenance\r\npenances\r\npence\r\npenchant\r\npencil\r\npencilled\r\npencilling\r\npencils\r\npendant\r\npended\r\npendent\r\npending\r\npendulous\r\npendulum\r\npendulums\r\npendulum's\r\npenetrability\r\npenetrable\r\npenetrably\r\npenetrate\r\npenetrated\r\npenetrates\r\npenetrating\r\npenetratingly\r\npenetration\r\npenetrations\r\npenetrative\r\npenguin\r\npenguins\r\npenguin's\r\npenholder\r\npenicillin\r\npenile\r\npeninsula\r\npeninsular\r\npeninsulas\r\npeninsula's\r\npenis\r\npenises\r\npenitence\r\npenitent\r\npenitential\r\npenitentiary\r\npenitently\r\npenknife\r\npenknife's\r\npenknives\r\npenlight\r\npenman\r\npenmanship\r\npenmen\r\npennant\r\npennants\r\npenned\r\npennies\r\npenniless\r\npenning\r\npennon\r\npenny\r\npennycress\r\npennyroyal\r\npenny's\r\npennyweight\r\npennywort\r\npennyworth\r\npenologist\r\npenology\r\npens\r\npensile\r\npension\r\npensioned\r\npensioner\r\npensioners\r\npensioning\r\npensions\r\npensive\r\npensively\r\npensiveness\r\npenstock\r\npent\r\npenta\r\npentacle\r\npentacles\r\npentad\r\npentagon\r\npentagonal\r\npentagons\r\npentagon's\r\npentagram\r\npentagrams\r\npentagram's\r\npentameter\r\npentane\r\npentangle\r\npentangles\r\npentathlon\r\npentatonic\r\npenthouse\r\npenthouses\r\npenthouse's\r\npentobarbital\r\npentode\r\npenuche\r\npenult\r\npenultimate\r\npenumbra\r\npenumbral\r\npenurious\r\npenury\r\npeon\r\npeonage\r\npeonies\r\npeony\r\npeople\r\npeopled\r\npeoples\r\npeople's\r\npeopling\r\npep\r\npeplum\r\npepper\r\npeppercorn\r\npeppercorns\r\npeppercorn's\r\npeppered\r\npeppergrass\r\npeppering\r\npeppermint\r\npeppermints\r\npepperoni\r\npeppers\r\npeppertree\r\npeppery\r\npeppier\r\npeppiness\r\npepping\r\npeppy\r\npepsin\r\npeptic\r\npeptidase\r\npeptidases\r\npeptide\r\npeptides\r\npeptise\r\npeptised\r\npeptises\r\npeptising\r\npeptone\r\nper\r\nperadventure\r\nperambulate\r\nperambulated\r\nperambulates\r\nperambulating\r\nperambulation\r\nperambulations\r\nperambulator\r\nperambulatory\r\npercale\r\nperceivable\r\nperceivably\r\nperceive\r\nperceived\r\nperceiver\r\nperceivers\r\nperceives\r\nperceiving\r\npercent\r\npercentage\r\npercentages\r\npercentile\r\npercentiles\r\npercents\r\npercept\r\nperceptibility\r\nperceptible\r\nperceptibly\r\nperception\r\nperceptions\r\nperceptive\r\nperceptively\r\nperceptiveness\r\nperceptivity\r\nperceptual\r\nperceptually\r\nperch\r\nperchance\r\nperched\r\nperches\r\nperching\r\npercipience\r\npercipient\r\npercolate\r\npercolated\r\npercolates\r\npercolating\r\npercolation\r\npercolator\r\npercolators\r\npercussion\r\npercussionist\r\npercussions\r\npercussive\r\nperdition\r\nperditions\r\nperdurable\r\nperegrinate\r\nperegrinated\r\nperegrinates\r\nperegrinating\r\nperegrination\r\nperegrinations\r\nperegrine\r\nperemptorily\r\nperemptoriness\r\nperemptory\r\nperennial\r\nperennially\r\nperennials\r\nperfect\r\nperfecta\r\nperfected\r\nperfectibility\r\nperfectible\r\nperfecting\r\nperfection\r\nperfectionism\r\nperfectionist\r\nperfectionists\r\nperfectionist's\r\nperfections\r\nperfectly\r\nperfecto\r\nperfects\r\nperfervid\r\nperfidious\r\nperfidiously\r\nperfidiousness\r\nperfidy\r\nperforate\r\nperforated\r\nperforates\r\nperforating\r\nperforation\r\nperforations\r\nperforator\r\nperforce\r\nperform\r\nperformable\r\nperformance\r\nperformances\r\nperformance's\r\nperformed\r\nperformer\r\nperformers\r\nperforming\r\nperforms\r\nperfume\r\nperfumed\r\nperfumer\r\nperfumery\r\nperfumes\r\nperfuming\r\nperfunctorily\r\nperfunctory\r\nperfuse\r\nperfusion\r\npergola\r\nperhaps\r\nperiapt\r\npericardial\r\npericardium\r\nperigee\r\nperigee's\r\nperihelion\r\nperil\r\nperilous\r\nperilously\r\nperils\r\nperil's\r\nperimeter\r\nperineum\r\nperiod\r\nperiodic\r\nperiodical\r\nperiodically\r\nperiodicals\r\nperiodicities\r\nperiodicity\r\nperiodontal\r\nperiods\r\nperiod's\r\nperipatetic\r\nperipheral\r\nperipherally\r\nperipherals\r\nperipheries\r\nperiphery\r\nperiphery's\r\nperiphrasis\r\nperiphrastic\r\nperiphrastically\r\nperiscope\r\nperiscopes\r\nperish\r\nperishable\r\nperishables\r\nperishable's\r\nperished\r\nperishes\r\nperishing\r\nperistalsis\r\nperitoneum\r\nperitonitis\r\nperiwig\r\nperiwinkle\r\nperiwinkles\r\nperjure\r\nperjured\r\nperjurer\r\nperjures\r\nperjuring\r\nperjury\r\nperk\r\nperked\r\nperkier\r\nperkily\r\nperkiness\r\nperking\r\nperks\r\nperky\r\nperm\r\npermafrost\r\npermanence\r\npermanency\r\npermanent\r\npermanently\r\npermanents\r\npermanganate\r\npermeability\r\npermeable\r\npermeably\r\npermeate\r\npermeated\r\npermeates\r\npermeating\r\npermeation\r\npermeations\r\npermissibility\r\npermissible\r\npermissibly\r\npermission\r\npermissions\r\npermissive\r\npermissively\r\npermissiveness\r\npermit\r\npermits\r\npermit's\r\npermitted\r\npermitting\r\npermutation\r\npermutations\r\npermutation's\r\npermute\r\npermuted\r\npermutes\r\npermuting\r\npernicious\r\nperniciously\r\nperniciousness\r\npernickety\r\nperorate\r\nperoration\r\nperoxide\r\nperpendicular\r\nperpendicularly\r\nperpendiculars\r\nperpetrate\r\nperpetrated\r\nperpetrates\r\nperpetrating\r\nperpetration\r\nperpetrations\r\nperpetrator\r\nperpetrators\r\nperpetrator's\r\nperpetual\r\nperpetually\r\nperpetuate\r\nperpetuated\r\nperpetuates\r\nperpetuating\r\nperpetuation\r\nperpetuator\r\nperpetuity\r\nperplex\r\nperplexed\r\nperplexedly\r\nperplexes\r\nperplexing\r\nperplexities\r\nperplexity\r\nperquisite\r\nperquisites\r\npersecute\r\npersecuted\r\npersecutes\r\npersecuting\r\npersecution\r\npersecutor\r\npersecutors\r\npersecutor's\r\npersecutory\r\nperseverance\r\nperseverant\r\npersevere\r\npersevered\r\nperseveres\r\npersevering\r\npersiflage\r\npersimmon\r\npersimmons\r\npersist\r\npersisted\r\npersistence\r\npersistency\r\npersistent\r\npersistently\r\npersisting\r\npersists\r\nperson\r\npersona\r\npersonable\r\npersonae\r\npersonage\r\npersonages\r\npersonage's\r\npersonal\r\npersonalisation\r\npersonalisation's\r\npersonalise\r\npersonalised\r\npersonalises\r\npersonalising\r\npersonalities\r\npersonality\r\npersonality's\r\npersonally\r\npersonals\r\npersonate\r\npersonated\r\npersonates\r\npersonating\r\npersonhood\r\npersonification\r\npersonifications\r\npersonified\r\npersonifies\r\npersonify\r\npersonifying\r\npersonnel\r\npersons\r\nperson's\r\nperspective\r\nperspectives\r\nperspective's\r\nperspicacious\r\nperspicaciously\r\nperspicacity\r\nperspicuity\r\nperspicuous\r\nperspicuously\r\nperspiration\r\nperspirations\r\nperspire\r\nperspired\r\nperspires\r\nperspiring\r\npersuadable\r\npersuade\r\npersuaded\r\npersuader\r\npersuaders\r\npersuades\r\npersuading\r\npersuasion\r\npersuasions\r\npersuasion's\r\npersuasive\r\npersuasively\r\npersuasiveness\r\npert\r\npertain\r\npertained\r\npertaining\r\npertains\r\npertinacious\r\npertinacity\r\npertinence\r\npertinent\r\npertinently\r\npertly\r\npertness\r\nperturb\r\nperturbation\r\nperturbations\r\nperturbation's\r\nperturbed\r\nperturbing\r\nperusal\r\nperuse\r\nperused\r\nperuses\r\nperusing\r\npervade\r\npervaded\r\npervades\r\npervading\r\npervasion\r\npervasive\r\npervasively\r\npervasiveness\r\nperverse\r\nperversely\r\nperverseness\r\nperversion\r\nperversions\r\nperversity\r\npervert\r\nperverted\r\nperverting\r\nperverts\r\npervious\r\npeseta\r\npeskier\r\npesky\r\npeso\r\npesos\r\npessimism\r\npessimist\r\npessimistic\r\npessimistically\r\npessimists\r\npest\r\npester\r\npestered\r\npestering\r\npesters\r\npesthole\r\npesticide\r\npesticides\r\npestiferous\r\npestilence\r\npestilences\r\npestilent\r\npestilential\r\npestle\r\npestles\r\npests\r\npet\r\npetal\r\npetals\r\npetal's\r\npetard\r\npeter\r\npetered\r\npeters\r\npetiole\r\npetit\r\npetite\r\npetition\r\npetitioned\r\npetitioner\r\npetitioning\r\npetitions\r\npetrel\r\npetri\r\npetrifaction\r\npetrified\r\npetrify\r\npetrochemical\r\npetrodollar\r\npetrography\r\npetrol\r\npetrolatum\r\npetroleum\r\npetrologic\r\npetrology\r\npets\r\npetted\r\npetticoat\r\npetticoats\r\npetticoat's\r\npettier\r\npettiest\r\npettifog\r\npettifogger\r\npettifogging\r\npettily\r\npettiness\r\npetting\r\npettish\r\npettishly\r\npettishness\r\npetty\r\npetulance\r\npetulancy\r\npetulant\r\npetulantly\r\npetunia\r\npew\r\npewee\r\npewit\r\npews\r\npew's\r\npewter\r\npeyote\r\npfennig\r\nph\r\nphaeton\r\nphage\r\nphagocyte\r\nphagocytes\r\nphalanges\r\nphalanx\r\nphalanxes\r\nphalarope\r\nphalli\r\nphallic\r\nphallus\r\nphalluses\r\nphantasm\r\nphantasmagoria\r\nphantasmal\r\nphantom\r\nphantoms\r\nphantom's\r\npharaoh\r\npharaonic\r\npharisaic\r\npharmaceutical\r\npharmaceutically\r\npharmaceuticals\r\npharmaceutics\r\npharmacies\r\npharmacist\r\npharmacists\r\npharmacological\r\npharmacologically\r\npharmacology\r\npharmacopoeia\r\npharmacy\r\npharos\r\npharyngeal\r\npharyngitis\r\npharynx\r\npharynxes\r\nphase\r\nphased\r\nphases\r\nphasing\r\npheasant\r\npheasants\r\npheasant's\r\nphenol\r\nphenolphthalein\r\nphenomena\r\nphenomenal\r\nphenomenally\r\nphenomenological\r\nphenomenology\r\nphenomenon\r\nphenotype\r\nphenotypic\r\nphenyl\r\npheromone\r\npheromones\r\npheromone's\r\nphew\r\nphi\r\nphial\r\nphilander\r\nphilandered\r\nphilanderer\r\nphilanderers\r\nphilanderer's\r\nphilandering\r\nphilanders\r\nphilanthropic\r\nphilanthropically\r\nphilanthropies\r\nphilanthropist\r\nphilanthropists\r\nphilanthropy\r\nphilatelic\r\nphilatelist\r\nphilately\r\nphilharmonic\r\nphilippics\r\nphilistines\r\nphilodendron\r\nphilological\r\nphilologically\r\nphilologist\r\nphilologists\r\nphilology\r\nphilosopher\r\nphilosophers\r\nphilosopher's\r\nphilosophic\r\nphilosophical\r\nphilosophically\r\nphilosophies\r\nphilosophise\r\nphilosophised\r\nphilosophiser\r\nphilosophisers\r\nphilosophises\r\nphilosophising\r\nphilosophy\r\nphilosophy's\r\nphiltre\r\nphlebitis\r\nphlebotomise\r\nphlebotomised\r\nphlebotomises\r\nphlebotomising\r\nphlebotomy\r\nphlegm\r\nphlegmatic\r\nphlegmatically\r\nphloem\r\nphlogiston\r\nphlox\r\nphobia\r\nphobic\r\nphoebe\r\nphoenix\r\nphonate\r\nphonated\r\nphonates\r\nphonating\r\nphonation\r\nphone\r\nphoned\r\nphoneme\r\nphonemes\r\nphoneme's\r\nphonemic\r\nphonemically\r\nphonemics\r\nphones\r\nphone's\r\nphonetic\r\nphonetically\r\nphonetician\r\nphonetics\r\nphoney\r\nphoneys\r\nphonic\r\nphonically\r\nphonics\r\nphonier\r\nphoniness\r\nphoning\r\nphonogram\r\nphonograms\r\nphonogram's\r\nphonograph\r\nphonographic\r\nphonographically\r\nphonographs\r\nphonologic\r\nphonological\r\nphonologically\r\nphonology\r\nphonon\r\nphonons\r\nphooey\r\nphosgene\r\nphosphate\r\nphosphates\r\nphosphate's\r\nphosphor\r\nphosphoresce\r\nphosphorescence\r\nphosphorescent\r\nphosphorescently\r\nphosphoric\r\nphosphorous\r\nphosphors\r\nphosphorus\r\nphoto\r\nphotoactive\r\nphotobiology\r\nphotobiotic\r\nphotocell\r\nphotochemical\r\nphotochemistry\r\nphotocoagulation\r\nphotocompose\r\nphotocomposition\r\nphotoconduction\r\nphotoconductive\r\nphotoconductivity\r\nphotocopied\r\nphotocopier\r\nphotocopies\r\nphotocopy\r\nphotocopying\r\nphotocurrent\r\nphotodecomposition\r\nphotodiode\r\nphotodiodes\r\nphotodisintegration\r\nphotodrama\r\nphotoduplicate\r\nphotodynamic\r\nphotoelectric\r\nphotoelectron\r\nphotoelectrons\r\nphotoemission\r\nphotoengrave\r\nphotoengraver\r\nphotoengravers\r\nphotoengraving\r\nphotoflash\r\nphotoflood\r\nphotogene\r\nphotogenic\r\nphotograph\r\nphotographed\r\nphotographer\r\nphotographers\r\nphotographic\r\nphotographically\r\nphotographing\r\nphotographs\r\nphotography\r\nphotogravure\r\nphotoheliograph\r\nphotojournalism\r\nphotojournalist\r\nphotojournalistic\r\nphotojournalists\r\nphotojournalist's\r\nphotolithograph\r\nphotolithographic\r\nphotolithography\r\nphotoluminescence\r\nphotomap\r\nphotomechanical\r\nphotometer\r\nphotometers\r\nphotometer's\r\nphotometric\r\nphotometry\r\nphotomicrograph\r\nphotomicrography\r\nphotomicroscope\r\nphotomontage\r\nphotomural\r\nphoton\r\nphotonegative\r\nphotonic\r\nphotons\r\nphoton's\r\nphotonuclear\r\nphotoperiod\r\nphotoperiodic\r\nphotophobia\r\nphotophobic\r\nphotopolymer\r\nphotopositive\r\nphotoproduct\r\nphotoreaction\r\nphotoreception\r\nphotoreceptive\r\nphotoreceptor\r\nphotoreconnaissance\r\nphotorespiration\r\nphotos\r\nphoto's\r\nphotosensitise\r\nphotosensitised\r\nphotosensitises\r\nphotosensitising\r\nphotosensitive\r\nphotosensitivity\r\nphotoset\r\nphotosphere\r\nphotosynthesis\r\nphotosynthesise\r\nphotosynthesised\r\nphotosynthesises\r\nphotosynthesising\r\nphotosynthetic\r\nphototonus\r\nphototransistor\r\nphototropic\r\nphototropism\r\nphototube\r\nphototypeset\r\nphototypesetter\r\nphototypesetting\r\nphototypographic\r\nphototypography\r\nphotovoltaic\r\nphrasal\r\nphrase\r\nphrased\r\nphrasemaker\r\nphrasemaking\r\nphrasemonger\r\nphraseologies\r\nphraseology\r\nphraseology's\r\nphrases\r\nphrasing\r\nphrasings\r\nphrenologist\r\nphrenology\r\nphthalate\r\nphthisis\r\nphyla\r\nphylactery\r\nphylogeny\r\nphylum\r\nphysiatrist\r\nphysic\r\nphysical\r\nphysicality\r\nphysically\r\nphysicals\r\nphysician\r\nphysicians\r\nphysician's\r\nphysicist\r\nphysicists\r\nphysicist's\r\nphysicochemical\r\nphysics\r\nphysiochemical\r\nphysiognomic\r\nphysiognomy\r\nphysiologic\r\nphysiological\r\nphysiologically\r\nphysiologist\r\nphysiology\r\nphysiotherapist\r\nphysiotherapy\r\nphysique\r\nphytoplankton\r\npi\r\npianism\r\npianissimo\r\npianist\r\npianists\r\npiano\r\npianoforte\r\npianofortes\r\npianoforte's\r\npianos\r\npiano's\r\npiazza\r\npiazzas\r\npiazza's\r\npica\r\npicador\r\npicaresque\r\npicaroon\r\npicayune\r\npiccalilli\r\npiccolo\r\npick\r\npickaxe\r\npicked\r\npicker\r\npickerel\r\npickerels\r\npickerelweed\r\npickers\r\npicket\r\npicketed\r\npicketers\r\npicketing\r\npickets\r\npickier\r\npicking\r\npickings\r\npickle\r\npickled\r\npickles\r\npickling\r\npicklock\r\npickoff\r\npickoffs\r\npickpocket\r\npickproof\r\npicks\r\npickup\r\npickups\r\npickup's\r\npicky\r\npicnic\r\npicnicked\r\npicnicker\r\npicnickers\r\npicnicking\r\npicnics\r\npicnic's\r\npico\r\npicofarad\r\npicosecond\r\npicoseconds\r\npicot\r\npicric\r\npictogram\r\npictograph\r\npictographic\r\npictography\r\npictorial\r\npictorially\r\npicts\r\npicture\r\npictured\r\npictures\r\npicturesque\r\npicturesquely\r\npicturing\r\npiddle\r\npiddling\r\npie\r\npiebald\r\npiece\r\npieced\r\npiecemeal\r\npieces\r\npiecewise\r\npiecework\r\npieceworker\r\npiecing\r\npiecrust\r\npied\r\npiedmont\r\npier\r\npierce\r\npierced\r\npierces\r\npiercing\r\npiercingly\r\npiers\r\npies\r\npieta\r\npieties\r\npietism\r\npietistic\r\npiety\r\npiezo\r\npiezoelectric\r\npiezoelectricity\r\npiffle\r\npiffled\r\npiffles\r\npiffling\r\npig\r\npigboat\r\npigeon\r\npigeonhole\r\npigeonholed\r\npigeonholes\r\npigeonholing\r\npigeons\r\npigeon's\r\npigfish\r\npigged\r\npigging\r\npiggish\r\npiggy\r\npiggyback\r\npiggybacked\r\npiggybacking\r\npigheaded\r\npigheadedness\r\npiglet\r\npiglets\r\npigment\r\npigmentation\r\npigmentations\r\npigmented\r\npigments\r\npigmy\r\npignut\r\npigpen\r\npigpens\r\npigs\r\npig's\r\npigskin\r\npigsty\r\npigswill\r\npigtail\r\npigtailed\r\npigweed\r\npike\r\npikeperch\r\npiker\r\npikes\r\npike's\r\npikestaff\r\npilaf\r\npilaff\r\npilaster\r\npilchard\r\npile\r\npiled\r\npiles\r\npileup\r\npilfer\r\npilferage\r\npilfered\r\npilferer\r\npilfering\r\npilfers\r\npilgrim\r\npilgrimage\r\npilgrimages\r\npilgrimage's\r\npilgrims\r\npilgrim's\r\npiling\r\npilings\r\npill\r\npillage\r\npillaged\r\npillages\r\npillaging\r\npillar\r\npillared\r\npillars\r\npillbox\r\npillboxes\r\npillion\r\npillions\r\npilloried\r\npillories\r\npillory\r\npillorying\r\npillow\r\npillowcase\r\npillowcases\r\npillows\r\npillow's\r\npills\r\npill's\r\npilot\r\npilotage\r\npiloted\r\npilothouse\r\npiloting\r\npilots\r\npilot's\r\npilsner\r\npimento\r\npimiento\r\npimp\r\npimpernel\r\npimping\r\npimple\r\npimpled\r\npimples\r\npimply\r\npimps\r\npin\r\npinafore\r\npinafores\r\npinball\r\npincer\r\npincers\r\npincer's\r\npinch\r\npinchbeck\r\npinched\r\npincher\r\npinches\r\npinching\r\npinchpenny\r\npincushion\r\npine\r\npineal\r\npineapple\r\npineapples\r\npineapple's\r\npinecone\r\npined\r\npines\r\npinesap\r\npinewood\r\npinfeather\r\npinfish\r\npinfold\r\nping\r\npinging\r\npinhead\r\npinheaded\r\npinheads\r\npinhole\r\npinholes\r\npining\r\npinion\r\npinioned\r\npinions\r\npink\r\npinked\r\npinker\r\npinkest\r\npinkeye\r\npinkie\r\npinkies\r\npinking\r\npinkish\r\npinkly\r\npinkness\r\npinkroot\r\npinks\r\npinnace\r\npinnacle\r\npinnacles\r\npinnacle's\r\npinnate\r\npinned\r\npinning\r\npinochle\r\npinpoint\r\npinpointed\r\npinpointing\r\npinpoints\r\npinprick\r\npinpricks\r\npins\r\npin's\r\npinscher\r\npinsetter\r\npinstripe\r\npint\r\npintail\r\npintails\r\npinto\r\npints\r\npint's\r\npinup\r\npinwheel\r\npinwork\r\npinworm\r\npiny\r\npioneer\r\npioneered\r\npioneering\r\npioneers\r\npious\r\npiously\r\npip\r\npipe\r\npiped\r\npipefish\r\npipefitting\r\npipeline\r\npipelined\r\npipelines\r\npipelining\r\npiper\r\npipers\r\npipes\r\npipestone\r\npipette\r\npiping\r\npipit\r\npippin\r\npipsqueak\r\npiquancy\r\npiquant\r\npiquantly\r\npique\r\npiqued\r\npiquet\r\npiquing\r\npiracy\r\npiranha\r\npirate\r\npirated\r\npirates\r\npirate's\r\npiratical\r\npirating\r\npirogue\r\npirouette\r\npirouetting\r\npiscatorial\r\npiscine\r\npismire\r\npiss\r\npissed\r\npisser\r\npisses\r\npissing\r\npistachio\r\npiste\r\npistil\r\npistils\r\npistil's\r\npistol\r\npistols\r\npistol's\r\npiston\r\npistons\r\npiston's\r\npit\r\npita\r\npitch\r\npitchblende\r\npitched\r\npitcher\r\npitchers\r\npitches\r\npitchfork\r\npitchforks\r\npitchfork's\r\npitching\r\npitchman\r\npitchout\r\npitchstone\r\npitchy\r\npiteous\r\npiteously\r\npitfall\r\npitfalls\r\npitfall's\r\npith\r\npithead\r\npithier\r\npithiest\r\npithily\r\npithiness\r\npithy\r\npitiable\r\npitiably\r\npitied\r\npities\r\npitiful\r\npitifully\r\npitiless\r\npitilessly\r\npitilessness\r\npitman\r\npiton\r\npitons\r\npiton's\r\npitot\r\npits\r\npit's\r\npitsaw\r\npittance\r\npittances\r\npittance's\r\npitted\r\npitting\r\npituitary\r\npity\r\npitying\r\npityingly\r\npivot\r\npivotal\r\npivotally\r\npivoted\r\npivoting\r\npivots\r\npixel\r\npixels\r\npixel's\r\npixie\r\npixies\r\npixy\r\npizza\r\npizzazz\r\npizzeria\r\npizzicato\r\nplacard\r\nplacards\r\nplacard's\r\nplacate\r\nplacated\r\nplacates\r\nplacating\r\nplacation\r\nplacatory\r\nplace\r\nplacebo\r\nplaced\r\nplaceholder\r\nplaceless\r\nplaceman\r\nplacemat\r\nplacemats\r\nplacemat's\r\nplacement\r\nplacements\r\nplacement's\r\nplacenta\r\nplacental\r\nplacer\r\nplaces\r\nplacid\r\nplacidity\r\nplacidly\r\nplacing\r\nplacket\r\nplafond\r\nplagiarise\r\nplagiarised\r\nplagiariser\r\nplagiarisers\r\nplagiarises\r\nplagiarising\r\nplagiarism\r\nplagiarist\r\nplagiaristic\r\nplagiary\r\nplagioclase\r\nplague\r\nplagued\r\nplagues\r\nplaguing\r\nplaice\r\nplaid\r\nplaids\r\nplaid's\r\nplain\r\nplainchant\r\nplainclothes\r\nplainclothesman\r\nplainer\r\nplainest\r\nplainly\r\nplainness\r\nplains\r\nplainsman\r\nplainsong\r\nplainspoken\r\nplaint\r\nplaintext\r\nplaintiff\r\nplaintiffs\r\nplaintiff's\r\nplaintive\r\nplaintively\r\nplait\r\nplaiting\r\nplaits\r\nplait's\r\nplan\r\nplanar\r\nplanarian\r\nplanarity\r\nplanchette\r\nplane\r\nplaned\r\nplaneload\r\nplaner\r\nplaners\r\nplanes\r\nplane's\r\nplanet\r\nplanetarium\r\nplanetary\r\nplanetoid\r\nplanetoids\r\nplanets\r\nplanet's\r\nplangent\r\nplank\r\nplanking\r\nplanks\r\nplankton\r\nplanned\r\nplanner\r\nplanners\r\nplanner's\r\nplanning\r\nplano\r\nplans\r\nplan's\r\nplant\r\nplantain\r\nplantar\r\nplantation\r\nplantations\r\nplantation's\r\nplanted\r\nplanter\r\nplanters\r\nplanting\r\nplantings\r\nplants\r\nplaque\r\nplaques\r\nplash\r\nplasma\r\nplasmatic\r\nplasmodium\r\nplaster\r\nplasterboard\r\nplastered\r\nplasterer\r\nplasterers\r\nplastering\r\nplasters\r\nplasterwork\r\nplastic\r\nplastically\r\nplasticity\r\nplasticize\r\nplasticizer\r\nplastics\r\nplastid\r\nplastron\r\nplat\r\nplate\r\nplateau\r\nplateaus\r\nplateau's\r\nplateaux\r\nplated\r\nplateful\r\nplatelayer\r\nplatelayers\r\nplatelet\r\nplatelets\r\nplatelet's\r\nplaten\r\nplatens\r\nplaten's\r\nplates\r\nplatform\r\nplatforms\r\nplatform's\r\nplating\r\nplatinum\r\nplatitude\r\nplatitudes\r\nplatitudinous\r\nplatonic\r\nplatonically\r\nplatoon\r\nplatoons\r\nplatted\r\nplatter\r\nplatters\r\nplatter's\r\nplatting\r\nplaty\r\nplatypus\r\nplatypuses\r\nplatypus's\r\nplaudit\r\nplausibility\r\nplausible\r\nplausibly\r\nplay\r\nplaya\r\nplayability\r\nplayable\r\nplayact\r\nplayback\r\nplaybacks\r\nplaybill\r\nplaybills\r\nplaybook\r\nplayboy\r\nplayboys\r\nplayed\r\nplayer\r\nplayers\r\nplayer's\r\nplayful\r\nplayfully\r\nplayfulness\r\nplaygirl\r\nplaygoer\r\nplaygoers\r\nplayground\r\nplaygrounds\r\nplayground's\r\nplaygroup\r\nplaygroups\r\nplayhouse\r\nplayhouses\r\nplaying\r\nplaymaker\r\nplaymate\r\nplaymates\r\nplaymate's\r\nplayoff\r\nplaypen\r\nplaypens\r\nplaypen's\r\nplayroom\r\nplays\r\nplayschool\r\nplaysuit\r\nplaything\r\nplaythings\r\nplaything's\r\nplaytime\r\nplaywright\r\nplaywrights\r\nplaywright's\r\nplaywriting\r\nplaza\r\nplazas\r\nplea\r\nplead\r\npleaded\r\npleader\r\npleading\r\npleadingly\r\npleadings\r\npleads\r\npleas\r\nplea's\r\npleasance\r\npleasant\r\npleasantly\r\npleasantness\r\npleasantry\r\nplease\r\npleased\r\npleaser\r\npleases\r\npleasing\r\npleasingly\r\npleasurable\r\npleasurably\r\npleasure\r\npleasured\r\npleasures\r\npleasuring\r\npleat\r\npleated\r\npleats\r\nplebe\r\nplebeian\r\nplebes\r\nplebiscite\r\nplebiscites\r\nplebiscite's\r\nplebs\r\nplectrum\r\nplectrums\r\nplectrum's\r\npled\r\npledge\r\npledged\r\npledges\r\npledging\r\nplenary\r\nplenipotentiary\r\nplenitude\r\nplenteous\r\nplenteously\r\nplenteousness\r\nplentiful\r\nplentifully\r\nplenty\r\nplenum\r\npleonasm\r\nplesiosaur\r\nplethora\r\nplethoric\r\npleura\r\npleurae\r\npleural\r\npleurisy\r\nplexus\r\npliability\r\npliable\r\npliancy\r\npliant\r\nplicate\r\nplied\r\npliers\r\nplies\r\nplight\r\nplimsoll\r\nplink\r\nplinked\r\nplinking\r\nplinks\r\nplinth\r\nplod\r\nplodded\r\nplodder\r\nplodding\r\nploddingly\r\nplods\r\nplonk\r\nplop\r\nplopped\r\nplopping\r\nplosive\r\nplot\r\nplots\r\nplot's\r\nplotted\r\nplotter\r\nplotters\r\nplotter's\r\nplotting\r\nplough\r\nploughboy\r\nploughboys\r\nploughed\r\nploughing\r\nploughman\r\nploughmen\r\nploughs\r\nploughshare\r\nploughshares\r\nploughshare's\r\nplover\r\nplovers\r\nploy\r\nploys\r\nploy's\r\npluck\r\nplucked\r\npluckier\r\npluckily\r\npluckiness\r\nplucking\r\nplucky\r\nplug\r\nplugged\r\nplugging\r\nplugs\r\nplug's\r\nplum\r\nplumage\r\nplumaged\r\nplumages\r\nplumb\r\nplumbed\r\nplumber\r\nplumbers\r\nplumbic\r\nplumbing\r\nplumbs\r\nplumb's\r\nplume\r\nplumed\r\nplumes\r\nplumier\r\npluming\r\nplummet\r\nplummeted\r\nplummeting\r\nplummets\r\nplumose\r\nplump\r\nplumped\r\nplumper\r\nplumpness\r\nplums\r\nplum's\r\nplumy\r\nplunder\r\nplundered\r\nplunderer\r\nplunderers\r\nplundering\r\nplunders\r\nplunge\r\nplunged\r\nplunger\r\nplungers\r\nplunges\r\nplunging\r\nplunk\r\nplunking\r\npluperfect\r\nplural\r\npluralism\r\npluralist\r\npluralistic\r\npluralistically\r\npluralists\r\nplurality\r\nplurals\r\nplus\r\npluses\r\nplush\r\nplusses\r\nplutocracy\r\nplutocrat\r\nplutocratic\r\nplutonian\r\nplutonic\r\nplutonium\r\npluvial\r\nply\r\nplying\r\nplywood\r\npneuma\r\npneumatic\r\npneumatically\r\npneumatics\r\npneumoconiosis\r\npneumonia\r\npneumonic\r\npoach\r\npoached\r\npoacher\r\npoachers\r\npoaches\r\npoaching\r\npock\r\npocket\r\npocketbook\r\npocketbooks\r\npocketbook's\r\npocketed\r\npocketful\r\npocketing\r\npockets\r\npockmark\r\npod\r\npodgier\r\npodgy\r\npodia\r\npodiatric\r\npodiatrist\r\npodiatry\r\npodium\r\npods\r\npod's\r\npoem\r\npoems\r\npoem's\r\npoesies\r\npoesy\r\npoet\r\npoetaster\r\npoetess\r\npoetic\r\npoetical\r\npoetically\r\npoeticise\r\npoeticised\r\npoeticises\r\npoeticising\r\npoeticism\r\npoetics\r\npoetise\r\npoetised\r\npoetises\r\npoetising\r\npoetries\r\npoetry\r\npoetry's\r\npoets\r\npoet's\r\npogo\r\npogrom\r\npogroms\r\npoi\r\npoignancy\r\npoignant\r\npoignantly\r\npoinsettia\r\npoint\r\npointed\r\npointedly\r\npointer\r\npointers\r\npointier\r\npointiest\r\npointillism\r\npointillist\r\npointing\r\npointless\r\npointlessly\r\npointlessness\r\npoints\r\npointy\r\npoise\r\npoised\r\npoises\r\npoising\r\npoison\r\npoisoned\r\npoisoning\r\npoisonous\r\npoisonously\r\npoisons\r\npoke\r\npokeberry\r\npoked\r\npoker\r\npokerfaced\r\npokes\r\npokeweed\r\npokey\r\npokier\r\npokily\r\npokiness\r\npoking\r\npoky\r\npolar\r\npolarisation\r\npolarisations\r\npolarisation's\r\npolarise\r\npolarised\r\npolarises\r\npolarising\r\npolarities\r\npolarity\r\npolarity's\r\npolder\r\npole\r\npoleaxe\r\npolecat\r\npoled\r\npolemic\r\npolemical\r\npolemically\r\npolemicist\r\npolemics\r\npolemist\r\npoles\r\npolestar\r\npolice\r\npoliced\r\npoliceman\r\npoliceman's\r\npolicemen\r\npolicemen's\r\npolices\r\npolice's\r\npolicewoman\r\npolicewoman's\r\npolicewomen\r\npolicies\r\npolicing\r\npolicy\r\npolicyholder\r\npolicyholders\r\npolicymaker\r\npolicymakers\r\npolicymaking\r\npolicy's\r\npoling\r\npolio\r\npoliomyelitis\r\npoliovirus\r\npolis\r\npolish\r\npolished\r\npolisher\r\npolishers\r\npolishes\r\npolishing\r\npolitburo\r\npolite\r\npolitely\r\npoliteness\r\npoliter\r\npolitest\r\npolitic\r\npolitical\r\npolitically\r\npolitician\r\npoliticians\r\npolitician's\r\npoliticisation\r\npoliticise\r\npoliticised\r\npoliticises\r\npoliticising\r\npoliticking\r\npolitico\r\npoliticos\r\npolitics\r\npolities\r\npolity\r\npolka\r\npolkas\r\npolka's\r\npoll\r\npolled\r\npollen\r\npollex\r\npollinate\r\npollinated\r\npollinates\r\npollinating\r\npollination\r\npollinator\r\npolling\r\npolliwog\r\npolloi\r\npolls\r\npollster\r\npollutant\r\npollutants\r\npollute\r\npolluted\r\npolluter\r\npollutes\r\npolluting\r\npollution\r\npollywog\r\npollywogs\r\npollywog's\r\npolo\r\npolonaise\r\npolonium\r\npoltergeist\r\npoltroon\r\npoltroonery\r\npoly\r\npolyamide\r\npolyandrous\r\npolyandry\r\npolycarbonate\r\npolycentrism\r\npolychromatic\r\npolychrome\r\npolyclinic\r\npolycrystalline\r\npolyester\r\npolyesters\r\npolyethylene\r\npolygamist\r\npolygamous\r\npolygamy\r\npolygenetic\r\npolyglot\r\npolygon\r\npolygonal\r\npolygons\r\npolygon's\r\npolygraph\r\npolyhedral\r\npolyhedron\r\npolymath\r\npolymer\r\npolymeric\r\npolymerisation\r\npolymerisations\r\npolymerisation's\r\npolymerise\r\npolymerises\r\npolymers\r\npolymer's\r\npolymorph\r\npolymorphism\r\npolymorphous\r\npolynomial\r\npolynomials\r\npolynomial's\r\npolyp\r\npolypeptide\r\npolyphone\r\npolyphonic\r\npolyphonically\r\npolyphony\r\npolyphosphate\r\npolyphosphates\r\npolypropylene\r\npolyrhythmic\r\npolysaccharide\r\npolysaccharides\r\npolystyrene\r\npolysyllabic\r\npolysyllabically\r\npolysyllable\r\npolytechnic\r\npolytheism\r\npolytheist\r\npolytheistic\r\npolythene\r\npolytonal\r\npolytonality\r\npolytonally\r\npolyunsaturated\r\npolyurethane\r\npolyvalence\r\npolyvalent\r\npolyvinyl\r\npomade\r\npomaded\r\npomades\r\npomander\r\npomegranate\r\npommel\r\npomp\r\npompadour\r\npompano\r\npompon\r\npompons\r\npomposity\r\npompous\r\npompously\r\npompousness\r\nponcho\r\npond\r\nponder\r\npondered\r\npondering\r\nponderosa\r\nponderosas\r\nponderosa's\r\nponderous\r\nponderously\r\nponderousness\r\nponders\r\nponds\r\npondweed\r\npone\r\npong\r\npongee\r\nponiard\r\nponies\r\npontiff\r\npontifical\r\npontificate\r\npontificated\r\npontificates\r\npontificating\r\npontificator\r\npontoon\r\npony\r\npony's\r\nponytail\r\npooch\r\npoodle\r\npoof\r\npooh\r\npool\r\npooled\r\npooling\r\npoolroom\r\npools\r\npoop\r\npoor\r\npoorer\r\npoorest\r\npoorhouse\r\npoorly\r\npoorness\r\npop\r\npopcorn\r\npope\r\npopery\r\npopes\r\npope's\r\npopeyed\r\npopgun\r\npopinjay\r\npopish\r\npoplar\r\npoplin\r\npopover\r\npoppa\r\npopped\r\npopper\r\npoppies\r\npopping\r\npoppy\r\npoppycock\r\npoppy's\r\npops\r\npop's\r\npopulace\r\npopular\r\npopularisation\r\npopularisations\r\npopularisation's\r\npopularise\r\npopularised\r\npopularises\r\npopularising\r\npopularity\r\npopularly\r\npopulate\r\npopulated\r\npopulates\r\npopulating\r\npopulation\r\npopulations\r\npopulism\r\npopulist\r\npopulous\r\npopulously\r\nporcelain\r\nporch\r\nporches\r\nporch's\r\nporcine\r\nporcupine\r\nporcupines\r\nporcupine's\r\npore\r\npored\r\npores\r\nporgy\r\nporing\r\npork\r\nporker\r\nporkpie\r\nporky\r\nporn\r\npornographer\r\npornographic\r\npornographically\r\npornography\r\nporosity\r\nporous\r\nporously\r\nporphyry\r\nporpoise\r\nporpoises\r\nporridge\r\nporringer\r\nport\r\nportability\r\nportable\r\nportables\r\nportably\r\nportage\r\nportaged\r\nportaging\r\nportal\r\nportals\r\nportal's\r\nportative\r\nportcullis\r\nported\r\nportend\r\nportended\r\nportending\r\nportends\r\nportent\r\nportentous\r\nportentously\r\nportentousness\r\nportents\r\nporter\r\nporterhouse\r\nporters\r\nportfolio\r\nportfolios\r\nporthole\r\nportico\r\nportiere\r\nporting\r\nportion\r\nportioned\r\nportioning\r\nportions\r\nportion's\r\nportlier\r\nportliness\r\nportly\r\nportmanteau\r\nportmanteaus\r\nportrait\r\nportraitist\r\nportraits\r\nportrait's\r\nportraiture\r\nportray\r\nportrayal\r\nportrayals\r\nportrayed\r\nportrayer\r\nportraying\r\nportrays\r\nports\r\npose\r\nposed\r\nposer\r\nposers\r\nposes\r\nposeur\r\nposeurs\r\nposh\r\nposies\r\nposing\r\nposit\r\nposited\r\npositing\r\nposition\r\npositional\r\npositioned\r\npositioning\r\npositions\r\npositive\r\npositively\r\npositives\r\npositivism\r\npositivist\r\npositivistic\r\npositivists\r\npositron\r\nposits\r\nposse\r\nposses\r\npossess\r\npossessed\r\npossesses\r\npossessing\r\npossession\r\npossessions\r\npossession's\r\npossessive\r\npossessively\r\npossessiveness\r\npossessives\r\npossessive's\r\npossessor\r\npossessors\r\npossessor's\r\npossibilities\r\npossibility\r\npossibility's\r\npossible\r\npossibly\r\npossum\r\npossums\r\npossum's\r\npost\r\npostage\r\npostal\r\npostbag\r\npostbags\r\npostcard\r\npostcards\r\npostcard's\r\npostclassical\r\npostcode\r\npostcodes\r\npostcolonial\r\npostdate\r\npostdates\r\npostdating\r\npostdiluvian\r\npostdoctoral\r\nposted\r\nposter\r\nposterior\r\nposterity\r\npostern\r\nposters\r\nposter's\r\npostexilic\r\npostfix\r\npostfixes\r\npostglacial\r\npostgraduate\r\nposthole\r\nposthumous\r\nposthumously\r\nposthypnotic\r\npostimpressionism\r\nposting\r\npostings\r\npostlude\r\npostludes\r\npostman\r\npostmark\r\npostmarked\r\npostmarks\r\npostmaster\r\npostmasters\r\npostmaster's\r\npostmen\r\npostmenopausal\r\npostmeridian\r\npostmillenarian\r\npostmillenarianism\r\npostmillennial\r\npostmillennialism\r\npostmillennialist\r\npostmistress\r\npostnasal\r\npostnatal\r\npostnuptial\r\npostnuptially\r\npostoperative\r\npostoperatively\r\npostorbital\r\npostpartum\r\npostpone\r\npostponed\r\npostponement\r\npostpones\r\npostponing\r\npostposition\r\npostpositional\r\npostpositionally\r\npostpositions\r\npostpositive\r\npostpositively\r\npostprocessor\r\npostprocessors\r\nposts\r\npostscript\r\npostscripts\r\npostscript's\r\npostsecondary\r\npostsynaptic\r\nposttraumatic\r\npostulant\r\npostulate\r\npostulated\r\npostulates\r\npostulating\r\npostulation\r\npostulations\r\npostulator\r\npostural\r\nposture\r\npostured\r\npostures\r\nposture's\r\nposturing\r\npostvocalic\r\nposy\r\npot\r\npotable\r\npotage\r\npotash\r\npotassium\r\npotation\r\npotato\r\npotatoes\r\npotbellied\r\npotbelly\r\npotboil\r\npotboilers\r\npotboy\r\npoteen\r\npotency\r\npotent\r\npotentate\r\npotentates\r\npotentate's\r\npotential\r\npotentialities\r\npotentiality\r\npotentially\r\npotentials\r\npotentiate\r\npotentiometer\r\npotentiometers\r\npotentiometer's\r\npotently\r\npothead\r\npotherb\r\npothole\r\npotholed\r\npotholing\r\npothook\r\npothouse\r\npothunter\r\npotion\r\npotions\r\npotlatch\r\npotlatches\r\npotluck\r\npotpie\r\npotpourri\r\npots\r\npot's\r\npotsherd\r\npotstone\r\npottage\r\npotted\r\npotter\r\npotteries\r\npotters\r\npotter's\r\npottery\r\npotties\r\npotting\r\npotty\r\npouch\r\npouched\r\npouches\r\npouch's\r\npouf\r\npoulterer\r\npoultice\r\npoultices\r\npoultry\r\npoultryman\r\npounce\r\npounced\r\npounces\r\npouncing\r\npound\r\npoundage\r\npoundal\r\npounded\r\npounder\r\npounding\r\npounds\r\npour\r\npourboire\r\npoured\r\npourer\r\npourers\r\npouring\r\npours\r\npout\r\npouted\r\npouter\r\npouting\r\npouts\r\npoverty\r\npowder\r\npowdered\r\npowdering\r\npowders\r\npowdery\r\npower\r\npowerboat\r\npowered\r\npowerful\r\npowerfully\r\npowerfulness\r\npowerhouse\r\npowerhouses\r\npowerhouse's\r\npowering\r\npowerless\r\npowerlessly\r\npowerlessness\r\npowers\r\npowwow\r\npox\r\npoxes\r\npoxvirus\r\npracticability\r\npracticable\r\npracticably\r\npractical\r\npracticalities\r\npracticality\r\npractically\r\npractice\r\npractices\r\npractice's\r\npracticum\r\npractise\r\npractised\r\npractises\r\npractising\r\npractitioner\r\npractitioners\r\npractitioner's\r\npraecox\r\npraetor\r\npragmatic\r\npragmatically\r\npragmatics\r\npragmatism\r\npragmatist\r\npragmatists\r\nprairie\r\nprairies\r\npraise\r\npraised\r\npraises\r\npraiseworthily\r\npraiseworthiness\r\npraiseworthy\r\npraising\r\npraline\r\npram\r\nprams\r\nprance\r\npranced\r\nprances\r\nprancing\r\nprang\r\nprank\r\nprankish\r\nprankishness\r\npranks\r\nprank's\r\nprankster\r\npranksters\r\npraseodymium\r\nprate\r\nprated\r\nprates\r\npratfall\r\nprating\r\nprattle\r\nprattled\r\nprattler\r\nprattles\r\nprattling\r\nprawn\r\nprawns\r\npraxes\r\npraxis\r\npray\r\nprayed\r\nprayer\r\nprayerful\r\nprayerfully\r\nprayerfulness\r\nprayers\r\nprayer's\r\npraying\r\nprays\r\npre\r\npreach\r\npreached\r\npreacher\r\npreachers\r\npreaches\r\npreaching\r\npreachment\r\npreachy\r\npreadolescence\r\npreadolescent\r\npreamble\r\npreambles\r\npreamplifier\r\npreamplifiers\r\nprearrange\r\nprearranged\r\nprearrangement\r\nprebend\r\nprebendary\r\nprecarious\r\nprecariously\r\nprecariousness\r\nprecast\r\nprecaution\r\nprecautionary\r\nprecautions\r\nprecaution's\r\nprecautious\r\nprecede\r\npreceded\r\nprecedence\r\nprecedence's\r\nprecedent\r\nprecedents\r\nprecedes\r\npreceding\r\nprecept\r\npreceptor\r\nprecepts\r\nprecept's\r\nprecession\r\nprecinct\r\nprecincts\r\nprecinct's\r\nprecious\r\npreciously\r\npreciousness\r\nprecipice\r\nprecipitance\r\nprecipitancy\r\nprecipitant\r\nprecipitate\r\nprecipitated\r\nprecipitately\r\nprecipitates\r\nprecipitating\r\nprecipitation\r\nprecipitator\r\nprecipitin\r\nprecipitous\r\nprecipitously\r\nprécis\r\nprecise\r\nprecisely\r\npreciseness\r\nprecision\r\nprecisionist\r\nprecisions\r\npreclude\r\nprecluded\r\nprecludes\r\nprecluding\r\npreclusion\r\npreclusive\r\nprecocious\r\nprecociously\r\nprecocity\r\nprecognition\r\nprecognitive\r\nprecompiled\r\npreconceive\r\npreconceived\r\npreconception\r\npreconceptions\r\npreconception's\r\nprecondition\r\npreconditioned\r\npreconditions\r\npreconscious\r\nprecook\r\nprecooked\r\nprecursor\r\nprecursors\r\nprecursor's\r\nprecursory\r\npredaceous\r\npredacious\r\npredate\r\npredated\r\npredates\r\npredating\r\npredation\r\npredator\r\npredatorily\r\npredators\r\npredator's\r\npredatory\r\npredawn\r\npredecease\r\npredecessor\r\npredecessors\r\npredecessor's\r\npredefine\r\npredefined\r\npredefines\r\npredefining\r\npredefinition\r\npredefinitions\r\npredefinition's\r\npredestination\r\npredestine\r\npredestined\r\npredetermination\r\npredetermine\r\npredetermined\r\npredetermines\r\npredetermining\r\npredicable\r\npredicament\r\npredicate\r\npredicated\r\npredicates\r\npredicating\r\npredication\r\npredications\r\npredicative\r\npredicator\r\npredict\r\npredictability\r\npredictable\r\npredictably\r\npredicted\r\npredicting\r\nprediction\r\npredictions\r\nprediction's\r\npredictive\r\npredictor\r\npredictors\r\npredicts\r\npredigest\r\npredilection\r\npredilections\r\npredispose\r\npredisposed\r\npredisposes\r\npredisposition\r\npredispositions\r\npredominance\r\npredominant\r\npredominantly\r\npredominate\r\npredominated\r\npredominately\r\npredominates\r\npredominating\r\npredomination\r\npredrilled\r\npreemie\r\npreen\r\npreening\r\nprefab\r\nprefabricate\r\nprefabricated\r\nprefabrication\r\npreface\r\nprefaced\r\nprefacer\r\nprefaces\r\nprefacing\r\nprefatorily\r\nprefatory\r\nprefect\r\nprefects\r\nprefecture\r\nprefectures\r\nprefer\r\npreferable\r\npreferably\r\npreference\r\npreferences\r\npreference's\r\npreferential\r\npreferentially\r\npreferment\r\npreferred\r\npreferring\r\nprefers\r\nprefigure\r\nprefigured\r\nprefigures\r\nprefiguring\r\nprefix\r\nprefixed\r\nprefixes\r\nprefixing\r\npreformed\r\nprefrontal\r\npregnable\r\npregnancies\r\npregnancy\r\npregnant\r\npreheat\r\npreheated\r\nprehensile\r\nprehistoric\r\nprehistorically\r\nprehistory\r\nprejudge\r\nprejudged\r\nprejudgement\r\nprejudice\r\nprejudiced\r\nprejudices\r\nprejudicial\r\nprejudicially\r\nprejudicing\r\nprelacy\r\nprelate\r\nprelature\r\npreliminaries\r\npreliminarily\r\npreliminary\r\nprelims\r\npreliterate\r\nprelude\r\npreludes\r\nprelude's\r\npremarital\r\npremature\r\nprematurely\r\npremed\r\npremedical\r\npremeditate\r\npremeditated\r\npremeditatedly\r\npremeditation\r\npremeditative\r\npremeditator\r\npremenstrual\r\npremier\r\npremiere\r\npremiered\r\npremieres\r\npremiering\r\npremiers\r\npremier's\r\npremiership\r\npremise\r\npremised\r\npremises\r\npremise's\r\npremising\r\npremium\r\npremiums\r\npremium's\r\npremix\r\npremixed\r\npremolar\r\npremonition\r\npremonitions\r\npremonitory\r\nprenatal\r\npreoccupancy\r\npreoccupation\r\npreoccupations\r\npreoccupied\r\npreoccupies\r\npreoccupy\r\npreoperative\r\npreoperatively\r\npreordain\r\npreordained\r\npreordaining\r\npreordainment\r\npreordains\r\npreordination\r\nprep\r\npreparation\r\npreparations\r\npreparation's\r\npreparative\r\npreparatory\r\nprepare\r\nprepared\r\npreparedly\r\npreparedness\r\nprepares\r\npreparing\r\nprepay\r\nprepayment\r\npreponderance\r\npreponderances\r\npreponderant\r\npreponderantly\r\npreponderate\r\npreponderating\r\npreposition\r\nprepositional\r\nprepositions\r\npreposition's\r\nprepossess\r\nprepossessing\r\nprepossession\r\npreposterous\r\npreposterously\r\npreposterousness\r\npreppie\r\nprepping\r\npreprint\r\npreprints\r\nprepubescent\r\nprepublication\r\nprepuce\r\nprerecord\r\nprerequisite\r\nprerequisites\r\nprerequisite's\r\nprerogative\r\nprerogatives\r\nprerogative's\r\npresage\r\npresaged\r\npresages\r\npresaging\r\npresbyopia\r\npresbyter\r\npresbytery\r\npreschool\r\npreschooler\r\nprescience\r\nprescience's\r\nprescient\r\npresciently\r\nprescribe\r\nprescribed\r\nprescribes\r\nprescribing\r\nprescript\r\nprescription\r\nprescriptions\r\nprescription's\r\nprescriptive\r\nprescriptively\r\npresence\r\npresences\r\npresence's\r\npresent\r\npresentable\r\npresentably\r\npresentation\r\npresentational\r\npresentations\r\npresentation's\r\npresented\r\npresenter\r\npresenters\r\npresentiment\r\npresenting\r\npresently\r\npresentment\r\npresentments\r\npresents\r\npreservation\r\npreservationist\r\npreservations\r\npreservative\r\npreservatives\r\npreservative's\r\npreserve\r\npreserved\r\npreserver\r\npreservers\r\npreserves\r\npreserving\r\npreset\r\npresets\r\npresetting\r\npreside\r\npresided\r\npresidency\r\npresident\r\npresidential\r\npresidents\r\npresident's\r\npresides\r\npresiding\r\npresidium\r\npress\r\npressboard\r\npressed\r\npresser\r\npresses\r\npressing\r\npressingly\r\npressings\r\npressman\r\npressmark\r\npressmen\r\npressroom\r\npressrun\r\npressure\r\npressured\r\npressures\r\npressuring\r\npressurisation\r\npressurise\r\npressurised\r\npressurises\r\npressurising\r\npresswork\r\nprestidigitation\r\nprestidigitator\r\nprestige\r\nprestigious\r\nprestigiously\r\npresto\r\nprestos\r\npresumable\r\npresumably\r\npresume\r\npresumed\r\npresumes\r\npresuming\r\npresumption\r\npresumptions\r\npresumption's\r\npresumptive\r\npresumptively\r\npresumptuous\r\npresumptuously\r\npresumptuousness\r\npresuppose\r\npresupposed\r\npresupposes\r\npresupposing\r\npresupposition\r\npresuppositions\r\npreteen\r\npretence\r\npretences\r\npretend\r\npretended\r\npretender\r\npretenders\r\npretending\r\npretends\r\npretentious\r\npretentiously\r\npretentiousness\r\npreterit\r\npretermission\r\npreternatural\r\npreternaturally\r\npreternaturalness\r\npretext\r\npretexts\r\npretext's\r\nprettied\r\nprettier\r\npretties\r\nprettiest\r\nprettification\r\nprettify\r\nprettily\r\nprettiness\r\npretty\r\nprettying\r\npretzel\r\npretzels\r\nprevail\r\nprevailed\r\nprevailing\r\nprevailingly\r\nprevails\r\nprevalence\r\nprevalent\r\nprevalently\r\nprevaricate\r\nprevaricated\r\nprevaricates\r\nprevaricating\r\nprevarication\r\nprevaricator\r\nprevent\r\npreventability\r\npreventable\r\npreventative\r\nprevented\r\npreventing\r\nprevention\r\npreventions\r\npreventive\r\npreventively\r\npreventives\r\nprevents\r\npreverbal\r\npreview\r\npreviewed\r\npreviewing\r\npreviews\r\nprevious\r\npreviously\r\nprevision\r\nprevisions\r\nprevocalic\r\nprevocational\r\nprey\r\npreyed\r\npreying\r\npreys\r\nprice\r\npriced\r\npriceless\r\nprices\r\npricey\r\npricier\r\npricing\r\nprick\r\npricked\r\npricking\r\nprickle\r\nprickled\r\npricklier\r\nprickliness\r\nprickling\r\nprickly\r\npricks\r\npride\r\nprided\r\nprideful\r\nprides\r\npriding\r\npried\r\nprier\r\npries\r\npriest\r\npriestess\r\npriestesses\r\npriesthood\r\npriestly\r\npriests\r\nprig\r\npriggish\r\npriggishly\r\npriggishness\r\nprim\r\nprima\r\nprimacy\r\nprimal\r\nprimaries\r\nprimarily\r\nprimary\r\nprimary's\r\nprimate\r\nprimates\r\nprime\r\nprimed\r\nprimer\r\nprimers\r\nprimes\r\nprimeval\r\npriming\r\nprimitive\r\nprimitively\r\nprimitiveness\r\nprimitives\r\nprimitivism\r\nprimly\r\nprimmer\r\nprimmest\r\nprimness\r\nprimo\r\nprimogenitor\r\nprimogeniture\r\nprimordial\r\nprimordially\r\nprimp\r\nprimping\r\nprimrose\r\nprimus\r\nprince\r\nprincedom\r\nprincely\r\nprinces\r\nprincess\r\nprincesses\r\nprincess's\r\nprincipal\r\nprincipalities\r\nprincipality\r\nprincipality's\r\nprincipally\r\nprincipals\r\nprincipium\r\nprinciple\r\nprincipled\r\nprinciples\r\nprink\r\nprint\r\nprintability\r\nprintable\r\nprinted\r\nprinter\r\nprinters\r\nprinting\r\nprintmaker\r\nprintmakers\r\nprintmaking\r\nprintout\r\nprintouts\r\nprints\r\nprior\r\nprioress\r\nprioresses\r\npriori\r\npriorities\r\nprioritisation\r\nprioritise\r\nprioritised\r\nprioritises\r\nprioritising\r\npriority\r\npriority's\r\npriors\r\npriory\r\nprise\r\nprism\r\nprismatic\r\nprisms\r\nprism's\r\nprison\r\nprisoner\r\nprisoners\r\nprisoner's\r\nprisons\r\nprissier\r\nprissily\r\nprissiness\r\nprissy\r\npristine\r\npristinely\r\nprivacies\r\nprivacy\r\nprivate\r\nprivateer\r\nprivateers\r\nprivateer's\r\nprivately\r\nprivates\r\nprivation\r\nprivations\r\nprivatisation\r\nprivatise\r\nprivatised\r\nprivatising\r\nprivet\r\nprivies\r\nprivilege\r\nprivileged\r\nprivileges\r\nprivy\r\nprivy's\r\nprix\r\nprize\r\nprized\r\nprizes\r\nprizing\r\npro\r\nproactive\r\nprobabilistic\r\nprobabilistically\r\nprobabilities\r\nprobability\r\nprobable\r\nprobably\r\nprobate\r\nprobated\r\nprobates\r\nprobating\r\nprobation\r\nprobationary\r\nprobationer\r\nprobationers\r\nprobative\r\nprobe\r\nprobed\r\nprobes\r\nprobing\r\nprobity\r\nproblem\r\nproblematic\r\nproblematical\r\nproblematically\r\nproblems\r\nproblem's\r\nproboscis\r\nproc\r\nprocaine\r\nprocedural\r\nprocedurally\r\nprocedure\r\nprocedures\r\nprocedure's\r\nproceed\r\nproceeded\r\nproceeding\r\nproceedings\r\nproceeds\r\nprocess\r\nprocessed\r\nprocesses\r\nprocessing\r\nprocession\r\nprocessional\r\nprocessor\r\nprocessors\r\nprocessor's\r\nprocess's\r\nproclaim\r\nproclaimed\r\nproclaiming\r\nproclaims\r\nproclamation\r\nproclamations\r\nproclamation's\r\nproclivities\r\nproclivity\r\nproclivity's\r\nproconsul\r\nprocrastinate\r\nprocrastinated\r\nprocrastinates\r\nprocrastinating\r\nprocrastination\r\nprocrastinator\r\nprocrastinators\r\nprocrastinator's\r\nprocreant\r\nprocreate\r\nprocreation\r\nprocreative\r\nprocreativity\r\nprocreator\r\nprocrustean\r\nproctologic\r\nproctologist\r\nproctology\r\nproctor\r\nproctored\r\nproctoring\r\nproctors\r\nproctor's\r\nproctorship\r\nprocumbent\r\nprocurable\r\nprocurator\r\nprocure\r\nprocured\r\nprocurement\r\nprocurements\r\nprocurement's\r\nprocurer\r\nprocurers\r\nprocures\r\nprocuress\r\nprocuring\r\nprod\r\nprodded\r\nprodder\r\nprodding\r\nprodigal\r\nprodigality\r\nprodigally\r\nprodigies\r\nprodigious\r\nprodigiously\r\nprodigy\r\nproduce\r\nproduced\r\nproducer\r\nproducers\r\nproduces\r\nproducible\r\nproducing\r\nproduct\r\nproduction\r\nproductions\r\nproduction's\r\nproductive\r\nproductively\r\nproductiveness\r\nproductivities\r\nproductivity\r\nproducts\r\nproduct's\r\nproem\r\nprofanation\r\nprofane\r\nprofaned\r\nprofanely\r\nprofaneness\r\nprofaner\r\nprofaning\r\nprofanity\r\nprofess\r\nprofessed\r\nprofessedly\r\nprofesses\r\nprofessing\r\nprofession\r\nprofessional\r\nprofessionalism\r\nprofessionalisms\r\nprofessionally\r\nprofessionals\r\nprofessions\r\nprofession's\r\nprofessor\r\nprofessorial\r\nprofessorially\r\nprofessors\r\nprofessor's\r\nprofessorship\r\nproffer\r\nproffered\r\nproffering\r\nproffers\r\nproficiencies\r\nproficiency\r\nproficient\r\nproficiently\r\nprofile\r\nprofiled\r\nprofiler\r\nprofilers\r\nprofiler's\r\nprofiles\r\nprofiling\r\nprofit\r\nprofitability\r\nprofitable\r\nprofitableness\r\nprofitably\r\nprofited\r\nprofiteer\r\nprofiteers\r\nprofiteer's\r\nprofiting\r\nprofitless\r\nprofits\r\nprofit's\r\nprofligacy\r\nprofligate\r\nprofligately\r\nprofligates\r\nprofound\r\nprofoundest\r\nprofoundly\r\nprofoundness\r\nprofundity\r\nprofuse\r\nprofusely\r\nprofuseness\r\nprofusion\r\nprogenitor\r\nprogeny\r\nprogesterone\r\nprognoses\r\nprognosis\r\nprognostic\r\nprognosticate\r\nprognostication\r\nprognosticator\r\nprogram\r\nprogrammability\r\nprogrammable\r\nprogrammatic\r\nprogrammatically\r\nprogramme\r\nprogrammed\r\nprogrammer\r\nprogrammers\r\nprogrammer's\r\nprogrammes\r\nprogramme's\r\nprogramming\r\nprograms\r\nprogram's\r\nprogress\r\nprogressed\r\nprogresses\r\nprogressing\r\nprogression\r\nprogressions\r\nprogression's\r\nprogressive\r\nprogressively\r\nprogressiveness\r\nprogressivism\r\nprohibit\r\nprohibited\r\nprohibiting\r\nprohibition\r\nprohibitionist\r\nprohibitions\r\nprohibition's\r\nprohibitive\r\nprohibitively\r\nprohibits\r\nproject\r\nprojected\r\nprojectile\r\nprojectiles\r\nprojecting\r\nprojection\r\nprojectionist\r\nprojectionists\r\nprojections\r\nprojection's\r\nprojective\r\nprojector\r\nprojectors\r\nprojector's\r\nprojects\r\nproject's\r\nprokaryote\r\nprokaryotic\r\nprolapsed\r\nprolegomena\r\nprolegomenon\r\nprolepsis\r\nproletarian\r\nproletariat\r\nproliferate\r\nproliferated\r\nproliferates\r\nproliferating\r\nproliferation\r\nprolific\r\nprolificacy\r\nprolifically\r\nprolix\r\nprolixity\r\nprolocutor\r\nprolog\r\nprologue\r\nprologues\r\nprologue's\r\nprolong\r\nprolongation\r\nprolonged\r\nprolonging\r\nprolongs\r\nprolusion\r\nprolusions\r\nprom\r\npromenade\r\npromenades\r\npromenade's\r\npromenading\r\npromethium\r\nprominence\r\nprominent\r\nprominently\r\npromiscuity\r\npromiscuity's\r\npromiscuous\r\npromiscuously\r\npromiscuousness\r\npromise\r\npromised\r\npromises\r\npromising\r\npromisingly\r\npromissory\r\npromontories\r\npromontory\r\npromote\r\npromoted\r\npromoter\r\npromoters\r\npromotes\r\npromoting\r\npromotion\r\npromotional\r\npromotions\r\nprompt\r\npromptbook\r\npromptbooks\r\nprompted\r\nprompter\r\nprompters\r\npromptest\r\nprompting\r\npromptings\r\npromptitude\r\npromptly\r\npromptness\r\nprompts\r\npromulgate\r\npromulgated\r\npromulgates\r\npromulgating\r\npromulgation\r\npromulgations\r\npromulgator\r\npromulgators\r\nprone\r\nproneness\r\nprong\r\npronged\r\npronghorn\r\npronghorns\r\nprongs\r\npronominal\r\npronominally\r\npronoun\r\npronounce\r\npronounceable\r\npronounced\r\npronouncedly\r\npronouncement\r\npronouncements\r\npronouncement's\r\npronounces\r\npronouncing\r\npronouns\r\npronoun's\r\npronto\r\npronunciation\r\npronunciations\r\npronunciation's\r\nproof\r\nproofed\r\nproofing\r\nproofread\r\nproofreading\r\nproofreads\r\nproofs\r\nproof's\r\nprop\r\npropaganda\r\npropagandise\r\npropagandised\r\npropagandises\r\npropagandising\r\npropagandist\r\npropagandistic\r\npropagandistically\r\npropagandists\r\npropagate\r\npropagated\r\npropagates\r\npropagating\r\npropagation\r\npropagations\r\npropagator\r\npropane\r\npropel\r\npropellant\r\npropellants\r\npropelled\r\npropeller\r\npropellers\r\npropeller's\r\npropelling\r\npropels\r\npropend\r\npropensities\r\npropensity\r\nproper\r\nproperly\r\npropertied\r\nproperties\r\nproperty\r\nprophase\r\nprophecies\r\nprophecy\r\nprophecy's\r\nprophesied\r\nprophesier\r\nprophesies\r\nprophesy\r\nprophesying\r\nprophet\r\nprophetess\r\nprophetic\r\nprophetical\r\nprophetically\r\nprophets\r\nprophet's\r\nprophylactic\r\nprophylaxis\r\npropinquity\r\npropionate\r\npropitiate\r\npropitiation\r\npropitiator\r\npropitiatory\r\npropitious\r\npropitiously\r\npropjet\r\nproponent\r\nproponents\r\nproponent's\r\nproportion\r\nproportional\r\nproportionality\r\nproportionally\r\nproportionate\r\nproportionately\r\nproportioned\r\nproportioning\r\nproportions\r\npropos\r\nproposal\r\nproposals\r\nproposal's\r\npropose\r\nproposed\r\nproposes\r\nproposing\r\nproposition\r\npropositioned\r\npropositioning\r\npropositions\r\npropound\r\npropounded\r\npropounding\r\npropounds\r\npropped\r\npropping\r\nproprietary\r\nproprietor\r\nproprietors\r\nproprietor's\r\nproprietorship\r\nproprietorships\r\nproprietress\r\npropriety\r\nprops\r\npropulsion\r\npropulsions\r\npropulsion's\r\npropulsive\r\npropylene\r\nprorate\r\nprorated\r\nprorating\r\nprorogation\r\nprorogue\r\nprorogued\r\nproroguing\r\npros\r\npro's\r\nprosaic\r\nprosaically\r\nproscenium\r\nprosceniums\r\nproscribe\r\nproscribed\r\nproscribes\r\nproscribing\r\nproscription\r\nproscriptive\r\nproscriptively\r\nprose\r\nprosecutable\r\nprosecute\r\nprosecuted\r\nprosecutes\r\nprosecuting\r\nprosecution\r\nprosecutions\r\nprosecutor\r\nprosecutors\r\nproselyte\r\nproselytise\r\nproselytised\r\nproselytiser\r\nproselytisers\r\nproselytises\r\nproselytising\r\nprosier\r\nprosily\r\nprosing\r\nprosodic\r\nprosodies\r\nprosody\r\nprospect\r\nprospected\r\nprospecting\r\nprospective\r\nprospectively\r\nprospector\r\nprospectors\r\nprospector's\r\nprospects\r\nprospectus\r\nprosper\r\nprospered\r\nprospering\r\nprosperity\r\nprosperous\r\nprosperously\r\nprosperousness\r\nprospers\r\nprostaglandin\r\nprostate\r\nprostheses\r\nprosthesis\r\nprosthetic\r\nprosthetics\r\nprostitute\r\nprostitutes\r\nprostitution\r\nprostrate\r\nprostrated\r\nprostration\r\nprosy\r\nprotactinium\r\nprotagonist\r\nprotagonists\r\nprotean\r\nprotease\r\nproteases\r\nprotect\r\nprotected\r\nprotecting\r\nprotection\r\nprotectionism\r\nprotectionist\r\nprotections\r\nprotection's\r\nprotective\r\nprotectively\r\nprotectiveness\r\nprotector\r\nprotectoral\r\nprotectorate\r\nprotectors\r\nprotector's\r\nprotects\r\nprotein\r\nproteins\r\nprotein's\r\nproteolysis\r\nprotest\r\nprotestant\r\nprotestants\r\nprotestation\r\nprotestations\r\nprotested\r\nprotester\r\nprotesters\r\nprotester's\r\nprotesting\r\nprotestor\r\nprotests\r\nprotest's\r\nproto\r\nprotocol\r\nprotocols\r\nprotocol's\r\nproton\r\nprotons\r\nproton's\r\nprotoplasm\r\nprotoplasmic\r\nprotoplast\r\nprototypal\r\nprototype\r\nprototyped\r\nprototypes\r\nprototype's\r\nprototypic\r\nprototypical\r\nprototypically\r\nprototyping\r\nprotozoa\r\nprotozoan\r\nprotozoon\r\nprotract\r\nprotracted\r\nprotractile\r\nprotraction\r\nprotractor\r\nprotrude\r\nprotruded\r\nprotrudes\r\nprotruding\r\nprotrusion\r\nprotrusions\r\nprotrusion's\r\nprotrusive\r\nprotuberance\r\nprotuberant\r\nproud\r\nprouder\r\nproudest\r\nproudly\r\nprovability\r\nprovable\r\nprovably\r\nprove\r\nproved\r\nproven\r\nprovenance\r\nprovender\r\nprovenience\r\nproverb\r\nproverbial\r\nproverbially\r\nproverbs\r\nproverb's\r\nproves\r\nprovide\r\nprovided\r\nprovidence\r\nprovident\r\nprovidential\r\nprovidentially\r\nprovidently\r\nprovider\r\nproviders\r\nprovides\r\nproviding\r\nprovince\r\nprovinces\r\nprovince's\r\nprovincial\r\nprovincialism\r\nprovinciality\r\nprovincially\r\nproving\r\nprovirus\r\nprovision\r\nprovisional\r\nprovisionally\r\nprovisioned\r\nprovisioning\r\nprovisions\r\nproviso\r\nprovisory\r\nprovocateur\r\nprovocateurs\r\nprovocation\r\nprovocations\r\nprovocative\r\nprovocatively\r\nprovoke\r\nprovoked\r\nprovokes\r\nprovoking\r\nprovokingly\r\nprovolone\r\nprovost\r\nprow\r\nprowess\r\nprowl\r\nprowled\r\nprowler\r\nprowlers\r\nprowling\r\nprowls\r\nprows\r\nprow's\r\nproxies\r\nproximal\r\nproximally\r\nproximate\r\nproximately\r\nproximity\r\nproxy\r\nprude\r\nprudence\r\nprudent\r\nprudential\r\nprudentially\r\nprudently\r\nprudery\r\nprudes\r\nprude's\r\nprudish\r\nprudishly\r\nprudishness\r\nprune\r\npruned\r\nprunes\r\npruning\r\nprurience\r\nprurient\r\nprussic\r\npry\r\nprying\r\npryingly\r\npsalm\r\npsalmist\r\npsalmody\r\npsalms\r\npsalm's\r\npsaltery\r\npseud\r\npseudo\r\npseudonym\r\npseudonymous\r\npseudonyms\r\npseudonym's\r\npseudopodium\r\npseudorandom\r\npseudoscientific\r\npshaw\r\npsittacosis\r\npsoriasis\r\npsych\r\npsyche\r\npsychedelic\r\npsychedelically\r\npsyches\r\npsyche's\r\npsychiatric\r\npsychiatrically\r\npsychiatrist\r\npsychiatrists\r\npsychiatrist's\r\npsychiatry\r\npsychic\r\npsychical\r\npsychically\r\npsychics\r\npsychic's\r\npsycho\r\npsychoacoustics\r\npsychoactive\r\npsychoanalyse\r\npsychoanalyses\r\npsychoanalysis\r\npsychoanalyst\r\npsychoanalytic\r\npsychoanalytical\r\npsychoanalytically\r\npsychobiography\r\npsychobiologic\r\npsychobiological\r\npsychobiology\r\npsychochemical\r\npsychodrama\r\npsychodynamic\r\npsychodynamics\r\npsychogenesis\r\npsychogenetic\r\npsychograph\r\npsychohistory\r\npsychokinetic\r\npsycholinguist\r\npsycholinguistic\r\npsycholinguistics\r\npsychological\r\npsychologically\r\npsychologist\r\npsychologists\r\npsychologist's\r\npsychology\r\npsychometric\r\npsychometrically\r\npsychometrics\r\npsychomotor\r\npsychoneurosis\r\npsychoneurotic\r\npsychopath\r\npsychopathic\r\npsychopathically\r\npsychopathologic\r\npsychopathological\r\npsychopathologist\r\npsychopathology\r\npsychopharmacologic\r\npsychopharmacological\r\npsychopharmacology\r\npsychophysical\r\npsychophysically\r\npsychophysicist\r\npsychophysics\r\npsychophysiology\r\npsychos\r\npsychoses\r\npsychosexual\r\npsychosexuality\r\npsychosexually\r\npsychosis\r\npsychosocial\r\npsychosocially\r\npsychosomatic\r\npsychosomatically\r\npsychosomatics\r\npsychosurgery\r\npsychosurgical\r\npsychotherapeutic\r\npsychotherapeutically\r\npsychotherapeutics\r\npsychotherapist\r\npsychotherapists\r\npsychotherapy\r\npsychotic\r\npsychotically\r\npsychotropic\r\nptarmigan\r\npterodactyl\r\npterodactyls\r\npterodactyl's\r\npterosaur\r\nptomaine\r\nptyalin\r\npub\r\npubertal\r\npuberty\r\npubes\r\npubescence\r\npubescent\r\npubic\r\npubis\r\npublic\r\npublican\r\npublicans\r\npublication\r\npublications\r\npublication's\r\npublicise\r\npublicised\r\npublicises\r\npublicising\r\npublicist\r\npublicists\r\npublicity\r\npublicly\r\npublics\r\npublish\r\npublishable\r\npublished\r\npublisher\r\npublishers\r\npublishes\r\npublishing\r\npubs\r\npub's\r\npuce\r\npuck\r\npucker\r\npuckered\r\npuckering\r\npuckers\r\npuckish\r\npuckishly\r\npudding\r\npuddings\r\npudding's\r\npuddingstone\r\npuddle\r\npuddles\r\npudendum\r\npudgier\r\npudginess\r\npueblo\r\npueblos\r\npuerile\r\npuerperal\r\npuff\r\npuffball\r\npuffballs\r\npuffed\r\npuffer\r\npuffers\r\npuffery\r\npuffin\r\npuffiness\r\npuffing\r\npuffins\r\npuffs\r\npuffy\r\npug\r\npugilism\r\npugilist\r\npugilistic\r\npugmark\r\npugnacious\r\npugnaciously\r\npugnacity\r\npuissance\r\npuissant\r\npuke\r\npuked\r\npukes\r\npuking\r\npukka\r\npulchritude\r\npulchritudinous\r\npuling\r\npull\r\npullback\r\npulled\r\npuller\r\npullet\r\npulley\r\npulleys\r\npulley's\r\npulling\r\npullout\r\npullover\r\npulls\r\npullulate\r\npulmonary\r\npulp\r\npulpiness\r\npulping\r\npulpit\r\npulpits\r\npulpit's\r\npulpwood\r\npulpy\r\npulsar\r\npulsars\r\npulsar's\r\npulsate\r\npulsated\r\npulsates\r\npulsating\r\npulsation\r\npulsations\r\npulse\r\npulsed\r\npulsejet\r\npulses\r\npulsing\r\npulverisation\r\npulverisations\r\npulverisation's\r\npulverise\r\npulverised\r\npulverises\r\npulverising\r\npuma\r\npuma's\r\npumice\r\npumiced\r\npumicing\r\npummel\r\npummelled\r\npummelling\r\npummels\r\npump\r\npumped\r\npumpernickel\r\npumping\r\npumpkin\r\npumpkins\r\npumpkin's\r\npumpkinseed\r\npumpkinseeds\r\npumps\r\npun\r\npunch\r\npunchboard\r\npunchbowl\r\npunchbowls\r\npunched\r\npuncheon\r\npuncher\r\npunchers\r\npuncher's\r\npunches\r\npunchier\r\npunchinello\r\npunching\r\npunchy\r\npunctilio\r\npunctilious\r\npunctiliously\r\npunctiliousness\r\npunctual\r\npunctuality\r\npunctually\r\npunctuate\r\npunctuated\r\npunctuates\r\npunctuating\r\npunctuation\r\npunctuator\r\npuncture\r\npunctured\r\npunctures\r\npuncture's\r\npuncturing\r\npundit\r\npunditry\r\npundits\r\npungency\r\npungent\r\npungently\r\npunier\r\npuniness\r\npunish\r\npunishable\r\npunished\r\npunisher\r\npunishes\r\npunishing\r\npunishment\r\npunishments\r\npunishment's\r\npunitive\r\npunitively\r\npunk\r\npunkah\r\npunks\r\npunning\r\npuns\r\npun's\r\npunster\r\npunsters\r\npunt\r\npunted\r\npunter\r\npunters\r\npunting\r\npunts\r\npuny\r\npup\r\npupa\r\npupae\r\npupas\r\npupate\r\npupated\r\npupates\r\npupating\r\npupation\r\npupfish\r\npupil\r\npupils\r\npupil's\r\npuppet\r\npuppeteer\r\npuppeteers\r\npuppetry\r\npuppets\r\npuppet's\r\npuppies\r\npuppy\r\npuppyish\r\npuppy's\r\npups\r\npup's\r\npurblind\r\npurchasable\r\npurchase\r\npurchased\r\npurchaser\r\npurchasers\r\npurchases\r\npurchasing\r\npurdah\r\npure\r\npureblood\r\npurebred\r\npuree\r\npureed\r\npureeing\r\npurees\r\npuree's\r\npurely\r\npureness\r\npurer\r\npurest\r\npurgation\r\npurgative\r\npurgatorial\r\npurgatory\r\npurge\r\npurged\r\npurges\r\npurging\r\npurification\r\npurifications\r\npurified\r\npurifier\r\npurifiers\r\npurifies\r\npurify\r\npurifying\r\npurism\r\npurist\r\npurists\r\npuritan\r\npuritanical\r\npuritanically\r\npuritans\r\npurity\r\npurl\r\npurled\r\npurler\r\npurlieu\r\npurlin\r\npurling\r\npurloin\r\npurloined\r\npurloiner\r\npurloining\r\npurloins\r\npurple\r\npurpled\r\npurples\r\npurpling\r\npurplish\r\npurport\r\npurported\r\npurportedly\r\npurporting\r\npurports\r\npurpose\r\npurposed\r\npurposeful\r\npurposefully\r\npurposefulness\r\npurposeless\r\npurposelessly\r\npurposelessness\r\npurposely\r\npurposes\r\npurposing\r\npurposive\r\npurposively\r\npurr\r\npurred\r\npurring\r\npurrs\r\npurse\r\npursed\r\npurser\r\npursers\r\npurses\r\npursier\r\npursiness\r\npursing\r\npursuance\r\npursuant\r\npursue\r\npursued\r\npursuer\r\npursuers\r\npursues\r\npursuing\r\npursuit\r\npursuits\r\npursuit's\r\npursuivant\r\npursy\r\npurulence\r\npurulent\r\npurvey\r\npurveyance\r\npurveyed\r\npurveying\r\npurveyor\r\npurveyors\r\npurveys\r\npurview\r\npus\r\npush\r\npushball\r\npushbutton\r\npushbuttons\r\npushcart\r\npushchair\r\npushchairs\r\npushdown\r\npushed\r\npusher\r\npushers\r\npushes\r\npushier\r\npushily\r\npushiness\r\npushing\r\npushover\r\npushovers\r\npushover's\r\npushpin\r\npushpins\r\npushpin's\r\npushrod\r\npushrods\r\npushy\r\npusillanimity\r\npusillanimous\r\npusillanimously\r\npuss\r\npussies\r\npussy\r\npussycat\r\npussyfoot\r\npussyfooter\r\npussyfooting\r\npustule\r\npustules\r\nput\r\nputative\r\nputatively\r\nputdown\r\nputdowns\r\nputdown's\r\nputlog\r\nputout\r\nputrefaction\r\nputrefactive\r\nputrefy\r\nputrescence\r\nputrescent\r\nputrid\r\nputridity\r\nputridly\r\nputs\r\nputsch\r\nputt\r\nputted\r\nputtee\r\nputtees\r\nputter\r\nputtering\r\nputters\r\nputtied\r\nputties\r\nputting\r\nputty\r\nputtying\r\nputtyroot\r\npuzzle\r\npuzzled\r\npuzzlement\r\npuzzler\r\npuzzlers\r\npuzzles\r\npuzzling\r\npygmies\r\npygmy\r\npygmy's\r\npyjama\r\npyjamas\r\npyjama's\r\npylon\r\npylons\r\npylori\r\npyloric\r\npylorus\r\npyorrhoea\r\npyorrhoea's\r\npyramid\r\npyramidal\r\npyramids\r\npyramid's\r\npyre\r\npyrethrum\r\npyretic\r\npyrexia\r\npyridine\r\npyridoxine\r\npyrite\r\npyrites\r\npyromania\r\npyromaniac\r\npyromaniacs\r\npyromaniac's\r\npyrometer\r\npyrometers\r\npyrometer's\r\npyrophosphate\r\npyrotechnic\r\npyrotechnical\r\npyrotechnically\r\npyrotechnics\r\npyroxene\r\nPyrrhic\r\npython\r\npythons\r\nq's\r\nqua\r\nquack\r\nquacked\r\nquackery\r\nquacking\r\nquacks\r\nquad\r\nquadrangle\r\nquadrangles\r\nquadrangular\r\nquadrant\r\nquadrants\r\nquadrant's\r\nquadraphonic\r\nquadrate\r\nquadrates\r\nquadratic\r\nquadratics\r\nquadrennial\r\nquadric\r\nquadriceps\r\nquadrilateral\r\nquadrilaterals\r\nquadrille\r\nquadrilles\r\nquadrillion\r\nquadrillionth\r\nquadripartite\r\nquadriplegia\r\nquadriplegic\r\nquadroon\r\nquadroons\r\nquadruped\r\nquadrupeds\r\nquadruple\r\nquadrupled\r\nquadruples\r\nquadruplet\r\nquadruplets\r\nquadruplicate\r\nquadruplicated\r\nquadruplicates\r\nquadruplicating\r\nquadrupling\r\nquaff\r\nquagmire\r\nquagmires\r\nquagmire's\r\nquahog\r\nquail\r\nquails\r\nquail's\r\nquaint\r\nquaintly\r\nquaintness\r\nquake\r\nquaked\r\nQuaker\r\nquakes\r\nquaking\r\nquaky\r\nqualification\r\nqualifications\r\nqualified\r\nqualifiedly\r\nqualifier\r\nqualifiers\r\nqualifies\r\nqualify\r\nqualifying\r\nqualitative\r\nqualitatively\r\nqualities\r\nquality\r\nquality's\r\nqualm\r\nqualmishness\r\nqualms\r\nquandaries\r\nquandary\r\nquandary's\r\nquango\r\nquanta\r\nquantifiable\r\nquantifiably\r\nquantification\r\nquantificational\r\nquantifications\r\nquantified\r\nquantifier\r\nquantifiers\r\nquantifies\r\nquantify\r\nquantifying\r\nquantise\r\nquantitative\r\nquantitatively\r\nquantities\r\nquantity\r\nquantity's\r\nquantum\r\nquarantine\r\nquarantined\r\nquarantines\r\nquarantine's\r\nquarantining\r\nquark\r\nquarks\r\nquarrel\r\nquarrelled\r\nquarreller\r\nquarrellers\r\nquarrelling\r\nquarrels\r\nquarrelsome\r\nquarrelsomeness\r\nquarried\r\nquarries\r\nquarry\r\nquarrying\r\nquarryman\r\nquarrymen\r\nquarry's\r\nquart\r\nquarter\r\nquarterback\r\nquarterbacks\r\nquarterdeck\r\nquarterdecks\r\nquartered\r\nquarterfinal\r\nquarterfinalist\r\nquartering\r\nquarterlies\r\nquarterly\r\nquartermaster\r\nquartermasters\r\nquarters\r\nquarterstaff\r\nquartet\r\nquartets\r\nquartet's\r\nquartile\r\nquartiles\r\nquarto\r\nquartos\r\nquarts\r\nquartz\r\nquartzite\r\nquasar\r\nquasars\r\nquasar's\r\nquash\r\nquashed\r\nquashes\r\nquashing\r\nquasi\r\nquaternaries\r\nquaternary\r\nquaternion\r\nquatrain\r\nquatrefoil\r\nquaver\r\nquavered\r\nquavering\r\nquavers\r\nquay\r\nquays\r\nquayside\r\nquean\r\nqueasier\r\nqueasily\r\nqueasiness\r\nqueasy\r\nqueen\r\nqueenly\r\nqueens\r\nqueen's\r\nqueer\r\nqueerer\r\nqueerest\r\nqueerly\r\nqueerness\r\nqueers\r\nquell\r\nquelled\r\nquelling\r\nquells\r\nquench\r\nquenchable\r\nquenched\r\nquencher\r\nquenches\r\nquenching\r\nquenchless\r\nquenelle\r\nqueried\r\nqueries\r\nquern\r\nquerns\r\nquerulous\r\nquerulously\r\nquery\r\nquerying\r\nquest\r\nquested\r\nquesting\r\nquestion\r\nquestionable\r\nquestionably\r\nquestioned\r\nquestioner\r\nquestioners\r\nquestioning\r\nquestioningly\r\nquestionings\r\nquestionnaire\r\nquestionnaires\r\nquestionnaire's\r\nquestions\r\nquests\r\nquetzal\r\nqueue\r\nqueued\r\nqueueing\r\nqueues\r\nqueue's\r\nquibble\r\nquibbled\r\nquibbler\r\nquibbles\r\nquibbling\r\nquiche\r\nquiches\r\nquick\r\nquicken\r\nquickened\r\nquickening\r\nquickens\r\nquicker\r\nquickest\r\nquickie\r\nquickies\r\nquicklime\r\nquickly\r\nquickness\r\nquicksand\r\nquickset\r\nquicksilver\r\nquickstep\r\nquicksteps\r\nquid\r\nquidnunc\r\nquid's\r\nquiescence\r\nquiescent\r\nquiescently\r\nquiet\r\nquieted\r\nquieten\r\nquietened\r\nquietening\r\nquietens\r\nquieter\r\nquietest\r\nquieting\r\nquietist\r\nquietly\r\nquietness\r\nquiets\r\nquietude\r\nquietus\r\nquiff\r\nquill\r\nquills\r\nquilt\r\nquilted\r\nquilting\r\nquilts\r\nquince\r\nquinces\r\nquincunx\r\nquincunxes\r\nquinine\r\nquinsy\r\nquintal\r\nquintessence\r\nquintessential\r\nquintet\r\nquintets\r\nquintile\r\nquintiles\r\nquintillion\r\nquintillionth\r\nquintuple\r\nquintupled\r\nquintuples\r\nquintuplet\r\nquintuplets\r\nquintuplet's\r\nquintupling\r\nquip\r\nquipped\r\nquipping\r\nquips\r\nquipster\r\nquire\r\nquirk\r\nquirkily\r\nquirkiness\r\nquirking\r\nquirks\r\nquirky\r\nquirt\r\nquisling\r\nquit\r\nquitclaim\r\nquite\r\nquitrent\r\nquits\r\nquittance\r\nquitted\r\nquitter\r\nquitters\r\nquitter's\r\nquitting\r\nquiver\r\nquivered\r\nquivering\r\nquivers\r\nquixotic\r\nquixotically\r\nquiz\r\nquizmaster\r\nquizzed\r\nquizzer\r\nquizzes\r\nquizzical\r\nquizzicality\r\nquizzically\r\nquizzing\r\nquo\r\nquoin\r\nquoit\r\nquoits\r\nquondam\r\nquorum\r\nquota\r\nquotable\r\nquotas\r\nquota's\r\nquotation\r\nquotations\r\nquotation's\r\nquote\r\nquoted\r\nquotes\r\nquotidian\r\nquotient\r\nquotients\r\nquoting\r\nr's\r\nrRNA\r\nrabbet\r\nrabbets\r\nrabbi\r\nrabbinate\r\nrabbinic\r\nrabbinical\r\nrabbit\r\nrabbit's\r\nrabbits\r\nrabble\r\nrabid\r\nrabidity\r\nrabidly\r\nrabies\r\nraccoon\r\nraccoon's\r\nraccoons\r\nrace\r\nracecourse\r\nracecourses\r\nraced\r\nracehorse\r\nracehorse's\r\nracehorses\r\nraceme\r\nracer\r\nracers\r\nraces\r\nracetrack\r\nraceway\r\nrachides\r\nrachis\r\nrachises\r\nrachitic\r\nracial\r\nracialism\r\nracialist\r\nracially\r\nracier\r\nraciness\r\nracing\r\nracism\r\nracist\r\nracists\r\nrack\r\nracked\r\nracket\r\nracket's\r\nracketeer\r\nracketeering\r\nracketeers\r\nrackets\r\nrackety\r\nracking\r\nracks\r\nraconteur\r\nracoon\r\nracquet\r\nracquets\r\nracy\r\nradar\r\nradar's\r\nradars\r\nradarscope\r\nradarscopes\r\nraddled\r\nradial\r\nradian\r\nradiance\r\nradians\r\nradiant\r\nradiantly\r\nradiate\r\nradiated\r\nradiates\r\nradiating\r\nradiation\r\nradiations\r\nradiator\r\nradiator's\r\nradiators\r\nradical\r\nradicalisation\r\nradicalisation's\r\nradicalisations\r\nradicalise\r\nradicalised\r\nradicalises\r\nradicalising\r\nradicalism\r\nradically\r\nradicals\r\nradicand\r\nradices\r\nradii\r\nradio\r\nradioactive\r\nradioactively\r\nradioactivity\r\nradiobiological\r\nradiobiologist\r\nradiobiology\r\nradiobroadcast\r\nradiobroadcaster\r\nradiocarbon\r\nradiochemical\r\nradiochemistry\r\nradioecology\r\nradioed\r\nradiogram\r\nradiogram's\r\nradiograms\r\nradiograph\r\nradiographic\r\nradiography\r\nradioing\r\nradioisotope\r\nradiolarian\r\nradiolocation\r\nradiological\r\nradiologist\r\nradiology\r\nradioman\r\nradiomen\r\nradiometer\r\nradiometer's\r\nradiometers\r\nradiometric\r\nradiometry\r\nradiophone\r\nradiophonic\r\nradiophoto\r\nradiophotograph\r\nradios\r\nradioscopic\r\nradioscopy\r\nradiosensitive\r\nradiosonde\r\nradiotelegraph\r\nradiotelegraphic\r\nradiotelegraphy\r\nradiotelephone\r\nradiotelephony\r\nradiotherapist\r\nradiotherapy\r\nradiothorium\r\nradiotoxic\r\nradiotracer\r\nradish\r\nradish's\r\nradishes\r\nradium\r\nradius\r\nradiuses\r\nradix\r\nradixes\r\nradome\r\nradon\r\nraff\r\nraffia\r\nraffish\r\nraffle\r\nraffled\r\nraffles\r\nraffling\r\nraft\r\nrafter\r\nraftered\r\nrafters\r\nrafts\r\nrag\r\nrag's\r\nraga\r\nragamuffin\r\nragbag\r\nrage\r\nraged\r\nrages\r\nragged\r\nraggedly\r\nraggedness\r\nraggedy\r\nragging\r\nraging\r\nraglan\r\nragman\r\nragout\r\nrags\r\nragtag\r\nragtime\r\nragweed\r\nragworm\r\nragwort\r\nrah\r\nraid\r\nraided\r\nraider\r\nraiders\r\nraiding\r\nraids\r\nrail\r\nrailbird\r\nrailbirds\r\nrailcar\r\nrailcars\r\nrailed\r\nrailhead\r\nrailheads\r\nrailing\r\nrailings\r\nraillery\r\nrailroad\r\nrailroaded\r\nrailroader\r\nrailroaders\r\nrailroading\r\nrailroads\r\nrails\r\nrailway\r\nrailway's\r\nrailwayman\r\nrailways\r\nraiment\r\nrain\r\nrain's\r\nrainband\r\nrainbird\r\nrainbow\r\nrainbows\r\nraincheck\r\nraincoat\r\nraincoat's\r\nraincoats\r\nraindrop\r\nraindrop's\r\nraindrops\r\nrained\r\nrainfall\r\nrainforest\r\nrainier\r\nrainiest\r\nraining\r\nrainless\r\nrainmaker\r\nrainmaking\r\nrainout\r\nrainproof\r\nrains\r\nrainspout\r\nrainsquall\r\nrainstorm\r\nrainwater\r\nrainwear\r\nrainy\r\nraise\r\nraised\r\nraiser\r\nraisers\r\nraises\r\nraisin\r\nraising\r\nraisins\r\nraison\r\nraja\r\nrajah\r\nrajahs\r\nrake\r\nraked\r\nrakehell\r\nrakes\r\nraking\r\nrakish\r\nrakishly\r\nrakishness\r\nrallied\r\nrallies\r\nrally\r\nrallying\r\nram\r\nram's\r\nramble\r\nrambled\r\nrambler\r\nramblers\r\nrambles\r\nrambling\r\nramblingly\r\nramblings\r\nrambunctious\r\nrambunctiously\r\nramekin\r\nramie\r\nramification\r\nramification's\r\nramifications\r\nramified\r\nramifies\r\nramify\r\nramifying\r\nramjet\r\nramjets\r\nrammed\r\nrammer\r\nramming\r\nramose\r\nramous\r\nramp\r\nramp's\r\nrampage\r\nrampaged\r\nrampageous\r\nrampages\r\nrampaging\r\nrampancy\r\nrampant\r\nrampantly\r\nrampart\r\nramparts\r\nramped\r\nramping\r\nramps\r\nramrod\r\nramrods\r\nrams\r\nramshackle\r\nran\r\nranch\r\nranched\r\nrancher\r\nranchero\r\nranchers\r\nranches\r\nranching\r\nranchman\r\nrancho\r\nranchos\r\nrancid\r\nrancidity\r\nrancidness\r\nrancorous\r\nrancorously\r\nrancour\r\nrancour's\r\nrandom\r\nrandomisation\r\nrandomisation's\r\nrandomisations\r\nrandomise\r\nrandomised\r\nrandomiser\r\nrandomises\r\nrandomising\r\nrandomly\r\nrandomness\r\nrandy\r\nrang\r\nrange\r\nranged\r\nrangefinder\r\nrangeland\r\nrangelands\r\nranger\r\nrangers\r\nranges\r\nrangier\r\nranging\r\nrangy\r\nrank\r\nranked\r\nranker\r\nranker's\r\nrankers\r\nrankest\r\nranking\r\nranking's\r\nrankings\r\nrankle\r\nrankled\r\nrankles\r\nrankling\r\nrankly\r\nrankness\r\nranks\r\nransack\r\nransacked\r\nransacking\r\nransacks\r\nransom\r\nransoming\r\nransoms\r\nrant\r\nranted\r\nranting\r\nrants\r\nrap\r\nrap's\r\nrapacious\r\nrapaciously\r\nrapaciousness\r\nrapacity\r\nrape\r\nraped\r\nrapes\r\nrapeseed\r\nrapid\r\nrapidity\r\nrapidly\r\nrapids\r\nrapier\r\nrapine\r\nraping\r\nrapist\r\nrapists\r\nrapped\r\nrappel\r\nrapper\r\nrapper's\r\nrappers\r\nrapping\r\nrapport\r\nrapporteur\r\nrapprochement\r\nraps\r\nrapscallion\r\nrapt\r\nraptly\r\nraptness\r\nraptor\r\nraptorial\r\nrapture\r\nraptures\r\nrapturous\r\nrapturously\r\nrare\r\nrarebit\r\nrarefaction\r\nrarefied\r\nrarefy\r\nrarely\r\nrareness\r\nrarer\r\nrarest\r\nraring\r\nrarities\r\nrarity\r\nrarity's\r\nrascal\r\nrascality\r\nrascally\r\nrascals\r\nrash\r\nrasher\r\nrashes\r\nrashly\r\nrashness\r\nrasp\r\nraspberry\r\nrasped\r\nrasping\r\nrasps\r\nraspy\r\nraster\r\nrat\r\nrat's\r\nrata\r\nratatouille\r\nratchet\r\nratcheted\r\nratchets\r\nrate\r\nrateable\r\nrated\r\nratepayer\r\nratepayers\r\nrates\r\nratfink\r\nratfish\r\nrather\r\nratification\r\nratifications\r\nratified\r\nratifies\r\nratify\r\nratifying\r\nrating\r\nratings\r\nratio\r\nratio's\r\nratiocinate\r\nratiocinated\r\nratiocinates\r\nratiocinating\r\nratiocination\r\nratiocinator\r\nration\r\nrational\r\nrationale\r\nrationale's\r\nrationales\r\nrationalisation\r\nrationalisation's\r\nrationalisations\r\nrationalise\r\nrationalised\r\nrationalises\r\nrationalising\r\nrationalism\r\nrationalist\r\nrationalistic\r\nrationalistically\r\nrationalists\r\nrationalities\r\nrationality\r\nrationally\r\nrationed\r\nrationing\r\nrations\r\nratios\r\nratite\r\nratline\r\nrats\r\nrattail\r\nrattan\r\nratted\r\nratter\r\nrattier\r\nratting\r\nrattle\r\nrattlebox\r\nrattled\r\nrattler\r\nrattlers\r\nrattles\r\nrattlesnake\r\nrattlesnake's\r\nrattlesnakes\r\nrattletrap\r\nrattling\r\nrattrap\r\nratty\r\nraucous\r\nraucously\r\nraucousness\r\nraunchier\r\nraunchily\r\nraunchiness\r\nraunchy\r\nravage\r\nravaged\r\nravagers\r\nravages\r\nravaging\r\nrave\r\nraved\r\nravel\r\nravelled\r\nravelling\r\nravels\r\nraven\r\nravened\r\nravening\r\nravenous\r\nravenously\r\nravenousness\r\nravens\r\nraves\r\nravine\r\nravine's\r\nravines\r\nraving\r\nravings\r\nravioli\r\nravish\r\nravisher\r\nravishes\r\nravishing\r\nravishingly\r\nravishment\r\nraw\r\nrawer\r\nrawest\r\nrawhide\r\nrawness\r\nray\r\nray's\r\nrayed\r\nrayon\r\nrays\r\nraze\r\nrazed\r\nrazes\r\nrazing\r\nrazor\r\nrazor's\r\nrazorback\r\nrazorbill\r\nrazors\r\nrazz\r\nrazzle\r\nrazzmatazz\r\nrd\r\nre\r\nreabsorb\r\nreach\r\nreachable\r\nreached\r\nreaches\r\nreaching\r\nreacquaint\r\nreacquainted\r\nreacquire\r\nreacquisition\r\nreact\r\nreactance\r\nreactant\r\nreactants\r\nreacted\r\nreacting\r\nreaction\r\nreaction's\r\nreactionaries\r\nreactionary\r\nreactionary's\r\nreactions\r\nreactivate\r\nreactivated\r\nreactivates\r\nreactivating\r\nreactivation\r\nreactive\r\nreactively\r\nreactivity\r\nreactor\r\nreactor's\r\nreactors\r\nreacts\r\nread\r\nreadability\r\nreadable\r\nreadably\r\nreadapting\r\nreader\r\nreader's\r\nreaders\r\nreadership\r\nreadership's\r\nreadied\r\nreadier\r\nreadies\r\nreadiest\r\nreadily\r\nreadiness\r\nreading\r\nreadings\r\nreadjust\r\nreadjusted\r\nreadjusting\r\nreadjustment\r\nreadjustments\r\nreadjusts\r\nreadout\r\nreadout's\r\nreadouts\r\nreads\r\nready\r\nreadying\r\nreaffirm\r\nreaffirmation\r\nreaffirmed\r\nreaffirming\r\nreaffirms\r\nreagent\r\nreagents\r\nreal\r\nrealest\r\nrealign\r\nrealigned\r\nrealigning\r\nrealignment\r\nrealignments\r\nrealigns\r\nrealisable\r\nrealisably\r\nrealisation\r\nrealisation's\r\nrealisations\r\nrealise\r\nrealised\r\nrealises\r\nrealising\r\nrealism\r\nrealist\r\nrealist's\r\nrealistic\r\nrealistically\r\nrealists\r\nrealities\r\nreality\r\nrealizable\r\nrealizably\r\nrealization\r\nrealization's\r\nrealizations\r\nrealize\r\nrealized\r\nrealizes\r\nrealizing\r\nreallocate\r\nreallocated\r\nreallocates\r\nreallocating\r\nreallocation\r\nreallocation's\r\nreallocations\r\nreally\r\nrealm\r\nrealm's\r\nrealms\r\nrealness\r\nrealpolitik\r\nrealtor\r\nrealtors\r\nrealty\r\nream\r\nream's\r\nreamed\r\nreamer\r\nreaming\r\nreams\r\nreanalyse\r\nreanalysed\r\nreanalyses\r\nreanalysing\r\nreanalysis\r\nreap\r\nreaped\r\nreaper\r\nreaping\r\nreappear\r\nreappearance\r\nreappeared\r\nreappearing\r\nreappears\r\nreapplication\r\nreapplied\r\nreapplies\r\nreapply\r\nreapplying\r\nreapportion\r\nreapportioned\r\nreapportionment\r\nreappraisal\r\nreappraisals\r\nreappraise\r\nreappraised\r\nreappraises\r\nreappraising\r\nreaps\r\nrear\r\nreared\r\nrearguard\r\nrearguards\r\nrearing\r\nrearm\r\nrearmament\r\nrearmed\r\nrearming\r\nrearmost\r\nrearms\r\nrearrange\r\nrearranged\r\nrearrangement\r\nrearrangement's\r\nrearrangements\r\nrearranges\r\nrearranging\r\nrearrested\r\nrears\r\nrearward\r\nrearwards\r\nreason\r\nreasonability\r\nreasonable\r\nreasonableness\r\nreasonably\r\nreasoned\r\nreasoning\r\nreasonless\r\nreasons\r\nreassemble\r\nreassembled\r\nreassembles\r\nreassembling\r\nreassembly\r\nreassert\r\nreasserted\r\nreasserting\r\nreassertion\r\nreasserts\r\nreassess\r\nreassessed\r\nreassesses\r\nreassessing\r\nreassessment\r\nreassessment's\r\nreassessments\r\nreassign\r\nreassigned\r\nreassigning\r\nreassignment\r\nreassignment's\r\nreassignments\r\nreassigns\r\nreassurance\r\nreassurances\r\nreassure\r\nreassured\r\nreassures\r\nreassuring\r\nreassuringly\r\nreauthorisation\r\nreauthorisation's\r\nreave\r\nreaver\r\nreawaken\r\nreawakened\r\nreawakening\r\nreawakens\r\nrebate\r\nrebate's\r\nrebated\r\nrebates\r\nrebating\r\nrebel\r\nrebel's\r\nrebelled\r\nrebelling\r\nrebellion\r\nrebellion's\r\nrebellions\r\nrebellious\r\nrebelliously\r\nrebelliousness\r\nrebels\r\nrebirth\r\nrebirth's\r\nreboot\r\nrebooted\r\nrebooting\r\nreboots\r\nreborn\r\nrebound\r\nrebounded\r\nrebounding\r\nrebounds\r\nrebroadcast\r\nrebroadcasts\r\nrebuff\r\nrebuffed\r\nrebuffing\r\nrebuffs\r\nrebuild\r\nrebuilding\r\nrebuilds\r\nrebuilt\r\nrebuke\r\nrebuked\r\nrebukes\r\nrebuking\r\nrebus\r\nrebut\r\nrebuttal\r\nrebuttals\r\nrebutted\r\nrebutter\r\nrebutting\r\nrecalcitrance\r\nrecalcitrant\r\nrecalculate\r\nrecalculated\r\nrecalculates\r\nrecalculating\r\nrecalculation\r\nrecalculations\r\nrecall\r\nrecallable\r\nrecalled\r\nrecalling\r\nrecalls\r\nrecant\r\nrecantation\r\nrecanted\r\nrecap\r\nrecapitulate\r\nrecapitulated\r\nrecapitulates\r\nrecapitulating\r\nrecapitulation\r\nrecapped\r\nrecapping\r\nrecapture\r\nrecaptured\r\nrecaptures\r\nrecapturing\r\nrecast\r\nrecasting\r\nrecasts\r\nrecede\r\nreceded\r\nrecedes\r\nreceding\r\nreceipt\r\nreceipt's\r\nreceipted\r\nreceipting\r\nreceipts\r\nreceivable\r\nreceivables\r\nreceive\r\nreceived\r\nreceiver\r\nreceiver's\r\nreceivers\r\nreceivership\r\nreceives\r\nreceiving\r\nrecent\r\nrecently\r\nrecentness\r\nreceptacle\r\nreceptacle's\r\nreceptacles\r\nreception\r\nreception's\r\nreceptionist\r\nreceptionists\r\nreceptions\r\nreceptive\r\nreceptively\r\nreceptiveness\r\nreceptivity\r\nreceptor\r\nreceptor's\r\nreceptors\r\nrecess\r\nrecessed\r\nrecesses\r\nrecessing\r\nrecession\r\nrecession's\r\nrecessional\r\nrecessions\r\nrecessive\r\nrecessively\r\nrecharge\r\nrechargeable\r\nrecharged\r\nrecharges\r\nrecharging\r\nrecheck\r\nrechecked\r\nrechecking\r\nrechecks\r\nrecherché\r\nrecidivism\r\nrecidivist\r\nrecidivistic\r\nrecipe\r\nrecipe's\r\nrecipes\r\nrecipient\r\nrecipient's\r\nrecipients\r\nreciprocal\r\nreciprocally\r\nreciprocals\r\nreciprocate\r\nreciprocated\r\nreciprocates\r\nreciprocating\r\nreciprocation\r\nreciprocator\r\nreciprocity\r\nrecital\r\nrecital's\r\nrecitalist\r\nrecitals\r\nrecitation\r\nrecitation's\r\nrecitations\r\nrecitative\r\nrecite\r\nrecited\r\nrecites\r\nreciting\r\nreckless\r\nrecklessly\r\nrecklessness\r\nreckon\r\nreckoned\r\nreckoning\r\nreckonings\r\nreckons\r\nreclaim\r\nreclaimable\r\nreclaimed\r\nreclaiming\r\nreclaims\r\nreclamation\r\nreclamations\r\nreclassification\r\nreclassified\r\nreclassifies\r\nreclassify\r\nreclassifying\r\nrecline\r\nreclined\r\nreclines\r\nreclining\r\nrecluse\r\nrecluse's\r\nrecluses\r\nreclusion\r\nreclusive\r\nrecode\r\nrecoded\r\nrecodes\r\nrecoding\r\nrecognisable\r\nrecognisably\r\nrecognisance\r\nrecognise\r\nrecognised\r\nrecogniser\r\nrecognisers\r\nrecognises\r\nrecognising\r\nrecognition\r\nrecognition's\r\nrecognitions\r\nrecoil\r\nrecoiled\r\nrecoiling\r\nrecoilless\r\nrecoils\r\nrecollect\r\nrecollected\r\nrecollecting\r\nrecollection\r\nrecollection's\r\nrecollections\r\nrecollects\r\nrecombinant\r\nrecombination\r\nrecombination's\r\nrecombine\r\nrecombined\r\nrecombines\r\nrecombining\r\nrecommence\r\nrecommenced\r\nrecommences\r\nrecommencing\r\nrecommend\r\nrecommendable\r\nrecommendation\r\nrecommendation's\r\nrecommendations\r\nrecommendatory\r\nrecommended\r\nrecommending\r\nrecommends\r\nrecommit\r\nrecommitment\r\nrecompense\r\nrecompilation\r\nrecompilations\r\nrecompile\r\nrecompiled\r\nrecompiles\r\nrecompiling\r\nrecompose\r\nrecomputed\r\nreconcilability\r\nreconcilable\r\nreconcile\r\nreconciled\r\nreconcilement\r\nreconciler\r\nreconciles\r\nreconciliation\r\nreconciliation's\r\nreconciliatory\r\nreconciling\r\nrecondite\r\nrecondition\r\nreconditioned\r\nreconditioning\r\nreconditions\r\nreconfiguration\r\nreconfiguration's\r\nreconfigurations\r\nreconfigure\r\nreconfigured\r\nreconfigures\r\nreconfiguring\r\nreconfirm\r\nreconfirmation\r\nreconnaissance\r\nreconnect\r\nreconnected\r\nreconnecting\r\nreconnection\r\nreconnects\r\nreconnoitre\r\nreconnoitred\r\nreconnoitres\r\nreconnoitring\r\nreconsider\r\nreconsideration\r\nreconsidered\r\nreconsidering\r\nreconsiders\r\nreconsolidate\r\nreconsolidated\r\nreconsolidates\r\nreconsolidating\r\nreconstitute\r\nreconstituted\r\nreconstitutes\r\nreconstitution\r\nreconstruct\r\nreconstructed\r\nreconstructing\r\nreconstruction\r\nreconstructions\r\nreconstructive\r\nreconstructs\r\nrecontamination\r\nreconvene\r\nreconvened\r\nreconvenes\r\nreconvening\r\nreconvention\r\nreconvert\r\nreconverted\r\nreconverting\r\nreconverts\r\nrecopied\r\nrecopies\r\nrecopy\r\nrecord\r\nrecordation\r\nrecorded\r\nrecorder\r\nrecorders\r\nrecording\r\nrecordings\r\nrecords\r\nrecount\r\nrecounted\r\nrecounting\r\nrecounts\r\nrecoup\r\nrecoupable\r\nrecouped\r\nrecouping\r\nrecoups\r\nrecourse\r\nrecourses\r\nrecover\r\nrecoverability\r\nrecoverable\r\nrecovered\r\nrecoveries\r\nrecovering\r\nrecovers\r\nrecovery\r\nrecovery's\r\nrecreant\r\nrecreate\r\nrecreated\r\nrecreates\r\nrecreating\r\nrecreation\r\nrecreational\r\nrecreations\r\nrecriminate\r\nrecriminated\r\nrecriminates\r\nrecriminating\r\nrecrimination\r\nrecriminations\r\nrecriminatory\r\nrecrudesce\r\nrecrudescence\r\nrecrudescent\r\nrecruit\r\nrecruit's\r\nrecruited\r\nrecruiter\r\nrecruiter's\r\nrecruiters\r\nrecruiting\r\nrecruitment\r\nrecruits\r\nrecta\r\nrectal\r\nrectally\r\nrectangle\r\nrectangle's\r\nrectangles\r\nrectangular\r\nrectangularity\r\nrectifiable\r\nrectification\r\nrectifications\r\nrectified\r\nrectifier\r\nrectifiers\r\nrectify\r\nrectilinear\r\nrectilinearly\r\nrectitude\r\nrecto\r\nrector\r\nrector's\r\nrectors\r\nrectory\r\nrectos\r\nrectum\r\nrectum's\r\nrectums\r\nrecumbent\r\nrecumbently\r\nrecuperate\r\nrecuperated\r\nrecuperates\r\nrecuperating\r\nrecuperation\r\nrecuperative\r\nrecur\r\nrecurred\r\nrecurrence\r\nrecurrence's\r\nrecurrences\r\nrecurrent\r\nrecurrently\r\nrecurring\r\nrecurs\r\nrecursion\r\nrecursion's\r\nrecursions\r\nrecursive\r\nrecursively\r\nrecusant\r\nrecyclable\r\nrecycle\r\nrecycled\r\nrecycles\r\nrecycling\r\nred\r\nredact\r\nredaction\r\nredactions\r\nredactor\r\nredbird\r\nredbirds\r\nredbone\r\nredbreast\r\nredbrick\r\nredbud\r\nredbug\r\nredcap\r\nredcoat\r\nredcoats\r\nredcurrant\r\nredden\r\nreddened\r\nreddening\r\nredder\r\nreddest\r\nreddish\r\nreddishness\r\nredecorate\r\nredecorated\r\nredecorates\r\nredecorating\r\nredecoration\r\nredecorator\r\nrededicate\r\nredeem\r\nredeemable\r\nredeemed\r\nredeemer\r\nredeemers\r\nredeeming\r\nredeems\r\nredefine\r\nredefined\r\nredefines\r\nredefining\r\nredefinition\r\nredefinition's\r\nredefinitions\r\nredemption\r\nredemptive\r\nredemptory\r\nredeploy\r\nredeployed\r\nredeployment\r\nredeploys\r\nredeposit\r\nredesign\r\nredesigned\r\nredesigning\r\nredesigns\r\nredevelop\r\nredeveloped\r\nredeveloper\r\nredevelopers\r\nredeveloping\r\nredevelopment\r\nredevelops\r\nredeye\r\nredhead\r\nredheaded\r\nredheads\r\nredial\r\nredialled\r\nredialling\r\nredials\r\nredingote\r\nredirect\r\nredirected\r\nredirecting\r\nredirection\r\nredirections\r\nredirector\r\nredirector's\r\nredirectors\r\nredirects\r\nrediscount\r\nrediscover\r\nrediscovered\r\nrediscovering\r\nrediscovers\r\nrediscovery\r\nredisplay\r\nredisplayed\r\nredisplaying\r\nredisplays\r\nredistribute\r\nredistributed\r\nredistributes\r\nredistributing\r\nredistribution\r\nredistribution's\r\nredistributions\r\nredistrict\r\nredistricting\r\nredneck\r\nrednecks\r\nredness\r\nredo\r\nredoing\r\nredolence\r\nredolent\r\nredolently\r\nredone\r\nredouble\r\nredoubled\r\nredoubles\r\nredoubling\r\nredoubt\r\nredoubtable\r\nredoubtably\r\nredound\r\nredpoll\r\nredraw\r\nredrawing\r\nredrawn\r\nredraws\r\nredress\r\nredressed\r\nredresser\r\nredresses\r\nredressing\r\nredroot\r\nreds\r\nredshank\r\nredstart\r\nredtop\r\nreduce\r\nreduced\r\nreducer\r\nreducers\r\nreduces\r\nreducibility\r\nreducible\r\nreducibly\r\nreducing\r\nreduction\r\nreduction's\r\nreductionism\r\nreductions\r\nreductive\r\nredundancies\r\nredundancy\r\nredundant\r\nredundantly\r\nreduplicate\r\nreduplicated\r\nreduplication\r\nreduplicative\r\nredwing\r\nredwood\r\nredwoods\r\nreed\r\nreed's\r\nreedbuck\r\nreedier\r\nreeds\r\nreedy\r\nreef\r\nreefer\r\nreefing\r\nreefs\r\nreek\r\nreeked\r\nreeking\r\nreeks\r\nreel\r\nreeled\r\nreeling\r\nreels\r\nre-emphasise\r\n\r\nreemploy\r\nreemployment\r\nre-enact\r\nre-enactment\r\nre-enter\r\nre-entered\r\nre-entering\r\nre-enters\r\nre-entrance\r\nre-entrant\r\nre-entry\r\nre-establish\r\nre-established\r\nre-establishes\r\nre-establishing\r\nreestablishment\r\nre-evaluate\r\nre-evaluated\r\nre-evaluates\r\nre-evaluating\r\nre-evaluation\r\nreeve\r\nreeves\r\nre-examination\r\nre-examine\r\nre-examined\r\nre-examines\r\nre-examining\r\nref\r\nreface\r\nrefaced\r\nrefashion\r\nrefection\r\nrefectories\r\nrefectory\r\nrefer\r\nreferable\r\nreferee\r\nreferee's\r\nrefereed\r\nrefereeing\r\nreferees\r\nreference\r\nreferenced\r\nreferences\r\nreferencing\r\nreferenda\r\nreferendum\r\nreferent\r\nreferent's\r\nreferential\r\nreferentially\r\nreferents\r\nreferral\r\nreferral's\r\nreferrals\r\nreferred\r\nreferrer\r\nreferring\r\nrefers\r\nrefill\r\nrefillable\r\nrefilled\r\nrefilling\r\nrefills\r\nrefinance\r\nrefine\r\nrefined\r\nrefinement\r\nrefinement's\r\nrefinements\r\nrefiner\r\nrefineries\r\nrefinery\r\nrefines\r\nrefining\r\nrefinish\r\nrefinished\r\nrefinisher\r\nrefinishes\r\nrefinishing\r\nrefit\r\nreflate\r\nreflation\r\nreflationary\r\nreflect\r\nreflectance\r\nreflected\r\nreflecting\r\nreflection\r\nreflection's\r\nreflections\r\nreflective\r\nreflectively\r\nreflectivity\r\nreflector\r\nreflector's\r\nreflectors\r\nreflects\r\nreflex\r\nreflex's\r\nreflexes\r\nreflexive\r\nreflexively\r\nreflexivity\r\nreflexology\r\nreflux\r\nrefluxed\r\nrefluxes\r\nrefluxing\r\nrefocus\r\nrefocused\r\nrefocuses\r\nrefocusing\r\nrefolded\r\nreforest\r\nreforestation\r\nreform\r\nreformat\r\nreformation\r\nreformative\r\nreformatories\r\nreformatory\r\nreformats\r\nreformatted\r\nreformatting\r\nreformed\r\nreformer\r\nreformers\r\nreforming\r\nreformism\r\nreformist\r\nreformists\r\nreforms\r\nreformulate\r\nreformulated\r\nreformulates\r\nreformulating\r\nreformulation\r\nrefract\r\nrefracted\r\nrefracting\r\nrefraction\r\nrefractive\r\nrefractivity\r\nrefractor\r\nrefractoriness\r\nrefractory\r\nrefrain\r\nrefrained\r\nrefraining\r\nrefrains\r\nrefresh\r\nrefreshed\r\nrefresher\r\nrefreshers\r\nrefreshes\r\nrefreshing\r\nrefreshingly\r\nrefreshment\r\nrefreshment's\r\nrefreshments\r\nrefried\r\nrefries\r\nrefrigerant\r\nrefrigerate\r\nrefrigerated\r\nrefrigeration\r\nrefrigerator\r\nrefrigerator's\r\nrefrigerators\r\nrefry\r\nrefrying\r\nrefuel\r\nrefuelled\r\nrefuelling\r\nrefuels\r\nrefuge\r\nrefugee\r\nrefugee's\r\nrefugees\r\nrefuges\r\nrefulgence\r\nrefulgent\r\nrefund\r\nrefund's\r\nrefundable\r\nrefunded\r\nrefunding\r\nrefunds\r\nrefurbish\r\nrefurbished\r\nrefurbishing\r\nrefurbishment\r\nrefusal\r\nrefusals\r\nrefuse\r\nrefused\r\nrefuses\r\nrefusing\r\nrefutable\r\nrefutably\r\nrefutation\r\nrefute\r\nrefuted\r\nrefuter\r\nrefutes\r\nrefuting\r\nregain\r\nregained\r\nregaining\r\nregains\r\nregal\r\nregale\r\nregaled\r\nregalia\r\nregaling\r\nregally\r\nregard\r\nregarded\r\nregardful\r\nregarding\r\nregardless\r\nregards\r\nregatta\r\nregattas\r\nregency\r\nregenerate\r\nregenerated\r\nregenerates\r\nregenerating\r\nregeneration\r\nregenerative\r\nregenerator\r\nregenerators\r\nregent\r\nregent's\r\nregents\r\nreggae\r\nregicidal\r\nregicide\r\nregime\r\nregime's\r\nregimen\r\nregiment\r\nregimental\r\nregimentally\r\nregimentals\r\nregimentation\r\nregimented\r\nregiments\r\nregimes\r\nregion\r\nregion's\r\nregional\r\nregionalism\r\nregionalist\r\nregionally\r\nregions\r\nregister\r\nregistered\r\nregistering\r\nregisters\r\nregistrant\r\nregistrants\r\nregistrar\r\nregistrars\r\nregistration\r\nregistration's\r\nregistrations\r\nregistries\r\nregistry\r\nregna\r\nregnant\r\nregnum\r\nregress\r\nregressed\r\nregresses\r\nregressing\r\nregression\r\nregression's\r\nregressions\r\nregressive\r\nregressively\r\nregret\r\nregretful\r\nregretfully\r\nregrets\r\nregrettable\r\nregrettably\r\nregretted\r\nregretting\r\nreground\r\nregroup\r\nregrouped\r\nregrouping\r\nregular\r\nregularisation\r\nregularisation's\r\nregularisations\r\nregularise\r\nregularised\r\nregularises\r\nregularising\r\nregularities\r\nregularity\r\nregularly\r\nregulars\r\nregulate\r\nregulated\r\nregulates\r\nregulating\r\nregulation\r\nregulations\r\nregulative\r\nregulator\r\nregulator's\r\nregulators\r\nregulatory\r\nregurgitate\r\nregurgitated\r\nregurgitates\r\nregurgitating\r\nregurgitation\r\nrehabilitant\r\nrehabilitate\r\nrehabilitated\r\nrehabilitates\r\nrehabilitating\r\nrehabilitation\r\nrehabilitations\r\nrehabilitative\r\nrehash\r\nrehashed\r\nrehashes\r\nrehashing\r\nrehear\r\nrehearing\r\nrehearsal\r\nrehearsal's\r\nrehearsals\r\nrehearse\r\nrehearsed\r\nrehearses\r\nrehearsing\r\nreification\r\nreified\r\nreify\r\nreifying\r\nreign\r\nreigned\r\nreigning\r\nreigns\r\nreimbursable\r\nreimburse\r\nreimbursed\r\nreimbursement\r\nreimbursement's\r\nreimbursements\r\nreimburses\r\nreimbursing\r\nrein\r\nreincarnate\r\nreincarnated\r\nreincarnation\r\nreincorporating\r\nreindeer\r\nreined\r\nreinforce\r\nreinforced\r\nreinforcement\r\nreinforcement's\r\nreinforcements\r\nreinforces\r\nreinforcing\r\nreining\r\nreinitialise\r\nreinitialised\r\nreinitialises\r\nreinitialising\r\nreins\r\nreinsert\r\nreinserted\r\nreinserting\r\nreinsertion\r\nreinsertions\r\nreinserts\r\nreinstall\r\nreinstalled\r\nreinstalling\r\nreinstalls\r\nreinstate\r\nreinstated\r\nreinstatement\r\nreinstates\r\nreinstating\r\nreinstitution\r\nreinsurance\r\nreinsure\r\nreintegrate\r\nreintegrated\r\nreintegration\r\nreinterpret\r\nreinterpretation\r\nreinterpretations\r\nreinterpreted\r\nreinterpreting\r\nreinterprets\r\nreintroduce\r\nreintroduced\r\nreintroduces\r\nreintroducing\r\nreintroduction\r\nreinvent\r\nreinvented\r\nreinventing\r\nreinvention\r\nreinvents\r\nreinvest\r\nreinvested\r\nreinvestigation\r\nreinvestment\r\nreinvigorate\r\nreinvigoration\r\nreissue\r\nreissued\r\nreissues\r\nreissuing\r\nreiterate\r\nreiterated\r\nreiterates\r\nreiterating\r\nreiteration\r\nreiterations\r\nreiterative\r\nreiteratively\r\nreive\r\nreiver\r\nreiving\r\nreject\r\nrejected\r\nrejecter\r\nrejecting\r\nrejection\r\nrejection's\r\nrejections\r\nrejects\r\nrejig\r\nrejoice\r\nrejoiced\r\nrejoices\r\nrejoicing\r\nrejoin\r\nrejoinder\r\nrejoined\r\nrejoining\r\nrejoins\r\nrejuvenate\r\nrejuvenated\r\nrejuvenates\r\nrejuvenating\r\nrejuvenation\r\nrejuvenator\r\nrekindle\r\nrekindled\r\nrekindles\r\nrekindling\r\nrelabelled\r\nrelapse\r\nrelapsed\r\nrelapses\r\nrelapsing\r\nrelatable\r\nrelate\r\nrelated\r\nrelatedness\r\nrelater\r\nrelates\r\nrelating\r\nrelation\r\nrelational\r\nrelationally\r\nrelations\r\nrelationship\r\nrelationship's\r\nrelationships\r\nrelative\r\nrelatively\r\nrelatives\r\nrelativism\r\nrelativist\r\nrelativistic\r\nrelativity\r\nrelativity's\r\nrelax\r\nrelaxant\r\nrelaxation\r\nrelaxation's\r\nrelaxations\r\nrelaxed\r\nrelaxedness\r\nrelaxes\r\nrelaxing\r\nrelay\r\nrelayed\r\nrelaying\r\nrelays\r\nrelearn\r\nrelearns\r\nreleasable\r\nrelease\r\nreleased\r\nreleaser\r\nreleases\r\nreleasing\r\nrelegate\r\nrelegated\r\nrelegates\r\nrelegating\r\nrelegation\r\nrelent\r\nrelented\r\nrelenting\r\nrelentless\r\nrelentlessly\r\nrelentlessness\r\nrelents\r\nrelevance\r\nrelevancy\r\nrelevant\r\nrelevantly\r\nreliabilities\r\nreliability\r\nreliable\r\nreliably\r\nreliance\r\nreliant\r\nreliantly\r\nrelic\r\nrelic's\r\nrelics\r\nrelict\r\nrelied\r\nrelief\r\nrelies\r\nrelievable\r\nrelieve\r\nrelieved\r\nreliever\r\nrelievers\r\nrelieves\r\nrelieving\r\nreligion\r\nreligion's\r\nreligionist\r\nreligionists\r\nreligions\r\nreligiosity\r\nreligious\r\nreligiously\r\nreligiousness\r\nreline\r\nrelinquish\r\nrelinquished\r\nrelinquishes\r\nrelinquishing\r\nrelinquishment\r\nreliquary\r\nrelish\r\nrelished\r\nrelishes\r\nrelishing\r\nrelive\r\nrelives\r\nreliving\r\nreload\r\nreloaded\r\nreloading\r\nreloads\r\nrelocate\r\nrelocated\r\nrelocates\r\nrelocating\r\nrelocation\r\nrelocations\r\nreluctance\r\nreluctances\r\nreluctant\r\nreluctantly\r\nrely\r\nrelying\r\nremade\r\nremain\r\nremainder\r\nremainder's\r\nremaindered\r\nremaindering\r\nremainders\r\nremained\r\nremaining\r\nremains\r\nremake\r\nremaking\r\nremand\r\nremanded\r\nremanding\r\nremanence\r\nremanufacture\r\nremark\r\nremarkable\r\nremarkableness\r\nremarkably\r\nremarked\r\nremarking\r\nremarks\r\nremarriage\r\nremarriages\r\nremarried\r\nremarry\r\nremarrying\r\nrematch\r\nremediable\r\nremediably\r\nremedial\r\nremedially\r\nremediation\r\nremedied\r\nremedies\r\nremediless\r\nremedy\r\nremedying\r\nremember\r\nremembered\r\nremembering\r\nremembers\r\nremembrance\r\nremembrance's\r\nremembrances\r\nremilitarisation\r\nremilitarise\r\nremind\r\nreminded\r\nreminder\r\nreminders\r\nremindful\r\nreminding\r\nreminds\r\nreminisce\r\nreminisced\r\nreminiscence\r\nreminiscence's\r\nreminiscences\r\nreminiscent\r\nreminiscently\r\nreminisces\r\nreminiscing\r\nremise\r\nremised\r\nremising\r\nremiss\r\nremissible\r\nremissibly\r\nremission\r\nremissions\r\nremissness\r\nremit\r\nremits\r\nremittal\r\nremittance\r\nremittances\r\nremitted\r\nremittent\r\nremitter\r\nremitting\r\nremix\r\nremixed\r\nremixes\r\nremixing\r\nremnant\r\nremnant's\r\nremnants\r\nremobilisation\r\nremobilise\r\nremobilises\r\nremodel\r\nremodelled\r\nremodelling\r\nremodels\r\nremonstrance\r\nremonstrant\r\nremonstrate\r\nremonstrated\r\nremonstrates\r\nremonstrating\r\nremonstration\r\nremonstrative\r\nremonstratively\r\nremonstrator\r\nremora\r\nremorse\r\nremorseful\r\nremorsefully\r\nremorsefulness\r\nremorseless\r\nremorselessly\r\nremorselessness\r\nremote\r\nremotely\r\nremoteness\r\nremotest\r\nremould\r\nremoulded\r\nremoulding\r\nremoulds\r\nremount\r\nremounting\r\nremovable\r\nremoval\r\nremoval's\r\nremovals\r\nremove\r\nremoved\r\nremover\r\nremoves\r\nremoving\r\nremunerate\r\nremunerated\r\nremunerates\r\nremunerating\r\nremuneration\r\nremunerations\r\nremunerative\r\nremuneratively\r\nremunerator\r\nrenaissance\r\nrenal\r\nrename\r\nrenamed\r\nrenames\r\nrenaming\r\nrenascence\r\nrenascent\r\nrenationalise\r\nrenationalised\r\nrenationalises\r\nrenationalising\r\nrend\r\nrender\r\nrendered\r\nrendering\r\nrenderings\r\nrenders\r\nrendezvous\r\nrendezvoused\r\nrendezvousing\r\nrending\r\nrendition\r\nrendition's\r\nrenditions\r\nrends\r\nrenegade\r\nrenegades\r\nrenege\r\nreneged\r\nreneges\r\nreneging\r\nrenegotiable\r\nrenegotiate\r\nrenegotiated\r\nrenegotiates\r\nrenegotiation\r\nrenew\r\nrenewable\r\nrenewably\r\nrenewal\r\nrenewals\r\nrenewed\r\nrenewing\r\nrenews\r\nrenitent\r\nrennet\r\nrennin\r\nrenounce\r\nrenounced\r\nrenouncement\r\nrenounces\r\nrenouncing\r\nrenovate\r\nrenovated\r\nrenovates\r\nrenovation\r\nrenovator\r\nrenown\r\nrenowned\r\nrent\r\nrental\r\nrental's\r\nrentals\r\nrented\r\nrenter\r\nrenter's\r\nrenters\r\nrenting\r\nrents\r\nrenumber\r\nrenumbered\r\nrenumbering\r\nrenumbers\r\nrenunciation\r\nrenunciations\r\nreoccupy\r\nreoccur\r\nreoccurrence\r\nreopen\r\nreopened\r\nreopening\r\nreopens\r\nreorder\r\nreordered\r\nreordering\r\nreorders\r\nreorganization\r\nreorganization's\r\nreorganizations\r\nreorganize\r\nreorganized\r\nreorganizer\r\nreorganizers\r\nreorganizes\r\nreorganizing\r\nreorient\r\nreorientation\r\nreoriented\r\nrep\r\nrepack\r\nrepackage\r\nrepackaged\r\nrepackages\r\nrepackaging\r\nrepacked\r\nrepacking\r\nrepacks\r\nrepaid\r\nrepaint\r\nrepainted\r\nrepainting\r\nrepaints\r\nrepair\r\nrepairable\r\nrepaired\r\nrepairer\r\nrepairers\r\nrepairing\r\nrepairman\r\nrepairmen\r\nrepairs\r\nreparable\r\nreparation\r\nreparation's\r\nreparations\r\nreparative\r\nrepartee\r\nrepartition\r\nrepartitioned\r\nrepartitioning\r\nrepartitions\r\nrepast\r\nrepast's\r\nrepasts\r\nrepatriate\r\nrepatriated\r\nrepatriates\r\nrepatriating\r\nrepatriation\r\nrepatriations\r\nrepaving\r\nrepay\r\nrepayable\r\nrepaying\r\nrepayment\r\nrepayments\r\nrepays\r\nrepeal\r\nrepealed\r\nrepealing\r\nrepeals\r\nrepeat\r\nrepeatability\r\nrepeatable\r\nrepeated\r\nrepeatedly\r\nrepeater\r\nrepeaters\r\nrepeating\r\nrepeats\r\nrepel\r\nrepelled\r\nrepellent\r\nrepellently\r\nrepelling\r\nrepels\r\nrepent\r\nrepentance\r\nrepentant\r\nrepentantly\r\nrepented\r\nrepenting\r\nrepents\r\nrepercussion\r\nrepercussion's\r\nrepercussions\r\nrepercussive\r\nrepertoire\r\nrepertory\r\nrepetition\r\nrepetition's\r\nrepetitions\r\nrepetitious\r\nrepetitiously\r\nrepetitiousness\r\nrepetitive\r\nrepetitively\r\nrepetitiveness\r\nrephrase\r\nrephrased\r\nrephrases\r\nrephrasing\r\nrepine\r\nrepined\r\nrepining\r\nreplace\r\nreplaceable\r\nreplaced\r\nreplacement\r\nreplacement's\r\nreplacements\r\nreplaces\r\nreplacing\r\nreplant\r\nreplanted\r\nreplay\r\nreplayed\r\nreplaying\r\nreplays\r\nreplenish\r\nreplenished\r\nreplenishes\r\nreplenishing\r\nreplenishment\r\nreplenishments\r\nreplete\r\nrepletion\r\nreplica\r\nreplica's\r\nreplicable\r\nreplicas\r\nreplicate\r\nreplicated\r\nreplicates\r\nreplicating\r\nreplication\r\nreplications\r\nreplied\r\nreplier\r\nreplies\r\nreply\r\nreplying\r\nreport\r\nreportable\r\nreportage\r\nreported\r\nreportedly\r\nreporter\r\nreporters\r\nreporting\r\nreportorial\r\nreports\r\nrepose\r\nreposed\r\nreposeful\r\nreposefulness\r\nreposes\r\nreposing\r\nreposition\r\nrepositioned\r\nrepositioning\r\nrepositions\r\nrepositories\r\nrepository\r\nrepository's\r\nrepossess\r\nrepossession\r\nrepost\r\nreposted\r\nreposting\r\nreposts\r\nreprehend\r\nreprehensibility\r\nreprehensible\r\nreprehensibly\r\nreprehension\r\nreprehensive\r\nrepresent\r\nrepresentation\r\nrepresentation's\r\nrepresentational\r\nrepresentations\r\nrepresentative\r\nrepresentatively\r\nrepresentatives\r\nrepresented\r\nrepresenting\r\nrepresents\r\nrepress\r\nrepressed\r\nrepresses\r\nrepressible\r\nrepressing\r\nrepression\r\nrepression's\r\nrepressions\r\nrepressive\r\nrepressively\r\nrepressor\r\nreprieve\r\nreprieved\r\nreprieves\r\nreprieving\r\nreprimand\r\nreprimanded\r\nreprint\r\nreprinted\r\nreprinting\r\nreprints\r\nreprisal\r\nreprisal's\r\nreprisals\r\nreprise\r\nreprised\r\nreprising\r\nrepro\r\nreproach\r\nreproachable\r\nreproached\r\nreproaches\r\nreproachful\r\nreproachfully\r\nreproaching\r\nreprobate\r\nreprobates\r\nreprobating\r\nreprobation\r\nreprocess\r\nreprocessed\r\nreprocesses\r\nreproduce\r\nreproduced\r\nreproducer\r\nreproducers\r\nreproduces\r\nreproducibility\r\nreproducible\r\nreproducibly\r\nreproducing\r\nreproduction\r\nreproduction's\r\nreproductions\r\nreproductive\r\nreproductively\r\nreprogrammed\r\nreprogramming\r\nreprography\r\nreproof\r\nreprove\r\nreproved\r\nreproving\r\nreprovingly\r\nreps\r\nreptile\r\nreptile's\r\nreptiles\r\nreptilian\r\nrepublic\r\nrepublic's\r\nrepublican\r\nrepublican's\r\nrepublicanism\r\nrepublicans\r\nrepublication\r\nrepublics\r\nrepublish\r\nrepublished\r\nrepublishes\r\nrepublishing\r\nrepudiate\r\nrepudiated\r\nrepudiates\r\nrepudiating\r\nrepudiation\r\nrepudiations\r\nrepudiator\r\nrepugnance\r\nrepugnancy\r\nrepugnant\r\nrepugnantly\r\nrepulse\r\nrepulsed\r\nrepulses\r\nrepulsing\r\nrepulsion\r\nrepulsions\r\nrepulsive\r\nrepulsively\r\nrepulsiveness\r\nreputability\r\nreputable\r\nreputably\r\nreputation\r\nreputation's\r\nreputations\r\nrepute\r\nreputed\r\nreputedly\r\nreputes\r\nreputing\r\nrequest\r\nrequested\r\nrequester\r\nrequesters\r\nrequesting\r\nrequestor\r\nrequests\r\nrequiem\r\nrequiem's\r\nrequiems\r\nrequire\r\nrequired\r\nrequirement\r\nrequirement's\r\nrequirements\r\nrequires\r\nrequiring\r\nrequisite\r\nrequisites\r\nrequisition\r\nrequisitioned\r\nrequisitioning\r\nrequisitions\r\nrequital\r\nrequite\r\nrequited\r\nrequiting\r\nreradiate\r\nreran\r\nreread\r\nrereading\r\nrereads\r\nreroute\r\nrerouted\r\nreroutes\r\nrerun\r\nrerunning\r\nreruns\r\nresalable\r\nresale\r\nresample\r\nrescale\r\nrescaled\r\nrescaling\r\nrescan\r\nrescanned\r\nrescanning\r\nrescans\r\nreschedule\r\nrescheduled\r\nreschedules\r\nrescheduling\r\nrescind\r\nrescinded\r\nrescission\r\nrescue\r\nrescued\r\nrescuer\r\nrescuers\r\nrescues\r\nrescuing\r\nresealed\r\nresearch\r\nresearchable\r\nresearched\r\nresearcher\r\nresearcher's\r\nresearchers\r\nresearches\r\nresearching\r\nreseat\r\nreseau\r\nresection\r\nreseed\r\nreselect\r\nreselected\r\nreselecting\r\nreselection\r\nreselects\r\nresell\r\nreseller\r\nresellers\r\nreselling\r\nresells\r\nresemblance\r\nresemblance's\r\nresemblances\r\nresemble\r\nresembled\r\nresembles\r\nresembling\r\nresend\r\nresending\r\nresends\r\nresent\r\nresented\r\nresentful\r\nresentfully\r\nresentfulness\r\nresenting\r\nresentment\r\nresents\r\nreservation\r\nreservation's\r\nreservations\r\nreserve\r\nreserved\r\nreservedly\r\nreserves\r\nreserving\r\nreservist\r\nreservists\r\nreservoir\r\nreservoir's\r\nreservoirs\r\nreset\r\nresets\r\nresetting\r\nresettle\r\nresettled\r\nresettlement\r\nresettles\r\nresettling\r\nreshape\r\nreshaped\r\nreshapes\r\nreshaping\r\nreship\r\nreshipment\r\nreshuffle\r\nreside\r\nresided\r\nresidence\r\nresidence's\r\nresidences\r\nresidency\r\nresident\r\nresident's\r\nresidential\r\nresidentially\r\nresidents\r\nresides\r\nresiding\r\nresidua\r\nresidual\r\nresidually\r\nresiduals\r\nresiduary\r\nresidue\r\nresidue's\r\nresidues\r\nresiduum\r\nresifted\r\nresign\r\nresignation\r\nresignation's\r\nresignations\r\nresigned\r\nresignedly\r\nresigning\r\nresigns\r\nresilience\r\nresiliency\r\nresilient\r\nresiliently\r\nresin\r\nresin's\r\nresinous\r\nresins\r\nresist\r\nresistance\r\nresistances\r\nresistant\r\nresisted\r\nresister\r\nresistibility\r\nresistible\r\nresistibly\r\nresisting\r\nresistive\r\nresistively\r\nresistivity\r\nresistless\r\nresistor\r\nresistor's\r\nresistors\r\nresists\r\nresize\r\nresized\r\nresizes\r\nresizing\r\nresold\r\nresole\r\nresoluble\r\nresolute\r\nresolutely\r\nresoluteness\r\nresolution\r\nresolutions\r\nresolvable\r\nresolve\r\nresolved\r\nresolves\r\nresolving\r\nresonance\r\nresonant\r\nresonantly\r\nresonate\r\nresonated\r\nresonates\r\nresonating\r\nresonator\r\nresonators\r\nresorcinol\r\nresort\r\nresorted\r\nresorting\r\nresorts\r\nresound\r\nresounding\r\nresoundingly\r\nresounds\r\nresource\r\nresource's\r\nresourced\r\nresourceful\r\nresourcefully\r\nresourcefulness\r\nresources\r\nrespect\r\nrespectability\r\nrespectable\r\nrespectably\r\nrespected\r\nrespecter\r\nrespectful\r\nrespectfully\r\nrespectfulness\r\nrespecting\r\nrespective\r\nrespectively\r\nrespects\r\nrespell\r\nrespiration\r\nrespirations\r\nrespirator\r\nrespirators\r\nrespiratory\r\nrespire\r\nrespired\r\nrespires\r\nrespiring\r\nrespite\r\nresplendence\r\nresplendent\r\nresplendently\r\nrespond\r\nresponded\r\nrespondent\r\nrespondent's\r\nrespondents\r\nresponder\r\nresponders\r\nresponding\r\nresponds\r\nresponse\r\nresponses\r\nresponsibilities\r\nresponsibility\r\nresponsible\r\nresponsibly\r\nresponsive\r\nresponsively\r\nresponsiveness\r\nrest\r\nrestage\r\nrestart\r\nrestarted\r\nrestarting\r\nrestarts\r\nrestate\r\nrestated\r\nrestatement\r\nrestates\r\nrestating\r\nrestaurant\r\nrestaurant's\r\nrestaurants\r\nrestaurateur\r\nrested\r\nrestful\r\nrestfully\r\nrestfulness\r\nresting\r\nrestitution\r\nrestive\r\nrestively\r\nrestiveness\r\nrestless\r\nrestlessly\r\nrestlessness\r\nrestock\r\nrestorability\r\nrestorable\r\nrestoration\r\nrestoration's\r\nrestorations\r\nrestorative\r\nrestoratively\r\nrestore\r\nrestored\r\nrestorer\r\nrestorers\r\nrestores\r\nrestoring\r\nrestrain\r\nrestrained\r\nrestrainedly\r\nrestrainers\r\nrestraining\r\nrestrains\r\nrestraint\r\nrestraint's\r\nrestraints\r\nrestrict\r\nrestricted\r\nrestrictedly\r\nrestricting\r\nrestriction\r\nrestriction's\r\nrestrictions\r\nrestrictive\r\nrestrictively\r\nrestricts\r\nrestroom\r\nrestroom's\r\nrestrooms\r\nrestructure\r\nrestructured\r\nrestructures\r\nrestructuring\r\nrests\r\nrestudy\r\nresubmission\r\nresubmit\r\nresubmits\r\nresubmitted\r\nresubmitting\r\nresult\r\nresultant\r\nresultantly\r\nresultants\r\nresulted\r\nresulting\r\nresults\r\nresume\r\nresumed\r\nresumes\r\nresuming\r\nresumption\r\nresumption's\r\nresumptions\r\nresurface\r\nresurfaced\r\nresurfaces\r\nresurfacing\r\nresurge\r\nresurged\r\nresurgence\r\nresurgent\r\nresurges\r\nresurging\r\nresurrect\r\nresurrected\r\nresurrecting\r\nresurrection\r\nresurrection's\r\nresurrections\r\nresurrects\r\nresuscitate\r\nresuscitated\r\nresuscitates\r\nresuscitating\r\nresuscitation\r\nresuscitative\r\nresuscitator\r\nresuscitators\r\nresynchronisation\r\nresynchronisations\r\nresynchronise\r\nresynchronised\r\nresynchronises\r\nret\r\nretail\r\nretailed\r\nretailer\r\nretailers\r\nretailing\r\nretails\r\nretain\r\nretained\r\nretainer\r\nretainers\r\nretaining\r\nretains\r\nretake\r\nretaliate\r\nretaliated\r\nretaliates\r\nretaliating\r\nretaliation\r\nretaliatory\r\nretard\r\nretardant\r\nretardation\r\nretarded\r\nretarding\r\nretch\r\nretching\r\nretell\r\nretelling\r\nretention\r\nretentions\r\nretentive\r\nretentively\r\nretentiveness\r\nretest\r\nrethink\r\nrethinking\r\nrethinks\r\nrethought\r\nrethreading\r\nreticence\r\nreticent\r\nreticently\r\nreticular\r\nreticulate\r\nreticulated\r\nreticulates\r\nreticulating\r\nreticulation\r\nreticule\r\nretied\r\nretina\r\nretina's\r\nretinae\r\nretinal\r\nretinas\r\nretinopathy\r\nretinue\r\nretinues\r\nretire\r\nretired\r\nretiree\r\nretirement\r\nretirement's\r\nretirements\r\nretires\r\nretiring\r\nretiringly\r\nretold\r\nretool\r\nretort\r\nretorted\r\nretorting\r\nretorts\r\nretouch\r\nretouching\r\nretrace\r\nretraced\r\nretraces\r\nretracing\r\nretract\r\nretractable\r\nretracted\r\nretractile\r\nretracting\r\nretraction\r\nretractions\r\nretractor\r\nretractor's\r\nretractors\r\nretracts\r\nretrain\r\nretrained\r\nretraining\r\nretrains\r\nretranslated\r\nretransmission\r\nretransmission's\r\nretransmissions\r\nretransmit\r\nretransmits\r\nretransmitted\r\nretransmitting\r\nretread\r\nretreat\r\nretreated\r\nretreating\r\nretreats\r\nretrench\r\nretrenching\r\nretrenchment\r\nretrial\r\nretribution\r\nretributive\r\nretributively\r\nretried\r\nretries\r\nretrievable\r\nretrieval\r\nretrieval's\r\nretrievals\r\nretrieve\r\nretrieved\r\nretriever\r\nretrievers\r\nretrieves\r\nretrieving\r\nretro\r\nretroact\r\nretroaction\r\nretroactive\r\nretroactively\r\nretroactivity\r\nretrocede\r\nretrocession\r\nretrofire\r\nretrofit\r\nretrofitted\r\nretrofitting\r\nretroflex\r\nretroflexed\r\nretrograde\r\nretrograding\r\nretrogress\r\nretrogression\r\nretrogressive\r\nretrogressively\r\nretrorocket\r\nretrospect\r\nretrospection\r\nretrospective\r\nretrospectively\r\nretry\r\nretrying\r\nretted\r\nretting\r\nreturn\r\nreturnable\r\nreturned\r\nreturnee\r\nreturnee's\r\nreturnees\r\nreturning\r\nreturns\r\nretype\r\nretyped\r\nretypes\r\nretyping\r\nreunification\r\nreunify\r\nreunion\r\nreunion's\r\nreunions\r\nreunite\r\nreunited\r\nreuniting\r\nreupholstering\r\nreusable\r\nreuse\r\nreused\r\nreuses\r\nreusing\r\nreutilise\r\nreutilises\r\nrev\r\nrevalidate\r\nrevalidated\r\nrevalidates\r\nrevalidating\r\nrevalidation\r\nrevalorisation\r\nrevalorisation's\r\nrevalorisations\r\nrevalorise\r\nrevalorised\r\nrevalorises\r\nrevalorising\r\nrevaluate\r\nrevaluation\r\nrevalue\r\nrevamp\r\nrevamped\r\nrevamping\r\nrevamps\r\nreveal\r\nrevealed\r\nrevealing\r\nreveals\r\nreveille\r\nreveilles\r\nrevel\r\nrevelation\r\nrevelation's\r\nrevelations\r\nrevelatory\r\nrevelled\r\nreveller\r\nrevellers\r\nrevelling\r\nrevelry\r\nrevels\r\nrevenant\r\nrevenge\r\nrevenge's\r\nrevenged\r\nrevengeful\r\nrevengefully\r\nrevengefulness\r\nrevenges\r\nrevenging\r\nrevenue\r\nrevenuer\r\nrevenuers\r\nrevenues\r\nreverb\r\nreverberant\r\nreverberate\r\nreverberated\r\nreverberation\r\nreverberations\r\nrevere\r\nrevered\r\nreverence\r\nreverend\r\nreverend's\r\nreverends\r\nreverent\r\nreverential\r\nreverentially\r\nreverently\r\nreveres\r\nreverie\r\nreveries\r\nrevering\r\nreversal\r\nreversal's\r\nreversals\r\nreverse\r\nreversed\r\nreverses\r\nreversibility\r\nreversible\r\nreversibly\r\nreversing\r\nreversion\r\nreversionary\r\nreversions\r\nrevert\r\nreverted\r\nrevertible\r\nreverting\r\nreverts\r\nrevet\r\nrevetment\r\nrevetments\r\nreview\r\nreviewed\r\nreviewer\r\nreviewers\r\nreviewing\r\nreviews\r\nrevile\r\nreviled\r\nrevilement\r\nreviling\r\nrevisable\r\nrevise\r\nrevised\r\nreviser\r\nrevises\r\nrevising\r\nrevision\r\nrevision's\r\nrevisionary\r\nrevisionism\r\nrevisionist\r\nrevisionists\r\nrevisions\r\nrevisit\r\nrevisited\r\nrevisiting\r\nrevisits\r\nrevitalisation\r\nrevitalisation's\r\nrevitalise\r\nrevitalised\r\nrevitalises\r\nrevitalising\r\nrevivable\r\nrevival\r\nrevival's\r\nrevivalism\r\nrevivalist\r\nrevivalists\r\nrevivals\r\nrevive\r\nrevived\r\nreviver\r\nrevives\r\nrevivification\r\nrevivified\r\nrevivify\r\nreviving\r\nrevocable\r\nrevocation\r\nrevocations\r\nrevoke\r\nrevoked\r\nrevokes\r\nrevoking\r\nrevolt\r\nrevolted\r\nrevolting\r\nrevoltingly\r\nrevolts\r\nrevolute\r\nrevolution\r\nrevolution's\r\nrevolutionaries\r\nrevolutionarily\r\nrevolutionary\r\nrevolutionary's\r\nrevolutionise\r\nrevolutionised\r\nrevolutionises\r\nrevolutionising\r\nrevolutionist\r\nrevolutionists\r\nrevolutions\r\nrevolve\r\nrevolved\r\nrevolver\r\nrevolvers\r\nrevolves\r\nrevolving\r\nrevs\r\nrevue\r\nrevues\r\nrevulsion\r\nrevved\r\nrevving\r\nreward\r\nrewarded\r\nrewarding\r\nrewardingly\r\nrewards\r\nrewind\r\nrewinding\r\nrewinds\r\nrewire\r\nrewired\r\nrewires\r\nrewiring\r\nreword\r\nreworded\r\nrewording\r\nrewording's\r\nrewordings\r\nrewords\r\nrework\r\nreworked\r\nreworking\r\nreworks\r\nrewound\r\nrewrite\r\nrewriter\r\nrewrites\r\nrewriting\r\nrewritings\r\nrewritten\r\nrewrote\r\nrezone\r\nrhapsodic\r\nrhapsodically\r\nrhapsodise\r\nrhapsodised\r\nrhapsodises\r\nrhapsodising\r\nrhapsodist\r\nrhapsody\r\nrhenium\r\nrheostat\r\nrheostats\r\nrhesus\r\nrhetoric\r\nrhetorical\r\nrhetorically\r\nrhetorician\r\nrhetoricians\r\nrheum\r\nrheumatic\r\nrheumatics\r\nrheumatism\r\nrheumatoid\r\nrheumatologist\r\nrheumatology\r\nrheumy\r\nrhinestone\r\nrhinestones\r\nrhinitis\r\nrhino\r\nrhinoceros\r\nrhinos\r\nrhinovirus\r\nrhizoid\r\nrhizome\r\nrhodium\r\nrhododendron\r\nrhododendrons\r\nrhomb\r\nrhombi\r\nrhombic\r\nrhomboid\r\nrhomboidal\r\nrhombus\r\nrhombuses\r\nrhubarb\r\nrhumb\r\nrhyme\r\nrhymed\r\nrhymes\r\nrhymester\r\nrhyming\r\nrhythm\r\nrhythm's\r\nrhythmic\r\nrhythmical\r\nrhythmically\r\nrial\r\nrialto\r\nrib\r\nrib's\r\nribald\r\nribaldry\r\nriband\r\nribband\r\nribbed\r\nribbing\r\nribbon\r\nribbon's\r\nribbonfish\r\nribbons\r\nribgrass\r\nriboflavin\r\nribonucleic\r\nribose\r\nribosomal\r\nribosome\r\nribs\r\nrice\r\nricebird\r\nricer\r\nrich\r\nricher\r\nriches\r\nrichest\r\nrichly\r\nrichness\r\nricin\r\nrickets\r\nrickety\r\nrickrack\r\nrickshaw\r\nrickshaw's\r\nrickshaws\r\nricochet\r\nricocheted\r\nricocheting\r\nricochets\r\nricotta\r\nrictus\r\nrid\r\nriddance\r\nridded\r\nridden\r\nridding\r\nriddle\r\nriddled\r\nriddles\r\nriddling\r\nride\r\nrider\r\nrider's\r\nriders\r\nrides\r\nridge\r\nridge's\r\nridged\r\nridgepole\r\nridges\r\nridgeway\r\nridging\r\nridicule\r\nridiculed\r\nridiculer\r\nridicules\r\nridiculing\r\nridiculous\r\nridiculously\r\nridiculousness\r\nriding\r\nridings\r\nrids\r\nrife\r\nriff\r\nriffle\r\nriffled\r\nriffles\r\nriffling\r\nriffraff\r\nrifle\r\nriflebird\r\nrifled\r\nrifleman\r\nriflemen\r\nrifles\r\nriflescope\r\nrifling\r\nrift\r\nrifts\r\nrig\r\nrig's\r\nrigatoni\r\nrigged\r\nrigger\r\nriggers\r\nrigging\r\nright\r\nrighted\r\nrighteous\r\nrighteously\r\nrighteousness\r\nrighter\r\nrightful\r\nrightfully\r\nrightfulness\r\nrighting\r\nrightist\r\nrightly\r\nrightmost\r\nrightness\r\nrights\r\nrightward\r\nrightwards\r\nrigid\r\nrigidify\r\nrigidities\r\nrigidity\r\nrigidly\r\nrigmarole\r\nrigmaroles\r\nrigorist\r\nrigorists\r\nrigorous\r\nrigorously\r\nrigorousness\r\nrigour\r\nrigour's\r\nrigours\r\nrigs\r\nrile\r\nriling\r\nrill\r\nrim\r\nrim's\r\nrime\r\nriming\r\nrimless\r\nrimmed\r\nrimming\r\nrims\r\nrimy\r\nrind\r\nrind's\r\nrinds\r\nring\r\nringbolt\r\nringbolts\r\nringbone\r\nringdove\r\nringed\r\nringer\r\nringers\r\nringing\r\nringleader\r\nringleaders\r\nringlet\r\nringlets\r\nringmaster\r\nringmasters\r\nrings\r\nringside\r\nringsiders\r\nringtail\r\nringworm\r\nringworms\r\nrink\r\nrinse\r\nrinsed\r\nrinses\r\nrinsing\r\nriot\r\nrioted\r\nrioter\r\nrioters\r\nrioting\r\nriotous\r\nriotously\r\nriotousness\r\nriots\r\nrip\r\nriparian\r\nripcord\r\nripe\r\nripen\r\nripened\r\nripeness\r\nripening\r\nripens\r\nriper\r\nripest\r\nriposte\r\nripped\r\nripper\r\nripping\r\nripple\r\nrippled\r\nripples\r\nrippling\r\nriprap\r\nrips\r\nripsaw\r\nripsnorter\r\nriptide\r\nrise\r\nrisen\r\nriser\r\nrisers\r\nrises\r\nrisibility\r\nrisible\r\nrising\r\nrisings\r\nrisk\r\nrisked\r\nriskier\r\nrisking\r\nrisks\r\nrisky\r\nrisotto\r\nrissole\r\nrite\r\nrite's\r\nrites\r\nritual\r\nritualise\r\nritualised\r\nritualises\r\nritualising\r\nritualism\r\nritualist\r\nritualistic\r\nritualistically\r\nritually\r\nrituals\r\nritzier\r\nritziness\r\nritzy\r\nrival\r\nrivalled\r\nrivalling\r\nrivalries\r\nrivalry\r\nrivalry's\r\nrivals\r\nrive\r\nrived\r\nriver\r\nriver's\r\nriverbank\r\nriverbanks\r\nriverbed\r\nriverboat\r\nriverfront\r\nrivers\r\nriverside\r\nriverward\r\nriverwards\r\nriverweed\r\nrivet\r\nriveted\r\nriveter\r\nriveting\r\nrivets\r\nriving\r\nrivulet\r\nrivulet's\r\nrivulets\r\nriyal\r\nroach\r\nroaches\r\nroad\r\nroad's\r\nroadbed\r\nroadbeds\r\nroadblock\r\nroadblocks\r\nroadhouse\r\nroadhouses\r\nroadrunner\r\nroadrunners\r\nroads\r\nroadside\r\nroadsides\r\nroadstead\r\nroadster\r\nroadster's\r\nroadsters\r\nroadway\r\nroadway's\r\nroadways\r\nroadwork\r\nroadworthiness\r\nroadworthy\r\nroam\r\nroamed\r\nroaming\r\nroams\r\nroan\r\nroar\r\nroared\r\nroaring\r\nroars\r\nroast\r\nroasted\r\nroaster\r\nroasting\r\nroasts\r\nrob\r\nrobbed\r\nrobber\r\nrobber's\r\nrobberies\r\nrobbers\r\nrobbery\r\nrobbery's\r\nrobbing\r\nrobe\r\nrobed\r\nrobes\r\nrobin\r\nrobin's\r\nrobins\r\nrobot\r\nrobot's\r\nrobotic\r\nrobotics\r\nrobots\r\nrobs\r\nrobust\r\nrobustly\r\nrobustness\r\nroc\r\nrock\r\nrockabilly\r\nrockaway\r\nrockbound\r\nrocked\r\nrocker\r\nrockers\r\nrockery\r\nrocket\r\nrocket's\r\nrocketed\r\nrocketing\r\nrocketry\r\nrockets\r\nrockfish\r\nrockier\r\nrockiness\r\nrocking\r\nrocklike\r\nrockrose\r\nrocks\r\nrockshaft\r\nrockweed\r\nrocky\r\nrococo\r\nrod\r\nrod's\r\nrode\r\nrodent\r\nrodents\r\nrodeo\r\nrodeos\r\nrodomontade\r\nrods\r\nroe\r\nroebuck\r\nroebucks\r\nroentgen\r\nroentgenogram\r\nroentgenogram's\r\nroentgenograms\r\nroes\r\nrogation\r\nrogatory\r\nrogue\r\nrogue's\r\nroguery\r\nrogues\r\nroguish\r\nroguishly\r\nroguishness\r\nroil\r\nroiling\r\nroily\r\nroister\r\nroistered\r\nroisterer\r\nroistering\r\nrole\r\nrole's\r\nroles\r\nroll\r\nrollaway\r\nrollback\r\nrolled\r\nroller\r\nrollers\r\nrollick\r\nrollicking\r\nrollickingly\r\nrolling\r\nrollout\r\nrollover\r\nrolls\r\nrollway\r\nromaine\r\nromance\r\nromanced\r\nromancer\r\nromancers\r\nromances\r\nromancing\r\nromantic\r\nromantic's\r\nromantically\r\nromanticise\r\nromanticises\r\nromanticising\r\nromanticism\r\nromanticist\r\nromantics\r\nromp\r\nromped\r\nromper\r\nrompers\r\nromping\r\nromps\r\nrondo\r\nrondos\r\nrood\r\nroof\r\nroofed\r\nroofer\r\nroofers\r\nroofing\r\nroofless\r\nroofline\r\nroofs\r\nrooftop\r\nrooftops\r\nrooftree\r\nrook\r\nrookery\r\nrookie\r\nrookies\r\nrooks\r\nroom\r\nroomed\r\nroomer\r\nroomers\r\nroomette\r\nroomful\r\nroomier\r\nroominess\r\nrooming\r\nroommate\r\nroommate's\r\nroommates\r\nrooms\r\nroomy\r\nroost\r\nrooster\r\nroosters\r\nroot\r\nroot's\r\nrooted\r\nrooter\r\nroothold\r\nrooting\r\nrootless\r\nrootlet\r\nroots\r\nrootstalk\r\nrootstock\r\nrope\r\nroped\r\nropedancer\r\nroper\r\nropers\r\nropes\r\nropewalk\r\nropewalker\r\nropeway\r\nropier\r\nroping\r\nropy\r\nrosaries\r\nrosary\r\nroscoe\r\nrose\r\nrose's\r\nroseate\r\nrosebay\r\nrosebud\r\nrosebud's\r\nrosebuds\r\nrosebush\r\nrosefish\r\nrosehip\r\nrosemary\r\nroses\r\nrosette\r\nrosettes\r\nrosewater\r\nrosewood\r\nrosier\r\nrosily\r\nrosin\r\nrosined\r\nrosining\r\nrosinweed\r\nroster\r\nrostra\r\nrostrum\r\nrosy\r\nrot\r\nrotary\r\nrotate\r\nrotated\r\nrotates\r\nrotating\r\nrotation\r\nrotational\r\nrotationally\r\nrotations\r\nrotator\r\nrotator's\r\nrotators\r\nrote\r\nrotenone\r\nrotgut\r\nrotifer\r\nrotisserie\r\nrotogravure\r\nrotogravures\r\nrotor\r\nrotorcraft\r\nrotors\r\nrots\r\nrotted\r\nrotten\r\nrottenly\r\nrottenness\r\nrottenstone\r\nrotting\r\nrotund\r\nrotunda\r\nrotundity\r\nrouble\r\nrouble's\r\nroubles\r\nrouge\r\nrough\r\nroughage\r\nroughcast\r\nroughed\r\nroughen\r\nroughened\r\nroughening\r\nroughens\r\nrougher\r\nroughest\r\nroughhouse\r\nroughhoused\r\nroughhousing\r\nroughish\r\nroughly\r\nroughneck\r\nroughness\r\nroughrider\r\nroughriders\r\nroughshod\r\nrouging\r\nroulade\r\nroulette\r\nroulettes\r\nround\r\nroundabout\r\nrounded\r\nroundedness\r\nroundel\r\nroundelay\r\nrounder\r\nroundest\r\nroundhead\r\nroundhouse\r\nrounding\r\nroundly\r\nroundness\r\nrounds\r\nroundsman\r\nroundtable\r\nroundup\r\nroundup's\r\nroundups\r\nroundworm\r\nrouse\r\nrouseabout\r\nroused\r\nrouses\r\nrousing\r\nroust\r\nroustabout\r\nrout\r\nroute\r\nrouted\r\nrouteing\r\nrouter\r\nrouters\r\nroutes\r\nroutine\r\nroutinely\r\nroutines\r\nrouting\r\nroutings\r\nroux\r\nrove\r\nroved\r\nrover\r\nroves\r\nroving\r\nrow\r\nrowboat\r\nrowboats\r\nrowdier\r\nrowdies\r\nrowdily\r\nrowdiness\r\nrowdy\r\nrowed\r\nrowel\r\nrower\r\nrowers\r\nrowing\r\nrowlock\r\nrows\r\nroyal\r\nroyalist\r\nroyalist's\r\nroyalists\r\nroyally\r\nroyalties\r\nroyalty\r\nroyalty's\r\nrozzer\r\nrpt\r\nrub\r\nrubbed\r\nrubber\r\nrubber's\r\nrubberise\r\nrubberised\r\nrubberises\r\nrubberising\r\nrubberneck\r\nrubbers\r\nrubbery\r\nrubbing\r\nrubbish\r\nrubbishes\r\nrubbishy\r\nrubble\r\nrubblework\r\nrubdown\r\nrube\r\nrubella\r\nrubes\r\nrubicund\r\nrubidium\r\nrubies\r\nrubout\r\nrubric\r\nrubs\r\nrubstone\r\nruby\r\nruby's\r\nruche\r\nruck\r\nrucksack\r\nruckus\r\nruction\r\nrudder\r\nrudder's\r\nrudderless\r\nrudderpost\r\nrudders\r\nrudderstock\r\nruddier\r\nruddily\r\nruddiness\r\nruddle\r\nruddy\r\nrude\r\nrudely\r\nrudeness\r\nruder\r\nrudest\r\nrudiment\r\nrudiment's\r\nrudimental\r\nrudimentarily\r\nrudimentary\r\nrudiments\r\nrue\r\nrueful\r\nruefully\r\nruefulness\r\nrues\r\nruff\r\nruffed\r\nruffian\r\nruffians\r\nruffle\r\nruffled\r\nruffles\r\nruffling\r\nrug\r\nrug's\r\nrugby\r\nrugged\r\nruggedise\r\nruggedly\r\nruggedness\r\nrugger\r\nrugs\r\nruin\r\nruination\r\nruination's\r\nruinations\r\nruined\r\nruing\r\nruining\r\nruinous\r\nruinously\r\nruins\r\nrule\r\nruled\r\nruler\r\nrulers\r\nrules\r\nruling\r\nrulings\r\nrum\r\nrumba\r\nrumble\r\nrumbled\r\nrumbles\r\nrumbling\r\nrumen\r\nrumens\r\nruminant\r\nruminants\r\nruminate\r\nrumination\r\nruminative\r\nruminatively\r\nruminator\r\nrummage\r\nrummaged\r\nrummaging\r\nrummies\r\nrummy\r\nrumour\r\nrumour's\r\nrumoured\r\nrumouring\r\nrumourmonger\r\nrumourmonger's\r\nrumourmongers\r\nrumours\r\nrump\r\nrumple\r\nrumpled\r\nrumples\r\nrumpling\r\nrumps\r\nrumpus\r\nrumrunner\r\nrun\r\nrunabout\r\nrunabouts\r\nrunaway\r\nrunaways\r\nrunback\r\nrundle\r\nrundown\r\nrune\r\nrunes\r\nrung\r\nrung's\r\nrungs\r\nrunic\r\nrunlet\r\nrunnel\r\nrunnels\r\nrunner\r\nrunner's\r\nrunners\r\nrunning\r\nrunny\r\nrunoff\r\nrunoffs\r\nruns\r\nrunt\r\nruntime\r\nrunts\r\nrunty\r\nrunway\r\nrunways\r\nrupee\r\nrupees\r\nrupture\r\nruptured\r\nruptures\r\nrupturing\r\nrural\r\nrurally\r\nruse\r\nrush\r\nrushed\r\nrusher\r\nrushes\r\nrushing\r\nrusk\r\nrusset\r\nrussets\r\nrust\r\nrusted\r\nrustic\r\nrustically\r\nrusticate\r\nrusticated\r\nrusticates\r\nrusticating\r\nrustication\r\nrusticator\r\nrusticity\r\nrustier\r\nrustiness\r\nrusting\r\nrustle\r\nrustled\r\nrustler\r\nrustlers\r\nrustles\r\nrustling\r\nrustproof\r\nrusts\r\nrusty\r\nrut\r\nrut's\r\nrutabaga\r\nrutabagas\r\nruthenium\r\nruthful\r\nruthless\r\nruthlessly\r\nruthlessness\r\nruts\r\nrutted\r\nruttier\r\nrutting\r\nrutty\r\nrye\r\nrye's\r\nryegrass\r\nryot\r\ns's\r\nsabbatical\r\nsable\r\nsable's\r\nsables\r\nsabot\r\nsabotage\r\nsabotaged\r\nsabotages\r\nsabotaging\r\nsaboteur\r\nsaboteurs\r\nsabre\r\nsabre's\r\nsabres\r\nsac\r\nsaccade\r\nsaccadic\r\nsaccharin\r\nsaccharine\r\nsacerdotal\r\nsachem\r\nsachems\r\nsachet\r\nsack\r\nsackbut\r\nsackcloth\r\nsacked\r\nsacker\r\nsacking\r\nsacks\r\nsaclike\r\nsacra\r\nsacral\r\nsacrament\r\nsacramental\r\nsacraments\r\nsacred\r\nsacredly\r\nsacredness\r\nsacrifice\r\nsacrificed\r\nsacrifices\r\nsacrificial\r\nsacrificially\r\nsacrificing\r\nsacrilege\r\nsacrilegious\r\nsacrilegiously\r\nsacristan\r\nsacristy\r\nsacroiliac\r\nsacrosanct\r\nsacrum\r\nsad\r\nsadden\r\nsaddened\r\nsaddening\r\nsaddens\r\nsadder\r\nsaddest\r\nsaddle\r\nsaddlebag\r\nsaddlebags\r\nsaddlebow\r\nsaddlecloth\r\nsaddled\r\nsaddler\r\nsaddlery\r\nsaddles\r\nsaddletree\r\nsaddling\r\nsadiron\r\nsadism\r\nsadist\r\nsadist's\r\nsadistic\r\nsadistically\r\nsadists\r\nsadly\r\nsadness\r\nsadomasochism\r\nsadomasochist\r\nsadomasochistic\r\nsafari\r\nsafe\r\nsafecracker\r\nsafecracking\r\nsafeguard\r\nsafeguarded\r\nsafeguarding\r\nsafeguards\r\nsafekeeping\r\nsafelight\r\nsafely\r\nsafeness\r\nsafer\r\nsafes\r\nsafest\r\nsafetied\r\nsafeties\r\nsafety\r\nsafetyman\r\nsafflower\r\nsaffron\r\nsag\r\nsaga\r\nsagacious\r\nsagaciously\r\nsagaciousness\r\nsagacity\r\nsage\r\nsagebrush\r\nsagely\r\nsages\r\nsagged\r\nsagging\r\nsago\r\nsags\r\nsaguaro\r\nsahib\r\nsaid\r\nsail\r\nsailable\r\nsailboard\r\nsailboat\r\nsailboats\r\nsailcloth\r\nsailed\r\nsailfish\r\nsailing\r\nsailor\r\nsailors\r\nsailplane\r\nsailplaner\r\nsails\r\nsaint\r\nsainted\r\nsainthood\r\nsaintliness\r\nsaintly\r\nsaints\r\nsake\r\nsakes\r\nsalaam\r\nsalacious\r\nsalaciously\r\nsalaciousness\r\nsalad\r\nsalad's\r\nsalads\r\nsalamander\r\nsalami\r\nsalamis\r\nsalaried\r\nsalaries\r\nsalary\r\nsale\r\nsale's\r\nsaleable\r\nsaleroom\r\nsales\r\nsalesclerk\r\nsalesgirl\r\nsaleslady\r\nsalesman\r\nsalesmanship\r\nsalesmen\r\nsalespeople\r\nsalespeople's\r\nsalesperson\r\nsalesperson's\r\nsalesroom\r\nsaleswoman\r\nsaleswomen\r\nsalicylic\r\nsalience\r\nsaliency\r\nsalient\r\nsaliently\r\nsaline\r\nsalinity\r\nsaliva\r\nsalivary\r\nsalivate\r\nsalivated\r\nsalivates\r\nsalivating\r\nsalivation\r\nsallied\r\nsallies\r\nsallow\r\nsally\r\nsallying\r\nsalmagundi\r\nsalmon\r\nsalmonberries\r\nsalmonberry\r\nsalmonella\r\nsalmons\r\nsalon\r\nsalon's\r\nsalons\r\nsaloon\r\nsaloon's\r\nsaloonkeeper\r\nsaloons\r\nsalsa\r\nsalsa's\r\nsalsas\r\nsalt\r\nsaltbox\r\nsaltbush\r\nsaltcellar\r\nsalted\r\nsaltier\r\nsaltiest\r\nsaltine\r\nsaltiness\r\nsalting\r\nsaltpan\r\nsaltpetre\r\nsaltpetre's\r\nsalts\r\nsaltshaker\r\nsaltwater\r\nsalty\r\nsalubrious\r\nsalubriously\r\nsalubriousness\r\nsaluki\r\nsalutary\r\nsalutation\r\nsalutation's\r\nsalutations\r\nsalutatorian\r\nsalutatory\r\nsalute\r\nsaluted\r\nsalutes\r\nsaluting\r\nsalvable\r\nsalvage\r\nsalvageable\r\nsalvaged\r\nsalvager\r\nsalvages\r\nsalvaging\r\nsalvation\r\nsalve\r\nsalver\r\nsalves\r\nsalving\r\nsalvo\r\nsalvoes\r\nsalvos\r\nsamara\r\nsamarium\r\nsamba\r\nsame\r\nsameness\r\nsamovar\r\nsampan\r\nsample\r\nsample's\r\nsampled\r\nsampler\r\nsamplers\r\nsamples\r\nsampling\r\nsamplings\r\nsamurai\r\nsamurai's\r\nsamurais\r\nsanative\r\nsanatoria\r\nsanatorium\r\nsancta\r\nsanctification\r\nsanctified\r\nsanctifier\r\nsanctify\r\nsanctimonious\r\nsanctimoniously\r\nsanctimony\r\nsanction\r\nsanctioned\r\nsanctioning\r\nsanctions\r\nsanctities\r\nsanctity\r\nsanctuaries\r\nsanctuary\r\nsanctuary's\r\nsanctum\r\nsand\r\nsandal\r\nsandal's\r\nsandals\r\nsandalwood\r\nsandarac\r\nsandbag\r\nsandbagger\r\nsandbank\r\nsandbar\r\nsandbars\r\nsandblast\r\nsandblaster\r\nsandbox\r\nsandbur\r\nsanded\r\nsander\r\nsanders\r\nsandglass\r\nsandhog\r\nsandier\r\nsandiness\r\nsanding\r\nsandlot\r\nsandman\r\nsandpaper\r\nsandpapery\r\nsandpiper\r\nsandpit\r\nsands\r\nsandstone\r\nsandstones\r\nsandstorm\r\nsandstorms\r\nsandwich\r\nsandwiched\r\nsandwiches\r\nsandwiching\r\nsandworm\r\nsandworms\r\nsandy\r\nsane\r\nsanely\r\nsaneness\r\nsaner\r\nsanest\r\nsang\r\nsangfroid\r\nsangria\r\nsanguinary\r\nsanguine\r\nsanguinely\r\nsanguineness\r\nsanguineous\r\nsanguinity\r\nsanitarian\r\nsanitarily\r\nsanitary\r\nsanitation\r\nsanitations\r\nsanitise\r\nsanitised\r\nsanitises\r\nsanitising\r\nsanity\r\nsank\r\nsans\r\nsansei\r\nsap\r\nsap's\r\nsaphead\r\nsapid\r\nsapience\r\nsapiens\r\nsapient\r\nsapless\r\nsapling\r\nsapling's\r\nsaplings\r\nsapodilla\r\nsaponaceous\r\nsapped\r\nsapper\r\nsapphire\r\nsappier\r\nsappiness\r\nsapping\r\nsappy\r\nsaprobe\r\nsaprophyte\r\nsaprophytic\r\nsaps\r\nsapsago\r\nsapsucker\r\nsapwood\r\nsarcasm\r\nsarcasm's\r\nsarcasms\r\nsarcastic\r\nsarcastically\r\nsarcoma\r\nsarcophagus\r\nsardine\r\nsardines\r\nsardonic\r\nsardonically\r\nsari\r\nsarong\r\nsarong's\r\nsarongs\r\nsarsaparilla\r\nsartorial\r\nsartorially\r\nsash\r\nsashay\r\nsashayed\r\nsashes\r\nsashimi\r\nsass\r\nsassafras\r\nsassier\r\nsassing\r\nsasswood\r\nsassy\r\nsat\r\nsatanic\r\nsatanically\r\nsatchel\r\nsatchel's\r\nsatchels\r\nsate\r\nsated\r\nsateen\r\nsatellite\r\nsatellite's\r\nsatellites\r\nsates\r\nsati\r\nsatiable\r\nsatiate\r\nsatiated\r\nsatiates\r\nsatiating\r\nsatiation\r\nsatiety\r\nsatin\r\nsating\r\nsatinwood\r\nsatiny\r\nsatire\r\nsatire's\r\nsatires\r\nsatiric\r\nsatirical\r\nsatirically\r\nsatirise\r\nsatirised\r\nsatirises\r\nsatirising\r\nsatirist\r\nsatirist's\r\nsatirists\r\nsatisfaction\r\nsatisfaction's\r\nsatisfactions\r\nsatisfactorily\r\nsatisfactoriness\r\nsatisfactory\r\nsatisfied\r\nsatisfier\r\nsatisfiers\r\nsatisfies\r\nsatisfy\r\nsatisfying\r\nsatisfyingly\r\nsatrap\r\nsatrapy\r\nsaturate\r\nsaturated\r\nsaturates\r\nsaturating\r\nsaturation\r\nsaturations\r\nsaturator\r\nsaturnalia\r\nsaturnine\r\nsatyr\r\nsatyriasis\r\nsauce\r\nsaucepan\r\nsaucepan's\r\nsaucepans\r\nsaucer\r\nsaucers\r\nsauces\r\nsaucier\r\nsaucily\r\nsauciness\r\nsaucing\r\nsaucy\r\nsauerbraten\r\nsauerkraut\r\nsauna\r\nsauna's\r\nsaunas\r\nsaunter\r\nsauntered\r\nsauntering\r\nsaunters\r\nsaurian\r\nsausage\r\nsausage's\r\nsausages\r\nsauterne\r\nsauternes\r\nsavage\r\nsavaged\r\nsavagely\r\nsavageness\r\nsavagery\r\nsavages\r\nsavaging\r\nsavanna\r\nsavannah\r\nsavant\r\nsavants\r\nsave\r\nsaveable\r\nsaved\r\nsaver\r\nsavers\r\nsaves\r\nsaving\r\nsavings\r\nsaviour\r\nsaviour's\r\nsaviours\r\nsavoir\r\nsavour\r\nsavoured\r\nsavouries\r\nsavouring\r\nsavours\r\nsavoury\r\nsavoury's\r\nsavvied\r\nsavvy\r\nsaw\r\nsawbones\r\nsawboneses\r\nsawbuck\r\nsawdust\r\nsawed\r\nsawfish\r\nsawfly\r\nsawhorse\r\nsawing\r\nsawmill\r\nsawmill's\r\nsawmills\r\nsawn\r\nsaws\r\nsawyer\r\nsax\r\nsaxhorn\r\nsaxifrage\r\nsaxophone\r\nsaxophone's\r\nsaxophones\r\nsaxophonist\r\nsay\r\nsaying\r\nsayings\r\nsays\r\nscab\r\nscabbard\r\nscabbard's\r\nscabbards\r\nscabbed\r\nscabbier\r\nscabbing\r\nscabby\r\nscabies\r\nscabrous\r\nscabs\r\nscads\r\nscaffold\r\nscaffolding\r\nscaffoldings\r\nscaffolds\r\nscalability\r\nscalable\r\nscalar\r\nscalar's\r\nscalars\r\nscald\r\nscalded\r\nscalding\r\nscalds\r\nscale\r\nscaled\r\nscalene\r\nscales\r\nscalier\r\nscaling\r\nscallion\r\nscallop\r\nscalloped\r\nscalloping\r\nscallops\r\nscallywag\r\nscallywags\r\nscalp\r\nscalp's\r\nscalpel\r\nscalper\r\nscalping\r\nscalps\r\nscaly\r\nscam\r\nscam's\r\nscammed\r\nscamming\r\nscamp\r\nscamper\r\nscampered\r\nscampering\r\nscampers\r\nscampi\r\nscams\r\nscan\r\nscandal\r\nscandal's\r\nscandalise\r\nscandalised\r\nscandalises\r\nscandalising\r\nscandalmonger\r\nscandalous\r\nscandalously\r\nscandals\r\nscandium\r\nscanned\r\nscanner\r\nscanner's\r\nscanners\r\nscanning\r\nscans\r\nscansion\r\nscant\r\nscantier\r\nscantiest\r\nscantily\r\nscantiness\r\nscantling\r\nscantly\r\nscanty\r\nscapegoat\r\nscapegoats\r\nscapegrace\r\nscapula\r\nscapular\r\nscapulars\r\nscar\r\nscar's\r\nscarab\r\nscarce\r\nscarcely\r\nscarceness\r\nscarcer\r\nscarcest\r\nscarcity\r\nscare\r\nscarecrow\r\nscared\r\nscaremonger\r\nscares\r\nscarf\r\nscarfskin\r\nscarier\r\nscarification\r\nscarify\r\nscaring\r\nscarlet\r\nscarp\r\nscarped\r\nscarper\r\nscarpers\r\nscarping\r\nscarps\r\nscarred\r\nscarring\r\nscars\r\nscarves\r\nscary\r\nscat\r\nscathe\r\nscathed\r\nscathes\r\nscathing\r\nscathingly\r\nscatological\r\nscatology\r\nscatted\r\nscatter\r\nscatterbrain\r\nscatterbrained\r\nscattered\r\nscattergun\r\nscattering\r\nscatters\r\nscattershot\r\nscatting\r\nscavenge\r\nscavenged\r\nscavenger\r\nscavenger's\r\nscavengers\r\nscavenges\r\nscavenging\r\nscenario\r\nscenario's\r\nscenarios\r\nscene\r\nscene's\r\nsceneries\r\nscenery\r\nscenes\r\nscenic\r\nscenically\r\nscent\r\nscented\r\nscentless\r\nscents\r\nsceptic\r\nsceptical\r\nscepticism\r\nsceptre\r\nsceptre's\r\nsceptres\r\nschedule\r\nschedule's\r\nscheduled\r\nscheduler\r\nscheduler's\r\nschedulers\r\nschedules\r\nscheduling\r\nschema\r\nschema's\r\nschemas\r\nschemata\r\nschematic\r\nschematically\r\nschematics\r\nschematisation\r\nschematisation's\r\nschematisations\r\nschematise\r\nschematised\r\nschematises\r\nschematising\r\nscheme\r\nscheme's\r\nschemed\r\nschemer\r\nschemers\r\nschemes\r\nscheming\r\nscherzo\r\nschilling\r\nschism\r\nschismatic\r\nschismatically\r\nschist\r\nschistose\r\nschizocarp\r\nschizoid\r\nschizophrenia\r\nschizophrenic\r\nschizophrenically\r\nschlemiel\r\nschlock\r\nschmaltz\r\nschmaltzy\r\nschmooze\r\nschmuck\r\nschnapps\r\nschnauzer\r\nschnitzel\r\nschnook\r\nschnozzle\r\nscholar\r\nscholarly\r\nscholars\r\nscholarship\r\nscholarship's\r\nscholarships\r\nscholastic\r\nscholastically\r\nscholasticism\r\nscholastics\r\nscholiast\r\nschool\r\nschoolbag\r\nschoolbook\r\nschoolbooks\r\nschoolboy\r\nschoolboy's\r\nschoolboys\r\nschoolchild\r\nschooled\r\nschoolfellow\r\nschoolgirl\r\nschoolgirls\r\nschoolhouse\r\nschoolhouse's\r\nschoolhouses\r\nschooling\r\nschoolman\r\nschoolmarm\r\nschoolmaster\r\nschoolmaster's\r\nschoolmasters\r\nschoolmate\r\nschoolmates\r\nschoolmistress\r\nschoolroom\r\nschoolroom's\r\nschoolrooms\r\nschools\r\nschoolteacher\r\nschoolwork\r\nschoolyard\r\nschoolyard's\r\nschoolyards\r\nschooner\r\nschottische\r\nschwa\r\nsciatic\r\nsciatica\r\nscience\r\nscience's\r\nsciences\r\nscientific\r\nscientifically\r\nscientism\r\nscientist\r\nscientist's\r\nscientists\r\nscientologist\r\nscientology\r\nscilicet\r\nscimitar\r\nscimitars\r\nscintilla\r\nscintillate\r\nscintillated\r\nscintillates\r\nscintillating\r\nscintillation\r\nscion\r\nscions\r\nscissile\r\nscission\r\nscissor\r\nscissoring\r\nscissors\r\nsclera\r\nsclerosis\r\nsclerotic\r\nscoff\r\nscoffed\r\nscoffer\r\nscoffing\r\nscofflaw\r\nscofflaw's\r\nscofflaws\r\nscoffs\r\nscold\r\nscolded\r\nscolding\r\nscolds\r\nscoliosis\r\nsconce\r\nscone\r\nscoop\r\nscooped\r\nscooping\r\nscoops\r\nscoot\r\nscooted\r\nscooter\r\nscooting\r\nscoots\r\nscope\r\nscoped\r\nscopes\r\nscopolamine\r\nscorbutic\r\nscorch\r\nscorched\r\nscorcher\r\nscorches\r\nscorching\r\nscore\r\nscore's\r\nscoreboard\r\nscoreboards\r\nscorecard\r\nscored\r\nscorekeeper\r\nscoreless\r\nscorer\r\nscorers\r\nscores\r\nscoria\r\nscoring\r\nscorings\r\nscorn\r\nscorned\r\nscorner\r\nscornful\r\nscornfully\r\nscornfulness\r\nscorning\r\nscorns\r\nscorpion\r\nscorpion's\r\nscorpions\r\nscotch\r\nscoter\r\nscoundrel\r\nscoundrel's\r\nscoundrels\r\nscour\r\nscoured\r\nscourge\r\nscourging\r\nscouring\r\nscours\r\nscout\r\nscouted\r\nscouting\r\nscoutmaster\r\nscouts\r\nscow\r\nscowl\r\nscowled\r\nscowling\r\nscowls\r\nscrabble\r\nscrabbled\r\nscrabbles\r\nscrabbling\r\nscraggier\r\nscraggly\r\nscraggy\r\nscram\r\nscramble\r\nscrambled\r\nscrambler\r\nscrambles\r\nscrambling\r\nscramming\r\nscrap\r\nscrap's\r\nscrapbook\r\nscrapbooks\r\nscrape\r\nscraped\r\nscraper\r\nscraperboard\r\nscraperboards\r\nscrapers\r\nscrapes\r\nscraping\r\nscrapings\r\nscrapped\r\nscrapper\r\nscrappier\r\nscrappiness\r\nscrapping\r\nscrapple\r\nscrappy\r\nscraps\r\nscratch\r\nscratched\r\nscratches\r\nscratchier\r\nscratchiness\r\nscratching\r\nscratchy\r\nscrawl\r\nscrawled\r\nscrawling\r\nscrawls\r\nscrawnier\r\nscrawniness\r\nscrawny\r\nscream\r\nscreamed\r\nscreamer\r\nscreamers\r\nscreaming\r\nscreams\r\nscree\r\nscreech\r\nscreeched\r\nscreeches\r\nscreeching\r\nscreechy\r\nscreed\r\nscreen\r\nscreened\r\nscreener\r\nscreening\r\nscreenings\r\nscreenplay\r\nscreens\r\nscreenwriter\r\nscreenwriter's\r\nscreenwriters\r\nscrew\r\nscrewball\r\nscrewdriver\r\nscrewdrivers\r\nscrewed\r\nscrewier\r\nscrewing\r\nscrews\r\nscrewworm\r\nscrewy\r\nscribble\r\nscribbled\r\nscribbler\r\nscribbles\r\nscribbling\r\nscribe\r\nscriber\r\nscribes\r\nscribing\r\nscrim\r\nscrimmage\r\nscrimmaged\r\nscrimmages\r\nscrimmaging\r\nscrimp\r\nscrimped\r\nscrimping\r\nscrimps\r\nscrimshank\r\nscrimshaw\r\nscrip\r\nscript\r\nscript's\r\nscripted\r\nscripting\r\nscriptorium\r\nscripts\r\nscriptural\r\nscripture\r\nscriptures\r\nscriptwriter\r\nscriptwriter's\r\nscriptwriters\r\nscrivener\r\nscrod\r\nscrofula\r\nscrofulous\r\nscroll\r\nscrollbar\r\nscrollbar's\r\nscrollbars\r\nscrolled\r\nscrolling\r\nscrolls\r\nscrollwork\r\nscrooge\r\nscrooge's\r\nscrooges\r\nscrota\r\nscrotal\r\nscrotum\r\nscrotum's\r\nscrotums\r\nscrounge\r\nscrounged\r\nscrounger\r\nscroungers\r\nscrounges\r\nscrounging\r\nscrub\r\nscrubbed\r\nscrubber\r\nscrubbier\r\nscrubbing\r\nscrubby\r\nscrubland\r\nscrubs\r\nscrubwoman\r\nscruff\r\nscruffier\r\nscruffiness\r\nscruffy\r\nscrum\r\nscrumptious\r\nscrumptiously\r\nscrumpy\r\nscrunch\r\nscruple\r\nscrupled\r\nscruples\r\nscrupling\r\nscrupulosity\r\nscrupulous\r\nscrupulously\r\nscrupulousness\r\nscrutinise\r\nscrutinised\r\nscrutiniser\r\nscrutinisers\r\nscrutinises\r\nscrutinising\r\nscrutiny\r\nscuba\r\nscud\r\nscudded\r\nscudding\r\nscuds\r\nscuff\r\nscuffed\r\nscuffing\r\nscuffle\r\nscuffled\r\nscuffles\r\nscuffling\r\nscuffs\r\nscull\r\nsculled\r\nsculleries\r\nscullery\r\nsculling\r\nscullion\r\nscullions\r\nsculls\r\nsculpt\r\nsculpted\r\nsculpting\r\nsculptor\r\nsculptor's\r\nsculptors\r\nsculptress\r\nsculpts\r\nsculptural\r\nsculpturally\r\nsculpture\r\nsculptured\r\nsculptures\r\nsculpturing\r\nscum\r\nscum's\r\nscummy\r\nscup\r\nscupper\r\nscuppernong\r\nscuppers\r\nscups\r\nscurf\r\nscurfy\r\nscurried\r\nscurrile\r\nscurrility\r\nscurrilous\r\nscurrilously\r\nscurry\r\nscurrying\r\nscurvy\r\nscuttle\r\nscuttlebutt\r\nscuttled\r\nscuttles\r\nscuttling\r\nscythe\r\nscythe's\r\nscythes\r\nscything\r\nsea\r\nseabed\r\nseabed's\r\nseabird\r\nseaboard\r\nseacoast\r\nseacoast's\r\nseacoasts\r\nseadog\r\nseafarer\r\nseafarers\r\nseafaring\r\nseafloor\r\nseafood\r\nseafowl\r\nseafront\r\nseagoing\r\nseagull\r\nseagulls\r\nseahorse\r\nseakale\r\nseal\r\nsealant\r\nsealants\r\nsealed\r\nsealer\r\nsealing\r\nseals\r\nsealskin\r\nseam\r\nseaman\r\nseamanlike\r\nseamanship\r\nseamark\r\nseamed\r\nseamen\r\nseamier\r\nseaming\r\nseamless\r\nseamlessly\r\nseamount\r\nseams\r\nseamstress\r\nseamstresses\r\nseamy\r\nseaplane\r\nseaport\r\nseaport's\r\nseaports\r\nseaquake\r\nsear\r\nsearch\r\nsearchable\r\nsearched\r\nsearcher\r\nsearcher's\r\nsearchers\r\nsearches\r\nsearching\r\nsearchingly\r\nsearchlight\r\nsearchlights\r\nseared\r\nsearing\r\nsears\r\nseas\r\nseascape\r\nseashell\r\nseashell's\r\nseashells\r\nseashore\r\nseashore's\r\nseashores\r\nseasick\r\nseasickness\r\nseaside\r\nseason\r\nseason's\r\nseasonable\r\nseasonably\r\nseasonal\r\nseasonality\r\nseasonally\r\nseasoned\r\nseasoning\r\nseasonings\r\nseasons\r\nseastrand\r\nseat\r\nseated\r\nseating\r\nseatmate\r\nseatmate's\r\nseatmates\r\nseats\r\nseawall\r\nseaward\r\nseawards\r\nseaware\r\nseawater\r\nseawater's\r\nseaway\r\nseaweed\r\nseaweeds\r\nseaworthiness\r\nseaworthy\r\nsebaceous\r\nseborrhoea\r\nsebum\r\nsec\r\nsecant\r\nsecants\r\nsecateurs\r\nsecede\r\nseceded\r\nsecedes\r\nseceding\r\nsecession\r\nsecessionism\r\nsecessionist\r\nseclude\r\nsecluded\r\nsecludes\r\nsecluding\r\nseclusion\r\nsecond\r\nsecondarily\r\nsecondary\r\nseconded\r\nseconding\r\nsecondly\r\nseconds\r\nsecrecy\r\nsecret\r\nsecretarial\r\nsecretariat\r\nsecretaries\r\nsecretary\r\nsecretary's\r\nsecrete\r\nsecreted\r\nsecretes\r\nsecreting\r\nsecretion\r\nsecretions\r\nsecretive\r\nsecretively\r\nsecretiveness\r\nsecretly\r\nsecretor\r\nsecrets\r\nsect\r\nsect's\r\nsectarian\r\nsectarianism\r\nsectary\r\nsection\r\nsectional\r\nsectionalise\r\nsectionalised\r\nsectionalises\r\nsectionalising\r\nsectionalism\r\nsectioned\r\nsectioning\r\nsections\r\nsector\r\nsector's\r\nsectored\r\nsectoring\r\nsectors\r\nsects\r\nsecular\r\nsecularisation\r\nsecularisation's\r\nsecularisations\r\nsecularise\r\nsecularised\r\nseculariser\r\nsecularisers\r\nsecularises\r\nsecularising\r\nsecularism\r\nsecularist\r\nsecularists\r\nsecularity\r\nsecularly\r\nsecure\r\nsecured\r\nsecurely\r\nsecurer\r\nsecures\r\nsecuring\r\nsecurities\r\nsecurity\r\nsedan\r\nsedans\r\nsedate\r\nsedated\r\nsedately\r\nsedateness\r\nsedates\r\nsedating\r\nsedation\r\nsedative\r\nsedentary\r\nseder\r\nsedge\r\nsediment\r\nsediment's\r\nsedimentary\r\nsedimentation\r\nsediments\r\nsedition\r\nseditious\r\nseditiousness\r\nseduce\r\nseduced\r\nseducer\r\nseducers\r\nseduces\r\nseducing\r\nseduction\r\nseductions\r\nseductive\r\nseductively\r\nseductiveness\r\nseductress\r\nsedulity\r\nsedulous\r\nsedulously\r\nsedulousness\r\nsedum\r\nsee\r\nseed\r\nseedbed\r\nseedbeds\r\nseedcake\r\nseedcakes\r\nseeded\r\nseeders\r\nseedier\r\nseedily\r\nseediness\r\nseeding\r\nseedless\r\nseedling\r\nseedling's\r\nseedlings\r\nseedpod\r\nseeds\r\nseedtime\r\nseedy\r\nseeing\r\nseek\r\nseeker\r\nseekers\r\nseeking\r\nseeks\r\nseem\r\nseemed\r\nseeming\r\nseemingly\r\nseemlier\r\nseemliness\r\nseemly\r\nseems\r\nseen\r\nseep\r\nseepage\r\nseeped\r\nseeping\r\nseeps\r\nseer\r\nseers\r\nseersucker\r\nsees\r\nseesaw\r\nseesawed\r\nseesawing\r\nseesaws\r\nseethe\r\nseethed\r\nseethes\r\nseething\r\nsegment\r\nsegmental\r\nsegmentation\r\nsegmentation's\r\nsegmentations\r\nsegmented\r\nsegmenting\r\nsegments\r\nsegregate\r\nsegregated\r\nsegregates\r\nsegregating\r\nsegregation\r\nsegregationist\r\nsegue\r\nsegue's\r\nsegued\r\nsegueing\r\nsegues\r\nseigneur\r\nseignior\r\nseine\r\nseining\r\nseism\r\nseismic\r\nseismogram\r\nseismogram's\r\nseismograms\r\nseismograph\r\nseismographer\r\nseismographic\r\nseismographs\r\nseismography\r\nseismological\r\nseismologist\r\nseismology\r\nseismometer\r\nseize\r\nseized\r\nseizers\r\nseizes\r\nseizing\r\nseizure\r\nseizure's\r\nseizures\r\nseldom\r\nselect\r\nselectable\r\nselected\r\nselecting\r\nselection\r\nselection's\r\nselections\r\nselective\r\nselectively\r\nselectiveness\r\nselectivity\r\nselectman\r\nselectmen\r\nselector\r\nselector's\r\nselectors\r\nselects\r\nselenium\r\nself\r\nselfdom\r\nselfhood\r\nselfish\r\nselfishly\r\nselfishness\r\nselfless\r\nselflessly\r\nselflessness\r\nselfsame\r\nselfsameness\r\nsell\r\nsellable\r\nseller\r\nsellers\r\nselling\r\nsells\r\nseltzer\r\nselvage\r\nselvedge\r\nselves\r\nsemantic\r\nsemantically\r\nsemanticist\r\nsemanticist's\r\nsemanticists\r\nsemantics\r\nsemaphore\r\nsemaphore's\r\nsemaphores\r\nsemblance\r\nsemen\r\nsemester\r\nsemester's\r\nsemesters\r\nsemi\r\nsemiabstract\r\nsemiarid\r\nsemiautomatic\r\nsemiautonomous\r\nsemibreve\r\nsemicircle\r\nsemicircles\r\nsemicircular\r\nsemicolon\r\nsemicolon's\r\nsemicolons\r\nsemiconductor\r\nsemiconductor's\r\nsemiconductors\r\nsemiconscious\r\nsemiconsciously\r\nsemidarkness\r\nsemidetached\r\nsemidiurnal\r\nsemidry\r\nsemidrying\r\nsemiformal\r\nsemiliterate\r\nsemimetal\r\nseminal\r\nseminally\r\nseminar\r\nseminar's\r\nseminarian\r\nseminarians\r\nseminaries\r\nseminars\r\nseminary\r\nseminary's\r\nsemiofficially\r\nsemiotic\r\nsemiotics\r\nsemiprecious\r\nsemiprivate\r\nsemipro\r\nsemiretirement\r\nsemiskilled\r\nsemisolid\r\nsemisweet\r\nsemitone\r\nsemitransparent\r\nsemitropical\r\nsemivowel\r\nsemolina\r\nsenate\r\nsenate's\r\nsenates\r\nsenator\r\nsenator's\r\nsenatorial\r\nsenators\r\nsend\r\nsender\r\nsenders\r\nsending\r\nsends\r\nsenescence\r\nsenescent\r\nseneschal\r\nsenile\r\nsenility\r\nsenior\r\nsenior's\r\nseniority\r\nseniors\r\nsenor\r\nsenorita\r\nsensate\r\nsensation\r\nsensation's\r\nsensational\r\nsensationalise\r\nsensationalised\r\nsensationalises\r\nsensationalising\r\nsensationalism\r\nsensationalist\r\nsensationalistic\r\nsensationally\r\nsensations\r\nsense\r\nsensed\r\nsenseless\r\nsenselessly\r\nsenselessness\r\nsenses\r\nsensibilities\r\nsensibility\r\nsensible\r\nsensibleness\r\nsensibly\r\nsensing\r\nsensitisation\r\nsensitisation's\r\nsensitisations\r\nsensitise\r\nsensitised\r\nsensitises\r\nsensitising\r\nsensitive\r\nsensitively\r\nsensitiveness\r\nsensitivities\r\nsensitivity\r\nsensor\r\nsensor's\r\nsensorial\r\nsensors\r\nsensory\r\nsensual\r\nsensualist\r\nsensualistic\r\nsensuality\r\nsensually\r\nsensuous\r\nsensuously\r\nsensuousness\r\nsent\r\nsentence\r\nsentenced\r\nsentences\r\nsentencing\r\nsentential\r\nsententious\r\nsententiously\r\nsententiousness\r\nsentience\r\nsentient\r\nsentiment\r\nsentiment's\r\nsentimental\r\nsentimentalise\r\nsentimentalised\r\nsentimentalises\r\nsentimentalising\r\nsentimentalism\r\nsentimentalist\r\nsentimentalists\r\nsentimentality\r\nsentimentally\r\nsentiments\r\nsentinel\r\nsentinel's\r\nsentinels\r\nsentries\r\nsentry\r\nsentry's\r\nsepal\r\nseparate\r\nseparated\r\nseparately\r\nseparateness\r\nseparates\r\nseparating\r\nseparation\r\nseparations\r\nseparatism\r\nseparatist\r\nseparator\r\nseparator's\r\nseparators\r\nsepia\r\nsepses\r\nsepsis\r\nsepta\r\nseptennial\r\nseptet\r\nseptic\r\nsepticaemia\r\nseptillion\r\nseptuagenarian\r\nseptum\r\nseptuplet\r\nsepulchral\r\nsepulchre\r\nsepulchre's\r\nsepulchred\r\nsepulchres\r\nsequel\r\nsequel's\r\nsequels\r\nsequence\r\nsequenced\r\nsequencer\r\nsequencers\r\nsequences\r\nsequencing\r\nsequencings\r\nsequent\r\nsequential\r\nsequentially\r\nsequester\r\nsequestered\r\nsequestering\r\nsequestrate\r\nsequestration\r\nsequin\r\nsequined\r\nsequinned\r\nsequins\r\nsequitur\r\nsequoia\r\nser\r\nsera\r\nseraglio\r\nserape\r\nseraph\r\nseraphic\r\nseraphim\r\nseraphs\r\nsere\r\nserenade\r\nserenaded\r\nserenades\r\nserendipitous\r\nserendipitously\r\nserendipity\r\nserene\r\nserenely\r\nsereneness\r\nserenity\r\nserf\r\nserf's\r\nserfdom\r\nserfs\r\nserge\r\nsergeant\r\nsergeant's\r\nsergeants\r\nserial\r\nserialisation\r\nserialisation's\r\nserialisations\r\nserialise\r\nserialised\r\nserialises\r\nserialising\r\nserially\r\nserials\r\nseriatim\r\nsericulture\r\nseries\r\nserif\r\nserigraph\r\nserigraphy\r\nserine\r\nseriocomic\r\nseriocomically\r\nserious\r\nseriously\r\nseriousness\r\nsermon\r\nsermon's\r\nsermonic\r\nsermonise\r\nsermonised\r\nsermoniser\r\nsermonisers\r\nsermonises\r\nsermonising\r\nsermons\r\nserologic\r\nserological\r\nserologically\r\nserologist\r\nserology\r\nserous\r\nserpent\r\nserpent's\r\nserpentine\r\nserpents\r\nserrate\r\nserrated\r\nserration\r\nserried\r\nserum\r\nserum's\r\nserums\r\nservant\r\nservant's\r\nservants\r\nserve\r\nserved\r\nserver\r\nserver's\r\nservers\r\nserves\r\nservice\r\nserviceability\r\nserviceable\r\nserviceableness\r\nserviceably\r\nserviceberry\r\nserviced\r\nserviceman\r\nservicemen\r\nservices\r\nservicewoman\r\nservicewomen\r\nservicing\r\nserviette\r\nserviettes\r\nservile\r\nservility\r\nserving\r\nservings\r\nservitor\r\nservitors\r\nservitude\r\nservo\r\nservomechanism\r\nservomechanisms\r\nservomotor\r\nservos\r\nsesame\r\nsesquicentennial\r\nsesquipedalian\r\nsessile\r\nsession\r\nsession's\r\nsessions\r\nsestet\r\nsestina\r\nset\r\nset's\r\nseta\r\nsetaceous\r\nsetae\r\nsetback\r\nsetbacks\r\nsetline\r\nsetoff\r\nsets\r\nsetscrew\r\nsetscrews\r\nsettable\r\nsettee\r\nsettees\r\nsetter\r\nsetter's\r\nsetters\r\nsetting\r\nsettings\r\nsettle\r\nsettled\r\nsettlement\r\nsettlement's\r\nsettlements\r\nsettler\r\nsettlers\r\nsettles\r\nsettling\r\nsettlings\r\nseven\r\nsevenfold\r\nsevens\r\nseventeen\r\nseventeenth\r\nseventh\r\nsevenths\r\nseventies\r\nseventieth\r\nseventy\r\nsever\r\nseveral\r\nseverally\r\nseveralty\r\nseverance\r\nsevere\r\nsevered\r\nseverely\r\nseverer\r\nseverest\r\nsevering\r\nseverities\r\nseverity\r\nseverity's\r\nsevers\r\nsew\r\nsewage\r\nsewed\r\nsewer\r\nsewerage\r\nsewers\r\nsewing\r\nsewn\r\nsews\r\nsex\r\nsexagenarian\r\nsexed\r\nsexes\r\nsexier\r\nsexily\r\nsexiness\r\nsexism\r\nsexism's\r\nsexist\r\nsexist's\r\nsexists\r\nsexless\r\nsexology\r\nsextant\r\nsextet\r\nsextillion\r\nsexton\r\nsextuple\r\nsextupled\r\nsextuplet\r\nsextupling\r\nsexual\r\nsexualise\r\nsexualised\r\nsexualises\r\nsexuality\r\nsexually\r\nsexy\r\nshabbier\r\nshabbily\r\nshabbiness\r\nshabby\r\nshack\r\nshacked\r\nshackle\r\nshackled\r\nshackler\r\nshackles\r\nshackling\r\nshacks\r\nshad\r\nshadberry\r\nshadblow\r\nshadbush\r\nshaddock\r\nshade\r\nshaded\r\nshades\r\nshadier\r\nshadiest\r\nshadily\r\nshadiness\r\nshading\r\nshadings\r\nshadoof\r\nshadow\r\nshadowbox\r\nshadowed\r\nshadowgraph\r\nshadowiness\r\nshadowing\r\nshadowlike\r\nshadows\r\nshadowy\r\nshaduf\r\nshady\r\nshaft\r\nshaft's\r\nshafted\r\nshafting\r\nshafts\r\nshag\r\nshagbark\r\nshaggier\r\nshaggily\r\nshagginess\r\nshagging\r\nshaggy\r\nshaggymane\r\nshags\r\nshah\r\nshake\r\nshakeable\r\nshakedown\r\nshaken\r\nshakeout\r\nshaker\r\nshakers\r\nshakes\r\nshakier\r\nshakily\r\nshakiness\r\nshaking\r\nshako\r\nshakoes\r\nshaky\r\nshale\r\nshall\r\nshallot\r\nshallow\r\nshallower\r\nshallowly\r\nshallowness\r\nshallows\r\nshalom\r\nsham\r\nsham's\r\nshaman\r\nshamanism\r\nshamble\r\nshambled\r\nshambles\r\nshambling\r\nshame\r\nshamed\r\nshamefaced\r\nshamefacedly\r\nshamefacedness\r\nshameful\r\nshamefully\r\nshamefulness\r\nshameless\r\nshamelessly\r\nshamelessness\r\nshames\r\nshaming\r\nshamming\r\nshampoo\r\nshampoos\r\nshamrock\r\nshams\r\nshamus\r\nshan't\r\nshanghaied\r\nshank\r\nshankpiece\r\nshanties\r\nshanty\r\nshanty's\r\nshantytown\r\nshape\r\nshaped\r\nshapeless\r\nshapelessly\r\nshapelessness\r\nshapelier\r\nshapeliness\r\nshapely\r\nshaper\r\nshapers\r\nshapes\r\nshaping\r\nsharable\r\nshard\r\nshards\r\nshare\r\nshareable\r\nsharecrop\r\nsharecropper\r\nsharecropper's\r\nsharecroppers\r\nsharecropping\r\nshared\r\nshareholder\r\nshareholder's\r\nshareholders\r\nsharer\r\nsharers\r\nshares\r\nsharing\r\nshark\r\nshark's\r\nsharks\r\nsharkskin\r\nsharp\r\nsharpen\r\nsharpened\r\nsharpener\r\nsharpening\r\nsharpens\r\nsharper\r\nsharpest\r\nsharpie\r\nsharpies\r\nsharply\r\nsharpness\r\nsharps\r\nsharpshooter\r\nsharpshooters\r\nshatter\r\nshattered\r\nshattering\r\nshatteringly\r\nshatterproof\r\nshatters\r\nshave\r\nshaved\r\nshaven\r\nshaver\r\nshaves\r\nshaving\r\nshavings\r\nshawl\r\nshawl's\r\nshawls\r\nshawm\r\nshay\r\nshays\r\nshe\r\nshe'd\r\nshe'll\r\nshe's\r\nsheaf\r\nshear\r\nsheared\r\nshearing\r\nshearlegs\r\nshears\r\nshearwater\r\nsheath\r\nsheathbill\r\nsheathe\r\nsheathing\r\nsheaths\r\nsheave\r\nsheaves\r\nsheaving\r\nshebang\r\nshed\r\nshedder\r\nshedding\r\nsheds\r\nsheen\r\nsheep\r\nsheepcote\r\nsheepdog\r\nsheepfold\r\nsheepherder\r\nsheepish\r\nsheepishly\r\nsheepishness\r\nsheepshank\r\nsheepshearer\r\nsheepskin\r\nsheer\r\nsheered\r\nsheerlegs\r\nsheerness\r\nsheet\r\nsheeted\r\nsheeting\r\nsheets\r\nsheik\r\nsheikdom\r\nsheikh\r\nsheikhdom\r\nshekel\r\nshelf\r\nshell\r\nshell's\r\nshellac\r\nshellacked\r\nshellacking\r\nshellback\r\nshellback's\r\nshellbacks\r\nshellbark\r\nshelled\r\nshellfire\r\nshellfish\r\nshelling\r\nshellproof\r\nshells\r\nshelly\r\nshelter\r\nshelterbelt\r\nsheltered\r\nsheltering\r\nshelters\r\nsheltie\r\nshelties\r\nshelve\r\nshelved\r\nshelves\r\nshelving\r\nshenanigan\r\nshenanigans\r\nshepherd\r\nshepherd's\r\nshepherded\r\nshepherdess\r\nshepherding\r\nshepherds\r\nsherbet\r\nsheriff\r\nsheriff's\r\nsheriffs\r\nsherries\r\nsherry\r\nshibboleth\r\nshibboleths\r\nshied\r\nshield\r\nshielded\r\nshielding\r\nshields\r\nshier\r\nshies\r\nshiest\r\nshift\r\nshifted\r\nshifter\r\nshifters\r\nshiftier\r\nshiftiest\r\nshiftily\r\nshiftiness\r\nshifting\r\nshiftless\r\nshiftlessness\r\nshifts\r\nshifty\r\nshih\r\nshill\r\nshillelagh\r\nshilling\r\nshillings\r\nshills\r\nshim\r\nshimmer\r\nshimmered\r\nshimmering\r\nshimmied\r\nshimmies\r\nshimming\r\nshimmy\r\nshimmying\r\nshims\r\nshin\r\nshinbone\r\nshindig\r\nshindig's\r\nshindigs\r\nshine\r\nshined\r\nshiner\r\nshiners\r\nshines\r\nshingle\r\nshingle's\r\nshingled\r\nshingles\r\nshingling\r\nshinier\r\nshininess\r\nshining\r\nshiningly\r\nshinleaf\r\nshinnied\r\nshinning\r\nshinny\r\nshinnying\r\nshinplaster\r\nshiny\r\nship\r\nship's\r\nshipboard\r\nshipboards\r\nshipbuilder\r\nshipbuilding\r\nshiplap\r\nshipload\r\nshipman\r\nshipmaster\r\nshipmate\r\nshipmates\r\nshipmen\r\nshipment\r\nshipment's\r\nshipments\r\nshippable\r\nshipped\r\nshipper\r\nshipper's\r\nshippers\r\nshipping\r\nships\r\nshipshape\r\nshipside\r\nshipway\r\nshipworm\r\nshipwreck\r\nshipwrecked\r\nshipwrecks\r\nshipwright\r\nshipyard\r\nshipyards\r\nshire\r\nshires\r\nshirk\r\nshirking\r\nshirks\r\nshirr\r\nshirring\r\nshirt\r\nshirting\r\nshirts\r\nshirtsleeve\r\nshirttail\r\nshirtwaist\r\nshish\r\nshit\r\nshiver\r\nshivered\r\nshivering\r\nshivers\r\nshivery\r\nshoal\r\nshoal's\r\nshoals\r\nshoat\r\nshock\r\nshocked\r\nshocker\r\nshockers\r\nshocking\r\nshockingly\r\nshockproof\r\nshocks\r\nshod\r\nshoddier\r\nshoddily\r\nshoddiness\r\nshoddy\r\nshoe\r\nshoebill\r\nshoeblack\r\nshoed\r\nshoehorn\r\nshoeing\r\nshoelace\r\nshoelaces\r\nshoemaker\r\nshoemakers\r\nshoepack\r\nshoes\r\nshoeshine\r\nshoestring\r\nshoestrings\r\nshoetree\r\nshogun\r\nshone\r\nshoo\r\nshoofly\r\nshooing\r\nshook\r\nshoot\r\nshooter\r\nshooters\r\nshooting\r\nshootings\r\nshootout\r\nshootout's\r\nshootouts\r\nshoots\r\nshop\r\nshop's\r\nshopkeeper\r\nshopkeeper's\r\nshopkeepers\r\nshoplift\r\nshoplifter\r\nshoplifters\r\nshoplifting\r\nshopped\r\nshopper\r\nshopper's\r\nshoppers\r\nshopping\r\nshops\r\nshoptalk\r\nshoran\r\nshore\r\nshore's\r\nshorebird\r\nshorebird's\r\nshorebirds\r\nshored\r\nshorefront\r\nshoreline\r\nshorelines\r\nshores\r\nshoreward\r\nshoring\r\nshorn\r\nshort\r\nshortage\r\nshortage's\r\nshortages\r\nshortbread\r\nshortcake\r\nshortcoming\r\nshortcoming's\r\nshortcomings\r\nshortcut\r\nshortcut's\r\nshortcuts\r\nshorted\r\nshorten\r\nshortened\r\nshortening\r\nshortens\r\nshorter\r\nshortest\r\nshortfall\r\nshortfalls\r\nshorthand\r\nshorthanded\r\nshorthorn\r\nshorting\r\nshortlist\r\nshortlists\r\nshortly\r\nshortness\r\nshorts\r\nshortstop\r\nshot\r\nshot's\r\nshotgun\r\nshotgun's\r\nshotguns\r\nshots\r\nshould\r\nshoulder\r\nshouldered\r\nshouldering\r\nshoulders\r\nshouldn't\r\nshout\r\nshouted\r\nshouter\r\nshouters\r\nshouting\r\nshouts\r\nshove\r\nshoved\r\nshovel\r\nshovelhead\r\nshovelled\r\nshovelling\r\nshovelnose\r\nshovels\r\nshoves\r\nshoving\r\nshow\r\nshowboat\r\nshowbread\r\nshowcase\r\nshowcase's\r\nshowcased\r\nshowcases\r\nshowcasing\r\nshowdown\r\nshowed\r\nshower\r\nshowered\r\nshowering\r\nshowers\r\nshowery\r\nshowgirl\r\nshowier\r\nshowily\r\nshowiness\r\nshowing\r\nshowings\r\nshowman\r\nshowmanship\r\nshowmen\r\nshown\r\nshowpiece\r\nshowplace\r\nshowroom\r\nshows\r\nshowstopper\r\nshowy\r\nshrank\r\nshrapnel\r\nshred\r\nshred's\r\nshredded\r\nshredder\r\nshredder's\r\nshredders\r\nshredding\r\nshreds\r\nshrew\r\nshrew's\r\nshrewd\r\nshrewdest\r\nshrewdly\r\nshrewdness\r\nshrewish\r\nshrewmouse\r\nshrews\r\nshriek\r\nshrieked\r\nshrieking\r\nshrieks\r\nshrift\r\nshrike\r\nshrill\r\nshrilled\r\nshrilling\r\nshrillness\r\nshrilly\r\nshrimp\r\nshrine\r\nshrine's\r\nshrines\r\nshrink\r\nshrinkable\r\nshrinkage\r\nshrinking\r\nshrinks\r\nshrive\r\nshrived\r\nshrivel\r\nshrivelled\r\nshrivelling\r\nshrivels\r\nshriven\r\nshroud\r\nshrouded\r\nshrouding\r\nshrouds\r\nshrove\r\nshrub\r\nshrub's\r\nshrubbery\r\nshrubbier\r\nshrubby\r\nshrubs\r\nshrug\r\nshrugged\r\nshrugging\r\nshrugs\r\nshrunk\r\nshrunken\r\nshtick\r\nshuck\r\nshucks\r\nshudder\r\nshuddered\r\nshuddering\r\nshudders\r\nshuddery\r\nshuffle\r\nshuffleboard\r\nshuffled\r\nshuffler\r\nshuffles\r\nshuffling\r\nshun\r\nshunned\r\nshunning\r\nshunpike\r\nshuns\r\nshunt\r\nshunted\r\nshunting\r\nshunts\r\nshush\r\nshut\r\nshutdown\r\nshutdown's\r\nshutdowns\r\nshuteye\r\nshutoff\r\nshutout\r\nshuts\r\nshutter\r\nshutterbug\r\nshuttered\r\nshuttering\r\nshutters\r\nshutting\r\nshuttle\r\nshuttlecock\r\nshuttlecocks\r\nshuttled\r\nshuttles\r\nshuttling\r\nshy\r\nshyer\r\nshyest\r\nshying\r\nshyly\r\nshyness\r\nshyster\r\nsib\r\nsibilant\r\nsibilantly\r\nsibilate\r\nsibling\r\nsibling's\r\nsiblings\r\nsibyl\r\nsibylline\r\nsibyls\r\nsic\r\nsick\r\nsickbay\r\nsickbed\r\nsickbed's\r\nsickbeds\r\nsicken\r\nsickened\r\nsickening\r\nsickeningly\r\nsicker\r\nsickest\r\nsickish\r\nsickle\r\nsicklebill\r\nsickliness\r\nsickly\r\nsickness\r\nsicknesses\r\nsickroom\r\nside\r\nsidearm\r\nsideband\r\nsidebands\r\nsideboard\r\nsideboard's\r\nsideboards\r\nsideburns\r\nsidecar\r\nsidecars\r\nsided\r\nsidedness\r\nsidekick\r\nsidekicks\r\nsidelight\r\nsidelight's\r\nsidelights\r\nsideline\r\nsideliner\r\nsidelines\r\nsideling\r\nsidelong\r\nsideman\r\nsidemen\r\nsidepiece\r\nsidereal\r\nsiderite\r\nsides\r\nsideshow\r\nsideshows\r\nsideslip\r\nsideslips\r\nsidespin\r\nsidestep\r\nsidestepped\r\nsidestepper\r\nsidestepping\r\nsidesteps\r\nsidestroke\r\nsideswipe\r\nsidetrack\r\nsidetracked\r\nsidetracking\r\nsidetracks\r\nsidewalk\r\nsidewalk's\r\nsidewalks\r\nsidewall\r\nsideward\r\nsideway\r\nsideways\r\nsidewinder\r\nsidewise\r\nsiding\r\nsidings\r\nsidle\r\nsidled\r\nsidles\r\nsidling\r\nsiege\r\nsiege's\r\nsieges\r\nsienna\r\nsierra\r\nsierras\r\nsiesta\r\nsieve\r\nsieve's\r\nsieves\r\nsieving\r\nsift\r\nsifted\r\nsifter\r\nsifting\r\nsiftings\r\nsifts\r\nsigh\r\nsighed\r\nsighing\r\nsighs\r\nsight\r\nsighted\r\nsighting\r\nsightings\r\nsightless\r\nsightlessness\r\nsights\r\nsightscreen\r\nsightsee\r\nsightseeing\r\nsightseer\r\nsightseers\r\nsigma\r\nsigmoid\r\nsign\r\nsignal\r\nsignalisation\r\nsignalise\r\nsignalised\r\nsignalises\r\nsignalising\r\nsignalled\r\nsignaller\r\nsignallers\r\nsignalling\r\nsignally\r\nsignalman\r\nsignalmen\r\nsignals\r\nsignatory\r\nsignature\r\nsignature's\r\nsignatures\r\nsignboard\r\nsigned\r\nsigner\r\nsigners\r\nsignet\r\nsignificance\r\nsignificances\r\nsignificant\r\nsignificantly\r\nsignification\r\nsignified\r\nsignifier\r\nsignifies\r\nsignify\r\nsignifying\r\nsigning\r\nsignpost\r\nsignposted\r\nsignposting\r\nsignposts\r\nsigns\r\nsilage\r\nsilence\r\nsilenced\r\nsilencer\r\nsilencers\r\nsilences\r\nsilencing\r\nsilent\r\nsilently\r\nsilhouette\r\nsilhouetted\r\nsilhouettes\r\nsilica\r\nsilicate\r\nsilicates\r\nsiliceous\r\nsilicon\r\nsilicone\r\nsilicosis\r\nsilk\r\nsilken\r\nsilkier\r\nsilkiest\r\nsilkily\r\nsilkiness\r\nsilks\r\nsilkweed\r\nsilkworm\r\nsilkworms\r\nsilky\r\nsill\r\nsill's\r\nsillier\r\nsilliest\r\nsilliness\r\nsills\r\nsilly\r\nsilo\r\nsilos\r\nsilt\r\nsilted\r\nsilting\r\nsilts\r\nsiltstone\r\nsiltstones\r\nsilver\r\nsilvered\r\nsilverfish\r\nsilvering\r\nsilverpoint\r\nsilvers\r\nsilverside\r\nsilversides\r\nsilversmith\r\nsilversmiths\r\nsilverware\r\nsilverweed\r\nsilvery\r\nsimian\r\nsimilar\r\nsimilarities\r\nsimilarity\r\nsimilarly\r\nsimile\r\nsimilitude\r\nsimmer\r\nsimmered\r\nsimmering\r\nsimmers\r\nsimonise\r\nsimony\r\nsimoom\r\nsimpatico\r\nsimper\r\nsimpered\r\nsimpering\r\nsimpers\r\nsimple\r\nsimpleminded\r\nsimplemindedly\r\nsimpler\r\nsimples\r\nsimplest\r\nsimpleton\r\nsimplex\r\nsimplexes\r\nsimplicities\r\nsimplicity\r\nsimplicity's\r\nsimplification\r\nsimplifications\r\nsimplified\r\nsimplifier\r\nsimplifiers\r\nsimplifies\r\nsimplify\r\nsimplifying\r\nsimplistic\r\nsimplistically\r\nsimply\r\nsimulacrum\r\nsimulate\r\nsimulated\r\nsimulates\r\nsimulating\r\nsimulation\r\nsimulations\r\nsimulative\r\nsimulator\r\nsimulator's\r\nsimulators\r\nsimulcast\r\nsimultaneity\r\nsimultaneous\r\nsimultaneously\r\nsimultaneousness\r\nsin\r\nsin's\r\nsince\r\nsincere\r\nsincerely\r\nsincerest\r\nsincerity\r\nsine\r\nsinecure\r\nsinew\r\nsinew's\r\nsinews\r\nsinewy\r\nsinful\r\nsinfully\r\nsinfulness\r\nsing\r\nsinge\r\nsinged\r\nsingeing\r\nsinger\r\nsinger's\r\nsingers\r\nsinging\r\nsingle\r\nsingled\r\nsingleness\r\nsingles\r\nsinglestick\r\nsingleton\r\nsingleton's\r\nsingletons\r\nsingletree\r\nsingling\r\nsingly\r\nsings\r\nsingsong\r\nsingspiel\r\nsingular\r\nsingularise\r\nsingularises\r\nsingularities\r\nsingularity\r\nsingularity's\r\nsingularly\r\nsinister\r\nsinisterly\r\nsink\r\nsinkable\r\nsinker\r\nsinkers\r\nsinkhole\r\nsinkholes\r\nsinking\r\nsinks\r\nsinless\r\nsinned\r\nsinner\r\nsinner's\r\nsinners\r\nsinning\r\nsinologist\r\nsinology\r\nsins\r\nsinter\r\nsintered\r\nsinuate\r\nsinuosity\r\nsinuous\r\nsinuously\r\nsinuousness\r\nsinus\r\nsinuses\r\nsinusitis\r\nsinusoid\r\nsinusoidal\r\nsinusoids\r\nsip\r\nsipped\r\nsipper\r\nsippers\r\nsipping\r\nsips\r\nsir\r\nsire\r\nsired\r\nsiren\r\nsirens\r\nsires\r\nsiring\r\nsirloin\r\nsirocco\r\nsirs\r\nsis\r\nsisal\r\nsissies\r\nsissified\r\nsissy\r\nsister\r\nsister's\r\nsisterhood\r\nsisterly\r\nsisters\r\nsit\r\nsitar\r\nsitcom\r\nsite\r\nsite's\r\nsited\r\nsites\r\nsits\r\nsitter\r\nsitter's\r\nsitters\r\nsitting\r\nsittings\r\nsituate\r\nsituated\r\nsituates\r\nsituating\r\nsituation\r\nsituational\r\nsituations\r\nsix\r\nsixes\r\nsixpence\r\nsixpences\r\nsixpenny\r\nsixteen\r\nsixteenth\r\nsixth\r\nsixthly\r\nsixths\r\nsixties\r\nsixtieth\r\nsixty\r\nsizable\r\nsizably\r\nsize\r\nsizeable\r\nsized\r\nsizes\r\nsizing\r\nsizzle\r\nsizzled\r\nsizzling\r\nskaldic\r\nskate\r\nskateboard\r\nskateboard's\r\nskateboarder\r\nskateboarding\r\nskateboards\r\nskated\r\nskater\r\nskater's\r\nskaters\r\nskates\r\nskating\r\nskeet\r\nskein\r\nskein's\r\nskeins\r\nskeletal\r\nskeletally\r\nskeleton\r\nskeleton's\r\nskeletons\r\nsketch\r\nsketchbook\r\nsketched\r\nsketcher\r\nsketches\r\nsketchier\r\nsketchily\r\nsketchiness\r\nsketching\r\nsketchpad\r\nsketchy\r\nskew\r\nskewback\r\nskewbald\r\nskewed\r\nskewer\r\nskewered\r\nskewering\r\nskewers\r\nskewing\r\nskews\r\nski\r\nskibob\r\nskid\r\nskidded\r\nskidder\r\nskidding\r\nskidlid\r\nskidoo\r\nskidpan\r\nskids\r\nskied\r\nskier\r\nskies\r\nskiff\r\nskiffle\r\nskiffs\r\nskiing\r\nskilful\r\nskilfully\r\nskill\r\nskilled\r\nskillet\r\nskills\r\nskim\r\nskim's\r\nskimmed\r\nskimmer\r\nskimmer's\r\nskimmers\r\nskimming\r\nskimobile\r\nskimp\r\nskimped\r\nskimpier\r\nskimpily\r\nskimpiness\r\nskimping\r\nskimps\r\nskimpy\r\nskims\r\nskin\r\nskin's\r\nskinflint\r\nskinflint's\r\nskinflints\r\nskinhead\r\nskink\r\nskinless\r\nskinned\r\nskinner\r\nskinner's\r\nskinners\r\nskinnier\r\nskinniness\r\nskinning\r\nskinny\r\nskins\r\nskip\r\nskipjack\r\nskipped\r\nskipper\r\nskipper's\r\nskippers\r\nskipping\r\nskips\r\nskirl\r\nskirmish\r\nskirmished\r\nskirmisher\r\nskirmishers\r\nskirmishes\r\nskirmishing\r\nskirt\r\nskirted\r\nskirting\r\nskirts\r\nskis\r\nskit\r\nskits\r\nskitter\r\nskittish\r\nskittishly\r\nskittishness\r\nskittle\r\nskive\r\nskiving\r\nskivvies\r\nskivvy\r\nskiwear\r\nskulduggery\r\nskulk\r\nskulked\r\nskulking\r\nskulks\r\nskull\r\nskull's\r\nskullcap\r\nskulls\r\nskunk\r\nskunk's\r\nskunks\r\nsky\r\nsky's\r\nskycap\r\nskydive\r\nskydiving\r\nskyhook\r\nskyjack\r\nskyjacked\r\nskyjacker\r\nskyjackers\r\nskyjacking\r\nskylark\r\nskylarking\r\nskylarks\r\nskylight\r\nskylight's\r\nskylights\r\nskyline\r\nskyrocket\r\nskysail\r\nskyscraper\r\nskyscraper's\r\nskyscrapers\r\nskyward\r\nskyway\r\nskywrite\r\nskywriter\r\nskywriting\r\nslab\r\nslabs\r\nslack\r\nslacked\r\nslacken\r\nslackened\r\nslackening\r\nslackens\r\nslacker\r\nslackest\r\nslacking\r\nslackly\r\nslackness\r\nslacks\r\nslag\r\nslain\r\nslake\r\nslaked\r\nslaking\r\nslalom\r\nslaloms\r\nslam\r\nslammed\r\nslamming\r\nslams\r\nslander\r\nslandered\r\nslanderer\r\nslandering\r\nslanderous\r\nslanderously\r\nslanders\r\nslang\r\nslanginess\r\nslanging\r\nslangy\r\nslant\r\nslanted\r\nslanting\r\nslants\r\nslantwise\r\nslap\r\nslapdash\r\nslaphappy\r\nslapjack\r\nslapped\r\nslapping\r\nslaps\r\nslapstick\r\nslash\r\nslashed\r\nslashes\r\nslashing\r\nslat\r\nslat's\r\nslate\r\nslated\r\nslates\r\nslather\r\nslathered\r\nslathering\r\nslathers\r\nslating\r\nslats\r\nslatted\r\nslattern\r\nslatternly\r\nslaughter\r\nslaughtered\r\nslaughterer\r\nslaughterhouse\r\nslaughterhouses\r\nslaughtering\r\nslaughterman\r\nslaughtermen\r\nslaughters\r\nslave\r\nslaved\r\nslaveholder\r\nslaveholders\r\nslaveholding\r\nslaver\r\nslavered\r\nslavering\r\nslavery\r\nslaves\r\nslaving\r\nslavish\r\nslavishly\r\nslavishness\r\nslaw\r\nslay\r\nslayer\r\nslayers\r\nslaying\r\nslays\r\nsleazier\r\nsleazily\r\nsleaziness\r\nsleazy\r\nsled\r\nsled's\r\nsledded\r\nsledding\r\nsledge\r\nsledge's\r\nsledgehammer\r\nsledges\r\nsledging\r\nsleds\r\nsleek\r\nsleekly\r\nsleekness\r\nsleep\r\nsleeper\r\nsleepers\r\nsleepier\r\nsleepily\r\nsleepiness\r\nsleeping\r\nsleepless\r\nsleeplessly\r\nsleeplessness\r\nsleeps\r\nsleepwalk\r\nsleepwalker\r\nsleepy\r\nsleepyhead\r\nsleet\r\nsleety\r\nsleeve\r\nsleeve's\r\nsleeved\r\nsleeveless\r\nsleeves\r\nsleigh\r\nsleighs\r\nsleight\r\nslender\r\nslenderer\r\nslenderise\r\nslenderised\r\nslenderises\r\nslenderising\r\nslenderness\r\nslept\r\nsleuth\r\nsleuthhound\r\nsleuthing\r\nslew\r\nslewed\r\nslewing\r\nslice\r\nsliced\r\nslices\r\nslicing\r\nslick\r\nslicker\r\nslickers\r\nslickly\r\nslickness\r\nslicks\r\nslid\r\nslide\r\nslider\r\nsliders\r\nslides\r\nsliding\r\nslier\r\nsliest\r\nslight\r\nslighted\r\nslighter\r\nslightest\r\nslighting\r\nslightly\r\nslightness\r\nslights\r\nslim\r\nslime\r\nslimed\r\nslimes\r\nslimier\r\nslimily\r\nsliminess\r\nsliming\r\nslimly\r\nslimmed\r\nslimmer\r\nslimmest\r\nslimming\r\nslimness\r\nslimy\r\nsling\r\nslinging\r\nslings\r\nslingshot\r\nslink\r\nslinked\r\nslinkier\r\nslinkiness\r\nslinking\r\nslinks\r\nslinky\r\nslip\r\nslip's\r\nslipcase\r\nslipcover\r\nslipknot\r\nslipover\r\nslippage\r\nslipped\r\nslipper\r\nslipper's\r\nslipperier\r\nslipperiness\r\nslippers\r\nslippery\r\nslipping\r\nslips\r\nslipshod\r\nslipslop\r\nslipstream\r\nslipway\r\nslit\r\nslit's\r\nslither\r\nslithered\r\nslithering\r\nslithers\r\nslithery\r\nslits\r\nslitter\r\nslitters\r\nslitting\r\nsliver\r\nslivered\r\nslivering\r\nslivers\r\nslivery\r\nslivovitz\r\nslob\r\nslobber\r\nslobbered\r\nslobbering\r\nslobbers\r\nslobbery\r\nsloe\r\nslog\r\nslogan\r\nslogan's\r\nsloganeer\r\nsloganeering\r\nslogans\r\nslogging\r\nsloop\r\nsloops\r\nslop\r\nslope\r\nsloped\r\nslopes\r\nsloping\r\nslopped\r\nsloppier\r\nsloppily\r\nsloppiness\r\nslopping\r\nsloppy\r\nslops\r\nslopwork\r\nslosh\r\nsloshed\r\nslot\r\nslot's\r\nsloth\r\nslothful\r\nslothfully\r\nslothfulness\r\nslots\r\nslotted\r\nslotting\r\nslouch\r\nslouched\r\nslouches\r\nslouchier\r\nslouching\r\nslouchy\r\nslough\r\nsloughed\r\nsloughing\r\nsloughs\r\nslovenliness\r\nslovenly\r\nslow\r\nslowcoach\r\nslowdown\r\nslowed\r\nslower\r\nslowest\r\nslowing\r\nslowly\r\nslowness\r\nslowpoke\r\nslows\r\nslowworm\r\nsludge\r\nsludgy\r\nslue\r\nslug\r\nslugabed\r\nslugfest\r\nsluggard\r\nslugged\r\nslugger\r\nsluggers\r\nslugging\r\nsluggish\r\nsluggishly\r\nsluggishness\r\nslugs\r\nsluice\r\nsluiced\r\nsluices\r\nsluiceway\r\nsluicing\r\nsluing\r\nslum\r\nslum's\r\nslumber\r\nslumber's\r\nslumbered\r\nslumbering\r\nslumberous\r\nslumbers\r\nslumlord\r\nslummier\r\nslumming\r\nslummy\r\nslump\r\nslumped\r\nslumps\r\nslums\r\nslung\r\nslunk\r\nslur\r\nslur's\r\nslurp\r\nslurped\r\nslurping\r\nslurps\r\nslurries\r\nslurring\r\nslurry\r\nslurs\r\nslush\r\nslushier\r\nslushiness\r\nslushy\r\nslut\r\nsluttish\r\nsly\r\nslyer\r\nslyest\r\nslyly\r\nslyness\r\nsmack\r\nsmacked\r\nsmacker\r\nsmacking\r\nsmacks\r\nsmall\r\nsmallclothes\r\nsmaller\r\nsmallest\r\nsmallholding\r\nsmallish\r\nsmallness\r\nsmallpox\r\nsmarmy\r\nsmart\r\nsmarted\r\nsmarten\r\nsmartened\r\nsmartening\r\nsmarter\r\nsmartest\r\nsmarting\r\nsmartly\r\nsmartness\r\nsmarts\r\nsmartweed\r\nsmarty\r\nsmash\r\nsmashed\r\nsmashes\r\nsmashing\r\nsmashingly\r\nsmatter\r\nsmattering\r\nsmatterings\r\nsmear\r\nsmearcase\r\nsmeared\r\nsmearing\r\nsmears\r\nsmeary\r\nsmell\r\nsmelled\r\nsmellier\r\nsmelling\r\nsmells\r\nsmelly\r\nsmelt\r\nsmelter\r\nsmelts\r\nsmidgen\r\nsmidgeon\r\nsmile\r\nsmiled\r\nsmiles\r\nsmiley\r\nsmiling\r\nsmilingly\r\nsmirch\r\nsmirk\r\nsmirked\r\nsmite\r\nsmith\r\nsmith's\r\nsmithereens\r\nsmithies\r\nsmiths\r\nsmithy\r\nsmiting\r\nsmitten\r\nsmock\r\nsmocking\r\nsmocks\r\nsmog\r\nsmoggier\r\nsmoggy\r\nsmoke\r\nsmoked\r\nsmokehouse\r\nsmokeless\r\nsmoker\r\nsmoker's\r\nsmokers\r\nsmokes\r\nsmokescreen\r\nsmokestack\r\nsmokier\r\nsmokiness\r\nsmoking\r\nsmoky\r\nsmooch\r\nsmooching\r\nsmooth\r\nsmoothbore\r\nsmoothed\r\nsmoothen\r\nsmoothened\r\nsmoothening\r\nsmoother\r\nsmoothers\r\nsmoothes\r\nsmoothest\r\nsmoothie\r\nsmoothing\r\nsmoothly\r\nsmoothness\r\nsmoothy\r\nsmorgasbord\r\nsmote\r\nsmother\r\nsmothered\r\nsmothering\r\nsmothers\r\nsmothery\r\nsmoulder\r\nsmudge\r\nsmudged\r\nsmudginess\r\nsmudging\r\nsmudgy\r\nsmug\r\nsmugger\r\nsmuggest\r\nsmuggle\r\nsmuggled\r\nsmuggler\r\nsmugglers\r\nsmuggles\r\nsmuggling\r\nsmugly\r\nsmugness\r\nsmut\r\nsmutch\r\nsmuts\r\nsmutted\r\nsmuttier\r\nsmuttiness\r\nsmutting\r\nsmutty\r\nsnack\r\nsnacks\r\nsnaffle\r\nsnaffled\r\nsnaffling\r\nsnafu\r\nsnag\r\nsnagged\r\nsnagging\r\nsnaggletooth\r\nsnags\r\nsnail\r\nsnail's\r\nsnails\r\nsnake\r\nsnakebird\r\nsnakebite\r\nsnakebite's\r\nsnakebites\r\nsnaked\r\nsnakelike\r\nsnakemouth\r\nsnakeroot\r\nsnakes\r\nsnakeskin\r\nsnakeweed\r\nsnaking\r\nsnaky\r\nsnap\r\nsnapback\r\nsnapdragon\r\nsnapdragons\r\nsnapped\r\nsnapper\r\nsnapper's\r\nsnappers\r\nsnappier\r\nsnappiest\r\nsnappily\r\nsnappiness\r\nsnapping\r\nsnappish\r\nsnappishly\r\nsnappishness\r\nsnappy\r\nsnaps\r\nsnapshot\r\nsnapshot's\r\nsnapshots\r\nsnare\r\nsnared\r\nsnares\r\nsnaring\r\nsnarl\r\nsnarled\r\nsnarling\r\nsnarls\r\nsnatch\r\nsnatched\r\nsnatcher\r\nsnatches\r\nsnatching\r\nsnazzier\r\nsnazzy\r\nsneak\r\nsneaked\r\nsneaker\r\nsneakers\r\nsneakier\r\nsneakiest\r\nsneakily\r\nsneakiness\r\nsneaking\r\nsneaks\r\nsneaky\r\nsneer\r\nsneered\r\nsneering\r\nsneers\r\nsneeze\r\nsneezed\r\nsneezes\r\nsneezeweed\r\nsneezing\r\nsneezy\r\nsnick\r\nsnicker\r\nsnickered\r\nsnickering\r\nsnide\r\nsnidely\r\nsnider\r\nsnidest\r\nsniff\r\nsniffed\r\nsniffing\r\nsniffle\r\nsniffled\r\nsniffles\r\nsniffling\r\nsniffs\r\nsniffy\r\nsnifter\r\nsnigger\r\nsniggered\r\nsniggering\r\nsnip\r\nsnipe\r\nsniped\r\nsnipefish\r\nsniper\r\nsniper's\r\nsnipers\r\nsnipes\r\nsniping\r\nsnipped\r\nsnippet\r\nsnippety\r\nsnippier\r\nsnipping\r\nsnippy\r\nsnips\r\nsnit\r\nsnitch\r\nsnitcher\r\nsnivel\r\nsnivelled\r\nsniveller\r\nsnivelling\r\nsnob\r\nsnobbery\r\nsnobbish\r\nsnobbishly\r\nsnobbishness\r\nsnobbism\r\nsnobby\r\nsnobs\r\nsnog\r\nsnood\r\nsnooker\r\nsnookers\r\nsnoop\r\nsnooped\r\nsnoopily\r\nsnooping\r\nsnoops\r\nsnoopy\r\nsnoot\r\nsnootier\r\nsnootily\r\nsnootiness\r\nsnooty\r\nsnooze\r\nsnoozes\r\nsnoozing\r\nsnore\r\nsnored\r\nsnores\r\nsnoring\r\nsnorkel\r\nsnorkelling\r\nsnort\r\nsnorted\r\nsnorting\r\nsnorts\r\nsnot\r\nsnotty\r\nsnout\r\nsnout's\r\nsnouts\r\nsnow\r\nsnowball\r\nsnowballed\r\nsnowballing\r\nsnowballs\r\nsnowberry\r\nsnowbird\r\nsnowblink\r\nsnowblower\r\nsnowbound\r\nsnowbrush\r\nsnowcap\r\nsnowcapped\r\nsnowdrift\r\nsnowdrop\r\nsnowed\r\nsnowfall\r\nsnowfield\r\nsnowflake\r\nsnowflakes\r\nsnowier\r\nsnowiest\r\nsnowiness\r\nsnowing\r\nsnowmaker\r\nsnowmaking\r\nsnowman\r\nsnowmelt\r\nsnowmen\r\nsnowmobile\r\nsnowplough\r\nsnows\r\nsnowshoe\r\nsnowshoes\r\nsnowstorm\r\nsnowsuit\r\nsnowy\r\nsnub\r\nsnubbed\r\nsnubbing\r\nsnubs\r\nsnuck\r\nsnuff\r\nsnuffbox\r\nsnuffboxes\r\nsnuffed\r\nsnuffer\r\nsnuffing\r\nsnuffle\r\nsnuffled\r\nsnuffling\r\nsnuffs\r\nsnug\r\nsnugger\r\nsnuggery\r\nsnuggest\r\nsnuggle\r\nsnuggled\r\nsnuggles\r\nsnuggling\r\nsnugly\r\nsnugness\r\nso\r\nsoak\r\nsoakage\r\nsoakaway\r\nsoaked\r\nsoaker\r\nsoaking\r\nsoaks\r\nsoap\r\nsoapbark\r\nsoapberry\r\nsoapbox\r\nsoapboxes\r\nsoaped\r\nsoapier\r\nsoapiness\r\nsoaping\r\nsoaps\r\nsoapstone\r\nsoapsuds\r\nsoapwort\r\nsoapy\r\nsoar\r\nsoared\r\nsoaring\r\nsoars\r\nsob\r\nsoba\r\nsobbed\r\nsobbing\r\nsobbingly\r\nsober\r\nsobered\r\nsoberer\r\nsoberest\r\nsobering\r\nsoberly\r\nsoberness\r\nsobers\r\nsobriety\r\nsobriquet\r\nsobs\r\nsoccer\r\nsociability\r\nsociable\r\nsociably\r\nsocial\r\nsocialisation\r\nsocialisation's\r\nsocialisations\r\nsocialise\r\nsocialised\r\nsocialises\r\nsocialising\r\nsocialism\r\nsocialist\r\nsocialist's\r\nsocialistic\r\nsocialistically\r\nsocialists\r\nsocialite\r\nsociality\r\nsocially\r\nsocietal\r\nsocieties\r\nsociety\r\nsociety's\r\nsocio\r\nsociologic\r\nsociological\r\nsociologically\r\nsociologist\r\nsociologists\r\nsociology\r\nsociopath\r\nsock\r\nsocked\r\nsocket\r\nsocket's\r\nsockets\r\nsockeye\r\nsocking\r\nsocks\r\nsod\r\nsod's\r\nsoda\r\nsodalist\r\nsodality\r\nsodbuster\r\nsodden\r\nsodium\r\nsodomite\r\nsodomy\r\nsods\r\nsofa\r\nsofa's\r\nsofas\r\nsoffit\r\nsoft\r\nsoftball\r\nsoften\r\nsoftened\r\nsoftener\r\nsoftening\r\nsoftens\r\nsofter\r\nsoftest\r\nsofthead\r\nsoftheaded\r\nsoftie\r\nsofties\r\nsoftly\r\nsoftness\r\nsoftware\r\nsoftware's\r\nsoftwood\r\nsofty\r\nsoggier\r\nsogginess\r\nsoggy\r\nsoil\r\nsoiled\r\nsoiling\r\nsoils\r\nsoiree\r\nsoirees\r\nsojourn\r\nsojourner\r\nsojourners\r\nsolace\r\nsolaced\r\nsolacing\r\nsolar\r\nsolarium\r\nsold\r\nsolder\r\nsoldered\r\nsoldering\r\nsolders\r\nsoldier\r\nsoldiered\r\nsoldiering\r\nsoldierly\r\nsoldiers\r\nsoldiery\r\nsole\r\nsolecism\r\nsoled\r\nsolely\r\nsolemn\r\nsolemnisation\r\nsolemnisation's\r\nsolemnisations\r\nsolemnise\r\nsolemnised\r\nsolemnises\r\nsolemnising\r\nsolemnity\r\nsolemnly\r\nsolenoid\r\nsolenoids\r\nsoleplate\r\nsoleprint\r\nsoles\r\nsolicit\r\nsolicitation\r\nsolicited\r\nsoliciting\r\nsolicitor\r\nsolicitors\r\nsolicitous\r\nsolicitously\r\nsolicitousness\r\nsolicits\r\nsolicitude\r\nsolid\r\nsolidarity\r\nsolidification\r\nsolidified\r\nsolidifies\r\nsolidify\r\nsolidifying\r\nsolidity\r\nsolidly\r\nsolidness\r\nsolids\r\nsoliloquise\r\nsoliloquised\r\nsoliloquises\r\nsoliloquising\r\nsoliloquist\r\nsoliloquy\r\nsoling\r\nsolipsism\r\nsolipsist\r\nsolipsistic\r\nsolitaire\r\nsolitarily\r\nsolitariness\r\nsolitary\r\nsolitude\r\nsolitude's\r\nsolitudes\r\nsolo\r\nsolo's\r\nsoloed\r\nsoloing\r\nsoloist\r\nsoloists\r\nsolos\r\nsolstice\r\nsolubility\r\nsoluble\r\nsolute\r\nsolution\r\nsolution's\r\nsolutions\r\nsolvability\r\nsolvable\r\nsolvate\r\nsolvated\r\nsolvating\r\nsolve\r\nsolved\r\nsolvency\r\nsolvent\r\nsolvent's\r\nsolvents\r\nsolver\r\nsolvers\r\nsolves\r\nsolving\r\nsoma\r\nsomatic\r\nsomatically\r\nsombre\r\nsombrero\r\nsome\r\nsomebody\r\nsomebody's\r\nsomeday\r\nsomehow\r\nsomeone\r\nsomeone's\r\nsomeplace\r\nsomersault\r\nsomersaulting\r\nsomersaults\r\nsomething\r\nsometime\r\nsometimes\r\nsomeway\r\nsomewhat\r\nsomewhere\r\nsommelier\r\nsommeliers\r\nsomnambulant\r\nsomnambular\r\nsomnambulate\r\nsomnambulism\r\nsomnambulist\r\nsomnambulistic\r\nsomniferous\r\nsomnolence\r\nsomnolent\r\nsomnolently\r\nson\r\nson's\r\nsonant\r\nsonar\r\nsonata\r\nsonatas\r\nsong\r\nsong's\r\nsongbird\r\nsongbook\r\nsongfest\r\nsongs\r\nsongster\r\nsongwriter\r\nsonic\r\nsonically\r\nsonless\r\nsonly\r\nsonnet\r\nsonnet's\r\nsonneteer\r\nsonnets\r\nsonny\r\nsonogram\r\nsonogram's\r\nsonograms\r\nsonorities\r\nsonority\r\nsonorous\r\nsonorously\r\nsons\r\nsoon\r\nsooner\r\nsoonest\r\nsoot\r\nsooth\r\nsoothe\r\nsoothed\r\nsoothes\r\nsoothing\r\nsoothingly\r\nsoothsay\r\nsoothsayer\r\nsoothsayers\r\nsoothsaying\r\nsootier\r\nsootiness\r\nsooty\r\nsop\r\nsophism\r\nsophist\r\nsophistic\r\nsophistically\r\nsophisticate\r\nsophisticated\r\nsophisticatedly\r\nsophisticates\r\nsophistication\r\nsophistry\r\nsophomore\r\nsophomore's\r\nsophomores\r\nsophomoric\r\nsoporiferous\r\nsoporific\r\nsoporific's\r\nsoporifics\r\nsoppier\r\nsopping\r\nsoppy\r\nsoprano\r\nsopranos\r\nsops\r\nsorcerer\r\nsorcerer's\r\nsorcerers\r\nsorceress\r\nsorcery\r\nsordid\r\nsordidly\r\nsordidness\r\nsore\r\nsorehead\r\nsorely\r\nsoreness\r\nsorer\r\nsores\r\nsorest\r\nsorghum\r\nsororities\r\nsorority\r\nsorption\r\nsorrel\r\nsorrier\r\nsorriest\r\nsorrow\r\nsorrow's\r\nsorrowful\r\nsorrowfully\r\nsorrowfulness\r\nsorrows\r\nsorry\r\nsort\r\nsorted\r\nsorter\r\nsorters\r\nsortie\r\nsortilege\r\nsorting\r\nsorts\r\nsot\r\nsotto\r\nsoubrette\r\nsoubriquet\r\nsoufflé\r\nsough\r\nsought\r\nsoul\r\nsoul's\r\nsoulful\r\nsoulfully\r\nsoulless\r\nsoullessly\r\nsouls\r\nsound\r\nsoundboard\r\nsounded\r\nsounder\r\nsoundest\r\nsounding\r\nsounding's\r\nsoundings\r\nsoundless\r\nsoundlessly\r\nsoundly\r\nsoundness\r\nsoundproof\r\nsoundproofed\r\nsoundproofing\r\nsoundproofs\r\nsounds\r\nsoup\r\nsoup's\r\nsoupier\r\nsoups\r\nsoupspoon\r\nsoupy\r\nsour\r\nsource\r\nsource's\r\nsources\r\nsourdough\r\nsoured\r\nsourer\r\nsourest\r\nsouring\r\nsourly\r\nsourness\r\nsourpuss\r\nsours\r\nsourwood\r\nsousaphone\r\nsouse\r\nsousing\r\nsouth\r\nsouthbound\r\nsoutheast\r\nsoutheaster\r\nsoutherly\r\nsouthern\r\nsoutherner\r\nsoutherners\r\nsouthernisms\r\nsouthernmost\r\nsouthing\r\nsouthland\r\nsouthpaw\r\nsouthpaws\r\nsouthward\r\nsouthwards\r\nsouthwest\r\nsouthwester\r\nsouvenir\r\nsouvenirs\r\nsovereign\r\nsovereign's\r\nsovereigns\r\nsovereignty\r\nsoviet\r\nsoviet's\r\nsovietisation\r\nsovietisation's\r\nsovietisations\r\nsovietise\r\nsovietises\r\nsovietism\r\nsoviets\r\nsovkhoz\r\nsovkhozes\r\nsovran\r\nsovranty\r\nsow\r\nsowbelly\r\nsowbug\r\nsowbug's\r\nsowbugs\r\nsowens\r\nsower\r\nsowered\r\nsowing\r\nsown\r\nsox\r\nsoxhlet\r\nsoy\r\nsoya\r\nsoybean\r\nsoybeans\r\nspa\r\nspace\r\nspacecraft\r\nspaced\r\nspaceman\r\nspaceport\r\nspacer\r\nspacers\r\nspaces\r\nspaceship\r\nspaceship's\r\nspaceships\r\nspacesuit\r\nspacesuits\r\nspacing\r\nspacious\r\nspaciously\r\nspaciousness\r\nspackle\r\nspackled\r\nspade\r\nspaded\r\nspadefish\r\nspades\r\nspadework\r\nspading\r\nspaghetti\r\nspam\r\nspan\r\nspan's\r\nspandrel\r\nspandrels\r\nspangle\r\nspangled\r\nspangles\r\nspangling\r\nspaniel\r\nspank\r\nspanked\r\nspanker\r\nspanking\r\nspanks\r\nspanned\r\nspanner\r\nspanner's\r\nspanners\r\nspanning\r\nspans\r\nspanworm\r\nspar\r\nspare\r\nspared\r\nsparely\r\nsparer\r\nsparerib\r\nspareribs\r\nspares\r\nsparest\r\nsparing\r\nsparingly\r\nspark\r\nsparked\r\nsparking\r\nsparkle\r\nsparkled\r\nsparkler\r\nsparkles\r\nsparkling\r\nsparkplug\r\nsparks\r\nsparred\r\nsparring\r\nsparrow\r\nsparrow's\r\nsparrowgrass\r\nsparrows\r\nspars\r\nsparse\r\nsparsely\r\nsparseness\r\nsparser\r\nsparsest\r\nspas\r\nspasm\r\nspasmodic\r\nspasmodically\r\nspasms\r\nspastic\r\nspastically\r\nspat\r\nspate\r\nspate's\r\nspates\r\nspatial\r\nspatiality\r\nspatially\r\nspats\r\nspatter\r\nspatterdock\r\nspattered\r\nspatula\r\nspavin\r\nspavined\r\nspawn\r\nspawned\r\nspawning\r\nspawns\r\nspay\r\nspayed\r\nspaying\r\nspeak\r\nspeakeasy\r\nspeaker\r\nspeaker's\r\nspeakers\r\nspeaking\r\nspeaks\r\nspear\r\nspeared\r\nspearfish\r\nspearhead\r\nspearing\r\nspearman\r\nspearmint\r\nspears\r\nspec\r\nspecial\r\nspecialization\r\nspecialization's\r\nspecializations\r\nspecialize\r\nspecialized\r\nspecializes\r\nspecializing\r\nspecialist\r\nspecialist's\r\nspecialists\r\nspecialities\r\nspeciality\r\nspeciality's\r\nspecially\r\nspecials\r\nspeciation\r\nspecie\r\nspecies\r\nspecifiable\r\nspecific\r\nspecifically\r\nspecification\r\nspecifications\r\nspecificities\r\nspecificity\r\nspecifics\r\nspecified\r\nspecifies\r\nspecify\r\nspecifying\r\nspecimen\r\nspecimen's\r\nspecimens\r\nspecious\r\nspeciously\r\nspeciousness\r\nspeck\r\nspeck's\r\nspeckle\r\nspeckled\r\nspeckles\r\nspeckling\r\nspecks\r\nspecs\r\nspectacle\r\nspectacled\r\nspectacles\r\nspectacular\r\nspectacularly\r\nspectator\r\nspectator's\r\nspectators\r\nspectra\r\nspectral\r\nspectrally\r\nspectre\r\nspectre's\r\nspectres\r\nspectrogram\r\nspectrogram's\r\nspectrograms\r\nspectrograph\r\nspectrographic\r\nspectrographically\r\nspectrometer\r\nspectrometer's\r\nspectrometers\r\nspectrometric\r\nspectrometry\r\nspectrophotometer\r\nspectrophotometer's\r\nspectrophotometers\r\nspectroscope\r\nspectroscopic\r\nspectroscopy\r\nspectrum\r\nspectrums\r\nspeculate\r\nspeculated\r\nspeculates\r\nspeculating\r\nspeculation\r\nspeculations\r\nspeculative\r\nspeculatively\r\nspeculator\r\nspeculator's\r\nspeculators\r\nspeculum\r\nsped\r\nspeech\r\nspeech's\r\nspeeches\r\nspeechless\r\nspeechlessly\r\nspeechlessness\r\nspeed\r\nspeedball\r\nspeedboat\r\nspeedboater\r\nspeeded\r\nspeeder\r\nspeeders\r\nspeedier\r\nspeedily\r\nspeediness\r\nspeeding\r\nspeedometer\r\nspeedometer's\r\nspeedometers\r\nspeeds\r\nspeedster\r\nspeedup\r\nspeedup's\r\nspeedups\r\nspeedway\r\nspeedwell\r\nspeedwriting\r\nspeedy\r\nspell\r\nspellbind\r\nspellbinder\r\nspellbound\r\nspelldown\r\nspelled\r\nspeller\r\nspellers\r\nspelling\r\nspellings\r\nspells\r\nspelt\r\nspelunker\r\nspelunking\r\nspend\r\nspender\r\nspenders\r\nspending\r\nspends\r\nspendthrift\r\nspent\r\nsperm\r\nspermaceti\r\nspermatic\r\nspermatogenesis\r\nspermatogenetic\r\nspermatophyte\r\nspermatozoa\r\nspermatozoid\r\nspermatozoon\r\nspermicidal\r\nsperms\r\nspew\r\nspewing\r\nsphagnum\r\nsphenoid\r\nsphere\r\nsphere's\r\nspheres\r\nspherical\r\nspherically\r\nspheroid\r\nspherule\r\nspherules\r\nsphincter\r\nsphinx\r\nsphinxes\r\nsphygmomanometer\r\nsphygmomanometer's\r\nsphygmomanometers\r\nspic\r\nspice\r\nspiceberry\r\nspicebush\r\nspiced\r\nspices\r\nspicier\r\nspicily\r\nspiciness\r\nspicing\r\nspicy\r\nspider\r\nspider's\r\nspiders\r\nspiderwort\r\nspidery\r\nspied\r\nspiel\r\nspies\r\nspiffier\r\nspiffy\r\nspigot\r\nspigots\r\nspike\r\nspiked\r\nspikenard\r\nspikes\r\nspikier\r\nspiking\r\nspiky\r\nspill\r\nspillage\r\nspillage's\r\nspillages\r\nspilled\r\nspiller\r\nspilling\r\nspills\r\nspillway\r\nspilt\r\nspin\r\nspinach\r\nspinal\r\nspinally\r\nspindle\r\nspindled\r\nspindles\r\nspindling\r\nspindly\r\nspindrift\r\nspine\r\nspineless\r\nspinelessly\r\nspinelessness\r\nspines\r\nspinet\r\nspinier\r\nspinnaker\r\nspinner\r\nspinner's\r\nspinneret\r\nspinners\r\nspinney\r\nspinning\r\nspinout\r\nspins\r\nspinster\r\nspinsterhood\r\nspinsterish\r\nspiny\r\nspiracle\r\nspiral\r\nspiralled\r\nspiralling\r\nspirally\r\nspirals\r\nspirant\r\nspire\r\nspire's\r\nspires\r\nspirit\r\nspirited\r\nspiritedly\r\nspiritedness\r\nspiriting\r\nspiritless\r\nspiritlessly\r\nspirits\r\nspiritual\r\nspiritualise\r\nspiritualised\r\nspiritualises\r\nspiritualising\r\nspiritualism\r\nspiritualist\r\nspiritualistic\r\nspirituality\r\nspiritually\r\nspirituals\r\nspirituous\r\nspirogyra\r\nspit\r\nspite\r\nspited\r\nspiteful\r\nspitefully\r\nspitefulness\r\nspites\r\nspitfire\r\nspiting\r\nspits\r\nspitted\r\nspitting\r\nspittle\r\nspittoon\r\nspittoons\r\nspiv\r\nsplash\r\nsplashback\r\nsplashboard\r\nsplashdown\r\nsplashdowns\r\nsplashed\r\nsplashes\r\nsplashier\r\nsplashily\r\nsplashing\r\nsplashy\r\nsplat\r\nsplatter\r\nsplattered\r\nsplay\r\nsplayed\r\nsplayfoot\r\nsplayfooted\r\nspleen\r\nspleenful\r\nspleeny\r\nsplendid\r\nsplendidly\r\nsplendiferous\r\nsplendorous\r\nsplendour\r\nsplendour's\r\nsplendours\r\nsplenetic\r\nsplice\r\nspliced\r\nsplices\r\nsplicing\r\nspline\r\nsplint\r\nsplinted\r\nsplinter\r\nsplintered\r\nsplintering\r\nsplinters\r\nsplintery\r\nsplinting\r\nsplints\r\nsplit\r\nsplit's\r\nsplits\r\nsplitter\r\nsplitter's\r\nsplitters\r\nsplitting\r\nsplodge\r\nsplotch\r\nsplotched\r\nsplotches\r\nsplotchy\r\nsplurge\r\nsplurges\r\nsplurging\r\nsplutter\r\nspoil\r\nspoilable\r\nspoilage\r\nspoiled\r\nspoiler\r\nspoilers\r\nspoiling\r\nspoils\r\nspoilsport\r\nspoilt\r\nspoke\r\nspoken\r\nspokes\r\nspokeshave\r\nspokesman\r\nspokesmen\r\nspokespeople\r\nspokesperson\r\nspokesperson's\r\nspokespersons\r\nspokeswoman\r\nspoliation\r\nspoliator\r\nspondaic\r\nspondee\r\nsponge\r\nsponged\r\nsponger\r\nspongers\r\nsponges\r\nspongier\r\nsponginess\r\nsponging\r\nspongy\r\nsponsor\r\nsponsored\r\nsponsoring\r\nsponsors\r\nsponsorship\r\nspontaneity\r\nspontaneous\r\nspontaneously\r\nspoof\r\nspook\r\nspookier\r\nspookily\r\nspookiness\r\nspooky\r\nspool\r\nspooled\r\nspooler\r\nspoolers\r\nspooling\r\nspools\r\nspoon\r\nspoonbill\r\nspoondrift\r\nspooned\r\nspoonerism\r\nspoonful\r\nspoonfuls\r\nspooning\r\nspoons\r\nspoor\r\nsporadic\r\nsporadically\r\nsporangial\r\nsporangium\r\nspore\r\nspore's\r\nspores\r\nsporran\r\nsport\r\nsported\r\nsportier\r\nsportiest\r\nsportily\r\nsporting\r\nsportingly\r\nsportive\r\nsports\r\nsportscast\r\nsportsman\r\nsportsmanlike\r\nsportsmanship\r\nsportsmen\r\nsportswear\r\nsportswoman\r\nsportswriter\r\nsporty\r\nspot\r\nspot's\r\nspotless\r\nspotlessly\r\nspotlessness\r\nspotlight\r\nspotlight's\r\nspotlighted\r\nspotlighting\r\nspotlights\r\nspots\r\nspotted\r\nspotter\r\nspotter's\r\nspotters\r\nspottier\r\nspottily\r\nspottiness\r\nspotting\r\nspotty\r\nspousal\r\nspouse\r\nspouse's\r\nspouses\r\nspout\r\nspouted\r\nspouting\r\nspouts\r\nsprain\r\nsprained\r\nsprains\r\nsprang\r\nsprat\r\nsprawl\r\nsprawled\r\nsprawling\r\nsprawls\r\nspray\r\nsprayed\r\nsprayer\r\nspraying\r\nsprays\r\nspread\r\nspreader\r\nspreaders\r\nspreading\r\nspreads\r\nspreadsheet\r\nspreadsheets\r\nspree\r\nspree's\r\nsprees\r\nsprier\r\nspriest\r\nsprig\r\nsprigging\r\nsprightlier\r\nsprightliness\r\nsprightly\r\nsprigtail\r\nspring\r\nspringboard\r\nspringbok\r\nspringboks\r\nspringhead\r\nspringhouse\r\nspringier\r\nspringiest\r\nspringiness\r\nspringing\r\nsprings\r\nspringtail\r\nspringtails\r\nspringtide\r\nspringtime\r\nspringwood\r\nspringy\r\nsprinkle\r\nsprinkled\r\nsprinkler\r\nsprinkles\r\nsprinkling\r\nsprint\r\nsprinted\r\nsprinter\r\nsprinters\r\nsprinting\r\nsprints\r\nsprit\r\nsprite\r\nspritsail\r\nsprocket\r\nsprockets\r\nsprout\r\nsprouted\r\nsprouting\r\nsprouts\r\nspruce\r\nspruced\r\nsprucely\r\nsprucing\r\nsprung\r\nspry\r\nspryer\r\nspryest\r\nspryly\r\nspryness\r\nspud\r\nspume\r\nspumoni\r\nspun\r\nspunk\r\nspunkier\r\nspunkiness\r\nspunky\r\nspur\r\nspur's\r\nspurge\r\nspurious\r\nspuriously\r\nspuriousness\r\nspurn\r\nspurned\r\nspurning\r\nspurns\r\nspurred\r\nspurring\r\nspurs\r\nspurt\r\nspurted\r\nspurting\r\nspurts\r\nsputa\r\nsputnik\r\nsputniks\r\nsputter\r\nsputtered\r\nsputum\r\nspy\r\nspyglass\r\nspying\r\nsquab\r\nsquabble\r\nsquabbled\r\nsquabbles\r\nsquabbling\r\nsquabs\r\nsquad\r\nsquad's\r\nsquadron\r\nsquadron's\r\nsquadrons\r\nsquads\r\nsqualid\r\nsqualidly\r\nsquall\r\nsquall's\r\nsquallier\r\nsqualls\r\nsqually\r\nsqualor\r\nsquander\r\nsquandered\r\nsquandering\r\nsquanders\r\nsquare\r\nsquared\r\nsquarely\r\nsquarer\r\nsquares\r\nsquarest\r\nsquaring\r\nsquash\r\nsquashed\r\nsquashes\r\nsquashier\r\nsquashing\r\nsquashy\r\nsquat\r\nsquatness\r\nsquats\r\nsquatted\r\nsquatter\r\nsquatters\r\nsquattest\r\nsquattier\r\nsquatting\r\nsquatty\r\nsquaw\r\nsquawk\r\nsquawked\r\nsquawker\r\nsquawking\r\nsquawks\r\nsquawroot\r\nsqueak\r\nsqueaked\r\nsqueaker\r\nsqueaking\r\nsqueaks\r\nsqueaky\r\nsqueal\r\nsquealed\r\nsquealer\r\nsquealing\r\nsqueals\r\nsqueamish\r\nsqueamishly\r\nsqueamishness\r\nsqueegee\r\nsqueegees\r\nsqueezable\r\nsqueeze\r\nsqueezed\r\nsqueezer\r\nsqueezes\r\nsqueezing\r\nsquelch\r\nsquelched\r\nsquelcher\r\nsquelches\r\nsquelching\r\nsquib\r\nsquibs\r\nsquid\r\nsquids\r\nsquiggle\r\nsquiggled\r\nsquiggles\r\nsquiggling\r\nsquiggly\r\nsquint\r\nsquinted\r\nsquinter\r\nsquinting\r\nsquints\r\nsquinty\r\nsquire\r\nsquire's\r\nsquires\r\nsquiring\r\nsquirm\r\nsquirmed\r\nsquirming\r\nsquirms\r\nsquirmy\r\nsquirrel\r\nsquirrelfish\r\nsquirrelly\r\nsquirrels\r\nsquirt\r\nsquirted\r\nsquirting\r\nsquirts\r\nsquish\r\nsquished\r\nsquishes\r\nsquishier\r\nsquishiest\r\nsquishiness\r\nsquishing\r\nsquishy\r\nstab\r\nstabbed\r\nstabber\r\nstabbing\r\nstabile\r\nstabilisation\r\nstabilisation's\r\nstabilisations\r\nstabilise\r\nstabilised\r\nstabiliser\r\nstabilisers\r\nstabilises\r\nstabilising\r\nstabilities\r\nstability\r\nstability's\r\nstable\r\nstabled\r\nstableman\r\nstablemen\r\nstableness\r\nstables\r\nstabling\r\nstably\r\nstabs\r\nstaccato\r\nstaccatos\r\nstack\r\nstack's\r\nstackable\r\nstacked\r\nstacker\r\nstacking\r\nstacks\r\nstadium\r\nstadium's\r\nstadiums\r\nstaff\r\nstaff's\r\nstaffed\r\nstaffers\r\nstaffing\r\nstaffs\r\nstag\r\nstag's\r\nstage\r\nstagecoach\r\nstagecraft\r\nstaged\r\nstagehand\r\nstager\r\nstagers\r\nstages\r\nstagflation\r\nstagger\r\nstaggerbush\r\nstaggered\r\nstaggering\r\nstaggeringly\r\nstaggers\r\nstaghound\r\nstagier\r\nstaginess\r\nstaging\r\nstagnancy\r\nstagnant\r\nstagnantly\r\nstagnate\r\nstagnated\r\nstagnates\r\nstagnating\r\nstagnation\r\nstags\r\nstagy\r\nstaid\r\nstaidly\r\nstaidness\r\nstain\r\nstainable\r\nstained\r\nstaining\r\nstainless\r\nstains\r\nstair\r\nstair's\r\nstaircase\r\nstaircase's\r\nstaircases\r\nstairs\r\nstairway\r\nstairway's\r\nstairways\r\nstairwell\r\nstairwells\r\nstake\r\nstaked\r\nstakeholder\r\nstakeout\r\nstakes\r\nstaking\r\nstalactite\r\nstalactite's\r\nstalactites\r\nstalagmite\r\nstalagmite's\r\nstalagmites\r\nstale\r\nstaled\r\nstalemate\r\nstaleness\r\nstaler\r\nstales\r\nstalest\r\nstaling\r\nstalk\r\nstalked\r\nstalker\r\nstalking\r\nstalks\r\nstall\r\nstalled\r\nstalling\r\nstallion\r\nstalls\r\nstalwart\r\nstalwartly\r\nstalwartness\r\nstamen\r\nstamen's\r\nstamens\r\nstamina\r\nstammer\r\nstammered\r\nstammering\r\nstammers\r\nstamp\r\nstamped\r\nstampede\r\nstampeded\r\nstampedes\r\nstampeding\r\nstamping\r\nstamps\r\nstance\r\nstance's\r\nstances\r\nstanch\r\nstanchion\r\nstanchions\r\nstand\r\nstandalone\r\nstandard\r\nstandardisation\r\nstandardisation's\r\nstandardisations\r\nstandardise\r\nstandardised\r\nstandardises\r\nstandardising\r\nstandards\r\nstandby\r\nstandbys\r\nstandee\r\nstanding\r\nstandings\r\nstandoff\r\nstandoffish\r\nstandoffishly\r\nstandoffishness\r\nstandout\r\nstandpipe\r\nstandpoint\r\nstandpoint's\r\nstandpoints\r\nstands\r\nstandstill\r\nstank\r\nstannic\r\nstannous\r\nstanza\r\nstanza's\r\nstanzas\r\nstapes\r\nstaphylococcal\r\nstaphylococcus\r\nstaple\r\nstapled\r\nstapler\r\nstaplers\r\nstaples\r\nstapling\r\nstar\r\nstar's\r\nstarboard\r\nstarboards\r\nstarch\r\nstarched\r\nstarches\r\nstarchier\r\nstarchiness\r\nstarching\r\nstarchy\r\nstardom\r\nstardust\r\nstare\r\nstared\r\nstares\r\nstarfish\r\nstarflower\r\nstargaze\r\nstargazer\r\nstargazes\r\nstargazing\r\nstaring\r\nstark\r\nstarkest\r\nstarkly\r\nstarkness\r\nstarless\r\nstarlet\r\nstarlet's\r\nstarlets\r\nstarlight\r\nstarling\r\nstarlings\r\nstarlit\r\nstarred\r\nstarrier\r\nstarring\r\nstarry\r\nstars\r\nstart\r\nstarted\r\nstarter\r\nstarters\r\nstarting\r\nstartle\r\nstartled\r\nstartles\r\nstartling\r\nstartlingly\r\nstarts\r\nstarvation\r\nstarve\r\nstarved\r\nstarveling\r\nstarves\r\nstarving\r\nstases\r\nstash\r\nstashed\r\nstashes\r\nstashing\r\nstasis\r\nstate\r\nstate's\r\nstatecraft\r\nstated\r\nstatehood\r\nstatehouse\r\nstateless\r\nstatelessness\r\nstatelier\r\nstateliness\r\nstately\r\nstatement\r\nstatement's\r\nstatements\r\nstateroom\r\nstates\r\nstateside\r\nstatesman\r\nstatesman's\r\nstatesmanlike\r\nstatesmanship\r\nstatesmen\r\nstatic\r\nstatically\r\nstating\r\nstation\r\nstationary\r\nstationed\r\nstationer\r\nstationeries\r\nstationery\r\nstationing\r\nstationmaster\r\nstations\r\nstatistic\r\nstatistic's\r\nstatistical\r\nstatistically\r\nstatistician\r\nstatistician's\r\nstatisticians\r\nstatistics\r\nstator\r\nstators\r\nstatuary\r\nstatue\r\nstatue's\r\nstatues\r\nstatuesque\r\nstatuesquely\r\nstatuette\r\nstature\r\nstatus\r\nstatuses\r\nstatute\r\nstatute's\r\nstatutes\r\nstatutorily\r\nstatutory\r\nstaunch\r\nstaunchest\r\nstaunchly\r\nstaunchness\r\nstave\r\nstaved\r\nstaves\r\nstaving\r\nstay\r\nstayed\r\nstaying\r\nstays\r\nstaysail\r\nstead\r\nsteadfast\r\nsteadfastly\r\nsteadfastness\r\nsteadied\r\nsteadier\r\nsteadies\r\nsteadiest\r\nsteadily\r\nsteadiness\r\nsteady\r\nsteadying\r\nsteak\r\nsteak's\r\nsteakhouse\r\nsteaks\r\nsteal\r\nstealer\r\nstealing\r\nsteals\r\nstealth\r\nstealthier\r\nstealthily\r\nstealthy\r\nsteam\r\nsteamboat\r\nsteamboat's\r\nsteamboats\r\nsteamed\r\nsteamer\r\nsteamers\r\nsteamier\r\nsteamily\r\nsteaminess\r\nsteaming\r\nsteamroll\r\nsteamroller\r\nsteams\r\nsteamship\r\nsteamship's\r\nsteamships\r\nsteamy\r\nsteatite\r\nsteed\r\nsteeds\r\nsteel\r\nsteeled\r\nsteelhead\r\nsteelier\r\nsteeliness\r\nsteeling\r\nsteels\r\nsteelwork\r\nsteelworker\r\nsteelworks\r\nsteely\r\nsteelyard\r\nsteenbok\r\nsteep\r\nsteeped\r\nsteeper\r\nsteepest\r\nsteeping\r\nsteeple\r\nsteeple's\r\nsteeplebush\r\nsteeplechase\r\nsteeplechaser\r\nsteeplejack\r\nsteeples\r\nsteeply\r\nsteepness\r\nsteeps\r\nsteer\r\nsteerage\r\nsteerageway\r\nsteered\r\nsteering\r\nsteers\r\nsteersman\r\nstegosaur\r\nstegosaurus\r\nstein\r\nstele\r\nstellar\r\nstem\r\nstem's\r\nstemma\r\nstemmata\r\nstemmed\r\nstemming\r\nstems\r\nstemson\r\nstemware\r\nstench\r\nstench's\r\nstenches\r\nstencil\r\nstencil's\r\nstencilled\r\nstencilling\r\nstencils\r\nsteno\r\nstenograph\r\nstenographer\r\nstenographer's\r\nstenographers\r\nstenographic\r\nstenography\r\nstenos\r\nstenotype\r\nstentorian\r\nstep\r\nstep's\r\nstepbrother\r\nstepchild\r\nstepchildren\r\nstepdaughter\r\nstepfather\r\nstephanotis\r\nstepladder\r\nstepladders\r\nstepmother\r\nstepmother's\r\nstepmothers\r\nstepparent\r\nsteppe\r\nstepped\r\nstepper\r\nsteppes\r\nstepping\r\nsteps\r\nstepsister\r\nstepson\r\nstepwise\r\nsteradian\r\nstereo\r\nstereo's\r\nstereochemistry\r\nstereograph\r\nstereographic\r\nstereographically\r\nstereography\r\nstereological\r\nstereomicroscope\r\nstereomicroscopic\r\nstereophonic\r\nstereophonically\r\nstereophony\r\nstereopticon\r\nstereos\r\nstereoscope\r\nstereoscopic\r\nstereoscopically\r\nstereoscopy\r\nstereotype\r\nstereotyped\r\nstereotypes\r\nstereotypic\r\nstereotypical\r\nstereotypically\r\nstereotyping\r\nstereotypy\r\nstereovision\r\nsterile\r\nsterilisation\r\nsterilisation's\r\nsterilisations\r\nsterilise\r\nsterilised\r\nsterilises\r\nsterilising\r\nsterility\r\nsterling\r\nstern\r\nsterna\r\nsternforemost\r\nsternly\r\nsternness\r\nsternpost\r\nsterns\r\nsternson\r\nsternum\r\nsternward\r\nsternwards\r\nsternway\r\nsteroid\r\nsteroidal\r\nsteroids\r\nsterol\r\nstet\r\nstethoscope\r\nstetted\r\nstetting\r\nstevedore\r\nstevedores\r\nstew\r\nsteward\r\nsteward's\r\nstewardess\r\nstewardesses\r\nstewards\r\nstewardship\r\nstewed\r\nstewing\r\nstews\r\nstibnite\r\nstichomythia\r\nstichomythic\r\nstick\r\nstickball\r\nsticker\r\nstickers\r\nstickier\r\nstickiest\r\nstickiness\r\nsticking\r\nstickle\r\nstickleback\r\nstickled\r\nstickler\r\nstickling\r\nstickpin\r\nsticks\r\nstickseed\r\nstickup\r\nstickweed\r\nsticky\r\nstiff\r\nstiffen\r\nstiffened\r\nstiffener\r\nstiffeners\r\nstiffening\r\nstiffens\r\nstiffer\r\nstiffest\r\nstiffly\r\nstiffness\r\nstiffs\r\nstifle\r\nstifled\r\nstifles\r\nstifling\r\nstiflingly\r\nstigma\r\nstigmas\r\nstigmata\r\nstigmatic\r\nstigmatically\r\nstigmatisation\r\nstigmatisation's\r\nstigmatisations\r\nstigmatise\r\nstigmatised\r\nstigmatises\r\nstigmatising\r\nstigmatism\r\nstile\r\nstile's\r\nstiles\r\nstiletto\r\nstill\r\nstillbirth\r\nstillbirths\r\nstillborn\r\nstilled\r\nstiller\r\nstillest\r\nstilling\r\nstillness\r\nstillroom\r\nstills\r\nstilly\r\nstilt\r\nstilted\r\nstiltedly\r\nstiltedness\r\nstilts\r\nstimulant\r\nstimulant's\r\nstimulants\r\nstimulate\r\nstimulated\r\nstimulates\r\nstimulating\r\nstimulation\r\nstimulations\r\nstimulator\r\nstimulators\r\nstimulatory\r\nstimuli\r\nstimulus\r\nsting\r\nstinger\r\nstingier\r\nstingily\r\nstinginess\r\nstinging\r\nstingingly\r\nstingray\r\nstingray's\r\nstingrays\r\nstings\r\nstingy\r\nstink\r\nstinkbug\r\nstinkbug's\r\nstinkbugs\r\nstinker\r\nstinkers\r\nstinkhorn\r\nstinking\r\nstinkpot\r\nstinks\r\nstinkstone\r\nstinkweed\r\nstinkwood\r\nstinky\r\nstint\r\nstint's\r\nstinted\r\nstinting\r\nstints\r\nstipend\r\nstipend's\r\nstipendiary\r\nstipends\r\nstipple\r\nstippled\r\nstipples\r\nstippling\r\nstipulate\r\nstipulated\r\nstipulates\r\nstipulating\r\nstipulation\r\nstipulations\r\nstipulator\r\nstipule\r\nstir\r\nstirred\r\nstirrer\r\nstirrer's\r\nstirrers\r\nstirring\r\nstirringly\r\nstirrings\r\nstirrup\r\nstirrups\r\nstirs\r\nstitch\r\nstitched\r\nstitches\r\nstitching\r\nstoat\r\nstoat's\r\nstoats\r\nstochastic\r\nstochastically\r\nstock\r\nstockade\r\nstockade's\r\nstockades\r\nstockbreeder\r\nstockbroker\r\nstockbrokerage\r\nstockcar\r\nstocked\r\nstocker\r\nstockers\r\nstockfish\r\nstockholder\r\nstockholder's\r\nstockholders\r\nstockier\r\nstockiness\r\nstockinet\r\nstocking\r\nstockings\r\nstockist\r\nstockjobber\r\nstockman\r\nstockpile\r\nstockpiling\r\nstockpot\r\nstockroom\r\nstocks\r\nstocktaking\r\nstocky\r\nstockyard\r\nstodgier\r\nstodgily\r\nstodginess\r\nstodgy\r\nstoic\r\nstoical\r\nstoically\r\nstoicism\r\nstoics\r\nstoke\r\nstoked\r\nstokehold\r\nstoker\r\nstokes\r\nstoking\r\nstole\r\nstole's\r\nstolen\r\nstoles\r\nstolid\r\nstolidity\r\nstolidly\r\nstoma\r\nstomach\r\nstomached\r\nstomacher\r\nstomaching\r\nstomachs\r\nstomas\r\nstomata\r\nstomp\r\nstomped\r\nstomping\r\nstomps\r\nstone\r\nstone's\r\nstonechat\r\nstonecrop\r\nstonecutter\r\nstonecutters\r\nstonecutting\r\nstoned\r\nstonefish\r\nstonefly\r\nstonemason\r\nstonemasonry\r\nstonemasons\r\nstoner\r\nstones\r\nstonewall\r\nstoneware\r\nstonework\r\nstoneworker\r\nstonier\r\nstonily\r\nstoniness\r\nstoning\r\nstony\r\nstonyhearted\r\nstood\r\nstooge\r\nstooges\r\nstool\r\nstools\r\nstoop\r\nstoopball\r\nstooped\r\nstooping\r\nstoops\r\nstop\r\nstop's\r\nstopcock\r\nstopcocks\r\nstopgap\r\nstopgap's\r\nstopgaps\r\nstoplight\r\nstoplights\r\nstopover\r\nstopovers\r\nstoppable\r\nstoppage\r\nstoppages\r\nstopped\r\nstopper\r\nstopper's\r\nstoppers\r\nstopping\r\nstopple\r\nstops\r\nstopwatch\r\nstopwatches\r\nstorable\r\nstorage\r\nstorage's\r\nstorages\r\nstore\r\nstored\r\nstorefront\r\nstorefront's\r\nstorefronts\r\nstorehouse\r\nstorehouse's\r\nstorehouses\r\nstorekeeper\r\nstorekeepers\r\nstoreroom\r\nstores\r\nstorewide\r\nstorey\r\nstoried\r\nstories\r\nstoring\r\nstork\r\nstork's\r\nstorks\r\nstorm\r\nstormbound\r\nstormed\r\nstormier\r\nstormiest\r\nstormily\r\nstorminess\r\nstorming\r\nstorms\r\nstormy\r\nstory\r\nstory's\r\nstoryboard\r\nstoryboards\r\nstorybook\r\nstorybooks\r\nstoryteller\r\nstorytellers\r\nstorytelling\r\nstorywriter\r\nstoup\r\nstout\r\nstouten\r\nstouter\r\nstoutest\r\nstoutly\r\nstoutness\r\nstove\r\nstove's\r\nstovepipe\r\nstovepipes\r\nstoves\r\nstow\r\nstowage\r\nstowaway\r\nstowaway's\r\nstowaways\r\nstowed\r\nstowing\r\nstows\r\nstrabismus\r\nstraddle\r\nstraddled\r\nstraddles\r\nstraddling\r\nstrafe\r\nstrafes\r\nstrafing\r\nstraggle\r\nstraggled\r\nstraggler\r\nstragglers\r\nstraggles\r\nstragglier\r\nstraggling\r\nstraggly\r\nstraight\r\nstraightaway\r\nstraightedge\r\nstraighten\r\nstraightened\r\nstraightening\r\nstraightens\r\nstraighter\r\nstraightest\r\nstraightforward\r\nstraightforwardly\r\nstraightforwardness\r\nstraightjacket\r\nstraightness\r\nstraightway\r\nstrain\r\nstrained\r\nstrainer\r\nstrainers\r\nstraining\r\nstrains\r\nstrait\r\nstraiten\r\nstraitened\r\nstraitening\r\nstraitjacket\r\nstrait-laced\r\nstraits\r\nstrake\r\nstrand\r\nstranded\r\nstranding\r\nstrandline\r\nstrands\r\nstrange\r\nstrangely\r\nstrangeness\r\nstranger\r\nstranger's\r\nstrangers\r\nstrangest\r\nstrangle\r\nstrangled\r\nstranglehold\r\nstrangler\r\nstranglers\r\nstrangles\r\nstrangling\r\nstrangulate\r\nstrangulated\r\nstrangulation\r\nstrangulation's\r\nstrangulations\r\nstrap\r\nstrap's\r\nstraphang\r\nstraphanger\r\nstrapless\r\nstrapped\r\nstrapping\r\nstraps\r\nstrata\r\nstratagem\r\nstratagem's\r\nstratagems\r\nstrategic\r\nstrategically\r\nstrategies\r\nstrategist\r\nstrategists\r\nstrategy\r\nstrategy's\r\nstratification\r\nstratifications\r\nstratified\r\nstratifies\r\nstratify\r\nstratifying\r\nstratocumulus\r\nstratosphere\r\nstratospheric\r\nstratum\r\nstraw\r\nstraw's\r\nstrawberries\r\nstrawberry\r\nstrawberry's\r\nstrawboard\r\nstrawflower\r\nstrawflowers\r\nstraws\r\nstrawworm\r\nstray\r\nstray's\r\nstrayed\r\nstraying\r\nstrays\r\nstreak\r\nstreaked\r\nstreakier\r\nstreakiness\r\nstreaking\r\nstreaks\r\nstreaky\r\nstream\r\nstreambed\r\nstreamed\r\nstreamer\r\nstreamers\r\nstreaming\r\nstreamlet\r\nstreamline\r\nstreamlined\r\nstreamliner\r\nstreamlines\r\nstreamlining\r\nstreams\r\nstreamside\r\nstreet\r\nstreetcar\r\nstreetcar's\r\nstreetcars\r\nstreetlight\r\nstreets\r\nstreetwalker\r\nstreetwalking\r\nstrength\r\nstrengthen\r\nstrengthened\r\nstrengthening\r\nstrengthens\r\nstrengths\r\nstrenuous\r\nstrenuously\r\nstrenuousness\r\nstreptococcal\r\nstreptococcus\r\nstreptomycin\r\nstress\r\nstressed\r\nstresses\r\nstressful\r\nstressfully\r\nstressing\r\nstressor\r\nstretch\r\nstretchable\r\nstretched\r\nstretcher\r\nstretchers\r\nstretches\r\nstretching\r\nstretchy\r\nstrew\r\nstrewing\r\nstrewn\r\nstrews\r\nstriate\r\nstriated\r\nstriates\r\nstriating\r\nstriation\r\nstricken\r\nstrict\r\nstricter\r\nstrictest\r\nstrictly\r\nstrictness\r\nstricture\r\nstrictures\r\nstridden\r\nstride\r\nstridence\r\nstridency\r\nstrident\r\nstridently\r\nstrider\r\nstrides\r\nstriding\r\nstridulate\r\nstrife\r\nstrike\r\nstrikebound\r\nstrikebreaking\r\nstrikeout\r\nstrikeover\r\nstriker\r\nstrikers\r\nstrikes\r\nstriking\r\nstrikingly\r\nstring\r\nstring's\r\nstringboard\r\nstringcourse\r\nstringed\r\nstringency\r\nstringent\r\nstringently\r\nstringer\r\nstringers\r\nstringhalt\r\nstringier\r\nstringiest\r\nstringiness\r\nstringing\r\nstrings\r\nstringy\r\nstrip\r\nstrip's\r\nstripe\r\nstriped\r\nstriper\r\nstripes\r\nstripfilm\r\nstriping\r\nstripling\r\nstrippable\r\nstripped\r\nstripper\r\nstripper's\r\nstrippers\r\nstripping\r\nstrips\r\nstriptease\r\nstripy\r\nstrive\r\nstriven\r\nstrives\r\nstriving\r\nstrivings\r\nstrobe\r\nstrobe's\r\nstrobes\r\nstroboscope\r\nstroboscopic\r\nstrode\r\nstroganoff\r\nstroke\r\nstroked\r\nstrokes\r\nstroking\r\nstroll\r\nstrolled\r\nstroller\r\nstrolling\r\nstrolls\r\nstrong\r\nstrongbox\r\nstronger\r\nstrongest\r\nstronghold\r\nstrongly\r\nstrongman\r\nstrontium\r\nstrop\r\nstrophe\r\nstrophes\r\nstrophic\r\nstropped\r\nstropping\r\nstroppy\r\nstrops\r\nstrove\r\nstrow\r\nstruck\r\nstructural\r\nstructuralism\r\nstructurally\r\nstructure\r\nstructured\r\nstructures\r\nstructuring\r\nstrudel\r\nstruggle\r\nstruggled\r\nstruggler\r\nstruggles\r\nstruggling\r\nstrum\r\nstrummer\r\nstrumming\r\nstrumpet\r\nstrung\r\nstrut\r\nstruts\r\nstrutted\r\nstrutting\r\nstrychnine\r\nstub\r\nstub's\r\nstubbed\r\nstubbing\r\nstubble\r\nstubbly\r\nstubborn\r\nstubbornly\r\nstubbornness\r\nstubby\r\nstubs\r\nstucco\r\nstuccoes\r\nstuccowork\r\nstuck\r\nstud\r\nstud's\r\nstudbook\r\nstudbooks\r\nstudded\r\nstudding\r\nstuddingsail\r\nstudent\r\nstudent's\r\nstudents\r\nstudentship\r\nstudentships\r\nstudhorse\r\nstudied\r\nstudiedly\r\nstudier\r\nstudies\r\nstudio\r\nstudio's\r\nstudios\r\nstudious\r\nstudiously\r\nstudiousness\r\nstuds\r\nstudwork\r\nstudy\r\nstudying\r\nstuff\r\nstuffed\r\nstuffier\r\nstuffiest\r\nstuffily\r\nstuffiness\r\nstuffing\r\nstuffs\r\nstuffy\r\nstultification\r\nstultify\r\nstultifying\r\nstumble\r\nstumblebum\r\nstumbled\r\nstumbles\r\nstumbling\r\nstumblingly\r\nstump\r\nstumpage\r\nstumped\r\nstumping\r\nstumps\r\nstumpy\r\nstun\r\nstung\r\nstunk\r\nstunned\r\nstunner\r\nstunning\r\nstunningly\r\nstuns\r\nstunt\r\nstunt's\r\nstunted\r\nstunting\r\nstunts\r\nstupefacient\r\nstupefaction\r\nstupefy\r\nstupefying\r\nstupendous\r\nstupendously\r\nstupid\r\nstupider\r\nstupidest\r\nstupidities\r\nstupidity\r\nstupidly\r\nstupor\r\nsturdier\r\nsturdily\r\nsturdiness\r\nsturdy\r\nsturgeon\r\nstutter\r\nstuttered\r\nstuttering\r\nstutters\r\nsty\r\nstye\r\nstyle\r\nstylebook\r\nstyled\r\nstyles\r\nstyli\r\nstyling\r\nstylisation\r\nstylisation's\r\nstylisations\r\nstylise\r\nstylised\r\nstylises\r\nstylish\r\nstylishly\r\nstylishness\r\nstylising\r\nstylist\r\nstylistic\r\nstylistically\r\nstylistics\r\nstylus\r\nstyluses\r\nstymie\r\nstymied\r\nstymieing\r\nstymies\r\nstyptic\r\nstyrene\r\nsuability\r\nsuasion\r\nsuave\r\nsuavely\r\nsuaveness\r\nsuavity\r\nsub\r\nsubagent\r\nsubaltern\r\nsubassembly\r\nsubatomic\r\nsubbasement\r\nsubbing\r\nsubcategorising\r\nsubclass\r\nsubclass's\r\nsubclasses\r\nsubcommand\r\nsubcommands\r\nsubcommittee\r\nsubcommittee's\r\nsubcommittees\r\nsubcompact\r\nsubcomponent\r\nsubcomponent's\r\nsubcomponents\r\nsubconscious\r\nsubconsciously\r\nsubcontinent\r\nsubcontract\r\nsubcontracting\r\nsubcontractor\r\nsubculture\r\nsubculture's\r\nsubcultures\r\nsubcutaneous\r\nsubdirectories\r\nsubdirectory\r\nsubdivide\r\nsubdivided\r\nsubdivides\r\nsubdividing\r\nsubdivision\r\nsubdivision's\r\nsubdivisions\r\nsubdominant\r\nsubdue\r\nsubdued\r\nsubdues\r\nsubduing\r\nsubentries\r\nsubentry\r\nsubequatorial\r\nsubfamilies\r\nsubfamily\r\nsubfreezing\r\nsubgenus\r\nsubgroup\r\nsubgroup's\r\nsubgroups\r\nsubhead\r\nsubheading\r\nsubhuman\r\nsubinterval\r\nsubinterval's\r\nsubintervals\r\nsubjacent\r\nsubject\r\nsubject's\r\nsubjected\r\nsubjecting\r\nsubjection\r\nsubjective\r\nsubjectively\r\nsubjectivism\r\nsubjectivist\r\nsubjectivists\r\nsubjectivity\r\nsubjects\r\nsubjoin\r\nsubjugate\r\nsubjugated\r\nsubjugates\r\nsubjugating\r\nsubjugation\r\nsubjugator\r\nsubjunctive\r\nsubkingdom\r\nsublease\r\nsublet\r\nsublevel\r\nsublicense\r\nsublicensed\r\nsublicenses\r\nsublicensing\r\nsublimate\r\nsublimated\r\nsublimates\r\nsublimating\r\nsublimation\r\nsublimations\r\nsublime\r\nsublimed\r\nsublimely\r\nsubliminal\r\nsubliminally\r\nsubliming\r\nsublingual\r\nsublunary\r\nsubmachine\r\nsubmarine\r\nsubmariner\r\nsubmariners\r\nsubmarines\r\nsubmerge\r\nsubmerged\r\nsubmergence\r\nsubmerges\r\nsubmergible\r\nsubmerging\r\nsubmerse\r\nsubmersed\r\nsubmersible\r\nsubmersing\r\nsubmersion\r\nsubmission\r\nsubmission's\r\nsubmissions\r\nsubmissive\r\nsubmissively\r\nsubmissiveness\r\nsubmit\r\nsubmits\r\nsubmittal\r\nsubmitted\r\nsubmitter\r\nsubmitters\r\nsubmitting\r\nsubnet\r\nsubnets\r\nsubnormal\r\nsuborder\r\nsubordinate\r\nsubordinated\r\nsubordinately\r\nsubordinates\r\nsubordinating\r\nsubordination\r\nsubordinator\r\nsuborn\r\nsubornation\r\nsuborned\r\nsuborning\r\nsuborns\r\nsubparagraph\r\nsubpart\r\nsubparts\r\nsubphylum\r\nsubplot\r\nsubplots\r\nsubpoena\r\nsubpoenaed\r\nsubpoenas\r\nsubpopulation\r\nsubpopulations\r\nsubprogram\r\nsubprogram's\r\nsubprograms\r\nsubproject\r\nsubrogate\r\nsubrogation\r\nsubroutine\r\nsubroutine's\r\nsubroutines\r\nsubs\r\nsubschema\r\nsubschema's\r\nsubscribe\r\nsubscribed\r\nsubscriber\r\nsubscribers\r\nsubscribes\r\nsubscribing\r\nsubscript\r\nsubscripted\r\nsubscripting\r\nsubscription\r\nsubscription's\r\nsubscriptions\r\nsubscripts\r\nsubsection\r\nsubsection's\r\nsubsections\r\nsubsequence\r\nsubsequence's\r\nsubsequent\r\nsubsequently\r\nsubservience\r\nsubservient\r\nsubserviently\r\nsubset\r\nsubset's\r\nsubsets\r\nsubside\r\nsubsided\r\nsubsidence\r\nsubsides\r\nsubsidiaries\r\nsubsidiary\r\nsubsidiary's\r\nsubsidies\r\nsubsiding\r\nsubsidisation\r\nsubsidisation's\r\nsubsidisations\r\nsubsidise\r\nsubsidised\r\nsubsidiser\r\nsubsidisers\r\nsubsidises\r\nsubsidising\r\nsubsidy\r\nsubsidy's\r\nsubsist\r\nsubsisted\r\nsubsistence\r\nsubsistent\r\nsubsisting\r\nsubsists\r\nsubsoil\r\nsubsonic\r\nsubspace\r\nsubspace's\r\nsubspaces\r\nsubspecies\r\nsubstance\r\nsubstance's\r\nsubstances\r\nsubstandard\r\nsubstantial\r\nsubstantiality\r\nsubstantially\r\nsubstantiate\r\nsubstantiated\r\nsubstantiates\r\nsubstantiating\r\nsubstantiation\r\nsubstantiations\r\nsubstantive\r\nsubstantively\r\nsubstation\r\nsubstations\r\nsubstitutability\r\nsubstitutable\r\nsubstitute\r\nsubstituted\r\nsubstitutes\r\nsubstituting\r\nsubstitution\r\nsubstitutions\r\nsubstitutive\r\nsubstrate\r\nsubstrate's\r\nsubstrates\r\nsubstratum\r\nsubstructure\r\nsubstructure's\r\nsubstructures\r\nsubsume\r\nsubsumed\r\nsubsumes\r\nsubsuming\r\nsubsurface\r\nsubsystem\r\nsubsystem's\r\nsubsystems\r\nsubtask\r\nsubtask's\r\nsubtasks\r\nsubtenant\r\nsubtend\r\nsubtended\r\nsubtends\r\nsubterfuge\r\nsubterfuges\r\nsubterranean\r\nsubterraneous\r\nsubtest\r\nsubtitle\r\nsubtitle's\r\nsubtitled\r\nsubtitles\r\nsubtitling\r\nsubtle\r\nsubtleness\r\nsubtler\r\nsubtlest\r\nsubtleties\r\nsubtlety\r\nsubtly\r\nsubtonic\r\nsubtopic\r\nsubtopic's\r\nsubtopics\r\nsubtotal\r\nsubtotalled\r\nsubtotalling\r\nsubtotals\r\nsubtract\r\nsubtracted\r\nsubtracting\r\nsubtraction\r\nsubtractions\r\nsubtractive\r\nsubtracts\r\nsubtrahend\r\nsubtrahend's\r\nsubtrahends\r\nsubtropical\r\nsubtropics\r\nsubtype\r\nsubtypes\r\nsubunit\r\nsubunit's\r\nsubunits\r\nsuburb\r\nsuburb's\r\nsuburban\r\nsuburbanise\r\nsuburbanised\r\nsuburbanises\r\nsuburbanising\r\nsuburbanite\r\nsuburbanites\r\nsuburbia\r\nsuburbs\r\nsubvention\r\nsubversion\r\nsubversive\r\nsubversively\r\nsubversives\r\nsubvert\r\nsubverted\r\nsubverting\r\nsubverts\r\nsubway\r\nsubway's\r\nsubways\r\nsubzero\r\nsuccedaneum\r\nsucceed\r\nsucceeded\r\nsucceeding\r\nsucceeds\r\nsuccess\r\nsuccesses\r\nsuccessful\r\nsuccessfully\r\nsuccessfulness\r\nsuccession\r\nsuccession's\r\nsuccessions\r\nsuccessive\r\nsuccessively\r\nsuccessiveness\r\nsuccessor\r\nsuccessor's\r\nsuccessors\r\nsuccinct\r\nsuccinctly\r\nsuccinctness\r\nsuccotash\r\nsuccour\r\nsuccoured\r\nsuccouring\r\nsuccours\r\nsuccubus\r\nsucculence\r\nsucculent\r\nsucculently\r\nsuccumb\r\nsuccumbed\r\nsuccumbing\r\nsuccumbs\r\nsuch\r\nsuchlike\r\nsuck\r\nsucked\r\nsucker\r\nsuckered\r\nsuckerfish\r\nsuckering\r\nsuckers\r\nsucking\r\nsuckle\r\nsuckled\r\nsuckles\r\nsuckling\r\nsucks\r\nsucrose\r\nsuction\r\nsudden\r\nsuddenly\r\nsuddenness\r\nsuds\r\nsudsier\r\nsudsy\r\nsue\r\nsued\r\nsuede\r\nsues\r\nsuet\r\nsuffer\r\nsufferable\r\nsufferance\r\nsuffered\r\nsufferer\r\nsufferers\r\nsuffering\r\nsufferings\r\nsuffers\r\nsuffice\r\nsufficed\r\nsuffices\r\nsufficiency\r\nsufficient\r\nsufficiently\r\nsufficing\r\nsuffix\r\nsuffixation\r\nsuffixed\r\nsuffixes\r\nsuffixing\r\nsuffocate\r\nsuffocated\r\nsuffocates\r\nsuffocating\r\nsuffocation\r\nsuffocative\r\nsuffragan\r\nsuffrage\r\nsuffragette\r\nsuffragettes\r\nsuffragist\r\nsuffragists\r\nsuffuse\r\nsuffused\r\nsuffuses\r\nsuffusing\r\nsuffusion\r\nsugar\r\nsugarcane\r\nsugared\r\nsugarhouse\r\nsugaring\r\nsugarloaf\r\nsugarplum\r\nsugars\r\nsugary\r\nsuggest\r\nsuggested\r\nsuggestibility\r\nsuggestible\r\nsuggesting\r\nsuggestion\r\nsuggestion's\r\nsuggestions\r\nsuggestive\r\nsuggestively\r\nsuggestiveness\r\nsuggests\r\nsuicidal\r\nsuicide\r\nsuicide's\r\nsuicides\r\nsuing\r\nsuit\r\nsuit's\r\nsuitability\r\nsuitable\r\nsuitableness\r\nsuitably\r\nsuitcase\r\nsuitcase's\r\nsuitcases\r\nsuite\r\nsuited\r\nsuites\r\nsuiting\r\nsuitor\r\nsuitor's\r\nsuitors\r\nsuits\r\nsukiyaki\r\nsulk\r\nsulked\r\nsulkies\r\nsulkily\r\nsulkiness\r\nsulking\r\nsulks\r\nsulky\r\nsullage\r\nsullen\r\nsullenly\r\nsullenness\r\nsullied\r\nsullies\r\nsully\r\nsullying\r\nsulphanilamide\r\nsulphate\r\nsulphates\r\nsulphide\r\nsulphite\r\nsulphonamide\r\nsulphur\r\nsulphured\r\nsulphuric\r\nsulphurous\r\nsultan\r\nsultan's\r\nsultana\r\nsultanate\r\nsultans\r\nsultrier\r\nsultrily\r\nsultriness\r\nsultry\r\nsum\r\nsum's\r\nsumac\r\nsumma\r\nsummand\r\nsummand's\r\nsummands\r\nsummaries\r\nsummarily\r\nsummarisation\r\nsummarisation's\r\nsummarisations\r\nsummarise\r\nsummarised\r\nsummariser\r\nsummarisers\r\nsummarises\r\nsummarising\r\nsummary\r\nsummary's\r\nsummated\r\nsummates\r\nsummating\r\nsummation\r\nsummation's\r\nsummations\r\nsummed\r\nsummer\r\nsummer's\r\nsummered\r\nsummerhouse\r\nsummering\r\nsummers\r\nsummersault\r\nsummertime\r\nsummerweight\r\nsummerwood\r\nsummery\r\nsumming\r\nsummit\r\nsummitry\r\nsummon\r\nsummoned\r\nsummoning\r\nsummons\r\nsummonses\r\nsump\r\nsumptuary\r\nsumptuous\r\nsumptuously\r\nsumptuousness\r\nsums\r\nsun\r\nsun's\r\nsunbaked\r\nsunbath\r\nsunbathe\r\nsunbather\r\nsunbeam\r\nsunbeam's\r\nsunbeams\r\nsunbird\r\nsunbonnet\r\nsunbow\r\nsunburn\r\nsunburnt\r\nsunburst\r\nsunbursts\r\nsundae\r\nsundaes\r\nsunder\r\nsundered\r\nsundering\r\nsunders\r\nsundew\r\nsundial\r\nsundials\r\nsundog\r\nsundown\r\nsundowner\r\nsundowners\r\nsundress\r\nsundresses\r\nsundries\r\nsundry\r\nsunfish\r\nsunflower\r\nsung\r\nsunglass\r\nsunglasses\r\nsunglow\r\nsunhat\r\nsunk\r\nsunken\r\nsunlamp\r\nsunless\r\nsunlight\r\nsunlit\r\nsunned\r\nsunnier\r\nsunning\r\nsunny\r\nsunray\r\nsunrise\r\nsunrises\r\nsunroof\r\nsuns\r\nsunscald\r\nsunscreen\r\nsunscreen's\r\nsunscreens\r\nsunset\r\nsunsets\r\nsunshade\r\nsunshades\r\nsunshine\r\nsunshiny\r\nsunspot\r\nsunstroke\r\nsuntan\r\nsuntanned\r\nsuntrap\r\nsunup\r\nsunward\r\nsunwards\r\nsup\r\nsuper\r\nsuperabundance\r\nsuperabundant\r\nsuperabundantly\r\nsuperannuate\r\nsuperannuated\r\nsuperb\r\nsuperbly\r\nsupercargo\r\nsupercharge\r\nsupercharger\r\nsupercilious\r\nsuperciliously\r\nsuperciliousness\r\nsupercomputer\r\nsupercomputer's\r\nsupercomputers\r\nsupercomputing\r\nsuperconductivity\r\nsuperconductor\r\nsuperconductors\r\nsupercritical\r\nsuperego\r\nsuperego's\r\nsuperegos\r\nsupererogation\r\nsupererogatory\r\nsuperficial\r\nsuperficiality\r\nsuperficially\r\nsuperficies\r\nsuperfine\r\nsuperfluities\r\nsuperfluity\r\nsuperfluity's\r\nsuperfluous\r\nsuperfluously\r\nsuperheat\r\nsuperheats\r\nsuperhero\r\nsuperhet\r\nsuperheterodyne\r\nsuperhighway\r\nsuperhighways\r\nsuperhuman\r\nsuperhumanly\r\nsuperimpose\r\nsuperimposed\r\nsuperimposes\r\nsuperimposing\r\nsuperimposition\r\nsuperintend\r\nsuperintendence\r\nsuperintendent\r\nsuperintendent's\r\nsuperintendents\r\nsuperior\r\nsuperior's\r\nsuperiority\r\nsuperiorly\r\nsuperiors\r\nsuperlative\r\nsuperlatively\r\nsuperlatives\r\nsuperlunary\r\nsuperman\r\nsupermarket\r\nsupermarket's\r\nsupermarkets\r\nsupermodel\r\nsupermodels\r\nsupernal\r\nsupernatant\r\nsupernatural\r\nsupernaturalism\r\nsupernaturally\r\nsupernormal\r\nsupernova\r\nsupernova's\r\nsupernovae\r\nsupernovas\r\nsupernumerary\r\nsuperpose\r\nsuperposed\r\nsuperposes\r\nsuperposing\r\nsuperposition\r\nsuperpower\r\nsuperpowers\r\nsupersaturate\r\nsupersaturated\r\nsuperscript\r\nsuperscripted\r\nsuperscripting\r\nsuperscription\r\nsuperscripts\r\nsupersede\r\nsuperseded\r\nsupersedes\r\nsuperseding\r\nsupersensitive\r\nsuperset\r\nsuperset's\r\nsupersets\r\nsupersonic\r\nsupersonically\r\nsupersonics\r\nsuperstar\r\nsuperstition\r\nsuperstition's\r\nsuperstitions\r\nsuperstitious\r\nsuperstitiously\r\nsuperstructure\r\nsuperstructures\r\nsupertonic\r\nsupervene\r\nsupervened\r\nsupervise\r\nsupervised\r\nsupervisee\r\nsupervises\r\nsupervising\r\nsupervision\r\nsupervisions\r\nsupervisor\r\nsupervisor's\r\nsupervisors\r\nsupervisory\r\nsupine\r\nsupinely\r\nsupper\r\nsupper's\r\nsuppers\r\nsupping\r\nsupplant\r\nsupplanted\r\nsupplanting\r\nsupplants\r\nsupple\r\nsupplely\r\nsupplement\r\nsupplemental\r\nsupplementary\r\nsupplementation\r\nsupplemented\r\nsupplementing\r\nsupplements\r\nsuppleness\r\nsuppler\r\nsuppliant\r\nsuppliantly\r\nsupplicant\r\nsupplicant's\r\nsupplicants\r\nsupplicate\r\nsupplicating\r\nsupplication\r\nsupplied\r\nsupplier\r\nsupplier's\r\nsuppliers\r\nsupplies\r\nsupply\r\nsupply's\r\nsupplying\r\nsupport\r\nsupportability\r\nsupportable\r\nsupportably\r\nsupported\r\nsupporter\r\nsupporters\r\nsupporting\r\nsupportive\r\nsupportively\r\nsupports\r\nsupposable\r\nsuppose\r\nsupposed\r\nsupposedly\r\nsupposes\r\nsupposing\r\nsupposition\r\nsupposition's\r\nsuppositional\r\nsuppositions\r\nsuppositious\r\nsupposititious\r\nsuppositories\r\nsuppository\r\nsuppress\r\nsuppressant\r\nsuppressed\r\nsuppresses\r\nsuppressible\r\nsuppressing\r\nsuppression\r\nsuppressions\r\nsuppressive\r\nsuppressor\r\nsuppressors\r\nsuppurate\r\nsuppuration\r\nsupra\r\nsupraliminal\r\nsupranational\r\nsuprarenal\r\nsupremacist\r\nsupremacy\r\nsupreme\r\nsupremely\r\nsupremo\r\nsurcease\r\nsurcharge\r\nsurcharged\r\nsurcharges\r\nsurcharging\r\nsurd\r\nsure\r\nsure-fire\r\nsurefooted\r\nsurefootedness\r\nsurely\r\nsureness\r\nsurer\r\nsurest\r\nsureties\r\nsurety\r\nsurf\r\nsurface\r\nsurfaced\r\nsurfaces\r\nsurfacing\r\nsurfactant\r\nsurfactants\r\nsurfbird\r\nsurfbirds\r\nsurfboard\r\nsurfboarder\r\nsurfboards\r\nsurfboat\r\nsurfboats\r\nsurfcasting\r\nsurfeit\r\nsurfeited\r\nsurfeits\r\nsurfer\r\nsurfer's\r\nsurfers\r\nsurfing\r\nsurfperch\r\nsurge\r\nsurged\r\nsurgeon\r\nsurgeon's\r\nsurgeonfish\r\nsurgeons\r\nsurgeries\r\nsurgery\r\nsurges\r\nsurgical\r\nsurgically\r\nsurging\r\nsurlier\r\nsurliness\r\nsurly\r\nsurmise\r\nsurmised\r\nsurmises\r\nsurmising\r\nsurmount\r\nsurmountable\r\nsurmounted\r\nsurmounting\r\nsurmounts\r\nsurname\r\nsurname's\r\nsurnamed\r\nsurnames\r\nsurpass\r\nsurpassed\r\nsurpasses\r\nsurpassing\r\nsurpassingly\r\nsurplice\r\nsurplus\r\nsurplus's\r\nsurpluses\r\nsurprise\r\nsurprise's\r\nsurprised\r\nsurprises\r\nsurprising\r\nsurprisingly\r\nsurreal\r\nsurrealism\r\nsurrealist\r\nsurrealistic\r\nsurrealistically\r\nsurrealists\r\nsurrender\r\nsurrendered\r\nsurrendering\r\nsurrenders\r\nsurreptitious\r\nsurreptitiously\r\nsurreptitiousness\r\nsurrey\r\nsurreys\r\nsurrogate\r\nsurrogate's\r\nsurrogates\r\nsurround\r\nsurrounded\r\nsurrounding\r\nsurroundings\r\nsurrounds\r\nsurtax\r\nsurveillance\r\nsurveillances\r\nsurvey\r\nsurveyed\r\nsurveying\r\nsurveyor\r\nsurveyor's\r\nsurveyors\r\nsurveys\r\nsurvivability\r\nsurvivable\r\nsurvival\r\nsurvivalist\r\nsurvivalists\r\nsurvivals\r\nsurvive\r\nsurvived\r\nsurvives\r\nsurviving\r\nsurvivor\r\nsurvivor's\r\nsurvivors\r\nsurvivorship\r\nsusceptance\r\nsusceptibility\r\nsusceptible\r\nsusceptive\r\nsushi\r\nsuspect\r\nsuspected\r\nsuspecting\r\nsuspects\r\nsuspend\r\nsuspended\r\nsuspender\r\nsuspender's\r\nsuspenders\r\nsuspending\r\nsuspends\r\nsuspense\r\nsuspenseful\r\nsuspension\r\nsuspensions\r\nsuspensor\r\nsuspicion\r\nsuspicion's\r\nsuspicions\r\nsuspicious\r\nsuspiciously\r\nsuspiciousness\r\nsuspiration\r\nsuspire\r\nsuspired\r\nsuspiring\r\nsuss\r\nsustain\r\nsustainable\r\nsustained\r\nsustaining\r\nsustains\r\nsustenance\r\nsustentation\r\nsustentative\r\nsustention\r\nsusurration\r\nsusurrus\r\nsutra\r\nsuttee\r\nsuture\r\nsutured\r\nsutures\r\nsuturing\r\nsuzerain\r\nsuzerainty\r\nsvelte\r\nsveltely\r\nswab\r\nswabbed\r\nswabbing\r\nswabs\r\nswaddle\r\nswaddled\r\nswaddling\r\nswag\r\nswage\r\nswagger\r\nswaggered\r\nswaggering\r\nswaging\r\nswagman\r\nswain\r\nswain's\r\nswains\r\nswale\r\nswallow\r\nswallowed\r\nswallowing\r\nswallows\r\nswallowtail\r\nswam\r\nswami\r\nswamp\r\nswamped\r\nswampier\r\nswamping\r\nswampland\r\nswampland's\r\nswamplands\r\nswamps\r\nswampy\r\nswan\r\nswan's\r\nswank\r\nswanker\r\nswankier\r\nswanky\r\nswanlike\r\nswans\r\nswansdown\r\nswanskin\r\nswap\r\nswappable\r\nswapped\r\nswapper\r\nswapper's\r\nswappers\r\nswapping\r\nswaps\r\nsward\r\nswarf\r\nswarm\r\nswarmed\r\nswarming\r\nswarms\r\nswart\r\nswarthier\r\nswarthiness\r\nswarthy\r\nswash\r\nswashbuckler\r\nswashbuckling\r\nswastika\r\nswat\r\nswatch\r\nswatches\r\nswath\r\nswath's\r\nswathe\r\nswathed\r\nswathes\r\nswathing\r\nswats\r\nswatted\r\nswatter\r\nswatting\r\nsway\r\nswayback\r\nswaybacked\r\nswayed\r\nswaying\r\nsways\r\nswear\r\nswearing\r\nswears\r\nswearword\r\nsweat\r\nsweatband\r\nsweatbox\r\nsweated\r\nsweater\r\nsweaters\r\nsweatier\r\nsweatiness\r\nsweating\r\nsweatpants\r\nsweats\r\nsweatshirt\r\nsweatshop\r\nsweatshop's\r\nsweatshops\r\nsweaty\r\nsweep\r\nsweepback\r\nsweeper\r\nsweepers\r\nsweeping\r\nsweepingly\r\nsweepings\r\nsweeps\r\nsweepstake\r\nsweepstakes\r\nsweet\r\nsweetbread\r\nsweetbread's\r\nsweetbreads\r\nsweetbrier\r\nsweeten\r\nsweetened\r\nsweetener\r\nsweeteners\r\nsweetening\r\nsweetens\r\nsweeter\r\nsweetest\r\nsweetheart\r\nsweetheart's\r\nsweethearts\r\nsweetie\r\nsweetie's\r\nsweeties\r\nsweetish\r\nsweetly\r\nsweetmeat\r\nsweetness\r\nsweets\r\nsweetshop\r\nsweetsop\r\nswell\r\nswelled\r\nswellhead\r\nswellheaded\r\nswelling\r\nswellings\r\nswells\r\nswelter\r\nsweltered\r\nsweltering\r\nswelteringly\r\nswept\r\nsweptback\r\nswerve\r\nswerved\r\nswerves\r\nswerving\r\nswift\r\nswifter\r\nswiftest\r\nswiftly\r\nswiftness\r\nswig\r\nswigging\r\nswill\r\nswim\r\nswimmer\r\nswimmer's\r\nswimmeret\r\nswimmers\r\nswimming\r\nswimmingly\r\nswims\r\nswimsuit\r\nswimsuit's\r\nswimsuits\r\nswindle\r\nswindled\r\nswindler\r\nswindles\r\nswindling\r\nswine\r\nswineherd\r\nswinepox\r\nswing\r\nswingeing\r\nswinger\r\nswingers\r\nswingier\r\nswinging\r\nswings\r\nswingy\r\nswinish\r\nswinishly\r\nswinishness\r\nswipe\r\nswiped\r\nswipes\r\nswiping\r\nswirl\r\nswirled\r\nswirling\r\nswirls\r\nswish\r\nswished\r\nswishier\r\nswishy\r\nswitch\r\nswitch's\r\nswitchback\r\nswitchback's\r\nswitchbacks\r\nswitchblade\r\nswitchboard\r\nswitchboard's\r\nswitchboards\r\nswitched\r\nswitcher\r\nswitchers\r\nswitches\r\nswitchgear\r\nswitching\r\nswitchman\r\nswitchmen\r\nswitchmen's\r\nswitchyard\r\nswivel\r\nswivelled\r\nswivelling\r\nswivels\r\nswizzle\r\nswollen\r\nswoon\r\nswooned\r\nswooning\r\nswoons\r\nswoop\r\nswooped\r\nswooping\r\nswoops\r\nswoosh\r\nsword\r\nsword's\r\nswordbill\r\nswordfight\r\nswordfight's\r\nswordfights\r\nswordfish\r\nswordplay\r\nswords\r\nswordsman\r\nswordsmanship\r\nswordsmen\r\nswordstick\r\nswordsticks\r\nswordtail\r\nswore\r\nsworn\r\nswot\r\nswots\r\nswotted\r\nswotting\r\nswum\r\nswung\r\nsybarite\r\nsycamore\r\nsycophancy\r\nsycophant\r\nsycophantic\r\nsycophantically\r\nsycophantism\r\nsycophants\r\nsyllabi\r\nsyllabic\r\nsyllabically\r\nsyllabicate\r\nsyllabication\r\nsyllabicity\r\nsyllabification\r\nsyllabify\r\nsyllable\r\nsyllable's\r\nsyllables\r\nsyllabub\r\nsyllabus\r\nsyllogism\r\nsyllogism's\r\nsyllogisms\r\nsyllogistic\r\nsyllogistically\r\nsylph\r\nsylphlike\r\nsylvan\r\nsym\r\nsymbiosis\r\nsymbiotic\r\nsymbiotically\r\nsymbol\r\nsymbol's\r\nsymbolic\r\nsymbolical\r\nsymbolically\r\nsymbolisation\r\nsymbolisation's\r\nsymbolisations\r\nsymbolise\r\nsymbolised\r\nsymbolises\r\nsymbolising\r\nsymbolism\r\nsymbolisms\r\nsymbolist\r\nsymbolists\r\nsymbols\r\nsymmetric\r\nsymmetrical\r\nsymmetrically\r\nsymmetries\r\nsymmetry\r\nsymmetry's\r\nsympathetic\r\nsympathetically\r\nsympathies\r\nsympathise\r\nsympathised\r\nsympathiser\r\nsympathisers\r\nsympathises\r\nsympathising\r\nsympathy\r\nsympathy's\r\nsympatric\r\nsymphonic\r\nsymphonies\r\nsymphony\r\nsymphony's\r\nsymposia\r\nsymposium\r\nsymposiums\r\nsymptom\r\nsymptom's\r\nsymptomatic\r\nsymptomatically\r\nsymptoms\r\nsynagogue\r\nsynagogues\r\nsynapse\r\nsynapse's\r\nsynapses\r\nsynaptic\r\nsync\r\nsynch\r\nsynching\r\nsynchrocyclotron\r\nsynchroflash\r\nsynchromesh\r\nsynchronic\r\nsynchronically\r\nsynchronisation\r\nsynchronisation's\r\nsynchronisations\r\nsynchronise\r\nsynchronised\r\nsynchroniser\r\nsynchronisers\r\nsynchronises\r\nsynchronising\r\nsynchronism\r\nsynchronistic\r\nsynchronous\r\nsynchronously\r\nsynchrony\r\nsynchrotron\r\nsyncing\r\nsynclinal\r\nsyncline\r\nsyncopate\r\nsyncopated\r\nsyncopation\r\nsyncope\r\nsyncretism\r\nsyncretistic\r\nsyndic\r\nsyndicalism\r\nsyndicate\r\nsyndicated\r\nsyndicates\r\nsyndicating\r\nsyndication\r\nsyndics\r\nsyndrome\r\nsyndrome's\r\nsyndromes\r\nsynecdoche\r\nsynergetic\r\nsynergic\r\nsynergism\r\nsynergist\r\nsynergistic\r\nsynergistically\r\nsynergy\r\nsynod\r\nsynods\r\nsynonym\r\nsynonym's\r\nsynonymous\r\nsynonymously\r\nsynonyms\r\nsynonymy\r\nsynopses\r\nsynopsis\r\nsynopsise\r\nsynoptic\r\nsynoptically\r\nsyntactic\r\nsyntactical\r\nsyntactically\r\nsyntax\r\nsyntaxes\r\nsyntheses\r\nsynthesis\r\nsynthesise\r\nsynthesised\r\nsynthesiser\r\nsynthesisers\r\nsynthesises\r\nsynthesising\r\nsynthetic\r\nsynthetically\r\nsynthetics\r\nsyphilis\r\nsyphilitic\r\nsyringe\r\nsyringed\r\nsyringes\r\nsyringing\r\nsyrup\r\nsyrupy\r\nsys\r\nsystem\r\nsystem's\r\nsystematic\r\nsystematically\r\nsystematisation\r\nsystematisation's\r\nsystematisations\r\nsystematise\r\nsystematised\r\nsystematises\r\nsystematising\r\nsystemic\r\nsystemically\r\nsystemisation\r\nsystemisation's\r\nsystemisations\r\nsystemise\r\nsystemises\r\nsystems\r\nsystole\r\nsystolic\r\ntab\r\ntabard\r\ntabbed\r\ntabbies\r\ntabbing\r\ntabby\r\ntabernacle\r\ntabernacle's\r\ntabernacles\r\ntablature\r\ntable\r\ntableau\r\ntableau's\r\ntableaux\r\ntablecloth\r\ntablecloths\r\ntabled\r\ntableland\r\ntables\r\ntablespoon\r\ntablespoon's\r\ntablespoonful\r\ntablespoonful's\r\ntablespoonfuls\r\ntablespoons\r\ntablet\r\ntablet's\r\ntabletop\r\ntabletop's\r\ntabletops\r\ntablets\r\ntableware\r\ntabling\r\ntabloid\r\ntabloids\r\ntaboo\r\ntaboo's\r\ntaboos\r\ntabor\r\ntabors\r\ntabs\r\ntabular\r\ntabularisation\r\ntabularisation's\r\ntabularisations\r\ntabularise\r\ntabulate\r\ntabulated\r\ntabulates\r\ntabulating\r\ntabulation\r\ntabulations\r\ntabulator\r\ntabulator's\r\ntabulators\r\ntachograph\r\ntachometer\r\ntachometer's\r\ntachometers\r\ntachometry\r\ntacit\r\ntacitly\r\ntaciturn\r\ntaciturnity\r\ntack\r\ntacked\r\ntackier\r\ntackily\r\ntackiness\r\ntacking\r\ntackle\r\ntackle's\r\ntackled\r\ntackler\r\ntackles\r\ntackling\r\ntacks\r\ntacky\r\ntaco\r\ntaconite\r\ntacos\r\ntact\r\ntactful\r\ntactfully\r\ntactfulness\r\ntactic\r\ntactical\r\ntactically\r\ntactician\r\ntactics\r\ntactile\r\ntactilely\r\ntactility\r\ntactless\r\ntactlessly\r\ntactlessness\r\ntactual\r\ntactually\r\ntad\r\ntadpole\r\ntadpoles\r\ntaffeta\r\ntaffies\r\ntaffy\r\ntag\r\ntag's\r\ntagalong\r\ntagged\r\ntagging\r\ntags\r\ntaiga\r\ntail\r\ntailback\r\ntailboard\r\ntailbone\r\ntailcoat\r\ntailed\r\ntailgate\r\ntailgated\r\ntailgater\r\ntailgating\r\ntailing\r\ntailings\r\ntailless\r\ntaillight\r\ntaillight's\r\ntaillights\r\ntailor\r\ntailorbird\r\ntailored\r\ntailoring\r\ntailors\r\ntailpiece\r\ntailpipe\r\ntailplane\r\ntailrace\r\ntails\r\ntailskid\r\ntailspin\r\ntailspin's\r\ntailspins\r\ntailstock\r\ntailwind\r\ntailwind's\r\ntailwinds\r\ntaint\r\ntainted\r\ntaintless\r\ntaints\r\ntake\r\ntakeaway\r\ntakedown\r\ntaken\r\ntakeoff\r\ntakeoffs\r\ntakeout\r\ntakeover\r\ntakeovers\r\ntaker\r\ntakers\r\ntakes\r\ntaking\r\ntakings\r\ntalc\r\ntalcum\r\ntale\r\ntale's\r\ntalebearer\r\ntalent\r\ntalented\r\ntalents\r\ntales\r\ntalisman\r\ntalismanic\r\ntalk\r\ntalkative\r\ntalkatively\r\ntalkativeness\r\ntalked\r\ntalker\r\ntalkers\r\ntalkie\r\ntalking\r\ntalks\r\ntalky\r\ntall\r\ntallboy\r\ntaller\r\ntallest\r\ntallied\r\ntallies\r\ntallness\r\ntallow\r\ntally\r\ntallyho\r\ntallying\r\ntallyman\r\ntalmudic\r\ntalon\r\ntalons\r\ntalus\r\ntam\r\ntamale\r\ntamarack\r\ntamarind\r\ntamarisk\r\ntambour\r\ntame\r\ntameable\r\ntamed\r\ntamely\r\ntameness\r\ntamer\r\ntames\r\ntamest\r\ntaming\r\ntamp\r\ntamper\r\ntampered\r\ntampering\r\ntamperproof\r\ntampers\r\ntamping\r\ntampon\r\ntan\r\ntanager\r\ntanbark\r\ntandem\r\ntang\r\ntangelo\r\ntangency\r\ntangent\r\ntangent's\r\ntangential\r\ntangentially\r\ntangents\r\ntangerine\r\ntangibility\r\ntangible\r\ntangibly\r\ntangier\r\ntangle\r\ntangled\r\ntangles\r\ntangling\r\ntango\r\ntangos\r\ntangy\r\ntank\r\ntankard\r\ntanked\r\ntanker\r\ntankers\r\ntanking\r\ntanks\r\ntanned\r\ntanner\r\ntanner's\r\ntanners\r\ntannery\r\ntannest\r\ntannic\r\ntannin\r\ntanning\r\ntans\r\ntansies\r\ntansy\r\ntantalisation\r\ntantalisation's\r\ntantalisations\r\ntantalise\r\ntantalised\r\ntantaliser\r\ntantalisers\r\ntantalises\r\ntantalising\r\ntantalisingly\r\ntantalite\r\ntantalum\r\ntantamount\r\ntantrum\r\ntantrum's\r\ntantrums\r\ntap\r\ntap's\r\ntape\r\ntaped\r\ntapeline\r\ntaper\r\ntapered\r\ntapering\r\ntapers\r\ntapes\r\ntapestries\r\ntapestry\r\ntapestry's\r\ntapeworm\r\ntaping\r\ntapings\r\ntapioca\r\ntapir\r\ntapirs\r\ntapped\r\ntappet\r\ntappets\r\ntapping\r\ntaproom\r\ntaprooms\r\ntaproot\r\ntaproot's\r\ntaproots\r\ntaps\r\ntapster\r\ntapsters\r\ntar\r\ntarantella\r\ntarantula\r\ntarantulas\r\ntarbush\r\ntardier\r\ntardily\r\ntardiness\r\ntardy\r\ntare\r\ntarget\r\ntargeted\r\ntargeting\r\ntargets\r\ntariff\r\ntariff's\r\ntariffs\r\ntarlatan\r\ntarmac\r\ntarmacadam\r\ntarn\r\ntarnish\r\ntarnished\r\ntarnishes\r\ntarnishing\r\ntaro\r\ntaros\r\ntarot\r\ntarp\r\ntarpaper\r\ntarpapered\r\ntarpaulin\r\ntarpaulins\r\ntarpon\r\ntarpons\r\ntarragon\r\ntarred\r\ntarriance\r\ntarried\r\ntarries\r\ntarring\r\ntarry\r\ntarrying\r\ntars\r\ntarsal\r\ntarsi\r\ntarsier\r\ntarsus\r\ntart\r\ntartan\r\ntartar\r\ntartlet\r\ntartlets\r\ntartly\r\ntartness\r\ntarts\r\ntask\r\ntasked\r\ntasking\r\ntaskmaster\r\ntaskmistress\r\ntasks\r\ntassel\r\ntassel's\r\ntasselled\r\ntaste\r\ntasted\r\ntasteful\r\ntastefully\r\ntastefulness\r\ntasteless\r\ntastelessly\r\ntastelessness\r\ntastemaker\r\ntaster\r\ntasters\r\ntastes\r\ntastier\r\ntastily\r\ntastiness\r\ntasting\r\ntasty\r\ntat\r\ntater\r\ntatted\r\ntatter\r\ntatterdemalion\r\ntattered\r\ntatting\r\ntattle\r\ntattled\r\ntattler\r\ntattles\r\ntattletale\r\ntattling\r\ntattoo\r\ntattooed\r\ntattoos\r\ntatty\r\ntaught\r\ntaunt\r\ntaunted\r\ntaunting\r\ntauntingly\r\ntaunts\r\ntaupe\r\ntaut\r\ntauten\r\ntautened\r\ntautening\r\ntautly\r\ntautness\r\ntautological\r\ntautologically\r\ntautologies\r\ntautology\r\ntautology's\r\ntavern\r\ntavern's\r\ntaverna\r\ntaverns\r\ntaw\r\ntawdrier\r\ntawdrily\r\ntawdriness\r\ntawdry\r\ntawnier\r\ntawny\r\ntaws\r\ntawse\r\ntax\r\ntaxability\r\ntaxable\r\ntaxably\r\ntaxation\r\ntaxed\r\ntaxes\r\ntaxi\r\ntaxi's\r\ntaxicab\r\ntaxicab's\r\ntaxicabs\r\ntaxidermist\r\ntaxidermist's\r\ntaxidermists\r\ntaxidermy\r\ntaxied\r\ntaxies\r\ntaxiing\r\ntaximeter\r\ntaximeter's\r\ntaximeters\r\ntaxing\r\ntaxingly\r\ntaxis\r\ntaxiway\r\ntaxiway's\r\ntaxiways\r\ntaxonomic\r\ntaxonomically\r\ntaxonomist\r\ntaxonomist's\r\ntaxonomists\r\ntaxonomy\r\ntaxpayer\r\ntaxpayer's\r\ntaxpayers\r\ntaxpaying\r\ntea\r\nteacake\r\nteacart\r\nteach\r\nteachable\r\nteacher\r\nteacher's\r\nteachers\r\nteaches\r\nteaching\r\nteachings\r\nteacup\r\nteacupful\r\nteahouse\r\nteahouses\r\nteak\r\nteak's\r\nteakettle\r\nteaks\r\nteakwood\r\nteal\r\nteals\r\nteam\r\nteam's\r\nteamed\r\nteaming\r\nteam-mate\r\nteams\r\nteamster\r\nteamsters\r\nteamwork\r\nteapot\r\nteapots\r\ntear\r\ntear's\r\nteardown\r\nteardrop\r\nteardrops\r\ntearful\r\ntearfully\r\ntearfulness\r\nteargas\r\ntearing\r\ntearjerker\r\ntearless\r\ntearlessly\r\ntearoom\r\ntearooms\r\ntears\r\ntearstain\r\ntearstained\r\nteary\r\nteas\r\ntease\r\nteased\r\nteasel\r\nteaselled\r\nteaselling\r\nteaser\r\nteases\r\nteashop\r\nteasing\r\nteasingly\r\nteaspoon\r\nteaspoon's\r\nteaspoonful\r\nteaspoonful's\r\nteaspoonfuls\r\nteaspoons\r\nteat\r\nteatime\r\nteats\r\ntech\r\ntechnetium\r\ntechnical\r\ntechnicalities\r\ntechnicality\r\ntechnicality's\r\ntechnically\r\ntechnician\r\ntechnician's\r\ntechnicians\r\ntechnique\r\ntechnique's\r\ntechniques\r\ntechnocracy\r\ntechnocrat\r\ntechnocratic\r\ntechnologic\r\ntechnological\r\ntechnologically\r\ntechnologies\r\ntechnologist\r\ntechnologist's\r\ntechnologists\r\ntechnology\r\ntechnology's\r\ntectonic\r\ntectonics\r\ntedious\r\ntediously\r\ntediousness\r\ntedium\r\ntee\r\nteeing\r\nteem\r\nteemed\r\nteeming\r\nteems\r\nteen\r\nteenage\r\nteenaged\r\nteenager\r\nteenagers\r\nteenier\r\nteens\r\nteensier\r\nteensy\r\nteeny\r\nteenybopper\r\ntees\r\nteeter\r\nteeterboard\r\nteetering\r\nteeth\r\nteethe\r\nteethed\r\nteethes\r\nteething\r\nteetotal\r\nteetotalism\r\nteetotaller\r\ntegument\r\ntektite\r\ntektites\r\ntelecast\r\ntelecaster\r\ntelecom\r\ntelecommunicate\r\ntelecommunication\r\ntelecommunications\r\nteleconference\r\nteleconference's\r\nteleconferenced\r\nteleconferences\r\nteleconferencing\r\ntelegram\r\ntelegram's\r\ntelegrams\r\ntelegraph\r\ntelegraphed\r\ntelegrapher\r\ntelegraphers\r\ntelegraphic\r\ntelegraphically\r\ntelegraphing\r\ntelegraphs\r\ntelegraphy\r\ntelekinesis\r\ntelekinetic\r\ntelekinetically\r\ntelemeter\r\ntelemeter's\r\ntelemeters\r\ntelemetric\r\ntelemetrically\r\ntelemetry\r\nteleological\r\nteleology\r\ntelepathic\r\ntelepathically\r\ntelepathy\r\ntelephone\r\ntelephoned\r\ntelephones\r\ntelephonic\r\ntelephonically\r\ntelephoning\r\ntelephonist\r\ntelephonists\r\ntelephony\r\ntelephoto\r\ntelephotographic\r\ntelephotography\r\nteleplay\r\nteleprinter\r\nteleprocessing\r\nteleprompter\r\ntelescope\r\ntelescoped\r\ntelescopes\r\ntelescopic\r\ntelescopically\r\ntelescoping\r\nteletext\r\ntelethon\r\nteletype\r\nteletype's\r\nteletypes\r\nteletypewriter\r\ntelevise\r\ntelevised\r\ntelevises\r\ntelevising\r\ntelevision\r\ntelevisions\r\ntelexed\r\ntelexes\r\ntelexing\r\ntell\r\nteller\r\ntellers\r\ntelling\r\ntellingly\r\ntells\r\ntelltale\r\ntelltale's\r\ntelltales\r\ntellurian\r\ntelluric\r\ntelluride\r\ntellurium\r\ntelly\r\ntelnet\r\ntelnets\r\ntemblor\r\ntemerarious\r\ntemerariously\r\ntemerity\r\ntemp\r\ntemper\r\ntempera\r\ntemperament\r\ntemperamental\r\ntemperamentally\r\ntemperaments\r\ntemperance\r\ntemperate\r\ntemperately\r\ntemperateness\r\ntemperature\r\ntemperature's\r\ntemperatures\r\ntempered\r\ntempering\r\ntempers\r\ntempest\r\ntempests\r\ntempestuous\r\ntempestuously\r\ntempestuousness\r\ntempi\r\ntemplate\r\ntemplate's\r\ntemplates\r\ntemple\r\ntemple's\r\ntemples\r\ntempo\r\ntemporal\r\ntemporality\r\ntemporally\r\ntemporaries\r\ntemporarily\r\ntemporary\r\ntemporisation\r\ntemporisation's\r\ntemporisations\r\ntemporise\r\ntemporised\r\ntemporiser\r\ntemporiser's\r\ntemporisers\r\ntemporises\r\ntemporising\r\ntempos\r\ntempt\r\ntemptation\r\ntemptation's\r\ntemptations\r\ntempted\r\ntempter\r\ntempters\r\ntempting\r\ntemptingly\r\ntemptress\r\ntempts\r\ntempura\r\nten\r\nten's\r\ntenability\r\ntenable\r\ntenably\r\ntenacious\r\ntenaciously\r\ntenaciousness\r\ntenacity\r\ntenancies\r\ntenancy\r\ntenant\r\ntenant's\r\ntenantable\r\ntenantless\r\ntenants\r\ntend\r\ntended\r\ntendencies\r\ntendency\r\ntendentious\r\ntendentiously\r\ntendentiousness\r\ntender\r\ntendered\r\ntenderfoot\r\ntendering\r\ntenderisation\r\ntenderise\r\ntenderised\r\ntenderiser\r\ntenderises\r\ntenderising\r\ntenderloin\r\ntenderly\r\ntenderness\r\ntenders\r\ntending\r\ntendon\r\ntendons\r\ntendril\r\ntendrils\r\ntends\r\ntenebrous\r\ntenement\r\ntenement's\r\ntenements\r\ntenet\r\ntenets\r\ntenfold\r\ntennis\r\ntenor\r\ntenor's\r\ntenors\r\ntenpin\r\ntenpins\r\ntens\r\ntense\r\ntensed\r\ntensely\r\ntenseness\r\ntenser\r\ntenses\r\ntensest\r\ntensile\r\ntensing\r\ntension\r\ntensional\r\ntensioned\r\ntensioning\r\ntensionless\r\ntensions\r\ntensor\r\ntensor's\r\ntensors\r\ntent\r\ntentacle\r\ntentacles\r\ntentative\r\ntentatively\r\ntentativeness\r\ntented\r\ntenterhook\r\ntenterhooks\r\ntenth\r\ntenths\r\ntenting\r\ntentmaker\r\ntents\r\ntenuous\r\ntenuously\r\ntenuousness\r\ntenure\r\ntenured\r\ntenures\r\ntepee\r\ntepees\r\ntepid\r\ntepidity\r\ntepidly\r\ntepidness\r\ntequila\r\ntequila's\r\nteratology\r\nterbium\r\ntercentenary\r\ntercentennial\r\ntergiversate\r\ntergiversation\r\nteriyaki\r\nterm\r\ntermagant\r\ntermed\r\nterminable\r\nterminal\r\nterminal's\r\nterminally\r\nterminals\r\nterminate\r\nterminated\r\nterminates\r\nterminating\r\ntermination\r\nterminations\r\nterminative\r\nterminator\r\nterminator's\r\nterminators\r\nterming\r\ntermini\r\nterminological\r\nterminologically\r\nterminologies\r\nterminology\r\nterminus\r\ntermite\r\ntermites\r\nterms\r\ntern\r\nternary\r\nternate\r\nterpsichorean\r\nterrace\r\nterraced\r\nterraces\r\nterracing\r\nterrain\r\nterrain's\r\nterrains\r\nterrapin\r\nterrapins\r\nterrarium\r\nterrazzo\r\nterrene\r\nterrestrial\r\nterrestrial's\r\nterrestrially\r\nterrestrials\r\nterrible\r\nterribleness\r\nterribly\r\nterrier\r\nterrier's\r\nterriers\r\nterries\r\nterrific\r\nterrifically\r\nterrified\r\nterrifies\r\nterrify\r\nterrifying\r\nterrifyingly\r\nterrine\r\nterritorial\r\nterritorialism\r\nterritoriality\r\nterritorially\r\nterritories\r\nterritory\r\nterritory's\r\nterror\r\nterror's\r\nterrorisation\r\nterrorisation's\r\nterrorisations\r\nterrorise\r\nterrorised\r\nterrorises\r\nterrorising\r\nterrorism\r\nterrorist\r\nterrorist's\r\nterrorists\r\nterrors\r\nterry\r\nterse\r\ntersely\r\nterseness\r\nterser\r\ntersest\r\ntertian\r\ntertiary\r\ntessellate\r\ntessellated\r\ntessellates\r\ntessellation\r\ntest\r\ntest's\r\ntestability\r\ntestable\r\ntestacy\r\ntestament\r\ntestament's\r\ntestamentary\r\ntestaments\r\ntestate\r\ntestator\r\ntestator's\r\ntestators\r\ntestatrix\r\ntestcross\r\ntested\r\ntester\r\ntester's\r\ntesters\r\ntestes\r\ntesticle\r\ntesticle's\r\ntesticles\r\ntesticular\r\ntestier\r\ntestified\r\ntestifier\r\ntestifiers\r\ntestifies\r\ntestify\r\ntestifying\r\ntestily\r\ntestimonial\r\ntestimonials\r\ntestimonies\r\ntestimony\r\ntestimony's\r\ntestiness\r\ntesting\r\ntestis\r\ntestosterone\r\ntests\r\ntesty\r\ntetanus\r\ntetchier\r\ntetchy\r\ntether\r\ntetherball\r\ntethered\r\ntethering\r\ntethers\r\ntetra\r\ntetrachloride\r\ntetracycline\r\ntetrad\r\ntetraethyl\r\ntetragonal\r\ntetrahedral\r\ntetrahedron\r\ntetrameter\r\ntetrarch\r\ntetravalent\r\ntext\r\ntext's\r\ntextbook\r\ntextbook's\r\ntextbooks\r\ntextile\r\ntextile's\r\ntextiles\r\ntexts\r\ntextual\r\ntextually\r\ntextural\r\ntexturally\r\ntexture\r\ntextured\r\ntextures\r\ntexturing\r\nthalamic\r\nthalamus\r\nthalassic\r\nthalidomide\r\nthallium\r\nthan\r\nthane\r\nthank\r\nthanked\r\nthankful\r\nthankfully\r\nthankfulness\r\nthanking\r\nthankless\r\nthanklessly\r\nthanklessness\r\nthanks\r\nthanksgiving\r\nthanksgiving's\r\nthanksgivings\r\nthankworthy\r\nthat\r\nthat'd\r\nthat'll\r\nthat's\r\nthatch\r\nthatched\r\nthatches\r\nthatching\r\nthaumaturgy\r\nthaw\r\nthawed\r\nthawing\r\nthaws\r\nthe\r\ntheatre\r\ntheatre's\r\ntheatregoer\r\ntheatregoer's\r\ntheatregoers\r\ntheatregoing\r\ntheatres\r\ntheatrical\r\ntheatricality\r\ntheatrically\r\ntheatricals\r\ntheatrics\r\ntheca\r\nthecae\r\nthee\r\ntheft\r\ntheft's\r\nthefts\r\ntheir\r\ntheirs\r\ntheism\r\ntheist\r\ntheist's\r\ntheistic\r\ntheistically\r\ntheists\r\nthem\r\nthematic\r\nthematically\r\ntheme\r\ntheme's\r\nthemes\r\nthemselves\r\nthen\r\nthence\r\nthenceforth\r\nthenceforward\r\nthenceforwards\r\ntheocracy\r\ntheocrat\r\ntheocratic\r\ntheologian\r\ntheologian's\r\ntheologians\r\ntheological\r\ntheologically\r\ntheologies\r\ntheologise\r\ntheologised\r\ntheologises\r\ntheologising\r\ntheology\r\ntheorem\r\ntheorem's\r\ntheorems\r\ntheoretic\r\ntheoretical\r\ntheoretically\r\ntheoretician\r\ntheoreticians\r\ntheories\r\ntheorisation\r\ntheorisation's\r\ntheorisations\r\ntheorise\r\ntheorised\r\ntheoriser\r\ntheorisers\r\ntheorises\r\ntheorising\r\ntheorist\r\ntheorist's\r\ntheorists\r\ntheory\r\ntheory's\r\ntheosophical\r\ntheosophist\r\ntheosophy\r\ntherapeutic\r\ntherapeutically\r\ntherapeutics\r\ntherapies\r\ntherapist\r\ntherapist's\r\ntherapists\r\ntherapy\r\ntherapy's\r\nthere\r\nthere'd\r\nthere'll\r\nthere's\r\nthereabout\r\nthereabouts\r\nthereafter\r\nthereat\r\nthereby\r\ntherefore\r\ntherein\r\nthereinafter\r\nthereof\r\nthereon\r\nthereto\r\ntheretofore\r\nthereunto\r\nthereupon\r\ntherewith\r\ntherewithal\r\nthermal\r\nthermally\r\nthermals\r\nthermion\r\nthermionic\r\nthermistor\r\nthermite\r\nthermo\r\nthermochemist\r\nthermocline\r\nthermocouple\r\nthermocouples\r\nthermodynamic\r\nthermodynamically\r\nthermodynamics\r\nthermoelectric\r\nthermoelectricity\r\nthermoform\r\nthermoformed\r\nthermoforming\r\nthermogram\r\nthermograph\r\nthermoluminescence\r\nthermoluminescent\r\nthermometer\r\nthermometer's\r\nthermometers\r\nthermometric\r\nthermometry\r\nthermonuclear\r\nthermopile\r\nthermoplastic\r\nthermoregulation\r\nthermoregulatory\r\nthermos\r\nthermosetting\r\nthermosphere\r\nthermostat\r\nthermostat's\r\nthermostatic\r\nthermostatically\r\nthermostats\r\nthermosyphon\r\nthesauri\r\nthesaurus\r\nthese\r\ntheses\r\nthesis\r\nthespian\r\nthespians\r\ntheta\r\nthetas\r\ntheurgist\r\nthey\r\nthey'd\r\nthey'll\r\nthey're\r\nthey've\r\nthiamine\r\nthick\r\nthicken\r\nthickened\r\nthickener\r\nthickeners\r\nthickening\r\nthickens\r\nthicker\r\nthickest\r\nthicket\r\nthicket's\r\nthicketed\r\nthickets\r\nthickhead\r\nthickly\r\nthickness\r\nthickset\r\nthief\r\nthieve\r\nthievery\r\nthieves\r\nthieving\r\nthievish\r\nthievishly\r\nthievishness\r\nthigh\r\nthighbone\r\nthighs\r\nthimble\r\nthimble's\r\nthimbleberry\r\nthimbleful\r\nthimbleful's\r\nthimblerig\r\nthimbles\r\nthimbleweed\r\nthin\r\nthing\r\nthingamabob\r\nthingamajig\r\nthingamajig's\r\nthingamajigs\r\nthings\r\nthink\r\nthinkable\r\nthinker\r\nthinkers\r\nthinking\r\nthinks\r\nthinly\r\nthinned\r\nthinner\r\nthinners\r\nthinness\r\nthinnest\r\nthinning\r\nthins\r\nthiopental\r\nthird\r\nthirdly\r\nthirds\r\nthirst\r\nthirsted\r\nthirstier\r\nthirstily\r\nthirstiness\r\nthirsts\r\nthirsty\r\nthirteen\r\nthirteenth\r\nthirties\r\nthirtieth\r\nthirty\r\nthis\r\nthis'll\r\nthistle\r\nthistledown\r\nthistly\r\nthither\r\nthitherto\r\ntholepin\r\nthong\r\nthoraces\r\nthoracic\r\nthorax\r\nthoraxes\r\nthorium\r\nthorn\r\nthorn's\r\nthornback\r\nthornier\r\nthorniness\r\nthorns\r\nthorny\r\nthorough\r\nthoroughbred\r\nthoroughfare\r\nthoroughfare's\r\nthoroughfares\r\nthoroughgoing\r\nthoroughly\r\nthoroughness\r\nthoroughpaced\r\nthoroughpin\r\nthorp\r\nthose\r\nthou\r\nthough\r\nthought\r\nthought's\r\nthoughtful\r\nthoughtfully\r\nthoughtfulness\r\nthoughtless\r\nthoughtlessly\r\nthoughtlessness\r\nthoughts\r\nthousand\r\nthousands\r\nthousandth\r\nthousandths\r\nthraldom\r\nthrall\r\nthrash\r\nthrashed\r\nthrasher\r\nthrashes\r\nthrashing\r\nthread\r\nthreadbare\r\nthreaded\r\nthreadfin\r\nthreading\r\nthreadlike\r\nthreads\r\nthreadworm\r\nthreat\r\nthreaten\r\nthreatened\r\nthreatening\r\nthreateningly\r\nthreatens\r\nthreats\r\nthree\r\nthree's\r\nthreefold\r\nthrees\r\nthreescore\r\nthreesome\r\nthrenody\r\nthresh\r\nthreshed\r\nthresher\r\nthreshing\r\nthreshold\r\nthreshold's\r\nthresholds\r\nthrew\r\nthrice\r\nthrift\r\nthriftier\r\nthriftily\r\nthriftiness\r\nthriftless\r\nthriftlessly\r\nthrifty\r\nthrill\r\nthrilled\r\nthriller\r\nthrillers\r\nthrilling\r\nthrillingly\r\nthrills\r\nthrive\r\nthrived\r\nthriven\r\nthrives\r\nthriving\r\nthro\r\nthroat\r\nthroated\r\nthroatier\r\nthroatily\r\nthroatiness\r\nthroatlatch\r\nthroats\r\nthroaty\r\nthrob\r\nthrobbed\r\nthrobbing\r\nthrobs\r\nthroe\r\nthroes\r\nthrombi\r\nthrombin\r\nthromboses\r\nthrombosis\r\nthrombus\r\nthrone\r\nthrone's\r\nthrones\r\nthrong\r\nthrong's\r\nthronging\r\nthrongs\r\nthrottle\r\nthrottled\r\nthrottlehold\r\nthrottles\r\nthrottling\r\nthrough\r\nthroughout\r\nthroughput\r\nthroughway\r\nthrove\r\nthrow\r\nthrowaway\r\nthrowback\r\nthrower\r\nthrowing\r\nthrown\r\nthrows\r\nthrum\r\nthrumming\r\nthrush\r\nthrushes\r\nthrust\r\nthruster\r\nthrusters\r\nthrusting\r\nthrusts\r\nthud\r\nthudded\r\nthudding\r\nthuds\r\nthug\r\nthug's\r\nthuggee\r\nthugs\r\nthulium\r\nthumb\r\nthumbed\r\nthumbhole\r\nthumbing\r\nthumbnail\r\nthumbnut\r\nthumbprint\r\nthumbprint's\r\nthumbprints\r\nthumbs\r\nthumbscrew\r\nthumbtack\r\nthumbtack's\r\nthumbtacks\r\nthump\r\nthumped\r\nthumper\r\nthumping\r\nthumps\r\nthunder\r\nthunderbird\r\nthunderbolt\r\nthunderbolt's\r\nthunderbolts\r\nthunderclap\r\nthunderclaps\r\nthundercloud\r\nthundercloud's\r\nthunderclouds\r\nthundered\r\nthunderhead\r\nthundering\r\nthunderous\r\nthunderously\r\nthunders\r\nthundershower\r\nthundershower's\r\nthundershowers\r\nthunderstone\r\nthunderstorm\r\nthunderstorm's\r\nthunderstorms\r\nthunderstruck\r\nthus\r\nthusly\r\nthwack\r\nthwart\r\nthwarted\r\nthwarter\r\nthwarting\r\nthwarts\r\nthy\r\nthyme\r\nthyme's\r\nthymes\r\nthymus\r\nthyroid\r\nthyroidal\r\nthyroids\r\nthyroxin\r\nthyself\r\ntiara\r\ntibia\r\ntic\r\ntick\r\nticked\r\nticker\r\ntickers\r\nticket\r\nticket's\r\nticketed\r\nticketing\r\ntickets\r\nticking\r\ntickle\r\ntickled\r\ntickler\r\ntickles\r\ntickling\r\nticklish\r\nticklishness\r\nticks\r\ntickseed\r\nticktacktoe\r\ntidal\r\ntiddler\r\ntiddly\r\ntiddlywinks\r\ntide\r\ntided\r\ntideland\r\ntidelands\r\ntidemark\r\ntides\r\ntidewaiter\r\ntidewater\r\ntideway\r\ntidied\r\ntidier\r\ntidies\r\ntidily\r\ntidiness\r\ntiding\r\ntidings\r\ntidy\r\ntidying\r\ntie\r\ntieback\r\ntiebreaker\r\ntied\r\ntiepin\r\ntier\r\ntierce\r\ntiered\r\ntiers\r\nties\r\ntiff\r\ntiffany\r\ntiffin\r\ntiger\r\ntiger's\r\ntigers\r\ntight\r\ntighten\r\ntightened\r\ntightening\r\ntightens\r\ntighter\r\ntightest\r\ntightly\r\ntightness\r\ntightrope\r\ntights\r\ntightwad\r\ntightwad's\r\ntightwads\r\ntigress\r\ntilapia\r\ntilde\r\ntildes\r\ntile\r\ntiled\r\ntilefish\r\ntiles\r\ntiling\r\ntill\r\ntillable\r\ntillage\r\ntilled\r\ntiller\r\ntillers\r\ntilling\r\ntills\r\ntilt\r\ntilted\r\ntilters\r\ntilth\r\ntilting\r\ntilts\r\ntiltyard\r\ntimbale\r\ntimber\r\ntimbered\r\ntimberhead\r\ntimbering\r\ntimberland\r\ntimberlands\r\ntimberline\r\ntimbers\r\ntimberwork\r\ntimbre\r\ntime\r\ntimecard\r\ntimed\r\ntimekeeper\r\ntimekeeping\r\ntimeless\r\ntimelessly\r\ntimelessness\r\ntimelier\r\ntimeliness\r\ntimely\r\ntimeout\r\ntimeouts\r\ntimepiece\r\ntimer\r\ntimers\r\ntimes\r\ntimesaving\r\ntimescale\r\ntimescales\r\ntimeserver\r\ntimeservers\r\ntimeserving\r\ntimeshare\r\ntimeshared\r\ntimeshares\r\ntimesharing\r\ntimestamp\r\ntimestamps\r\ntimetable\r\ntimetable's\r\ntimetabled\r\ntimetables\r\ntimetabling\r\ntimework\r\ntimeworn\r\ntimid\r\ntimidity\r\ntimidly\r\ntiming\r\ntimings\r\ntimorous\r\ntimorously\r\ntimorousness\r\ntimothy\r\ntimpani\r\ntimpanist\r\ntin\r\ntin's\r\ntincture\r\ntinctured\r\ntincturing\r\ntinder\r\ntinderbox\r\ntine\r\ntined\r\ntines\r\ntinfoil\r\nting\r\ntinge\r\ntinged\r\ntingeing\r\ntingle\r\ntingled\r\ntingles\r\ntingling\r\ntingly\r\ntinhorn\r\ntinier\r\ntiniest\r\ntinker\r\ntinkered\r\ntinkering\r\ntinkers\r\ntinkle\r\ntinkled\r\ntinkles\r\ntinkling\r\ntinned\r\ntinnier\r\ntinniest\r\ntinning\r\ntinnitus\r\ntinny\r\ntinplate\r\ntinpot\r\ntins\r\ntinsel\r\ntinselled\r\ntinselling\r\ntinselly\r\ntinsmith\r\ntinsmiths\r\ntinstone\r\ntint\r\ntinted\r\ntinting\r\ntintinnabulation\r\ntints\r\ntintype\r\ntinware\r\ntinwork\r\ntinworks\r\ntiny\r\ntip\r\ntip's\r\ntipcart\r\ntipi\r\ntip-off\r\ntipped\r\ntipper\r\ntipper's\r\ntippers\r\ntippet\r\ntipping\r\ntipple\r\ntippled\r\ntippler\r\ntipples\r\ntippling\r\ntips\r\ntipsier\r\ntipsily\r\ntipsiness\r\ntipstaff\r\ntipster\r\ntipsy\r\ntiptoe\r\ntiptoed\r\ntiptoeing\r\ntiptop\r\ntirade\r\ntirades\r\ntire\r\ntired\r\ntiredly\r\ntiredness\r\ntireless\r\ntirelessly\r\ntirelessness\r\ntires\r\ntiresome\r\ntiresomely\r\ntiresomeness\r\ntiring\r\ntisane\r\ntissue\r\ntissue's\r\ntissues\r\ntit\r\ntit's\r\ntitan\r\ntitanic\r\ntitanium\r\ntitans\r\ntitbit\r\ntithe\r\ntithe's\r\ntithes\r\ntithing\r\ntitian\r\ntitillate\r\ntitillating\r\ntitillation\r\ntitivation\r\ntitlark\r\ntitle\r\ntitled\r\ntitleholder\r\ntitleholders\r\ntitles\r\ntitling\r\ntitmice\r\ntitmouse\r\ntitmouse's\r\ntitrate\r\ntitration\r\ntitre\r\ntitres\r\ntits\r\ntitter\r\ntittered\r\ntittering\r\ntitters\r\ntitular\r\ntizzies\r\ntizzy\r\nto\r\ntoad\r\ntoad's\r\ntoadeater\r\ntoadeater's\r\ntoadeaters\r\ntoadfish\r\ntoadfish's\r\ntoadfishes\r\ntoadflax\r\ntoadied\r\ntoadies\r\ntoads\r\ntoadstone\r\ntoadstone's\r\ntoadstones\r\ntoadstool\r\ntoady\r\ntoadying\r\ntoadyism\r\ntoast\r\ntoasted\r\ntoaster\r\ntoasters\r\ntoastier\r\ntoasting\r\ntoastmaster\r\ntoastmaster's\r\ntoastmasters\r\ntoastmistress\r\ntoasts\r\ntoasty\r\ntobacco\r\ntobacconist\r\ntobacconist's\r\ntobacconists\r\ntoboggan\r\ntoboggan's\r\ntobogganing\r\ntoboggans\r\ntoccata\r\ntocsin\r\ntoday\r\ntoday's\r\ntoddies\r\ntoddle\r\ntoddled\r\ntoddler\r\ntoddlers\r\ntoddles\r\ntoddling\r\ntoddy\r\ntoddy's\r\ntoe\r\ntoe's\r\ntoecap\r\ntoed\r\ntoehold\r\ntoehold's\r\ntoeholds\r\ntoeing\r\ntoeless\r\ntoenail\r\ntoenails\r\ntoes\r\ntoff\r\ntoffee\r\ntoft\r\ntofu\r\ntog\r\ntoga\r\ntogether\r\ntogetherness\r\ntogging\r\ntoggle\r\ntoggled\r\ntoggles\r\ntoggling\r\ntogs\r\ntoil\r\ntoile\r\ntoiled\r\ntoiler\r\ntoilet\r\ntoilet's\r\ntoiletry\r\ntoilets\r\ntoilette\r\ntoiling\r\ntoils\r\ntoilsome\r\ntoken\r\ntoken's\r\ntokenism\r\ntokens\r\ntold\r\ntolerability\r\ntolerable\r\ntolerably\r\ntolerance\r\ntolerances\r\ntolerant\r\ntolerantly\r\ntolerate\r\ntolerated\r\ntolerates\r\ntolerating\r\ntoleration\r\ntoll\r\ntollbooth\r\ntollbooth's\r\ntollbooths\r\ntolled\r\ntollgate\r\ntollhouse\r\ntolling\r\ntolls\r\ntoluene\r\ntom\r\ntom's\r\ntomahawk\r\ntomahawk's\r\ntomahawks\r\ntomalley\r\ntomato\r\ntomatoes\r\ntomb\r\ntomb's\r\ntomblike\r\ntomboy\r\ntomboyish\r\ntombs\r\ntombstone\r\ntombstones\r\ntomcat\r\ntomcod\r\ntome\r\ntomes\r\ntomfool\r\ntomfoolery\r\ntommy\r\ntommyrot\r\ntomogram\r\ntomogram's\r\ntomograms\r\ntomograph\r\ntomorrow\r\ntomorrow's\r\ntomorrows\r\ntompion\r\ntoms\r\ntomtit\r\nton\r\nton's\r\ntonal\r\ntonalities\r\ntonality\r\ntonally\r\ntone\r\ntoned\r\ntoneless\r\ntonelessly\r\ntoner\r\ntones\r\ntong\r\ntongs\r\ntongue\r\ntongued\r\ntongues\r\ntonguing\r\ntonic\r\ntonic's\r\ntonicity\r\ntonics\r\ntonight\r\ntoning\r\ntonnage\r\ntonne\r\ntonneau\r\ntonnes\r\ntons\r\ntonsil\r\ntonsillectomy\r\ntonsillitis\r\ntonsure\r\ntonsured\r\ntonsuring\r\ntontine\r\ntonus\r\ntoo\r\ntook\r\ntool\r\ntoolbox\r\ntoolboxes\r\ntooled\r\ntooling\r\ntoolkit\r\ntoolkit's\r\ntoolkits\r\ntoolmaker\r\ntoolmakers\r\ntoolroom\r\ntools\r\ntoot\r\ntooted\r\ntooth\r\ntoothache\r\ntoothache's\r\ntoothaches\r\ntoothbrush\r\ntoothbrush's\r\ntoothbrushes\r\ntoothed\r\ntoothier\r\ntoothily\r\ntoothless\r\ntoothpaste\r\ntoothpick\r\ntoothpick's\r\ntoothpicks\r\ntoothsome\r\ntoothsomely\r\ntoothy\r\ntooting\r\ntoots\r\ntootsies\r\ntop\r\ntopaz\r\ntopcoat\r\ntopcoats\r\ntopdressing\r\ntope\r\ntoped\r\ntopee\r\ntoper\r\ntopes\r\ntopflight\r\ntopgallant\r\ntop-heavy\r\ntopiary\r\ntopic\r\ntopic's\r\ntopical\r\ntopicality\r\ntopically\r\ntopics\r\ntoping\r\ntopknot\r\ntopless\r\ntoplofty\r\ntopmast\r\ntopminnow\r\ntopmost\r\ntopographer\r\ntopographic\r\ntopographical\r\ntopographically\r\ntopographies\r\ntopography\r\ntopological\r\ntopologically\r\ntopologies\r\ntopologist\r\ntopology\r\ntopped\r\ntopper\r\ntoppers\r\ntopping\r\ntoppings\r\ntopple\r\ntoppled\r\ntopples\r\ntoppling\r\ntops\r\ntopsail\r\ntopside\r\ntopsides\r\ntopsoil\r\ntopspin\r\ntopstitch\r\ntoque\r\ntorch\r\ntorch's\r\ntorchbearer\r\ntorches\r\ntorchlight\r\ntorchwood\r\ntore\r\ntoreador\r\ntorero\r\ntoric\r\ntorment\r\ntormented\r\ntormenter\r\ntormenters\r\ntormenting\r\ntormentor\r\ntorments\r\ntorn\r\ntornado\r\ntornadoes\r\ntornados\r\ntoroid\r\ntorpedo\r\ntorpedoed\r\ntorpedoes\r\ntorpedoing\r\ntorpid\r\ntorpidity\r\ntorpidly\r\ntorpor\r\ntorque\r\ntorques\r\ntorrent\r\ntorrent's\r\ntorrential\r\ntorrentially\r\ntorrents\r\ntorrid\r\ntorridly\r\ntorridness\r\ntorsi\r\ntorsion\r\ntorso\r\ntorsos\r\ntort\r\ntorte\r\ntortellini\r\ntortes\r\ntortilla\r\ntortoise\r\ntortoise's\r\ntortoises\r\ntortoiseshell\r\ntortuous\r\ntortuously\r\ntorture\r\ntortured\r\ntorturer\r\ntorturers\r\ntortures\r\ntorturing\r\ntorturous\r\ntorturously\r\ntorus\r\ntoss\r\ntossed\r\ntosses\r\ntossing\r\ntosspot\r\ntot\r\ntotal\r\ntotal's\r\ntotalise\r\ntotalised\r\ntotalises\r\ntotalising\r\ntotalitarian\r\ntotalitarianism\r\ntotalities\r\ntotality\r\ntotality's\r\ntotalled\r\ntotalling\r\ntotally\r\ntotals\r\ntote\r\ntoted\r\ntotem\r\ntotemic\r\ntotes\r\ntoting\r\ntots\r\ntotted\r\ntotter\r\ntottered\r\ntottering\r\ntotters\r\ntottery\r\ntotting\r\ntoucan\r\ntouch\r\ntouchable\r\ntouchback\r\ntouchdown\r\ntouchdowns\r\ntouched\r\ntouches\r\ntouchhole\r\ntouchier\r\ntouchiest\r\ntouchily\r\ntouchiness\r\ntouching\r\ntouchingly\r\ntouchline\r\ntouchstone\r\ntouchstones\r\ntouchwood\r\ntouchy\r\ntough\r\ntoughen\r\ntoughened\r\ntoughening\r\ntoughens\r\ntougher\r\ntoughest\r\ntoughie\r\ntoughies\r\ntoughly\r\ntoughness\r\ntoughs\r\ntoupee\r\ntour\r\ntourbillion\r\ntoured\r\ntouring\r\ntourism\r\ntourist\r\ntourist's\r\ntourists\r\ntouristy\r\ntourmaline\r\ntournament\r\ntournament's\r\ntournaments\r\ntournedos\r\ntourney\r\ntourneys\r\ntourniquet\r\ntourniquets\r\ntours\r\ntousle\r\ntousled\r\ntousles\r\ntousling\r\ntout\r\ntouted\r\ntouting\r\ntouts\r\ntow\r\ntowage\r\ntoward\r\ntowards\r\ntowboat\r\ntowboats\r\ntowed\r\ntowel\r\ntowel's\r\ntowelled\r\ntowelling\r\ntowels\r\ntower\r\ntowered\r\ntowering\r\ntoweringly\r\ntowers\r\ntowhead\r\ntowheaded\r\ntowhee\r\ntowing\r\ntowline\r\ntown\r\ntown's\r\ntownhouse\r\ntownies\r\ntowns\r\ntownscape\r\ntownsfolk\r\ntownship\r\ntownship's\r\ntownships\r\ntownsman\r\ntownsmen\r\ntownspeople\r\ntownswoman\r\ntowpath\r\ntowrope\r\ntows\r\ntoxaemia\r\ntoxic\r\ntoxicant\r\ntoxicity\r\ntoxicological\r\ntoxicologically\r\ntoxicologist\r\ntoxicology\r\ntoxin\r\ntoxin's\r\ntoxins\r\ntoy\r\ntoyed\r\ntoying\r\ntoys\r\ntrace\r\ntraceable\r\ntraceably\r\ntraced\r\ntraceless\r\ntracer\r\ntracers\r\ntracery\r\ntraces\r\ntrachea\r\ntracheae\r\ntracheal\r\ntracheotomy\r\ntrachoma\r\ntracing\r\ntracings\r\ntrack\r\ntracked\r\ntracker\r\ntrackers\r\ntracking\r\ntracklayer\r\ntrackless\r\ntrackman\r\ntracks\r\ntrackside\r\ntracksuit\r\ntrackwalker\r\ntract\r\ntract's\r\ntractability\r\ntractable\r\ntractably\r\ntractate\r\ntraction\r\ntractor\r\ntractor's\r\ntractors\r\ntracts\r\ntradable\r\ntrade\r\ntraded\r\ntrademark\r\ntrademark's\r\ntrademarks\r\ntradeoffs\r\ntrader\r\ntraders\r\ntrades\r\ntradesman\r\ntradesmen\r\ntrading\r\ntradition\r\ntradition's\r\ntraditional\r\ntraditionalise\r\ntraditionalised\r\ntraditionalises\r\ntraditionalism\r\ntraditionalistic\r\ntraditionalists\r\ntraditionally\r\ntraditions\r\ntraduce\r\ntraduced\r\ntraducer\r\ntraducing\r\ntraffic\r\ntraffic's\r\ntrafficable\r\ntrafficked\r\ntrafficker\r\ntrafficker's\r\ntraffickers\r\ntrafficking\r\ntraffics\r\ntragedian\r\ntragedians\r\ntragedienne\r\ntragedies\r\ntragedy\r\ntragedy's\r\ntragic\r\ntragically\r\ntragicomedy\r\ntragicomic\r\ntrail\r\ntrailblazer\r\ntrailblazer's\r\ntrailblazers\r\ntrailblazing\r\ntrailbreaker\r\ntrailed\r\ntrailer\r\ntrailers\r\ntrailhead\r\ntrailhead's\r\ntrailheads\r\ntrailing\r\ntrails\r\ntrailside\r\ntrain\r\ntrainability\r\ntrainable\r\ntrainband\r\ntrainbearer\r\ntrained\r\ntrainee\r\ntrainee's\r\ntrainees\r\ntraineeship\r\ntraineeships\r\ntrainer\r\ntrainers\r\ntraining\r\ntrainload\r\ntrainload's\r\ntrainloads\r\ntrainman\r\ntrainman's\r\ntrainmen\r\ntrains\r\ntraipse\r\ntraipsing\r\ntrait\r\ntrait's\r\ntraitor\r\ntraitor's\r\ntraitorous\r\ntraitorously\r\ntraitors\r\ntraits\r\ntrajectories\r\ntrajectory\r\ntrajectory's\r\ntram\r\ntramcar\r\ntramline\r\ntrammel\r\ntrammelled\r\ntrammelling\r\ntrammels\r\ntramp\r\ntramped\r\ntramping\r\ntrample\r\ntrampled\r\ntramples\r\ntrampling\r\ntrampoline\r\ntramps\r\ntramway\r\ntrance\r\ntrance's\r\ntrancelike\r\ntrances\r\ntranquil\r\ntranquillisation\r\ntranquillise\r\ntranquillised\r\ntranquilliser\r\ntranquillisers\r\ntranquillises\r\ntranquillising\r\ntranquillity\r\ntranquilly\r\ntransact\r\ntransacted\r\ntransacting\r\ntransaction\r\ntransaction's\r\ntransactional\r\ntransactions\r\ntransacts\r\ntransalpine\r\ntransatlantic\r\ntransaxle\r\ntransceiver\r\ntransceiver's\r\ntransceivers\r\ntranscend\r\ntranscended\r\ntranscendence\r\ntranscendent\r\ntranscendental\r\ntranscendentalism\r\ntranscendentalist\r\ntranscendentalists\r\ntranscendentally\r\ntranscendently\r\ntranscending\r\ntranscends\r\ntranscontinental\r\ntranscribe\r\ntranscribed\r\ntranscribers\r\ntranscribes\r\ntranscribing\r\ntranscript\r\ntranscript's\r\ntranscription\r\ntranscription's\r\ntranscriptional\r\ntranscriptions\r\ntranscripts\r\ntransducer\r\ntransducers\r\ntransect\r\ntransecting\r\ntransects\r\ntransept\r\ntransepts\r\ntransfer\r\ntransfer's\r\ntransferability\r\ntransferable\r\ntransferee\r\ntransference\r\ntransferor\r\ntransferors\r\ntransferral\r\ntransferral's\r\ntransferrals\r\ntransferred\r\ntransferring\r\ntransfers\r\ntransfiguration\r\ntransfigure\r\ntransfinite\r\ntransfix\r\ntransfixed\r\ntransfixes\r\ntransfixing\r\ntransfixion\r\ntransform\r\ntransformable\r\ntransformation\r\ntransformation's\r\ntransformational\r\ntransformations\r\ntransformed\r\ntransformer\r\ntransformers\r\ntransforming\r\ntransforms\r\ntransfuse\r\ntransfused\r\ntransfusing\r\ntransfusion\r\ntransfusions\r\ntransgress\r\ntransgressed\r\ntransgresses\r\ntransgressing\r\ntransgression\r\ntransgression's\r\ntransgressions\r\ntransgressor\r\ntransgressors\r\ntranship\r\ntranshumance\r\ntransience\r\ntransient\r\ntransiently\r\ntransients\r\ntransistor\r\ntransistor's\r\ntransistorise\r\ntransistorised\r\ntransistorises\r\ntransistorising\r\ntransistors\r\ntransit\r\ntransition\r\ntransitional\r\ntransitionally\r\ntransitioned\r\ntransitions\r\ntransitive\r\ntransitively\r\ntransitiveness\r\ntransitivity\r\ntransitorily\r\ntransitory\r\ntranslatability\r\ntranslatable\r\ntranslate\r\ntranslated\r\ntranslates\r\ntranslating\r\ntranslation\r\ntranslations\r\ntranslator\r\ntranslator's\r\ntranslators\r\ntransliterate\r\ntransliteration\r\ntranslocation\r\ntranslucence\r\ntranslucency\r\ntranslucent\r\ntranslucently\r\ntransmarine\r\ntransmigrate\r\ntransmigration\r\ntransmissibility\r\ntransmissible\r\ntransmission\r\ntransmission's\r\ntransmissions\r\ntransmit\r\ntransmits\r\ntransmittable\r\ntransmittal\r\ntransmittance\r\ntransmitted\r\ntransmitter\r\ntransmitter's\r\ntransmitters\r\ntransmitting\r\ntransmogrification\r\ntransmogrify\r\ntransmutable\r\ntransmutation\r\ntransmute\r\ntransmuted\r\ntransmutes\r\ntransmuting\r\ntransoceanic\r\ntransom\r\ntransoms\r\ntransonic\r\ntranspacific\r\ntransparencies\r\ntransparency\r\ntransparency's\r\ntransparent\r\ntransparently\r\ntranspersonal\r\ntranspiration\r\ntranspirations\r\ntranspire\r\ntranspired\r\ntranspires\r\ntranspiring\r\ntransplant\r\ntransplantable\r\ntransplantation\r\ntransplanted\r\ntransplanting\r\ntransplants\r\ntranspolar\r\ntransponder\r\ntransponders\r\ntransport\r\ntransportability\r\ntransportable\r\ntransportation\r\ntransportations\r\ntransported\r\ntransporters\r\ntransporting\r\ntransports\r\ntransposable\r\ntranspose\r\ntransposed\r\ntransposes\r\ntransposing\r\ntransposition\r\ntranssexual\r\ntransubstantiate\r\ntransubstantiation\r\ntransudation\r\ntransude\r\ntransuded\r\ntransuding\r\ntransversal\r\ntransversally\r\ntransverse\r\ntransversely\r\ntransverses\r\ntransvestism\r\ntransvestite\r\ntrap\r\ntrap's\r\ntrapdoor\r\ntrapdoors\r\ntrapeze\r\ntrapezium\r\ntrapezoid\r\ntrapezoid's\r\ntrapezoidal\r\ntrapezoids\r\ntrapped\r\ntrapper\r\ntrapper's\r\ntrappers\r\ntrapping\r\ntrappings\r\ntraps\r\ntrapshooting\r\ntrash\r\ntrashed\r\ntrashes\r\ntrashier\r\ntrashiness\r\ntrashing\r\ntrashy\r\ntrauma\r\ntraumas\r\ntraumata\r\ntraumatic\r\ntraumatically\r\ntraumatise\r\ntraumatised\r\ntraumatises\r\ntraumatising\r\ntraumatism\r\ntravail\r\ntravails\r\ntravel\r\ntravelled\r\ntraveller\r\ntraveller's\r\ntravellers\r\ntravelling\r\ntravelogue\r\ntravelogue's\r\ntravelogues\r\ntravels\r\ntraversable\r\ntraversal\r\ntraversal's\r\ntraversals\r\ntraverse\r\ntraversed\r\ntraverses\r\ntraversing\r\ntravertine\r\ntravesties\r\ntravesty\r\ntravesty's\r\ntravois\r\ntrawl\r\ntrawler\r\ntray\r\ntray's\r\ntrays\r\ntreacheries\r\ntreacherous\r\ntreacherously\r\ntreacherousness\r\ntreachery\r\ntreachery's\r\ntreacle\r\ntreacly\r\ntread\r\ntreaded\r\ntreading\r\ntreadle\r\ntreadmill\r\ntreads\r\ntreason\r\ntreasonable\r\ntreasonably\r\ntreasonous\r\ntreasure\r\ntreasured\r\ntreasurer\r\ntreasures\r\ntreasuries\r\ntreasuring\r\ntreasury\r\ntreasury's\r\ntreat\r\ntreatable\r\ntreated\r\ntreaties\r\ntreating\r\ntreatise\r\ntreatise's\r\ntreatises\r\ntreatment\r\ntreatment's\r\ntreatments\r\ntreats\r\ntreaty\r\ntreaty's\r\ntreble\r\ntrebled\r\ntrebles\r\ntrebling\r\ntrebly\r\ntrebuchet\r\ntree\r\ntree's\r\ntreed\r\ntreehopper\r\ntreeing\r\ntreeless\r\ntreelike\r\ntreenail\r\ntrees\r\ntreetop\r\ntreetop's\r\ntreetops\r\ntref\r\ntrefoil\r\ntrek\r\ntrek's\r\ntrekked\r\ntrekker\r\ntrekking\r\ntreks\r\ntrellis\r\ntrellised\r\ntrellises\r\ntrelliswork\r\ntremble\r\ntrembled\r\ntrembler\r\ntrembles\r\ntrembling\r\ntremendous\r\ntremendously\r\ntremendousness\r\ntremolo\r\ntremor\r\ntremor's\r\ntremors\r\ntremulous\r\ntremulously\r\ntremulousness\r\ntrench\r\ntrenchancy\r\ntrenchant\r\ntrenchantly\r\ntrenched\r\ntrencher\r\ntrencherman\r\ntrenchermen\r\ntrenchers\r\ntrenches\r\ntrend\r\ntrendier\r\ntrendily\r\ntrending\r\ntrends\r\ntrendy\r\ntrepan\r\ntrepanation\r\ntrepanned\r\ntrepanning\r\ntrepans\r\ntrephination\r\ntrephine\r\ntrepid\r\ntrepidation\r\ntrespass\r\ntrespassed\r\ntrespasser\r\ntrespassers\r\ntrespasses\r\ntress\r\ntress's\r\ntresses\r\ntrestle\r\ntrestles\r\ntrestletree\r\ntrestlework\r\ntrey\r\ntreys\r\ntri\r\ntriac\r\ntriacetate\r\ntriad\r\ntriadic\r\ntriage\r\ntrial\r\ntrial's\r\ntrials\r\ntriangle\r\ntriangle's\r\ntriangles\r\ntriangular\r\ntriangularly\r\ntriangulate\r\ntriangulated\r\ntriangulation\r\ntribal\r\ntribalism\r\ntribally\r\ntribe\r\ntribe's\r\ntribes\r\ntribesman\r\ntribesmen\r\ntriboelectric\r\ntribology\r\ntribulation\r\ntribulation's\r\ntribulations\r\ntribunal\r\ntribunal's\r\ntribunals\r\ntribune\r\ntribune's\r\ntribunes\r\ntributary\r\ntribute\r\ntribute's\r\ntributes\r\ntrice\r\ntriceps\r\ntriceratops\r\ntrichina\r\ntrichinosis\r\ntrichinous\r\ntrick\r\ntricked\r\ntrickeries\r\ntrickery\r\ntrickier\r\ntrickiest\r\ntrickily\r\ntrickiness\r\ntricking\r\ntrickle\r\ntrickled\r\ntrickles\r\ntrickling\r\ntricks\r\ntrickster\r\ntricky\r\ntriclinic\r\ntricolour\r\ntricolour's\r\ntricolours\r\ntricot\r\ntricuspid\r\ntricycle\r\ntricycles\r\ntricyclic\r\ntrident\r\ntridentate\r\ntridents\r\ntried\r\ntriennial\r\ntriennially\r\ntriennium\r\ntries\r\ntriffid\r\ntrifle\r\ntrifled\r\ntrifler\r\ntrifles\r\ntrifling\r\ntrifocal\r\ntrifoliate\r\ntrifurcate\r\ntrifurcation\r\ntrig\r\ntrigger\r\ntriggered\r\ntriggerfish\r\ntriggering\r\ntriggerman\r\ntriggers\r\ntrigging\r\ntrigonometric\r\ntrigonometrically\r\ntrigonometry\r\ntrihedral\r\ntrilateral\r\ntrilaterally\r\ntrilbies\r\ntrilby\r\ntrilingual\r\ntrill\r\ntrilled\r\ntrillion\r\ntrillions\r\ntrillionth\r\ntrillium\r\ntrilobite\r\ntrilogy\r\ntrim\r\ntrimaran\r\ntrimester\r\ntrimly\r\ntrimmed\r\ntrimmer\r\ntrimmest\r\ntrimming\r\ntrimmings\r\ntrimness\r\ntrims\r\ntrine\r\ntrinitrotoluene\r\ntrinity\r\ntrinket\r\ntrinket's\r\ntrinkets\r\ntrinomial\r\ntrio\r\ntriode\r\ntriodes\r\ntrios\r\ntrioxide\r\ntrip\r\ntrip's\r\ntripartite\r\ntripe\r\ntriplane\r\ntriple\r\ntripled\r\ntriples\r\ntriplet\r\ntriplet's\r\ntripletail\r\ntriplets\r\ntriplex\r\ntriplicate\r\ntriplication\r\ntripling\r\ntriploid\r\ntriply\r\ntripod\r\ntripods\r\ntripped\r\ntripper\r\ntripping\r\ntrippingly\r\ntrips\r\ntriptych\r\ntripwire\r\ntrireme\r\ntrisect\r\ntrisection\r\ntrite\r\ntritely\r\ntriteness\r\ntritium\r\ntritium's\r\ntriton\r\ntriturate\r\ntriumph\r\ntriumphal\r\ntriumphant\r\ntriumphantly\r\ntriumphed\r\ntriumphing\r\ntriumphs\r\ntriumvir\r\ntriumvirate\r\ntriune\r\ntrivalent\r\ntrivet\r\ntrivia\r\ntrivial\r\ntrivialisation\r\ntrivialise\r\ntrivialised\r\ntrivialises\r\ntrivialising\r\ntrivialities\r\ntriviality\r\ntrivially\r\ntrochaic\r\ntroche\r\ntrochee\r\ntrod\r\ntrodden\r\ntrog\r\ntroglodyte\r\ntroglodytic\r\ntrogon\r\ntroika\r\ntroll\r\ntroll's\r\ntrolley\r\ntrolley's\r\ntrolleybus\r\ntrolleys\r\ntrollop\r\ntrolls\r\ntrombone\r\ntrombone's\r\ntrombones\r\ntrombonist\r\ntromp\r\ntroop\r\ntrooped\r\ntrooper\r\ntroopers\r\ntrooping\r\ntroops\r\ntroopship\r\ntroopships\r\ntrop\r\ntrope\r\ntrophies\r\ntrophy\r\ntrophy's\r\ntropic\r\ntropic's\r\ntropical\r\ntropically\r\ntropicbird\r\ntropics\r\ntropism\r\ntropisms\r\ntroposphere\r\ntrot\r\ntroth\r\ntrothplight\r\ntrotline\r\ntrots\r\ntrotted\r\ntrotter\r\ntrotting\r\ntroubadour\r\ntroubadour's\r\ntroubadours\r\ntrouble\r\ntroubled\r\ntroublemaker\r\ntroublemaker's\r\ntroublemakers\r\ntroubles\r\ntroubleshoot\r\ntroubleshooting\r\ntroubleshoots\r\ntroubleshot\r\ntroublesome\r\ntroublesomely\r\ntroubling\r\ntrough\r\ntroughs\r\ntrounce\r\ntrounced\r\ntrounces\r\ntrouncing\r\ntroupe\r\ntrouper\r\ntroupes\r\ntrouping\r\ntrouser\r\ntrousers\r\ntrousseau\r\ntrousseaus\r\ntrousseaux\r\ntrout\r\ntrove\r\ntrowel\r\ntrowel's\r\ntrowels\r\ntroy\r\ntruancy\r\ntruant\r\ntruant's\r\ntruants\r\ntruce\r\ntruck\r\ntrucked\r\ntrucker\r\ntruckers\r\ntrucking\r\ntruckle\r\ntruckled\r\ntruckler\r\ntruckling\r\ntruckload\r\ntruckload's\r\ntruckloads\r\ntrucks\r\ntruculence\r\ntruculent\r\ntruculently\r\ntrudge\r\ntrudged\r\ntrudges\r\ntrudging\r\ntrue\r\ntrueborn\r\ntrued\r\ntruehearted\r\ntruelove\r\ntrueness\r\ntruepenny\r\ntruer\r\ntruest\r\ntruffle\r\ntruffle's\r\ntruffles\r\ntruing\r\ntruism\r\ntruism's\r\ntruisms\r\ntruly\r\ntrump\r\ntrumped\r\ntrumpery\r\ntrumpet\r\ntrumpeted\r\ntrumpeter\r\ntrumpeting\r\ntrumpets\r\ntrumps\r\ntruncate\r\ntruncated\r\ntruncates\r\ntruncating\r\ntruncation\r\ntruncation's\r\ntruncations\r\ntruncheon\r\ntruncheons\r\ntrundle\r\ntrundled\r\ntrundles\r\ntrundling\r\ntrunk\r\ntrunk's\r\ntrunkfish\r\ntrunks\r\ntrunnion\r\ntruss\r\ntrusses\r\ntrussing\r\ntrust\r\ntrustable\r\ntrustbuster\r\ntrusted\r\ntrustee\r\ntrustee's\r\ntrustees\r\ntrusteeship\r\ntrustful\r\ntrustfully\r\ntrustfulness\r\ntrustier\r\ntrusties\r\ntrustiness\r\ntrusting\r\ntrustingly\r\ntrusts\r\ntrustworthily\r\ntrustworthiness\r\ntrustworthy\r\ntrusty\r\ntruth\r\ntruthful\r\ntruthfully\r\ntruthfulness\r\ntruths\r\ntry\r\ntrying\r\ntryingly\r\ntryout\r\ntrypanosome\r\ntrysail\r\ntryst\r\ntsar\r\ntsarina\r\ntsarist\r\ntsetse\r\ntsunami\r\ntuatara\r\ntub\r\ntub's\r\ntuba\r\ntubbier\r\ntubby\r\ntube\r\ntubeless\r\ntuber\r\ntubercle\r\ntubercular\r\ntuberculin\r\ntuberculosis\r\ntuberose\r\ntuberous\r\ntubers\r\ntubes\r\ntubing\r\ntubs\r\ntubular\r\ntubule\r\ntubules\r\ntuck\r\ntucked\r\ntucker\r\ntuckered\r\ntuckering\r\ntucking\r\ntucks\r\ntuff\r\ntuffet\r\ntuft\r\ntuft's\r\ntufted\r\ntufts\r\ntug\r\ntugboat\r\ntugged\r\ntugging\r\ntugs\r\ntuition\r\ntuitions\r\ntularaemia\r\ntulip\r\ntulip's\r\ntulips\r\ntulipwood\r\ntulle\r\ntumble\r\ntumblebug\r\ntumbled\r\ntumbledown\r\ntumblehome\r\ntumbler\r\ntumblerful\r\ntumblers\r\ntumbles\r\ntumbleweed\r\ntumbling\r\ntumbrel\r\ntumbrels\r\ntumbril\r\ntumefaction\r\ntumescence\r\ntumescent\r\ntumid\r\ntummies\r\ntummy\r\ntummy's\r\ntumour\r\ntumour's\r\ntumours\r\ntumult\r\ntumult's\r\ntumults\r\ntumultuous\r\ntumultuously\r\ntumultuousness\r\ntumulus\r\ntun\r\ntuna\r\ntunable\r\ntunas\r\ntundra\r\ntune\r\ntuneable\r\ntuned\r\ntuneful\r\ntunefully\r\ntunefulness\r\ntuneless\r\ntunelessly\r\ntuner\r\ntuners\r\ntunes\r\ntunesmith\r\ntungsten\r\ntunic\r\ntunic's\r\ntunica\r\ntunicae\r\ntunicate\r\ntunics\r\ntuning\r\ntuning's\r\ntunings\r\ntunnel\r\ntunnelled\r\ntunneller\r\ntunnelling\r\ntunnels\r\ntunny\r\ntupelo\r\nturban\r\nturban's\r\nturbaned\r\nturbans\r\nturbary\r\nturbid\r\nturbidity\r\nturbidly\r\nturbinate\r\nturbinated\r\nturbine\r\nturbines\r\nturbo\r\nturbocharged\r\nturbocharger\r\nturboelectric\r\nturbofan\r\nturbogenerator\r\nturbojet\r\nturboprop\r\nturbot\r\nturbots\r\nturbulence\r\nturbulence's\r\nturbulent\r\nturbulently\r\ntureen\r\nturf\r\nturgescent\r\nturgid\r\nturgidity\r\nturgidly\r\nturkey\r\nturkey's\r\nturkeys\r\nturmeric\r\nturmoil\r\nturmoil's\r\nturn\r\nturnabout\r\nturnaround\r\nturnarounds\r\nturnbuckle\r\nturncoat\r\nturndown\r\nturned\r\nturner\r\nturners\r\nturnery\r\nturning\r\nturnings\r\nturnip\r\nturnip's\r\nturnips\r\nturnkey\r\nturnkeys\r\nturnoff\r\nturnout\r\nturnouts\r\nturnover\r\nturnovers\r\nturnpike\r\nturnpikes\r\nturns\r\nturnsole\r\nturnspit\r\nturnstile\r\nturnstone\r\nturntable\r\nturpentine\r\nturpitude\r\nturquoise\r\nturret\r\nturret's\r\nturreted\r\nturrets\r\nturtle\r\nturtle's\r\nturtleback\r\nturtlebacks\r\nturtledove\r\nturtlehead\r\nturtleneck\r\nturtles\r\ntusk\r\ntusker\r\ntuskers\r\ntusks\r\ntussah\r\ntussle\r\ntussled\r\ntussles\r\ntussling\r\ntussock\r\ntussocks\r\ntutee\r\ntutees\r\ntutelage\r\ntutelary\r\ntutor\r\ntutorage\r\ntutored\r\ntutorial\r\ntutorial's\r\ntutorials\r\ntutoring\r\ntutors\r\ntutorship\r\ntutu\r\ntux\r\ntuxedo\r\ntuxedo's\r\ntuxedoed\r\ntuxedos\r\ntwaddle\r\ntwain\r\ntwang\r\ntwanging\r\ntwat\r\ntweak\r\ntweaked\r\ntweaking\r\ntweaks\r\ntweed\r\ntweedier\r\ntweediness\r\ntweedy\r\ntweet\r\ntweeter\r\ntweeze\r\ntweezed\r\ntweezers\r\ntweezing\r\ntwelfth\r\ntwelfths\r\ntwelve\r\ntwelvemonth\r\ntwenties\r\ntwentieth\r\ntwenty\r\ntwerp\r\ntwice\r\ntwiddle\r\ntwiddled\r\ntwiddles\r\ntwiddling\r\ntwig\r\ntwig's\r\ntwigged\r\ntwigging\r\ntwiggy\r\ntwigs\r\ntwilight\r\ntwilight's\r\ntwilights\r\ntwilit\r\ntwill\r\ntwilled\r\ntwilling\r\ntwin\r\ntwin's\r\ntwinberry\r\ntwinborn\r\ntwine\r\ntwined\r\ntwines\r\ntwinflower\r\ntwinge\r\ntwinges\r\ntwining\r\ntwinkle\r\ntwinkled\r\ntwinkles\r\ntwinkling\r\ntwinning\r\ntwins\r\ntwirl\r\ntwirled\r\ntwirler\r\ntwirling\r\ntwirls\r\ntwist\r\ntwisted\r\ntwister\r\ntwisters\r\ntwisting\r\ntwists\r\ntwisty\r\ntwit\r\ntwitch\r\ntwitched\r\ntwitcher\r\ntwitchily\r\ntwitching\r\ntwitchy\r\ntwitted\r\ntwitter\r\ntwittered\r\ntwittering\r\ntwitting\r\ntwixt\r\ntwo\r\ntwo's\r\ntwofer\r\ntwofold\r\ntwos\r\ntwosome\r\ntycoon\r\ntying\r\ntyke\r\ntyke's\r\ntykes\r\ntympani\r\ntympanic\r\ntympanum\r\ntympanum's\r\ntype\r\ntype's\r\ntypecast\r\ntyped\r\ntypeface\r\ntypes\r\ntypescript\r\ntypeset\r\ntypesets\r\ntypesetter\r\ntypesetters\r\ntypesetting\r\ntypewrite\r\ntypewriter\r\ntypewriter's\r\ntypewriters\r\ntypewriting\r\ntypewritten\r\ntyphoid\r\ntyphoon\r\ntyphus\r\ntypical\r\ntypicality\r\ntypically\r\ntypified\r\ntypifies\r\ntypify\r\ntypifying\r\ntyping\r\ntypist\r\ntypist's\r\ntypists\r\ntypo\r\ntypographer\r\ntypographic\r\ntypographical\r\ntypographically\r\ntypography\r\ntypological\r\ntypologically\r\ntypologies\r\ntypology\r\ntypos\r\ntyrannical\r\ntyrannically\r\ntyrannise\r\ntyrannised\r\ntyrannises\r\ntyrannising\r\ntyrannosaur\r\ntyrannosaurus\r\ntyrannous\r\ntyrannously\r\ntyranny\r\ntyrant\r\ntyrant's\r\ntyrants\r\ntyre\r\ntyre's\r\ntyres\r\ntyro\r\ntyros\r\ntyrosine\r\nuPVC\r\nubiquitous\r\nubiquitously\r\nubiquity\r\nudder\r\nugh\r\nuglier\r\nugliest\r\nugliness\r\nugly\r\nukulele\r\nulcer\r\nulcer's\r\nulcerate\r\nulcerated\r\nulcerates\r\nulceration\r\nulcerations\r\nulcerative\r\nulcerous\r\nulcers\r\nulna\r\nulna's\r\nulterior\r\nultimate\r\nultimately\r\nultimatum\r\nultimo\r\nultra\r\nultracentrifuge\r\nultraconservative\r\nultrafashionable\r\nultrahigh\r\nultramarine\r\nultramicroscopic\r\nultramodern\r\nultrasonic\r\nultrasonically\r\nultrasonics\r\nultrasound\r\nultraviolet\r\nululate\r\nululation\r\numbel\r\numbellate\r\number\r\numbilical\r\numbilici\r\numbilicus\r\numbra\r\numbrae\r\numbrage\r\numbrageous\r\numbrella\r\numbrella's\r\numbrellas\r\numlaut\r\nump\r\numpire\r\numpire's\r\numpired\r\numpires\r\numpiring\r\numpteen\r\numpteenth\r\nun\r\nunabashed\r\nunabashedly\r\nunabated\r\nunabatedly\r\nunabbreviated\r\nunable\r\nunabridged\r\nunacceptability\r\nunacceptable\r\nunacceptably\r\nunaccompanied\r\nunaccomplished\r\nunaccountability\r\nunaccountable\r\nunaccountably\r\nunaccounted\r\nunaccustomed\r\nunaccustomedly\r\nunachievable\r\nunachieved\r\nunacknowledged\r\nunacquainted\r\nunadjusted\r\nunadopted\r\nunadorned\r\nunadulterated\r\nunadventurous\r\nunadvised\r\nunadvisedly\r\nunaffected\r\nunaffectedly\r\nunaffectionate\r\nunafraid\r\nunaided\r\nunalienable\r\nunaligned\r\nunallocated\r\nunalloyed\r\nunalterable\r\nunalterably\r\nunaltered\r\nunambiguous\r\nunambiguously\r\nunanalysed\r\nunanchored\r\nunanimity\r\nunanimous\r\nunanimously\r\nunannounced\r\nunanswerable\r\nunanswerably\r\nunanswered\r\nunanticipated\r\nunapologetic\r\nunapologetically\r\nunappealing\r\nunappealingly\r\nunappeasable\r\nunappeasably\r\nunappetising\r\nunappetisingly\r\nunappreciated\r\nunapproachable\r\nunapproachably\r\nunapt\r\nunarguable\r\nunarguably\r\nunarm\r\nunarmed\r\nunarticulated\r\nunary\r\nunashamed\r\nunashamedly\r\nunasked\r\nunassailability\r\nunassailable\r\nunassailably\r\nunassembled\r\nunassertive\r\nunassigned\r\nunassisted\r\nunassuming\r\nunattached\r\nunattainable\r\nunattended\r\nunattractive\r\nunattractively\r\nunattractiveness\r\nun-attributed\r\nunauthentic\r\nunauthenticated\r\nunauthorised\r\nunavailability\r\nunavailable\r\nunavailing\r\nunavailingly\r\nunavoidable\r\nunavoidably\r\nunaware\r\nunawareness\r\nunawares\r\nunbalance\r\nunbalanced\r\nunbar\r\nunbarred\r\nunbearable\r\nunbearably\r\nunbeatable\r\nunbeatably\r\nunbeaten\r\nunbeautiful\r\nunbecoming\r\nunbecomingly\r\nunbecomingness\r\nunbeknown\r\nunbeknownst\r\nunbelief\r\nunbelievable\r\nunbelievably\r\nunbeliever\r\nunbelieving\r\nunbelievingly\r\nunbelted\r\nunbend\r\nunbending\r\nunbent\r\nunbiased\r\nunbiblical\r\nunbidden\r\nunbind\r\nunblemished\r\nunblessed\r\nunblinking\r\nunblinkingly\r\nunblock\r\nunblocked\r\nunblocking\r\nunblocks\r\nunblushing\r\nunblushingly\r\nunbolt\r\nunbolted\r\nunborn\r\nunbound\r\nunbounded\r\nunbowed\r\nunbreakable\r\nunbridle\r\nunbridled\r\nunbroken\r\nunbuckle\r\nunbundled\r\nunburden\r\nunburdened\r\nunburied\r\nunburned\r\nunbuttered\r\nunbutton\r\nunbuttoned\r\nunbuttoning\r\nunbuttons\r\nuncalculated\r\nuncalled\r\nuncannily\r\nuncanny\r\nuncap\r\nuncared\r\nuncaring\r\nuncaught\r\nuncaused\r\nunceasing\r\nunceasingly\r\nuncelebrated\r\nuncensored\r\nunceremonious\r\nunceremoniously\r\nuncertain\r\nuncertainly\r\nuncertainness\r\nuncertainties\r\nuncertainty\r\nuncertified\r\nunchain\r\nunchallengeable\r\nunchallenged\r\nunchangeable\r\nunchangeably\r\nunchanged\r\nunchanging\r\nunchangingly\r\nuncharacterised\r\nuncharacteristic\r\nuncharacteristically\r\nuncharged\r\nuncharitable\r\nuncharitably\r\nuncharted\r\nunchaste\r\nunchastely\r\nunchecked\r\nunchristian\r\nuncial\r\nuncircumcised\r\nuncivil\r\nuncivilised\r\nuncivilly\r\nunclad\r\nunclaimed\r\nunclamp\r\nunclasp\r\nunclasping\r\nunclassified\r\nuncle\r\nuncle's\r\nunclean\r\nuncleanness\r\nunclear\r\nunclench\r\nunclenched\r\nuncles\r\nunclipped\r\nuncloak\r\nunclog\r\nunclose\r\nunclosed\r\nunclothe\r\nunclothed\r\nunclouded\r\nuncluttered\r\nuncoated\r\nuncoil\r\nuncoiled\r\nuncoiling\r\nuncoloured\r\nuncomfortable\r\nuncomfortably\r\nuncomforted\r\nuncomment\r\nuncommented\r\nuncomments\r\nuncommitted\r\nuncommon\r\nuncommonly\r\nuncommonness\r\nuncommunicative\r\nuncompassionate\r\nuncompetitive\r\nuncomplaining\r\nuncomplainingly\r\nuncompleted\r\nuncomplicated\r\nuncomplimentary\r\nuncomprehending\r\nuncomprehendingly\r\nuncompress\r\nuncompressed\r\nuncompressing\r\nuncompromising\r\nuncompromisingly\r\nunconceivable\r\nunconcern\r\nunconcerned\r\nunconcernedly\r\nunconditional\r\nunconditionally\r\nunconditioned\r\nunconfined\r\nunconfirmed\r\nunconformable\r\nunconformity\r\nuncongenial\r\nunconnected\r\nunconquerable\r\nunconquerably\r\nunconscionable\r\nunconscionably\r\nunconscious\r\nunconsciously\r\nunconsciousness\r\nunconsidered\r\nunconsolidated\r\nunconstitutional\r\nunconstitutionality\r\nunconstitutionally\r\nunconstrained\r\nunconstraint\r\nuncontaminated\r\nuncontested\r\nuncontrollability\r\nuncontrollable\r\nuncontrollably\r\nuncontrolled\r\nuncontroversial\r\nunconventional\r\nunconventionality\r\nunconventionally\r\nunconvertible\r\nunconvinced\r\nunconvincing\r\nunconvincingly\r\nuncooperative\r\nuncoordinated\r\nuncork\r\nuncorked\r\nuncorrected\r\nuncorrelated\r\nuncountable\r\nuncounted\r\nuncouple\r\nuncourageous\r\nuncouth\r\nuncouthly\r\nuncouthness\r\nuncover\r\nuncovered\r\nuncovering\r\nuncovers\r\nuncreated\r\nuncritical\r\nuncritically\r\nuncross\r\nuncrown\r\nuncrowned\r\nunction\r\nunctuous\r\nunctuously\r\nunctuousness\r\nuncured\r\nuncurl\r\nuncurled\r\nuncut\r\nundamaged\r\nundated\r\nundaunted\r\nundauntedly\r\nundeceive\r\nundecided\r\nundeclared\r\nundecorated\r\nundedicated\r\nundefended\r\nundefined\r\nundelete\r\nundeleted\r\nundeliverable\r\nundemocratic\r\nundemocratically\r\nundemonstrative\r\nundemonstratively\r\nundeniable\r\nundeniably\r\nundependable\r\nunder\r\nunderachieve\r\nunderachievers\r\nunderage\r\nunderarm\r\nunderbelly\r\nunderbid\r\nunderbody\r\nunderbracing\r\nunderbrush\r\nundercapitalise\r\nundercapitalised\r\nundercapitalises\r\nundercapitalising\r\nundercarriage\r\nundercharge\r\nunderclass\r\nunderclassman\r\nunderclassmen\r\nunderclothes\r\nunderclothing\r\nundercoat\r\nundercoating\r\nundercook\r\nundercooked\r\nundercount\r\nundercounts\r\nundercover\r\nundercroft\r\nundercurrent\r\nundercut\r\nundercutting\r\nunderdeveloped\r\nunderdevelopment\r\nunderdog\r\nunderdone\r\nunderdressed\r\nundereducated\r\nunderemployed\r\nunderemployment\r\nunderestimate\r\nunderestimated\r\nunderestimates\r\nunderestimating\r\nunderestimation\r\nunderestimations\r\nunderexpose\r\nunderexposure\r\nunderfeed\r\nunderflow\r\nunderflows\r\nunderfoot\r\nundergarment\r\nundergarments\r\nundergo\r\nundergoes\r\nundergoing\r\nundergone\r\nundergrad\r\nundergrad's\r\nundergrads\r\nundergraduate\r\nundergraduate's\r\nundergraduates\r\nunderground\r\nundergrowth\r\nunderhand\r\nunderhanded\r\nunderhandedly\r\nunderhandedness\r\nunderinsurance\r\nunderlay\r\nunderlet\r\nunderlie\r\nunderlies\r\nunderline\r\nunderlined\r\nunderlines\r\nunderling\r\nunderling's\r\nunderlings\r\nunderlining\r\nunderlying\r\nundermanned\r\nundermine\r\nundermined\r\nundermines\r\nundermining\r\nunderneath\r\nundernourished\r\nunderpaid\r\nunderpants\r\nunderpass\r\nunderpasses\r\nunderpay\r\nunderpayment\r\nunderpayment's\r\nunderpayments\r\nunderpin\r\nunderpinned\r\nunderpinning\r\nunderpinnings\r\nunderpins\r\nunderplay\r\nunderplayed\r\nunderplaying\r\nunderplays\r\nunderpowered\r\nunderprivileged\r\nunderproduction\r\nunderrate\r\nunderrated\r\nunderreport\r\nunderreported\r\nunderreporting\r\nunderrepresented\r\nunderscore\r\nunderscored\r\nunderscores\r\nundersea\r\nundersecretaries\r\nundersecretary\r\nundersecretary's\r\nundersell\r\nundersexed\r\nundershirt\r\nundershirt's\r\nundershirts\r\nundershoot\r\nundershooting\r\nundershoots\r\nundershot\r\nunderside\r\nunderside's\r\nundersides\r\nundersigned\r\nundersize\r\nundersized\r\nunderskirt\r\nunderstaffed\r\nunderstand\r\nunderstandable\r\nunderstandably\r\nunderstanding\r\nunderstandingly\r\nunderstandings\r\nunderstands\r\nunderstate\r\nunderstated\r\nunderstatement\r\nunderstatements\r\nunderstates\r\nunderstating\r\nunderstood\r\nunderstudies\r\nunderstudy\r\nunderstudy's\r\nundersupply\r\nundertake\r\nundertaken\r\nundertaker\r\nundertaker's\r\nundertakers\r\nundertakes\r\nundertaking\r\nundertakings\r\nundertone\r\nundertook\r\nundertow\r\nundertow's\r\nundertows\r\nunderused\r\nundervalue\r\nundervalued\r\nundervaluing\r\nunderwater\r\nunderway\r\nunderwear\r\nunderweight\r\nunderwent\r\nunderworld\r\nunderwrite\r\nunderwriter\r\nunderwriters\r\nunderwrites\r\nunderwriting\r\nundeserved\r\nundesigning\r\nundesirability\r\nundesirable\r\nundesirably\r\nundesired\r\nundetectable\r\nundetected\r\nundetermined\r\nundeveloped\r\nundeviating\r\nundid\r\nundies\r\nundifferentiated\r\nundigested\r\nundignified\r\nundiluted\r\nundiminished\r\nundimmed\r\nundine\r\nundiplomatically\r\nundirected\r\nundisciplined\r\nundisclosed\r\nundiscovered\r\nundisguised\r\nundismayed\r\nundisputed\r\nundisrupted\r\nundistinguished\r\nundistorted\r\nundistributed\r\nundisturbed\r\nundivided\r\nundo\r\nundock\r\nundocumented\r\nundoes\r\nundoing\r\nundomesticated\r\nundone\r\nundoubted\r\nundoubtedly\r\nundrape\r\nundreamed\r\nundreamt\r\nundress\r\nundressed\r\nundresses\r\nundressing\r\nundrinkable\r\nundue\r\nundulant\r\nundulate\r\nundulated\r\nundulates\r\nundulating\r\nundulation\r\nundulations\r\nunduly\r\nundutiful\r\nundying\r\nunearned\r\nunearth\r\nunearthed\r\nunearthing\r\nunearthliness\r\nunearthly\r\nunease\r\nuneasily\r\nuneasiness\r\nuneasy\r\nuneconomic\r\nuneconomical\r\nunedited\r\nuneducated\r\nunembellished\r\nunemotional\r\nunemotionally\r\nunemployable\r\nunemployed\r\nunemployment\r\nunencumbered\r\nunending\r\nunendingly\r\nunendurable\r\nunendurably\r\nunenforceable\r\nunenlightening\r\nunenthusiastic\r\nunenthusiastically\r\nunenviable\r\nunenvied\r\nunequal\r\nunequalled\r\nunequally\r\nunequivocal\r\nunequivocally\r\nunerring\r\nunerringly\r\nunessential\r\nunethically\r\nunevaluated\r\nuneven\r\nunevenly\r\nunevenness\r\nuneventful\r\nuneventfully\r\nunexamined\r\nunexampled\r\nunexceptionable\r\nunexceptionably\r\nunexceptional\r\nunexceptionally\r\nunexcited\r\nunexcused\r\nunexpanded\r\nunexpected\r\nunexpectedly\r\nunexpectedness\r\nunexpended\r\nunexplainable\r\nunexplained\r\nunexploited\r\nunexplored\r\nunexpressed\r\nunfading\r\nunfailing\r\nunfailingly\r\nunfair\r\nunfairly\r\nunfairness\r\nunfaith\r\nunfaithful\r\nunfaithfully\r\nunfaithfulness\r\nunfaltering\r\nunfalteringly\r\nunfamiliar\r\nunfamiliarity\r\nunfamiliarly\r\nunfashionable\r\nunfashionably\r\nunfasten\r\nunfastened\r\nunfathomable\r\nunfavourable\r\nunfavourably\r\nunfeeling\r\nunfeelingly\r\nunfeigned\r\nunfelt\r\nunfenced\r\nunfertile\r\nunfertilised\r\nunfetter\r\nunfettered\r\nunfilled\r\nunfinished\r\nunfired\r\nunfit\r\nunfitness\r\nunfitted\r\nunfitting\r\nunfix\r\nunfixable\r\nunfixed\r\nunflagging\r\nunflaggingly\r\nunflappability\r\nunflappable\r\nunflattering\r\nunflatteringly\r\nunflavoured\r\nunfledged\r\nunflinching\r\nunflinchingly\r\nunfocused\r\nunfold\r\nunfolded\r\nunfolding\r\nunfolds\r\nunforced\r\nunforeseen\r\nunforgettable\r\nunforgettably\r\nunforgivable\r\nunforgiving\r\nunformatted\r\nunformed\r\nunforthcoming\r\nunfortunate\r\nunfortunately\r\nunfortunates\r\nunfounded\r\nunfreeze\r\nunfrequented\r\nunfriendliness\r\nunfriendly\r\nunfrock\r\nunfrocking\r\nunfrosted\r\nunfrozen\r\nunfruitful\r\nunfruitfulness\r\nunfulfilled\r\nunfurl\r\nunfurled\r\nunfurnished\r\nunfussy\r\nungainliness\r\nungainly\r\nungallant\r\nungallantly\r\nungenerous\r\nungenerously\r\nunglamorous\r\nunglazed\r\nunglue\r\nunglued\r\nungodliness\r\nungodly\r\nungovernable\r\nungoverned\r\nungraceful\r\nungracefully\r\nungracious\r\nungraciously\r\nungrammatical\r\nungrammaticality\r\nungrateful\r\nungratefully\r\nungratefulness\r\nungratified\r\nungrounded\r\nungrudging\r\nunguarded\r\nunguardedly\r\nunguent\r\nunguided\r\nunguis\r\nungula\r\nungulate\r\nunhallowed\r\nunhampered\r\nunhand\r\nunhandsome\r\nunhandsomely\r\nunhandy\r\nunhappier\r\nunhappiest\r\nunhappily\r\nunhappiness\r\nunhappy\r\nunharmed\r\nunhealthily\r\nunhealthy\r\nunheard\r\nunheated\r\nunheeded\r\nunheeding\r\nunhelpful\r\nunhelpfully\r\nunheralded\r\nunhesitant\r\nunhesitating\r\nunhesitatingly\r\nunhinge\r\nunhinged\r\nunhitch\r\nunhitched\r\nunhitches\r\nunhitching\r\nunholy\r\nunhook\r\nunhooked\r\nunhooking\r\nunhooks\r\nunhorse\r\nunhorsed\r\nunhurried\r\nunhurriedly\r\nunhurt\r\nunicameral\r\nunicellular\r\nunicorn\r\nunicorn's\r\nunicorns\r\nunicycle\r\nunicyclist\r\nunidentifiable\r\nunidentified\r\nunidirectional\r\nunification\r\nunifications\r\nunified\r\nunifier\r\nunifiers\r\nunifies\r\nuniform\r\nuniformed\r\nuniformities\r\nuniformity\r\nuniformly\r\nuniforms\r\nunify\r\nunifying\r\nunilateral\r\nunilateralist\r\nunilateralists\r\nunilaterally\r\nunimaginable\r\nunimaginably\r\nunimaginative\r\nunimaginatively\r\nunimpaired\r\nunimpassioned\r\nunimpeachable\r\nunimpeachably\r\nunimpeded\r\nunimplemented\r\nunimportance\r\nunimportant\r\nunimposing\r\nunimpressed\r\nunimpressive\r\nunimproved\r\nunincorporated\r\nuninfected\r\nuninfluenced\r\nuninformative\r\nuninformed\r\nuninhabited\r\nuninhibited\r\nuninhibitedly\r\nuninitiated\r\nuninjured\r\nuninominal\r\nuninspired\r\nuninspiring\r\nunintelligence\r\nunintelligent\r\nunintelligently\r\nunintelligibility\r\nunintelligible\r\nunintelligibly\r\nunintended\r\nunintentional\r\nunintentionally\r\nuninterested\r\nuninteresting\r\nuninterestingly\r\nuninterrupted\r\nuninterruptedly\r\nuninvited\r\nuninvolved\r\nunion\r\nunion's\r\nunionisation\r\nunionisation's\r\nunionisations\r\nunionise\r\nunionised\r\nunionises\r\nunionising\r\nunionism\r\nunionist\r\nunionists\r\nunions\r\nunique\r\nuniquely\r\nuniqueness\r\nunisex\r\nunisexual\r\nunison\r\nunit\r\nunit's\r\nunitarily\r\nunitary\r\nunite\r\nunited\r\nunites\r\nunities\r\nuniting\r\nunitisation\r\nunitise\r\nunitised\r\nunitises\r\nunitising\r\nunits\r\nunity\r\nunity's\r\nunivalent\r\nunivalve\r\nunivalve's\r\nunivalves\r\nuniversal\r\nuniversalise\r\nuniversalised\r\nuniversalises\r\nuniversalising\r\nuniversalism\r\nuniversalistic\r\nuniversality\r\nuniversally\r\nuniversals\r\nuniverse\r\nuniverse's\r\nuniverses\r\nuniversities\r\nuniversity\r\nuniversity's\r\nunivocal\r\nunivocally\r\nunjacketed\r\nunjust\r\nunjustifiable\r\nunjustified\r\nunjustly\r\nunjustness\r\nunkempt\r\nunkind\r\nunkindly\r\nunkindness\r\nunknowable\r\nunknowing\r\nunknowingly\r\nunknown\r\nunknowns\r\nunlabelled\r\nunlace\r\nunlaced\r\nunlacing\r\nunlade\r\nunlamented\r\nunlash\r\nunlashed\r\nunlatch\r\nunlaundered\r\nunlawful\r\nunlawfully\r\nunlawfulness\r\nunleaded\r\nunlearn\r\nunlearned\r\nunlearnt\r\nunleash\r\nunleashed\r\nunleashes\r\nunleashing\r\nunleavened\r\nunless\r\nunlettered\r\nunlevelled\r\nunlicensed\r\nunlike\r\nunlikelihood\r\nunlikely\r\nunlikeness\r\nunlimber\r\nunlimbered\r\nunlimbering\r\nunlimbers\r\nunlimited\r\nunlimitedly\r\nunlined\r\nunlink\r\nunlinked\r\nunlinking\r\nunlinks\r\nunlisted\r\nunliterary\r\nunload\r\nunloaded\r\nunloading\r\nunloads\r\nunlock\r\nunlocked\r\nunlocking\r\nunlocks\r\nunloose\r\nunloosen\r\nunloved\r\nunlovely\r\nunluckily\r\nunluckiness\r\nunlucky\r\nunmade\r\nunmagnified\r\nunmake\r\nunman\r\nunmanageable\r\nunmanageably\r\nunmanaged\r\nunmanliness\r\nunmanly\r\nunmanned\r\nunmannered\r\nunmannerly\r\nunmapped\r\nunmarked\r\nunmarred\r\nunmarried\r\nunmask\r\nunmasked\r\nunmatchable\r\nunmatched\r\nunmated\r\nunmeaning\r\nunmeant\r\nunmeasured\r\nunmemorable\r\nunmentionable\r\nunmentionables\r\nunmentioned\r\nunmerciful\r\nunmercifully\r\nunmeritorious\r\nunmeshed\r\nunmet\r\nunmethodical\r\nunmindful\r\nunmistakable\r\nunmistakably\r\nunmitigated\r\nunmixed\r\nunmodified\r\nunmolested\r\nunmoor\r\nunmoral\r\nunmotivated\r\nunmoved\r\nunmoving\r\nunmurmuring\r\nunmusical\r\nunnameable\r\nunnamed\r\nunnatural\r\nunnaturally\r\nunnaturalness\r\nunnecessarily\r\nunnecessary\r\nunneeded\r\nunnerve\r\nunnerved\r\nunnerves\r\nunnerving\r\nunnervingly\r\nunnoticed\r\nunnourished\r\nunnumbered\r\nunobservable\r\nunobserved\r\nunobtainable\r\nunobtrusive\r\nunobtrusively\r\nunobtrusiveness\r\nunoccupied\r\nunofficial\r\nunofficially\r\nunopened\r\nunordered\r\nunorthodox\r\nunorthodoxly\r\nunorthodoxy\r\nunpack\r\nunpackaged\r\nunpacked\r\nunpacking\r\nunpacks\r\nunpadded\r\nunpaged\r\nunpaid\r\nunpainted\r\nunpaired\r\nunpalatable\r\nunparsed\r\nunpartisan\r\nunpatriotic\r\nunpaved\r\nunperceived\r\nunperformed\r\nunperturbed\r\nunperturbedly\r\nunphysical\r\nunpick\r\nunpin\r\nunplaced\r\nunplanned\r\nunpleasant\r\nunpleasantly\r\nunpleasantness\r\nunpleased\r\nunplug\r\nunplugged\r\nunplugging\r\nunplugs\r\nunplumbed\r\nunpolluted\r\nunpopular\r\nunpopularity\r\nunpractised\r\nunprecedented\r\nunpredictability\r\nunpredictable\r\nunpredictably\r\nunpredicted\r\nunprejudiced\r\nunpremeditated\r\nunprepared\r\nunprepossessing\r\nunpreserved\r\nunpretending\r\nunpretentious\r\nunpretentiously\r\nunpretentiousness\r\nunprincipled\r\nunprintable\r\nunprinted\r\nunprivileged\r\nunproblematic\r\nunprocessed\r\nunprocurable\r\nunproductive\r\nunprofessed\r\nunprofessional\r\nunprofitable\r\nunprofitably\r\nunpromising\r\nunpromisingly\r\nunprompted\r\nunpronounceable\r\nunpronounced\r\nunprotected\r\nunproved\r\nunproven\r\nunpublished\r\nunpunished\r\nunqualified\r\nunqualifiedly\r\nunquenched\r\nunquestionable\r\nunquestionably\r\nunquestioned\r\nunquestioning\r\nunquestioningly\r\nunquiet\r\nunquote\r\nunquoted\r\nunranked\r\nunravel\r\nunravelled\r\nunravelling\r\nunravels\r\nunreachable\r\nunread\r\nunreadable\r\nunready\r\nunreal\r\nunrealisable\r\nunrealised\r\nunrealism\r\nunrealistic\r\nunrealistically\r\nunreality\r\nunreason\r\nunreasonable\r\nunreasonableness\r\nunreasonably\r\nunreasoning\r\nunreasoningly\r\nunreassuringly\r\nunreceptive\r\nunrecognisable\r\nunrecognised\r\nunrecognising\r\nunreconstructed\r\nunrecorded\r\nunrecoverable\r\nunredeemable\r\nunredeemed\r\nunreel\r\nunreeling\r\nunrefined\r\nunreflective\r\nunregenerate\r\nunregistered\r\nunregulated\r\nunrehearsed\r\nunrelated\r\nunreleased\r\nunrelenting\r\nunrelentingly\r\nunreliability\r\nunreliable\r\nunreliably\r\nunrelieved\r\nunreligious\r\nunremarkable\r\nunremitting\r\nunremittingly\r\nunremunerated\r\nunrepentant\r\nunreported\r\nunrepresentative\r\nunrequited\r\nunreserved\r\nunreservedly\r\nunreservedness\r\nunresisting\r\nunresolved\r\nunresponsive\r\nunresponsively\r\nunresponsiveness\r\nunrest\r\nunrestrained\r\nunrestrainedly\r\nunrestricted\r\nunrestrictedly\r\nunrestrictive\r\nunreturned\r\nunrevealing\r\nunrewarding\r\nunrifled\r\nunrig\r\nunrighteous\r\nunrighteousness\r\nunripe\r\nunrivalled\r\nunroll\r\nunrolled\r\nunrolling\r\nunrolls\r\nunromantic\r\nunromantically\r\nunruffled\r\nunruliness\r\nunruly\r\nunsaddle\r\nunsafe\r\nunsafely\r\nunsaid\r\nunsalted\r\nunsanitary\r\nunsatisfactorily\r\nunsatisfactory\r\nunsatisfied\r\nunsatisfying\r\nunsaturated\r\nunsaved\r\nunsavourily\r\nunsavoury\r\nunsay\r\nunscathed\r\nunscheduled\r\nunschooled\r\nunscientific\r\nunscientifically\r\nunscramble\r\nunscrambled\r\nunscrambles\r\nunscrambling\r\nunscratched\r\nunscreened\r\nunscrew\r\nunscrewed\r\nunscrewing\r\nunscrews\r\nunscripted\r\nunscrupulous\r\nunscrupulously\r\nunscrupulousness\r\nunseal\r\nunsealed\r\nunsealing\r\nunseals\r\nunseasonable\r\nunseasonably\r\nunseasoned\r\nunseat\r\nunsecured\r\nunseeing\r\nunseemly\r\nunseen\r\nunselected\r\nunselective\r\nunselfconscious\r\nunselfconsciousness\r\nunselfish\r\nunselfishly\r\nunselfishness\r\nunsent\r\nunserviceable\r\nunset\r\nunsettle\r\nunsettled\r\nunsettledness\r\nunsettlement\r\nunsettling\r\nunsettlingly\r\nunsex\r\nunshackle\r\nunshakable\r\nunshakeable\r\nunshaken\r\nunshared\r\nunsharpened\r\nunshaved\r\nunshaven\r\nunsheathe\r\nunsheathing\r\nunshed\r\nunshelled\r\nunsheltered\r\nunshielded\r\nunship\r\nunshod\r\nunsighted\r\nunsightly\r\nunsigned\r\nunsinkable\r\nunskilful\r\nunskilled\r\nunsmiling\r\nunsmilingly\r\nunsnap\r\nunsnapped\r\nunsnapping\r\nunsnaps\r\nunsnarl\r\nunsociability\r\nunsociable\r\nunsociably\r\nunsocial\r\nunsold\r\nunsolder\r\nunsolicited\r\nunsolvable\r\nunsolved\r\nunsophisticated\r\nunsorted\r\nunsought\r\nunsound\r\nunsoundly\r\nunsoundness\r\nunsparing\r\nunsparingly\r\nunspeakable\r\nunspeakably\r\nunspeaking\r\nunspecialised\r\nunspecific\r\nunspecified\r\nunspectacular\r\nunspent\r\nunspoiled\r\nunspoken\r\nunspotted\r\nunsprayed\r\nunstable\r\nunstableness\r\nunstably\r\nunstained\r\nunstapled\r\nunstaring\r\nunsteadily\r\nunsteadiness\r\nunsteady\r\nunstilted\r\nunstinting\r\nunstintingly\r\nunstop\r\nunstoppable\r\nunstoppably\r\nunstopped\r\nunstrained\r\nunstressed\r\nunstring\r\nunstructured\r\nunstrung\r\nunstuck\r\nunstudied\r\nunstuffy\r\nunsubsidised\r\nunsubstantial\r\nunsubstantiated\r\nunsubtle\r\nunsuccessful\r\nunsuccessfully\r\nunsuitability\r\nunsuitable\r\nunsuitably\r\nunsuited\r\nunsung\r\nunsupportable\r\nunsupported\r\nunsupportive\r\nunsure\r\nunsurpassed\r\nunsurprised\r\nunsurprising\r\nunsurprisingly\r\nunsuspected\r\nunsuspecting\r\nunsuspended\r\nunswerving\r\nunsymmetrical\r\nunsympathetic\r\nunsynchronised\r\nunsystematic\r\nuntamed\r\nuntangle\r\nuntapped\r\nuntaught\r\nuntellable\r\nuntenable\r\nuntenanted\r\nuntested\r\nunthaw\r\nunthinkable\r\nunthinkably\r\nunthinking\r\nunthinkingly\r\nunthread\r\nuntidily\r\nuntidiness\r\nuntidy\r\nuntie\r\nuntied\r\nunties\r\nuntil\r\nuntimely\r\nuntitled\r\nunto\r\nuntold\r\nuntouchable\r\nuntouchable's\r\nuntouchables\r\nuntouched\r\nuntoward\r\nuntowardly\r\nuntraceable\r\nuntraced\r\nuntracked\r\nuntraditional\r\nuntrained\r\nuntrammelled\r\nuntransformed\r\nuntreated\r\nuntried\r\nuntroubled\r\nuntrue\r\nuntruly\r\nuntrustworthiness\r\nuntruth\r\nuntruthful\r\nuntruthfully\r\nuntruthfulness\r\nuntutored\r\nuntwine\r\nuntwist\r\nuntwisted\r\nuntying\r\nuntypical\r\nunusable\r\nunused\r\nunusual\r\nunusually\r\nunusualness\r\nunutterable\r\nunutterably\r\nunuttered\r\nunvalued\r\nunvarnished\r\nunvarying\r\nunveil\r\nunveiled\r\nunveiling\r\nunveils\r\nunventilated\r\nunverified\r\nunvisited\r\nunvocal\r\nunvoiced\r\nunwaged\r\nunwanted\r\nunwarily\r\nunwariness\r\nunwarrantable\r\nunwarrantably\r\nunwarranted\r\nunwary\r\nunwashed\r\nunwatched\r\nunwavering\r\nunwaveringly\r\nunwearied\r\nunwed\r\nunwelcome\r\nunwell\r\nunwept\r\nunwholesome\r\nunwholesomely\r\nunwieldiness\r\nunwieldy\r\nunwilled\r\nunwilling\r\nunwillingly\r\nunwillingness\r\nunwind\r\nunwinding\r\nunwinds\r\nunwire\r\nunwired\r\nunwise\r\nunwisely\r\nunwished\r\nunwitting\r\nunwittingly\r\nunwomanly\r\nunwonted\r\nunwontedly\r\nunworkable\r\nunworldly\r\nunworn\r\nunworthily\r\nunworthiness\r\nunworthy\r\nunwound\r\nunwounded\r\nunwoven\r\nunwrap\r\nunwrapped\r\nunwrapping\r\nunwraps\r\nunwrinkled\r\nunwritten\r\nunyielding\r\nunyieldingly\r\nunyoke\r\nunzip\r\nup\r\nupbeat\r\nupbraid\r\nupbringing\r\nupchuck\r\nupcoming\r\nupcountry\r\nupdate\r\nupdated\r\nupdater\r\nupdates\r\nupdating\r\nupend\r\nupgrade\r\nupgraded\r\nupgrades\r\nupgrading\r\nupheaval\r\nupheavals\r\nupheld\r\nuphill\r\nuphold\r\nupholder\r\nupholders\r\nupholding\r\nupholds\r\nupholster\r\nupholstered\r\nupholsterer\r\nupholsterers\r\nupholstering\r\nupholsters\r\nupholstery\r\nupkeep\r\nupland\r\nuplands\r\nuplift\r\nuplifted\r\nuplifting\r\nuplifts\r\nupload\r\nuploaded\r\nuploading\r\nuploads\r\nupon\r\nupped\r\nupper\r\nuppercase\r\nuppercased\r\nuppercases\r\nuppercasing\r\nupperclassman\r\nupperclassmen\r\nuppercut\r\nuppermost\r\nuppers\r\nupping\r\nuppish\r\nuppity\r\nupraise\r\nupraised\r\nupright\r\nuprightly\r\nuprightness\r\nuprising\r\nuprising's\r\nuprisings\r\nupriver\r\nuproar\r\nuproarious\r\nuproariously\r\nuproot\r\nuprooted\r\nuprooting\r\nuproots\r\nups\r\nupset\r\nupsets\r\nupsetting\r\nupshot\r\nupshot's\r\nupshots\r\nupside\r\nupsides\r\nupsilon\r\nupslope\r\nupspring\r\nupstage\r\nupstaged\r\nupstages\r\nupstaging\r\nupstairs\r\nupstanding\r\nupstart\r\nupstate\r\nupstream\r\nupstroke\r\nupsurge\r\nupsweep\r\nupswept\r\nupswing\r\nupswings\r\nuptake\r\nuptight\r\nuptime\r\nuptown\r\nupturn\r\nupturned\r\nupturning\r\nupturns\r\nupward\r\nupwardly\r\nupwards\r\nupwind\r\nuraemia\r\nuranium\r\nurban\r\nurbane\r\nurbanely\r\nurbanisation\r\nurbanisation's\r\nurbanisations\r\nurbanise\r\nurbanised\r\nurbanises\r\nurbanising\r\nurbanism\r\nurbanite\r\nurbanites\r\nurbanity\r\nurchin\r\nurchin's\r\nurchins\r\nurea\r\nurethane\r\nurethanes\r\nurethra\r\nurethral\r\nurge\r\nurged\r\nurgencies\r\nurgency\r\nurgent\r\nurgently\r\nurges\r\nurging\r\nurgings\r\nuric\r\nurinal\r\nurinals\r\nurinalysis\r\nurinary\r\nurinate\r\nurinated\r\nurinates\r\nurinating\r\nurination\r\nurine\r\nurn\r\nurn's\r\nurns\r\nurologist\r\nurology\r\nursine\r\nus\r\nusability\r\nusable\r\nusage\r\nusages\r\nuse\r\nuseably\r\nused\r\nuseful\r\nusefully\r\nusefulness\r\nuseless\r\nuselessly\r\nuselessness\r\nuser\r\nuser's\r\nusername\r\nusernames\r\nusers\r\nuses\r\nusher\r\nushered\r\nusherette\r\nushering\r\nushers\r\nusing\r\nusual\r\nusually\r\nusualness\r\nusufruct\r\nusurer\r\nusurious\r\nusuriously\r\nusurp\r\nusurpation\r\nusurped\r\nusurper\r\nusury\r\nutensil\r\nutensil's\r\nutensils\r\nuterine\r\nuterus\r\nuteruses\r\nutile\r\nutilisable\r\nutilisation\r\nutilise\r\nutilised\r\nutilises\r\nutilising\r\nutilitarian\r\nutilitarianism\r\nutilities\r\nutility\r\nutility's\r\nutmost\r\nutopia\r\nutopian\r\nutopian's\r\nutopianism\r\nutopians\r\nutopias\r\nutricle\r\nutter\r\nutterance\r\nutterance's\r\nutterances\r\nuttered\r\nuttering\r\nutterly\r\nuttermost\r\nutters\r\nuveitis\r\nuvula\r\nuvular\r\nuxorial\r\nuxorious\r\nuxoriously\r\nvacancies\r\nvacancy\r\nvacancy's\r\nvacant\r\nvacantly\r\nvacate\r\nvacated\r\nvacates\r\nvacating\r\nvacation\r\nvacationed\r\nvacationer\r\nvacationers\r\nvacationing\r\nvacationland\r\nvacations\r\nvaccinate\r\nvaccinated\r\nvaccinates\r\nvaccinating\r\nvaccination\r\nvaccinations\r\nvaccinator\r\nvaccinators\r\nvaccine\r\nvaccines\r\nvacillate\r\nvacillated\r\nvacillates\r\nvacillating\r\nvacillatingly\r\nvacillation\r\nvacillations\r\nvacillator\r\nvacillator's\r\nvacillators\r\nvacuity\r\nvacuolated\r\nvacuole\r\nvacuoles\r\nvacuolisation\r\nvacuolisation's\r\nvacuolisations\r\nvacuous\r\nvacuously\r\nvacuum\r\nvacuumed\r\nvacuuming\r\nvacuums\r\nvagabond\r\nvagabond's\r\nvagabondage\r\nvagabonds\r\nvagaries\r\nvagarious\r\nvagary\r\nvagary's\r\nvagina\r\nvagina's\r\nvaginal\r\nvaginally\r\nvaginas\r\nvagrancy\r\nvagrant\r\nvagrantly\r\nvagrants\r\nvague\r\nvaguely\r\nvagueness\r\nvaguer\r\nvaguest\r\nvain\r\nvainglorious\r\nvaingloriously\r\nvainglory\r\nvainly\r\nvainness\r\nvalance\r\nvalances\r\nvale\r\nvale's\r\nvalediction\r\nvaledictorian\r\nvaledictorian's\r\nvaledictory\r\nvalence\r\nvalence's\r\nvalences\r\nvalentine\r\nvalentine's\r\nvalentines\r\nvalerian\r\nvales\r\nvalet\r\nvalet's\r\nvalets\r\nvaletudinarian\r\nvaletudinarianism\r\nvaliant\r\nvaliantly\r\nvalid\r\nvalidate\r\nvalidated\r\nvalidates\r\nvalidating\r\nvalidation\r\nvalidations\r\nvalidity\r\nvalidly\r\nvalise\r\nvalises\r\nvalley\r\nvalley's\r\nvalleys\r\nvalorisation\r\nvalorisation's\r\nvalorisations\r\nvalorise\r\nvalorised\r\nvalorises\r\nvalorising\r\nvalorous\r\nvalorously\r\nvalour\r\nvalour's\r\nvaluable\r\nvaluables\r\nvaluably\r\nvaluate\r\nvaluated\r\nvaluates\r\nvaluating\r\nvaluation\r\nvaluation's\r\nvaluations\r\nvaluator\r\nvaluators\r\nvalue\r\nvalued\r\nvalueless\r\nvalues\r\nvaluing\r\nvalve\r\nvalve's\r\nvalves\r\nvamoose\r\nvamoosed\r\nvamooses\r\nvamoosing\r\nvamp\r\nvampire\r\nvampires\r\nvampirism\r\nvan\r\nvan's\r\nvanadium\r\nvandal\r\nvandalise\r\nvandalised\r\nvandalises\r\nvandalising\r\nvandalism\r\nvandals\r\nvane\r\nvane's\r\nvanes\r\nvanguard\r\nvanilla\r\nvanillin\r\nvanish\r\nvanished\r\nvanishes\r\nvanishing\r\nvanities\r\nvanity\r\nvanquish\r\nvanquished\r\nvanquisher\r\nvanquishes\r\nvanquishing\r\nvans\r\nvantage\r\nvantages\r\nvapid\r\nvapidity\r\nvapidly\r\nvaporetto\r\nvaporisable\r\nvaporisation\r\nvaporisation's\r\nvaporisations\r\nvaporise\r\nvaporised\r\nvaporiser\r\nvaporisers\r\nvaporises\r\nvaporising\r\nvaporous\r\nvaporously\r\nvapour\r\nvapour's\r\nvapours\r\nvaquero\r\nvariability\r\nvariable\r\nvariable's\r\nvariableness\r\nvariables\r\nvariably\r\nvariac\r\nvariance\r\nvariance's\r\nvariances\r\nvariant\r\nvariants\r\nvariation\r\nvariation's\r\nvariations\r\nvaricoloured\r\nvaricose\r\nvaricosity\r\nvaried\r\nvariedly\r\nvariegate\r\nvariegated\r\nvariegation\r\nvaries\r\nvarieties\r\nvariety\r\nvariety's\r\nvariorum\r\nvarious\r\nvariously\r\nvaristor\r\nvarlet\r\nvarmint\r\nvarnish\r\nvarnish's\r\nvarnished\r\nvarnishes\r\nvarnishing\r\nvarsity\r\nvary\r\nvarying\r\nvaryingly\r\nvas\r\nvascular\r\nvase\r\nvase's\r\nvasectomies\r\nvasectomy\r\nvases\r\nvasoconstriction\r\nvasoconstrictor\r\nvasodilatation\r\nvasodilator\r\nvasomotor\r\nvasospasm\r\nvassal\r\nvassalage\r\nvassals\r\nvast\r\nvaster\r\nvastest\r\nvastly\r\nvastness\r\nvat\r\nvat's\r\nvatic\r\nvaticinator\r\nvats\r\nvaudeville\r\nvaudevillian\r\nvault\r\nvaulted\r\nvaulting\r\nvaults\r\nvaunt\r\nvaunted\r\nveal\r\nvector\r\nvector's\r\nvectored\r\nvectoring\r\nvectors\r\nveer\r\nveered\r\nveering\r\nveers\r\nvegan\r\nvegetable\r\nvegetable's\r\nvegetables\r\nvegetal\r\nvegetarian\r\nvegetarian's\r\nvegetarianism\r\nvegetarians\r\nvegetate\r\nvegetated\r\nvegetates\r\nvegetating\r\nvegetation\r\nvegetative\r\nvehemence\r\nvehement\r\nvehemently\r\nvehicle\r\nvehicle's\r\nvehicles\r\nvehicular\r\nveil\r\nveiled\r\nveiling\r\nveils\r\nvein\r\nveined\r\nveining\r\nveins\r\nveinstone\r\nvela\r\nvelar\r\nveldt\r\nveldt's\r\nveldts\r\nvellum\r\nvelocipede\r\nvelocities\r\nvelocity\r\nvelocity's\r\nvelour\r\nvelum\r\nvelvet\r\nvelveteen\r\nvelvety\r\nvena\r\nvenal\r\nvenality\r\nvenally\r\nvenation\r\nvend\r\nvendee\r\nvender\r\nvendetta\r\nvendible\r\nvending\r\nvendor\r\nvendor's\r\nvendors\r\nveneer\r\nveneering\r\nvenerability\r\nvenerable\r\nvenerably\r\nvenerate\r\nvenerated\r\nvenerates\r\nvenerating\r\nveneration\r\nvenerations\r\nvenerator\r\nvenereal\r\nvenery\r\nvengeance\r\nvengeful\r\nvengefully\r\nvengefulness\r\nvenial\r\nvenially\r\nvenire\r\nvenison\r\nvenom\r\nvenomous\r\nvenomously\r\nvenomousness\r\nvenous\r\nvent\r\nvented\r\nventilate\r\nventilated\r\nventilates\r\nventilating\r\nventilation\r\nventilations\r\nventilator\r\nventing\r\nventral\r\nventrally\r\nventricle\r\nventricle's\r\nventricles\r\nventricular\r\nventriloquism\r\nventriloquist\r\nventriloquist's\r\nventriloquists\r\nvents\r\nventure\r\nventured\r\nventures\r\nventuresome\r\nventuresomely\r\nventuri\r\nventuring\r\nventurous\r\nvenue\r\nvenue's\r\nvenues\r\nveracious\r\nveraciously\r\nveracity\r\nveranda\r\nveranda's\r\nverandas\r\nverb\r\nverb's\r\nverbal\r\nverbalisation\r\nverbalisation's\r\nverbalisations\r\nverbalise\r\nverbalised\r\nverbalises\r\nverbalising\r\nverbalism\r\nverbally\r\nverbatim\r\nverbena\r\nverbenas\r\nverbiage\r\nverbose\r\nverbosely\r\nverboseness\r\nverbosity\r\nverbs\r\nverdant\r\nverdantly\r\nverderer\r\nverdict\r\nverdicts\r\nverdigris\r\nverdure\r\nverdurous\r\nverge\r\nverger\r\nverges\r\nveridical\r\nverifiability\r\nverifiable\r\nverifiably\r\nverification\r\nverifications\r\nverified\r\nverifier\r\nverifier's\r\nverifiers\r\nverifies\r\nverify\r\nverifying\r\nverily\r\nverisimilar\r\nverisimilarly\r\nverisimilitude\r\nveritable\r\nveritably\r\nverity\r\nvermeil\r\nvermicelli\r\nvermicide\r\nvermicular\r\nvermiculate\r\nvermiculated\r\nvermiculite\r\nvermiform\r\nvermilion\r\nvermin\r\nvermouth\r\nvernacular\r\nvernacularism\r\nvernacularly\r\nvernal\r\nvernally\r\nvernier\r\nversa\r\nversant\r\nversatile\r\nversatility\r\nverse\r\nversed\r\nverses\r\nversicle\r\nversification\r\nversifier\r\nversify\r\nversion\r\nversions\r\nverso\r\nversos\r\nversus\r\nvertebra\r\nvertebrae\r\nvertebral\r\nvertebrate\r\nvertebrate's\r\nvertebrates\r\nvertex\r\nvertexes\r\nvertical\r\nverticality\r\nvertically\r\nverticals\r\nvertices\r\nvertiginous\r\nvertiginously\r\nvertigo\r\nverve\r\nvery\r\nvesicant\r\nvesicle\r\nvesicles\r\nvesicular\r\nvesper\r\nvespers\r\nvessel\r\nvessel's\r\nvessels\r\nvest\r\nvestal\r\nvested\r\nvestibule\r\nvestige\r\nvestige's\r\nvestiges\r\nvestigial\r\nvesting\r\nvestment\r\nvestments\r\nvestries\r\nvestry\r\nvestryman\r\nvests\r\nvesture\r\nvestured\r\nvestures\r\nvesturing\r\nvet\r\nvetch\r\nveteran\r\nveteran's\r\nveterans\r\nveterinarian\r\nveterinarian's\r\nveterinarians\r\nveterinary\r\nveto\r\nvetoed\r\nvetoes\r\nvetoing\r\nvetted\r\nvetting\r\nvex\r\nvexation\r\nvexatious\r\nvexed\r\nvexes\r\nvexing\r\nvi\r\nvia\r\nviability\r\nviable\r\nviably\r\nviaduct\r\nviaducts\r\nvial\r\nvial's\r\nvials\r\nviand\r\nviands\r\nviaticum\r\nvibes\r\nvibrancy\r\nvibrant\r\nvibrantly\r\nvibraphone\r\nvibraphonist\r\nvibrate\r\nvibrated\r\nvibrates\r\nvibrating\r\nvibration\r\nvibrations\r\nvibrato\r\nvibrator\r\nvibratory\r\nvibrissae\r\nvicar\r\nvicarage\r\nvicariate\r\nvicarious\r\nvicariously\r\nvicariousness\r\nvice\r\nvice's\r\nvicegerent\r\nviceroy\r\nviceroyalty\r\nvices\r\nvichyssoise\r\nvicinage\r\nvicinal\r\nvicinities\r\nvicinity\r\nvicious\r\nviciously\r\nviciousness\r\nvicissitude\r\nvicissitude's\r\nvicissitudes\r\nvictim\r\nvictim's\r\nvictimisation\r\nvictimisation's\r\nvictimisations\r\nvictimise\r\nvictimised\r\nvictimiser\r\nvictimisers\r\nvictimises\r\nvictimising\r\nvictims\r\nvictor\r\nvictor's\r\nvictories\r\nvictorious\r\nvictoriously\r\nvictors\r\nvictory\r\nvictory's\r\nvictual\r\nvictualler\r\nvictualling\r\nvictuals\r\nvicuna\r\nvide\r\nvideo\r\nvideophone\r\nvideos\r\nvideotape\r\nvideotape's\r\nvideotaped\r\nvideotapes\r\nvideotaping\r\nvideotex\r\nvie\r\nvied\r\nvies\r\nview\r\nviewable\r\nviewed\r\nviewer\r\nviewers\r\nviewfinder\r\nviewfinder's\r\nviewfinders\r\nviewgraph\r\nviewgraph's\r\nviewing\r\nviewings\r\nviewless\r\nviewpoint\r\nviewpoint's\r\nviewpoints\r\nviews\r\nvigil\r\nvigilance\r\nvigilant\r\nvigilante\r\nvigilante's\r\nvigilantes\r\nvigilantism\r\nvigilantly\r\nvignette\r\nvignette's\r\nvignettes\r\nvigorous\r\nvigorously\r\nvigorousness\r\nvigour\r\nvigour's\r\nvii\r\nviii\r\nvile\r\nvilely\r\nvileness\r\nviler\r\nvilest\r\nvilification\r\nvilifications\r\nvilified\r\nvilifies\r\nvilify\r\nvilifying\r\nvilipend\r\nvilla\r\nvilla's\r\nvillage\r\nvillage's\r\nvillager\r\nvillagers\r\nvillages\r\nvillain\r\nvillain's\r\nvillainous\r\nvillainously\r\nvillains\r\nvillainy\r\nvillanelle\r\nvillas\r\nvillous\r\nvim\r\nvinaigrette\r\nvinculum\r\nvindicate\r\nvindicated\r\nvindicates\r\nvindicating\r\nvindication\r\nvindicator\r\nvindicators\r\nvindicatory\r\nvindictive\r\nvindictively\r\nvindictiveness\r\nvine\r\nvine's\r\nvinedresser\r\nvinedressers\r\nvinegar\r\nvinegarish\r\nvinegars\r\nvinegary\r\nvinery\r\nvines\r\nvineyard\r\nvineyard's\r\nvineyards\r\nviniculture\r\nviniferous\r\nvinous\r\nvintage\r\nvintages\r\nvintner\r\nvinyl\r\nviol\r\nviola\r\nviolability\r\nviolable\r\nviolate\r\nviolated\r\nviolates\r\nviolating\r\nviolation\r\nviolations\r\nviolator\r\nviolator's\r\nviolators\r\nviolence\r\nviolent\r\nviolently\r\nviolet\r\nviolet's\r\nviolets\r\nviolin\r\nviolin's\r\nviolinist\r\nviolinist's\r\nviolinists\r\nviolins\r\nviolist\r\nvioloncello\r\nviper\r\nviper's\r\nviperous\r\nviperously\r\nvipers\r\nvirago\r\nviral\r\nvirally\r\nvireo\r\nvirgin\r\nvirgin's\r\nvirginal\r\nvirginally\r\nvirginity\r\nvirgins\r\nvirgule\r\nviridian\r\nvirile\r\nvirility\r\nvirologist\r\nvirology\r\nvirtual\r\nvirtualises\r\nvirtually\r\nvirtue\r\nvirtue's\r\nvirtues\r\nvirtuosi\r\nvirtuosity\r\nvirtuoso\r\nvirtuoso's\r\nvirtuosos\r\nvirtuous\r\nvirtuously\r\nvirtuousness\r\nvirulence\r\nvirulent\r\nvirulently\r\nvirus\r\nvirus's\r\nviruses\r\nvisa\r\nvisage\r\nvisas\r\nviscera\r\nvisceral\r\nviscerally\r\nviscid\r\nviscidity\r\nviscidly\r\nviscometer\r\nviscometer's\r\nviscometers\r\nviscose\r\nviscosities\r\nviscosity\r\nviscount\r\nviscount's\r\nviscounts\r\nviscous\r\nviscously\r\nvisibilities\r\nvisibility\r\nvisible\r\nvisibly\r\nvision\r\nvision's\r\nvisionary\r\nvisioning\r\nvisionless\r\nvisions\r\nvisit\r\nvisitant\r\nvisitation\r\nvisitation's\r\nvisitations\r\nvisited\r\nvisiting\r\nvisitor\r\nvisitor's\r\nvisitors\r\nvisits\r\nvisor\r\nvisor's\r\nvisors\r\nvista\r\nvista's\r\nvistas\r\nvisual\r\nvisualisation\r\nvisualisation's\r\nvisualisations\r\nvisualise\r\nvisualised\r\nvisualises\r\nvisualising\r\nvisually\r\nvisuals\r\nvita\r\nvitae\r\nvital\r\nvitalisation\r\nvitalisation's\r\nvitalisations\r\nvitalise\r\nvitalised\r\nvitalises\r\nvitalising\r\nvitality\r\nvitally\r\nvitals\r\nvitamin\r\nvitamin's\r\nvitamins\r\nvitiate\r\nvitiated\r\nvitiates\r\nvitiating\r\nvitiation\r\nviticulture\r\nviticulturist\r\nvitreous\r\nvitrify\r\nvitriol\r\nvitriolic\r\nvitro\r\nvituperate\r\nvituperation\r\nvituperative\r\nvituperatively\r\nvituperator\r\nviva\r\nvivacious\r\nvivaciously\r\nvivaciousness\r\nvivacity\r\nvive\r\nvivid\r\nvividly\r\nvividness\r\nvivification\r\nvivified\r\nvivify\r\nviviparous\r\nvivisect\r\nvivisection\r\nvivisectionist\r\nvivo\r\nvixen\r\nvizier\r\nvocabularies\r\nvocabulary\r\nvocal\r\nvocalic\r\nvocalically\r\nvocalisation\r\nvocalisation's\r\nvocalisations\r\nvocalise\r\nvocalised\r\nvocalises\r\nvocalising\r\nvocalism\r\nvocalist\r\nvocalists\r\nvocally\r\nvocals\r\nvocation\r\nvocation's\r\nvocational\r\nvocationally\r\nvocations\r\nvocative\r\nvocatively\r\nvociferate\r\nvociferation\r\nvociferous\r\nvociferously\r\nvociferousness\r\nvocoded\r\nvocoder\r\nvodka\r\nvodka's\r\nvogue\r\nvoguish\r\nvoice\r\nvoiceband\r\nvoiced\r\nvoiceless\r\nvoicelessly\r\nvoiceprint\r\nvoices\r\nvoicing\r\nvoid\r\nvoidance\r\nvoided\r\nvoiding\r\nvoids\r\nvoila\r\nvoile\r\nvolatile\r\nvolatiles\r\nvolatilisation\r\nvolatilisation's\r\nvolatilisations\r\nvolatilise\r\nvolatilises\r\nvolatilising\r\nvolatilities\r\nvolatility\r\nvolcanic\r\nvolcanically\r\nvolcanism\r\nvolcano\r\nvolcano's\r\nvolcanoes\r\nvole\r\nvoles\r\nvolition\r\nvolitional\r\nvolitionally\r\nvolley\r\nvolleyball\r\nvolleyball's\r\nvolleyballs\r\nvolleyed\r\nvolleying\r\nvolleys\r\nvolt\r\nvoltage\r\nvoltages\r\nvoltaic\r\nvoltammeter\r\nvoltmeter\r\nvoltmeter's\r\nvoltmeters\r\nvolts\r\nvolubility\r\nvoluble\r\nvolubly\r\nvolume\r\nvolume's\r\nvolumes\r\nvolumetric\r\nvolumetrically\r\nvoluminous\r\nvoluminously\r\nvoluntarily\r\nvoluntarism\r\nvoluntary\r\nvolunteer\r\nvolunteered\r\nvolunteering\r\nvolunteerism\r\nvolunteers\r\nvoluptuary\r\nvoluptuous\r\nvoluptuously\r\nvolute\r\nvomit\r\nvomited\r\nvomiting\r\nvomits\r\nvon\r\nvoodoo\r\nvoodooist\r\nvoodoos\r\nvoracious\r\nvoraciously\r\nvoraciousness\r\nvoracity\r\nvortex\r\nvortexes\r\nvortices\r\nvotary\r\nvote\r\nvoted\r\nvoter\r\nvoters\r\nvotes\r\nvoting\r\nvotive\r\nvouch\r\nvoucher\r\nvouchers\r\nvouches\r\nvouching\r\nvouchsafe\r\nvouchsafed\r\nvouchsafes\r\nvouchsafing\r\nvow\r\nvowed\r\nvowel\r\nvowel's\r\nvowels\r\nvowing\r\nvows\r\nvox\r\nvoyage\r\nvoyaged\r\nvoyager\r\nvoyagers\r\nvoyages\r\nvoyageur\r\nvoyageurs\r\nvoyaging\r\nvoyeur\r\nvoyeurism\r\nvoyeuristic\r\nvoyeuristically\r\nvoyeurs\r\nvroom\r\nvulcanisation\r\nvulcanisation's\r\nvulcanisations\r\nvulcanise\r\nvulcanised\r\nvulcanises\r\nvulcanising\r\nvulcanology\r\nvulgar\r\nvulgarisation\r\nvulgarisation's\r\nvulgarisations\r\nvulgarise\r\nvulgarised\r\nvulgarises\r\nvulgarising\r\nvulgarism\r\nvulgarity\r\nvulgarly\r\nvulgate\r\nvulnerabilities\r\nvulnerability\r\nvulnerable\r\nvulnerably\r\nvulnerary\r\nvulpine\r\nvulture\r\nvulture's\r\nvultures\r\nvulva\r\nvulvae\r\nvying\r\nwackier\r\nwackiness\r\nwacko\r\nwacky\r\nwad\r\nwadded\r\nwadding\r\nwaddle\r\nwaddled\r\nwaddles\r\nwaddling\r\nwade\r\nwaded\r\nwader\r\nwaders\r\nwades\r\nwadi\r\nwading\r\nwads\r\nwafer\r\nwafer's\r\nwafers\r\nwaffle\r\nwaffle's\r\nwaffled\r\nwaffles\r\nwaffling\r\nwaft\r\nwag\r\nwage\r\nwaged\r\nwager\r\nwagered\r\nwagering\r\nwagers\r\nwages\r\nwageworker\r\nwagged\r\nwagging\r\nwaggish\r\nwaggishly\r\nwaggishness\r\nwaggle\r\nwaggled\r\nwaggles\r\nwaggling\r\nwaging\r\nwagon\r\nwagon's\r\nwagonload\r\nwagonload's\r\nwagonloads\r\nwagons\r\nwags\r\nwagtail\r\nwaif\r\nwail\r\nwailed\r\nwailer\r\nwailing\r\nwails\r\nwainscot\r\nwainscoted\r\nwainscoting\r\nwainscots\r\nwaist\r\nwaist's\r\nwaistband\r\nwaistcloth\r\nwaistcoat\r\nwaistcoat's\r\nwaistcoats\r\nwaistline\r\nwaists\r\nwait\r\nwaited\r\nwaiter\r\nwaiter's\r\nwaiters\r\nwaiting\r\nwaitress\r\nwaitress's\r\nwaitresses\r\nwaits\r\nwaive\r\nwaived\r\nwaiver\r\nwaivers\r\nwaives\r\nwaiving\r\nwake\r\nwaked\r\nwakeful\r\nwakefully\r\nwakefulness\r\nwaken\r\nwakened\r\nwakening\r\nwakes\r\nwakeup\r\nwaking\r\nwale\r\nwaling\r\nwalk\r\nwalkabout\r\nwalked\r\nwalker\r\nwalkers\r\nwalking\r\nwalkout\r\nwalkover\r\nwalks\r\nwalkway\r\nwalkway's\r\nwalkways\r\nwall\r\nwall's\r\nwallaby\r\nwallah\r\nwallboard\r\nwalled\r\nwallet\r\nwallet's\r\nwallets\r\nwalleye\r\nwalleyed\r\nwallflower\r\nwalling\r\nwallop\r\nwalloped\r\nwalloping\r\nwallops\r\nwallow\r\nwallowed\r\nwallowing\r\nwallows\r\nwallpaper\r\nwallpapers\r\nwalls\r\nwally\r\nwalnut\r\nwalnut's\r\nwalnuts\r\nwalrus\r\nwalrus's\r\nwalruses\r\nwaltz\r\nwaltzed\r\nwaltzes\r\nwaltzing\r\nwampum\r\nwan\r\nwand\r\nwander\r\nwandered\r\nwanderer\r\nwanderers\r\nwandering\r\nwanderings\r\nwanderlust\r\nwanders\r\nwane\r\nwaned\r\nwanes\r\nwangle\r\nwangled\r\nwangles\r\nwangling\r\nwaning\r\nwank\r\nwankel\r\nwanly\r\nwant\r\nwanted\r\nwanting\r\nwanton\r\nwantonly\r\nwantonness\r\nwants\r\nwapiti\r\nwapitis\r\nwar\r\nwar's\r\nwarble\r\nwarbled\r\nwarbler\r\nwarbles\r\nwarbling\r\nwar bonnet\r\nward\r\nwarded\r\nwarden\r\nwardens\r\nwarder\r\nwarding\r\nwardress\r\nwardrobe\r\nwardrobe's\r\nwardrobes\r\nwardroom\r\nwardrooms\r\nwards\r\nwardship\r\nware\r\nwarehouse\r\nwarehoused\r\nwarehouseman\r\nwarehousemen\r\nwarehouses\r\nwarehousing\r\nwareroom\r\nwares\r\nwarfare\r\nwarhead\r\nwarheads\r\nwarhorse\r\nwarhorses\r\nwarier\r\nwariest\r\nwarily\r\nwariness\r\nwarless\r\nwarlike\r\nwarlock\r\nwarlord\r\nwarlords\r\nwarm\r\nwarmed\r\nwarmer\r\nwarmers\r\nwarmest\r\nwarming\r\nwarmish\r\nwarmly\r\nwarmness\r\nwarmonger\r\nwarmongering\r\nwarmongers\r\nwarms\r\nwarmth\r\nwarn\r\nwarned\r\nwarning\r\nwarningly\r\nwarnings\r\nwarns\r\nwarp\r\nwarp's\r\nwarpath\r\nwarped\r\nwarping\r\nwarplane\r\nwarplane's\r\nwarplanes\r\nwarps\r\nwarrant\r\nwarrantable\r\nwarranted\r\nwarrantee\r\nwarrantees\r\nwarranties\r\nwarranting\r\nwarrantor\r\nwarrantors\r\nwarrants\r\nwarranty\r\nwarranty's\r\nwarred\r\nwarren\r\nwarrens\r\nwarring\r\nwarrior\r\nwarrior's\r\nwarriors\r\nwars\r\nwarship\r\nwarship's\r\nwarships\r\nwart\r\nwart's\r\nwartime\r\nwartimes\r\nwarts\r\nwarty\r\nwary\r\nwas\r\nwash\r\nwashable\r\nwashbasin\r\nwashboard\r\nwashbowl\r\nwashcloth\r\nwashcloths\r\nwashday\r\nwashdays\r\nwashed\r\nwasher\r\nwashers\r\nwasherwoman\r\nwasherwomen\r\nwashes\r\nwashhouse\r\nwashing\r\nwashings\r\nwashout\r\nwashrag\r\nwashroom\r\nwashrooms\r\nwashstand\r\nwashstands\r\nwashtub\r\nwashtubs\r\nwashwoman\r\nwashwomen\r\nwashy\r\nwasn't\r\nwasp\r\nwasp's\r\nwaspish\r\nwaspishly\r\nwaspishness\r\nwasps\r\nwassail\r\nwassailer\r\nwassailing\r\nwassails\r\nwastage\r\nwastages\r\nwaste\r\nwastebasket\r\nwastebaskets\r\nwasted\r\nwasteful\r\nwastefully\r\nwastefulness\r\nwasteland\r\nwastelands\r\nwastepaper\r\nwaster\r\nwastes\r\nwastewater\r\nwasting\r\nwastrel\r\nwastrels\r\nwatch\r\nwatchband\r\nwatchcase\r\nwatchdog\r\nwatched\r\nwatcher\r\nwatchers\r\nwatches\r\nwatcheye\r\nwatchful\r\nwatchfully\r\nwatchfulness\r\nwatching\r\nwatchmaker\r\nwatchmakers\r\nwatchman\r\nwatchmen\r\nwatchstrap\r\nwatchtower\r\nwatchword\r\nwatchword's\r\nwatchwords\r\nwater\r\nwaterborne\r\nwaterbuck\r\nwatercolour\r\nwatercolour's\r\nwatercolours\r\nwatercourse\r\nwatercraft\r\nwatercress\r\nwatered\r\nwaterfall\r\nwaterfall's\r\nwaterfalls\r\nwaterfowl\r\nwaterfowl's\r\nwaterfront\r\nwaterhole\r\nwaterhole's\r\nwaterholes\r\nwateriness\r\nwatering\r\nwaterish\r\nwaterless\r\nwaterlessness\r\nwaterline\r\nwaterlines\r\nwaterlog\r\nwaterlogged\r\nwaterloo\r\nwaterman\r\nwatermark\r\nwatermelon\r\nwaterpower\r\nwaterproof\r\nwaterproofed\r\nwaterproofing\r\nwaterproofs\r\nwaters\r\nwaterscape\r\nwatershed\r\nwatersheds\r\nwaterside\r\nwaterspout\r\nwatertight\r\nwater tower\r\nwaterway\r\nwaterway's\r\nwaterways\r\nwaterweed\r\nwaterwheel\r\nwaterworks\r\nwatery\r\nwatt\r\nwattage\r\nwattages\r\nwattle\r\nwattlebird\r\nwattled\r\nwattles\r\nwattmeter\r\nwattmeter's\r\nwatts\r\nwave\r\nwaveband\r\nwavebands\r\nwaved\r\nwaveform\r\nwaveform's\r\nwaveforms\r\nwaveguide\r\nwavelength\r\nwavelengths\r\nwavelet\r\nwavelets\r\nwavelike\r\nwaver\r\nwavered\r\nwavering\r\nwaveringly\r\nwavers\r\nwaves\r\nwavier\r\nwaviness\r\nwaving\r\nwavy\r\nwax\r\nwaxberry\r\nwaxbill\r\nwaxed\r\nwaxen\r\nwaxes\r\nwaxier\r\nwaxing\r\nwaxwing\r\nwaxwing's\r\nwaxwings\r\nwaxwork\r\nwaxworks\r\nwaxy\r\nway\r\nway's\r\nwaybill\r\nwayfarer\r\nwayfaring\r\nwaylaid\r\nwaylay\r\nways\r\nwayside\r\nwaysides\r\nwayward\r\nwaywardly\r\nwaywardness\r\nwe\r\nwe'd\r\nwe'll\r\nwe're\r\nwe've\r\nweak\r\nweaken\r\nweakened\r\nweakening\r\nweakens\r\nweaker\r\nweakest\r\nweakfish\r\nweakling\r\nweakly\r\nweakness\r\nweaknesses\r\nweal\r\nweald\r\nwealth\r\nwealthier\r\nwealthiest\r\nwealthily\r\nwealthy\r\nwean\r\nweaned\r\nweaner\r\nweaning\r\nweanling\r\nweapon\r\nweapon's\r\nweaponed\r\nweaponry\r\nweapons\r\nwear\r\nwearable\r\nwearer\r\nwearied\r\nwearier\r\nwearies\r\nweariest\r\nwearily\r\nweariness\r\nwearing\r\nwearingly\r\nwearisome\r\nwearisomely\r\nwears\r\nweary\r\nwearying\r\nweasel\r\nweasel's\r\nweaselled\r\nweaselling\r\nweasels\r\nweather\r\nweather-beaten\r\nweatherboard\r\nweatherboarding\r\nweathercock\r\nweathercock's\r\nweathercocks\r\nweathered\r\nweatherglass\r\nweathering\r\nweatherman\r\nweatherproof\r\nweathers\r\nweather-strip\r\nweatherworn\r\nweave\r\nweaver\r\nweaverbird\r\nweavers\r\nweaves\r\nweaving\r\nweb\r\nweb's\r\nwebbed\r\nwebbing\r\nwebfoot\r\nwebs\r\nwed\r\nwedded\r\nwedding\r\nwedding's\r\nweddings\r\nwedge\r\nwedged\r\nwedges\r\nwedging\r\nwedlock\r\nweds\r\nwee\r\nweed\r\nweeded\r\nweeding\r\nweeds\r\nweedy\r\nweek\r\nweek's\r\nweekday\r\nweekday's\r\nweekdays\r\nweekend\r\nweekend's\r\nweekender\r\nweekends\r\nweeklies\r\nweekly\r\nweeknight\r\nweeknights\r\nweeks\r\nweep\r\nweepers\r\nweeping\r\nweeps\r\nweepy\r\nweever\r\nweevil\r\nweevily\r\nweft\r\nwefts\r\nweigh\r\nweighable\r\nweighbridge\r\nweighbridges\r\nweighed\r\nweighing\r\nweighs\r\nweight\r\nweighted\r\nweightier\r\nweightily\r\nweightiness\r\nweighting\r\nweightings\r\nweightless\r\nweightlessly\r\nweightlessness\r\nweightlifter\r\nweightlifting\r\nweights\r\nweighty\r\nweir\r\nweird\r\nweirdly\r\nweirdness\r\nweirdo\r\nweirs\r\nwelcome\r\nwelcomed\r\nwelcomes\r\nwelcoming\r\nweld\r\nwelded\r\nwelder\r\nwelders\r\nwelding\r\nwelds\r\nwelfare\r\nwelkin\r\nwell\r\nwellbeing\r\nwellborn\r\nwelled\r\nwellhead\r\nwellies\r\nwelling\r\nwellness\r\nwells\r\nwell-wisher\r\nwelsh\r\nwelt\r\nwelter\r\nweltered\r\nweltering\r\nwelterweight\r\nwelts\r\nwench\r\nwench's\r\nwenches\r\nwend\r\nwent\r\nwept\r\nwere\r\nweren't\r\nwerewolf\r\nwerewolf's\r\nwerewolves\r\nweskit\r\nwest\r\nwestbound\r\nwesterly\r\nwestern\r\nwesterner\r\nwesterners\r\nwesternisation\r\nwesternisation's\r\nwesternisations\r\nwesternise\r\nwesternised\r\nwesternises\r\nwesternising\r\nwesternmost\r\nwestward\r\nwestwards\r\nwet\r\nwetback\r\nwetland\r\nwetlands\r\nwetly\r\nwetness\r\nwets\r\nwetted\r\nwetter\r\nwettest\r\nwetting\r\nwhack\r\nwhacked\r\nwhacking\r\nwhacko\r\nwhacks\r\nwhale\r\nwhaleback\r\nwhaleboat\r\nwhalebone\r\nwhalebone's\r\nwhalebones\r\nwhaler\r\nwhales\r\nwhaling\r\nwham\r\nwhammies\r\nwhamming\r\nwhammy\r\nwhare\r\nwharf\r\nwharfage\r\nwharfs\r\nwharve\r\nwharves\r\nwhat\r\nwhat'd\r\nwhat're\r\nwhat's\r\nwhatever\r\nwhatnot\r\nwhatsoever\r\nwheal\r\nwheat\r\nwheatear\r\nwheaten\r\nwheatworm\r\nwheedle\r\nwheedled\r\nwheedles\r\nwheedling\r\nwheel\r\nwheelbarrow\r\nwheelbarrow's\r\nwheelbarrows\r\nwheelbase\r\nwheelchair\r\nwheelchair's\r\nwheeled\r\nwheeler\r\nwheelers\r\nwheelhouse\r\nwheelie\r\nwheeling\r\nwheelman\r\nwheels\r\nwheelwork\r\nwheelwright\r\nwheeze\r\nwheezed\r\nwheezes\r\nwheezier\r\nwheezing\r\nwheezy\r\nwhelk\r\nwhelm\r\nwhelp\r\nwhen\r\nwhence\r\nwhenever\r\nwhere\r\nwhere'd\r\nwhere're\r\nwhere's\r\nwhereabouts\r\nwhereas\r\nwhereat\r\nwhereby\r\nwherefore\r\nwherefores\r\nwherefrom\r\nwherein\r\nwhereof\r\nwhereon\r\nwhereto\r\nwhereunto\r\nwhereupon\r\nwherever\r\nwherewith\r\nwherewithal\r\nwherries\r\nwherry\r\nwhet\r\nwhether\r\nwhets\r\nwhetstone\r\nwhetted\r\nwhetting\r\nwhew\r\nwhey\r\nwhich\r\nwhichever\r\nwhicker\r\nwhickered\r\nwhickering\r\nwhiff\r\nwhiffletree\r\nwhile\r\nwhiled\r\nwhiles\r\nwhiling\r\nwhilom\r\nwhilst\r\nwhim\r\nwhim's\r\nwhimbrel\r\nwhimper\r\nwhimpered\r\nwhimpering\r\nwhimpers\r\nwhims\r\nwhimsey\r\nwhimsical\r\nwhimsicality\r\nwhimsically\r\nwhimsicalness\r\nwhimsies\r\nwhimsy\r\nwhimsy's\r\nwhine\r\nwhined\r\nwhiner\r\nwhines\r\nwhiney\r\nwhinge\r\nwhining\r\nwhiningly\r\nwhinnied\r\nwhinnies\r\nwhinny\r\nwhinnying\r\nwhip\r\nwhip's\r\nwhipcord\r\nwhiplash\r\nwhiplashes\r\nwhipped\r\nwhippersnapper\r\nwhippet\r\nwhippier\r\nwhipping\r\nwhipping's\r\nwhippings\r\nwhippoorwill\r\nwhippy\r\nwhips\r\nwhipsaw\r\nwhipsawed\r\nwhipstall\r\nwhipstitch\r\nwhipstock\r\nwhipworm\r\nwhir\r\nwhirl\r\nwhirled\r\nwhirligig\r\nwhirling\r\nwhirlpool\r\nwhirlpool's\r\nwhirlpools\r\nwhirls\r\nwhirlwind\r\nwhirly\r\nwhirlybird\r\nwhirr\r\nwhirring\r\nwhish\r\nwhisht\r\nwhisk\r\nwhisked\r\nwhisker\r\nwhiskered\r\nwhiskers\r\nwhiskery\r\nwhiskey\r\nwhiskey's\r\nwhiskeys\r\nwhiskies\r\nwhisking\r\nwhisks\r\nwhisky\r\nwhisky's\r\nwhisper\r\nwhispered\r\nwhisperer\r\nwhispering\r\nwhisperingly\r\nwhisperings\r\nwhispers\r\nwhispery\r\nwhist\r\nwhistle\r\nwhistled\r\nwhistler\r\nwhistlers\r\nwhistles\r\nwhistling\r\nwhit\r\nwhite\r\nwhitebait\r\nwhitebeard\r\nwhitecap\r\nwhiteface\r\nwhitefish\r\nwhitefly\r\nwhitely\r\nwhiten\r\nwhitened\r\nwhitener\r\nwhiteners\r\nwhiteness\r\nwhitening\r\nwhitens\r\nwhiteout\r\nwhiter\r\nwhites\r\nwhitesmith\r\nwhitest\r\nwhitetail\r\nwhitethorn\r\nwhitethroat\r\nwhitewall\r\nwhitewash\r\nwhitewashed\r\nwhitewasher\r\nwhitewashing\r\nwhite water\r\nwhitewood\r\nwhitey\r\nwhither\r\nwhithersoever\r\nwhitherward\r\nwhiting\r\nwhitish\r\nwhittle\r\nwhittled\r\nwhittler\r\nwhittles\r\nwhittling\r\nwhittlings\r\nwhiz\r\nwhizz\r\nwhiz-bang\r\nwhizzed\r\nwhizzes\r\nwhizzing\r\nwho\r\nwho'd\r\nwho'll\r\nwho's\r\nwho've\r\nwhoa\r\nwhodunit\r\nwhodunit's\r\nwhodunits\r\nwhoever\r\nwhole\r\nwholefood\r\nwholehearted\r\nwholeheartedly\r\nwholemeal\r\nwholeness\r\nwholes\r\nwholesale\r\nwholesaled\r\nwholesaler\r\nwholesalers\r\nwholesales\r\nwholesaling\r\nwholesome\r\nwholesomely\r\nwholesomeness\r\nwholly\r\nwhom\r\nwhomever\r\nwhomsoever\r\nwhoop\r\nwhooped\r\nwhoopee\r\nwhooper\r\nwhooping\r\nwhoopla\r\nwhoops\r\nwhoosh\r\nwhop\r\nwhopper\r\nwhoppers\r\nwhopping\r\nwhore\r\nwhore's\r\nwhoredom\r\nwhorehouse\r\nwhoremonger\r\nwhores\r\nwhoreson\r\nwhoring\r\nwhorish\r\nwhorl\r\nwhorl's\r\nwhorled\r\nwhorls\r\nwhortleberry\r\nwhose\r\nwhosesoever\r\nwhoso\r\nwhosoever\r\nwhy\r\nwhydah\r\nwhys\r\nwick\r\nwicked\r\nwickedly\r\nwickedness\r\nwicker\r\nwickerwork\r\nwicket\r\nwicketkeeper\r\nwicketkeepers\r\nwickets\r\nwicking\r\nwicks\r\nwicopy\r\nwiddershins\r\nwide\r\nwidely\r\nwiden\r\nwidened\r\nwidener\r\nwideness\r\nwidening\r\nwidens\r\nwider\r\nwidespread\r\nwidest\r\nwidgeon\r\nwidgeons\r\nwidget\r\nwidget's\r\nwidgets\r\nwidow\r\nwidowed\r\nwidower\r\nwidowers\r\nwidowhood\r\nwidows\r\nwidth\r\nwidths\r\nwidthways\r\nwield\r\nwielded\r\nwielder\r\nwielding\r\nwields\r\nwieldy\r\nwiener\r\nwieners\r\nwienie\r\nwife\r\nwife's\r\nwifehood\r\nwifeless\r\nwifeliness\r\nwifely\r\nwig\r\nwig's\r\nwigged\r\nwigging\r\nwiggle\r\nwiggled\r\nwiggler\r\nwiggles\r\nwiggling\r\nwiggly\r\nwigmaker\r\nwigs\r\nwigwag\r\nwigwam\r\nwild\r\nwildcard\r\nwildcarding\r\nwildcards\r\nwildcat\r\nwildcat's\r\nwildcats\r\nwildcatted\r\nwildcatter\r\nwildcatting\r\nwildebeest\r\nwildebeest's\r\nwilder\r\nwilderment\r\nwilderness\r\nwildest\r\nwildfire\r\nwildflower\r\nwildflower's\r\nwildflowers\r\nwildfowl\r\nwildfowler\r\nwildfowling\r\nwilding\r\nwildish\r\nwildlife\r\nwildling\r\nwildly\r\nwildness\r\nwildwood\r\nwile\r\nwiled\r\nwiles\r\nwilful\r\nwilfully\r\nwilier\r\nwilily\r\nwiliness\r\nwiling\r\nwill\r\nwillable\r\nwilled\r\nwillet\r\nwillies\r\nwilling\r\nwillingly\r\nwillingness\r\nwilliwaw\r\nwillow\r\nwillow's\r\nwillower\r\nwillows\r\nwillowware\r\nwillowy\r\nwillpower\r\nwills\r\nwilt\r\nwilted\r\nwilting\r\nwilts\r\nwily\r\nwimble\r\nwimbled\r\nwimbles\r\nwimbling\r\nwimp\r\nwimp's\r\nwimpier\r\nwimpiest\r\nwimple\r\nwimpled\r\nwimpling\r\nwimps\r\nwimpy\r\nwin\r\nwince\r\nwinced\r\nwinces\r\nwincey\r\nwinch\r\nwinched\r\nwincher\r\nwinches\r\nwinchester\r\nwinching\r\nwincing\r\nwind\r\nwindage\r\nwindbag\r\nwindbags\r\nwindblown\r\nwindbound\r\nwindbreak\r\nwindbreaks\r\nwindburn\r\nwindburned\r\nwindcheater\r\nwindcheaters\r\nwindchill\r\nwinded\r\nwinder\r\nwinders\r\nwindfall\r\nwindflower\r\nwindgall\r\nwindhover\r\nwindier\r\nwindily\r\nwindiness\r\nwinding\r\nwindjammer\r\nwindlass\r\nwindlassed\r\nwindlasses\r\nwindlassing\r\nwindless\r\nwindmill\r\nwindmill's\r\nwindmills\r\nwindow\r\nwindow's\r\nwindowed\r\nwindowing\r\nwindowless\r\nwindowpane\r\nwindowpanes\r\nwindows\r\nwindowsill\r\nwindpipe\r\nwindproof\r\nwindrow\r\nwinds\r\nwindsail\r\nwindscreen\r\nwindshield\r\nwindsock\r\nwindstorm\r\nwindsurf\r\nwindsurfed\r\nwindsurfing\r\nwindsurfs\r\nwindswept\r\nwindup\r\nwindward\r\nwindy\r\nwine\r\nwinebibber\r\nwined\r\nwineglass\r\nwinegrower\r\nwinepress\r\nwinery\r\nwines\r\nwineskin\r\nwing\r\nwingback\r\nwing beat\r\nwinged\r\nwinger\r\nwingers\r\nwinging\r\nwingless\r\nwinglessness\r\nwinglet\r\nwingman\r\nwingmen\r\nwingover\r\nwings\r\nwingspan\r\nwingspread\r\nwingspread's\r\nwingspreads\r\nwingtip\r\nwining\r\nwink\r\nwinked\r\nwinker\r\nwinking\r\nwinkle\r\nwinkled\r\nwinkles\r\nwinkling\r\nwinks\r\nwinless\r\nwinnable\r\nwinner\r\nwinner's\r\nwinners\r\nwinning\r\nwinningly\r\nwinnings\r\nwinnow\r\nwinnower\r\nwino\r\nwinos\r\nwins\r\nwinsome\r\nwinsomely\r\nwinsomeness\r\nwinter\r\nwintered\r\nwinterer\r\nwinterfeed\r\nwintergreen\r\nwintering\r\nwinterisation\r\nwinterisation's\r\nwinterisations\r\nwinterise\r\nwinterised\r\nwinterises\r\nwinterising\r\nwinterkill\r\nwinters\r\nwintertime\r\nwinterweight\r\nwintrier\r\nwintrily\r\nwintriness\r\nwintry\r\nwiny\r\nwinze\r\nwipe\r\nwiped\r\nwiper\r\nwipers\r\nwipes\r\nwiping\r\nwire\r\nwired\r\nwiredraw\r\nwiredrawer\r\nwiredrawn\r\nwirehair\r\nwirehaired\r\nwireless\r\nwireman\r\nwiremen\r\nwirer\r\nwires\r\nwiretap\r\nwiretap's\r\nwiretapping\r\nwiretaps\r\nwirewalker\r\nwirework\r\nwireworks\r\nwireworm\r\nwirier\r\nwirily\r\nwiriness\r\nwiring\r\nwirings\r\nwirra\r\nwiry\r\nwisdom\r\nwisdoms\r\nwise\r\nwiseacre\r\nwisecrack\r\nwisecracked\r\nwisecracker\r\nwised\r\nwisely\r\nwisenheimer\r\nwisent\r\nwiser\r\nwises\r\nwisest\r\nwise woman\r\nwish\r\nwishbone\r\nwished\r\nwisher\r\nwishers\r\nwishes\r\nwishful\r\nwishfully\r\nwishing\r\nwising\r\nwisp\r\nwisp's\r\nwisps\r\nwispy\r\nwisteria\r\nwistful\r\nwistfully\r\nwistfulness\r\nwit\r\nwit's\r\nwitan\r\nwitch\r\nwitchcraft\r\nwitchery\r\nwitches\r\nwitching\r\nwitchlike\r\nwitenagemot\r\nwith\r\nwithal\r\nwithdraw\r\nwithdrawal\r\nwithdrawal's\r\nwithdrawals\r\nwithdrawer\r\nwithdrawing\r\nwithdrawn\r\nwithdrawnness\r\nwithdraws\r\nwithdrew\r\nwithe\r\nwither\r\nwithered\r\nwithering\r\nwitheringly\r\nwithers\r\nwithershins\r\nwithheld\r\nwithhold\r\nwithholder\r\nwithholders\r\nwithholding\r\nwithholdings\r\nwithholds\r\nwithies\r\nwithin\r\nwithindoors\r\nwithout\r\nwithoutdoors\r\nwithstand\r\nwithstanding\r\nwithstands\r\nwithstood\r\nwithy\r\nwitless\r\nwitling\r\nwitness\r\nwitnessed\r\nwitnesses\r\nwitnessing\r\nwits\r\nwitted\r\nwitter\r\nwitticism\r\nwittier\r\nwittiest\r\nwittily\r\nwittiness\r\nwitting\r\nwittingly\r\nwittol\r\nwitty\r\nwives\r\nwiz\r\nwizard\r\nwizard's\r\nwizardly\r\nwizardry\r\nwizards\r\nwizen\r\nwizened\r\nwobble\r\nwobbled\r\nwobbles\r\nwobbliness\r\nwobbling\r\nwobbly\r\nwoe\r\nwoebegone\r\nwoeful\r\nwoefully\r\nwog\r\nwoggle\r\nwok\r\nwoke\r\nwoken\r\nwold\r\nwolf\r\nwolfhound\r\nwolfish\r\nwolfishly\r\nwolfishness\r\nwolver\r\nwolverine\r\nwolverine's\r\nwolverines\r\nwolves\r\nwoman\r\nwoman's\r\nwomanhood\r\nwomanise\r\nwomanised\r\nwomaniser\r\nwomanisers\r\nwomanises\r\nwomanish\r\nwomanishly\r\nwomanising\r\nwomankind\r\nwomanless\r\nwomanlike\r\nwomanliness\r\nwomanly\r\nwomanpower\r\nwomb\r\nwomb's\r\nwombat\r\nwombat's\r\nwombats\r\nwombs\r\nwomen\r\nwomen's\r\nwomenfolk\r\nwon\r\nwon't\r\nwonder\r\nwondered\r\nwonderer\r\nwonderful\r\nwonderfully\r\nwonderfulness\r\nwondering\r\nwonderingly\r\nwonderland\r\nwonderland's\r\nwonderment\r\nwonders\r\nwonderwork\r\nwondrous\r\nwondrously\r\nwondrousness\r\nwonky\r\nwont\r\nwonted\r\nwontedly\r\nwontedness\r\nwonting\r\nwonton\r\nwoo\r\nwood\r\nwood's\r\nwoodborer\r\nwoodcarver\r\nwoodcarving\r\nwoodchat\r\nwoodchopper\r\nwoodchoppers\r\nwoodchuck\r\nwoodchuck's\r\nwoodchucks\r\nwoodcock\r\nwoodcock's\r\nwoodcocks\r\nwoodcraft\r\nwoodcut\r\nwoodcutter\r\nwoodcutters\r\nwoodcutting\r\nwooded\r\nwooden\r\nwoodenhead\r\nwoodenheaded\r\nwoodenly\r\nwoodenness\r\nwoodenware\r\nwoodgrouse\r\nwoodhen\r\nwoodier\r\nwoodiness\r\nwooding\r\nwoodland\r\nwoodlander\r\nwoodlands\r\nwoodlark\r\nwoodlot\r\nwoodlouse\r\nwoodman\r\nwoodnote\r\nwoodpecker\r\nwoodpecker's\r\nwoodpeckers\r\nwoodpile\r\nwoodruff\r\nwoodrush\r\nwoods\r\nwoodscrew\r\nwoodshed\r\nwoodsman\r\nwoodsy\r\nwoodwind\r\nwoodwork\r\nwoodworker\r\nwoodworking\r\nwoodworm\r\nwoody\r\nwoodyard\r\nwooed\r\nwooer\r\nwoof\r\nwoofed\r\nwoofer\r\nwoofers\r\nwoofing\r\nwoofs\r\nwooing\r\nwool\r\nwoolfell\r\nwoolgatherer\r\nwoolgrower\r\nwoollen\r\nwoollens\r\nwoollier\r\nwoollies\r\nwoolliness\r\nwoolly\r\nwoolpack\r\nwools\r\nwoolsack\r\nwoolshed\r\nwoolskin\r\nwoops\r\nwoos\r\nwoozier\r\nwoozily\r\nwooziness\r\nwoozy\r\nwop\r\nwops\r\nword\r\nword's\r\nwordage\r\nwordbook\r\nworded\r\nwordier\r\nwordily\r\nwordiness\r\nwording\r\nwordings\r\nwordless\r\nwordlessly\r\nwordlessness\r\nwordmonger\r\nwordplay\r\nwords\r\nwordy\r\nwore\r\nwork\r\nworkability\r\nworkable\r\nworkableness\r\nworkably\r\nworkaday\r\nworkaround\r\nworkaround's\r\nworkarounds\r\nworkbag\r\nworkbasket\r\nworkbench\r\nworkbench's\r\nworkbenches\r\nworkboat\r\nworkbook\r\nworkbook's\r\nworkbooks\r\nworkbox\r\nworkday\r\nworked\r\nworker\r\nworker's\r\nworkers\r\nworkfolk\r\nworkfolks\r\nworkforce\r\nworkforce's\r\nworkforces\r\nworkgroup\r\nworkgroups\r\nworkhorse\r\nworkhorse's\r\nworkhorses\r\nworkhouse\r\nworkhouses\r\nworking\r\nworkingman\r\nworkingmen\r\nworkings\r\nworkless\r\nworkload\r\nworkloads\r\nworkman\r\nworkmanlike\r\nworkmanship\r\nworkmate\r\nworkmates\r\nworkmen\r\nworkmen's\r\nworkout\r\nworkouts\r\nworkpeople\r\nworkplace\r\nworkplace's\r\nworkplaces\r\nworkroom\r\nworkrooms\r\nworks\r\nworksheet\r\nworksheets\r\nworkshop\r\nworkshop's\r\nworkshops\r\nworkspace\r\nworkspaces\r\nworkstation\r\nworkstation's\r\nworkstations\r\nworktable\r\nworkweek\r\nworkwoman\r\nworld\r\nworld's\r\nworldliness\r\nworldly\r\nworlds\r\nworldwide\r\nworm\r\nwormed\r\nwormer\r\nwormhole\r\nwormier\r\nworming\r\nwormlike\r\nworms\r\nwormseed\r\nwormwood\r\nwormy\r\nworn\r\nworried\r\nworriedly\r\nworrier\r\nworriers\r\nworries\r\nworriment\r\nworrisome\r\nworrisomely\r\nworry\r\nworrying\r\nworryingly\r\nworrywart\r\nworse\r\nworsen\r\nworsened\r\nworsening\r\nworsens\r\nworship\r\nworshipful\r\nworshipfully\r\nworshipfulness\r\nworshipped\r\nworshipper\r\nworshipper's\r\nworshippers\r\nworshipping\r\nworships\r\nworst\r\nworsted\r\nwort\r\nworth\r\nworthier\r\nworthies\r\nworthiest\r\nworthily\r\nworthiness\r\nworthless\r\nworthlessly\r\nworthlessness\r\nworthwhile\r\nworthy\r\nwould\r\nwould've\r\nwouldn't\r\nwouldst\r\nwound\r\nwounded\r\nwounding\r\nwoundless\r\nwounds\r\nwoundwort\r\nwove\r\nwoven\r\nwow\r\nwrack\r\nwracked\r\nwracking\r\nwracks\r\nwraith\r\nwraiths\r\nwrangle\r\nwrangled\r\nwrangler\r\nwranglers\r\nwrangles\r\nwrangling\r\nwrap\r\nwrap's\r\nwraparound\r\nwrapped\r\nwrapper\r\nwrapper's\r\nwrappers\r\nwrapping\r\nwrappings\r\nwrapround\r\nwraps\r\nwrasse\r\nwrath\r\nwrathful\r\nwrathfully\r\nwrathfulness\r\nwreak\r\nwreaks\r\nwreath\r\nwreathe\r\nwreathed\r\nwreathes\r\nwreathing\r\nwreaths\r\nwreck\r\nwreckage\r\nwrecked\r\nwrecker\r\nwreckers\r\nwreckful\r\nwrecking\r\nwrecks\r\nwren\r\nwren's\r\nwrench\r\nwrenched\r\nwrenches\r\nwrenching\r\nwrenchingly\r\nwrens\r\nwrest\r\nwrested\r\nwrester\r\nwresting\r\nwrestle\r\nwrestled\r\nwrestler\r\nwrestles\r\nwrestling\r\nwrests\r\nwretch\r\nwretched\r\nwretchedly\r\nwretchedness\r\nwretches\r\nwrier\r\nwriest\r\nwriggle\r\nwriggled\r\nwriggler\r\nwriggles\r\nwriggling\r\nwriggly\r\nwright\r\nwring\r\nwringer\r\nwringing\r\nwrings\r\nwrinkle\r\nwrinkled\r\nwrinkles\r\nwrinkling\r\nwrinkly\r\nwrist\r\nwrist's\r\nwristband\r\nwristlet\r\nwristlock\r\nwrists\r\nwristwatch\r\nwristwatch's\r\nwristwatches\r\nwrit\r\nwrit's\r\nwrite\r\nwriter\r\nwriter's\r\nwriters\r\nwrites\r\nwrithe\r\nwrithed\r\nwrithen\r\nwrithes\r\nwrithing\r\nwriting\r\nwritings\r\nwrits\r\nwritten\r\nwrong\r\nwrongdoer\r\nwrongdoers\r\nwrongdoing\r\nwronged\r\nwrongful\r\nwrongfully\r\nwrongfulness\r\nwrongheaded\r\nwronging\r\nwrongly\r\nwrongness\r\nwrongs\r\nwrote\r\nwroth\r\nwrought\r\nwrung\r\nwry\r\nwryly\r\nwryneck\r\nwulfenite\r\nwunderkind\r\nwww\r\nwyvern\r\nxanthippe\r\nxanthochroid\r\nxci\r\nxcii\r\nxciv\r\nxcix\r\nxcvi\r\nxcvii\r\nxenomorphic\r\nxenon\r\nxenophile\r\nxenophobe\r\nxenophobia\r\nxenophobic\r\nxeric\r\nxerographic\r\nxerographically\r\nxerography\r\nxi\r\nxii\r\nxiii\r\nxiphosuran\r\nxiv\r\nxix\r\nxv\r\nxvi\r\nxvii\r\nxviii\r\nxx\r\nxxi\r\nxxii\r\nxxiii\r\nxxiv\r\nxxix\r\nxxv\r\nxxvi\r\nxxvii\r\nxxviii\r\nxxx\r\nxxxi\r\nxxxii\r\nxxxiii\r\nxxxiv\r\nxxxix\r\nxxxv\r\nxxxvi\r\nxxxvii\r\nxxxviii\r\nxylem\r\nxylograph\r\nxylography\r\nxylophone\r\nxylophones\r\nxylophonist\r\nxylotomous\r\nxylotomy\r\nyacht\r\nyachters\r\nyachting\r\nyachts\r\nyachtsman\r\nyachtsmen\r\nyah\r\nyak\r\nyakking\r\nyaks\r\nyam\r\nyammer\r\nyang\r\nyank\r\nyanked\r\nyanking\r\nyanks\r\nyap\r\nyapok\r\nyapping\r\nyard\r\nyard's\r\nyardage\r\nyardarm\r\nyardbird\r\nyarded\r\nyardman\r\nyardmaster\r\nyards\r\nyardstick\r\nyardstick's\r\nyardsticks\r\nyare\r\nyarely\r\nyarmulke\r\nyarn\r\nyarn's\r\nyarned\r\nyarning\r\nyarns\r\nyarrow\r\nyataghan\r\nyaupon\r\nyaw\r\nyawed\r\nyawing\r\nyawl\r\nyawn\r\nyawner\r\nyawning\r\nyawningly\r\nyawns\r\nyawp\r\nyaws\r\nycleped\r\nyclept\r\nye\r\nyea\r\nyeah\r\nyean\r\nyeanling\r\nyear\r\nyear's\r\nyearbook\r\nyearling\r\nyearlong\r\nyearly\r\nyearn\r\nyearned\r\nyearning\r\nyearningly\r\nyearnings\r\nyearns\r\nyears\r\nyeas\r\nyeast\r\nyeast's\r\nyeastier\r\nyeastily\r\nyeastiness\r\nyeasts\r\nyeasty\r\nyecch\r\nyell\r\nyelled\r\nyeller\r\nyelling\r\nyellow\r\nyellowbird\r\nyellowed\r\nyellowhammer\r\nyellowing\r\nyellowish\r\nyellowlegs\r\nyellowness\r\nyellows\r\nyellowtail\r\nyellowweed\r\nyellowwood\r\nyells\r\nyelp\r\nyelped\r\nyelper\r\nyelping\r\nyelps\r\nyen\r\nyeoman\r\nyeomanly\r\nyeomanry\r\nyeomen\r\nyep\r\nyes\r\nyeses\r\nyeshiva\r\nyester\r\nyesterday\r\nyesterday's\r\nyesterdays\r\nyesteryear\r\nyet\r\nyeti\r\nyew\r\nyield\r\nyielded\r\nyielder\r\nyielding\r\nyields\r\nyin\r\nyip\r\nyippee\r\nyipping\r\nylem\r\nyob\r\nyodel\r\nyodelled\r\nyodeller\r\nyodelling\r\nyodels\r\nyoga\r\nyogh\r\nyoghurt\r\nyoghurt's\r\nyogi\r\nyogic\r\nyoicks\r\nyoke\r\nyoke's\r\nyokefellow\r\nyokel\r\nyokels\r\nyokes\r\nyoking\r\nyolk\r\nyolks\r\nyolky\r\nyon\r\nyond\r\nyonder\r\nyoni\r\nyore\r\nyou\r\nyou'd\r\nyou'll\r\nyou're\r\nyou've\r\nyoung\r\nyounger\r\nyoungest\r\nyoungish\r\nyoungling\r\nyoungster\r\nyoungster's\r\nyoungsters\r\nyour\r\nyours\r\nyourself\r\nyourselves\r\nyouth\r\nyouth's\r\nyouthful\r\nyouthfully\r\nyouthfulness\r\nyouths\r\nyow\r\nyowl\r\nyr\r\nytterbium\r\nyttrium\r\nyucca\r\nyuck\r\nyuk\r\nyule\r\nyuletide\r\nyummier\r\nyummy\r\nyup\r\nyuppie\r\nyuppie's\r\nyuppies\r\nyurt\r\nzabaglione\r\nzanier\r\nzanies\r\nzanily\r\nzaniness\r\nzany\r\nzap\r\nzapped\r\nzapping\r\nzaps\r\nzarf\r\nzarzuela\r\nzeal\r\nzealot\r\nzealotry\r\nzealous\r\nzealously\r\nzealousness\r\nzebra\r\nzebra's\r\nzebras\r\nzebrawood\r\nzebu\r\nzed\r\nzedoary\r\nzee\r\nzeitgeist\r\nzener\r\nzenith\r\nzeolite\r\nzeolitic\r\nzephyr\r\nzeppelin\r\nzero\r\nzeroed\r\nzeroes\r\nzeroing\r\nzeroise\r\nzeros\r\nzest\r\nzestful\r\nzestfully\r\nzestfulness\r\nzestier\r\nzesty\r\nzeta\r\nzetas\r\nzeugma\r\nzibeline\r\nzibet\r\nziff\r\nziggurat\r\nzigzag\r\nzigzagged\r\nzigzagging\r\nzilch\r\nzillion\r\nzinc\r\nzinc's\r\nzincograph\r\nzincography\r\nzinfandel\r\nzing\r\nzinger\r\nzingier\r\nzings\r\nzingy\r\nzinnia\r\nzip\r\nzipped\r\nzipper\r\nzippered\r\nzippers\r\nzippier\r\nzipping\r\nzippy\r\nzips\r\nzircon\r\nzirconia\r\nzirconium\r\nzither\r\nzitherist\r\nzithers\r\nzizith\r\nzloty\r\nzlotys\r\nzodiac\r\nzodiacal\r\nzodiacs\r\nzombie\r\nzombies\r\nzonal\r\nzone\r\nzoned\r\nzones\r\nzoning\r\nzonked\r\nzoo\r\nzoo's\r\nzoochemistry\r\nzoogeographer\r\nzoogeographic\r\nzoogeography\r\nzoography\r\nzooid\r\nzoolatry\r\nzoological\r\nzoologically\r\nzoologist\r\nzoologists\r\nzoology\r\nzoom\r\nzoomed\r\nzoometry\r\nzooming\r\nzoomorphic\r\nzoomorphism\r\nzooms\r\nzooparasite\r\nzoophobia\r\nzoophyte\r\nzooplankton\r\nzoos\r\nzoosperm\r\nzoosporangium\r\nzoospore\r\nzootomy\r\nzootoxin\r\nzootoxins\r\nzounds\r\nzucchetto\r\nzucchini\r\nzwitterions\r\nzygote\r\nzygote's\r\nzygotes\r\nzymurgy\nok\r\nabba"
  },
  {
    "path": "Quelea/dictionaries/nl.words",
    "content": "'s anderendaags\n's avonds\n's middags\n's nachts\n's ochtends\n's-Gravenhage\n's-Hertogenbosch\n06-nummer\n1 aprilgek\n1 aprilgrap\n1 aprilmop\n5 meiherdenking\n5 meiviering\n8 uurjournaal\n80-jarige\nA-biljet\nA-bom\nA-kant\nA-merk\nA-omroep\nA-status\nA4-formaat\nAAW-voorziening\nABC-eilanden\nABC-wapens\nADHD\nADHD-kind\nADSL\nADSL-aansluiting\nAMvB\nAOV\nAOV-uitkering\nAOW\nAOW'er\nAOW-premie\nAOW-uitkering\nAROB\nASFA\nATB\nAWACS-vliegtuig\nAWBZ-premie\nAWW-premie\nAWW-uitkering\nAarlen\nAarlenaar\nAarlens\nAboriginal\nAboriginals\nAborigines\nAbsurdistan\nAdonai\nAfghaan\nAfghaans\nAfghaanse\nAfghanistan\nAfrikaan\nAfrikaans\nAfrikaanse\nAfrikaner\nAfro-Amerikaan\nAfro-Surinaams\nAfro-Surinamer\nAjacied\nAjaxsupporter\nAlbanees\nAlbanese\nAlbanië\nAlbehoeder\nAlgerije\nAlgerijn\nAlgerijns\nAlgerijnse\nAllah\nAllerheiligen\nAllerheiligenvloed\nAllerhoogste\nAllerzielen\nAlmachtige\nAlwetende\nAlziende\nAmati\nAmazonegebied\nAmazonen\nAmbonees\nAmerican football\nAmerikaan\nAmerikaans\nAmerikaanse\nAmsterdam\nAmsterdammer\nAmsterdams\nAnderlechtenaar\nAnderlechtsupporter\nAndesgebergte\nAndorra\nAndorrees\nAndromedanevel\nAngelsaksen\nAngelsaksisch\nAnglo-Amerikaans\nAngola\nAngolees\nAnjerrevolutie\nAnschluss\nAntarctica\nAntarctisch\nAntillenroute\nAntilliaan\nAntilliaans\nAntilliaans-Nederlands\nAntilliaanse\nAntwerpen\nAntwerpenaar\nAntwerps\nAntwerpse\nApache\nApocalyps\nArabier\nArabisch\nArabisch-nationalistisch\nArabische\nArabischtalig\nAramees\nArameeër\nArbitragehof\nArboraad\nArbowet\nArcadië\nArctica\nArctisch\nArdeens\nArdennen\nArdennenoffensief\nArgentijn\nArgentijns\nArgentijnse\nArgentinië\nArisch\nArmada\nArmageddon\nArmeens\nArmeniër\nArnhem\nArnhemmer\nArnhems\nAruba\nArubaan\nArubaans\nArubaanse\nAsdag\nAsjkenazisch\nAssen\nAssenaar\nAssens\nAssense\nAssepoester\nAsser\nAssyrisch\nAswoensdag\nAtjees\nAtjeeër\nAtjeh\nAtlantisch\nAttisch\nAustralisch\nAustralische\nAustralië\nAustraliër\nAvondland\nAvondster\nAziaat\nAziatisch\nAzoren\nAzteek\nAzteken\nB\nB-52\nB-acteur\nB-film\nB-kant\nB-weg\nBA\nBN'er\nBOB\nBOG\nBS\nBSE\nBV\nBabylonisch\nBacchusfeest\nBahama-eilanden\nBalinees\nBalinese\nBalkan\nBalkanoorlog\nBankcommissie\nBantoe\nBarentszzee\nBargoens\nBask\nBaskenland\nBaskisch\nBataaf\nBataafs\nBatavier\nBauhaus\nBaäl\nBeeldenstorm\nBeier\nBeieren\nBeiers\nBeierse\nBelarus\nBelarussisch\nBelg\nBelgenmop\nBelgisch\nBelgisch-Limburg\nBelgisch-Nederlands\nBelgische\nBelgië\nBenelux\nBenelux-land\nBengaals\nBengaalse\nBeotiër\nBerber\nBerberstam\nBergen\nBergenaar\nBergens\nBergense\nBergrede\nBerlijn\nBerlijner\nBerlijns\nBerlijnse\nBermudadriehoek\nBetuwelijn\nBetuweroute\nBetuwespoorlijn\nBevrijdingsdag\nBijbel\nBijbelboek\nBijbelcommissie\nBijbelgenootschap\nBijbelkennis\nBijbelkring\nBijbellezen\nBijbellezing\nBijbelplaats\nBijbels\nBijbelspreuk\nBijbelstudie\nBijbeltaal\nBijbeltekst\nBijbelvast\nBijbelverhaal\nBijbelvertaling\nBijbelwoord\nBinnenhof\nBirma\nBirmaan\nBirmaans\nBirmees\nBlaricummer\nBloedprocessie\nBloedraad\nBodo\nBoedapest\nBoeddha\nBoeddhabeeld\nBoekenweek\nBoerenkrijg\nBoerenoorlog\nBoheems\nBoheemse\nBohemer\nBolivia\nBoliviaan\nBoliviaans\nBollenstreek\nBollywoodfilm\nBonaire\nBonairiaan\nBonairiaans\nBonairiaanse\nBondsdag\nBondsdagpresident\nBondsdagpresidente\nBondsdagvoorzitter\nBondsrepubliek\nBoni\nBoogschutter\nBosch\nBosjesman\nBosnisch\nBosnische\nBosnië en Herzegovina\nBosniër\nBossche\nBosschenaar\nBotnische Golf\nBourgondisch\nBourgondiër\nBovenwindse Eilanden\nBoze\nBrabander\nBrabant\nBrabants\nBrabantse\nBrabançonne\nBraziliaan\nBraziliaans\nBraziliaanse\nBrazilië\nBreeveertien\nBretoen\nBretoens\nBretons\nBrit\nBrits\nBritse\nBritse Eilanden\nBrokopondo\nBrugge\nBruggeling\nBrugs\nBrussel\nBrusselaar\nBrussels\nBrusselse\nBulgaar\nBulgaars\nBulgaarse\nBulgarije\nBussumer\nByzantijn\nByzantijns\nC-status\nC14-datering\nC14-methode\nCAT-scan\nCBB\nCBS-cijfer\nCBS-koersindex\nCDA'er\nCDA-lid\nCT-scan\nCajun\nCalvarieberg\nCanada\nCanadees\nCanadese\nCanarische Eilanden\nCaraïbisch\nCaraïeb\nCaribisch-Nederlands\nCaricom\nCatalaan\nCatalaans\nCatalaanse\nCelsius\nChaldeeën\nChaldeeër\nChanoeka\nCherokee\nChileen\nChileens\nChili\nChina\nChinees\nChinees-Indisch\nChinese\nChinezen\nChiro\nChirojeugd\nChirojongen\nChiromeisje\nChristusbeeld\nChristusfiguur\nChristuskind\nChristuskop\nChristuslegende\nChristusmonogram\nCito\nCito-toets\nCobra\nCockney\nColombia\nColombiaan\nColombiaans\nComecon\nCommewijne\nConcertgebouworkest\nCongo-Brazzaville\nCongo-Kinshasa\nCongolees\nCongolese\nCortes\nCosta Rica\nCosta Ricaan\nCosta Ricaans\nCuba\nCubaan\nCubaans\nCubaanse\nCuraçaos\nCuraçaoënaar\nCyprioot\nCypriotisch\nCyprus\nD-day\nDDT\nDNA\nDNA-keten\nDNA-molecule\nDNA-onderzoek\nDNA-streng\nDNA-structuur\nDNA-techniek\nDNA-technologie\nDNA-test\nDamslaper\nDaviscup\nDecembermoorden\nDeen\nDeens\nDeense\nDeltawerken\nDen Bosch\nDen Haag\nDenemarken\nDeuteronomium\nDiets\nDivali\nDoema\nDokkumer\nDominicaan\nDominicaans\nDominicaanse\nDorisch\nDow-Jones\nDow-Jonesindex\nDrent\nDrenthe\nDrents\nDrentse\nDriekoningen\nDrievuldigheid\nDrievuldigheidsdag\nDubbelmonarchie\nDuits\nDuitse\nDuitser\nDuitsland\nDuitstalig\nDuizend-en-een-nacht\nE-weg\nEG\nEHBO\nEHBO'er\nEHBO-diploma\nEHBO-post\nEU\nEU-ambassadeur\nEU-ambtenaar\nEU-begroting\nEU-commissaris\nEU-ingezetene\nEU-land\nEU-lidstaat\nEU-minister\nEU-ministerraad\nEU-partner\nEU-richtlijn\nEU-uitgave\nEU-verdrag\nEVA\nEcuador\nEcuadoraan\nEcuadoraans\nEden\nEenheidsvakcentrale\nEgypte\nEgyptenaar\nEgyptisch\nEgyptische\nEl Salvador\nEldorado\nElfstedentocht\nElohim\nElysisch\nElysée\nElzevier\nEmmaüsgangers\nEndlösung\nEngeland\nEngelandvaarder\nEngels\nEngelse\nEngelsen\nEngelsman\nEngelssprekend\nEngelstalig\nErasmusprijs\nEros\nErtsgebergte\nEskimo\nEsperanto\nEst\nEstisch\nEstland\nEstlander\nEstlands\nEsts\nEuraziatisch\nEurazië\nEuropa\nEuropabeker\nEuropabeleid\nEuropacup\nEuropacupfinale\nEuropacupvoetbal\nEuropagezind\nEuroparlement\nEuroparlementariër\nEuroparlementslid\nEuropeaan\nEuropeanen\nEuropees\nEuropeeër\nEuropese\nEuropoort\nEurovisie\nEurovisiesongfestival\nExodus\nF-16\nF-16-gevechtsvliegtuig\nFAQ\nFM\nFM-band\nFM-frequentie\nFM-zender\nFaeröer\nFaeröerder\nFaeröers\nFahrenheit\nFalasha\nFebruaristaking\nFeyenoorder\nFeyenoordsupporter\nFilistijnen\nFin\nFinland\nFins\nFins-Oegrisch\nFinse\nFlevoland\nFlevolander\nFlevolands\nFlorentijns\nFrank\nFranken\nFrankisch\nFrankrijk\nFrans\nFrans Jozefland\nFrans-Guyaan\nFrans-Guyaans\nFrans-Guyana\nFrans-Guyanees\nFrans-Polynesië\nFransdol\nFranse\nFransen\nFransgezind\nFransman\nFranssprekend\nFranstalig\nFranstalige\nFrançaise\nFries\nFriese\nFriesland\nFriestalig\nFriestalige\nFriezin\nGHz\nGallisch\nGalliër\nGalliërs\nGallo-Romeins\nGelderland\nGelderlander\nGelders\nGelderse\nGeldersen\nGeldersman\nGenesis\nGent\nGentenaar\nGents\nGentse\nGermaan\nGermaans\nGermaanse\nGestapo\nGhana\nGhanees\nGibraltar\nGibraltarees\nGod\nGodmens\nGodsgezant\nGodsrijk\nGolf van Biskaje\nGolfoorlog\nGolfoorlogsyndroom\nGolfstroom\nGoliath\nGotisch\nGouds\nGriek\nGrieks\nGrieks-orthodox\nGriekse\nGroenland\nGroenlands\nGroningen\nGroninger\nGronings\nGroningse\nGroot-Brittannië\nGuatemala\nGuatemalaan\nGuatemalaans\nGuatemalteek\nGuatemalteeks\nGuldensporenslag\nGuyaan\nGuyaans\nGuyana\nGuyanees\nH.K.H.\nHTM\nHTML\nHaags\nHaarlem\nHaarlemmer\nHaarlems\nHadith\nHagenaar\nHagenees\nHamas\nHamasstrijder\nHanze\nHanzestad\nHasselaar\nHasselt\nHasseltenaar\nHasselts\nHebreeuws\nHebreeën\nHebreeër\nHeiland\nHelleens\nHellehond\nHelsinki\nHelvetiër\nHemelvaart\nHemelvaartsdag\nHemelvader\nHenegouwen\nHenegouwer\nHenegouws\nHenegouwse\nHercules\nHerdenkingsdag\nHerzegovina\nHezbollah\nHezbollahstrijder\nHilversummer\nHinderwet\nHinderwetvergunning\nHindi\nHindoe\nHindoestaan\nHindoestaans\nHindostaan\nHindostaans\nHitler-Duitsland\nHitlergroet\nHoge Raad\nHogerhuis\nHogerhuislid\nHoli\nHolland\nHollander\nHollandermop\nHollands\nHollandse\nHollywoodfilm\nHolocaust\nHongaar\nHongaars\nHongaarse\nHongaarstalig\nHongarije\nHongerwinter\nHongkong\nHongkong-Chinees\nHongkonger\nHongkongs\nHoogduits\nHooglander\nHooglied\nHottentot\nHun\nICT\nICT-bedrijf\nICT-beleid\nICT-branche\nICT-sector\nID-bewijs\nID-kaart\nIJsland\nIJslander\nIJslands\nIJzerbedevaart\nIQ\nIQ-test\nIR-trein\nISBN\nISBN-nummer\nISO-norm\nIT\nIT'er\nIT'ers\nIT-sector\nIberisch\nIberisch Schiereiland\nIberische\nIberiër\nIer\nIerland\nIers\nIerse\nIlias\nInca\nIndia\nIndiaans\nIndiaas\nIndian summer\nIndiase\nIndisch\nIndische\nIndischman\nIndiër\nIndo-Europeaan\nIndo-Europees\nIndo-Germaan\nIndo-Germaans\nIndochina\nIndonesisch\nIndonesische\nIndonesië\nIndonesiër\nInternationale\nInterpol\nInuit\nInvestituurstrijd\nIonisch\nIraaks\nIraakse\nIraans\nIraanse\nIrak\nIrakees\nIran\nIraniër\nIraniërs\nIrish coffee\nIsraël\nIsraëli\nIsraëliet\nIsraëlisch\nIsraëlitisch\nIsraëliër\nItaliaan\nItaliaans\nItaliaanstalig\nItalië\nIvriet\nJahwe\nJakarta\nJan Klaassen\nJapan\nJapanner\nJapans\nJapanse\nJavaan\nJavaans\nJemen\nJeugdparlement\nJezus\nJezusbeeld\nJiddisch\nJiddische\nJob\nJodenbuurt\nJodendom\nJodenhaat\nJodenhater\nJodenster\nJodenvervolging\nJodin\nJood\nJoods\nJoost\nJordaans\nJordaanse\nJordanees\nJordanië\nJordaniër\nJunglecommando\nKB\nKZ\nKaaps\nKaapverdiaan\nKaapverdisch\nKaapverdië\nKaapverdiër\nKabylisch\nKaffer\nKaffers\nKamer\nKamercommissie\nKamerfractie\nKamergebouw\nKamerlid\nKamerlidmaatschap\nKamerlijst\nKamermeerderheid\nKamerontbinding\nKamerreces\nKamervergadering\nKamerverkiezing\nKamerverkiezingen\nKamervoorzitter\nKamerzetel\nKamerzitting\nKanaal\nKanaaleiland\nKanaalzone\nKanaalzwemmer\nKanaäniet\nKarelroman\nKarolingers\nKarolingisch\nKattegat\nKaïn\nKelt\nKelten\nKeltisch\nKempenaar\nKempens\nKempense\nKenia\nKeniaan\nKeniaans\nKeniaanse\nKerklatijn\nKerstkind\nKerstman\nKerstmis\nKeulen\nKeuls\nKeulse\nKhmer\nKinderboekenweek\nKinderkruistocht\nKlaagmuur\nKlein Duimpje\nKlein-Azië\nKloosterlatijn\nKnesset\nKoerd\nKoerdenleider\nKoerdisch\nKomintern\nKoninginnedag\nKopenhagen\nKoran\nKoranschool\nKorantekst\nKorinthisch\nKozak\nKreeft\nKreeftskeerkring\nKretenzer\nKrijgshof\nKroaat\nKroatisch\nKroatische\nKroatië\nKultuurkamer\nL-vormig\nLagerhuis\nLagerhuisdebat\nLagerhuislid\nLandbouwschap\nLandstorm\nLandwacht\nLap\nLapland\nLaplander\nLaps\nLapse\nLatijn\nLatijnen\nLatijns\nLatijns-Amerika\nLatijns-Amerikaans\nLeeuw\nLeeuwarden\nLeeuwardens\nLeeuwarder\nLeeuwardse\nLelystad\nLelystads\nLelystatter\nLeopoldsorde\nLet\nLetlander\nLetlands\nLets\nLeuven\nLeuvenaar\nLeuvens\nLeuvense\nLevant\nLevantijns\nLibisch\nLibische\nLibië\nLibiër\nLiechtenstein\nLiechtensteiner\nLiechtensteins\nLieve-Heer\nLieve-Vrouw\nLimburg\nLimburger\nLimburgs\nLitouwen\nLitouwer\nLitouws\nLitouwse\nLombardijs\nLombardijse\nLonden\nLoofhuttenfeest\nLuik\nLuikenaar\nLuiker\nLuikerwaals\nLuikse\nLuilekkerland\nLuxemburg\nLuxemburger\nLuxemburgs\nLuxemburgse\nM\nMA\nME\nME'er\nME-busje\nME-patiënt\nME-peloton\nMKZ\nMKZ-crisis\nMRI\nMRI-scan\nMaagd\nMaagdeneilanden\nMaagdenhuisbezetting\nMaastricht\nMaastrichtenaar\nMaastrichter\nMaastrichts\nMaaswater\nMacedonisch\nMacedonië\nMacedoniër\nMadonna\nMadonnabeeld\nMagere Hein\nMaghrebland\nMagnificat\nMahdi\nMajorca\nMaleier\nMaleis\nMaleisisch\nMaleisische\nMaleisië\nMaleisiër\nMalta\nMaltees\nMammoetwet\nMantsjoe\nMantsjoes\nMaori\nMaria-Hemelvaart\nMaria-Lichtmis\nMariabeeld\nMariakapel\nMariamaand\nMariaverering\nMarokkaan\nMarokkaans\nMarokkaans-Arabisch\nMarokkaanse\nMarokko\nMarollenfrans\nMarowijne\nMars\nMarshallhulp\nMarshallplan\nMaya\nMayacultuur\nMayastad\nMefisto\nMefistofeles\nMekka\nMekkaganger\nMelkweg\nMensenzoon\nMesopotamisch\nMessiaans\nMessias\nMexicaan\nMexicaans\nMexicaanse\nMexico\nMgr.\nMiddelburg\nMiddelburger\nMiddelburgs\nMiddelburgse\nMiddelfries\nMiddellandse Zee\nMiddellandse Zeegebied\nMiddelnederlands\nMidden-Afrika\nMidden-Amerika\nMidden-Amerikaans\nMidden-Europees\nMidden-Oosten\nMidden-Oostenbeleid\nMidden-Oosters\nMig\nMoederdag\nMoedermaagd\nMoerasarabier\nMohammed\nMohikaan\nMolukken\nMolukker\nMoluks\nMongolisch\nMongolië\nMongoliër\nMongools\nMongoolse\nMonumentendag\nMoor\nMoors\nMoravisch\nMorgenland\nMoriaan\nMorin\nMoskou\nMoskoviet\nMyanmar\nMyanmarees\nNAVO\nNAVO-basis\nNAVO-bondgenootschap\nNAVO-dubbelbesluit\nNAVO-eenheid\nNAVO-gevechtsvliegtuig\nNAVO-hoofdkwartier\nNAVO-land\nNAVO-lidmaatschap\nNAVO-verdragsgebied\nNB\nNMBS\nNMBS-station\nNS\nNS-station\nNSB'er\nNT2\nNT2-onderwijs\nNaams\nNaamse\nNamen\nNamenaar\nNauw van Calais\nNavajo\nNavajo-indiaan\nNeder-Duitser\nNederbelg\nNederduits\nNederland\nNederlander\nNederlanders\nNederlanderschap\nNederlands\nNederlands-Antilliaan\nNederlands-Antilliaans\nNederlands-Antilliaanse\nNederlands-Indisch\nNederlands-Indië\nNederlands-hervormd\nNederlandse Antillen\nNederlandssprekend\nNederlandssprekende\nNederlandstalig\nNedersaksen\nNedersaksisch\nNegerengels\nNengre\nNeolatijn\nNepal\nNepalees\nNepalese\nNergenshuizen\nNew York\nNewfoundlander\nNickerie\nNieuw-Zeeland\nNieuw-Zeelander\nNieuw-Zeelands\nNieuwgrieks\nNieuwjaar\nNigeria\nNigeriaan\nNigeriaans\nNigeriaanse\nNipkowschijf\nNobelcomité\nNobelprijs\nNobelprijskandidaat\nNobelprijswinnaar\nNobelprijswinnares\nNoor\nNoord-Afrika\nNoord-Afrikaan\nNoord-Afrikaans\nNoord-Atlantisch\nNoord-Brabander\nNoord-Brabant\nNoord-Brabants\nNoord-Europa\nNoord-Europeaan\nNoord-Europees\nNoord-Holland\nNoord-Hollander\nNoord-Hollands\nNoord-Ier\nNoord-Ierland\nNoord-Iers\nNoord-Nederlands\nNoord-Rijnland-Westfalen\nNoordpool\nNoordpoolexpeditie\nNoordster\nNoordzeekust\nNoordzeeolie\nNoordzeestrand\nNoorman\nNoors\nNoorse\nNova Zembla\nNutslezing\nNutsschool\nO-benen\nOCMW\nOPEC-land\nOceanisch\nOder-Neissegrens\nOekraïens\nOekraïense\nOekraïne\nOeraals\nOktoberrevolutie\nOlympisch\nOlympus\nOnafhankelijkheidsdag\nOnze-Lieve-Heer\nOnze-Lieve-Vrouw\nOnze-Lieve-Vrouwekerk\nOnzevader\nOorlogswinter\nOost\nOost-Duitse\nOost-Europa\nOost-Europeaan\nOost-Europees\nOost-Indisch\nOost-Indiëvaarder\nOost-Romeins\nOost-Vlaams\nOost-Vlaamse\nOost-Vlaanderen\nOost-Vlaming\nOostblok\nOostblokland\nOostenrijker\nOostenrijks\nOostenrijkse\nOostkantons\nOostzeehandel\nOpiumwet\nOpperwezen\nOranje-elftal\nOranjefan\nOranjefeest\nOranjegezind\nOranjehotel\nOranjehuis\nOranjeklant\nOranjeploeg\nOranjestad\nOranjesupporter\nOranjevereniging\nOranjevlag\nOriënt\nOscar\nOscaruitreiking\nOslo\nOsmaan\nOsmaans\nOttomaans\nOud-Grieks\nOudegyptisch\nOudgrieks\nOudhollands\nOudnederlands\nOverijssel\nOverijsselaar\nOverijssels\nOvermaas\nP-trein\nPEN-club\nPET-scan\nPPS\nPS\nPSV'er\nPakistaan\nPakistaans\nPakistaanse\nPakistan\nPalestijn\nPalestijns\nPalestijnse\nPalestina\nPalingoproer\nPalmpasen\nPampus\nPanama\nPanamees\nPapiamento\nPapiaments\nPapoea\nPapoea's\nPapoeaas\nPara\nParakleet\nParalympics\nParamaccaans\nParamaribo\nParamariboos\nParamariboër\nParbo\nParijs\nParijzenaar\nParisien\nParisienne\nParmezaans\nPascha\nPasen\nPaternoster\nPentagon\nPentateuch\nPers\nPeruaan\nPeruaans\nPeruviaan\nPeruviaanse\nPerzisch\nPerzische\nPesach\nPhagwa\nPicasso\nPieterspenning\nPinksteren\nPlatduits\nPlejaden\nPoerim\nPoldernederlands\nPolen\nPolynesisch\nPolynesische\nPolynesië\nPolynesiër\nPool\nPools\nPoolse\nPoolster\nPorto Ricaan\nPorto Ricaans\nPorto Rico\nPortugal\nPortugees\nPortugese\nPostbank\nPostbankrekening\nPraags\nPraagse\nPrinsjesdag\nProfeet\nProvençaal\nProvençaals\nPruis\nPruisen\nPruisisch\nPruisische\nPuerto Ricaan\nPuerto Ricaans\nPuerto Rico\nPunisch\nPvdA'er\nPvdA-lid\nPyrenees\nPyreneeën\nQatar\nQuirinaal\nRAM\nRNA-molecule\nRSI\nRam\nRandstad\nRandstedelijk\nRandstedeling\nRekenhof\nRembrandt\nRembrandtjaar\nReuzengebergte\nReykjavik\nRiagg\nRijksgebouwendienst\nRijksluchtvaartdienst\nRijkspostspaarbank\nRijksverzekeringsbank\nRijksvoorlichtingsdienst\nRijkswaterstaat\nRijnlander\nRijnlands\nRijnoever\nRijnoeverstaat\nRijnvaart\nRijnwater\nRode Kruispost\nRoemeen\nRoemeens\nRoemeense\nRoemenië\nRoma\nRomaans\nRome\nRomein\nRomeinen\nRomeins\nRomeinse\nRomeinsrechtelijk\nRoodkapje\nRooms\nRota\nRotarian\nRotary\nRotaryclub\nRotjeknor\nRotterdammer\nRotterdams\nRubicon\nRus\nRusland\nRussin\nRussisch\nRussisch-orthodox\nRussische\nS-bocht\nSARS\nSGML\nSIS-kaart\nSOS\nSS'er\nSTER-reclame\nSTER-spot\nSUV\nSaba\nSabaans\nSabaanse\nSabijns\nSacramentsdag\nSaks\nSaksen\nSaksisch\nSaksische\nSalisch\nSalvadoraan\nSalvadoraans\nSamaritaan\nSame\nSan Marinees\nSan Marino\nSanskriet\nSaoedi\nSaoedi-Arabisch\nSaoedi-Arabië\nSaoediër\nSaramacca\nSaramaccaans\nSaramaccaner\nSarnami\nSassanieden\nSaudi\nSaudi-Arabisch\nSaudi-Arabië\nSaudiër\nScandinavisch\nScandinavische\nScheldeoever\nSchengenland\nSchepper\nSchorpioen\nSchorselwoensdag\nSchot\nSchotland\nSchots\nSchotse\nSchotse Hooglanden\nSchrift\nSchriftgeleerde\nSchriftkenner\nSchriftuurlijk\nSchriftwoord\nScythen\nSefard\nSefarden\nSefardisch\nSemiet\nSemitisch\nSenaat\nSenaatscommissie\nSenaatsfractie\nSenaatsgebouw\nSenaatshoorzitting\nSenaatslid\nSenaatsvergadering\nSenaatsverkiezing\nSenaatsvoorzitter\nSenaatszetel\nSenegal\nSenegalees\nSeptuagint\nSeptuaginta\nServisch\nServische\nServië\nServiër\nSherpa\nShiva\nShoah\nSiamees\nSiberisch\nSiberische\nSiberië\nSinksen\nSint-Maarten\nSint-Maartenaar\nSint-Maartens\nSint-Nicolaas\nSint-Pieterspenning\nSinterklaas\nSinti\nSion\nSipaliwini\nSire\nSlaaf\nSlaven\nSlavisch\nSlavonisch\nSlavonische\nSleeswijk-Holstein\nSlovaak\nSlovaaks\nSlovakije\nSloveen\nSloveens\nSloveense\nSlovenië\nSlowaak\nSlowaakse\nSoekot\nSomalisch\nSomalië\nSomaliër\nSovjet-Russisch\nSovjet-Unie\nSovjet-communisme\nSovjetburger\nSovjetleger\nSovjetoverheersing\nSovjetrepubliek\nSovjettijd\nSpaans\nSpaanse\nSpaansgezind\nSpaanstalig\nSpanjaard\nSpanje\nSpartaan\nSpartaans\nSri Lanka\nSri Lankaan\nSri Lankaans\nStaatscourant\nStaatsdoema\nStandaardnederlands\nStaten-Generaal\nStatenfractie\nStatenlid\nStatenvergadering\nStatenverkiezing\nStatenverkiezingen\nStatenvertaling\nStatiaan\nSteenbok\nSteenbokskeerkring\nStier\nStoa\nStockholm\nStraatsburg\nStradivarius\nSuikerfeest\nSurinaams\nSurinaamse\nSuriname\nSurinamer\nSwahili\nSyrisch\nSyrië\nSyriër\nT-balk\nT-biljet\nT-bonesteak\nT-kruising\nT-profiel\nT-shirt\nT-stuk\nT-vormig\nTGV\nTachtiger\nTachtigers\nTafelberg\nTafelronde\nTalmoed\nTalmoedisch\nTalmoedist\nTanzania\nTanzaniaan\nTanzaniaans\nTartaar\nTartaars\nTartaren\nTataar\nTataars\nTenach\nTeutoons\nTexelaar\nThai\nThailand\nThailander\nThailands\nThais\nThaise\nTheems\nThora\nTirools\nToeareg\nTour de France\nTrio\nTrojaan\nTrojaans\nTsjech\nTsjechisch\nTsjechische\nTsjechië\nTunesisch\nTunesië\nTurk\nTurkije\nTurks\nTurkse\nTweede Kamer\nTweede Kamercommissie\nTweede Kamerfractie\nTweede Kamergebouw\nTweede Kamerlid\nTweelingen\nTwentenaar\nTwents\nU-bocht\nU-boot\nU-vormig\nURL\nUS-dollar\nUrdu\nUruguay\nUruguayaan\nUruguayaans\nUruguees\nUtopia\nUtrecht\nUtrechtenaar\nUtrechts\nV-snaar\nV-teken\nV-vorm\nV-vormig\nVN\nVN-vredesmacht\nVN-waarnemer\nVSB\nVUT\nVUT-gerechtigd\nVUT-gerechtigde\nVUT-premie\nVUT-regeling\nVVD'er\nVVV\nVVV-kantoor\nVaderdag\nValentijnsdag\nVastenavond\nVaticaans\nVaticaanstad\nVeda\nVeiligheidsraad\nVenW\nVenezolaans\nVenezuela\nVerkavelingsvlaams\nVerlosser\nVerweggistan\nVierschansentoernooi\nVierwoudstrekenmeer\nVietnam\nVietnamees\nVietnamese\nVietnamveteraan\nViking\nVikingboot\nVikingschip\nVikingtijd\nVinex\nVinex-wijk\nVisigotisch\nVissen\nVlaams\nVlaams-Brabant\nVlaams-Nederlands\nVlaams-nationalist\nVlaams-nationalistisch\nVlaamse\nVlaamsgezind\nVlaamsgezinde\nVlaamsgezindheid\nVlaanderen\nVlaming\nVolkenbond\nVolkerenbond\nVolksunie\nVrijheidsbeeld\nVuelta\nVulgaat\nVulgata\nW.\nWA\nWA-verzekering\nWAO'er\nWAO-uitkering\nWOB\nWW-uitkering\nWaal\nWaals\nWaals-Brabant\nWaalse\nWaddeneiland\nWaddeneilanden\nWaddenzee\nWales\nWalhalla\nWalin\nWalkure\nWallonië\nWanica\nWarschaupact\nWaterman\nWeegschaal\nWeesgegroet\nWehrmacht\nWelsh\nWelshman\nWereldbank\nWerelddierendag\nWereldgezondheidsorganisatie\nWereldhandelsorganisatie\nWereldomroep\nWereldvoetbalbond\nWest\nWest-Duits\nWest-Europa\nWest-Europeaan\nWest-Europees\nWest-Fries\nWest-Indisch\nWest-Vlaams\nWest-Vlaamse\nWest-Vlaanderen\nWest-Vlaming\nWesten\nWetstraat\nWilhelmus\nWillemsfonds\nWillemsorde\nWit-Rus\nWit-Rusland\nWit-Russisch\nX-benen\nX-chromosoom\nY-chromosoom\nZ-verpleegkundige\nZaligmaker\nZeeland\nZeeuw\nZeeuws\nZeeuwse\nZevengesternte\nZion\nZoeloe\nZondagswet\nZonnekoning\nZuid-Afrika\nZuid-Afrikaan\nZuid-Afrikaans\nZuid-Amerikaan\nZuid-Amerikaans\nZuid-Amerikaanse\nZuid-Europa\nZuid-Europeaan\nZuid-Europees\nZuid-Holland\nZuid-Hollander\nZuid-Hollands\nZuid-Molukken\nZuid-Molukker\nZuid-Nederlands\nZuiderkruis\nZuiderzee\nZuiderzeepolder\nZuidpool\nZuidpoolexpeditie\nZuidzee\nZuidzee-eiland\nZwaanridder\nZweden\nZweed\nZweeds\nZweedse\nZwitser\nZwitserland\nZwitsers\nZwitserse\nZwolle\nZwollenaar\nZwols\nZwolse\na\na capella\na fortiori\na posteriori\na prima vista\na priori\na vista\na-capellakoor\na-pion\na-priorisch\na-prioristisch\na.h.w.\na.j.b.\na.m.\na.u.b.\naagje\naagt\naagtappel\naai\naaibaar\naaibaarheid\naaibaarheidsfactor\naaien\naaiing\naak\naal\naalbes\naalbessen\naalbessengelei\naalbessenjam\naalbessenjenever\naalbessensap\naalbessenstruik\naalfuik\naalgeer\naalglad\naalkorf\naalkuip\naalmoes\naalmoezenier\naalmoezenierskamer\naalpomp\naalput\naalscholver\naalspeer\naalstal\naalsteker\naalstreep\naalstrepen\naalsvel\naalt\naaltje\naaltjes\naalvlug\naalvork\naalvormig\naam\naambeeld\naambei\naambeien\naamborstig\naamborstigheid\naamt\naan\naan den lijve\naan weerszijden\naanaarden\naanaarding\naanaardploeg\naanbakken\naanbaksel\naanbedene\naanbeeld\naanbeeldsblok\naanbehoren\naanbelanden\naanbelang\naanbelangen\naanbellen\naanbenen\naanberming\naanbesteden\naanbesteder\naanbesteding\naanbestedingsbeleid\naanbestedingsprocedure\naanbestedingsregel\naanbestedingsregeling\naanbestedingsvoorwaarde\naanbetalen\naanbetaling\naanbevelen\naanbevelenswaard\naanbevelenswaardig\naanbeveling\naanbevelingsbrief\naanbevelingscomité\naanbevolen\naanbevolenen\naanbiddelijk\naanbidden\naanbidder\naanbidding\naanbidster\naanbieden\naanbieder\naanbieding\naanbiedingsbrief\naanbiedingsfolder\naanbiedingsprijs\naanbijten\naanbinden\naanblaffen\naanblazen\naanblazing\naanblijven\naanblik\naanblikken\naanbod\naanbodbeleid\naanbodcurve\naanbodeconomie\naanbodgericht\naanbodkant\naanbodoverschot\naanbodverhouding\naanbodzijde\naanboorden\naanboren\naanbotsen\naanbouw\naanbouwen\naanbouwing\naanbouwsel\naanbraden\naanbranden\naanbrassen\naanbreien\naanbreken\naanbreng\naanbrengen\naanbrenger\naanbrenging\naanbrengpremie\naanbrengst\naanbrug\naandacht\naandachtig\naandachtigheid\naandachtsaspect\naandachtsgebied\naandachtsgroep\naandachtsgroepen\naandachtspunt\naandachtspuntenlijst\naandachtsstreep\naandachtsteken\naandachtsterrein\naandachtstreep\naandachtstreepje\naandachtstreepjes\naandachtstrekker\naandachtsveld\naandachtsverlies\naandachttrekker\naandachttrekkerij\naandak\naandammen\naandamming\naandeel\naandeelbewijs\naandeelhoudend\naandeelhouder\naandeelhoudersbelang\naandeelhoudersbewijs\naandeelhouderschap\naandeelhouderscommissie\naandeelhoudersovereenkomst\naandeelhoudersstructuur\naandeelhoudersvergadering\naandeelhouderswaarde\naandeelhoudster\naandeelkoers\naandelenadvies\naandelenbelang\naandelenbelegger\naandelenbelegging\naandelenbeurs\naandelenbezit\naandelenbezitter\naandelenemissie\naandelenfonds\naandelenhandel\naandelenindex\naandeleninkoop\naandelenkapitaal\naandelenkoers\naandelenkoop\naandelenkorf\naandelenlease\naandelenmarkt\naandelenomzet\naandelenoptie\naandelenoptieplan\naandelenoptieregeling\naandelenoverdracht\naandelenpakket\naandelenplan\naandelenportefeuille\naandelenpositie\naandelenprogramma\naandelenregister\naandelenrekening\naandelenruil\naandelenselectie\naandelensplitsing\naandelensysteem\naandelentransactie\naandelenuitgifte\naandelenverhouding\naandelenverkoop\naandenken\naandienen\naandijken\naandijking\naandikken\naandoen\naandoening\naandoenlijk\naandoenlijkheid\naandraagster\naandraaien\naandragen\naandrager\naandrang\naandraven\naandrentelen\naandrift\naandrijfas\naandrijfketting\naandrijfkracht\naandrijflijn\naandrijfmechanisme\naandrijfmotor\naandrijfriem\naandrijfsysteem\naandrijfwiel\naandrijven\naandrijver\naandrijving\naandringen\naandringer\naandringers\naandrukken\naandrukkracht\naandrukrol\naanduiden\naanduiding\naandurven\naanduwen\naandweilen\naaneen\naaneenbinden\naaneenflansen\naaneengeschakeld\naaneengesloten\naaneengroeien\naaneengroeiing\naaneenhangen\naaneenhechten\naaneenkleven\naaneenklinken\naaneenknopen\naaneenkoeken\naaneenkoppelen\naaneenkoppeling\naaneenlijmen\naaneennaaien\naaneenpassen\naaneenrijgen\naaneenrijging\naaneenschakelen\naaneenschakeling\naaneenschrijven\naaneensluiten\naaneensluiting\naaneensmeden\naaneenvoegen\naaneenvoeging\naaneenzetten\naanfietsen\naanflitsen\naanfloepen\naanfluiten\naanfluiting\naanfok\naanfokken\naanfokking\naangaan\naangaande\naangapen\naangeblazen\naangeboden\naangebonden\naangeboren\naangebouwd\naangebrand\naangebreid\naangedaan\naangedanen\naangedraaid\naangeduid\naangeefster\naangegeven\naangehaald\naangehoudene\naangehuwd\naangekaart\naangeklaagde\naangekleed\naangeknipt\naangekondigden\naangekweekt\naangeladen\naangeland\naangelande\naangeleerd\naangelegd\naangelegen\naangelegenheid\naangemerkt\naangemeten\naangenaam\naangenomen\naangepast\naangerukt\naangeschakeld\naangeschoten\naangeschreven\naangeschrevene\naangeschroefd\naangeslagen\naangeslibd\naangesloten\naangeslotene\naangespen\naangesprokene\naangesteld\naangestoken\naangetast\naangetekend\naangetogen\naangetrouwd\naangevallene\naangeven\naangever\naangevoerd\naangewezen\naangewezene\naangezet\naangezicht\naangezichtsligging\naangezichtspijn\naangezien\naangeërfd\naangeërfde\naangieren\naangieten\naangifte\naangiftebehandeling\naangiftebereidheid\naangiftebiljet\naangifteformulier\naangifteplicht\naangifteverplichting\naangiftevolgnummer\naangloeien\naangluren\naangolven\naangooien\naangorden\naangraven\naangrenzen\naangrenzend\naangrijnzen\naangrijpen\naangrijpend\naangrijping\naangrijpingspunt\naangrimmen\naangroei\naangroeien\naangroeiing\naangroeipremie\naangroeisel\naangroeiwerend\naanhaken\naanhalen\naanhalerig\naanhalig\naanhaligheid\naanhaling\naanhalingsteken\naanhalingstekens\naanhang\naanhangen\naanhanger\naanhangig\naanhangmotor\naanhangsel\naanhangsels\naanhangster\naanhangwagen\naanhankelijk\naanhankelijkheid\naanhankelijkheidsbetuiging\naanharken\naanhebben\naanhechten\naanhechting\naanhechtingspunt\naanhechtsel\naanhef\naanheffen\naanhikken\naanhinken\naanhitsen\naanhitser\naanhitsing\naanhobbel\naanhobbelen\naanhollen\naanhoorder\naanhoren\naanhorig\naanhorigheden\naanhorigheid\naanhouden\naanhoudend\naanhoudendheid\naanhouder\naanhouding\naanhoudingsbevel\naanhoudingseenheid\naanhoudingsmandaat\naanhoudster\naanhuppelen\naanhuwing\naanjaagfunctie\naanjagen\naanjager\naankaarten\naankakken\naankalken\naankappen\naankijken\naanklaagster\naanklacht\naanklagen\naanklager\naanklampen\naanklamping\naankleden\naankleding\naanklemmen\naankleven\naankleving\naanklikbaar\naanklikken\naanklinken\naanklooien\naankloppen\naanklotsen\naanknippen\naanknoeien\naanknopen\naanknoping\naanknopingspunt\naankoeken\naankoersen\naankomeling\naankomen\naankomend\naankomst\naankomsthal\naankomstplaats\naankomsttijd\naankondigen\naankondiger\naankondiging\naankondigster\naankoop\naankoopakte\naankoopbedrag\naankoopbeleid\naankoopbeslissing\naankoopbewijs\naankoopbewijzen\naankoopbon\naankoopbudget\naankoopcentrale\naankoopdatum\naankoopdirecteur\naankoopfonds\naankoopfrequentie\naankoopgedrag\naankoopkoers\naankoopkosten\naankoopkracht\naankooplimiet\naankoopoptie\naankooppatroon\naankoopprijs\naankoopproces\naankoopsom\naankoopwaarde\naankopen\naankoper\naankoppelen\naankoppeling\naankorsting\naankrijgen\naankruien\naankruisen\naankunnen\naankweek\naankweken\naankweking\naanlaat\naanlachen\naanladen\naanlanden\naanlandig\naanlanding\naanlandingspunt\naanlappen\naanlassen\naanleg\naanleggen\naanlegger\naanleghaven\naanlegkosten\naanlegplaats\naanlegsteiger\naanlegster\naanlegvergunning\naanleiding\naanlengen\naanleren\naanleunen\naanleuning\naanleunwoning\naanleveren\naanlevering\naanlichten\naanliggen\naanliggend\naanlijken\naanlijmen\naanlijnen\naanlijngebod\naanloeien\naanloeren\naanloeven\naanloggen\naanlokkelijk\naanlokkelijkheid\naanlokken\naanlokking\naanloop\naanloopfase\naanloophaven\naanloophuis\naanloopkleur\naanloopkosten\naanloopperiode\naanloopprobleem\naanlooproute\naanloopspreekuur\naanlooptijd\naanlooptransformator\naanloopverlies\naanlopen\naanmaak\naanmaakblokje\naanmaakhout\naanmaakhoutje\naanmaakkosten\naanmaken\naanmanen\naanmaning\naanmaningenprocedure\naanmaningensysteem\naanmaningsbrief\naanmaningstekst\naanmarcheren\naanmatigen\naanmatigend\naanmatiging\naanmeldcentrum\naanmelden\naanmelder\naanmelding\naanmeldingsbon\naanmeldingsdatum\naanmeldingsformulier\naanmeldingsprocedure\naanmeldingspunt\naanmeldingstermijn\naanmengen\naanmenging\naanmeren\naanmerkelijk\naanmerken\naanmerking\naanmeten\naanminnig\naanminnigheid\naanmodderen\naanmoedigen\naanmoediging\naanmoedigingsbeleid\naanmoedigingspremie\naanmoedigingsprijs\naanmoedigingssubsidie\naanmoeten\naanmonding\naanmonsteren\naanmonstering\naanmunten\naanmunting\naannaaien\naanname\naannamebeleid\naanneembaar\naanneemsom\naanneemster\naannemelijk\naannemelijkheid\naannemen\naannemer\naannemerij\naannemersbedrijf\naannemerscombinatie\naannemersfirma\naannemersmaterieel\naannemerswereld\naanneming\naannemingsbedrijf\naannemingssom\naanpak\naanpakken\naanpalend\naanpappen\naanpasbaar\naanpassen\naanpassing\naanpassingsbeleid\naanpassingsfactor\naanpassingskosten\naanpassingsmoeilijkheden\naanpassingsperiode\naanpassingsprobleem\naanpassingsproces\naanpassingsprogramma\naanpassingsstoornis\naanpassingsvermogen\naanpersen\naanpezen\naanpikken\naanplakbiljet\naanplakbord\naanplakbrief\naanplakken\naanplakker\naanplakking\naanplakzuil\naanplant\naanplanten\naanplanting\naanplempen\naanplemping\naanploegen\naanporren\naanpoten\naanpraten\naanpreken\naanprijzen\naanprijzer\naanprijzing\naanprikkelen\naanprikkeling\naanprikken\naanpunten\naanpunter\naanpunting\naanraakscherm\naanraden\naanrader\naanraken\naanraking\naanrakingspunt\naanranden\naanrander\naanranding\naanrandster\naanrazen\naanrazeren\naanrecht\naanrechtbank\naanrechtblad\naanrechten\naanrechtkastje\naanrechtkeuken\naanrechttafel\naanreiken\naanreiker\naanrekenen\naanrekening\naanrennen\naanrichten\naanrijden\naanrijding\naanrijgen\naanrijpen\naanrijroute\naanrijtijd\naanroeien\naanroep\naanroepen\naanroeper\naanroeping\naanroeren\naanroken\naanrollen\naanrommelen\naanruisen\naanrukken\naanschaf\naanschafbeleid\naanschafdatum\naanschaffen\naanschaffing\naanschaffingsprijs\naanschafkosten\naanschafprijs\naanschafwaarde\naanschakelen\naanscharrelen\naanschellen\naanscherpen\naanscherping\naanschieten\naanschijn\naanschikken\naanschoffelen\naanschoppen\naanschouwelijk\naanschouwelijkheid\naanschouwen\naanschouwing\naanschouwingsonderwijs\naanschrijden\naanschrijven\naanschrijving\naanschroeven\naanschuinen\naanschuiven\naanschurken\naansjokken\naansjorren\naansjouwen\naanslaan\naanslag\naanslagbiljet\naanslagen\naanslagjaar\naanslagnummer\naanslagregelaar\naanslagtermijn\naanslagvoet\naanslenteren\naanslepen\naansleuren\naanslibben\naanslibbing\naanslibsel\naanslijking\naanslijpen\naansloffen\naansluipen\naansluitdoos\naansluiten\naansluitgroep\naansluitgroepen\naansluiting\naansluitingenregister\naansluitingskosten\naansluitingsplaats\naansluitingsprobleem\naansluitingspunt\naansluitingstreffer\naansluitkabel\naansluitkast\naansluitklem\naansluitklemmen\naansluitkosten\naansluitmogelijkheid\naansluitnet\naansluitpunt\naansluitsnoer\naansluitsnoeren\naansluitwaarde\naansmeden\naansmeren\naansmijten\naansnede\naansnee\naansnellen\naansnijden\naansnijding\naansnoeren\naansnorren\naanspannen\naanspanner\naanspanning\naanspeelbaar\naanspeelpunt\naanspelen\naanspijkeren\naanspoelen\naanspoeling\naanspoelsel\naansporen\naansporing\naanspraak\naansprakelijk\naansprakelijkheid\naansprakelijkheidsbeding\naansprakelijkheidsbedingen\naansprakelijkheidsbeperkend\naansprakelijkheidspolis\naansprakelijkheidsrecht\naansprakelijkheidsrisico\naansprakelijkheidsschade\naansprakelijkheidsschaden\naansprakelijkheidsuitsluiting\naansprakelijkheidsverzekeraar\naansprakelijkheidsverzekering\naansprakelijkstelling\naanspreekbaar\naanspreekbaarheid\naanspreekpunt\naanspreektitel\naanspreekvorm\naanspreken\naanspreker\naanspreking\naanspringen\naanstaan\naanstaand\naanstaande\naanstaat\naanstalten\naanstampen\naanstamper\naanstamping\naanstappen\naanstaren\naansteekvlam\naanstekelijk\naanstekelijkheid\naansteken\naansteker\naansteking\naanstellen\naansteller\naanstellerig\naanstellerij\naanstelleritis\naanstelling\naanstellingsbeleid\naanstellingsbrief\naanstellingsdatum\naanstellingsgesprek\naanstellingskeuring\naanstellingstermijn\naanstelster\naansterken\naansterven\naanstevenen\naanstichten\naanstichter\naanstichting\naanstichtster\naanstiefelen\naanstijven\naanstippen\naanstipping\naanstoken\naanstoker\naanstomen\naanstonds\naanstookster\naanstoot\naanstootgevend\naanstoppen\naanstormen\naanstort\naanstotelijk\naanstotelijkheid\naanstoten\naanstotend\naanstoting\naanstouwen\naanstralen\naanstrepen\naanstreping\naanstrijken\naanstromen\naanstrompelen\naanstuiven\naanstuiving\naansturen\naansturing\naanstuwen\naansukkelen\naantal\naantappen\naantasten\naantasting\naantekenaar\naantekenboek\naantekenen\naantekening\naantekenschrift\naantellen\naantijgen\naantijger\naantijging\naantikken\naantimmeren\naantocht\naantonen\naantonend\naantoning\naantoonbaar\naantoonbaarheid\naantrappen\naantreden\naantree\naantreffen\naantrekkelijk\naantrekkelijkheid\naantrekkelijkheidsfactor\naantrekkelijkheidsindex\naantrekken\naantrekker\naantrekking\naantrekkingskracht\naantrekkingspool\naantrekkingsvermogen\naantrippelen\naanturen\naanvaardbaar\naanvaardbaarheid\naanvaarden\naanvaarding\naanvaardingsplicht\naanvaardingsrede\naanvaardingstoespraak\naanval\naanvallen\naanvallend\naanvallenderwijze\naanvaller\naanvallig\naanvalligheid\naanvalsactie\naanvalscolonne\naanvalsdrang\naanvalsduo\naanvalsfront\naanvalsgolf\naanvalskoppel\naanvalskracht\naanvalskreet\naanvalsleider\naanvalslinie\naanvalslust\naanvalsoorlog\naanvalsopbouw\naanvalsopzet\naanvalsplan\naanvalspoging\naanvalsrecht\naanvalssein\naanvalsspel\naanvalsteken\naanvalster\naanvalstrio\naanvalswapen\naanvalswijze\naanvang\naanvangen\naanvanger\naanvangsdatum\naanvangsfase\naanvangsklas\naanvangsklasse\naanvangsprijs\naanvangspunt\naanvangssalaris\naanvangssnelheid\naanvangsstadium\naanvangstijd\naanvangstijdstip\naanvangstoets\naanvangsuur\naanvankelijk\naanvaren\naanvaring\naanvaringsschot\naanvatten\naanvatter\naanvatting\naanvechtbaar\naanvechten\naanvechting\naanvegen\naanverstorven\naanverwant\naanverwante\naanverwantschap\naanvetten\naanvijl\naanvijlen\naanvijzen\naanvinken\naanvlammen\naanvliegen\naanvliegroute\naanvloeien\naanvochten\naanvoegen\naanvoegend\naanvoeging\naanvoegsel\naanvoelen\naanvoeling\naanvoelingsvermogen\naanvoer\naanvoerbuis\naanvoerder\naanvoerdersband\naanvoerderschap\naanvoeren\naanvoerhaven\naanvoering\naanvoerkanaal\naanvoerlijn\naanvoerpijp\naanvoerrol\naanvoerroute\naanvoerster\naanvoerweg\naanvraag\naanvraagdatum\naanvraagformulier\naanvraagprocedure\naanvraagster\naanvraagtermijn\naanvrage\naanvragen\naanvrager\naanvreten\naanvulfrequentie\naanvullen\naanvullend\naanvulling\naanvullingsblad\naanvullingsexamen\naanvullingsregeling\naanvulsel\naanvuren\naanvuring\naanw. vnw.\naanwaaien\naanwaggelen\naanwakkeren\naanwakkering\naanwandelen\naanwas\naanwassen\naanwendbaar\naanwenden\naanwending\naanwennen\naanwenning\naanwensel\naanwerken\naanwerpen\naanwerven\naanwerver\naanwerving\naanwervingsstop\naanwetten\naanwezen\naanwezend\naanwezig\naanwezige\naanwezigen\naanwezigheid\naanwezigheidsgeld\naanwezigheidslijst\naanwezigheidsperiode\naanwijsbaar\naanwijsinstrument\naanwijsstok\naanwijzen\naanwijzend\naanwijzer\naanwijzing\naanwijzingsbesluit\naanwijzingsbevoegdheid\naanwijzingsbord\naanwijzingsrecht\naanwinnen\naanwinning\naanwinst\naanwinstenbeleid\naanwippen\naanwoekeren\naanwrijven\naanwrijving\naanzagen\naanzakken\naanzeggen\naanzegger\naanzegging\naanzeilen\naanzet\naanzetriem\naanzetsel\naanzetslinger\naanzetstaal\naanzetsteen\naanzetster\naanzetstuk\naanzetten\naanzetter\naanzetting\naanzeulen\naanzicht\naanzien\naanzienlijk\naanzienlijkheid\naanzijn\naanzitten\naanzoek\naanzoeken\naanzoeker\naanzuigen\naanzuiging\naanzuigkanaal\naanzuigrooster\naanzuiveren\naanzuivering\naanzwaaien\naanzwellen\naanzwellend\naanzwemmen\naanzwengelen\naanzwepen\naanzweven\naap\naap-noot-mies\naapachtig\naapje\naapjes\naapmens\naar\naard\naardachtig\naardaker\naardamandel\naardappel\naardappelboer\naardappelcampagne\naardappeldeeg\naardappeleter\naardappelhandelaar\naardappelkever\naardappelkist\naardappelmeel\naardappelmeelfabriek\naardappelmoeheid\naardappeloogst\naardappelplant\naardappelpootgoed\naardappelpoter\naardappelpuree\naardappelras\naardappelrooien\naardappelrooier\naardappelsalade\naardappelschillen\naardappelschiller\naardappelschilmesje\naardappelsla\naardappelstijfsel\naardappelstroop\naardappelteelt\naardappelveld\naardappelvlokken\naardappelzetmeel\naardappelziekte\naardas\naardatmosfeer\naardbaan\naardbei\naardbeiboom\naardbeienbed\naardbeiengelei\naardbeienijs\naardbeienjam\naardbeienneus\naardbeienpluk\naardbeienteelt\naardbeientijd\naardbeiklaver\naardbeiplant\naardbeistruik\naardbeving\naardbevingsgebied\naardbevingsgolf\naardbevingsgordel\naardbevingshaard\naardbevingsmeter\naardbevingsramp\naardbewoner\naardbewoonster\naardbodem\naardbol\naardboor\naardbrand\naarddraad\naarde\naardebaan\naardedonker\naardegoed\naardelektrode\naarden\naardetint\naardeweg\naardewerk\naardewerken\naardewerker\naardewerkfabriek\naardewerkindustrie\naardewerkwinkel\naardfout\naardfoutcontrole\naardgas\naardgasbaten\naardgasbedrijf\naardgasbel\naardgasinkomsten\naardgasmarkt\naardgasmotor\naardgasnet\naardgasprijs\naardgasreserve\naardgastanker\naardgasterminal\naardgasveld\naardgasverbruik\naardgasvondst\naardgasvoorraad\naardgaswinning\naardgaswinst\naardgeest\naardgeleiding\naardgewas\naardglobe\naardgordel\naardhars\naardhommel\naardhoop\naardig\naardigheid\naardigjes\naarding\naardkastanje\naardkern\naardklem\naardklimaat\naardklomp\naardklont\naardkloot\naardkluit\naardkorst\naardkrekel\naardkromming\naardkunde\naardkundig\naardkundige\naardlaag\naardleiding\naardlekschakelaar\naardmagnetisch\naardmagnetisme\naardmannetje\naardmantel\naardmassa\naardmeetkunde\naardmeting\naardmuis\naardnoot\naardnotenolie\naardobservatie\naardolie\naardolie-industrie\naardoliemaatschappij\naardolieproduct\naardoppervlak\naardoppervlakte\naardpeer\naardpek\naardplaat\naardplooi\naardpool\naardrijk\naardrijkskunde\naardrijkskundeboek\naardrijkskundeleraar\naardrijkskundeles\naardrijkskundig\naardrijkskundige\naardrol\naardrook\naardrups\naards\naardschaduw\naardschok\naardschol\naardschors\naardschudding\naardsgezind\naardsgezindheid\naardsheid\naardslak\naardslang\naardsluiting\naardspin\naardster\naardstorting\naardstraal\naardstralen\naardstraling\naardstroom\naardtrilling\naardvarken\naardvast\naardveil\naardverbinding\naardverschuiving\naardvlo\naardvrucht\naardwarmte\naardwas\naardwerk\naardwerker\naardwetenschappen\naardwolf\naardworm\naars\naarsdarm\naarsgat\naarsopening\naarsvin\naartsbedrieger\naartsbisdom\naartsbisschop\naartsbisschoppelijk\naartsbroederschap\naartsconservatief\naartsdeugniet\naartsdiaken\naartsdiakenschap\naartsdiocees\naartsdom\naartsengel\naartshertog\naartshertogdom\naartshertogelijk\naartshertogin\naartskanselier\naartsketter\naartsleugenaar\naartslui\naartsluiaard\naartsmoeilijk\naartspriester\naartspriesterschap\naartsrivaal\naartsrivale\naartsschelm\naartsschurk\naartsvader\naartsvaderlijk\naartsverrader\naartsvijand\naarzelaar\naarzelen\naarzeling\naas\naasbloem\naasdier\naaseter\naasgier\naasjager\naasje\naaskever\naastor\naasvlieg\naasvogel\naaszak\nabactis\nabacus\nabandon\nabandonnement\nabandonneren\nabat-jour\nabattoir\nabbreviatie\nabc\nabc-boek\nabc-boeken\nabces\nabdicatie\nabdiceren\nabdij\nabdijbier\nabdijcomplex\nabdijgebouw\nabdijkerk\nabdijsiroop\nabdiqueren\nabdis\nabdomen\nabdominaal\nabeel\nabeelboom\nabel\nabelenlaan\naberrant\naberratie\nabituriënt\nabject\nablatief\nablaut\nablutie\nabnormaal\nabnormaliteit\nabolitie\nabolitionist\nabominabel\nabondance\nabonnee\nabonnee-tv\nabonneebestand\nabonneekosten\nabonneenummer\nabonnees\nabonneeservice\nabonneetelevisie\nabonneetje\nabonneewerving\nabonnement\nabonnementenbestand\nabonnementhouder\nabonnementnummer\nabonnementsbasis\nabonnementsgeld\nabonnementskaart\nabonnementskosten\nabonnementsnummer\nabonnementsprijs\nabonnementstarief\nabonnementsvoorstelling\nabonneren\naborteren\naborteur\naborteuse\nabortief\nabortus\nabortus provocatus\nabortusarts\nabortusbeleid\nabortusboot\nabortuscijfer\nabortuskliniek\nabortuspil\nabortuspraktijk\nabortusregeling\nabortusteam\nabortusverbod\nabortuswet\nabortuswetgeving\nabracadabra\nabraham\nabri\nabrikoos\nabrikozenboom\nabrikozengelei\nabrikozenjam\nabrikozenpit\nabrikozentaart\nabrupt\nabscis\nabseilen\nabsence\nabsent\nabsenten\nabsentenlijst\nabsenteren\nabsenteïsme\nabsentie\nabsentielijst\nabsint\nabsolutie\nabsolutisme\nabsolutist\nabsolutistisch\nabsoluut\nabsoluutheid\nabsolveren\nabsorberen\nabsorptie\nabsorptieband\nabsorptielijn\nabsorptiespectrum\nabsorptievermogen\nabsoute\nabstinent\nabstinentie\nabstract\nabstractie\nabstractiegraad\nabstractieniveau\nabstractievermogen\nabstractum\nabstraheren\nabstrahering\nabsurd\nabsurdisme\nabsurdist\nabsurdistisch\nabsurditeit\nabt\nabuis\nabundant\nabusief\nabusievelijk\nacacia\nacaciahout\nacacialaan\nacademica\nacademicus\nacademie\nacademiegebouw\nacademiejaar\nacademiestad\nacademietijd\nacademievergadering\nacademievriend\nacademisch\nacademisme\nacajou\nacajouboom\nacanthus\nacanthusblad\nacceleratie\nacceleratiepomp\nacceleratieproef\nacceleratievermogen\naccelerator\naccelereren\naccent\naccent aigu\naccent circonflexe\naccent grave\naccentloos\naccentteken\naccentuatie\naccentueren\naccentuering\naccentverlegging\naccentvers\naccentverschil\naccentverschuiving\naccept\nacceptabel\nacceptant\nacceptatie\nacceptatiebeleid\nacceptatiegraad\nacceptatieplicht\nacceptatieprobleem\nacceptatieproces\nacceptatiepunten\naccepteren\nacceptgiro\nacceptgirokaart\nacceptie\nacceptkrediet\nacceptprovisie\nacces\naccessie\naccessit\naccessoir\naccessoire\naccessoires\naccident\naccidenteel\naccijns\naccijnsheffing\naccijnskantoor\naccijnsloos\naccijnsrechten\naccijnsverhoging\naccijnsverlaging\nacclamatie\nacclimatisatie\nacclimatiseren\nacclimatisering\naccolade\naccommodatie\naccommodatiebeleid\naccommodatiefonds\naccommodatievermogen\naccommoderen\naccompagnateur\naccompagnement\naccompagneren\naccordeon\naccordeonist\naccordeoniste\naccordeonmuziek\naccordeonvereniging\naccorderen\naccount\naccountancy\naccountant\naccountant-administratieconsulent\naccountantsbureau\naccountantscontrole\naccountantsdienst\naccountantsexamen\naccountantsfirma\naccountantskantoor\naccountantskosten\naccountantsmaatschappij\naccountantsnetwerk\naccountantsonderzoek\naccountantsorganisatie\naccountantsrapport\naccountantstoezicht\naccountantsverklaring\naccountantsverslag\naccounting\naccountmanager\naccreditatie\naccrediteren\naccreditering\naccreditief\naccres\naccu\naccubak\naccubatterij\naccukist\naccukisten\naccuklem\nacculader\nacculading\nacculturatie\naccumulatie\naccumulatief\naccumulator\naccumulatorenbatterij\naccumuleren\naccuoplader\naccuplaat\naccuraat\naccuratesse\naccusatief\naccuzuur\nace\nacetaat\naceton\nacetylcholine\nacetyleen\nacetyleenbrander\nacetyleengas\nacetylsalicylzuur\nach\nachenebbisj\nachilleshiel\nachillespees\nachillespeesblessure\nachromasie\nachromatisch\nacht\nachtarm\nachtarmig\nachtbaan\nachtbaanrit\nachtbaar\nachtbaarheid\nachtcilinder\nachtdaags\nachtduizend\nachtduizender\nachteloos\nachteloosheid\nachten\nachtendertig\nachtendertigste\nachtennegentig\nachtenswaard\nachtenswaardig\nachtentachtig\nachtentwintig\nachtentwintigduizend\nachtentwintigste\nachtenveertig\nachtenvijftig\nachtenzestig\nachtenzeventig\nachter\nachteraan\nachteraandrijving\nachteraangaan\nachteraankomen\nachteraanlopen\nachteraanzicht\nachteraanzitten\nachteraf\nachterafbuurt\nachterafplaatsen\nachterafstraat\nachterafstraatjes\nachterafzaaltje\nachteranker\nachterankerlier\nachteras\nachterbak\nachterbaks\nachterbaksheid\nachterbalk\nachterbalkon\nachterban\nachterband\nachterbank\nachterbeen\nachterbil\nachterblijfster\nachterblijven\nachterblijver\nachterboom\nachterbout\nachterbouw\nachterbumper\nachterbuur\nachterbuurman\nachterbuurt\nachterbuurttaal\nachterbuurvrouw\nachterdak\nachterdeel\nachterdek\nachterdenken\nachterdeur\nachterdijk\nachterdijks\nachterdocht\nachterdochtig\nachterdochtigheid\nachterdoek\nachtereen\nachtereenvolgend\nachtereenvolgens\nachtereind\nachtereinde\nachterelkaar\nachteren\nachtererf\nachtererven\nachterflap\nachtergaan\nachtergalerij\nachtergang\nachtergebleven\nachtergeblevene\nachtergebouw\nachtergedeelte\nachtergesteld\nachtergevel\nachtergezet\nachtergracht\nachtergrond\nachtergrondartikel\nachtergrondbeeld\nachtergrondfiguur\nachtergrondgegeven\nachtergrondgeheugen\nachtergrondgeluid\nachtergrondinformatie\nachtergrondkennis\nachtergrondkleur\nachtergrondlawaai\nachtergrondliteratuur\nachtergrondmuziek\nachtergrondprojectie\nachtergrondruis\nachtergrondscherm\nachtergrondstraling\nachtergrondverlichting\nachtergrondzang\nachtergrondzangeres\nachterhaalbaar\nachterhaald\nachterhaaldheid\nachterhalen\nachterhaling\nachterham\nachterhand\nachterhandsbeentje\nachterhaven\nachterheen\nachterhesp\nachterhoede\nachterhoedegevecht\nachterhoedepositie\nachterhoedespeler\nachterhoofd\nachterhoofdsbeen\nachterhoofdsligging\nachterhouden\nachterhoudend\nachterhoudendheid\nachterhouding\nachterhout\nachterhuis\nachterin\nachteringang\nachterkaft\nachterkamer\nachterkamertjespolitiek\nachterkant\nachterkantlijn\nachterkasteel\nachterkeuken\nachterklap\nachterklappen\nachterkleindochter\nachterkleinkind\nachterkleinzoon\nachterklep\nachterklinker\nachterkwartier\nachterlader\nachterlager\nachterland\nachterlandverbinding\nachterlangs\nachterlap\nachterlappen\nachterlast\nachterlaten\nachterlating\nachterleen\nachterleenman\nachterlicht\nachterliggen\nachterligger\nachterlijf\nachterlijk\nachterlijke\nachterlijkheid\nachterlijn\nachterloops\nachterlopen\nachterloper\nachterluik\nachterman\nachtermast\nachtermiddag\nachtermuur\nachterna\nachternaad\nachternaam\nachternadoen\nachternagaan\nachternalopen\nachternamiddag\nachternarijden\nachternasturen\nachternazenden\nachternazetten\nachternazitten\nachterneef\nachternicht\nachternoen\nachterom\nachteromkijken\nachterommetje\nachteromzien\nachteronder\nachterop\nachterophinken\nachteropkomen\nachteroplopen\nachteropraken\nachterover\nachteroverdrukken\nachterovergedrukt\nachteroverkammen\nachteroverleunen\nachteroverliggen\nachteroverslaan\nachterovervallen\nachterpaard\nachterpad\nachterpagina\nachterpand\nachterpiek\nachterpiekschot\nachterplaat\nachterplaats\nachterplan\nachterplat\nachterplecht\nachterpoort\nachterpoortje\nachterpoot\nachterportier\nachterraam\nachterrem\nachterroef\nachterruimte\nachterruit\nachterruitverwarming\nachterschip\nachterschot\nachterspatbord\nachterspeler\nachterspoiler\nachterst\nachterstaan\nachterstaand\nachterstal\nachterstallig\nachterstand\nachterstandenbeleid\nachterstandsbeleid\nachterstandsbestrijding\nachterstandsbuurt\nachterstandsgebied\nachterstandsituatie\nachterstandsleerlingen\nachterstandspositie\nachterstandssituatie\nachterstandswijk\nachterste\nachterstel\nachterstellen\nachterstelling\nachtersteven\nachterstevoren\nachterstraat\nachterstreng\nachterstuk\nachterterrein\nachtertuin\nachteruit\nachteruitblikken\nachteruitboeren\nachteruitdeinzen\nachteruitgaan\nachteruitgang\nachteruitkijkspiegel\nachteruitkrabbelen\nachteruitlopen\nachteruitrijden\nachteruitrijlamp\nachteruitschoppen\nachteruitschuiven\nachteruitslaan\nachteruitvallen\nachteruitvliegen\nachteruitwijken\nachteruitzetten\nachtervang\nachtervanger\nachterveld\nachtervering\nachtervertrek\nachtervoegen\nachtervoeging\nachtervoegsel\nachtervoet\nachtervolgen\nachtervolger\nachtervolging\nachtervolgingsploeg\nachtervolgingsscène\nachtervolgingswaan\nachtervolgingswaanzin\nachtervolgster\nachtervork\nachterwaarts\nachterwacht\nachterwagen\nachterwand\nachterwaren\nachterweg\nachterwege\nachterwerk\nachterwiel\nachterwielaandrijving\nachterwoning\nachterzaal\nachterzak\nachterzeil\nachterzeilen\nachterzij\nachterzijde\nachterzolder\nachthoek\nachthoekig\nachthonderd\nachthonderdduizend\nachthonderdste\nachting\nachtjarig\nachtjarige\nachtkamp\nachtkant\nachtkantig\nachtkoppig\nachtling\nachtmaal\nachtmaands\nachtpotig\nachtpuntig\nachtregelig\nachtspan\nachtste\nachttal\nachttien\nachttiende\nachttiende-eeuwer\nachttiende-eeuws\nachttienduizend\nachttienhonderd\nachttienhonderdste\nachttienjarig\nachturendag\nachturig\nachtuurjournaal\nachtvlak\nachtvoetig\nachtvoud\nachtvoudig\nachtzijdig\nacid\nacid house\nacne\nacoliet\nacquireren\nacquisiteur\nacquisitie\nacquisitiebeleid\nacquisitiekosten\nacquisitieplan\nacquit\nacre\nacribie\nacrobaat\nacrobate\nacrobatentoer\nacrobatie\nacrobatiek\nacrobatisch\nacrogym\nacroniem\nacrostichon\nacryl\nacrylverf\nact\nacteercarrière\nacteerdebuut\nacteerervaring\nacteerkunst\nacteerprestatie\nacteerprijs\nacteerstijl\nacteertalent\nacteerwerk\nacteren\nacteur\nacteur-regisseur\nacteursechtpaar\nacteursfilm\nacteurslijst\nacteursloopbaan\nacteursopleiding\nacteursprijs\nacteursregie\nacteursregisseur\nacteurstheater\nacteursvakbond\nactie\nactieaanbod\nactieartikel\nactiebeleid\nactiebereidheid\nactieblokken\nactiebudget\nactiecentrum\nactiecode\nactiecomité\nactiecommissie\nactiedag\nactiedagen\nactiedatum\nactiedruk\nactief\nactiefilm\nactiefolder\nactiefzijde\nactiegericht\nactiegevoelig\nactiegroep\nactiehandel\nactieheld\nactieheldin\nactiekamp\nactiekomedie\nactiekorting\nactieleider\nactielijst\nactielijsten\nactiemateriaal\nactiemiddel\nactiemogelijkheid\nactieondersteuning\nactiepartij\nactieperiode\nactieplan\nactieprijs\nactieprogramma\nactiepunt\nactieradius\nactieritme\nactieserie\nactiesite\nactiespel\nactiestroom\nactieterrein\nactiethriller\nactieveling\nactievergadering\nactieverkoop\nactievoerder\nactievoeren\nactievoerster\nactievoorraad\nactievoorstel\nactiewapen\nactieweek\nactinisch\nactionair\nactionist\nactiva\nactivabeheer\nactivatie\nactivatiecode\nactiveren\nactivering\nactivisme\nactivist\nactiviste\nactivistisch\nactiviteit\nactiviteiten\nactiviteitenbegeleider\nactiviteitenbegeleiding\nactiviteitencentrum\nactiviteitencommissie\nactiviteitenkalender\nactiviteitenlijst\nactiviteitenlijsten\nactiviteitenmatrix\nactiviteitenniveau\nactiviteitenoverzicht\nactiviteitenplan\nactiviteitenplannen\nactiviteitenplanning\nactiviteitenprogramma\nactiviteitenschema\nactiviteitsgebied\nactiviteitsgebieden\nactiviteitsgraad\nactiviteitsniveau\nactivum\nactor\nactrice\nactualisatie\nactualiseren\nactualisering\nactualisme\nactualiteit\nactualiteitenoverzicht\nactualiteitenprogramma\nactualiteitenrubriek\nactualiteitenzender\nactualiteitswaarde\nactuariaat\nactuarieel\nactuaris\nactueel\nacupressuur\nacupuncturist\nacupunctuur\nacuut\nad\nad fundum\nad hoc\nad interim\nad rem\nad-hocbeleid\nad-hocbeslissing\nadagio\nadagium\nadam\nadamsappel\nadamskostuum\nadamsvorken\nadaptatie\nadapter\nadapteren\nadaptief\nadat\nadatrecht\naddax\naddenda\naddendum\nadder\nadderbeet\nadderen\nadderengebroed\naddergebroed\naddergif\nadderkruid\naddernest\naddertong\nadderwortel\naddict\nadditie\nadditief\nadditioneel\nadel\nadelaar\nadelaarsblik\nadelaarshorst\nadelaarsnest\nadelaarsoog\nadelaarssteen\nadelaarsvaren\nadelaarsvleugel\nadelaarsvlucht\nadelboek\nadelborst\nadelbrief\nadelbrieven\nadeldom\nadelen\nadellijk\nadelstand\nadeltrots\nadem\nademanalyse\nadembeklemmend\nadembenemend\nadembescherming\nadembeschermingsfilters\nadembeweging\nademen\nademhalen\nademhaling\nademhalingsgymnastiek\nademhalingsmoeilijkheden\nademhalingsoefening\nademhalingsorgaan\nademhalingsprobleem\nademhalingsstoornis\nademhalingstechniek\nademhalingstoestel\nademhalingswegen\nademloos\nademnood\nadempauze\nademruimte\nademstilstand\nademstoot\nademtest\nademtocht\nademweg\nademwortel\nadenine\nadenovirus\nadenoïde\nadept\nadequaat\nader\naderbreuk\naderen\nadergezwel\naderig\naderlaten\naderlating\naderlijk\naderontsteking\naderspat\naderverkalking\nadherent\nadhesie\nadhesiebetuiging\nadhortatief\nadiabatisch\nadieu\nadios\nadipositas\nadjectief\nadjectivisch\nadjudant\nadjudant-chef\nadjunct\nadjunct-algemeendirecteur\nadjunct-chef\nadjunct-commies\nadjunct-commissaris\nadjunct-directeur\nadjunct-directeur-generaal\nadjunct-directrice\nadjunct-hoofd\nadjunct-hoofdredacteur\nadjunct-inspecteur\nadjunct-kabinetschef\nadjunct-secretaris\nadjunct-secretaris-generaal\nadministrateur\nadministrateur-generaal\nadministratie\nadministratiecommissie\nadministratief\nadministratiefrechtelijk\nadministratiegebouw\nadministratiekantoor\nadministratiekosten\nadministratienummer\nadministratieprogramma\nadministratiesysteem\nadministrator\nadministratrice\nadministreren\nadmiraal\nadmiraalschap\nadmiraalsschip\nadmiraalsuniform\nadmiraalsvlag\nadmiraalvlinder\nadmiraalzeilen\nadmiraliteit\nadmiraliteitscollege\nadmiraliteitshof\nadmiratie\nadmissie\nadmitteren\nadolescent\nadolescente\nadolescentenkliniek\nadolescentie\nadonis\nadoniseren\nadoptant\nadoptante\nadopteren\nadoptie\nadoptiebeleid\nadoptiebemiddeling\nadoptiebureau\nadoptiecentrum\nadoptief\nadoptiefkind\nadoptiefouder\nadoptiefouders\nadoptiefzoon\nadoptiegebied\nadoptiegezin\nadoptiekind\nadoptiemoeder\nadoptieouder\nadoptieplan\nadoptieprocedure\nadoptieraad\nadoptierecht\nadoptieregeling\nadoptievader\nadoptieverbod\nadoptieverdrag\nadoptieverdragen\nadoptieverlof\nadoptieverzoek\nadoptievoorbereiding\nadoptiewet\nadoptiewetgeving\nadoptiewetten\nadorabel\nadoratie\nadoreren\nadrenaline\nadrenalinegehalte\nadres\nadresband\nadresbehandeling\nadresboek\nadresbureau\nadresfirma\nadresgroep\nadreskaart\nadreslabel\nadreslijst\nadresruimte\nadressant\nadressante\nadresseerbaar\nadresseermachine\nadressen\nadressenbank\nadressenbestand\nadressenboek\nadressenlijst\nadressenschrijver\nadresseren\nadressering\nadresseringsruimte\nadresstrook\nadreswijziging\nadsorberen\nadsorptie\nadstringerend\nadstructie\nadstrueren\nadult\nadvenant\nadvent\nadventief\nadventist\nadventisten\nadventskaars\nadventskrans\nadventsperiode\nadventspreek\nadventsstuk\nadventstijd\nadventszondag\nadventtijd\nadventzondag\nadverbiaal\nadverbium\nadverteerder\nadverteerdersmarkt\nadvertentie\nadvertentie-inkomsten\nadvertentieacquisiteur\nadvertentieacquisitie\nadvertentieafdeling\nadvertentiebedrijf\nadvertentiebeleid\nadvertentieblad\nadvertentiebudget\nadvertentiebureau\nadvertentiecampagne\nadvertentiegeweld\nadvertentiekosten\nadvertentiemarkt\nadvertentieomzet\nadvertentiepagina\nadvertentierubriek\nadvertentieruimte\nadvertentietarief\nadvertentietekst\nadvertentieverkoop\nadvertentievolume\nadvertentiewerving\nadverteren\nadvies\nadviesaanvraag\nadviesaanvrage\nadviesbedrijf\nadviesbehoefte\nadviesbrief\nadviesbureau\nadviescentrum\nadviescollege\nadviescomité\nadviescommissie\nadviesdienst\nadviesdocument\nadviesfunctie\nadviesgesprek\nadviesgroep\nadviesinstantie\nadvieskantoor\nadvieskosten\nadvieslichaam\nadvieslijst\nadviesmarkt\nadviesnota\nadviesopdracht\nadviesorgaan\nadviesorganisatie\nadviespraktijk\nadviesprijs\nadviesraad\nadviesrapport\nadviesrecht\nadviesrol\nadviesronde\nadviessnelheid\nadviesstijl\nadviestaak\nadviestak\nadviestaken\nadviesterrein\nadviesverhoging\nadviesverlaging\nadviesverlening\nadviesvraag\nadviesvrager\nadvieswereld\nadvieswerk\nadviseren\nadvisering\nadviseringsproces\nadviseur\nadviseurschap\nadviseursfunctie\nadviseursrol\nadviseurstaak\nadviseuse\nadvocaat\nadvocaat-fiscaal\nadvocaat-generaal\nadvocaatje\nadvocaatkosten\nadvocaatskosten\nadvocate\nadvocaten-generaal\nadvocatenblad\nadvocatenbureau\nadvocatencollectief\nadvocatenkamer\nadvocatenkantoor\nadvocatenkosten\nadvocatenpraktijk\nadvocatenstreek\nadvocatenteam\nadvocaterij\nadvocatuur\naerobic\naerobics\naeroclub\naerodroom\naerodynamica\naerodynamisch\naeronaut\naeronautiek\naeronautisch\naeroob\naerosol\naerostatica\naf\nafasie\nafatisch\nafbakenen\nafbakening\nafbakken\nafbedelen\nafbeelden\nafbeelding\nafbeeldingenregister\nafbeeldsel\nafbeitelen\nafbekken\nafbellen\nafbenen\nafbericht\nafbestellen\nafbestelling\nafbetalen\nafbetaling\nafbetalingsregeling\nafbetalingsstelsel\nafbetalingssysteem\nafbetalingstermijn\nafbetten\nafbeulen\nafbidden\nafbidding\nafbieden\nafbiezen\nafbijten\nafbijtmiddel\nafbikken\nafbinden\nafbladderen\nafbladeren\nafblaffen\nafblazen\nafblijven\nafblokken\nafblotten\nafbluffen\nafblussen\nafbod\nafboeken\nafboeking\nafboenen\nafbollen\nafbonken\nafboorden\nafborstelen\nafbottelen\nafbouw\nafbouwen\nafbouwperiode\nafbouwproces\nafbouwprogramma\nafbouwregeling\nafbouwschema\nafbraak\nafbraakbeleid\nafbraakmateriaal\nafbraakprijs\nafbraakprijzen\nafbraakproces\nafbraakproduct\nafbraakterrein\nafbraakwerken\nafbramen\nafbranden\nafbranding\nafbreekbaar\nafbreekbaarheid\nafbreekfout\nafbreekhulp\nafbreekpatroon\nafbreekplaats\nafbreekpunt\nafbreekregel\nafbreekroutine\nafbreien\nafbreken\nafbreker\nafbreking\nafbrekingsteken\nafbrengen\nafbreuk\nafbreukrisico\nafbrokkelen\nafbrokkeling\nafbuigen\nafbuiging\nafbuigmagneet\nafcentiemen\nafchecken\nafd.\nafdak\nafdalen\nafdaler\nafdaling\nafdammen\nafdamming\nafdanken\nafdankertje\nafdanking\nafdansen\nafdeinzen\nafdekfolie\nafdekken\nafdekking\nafdeklaag\nafdekplaat\nafdekverf\nafdelen\nafdeling\nafdelingsactiviteit\nafdelingsarchief\nafdelingsbelang\nafdelingsbestuur\nafdelingsbestuurder\nafdelingsbestuursvergadering\nafdelingsbibliotheek\nafdelingsblad\nafdelingschef\nafdelingscollega\nafdelingsdirecteur\nafdelingsdirectie\nafdelingsfonds\nafdelingsgebied\nafdelingshoofd\nafdelingskrant\nafdelingsleden\nafdelingsleider\nafdelingsleiding\nafdelingslid\nafdelingsmanager\nafdelingsniveau\nafdelingsnummer\nafdelingsonderzoek\nafdelingsraad\nafdelingsraden\nafdelingssecretaresse\nafdelingssecretariaat\nafdelingsstemmentallen\nafdelingsstructuur\nafdelingstaken\nafdelingsverband\nafdelingsvergadering\nafdelingsvoorzitter\nafdelingswerk\nafdichten\nafdichting\nafdienen\nafdieven\nafdingen\nafdoen\nafdoend\nafdoende\nafdoener\nafdoening\nafdokken\nafdonderen\nafdoppen\nafdraaien\nafdracht\nafdrachtskorting\nafdragen\nafdrager\nafdragertje\nafdraven\nafdreggen\nafdreigen\nafdreiging\nafdrentelen\nafdrift\nafdrijven\nafdrijving\nafdringen\nafdrinken\nafdrogen\nafdroging\nafdronk\nafdroogdoek\nafdroppelen\nafdruipbak\nafdruipen\nafdruiping\nafdruiprek\nafdruk\nafdrukapparaat\nafdrukeenheid\nafdrukformaat\nafdrukken\nafdrukkwaliteit\nafdrukpapier\nafdrukraam\nafdruksel\nafdrukselectie\nafdruppelen\nafdruppen\nafduikelen\nafduwen\nafdwalen\nafdwaling\nafdweilen\nafdwingbaar\nafdwingbaarheid\nafdwingen\nafdwinging\nafeisen\naffaire\naffakkelen\naffect\naffectatie\naffectie\naffectief\naffectiviteit\naffiche\naffichecampagne\nafficheren\naffichering\naffidavit\naffietsen\naffiliatie\naffiliëren\naffiniteit\naffirmatie\naffirmatief\naffirmeren\naffix\naffluiten\naffodil\naffreus\naffront\naffronteren\naffuit\nafgaan\nafgaand\nafgang\nafgebakend\nafgebekt\nafgebeten\nafgeborsteld\nafgebrand\nafgebroken\nafgedaan\nafgedankt\nafgedonderd\nafgedraaid\nafgehandeld\nafgejakkerd\nafgekeurd\nafgekickt\nafgeknot\nafgekondigden\nafgeladen\nafgelasten\nafgelasting\nafgelaten\nafgeleefd\nafgelegen\nafgelegenheid\nafgeleid\nafgeleide\nafgelikt\nafgelopen\nafgemaakt\nafgemat\nafgemest\nafgemeten\nafgemetenheid\nafgepast\nafgepeigerd\nafgeplat\nafgeprijsd\nafgereden\nafgericht\nafgerist\nafgerond\nafgerukt\nafgeschaft\nafgescheiden\nafgescheidene\nafgescheidenen\nafgeschermd\nafgesloofd\nafgesloten\nafgeslotenheid\nafgesneden\nafgesproken\nafgestampt\nafgesteld\nafgestoft\nafgestompt\nafgestorven\nafgestorvene\nafgestoten\nafgestreken\nafgestudeerd\nafgestudeerde\nafgetakeld\nafgetekend\nafgetobd\nafgetopt\nafgetraind\nafgetrapt\nafgetrokken\nafgetrokkenheid\nafgevaardigde\nafgeveerd\nafgeven\nafgeving\nafgevuld\nafgewend\nafgewerkt\nafgewezene\nafgewogen\nafgewonden\nafgezaagd\nafgezant\nafgezet\nafgezeten\nafgezien\nafgezonderd\nafgezonderden\nafghaan\nafgietdeksel\nafgieten\nafgietsel\nafgifte\nafgiftekantoor\nafgifteprijzen\nafglijden\nafglijding\nafglippen\nafgluren\nafgod\nafgodendienaar\nafgodendienst\nafgodentempel\nafgoderij\nafgodin\nafgodisch\nafgodsbeeld\nafgodsdienst\nafgodslang\nafgodstempel\nafgolven\nafgooien\nafgraven\nafgraving\nafgrazen\nafgrendelen\nafgrendeling\nafgrensbaar\nafgrenzen\nafgrenzing\nafgrijselijk\nafgrijselijkheid\nafgrijslijk\nafgrijslijkheid\nafgrijzen\nafgrissen\nafgrond\nafgronden\nafgunst\nafgunstig\nafhaalcentrum\nafhaalchinees\nafhaaldienst\nafhaalrestaurant\nafhaken\nafhaker\nafhakken\nafhalen\nafhaler\nafhaling\nafhameren\nafhandelaar\nafhandelen\nafhandeling\nafhandelingskosten\nafhandig\nafhangeling\nafhangen\nafhankelijk\nafhankelijkheid\nafhankelijkheidspositie\nafhankelijkheidsrelatie\nafhankelijkheidssyndroom\nafhankelijkheidsverhouding\nafhappen\nafharden\nafharken\nafhaspelen\nafhechten\nafheffen\nafhellen\nafhelpen\nafhollen\nafhoren\nafhouden\nafhouding\nafhouwen\nafhouwing\nafhuren\nafhuring\nafijn\nafjagen\nafjakkeren\nafkaatsen\nafkaatsing\nafkabbelen\nafkabbeling\nafkalken\nafkalven\nafkalving\nafkammen\nafkanten\nafkanting\nafkapen\nafkappen\nafkapping\nafkappingsteken\nafkatten\nafkeer\nafkeren\nafkerig\nafkerigheid\nafkering\nafkerven\nafketsen\nafkeuren\nafkeurend\nafkeurenswaard\nafkeurenswaardig\nafkeuring\nafkick\nafkickcentrum\nafkicken\nafkickkliniek\nafkickprogramma\nafkickverschijnsel\nafkijken\nafkijker\nafklappen\nafkleden\nafklemmen\nafklemming\nafkletsen\nafklimmen\nafklinken\nafklokken\nafkloppen\nafklopper\nafkluiven\nafknabbelen\nafknagen\nafknaging\nafknappen\nafknapper\nafknauwen\nafknellen\nafknelling\nafknevelen\nafknibbelen\nafknijpen\nafknijping\nafknippen\nafknopen\nafknotten\nafknotting\nafknuppelen\nafknutselen\nafkoelen\nafkoeling\nafkoelingsperiode\nafkoersen\nafkoken\nafkoker\nafkolven\nafkomen\nafkomst\nafkomstig\nafkondigen\nafkondiging\nafkooksel\nafkoop\nafkoopbaar\nafkoopbaarheid\nafkoopbaarstelling\nafkoopregeling\nafkoopsom\nafkoopverbod\nafkoopwaarde\nafkopen\nafkoping\nafkoppelen\nafkoppeling\nafkorten\nafkorting\nafkortingsteken\nafkrabbelen\nafkrabben\nafkrabber\nafkrabsel\nafkraken\nafkrassen\nafkrijgen\nafkruimelen\nafkruipen\nafkuieren\nafkuisen\nafkukelen\nafkunnen\nafkussen\naflaadhaven\naflaat\naflaatbrief\naflaathandel\naflachen\nafladen\naflader\naflading\naflakken\naflandig\naflangen\naflappen\naflaten\naflating\naflatoxine\naflebberen\nafleesapparaat\nafleesapparatuur\nafleesbaar\nafleesfout\nafleesinstrument\nafleesloep\nafleggen\naflegger\nafleggertje\naflegging\nafleidbaar\nafleiden\nafleider\nafleiding\nafleidingskanaal\nafleidingsmanoeuvre\nafleidingsmiddel\nafleidkunde\nafleidsel\nafleren\nafleveraar\nafleveradres\nafleveren\naflevering\nafleveringsbewijs\nafleveringsdatum\nafleveringskwaliteit\nafleveringsnummer\nafleveringstermijn\naflezen\naflezer\naflezing\nafliegen\nafliggen\naflijnen\naflikken\nafloden\nafloeren\naflogen\nafloop\nafloopdatum\naflopen\naflopend\naflosbaar\naflossen\naflosser\naflossing\naflossingsploeg\naflossingsregeling\naflossingstermijn\naflossingsvrij\naflossingswaarde\naflossingswedstrijd\nafluisterapparaat\nafluisterapparatuur\nafluisterbaar\nafluisteren\nafluisternetwerk\nafluisterpraktijken\nafluisterschandaal\nafluistersysteem\nafluizen\nafmaaien\nafmaken\nafmaker\nafmaking\nafmalen\nafmarcheren\nafmars\nafmartelen\nafmarteling\nafmatten\nafmattend\nafmatting\nafmelden\nafmelding\nafmelken\nafmeren\nafmeten\nafmeting\nafmijnen\nafmijner\nafmijning\nafmonsteren\nafmonstering\nafmonteren\nafnaaien\nafname\nafnamecontract\nafnamegarantie\nafnameplicht\nafnameprijs\nafnameverplichting\nafnamezijde\nafneembaar\nafneemster\nafnemen\nafnemer\nafnemerskrediet\nafnemerskring\nafnemerszijde\nafneming\nafneuzen\nafnijpen\nafnokken\nafnummeren\naforisme\naforistisch\nafpakken\nafpakking\nafpalen\nafpaling\nafpassen\nafpassing\nafpeddelen\nafpeigeren\nafpeil\nafpeilen\nafpeiling\nafpelen\nafpellen\nafpennen\nafperken\nafperking\nafpersen\nafperser\nafpersing\nafpersingspraktijken\nafpersingszaak\nafpeuteren\nafpeuzelen\nafpijnigen\nafpikken\nafpingelen\nafpitsen\nafplaggen\nafplakken\nafplatten\nafplatting\nafpletten\nafploegen\nafpluizen\nafplukken\nafpoeieren\nafpoeiering\nafpoetsen\nafpompen\nafpomping\nafpraten\nafpreken\nafprijzen\nafprijzing\nafprijzingen\nafprikken\nafpulken\nafpunten\nafraden\nafrader\nafrafelen\nafraffelen\nafragen\nafraken\naframmelen\naframmeling\nafranselen\nafranseling\nafrapen\nafraspen\nafrasterdraad\nafrasteren\nafrastering\nafratelen\nafrazen\nafreageren\nafregelen\nafregenen\nafreis\nafreizen\nafrekenen\nafrekening\nafrekensysteem\nafremmen\nafremming\nafrennen\nafrepelen\nafrichten\nafrichter\nafrichting\nafrichtster\nafrijden\nafrijgen\nafrijzen\nafrikaan\nafrikaantje\nafrikaniseren\nafrikanistiek\nafrissen\nafristen\nafrit\nafritsen\nafro\nafrodiet\nafrodisiacum\nafroeien\nafroep\nafroepcontract\nafroepcontractant\nafroepen\nafroeper\nafroeping\nafroffelen\nafrokapsel\nafrolbaar\nafrollen\nafrolook\nafromen\nafromer\nafroming\nafronden\nafrondfout\nafronding\nafrondingsfout\nafrondingsgesprek\nafronselen\nafrossen\nafrossing\nafrotten\nafroven\nafruil\nafruilen\nafruimen\nafruisen\nafrukken\nafrukking\nafsabbelen\nafsabberen\nafschaafsel\nafschaduwen\nafschaduwing\nafschaffen\nafschaffer\nafschaffing\nafschakelbaar\nafschakelen\nafschakeling\nafschalen\nafschampen\nafschamper\nafschatten\nafschatting\nafschaven\nafscheep\nafscheid\nafscheidbaar\nafscheiden\nafscheider\nafscheiding\nafscheidingsbeweging\nafscheidingslijn\nafscheidingsmuur\nafscheidingsoorlog\nafscheidingssloot\nafscheidsbezoek\nafscheidsborrel\nafscheidsbrief\nafscheidscadeau\nafscheidsceremonie\nafscheidscollege\nafscheidsconcert\nafscheidsdans\nafscheidsdienst\nafscheidsduel\nafscheidsel\nafscheidsfeest\nafscheidsgeschenk\nafscheidsgesprek\nafscheidsgroet\nafscheidsinterview\nafscheidskreet\nafscheidskus\nafscheidslied\nafscheidsmaal\nafscheidspreek\nafscheidspremie\nafscheidsreceptie\nafscheidsrede\nafscheidsspeech\nafscheidstoespraak\nafscheidstournee\nafscheidsvoorstelling\nafscheidswedstrijd\nafscheidswoord\nafschenken\nafschepen\nafscheper\nafscheping\nafscheppen\nafscheren\nafschermen\nafscherming\nafschetsen\nafscheuren\nafscheuring\nafschieten\nafschijnen\nafschijnsel\nafschilderen\nafschildering\nafschilderwerk\nafschilferen\nafschilfering\nafschillen\nafschitteren\nafschminken\nafschoffelen\nafschooien\nafschoppen\nafschot\nafschotvergunning\nafschraapsel\nafschrabben\nafschrapen\nafschraper\nafschrappen\nafschrapsel\nafschreeuwen\nafschrift\nafschrijfbaar\nafschrijfpunt\nafschrijven\nafschrijver\nafschrijving\nafschrijvingsberekening\nafschrijvingsbrief\nafschrijvingsduur\nafschrijvingskosten\nafschrijvingsmethode\nafschrijvingsmethodiek\nafschrijvingspercentage\nafschrijvingssysteem\nafschrijvingstermijn\nafschrikken\nafschrikking\nafschrikkingseffect\nafschrikkingsmacht\nafschrikmiddel\nafschrikwekkend\nafschrobben\nafschroefbaar\nafschroeien\nafschroeven\nafschubben\nafschudden\nafschuieren\nafschuimen\nafschuimer\nafschuinen\nafschuining\nafschuiven\nafschuiving\nafschuren\nafschuring\nafschutsel\nafschutten\nafschutting\nafschuw\nafschuwelijk\nafschuwelijkheid\nafschuwwekkend\nafseinen\nafserveren\nafsijpelen\nafsijpeling\nafsjouwen\nafslaan\nafslachten\nafslachting\nafslag\nafslager\nafslagplaats\nafslanken\nafslanking\nafslankingskuur\nafslankingsoperatie\nafslankingsplan\nafslankingsproces\nafslenteren\nafslepen\nafsleping\nafsleuren\nafslibben\nafslijpen\nafslijping\nafslijpsel\nafslijten\nafslijting\nafslingeren\nafsloffen\nafslopen\nafslorpen\nafsloten\nafsloven\nafsluipen\nafsluitbaar\nafsluitdam\nafsluitdatum\nafsluitdeksel\nafsluitdop\nafsluiten\nafsluiter\nafsluitformulier\nafsluiting\nafsluitingsmuur\nafsluitkraan\nafsluitpremie\nafsluitprocedure\nafsluitprovisie\nafslurpen\nafsmeerlaag\nafsmeken\nafsmeking\nafsmelten\nafsmeren\nafsmijten\nafsnauwen\nafsnellen\nafsnijden\nafsnijding\nafsnijdsel\nafsnijfrequentie\nafsnijfrequenties\nafsnijsel\nafsnoeien\nafsnoepen\nafsnoeren\nafsnorren\nafsnuffelen\nafsnuiting\nafsoppen\nafspanen\nafspannen\nafspanning\nafspatiëren\nafspatiëring\nafspatten\nafspeelapparatuur\nafspeelbaar\nafspelden\nafspelen\nafspeuren\nafspieden\nafspiegelen\nafspiegeling\nafspiegelingscollege\nafspinnen\nafspitten\nafsplijten\nafsplinteren\nafsplitsen\nafsplitsing\nafspoelen\nafspoeling\nafsponsen\nafsponzen\nafsporen\nafspraak\nafsprakenkaartje\nafsprakenlijst\nafsprakensysteem\nafspreken\nafspringen\nafspuiten\nafstaan\nafstaand\nafstammeling\nafstammelinge\nafstammen\nafstamming\nafstammingsgegevens\nafstammingsleer\nafstammingslijn\nafstammingsrecht\nafstammingstheorie\nafstampen\nafstand\nafstandbediening\nafstandelijk\nafstandelijkheid\nafstandhouder\nafstandmeter\nafstandmeting\nafstandsbediening\nafstandsbepaling\nafstandsbesturing\nafstandseis\nafstandskind\nafstandsmaat\nafstandsmoeder\nafstandsonderwijs\nafstandspaal\nafstandsprocedure\nafstandsrit\nafstandsschot\nafstandssein\nafstandstabel\nafstandsverklaring\nafstandswijzer\nafstapje\nafstappen\nafsteek\nafsteekbeitel\nafsteken\nafsteker\nafstekken\nafstel\nafstellen\nafsteller\nafstelling\nafstemeenheid\nafstemknop\nafstemmen\nafstemming\nafstemmingsgesprek\nafstemmingsproces\nafstempelen\nafstempeling\nafstemschaal\nafsterven\nafsterving\nafstevenen\nafstijgen\nafstikken\nafstippen\nafstoffen\nafstoken\nafstomen\nafstommelen\nafstompen\nafstomping\nafstoppen\nafstormen\nafstorten\nafstorting\nafstotelijk\nafstoten\nafstotend\nafstoting\nafstotingsreactie\nafstotingsverschijnsel\nafstoven\nafstraffen\nafstraffing\nafstralen\nafstraling\nafstrepen\nafstrijden\nafstrijken\nafstrijker\nafstrippen\nafstromen\nafstroming\nafstrompelen\nafstropen\nafstruinen\nafstudeerder\nafstudeerdocent\nafstudeerfase\nafstudeeronderwerp\nafstudeeronderzoek\nafstudeeronderzoeken\nafstudeeropdracht\nafstudeerproject\nafstudeerrichting\nafstudeerscriptie\nafstudeerstage\nafstudeervariant\nafstudeerverslag\nafstudeerverslagen\nafstudeerwerk\nafstuderen\nafstuiten\nafstuiven\nafstuiving\nafsturen\nafstuwen\naft\naftaaien\naftakdoos\naftakelen\naftakeling\naftakelingsproces\naftakken\naftakking\naftakleiding\naftands\naftapapparatuur\naftapbaar\naftapkogelkraan\naftapkraan\naftapleiding\naftapmogelijkheid\naftappen\naftapper\naftapping\naftappomp\naftasten\naftekenaar\naftekenen\naftekening\naftelbaar\naftellen\naftelliedje\naftelling\naftelrijm\naftelrijmpje\naftelsom\naftelversje\nafterbeat\nafteren\nafterparty\naftersales\naftershave\naftersun\naftikken\naftillen\naftimmeren\naftimmering\naftippen\naftiteling\naftobben\naftocht\naftomen\naftoppen\naftopping\naftornen\naftrainen\naftrap\naftrappen\naftred\naftreden\naftreding\naftrek\naftrekbaar\naftrekbaarheid\naftrekbedrag\naftrekbeperking\naftrekken\naftrekker\naftrekking\naftrekmogelijkheid\naftrekpost\naftrekregeling\naftreksel\naftreksom\naftrektal\naftroeven\naftroever\naftroeving\naftroggelaar\naftroggelarij\naftroggelen\naftroggeling\naftrommelen\naftuigen\naftuiging\naftuimelen\nafturen\nafturven\naftypen\nafvaardigen\nafvaardiging\nafvaart\nafvagen\nafval\nafvalaanbod\nafvalbak\nafvalbedrijf\nafvalbeheer\nafvalbeleid\nafvalberg\nafvalberging\nafvalbranche\nafvalcontainer\nafvaldepot\nafvalemmer\nafvalheffing\nafvalhoop\nafvalhout\nafvalinzameling\nafvallen\nafvaller\nafvallers\nafvallig\nafvallige\nafvalligheid\nafvallingskoers\nafvallingsrace\nafvallozing\nafvalmarkt\nafvalmateriaal\nafvalolie\nafvaloven\nafvalplan\nafvalpreventie\nafvalprobleem\nafvalproblematiek\nafvalproduct\nafvalproductie\nafvalput\nafvalrace\nafvalresten\nafvalscheiding\nafvalsector\nafvalstof\nafvalstoffen\nafvalstoffenheffing\nafvalstoffenplan\nafvalstort\nafvalstortplaats\nafvalstroom\nafvalsysteem\nafvaltransport\nafvalverbranding\nafvalverbrandingscapaciteit\nafvalverbrandingsinstallatie\nafvalverbrandingsoven\nafvalverwerkend\nafvalverwerker\nafvalverwerking\nafvalverwerkingsbedrijf\nafvalverwerkingsinstallatie\nafvalverwijdering\nafvalwarmte\nafvalwater\nafvalwaterzuivering\nafvalwedstrijd\nafvalzak\nafvangen\nafvaren\nafvechten\nafvegen\nafvellen\nafvergen\nafverven\nafvezelen\nafvijlen\nafvijzen\nafvillen\nafvinken\nafvissen\nafvlaggen\nafvlakken\nafvlakking\nafvliegen\nafvloeien\nafvloeiing\nafvloeiingsfonds\nafvloeiingskosten\nafvloeiingslijst\nafvloeiingsmaatregel\nafvloeiingsplan\nafvloeiingsregeling\nafvluchten\nafvoegen\nafvoer\nafvoerbuis\nafvoercapaciteit\nafvoerder\nafvoeren\nafvoergassenleiding\nafvoering\nafvoerkanaal\nafvoerleiding\nafvoerleidingsysteem\nafvoerpijp\nafvoerput\nafvoerputje\nafvoerrooster\nafvoerroute\nafvoersok\nafvoersysteem\nafvoerweg\nafvorderen\nafvormen\nafvragen\nafvreten\nafvriezen\nafvrijen\nafvullen\nafvuren\nafvuring\nafwaaien\nafwaarderen\nafwaardering\nafwaarts\nafwachten\nafwachting\nafwaggelen\nafwandelen\nafwas\nafwasautomaat\nafwasbaar\nafwasbak\nafwasborstel\nafwaskom\nafwaskwast\nafwasmachine\nafwasmiddel\nafwassen\nafwasser\nafwassing\nafwaswater\nafwateren\nafwatering\nafwateringsgaatje\nafwateringskanaal\nafwateringsput\nafwateringsputten\nafwateringssysteem\nafweegfactor\nafweer\nafweerapparaat\nafweerbaar\nafweerder\nafweergeschut\nafweerkanon\nafweermechanisme\nafweermiddel\nafweerraket\nafweerreactie\nafweerstof\nafweersysteem\nafweervuur\nafwegen\nafweging\nafwegingsproces\nafweiden\nafweken\nafweking\nafwenden\nafwending\nafwennen\nafwenning\nafwentelen\nafwenteling\nafweren\nafwering\nafwerken\nafwerker\nafwerkfase\nafwerking\nafwerkingen\nafwerklaag\nafwerkplaats\nafwerkplamuur\nafwerkplek\nafwerkster\nafwerkstroken\nafwerkstrook\nafwerpen\nafwerping\nafweten\nafwezen\nafwezend\nafwezende\nafwezendheid\nafwezig\nafwezige\nafwezigheid\nafwijken\nafwijking\nafwijkingsmogelijkheid\nafwijzen\nafwijzend\nafwijzing\nafwijzingsbeslissing\nafwijzingsbrief\nafwijzingsgesprek\nafwikkelen\nafwikkeling\nafwikkelingskosten\nafwimpelen\nafwimpeling\nafwinden\nafwinding\nafwinnen\nafwippen\nafwisselen\nafwisselend\nafwisseling\nafwissen\nafwonen\nafwrijven\nafwringen\nafz.\nafzabbelen\nafzabberen\nafzadelen\nafzagen\nafzakken\nafzakkertje\nafzakking\nafzanderij\nafzanding\nafzegenen\nafzeggen\nafzegger\nafzegging\nafzeiken\nafzeilen\nafzemen\nafzenden\nafzender\nafzending\nafzendster\nafzengen\nafzepen\nafzet\nafzetbaar\nafzetbaarheid\nafzetbalk\nafzetgebied\nafzetgroei\nafzetkanaal\nafzetmarkt\nafzetmogelijkheid\nafzetnet\nafzetpotentie\nafzetpraktijken\nafzetprijs\nafzetprobleem\nafzetproblematiek\nafzetproces\nafzetpunt\nafzetpunten\nafzetsel\nafzetster\nafzetten\nafzetter\nafzetterij\nafzetting\nafzettingsgesteente\nafzettingsprocedure\nafzetvolume\nafzeulen\nafzeven\nafzichtelijk\nafzichtelijkheid\nafzien\nafzienbaar\nafzijdig\nafzijdigheid\nafzijn\nafzinken\nafzitten\nafzoeken\nafzoenen\nafzomen\nafzonderen\nafzondering\nafzonderingsstal\nafzonderlijk\nafzuigen\nafzuiging\nafzuiginstallatie\nafzuigkap\nafzuigsysteem\nafzuigunit\nafzuipen\nafzwaaien\nafzwaaier\nafzwakken\nafzwakking\nafzwemmen\nafzwenken\nafzwepen\nafzweren\nafzwering\nafzwerven\nafzweven\nafzwieren\nafzwoegen\nagaat\nagaathfonds\nagaathlening\nagamie\nagape\nagapen\nagaragar\nagaten\nagave\nagence\nagenda\nagendacommissie\nagendaprogramma\nagendapunt\nagendavolgorde\nagendavoorstel\nagenderen\nagendering\nagenderingsbevoegdheid\nagenderingsdatum\nagenesie\nagens\nagent\nagent-provocateur\nagente\nagentes\nagentschap\nagentuur\nageren\nagger\nagglomeraat\nagglomeratie\nagglutinatie\nagglutineren\naggravatie\naggregaat\naggregatie\naggregatieniveau\naggregatietoestand\naggregeren\nagio\nagioreserve\nagiotage\nagitatie\nagitato\nagitator\nagitatorisch\nagiteren\nagitprop\nagnost\nagnosticisme\nagnosticus\nagnostisch\nagoeti\nagoge\nagogentaal\nagogie\nagogiek\nagogisch\nagologie\nagologisch\nagonie\nagoog\nagorafobie\nagrafe\nagrarisch\nagrariër\nagressie\nagressief\nagressietest\nagressieveling\nagressiviteit\nagressor\nagribulk\nagribusiness\nagricultuur\nagrificatie\nagro-industrie\nagro-industrieel\nagrobiologie\nagrobusiness\nagrochemisch\nagrologie\nagronomie\nagronomisch\nagronoom\nagrotoerisme\nah\naha\naha-erlebnis\nahistorisch\nahob\nahoi\nahorn\nahornboom\nahornen\nahornhout\nahornhouten\nahornsiroop\nai\naide-mémoire\naids\naidsbeleid\naidsbesmetting\naidsbestrijding\naidsconferentie\naidsepidemie\naidskind\naidsmedicijn\naidsonderzoek\naidspatiënt\naidspreventie\naidsprobleem\naidsproblematiek\naidsprogramma\naidsremmer\naidsslachtoffer\naidstest\naidstijdperk\naidsvaccin\naidsvirus\naidsvoorlichting\naigrette\naikido\naimabel\naio\naioli\nair\nairbag\nairbrush\nairbus\nairco\nairconditioned\nairconditioner\nairconditioning\nairhostess\nairmail\nairmarshal\nairmile\nairplay\nairstrip\najakkes\najam pangang\najasses\najb\najour\najoursteek\najuin\najuinachtig\najuinbol\najuinzaad\najuus\nakant\nakela\nakelei\nakelig\nakeligheid\naker\naki\nakkefietje\nakker\nakkerbouw\nakkerbouwbedrijf\nakkerbouwer\nakkerbouwgebied\nakkerbouwgewas\nakkerbouwgrond\nakkerbouwproduct\nakkerdistel\nakkeren\nakkerkool\nakkerland\nakkerleeuwerik\nakkerlieden\nakkermaalsbos\nakkermaalshout\nakkerman\nakkerrandbeheer\nakkersleep\nakkerteelt\nakkertje\nakkervrucht\nakkerwinde\nakkevietje\nakkoord\nakkoordbevinding\nakkoordenschema\nakkoordverklaring\nakoestiek\nakoestisch\nakolei\nakoniet\naks\nakst\nakte\naktes\naktetas\nal\nal dente\nalaaf\nalaam\nalangalang\nalant\nalantswortel\nalarm\nalarmbel\nalarmbelprocedure\nalarmblazer\nalarmcentrale\nalarmdienst\nalarmeren\nalarmerend\nalarmering\nalarmeringslijst\nalarmeringssysteem\nalarmfase\nalarmfluit\nalarmfunctie\nalarmgever\nalarminrichting\nalarminstallatie\nalarmist\nalarmistisch\nalarmkast\nalarmklok\nalarmknop\nalarmkreet\nalarmlijn\nalarmlus\nalarmmelding\nalarmnummer\nalarmpaneel\nalarmpeil\nalarmpistool\nalarmprocedure\nalarmpunt\nalarmpunten\nalarmreset\nalarmschel\nalarmsein\nalarmsignaal\nalarmsysteem\nalarmtoestand\nalbast\nalbasten\nalbastglas\nalbatros\nalbe\nalbedil\nalbinisme\nalbino\nalbum\nalbumblad\nalbumdebuut\nalbumine\nalbuminepapier\nalbums\nalbumtitel\nalbumvers\nalcantara\nalchemie\nalchemist\nalchemistisch\nalchimie\nalchimist\nalchimistisch\nalcohol\nalcoholarm\nalcoholbeleid\nalcoholbranche\nalcoholconsumptie\nalcoholcontrole\nalcoholgebruik\nalcoholgehalte\nalcoholgrens\nalcoholhoudend\nalcoholica\nalcoholicus\nalcoholisch\nalcoholiseren\nalcoholisme\nalcoholist\nalcoholiste\nalcoholistisch\nalcoholmatigingsbeleid\nalcoholmisbruik\nalcoholpercentage\nalcoholprobleem\nalcoholpromillage\nalcoholreclame\nalcoholtest\nalcoholverbod\nalcoholverbruik\nalcoholvergiftiging\nalcoholverkoop\nalcoholverslaafde\nalcoholverslaving\nalcoholvrij\naldaar\naldehyde\naldoor\naldoordringend\naldra\naldus\naleatorisch\naleer\nalert\nalertheid\nalevel\naleviet\nalevitisch\nalexandrijn\nalfa\nalfabet\nalfabetisch\nalfabetiseren\nalfabetisering\nalfabetiseringscursus\nalfabetiseringsproject\nalfabetisme\nalfadeeltje\nalfaglucosidase\nalfagras\nalfahulp\nalfalfa\nalfanumeriek\nalfastralen\nalfastraling\nalfawetenschap\nalg\nalgauw\nalge\nalgebra\nalgebraïsch\nalgebraïst\nalgeheel\nalgelijk\nalgemeen\nalgemeen directeur\nalgemeen secretaris\nalgemeenheid\nalgemeenverbindendverklaring\nalgemene gaswet\nalgenbloei\nalgengroei\nalgoed\nalgoedheid\nalgoritme\nalgoritmiek\nalgoritmisch\nalhier\nalhoewel\nalia\nalias\nalibi\nalignement\naligneren\nalikas\nalikruik\nalimentatie\nalimentatieachterstand\nalimentatiebetaling\nalimentatieduur\nalimentatiegeld\nalimentatieplicht\nalimentatieplichtig\nalimentatieplichtige\nalimentatiezaak\nalinea\nalinea-indeling\nalineaniveau\nalineanummer\nalineaprofiel\nalineascheiding\nalineastructuur\nalizarine\naliënatie\naliëneert\naliëneren\nalk\nalkali\nalkalimetaal\nalkalimetalen\nalkaline\nalkalisch\nalkaliseren\nalkaloïde\nalkaloïden\nalkanna\nalkoof\nall right\nall-in\nall-informule\nall-inprijs\nalla\nallang\nalle\nalle drie\nallebei\nallebeide\nalledaags\nalledaagsheid\nalledag\nallee\nalleen\nalleen-zijn\nalleengaande\nalleengebruik\nalleenhandel\nalleenheerschappij\nalleenheerser\nalleenlijk\nalleenrecht\nalleenspraak\nalleensprekend\nalleenstaand\nalleenstaande\nalleenverdienende\nalleenverdiener\nalleenverkoop\nalleenvertegenwoordiger\nalleenvertoningsrecht\nalleenwonend\nalleenwonende\nalleenzaligmakend\nallegaar\nallegaartje\nallegorie\nallegorisch\nallegretto\nallegro\nalleluja\nallemaal\nallemachtig\nalleman\nallemande\nallemansgading\nallemansgek\nallemansvriend\nallengs\nalleraangenaamst\nalleraardigst\nallerakeligst\nallerarmst\nallerarmsten\nallerbekendst\nallerbelabberdst\nallerbelangrijkst\nallerbeminnelijkst\nallerberoerdst\nallerbest\nallerduurst\nallereenvoudigst\nallereerst\nallereerste\nallerergst\nallerfoutste\nallergeen\nallergeschikste\nallergie\nallergisch\nallergologie\nallergoloog\nallergrootst\nallerhande\nallerhartelijkst\nallerheiligendag\nallerheiligenfeest\nallerheiligst\nallerheiligste\nallerhoogst\nallerijl\nallerkinderendag\nallerkleinst\nallerlaatst\nallerlaatste\nallerlei\nallerliefst\nallermeest\nallerminst\nallermooist\nallernaast\nallernieuwst\nallerrijkst\nallerrijkste\nallersimpelst\nallersterkst\nallervriendelijkst\nallerwegen\nallerzielendag\nallerzwakste\nallerzwartst\nalles\nallesbehalve\nallesbepalend\nallesbrander\nalleseter\nalleskunner\nallesomvattend\nallesoverheersend\nallesreiniger\nallesweter\nalleszins\nalliage\nalliantie\nalliantievorming\nallicht\nalligator\nalliteratie\nallitereren\nallitteratie\nallittereren\nalliëren\nallo\nallocatie\nalloceren\nallochtonen\nallochtonenbeleid\nallochtonenproblematiek\nallochtoon\nallocutie\nallofoon\nallogamie\nallogeen\nallomorf\nalloniem\nallooi\nallopaat\nallopathie\nallopathisch\nallotropie\nallrisk\nallriskverzekering\nallround\nallrounder\nallroundkampioene\nallroundschaatsen\nallroundster\nallroundtitel\nallroundtoernooi\nallterrainbike\nalluderen\nallure\nallures\nallusie\nalluviaal\nalluvium\nallweather\nalm\nalma\nalma mater\nalmaar\nalmacht\nalmachtig\nalmachtsfantasie\nalmanak\nalmaviva\nalmede\nalmee\nalmeteen\nalmogend\nalom\nalomtegenwoordig\nalomtegenwoordigheid\nalomvattend\nalomvattendheid\nalopecia\naloud\naloë\nalp\nalpaca\nalpacawol\nalpenbloem\nalpenclub\nalpenflora\nalpenhoorn\nalpenhoren\nalpenjager\nalpenroos\nalpenstok\nalpentop\nalpenwei\nalpenweide\nalpien\nalpijns\nalpine\nalpineskiën\nalpineskiër\nalpinisme\nalpinist\nalpiniste\nalpinistisch\nalpino\nalpinomuts\nalpinopet\nalras\nalrede\nalree\nalreeds\nalruin\nalruinmannetje\nalruinwortel\nals\nals de wiedeweerga\nalsdan\nalsem\nalsembeker\nalsemkruid\nalsemwijn\nalsjeblief\nalsjeblieft\nalsmaar\nalsmede\nalsnog\nalsnu\nalsof\nalsook\nalstoen\nalstublieft\nalt\naltaar\naltaardoek\naltaargeheim\naltaarsteen\naltaarstuk\naltaartafel\naltegader\naltemaal\naltemet\naltemets\nalter\nalter ego\nalteratie\naltereren\nalternantie\nalternatie\nalternatief\nalternatieveling\nalterneren\naltezamen\naltfluit\nalthans\nalthea\nalthobo\nalthoorn\nalthoren\naltijd\naltijddurend\naltijdgroen\naltimeter\naltist\nalto\naltoos\naltoosdurend\naltpartij\naltruïsme\naltruïst\naltruïstisch\naltsax\naltsaxofonist\naltsaxofoon\naltsleutel\naltstem\naltviolist\naltvioliste\naltviool\naltzangeres\naluin\naluinaarde\naluinsteen\naluminium\naluminiumbedrijf\naluminiumconcern\naluminiumdivisie\naluminiumfabriek\naluminiumfabrikant\naluminiumfolie\naluminiumgieterij\naluminiumindustrie\naluminiumoxide\naluminiumprijs\naluminiumproducent\naluminiumproductie\naluminiumsector\naluminiumsmelter\naluminiumsulfaat\nalumnus\nalvast\nalveolair\nalver\nalvermogen\nalvermogend\nalvleesklier\nalvleesklierontsteking\nalvleessap\nalvorens\nalwaar\nalweder\nalweer\nalwetend\nalwetendheid\nalweter\nalwijs\nalzheimer\nalzheimerpatiënt\nalziend\nalzijdig\nalzijdigheid\nalzo\nama\namai\namalgaam\namalgama\namalgameren\namanda\namandel\namandelachtig\namandelboom\namandelbroodje\namandelmelk\namandelolie\namandelontsteking\namandelpers\namandelschaafsel\namandelspijs\namandelstaaf\namandelvormig\namandelzeep\namant\namanuensis\namarant\namaranten\namaranthout\namaretto\namaril\namarillo\namaryllis\namateur\namateurarcheoloog\namateurastronomen\namateurastronoom\namateurbokser\namateurclub\namateurdichters\namateurelftal\namateurfotograaf\namateurisme\namateuristisch\namateurkampioen\namateurkampioenschap\namateurkoor\namateurkunst\namateuronderzoeker\namateuropname\namateurschilder\namateursport\namateursporter\namateurstatus\namateurswerk\namateurtheater\namateurtoneel\namateurtoneelgezelschap\namateurvereniging\namateurvideo\namateurvoetbal\namateurvoetbalclub\namateurvoetballer\namateurwedstrijd\namateurwielrennen\namateurwielrenner\namazone\namazonezit\nambacht\nambachtelijk\nambachtelijkheid\nambachtsactiviteit\nambachtsactiviteiten\nambachtsbaas\nambachtsgilde\nambachtsheer\nambachtsheerlijkheid\nambachtskunst\nambachtsman\nambachtsonderwijs\nambachtsschool\nambachtsvrouw\nambachtswerk\nambassade\nambassadegebouw\nambassademedewerker\nambassadepersoneel\nambassaderaad\nambassadesecretaris\nambassadestaf\nambassadeterrein\nambassadeur\nambassadeurschap\nambassadeursniveau\nambassadeurspost\nambassadeursrol\nambassadeursvrouw\nambassadeurswoning\nambassadewijk\nambassadrice\namber\nambergeur\nambergrijs\namberkleurig\nambetant\nambiance\nambigu\nambiguïteit\nambitie\nambitieniveau\nambitieus\nambivalent\nambivalentie\nambiëren\namblyopie\nambo\nambras\nambrosia\nambrozijn\nambt\nambtelijk\nambteloos\nambtenaar\nambtenaarsloopbaan\nambtenaarswereld\nambtenaren-cao\nambtenarenapparaat\nambtenarenbond\nambtenarencentrale\nambtenarengerecht\nambtenarenkorps\nambtenarenpensioenfonds\nambtenarenrecht\nambtenarenrechter\nambtenarenreglement\nambtenarensalaris\nambtenarenstaking\nambtenarenstatus\nambtenarenstatuut\nambtenarenvakbond\nambtenarenwet\nambtenares\nambtenarij\nambtgenoot\nambtgenote\nambtsaanvaarding\nambtsbediening\nambtsbericht\nambtsbezigheid\nambtsbroeder\nambtsdraagster\nambtsdrager\nambtsedig\nambtseed\nambtsgebied\nambtsgeheim\nambtsgenoot\nambtsgewaad\nambtshalve\nambtsjubileum\nambtsketen\nambtsketting\nambtskledij\nambtskostuum\nambtsmisbruik\nambtsmisdrijf\nambtsopvatting\nambtspenning\nambtsperiode\nambtsplicht\nambtstermijn\nambtstijd\nambtsuitoefening\nambtsverrichting\nambtsvervulling\nambtsvoorganger\nambtswoning\nambulance\nambulancebestuurder\nambulancebroeder\nambulancechauffeur\nambulancedienst\nambulancehulp\nambulancehulpverlening\nambulancepersoneel\nambulancepost\nambulancetrein\nambulanceverpleegkundige\nambulanceverpleegkundigen\nambulancevervoer\nambulancewagen\nambulancezorg\nambulancier\nambulant\nambulatorium\namechtig\namechtigheid\namelkoren\namen\namendement\namendementsrecht\namenderen\namendering\namenorroe\namerij\namerikaan\namerikaniseren\namerikanisme\namerikanistiek\namethist\namethisten\nameublement\namfetamine\namfetaminegebruik\namfibie\namfibietank\namfibievliegtuig\namfibievoertuig\namfibieën\namfibisch\namfibrachys\namfioen\namfioenkit\namfitheater\namfitheatersgewijs\namfoor\namfora\namicaal\namice\namict\namigo\naminen\naminozuur\nammelaken\nammonia\nammoniak\nammoniakbeleid\nammoniakemissie\nammoniakhoudend\nammoniakreductieplan\nammoniakuitstoot\nammoniakwater\nammoniet\nammonium\nammoniumnitraat\nammoniumsulfaat\nammonshoorn\nammonshoren\nammunitie\namnesie\namnestie\namnestiemaatregel\namnestieregeling\namnestieverlening\namnestiewet\namnioscoop\namnioscopie\namoebe\namok\namokmaker\namoreel\namorf\namortisatie\namortisatiefonds\namortiseren\namourette\namoureus\nampel\namper\nampersand\nampertjes\nampex\namplificatie\namplitude\namplitudemodulatie\namplitudo\nampul\namputatie\namputeren\nampère\nampère-uur\nampèremeter\nampèreseconde\namsoi\namsterdammertje\namsterdammertjes\namulet\namusant\namuse\namuse-gueule\namusement\namusementsbedrijf\namusementscentrum\namusementsconcern\namusementsfilm\namusementshal\namusementsindustrie\namusementsmuziek\namusementspark\namusementsprogramma\namusementssector\namusementssfeer\namusementswaarde\namusementswereld\namuseren\namuzikaal\namygdala\namylose\nanaal\nanabaptisme\nanabaptist\nanabole\nanabolen\nanabolica\nanabolisme\nanabool\nanachoreet\nanachronisme\nanachronistisch\nanaconda\nanaeroob\nanafoor\nanaforisch\nanafylactisch\nanagram\nanakoloet\nanalecta\nanalecten\nanalfabeet\nanalfabete\nanalfabetisch\nanalfabetisme\nanalgeticum\nanalist\nanaliste\nanalistenbijeenkomst\nanalistenmeeting\nanalistenrapport\nanalistenteam\nanaloge\nanalogie\nanalogiewerking\nanalogisch\nanalogiseren\nanalogon\nanaloog\nanalysant\nanalysator\nanalyse\nanalyseerbaar\nanalysefase\nanalysemethode\nanalysemodel\nanalyserapport\nanalyseren\nanalyseresultaat\nanalysetechniek\nanalysetijd\nanalysewerk\nanalyticus\nanalytisch\nanamnese\nanamneseformulier\nananas\nananasdrank\nananassap\nanapest\nanarchie\nanarchisme\nanarchist\nanarchiste\nanarchistisch\nanarchosyndicalisme\nanastatisch\nanastigmaat\nanathema\nanatomie\nanatomisch\nanatomiseren\nanatomist\nanatoom\nanchorman\nanchorwoman\nancien\nanciënniteit\nandante\nandantes\nandantino\nander\nanderdaags\nanderdeels\nandere\nanderen\nanderhalf\nandermaal\nanderman\nandermans\nanders\nanders-zijn\nandersdenkend\nandersdenkende\nandersgezind\nanderskleurige\nandersluidend\nandersom\nandersoortig\nanderstalig\nandersvalide\nanderszins\nanderwerf\nanderzijds\nandijvie\nandijviesla\nandijviestamppot\nandoorn\nandoren\nandragoge\nandragogie\nandragogiek\nandragogisch\nandragologie\nandragoloog\nandragoog\nandreaskruis\nandrieskruis\nandrieskruisen\nandrogeen\nandrogyn\nandrogynie\nandroïde\nanekdote\nanekdoten\nanekdotes\nanekdotiek\nanekdotisch\nanemie\nanemiek\nanemisch\nanemometer\nanemoon\nanencefalie\nanesthesie\nanesthesiemedewerker\nanesthesiologie\nanesthesioloog\nanesthesist\nanesthesiste\naneurysma\nangel\nangelsteek\nangelus\nangelusklok\nangelusklokje\nangina\nangina pectoris\nangio-oedeem\nangioplastiek\nanglicaan\nanglicaans\nanglicisme\nanglist\nanglistiek\nanglofiel\nanglofilie\nanglofobie\nanglomaan\nanglomanie\nangora\nangorageit\nangorakat\nangorawol\nangst\nangstaanjagend\nangstaanval\nangstcomplex\nangstdroom\nangstgegner\nangstgeschrei\nangstgevoel\nangsthaas\nangsthazerij\nangsthysterie\nangstig\nangstkreet\nangstneurose\nangstogen\nangstpsychose\nangstreactie\nangstreductie\nangstschreeuw\nangststoornis\nangsttoestand\nangstvallig\nangstvalligheid\nangstversterkend\nangstvisioen\nangstwekkend\nangstzweet\nanijs\nanijsmelk\nanijszaad\naniline\nanilinepotlood\nanima\nanimaal\nanimaliteit\nanimateur\nanimateurs\nanimatie\nanimatiefilm\nanimatieserie\nanimatiestudio\nanimatietechniek\nanimator\nanimatrice\nanime\nanimeermeisje\nanimeren\nanimisme\nanimistisch\nanimo\nanimositeit\nanimus\nanion\nanisette\nanisotroop\nanita\nanjelier\nanjer\nank\nanker\nankerboei\nankeren\nankergat\nankergrond\nankerkader\nankerketting\nankerkruis\nankerkuil\nankerlantaarn\nankerlicht\nankerlier\nankerliermotor\nankerman\nankermast\nankeroog\nankerop\nankerplaats\nankerpunt\nankerrail\nankertje\nankertouw\nankertros\nankervrouw\nanklet\nannalen\nannex\nannexatie\nannexatieplan\nannexeren\nannexionisme\nannexionist\nannexionistisch\nannihilatie\nanno\nannonce\nannonceren\nannotatie\nannoteren\nannuleren\nannulering\nannuleringskosten\nannuleringsverzekering\nannunciatie\nannuïteit\nannuïteitenbasis\nannuïteitenhypotheek\nannuïteitensysteem\nanode\nanodestroom\nanodiseren\nanomaal\nanomalie\nanomie\nanoniem\nanonimiseren\nanonimiteit\nanonymus\nanorak\nanorexia\nanorexia nervosa\nanorexiapatiënte\nanorexiapatiënten\nanorexie\nanorganisch\nanorgasmie\nanschluss\nansicht\nansichtkaart\nansjovis\nansjovisfilet\nansjovisvangst\nantagonisme\nantagonist\nantagonistisch\nantarctisch\nante\nantecedent\nantecedenten\nantecedentenonderzoek\nantedateren\nantediluviaal\nantediluviaans\nantenne\nantenne-inrichting\nantennebeleid\nantennekabel\nantennemast\nantennesysteem\nanthologie\nanthurium\nanti\nanti-Amerikaans\nanti-Duits\nanti-Engels\nanti-Frans\nanti-Joods\nanti-Nederlands\nanti-Russisch\nanti-Vietnamees\nanti-establishment\nanti-imperialistisch\nanti-intellectualisme\nanti-intellectueel\nanti-islamitisch\nantiaanbaklaag\nantiabortus\nantiabortusactivist\nantiabortusbeweging\nantiamerikanisme\nantiapartheidsactivist\nantiapartheidsbeweging\nantiapartheidsstrijd\nantiautobeleid\nantiautoritair\nantibacterieel\nantiballistisch\nantibioticakuur\nantibioticum\nantibiotisch\nantiblokkeersysteem\nantibraakmiddel\nantichambre\nantichambreren\nantichrist\nantichristelijke\nanticipatie\nanticipatief\nanticiperen\nanticlimactisch\nanticlimax\nanticoagulantia\nanticommunisme\nanticommunist\nanticommunistisch\nanticonceptie\nanticonceptiemiddel\nanticonceptiepil\nanticonceptivum\nanticonstitutioneel\nanticyclisch\nanticycloon\nantidateren\nantideeltje\nantidemocratisch\nantidepressivum\nantidiscriminatie\nantidiscriminatiewet\nantidopingbeleid\nantidopingbureau\nantidopingcommissie\nantidotum\nantidrugs\nantidrugsactie\nantiek\nantiekbeurs\nantieken\nantiekhandel\nantiekhandelaar\nantiekmarkt\nantiekveiling\nantiekwinkel\nantiekzaak\nantifascisme\nantifascist\nantifascistisch\nantifileplan\nantifoon\nantifouling\nantigeen\nantigeluid\nantigen\nantigifcentrum\nantiglobaliseringsbeweging\nantiglobalisme\nantiglobalist\nantiheld\nantihistaminicum\nantijudaïsme\nantikapitalistisch\nantikartelwet\nantikartelwetgeving\nantikernenergiebeweging\nantiklerikaal\nantiklerikalisme\nantikritiek\nantilichaam\nantiloop\nantilope\nantimakassar\nantimaterie\nantimetrie\nantimilitarisme\nantimilitarist\nantimilitaristisch\nantimisbruikbepaling\nantimonium\nantimoon\nantinationaal\nantinazi\nantinazistisch\nantinomie\nantioorlogsfilm\nantioxidant\nantipapisme\nantipapist\nantipapistisch\nantipathie\nantipathiek\nantipersoneelsmijn\nantipode\nantipoden\nantipolitiek\nantipropaganda\nantiproton\nantipsychiatrie\nantipsychoticum\nantipyrine\nantiquaar\nantiquair\nantiquariaat\nantiquarisch\nantiquark\nantiquiteit\nantiracisme\nantiracist\nantiracistisch\nantiraketraket\nantiraketschild\nantirakettenschild\nantiraketwapens\nantireclame\nantirevolutionair\nantirookbeleid\nantirookcampagne\nantirookpil\nantischimmelmiddel\nantisemiet\nantisemitisch\nantisemitisme\nantisepsis\nantiseptisch\nantiserum\nantislip\nantislipcursus\nantisociaal\nantisocialistisch\nantispeculatiebeding\nantistatisch\nantistof\nantistrofe\nantitankgeschut\nantitankmijn\nantitankraket\nantitankwapen\nantiterreureenheid\nantiterreurpolitie\nantiterreurwet\nantiterrorisme\nantiterrorismecampagne\nantiterrorismewet\nantiterroristisch\nantithese\nantithetisch\nantitoxine\nantitrustproces\nantitrustwet\nantitrustwetgeving\nantitrustzaak\nantiutopie\nantivertragingsplan\nantiviraal\nantivirusbedrijven\nantivirusproducten\nantivirusprogramma\nantivirussoftware\nantivries\nantiwesters\nantizionisme\nantizionistisch\nantoniem\nantoniusbrood\nantoniuskruis\nantoniusvuur\nantraciet\nantracietgrijs\nantracietkleurig\nantrax\nantropocentrisch\nantropofaag\nantropogeen\nantropogenese\nantropologe\nantropologie\nantropologisch\nantropoloog\nantropomorf\nantropomorfisch\nantropomorfisme\nantroponiem\nantroponymie\nantroposofie\nantroposofisch\nantroposoof\nantropoïde\nantwoord\nantwoordapparaat\nantwoordbrief\nantwoordcombinatie\nantwoordcoupon\nantwoorden\nantwoordenvelop\nantwoordenveloppe\nantwoordformulier\nantwoordkaart\nantwoordnummer\nantwoordpakket\nantwoordpakketten\nantwoordservice\nantwoordzending\nantwoordzendingen\nanus\naoristus\naorta\naortaklep\napache\napaiseren\napart\naparte\napartheid\napartheidsbeleid\napartheidsbewind\napartheidspolitiek\napartheidsregering\napartheidsregime\napartheidsstaat\napartheidstijd\napartje\napathie\napathisch\napatride\napegapen\napekool\napelazarus\napenbroodboom\napengeslacht\napengezicht\napenhaar\napenjaren\napenkolonie\napenkooi\napenkooien\napenkop\napenland\napenliefde\napennoot\napenpak\napenrots\napensoort\napenspel\napenstaart\napenstaartje\napenstreek\napentuin\naperij\naperitief\naperitiefconcert\naperitieven\napert\napertuur\naperçu\napetrots\napex\napezat\napezuur\napin\napis\napk\napk-keuring\naplanatisch\naplomb\napneu\napocalyps\napocalyptici\napocalypticus\napocalyptiek\napocalyptisch\napocope\napocoperen\napocrief\napodictisch\napograaf\napokoinou\napolitiek\napollinisch\napologeet\napologetica\napologetiek\napologetisch\napologie\napologisch\napoloog\napoplectisch\napoplexie\napoptose\naporie\napostaat\napostasie\napostel\napostelbrief\napostelen\napostil\napostille\napostolaat\napostolicum\napostolisch\napostrof\napotheek\napotheekhoudend\napotheker\napothekeres\napothekersassistent\napothekersassistente\napothekersexamen\napothekersorganisatie\napothekersrekening\napothema\napotheose\napparaat\napparaatskosten\napparatenbezit\napparatenbouw\napparatuur\napparatuurkosten\napparenteren\napparentering\nappartement\nappartementenblok\nappartementencomplex\nappartementengebouw\nappartementsblok\nappartementsgebouw\nappartementsrecht\nappassionato\nappel\nappelaar\nappelazijn\nappelbeignet\nappelbloesem\nappelbol\nappelboom\nappelboomgaard\nappelboor\nappelflap\nappelflauwte\nappelgebak\nappelgrauw\nappelgroen\nappelkoek\nappellabel\nappellant\nappellante\nappellation\nappelleren\nappelmoes\nappelplaats\nappelpluk\nappelrassen\nappelrechter\nappelrond\nappelsap\nappelschimmel\nappelsien\nappelsienenboom\nappelsienenhandelaar\nappelsienenschil\nappelsiensap\nappelslof\nappelspijs\nappelstroop\nappeltaart\nappeltje\nappelvormig\nappelwijf\nappelwijn\nappendage\nappendages\nappendance\nappendicitis\nappendix\napperceptie\nappetijt\nappetijtelijk\nappetizer\napplaudisseren\napplaus\napplausmachine\napplausmeter\napplausvervanging\napplauswissel\napplicatie\napplicatiebedrijf\napplicatiecursus\napplicatiedomein\napplicatieprogramma\napplicatiewerk\nappliceren\napplique\nappliqueren\nappliqué\napporteren\nappositie\nappositioneel\nappreciatie\nappreciëren\nappreteren\napprobatie\napprovianderen\napproximatie\napproximatief\napproximatiestellingen\napraxie\napril\naprilmaand\naprilnummer\naprils\naprilvis\naprilweer\naprilzaad\naprès-ski\naprès-skiën\napsis\naquacultuur\naquaduct\naquamarijn\naquanaut\naquaplaning\naquarel\naquarelleren\naquarellist\naquarelstudie\naquarelverf\naquaria\naquarium\naquariumplant\naquariums\naquatint\naquavit\naquifer\nar\nara\narabesk\narabier\narabisatie\narabiseren\narabisering\narabist\narabistiek\narachideolie\narachnofobie\narak\naramide\narbeid\narbeiden\narbeider\narbeiderisme\narbeideristisch\narbeidersbevolking\narbeidersbeweging\narbeidersbuurt\narbeiderscentrale\narbeiderscontrole\narbeiderseisen\narbeidersfamilie\narbeidersgedrag\narbeidersgezin\narbeidersjongen\narbeiderskind\narbeidersklas\narbeidersklasse\narbeiderskringen\narbeidersmassa\narbeidersmilieu\narbeidersopstand\narbeidersorganisatie\narbeidersparadijs\narbeiderspartij\narbeidersraad\narbeidersstaat\narbeidersstad\narbeidersstand\narbeiderstrein\narbeidersvrouw\narbeiderswijk\narbeiderswoning\narbeiderszelfbeheer\narbeiderszelfbestuur\narbeiderszoon\narbeidsaanbod\narbeidsanalist\narbeidsanalyse\narbeidsbegeleiding\narbeidsbelasting\narbeidsbeleid\narbeidsbeleving\narbeidsbemiddelaar\narbeidsbemiddeling\narbeidsbescherming\narbeidsbesparend\narbeidsbesparing\narbeidsbestel\narbeidsbeurs\narbeidsbevolking\narbeidsbureau\narbeidscapaciteit\narbeidscircuit\narbeidsconflict\narbeidscontract\narbeidscontractant\narbeidscultuur\narbeidsdag\narbeidsdeelname\narbeidsdeling\narbeidsdeskundige\narbeidsdienst\narbeidsdruk\narbeidsduur\narbeidsduurverkorting\narbeidsduurverlenging\narbeidsduurvermindering\narbeidservaring\narbeidsethiek\narbeidsethos\narbeidsflexibiliteit\narbeidsgehandicapte\narbeidsgeneesheer\narbeidsgeneeskundige\narbeidsgeschikt\narbeidsgeschiktheid\narbeidsgeschil\narbeidsgewenning\narbeidshandicap\narbeidshof\narbeidshulpverlening\narbeidshygiëne\narbeidsimmigratie\narbeidsinhoud\narbeidsinkomen\narbeidsinkomensquote\narbeidsinspecteur\narbeidsinspectie\narbeidsintegratie\narbeidsintensief\narbeidsintensiteit\narbeidsinzet\narbeidsjaar\narbeidskaart\narbeidskantoor\narbeidsklimaat\narbeidskorting\narbeidskosten\narbeidskostenbeleid\narbeidskostenforfait\narbeidskracht\narbeidskrapte\narbeidskundige\narbeidslast\narbeidsleven\narbeidslijst\narbeidsloon\narbeidsloos\narbeidslust\narbeidsmarkt\narbeidsmarktanalyse\narbeidsmarktbeleid\narbeidsmarktcommunicatie\narbeidsmarktonderzoek\narbeidsmarktperspectief\narbeidsmarktpolitiek\narbeidsmarktpositie\narbeidsmarktprobleem\narbeidsmarktsegmentatie\narbeidsmarktsituatie\narbeidsmarkttoeslag\narbeidsmentaliteit\narbeidsmigratie\narbeidsmobiliteit\narbeidsmogelijkheid\narbeidsmoraal\narbeidsmotivatie\narbeidsomstandigheden\narbeidsomstandighedenbeleid\narbeidsomstandighedenwet\narbeidsonderzoek\narbeidsongeschikt\narbeidsongeschikte\narbeidsongeschiktheid\narbeidsongeschiktheidspensioen\narbeidsongeschiktheidsperiode\narbeidsongeschiktheidsregeling\narbeidsongeschiktheidsrisico\narbeidsongeschiktheidsuitkering\narbeidsongeschiktheidsverzekering\narbeidsongeschiktheidswet\narbeidsongeval\narbeidsonrust\narbeidsopgave\narbeidsopvatting\narbeidsorganisatie\narbeidsorganisatorisch\narbeidsovereenkomst\narbeidsparticipatie\narbeidspatroon\narbeidsplaats\narbeidsplaatsenbeleid\narbeidsplaatsenovereenkomst\narbeidsplaatsenplan\narbeidsplaatsvoorziening\narbeidsplek\narbeidsplicht\narbeidsplichtig\narbeidsplichtige\narbeidsplichtigen\narbeidspool\narbeidspositie\narbeidspotentieel\narbeidsprestatie\narbeidsproces\narbeidsproductief\narbeidsproductiviteit\narbeidsraad\narbeidsre-integratie\narbeidsrecht\narbeidsrechtbank\narbeidsrechtelijk\narbeidsrechter\narbeidsregister\narbeidsreglement\narbeidsrelatie\narbeidsrendement\narbeidsreserve\narbeidsreservoir\narbeidsritme\narbeidsrooster\narbeidsrust\narbeidsschaarste\narbeidsschuw\narbeidssituatie\narbeidssplitsing\narbeidsstijl\narbeidssysteem\narbeidstaak\narbeidstaken\narbeidstekort\narbeidstempo\narbeidster\narbeidsterrein\narbeidstevredenheid\narbeidstherapeut\narbeidstherapeute\narbeidstherapie\narbeidstijd\narbeidstijdenwet\narbeidstijdverkorting\narbeidstijdverlenging\narbeidstoekomst\narbeidstoeleiding\narbeidstoeslag\narbeidsuitstoot\narbeidsuur\narbeidsveiligheid\narbeidsveld\narbeidsverdeling\narbeidsvergunning\narbeidsverhouding\narbeidsverleden\narbeidsvermogen\narbeidsverzekering\narbeidsverzuim\narbeidsvoldoening\narbeidsvolume\narbeidsvoorbereiding\narbeidsvoorwaarde\narbeidsvoorwaardelijk\narbeidsvoorwaarden\narbeidsvoorwaardenbeleid\narbeidsvoorwaardencontract\narbeidsvoorwaardennota\narbeidsvoorwaardenontwikkeling\narbeidsvoorwaardenoverleg\narbeidsvoorwaardenpakket\narbeidsvoorziening\narbeidsvoorzieningsbeleid\narbeidsvoorzieningswet\narbeidsvraag\narbeidsvraagstuk\narbeidsvrede\narbeidsvreugde\narbeidsweek\narbeidswet\narbeidswetgeving\narbeidszaken\narbeidzaam\narbeidzaamheid\narbiter\narbiterskorps\narbitraal\narbitrage\narbitragecommissie\narbitragepanel\narbitrageprocedure\narbitragezaak\narbitrair\narbitreren\narbo\narbodienst\narbodienstverlening\narboretum\narbozorg\narcade\narcadia\narcadisch\narcanum\narceren\narcering\narchaïcum\narchaïsch\narchaïseren\narchaïsme\narchaïstisch\narcheologe\narcheologie\narcheologisch\narcheoloog\narchetype\narchetypisch\narchief\narchiefbescheiden\narchiefdienst\narchiefdiensten\narchiefdoos\narchiefexemplaar\narchieffoto\narchiefkast\narchiefmap\narchiefmateriaal\narchiefmedewerker\narchiefnummer\narchiefonderzoek\narchiefruimte\narchiefstuk\narchiefwerk\narchiefwet\narchiefwezen\narchimandriet\narchipel\narchitect\narchitecte\narchitectenbureau\narchitectenduo\narchitectengroep\narchitectenkeuze\narchitectenprijsvraag\narchitectenwinkel\narchitectonisch\narchitecturaal\narchitectuur\narchitectuurbeleid\narchitectuurbeschrijving\narchitectuurbiënnale\narchitectuurbureau\narchitectuurcentrum\narchitectuurcriticus\narchitectuurgeschiedenis\narchitectuurmuseum\narchitectuurnota\narchitectuurprijs\narchitectuurschets\narchitectuurstijl\narchitectuurstudie\narchitectuurtekening\narchitectuurwedstrijd\narchitectuurwereld\narchitraaf\narchivalia\narchivalisch\narchivaresse\narchivaris\narchiveren\narchivering\narchiveringssysteem\narctisch\narduin\narduinen\narduinsteen\nare\narea\nareaal\nareligieus\naren\narena\narend\narendbuizerd\narendsblik\narendsjong\narendsklauw\narendsnest\narendsneus\narendsoog\narendsvleugel\narendsvlucht\nareometer\nareopagus\nargeloos\nargeloosheid\nargentaan\narglist\narglistig\narglistigheid\nargon\nargot\nargument\nargumentatie\nargumentatief\nargumentatieschema\nargumentatiestructuur\nargumentatietheorie\nargumenteren\nargumentering\nargus\nargusogen\nargwaan\nargwanend\nargwanendheid\naria\naride\naristocraat\naristocrate\naristocratie\naristocratisch\naristotelisch\naritmetica\naritmetisch\nariër\nark\narm\narmada\narmageddon\narmagnac\narmatuur\narmband\narmbandhorloge\narmbestuur\narmbeweging\narmbezoek\narmbreuk\narmdik\narme\narmee\narmelijk\narmelui\narmeluiskind\narmenbelasting\narmenbuurt\narmendokter\narmenfonds\narmengeld\narmenhuis\narmeninrichting\narmenkas\narmenpraktijk\narmenraad\narmenschool\narmenverzorger\narmenverzorging\narmenwet\narmenwijk\narmenzakje\narmenzorg\narmetierig\narmetierigheid\narmgebaar\narmhuis\narminiaan\narmlastig\narmlegger\narmlengte\narmleuning\narmmeester\narmoe\narmoede\narmoedebeleid\narmoedebestrijder\narmoedebestrijding\narmoedecijfer\narmoededebat\narmoedegrens\narmoedenorm\narmoedenota\narmoedeprobleem\narmoedeproblematiek\narmoedeval\narmoedevermindering\narmoedevraagstuk\narmoedig\narmoedigheid\narmoedzaaier\narmoezaaier\narmoriaal\narmsgat\narmslag\narmslengte\narmspier\narmsten\narmsteun\narmstoel\narmtierig\narmuitsnijding\narmverzorger\narmverzorging\narmvol\narmvoogd\narmwezen\narmworp\narmworstelen\narmzalig\narmzaligheid\narmzwaai\naroma\naromaten\naromatherapie\naromatisch\naromatiseren\naronskelk\naroom\narpeggio\narr.\narrangement\narrangementsbedrag\narrangeren\narrangeur\narray\narre\narren\narrenslede\narrenslee\narrest\narrestant\narrestante\narrestantenhok\narrestantenkamer\narrestantenzorg\narrestatie\narrestatieactie\narrestatiebevel\narrestatiegolf\narrestatiepoging\narrestatieteam\narrestatieverzoek\narresteren\narriveren\narrivisme\narrivist\narrivé\narrogant\narrogantie\narrondissement\narrondissementscommissaris\narrondissementsparket\narrondissementsrechtbank\narrondissementsschoolopziener\narrowroot\narseen\narseenverbinding\narsenaal\narsenicum\narsenicumvergiftiging\narseniek\nart deco\nart nouveau\nart-decostijl\nart-nouveaustijl\nartdirector\nartefact\nartemisia\narterie\narterieel\narterieklem\narteriosclerose\nartesisch\narticulatie\narticulatiebasis\narticulatieplaats\narticulatorisch\narticuleren\nartiest\nartieste\nartiestenbestaan\nartiestenbureau\nartiestenfoyer\nartiestenhoed\nartiesteningang\nartiestennaam\nartiestenregeling\nartiestenstal\nartiestenuitgang\nartiestenwereld\nartiesterig\nartificialiteit\nartificieel\nartificiële\nartikel\nartikelaanbod\nartikelaanduiding\nartikelbestand\nartikelenbundel\nartikelenreeks\nartikelenserie\nartikelgewijs\nartikelgroep\nartikelgroepen\nartikelkeuze\nartikelnummer\nartikelomschrijving\nartikelpresentatie\nartikelrecord\nartikelregel\nartikelselectie\nartikelsgewijs\nartikelsoort\nartillerie\nartillerie-eenheid\nartillerieaanval\nartilleriebeschieting\nartilleriegeschut\nartilleriegevecht\nartillerieofficier\nartilleriepark\nartilleriestelling\nartilleriesteun\nartillerietrein\nartillerievuur\nartillerist\nartilleristisch\nartisanaal\nartisjok\nartisticiteit\nartistiek\nartistiekeling\nartistiekerig\nartotheek\nartritis\nartrose\narts\narts-assistent\narts-onderzoeker\narts-patiënt\narts-patiëntrelatie\nartsenbezoek\nartsenbezoeker\nartsenbezoekster\nartsendiploma\nartsenij\nartsenijbereidkunde\nartseninformatiemap\nartsenkeuze\nartsenmonster\nartsenopleiding\nartsenorganisatie\nartsenpraktijk\nartsenstudie\nartsensyndicaat\nartsenteam\nartsentekort\nartsenvereniging\nartsexamen\nartwork\nas\nasbak\nasbakkenras\nasbelt\nasbest\nasbestcement\nasbestclaim\nasbesthoudend\nasbestose\nasbestpapier\nasbestplaat\nasbeststof\nasbestvervuiling\nasbestverwijdering\nasbestvezel\nasbestvrij\nasblond\nasceet\nascendant\nascendenten\nascese\nascetisch\nascetisme\nascorbinezuur\nasdeeltjes\nasdiameter\naseksueel\naselect\nasem\nasemen\nasemmer\nasepsis\naseptisch\nasfalt\nasfaltbaan\nasfaltbestrating\nasfaltbeton\nasfaltcentrale\nasfalteren\nasfaltering\nasfalthelling\nasfaltjeugd\nasfaltlaag\nasfaltlucht\nasfaltpapier\nasfaltspreider\nasfaltweg\nasgat\nasgrauw\nasgrijs\nashoop\nasiel\nasielaanvraag\nasielaanvrage\nasielaanvrager\nasieladvocaat\nasielbeleid\nasielcentrum\nasieldebat\nasieldossier\nasieldossiers\nasielgerechtigde\nasielkwestie\nasielland\nasielopvang\nasielpolitiek\nasielprobleem\nasielproblematiek\nasielprocedure\nasielrecht\nasielrelaas\nasielstatus\nasielstroom\nasielsysteem\nasieltoerisme\nasielverhaal\nasielverzoek\nasielvraagstuk\nasielwet\nasielwetgeving\nasielzoeker\nasielzoekersbeleid\nasielzoekerscentrum\nasielzoekersproblematiek\nasielzoekerswoning\nasielzoekster\nasjemenou\naskar\naskegel\naskleur\naskleurig\naskruik\naskruisje\naskussen\nasla\naslade\naslager\nasleger\naslijn\nasmaat\nasman\nasmogendheden\naso\nasociaal\nasparagus\naspartaam\naspecifiek\naspect\nasperge\naspergebed\naspergekop\naspergepunt\nasperger\naspergesoep\naspergesteken\naspergesteker\naspergetang\naspergeteelt\naspergeteler\naspic\naspidistra\naspirant\naspirant-bewoner\naspirant-controleur\naspirant-journalist\naspirant-koper\naspirant-lid\naspirant-minister\naspirant-omroep\naspirant-ondernemer\naspirant-politicus\naspirant-student\naspirante\naspiratie\naspiratieniveau\naspireren\naspirientje\naspirine\naspirinetablet\naspot\naspunt\nasregen\nasrest\nassagaai\nassegaai\nassem\nassemblage\nassemblage-industrie\nassemblagefabriek\nassemblagehal\nassemblagelijn\nassemblageproces\nassemblagesysteem\nassemblee\nassembleelid\nassembleerprogramma\nassembler\nassembleren\nassen\nassenkruis\nassepoes\nassepoester\nassertie\nassertief\nassertiviteit\nassertiviteitstraining\nassessment\nassessor\nassetmanagement\nassignaat\nassignatie\nassimilatie\nassimilatieproces\nassimileren\nassisen\nassisenhof\nassisenproces\nassist\nassistent\nassistent in opleiding\nassistent-apotheker\nassistent-arts\nassistent-bondscoach\nassistent-coach\nassistent-directeur\nassistent-geneeskundige\nassistent-manager\nassistent-onderzoeker\nassistent-ploegleider\nassistent-regisseur\nassistent-resident\nassistent-scheidsrechter\nassistent-trainer\nassistente\nassistentie\nassistentschap\nassisteren\nassociatie\nassociatieakkoord\nassociatief\nassociatieovereenkomst\nassociatieverdrag\nassocié\nassociés\nassociëren\nassonantie\nassoneren\nassorteren\nassortiment\nassortimentsbeheer\nassortimentsbeleid\nassortimentsbewaking\nassortimentsbreedte\nassortimentslijst\nassortimentslijsten\nassortimentsuitbreiding\nassumeren\nassumptie\nassumptionist\nassuradeur\nassurantie\nassurantieagent\nassurantiebedrijf\nassurantiebelasting\nassurantiebemiddelaar\nassurantiebemiddeling\nassurantiebemiddelingsbedrijf\nassurantiebezorger\nassurantiegroep\nassurantiekantoor\nassurantiemaatschappij\nassurantiemakelaar\nassurantiepolis\nassurantiepremie\nassurantiesysteem\nassurantietussenpersoon\nassureren\nassyrioloog\nast\nastatisch\naster\nasterisk\nasteroïde\nasteroïdengordel\nasthenie\nasthenisch\nastigmatisch\nastigmatisme\nastma\nastma-aanval\nastmacentrum\nastmalijder\nastmapatiënt\nastmasigaret\nastmaticus\nastmatisch\naston\nastraal\nastraallichaam\nastrakan\nastrant\nastringent\nastrodynamica\nastrofotografie\nastrofysica\nastrofysicus\nastrofysisch\nastrolabium\nastrologe\nastrologie\nastrologisch\nastroloog\nastronaut\nastronomie\nastronomisch\nastronoom\nasurn\nasvaal\nasvaalt\nasverstrooiing\naswenteling\naswolk\nasymmetrie\nasymmetrisch\nasymptoot\nasymptotiek\nasymptotisch\nasynchroon\nasyndeton\nasystolie\nat\natactisch\natalanta\nataraxie\natavisme\natavistisch\nataxie\natelier\natelierbezoek\nateliermeisje\natelierruimte\natelierwoning\naterling\nathematisch\natheneum\natherosclerose\natheïsme\natheïst\natheïstisch\natjar\natlant\natlanticum\natlanticus\natlas\natlasvlinder\natleet\natlete\natletencommissie\natletendorp\natletiek\natletiekbaan\natletiekbeoefening\natletiekbond\natletiekcarrière\natletiekclub\natletiekcoach\natletiekevenement\natletiekfederatie\natletiekkampioenschap\natletiekloopbaan\natletiekploeg\natletieksport\natletiekstadion\natletiektrainer\natletiekunie\natletiekvereniging\natletiekwedstrijd\natletiekwereld\natletisch\natmosfeer\natmosferisch\natol\natomair\natomie\natomisch\natomiseren\natomisering\natomisme\natomist\natomistisch\natonaal\natonaliteit\natoom\natoomaanval\natoomafval\natoomagentschap\natoombewapening\natoombom\natoomcentrale\natoomcentrum\natoomduikboot\natoomenergie\natoomenergieagentschap\natoomfysica\natoomgeleerde\natoomgewicht\natoomkern\natoomklok\natoomkop\natoommacht\natoomnummer\natoomonderzeeër\natoomoorlog\natoompacifisme\natoompacifist\natoomparaplu\natoompolitiek\natoomproef\natoomprogramma\natoomraket\natoomreactor\natoomschip\natoomschuilkelder\natoomsplitsing\natoomstroom\natoomtheorie\natoomtijdperk\natoomtransport\natoomwapen\natoomwapenprogramma\natoomwapens\natoomzwaard\natopisch\natrium\natrofie\natrofiëren\natropine\nattaca\nattachee\nattacheren\nattaché\nattachékoffer\nattachés\nattaque\nattaqueren\nattenderen\nattenderingslijsten\nattent\nattentaat\nattentie\nattentiewaarde\nattest\nattestatie\nattesteren\nattitude\nattitudeverandering\nattractie\nattractiebeginsel\nattractief\nattractiepark\nattractiewaarde\nattractiviteit\nattraperen\nattributie\nattributief\nattribuut\natv\natv-dag\natypisch\nau\nau bain-marie\nau pair\naubade\naubergine\nauctie\nauctionaris\nauctor\nauctor intellectualis\nauctoriaal\naucuba\naudicien\naudio-cd\naudioapparaat\naudioapparatuur\naudiobestanden\naudioboek\naudiocassette\naudiofoon\naudiokabel\naudiologie\naudioloog\naudiometer\naudioproduct\naudiorack\naudiosignaal\naudiotheek\naudiotoren\naudiovisueel\naudit\nauditbureau\nauditdienst\nauditeren\nauditeur\nauditeur-generaal\nauditeur-militair\nauditie\nauditief\nauditkantoor\nauditor\nauditoraat\nauditorium\naudiëntie\naudiëntieblad\naufklärung\naugiasstal\naugurenlach\naugurk\naugustijn\naugustijnenklooster\naugustijner\naugustus\naugustusdag\naugustusmaand\naugustusnummer\naula\naura\naurelia\naureool\naurora\nauscultatie\nausculteren\nausdauer\nauspicium\nauspiciën\nausputzer\naussie\naustraal\nautaar\nautarchie\nautarkie\nautarkisch\nauteur\nauteurschap\nauteursexemplaar\nauteursfilm\nauteursnaam\nauteursrecht\nauteursrechtaanduiding\nauteursrechtelijk\nauteursrechtenorganisatie\nauteursrechthebbende\nauteurswet\nauthenticatie\nauthenticiteit\nauthentiek\nauthentificatie\nautisme\nautist\nautistisch\nauto\nauto van de zaak\nauto-export\nauto-immuunziekte\nauto-importeur\nauto-inbraak\nauto-industrie\nauto-onderdeel\nauto-ongeluk\nauto-ongeval\nautoalarm\nautobaan\nautoband\nautobedrijf\nautobelasting\nautobeleid\nautobenzine\nautobestuurder\nautobestuurster\nautobezit\nautobezitter\nautobiograaf\nautobiografie\nautobiografisch\nautoblad\nautobom\nautobomaanslag\nautobotsing\nautobouwer\nautobox\nautobranche\nautobrand\nautobrandstof\nautobus\nautobusbedrijf\nautobusbedrijven\nautobusdienst\nautobuslijn\nautocar\nautochtonen\nautochtoon\nautoclaaf\nautocolonne\nautoconcern\nautoconstructeur\nautocontrole\nautocorrectie\nautocorrelatie\nautocoureur\nautocraat\nautocratie\nautocratisch\nautocriminaliteit\nautocross\nautocue\nautodafe\nautodak\nautodaten\nautodealer\nautodek\nautodelen\nautodichtheid\nautodidact\nautodidactisch\nautodief\nautodiefstal\nautodienst\nautodistributie\nautodivisie\nautofabriek\nautofabrikant\nautofinanciering\nautofocus\nautofocuscamera\nautogarage\nautogas\nautogebruik\nautogebruiker\nautogeen\nautogek\nautogeschiedenis\nautogigant\nautogiro\nautogordel\nautograaf\nautografie\nautografisch\nautogram\nautogroep\nautohandel\nautohandelaar\nautokaart\nautokerkhof\nautokeuring\nautokoper\nautokosten\nautokostenforfait\nautokostenschijf\nautokostenvergoeding\nautokraker\nautolak\nautolamp\nautoland\nautoleasebedrijf\nautoleasing\nautolicht\nautoliefhebber\nautolobby\nautologisch\nautoloos\nautoluw\nautomaat\nautomaker\nautomarkt\nautomatenbranche\nautomatenhal\nautomatentheorie\nautomatie\nautomatiek\nautomatisatie\nautomatisch\nautomatiseerder\nautomatiseren\nautomatisering\nautomatiseringsaanpak\nautomatiseringsafdeling\nautomatiseringsbedrijf\nautomatiseringsbegeleiding\nautomatiseringsbeleid\nautomatiseringsbranche\nautomatiseringsbureau\nautomatiseringscursus\nautomatiseringsdagen\nautomatiseringsdeskundige\nautomatiseringsexpert\nautomatiseringsfunctie\nautomatiseringsgebied\nautomatiseringsgids\nautomatiseringsgolf\nautomatiseringsgraad\nautomatiseringskosten\nautomatiseringsman\nautomatiseringsmarkt\nautomatiseringspersoneel\nautomatiseringsplan\nautomatiseringsplanning\nautomatiseringsproject\nautomatiseringssector\nautomatiseringssysteem\nautomatiseringsterrein\nautomatiseringstijdperk\nautomatisme\nautomerk\nautomobiel\nautomobielbedrijf\nautomobielbranche\nautomobielfabriek\nautomobielfabrikant\nautomobielfederatie\nautomobielindustrie\nautomobielinspectie\nautomobielmarkt\nautomobielnijverheid\nautomobielsector\nautomobielsport\nautomobilisme\nautomobilist\nautomobiliste\nautomobilistenclub\nautomobilistenvereniging\nautomobiliteit\nautomodel\nautomonteur\nautomotor\nautomuseum\nautomutilatie\nautomutileren\nautonavigatie\nautoniem\nautonijverheid\nautonomie\nautonomiegroep\nautonomieplan\nautonomieproblematiek\nautonomiestatuut\nautonomievergroting\nautonomist\nautonomistisch\nautonoom\nautonummer\nautopapieren\nautopark\nautopech\nautoped\nautopetten\nautopletter\nautoportier\nautoproducent\nautoproductie\nautopsie\nautopsierapport\nautoraam\nautorace\nautoracen\nautoradio\nautorally\nautoreclame\nautoregeling\nautoregressie\nautoreis\nautorenbaan\nautoreus\nautorijbewijs\nautorijden\nautorijder\nautorijdster\nautorijles\nautorijschool\nautorisatie\nautoriseren\nautorit\nautoritair\nautoritarisme\nautoriteit\nautoriteitsconflict\nautoriteitsgevoeligheid\nautoroute\nautoruit\nautosalon\nautoschade\nautoschadeherstel\nautoschip\nautosector\nautoshop\nautoshow\nautoshowroom\nautoslaaptrein\nautosleutel\nautosloperij\nautosnelweg\nautospiegel\nautosport\nautospuit\nautospuiter\nautostoel\nautostop\nautostrada\nautostrade\nautosuggestie\nautotechniek\nautotelefoon\nautotentoonstelling\nautotocht\nautotrein\nautotunnel\nautotype\nautotypie\nautovaccin\nautovakantie\nautoverhuur\nautoverhuurbedrijf\nautoverhuurder\nautoverkeer\nautoverkoop\nautoverkoper\nautovervoer\nautoverzekeraar\nautoverzekering\nautovrees\nautovrij\nautowas\nautowassen\nautowasser\nautowasserij\nautowasstraat\nautoweg\nautowegennet\nautowereld\nautowrak\nautozwendel\nauxine\naval\navaleren\navalist\navance\navanceren\navant la lettre\navant-garde\navant-gardetoneel\navant-gardisme\navant-gardist\navant-gardistisch\navant-première\navant-scène\navatar\nave\navegaar\navenant\navenue\naverecht\naverechts\naverij\navers\naversie\naversief\naveruit\naviateur\naviatiek\naviatrice\navicultuur\navifauna\naviobrug\navis\naviso\navitaminose\navocado\navocadopeer\navond\navondappel\navondbede\navondbezoek\navondbijeenkomst\navondblad\navondbulletin\navondcollege\navondcourant\navondcursus\navonddienst\navondduister\navondeditie\navondenlang\navondeten\navondfeest\navondgebed\navondgymnasium\navondhandel\navondhemel\navondhoofd\navondjapon\navondjournaal\navondjurk\navondkerk\navondkledij\navondkleding\navondklok\navondkrant\navondles\navondlicht\navondlied\navondlijk\navondlucht\navondmaal\navondmaalsbeker\navondmaalsdienst\navondmaalsstellen\navondmaalstafel\navondmaalsviering\navondmaaltijd\navondmalen\navondmis\navondnieuws\navondonderwijs\navondopening\navondopenstelling\navondopleiding\navondpartij\navondpermissie\navondploeg\navondpost\navondprogramma\navondprogrammering\navondretour\navondrood\navondschemer\navondschemering\navondschool\navondsluiting\navondspits\navondspitsuur\navondspreekuur\navondstond\navondstudent\navondstudie\navondsymposium\navondtarief\navondtoilet\navonduur\navondvergadering\navondvierdaagse\navondvlinder\navondvlucht\navondvoorstelling\navondvullend\navondwake\navondwandeling\navondwedstrijd\navondwerk\navondwijding\navondwinkel\navondzitting\navondzon\navonturen\navonturenboek\navonturenfilm\navonturenkomedie\navonturenpark\navonturenroman\navonturenverhaal\navonturier\navonturierster\navonturisme\navontuur\navontuurlijk\navontuurtje\nawel\naxel\naxiaal\naxillair\naxiologie\naxioma\naxiomatiek\naxiomatisatie\naxiomatisch\naxolotl\naxonometrisch\nayatollah\nazalea\nazc\nazen\nazijn\nazijnaaltje\nazijnachtig\nazijnfles\nazijnhout\nazijnstel\nazijnvat\nazijnzuur\nazimut\nazuren\nazuur\nazuurblauw\nazuursteen\naïs\nb.d.\nb.g.g.\nb.v.d.\nbaadje\nbaadster\nbaai\nbaaien\nbaaierd\nbaaitabak\nbaaivangen\nbaaivanger\nbaak\nbaakgeld\nbaakmeester\nbaal\nbaaldag\nbaalgoed\nbaalkatoen\nbaalzak\nbaan\nbaanatletiek\nbaanbed\nbaanbesturing\nbaanbrekend\nbaanbreker\nbaancafé\nbaancommissaris\nbaanderheer\nbaangarantie\nbaangebruik\nbaanloos\nbaanloosheid\nbaanloper\nbaanloze\nbaanmeester\nbaanopzichter\nbaanrace\nbaanrecord\nbaanrenner\nbaanrots\nbaanschuiver\nbaansport\nbaanstroper\nbaanstropers\nbaantje\nbaantjerijden\nbaantjesjager\nbaanvak\nbaanvast\nbaanvastheid\nbaanveger\nbaanverlenging\nbaanwachter\nbaanwachtershuisje\nbaanwedstrijd\nbaanwielrennen\nbaanwielrenner\nbaanzekerheid\nbaar\nbaard\nbaardaap\nbaardbrandertje\nbaarddracht\nbaardeloos\nbaarden\nbaardgier\nbaardgras\nbaardgroei\nbaardhaar\nbaardig\nbaardloos\nbaardman\nbaardmankruik\nbaardscheerder\nbaardschrapper\nbaardvin\nbaardvis\nbaardvogel\nbaardwalvis\nbaardwerk\nbaardzwijn\nbaarkleed\nbaarkruk\nbaarlijk\nbaarmoeder\nbaarmoederhals\nbaarmoederhalskanker\nbaarmoederkanker\nbaarmoedermond\nbaarmoederslijmvlies\nbaarmoederwand\nbaarmoederweefsel\nbaars\nbaarzen\nbaas\nbaasachtig\nbaasschap\nbaat\nbaatbelasting\nbaatziek\nbaatzucht\nbaatzuchtig\nbaatzuchtigheid\nbaba\nbabbel\nbabbelaar\nbabbelaarster\nbabbelaartje\nbabbelachtig\nbabbelarij\nbabbelbox\nbabbelen\nbabbelkous\nbabbelpraatje\nbabbeltje\nbabbelziek\nbabbelzieke\nbabbelzucht\nbabe\nbabi\nbaboe\nbaboesjka\nbabok\nbaby\nbabyartikel\nbabyboom\nbabyboomer\nbabyboomgeneratie\nbabybox\nbabydoll\nbabyface\nbabyfoon\nbabygeur\nbabygroep\nbabygroepen\nbabyhoofd\nbabykamer\nbabykleding\nbabykleertjes\nbabykleren\nbabylance\nbabylijkje\nbabymarkt\nbabymelk\nbabymelkpoeder\nbabymoord\nbabypoeder\nbabyroof\nbabyshampoo\nbabysit\nbabysitten\nbabysitter\nbabytijd\nbabyverzorging\nbabyvoeding\nbabyvoedsel\nbaccalaureaat\nbaccalaurei\nbaccalaureus\nbaccarat\nbacchanaal\nbacchant\nbacchante\nbacchantisch\nbachelor\nbachelor-master\nbachelor-masteropleiding\nbachelor-masterstructuur\nbachelordiploma\nbachelorfase\nbachelorgraad\nbacheloropleiding\nbacil\nbacillair\nbacillendrager\nback\nback-up\nback-uppen\nbackbencher\nbackbone\nbacken\nbackgammon\nbackground\nbackhand\nbacking\nbacklijn\nbackoffice\nbackorder\nbackpacken\nbackpacker\nbackservice\nbackslash\nbackspace\nbackspin\nbackstage\nbaco\nbacon\nbacove\nbacterie\nbacterie-infectie\nbacteriecultuur\nbacteriedrager\nbacterieel\nbacteriegroei\nbacteriekolonie\nbacteriekweek\nbacteriesoort\nbacteriestam\nbacterievrij\nbacterieziekte\nbacteriofaag\nbacteriologie\nbacteriologisch\nbacterioloog\nbacteriën\nbad\nbadbroek\nbadcel\nbadcultuur\nbadderen\nbadding\nbaddingen\nbaddoek\nbaden\nbader\nbadgast\nbadge\nbadhanddoek\nbadhokje\nbadhotel\nbadhuis\nbadineren\nbadinrichting\nbadjas\nbadjuffrouw\nbadkamer\nbadkleding\nbadknecht\nbadkoets\nbadkostuum\nbadkuip\nbadkuur\nbadlaken\nbadlijn\nbadmantel\nbadmat\nbadmeester\nbadminton\nbadmintonbond\nbadmintonclub\nbadmintonnen\nbadmintonner\nbadmintonracket\nbadmintonsport\nbadmintonster\nbadmintonvereniging\nbadmode\nbadmuts\nbadpak\nbadplaats\nbadruimte\nbadschuim\nbadseizoen\nbadslipper\nbadstad\nbadstoel\nbadstof\nbadstoffen\nbadstrand\nbadtas\nbadthermometer\nbadvrouw\nbadwater\nbadzeep\nbadzout\nbaf\nbagage\nbagageafhandeling\nbagagecontrole\nbagagedepot\nbagagedrager\nbagagekluis\nbagagemandje\nbagagenet\nbagagerek\nbagagereçu\nbagagerijtuig\nbagageruim\nbagageruimte\nbagagespin\nbagagetas\nbagagetassen\nbagagetrein\nbagagewagen\nbagatel\nbagatelle\nbagatelliseren\nbagatellisering\nbagel\nbagger\nbaggeraar\nbaggerbedrijf\nbaggerbeugel\nbaggerconcern\nbaggerdepot\nbaggereiland\nbaggeremmer\nbaggeren\nbaggerfusie\nbaggergroep\nbaggerindustrie\nbaggerlaars\nbaggerlaarzen\nbaggerlieden\nbaggermaatschappij\nbaggermachine\nbaggerman\nbaggermateriaal\nbaggermolen\nbaggeroorlog\nbaggerpoot\nbaggerschip\nbaggerschuit\nbaggersector\nbaggerslib\nbaggerspecie\nbaggerturf\nbaggervloot\nbaggerwerk\nbaggerwerkzaamheden\nbaggy\nbaghera\nbagno\nbaguette\nbah\nbahai\nbahaïsme\nbahco\nbaht\nbaileybrug\nbaisse\nbaissemarkt\nbaissepositie\nbaissetransactie\nbaissier\nbajadère\nbajes\nbajesklant\nbajonet\nbajonetaanval\nbajonetfitting\nbajonetschede\nbajonetsluiting\nbak\nbakbanaan\nbakbeest\nbakblik\nbakboord\nbakboordlicht\nbakboordzij\nbakboordzijde\nbakboter\nbakeliet\nbakelieten\nbaken\nbakenen\nbakengeld\nbakenmeester\nbaker\nbakeren\nbakerkind\nbakermand\nbakermat\nbakernaam\nbakerpraatje\nbakerpraatjes\nbakerrijm\nbakerspeld\nbakersprookje\nbakfiets\nbakhuis\nbakkebaard\nbakkebaarden\nbakkeleien\nbakken\nbakkenist\nbakker\nbakkerij\nbakkerij-patisserie\nbakkerijingrediënt\nbakkerin\nbakkersbedrijf\nbakkersbond\nbakkersgast\nbakkersgezel\nbakkersgist\nbakkerskar\nbakkersknecht\nbakkersmand\nbakkersoven\nbakkersroom\nbakkerstor\nbakkerstrog\nbakkersvet\nbakkersvrouw\nbakkerswagen\nbakkerswinkel\nbakkerszoon\nbakkes\nbakkie\nbaklamp\nbaklava\nbaklucht\nbakmeel\nbaknummer\nbakolie\nbakoven\nbakpan\nbakpannen\nbakpapier\nbakplaat\nbakpoeder\nbakpoeier\nbakproces\nbaksel\nbaksen\nbakspel\nbakstafel\nbaksteen\nbaksteenconstructie\nbaksteenfabricage\nbaksteenindustrie\nbaksteenproducent\nbaksteenrood\nbakstenen\nbakster\nbaktafel\nbakte\nbaktijd\nbaktrog\nbakvet\nbakvis\nbakvorm\nbakwagen\nbakzeil\nbal\nbal masqué\nbalaanname\nbalalaika\nbalalaikaorkest\nbalanceerkunst\nbalanceerstok\nbalanceren\nbalans\nbalansboek\nbalanscijfers\nbalansgesprek\nbalanshandhaving\nbalansopruiming\nbalanspositie\nbalansregelaar\nbalansrekening\nbalansstructuur\nbalanstotaal\nbalanswaarde\nbalanswaardering\nbalartiest\nbalata\nbalatum\nbalbehandeling\nbalbezit\nbalboekje\nbalcirculatie\nbalcontact\nbalcontrole\nbaldadig\nbaldadigheid\nbaldakijn\nbalderen\nbalein\nbaleinen\nbaleintje\nbalen\nbalg\nbalgevoel\nbalgstuw\nbalhoofd\nbalie\nbalie-employé\nbaliefunctie\nbaliekluiver\nbaliemedewerker\nbaliemedewerkster\nbaliemolen\nbaliepersoneel\nbalije\nbaljapon\nbaljurk\nbaljuw\nbaljuwschap\nbalk\nbalkaniseren\nbalkanker\nbalkbrug\nbalken\nbalkenbrij\nbalkenzoldering\nbalkhout\nbalkijzer\nbalklaag\nbalkleed\nbalkon\nbalkonafvoeren\nbalkonconstructie\nbalkondelen\nbalkondeur\nbalkondoorvoer\nbalkondoorvoeren\nbalkonhek\nbalkonkamer\nbalkonkast\nbalkonplafond\nbalkonrand\nbalkonscène\nbalkonvloer\nbalkonvloeren\nbalkonzijde\nbalkostuum\nbalkunstenaar\nballad\nballade\nballadevorm\nballadezanger\nballast\nballastbed\nballasten\nballastlaag\nballastpomp\nballastschop\nballaststof\nballastsysteem\nballasttank\nballastwater\nballastzak\nballen\nballenbad\nballenbak\nballenjongen\nballenmeisje\nballentent\nballerina\nballerino\nballet\nballetacademie\nballetbenen\nballetdanser\nballetdanseres\nballetgezelschap\nballetgroep\nballetje\nballetje-balletje\nballetkunst\nballetles\nballetmeester\nballetmuziek\nballetopleiding\nballetschoen\nballetschool\nballetstijl\nballettechniek\nballetuitvoering\nballing\nballinge\nballingschap\nballingsoord\nballistiek\nballistisch\nballon\nballonband\nballondoek\nballonfok\nballonglas\nballonmand\nballonnenwedstrijd\nballontent\nballonvaarder\nballonvaarster\nballonvaart\nballonvaren\nballonvlucht\nballotage\nballotagecommissie\nballotageprocedure\nballoteren\nballpoint\nballroom\nbalorig\nbalorigheid\nbalpen\nbalpuntpen\nbalsa\nbalsahout\nbalsamico\nbalsamicoazijn\nbalsamiek\nbalsamine\nbalschoen\nbalsem\nbalsemachtig\nbalsemboom\nbalsemen\nbalsemgeur\nbalsemiek\nbalsemien\nbalseming\nbalspel\nbalsport\nbalsturig\nbalsturigheid\nbaltechniek\nbalts\nbaltsen\nbaltsgedrag\nbaltstijd\nbaltsvlucht\nbaluster\nbalustrade\nbalvaardig\nbalvaardigheid\nbalvast\nbalverliefd\nbalverlies\nbalvirtuoos\nbalzaal\nbalzak\nbama\nbamba\nbambino\nbamboe\nbamboebos\nbamboefluit\nbamboeriet\nbamboespruit\nbamboestengel\nbamboestoel\nbamboestok\nbamboetuin\nbami\nbami goreng\nbamibal\nbamis\nbamispacht\nbamispruim\nbamisweer\nbamzaaien\nban\nbanaal\nbanaan\nbanaanboom\nbanaat\nbanaliseren\nbanalisering\nbanaliteit\nbananenblad\nbananenboom\nbananenconflict\nbananenijs\nbananenimport\nbananenmeel\nbananenoorlog\nbananenregime\nbananenrepubliek\nbananenschil\nbananenvlieg\nbanbliksem\nbancair\nband\nbandafnemer\nbandage\nbandagist\nbandbreedte\nbandbreuk\nbanddikte\nbande\nbandelier\nbandeloos\nbandeloosheid\nbanden\nbandenconcern\nbandenfabriek\nbandenfabrikant\nbandenindustrie\nbandenlichter\nbandenmaker\nbandenpatroon\nbandenpech\nbandenplak\nbandenproducent\nbandenspanning\nbandera\nbanderilla\nbanderillero\nbanderol\nbanderolleren\nbandfilter\nbandgeluid\nbandhond\nbandiet\nbandietenbende\nbandietenstreek\nbandijk\nbandijzer\nbanditisme\nbandjir\nbandleider\nbandlezer\nbandlid\nbandmaat\nbandnaam\nbandnummer\nbandoneon\nbandoneonist\nbandoneonspeler\nbandontwerp\nbandopname\nbandopnemer\nbandparodist\nbandplooibroek\nbandponser\nbandrecorder\nbandrem\nbandreparatie\nbandschuurmachine\nbandspanning\nbandstoot\nbandstoten\nbandtekening\nbandversiering\nbandwerk\nbandweverij\nbandwinkel\nbandwisseling\nbandzaag\nbanen\nbanenbeleid\nbanenbeurs\nbanencijfers\nbanencreatie\nbanengroei\nbanenmachine\nbanenmarkt\nbanenmotor\nbanenoverleg\nbanenplan\nbanenpool\nbanenpooler\nbanenpoolplaats\nbanenpoolplaatsen\nbanenprogramma\nbanenreductie\nbanensite\nbanenstelsel\nbanenverlies\nbanenwinkel\nbang\nbangelijk\nbangerd\nbangerik\nbangeschijter\nbangheid\nbangig\nbangigheid\nbangmaker\nbangmakerij\nbangsten\nbanier\nbanierdrager\nbanjer\nbanjeren\nbanjir\nbanjo\nbanjomuziek\nbank\nbankaandeel\nbankaanwijzing\nbankactiviteit\nbankafdeling\nbankafschrift\nbankbed\nbankbediende\nbankbedrijf\nbankberoving\nbankbestuur\nbankbiljet\nbankbiljettencirculatie\nbankbiljettenomloop\nbankbiljettenpers\nbankboekje\nbankbreuk\nbankbrief\nbankbriefje\nbankcheque\nbankcombinatie\nbankconcern\nbankconsortium\nbankconto\nbankdeposito\nbankdienst\nbankdirecteur\nbankdisconto\nbankdivisie\nbankdochter\nbankemployee\nbankemployé\nbanken\nbankencommissie\nbankenconsortium\nbankenfusie\nbankenlandschap\nbankensector\nbankenstrijd\nbankensyndicaat\nbankentoezicht\nbanket\nbanketbakker\nbanketbakkerij\nbanketbakkersknecht\nbanketbakkersroom\nbanketbakkersspijs\nbankethammetje\nbanketletter\nbanketstaaf\nbanketteren\nbanketwinkel\nbankfiliaal\nbankfraude\nbankfusie\nbankgarantie\nbankgebouw\nbankgedrag\nbankgeheim\nbankgeld\nbankgift\nbankgigant\nbankgiro\nbankgirocentrale\nbankgroep\nbankhouder\nbankier\nbankieren\nbankiersfamilie\nbankiersgeslacht\nbankiershuis\nbankierskantoor\nbankiersvereniging\nbankierszoon\nbankinstelling\nbankje\nbankkaart\nbankkantoor\nbankkennis\nbankkluis\nbankkosten\nbankkrediet\nbanklening\nbankloket\nbankloper\nbankman\nbankmanager\nbankmedewerker\nbankmedewerkers\nbankmensen\nbanknummer\nbankoctrooi\nbankoperatie\nbankoverschrijving\nbankoverval\nbankovervaller\nbankpapier\nbankpas\nbankpoot\nbankpost\nbankpostpapier\nbankpraktijk\nbankpresident\nbankproduct\nbankraad\nbankrekening\nbankrekeningnummer\nbankrelatie\nbankrente\nbankroet\nbankroetier\nbankroof\nbankrover\nbanksaldo\nbankschandaal\nbankschool\nbankschroef\nbanksector\nbankspeler\nbankstaat\nbankstel\nbankstelsel\nbanksysteem\nbanktaal\nbanktegoed\nbanktransactie\nbankvak\nbankvergunning\nbankverkeer\nbankverzekeringsgroep\nbankwereld\nbankwerk\nbankwerken\nbankwerker\nbankwet\nbankwetgeving\nbankwezen\nbankzaak\nbankzitter\nbanneling\nbannelinge\nbannen\nbanpaal\nbantam\nbantamgewicht\nbanteng\nbantoeïstiek\nbanvloek\nbanvloeken\nbanvonnis\nbaobab\nbaptisme\nbaptist\nbaptisterium\nbar\nbar mitswa\nbar-dancing\nbara\nbarak\nbarakkenkamp\nbarbaar\nbarbaars\nbarbaarsheid\nbarbarij\nbarbarisme\nbarbecue\nbarbecues\nbarbecuesaus\nbarbecueën\nbarbediende\nbarbeel\nbarbeheerder\nbarbershop\nbarbertje\nbarbiepop\nbarbier\nbarbieren\nbarbiersvak\nbarbierswinkel\nbarbierszaak\nbarbituraat\nbarcarolle\nbarcode\nbarcodeapparatuur\nbarcodelezer\nbarcodescanner\nbard\nbardenzang\nbareel\nbareelwachter\nbarema\nbaren\nbarensnood\nbarenswee\nbarensweeën\nbaret\nbaretembleem\nbarette\nbaretten\nbarheid\nbariet\nbaring\nbariton\nbaritonsaxofonist\nbaritonsaxofoon\nbaritonzanger\nbarium\nbariumpap\nbariumsulfaat\nbarjuffrouw\nbark\nbarkas\nbarkeeper\nbarkeepster\nbarkelner\nbarkruk\nbarman\nbarmeid\nbarmeisje\nbarmeubel\nbarmhartig\nbarmhartigheid\nbarnen\nbarnevelder\nbarnsteen\nbarnstenen\nbarnumreclame\nbarograaf\nbarok\nbarokcello\nbarokgebouwen\nbarokhobo\nbarokkunst\nbarokmuziek\nbarokopera\nbarokorkest\nbarokschilder\nbarokstijl\nbaroktijd\nbarokviool\nbarometer\nbarometerstand\nbarometrisch\nbaron\nbarones\nbaronesse\nbaronie\nbaronnentitel\nbaroscoop\nbarouchet\nbarpersoneel\nbarpianist\nbarracuda\nbarrage\nbarre\nbarrel\nbarrels\nbarreren\nbarrevoeter\nbarrevoets\nbarricade\nbarricadegevecht\nbarricaderen\nbarring\nbarrière\nbars\nbarsheid\nbarst\nbarsten\nbarstens\nbarstensvol\nbartender\nbarvrouw\nbarzoi\nbas\nbas-bariton\nbas-reliëf\nbasaal\nbasalt\nbasaltblok\nbasalten\nbasaria\nbascule\nbasculebrug\nbasculesluiting\nbasdrum\nbase\nbaseball\nbaseballcap\nbaseballen\nbaseballpet\nbaseline\nbaseliner\nbasement\nbasen\nbasenpaar\nbasenvolgorde\nbaseren\nbasgitaar\nbasgitarist\nbashoorn\nbasilica\nbasilicum\nbasilicumblaadje\nbasiliek\nbasiliekstijl\nbasilisk\nbasinstrument\nbasis\nbasisaanpak\nbasisactiviteit\nbasisadministratie\nbasisaftrek\nbasisakkoord\nbasisangst\nbasisarts\nbasisaspect\nbasisassortiment\nbasisassumptie\nbasisbedrag\nbasisbehandeling\nbasisbehoefte\nbasisberaad\nbasisbeurs\nbasisbeweging\nbasisbezetting\nbasisboek\nbasisch\nbasischemicaliën\nbasischemie\nbasiscommandant\nbasiscompetentie\nbasisconcept\nbasisconditie\nbasiscontract\nbasiscursus\nbasisdemocratie\nbasisdienstverlening\nbasisdiploma\nbasisdiscipline\nbasisdocument\nbasiseditie\nbasiseducatie\nbasiseenheid\nbasiseis\nbasiselement\nbasiself\nbasiselftal\nbasisfilosofie\nbasisformatie\nbasisformule\nbasisfunctie\nbasisgebruiker\nbasisgedachte\nbasisgegeven\nbasisgemeente\nbasisgevallen\nbasisgezondheidsdienst\nbasisgezondheidszorg\nbasisgroep\nbasisherfinancieringstransactie\nbasishouding\nbasisidee\nbasisindeling\nbasisindustrie\nbasisinformatie\nbasisinfrastructuur\nbasisingrediënt\nbasisinkomen\nbasisinstrumentarium\nbasisinvestering\nbasisjaar\nbasiskaart\nbasiskamp\nbasiskapitaal\nbasiskenmerk\nbasiskenmerken\nbasiskennis\nbasiskleur\nbasiskorting\nbasiskwaliteit\nbasislijn\nbasislijst\nbasisloon\nbasismaandsalaris\nbasismateriaal\nbasismetaal\nbasismethode\nbasismodel\nbasismotor\nbasisniveau\nbasisnorm\nbasisonderwijs\nbasisonderzoek\nbasisontwerp\nbasisopleiding\nbasisopstelling\nbasispakket\nbasispastoraat\nbasispatroon\nbasispensioen\nbasisplaats\nbasisplan\nbasisploeg\nbasispolis\nbasispolitiezorg\nbasispositie\nbasispremie\nbasisprijs\nbasisprincipe\nbasisprobleem\nbasisproduct\nbasisprofiel\nbasisprogramma\nbasisprogrammatuur\nbasispunt\nbasisrecht\nbasisregel\nbasisregeling\nbasisregistratie\nbasisrente\nbasisruimte\nbasissalaris\nbasisscenario\nbasisschema\nbasisscholing\nbasisschool\nbasisschooldirecteur\nbasisschooljeugd\nbasisschoolleeftijd\nbasisschoolleerling\nbasissnelheid\nbasisspeler\nbasisstation\nbasisstelling\nbasisstelsel\nbasisstipendium\nbasisstrategie\nbasisstructuur\nbasissysteem\nbasistaal\nbasistarief\nbasisteam\nbasistechnologie\nbasistekst\nbasistitel\nbasistraining\nbasisuitkering\nbasisuitrusting\nbasisuitvoering\nbasisvak\nbasisvariant\nbasisvector\nbasisveiligheid\nbasisverdrag\nbasisvergelijking\nbasisvergoeding\nbasisversie\nbasisvertrouwen\nbasisverzekering\nbasisvoedsel\nbasisvolgorde\nbasisvoorwaarde\nbasisvoorziening\nbasisvoorzieningen\nbasisvorm\nbasisvorming\nbasisvraag\nbasiswaarde\nbasiswedde\nbasiswerkwijze\nbasiswet\nbasiswoord\nbasiswoordenboek\nbasiswoordenlijst\nbasiswoordenschat\nbasiszekerheid\nbasisziekenhuis\nbasiszorg\nbaskerville\nbasket\nbasketbal\nbasketbalbond\nbasketbalclub\nbasketbalcoach\nbasketbalcompetitie\nbasketballen\nbasketballer\nbasketbalploeg\nbasketbalspeelster\nbasketbalspeler\nbasketbalster\nbasketbaltalent\nbasketbalteam\nbasketbaltitel\nbasketbaltoernooi\nbasketbalveldje\nbasketbalwedstrijd\nbasketbalwereld\nbasketspeler\nbasketten\nbasketter\nbasklarinet\nbasklarinettist\nbaskuul\nbaskuulbrug\nbaskuulsluiting\nbaslijn\nbasmatirijst\nbaspartij\nbasralokus\nbasreflexkast\nbassen\nbasset\nbassethoorn\nbassethoren\nbassin\nbassist\nbassiste\nbassleutel\nbasso continuo\nbasspel\nbasspeler\nbasstem\nbast\nbasta\nbastaard\nbastaarderen\nbastaardering\nbastaardij\nbastaardkind\nbastaardnachtegaal\nbastaardras\nbastaardspin\nbastaardsuiker\nbastaardtaal\nbastaarduitgang\nbastaardvloek\nbastaardvorm\nbastaardwoord\nbastaardzoon\nbasten\nbasterd\nbasterdsuiker\nbastion\nbastkever\nbastonnade\nbasviool\nbaszanger\nbat\nbataat\nbataljon\nbataljonscommandant\nbataljonsleiding\nbataljonsstaf\nbatch\nbaten\nbaten-lastenstelsel\nbathyscaaf\nbathysfeer\nbatig\nbatik\nbatikken\nbatikker\nbatikster\nbatist\nbatisten\nbaton\nbatsman\nbatten\nbatterij\nbatterijkip\nbatterijlader\nbatterijontsteking\nbatterijvoeding\nbatting\nbattle\nbattledress\nbaud\nbaudrate\nbaudrates\nbauwen\nbauxiet\nbauxietindustrie\nbauxietmijn\nbauxietsector\nbavarois\nbavet\nbaviaan\nbavianen\nbaxter\nbazaar\nbazelen\nbazen\nbazig\nbazin\nbazooka\nbazuin\nbazuinblazer\nbazuinen\nbazuingeschal\nbaäl\nbbp\nbbp-groei\nbeaarding\nbeaat\nbeachvolley\nbeachvolleybal\nbeademen\nbeademing\nbeademingsapparaat\nbeademingsapparatuur\nbeademingsmachine\nbeademingstoestel\nbeagle\nbeambte\nbeamen\nbeamer\nbeaming\nbeangst\nbeangstigen\nbeangstigend\nbeangstiging\nbeantwoorden\nbeantwoording\nbearbeiden\nbearbeiding\nbeargumenteren\nbearnaisesaus\nbeat\nbeatbox\nbeatgeneratie\nbeatgeneration\nbeatgroep\nbeatificatie\nbeatjuggelen\nbeatmis\nbeatmuziek\nbeatnik\nbeau monde\nbeaufortschaal\nbeaujolais\nbeauty\nbeautycase\nbeautycentrum\nbeautyfarm\nbeautysalon\nbeauté\nbebaard\nbebakenen\nbebakening\nbeblaard\nbebladerd\nbebloed\nbebloemd\nbeboeren\nbeboet\nbeboeten\nbeboomd\nbebop\nbebording\nbebossen\nbebossing\nbebost\nbeboteren\nbebouwbaar\nbebouwd\nbebouwen\nbebouwer\nbebouwing\nbebouwingsdichtheid\nbebrild\nbebroeden\nbechamelsaus\nbecijferen\nbecijfering\nbecommentariëren\nbeconcurreren\nbecquerel\nbed\nbedaagd\nbedaard\nbedaardheid\nbedacht\nbedachtzaam\nbedachtzaamheid\nbedaking\nbedankbrief\nbedanken\nbedankje\nbedankt\nbedaren\nbedauwd\nbedauwen\nbedbank\nbedbodem\nbedden\nbeddenbak\nbeddencapaciteit\nbeddengoed\nbeddenhuis\nbeddenkruik\nbeddenkussen\nbeddenlaken\nbeddenpan\nbeddenplank\nbeddenreductie\nbeddensprei\nbeddentekort\nbeddentijk\nbeddenwarmer\nbeddenwinkel\nbeddenzak\nbedding\nbede\nbedeeld\nbedeelde\nbedeesd\nbedeesdheid\nbedehuis\nbedekken\nbedekking\nbedekt\nbedektelijk\nbedektzadig\nbedelaar\nbedelaarsgesticht\nbedelaarskolonie\nbedelaarster\nbedelares\nbedelarij\nbedelarmband\nbedelbrief\nbedelbroeder\nbedelen\nbedeling\nbedelkind\nbedelman\nbedelmonnik\nbedelnap\nbedelorde\nbedelpartij\nbedelstaf\nbedeltje\nbedeltocht\nbedelven\nbedelverbod\nbedelzak\nbedenkdag\nbedenkelijk\nbedenkelijkheid\nbedenken\nbedenker\nbedenking\nbedenksel\nbedenkster\nbedenktijd\nbedeplaats\nbederf\nbederfelijk\nbederfelijkheid\nbederfwerend\nbederven\nbederver\nbedevaarder\nbedevaarster\nbedevaart\nbedevaartganger\nbedevaartgangster\nbedevaartplaats\nbedevaartsoord\nbedevaartsplaats\nbedevaartstocht\nbedevaartvaantje\nbedgeheim\nbedgenoot\nbedgenote\nbedgordijn\nbedieden\nbedienaar\nbedienbaar\nbediend\nbediende\nbediendebond\nbediendecontract\nbediendekamer\nbediendepersoneel\nbediendevakbond\nbedienen\nbediener\nbediening\nbedieningsafdeling\nbedieningsfout\nbedieningsgeld\nbedieningsgemak\nbedieningskast\nbedieningsknop\nbedieningsmechanisme\nbedieningspaneel\nbedieningsplaats\nbedieningspost\nbedieningsschakelaar\nbedierf\nbedierven\nbedijken\nbedijking\nbedilal\nbedillen\nbediller\nbedillerig\nbedilziek\nbedilzucht\nbedilzuchtig\nbeding\nbedingen\nbedinging\nbediscussiëren\nbedisselen\nbedjasje\nbedkruik\nbedlamp\nbedlampje\nbedlegerig\nbedlegerigheid\nbedlinnen\nbedoeken\nbedoeld\nbedoelen\nbedoeling\nbedoening\nbedoeïen\nbedoeïenen\nbedoeïenentent\nbedoeïenententen\nbedolven\nbedompt\nbedomptheid\nbedonderd\nbedonderen\nbedorven\nbedotten\nbedotter\nbedplassen\nbedplasser\nbedrading\nbedrag\nbedragen\nbedrand\nbedreigen\nbedreigend\nbedreiger\nbedreiging\nbedremmeld\nbedreven\nbedrevenheid\nbedriegen\nbedrieger\nbedriegerij\nbedrieglijk\nbedrieglijkheid\nbedriegster\nbedrijf\nbedrijfs-cao\nbedrijfsactiviteit\nbedrijfsadministratie\nbedrijfsadviseur\nbedrijfsadvocaat\nbedrijfsafval\nbedrijfsarts\nbedrijfsauto\nbedrijfsbaten\nbedrijfsbebouwing\nbedrijfsbeheer\nbedrijfsbelang\nbedrijfsbelasting\nbedrijfsbeleid\nbedrijfsberichten\nbedrijfsbescherming\nbedrijfsbestemming\nbedrijfsbeveiliging\nbedrijfsbezetting\nbedrijfsbezoek\nbedrijfsbeëindiging\nbedrijfsblad\nbedrijfsblindheid\nbedrijfsbond\nbedrijfsbrand\nbedrijfsbrandweer\nbedrijfsbureau\nbedrijfscashflow\nbedrijfscentrale\nbedrijfschap\nbedrijfscode\nbedrijfscommissie\nbedrijfscommunicatie\nbedrijfscomplex\nbedrijfscomputer\nbedrijfsconcentratie\nbedrijfscontactfunctionaris\nbedrijfscontinuïteit\nbedrijfscorrespondentie\nbedrijfscultuur\nbedrijfsdemocratie\nbedrijfsdemocratisering\nbedrijfsdienst\nbedrijfsdirecteur\nbedrijfsdirectie\nbedrijfsdoelstelling\nbedrijfsdoorlichting\nbedrijfsdrukte\nbedrijfseconomie\nbedrijfseconomisch\nbedrijfseconoom\nbedrijfseenheid\nbedrijfseigen\nbedrijfseigendom\nbedrijfservaring\nbedrijfsethiek\nbedrijfsfeest\nbedrijfsfeestje\nbedrijfsfilm\nbedrijfsfilosofie\nbedrijfsfinanciering\nbedrijfsfinanciën\nbedrijfsfitness\nbedrijfsfonds\nbedrijfsgebouw\nbedrijfsgeheim\nbedrijfsgeneeskunde\nbedrijfsgeneeskundige\nbedrijfsgericht\nbedrijfsgeschiedenis\nbedrijfsgewijze\nbedrijfsgezondheidsdienst\nbedrijfsgezondheidszorg\nbedrijfsgroei\nbedrijfsgroep\nbedrijfsgrond\nbedrijfsgrootte\nbedrijfshal\nbedrijfshoofd\nbedrijfshuishouding\nbedrijfshuishoudkunde\nbedrijfshuisvesting\nbedrijfshulpverlening\nbedrijfshygiëne\nbedrijfsimago\nbedrijfsinformatica\nbedrijfsinformaticus\nbedrijfsinformatie\nbedrijfsinkomen\nbedrijfsinstallatie\nbedrijfsintern\nbedrijfsjournaal\nbedrijfsjurist\nbedrijfskader\nbedrijfskadertraining\nbedrijfskantine\nbedrijfskapitaal\nbedrijfskas\nbedrijfskern\nbedrijfsklaar\nbedrijfsklant\nbedrijfskleding\nbedrijfsklimaat\nbedrijfskolom\nbedrijfskosten\nbedrijfskrediet\nbedrijfskritisch\nbedrijfskunde\nbedrijfskundestudente\nbedrijfskundig\nbedrijfskundige\nbedrijfskundigen\nbedrijfslaboratorium\nbedrijfslamp\nbedrijfslasten\nbedrijfsledengroep\nbedrijfsledengroepen\nbedrijfsleer\nbedrijfsleider\nbedrijfsleidersverzekering\nbedrijfsleiding\nbedrijfsleidster\nbedrijfsleven\nbedrijfslogo\nbedrijfsmaatschappelijk\nbedrijfsmanagement\nbedrijfsmanager\nbedrijfsmarge\nbedrijfsmarkt\nbedrijfsmatig\nbedrijfsmiddelen\nbedrijfsmodel\nbedrijfsnaam\nbedrijfsnetwerk\nbedrijfsnieuws\nbedrijfsniveau\nbedrijfsnummer\nbedrijfsobligaties\nbedrijfsomgeving\nbedrijfsomvang\nbedrijfsomzet\nbedrijfsonderdeel\nbedrijfsongeluk\nbedrijfsongeval\nbedrijfsonkosten\nbedrijfsontwikkeling\nbedrijfsopleiding\nbedrijfsoppervlakte\nbedrijfsopvolger\nbedrijfsopvolging\nbedrijfsorganisatie\nbedrijfsovername\nbedrijfspand\nbedrijfspark\nbedrijfspensioen\nbedrijfspensioenfonds\nbedrijfsplan\nbedrijfspluimvee\nbedrijfspolitiek\nbedrijfspraktijk\nbedrijfspresentatie\nbedrijfsproces\nbedrijfspsychologie\nbedrijfspsycholoog\nbedrijfspunt\nbedrijfsraad\nbedrijfsrecherche\nbedrijfsreferentie\nbedrijfsregime\nbedrijfsrendement\nbedrijfsreportage\nbedrijfsreserve\nbedrijfsrestaurant\nbedrijfsresultaat\nbedrijfsrevisor\nbedrijfsrisico\nbedrijfsruimte\nbedrijfsschade\nbedrijfsschool\nbedrijfssector\nbedrijfssfeer\nbedrijfssite\nbedrijfssituatie\nbedrijfssluiting\nbedrijfssociologie\nbedrijfssoftware\nbedrijfsspaarregeling\nbedrijfssparen\nbedrijfsspecifiek\nbedrijfsspionage\nbedrijfsstempel\nbedrijfssteun\nbedrijfsstrategie\nbedrijfsstructuur\nbedrijfssysteem\nbedrijfstak\nbedrijfstak-cao\nbedrijfstakgewijs\nbedrijfstakonderzoek\nbedrijfstakregeling\nbedrijfstechnicus\nbedrijfstechniek\nbedrijfstechnisch\nbedrijfstelecommunicatie\nbedrijfstelefonie\nbedrijfstelefooncentrale\nbedrijfstemperatuur\nbedrijfsterrein\nbedrijfstijd\nbedrijfstijdverlenging\nbedrijfstop\nbedrijfstroom\nbedrijfsuitbreiding\nbedrijfsuitgaven\nbedrijfsuitoefening\nbedrijfsuitvoering\nbedrijfsveiligheid\nbedrijfsvereniging\nbedrijfsvergunning\nbedrijfsverlies\nbedrijfsverplaatsing\nbedrijfsvervoer\nbedrijfsverzamelgebouw\nbedrijfsverzekering\nbedrijfsvestiging\nbedrijfsvoering\nbedrijfsvoetbal\nbedrijfsvoorheffing\nbedrijfsvoorlichter\nbedrijfsvorm\nbedrijfswaarde\nbedrijfswagen\nbedrijfswereld\nbedrijfswerk\nbedrijfswinkel\nbedrijfswinst\nbedrijfswoning\nbedrijfszeker\nbedrijfszekerheid\nbedrijfszetel\nbedrijven\nbedrijvenbeurs\nbedrijvencentrum\nbedrijvencomplex\nbedrijvend\nbedrijvendokter\nbedrijvengroep\nbedrijvenmarkt\nbedrijvennummer\nbedrijvenpark\nbedrijvenpoli\nbedrijvenpolikliniek\nbedrijvensector\nbedrijventerrein\nbedrijver\nbedrijvig\nbedrijvigheid\nbedrinken\nbedroefd\nbedroefdheid\nbedroeven\nbedroevend\nbedrog\nbedrogen\nbedrogene\nbedroog\nbedroppelen\nbedruipen\nbedrukken\nbedrukking\nbedrukt\nbedruktheid\nbedruppelen\nbedruppen\nbedrust\nbedscène\nbedsermoen\nbedsponde\nbedstede\nbedstee\nbedstro\nbedtijd\nbeducht\nbeduchtheid\nbeduiden\nbeduidend\nbeduiding\nbeduimeld\nbeduimelen\nbeduusd\nbeduusdheid\nbeduveld\nbeduvelen\nbedverpleging\nbedwang\nbedwateren\nbedwelmd\nbedwelmdheid\nbedwelmen\nbedwelming\nbedwelmingsmiddel\nbedwingbaar\nbedwingen\nbedwinger\nbeek\nbeekbezinking\nbeekdal\nbeeld\nbeeldafstand\nbeeldband\nbeeldbepalend\nbeeldbeschrijving\nbeeldbewerking\nbeeldbuis\nbeeldcombinatie\nbeeldcultuur\nbeelddrager\nbeeldenaar\nbeeldencollectie\nbeeldend\nbeeldendienaar\nbeeldendienst\nbeeldenexpositie\nbeeldengalerij\nbeeldengroep\nbeeldenkraam\nbeeldenpark\nbeeldenrijkdom\nbeeldenstorm\nbeeldenstormer\nbeeldenstrijd\nbeeldentaal\nbeeldententoonstelling\nbeeldentuin\nbeelderig\nbeeldgieter\nbeeldgrafiek\nbeeldhoek\nbeeldhouwen\nbeeldhouwer\nbeeldhouwerij\nbeeldhouwkunst\nbeeldhouwster\nbeeldhouwwerk\nbeeldig\nbeeldindustrie\nbeeldinformatie\nbeeldinstelling\nbeeldinstituut\nbeeldkwaliteit\nbeeldkwaliteitsplan\nbeeldmateriaal\nbeeldmerk\nbeeldmooi\nbeeldopbouw\nbeeldplaat\nbeeldradio\nbeeldrecht\nbeeldrecorder\nbeeldredacteur\nbeeldregie\nbeeldrijk\nbeeldrijkheid\nbeeldroman\nbeeldruimte\nbeeldscherm\nbeeldschermbesturing\nbeeldschermdriver\nbeeldschermergonomie\nbeeldschermwerk\nbeeldscherpte\nbeeldschoon\nbeeldschrift\nbeeldsnijden\nbeeldsnijder\nbeeldsnijkunst\nbeeldspraak\nbeeldstatistiek\nbeeldsynchroon\nbeeldtaal\nbeeldtechnicus\nbeeldtelefonie\nbeeldtelefoon\nbeeldveld\nbeeldvenster\nbeeldverbinding\nbeeldverhaal\nbeeldverslag\nbeeldvlak\nbeeldvorming\nbeeldvullend\nbeeldzijde\nbeeltenis\nbeemd\nbeemdgras\nbeen\nbeenachtig\nbeenamputatie\nbeenbedekking\nbeenbeschermer\nbeenbescherming\nbeenblok\nbeenbreuk\nbeencel\nbeenderen\nbeendergestel\nbeenderlijm\nbeendermeel\nbeendersoep\nbeendroog\nbeenfractuur\nbeengewricht\nbeengezwel\nbeenham\nbeenhard\nbeenhouwer\nbeenhouwerij\nbeenhouwersgast\nbeenhouwersmes\nbeenkap\nbeenloos\nbeenmerg\nbeenmergcel\nbeenmergontsteking\nbeenmergtransplantatie\nbeenprothese\nbeenruimte\nbeenslag\nbeenspalk\nbeenstomp\nbeenstuk\nbeentje\nbeenvis\nbeenvissen\nbeenvlies\nbeenvorming\nbeenwarmer\nbeenweefsel\nbeenwerk\nbeenwindsel\nbeenwond\nbeenworp\nbeenzwart\nbeer\nbeerachtig\nbeerenburg\nbeerkar\nbeerput\nbeerstoffen\nbeerton\nbeerwagen\nbeest\nbeestachtig\nbeestachtigheid\nbeesten\nbeestenbende\nbeestenboel\nbeestendokter\nbeestenkoopman\nbeestenkoper\nbeestenmarkt\nbeestenspel\nbeestenstal\nbeestenvoer\nbeestenwagen\nbeestenweer\nbeestig\nbeestigheid\nbeestje\nbeestmens\nbeet\nbeetgaar\nbeetgrijpen\nbeethebben\nbeethouden\nbeetje\nbeetkrijgen\nbeetnemen\nbeetpakken\nbeetsuiker\nbeetwortel\nbeetwortelsuiker\nbeetwortelsuikerfabriek\nbef\nbefaamd\nbefaamdheid\nbeffen\nbefkraag\nbeflijster\nbefloersen\nbegaafd\nbegaafde\nbegaafdheid\nbegaan\nbegaanbaar\nbegaanbaarheid\nbegane\nbegankenis\nbegapen\nbegeerd\nbegeerlijk\nbegeerlijkheid\nbegeerte\nbegeesterd\nbegeesteren\nbegeestering\nbegeleid\nbegeleiden\nbegeleidend\nbegeleider\nbegeleiding\nbegeleidingsactiviteit\nbegeleidingsapparaat\nbegeleidingsband\nbegeleidingsbehoefte\nbegeleidingscommissie\nbegeleidingsdienst\nbegeleidingsgesprek\nbegeleidingsgroep\nbegeleidingsinstrument\nbegeleidingsmethode\nbegeleidingsmodel\nbegeleidingsmuziek\nbegeleidingsplan\nbegeleidingsprogramma\nbegeleidingsrelatie\nbegeleidingsteam\nbegeleidingstraject\nbegeleidingsverschijnsel\nbegeleidingsvraag\nbegeleidingsvragen\nbegeleidster\nbegeleidwonenproject\nbegenadigd\nbegenadigen\nbegenadiging\nbegeren\nbegerenswaard\nbegerenswaardig\nbegerig\nbegerigheid\nbegeven\nbegieren\nbegieten\nbegiftigd\nbegiftigde\nbegiftigen\nbegiftiger\nbegiftiging\nbegijn\nbegijnenkoek\nbegijnenrijst\nbegijnhof\nbegillen\nbegin\nbeginbalans\nbegindagen\nbegindatum\nbeginfase\nbeginfout\nbegingeneriek\nbegininvestering\nbeginjaar\nbeginjaren\nbeginkapitaal\nbeginklank\nbeginletter\nbeginneling\nbeginnelinge\nbeginnen\nbeginner\nbeginnerscursus\nbeginnersfout\nbeginnummer\nbeginopstelling\nbeginperiode\nbeginpunt\nbeginregel\nbeginrijm\nbeginsalaris\nbeginsaldo\nbeginsel\nbeginselakkoord\nbeginselenwet\nbeginselkwestie\nbeginselloos\nbeginselloosheid\nbeginselovereenkomst\nbeginselprogramma\nbeginseltoestemming\nbeginselvast\nbeginselvastheid\nbeginselverklaring\nbeginsignaal\nbeginsituatie\nbeginsnelheid\nbeginspanning\nbeginstadium\nbeginstand\nbeginsterkte\nbegintijd\nbegintijdstip\nbegintitel\nbegintoestand\nbegintune\nbeginwaarde\nbeginwoord\nbeginzet\nbeginzetten\nbeginzin\nbeglazen\nbeglazing\nbeglazingskit\nbeglazingskitten\nbeglazingssysteem\nbegluren\nbegon\nbegonia\nbegonnen\nbegoochelen\nbegoocheling\nbegraafplaats\nbegraasd\nbegrafenis\nbegrafenisbedrijf\nbegrafenisbedrijven\nbegrafenisceremonie\nbegrafenisdienst\nbegrafenisfonds\nbegrafenisgezicht\nbegrafeniskosten\nbegrafenismuziek\nbegrafenisondernemer\nbegrafenisonderneming\nbegrafenisplechtigheid\nbegrafenisrecht\nbegrafenisrite\nbegrafenisstoet\nbegrafenisverzekering\nbegraven\nbegraving\nbegrazen\nbegrazing\nbegreep\nbegrensd\nbegrensdheid\nbegrenzen\nbegrenzer\nbegrenzing\nbegrepen\nbegrijpbaar\nbegrijpelijk\nbegrijpelijkerwijs\nbegrijpelijkerwijze\nbegrijpelijkheid\nbegrijpelijkheidsonderzoek\nbegrijpen\nbegrijpend\nbegrip\nbegrippenapparaat\nbegrippenkader\nbegrippenlijst\nbegrippenpaar\nbegripsafbakening\nbegripsassociatie\nbegripsbepaling\nbegripsinhoud\nbegripsleer\nbegripsmatig\nbegripsomschrijving\nbegripsvermogen\nbegripsverwarring\nbegripsvol\nbegripsvorming\nbegripswoord\nbegripvol\nbegroef\nbegroeid\nbegroeien\nbegroeiing\nbegroeten\nbegroeting\nbegroetingsritueel\nbegroetingsteken\nbegrotelijk\nbegroten\nbegroting\nbegrotingsakkoord\nbegrotingsartikel\nbegrotingsbasis\nbegrotingsbehandeling\nbegrotingsbeleid\nbegrotingsbespreking\nbegrotingsbewaking\nbegrotingscijfer\nbegrotingscommissie\nbegrotingsconclaaf\nbegrotingscontrole\nbegrotingsdebat\nbegrotingsdirecteur\nbegrotingsdiscipline\nbegrotingsevenwicht\nbegrotingsgat\nbegrotingsgeld\nbegrotingsjaar\nbegrotingskader\nbegrotingsmethodiek\nbegrotingsminister\nbegrotingsnorm\nbegrotingsontwerp\nbegrotingsopmaak\nbegrotingsoverleg\nbegrotingsoverschot\nbegrotingsoverschrijding\nbegrotingsplan\nbegrotingspolitiek\nbegrotingspost\nbegrotingsproblematiek\nbegrotingsraad\nbegrotingsrede\nbegrotingsronde\nbegrotingsruimte\nbegrotingssaldo\nbegrotingssanering\nbegrotingssituatie\nbegrotingssteun\nbegrotingsstukken\nbegrotingssysteem\nbegrotingssystematiek\nbegrotingstechnisch\nbegrotingstekort\nbegrotingsvoorbereiding\nbegrotingsvoorstel\nbegrotingswet\nbegunstigde\nbegunstigen\nbegunstiger\nbegunstiging\nbegunstigster\nbeha\nbehaaglijk\nbehaaglijkheid\nbehaagziek\nbehaagzucht\nbehaard\nbehaardheid\nbehagen\nbehalen\nbehalve\nbehandelaar\nbehandelbaar\nbehandelcapaciteit\nbehandelcentrum\nbehandelduur\nbehandelen\nbehandeling\nbehandelingsaanbod\nbehandelingscode\nbehandelingsduur\nbehandelingskosten\nbehandelingsmethode\nbehandelingsmethodiek\nbehandelingsmogelijkheid\nbehandelingsovereenkomst\nbehandelingsperspectief\nbehandelingsplan\nbehandelingsplannen\nbehandelingsprognose\nbehandelingsprogramma\nbehandelingsprotocol\nbehandelingsschema\nbehandelingstechniek\nbehandelingstehuis\nbehandelingsvoorgeschiedenis\nbehandelingswachttijd\nbehandelingswijze\nbehandelinrichting\nbehandelkamer\nbehandelmethode\nbehandelmogelijkheid\nbehandelplan\nbehandelprogramma\nbehandelruimte\nbehandelstoel\nbehandeltafel\nbehandeltijd\nbehandelwijze\nbehang\nbehangen\nbehanger\nbehangerskwast\nbehangerslijm\nbehangerslinnen\nbehangetje\nbehangpapier\nbehangsel\nbehangsellinnen\nbehangselpapier\nbehangwerk\nbehapbaar\nbehappen\nbehapt\nbeharen\nbeharing\nbehartigen\nbehartigenswaard\nbehartigenswaardig\nbehartiger\nbehartiging\nbehaviorisme\nbehaviorist\nbehavioristisch\nbeheer\nbeheerder\nbeheerfunctie\nbeheerkosten\nbeheermaatregel\nbeheermaatschappij\nbeheerorganisatie\nbeheerovereenkomst\nbeheerpersoneel\nbeheerplan\nbeheerprocedure\nbeheerprocedures\nbeheerraad\nbeheerrol\nbeheerrollen\nbeheersaspect\nbeheersbaar\nbeheersbaarheid\nbeheerscomité\nbeheerscommissie\nbeheerscontract\nbeheersen\nbeheerser\nbeheerseres\nbeheersgebied\nbeheersing\nbeheersingsinstrument\nbeheersingsmaatregel\nbeheersingssysteem\nbeheersinstrument\nbeheerskosten\nbeheersmaatschappij\nbeheersmatig\nbeheersniveau\nbeheersovereenkomst\nbeheersplan\nbeheersprogramma\nbeheersraad\nbeheersstichting\nbeheersstructuur\nbeheerssysteem\nbeheerst\nbeheerstaak\nbeheerster\nbeheerstheid\nbeheerstichting\nbeheerstructuur\nbeheersuitoefening\nbeheersvergoeding\nbeheersvorm\nbeheersvraagstuk\nbeheersysteem\nbeheertaak\nbeheervorm\nbeheksen\nbehekst\nbehelpen\nbehelsd\nbehelzen\nbehendig\nbehendigheid\nbehendigheidsspel\nbehendigheidswedstrijd\nbehept\nbeheren\nbehoeden\nbehoeder\nbehoedmiddel\nbehoedster\nbehoedzaam\nbehoedzaamheid\nbehoefte\nbehoeftebevrediging\nbehoefteonderzoek\nbehoeftepakket\nbehoeftepatroon\nbehoefteschema\nbehoeftig\nbehoeftigheid\nbehoeven\nbehoorlijk\nbehoorlijkheid\nbehoren\nbehoud\nbehouden\nbehoudend\nbehoudendheid\nbehoudenis\nbehoudens\nbehouder\nbehoudsgezind\nbehoudsman\nbehoudzucht\nbehoudzuchtig\nbehouwen\nbehuild\nbehuisd\nbehuizing\nbehulp\nbehulpzaam\nbehulpzaamheid\nbehuwd\nbehuwdbroeder\nbehuwdmoeder\nbehuwdoom\nbehuwdvader\nbehuwdzoon\nbehuwdzuster\nbeiaard\nbeiaardconcert\nbeiaarden\nbeiaardier\nbeiaardspel\nbeide\nbeiden\nbeiderhande\nbeiderlei\nbeiderzijds\nbeidjes\nbeier\nbeieren\nbeige\nbeignet\nbeijveren\nbeijzeld\nbeitel\nbeitelen\nbeitelvormig\nbeits\nbeitsen\nbejaagbaar\nbejaagd\nbejaard\nbejaarde\nbejaardenaftrek\nbejaardenbeleid\nbejaardencentrum\nbejaardenflat\nbejaardenhelper\nbejaardenhelpster\nbejaardenhome\nbejaardenhuis\nbejaardenhuisvesting\nbejaardenhulp\nbejaardenoord\nbejaardenpas\nbejaardenpaspoort\nbejaardenprobleem\nbejaardensoos\nbejaardentehuis\nbejaardenverzekering\nbejaardenverzorger\nbejaardenverzorging\nbejaardenverzorgster\nbejaardenvoorziening\nbejaardenvraagstuk\nbejaardenwerk\nbejaardenwoning\nbejaardenzorg\nbejag\nbejagen\nbejaging\nbejammeren\nbejammerenswaardig\nbejegenen\nbejegening\nbejubelen\nbek\nbekaaid\nbekabelen\nbekabeling\nbekabelingsysteem\nbekabelingsystemen\nbekading\nbekaf\nbekakken\nbekakt\nbekalken\nbekampen\nbekappen\nbekapping\nbekeerd\nbekeerde\nbekeerder\nbekeerling\nbekeerlinge\nbekeken\nbekekene\nbekend\nbekende\nbekendheid\nbekendmaken\nbekendmaking\nbekendstaan\nbekendwording\nbekennen\nbekentenis\nbekentenisliteratuur\nbeker\nbekeravontuur\nbekercompetitie\nbekerduel\nbekeren\nbekerfinale\nbekerfinalist\nbekerglas\nbekerhouder\nbekering\nbekeringsdrang\nbekeringsijver\nbekeringswerk\nbekermos\nbekernederlaag\nbekerplant\nbekerprogramma\nbekerronde\nbekerstrijd\nbekerstunt\nbekertoernooi\nbekertreffen\nbekervoetbal\nbekervormig\nbekerwedstrijd\nbekerwinnaar\nbekerwinst\nbekerzege\nbekeurde\nbekeuren\nbekeuring\nbekijk\nbekijken\nbekijven\nbekist\nbekisten\nbekisting\nbekken\nbekkenbodem\nbekkenbreuk\nbekkeneel\nbekkenfractuur\nbekkeninstabiliteit\nbekkenist\nbekkenonderzoek\nbekkenslag\nbekkenslager\nbekkentrekker\nbeklaagde\nbeklaagdenbank\nbeklad\nbekladden\nbekladder\nbekladding\nbeklag\nbeklagcommissie\nbeklagen\nbeklagenswaard\nbeklagenswaardig\nbeklagrecht\nbeklant\nbeklappen\nbeklapper\nbeklauteren\nbekleden\nbekleder\nbekleding\nbekledingsmateriaal\nbekledingsmuur\nbekledingspaneel\nbekledingssteen\nbekledingsstof\nbekledingstoffen\nbekleed\nbekleedsel\nbeklemd\nbeklemdheid\nbeklemmen\nbeklemmend\nbeklemming\nbeklemrecht\nbeklemtonen\nbeklemtoning\nbeklemtoond\nbeklijven\nbeklimmen\nbeklimming\nbeklinken\nbeklonken\nbekloppen\nbeknabbelen\nbekneld\nbeknellen\nbeknelling\nbeknibbelen\nbeknibbeling\nbeknopt\nbeknoptheid\nbeknorren\nbeknotten\nbeknotting\nbekocht\nbekoelen\nbekoeling\nbekogelen\nbekokstoven\nbekomen\nbekommerd\nbekommerdheid\nbekommeren\nbekommering\nbekommernis\nbekomst\nbekonkelen\nbekoorder\nbekoorlijk\nbekoorlijkheid\nbekopen\nbekoren\nbekoring\nbekort\nbekorten\nbekorting\nbekostigen\nbekostiging\nbekostigingssysteem\nbekostigingssystematiek\nbekrabbelen\nbekrabben\nbekrachtigen\nbekrachtiging\nbekrammen\nbekramming\nbekransen\nbekrassen\nbekreunen\nbekrimpen\nbekrimping\nbekritiseren\nbekrompen\nbekrompenheid\nbekronen\nbekroning\nbekroond\nbekroonde\nbekruipen\nbekruisen\nbekruist\nbekvechten\nbekvechter\nbekwaam\nbekwaamheid\nbekwaamheidsdiploma\nbekwamen\nbekwijlen\nbel\nbel-etage\nbelaagster\nbelabberd\nbelachelijk\nbelachelijkheid\nbeladen\nbeladenheid\nbelader\nbelading\nbeladingsgraad\nbelagen\nbelager\nbelaging\nbelanden\nbelang\nbelangeloos\nbelangeloosheid\nbelangen\nbelangenafweging\nbelangenbehartiger\nbelangenbehartiging\nbelangenbehartigingsorganisatie\nbelangenbehartigster\nbelangenconflict\nbelangengemeenschap\nbelangengroep\nbelangengroepering\nbelangenorganisatie\nbelangenpartij\nbelangensfeer\nbelangenstrijd\nbelangentegenstelling\nbelangenverdediging\nbelangenvereniging\nbelangenvermenging\nbelangenverstrengeling\nbelangenvertegenwoordiger\nbelanghebbend\nbelanghebbende\nbelangrijk\nbelangrijkers\nbelangrijkheid\nbelangstellen\nbelangstellend\nbelangstellende\nbelangstellenden\nbelangstelling\nbelangstellingsgebied\nbelangstellingsgebieden\nbelangstellingssfeer\nbelangwekkend\nbelast\nbelastbaar\nbelastbaarheid\nbelasten\nbelasteren\nbelastering\nbelasting\nbelastingaangifte\nbelastingaangifteformulier\nbelastingaanslag\nbelastingadministratie\nbelastingadvies\nbelastingadviesbureau\nbelastingadvieskantoor\nbelastingadvieswerk\nbelastingadvisering\nbelastingadviseur\nbelastingafdracht\nbelastingaftrek\nbelastingakkoord\nbelastingambtenaar\nbelastingbasis\nbelastingbedrag\nbelastingbeleid\nbelastingbesparing\nbelastingbetaler\nbelastingbetaling\nbelastingbiljet\nbelastingbrief\nbelastingcapaciteit\nbelastingclaim\nbelastingconcurrentie\nbelastingconsulent\nbelastingcontrole\nbelastingcontroleur\nbelastingcoördinatie\nbelastingdebat\nbelastingderving\nbelastingdeskundige\nbelastingdienst\nbelastingdiskette\nbelastingdossier\nbelastingdruk\nbelastingfaciliteit\nbelastingfactuur\nbelastingformulier\nbelastingfraude\nbelastinggebied\nbelastinggegevens\nbelastinggeld\nbelastinggids\nbelastinggrondslag\nbelastingharmonisatie\nbelastingheffing\nbelastinghervorming\nbelastingherziening\nbelastinginkomsten\nbelastinginner\nbelastinginning\nbelastinginspecteur\nbelastinginspectie\nbelastingjaar\nbelastingkamer\nbelastingkantoor\nbelastingklimaat\nbelastingkorting\nbelastingkrediet\nbelastingkwestie\nbelastingmaatregel\nbelastingmeevaller\nbelastingmisdrijven\nbelastingmoraal\nbelastingniveau\nbelastingontduiker\nbelastingontduiking\nbelastingontvanger\nbelastingontwijking\nbelastingopbrengst\nbelastingoperatie\nbelastingopgave\nbelastingpakket\nbelastingparadijs\nbelastingpenning\nbelastingpercentage\nbelastingplan\nbelastingplicht\nbelastingplichtig\nbelastingplichtige\nbelastingpolitiek\nbelastingquote\nbelastingrecht\nbelastingrechter\nbelastingrechtspraak\nbelastingregel\nbelastingregeling\nbelastingregime\nbelastingschaal\nbelastingschijf\nbelastingschroef\nbelastingschuld\nbelastingschuldige\nbelastingsituatie\nbelastingspreekuur\nbelastingstelsel\nbelastingstoestand\nbelastingstructuur\nbelastingsysteem\nbelastingtarief\nbelastingtechnisch\nbelastingtegenvaller\nbelastingtelefoon\nbelastingteruggaaf\nbelastingteruggave\nbelastingtruc\nbelastingverdrag\nbelastingvereenvoudiging\nbelastingverhoging\nbelastingverlaging\nbelastingverlichting\nbelastingvermeerdering\nbelastingvermindering\nbelastingverzwaring\nbelastingvlucht\nbelastingvoet\nbelastingvoordeel\nbelastingvoorstel\nbelastingvriendelijk\nbelastingvrij\nbelastingvrijdom\nbelastingvrijstelling\nbelastingwet\nbelastingwetenschap\nbelastingwetgeving\nbelastingwinkel\nbelastingzaak\nbelazerd\nbelazeren\nbelbedrijf\nbelboei\nbelbus\nbelcanto\nbelcentrum\nbeleden\nbeledigd\nbeledigen\nbeledigend\nbelediger\nbelediging\nbeleed\nbeleefd\nbeleefdheid\nbeleefdheidsbezoek\nbeleefdheidsformule\nbeleefdheidsfrase\nbeleefdheidshalve\nbeleefdheidsvorm\nbeleenbaar\nbeleenbank\nbeleerd\nbeleg\nbelegen\nbelegeraar\nbelegeren\nbelegering\nbelegeringsgeschut\nbelegeringskunst\nbeleggen\nbelegger\nbeleggersblad\nbeleggersclub\nbeleggersgroep\nbeleggersmarkt\nbeleggerspubliek\nbeleggersvertrouwen\nbeleggerswereld\nbeleggerszijde\nbelegging\nbeleggingmaatschappij\nbeleggingsadvies\nbeleggingsadviseur\nbeleggingsanalist\nbeleggingsbeleid\nbeleggingsbeurs\nbeleggingsblad\nbeleggingscategorie\nbeleggingsclub\nbeleggingsconstructie\nbeleggingsexpert\nbeleggingsfonds\nbeleggingsgedrag\nbeleggingsgroep\nbeleggingshorizon\nbeleggingshypotheek\nbeleggingsinstelling\nbeleggingsinstrument\nbeleggingsjaar\nbeleggingskapitaal\nbeleggingsmaatschappij\nbeleggingsmarkt\nbeleggingsmix\nbeleggingsmogelijkheid\nbeleggingsobject\nbeleggingsonderzoek\nbeleggingsopbrengst\nbeleggingsopbrengsten\nbeleggingsoptiek\nbeleggingspand\nbeleggingspolitiek\nbeleggingsportefeuille\nbeleggingsproduct\nbeleggingsregels\nbeleggingsrekening\nbeleggingsrendement\nbeleggingsresultaat\nbeleggingsrisico\nbeleggingsspecialist\nbeleggingsstrategie\nbeleggingsvennootschap\nbeleggingsverzekering\nbeleggingsvorm\nbeleggingsvrijheid\nbeleggingswereld\nbeleggingswinst\nbelegsel\nbelegstuk\nbeleid\nbeleidsaangelegenheid\nbeleidsadvies\nbeleidsadvisering\nbeleidsadviseur\nbeleidsafspraak\nbeleidsafstemming\nbeleidsagenda\nbeleidsambtenaar\nbeleidsanalyse\nbeleidsaspect\nbeleidsbepalend\nbeleidsbepaler\nbeleidsbepaling\nbeleidsbeslissing\nbeleidsbrief\nbeleidscentrum\nbeleidscomité\nbeleidscommissie\nbeleidsconcurrentie\nbeleidsconsulent\nbeleidsconvenant\nbeleidscoördinatie\nbeleidscoördinator\nbeleidsdaad\nbeleidsdebat\nbeleidsdeel\nbeleidsdiscussie\nbeleidsdocument\nbeleidsdoel\nbeleidsdoelstelling\nbeleidsfout\nbeleidsfunctie\nbeleidsgebied\nbeleidsgebieden\nbeleidsgericht\nbeleidsgroep\nbeleidsgroepen\nbeleidsimplementatie\nbeleidsinformatie\nbeleidsinhoudelijk\nbeleidsinstantie\nbeleidsinstrument\nbeleidskader\nbeleidskeuze\nbeleidskwestie\nbeleidslijn\nbeleidsmaatregel\nbeleidsmaker\nbeleidsmatig\nbeleidsmedewerker\nbeleidsmedewerkster\nbeleidsmix\nbeleidsniveau\nbeleidsnota\nbeleidsnotitie\nbeleidsombuiging\nbeleidsonderdeel\nbeleidsondersteunend\nbeleidsonderzoek\nbeleidsontwikkeling\nbeleidsoptie\nbeleidsorgaan\nbeleidsovereenkomst\nbeleidsoverleg\nbeleidsoverweging\nbeleidspakket\nbeleidsparagraaf\nbeleidspartij\nbeleidsplan\nbeleidsplanning\nbeleidsprioriteit\nbeleidsproces\nbeleidsprogramma\nbeleidsraad\nbeleidsrapport\nbeleidsruimte\nbeleidsstandpunt\nbeleidsstelling\nbeleidsstrategie\nbeleidsstudie\nbeleidsstuk\nbeleidstaak\nbeleidstaken\nbeleidsteam\nbeleidsterrein\nbeleidsuitgangspunt\nbeleidsuitvoering\nbeleidsverandering\nbeleidsverklaring\nbeleidsvisie\nbeleidsvoering\nbeleidsvoorbereidend\nbeleidsvoorbereiding\nbeleidsvoornemen\nbeleidsvoornemens\nbeleidsvoorstel\nbeleidsvorming\nbeleidsvraag\nbeleidsvragen\nbeleidsvrijheid\nbeleidswetenschap\nbeleidswetenschappen\nbeleidswijziging\nbeleidszaak\nbeleidvol\nbelemmerd\nbelemmeren\nbelemmering\nbelenden\nbelendend\nbelending\nbelenen\nbelener\nbelening\nbeleningsfaciliteit\nbeleningsrente\nbeleren\nbelerend\nbelet\nbeletsel\nbeletselteken\nbeletten\nbelettering\nbeleven\nbelevenis\nbeleveren\nbeleving\nbelevingspatroon\nbelevingswaarde\nbelevingswereld\nbelezen\nbelezenheid\nbelezer\nbelezing\nbelfort\nbelg\nbelgedrag\nbelgicisme\nbelgicist\nbelgicistisch\nbelgitude\nbelhamel\nbelhuis\nbelichaamd\nbelichamen\nbelichaming\nbelichten\nbelichter\nbelichting\nbelichtingscompensatie\nbelichtingsmeter\nbelichtingstijd\nbeliegen\nbelieven\nbelijden\nbelijdenis\nbelijdenisgeschenk\nbelijder\nbelijdster\nbelijmen\nbelijnen\nbelijning\nbelikken\nbelkaart\nbelknop\nbelkoord\nbelkosten\nbelladonna\nbelle\nbelle époque\nbellefleur\nbellen\nbellenbaan\nbellenblazen\nbellengeheugen\nbellentableau\nbeller\nbelletje\nbelletjeswijn\nbellettrie\nbellettrist\nbellettristisch\nbeloeren\nbelofte\nbeloftevol\nbelommerd\nbelommeren\nbelommering\nbelonen\nbeloner\nbeloning\nbeloningsbeleid\nbeloningsniveau\nbeloningsstelsel\nbeloningsstructuur\nbeloningssysteem\nbeloningsverhouding\nbeloningsverschil\nbeloningsvorm\nbeloodsing\nbeloofd\nbeloop\nbeloopbaar\nbelopen\nbeloven\nbelronde\nbelster\nbelt\nbeltaxi\nbeltegoed\nbeltoon\nbeluchten\nbeluchting\nbeluik\nbeluisteren\nbeluistering\nbelust\nbelustheid\nbelvedère\nbelverkeer\nbelvorming\nbelwaarde\nbelwinkel\nbemachtigen\nbemachtiging\nbemalen\nbemaling\nbemand\nbemannen\nbemanning\nbemanningslid\nbemanningsproblematiek\nbemantelen\nbematten\nbemensen\nbemerken\nbemerking\nbemest\nbemesten\nbemesting\nbemestingsleer\nbemeten\nbemeubelen\nbemiddelaar\nbemiddelaarsrol\nbemiddelaarster\nbemiddelbaar\nbemiddeld\nbemiddeldheid\nbemiddelen\nbemiddeling\nbemiddelingsbedrijf\nbemiddelingsbureau\nbemiddelingscommissie\nbemiddelingsdienst\nbemiddelingsinstantie\nbemiddelingsinstrument\nbemiddelingskosten\nbemiddelingsorganisatie\nbemiddelingspoging\nbemiddelingsprocedure\nbemiddelingsrol\nbemiddelingstraject\nbemiddelingsvoorstel\nbemind\nbeminde\nbeminnaar\nbeminnelijk\nbeminnelijkheid\nbeminnen\nbeminnenswaard\nbeminnenswaardig\nbeminnenswaardigheid\nbemodderd\nbemodderen\nbemoederen\nbemoedigen\nbemoedigend\nbemoediging\nbemoeial\nbemoeien\nbemoeienis\nbemoeiing\nbemoeilijken\nbemoeilijking\nbemoeiziek\nbemoeizorg\nbemoeizucht\nbemoeizuchtig\nbemonsterd\nbemonsteren\nbemonstering\nbemonsteringsschema\nbemonsteringstheorema\nbemorsen\nbemost\nbemuren\nbemuring\nben\nbenaamd\nbenadeelde\nbenadelen\nbenadeling\nbenaderbaar\nbenaderde\nbenaderen\nbenadering\nbenaderingsformule\nbenaderingsfout\nbenaderingsmethode\nbenaderingsproces\nbenaderingstechniek\nbenaderingstheorie\nbenaderingswijze\nbenadrukken\nbenadrukking\nbenagelen\nbenaming\nbenard\nbenardheid\nbenauwd\nbenauwdheid\nbenauwelijk\nbenauwen\nbenauwend\nbenauwenis\nbenauwing\nbenchmark\nbenchmarken\nbenchmarking\nbende\nbendehoofd\nbendeleider\nbendelid\nbendeoorlog\nbendestrijd\nbendevorming\nbendewezen\nbeneden\nbenedenbewoner\nbenedenburen\nbenedenbuur\nbenedenbuurman\nbenedendeks\nbenedendijks\nbenedeneind\nbenedeneinde\nbenedengrens\nbenedenhoek\nbenedenhuis\nbenedeningang\nbenedenkamer\nbenedenkant\nbenedenkerk\nbenedenloop\nbenedenmaats\nbenedenrivier\nbenedenruimte\nbenedenst\nbenedenstad\nbenedenste\nbenedenstroom\nbenedenstrooms\nbenedenverdieping\nbenedenwaarts\nbenedenwinds\nbenedenwoning\nbenedenzaal\nbenedictie\nbenedictijn\nbenedictijnenabdij\nbenedictijnenklooster\nbenedictijnenorde\nbenedictijner\nbenedictijns\nbenedictine\nbenedictines\nbenefice\nbeneficiair\nbeneficiant\nbeneficie\nbeneficium\nbenefiet\nbenefietavond\nbenefietconcert\nbenefietvoorstelling\nbenefietwedstrijd\nbenefit of the doubt\nbenemen\nbenen\nbenenwagen\nbenenwerk\nbenepen\nbenepenheid\nbeneveld\nbenevelen\nbeneveling\nbenevens\nbeng\nbengel\nbengelen\nbenieuwd\nbenieuwen\nbenig\nbenigne\nbenijdbaar\nbenijden\nbenijdenswaard\nbenijdenswaardig\nbenijder\nbenjamin\nbenodigd\nbenodigdheden\nbenoembaar\nbenoembaarheid\nbenoemd\nbenoemde\nbenoemen\nbenoeming\nbenoemingenbeleid\nbenoemingsbeleid\nbenoemingsbesluit\nbenoemingsbrief\nbenoemingscommissie\nbenoemingsprocedure\nbenoemingsrecht\nbenoemingstermijn\nbenoemingsvoorstel\nbenoorden\nbent\nbentazon\nbentgenoot\nbentgras\nbentoniet\nbenul\nbenutten\nbenutting\nbenuttingsgraad\nbenzedrine\nbenzeen\nbenzine\nbenzine-injectie\nbenzineaccijns\nbenzineauto\nbenzinebom\nbenzinebranche\nbenzinedamp\nbenzinedop\nbenzinegeur\nbenzinehouder\nbenzinekartel\nbenzinekosten\nbenzineleiding\nbenzinelucht\nbenzinemaatschappij\nbenzinemarkt\nbenzinemerk\nbenzinemeter\nbenzinemotor\nbenzinepomp\nbenzinepomphouder\nbenzineprijs\nbenzinerekening\nbenzinereservoir\nbenzineschaarste\nbenzinestation\nbenzinetank\nbenzineverbruik\nbenzineverkoop\nbenzineverkooppunt\nbenzineversie\nbenzol\nbenzoë\nbenzoëzuur\nbeo\nbeoefenaar\nbeoefenaarster\nbeoefenen\nbeoefening\nbeogen\nbeoliën\nbeoogd\nbeoordelaar\nbeoordelen\nbeoordeling\nbeoordelingscijfer\nbeoordelingscommissie\nbeoordelingscriterium\nbeoordelingsexemplaar\nbeoordelingsfactor\nbeoordelingsfout\nbeoordelingsgesprek\nbeoordelingslijst\nbeoordelingslijsten\nbeoordelingsprocedure\nbeoordelingsreglement\nbeoordelingsschaal\nbeoordelingsstaat\nbeoordelingssysteem\nbeoordelingsvermogen\nbeoorlogen\nbeoosten\nbepaalbaar\nbepaald\nbepaaldelijk\nbepaaldheid\nbepakken\nbepakking\nbepakt\nbepalen\nbepalend\nbepaling\nbepalingaankondigend\nbepantseren\nbepantsering\nbepareld\nbeparelen\nbepeinzen\nbepekken\nbeperken\nbeperkend\nbeperking\nbeperkt\nbeperktheid\nbeplakken\nbeplanking\nbeplanten\nbeplanting\nbeplantingswerken\nbeplating\nbepleisteren\nbepleistering\nbepleiten\nbepleiter\nbeploegen\nbepoederen\nbepoldering\nbepotelen\nbepraten\nbepreken\nbeprijzing\nbeproefd\nbeproeven\nbeproeving\nbeproevingsprotocol\nbeproevingsschema\nbepruikt\nberaad\nberaadsgroep\nberaadslagen\nberaadslaging\nberaadslagingen\nberaamd\nberaden\nberadenheid\nberamen\nberaming\nberapen\nberber\nberberaap\nberberine\nberberis\nberbertapijt\nberceau\nberceuse\nberd\nberde\nberderen\nberecht\nberechten\nberechtiging\nberechting\nberedderen\nberedderig\nbereddering\nberedderingskosten\nbereden\nberedeneerd\nberedeneren\nberedenering\nberegenen\nberegening\nberegeningsinstallatie\nberegeningsverbod\nberegoed\nbereid\nbereiden\nbereider\nbereidheid\nbereiding\nbereidingstijd\nbereidingswijze\nbereids\nbereidvaardig\nbereidvaardigheid\nbereidverklaring\nbereidwillig\nbereidwilligheid\nbereik\nbereikbaar\nbereikbaarheid\nbereikbaarheidsgids\nbereikbaarheidsgidsen\nbereikbaarheidsoffensief\nbereikbaarheidsplan\nbereikbaarheidsprobleem\nbereikbaarheidstoeslag\nbereiken\nbereiking\nbereisbaar\nbereisd\nbereizen\nberekenbaar\nberekenbaarheid\nberekend\nberekenen\nberekenend\nberekening\nberekeningsbasis\nberekeningsgrondslag\nberekeningsmethode\nberekeningsproces\nberekeningsuitkomst\nberekeningswijze\nberen\nberenburg\nberenjacht\nberenklauw\nberenkuil\nberenmuts\nberennen\nberenvel\nberesterk\nberetrots\nberg\nbergachtig\nbergaf\nbergafwaarts\nbergahorn\nbergamot\nbergamotolie\nbergartillerie\nbergbeek\nbergbeklimmen\nbergbeklimmer\nbergbeklimming\nbergbeklimster\nbergbewoner\nbergbezinkbassin\nbergblauw\nbergdorp\nbergeend\nbergen\nbergengte\nberger\nbergerac\nbergetappe\nbergflank\nbergformatie\nberggebied\nberggeest\nberggeit\nberggeld\nberggeschut\nberggezicht\nberggids\nberggroen\nberghelling\nberghok\nberghout\nberghoutsgang\nberghut\nbergijs\nberging\nbergingsbedrijf\nbergingscapaciteit\nbergingscontract\nbergingskosten\nbergingsmaatschappij\nbergingsoperatie\nbergingsploeg\nbergingsschip\nbergingsvaartuig\nbergingswerk\nbergingswerkzaamheden\nbergjager\nbergkam\nbergkap\nbergkast\nbergketen\nbergklassement\nbergklimaat\nbergkloof\nbergkoning\nbergkristal\nbergland\nberglandschap\nbergloon\nberglucht\nbergmassief\nbergmeer\nbergmeubel\nbergnimf\nbergop\nbergopwaarts\nbergpad\nbergpas\nbergplaats\nbergrit\nbergrivier\nbergrug\nbergruimte\nbergschoen\nbergschuur\nbergspoor\nbergspoorweg\nbergsport\nbergstaat\nbergstation\nbergstok\nbergstreek\nbergstroom\nbergtijdrit\nbergtocht\nbergtop\nbergtrui\nbergumermeerklasse\nbergvakjes\nbergvolk\nbergwand\nbergwandeling\nbergwater\nbergweg\nbergwei\nbergweide\nbergwind\nbergziekte\nbergzout\nbergère\nberiberi\nbericht\nberichten\nberichtencentrum\nberichtendienst\nberichtenservice\nberichtenstroom\nberichtenverkeer\nberichtgeefster\nberichtgever\nberichtgeving\nberijdbaar\nberijden\nberijder\nberijdster\nberijmen\nberijmer\nberijming\nberijpen\nberijpt\nberil\nberin\nberingd\nberingen\nberini\nberispelijk\nberispen\nberisping\nberk\nberken\nberkenbast\nberkenblad\nberkenboom\nberkenbos\nberkenhout\nberkenloof\nberkenmeier\nberkenstam\nberkenwater\nberkenwijn\nberkenzwam\nberkoen\nberlinerbol\nberlitzmethode\nberm\nbermbegroeiing\nbermen\nbermflora\nbermlamp\nbermprostitutie\nbermsloot\nbermtoerisme\nbermtoerist\nbermuda\nbernardijn\nberoemd\nberoemdheid\nberoemen\nberoep\nberoepbaar\nberoepen\nberoepencode\nberoepengids\nberoepenveld\nberoepenvoorlichting\nberoeper\nberoeping\nberoeps\nberoepsaansprakelijkheid\nberoepsacteur\nberoepsactiviteit\nberoepsarbeid\nberoepsbeeld\nberoepsbekwaamheid\nberoepsbeoefenaar\nberoepsbevolking\nberoepsbezigheid\nberoepsblind\nberoepsblindheid\nberoepsbokser\nberoepsbrief\nberoepscarrière\nberoepscategorie\nberoepschauffeur\nberoepschrift\nberoepsclassificatie\nberoepscode\nberoepscollege\nberoepscommissie\nberoepscrimineel\nberoepsdanser\nberoepsdanseres\nberoepsdeformatie\nberoepsdiplomaat\nberoepseed\nberoepseer\nberoepsernst\nberoepservaring\nberoepsethiek\nberoepsfederatie\nberoepsfout\nberoepsgebonden\nberoepsgebruik\nberoepsgeheim\nberoepsgericht\nberoepsgoederenvervoer\nberoepsgroep\nberoepsgrond\nberoepshalve\nberoepshof\nberoepshouding\nberoepsinbreker\nberoepsinkomen\nberoepsinkomsten\nberoepsinstantie\nberoepsjaar\nberoepsjuristen\nberoepskamer\nberoepskeuze\nberoepskeuzetest\nberoepskeuzevoorlichting\nberoepsklasse\nberoepskleding\nberoepskost\nberoepskosten\nberoepskostenvergoeding\nberoepskracht\nberoepskwaal\nberoepskwalificatie\nberoepsleger\nberoepsleven\nberoepslezer\nberoepsloopbaan\nberoepsmatig\nberoepsmilitair\nberoepsmisdadiger\nberoepsmisvorming\nberoepsmogelijkheid\nberoepsmoordenaar\nberoepsmuzikant\nberoepsniveau\nberoepsofficier\nberoepsonderwijs\nberoepsopleiding\nberoepsopvatting\nberoepsorganisatie\nberoepsoriëntatie\nberoepspersoneel\nberoepsperspectief\nberoepsplicht\nberoepsploeg\nberoepspoliticus\nberoepspraktijk\nberoepsprocedure\nberoepsprofiel\nberoepsraad\nberoepsrecht\nberoepsrechter\nberoepsregel\nberoepsrenner\nberoepsrijder\nberoepsrisico\nberoepsschool\nberoepsschrift\nberoepssector\nberoepssoldaat\nberoepsspeler\nberoepssport\nberoepssporter\nberoepsstructuur\nberoepstaal\nberoepstermijn\nberoepstrots\nberoepsuitoefening\nberoepsvaart\nberoepsvaartuig\nberoepsverbod\nberoepsvereniging\nberoepsverhuurder\nberoepsvervoer\nberoepsvisser\nberoepsvisserij\nberoepsvoetbal\nberoepsvoetballer\nberoepsvoorbereidend\nberoepsvoorlichting\nberoepsvorming\nberoepswereld\nberoepswerkeloze\nberoepswerkloze\nberoepswerkzaamheid\nberoepswet\nberoepswielrenner\nberoepszaak\nberoepszanger\nberoepszangeres\nberoepsziekte\nberoerd\nberoerdheid\nberoerdigheid\nberoeren\nberoering\nberoerling\nberoerte\nberoet\nberoken\nberokken\nberokkenen\nberooid\nberooidheid\nberookt\nberouw\nberouwen\nberouwvol\nberoven\nberoving\nberrie\nberst\nbersten\nberstens\nberstensvol\nberucht\nberuchtheid\nberuste\nberusten\nberusting\nberyllium\nbes\nbeschaafd\nbeschaafdheid\nbeschaamd\nbeschaamdheid\nbeschadigd\nbeschadigen\nbeschadiging\nbeschaduwen\nbeschamen\nbeschamend\nbeschaming\nbeschaven\nbeschaving\nbeschavingsgeschiedenis\nbeschavingsideaal\nbeschavingsniveau\nbeschavingsoffensief\nbeschavingspeil\nbeschavingsproces\nbeschavingsvorm\nbeschavingsvormen\nbeschavingsziekte\nbescheid\nbescheiden\nbescheidenheid\nbescheidenlijk\nbeschenken\nbeschermd\nbeschermeling\nbeschermelinge\nbeschermen\nbeschermengel\nbeschermer\nbeschermgeest\nbeschermgod\nbeschermgodin\nbeschermheer\nbeschermheerschap\nbeschermheilige\nbeschermhoes\nbescherming\nbeschermingsaandeel\nbeschermingsconstructie\nbeschermingsduur\nbeschermingsfactor\nbeschermingsgebied\nbeschermingsgraad\nbeschermingsklasse\nbeschermingslaag\nbeschermingsmaatregel\nbeschermingsmacht\nbeschermingsmechanisme\nbeschermingsniveau\nbeschermingsplan\nbeschermingsplicht\nbeschermingsprogramma\nbeschermingssysteem\nbeschermingstermijn\nbeschermingsvoorziening\nbeschermingswal\nbeschermingszone\nbeschermkap\nbeschermlaag\nbeschermster\nbeschermvrouw\nbeschermvrouwe\nbeschermwaardig\nbeschermwaardigheid\nbescheten\nbescheuren\nbescheurkalender\nbeschieten\nbeschieting\nbeschijnen\nbeschijten\nbeschik\nbeschikbaar\nbeschikbaarheid\nbeschikbaarstelling\nbeschikken\nbeschikker\nbeschikking\nbeschikkingsbevoegdheid\nbeschikkingsmacht\nbeschikkingsrecht\nbeschikt\nbeschilderen\nbeschildering\nbeschimmeld\nbeschimmelen\nbeschimpen\nbeschimping\nbeschoeien\nbeschoeiing\nbeschonken\nbeschonkenheid\nbeschoren\nbeschot\nbeschouwelijk\nbeschouwelijkheid\nbeschouwen\nbeschouwend\nbeschouwer\nbeschouwing\nbeschouwingswijze\nbeschreeuwen\nbeschreid\nbeschreien\nbeschrevene\nbeschrijf\nbeschrijfbaar\nbeschrijven\nbeschrijvend\nbeschrijver\nbeschrijving\nbeschrijvingsbiljet\nbeschrijvingsbrief\nbeschrijvingsmodel\nbeschrijvingsvragen\nbeschroomd\nbeschroomdheid\nbeschuit\nbeschuitbakker\nbeschuitbol\nbeschuitbus\nbeschuittrommel\nbeschuldigde\nbeschuldigen\nbeschuldiger\nbeschuldiging\nbeschuldigster\nbeschut\nbeschutten\nbeschutting\nbesef\nbeseffen\nbeseft\nbesheester\nbeshulst\nbesje\nbesjoemelen\nbeslaan\nbeslag\nbeslagen\nbeslagkom\nbeslaglegger\nbeslaglegging\nbeslagmaker\nbeslagname\nbeslagwerk\nbeslapen\nbeslechten\nbeslechting\nbeslijkt\nbeslikt\nbesliskunde\nbeslismoment\nbeslisruimte\nbeslissen\nbeslissend\nbeslisser\nbeslissing\nbeslissingsbevoegde\nbeslissingsbevoegdheid\nbeslissingscentrum\nbeslissingscriterium\nbeslissingsduel\nbeslissingsfase\nbeslissingsgebied\nbeslissingsgebieden\nbeslissingsgedrag\nbeslissingsmacht\nbeslissingsmatrix\nbeslissingsmodel\nbeslissingsmoment\nbeslissingsniveau\nbeslissingsprobleem\nbeslissingsprocedures\nbeslissingsproces\nbeslissingsprogramma\nbeslissingsrecht\nbeslissingsregel\nbeslissingsruimte\nbeslissingsspel\nbeslissingstheorie\nbeslissingsvrijheid\nbeslissingswedstrijd\nbeslist\nbeslistheid\nbeslommerd\nbeslommering\nbeslommeringen\nbesloot\nbesloten\nbeslotenheid\nbesluipen\nbesluit\nbesluiteloos\nbesluiteloosheid\nbesluiten\nbesluitenlijst\nbesluitenlijsten\nbesluitproces\nbesluitvaardig\nbesluitvaardigheid\nbesluitvormend\nbesluitvormer\nbesluitvorming\nbesluitvormingsmodel\nbesluitvormingspatroon\nbesluitvormingsproblematiek\nbesluitvormingsprocedure\nbesluitvormingsproces\nbesluitvormingsstructuur\nbesmeren\nbesmet\nbesmettelijk\nbesmettelijkheid\nbesmetten\nbesmetting\nbesmettingsbron\nbesmettingsgevaar\nbesmettingsgeval\nbesmettingsgraad\nbesmettingshaard\nbesmettingskans\nbesmettingspercentage\nbesmettingsrisico\nbesmetverklaring\nbesmeurd\nbesmeuren\nbesmuikt\nbesnaard\nbesnaren\nbesneden\nbesneeuwd\nbesneeuwen\nbesnijden\nbesnijdenis\nbesnijder\nbesnoeien\nbesnoeiing\nbesnord\nbesnuffelen\nbesodemieterd\nbesodemieteren\nbesogne\nbesognes\nbesommen\nbesomming\nbespannen\nbespanning\nbesparen\nbesparing\nbesparingsbeleid\nbesparingsmaatregel\nbesparingspercentage\nbesparingsplan\nbesparingsplannen\nbesparingspotentieel\nbesparingsronde\nbespatten\nbespeelbaar\nbespelen\nbespeler\nbespeling\nbespeurbaar\nbespeuren\nbespieden\nbespieder\nbespieding\nbespiegelen\nbespiegeling\nbespijkeren\nbespikkelen\nbespioneren\nbespoedigen\nbespoediging\nbespogen\nbespoten\nbespottelijk\nbespotten\nbespotter\nbespotting\nbespraakt\nbespraaktheid\nbespreekbaar\nbespreekbaarheid\nbespreekbureau\nbesprek\nbespreken\nbespreker\nbespreking\nbesprekingsverslag\nbesprekingsverslagen\nbesprenkelen\nbespringen\nbesproeid\nbesproeien\nbesproeier\nbesproeiing\nbesproeiingswagen\nbesprokene\nbespugen\nbespuiten\nbespuiting\nbespuwen\nbessemerproces\nbessen\nbessenboom\nbessengelei\nbessenjenever\nbessensap\nbessensaus\nbessenstruik\nbessentros\nbessenvla\nbessenwijn\nbest\nbestaan\nbestaanbaar\nbestaanbaarheid\nbestaand\nbestaansbasis\nbestaansgrond\nbestaanskosten\nbestaansmiddel\nbestaansminimum\nbestaansminimumtrekkers\nbestaansmogelijkheid\nbestaansniveau\nbestaansonzekerheid\nbestaansrecht\nbestaansreden\nbestaansvoorwaarde\nbestaansvorm\nbestaanswijze\nbestaanszekerheid\nbestaanszin\nbestand\nbestanddeel\nbestandenlijst\nbestandheid\nbestandsakkoord\nbestandsbeheer\nbestandscreatie\nbestandsformaat\nbestandsgrootte\nbestandshuishouding\nbestandslijn\nbestandsmanipulatie\nbestandsnaam\nbestandsopbouw\nbestandsoperatie\nbestandsorganisatie\nbestandsoverdracht\nbestandsovereenkomst\nbestandsoverzicht\nbestandsschending\nbestandsselectie\nbestandsspecificatie\nbestandsstructuur\nbestandsvervuiling\nbestbetaald\nbeste\nbesteden\nbesteding\nbestedingsbeleid\nbestedingsbeperking\nbestedingsgedrag\nbestedingsgroei\nbestedingsimpuls\nbestedingsmogelijkheid\nbestedingsniveau\nbestedingsnota\nbestedingspakket\nbestedingspatroon\nbestedingsplan\nbestedingspolitiek\nbestedingsruimte\nbestedingsvoorstel\nbestedingsvrijheid\nbesteedbaar\nbesteedster\nbestek\nbestekamer\nbestekartikel\nbestekbak\nbesteken\nbestekhout\nbestekomschrijving\nbestektekening\nbestekvoorschrift\nbestekwijziging\nbestel\nbesteladministratie\nbesteladres\nbesteladvies\nbestelauto\nbestelbedrag\nbestelbiljet\nbestelboek\nbestelbon\nbestelbrief\nbestelbus\nbesteldag\nbesteldagen\nbesteldienst\nbesteleenheid\nbestelen\nbestelfiets\nbestelformulier\nbestelfrequentie\nbestelgoed\nbestelgoederen\nbestelhoeveelheid\nbestelhuis\nbestelkaart\nbestelkantoor\nbestellen\nbesteller\nbestellijst\nbestellijsten\nbestelling\nbestellingenbestand\nbestellingenboek\nbestelloon\nbestelniveau\nbestelnummer\nbestelorder\nbestelpatroon\nbestelperiode\nbestelprocedure\nbestelpunt\nbestelregel\nbestelsignalering\nbestelstatus\nbestelsysteem\nbesteltaak\nbesteltekst\nbesteltijd\nbestelwagen\nbestemd\nbestemmeling\nbestemmelinge\nbestemmen\nbestemming\nbestemmingplan\nbestemmingsadres\nbestemmingsheffing\nbestemmingsplan\nbestemmingsplanprocedure\nbestemmingsplanwijziging\nbestemmingsreserve\nbestemmingsverkeer\nbestemmingswijziging\nbestemoer\nbestempelen\nbestempeling\nbestendig\nbestendigen\nbestendigheid\nbestendiging\nbestens\nbesterven\nbestevaar\nbestiaal\nbestialiteit\nbestiarium\nbestierder\nbestieren\nbestiering\nbestijgen\nbestijging\nbestippelen\nbestoft\nbestoken\nbestolene\nbestormen\nbestorming\nbestorven\nbestoven\nbestraat\nbestraffen\nbestraffing\nbestralen\nbestraling\nbestralingscentra\nbestralingsinstituut\nbestraten\nbestrating\nbestrijden\nbestrijder\nbestrijding\nbestrijdingsmethode\nbestrijdingsmiddel\nbestrijdingsmiddelengebruik\nbestrijdingsmiddelenwet\nbestrijdingsplan\nbestrijdingsprogramma\nbestrijdingswijze\nbestrijdster\nbestrijken\nbestrooien\nbestrooisel\nbestseller\nbestsellerauteur\nbestsellerlijst\nbestsellerschrijver\nbestsellerslijst\nbestudeerd\nbestuderen\nbestudering\nbestuiven\nbestuiving\nbesturen\nbesturenbond\nbesturenfusie\nbesturenorganisatie\nbesturenraad\nbesturing\nbesturingsapparatuur\nbesturingscomputer\nbesturingsgedeelte\nbesturingsinstrument\nbesturingsmechanisme\nbesturingsorgaan\nbesturingsprogramma\nbesturingssoftware\nbesturingsstructuur\nbesturingssysteem\nbesturingsteken\nbesturingstekens\nbesturingstheorie\nbesturingstoetsen\nbesturingsvraagstuk\nbestuur\nbestuurbaar\nbestuurbaarheid\nbestuurder\nbestuurdersaansprakelijkheid\nbestuurderscabine\nbestuurderspartij\nbestuurdersstoel\nbestuurlijk\nbestuurlijk-technisch\nbestuursadviseur\nbestuursakkoord\nbestuursambtenaar\nbestuursapparaat\nbestuursassistent\nbestuursbegeleiding\nbestuursbeleid\nbestuursbesluit\nbestuursbevoegdheid\nbestuurscentrum\nbestuurscollege\nbestuurscomité\nbestuurscommissie\nbestuurscrisis\nbestuurscultuur\nbestuursdecreet\nbestuursdienst\nbestuursdwang\nbestuurselite\nbestuurservaring\nbestuursfunctie\nbestuurshervorming\nbestuursinstellingen\nbestuurskamer\nbestuurskosten\nbestuurskracht\nbestuurskunde\nbestuurskundig\nbestuurskundige\nbestuurslaag\nbestuurslichaam\nbestuurslid\nbestuurslidmaatschap\nbestuursmaatregel\nbestuursmacht\nbestuursmandaat\nbestuursmededeling\nbestuursmodel\nbestuursmutatie\nbestuursniveau\nbestuursorgaan\nbestuursorganisatie\nbestuursoverdracht\nbestuursovereenkomst\nbestuursperiode\nbestuurspraktijk\nbestuursraad\nbestuursrecht\nbestuursrechtelijk\nbestuursrechter\nbestuursrechtspraak\nbestuurssamenstelling\nbestuursschool\nbestuurssecretaris\nbestuurssociologie\nbestuursstijl\nbestuursstructuur\nbestuursstuk\nbestuurssysteem\nbestuurstaak\nbestuurstaal\nbestuurstafel\nbestuurster\nbestuurstop\nbestuursuitbreiding\nbestuursuitje\nbestuursverantwoordelijkheid\nbestuursvergadering\nbestuursverkiezing\nbestuursverslag\nbestuursvoorstel\nbestuursvoorzitter\nbestuursvorm\nbestuurswerk\nbestuurswetenschap\nbestuurswisseling\nbestuurszaak\nbestuurszetel\nbestverkocht\nbestverkopend\nbestwil\nbesuikerd\nbesuikeren\nbetaal-tv\nbetaalautomaat\nbetaalbaar\nbetaalbaarheid\nbetaalbaarstelling\nbetaalbewijs\nbetaalcheque\nbetaald\nbetaaldag\nbetaaldatum\nbetaalfunctie\nbetaalgedrag\nbetaalgemak\nbetaalkaart\nbetaalkanaal\nbetaalkantoor\nbetaalmeester\nbetaalmethode\nbetaalmiddel\nbetaalpas\nbetaalprobleem\nbetaalrekening\nbetaalstaat\nbetaalstrook\nbetaalsysteem\nbetaaltelevisie\nbetaaltelevisiezender\nbetaalterminal\nbetaalverkeer\nbetaalwijze\nbetaalzender\nbetalen\nbetaler\nbetaling\nbetalingsachterstand\nbetalingsbalans\nbetalingsbalanshulp\nbetalingsbalansprobleem\nbetalingsbalanssteun\nbetalingsbalanstekort\nbetalingsbevel\nbetalingsbevelen\nbetalingsbewijs\nbetalingscapaciteit\nbetalingscircuit\nbetalingsconditie\nbetalingsdiscipline\nbetalingsgedrag\nbetalingsherinnering\nbetalingskorting\nbetalingsmandaat\nbetalingsmoraal\nbetalingsopdracht\nbetalingsperiode\nbetalingsplicht\nbetalingsproblemen\nbetalingsprocedure\nbetalingsregeling\nbetalingsschema\nbetalingssysteem\nbetalingstermijn\nbetalingsuitstel\nbetalingsverkeer\nbetalingsverplichting\nbetalingsverschil\nbetalingsvoorstel\nbetalingsvoorwaarde\nbetalingsvoorwaarden\nbetalingsvorm\nbetalingswijze\nbetamelijk\nbetamelijkheid\nbetamen\nbetasten\nbetasting\nbete\nbetegelen\nbetegeling\nbetekenen\nbetekening\nbetekenis\nbetekenisaspect\nbetekenisgeving\nbetekeniskern\nbetekenisleer\nbetekenisloos\nbetekenisloosheid\nbetekenisniveau\nbetekenisomschrijving\nbetekenisontwikkeling\nbetekenisrelatie\nbetekenisstructuur\nbetekenistoepassing\nbetekenisverandering\nbetekenisverhouding\nbetekenisverschil\nbetekenisvol\nbetekeniswijziging\nbetel\nbetelen\nbeten\nbeter\nbeteren\nbeterhand\nbetering\nbeterschap\nbeterweter\nbeteugelen\nbeteugeling\nbeteuterd\nbeteuterdheid\nbetichte\nbetichten\nbetichting\nbetijen\nbetijt\nbetimmeren\nbetimmering\nbetiteld\nbetitelen\nbetiteling\nbetoelagen\nbetoelaging\nbetoeterd\nbetogen\nbetoger\nbetoging\nbetomen\nbeton\nbetonbehandeling\nbetonblok\nbetonbouw\nbetonconstructie\nbetonelement\nbetonen\nbetonfabriek\nbetonfabrieken\nbetonijzer\nbetonijzeren\nbetonijzervlechter\nbetonindustrie\nbetonkist\nbetonkolom\nbetonkolos\nbetonkwaliteit\nbetonlaag\nbetonmolen\nbetonmuur\nbetonnen\nbetonning\nbetonningsvaartuig\nbetonpalen\nbetonplaat\nbetonrenovatie\nbetonreparatie\nbetonreparatiebedrijf\nbetonrot\nbetonschaar\nbetonskelet\nbetonstaal\nbetonsteen\nbetonsterkte\nbetonstructuur\nbetontegel\nbetonvlechter\nbetonvloer\nbetonvloeren\nbetonweg\nbetonwerk\nbetonwerker\nbetoog\nbetoogkracht\nbetoogschrift\nbetoogtrant\nbetoon\nbetoudovergrootmoeder\nbetoudovergrootouders\nbetoudovergrootvader\nbetoverd\nbetoveren\nbetoverend\nbetovergrootmoeder\nbetovergrootouder\nbetovergrootouders\nbetovergrootvader\nbetovering\nbetraand\nbetrachten\nbetrachting\nbetrappen\nbetrapping\nbetreden\nbetreding\nbetreffen\nbetreffend\nbetreffende\nbetrek\nbetrekkelijk\nbetrekkelijkheid\nbetrekken\nbetrekking\nbetreuren\nbetreurenswaard\nbetreurenswaardig\nbetrokken\nbetrokkene\nbetrokkenheid\nbetrouwbaar\nbetrouwbaarheid\nbetrouwbaarheidsinterval\nbetrouwbaarheidsrit\nbetrouwen\nbetten\nbetuigen\nbetuiging\nbetuline\nbetuttelaar\nbetuttelen\nbetutteling\nbetweetster\nbetweter\nbetweterig\nbetweterigheid\nbetweterij\nbetwijfelbaar\nbetwijfelen\nbetwistbaar\nbetwistbaarheid\nbetwisten\nbetwisting\nbeu\nbeug\nbeugel\nbeugelbaan\nbeugelen\nbeugelfles\nbeugelsluiting\nbeugelspel\nbeugeltas\nbeugelzaag\nbeugen\nbeuglijn\nbeugvisserij\nbeuk\nbeukelaar\nbeuken\nbeukenbast\nbeukenblad\nbeukenboom\nbeukenbos\nbeukenhaag\nbeukenhout\nbeukenhouten\nbeukenlaan\nbeukennoot\nbeukennootje\nbeukenschors\nbeukentak\nbeuker\nbeukhamer\nbeul\nbeulen\nbeulenwerk\nbeulin\nbeuling\nbeulshanden\nbeulsknecht\nbeulswerk\nbeun\nbeunen\nbeunhaas\nbeunhazen\nbeunhazerij\nbeurder\nbeurelen\nbeuren\nbeuring\nbeurs\nbeursaffaire\nbeursagent\nbeursanalist\nbeursbarometer\nbeursbediende\nbeursbedrijf\nbeursbelasting\nbeursbengel\nbeursbericht\nbeursberichten\nbeursbestuur\nbeursbezoek\nbeursbezoeker\nbeursblad\nbeursbrief\nbeurscomité\nbeurscommissaris\nbeurscommissie\nbeurscorrectie\nbeurscrash\nbeurscrisis\nbeursdag\nbeursdaling\nbeursdebuut\nbeursevolutie\nbeursfonds\nbeursfraude\nbeursfraudezaak\nbeursfusie\nbeursgang\nbeursganger\nbeursgangers\nbeursgebouw\nbeursgebruik\nbeursgeld\nbeursgemiddelde\nbeursgenoteerd\nbeursgerucht\nbeursgeschiedenis\nbeursgoeroe\nbeursgraadmeter\nbeurshal\nbeurshandel\nbeurshandelaar\nbeurshausse\nbeursheid\nbeursherstel\nbeurshuis\nbeurshype\nbeursindex\nbeursinformatie\nbeursintroductie\nbeursjaar\nbeurskapitalisatie\nbeursklimaat\nbeursklok\nbeursknecht\nbeurskoers\nbeurskrach\nbeurskrant\nbeurslid\nbeursmaand\nbeursmakelaar\nbeursmalaise\nbeursnieuweling\nbeursnieuws\nbeursnotering\nbeursomgeving\nbeursontwikkeling\nbeursoperatie\nbeursorder\nbeursorganisatie\nbeursoverval\nbeurspagina\nbeurspaniek\nbeursplein\nbeurspolis\nbeursprijs\nbeursreglement\nbeursschandaal\nbeursspeculant\nbeursspeculatie\nbeursspel\nbeursstemming\nbeursstudent\nbeurssysteem\nbeurstaks\nbeursterm\nbeurstijd\nbeurstikker\nbeurstoezicht\nbeurstoezichthouder\nbeurstransactie\nbeursvakantie\nbeursval\nbeursvennootschap\nbeursverlies\nbeursverliezen\nbeursvloer\nbeurswaakhond\nbeurswaarde\nbeursweek\nbeurswereld\nbeurswinst\nbeurszaak\nbeurszaken\nbeurszegel\nbeurt\nbeurtelings\nbeurtgezang\nbeurtman\nbeurtmelder\nbeurtrol\nbeurtschip\nbeurtschipper\nbeurtsysteem\nbeurtvaart\nbeurtveer\nbeurtwisseling\nbeurtzang\nbeurzen\nbeurzenfusie\nbeurzensnijder\nbeurzenstelsel\nbeuzelaar\nbeuzelachtig\nbeuzelarij\nbeuzelen\nbeuzeling\nbeuzelpraat\nbeuzeltaal\nbevaarbaar\nbevaarbaarheid\nbevak\nbeval\nbevallen\nbevallig\nbevalligheid\nbevalling\nbevallingsdatum\nbevallingsverlof\nbevangen\nbevangenheid\nbevanging\nbevaren\nbevattelijk\nbevattelijkheid\nbevatten\nbevatting\nbevattingsvermogen\nbevechten\nbevederd\nbevedering\nbeveiligd\nbeveiligen\nbeveiliger\nbeveiliging\nbeveiligingsapparatuur\nbeveiligingsbeambte\nbeveiligingsbedrijf\nbeveiligingsbranche\nbeveiligingsbureau\nbeveiligingscamera\nbeveiligingsdienst\nbeveiligingseisen\nbeveiligingsexpert\nbeveiligingsfirma\nbeveiligingsindustrie\nbeveiligingsinstallatie\nbeveiligingslek\nbeveiligingsmaatregel\nbeveiligingsmarkt\nbeveiligingsmechanisme\nbeveiligingsmedewerker\nbeveiligingsniveau\nbeveiligingsnorm\nbeveiligingsorganisatie\nbeveiligingspersoneel\nbeveiligingsplan\nbeveiligingsprogramma\nbeveiligingsproject\nbeveiligingsroutine\nbeveiligingssector\nbeveiligingssoftware\nbeveiligingsstrategie\nbeveiligingssysteem\nbeveiligingsunit\nbevek\nbevel\nbevelen\nbevelend\nbevelhebbend\nbevelhebber\nbevelhebberschap\nbevelschrift\nbevelslijn\nbevelsstructuur\nbevelstructuur\nbevelvoerder\nbevelvoerend\nbevelvoering\nbeven\nbever\nbeverbont\nbeverhaar\nbeverig\nbeverigheid\nbeverjacht\nbevernel\nbeverrat\nbevers\nbevertjes\nbevestigd\nbevestigen\nbevestigend\nbevestiging\nbevestigingsbeugel\nbevestigingsbrief\nbevestigingsclip\nbevestigingsformulier\nbevestigingsmethode\nbevestigingsmiddel\nbevestigingspunt\nbeviel\nbevind\nbevindelijk\nbevinden\nbevinding\nbeving\nbevingeren\nbevissen\nbevissing\nbevitten\nbevlaggen\nbevlagging\nbevleesd\nbevlekken\nbevlekking\nbevliegen\nbevlieging\nbevlijtigen\nbevloeien\nbevloeiing\nbevloeiingskanaal\nbevloeiingsstelsel\nbevloeiingssysteem\nbevloeiingswerk\nbevloeiingswerken\nbevloeren\nbevloering\nbevlogen\nbevlogene\nbevlogenheid\nbevochten\nbevochtigen\nbevochtiging\nbevoegd\nbevoegde\nbevoegdhedenafbakening\nbevoegdhedenmatrix\nbevoegdhedenverdeling\nbevoegdheid\nbevoegdheidsbepaling\nbevoegdheidseis\nbevoegdheidsverdeling\nbevoelen\nbevolen\nbevolken\nbevolking\nbevolkingsaangroei\nbevolkingsaantal\nbevolkingsaanwas\nbevolkingsaccres\nbevolkingsadministratie\nbevolkingsafname\nbevolkingsboekhouding\nbevolkingsbureau\nbevolkingscentrum\nbevolkingscijfer\nbevolkingsconcentratie\nbevolkingsdaling\nbevolkingsdeel\nbevolkingsdichtheid\nbevolkingsdruk\nbevolkingsexplosie\nbevolkingsfonds\nbevolkingsgroei\nbevolkingsgroep\nbevolkingsgrootte\nbevolkingslaag\nbevolkingsleer\nbevolkingsomvang\nbevolkingsonderzoek\nbevolkingsontwikkeling\nbevolkingsopbouw\nbevolkingsoverschot\nbevolkingspiramide\nbevolkingspolitiek\nbevolkingsprobleem\nbevolkingsproblematiek\nbevolkingsprognose\nbevolkingsregister\nbevolkingsregistratie\nbevolkingssamenstelling\nbevolkingsstatistiek\nbevolkingstal\nbevolkingstheorie\nbevolkingstoename\nbevolkingsvraagstuk\nbevolkt\nbevoogden\nbevoogding\nbevoordelen\nbevoordeling\nbevooroordeeld\nbevooroordeeldheid\nbevooroordeling\nbevoorraden\nbevoorrading\nbevoorradingsketen\nbevoorradingsschip\nbevoorrecht\nbevoorrechten\nbevoorrechting\nbevorderaar\nbevorderaarster\nbevorderen\nbevordering\nbevorderingsbeleid\nbevorderlijk\nbevraagde\nbevrachten\nbevrachter\nbevrachting\nbevragen\nbevraging\nbevredigd\nbevredigen\nbevredigend\nbevrediging\nbevreemd\nbevreemden\nbevreemdend\nbevreemding\nbevreesd\nbevreesdheid\nbevriend\nbevriesbaar\nbevriezen\nbevriezing\nbevriezingsmethode\nbevrijden\nbevrijder\nbevrijding\nbevrijdingsactie\nbevrijdingsbeweging\nbevrijdingsfeest\nbevrijdingsfestivals\nbevrijdingsfront\nbevrijdingsjaar\nbevrijdingsleger\nbevrijdingsoorlog\nbevrijdingsorganisatie\nbevrijdingspoging\nbevrijdingsstrijd\nbevrijdingstheologie\nbevrijdingstheoloog\nbevrijdster\nbevroeden\nbevroren\nbevrucht\nbevruchten\nbevruchting\nbevuilen\nbevuiling\nbewaakster\nbewaakt\nbewaarde\nbewaarder\nbewaarengel\nbewaarfunctie\nbewaargeld\nbewaargever\nbewaargeving\nbewaarheid\nbewaarheiden\nbewaarkluis\nbewaarkool\nbewaarkosten\nbewaarloon\nbewaarmiddel\nbewaarnemer\nbewaarneming\nbewaarplaats\nbewaarproces\nbewaarschool\nbewaarschoolhouderes\nbewaarschoolonderwijs\nbewaarschoolonderwijzeres\nbewaarservice\nbewaarstelling\nbewaarster\nbewaartemperatuur\nbewaartermijn\nbewaartijd\nbewaasd\nbewaken\nbewaker\nbewaking\nbewakingsagent\nbewakingsapparatuur\nbewakingsbeambte\nbewakingsbedrijf\nbewakingsbranche\nbewakingscamera\nbewakingsdienst\nbewakingsfirma\nbewakingskorps\nbewakingspersoneel\nbewakingssysteem\nbewalling\nbewandelen\nbewapenen\nbewapening\nbewapeningsprogramma\nbewapeningsrace\nbewapeningswedloop\nbewaren\nbewaring\nbewaringssysteem\nbewasemen\nbewassen\nbewassing\nbewateren\nbewatering\nbeweeg\nbeweegbaar\nbeweegbaarheid\nbeweeggrond\nbeweegkracht\nbeweeglijk\nbeweeglijkheid\nbeweegreden\nbeweerd\nbewegelijk\nbewegelijkheid\nbewegen\nbeweger\nbeweging\nbewegingloos\nbewegingloosheid\nbewegingsactivering\nbewegingsapparaat\nbewegingsarmoede\nbewegingsas\nbewegingsassen\nbewegingscommando\nbewegingsdeskundige\nbewegingsdrang\nbewegingsenergie\nbewegingsleer\nbewegingsloos\nbewegingsmogelijkheid\nbewegingsonderwijs\nbewegingsoorlog\nbewegingspatroon\nbewegingsruimte\nbewegingssensors\nbewegingssnelheid\nbewegingsstoornis\nbewegingsstudie\nbewegingstheater\nbewegingstherapeut\nbewegingstherapeute\nbewegingstherapie\nbewegingsvolgorde\nbewegingsvrijheid\nbewegingswetenschap\nbewegingswetenschapper\nbewegingsziekte\nbewegwijzeren\nbewegwijzering\nbeweiden\nbeweiding\nbewenen\nbewener\nbewening\nbeweren\nbewering\nbewerkbaar\nbewerkelijk\nbewerkelijkheid\nbewerken\nbewerker\nbewerking\nbewerkingscode\nbewerkingsfunctie\nbewerkingsinformatie\nbewerkingsmachine\nbewerkingsplaats\nbewerkingsplaatsen\nbewerkingsproces\nbewerkingsprogramma\nbewerkingstaken\nbewerkingsteken\nbewerkingstijd\nbewerkingsvolgorde\nbewerkingswijze\nbewerkstelligen\nbewerkstelliger\nbewerkstelliging\nbewerkster\nbewerktuigd\nbewerktuiging\nbewesten\nbewezenverklaring\nbewieroken\nbewieroking\nbewijs\nbewijsbaar\nbewijsbaarheid\nbewijsgaring\nbewijsgrond\nbewijsincident\nbewijskracht\nbewijslast\nbewijslastverdeling\nbewijsmateriaal\nbewijsmethode\nbewijsmiddel\nbewijsmiddelen\nbewijsnummer\nbewijsopdracht\nbewijsplaats\nbewijsrecht\nbewijsrechtelijk\nbewijsstuk\nbewijstheorie\nbewijsverdeling\nbewijsvermoeden\nbewijsverplichting\nbewijsvoering\nbewijzen\nbewilligen\nbewilliging\nbewimpelen\nbewimpeling\nbewind\nbewinden\nbewindhebber\nbewindslieden\nbewindsliedenoverleg\nbewindsman\nbewindsperiode\nbewindspersonenoverleg\nbewindspersoon\nbewindsvrouw\nbewindsvrouwe\nbewindvoerder\nbewogen\nbewogenheid\nbewolken\nbewolking\nbewolkt\nbewonderaar\nbewonderaarster\nbewonderen\nbewonderend\nbewonderenswaard\nbewonderenswaardig\nbewondering\nbewonen\nbewoner\nbewoners\nbewonersadministratie\nbewonersavond\nbewonerscomité\nbewonerscommissie\nbewonersgroep\nbewonersorganisatie\nbewonersplatform\nbewonersraad\nbewonersvereniging\nbewoning\nbewoog\nbewoonbaar\nbewoonbaarheid\nbewoond\nbewoonster\nbewoording\nbewoordingen\nbewust\nbewuste\nbewusteloos\nbewusteloosheid\nbewusteloze\nbewustheid\nbewustmaken\nbewustmakend\nbewustmakende\nbewustmaking\nbewustwording\nbewustwordingscampagne\nbewustwordingsproces\nbewustzijn\nbewustzijnsdaling\nbewustzijnsgraad\nbewustzijnsniveau\nbewustzijnstoestand\nbewustzijnsverlies\nbewustzijnsvernauwing\nbewustzijnsverruimend\nbewustzijnsverruiming\nbez. vnw.\nbezaagd\nbezaaid\nbezaaien\nbezaaiing\nbezaan\nbezaansmast\nbezaansschoot\nbezadigd\nbezadigdheid\nbezagen\nbezakken\nbezakt en bepakt\nbezanden\nbezatten\nbezegelen\nbezegeling\nbezeild\nbezeildheid\nbezeilen\nbezem\nbezembinden\nbezembinder\nbezembinderij\nbezemen\nbezemkast\nbezemklas\nbezemkruid\nbezempje\nbezemschoon\nbezemsteel\nbezemstok\nbezemwagen\nbezending\nbezeren\nbezet\nbezeten\nbezetene\nbezetenheid\nbezetsel\nbezetten\nbezetter\nbezetting\nbezettingsactie\nbezettingsautoriteit\nbezettingsautoriteiten\nbezettingsgraad\nbezettingsjaar\nbezettingskosten\nbezettingsleger\nbezettingsmaatregel\nbezettingsmacht\nbezettingspercentage\nbezettingspolitiek\nbezettingstijd\nbezettingstroep\nbezettingstroepen\nbezettingszone\nbezettoon\nbezeveren\nbezichtigen\nbezichtiging\nbezie\nbezield\nbezieldheid\nbezielen\nbezielende\nbezieler\nbezieling\nbezien\nbezienswaard\nbezienswaardig\nbezienswaardigheid\nbezig\nbezigen\nbezigheid\nbezigheidstherapie\nbezighouden\nbezijden\nbezingen\nbezinken\nbezinking\nbezinkingssnelheid\nbezinksel\nbezinnen\nbezinning\nbezinningsdagen\nbezinningsperiode\nbezinningsproces\nbezit\nbezitneming\nbezitsactie\nbezitsdrang\nbezitsovergang\nbezitsrecht\nbezitster\nbezitsvorming\nbezittelijk\nbezitten\nbezitter\nbezitterig\nbezitting\nbezitvormingsfonds\nbezocht\nbezoden\nbezoedelen\nbezoedeling\nbezoek\nbezoekadres\nbezoekcijfer\nbezoekdag\nbezoekdatum\nbezoeken\nbezoeker\nbezoekersaantal\nbezoekerscentrum\nbezoekersrecord\nbezoekersruimte\nbezoekersstroom\nbezoekersvisum\nbezoekfrequentie\nbezoeking\nbezoekrecht\nbezoekregeling\nbezoekschema\nbezoeksdatum\nbezoekster\nbezoektijd\nbezoekuur\nbezoldering\nbezoldigd\nbezoldigen\nbezoldiging\nbezoldigingsbesluit\nbezomen\nbezondigen\nbezonken\nbezonkenheid\nbezonnen\nbezonnenheid\nbezopen\nbezorgd\nbezorgdheid\nbezorgdienst\nbezorgen\nbezorger\nbezorging\nbezorgkosten\nbezorgloon\nbezorgservice\nbezorgster\nbezuiden\nbezuinigen\nbezuiniger\nbezuiniging\nbezuinigingenpakket\nbezuinigingsbedrag\nbezuinigingsbeleid\nbezuinigingsdrift\nbezuinigingsmaatregel\nbezuinigingsnota\nbezuinigingsopdracht\nbezuinigingsoperatie\nbezuinigingspakket\nbezuinigingsplan\nbezuinigingspolitiek\nbezuinigingsproblematiek\nbezuinigingsprogramma\nbezuinigingsronde\nbezuinigingsvoorstel\nbezuinigingswoede\nbezuipen\nbezuren\nbezwaar\nbezwaard\nbezwaarde\nbezwaardheid\nbezwaarfase\nbezwaarformulier\nbezwaarlijk\nbezwaarmaker\nbezwaarmogelijkheid\nbezwaarprocedure\nbezwaarschrift\nbezwaarschriftencommissie\nbezwaarschriftencommissies\nbezwaarschriftenprocedure\nbezwaarschriftprocedure\nbezwaarsysteem\nbezwaartermijn\nbezwadderen\nbezwalken\nbezwangerd\nbezwangeren\nbezwangering\nbezwaren\nbezwarencommissie\nbezwarend\nbezwarenprocedure\nbezwarentermijn\nbezweek\nbezweerder\nbezweet\nbezweken\nbezwendelen\nbezweren\nbezwering\nbezweringsformule\nbezweringsformulier\nbezweten\nbezwijken\nbezwijmen\nbeëdigd\nbeëdigen\nbeëdiging\nbeëindigen\nbeëindiging\nbeëlzebub\nbeërf\nbeërfden\nbeërft\nbeërven\nbeërving\nbeïnkt\nbeïnkte\nbeïnkten\nbeïnvloed\nbeïnvloedbaar\nbeïnvloedbaarheid\nbeïnvloedden\nbeïnvloeden\nbeïnvloedende\nbeïnvloeding\nbeïnvloedingsmogelijkheid\nbeïnvloedingswaan\nbeïnvloedingswanen\nbeïnvloedt\nbh\nbi\nbiaisband\nbiaislint\nbias\nbiatlon\nbib\nbibber\nbibberatie\nbibberen\nbibbergeld\nbibberig\nbibbering\nbiblebelt\nbiblicisme\nbibliobus\nbibliofiel\nbibliofilie\nbibliograaf\nbibliografie\nbibliografisch\nbibliomaan\nbibliomanie\nbibliothecaresse\nbibliothecaris\nbibliotheconomie\nbibliotheek\nbibliotheekassistent\nbibliotheekbeleid\nbibliotheekboek\nbibliotheekcentrale\nbibliotheekcommissie\nbibliotheekgebouw\nbibliotheekgids\nbibliotheekjes\nbibliotheekmedewerker\nbibliotheeknetwerk\nbibliotheekpersoneel\nbibliotheeksector\nbibliotheeksysteem\nbibliotheektechnisch\nbibliotheekwereld\nbibliotheekwerk\nbibliotheekwetenschap\nbibliotheekwezen\nbiblist\nbiblistiek\nbic\nbicarbonaat\nbiceps\nbicommunautair\nbiconcaaf\nbiconvex\nbidbank\nbidbankje\nbiddag\nbidden\nbidder\nbidet\nbidon\nbidonville\nbidplaats\nbidprentje\nbidsnoer\nbidsprinkhaan\nbidstoel\nbidstoeltje\nbidstond\nbiduur\nbidvertrek\nbidweek\nbidweg\nbie\nbieb\nbiecht\nbiecht horen\nbiechtbriefje\nbiechteling\nbiechtelinge\nbiechten\nbiechtgeheim\nbiechthokje\nbiechtspiegel\nbiechtstoel\nbiechtvader\nbieden\nbieder\nbiedermeier\nbiedgedrag\nbieding\nbiedingsbericht\nbiedingsoorlog\nbiedingsproces\nbiedingsstrijd\nbiedkoers\nbiedoorlog\nbiedplicht\nbiedprijs\nbiedronde\nbiedster\nbiedsysteem\nbief\nbiefburger\nbiefstuk\nbiel\nbiels\nbielsen\nbielzen\nbier\nbieraccijns\nbierazijn\nbierbak\nbierblikje\nbierbottelarij\nbierbrouwen\nbierbrouwer\nbierbrouwerij\nbierbuik\nbierconcern\nbiercultuur\nbierdrinker\nbieren\nbierfabrikant\nbierfeest\nbierfles\nbierflesje\nbiergebruik\nbiergigant\nbiergist\nbierglas\nbiergroep\nbierhal\nbierhuis\nbierkaai\nbierkaartje\nbierkan\nbierkelder\nbierkrat\nbierkruik\nbierliefhebber\nbierlucht\nbiermagnaat\nbiermarkt\nbiermerk\nbieromzet\nbierpap\nbierpomp\nbierpot\nbierprijs\nbierproducent\nbierproductie\nbierpul\nbierpulletje\nbierpulletjes\nbierreclame\nbiersector\nbiersoort\nbiersteker\nbierstekerij\nbierstelling\nbiertapperij\nbiertent\nbiertje\nbierton\nbiervat\nbierverbruik\nbierverkoop\nbierviltje\nbiervoorraad\nbierwacht\nbierwagen\nbies\nbieslook\nbiest\nbiet\nbietebauw\nbietencampagne\nbietenkroot\nbietenpulp\nbietensalade\nbietensap\nbietensla\nbietenstroop\nbietje\nbiets\nbietsen\nbietser\nbietsuiker\nbiezen\nbiezenmandje\nbiezenmat\nbifocaal\nbifurcatie\nbig\nbig bang\nbigamie\nbigamisch\nbigamist\nbigband\nbigbangtheorie\nbiggel\nbiggelen\nbiggen\nbiggenkruid\nbigot\nbigotterie\nbij\nbij machte\nbij nachte\nbijaccent\nbijaldien\nbijas\nbijbaan\nbijbaantje\nbijbal\nbijbalontsteking\nbijbank\nbijbedoeling\nbijbehoren\nbijbehorend\nbijbel\nbijbelcodex\nbijbeleditie\nbijbeluitgave\nbijbenen\nbijberekenen\nbijberoep\nbijbestellen\nbijbestelling\nbijbetalen\nbijbetaling\nbijbetekenis\nbijbetrekking\nbijblad\nbijblijven\nbijboek\nbijboeken\nbijboog\nbijbouw\nbijbouwen\nbijbrengen\nbijbuigen\nbijdehand\nbijdehandje\nbijdehands\nbijdenkbeeld\nbijdetijds\nbijdoen\nbijdraaien\nbijdrage\nbijdragegrondslag\nbijdragen\nbijdrager\nbijdrageregeling\nbijdruk\nbijdrukken\nbijectie\nbijeen\nbijeenbinden\nbijeenblijven\nbijeenbrengen\nbijeendrijven\nbijeengaren\nbijeengebracht\nbijeengenomen\nbijeengespaard\nbijeenhalen\nbijeenhouden\nbijeenkomen\nbijeenkomst\nbijeenrapen\nbijeenroepen\nbijeenroeping\nbijeenscharrelen\nbijeenschrapen\nbijeensprokkelen\nbijeentrommelen\nbijeenvegen\nbijeenvoegen\nbijeenvoeging\nbijeenzetten\nbijeenzijn\nbijeenzitten\nbijeenzoeken\nbijeffect\nbijenboer\nbijenbrood\nbijendans\nbijeneter\nbijenhonig\nbijenhoning\nbijenhouder\nbijenhouderij\nbijenhuis\nbijenhuizen\nbijenkap\nbijenkast\nbijenkoningin\nbijenkorf\nbijenschuur\nbijenstal\nbijensteek\nbijentaal\nbijenteelt\nbijenvolk\nbijenwas\nbijenzwerm\nbijfiguur\nbijgaand\nbijgebouw\nbijgedachte\nbijgelegen\nbijgeloof\nbijgelovig\nbijgelovigheid\nbijgeluid\nbijgenaamd\nbijgeplaatste\nbijgerecht\nbijgesloten\nbijgeval\nbijgeven\nbijgevoegd\nbijgevolg\nbijgieten\nbijgroeien\nbijhalen\nbijhangen\nbijharken\nbijholte\nbijholteontsteking\nbijhorigheden\nbijhouden\nbijhuis\nbijkaart\nbijkans\nbijkantoor\nbijkelk\nbijkeuken\nbijklank\nbijkletsen\nbijkleuren\nbijklussen\nbijknippen\nbijkok\nbijkomen\nbijkomend\nbijkomstig\nbijkomstigheden\nbijkomstigheid\nbijkopen\nbijkrabbelen\nbijl\nbijladen\nbijlage\nbijlander\nbijlappen\nbijlbrief\nbijleg\nbijleggen\nbijlegger\nbijlegging\nbijlenen\nbijleren\nbijles\nbijleveren\nbijlichten\nbijliggen\nbijliggend\nbijligger\nbijlmerramp\nbijloop\nbijlopen\nbijloper\nbijlslag\nbijltje\nbijltjes\nbijltjesdag\nbijmaan\nbijmaken\nbijmengen\nbijmenging\nbijmest\nbijna\nbijna-akkoord\nbijna-botsing\nbijna-doodervaring\nbijna-faillissement\nbijna-kabinetscrisis\nbijna-ongeluk\nbijna-ramp\nbijnaam\nbijnemen\nbijnier\nbijniermerg\nbijnierschors\nbijnierschorshormoon\nbijnummer\nbijoogmerk\nbijou\nbijouterie\nbijouterieën\nbijpaard\nbijpad\nbijpassen\nbijpassend\nbijplaatsen\nbijplamuren\nbijplaneet\nbijpleisteren\nbijpompen\nbijpraten\nbijproduct\nbijprogramma\nbijpunten\nbijrijder\nbijrijdersstoel\nbijrivier\nbijrol\nbijrolacteur\nbijschaduw\nbijschaduwen\nbijschaven\nbijschenken\nbijscherm\nbijschilderen\nbijschildklier\nbijscholen\nbijscholing\nbijscholingscursus\nbijscholingsprogramma\nbijschrift\nbijschrifttekst\nbijschrijven\nbijschrijving\nbijschuiven\nbijslaap\nbijslag\nbijslapen\nbijslepen\nbijslijpen\nbijsloffen\nbijsloot\nbijsluit\nbijsluiten\nbijsluiter\nbijsluitertekst\nbijsmaak\nbijsmeren\nbijsnijden\nbijspelen\nbijspijkeren\nbijspringen\nbijstaan\nbijstand\nbijstander\nbijstandsaanvraag\nbijstandsambtenaar\nbijstandsbedrag\nbijstandsbeleid\nbijstandsfraude\nbijstandsgeld\nbijstandsgerechtigd\nbijstandsgezin\nbijstandskosten\nbijstandsmoeder\nbijstandsniveau\nbijstandsnorm\nbijstandsontvanger\nbijstandsregeling\nbijstandsteam\nbijstandstrekker\nbijstandsuitkering\nbijstandsvader\nbijstandsverhaal\nbijstandsverlening\nbijstandsverplichting\nbijstandsvrouw\nbijstandswet\nbijstandtrekker\nbijstanduitkering\nbijsteken\nbijstellen\nbijstelling\nbijster\nbijstoken\nbijstoppen\nbijstorten\nbijstorting\nbijstortingsverplichting\nbijstreek\nbijstrijken\nbijsturen\nbijsturing\nbijt\nbijtanken\nbijteken\nbijtekenen\nbijtellen\nbijtelling\nbijtellingen\nbijten\nbijtend\nbijter\nbijterig\nbijtertje\nbijtgraag\nbijtijds\nbijtje\nbijtmiddel\nbijtoon\nbijtreden\nbijtrek\nbijtrekken\nbijv.\nbijvak\nbijvakprogramma\nbijvakstudent\nbijvakstudie\nbijval\nbijvallen\nbijvalsbetuiging\nbijvangst\nbijveld\nbijverdienen\nbijverdienregeling\nbijverdienste\nbijverschijnsel\nbijvertellen\nbijvertrek\nbijverven\nbijverzekeren\nbijverzekering\nbijvieren\nbijvijlen\nbijvoederen\nbijvoeding\nbijvoedingen\nbijvoegen\nbijvoeging\nbijvoeglijk\nbijvoegsel\nbijvoegsels\nbijvoeren\nbijvoet\nbijvoorbeeld\nbijvorm\nbijvrouw\nbijvullen\nbijwagen\nbijweg\nbijwerk\nbijwerken\nbijwerking\nbijwezen\nbijwijf\nbijwijlen\nbijwinnen\nbijwonen\nbijwoner\nbijwoning\nbijwoord\nbijwoordelijk\nbijzaak\nbijzaal\nbijzet\nbijzettafel\nbijzettafeltje\nbijzetten\nbijzetting\nbijziend\nbijziende\nbijziendheid\nbijzijn\nbijzin\nbijzinconstructie\nbijzit\nbijzitten\nbijzitter\nbijzitterschap\nbijzon\nbijzonder\nbijzonderheid\nbijzonderlijk\nbik\nbiker\nbikhamer\nbikini\nbikinietjes\nbikinislip\nbikkel\nbikkelen\nbikkelhard\nbikkelspel\nbikken\nbiksteen\nbil\nbilan\nbilateraal\nbilateraaltje\nbilateralisme\nbildungsroman\nbilhamer\nbilhuid\nbilirubine\nbiljard\nbiljart\nbiljartbal\nbiljartclub\nbiljarten\nbiljarter\nbiljartje\nbiljartkeu\nbiljartlaken\nbiljartspel\nbiljartspeler\nbiljartstok\nbiljarttafel\nbiljartvereniging\nbiljartzaal\nbiljet\nbiljetje\nbiljettenautomaat\nbiljoen\nbiljoenen\nbillboard\nbillen\nbillenknijper\nbillenkoek\nbillentikker\nbillijk\nbillijken\nbillijkerwijs\nbillijkerwijze\nbillijkheid\nbillijkheidsgronden\nbillijkheidshalve\nbillijkheidsoverweging\nbilnaad\nbilocatie\nbilpartij\nbilplooien\nbilspier\nbilspleet\nbilzekruid\nbimbam\nbimbammen\nbinair\nbinationaal\nbindbreedte\nbinden\nbindend\nbinder\nbinderij\nbindgaren\nbinding\nbindingsangst\nbindingsprobleem\nbindmiddel\nbindmiddeltje\nbindmorfeem\nbindsel\nbindsteen\nbindster\nbindtouw\nbindvlies\nbindweefsel\nbindweefselcel\nbindweefselvorming\nbindwerk\nbindwijze\nbingelkruid\nbingo\nbingoavond\nbingoën\nbink\nbinken\nbinnen\nbinnenbaan\nbinnenbad\nbinnenband\nbinnenbediening\nbinnenbeer\nbinnenbeglazing\nbinnenbekleding\nbinnenbetimmering\nbinnenblad\nbinnenblijven\nbinnenbocht\nbinnenboord\nbinnenboordmotor\nbinnenbouw\nbinnenbraak\nbinnenbrand\nbinnenbrandje\nbinnenbrandjes\nbinnenbreken\nbinnenbrengen\nbinnendeur\nbinnendiameter\nbinnendienst\nbinnendijk\nbinnendijken\nbinnendijks\nbinnendoor\nbinnendraad\nbinnendraai\nbinnendraaien\nbinnendragen\nbinnendrijven\nbinnendringen\nbinnendringer\nbinnendruipen\nbinnendruppelen\nbinnenduin\nbinnenduinrand\nbinnenduwen\nbinnenflap\nbinnengaan\nbinnengaats\nbinnengalerij\nbinnengebied\nbinnengemeentelijk\nbinnengesloten\nbinnenglijden\nbinnenglippen\nbinnengluren\nbinnengrens\nbinnenhalen\nbinnenhand\nbinnenhandel\nbinnenhaven\nbinnenhoek\nbinnenhof\nbinnenhouden\nbinnenhuis\nbinnenhuisarchitect\nbinnenhuisarchitectuur\nbinnenhuisinrichting\nbinnenhuisje\nbinnenhuppelen\nbinnenin\nbinneninrichting\nbinnenkamer\nbinnenkant\nbinnenkerkelijk\nbinnenkijken\nbinnenklimaat\nbinnenkoer\nbinnenkomen\nbinnenkomer\nbinnenkomertje\nbinnenkomst\nbinnenkort\nbinnenkrijgen\nbinnenkruipen\nbinnenlaag\nbinnenland\nbinnenlandbewoner\nbinnenlander\nbinnenlandpagina\nbinnenlands\nbinnenlandspolitiek\nbinnenlaten\nbinnenleiden\nbinnenleiding\nbinnenlijn\nbinnenlokken\nbinnenloods\nbinnenloodsen\nbinnenlopen\nbinnenloper\nbinnenlucht\nbinnenmaat\nbinnenmarcheren\nbinnenmarkt\nbinnenmeer\nbinnenmeisje\nbinnenmilieu\nbinnenmoeder\nbinnenmotor\nbinnenmuur\nbinnenmuursteen\nbinnenooghoek\nbinnenoor\nbinnenopname\nbinnenpagina\nbinnenpijp\nbinnenplaats\nbinnenplein\nbinnenpost\nbinnenpraat\nbinnenpret\nbinnenpretje\nbinnenraam\nbinnenrand\nbinnenrennen\nbinnenrijden\nbinnenrijven\nbinnenring\nbinnenroepen\nbinnenrollen\nbinnenruimte\nbinnenscheepvaart\nbinnenschieten\nbinnenschilderwerk\nbinnenschip\nbinnenschipper\nbinnenshuis\nbinnensijpelen\nbinnenskamers\nbinnenslands\nbinnenslepen\nbinnensloot\nbinnensluipen\nbinnensluis\nbinnensluit\nbinnensluiten\nbinnensluizen\nbinnensmokkelen\nbinnensmonds\nbinnenspelen\nbinnenspeler\nbinnenspiegel\nbinnensport\nbinnenst\nbinnenstad\nbinnenstadbewoner\nbinnenstadsbewoner\nbinnenstappen\nbinnenste\nbinnenstebuiten\nbinnenstedelijk\nbinnenstijds\nbinnenstomen\nbinnenstormen\nbinnenstraat\nbinnenstromen\nbinnenstuiven\nbinnentemperatuur\nbinnenterrein\nbinnenterreinen\nbinnentijds\nbinnentrap\nbinnentreden\nbinnentrekken\nbinnentuin\nbinnenvaart\nbinnenvaartconflict\nbinnenvaartpolitie\nbinnenvaartschip\nbinnenvaartschipper\nbinnenvaarttanker\nbinnenvaartuig\nbinnenvaartvloot\nbinnenvader\nbinnenval\nbinnenvallen\nbinnenvaren\nbinnenveld\nbinnenvelder\nbinnenverlichting\nbinnenvertrek\nbinnenvet\nbinnenvetter\nbinnenvisser\nbinnenvisserij\nbinnenvliegen\nbinnenvlucht\nbinnenvluchten\nbinnenvoer\nbinnenwaaien\nbinnenwaard\nbinnenwaarts\nbinnenwand\nbinnenwandelen\nbinnenwater\nbinnenweg\nbinnenweggetje\nbinnenweggetjes\nbinnenwereld\nbinnenwerk\nbinnenwerks\nbinnenwippen\nbinnenzak\nbinnenzee\nbinnenzij\nbinnenzijde\nbinnenzool\nbinnenzuigen\nbinnenzwembad\nbinocle\nbinoculair\nbinomiaal\nbinomiale\nbinomium\nbinst\nbint\nbintbalk\nbintje\nbintlaag\nbio\nbio-ecologisch\nbio-energetica\nbio-energie\nbio-ethanol\nbio-ethicus\nbio-ethiek\nbio-industrie\nbio-informatica\nbiobak\nbioboer\nbiobrandstof\nbiochemicus\nbiochemie\nbiochemisch\nbiocide\nbiodiesel\nbiodiversiteit\nbiodiversiteitsverdrag\nbiodynamisch\nbiofilm\nbiofysica\nbiofysicus\nbiogarantie\nbiogas\nbiogeen\nbiogenetica\nbiogenetisch\nbiograaf\nbiografe\nbiografie\nbiografisch\nbiokatalysator\nbiolandbouw\nbiologe\nbiologeren\nbiologica\nbiologie\nbiologieleraar\nbiologieles\nbiologielokaal\nbiologieonderwijs\nbiologiestudent\nbiologisch\nbiologisch-dynamisch\nbioloog\nbiomassa\nbiomassaproductie\nbiomateriaal\nbiomechanica\nbiomechanisch\nbiomedisch\nbiometeorologie\nbiometrie\nbiometrisch\nbiomolecule\nbionisch\nbiopic\nbioplastic\nbioplastics\nbiopsie\nbioreactor\nbioritme\nbioritmiek\nbios\nbioscoop\nbioscoopbedrijf\nbioscoopbezoek\nbioscoopbezoeker\nbioscoopbon\nbioscoopbond\nbioscoopcomplex\nbioscoopconcern\nbioscoopdebuut\nbioscoopexploitant\nbioscoopfilm\nbioscoopgroep\nbioscoophouder\nbioscoopjournaal\nbioscoopkaartje\nbioscoopladder\nbioscooppubliek\nbioscoopreclame\nbioscooproulement\nbioscoopscherm\nbioscoopstoel\nbioscooptheater\nbioscoopversie\nbioscoopvoorstelling\nbioscoopzaal\nbioscopencomplex\nbiosector\nbiosensor\nbiosfeer\nbiosociaal\nbiosynthese\nbiotech\nbiotechbedrijf\nbiotechbedrijven\nbiotechniek\nbiotechnisch\nbiotechnologie\nbiotechnologiebedrijf\nbiotechnologiesector\nbiotechnologisch\nbiotechnoloog\nbioterrorisme\nbiotisch\nbiotoop\nbiowetenschap\nbipolair\nbipolariteit\nbips\nbirdie\nbirmaan\nbis\nbisam\nbisambont\nbisamrat\nbiscuit\nbiscuitblik\nbiscuitje\nbisdom\nbiseks\nbiseksualiteit\nbiseksueel\nbisjaar\nbismillah\nbismut\nbisschop\nbisschoppelijk\nbisschoppenconferentie\nbisschoppensynode\nbisschopsambt\nbisschopshoed\nbisschopskeuze\nbisschopsmijter\nbisschopsring\nbisschopsstad\nbisschopsstaf\nbisschopsstoel\nbisschopssynode\nbisschopstroon\nbisschopswijding\nbisschopswijn\nbisschopszetel\nbisschopwijn\nbissectrice\nbissen\nbisser\nbisseren\nbisstudent\nbister\nbistro\nbistrootjes\nbit\nbitch\nbitmap\nbits\nbitsheid\nbitsig\nbitsigheid\nbitten\nbitter\nbitterachtig\nbitterappel\nbitterbal\nbitteren\nbitterfles\nbittergarnituur\nbitterheid\nbitterkaraf\nbitterkers\nbitterkoekje\nbitterkoud\nbitterkruid\nbitterlijk\nbittertafel\nbittertje\nbitterwater\nbitterzoet\nbitterzout\nbitumen\nbitumineren\nbitumineus\nbivak\nbivakkeren\nbivakmuts\nbizar\nbizon\nbiënnale\nblaadje\nblaag\nblaam\nblaar\nblaarkop\nblaartrekkend\nblaas\nblaasbalg\nblaashoorn\nblaashoren\nblaasinstrument\nblaasje\nblaasjeskruid\nblaasjeswier\nblaasjesziekte\nblaaskaak\nblaaskaken\nblaaskakerij\nblaaskanker\nblaaskapel\nblaaskwartet\nblaaskwintet\nblaasmuziek\nblaasontsteking\nblaasorkest\nblaaspijp\nblaaspijpje\nblaasproef\nblaasroer\nblaasruptuur\nblaassteen\nblaastest\nblaastests\nblaasvoetbal\nblaasvormig\nblaaswerk\nblaaswerktuig\nblaasworm\nblaasziekte\nblabla\nblack box\nblack metal\nblack-out\nblackjack\nblad\nbladaarde\nbladachtig\nbladader\nbladbegonia\nbladcactus\nbladdeeg\nbladder\nbladderen\nbladen\nbladenmaker\nbladenman\nbladerboek\nbladerdak\nbladerdeeg\nbladerdek\nbladerdos\nbladeren\nbladerenpracht\nbladerig\nbladerkrans\nbladerloos\nbladerprogramma\nbladerrijk\nbladerscherm\nbladeter\nbladgoud\nbladgroen\nbladgroente\nbladgrond\nbladhark\nbladhout\nbladig\nbladijzer\nbladindeling\nbladkever\nbladknop\nbladkoper\nbladlengte\nbladlood\nbladluis\nbladmoes\nbladmos\nbladmotief\nbladmuziek\nbladnerf\nbladneus\nbladnummer\nbladoksel\nbladplant\nbladroller\nbladrollers\nbladschede\nbladschijf\nbladschroef\nbladselderij\nbladspiegel\nbladspinazie\nbladstand\nbladsteel\nbladstil\nbladtin\nbladval\nbladveer\nbladverliezend\nbladversiering\nbladvorm\nbladvormig\nbladvormige\nbladvulling\nbladwesp\nbladwijzer\nbladwisseling\nbladziekte\nbladzij\nbladzijde\nbladzijdenummer\nbladzijdenummers\nblaf\nblaffen\nblaffer\nblafferd\nblaffetuur\nblafhoest\nblague\nblak\nblaken\nblaker\nblakeren\nblakstil\nblamage\nblameren\nblancheren\nblanco\nblancovolmacht\nblanda\nblank\nblanke\nblanket\nblanketsel\nblankheid\nblankhouten\nblankvoorn\nblaren\nblasfemeren\nblasfemie\nblasfemisch\nblasfemistisch\nblasé\nblaten\nblauw\nblauwachtig\nblauwalg\nblauwbaard\nblauwbekken\nblauwblauw\nblauwboek\nblauwborst\nblauwborstje\nblauwdruk\nblauwen\nblauweregen\nblauwgekleurd\nblauwgrijs\nblauwgroen\nblauwheid\nblauwhelm\nblauwig\nblauwkiel\nblauwkleurig\nblauwkous\nblauwmaanzaad\nblauwogig\nblauwschokker\nblauwschokkers\nblauwsel\nblauwselwater\nblauwtje\nblauwtjes\nblauwtong\nblauwverschuiving\nblauwviolet\nblauwvoet\nblauwvoeterie\nblauwvoeterij\nblauwwier\nblauwwit\nblauwzijden\nblauwzuur\nblauwzuurgas\nblauwzwart\nblazen\nblazer\nblazersensemble\nblazerssectie\nblazertje\nblazertjes\nblazoen\nbleef\nbleek\nbleekachtig\nbleekblauw\nbleekgeel\nbleekgezicht\nbleekgoed\nbleekheid\nbleekjes\nbleekmiddel\nbleekneus\nbleekneusje\nbleekpoeder\nbleekpoeier\nbleekscheet\nbleekselderie\nbleekselderij\nbleekster\nbleekte\nbleekveld\nbleekwater\nbleekzucht\nbleekzuchtig\nblees\nblei\nblein\nblek\nbleken\nbleker\nblekerij\nblekken\nblende\nblender\nbles\nblessen\nblesseren\nblessure\nblessurebehandeling\nblessureleed\nblessurepreventie\nblessuretijd\nblessurevrij\nblessuur\nbleu\nbleuheid\nbleven\nbliek\nbliep\nblies\nblieven\nbliezen\nblij\nblijde\nblijdschap\nblijf\nblijf-van-mijn-lijfhuis\nblijfhuis\nblijft\nblijgeestig\nblijgeestigheid\nblijheid\nblijk\nblijkbaar\nblijken\nblijkens\nblijmare\nblijmoedig\nblijmoedigheid\nblijspel\nblijspeldichter\nblijven\nblijvend\nblijver\nblijvertje\nblik\nblikachtig\nblikconserven\nblikgroente\nblikgroenten\nblikje\nblikken\nblikkeren\nblikkerig\nblikkering\nblikogen\nblikopener\nblikschaar\nblikschade\nbliksem\nbliksemaanval\nbliksemactie\nbliksemafleider\nbliksembezoek\nbliksemcarrière\nbliksemen\nbliksemflits\nbliksemgevaar\nblikseminslag\nbliksemlicht\nbliksemonderzoek\nbliksemoorlog\nbliksemoperatie\nbliksems\nbliksemschade\nbliksemschicht\nbliksemsnel\nbliksemstraal\nbliksemtrein\nbliksemvuur\nblikskaters\nblikslager\nblikslagerij\nblikslagers\nbliksoep\nblikvanger\nblikveld\nblikvernauwing\nblikverpakking\nblikverruiming\nblikvoedsel\nblikwaren\nblikwerk\nblikwinkel\nblind\nblind date\nblind vlieg\nblind vliegen\nblind vliegt\nblind vlogen\nblind vloog\nblinddoek\nblinddoeken\nblinddruk\nblinde\nblindedarm\nblindedarmontsteking\nblindedarmoperatie\nblindekoe\nblindelings\nblindeman\nblindemannetje\nblindemannetjes\nblinden\nblindenbibliotheek\nblindengeleidehond\nblindengeleider\nblindengesticht\nblindeninstituut\nblindenonderwijs\nblindenschool\nblindenschrift\nblindenstip\nblindenstok\nblinderen\nblindering\nblindganger\nblindgeboren\nblindgeborene\nblindheid\nblindkap\nblindstaren\nblindvaren\nblindweg\nblingbling\nblink\nblinkdoos\nblinken\nblinkend\nblinker\nblinkerd\nblinkertje\nblinkertjes\nblisterverpakking\nblits\nblitskikker\nblitzbezoek\nblitzcarrière\nblitzkrieg\nblo\nblockbuster\nblocnote\nblode\nbloed\nbloed-hersenbarrière\nbloedaandrang\nbloedader\nbloedafname\nbloedafscheiding\nbloedaftapping\nbloedafvoer\nbloedalcoholgehalte\nbloedarm\nbloedarmoede\nbloedbaan\nbloedbad\nbloedband\nbloedbank\nbloedbeeld\nbloedbezinking\nbloedblaar\nbloedblein\nbloedbroeder\nbloedbroederschap\nbloedcel\nbloedcirculatie\nbloedcontact\nbloedcontrole\nbloeddiamant\nbloeddonatie\nbloeddonor\nbloeddoop\nbloeddoorlopen\nbloeddoorstroming\nbloeddoping\nbloeddorst\nbloeddorstig\nbloeddorstigheid\nbloeddruk\nbloeddrukdaling\nbloeddrukmeter\nbloeddrukmeting\nbloeddrukmiddel\nbloeddrukverhogend\nbloeddrukverlagend\nbloeddruppel\nbloedeigen\nbloedeloos\nbloedeloosheid\nbloeden\nbloedend\nbloeder\nbloederig\nbloederziekte\nbloedgang\nbloedgeefster\nbloedgeld\nbloedgetuige\nbloedgever\nbloedgierig\nbloedgroep\nbloedheet\nbloedhekel\nbloedhoeveelheid\nbloedhond\nbloedig\nbloeding\nbloedje\nbloedjes\nbloedkanker\nbloedkleur\nbloedkleurig\nbloedkleurstof\nbloedkoek\nbloedkoraal\nbloedkoralen\nbloedkruid\nbloedlichaampje\nbloedlichaampjes\nbloedlijn\nbloedlink\nbloedloogzout\nbloedluis\nbloedmenging\nbloedmonster\nbloedmooi\nbloednerveus\nbloedneus\nbloedonderzoek\nbloedonderzoeken\nbloedpens\nbloedplaatje\nbloedplakkaat\nbloedplas\nbloedplasma\nbloedplassen\nbloedprocessie\nbloedproef\nbloedprop\nbloedrijk\nbloedrood\nbloedschandaal\nbloedschande\nbloedschender\nbloedschendig\nbloedschennig\nbloedschennis\nbloedschuld\nbloedserieus\nbloedserum\nbloedsomloop\nbloedspat\nbloedspiegel\nbloedspoor\nbloedspuwing\nbloedstaal\nbloedstelpend\nbloedstollend\nbloedstolling\nbloedstolsel\nbloedstorting\nbloedstroom\nbloedsuiker\nbloedsuikerbepaling\nbloedsuikergehalte\nbloedsuikerniveau\nbloedsuikerspiegel\nbloedtest\nbloedtheologie\nbloedtoename\nbloedtoevoer\nbloedtransfusie\nbloedtransfusiedienst\nbloeduitstorting\nbloedvat\nbloedvatwand\nbloedverdunnend\nbloedverdunner\nbloedvergieten\nbloedvergiftiging\nbloedverlies\nbloedvernieuwing\nbloedverversing\nbloedverwant\nbloedverwante\nbloedverwantschap\nbloedvin\nbloedvlag\nbloedvlek\nbloedvloed\nbloedvloeiing\nbloedvolume\nbloedvoorziening\nbloedvorm\nbloedvrees\nbloedwarm\nbloedwei\nbloedwijn\nbloedworst\nbloedwraak\nbloedziekte\nbloedzuiger\nbloedzweer\nbloei\nbloeien\nbloeiend\nbloeier\nbloeikolf\nbloeimaand\nbloeiperiode\nbloeitijd\nbloeiwijze\nbloem\nbloemachtig\nbloembak\nbloembed\nbloembekleedsel\nbloemblad\nbloembodem\nbloembol\nbloembollencultuur\nbloembollenexport\nbloembollenexporteur\nbloembollenhandel\nbloembollenkweker\nbloembollensector\nbloembollenteelt\nbloembollenveld\nbloemdek\nbloemdessin\nbloemdragend\nbloemen\nbloemencorso\nbloemengeur\nbloemenhandel\nbloemenhandelaar\nbloemenhof\nbloemenhoning\nbloemenhulde\nbloemenkas\nbloemenkrans\nbloemenkweker\nbloemenkwekerij\nbloemenmaakster\nbloemenman\nbloemenmand\nbloemenmarkt\nbloemenmeisje\nbloemennaam\nbloemenpracht\nbloemenrijk\nbloemenslinger\nbloemenspuit\nbloemenstal\nbloemenstalletje\nbloemenstoet\nbloementaal\nbloementapijt\nbloementeelt\nbloementeler\nbloemententoonstelling\nbloementhee\nbloementuin\nbloemenvaas\nbloemenveiling\nbloemenveld\nbloemenverkoopster\nbloemenwei\nbloemenweide\nbloemenwinkel\nbloemenzaak\nbloemenzee\nbloemetje\nbloemetjesbehang\nbloemetjesjurk\nbloemetjesmotief\nbloemfestoen\nbloemfontein\nbloemig\nbloemist\nbloemisterij\nbloemkelk\nbloemknop\nbloemknopje\nbloemknopjes\nbloemkolen\nbloemkool\nbloemkooloor\nbloemkoolstronk\nbloemkorf\nbloemkrans\nbloemkroon\nbloemkweker\nbloemkwekerij\nbloemlezen\nbloemlezer\nbloemlezing\nbloemloos\nbloemmarkt\nbloemmotief\nbloempap\nbloemperk\nbloemperkje\nbloempje\nbloempjesdag\nbloempot\nbloempotkapsel\nbloemrijk\nbloemruiker\nbloemsaus\nbloemscherm\nbloemschikken\nbloemschilderen\nbloemsierkunst\nbloemsteel\nbloemstengel\nbloemstilleven\nbloemstof\nbloemstuk\nbloemsuiker\nbloemtapijt\nbloemtros\nbloemtuil\nbloemvorm\nbloemwerk\nbloemzaad\nbloemzak\nbloemzoet\nbloes\nbloesem\nbloesemboom\nbloesemen\nbloesemgeur\nbloesemtooi\nbloezen\nblog\nbloggen\nblohartig\nbloheid\nblok\nblokband\nblokbandtaxi\nblokbeest\nblokbeveiliging\nblokboek\nblokcursus\nblokdag\nblokdefinitie\nblokdenken\nblokdiagram\nblokdruk\nblokfluit\nblokfunctie\nblokgolf\nblokgolven\nblokhaak\nblokhak\nblokhaken\nblokhoofd\nblokhuis\nblokhut\nblokje\nblokkade\nblokkadeactie\nblokkadebreker\nblokken\nblokkendoos\nblokkensysteem\nblokker\nblokkeren\nblokkering\nblokkeringsminderheid\nblokletter\nblokletteren\nblokmaker\nblokmarkering\nblokmodel\nbloknagel\nbloknummer\nblokperiode\nblokpolis\nblokrijden\nblokschaaf\nblokschaar\nblokschema\nblokschip\nblokschoen\nblokschrift\nbloksgewijs\nbloksgewijze\nblokstelsel\nbloksysteem\nbloktijd\nbloktrein\nblokuur\nblokverwarming\nblokvormig\nblokvorming\nblokwachter\nblokwerk\nblokzeilen\nblom\nblommetje\nblond\nblonde\nblonderen\nblondgelokt\nblondheid\nblondine\nblondje\nblonk\nbloodaard\nbloody mary\nblooper\nbloosangst\nbloot\nblootblad\nblootfoto\nblootgeven\nblootje\nblootleggen\nblootliggen\nblootshoofds\nblootstaan\nblootstellen\nblootstelling\nblootsvoets\nblootwoelen\nblos\nblotebillengezicht\nbloten\nbloterik\nblotevoetendokter\nblouse\nblouson\nblouwel\nblouwen\nblow\nblow-out\nblowen\nblower\nblozen\nblozend\nblubber\nblubberen\nblubberig\nbluegrass\nbluejeans\nblues\nbluesband\nbluesgevoel\nbluesgitarist\nblueslegende\nbluesman\nbluesmuziek\nbluesmuzikant\nbluesnummer\nbluesrock\nbluesy\nblueszanger\nblueszangeres\nbluf\nbluffen\nbluffer\nblufferig\nblufferij\nblufpoker\nblufpolitiek\nblunder\nblunderaar\nblunderen\nblusapparaat\nblusapparatuur\nblusboot\nblusgereedschap\nblusmiddel\nblusschuim\nblussen\nblusser\nblussing\nblusvliegtuig\nbluswagen\nbluswater\nbluswerk\nbluswerkzaamheden\nblut\nbluts\nblutsen\nblz.\nblèren\nblèt\nblèten\nbnp\nboa\nboa constrictor\nboard\nbob\nbobbaan\nbobbel\nbobbelen\nbobbelig\nbobbeling\nbobben\nbobber\nbobberen\nbobby\nbobijn\nbobijnen\nbobijnklos\nbobine\nbobo\nbobslee\nbobsleebaan\nbobsleebond\nbobsleeën\nbobsleeër\nbobtail\nbochel\nbochelaar\nbochelig\nbochelige\nbocheltje\nbocht\nbochtaanwijzer\nbochtafsnijding\nbochten\nbochtenwerk\nbochtig\nbochtigheid\nbock\nbockbier\nbod\nbode\nbodedienst\nbodega\nbodekamer\nbodeloon\nbodem\nbodemanalyse\nbodemarchief\nbodemas\nbodemattest\nbodembalk\nbodembedekker\nbodembedekking\nbodembedrag\nbodembeheer\nbodembeleid\nbodembescherming\nbodembeslag\nbodembroeder\nbodemcultuur\nbodemdaling\nbodemdegradatie\nbodemdier\nbodemen\nbodemerij\nbodemerosie\nbodemexploitatie\nbodemfauna\nbodemgebruik\nbodemgesteldheid\nbodemkoers\nbodemkunde\nbodemkundig\nbodemkundige\nbodemkwaliteit\nbodemlaag\nbodemleven\nbodemloos\nbodemmateriaal\nbodemmoeheid\nbodemmonster\nbodemonderzoek\nbodempensioen\nbodempje\nbodemplaat\nbodemprijs\nbodemprocedure\nbodemprofiel\nbodemrijkdom\nbodemsamenstelling\nbodemsanering\nbodemsaneringen\nbodemsaneringsdecreet\nbodemschat\nbodemschatten\nbodemslib\nbodemstructuur\nbodemstuk\nbodemtank\nbodemtarief\nbodemtemperatuur\nbodemuitkering\nbodemverbeteraar\nbodemverheffing\nbodemverontreiniging\nbodemvervuiling\nbodemvocht\nbodemvondst\nbodemvoorziening\nbodemvorming\nbodemvrijheid\nbodemvruchtbaarheid\nbodemwater\nboden\nbodes\nbodhisattva\nbody\nbodyart\nbodybag\nbodybuilden\nbodybuilder\nbodybuilding\nbodycheck\nbodyguard\nbodyliner\nbodylotion\nbodymilk\nbodypaint\nbodypainting\nbodyscan\nbodyshaping\nbodystocking\nbodysuit\nbodywarmer\nboe\nboeddha\nboeddhisme\nboeddhist\nboeddhistisch\nboede\nboedel\nboedelafstand\nboedelbeschrijving\nboedelhuis\nboedelkamer\nboedelkrediet\nboedellijst\nboedelredder\nboedelscheiding\nboedelschuld\nboedelverdeling\nboedelvereffening\nboef\nboefachtig\nboefje\nboeg\nboeganker\nboegbeeld\nboegdeur\nboegen\nboegeroep\nboeggolf\nboeghout\nboeglam\nboegschroef\nboegschroefinstallatie\nboegschroefmotor\nboegseren\nboegspriet\nboegsprietlopen\nboegstag\nboei\nboeidelen\nboeien\nboeiend\nboeienkoning\nboeier\nboeiing\nboeiplank\nboeireep\nboeisel\nboek\nboekaankondiging\nboekachtig\nboekanier\nboekband\nboekbedrijf\nboekbeoordeling\nboekbespreking\nboekbinden\nboekbinder\nboekbinderij\nboekbinderspers\nboekblok\nboekdatum\nboekdeel\nboekdruk\nboekdrukken\nboekdrukker\nboekdrukkerij\nboekdrukkunst\nboekdrukpers\nboeken\nboekenaanbod\nboekenantiquariaat\nboekenbal\nboekenbank\nboekenbedrijf\nboekenbeurs\nboekenbezit\nboekenbijlage\nboekenbon\nboekenbranche\nboekencensuur\nboekencentrum\nboekenclub\nboekendorp\nboekendrager\nboekenexpert\nboekenfonds\nboekengeld\nboekengeleerde\nboekengeleerdheid\nboekengids\nboekenhanger\nboekenhuur\nboekenkamer\nboekenkast\nboekenkennis\nboekenketen\nboekenkist\nboekenkoper\nboekenkraam\nboekenlegger\nboekenliefhebber\nboekenlijst\nboekenmarkt\nboekenmolen\nboekenonderzoek\nboekenpakket\nboekenplank\nboekenprijs\nboekenprijsvraag\nboekenprijzen\nboekenprogramma\nboekenreeks\nboekenrek\nboekenschrijver\nboekensector\nboekenserie\nboekenstad\nboekenstalletje\nboekenstandaard\nboekensteun\nboekentaal\nboekentafel\nboekentas\nboekentoptien\nboekenuitgever\nboekenuitgeverij\nboekenvak\nboekenverkoop\nboekenverzamelaar\nboekenverzameling\nboekenwereld\nboekenwijsheid\nboekenwinkel\nboekenworm\nboekenwurm\nboekerig\nboekerij\nboeket\nboekformaat\nboekfragmenten\nboekgegevens\nboekgeschenk\nboekgeschiedenis\nboekhandel\nboekhandelaar\nboekhandelaarsvereniging\nboekhandelketen\nboekhandelsketen\nboekhouden\nboekhouder\nboekhouding\nboekhoudkundig\nboekhoudkundige\nboekhoudmachine\nboekhoudmethode\nboekhoudprogramma\nboekhoudschandaal\nboekhoudsoftware\nboekhoudster\nboekhoudsysteem\nboekhoudtechniek\nboekillustratie\nboeking\nboekingscomputer\nboekingsdatum\nboekingskantoor\nboekingskantoren\nboekingsproces\nboekingsregel\nboekingssysteem\nboekjaar\nboekje\nboekmaag\nboekmerk\nboekomslag\nboekpresentatie\nboekrecensie\nboekrol\nboekschuld\nboekstaaf\nboekstaven\nboektitel\nboekuitgave\nboekverbranding\nboekverfilming\nboekverkoop\nboekverkoper\nboekverkopersbond\nboekverkoping\nboekverlies\nboekversiering\nboekverslag\nboekverzameling\nboekvink\nboekvorm\nboekwaarde\nboekweit\nboekweitegort\nboekweitmeel\nboekweitoogst\nboekweitzaad\nboekwerk\nboekwetenschap\nboekwinkel\nboekwinst\nboekworm\nboel\nboelage\nboeldag\nboeleerder\nboeleerster\nboelen\nboeleren\nboelgoed\nboelhuis\nboelijn\nboeltje\nboem\nboeman\nboemel\nboemelaar\nboemelbus\nboemelen\nboemeltje\nboemeltrein\nboemerang\nboemerangeffect\nboenborstel\nboender\nboendertjes\nboenen\nboenlap\nboenwas\nboer\nboerde\nboerderij\nboerderijdier\nboerderijtje\nboeren\nboerenafkomst\nboerenantiek\nboerenarbeider\nboerenbedrieger\nboerenbedrijf\nboerenbedrog\nboerenbevolking\nboerenbond\nboerenbont\nboerenboter\nboerenbrood\nboerenbruiloft\nboerenbuiten\nboerendans\nboerendeern\nboerendochter\nboerendorp\nboerendracht\nboerenerf\nboerenfamilie\nboerenfeest\nboerengat\nboerengehucht\nboerengemeenschap\nboerengezin\nboerengolf\nboerenherberg\nboerenhoeve\nboerenhof\nboerenhofstede\nboerenhofstee\nboerenhuis\nboereninkomen\nboerenjongen\nboerenjongens\nboerenkaas\nboerenkaffer\nboerenkapel\nboerenkar\nboerenkermis\nboerenkers\nboerenkeuken\nboerenkiel\nboerenkinkel\nboerenknecht\nboerenknul\nboerenkoffie\nboerenkool\nboerenkost\nboerenkrijt\nboerenland\nboerenleenbank\nboerenleider\nboerenleven\nboerenlobby\nboerenlul\nboerenmarkt\nboerenmeid\nboerenmeisje\nboerenmeisjes\nboerenmens\nboerenmetworst\nboerennachtegaal\nboerenopstand\nboerenorganisatie\nboerenpaard\nboerenpartij\nboerenplaats\nboerenpummel\nboerenschool\nboerenschroom\nboerenschuur\nboerensector\nboerensjees\nboerenslimheid\nboerenstand\nboerenstiel\nboerenstreek\nboerentaal\nboerentrien\nboerenverstand\nboerenvla\nboerenvolk\nboerenvrouw\nboerenwagen\nboerenwerf\nboerenwerk\nboerenwijsheid\nboerenwinkel\nboerenwoning\nboerenwormkruid\nboerenzaterdag\nboerenzoon\nboerenzwaluw\nboerin\nboerinnenbond\nboerinnenkleding\nboerinnenmuts\nboerka\nboerkaverbod\nboernoes\nboers\nboersheid\nboert\nboerten\nboerterij\nboertig\nboertigheid\nboertje\nboes\nboete\nboetebeding\nboetebedrag\nboetebedragen\nboetebepaling\nboeteclausule\nboeteclausules\nboetedag\nboetedoening\nboetekleed\nboetekleren\nboeteling\nboetelinge\nboeten\nboeteprediker\nboetepreek\nboeter\nboeteregeling\nboeterente\nboetestelsel\nboetesysteem\nboetetarief\nboetevrij\nboetgezant\nboetiek\nboetpredicatie\nboetprediker\nboetpreek\nboetprofeet\nboetpsalm\nboetseerder\nboetseerklei\nboetseerkunst\nboetseerwerk\nboetseren\nboetstraffelijk\nboetvaardig\nboetvaardigheid\nboevenbende\nboevennest\nboevenpak\nboevenpakje\nboevenstreek\nboeventaal\nboeventronie\nboeventuig\nboevenwagen\nboeverij\nboezel\nboezelaar\nboezem\nboezemen\nboezemfibrilleren\nboezemgebied\nboezemkade\nboezemland\nboezemmeer\nboezempeil\nboezemstand\nboezemvriend\nboezemvriendin\nboezemwater\nboezen\nboezeroen\nbof\nboffen\nboffer\nbofkont\nbogaard\nbogen\nbogengang\nbogey\nbohemer\nbohemien\nbohemienne\nbohème\nboiler\nbojaar\nbok\nbokaal\nbokje\nbokjespringen\nbokken\nbokkenbaard\nbokkenkop\nbokkenleer\nbokkenpoot\nbokkenpruik\nbokkenrijder\nbokkensprong\nbokkensprongen\nbokkentuig\nbokkenvel\nbokkenwagen\nbokkig\nbokkigheid\nbokkinees\nbokking\nbokkingrokerij\nbokkraan\nboksbaard\nboksbal\nboksbeugel\nboksbond\nbokscarrière\nboksen\nbokser\nboksersneus\nboksfilm\nbokshandschoen\nboksharing\nbokshoorn\nbokskampioen\nbokslegende\nboksmatch\nbokspartij\nbokspoot\nbokspringen\nboksring\nboksschool\nbokssport\nboksvoet\nbokswedstrijd\nboktor\nbol\nbolakker\nbolakkers\nbolbaan\nbolbegonia\nbolbliksem\nbolder\nbolderen\nbolderik\nbolderkar\nbolderpen\nboldershof\nbolderwagen\nboldriehoek\nboldriehoeksmeting\nboleet\nbolero\nbolgewas\nbolhamer\nbolheid\nbolhoed\nbolide\nbolk\nbolkaf\nbolknak\nbolkop\nbollandist\nbolle\nbolleboos\nbollejagen\nbolleke\nbollen\nbollenbakker\nbollenboer\nbollenkweker\nbollenland\nbollenschuur\nbollenstreek\nbollenteelt\nbollentijd\nbollenveld\nbolletje\nbolletjesmachine\nbolletjesslikker\nbolletjestrui\nbolletrieboom\nbollewangenhapsnoet\nbollig\nbolling\nboloppervlak\nbolplant\nbolrond\nbolscharnier\nbolschijf\nbolschil\nbolsegment\nbolsjewiek\nbolsjewisme\nbolsjewist\nbolsjewistisch\nbolspel\nbolspits\nbolstaand\nbolster\nbolsteren\nbolus\nbolvorm\nbolvormig\nbolwangig\nbolwassing\nbolwerk\nbolwerken\nbolwoning\nbolworm\nbolzaad\nbom\nbomaanslag\nbomaanval\nbomalarm\nbomauto\nbombam\nbombarde\nbombardeerder\nbombardement\nbombardementspauze\nbombardementsvliegtuig\nbombardementsvlucht\nbombarderen\nbombardon\nbombarie\nbombast\nbombastisch\nbombazijn\nbombazijnen\nbomberen\nbomberjack\nbombrief\nbombriefje\nbomen\nbomenbestand\nbomenkap\nbomenlaan\nbomenrij\nbomenrijke\nbomentuin\nbomer\nbomexpert\nbomexplosie\nbomgat\nbomig\nbomijs\nbominslag\nbomkrater\nbomma\nbommel\nbommelder\nbommelding\nbommelen\nbommen\nbommencampagne\nbommenlast\nbommenlegger\nbommenmaker\nbommenregen\nbommenrichter\nbommentapijt\nbommenwerper\nbommerd\nbommetje\nbommoeder\nbomontploffing\nbompa\nbompakket\nbomschade\nbomscherf\nbomschuit\nbomtapijt\nbomtrechter\nbomvol\nbomvrij\nbomvrouw\nbon\nbon mot\nbon ton\nbon vivant\nbonafide\nbonboekje\nbonbon\nbonbondoos\nbonbonnière\nbond\nbondage\nbondel\nbonden\nbondgenoot\nbondgenootschap\nbondgenootschappelijk\nbondgenote\nbondig\nbondigheid\nbondsbegroting\nbondsbeleid\nbondsbestuur\nbondsbestuurder\nbondsblad\nbondsbureau\nbondscoach\nbondscoachschap\nbondsdag\nbondselftal\nbondshotel\nbondskanselier\nbondskanselierschap\nbondsland\nbondsleiding\nbondslid\nbondslidmaatschap\nbondsman\nbondsminister\nbondsorgaan\nbondspresident\nbondspresidentschap\nbondsraad\nbondsregering\nbondsridder\nbondsstaat\nbondstrainer\nbondsvergadering\nbondsvergaderingen\nbondsvertegenwoordiger\nbondsvoorzitter\nbonenbed\nbonenkever\nbonenkoffie\nbonenkruid\nbonenmeel\nbonenschil\nbonensoep\nbonenstaak\nbonenstro\nbonenveld\nbongerd\nbongo\nbonhomie\nboni\nbonificatie\nbonificatieseconde\nboniment\nbonje\nbonjour\nbonjouren\nbonk\nbonkaart\nbonken\nbonker\nbonkerig\nbonket\nbonkig\nbonksel\nbonkveen\nbonnenboekje\nbonnenstelsel\nbonnensysteem\nbonnet\nbonnetterie\nbonnummer\nbonobo\nbons\nbonsai\nbont\nbontbekplevier\nbontbladig\nbontcape\nbonten\nbontgekleurd\nbontgoed\nbonthandel\nbontheid\nbontjas\nbontje\nbontkraag\nbontlaars\nbontmantel\nbontmuts\nbontstola\nbontwerk\nbontwerker\nbonus\nbonus-cd\nbonus-malus\nbonus-malusregeling\nbonus-malussysteem\nbonusaandeel\nbonusafspraak\nbonuskaart\nbonusprijzen\nbonuspunt\nbonusregeling\nbonussen\nbonussysteem\nbonze\nbonzen\nboobytrap\nbood\nboodschap\nboodschapjongen\nboodschaploper\nboodschappen\nboodschappenauto\nboodschappenbriefje\nboodschappendienst\nboodschappenjongen\nboodschappenkarretje\nboodschappenlijst\nboodschappenlijstje\nboodschappenloper\nboodschappenmand\nboodschappentas\nboodschappenwagen\nboodschappenwagentje\nboodschapper\nboodschapperig\nboog\nboogbal\nboogballetje\nboogbrug\nboogelement\nboogfries\nbooggewelf\nbooggraad\nboogiewoogie\nbooglamp\nbooglengte\nboogmaker\nboogminuut\nboograam\nboogscheut\nboogschieten\nboogschot\nboogschutter\nboogseconde\nboogseconden\nboogsgewijs\nboogsgewijze\nboogspanning\nboogtangens\nboogveld\nboogvenster\nboogvorm\nboogvormig\nboogweerstand\nbookmaker\nbooleaans\nboom\nboomaanplant\nboomaanplanting\nboombast\nboomblad\nboomchirurg\nboomchirurgie\nboomdiagram\nboomgaard\nboomgrens\nboomgroep\nboomhut\nbooming\nboomkikker\nboomkikvors\nboomklever\nboomkor\nboomkorvisserij\nboomkruin\nboomkruiper\nboomkweker\nboomkwekerij\nboomlang\nboommarter\nboommos\nboompieper\nboompje\nboomrijk\nboomschaar\nboomschors\nboomslak\nboomslang\nboomsnoeier\nboomsoort\nboomstam\nboomstronk\nboomstructuur\nboomtak\nboomteelt\nboomtop\nboomvalk\nboomvaren\nboomveil\nboomvrucht\nboomwagen\nboomwortel\nboomzaad\nboomzaag\nboomzwam\nboon\nboonerwt\nboonkruid\nboonrank\nboonstaak\nboontje\nboonvormig\nboonzaaier\nboor\nbooras\nboorbank\nboorbedrijf\nboorbeitel\nboorbuis\nboord\nboordcomputer\nboorden\nboordenknoop\nboordenknoopje\nboordevol\nboordevolletje\nboordkanon\nboordlantaarn\nboordlicht\nboordlint\nboordpapieren\nboordpersoneel\nboordradio\nboordroeien\nboordschutter\nboordsel\nboordtelegrafist\nboordwapen\nboordwerktuigkundige\nbooreiland\nboorgat\nboorgruis\nboorhamer\nboorijzer\nboorinstallatie\nboorkern\nboorkever\nboorkop\nboorling\nboorlingske\nboorlocatie\nboormachine\nboormal\nboormethode\nboormossel\nbooromslag\nboorplatform\nboorproces\nboorput\nboorschip\nboorsel\nboorspil\nboorspoeling\nboort\nboortechniek\nboortol\nboortoren\nboortunnel\nboorvergunning\nboorwater\nboorwerkzaamheden\nboorzalf\nboorzuur\nboos\nboosaardig\nboosaardigheid\nboosdoener\nboosdoenster\nboosheid\nboost\nbooster\nbooswicht\nboot\nbootafhouder\nbootee\nbooteigenaar\nbooten\nboothals\nboothamer\nboothuis\nbootleg\nbootlengte\nbootreis\nboots\nbootsen\nbootsgezel\nbootshaak\nbootslengte\nbootsmaat\nbootsman\nbootsmansjongen\nbootsmansmaat\nbootsvolk\nboottocht\nboottrailer\nboottrein\nbootverbinding\nbootvirus\nbootvluchteling\nbootwerker\nbopper\nboraat\nborat\nborax\nbord\nbordeaux\nbordeauxrood\nbordeauxs\nbordeauxwijn\nbordeel\nbordeelbezoek\nbordeelhouder\nbordeelhoudster\nbordeelsluiper\nbordeelverbod\nbordelaise\nborden\nbordendoek\nbordenrek\nbordenwarmer\nbordenwasmachine\nbordenwasser\nborder\nborderel\nborderline\nborderlinepatiënt\nborderliner\nborderterriër\nbordes\nbordkarton\nbordkartonnen\nbordpapier\nbordpapieren\nbordspel\nborduren\nborduur\nborduurgaas\nborduurgaren\nborduurkatoen\nborduurnaald\nborduurraam\nborduursel\nborduursteek\nborduurster\nborduurwerk\nborduurzij\nborduurzijde\nboreaal\nboreling\nboren\nborend\nborg\nborgbout\nborgen\nborghaak\nborging\nborgketting\nborgmoer\nborgpen\nborgsom\nborgsteller\nborgstelling\nborgtocht\nboring\nborium\nbornput\nborrel\nborrelaar\nborrelen\nborrelfles\nborrelgarnituur\nborrelglas\nborrelhapje\nborrelnoot\nborrelnootje\nborrelpraat\nborrelpraatjes\nborreltafel\nborreltafelpraat\nborreltijd\nborreltje\nborreluur\nborsalino\nborst\nborstaandoening\nborstamputatie\nborstbeeld\nborstbeen\nborstcrawl\nborstel\nborstelachtig\nborstelbaan\nborstelden\nborstelen\nborstelgras\nborstelhaar\nborstelhanger\nborstelig\nborsteling\nborstelmaker\nborstelsnor\nborstelwerk\nborsten\nborsthaar\nborstharnas\nborstholte\nborsthoning\nborsthoogte\nborstkanker\nborstkankergen\nborstkankeronderzoek\nborstkankerscreening\nborstkas\nborstkind\nborstklier\nborstklopperij\nborstkruiden\nborstkruis\nborstkwaal\nborstlap\nborstlijder\nborstmicrofoon\nborstonderzoek\nborstontsteking\nborstoperatie\nborstpartij\nborstplaat\nborstprothese\nborstrok\nborstschild\nborstslag\nborstspeld\nborstspier\nborststem\nborststreek\nborststuk\nborsttering\nborsttumor\nborstvergroting\nborstverkleining\nborstvin\nborstvlies\nborstvliesontsteking\nborstvoeding\nborstweefsel\nborstwering\nborstwervel\nborstzak\nborstziekte\nborstzwemmen\nbos\nbosaanleg\nbosaanplant\nbosaardbei\nbosachtig\nbosanemoon\nbosarbeid\nbosarbeider\nbosareaal\nbosbedrijf\nbosbeheer\nbosbeleid\nbosbes\nbosbessengelei\nbosbessenjam\nbosbewoner\nbosbezit\nbosbloem\nbosbodem\nbosbouw\nbosbouwbedrijf\nbosbouwer\nbosbouwkunde\nbosbouwkundig\nbosbouwkundige\nbosbouwonderwijs\nbosbouwproject\nbosbrand\nboscultuur\nbosduif\nbosduivel\nboseigenaar\nbosfazant\nbosflora\nbosgebied\nbosgeest\nbosgeur\nbosgeus\nbosgod\nbosgodin\nbosgrond\nboshoen\nboshut\nbosje\nboskabouter\nboskant\nboskap\nboskat\nbosklas\nbosland\nboslandcreool\nboslandschap\nboslelie\nbosloop\nboslucht\nbosmeester\nbosmens\nbosmier\nbosmuis\nbosneger\nbosnegers\nbosnimf\nboson\nbospad\nbospartijen\nbospeen\nbosperceel\nbosplan\nbosrand\nbosrijk\nbossanova\nbosschage\nbosseleren\nbossen\nbosspeurtocht\nbost\nbostel\nbosterrein\nboston\nbostra\nbosui\nbosuil\nbosvaren\nbosveen\nbosviooltje\nbosvruchten\nboswachter\nboswachterij\nboswandeling\nbosweg\nboswezen\nbot\nbotaf\nbotanica\nbotanicus\nbotanie\nbotanisch\nbotaniseertrommel\nbotaniseren\nbotanist\nbotbreuk\nbotdichtheid\nbotel\nboten\nbotenbouw\nbotenbouwer\nbotenhuis\nbotenparade\nboter\nboter-kaas-en-eieren\nboterachtig\nboterberg\nboterbiesje\nboterbloem\nboterboer\nboterbriefje\nbotercontrole\nboterdoos\nboteren\nboterfabriek\nboterfraude\nbotergeel\nboterham\nboterhambeleg\nboterhammenpapier\nboterhampapier\nboterhampasta\nboterhamtrommel\nboterhamtrommeltje\nboterhamworst\nboterhamzakje\nboterkleursel\nboterkoek\nboterland\nboterletter\nbotermals\nbotermarkt\nbotermelk\nbotermerk\nbotermijn\nboterolie\nboterpeer\nboterpot\nbotersaus\nboterspaan\nbotersprits\nboterstaaf\nbotervat\nbotervet\nbotervloot\nbotervlootje\nboterwaag\nboterwagen\nboterwarmer\nboterzacht\nboterzuur\nbotheid\nbotje\nbotjes\nbotkanker\nbotmassa\nbotmateriaal\nbotmuil\nbotonderzoek\nbotontkalking\nbotox\nbotrest\nbots\nbotsauto\nbotsautootje\nbotsen\nbotsing\nbotsplinter\nbotsproef\nbotstructuur\nbotsveiligheid\nbotte\nbottel\nbottelaar\nbottelarij\nbottelbier\nbottelen\nbottelier\nbotteling\nbottellijn\nbotteloef\nbottelroos\nbotten\nbottenkraker\nbotter\nbotterik\nbottine\nbottleneck\nbottom-up\nbotuline\nbotulisme\nbotverlies\nbotvieren\nbotvink\nbotvlies\nbotweefsel\nbotweg\nboucharderen\nbouclé\nboud\nbouderen\nboudoir\nboudweg\nbouffante\nbougainville\nbougainvillea\nbougie\nbougiesleutel\nbouillabaisse\nbouilli\nbouillon\nbouillonblokje\nbouillonkop\nbouillonsoep\nbouillontablet\nboulanger\nboulevard\nboulevardblad\nboulevardjournalistiek\nboulevardkrant\nboulevardpers\nboulimia\nboulimia nervosa\nboulimie\nbourbon\nbourdon\nbourgeois\nbourgeoisie\nbourgogne\nbourgognewijn\nbourgondisch\nbourgondiër\nbourree\nboussole\nbout\nboutade\nbouten\nboutverbinding\nbouvier\nbouw\nbouw-cao\nbouwaannemer\nbouwaanvraag\nbouwactiviteit\nbouwafval\nbouwbedrijf\nbouwbeleid\nbouwbeschrijving\nbouwbesluit\nbouwbeurs\nbouwblok\nbouwbond\nbouwbranche\nbouwbudget\nbouwbureau\nbouwcapaciteit\nbouwcentrum\nbouwcombinatie\nbouwcommissie\nbouwconcern\nbouwconsortium\nbouwconstructie\nbouwcontingent\nbouwcontract\nbouwcoördinator\nbouwdeel\nbouwdivisie\nbouwdok\nbouwdoos\nbouwdrift\nbouwelement\nbouwen\nbouwenquête\nbouwer\nbouwerij\nbouwfase\nbouwfirma\nbouwfonds\nbouwfraude\nbouwfraudezaak\nbouwgeschiedenis\nbouwgigant\nbouwgolf\nbouwgroep\nbouwgrond\nbouwheer\nbouwhistoricus\nbouwhistorisch\nbouwhoogte\nbouwindustrie\nbouwjaar\nbouwkartel\nbouwkas\nbouwkavel\nbouwkeet\nbouwklaar\nbouwklimaat\nbouwkoorts\nbouwkosten\nbouwkraan\nbouwkranen\nbouwkuip\nbouwkunde\nbouwkundestudent\nbouwkundig\nbouwkundige\nbouwkunst\nbouwkunstenaar\nbouwlaag\nbouwland\nbouwleges\nbouwleider\nbouwlift\nbouwlobby\nbouwlocatie\nbouwloods\nbouwmaatschappij\nbouwmagnaat\nbouwmarkt\nbouwmassa\nbouwmateriaal\nbouwmaterialengroep\nbouwmaterialenhandel\nbouwmeester\nbouwmethode\nbouwmuur\nbouwnijverheid\nbouwondernemer\nbouwonderneming\nbouwopdracht\nbouwopgave\nbouworde\nbouwpakket\nbouwpastoor\nbouwperceel\nbouwperiode\nbouwplaat\nbouwplaats\nbouwplan\nbouwplek\nbouwploeg\nbouwpolitie\nbouwpoot\nbouwpremie\nbouwprijs\nbouwprocedure\nbouwproces\nbouwproductie\nbouwprogramma\nbouwproject\nbouwpromotor\nbouwput\nbouwrecht\nbouwrente\nbouwresearch\nbouwrijp\nbouwschade\nbouwschema\nbouwsector\nbouwsel\nbouwsnelheid\nbouwsom\nbouwspeelplaats\nbouwstaking\nbouwsteen\nbouwsteencorrespondentie\nbouwsteiger\nbouwstijl\nbouwstof\nbouwstoffen\nbouwstop\nbouwstroom\nbouwsubsidie\nbouwsysteem\nbouwteam\nbouwtechniek\nbouwtechnisch\nbouwtekening\nbouwtempo\nbouwtermijn\nbouwterrein\nbouwtijd\nbouwtoezicht\nbouwtrant\nbouwtype\nbouwvak\nbouwvakantie\nbouwvakarbeider\nbouwvakker\nbouwvakvakantie\nbouwvakvakanties\nbouwval\nbouwvallig\nbouwvalligheid\nbouwverbod\nbouwvereniging\nbouwvergadering\nbouwvergunning\nbouwverkeer\nbouwverlof\nbouwverordening\nbouwvolume\nbouwvoorschrift\nbouwwereld\nbouwwerf\nbouwwerk\nbouwwijze\nbouwwoede\nboven\nbovenaan\nbovenaanzicht\nbovenaards\nbovenaf\nbovenal\nbovenarm\nbovenarms\nbovenbaas\nbovenbedoeld\nbovenbeen\nbovenbeenspier\nbovenberging\nbovenbeschreven\nbovenbewust\nbovenbewustzijn\nbovenblad\nbovenblijven\nbovenbouw\nbovenbouwleerling\nbovenbramzeil\nbovenbuik\nbovenburen\nbovenbuur\nbovenbuurman\nbovenbuurvrouw\nbovendeel\nbovendek\nbovendeks\nbovendeur\nbovendien\nbovendijks\nbovendorpel\nbovendrempel\nbovendrijven\nbovendruk\nboveneind\nboveneinde\nbovenetage\nbovengebit\nbovengedeelte\nbovengegeven\nbovengemeentelijk\nbovengemeld\nbovengemiddeld\nbovengenoemd\nbovengeschetst\nbovengesteld\nbovengistend\nbovengoed\nbovengreep\nbovengrens\nbovengrond\nbovengronds\nbovenhalen\nbovenhand\nbovenhands\nbovenhoek\nbovenhouden\nbovenhuis\nbovenin\nbovenkaak\nbovenkamer\nbovenkant\nbovenkast\nbovenkastje\nbovenkerk\nbovenklasse\nbovenkleding\nbovenkleed\nbovenkleren\nbovenkomen\nbovenkruier\nbovenlaag\nbovenlader\nbovenlaken\nbovenland\nbovenlander\nbovenlands\nbovenlangs\nbovenlast\nbovenlat\nbovenleder\nbovenleer\nbovenleiding\nbovenlichaam\nbovenlicht\nbovenliggen\nbovenliggend\nbovenlijf\nbovenlip\nbovenlokaal\nbovenlood\nbovenloop\nbovenlucht\nbovenmaats\nbovenmanuaal\nbovenmarge\nbovenmate\nbovenmatig\nbovenmeester\nbovenmeid\nbovenmenselijk\nbovenminimaal\nbovenmodaal\nbovennationaal\nbovennatuurlijk\nbovennormaal\nbovenom\nbovenomschreven\nbovenop\nbovenover\nbovenpartijdig\nbovenpersoonlijk\nbovenraam\nbovenrand\nbovenregionaal\nbovenrivier\nbovenschip\nbovenschool\nbovensmering\nbovensom\nbovenst\nbovenstaand\nbovenstad\nbovenstandig\nbovenstatelijk\nbovenste\nbovenstel\nbovenstem\nbovenstroom\nbovenstrooms\nbovenstuk\nbovenstukje\nboventallig\nboventalligheid\nboventand\nboventiteling\nboventoon\nbovenuit\nbovenvenster\nbovenverdieping\nbovenvermeld\nbovenvlak\nbovenwaarde\nbovenwaarts\nbovenwater\nbovenwereld\nbovenwerk\nbovenwettelijk\nbovenwind\nbovenwinds\nbovenwoning\nbovenzaal\nbovenzij\nbovenzijde\nbovenzinnelijk\nbovien\nbowl\nbowlen\nbowler\nbowlglas\nbowling\nbowlingbaan\nbowlingbal\nbowls\nbox\nboxcalf\nboxen\nboxer\nboxermotor\nboxershort\nboxspring\nboy\nboyband\nboycot\nboycotactie\nboycotmaatregel\nboycotten\nboysband\nboze\nbozig\nbpm\nbraadboter\nbraadharing\nbraadjus\nbraadkip\nbraadlucht\nbraadoven\nbraadpan\nbraadproduct\nbraadschotel\nbraadslede\nbraadslee\nbraadspit\nbraadstuk\nbraadvet\nbraadvocht\nbraadworst\nbraadzak\nbraaf\nbraafheid\nbraafjes\nbraai\nbraak\nbraak leggen\nbraakbal\nbraakgas\nbraakgrond\nbraakjaar\nbraakland\nbraaklegging\nbraakliggend\nbraakloop\nbraakmiddel\nbraakneiging\nbraakneigingen\nbraaknoot\nbraakpoeder\nbraakschade\nbraaksel\nbraakwortel\nbraam\nbraambes\nbraambos\nbraamstruik\nbrabbel\nbrabbelaar\nbrabbelaarster\nbrabbelen\nbrabbeltaal\nbracelet\nbrachiaal\nbracht\nbrachycefaal\nbrachygrafie\nbrachytherapie\nbraden\nbraderie\nbraderij\nbrahmaan\nbrahmanisme\nbraille\nbrailledruk\nbraillemachine\nbrailleschrift\nbraillestenomachine\nbrailleteken\nbrainbox\nbraindrain\nbrainstorm\nbrainstormen\nbrainstorming\nbrainstormronde\nbrainstormsessie\nbraintrust\nbrainwashen\nbrainwashing\nbrainwave\nbrak\nbraken\nbraker\nbrakheid\nbraking\nbrakken\nbrallen\nbrallerig\nbram\nbramen\nbrammen\nbramra\nbramsteng\nbramzeil\nbrancard\nbrancardier\nbranche\nbranchecode\nbranchegenoot\nbranchegroep\nbranchegroepen\nbranchenummer\nbrancheorganisatie\nbrancheschets\nbranchevereniging\nbranchevervaging\nbranchevreemd\nbranchevreemde\nbrand\nbrandaanslag\nbrandalarm\nbrandassurantie\nbrandbaar\nbrandbaarheid\nbrandbestrijders\nbrandbestrijding\nbrandbestrijdingsmateriaal\nbrandbeveiliging\nbrandbijl\nbrandblaar\nbrandblusapparaat\nbrandblusapparatuur\nbrandblusinstallatie\nbrandblusleiding\nbrandbluspomp\nbrandblusser\nbrandblussysteem\nbrandbom\nbrandbrief\nbranddetectie\nbranddeur\nbrandebourgs\nbrandemmer\nbranden\nbrandend\nbrander\nbranderhuis\nbranderig\nbranderigheid\nbranderij\nbrandewijn\nbrandewijnstoker\nbrandgang\nbrandgans\nbrandgat\nbrandgeur\nbrandgevaar\nbrandgevaarlijk\nbrandgevaarlijkheid\nbrandgevel\nbrandglas\nbrandgranaat\nbrandhaak\nbrandhaard\nbrandhelder\nbrandhout\nbrandig\nbrandijzer\nbranding\nbrandje\nbrandkast\nbrandkeur\nbrandkist\nbrandklep\nbrandkleppen\nbrandklok\nbrandkluis\nbrandkogel\nbrandkoren\nbrandkraan\nbrandkruid\nbrandladder\nbrandlucht\nbrandmeester\nbrandmelder\nbrandmelding\nbrandmerk\nbrandmerken\nbrandmuur\nbrandnetel\nbrandoefening\nbrandoffer\nbrandpiket\nbrandplaat\nbrandplaatje\nbrandplek\nbrandpolis\nbrandpreventie\nbrandpunt\nbrandpuntsafstand\nbrandrisico\nbrandschade\nbrandschat\nbrandschatten\nbrandschatting\nbrandschel\nbrandscherm\nbrandschilder\nbrandschilderen\nbrandschoon\nbrandsel\nbrandslang\nbrandspiegel\nbrandspiritus\nbrandspuit\nbrandstapel\nbrandstichten\nbrandstichter\nbrandstichting\nbrandstichtster\nbrandstof\nbrandstofaccijns\nbrandstofbesparing\nbrandstofbunker\nbrandstofcel\nbrandstofcrisis\nbrandstofelement\nbrandstoffenhandelaar\nbrandstoffenheffing\nbrandstoffenverbruik\nbrandstoffilter\nbrandstofgebrek\nbrandstofgebruik\nbrandstofheffing\nbrandstofkosten\nbrandstofleiding\nbrandstofleidingsysteem\nbrandstofmeter\nbrandstofmeting\nbrandstofoverzicht\nbrandstofpomp\nbrandstofprijs\nbrandstofrekening\nbrandstofreserve\nbrandstofschaarste\nbrandstofslang\nbrandstofsysteem\nbrandstoftank\nbrandstoftekort\nbrandstoftoeslag\nbrandstoftoevoer\nbrandstoftrimpompen\nbrandstofverbruik\nbrandstofvoorraad\nbrandstofvoorziening\nbrandstrook\nbrandtoren\nbrandtrap\nbrandveilig\nbrandveiligheid\nbrandveiligheidseis\nbrandverf\nbrandvertragend\nbrandverzekering\nbrandverzekeringsmaatschappij\nbrandvlak\nbrandvlek\nbrandvos\nbrandvrij\nbrandwaarborgmaatschappij\nbrandwacht\nbrandweer\nbrandweerauto\nbrandweercommandant\nbrandweergreep\nbrandweerhelm\nbrandweerinspectie\nbrandweerkazerne\nbrandweerkorps\nbrandweerlieden\nbrandweerman\nbrandweerofficier\nbrandweerorganisatie\nbrandweerpersoneel\nbrandweerploeg\nbrandweerpost\nbrandweerteam\nbrandweervrouw\nbrandweerwagen\nbrandweerzorg\nbrandweg\nbrandwerend\nbrandwond\nbrandwonde\nbrandwondencentrum\nbrandwondenziekenhuis\nbrandy\nbrandzalf\nbranie\nbranieachtig\nbraniemaker\nbranieschopper\nbras\nbrasem\nbraspartij\nbrassband\nbrassen\nbrasserie\nbrasserieën\nbrasserij\nbrassière\nbrat\nbrave hendrik\nbraveren\nbraverik\nbravigheid\nbravissimo\nbravo\nbravogeroep\nbravoure\nbravourestuk\nbraziel\nbrazielhout\nbreak\nbreak-evenpoint\nbreak-evenpunt\nbreakbeat\nbreakdance\nbreakdancen\nbreakdancer\nbreakdown\nbreakpoint\nbreed\nbreed lachend\nbreedband\nbreedbandig\nbreedbandinternet\nbreedbandnetwerk\nbreedbandtechnologie\nbreedbandverbinding\nbreedbeeld\nbreedbeeld-tv\nbreedbeeldscherm\nbreedbeeldtelevisie\nbreedbladig\nbreeddenkend\nbreedgebouwd\nbreedgedragen\nbreedgerand\nbreedgeschouderd\nbreedgrijnzend\nbreedheid\nbreedspoor\nbreedsprakig\nbreedsprakigheid\nbreedstraler\nbreedte\nbreedtecirkel\nbreedtegraad\nbreedtepass\nbreedtesport\nbreeduit\nbreedvoerig\nbreedvoerigheid\nbreefok\nbreek\nbreekal\nbreekbaar\nbreekbaarheid\nbreekbeitel\nbreekgeld\nbreekijzer\nbreekijzerfunctie\nbreekpen\nbreekpercentage\nbreekpunt\nbreeks\nbreekschade\nbreeksterkte\nbreekwerf\nbreekwerk\nbreeuwen\nbreeuwhamer\nbreeuwijzer\nbreeuwwerk\nbreezer\nbrei\nbreidel\nbreidelen\nbreideling\nbreidelloos\nbreien\nbreier\nbreigaren\nbreigoed\nbreikatoen\nbreikous\nbreimachine\nbrein\nbreinaald\nbreinbreker\nbreipatroon\nbreipen\nbreipriem\nbreischool\nbreisel\nbreister\nbreiwerk\nbreiwerkje\nbreiwol\nbrekebeen\nbreken\nbreker\nbreking\nbrekingshoek\nbrekingsindex\nbrem\nbremraap\nbrems\nbremstruik\nbremze\nbremzout\nbren\nbrengen\nbrenger\nbrengservice\nbres\nbressen\nbretel\nbretels\nbreuk\nbreukband\nbreukbelasting\nbreukdeel\nbreukdelen\nbreukgedeelte\nbreukje\nbreuklijn\nbreukoperatie\nbreukpunt\nbreukspanning\nbreuksplitsing\nbreuksteen\nbreukstreep\nbreukvastheid\nbreukvlak\nbreukzone\nbreve\nbrevet\nbrevetteren\nbreviarium\nbreviatuur\nbrevier\nbrevieren\nbric-à-brac\nbricoleren\nbridge\nbridgeavond\nbridgeclub\nbridgedrive\nbridgen\nbridgepartij\nbridger\nbridgeseizoen\nbridgespel\nbridgespeler\nbridgetafel\nbridgeteam\nbridgevereniging\nbridgewedstrijd\nbrie\nbrief\nbriefaanhef\nbriefadres\nbriefbom\nbriefdrager\nbriefen\nbrieffragment\nbriefgeheim\nbriefhoofd\nbriefing\nbriefje\nbriefkaart\nbriefkaartje\nbriefkaartjes\nbriefmodel\nbriefnummer\nbriefomslag\nbriefopener\nbriefopening\nbriefpapier\nbriefport\nbriefporto\nbriefpost\nbriefroman\nbriefschrijfster\nbriefschrijver\nbriefsoort\nbriefstijl\nbrieftelegram\nbriefvorm\nbriefweger\nbriefwisseling\nbries\nbriesen\nbriesje\nbrievenactie\nbrievenbesteller\nbrievenboek\nbrievenbundel\nbrievenbus\nbrievenbusfirma\nbrievenbusmaatschappij\nbrievenbuspost\nbrievencampagne\nbrievengaarder\nbrievenhoofd\nbrievenmaal\nbrievenpost\nbrievenroman\nbrievenrubriek\nbrievenschrijver\nbrieventas\nbrievenweger\nbrievenzak\nbrigade\nbrigadecommandant\nbrigadegeneraal\nbrigadier\nbrigadier-generaal\nbrigantijn\nbrij\nbrijachtig\nbrijen\nbrijn\nbrijnen\nbrijpot\nbrijzel\nbrik\nbriket\nbrikken\nbriksteen\nbril\nbrildragend\nbrildrager\nbrilduiker\nbrileend\nbriljant\nbriljanten\nbriljantslijper\nbrillantine\nbrille\nbrillen\nbrillendoos\nbrillenglas\nbrillenhuis\nbrillenkoker\nbrillenmaker\nbrillenman\nbrillenslijper\nbrillenwinkel\nbrilmontuur\nbrilscore\nbrilslang\nbrink\nbrinkdorp\nbrio\nbrioche\nbrique\nbrisant\nbrisantbom\nbrisantgranaat\nbristolpapier\nbrits\nbritsen\nbrocante\nbroccoli\nbroche\nbrocheren\nbrochette\nbrochure\nbrod\nbroddelaar\nbroddelarij\nbroddelen\nbroddellap\nbroddelwerk\nbrodeloos\nbroderie\nbroed\nbroedei\nbroeden\nbroeder\nbroederband\nbroederdienst\nbroedergemeente\nbroederhand\nbroederkus\nbroederland\nbroederliefde\nbroederlijk\nbroederlijkheid\nbroedermoord\nbroederoorlog\nbroederschap\nbroederschapshuis\nbroederschool\nbroederstrijd\nbroedertje\nbroedertrouw\nbroedertwist\nbroedervolk\nbroedgast\nbroedgebied\nbroedhen\nbroedhok\nbroedkamer\nbroedkolonie\nbroedmachine\nbroedoven\nbroedpaar\nbroedplaats\nbroedplek\nbroeds\nbroedseizoen\nbroedsel\nbroedsheid\nbroedstoof\nbroedsucces\nbroedtijd\nbroedvogel\nbroedzorg\nbroei\nbroeibak\nbroeibed\nbroeien\nbroeierig\nbroeierigheid\nbroeierij\nbroeikas\nbroeikaseffect\nbroeikaseffecten\nbroeikasgas\nbroeikasprobleem\nbroeimest\nbroeinest\nbroek\nbroekband\nbroeken\nbroekenman\nbroekgesp\nbroekje\nbroekjurk\nbroekklem\nbroekkousen\nbroekland\nbroekpak\nbroekpers\nbroekriem\nbroekrok\nbroeksband\nbroekschijter\nbroekspijp\nbroeksriem\nbroekstuk\nbroekveer\nbroekvent\nbroekventje\nbroekzak\nbroer\nbroertje\nbroes\nbroezen\nbrogue\nbrok\nbrokaat\nbrokaten\nbroker\nbrokje\nbrokjes\nbrokkel\nbrokkelen\nbrokkelig\nbrokkeling\nbrokken\nbrokkenmaakster\nbrokkenmaker\nbrokkenpiloot\nbroksgewijs\nbrokstuk\nbrokstukjes\nbrol\nbrom\nbrombas\nbrombeer\nbromberen\nbromelia\nbromfiets\nbromfietscertificaat\nbromfietsen\nbromfietser\nbromfietshelm\nbromfietsster\nbromide\nbromium\nbrommen\nbrommer\nbrommerig\nbrommers\nbrommig\nbrommobiel\nbrompot\nbromscooter\nbromsnor\nbromstem\nbromtol\nbromvlieg\nbron\nbronader\nbronbelasting\nbronbemaling\nbronbescherming\nbronbestand\nbronchiaal\nbronchitis\nbronchiën\nbroncode\nbronfunctie\nbrongas\nbronheffing\nbronmateriaal\nbronnengids\nbronnenkritiek\nbronnenlijst\nbronnenmateriaal\nbronnenonderzoek\nbronnenstudie\nbronolie\nbrons\nbronsgieter\nbronsgroen\nbronskleurig\nbronsperiode\nbronst\nbronstig\nbronstigheid\nbronstijd\nbronsttijd\nbrontekst\nbrontosaurus\nbronvermelding\nbronverwijzing\nbronwater\nbronzen\nbrooche\nbrood\nbroodbakken\nbroodbakker\nbroodbakkerij\nbroodbeleg\nbroodbezorger\nbroodbon\nbroodboom\nbrooddeeg\nbrooddief\nbrooddoos\nbrooddronken\nbrooddronkenheid\nbroodfabriek\nbroodfietser\nbroodgebrek\nbroodgraan\nbroodheer\nbroodje\nbroodje aap\nbroodjeaapverhaal\nbroodjeslunch\nbroodjesmaaltijd\nbroodjeswinkel\nbroodjeszaak\nbroodkaart\nbroodkar\nbroodkast\nbroodkeuken\nbroodkoren\nbroodkorst\nbroodkruim\nbroodkruimel\nbroodletter\nbroodleverancier\nbroodmaaltijd\nbroodmachine\nbroodmager\nbroodmand\nbroodmes\nbroodmix\nbroodnijd\nbroodnodig\nbroodnuchter\nbroodoorlog\nbroodplank\nbroodprijs\nbroodrantsoen\nbroodroof\nbroodrooster\nbroodroven\nbroodschotel\nbroodschrijver\nbroodsnijmachine\nbroodsoort\nbroodspeler\nbroodsuiker\nbroodtekst\nbroodtrommel\nbroodverkoop\nbroodvorm\nbroodwinner\nbroodwinning\nbroodzak\nbroodzetting\nbroom\nbroomhoudend\nbroomverbinding\nbroomzilver\nbroomzilverpapier\nbroos\nbroosheid\nbros\nbrosheid\nbrosse\nbrossen\nbrosser\nbrouille\nbrouilleren\nbrousse\nbrouwen\nbrouwer\nbrouwerij\nbrouwerijconcern\nbrouwerijgroep\nbrouwersgast\nbrouwhuis\nbrouwketel\nbrouwkuip\nbrouwproces\nbrouwsel\nbrowning\nbrowsen\nbrowser\nbrowseroorlog\nbroze\nbrug\nbrugbalans\nbrugbediening\nbrugboog\nbrugconstructie\nbrugdag\nbrugdeel\nbrugdek\nbrugfunctie\nbruggenbouw\nbruggenbouwer\nbruggengeld\nbruggenhoofd\nbruggenman\nbruggenwachter\nbruggepensioneerde\nbruggetje\nbrugjaar\nbrugklas\nbrugklasser\nbrugkraan\nbrugleuning\nbrugpensioen\nbrugpensioenleeftijd\nbrugpensionering\nbrugperiode\nbrugpijler\nbrugschip\nbrugvak\nbrugwachter\nbrugwachtershuisje\nbrui\nbruid\nbruidegom\nbruidegommen\nbruidje\nbruidsbed\nbruidsboeket\nbruidsdagen\nbruidsgift\nbruidsjapon\nbruidsjonker\nbruidsjurk\nbruidskleding\nbruidskleed\nbruidsmeisje\nbruidsnacht\nbruidspaar\nbruidsprijs\nbruidsprijzen\nbruidsschat\nbruidssluier\nbruidsstoet\nbruidsstuk\nbruidssuiker\nbruidstaart\nbruidstranen\nbruidsvlucht\nbruigom\nbruikbaar\nbruikbaarheid\nbruikleen\nbruikleengever\nbruiklening\nbruiloft\nbruiloften\nbruiloftsdag\nbruiloftsdis\nbruiloftsfeest\nbruiloftsgast\nbruiloftsgedicht\nbruiloftskleed\nbruiloftslied\nbruiloftsmaal\nbruiloftsmars\nbruiloftsnacht\nbruiloftspartij\nbruiloftsvers\nbruiloftsvlucht\nbruin\nbruinachtig\nbruinbrood\nbruine\nbruinebonensoep\nbruinen\nbruineren\nbruingebrand\nbruingeel\nbruingoed\nbruingrijs\nbruingroen\nbruinharig\nbruinhemd\nbruinig\nbruinkleurig\nbruinkool\nbruinkoolbriket\nbruinkoolcentrale\nbruinkoolwinning\nbruinogig\nbruinoog\nbruinrood\nbruinrot\nbruinsteen\nbruintje\nbruinverbrand\nbruinvis\nbruinzwart\nbruis\nbruisen\nbruisend\nbruispoeder\nbruispoeier\nbruistablet\nbruistabletje\nbruistabletjes\nbrul\nbrulaap\nbrulboei\nbrullen\nbrunch\nbrunchen\nbrunetje\nbrunette\nbruschetta\nbrushes\nbrut\nbrutaal\nbrutaalheid\nbrutaalste\nbrutaaltje\nbrutaalweg\nbrutaliseren\nbrutaliteit\nbrutering\nbruteringsoperatie\nbruto\nbruto-inkomen\nbruto-inkomsten\nbruto-omzet\nbruto-ontvangst\nbruto-opbrengst\nbrutobedrag\nbrutodividend\nbrutogewicht\nbrutogewichten\nbrutohuur\nbrutolast\nbrutoloon\nbrutoloonkosten\nbrutoloonstijging\nbrutomarge\nbrutomassa\nbrutominimumloon\nbrutoprijs\nbrutorendement\nbrutosalaris\nbrutowinst\nbrutowinstmarge\nbruusk\nbruuskeren\nbruut\nbruutheid\nbtw\nbtw-constructie\nbtw-heffing\nbtw-inkomsten\nbtw-tarief\nbtw-verhoging\nbtw-verlaging\nbubbel\nbubbelbad\nbubbelden\nbubbelen\nbubbels\nbubbelt\nbubbeltje\nbubbeltjes\nbubblejet\nbuckram\nbuckskin\nbucolisch\nbuddy\nbuddyseat\nbudget\nbudgetadministratie\nbudgetafspraak\nbudgetbedrag\nbudgetbeheer\nbudgetbeheerder\nbudgetbeperking\nbudgetbewaking\nbudgetcode\nbudgetcontrole\nbudgetdiscipline\nbudgetfinanciering\nbudgetgebied\nbudgethandboek\nbudgethouder\nbudgethoudersvereniging\nbudgethoudersverenigingen\nbudgetjaar\nbudgetneutraal\nbudgetonderzoek\nbudgetoverschrijding\nbudgetoverschrijdingen\nbudgetrecht\nbudgetregel\nbudgetsubsidie\nbudgetsysteem\nbudgettair\nbudgetteer\nbudgettekort\nbudgetten\nbudgettencontrole\nbudgetteren\nbudgettering\nbudgetteringsprocedure\nbudgetteringsproces\nbudgetteringsstelsel\nbudgetteringssysteem\nbudgettoekenning\nbudgetvergelijking\nbudgetverhoging\nbudgetvoorstel\nbudgetvoorstellen\nbudo\nbuffel\nbuffelen\nbuffelhuid\nbuffeljacht\nbuffelleder\nbuffelleer\nbuffer\nbuffercapaciteit\nbuffercapaciteiten\nbufferen\nbufferfonds\nbufferfunctie\nbuffergrootte\nbuffering\nbuffermacht\nbufferopslag\nbufferruimte\nbufferstaat\nbufferstaatje\nbuffervoorraad\nbufferwerking\nbufferzone\nbuffet\nbuffetbediende\nbuffetjuffrouw\nbuffetkast\nbuffetwagen\nbug\nbugel\nbuggy\nbui\nbuidel\nbuidelbeer\nbuideldier\nbuideldieren\nbuideleekhoorn\nbuidelrat\nbuidelwolf\nbuien\nbuienlijn\nbuigbaar\nbuigbaarheid\nbuigen\nbuiger\nbuigijzer\nbuiging\nbuigingsuitgang\nbuigingsvorm\nbuigpunt\nbuigspanning\nbuigspier\nbuigtang\nbuigvastheid\nbuigzaam\nbuigzaamheid\nbuiig\nbuik\nbuikademhaling\nbuikband\nbuikdans\nbuikdansen\nbuikdanseres\nbuikdanseresjes\nbuiken\nbuikfles\nbuikgevoel\nbuikgriep\nbuikholte\nbuikig\nbuikje\nbuikklacht\nbuikkramp\nbuiklanding\nbuikligging\nbuikloop\nbuikomvang\nbuikoperatie\nbuikorgel\nbuikpijn\nbuikpotig\nbuikriem\nbuikspek\nbuikspier\nbuikspierblessure\nbuikspieroefening\nbuikspreekpop\nbuikspreekster\nbuikspreekt\nbuikspreken\nbuikspreker\nbuiksprekerij\nbuikstreek\nbuikstuk\nbuikvin\nbuikvlies\nbuikvliesontsteking\nbuikwand\nbuikzwam\nbuikzwammen\nbuil\nbuilding\nbuilen\nbuilenpest\nbuilkist\nbuilmolen\nbuis\nbuisje\nbuisjesdag\nbuisklok\nbuiskool\nbuisleiding\nbuispost\nbuisvak\nbuisverlichting\nbuisvormig\nbuiswater\nbuit\nbuitelaar\nbuitelen\nbuiteling\nbuiten\nbuiten-Europees\nbuitenaanzicht\nbuitenaards\nbuitenactiviteit\nbuitenaf\nbuitenantenne\nbuitenarm\nbuitenarmatuur\nbuitenbaan\nbuitenbaarmoederlijk\nbuitenbad\nbuitenband\nbuitenbeentje\nbuitenberging\nbuitenbeurshandel\nbuitenblad\nbuitenbocht\nbuitenboel\nbuitenboord\nbuitenboordafsluiter\nbuitenboordkoeling\nbuitenboordmotor\nbuitenboordwater\nbuitenbraak\nbuitenbus\nbuitenbuurt\nbuitencategorie\nbuitendeur\nbuitendeurslot\nbuitendiameter\nbuitendien\nbuitendienst\nbuitendienstfunctie\nbuitendienstfunctionaris\nbuitendienstmedewerker\nbuitendienststelling\nbuitendijk\nbuitendijks\nbuitenechtelijk\nbuitenevenement\nbuitenfestival\nbuitengaan\nbuitengaats\nbuitengalerij\nbuitengebeuren\nbuitengebied\nbuitengebruikstelling\nbuitengehouden\nbuitengemeen\nbuitengemeente\nbuitengerechtelijk\nbuitengevel\nbuitengevels\nbuitengewest\nbuitengewoon\nbuitengoed\nbuitengrens\nbuitenhand\nbuitenhaven\nbuitenherberg\nbuitenhoek\nbuitenhof\nbuitenhok\nbuitenhuis\nbuitenhuwelijks\nbuitenijs\nbuitenissig\nbuitenissigheid\nbuitenkamer\nbuitenkans\nbuitenkansje\nbuitenkant\nbuitenkast\nbuitenkerkelijk\nbuitenkerkelijke\nbuitenkerkelijken\nbuitenkind\nbuitenkleur\nbuitenklimaat\nbuitenkomen\nbuitenkraan\nbuitenlaag\nbuitenlaat\nbuitenlamp\nbuitenland\nbuitenlandbeleid\nbuitenlandcommissie\nbuitenlander\nbuitenlandjournalist\nbuitenlandpagina\nbuitenlandpolitiek\nbuitenlandredacteur\nbuitenlandredactie\nbuitenlandrubriek\nbuitenlands\nbuitenlandse\nbuitenlandspecialist\nbuitenlandspolitiek\nbuitenlandwoordvoerder\nbuitenleerling\nbuitenleven\nbuitenlicht\nbuitenlid\nbuitenlieden\nbuitenlijn\nbuitenliterair\nbuitenlucht\nbuitenlui\nbuitenmaat\nbuitenmaats\nbuitenman\nbuitenmantel\nbuitenmate\nbuitenmatig\nbuitenmeisje\nbuitenmeniscus\nbuitenmens\nbuitenmeubilair\nbuitenmodel\nbuitenmuseum\nbuitenmuur\nbuitenmuzikaal\nbuitennatuurlijk\nbuitenom\nbuitenopname\nbuitenparlementair\nbuitenparochie\nbuitenpartij\nbuitenplaats\nbuitenplaneet\nbuitenpleisterwerk\nbuitenpodium\nbuitenpolder\nbuitenportiek\nbuitenpost\nbuitenproportioneel\nbuitenraam\nbuitenrand\nbuitenreclame\nbuitenring\nbuitenriolering\nbuitenruimte\nbuitenschilderwerk\nbuitenschool\nbuitenschools\nbuitenseizoen\nbuitensfeer\nbuitenshuis\nbuitenslands\nbuitensloot\nbuitensluiten\nbuitensluiting\nbuitenspeelplaats\nbuitenspeelster\nbuitenspel\nbuitenspeler\nbuitenspelpositie\nbuitenspelregel\nbuitenspelval\nbuitenspiegel\nbuitensporig\nbuitensporigheid\nbuitensport\nbuitenst\nbuitenstaan\nbuitenstaander\nbuitenste\nbuitentekstplaat\nbuitentemperatuur\nbuitenterrein\nbuitentijds\nbuitentrap\nbuitenuniversitair\nbuitenverblijf\nbuitenverf\nbuitenverlichting\nbuitenvervolgingstelling\nbuitenvolk\nbuitenvrouw\nbuitenwaarts\nbuitenwacht\nbuitenwand\nbuitenwater\nbuitenweg\nbuitenwereld\nbuitenwerk\nbuitenwerkingstelling\nbuitenwerks\nbuitenwettelijk\nbuitenwijk\nbuitenwipper\nbuitenzetten\nbuitenzij\nbuitenzijde\nbuitenzwembad\nbuitje\nbuitmaken\nbuizen\nbuizenconstructie\nbuizenframe\nbuizennet\nbuizenpost\nbuizenstelsel\nbuizensysteem\nbuizerd\nbukken\nbuks\nbuksboom\nbukskin\nbul\nbulderaar\nbulderbaan\nbulderbast\nbulderen\nbulderlach\nbulderstem\nbuldog\nbulgur\nbulhond\nbulk\nbulkboek\nbulkcarrier\nbulkchemicaliën\nbulkchemie\nbulken\nbulkgoed\nbulkgoederen\nbulkleverancier\nbulkmarkt\nbulkmarkten\nbulkomzetten\nbulkproduct\nbulkproductie\nbulksilo\nbulktransport\nbulkvaart\nbulkvervoer\nbulldozer\nbulldozeren\nbullebak\nbullen\nbullenbijter\nbullenpees\nbullet\nbulletin\nbulletinboard\nbulletje\nbullshit\nbulster\nbult\nbultachtig\nbulten\nbultenaar\nbulterriër\nbultig\nbultjes\nbultrug\nbultzak\nbuluitreiking\nbumper\nbumperkleven\nbumperklever\nbumpersticker\nbun\nbundel\nbundelen\nbundeling\nbunder\nbundergeld\nbungalow\nbungalowdorp\nbungalowpark\nbungalowtent\nbungeejumping\nbungel\nbungelen\nbunker\nbunkerachtig\nbunkerboot\nbunkeren\nbunkerhaven\nbunkerkolen\nbunkermentaliteit\nbunkerolie\nbunkerschip\nbunkerstation\nbunkertank\nbunny\nbunraku\nbunsenbrander\nbuntgras\nbunzing\nbupropion\nburcht\nburchtheer\nburchtplein\nburchtvrouw\nburchtvrouwe\nbureau\nbureau-ministre\nbureauagenda\nbureaublad\nbureauchef\nbureaucomputer\nbureaucraat\nbureaucratie\nbureaucratisch\nbureaucratiseren\nbureaucratisering\nbureauhoofd\nbureaukosten\nbureaula\nbureaulade\nbureaulamp\nbureaulampjes\nbureaulandschap\nbureaulist\nbureaupolitiek\nbureauredacteur\nbureauredactrice\nbureaus\nbureaustoel\nbureaustoeltjes\nbureautafel\nbureautje\nbureauwerk\nbureel\nburen\nburengerucht\nburenhulp\nburenlawaai\nburenoverlast\nburenplicht\nburenrecht\nburenrelatie\nburenruzie\nburet\nburg\nburgemeester\nburgemeesterlijk\nburgemeestersambt\nburgemeestersbenoeming\nburgemeesterschap\nburgemeesterscommissie\nburgemeestersfunctie\nburgemeesterskandidaat\nburgemeestersketen\nburgemeesterspost\nburgemeestersreferendum\nburgemeesterssjerp\nburgemeestersverkiezing\nburgemeestersvrouw\nburgemeesterszetel\nburger\nburgerauto\nburgerbescherming\nburgerbestaan\nburgerbestuur\nburgerbevolking\nburgerbeweging\nburgercomité\nburgerdemocratie\nburgerdeugd\nburgerdienst\nburgerdienstplicht\nburgerdocent\nburgerdochter\nburgerdom\nburgerhuis\nburgerij\nburgerinfiltrant\nburgerinitiatief\nburgerjongen\nburgerjuffrouw\nburgerkeuken\nburgerkind\nburgerklasse\nburgerkleding\nburgerkleren\nburgerkost\nburgerleven\nburgerlieden\nburgerlijk\nburgerlijkheid\nburgerluchthaven\nburgerluchtvaart\nburgerlui\nburgerluitjes\nburgermaatschappij\nburgerman\nburgermannetje\nburgermanskind\nburgermeisje\nburgermens\nburgermoed\nburgermoord\nburgeroorlog\nburgerorganisatie\nburgerpak\nburgerparticipatie\nburgerpersoneel\nburgerplicht\nburgerpot\nburgerpresident\nburgerrecht\nburgerrechtelijk\nburgerrechtenactivist\nburgerrechtenbeweging\nburgerrechtenorganisatie\nburgerrechter\nburgerregering\nburgers\nburgerschap\nburgerschapskunde\nburgerschapsrecht\nburgerschool\nburgerservicenummer\nburgerslachtoffer\nburgerstand\nburgervader\nburgervliegtuig\nburgervliegveld\nburgervolk\nburgervrouw\nburgerwacht\nburgerweeshuis\nburgerwoning\nburgerzaal\nburgerzin\nburggraaf\nburggraafschap\nburggravin\nburgvoogd\nburgwal\nburijn\nburijngravure\nburin\nburlesk\nburleske\nburn-out\nburn-outsyndroom\nbursaal\nbus\nbusabonnement\nbusbaan\nbusbedrijf\nbusbouwer\nbuschauffeur\nbuschauffeuse\nbusdienst\nbusdokter\nbushalte\nbushmeat\nbushokje\nbusiness\nbusiness-to-business\nbusinessclass\nbusinessclub\nbusinessmodel\nbusinessplan\nbusinessschool\nbusinessunit\nbusje\nbuskaartje\nbuskaping\nbuskruit\nbuskruitfabriek\nbuskruitvat\nbuslading\nbuslichting\nbuslijn\nbusmaatschappij\nbusnet\nbusonderneming\nbusongeluk\nbusongeval\nbuspakjes\nbuspassagier\nbusramp\nbusreis\nbusreiziger\nbusrit\nbusroute\nbussel\nbusselen\nbussen\nbussluis\nbusstation\nbusstrook\nbussysteem\nbustaxi\nbuste\nbustehouder\nbusterminal\nbustier\nbustocht\nbusverbinding\nbusverkeer\nbusvervoer\nbusvervoerders\nbutaan\nbutagas\nbutler\nbutoor\nbuts\nbutsen\nbutskop\nbutterfly\nbutterscotch\nbutton\nbuur\nbuurdorp\nbuureiland\nbuurgemeente\nbuurjongen\nbuurkind\nbuurland\nbuurlieden\nbuurman\nbuurmeisje\nbuurpraatje\nbuurprovincie\nbuurschap\nbuurstaat\nbuurstad\nbuurt\nbuurtactiviteit\nbuurtagent\nbuurtbeheer\nbuurtbemiddeling\nbuurtbewoner\nbuurtbewoonster\nbuurtbus\nbuurtcafé\nbuurtcentrum\nbuurtclub\nbuurtcomité\nbuurtconciërge\nbuurten\nbuurtfeest\nbuurtfunctie\nbuurtgebonden\nbuurtgenoot\nbuurtgericht\nbuurtgroepen\nbuurthuis\nbuurthuiswerk\nbuurtje\nbuurtkerk\nbuurtkrant\nbuurtkroeg\nbuurtniveau\nbuurtonderzoek\nbuurtonderzoeken\nbuurtoverlast\nbuurtpark\nbuurtpreventieproject\nbuurtproblematiek\nbuurtregisseur\nbuurtschap\nbuurtschool\nbuurtspoorweg\nbuurtsuper\nbuurtvader\nbuurtverbod\nbuurtverboden\nbuurtvereniging\nbuurtvergadering\nbuurtverkeer\nbuurtverzet\nbuurtvoorziening\nbuurtvoorzieningen\nbuurtweg\nbuurtwerk\nbuurtwerker\nbuurtwerkster\nbuurtwinkel\nbuurvolkeren\nbuurvrouw\nbuut\nbuxus\nbuy-out\nbv\nbv.\nbvba\nbw.\nbye\nbypass\nbypassoperatie\nbyssus\nbyte\nbyzantijn\nbyzantijns\nbyzantinisme\nbèta\nbètablokker\nbètadeeltje\nbètavak\nbètaversie\nbètawetenschap\nbühne\nc\nc-pion\nc-sleutel\nc.q.\nc.s.\nca.\ncaban\ncabaret\ncabaretavond\ncabaretduo\ncabaretesk\ncabaretfestival\ncabaretgezelschap\ncabaretgroep\ncabaretier\ncabaretière\ncabaretlied\ncabaretprogramma\ncabaretshow\ncabaretsketch\ncabarettekst\ncabarettrio\ncabaretvoorstelling\ncabaretzanger\ncabernet\ncabine\ncabinepersoneel\ncabretleer\ncabrio\ncabriolet\ncacao\ncacao-overeenkomst\ncacaoboom\ncacaoboon\ncacaoboter\ncacaopoeder\ncache\ncache-pot\ncachegeheugen\ncachelot\ncachet\ncachetteren\ncaching\ncachot\ncactee\ncactus\ncactusachtige\ncactusdahlia\ncactussen\ncadanceren\ncadans\ncadansen\ncaddie\ncadeau\ncadeauabonnement\ncadeauartikel\ncadeauboek\ncadeaubon\ncadeaulijst\ncadeaulijsten\ncadeaupapier\ncadeaus\ncadeaustelsel\ncadeauverpakking\ncadeauwinkel\ncadens\ncadet\ncadettenschool\ncadmium\ncadmiumbatterij\ncadmiumgeel\ncaesar\ncafetaria\ncafetariahouder\ncafetariahoudster\ncafetariaplan\ncafeïne\ncafeïnevrij\ncafé\ncafé chantant\ncafé-eigenaar\ncafé-restaurant\ncafé-uitbater\ncafébaas\ncafébazin\ncafébedrijf\ncafébezoek\ncafébezoeker\ncafébrand\ncafégedeelte\ncaféhouder\ncaféhoudster\ncaféleven\ncaféruzie\ncafés\ncaféterras\ncahier\ncai\ncaipirinha\ncaissière\ncaisson\ncaissonwet\ncaissonziekte\ncajun\ncajunmuziek\ncake\ncakebeslag\ncakeblik\ncakemeel\ncakevorm\ncakewalk\ncalamiteit\ncalamiteitenfonds\ncalamiteitenhospitaal\ncalamiteitenplan\ncalamiteitenpolder\ncalamiteitenteam\ncalamiteitenverlof\ncalamiteitenzender\ncalamiteus\ncalcinatie\ncalcineren\ncalcium\ncalciumcarbid\ncalciumcarbonaat\ncalciumchloride\ncalciumfosfaat\ncalciumgehalte\ncalciumhydroxide\ncalculatie\ncalculatiemethode\ncalculator\ncalculatoren\ncalculeren\ncalculus\ncaleidoscoop\ncaleidoscopisch\ncalendarium\ncalendula\ncalicot\ncallboy\ncallcenter\ncallgirl\ncalloptie\ncalorie\ncaloriearm\ncalorierijk\ncalorieën\ncalorifère\ncalorimeter\ncalorisch\ncalque\ncalqueerlinnen\ncalqueerpapier\ncalqueren\ncalumet\ncalvados\ncalvarieberg\ncalvarietocht\ncalville\ncalvinisme\ncalvinist\ncalvinistisch\ncalypso\ncalèche\ncamaraderie\ncamarilla\ncamber\ncambio\ncambium\ncambrium\ncamcorder\ncamee\ncamel\ncamelia\ncameljas\ncamembert\ncameo\ncamera\ncamera obscura\ncamera-ervaring\ncamera-instelling\ncamerabewaking\ncameralens\ncameraman\ncameramensen\ncameranetwerk\ncameranetwerken\ncameraopstelling\ncameraploeg\ncamerariem\ncamerasysteem\ncamerateams\ncameratoezicht\ncameravoering\ncameravrouw\ncamerawagen\ncamerawerk\ncamion\ncamionette\ncamionetteverhuur\ncamioneur\ncamouflage\ncamouflagekleur\ncamouflagenet\ncamouflagepak\ncamouflagestift\ncamouflagetechniek\ncamoufleren\ncamp\ncampagne\ncampagneadviseur\ncampagnebijdragen\ncampagnebudget\ncampagnebureau\ncampagnebus\ncampagnecoördinator\ncampagnedag\ncampagnefinanciering\ncampagnejaar\ncampagnekas\ncampagnekosten\ncampagneleider\ncampagneleiding\ncampagnemateriaal\ncampagnemedewerker\ncampagneorganisatie\ncampagnespot\ncampagnestrategie\ncampagneteam\ncampagneteams\ncampagnethema\ncampagnetijd\ncampagnetoespraak\ncampagnevoerder\ncampagnevoeren\ncampagnevoering\ncampagneweek\ncampanile\ncampanula\ncamper\ncamping\ncampingbaas\ncampingbeheerder\ncampingbeheerster\ncampingbewoner\ncampingbus\ncampinggast\ncampinghouder\ncampingleven\ncampingsmoking\ncampingterrein\ncampingveld\ncampingvlucht\ncampingwagen\ncampingwinkel\ncampionissimo\ncampus\ncampuscontract\ncampy\ncampylobacter\ncampêchehout\ncanada\ncanadaboom\ncanadahout\ncanadapopulier\ncanadees\ncanaille\ncanapé\ncanapépolitiek\ncanard\ncanasta\ncancan\ncancelen\ncandybar\ncannabis\ncannabis sativa\ncannabisgebruik\ncannabisgebruiker\ncannabisproduct\ncannabisteelt\ncanneleren\ncannelure\ncanon\ncanonbord\ncanoniek\ncanonisatie\ncanoniseren\ncanonisering\ncantabile\ncantate\ncantharel\ncantharide\ncantilene\ncantille\ncantinière\ncantinières\ncanto\ncantor\ncantorij\ncanule\ncanvas\ncanvassen\ncanyon\ncanzone\ncanzonetta\ncao\ncao-afspraak\ncao-akkoord\ncao-beleid\ncao-bepaling\ncao-bespreking\ncao-bod\ncao-conflict\ncao-eis\ncao-loon\ncao-onderhandelingen\ncao-overleg\ncao-voorstel\ncaoutchouc\ncap\ncapabel\ncapaciteit\ncapaciteitsbegroting\ncapaciteitsbeleid\ncapaciteitsbenutting\ncapaciteitsbezetting\ncapaciteitsgebrek\ncapaciteitsgroei\ncapaciteitsmanagement\ncapaciteitsniveau\ncapaciteitsplanning\ncapaciteitsprobleem\ncapaciteitsreductie\ncapaciteitssituatie\ncapaciteitstekort\ncapaciteitsuitbreiding\ncapaciteitsvergroting\ncapaciteitsvermindering\ncapacitief\ncapacitieve\ncape\ncapillair\ncapillariteit\ncapita selecta\ncapitonnage\ncapitonneren\ncapitonnering\ncapitulatie\ncapituleren\ncapoeira\ncappuccino\ncapriccio\ncaprice\ncapricieus\ncapriool\ncaprolactam\ncapsaïcine\ncapsule\ncaptain\ncaptatie\ncapteren\ncaptie\ncapuchon\ncaputcolleges\ncara\ncarabinieri\ncaracal\ncaracole\ncarambole\ncaramboleren\ncarapatiënt\ncaravan\ncaravanbezitter\ncaravanbrand\ncaravanterrein\ncarbid\ncarbidgas\ncarbidlamp\ncarbidlantaarn\ncarbidschieten\ncarbol\ncarbolineum\ncarbolzuur\ncarbon\ncarbonaat\ncarbonisatie\ncarbonisch\ncarboniseren\ncarbonlint\ncarbonpapier\ncarboon\ncarburateur\ncarburatie\ncarburator\ncarbureren\ncarcinogeen\ncarcinoom\ncardanas\ncardanisch\ncardigan\ncardiochirurg\ncardiochirurgie\ncardiogeen\ncardiograaf\ncardiogram\ncardiologe\ncardiologie\ncardiologisch\ncardioloog\ncardiovasculair\ncaret\ncarga\ncargadoor\ncargalijst\ncargo\ncargoverzekering\ncarieus\ncarillon\ncarillontoren\ncaritas\ncaritatief\ncariës\ncarjacking\ncarkit\ncarnaval\ncarnavalesk\ncarnavalist\ncarnavalpret\ncarnavalsavond\ncarnavalsclub\ncarnavalsdinsdag\ncarnavalsfeest\ncarnavalsgroep\ncarnavalskraker\ncarnavalslied\ncarnavalsmaandag\ncarnavalsmuziek\ncarnavalsoptocht\ncarnavalspret\ncarnavalsprins\ncarnavalsseizoen\ncarnavalsstichting\ncarnavalsstoet\ncarnavalstijd\ncarnavalstoet\ncarnavalsvereniging\ncarnavalsvierder\ncarnavalsviering\ncarnavalswagen\ncarnavalvierders\ncarnet\ncarnivoor\ncaroteen\ncarotenoïde\ncarotine\ncarpaccio\ncarpool\ncarpoolen\ncarpooler\ncarpooling\ncarpoolplaats\ncarpoolstrook\ncarport\ncarrier\ncarrière\ncarrièrediplomaat\ncarrièredrang\ncarrièredwang\ncarrièregericht\ncarrièrejaagster\ncarrièrejager\ncarrièreladder\ncarrièremaker\ncarrièrepatroon\ncarrièreperspectief\ncarrièreplanning\ncarrièresite\ncarrièrestap\ncarrièreverloop\ncarrièrevrouw\ncarrièrisme\ncarrièrist\ncarrosserie\ncarrosseriebedrijf\ncarrosseriebouwer\ncarrosseriekleur\ncarrosserievorm\ncarrousel\ncarré\ncarter\ncartesiaan\ncartesiaans\ncartograaf\ncartografie\ncartografisch\ncartoon\ncartoonachtig\ncartoonesk\ncartoonfiguur\ncartoonist\ncartotheek\ncartouche\ncartridge\ncarven\ncarwash\ncasanova\ncascade\ncascara\ncasco\ncascoverzekering\ncase\ncasestudie\ncasestudy\ncasework\ncaseïne\ncash\ncash-and-carry\ncashen\ncashewnoot\ncashflow\ncashpositie\ncasino\ncasino-economie\ncasino-eigenaar\ncasinobrood\ncasinokapitalisme\ncasinowezen\ncassatie\ncassatieberoep\ncassatieverzoek\ncassave\ncasselerrib\ncasseren\ncassette\ncassetteband\ncassettebandje\ncassettedeck\ncassettefilm\ncassetterecorder\ncassettetape\ncassis\ncassoulet\ncast\ncastagnetten\ncastellum\ncasten\ncastigeren\ncasting\ncastingbureau\ncastraat\ncastraatzanger\ncastratie\ncastreren\ncasu quo\ncasualisme\ncasueel\ncasus\ncasusmateriaal\ncasuspositie\ncasuïst\ncasuïsten\ncasuïstiek\ncasuïstisch\ncataclysme\ncatacombe\ncatalepsie\ncatalogeren\ncatalogi\ncatalogiseren\ncatalogisering\ncatalografie\ncatalogus\ncatalogusnummer\ncatalogusprijs\ncatalogussen\ncatalogussysteem\ncatalogusvorm\ncataloguswaarde\ncataloog\ncatamaran\ncatamnese\ncataract\ncatarraal\ncatarre\ncatastrofaal\ncatastrofe\ncatastrofistisch\ncatatonie\ncatch-as-catch-can\ncatcher\ncatchy\ncatecheet\ncatechese\ncatecheseteam\ncatechisant\ncatechisante\ncatechisatie\ncatechiseermeester\ncatechiseren\ncatechismus\ncatechismusles\ncatechismusonderwijs\ncatechist\ncatechumeen\ncategoraal\ncategoriaal\ncategorie\ncategoriek\ncategorieën\ncategorisch\ncategoriseren\ncategorisering\ncatenaccio\ncateraar\ncatering\ncateringbedrijf\ncateringservice\ncatgut\ncatharsis\ncatwalk\ncauda\ncaudillo\ncausaal\ncausaliteit\ncausaliteitsbeginsel\ncausatief\ncauserie\ncauseur\ncautie\ncava\ncavalcade\ncavalerie\ncavaleriekazerne\ncavalerieofficier\ncavalerist\ncavalier\ncavia\ncayennepeper\ncd\ncd-boekje\ncd-bon\ncd-box\ncd-brander\ncd-handel\ncd-hoes\ncd-i\ncd-markt\ncd-opname\ncd-piraterij\ncd-presentatie\ncd-prijs\ncd-reeks\ncd-release\ncd-rom\ncd-romspeler\ncd-schijf\ncd-single\ncd-speler\ncd-uitgave\ncd-verkoop\ncd-winkel\ncd-writer\ncecogram\ncedel\nceder\ncederen\ncederhout\ncederhouten\ncederolie\ncedille\nceel\nceintuur\ncel\ncelbeveiliging\ncelbiologie\ncelbiologisch\ncelcapaciteit\ncelcultuur\nceldeling\nceldeur\nceldood\ncelebrant\ncelebratie\ncelebreren\ncelebret\ncelebriteit\ncelebrity\ncelesta\ncelestijn\ncelgenoot\ncelgroei\ncelibaat\ncelibaatsverplichting\ncelibatair\ncelinhoud\ncelinhouden\ncelkern\ncelkweek\ncellenblok\ncellenbouw\ncellenbroer\ncellenbroers\ncellencomplex\ncellenoverschot\ncellentekort\ncellijn\ncellist\ncelliste\ncello\ncelloconcert\ncellofaan\ncellofaanpapier\ncellosonate\ncellosuite\ncellulair\ncellulitis\ncelluloid\ncellulose\ncelluloïde\ncelmateriaal\ncelmembraan\ncelorganel\ncelruimte\ncelstof\ncelstraf\nceltekort\nceltherapie\nceltype\ncelvocht\ncelvormig\ncelwagen\ncelwand\ncelweefsel\ncembalist\ncembalo\ncement\ncementbeton\ncementdekvloer\ncementen\ncementeren\ncementfabriek\ncementgroep\ncementijzer\ncementindustrie\ncementlaag\ncementmolen\ncementmortel\ncementproducent\ncementsoort\ncementspecie\ncementsteen\ncementvloer\ncenakel\ncenobiet\ncenotaaf\ncenotafen\ncenozoïcum\ncenseren\ncensor\ncensureren\ncensus\ncensuur\ncent\ncentaur\ncentenaar\ncentenaarslast\ncentenbak\ncentenkwestie\ncenter\ncenterboor\ncentercourt\ncenteren\ncenterfold\ncentesimaal\ncentiare\ncentiem\ncentigraad\ncentigram\ncentiliter\ncentime\ncentimeter\ncentimetergolf\ncentra\ncentraal\ncentrale\ncentralebankpresident\ncentraleverwarmingsinstallatie\ncentralisatie\ncentraliseren\ncentralisering\ncentralisme\ncentralist\ncentralistisch\ncentreren\ncentrifugaal\ncentrifugaalpomp\ncentrifuge\ncentrifugeren\ncentripetaal\ncentrisch\ncentristisch\ncentromeer\ncentrum\ncentrumdemocraat\ncentrumfunctie\ncentrumgebied\ncentrumgemeente\ncentrumlinks\ncentrummanagement\ncentrummanager\ncentrumontwikkeling\ncentrumpartij\ncentrumplan\ncentrumpositie\ncentrumrechts\ncentrums\ncentrumspits\ncentrumstad\ncentrumverdediger\ncentstuk\ncenturie\ncenturio\ncenturion\nceramiek\nceramisch\nceramist\ncerberus\ncerebraal\nceremonie\nceremonieel\nceremoniemeester\nceremonieus\ncerise\ncertificaat\ncertificaathouder\ncertificatie\ncertificatiesysteem\ncertificeren\ncertificering\ncervela\ncervelaatworst\ncervix\nces\ncesarisme\ncesartherapie\ncesium\ncessie\ncessionaris\ncesuur\ncetaceeën\nceteris paribus\ncfk\nchablis\nchachacha\nchaconne\nchador\nchagrijn\nchagrijnen\nchagrijnig\nchagrijnleder\nchagrijnleer\nchai\nchaise longue\nchakra\nchalcedon\nchalcografie\nchalet\nchalle\nchamade\nchambree\nchambreren\nchamotte\nchampagne\nchampagnecider\nchampagnecoupe\nchampagnefles\nchampagneglas\nchampagnehuis\nchampagnekoeler\nchampagnekurk\nchampagnemerk\nchampagneontbijt\nchampagnewijn\nchampenoise\nchampetter\nchampignon\nchampignonbedrijf\nchampignonkwekerij\nchampignonsaus\nchampignonsoep\nchampignonteelt\nchance\nchangeant\nchangement\nchangeren\nchanson\nchansonnier\nchansonnière\nchant\nchantabel\nchantage\nchantagemiddel\nchanteren\nchanteur\nchanteuse\nchaoot\nchaos\nchaostheorie\nchaotisch\nchaotisering\nchape\nchapelure\nchaperon\nchaperonne\nchaperonneren\nchapiter\nchappe\ncharade\ncharcuterie\nchardonnay\ncharge\ncharger\nchargeren\ncharisma\ncharismatisch\ncharitas\ncharitatief\ncharivari\ncharlatan\ncharlatanerie\ncharleston\ncharmant\ncharme\ncharmeoffensief\ncharmeren\ncharmeur\ncharmezanger\ncharta\nchartaal\ncharter\ncharteraar\ncharterbedrijf\ncharterboek\ncharterdienst\ncharterdochter\ncharteren\nchartermaatschappij\nchartermarkt\nchartermeester\ncharterschip\ncharterverkeer\nchartervliegtuig\nchartervlucht\nchartreuse\nchasseur\nchassidisch\nchassidisme\nchassied\nchassis\nchassisnummer\nchat\nchatbox\nchateau\nchateau migraine\nchateaubriand\nchatroom\nchatsessie\nchatten\nchatter\nchauffage\nchaufferen\nchauffeur\nchauffeurspas\nchauffeurspet\nchauffeuse\nchauvinisme\nchauvinist\nchauvinistisch\nchazan\ncheck\ncheck-up\ncheckbox\nchecken\nchecklist\ncheckpoint\nchecks\ncheddar\ncheerio\ncheerleader\ncheeseburger\ncheeta\nchef\nchef de cuisine\nchef-arts\nchef-defensiestaf\nchef-dirigent\nchef-econoom\nchef-kok\nchef-onderhandelaar\nchef-redacteur\nchef-sport\nchef-staf\ncheffin\nchefschap\nchefsfunctie\nchelatietherapie\nchemicaliën\nchemicaliëngebruik\nchemicaliëntanker\nchemici\nchemicus\nchemie\nchemie-industrie\nchemiebedrijf\nchemiebranche\nchemiecomplex\nchemieconcern\nchemiedivisie\nchemiegigant\nchemiegroep\nchemiepoot\nchemiereus\nchemiesector\nchemietak\nchemisch\nchemischewapensprogramma\nchemisier\nchemobak\nchemokar\nchemokuur\nchemotherapeuticum\nchemotherapie\ncheque\nchequeboek\ncherrytomaat\nchertepartij\ncherub\ncherubijn\nchesterfield\nchesterkaas\ncheviot\nchevreau\nchevron\nchianti\nchiasma\nchiasme\nchic\nchicane\nchicaneren\nchicaneur\nchick\nchicst\nchiffon\nchiffonnière\nchignon\nchihuahua\nchijl\nchikwadraattoets\nchili\nchili con carne\nchiliasme\nchilipeper\nchilipoeder\nchilisalpeter\nchilisaus\nchillen\nchimaera\nchimp\nchimpansee\nchimère\nchinaklei\nchinchilla\nchinees\nchinezen\nchinoiserie\nchinook\nchintz\nchip\nchipcard\nchipfabriek\nchipfabrikant\nchipgigant\nchipindustrie\nchipkaart\nchipknip\nchipmachinefabrikant\nchipmachinemaker\nchipmarkt\nchipolata\nchipolatapudding\nchipper\nchipproducent\nchipproductie\nchips\nchipsector\nchipset\nchipsfabriek\nchipsfabrikant\nchipsindustrie\nchiptechnologie\nchipverpakker\nchique\nchiquer\nchirograaf\nchirologie\nchiromantie\nchiropodist\nchiropracticus\nchiropraxie\nchirurg\nchirurgie\nchirurgijn\nchirurgisch\nchlamydia\nchloor\nchloorbleekloog\nchloorfabriek\nchloorfluorkoolstof\nchloorfluorkoolstofverbinding\nchloorfluorkoolwaterstof\nchloorgas\nchloorhoudend\nchloorkalk\nchloortransport\nchloortrein\nchloorverbinding\nchloorvrij\nchloorwater\nchloorzuur\nchloraal\nchloraat\nchloren\nchloreren\nchloride\nchloriet\nchloroform\nchloroformeren\nchloroformmasker\nchlorofyl\nchloroplast\nchloroquine\nchoco\nchoco-ijs\nchocola\nchocolaatje\nchocolade\nchocolade-ijs\nchocoladebruin\nchocoladecake\nchocoladefabriek\nchocoladefabrikant\nchocoladehagelslag\nchocoladekleurig\nchocoladeletter\nchocolademarkt\nchocolademelk\nchocolademousse\nchocoladen\nchocoladepasta\nchocoladepudding\nchocoladereep\nchocoladeroom\nchocoladesaus\nchocoladetaart\nchocoladevla\nchocoladewinkel\nchocolakleurig\nchocolaletter\nchocolaterie\nchocolatier\nchocomel\nchocomelk\nchocopasta\nchoepa\nchoke\nchoken\ncholera\ncholera-epidemie\ncholerabacil\ncholeralijder\ncholericus\ncholeriek\ncholerisch\ncholesterol\ncholesterolarm\ncholesterolbepaling\ncholesterolgehalte\ncholesterolverlagend\ncholesterolverlager\ncholesterolwaarde\nchopper\nchoquant\nchoqueren\nchoreograaf\nchoreografe\nchoreograferen\nchoreografie\nchoreografisch\nchorizo\nchorus\nchoucroute\nchowchow\nchrestomathie\nchrisma\nchristelijk\nchristelijk-gereformeerd\nchristelijk-historisch\nchristelijk-islamitisch\nchristelijk-sociaal\nchristelijkheid\nchristen\nchristendemocraat\nchristendemocratie\nchristendemocratisch\nchristendom\nchristenfundamentalisme\nchristenfundamentalist\nchristengemeente\nchristenheid\nchristenhond\nchristenleer\nchristenmens\nchristenplicht\nchristenslaaf\nchristenslaven\nchristensocialist\nchristenvervolging\nchristenvrouw\nchristianisatie\nchristin\nchristologie\nchristologisch\nchristus\nchristusachtig\nchristusdoorn\nchroma\nchromaatgeel\nchromatiek\nchromatisch\nchromatografie\nchromen\nchromeren\nchromo\nchromolithografie\nchromosomaal\nchromosomenonderzoek\nchromosomenpatroon\nchromosoom\nchromosoomafwijking\nchromosoomonderzoek\nchronici\nchroniqueur\nchronisch\nchronischevermoeidheidssyndroom\nchrono\nchronograaf\nchronogram\nchronologie\nchronologisch\nchronometer\nchronometreren\nchroom\nchroomgeel\nchroomleder\nchroomleer\nchroomstaal\nchroomzuur\nchrysant\nchrysanthemum\nchrysoliet\nchutney\nciabatta\nciborie\ncicade\ncicero\ncicerone\ncichlide\ncichorei\ncichoreiwortel\ncider\ncigarillo\ncijfer\ncijferaar\ncijferboek\ncijferbrij\ncijfercode\ncijfercombinatie\ncijferen\ncijferfetisjisme\ncijfergevoel\ncijferige\ncijferkunst\ncijferlijst\ncijfermateriaal\ncijfermatig\ncijfermuziek\ncijferoverzicht\ncijferrapportage\ncijferreeks\ncijferschrift\ncijferslot\ncijfertabel\ncijfertoets\ncijfertoetsen\ncijfervoorbeeld\ncijferwerk\ncijns\ncijnsplichtig\ncijnsrecht\ncilinder\ncilinderblok\ncilinderbureau\ncilinderhorloge\ncilinderinhoud\ncilinderoppervlak\ncilinderslot\ncilindersymmetrie\ncilindervormig\ncilindrisch\ncimbaal\ncineac\ncineast\ncineaste\ncineastisch\ncinecamera\ncineclub\ncinefiel\ncinema\ncinemacomplex\ncinemascope\ncinematheek\ncinematograaf\ncinematografie\ncinematografisch\ncinemavoorstelling\ncineraria\ncinnaber\ncinquecento\ncipier\ncipres\ncipressen\ncipressenhout\ncipressenlaan\ncirca\ncirconflexe\ncircuit\ncircuitelement\ncircuitgedachte\ncircuitverbinding\ncirculair\ncirculaire\ncirculariteit\ncirculatie\ncirculatiebank\ncirculatiepomp\ncirculatiepompen\ncirculatiestoornis\ncirculatiesysteem\ncirculeren\ncircumcisie\ncircumflex\ncircumpolair\ncircus\ncircusact\ncircusaffiche\ncircusartiest\ncircusartieste\ncircusattractie\ncircusclown\ncircusdirecteur\ncircusleven\ncircusnummer\ncircuspaard\ncircusprogramma\ncircustent\ncircusterrein\ncircustheater\ncircusvertoning\ncircusvoorstelling\ncircuswagen\ncircuswereld\ncirkel\ncirkelbaan\ncirkelbeweging\ncirkelboog\ncirkeldiagram\ncirkelen\ncirkelgang\ncirkelmaaier\ncirkelomtrek\ncirkelredenering\ncirkelschijfje\ncirkelsector\ncirkelsegment\ncirkelspeelster\ncirkelvorm\ncirkelvormig\ncirkelzaag\ncirrose\ncirrus\ncis\nciseleerder\nciseleren\nciseleur\ncisplatina\ncisplatine\ncisterciënzer\ncisterne\ncitaat\ncitaatrecht\ncitadel\ncitatenboek\ncitatie\ncitatie-index\nciteerdrift\nciteertitel\nciter\nciteren\nciterne\ncito\ncitroen\ncitroenappel\ncitroenboom\ncitroengeel\ncitroengeranium\ncitroengras\ncitroenhout\ncitroenijs\ncitroenjenever\ncitroenkruid\ncitroenlimonade\ncitroenmelisse\ncitroenolie\ncitroenpers\ncitroenrasp\ncitroensap\ncitroenschil\ncitroensmaak\ncitroentaart\ncitroenthee\ncitroentje\ncitroenzuur\ncitronella\ncitronellaolie\ncitrus\ncitruscultuur\ncitrusfruit\ncitruspers\ncitruspulp\ncitrusvrucht\ncitrusvruchten\ncity\ncitybag\ncitybike\ncityhopper\ncitytrip\ncityvorming\ncité\ncivet\ncivetkat\nciviel\nciviel ingenieur\ncivielrechtelijk\ncivieltechnisch\ncivilisatie\ncivilisatieproces\nciviliseren\ncivilist\ncivisme\nclaim\nclaimbeoordeling\nclaimcultuur\nclaimemissie\nclaimen\nclaiming\nclaimrecht\nclair-obscur\nclairvoyance\nclairvoyant\nclan\nclandestien\nclandestiniteit\nclanleider\nclanlid\nclanoudste\nclaque\nclaqueur\nclaris\nclarisse\nclarissenklooster\nclark\nclasseur\nclassic\nclassica\nclassicisme\nclassicistisch\nclassicus\nclassificatie\nclassificatiebureau\nclassificatiesysteem\nclassificator\nclassificeren\nclassis\nclaus\nclaustrofobie\nclaustrofobisch\nclausule\nclausuleblad\nclausulenummer\nclausuleren\nclausuletekst\nclausuur\nclaves\nclaviatuur\nclavicula\nclaviger\nclaxon\nclaxonnade\nclaxonneren\nclean\ncleaner\ncleaners\nclearing\nclearingbank\nclearingstelsel\nclematis\nclement\nclementie\nclementine\nclenbuterol\ncleresie\ncleresij\nclericus\nclerus\nclicheren\ncliché\nclichébeeld\nclichématig\nclichématigheid\nclichés\nclick\nclickfonds\nclientèle\ncliffhanger\nclignoteur\nclimacterisch\nclimacterium\nclimax\nclinch\nclinic\nclinical\nclinicus\nclip\nclipart\nclipper\nclips\nclique\nclitoridectomie\nclitoris\nclivia\ncliënt\ncliënte\ncliënteel\ncliëntelisme\ncliëntelistisch\ncliëntenbespreking\ncliëntenbestand\ncliëntenbond\ncliëntendossier\ncliëntenfolder\ncliënteninformatie\ncliëntenkant\ncliëntenplatform\ncliëntenraad\ncliëntenraden\ncliëntenrecht\ncliëntenrechten\ncliëntenrekening\ncliëntenstop\ncliëntenverhalen\ncliëntenvoorlichting\ncliëntenzorg\ncliëntgericht\ncliëntvolgsysteem\ncloaca\nclochard\ncloche\nclose\nclose harmony\nclose reading\nclose-up\ncloset\nclosetborstel\nclosetbril\nclosetpapier\nclosetpot\nclosetrol\nclosetrolhouder\nclou\nclown\nclownachtig\nclownerie\nclownesk\nclownspak\nclub\nclubachtig\nclubarts\nclubbelang\nclubbestuur\nclubblad\nclubcard\nclubcircuit\nclubcultuur\nclubdag\nclubdas\nclubeigenaar\nclubembleem\nclubfauteuil\nclubgebonden\nclubgebouw\nclubgeest\nclubgenoot\nclubgenote\nclubgeschiedenis\nclubgevoel\nclubhistorie\nclubhit\nclubhuis\nclubkaart\nclubkampioen\nclubkas\nclubkleur\nclubleider\nclubleiding\nclublid\nclublied\nclubliefde\nclublokaal\nclubnaam\nclubniveau\nclubrecord\nclubsandwich\nclubscene\nclubschaken\nclubspeler\nclubteam\nclubtenue\nclubtopscorer\nclubtrainer\nclubverband\nclubvoetbal\nclubvoorzitter\nclubwedstrijd\nclubzetel\ncluster\nclusterbeleid\nclusterbom\nclusteren\nclustering\nclustervorming\nco-commentator\nco-educatie\nco-existent\nco-existente\nco-existentie\nco-ouder\nco-ouderschap\nco-presentator\nco-president\ncoach\ncoachen\ncoaches\ncoaching\ncoadjutor\ncoaguleren\ncoalitie\ncoalitieakkoord\ncoalitiebelang\ncoalitieberaad\ncoalitiefractie\ncoalitiegenoot\ncoalitiekabinet\ncoalitiemeerderheid\ncoalitiemodel\ncoalitieoorlog\ncoalitieoverleg\ncoalitiepartij\ncoalitiepartner\ncoalitieplannen\ncoalitiepolitiek\ncoalitieregering\ncoalitieverband\ncoalitievorming\ncoalitiewissel\ncoassistent\ncoassistentschap\ncoaster\ncoat\ncoaten\ncoating\ncoatingzijde\ncoauteur\ncoaxiaal\ncoaxkabel\ncobra\ncoca\ncocablad\ncocaboer\ncocateelt\ncocaïne\ncocaïne-inspuiting\ncocaïneaffaire\ncocaïnebende\ncocaïnegebruik\ncocaïnehandel\ncocaïnekartel\ncocaïnemaffia\ncocaïnesmokkel\ncocaïnevangst\ncoccus\ncochenille\ncockerspaniël\ncockney\ncockpit\ncockpitbemanning\ncockpitrecorder\ncockpitvoicerecorder\ncocktail\ncocktailbar\ncocktailjapon\ncocktailjurk\ncocktailparty\ncocktailprikker\ncocktailsaus\ncocktailshaker\ncocon\ncocoonen\ncocooning\ncocotte\ncoda\ncode\ncodebericht\ncodec\ncodecisie\ncodecommissie\ncodeerder\ncodeerster\ncodelijst\ncodenaam\ncodenummer\ncodereeks\ncoderekening\ncoderen\ncodering\ncoderingslijst\ncoderingsprobleem\ncoderingssysteem\ncodesysteem\ncodetaal\ncodetelegram\ncodeur\ncodewoord\ncodex\ncodeïne\ncodicil\ncodicologie\ncodificatie\ncodificeren\ncodille\ncodirecteur\ncoeliakie\ncoffeeshop\ncoffeeshopbeleid\ncoffeeshophouder\ncofferdam\ncoffeïne\ncofinanciering\ncognac\ncognacgrog\ncognacje\ncognitie\ncognitief\ncognossement\ncohabitatie\ncohabiteren\ncoherent\ncoherentie\ncohesie\ncohesieland\ncohort\ncohorte\ncoifferen\ncoiffeur\ncoiffeuse\ncoiffure\ncointreau\ncoke\ncokegebruik\ncokes\ncokesfabriek\ncokesmokkel\ncokesoven\ncol\ncola\ncola-tic\ncolablikje\ncolafles\ncolamarkt\ncolasmaak\ncolbert\ncolbertjas\ncolbertje\ncolbertkostuum\ncolchicine\ncold turkey\ncoldcaseteam\ncoldturkeymethode\ncolibacterie\ncollaborateur\ncollaboratie\ncollaboreren\ncollage\ncollageachtig\ncollageen\ncollaps\ncollateraal\ncollatie\ncollationeren\ncollationering\ncollect call\ncollectant\ncollectante\ncollecte\ncollectebus\ncollecteren\ncollecteschaal\ncollecteur\ncollectezak\ncollectie\ncollectiebeleid\ncollectiecentrum\ncollectief\ncollectievelastendruk\ncollectievorming\ncollectioneren\ncollectioneur\ncollectivisatie\ncollectiviseren\ncollectivisering\ncollectivisme\ncollectivist\ncollectivistisch\ncollectiviteit\ncollectivum\ncollector\ncollectrice\ncollega\ncollega-Kamerlid\ncollega-acteur\ncollega-architect\ncollega-dichter\ncollega-directeur\ncollega-hoogleraar\ncollega-international\ncollega-minister\ncollega-onderzoeker\ncollega-raadslid\ncollega-schrijver\ncollega-wethouder\ncollege\ncollegebank\ncollegebeleid\ncollegebesluit\ncollegedag\ncollegedictaat\ncollegegeld\ncollegegelddifferentiatie\ncollegegeldverhoging\ncollegehengst\ncollegejaar\ncollegekaart\ncollegelid\ncollegemateriaal\ncollegepartij\ncollegeperiode\ncollegeprogramma\ncollegerooster\ncollegevergadering\ncollegevoorstel\ncollegevoorzitter\ncollegevorming\ncollegeweek\ncollegeweken\ncollegezaal\ncollegiaal\ncollegialiteit\ncollegium\ncolli\ncollideren\ncollie\ncollier\ncollisie\ncollo\ncollocatie\ncollodion\ncollodium\ncolloquium\ncolloïdaal\ncolloïde\ncollusie\ncolofon\ncolofonium\ncolonnade\ncolonne\ncoloradokever\ncoloratuur\ncoloratuursopraan\ncoloratuurzangeres\ncoloriet\ncolorist\ncoloristisch\ncolostrum\ncolportage\ncolportageroman\ncolportagewet\ncolporteren\ncolporteur\ncolt\ncoltan\ncoltrui\ncolumbarium\ncolumn\ncolumnisme\ncolumnist\ncolumniste\ncolère\ncoma\ncomapatiënt\ncomateus\ncombattant\ncombi\ncombikaart\ncombiketel\ncombinatie\ncombinatiefout\ncombinatiekorting\ncombinatiemogelijkheid\ncombinatiepil\ncombinatierekening\ncombinatieslot\ncombinatiespel\ncombinatietang\ncombinatietherapie\ncombinatieticket\ncombinatievaccin\ncombinatievermogen\ncombinatievoetbal\ncombinatoir\ncombinatoire\ncombinatoriek\ncombinatorisch\ncombine\ncombineerbaar\ncombineren\ncombioven\ncombiregeling\ncombo\ncombobox\ncombolid\ncomeback\ncomedy\ncomedyserie\ncomestibles\ncomfort\ncomfortabel\ncoming man\ncoming-out\ncomité\ncomitélid\ncommandant\ncommandante\ncommanderen\ncommanderij\ncommandeur\ncommandeurskruis\ncommanditair\ncommandite\ncommando\ncommando-eenheid\ncommando-overdracht\ncommandoactie\ncommandobrug\ncommandocentrale\ncommandocentrum\ncommandogroep\ncommandoniveau\ncommandopost\ncommandostructuur\ncommandoteam\ncommandotoren\ncommandotroepen\ncommandovlag\ncommandovoering\ncommandowisseling\ncommedia dell'arte\ncommemorabel\ncommensaal\ncommensalisme\ncommentaar\ncommentaarhaken\ncommentaarloos\ncommentaarmachine\ncommentaarschrijver\ncommentaarstem\ncommentaartekst\ncommentariëren\ncommentator\ncommenteren\ncommerce\ncommercial\ncommercialisatie\ncommercialiseren\ncommercialisering\ncommercialiteit\ncommercie\ncommercieel\ncommerçant\ncommies\ncommiesbrood\ncommissariaat\ncommissaris\ncommissaris-generaal\ncommissarisfunctie\ncommissarispost\ncommissariszetel\ncommissie\ncommissie-inkomsten\ncommissiebasis\ncommissiebedrag\ncommissieboek\ncommissiegeld\ncommissiegoed\ncommissiehandel\ncommissiekamer\ncommissielid\ncommissieloon\ncommissierapport\ncommissieverband\ncommissievergadering\ncommissievoorstel\ncommissievoorzitter\ncommissiewerk\ncommissionair\ncommissoriaal\ncommittent\ncommitteren\ncommode\ncommodity\ncommodore\ncommon rail\ncommotie\ncommunaal\ncommunautair\ncommunautarisering\ncommunauteit\ncommune\ncommunicabel\ncommunicant\ncommunicatie\ncommunicatie-infrastructuur\ncommunicatieadviseur\ncommunicatieapparatuur\ncommunicatiebedrijf\ncommunicatiebeheersing\ncommunicatiebeleid\ncommunicatiebureau\ncommunicatiecampagne\ncommunicatiecentrum\ncommunicatiecultuur\ncommunicatiedeskundige\ncommunicatief\ncommunicatiefout\ncommunicatiegroep\ncommunicatiekanaal\ncommunicatiekloof\ncommunicatiekosten\ncommunicatielijn\ncommunicatiemanagers\ncommunicatiemarkt\ncommunicatiemedia\ncommunicatiemedium\ncommunicatiemiddel\ncommunicatiemogelijkheid\ncommunicatienet\ncommunicatienetten\ncommunicatienetwerk\ncommunicatienetwerken\ncommunicatieplan\ncommunicatieplatform\ncommunicatiepolitiek\ncommunicatieprincipe\ncommunicatieprobleem\ncommunicatieproces\ncommunicatieprogramma\ncommunicatieproject\ncommunicatieprotocol\ncommunicatiesatelliet\ncommunicatiesector\ncommunicatiesoftware\ncommunicatiestoornis\ncommunicatiestoring\ncommunicatiestrategie\ncommunicatiesysteem\ncommunicatietechniek\ncommunicatietechnologie\ncommunicatietheoretisch\ncommunicatietheorie\ncommunicatietraining\ncommunicatieverantwoordelijke\ncommunicatieverbinding\ncommunicatieverkeer\ncommunicatievermogen\ncommunicatievorm\ncommunicatievormen\ncommunicatiewetenschap\ncommunicatiewetenschapper\ncommunicator\ncommuniceerbaar\ncommuniceren\ncommunie\ncommuniebank\ncommunieboek\ncommuniefeest\ncommuniekleed\ncommuniekleren\ncommuniezieltje\ncommuniqué\ncommuniqués\ncommunis opinio\ncommunisme\ncommunist\ncommunisten\ncommunistenjacht\ncommunistenjager\ncommunistenleider\ncommunistenvreter\ncommunistisch\ncommuniteit\ncommunity\ncommutatie\ncommutatief\ncompact\ncompact camera\ncompact cassette\ncompact disc\ncompactheid\ncompagnie\ncompagniecommandant\ncompagnieschap\ncompagniescommandant\ncompagnon\ncomparant\ncomparante\ncomparatief\ncomparatisme\ncomparatist\ncompareren\ncomparitie\ncompartiment\ncompartimentering\ncompassie\ncompatibel\ncompatibiliteit\ncompatibiliteiten\ncompatibiliteitsprobleem\ncompendium\ncompensabel\ncompensatie\ncompensatiebedrag\ncompensatiefonds\ncompensatiekas\ncompensatiemaatregel\ncompensatieorder\ncompensatieplan\ncompensatieplannen\ncompensatiepunt\ncompensatieregeling\ncompensatieslinger\ncompensatoir\ncompensator\ncompensatoren\ncompenseren\ncompetent\ncompetentie\ncompetentiebeloning\ncompetentiecentrum\ncompetentieconflict\ncompetentiegebied\ncompetentiegebieden\ncompetentiegeschil\ncompetentiekwestie\ncompetentiestrijd\ncompetentievraag\ncompeteren\ncompetitie\ncompetitie-element\ncompetitie-indeling\ncompetitiedag\ncompetitiedebuut\ncompetitiedoelpunt\ncompetitieduel\ncompetitief\ncompetitiefilm\ncompetitiefilms\ncompetitiehelft\ncompetitieleider\ncompetitienederlaag\ncompetitieprogramma\ncompetitieronde\ncompetitieschema\ncompetitieslot\ncompetitiespeler\ncompetitiesport\ncompetitiestart\ncompetitiestrijd\ncompetitietreffen\ncompetitietreffer\ncompetitieverband\ncompetitieverloop\ncompetitievervalsing\ncompetitievoetbal\ncompetitiewedstrijd\ncompetitiezege\ncompetitiviteit\ncompilatie\ncompilatie-cd\ncompilatieproces\ncompilatiewerk\ncompilator\ncompileerproces\ncompiler\ncompileren\ncompleet\ncompleetheid\ncomplement\ncomplementair\ncomplementariteit\ncomplementeren\ncomplet\ncompleten\ncompleteren\ncompletering\ncomplex\ncomplexheid\ncomplexiteit\ncomplexiteitsanalyse\ncomplexiteitstheorie\ncomplexloos\ncomplicatie\ncomplice\ncompliceren\ncompliciteit\ncompliment\ncomplimenteren\ncomplimenteus\ncomplot\ncomplotdenken\ncomplotteren\ncomplottheorie\ncomponent\ncomponentenbasis\ncomponentenlijm\ncomponentensamenstelling\ncomponentenverf\ncomponeren\ncomponist\ncomponiste\ncomposer\ncomposiet\ncomposieten\ncomposietmateriaal\ncompositie\ncompositiebal\ncompositiefoto\ncompositieles\ncompositietekening\ncompositiewedstrijd\ncompositorisch\ncompositum\ncompost\ncompostbak\ncomposteerbedrijf\ncomposteren\ncompostering\ncomposteur\ncomposthoop\ncompostvat\ncompostvaten\ncompote\ncompotelepel\ncompoteschaal\ncompounddynamo\ncompressie\ncompressieprogramma\ncompressieruimte\ncompressieslag\ncompressietechniek\ncompressieverhouding\ncompressor\ncomprimeren\ncomprimé\ncompromis\ncompromisbereidheid\ncompromisformule\ncompromiskandidaat\ncompromisloos\ncompromisoplossing\ncompromistekst\ncompromisvoorstel\ncompromittant\ncompromitteren\ncompromitterend\ncomptabel\ncomptabele\ncomptabiliteit\ncomptabiliteitswet\ncompulsief\ncomputer\ncomputeradministratie\ncomputeralgebra\ncomputeranimatie\ncomputerapparatuur\ncomputerarchitectuur\ncomputeraritmetiek\ncomputerbedrijf\ncomputerbeeld\ncomputerberekening\ncomputerbestand\ncomputerbesturing\ncomputerbeurs\ncomputerbeveiliging\ncomputerbezit\ncomputerblad\ncomputerbladen\ncomputerbouwer\ncomputercapaciteit\ncomputercentrum\ncomputerchip\ncomputerclub\ncomputercluster\ncomputerconcern\ncomputerconfiguratie\ncomputercriminaliteit\ncomputercursus\ncomputerdata\ncomputerdeskundige\ncomputeren\ncomputerfabrikant\ncomputerfout\ncomputerfraude\ncomputerfreak\ncomputergame\ncomputergebied\ncomputergebruik\ncomputergebruiker\ncomputergeheugen\ncomputergeneratie\ncomputergestuurd\ncomputergigant\ncomputerhardware\ncomputerinbraak\ncomputerindustrie\ncomputerintensief\ncomputeriseren\ncomputerisering\ncomputerjargon\ncomputerkenner\ncomputerkennis\ncomputerkeuze\ncomputerkeyboard\ncomputerkosten\ncomputerkraak\ncomputerkracht\ncomputerkraker\ncomputerkunde\ncomputerkunst\ncomputerland\ncomputerles\ncomputerleverancier\ncomputerlijst\ncomputerlijsten\ncomputerlokaal\ncomputermaker\ncomputerman\ncomputermarkt\ncomputermateriaal\ncomputermatig\ncomputermisdaad\ncomputermodel\ncomputermonitor\ncomputermuis\ncomputermuziek\ncomputernetwerk\ncomputerondersteund\ncomputeronderwijs\ncomputerorganisatie\ncomputerpark\ncomputerplatform\ncomputerprobleem\ncomputerproducent\ncomputerprogramma\ncomputerprogrammatuur\ncomputerprogrammeur\ncomputerreus\ncomputerrevolutie\ncomputerruimte\ncomputers\ncomputerscherm\ncomputersector\ncomputersimulatie\ncomputersoftware\ncomputerspecialist\ncomputerspel\ncomputerspelletje\ncomputerstaat\ncomputerstem\ncomputerstoring\ncomputersysteem\ncomputertaal\ncomputertechniek\ncomputertechnologie\ncomputertekening\ncomputerterminal\ncomputertijd\ncomputertijdperk\ncomputertijdschrift\ncomputertoepassing\ncomputertomografie\ncomputeruitdraai\ncomputeruitgang\ncomputeruitval\ncomputerverbinding\ncomputerverkeer\ncomputervertaling\ncomputerverwerking\ncomputervirus\ncomputerwereld\ncomputerwetenschap\ncomputerwinkel\ncomputerzaak\ncomtoise\ncomédienne\nconcaaf\nconcateneren\nconcelebrant\nconcelebratie\nconcelebreren\nconcentraat\nconcentratie\nconcentratiebeweging\nconcentratiegebied\nconcentratiegolf\nconcentratiegraad\nconcentratiekamp\nconcentratiekampsyndroom\nconcentratieoefening\nconcentratieprobleem\nconcentratieproces\nconcentratiepunt\nconcentratieschool\nconcentratiestoornis\nconcentratietendens\nconcentratieverlies\nconcentratievermogen\nconcentreren\nconcentrisch\nconcept\nconceptadvies\nconceptakkoord\nconceptalbum\nconceptbegroting\nconceptbeleidsplan\nconceptbrief\nconceptcontract\nconcepthouder\nconceptie\nconceptlijst\nconceptmatig\nconceptnota\nconceptnotitie\nconceptovereenkomst\nconceptplan\nconceptprogramma\nconceptrapport\nconceptregeerakkoord\nconceptreglement\nconcepttekst\nconceptual art\nconceptualisatie\nconceptualisaties\nconceptualiseer\nconceptualiseerde\nconceptualiseerden\nconceptualiseert\nconceptualiseren\nconceptualisering\nconceptualisme\nconceptualist\nconceptueel\nconceptverkiezingsprogramma\nconceptversie\nconceptvoorstel\nconceptvorm\nconcern\nconcernbudget\nconcerncontroller\nconcerndienst\nconcerndirectie\nconcernfinanciering\nconcernkosten\nconcernleiding\nconcernniveau\nconcernomzet\nconcernonderdeel\nconcernoverhead\nconcernrichtlijn\nconcernstaf\nconcernstaven\nconcernstrategie\nconcerntop\nconcernverband\nconcernwinst\nconcert\nconcertagenda\nconcertant\nconcertavond\nconcertbezoek\nconcertbezoeker\nconcertenreeks\nconcerteren\nconcertganger\nconcertgebouw\nconcertino\nconcertmeester\nconcertmuziek\nconcerto\nconcertorganisator\nconcertpianist\nconcertpianiste\nconcertpodium\nconcertprogramma\nconcertpromotor\nconcertpubliek\nconcertreeks\nconcertregistratie\nconcertreis\nconcertseizoen\nconcertseries\nconcertstuk\nconcerttournee\nconcertvleugel\nconcertvorm\nconcertzaal\nconcertzanger\nconcertzangeres\nconcessie\nconcessief\nconcessiegebied\nconcessiehouder\nconcessieperiode\nconcessierechten\nconcessiestelsel\nconcessiewet\nconcessionaris\nconcessioneel\nconchyliën\nconciliair\nconciliatie\nconcilie\nconciliëren\nconcipiëren\nconciërge\nconclaaf\nconclave\nconcluderen\nconclusie\nconcomitant\nconcordaat\nconcordantie\nconcordantiebestand\nconcorderen\nconcours\nconcours hippique\nconcreet\nconcreetheid\nconcretiseren\nconcretisering\nconcubinaat\nconcubine\nconcurrent\nconcurrente\nconcurrentie\nconcurrentieanalyse\nconcurrentiebeding\nconcurrentiebeleid\nconcurrentiedruk\nconcurrentieel\nconcurrentiegevoelig\nconcurrentiehandicap\nconcurrentiekracht\nconcurrentiemiddel\nconcurrentienadeel\nconcurrentiepositie\nconcurrentiesituatie\nconcurrentieslag\nconcurrentiestrijd\nconcurrentieverhouding\nconcurrentievermogen\nconcurrentievervalsende\nconcurrentievervalsing\nconcurrentievoordeel\nconcurrentiewaakhond\nconcurreren\nconcurrerend\ncondens\ncondensaat\ncondensatie\ncondensatiedrogers\ncondensatiestreep\ncondensatievermogen\ncondensatievocht\ncondensatiewarmte\ncondensatiewater\ncondensator\ncondensatorplaat\ncondensatorspanning\ncondenseren\ncondensgoot\ncondensor\ncondensprofiel\ncondensstrepen\ncondensvorming\ncondenswater\nconditie\nconditiebeleid\nconditietest\nconditietrainer\nconditietraining\nconditio sine qua non\ncondition humaine\nconditionalis\nconditioneel\nconditioner\nconditioneren\nconditionering\nconditioning\ncondoleance\ncondoleancebezoek\ncondoleancebrief\ncondoleanceregister\ncondoleantie\ncondoleren\ncondominium\ncondoom\ncondoomautomaat\ncondoomfabrikant\ncondoomgebruik\ncondor\nconducteur\nconductor\nconductrice\nconduite\nconduitelijst\nconduitestaat\nconfectie\nconfectie-industrie\nconfectieafdeling\nconfectieatelier\nconfectiebedrijf\nconfectiekleding\nconfectiepak\nconfectiesector\nconfectiewinkel\nconfectiezaak\nconfectionair\nconfectioneren\nconfederaal\nconfederalisme\nconfederatie\nconfederatief\nconfedereren\nconference\nconferencier\nconferentie\nconferentiebezoek\nconferentiecentrum\nconferentieganger\nconferentiemap\nconferentieoord\nconferentieruimte\nconferentietafel\nconferentiezaal\nconfereren\nconfessie\nconfessionalisme\nconfessioneel\nconfessionelen\nconfetti\nconfidentialiteit\nconfidentie\nconfidentieel\nconfiguratie\nconfiguratiebestand\nconfiguratiegegevens\nconfiguratiescherm\nconfigurationeel\nconfigurationele\nconfigureren\nconfirmatie\nconfirmeren\nconfiscabel\nconfiscatie\nconfiserie\nconfiseur\nconfisqueren\nconfiteor\nconfituren\nconfituur\nconflict\nconflictbeheersing\nconflictbemiddelaar\nconflictbemiddeling\nconflicteren\nconflicterend\nconflictgebied\nconflicthaard\nconflicthantering\nconflictmijdende\nconflictmodel\nconflictoplossing\nconflictpreventie\nconflictpunt\nconflictsfeer\nconflictsituatie\nconflictstof\nconflictueus\nconfluent\nconfluentie\nconform\nconformatie\nconformeren\nconformering\nconformisme\nconformist\nconformistisch\nconformiteit\nconfrater\nconfrontatie\nconfrontatiebeleid\nconfrontatiekoers\nconfrontatiepolitiek\nconfronteren\nconfrère\nconfrérie\nconfuciaans\nconfucianisme\nconfucianistisch\nconfusie\nconfuus\nconga\ncongeniaal\ncongenitaal\ncongestie\ncongestieprobleem\nconglomeraat\nconglomeratie\ncongreganiste\ncongregatie\ncongres\ncongresafgevaardigde\ncongresagenda\ncongresbesluit\ncongresbesluiten\ncongresbezoek\ncongresbijdrage\ncongrescentrum\ncongresdag\ncongresdeelnemer\ncongresganger\ncongresgebouw\ncongreshal\ncongreskrant\ncongreslid\ncongrespresidium\ncongresruimte\ncongressen\ncongresseren\ncongressist\ncongresstad\ncongresstukken\ncongresthema\ncongresuitspraak\ncongresverslagen\ncongresvoorbereiding\ncongresvoorstel\ncongresvoorstellen\ncongresvoorzitter\ncongreszaal\ncongruent\ncongruentie\ncongrueren\ncongé\nconifeer\nconisch\nconjectuur\nconjugaal\nconjugatie\nconjugeren\nconjunct\nconjuncten\nconjunctie\nconjunctief\nconjunctiva\nconjunctivitis\nconjunctureel\nconjunctuur\nconjunctuurbarometer\nconjunctuurbeweging\nconjunctuurcyclus\nconjunctuurdal\nconjunctuurgevoelig\nconjunctuurgevoeligheid\nconjunctuurgolf\nconjunctuurherstel\nconjunctuurindicator\nconjunctuuromslag\nconjunctuurpolitiek\nconjunctuurschommeling\nconjunctuurverloop\nconjunctuurverschijnsel\nconjunctuurvertraging\nconjunctuurwerkloosheid\nconnaisseur\nconnectie\nconnectief\nconnectieven\nconnectiviteit\nconnector\nconnectoren\nconnectors\nconnossement\nconnotatie\nconnotatief\nconopeum\nconquistador\nconrector\nconsacreren\nconsanguiniteit\nconsciëntie\nconsciëntieus\nconscriptie\nconsecratie\nconsecrator\nconsecreren\nconsecutief\nconsensus\nconsensuscultuur\nconsensusdemocratie\nconsensuseconomie\nconsensusmaatschappij\nconsensusmodel\nconsensuspolitiek\nconsensusverwachting\nconsensusvorming\nconsent\nconsentbeginsel\nconsenteren\nconsequent\nconsequentheid\nconsequentie\nconsequentiekosten\nconservatie\nconservatief\nconservatief-liberaal\nconservatief-nationalistisch\nconservatieve\nconservatisme\nconservatoir\nconservator\nconservatorium\nconservatoriumopleiding\nconservatoriumstudent\nconservatrice\nconserveermiddel\nconserven\nconservenblik\nconservenfabriek\nconservenfabrikant\nconservenindustrie\nconserveren\nconservering\nconserveringsmethode\nconserveringsmiddel\nconserveringsprobleem\nconsiderabel\nconsiderans\nconsideratie\nconsignatie\nconsignatiekas\nconsigne\nconsigneren\nconsilium abeundi\nconsistent\nconsistentie\nconsistoriaal\nconsistorie\nconsistoriegebed\nconsistoriekamer\nconsole\nconsolidatie\nconsolidatiebeweging\nconsolidatiefase\nconsolidatiegolf\nconsolidatieproces\nconsolidatieslag\nconsolideren\nconsolidering\nconsommé\nconsonant\nconsonantisme\nconsorten\nconsortia\nconsortium\nconsortiums\nconspiratie\nconspireren\nconstant\nconstante\nconstantheid\nconstantie\nconstatatie\nconstateerbaar\nconstateren\nconstatering\nconstateur\nconstellatie\nconsternatie\nconstipatie\nconstituante\nconstituent\nconstitueren\nconstitutie\nconstitutief\nconstitutionaliteit\nconstitutioneel\nconstruct\nconstructeur\nconstructie\nconstructiebedrijf\nconstructief\nconstructiefout\nconstructiemateriaal\nconstructiemethode\nconstructieprincipe\nconstructieprobleem\nconstructiewerk\nconstructiewerkplaats\nconstructivisme\nconstructivist\nconstructivistisch\nconstrueren\nconsul\nconsul-generaal\nconsulaat\nconsulaat-generaal\nconsulair\nconsulent\nconsulente\nconsulentes\nconsulentschap\nconsult\nconsultancy\nconsultancybedrijf\nconsultancybureau\nconsultant\nconsultantbureau\nconsultantsbureau\nconsultatie\nconsultatiebureau\nconsultatiedocument\nconsultatief\nconsultatieproject\nconsultatieronde\nconsulteren\nconsultingbedrijf\nconsultingbureau\nconsumabel\nconsument\nconsumentenaankopen\nconsumentenactie\nconsumentenactiviteit\nconsumentenartikel\nconsumentenbehoefte\nconsumentenbelang\nconsumentenbeleid\nconsumentenbescherming\nconsumentenbond\nconsumentenboycot\nconsumentencampagne\nconsumentencategorie\nconsumentendivisie\nconsumentenelektronica\nconsumentenfolder\nconsumentengebied\nconsumentengebieden\nconsumentengedrag\nconsumentengemeenschap\nconsumentengids\nconsumentengoederen\nconsumentengroep\nconsumenteninformatie\nconsumentenkrediet\nconsumentenkring\nconsumentenmarkt\nconsumentenomzet\nconsumentenonderzoek\nconsumentenorganisatie\nconsumentenpanel\nconsumentenpatroon\nconsumentenprijs\nconsumentenprijsindex\nconsumentenproduct\nconsumentenprogramma\nconsumentenrecht\nconsumentenrubriek\nconsumentensubsidie\nconsumentensurplus\nconsumentenuitzending\nconsumentenvereniging\nconsumentenvertrouwen\nconsumentenvoorkeur\nconsumentenvoorlichting\nconsumentenvraag\nconsumentenvuurwerk\nconsumentenwinkel\nconsumentgericht\nconsumentisme\nconsumentvriendelijk\nconsumeren\nconsuminderen\nconsummatie\nconsumptie\nconsumptie-ijs\nconsumptieaardappel\nconsumptieartikel\nconsumptiebeperking\nconsumptiecultuur\nconsumptiedrift\nconsumptief\nconsumptiegedrag\nconsumptiegoed\nconsumptiegoederen\nconsumptiegroei\nconsumptiemaatschappij\nconsumptiemelk\nconsumptieniveau\nconsumptiepakket\nconsumptiepatroon\nconsumptieprijs\nconsumptieprijsindex\nconsumptievis\ncontact\ncontactadres\ncontactadvertentie\ncontactafdruk\ncontactambtenaar\ncontactarm\ncontactarmoede\ncontactavond\ncontactcentrum\ncontactcommissie\ncontactdag\ncontactdoos\ncontacten\ncontacteren\ncontactgeluid\ncontactgestoord\ncontactgestoorde\ncontactgroep\ncontactgroepen\ncontactkantoor\ncontactlegging\ncontactlens\ncontactlijm\ncontactman\ncontactmogelijkheid\ncontactonderzoek\ncontactorgaan\ncontactpersoon\ncontactprobleem\ncontactpunt\ncontactsleutel\ncontactslot\ncontactstoornis\ncontactstoppen\ncontacttijd\ncontactueel\ncontactuur\ncontactverbod\ncontainer\ncontainerbedrijf\ncontainerbegrip\ncontainerhaven\ncontaineroverslag\ncontaineroverslagbedrijf\ncontainerpark\ncontainerplaats\ncontainerscan\ncontainerschip\ncontainersector\ncontainerterminal\ncontainertransport\ncontainervaart\ncontainervervoer\ncontainerwagen\ncontaminatie\ncontamineren\ncontant\ncontanten\ncontemplatie\ncontemplatief\ncontemporain\ncontent\ncontentieus\ncontest\ncontestant\ncontestatie\ncontesteren\ncontext\ncontextgevoelig\ncontextmenu\ncontextueel\ncontextvrijheid\ncontigu\ncontinent\ncontinentaal\ncontinentaal-Europees\ncontinentie\ncontingent\ncontingente\ncontingenteren\ncontingentering\ncontingentie\ncontingentietheorie\ncontinu\ncontinuarbeid\ncontinuatie\ncontinubedrijf\ncontinudienst\ncontinue\ncontinueren\ncontinuering\ncontinumarkt\ncontinuo\ncontinurooster\ncontinuïteit\ncontinuïteitsoverweging\ncontinuïteitsstreven\ncontinuüm\nconto\ncontour\ncontourlijn\ncontra\ncontra-alt\ncontra-enquête\ncontra-expert\ncontra-expertise\ncontra-indicatie\ncontrabande\ncontrabas\ncontrabassist\ncontraboek\ncontraceptie\ncontraceptief\ncontraceptiemiddel\ncontraceptioneel\ncontraceptivum\ncontract\ncontractant\ncontractarbeider\ncontractbasis\ncontractbedrag\ncontractbreuk\ncontractduur\ncontracteerplicht\ncontractenrecht\ncontracteren\ncontractie\ncontractjaar\ncontractloon\ncontractloonstijging\ncontractmanagement\ncontractonderwijs\ncontractonderzoek\ncontractpartij\ncontractpartner\ncontractperiode\ncontractprijs\ncontractsduur\ncontractspeler\ncontractsvoorwaarde\ncontractueel\ncontractverlenging\ncontractverplichting\ncontractvrijheid\ncontractwaarde\ncontradictie\ncontradictio\ncontradictio in terminis\ncontradictoir\ncontradictorisch\ncontragewicht\ncontraguerrilla\ncontraheren\ncontrair\ncontramal\ncontramerk\ncontramine\ncontramoer\ncontraoffensief\ncontraprestatie\ncontraprestatieregeling\ncontraproductief\ncontrapunt\ncontrapuntisch\ncontrapuntist\ncontrareformatie\ncontraremonstrant\ncontrarevolutie\ncontrarevolutionair\ncontrarie\ncontrariëren\ncontraseign\ncontrasigneren\ncontraspionage\ncontraspionagedienst\ncontrast\ncontrastekker\ncontrasteren\ncontrastief\ncontrastmiddel\ncontrastregelaar\ncontrastrijk\ncontrastvloeistof\ncontrastwerking\ncontratenor\ncontraterreur\ncontrefilet\ncontrefort\ncontreien\ncontribuant\ncontribueren\ncontributie\ncontributieachterstand\ncontributieafdracht\ncontributiebetaling\ncontributiegeld\ncontributieverhoging\ncontrole\ncontrole-instituut\ncontrole-instrument\ncontroleactie\ncontroleapparaat\ncontroleapparatuur\ncontrolebehoefte\ncontrolebeleid\ncontrolebevoegdheid\ncontrolebewijs\ncontrolebureau\ncontrolecomité\ncontrolecommissie\ncontroledienst\ncontroleerbaar\ncontroleerbaarheid\ncontrolefunctie\ncontrolegang\ncontrolegebied\ncontrolegroep\ncontrolekamer\ncontroleklok\ncontrolekosten\ncontrolelampje\ncontrolelijst\ncontrolemaatregel\ncontrolemechanisme\ncontrolemiddel\ncontrolemogelijkheid\ncontroleorgaan\ncontrolepaneel\ncontrolepost\ncontroleprogramma\ncontrolepunt\ncontroleren\ncontroleronde\ncontrolestation\ncontrolestrook\ncontrolestrookje\ncontrolestructuur\ncontrolesysteem\ncontroletaak\ncontroletabel\ncontroleteam\ncontroletoren\ncontroleur\ncontroleverlies\ncontrolevoorschrift\ncontrolevraag\ncontrolevragen\ncontrolewerk\ncontrolfreak\ncontroller\ncontroltoets\ncontroverse\ncontroversie\ncontroversieel\nconté\nconus\nconvalescent\nconvalescentie\nconvectie\nconvectiestroming\nconvectiezone\nconvector\nconvectorput\nconvenabel\nconvenant\nconveniënt\nconveniëntie\nconveniëren\nconvent\nconventie\nconventikel\nconventionalisme\nconventionaliteit\nconventioneel\nconventueel\nconvergent\nconvergentie\nconvergentiecriterium\nconvergentieprogramma\nconvergentiethese\nconvergeren\nconvers\nconversatie\nconversatieanalyse\nconversatieles\nconversatietoon\nconversatiezaal\nconversationeel\nconversationele\nconverseren\nconversie\nconversiebedrag\nconversiefactor\nconversiekoers\nconversiekosten\nconversielening\nconversiepremie\nconversieprijs\nconversieprogramma\nconversierecht\nconversieregeling\nconversieslag\nconversievergoeding\nconverteerbaar\nconverteren\nconvertibel\nconvertibiliteit\nconvertible\nconvertor\nconvex\nconvexiteit\nconvictie\nconvocaat\nconvocatie\nconvocatiebiljet\nconvocatiebriefje\nconvoceren\nconvolueren\nconvoluut\nconvulsief\ncooker\ncookie\ncool\ncooljazz\ncoopertest\ncopartnership\ncopernicaans\ncopieus\ncopiloot\ncoprocessor\ncoproducent\ncoproduceren\ncoproductie\ncopromotor\ncopulatie\ncopuleren\ncopyright\ncopyrightpagina\ncopyrightvermelding\ncopyshop\ncopywriter\ncopywriting\ncoquille\ncordiaal\ncordiet\ncordon bleu\ncordon sanitaire\ncorduroy\ncorebusiness\ncoreferent\ncoregisseur\ncorgi\ncornedbeef\ncorner\ncornerbal\ncornerspecialist\ncornervlag\ncornet\ncornflakes\ncorona\ncoronaal\ncoronair\ncorporale\ncorporalen\ncorporatie\ncorporatief\ncorporatisme\ncorporatistisch\ncorporeel\ncorps\ncorps diplomatique\ncorpsbal\ncorpslid\ncorpsstudent\ncorpulent\ncorpulentie\ncorpus\ncorpus delicti\ncorpusculair\ncorrect\ncorrectheid\ncorrectheidsbewijs\ncorrectheidsbewijzen\ncorrectie\ncorrectieafdeling\ncorrectief\ncorrectiefactor\ncorrectiefase\ncorrectielak\ncorrectielint\ncorrectiemechanisme\ncorrectiemodel\ncorrectieronde\ncorrectiesleutel\ncorrectieteken\ncorrectietoets\ncorrectievloeistof\ncorrectiewerk\ncorrectionaliseren\ncorrectioneel\ncorrector\ncorrectrice\ncorrelaat\ncorrelatie\ncorrelatiecoëfficiënt\ncorrelatief\ncorrelatierekening\ncorreleren\ncorrespondent\ncorrespondente\ncorrespondentennet\ncorrespondentie\ncorrespondentieadres\ncorrespondentiekaart\ncorrespondentieonderwijs\ncorrespondentievriend\ncorrespondentievriendin\ncorrespondentschap\ncorresponderen\ncorridor\ncorrigeerbaar\ncorrigenda\ncorrigendum\ncorrigeren\ncorroderen\ncorrosie\ncorrosief\ncorrumperen\ncorrumpering\ncorrupt\ncorruptheid\ncorruptie\ncorruptieaffaire\ncorruptiebestrijder\ncorruptiebestrijding\ncorruptief\ncorruptieonderzoek\ncorruptiepraktijk\ncorruptieproces\ncorruptieschandaal\ncorruptiezaak\ncorsage\ncorselet\ncorso\ncortex\ncorticosteron\ncorticosteroïden\ncorticoïde\ncortison\ncortisone\ncortège\ncorvee\ncorveedienst\ncorveelijst\ncorveeër\ncorveeërs\ncoryfee\ncoryfeeën\ncoscenarist\ncoschap\ncosinus\ncosmetica\ncosmetica-industrie\ncosmeticabedrijf\ncosmeticaconcern\ncosmeticalijn\ncosmeticamerk\ncosmeticaproduct\ncosmeticasector\ncosmetisch\ncosponsor\ncostumière\ncotangens\ncoterie\ncothurne\ncotillon\ncottage\ncouche\ncouchette\ncoulance\ncoulant\ncoulantie\ncouleur locale\ncoulisse\ncoulisselandschap\ncoulissetafel\ncouloir\ncoulomb\ncounselen\ncounseling\ncounselor\ncountdown\ncounter\ncounteren\ncounterploeg\ncountertenor\ncounterverkoop\ncountervoetbal\ncountry\ncountryachtig\ncountrydansen\ncountrymuziek\ncountrynummer\ncountryrock\ncountryster\ncountryzanger\ncountryzangeres\ncounty\ncoup\ncoupe\ncoupe soleil\ncoupenaad\ncouperen\ncouperose\ncoupeur\ncoupeuse\ncoupleider\ncouplet\ncoupon\ncouponblad\ncouponboekje\ncoupondatum\ncouponknipper\ncouponrente\ncouponschaar\ncouppleger\ncouppoging\ncoupure\ncoupé\ncoupédeur\ncour\ncourage\ncourant\ncourante\ncoureur\ncourgette\ncourseware\ncourtage\ncourtagenota\ncourtisane\ncourtoisie\ncouscous\ncouture\ncouturier\ncouvade\ncouvert\ncouverture\ncouveuse\ncouveusekind\ncouveuseverpleging\ncover\ncoverartikel\ncoverband\ncoverbedrijf\ncoveren\ncovergirl\ncoverstory\ncoverversie\ncovoorzitter\ncowboy\ncowboyfilm\ncowboyhoed\ncowboylaars\ncowboypak\ncowgirl\ncox\ncoyote\ncoëfficiënt\ncoïncident\ncoïncidenten\ncoïncidentie\ncoïncideren\ncoïtaal\ncoïteren\ncoïtus\ncoöperant\ncoöperatie\ncoöperatief\ncoöperator\ncoöpereren\ncoöptatie\ncoöpteren\ncoördinaat\ncoördinaatstelsel\ncoördinaten\ncoördinatenstelsel\ncoördinatensysteem\ncoördinatensystemen\ncoördinatie\ncoördinatiecentrum\ncoördinatiecomité\ncoördinatiecommissie\ncoördinatieorgaan\ncoördinatiepunt\ncoördinatieteam\ncoördinator\ncoördinatorenoverleg\ncoördinatrice\ncoördineren\ncoûte que coûte\ncrack\ncrackdealer\ncracker\ncrackverslaafd\ncrackverslaafde\ncrackverslaving\ncranberry\ncranberrysap\ncrank\ncrapaud\ncrapaudje\ncrapaudjes\ncrapuul\ncraquelure\ncraquelé\ncrash\ncrashen\ncrashtest\ncravate\ncrawl\ncrawlen\ncrawlslag\ncrayon\ncrazy\ncreamcracker\ncreatie\ncreatief\ncreatieveling\ncreatine\ncreationisme\ncreationist\ncreativiteit\ncreativiteitscentrum\ncreatuur\ncredenstafel\ncredit\ncreditbedrag\ncreditbedragen\ncreditcard\ncreditcardbetaling\ncreditcardfraude\ncreditcardhouder\ncreditcardmaatschappij\ncreditcardnummer\ncreditcardorganisatie\ncrediteren\ncreditering\ncrediteringen\ncrediteur\ncrediteurenbestand\ncrediteurenfactuur\ncrediteurenland\ncrediteurenlijst\ncrediteurennummer\ncreditkaart\ncreditnota\ncreditrente\ncreditsaldo\ncreditzijde\ncredo\ncrematie\ncrematieplechtigheid\ncrematorium\ncremeren\ncreoline\ncreolisering\ncreool\ncreools\ncreoolse\ncreooltaal\ncreosoot\ncreosoteren\ncrepeergeval\ncreperen\ncrescendo\ncretin\ncretinisme\ncretonne\ncretonnen\ncrew\ncreëer\ncreëerden\ncreëert\ncreëren\ncriant\ncricket\ncricketbal\ncricketbond\ncricketen\ncricketer\ncricketmatch\ncricketteam\ncricketveld\ncricketwedstrijd\ncrime\ncrime passionnel\ncrimefighter\ncriminaliseren\ncriminalisering\ncriminalist\ncriminalistiek\ncriminaliteit\ncriminaliteitsbeheersing\ncriminaliteitsbeleid\ncriminaliteitsbestrijding\ncriminaliteitscijfer\ncriminaliteitspreventie\ncriminaliteitsprobleem\ncriminaliteitsstatistiek\ncriminaliteitstoerisme\ncrimineel\ncriminogeen\ncriminologe\ncriminologie\ncriminologisch\ncriminoloog\ncrinoline\ncrisis\ncrisisachtig\ncrisisbeheer\ncrisisbeheersing\ncrisisbeheersingsoperatie\ncrisisbelasting\ncrisisberaad\ncrisisbestendig\ncrisisbestrijding\ncrisisbijdrage\ncrisiscentrum\ncrisiscomité\ncrisiscommunicatie\ncrisisdienst\ncrisisdreiging\ncrisisgebied\ncrisisgevoel\ncrisishulpverlening\ncrisisinterventie\ncrisisinterventiefunctie\ncrisisjaar\ncrisiskabinet\ncrisismaatregel\ncrisismanagement\ncrisismanager\ncrisisopname\ncrisisopvang\ncrisisoverleg\ncrisispastoraat\ncrisisperiode\ncrisisplan\ncrisissfeer\ncrisissituatie\ncrisisstaf\ncrisisteam\ncrisistijd\ncrisistoeslag\ncrisisunit\ncrisisvergadering\ncrisisverschijnsel\ncrisisvraag\ncrisisvragen\ncriteria\ncriterium\ncriteriums\ncritica\ncriticaster\ncritici\ncriticus\ncroesus\ncroissant\ncroissanterie\ncroonen\ncrooner\ncroque-monsieur\ncroquet\ncroquetspel\ncross\ncross-over\ncrossbaan\ncrosscircuit\ncrosscountry\ncrossen\ncrosser\ncrossfiets\ncrossing\ncrossmotor\ncrossterrein\ncroste\ncroupier\ncrouton\ncrowdsurfen\ncru\ncruciaal\ncrucifix\ncruise\ncruiseboot\ncruisecontrol\ncruisen\ncruiser\ncruiseschip\ncruiseterminal\ncrux\ncruzeiro\ncryogeen\ncrypt\ncrypte\ncrypten\ncryptisch\ncryptocommunist\ncryptofoon\ncryptografie\ncryptogram\ncryptologie\ncrèche\ncrème\ncrème brûlée\ncrème de la crème\ncrème fraîche\ncrèmekleurig\ncrémant\ncrêpe\ncrêpepapier\ncrêperie\ncrêpezool\ncsardas\ncubaan\ncue\ncuisine\ncuisinier\nculinair\nculminatie\nculminatiepunt\nculmineren\nculpabiliseren\ncult\ncultband\ncultbeweging\ncultboek\ncultfiguur\ncultfilm\ncultgroep\ncultheld\ncultisch\ncultivar\ncultivatie\ncultiveren\ncultivering\ncultivéparel\ncultklassieker\ncultregisseur\ncultschrijver\ncultserie\ncultstatus\nculture\ncultureel\ncultureel-historisch\ncultureel-maatschappelijk\ncultureel-politiek\ncultus\ncultusplaats\ncultuur\ncultuuraanbod\ncultuurambtenaar\ncultuurbarbaar\ncultuurbegrip\ncultuurbegroting\ncultuurbehoud\ncultuurbeleid\ncultuurbeleidsplan\ncultuurbeleving\ncultuurbepaald\ncultuurbezit\ncultuurbezoek\ncultuurbreuk\ncultuurbudget\ncultuurcentrum\ncultuurclash\ncultuurcommissie\ncultuurcomplex\ncultuurcriticus\ncultuurdebat\ncultuurdrager\ncultuureducatie\ncultuurfestival\ncultuurfilosofie\ncultuurfilosoof\ncultuurfonds\ncultuurgebied\ncultuurgebonden\ncultuurgemeenschap\ncultuurgeschiedenis\ncultuurgewas\ncultuurgoed\ncultuurgrond\ncultuurhistoricus\ncultuurhistorie\ncultuurhistorisch\ncultuurhuis\ncultuurindustrie\ncultuurinvloed\ncultuurjaar\ncultuurkanaal\ncultuurkloof\ncultuurkloven\ncultuurkring\ncultuurkritiek\ncultuurkritisch\ncultuurland\ncultuurlandschap\ncultuurleven\ncultuurliefhebber\ncultuurloos\ncultuurmanagement\ncultuurminister\ncultuurminnend\ncultuurnatie\ncultuurniveau\ncultuurnota\ncultuuromslag\ncultuuroverdracht\ncultuurpact\ncultuurpaleis\ncultuurparticipatie\ncultuurpatrimonium\ncultuurpatroon\ncultuurpaus\ncultuurpessimisme\ncultuurpessimist\ncultuurpessimistisch\ncultuurplant\ncultuurpolitiek\ncultuurprijs\ncultuurproduct\ncultuurprogramma\ncultuurpsycholoog\ncultuurraad\ncultuurrelativisme\ncultuurschat\ncultuurschok\ncultuursector\ncultuursfeer\ncultuurshock\ncultuursociologie\ncultuursocioloog\ncultuursponsoring\ncultuurspreiding\ncultuurstaat\ncultuurstad\ncultuurstelsel\ncultuurstrijd\ncultuursysteem\ncultuurtaal\ncultuurtechnicus\ncultuurtechniek\ncultuurtechnisch\ncultuurtempel\ncultuurtheater\ncultuurtoerisme\ncultuurtypes\ncultuuruiting\ncultuurverandering\ncultuurverschijnsel\ncultuurverschil\ncultuurvolk\ncultuurwereld\ncultuurwetenschap\ncultuurwetenschapper\ncultuurwethouder\ncultuurzender\ncum laude\ncum suis\ncumarine\ncumul\ncumulatie\ncumulatief\ncumuleren\ncumulus\ncunnilingus\ncup\ncupduel\ncupfinale\ncupido\ncupmaat\ncupmatch\ncupvoetbal\ncurandus\ncurare\ncuratele\ncuratelestelling\ncuratief\ncurator\ncuratorenvergadering\ncuratorium\ncuratoriumvergadering\ncuratorschap\ncuratrice\ncuraçao\ncureren\ncurettage\ncurette\ncuretteren\ncurie\ncuriekardinaal\ncurieus\ncuriosa\ncuriositeit\ncuriositeitenkabinet\ncuriositeitenverzameling\ncuriositeitswaarde\ncuriosum\ncurling\ncurriculum\ncurriculum vitae\ncurry\ncurrysaus\ncurryworst\ncursief\ncursiefje\ncursiefjesschrijver\ncursist\ncursiveren\ncursivering\ncursor\ncursorbesturing\ncursorbeweging\ncursorisch\ncursorpositie\ncursortoets\ncursortoetsen\ncursorverplaatsing\ncursus\ncursusaanbod\ncursusboek\ncursuscalendarium\ncursusdag\ncursusdagen\ncursusdoel\ncursusduur\ncursusgeld\ncursusgroep\ncursusjaar\ncursusleider\ncursusleiding\ncursusmateriaal\ncursusontwikkeling\ncursusopzet\ncursusorganisatie\ncursusoverzicht\ncursuspakket\ncursusplaats\ncursusprijs\ncursusprogramma\ncursusruimte\ncursustekst\ncurve\ncurvimeter\ncustard\ncustode\ncustos\ncutter\ncutteren\ncutterzuiger\ncv\ncv-installatie\ncv-ketel\ncyaan\ncyaankali\ncyanide\ncyanose\ncyberbabe\ncybercafé\ncybercriminaliteit\ncybercultuur\ncybernetica\ncyberneticus\ncybernetisch\ncyberpunk\ncyberspace\ncyberterrorisme\ncyberwereld\ncyborg\ncyclaam\ncyclamaat\ncyclamen\ncyclisch\ncyclisme\ncyclocross\ncyclometer\ncycloon\ncycloop\ncycloopoog\ncyclopisch\ncyclosporine\ncyclostyle\ncyclotron\ncycloïde\ncyclus\ncyclusduur\ncyclustijd\ncynicus\ncynisch\ncynisme\ncypergras\ncypers\ncyrillisch\ncyste\ncytologie\ncytologisch\ncytoplasma\ncytosine\ncytostatica\nd\nd-pion\nd.d.\nd.i.\nd.m.v.\nd.w.z.\ndaad\ndaadkracht\ndaadkrachtig\ndaadwerkelijk\ndaags\ndaalder\ndaalsnelheid\ndaar\ndaaraan\ndaaraanvolgend\ndaarachter\ndaaraf\ndaarbeneden\ndaarbij\ndaarbij behorend\ndaarbinnen\ndaarboven\ndaarbovenop\ndaarbovenuit\ndaarbuiten\ndaardoor\ndaardoorheen\ndaarenboven\ndaarentegen\ndaareven\ndaargelaten\ndaarginder\ndaarginds\ndaarheen\ndaarhenen\ndaarin\ndaarjuist\ndaarlangs\ndaarlaten\ndaarmede\ndaarmee\ndaarna\ndaarnaar\ndaarnaartoe\ndaarnaast\ndaarnet\ndaarnevens\ndaarom\ndaaromheen\ndaaromtrent\ndaaronder\ndaarop\ndaaropvolgend\ndaarover\ndaaroverheen\ndaarrond\ndaarstraks\ndaartegen\ndaartegenaan\ndaartegenin\ndaartegenover\ndaartoe\ndaartussen\ndaartussendoor\ndaartussenin\ndaaruit\ndaarvan\ndaarvandaan\ndaarvoor\ndaarzonder\ndaas\ndabben\ndacht\ndactylograaf\ndactylografie\ndactylografisch\ndactylologie\ndactyloscoperen\ndactyloscopie\ndactylus\ndada\ndadaïsme\ndadaïst\ndadaïstisch\ndadel\ndadelboom\ndadelbos\ndadelhoning\ndadelijk\ndadelijkheden\ndadeloos\ndadeloosheid\ndadelpalm\ndadendrang\ndader\ndaderes\ndadergericht\ndadergroep\ndaderhulp\ndaderprofiel\ndaderschap\ndading\ndag\ndag-en-nachtevening\ndagactiviteitencentrum\ndagafschrift\ndagarrangement\ndagbalans\ndagbasis\ndagbedrag\ndagbehandeling\ndagbehandelingscentrum\ndagbesteding\ndagbestedingsproject\ndagblad\ndagbladadvertentie\ndagbladartikel\ndagbladcorrespondent\ndagbladengroep\ndagbladenmarkt\ndagbladhandelaar\ndagbladjournalist\ndagbladjournalistiek\ndagbladmarkt\ndagbladpers\ndagbladrecensent\ndagbladsector\ndagbladuitgever\ndagbladwereld\ndagbladzegel\ndagblind\ndagblindheid\ndagbloem\ndagboek\ndagboekaantekening\ndagboekcode\ndagboekfragment\ndagboeknotitie\ndagboekschrijver\ndagboekstijl\ndagboekstukje\ndagboekvorm\ndagboog\ndagbouw\ndagcentrum\ndagcijfer\ndagcirkel\ndagcrème\ndagcursus\ndagdagelijks\ndagdeel\ndagdeelprijs\ndagdief\ndagdienst\ndagdieven\ndagdieverij\ndagdromen\ndagdromer\ndagdromerij\ndagdroom\ndagelijks\ndagen\ndagenlang\ndager\ndageraad\ndagexcursie\ndagge\ndaggeld\ndaggelder\ndaggemiddelde\ndaghandel\ndaghandelaar\ndaghit\ndaghulp\ndaghuur\ndagindeling\ndaging\ndagje\ndagjesmens\ndagjesmensen\ndagkaart\ndagkalender\ndagkliniek\ndagkoers\ndagkrant\ndaglelie\ndagleven\ndaglicht\ndaglichtlamp\ndaglichtopname\ndagloner\ndagloon\ndagloonster\ndagmaat\ndagmarkt\ndagmars\ndagmeisje\ndagmenu\ndagnummer\ndagomzet\ndagonderwijs\ndagopbrengst\ndagopening\ndagopleiding\ndagopvang\ndagorde\ndagorder\ndagparkeren\ndagpatroon\ndagpauwoog\ndagplanning\ndagploeg\ndagprijs\ndagproductie\ndagprogramma\ndagrantsoen\ndagrapport\ndagrecord\ndagrecreant\ndagrecreatie\ndagregister\ndagreis\ndagrente\ndagretour\ndagritme\ndagrooster\ndagschema\ndagschool\ndagschoot\ndagschotel\ndagschuw\ndagslot\ndagsluiter\ndagsluiting\ndagstand\ndagsucces\ndagtaak\ndagtank\ndagtarief\ndagtekenen\ndagtekening\ndagtelevisie\ndagtemperatuur\ndagtocht\ndagtoerisme\ndagtrip\ndaguerreotypie\ndaguil\ndagvaarden\ndagvaarding\ndagvaardingsprocedure\ndagverblijf\ndagverdeling\ndagvergoeding\ndagverhaal\ndagverpleging\ndagvers\ndagversgroepen\ndagverzorging\ndagvlinder\ndagvoorzitter\ndagwaarde\ndagwacht\ndagwand\ndagwandeling\ndagwerk\ndagwijzer\ndagwinst\ndagzege\ndagzijde\ndagzoom\ndagzuster\ndahlia\ndaim\ndak\ndakappartement\ndakbalk\ndakbedekking\ndakbeschot\ndakconstructie\ndakdekker\ndakdekkersbedrijf\ndakdekkerswerk\ndakdekkerswerken\ndakdekking\ndakdelen\ndaken\ndakfonds\ndakgoot\ndakhaas\ndakhelling\ndakisolatie\ndakkamer\ndakkamertje\ndakkapel\ndakladder\ndaklei\ndaklekkage\ndaklicht\ndaklijn\ndaklijst\ndaklook\ndakloos\ndakloosheid\ndakloze\ndaklozenkrant\ndaklozenopvang\ndaklozenprobleem\ndakluik\ndakluiken\ndakopbouw\ndakpan\ndakpansgewijs\ndakraam\ndakrand\ndakranddetail\ndakreparatie\ndakriet\ndakruiter\ndakschade\ndakstoel\ndakterras\ndaktuin\ndakvenster\ndakvlak\ndakvloer\ndakvorm\ndakvorst\ndakwerk\ndakzijde\ndal\ndalai lama\ndalem\ndalen\ndaler\ndalgrond\ndaling\ndalkonschildje\ndalkruid\ndalles\ndalmatiek\ndalmatiër\ndaltononderwijs\ndaltonschool\ndaluren\ndalurenkaart\ndaluur\ndalven\ndalvorming\ndalweide\ndalweiden\ndalwind\ndam\ndamar\ndamarvernis\ndamasceren\ndamascering\ndamast\ndamasten\ndambord\ndambreuk\ndamclub\ndamcombinatie\ndamcompetitie\ndame\ndame blanche\ndameruil\ndames\ndamesachtig\ndamesafdeling\ndamesbediening\ndamesbeurs\ndamesblad\ndamescollectie\ndamesconfectie\ndamescoupe\ndamescoupé\ndamesdubbel\ndamesdubbelspel\ndamesdubbelteam\ndamesfiets\ndamesgroep\ndameshoed\ndameshondje\ndameshorloge\ndamesinvitatietoernooi\ndameskapper\ndameskleding\ndameskleren\ndameskoor\ndameskransje\ndamesmode\ndamesondergoed\ndamespaard\ndamesroman\ndamesschoen\ndamesschoenen\ndamesstem\ndamestas\ndamesteam\ndamestoilet\ndamestrio\ndamesverband\ndamesvoetbal\ndameszadel\ndamevleugel\ndamhert\ndamiaatjes\ndamkampioen\ndamkampioenschap\ndamklok\ndamlengte\ndammen\ndammer\ndamp\ndampaal\ndampartij\ndampdichtheid\ndampen\ndamper\ndampig\ndampigheid\ndampkap\ndampkring\ndampkringslucht\ndamplank\ndamprobleem\ndampspanning\ndamschijf\ndamslag\ndamsluis\ndamspel\ndamspeler\ndamsteen\ndamtoernooi\ndamvereniging\ndamwand\ndamwedstrijd\ndan\ndanaïde\ndanaïdenvat\ndance-evenement\ndancefeest\ndancefestival\ndancehall\ndancemuziek\ndanceparty\ndancescene\ndancing\ndandy\ndandyachtig\ndandyisme\ndanig\ndank\ndankbaar\ndankbaarheid\ndankbetoon\ndankbetuiging\ndankbrief\ndankdag\ndanken\ndankfeest\ndankgebed\ndankjewel\ndanklied\ndankoffer\ndankrede\ndankspeech\ndankwoord\ndankzeggen\ndankzegging\ndankzij\ndans\ndansant\ndansavond\ndansbaar\ndansbaarheid\ndansbeweging\ndansbewegingen\ndanscafé\ndanscarrière\ndanscentrum\ndanscultuur\ndanse macabre\ndansen\ndanser\ndanseres\ndanseur\ndanseuse\ndansfeest\ndansfestijn\ndansfestival\ndansfiguur\ndansfilm\ndansgelegenheid\ndansgezelschap\ndansgroep\ndanshuis\ndansinstituut\ndanskoord\ndanskunst\ndansleraar\ndanslerares\ndansles\ndansliedje\ndansmarathon\ndansmarieke\ndansmeester\ndansmeisje\ndansmuziek\ndansnummer\ndansopleiding\ndansorgel\ndansorkest\ndanspaar\ndanspaleis\ndanspartij\ndanspartner\ndanspas\ndansplaat\ndansproductie\ndansprogramma\ndansrepetitie\ndansritme\ndansschoen\ndansschool\ndanssector\ndansshow\ndanssport\ndansstijl\ndansstudio\ndanstaal\ndanstalent\ndanstempel\ndanstent\ndanstheater\ndansvloer\ndansvoorstelling\ndansvorm\ndanswereld\ndanswerk\ndanswoede\ndanszaal\ndantesk\ndapper\ndapperheid\ndar\ndarkroom\ndarm\ndarmafsluiting\ndarmbacterie\ndarmbeen\ndarmbloeding\ndarmcatarre\ndarmflora\ndarmfoto\ndarmgas\ndarmgestel\ndarminfectie\ndarminhoud\ndarmkanaal\ndarmkanker\ndarmklacht\ndarmklachten\ndarmkoliek\ndarmkramp\ndarmonderzoek\ndarmontsteking\ndarmoperatie\ndarmpassage\ndarmperistaltiek\ndarmpje\ndarmprobleem\ndarmsap\ndarmsnaar\ndarmstelsel\ndarmstoornis\ndarmvirus\ndarmvlies\ndarmwand\ndarmziekte\ndarren\ndart\ndartbord\ndartel\ndartelen\ndartelheid\ndarten\ndarter\ndarts\ndartsspel\ndartstoernooi\ndarwinisme\ndarwinist\ndarwinistisch\ndarwintulp\ndas\ndashboard\ndashboardkastje\ndashond\ndassen\ndassenburcht\ndassenhanger\ndassenpopulatie\ndassentunnel\ndasspeld\ndat\ndata\ndata-analyse\ndatabank\ndatabase\ndatabasebeheerder\ndatabasegegevens\ndatabaseontwerp\ndatabaseprogramma\ndatabasesoftware\ndatabasetabel\ndatabaseveld\ndatabeheer\ndatabestand\ndatabits\ndatacommunicatie\ndatacommunicatielijn\ndatacomputer\ndatahandel\ndatalijnen\ndatalimiet\ndatalogger\ndatamining\ndatamodel\ndatanet\ndatanetwerk\ndataopslag\ndataprocessing\ndatarecorder\ndatastroom\ndatastructuur\ndatasysteem\ndatatransmissie\ndatatransmissiesysteem\ndatatransport\ndatatype\ndatatypen\ndatatypist\ndatatypiste\ndataveld\ndataverkeer\ndataverwerking\ndate\ndateerbaar\ndaten\ndateren\ndatering\ndateringsmethode\ndatgene\ndatief\ndatiefconstructie\ndating\ndatingbureau\ndatingprogramma\ndatingshow\ndatje\ndato\ndatsja\ndatum\ndatumcode\ndatumcontrole\ndatumgrens\ndatuminvoer\ndatumlijn\ndatumnotatie\ndatums\ndatumstempel\ndatzelfde\ndauphin\ndauw\ndauwdruppel\ndauwen\ndauwpunt\ndauwtrappen\ndauwtrapper\ndauwworm\ndaver\ndaveren\ndaverend\ndavering\ndavidsster\ndavidster\ndavit\ndavylamp\ndazen\ndc\ndd.\nde\nde dato\nde facto\nde hele bubs\nde hemel in prijzen\nde jure\nde-escalatie\nde-escaleren\nde-woord\ndeactiveren\ndeadline\ndeal\ndealen\ndealer\ndealerbedrijf\ndealercampagne\ndealerlijst\ndealernaam\ndealernet\ndealernetwerk\ndealpand\ndealpanden\ndeathmetal\ndebacle\ndeballoteren\ndebardeur\ndebarkeren\ndebat\ndebatavond\ndebatcultuur\ndebater\ndebating\ndebatingclub\ndebatprogramma\ndebatteren\ndebatvaardigheden\ndebet\ndebetkaart\ndebetnota\ndebetpost\ndebetposten\ndebetrente\ndebetsaldo\ndebetzijde\ndebiel\ndebiet\ndebiliseren\ndebilisering\ndebiliteit\ndebitant\ndebiteren\ndebiteur\ndebiteurenadministratie\ndebiteurenbeheer\ndebiteurenbestand\ndebiteurenbewaking\ndebiteurengroep\ndebiteurengroepen\ndebiteurenlijst\ndebiteurennummer\ndebiteurenportefeuille\ndebiteurenrekening\ndebiteurenrisico\ndebiteurenselectie\ndebiteurenstaat\ndeblokkeren\ndeblokkering\ndebrailleren\ndebrayeren\ndebriefen\ndebriefing\ndebriefingsrapport\ndebuggen\ndebugger\ndebutant\ndebutante\ndebutantenbal\ndebuteren\ndebuut\ndebuut-cd\ndebuutalbum\ndebuutbundel\ndebuutfilm\ndebuutjaar\ndebuutplaat\ndebuutroman\ndebuutseizoen\ndebuutsingle\ndecaan\ndecaanfunctie\ndecade\ndecadent\ndecadentie\ndecadentisme\ndecagram\ndecalage\ndecaliter\ndecalogus\ndecaloog\ndecameter\ndecanaal\ndecanaat\ndecanteerfles\ndecanteren\ndecatlon\ndecember\ndecemberavond\ndecemberdag\ndecembermaand\ndecembernummer\ndecemberweer\ndecennia\ndecennialang\ndecennium\ndecent\ndecentie\ndecentraal\ndecentralisatie\ndecentralisatie-impuls\ndecentralisatiebeleid\ndecentralisatiegedachte\ndecentraliseren\ndecentralisering\ndecentralisme\ndeceptie\ndecharge\ndechargeren\ndecibel\ndecideren\ndeciel\ndecigram\ndeciliter\ndecimaal\ndecimaalteken\ndecime\ndecimeren\ndecimering\ndecimeter\ndecisie\ndecisiebeginsel\ndecisief\ndeck\ndeclamatie\ndeclamator\ndeclamatorisch\ndeclamatrice\ndeclameren\ndeclarabel\ndeclarant\ndeclaratie\ndeclaratiebasis\ndeclaratieformulier\ndeclaratiegedrag\ndeclaratiesysteem\ndeclaratoir\ndeclareren\ndeclasseren\ndeclassering\ndeclinatie\ndeclineren\ndecoder\ndecoderen\ndecodering\ndecolleté\ndecompilatie\ndecompositie\ndecompressie\ndecompressietijd\ndecompressieziekte\ndecomprimeren\ndeconcentratie\ndeconfessionaliseren\ndeconfessionalisering\ndeconfiture\ndeconsolidatie\ndeconstructie\ndeconstructief\ndeconstructivisme\ndeconstructivist\ndeconstructivistisch\ndeconstrueren\ndecor\ndecorateur\ndecoratie\ndecoratief\ndecoratiemateriaal\ndecoratieschilder\ndecoratiestelsel\ndecoratrice\ndecorbouw\ndecorbouwer\ndecorelement\ndecoreren\ndecorontwerp\ndecorontwerper\ndecorstuk\ndecorstukken\ndecorum\ndecorumverlies\ndecorwisseling\ndecoupeerzaag\ndecouperen\ndecreet\ndecrescendo\ndecretaal\ndecretalen\ndecreteren\ndecriminaliseren\ndecriminalisering\ndecubitus\ndecumul\ndecumulatie\ndedaigneus\ndedain\ndeden\ndedicatie\ndeduceren\ndeductie\ndeductief\ndeed\ndeeg\ndeegbal\ndeegbodem\ndeeghaak\ndeegklomp\ndeegrol\ndeegroller\ndeegsoort\ndeegwaar\ndeegwaren\ndeejay\ndeel\ndeelachtig\ndeelakkoord\ndeelarbeid\ndeelaspect\ndeelauto\ndeelbaar\ndeelbaarheid\ndeelbegroting\ndeelbehandeling\ndeelbelang\ndeelbeleid\ndeelbewerking\ndeelbewijs\ndeelbudget\ndeelbudgethouder\ndeelbudgethouders\ndeelcertificaat\ndeelcollectie\ndeelcontract\ndeeldiscipline\ndeelgebied\ndeelgemeente\ndeelgemeenteraad\ndeelgenoot\ndeelgenootschap\ndeelgenote\ndeelhandeling\ndeelhebben\ndeelhebber\ndeelhebster\ndeelinterval\ndeelleverantie\ndeellevering\ndeellijn\ndeelmarkt\ndeelmethode\ndeelname\ndeelnamebewijs\ndeelnameformulier\ndeelnamekaart\ndeelnamekaarten\ndeelnamekosten\ndeelnameprijs\ndeelneemster\ndeelnemen\ndeelnemend\ndeelnemer\ndeelnemersaantal\ndeelnemerschap\ndeelnemersformulier\ndeelnemerskring\ndeelnemerslijst\ndeelnemersraad\ndeelnemersveld\ndeelneming\ndeelnemingenbeleid\ndeelnemingskaart\ndeelnemingskaarten\ndeelnemingspercentage\ndeelnemingsvrijstelling\ndeelonderwerp\ndeelonderzoek\ndeelopdracht\ndeeloplossing\ndeelparlement\ndeelperiode\ndeelplan\ndeelprobleem\ndeelproces\ndeelprogramma\ndeelproject\ndeelraad\ndeelraadslid\ndeelraadsverkiezing\ndeelraadswethouder\ndeelraadvoorzitter\ndeelrapport\ndeelrapportage\ndeelregering\ndeelregio\ndeelrepubliek\ndeels\ndeelscore\ndeelsector\ndeelsom\ndeelstaat\ndeelstaatminister\ndeelstaatniveau\ndeelstaatparlement\ndeelstaatpremier\ndeelstaatregering\ndeelstaatverkiezing\ndeelstaatverkiezingen\ndeelstrategie\ndeelstreep\ndeelstudie\ndeeltaak\ndeeltal\ndeeltaxi\ndeelteken\ndeeltentamen\ndeelterrein\ndeeltijd\ndeeltijd-VUT\ndeeltijdaanbod\ndeeltijdarbeid\ndeeltijdbaan\ndeeltijdbehandeling\ndeeltijdbehandelingsplaats\ndeeltijdbehandelingsplaatsen\ndeeltijder\ndeeltijdfunctie\ndeeltijdhoogleraar\ndeeltijdklinisch\ndeeltijdontslag\ndeeltijdopleiding\ndeeltijdopvang\ndeeltijdpensioen\ndeeltijdprogramma\ndeeltijds\ndeeltijdstudent\ndeeltijdstudie\ndeeltijdvorm\ndeeltijdwerk\ndeeltijdwerker\ndeeltijdwerkster\ndeeltijdwet\ndeeltijdzorg\ndeeltitel\ndeeltje\ndeeltjesbundel\ndeeltjesfysica\ndeeltjesfysicus\ndeeltjesgrootte\ndeeltjesstraling\ndeeltjesstroom\ndeeltjesversneller\ndeelvaardigheid\ndeelverkiezing\ndeelverzameling\ndeelvraag\ndeelvragen\ndeelwetenschap\ndeelwoord\ndeelzin\ndeelzinnen\ndeemoed\ndeemoedig\ndeemoedigheid\ndeemstering\ndeeplinken\ndeerlijk\ndeern\ndeerne\ndeernis\ndeerniswaardig\ndeerniswekkend\ndeerntje\ndefaitisme\ndefaitist\ndefaitistisch\ndefault\ndefect\ndefectief\ndefederalisering\ndefensie\ndefensie-elektronica\ndefensie-expert\ndefensie-industrie\ndefensie-inspanning\ndefensie-uitgaven\ndefensieapparaat\ndefensieapparatuur\ndefensiebedrijf\ndefensiebegroting\ndefensiebelasting\ndefensiebeleid\ndefensiebezuiniging\ndefensiebudget\ndefensiecapaciteit\ndefensiecommissie\ndefensiedeskundigen\ndefensief\ndefensiefunctionaris\ndefensiegebied\ndefensiekosten\ndefensielaboratoria\ndefensielaboratorium\ndefensiemacht\ndefensiemarkt\ndefensiemateriaal\ndefensiematerieel\ndefensieminister\ndefensienota\ndefensieonderzoek\ndefensieorder\ndefensieorganisatie\ndefensieovereenkomst\ndefensiepersoneel\ndefensieplan\ndefensieplanning\ndefensiepolitiek\ndefensieprogramma\ndefensieraad\ndefensiesamenwerking\ndefensiesector\ndefensiespecialist\ndefensiestaf\ndefensiestrategie\ndefensietechnologie\ndefensieterrein\ndefensietop\ndefensieverdrag\ndefensiewezen\ndefensiewoordvoerder\ndefensiezaken\ndefibrillator\ndefibrilleren\ndeficit\ndeficitair\ndeficiënt\ndeficiëntie\ndeficiëntieziekte\ndefileren\ndefilé\ndefinieerbaar\ndefiniet\ndefinitie\ndefinitiecode\ndefinitief\ndefinitiegebied\ndefiniëren\ndefiniëring\ndeflatie\ndeflatoir\ndeflecteren\ndeflexie\ndefloreren\ndeformatie\ndeformeren\ndefragmentatie\ndefragmenteren\ndeftig\ndeftigheid\ndegel\ndegelijk\ndegelijkheid\ndegen\ndegene\ndegeneratie\ndegeneratief\ndegeneratieproces\ndegeneratieziekte\ndegenereren\ndegenslikker\ndegenstok\ndegenstoot\ndeglaceren\ndegout\ndegoutant\ndegradant\ndegradatie\ndegradatieduel\ndegradatiegevaar\ndegradatiekandidaat\ndegradatieplaats\ndegradatiespook\ndegradatiestrijd\ndegradatiethese\ndegradatievoetbal\ndegradatiewedstrijd\ndegradatiezone\ndegraderen\ndegressie\ndegressief\ndegustatie\ndegustatiemenu\ndegusteren\ndehydratie\ndehydreren\ndeiktisch\ndeinen\ndeining\ndeinzen\ndejeuner\ndejeuneren\ndejeunertje\ndejeunertjes\ndek\ndekbed\ndekbedje\ndekbedovertrek\ndekbeplating\ndekblad\ndekbord\ndekdoorvoer\ndeken\ndekenaal\ndekenaat\ndekenij\ndekenkist\ndekgeld\ndekglaasje\ndekhengst\ndekhut\ndekken\ndekker\ndekking\ndekkingsaankoop\ndekkingsfout\ndekkingsgebied\ndekkingsgraad\ndekkingspakket\ndekkingspercentage\ndekkingsplan\ndekkingsstelsel\ndekkist\ndekkisten\ndekkleed\ndekkleur\ndekknecht\ndeklaag\ndeklading\ndeklanding\ndeklast\ndeklat\ndekleiding\ndekmantel\ndeknaam\ndekolonisatie\ndekolonisatiegeschiedenis\ndekolonisatieproces\ndekoloniseren\ndekolonisering\ndekplaat\ndekpunt\ndekschaal\ndekschild\ndekschub\ndekschuit\ndeksel\ndeksels\ndekstation\ndeksteen\ndekstier\ndekstoel\ndekstro\ndekstuk\ndektijd\ndekuitrusting\ndekverf\ndekverlichting\ndekvloer\ndekwasslang\ndekwassysteem\ndekzeil\ndekzwabber\ndel\ndelcredere\ndeleatur\ndelegaat\ndelegatie\ndelegatieleider\ndelegatielid\ndelegatieproces\ndelegeren\ndelegering\ndelen\ndeler\ndeleten\ndeletetoets\ndeletie\ndelfstof\ndelfstoffenrijk\ndelfstoffenwinning\ndelfts\ndelgen\ndelging\ndelgingsfonds\ndeliberatie\ndelibereren\ndelicaat\ndelicatesse\ndelicatessenwinkel\ndelicatessenzaak\ndelicieus\ndelict\ndelictsomschrijving\ndeling\ndelingsfactor\ndelingsplan\ndelinquent\ndelinquentenzorg\ndelinquentie\ndelirant\ndelirium\ndelisting\ndellerig\ndelling\ndelokalisatie\ndelokaliseren\ndeloyaal\ndelta\ndelta-eiland\ndeltagebied\ndeltahoogte\ndeltaplan\ndeltavleugel\ndeltavliegen\ndeltavlieger\ndelven\ndelver\ndemagnetiseren\ndemagogie\ndemagogisch\ndemagoog\ndemarcatie\ndemarcatielijn\ndemarche\ndemarqueren\ndemarrage\ndemarreren\ndemaskeren\ndemasqué\ndematerialisatie\ndement\ndemente\ndementeren\ndementerend\ndementerende\ndementering\ndementeringsproces\ndementi\ndementia praecox\ndementie\ndemi\ndemi-john\ndemi-mondaine\ndemi-saison\ndemilitarisatie\ndemilitariseren\ndemilitarisering\ndemineraliseren\ndemissie\ndemissionair\ndemo\ndemo-opname\ndemobilisatie\ndemobiliseren\ndemocraat\ndemocrate\ndemocratie\ndemocratisch\ndemocratisch-socialistisch\ndemocratiseren\ndemocratisering\ndemocratiseringsbeweging\ndemocratiseringsgolf\ndemocratiseringsproces\ndemocratiseringstendens\ndemograaf\ndemografie\ndemografisch\ndemon\ndemonie\ndemonisch\ndemoniseren\ndemonisering\ndemonstrant\ndemonstrateur\ndemonstratie\ndemonstratiebord\ndemonstratief\ndemonstratiemodel\ndemonstratiepartij\ndemonstratieprogramma\ndemonstratieproject\ndemonstratiesport\ndemonstratietoernooi\ndemonstratieverbod\ndemonstratievlucht\ndemonstratievoorbeeld\ndemonstratievrijheid\ndemonstratiewedstrijd\ndemonstreerbaar\ndemonstreren\ndemontabel\ndemontage\ndemonteerbaar\ndemonteren\ndemoralisatie\ndemoraliseren\ndemoralisering\ndemotie\ndemotivatie\ndemotiveren\ndempen\ndemper\ndempig\ndemping\ndempinrichting\ndemystificatie\ndemystificeren\nden\ndenappel\ndenarius\ndenationalisatie\ndenationaliseren\ndenaturaliseren\ndenatureren\ndenazificatie\ndenderen\ndenderend\ndendriet\ndendrochronologie\ndendrochronologisch\ndengue\ndenier\ndenigreren\ndenigrerend\ndenim\ndenivelleren\ndenivellering\ndenkarbeid\ndenkbaar\ndenkbeeld\ndenkbeeldig\ndenke\ndenkelijk\ndenken\ndenkend\ndenker\ndenkertje\ndenkfout\ndenkgroep\ndenkkader\ndenkklimaat\ndenkkracht\ndenkleven\ndenkluiheid\ndenkmodel\ndenkniveau\ndenkoefening\ndenkpatroon\ndenkpauze\ndenkpiste\ndenkproces\ndenkpsychologie\ndenkraam\ndenkrichting\ndenkrimpel\ndenkspoor\ndenksport\ndenkster\ndenksysteem\ndenktank\ndenktijd\ndenktrant\ndenkvermogen\ndenkvorm\ndenkwereld\ndenkwerk\ndenkwijs\ndenkwijze\ndennen\ndennenappel\ndennenboom\ndennenbos\ndennengeur\ndennengroen\ndennenhout\ndennenlucht\ndennennaald\ndennenrups\ndennenscheerder\ndennentak\ndennenwoud\ndenominatie\ndenominatief\ndenomineren\ndenonceren\ndenotatie\ndensimeter\ndensiteit\ndentaal\ndentist\ndentiste\ndenuclearisatie\ndenuclearisering\ndenunciatie\ndenunciëren\ndeodorant\ndeodoriseren\ndeontologie\ndeontologisch\ndepannage\ndepanneren\ndepartement\ndepartementaal\ndepartementalisme\ndepartementshoofd\ndepartementsleiding\ndepenaliseren\ndependance\ndependentie\ndepersonalisatie\ndepersonalisatiesyndroom\ndepersonaliseren\ndeplorabel\ndepolariseren\ndepolitiseren\ndepolitisering\ndeponeren\ndeponie\ndeportatie\ndeportatiebeleid\ndeporteren\ndeposant\ndepositeur\ndepositie\ndeposito\ndepositobank\ndepositobewijs\ndepositobewijzen\ndepositoboekje\ndepositofaciliteit\ndepositogeld\ndepositogever\ndepositorekening\ndepositorente\ndepot\ndepotfractiebewijs\ndepothouder\ndepothoudster\ndepotjes\ndepotrekening\ndepotruimte\ndepouillement\ndepouilleren\ndeppen\ndepreciatie\ndepreciëren\ndepressie\ndepressief\ndepressiegebied\ndepressiejaar\ndepressiviteit\ndepri\ndeprimeren\ndeprivatie\ndeprivatiseren\ndepriveren\ndeprogrammeren\ndeputaat\ndeputatenvergadering\ndeputatie\ndeputeren\ndeputé\ndepêche\nder\nder keerlen god\nderaillement\nderailleren\nderailleur\nderangeren\nderby\nderde\nderdearbeidscircuit\nderdedeel\nderdegeneratiepil\nderdegraads\nderdegraadsverbranding\nderdegraadsverhoor\nderdehalf\nderdehands\nderdejaars\nderdeklas\nderdeklasser\nderdekwartaalcijfers\nderdelijnsgezondheidszorg\nderdelijnsinstelling\nderdelijnsinstellingen\nderdemacht\nderdemachtsvergelijking\nderdemachtswortel\nderdenbeslag\nderderangs\nderderangspoliticus\nderdewereldbeweging\nderdewereldland\nderdewereldproject\nderdewereldwinkel\nderegulatie\ndereguleren\nderegulering\ndereguleringsbeleid\ndereguleringsoperatie\nderen\ndergelijk\nderhalve\nderivaat\nderivatenhandel\nderivatenmarkt\nderivatie\ndermate\ndermatitis\ndermatologie\ndermatologisch\ndermatoloog\nderny\nderogeren\nderrie\nderrière\ndertien\ndertiende\ndertiende-eeuws\ndertiendelig\ndertienduizend\ndertienhonderd\ndertienjarig\ndertiental\ndertienvoudig\ndertig\ndertigduizend\ndertiger\ndertigjarig\ndertigkilometerbord\ndertigmaal\ndertigplusser\ndertigste\ndertigtal\ndertigvoudig\nderven\nderving\nderwaarts\nderwijze\nderwisj\ndes\ndesa\ndesaangaande\ndesacraliseren\ndesalniettemin\ndesambigueren\ndesastreus\ndesavoueren\ndesavouering\ndesbetreffend\ndesbewust\ndescendant\ndescriptie\ndescriptief\ndesdochter\ndesegregatie\ndesem\ndesemen\ndesensibilisatie\ndesensibiliseren\ndesensitisatie\ndeserteren\ndeserteur\ndesertie\ndeservitor\ndesgelijks\ndesgevallend\ndesgevraagd\ndesgewenst\ndeshormoon\ndesideratum\ndesign\ndesignafdeling\ndesigncentrum\ndesigner\ndesignerdrug\ndesignerkleding\ndesignhotel\ndesignhotels\ndesignmeubel\ndesignmeubilair\ndesignprijs\ndesignproducten\ndesignwereld\ndesignwinkel\ndesillusie\ndesinfectans\ndesinfecteermiddel\ndesinfecteren\ndesinfectie\ndesinfectiemiddel\ndesinflatie\ndesinformatie\ndesinformatiecampagne\ndesintegratie\ndesintegratieproces\ndesintegratieverschijnsel\ndesintegreren\ndesinteresse\ndesinvesteren\ndesinvestering\ndesinvesteringsprogramma\ndesk\ndeskjet\ndesktop\ndesktop-pc\ndesktopcomputer\ndesktoppublishing\ndesktoppublishingprogramma\ndeskundig\ndeskundige\ndeskundigenadvies\ndeskundigencommissie\ndeskundigenhulp\ndeskundigenrapport\ndeskundigheid\ndeskundigheidsbevordering\ndeskundoloog\ndesmoeder\ndesniettegenstaande\ndesniettemin\ndesnoods\ndesolaat\ndesondanks\ndesorganisatie\ndesorganiseren\ndesoriëntatie\ndesoriënteren\ndespecialisatie\ndesperaat\ndesperado\ndespoot\ndespotisch\ndespotisme\ndessert\ndessertbord\ndessertglazen\ndessertlepel\ndessertmes\ndessertwijn\ndessin\ndessineren\ndessous\ndestabilisatie\ndestabiliseren\ndestabilisering\ndestalinisatie\ndestaliniseren\ndestijds\ndestillaat\ndestillateur\ndestillatie\ndestilleerderij\ndestilleerketel\ndestilleerkolf\ndestilleren\ndestinatie\ndestructie\ndestructiebedrijf\ndestructiecapaciteit\ndestructief\ndestructor\ndesverkiezend\ndesverkiezende\ndesverlangd\ndeswege\ndeszelfs\ndetachement\ndetachementscommandant\ndetacheren\ndetachering\ndetacheringsbedrijf\ndetacheringsbureau\ndetacheringsovereenkomst\ndetail\ndetailfoto\ndetailhandel\ndetailhandelaar\ndetailhandelconcern\ndetailhandelsactiviteit\ndetailhandelsbedrijf\ndetailhandelsconcern\ndetailhandelsketen\ndetailhandelsniveau\ndetailhandelsomzet\ndetailhandelsonderneming\ndetailhandelsprijs\ndetailhandelsschool\ndetailhandelsverkoop\ndetailkennis\ndetailkritiek\ndetailkwestie\ndetailleren\ndetaillering\ndetaillisme\ndetaillist\ndetaillistenvereniging\ndetaillistisch\ndetailonderzoek\ndetailopname\ndetailplan\ndetailplanning\ndetailprijs\ndetailpunt\ndetailrijk\ndetailstudie\ndetailtekening\ndetailzaak\ndetecteren\ndetectie\ndetectieapparatuur\ndetectielus\ndetectiemethode\ndetectiepoort\ndetectiepoortje\ndetectiesysteem\ndetective\ndetectiveachtig\ndetectivebureau\ndetectiveroman\ndetectiveschrijver\ndetectiveserie\ndetectivespel\ndetectiveverhaal\ndetectivewerk\ndetector\ndetente\ndetentie\ndetentiecentrum\ndetentiekamp\ndetentieruimte\ndetergens\ndetergent\ndeterminant\ndeterminatie\ndeterminatief\ndeterminator\ndetermineerklas\ndetermineerklasse\ndetermineren\ndeterminisme\ndeterminist\ndeterministisch\ndetineren\ndetonatie\ndetonator\ndetoneren\ndetox\ndetriment\ndetrimente\ndeuce\ndeugd\ndeugddoend\ndeugdelijk\ndeugdelijkheid\ndeugdelijkheidseisen\ndeugdzaam\ndeugdzaamheid\ndeugen\ndeugniet\ndeugnieterij\ndeuk\ndeuken\ndeukhoed\ndeun\ndeunen\ndeuntje\ndeur\ndeurbel\ndeurbeslag\ndeurbuffer\ndeurcontact\ndeurdranger\ndeurenfabriek\ndeurgat\ndeurketting\ndeurklink\ndeurklopper\ndeurknop\ndeurkruk\ndeurmat\ndeuropener\ndeuropenerinstallatie\ndeuropening\ndeurpaneel\ndeurpost\ndeurslot\ndeurspion\ndeurstijl\ndeurtelefoon\ndeurveer\ndeurvergrendeling\ndeurwaarder\ndeurwaardersexploot\ndeurwaarderskosten\ndeus ex machina\ndeutel\ndeuterium\ndeuteron\ndeuvekater\ndeuvekaters\ndeuvel\ndeuvik\ndeux-chevaux\ndeux-pièces\ndeuzig\ndevaluatie\ndevalueren\ndeverbatief\ndeviant\ndevianties\ndeviatie\ndevice\ndevies\ndeviezen\ndeviezenhandel\ndeviezenhandelaar\ndeviezeninkomsten\ndeviezenreserve\ndeviezenspeculatie\ndeviezentekort\ndeviezenverkeer\ndeviezenvoorraad\ndeviëren\ndevolutie\ndevoon\ndevoot\ndevotie\ndevotioneel\ndewelke\ndewijl\ndextrine\ndextrose\ndeze\ndezelfde\ndezelve\ndezen\ndezer\ndezerzijds\ndezes\ndezulke\ndezulken\ndeïsme\ndeïst\ndhr.\ndia\ndia-avond\ndiabeet\ndiabetes\ndiabetes mellitus\ndiabetespatiënt\ndiabetica\ndiabeticus\ndiabetisch\ndiaboliek\ndiabolisch\ndiabolisering\ndiabolo\ndiabolospel\ndiacassette\ndiachrone\ndiachronie\ndiachronisch\ndiachroon\ndiaconaal\ndiaconaat\ndiacones\ndiaconessenhuis\ndiaconie\ndiaconiehuis\ndiadeem\ndiafaan\ndiafilm\ndiaforese\ndiafragma\ndiagnose\ndiagnosecentrum\ndiagnosefase\ndiagnostica\ndiagnosticeren\ndiagnostiek\ndiagnostisch\ndiagonaal\ndiagonaalband\ndiagonaalmatrix\ndiagonaalverband\ndiagonaalvlak\ndiagram\ndiagramstelling\ndiaken\ndiakenhuis\ndiakenhuismannetje\ndiakenopleiding\ndiakritisch\ndialect\ndialectatlas\ndialectgeografie\ndialectica\ndialecticus\ndialectiek\ndialectisch\ndialectisme\ndialectkaart\ndialectologie\ndialectoloog\ndialectonderzoek\ndialectsprekend\ndialectspreker\ndialectstudie\ndialectwoord\ndialectwoordenboek\ndialogeren\ndialogisch\ndialogiseren\ndialoog\ndialoogtekst\ndialoogvenster\ndialoogvorm\ndialysator\ndialyse\ndialysecentrum\ndialyseren\ndiamant\ndiamantair\ndiamantbank\ndiamantbedrijf\ndiamantbeurs\ndiamantbewerker\ndiamantbewerking\ndiamantboor\ndiamanten\ndiamanthandel\ndiamanthandelaar\ndiamantindustrie\ndiamantkloven\ndiamantklover\ndiamantkunde\ndiamantmarkt\ndiamantmijn\ndiamantnaald\ndiamantroof\ndiamantsector\ndiamantslijpen\ndiamantslijper\ndiamantslijperij\ndiamantsmokkel\ndiamantsnijder\ndiamanttester\ndiamantwereld\ndiamantwerker\ndiamantwijk\ndiamantwinning\ndiamantzetten\ndiamantzetter\ndiameter\ndiametraal\ndiapason\ndiapauze\ndiapositief\ndiapresentatie\ndiaprojector\ndiaraampje\ndiarium\ndiarree\ndiascherm\ndiascoop\ndiascopie\ndiaserie\ndiashow\ndiaspora\ndiastole\ndiastolisch\ndiatheek\ndiathese\ndiatomeeën\ndiatonisch\ndiaviewer\ndiavoorstelling\ndiazepam\ndichotome\ndichotomie\ndichotoom\ndicht\ndichtader\ndichtbebouwd\ndichtbegroeid\ndichtbevolkt\ndichtbezet\ndichtbij\ndichtbijgelegen\ndichtbinden\ndichtblijven\ndichtbundel\ndichtdoen\ndichtdraaien\ndichtdrukken\ndichtduwen\ndichten\ndichter\ndichter-zanger\ndichteres\ndichterlijk\ndichterlijkheid\ndichterschap\ndichterschool\ndichtersfestival\ndichtersgroep\ndichterziel\ndichtgaan\ndichtgemaakt\ndichtgenootschap\ndichtgeslibd\ndichtgesnoerd\ndichtgewaaid\ndichtgezet\ndichtgooien\ndichtgroeien\ndichtheid\ndichthouden\ndichting\ndichtkitten\ndichtklappen\ndichtklikken\ndichtknijpen\ndichtknopen\ndichtkunst\ndichtlievend\ndichtlopen\ndichtmaat\ndichtmaken\ndichtmetselen\ndichtnaaien\ndichtplakken\ndichtregel\ndichtrijden\ndichtritsen\ndichtschroeien\ndichtschroeven\ndichtschuiven\ndichtslaan\ndichtslibben\ndichtslibbing\ndichtsluiten\ndichtsoort\ndichtspijkeren\ndichtspringen\ndichtstbevolkt\ndichtstbij\ndichtstbijgelegen\ndichtstbijzijnd\ndichtstbijzijnde\ndichtstijl\ndichtstoppen\ndichtstrijken\ndichtstuk\ndichttimmeren\ndichttrant\ndichttrekken\ndichtvallen\ndichtvorm\ndichtvouwen\ndichtvriezen\ndichtwerk\ndichtzetten\ndichtzitten\ndictaat\ndictaatcahier\ndictaatschrift\ndictafonist\ndictafoon\ndictator\ndictatoriaal\ndictatorisch\ndictatorschap\ndictatuur\ndictee\ndicteerapparaat\ndicteersnelheid\ndicteewoord\ndicteren\ndictie\ndictionaire\ndidacticus\ndidactiek\ndidactisch\ndidgeridoo\ndie\ndie en die\ndieet\ndieetadvies\ndieetkeuken\ndieetkok\ndieetkosten\ndieetleer\ndieetlijst\ndieetmaaltijd\ndieetmargarine\ndieetpatiënt\ndieetproduct\ndieetvoeding\ndieetvoorschrift\ndieetwinkel\ndief\ndiefachtig\ndiefachtigheid\ndiefje-met-verlos\ndiefjesmaat\ndiefstal\ndiefstalbeveiliging\ndiegene\ndiehard\ndieken\ndienaangaande\ndienaar\ndienares\ndienaresse\ndienbak\ndienblad\ndiender\ndienen\ndienovereenkomstig\ndiens\ndienst\ndienstaanvaarding\ndienstaanwijzing\ndienstauto\ndienstbaar\ndienstbaarheid\ndienstbelang\ndienstbericht\ndienstbetoon\ndienstbetrekking\ndienstbevel\ndienstbode\ndienstbodekamer\ndienstbodevraagstuk\ndienstboek\ndienstbrief\ndienstcommissie\ndienstcontract\ndienstdoen\ndienstdoend\ndienstdoener\ndienstenaanbieder\ndienstenaanbod\ndienstenbedrijf\ndienstenbond\ndienstencentra\ndienstencentrum\ndienstencheque\ndienstencontract\ndiensteneconomie\ndienstengamma\ndienstengroep\ndienstenleverancier\ndienstenpakket\ndienstensector\ndienstenstructuur\ndienstenverkeer\ndienster\ndienstfiets\ndienstgebouw\ndienstgeheim\ndienstgesprek\ndiensthond\ndiensthoofd\ndienstig\ndienstijver\ndienstingang\ndienstjaar\ndienstjarenbeginsel\ndienstjarenregeling\ndienstjubileum\ndienstkaart\ndienstkleding\ndienstklopper\ndienstknecht\ndienstkring\ndienstleiding\ndienstlift\ndienstlijn\ndienstmaagd\ndienstmededeling\ndienstmeid\ndienstmeisje\ndienstmerk\ndienstneming\ndienstopdracht\ndienstorder\ndienstperiode\ndienstpersoneel\ndienstpistool\ndienstplicht\ndienstplichtig\ndienstplichtige\ndienstplichtigenleger\ndienstplichtontduiker\ndienstpomp\ndienstregeling\ndienstreis\ndienstrooster\ndienstruimte\ndienststempel\ndienststuk\ndiensttelefoon\ndiensttijd\ndienstvaardig\ndienstvaardigheid\ndienstverband\ndienstverhouding\ndienstverlenend\ndienstverlener\ndienstverlening\ndienstverleningsbedrijf\ndienstverleningsproces\ndienstverleningssector\ndienstverrichting\ndienstvoorschrift\ndienstwagen\ndienstwapen\ndienstweigeraar\ndienstweigering\ndienstwillig\ndienstwilligheid\ndienstwisseling\ndienstwoning\ndientafeltje\ndientengevolge\ndienvolgens\ndiep\ndiepbedroefd\ndiepblauw\ndiepboring\ndiepbruin\ndiepdenkend\ndiepdoordacht\ndiepdroevig\ndiepdruk\ndiepe\ndiepen\ndieper\ndieperik\ndiepgaand\ndiepgang\ndiepgangsmerk\ndiepgelovig\ndiepgevroren\ndiepgeworteld\ndiepgezonken\ndiepgravend\ndieping\ndiepingrijpend\ndieplader\ndiepliggend\ndieplood\ndieprood\ndiepspoeler\ndiepstraler\ndiepte\ndiepte-interview\ndiepte-investering\ndieptebom\ndieptecijfer\ndieptedruk\ndieptelijn\ndieptemeter\ndieptepass\ndieptepsychologie\ndieptepunt\ndiepterecord\ndieptescherpte\ndieptestraling\ndieptestructuur\ndieptewerking\ndieptreurig\ndiepvries\ndiepvriesafdeling\ndiepvriesbaby\ndiepvriesbedrijf\ndiepvriescel\ndiepvriesgebak\ndiepvriesgroente\ndiepvriesinstallatie\ndiepvrieskast\ndiepvrieskist\ndiepvriesmaaltijd\ndiepvriespizza\ndiepvriesproduct\ndiepvriesproducten\ndiepvriesruimte\ndiepvriesvak\ndiepvriezen\ndiepvriezer\ndiepzee\ndiepzeeduiken\ndiepzeeduiker\ndiepzeehaven\ndiepzeeonderzoek\ndiepzeevis\ndiepzinnig\ndiepzinnigheid\ndier\ndierbaar\ndierbaarheid\ndierbaarst\ndierbenodigdheden\ndieren\ndierenambulance\ndierenambulancedienst\ndierenarts\ndierenartsenpraktijk\ndierenasiel\ndierenbeschermer\ndierenbescherming\ndierenbeschermingsorganisatie\ndierenbeschermster\ndierenbeul\ndierendag\ndierenepos\ndierenfabel\ndierengevecht\ndierenhandel\ndierenhuid\ndierenkliniek\ndierenleed\ndierenleven\ndierenliefde\ndierenliefhebber\ndierenliefhebster\ndierenmeel\ndierenmishandeling\ndierennaam\ndierennummer\ndierenopvang\ndierenpark\ndierenpension\ndierenraadsel\ndierenrechtenorganisatie\ndierenriem\ndierenrijk\ndierensage\ndierenschilder\ndierensymboliek\ndierentaal\ndierentemmer\ndierentemster\ndierentotem\ndierentuin\ndierenvel\ndierenverblijf\ndierenverhaal\ndierenverzorger\ndierenvoeding\ndierenvoer\ndierenvriend\ndierenwelzijn\ndierenwereld\ndierenwinkel\ndierenziekte\ndierexperiment\ndiergaarde\ndiergelijk\ndiergeneeskunde\ndiergeneeskundig\ndiergezondheid\ndiergroep\ndierhouderij\ndierkunde\ndierkundeles\ndierkundig\ndierkundige\ndierlijk\ndierlijkheid\ndiermeel\ndieroffer\ndieronderzoek\ndieronvriendelijk\ndierproef\ndierproefvrij\ndierpsycholoog\ndiersoort\ndierverzorger\ndierverzorging\ndierverzorgster\ndiervoeder\ndiervoeding\ndiervoer\ndiervriendelijk\ndiervriendelijkheid\ndierwaardig\ndierwelzijn\ndierziekte\ndies\ndies natalis\ndiesel\ndieselaccijns\ndieselauto\ndieselbrandstof\ndieselelektrisch\ndieselen\ndiesellocomotief\ndiesellucht\ndieselmotor\ndieselolie\ndieselolieverbruik\ndieselprijs\ndieselrijder\ndieseltank\ndieseltechniek\ndieseltrein\ndieselverbruik\ndieselversie\ndiesrede\ndiesviering\ndiets\ndievegge\ndieven\ndievenbende\ndievenhol\ndievenjacht\ndievenklauw\ndievenlantaarn\ndievenlantaren\ndievenpad\ndieventaal\ndievenwagen\ndieverij\ndiezelfde\ndiffamatie\ndiffameren\ndifferent\ndifferentiaal\ndifferentiaalbeveiliging\ndifferentiaaldiagnose\ndifferentiaalquotiënt\ndifferentiaalrekening\ndifferentiaalvergelijking\ndifferentiaalvormen\ndifferentiatie\ndifferentie\ndifferentieel\ndifferentieerbaar\ndifferentieerbaarheid\ndifferentiequotiënt\ndifferentievergelijking\ndifferentiëren\ndifferentiëring\ndifferentiëringen\ndiffractie\ndiffunderen\ndiffuse\ndiffusie\ndiffusiecoëfficiënt\ndiffuus\ndiftar\ndifterie\ndifteritis\ndiftong\ndiftongeren\ndiftongering\ndigamma\ndigereren\ndigestie\ndigestief\ndiggel\ndiggelen\ndiggels\ndigibeet\ndigitaal\ndigitalis\ndigitaliseren\ndigitalisering\ndiglossie\ndignitaris\ndigniteit\ndigressie\ndij\ndijader\ndijbeen\ndijbeenblessure\ndijbreuk\ndijen\ndijenkletser\ndijk\ndijkage\ndijkbestuur\ndijkbewaking\ndijkbreuk\ndijkdoorbraak\ndijkdorp\ndijken\ndijkenbouwer\ndijker\ndijkgraaf\ndijkgraafschap\ndijkheemraad\ndijkhuis\ndijkleger\ndijklichaam\ndijkmeester\ndijkpad\ndijkraad\ndijkrecht\ndijkrechten\ndijkrecreatie\ndijkring\ndijkschot\ndijkschouw\ndijkslag\ndijksloot\ndijkstaal\ndijkstoel\ndijktalud\ndijkvak\ndijkval\ndijkverbetering\ndijkverbeteringsplan\ndijkverhoging\ndijkversterking\ndijkverzwaring\ndijkverzwaringsprogramma\ndijkverzwaringsproject\ndijkwacht\ndijkweg\ndijkwerken\ndijkwerkers\ndijkwezen\ndijkwoning\ndijspier\ndijstuk\ndik\ndikachtig\ndikbil\ndikbuik\ndikbuikig\ndikdoener\ndikdoenerig\ndikdoenerij\ndikheid\ndikhuid\ndikhuidig\ndikkedarmkanker\ndikken\ndikkerd\ndikkig\ndikkop\ndikkopje\ndikmakend\ndikoor\ndikte\ndiktemeting\ndiktongig\ndikwandig\ndikwerf\ndikwijls\ndikzak\ndilatatie\ndilatatievoeg\ndilateren\ndildo\ndilemma\ndilettant\ndilettante\ndilettantentoneel\ndilettanterig\ndilettantisch\ndilettantisme\ndilettantistisch\ndiligence\ndiligent\ndille\ndillesaus\ndiluviaal\ndimbaar\ndimensie\ndimensionaal\ndimensionaliteit\ndimensioneren\ndiminuendo\ndiminutief\ndimlicht\ndimmen\ndimmer\ndimorf\ndimorfie\ndimschakelaar\ndinanderie\ndinar\ndiner\ndineren\ndinerpauze\ndinertje\nding\ndingen\ndinges\ndingo\ndingtaal\ndino\ndinosauriër\ndinosaurus\ndinosaurustijdperk\ndinsdag\ndinsdagavond\ndinsdagmiddag\ndinsdagmorgen\ndinsdagnacht\ndinsdagnamiddag\ndinsdagochtend\ndinsdags\ndinsdagse\ndiocees\ndiocesaan\ndiocese\ndiode\ndionysisch\ndioptrie\ndiorama\ndioriet\ndioxide\ndioxine\ndioxine-uitstoot\ndioxineaffaire\ndioxinebesmetting\ndioxinecommissie\ndioxinecrisis\ndioxinegehalte\ndioxinekip\ndioxinenorm\ndioxineramp\ndioxineschandaal\ndioxinevervuiling\ndioxinezaak\ndip\ndiplegie\ndiploma\ndiploma-eisen\ndiploma-inflatie\ndiploma-uitreiking\ndiplomaat\ndiplomatenklasje\ndiplomatenkoffer\ndiplomatenkoffertje\ndiplomatenrol\ndiplomatentaal\ndiplomatentas\ndiplomatenwijk\ndiplomaticus\ndiplomatie\ndiplomatiek\ndiplomatisch\ndiplomatoelage\ndiplomeren\ndiplopie\ndiploïde\ndipool\ndipoolantenne\ndippen\ndipsaus\ndiptiek\ndirect\ndirect mail\ndirect marketing\ndirectbetrokkene\ndirecte\ndirecteur\ndirecteur-eigenaar\ndirecteur-generaal\ndirecteur-grootaandeelhouder\ndirecteur-hoofdredacteur\ndirecteur-secretaris\ndirecteuren-generaal\ndirecteurenoverleg\ndirecteurschap\ndirecteursfunctie\ndirecteurskamer\ndirecteurspost\ndirecteurswoning\ndirectheid\ndirectie\ndirectiecode\ndirectiecomité\ndirectief\ndirectiefunctie\ndirectiekamer\ndirectiekantoor\ndirectiekeet\ndirectiekosten\ndirectielid\ndirectieniveau\ndirectieraad\ndirectiesecretaresse\ndirectiesecretariaat\ndirectiesecretaris\ndirectiestatuut\ndirectiestoel\ndirectiestructuur\ndirectietafel\ndirectieteam\ndirectietijd\ndirectieven\ndirectievergadering\ndirectievoorzitter\ndirectiewege\ndirectiezetel\ndirectiezijde\ndirectioneel\ndirectoire\ndirectoiretjes\ndirectoraat\ndirectoraat-generaal\ndirectorium\ndirectory\ndirectrice\ndirigeerstok\ndirigeerstokje\ndirigent\ndirigente\ndirigentencursus\ndirigeren\ndirigisme\ndirigistisch\ndirk\ndirken\ndirkjespeer\ndirndljurk\ndis\ndisagio\ndiscant\ndiscipel\ndisciplinair\ndiscipline\ndisciplinegericht\ndisciplineren\ndisciplinering\ndisclaimer\ndiscman\ndisco\ndisco-eigenaar\ndiscobal\ndiscobar\ndiscobus\ndiscoganger\ndiscografie\ndiscomuziek\ndisconteren\ndiscontering\ndisconteringsbank\ndiscontinu\ndiscontinuïteit\ndisconto\ndiscontobank\ndiscontomarkt\ndiscontopercentage\ndiscontopolitiek\ndiscontorente\ndiscontoverhoging\ndiscontoverlaging\ndiscontovoet\ndiscotheek\ndiscotheekbezoeker\ndiscount\ndiscounter\ndiscountketen\ndiscountzaak\ndiscours\ndiscrediteren\ndiscreet\ndiscrepantie\ndiscretie\ndiscretieplicht\ndiscretionair\ndiscretisatie\ndiscretisatiefout\ndiscretisatiefouten\ndiscretiseer\ndiscretiseren\ndiscriminant\ndiscriminantanalyse\ndiscriminanten\ndiscriminantfunctie\ndiscriminatie\ndiscriminatieverbod\ndiscriminatiewet\ndiscriminatiewetten\ndiscriminatiezaak\ndiscriminatoir\ndiscrimineren\ndisculperen\ndiscursief\ndiscus\ndiscussiant\ndiscussie\ndiscussieavond\ndiscussiebijdragen\ndiscussiebijeenkomst\ndiscussieblad\ndiscussiedag\ndiscussiedeelnemer\ndiscussieforum\ndiscussiegroep\ndiscussielijst\ndiscussiemethode\ndiscussiemiddag\ndiscussiemogelijkheid\ndiscussienota\ndiscussieonderwerp\ndiscussiepartner\ndiscussieplatform\ndiscussieprogramma\ndiscussiepunt\ndiscussieregel\ndiscussieronde\ndiscussierubriek\ndiscussiesite\ndiscussiestof\ndiscussiestuk\ndiscussietechniek\ndiscussiethema\ndiscussiëren\ndiscuswerpen\ndiscuswerper\ndiscuswerpster\ndiscutabel\ndiscuteren\ndisfunctioneel\ndisfunctioneren\ndisgenoot\ndisgenote\ndisharmonie\ndisharmoniëren\ndisjunct\ndisjunctie\ndisk\ndiskcache\ndiskcopy\ndiskdrive\ndiskette\ndiskettegebruik\ndiskettestation\ndiskjockey\ndiskrediet\ndiskruimte\ndiskspeler\ndiskwalificatie\ndiskwalificeren\ndislocatie\ndispacheur\ndisparaat\ndispariteit\ndispatching\ndispensarium\ndispensatie\ndispensatieregeling\ndispenser\ndispenseren\ndispersie\ndisplay\ndisplaymateriaal\ndisplays\ndisplaytje\ndisplezier\ndisponeren\ndisponibel\ndisponibiliteit\ndispositie\ndisproportie\ndisproportioneel\ndisputatie\ndisputeren\ndispuut\ndispuutgezelschap\ndissectie\ndissel\ndisselboom\ndisseminatie\ndissen\ndissenter\ndissertatie\ndissident\ndissidente\ndissidentie\ndissidentschap\ndissimilatie\ndissociatie\ndissociëren\ndissonant\ndissonantie\ndissonantietheorie\ndistantie\ndistantiëren\ndistantiëring\ndistel\ndistelvink\ndistichon\ndistillaat\ndistillateur\ndistillatie\ndistilleerder\ndistilleerderij\ndistilleerketel\ndistilleerkolf\ndistilleren\ndistinctie\ndistinctief\ndistorsie\ndistractie\ndistribueren\ndistributeur\ndistributie\ndistributieafdeling\ndistributieapparaat\ndistributiebedrijf\ndistributiebeleid\ndistributiebescheiden\ndistributiecentrum\ndistributiecontract\ndistributief\ndistributiefunctie\ndistributiegebied\ndistributiegebieden\ndistributiegroep\ndistributiekanaal\ndistributiekant\ndistributiekantoor\ndistributieketen\ndistributiekosten\ndistributieland\ndistributiemarkt\ndistributiemethode\ndistributienet\ndistributienetwerk\ndistributieovereenkomst\ndistributieproblematiek\ndistributieproces\ndistributiepunt\ndistributiesector\ndistributiesfeer\ndistributiesysteem\ndistributietak\ndistributieterrein\ndistributieversie\ndistributievorm\ndistributievormen\ndistrict\ndistrictbestuurder\ndistrictchef\ndistrictenstelsel\ndistrictleider\ndistrictsbeker\ndistrictsbeleid\ndistrictsbestuur\ndistrictsbestuurder\ndistrictsbureau\ndistrictscentrale\ndistrictschef\ndistrictscommandant\ndistrictscommissaris\ndistrictsdirecteur\ndistrictsgewijze\ndistrictshoofd\ndistrictskantoor\ndistrictsniveau\ndistrictsraad\ndistrictsraadslid\ndistrictsrechtbank\ndistrictssecretaris\ndit\ndithyrambe\ndithyrambisch\nditmaal\ndito\ndittografie\nditzelfde\ndiureticum\ndiv.\ndiva\ndivan\ndivanbed\ndivergent\ndivergentie\ndivergeren\ndivers\ndiversen\ndiversificatie\ndiversificatieproces\ndiversificeren\ndiversifiëren\ndiversifiëring\ndiversiteit\ndiversiteitsbeleid\ndiverteren\ndivertimento\ndivertissement\ndividend\ndividendbelasting\ndividendbeleid\ndividendbeperking\ndividendbetaling\ndividendbewijs\ndividendinkomsten\ndividendpolitiek\ndividendrendement\ndividendreserve\ndividendstop\ndividenduitkering\ndividendverhoging\ndividendvoorstel\ndividendvrijstelling\ndivinatie\ndivisie\ndivisieclub\ndivisiecommandant\ndivisiedirecteur\ndivisiehoofd\ndivisiemanager\ndivisiestructuur\ndivisionalisering\ndivisionist\ndixieland\ndixit\ndizzy\ndiëten\ndiëtetiek\ndiëtiek\ndiëtist\ndiëtiste\ndj\ndj-duo\ndj-sets\ndjahé\ndjak\ndjakken\ndjati\ndjatiboom\ndjatihout\ndjellaba\ndjembé\ndjeroek\ndjinn\ndjogo\ndo\ndobbelaar\ndobbelbeker\ndobbelen\ndobbelspel\ndobbelsteen\ndobber\ndobberen\ndobermann\ndobermannpincher\ndoceermethode\ndocent\ndocente\ndocentenhandleiding\ndocentenkamer\ndocentenkorps\ndocentenopleiding\ndocentenvergadering\ndocentschap\ndoceren\ndoch\ndocht\ndochter\ndochterbank\ndochterbedrijf\ndochterinstelling\ndochterlief\ndochtermaatschappij\ndochteronderneming\ndochterskind\ndochtertaal\ndochtervennootschap\ndociel\ndociliteit\ndocking station\ndoctor\ndoctoraal\ndoctoraaldiploma\ndoctoraalexamen\ndoctoraalfase\ndoctoraalopleiding\ndoctoraalscriptie\ndoctoraalstudent\ndoctoraalstudie\ndoctoraat\ndoctoraatsverhandeling\ndoctoranda\ndoctorandus\ndoctorandustitel\ndoctoreren\ndoctores\ndoctorsbul\ndoctorsgraad\ndoctorstitel\ndoctrinair\ndoctrine\ndocu\ndocudrama\ndocument\ndocumentair\ndocumentaire\ndocumentairefilm\ndocumentairemaakster\ndocumentairemaker\ndocumentaireprogramma\ndocumentaireserie\ndocumentalist\ndocumentaliste\ndocumentarist\ndocumentatie\ndocumentatieafdeling\ndocumentatieblad\ndocumentatiecentrum\ndocumentatiedienst\ndocumentatiemap\ndocumentatiemateriaal\ndocumentatiepunt\ndocumentatiesysteem\ndocumentbeheer\ndocumentbestand\ndocumentenbeheer\ndocumenteren\ndocumentformaat\ndocumentverkeer\ndocusoap\ndodaars\ndoddengras\ndoddig\ndode\ndodecaëder\ndodehoekspiegel\ndodekop\ndodelijk\ndodelijkheid\ndodeman\ndodemansknop\ndodemansrit\ndoden\ndodenaantal\ndodenakker\ndodencel\ndodencijfer\ndodencultus\ndodendans\ndodenherdenking\ndodenhuisje\ndodenkamp\ndodenlijst\ndodenmars\ndodenmasker\ndodenmis\ndodenrijk\ndodenrit\ndodensprong\ndodenstad\ndodental\ndodentol\ndodenverering\ndodenwacht\ndodenwake\ndodijnen\ndoding\ndodo\ndoe-het-zelfketen\ndoe-het-zelfsector\ndoe-het-zelfzaak\ndoe-het-zelven\ndoe-het-zelver\ndoedel\ndoedelen\ndoedelzak\ndoedelzakmuziek\ndoedelzakspeler\ndoeg\ndoei\ndoek\ndoeken\ndoekoen\ndoekspeld\ndoel\ndoelaanduiding\ndoelbewust\ndoelbewustheid\ndoeleinde\ndoeleinden\ndoelen\ndoelformulering\ndoelgebied\ndoelgemiddelde\ndoelgericht\ndoelgerichtheid\ndoelgevaar\ndoelgroep\ndoelgroepdefiniëring\ndoelgroepenbeleid\ndoelgroepenoverleg\ndoelgroepenzender\ndoelgroepslid\ndoelkans\ndoellat\ndoellijn\ndoelloos\ndoelman\ndoelmatig\ndoelmatigheid\ndoelmond\ndoelnet\ndoelorganisatie\ndoelpaal\ndoelpoging\ndoelpubliek\ndoelpunt\ndoelpunten\ndoelpuntenfestijn\ndoelpuntenmachine\ndoelpuntenmaker\ndoelpuntloos\ndoelpuntmaker\ndoelrijp\ndoelsaldo\ndoelschieting\ndoelschop\ndoelstelling\ndoelstellingsnota\ndoeltaal\ndoeltrap\ndoeltreffend\ndoeltreffendheid\ndoeluitkering\ndoelverdediger\ndoelvlak\ndoelvrouw\ndoelvrouwe\ndoelwachter\ndoelwit\ndoem\ndoemdenken\ndoemdenker\ndoemdenkerij\ndoemen\ndoemscenario\ndoemvonnis\ndoemwaardig\ndoen\ndoenbaar\ndoende\ndoener\ndoeniet\ndoening\ndoenlijk\ndoerak\ndoerian\ndoes\ndoetje\ndoezel\ndoezelaar\ndoezelen\ndoezelig\ndof\ndoffen\ndoffer\ndoffig\ndofgroen\ndofheid\ndoft\ndog\ndoge\ndogger\ndogkar\ndogma\ndogmageschiedenis\ndogmaticus\ndogmatiek\ndogmatisch\ndogmatiseren\ndogmatisme\ndok\ndoka\ndoken\ndokhaven\ndokken\ndokker\ndokkeren\ndokmeester\ndoks\ndoksaal\ndokter\ndokteren\ndokteres\ndoktersadvies\ndoktersassistent\ndoktersassistente\ndoktersattest\ndoktersbehandeling\ndoktersbezoek\ndoktersgang\ndoktershulp\ndoktersjas\ndokterskabinet\ndokterskosten\ndokterspraktijk\ndoktersrecept\ndoktersrekening\ndoktersroman\ndokterstas\ndokterstelefoon\ndoktersverklaring\ndoktersvisite\ndoktersvoorschrift\ndoktersvrouw\ndokwerker\ndol\ndolaard\ndolblij\ndolboord\ndolby\ndolce\ndoldraaien\ndoldriest\ndoldriftig\ndoldwaas\ndoleantie\ndolen\ndolenthousiast\ndoler\ndoleren\ndolerende\ndolerenden\ndolf\ndolfijn\ndolfinarium\ndolgedraaid\ndolgelukkig\ndolgraag\ndolheid\ndolhuis\ndolichocefaal\ndolik\ndoling\ndolk\ndolkmes\ndolkomisch\ndolkop\ndolkruid\ndolksteek\ndolkstoot\ndollar\ndollarbananen\ndollarcent\ndollarcrisis\ndollardaling\ndollargebied\ndollarisatie\ndollariseren\ndollarisering\ndollarkoers\ndollarkoersstijging\ndollarlening\ndollarprijs\ndollarprinses\ndollarrisico\ndollarstijging\ndollartegoed\ndolle\ndollehondsbeet\ndollekervel\ndollekoeienziekte\ndolleman\ndollemanspraat\ndollemansrit\ndollen\ndolletje\ndolletjes\ndolligheid\ndolly\ndolman\ndolmen\ndolmens\ndolmes\ndolomiet\ndolven\ndolzinnig\ndolzinnigheid\ndom\ndomaniaal\ndombo\ndomdeken\ndomein\ndomeingrond\ndomeinkaping\ndomeinnaam\ndomeinregistratie\ndomen\ndomesticatie\ndomesticeren\ndomestiek\ndomheer\ndomheid\ndomicilie\ndomiciliebeginsel\ndomiciliëren\ndomiciliëring\ndomig\ndomina\ndominant\ndominante\ndominantie\ndominee\ndominees\ndomineesdochter\ndomineese\ndomineesgezin\ndomineesland\ndomineestoon\ndomineesvrouw\ndomineeszoon\ndomineren\ndominicaan\ndominicaans\ndominicanenklooster\ndominicaner\ndominicanes\ndominion\ndomino\ndomino-effect\ndominospel\ndominosteen\ndominostekker\ndominotheorie\ndominoën\ndomkapittel\ndomkerk\ndomkop\ndomme\ndommekracht\ndommelen\ndommelig\ndommeling\ndommer\ndommerik\ndommig\ndommigheid\ndomoor\ndomotica\ndomp\ndompelaar\ndompelbad\ndompelen\ndompen\ndomper\ndompig\ndomproost\ndompteur\ndompteuse\ndomstad\ndomtoren\ndomweg\ndon\ndonaat\ndonataris\ndonateur\ndonateursbestand\ndonateursblad\ndonateurschap\ndonateurswerving\ndonatie\ndonatrice\ndonder\ndonderaal\ndonderaar\ndonderbeestje\ndonderbui\ndonderbus\ndonderdag\ndonderdagavond\ndonderdagmiddag\ndonderdagmorgen\ndonderdagnacht\ndonderdagnamiddag\ndonderdagochtend\ndonderdags\ndonderdagse\ndonderen\ndondergod\ndonderjagen\ndonderklap\ndonderkop\ndonderpad\ndonderpreek\ndonders\ndonderslag\ndonderspeech\ndondersteen\ndonderstem\ndonderstenen\ndonderstraal\ndonderstralen\ndondertoren\ndondervlaag\ndonderwolk\ndoneren\ndong\ndonjon\ndonjuan\ndonk\ndonker\ndonkerachtig\ndonkerbeige\ndonkerblauw\ndonkerblond\ndonkerbruin\ndonkeren\ndonkergeel\ndonkergekleurd\ndonkergetint\ndonkergrijs\ndonkergroen\ndonkerharig\ndonkerheid\ndonkerhuidig\ndonkerkleurig\ndonkerpaars\ndonkerrood\ndonkerslag\ndonkerte\ndonkey\ndonkeyman\ndonna\ndonor\ndonoradministratie\ndonorbloed\ndonorcodicil\ndonorconferentie\ndonorformulier\ndonorgeld\ndonorgemeenschap\ndonorhart\ndonorhuid\ndonorhulp\ndonorinseminatie\ndonorkeuring\ndonorland\ndonorlever\ndonormoeder\ndonornier\ndonororgaan\ndonorregister\ndonorschap\ndonorverklaring\ndonorzaad\ndonquichot\ndonquichotterie\ndons\ndonsachtig\ndonsdeken\ndonshaar\ndonsvlinder\ndonut\ndonzen\ndonzig\ndood\ndood gewaand\ndood gewaande\ndood wanen\ndoodaf\ndoodarm\ndoodbedaard\ndoodbidder\ndoodbijten\ndoodblijven\ndoodbloeden\ndoodbraaf\ndooddoen\ndooddoener\ndooddrukken\ndoodeenvoudig\ndoodeerlijk\ndoodeng\ndoodenkel\ndoodergeren\ndoodernstig\ndoodeter\ndoodfluiten\ndoodgaan\ndoodgaarne\ndoodgeboren\ndoodgemakkelijk\ndoodgemoedereerd\ndoodgewoon\ndoodgoed\ndoodgooien\ndoodgraag\ndoodgraver\ndoodgriezelig\ndoodhongeren\ndoodjammer\ndoodkalm\ndoodkist\ndoodklap\ndoodkloppertje\ndoodknuffelen\ndoodknuffelt\ndoodknuppelen\ndoodlachen\ndoodleggen\ndoodleuk\ndoodliggen\ndoodlopen\ndoodmaken\ndoodmartelen\ndoodmoe\ndoodmoede\ndoodnormaal\ndoodnuchter\ndoodongelukkig\ndoodongerust\ndoodonschuldig\ndoodop\ndoodrijden\ndoodrijder\ndoods\ndoodsaai\ndoodsakte\ndoodsangst\ndoodsbang\ndoodsbed\ndoodsbedreiging\ndoodsbeenderen\ndoodsbenauwd\ndoodsbericht\ndoodsbleek\ndoodsbrief\ndoodschamen\ndoodschieten\ndoodschop\ndoodschoppen\ndoodschrik\ndoodschrikken\ndoodschuld\ndoodsdrift\ndoodserieus\ndoodseskader\ndoodsfantasie\ndoodsgedachte\ndoodsgevaar\ndoodsgevaarlijk\ndoodsgewaad\ndoodsheid\ndoodshemd\ndoodshoofd\ndoodshoofdaapje\ndoodshoofdvlinder\ndoodsimpel\ndoodskist\ndoodsklap\ndoodskleed\ndoodskleur\ndoodsklok\ndoodskloppertje\ndoodskop\ndoodskramp\ndoodskreet\ndoodslaan\ndoodslag\ndoodsmak\ndoodsmare\ndoodsnood\ndoodsoorzaak\ndoodsprentje\ndoodspuiten\ndoodsschouw\ndoodsschrik\ndoodsslaap\ndoodssnik\ndoodssteek\ndoodsstrijd\ndoodsstuip\ndoodsteek\ndoodsteken\ndoodstil\ndoodstraf\ndoodstrijd\ndoodsuur\ndoodsverachting\ndoodsverlangen\ndoodsvijand\ndoodsvonnis\ndoodswade\ndoodswens\ndoodszweet\ndoodtij\ndoodtrappen\ndoodvallen\ndoodvechten\ndoodverklaren\ndoodverklaring\ndoodvermoeid\ndoodvermoeiend\ndoodverven\ndoodvonnis\ndoodvreter\ndoodvriezen\ndoodwerken\ndoodwond\ndoodwonde\ndoodzenuwachtig\ndoodziek\ndoodzonde\ndoodzwijgen\ndoof\ndoofblinde\ndoofheid\ndoofpot\ndoofpotaffaire\ndoofpotoperatie\ndoofstom\ndoofstomme\ndoofstommeninstituut\ndoofstommenonderwijs\ndooi\ndooibareel\ndooie\ndooien\ndooier\ndooiwater\ndooiweder\ndooiweer\ndook\ndookbout\ndool\ndoolhof\ndooltocht\ndoolweg\ndoom\ndoop\ndoopakte\ndoopattest\ndoopattestatie\ndoopbediening\ndoopbekken\ndoopbelofte\ndoopbewijs\ndoopboek\ndoopbriefje\ndoopceel\ndoopceremonie\ndoopfeest\ndoopformule\ndoopformulier\ndoopgelegenheid\ndoopgelofte\ndoopgetuige\ndoopgetuigen\ndoopheffer\ndoophefster\ndoophek\ndoopjurk\ndoopkapel\ndoopkind\ndoopkleed\ndoopkleren\ndoopleerling\ndooplid\ndoopmaal\ndoopnaam\ndoopplechtigheid\ndooppraktijk\ndoopregister\ndoopsel\ndoopsgezind\ndoopsgezinde\ndoopsuiker\ndoopvont\ndoopwater\ndoor\ndoor en door\ndoorademen\ndooraderd\ndoorbakken\ndoorbehandelen\ndoorbellen\ndoorberekenen\ndoorberekening\ndoorbetalen\ndoorbetaling\ndoorbijten\ndoorbijter\ndoorbijtster\ndoorbladeren\ndoorblazen\ndoorbloed\ndoorbloeden\ndoorbloeding\ndoorbloedingsstoornis\ndoorbloeien\ndoorboord\ndoorborduren\ndoorboren\ndoorboring\ndoorbraak\ndoorbraden\ndoorbranden\ndoorbreken\ndoorbreking\ndoorbrengen\ndoorbrieven\ndoorbuigen\ndoorcognossement\ndoordacht\ndoordachtheid\ndoordat\ndoordenken\ndoordenker\ndoordenkertje\ndoordenking\ndoordesemen\ndoordeweeks\ndoordien\ndoordoen\ndoordouwen\ndoordouwer\ndoordouwster\ndoordraaien\ndoordraaier\ndoordrammen\ndoordrammer\ndoordrammerig\ndoordramster\ndoordraven\ndoordraver\ndoordraverij\ndoordrenken\ndoordrenkt\ndoordrijven\ndoordrijver\ndoordrijverij\ndoordringbaar\ndoordringbaarheid\ndoordringen\ndoordringend\ndoordringing\ndoordrinken\ndoordrongen\ndoordruipen\ndoordrukken\ndoordrukstrip\ndoordrukverpakking\ndoorduwen\ndooreen\ndooreengemengd\ndooreengevlochten\ndooreengooien\ndooreenhaspelen\ndooreenlopen\ndooreenmengen\ndooreenroeren\ndooreenschudden\ndooreenslaan\ndooreenwerken\ndooreenwerpen\ndooreten\ndoorfietsen\ndoorgaan\ndoorgaand\ndoorgaans\ndoorgang\ndoorgangsfase\ndoorgangshoogte\ndoorgangshuis\ndoorgangskamp\ndoorgangsland\ndoorgangsweg\ndoorgankelijk\ndoorgankelijkheid\ndoorgave\ndoorgebouwd\ndoorgedraaid\ndoorgeefluik\ndoorgefourneerd\ndoorgekopt\ndoorgelegen\ndoorgeleid\ndoorgeleverd\ndoorgerot\ndoorgestane\ndoorgestoken\ndoorgeven\ndoorgever\ndoorgewerkt\ndoorgewinterd\ndoorgezakt\ndoorgifte\ndoorglijden\ndoorglippen\ndoorgoed\ndoorgraven\ndoorgraving\ndoorgroefd\ndoorgroeien\ndoorgroeimogelijkheid\ndoorgroeven\ndoorgronden\ndoorhakken\ndoorhalen\ndoorhaling\ndoorhangen\ndoorhebben\ndoorheen\ndoorhelpen\ndoorhollen\ndoorjagen\ndoorjager\ndoorkerven\ndoorkiescentrale\ndoorkiesnummer\ndoorkiessysteem\ndoorkiezen\ndoorkijk\ndoorkijkblouse\ndoorkijken\ndoorkijkjurk\ndoorkletsen\ndoorklieven\ndoorklikken\ndoorklinken\ndoorknagen\ndoorkneden\ndoorkneed\ndoorknippen\ndoorknoopjurk\ndoorknooprok\ndoorkoken\ndoorkomen\ndoorkomst\ndoorkoppeling\ndoorkoude\ndoorkrabben\ndoorkrassen\ndoorkrijgen\ndoorkruipen\ndoorkruisen\ndoorkruising\ndoorkweken\ndoorlaat\ndoorlaatbaar\ndoorlaatbaarheid\ndoorlaatfrequentie\ndoorlaatpost\ndoorladen\ndoorlaten\ndoorlatendheid\ndoorlating\ndoorlatingsfactor\ndoorleefd\ndoorlekken\ndoorlenen\ndoorleren\ndoorleven\ndoorleveren\ndoorlevering\ndoorlezen\ndoorlezing\ndoorlichten\ndoorlichting\ndoorlichtingssysteem\ndoorliggen\ndoorloodsen\ndoorloop\ndoorloopsnelheid\ndoorlooptijd\ndoorlopen\ndoorlopend\ndoorloper\ndoorlopers\ndoorluchtig\ndoorluchtigheid\ndoormaken\ndoormarcheren\ndoormars\ndoormelken\ndoormengen\ndoormeten\ndoormeter\ndoormidden\ndoormodderen\ndoorn\ndoornachtig\ndoornappel\ndoornat\ndoornboom\ndoornbos\ndoornemen\ndoornen\ndoornenkroon\ndoornhaag\ndoornhaai\ndoornheg\ndoornig\ndoornstruik\ndoornummeren\ndoornummering\ndoorontwikkelen\ndoorontwikkeling\ndoorpakken\ndoorplaatsen\ndoorploegen\ndoorploeteren\ndoorpluizen\ndoorpompen\ndoorpraten\ndoorprikken\ndoorprocederen\ndoorredeneren\ndoorreed\ndoorregen\ndoorregenen\ndoorregeren\ndoorreis\ndoorreisvisum\ndoorreizen\ndoorrekenen\ndoorrekening\ndoorrennen\ndoorrijden\ndoorrijhoogte\ndoorrit\ndoorroeren\ndoorroesten\ndoorroken\ndoorroker\ndoorrollen\ndoorrot\ndoorrotten\ndoorschakeldienst\ndoorschakelen\ndoorschakelfunctie\ndoorschakeling\ndoorschemeren\ndoorscheuren\ndoorschieten\ndoorschijnen\ndoorschijnend\ndoorschotene\ndoorschotenen\ndoorschouwen\ndoorschrappen\ndoorschrijfsysteem\ndoorschrijven\ndoorschudden\ndoorschuiven\ndoorseinen\ndoorsijpelen\ndoorslaan\ndoorslaand\ndoorslag\ndoorslaggevend\ndoorslagpapier\ndoorslapen\ndoorslecht\ndoorslenteren\ndoorslepen\ndoorslijten\ndoorslikken\ndoorslippen\ndoorsluizen\ndoorsluizing\ndoorsmeerbeurt\ndoorsmeerstation\ndoorsmeren\ndoorsnede\ndoorsnedene\ndoorsnee\ndoorsnee-Belg\ndoorsnijden\ndoorsnijding\ndoorsnuffelen\ndoorspekken\ndoorspekt\ndoorspelen\ndoorspitten\ndoorspoelen\ndoorspraak\ndoorspreken\ndoorstaan\ndoorstappen\ndoorstart\ndoorstarten\ndoorsteek\ndoorsteken\ndoorsteker\ndoorsteking\ndoorstikken\ndoorstoken\ndoorstokene\ndoorstokenen\ndoorstomen\ndoorstorten\ndoorstoten\ndoorstralen\ndoorstrepen\ndoorstromen\ndoorstromer\ndoorstroming\ndoorstromingsnorm\ndoorstroomhoeveelheid\ndoorstroommogelijkheid\ndoorstroomplaats\ndoorstroomplaatsen\ndoorstroomprogramma\ndoorstroomroute\ndoorstroomsnelheid\ndoorstuderen\ndoorsturen\ndoorsudderen\ndoorsukkelen\ndoortasten\ndoortastend\ndoortastendheid\ndoortellen\ndoortikken\ndoortimmerd\ndoortintelen\ndoortocht\ndoortochten\ndoortrappen\ndoortrapper\ndoortrapt\ndoortraptheid\ndoortrekken\ndoortrekking\ndoortrokken\ndoortypen\ndoorvaart\ndoorvaarthoogte\ndoorvaartwijdte\ndoorvaren\ndoorvechten\ndoorverbinden\ndoorverbinding\ndoorvergaderen\ndoorverhuren\ndoorverkopen\ndoorverkoper\ndoorvertalen\ndoorvertellen\ndoorverwijzen\ndoorverwijzing\ndoorverzekeren\ndoorvlechten\ndoorvliegen\ndoorvlijmen\ndoorvoed\ndoorvoelen\ndoorvoer\ndoorvoeren\ndoorvoerhandel\ndoorvoerhaven\ndoorvoering\ndoorvoerland\ndoorvoerrecht\ndoorvoerrechten\ndoorvorsen\ndoorvragen\ndoorvreten\ndoorwaadbaar\ndoorwaaien\ndoorwaakt\ndoorwaden\ndoorwaken\ndoorwandelen\ndoorwarmen\ndoorwas\ndoorweekt\ndoorwegen\ndoorweken\ndoorwerken\ndoorwerking\ndoorwerkpak\ndoorwerkproject\ndoorwerkt\ndoorweven\ndoorwevene\ndoorwinterd\ndoorwinteren\ndoorwoekeren\ndoorwoelen\ndoorworstelen\ndoorwrocht\ndoorzagen\ndoorzakken\ndoorzakking\ndoorzeefd\ndoorzenden\ndoorzending\ndoorzendservice\ndoorzetster\ndoorzetten\ndoorzetter\ndoorzetting\ndoorzettingsvermogen\ndoorzeuren\ndoorzeven\ndoorzicht\ndoorzichtig\ndoorzichtigheid\ndoorzichtkunde\ndoorzieken\ndoorzien\ndoorziene\ndoorzijgen\ndoorzijpelen\ndoorzitten\ndoorzoekbaar\ndoorzoeken\ndoorzoeking\ndoorzonwoning\ndoorzult\ndoorzwelgen\ndoos\ndoosinhoud\ndoosvormig\ndoosvrucht\ndop\ndopamine\ndope\ndopegebruik\ndopeling\ndopelinge\ndopen\ndoper\ndopers\ndoperwt\ndopgeld\ndophei\ndopheide\ndophoed\ndoping\ndopingaffaire\ndopingbeleid\ndopingbestrijding\ndopingcommissie\ndopingcontrole\ndopinggebruik\ndopinggeval\ndopinghandel\ndopingjacht\ndopinglaboratorium\ndopinglijst\ndopingnetwerk\ndopingonderzoek\ndopingpraktijken\ndopingprobleem\ndopingproces\ndopingreglement\ndopingschandaal\ndopingschorsing\ndopingtest\ndopingvraagstuk\ndopingvrij\ndopingwet\ndopingzaak\ndopingzondaar\ndopjesspel\ndoppen\ndopper\ndopping\ndopplereffect\ndopplerverschuiving\ndopsleutel\ndopvrucht\ndor\ndorade\ndorado\ndoren\ndorheid\ndormitorium\ndorp\ndorpachtig\ndorpel\ndorpeling\ndorpelinge\ndorper\ndorperheid\ndorps\ndorpsagent\ndorpsarts\ndorpsbestuur\ndorpsbevolking\ndorpsbewoner\ndorpsbewoonster\ndorpsburgemeester\ndorpscafé\ndorpscentrum\ndorpsdokter\ndorpsfeest\ndorpsgebied\ndorpsgek\ndorpsgemeenschap\ndorpsgemeente\ndorpsgenoot\ndorpsgezicht\ndorpshart\ndorpsheer\ndorpsherberg\ndorpshoofd\ndorpshuis\ndorpsidioot\ndorpsjeugd\ndorpsjongen\ndorpskerk\ndorpskern\ndorpskom\ndorpskroeg\ndorpsleven\ndorpsniveau\ndorpsomroeper\ndorpsoudste\ndorpsoverleg\ndorpspastoor\ndorpsplein\ndorpspolitiek\ndorpspomp\ndorpsraad\ndorpsschool\ndorpsschoolmeester\ndorpsstraat\ndorpsstraatjes\ndorpstoren\ndorpsvernieuwing\ndorren\ndors\ndorsaal\ndorsdeel\ndorsen\ndorser\ndorsmachine\ndorsmolen\ndorsschuur\ndorst\ndorsten\ndorstig\ndorstlessend\ndorstlesser\ndorsvlegel\ndorsvloer\ndos\ndoseerunit\ndoseren\ndosering\ndosis\ndossen\ndossier\ndossieradministratie\ndossierbeheer\ndossierbestand\ndossierkast\ndossierkennis\ndossierkosten\ndossiermap\ndossiernummer\ndossieronderzoek\ndossiersysteem\ndossiervorming\ndot\ndotaal\ndotatie\ndotcom\ndotcombedrijf\ndoteren\ndotter\ndotterbehandeling\ndotterbloem\ndotteren\ndouairière\ndouane\ndouane-expediteur\ndouane-unie\ndouaneambtenaar\ndouaneautoriteiten\ndouanebeambte\ndouanebehandeling\ndouaneboot\ndouaneboten\ndouanecontrole\ndouanedienst\ndouaneformaliteit\ndouaneformaliteiten\ndouaneformulier\ndouaneheffing\ndouanekantoor\ndouaneloods\ndouaneloodsen\ndouaneonderzoek\ndouanepapieren\ndouanepersoneel\ndouanepolitiek\ndouanepost\ndouanerecherche\ndouanerechten\ndouanetarief\ndouanetoezicht\ndouanier\ndouarie\ndouble-breasted\ndoubleren\ndoublet\ndoubleur\ndoublure\ndoublé\ndouceur\ndouceurtje\ndouche\ndouchebak\ndouchecabine\ndouchecel\ndouchegordijn\ndouchekop\ndouchen\ndoucheruimte\ndouches\ndouchewater\ndouw\ndouwen\ndove\ndoveman\ndovemansgesprek\ndovemansoren\ndoven\ndovenetel\ndoveninstituut\ndovenonderwijs\ndovenontmoetingscentrum\ndovenpastoraat\ndovenschool\ndoventaal\ndoventelefoon\ndoventolk\ndover\ndovig\ndovigheid\ndown\ndowner\ndowngraden\ndowngrading\ndownload\ndownloaden\ndownslag\ndownstemming\ndownsyndroom\ndoxologie\ndoxycycline\ndozenfabriek\ndozeren\ndozijn\ndoña\ndpi\ndr.\ndra\ndra.\ndraad\ndraadachtig\ndraadbekleding\ndraadbericht\ndraadbeugel\ndraadbreuk\ndraadeind\ndraadjesvlees\ndraadloos\ndraadmand\ndraadnagel\ndraadomroep\ndraadplastiek\ndraadrol\ndraadrollen\ndraadschaar\ndraadspoel\ndraadstripper\ndraadtrekken\ndraadverbinding\ndraadversperring\ndraadvormig\ndraadworm\ndraadzaag\ndraagaltaar\ndraagas\ndraagbaar\ndraagbaarheid\ndraagbalk\ndraagband\ndraagberrie\ndraagcomfort\ndraagconstructie\ndraagdoek\ndraaghemel\ndraagkarton\ndraagkoets\ndraagkoord\ndraagkorf\ndraagkracht\ndraagkrachtbeginsel\ndraagkrachtig\ndraagkrachtverhoudingen\ndraagkussen\ndraaglast\ndraaglijk\ndraagmoeder\ndraagmoederschap\ndraagplicht\ndraagraket\ndraagriem\ndraagspeld\ndraagsteen\ndraagster\ndraagstoel\ndraagstok\ndraagtas\ndraagtijd\ndraagverband\ndraagvermogen\ndraagvlak\ndraagvleugelboot\ndraagwijdte\ndraagzak\ndraagzeel\ndraai\ndraaibaar\ndraaibank\ndraaibeitel\ndraaibeweging\ndraaiboek\ndraaiboom\ndraaibord\ndraaibrug\ndraaicirkel\ndraaidag\ndraaideur\ndraaideurcrimineel\ndraaideureffect\ndraaidol\ndraaien\ndraaier\ndraaierig\ndraaierigheid\ndraaierij\ndraaigewricht\ndraaihals\ndraaihek\ndraaiing\ndraaikap\ndraaikever\ndraaiknop\ndraaikolk\ndraaikont\ndraaikonterij\ndraaikooi\ndraaikruis\ndraaikruk\ndraailicht\ndraailier\ndraaimolen\ndraaiorgel\ndraaiplateau\ndraaipoot\ndraaipoten\ndraaipunt\ndraairaam\ndraairamen\ndraairichting\ndraaischijf\ndraaischijftelefoon\ndraaischijftoestel\ndraaisnelheid\ndraaispil\ndraaispit\ndraaistel\ndraaister\ndraaistoel\ndraaistroom\ndraaitafel\ndraaitoestel\ndraaitol\ndraaitoneel\ndraaitopstofzuiger\ndraaitrap\ndraaiuren\ndraaiwerk\ndraaiziekte\ndraak\ndraakachtig\ndrab\ndrabbig\ndrabbigheid\ndrachme\ndracht\ndrachtig\ndrachttijd\ndraconisch\ndraden\ndraderig\ndradig\ndraf\ndrafsport\ndragee\ndragees\ndragelijk\ndragen\ndrager\ndragermateriaal\ndragerschap\ndragline\ndragoman\ndragon\ndragonder\ndragoniet\ndragonnade\ndragonsaus\ndragqueen\ndrain\ndrainage\ndrainagesysteem\ndraineerbuis\ndraineren\ndrainering\ndrainwater\ndrakenbloed\ndrakenbloedboom\ndrakenkop\ndrakenkruid\ndrakenmuil\ndrakentong\ndrakerig\ndralen\ndraler\ndram\ndrama\ndramaproductie\ndramareeks\ndramaschrijver\ndramaserie\ndramatherapie\ndramaticus\ndramatiek\ndramatis personae\ndramatisch\ndramatiseren\ndramatisering\ndramatoloog\ndramaturg\ndramaturge\ndramaturgie\ndramaturgisch\ndrammen\ndrammer\ndrammerig\ndrammerigheid\ndrang\ndranger\ndranghek\ndrangwater\ndrank\ndrankaccijns\ndrankbestrijder\ndrankbestrijding\ndrankduivel\ndrankenconcern\ndrankendivisie\ndrankenfabrikant\ndrankengigant\ndrankengroep\ndrankengroothandel\ndrankenhandel\ndrankenindustrie\ndrankenkaart\ndrankenmarkt\ndrankenproducent\ndrankenrek\ndrankensector\ndrankfabrikant\ndrankfles\ndrankgebruik\ndrankgelegenheid\ndrankhandel\ndrankhandelaar\ndrankje\ndranklucht\ndrankmisbruik\ndrankorgel\ndrankprobleem\ndrankreclame\ndrankverbod\ndrankverbruik\ndrankvergunning\ndrankverkoop\ndrankwet\ndrankwinkel\ndrankzucht\ndrankzuchtig\ndrankzuchtige\ndraperen\ndraperie\ndrapering\ndras\ndrasland\ndrassig\ndrassigheid\ndrastisch\ndraven\ndraver\ndraverij\ndravik\ndraw\ndreadlocks\ndreads\ndreamteam\ndreef\ndreg\ndregge\ndreggen\ndreigbrief\ndreigement\ndreigen\ndreigend\ndreigers\ndreiging\ndreigingsanalyse\ndreigingsbeeld\ndreigmiddel\ndreigtelefoontje\ndreinen\ndreinerig\ndrek\ndrekhoop\ndrekkerig\ndrekkig\ndrekvlieg\ndrempel\ndrempelbedrag\ndrempeldienst\ndrempelgeld\ndrempelloos\ndrempelverhogend\ndrempelverlagend\ndrempelverlaging\ndrempelvrees\ndrempelwaarde\ndrenkbak\ndrenkeling\ndrenkelinge\ndrenken\ndrenkplaats\ndrentelen\ndrenzen\ndrenzerig\ndressboy\ndresscode\ndresseren\ndresseur\ndressing\ndressman\ndressoir\ndressuur\ndressuuramazone\ndressuurpaard\ndressuurproef\ndressuurruiter\ndressuursport\ndretsen\ndreumel\ndreumes\ndreumesen\ndreun\ndreunen\ndreutel\ndreutelen\ndrevel\ndrevelen\ndreven\ndribbel\ndribbelaar\ndribbelen\ndrie\ndrie tiende\ndrie vierde\ndrie vijfde\ndrie-eenheid\ndrie-enig\ndrie-in-de-pan\ndriearmig\ndriebaansweg\ndriebanden\ndriebandenspel\ndriebandentoernooi\ndriebenig\ndrieblad\ndriecijferig\ndriecijferige\ndriecilinder\ndriedaags\ndriedekker\ndriedelig\ndriedeling\ndriedeurs\ndriedeursauto\ndriedik\ndriedimensionaal\ndriedimensionale\ndriedistel\ndriedraad\ndriedraads\ndriedubbel\ndrieduizend\ndriefasesysteem\ndriefasig\ndriegangendiner\ndriegangenmenu\ndriegdraad\ndriegen\ndriegsteek\ndriehoek\ndriehoeken\ndriehoekig\ndriehoekschakeling\ndriehoeksmeting\ndriehoeksoverleg\ndriehoeksrelatie\ndriehoeksverhouding\ndriehonderd\ndriehonderdduizend\ndriehonderdduizendste\ndriehonderdste\ndriehonderdtal\ndriehonderdvijftig\ndriehoofdig\ndriehoog\ndriehoog-achter\ndriejaarlijks\ndriejarenplan\ndriejarig\ndriejarige\ndriekaart\ndriekamerflat\ndriekamerwoning\ndriekant\ndriekantig\ndrieklank\ndrieklapper\ndriekleur\ndriekleurendruk\ndriekleurig\ndriekoningenavond\ndriekoningenbrood\ndriekoningendag\ndriekoningenfeest\ndriekoningenkoek\ndriekoningenlied\ndriekoningenster\ndriekoppig\ndriekroon\ndriekwart\ndriekwartsmaat\ndrielandenpunt\ndrieledig\ndrielettergrepig\ndrieletterwoord\ndrieling\ndrieloop\ndrieluik\ndriemaal\ndriemaandelijks\ndriemaands\ndriemaandsperiode\ndriemalig\ndrieman\ndriemanschap\ndriemanszaak\ndriemaster\ndriemijlsgrens\ndriemijlszone\ndriemotorig\ndrieogig\ndriepikkel\ndrieploegendienst\ndrieploegenstelsel\ndriepoot\ndriepunter\ndriepuntig\ndriepuntsgordel\ndrieregelig\ndries\ndrieslag\ndrieslagstelsel\ndriespan\ndriesporenbeleid\ndriesprong\ndriest\ndriestal\ndriestar\ndriestemmig\ndriesterrenhotel\ndriesterrenkok\ndriesterrenrestaurant\ndriestheid\ndriestromenland\ndrietal\ndrietalig\ndrietand\ndrietje\ndrietonige\ndrietonner\ndrietraps\ndrietrapsraket\ndrieversnellingsnaaf\ndrievingerig\ndrievlak\ndrievoet\ndrievoetig\ndrievoud\ndrievoudig\ndriewaardig\ndriewegbox\ndriewegen\ndriewegkatalysator\ndriewegkraan\ndriewegstekker\ndriewegsysteem\ndriewekelijks\ndriewerf\ndriewieler\ndriewielig\ndriezijdig\ndriezitsbank\ndrieëndertig\ndrieëndertigjarig\ndrieëndertigste\ndrieënhalf\ndrieënnegentig\ndrieëntachtig\ndrieëntwintig\ndrieëntwintigduizend\ndrieëntwintigjarig\ndrieëntwintigste\ndrieënveertig\ndrieënvijftig\ndrieënzestig\ndrieërlei\ndrift\ndriftaanval\ndriftbui\ndriften\ndrifter\ndriftig\ndriftigheid\ndriftkikker\ndriftkop\ndriftleven\ndrijfanker\ndrijfas\ndrijfbare\ndrijfgas\ndrijfhamer\ndrijfhout\ndrijfijs\ndrijfjacht\ndrijfkracht\ndrijfkunst\ndrijfmest\ndrijfmestput\ndrijfnat\ndrijfnet\ndrijfnetvisserij\ndrijfriem\ndrijfstang\ndrijfsteen\ndrijftil\ndrijftol\ndrijfveer\ndrijfvermogen\ndrijfwerk\ndrijfwiel\ndrijfzand\ndrijven\ndrijver\ndrijverij\ndril\ndrilboor\ndrillen\ndrilmeester\ndrilschool\ndrilsergeant\ndringen\ndringend\ndringendheid\ndrink\ndrinkbaar\ndrinkbak\ndrinkbeker\ndrinkbus\ndrinkebroer\ndrinken\ndrinker\ndrinkerij\ndrinkgedrag\ndrinkgelag\ndrinkgeld\ndrinkgewoonte\ndrinkglas\ndrinkkan\ndrinklied\ndrinkpartij\ndrinkplaats\ndrinkpoel\ndrinkpoelen\ndrinkschaal\ndrinkster\ndrinkwater\ndrinkwaterbedrijf\ndrinkwaterinstallatie\ndrinkwaterleiding\ndrinkwaternorm\ndrinkwatersysteem\ndrinkwatertank\ndrinkwaterverbruik\ndrinkwatervoorziening\ndrinkwaterwinning\ndrinkwaterzuivering\ndrinkyoghurt\ndrive\ndrive-in\ndrive-inwoning\ndriver\ndroedelen\ndroef\ndroefenis\ndroefgeestig\ndroefgeestigheid\ndroefheid\ndroeg\ndroes\ndroesem\ndroevig\ndroezig\ndrogbeeld\ndroge\ndrogen\ndroger\ndrogeren\ndrogerij\ndroging\ndrogist\ndrogisterij\ndrogisterijartikel\ndrogisterijartikelen\ndrogisterijketen\ndrogman\ndrogreden\ndrogredenaar\ndrogredenering\ndrol\ndrollen\ndrollenvanger\ndrollig\ndrolligheid\ndrom\ndromedaris\ndromen\ndromenland\ndromenrijk\ndromer\ndromerig\ndromerij\ndrommel\ndrommels\ndrommen\ndrong\ndronk\ndronkaard\ndronken\ndronkenlap\ndronkenman\ndronkenmansgebed\ndronkenmansgebeden\ndronkenmansgelal\ndronkenmanspraat\ndronkenmanstaal\ndronkenschap\ndroog\ndroogautomaat\ndroogbloeier\ndroogbloem\ndroogboeket\ndroogdoek\ndroogdok\ndroogdokmaatschappij\ndroogheid\ndrooghekje\ndrooghouden\ndroogje\ndroogjes\ndroogkamer\ndroogkap\ndroogkast\ndroogkloot\ndroogkomiek\ndroogkomisch\ndroogkoord\ndroogkuis\ndroogleggen\ndrooglegging\ndrooglijn\ndrooglopen\ndroogmachine\ndroogmaken\ndroogmakerij\ndroogmaking\ndroogmalen\ndroogmaling\ndroogmolen\ndroogoven\ndroogplaats\ndroogproces\ndroogpruim\ndroogpruimen\ndroogpruimer\ndroogrek\ndroogscheerapparaat\ndroogscheren\ndroogscheur\ndroogschuren\ndroogschuur\ndroogsel\ndroogshampoo\ndroogskiën\ndroogstaan\ndroogstempel\ndroogstoken\ndroogstoof\ndroogstoppel\ndroogte\ndroogtegevoelig\ndroogten\ndroogteperiode\ndroogteschade\ndroogtijd\ndroogtrommel\ndroogtunnel\ndroogvallen\ndroogvloer\ndroogvoer\ndroogvoets\ndroogweg\ndroogwrijven\ndroogzak\ndroogzolder\ndroogzwemmen\ndroogzwierder\ndroogzwieren\ndroom\ndroomachtig\ndroomauto\ndroombeeld\ndroomboek\ndroomclub\ndroomdebuut\ndroomfabriek\ndroomfinale\ndroomgedachte\ndroomgezicht\ndroomhuis\ndroomhuwelijk\ndroominhoud\ndroomjob\ndroomkans\ndroomkasteel\ndroomkeuken\ndroomland\ndroomloos\ndroommeisje\ndroompaar\ndroompaleis\ndroomproject\ndroomreis\ndroomscenario\ndroomslaap\ndroomstad\ndroomstart\ndroomster\ndroomtijd\ndroomtoestand\ndroomuitlegger\ndroomwens\ndroomwereld\ndroop\ndrop\ndrop-out\ndropdownmenu\ndropen\ndropfabriek\ndropfabrieken\ndropje\ndropkick\ndroplolly\ndroppel\ndroppelen\ndroppeling\ndroppen\ndropping\ndrops\ndropshot\ndropsmaak\ndropverkoop\ndropveter\ndropwater\ndrossaard\ndrossen\ndrost\ndrostambt\ndroste-effect\ndrostschap\ndrozen\ndrs.\ndrug\ndrugbaron\ndrugbeleid\ndrugdealer\ndruggebruik\ndruggebruiker\ndruggebruikster\ndrughandel\ndrughond\ndrugkoerier\ndrugnota\ndrugoverlast\ndrugprobleem\ndrugproblematiek\ndrugs\ndrugsaanpak\ndrugsactie\ndrugsbaron\ndrugsbeleid\ndrugsbende\ndrugsbestrijding\ndrugsbestrijdingsorganisatie\ndrugsbezit\ndrugsbrigade\ndrugsbureau\ndrugscene\ndrugscircuit\ndrugsconsumptie\ndrugscontrole\ndrugscriminaliteit\ndrugscrimineel\ndrugsdeal\ndrugsdealer\ndrugsdeals\ndrugsdebat\ndrugsdelict\ndrugsdeskundige\ndrugsdode\ndrugsdossier\ndrugsgebruik\ndrugsgebruiker\ndrugsgebruikster\ndrugsgeld\ndrugsgerelateerd\ndrugshandel\ndrugshandelaar\ndrugshond\ndrugshulpverlening\ndrugsinformatielijn\ndrugskartel\ndrugskoerier\ndrugslijn\ndrugsmaffia\ndrugsmarkt\ndrugsmilieu\ndrugsmisbruik\ndrugsmokkel\ndrugsnetwerk\ndrugsnota\ndrugsonderzoek\ndrugsonderzoeker\ndrugsoorlog\ndrugsopvang\ndrugsoverlast\ndrugspand\ndrugspreventie\ndrugsprobleem\ndrugsproblematiek\ndrugsproces\ndrugsproductie\ndrugspsychose\ndrugsrunner\ndrugsruzie\ndrugsscene\ndrugssmokkel\ndrugsstaat\ndrugssyndicaat\ndrugsteam\ndrugstest\ndrugstoerisme\ndrugstoerist\ndrugstore\ndrugstrafiek\ndrugstransactie\ndrugstransport\ndrugsvangst\ndrugsverbod\ndrugsverkoop\ndrugsverleden\ndrugsverslaafd\ndrugsverslaafde\ndrugsverslaving\ndrugsverstrekking\ndrugsvoorlichting\ndrugsvrij\ndrugswereld\ndrugswet\ndrugswetgeving\ndrugswijk\ndrugswijken\ndrugszaak\ndrugteam\ndrugtoerisme\ndrugtoerist\ndrugverslaafde\ndruif\ndruifhyacint\ndruifluis\ndruifvormig\ndruil\ndruilen\ndruilerig\ndruilige\ndruiliger\ndruiligere\ndruiloor\ndruiloren\ndruilorig\ndruilregen\ndruipbad\ndruipen\ndruiper\ndruiperig\ndruipkaars\ndruiplijst\ndruipnat\ndruipneus\ndruipneuzen\ndruiprek\ndruipstaarten\ndruipsteen\ndruipsteengrot\ndruipwater\ndruisen\ndruivelaar\ndruivenblad\ndruivenkas\ndruivenkuur\ndruivenoogst\ndruivenpers\ndruivenpit\ndruivenrank\ndruivenras\ndruivensap\ndruivenschil\ndruivensoort\ndruivensuiker\ndruiventeelt\ndruiventros\ndruivenziekte\ndruk\ndrukautomaat\ndrukbereden\ndrukbevaren\ndrukbezet\ndrukbezocht\ndrukcabine\ndrukcontact\ndrukdoend\ndrukdoenerij\ndrukfeil\ndrukfout\ndrukgang\ndrukgebied\ndrukgolf\ndrukhoogte\ndrukinkt\ndrukjacht\ndrukken\ndrukkend\ndrukker\ndrukkerij\ndrukkersmerk\ndrukkerstroost\ndrukking\ndrukkingsgroep\ndrukkingsmiddel\ndrukknoop\ndrukknop\ndrukknopschakelaar\ndrukkosten\ndrukkunst\ndruklaag\ndrukletter\ndrukmeter\ndrukmeting\ndrukmiddel\ndrukorder\ndrukpapier\ndrukpers\ndrukpersdelict\ndrukplaat\ndrukproces\ndrukproef\ndrukpunt\ndrukraam\ndrukriolering\ndrukrol\ndrukschakelaar\ndrukschrift\ndruksel\ndrukspiegel\ndrukstang\ndruksterkte\ndruktank\ndrukte\ndruktechniek\ndruktechnisch\ndruktemaker\ndrukteschopper\ndruktoestel\ndruktoets\ndruktoetstelefoon\ndruktoetstoestel\ndrukvastheid\ndrukvat\ndrukverband\ndrukverbod\ndrukverdeling\ndrukverhoging\ndrukverlies\ndrukverschil\ndrukvoorbereiding\ndrukvorm\ndrukvulling\ndrukweerstand\ndrukwerk\ndrukwerkzendingen\ndrukzin\ndrukzone\ndrum\ndrumband\ndrumcomputer\ndrummen\ndrummer\ndrums\ndrumslag\ndrumsolo\ndrumstel\ndrumster\ndrumstick\ndrumwerk\ndrup\ndruppel\ndruppelaar\ndruppelen\ndruppelfles\ndruppeling\ndruppelpipet\ndruppelsgewijs\ndruppelteller\ndruppeltje\ndruppelvanger\ndruppelvorm\ndruppelvormig\ndruppen\ndruus\ndruïde\ndruïdetempel\ndryade\nds.\ndtp\nduaal\ndualis\ndualisering\ndualisme\ndualist\ndualistisch\ndualiteit\ndubbel\ndubbel-cd\ndubbelaar\ndubbelagent\ndubbelalbum\ndubbelbaans\ndubbelbeeld\ndubbelbelastingverdrag\ndubbelbesluit\ndubbelblank\ndubbelblind\ndubbelbol\ndubbelbreed\ndubbelchecken\ndubbelcircuit\ndubbelconcert\ndubbeldakstent\ndubbeldekker\ndubbeldeksbus\ndubbeldeksrijtuig\ndubbeldekstrein\ndubbeldik\ndubbeldraads\ndubbeldrank\ndubbele\ndubbele axel\ndubbelelpee\ndubbelen\ndubbelepunt\ndubbelfinale\ndubbelfout\ndubbelfunctie\ndubbelganger\ndubbelgangster\ndubbelgebeid\ndubbelgebeide\ndubbelgehandicapt\ndubbelgeslagen\ndubbelglas\ndubbelgreep\ndubbelhandig\ndubbelhartig\ndubbelhartigheid\ndubbelheid\ndubbelinterview\ndubbelklap\ndubbelklappen\ndubbelklik\ndubbelklikken\ndubbelkruis\ndubbelkwartet\ndubbelleven\ndubbellijn\ndubbelloop\ndubbelloops\ndubbelloopsgeweer\ndubbelmandaat\ndubbelnummer\ndubbelop\ndubbelparkeerder\ndubbelpartner\ndubbelplaatje\ndubbelportret\ndubbelpunt\ndubbelrijm\ndubbelrol\ndubbelrondig\ndubbelslaan\ndubbelslachtig\ndubbelslag\ndubbelspecialist\ndubbelspecialiste\ndubbelspel\ndubbelspeler\ndubbelspelpartner\ndubbelspion\ndubbelspoor\ndubbelstad\ndubbelster\ndubbelsterren\ndubbeltal\ndubbeltalent\ndubbeltariefmeter\ndubbeltariefmeters\ndubbeltelling\ndubbeltentoonstelling\ndubbeltitel\ndubbeltje\ndubbeltjeskwestie\ndubbeltjeswerk\ndubbeltoernooi\ndubbeltong\ndubbeltongig\ndubbeltwee\ndubbelvier\ndubbelvouwen\ndubbelwandig\ndubbelwerkend\ndubbelzien\ndubbelzijdig\ndubbelzinnig\ndubbelzinnigheid\ndubben\ndubieus\ndubloen\nduchten\nduchtig\nduel\nduelleren\nduellist\nduet\nduf\nduffel\nduffelcoat\nduffels\ndufheid\ndug-out\nduidelijk\nduidelijkheid\nduidelijkheidshalve\nduiden\nduider\nduiding\nduidingsmagazine\nduif\nduifachtig\nduig\nduighout\nduik\nduikbommenwerper\nduikboot\nduikbootbasis\nduikbootjager\nduikbril\nduikelaar\nduikelen\nduikeling\nduiken\nduiker\nduikerhelm\nduikerklok\nduikerpak\nduikers\nduikersluis\nduikersziekte\nduiking\nduikklok\nduikmasker\nduikmuts\nduikpak\nduikplank\nduikploeg\nduikschool\nduiksport\nduiksprong\nduikteam\nduiktoren\nduikuitrusting\nduikvlucht\nduikvogel\nduim\nduimbreed\nduimdik\nduimeling\nduimelot\nduimen\nduimendik\nduimendraaien\nduimkruid\nduimnagel\nduimpje\nduimschroef\nduimspijker\nduimstok\nduimzuigen\nduimzuiger\nduimzuigerij\nduin\nduinaardappel\nduinachtig\nduinafslag\nduinbeplanting\nduindistel\nduindoorn\nduindoren\nduinengebied\nduinenreeks\nduinenrij\nduinflora\nduingebied\nduingrond\nduinkonijn\nduinlandschap\nduinmeer\nduinovergang\nduinpaadje\nduinpad\nduinpan\nduinpieper\nduinrand\nduinreservaat\nduinroos\nduinstreek\nduintop\nduinvallei\nduinvoet\nduinwater\nduinwaterleiding\nduinzand\nduist\nduister\nduisteren\nduisterheid\nduisternis\nduit\nduitblad\nduitendief\nduivekater\nduivel\nduivel-doet-al\nduivelachtig\nduivelarij\nduivelbanner\nduivelbezweerder\nduivelen\nduivelin\nduiveljager\nduivels\nduivelsadvocaat\nduivelsbeet\nduivelsbrood\nduivelshaar\nduivelskers\nduivelskind\nduivelsklauw\nduivelskop\nduivelskunst\nduivelskunsten\nduivelskunstenaar\nduivelskunstenares\nduivelskunstenarij\nduivelsnaaigaren\nduivelsoog\nduivelspact\nduivelswerk\nduiveltje\nduiveluitbanner\nduiveluitdrijving\nduivenboon\nduivenconcours\nduivenhok\nduivenkervel\nduivenkot\nduivenliefhebber\nduivenmelker\nduivenplat\nduivenpost\nduivenslag\nduivensport\nduiventil\nduivenvlucht\nduivenwedstrijd\nduiver\nduivin\nduizelen\nduizelig\nduizeligheid\nduizeligmakend\nduizeling\nduizelingwekkend\nduizend\nduizend-en-een\nduizendblad\nduizenderlei\nduizendguldenkruid\nduizendjarig\nduizendjarige\nduizendje\nduizendknoop\nduizendkoppig\nduizendkunstenaar\nduizendmaal\nduizendpoot\nduizendpoten\nduizendschoon\nduizendste\nduizendtal\nduizendvoud\nduizendvoudig\nduizendwerf\ndukaat\ndukatengoud\ndukaton\ndukdalf\ndulcinea\nduldbaar\nduldeloos\ndulden\ndulia\ndumdum\ndumdumkogel\ndummy\ndummyvariabele\ndump\ndumpartikel\ndumpen\ndumpgoederen\ndumping\ndumpingpraktijken\ndumpplaats\ndumpprijs\ndumpzaak\ndun\ndunbevolkt\ndundoek\ndundruk\ndundrukpapier\ndunheid\ndunk\ndunken\ndunlijvig\ndunne\ndunnen\ndunnetjes\ndunnigheid\ndunschiller\ndunsel\ndunte\nduo\nduobaan\nduobak\nduoblok\nduodecimo\nduodenum\nduopartner\nduopassagier\nduopolie\nduopresentatie\nduorijder\nduozitting\ndupe\nduperen\nduplexwoning\nduplicaat\nduplicatie\nduplicator\ndupliceren\nduplicering\ndupliek\nduplolamp\nduppie\nduratief\nduren\ndurf\ndurfal\ndurfinvesteerder\ndurfkapitaal\ndurfkapitaalfonds\ndurfkapitalist\ndurfniet\nduro\ndurven\ndus\ndusdanig\ndusdoende\ndusgenaamd\nduster\ndut\ndutje\nduts\ndutsen\ndutten\nduur\nduurbaar\nduurbetaald\nduurkoop\nduurloop\nduurrecord\nduursport\nduursporter\nduurte\nduurtebijslag\nduurtetoeslag\nduurtijd\nduurvermogen\nduurzaam\nduurzaamheid\nduurzaamheidsklasse\nduvel\nduvelen\nduvels\nduvelstoejager\nduveltje\nduw\nduwbak\nduwboot\nduweenheid\nduwen\nduwstel\nduwvaart\nduwwerk\nduümviraat\ndvd\ndvd-recorder\ndvd-rom\ndvd-speler\ndwaal\ndwaalbegrip\ndwaalgast\ndwaalgeest\ndwaalleer\ndwaallicht\ndwaalpad\ndwaalspoor\ndwaalstar\ndwaalster\ndwaaltocht\ndwaalweg\ndwaas\ndwaasheid\ndwaashoofd\ndwaaskop\ndwalen\ndwaling\ndwang\ndwangarbeid\ndwangarbeider\ndwangarbeiderskamp\ndwangbeeld\ndwangbehandeling\ndwangbevel\ndwangbuis\ndwanggedachte\ndwanglicentie\ndwangmaatregel\ndwangmatig\ndwangmatigheid\ndwangmedicatie\ndwangmiddel\ndwangneurose\ndwangopname\ndwangpositie\ndwangrail\ndwangsom\ndwangsombeschikking\ndwangverpleging\ndwangvoorstelling\ndwarrelen\ndwarreling\ndwarrelwind\ndwars\ndwarsarm\ndwarsbalk\ndwarsbeuk\ndwarsbomen\ndwarsdoorsnede\ndwarsdoorsnee\ndwarsdraads\ndwarsdrijven\ndwarsdrijver\ndwarsdrijverij\ndwarsfluit\ndwarsfluitiste\ndwarsgestreept\ndwarsheid\ndwarshelling\ndwarshoofd\ndwarshout\ndwarsig\ndwarskijker\ndwarskop\ndwarskracht\ndwarslaesie\ndwarsliggen\ndwarsligger\ndwarsliggerij\ndwarsligging\ndwarsprofiel\ndwarsrichting\ndwarsscheeps\ndwarsschip\ndwarsschot\ndwarsstang\ndwarsstraat\ndwarsstrooms\ndwarste\ndwarsverband\ndwarsverbinding\ndwarsweg\ndwarszee\ndwarszitten\ndwaselijk\ndwaze\ndwazerik\ndweepachtig\ndweepster\ndweepziek\ndweepzucht\ndweepzuchtig\ndweil\ndweilen\ndweilorkest\ndweilpauze\ndweilwagen\ndwepen\ndweper\ndweperig\ndweperij\ndwerg\ndwergachtig\ndwergeik\ndwergengestalte\ndwerggroei\ndwergstaat\ndwergstern\ndwergvinvis\ndwergvleermuis\ndwergvolk\ndwergwerpen\ndwingeland\ndwingelandij\ndwingen\ndwingend\ndwinger\ndwingerig\ndynamica\ndynamiek\ndynamiet\ndynamietaanslag\ndynamietbom\ndynamietpatroon\ndynamisch\ndynamiseren\ndynamisering\ndynamisme\ndynamo\ndynast\ndynastie\ndynastiek\ndyne\ndysenterie\ndyslecticus\ndyslectisch\ndyslexie\ndyspepsie\ndysplasie\ndystrofie\ndébouché\ndéchéance\ndégénéré\ndéjà vu\ndéjà-vugevoel\ndélégué\ndéléguée\ne\ne-banking\ne-boek\ne-book\ne-business\ne-card\ne-commerce\ne-commercebedrijf\ne-government\ne-handel\ne-kaart\ne-learning\ne-mail\ne-mailaccount\ne-mailadres\ne-mailbericht\ne-mailberichten\ne-mailbox\ne-maildienst\ne-mailen\ne-mailkranten\ne-mailprogramma\ne-mailservice\ne-mailsysteem\ne-mailverkeer\ne-pion\ne-snaar\ne-zine\ne.d.\ne.e.a.\ne.o.\ne.v.a.\nearl grey\neasy listening\neasy rider\neau de cologne\neau de toilette\neau-de-colognefles\neb\nebbe\nebben\nebbenboom\nebbenhout\nebbenhouten\nebdeur\nebenist\nebitda\nebola\nebolavirus\neboniet\nebonieten\nebstand\nebstroom\necarteren\necarté\necclesia\necclesiastisch\necg\nechappement\nechec\nechel\nechelon\nechelonneren\necho\nechogedicht\nechografie\nechografisch\necholalie\necholood\nechopeiling\nechoput\nechoscopie\nechoscopisch\nechoën\nechoënd\necht\nechtbreekster\nechtbreken\nechtbreker\nechtbreuk\nechtelieden\nechtelijk\nechtelingen\nechten\nechter\nechtgenoot\nechtgenote\nechtgenotes\nechtheid\nechtpaar\nechtpaartherapie\nechtscheiding\nechtscheidingsbemiddeling\nechtscheidingsconvenant\nechtscheidingsperikelen\nechtscheidingsprocedure\nechtscheidingsproces\nechtscheidingsrecht\nechtscheidingsregeling\nechtscheidingsvonnis\nechtscheidingszaak\nechtverbintenis\nechtvereniging\neclair\neclatant\neclecticisme\neclecticus\neclectisch\neclips\neclipsbrilletjes\neclipseren\necliptica\necobelasting\necobonus\necocide\necoduct\necologie\necologisch\necologisering\necologist\necoloog\neconome\neconomenblad\neconomendebat\neconomenvakblad\neconometrie\neconometrisch\neconometrist\neconomie\neconomiedebat\neconomiekatern\neconomieleraar\neconomieminister\neconomiepagina\neconomieprofessor\neconomiestudent\neconomiestudente\neconomiestudie\neconomisch\neconomisch-financieel\neconomisch-geografisch\neconomisch-monetair\neconomisch-politiek\neconomisch-statistisch\neconomiser\neconomiseren\neconomisering\neconomist\neconomyclass\neconoom\necostroom\necosysteem\necotaks\necotechniek\necotoerisme\necotoerist\necotrend\necozone\necru\necstasy\nectoderm\nectoplasma\nectoplastisch\necu\neczeem\neczema\nedammer\nedel\nedelaardig\nedelachtbaar\nedelachtbare\nedele\nedeleer\nedelgas\nedelgeboren\nedelgesteente\nedelgrootachtbaar\nedelheid\nedelhert\nedelhoogachtbaar\nedelkitsch\nedelknaap\nedelman\nedelmarter\nedelmetaal\nedelmoedig\nedelmoedigheid\nedelmogend\nedelsmeden\nedelsmeedkunst\nedelsmeedwerk\nedelsmid\nedelstaal\nedelsteen\nedelvalk\nedelvrouw\nedelweiss\neden\nedict\nedik\neditie\neditor\neditoriaal\nedoch\neducatie\neducatiecentrum\neducatief\neduct\nedwardiaans\need\needaflegging\needbreuk\needformule\needformulier\needgenoot\needgenootschap\needsaflegging\needsformule\needsformulier\needverbond\neeg\neega\neek\neekhoorn\neekhoorntjesbrood\neekhoren\neekschillen\neelt\neeltachtig\neeltig\neeltknobbel\neeltlaag\neen\neen derde\neen tiende\neen vierde\neen zesde\neen-na-laatst\neen-op-een\neen-twee-drie\neen-tweetje\neenaderig\neenakter\neenarm\neenarmig\neenbaansweg\neenbenig\neenbladig\neencellig\neencellige\neencilinder\neend\neendaags\neendachtig\neendagskuiken\neendagstoerisme\neendagstoerist\neendagsvlieg\neendagswedstrijd\neendekker\neendelig\neendelijk\neendenbek\neendenborst\neendenbout\neendenei\neendenjacht\neendenkom\neendenkooi\neendenkroos\neendenkuiken\neendenlever\neendenmossel\neender\neendimensionaal\neendracht\neendrachtelijk\neendrachtig\neendrachtigheid\neenduidig\neenduidigheid\neendvogel\neeneiig\neenendertig\neenendertigen\neenendertigste\neenentachtig\neenentachtigste\neenentwintig\neenentwintigduizend\neenentwintigen\neenentwintigjarig\neenentwintigste\neenenveertig\neenenveertigste\neenenvijftig\neenenzestig\neenenzeventig\neengeboren\neengezinshuis\neengezinswoning\neenhandig\neenheid\neenheidscode\neenheidsconcept\neenheidsdenken\neenheidsfilosofie\neenheidsfront\neenheidsgedachte\neenheidsgewicht\neenheidsinterval\neenheidskarakter\neenheidsklasse\neenheidsleer\neenheidslengte\neenheidslijst\neenheidsmarkt\neenheidsmatrix\neenheidsmunt\neenheidspartij\neenheidspolitie\neenheidsprijs\neenheidsregering\neenheidsschool\neenheidsstaat\neenheidsstatuut\neenheidsstructuur\neenheidstaal\neenheidstarief\neenheidstijd\neenheidsvakbeweging\neenheidsvakbond\neenheidsvierkant\neenheidsworst\neenhelmig\neenhoevig\neenhokkig\neenhoofdig\neenhoog\neenhoorn\neenhoren\neenhuizig\neenieder\neenjarig\neenkamerappartement\neenkamerappartementen\neenkamerwoning\neenkennig\neenkennigheid\neenkleurig\neenlettergrepig\neenling\neenlobbig\neenmaal\neenmaking\neenmalig\neenmaligheid\neenmansactie\neenmansbedrijf\neenmansfractie\neenmansorkest\neenmansposten\neenmanstijdschrift\neenmansvoorstelling\neenmanswagen\neenmanszaak\neenmotorig\neennervig\neenogig\neenoog\neenoudergezin\neenpansmaaltijd\neenparig\neenparigheid\neenpartijstaat\neenpartijstelsel\neenpersoons\neenpersoonsbed\neenpersoonsdeken\neenpersoonshuishouden\neenpersoonskamer\neenprocentsregeling\neenregelig\neenrichtingsverkeer\neenrichtingsweg\neenrichtingverkeer\neenruiter\neens\neensdeels\neensdenkend\neensgestemd\neensgezind\neensgezinde\neensgezindheid\neensklaps\neenslachtig\neensluidend\neensluidendheid\neenspan\neensteensmuur\neenstemmig\neenstemmigheid\neentalig\neentaligheid\neenterm\neentje\neentonig\neentonigheid\neenverdiener\neenvormig\neenvormigheid\neenvoud\neenvoudig\neenvoudigheid\neenvoudigheidshalve\neenvoudigweg\neenwaardig\neenwieler\neenwinter\neenwording\neenwordingsproces\neenzaadlobbig\neenzaam\neenzaamheid\neenzaamheidsprobleem\neenzaat\neenzelfde\neenzelvig\neenzelvigheid\neenzijdig\neenzijdigheid\neer\neerbaar\neerbaarheid\neerbejag\neerbetoon\neerbetuiging\neerbewijs\neerbied\neerbiedig\neerbiedigen\neerbiedigheid\neerbiediging\neerbiediglijk\neerbiedsbetuiging\neerbiedwaardig\neerbiedwaardigheid\neerbiedwekkend\neerdaags\neerder\neerdergenoemd\neergevoel\neergierig\neergierigheid\neergisteravond\neergisteren\neergisternacht\neerherstel\neerlang\neerlijk\neerlijkheid\neerlijkheidshalve\neerloos\neerloosheid\neermetaal\neerroof\neerrover\neerst\neerstaangewezen\neerstaanwezend\neerstbedoeld\neerstdaags\neerste\neerste-elftalspeler\neerstecommunicant\neerstedivisieclub\neerstedivisionist\neerstegeneratieallochtoon\neerstegraads\neerstegraadsleraar\neerstegrader\neerstehulppost\neerstehulpverlening\neerstejaars\neerstejaarsstudent\neerstejaarsvak\neersteklas\neersteklascoupé\neersteklasser\neerstekwartaalcijfers\neerstelijns\neerstelijnsgezondheidszorg\neerstelijnsinstelling\neerstelijnszorg\neersteling\neerstelinge\neerstens\neersterangs\neersterangsrol\neerstesteenlegging\neerstgeboorte\neerstgeboorterecht\neerstgeboren\neerstgeborene\neerstgenoemd\neerstgenoemde\neerstgeroepene\neerstkomend\neerstverantwoordelijk\neerstverantwoordelijke\neerstvolgend\neertijds\neervergeten\neerverleden\neervol\neerwaard\neerwaarde\neerwaardig\neerwaardigheid\neerwraak\neerzaam\neerzaamheid\neerzucht\neerzuchtig\neest\neesten\neetaardappel\neetafspraak\neetappel\neetbaar\neetbaarheid\neetcafé\neetcultuur\neetfestijn\neetgedeelte\neetgedrag\neetgelegenheid\neetgerei\neetgewoonte\neetgids\neethoek\neethuis\neetkamer\neetketel\neetkeuken\neetlepel\neetlust\neetmaal\neetpatroon\neetpauze\neetpeer\neetplaats\neetruimte\neetservies\neetstalletje\neetstokje\neetstokjes\neetstoornis\neettafel\neettent\neetverslaving\neetwaar\neetwaren\neetzaal\neeuw\neeuweling\neeuwenheugend\neeuwenlang\neeuwenoud\neeuwfeest\neeuwgetij\neeuwig\neeuwigdurend\neeuwigen\neeuwigheid\neeuwigheidsduur\neeuwigheidswaarde\neeuwwende\neeuwwisseling\nefedrine\nefemeer\nefemeriden\neffect\neffectbal\neffectbejag\neffectenadviesdiensten\neffectenbank\neffectenbedrijf\neffectenbeheer\neffectenbemiddelaar\neffectenbemiddeling\neffectenbeurs\neffectenbezit\neffectenbezitter\neffectenbranche\neffectendepot\neffectengiro\neffectenhandel\neffectenhandelaar\neffectenhoek\neffectenhuis\neffecteninstelling\neffectenkantoor\neffectenkoers\neffectenkoersen\neffectenkrediet\neffectenmakelaar\neffectenmarkt\neffectenportefeuille\neffectenprovisie\neffectenrecht\neffectenrekening\neffectentransactie\neffectentrommel\neffectenverkeer\neffectenwereld\neffectenzaak\neffectief\neffectisering\neffectiviteit\neffectiviteitsmodel\neffectmeting\neffectrapportage\neffectueren\neffectuering\neffectvol\neffen\neffenaan\neffenaf\neffenen\neffenheid\neffening\nefficiency\nefficiencyonderzoek\nefficiencyoperatie\nefficiencyoverweging\nefficiencyprobleem\nefficiencyverbetering\nefficiencywinst\nefficiënt\nefficiëntie\nefficiëntieverbetering\neffluent\neg\negaal\negalisatie\negalisatiefonds\negaliseren\negalisering\negalitair\negalitarisme\negard\negards\negel\negelantier\negelgras\negelskop\negelstelling\negelvis\negge\neggen\negghead\neggig\nego\negocentriciteit\negocentrisch\negocentrisme\negodocument\negotisme\negotrip\negotrippen\negotripper\negotripperij\negoïsme\negoïst\negoïste\negoïstisch\negyptologie\negyptoloog\nei\neiber\neicel\neiceldonatie\neideling\neider\neiderdons\neidereend\neidetisch\neidooier\neierboer\neierdans\neierdooier\neierdop\neierdopje\neieren\neierhandel\neierkoek\neierkolen\neierkorf\neierkrans\neierlepel\neierlepeltje\neierlevendbarend\neierlijst\neiermarkt\neiermijn\neierpoeder\neierpoeier\neierpruim\neierrek\neiersaus\neierschaal\neierschelp\neiersector\neiersnijder\neierstok\neierstokkanker\neierstokweefsel\neierstruif\neiertikken\neierveiling\neierwarmer\neierwekker\neigeel\neigen\neigenaar\neigenaar-bewoner\neigenaar-directeur\neigenaar-verhuurder\neigenaardig\neigenaardigheid\neigenaarschap\neigenarenheffing\neigenares\neigenaresse\neigenbaat\neigenbelang\neigenbijdrageregeling\neigenbouw\neigendom\neigendomsbelasting\neigendomsbewijs\neigendomskwestie\neigendomsoverdracht\neigendomspand\neigendomsrecht\neigendomsstructuur\neigendomsverdeling\neigendomsverhouding\neigendomsvoorbehoud\neigendunk\neigendunkelijk\neigenen\neigenfrequentie\neigengebakken\neigengebouwd\neigengeldje\neigengemaakt\neigengerechtig\neigengerechtigheid\neigengereid\neigengereidheid\neigengeërfde\neigenhandig\neigenheid\neigenheimer\neigenliefde\neigenlijk\neigenmachtig\neigenmachtigheid\neigennaam\neigenrichting\neigenrisicodrager\neigenschap\neigensoortig\neigenstandig\neigenstandigheid\neigenste\neigentijds\neigentijdsheid\neigenwaan\neigenwaarde\neigenwijs\neigenwijsheid\neigenwillig\neigenwoningbezit\neigenwoningforfait\neigenzinnig\neigenzinnigheid\neiglans\neihoofd\neik\neikel\neikelaar\neikelcacao\neikelkoffie\neikeltjeskoffie\neikelvormig\neiken\neikenbast\neikenblad\neikenbladsla\neikenboktor\neikenboom\neikenbos\neikendreef\neikengalwesp\neikenhakhout\neikenhout\neikenhouten\neikenkrans\neikenkroon\neikenlaan\neikenloof\neikenprocessierups\neikenschors\neikenstam\neikenstronk\neikentak\neikenwoud\neiker\neikern\neikschillen\neikschiller\neilaas\neilaci\neiland\neilandbestuur\neilandbewoner\neilanddeel\neilandelijk\neilandengroep\neilandenrijk\neilandenstaat\neilandenzee\neilander\neilandgebied\neilandgevoel\neilandsbestuur\neilandsraad\neilandstaat\neilandstation\neileider\neilieve\neiloof\neimengsel\neind\neindadvies\neindafrekening\neindafweging\neindassemblage\neindbalans\neindbedrag\neindbeeld\neindbegrenzing\neindbeoordeling\neindberging\neindbeslissing\neindbespreking\neindbestemming\neindbod\neindcijfer\neindconclusie\neindconsument\neindcontrole\neinddatum\neinddiagnose\neinddiploma\neinddoel\neinde\neindejaar\neindejaarsbonus\neindejaarsgeschenk\neindejaarsperiode\neindejaarspremie\neindejaarsrally\neindejaarsuitkering\neindelijk\neindeloopbaan\neindeloopbaanregeling\neindeloos\neindeloosheid\neinden\neinder\neindevaluatie\neindexamen\neindexamencijfer\neindexamenjaar\neindexamenkandidaat\neindexamenkandidate\neindexamenklachtenlijn\neindexamenklas\neindexamenpakket\neindexamenprogramma\neindexamenproject\neindexamentijd\neindexamenvak\neindfase\neindgebruik\neindgebruiker\neindgesprek\neindgroep\neindhalte\neindheffing\neindig\neindigen\neindigheid\neindiging\neindje\neindjes\neindkapitaal\neindklank\neindklassement\neindklassering\neindkwaliteit\neindletter\neindlijn\neindlijst\neindloon\neindloonregeling\neindloonstelsel\neindloonsysteem\neindmarkering\neindmeet\neindmontage\neindniveau\neindnoot\neindnootnummer\neindnoten\neindnotering\neindonderwijs\neindoordeel\neindoorzaak\neindoplossing\neindoverwinning\neindpaal\neindpresentatie\neindprijs\neindproduct\neindpunt\neindrangschikking\neindrapport\neindrapportage\neindredacteur\neindredactie\neindredactrice\neindregel\neindregie\neindrekening\neindresultaat\neindrijm\neindronde\neindsalaris\neindsaldo\neindschot\neindscore\neindscriptie\neindscène\neindselectie\neindsignaal\neindsituatie\neindsleutel\neindsnelheid\neindspel\neindsprint\neindspurt\neindstadium\neindstand\neindstation\neindstemming\neindsterkte\neindstop\neindstoppen\neindstreep\neindstrijd\neindtekst\neindterm\neindtermen\neindtijd\neindtoernooi\neindtoestand\neindtoets\neindtotaal\neindtune\neinduitkering\neinduitkomst\neinduitslag\neindverantwoordelijk\neindverantwoordelijke\neindverantwoordelijkheid\neindverantwoording\neindverbruiker\neindversie\neindverslag\neindvervaldag\neindverwerking\neindvonnis\neindvoorraad\neindvoorstel\neindwaarde\neindweegs\neindwerk\neindwinnaar\neindzege\neinze\neipoeder\neirond\neis\neischaal\neisen\neisenbundel\neisenpakket\neisenprogramma\neiser\neiseres\neisprong\neistadium\neitje\neivol\neivorm\neivormig\neiwit\neiwitarm\neiwitgehalte\neiwithormoon\neiwithoudend\neiwitmolecule\neiwitrijk\neiwitstof\neiwitsynthese\neiwitten\neiwitwaarde\nejaculaat\nejaculatie\nejaculeren\neken\nekster\neksteroog\nel\nelaboratie\nelan\neland\nelandtest\nelasticiteit\nelasticiteitsgrens\nelasticiteitsleer\nelasticiteitsmodulus\nelastiek\nelastieken\nelastiekje\nelastisch\nelastomeer\nelders\neldorado\nelectie\nelectoraal\nelectoraat\nelefantiasis\nelegant\nelegantie\nelegie\nelegisch\nelektra\nelektricien\nelektriciteit\nelektriciteitsbedrijf\nelektriciteitsbehoefte\nelektriciteitsbeurs\nelektriciteitsbuis\nelektriciteitscentrale\nelektriciteitsconcern\nelektriciteitsconsument\nelektriciteitscrisis\nelektriciteitsdistributie\nelektriciteitsdraad\nelektriciteitsfabriek\nelektriciteitsgebruik\nelektriciteitsinstallatie\nelektriciteitskabel\nelektriciteitskosten\nelektriciteitsleer\nelektriciteitsleiding\nelektriciteitsleverancier\nelektriciteitsmaatschappij\nelektriciteitsmarkt\nelektriciteitsmeter\nelektriciteitsnet\nelektriciteitsnetwerk\nelektriciteitsopwekking\nelektriciteitspanne\nelektriciteitsplan\nelektriciteitsprijs\nelektriciteitsproducent\nelektriciteitsproductie\nelektriciteitsrekening\nelektriciteitssector\nelektriciteitssnoer\nelektriciteitsstoring\nelektriciteitstarief\nelektriciteitsverbruik\nelektriciteitsvoorziening\nelektriciteitswereld\nelektriciteitswerk\nelektriciteitswerken\nelektriciteitswinkel\nelektrificatie\nelektrificeren\nelektrisch\nelektriseermachine\nelektriseren\nelektrisering\nelektro-encefalograaf\nelektro-encefalogram\nelektroanalyse\nelektrocardiografie\nelektrocardiogram\nelektrochemie\nelektrochemisch\nelektroconcern\nelektrocuteren\nelektrocutie\nelektrode\nelektrodynamica\nelektrodynamisch\nelektrofiets\nelektrofoor\nelektrofysiologisch\nelektrolyse\nelektrolyseren\nelektrolyt\nelektrolytenevenwicht\nelektrolytenhuishouding\nelektrolytisch\nelektromagneet\nelektromagnetisch\nelektromagnetisme\nelektromechanica\nelektromechanisch\nelektromobiel\nelektromonteur\nelektromotor\nelektromotorisch\nelektron\nelektronenbuis\nelektronenbundel\nelektronenflitser\nelektronengas\nelektronenkanon\nelektronenmicroscoop\nelektronenstroom\nelektronentemperatuur\nelektronentheorie\nelektronica\nelektronica-industrie\nelektronicabedrijf\nelektronicabeurs\nelektronicabranche\nelektronicabusiness\nelektronicaconcern\nelektronicafabrikant\nelektronicagigant\nelektronicagroep\nelektronicaketen\nelektronicaproducent\nelektronicareus\nelektronicasector\nelektronicawinkel\nelektronicazaak\nelektronicus\nelektronisch\nelektrorail\nelektroscoop\nelektroshock\nelektrostatisch\nelektrostimulatie\nelektrotechnicus\nelektrotechniek\nelektrotechnisch\nelektrotherapie\nelektrozaak\nelektrozwak\nelement\nelementair\nelementgrootte\nelevatie\nelevator\nelf\nelfde\nelfde-eeuws\nelfdelig\nelfduizend\nelfduizendste\nelfenbankje\nelfendans\nelfendertig\nelfendertigst\nelfenkoningin\nelfensprookje\nelfhonderd\nelfjarig\nelfkoppig\nelfmaal\nelfproef\nelft\nelftal\nelftalfoto\nelftalgenoot\nelftalleider\nelfuurtje\nelideren\neliminatie\nelimineren\neliminering\nelisie\nelitair\nelite\nelite-eenheid\nelite-universiteit\nelitecultuur\nelitegroep\nelitekorps\neliteschool\nelitesport\nelitetroepen\nelitevorming\nelixer\nelixir\nelizabethaans\nelk\nelkaar\nelkaars\nelkander\nelke\nelkeen\nellebogenwerk\nelleboog\nelleboogstoot\nellen\nellende\nellendeling\nellendig\nellendige\nellendigheid\nellenlang\nellenmaat\nellens\nellepijp\nellips\nellipsoïde\nellipsvormig\nelliptisch\nelmsvuur\nelocutie\neloquent\neloquentie\nelp\nelpee\nelpen\nelpenbeen\nelpenbenen\nels\nelysisch\nelzen\nelzenbast\nelzenblad\nelzenboom\nelzenbos\nelzenhaag\nelzenhout\nelzenkatje\nelzenlaan\nelzenprop\nelzenstruik\nelzentak\nelzevier\nelzeviers\nemail\nemailleeroven\nemaillen\nemailleren\nemanatie\nemancipatie\nemancipatiebeleid\nemancipatiebeweging\nemancipatiegolf\nemancipatieproces\nemancipatieraad\nemancipatiestrijd\nemancipatiezaken\nemancipatoir\nemancipator\nemancipatorisch\nemanciperen\nemaneren\nemballage\nemballeren\nembargo\nembarkeren\nembedded\nembleem\nemblema\nemblematiek\nemblematisch\nembolie\nembonpoint\nembouchure\nembryo\nembryo-onderzoek\nembryologie\nembryologisch\nembryoloog\nembryonaal\nembryotransplantatie\nembryowet\nemelt\nemendatie\nemenderen\nemerald\nemeritaat\nemeritus\nemeritus-hoogleraar\nemfase\nemfatisch\nemfyseem\nemigrant\nemigrante\nemigrantenfamilie\nemigratie\nemigratiebeleid\nemigratiegolf\nemigratieland\nemigratieregeling\nemigratiestroom\nemigreren\neminent\neminentie\nemir\nemiraat\nemissie\nemissie-eis\nemissiearm\nemissiebank\nemissiebedrijf\nemissiehandel\nemissiekoers\nemissielijnen\nemissienevel\nemissienorm\nemissieprijs\nemissieprospectus\nemissierecht\nemissiereductie\nemissiesyndicaat\nemissietheorie\nemittent\nemitteren\nemmentaler\nemmer\nemmerbaggermolen\nemmeren\nemmes\nemoe\nemolumenten\nemoticon\nemotie\nemotie-tv\nemotiecultuur\nemotieloos\nemotionaliteit\nemotioneel\nemotioneren\nempathie\nempathisch\nempire\nempirestijl\nempiricus\nempirie\nempirisch\nempirisme\nempirist\nempiristisch\nemplacement\nemplooi\nemployability\nemployee\nemployé\nemulatie\nemulgator\nemulgeren\nemulsie\nemulsielaag\nen\nen bloc\nen détail\nen en\nen face\nen masse\nen plein public\nenakskind\nenantiomeer\nenantiomorf\nencadreren\nencanailleren\nencefalitis\nencefalografie\nencefalogram\nencefalopathie\nenclave\nenclise\nenclisis\nenclitisch\nencrypteren\nencryptie\nencycliek\nencyclopedie\nencyclopedisch\nencyclopedist\nencyclopedisten\nend\nende\nendeldarm\nendemie\nendemisch\nendocrien\nendocrinologie\nendocrinoloog\nendogeen\nendoniem\nendoparasiet\nendorfine\nendoscoop\nendoscopie\nendossant\nendossement\nendosseren\nendossering\nendotheelcel\nendotherm\nenduro\nene\nenergeticus\nenergetisch\nenergie\nenergie-efficiency\nenergie-efficiënt\nenergie-efficiëntie\nenergie-inhoud\nenergie-intensief\nenergie-intensiteit\nenergiearm\nenergiebalans\nenergiebedrijf\nenergiebeheer\nenergiebehoefte\nenergiebelasting\nenergiebeleid\nenergiebesparend\nenergiebesparing\nenergiebranche\nenergiebron\nenergiecentrale\nenergieconcern\nenergieconsumptie\nenergiecrisis\nenergiedeskundigen\nenergiedistributeur\nenergiedistributie\nenergiedistributiebedrijf\nenergiedrager\nenergiedrank\nenergiefactuur\nenergiegebied\nenergiegebruik\nenergiegigant\nenergiegroep\nenergieheffing\nenergiehuishouding\nenergiek\nenergiekeling\nenergieknooppunt\nenergiekosten\nenergielabel\nenergieleverancier\nenergielevering\nenergieliberalisering\nenergiemaatschappij\nenergiemarkt\nenergienet\nenergieniveau\nenergienota\nenergieopslag\nenergieopwekking\nenergieoverdracht\nenergiepatroon\nenergieplan\nenergiepolitiek\nenergiepoot\nenergiepremie\nenergieprijs\nenergieprobleem\nenergieproducent\nenergieproductie\nenergieproject\nenergierekening\nenergierendement\nenergiereus\nenergierijk\nenergieschaarste\nenergieschijf\nenergiesector\nenergiestofwisseling\nenergiestoot\nenergiesysteem\nenergietaks\nenergietechniek\nenergietechnologie\nenergietekort\nenergietoeslag\nenergietoevoer\nenergietransport\nenergieveld\nenergieverbruik\nenergieverlies\nenergieverslindend\nenergieverslinder\nenergieverspillend\nenergieverspilling\nenergievoorraad\nenergievoorziening\nenergievraag\nenergiewaarde\nenergiewereld\nenergiewetgeving\nenergiewinning\nenergiezuinig\nenergiezuinigheid\nenerlei\nenerveren\nenerzijds\nenfant terrible\nenfin\neng\nengagement\nengageren\nengel\nengelachtig\nengelbewaarder\nengelen\nengelenbak\nengelendom\nengelengeduld\nengelenhaar\nengelenkoor\nengelenmis\nengelenrei\nengelenschaar\nengelenzang\nengelin\nengelrein\nengeltje\nengeltjesmaakster\nengelwortel\nengerd\nengerling\nenggeestig\nenghartig\nenghartigheid\nengheid\nengineering\nengineeringbedrijf\nengineeringgroep\nengte\nenharmonisch\nenig\nenige\nenigen\nenigerlei\nenigermate\nenigerwijs\nenigerwijze\neniggeboren\nenigheid\nenigma\nenigmatisch\nenigst\nenigszins\nenjambement\nenk\nenkel\nenkelband\nenkelblessure\nenkelbloemig\nenkelbreuk\nenkeldaks\nenkelgewricht\nenkeling\nenkellang\nenkeloperatie\nenkelpartij\nenkelpolig\nenkelpolige\nenkelspel\nenkelspelpartij\nenkelspoor\nenkelsporig\nenkeltariefmeter\nenkeltje\nenkelvoud\nenkelvoudig\nenkelwandig\nenkelzijdig\nenne\nenorm\nenormiteit\nenquête\nenquête-uitslag\nenquêtebureau\nenquêtecommissie\nenquêteformulier\nenquêtejaar\nenquêterapport\nenquêterecht\nenquêteren\nenquêteresultaat\nenquêtering\nenquêteur\nenquêtevraag\nenquêtrice\nensceneren\nenscenering\nensemble\nensemblecultuur\nensembleklank\nensemblespel\nensemblestuk\nensemblewerk\nent\nentadministratie\nentameren\nenten\nentente\nenter\nenterbijl\nenteren\nenterhaak\nentering\nenternet\nenterovirus\nentertainen\nentertainer\nentertainment\nentertainmentbedrijf\nentertainmentconcern\nentertainmentgigant\nentertainmentindustrie\nentertoets\nenthousiasme\nenthousiasmeren\nenthousiast\nenthousiasteling\nenting\nentiteit\nentmes\nentomologie\nentomologisch\nentomoloog\nentourage\nentr'acte\nentraineren\nentre nous\nentre-deux\nentrecote\nentree\nentreebedrag\nentreebewijs\nentreebiljet\nentreedeur\nentreegebouw\nentreegeld\nentreehal\nentreekaart\nentreekosten\nentreepartij\nentreeprijs\nentreeticket\nentrefilet\nentremets\nentrepot\nentrepreneur\nentresol\nentrijs\nentropie\nentstof\nentwas\nenumeratie\nenuntiatief\nenvelop\nenvelopje\nenveloppe\nenvironment\nenz.\nenzoverder\nenzovoort\nenzovoorts\nenzym\nenzymatisch\neoceen\neoliet\neolisch\neolusharp\nepacta\nepacten\nepateren\nepaulet\nepenthesis\nepenthetisch\nepicentrum\nepicurisme\nepicurist\nepicuristisch\nepidemie\nepidemiologie\nepidemiologisch\nepidemioloog\nepidemisch\nepidermis\nepidiascoop\nepiek\nepifyse\nepifyt\nepiglottis\nepigonisme\nepigoon\nepigrafie\nepigram\nepigrammatisch\nepilatie\nepilepsie\nepilepsiebestrijding\nepilepsiepatiënt\nepilepticus\nepileptisch\nepileren\nepiloog\nepisch\nepiscoop\nepiscopaal\nepiscopaat\nepiscopie\nepisiotomie\nepisode\nepisodisch\nepistel\nepistemologen\nepistemologie\nepistemologisch\nepistemoloog\nepitaaf\nepitheel\nepitheton\nepo\nepoche\neponiem\nepopee\nepoque\nepos\nepotest\nepoxyhars\nepoxyverf\nepoxyverven\neppe\nepsilon\nequalizer\nequatie\nequator\nequatoriaal\nequidistant\nequidistante\nequilibrist\nequilibriste\nequinoctiaal\nequinox\nequipage\nequipagemeester\nequipe\nequipement\nequiperen\nequivalent\nequivalentie\ner\ner bij zeggen\nera\neraan\neraan toe\nerachten\nerachter\nerachteraan\neraf\nerasmiaans\nerbarmelijk\nerbarmen\nerbij\nerbij horen\nerbij krijgen\nerbij roepen\nerbinnen\nerboven\nerbovenop\nerbuiten\nerdoor\nerdoorheen\nerdoorheen krijgen\nere\nere-escorte\nereambt\nerebaan\nerebaantje\nerebegraafplaats\nereblijk\nereboog\nereburger\nereburgerschap\nerecode\nerecomité\nereconsul\nerectie\nerectiemiddel\nerectiepil\nerectiestoornis\neredame\neredegen\neredienst\nerediploma\neredivisie\neredivisieclub\neredivisieduels\neredivisieteam\neredivisievoetbal\neredivisionist\neredoctor\neredoctoraat\nerefunctie\neregalerij\neregast\neregaste\neregeld\nerehaag\nerejury\nereklasse\nerekrans\nerekruis\nerekwestie\nerelid\nerelidmaatschap\nerelijst\nerelint\nereloon\neremedaille\neremetaal\neremiet\neremis\neren\nerenaam\nerepalm\nerepenning\nereplaats\nereplak\nereplicht\nerepodium\nerepoort\nerepost\nereprijs\nereronde\neresabel\neresaluut\nereschavot\nereschuld\nereteken\nereterras\neretitel\neretribune\nereveld\nerevoorzitter\nerewacht\nerewijn\nerewoord\nerewraak\nerezaak\nerezuil\nerf\nerfafscheiding\nerfbeplanting\nerfdeel\nerfdienstbaarheid\nerfdochter\nerfelijk\nerfelijkheid\nerfelijkheidsdrager\nerfelijkheidsleer\nerfelijkheidsmateriaal\nerfelijkheidsonderzoek\nerfelijkheidswetten\nerfenis\nerfeniskwestie\nerfenisrecht\nerffactor\nerfgenaam\nerfgename\nerfgerechtigd\nerfgerechtigde\nerfgoed\nerfgrens\nerfgrond\nerfhuis\nerflaatster\nerfland\nerflater\nerflating\nerfleen\nerfoom\nerfopvolger\nerfopvolging\nerfopvolgster\nerfpacht\nerfpachtcanon\nerfpachtcontract\nerfpachter\nerfpachtgrond\nerfpachtherziening\nerfpachtkwestie\nerfpachtovereenkomst\nerfpachtzaak\nerfportie\nerfprins\nerfprinses\nerfrecht\nerfrechtelijk\nerfrente\nerfscheiding\nerfschuld\nerfsmet\nerfstadhouder\nerfstelling\nerfstuk\nerftante\nerfvijand\nerfvijandschap\nerfvorst\nerfvredebreuk\nerfwet\nerfzonde\nerg\nergens\nergens achter komen\nergens heen kijken\nergens over praten\nergens tegenover staan\nergens vanaf willen\nerger\nergeren\nergerlijk\nergerlijkheid\nergernis\nergerniswekkend\nergo\nergometer\nergon\nergonomie\nergonomisch\nergonoom\nergotherapeut\nergotherapie\nergotisme\nergst\nerheen\nerica\nerin\nerkend\nerkennen\nerkenner\nerkenning\nerkenningsbeleid\nerkenningsprocedure\nerkenningsregeling\nerkenningsvoorwaarde\nerkentelijk\nerkentelijkheid\nerkentenis\nerker\nerkerraam\nerlangs\nermede\nermee\nermitage\nerna\nernaar\nernaartoe\nernaast\nernevens\nernst\nernstig\nerodeermachine\neroderen\nerogeen\nerom\neromheen\neronder\neronderdoor\neronderuit\nerop\neropaan\neropaf\neropin\neropna\neropuit\neros\neroscentrum\nerosie\nerosiebestrijding\nerosiegevoelig\nerotica\nerotiek\nerotisch\nerotiseren\nerotogeen\nerotomaan\nerotomanie\nerover\neroverheen\nerrata\nerratalijst\nerratisch\nerratum\nersatz\nersatzkoffie\nertegen\nertegenaan\nertegenin\nertegenop\nertegenover\nertoe\nerts\nertsader\nertsbergen\nertsen\nertsgroeve\nertslaag\nertsmijn\nertstanker\nertussen\nertussendoor\nertussenin\nertussenuit\nerudiet\neruditie\neruit\neruit liggen\neruitzien\neruptie\neruptief\nervaarbaar\nervan\nervandaan\nervandoor\nervaren\nervarenheid\nervaring\nervaringen\nervaringsdeskundige\nervaringsdeskundigheid\nervaringsfeit\nervaringsgegeven\nervaringskennis\nervaringsleer\nervaringsregel\nervaringswereld\nerve\nerven\nerving\nervoer\nervoor\nerwt\nerwten\nerwtenbed\nerwtenkever\nerwtenplant\nerwtenrijs\nerwtensoep\nerytrocyt\nerytropoëtine\nes\nesbattement\nescadrille\nescalatie\nescalatieproces\nescaleren\nescalope\nescamoteren\nescamoteur\nescapade\nescape\nescapisme\nescapist\nescargot\nescargots\neschatologie\neschatologisch\nescort\nescortbranche\nescortbureau\nescorte\nescorteren\nescortgirl\nescortmeisje\nescortservice\nescouade\nescudo\nesculaap\nesdoorn\nesdoren\nesdorp\neskader\neskadron\neskimohond\neskimoteren\nesoterie\nesoterisch\nesoterisme\nesp\nespada\nespadrille\nespagnolet\nespartogras\nespen\nespenblad\nespenboom\nespenhout\nespenhouten\nesperantist\nesplanade\nespresso\nespressobar\nespressokoffie\nespressomachine\nesprit\nessaai\nessay\nessaybundel\nessayeren\nessayeur\nessayist\nessayiste\nessayistiek\nessayistisch\nessayprijs\nessays\nessaywedstrijd\nessen\nessenblad\nessenboom\nessenbos\nessence\nessenen\nessenhout\nessenhouten\nessenlaan\nessentak\nessentialia\nessentialistisch\nessentie\nessentieel\nestablishment\nestafette\nestafetteactie\nestafettedienst\nestafetteloop\nestafetteploeg\nestafettestaking\nestafettestokje\nester\nestheet\nesthetica\nestheticisme\nestheticus\nesthetiek\nesthetisch\nesthetiseren\nesthetisering\nestrade\nestrik\nestuarien\nestuarium\net al.\net alii\net cetera\net-teken\netablissement\netage\netagebed\netages\netagewoning\netagère\netalage\netalagebenen\netalagepop\netalageraam\netalageruit\netalagewedstrijd\netalagist\netaleren\netaleur\netappe\netappegebied\netappekoers\netappeoverwinning\netappeplaats\netappewedstrijd\netappewinnaar\netappewinst\netappezege\netc.\neten\netensbak\netensgeur\netenskast\netenslucht\netensrest\netensresten\netenstijd\netensuur\netenswaar\netentje\neter\neterij\neterniet\neternieten\netgras\netgroen\nethaan\nethanol\netheen\nether\netherfrequentie\nethergolf\netherisch\netherkapje\nethernet\nethernetmodem\netherpiraat\netherreclame\netherruimte\nethervervuiling\nethica\nethicus\nethiek\nethisch\nethologie\nethologisch\netholoog\nethos\nethyl\nethylalcohol\nethyleen\netiket\netiketteerapparatuur\netiketteermachine\netiketteren\netikettering\netiologie\netiquette\netiquetteboek\netmaal\netmaalgemiddelde\netniciteit\netnisch\netnocentrisch\netnocentrisme\netnograaf\netnografica\netnografie\netnografisch\netnologie\netnologisch\netnoloog\netnomusicoloog\nets\netsdruk\netsen\netser\netsgrond\netskunst\netsnaald\netsplaat\netswerk\nette\nettelijk\nettelijke\netter\netterachtig\netterbak\netterbuil\netteren\nettergezwel\netterig\netterzak\netude\netui\netuis\netuitje\netymologicon\netymologie\netymologisch\netymologiseren\netymoloog\neubiotiek\neucalyptus\neucharistie\neucharistieviering\neucharistisch\neuclidisch\neudiometer\neufemisme\neufemistisch\neufonie\neufonisch\neuforie\neuforisch\neugenese\neugenetica\neugenetisch\neukaryoot\neunuch\neuregio\neureka\neuritmie\neuro\neuro-dollarkoers\neuro-obligatie\neuro-obligatiemarkt\neuroambtenaar\neurobedrag\neurobiljet\neurocampagne\neurocent\neurocentrisch\neurocentrisme\neurocheque\neurocommissaris\neurocommunisme\neuroconversie\neurocraat\neurodollar\neurofiel\neurofles\neuroforie\neurofraude\neurogebied\neurogeld\neurokit\neurokoers\neurolening\neuroloodvrij\neuromarkt\neuromisbruik\neuromunt\neuromuntjes\neuropeaniseren\neuropeanisering\neuroprijs\neuroproject\neuroproof\neuroreferendum\neurorente\neuroscepsis\neuroscepticus\neurosceptisch\neuroteken\neurotijdperk\neurotop\neurovignet\neurowisselgeld\neurozone\neustachiusbuis\neuthanaseren\neuthanasie\neuthanasiebeleid\neuthanasiedebat\neuthanasiediscussie\neuthanasiegeval\neuthanasiegevallen\neuthanasiekwestie\neuthanasiepraktijk\neuthanasieregeling\neuthanasievereniging\neuthanasieverklaring\neuthanasieverzoek\neuthanasievoorstel\neuthanasievraag\neuthanasievraagstuk\neuthanasiewens\neuthanasiewet\neuthanasiewetgeving\neuthanasiezaak\neuthanaticum\neutrofie\neutrofiëring\neuvel\neuveldaad\neuvelmoed\neuzie\neva\nevacuatie\nevacuatiebevel\nevacuatiegebied\nevacuatiekosten\nevacuatieplan\nevacueren\nevacué\nevakostuum\nevaluatie\nevaluatiecommissie\nevaluatiecriterium\nevaluatief\nevaluatieformule\nevaluatieformules\nevaluatieformulier\nevaluatiegesprek\nevaluatiemaatstaf\nevaluatiemethode\nevaluatiemoment\nevaluatienota\nevaluatieonderzoek\nevaluatieonderzoeken\nevaluatieprogramma\nevaluatierapport\nevaluatieronde\nevaluatiestructuur\nevaluatiesysteem\nevaluatieverslag\nevaluatieverslagen\nevaluatievorm\nevalueren\nevangeliarium\nevangelie\nevangeliebediening\nevangelieboek\nevangeliedienaar\nevangelieprediker\nevangelietaal\nevangelieverhaal\nevangeliewoord\nevangelisatie\nevangelisatieblad\nevangelisatieouderling\nevangelisatiepredikant\nevangelisatievereniging\nevangelisatiewerk\nevangelisch\nevangeliseren\nevangelist\nevangeliste\nevaporatie\nevaporeren\nevasie\neven\neven groot\neven lang\nevenaar\nevenals\nevenaren\nevenaring\nevenbeeld\neveneens\nevenement\nevenementenbeleid\nevenementenbureau\nevenementencomplex\nevenementenhal\nevenementenkalender\nevenementenlijst\nevenementenplein\nevenemententerrein\nevenementenvuurwerk\nevengoed\nevenhoevig\nevenhoevige\nevenknie\nevenmatig\nevenmens\nevenmin\nevennaaste\nevennachtslijn\nevenredig\nevenredige\nevenredigheid\nevenredigheidsbeginsel\nevenredigheidsconstante\nevenredigheidsregel\neventjes\neventualiteit\neventueel\nevenveel\nevenwaardig\nevenwel\nevenwicht\nevenwichtig\nevenwichtigheid\nevenwichtsbalk\nevenwichtsbemesting\nevenwichtsfunctie\nevenwichtsgevoel\nevenwichtskunst\nevenwichtskunstenaar\nevenwichtsleer\nevenwichtsmodel\nevenwichtsoefening\nevenwichtsorgaan\nevenwichtssituatie\nevenwichtsstoornis\nevenwichtstoestand\nevenwichtszin\nevenwichtszintuig\nevenwijdig\nevenwijdigheid\nevenzeer\nevenzo\nevenzogoed\nevenzoveel\nevenzovelen\never\nevergreen\nevers\neverzwijn\nevident\nevidentie\nevocatie\nevocatief\nevoceren\nevolueren\nevolutie\nevolutiebioloog\nevolutieleer\nevolutieproces\nevolutietheorie\nevolutieverhaal\nevolutionair\nevolutioneel\nevolutionele\nevolutionist\nevolutionistisch\nevoqueren\nevt.\nex\nex aequo\nex cathedra\nex dividend\nex libris\nex tempore\nex tempore's\nex temporeetje\nex voto\nex-Kamerlid\nex-aanvoerder\nex-advocaat\nex-agent\nex-ambassadeur\nex-asielzoeker\nex-baas\nex-bankier\nex-bestuurder\nex-bestuurslid\nex-bevelhebber\nex-bewindsman\nex-bewoner\nex-bondscoach\nex-bondskanselier\nex-burgemeester\nex-cathedraonderwijs\nex-chef\nex-collega\nex-commandant\nex-communist\nex-crimineel\nex-danser\nex-delinquent\nex-dictator\nex-diplomaat\nex-directeur\nex-dochter\nex-doelman\nex-dominee\nex-dwangarbeider\nex-echtgenoot\nex-echtgenote\nex-eigenaar\nex-filmster\nex-fractieleider\nex-gedetineerde\nex-geliefde\nex-generaal\nex-gevangene\nex-gijzelaar\nex-gouverneur\nex-international\nex-journalist\nex-junk\nex-kampioen\nex-kankerpatiënt\nex-kanselier\nex-keeper\nex-keizer\nex-kolonel\nex-kolonisator\nex-koning\nex-korpschef\nex-leerling\nex-legerleider\nex-leider\nex-leraar\nex-lid\nex-man\nex-manager\nex-marinier\nex-medewerker\nex-militair\nex-minister\nex-minnaar\nex-minnares\nex-model\nex-monopolist\nex-nazi\nex-ondernemer\nex-opperbevelhebber\nex-partner\nex-patiënt\nex-patiënte\nex-politicus\nex-politiechef\nex-politieman\nex-premier\nex-president\nex-priester\nex-prof\nex-prostituee\nex-raadslid\nex-rebellenleider\nex-rechercheur\nex-renner\nex-rijkswachter\nex-roker\nex-rokers\nex-schrijver\nex-senator\nex-soldaat\nex-speler\nex-spion\nex-staatshoofd\nex-staatssecretaris\nex-student\nex-terrorist\nex-topman\nex-trainer\nex-verdachte\nex-verdachten\nex-verloofde\nex-verslaafde\nex-vicepremier\nex-vicepresident\nex-voetballer\nex-voorzitter\nex-vriend\nex-vriendin\nex-vrouw\nex-wereldkampioen\nex-werkgever\nex-werknemer\nex-wethouder\nex-wielrenner\nex-winnaar\nexact\nexactheid\nexaltatie\nexalteren\nexamen\nexamencijfer\nexamencommissie\nexamendag\nexamendatum\nexamendocent\nexameneis\nexamengeld\nexameninstituut\nexamenjaar\nexamenkandidaat\nexamenklas\nexamenkoorts\nexamenlokaal\nexamenonderdeel\nexamenopgave\nexamenpakket\nexamenperiode\nexamenprocedure\nexamenprogramma\nexamenreglement\nexamenresultaat\nexamenstof\nexamentijd\nexamenvak\nexamenvoorbereiding\nexamenvraag\nexamenvrees\nexamenwerk\nexamenwerkstuk\nexamenzaal\nexamenzittijd\nexaminanda\nexaminandi\nexaminandus\nexaminator\nexaminatrice\nexamineren\nexaminering\nexantheem\nexcellent\nexcellentie\nexcellenties\nexcelleren\nexcelsior\nexcentriciteit\nexcentriek\nexcentriekeling\nexcentrisch\nexceptie\nexceptionaliteit\nexceptioneel\nexcerperen\nexcerpt\nexces\nexcessief\nexcitatie\nexciteren\nexcl.\nexclamatie\nexclave\nexclusie\nexclusief\nexclusieve\nexclusivisme\nexclusiviteit\nexclusiviteitsbasis\nexclusiviteitscontract\nexcommunicatie\nexcommuniceren\nexcrement\nexcrementen\nexcretie\nexcursie\nexcursionist\nexcusabel\nexcuseren\nexcuus\nexcuusbrief\nexcuuscultuur\nexcuustruus\nexecutant\nexecuteren\nexecuteur\nexecuteur-testamentair\nexecuteurs-testamentair\nexecutie\nexecutief\nexecutiegeschil\nexecutiepeloton\nexecutieplaats\nexecutiesnelheid\nexecutietijd\nexecutieve\nexecutieverkoop\nexecutiewaarde\nexecutoir\nexecutoriaal\nexegeet\nexegese\nexegetisch\nexempel\nexemplaar\nexemplair\nexemplarisch\nexequatur\nexequiën\nexerceren\nexercitie\nexercitieplein\nexercitieveld\nexhaustief\nexhiberen\nexhibitie\nexhibitionisme\nexhibitionist\nexhibitionistisch\nexhibitum\nexil\nexistentialisme\nexistentialist\nexistentialistisch\nexistentie\nexistentieel\nexistentiefilosofie\nexisteren\nexit\nexitgesprek\nexitinterview\nexitpoll\nexitstrategie\nexodus\nexogamie\nexogeen\nexoneratie\nexoneratiebeding\nexoneratieclausule\nexoneratieclausules\nexoniem\nexoniemen\nexoot\nexorbitant\nexorciseren\nexorcisme\nexorcist\nexordium\nexosfeer\nexoterisch\nexotherm\nexotiek\nexotisch\nexotisme\nexpanded\nexpander\nexpanderen\nexpansie\nexpansiebeleid\nexpansiedrang\nexpansiedrift\nexpansief\nexpansiefase\nexpansiemogelijkheid\nexpansieplan\nexpansiepolitiek\nexpansiesteun\nexpansiestuk\nexpansietank\nexpansievat\nexpansionisme\nexpansionistisch\nexpat\nexpatriëren\nexpediteur\nexpeditie\nexpeditiebedrijf\nexpeditiekantoor\nexpeditieknooppunt\nexpeditieleger\nexpeditieleider\nexpeditielid\nexpeditieschip\nexpeditionair\nexpediënt\nexpediëren\nexpensief\nexperiment\nexperimentalist\nexperimentator\nexperimenteel\nexperimenteerdrift\nexperimenteerfase\nexperimenteerlust\nexperimenteerschool\nexperimenteerzucht\nexperimenteren\nexpert\nexpertise\nexpertisebureau\nexpertisecentrum\nexpertiserapport\nexpertsysteem\nexpiratie\nexpiratiedatum\nexpireren\nexpletief\nexplicateur\nexplicatie\nexpliceren\nexpliciet\nexplicite\nexpliciteren\nexplicitering\nexpliqueren\nexploderen\nexploitabel\nexploitant\nexploitatie\nexploitatiebasis\nexploitatiebegroting\nexploitatieberekening\nexploitatiebijdrage\nexploitatiebudget\nexploitatiehandeling\nexploitatiekosten\nexploitatielast\nexploitatiemaatschappij\nexploitatieopzet\nexploitatieovereenkomst\nexploitatierapport\nexploitatierecht\nexploitatierekening\nexploitatieresultaat\nexploitatiesubsidie\nexploitatietekort\nexploitatievergunning\nexploitatieverlies\nexploitatiewinst\nexploiteerbaar\nexploiteren\nexploot\nexploratie\nexploratieactiviteit\nexploratieboring\nexploratief\nexploratiefase\nexploratieve\nexploratievergunning\nexploreren\nexplosie\nexplosief\nexplosiegevaar\nexplosiemotor\nexplosieveilig\nexplosiviteit\nexpo\nexponent\nexponentieel\nexponeren\nexport\nexportaandeel\nexportartikel\nexportbedrijf\nexportbeleid\nexportbepaling\nexportbeperking\nexportbevordering\nexportcentrum\nexportcijfer\nexporteerbaar\nexporteren\nexporteur\nexportfinanciering\nexportfirma\nexportgericht\nexportgroei\nexportgroep\nexporthandel\nexporthuis\nexporthuizen\nexportindustrie\nexportkantoor\nexportkrediet\nexportkredietverzekering\nexportkwaliteit\nexportland\nexportmanager\nexportmarkt\nexportnota\nexportonderneming\nexportopbrengst\nexportorder\nexportoverschot\nexportpakket\nexportpositie\nexportpremie\nexportprijs\nexportproduct\nexportpromotie\nexportquota\nexportsector\nexportslachterij\nexportsteun\nexportstop\nexportstrategie\nexportsubsidie\nexportsucces\nexportverbod\nexportvergunning\nexportverpakking\nexportvolume\nexportwaarde\nexportzaak\nexposant\nexposeren\nexpositie\nexpositiebeleid\nexpositieruimte\nexpositiezaal\nexposé\nexpres\nexpresbrief\nexpresgoed\nexpresgoederen\nexpresse\nexpressie\nexpressief\nexpressiemogelijkheid\nexpressievak\nexpressievorm\nexpressionisme\nexpressionist\nexpressionistisch\nexpressiviteit\nexprestrein\nexpresweg\nexquis\nextase\nextatisch\nextended\nextensie\nextensief\nextensiveren\nextensivering\nexterieur\nextern\nexternaat\nexternaliseren\nexterne\nexterritoriaal\nexterritorialiteit\nextinctie\nextirpateur\nextirpatie\nextirpator\nextirperen\nextra\nextrablad\nextracellulair\nextracorrectie\nextract\nextractie\nextraheren\nextralegaal\nextramuraal\nextranet\nextraneus\nextraordinair\nextraparlementair\nextrapolatie\nextrapoleren\nextrapositie\nextrasystole\nextraterritoriaal\nextravagant\nextravagantie\nextravert\nextreem\nextreemlinks\nextreemrechts\nextrema\nextremisme\nextremist\nextremiste\nextremistisch\nextremiteit\nextrinsiek\nextrovert\nextrusie\nextrême\nexuberant\nexuberantie\neyeliner\neyeopener\nezel\nezelachtig\nezelachtigheid\nezelarij\nezeldrijver\nezelen\nezelin\nezelinnenmelk\nezelkar\nezelsbank\nezelsbord\nezelsbrug\nezelshoofd\nezelskar\nezelskop\nezelsoor\nezelsrug\nezelsvel\nezelsveulen\nezelswagen\nezelwagen\nf\nf-sleutel\nfa\nfa.\nfaal\nfaalangst\nfaalkans\nfaalkansen\nfaam\nfaas\nfabel\nfabelachtig\nfabeldichter\nfabeldier\nfabelen\nfabelleer\nfabeltje\nfabricaat\nfabricage\nfabricagemethode\nfabricageproces\nfabricatie\nfabriceren\nfabricering\nfabriek\nfabrieken\nfabrieksaardappel\nfabrieksarbeid\nfabrieksarbeider\nfabrieksarbeidster\nfabriekscertificaat\nfabriekscomplex\nfabrieksdirecteur\nfabrieksfout\nfabrieksgarantie\nfabrieksgebouw\nfabrieksgeheim\nfabrieksgoed\nfabrieksgoederen\nfabriekshal\nfabrieksijs\nfabriekskantine\nfabrieksloods\nfabrieksmatig\nfabrieksmeisje\nfabrieksmerk\nfabrieksnijverheid\nfabrieksopgave\nfabriekspand\nfabriekspersoneel\nfabriekspoort\nfabrieksprijs\nfabrieksreglement\nfabrieksrijder\nfabrieksruimte\nfabrieksschoorsteen\nfabrieksschouw\nfabriekssirene\nfabriekssluiting\nfabrieksstad\nfabrieksterrein\nfabrieksvolk\nfabriekswaar\nfabriekswege\nfabriekswerk\nfabriekswet\nfabrikant\nfabrikeren\nfabuleren\nfabuleus\nface-off\nface-à-main\nfacelift\nfaceliften\nfacet\nfacetbeleid\nfacetoog\nfacie\nfaciel\nfaciele\nfacilitair\nfacilitator\nfaciliteit\nfaciliteiten\nfaciliteitengemeente\nfaciliteitenregeling\nfaciliteren\nfaciliterend\nfacit\nfaciës\nfacsimile\nfacsimile-uitgave\nfacta\nfacteur\nfactie\nfactieleider\nfactitief\nfactoor\nfactor\nfactoranalyse\nfactorij\nfactotum\nfactum\nfacturatie\nfactureermachine\nfactureren\nfacturering\nfactureringsvoorstel\nfactureringsvoorstellen\nfacturist\nfacturiste\nfactuur\nfactuuradres\nfactuurbedrag\nfactuurbestand\nfactuurboek\nfactuurdatum\nfactuurformulier\nfactuurkorting\nfactuurnummer\nfactuurplicht\nfactuurprijs\nfactuurprijzen\nfactuurtekst\nfactuurwaarde\nfacultair\nfacultatief\nfaculteit\nfaculteitsbestuur\nfaculteitsbestuurder\nfaculteitsgebouw\nfaculteitskleur\nfaculteitskring\nfaculteitsraad\nfaculteitssecretariaat\nfaculteitsvereniging\nfaculteitsvergadering\nfade\nfade-out\nfading\nfado\nfadozangeres\nfagocyt\nfagocytose\nfagot\nfagottist\nfaience\nfailleren\nfailliet\nfaillietverklaring\nfaillissement\nfaillissementsaanvraag\nfaillissementsaanvrage\nfaillissementsbeslag\nfaillissementscurator\nfaillissementsfraude\nfaillissementsmisdrijf\nfaillissementsmisdrijven\nfaillissementsprocedure\nfaillissementsrecht\nfaillissementsrechtbank\nfaillissementsrechter\nfaillissementsverkoop\nfaillissementswet\nfaillissementswetgeving\nfair\nfair play\nfaire\nfairway\nfait accompli\nfake\nfaken\nfakir\nfakkel\nfakkeldans\nfakkeldraagster\nfakkeldrager\nfakkellicht\nfakkeloptocht\nfakkeltocht\nfalafel\nfalangist\nfalanx\nfalbala\nfalderappes\nfalen\nfalie\nfaliekant\nfaling\nfall-out\nfallisch\nfallocratie\nfallus\nfallussymbool\nfalsaris\nfalset\nfalsetstem\nfalsificatie\nfalsificeren\nfalsifieerbaar\nfalsifiëren\nfalsifiëring\nfam.\nfameus\nfamiliaal\nfamiliaar\nfamiliair\nfamiliale\nfamiliariseren\nfamiliariteit\nfamilie\nfamilie-eer\nfamilie-epos\nfamilie-uitje\nfamilieaangelegenheid\nfamiliealbum\nfamiliearchief\nfamilieband\nfamiliebedrijf\nfamilieberaad\nfamiliebericht\nfamilieberichten\nfamiliebescheiden\nfamiliebetrekking\nfamiliebezit\nfamiliebezoek\nfamiliebijeenkomst\nfamilieblad\nfamilieboekje\nfamilieboerderij\nfamilieboom\nfamiliecamping\nfamilieclan\nfamiliecommissie\nfamilieconflict\nfamiliedag\nfamiliedrama\nfamiliefeest\nfamiliefilm\nfamiliefortuin\nfamiliefoto\nfamiliegebeuren\nfamiliegeheim\nfamiliegelijkenis\nfamiliegeschiedenis\nfamiliegevoel\nfamiliegoed\nfamiliegoederen\nfamiliegraf\nfamiliegroep\nfamiliehereniging\nfamiliehoofd\nfamiliehuis\nfamiliehulp\nfamiliekapitaal\nfamiliekasteel\nfamiliekomedie\nfamiliekring\nfamiliekroniek\nfamiliekwaal\nfamilieleven\nfamilielid\nfamilielijn\nfamilieman\nfamiliemusical\nfamilienaam\nfamilieonderneming\nfamiliepark\nfamiliepension\nfamilieportret\nfamiliepraktijk\nfamilieraad\nfamilierecht\nfamilierechtelijk\nfamilierechter\nfamilieregering\nfamilierelatie\nfamilierestaurant\nfamiliereünie\nfamilieroman\nfamilieruzie\nfamiliesaga\nfamiliesage\nfamiliesfeer\nfamiliespel\nfamiliesport\nfamiliestichting\nfamiliestructuur\nfamiliestuk\nfamilietak\nfamilietherapeute\nfamilietraditie\nfamilietragedie\nfamilietrek\nfamilietwist\nfamilieverband\nfamilievereniging\nfamilieverhaal\nfamilieverhalen\nfamilieverhouding\nfamilievermogen\nfamilievete\nfamilievriend\nfamiliewagen\nfamiliewapen\nfamiliezaak\nfamiliezender\nfamilieziek\nfamiliezilver\nfamiliezin\nfamiliezwak\nfan\nfanaal\nfanaat\nfanatica\nfanatici\nfanaticus\nfanatiek\nfanatiekeling\nfanatieker\nfanatisch\nfanatisme\nfanclub\nfanclubdag\nfancy fair\nfancyartikel\nfandango\nfanfare\nfanfarekorps\nfanfaremuziek\nfanmail\nfansite\nfantaseren\nfantasia\nfantasie\nfantasieartikel\nfantasiedier\nfantasiefiguur\nfantasiehoed\nfantasiekostuum\nfantasieloos\nfantasienaam\nfantasiepak\nfantasierijk\nfantasievol\nfantasiewereld\nfantasmagorie\nfantasme\nfantast\nfantaste\nfantastisch\nfantasy\nfantasyboek\nfantasyfilm\nfantoom\nfantoompijn\nfarad\nfarao\nfaraonisch\nfarce\nfarceren\nfarceur\nfarde\nfarizees\nfarizeeën\nfarizeeër\nfarizese\nfarizeïsch\nfarizeïsme\nfarm\nfarma-afdeling\nfarmabedrijf\nfarmaceut\nfarmaceutica\nfarmaceutisch\nfarmacie\nfarmaciebedrijf\nfarmacieconcern\nfarmaciedivisie\nfarmaciegigant\nfarmaciereus\nfarmaciesector\nfarmacologie\nfarmacologisch\nfarmacoloog\nfarmaconcern\nfarmacopee\nfarmacotherapeutisch\nfarmacotherapie\nfarmadivisie\nfarmagroep\nfarmareus\nfarmasector\nfarmatak\nfarmer\nfaro\nfaryngaal\nfascinatie\nfascine\nfascineren\nfascinerend\nfascisme\nfascist\nfascistenleider\nfascistisch\nfascistoïde\nfase\nfasedraad\nfasegewijs\nfasehoek\nfasen\nfaseniveau\nfasenummer\nfaseren\nfasering\nfases\nfasespanning\nfaseverandering\nfaseverschil\nfaseverschuiving\nfasevolgorde\nfasseel\nfastback\nfastfood\nfastfoodketen\nfastfoodrestaurant\nfat\nfata\nfata morgana\nfataal\nfatale\nfatalisme\nfatalist\nfatalistisch\nfataliteit\nfats\nfatsen\nfatsoen\nfatsoeneerder\nfatsoeneren\nfatsoenering\nfatsoenlijk\nfatsoenlijkheid\nfatsoenshalve\nfatsoensnorm\nfatsoensrakker\nfatsoensrakkerij\nfatterig\nfatterigheid\nfatum\nfatwa\nfaun\nfauna\nfaunabeheer\nfaunabeheerder\nfaunavervalsing\nfaunawet\nfaustiaans\nfauteuil\nfauvisme\nfauvist\nfauvistisch\nfaux pas\nfavela\nfaveur\nfaveurtje\nfavorabel\nfavoriet\nfavoriete\nfavorietenrol\nfavoriseren\nfavoritisme\nfax\nfaxapparaat\nfaxapparatuur\nfaxbericht\nfaxen\nfaxkosten\nfaxmodem\nfaxnummer\nfaxpost\nfaxsoftware\nfaxtoestel\nfaxverkeer\nfazant\nfazantenei\nfazantenhaan\nfazantenhen\nfazantenhok\nfazantenjacht\nfazantennest\nfazantenveer\nfaçade\nfaëton\nfeature\nfebruari\nfebruarimaand\nfebruarinummer\nfecaal\nfecaliën\nfeces\nfederaal\nfederaliseren\nfederalisering\nfederalisme\nfederalist\nfederalistisch\nfederatie\nfederatiebestuur\nfederatief\nfederatieraad\nfederatiereglement\nfederatietaken\nfederatieverdrag\nfederatievergadering\nfederatievoorzitter\nfedereren\nfee\nfeedback\nfeeks\nfeelgoodfactor\nfeelgoodfilm\nfeest\nfeestartikel\nfeestartikelen\nfeestartikelenwinkel\nfeestartikelenzaak\nfeestavond\nfeestband\nfeestbanket\nfeestbundel\nfeestcomité\nfeestcommissie\nfeestdag\nfeestdiner\nfeestdis\nfeestdos\nfeestdronk\nfeestelijk\nfeestelijkheid\nfeesteling\nfeestelinge\nfeesten\nfeestganger\nfeestgebouw\nfeestgedruis\nfeestgenoot\nfeestgeschenk\nfeestgevoel\nfeestgewaad\nfeestgewoel\nfeestjaar\nfeestjurk\nfeestkleding\nfeestlied\nfeestmaal\nfeestmaaltijd\nfeestmaand\nfeestmars\nfeestmenu\nfeestmiddag\nfeestmuziek\nfeestneus\nfeestnummer\nfeestperiode\nfeestprogramma\nfeestrede\nfeestredenaar\nfeestroes\nfeestsfeer\nfeeststemming\nfeesttafel\nfeesttent\nfeestterrein\nfeestvarken\nfeestvergadering\nfeestverlichting\nfeestvierder\nfeestvieren\nfeestviering\nfeestvierster\nfeestvreugde\nfeestweek\nfeestweekeinde\nfeestweekend\nfeestwinkel\nfeestzaal\nfeeënhanden\nfeeënkoningin\nfeeënland\nfeeërie\nfeeëriek\nfeil\nfeilbaar\nfeilbaarheid\nfeilen\nfeilloos\nfeilloosheid\nfeit\nfeitelijk\nfeitelijkheid\nfeitencomplex\nfeitenkennis\nfeitenmateriaal\nfeitenonderzoek\nfeitenoverzicht\nfeitenrelaas\nfel\nfelbegeerd\nfelbetwist\nfelbevochten\nfelblauw\nfelgeel\nfelgekleurd\nfelheid\nfelicitatie\nfelicitatiebrief\nfelicitatiedienst\nfelicitatieregister\nfelicitatietelegram\nfeliciteren\nfellah\nfellatie\nfellatio\nfellow\nfelomstreden\nfelonie\nfeloranje\nfelrood\nfelroze\nfels\nfelsen\nfelverlicht\nfemel\nfemelaar\nfemelarij\nfemelen\nfeminien\nfeminisatie\nfeminisering\nfeminisme\nfeminist\nfeministe\nfeministisch\nfemme fatale\nfenegriek\nfeng shui\nfeniks\nfennek\nfenol\nfenomeen\nfenomenaal\nfenomenologie\nfenomenologisch\nfenomenoloog\nfenotype\nfenylalcohol\nfeodaal\nfeodalisme\nfeodaliteit\nfep\nferlet\nferm\nfermate\nferment\nfermentatie\nfermentatieproces\nfermenteerschuur\nfermenteren\nfermeteit\nfermette\nfermheid\nfermiteit\nfermoor\nferomoon\nferriet\nferrietantenne\nferromagnetisch\nferrometaal\nferrometalen\nferroresonantie\nferry\nferryboot\nfertiel\nfertilisatie\nfertiliteit\nfervent\nfes\nfestijn\nfestival\nfestivalcentrum\nfestivalcircuit\nfestivaldag\nfestivaldirecteur\nfestivaldirectie\nfestivalganger\nfestivalkrant\nfestivallocatie\nfestivalorganisatie\nfestivalorganisator\nfestivalprogramma\nfestivalpubliek\nfestivalseizoen\nfestivalstad\nfestivalterrein\nfestivalweek\nfestivalweide\nfestiviteit\nfestoen\nfeston\nfestonneren\nfeta\nfetakaas\nfetisj\nfetisjisme\nfetisjist\nfetisjistisch\nfetisjkarakter\nfeudaal\nfeudalisme\nfeudaliteit\nfeuilleton\nfeuilletonist\nfeuilletonschrijver\nfeuilletonvorm\nfeut\nfez\nfezelen\nfiasco\nfiat\nfiatteren\nfiattering\nfiatteur\nfiber\nfiberglas\nfibreus\nfibril\nfibrillatie\nfibrilleren\nfibrine\nfibromyalgie\nfibroom\nfibrose\nfibula\nfiche\nfichedoos\nfichier\nfichu\nfictie\nfictief\nfictiefilm\nfiction\nfictionaliseren\nfictionaliteit\nfictioneel\nficus\nfideel\nfideï-commis\nfidibus\nfiduciair\nfiduciaire\nfiducie\nfiedel\nfiedelen\nfielden\nfielder\nfieldwork\nfielt\nfieltenstreek\nfielterij\nfieltig\nfier\nfierheid\nfierljeppen\nfiertel\nfieteldans\nfiets\nfietsaccessoires\nfietsafstand\nfietsaftrek\nfietsband\nfietsbel\nfietsbeleid\nfietsblok\nfietsbroek\nfietsbrug\nfietsclub\nfietsdag\nfietsdiefstal\nfietsen\nfietsendief\nfietsendiefstal\nfietsenfabriek\nfietsenfabrikant\nfietsenhok\nfietsenkelder\nfietsenmaakster\nfietsenmaker\nfietsenplan\nfietsenrek\nfietsenstalling\nfietsenwinkel\nfietsenzaak\nfietser\nfietsergometer\nfietsersbond\nfietsersbrug\nfietsfabriek\nfietsframe\nfietsgebied\nfietsgebieden\nfietsgebruik\nfietshelm\nfietsindustrie\nfietsjongen\nfietskaart\nfietskaarten\nfietskar\nfietsketting\nfietsklem\nfietskoerier\nfietsland\nfietslengte\nfietslicht\nfietsnetwerk\nfietsonderdelen\nfietsongeval\nfietspad\nfietspadennet\nfietsparcours\nfietspet\nfietsplaat\nfietsplan\nfietsplezier\nfietspomp\nfietsprovincie\nfietsreflector\nfietsreis\nfietsrek\nfietsroute\nfietsroutenetwerk\nfietssleutel\nfietsslot\nfietssnelweg\nfietsster\nfietsstrook\nfietsstuur\nfietstas\nfietstaxi\nfietstest\nfietstocht\nfietstoerist\nfietstunnel\nfietsvakantie\nfietsverbinding\nfietsverhuur\nfietsverkeer\nfietsverlichting\nfietsweek\nfietswiel\nfietszadel\nfietszoektocht\nfifties\nfiftyfifty\nfig.\nfigaro\nfiggelen\nfightingspirit\nfigurant\nfigurante\nfigurantenrol\nfiguratie\nfiguratief\nfigureren\nfigurisme\nfiguur\nfiguurlijk\nfiguurnaad\nfiguurraadsel\nfiguurrijden\nfiguurstudie\nfiguurstuk\nfiguurtje\nfiguurzaag\nfiguurzagen\nfiguurzwemmen\nfijfel\nfijfelen\nfijn\nfijnaard\nfijnbankwerker\nfijnbesnaard\nfijnbesneden\nfijnbladig\nfijnbladige\nfijnchemie\nfijne\nfijngebouwd\nfijngevoelig\nfijngevoeligheid\nfijngoed\nfijnhakken\nfijnheid\nfijnigheid\nfijnkauwen\nfijnknijpen\nfijnkorrelig\nfijnkost\nfijnmaken\nfijnmalen\nfijnmazig\nfijnmazigheid\nfijnolie\nfijnproefster\nfijnproever\nfijnschilder\nfijnschrijver\nfijnsnijden\nfijnspar\nfijnstampen\nfijnte\nfijntjes\nfijnwasmiddel\nfijnwrijven\nfijnzinnig\nfik\nfikfakken\nfikfakkerij\nfikken\nfikkie\nfiks\nfiksen\nfiksheid\nfilament\nfilantroop\nfilantropie\nfilantropisch\nfilariasis\nfilatelie\nfilatelist\nfilatelistisch\nfile\nfilebestrijding\nfileerder\nfileermes\nfileerster\nfilekaart\nfileleed\nfilemelding\nfilenaam\nfileparkeren\nfileplan\nfileprobleem\nfileproblematiek\nfileren\nfilerijden\nfilerijder\nfilespecificatie\nfilesysteem\nfilet\nfilet americain\nfileverkeer\nfilevorming\nfilevrij\nfilharmonisch\nfiliaal\nfiliaalbedrijf\nfiliaalchef\nfiliaalcheffin\nfiliaalhouder\nfiliaalhoudster\nfiliaalleider\nfiliaalmanager\nfilialisering\nfiliatie\nfilibuster\nfiligraan\nfiligram\nfiligrein\nfilippica\nfilippine\nfilister\nfilisterij\nfilistijnen\nfilm\nfilmaanbod\nfilmacademie\nfilmacteur\nfilmactrice\nfilmapparatuur\nfilmarchief\nfilmartiest\nfilmartieste\nfilmavontuur\nfilmbedrijf\nfilmbeeld\nfilmbeleid\nfilmbewerking\nfilmbezoek\nfilmbiografie\nfilmblad\nfilmblik\nfilmbranche\nfilmbreedte\nfilmbusiness\nfilmcamera\nfilmcarrière\nfilmcensuur\nfilmcomponist\nfilmcontract\nfilmcrew\nfilmcriticus\nfilmcultuur\nfilmdagen\nfilmdebuut\nfilmdecor\nfilmdistributeur\nfilmdistributie\nfilmdiva\nfilmdivisie\nfilmdocumentaire\nfilmdoek\nfilmdrama\nfilmdruk\nfilmeditie\nfilmen\nfilmepos\nfilmer\nfilmervaring\nfilmevenement\nfilmfabriek\nfilmfan\nfilmfeest\nfilmfestival\nfilmfinanciering\nfilmfonds\nfilmfragment\nfilmfreak\nfilmgebied\nfilmgenre\nfilmgeschiedenis\nfilmheld\nfilmhistoricus\nfilmhistorisch\nfilmhit\nfilmhuis\nfilmindustrie\nfilminstituut\nfilmisch\nfilmjaar\nfilmjargon\nfilmjournaal\nfilmjournalist\nfilmkeuring\nfilmkijker\nfilmklassieker\nfilmklimaat\nfilmkomiek\nfilmkopie\nfilmkritiek\nfilmkunst\nfilmkunstenaar\nfilmland\nfilmlegende\nfilmliefhebber\nfilmliga\nfilmlocatie\nfilmmaakster\nfilmmaatschappij\nfilmmagazine\nfilmmaken\nfilmmaker\nfilmmarkt\nfilmmateriaal\nfilmmuseum\nfilmmuziek\nfilmografie\nfilmonderscheiding\nfilmoperateur\nfilmoperatrice\nfilmopname\nfilmpers\nfilmpersonage\nfilmpionier\nfilmpje\nfilmplan\nfilmploeg\nfilmportret\nfilmpremière\nfilmprijs\nfilmproducent\nfilmproducer\nfilmproductie\nfilmproductiebedrijf\nfilmprogramma\nfilmproject\nfilmprojectie\nfilmprojector\nfilmpubliek\nfilmrecensent\nfilmrechten\nfilmredacteur\nfilmregisseur\nfilmregisseuse\nfilmreportage\nfilmrol\nfilmrolletje\nfilmrubriek\nfilmscenario\nfilmschool\nfilmscript\nfilmscène\nfilmsector\nfilmserie\nfilmset\nfilmshot\nfilmstad\nfilmstem\nfilmster\nfilmstijl\nfilmstrook\nfilmstudio\nfilmsucces\nfilmtaal\nfilmtalent\nfilmtechniek\nfilmtheater\nfilmtijdschrift\nfilmtitel\nfilmtoestel\nfilmtrommel\nfilmverhaal\nfilmversie\nfilmvertoning\nfilmvoorstelling\nfilmweek\nfilmwereld\nfilmwerk\nfilmzaal\nfilmzon\nfilodeeg\nfilologie\nfilologisch\nfiloloog\nfilosofe\nfilosofen\nfilosoferen\nfilosofie\nfilosofiestudent\nfilosofiestudie\nfilosofisch\nfilosoof\nfilter\nfilterdoek\nfiltereigenschap\nfilteren\nfiltergaas\nfiltering\nfilterinstallatie\nfilterinstelling\nfilterkoffie\nfilterpot\nfilterprogramma's\nfiltersigaret\nfiltersoftware\nfiltersysteem\nfilterzakje\nfiltraat\nfiltratie\nfiltreerdoek\nfiltreerpapier\nfiltreertoestel\nfiltreren\nfin de siècle\nfinaal\nfinale\nfinaledag\nfinalematch\nfinalepartij\nfinaleplaats\nfinalepoule\nfinaleronde\nfinalewedstrijd\nfinaliseren\nfinalist\nfinaliste\nfinaliteit\nfinancieel\nfinancieel directeur\nfinancieel-administratief\nfinancieel-economisch\nfinancieel-monetair\nfinancieel-technisch\nfinancier\nfinancierbaar\nfinancierbaarheid\nfinancierder\nfinancieren\nfinanciering\nfinancieringsarrangement\nfinancieringsbank\nfinancieringsbedrijf\nfinancieringsbehoefte\nfinancieringsbron\nfinancieringsconstructie\nfinancieringsfonds\nfinancieringsinstelling\nfinancieringsinstrument\nfinancieringskosten\nfinancieringskrediet\nfinancieringslast\nfinancieringsmaatschappij\nfinancieringsmethode\nfinancieringsmodel\nfinancieringsovereenkomst\nfinancieringsoverschot\nfinancieringspercentage\nfinancieringsplan\nfinancieringsprobleem\nfinancieringsprogramma\nfinancieringsregeling\nfinancieringsrente\nfinancieringsronde\nfinancieringssaldo\nfinancieringsstelsel\nfinancieringsstructuur\nfinancieringssysteem\nfinancieringstekort\nfinancieringsvorm\nfinancieringsvormen\nfinancieringswet\nfinancieringswijze\nfinancies\nfinanciewezen\nfinanciële\nfinanciëledienstengroep\nfinanciën\nfinasteride\nfine\nfineer\nfineerblad\nfineerhout\nfineerplaat\nfineerzaag\nfineliner\nfineren\nfinesse\nfinetunen\nfinetuning\nfingeren\nfingerspitzengefühl\nfinish\nfinishdoek\nfinishen\nfinishfoto\nfinishlijn\nfinishplaats\nfinoegristiek\nfint\nfiool\nfirewall\nfirma\nfirmament\nfirmanaam\nfirmant\nfirmante\nfirmawagen\nfirmware\nfirn\nfirst lady\nfirst out\nfis\nfiscaal\nfiscaal jurist\nfiscaal-economisch\nfiscaaltechnisch\nfiscaalvriendelijk\nfiscaliseren\nfiscalisering\nfiscalist\nfiscaliteit\nfiscus\nfistel\nfistelvorming\nfistfucken\nfit\nfit-o-meter\nfitheid\nfitis\nfitness\nfitnessapparatuur\nfitnesscentrum\nfitnessclub\nfitnessen\nfitnessprogramma\nfitnessrage\nfitnessruimte\nfitnesstraining\nfitnesszaal\nfits\nfitten\nfitter\nfitting\nfixatie\nfixatief\nfixeer\nfixeerbad\nfixeermiddel\nfixeermiddelen\nfixeerzout\nfixeren\nfiësta\nfjord\nfjordenkust\nfjordenpaard\nflab\nflabben\nflabberen\nflacon\nfladderak\nfladderen\nflagellant\nflagellantisme\nflageolet\nflageolettoon\nflagrant\nflagstone\nflair\nflakkeren\nflambard\nflambeeuw\nflamberen\nflambouw\nflamboyant\nflamenco\nflamencodans\nflamencodanser\nflamencogitaar\nflamencogitarist\nflamencojurk\nflamencozanger\nflamingant\nflamingantisme\nflamingo\nflamoes\nflandrien\nflaneerboulevard\nflanel\nflanelbord\nflanellen\nflanelletje\nflanelsteek\nflaneren\nflaneur\nflank\nflankaanval\nflanken\nflankeren\nflankerend\nflankering\nflankeur\nflankspeler\nflankvuur\nflansen\nflap\nflap-over\nflapdrol\nflaphoed\nflapkan\nflapoor\nflappen\nflappentap\nflapper\nflapperen\nflaptekst\nflapuit\nflard\nflash\nflashback\nflashbericht\nflashlight\nflashy\nflat\nflatbedscanner\nflatbewoner\nflatcomplex\nflater\nflatgebouw\nflatneurose\nflatscreen\nflatteren\nflatteus\nflatulentie\nflatus\nflatwoning\nflauw\nflauwekul\nflauwerd\nflauwerik\nflauwhartig\nflauwhartigheid\nflauwheid\nflauwigheid\nflauwiteit\nflauwte\nflauwtjes\nflauwvallen\nflecteren\nfleece\nfleemkous\nfleemtaal\nfleemtong\nfleer\nfleetmarkt\nfleetowner\nflegma\nflegmaticus\nflegmatiek\nflegmatisch\nflemen\nflemer\nflemerig\nflemerij\nflens\nflensen\nflensje\nflensstuk\nflensverbinding\nflenter\nflenzen\nflerecijn\nfleren\nfles\nflesjeswaterpas\nflesopener\nflessen\nflessenactie\nflessenblazer\nflessendrager\nflessenglas\nflessengroen\nflessenhals\nflessenkind\nflessenmaker\nflessenmand\nflessenmelk\nflessenopener\nflessenpost\nflessenrek\nflessenspoelmachine\nflessentrekker\nflessentrekkerij\nflessenwarmer\nflessenwater\nflesvoeding\nflets\nfletsheid\nfleur\nfleuren\nfleurig\nfleurigheid\nfleuris\nflexibel\nflexibiliseren\nflexibilisering\nflexibiliteit\nflexie\nflexiemorfeem\nflexievorm\nflexikoker\nflexwerk\nflexwerken\nflexwerker\nflexwet\nflierefluiten\nflierefluiter\nflik\nflikflak\nflikflooien\nflikflooier\nflikflooierij\nflikje\nflikken\nflikker\nflikkeren\nflikkerglans\nflikkerij\nflikkering\nflikkerlicht\nflikkers\nflink\nflinkerd\nflinkheid\nflinter\nflinterdun\nflintglas\nflip\nflip-over\nflippen\nflipper\nflipperautomaat\nflipperen\nflipperkast\nflirt\nflirten\nflirterig\nflirterige\nflits\nflitsapparaat\nflitsbereik\nflitsblokje\nflitsen\nflitser\nflitsfotografie\nflitskapitaal\nflitslamp\nflitslicht\nflitspaal\nflitspuit\nflitsscheiding\nflitstijd\nflitstoestel\nflitstrein\nflitten\nflobert\nflodder\nflodderaar\nflodderbroek\nflodderen\nflodderig\nflodderjurk\nfloddermadam\nfloddermuts\nflodderwerk\nfloep\nfloepen\nfloer\nfloeren\nfloers\nfloersen\nflonkeren\nflonkering\nflonkerlicht\nfloodlight\nfloormanager\nfloorshow\nfloot\nflop\nfloppen\nfloppy\nfloppydisk\nfloppydrive\nflor\nflora\nfloraal\nfloreren\nfloret\nfloretten\nfloretzij\nfloretzijde\nflorijn\nflorissant\nflorist\nfloristisch\nflos\nfloss\nflossen\nfloszijde\nflotatie\nfloten\nflottielje\nflottieljevaartuig\nflow\nflowchart\nflowerpower\nflowerpowertijd\nflox\nfluctuatie\nfluctuatiemarge\nfluctueren\nfluim\nfluimen\nfluisteraar\nfluisteraarster\nfluistercampagne\nfluisteren\nfluistergesprek\nfluistering\nfluisterstem\nfluisterstil\nfluistertoon\nfluisterzacht\nfluit\nfluitconcert\nfluiteend\nfluiten\nfluitenkruid\nfluitenmaker\nfluiter\nfluitglas\nfluitist\nfluitiste\nfluitje\nfluitjesbier\nfluitjesmelk\nfluitketel\nfluitmuziek\nfluitpartij\nfluitregister\nfluitschip\nfluitsignaal\nfluitspeelster\nfluitspel\nfluitspeler\nfluittoon\nfluks\nfluor\nfluorbehandeling\nfluorescent\nfluorescentie\nfluoresceren\nfluorhoudend\nfluoride\nfluorideren\nfluoridering\nfluortablet\nfluorwaterstof\nfluoxetine\nflus\nflusjes\nflut\nflutartikel\nflutprogramma\nfluviatiel\nfluweel\nfluweelachtig\nfluweeltje\nfluweelweverij\nfluweelzacht\nfluweelzwart\nfluwelen\nfluwelig\nfluwijn\nflux\nfluïde\nfluïdum\nfly-over\nflyer\nflyeren\nflûte\nfnuiken\nfnuikend\nfobie\nfobisch\nfocaccia\nfocus\nfocussen\nfocusseren\nfoedraal\nfoef\nfoefelen\nfoefen\nfoefje\nfoei\nfoeilelijk\nfoekepot\nfoelie\nfoerage\nfoerageergebied\nfoerageren\nfoeragering\nfoerier\nfoert\nfoetaal\nfoeteren\nfoetsie\nfoetus\nfoetushouding\nfoetussen\nfoeyonghai\nfoezel\nfoezelen\nfoezelolie\nfok\nfokbedrijf\nfokdier\nfokhengst\nfokken\nfokkenhals\nfokkenist\nfokkenmaat\nfokkenmast\nfokkenra\nfokkenwant\nfokker\nfokkerij\nfokmateriaal\nfokmethode\nfokpaard\nfokprogramma\nfoksia\nfokstation\nfokster\nfokstier\nfokvee\nfokverbod\nfokzeug\nfolder\nfolderbijdrage\nfoldermateriaal\nfoldervergoeding\nfoliant\nfolie\nfolielaag\nfoliestrook\nfolieverpakking\nfolieverpakkingsmachine\nfolio\nfolioformaat\nfoliumzuur\nfoliëren\nfolk\nfolkclub\nfolkfestival\nfolkgroep\nfolklore\nfolklorist\nfolkloristisch\nfolkmuziek\nfolkrock\nfolkrockgroep\nfolksong\nfolky\nfolkzanger\nfolkzangeres\nfolliculair\nfollikel\nfollikelfase\nfollow-up\nfolteraar\nfolterapparaat\nfolterbank\nfolteren\nfoltering\nfolterkamer\nfolterpaal\nfolterpraktijken\nfoltertuig\nfolterwerktuig\nfomenteren\nfond\nfondament\nfondant\nfondement\nfonds\nfondsartikel\nfondsbeheer\nfondsbeheerder\nfondsbestuur\nfondsblad\nfondsbril\nfondscatalogus\nfondsdokter\nfondsenbeheer\nfondsenbeheerder\nfondsenmarkt\nfondsenwerver\nfondsenwerving\nfondshouder\nfondslid\nfondslijst\nfondsmanager\nfondsmarkt\nfondspatiënt\nfondspraktijk\nfondsvermogen\nfondsvorming\nfondswerving\nfondue\nfonduen\nfonduepan\nfonduevork\nfoneem\nfoneticus\nfonetiek\nfonetisch\nfonisch\nfonkelen\nfonkeling\nfonkelnieuw\nfonograaf\nfonografisch\nfonogram\nfonola\nfonologie\nfonologisch\nfonoloog\nfonotheek\nfont\nfontanel\nfontein\nfonteinkruid\nfonteintje\nfonteinwater\nfontgrootte\nfoodprocessor\nfoodsector\nfooi\nfooien\nfooienpot\nfooienstelsel\nfoor\nfoorkramer\nfoorwagen\nfootballclub\nfootballspeler\nfootloose\nfop\nfopduik\nfoppen\nfopperij\nfopspeen\nforaminifeer\nforaminiferen\nforce majeure\nforceps\nforceren\nforehand\nforel\nforellenvangst\nforelschimmel\nforens\nforensde\nforensen\nforensenbelasting\nforensengemeente\nforensentrein\nforensenverkeer\nforensisch\nforensisme\nforenzen\nforenzenbelasting\nforfait\nforfaitair\nforfaitcijfers\nforfaitscore\nforint\nform\nforma\nformaat\nformaatconversie\nformaatzegel\nformaldehyde\nformaline\nformaliseren\nformalisering\nformalisme\nformalist\nformalistisch\nformaliteit\nformant\nformat\nformateur\nformatie\nformatieberaad\nformatiebudgetsysteem\nformatief\nformatieopdracht\nformatieperiode\nformatieplaats\nformatieplaatsenplan\nformatieplan\nformatiepoging\nformatieproces\nformatieronde\nformatievliegen\nformatrice\nformatteeropdracht\nformatteren\nformattering\nformeel\nformeel-juridisch\nformeerder\nformeren\nformering\nformica\nformidabel\nformol\nformularium\nformule\nformuleerkunst\nformulefilm\nformulemanipulatie\nformuleren\nformulering\nformuleringsfase\nformulevak\nformulevorm\nformulewagen\nformulier\nformuliergebed\nformuliersoort\nformulierveld\nfornuis\nfors\nforsgebouwd\nforsheid\nforsig\nforsythia\nfort\nforte\nforteiland\nfortengordel\nfortenlinie\nfortepianist\nfortepiano\nfortificatie\nfortissimo\nfortnight\nforto\nfortuin\nfortuinlijk\nfortuintje\nfortuinzoeker\nfortuinzoekster\nfortuynisme\nfortuynist\nforum\nforumavond\nforumbijeenkomst\nforumdiscussie\nforumlid\nforumpresentatie\nforums\nfosburyflop\nfosfaat\nfosfaatgehalte\nfosfaatmijn\nfosfaatnorm\nfosfaatverzadigd\nfosfaatvrij\nfosfatase\nfosfolipiden\nfosfor\nfosforbom\nfosforescentie\nfosforesceren\nfosforgranaat\nfosforzuur\nfosgeen\nfossa\nfossiel\nfossielenjager\nfossiliseren\nfoto\nfoto-elektrisch\nfoto-impressie\nfoto-onderschrift\nfoto-opname\nfotoafdeling\nfotoafdruk\nfotoafdrukken\nfotoagentschap\nfotoalbum\nfotoapparatuur\nfotoarchief\nfotoartikel\nfotobijschrift\nfotoblad\nfotoboek\nfotobureau\nfotocamera\nfotocel\nfotochemie\nfotochemisch\nfotoclub\nfotocollage\nfotocollectie\nfotodienst\nfotofestival\nfotofinish\nfotogalerie\nfotogalerij\nfotogeniek\nfotogeschiedenis\nfotograaf\nfotografe\nfotografen\nfotografencollectief\nfotograferen\nfotografie\nfotografieconcern\nfotografiemuseum\nfotografisch\nfotogram\nfotogravure\nfotogroep\nfotohandel\nfotohandelaar\nfotohoekje\nfotojournalist\nfotojournaliste\nfotojournalistiek\nfotokaart\nfotokopie\nfotokopieerapparaat\nfotokopieermachine\nfotokopiëren\nfotokwaliteit\nfotolab\nfotolamp\nfotolassen\nfotolithografie\nfotomateriaal\nfotomechanisch\nfotometer\nfotometrisch\nfotomodel\nfotomontage\nfotomuseum\nfoton\nfotonegatief\nfotopagina\nfotopapier\nfotopersbureau\nfotoportret\nfotoprijs\nfotoproject\nfotoredacteur\nfotoredactie\nfotoreportage\nfotorolletje\nfotoroman\nfotosafari\nfotoserie\nfotosessie\nfotosfeer\nfotoshoppen\nfotostudio\nfotosynthese\nfotosynthetisch\nfototechnisch\nfototentoonstelling\nfototoestel\nfototransistor\nfototroop\nfototropie\nfotoverkenning\nfotoverkenningsvliegtuig\nfotoverslag\nfotoverzameling\nfotowedstrijd\nfotozaak\nfotozetmachine\nfotozetter\nfouilleren\nfouillering\nfouilleringsactie\nfouilleringsbevoegdheid\nfoulard\nfoundation\nfourieranalyse\nfourierreeks\nfourierreeksontwikkeling\nfouriertransformatie\nfourneren\nfournituren\nfourniturenzaak\nfournituur\nfourragère\nfourwheeldrive\nfout\nfout-negatief\nfout-positief\nfoutafhandeling\nfoutanalyse\nfoutcorrectie\nfoutenbron\nfoutenfestival\nfoutenlast\nfoutenlijst\nfoutenlijsten\nfoutenmarge\nfoutenpercentage\nfoutenverzameling\nfoutgevoelig\nfoutherstel\nfoutief\nfoutlijn\nfoutloos\nfoutmarge\nfoutmelding\nfoutparkeerder\nfoutparkeren\nfoutspelling\nfoutverbetering\nfoutvrij\nfox\nfoxterriër\nfoxtrot\nfoxtrotten\nfoyer\nfraai\nfraaiheid\nfraaiigheden\nfraaiigheid\nfraaitjes\nfractal\nfractie\nfractieassistent\nfractieberaad\nfractiebestuur\nfractiecommissie\nfractiediscipline\nfractiedwang\nfractiegenoot\nfractiegenote\nfractiekamer\nfractieleider\nfractieleiderschap\nfractieleidster\nfractielid\nfractiemedewerker\nfractieoverleg\nfractiesecretaris\nfractiespecialist\nfractiestandpunt\nfractietop\nfractievergadering\nfractievoorlichter\nfractievoorzitster\nfractievoorzitter\nfractievoorzitterschap\nfractiewoordvoerder\nfractioneel\nfractioneren\nfractionering\nfractuur\nfragiel\nfragiliteit\nfragment\nfragmentair\nfragmentarisch\nfragmentariseren\nfragmentarisering\nfragmentatie\nfragmentatiebom\nfragmenteren\nfragmentering\nfrak\nframboos\nframbozen\nframbozenazijn\nframbozencoulis\nframbozengelei\nframbozenlimonade\nframbozenrood\nframbozenstruik\nframe\nframenummer\nfranc\nfranc-tireur\nfranchise\nfranchisebedrag\nfranchiseformule\nfranchisegever\nfranchisehouders\nfranchiseketen\nfranchisen\nfranchisenemer\nfranchiseorganisatie\nfranchiseovereenkomst\nfranchisesysteem\nfranchisevestiging\nfranchising\nfranciscaan\nfranciscaans\nfranciscanenklooster\nfranciscanenorde\nfranciscaner\nfranciscanes\nfranciscanessen\nfranco\nfrancofiel\nfrancofonie\nfrancofoon\nfrangipane\nfranje\nfranjeaap\nfranjeloos\nfrank\nfrankeeraanduiding\nfrankeerkosten\nfrankeermachine\nfrankeerstempel\nfrankeerzegel\nfrankeren\nfrankering\nfransijn\nfransje\nfranskiljon\nfranskiljonisme\nfranskiljons\nfransman\nfransoos\nfrappant\nfrappe\nfrapperen\nfrase\nfraseologie\nfraseren\nfrasering\nfrases\nfrater\nfraterschool\nfratertje\nfrats\nfratsen\nfratsenmaker\nfraude\nfraudeaanpak\nfraudebedrag\nfraudebeleid\nfraudebestendig\nfraudebestendigheid\nfraudebestrijding\nfraudebureau\nfraudedossier\nfraudegeval\nfraudegevoelig\nfraudegevoeligheid\nfraudekamer\nfraudeofficier\nfraudeonderzoek\nfraudepreventie\nfraudeproces\nfrauderen\nfraudeschandaal\nfraudeteam\nfraudeur\nfraudevrij\nfraudezaak\nfrauduleus\nfrazelen\nfreak\nfreaken\nfreakshow\nfreatisch\nfree kick\nfreefight\nfreefighten\nfreejazz\nfreelance\nfreelancejournalist\nfreelancen\nfreelancer\nfrees\nfreesmachine\nfreestyle\nfreestylen\nfreestyleskiën\nfreeswerk\nfreeware\nfreewheelen\nfregat\nfregatkapitein\nfregatschip\nfregatvogel\nfreinetonderwijs\nfrenesie\nfrenetiek\nfrenologie\nfreon\nfrequent\nfrequentatief\nfrequenteren\nfrequentie\nfrequentieband\nfrequentiebereik\nfrequentiebron\nfrequentiecomponent\nfrequentiedomein\nfrequentiegebied\nfrequentiekarakteristiek\nfrequentiemeter\nfrequentiemodulatie\nfrequentieomzetter\nfrequentieomzetters\nfrequentieplan\nfrequentieregelaar\nfrequentieruimte\nfrequentiespectrum\nfrequentietabel\nfrequentieveiling\nfrequentieverdeling\nfrequentievolgorde\nfresco\nfrescoschilderen\nfresia\nfret\nfretloos\nfretten\nfretzaag\nfreudiaan\nfreudiaans\nfreule\nfrezen\nfrezer\nfrezers\nfricandeau\nfricassee\nfricatief\nfrictie\nfrictiekoppeling\nfrictieplaat\nfrictiewerkeloosheid\nfrictiewerkloosheid\nfrictioneren\nfriemelen\nfries\nfriet\nfrieten\nfrietje\nfrietketel\nfrietkot\nfrietkraam\nfrietsaus\nfriettent\nfrietvet\nfrigidaire\nfrigide\nfrigiditeit\nfrigo\nfrigobox\nfrigoboxtoerist\nfrijnen\nfrik\nfrikadel\nfrikandel\nfrikkerig\nfris\nfrisbee\nfrisco\nfrisdrank\nfrisdrankconcern\nfrisdrankenfabriek\nfrisdrankengigant\nfrisdrankenindustrie\nfrisdrankfabrikant\nfrisdrankgigant\nfrisdrankindustrie\nfrisdrankproducent\nfriseerijzer\nfriseertang\nfriseren\nfrisgewassen\nfrisgroen\nfrisheid\nfrisisme\nfrisist\nfrisistiek\nfrisjes\nfrisket\nfriste\nfrisuur\nfrites\nfritessaus\nfriteuse\nfrituren\nfrituur\nfrituurinstallatie\nfrituurmand\nfrituurolie\nfrituurpan\nfrituurvet\nfritvlieg\nfrivoliteit\nfrivolité\nfrivool\nfrommel\nfrommelen\nfrommelig\nfrondeel\nfrons\nfronselen\nfronsen\nfront\nfrontaal\nfrontaanval\nfrontaanzicht\nfrontbalkon\nfrontdesk\nfrontdienst\nfrontensysteem\nfrontgebied\nfrontispice\nfrontispies\nfrontlijn\nfrontlijnstaat\nfrontlinie\nfrontloge\nfrontman\nfronton\nfrontpagina\nfrontpassage\nfrontsoldaat\nfrontspoiler\nfrontverandering\nfrontvorming\nfrotteren\nfroufrou\nfructose\nfrugaal\nfruit\nfruitafval\nfruitautomaat\nfruitboom\nfruitcocktail\nfruitconsumptie\nfruitcorso\nfruiten\nfruitenier\nfruithandel\nfruithapje\nfruitig\nfruitjaar\nfruitkorf\nfruitkweker\nfruitmachine\nfruitmand\nfruitmarkt\nfruitmes\nfruitpan\nfruitpap\nfruitpers\nfruitpluk\nfruitras\nfruitrassen\nfruitsalade\nfruitsap\nfruitschaal\nfruitsector\nfruitteelt\nfruitteler\nfruitterminal\nfruitveiling\nfruitvlieg\nfruitvrouw\nfruitwinkel\nfrul\nfrummelen\nfrunniken\nfrustratie\nfrustratiedrempel\nfrustratietolerantie\nfrustreren\nfrutje\nfrutsel\nfrutselen\nfrêle\nfröbelen\nfröbelonderwijs\nfröbelschool\nftaalzuur\nftisis\nftp\nfuchsia\nfuga\nfugatisch\nfuif\nfuifde\nfuifnummer\nfuifroeien\nfuik\nfuikwerking\nfuiven\nfull colour\nfull house\nfulltime\nfulltimebaan\nfulltimer\nfulminant\nfulmineren\nfulp\nfulpen\nfunctie\nfunctie-eis\nfunctie-indeling\nfunctie-inhoud\nfunctieaanduiding\nfunctieanalist\nfunctieanalyse\nfunctiebalk\nfunctiebeloning\nfunctiebenaming\nfunctiebeoordeling\nfunctiebeperking\nfunctiebeschrijving\nfunctieboek\nfunctieboeken\nfunctieclassificatie\nfunctiecode\nfunctiedifferentiatie\nfunctiegebied\nfunctiegebieden\nfunctiegroep\nfunctiekeuze\nfunctieklasse\nfunctieleer\nfunctieloon\nfunctieloos\nfunctienaam\nfunctieniveau\nfunctieomschrijving\nfunctieonderzoek\nfunctieprofiel\nfunctieroulatie\nfunctiescheiding\nfunctieschema\nfunctieschets\nfunctiestoornis\nfunctietheorie\nfunctietoets\nfunctieverandering\nfunctieverdeling\nfunctieverlies\nfunctieverrijking\nfunctievervuller\nfunctievervulling\nfunctiewaarde\nfunctiewaardering\nfunctiewaarderingsstelsel\nfunctiewaarderingssysteem\nfunctiewaarnemer\nfunctiewisseling\nfunctiewoord\nfunctionalisme\nfunctionalist\nfunctionalistisch\nfunctionaliteit\nfunctionaris\nfunctioneel\nfunctioneren\nfunctionering\nfunctioneringsgesprek\nfunctioneringsproblematiek\nfundament\nfundamentalisme\nfundamentalist\nfundamentalistisch\nfundamenteel\nfundatie\nfundatieblok\nfundatieblokken\nfunderen\nfundering\nfunderingsbalk\nfunderingsonderzoek\nfunderingsprobleem\nfunderingsput\nfunderingswerkzaamheden\nfundi\nfundraiser\nfundraising\nfunerair\nfunerarium\nfunest\nfungeren\nfungicide\nfungus\nfunk\nfunkband\nfunkgroep\nfunkmuziek\nfunkrock\nfunky\nfunshoppen\nfunshopper\nfurie\nfurieus\nfurore\nfusee\nfuselier\nfuseren\nfusering\nfusie\nfusiebedrijf\nfusiebericht\nfusiebesluit\nfusiebeurs\nfusiebeweging\nfusieclub\nfusiecode\nfusieconcern\nfusiedatum\nfusiegemeente\nfusiegesprek\nfusiegolf\nfusiegroep\nfusiekandidaat\nfusiekoorts\nfusiekosten\nfusiekrant\nfusiemaatschappij\nfusienieuws\nfusieonderhandelingen\nfusieonderzoek\nfusieoperatie\nfusieovereenkomst\nfusieoverleg\nfusiepartner\nfusieplan\nfusieploeg\nfusiepoging\nfusieproces\nfusieproject\nfusiereactor\nfusieschool\nfusiesecretariaat\nfusiestuurgroep\nfusievennootschap\nfusieverbod\nfusievoornemen\nfusievoorstel\nfusillade\nfusilleren\nfusion\nfusioneren\nfust\nfustage\nfut\nfutiel\nfutiliteit\nfutloos\nfutloosheid\nfuton\nfutselaar\nfutselarij\nfutselen\nfutselwerk\nfutures\nfuturesbeurs\nfuturisme\nfuturist\nfuturistisch\nfuturologie\nfuturologisch\nfuturoloog\nfuturum\nfuut\nfylogenese\nfylogenetisch\nfylum\nfysica\nfysicus\nfysiek\nfysiocraat\nfysiognomie\nfysiognomiek\nfysiologie\nfysiologisch\nfysioloog\nfysionomie\nfysiotherapeut\nfysiotherapeute\nfysiotherapeutisch\nfysiotherapie\nfysisch\nfysisch-chemisch\nfytofaag\nfytopathologisch\nfytoplankton\nfytosanitair\nfytotherapie\nfêteren\nföhn\nföhnen\ng\ng-sleutel\ng.g.d.\ngaaf\ngaafheid\ngaai\ngaaibolder\ngaaibollen\ngaaibolling\ngaaien\ngaaipers\ngaaischieten\ngaaischieter\ngaaischieting\ngaal\ngaan\ngaande\ngaanderij\ngaandeweg\ngaap\ngaar\ngaarbak\ngaard\ngaarde\ngaardenier\ngaarder\ngaarheid\ngaarkeuken\ngaarkoken\ngaarne\ngaas\ngaasdoek\ngaasje\ngaasvlieg\ngaatje\ngabardine\ngabbe\ngabben\ngabber\ngabberhouse\ngade\ngadeloos\ngaden\ngadeslaan\ngadget\ngading\ngadogado\ngadverdamme\ngaf\ngaffe\ngaffel\ngaffelbok\ngaffelen\ngaffelkruis\ngaffels\ngaffelschoener\ngaffelvormig\ngaffelzeil\ngag\ngaga\ngage\ngagel\ngaggelen\ngaine\ngajes\ngakken\ngal\ngala\ngala-achtig\ngala-avond\ngala-uniform\ngalabal\ngalachtig\ngalaconcert\ngalactiet\ngalactisch\ngalactometer\ngalactose\ngaladegen\ngaladiner\ngalafeest\ngalafscheiding\ngalakleding\ngalakostuum\ngalant\ngalanterie\ngalanteriewinkel\ngalantine\ngalapagosschildpad\ngalappel\ngalapremière\ngalarijtuig\ngalarok\ngalavoorstelling\ngalbeker\ngalblaas\ngalblaasoperatie\ngalbult\ngalbulten\ngalei\ngaleiboef\ngaleislaaf\ngaleistraf\ngalerie\ngaleriecircuit\ngaleriehouder\ngaleriehoudster\ngalerij\ngalerijflat\ngalerijwoning\ngalg\ngalgen\ngalgenaas\ngalgenbrok\ngalgenhumor\ngalgenmaal\ngalgenstrop\ngalgentronie\ngalgenveld\ngalgje\ngaligaan\ngaljoen\ngaljoot\ngalkanaal\ngalkoorts\ngallen\ngallicaans\ngallicisme\ngallig\ngalligheid\ngallisch\ngalliumarsenide\ngallofiel\ngallofobie\ngallomanie\ngallon\ngalloway\ngalm\ngalmbord\ngalmei\ngalmen\ngalmgat\ngalmug\ngalnoot\ngaloche\ngalon\ngalonneren\ngalonwever\ngalop\ngaloppade\ngalopperen\ngalopperend\ngalopsprong\ngalsteen\ngalsteenkoliek\ngalvanisatie\ngalvanisch\ngalvaniseren\ngalvanisme\ngalvanometer\ngalvanoplastiek\ngalvanoscoop\ngalvanotherapie\ngalvanotypie\ngalvlieg\ngalwegen\ngalwesp\ngalzeep\ngalziekte\ngalzuur\ngamander\ngamba\ngambiet\ngambir\ngame\ngameet\ngamel\ngamelan\ngamen\ngamepad\ngamer\ngamma\ngamma-uil\ngammaflits\ngammaglobuline\ngammastralen\ngammastraling\ngammawetenschappen\ngammel\ngander\ngang\ngangbaar\ngangbaarheid\ngangbangen\ngangboord\ngangdeur\ngangenstelsel\ngangetje\ngangkast\ngangklok\nganglia\nganglicht\nganglion\ngangloper\ngangmaker\ngangmat\ngangpad\ngangreen\ngangspil\ngangstarapper\ngangster\ngangsterbaas\ngangsterbende\ngangsterfilm\ngangsterrap\ngangwerk\ngangwissel\ngannef\ngans\nganselijk\ngansknuppelen\ngansrijden\ngansslaan\nganstrekken\nganzenbloem\nganzenbord\nganzenborden\nganzenbout\nganzenei\nganzengat\nganzenhagel\nganzenhoedster\nganzenjacht\nganzenlever\nganzenleverpastei\nganzenleverterrine\nganzenmars\nganzenpad\nganzenpas\nganzenpen\nganzenpoot\nganzenroer\nganzenspel\nganzenveder\nganzenveer\nganzenvet\nganzenvoet\nganzerik\ngapen\ngaper\ngaperig\ngaping\ngappen\ngapper\ngarage\ngarage-eigenaar\ngaragebedrijf\ngaragebox\ngaragedeur\ngaragehouder\ngaragepoort\ngaragerock\ngarages\ngaragist\ngaranderen\ngarant\ngarante\ngarantie\ngarantie-uren\ngarantiebedrag\ngarantiebepaling\ngarantiebewijs\ngarantiecertificaat\ngarantiecontract\ngarantiefonds\ngarantiekrediet\ngarantieperiode\ngarantieprijs\ngarantieregeling\ngarantiestelling\ngarantiesubsidie\ngarantietermijn\ngarantieverklaring\ngarantievermogen\ngarantieverplichting\ngarantstelling\ngarantverklaring\ngard\ngarde\ngardebataljon\ngardenia\ngardeofficier\ngarderobe\ngarderobejuffrouw\ngarderobekamer\ngarderobekast\ngardetheater\ngardiaan\ngardist\ngareel\ngareelmaker\ngaren\ngarenklos\ngarennummer\ngarenspinnerij\ngarf\ngarfpacht\ngargantuesk\ngaribaldi\ngarnaal\ngarnalenbroodje\ngarnalenkroket\ngarnalenpasteitje\ngarnalenplant\ngarnalensalade\ngarnalenvangst\ngarnalenverstand\ngarnalenvisser\ngarnalenvisserij\ngarneersel\ngarneren\ngarnering\ngarnituur\ngarnizoen\ngarnizoensarts\ngarnizoenscommandant\ngarnizoensdienst\ngarnizoenshospitaal\ngarnizoensplaats\ngarnizoensstad\ngaroe\ngarstig\ngarve\ngarven\ngarvenbinder\ngarçon\ngas\ngas geven\ngasaanleg\ngasaansluiting\ngasaansteker\ngasaanval\ngasachtig\ngasafzet\ngasautomaat\ngasballon\ngasbaten\ngasbedrijf\ngasbek\ngasbel\ngasbenzine\ngasbeton\ngasboei\ngasbol\ngasbom\ngasboring\ngasbrander\ngasbron\ngasbuis\ngascentrale\ngaschromatograaf\ngaschromatografie\ngascokes\ngasconcern\ngascontract\ngasdicht\ngasdiffusie\ngasdistributie\ngasdistributiebedrijf\ngasdruk\ngasdrukregelaar\ngasexplosie\ngasexport\ngasfabriek\ngasfabriekterrein\ngasfitter\ngasfles\ngasfornuis\ngasgebruik\ngasgeiser\ngasgenerator\ngasgestookt\ngasgigant\ngasgranaat\ngashaard\ngashandel\ngashandelaar\ngashendel\ngashouder\ngasindustrie\ngasinkomsten\ngasinstallatie\ngaskachel\ngaskamer\ngasketel\ngaskomfoor\ngaskraan\ngaskroon\ngaslaag\ngaslaan\ngaslamp\ngaslantaarn\ngaslantaren\ngasleiding\ngaslek\ngasleverancier\ngasleveranciers\ngaslevering\ngaslicht\ngaslucht\ngasmaatschappij\ngasmaatschappijen\ngasman\ngasmarkt\ngasmasker\ngasmengsel\ngasmeter\ngasmeterstand\ngasmolecule\ngasmotor\ngasmuntje\ngasnet\ngasolie\ngasolieprijs\ngasoline\ngasontladingslamp\ngasontploffing\ngasoorlog\ngasopslag\ngasoven\ngaspak\ngaspatroon\ngaspedaal\ngaspeldoorn\ngaspeldoren\ngaspenning\ngaspijp\ngaspijpleiding\ngaspijplijn\ngaspistool\ngaspit\ngaspook\ngasprijs\ngasproducent\ngasproductie\ngasproject\ngasradiator\ngasrekening\ngasreserve\ngassector\ngassen\ngasslang\ngassnelheid\ngasstel\ngast\ngastacteur\ngastank\ngastanker\ngastarbeid\ngastarbeider\ngastarief\ngastauteur\ngastcollege\ngastcolumn\ngastconservator\ngastcurator\ngastdirigent\ngastdocent\ngastdocente\ngastdocentschap\ngasten\ngastenboek\ngastendoekje\ngastenhuis\ngastenkamer\ngastenlijst\ngastenverblijf\ngasteren\ngastgezin\ngastheer\ngastheerschap\ngasthermometer\ngasthoogleraar\ngasthuis\ngasthuisnon\ngasthuiszuster\ngastland\ngastles\ngastmaal\ngastmoeder\ngastmuzikant\ngastoestel\ngastoevoer\ngastoptreden\ngastouder\ngastouderbureau\ngastoudergezin\ngastouderopvang\ngastouderschap\ngastplant\ngastpresentator\ngastprofessor\ngastransport\ngastredacteur\ngastregie\ngastregisseur\ngastrisch\ngastritis\ngastro-enteritis\ngastro-enteroloog\ngastrol\ngastronomie\ngastronomisch\ngastronoom\ngastschrijver\ngastspeler\ngastspreekster\ngastspreker\ngaststad\ngasturbine\ngastvocalisten\ngastvriend\ngastvrij\ngastvrijheid\ngastvrouw\ngastvrouwschap\ngasuitlaat\ngasveer\ngasveld\ngasverbruik\ngasvering\ngasverstikking\ngasvlam\ngasvondst\ngasvoorraad\ngasvoorziening\ngasvormig\ngasvorming\ngasvrij\ngasvuur\ngaswandketel\ngaswinning\ngaswolk\ngat\ngate\ngaten\ngatenkaas\ngatenplant\ngateway\ngatlikker\ngatlikkerij\ngatsometer\ngauchisme\ngaucho\ngaufreren\ngaullisme\ngaullist\ngaullistisch\ngausscurve\ngauw\ngauwdief\ngauwdieverij\ngauwigheid\ngauwte\ngave\ngaven\ngaviaal\ngavotte\ngay\ngayscene\ngazel\ngazelle\ngazelleoog\ngazen\ngazet\ngazeuse\ngazon\ngazonsproeier\ngazpacho\nge\ngeaardheid\ngeaarzel\ngeaccepteerd\ngeaccidenteerd\ngeaccrediteerd\ngeacheveerd\ngeacht\ngeaderd\ngeadresseerde\ngeaffecteerd\ngeaggregeerde\ngeagiteerd\ngeallieerd\ngeallieerden\ngeamuseerd\ngeamuseerdheid\ngeanimeerd\ngeanticipeerd\ngearing\ngearmd\ngearriveerd\ngearticuleerd\ngeassocieerde\ngeassorteerd\ngeassureerde\ngeavanceerd\ngebaand\ngebaar\ngebaard\ngebaat\ngebabbel\ngebak\ngebakje\ngebakkelei\ngebakschaal\ngebakschoteltje\ngebaksdoos\ngebakstel\ngebakvorkje\ngebalk\ngebaren\ngebarenkoor\ngebarenkunst\ngebarenspel\ngebarentaal\ngebazel\ngebbe\ngebbetje\ngebed\ngebedel\ngebedenboek\ngebedsbijeenkomst\ngebedsdienst\ngebedsgenezer\ngebedsgenezeres\ngebedsgenezing\ngebedshouding\ngebedshuis\ngebedsmolen\ngebedsriem\ngebedsruimte\ngebedsverhoring\ngebedswake\ngebeeldhouwd\ngebeend\ngebeente\ngebeft\ngebeier\ngebeiteld\ngebeitst\ngebekt\ngebekvecht\ngebel\ngebelgd\ngebenedijd\ngebergte\ngebergtevorming\ngebetenheid\ngebeteren\ngebeuk\ngebeuren\ngebeurlijk\ngebeurlijkheid\ngebeurtenis\ngebied\ngebieden\ngebiedend\ngebiedenderwijs\ngebieder\ngebiedsagent\ngebiedsdeel\ngebiedsgebonden\ngebiedsgericht\ngebiedsindeling\ngebiedster\ngebiedsuitbreiding\ngebiesd\ngebint\ngebinte\ngebiologeerd\ngebit\ngebitselement\ngebitsprothese\ngebitsregulatie\ngebitsverzorging\ngeblaard\ngeblaas\ngeblaat\ngebladerd\ngebladerte\ngeblaf\ngeblameerd\ngeblaseerd\ngeblaseerdheid\ngeblesseerd\ngeblesseerde\ngebliep\ngeblindeerd\ngebloemd\ngebloemte\ngeblokkeerd\ngeblokt\ngebluf\ngeblunder\ngeblutst\ngeblèr\ngebobbeld\ngebobd\ngebocheld\ngebochelde\ngebod\ngebodsbepaling\ngebodsbord\ngeboefte\ngeboeid\ngebondenheid\ngebonk\ngebons\ngeboogd\ngeboomte\ngeboorte\ngeboorte-eiland\ngeboorteaangifte\ngeboorteafwijking\ngeboorteakte\ngeboortebeperking\ngeboortebericht\ngeboortebewijs\ngeboortecijfer\ngeboortedag\ngeboortedatum\ngeboortedorp\ngeboortegewicht\ngeboortegolf\ngeboortegrond\ngeboortehuis\ngeboortejaar\ngeboortekaartje\ngeboortekanaal\ngeboortekwestie\ngeboorteland\ngeboortelijst\ngeboortemaand\ngeboortenacht\ngeboorteoverschot\ngeboorteplaats\ngeboorteplanning\ngeboortepremie\ngeboorterecht\ngeboorteregeling\ngeboorteregister\ngeboortestad\ngeboortestreek\ngeboortetegel\ngeboortetrauma\ngeboortig\ngeborduurd\ngeboren\ngeborene\ngeborgen\ngeborgenheid\ngeborneerd\ngeborneerdheid\ngeborrel\ngeborsteld\ngebost\ngebouw\ngebouwbeheer\ngebouwd\ngebouwenbeheer\ngebouwencomplex\ngebouwinrichting\ngebraad\ngebrabbel\ngebral\ngebrand\ngebrandschilderd\ngebreid\ngebrek\ngebrekkelijk\ngebrekkig\ngebrekkigheid\ngebreksziekte\ngebrevetteerd\ngebrild\ngebroddel\ngebroed\ngebroederlijk\ngebroeders\ngebroedsel\ngebroekt\ngebrokenheid\ngebrom\ngebronsd\ngebrouilleerd\ngebruik\ngebruikelijk\ngebruikelijkheid\ngebruiken\ngebruiker\ngebruikergedefinieerd\ngebruikerscode\ngebruikersgegevens\ngebruikersgemak\ngebruikersgericht\ngebruikersgids\ngebruikersgroep\ngebruikershandleiding\ngebruikersheffing\ngebruikersinterface\ngebruikerslicenties\ngebruikersmarkt\ngebruikersnaam\ngebruikersonvriendelijk\ngebruikersopleiding\ngebruikersovereenkomst\ngebruikersprogramma\ngebruikersraad\ngebruikersrecht\ngebruikersruimte\ngebruikersvriendelijk\ngebruikersvriendelijkheid\ngebruikerswensen\ngebruikerswoordenboek\ngebruikmaken\ngebruikmaking\ngebruiksaanwijzing\ngebruiksartikel\ngebruiksdoel\ngebruiksduur\ngebruiksfrequentie\ngebruiksfunctie\ngebruiksgemak\ngebruiksgoed\ngebruikshandeling\ngebruiksklaar\ngebruikskosten\ngebruiksmoment\ngebruiksmuziek\ngebruiksonvriendelijk\ngebruiksovereenkomst\ngebruiksplan\ngebruiksrecht\ngebruiksregel\ngebruikssfeer\ngebruikster\ngebruikstermijn\ngebruiksvergunning\ngebruiksvoorwerp\ngebruiksvriendelijk\ngebruiksvriendelijkheid\ngebruikswaarde\ngebruikswijze\ngebruind\ngebruis\ngebrul\ngebuikt\ngebuild\ngebuisd\ngebukt\ngebulder\ngebult\ngebuur\ngebuurte\ngecamoufleerd\ngecanneleerd\ngecentreerd\ngecharmeerd\ngechicaneer\ngecijfer\ngeciviliseerd\ngeclausuleerd\ngecoiffeerd\ngecommitteerde\ngecompliceerd\ngecompliceerdheid\ngeconcentreerd\ngeconditioneerd\ngeconserveerd\ngeconstipeerd\ngecontinueerd\ngecoöpteerd\ngecultiveerd\ngedaagde\ngedaan\ngedaante\ngedaanteverandering\ngedaanteverwisseling\ngedaantewisseling\ngedaas\ngedachte\ngedachte-experiment\ngedachteassociatie\ngedachtebepaling\ngedachteconstructie\ngedachteflits\ngedachtegang\ngedachtegoed\ngedachtekring\ngedachtekronkel\ngedachteleven\ngedachtelezen\ngedachtelezer\ngedachteloop\ngedachteloos\ngedachteloosheid\ngedachtenis\ngedachtenisrede\ngedachtereeks\ngedachtespinsel\ngedachtespoor\ngedachtesprong\ngedachtestap\ngedachtestreep\ngedachtestroom\ngedachtevlucht\ngedachtevorming\ngedachtewereld\ngedachtewisseling\ngedachtig\ngedag\ngedans\ngedateerd\ngedateerdheid\ngedaver\ngedecideerd\ngedecideerdheid\ngedecolleteerd\ngedecoreerd\ngedecriminaliseerd\ngedeelte\ngedeeltelijk\ngedegen\ngedegenereerd\ngedegenereerde\ngedegenheid\ngedegouteerd\ngedeisd\ngedekt\ngedelegeerde\ngedelibereer\ngedemilitariseerd\ngedemotiveerd\ngedempt\ngedenatureerd\ngedenkblad\ngedenkboek\ngedenkdag\ngedenken\ngedenkenis\ngedenkjaar\ngedenknaald\ngedenkoffer\ngedenkpenning\ngedenkplaat\ngedenkplaats\ngedenkrede\ngedenkrol\ngedenkschrift\ngedenksteen\ngedenkstuk\ngedenktafel\ngedenkteken\ngedenkwaardig\ngedenkwaardigheid\ngedenkzuil\ngedeporteerde\ngedeprimeerd\ngedepriveerd\ngedeputeerde\ngederangeerd\ngedesillusioneerd\ngedesinteresseerd\ngedesoriënteerd\ngedessineerd\ngedestilleerd\ngedetacheerd\ngedetailleerd\ngedetailleerdheid\ngedetineerd\ngedetineerde\ngedeukt\ngedicht\ngedichtenbundel\ngedichtencyclus\ngedichtendag\ngedichtenwedstrijd\ngedienstig\ngedienstige\ngedienstigheid\ngedierte\ngedifferentieerd\ngedijen\ngeding\ngediplomeerd\ngedisciplineerd\ngediscussieer\ngedisponeerd\ngedistilleerd\ngedistingeerd\ngedocumenteerd\ngedoe\ngedoemd\ngedogen\ngedomicilieerd\ngedonder\ngedonderjaag\ngedoodverfd\ngedoogbeleid\ngedoogbeschikking\ngedoogbesluit\ngedoogcultuur\ngedoogplicht\ngedoogsituatie\ngedoogstatus\ngedoogsteun\ngedoogvergunning\ngedoogzone\ngedoteerd\ngedraaf\ngedraai\ngedraal\ngedrag\ngedragen\ngedragenheid\ngedraging\ngedragsafspraak\ngedragsaspect\ngedragsbeïnvloeding\ngedragscijfer\ngedragscode\ngedragsdeskundige\ngedragseenheid\ngedragsgericht\ngedragsgestoord\ngedragsgestoorde\ngedragsleer\ngedragslijn\ngedragsnorm\ngedragsonderzoek\ngedragsonderzoeker\ngedragsontsporing\ngedragspatroon\ngedragspsychologie\ngedragsregel\ngedragsstoornis\ngedragstherapeut\ngedragstherapeutisch\ngedragstherapie\ngedragsverandering\ngedragswetenschap\ngedragswetenschappelijk\ngedragswetenschapper\ngedram\ngedrang\ngedrein\ngedreun\ngedreutel\ngedreven\ngedrevene\ngedrevenheid\ngedrieën\ngedrocht\ngedrochtelijk\ngedrogeerd\ngedrongen\ngedrongenheid\ngedruis\ngedrukt\ngedruktheid\ngedrum\ngeducht\ngeduchtheid\ngeduld\ngedulden\ngeduldig\ngeduldigheid\ngeduldoefening\ngeduldwerk\ngeduldwerkje\ngedupeerd\ngedupeerde\ngedurende\ngedurfd\ngedurfdheid\ngedurig\ngeduvel\ngeduw\ngedwee\ngedweeheid\ngedweep\ngedwongenheid\ngeefgedrag\ngeel\ngeel-zwart\ngeelachtig\ngeelbek\ngeelblond\ngeelboek\ngeelborstje\ngeelbruin\ngeelbuikje\ngeelfilter\ngeelgieten\ngeelgieter\ngeelgieterij\ngeelgors\ngeelgroen\ngeelhart\ngeelkoper\ngeelkoperen\ngeelkruid\ngeeloranje\ngeelrood\ngeelsel\ngeelster\ngeeltje\ngeelvink\ngeelwit\ngeelwortel\ngeelzucht\ngeen\ngeenbezwaarsysteem\ngeeneens\ngeenszins\ngeep\ngeer\ngeervalk\ngeest\ngeestdodend\ngeestdrift\ngeestdriftig\ngeestdrijver\ngeestdrijverij\ngeestelijk\ngeestelijke\ngeestelijkheid\ngeesteloos\ngeesteloosheid\ngeestenbanner\ngeestenbezweerder\ngeestenbezweerster\ngeestenbezwering\ngeestendom\ngeestenleer\ngeestenrijk\ngeestenwereld\ngeestenziener\ngeestesarbeid\ngeestesarbeider\ngeestesgesteldheid\ngeesteshouding\ngeesteskind\ngeesteskracht\ngeestesleven\ngeestesoog\ngeestesproduct\ngeestesrichting\ngeestestoestand\ngeestesvermogen\ngeesteswereld\ngeestesziek\ngeesteszieke\ngeestesziekte\ngeesteszwakte\ngeestgrond\ngeestig\ngeestigaard\ngeestigheid\ngeestkracht\ngeestloos\ngeestrijk\ngeestverheffend\ngeestverheffing\ngeestvermogen\ngeestvermogens\ngeestverruimend\ngeestverruiming\ngeestverschijning\ngeestvervoering\ngeestverwant\ngeestverwante\ngeestverwantschap\ngeeuw\ngeeuwen\ngeeuwerig\ngeeuwhonger\ngefarceerd\ngefaseerd\ngefederaliseerd\ngefeliciteerd\ngefemel\ngefigureerd\ngefilosofeer\ngefingeerd\ngefladder\ngeflatteerd\ngeflikflooi\ngeflikker\ngeflirt\ngeflits\ngefluister\ngefluit\ngefoeter\ngefoezel\ngeforceerd\ngefortuneerd\ngefriemel\ngefrons\ngefrunnik\ngefrustreerd\ngefrutsel\ngefröbel\ngefumeerd\ngefundeerd\ngegadigde\ngegaffeld\ngegalm\ngegalvaniseerd\ngegarandeerd\ngegeerd\ngegeeuw\ngegeneerd\ngegeven\ngegevenheid\ngegevensbank\ngegevensbanksysteem\ngegevensbeheer\ngegevensbescherming\ngegevensbestand\ngegevensopslag\ngegevensoverdracht\ngegevenspakhuis\ngegevensstroom\ngegevensstructuur\ngegevensuitwisseling\ngegevensvastlegging\ngegevensveld\ngegevensverkeer\ngegevensverstrekking\ngegevensverwerker\ngegevensverwerking\ngegevensverzameling\ngegiebel\ngegiechel\ngegier\ngegijzelde\ngegil\ngeglaceerd\ngeglansd\ngeglazuurd\ngegleufd\ngegniffel\ngegoed\ngegoedheid\ngegolfd\ngegomd\ngegons\ngegoochel\ngegraaf\ngegraai\ngegradueerd\ngegradueerde\ngegriefd\ngegriefdheid\ngegrinnik\ngegroefd\ngegroept\ngegrom\ngegrond\ngegrondheid\ngehaaid\ngehaakt\ngehaast\ngehaat\ngehakkel\ngehakketak\ngehakt\ngehaktbal\ngehaktdag\ngehaktmolen\ngehalte\ngehamer\ngehandicapt\ngehandicapte\ngehandicaptenbeleid\ngehandicaptenraad\ngehandicaptensector\ngehandicaptensport\ngehandicaptenvervoer\ngehandicaptenzorg\ngehandschoend\ngehang\ngehangene\ngehannes\ngehard\ngeharnast\ngeharrewar\ngehaspel\ngehavend\ngehecht\ngehechtheid\ngeheel\ngeheelonthouder\ngeheelonthoudersvereniging\ngeheelonthouding\ngeheid\ngeheim\ngeheimdoenerij\ngeheimenis\ngeheimhouden\ngeheimhouder\ngeheimhouding\ngeheimhoudingsplicht\ngeheimhoudingsverklaring\ngeheimschrift\ngeheimschrijver\ngeheimtaal\ngeheimzinnig\ngeheimzinnigheid\ngehelmd\ngehemelte\ngeheugen\ngeheugenbeslag\ngeheugencapaciteit\ngeheugenchip\ngeheugengebruik\ngeheugenindeling\ngeheugeninhoud\ngeheugenis\ngeheugenkaart\ngeheugenkaarten\ngeheugenkennis\ngeheugenkunst\ngeheugenleer\ngeheugenlocatie\ngeheugenloos\ngeheugenopslag\ngeheugenplaats\ngeheugenruimte\ngeheugensteun\ngeheugensteuntje\ngeheugenstoornis\ngeheugentoegang\ngeheugentraining\ngeheugenuitbreiding\ngeheugenvak\ngeheugenverlies\ngehijg\ngehinnik\ngehobbel\ngehoed\ngehoefd\ngehoekt\ngehol\ngehomologeerd\ngehoofd\ngehoon\ngehoor\ngehoorafstand\ngehoorapparaat\ngehoorbeen\ngehoorbeschadiging\ngehoorbescherming\ngehoorbuis\ngehoordrempel\ngehoorgang\ngehoorgestoord\ngehoorgestoorde\ngehoorgrens\ngehoornd\ngehooropening\ngehoororgaan\ngehoorsafstand\ngehoorschade\ngehoorschelp\ngehoorstoornis\ngehoorsvermogen\ngehoortest\ngehoorverlies\ngehoorvlies\ngehoorweg\ngehoorzaal\ngehoorzaam\ngehoorzaamheid\ngehoorzamen\ngehoorzenuw\ngehorend\ngehorig\ngehorigheid\ngehospitaliseerd\ngehouden\ngehoudenheid\ngehoudenis\ngehucht\ngehuicheld\ngehuifd\ngehuil\ngehuisd\ngehuisvest\ngehumeurd\ngehurkt\ngehuwd\ngehuwde\ngehuwdenuitkering\ngei\ngeiblok\ngeien\ngeigerteller\ngeijkt\ngeil\ngeilaard\ngeilbekken\ngeilen\ngeilheid\ngein\ngeinig\ngeinlijn\ngeinponem\ngeintje\ngeiser\ngeiserwater\ngeisha\ngeit\ngeitachtig\ngeiten\ngeitenbaard\ngeitenblad\ngeitenboerderij\ngeitenbok\ngeitenbond\ngeitenbreier\ngeitenhaar\ngeitenharen\ngeitenhoeder\ngeitenhouderij\ngeitenkaas\ngeitenkeuring\ngeitenkeutel\ngeitenleder\ngeitenleer\ngeitenleren\ngeitenmelk\ngeitenmelker\ngeitenoog\ngeitenpoot\ngeitenstal\ngeitenteelt\ngeitenvacht\ngeitenvel\ngeitenvlees\ngeitenwol\ngeitenwollen\ngeitouw\ngejaag\ngejaagd\ngejaagdheid\ngejacht\ngejakker\ngejammer\ngejank\ngejengel\ngejeremieer\ngejij\ngejodeerd\ngejodel\ngejoel\ngejojo\ngejou\ngejouw\ngejubel\ngejuich\ngek\ngekabbeld\ngekakel\ngekamd\ngekanker\ngekant\ngekantrecht\ngekarteld\ngekartonneerd\ngekast\ngekef\ngekend\ngekeperd\ngekerm\ngekeutel\ngekeuvel\ngekheid\ngekibbel\ngekield\ngekietel\ngekijf\ngekir\ngekissebis\ngekkekoeienziekte\ngekken\ngekkengetal\ngekkenhuis\ngekkennummer\ngekkenpraat\ngekkenwerk\ngekkerd\ngekkernij\ngekkigheid\ngekkin\ngekko\ngeklaag\ngeklap\ngeklasseerd\ngeklater\ngekleed\ngeklepper\ngeklets\ngekletter\ngekleurd\ngeklieder\ngeklier\ngeklik\ngeklingel\ngekloft\ngeklonken\ngekloofd\ngeklooi\ngekloot\ngeklop\ngeklots\ngekluisd\ngeklungel\ngekmakend\ngeknaag\ngeknabbel\ngeknal\ngeknars\ngeknetter\ngekneveld\ngeknik\ngeknikt\ngeknipt\ngeknoei\ngeknok\ngeknopt\ngeknor\ngeknuffel\ngeknutsel\ngekoketteer\ngekolonialiseerd\ngekonkel\ngekonkelfoes\ngekorreld\ngekorst\ngekostumeerd\ngekozene\ngekraagd\ngekraai\ngekraak\ngekrabbel\ngekrakeel\ngekras\ngekrenkt\ngekrenktheid\ngekreukeld\ngekreun\ngekriebel\ngekrijs\ngekrioel\ngekroesd\ngekromd\ngekronkel\ngekrookt\ngekroond\ngekruid\ngekruist\ngekruld\ngekscheerder\ngekscheren\ngekskap\ngekte\ngekuch\ngekuifd\ngekuild\ngekuip\ngekuist\ngekunsteld\ngekunsteldheid\ngekwaak\ngekwalificeerd\ngekwartierd\ngekwebbel\ngekweel\ngekwek\ngekweld\ngekweldheid\ngekwetst\ngekwetste\ngekwetstheid\ngekwetter\ngekwinkeleer\ngel\ngelaagd\ngelaagdheid\ngelaarsd\ngelaat\ngelaatkunde\ngelaatkundige\ngelaatshoek\ngelaatskleur\ngelaatsspier\ngelaatstint\ngelaatstrek\ngelaatstrekken\ngelaatstype\ngelaatsuitdrukking\ngelach\ngeladenheid\ngelag\ngelagerd\ngelagkamer\ngelagzaal\ngelal\ngelambriseerd\ngelamelleerd\ngelamenteer\ngelande\ngelardeerd\ngelasten\ngelastigde\ngelaten\ngelatenheid\ngelatine\ngelatineblaadje\ngelatinepudding\ngelatineus\ngelauwerd\ngelazer\ngeld\ngeldadel\ngeldafpersing\ngeldaristocratie\ngeldauto\ngeldautomaat\ngeldbedrag\ngeldbeheer\ngeldbelegging\ngeldbeleid\ngeldbeugel\ngeldbeurs\ngeldbijdrage\ngeldboete\ngeldbron\ngeldbuidel\ngeldcassette\ngeldcircuit\ngeldcirculatie\ngelddorst\ngeldduivel\ngeldeenheid\ngeldelijk\ngelden\ngeldend\ngeldgebrek\ngeldgever\ngeldgewin\ngeldgierig\ngeldgierigheid\ngeldgroei\ngeldhandel\ngeldhoeveelheid\ngeldhond\ngeldhonger\ngeldig\ngeldigheid\ngeldigheidsduur\ngeldigheidsgebied\ngeldigverklaring\ngelding\ngeldingsdrang\ngeldingskracht\ngeldinjectie\ngeldinstelling\ngeldinzameling\ngeldkas\ngeldkast\ngeldkist\ngeldklopperij\ngeldkoerier\ngeldkoers\ngeldkoffer\ngeldkraan\ngeldkwestie\ngeldla\ngeldlade\ngeldlening\ngeldloper\ngeldmachine\ngeldmagnaat\ngeldmaker\ngeldmarkt\ngeldmarktrente\ngeldmarkttekort\ngeldmiddelen\ngeldnood\ngeldomhaling\ngeldomloop\ngeldomzet\ngeldontwaarding\ngeldopbrengst\ngeldopname\ngeldoverdracht\ngeldpers\ngeldprijs\ngeldprobleem\ngeldroof\ngeldsanering\ngeldschaarste\ngeldschepping\ngeldschieter\ngeldsom\ngeldstandaard\ngeldstelsel\ngeldstraf\ngeldstroom\ngeldstuk\ngeldswaarde\ngeldswaardig\ngeldsysteem\ngeldtas\ngeldtekort\ngeldtransactie\ngeldtransfer\ngeldtransport\ngeldtransportbedrijf\ngeldtransporteur\ngeldtrommel\ngelduitgifte\ngelduitgifteautomaat\ngeldverkeer\ngeldverkwisting\ngeldverlegenheid\ngeldverlies\ngeldvernietiging\ngeldverslindend\ngeldverspilling\ngeldverstrekker\ngeldvoorraad\ngeldvordering\ngeldwaarde\ngeldwagen\ngeldwerving\ngeldwezen\ngeldwinning\ngeldwisselaar\ngeldwisselkantoor\ngeldwolf\ngeldzaak\ngeldzak\ngeldzorgen\ngeldzucht\ngeldzuchtig\ngeldzuivering\ngeleden\ngelederen\ngeleding\ngelee\ngeleed\ngeleedheid\ngeleedpotig\ngeleedpotige\ngeleerd\ngeleerde\ngeleerdheid\ngelegen\ngelegenheid\ngelegenheidsaanvoerder\ngelegenheidsargument\ngelegenheidsband\ngelegenheidscoalitie\ngelegenheidscombinatie\ngelegenheidsdichter\ngelegenheidsformatie\ngelegenheidsgedicht\ngelegenheidsgezicht\ngelegenheidskleding\ngelegenheidsspits\ngelegenheidsstuk\ngelegenheidstrio\ngelegenheidsvers\ngelegenheidswerk\ngelegenheidswetgeving\ngelegenheidszegel\ngelei\ngeleiachtig\ngeleibiljet\ngeleibrief\ngeleid\ngeleidbaarheid\ngeleide\ngeleidebiljet\ngeleidebrief\ngeleidehond\ngeleidelijk\ngeleidelijkheid\ngeleiden\ngeleidend\ngeleider\ngeleiderail\ngeleiderol\ngeleiderollen\ngeleiding\ngeleidingscoëfficiënt\ngeleidingssysteem\ngeleidingsvermogen\ngeleidraad\ngeleidster\ngeleigeest\ngelen\ngeletruidrager\ngeletterd\ngeletterde\ngeletterdheid\ngeleuter\ngeliberaliseerd\ngelid\ngelieerd\ngeliefd\ngeliefde\ngeliefkoosd\ngelieg\ngelieve\ngelieven\ngelig\ngelijk\ngelijk op\ngelijkaardig\ngelijkbenig\ngelijkberechtigd\ngelijkberechtiging\ngelijkblijvend\ngelijkdraads\ngelijke\ngelijkelijk\ngelijken\ngelijkenis\ngelijkertijd\ngelijkerwijs\ngelijkerwijze\ngelijkgerechtigd\ngelijkgerechtigde\ngelijkgericht\ngelijkgesteld\ngelijkgestemd\ngelijkgestemdheid\ngelijkgezind\ngelijkgezinde\ngelijkgezindheid\ngelijkheid\ngelijkheidsbeginsel\ngelijkheidsdenken\ngelijkheidsideaal\ngelijkheidsprincipe\ngelijkheidsstreven\ngelijkhoekig\ngelijkkleurig\ngelijklopen\ngelijkluidend\ngelijkluidendheid\ngelijkmaken\ngelijkmaker\ngelijkmaking\ngelijkmatig\ngelijkmatigheid\ngelijkmoedig\ngelijkmoedigheid\ngelijknamig\ngelijknamigheid\ngelijkrichten\ngelijkrichter\ngelijkrichterbrug\ngelijkschakelen\ngelijkschakeling\ngelijkslachtig\ngelijksoortig\ngelijksoortigheid\ngelijkspanning\ngelijkspanningscomponent\ngelijkspel\ngelijkspelen\ngelijkstaan\ngelijkstandig\ngelijkstellen\ngelijkstelling\ngelijkstemmen\ngelijkstraats\ngelijkstroom\ngelijkstroomcomponent\ngelijkstroominstallatie\ngelijkstroomweerstand\ngelijkteken\ngelijktijdig\ngelijktijdigheid\ngelijktrekken\ngelijktrekking\ngelijkvloers\ngelijkvormig\ngelijkvormigheid\ngelijkvormigheidsattest\ngelijkwaardig\ngelijkwaardigheid\ngelijkzetten\ngelijkzijdig\ngelijkzijdigheid\ngelijnd\ngelijst\ngelik\ngelikt\ngeliktheid\ngelimiteerd\ngelinieerd\ngelling\ngelobby\ngelobd\ngeloei\ngeloer\ngelofte\ngeloken\ngelonk\ngelood\ngeloof\ngeloofsafval\ngeloofsartikel\ngeloofsbeleving\ngeloofsbelijdenis\ngeloofsbewustzijn\ngeloofsbrief\ngeloofsbrieven\ngeloofscrisis\ngeloofsdaad\ngeloofsdwang\ngeloofsgebied\ngeloofsgemeenschap\ngeloofsgenoot\ngeloofsgenote\ngeloofsgetuige\ngeloofsgetuigenis\ngeloofsgroep\ngeloofshaat\ngeloofsheld\ngeloofsidentiteit\ngeloofsijver\ngeloofsinhoud\ngeloofsinvulling\ngeloofskwestie\ngeloofsleer\ngeloofsleven\ngeloofsopvatting\ngeloofsovergang\ngeloofsovertuiging\ngeloofsplicht\ngeloofsprediker\ngeloofspunt\ngeloofsrechter\ngeloofsregel\ngeloofsrichting\ngeloofsstrijd\ngeloofsstuk\ngeloofstraditie\ngeloofsverdediging\ngeloofsverkondiger\ngeloofsverkondiging\ngeloofsvervolging\ngeloofsverzaker\ngeloofsverzaking\ngeloofsvraag\ngeloofsvrijheid\ngeloofswaarheid\ngeloofswereld\ngeloofszaak\ngeloofszekerheid\ngeloofwaardig\ngeloofwaardigheid\ngeloofwaardigheidsprobleem\ngeloop\ngeloven\ngelovig\ngelovige\ngelovigheid\ngelubd\ngelui\ngeluid\ngeluidarm\ngeluidbelasting\ngeluiddempend\ngeluiddemper\ngeluiddicht\ngeluidgevend\ngeluidhinder\ngeluidloos\ngeluidoverlast\ngeluidsabsorberend\ngeluidsafdichting\ngeluidsapparatuur\ngeluidsarchief\ngeluidsarm\ngeluidsband\ngeluidsbarrière\ngeluidsbeeld\ngeluidsbehang\ngeluidsbelasting\ngeluidsbestand\ngeluidsbox\ngeluidsbron\ngeluidscapaciteit\ngeluidscassette\ngeluidscherm\ngeluidsdecor\ngeluidsdrager\ngeluidseffect\ngeluidsfilm\ngeluidsfragment\ngeluidsgolf\ngeluidsgrens\ngeluidshinder\ngeluidsinstallatie\ngeluidsisolatie\ngeluidskaart\ngeluidskunst\ngeluidskwaliteit\ngeluidsleer\ngeluidslieden\ngeluidsman\ngeluidsmateriaal\ngeluidsmeter\ngeluidsmeting\ngeluidsmix\ngeluidsmuur\ngeluidsniveau\ngeluidsnorm\ngeluidsonderzoek\ngeluidsopname\ngeluidsoverdracht\ngeluidsoverlast\ngeluidsprikkel\ngeluidsproductie\ngeluidsreductie\ngeluidsruimte\ngeluidsscherm\ngeluidssignaal\ngeluidssnelheid\ngeluidssterkte\ngeluidsstudio\ngeluidssysteem\ngeluidstechnicus\ngeluidstechnisch\ngeluidsterreur\ngeluidstoren\ngeluidstrilling\ngeluidsverbinding\ngeluidsversterker\ngeluidsversterking\ngeluidsvolume\ngeluidswagen\ngeluidswal\ngeluidswand\ngeluidsweergave\ngeluidswerend\ngeluidswering\ngeluidszone\ngeluidszonering\ngeluidversterker\ngeluidwerend\ngeluidzone\ngeluier\ngeluierd\ngeluimd\ngeluk\ngelukje\ngelukken\ngelukkig\ngelukkigerwijs\ngelukkigerwijze\ngeluksbode\ngeluksdag\ngeluksfactor\ngeluksgetal\ngeluksgevoel\ngeluksgodin\ngelukskind\ngeluksmoment\ngeluksnummer\ngelukspop\ngeluksroes\ngeluksspel\ngeluksstaat\ngeluksster\ngelukstelegram\ngelukstreffer\ngeluksvogel\ngelukswens\ngelukszoeker\ngelukszon\ngelukwens\ngelukwensen\ngelukzak\ngelukzalig\ngelukzalige\ngelukzaligheid\ngelukzoeker\ngelukzoekster\ngelul\ngelule\ngelummel\ngeluw\ngem.\ngemaakt\ngemaaktheid\ngemaal\ngemachtigd\ngemachtigde\ngemak\ngemakkelijk\ngemakkelijkheid\ngemakkelijkheidshalve\ngemakkelijkheidsoplossing\ngemakshalve\ngemaksvoeding\ngemaksvoedsel\ngemakzucht\ngemakzuchtig\ngemalin\ngemanierd\ngemanierdheid\ngemanipuleer\ngemaniëreerd\ngemaniëreerdheid\ngemankeerd\ngemanoeuvreer\ngemarchandeer\ngemarginaliseerde\ngemarineerd\ngemarkeerd\ngemarmerd\ngemartel\ngemaskeerd\ngemaskerd\ngematigd\ngematigdheid\ngematria\ngematteerd\ngember\ngemberbier\ngemberjam\ngemberkoek\ngemberpoeder\ngemberwortel\ngemeden\ngemeen\ngemeend\ngemeengoed\ngemeenheid\ngemeenlandshuis\ngemeenlijk\ngemeenmaking\ngemeenplaats\ngemeenschap\ngemeenschappelijk\ngemeenschappelijkheid\ngemeenschapsaangelegenheid\ngemeenschapsbelang\ngemeenschapscentrum\ngemeenschapsdenken\ngemeenschapsexecutieve\ngemeenschapsgeld\ngemeenschapsgevoel\ngemeenschapshuis\ngemeenschapsinformatie\ngemeenschapskunst\ngemeenschapsleven\ngemeenschapsliturgie\ngemeenschapsminister\ngemeenschapsonderwijs\ngemeenschapsraad\ngemeenschapsrecht\ngemeenschapsregering\ngemeenschapsvoorziening\ngemeenschapsvorm\ngemeenschapsvorming\ngemeenschapszin\ngemeenslachtig\ngemeente\ngemeente-eigendom\ngemeenteadministratie\ngemeenteambtenaar\ngemeentearchief\ngemeentearchivaris\ngemeentebedrijf\ngemeentebegroting\ngemeentebeheer\ngemeentebelasting\ngemeentebeleid\ngemeentebestuur\ngemeentebestuurder\ngemeentebibliotheek\ngemeentedienst\ngemeentefinanciën\ngemeentefonds\ngemeentefunctionaris\ngemeentegarantie\ngemeentegeld\ngemeentegrens\ngemeentegrond\ngemeentehuis\ngemeentekantoor\ngemeentekas\ngemeenteleven\ngemeentelid\ngemeentelijk\ngemeentemandataris\ngemeentemodel\ngemeentemuseum\ngemeentenaam\ngemeentenaar\ngemeenteniveau\ngemeenteontvanger\ngemeentepersoneel\ngemeentepolitie\ngemeentepolitiek\ngemeentepolitiekorps\ngemeenteraad\ngemeenteraadpleging\ngemeenteraadsbeslissing\ngemeenteraadsbesluit\ngemeenteraadscommissie\ngemeenteraadsfractie\ngemeenteraadslid\ngemeenteraadsvergadering\ngemeenteraadsverkiezing\ngemeenterecht\ngemeentereiniging\ngemeentereinigingsdienst\ngemeenterekening\ngemeenteschool\ngemeentesecretarie\ngemeentesecretaris\ngemeentestructuur\ngemeentesubsidie\ngemeenteverkiezing\ngemeenteverordening\ngemeenteverslag\ngemeentevervoerbedrijf\ngemeentevervoersbedrijf\ngemeentevlag\ngemeentevoorlichtster\ngemeentewapen\ngemeentewege\ngemeentewerf\ngemeentewerken\ngemeentewet\ngemeentewoning\ngemeentewoordvoerder\ngemeentewoordvoerster\ngemeenteziekenhuis\ngemeenzaam\ngemeenzaamheid\ngemekker\ngemelijk\ngemelijkheid\ngemenebest\ngemenerd\ngemenerik\ngemengd\ngemengd dubbel\ngemenigheid\ngemet\ngemeubeld\ngemeubileerd\ngemiauw\ngemiddeld\ngemiddelde\ngemier\ngemijmer\ngemijterd\ngemillimeter\ngeminatie\ngemis\ngemodder\ngemodereerd\ngemoed\ngemoedelijk\ngemoedelijkheid\ngemoedereerd\ngemoederen\ngemoedsaandoening\ngemoedsaard\ngemoedsbeweging\ngemoedsbezwaar\ngemoedsgesteldheid\ngemoedsleven\ngemoedsrust\ngemoedsstemming\ngemoedstoestand\ngemoeid\ngemok\ngemompel\ngemond\ngemondialiseerd\ngemonkel\ngemopper\ngemor\ngemoraliseer\ngemorrel\ngemors\ngemot\ngemotiveerd\ngemotiveerdheid\ngemotoriseerd\ngemotst\ngems\ngemsbok\ngemsleren\ngemuilband\ngemunt\ngemurmel\ngemutst\ngemzenjacht\ngemzenleer\ngemêleerd\ngen\ngenaakbaar\ngenaamd\ngenade\ngenadebeeld\ngenadebrood\ngenadegift\ngenadeklap\ngenadeleer\ngenadeloos\ngenadeloosheid\ngenademiddel\ngenadeoord\ngenadeschot\ngenadeslag\ngenadestoot\ngenadetroon\ngenadeverbond\ngenadig\ngenageld\ngenaken\ngendarme\ngendarmerie\ngendefect\ngene\ngenealogie\ngenealogisch\ngenealoog\ngeneesbaar\ngeneesheer\ngeneesheer-directeur\ngeneeskracht\ngeneeskrachtig\ngeneeskruid\ngeneeskruiden\ngeneeskunde\ngeneeskundestudent\ngeneeskundestudente\ngeneeskundig\ngeneeskundige\ngeneeskunst\ngeneeslijk\ngeneesmethode\ngeneesmiddel\ngeneesmiddelenbeleid\ngeneesmiddelenbudget\ngeneesmiddelenfabrikant\ngeneesmiddelengebruik\ngeneesmiddelenindustrie\ngeneesmiddelenmarkt\ngeneesmiddelenonderzoek\ngeneesmiddelenpakket\ngeneesmiddelensector\ngeneesmiddelenverbruik\ngeneesmiddelenvergoedingssysteem\ngeneesmiddelenverkoop\ngeneesmiddelenvoorziening\ngeneesvlees\ngeneeswijze\ngenegen\ngenegenheid\ngeneigd\ngeneigdheid\ngenenbank\ngenenkaart\ngenenmateriaal\ngeneraal\ngeneraal-majoor\ngeneraalsbewind\ngeneraalschap\ngeneraalsrang\ngeneraalsregime\ngeneraalsuniform\ngeneralisatie\ngeneraliseerbaar\ngeneraliseerbaarheid\ngeneraliseren\ngeneralisering\ngeneralissimus\ngeneralist\ngeneralistisch\ngeneraliteit\ngeneratie\ngeneratieconflict\ngeneratief\ngeneratiegebonden\ngeneratiegenoot\ngeneratiegenote\ngeneratiekloof\ngeneratiestudent\ngeneratietijd\ngeneratieverschil\ngeneratiewisseling\ngenerator\ngeneratorbedrijf\ngeneratorset\ngenereerbaar\ngeneren\ngenereren\ngenereus\ngenerfd\ngenerhande\ngeneriek\ngenerisch\ngenerlei\ngenerositeit\ngenese\ngeneselijk\ngenesis\ngenet\ngenetica\ngeneticus\ngenetisch\ngenetkat\ngeneugte\ngeneurie\ngeneuzel\ngenezen\ngenezer\ngenezing\ngenezingskans\ngenezingsproces\ngenezingsverhaal\ngeniaal\ngenialiteit\ngenie\ngenie-eenheid\ngeniehulpbataljon\ngenieofficier\ngeniep\ngeniepark\ngeniepig\ngeniepigerd\ngeniepigheid\ngeniesoldaat\ngenietbaar\ngenieten\ngenieter\ngenieting\ngenietroepen\ngenist\ngenitaal\ngenitaliën\ngenitief\ngenius\ngenocidaal\ngenocide\ngenocidewet\ngenodigde\ngenoeg\ngenoegdoening\ngenoegen\ngenoeglijk\ngenoeglijkheid\ngenoegzaam\ngenoegzaamheid\ngenoemd\ngenoffel\ngenomineerde\ngenoodzaakt\ngenoom\ngenoomonderzoek\ngenoomproject\ngenoot\ngenootschap\ngenootschappelijk\ngenopt\ngenot\ngenotmiddel\ngenotmiddelenindustrie\ngenotrijk\ngenotsmiddel\ngenotsmiddelenindustrie\ngenotsrecht\ngenotteren\ngenotvol\ngenotype\ngenotypisch\ngenotziek\ngenotzoeker\ngenotzucht\ngenotzuchtig\ngenre\ngenreaanduiding\ngenrefilm\ngenrekunst\ngenreschilder\ngenrestuk\ngenretafereel\ngenster\ngentech\ngentechnologie\ngentherapie\ngentiaan\ngentleman\ngentleman's agreement\ngenuanceerd\ngenuanceerdheid\ngenus\ngenvoedsel\ngeobsedeerd\ngeoccupeerd\ngeocentrisch\ngeodeet\ngeodesie\ngeodetisch\ngeoefend\ngeoefendheid\ngeofysica\ngeofysicus\ngeofysisch\ngeograaf\ngeografie\ngeografisch\ngeolied\ngeologe\ngeologie\ngeologisch\ngeoloog\ngeomagnetisme\ngeometrie\ngeometrisch\ngeometrisch-abstract\ngeoogd\ngeoord\ngeoorloofd\ngeoorloofdheid\ngeopolitiek\ngeordend\ngeorganiseer\ngeorganiseerd\ngeorganiseerdheid\ngeostatica\ngeostationair\ngeostrategisch\ngeotechniek\ngeothermisch\ngeoutilleerd\ngeouwehoer\ngepaald\ngepaard\ngepalaver\ngepalmd\ngepantserd\ngeparaffineerd\ngepareld\ngeparenteerd\ngeparfumeerd\ngepassioneerd\ngepassioneerdheid\ngepast\ngepasteuriseerd\ngepastheid\ngepatenteerd\ngepavoiseerd\ngepeesd\ngepeins\ngepekeld\ngepenseeld\ngepensioneerd\ngepensioneerde\ngepeperd\ngepermitteerd\ngepeupel\ngepeuter\ngepieker\ngepiep\ngepijnd\ngepikeerd\ngeplaatst\ngeplas\ngeplekt\ngeplisseerd\ngeploeter\ngeplogenheid\ngepluimd\ngepluimte\ngepluk\ngepoch\ngepoft\ngepokt\ngepokt en gemazeld\ngepolsterd\ngepoot\ngeporteerd\ngeposeerd\ngepost\ngepraat\ngepredisponeerd\ngepreek\ngeprefabriceerd\ngepremieerd\ngepreoccupeerd\ngepresseerd\ngeprevel\ngepriegel\ngeprikkeld\ngeprikkeldheid\ngeprivatiseerd\ngeprivilegieerd\ngeprofest\ngeprogrammeerd\ngepromoveerd\ngepromoveerde\ngeprononceerd\ngeproportioneerd\ngepruikt\ngepruts\ngepruttel\ngepuf\ngepunt\ngepurperd\ngepuzzel\ngeraadzaam\ngeraakt\ngeraaktheid\ngeraamte\ngeraas\ngeraaskal\ngeradbraakt\ngeraden\ngeraffineerd\ngeraken\ngerammel\ngerand\ngerandomiseerd\ngerangschikt\ngeranium\ngeraniumplant\ngerant\ngeratel\ngerbera\ngerbil\ngerecht\ngerechtelijk\ngerechtigd\ngerechtigde\ngerechtigdheid\ngerechtigheid\ngerechtsauditeur\ngerechtsbode\ngerechtsdag\ngerechtsdeurwaarder\ngerechtsdienaar\ngerechtsdossier\ngerechtsgebouw\ngerechtshof\ngerechtskosten\ngerechtsplaats\ngerechtstolk\ngerechtszaal\ngerechtvaardigd\ngerechtvaardigdheid\ngeredde\ngeredder\ngeredekavel\ngeredelijk\ngeredeneer\ngereed\ngereedheid\ngereedhouden\ngereedkomen\ngereedleggen\ngereedliggen\ngereedmaken\ngereedmelding\ngereedschap\ngereedschapskast\ngereedschapskist\ngereedschapsmachine\ngereedschapsmagazijn\ngereedschapsreiniger\ngereedschapswisselaar\ngereedschapszak\ngereedschapwisseling\ngereedstaan\ngereedzetten\ngereformeerd\ngereformeerd-vrijgemaakt\ngereformeerd-vrijgemaakte\ngereformeerde\ngeregel\ngeregeld\ngereglementeerd\ngerei\ngereis\ngereken\ngerekt\ngerelateerd\ngerelaxt\ngeremd\ngeremdheid\ngeren\ngerenommeerd\ngerent\ngereputeerd\ngereserveerd\ngereserveerdheid\ngeresigneerd\ngerespecteerd\ngereutel\ngergel\ngeriater\ngeriatrie\ngeriatrisch\ngeribbeld\ngeribd\ngericht\ngerichtheid\ngerichtsdag\ngeridderd\ngerief\ngeriefelijk\ngeriefelijkheid\ngerieflijk\ngerieve\ngerieven\ngerij\ngerijmel\ngerijpt\ngerimpeld\ngering\ngeringer\ngeringheid\ngeringschatten\ngeringschattend\ngeringschatting\ngerinkel\ngeritsel\ngermaniseren\ngermanisme\ngermanist\ngermanistiek\ngermanistisch\ngermanium\ngerochel\ngeroddel\ngeroep\ngeroepen\ngeroepene\ngeroezemoes\ngeroffel\ngerokt\ngerommel\ngeronk\ngeronnen\ngerontocratie\ngerontofiel\ngerontofilie\ngerontologie\ngerontologisch\ngerontoloog\ngerook\ngerookt\ngerotzooi\ngeroutineerd\ngerst\ngerstakker\ngerstebier\ngerstebrood\ngerstedrank\ngerstekorrel\ngerstemeel\ngersten\ngerstenat\ngerstepap\ngerstewater\ngerstkorrel\ngerucht\ngeruchtencircuit\ngeruchtenmachine\ngeruchtenmolen\ngeruchtenstroom\ngeruchtenvorming\ngeruchtmakend\ngeruchtvorming\ngeruggensteund\ngerugsteund\ngeruim\ngeruime tijd\ngeruis\ngeruisarm\ngeruisloos\ngeruisloosheid\ngeruit\ngerundium\ngerundivum\ngerust\ngerustheid\ngeruststellen\ngeruststellend\ngeruststelling\ngeruzie\ngeruïneerd\nges\ngesabbel\ngesakker\ngesalarieerd\ngesappel\ngesar\ngesatineerd\ngesausd\ngesaust\ngesauteerd\ngeschaard\ngeschakeerd\ngeschal\ngeschapen\ngescharrel\ngeschater\ngescheept\ngescheiden\ngescheidenheid\ngeschelpt\ngeschenk\ngeschenkboekje\ngeschenkbon\ngeschenkenregeling\ngeschenkverpakking\ngeschept\ngescherm\ngeschetter\ngeschiedbeeld\ngeschiedbron\ngeschieden\ngeschiedenis\ngeschiedenisboek\ngeschiedenisdocent\ngeschiedenisfilosofie\ngeschiedenisleraar\ngeschiedenisles\ngeschiedenisonderwijs\ngeschiedenisprogramma\ngeschiedenisstudent\ngeschiedenisstudie\ngeschiedfilosofisch\ngeschiedkunde\ngeschiedkundig\ngeschiedkundige\ngeschiedopvatting\ngeschiedschrijver\ngeschiedschrijving\ngeschiedsvervalsing\ngeschiedverhaal\ngeschiedvervalsing\ngeschiedvorser\ngeschiedvorsing\ngeschiedwerk\ngeschiedwetenschap\ngeschiet\ngeschift\ngeschikt\ngeschiktheid\ngeschil\ngeschillenbeslechting\ngeschillencommissie\ngeschillenregeling\ngeschilpunt\ngeschilsituatie\ngeschimmeld\ngeschimp\ngeschipper\ngeschitter\ngeschmier\ngeschoeid\ngeschoktheid\ngeschoold\ngeschooldheid\ngeschouderd\ngeschraap\ngeschramd\ngeschrankt\ngeschreeuw\ngeschrei\ngeschrift\ngeschrifte\ngeschriftenbescherming\ngeschrijf\ngeschrok\ngeschubd\ngeschuif\ngeschuifel\ngeschuind\ngeschulpt\ngeschut\ngeschutgieterij\ngeschutkoepel\ngeschutskoepel\ngeschutstelling\ngeschutter\ngeschuttoren\ngeschutvuur\ngesco\ngesel\ngeselaar\ngeselbroeder\ngeselen\ngeseling\ngeselkolom\ngeselkoord\ngeselpaal\ngeselroede\ngeselstraf\ngesepareerd\ngeseponeerd\ngeserreerd\ngesetteld\ngesis\ngesitueerd\ngesjacher\ngesjeesd\ngesjochten\ngesjoemel\ngesjok\ngesjor\ngesjouw\ngeslaagd\ngeslaagde\ngeslacht\ngeslachtelijk\ngeslachtkunde\ngeslachtloos\ngeslachtsbepaling\ngeslachtsboom\ngeslachtscel\ngeslachtschromosoom\ngeslachtsdaad\ngeslachtsdeel\ngeslachtsdrift\ngeslachtsgebonden\ngeslachtsgemeenschap\ngeslachtshormoon\ngeslachtskenmerk\ngeslachtskeuze\ngeslachtsklier\ngeslachtsleven\ngeslachtslijst\ngeslachtsloos\ngeslachtsnaam\ngeslachtsorgaan\ngeslachtsregel\ngeslachtsregister\ngeslachtsrijp\ngeslachtsverandering\ngeslachtsverhouding\ngeslachtsverkeer\ngeslachtswapen\ngeslachtsziekte\ngeslachtsziektebestrijding\ngeslagen\ngesleep\ngeslepen\ngeslepenheid\ngesleutel\ngesloten\ngeslotenheid\ngesluierd\ngeslurp\ngesmaad\ngesmaakt\ngesmeek\ngesmeerd\ngesmoord\ngesnap\ngesnater\ngesnauw\ngesnerp\ngesneuvelde\ngesnik\ngesnor\ngesnotter\ngesnuffel\ngesnuif\ngesnurk\ngesodemieter\ngesofisticeerd\ngesofistikeerd\ngesoigneerd\ngesol\ngesorteerd\ngesp\ngespan\ngespannen\ngespannenheid\ngespartel\ngespecialiseerd\ngespeculeer\ngespeel\ngespeend\ngespekt\ngespen\ngespetter\ngespierd\ngespierdheid\ngespikkeld\ngespin\ngespitst\ngespleten\ngespletenheid\ngespoord\ngesprek\ngesprekkosten\ngespreksaanbod\ngespreksaanvraag\ngespreksanalyse\ngespreksavond\ngespreksbehandeling\ngesprekscentrum\ngespreksduur\ngespreksfrequentie\ngespreksgenoot\ngespreksgroep\ngesprekskosten\ngespreksleider\ngespreksleidster\ngespreksnotitie\ngespreksoefening\ngespreksonderwerp\ngesprekspartner\ngesprekspunt\ngespreksronde\ngesprekssituatie\ngespreksstof\ngesprekstafel\ngesprekstechniek\ngespreksthema\ngesprekstherapie\ngesprekstraining\ngespreksvaardigheid\ngespreksverslag\ngespreksvoering\ngespreksvoorbereiding\ngespreksvorm\ngesprekvorm\ngespriem\ngespring\ngespuis\ngesputter\ngespuug\ngestaag\ngestaagd\ngestaald\ngestadig\ngestadigheid\ngestalte\ngestaltpsychologie\ngestamel\ngestamp\ngestand blijven\ngestand doen\ngestart\ngeste\ngesteente\ngesteentelaag\ngesteggel\ngestel\ngesteld\ngesteldheid\ngesteltenis\ngestemd\ngesteriliseerd\ngesternte\ngesteun\ngesticht\ngesticulatie\ngesticuleren\ngestie\ngestileerd\ngestippeld\ngestipt\ngestoei\ngestoeld\ngestoelte\ngestoffeerd\ngestommel\ngestook\ngestoord\ngestoorde\ngestoordheid\ngestorvene\ngestotter\ngestrafte\ngestreept\ngestrekt\ngestreng\ngestrengd\ngestrengelijk\ngestrengheid\ngestrest\ngestroomlijnd\ngestropt\ngestructureerd\ngestructureerdheid\ngestudeerd\ngestudeerde\ngestuikt\ngestuntel\ngesuikerd\ngesuis\ngesukkel\ngesynthetiseerd\nget.\ngetaand\ngetailleerd\ngetakt\ngetal\ngetalenteerd\ngetallenleer\ngetallenpaar\ngetallenreeks\ngetallensymboliek\ngetalm\ngetalmerk\ngetalnotatie\ngetalscongruentie\ngetalsmatig\ngetalsrepresentatie\ngetalsterkte\ngetalsverhouding\ngetalswaarde\ngetaltheorie\ngetalwaarde\ngetand\ngetapt\ngetater\ngeteem\ngeteisem\ngetekend\ngetekende\ngetelefoneer\ngetetter\ngetheoretiseer\ngetier\ngetij\ngetijbeweging\ngetijcentrale\ngetijde\ngetijdenbeweging\ngetijdenboek\ngetijdenenergie\ngetijdengebied\ngetijdenstroom\ngetijdenverschil\ngetijdenwater\ngetijdenwerking\ngetijgerd\ngetijhaven\ngetijrivier\ngetijstroom\ngetijtafel\ngetijverschil\ngetijzone\ngetik\ngetikt\ngetimbreerd\ngetimmer\ngetimmerte\ngetingel\ngetinkel\ngetint\ngetiteld\ngetjilp\ngetob\ngetoeter\ngetogen\ngetokkel\ngetourmenteerd\ngetouw\ngetouwtrek\ngetraind\ngetralied\ngetrappel\ngetrapt\ngetreiter\ngetrek\ngetreuzel\ngetril\ngetrippel\ngetroebleerd\ngetroffen\ngetroffene\ngetrommel\ngetrompetter\ngetroost\ngetroosten\ngetrost\ngetrouw\ngetrouwd\ngetrouwde\ngetrouwe\ngetrouwelijk\ngetrouwheid\ngetrouwheidskaart\ngetrouwheidspremie\ngetrouwtrek\ngetto\ngettoachtig\ngettoblaster\ngettovorming\ngetuig\ngetuigd\ngetuige\ngetuige à decharge\ngetuige-deskundige\ngetuigen\ngetuigenbank\ngetuigenbewijs\ngetuigengeld\ngetuigenis\ngetuigenispolitiek\ngetuigenverhoor\ngetuigenverklaring\ngetuigenverslag\ngetuigschrift\ngetuit\ngetuur\ngetweeën\ngetwijfel\ngeul\ngeur\ngeuren\ngeurhinder\ngeurig\ngeurigheid\ngeurlijn\ngeurloos\ngeurmaker\ngeurnorm\ngeuronderzoek\ngeuroverlast\ngeurspoor\ngeurstof\ngeurtje\ngeurvlag\ngeus\ngeut\ngeuze\ngeuzelambiek\ngeuzenbende\ngeuzenlied\ngeuzennaam\ngeuzenpartij\ngeuzenpenning\ngeuzenvlag\ngevaar\ngevaarlijk\ngevaarlijkheid\ngevaarloos\ngevaarscriterium\ngevaarsignaal\ngevaarte\ngevaarvol\ngevader\ngeval\ngevallen\ngevallene\ngevalsbehandeling\ngevalsbeschrijving\ngevalstudie\ngevang\ngevangen\ngevangenbewaarder\ngevangene\ngevangenenkamp\ngevangenenopstand\ngevangenenruil\ngevangenheid\ngevangenhouding\ngevangenis\ngevangenisbeleid\ngevangenisbevolking\ngevangenisbewaarder\ngevangeniscapaciteit\ngevangeniscel\ngevangeniscomplex\ngevangenisdirecteur\ngevangenisdirectie\ngevangenisdrama\ngevangeniseiland\ngevangeniskleren\ngevangenismuur\ngevangenisoproer\ngevangenisopstand\ngevangenispak\ngevangenispersoneel\ngevangenispoort\ngevangenispopulatie\ngevangenispredikant\ngevangenispsycholoog\ngevangenisregime\ngevangenisstraf\ngevangenissysteem\ngevangeniswezen\ngevangenkamp\ngevangenname\ngevangennemen\ngevangenneming\ngevangenpoort\ngevangenschap\ngevangenwagen\ngevangenzetten\ngevangenzetting\ngevangenzitten\ngevankelijk\ngevarendriehoek\ngevarengeld\ngevarenklasse\ngevarenpremie\ngevarentoeslag\ngevarenzone\ngevarieerd\ngevarieerdheid\ngevat\ngevatheid\ngevecht\ngevechtsactie\ngevechtseenheid\ngevechtservaring\ngevechtsformatie\ngevechtsgroep\ngevechtshandeling\ngevechtshelikopter\ngevechtsklaar\ngevechtskracht\ngevechtslinie\ngevechtspak\ngevechtspauze\ngevechtspiloot\ngevechtsstelling\ngevechtstank\ngevechtstenue\ngevechtsterrein\ngevechtstoestel\ngevechtstoren\ngevechtstroepen\ngevechtsuitrusting\ngevechtsvlieger\ngevechtsvliegtuig\ngevechtsvoertuig\ngevechtswaarde\ngevechtswagen\ngevechtszone\ngevederd\ngevederte\ngeveerd\ngeveinsd\ngeveinsde\ngeveinsdheid\ngevel\ngevelbeeld\ngevelbehandeling\ngevelbekleding\ngevelconstructie\ngevelgedeelte\ngevelimpregnatie\ngevelisolatie\ngevelkachel\ngevelklinker\ngevelkozijn\ngevellijst\ngevelopening\ngeveloppervlak\ngevelornament\ngevelouteerd\ngevelpaneel\ngevelramen\ngevelreclame\ngevelrij\ngevelsteen\ngeveltekening\ngeveltimmerwerk\ngeveltoerist\ngeveltop\ngeveltrap\ngevelversiering\ngevelwand\ngeven\ngever\ngeverfd\ngevergeerd\ngevernist\ngeverseerd\ngevest\ngevestigd\ngevierd\ngevieren\ngevind\ngevingerd\ngevitaminiseerd\ngevlamd\ngevleesd\ngevlei\ngevleid\ngevlekt\ngevlerkt\ngevleugeld\ngevlieg\ngevlij\ngevloek\ngevlokt\ngevoeg\ngevoegelijk\ngevoeglijk\ngevoel\ngevoelen\ngevoelig\ngevoeligheid\ngevoelloos\ngevoelloosheid\ngevoelloosmaking\ngevoelsafweer\ngevoelsarm\ngevoelsarmoede\ngevoelsbenadering\ngevoelsbeweging\ngevoelsindruk\ngevoelskant\ngevoelskwestie\ngevoelsleven\ngevoelsmatig\ngevoelsmens\ngevoelsoverweging\ngevoelstemperatuur\ngevoelstype\ngevoelswaarde\ngevoelswereld\ngevoelszaak\ngevoelszenuw\ngevoelszin\ngevoelvol\ngevoerd\ngevogelte\ngevoileerd\ngevolg\ngevolgaanduidend\ngevolglijk\ngevolgschade\ngevolgtrekking\ngevolmachtigd\ngevolmachtigde\ngevondene\ngevorderd\ngevorderde\ngevorkt\ngevormd\ngevraag\ngevraagd\ngevreesd\ngevrij\ngevuld\ngevuldheid\ngewaad\ngewaagd\ngewaagdheid\ngewaand\ngewaar\ngewaarborgd\ngewaard\ngewaardig\ngewaarworden\ngewaarwording\ngewag\ngewagen\ngewand\ngewapend\ngewapenderhand\ngewapper\ngewas\ngewasbescherming\ngewasbeschermingsmiddel\ngewaterd\ngewatteerd\ngewauwel\ngeweeklaag\ngeween\ngeweer\ngeweerkamer\ngeweerkogel\ngeweerkolf\ngeweerlade\ngeweerlicht\ngeweerloop\ngeweermaker\ngeweerpatroon\ngeweerrek\ngeweerschot\ngeweervet\ngeweervuur\ngewei\ngeweld\ngewelddaad\ngewelddadig\ngewelddadigheid\ngewelddelict\ngeweldenaar\ngeweldenarij\ngeweldexplosie\ngeweldgebruik\ngeweldig\ngeweldige\ngeweldinstructie\ngeweldloos\ngeweldloosheid\ngeweldmisdrijf\ngeweldpleger\ngeweldpleging\ngeweldscriminaliteit\ngeweldsdaad\ngeweldsdelict\ngeweldsdreiging\ngeweldsescalatie\ngeweldsexplosie\ngeweldsgebruik\ngeweldsgolf\ngeweldsinstructie\ngeweldsmiddel\ngeweldsmisdrijf\ngeweldsmonopolie\ngeweldsorgie\ngeweldspiraal\ngeweldsspiraal\ngeweldsuitbarsting\ngeweldsvideo\ngewelf\ngewelfboog\ngewelfd\ngewelfsel\ngewelfvorm\ngewemel\ngewend\ngewennen\ngewenning\ngewenningsperiode\ngewenningsproces\ngewenst\ngewerveld\ngewest\ngewestbesturen\ngewestbestuur\ngewestelijk\ngewestexecutieve\ngewestminister\ngewestplan\ngewestplanwijziging\ngewestraad\ngewestregering\ngewesttaal\ngewestvertegenwoordiger\ngewestvorming\ngeweten\ngewetenloos\ngewetenloosheid\ngewetensangst\ngewetensbezwaar\ngewetensbezwaarde\ngewetensconflict\ngewetensdwang\ngewetensgeld\ngewetensgevangene\ngewetenskwestie\ngewetensnood\ngewetensonderzoek\ngewetensvol\ngewetensvraag\ngewetensvrijheid\ngewetenswroeging\ngewetenszaak\ngewettigd\ngeweven\ngewezen\ngewicht\ngewichtheffen\ngewichtheffer\ngewichtig\ngewichtigdoenerij\ngewichtigheid\ngewichtloos\ngewichtloosheid\ngewichtsafname\ngewichtsbesparing\ngewichtscontrole\ngewichtscurve\ngewichtsdaling\ngewichtsdeel\ngewichtseenheid\ngewichtseis\ngewichtsherstel\ngewichtsklasse\ngewichtsloos\ngewichtsloosheid\ngewichtsstijging\ngewichtstoename\ngewichtstrap\ngewichtsverdeling\ngewichtsverlies\ngewichtsvermeerdering\ngewichtsvermindering\ngewiebel\ngewiekst\ngewiekstheid\ngewiekt\ngewijd\ngewijsde\ngewijzigd\ngewild\ngewildheid\ngewillig\ngewilligheid\ngewimperd\ngewin\ngewinnen\ngewinzoeker\ngewinzucht\ngewirwar\ngewis\ngewisheid\ngewoel\ngewold\ngewolkt\ngewolkte\ngewond\ngewonde\ngewondentransport\ngewoon\ngewoonheid\ngewoonlijk\ngewoonte\ngewoontedier\ngewoontedrinker\ngewoontegebaar\ngewoontegedrag\ngewoontegetrouw\ngewoontemens\ngewoontemisdadiger\ngewoonterecht\ngewoontevorming\ngewoontjes\ngewoonweg\ngeworden\ngewormte\ngeworstel\ngeworteld\ngewricht\ngewrichtsaandoening\ngewrichtsband\ngewrichtsklachten\ngewrichtsknobbel\ngewrichtsontsteking\ngewrichtspijn\ngewrichtsreumatiek\ngewrichtsverstijving\ngewrichtsziekte\ngewriemel\ngewrocht\ngewroet\ngewrongen\ngezaag\ngezaagd\ngezag\ngezagdraagster\ngezagdrager\ngezaghebbend\ngezaghebbende\ngezaghebbendheid\ngezaghebber\ngezagsapparaat\ngezagscrisis\ngezagsdrager\ngezagsgetrouw\ngezagshandhaving\ngezagsorgaan\ngezagspositie\ngezagsstructuur\ngezagsuitoefening\ngezagsvacuüm\ngezagsverhouding\ngezagsvol\ngezagvoerder\ngezagvol\ngezakt\ngezalfde\ngezamenlijk\ngezamenlijkheid\ngezang\ngezangboek\ngezangbundel\ngezangenboek\ngezangenbundel\ngezanik\ngezant\ngezantschap\ngezantschapsattaché\ngezantschapsraad\ngezantschapssecretaris\ngezapig\ngezapigheid\ngezegd\ngezegde\ngezegeld\ngezegend\ngezeglijk\ngezeglijkheid\ngezeik\ngezel\ngezellig\ngezelligheid\ngezelligheidsdier\ngezelligheidsleven\ngezelligheidsmens\ngezelligheidsvereniging\ngezellin\ngezelschap\ngezelschapsdame\ngezelschapsdier\ngezelschapsdrinker\ngezelschapsjuffrouw\ngezelschapslied\ngezelschapsreis\ngezelschapsspel\ngezemel\ngezet\ngezeteld\ngezeten\ngezetheid\ngezeul\ngezeur\ngezever\ngezicht\ngezichtloos\ngezichtsafstand\ngezichtsas\ngezichtsbedrog\ngezichtsbepalend\ngezichtscentrum\ngezichtseinder\ngezichtshaar\ngezichtsherkenning\ngezichtshoek\ngezichtshuid\ngezichtsindruk\ngezichtskring\ngezichtslijn\ngezichtsloos\ngezichtsmasker\ngezichtsorgaan\ngezichtspunt\ngezichtsscherpte\ngezichtssluier\ngezichtssolarium\ngezichtsstoornis\ngezichtsuitdrukking\ngezichtsveld\ngezichtsverlies\ngezichtsvermogen\ngezichtszenuw\ngezichtszintuig\ngezichtszwakte\ngezichtverlies\ngezien\ngezin\ngezind\ngezindheid\ngezindte\ngezinsarts\ngezinsauto\ngezinsbedrijf\ngezinsbeleid\ngezinsbeperking\ngezinsbijslag\ngezinsbudget\ngezinsconsumptie\ngezinsdrama\ngezinsfinanciën\ngezinsfles\ngezinsgeluk\ngezinsgericht\ngezinsgrootte\ngezinshelpster\ngezinshereniging\ngezinshoofd\ngezinshuis\ngezinshulp\ngezinsinkomen\ngezinskaart\ngezinsleven\ngezinslid\ngezinsloon\ngezinsonderzoek\ngezinspak\ngezinspartij\ngezinspatroon\ngezinsplanning\ngezinspolitiek\ngezinsprobleem\ngezinssamenstelling\ngezinsscheiding\ngezinssituatie\ngezinssociologie\ngezinssocioloog\ngezinsstructuur\ngezinstaak\ngezinstherapeut\ngezinstherapie\ngezinstoelage\ngezinsuitbreiding\ngezinsuitje\ngezinsuitkering\ngezinsverband\ngezinsverdunning\ngezinsvermogen\ngezinsverpakking\ngezinsverpleging\ngezinsvervangend\ngezinsverzorging\ngezinsverzorgster\ngezinsvoogd\ngezinsvoogdij\ngezinsvoogdijinstelling\ngezinsvorming\ngezinsvriendelijk\ngezinswagen\ngezinswoning\ngezinszorg\ngezocht\ngezochtheid\ngezoden\ngezoek\ngezoem\ngezoet\ngezond\ngezondene\ngezondheid\ngezondheidsaspect\ngezondheidsattest\ngezondheidsbeleid\ngezondheidsbescherming\ngezondheidsbevordering\ngezondheidsbudget\ngezondheidscentrum\ngezondheidscertificaat\ngezondheidsclaim\ngezondheidscommissie\ngezondheidscontrole\ngezondheidsdienst\ngezondheidseffect\ngezondheidsenquête\ngezondheidsindex\ngezondheidsinformatie\ngezondheidsinspectie\ngezondheidskolonie\ngezondheidskosten\ngezondheidskunde\ngezondheidskwestie\ngezondheidsleer\ngezondheidsmaatregel\ngezondheidsmarkt\ngezondheidsonderzoek\ngezondheidsorganisatie\ngezondheidspolitie\ngezondheidsprobleem\ngezondheidsprogramma\ngezondheidspsychologie\ngezondheidsraad\ngezondheidsrecht\ngezondheidsredenen\ngezondheidsregio\ngezondheidsrisico\ngezondheidsschade\ngezondheidssector\ngezondheidssituatie\ngezondheidsstatistiek\ngezondheidssysteem\ngezondheidstest\ngezondheidstoestand\ngezondheidsverklaring\ngezondheidsverzekering\ngezondheidsvoorlichting\ngezondheidsvoorziening\ngezondheidswaarschuwing\ngezondheidswerker\ngezondheidswet\ngezondheidswetenschappen\ngezondheidswinst\ngezondheidszaken\ngezondheidszorg\ngezondheidszorgbeleid\ngezondheidszorginstelling\ngezondheidszorgregio\ngezondheidszorgsysteem\ngezondmakertje\ngezondmaking\ngezouten\ngezuig\ngezuip\ngezusters\ngezwaai\ngezwabber\ngezwalk\ngezwam\ngezwatel\ngezweef\ngezwel\ngezwenk\ngezwets\ngezwijmel\ngezwind\ngezwindheid\ngezwoeg\ngezwollen\ngezwollenheid\ngezworen\ngezworene\ngeëerd\ngeëigend\ngeëmancipeerd\ngeëmmer\ngeëmotioneerd\ngeëmployeerde\ngeëngageerd\ngeëngageerdheid\ngeënquêteerde\ngeërfde\ngeëtter\ngeëxalteerd\ngeëxecuteerde\ngeëxperimenteer\ngeëxponeerd\ngeïllustreerd\ngeïmpliceerd\ngeïmponeerd\ngeïmproviseerd\ngeïncrimineerd\ngeïnspireerd\ngeïntegreerd\ngeïnteresseerd\ngeïnterneerde\ngeïntimeerde\ngeïnverteerde\ngeïrriteerd\ngeïrriteerdheid\ngeïsoleerd\ngeïsoleerdheid\ngeünieerd\ngeüniformeerd\ngeürbaniseerd\ngft\ngft-afval\nghi\nghostwriter\ngibbon\ngibbsenergie\ngibus\ngideonsbende\ngids\ngidsen\ngidsfossiel\ngidsfunctie\ngidsland\ngidsrol\ngiebel\ngiebelen\ngiechel\ngiechelen\ngiechelig\ngiegagen\ngiek\ngienje\ngier\ngierbrug\ngieren\ngierennest\ngierenoog\ngierig\ngierigaard\ngierigheid\ngiering\ngierkabel\ngierkar\ngierkelder\ngierkuil\ngierpomp\ngierpont\ngierput\ngierst\ngierstgras\ngierstkorrel\ngiertank\ngiertij\ngierton\ngiervalk\ngierwagen\ngierzwaluw\ngietbeton\ngietbui\ngietcokes\ngieteling\ngieten\ngieter\ngieterij\ngietermodus\ngietgat\ngietijzer\ngietijzeren\ngieting\ngietinstallatie\ngietlepel\ngietlood\ngietmachine\ngietnaad\ngietproces\ngietsel\ngietstaal\ngietstuk\ngiettrechter\ngietvorm\ngietwerk\ngif\ngifangel\ngifbeker\ngifblaas\ngifbrief\ngifgas\ngifgasaanslag\ngifgasaanval\ngifgroen\ngifgrond\ngifkikker\ngifklier\ngiflozing\ngifmenger\ngifmengster\ngifpieper\ngifpijl\ngifpil\ngifplant\ngifproducenten\ngiframp\ngifschandaal\ngifschip\ngifslang\ngifspuit\ngifstof\ngifstorting\ngift\ngiftand\ngiftenaftrek\ngiftig\ngiftigheid\ngiftvrij\ngifvat\ngifvrij\ngifwater\ngifwijk\ngifwolk\ngifzuiger\ngig\ngiga-elektronvolt\ngigabit\ngigabyte\ngigahertz\ngigajoule\ngigant\ngigantisch\ngigantisme\ngigantomanie\ngigaton\ngigawatt\ngigawattuur\ngigolo\ngigue\ngij\ngijk\ngijlieden\ngijlkuip\ngijnblok\ngijpen\ngijzelaar\ngijzelaarscrisis\ngijzelaarskamp\ngijzeldrama\ngijzelen\ngijzelhouder\ngijzeling\ngijzelingsactie\ngijzelingsaffaire\ngijzelingscrisis\ngijzelingsdrama\ngijzelingszaak\ngijzelnemer\ngijzelneming\ngijzelrecht\ngil\ngild\ngilde\ngildeboek\ngildebrief\ngildebrieven\ngildebroeder\ngildedeken\ngildedekens\ngildehuis\ngildekamer\ngildekeur\ngildemeester\ngildepatroon\ngildepatroons\ngildepenning\ngildepenningen\ngildeproef\ngilderecht\ngildewezen\ngildos\ngilet\ngillen\ngiller\ngilles-de-la-tourettesyndroom\ngilletje\ngilling\ngimmick\ngin\ngin-tonic\nginder\nginds\nging\ngingivitis\nginkgo\nginkgo biloba\nginnegappen\nginseng\nginst\ngips\ngipsafgietsel\ngipsbeeld\ngipsbeen\ngipsen\ngipskamer\ngipskarton\ngipskartonplaten\ngipskopieën\ngipsmasker\ngipsmodel\ngipsplaat\ngipsverband\ngipsvlucht\ngipsvorm\ngipsy\ngiraal\ngiraf\ngiraffe\ngiraffenhals\ngiraffennek\ngirant\ngireren\ngirlpower\ngiro\ngiro-overschrijving\ngiroafrekening\ngiroafschrift\ngirobank\ngirobetaalkaart\ngirobetaling\ngirobiljet\ngiroboekje\ngirocheque\ngirodienst\ngirogluren\ngirokaart\ngirokantoor\ngiromaat\ngiromaatpas\ngirondijnen\ngironummer\ngiropas\ngirorekening\ngirosaldo\ngiroverkeer\ngis\ngispen\ngisping\ngissen\ngissing\ngist\ngistachtig\ngistachtige\ngistcel\ngisten\ngister\ngisteravond\ngisteren\ngisterenavond\ngisterenmiddag\ngisterenmorgen\ngisterennacht\ngisterenochtend\ngistermiddag\ngistermorgen\ngisternacht\ngisterochtend\ngistextract\ngisting\ngistingsproces\ngistkuip\ngistpoeder\ngistpoeier\ngistvlok\ngistvlokken\ngiswerk\ngit\ngitaar\ngitaarband\ngitaarduo\ngitaargeluid\ngitaargeweld\ngitaarheld\ngitaarmuziek\ngitaarplaat\ngitaarpop\ngitaarriff\ngitaarrock\ngitaarsolo\ngitaarspel\ngitaarspelende\ngitaarspeler\ngitaarstijl\ngitaarvirtuoos\ngitaarwerk\ngitarist\ngitariste\ngitten\ngitzwart\nglaasje\nglaceren\nglaciaal\nglacis\nglacisweg\nglacé\nglacéhandschoen\nglad\ngladaf\ngladakker\ngladden\ngladdig\ngladgeschoren\ngladharig\ngladheid\ngladheidsbestrijder\ngladheidsbestrijding\ngladhout\ngladhouten\ngladiator\ngladiolus\ngladiool\ngladjakker\ngladjanus\ngladjes\ngladmachine\ngladmaken\ngladschaaf\ngladschaven\ngladscheren\ngladschuren\ngladslijpen\ngladstrijken\ngladweg\nglamour\nglamoureus\nglamourfoto\nglamourwereld\nglamrock\nglans\nglansloos\nglansmachine\nglanspapier\nglansperiode\nglanspunt\nglansrijk\nglansrol\nglanssteen\nglansstijfsel\nglansverf\nglanzen\nglanzer\nglanzig\nglanzing\nglarieogen\nglariën\nglas\nglas in lood\nglas-in-loodraam\nglasaal\nglasaaltje\nglasachtig\nglasareaal\nglasbak\nglasbedrijf\nglasblazen\nglasblazer\nglasblazerij\nglasblazerspijp\nglasbreuk\nglasconstructie\nglascontainer\nglascultuur\nglasdiamant\nglasdicht\nglasdikte\nglasdraad\nglasfabriek\nglasfabrikant\nglasfiber\nglasgerinkel\nglasgevel\nglasgordijn\nglasgroep\nglashandel\nglashard\nglasharmonica\nglashelder\nglasindustrie\nglaskruid\nglaskunst\nglaskunstenaar\nglasmat\nglasnost\nglasoppervlak\nglasoven\nglaspaleis\nglaspapier\nglasparel\nglasplaat\nglasraam\nglasruit\nglasschade\nglasscherf\nglasschijf\nglasschilder\nglasservies\nglasslijper\nglassnijder\nglassoort\nglassponning\nglasteelt\nglastuinbouw\nglastuinbouwbedrijf\nglastuinbouwer\nglastuinbouwgebied\nglastuinder\nglasverf\nglasverwerkend\nglasverzekering\nglasvezel\nglasvezelcommunicatie\nglasvezelkabel\nglasvezellijn\nglasvezelnet\nglasvezelnetten\nglasvezelnetwerk\nglasvezelplamuur\nglasvezelproject\nglasvezelverbinding\nglasvlies\nglaswand\nglaswerk\nglaswinkel\nglaswol\nglaswolplaat\nglaszetter\nglaszuiver\nglauberzout\nglaucoom\nglazen\nglazendoek\nglazenier\nglazenkast\nglazenmaker\nglazenspoeler\nglazenspuit\nglazenwasser\nglazenwasserij\nglazig\nglazigheid\nglazuren\nglazuur\nglazuurlaag\nglazuursel\nglee\ngleed\ngleeën\ngleis\ngletsjer\ngletsjerbaan\ngletsjerijs\ngletsjerpoort\ngletsjerrivier\ngletsjerspleet\ngletsjertong\ngleuf\ngleufhoed\nglibberen\nglibberig\nglibberigheid\nglidkruid\nglijbaan\nglijbekisting\nglijboot\nglijcontact\nglijden\nglijdend\nglijder\nglijgoot\nglijmiddel\nglijpartij\nglijplank\nglijvlak\nglijvlucht\nglimlach\nglimlachen\nglimmen\nglimmer\nglimp\nglimpen\nglimpieper\nglimworm\nglinsteren\nglinsterend\nglinstering\nglip\nglippen\nglipper\nglissando\nglit\nglitter\nglitterjurk\nglitterkostuum\nglitterrock\nglobaal\nglobalisatie\nglobaliseren\nglobalisering\nglobaliseringsproces\nglobalisme\nglobalist\nglobaliteit\nglobe\nglobetrotter\nglobuline\ngloed\ngloednieuw\ngloedvol\ngloeidraad\ngloeien\ngloeiend\ngloeiende\ngloeierig\ngloeihitte\ngloeiing\ngloeikous\ngloeikousje\ngloeilamp\ngloeilampenfabriek\ngloeilamplicht\ngloeilichaam\ngloeilicht\ngloeioven\nglom\nglommen\nglooien\nglooiend\nglooiing\nglooiingshoek\ngloop\ngloor\nglop\ngloren\ngloria\nglorie\ngloriedagen\ngloriedronken\ngloriejaren\ngloriekroon\nglorierijk\nglorietijd\nglorieus\nglorievol\nglorificatie\ngloriëren\nglos\nglossarium\nglosse\nglosseem\nglossen\nglosseren\nglossolalie\nglossy\nglottis\nglottisslag\ngloxinia\nglucose\nglucosegehalte\nglui\ngluipen\ngluiper\ngluiperd\ngluiperig\ngluiperigheid\ngluipers\ngluips\nglunder\nglunderen\ngluren\nglutamine\ngluten\nglutenbrood\nglutenvrij\nglutine\ngluton\ngluurder\ngluurogen\nglycerine\nglycerinezeep\nglycerol\nglycine\nglycogeen\nglycol\nglycoproteïne\nglyfosaat\nglypten\nglyptiek\nglyptotheek\nglühwein\ngneis\ngniffelen\ngnoe\ngnomisch\ngnomon\ngnoom\ngnosis\ngnostici\ngnosticisme\ngnosticus\ngnostiek\ngnostieken\ngnostisch\ngnuiven\ngo\ngoal\ngoalgetter\ngoalie\ngoalkeeper\ngoaltjesdief\ngobelin\ngocart\ngod\ngodallemachtig\ngodbetert\ngoddank\ngoddelijk\ngoddelijkheid\ngoddeloos\ngoddeloosheid\ngoddeloze\ngoddomme\ngoden\ngodenbeeld\ngodendienst\ngodendom\ngodendrank\ngodengestalte\ngodenleer\ngodenmaal\ngodenschemering\ngodenspijs\ngodentelg\ngodenwereld\ngodenzoon\ngodfather\ngodgans\ngodganse\ngodganselijk\ngodgeklaagd\ngodgeleerd\ngodgeleerde\ngodgeleerdheid\ngodgevallig\ngodgewijd\ngodheid\ngodin\ngodlasterend\ngodlievend\ngodlof\ngodloochenaar\ngodloochening\ngodloos\ngodloze\ngodonterend\ngodsakker\ngodsamme\ngodsbeeld\ngodsbegrip\ngodsbesef\ngodsbestaan\ngodsbestuur\ngodsbetrouwen\ngodsbewijs\ngodsdienst\ngodsdienstbeleving\ngodsdienstfanaat\ngodsdienstgeschiedenis\ngodsdienstgeschil\ngodsdiensthaat\ngodsdiensthistoricus\ngodsdienstig\ngodsdienstigheid\ngodsdienstijver\ngodsdienstleer\ngodsdienstleraar\ngodsdienstles\ngodsdienstloos\ngodsdienstoefening\ngodsdienstonderricht\ngodsdienstonderwijs\ngodsdienstonderwijzer\ngodsdienstonderzoeker\ngodsdienstoorlog\ngodsdienstplechtigheid\ngodsdienstplicht\ngodsdienstpsychologie\ngodsdienstsociologie\ngodsdienstsocioloog\ngodsdienststrijd\ngodsdiensttrauma\ngodsdiensttwist\ngodsdienstvorm\ngodsdienstvraag\ngodsdienstvrede\ngodsdienstvrijheid\ngodsdienstwaanzin\ngodsdienstwaanzinnige\ngodsdienstwetenschap\ngodsdienstwetenschapper\ngodsdienstzaak\ngodsdienstzin\ngodservaring\ngodsgebouw\ngodsgeloof\ngodsgenadig\ngodsgericht\ngodsgeschenk\ngodsgruwelijk\ngodshuis\ngodsjammerlijk\ngodslamp\ngodslasteraar\ngodslasterend\ngodslastering\ngodslasterlijk\ngodsmannen\ngodsmogelijk\ngodsonmogelijk\ngodsontkenning\ngodsoordeel\ngodspenning\ngodsspraak\ngodsverduistering\ngodsverering\ngodsverlangen\ngodsvertrouwen\ngodsvolk\ngodsvoorstelling\ngodsvrede\ngodsvrucht\ngodsvruchtig\ngodswil\ngodswonder\ngodverdomme\ngodvergeten\ngodverlaten\ngodvrezend\ngodvrezende\ngodvruchtig\ngodvruchtigheid\ngodzalig\ngodzaligheid\ngodzijdank\ngoed\ngoed komen\ngoedaardig\ngoedaardigheid\ngoedachten\ngoedbedoeld\ngoedbekeken\ngoedbeschouwd\ngoedbetaald\ngoedbloed\ngoeddeels\ngoeddoen\ngoeddunken\ngoede\ngoedemannen\ngoedemiddag\ngoedemorgen\ngoedenacht\ngoedenavond\ngoedendag\ngoederen\ngoederenafgifte\ngoederenbedrijf\ngoederenbehandelaar\ngoederenbeheer\ngoederenbeurs\ngoederenbeweging\ngoederenboek\ngoederenbureau\ngoederencode\ngoederendepot\ngoederenemplacement\ngoederenexport\ngoederenhandel\ngoederenkantoor\ngoederenkrediet\ngoederenlift\ngoederenlijn\ngoederenloods\ngoederenmakelaar\ngoederenmarkt\ngoederenmarkten\ngoederenmateriaal\ngoederenoverslag\ngoederenprijs\ngoederenprijzen\ngoederenrekening\ngoederenruil\ngoederenspoor\ngoederenspoorlijn\ngoederenstation\ngoederenstroom\ngoederentermijnhandel\ngoederentermijnmarkt\ngoederentransport\ngoederentrein\ngoederenuitvoer\ngoederenverkeer\ngoederenvervoer\ngoederenverzekering\ngoederenverzending\ngoederenvoorraad\ngoederenwagen\ngoederenwagon\ngoederhand\ngoedertieren\ngoedertierenheid\ngoedgebekt\ngoedgebouwd\ngoedgeefs\ngoedgeefsheid\ngoedgehumeurd\ngoedgehumeurdheid\ngoedgekleed\ngoedgekozen\ngoedgelovig\ngoedgelovigheid\ngoedgeluimd\ngoedgemutst\ngoedgevigheid\ngoedgevormd\ngoedgevuld\ngoedgewicht\ngoedgezind\ngoedgeïnformeerd\ngoedgunstig\ngoedgunstigheid\ngoedhartig\ngoedhartigheid\ngoedheid\ngoedheilig\ngoedheilige\ngoedheiligman\ngoedig\ngoedigheid\ngoedje\ngoedkeuren\ngoedkeuring\ngoedkeuringsprocedure\ngoedkeuringsstempel\ngoedkeuringstermijn\ngoedkeuringswet\ngoedkoop\ngoedkoopheid\ngoedlachs\ngoedleers\ngoedleven\ngoedlopend\ngoedmaken\ngoedmaker\ngoedmakertje\ngoedmaking\ngoedmarkt\ngoedmoedig\ngoedmoedigheid\ngoednieuwsshow\ngoedpraten\ngoedrond\ngoedschiks\ngoedsmoeds\ngoedspreken\ngoedverkochte\ngoedverzorgd\ngoedvinden\ngoedwillend\ngoedwillende\ngoedwillendheid\ngoedwillig\ngoedwilligheid\ngoedzak\ngoedzakkig\ngoegemeente\ngoeierd\ngoeiig\ngoeiigheid\ngoelag\ngoelijk\ngoeman\ngoeroe\ngoeroeachtig\ngoesting\ngoffer\ngofferd\ngogme\ngogogirl\ngoh\ngoj\ngojim\ngojims\ngojs\ngok\ngokautomaat\ngokautomatenhal\ngokbaas\ngokbedrijf\ngokcircuit\ngokgedrag\ngokhal\ngokhuis\ngokindustrie\ngokkast\ngokken\ngokker\ngoklust\ngoklustig\ngoklustige\ngokmarkt\ngokpaleis\ngokparadijs\ngokschuld\ngoksite\ngokspel\ngokstad\ngoksyndicaat\ngoktent\ngokverslaafde\ngokverslaving\ngokwereld\ngokwerk\ngokwezen\ngold\ngolden\ngolden delicious\ngolden retriever\ngoldrush\ngolem\ngolf\ngolfafvlakkers\ngolfbaan\ngolfbad\ngolfbal\ngolfbereik\ngolfbeweging\ngolfbreker\ngolfbroek\ngolfclub\ngolfcourse\ngolfdal\ngolfen\ngolfenergie\ngolfer\ngolfhoogte\ngolfkampioen\ngolfkarton\ngolflengte\ngolflengtegebied\ngolfliefhebber\ngolflijn\ngolflinks\ngolfpark\ngolfpatroon\ngolfplaat\ngolfsgewijs\ngolfsgewijze\ngolfslag\ngolfslagbad\ngolfspel\ngolfspeler\ngolfstaat\ngolfstick\ngolfstok\ngolftas\ngolfterrein\ngolftheorie\ngolftoernooi\ngolftop\ngolfveld\ngolfvorm\ngolfvormen\ngoliath\ngolven\ngolving\ngom\ngomachtig\ngomarist\ngombal\ngomboom\ngomelastiek\ngomhars\ngommen\ngommetje\ngompapier\ngompie\ngomziekte\ngonade\ngondel\ngondelier\ngondellied\ngondellift\ngondelvaart\ngondola\ngong\ngongslag\ngoniometer\ngoniometrie\ngoniometrisch\ngonje\ngonjezak\ngonorroe\ngons\ngonzen\ngoochelaar\ngoochelaarstruc\ngoochelarij\ngoocheldoos\ngoochelen\ngoochelkunst\ngoochelspel\ngoocheltas\ngoocheltoer\ngoocheltruc\ngoochem\ngoochemerd\ngoodwill\ngoodwillambassadeur\ngoodwillmissie\ngoog\ngoogelen\ngooi\ngooi-en-smijtfilm\ngooi-en-smijtwerk\ngooien\ngoor\ngoorheid\ngoot\ngootgat\ngootlijst\ngootpijp\ngootplank\ngootsteen\ngootsteenontstopper\ngootvormig\ngootwater\ngordel\ngordelband\ngordeldier\ngordelen\ngordelriem\ngordelroos\ngorden\ngordiaans\ngordijn\ngordijnkoord\ngordijnrail\ngordijnring\ngordijnroe\ngordijnroede\ngordijnstof\ngordijnvuur\ngording\ngorgel\ngorgeldrank\ngorgelen\ngorgonzola\ngorig\ngorigheid\ngorilla\ngors\ngorsdijk\ngorsland\ngort\ngortdroog\ngortepap\ngorterij\ngortig\ngortigheid\ngortmolen\ngosjepietje\ngospel\ngospelachtig\ngospelkoor\ngospelmuziek\ngospelsinger\ngospelsong\ngospelzanger\ngossie\ngossip\ngoteling\ngoth\ngothic\ngotiek\ngotisch\ngotspe\ngottegot\ngouache\ngoud\ngoud smeden\ngoudachtig\ngoudader\ngoudafdeling\ngoudamalgaam\ngoudappel\ngoudarend\ngoudbad\ngoudberg\ngoudbeurs\ngoudblad\ngoudblond\ngoudborduursel\ngoudbrokaat\ngoudbrons\ngoudbruin\ngoudclausule\ngouddekking\ngouddelver\ngouddorst\ngouddraad\ngouddruk\ngoudeerlijk\ngouden\ngouden eeuw\ngoudenmedaillewinnaar\ngoudenregen\ngouderts\ngoudfazant\ngoudfolie\ngoudforel\ngoudfrank\ngoudgeel\ngoudgehalte\ngoudgeld\ngoudgerand\ngoudglans\ngoudgraver\ngoudgroeve\ngoudgulden\ngoudhaan\ngoudhaantje\ngoudhamster\ngoudhandel\ngoudharig\ngoudjacht\ngoudkleur\ngoudkleurig\ngoudklomp\ngoudkoers\ngoudkoord\ngoudkoorts\ngoudkoper\ngoudkorrel\ngoudkust\ngoudlaag\ngoudlak\ngoudlaken\ngoudland\ngoudleder\ngoudleer\ngoudlegering\ngoudlelie\ngoudlening\ngoudleren\ngoudlokkig\ngoudmaker\ngoudmarkt\ngoudmerel\ngoudmerk\ngoudmijn\ngoudomrand\ngoudpapier\ngoudplevier\ngoudpoeder\ngoudpoeier\ngoudprijs\ngoudproductie\ngoudrenet\ngoudreserve\ngoudsbloem\ngoudschaal\ngoudschat\ngoudsmederij\ngoudsmid\ngoudstaaf\ngoudstandaard\ngoudstuk\ngoudveld\ngoudverf\ngoudverkoop\ngoudvernis\ngoudvink\ngoudvis\ngoudviskom\ngoudvissenkom\ngoudvlieg\ngoudvlies\ngoudvoorraad\ngoudvos\ngoudwaarde\ngoudwerk\ngoudwinning\ngoudzand\ngoudzoeker\ngoudzucht\ngoulash\ngoulashsoep\ngourmand\ngourmet\ngourmetstel\ngourmetten\ngouvernante\ngouvernement\ngouvernementeel\ngouvernementsambtenaar\ngouvernementsdienst\ngouvernementsgebouw\ngouvernementsvaartuig\ngouverneur\ngouverneur-generaal\ngouverneurschap\ngouverneurszetel\ngouw\ngouwbond\ngouwdag\ngouwe\ngouwenaar\ngouwgraaf\ngozer\ngoëtie\ngps\ngraad\ngraadboog\ngraadmeter\ngraadmeting\ngraadverdeling\ngraaf\ngraafarm\ngraaflijk\ngraafmachine\ngraafschap\ngraafwerk\ngraafwerktuig\ngraafwerkzaamheden\ngraafwesp\ngraag\ngraagheid\ngraagte\ngraai\ngraaicultuur\ngraaien\ngraailoon\ngraal\ngraalridder\ngraalroman\ngraalsage\ngraan\ngraanakker\ngraanbeurs\ngraanbouw\ngraancirkel\ngraanelevator\ngraanexporteur\ngraangewas\ngraangewassen\ngraanhandel\ngraanhandelaar\ngraanjenever\ngraankoper\ngraankorrel\ngraanmarkt\ngraanmolen\ngraanoogst\ngraanpakhuis\ngraanprijs\ngraanproduct\ngraanproductie\ngraanschuur\ngraansector\ngraansilo\ngraansoort\ngraanteelt\ngraanteler\ngraantje\ngraanveld\ngraanverbouw\ngraanzolder\ngraanzuiger\ngraat\ngraatachtig\ngraatmager\ngrabbelaar\ngrabbelen\ngrabbelton\ngracht\ngrachtengordel\ngrachtenhuis\ngrachtenpand\ngrachtwater\ngracieus\ngradatie\ngradeerwerk\ngradenboog\ngraderen\ngradering\ngradiënt\ngraduaat\ngraduale\ngraduatie\ngradueel\ngradueren\ngraecisme\ngraecus\ngraf\ngrafbloem\ngrafdelver\ngrafdicht\ngrafeem\ngrafelijk\ngrafelijkheid\ngrafen\ngrafentheorie\ngraffiti\ngraffitikunst\ngraffitikunstenaar\ngraffito\ngrafgift\ngrafheuvel\ngraficus\ngrafie\ngrafiek\ngrafiekblad\ngrafiet\ngrafietpotlood\ngrafisch\ngrafkamer\ngrafkapel\ngrafkelder\ngrafkrans\ngrafkuil\ngraflegging\ngraflucht\ngrafmaker\ngrafmonument\ngrafologie\ngrafologisch\ngrafoloog\ngrafplaat\ngrafrede\ngrafrust\ngrafschender\ngrafschenner\ngrafschennis\ngrafschilderkunst\ngrafschrift\ngrafsteen\ngrafstem\ngrafstuk\ngrafteken\ngrafterp\ngraftombe\ngrafveld\ngrafwaarts\ngrafwand\ngrafzerk\ngrafzuil\ngram\ngramatoom\ngramcalorie\ngramequivalent\ngramineeën\ngrammatica\ngrammaticaal\ngrammaticacontrole\ngrammaticamodel\ngrammaticaregel\ngrammaticus\ngrammatisch\ngrammofoon\ngrammofoonmuziek\ngrammofoonnaald\ngrammofoonopname\ngrammofoonplaat\ngrammofoonplatenzaak\ngrammolecule\ngramschap\ngramstorig\ngramstorigheid\ngranaat\ngranaataanslag\ngranaataanval\ngranaatappel\ngranaatboom\ngranaathuls\ngranaatinslag\ngranaatkartets\ngranaatscherf\ngranaatsplinter\ngranaattrechter\ngranaatvrij\ngranaatvuur\ngranaatwerper\ngranaten\ngrand café\ngrand prix\ngrand seigneur\ngrand slam\ngrand slams\ngrand-prixtoernooi\ngrand-prixwedstrijd\ngrande\ngrandeur\ngrandezza\ngrandioos\ngrandslamevenement\ngrandslamfinale\ngrandslamtitel\ngrandslamtoernooi\ngrandslamzege\ngranen\ngraniet\ngranietblok\ngranieten\ngranietrots\ngranietsteen\ngranito\ngranman\ngranny smith\ngranulaat\ngranulatie\ngranuleren\ngrap\ngrapdichtheid\ngrapefruit\ngrapefruitsap\ngrapjas\ngrapjassen\ngrapjasserij\ngrappa\ngrappen\ngrappenmaker\ngrappenmakerij\ngrappig\ngrappigheid\ngras\ngrasachtig\ngrasbaan\ngrasbaanrace\ngrasband\ngrasberm\ngrasboter\ngrasbuik\ngrasduinen\ngrasetend\ngrasgewas\ngrasgroei\ngrasgroen\ngrasgrond\ngrashalm\ngrasharing\ngraskaas\ngraskalf\ngraskant\ngraskarper\ngrasklokje\ngrasland\ngraslandjes\ngraslinnen\ngrasmaaien\ngrasmaaier\ngrasmaaimachine\ngrasmaand\ngrasmachine\ngrasmat\ngrasmus\ngraspad\ngrasparkiet\ngrasperk\ngraspieper\ngrasplant\ngrasplein\ngraspol\ngrasrijk\ngrasrol\ngrasroller\ngrasschaar\ngrasscheut\ngrassen\ngrassoort\ngrasspriet\ngrassteppe\ngrastapijt\ngrastennistoernooi\ngrasveld\ngrasvilt\ngrasvlakte\ngraszaad\ngraszode\ngraterig\ngratie\ngratiebeleid\ngratieverlening\ngratieverzoek\ngratificatie\ngratificeren\ngratig\ngratin\ngratineren\ngratis\ngratiëren\ngratiëring\ngratuit\ngrauw\ngrauwachtig\ngrauwbruin\ngrauwe\ngrauwen\ngrauwgeel\ngrauwgors\ngrauwgrijs\ngrauwheid\ngrauwig\ngrauwschildering\ngrauwschimmel\ngrauwsluier\ngrauwtje\ngrauwvuur\ngraveel\ngraveelzand\ngraveerder\ngraveerijzer\ngraveerkunst\ngraveernaald\ngraveersel\ngraveerstaal\ngraveerstift\ngravel\ngravelbaan\ngravelbijter\ngravelseizoen\ngravelspecialist\ngravelspeler\ngraveltoernooi\ngraven\ngravenhuis\ngravenkroon\ngraver\ngraveren\ngraverij\ngravering\ngraveur\ngraviditeit\ngravin\ngravitatie\ngravitatiekracht\ngravitatielens\ngravitatieveld\ngraviteit\ngraviteren\ngravure\ngrazen\ngrazer\ngrazig\ngrazioso\ngreb\ngrebbe\ngreen\ngreenkeeper\ngreep\ngregoriaans\ngrein\ngreinen\ngreineren\ngreinig\ngreintje\ngreling\ngremium\ngrenadier\ngrenadiersmuts\ngrenadine\ngrendel\ngrendelen\ngrendelslot\ngrendelsteen\ngrenen\ngrenenhout\ngrenenhouten\ngrens\ngrensakkoord\ngrensarbeid\ngrensarbeider\ngrensarbeidersregeling\ngrensbedrag\ngrensbewaker\ngrensbewaking\ngrensbewoner\ngrensconflict\ngrenscontrole\ngrenscorrectie\ngrensdorp\ngrensganger\ngrensgebied\ngrensgemeente\ngrensgeschil\ngrensgeval\ngrenshospitium\ngrensincident\ngrenskantoor\ngrenslaag\ngrensland\ngrenslijn\ngrenslinie\ngrensoorlog\ngrensovergang\ngrensoverschrijdend\ngrensoverschrijding\ngrenspaal\ngrenspassage\ngrensperikelen\ngrensplaats\ngrenspolitie\ngrenspost\ngrensprovincie\ngrenspunt\ngrensrechter\ngrensregeling\ngrensregio\ngrensrivier\ngrensscheiding\ngrensschending\ngrenssituatie\ngrensstaat\ngrensstad\ngrensstation\ngrenssteen\ngrensstreek\ngrensstrook\ngrenstroepen\ngrensverandering\ngrensverdrag\ngrensverkeer\ngrensverkenning\ngrensverleggend\ngrensverlegging\ngrensvervaging\ngrensvesting\ngrensvlak\ngrenswaarde\ngrenswacht\ngrenswachter\ngrenswijziging\ngrenswisselkantoor\ngrenszone\ngrenzeloos\ngrenzeloosheid\ngrenzen\ngrepen\ngreppel\ngreppelploeg\ngres\ngresbuis\ngretig\ngretigheid\ngribus\ngrief\ngriek\ngriel\ngrielen\ngriend\ngriendbaas\ngriendhout\ngriendkade\ngriendland\ngriendwaard\ngrienen\ngriener\ngrienerig\ngriep\ngriepaanval\ngriepachtig\ngriepepidemie\ngrieperig\ngriepgolf\ngriepinjectie\ngrieppatiënt\ngriepprik\ngriepseizoen\ngriepvaccin\ngriepvaccinatie\ngriepvirus\ngries\ngriesmeel\ngriesmeelpudding\ngriet\ngrietenij\ngrietfilet\ngrietje\ngrietman\ngrieve\ngrieven\ngrievend\ngrieventrommel\ngriezel\ngriezelen\ngriezelfilm\ngriezelig\ngriezeligheid\ngriezeling\ngriezelroman\ngriezelverhaal\ngrif\ngriffel\ngriffelen\ngriffelkoker\ngriffen\ngriffie\ngriffiegeld\ngriffiekosten\ngriffier\ngriffierecht\ngriffierschap\ngriffioen\ngrift\ngrifweg\ngrijn\ngrijnen\ngrijns\ngrijnslach\ngrijnslachen\ngrijnzaard\ngrijnzen\ngrijnzend\ngrijp\ngrijparm\ngrijpbaar\ngrijpemmer\ngrijpen\ngrijper\ngrijpers\ngrijpgraag\ngrijphoogte\ngrijpreflex\ngrijpstaart\ngrijpstaartaap\ngrijpstuiver\ngrijpvogel\ngrijs\ngrijs-wit\ngrijs-zwart\ngrijsaard\ngrijsachtig\ngrijsblauw\ngrijsbruin\ngrijsgedraaid\ngrijsgroen\ngrijsharig\ngrijsheid\ngrijskop\ngrijsrijden\ngrijsrijder\ngrijstint\ngrijswit\ngrijszwart\ngrijzen\ngrijzig\ngrijzigheid\ngril\ngrill\ngrille\ngrillen\ngrilleren\ngrillig\ngrilligheid\ngrillpan\ngrillroom\ngrim\ngrimas\ngrimassen\ngrime\ngrimeren\ngrimeur\ngrimeuse\ngrimeuses\ngrimlach\ngrimlachen\ngrimmen\ngrimmig\ngrimmigheid\ngrind\ngrindbank\ngrinden\ngrindgat\ngrindgrond\ngrindlaag\ngrindpad\ngrindweg\ngrindwinning\ngrindzand\ngrinniken\ngrint\ngrinten\ngrintgat\ngriot\ngriotje\ngrip\ngrisaille\ngrissen\ngrit\ngritstralen\ngrizzly\ngrizzlybeer\ngroede\ngroef\ngroefbeitel\ngroefschaaf\ngroei\ngroei-impuls\ngroei-initiatief\ngroeiaandeel\ngroeiachterstand\ngroeibedrijf\ngroeibedrijven\ngroeibeleid\ngroeibevorderaar\ngroeibrief\ngroeibriljant\ngroeicapaciteit\ngroeicijfer\ngroeicurve\ngroeidynamiek\ngroeien\ngroeier\ngroeifactor\ngroeifase\ngroeifinanciering\ngroeifonds\ngroeigebied\ngroeigemeente\ngroeigroep\ngroeiherstel\ngroeihormoon\ngroeihypotheek\ngroeikans\ngroeikapitaal\ngroeikern\ngroeikracht\ngroeilanden\ngroeimachine\ngroeimarkt\ngroeimiddel\ngroeimodel\ngroeimotor\ngroeiniveau\ngroeipad\ngroeipatroon\ngroeipercentage\ngroeiperiode\ngroeiperspectief\ngroeipijn\ngroeiplaats\ngroeiplan\ngroeipool\ngroeipotentie\ngroeipotentieel\ngroeiproces\ngroeiproduct\ngroeiprognose\ngroeipunt\ngroeiraming\ngroeiritme\ngroeiruimte\ngroeiscenario\ngroeischijf\ngroeisector\ngroeisegment\ngroeiseizoen\ngroeisel\ngroeisnelheid\ngroeispurt\ngroeistad\ngroeistof\ngroeistoornis\ngroeistrategie\ngroeistuip\ngroeitempo\ngroeitop\ngroeitrend\ngroeiverhaal\ngroeiverschil\ngroeiversnelling\ngroeivertraging\ngroeiverwachting\ngroeivoet\ngroeivoorspelling\ngroeizaam\ngroeizaamheid\ngroen\ngroen geverfd\ngroen-wit\ngroenachtig\ngroenafval\ngroenarm\ngroenbeheer\ngroenbeleid\ngroenbeleidsplan\ngroenbemesters\ngroenbemesting\ngroenbestemming\ngroenblauw\ngroenblijvend\ngroenblijver\ngroenboek\ngroenboer\ngroencertificaat\ngroendienst\ngroendomein\ngroendomeinen\ngroene\ngroenelement\ngroenelementen\ngroenen\ngroenetruidrager\ngroenfonds\ngroengebied\ngroengeel\ngroengordel\ngroengrond\ngroengronden\ngroenharing\ngroenheid\ngroenhout\ngroenig\ngroenigheid\ngroenland\ngroenling\ngroenlof\ngroenloop\ngroenlopen\ngroenmarkt\ngroenonderhoud\ngroenopleiding\ngroenplan\ngroenpootruiter\ngroenprogramma\ngroenproject\ngroenregeling\ngroensel\ngroensingel\ngroensteen\ngroenstrook\ngroenstructuur\ngroenstructuurplan\ngroente\ngroenteafdeling\ngroenteafval\ngroentebed\ngroenteboer\ngroentebouillon\ngroentegerecht\ngroentehal\ngroentehandel\ngroentehandelaar\ngroentekar\ngroentekraam\ngroentekweker\ngroenteman\ngroentemarkt\ngroentesap\ngroentesaus\ngroenteschotel\ngroentesoep\ngroentesoort\ngroenteteelt\ngroenteteler\ngroentetuin\ngroenteveiling\ngroentevrouw\ngroentewinkel\ngroentezaak\ngroentijd\ngroentje\ngroenvink\ngroenvoeder\ngroenvoer\ngroenvoorziening\ngroenwerker\ngroenzone\ngroep\ngroepage\ngroepagedienst\ngroepen\ngroepenkast\ngroepenoverzicht\ngroepenpresentatie\ngroepenstructuur\ngroepensysteem\ngroepentheorie\ngroeperen\ngroepering\ngroepsactiviteit\ngroepsbelang\ngroepsbericht\ngroepsberichten\ngroepscode\ngroepscommandant\ngroepscontrole\ngroepscultuur\ngroepsdans\ngroepsdenken\ngroepsdirecteur\ngroepsdirectie\ngroepsdiscussie\ngroepsdruk\ngroepsdynamica\ngroepsexpositie\ngroepsformatie\ngroepsfoto\ngroepsgebeuren\ngroepsgebonden\ngroepsgedrag\ngroepsgeluid\ngroepsgemiddelde\ngroepsgesprek\ngroepsgevoel\ngroepsgeweld\ngroepsgewijs\ngroepsgewijze\ngroepsgrootte\ngroepshuisvesting\ngroepsideologie\ngroepsindeling\ngroepsinstructie\ngroepskeuze\ngroepsleerkracht\ngroepsleider\ngroepsleiding\ngroepsleidster\ngroepslid\ngroepslidmaatschap\ngroepsmentaliteit\ngroepsnaam\ngroepsnieuws\ngroepsniveau\ngroepsnorm\ngroepsnummer\ngroepsomzet\ngroepsopbouw\ngroepsopdracht\ngroepsportret\ngroepspraktijk\ngroepsproces\ngroepsprogramma\ngroepspsychotherapeut\ngroepsraad\ngroepsrecht\ngroepsreis\ngroepsresultaat\ngroepsrisico\ngroepsruimte\ngroepsseks\ngroepsstructuur\ngroepstaal\ngroepstarief\ngroepstentoonstelling\ngroepstherapeut\ngroepstherapie\ngroepstraining\ngroepsverband\ngroepsvergadering\ngroepsverkrachting\ngroepsverschijnsel\ngroepsverslag\ngroepsverslagen\ngroepsvervoer\ngroepsverzekering\ngroepsverzorging\ngroepsvormend\ngroepsvorming\ngroepswedstrijd\ngroepswerk\ngroepswinnaar\ngroepswinst\ngroepswonen\ngroeptaal\ngroet\ngroeten\ngroetenis\ngroetjes\ngroetplicht\ngroeve\ngroeven\ngroeze\ngroezelig\ngroezeligheid\ngroezig\ngrof\ngrofdradig\ngrofgebekt\ngrofgebouwd\ngrofheid\ngrofkorrelig\ngrofmazig\ngrofmeel\ngrofmotorisch\ngrofsmederij\ngrofsmid\ngrofstoffelijk\ngrofte\ngrofvuil\ngrofweg\ngrofwerk\ngrofwild\ngrofzand\ngrog\ngroggy\ngrogstem\ngrol\ngrollen\ngrolpot\ngrom\ngrombaard\ngrommelaar\ngrommelen\ngrommelpot\ngrommen\ngrommer\ngrommig\ngrommigheid\ngrompot\ngrond\ngrondaankoop\ngrondaanval\ngrondaanwinning\ngrondachtig\ngrondaffaire\ngrondafhandeling\ngrondakkoord\ngrondbank\ngrondbedrijf\ngrondbeginsel\ngrondbegrip\ngrondbelasting\ngrondbeleid\ngrondbestanddeel\ngrondbetekenis\ngrondbewerking\ngrondbezit\ngrondbezitter\ngrondboor\ngrondboring\ngronddenkbeeld\ngronddepot\ngronddienst\ngronddoel\ngronddoelraket\ngrondduiker\ngrondeekhoorn\ngrondeigenaar\ngrondeigendom\ngrondeigenschap\ngrondel\ngrondeling\ngrondeloos\ngronden\ngronderig\ngrondexploitatie\ngrondfout\ngrondfrequentie\ngrondgebied\ngrondgebonden\ngrondgebruik\ngrondgedachte\ngrondgesteldheid\ngrondgevecht\ngrondhouding\ngrondhout\ngrondig\ngrondigheid\ngrondijs\ngronding\ngrondkabel\ngrondkenmerk\ngrondkleur\ngrondkosten\ngrondkrediet\ngrondlaag\ngrondlak\ngrondlasten\ngrondleger\ngrondlegger\ngrondlegging\ngrondlegster\ngrondleiding\ngrondlijn\ngrondlucht\ngrondmarkt\ngrondmonster\ngrondnoot\ngrondoffensief\ngrondonderzoek\ngrondoorlog\ngrondoorzaak\ngrondoppervlak\ngrondoppervlakte\ngrondorganisatie\ngrondpacht\ngrondpapier\ngrondpatroon\ngrondpersoneel\ngrondpijler\ngrondplan\ngrondploeg\ngrondpolitiek\ngrondprijs\ngrondprincipe\ngrondprobleem\ngrondradar\ngrondrecht\ngrondrechten\ngrondregel\ngrondreiniging\ngrondrente\ngrondruil\ngrondsanering\ngrondscheiding\ngrondslag\ngrondslagenonderzoek\ngrondslagverbreding\ngrondsoort\ngrondsop\ngrondspeculant\ngrondspeculatie\ngrondstamper\ngrondstation\ngrondsteen\ngrondstelling\ngrondstem\ngrondstewardess\ngrondstof\ngrondstofbehoefte\ngrondstoffenfonds\ngrondstoffenmarkt\ngrondstoffenprijs\ngrondstofkosten\ngrondstofprijs\ngrondstrijdkrachten\ngrondstroom\ngrondstructuur\ngrondstuk\ngrondtaal\ngrondtal\ngrondtekst\ngrondthema\ngrondtoestand\ngrondtoon\ngrondtransactie\ngrondtrek\ngrondtroepen\ngronduitgifte\ngrondvast\ngrondverbetering\ngrondverbeteringsbedrijf\ngrondverf\ngrondverkoop\ngrondverschuiving\ngrondverven\ngrondvervuiling\ngrondverwerving\ngrondverzakking\ngrondverzet\ngrondverzetmachine\ngrondvesten\ngrondvester\ngrondvesting\ngrondvisie\ngrondvlak\ngrondvoorwaarde\ngrondvorm\ngrondwaarde\ngrondwaarheid\ngrondwater\ngrondwaterbeheer\ngrondwaterbeschermingsgebied\ngrondwaterniveau\ngrondwaterpeil\ngrondwaterspiegel\ngrondwaterstand\ngrondwaterstroming\ngrondwaterstroom\ngrondwatervervuiling\ngrondwaterwinning\ngrondwerk\ngrondwerker\ngrondwerktuigkundige\ngrondwet\ngrondwetgevend\ngrondwetgever\ngrondwetherziening\ngrondwetsartikel\ngrondwetsbepaling\ngrondwetshervorming\ngrondwetsherziening\ngrondwetspecialist\ngrondwetsvoorstel\ngrondwetswijziging\ngrondwettelijk\ngrondwettelijkheid\ngrondwettig\ngrondwettigheid\ngrondwind\ngrondwoord\ngrondzee\ngrondzeil\ngrondzuil\ngroot\ngrootaandeelhouder\ngrootafnemer\ngrootayatollah\ngrootbank\ngrootbedrijf\ngrootbeeld\ngrootbeeldtelevisie\ngrootbek\ngrootbladig\ngrootbloemig\ngrootbloemige\ngrootboek\ngrootboekadministratie\ngrootboekcode\ngrootboekhouder\ngrootboekinschrijving\ngrootboekkaart\ngrootboekmutatie\ngrootboeknummer\ngrootboekpost\ngrootboekposten\ngrootboekrekening\ngrootboekrekeningnummer\ngrootboeksaldo\ngrootbrengen\ngrootdistributie\ngrootdoener\ngrootdoenerij\ngrootgebracht\ngrootgebruiker\ngrootgemaakt\ngrootgrondbezit\ngrootgrondbezitter\ngrootgrutter\ngroothandel\ngroothandelaar\ngroothandelsbedrijf\ngroothandelsbedrijven\ngroothandelsbranche\ngroothandelscentrum\ngroothandelsfirma\ngroothandelsmarge\ngroothandelsmarkt\ngroothandelsniveau\ngroothandelsomzet\ngroothandelsprijs\ngroothartig\ngroothartigheid\ngrootheid\ngrootheidswaan\ngrootheidswaanzin\ngroothertog\ngroothertogdom\ngroothertogelijk\ngroothertogin\ngroothoeklens\ngrootindustrie\ngrootindustrieel\ngrootinquisiteur\ngrootje\ngrootkanselier\ngrootkapitaal\ngrootkeuken\ngrootkorrelig\ngrootkruis\ngrootma\ngrootmacht\ngrootmachtig\ngrootmajoor\ngrootmama\ngrootmeester\ngrootmeesteres\ngrootmeestertitel\ngrootmetaal\ngrootmoe\ngrootmoeder\ngrootmoederlijk\ngrootmoederschap\ngrootmoedig\ngrootmoedigheid\ngrootmogend\ngrootmogol\ngrootofficier\ngrootogig\ngrootoom\ngrootopperhoofd\ngrootouder\ngrootouderlijk\ngrootouders\ngrootpa\ngrootpapa\ngroots\ngrootschalig\ngrootschaligheid\ngrootscheeps\ngrootschrift\ngrootseminarie\ngrootsheid\ngrootspraak\ngrootsprakerig\ngrootsprakig\ngrootspreken\ngrootspreker\ngrootsprekerij\ngrootstad\ngrootstedelijk\ngrootsteeds\ngroottante\ngrootte\ngrootteorde\ngrootvader\ngrootvaderlijk\ngrootvaderschap\ngrootvee\ngrootverbruik\ngrootverbruiker\ngrootverdiener\ngrootvisserij\ngrootvizier\ngrootvorst\ngrootvorstendom\ngrootvorstin\ngrootwarenhuis\ngrootwaterschap\ngrootwinkelbedrijf\ngrootzegel\ngrootzegelbewaarder\ngrootzeil\ngroovy\ngros\ngroslijst\ngrosse\ngrosseren\ngrossier\ngrossierderij\ngrossieren\ngrossiersprijs\ngrossierszaak\ngrossist\ngrosso modo\ngrot\ngrotachtig\ngrotbewoner\ngrote\ngroteletterboek\ngrotelijks\ngrotemensenwereld\ngrotemensenwerk\ngrotendeels\ngroter\ngrotesk\ngroteske\ngrotestadsbewoner\ngrotestedenbeleid\ngrotschildering\ngrottekening\ngrottencomplex\ngrottenstelsel\ngrotwoning\ngroupie\ngroupware\ngrovelijk\ngrovigheid\ngrowshop\ngruis\ngruisbak\ngruisijzer\ngruiskolen\ngruizel\ngruizelen\ngruizels\ngruizementen\ngruizen\ngruizig\ngrunge\ngrungegroep\ngrungy\ngrut\ngrutmolen\ngrutten\ngruttenbrij\ngruttenmeel\ngrutter\ngrutterij\ngruttersmolen\ngrutterswaren\ngrutterswinkel\ngrutto\ngruwel\ngruwelbeeld\ngruweldaad\ngruwelen\ngruwelijk\ngruwelijkheid\ngruwelkamer\ngruwelpropaganda\ngruwelstuk\ngruwelverhaal\ngruwen\ngruwzaam\ngruwzaamheid\ngruyère\ngruyèrekaas\ngruzelementen\ngsm\ngsm-bedrijf\ngsm-bedrijven\ngsm-gebruik\ngsm-gebruiker\ngsm-markt\ngsm-mast\ngsm-masten\ngsm-net\ngsm-netwerk\ngsm-nummer\ngsm-operator\ngsm-technologie\ngsm-toestel\ngsm-verkeer\nguacamole\nguanine\nguano\nguave\ngueridon\nguerrilla\nguerrilla-aanval\nguerrilla-actie\nguerrilla-eenheid\nguerrillabeweging\nguerrillagroep\nguerrillagroepering\nguerrillaleger\nguerrillaleider\nguerrillaoorlog\nguerrillastrijd\nguerrillastrijder\nguerrillatroepen\nguerrillero\nguesthouse\nguichelheil\nguillocheren\nguillotine\nguillotineren\nguimpe\nguipure\nguirlande\nguit\nguiten\nguitenstreek\nguiterij\nguitig\nguitigheid\ngul\ngulden\nguldenboek\nguldengetal\nguldenjaar\nguldenroede\nguldenteken\ngulgauw\ngulhartig\ngulhartigheid\ngulheid\ngullen\ngulp\ngulpen\ngulweg\ngulzig\ngulzigaard\ngulzigheid\ngum\ngummen\ngummi\ngummi-jas\ngummiartikelen\ngummibal\ngummiband\ngummihandschoen\ngummiknuppel\ngummipop\ngummiring\ngummislang\ngummistok\ngummizool\ngunnen\ngunnera\ngunning\ngunst\ngunstbejag\ngunstbetoning\ngunstbetoon\ngunstbewijs\ngunste\ngunsteling\ngunstelinge\ngunstig\ngunstkoopje\ngunstprijs\ngunstregime\ngunsttarief\ngup\nguppy\ngust\ngut\nguts\ngutsen\ngutturaal\nguur\nguurheid\ngym\ngymjuf\ngymkana\ngymleraar\ngymles\ngymlokaal\ngymmen\ngymnasiaal\ngymnasiast\ngymnasiaste\ngymnasium\ngymnasiumdiploma\ngymnasiumopleiding\ngymnast\ngymnaste\ngymnastiek\ngymnastiekles\ngymnastieklokaal\ngymnastiekmeester\ngymnastiekoefening\ngymnastiekonderwijs\ngymnastiekschoen\ngymnastiektoestel\ngymnastiekvereniging\ngymnastiekwerktuig\ngymnastiekzaal\ngymnastisch\ngymnastiseren\ngymp\ngympie\ngymschoen\ngymvereniging\ngymzaal\ngynaecologe\ngynaecologie\ngynaecologisch\ngynaecoloog\ngyrokompas\ngyroscoop\ngyroscopisch\ngênant\ngêne\ngötterdämmerung\nh\nh-pion\nha\nhaaf\nhaag\nhaagbeuk\nhaagbeuken\nhaagbos\nhaagdoorn\nhaagdoren\nhaageik\nhaagroos\nhaagschaar\nhaagschool\nhaagspel\nhaagt\nhaagwinde\nhaai\nhaaiachtig\nhaaibaai\nhaaien\nhaaientand\nhaaientanden\nhaaienvel\nhaaienvin\nhaaienvinnensoep\nhaaienvlees\nhaaiig\nhaak\nhaakgaren\nhaaknaald\nhaakneus\nhaakpatroon\nhaakpen\nhaaks\nhaaktand\nhaakvormig\nhaakwerk\nhaakzijde\nhaal\nhaalbaar\nhaalbaarheid\nhaalbaarheidsonderzoek\nhaalbaarheidsstudie\nhaalboom\nhaalketting\nhaalmes\nhaalservice\nhaaltouw\nhaam\nhaamhout\nhaan\nhaantje\nhaantje-de-voorste\nhaantjesgedrag\nhaar\nhaarbal\nhaarband\nhaarborstel\nhaarbos\nhaarbreed\nhaarbuisje\nhaarcilinder\nhaarcrème\nhaard\nhaarde\nhaardijzer\nhaardijzers\nhaardos\nhaardplaat\nhaardracht\nhaardroger\nhaardroogkap\nhaardscherm\nhaardstede\nhaardstel\nhaardvuur\nhaarfijn\nhaarföhn\nhaargel\nhaargolf\nhaargolven\nhaargrens\nhaargroei\nhaargroeimiddel\nhaarhamer\nhaarhygrometer\nhaarijzer\nhaarinplant\nhaarkam\nhaarkleur\nhaarkleurmiddel\nhaarkleursel\nhaarklieven\nhaarkliever\nhaarklieverij\nhaarkloven\nhaarklover\nhaarkloverij\nhaarknippen\nhaarknot\nhaarkruller\nhaarlak\nhaarlemmerolie\nhaarlengte\nhaarlijn\nhaarlint\nhaarlok\nhaarloos\nhaarlotion\nhaarmiddel\nhaarmode\nhaarnaald\nhaarnetje\nhaarolie\nhaaronderzoek\nhaarpijl\nhaarpijn\nhaarplukken\nhaarscherp\nhaarscheur\nhaarscheurtje\nhaarschimmel\nhaarsnijden\nhaarsnit\nhaarspeld\nhaarspeldbocht\nhaarspit\nhaarspray\nhaarstilist\nhaarstreng\nhaarstukje\nhaartje\nhaartooi\nhaartransplantatie\nhaaruitval\nhaarvat\nhaarvatenstelsel\nhaarverf\nhaarverlies\nhaarversteviger\nhaarverzorging\nhaarvlecht\nhaarwassing\nhaarwater\nhaarworm\nhaarwortel\nhaarwrong\nhaarzak\nhaarzakje\nhaarzakken\nhaarzelf\nhaarzuiver\nhaas\nhaasje-over\nhaaskarbonade\nhaast\nhaasten\nhaastig\nhaastje-repje\nhaastklus\nhaastwerk\nhaat\nhaat-liefdeverhouding\nhaatcampagne\nhaatdragend\nhaatgevoel\nhaatgevoelen\nhaatmail\nhaatster\nhabbekrats\nhaberdoedas\nhabijt\nhabilitatie\nhabitat\nhabitueel\nhabitus\nhabitué\nhachee\nhachelijk\nhachelijkheid\nhachje\nhaciënda\nhacken\nhacker\nhad\nhadden\nhadeïcum\nhadj\nhadji\nhaf\nhaflinger\nhaft\nhagada\nhagedis\nhagedissenstaart\nhagel\nhagelblank\nhagelbui\nhagelen\nhageljacht\nhagelkorrel\nhagelpatroon\nhagelschade\nhagelschot\nhagelslag\nhagelsnoer\nhagelsnoeren\nhagelsteen\nhagelstorm\nhagelverzekering\nhagelvlaag\nhagelwit\nhagen\nhagenaar\nhagendoorn\nhagendoren\nhagenprediker\nhagenpreek\nhagenroos\nhaggis\nhagiograaf\nhagiografen\nhagiografie\nhagiografisch\nhaha\nhaiku\nhairspray\nhairstylist\nhak\nhakbal\nhakbeitel\nhakbijl\nhakbijlcomité\nhakblok\nhakbord\nhakbos\nhaken\nhakenkruis\nhakerig\nhakhout\nhakje\nhakkebord\nhakkelaar\nhakkelen\nhakkelig\nhakken\nhakkenbar\nhakkenei\nhakker\nhakketakken\nhakketeren\nhakmachine\nhakmes\nhakmoes\nhaksel\nhakselbank\nhakstro\nhal\nhalacha\nhalal\nhalcyon\nhaldeur\nhalen\nhalf\nhalf-en-half\nhalf-om-half\nhalfaap\nhalfacht\nhalfagras\nhalfapen\nhalfautomaat\nhalfautomatisch\nhalfback\nhalfbakken\nhalfbegrepen\nhalfbevroren\nhalfbewust\nhalfblind\nhalfbloed\nhalfbroeder\nhalfbroer\nhalfcirkelvormig\nhalfdek\nhalfdicht\nhalfdonker\nhalfdood\nhalfdoorlatend\nhalfdronken\nhalfduister\nhalfedelsteen\nhalfeen\nhalfezel\nhalffabricaat\nhalfgaar\nhalfgeleider\nhalfgeleiderdivisie\nhalfgeleiderfabriek\nhalfgeleiderfabrikant\nhalfgeleiderindustrie\nhalfgeleiderproducent\nhalfgeleidersector\nhalfgeloken\nhalfgeopend\nhalfgesloten\nhalfgod\nhalfhartig\nhalfhartigheid\nhalfheid\nhalfhoog\nhalfjaar\nhalfjaarbericht\nhalfjaarcijfers\nhalfjaarcontract\nhalfjaarlijks\nhalfjaaromzet\nhalfjaarrekening\nhalfjaarresultaat\nhalfjaarverlies\nhalfjaarverslag\nhalfjaarwinst\nhalfjarig\nhalfje\nhalfjes\nhalfklinker\nhalfkoers\nhalfkristal\nhalflang\nhalfleeg\nhalflinnen\nhalfluid\nhalfmaandelijks\nhalfnaakt\nhalfnatuurlijk\nhalfom\nhalfoogst\nhalfopen\nhalfpipe\nhalfproduct\nhalfrijm\nhalfrijp\nhalfrond\nhalfschaduw\nhalfslaap\nhalfslachtig\nhalfslachtigheid\nhalfslag\nhalfslaperig\nhalfspeler\nhalfsteens\nhalfsteensmuur\nhalfsteensverband\nhalfstok\nhalftij\nhalftijds\nhalftime\nhalfuur\nhalfuursdienst\nhalfvasten\nhalfvergeten\nhalfvet\nhalfvier\nhalfvijf\nhalfvleugelig\nhalfvol\nhalfvolwassen\nhalfwaardetijd\nhalfwas\nhalfwassen\nhalfwees\nhalfweg\nhalfwezenuitkering\nhalfwilde\nhalfwind\nhalfzacht\nhalfzes\nhalfzeven\nhalfzijdig\nhalfzus\nhalfzuster\nhalfzwaar\nhalfzwaargewicht\nhall\nhalleluja\nhallelujahoed\nhallen\nhallenkerk\nhallentoren\nhalletje\nhallo\nhallucinant\nhallucinatie\nhallucinatoir\nhallucinatorisch\nhallucineren\nhallucinogeen\nhalm\nhalma\nhalmstro\nhalo\nhalo-effect\nhalogeen\nhalogeenlamp\nhalogeenverlichting\nhals\nhalsader\nhalsband\nhalsbandparkiet\nhalsboord\nhalsbrekend\nhalsbrekerij\nhalsdoek\nhalsgerecht\nhalsgevel\nhalsketen\nhalsketting\nhalskraag\nhalslengte\nhalslijn\nhalsmisdaad\nhalsopening\nhalsoverkop\nhalsrecht\nhalsreikend\nhalsriem\nhalssieraad\nhalsslagader\nhalssnoer\nhalsstarrig\nhalsstarrigheid\nhalster\nhalsteren\nhalstertouw\nhalstouw\nhalsuitsnijding\nhalswervel\nhalszaak\nhalt\nhalt houden\nhalte\nhaltepaal\nhalteplaats\nhalter\nhaltertruitje\nhalvarine\nhalve\nhalvedagopvang\nhalvefinaleplaats\nhalvefinalist\nhalvegare\nhalvelings\nhalvemaan\nhalvemaantje\nhalvemaanvormig\nhalveren\nhalverhoogte\nhalvering\nhalveringstijd\nhalverwege\nhalverwind\nhalvezolen\nhalvezool\nhalzen\nhalzijde\nham\nhamam\nhamansoren\nhamas\nhamburger\nhamburgerketen\nhamburgerrestaurant\nhamburgertent\nhamei\nhamel\nhamelbout\nhamelvlees\nhamer\nhameren\nhamerhaai\nhamerkop\nhamers\nhamerslag\nhamerslingeren\nhamerspel\nhamersteel\nhamerstuk\nhamerteen\nhamervinger\nhamlap\nhammondorgel\nhamspek\nhamster\nhamsteraar\nhamsteren\nhamstervoorraad\nhamstring\nhamstringblessure\nhamvraag\nhand\nhand in hand\nhand-en-spandiensten\nhand-out\nhandalfabet\nhandappel\nhandarbeid\nhandarbeider\nhandbagage\nhandbal\nhandbalclub\nhandbalinternational\nhandballen\nhandballer\nhandbalploeg\nhandbalteam\nhandbaltoernooi\nhandbalvereniging\nhandbediend\nhandbediening\nhandbel\nhandbereik\nhandbeschermer\nhandbeweging\nhandbibliotheek\nhandbijl\nhandbike\nhandblessure\nhandblusapparaat\nhandblusser\nhandboei\nhandboek\nhandboog\nhandboogschieten\nhandboogschutter\nhandboom\nhandboor\nhandborstel\nhandbrandspuit\nhandbreed\nhandbreedte\nhandcamera\nhandcomputer\nhandcrème\nhanddoek\nhanddoekenhanger\nhanddoekenrek\nhanddouche\nhanddroog\nhanddruk\nhanddynamo\nhandeg\nhandel\nhandelaar\nhandelaarskenteken\nhandelaarster\nhandelbaar\nhandelbaarheid\nhandeldrijven\nhandeldrijvend\nhandelen\nhandeling\nhandelingen\nhandelingenreeks\nhandelingsbekwaam\nhandelingsbekwaamheid\nhandelingsbevoegd\nhandelingsbevoegde\nhandelingsonbekwaam\nhandelingsonbekwaamheid\nhandelingssnelheid\nhandelingsstructuur\nhandelingstheoretisch\nhandelingstheorie\nhandelingsverloop\nhandelingsvermogen\nhandelingsvrijheid\nhandelmaatschappij\nhandeloos\nhandelsaangelegenheid\nhandelsaardrijkskunde\nhandelsactiviteit\nhandelsader\nhandelsagent\nhandelsagentuur\nhandelsakkoord\nhandelsarbitrage\nhandelsartikel\nhandelsattachee\nhandelsattaché\nhandelsbalans\nhandelsbalansoverschot\nhandelsbank\nhandelsbarrière\nhandelsbediende\nhandelsbedrijf\nhandelsbedrijven\nhandelsbeeld\nhandelsbelang\nhandelsbeleid\nhandelsbelemmering\nhandelsbemiddeling\nhandelsbenaming\nhandelsbericht\nhandelsberichten\nhandelsbetrekking\nhandelsbetrekkingen\nhandelsbeurs\nhandelsbevordering\nhandelsbeweging\nhandelsbijdrage\nhandelsblad\nhandelsblok\nhandelsboycot\nhandelsbrief\nhandelsbureau\nhandelscentrum\nhandelscompagnie\nhandelsconcept\nhandelsconcern\nhandelsconcessie\nhandelsconflict\nhandelscontract\nhandelsconventie\nhandelscorrespondent\nhandelscorrespondentie\nhandelscrisis\nhandelscursus\nhandelsdag\nhandelsdelegatie\nhandelsdoeleinden\nhandelsdrukkerij\nhandelseconomie\nhandelseditie\nhandelseffect\nhandelsembargo\nhandelservaring\nhandelsfactorij\nhandelsfirma\nhandelsfonds\nhandelsformulier\nhandelsgebied\nhandelsgebruik\nhandelsgebruiken\nhandelsgedrag\nhandelsgeest\nhandelsgeschiedenis\nhandelsgeschil\nhandelsgewas\nhandelsgewoonte\nhandelsgezant\nhandelsgoederen\nhandelshaven\nhandelshogeschool\nhandelshuis\nhandelsimperium\nhandelsinformatie\nhandelsingenieur\nhandelsinstelling\nhandelsjargon\nhandelskamer\nhandelskanaal\nhandelskantoor\nhandelskapitaal\nhandelskennis\nhandelsklasse\nhandelsklimaat\nhandelskorting\nhandelskrediet\nhandelskwestie\nhandelsland\nhandelsliberalisatie\nhandelsliberalisering\nhandelslichaam\nhandelsmaat\nhandelsmaatschappij\nhandelsmacht\nhandelsman\nhandelsmarge\nhandelsmarkt\nhandelsmerk\nhandelsmetropool\nhandelsministers\nhandelsmissie\nhandelsmogendheid\nhandelsmonopolie\nhandelsmoraal\nhandelsmunt\nhandelsmunten\nhandelsnaam\nhandelsnaamwet\nhandelsnatie\nhandelsnederzetting\nhandelsnetwerk\nhandelsnieuws\nhandelsomzet\nhandelsonderneming\nhandelsonderwijs\nhandelsoorlog\nhandelsopleiding\nhandelsorganisatie\nhandelsovereenkomst\nhandelsoverleg\nhandelsoverschot\nhandelspapier\nhandelspartner\nhandelsplaats\nhandelsplatform\nhandelspolitiek\nhandelspoot\nhandelspositie\nhandelspost\nhandelspremie\nhandelsprijs\nhandelsprijzen\nhandelsproduct\nhandelsrecht\nhandelsrechtbank\nhandelsrechter\nhandelsreclame\nhandelsreferentie\nhandelsregister\nhandelsreis\nhandelsreizen\nhandelsreiziger\nhandelsrekenen\nhandelsrelatie\nhandelsronde\nhandelsroute\nhandelsschip\nhandelsschool\nhandelsschuld\nhandelssector\nhandelssessie\nhandelsstad\nhandelsstand\nhandelsstatistiek\nhandelsstatus\nhandelsstijl\nhandelsstroom\nhandelssysteem\nhandelstaal\nhandelstak\nhandelstekort\nhandelsterm\nhandelstraktaat\nhandelstransactie\nhandelsusance\nhandelsvaart\nhandelsvennoot\nhandelsvennootschap\nhandelsverbod\nhandelsverdrag\nhandelsvereniging\nhandelsvergunning\nhandelsverkeer\nhandelsverrichting\nhandelsvertegenwoordiger\nhandelsvertegenwoordiging\nhandelsvlag\nhandelsvloot\nhandelsvolk\nhandelsvolume\nhandelsvoordeel\nhandelsvoorlichting\nhandelsvoorraad\nhandelsvrijheid\nhandelswaar\nhandelswaarde\nhandelsweek\nhandelsweg\nhandelswereld\nhandelswetenschap\nhandelswetenschappen\nhandelswetgeving\nhandelswijk\nhandelswijzen\nhandelswinst\nhandelswissel\nhandelszaak\nhandelszone\nhandeltje\nhandelwijze\nhanden\nhandenarbeid\nhandenarbeidlokaal\nhandenbinder\nhandenschuddend\nhandenvol\nhandenvrij\nhandenwerk\nhandenwrijvend\nhandenwringen\nhandenwringend\nhandgebaar\nhandgeklap\nhandgekleurd\nhandgeknoopt\nhandgeld\nhandgemaakt\nhandgemeen\nhandgereedschap\nhandgeschakeld\nhandgeschreven\nhandgesneden\nhandgestuurd\nhandgevormd\nhandgeweven\nhandgewricht\nhandgift\nhandgiften\nhandgranaat\nhandgreep\nhandhaafbaar\nhandhaafbaarheid\nhandhaven\nhandhaver\nhandhaving\nhandhavingsbeleid\nhandheld\nhandicap\nhandicappen\nhandicaprace\nhandig\nhandigheid\nhandigheidje\nhandje\nhandjegauw\nhandjeklap\nhandjeplak\nhandjevol\nhandkaart\nhandkar\nhandknie\nhandkoffer\nhandkracht\nhandkus\nhandlanger\nhandlangster\nhandleiding\nhandlezen\nhandlezer\nhandlezeres\nhandlichting\nhandlijn\nhandlijnkunde\nhandmatig\nhandmolen\nhandomdraai\nhandoplegging\nhandopsteken\nhandopsteking\nhandpalm\nhandpeer\nhandpenning\nhandpers\nhandpomp\nhandpop\nhandreiking\nhandrem\nhandrug\nhands\nhandsbal\nhandschoen\nhandschoendoos\nhandschoenendoos\nhandschoenenkastje\nhandschoenenwinkel\nhandschoenkastje\nhandschrift\nhandschriftenverzameling\nhandschriftkunde\nhandschriftkundige\nhandsfree\nhandslag\nhandspaak\nhandspel\nhandspiegel\nhandspuit\nhandstand\nhandtas\nhandtastelijk\nhandtastelijkheden\nhandtastelijkheid\nhandteken\nhandtekenen\nhandtekening\nhandtekeningenactie\nhandtekeningenjager\nhandtekeningenlijst\nhandvaardig\nhandvaardigheid\nhandvat\nhandvatsel\nhandveger\nhandvest\nhandvleugelig\nhandvol\nhandvorm\nhandvormig\nhandvuurwapen\nhandwagen\nhandwapen\nhandwarm\nhandwas\nhandwassing\nhandwater\nhandweefkunst\nhandwerk\nhandwerken\nhandwerker\nhandwerkje\nhandwerksman\nhandwerkster\nhandwerkwinkel\nhandwever\nhandwiel\nhandwielen\nhandwijzer\nhandwoordenboek\nhandwortel\nhandwortelbeentje\nhandzaag\nhandzaam\nhandzaamheid\nhandzetten\nhandzetter\nhanenbalk\nhanenei\nhanengekraai\nhanengevecht\nhanenkam\nhanenpoot\nhanenpoten\nhanenspoor\nhanenveer\nhang\nhangaar\nhangar\nhangborst\nhangbrug\nhangbuik\nhangbuikzwijn\nhangel\nhangen\nhangende\nhanger\nhangerig\nhangerigheid\nhangertje\nhanggliden\nhangglider\nhanggliding\nhangijzer\nhangjeugd\nhangjongere\nhangjongeren\nhangkamer\nhangkast\nhangklok\nhangkompas\nhanglamp\nhanglip\nhangmap\nhangmat\nhangoor\nhangoortafel\nhangop\nhangplant\nhangplek\nhangpunt\nhangslot\nhangsnor\nhangspoor\nhangsteiger\nhangstelling\nhangwang\nhangwieg\nhanig\nhanige\nhannekemaaier\nhannes\nhannesen\nhans\nhansop\nhansworst\nhansworsterij\nhanteerbaar\nhanteerbaarheid\nhanteren\nhantering\nhanzen\nhap\nhapax\nhaperen\nhapering\nhapje\nhapjespan\nhapklaar\nhappen\nhappening\nhappig\nhappigheid\nhappy\nhappy end\nhappy few\nhappy hour\nhapschaar\nhapsnap\nhapsnapbeleid\nhaptisch\nhaptonomie\nhaptonoom\nhapvogel\nhar\nharakiri\nharam\nhard\nhard-boiled\nhardblauw\nhardboard\nhardboardplaat\nhardcore\nhardcoreband\nhardcourt\nhardcover\nharddisk\nharddiskruimte\nharddraven\nharddraver\nharddraverij\nharddrug\nharddruggebruiker\nharddrugsgebruik\nharddrugsgebruiker\nhardebol\nhardebollen\nharden\nharder\nharderwijker\nhardeschijfruimte\nhardgebakken\nhardgeel\nhardgekookt\nhardglas\nhardglazen\nhardgrauw\nhardhandig\nhardhandigheid\nhardheid\nhardheidsclausule\nhardheidsgraad\nhardhoofdig\nhardhorend\nhardhorende\nhardhorendheid\nhardhorig\nhardhorigheid\nhardhout\nhardhouten\nhardigheid\nharding\nhardleers\nhardleersheid\nhardlijvig\nhardlijvigheid\nhardliner\nhardloopschoen\nhardloopster\nhardloopwedstrijd\nhardlopen\nhardloper\nhardloperij\nhardmaken\nhardmetaal\nhardmetalen\nhardnekkig\nhardnekkigheid\nhardop\nhardplastic\nhardporno\nhardrijden\nhardrijder\nhardrijderij\nhardrock\nhardrockband\nhardrocker\nhardrockfestival\nhardrockgroep\nhardrood\nhardstalen\nhardsteen\nhardstenen\nhardtop\nhardvochtig\nhardvochtigheid\nhardware\nhardwareleverancier\nhardwerkend\nhardzeil\nhardzeilen\nhardzeiler\nhardzeilerij\nhare krisjna\nharem\nharembroek\nharen\nharent\nharenthalve\nharentwege\nharentwil\nharentwille\nharerzijds\nharig\nharigheid\nharing\nharing kaak\nharing kaakt\nharing kaken\nharing speten\nharingbuis\nharinghaai\nharingjager\nharingkaker\nharingkar\nharingkoning\nharinglogger\nharingnet\nharingpakker\nharingpakkerij\nharingquota\nharingquotum\nharingrace\nharingrokerij\nharingsalade\nharingschool\nharingsla\nharingtijd\nharington\nharingvaart\nharingvangst\nharingvisserij\nharingvloot\nharinkje\nhark\nharken\nharkerig\nharksel\nharlekijn\nharlekijnspak\nharlekinade\nharmonica\nharmonicabed\nharmonicabus\nharmonicadeur\nharmonicagaas\nharmonicaspel\nharmonicaspeler\nharmonicawand\nharmonie\nharmoniegedachte\nharmoniegezelschap\nharmoniek\nharmoniekapel\nharmonieleer\nharmoniemodel\nharmoniemuziek\nharmonieorkest\nharmonieus\nharmonisatie\nharmonisatietraject\nharmonisch\nharmonischen\nharmoniseren\nharmonisering\nharmonium\nharmoniëren\nharnas\nharnassen\nharp\nharpconcert\nharpen\nharpenist\nharpeniste\nharpgezang\nharpij\nharpist\nharpiste\nharpluis\nharpmuziek\nharpoen\nharpoenen\nharpoeneren\nharpoengeweer\nharpoenier\nharpsolo\nharpspeelster\nharpspel\nharpspeler\nharpuis\nharpuizen\nharre\nharrel\nharrewarren\nharrypotterbrilletje\nhars\nharsachtig\nharsbehandeling\nharsboom\nharsen\nharses\nharshoudend\nharsig\nharslak\nharst\nharsten\nhart\nhart-longmachine\nhartaandoening\nhartaanval\nhartader\nhartafdeling\nhartafwijking\nhartbeklemming\nhartbewaking\nhartboezem\nhartbrekend\nhartcentrum\nhartchirurg\nhartchirurgie\nhartchirurgisch\nhartdood\nhartelijk\nhartelijkheid\nharteloos\nharteloosheid\nharten\nhartenbloed\nhartenboer\nhartenbreekster\nhartenbreker\nhartendief\nhartenjagen\nhartenklop\nhartenkreet\nhartenlap\nhartenleed\nhartenliefje\nhartenlust\nhartenpijn\nhartenwens\nhartfalen\nhartfrequentie\nhartfunctie\nhartgebrek\nhartgeruis\nhartgrondig\nharthout\nhartig\nhartigheid\nhartinfarct\nhartje\nhartjesdag\nhartkamer\nhartkatheterisatie\nhartklacht\nhartklachten\nhartklep\nhartklop\nhartklopping\nhartkloppingen\nhartkramp\nhartkwaal\nhartland\nhartlap\nhartlijder\nhartlijn\nhartmachine\nhartmassage\nhartonderzoek\nhartoor\nhartoperatie\nhartpatiënt\nhartpatiënte\nhartritme\nhartritmestoornis\nhartroerend\nhartruis\nhartschelp\nhartsgeheim\nhartsgrondig\nhartslag\nhartslagmeter\nhartspecialist\nhartspier\nhartsterfte\nhartsterkend\nhartsterking\nhartstikke\nhartstilstand\nhartstocht\nhartstochtelijk\nhartstoornis\nhartstreek\nhartsvanger\nhartsvriend\nhartsvriendin\nharttoon\nharttransplantatie\nhartvang\nhartvergroting\nhartverheffend\nhartverlamming\nhartveroverend\nhartverscheurend\nhartversterkend\nhartversterking\nhartvervetting\nhartverwarmend\nhartvlies\nhartvorm\nhartvormig\nhartwater\nhartwerking\nhartzakje\nhartzeer\nhartziekte\nhasj\nhasjgebruik\nhasjhandel\nhasjhandelaar\nhasjhond\nhasjiesj\nhasjlucht\nhasjroker\nhasjsmokkel\nhasjsmokkelaar\nhasjtransport\nhasjtransporten\nhasjvangst\nhaspel\nhaspelaar\nhaspelarij\nhaspelen\nhaspelwerk\nhassebassen\nhateenheid\nhatelijk\nhatelijkheid\nhatemail\nhaten\nhater\nhatsjie\nhattrick\nhausse\nhausseperiode\nhaussier\nhaut-reliëf\nhautain\nhaute couture\nhaute cuisine\nhauw\nhauwtje\nhavanna\nhavannasigaar\nhave\nhaveloos\nhaveloosheid\nhaven\nhavenaanleg\nhavenakkoord\nhavenarbeider\nhavenautoriteit\nhavenautoriteiten\nhavenbaron\nhavenbedrijf\nhavenbekken\nhavenbeleid\nhavenbestuur\nhavenbuurt\nhavencomplex\nhavendam\nhavendienst\nhavenen\nhavenfront\nhavengebied\nhavengebonden\nhavengebouw\nhavengeld\nhavengeul\nhavenhoofd\nhaveninfrastructuur\nhaveningang\nhavenkant\nhavenkantoor\nhavenkom\nhavenkraan\nhavenkroeg\nhavenkwartier\nhavenlicht\nhavenloods\nhavenmanager\nhavenmeester\nhavenmond\nhavenontvangstinstallatie\nhavenot\nhavenpersoneel\nhavenplaats\nhavenpolitie\nhavenpool\nhavenproject\nhavenradar\nhavenrecht\nhavenrechten\nhavenschap\nhavenschepen\nhavensector\nhavensleepdienst\nhavensleper\nhavenslib\nhavenstad\nhavenstaking\nhaventerrein\nhavenuitbreiding\nhavenweg\nhavenwerken\nhavenwerker\nhavenwethouder\nhavenwijk\nhaver\nhaverdegort\nhavergort\nhavergras\nhaverkist\nhavermeel\nhavermout\nhavermoutpap\nhaverpluim\nhaverstro\nhavervlok\nhavervlokken\nhaverzak\nhavezaat\nhavezate\nhavik\nhaviken\nhavikskruid\nhaviksneus\nhaviksoog\nhavist\nhavo\nhavo-examen\nhavo-opleiding\nhavo-vwo\nhavoadvies\nhavodiploma\nhavoleerling\nhavoër\nhawaïhemd\nhazard\nhazardspel\nhazelaar\nhazelaarsbos\nhazelaren\nhazelhoen\nhazelmuis\nhazelnoot\nhazelnotenboom\nhazelworm\nhazen\nhazenbloed\nhazendistel\nhazenhart\nhazenjacht\nhazenleger\nhazenlip\nhazenoog\nhazenoor\nhazenpad\nhazenpastei\nhazenpeper\nhazenpoot\nhazenrug\nhazenslaap\nhazenslaapje\nhazensprong\nhazenstaart\nhazenstrik\nhazenvel\nhazenvlees\nhazewind\nhazewindhond\nhbo\nhbo'er\nhbo-diploma\nhbo-instelling\nhbo-niveau\nhbo-opleiding\nhbo-raad\nhbo-student\nhbo-studie\nhbo-v\nhbo-verpleegkunde\nhbs\nhe-man\nheadbangen\nheadhunten\nheadhunter\nheadhuntersbureau\nheadline\nheadliner\nheadset\nhealing\nheao\nheao-opleiding\nheao-student\nhearing\nheat\nheavy\nheavy metal\nheavymetalband\nheb\nhebbeding\nhebbedingetje\nhebbelijk\nhebbelijkheid\nhebben\nhebber\nhebberig\nhebberigheid\nhebbes\nhebe\nhebraïca\nhebraïsme\nhebraïst\nhebzucht\nhebzuchtig\nhecatombe\nhecht\nhechtdraad\nhechten\nhechtenis\nhechtheid\nhechthout\nhechting\nhechtingsproces\nhechtingsvlak\nhechtkram\nhechtlaag\nhechtmateriaal\nhechtmiddel\nhechtnaald\nhechtpleister\nhechtsel\nhechtvlak\nhechtwortel\nheckrund\nhectare\nhectaretoeslag\nhectiek\nhectisch\nhectograaf\nhectografisch\nhectogram\nhectoliter\nhectometer\nhectometerpaal\nhectometerpaaltje\nheden\nheden ten dage\nhedenavond\nhedendaags\nhedenmiddag\nhedenmorgen\nhedennacht\nhedenochtend\nhederik\nhedgefonds\nhedging\nhedonisme\nhedonist\nhedonistisch\nheeft\nheek\nheel\nheelal\nheelbaar\nheelheid\nheelhuids\nheelkracht\nheelkruid\nheelkunde\nheelkundig\nheelkundige\nheelkunst\nheelmeester\nheelster\nheem\nheemhond\nheemkunde\nheemkundekring\nheemkundig\nheemkundige\nheempark\nheemraad\nheemraadschap\nheemst\nheemtuin\nheen\nheen-en-weer\nheenbrengen\nheendringen\nheengaan\nheengegaan\nheengeganen\nheenkomen\nheenlopen\nheenmatch\nheenreis\nheenreizen\nheenrijden\nheenrit\nheenronde\nheensnellen\nheenstappen\nheentrekken\nheenvlieden\nheenvoeren\nheenwedstrijd\nheenweg\nheenzenden\nheenzending\nheep\nheer\nheer des huizes\nheerachtig\nheerbaan\nheerban\nheerbroer\nheerkracht\nheerlijk\nheerlijkheden\nheerlijkheid\nheerneef\nheeroom\nheerschaar\nheerschap\nheerschappij\nheersen\nheerser\nheerseres\nheersersblik\nheersstrategie\nheerszucht\nheerszuchtig\nheertje\nheerweg\nhees\nheesheid\nheester\nheesterachtig\nheesterhout\nheet\nheetbloedig\nheetgebakerd\nheethoofd\nheethoofdig\nheethoofdigheid\nheetlopen\nheetwaterbron\nheetwaterketel\nheetwaterproef\nheetwatertoestel\nheetwaterverwarming\nhef\nhefboom\nhefboomeffect\nhefboomfonds\nhefboomfondsen\nhefboomsarm\nhefboomwerking\nhefbrug\nhefeiland\nheffe\nheffen\nheffer\nheffing\nheffingensysteem\nheffingsgrondslag\nheffingskorting\nheffingsrente\nheffingstarief\nheffingsvrij\nhefmagneet\nhefmechanisme\nhefoffer\nhefschroef\nhefschroefvliegtuig\nheft\nheftang\nheften\nheftig\nheftigheid\nheftruck\nheftruckchauffeur\nhefvermogen\nhefwagen\nhefwerktuig\nheg\nheg noch steg\nhegeliaans\nhegemoniaal\nhegemonie\nhegge\nheggen\nheggenmus\nheggenrank\nheggenschaar\nhegschaar\nhei\nheibaas\nheibei\nheibel\nheibezem\nheibloem\nheiblok\nheiboender\nheiboer\nheibrand\nheide\nheideachtig\nheidebloem\nheidebrand\nheidegebied\nheidegrond\nheidehoning\nheidekruid\nheidelandschap\nheiden\nheidenapostel\nheidendom\nheidens\nheideontginning\nheidereservaat\nheideschaap\nheidestruik\nheidestruikjes\nheideveld\nheidevlakten\nheidin\nheien\nheier\nheigrond\nheihaas\nheiig\nheikant\nheikel\nheikneuter\nheikruid\nheil\nheila\nheiland\nheilbede\nheilbot\nheilbrengend\nheildronk\nheilgymnastiek\nheilicht\nheilig\nheilig verklaard\nheiligavond\nheiligbeen\nheiligdom\nheilige\nheiligen\nheiligenbeeld\nheiligendag\nheiligengraf\nheiligenleven\nheiligennaam\nheiligenverering\nheiligheid\nheiliging\nheiligmaking\nheiligschennend\nheiligschenner\nheiligschennis\nheiligverklaring\nheilloos\nheilrijk\nheilsbelofte\nheilshistorie\nheilsleer\nheilsleger\nheilsoldaat\nheilsoldate\nheilssoldaat\nheilsstaat\nheilstaat\nheilsverwachting\nheilswerk\nheilwens\nheilzaam\nheilzaamheid\nheimachine\nheimat\nheimelijk\nheimelijkheid\nheimwee\nheining\nheiningpaal\nheintjedavidseffect\nheipaal\nheirbaan\nheirkracht\nheisa\nheistelling\nheisteren\nheitje\nheitoestel\nheiveld\nheiwerk\nhek\nhekanker\nhekel\nhekeldicht\nhekeldichter\nhekelen\nhekelig\nhekeling\nhekelschrift\nhekelvers\nhekelzucht\nhekgolf\nhekken\nhekkensluiter\nhekkenspringer\nheklicht\nhekmotor\nheks\nheksen\nheksenbezem\nheksendans\nheksengeloof\nheksenjacht\nheksenketel\nheksenkrans\nheksenkring\nheksenkruid\nheksenkunst\nheksenmeester\nheksenmelk\nheksenproces\nheksenproef\nheksensabbat\nheksentoer\nheksenwaag\nheksenwerk\nhekserij\nheksluiter\nhektrawler\nhektreiler\nhekwerk\nhekwieler\nhel\nhela\nhelaas\nhelblauw\nheld\nheldenbloed\nheldenboek\nheldencultus\nheldendaad\nheldendeugd\nheldendicht\nheldendichter\nheldendom\nheldendood\nheldenepos\nheldenfeit\nheldenmoed\nheldenontvangst\nheldenrol\nheldensage\nheldenschaar\nheldenstatus\nheldentenor\nheldentijd\nheldenverering\nheldenverhaal\nheldenzang\nhelder\nhelderblauw\nheldergroen\nhelderheid\nhelderheidsverloop\nhelderrood\nhelderwit\nhelderziend\nhelderziende\nhelderziendheid\nheldhaftig\nheldhaftigheid\nheldin\nhele\nheleboel\nhelemaal\nhelen\nheler\nhelft\nhelgeel\nhelhond\nheli\nhelicon\nhelihaven\nhelikopter\nhelikopteraanval\nhelikopterbasis\nhelikopterdek\nhelikopterdienst\nhelikopterongeluk\nhelikopterpiloot\nhelikopterplatform\nhelikoptervlucht\nheling\nhelingsproces\nheliocentrisch\nheliograaf\nheliografie\nheliogravure\nhelioscoop\nheliosis\nheliotherapie\nheliotroop\nheliotropisme\nheliport\nhelium\nheliumatoom\nheliumballon\nheliumgas\nheliumkern\nhelix\nhellebaard\nhellebaardier\nhellehond\nhellekind\nhellen\nhelleniseren\nhellenisme\nhellenist\nhellenistisch\nhellepijn\nhellepoort\nheller\nhellestraf\nhelletocht\nhellevaart\nhelleveeg\nhellevuur\nhellewicht\nhelling\nhellingbaan\nhellingbos\nhellingen\nhellingmeter\nhellingproef\nhellingshoek\nhelm\nhelmbeplanting\nhelmdraad\nhelmduiker\nhelmen\nhelmgras\nhelmhoed\nhelmknop\nhelmkruid\nhelmplant\nhelmplicht\nhelmstok\nhelmteken\nheloot\nhelpdesk\nhelpen\nhelper\nhelpfaciliteit\nhelpfunctie\nhelpster\nhelpsysteem\nhelptekst\nhelrood\nhels\nhelverlicht\nhelwit\nhem\nhematiet\nhematocriet\nhematocrietwaarde\nhematogeen\nhematologie\nhematologisch\nhematoloog\nhematoom\nhematurie\nhemd\nhemdjurk\nhemdrok\nhemdsboord\nhemdsknoop\nhemdskraag\nhemdsmouw\nhemel\nhemelas\nhemelbed\nhemelbestormend\nhemelbestormer\nhemelbewoner\nhemelblauw\nhemelbol\nhemelboog\nhemeldak\nhemelen\nhemelfotografie\nhemelgewelf\nhemelglobe\nhemelgod\nhemelhoog\nhemeling\nhemelkaart\nhemellichaam\nhemellicht\nhemelpool\nhemelpoort\nhemelrijk\nhemelruim\nhemels\nhemelsblauw\nhemelsbreed\nhemelsbreedte\nhemelsgezind\nhemelstreek\nhemeltergend\nhemeltje\nhemelvaart\nhemelverschijnsel\nhemelvreugde\nhemelvuur\nhemelwaarts\nhemelwater\nhemelwaterafvoer\nhemelwaterafvoeren\nhemelwaterafvoerleiding\nhemelwaterafvoerpijp\nhemerotheek\nhemicyclus\nhemisfeer\nhemmen\nhemmetje\nhemochromatose\nhemodialyse\nhemofilie\nhemofilielijder\nhemofiliepatiënt\nhemoglobine\nhemoglobinegehalte\nhemorroïden\nhemzelf\nhen\nhendel\nhendiadys\nhenen\nheng\nhengel\nhengelaar\nhengelaarster\nhengelen\nhengelmand\nhengelroe\nhengelroede\nhengelsnoer\nhengelsport\nhengelsportvereniging\nhengelstok\nhengsel\nhengselmand\nhengst\nhengsten\nhengstenbal\nhengstenkeuring\nhengstig\nhengstveulen\nhenna\nhennenei\nhennep\nhennepen\nhennepgaren\nhennepkwekerij\nhennepolie\nhennepplant\nhennepplantage\nhennepteelt\nhenneptuin\nhennepvezel\nhennepzaad\nhenry\nhens\nhenzelf\nheortologie\nhepatitis\nheptameter\nher\nheraanleg\nheraanplant\nheractiveren\nherademen\nheraldicus\nheraldiek\nheraldisch\nheraut\nherautsstaf\nherbarium\nherbebossen\nherbebossing\nherbeginnen\nherbegrafenis\nherbegraven\nherbekijken\nherbeleggen\nherbelegging\nherbelening\nherbeleven\nherbeleving\nherbenoembaar\nherbenoemen\nherbenoeming\nherbeoordeling\nherbeplanting\nherbeplantingsplan\nherberaden\nherberekend\nherberekenen\nherberekening\nherberg\nherbergbezoek\nherbergen\nherbergier\nherbergierster\nherbergkamer\nherbergzaam\nherbergzaamheid\nherbestemming\nherbestrating\nherbevestigen\nherbevestiging\nherbevoorrading\nherbewapenen\nherbewapening\nherbewerking\nherbezet\nherbezetting\nherbezien\nherbezinnen\nherbezinning\nherbicide\nherbivoor\nherboren\nherborist\nherbouw\nherbouwen\nherbouwwaarde\nherbronnen\nherbronning\nherbruikbaar\nherbruikbaarheid\nhercirculatie\nhercontrole\nhercules\nherculesarbeid\nherculeskever\nherculestoestel\nherculeswerk\nherculisch\nherdefinitie\nherdefiniëren\nherdefiniëring\nherdenken\nherdenking\nherdenkingsactiviteit\nherdenkingsbijeenkomst\nherdenkingsboek\nherdenkingscentrum\nherdenkingsconcert\nherdenkingsdag\nherdenkingsdienst\nherdenkingsfeest\nherdenkingsjaar\nherdenkingsmonument\nherdenkingsplaat\nherdenkingsplaquette\nherdenkingsplechtigheid\nherdenkingsrede\nherdenkingssamenkomst\nherdenkingssteen\nherdenkingsteken\nherdenkingstentoonstelling\nherdenkingszegel\nherder\nherderin\nherderlijk\nherdersambt\nherdersdicht\nherdersfluit\nherdershond\nherdersjongen\nherdersknaap\nherdersleven\nherderslied\nherdersmat\nherderspoëzie\nherdersspel\nherdersstaf\nherderstasje\nherdersvolk\nherdoen\nherdoop\nherdopen\nherdruk\nherdrukken\nhereditair\nherediteit\nhereditie\nheremiet\nheremietkreeft\nherenakkoord\nherenboer\nherendienst\nherendubbel\nherenenkelspel\nherenfiets\nherenhorloge\nherenhuis\nherenigen\nhereniging\nherenigingsproces\nherenkapper\nherenkleding\nherenknecht\nherenleed\nherenleven\nherenliefde\nherenmode\nherenmodezaak\nherenondergoed\nherenpyjama\nherenrijwiel\nherensalon\nherenslip\nherentoilet\nherenwoning\nheresie\nherevaluatie\nherexamen\nherfinancieren\nherfinanciering\nherfinancieringsplan\nherfinancieringsrente\nherformuleren\nherformulering\nherfst\nherfstaanbieding\nherfstachtig\nherfstaster\nherfstavond\nherfstblad\nherfstbloem\nherfstdag\nherfstdraad\nherfstig\nherfstkampioen\nherfstkleur\nherfstlandschap\nherfstmaand\nherfstmanoeuvre\nherfstmanoeuvres\nherfstochtend\nherfstseizoen\nherfstsering\nherfststorm\nherfsttij\nherfsttijd\nherfsttijloos\nherfsttint\nherfsttitel\nherfstvakantie\nherfstweer\nherfstzon\nhergeboorte\nhergebruik\nhergebruiken\nhergeven\nhergroeperen\nhergroepering\nherhaalarbeid\nherhaalbaar\nherhaalbaarheid\nherhaald\nherhaaldelijk\nherhaalfrequentie\nherhalen\nherhaling\nherhalingscursus\nherhalingsdag\nherhalingsoefening\nherhalingsonderwijs\nherhalingsrecept\nherhalingsteken\nherhuisvesten\nherhuisvesting\nherig\nherijken\nherijking\nherijkingsnota\nherijkingsoperatie\nherik\nherindelen\nherindeling\nherindelingsplan\nherindelingsplannen\nherindelingsprocedure\nherindelingsvoorstel\nheringericht\nherinneren\nherinnering\nherinneringsbeeld\nherinneringsboek\nherinneringsbrief\nherinneringscentrum\nherinneringskaart\nherinneringskaartje\nherinneringsmedaille\nherinneringsvermogen\nherinrichten\nherinrichting\nherinrichtingskosten\nherinrichtingsplan\nherinschaling\nherinschrijving\nherinstallatie\nherinstalleren\nherintegratie\nherinterpretatie\nherinterpreteren\nherintrede\nherintreden\nherintreder\nherintreding\nherintreedster\nherintroduceren\nherintroductie\nherinvesteren\nherinvestering\nherinvoeren\nherinvoering\nherkansen\nherkansers\nherkansing\nherkansingsmogelijkheid\nherkansingsrace\nherkansingswedstrijd\nherkapitalisatie\nherkapitaliseren\nherkauwen\nherkauwer\nherkenbaar\nherkenbaarheid\nherkennen\nherkenner\nherkenning\nherkenningsmelodie\nherkenningspunt\nherkenningssignaal\nherkenningsteken\nherkenningstune\nherkerstening\nherkeuren\nherkeuring\nherkiesbaar\nherkiesbaarheid\nherkiezen\nherkiezing\nherkomst\nherkomstbenaming\nherkomstig\nherkomstland\nherkoop\nherkrijgen\nherkrijging\nherkwalificatie\nherladen\nherlancering\nherleidbaar\nherleidbaarheid\nherleiden\nherleiding\nherleven\nherleving\nherlezen\nherlezing\nherlocatie\nhermafrodiet\nhermandad\nhermelijn\nhermelijnen\nhermelijnvlinder\nhermeneutiek\nhermeneutisch\nhermesstaf\nhermetisch\nhermetisme\nhermitage\nhernationalisatie\nhernationalisering\nhernemen\nherneming\nhernhutter\nhernia\nherniaoperatie\nhernieuwbaar\nhernieuwd\nhernieuwen\nhernieuwing\nhernoemen\nhernummering\nheronderhandelen\nheronderhandeling\nheronderzoek\nherontdekken\nherontdekking\nherontwerp\nherontwikkeling\nheropbloei\nheropbouw\nheropbouwen\nheropenen\nheropening\nheropflakkering\nheropgestart\nheropleven\nheroplevend\nheropleving\nheropname\nheroprichten\nheroprichting\nheropstanding\nheropstarten\nheroptreden\nheropvoeden\nheropvoeding\nheropvoedingskamp\nheropvoering\nherordenen\nherordening\nherorganiseren\nheroriëntatie\nheroriënteren\nheroriëntering\nheros\nheroveren\nherovering\nheroverwegen\nheroverweging\nheroën\nheroïek\nheroïne\nheroïne-experiment\nheroïnebaby\nheroïnegebruik\nheroïnegebruiker\nheroïnehandel\nheroïnehandelaar\nheroïnehoer\nheroïnehond\nheroïnelijn\nheroïnemarkt\nheroïnevangst\nheroïneverslaafde\nheroïneverslaving\nheroïneverstrekking\nheroïsch\nheroïsme\nherpakken\nherpes\nherpesvirus\nherplaatsbaar\nherplaatsen\nherplaatsing\nherplaatsingsplan\nherplant\nherplanten\nherplantplicht\nherpositioneren\nherpositionering\nherprofilering\nherprogrammeren\nherprogrammering\nherpublicatie\nherregistratie\nherrekenen\nherrenvolk\nherrie\nherriemaker\nherrieschopper\nherrieschopster\nherrijzen\nherrijzenis\nherroepbaar\nherroepelijk\nherroepen\nherroeping\nherschatten\nherschatting\nherscheppen\nherschepping\nherschikken\nherschikking\nherscholen\nherscholing\nherschrijven\nherschrijving\nhersenaandoening\nhersenaanhangsel\nhersenactiviteit\nhersenafwijking\nhersenarbeid\nhersenbalk\nhersenbeschadiging\nhersenbloeding\nhersenbreker\nhersencapaciteit\nhersencel\nhersencentrum\nhersenchirurg\nhersenchirurgie\nhersendood\nhersendruk\nhersenemigratie\nhersenen\nhersenfunctie\nhersengebied\nhersengymnastiek\nhersenhelft\nhersenholte\nherseninfarct\nhersenkamer\nhersenkanker\nhersenklier\nhersenkneuzing\nhersenkracht\nhersenkraker\nhersenkramp\nhersenkronkel\nhersenkwab\nhersenletsel\nhersenloos\nhersenmassa\nhersenoedeem\nhersenomvang\nhersenonderzoek\nhersenonderzoeker\nhersenontsteking\nhersenoperatie\nhersenpan\nhersens\nhersenscan\nhersenschade\nhersenschim\nhersenschimmig\nhersenschors\nhersenschudding\nhersenspinsel\nhersenspoelen\nhersenspoeling\nhersenstam\nhersentjes\nhersentrauma\nhersentrauma's\nhersentumor\nhersenverweking\nhersenvlies\nhersenvliesontsteking\nhersenvlucht\nhersenvocht\nhersenvolume\nhersenweefsel\nhersenwerk\nhersenwinding\nhersenzenuw\nhersenziekte\nhersmeden\nherstart\nherstarten\nherstel\nherstelactie\nherstelbaar\nherstelbeleid\nherstelbemiddeling\nherstelbetaling\nhersteldienst\nherstelfase\nherstelkosten\nherstelkracht\nherstellen\nhersteller\nherstelling\nherstellingskosten\nherstellingsoord\nherstellingsteken\nherstellingsvermogen\nherstellingswerk\nherstelmelding\nhersteloperatie\nherstelperiode\nherstelplan\nherstelpotentieel\nherstelproces\nherstelprogramma\nherstelproject\nherstelrecht\nhersteltijd\nhersteltrainer\nherstelverplichting\nherstelwerk\nherstelwerkzaamheden\nherstelwet\nherstemmen\nherstemming\nherstraten\nherstructureren\nherstructurering\nherstructureringskosten\nherstructureringsoperatie\nherstructureringsplan\nherstructureringsproces\nherstructureringsprogramma\nherstructureringswet\nhert\nhertalen\nhertaling\nhertaxatie\nhertaxeren\nhertekend\nhertekenen\nhertekening\nhertellen\nhertelling\nhertenbeest\nhertenbout\nhertengewei\nhertenjacht\nhertenkamp\nhertenkop\nhertenleder\nhertenleer\nhertentamen\nhertenvlees\nhertoetreding\nhertoetsing\nhertog\nhertogdom\nhertogelijk\nhertogin\nhertogskroon\nhertrouw\nhertrouwd\nhertrouwen\nhertshooi\nhertshoorn\nhertshoren\nhertsleder\nhertsleren\nhertz\nhertzwijn\nheruitbrengen\nheruitgave\nheruitgeven\nheruitrusting\nheruitvinden\nheruitvoering\nheruitzenden\nheruitzending\nhervaccinatie\nhervallen\nhervatten\nhervatting\nherverdelen\nherverdeling\nherverkavelen\nherverkaveling\nherverkiesbaar\nherverkiezen\nherverkiezing\nherverkiezingscampagne\nherverkoop\nherverkozen\nhervertelling\nherverwerking\nherverzekeraar\nherverzekeren\nherverzekering\nherverzekeringscontract\nherverzekeringsmaatschappij\nherverzekeringspremie\nhervestigen\nhervestiging\nhervestigingsprogramma\nhervinden\nhervormd\nhervormde\nhervormen\nhervormer\nhervorming\nhervormingsbeleid\nhervormingsbeweging\nhervormingsgezind\nhervormingsgezindheid\nhervormingsijver\nhervormingskoers\nhervormingsmaatregel\nhervormingspakket\nhervormingspartij\nhervormingsplan\nhervormingspolitiek\nhervormingsproces\nhervormingsprogramma\nhervormingsproject\nhervormingsstreven\nhervormingsvoorstel\nhervormingsvoorstellen\nhervormingswet\nherwaarderen\nherwaardering\nherwaarderingsgebied\nherwaarts\nherweging\nherwerken\nherwerking\nherwerkt\nherwinnen\nherwinning\nherwissel\nherzeggen\nherzien\nherziener\nherziening\nherzieningsverzoek\nherzuiling\nhes\nhese\nhesen\nhesp\nhespenbeen\nhet\nhet is menens\nhet-woord\nhetaere\nheteluchtballon\nheteluchtkanon\nheteluchtmotor\nheteluchtoven\nheteluchtverwarming\nheten\nheterdaad\nheterdaadje\nhetero\nheterodox\nheterodoxie\nheterofiel\nheterofilie\nheterogeen\nheterogeniteit\nheteromorf\nheteroniem\nheteronomie\nheteronoom\nheteroseksualiteit\nheteroseksueel\nhetgeen\nhetwelk\nhetze\nhetzelfde\nhetzelve\nhetzij\nheugel\nheugelijk\nheugen\nheugenis\nheuglijk\nheulen\nheulsap\nheulzaad\nheup\nheupbeen\nheupbeweging\nheupblessure\nheupbroek\nheupdysplasie\nheupflacon\nheupfles\nheupgewricht\nheupgordel\nheuphoogte\nheupjicht\nheupklachten\nheupoperatie\nheupwiegen\nheupzwaai\nheuristiek\nheuristisch\nheus\nheuselijk\nheusheid\nheuvel\nheuvelachtig\nheuvelafwaarts\nheuvelen\nheuvelig\nheuvelkam\nheuvelland\nheuvellandschap\nheuvelopwaarts\nheuvelrand\nheuvelrug\nheuveltje\nheuveltop\nhevea\nhevel\nhevelbarometer\nhevelen\nhevelpomp\nhevig\nhevigheid\nhexadecimaal\nhexagonaal\nhexagoon\nhexagram\nhexameter\nhexaëder\nhezbollah\nhiaat\nhibiscus\nhickory\nhidalgo\nhidjab\nhidjra\nhief\nhiel\nhielband\nhield\nhielen\nhielenlikker\nhielenlikster\nhieling\nhielp\nhielprik\nhielriem\nhielsteunen\nhieltje\nhiep\nhieperdepiep\nhier\nhieraan\nhierachter\nhieraf\nhierbeneden\nhierbij\nhierbinnen\nhierboven\nhierbuiten\nhierdoor\nhierheen\nhierin\nhierlangs\nhiermede\nhiermee\nhierna\nhiernaar\nhiernaartoe\nhiernaast\nhiernagenoemd\nhiernamaals\nhiernavolgend\nhiernevens\nhierom\nhieromheen\nhieromtrent\nhieronder\nhierop\nhierover\nhiertegen\nhiertegenover\nhiertoe\nhiertussen\nhieruit\nhiervan\nhiervandaan\nhiervoor\nhieuw\nhieuwen\nhieven\nhifi\nhifi-installatie\nhifiapparatuur\nhifitoren\nhigh\nhigh five\nhigh society\nhigh-end\nhighbrow\nhighteaën\nhightech\nhightechbedrijf\nhightechindustrie\nhightechsector\nhihat\nhij\nhij-vorm\nhijgen\nhijger\nhijgerig\nhijglijn\nhijs\nhijsanker\nhijsbalk\nhijsbeugel\nhijsblok\nhijsbok\nhijscapaciteit\nhijsen\nhijsinstallatie\nhijskraan\nhijslier\nhijsmogelijkheid\nhijsogen\nhijsoog\nhijstoestel\nhijstouw\nhijsvermogen\nhijsvoorziening\nhijswerktuig\nhijzelf\nhik\nhikken\nhilarisch\nhilariteit\nhinde\nhinder\nhinderen\nhinderlaag\nhinderlijk\nhindernis\nhindernisbaan\nhindernisloop\nhinderpaal\nhindoe\nhindoegod\nhindoeleider\nhindoepartij\nhindoes\nhindoetempel\nhindoeïsme\nhindoeïstisch\nhineininterpretieren\nhing\nhink-stap-springen\nhink-stap-sprong\nhinkelaar\nhinkelbaan\nhinkelen\nhinkelepink\nhinkelspel\nhinken\nhinkepink\nhinkepinken\nhinkepoot\nhinkspel\nhinniken\nhint\nhinten\nhinterland\nhints\nhip\nhiphop\nhiphopband\nhiphopbeat\nhiphopcultuur\nhiphopgroep\nhiphopnummer\nhiphopper\nhiphopscene\nhiphopwereld\nhippelen\nhippen\nhippie\nhippie-ideaal\nhippieachtig\nhippieachtige\nhippiedom\nhippiegeneratie\nhippiekleding\nhippiekleren\nhippietijd\nhippisch\nhippocampus\nhippocratisch\nhippodroom\nhippopotamus\nhispanic\nhispanisme\nhispanist\nhispanoloog\nhistamine\nhistogram\nhistologie\nhistologisch\nhistorica\nhistorici\nhistoricisme\nhistoriciteit\nhistoricus\nhistorie\nhistoriek\nhistorieschilder\nhistorieschilderkunst\nhistorieschrijver\nhistoriestuk\nhistorietje\nhistoriograaf\nhistoriografie\nhistoriografisch\nhistorisch\nhistorisch-cultureel\nhistorisch-kritisch\nhistoriseren\nhistorisme\nhistoristisch\nhit\nhitfabriek\nhitfilm\nhitgevoelig\nhitleriaans\nhitlijst\nhitlist\nhitmachine\nhitmusical\nhitnotering\nhitparade\nhitpotentie\nhitsen\nhitsig\nhitsigheid\nhitsingle\nhitsucces\nhitte\nhittebarrière\nhittebestendig\nhittebestendigheid\nhittegolf\nhitten\nhittepetit\nhitteschild\nhittestraling\nhittezoekend\nhiv\nhiv-besmetting\nhiv-geïnfecteerde\nhiv-infectie\nhiv-positief\nhiv-virus\nhivinfectie\nhiërarchie\nhiërarchiek\nhiërarchisch\nhiëratisch\nhiëroglief\nhiërogliefen\nhiëroglifisch\nhiëroglyfe\nhiëroglyfisch\nho\nhobbel\nhobbelaar\nhobbelachtig\nhobbeldebobbel\nhobbelen\nhobbelig\nhobbeligheid\nhobbelpaard\nhobbelstoel\nhobbelweg\nhobbezak\nhobbezakkerig\nhobbit\nhobbits\nhobby\nhobbyblad\nhobbyboer\nhobbyclub\nhobbycomputer\nhobbyen\nhobbyisme\nhobbyist\nhobbyistisch\nhobbyruimte\nhobbysfeer\nhobo\nhoboïst\nhockey\nhockeybal\nhockeybond\nhockeybondscoach\nhockeycarrière\nhockeyclub\nhockeycoach\nhockeycompetitie\nhockeyelftal\nhockeyen\nhockeyer\nhockeyfederatie\nhockeyfinale\nhockeyinternational\nhockeyloopbaan\nhockeyploeg\nhockeyspel\nhockeysport\nhockeystadion\nhockeyster\nhockeystick\nhockeyteam\nhockeytoernooi\nhockeyveld\nhockeyvereniging\nhockeywedstrijd\nhocus pocus\nhodgkin\nhoe\nhoed\nhoedanig\nhoedanigheid\nhoeden\nhoedenatelier\nhoedenborstel\nhoedendoos\nhoedenfabriek\nhoedenlint\nhoedenmaakster\nhoedenmaker\nhoedenpen\nhoedenplank\nhoedenspeld\nhoedenvilt\nhoedenwinkel\nhoeder\nhoederecht\nhoedster\nhoef\nhoefbeslag\nhoefblad\nhoefdier\nhoefdieren\nhoefgetrappel\nhoefijzer\nhoefijzermagneet\nhoefijzervormig\nhoefmagneet\nhoefnagel\nhoefslag\nhoefsmederij\nhoefsmid\nhoefstal\nhoegenaamd\nhoegrootheid\nhoek\nhoekbal\nhoekband\nhoekbank\nhoekbeschermer\nhoekbeslag\nhoekdeel\nhoeken\nhoeker\nhoekerker\nhoekgraad\nhoekhaard\nhoekhuis\nhoekig\nhoekigheid\nhoekijzer\nhoekkamer\nhoekkast\nhoekkeper\nhoeklijn\nhoekman\nhoekmeetinstrument\nhoekmeter\nhoekpaal\nhoekpand\nhoekplaat\nhoekprofiel\nhoekpunt\nhoeks\nhoekschop\nhoeksgewijs\nhoeksgewijze\nhoekslag\nhoeksnelheid\nhoekspar\nhoekspiegel\nhoekstaal\nhoeksteen\nhoeksteun\nhoekstijl\nhoekstoel\nhoekstoot\nhoektand\nhoektoren\nhoekvlag\nhoekwoning\nhoekzak\nhoelahoep\nhoempa\nhoempamuziek\nhoempapamuziek\nhoen\nhoenderachtig\nhoenderdief\nhoenderei\nhoenderen\nhoenderfokkerij\nhoenderhof\nhoenderhok\nhoendermarkt\nhoenderpark\nhoenderpest\nhoenderras\nhoenderteelt\nhoentje\nhoep\nhoepel\nhoepelen\nhoepelhout\nhoepelmaker\nhoepelrok\nhoepelstok\nhoephout\nhoepla\nhoepnet\nhoer\nhoera\nhoeraatje\nhoerachtig\nhoerageroep\nhoerastemming\nhoereerder\nhoeren\nhoerenbuurt\nhoerenhuis\nhoerenjager\nhoerenjong\nhoerenjongen\nhoerenkast\nhoerenkot\nhoerenloper\nhoerenmadam\nhoerenwaard\nhoerenwaardin\nhoerenzoon\nhoereren\nhoererij\nhoeri\nhoerig\nhoerigheid\nhoes\nhoesfoto\nhoeslaken\nhoesontwerp\nhoest\nhoestaanval\nhoestballetje\nhoestbonbon\nhoestbui\nhoestdrank\nhoestekst\nhoesten\nhoestmiddel\nhoestpastille\nhoestprikkel\nhoestsiroop\nhoeststillend\nhoetel\nhoetelaar\nhoetelen\nhoeve\nhoeveboter\nhoeveel\nhoeveelheid\nhoeveelste\nhoeven\nhoever\nhoeverre\nhoevetoerisme\nhoewel\nhoezee\nhoezeer\nhoezo\nhof\nhofambt\nhofarts\nhofauto\nhofbal\nhofballet\nhofcultuur\nhofdame\nhofdichter\nhofdignitaris\nhofetiquette\nhoffelijk\nhoffelijkheid\nhoffotograaf\nhofhond\nhofhorig\nhofhorige\nhofhouding\nhofintrige\nhofjacht\nhofje\nhofjonker\nhofkapel\nhofkapelaan\nhofkoets\nhofkringen\nhofkroniek\nhofleven\nhofleverancier\nhofmaarschalk\nhofmakerij\nhofmeester\nhofmeesteres\nhofmeier\nhofnar\nhofpersoneel\nhofprediker\nhofrijtuig\nhofrouw\nhofschilder\nhofstad\nhofstede\nhofstee\nhofstoet\nhoge\nhoge-energiefysica\nhogedrukgebied\nhogedrukpan\nhogedrukreiniger\nhogedrukspuit\nhogelijk\nhogen\nhogepriester\nhogepriesteres\nhogepriesterlijk\nhogepriesterschap\nhoger\nhogere-inkomensgroep\nhogereburgerschool\nhogeremachtsvergelijking\nhogergenoemd\nhogergeplaatst\nhogerhand\nhogeronderwijsbeleid\nhogerop\nhogers\nhogervermeld\nhogerwal\nhogeschool\nhogeschoolraad\nhogeschoolrijden\nhogesnelheidslijn\nhogesnelheidsnet\nhogesnelheidsspoorlijn\nhogesnelheidstrein\nhoging\nhoi\nhok\nhokjesdenken\nhokjesgeest\nhokjesmentaliteit\nhokkeling\nhokken\nhokkerig\nhokvast\nhol\nhola\nholbewoner\nholbewoonster\nhold-up\nholderdebolder\nholding\nholdingconstructie\nholdingmaatschappij\nholdingstructuur\nhole\nhole-in-one\nholebi\nholen\nholenbeer\nholenbroeder\nholenduif\nholenkunst\nholenmens\nholheid\nholhoornig\nholisme\nholist\nholistisch\nhollandaisesaus\nhollanditis\nholleblok\nhollen\nholletje\nholligheid\nholmeslicht\nholocaust\nholocaustmuseum\nholoceen\nhologig\nholografie\nholografisch\nhologram\nholpijp\nholpijpje\nholrond\nholschaaf\nholst\nholsteiner\nholster\nholte\nholtedier\nholtedieren\nholvast\nholwangig\nhom\nhombaars\nhome\nhomecomputer\nhomejacking\nhomemade\nhomeopaat\nhomeopathie\nhomeopathisch\nhomeostase\nhomeostatisch\nhomepage\nhomepagina\nhomerisch\nhomerun\nhomespun\nhometrainer\nhomevideo\nhomiletiek\nhomiletisch\nhomilie\nhommage\nhommel\nhommelbij\nhommer\nhomo\nhomo australopithecus\nhomo erectus\nhomo habilis\nhomo sapiens\nhomo universalis\nhomo-echtpaar\nhomo-emancipatie\nhomo-erotiek\nhomo-erotisch\nhomo-organisatie\nhomoactivist\nhomoadoptie\nhomobar\nhomobeleid\nhomocircuit\nhomofiel\nhomofilie\nhomofobie\nhomofoob\nhomofoon\nhomogeen\nhomogeniseren\nhomogenisering\nhomogeniteit\nhomograaf\nhomohaat\nhomohuwelijk\nhomokinetisch\nhomologatie\nhomologeren\nhomologie\nhomoloog\nhomomonument\nhomoniem\nhomonymie\nhomopaar\nhomoparade\nhomopolair\nhomorelatie\nhomosauna\nhomoscene\nhomoseks\nhomoseksualiteit\nhomoseksueel\nhomostel\nhomostudies\nhomowereld\nhomozygoot\nhomp\nhompelen\nhompelvoet\nhond\nhondenasiel\nhondenbaan\nhondenbeet\nhondenbelasting\nhondenbezitter\nhondenbrokken\nhondenbrood\nhondenclub\nhondendokter\nhondendrol\nhondenfluitje\nhondenfokker\nhondengeblaf\nhondengeleider\nhondengevecht\nhondenhaar\nhondenhok\nhondenjong\nhondenkar\nhondenkennel\nhondenkenner\nhondenkeuring\nhondenkop\nhondenkot\nhondenleven\nhondenliefhebber\nhondenlijn\nhondenlul\nhondenmand\nhondenmepper\nhondenneus\nhondenoog\nhondenpenning\nhondenpistool\nhondenpoep\nhondenpoepbeleid\nhondenpoepbestrijding\nhondenras\nhondenren\nhondenriem\nhondenslee\nhondenstiel\nhondententoonstelling\nhondentoilet\nhondentong\nhondentrimmer\nhondentrimster\nhondentrouw\nhondenuitlaatplaats\nhondenvel\nhondenvlees\nhondenvoer\nhondenwacht\nhondenweer\nhondenwerk\nhondenziekte\nhondenzweep\nhonderd\nhonderddelig\nhonderddertig\nhonderdduizend\nhonderdduizendste\nhonderdduizendtal\nhonderdjarig\nhonderdjarige\nhonderdje\nhonderdmaal\nhonderdman\nhonderdnegentig\nhonderdste\nhonderdtachtig\nhonderdtal\nhonderdtien\nhonderdtwintig\nhonderdtwintigduizend\nhonderduit\nhonderdveertig\nhonderdveertigduizend\nhonderdvijfentwintig\nhonderdvijftien\nhonderdvijftig\nhonderdvijftigduizend\nhonderdvoud\nhonderdvoudig\nhonderdzestig\nhonderdzeventig\nhonds\nhondsberoerd\nhondsbloem\nhondsbrutaal\nhondsdagen\nhondsdol\nhondsdolheid\nhondsdraf\nhondshaai\nhondsheid\nhondsmoe\nhondsmoeilijk\nhondspeterselie\nhondsroos\nhondstrouw\nhondsvot\nhonen\nhonend\nhonger\nhongerbaantje\nhongerbuikje\nhongerdood\nhongeren\nhongergevoel\nhongerig\nhongerigen\nhongerkunstenaar\nhongerkuur\nhongerlap\nhongerlappen\nhongerlijder\nhongerlijdster\nhongerloon\nhongeroedeem\nhongeroproer\nhongerprobleem\nhongersnood\nhongerstaken\nhongerstaker\nhongerstaking\nhongerstiller\nhongerwinter\nhonig\nhonigachtig\nhonigbij\nhonigdauw\nhonigdrank\nhonighei\nhonigraat\nhonigslinger\nhonigzeem\nhonigzoet\nhoning\nhoningachtig\nhoningbij\nhoningdauw\nhoningdrank\nhoninghei\nhoningheide\nhoningklaver\nhoningkleurig\nhoningkoek\nhoningpers\nhoningpot\nhoningraat\nhoningraatmotief\nhoningslinger\nhoningzeem\nhoningzoet\nhoningzuiger\nhonk\nhonkbal\nhonkbalcoach\nhonkbalknuppel\nhonkballen\nhonkballer\nhonkbalpet\nhonkbalploeg\nhonkbalseizoen\nhonkbalspel\nhonkbalstadion\nhonkbalteam\nhonkbalveld\nhonkbalwereld\nhonken\nhonkloopster\nhonkloper\nhonkman\nhonkslag\nhonkvast\nhonkvastheid\nhonnepon\nhonneponnig\nhonneurs\nhonnig\nhonorabel\nhonorair\nhonorarium\nhonoreren\nhonorering\nhonoreringsregeling\nhonoreringsstructuur\nhonoreringssysteem\nhonoris causa\nhoofd\nhoofdaandeelhouder\nhoofdaanklaagster\nhoofdaanklager\nhoofdaannemer\nhoofdaccent\nhoofdact\nhoofdacteur\nhoofdactiviteit\nhoofdader\nhoofdadministrateur\nhoofdadvocaat-generaal\nhoofdafdeling\nhoofdafmeting\nhoofdagent\nhoofdagentschap\nhoofdakte\nhoofdaltaar\nhoofdambt\nhoofdambtenaar\nhoofdanalist\nhoofdarbeid\nhoofdarbeider\nhoofdarchitectuur\nhoofdargument\nhoofdartikel\nhoofdas\nhoofdaspect\nhoofdattractie\nhoofdbaan\nhoofdband\nhoofdbedekking\nhoofdbedoeling\nhoofdbedrijfschap\nhoofdbeginsel\nhoofdbehandelaar\nhoofdberoep\nhoofdbestand\nhoofdbestanddeel\nhoofdbestuur\nhoofdbestuurder\nhoofdbestuurslid\nhoofdbetrachting\nhoofdbetrekking\nhoofdbewaker\nhoofdbeweging\nhoofdbewerker\nhoofdbewerking\nhoofdbewoner\nhoofdbewoonster\nhoofdbezigheid\nhoofdbezwaar\nhoofdboekhouder\nhoofdbreken\nhoofdbrekend\nhoofdbrok\nhoofdbureau\nhoofdcategorie\nhoofdcentrale\nhoofdcoach\nhoofdcommentaar\nhoofdcommissaris\nhoofdcomputer\nhoofdconclusie\nhoofdconducteur\nhoofdconservator\nhoofdconstructeur\nhoofddader\nhoofddek\nhoofddeksel\nhoofddeugd\nhoofddiagonaal\nhoofddirecteur\nhoofddirectie\nhoofddirectielid\nhoofddocent\nhoofddocument\nhoofddoek\nhoofddoel\nhoofddoelstelling\nhoofdeconoom\nhoofdeiland\nhoofdeind\nhoofdeinde\nhoofdelijk\nhoofdeloos\nhoofdfiguur\nhoofdfilm\nhoofdfonds\nhoofdfunctie\nhoofdgast\nhoofdgebouw\nhoofdgedachte\nhoofdgeld\nhoofdgerecht\nhoofdgetuige\nhoofdgroep\nhoofdhaar\nhoofdhuid\nhoofdhuis\nhoofdhuurder\nhoofdhuurster\nhoofdig\nhoofdigheid\nhoofdindeling\nhoofdindex\nhoofding\nhoofdingang\nhoofdingeland\nhoofdingenieur\nhoofdingenieur-directeur\nhoofdingrediënt\nhoofdinhoud\nhoofdinkomen\nhoofdinspecteur\nhoofdinspectie\nhoofditem\nhoofdjournaal\nhoofdkaas\nhoofdkanaal\nhoofdkantoor\nhoofdkenmerk\nhoofdkerk\nhoofdkern\nhoofdklasse\nhoofdklasser\nhoofdklemtoon\nhoofdkleur\nhoofdknik\nhoofdknikken\nhoofdkostwinner\nhoofdkraan\nhoofdkussen\nhoofdkwartier\nhoofdlamp\nhoofdleider\nhoofdleiding\nhoofdleidster\nhoofdletsel\nhoofdletter\nhoofdleverancier\nhoofdligger\nhoofdligging\nhoofdlijn\nhoofdlijnen\nhoofdlijnennotitie\nhoofdlocatie\nhoofdluis\nhoofdmaaltijd\nhoofdmacht\nhoofdman\nhoofdmedewerker\nhoofdmedewerkster\nhoofdmeester\nhoofdmenu\nhoofdmoot\nhoofdmotief\nhoofdmotor\nhoofdnet\nhoofdnummer\nhoofdofficier\nhoofdonderhandelaar\nhoofdonderwerp\nhoofdonderwijzer\nhoofdonderwijzeres\nhoofdonderzoeker\nhoofdontwerper\nhoofdoorzaak\nhoofdopdracht\nhoofdopzichter\nhoofdorgaan\nhoofdorgel\nhoofdpaneel\nhoofdpeluw\nhoofdpersonage\nhoofdpersoon\nhoofdpijler\nhoofdpijn\nhoofdpijnpoeder\nhoofdpijnpoeier\nhoofdpijntablet\nhoofdplaat\nhoofdplaats\nhoofdpodium\nhoofdpoort\nhoofdpost\nhoofdpostkantoor\nhoofdprijs\nhoofdprobleem\nhoofdproduct\nhoofdprogramma\nhoofdpunt\nhoofdredacteur\nhoofdredacteur-directeur\nhoofdredacteurschap\nhoofdredactie\nhoofdredactioneel\nhoofdredactrice\nhoofdreden\nhoofdregel\nhoofdregister\nhoofdrekenen\nhoofdrichting\nhoofdrijbaan\nhoofdriool\nhoofdrol\nhoofdrolspeelster\nhoofdrolspeler\nhoofdroos\nhoofdroute\nhoofdschakelaar\nhoofdschakelbord\nhoofdscheidsrechter\nhoofdscherm\nhoofdschotel\nhoofdschudden\nhoofdschuddend\nhoofdschuldenaar\nhoofdschuldige\nhoofdscout\nhoofdseizoen\nhoofdselectie\nhoofdsieraad\nhoofdsom\nhoofdsponsor\nhoofdspoor\nhoofdstad\nhoofdstation\nhoofdstedelijk\nhoofdstedeling\nhoofdstel\nhoofdstembureau\nhoofdsteun\nhoofdstraat\nhoofdstraf\nhoofdstreek\nhoofdstromen\nhoofdstroming\nhoofdstroom\nhoofdstructuur\nhoofdstuk\nhoofdstukindeling\nhoofdstuknummer\nhoofdstuknummering\nhoofdstuktitel\nhoofdtaak\nhoofdtabel\nhoofdtak\nhoofdtekst\nhoofdtelefoon\nhoofdtelwoord\nhoofdthema\nhoofdtitel\nhoofdtoernooi\nhoofdtooi\nhoofdtoon\nhoofdtornooi\nhoofdtrainer\nhoofdtrap\nhoofdtrek\nhoofdtrekken\nhoofdtribune\nhoofduitvoerder\nhoofdvak\nhoofdvakdocent\nhoofdverantwoordelijk\nhoofdverantwoordelijke\nhoofdverantwoordelijkheid\nhoofdverblijf\nhoofdverblijfplaats\nhoofdverdachte\nhoofdverdienste\nhoofdverhaal\nhoofdverkeersader\nhoofdverkeersweg\nhoofdverpleegkundige\nhoofdverpleegster\nhoofdverpleger\nhoofdverzekerde\nhoofdvestiging\nhoofdvoedsel\nhoofdvogel\nhoofdvoorstelling\nhoofdvoorwaarde\nhoofdvraag\nhoofdwaarheid\nhoofdwacht\nhoofdwapen\nhoofdwapening\nhoofdwas\nhoofdwassing\nhoofdweg\nhoofdwegennet\nhoofdwerk\nhoofdwet\nhoofdwetten\nhoofdwond\nhoofdwonde\nhoofdwoning\nhoofdzaak\nhoofdzakelijk\nhoofdzeer\nhoofdzetel\nhoofdzin\nhoofdzonde\nhoofdzuster\nhoofs\nhoofsheid\nhoog\nhoogaars\nhoogachten\nhoogachting\nhoogactief\nhoogaltaar\nhoogbegaafd\nhoogbegaafdheid\nhoogbejaard\nhoogbejaarde\nhoogbeschaafd\nhoogblond\nhoogbouw\nhoogburgerlijk\nhoogconjunctuur\nhoogdag\nhoogdekker\nhoogdravend\nhoogdravendheid\nhoogdrempelig\nhoogdringend\nhoogdringendheid\nhoogdruk\nhoogedel\nhoogedelachtbaar\nhoogedelgestreng\nhoogeerwaard\nhoogenergetisch\nhoogfeest\nhoogfrequent\nhoogfrequentie\nhooggaand\nhooggeacht\nhooggebergte\nhooggeboren\nhooggegrepen\nhooggekwalificeerd\nhooggeleerd\nhooggeleerde\nhooggelegen\nhooggeplaatst\nhooggeplaatste\nhooggeprijsd\nhooggerechtshof\nhooggeschat\nhooggeschoold\nhooggespannen\nhooggespecialiseerd\nhooggestemd\nhooggestreng\nhooggewaardeerd\nhooggeëerd\nhoogglans\nhoogglanslak\nhoogglanzend\nhooghartig\nhooghartigheid\nhoogheemraad\nhoogheemraadschap\nhoogheid\nhooghouden\nhoogland\nhooglander\nhooglands\nhoogleraar\nhoogleraar-directeur\nhoogleraarschap\nhoogleraarsniveau\nhooglijk\nhooglopend\nhoogmis\nhoogmoed\nhoogmoedig\nhoogmoedigheid\nhoogmoedswaanzin\nhoogmogend\nhoogmogende\nhoogmoleculair\nhoognodig\nhoogontwikkeld\nhoogopgeleid\nhoogopgeleide\nhoogopgelopen\nhoogoplopend\nhoogoven\nhoogovenbedrijf\nhoogovenslakken\nhoogpolig\nhoogproductief\nhoogradioactief\nhoogrendementsketel\nhoogrentend\nhoogrood\nhoogschatten\nhoogseizoen\nhoogspanning\nhoogspanningskabel\nhoogspanningsleiding\nhoogspanningslijn\nhoogspanningsmast\nhoogspanningsnet\nhoogspanningsverbinding\nhoogspringen\nhoogspringer\nhoogst\nhoogstaand\nhoogstam\nhoogstamboomgaard\nhoogstamfruit\nhoogstammig\nhoogstand\nhoogstandje\nhoogstbiedende\nhoogsteigen\nhoogstens\nhoogstgelegen\nhoogstnodig\nhoogstnoodzakelijk\nhoogstpersoonlijk\nhoogstudent\nhoogstverantwoordelijke\nhoogstwaarschijnlijk\nhoogstzelden\nhoogte\nhoogtechnologisch\nhoogtekaart\nhoogteligging\nhoogtelijn\nhoogtelijnen\nhoogtemeter\nhoogtemeting\nhoogtepunt\nhoogterecord\nhoogteroer\nhoogtestage\nhoogtestraling\nhoogtetraining\nhoogteverschil\nhoogtevrees\nhoogteziekte\nhoogtezon\nhoogtij\nhoogtijd\nhoogtijdag\nhoogtijperiode\nhooguit\nhoogveen\nhoogveengebied\nhoogverheven\nhoogverraad\nhoogverrijkt\nhoogvlakte\nhoogvlieger\nhoogvogel\nhoogwaardig\nhoogwaardigheid\nhoogwaardigheidsbekleder\nhoogwater\nhoogwaterbescherming\nhoogwatergolf\nhoogwaterkering\nhoogwaterlijn\nhoogwaterstand\nhoogwelgeboren\nhoogwerker\nhoogzomer\nhoogzwanger\nhooi\nhooiberg\nhooiboter\nhooibouw\nhooibroei\nhooien\nhooier\nhooihark\nhooikaas\nhooikist\nhooikoorts\nhooiland\nhooimaand\nhooimachine\nhooimijt\nhooioogst\nhooiopper\nhooiruiter\nhooischelf\nhooischuur\nhooitas\nhooitijd\nhooivork\nhooiwagen\nhooiweer\nhooizolder\nhooked\nhooligan\nhooliganisme\nhoon\nhoongelach\nhoop\nhoopgevend\nhoopvol\nhoor\nhoorapparaat\nhoorbaar\nhoorbaarheid\nhoorbuis\nhoorcollege\nhoorcommissie\nhoorder\nhoorderes\nhoorn\nhoornaar\nhoornachtig\nhoornbeest\nhoornblad\nhoornblazer\nhoorndol\nhoorndrager\nhoornen\nhoorngeschal\nhoornig\nhoornist\nhoornklaver\nhoornlaag\nhoornsignaal\nhoornslang\nhoorntje\nhoornuil\nhoornvee\nhoornvlies\nhoornvliestransplantatie\nhoornweefsel\nhoorspel\nhoorspelacteur\nhoorspelstem\nhoortoestel\nhoorzitting\nhoos\nhoosbui\nhoosgat\nhoosvat\nhop\nhopakker\nhopbel\nhopbouw\nhope\nhopelijk\nhopeloos\nhopeloosheid\nhopen\nhopje\nhopla\nhopland\nhopman\nhopoogst\nhoppe\nhoppen\nhopper\nhopperzuiger\nhopplant\nhoprank\nhopsa\nhopsen\nhopteelt\nhor\nhora\nhorde\nhordeloop\nhordeloopster\nhordelopen\nhordeloper\nhorden\nhoreca\nhoreca-activiteiten\nhoreca-etablissement\nhorecabedrijf\nhorecabeheer\nhorecabeleid\nhorecabestemming\nhorecabeurs\nhorecabond\nhorecaboot\nhorecabranche\nhorecafaciliteiten\nhorecafunctie\nhorecagebied\nhorecagedeelte\nhorecagelegenheid\nhorecagroothandel\nhorecaondernemer\nhorecaonderneming\nhorecapersoneel\nhorecaprijzen\nhorecasector\nhorecavereniging\nhorecavergunning\nhorecavoorziening\nhorecawet\nhorecazaak\nhoren\nhorendol\nhorendrager\nhorenswaard\nhorentje\nhorig\nhorige\nhorigheid\nhorizon\nhorizonbepaling\nhorizont\nhorizontaal\nhorizontalisering\nhorizontalisme\nhorizontalistisch\nhorizonvervuiling\nhork\nhorkerig\nhorlepiep\nhorloge\nhorlogearmband\nhorlogebandje\nhorlogeglas\nhorlogekast\nhorlogeketting\nhorlogemaker\nhorlogemerk\nhorlogerie\nhorloges\nhorlogesleutel\nhorlogeveer\nhorlogewijzer\nhormon\nhormonaal\nhormonen\nhormonengebruik\nhormonenhandel\nhormonenmaffia\nhormoon\nhormoonbehandeling\nhormoonbepaling\nhormoongebruik\nhormoonhuishouding\nhormooninjectie\nhormoonpreparaat\nhormoonproductie\nhormoonspiegel\nhormoonstimulatie\nhormoonverstorend\nhormoonvlees\nhormoonvrij\nhoroscoop\nhoroscooptrekker\nhorrelvoet\nhorren\nhorreur\nhorribel\nhorror\nhorrorfilm\nhorrorgenre\nhorrorkomedie\nhorrorscenario\nhorrorverhaal\nhors\nhors-d'oeuvre\nhorsmakreel\nhorst\nhorsten\nhort\nhorten\nhortensia\nhorticultuur\nhortoloog\nhortus\nhorzel\nhorzelfunctie\nhosanna\nhospartij\nhospes\nhospice\nhospik\nhospikken\nhospita\nhospitaal\nhospitaaldienst\nhospitaallinnen\nhospitaalridder\nhospitaalschip\nhospitaalsoldaat\nhospitalisatie\nhospitalisatieverzekering\nhospitaliseren\nhospitalisering\nhospitaliteit\nhospitant\nhospitante\nhospiteren\nhospitium\nhossebossen\nhossel\nhosselaar\nhosselen\nhossen\nhost\nhostel\nhostellerie\nhosten\nhostess\nhostie\nhostiekelk\nhostiel\nhostiliteit\nhosting\nhot\nhotdog\nhotel\nhotel-restaurant\nhotelaccommodatie\nhotelbed\nhotelbediende\nhotelbedrijf\nhotelboekingen\nhotelbranche\nhotelbrand\nhotelbranden\nhotelbusiness\nhotelcapaciteit\nhotelcontracten\nhoteldebotel\nhoteldirecteur\nhoteleigenaar\nhotelemployee\nhotelemployé\nhotelfunctie\nhotelgast\nhotelgroep\nhotelhouder\nhotelhoudster\nhotelier\nhotelindustrie\nhotelkamer\nhotelketen\nhotelkosten\nhotellerie\nhotellinnen\nhotellobby\nhotelmanagement\nhotelmanager\nhotelovernachting\nhotelpersoneel\nhotelprijs\nhotelprijzen\nhotelrat\nhotelregister\nhotelrekening\nhotelreservering\nhotelschakeling\nhotelschip\nhotelschool\nhotelsector\nhotelsluiting\nhotelsuite\nhoteluitbater\nhotelverblijf\nhotelwezen\nhotelzilver\nhotemetoot\nhotjazz\nhotline\nhotpants\nhotsen\nhotspot\nhotten\nhou\nhoudbaar\nhoudbaarheid\nhoudbaarheidsdatum\nhoudbaarheidstermijn\nhouden\nhouder\nhouderes\nhouderschapsbelasting\nhoudgreep\nhouding\nhoudkracht\nhoudster\nhoudstermaatschappij\nhoukind\nhouse\nhouse-dj\nhousebeat\nhousemuziek\nhousen\nhouseparty\nhousescene\nhousewarmingparty\nhout\nhoutaankap\nhoutachtig\nhoutafval\nhoutazijn\nhoutbedrijf\nhoutbestrating\nhoutbewerken\nhoutbewerker\nhoutbewerking\nhoutblazer\nhoutblok\nhoutboard\nhoutbond\nhoutboor\nhoutbouw\nhoutcel\nhoutcellulose\nhoutconstructie\nhoutdelen\nhoutdraaier\nhoutdruk\nhoutduif\nhoutekster\nhouten\nhouterig\nhouterigheid\nhoutgas\nhoutgewas\nhoutgravure\nhouthakken\nhouthakker\nhouthakkershemd\nhouthandel\nhouthandelaar\nhouthaven\nhouthoudend\nhoutig\nhoutindustrie\nhouting\nhoutje\nhoutje-touwtje\nhoutkachel\nhoutkap\nhoutkapper\nhoutkever\nhoutkoper\nhoutlagering\nhoutland\nhoutlijm\nhoutluis\nhoutmarkt\nhoutmijt\nhoutmolm\nhoutnerf\nhoutopbrengst\nhoutopstand\nhoutpapier\nhoutprijs\nhoutproductie\nhoutpulp\nhoutresten\nhoutrijk\nhoutring\nhoutrot\nhoutschroef\nhoutsculptuur\nhoutsector\nhoutsingel\nhoutskeletbouw\nhoutskool\nhoutskoolschets\nhoutskooltekening\nhoutslijp\nhoutsnede\nhoutsnee\nhoutsnijden\nhoutsnijder\nhoutsnijkunst\nhoutsnijwerk\nhoutsnip\nhoutsnipper\nhoutsoort\nhoutspaander\nhoutsplinter\nhoutstand\nhoutstapel\nhoutstof\nhoutteelt\nhoutteer\nhouttuin\nhoutverwerkend\nhoutvester\nhoutvesterij\nhoutvezel\nhoutvijl\nhoutvlot\nhoutvlotten\nhoutvlotter\nhoutvoorraad\nhoutvrij\nhoutvulling\nhoutvulmiddel\nhoutvuur\nhoutwal\nhoutwaren\nhoutwerf\nhoutwerk\nhoutwesp\nhoutwol\nhoutworm\nhoutzaag\nhoutzaagmolen\nhoutzagerij\nhouvast\nhouw\nhouwdegen\nhouweel\nhouwen\nhouwer\nhouwerzijl\nhouwitser\nhouwtje\nhovaardig\nhovaardigheid\nhovaardij\nhoveling\nhoven\nhovenier\nhovenieren\nhoveniersbedrijf\nhovenierskunst\nhovercraft\nhoving\nhozebek\nhozen\nhr-ketel\nhsl\nhsl-oost\nhso\nhst\nhtml\nhts\nhts'er\nhttp\nhttps\nhu\nhub\nhubertusbrood\nhufter\nhufterigheid\nhugenoot\nhui\nhuichelaar\nhuichelaarster\nhuichelachtig\nhuichelachtigheid\nhuichelarij\nhuichelen\nhuid\nhuidaandoening\nhuidarts\nhuidcel\nhuidcontact\nhuidcrème\nhuiden\nhuidenkoper\nhuidig\nhuidirritatie\nhuidkanker\nhuidkleur\nhuidkleurig\nhuidmondje\nhuidoppervlak\nhuidplaat\nhuidplooi\nhuidreactie\nhuidschilfer\nhuidskleur\nhuidsmeer\nhuidspecialist\nhuidtherapie\nhuidtransplantatie\nhuidtype\nhuiduitslag\nhuidverzorging\nhuidvetten\nhuidweefsel\nhuidworm\nhuidziekte\nhuif\nhuifkar\nhuifwagen\nhuig\nhuig-r\nhuik\nhuiken\nhuilbaby\nhuilbui\nhuilebalk\nhuilebalken\nhuilen\nhuiler\nhuilerig\nhuilgedrag\nhuiltoon\nhuis\nhuis aan huis\nhuis-aan-huisblad\nhuisaansluiting\nhuisaccountant\nhuisadres\nhuisadvocaat\nhuisafval\nhuisakte\nhuisaltaar\nhuisapotheek\nhuisarchief\nhuisarrest\nhuisarts\nhuisartsbezoek\nhuisartsengeneeskunde\nhuisartsengroep\nhuisartsenhulp\nhuisartsenopleiding\nhuisartsenpost\nhuisartsenpraktijk\nhuisartsentekort\nhuisartsenvak\nhuisartsenvereniging\nhuisartsenzorg\nhuisartsgeneeskunde\nhuisartspraktijk\nhuisbaas\nhuisbakken\nhuisband\nhuisbank\nhuisbankier\nhuisbar\nhuisbediende\nhuisbel\nhuisbewaarder\nhuisbewaarster\nhuisbewoner\nhuisbezoek\nhuisbijbel\nhuisbioscoop\nhuisblad\nhuisbraak\nhuisbrand\nhuisbrandolie\nhuiscatechese\nhuiscentrale\nhuischoreograaf\nhuiscollecte\nhuiscomponist\nhuiscomputer\nhuisconcert\nhuisdealer\nhuisdeur\nhuisdier\nhuisdokter\nhuisdrukkerij\nhuisduif\nhuiseigenaar\nhuiselijk\nhuiselijkheid\nhuisgemaakt\nhuisgenoot\nhuisgenote\nhuisgerief\nhuisgezelschap\nhuisgezin\nhuisgod\nhuisgoden\nhuisheer\nhuishond\nhuishoudbeurs\nhuishoudboek\nhuishoudboekje\nhuishoudbrood\nhuishoudbudget\nhuishoudelijk\nhuishouden\nhuishoudgeld\nhuishoudhulp\nhuishouding\nhuishoudinkomen\nhuishoudjam\nhuishoudkunde\nhuishoudkundige\nhuishoudlinnen\nhuishoudonderwijs\nhuishoudportemonnee\nhuishoudschool\nhuishoudster\nhuishoudstroop\nhuishoudtextiel\nhuishoudtrap\nhuishoudwater\nhuishoudweegschaal\nhuishoudzeep\nhuishuur\nhuisindustrie\nhuisjapon\nhuisjas\nhuisje\nhuisje-boompje-beestje\nhuisjesmelker\nhuisjesslak\nhuisjongen\nhuiskamer\nhuiskamerdrama\nhuiskamerformaat\nhuiskamerproject\nhuiskamerrestaurant\nhuiskamersfeer\nhuiskapel\nhuiskapelaan\nhuiskat\nhuisknecht\nhuiskrekel\nhuiskring\nhuiskruis\nhuisleverancier\nhuislijk\nhuislijkheid\nhuislook\nhuisman\nhuismeester\nhuismerk\nhuismiddel\nhuismiddeltje\nhuismijt\nhuismoeder\nhuismuis\nhuismus\nhuisnijverheid\nhuisnummer\nhuisnummering\nhuisonderwijzer\nhuisoppas\nhuisorde\nhuisorgaan\nhuisorgel\nhuisorkest\nhuispersoneel\nhuisplaag\nhuispraktijk\nhuisprelaat\nhuisraad\nhuisrecht\nhuisregel\nhuisregels\nhuisreglement\nhuisschilder\nhuisschrijver\nhuisslaaf\nhuisslacht\nhuissleutel\nhuissloof\nhuisspin\nhuisspook\nhuisstijl\nhuisstof\nhuisstofmijt\nhuisteelt\nhuistelefoon\nhuistheater\nhuistiran\nhuistoe\nhuisuitzetting\nhuisvader\nhuisverlichting\nhuisvesten\nhuisvesting\nhuisvestingsbeleid\nhuisvestingsbureau\nhuisvestingscapaciteit\nhuisvestingscommissie\nhuisvestingscomplex\nhuisvestingsinstantie\nhuisvestingskosten\nhuisvestingsmaatschappij\nhuisvestingsnood\nhuisvestingsplan\nhuisvestingsplannen\nhuisvestingsprobleem\nhuisvestingsproblematiek\nhuisvestingsreglement\nhuisvestingssituatie\nhuisvestingsvergunning\nhuisvestingsverordening\nhuisvestingswet\nhuisvlieg\nhuisvlijt\nhuisvrede\nhuisvredebreuk\nhuisvriend\nhuisvriendin\nhuisvrouw\nhuisvrouwschap\nhuisvuil\nhuisvuilbelasting\nhuisvuilcontainer\nhuisvuilinzameling\nhuisvuilophaling\nhuisvuilscheiding\nhuisvuilzak\nhuiswaarts\nhuiswerk\nhuiswerkbegeleiding\nhuiswerkklas\nhuiswerklessen\nhuiswerkopdracht\nhuiswerkopgave\nhuiswijn\nhuiszittend\nhuiszoeking\nhuiszoekingsbevel\nhuiszwaluw\nhuiven\nhuiverachtig\nhuiveren\nhuiverig\nhuiverigheid\nhuivering\nhuiveringwekkend\nhuizen\nhuizenaanbod\nhuizenbestand\nhuizenbezit\nhuizenbezitter\nhuizenblok\nhuizenbouw\nhuizenbouwer\nhuizenhoog\nhuizenjacht\nhuizenkant\nhuizenkoper\nhuizenmarkt\nhuizenprijs\nhuizenrij\nhuizing\nhukken\nhul\nhulde\nhuldebetoon\nhuldebetuiging\nhuldeblijk\nhuldigen\nhuldiging\nhulk\nhullen\nhulp\nhulpaanbod\nhulpaanvraag\nhulpactie\nhulpagent\nhulpaggregaat\nhulpambulance\nhulpapparaat\nhulpapparatuur\nhulpbank\nhulpbedrag\nhulpbehoevend\nhulpbehoevende\nhulpbehoevendheid\nhulpbeleid\nhulpbestand\nhulpbetoon\nhulpbisschop\nhulpboek\nhulpbron\nhulpbudget\nhulpconstructie\nhulpdienst\nhulpdiscipline\nhulpdoel\nhulpeloos\nhulpeloosheid\nhulpexpeditie\nhulpfonds\nhulpgeld\nhulpgeroep\nhulpgoederen\nhulphond\nhulpinstantie\nhulpinstelling\nhulpje\nhulpkantoor\nhulpkok\nhulpkonvooi\nhulpkracht\nhulpkreet\nhulplijn\nhulpmiddel\nhulpmotor\nhulpofficier\nhulponderwijzer\nhulponderwijzeres\nhulpoperatie\nhulporganisatie\nhulppakket\nhulppersoneel\nhulpplan\nhulppost\nhulpprogramma\nhulpproject\nhulpregel\nhulprelatie\nhulpsheriff\nhulpsignaal\nhulpsinterklaas\nhulpstelling\nhulpstof\nhulpstroom\nhulpstuk\nhulpteam\nhulptrainer\nhulptransport\nhulptroepen\nhulpvaardig\nhulpvaardigheid\nhulpvector\nhulpverleenster\nhulpverlenen\nhulpverlener\nhulpverlenerschap\nhulpverlenersjargon\nhulpverlenersvak\nhulpverlening\nhulpverleningscircuit\nhulpverleningsdiensten\nhulpverleningsinstantie\nhulpverleningsinstelling\nhulpverleningsmogelijkheid\nhulpverleningsnetwerk\nhulpverleningsorganisatie\nhulpverleningspakket\nhulpverleningsplan\nhulpverleningsprocedure\nhulpverleningsproces\nhulpverleningsprogramma\nhulpverleningssetting\nhulpverleningsvoertuig\nhulpverleningsvoorstel\nhulpverleningsvoorstellen\nhulpverleningsvormen\nhulpverleningswerkzaamheden\nhulpverlichting\nhulpvermogen\nhulpverzoek\nhulpvlucht\nhulpvluchten\nhulpvraag\nhulpvraaganalyse\nhulpvrager\nhulpwerktuig\nhulpwerkwoord\nhulpwetenschap\nhulpzeel\nhulpzoekend\nhulpzoekende\nhuls\nhulsel\nhulst\nhulstbes\nhulstbos\nhum\nhumaan\nhuman resources\nhumaniora\nhumaniseren\nhumanisering\nhumanisme\nhumanist\nhumanisten\nhumanistiek\nhumanistisch\nhumanitair\nhumaniteit\nhumbug\nhumeur\nhumeurig\nhumeurigheid\nhumeurtje\nhumiliatie\nhummel\nhummen\nhummer\nhummers\nhummetje\nhummus\nhumor\nhumoraal\nhumoreske\nhumorist\nhumoristisch\nhumorloos\nhumorvol\nhumus\nhumusgrond\nhumuslaag\nhumusrijk\nhumusvorming\nhun\nhunebed\nhunebedbouwers\nhunkeren\nhunkering\nhunnenthalve\nhunnentwege\nhunnentwil\nhunnentwille\nhunner\nhunnerzijds\nhuns weegs\nhunzelf\nhup\nhuppeldepup\nhuppelen\nhuppen\nhups\nhupsakee\nhupsen\nhupsheid\nhuren\nhurken\nhurktoilet\nhurkzit\nhusky\nhusselen\nhussiet\nhut\nhutbagage\nhutbewoner\nhutbewoonster\nhutjemutje\nhutjongen\nhutkoffer\nhutsekluts\nhutselen\nhutsen\nhutsepot\nhutspot\nhuttentut\nhuur\nhuuraanbod\nhuuraanpassing\nhuurachterstand\nhuuradvies\nhuuradviescommissie\nhuurauto\nhuurbaas\nhuurbasis\nhuurbeding\nhuurbedrag\nhuurbeleid\nhuurbepaling\nhuurbescherming\nhuurceel\nhuurcommissie\nhuurcompensatie\nhuurcontract\nhuurcorrectie\nhuurder\nhuurderscomité\nhuurdersorganisatie\nhuurdersraad\nhuurdersvereniging\nhuurdersverzet\nhuurderving\nhuurdifferentiatie\nhuurfiets\nhuurflat\nhuurgarantie\nhuurgarantiefonds\nhuurgeld\nhuurgewenning\nhuurharmonisatie\nhuurhoogte\nhuurhuis\nhuurincasso\nhuurinkomsten\nhuurkazerne\nhuurkoop\nhuurkosten\nhuurlasten\nhuurleger\nhuurlijn\nhuurling\nhuurlingenleger\nhuurmarkt\nhuurmoord\nhuurmoordenaar\nhuurmoordenares\nhuurontvangst\nhuuropbrengst\nhuuropzegging\nhuurovereenkomst\nhuurpaard\nhuurpand\nhuurpanden\nhuurpeil\nhuurpenning\nhuurperiode\nhuurpolitiek\nhuurpotentieel\nhuurprijs\nhuurquote\nhuurrecht\nhuurrijtuig\nhuurschade\nhuurschuld\nhuursector\nhuursoldaat\nhuursom\nhuurstaking\nhuurster\nhuurstijging\nhuursubsidie\nhuursubsidiebeschikking\nhuursubsidiegrens\nhuursubsidieregeling\nhuursubsidiewet\nhuurtermijn\nhuurtijd\nhuurverbreking\nhuurverhoging\nhuurverlaging\nhuurvideo\nhuurwaarborg\nhuurwaarde\nhuurwaardeforfait\nhuurwagen\nhuurwet\nhuurwoning\nhuwbaar\nhuwbaarheid\nhuwelijk\nhuwelijksaangifte\nhuwelijksaankondiging\nhuwelijksaanzoek\nhuwelijksadvertentie\nhuwelijksafkondiging\nhuwelijksakte\nhuwelijksambtenaar\nhuwelijksband\nhuwelijksbed\nhuwelijksbeletsel\nhuwelijksbelofte\nhuwelijksbemiddeling\nhuwelijksbericht\nhuwelijksbootje\nhuwelijksbureau\nhuwelijkscadeau\nhuwelijksceremonie\nhuwelijkscontract\nhuwelijkscrisis\nhuwelijksdag\nhuwelijksdatum\nhuwelijksfeest\nhuwelijksgebruik\nhuwelijksgeluk\nhuwelijksgemeenschap\nhuwelijksgeschenk\nhuwelijksgift\nhuwelijksgoederengemeenschap\nhuwelijksinzegening\nhuwelijksjaar\nhuwelijksjubileum\nhuwelijkskandidaat\nhuwelijkskandidate\nhuwelijkskans\nhuwelijkskantoor\nhuwelijksleeftijd\nhuwelijksleven\nhuwelijkslijst\nhuwelijksmakelaar\nhuwelijksmarkt\nhuwelijksmis\nhuwelijksmoeilijkheden\nhuwelijksmoraal\nhuwelijksnacht\nhuwelijksovereenkomst\nhuwelijkspartner\nhuwelijksplannen\nhuwelijksplechtigheid\nhuwelijksplicht\nhuwelijkspolitiek\nhuwelijksprobleem\nhuwelijksquotiënt\nhuwelijksrecht\nhuwelijksregister\nhuwelijksreis\nhuwelijksrelatie\nhuwelijkssluiting\nhuwelijksstelsel\nhuwelijkstrouw\nhuwelijksuitzet\nhuwelijksvermogensstelsel\nhuwelijksvoltrekking\nhuwelijksvoorwaarde\nhuwelijksvoorwaarden\nhuwelijkswet\nhuwelijkswetgeving\nhuwelijkszegen\nhuwelijkszwendel\nhuwelijkszwendelaar\nhuwen\nhuzaar\nhuzarensalade\nhuzarensla\nhuzarenstuk\nhuzarenstukje\nhyacint\nhyacintenbol\nhyacintenglas\nhyacintenkweker\nhybride\nhybridisatie\nhybridisch\nhybris\nhydra\nhydraat\nhydrant\nhydraulica\nhydraulisch\nhydrazine\nhydro-elektriciteit\nhydro-elektrisch\nhydrocultuur\nhydrodynamica\nhydrodynamisch\nhydrofiel\nhydrofobie\nhydrofoob\nhydrofoon\nhydrofoorinstallatie\nhydrogenium\nhydrograaf\nhydrografie\nhydrografisch\nhydrologie\nhydrologisch\nhydroloog\nhydrolyse\nhydromechanica\nhydropneumatisch\nhydrosfeer\nhydrostatica\nhydrostatisch\nhydrotherapie\nhydroxide\nhyena\nhygiëne\nhygiënecode\nhygiënisch\nhygiënist\nhygiëniste\nhygrometer\nhygrometrie\nhygroscoop\nhygroscopisch\nhymen\nhymne\nhymnisch\nhymnologie\nhype\nhypen\nhyper\nhyperactief\nhyperactiviteit\nhyperbolisch\nhyperboliseren\nhyperbool\nhypercholesterolemie\nhypercorrect\nhypercorrectie\nhypergevoelig\nhyperinflatie\nhyperintelligent\nhyperkritiek\nhyperkritisch\nhyperlink\nhypermacht\nhypermarkt\nhypermarktketen\nhypermetroop\nhypermodern\nhypernerveus\nhyperoniem\nhyperrealisme\nhyperrealistisch\nhypersnel\nhypersonisch\nhypertekst\nhypertensie\nhypertrofie\nhypertrofisch\nhyperventilatie\nhyperventileren\nhypervlakken\nhypnose\nhypnotherapie\nhypnoticum\nhypnotisch\nhypnotiseren\nhypnotiseur\nhypnotisme\nhypo\nhypochonder\nhypochondrie\nhypochondrisch\nhypocriet\nhypocrisie\nhypocritisch\nhypodermis\nhypofyse\nhyponiem\nhypostase\nhypostaseren\nhypotaxis\nhypotensie\nhypotenusa\nhypothalamus\nhypothecair\nhypothecaris\nhypotheek\nhypotheekadvies\nhypotheekadviesbureau\nhypotheekadviseur\nhypotheekaftrek\nhypotheekakte\nhypotheekbank\nhypotheekbedrag\nhypotheekbedrijf\nhypotheekbewaarder\nhypotheekconstructie\nhypotheekdeel\nhypotheekfraude\nhypotheekgarantie\nhypotheekgegevens\nhypotheekgeld\nhypotheekgever\nhypotheekhouder\nhypotheekkantoor\nhypotheekkosten\nhypotheeklast\nhypotheeklasten\nhypotheeklening\nhypotheekmarkt\nhypotheeknemer\nhypotheekportefeuille\nhypotheekrecht\nhypotheekregister\nhypotheekrente\nhypotheekrenteaftrek\nhypotheekschuld\nhypotheekstelling\nhypotheekverklaring\nhypotheekverstrekker\nhypotheekverstrekking\nhypotheekverzekering\nhypotheekvorm\nhypotheekwezen\nhypothekeren\nhypothermie\nhypothese\nhypothetisch\nhypsometer\nhysop\nhysterica\nhystericus\nhysterie\nhysterisch\nhè\nhèhè\nhé\nhôtelier\nhüttenkäse\ni\ni-bankieren\ni-grec\ni-mode\ni.c.\ni.h.a.\ni.h.b.\ni.m.\ni.o.\ni.o.v.\ni.p.v.\ni.s.m.\ni.t.t.\ni.v.m.\ni.z.g.st.\nia\niatrogeen\niatrosofie\niatrosoof\niaën\nibidem\nibis\nibuprofen\nic\nichtyologie\nicing\nicon\niconenschilder\niconisch\niconoclasme\niconoclast\niconografie\niconografisch\niconologie\niconologisch\nicoon\nicoontje\nid'er\nid-baan\nideaal\nideaalbeeld\nideaaltype\nideaaltypisch\nideale\nideale gaswet\nidealen\nidealiseren\nidealisering\nidealisme\nidealist\nidealiste\nidealistisch\nidealiteit\nidealiter\nidee\nidee-fixe\nideetje\nideeëloos\nideeën\nideeënbus\nideeëngeschiedenis\nideeëngoed\nideeënleer\nideeënman\nideeënrijkdom\nideeënroman\nideeënvorming\nideeënwereld\nidem\nidentiek\nidentificatie\nidentificatiebewijs\nidentificatiemiddel\nidentificatienummer\nidentificatieplicht\nidentificatieproces\nidentificatiesysteem\nidentificatieteam\nidentificeerbaar\nidentificeren\nidentiteit\nidentiteitsbewijs\nidentiteitscontrole\nidentiteitscrisis\nidentiteitsfraude\nidentiteitsgebonden\nidentiteitsgegevens\nidentiteitsgevoel\nidentiteitskaart\nidentiteitsmatrix\nidentiteitsplaatje\nidentiteitsprobleem\nidentiteitsverlies\nidentiteitsvervaging\nidentiteitsvorming\nideogram\nideologie\nideologisch\nideologiseren\nideologisering\nideoloog\nideëel\nideëler\nidiolect\nidiomatisch\nidioom\nidioot\nidiosyncrasie\nidiosyncratisch\nidiot savant\nidioterie\nidioticon\nidiotie\nidiotisme\nidolaat\nidolatrie\nidool\nidylle\nidyllisch\nie\niebel\nieder\niedere\niedereen\niegelijk\niel\niemand\niemker\niep\niepen\niepenboom\niepenbos\niepenhout\niepenlaan\niepenloof\niepenspintkever\niepziekte\niet\niets\nietsepietsie\nietsiepietsie\nietsje\nietsjes\nietwat\niezegrim\niglo\nignorant\nignorante\nignorantie\nignoreren\nij\nijdel\nijdelheid\nijdellijk\nijdeltuit\nijdeltuiten\nijdeltuiterij\nijk\nijken\nijker\nijkfunctie\nijking\nijkkantoor\nijkmaat\nijkmeester\nijkmerk\nijkprijs\nijkpunt\nijkwezen\nijl\nijlbode\nijlen\nijlgoed\nijlheid\nijlhoofdig\nijlhoofdigheid\nijlings\nijlkoorts\nijltempo\nijs\nijsafzetting\nijsautomaat\nijsbaan\nijsbal\nijsbeen\nijsbeer\nijsbereider\nijsbereiders\nijsberen\nijsberg\nijsbergsla\nijsbloemen\nijsblokje\nijsbreker\nijsclub\nijsco\nijscokar\nijscoman\nijsdansen\nijselijk\nijselijkheid\nijsemmer\nijsfabriek\nijsfabrikant\nijsgang\nijshal\nijsheilige\nijsheiligen\nijshockey\nijshockeyclub\nijshockeyen\nijshockeyer\nijshockeyspeler\nijshockeyteam\nijshockeywedstrijd\nijshut\nijsje\nijskanaal\nijskap\nijskast\nijskegel\nijskelder\nijsklomp\nijsklontje\nijskonijn\nijskoningin\nijskorst\nijskoud\nijskrabber\nijskristal\nijslaag\nijslolly\nijsmachine\nijsman\nijsmassa\nijsmeester\nijsmerk\nijsmuts\nijspaleis\nijspegel\nijspiste\nijsploeg\nijspret\nijspriem\nijsrace\nijsrevue\nijssalon\nijsschol\nijsschots\nijsschuit\nijssculptuur\nijsshow\nijssla\nijssport\nijsstadion\nijsstoel\nijstaart\nijstang\nijsthee\nijstijd\nijsveld\nijsventer\nijsvereniging\nijsverkoper\nijsvermaak\nijsvlakte\nijsvloer\nijsvogel\nijsvorming\nijsvrij\nijswafel\nijswater\nijswinter\nijszak\nijszee\nijszeilen\nijver\nijveraar\nijveraarster\nijveren\nijverig\nijverzucht\nijverzuchtig\nijzel\nijzelen\nijzen\nijzer\nijzeraarde\nijzerachtig\nijzerbeslag\nijzerbijter\nijzerboor\nijzerchloride\nijzerconstructie\nijzerdraad\nijzeren\nijzerenheinig\nijzererts\nijzergaas\nijzergaren\nijzergebrek\nijzergehalte\nijzergieter\nijzergieterij\nijzerglans\nijzerhandel\nijzerhard\nijzerhoudend\nijzerhout\nijzerindustrie\nijzerkern\nijzermaal\nijzermijn\nijzeroer\nijzeroxide\nijzerpreparaat\nijzerroest\nijzersmelterij\nijzerspaat\nijzersteen\nijzersterk\nijzertekort\nijzertijd\nijzervijl\nijzervijlsel\nijzervlechter\nijzervoorraad\nijzervreter\nijzerwaren\nijzerwarenwinkel\nijzerwerk\nijzerwinkel\nijzerzaag\nijzerzout\nijzig\nijzigheid\nijzing\nijzingwekkend\nik\nik-cultuur\nik-figuur\nik-heid\nik-persoon\nik-roman\nik-tijdperk\nik-verteller\nik-vorm\nik-zucht\nik-zuchtig\nikebana\nikke\nikzelf\nillegaal\nillegalenbeleid\nillegalenvraagstuk\nillegaliteit\nillegitiem\nilliquide\nilluminatie\nillumineren\nillusie\nillusieloos\nillusiepolitiek\nillusionair\nillusionisme\nillusionist\nillusionistisch\nillusoir\nilluster\nillustratie\nillustratief\nillustratiemateriaal\nillustrator\nillustratrice\nillustreren\nimage\nimagebuilding\nimaginair\nimaginatie\nimago\nimago-onderzoek\nimagobeschadiging\nimagocampagne\nimagoloog\nimagoprobleem\nimagoschade\nimagoverandering\nimagoverbetering\nimagoverlies\nimagovorming\nimam\nimamopleiding\nimbeciel\nimbeciliteit\nimitatie\nimitatiedrang\nimitatiegedrag\nimitator\nimiteren\nimker\nimkeren\nimkerij\nimmanent\nimmanentie\nimmaterieel\nimmatriculeren\nimmens\nimmensiteit\nimmer\nimmermeer\nimmers\nimmigrant\nimmigrante\nimmigrantengezin\nimmigrantengroep\nimmigrantenpartij\nimmigrantenzoon\nimmigratie\nimmigratieambtenaar\nimmigratiebeleid\nimmigratiedebat\nimmigratiedienst\nimmigratiegolf\nimmigratieland\nimmigratiepolitiek\nimmigratieprobleem\nimmigratieregels\nimmigratiesamenleving\nimmigratiestop\nimmigratiestroom\nimmigratievraagstuk\nimmigratiewet\nimmigratiewetgeving\nimmigreren\nimminent\nimmobiel\nimmobilia\nimmobilisatie\nimmobiliseren\nimmobilisme\nimmobiliteit\nimmobiliën\nimmobiliënkantoor\nimmobiliënmaatschappij\nimmobiliënmarkt\nimmobiliënsector\nimmoralisme\nimmoraliteit\nimmoreel\nimmortaliteit\nimmortelle\nimmortellenkrans\nimmuniseren\nimmunisering\nimmuniteit\nimmuniteitssysteem\nimmunogeen\nimmunologie\nimmunologisch\nimmunoloog\nimmunotherapie\nimmuun\nimmuunapparaat\nimmuunreactie\nimmuunrespons\nimmuunsysteem\nimpact\nimpactstudie\nimpala\nimpasse\nimpeachmentprocedure\nimpedantie\nimpedantiematrix\nimpedanties\nimpediment\nimpenetrabel\nimperatief\nimperator\nimperfect\nimperfectie\nimperfectum\nimperiaal\nimperialisme\nimperialist\nimperialistisch\nimperium\nimpermeabel\nimpertinent\nimpertinentie\nimplantaat\nimplantatie\nimplanteerbaar\nimplanteren\nimplementatie\nimplementatiemacht\nimplementatiepartner\nimplementatieproblematiek\nimplementatietechniek\nimplementator\nimplementeerbaar\nimplementeren\nimplementering\nimplicatie\nimpliceren\nimpliciet\nimploderen\nimplosie\nimponderabilia\nimponeergedrag\nimponeren\nimpopulair\nimpopulariteit\nimport\nimportant\nimportantie\nimportartikel\nimportbelasting\nimportbeperking\nimportbier\nimportcapaciteit\nimporteren\nimporteur\nimportfunctie\nimportheffing\nimportlicentie\nimportmarkt\nimportproduct\nimportregime\nimportrestrictie\nimportstop\nimportstroom\nimportsubstitutie\nimporttarief\nimportuniteit\nimportuun\nimportverbod\nimportvergunning\nimposant\nimpost\nimpotent\nimpotentie\nimpregnatie\nimpregneermiddel\nimpregneren\nimpregnering\nimpregneringen\nimpresariaat\nimpresario\nimpressie\nimpressionant\nimpressionisme\nimpressionist\nimpressionistisch\nimprimatur\nimprint\nimproductief\nimproductiviteit\nimpromptu\nimprovisatie\nimprovisatietalent\nimprovisatietheater\nimprovisatievermogen\nimprovisator\nimprovisatorisch\nimproviseren\nimpuls\nimpulsaankoop\nimpulsen\nimpulsief\nimpulsiviteit\nimpulsmoment\nin\nin abstracto\nin beslag nemen\nin casu\nin concreto\nin de lorum\nin de luren leggen\nin defensiekringen\nin den beginne\nin den lande\nin den vreemde\nin dier voege\nin dubio\nin duplo\nin dusverre\nin een mum van tijd\nin extenso\nin extremis\nin feite\nin gebreke\nin gebruik nemen\nin gebruik stellen\nin godsnaam\nin groten getale\nin hemelsnaam\nin het zweet zijns aanschijns\nin memoriam\nin modekringen\nin natura\nin optima forma\nin petto\nin privéhanden\nin spe\nin stand houden\nin stand houdend\nin stand houdende\nin statu nascendi\nin studentenkringen\nin vivo\nin vredesnaam\nin werking treden\nin zoverre\nin-situsanering\nin-vitrofertilisatie\ninacceptabel\ninaccessibel\ninaccuraat\ninachtneming\ninactief\ninactieve\ninactieven\ninactiveren\ninactiviteit\ninademen\ninademing\ninadequaat\ninauguraal\ninauguratie\ninauguratierede\ninaugureel\ninaugureren\ninbaar\ninbakeren\ninbakken\ninbedden\ninbedding\ninbedrijfstelling\ninbedroefd\ninbeelden\ninbeelding\ninbeeldingsvermogen\ninbegrepen\ninbegrip\ninbellen\ninbelnummer\ninbelproblemen\ninbelpunt\ninbeschuldigingstelling\ninbeslaggenomene\ninbeslagname\ninbeslagneming\ninbeuken\ninbewaringstelling\ninbezithouding\ninbezitneming\ninbezitstelling\ninbezittreding\ninbijten\ninbinden\ninblazen\ninblazing\ninblikken\ninboedel\ninboedelschade\ninboedelverzekeraar\ninboedelverzekering\ninboeken\ninboeten\ninboezemen\ninboezeming\ninboorling\ninboorlinge\ninboren\ninborst\ninbouwapparatuur\ninbouwen\ninbouwinstallatie\ninbouwkast\ninbouwmateriaal\ninbouwpakket\ninbox\ninbraak\ninbraakalarm\ninbraakbeveiliging\ninbraakmelding\ninbraakpoging\ninbraakpreventie\ninbraakrisico\ninbraakschade\ninbraakvrij\ninbraakwerend\ninbranden\ninbranding\ninbreekster\ninbreiding\ninbreien\ninbreken\ninbreker\ninbrekersgilde\ninbrekerspad\ninbreng\ninbrengen\ninbrenger\ninbrengst\ninbreuk\ninbuigen\ninbuiging\ninburgeren\ninburgering\ninburgeringsbeleid\ninburgeringscontract\ninburgeringscursus\ninburgeringsplicht\ninburgeringsproces\ninburgeringsprogramma\ninburgeringstraject\ninbusbout\ninbusselen\ninbussleutel\nincalculeren\nincapabel\nincapabiliteit\nincarnatie\nincarneren\nincasseerbaar\nincasseerder\nincasseren\nincassering\nincasseringsvermogen\nincasso\nincasso-opdracht\nincasso-organisatie\nincassobank\nincassobedrijf\nincassobeleid\nincassobemiddeling\nincassobureau\nincassokosten\nincentive\nincest\nincestdrama\nincestervaring\nincestpleger\nincestslachtoffer\nincesttherapie\nincestueus\nincestverhaal\nincestverleden\nincestzaak\ninch\nincheckbalie\ninchecken\ninchoatief\nincident\nincidenteel\nincidentenpolitiek\nincidentie\nincisie\ninciviek\nincivisme\nincl.\ninclinatie\ninclinatiekompas\ninclineren\nincluderen\nincluis\ninclusie\ninclusief\nincognito\nincoherent\nincoherentie\nincompatibel\nincompatibiliteit\nincompetent\nincompetentie\nincompleet\nincongruent\nincongruentie\ninconsequent\ninconsequentie\ninconsistent\ninconsistentie\ninconstitutioneel\nincontinent\nincontinentie\nincontinentiemateriaal\ninconveniënt\ninconveniënte\ninconveniëntie\ninconveniënties\nincorporatie\nincorporeren\nincorrect\nincourant\nincrementele\nincriminerend\nincrowd\nincrustatie\nincubatie\nincubatieperiode\nincubatietijd\nincubator\ninculturatie\nincunabel\nindachtig\nindagen\nindaging\nindalen\nindammen\nindamming\nindampen\nindecent\nindecentie\nindeclinabel\nindefiniet\nindekken\nindekking\nindelen\nindeler\nindeling\nindelingscriterium\nindelingsfout\nindelingsmogelijkheid\nindelingsprincipe\nindelingsprobleem\nindelingsraad\nindelingssysteem\nindemniteit\nindenken\nindentie\nindependent\ninderdaad\ninderhaast\nindertijd\nindeterminisme\nindeuken\nindex\nindexaanpassing\nindexatie\nindexcijfer\nindexcode\nindexcorrectie\nindexeren\nindexering\nindexfonds\nindexitem\nindexlening\nindexloon\nindexmanipulatie\nindexmarkering\nindexoptie\nindexpagina\nindexsprong\nindexstijging\nindexsysteem\nindextabel\nindiaan\nindiaans\nindiaanse\nindiaantje\nindianen\nindianenbevolking\nindianencultuur\nindianendorp\nindianenkreet\nindianenreservaat\nindianenstam\nindianentaal\nindianenverhaal\nindianenvolk\nindianenwet\nindicateur\nindicatie\nindicatiebeleid\nindicatiebeoordeling\nindicatiecommissie\nindicatief\nindicatiegebied\nindicatielamp\nindicatieorgaan\nindicatiestelling\nindicator\nindiceren\nindicering\nindices\nindicie\nindictie\nindien\nindienen\nindiener\nindiening\nindienstneming\nindiensttreding\nindifferent\nindifferentie\nindifferentisme\nindigestie\nindigo\nindigoblauw\nindijken\nindijking\nindikken\nindikking\nindirect\nindirectheid\nindiscreet\nindiscretie\nindiscutabel\nindisponibel\nindispositie\nindium\nindividu\nindividualisatie\nindividualiseren\nindividualisering\nindividualiseringsproces\nindividualisme\nindividualist\nindividualistisch\nindividualiteit\nindividuatie\nindividueel\nindo\nindoctrinatie\nindoctrineren\nindoen\nindogermanistiek\nindolent\nindolentie\nindologie\nindologisch\nindoloog\nindommelen\nindompelen\nindompeling\nindooratletiek\nindoorbaan\nindoorkampioenschap\nindoorrecord\nindoorseizoen\nindoortoernooi\nindoorwedstrijd\nindopen\nindoping\nindossement\nindosseren\nindraaien\nindragen\nindrijven\nindringen\nindringend\nindringendheid\nindringer\nindringerig\nindringing\nindringster\nindrinken\nindroevig\nindrogen\nindroging\nindruisen\nindruk\nindrukken\nindrukking\nindrukwekkend\nindruppelen\ninduceren\ninductie\ninductief\ninductieklos\ninductiemotor\ninductiespoel\ninductiestroom\ninductor\ninduffelen\ninduiken\nindulgent\nindulgentie\nindult\nindustrialisatie\nindustrialisatieproces\nindustrialiseren\nindustrialisering\nindustrie\nindustrieaandeel\nindustriebeleid\nindustriebond\nindustriebouw\nindustriecentrum\nindustriecomplex\nindustrieconcern\nindustrieconcerns\nindustrieconglomeraat\nindustriediamant\nindustrieel\nindustriefonds\nindustriegebied\nindustriegericht\nindustriegrond\nindustriehaven\nindustrieland\nindustriepark\nindustriepolitiek\nindustrieschap\nindustrieschool\nindustriesector\nindustriestaat\nindustriestad\nindustrietak\nindustrieterrein\nindustrievestiging\nindustriewater\nindustriezand\nindustriezijde\nindustriezone\nindustrieën\nindustriële\nindutten\ninduwen\nineen\nineendraaien\nineengedoken\nineengedrongen\nineengedrukt\nineengrijpen\nineenkrimpen\nineenlopen\nineens\nineenschrompelen\nineenschuiven\nineenslaan\nineenstorten\nineenstorting\nineenstrengelen\nineenvlechten\nineenvloeien\nineenzakken\nineenzetten\nineffectief\nineffectiviteit\ninefficiënt\ninefficiëntie\ninelastisch\ninenten\ninenting\ninentingsbewijs\ninentingsbriefje\ninentingscampagne\ninentingsprogramma\ninert\ninertie\ninexact\ninfaam\ninfant\ninfante\ninfanterie\ninfanterie-eenheid\ninfanteriebataljon\ninfanteriebrigade\ninfanteriedivisie\ninfanteriekazerne\ninfanterieregiment\ninfanterist\ninfanticide\ninfantiel\ninfantiliseren\ninfantilisering\ninfantilisme\ninfantiliteit\ninfarct\ninfecteren\ninfectie\ninfectiebestrijding\ninfectiebron\ninfectiedruk\ninfectiegevaar\ninfectiehaard\ninfectiekans\ninfectiepreventie\ninfectieus\ninfectieziekte\ninfectueus\ninferentie\ninferenties\ninferieur\ninferieure\ninferioriteit\ninferioriteitsgevoel\ninfernaal\ninferno\ninfertiel\ninfertiliteit\ninfibulatie\ninfiltraat\ninfiltrant\ninfiltratie\ninfiltratiepoging\ninfiltratieteam\ninfiltreren\ninfiniet\ninfiniete\ninfinitesimaal\ninfinitesimaalrekening\ninfinitesimalen\ninfinitief\ninfinitiefconstructie\ninfirmerie\ninflatie\ninflatieangst\ninflatiebestrijding\ninflatiecijfer\ninflatiecorrectie\ninflatiedaling\ninflatiedoelstelling\ninflatiedruk\ninflatiegevaar\ninflatiegolf\ninflatieniveau\ninflatiepeil\ninflatiepercentage\ninflatierisico\ninflatiespiraal\ninflatiespook\ninflatiestijging\ninflatietempo\ninflatieverwachting\ninflatievrees\ninflatoir\ninflexibel\ninflexibiliteit\ninfluenceren\ninfluenza\ninfluenza-epidemie\ninfluenza-epidemieën\ninfluenzavirus\ninfluisteren\ninfluistering\ninflux\ninfo\ninfoavond\ninfobalie\ninfobord\ninfobrief\ninfocentrum\ninfographic\ninfolijn\ninfomap\ninfonummer\ninfopakket\ninformalisering\ninformaliteit\ninformant\ninformateur\ninformatica\ninformatica-afdeling\ninformaticabedrijf\ninformaticadochter\ninformaticagroep\ninformaticarecht\ninformaticasector\ninformaticastudent\ninformaticastudie\ninformaticasysteem\ninformatici\ninformaticus\ninformatie\ninformatie-eenheid\ninformatie-infrastructuur\ninformatie-uitwisseling\ninformatieaanbod\ninformatieachterstand\ninformatieavond\ninformatiebalie\ninformatiebank\ninformatiebeheer\ninformatiebehoefte\ninformatiebeleid\ninformatieberoep\ninformatieberoepen\ninformatiebeveiliging\ninformatiebijeenkomst\ninformatieblad\ninformatiebord\ninformatiebrochure\ninformatiebron\ninformatiebulletin\ninformatiebureau\ninformatiecampagne\ninformatiecentrum\ninformatieconcern\ninformatiedag\ninformatiedichtheid\ninformatiedienst\ninformatiedrager\ninformatief\ninformatiefolder\ninformatiefunctie\ninformatiegaring\ninformatiegebied\ninformatiegebieden\ninformatiegericht\ninformatiegids\ninformatiegolf\ninformatiehandboek\ninformatiehonger\ninformatiekanaal\ninformatiekantoor\ninformatiekloof\ninformatiekrant\ninformatiekunde\ninformatieleverancier\ninformatielijn\ninformatiemaatschappij\ninformatiemakelaar\ninformatiemanagement\ninformatiemap\ninformatiemarkt\ninformatiemateriaal\ninformatiemedium\ninformatiemiddag\ninformatiemiddelen\ninformatienetwerk\ninformatienummer\ninformatieoverdracht\ninformatiepakket\ninformatiepaneel\ninformatieplan\ninformatieplicht\ninformatiepositie\ninformatieposter\ninformatieproces\ninformatieproduct\ninformatiepunt\ninformatierecht\ninformatierevolutie\ninformatieronde\ninformatiesamenleving\ninformatiesector\ninformatiesessie\ninformatiesessies\ninformatiesnelweg\ninformatiestand\ninformatiestroom\ninformatiesysteem\ninformatietechniek\ninformatietechnologie\ninformatietechnologisch\ninformatietelefoon\ninformatietheorie\ninformatietijdperk\ninformatietoon\ninformatietraject\ninformatietransport\ninformatievaardigheid\ninformatievergadering\ninformatievergaring\ninformatieverschaffer\ninformatieverschaffing\ninformatieverspreiding\ninformatieverstrekking\ninformatievervuiling\ninformatieverwerking\ninformatieverwerkingscentrum\ninformatieverzameling\ninformatieverzorging\ninformatievoorsprong\ninformatievoorziening\ninformatievrijheid\ninformatiewaarde\ninformatiezender\ninformatiezuil\ninformatiseren\ninformatisering\ninformativiteit\ninformatrice\ninformeel\ninformeren\ninfostand\ninfotainment\ninfraheffing\ninfrarood\ninfraroodbron\ninfraroodcamera\ninfraroodstraling\ninfrasoon\ninfrastructureel\ninfrastructuur\ninfrastructuurbeleid\ninfrastructuurfonds\ninfrastructuurkosten\ninfrastructuurplan\ninfrastructuurproject\ninfusie\ninfusiediertje\ninfuus\ninfuusvloeistof\ning.\ningaan\ningaand\ningaande\ningang\ningangsdatum\ningangsdeur\ningangsexamen\ningangsleeftijd\ningangspartij\ningangspoort\ningangsvariabele\ningebakken\ningebed\ningebeeld\ningebeelden\ningeblikt\ningebonden\ningeboren\ningebouwd\ningebrand\ningebrekestelling\ningebruikname\ningebruikneming\ningebruikstelling\ningeburgerd\ningeburgerden\ningedikt\ningegraveerd\ningehouden\ningekankerd\ningekeerd\ningekleurd\ningekort\ningeland\ningelast\ningelegd\ningelijfden\ningelijst\ningelukkig\ningemaakt\ningenaaid\ningenieur\ningenieur-architect\ningenieursbureau\ningenieursdiploma\ningenieursexamen\ningenieursopleiding\ningenieursstudie\ningenieus\ningenomen\ningenomen met\ningenomen tegen\ningenomenheid\ningeplant\ningeregeld\ningeroest\ningeschapen\ningeschat\ningeschoten\ningeschreven\ningeschrevene\ningesloten\ningesneden\ningesnoerd\ningespannen\ningespeeld\ningesprekstoon\ningesprektoon\ningesteld\ningesteldheid\ningestort\ningestudeerd\ningesukkeld\ningetogen\ningetogenheid\ningetrokken\ningeval\ningevallen\ningeven\ningevetten\ningeving\ningevoegd\ningevoerd\ningevolge\ningevroren\ningewand\ningewanden\ningewandskwaal\ningewandsstoornis\ningewandsziekte\ningewijd\ningewijde\ningewikkeld\ningewikkelders\ningewikkeldheid\ningeworteld\ningezet\ningezetene\ningezetenenomslag\ningezetenschap\ningezetten\ningezonden\ningezondenbrievenschrijver\ningezonken\ningezoomd\ningieten\ninglijden\ningoed\ningooi\ningooien\ningraven\ningraveren\ningrediënt\ningrediëntenlijst\ningreep\ningriffen\ningrijpen\ningrijpend\ningroeien\ningroeven\ninhaalactie\ninhaalbeweging\ninhaalcursus\ninhaaldag\ninhaaleffect\ninhaalmanoeuvre\ninhaalmatch\ninhaaloperatie\ninhaalpoging\ninhaalpremie\ninhaalprogramma\ninhaalrace\ninhaalsituatie\ninhaalslag\ninhaalstrook\ninhaalverbod\ninhaalvraag\ninhaalwedstrijd\ninhaken\ninhakken\ninhalatie\ninhalatieapparaat\ninhalatietoestel\ninhalator\ninhalen\ninhaleren\ninhalers\ninhalig\ninhaligheid\ninhaling\ninham\ninhameren\ninhangen\ninhebben\ninhechtenisneming\ninheems\ninheemse\ninheemsen\ninheien\ninherent\ninhibitie\ninhomogeen\ninhoud\ninhoudelijk\ninhoudelijkheid\ninhouden\ninhouding\ninhoudsanalyse\ninhoudsbepaling\ninhoudsloos\ninhoudsmaat\ninhoudsniveau\ninhoudsopgaaf\ninhoudsopgave\ninhoudssamenvatting\ninhoudstafel\ninhoudsweergave\ninhout\ninhouwen\ninhuldigen\ninhuldiging\ninhuldigingsfeest\ninhumaan\ninhuren\ninitiaal\ninitiaalwoord\ninitialisatie\ninitialisatieprogramma\ninitialisatiestring\ninitialisatiestrings\ninitialiseren\ninitiatie\ninitiatiecursus\ninitiatief\ninitiatiefgroep\ninitiatiefgroepen\ninitiatiefneemster\ninitiatiefnemer\ninitiatiefontwerp\ninitiatiefrecht\ninitiatiefrijk\ninitiatiefvoorstel\ninitiatiefwet\ninitiatiefwetsontwerp\ninitiatiefwetsvoorstel\ninitiatierite\ninitiatieriten\ninitiator\ninitieel\ninitiëren\ninitiëring\ninjagen\ninjecteren\ninjectie\ninjectiegeweer\ninjectiehars\ninjectiemotor\ninjectienaald\ninjectiespuit\ninjector\ninkaderen\ninkadering\ninkakken\ninkalven\ninkankeren\ninkapselen\ninkapseling\ninkarnaat\ninkeep\ninkeer\ninkepen\ninkeping\ninkeren\ninkerven\ninkerving\ninkijk\ninkijken\ninkijkoperatie\ninkjet\ninkjetpapier\ninkjetprinter\ninkjets\ninklapbaar\ninklappen\ninklaren\ninklaring\ninkleden\ninkleding\ninklemmen\ninkleuren\ninkleuring\ninklimmen\ninklimming\ninklinken\ninklinking\ninkloppen\ninknippen\ninkoken\ninkom\ninkomen\ninkomensachteruitgang\ninkomensafhankelijk\ninkomensaftrek\ninkomensbelasting\ninkomensbeleid\ninkomensbescherming\ninkomensbron\ninkomenscategorie\ninkomenscompensatie\ninkomensdaling\ninkomensdeel\ninkomensderving\ninkomenseffect\ninkomenseis\ninkomensgarantie\ninkomensgebouw\ninkomensgrens\ninkomensgroei\ninkomensgroep\ninkomensherverdeling\ninkomensklasse\ninkomenskloof\ninkomensmatiging\ninkomensniveau\ninkomensnivellering\ninkomensnota\ninkomensondersteuning\ninkomensongelijkheid\ninkomensontwikkeling\ninkomensoverdracht\ninkomensplaatje\ninkomenspolitiek\ninkomenspositie\ninkomensregeling\ninkomensreparatie\ninkomensschade\ninkomensschijf\ninkomenssfeer\ninkomenssituatie\ninkomenssolidariteit\ninkomenssteun\ninkomensstijging\ninkomensstroom\ninkomenstekort\ninkomenstoets\ninkomenstoetsen\ninkomenstrekker\ninkomensverbetering\ninkomensverdeling\ninkomensverklaring\ninkomensverlies\ninkomensverschil\ninkomensvoorziening\ninkomenszekerheid\ninkomgeld\ninkomhal\ninkomst\ninkomsten\ninkomstenbelasting\ninkomstenbelastingtarief\ninkomstenbriefje\ninkomstenbron\ninkomstendaling\ninkomstenderving\ninkomstenjaar\ninkomstenkant\ninkomstenmeevaller\ninkomstenpost\ninkomstenstijging\ninkomstenstroom\ninkomstenvergoeding\ninkomstenverlies\ninkomstenverrekening\ninkoop\ninkoopafdeling\ninkoopagent\ninkoopbeleid\ninkoopbestand\ninkoopboek\ninkoopbureau\ninkoopcentrale\ninkoopcombinatie\ninkoopcommissionair\ninkoopcoöperatie\ninkoopdatum\ninkoopfactuur\ninkoopfunctionaris\ninkoopgebieden\ninkoopgedrag\ninkoopgericht\ninkoopkantoor\ninkoopkartel\ninkoopkosten\ninkoopkracht\ninkoopmacht\ninkoopmanager\ninkoopmanagersindex\ninkoopmarkt\ninkooporganisatie\ninkooppolitiek\ninkoopprijs\ninkoopprogramma\ninkooprekening\ninkoopsom\ninkoopspel\ninkoopsprijs\ninkooptechnisch\ninkoopvereniging\ninkoopwaarde\ninkopen\ninkoper\ninkoppen\ninkorten\ninkorting\ninkorven\ninkorving\ninkoud\ninkrassen\ninkrijgen\ninkrimpen\ninkrimping\ninkruipen\ninkruipsel\ninkt\ninktachtig\ninkten\ninktfles\ninktgom\ninktkoelie\ninktkoker\ninktlap\ninktlint\ninktmop\ninktpatroon\ninktpot\ninktpotlood\ninktreservoir\ninktrol\ninktstel\ninktvis\ninktvisring\ninktvlek\ninktvraat\ninktzwam\ninktzwart\ninktzwarte\ninkuilen\ninkuipen\ninkwartieren\ninkwartiering\ninkwartieringsbiljet\ninlaag\ninlaagdijk\ninlaagpolder\ninlaat\ninlaatduiker\ninlaatkast\ninlaatklep\ninlaatrooster\ninlaatsluis\ninladen\ninlage\ninlander\ninlands\ninlandse\ninlappen\ninlas\ninlassen\ninlassing\ninlaten\ninlaut\ninleenkracht\ninleg\ninlegblad\ninlegboekje\ninlegeren\ninlegering\ninleggeld\ninleggen\ninlegger\ninlegkruisje\ninlegkunde\ninlegluier\ninlegvel\ninlegwerk\ninlegzool\ninleiden\ninleidend\ninleider\ninleiding\ninleidster\ninlelijk\ninlenen\ninlener\ninlepelen\ninleven\ninleveractie\ninleverdatum\ninleveren\ninlevering\ninleving\ninlevingsvermogen\ninlezen\ninlichten\ninlichting\ninlichtingenbureau\ninlichtingenchef\ninlichtingendienst\ninlichtingenkantoor\ninlichtingennummer\ninlichtingenofficier\ninlichtingenwerk\ninliggend\ninlijsten\ninlijven\ninlijving\ninline\ninlineskaten\ninlineskates\ninloggegevens\ninloggen\ninlognaam\ninlokken\ninloodsen\ninloop\ninloopavond\ninloopcentrum\ninloophuis\ninloopperiode\ninloopspreekuur\ninlooptijd\ninloopzaak\ninlopen\ninlossen\ninlossing\ninloten\ninluiden\ninluizen\ninmaak\ninmaakazijn\ninmaakbrandewijn\ninmaakfles\ninmaakglas\ninmaakpot\ninmaaktijd\ninmaken\ninmengen\ninmenging\ninmeten\ninmetselen\ninmetsen\ninmiddels\ninmijnen\ninmijning\ninnaaien\ninname\ninnamebeleid\ninnemen\ninnemend\ninnemendheid\ninneming\ninnen\ninnerlijk\ninnerlijkheid\ninnestelen\ninnesteling\ninnig\ninnigheid\ninning\ninningskosten\ninnocent\ninnovatie\ninnovatiebeleid\ninnovatiecentrum\ninnovatief\ninnovatiekracht\ninnovatienota\ninnovatieprijs\ninnovatieproces\ninnovatieprogramma\ninnovatieproject\ninnovatievermogen\ninnovativiteit\ninnovator\ninnovators\ninnoveren\ninnoverend\ninoefenen\ninofficieel\ninontvangstneming\ninoperabel\ninopportuun\ninpakken\ninpakker\ninpakpapier\ninpakster\ninpalmen\ninpandgeving\ninpandig\ninparkeren\ninpasbaar\ninpasbaarheid\ninpassen\ninpassing\ninpassingstabel\ninpekelen\ninpekken\ninpeperen\ninperken\ninperking\ninpersen\ninpikken\ninplakken\ninplannen\ninplant\ninplanten\ninplanting\ninploegen\ninplooien\ninpluggen\ninpolderen\ninpoldering\ninpompen\ninponsen\ninpraten\ninprenten\ninprenting\ninprikken\ninproppen\ninput\ninputfile\ninquisiteur\ninquisitie\ninquisitoir\ninquisitoriaal\ninramen\ninregelen\ninregenen\ninreisbeperking\ninreisverbod\ninreisvisum\ninrekenen\ninrekening\ninren\ninrennen\ninrichten\ninrichter\ninrichting\ninrichtingseis\ninrichtingselement\ninrichtingskosten\ninrichtingsplan\ninrichtingsproject\ninrichtingswerk\ninrichtingswerker\ninrichtingswerkster\ninrijden\ninrijgen\ninrijperiode\ninrijpoort\ninrijverbod\ninrit\ninroeien\ninroepen\ninroeping\ninroesten\ninrollen\ninroosteren\ninroostering\ninruil\ninruilauto\ninruilen\ninruiling\ninruilpremie\ninruilprijs\ninruilwaarde\ninruilwagen\ninruimen\ninruiming\ninrukken\nins en outs\ninscannen\ninschakelen\ninschakeling\ninschalen\ninschaling\ninschalingsnummer\ninschatten\ninschatting\ninschattingsfout\ninschattingsvermogen\ninschenken\ninschepen\ninscheping\ninscheppen\ninscherpen\ninscherping\ninscheuren\ninscheuring\ninschieten\ninschikkelijk\ninschikkelijkheid\ninschikken\ninschilderen\ninschoppen\ninschrift\ninschrijfbedrag\ninschrijfdatum\ninschrijfduur\ninschrijfformulier\ninschrijfgeld\ninschrijfkaart\ninschrijfkosten\ninschrijftermijn\ninschrijven\ninschrijver\ninschrijving\ninschrijvingsbewijs\ninschrijvingsbiljet\ninschrijvingsduur\ninschrijvingsformulier\ninschrijvingsgeld\ninschrijvingskosten\ninschrijvingslijst\ninschrijvingsnummer\ninschrijvingsperiode\ninschrijvingsprijs\ninschrijvingsprocedure\ninschrijvingsrecht\ninschrijvingsreglement\ninschrijvingstermijn\ninschrijvingsverplichting\ninschroeven\ninschuifbaar\ninschuifladder\ninschuiftafel\ninschuiven\ninschuld\ninscriptie\ninsect\ninsectenbeet\ninsectenboek\ninsectendoder\ninsectenetend\ninsecteneter\ninsecteneters\ninsectenkenner\ninsectenkunde\ninsectenlarf\ninsectenlarve\ninsectenpoeder\ninsectenspeld\ninsectenspray\ninsectenwereld\ninsecticide\ninseinen\ninseminatie\ninsemineren\ninsertie\ninserviceonderwijs\ninserviceopleiding\ninserviceopleidingen\ninsgelijks\ninside-informatie\ninside-information\ninsider\ninsigne\ninsijpelen\ninsinuatie\ninsinueren\ninsisteren\ninsjallah\ninslaan\ninslag\ninslagbekken\ninslagbekkens\ninslaggebied\ninslagkrater\ninslapen\ninslecht\ninslenteren\ninslijpen\ninslijten\ninslikken\ninslokken\ninslorpen\ninsluimeren\ninsluipen\ninsluiper\ninsluiping\ninsluipsel\ninsluiten\ninsluiting\ninsluitsel\ninsluitsysteem\ninsluizen\ninsmelten\ninsmeren\ninsmijten\ninsneeuwen\ninsnijden\ninsnijding\ninsnoeren\ninsnoering\ninsnuiven\ninsolent\ninsolentie\ninsolide\ninsolied\ninsolvabel\ninsolvabiliteit\ninsolvent\ninsolventie\ninsolventverklaring\ninsoppen\ninspannen\ninspannend\ninspanning\ninspanningsastma\ninspanningsfysioloog\ninspanningsverplichting\ninspecteren\ninspecteur\ninspecteur-generaal\ninspectie\ninspectiebezoek\ninspectiecommissie\ninspectiedienst\ninspectiekosten\ninspectierapport\ninspectiereis\ninspectieronde\ninspectiesysteem\ninspectieteam\ninspectievlucht\ninspectrice\ninspelden\ninspelen\ninspiciënt\ninspinnen\ninspiratie\ninspiratiebron\ninspiratieloos\ninspirator\ninspireren\ninspit\ninspitten\ninspraak\ninspraakavond\ninspraakbijeenkomst\ninspraakorgaan\ninspraakprocedure\ninspraakreactie\ninspraakrecht\ninspraakronde\ninspraaktermijn\ninspreken\ninspreker\ninspringen\ninspringing\ninsprong\ninspuiten\ninspuiting\ninspuitsysteem\ninstaan\ninstabiel\ninstabiliteit\ninstallateur\ninstallatie\ninstallatieafhankelijk\ninstallatiebedrijf\ninstallatiebestand\ninstallatiebranche\ninstallatiebureau\ninstallatiekosten\ninstallatiemateriaal\ninstallatiemenu\ninstallatiepoging\ninstallatieprocedure\ninstallatieproces\ninstallatieprogramma\ninstallatiesoftware\ninstallatietechniek\ninstallatietechnisch\ninstallatietekening\ninstallatiewerk\ninstalleren\ninstallering\ninstampen\ninstandhouding\ninstandhoudingsverklaring\ninstant\ninstantané\ninstantie\ninstantkoffie\ninstantloterij\ninstantsoep\ninstapdrempel\ninstapkaart\ninstapkosten\ninstapmodel\ninstapmoment\ninstapniveau\ninstappen\ninstapper\ninstapprijs\ninstaptoets\ninstapversie\ninsteek\ninsteekblad\ninsteekhaven\ninsteekkamer\ninsteekslot\ninsteeksloten\ninsteken\ninstelbaar\ninstellen\ninsteller\ninstelling\ninstellingsbelang\ninstellingsbereik\ninstellingsniveau\ninstellingsnummer\ninstellingsverband\ninstelmogelijkheid\ninstelschaal\ninstelwaarde\ninstemmen\ninstemmend\ninstemming\ninstemmingsrecht\ninstigatie\ninstigator\ninstigeren\ninstijgen\ninstinct\ninstinctief\ninstinctmatig\ninstinken\ninstinker\ninstitueren\ninstitutie\ninstitutionaliseren\ninstitutionalisering\ninstitutionalisme\ninstitutioneel\ninstituut\ninstituutsarts\ninstituutsbibliotheek\ninstomen\ninstoppen\ninstore\ninstormen\ninstorten\ninstorting\ninstortingsgevaar\ninstoten\ninstouwen\ninstralen\ninstraling\ninstrijken\ninstromen\ninstroming\ninstrooien\ninstroom\ninstroombeperking\ninstroomcijfers\ninstroomprocedure\ninstructeur\ninstructie\ninstructieavond\ninstructiebad\ninstructiebataljon\ninstructieboek\ninstructiecode\ninstructiedag\ninstructiedagen\ninstructief\ninstructiefilm\ninstructielijst\ninstructielijsten\ninstructiemiddag\ninstructieochtend\ninstructieset\ninstructietafel\ninstructievlucht\ninstructrice\ninstrueren\ninstrument\ninstrumentaal\ninstrumentair\ninstrumentalis\ninstrumentalisme\ninstrumentalist\ninstrumentarium\ninstrumentatie\ninstrumenteel\ninstrumentenbord\ninstrumentenbouwer\ninstrumentenmaker\ninstrumentenpaneel\ninstrumenteren\ninstrumentmaker\ninstuderen\ninstuif\ninstuiven\ninstulping\ninsturen\ninstuwen\ninsubordinatie\ninsuffen\ninsufficiënt\ninsufficiëntie\ninsulair\ninsuline\ninsulineaanmaak\ninsulinepomp\ninsulineproductie\ninsult\ninsurgent\ninsurrectie\ninswinger\nintact\nintake\nintakefase\nintakefunctionaris\nintakegesprek\nintakeproces\nintakestaf\nintakevergadering\nintakeweek\nintapen\ninteelt\nintegendeel\ninteger\nintegraal\nintegraalhelm\nintegraaloperator\nintegraalrekening\nintegraalteken\nintegraalvorm\nintegratie\nintegratiebeleid\nintegratieblok\nintegratieblokken\nintegratieconstante\nintegratiedebat\nintegratiefase\nintegratiegedachte\nintegratiekosten\nintegratiemethode\nintegratiemodel\nintegratieniveau\nintegratieplan\nintegratieplannen\nintegratiepolitiek\nintegratieproces\nintegratieproject\nintegrator\nintegreerbaar\nintegreren\nintegrerend\nintegrisme\nintegrist\nintegriteit\nintegriteitsbeleid\nintegriteitsbescherming\nintegriteitseisen\nintegriteitsonderzoek\nintekenaar\nintekenbiljet\nintekenen\nintekening\nintekenlijst\nintekenperiode\nintekenprijs\nintellect\nintellectualisme\nintellectualist\nintellectualistisch\nintellectueel\nintelligent\nintelligentie\nintelligentieniveau\nintelligentiequotiënt\nintelligentietest\nintelligentietoets\nintelligentsia\nintendance\nintendant\nintenderen\nintens\nintensief\nintensifiëren\nintensiteit\nintensiteitsverdeling\nintensiteitsverloop\nintensiteitsverschil\nintensive care\nintensivecareafdeling\nintensiveren\nintensivering\nintensiviteit\nintentie\nintentieovereenkomst\nintentieverklaring\nintentionaliteit\nintentioneel\ninter-Amerikaans\ninter-Europees\ninter-Palestijns\ninteracademiaal\ninteractie\ninteractief\ninteractiepatroon\ninteractieproces\ninteractiesysteem\ninteractioneel\ninteractionele\ninteractiviteit\ninteragerend\ninteragerende\ninterbancair\ninterbellum\ninterbestuurlijk\ninterbibliothecair\nintercalatie\nintercedent\nintercedente\nintercellulair\nintercepteren\ninterceptie\ninterceptor\nintercity\nintercitylijn\nintercitynet\nintercitystation\nintercitytrein\nintercollegiaal\nintercom\nintercommunaal\nintercommunale\nintercommunie\nintercomsysteem\ninterconfessioneel\ninterconnectie\nintercontinentaal\nintercooler\nintercultureel\ninterdepartementaal\ninterdependentie\ninterdict\ninterdictie\ninterdiocesaan\ninterdisciplinair\ninterdisciplinariteit\ninteren\ninteressant\ninteressante\ninteresse\ninteressegebied\ninteressegroep\ninteressegroepen\ninteresseren\ninteresses\ninteressesfeer\ninteresseveld\ninteresseverlies\ninterest\ninterestaftrek\ninterestbaten\ninterestlasten\ninterestopbrengst\ninterestrekening\ninterestresultaat\ninterestvoet\ninteretnisch\ninterface\ninterfacultair\ninterfaculteit\ninterferentie\ninterferentiefilter\ninterferentiepatroon\ninterfereren\ninterferometer\ninterferon\ninterfiliaalverkeer\nintergalactisch\nintergemeentelijk\ninterglaciaal\nintergouvernementeel\ninterieur\ninterieurarchitect\ninterieurarchitectuur\ninterieurbekleding\ninterieurdecoratie\ninterieurdesign\ninterieurproduct\ninterieurruimte\ninterieurtextiel\ninterieurverzorger\ninterieurverzorgster\ninterieurzaak\ninterim\ninterim-aandeel\ninterim-advies\ninterim-akkoord\ninterim-bestuur\ninterim-bondscoach\ninterim-burgemeester\ninterim-coach\ninterim-directeur\ninterim-directie\ninterim-dividend\ninterim-grondwet\ninterim-kabinet\ninterim-management\ninterim-manager\ninterim-oplossing\ninterim-parlement\ninterim-periode\ninterim-premier\ninterim-president\ninterim-rapport\ninterim-regeling\ninterim-regering\ninterim-trainer\ninterim-uitkering\ninterim-voorzitter\ninterim-wet\ninterimair\ninterimarbeid\ninterimaris\ninterimjob\ninterimkantoor\ninterimsector\ninterimwerk\ninterjectie\ninterkerkelijk\ninterland\ninterlandcarrière\ninterlandelijk\ninterlandloopbaan\ninterlandvoetbal\ninterlandwedstrijd\ninterlineair\ninterliner\ninterlinie\ninterliniëren\ninterlock\ninterlocuteur\ninterlocutoir\ninterlokaal\ninterludium\nintermediair\nintermedium\nintermenselijk\nintermezzo\ninterministerieel\nintermissie\nintermitterend\nintermodaal\nintern\ninternaat\ninternaliseren\ninternalisering\ninternationaal\ninternationaal-politiek\ninternationaalrechtelijk\ninternational\ninternationalisatie\ninternationaliseren\ninternationalisering\ninternationalisme\ninternationalist\ninternationalistisch\ninternaut\ninterne\ninterneren\ninternering\ninterneringskamp\ninternet\ninternet-tv\ninternetaanbieder\ninternetaandeel\ninternetaansluiting\ninternetabonnement\ninternetadres\ninternetambitie\ninternetavontuur\ninternetbank\ninternetbankieren\ninternetbedrijf\ninternetbetaling\ninternetbeveiliger\ninternetbeveiliging\ninternetboekhandel\ninternetbranche\ninternetbroker\ninternetbrowser\ninternetbureau\ninternetcafé\ninternetcommunicatie\ninternetcomputer\ninternetdienst\ninternetdivisie\ninternetdochter\ninterneteconomie\ninternetfonds\ninternetgebied\ninternetgebruik\ninternetgebruiker\ninternetgemeenschap\ninternetgeneratie\ninternetgoeroe\ninternetgroep\ninternethandel\ninternethype\ninternetindustrie\ninternetinfrastructuur\ninternetjournalist\ninternetjournalistiek\ninternetkrant\ninternetkunst\ninternetlijn\ninternetlijnen\ninternetlocatie\ninternetmagazine\ninternetmarkt\ninternetmuziek\ninternetnieuws\ninternetondernemer\ninternetonderneming\ninternetpagina\ninternetpionier\ninternetplatform\ninternetpoot\ninternetportaal\ninternetproject\ninternetprotocol\ninternetprovider\ninternetradio\ninternetreclame\ninternetredactie\ninternetrevolutie\ninternetsector\ninternetsite\ninternetsoftware\ninternetspel\ninternetstrategie\ninternetsurfers\ninternettaal\ninternettechnologie\ninternettelefonie\ninternettelefoon\ninternetten\ninternetter\ninternettijdperk\ninternettoegang\ninternettransacties\ninternetveiling\ninternetverbinding\ninternetverkeer\ninternetverkoop\ninternetversie\ninternetverslaving\ninternetwereld\ninternetwinkel\ninternetzeepbel\ninternetzoekmachine\ninternist\ninternuntiatuur\ninternuntius\ninteroceanisch\ninteroperabel\ninteroperabiliteit\ninterorganisationeel\ninterorganisationele\ninterparlementair\ninterpellant\ninterpellante\ninterpellatie\ninterpellatiedebat\ninterpelleren\ninterpersoonlijk\ninterplanetair\ninterpolatie\ninterpolatieschema\ninterpoleren\ninterpreet\ninterpretabel\ninterpretatie\ninterpretatief\ninterpretatiefout\ninterpretatiekader\ninterpretatiemogelijkheden\ninterpretatieprobleem\ninterpretatieverschil\ninterpretatievoorschrift\ninterpretator\ninterpreteerbaar\ninterpreteren\ninterpretering\ninterprofessioneel\ninterprovinciaal\ninterpunctie\ninterpunctiefouten\ninterpunctieteken\ninterpungeren\ninterraciaal\ninterregio\ninterregionaal\ninterregiotrein\ninterregnum\ninterreligieus\ninterrumperen\ninterrupt\ninterruptie\ninterruptiedebat\ninterruptiemicrofoon\ninterruptroutine\ninterrupts\ninterruptsignaal\ninterscolair\nintersectie\nintersectoraal\ninterstatelijk\ninterstellair\nintersubjectief\nintersubjectiviteit\nintertekstualiteit\nintertekstueel\ninteruniversitair\ninterval\nintervalbreedte\nintervallengte\nintervalniveau\nintervalschaal\nintervaltraining\ninterveniëren\ninterventie\ninterventiebeleid\ninterventiemacht\ninterventiepolitiek\ninterventieprijs\ninterventiepunt\ninterventieschema\ninterventieteam\ninterventionisme\ninterventionist\ninterventionistisch\ninterview\ninterviewboek\ninterviewen\ninterviewer\ninterviewfragment\ninterviewprogramma\ninterviewreeks\ninterviewserie\ninterviewster\ninterviewtechniek\nintervisie\ninterzonaal\nintestaat\nintestinaal\nintiem\nintifada\nintijds\nintikken\nintikker\nintikkertje\nintimi\nintimidatie\nintimidatiepoging\nintimidatiepraktijken\nintimideren\nintimistisch\nintimiteit\nintimiteitsangst\nintimus\nintocht\nintoetsen\nintolerabel\nintolerant\nintolerantie\nintomen\nintoming\nintonatie\nintonatieprobleem\nintoneren\nintoxicatie\nintra-Europees\nintra-uterien\nintracellulair\nintracommunautair\nintramuraal\nintramusculair\nintranet\nintransigent\nintransitief\nintrappen\nintraveneus\nintrede\nintreden\nintreding\nintree\nintreerede\nintrek\nintrekken\nintrekking\nintrest\nintrestaftrek\nintrestrekening\nintrestvoet\nintriest\nintrigant\nintrigante\nintrige\nintrigeren\nintrinsiek\nintro\nintroducee\nintroduceren\nintroductie\nintroductiebrief\nintroductiecampagne\nintroductiecursus\nintroductiedag\nintroductiedatum\nintroductiekaart\nintroductiekoers\nintroductieperiode\nintroductieprijs\nintroductieprogramma\nintroductieregeling\nintroductietekst\nintroductietijd\nintroductieverhaal\nintroductieverhalen\nintroductieweek\nintroducé\nintroeven\nintron\nintronisatie\nintrospectie\nintrospectief\nintrouwen\nintroversie\nintrovert\nintroïtus\nintrusie\nintuinen\nintussen\nintuïtie\nintuïtief\nintuïtionisme\nintypen\ninundatie\ninunderen\ninvaart\ninval\ninvalbaan\ninvalbeleid\ninvalbeurt\ninvaldienst\ninvalide\ninvalidenhuis\ninvalidenparkeerkaart\ninvalidenparkeerplaats\ninvalidentoilet\ninvalidenwagen\ninvalidenwagentje\ninvalidenwoning\ninvalideren\ninvalidering\ninvaliditeit\ninvaliditeitspensioen\ninvaliditeitspremie\ninvaliditeitsrente\ninvaliditeitsuitkering\ninvaliditeitsverzekering\ninvaliditeitswet\ninvalkracht\ninvalleiding\ninvalleidster\ninvallen\ninvaller\ninvaller-doelman\ninvallersrol\ninvalpool\ninvalrooster\ninvalshoek\ninvalster\ninvalsweg\ninvalwerk\ninvangen\ninvaren\ninvariabel\ninvariant\ninvariantie\ninvasie\ninvasieleger\ninvasiemacht\ninvasievloot\ninvechten\ninvectief\ninventaris\ninventarisatie\ninventarisatielijst\ninventarisboek\ninventarisboeken\ninventariseren\ninventarisering\ninventarislijst\ninventariswaarde\ninventie\ninventief\ninventiviteit\ninverdieneffect\ninverdienen\ninvers\ninversie\ninversielaag\ninvert\ninverteerbaar\ninverteren\ninverzekeringstelling\ninvesteerder\ninvesteerdersgroep\ninvesteren\ninvestering\ninvesteringsaanvragen\ninvesteringsaftrek\ninvesteringsalternatief\ninvesteringsbank\ninvesteringsbedrag\ninvesteringsbedrijf\ninvesteringsbelangen\ninvesteringsbeleid\ninvesteringsbereidheid\ninvesteringsberekening\ninvesteringsbeslissing\ninvesteringsbijdrage\ninvesteringsbudget\ninvesteringscapaciteit\ninvesteringscriterium\ninvesteringsfirma\ninvesteringsfonds\ninvesteringsgedrag\ninvesteringsgeld\ninvesteringsgroei\ninvesteringsgroep\ninvesteringsimpuls\ninvesteringskapitaal\ninvesteringsklimaat\ninvesteringskosten\ninvesteringsland\ninvesteringsloon\ninvesteringsmaatschappij\ninvesteringsmanager\ninvesteringsniveau\ninvesteringspeil\ninvesteringsplan\ninvesteringsplannen\ninvesteringsplanning\ninvesteringspolitiek\ninvesteringsportefeuille\ninvesteringspremie\ninvesteringspremieregeling\ninvesteringsprogramma\ninvesteringsproject\ninvesteringsquote\ninvesteringsregeling\ninvesteringsritme\ninvesteringssom\ninvesteringssteun\ninvesteringsstop\ninvesteringsstrategie\ninvesteringsstroom\ninvesteringssubsidie\ninvesteringsvehikel\ninvesteringsvolume\ninvesteringsvorm\ninvesteringsvormen\ninvestituur\ninvetten\ninvitatie\ninvitatietoernooi\ninvite\ninvitee\ninviteren\ninvité\ninvlechten\ninvliegen\ninvlieger\ninvloed\ninvloedrijk\ninvloedssfeer\ninvloeien\ninvluchten\ninvocatie\ninvochten\ninvoegbedrijf\ninvoegen\ninvoeging\ninvoegsel\ninvoegstrook\ninvoelbaar\ninvoelen\ninvoelingsvermogen\ninvoer\ninvoerapparaat\ninvoerapparaten\ninvoerbelasting\ninvoerbeperking\ninvoerbestand\ninvoerdatum\ninvoerder\ninvoeren\ninvoerhandel\ninvoerhaven\ninvoerheffing\ninvoering\ninvoeringscommissie\ninvoeringsdatum\ninvoeringskosten\ninvoeringstermijn\ninvoermiddel\ninvoermodule\ninvoerquota\ninvoerrecht\ninvoerregeling\ninvoerscherm\ninvoerschermen\ninvoerstroom\ninvoertarief\ninvoervak\ninvoerveld\ninvoerverbod\ninvoervergunning\ninvolgen\ninvolveren\ninvorderaar\ninvorderbaar\ninvorderbaarheid\ninvorderen\ninvordering\ninvorderingskosten\ninvouwen\ninvraagstelling\ninvreten\ninvriezen\ninvrijheidstelling\ninvulflitsen\ninvulformulier\ninvulinstructie\ninvullen\ninvuller\ninvulling\ninvuloefening\ninvulscherm\ninvulschermen\ninvulveld\ninwaaien\ninwaarts\ninwachten\ninwandelen\ninwassen\ninwateren\ninwatering\ninwegen\ninweken\ninwendig\ninwendige\ninwerken\ninwerking\ninwerkingstelling\ninwerkingtreding\ninwerkkosten\ninwerkperiode\ninwerkplan\ninwerkrooster\ninwerkschema\ninwerktijd\ninwerpen\ninwerper\ninweven\ninwijden\ninwijding\ninwijdingsfeest\ninwijdingsrede\ninwijdingsritueel\ninwijkeling\ninwijken\ninwijking\ninwikkelen\ninwilligen\ninwilliging\ninwinnen\ninwinning\ninwippen\ninwisselbaar\ninwisselbaarheid\ninwisselen\ninwisseling\ninwonen\ninwonend\ninwoner\ninwoneraantal\ninwonersaantal\ninwonertal\ninwoning\ninwoonster\ninworp\ninwortelen\ninwrijven\ninzaaien\ninzage\ninzagen\ninzagerecht\ninzake\ninzakken\ninzakking\ninzamelaar\ninzamelactie\ninzamelen\ninzameling\ninzamelingsactie\ninzamelpunt\ninzamelsysteem\ninzegenen\ninzegening\ninzeilen\ninzenden\ninzender\ninzendformulier\ninzending\ninzendster\ninzendtermijn\ninzepen\ninzet\ninzetbaar\ninzetbaarheid\ninzetsel\ninzetstuk\ninzetten\ninzetter\ninzetting\ninzicht\ninzichtelijk\ninzichtelijkheid\ninzichtgevend\ninzien\ninzingen\ninzinken\ninzinking\ninzitten\ninzittende\ninzonderheid\ninzoomen\ninzoomfactor\ninzouten\ninzuigen\ninzwachtelen\ninzwelgen\ninzwemmen\ninzweren\nion\nionen\nionenbuis\nionentheorie\nionenwisselaar\nionisatie\nionisch\nioniseren\nionosfeer\nippon\nipso facto\nir.\nirenisch\niridium\niris\niriscopie\niriscopist\niriseren\nirisscan\nironicus\nironie\nironisch\nironiseren\nirradiatie\nirrationaal\nirrationalisme\nirrationaliteit\nirrationeel\nirrealis\nirrealistisch\nirrealiteit\nirredentisme\nirregulariteit\nirregulier\nirrelevant\nirrelevantie\nirreversibel\nirreëel\nirrigatie\nirrigatiedammen\nirrigatiekanaal\nirrigatieproject\nirrigatiesysteem\nirrigatietechniek\nirrigatiewater\nirrigatiewerk\nirrigatiewerken\nirrigator\nirrigeren\nirritant\nirritatie\nirritatiebron\nirritatiefactor\nirritatiegrens\nirriteren\nischias\nisgelijkteken\nislam\nislamiet\nislamiseren\nislamisering\nislamisme\nislamist\nislamistisch\nislamitisch\nislamitisch-fundamentalistisch\nislamkenner\nislamofobie\nislamologie\nislamoloog\nislamwereld\nisme\nisobaar\nisochroon\nisoglosse\nisolatie\nisolatieband\nisolatiebedrijf\nisolatiecel\nisolatiedeken\nisolatiedekens\nisolatiegebied\nisolatieklasse\nisolatiekosten\nisolatielaag\nisolatiemateriaal\nisolatieplaat\nisolatieprobleem\nisolatieprogramma\nisolatieproject\nisolatieschuim\nisolatievloer\nisolatievoorziening\nisolatiewaarde\nisolationisme\nisolationist\nisolationistisch\nisolator\nisoleerbankje\nisoleercel\nisoleerkamer\nisoleerkan\nisolement\nisoleren\nisolering\nisomeer\nisomeriseren\nisometrie\nisometrisch\nisomorf\nisostasie\nisotherm\nisotoon\nisotoop\nisotopenverhouding\nisotroop\nisotrope\nissue\nistmus\nitaliaan\nitalianisant\nitalianiseren\nitem\niteratie\niteratief\niteratiemethode\niteratieproces\niteratiestap\niteratiestappen\nitereren\nivf\nivf-behandeling\nivoor\nivoordraaier\nivoorhandel\nivoorkarton\nivoorkleurig\nivoorwit\nivoorzwart\nivoren\nizabel\nizabelkleurig\nj\nja\nja-stem\nja-stemmer\njaaglijn\njaagpaard\njaagpad\njaagschuit\njaap\njaar\njaar in jaar uit\njaar op jaar\njaarabonnement\njaarafrekening\njaarafsluiting\njaarafspraak\njaaranalyse\njaarbasis\njaarbedrag\njaarbegin\njaarbegroting\njaarbericht\njaarbeurs\njaarbeursgebouw\njaarboek\njaarbonus\njaarbudget\njaarcapaciteit\njaarcijfer\njaarcijfers\njaarclub\njaarcongres\njaarcontract\njaardag\njaardicht\njaardienst\njaardividend\njaareinde\njaarfeest\njaargang\njaargebruik\njaargeld\njaargemiddelde\njaargenoot\njaargenote\njaargesprek\njaargetij\njaargetijde\njaarhelft\njaarhuur\njaarinkomen\njaarinkomsten\njaarkaart\njaarkalender\njaarklas\njaarklasse\njaarklassensysteem\njaarkoers\njaarkorting\njaarkring\njaarkroniek\njaarlast\njaarlijks\njaarling\njaarloon\njaarmarkt\njaaromzet\njaaropbrengst\njaaropening\njaaropgaaf\njaaropgave\njaaroverzicht\njaarplaatje\njaarplan\njaarplannen\njaarplanning\njaarpremie\njaarprestatie\njaarprijs\njaarproductie\njaarprogramma\njaarrapport\njaarrapportage\njaarrecord\njaarrede\njaarrekening\njaarrekeningprocedure\njaarrendement\njaarrente\njaarresultaat\njaarring\njaarrond\njaarruimte\njaars\njaarsalaris\njaarschrift\njaarstijging\njaarstukken\njaartal\njaartelling\njaartemperatuur\njaarthema\njaartotaal\njaartrajectkaart\njaarverbruik\njaarvergadering\njaarverlies\njaarverslag\njaarverslaggeving\njaarverslaglegging\njaarvolume\njaarwedde\njaarwende\njaarwinst\njaarwisseling\njabot\njabotjes\njabroer\njacht\njachtakte\njachtartikel\njachtavontuur\njachtbedrijf\njachtbewijs\njachtbommenwerper\njachtbouw\njachtbuit\njachtclub\njachtdelict\njachtdruk\njachten\njachteskader\njachtgebied\njachtgenot\njachtgeweer\njachtgodin\njachtgoed\njachtgoederen\njachtgrond\njachthaven\njachthond\njachthoorn\njachthoren\njachthuis\njachtig\njachtigheid\njachtinstinct\njachtlak\njachtluipaard\njachtmes\njachtmisdrijf\njachtongeluk\njachtopzichter\njachtopziener\njachtpartij\njachtrecht\njachtrevier\njachtschotel\njachtseizoen\njachtslot\njachtsneeuw\njachtspin\njachtspriet\njachtspringen\njachtstoet\njachttafereel\njachtterrein\njachttijd\njachttrofee\njachtveld\njachtvelden\njachtverbod\njachtvergunning\njachtvermaak\njachtvlieger\njachtvliegtuig\njachtwachter\njachtwagen\njachtwater\njachtweide\njachtwerf\njachtwet\njachtwiel\njack\njacket\njacketkroon\njackpot\njacquard\njacquardmachine\njacquet\njacuzzi\njade\njaden\njaeger\njaegerondergoed\njagen\njager\njageres\njagerij\njagermeester\njagersgroen\njagershond\njagerslatijn\njagerspak\njagerspakken\njagerstaal\njagerstas\njagersterm\njagersvereniging\njagersvolk\njagertje\njaguar\njajem\njak\njakhals\njakhalzen\njakken\njakkeren\njakkes\njaknikken\njaknikker\njakobakan\njakobijn\njakobijnenmuts\njakobskruiskruid\njakobsladder\njakobsschelp\njakobszalm\njalap\njalappe\njaloers\njaloersheid\njaloersmakend\njaloezie\njaloezieaanval\njaloeziegevoel\njalon\njalonneren\njam\njambalaya\njambe\njambisch\njamboree\njammen\njammer\njammeren\njammerhout\njammerklacht\njammerlijk\njammie\njampot\njamproductie\njamsessie\njamsession\njan\njan-in-de-zak\njan-van-gent\njanboel\njandoedel\njandorie\njanet\njangat\njanhagel\njanhen\njanitsaar\njanken\njankerig\njanklaassen\njanklaassenspel\njanmaat\njannen\njanoom\njanplezier\njansalie\njansaliegeest\njansenisme\njansenist\njansenistenkerk\njansenistisch\njanskruid\njanslot\njantje\njantje-van-leiden\njantjes\njanuari\njanuaridag\njanuarimaand\njanuarinummer\njanus\njanuskop\njap\njapanner\njapanologie\njapanoloog\njapen\njapon\njaponstof\njappenkamp\njardinière\njarenlang\njargon\njarig\njarige\njarosiet\njarretel\njarretelgordel\njarretelle\njarretellengordel\njas\njasbeschermer\njasje-dasje\njasmijn\njasmijngeur\njasmijnthee\njaspand\njaspis\njasschort\njassen\njassenhanger\njassenkamer\njaszak\njat\njatagan\njatmoos\njatte\njatten\njatter\njatwerk\njava-aap\njavakoffie\njavamens\njavasuiker\njavel\njawel\njawoord\njazegger\njazeker\njazz\njazzballet\njazzband\njazzbassist\njazzcafé\njazzcentrum\njazzclub\njazzcombo\njazzconcert\njazzfestival\njazzgeschiedenis\njazzgitaar\njazzgitarist\njazzkalender\njazzkwartet\njazzlegende\njazzliefhebber\njazzmusicus\njazzmuziek\njazzmuzikant\njazzorkest\njazzpianist\njazzplaat\njazzpubliek\njazzrock\njazzsaxofonist\njazzscene\njazzsensatie\njazztrio\njazztrompettist\njazzwereld\njazzy\njazzzanger\njazzzangeres\nje\njeans\njeansbroek\njeanslijn\njeansmerk\njeansrok\njee\njeep\njeepsafari\njeetje\njegens\njehova\njein\njeinen\njekker\njelui\njemig\njeminee\njen\njenaplanschool\njenever\njeneverachtig\njeneverbes\njeneverbesstruik\njeneverfles\njeneverglas\njeneverlucht\njeneverneus\njeneverstoker\njeneverstokerij\njeneverstruik\njengel\njengelen\njennen\njenoffel\njeremiade\njeremiëren\njerrycan\njersey\njet\njetlag\njeton\njetset\njetski\njetskiën\njetskiër\njeu\njeu de boules\njeu-de-boulen\njeugd\njeugd-tbs\njeugdafdeling\njeugdarts\njeugdatelier\njeugdauteur\njeugdbeleid\njeugdbeleidsplan\njeugdbende\njeugdbescherming\njeugdbeschermingsrecht\njeugdbestuur\njeugdbeweging\njeugdblad\njeugdblok\njeugdboek\njeugdboekenschrijfster\njeugdboekenschrijver\njeugdbrandweer\njeugdbrigade\njeugdcentrum\njeugdclub\njeugdcoach\njeugdcommissie\njeugdcomplex\njeugdcoördinator\njeugdcriminaliteit\njeugdcultuur\njeugddebat\njeugddelinquentie\njeugddetentie\njeugddienst\njeugddrama\njeugddroom\njeugdelftal\njeugdfilm\njeugdfoto\njeugdgevangenis\njeugdgeweld\njeugdgezondheidszorg\njeugdgroep\njeugdherberg\njeugdherinnering\njeugdhonk\njeugdhotel\njeugdhuis\njeugdhulp\njeugdhulpverlening\njeugdhulpverleningsinstelling\njeugdhulpverleningsinstellingen\njeugdidool\njeugdig\njeugdigheid\njeugdimpressie\njeugdinrichting\njeugdinstelling\njeugdinternaat\njeugdinternational\njeugdjaren\njeugdjournaal\njeugdkamp\njeugdkampioen\njeugdkampioenschap\njeugdkapeldienst\njeugdklasse\njeugdkoor\njeugdlectuur\njeugdleider\njeugdleidster\njeugdlid\njeugdliefde\njeugdliteratuur\njeugdloon\njeugdopera\njeugdopleiding\njeugdopleidingen\njeugdorganisatie\njeugdorkest\njeugdpagina\njeugdparticipatie\njeugdpaspoort\njeugdplan\njeugdploeg\njeugdpolitie\njeugdportret\njeugdpredikant\njeugdprins\njeugdproblematiek\njeugdprogramma\njeugdproject\njeugdprostitutie\njeugdprotest\njeugdpsychiater\njeugdpsychiatrie\njeugdpsychotherapie\njeugdpuistje\njeugdpuistjes\njeugdraad\njeugdrecht\njeugdrechtbank\njeugdrechter\njeugdreclassering\njeugdrecord\njeugdroman\njeugdsalaris\njeugdschaak\njeugdselectie\njeugdsentiment\njeugdserie\njeugdsoos\njeugdspaarwet\njeugdspeler\njeugdsport\njeugdstrafrecht\njeugdtaal\njeugdteam\njeugdtheater\njeugdtitel\njeugdtoernooi\njeugdtrainer\njeugdtrauma\njeugdvereniging\njeugdvoetbal\njeugdvriend\njeugdvriendin\njeugdwedstrijd\njeugdwelzijnsbeleid\njeugdwelzijnswerk\njeugdwereldkampioen\njeugdwerk\njeugdwerker\njeugdwerkgarantiebanen\njeugdwerking\njeugdwerkloosheid\njeugdwerkplan\njeugdwerkster\njeugdzaken\njeugdzonde\njeugdzorg\njeuk\njeuken\njeukerig\njeukpoeder\njeukpoeier\njeuksel\njeukte\njeukziekte\njeune premier\njeuzelen\njeuïg\njezelf\njezusfreak\njezuïet\njezuïeten\njezuïetencollege\njezuïetenkerk\njezuïetenkerken\njezuïetenklooster\njezuïetenorde\njezuïetenpater\njezuïetenschool\njezuïetenstijl\njezuïtisch\njezuïtisme\njhr.\njicht\njichtaanval\njichtig\njichtknobbel\njichtlijder\njichtpijn\njid\njihad\njihadist\njihadistisch\njij\njij-bak\njijen\njijzelf\njingle\njingo\njingoïsme\njip-en-janneketaal\njippie\njiujitsu\njive\njkvr.\njl.\njob\njobaanbieding\njobaanbod\njobben\njobbeurs\njobcreatie\njobdienst\njobhoppen\njobhopper\njobkrant\njobsbode\njobsgeduld\njobsite\njobstijding\njobstudent\njobstudente\njobverlies\njoch\njochie\njockey\njockeypet\njockeys\njodelaar\njodelaarster\njodelen\njodendom\njodenfooi\njodenkerk\njodenkers\njodenkind\njodenkoek\njodenlijm\njodenstreek\njoderen\njodide\njodium\njodiuminname\njodiumpillen\njodiumtinctuur\njodoform\njodoformgaas\njoechjachen\njoeg\njoego\njoekel\njoelen\njoelfeest\njoep\njoepen\njoepie\njoetje\njofel\njoffer\njoggelen\njoggen\njogger\njogging\njoggingbroek\njoggingpak\njoh\njohannesbloem\njohannesbrood\njohannesbroodboom\njohannesbroodpitmeel\njohanneskever\njohannieter\njoinen\njoint\njoint venture\njojo\njojo-effect\njojobeleid\njojoën\njok\njoke\njoken\njoker\njokeren\njokkebrok\njokkebrokken\njokken\njokkernij\njol\njolen\njolig\njoligheid\njolijt\njollen\njollenman\njonagold\njonas\njonassen\njonathan\njong\njongde\njonge\njongedame\njongedochter\njongeheer\njongejuffrouw\njongelieden\njongeling\njongelingschap\njongelingsjaren\njongelingsvereniging\njongelui\njongeman\njongen\njongensachtig\njongensachtigheid\njongensafdeling\njongensboek\njongensboekachtig\njongensdroom\njongensfiets\njongensgek\njongensgezicht\njongensgrap\njongenshart\njongensjaren\njongenskamer\njongenskiel\njongenskoor\njongenskop\njongensliefde\njongensnaam\njongenspak\njongensprostitutie\njongensschool\njongenssopraan\njongensspel\njongensstem\njongensstreek\njongenswerk\njongenszaal\njongenszot\njonger\njongere\njongerejaars\njongeren\njongerenadviescentrum\njongerenafdeling\njongerenbeleid\njongerenbeweging\njongerenblad\njongerenbureau\njongerencafé\njongerencamping\njongerencentrum\njongerenclub\njongerenconferentie\njongerencontact\njongerencultuur\njongerendag\njongerendrama\njongerenfestival\njongerengebied\njongerengroep\njongerenhuisvesting\njongerenjury\njongerenkaart\njongerenkaarten\njongerenkantoor\njongerenklassement\njongerenkoor\njongerenkoren\njongerenkrant\njongerenmagazine\njongerenmarkt\njongerenmuziek\njongerenomroep\njongerenorganisatie\njongerenpanel\njongerenpartij\njongerenpaspoort\njongerenplan\njongerenproblematiek\njongerenprogramma\njongerenproject\njongerenraad\njongerensoos\njongerentaal\njongerenteam\njongerenvereniging\njongerenwerk\njongerenwerker\njongerenwerkster\njongerenzender\njongetje\njonggeboren\njonggeborene\njonggehandicaptenkorting\njonggehuwd\njonggehuwde\njonggehuwden\njonggestorven\njonggetrouwd\njonggetrouwde\njonggezel\njongleerder\njongleren\njongleur\njongmaatje\njongmens\njongst\njongstleden\njongvee\njongvolwassen\njongvolwassene\njongvolwassenen\njonk\njonker\njonkheer\njonkheid\njonkie\njonkman\njonkvrouw\njonkvrouwe\njonkvrouwelijk\njonnen\njood\njoods\njoods-christelijk\njoods-zijn\njool\njoon\njoop\njopenbier\njopper\njota\njou\njouen\njoule\njournaal\njournaalbeeld\njournaalfragment\njournaallezer\njournaalpost\njournaalpresentator\njournaaluitzending\njournaille\njournalist\njournaliste\njournalistenbond\njournalistenkring\njournalistenopleiding\njournalistentaal\njournalistenvakbond\njournalistenvereniging\njournalistiek\njouw\njouwe\njouwen\njouzelf\njoviaal\njovialiteit\njoyeus\njoyriden\njoyrider\njoyriding\njoystick\njozef\njr.\nju\njubee\njubel\njubelen\njubelfeest\njubeljaar\njubelkreet\njubelstemming\njubeltenen\njubeltoon\njubelzang\njubilaresse\njubilaris\njubilea\njubilee\njubileren\njubileum\njubileumbijeenkomst\njubileumboek\njubileumbundel\njubileumconcert\njubileumcongres\njubileumeditie\njubileumfeest\njubileumgratificatie\njubileumjaar\njubileumnummer\njubileums\njubileumtentoonstelling\njubileumuitgave\njubileumuitzending\njubileumviering\njubileumzegel\njuchtleder\njuchtleer\njuchtleren\njudas\njudasgeld\njudaskus\njudasloon\njudaspenning\njudasrol\njudassen\njudasserij\njudasstreek\njudaïca\njudaïsme\njudicieel\njudicium\njudo\njudoband\njudobond\njudocarrière\njudocoach\njudodiploma\njudofederatie\njudoka\njudokampioen\njudokampioenschap\njudomat\njudoselectie\njudosport\njudotitel\njudotrainer\njudowedstrijd\njudoën\njuf\njuffer\njufferachtig\njufferen\njuffershondje\njuffertje\njuffie\njuffrouw\njuffrouwen\njugendstil\njuichen\njuichkreet\njuichstemming\njuichtoon\njuichverhaal\njuist\njuiste\njuistheid\njujube\njuk\njukbeen\njukboog\njukebox\njukken\njuli\njuliaans\njulidag\njulienne\njuliennesoep\njulimaand\njulinummer\njullie\njumbo\njumbojet\njumelage\njumeleren\njumelles\njumpen\njumper\njumpshot\njumpsuit\njunctie\njunctuur\njungle\njunglemes\njuni\njunidag\njunikever\njunimaand\njuninummer\njunior\njuniorenkampioen\njuniorenselectie\njuniorenteam\njuniorentijd\njuniorentoernooi\njunk\njunkfood\njunkie\njunkmail\njunta\njuntaleider\njura\njurakalk\njureren\njurering\njuridificering\njuridisch\njuridisch-technisch\njuridisering\njurisdictie\njurisdictiegeschil\njurisdictioneel\njurisprudentie\njurist\njuriste\njuristenblad\njuristenvereniging\njuristerij\njurk\njurkangst\njury\njuryberaad\njuryleden\njurylid\njuryprijs\njuryrapport\njuryrechtspraak\njurysysteem\njuryuitspraak\njuryverslag\njuryvoorzitter\njus\njuskom\njuslepel\njust in time\njusteerder\njusteren\njustificatie\njustitiabel\njustitiabelen\njustitie\njustitieapparaat\njustitieassistent\njustitiebegroting\njustitiebeleid\njustitiedossier\njustitieel\njustitiekosten\njustitieminister\njustitiepaleis\njustitiesamenwerking\njustitiewoordvoerder\njustitioneel\njut\njute\njutegaren\njuten\njutespinnerij\njutezak\njutmis\njuttemis\njutten\njuttepeer\njutter\njuut\njuvenaat\njuveniel\njuweel\njuweelkever\njuwelen\njuwelenkistje\njuwelenroof\njuwelier\njuweliersbranche\njuweliersloep\njuweliersvak\njuwelierswinkel\njuwelierszaak\njuwelig\njuxtapositie\nk\nk.k.\nkW\nkWh\nka\nkaag\nkaai\nkaaien\nkaaier\nkaaigeld\nkaailoper\nkaaiman\nkaaimuur\nkaaiwerker\nkaak\nkaakbeen\nkaakchirurg\nkaakchirurgie\nkaakfractuur\nkaakgewricht\nkaakholte\nkaakje\nkaakklem\nkaakkramp\nkaaklijn\nkaakmes\nkaakontsteking\nkaaksbeen\nkaakslag\nkaakspier\nkaakstoot\nkaal\nkaalgeschoren\nkaalheid\nkaalhoofdig\nkaalhoofdigen\nkaalhoofdigheid\nkaalknippen\nkaalkop\nkaalplukken\nkaalplukteam\nkaalscheren\nkaalslaan\nkaalslag\nkaalte\nkaaltjes\nkaalvreten\nkaam\nkaan\nkaantje\nkaap\nkaapstander\nkaapvaart\nkaar\nkaard\nkaarde\nkaarden\nkaardenbol\nkaarder\nkaardmachine\nkaardwol\nkaars\nkaarsenbak\nkaarsenfabriek\nkaarsenmaker\nkaarsenmakerij\nkaarsenpan\nkaarsenpit\nkaarsensnuiter\nkaarsenstandaard\nkaarslantaarn\nkaarslantaren\nkaarslicht\nkaarsrecht\nkaarsroet\nkaarsvet\nkaarsvlam\nkaart\nkaartautomaat\nkaartavondje\nkaartbeeld\nkaartbrief\nkaartclub\nkaartcontrole\nkaarten\nkaartenactie\nkaartenbak\nkaartenhouder\nkaartenhuis\nkaartenkamer\nkaartenkast\nkaartenmaker\nkaartentafel\nkaartenverkoop\nkaartenzaal\nkaarter\nkaarthouder\nkaartje\nkaartjesautomaat\nkaartjescontroleur\nkaartjesknipper\nkaartjesverkoop\nkaartjesverkoper\nkaartleeslamp\nkaartleggen\nkaartlegster\nkaartlezen\nkaartlezer\nkaartlopen\nkaartmateriaal\nkaartnummer\nkaartprojectie\nkaartspeelster\nkaartspel\nkaartspelen\nkaartspeler\nkaartster\nkaartsysteem\nkaarttelefoon\nkaarttype\nkaartverdeling\nkaartverkoop\nkaartverkoopsysteem\nkaas\nkaasbereiding\nkaasboer\nkaasboerderij\nkaasbol\nkaasboor\nkaasbroodje\nkaasburger\nkaascracker\nkaasdoek\nkaasdrager\nkaasexport\nkaasfabriek\nkaasfondue\nkaasgerecht\nkaashandel\nkaashandelaar\nkaasjeskruid\nkaaskamer\nkaaskleursel\nkaaskoekje\nkaaskop\nkaaskoper\nkaaskoppen\nkaasleverancier\nkaaslinnen\nkaasmaken\nkaasmaker\nkaasmakerij\nkaasmarkt\nkaasmeisje\nkaasmes\nkaasmijt\nkaaspakhuis\nkaaspers\nkaasplank\nkaasplateau\nkaasproduct\nkaasproductie\nkaassaus\nkaasschaaf\nkaasschaafmethode\nkaasschotel\nkaassoort\nkaassoufflé\nkaasstof\nkaasstolp\nkaasstremsel\nkaastaart\nkaasvorm\nkaaswaag\nkaaswagen\nkaaswinkel\nkaats\nkaatsbaan\nkaatsbal\nkaatsballen\nkaatsclub\nkaatsen\nkaatser\nkaatsspel\nkaatswedstrijd\nkabaai\nkabaal\nkabaalmaker\nkabaja\nkabas\nkabassen\nkabbala\nkabbalist\nkabbalistiek\nkabbalistisch\nkabbelen\nkabbeling\nkabel\nkabel-tv\nkabelaanbieder\nkabelaanbod\nkabelaansluiting\nkabelaar\nkabelabonnee\nkabelabonnement\nkabelactiviteit\nkabelaring\nkabelbaan\nkabelballon\nkabelbedrijf\nkabelbranche\nkabelbrug\nkabelconcern\nkabeldistributie\nkabeldivisie\nkabeldoorgifte\nkabeldoorvoering\nkabelexploitant\nkabelexploitatie\nkabelfabriek\nkabelfabrikant\nkabelgast\nkabelgat\nkabelgoot\nkabelinfrastructuur\nkabeljauw\nkabeljauwfilet\nkabeljauws\nkabeljauwskelder\nkabeljauwstand\nkabeljauwvangst\nkabeljauwvisserij\nkabelkanaal\nkabelkijker\nkabelkrant\nkabellas\nkabellassen\nkabellegger\nkabelleiding\nkabellengte\nkabellift\nkabelmaatschappij\nkabelmarkt\nkabelmodem\nkabelmodemtechnologie\nkabelnet\nkabelnetwerk\nkabelnetwerken\nkabelnota\nkabelomroep\nkabeloperator\nkabelpijp\nkabelpijpen\nkabelplan\nkabelpont\nkabelschoen\nkabelsector\nkabelslot\nkabelspoor\nkabelspoorweg\nkabelsteek\nkabelstreng\nkabelsysteem\nkabeltarief\nkabeltelefonie\nkabeltelegram\nkabeltelevisie\nkabeltelevisie-exploitant\nkabeltelevisiemaatschappij\nkabeltelevisienet\nkabeltouw\nkabeltram\nkabeltrein\nkabeltrui\nkabelverbinding\nkabelzender\nkabinet\nkabinetchef\nkabinetsbeleid\nkabinetsberaad\nkabinetsbeslissing\nkabinetsbesluit\nkabinetschef\nkabinetscrisis\nkabinetsdeelname\nkabinetsdelegatie\nkabinetsdiscussie\nkabinetsformateur\nkabinetsformatie\nkabinetsinformateur\nkabinetskwestie\nkabinetslid\nkabinetsmedewerker\nkabinetsnota\nkabinetsorder\nkabinetsperiode\nkabinetsplan\nkabinetsploeg\nkabinetsraad\nkabinetssecretaris\nkabinetsstandpunt\nkabinetsstuk\nkabinetsvergadering\nkabinetsvoornemen\nkabinetsvoorstel\nkabinetswijziging\nkabinetswisseling\nkabinetwerker\nkabots\nkabotseke\nkabotseken\nkabouter\nkaboutermannetje\nkabuiskool\nkabuki\nkachel\nkachelbuis\nkachelglans\nkachelhout\nkachelpijp\nkachelplaat\nkachelsmid\nkacheltje\nkachelwarmte\nkadaster\nkadasterkaarten\nkadastraal\nkadastreren\nkadastrering\nkadaver\nkadaverdiscipline\nkaddisj\nkade\nkadee\nkadegeld\nkademuur\nkaden\nkader\nkaderakkoord\nkaderbrief\nkadercursus\nkaderen\nkaderfunctie\nkaderlid\nkaderlijnen\nkadernota\nkaderopleiding\nkaderovereenkomst\nkaderpersoneel\nkaderprogramma\nkaderscholing\nkaderschool\nkaderspel\nkaderstelling\nkadervorming\nkaderwerk\nkaderwerving\nkaderwet\nkadet\nkadetje\nkadewerker\nkadi\nkadraai\nkadraaier\nkadreren\nkadrering\nkaduuk\nkaf\nkaffa\nkaffer\nkafferbuffel\nkafferen\nkafferpokken\nkafir\nkafka-achtig\nkafkaiaans\nkafkaësk\nkafmolen\nkaft\nkaftan\nkaften\nkafzak\nkajak\nkajakken\nkajapoetolie\nkajuit\nkajuitsjongen\nkajuitswachter\nkajuitzeiljacht\nkak\nkakadoris\nkakebeen\nkakebenen\nkakel\nkakelaar\nkakelaarster\nkakelbont\nkakelen\nkakelvers\nkakement\nkakemono\nkaken\nkakenestje\nkaker\nkaketoe\nkaki\nkakikleur\nkakikleurig\nkakiuniform\nkakken\nkakker\nkakkerig\nkakkerige\nkakkerlak\nkakkestoelemeien\nkakkineus\nkakmadam\nkakofonie\nkakofonisch\nkakografie\nkakschool\nkakster\nkakstoel\nkalamijn\nkalander\nkalanderen\nkalanderij\nkalandermolen\nkalasjnikov\nkalbas\nkalebas\nkalebasboom\nkalebasfles\nkalefaten\nkalefateren\nkalen\nkalender\nkalenderblok\nkalenderdag\nkalenderdagen\nkalenderjaar\nkalenderleeftijd\nkalendermaand\nkalendermethode\nkalenderspreuk\nkalendersysteem\nkalf\nkalfaatijzer\nkalfaatwerk\nkalfateren\nkalfde\nkalfkoe\nkalfsbiefstuk\nkalfsborst\nkalfsfricandeau\nkalfsgehakt\nkalfskop\nkalfskotelet\nkalfslap\nkalfslapje\nkalfsleder\nkalfsleer\nkalfsleren\nkalfslever\nkalfsoester\nkalfsoog\nkalfspoelet\nkalfsschenkel\nkalfsschijf\nkalfstong\nkalfsvel\nkalfsvlees\nkalfszwezerik\nkalfvaars\nkali\nkaliber\nkalibreren\nkalief\nkalifaat\nkalig\nkalimest\nkalimijn\nkalis\nkalisalpeter\nkalisse\nkalissestok\nkalissewater\nkalium\nkaliumchloride\nkaliumgehalte\nkaliumhuishouding\nkaliumtekort\nkaliumverbinding\nkalizout\nkalk\nkalkaanslag\nkalkaarde\nkalkachtig\nkalkarm\nkalkbak\nkalkbemesting\nkalkbranderij\nkalkei\nkalken\nkalkgebergte\nkalkgebrek\nkalkgroeve\nkalkgrond\nkalkhoudend\nkalklaag\nkalklicht\nkalkmelk\nkalkmergel\nkalkmortel\nkalkoen\nkalkoenenvlees\nkalkoenfilet\nkalkoens\nkalkoentje\nkalkoven\nkalkput\nkalkrijk\nkalkrots\nkalksalpeter\nkalkschaal\nkalkspecie\nkalksteen\nkalkstenen\nkalkwater\nkalkzandsteen\nkalle\nkallen\nkalligraaf\nkalligraferen\nkalligrafie\nkalligrafisch\nkalm\nkalmeren\nkalmering\nkalmeringsmiddel\nkalmink\nkalminken\nkalmoes\nkalmoesolie\nkalmpjes\nkalmte\nkalmweg\nkalomel\nkalot\nkalven\nkalverachtig\nkalverbox\nkalveren\nkalverhouderij\nkalverliefde\nkalvermarkt\nkalvermester\nkalvermesterij\nkalversector\nkalvijn\nkam\nkameel\nkameeldrijver\nkameelhaar\nkameelharen\nkameelruiter\nkameeltje\nkamelendrijver\nkameleon\nkameleontisch\nkamelot\nkamen\nkamenier\nkamenierster\nkamer\nkameraad\nkameraadschap\nkameraadschappelijk\nkameraadschappelijkheid\nkameraanbod\nkameraar\nkamerantenne\nkamerarrest\nkamerbewaarder\nkamerbewoner\nkamerbewoning\nkamerbewoonster\nkamerbreed\nkamerbureau\nkamerdeur\nkamerdienaar\nkamerdoek\nkamerensemble\nkamergeleerde\nkamergeleerdheid\nkamergenoot\nkamergenote\nkamergymnastiek\nkamerheer\nkamerhuur\nkamerindeling\nkamerinrichting\nkamerinventaris\nkamerjapon\nkamerjas\nkamerkoor\nkamerling\nkamermarkt\nkamermeisje\nkamermeubelen\nkamermusicus\nkamermuziek\nkamermuziekfestival\nkamermuziekwerk\nkamermuzikaal\nkamernood\nkamernummer\nkameropera\nkamerorkest\nkamerplant\nkamerprijs\nkamerraam\nkamerrok\nkamerscherm\nkamerschut\nkamerservice\nkamertemperatuur\nkamerthermostaat\nkamertje\nkamerverdeling\nkamerverhuur\nkamerverhuurbedrijf\nkamerverhuurbureau\nkamerverhuurder\nkamerverhuurster\nkamerwacht\nkamfer\nkamferachtig\nkamferballetje\nkamferboom\nkamferkist\nkamferlucht\nkamferolie\nkamferspiritus\nkamgaren\nkamgras\nkamhout\nkamig\nkamikaze\nkamikazeachtig\nkamikazeachtige\nkamikazeactie\nkamikazepiloot\nkamille\nkamillebloem\nkamilleolie\nkamillethee\nkamizool\nkammachine\nkammeling\nkammen\nkamp\nkampanje\nkamparts\nkampbeheerder\nkampbeul\nkampbewaker\nkampbewaking\nkampbewoner\nkampcommandant\nkampeerauto\nkampeerboerderij\nkampeerbus\nkampeercommissie\nkampeerder\nkampeerplaats\nkampeerplek\nkampeerplekken\nkampeerster\nkampeertent\nkampeerterrein\nkampeeruitrusting\nkampeerwagen\nkampement\nkampen\nkamper\nkamperen\nkamperfoelie\nkampernoelie\nkampernoelje\nkampersteur\nkampioen\nkampioene\nkampioenenbal\nkampioenenmaker\nkampioensbeker\nkampioenschap\nkampioenscompetitie\nkampioensfeest\nkampioensgordel\nkampioensjaar\nkampioensploeg\nkampioensprijs\nkampioensschaal\nkampioenstitel\nkampioenstrui\nkampioenswedstrijd\nkampkaart\nkampleider\nkampleiding\nkampleidster\nkampleven\nkamplied\nkamplust\nkampong\nkamponghoofd\nkampplaats\nkamprechter\nkampstraat\nkampstrijd\nkampsyndroom\nkampterrein\nkamptrauma\nkampvechter\nkampvuur\nkampwinkel\nkamrad\nkamsalamander\nkamvormig\nkamwiel\nkamwol\nkan\nkanaal\nkanaalbrug\nkanaaldijk\nkanaalkiezer\nkanaalpand\nkanaalsluis\nkanaalvak\nkanaalverbinding\nkanaalwater\nkanaalzwemmen\nkanaat\nkanalenkiezer\nkanalennet\nkanalenstelsel\nkanalisatie\nkanaliseren\nkanalisering\nkanarie\nkanarieboom\nkanariegeel\nkanariekooi\nkanariepiet\nkanariepietje\nkanarievogel\nkanariezaad\nkanaster\nkandeel\nkandelaar\nkandelaber\nkandelaren\nkandidaat\nkandidaat-Kamerlid\nkandidaat-bestuurslid\nkandidaat-burgemeester\nkandidaat-commissaris\nkandidaat-kanselier\nkandidaat-koper\nkandidaat-kopers\nkandidaat-lid\nkandidaat-lidmaatschap\nkandidaat-lidstaat\nkandidaat-lijsttrekker\nkandidaat-minister\nkandidaat-ministers\nkandidaat-notaris\nkandidaat-notarissen\nkandidaat-opvolger\nkandidaat-opvolgers\nkandidaat-overnemer\nkandidaat-premier\nkandidaat-president\nkandidaat-raadslid\nkandidaat-stad\nkandidaat-voorzitter\nkandidaat-voorzitters\nkandidaat-wethouder\nkandidaats\nkandidaatschap\nkandidaatsexamen\nkandidaatsfase\nkandidaatstelling\nkandidaatstellingsprocedure\nkandidate\nkandidatencommissie\nkandidatenlijst\nkandidatentoernooi\nkandidatuur\nkandideren\nkandij\nkandijstroop\nkandijsuiker\nkaneel\nkaneelappel\nkaneelbast\nkaneelboom\nkaneelgeur\nkaneelhout\nkaneelijs\nkaneelkleurig\nkaneelpijp\nkaneelstok\nkaneelstokje\nkaneelwater\nkanelig\nkanen\nkangoeroe\nkangoeroes\nkangoeroevlees\nkanis\nkanjer\nkanji\nkanker\nkankeraar\nkankerachtig\nkankerbehandeling\nkankerbestrijding\nkankerbestrijdingsfonds\nkankercel\nkankeren\nkankerfonds\nkankergen\nkankergezwel\nkankerinstituut\nkankerlijer\nkankermedicijn\nkankeronderzoek\nkankerpatiënt\nkankerpatiënte\nkankerpit\nkankerrisico\nkankersoorten\nkankerspecialist\nkankersterfte\nkankerstok\nkankertherapie\nkankerverwekkend\nkankerverwekker\nkannenkijker\nkannenwasser\nkannetje\nkannetjeskruid\nkannibaal\nkannibaals\nkannibalisatie\nkannibaliseren\nkannibalisme\nkannibalistisch\nkano\nkanobond\nkanoet\nkanoetstrandloper\nkanon\nkanongebulder\nkanonloop\nkanonnade\nkanonneerboot\nkanonnenvlees\nkanonnenvoer\nkanonneren\nkanonnier\nkanonschot\nkanonskogel\nkanonslag\nkanonvuur\nkanosport\nkanovaarder\nkanovaarster\nkanovaren\nkanovereniging\nkanoën\nkanoër\nkans\nkansarm\nkansarme\nkansarmoede\nkansberekening\nkansel\nkanselarij\nkanselarijstijl\nkanselarijtaal\nkanselier\nkanselierschap\nkanselierskandidaat\nkanselrede\nkanselredenaar\nkanselstijl\nkanselwelsprekendheid\nkansen\nkanshebber\nkanshebster\nkansloos\nkansongelijkheid\nkansovereenkomst\nkansrekening\nkansrijk\nkansspel\nkansspelautomaat\nkansspelbelasting\nkansspelbeleid\nkansspelmarkt\nkansverdeling\nkant\nkant-en-klaar\nkant-en-klaargerecht\nkant-en-klaarmaaltijd\nkanteel\nkantelbaar\nkantelbed\nkanteldeur\nkantelen\nkanteling\nkanteloep\nkantelraam\nkanten\nkanthout\nkantianisme\nkantiek\nkantig\nkantindustrie\nkantine\nkantinebaas\nkantinebeheerder\nkantinehouder\nkantinejuffrouw\nkantinewagen\nkantje\nkantjes\nkantjesharing\nkantklossen\nkantkoek\nkantkussen\nkantlaag\nkantlijn\nkanton\nkantongerecht\nkantongerechtsprocedure\nkantonnaal\nkantonnement\nkantonneren\nkantonnering\nkantonnier\nkantonrechter\nkantonrechtersformule\nkantoor\nkantoorachtig\nkantooradres\nkantooragenda\nkantooralmanak\nkantoorapparatuur\nkantoorarbeid\nkantoorarchitectuur\nkantoorartikel\nkantoorautomatisering\nkantoorbaan\nkantoorbediende\nkantoorbehoeften\nkantoorbenodigdheden\nkantoorboek\nkantoorboekhandel\nkantoorbouw\nkantoorcomplex\nkantoordirecteur\nkantoorervaring\nkantoorflat\nkantoorgebouw\nkantoorgenoot\nkantoorhouder\nkantoorhumor\nkantoorinrichting\nkantoorinrichtingsbedrijf\nkantoorinventaris\nkantoorjas\nkantoorjongen\nkantoorkast\nkantoorklerk\nkantoorkosten\nkantoorkruk\nkantoorloper\nkantoormachine\nkantoormarkt\nkantoormateriaal\nkantoormeubel\nkantoormeubelen\nkantoormeubilair\nkantooromgeving\nkantooroppervlak\nkantoorpakket\nkantoorpand\nkantoorpersoneel\nkantoorproducten\nkantoorruimte\nkantoorschrijver\nkantoorsituatie\nkantoorsoftware\nkantoorstad\nkantoorstoel\nkantoorstoelen\nkantoorstructuur\nkantoorsysteem\nkantoortaak\nkantoortijd\nkantoortje\nkantoortoren\nkantoortuin\nkantooruren\nkantoorvilla\nkantoorvleugel\nkantoorwerk\nkantoorwijk\nkantorenbouw\nkantorencomplex\nkantorengebied\nkantorengebouw\nkantorenmarkt\nkantorennet\nkantorennetwerk\nkantorenpark\nkantorenvoorraad\nkantorenwijk\nkantrechten\nkantschool\nkantsteek\nkantsteen\nkanttekening\nkantvisserij\nkantwerk\nkantwerken\nkantwerkschool\nkantwerkster\nkanunnik\nkanunniken\nkanunnikenbank\nkanunnikenbanken\nkanunnikes\nkaolien\nkap\nkapbeitel\nkapbeweging\nkapblok\nkapbord\nkapconstructie\nkapdoos\nkapel\nkapelaan\nkapelanie\nkapelanieën\nkapelanij\nkapellen\nkapelmeester\nkapen\nkaper\nkaperbrief\nkaperij\nkaperkapitein\nkaperschip\nkapersnest\nkapgebint\nkapgewelf\nkaphamer\nkaping\nkapitaal\nkapitaalaanwas\nkapitaalaflossing\nkapitaalafschrijving\nkapitaalarm\nkapitaalband\nkapitaalbasis\nkapitaalbehoefte\nkapitaalbelasting\nkapitaalbelegging\nkapitaalbescherming\nkapitaalbeslag\nkapitaalbeweging\nkapitaalbezit\nkapitaalbezitter\nkapitaaldekking\nkapitaaldekkingsstelsel\nkapitaaldienst\nkapitaalexport\nkapitaalgebrek\nkapitaalgoederen\nkapitaalgoederenindustrie\nkapitaalgoederenmarkt\nkapitaalimport\nkapitaalinbreng\nkapitaalinjectie\nkapitaalinkomen\nkapitaalintensief\nkapitaalinvestering\nkapitaalinvoer\nkapitaalkosten\nkapitaalkrachtig\nkapitaalkrachtige\nkapitaalkrediet\nkapitaallasten\nkapitaalmarkt\nkapitaalmarktrente\nkapitaalmiddelen\nkapitaaloverdracht\nkapitaalrekening\nkapitaalrente\nkapitaalreserve\nkapitaalronde\nkapitaalruimte\nkapitaalsbasis\nkapitaalsbehoefte\nkapitaalsbelasting\nkapitaalschaarste\nkapitaalsinjectie\nkapitaalsintensief\nkapitaalsinvestering\nkapitaalslasten\nkapitaalspositie\nkapitaalsstroom\nkapitaalstorting\nkapitaalstroom\nkapitaalstructuur\nkapitaalsuitbreiding\nkapitaalsurplus\nkapitaalsverhoging\nkapitaalsvernietiging\nkapitaalsvorming\nkapitaaluitbreiding\nkapitaaluitgave\nkapitaaluitkering\nkapitaalvergroting\nkapitaalverhoging\nkapitaalverkeer\nkapitaalverlies\nkapitaalvermeerdering\nkapitaalvermindering\nkapitaalvernietiging\nkapitaalverplaatsing\nkapitaalverschaffer\nkapitaalverschuiving\nkapitaalverwatering\nkapitaalverzekering\nkapitaalvlucht\nkapitaalvoorziening\nkapitaalvorming\nkapitaalvraag\nkapitaalwinst\nkapitalen\nkapitalisatie\nkapitalisatiebon\nkapitaliseren\nkapitalisme\nkapitalist\nkapitalistisch\nkapiteel\nkapitein\nkapitein-commandant\nkapitein-generaal\nkapitein-luitenant\nkapitein-ter-zee\nkapitein-vlieger\nkapiteinschap\nkapiteinshut\nkapiteinskamer\nkapiteinsplaats\nkapiteinsrang\nkapiteinsuniform\nkapittel\nkapitteldag\nkapittelen\nkapittelheer\nkapittelkamer\nkapittelkerk\nkapittelschool\nkapittelstokje\nkapittelzaal\nkapjaar\nkapje\nkapkar\nkaplaars\nkaplaken\nkapmantel\nkapmeeuw\nkapmes\nkapo\nkapo's\nkapoen\nkapoenen\nkapoentje\nkapoeres\nkapoets\nkapoetsmuts\nkapok\nkapokbed\nkapokboom\nkapokkussen\nkapokmatras\nkapot\nkapotbijten\nkapotgaan\nkapothoedje\nkapotjas\nkapotje\nkapotmaken\nkapotslaan\nkapotvriezen\nkappa\nkappen\nkapper\nkappers\nkappersaus\nkappersbediende\nkappersbedrijven\nkappersbranche\nkappersketen\nkappersopleiding\nkappersschool\nkappersstoel\nkapperswinkel\nkapperszaak\nkapperszoon\nkappertje\nkappertjes\nkappertjeskool\nkappertjessaus\nkaproen\nkapsalon\nkapseizen\nkapsel\nkapselen\nkapsones\nkapspant\nkapspeld\nkapspiegel\nkapster\nkapstok\nkapstokhaak\nkaptafel\nkapucijn\nkapucijnaap\nkapucijnenklooster\nkapucijnenorde\nkapucijner\nkapucines\nkapverbod\nkapvergunning\nkapzaag\nkar\nkaraat\nkarabijn\nkarabinier\nkarabiniers\nkaraf\nkarakter\nkarakteranalyse\nkarakterbreedte\nkaraktercode\nkarakterdans\nkaraktereigenschap\nkarakterfout\nkarakteriseren\nkarakterisering\nkarakteristiek\nkarakterkennis\nkarakterkunde\nkarakterloos\nkarakterloosheid\nkaraktermoord\nkarakterologie\nkarakterologisch\nkarakterrol\nkarakterschets\nkarakterschildering\nkarakterset\nkarakterspeelster\nkarakterspeler\nkaraktersterkte\nkarakterstructuur\nkarakterstudie\nkarakterstuk\nkaraktertabel\nkaraktertekening\nkaraktertrek\nkaraktervol\nkaraktervormend\nkaraktervorming\nkarakterzwakte\nkaramel\nkaramellenvers\nkaramelpudding\nkaramelsmaak\nkaramelvers\nkaramelvla\nkaraoke\nkaraokebar\nkarate\nkarateka\nkarateslag\nkaratetrap\nkaravaan\nkaravaanhandel\nkaravaanroute\nkaravaansgewijs\nkaravaanweg\nkaravansera\nkaravanserai\nkarbeel\nkarbies\nkarbonaadje\nkarbonade\nkarbonkel\nkarbonkelneus\nkarbonkelsteen\nkarbouw\nkardeel\nkardemom\nkardinaal\nkardinaalrood\nkardinaalsbloem\nkardinaalschap\nkardinaalshoed\nkardinaalsmantel\nkardinaalsmuts\nkardinaalvogel\nkardinale\nkardinaliteit\nkardoen\nkardoes\nkardoespapier\nkareel\nkareelbakker\nkareelsteen\nkarekiet\nkaren\nkaret\nkaretschildpad\nkariatide\nkariboe\nkarig\nkarigheid\nkarikaturaal\nkarikaturiseren\nkarikaturist\nkarikatuur\nkarikatuurtekenaar\nkarkas\nkarkiet\nkarma\nkarmeliet\nkarmelietenklooster\nkarmelietenorde\nkarmelieter\nkarmelietes\nkarmelietessenklooster\nkarmijn\nkarmijnrood\nkarmozijn\nkarmozijnen\nkarmozijnrood\nkarn\nkarnemelk\nkarnemelkpap\nkarnemelkse pap\nkarnen\nkarnhond\nkarnmolen\nkarnstok\nkarnton\nkaronje\nkaros\nkarot\nkarottenfabriek\nkarper\nkarperachtigen\nkarpersprong\nkarpet\nkarrad\nkarren\nkarrenman\nkarrenpaard\nkarrenspoor\nkarrenverhuurder\nkarrenvracht\nkarrenwiel\nkarretje\nkarspoor\nkarst\nkart\nkartel\nkartelachtig\nkartelafspraak\nkartelautoriteit\nkartelbesluit\nkartelbureau\nkarteldarm\nkartelen\nkartelig\nkarteling\nkartelmachine\nkartelmes\nkartelparadijs\nkartelpolitie\nkartelrand\nkartelschaar\nkartelsnede\nkartelverbod\nkartelvorming\nkartelwaakhond\nkartelwetgeving\nkarten\nkarteren\nkartering\nkarteringsvlucht\nkartets\nkartetsvuur\nkarting\nkarton\nkartonbedrijf\nkartonfabriek\nkartonindustrie\nkartonnage\nkartonnagefabriek\nkartonnagewerk\nkartonnen\nkartonneren\nkartonnetje\nkartonpapier\nkartonwerker\nkartouw\nkartrekker\nkartuizer\nkartuizerin\nkartuizerklooster\nkarveel\nkarwats\nkarwei\nkarweien\nkarweitje\nkarwij\nkarwijzaad\nkas\nkasadministratie\nkasafdracht\nkasba\nkasbalans\nkasbediende\nkasbeheer\nkasbeheerder\nkasbehoefte\nkasbescheiden\nkasbiljet\nkasbloem\nkasboek\nkasbon\nkascheque\nkascommissie\nkascontrole\nkascontrolecommissie\nkasdruif\nkasfruit\nkasgeld\nkasgeldbeheer\nkasgroente\nkashba\nkashouder\nkasjmier\nkasjmieren\nkasjroet\nkasklimaat\nkaskraker\nkaskrediet\nkasloper\nkasmiddelen\nkasobligatie\nkasopname\nkasplant\nkaspositie\nkasregister\nkasrekening\nkasreserve\nkassa\nkassa-inkomsten\nkassabon\nkassakoopje\nkassala\nkassalade\nkassaldo\nkassei\nkasseien\nkasseienstrook\nkasseienweg\nkasseier\nkasseilegger\nkasseistamper\nkasseisteen\nkasseistrook\nkasseiweg\nkassen\nkassenbouw\nkassencomplex\nkassengebied\nkasserol\nkassian\nkassier\nkassiersboek\nkassiersbriefje\nkassierskantoor\nkassierster\nkassiewijle\nkassière\nkasstelsel\nkasstroom\nkasstuk\nkassucces\nkast\nkastanje\nkastanjeboom\nkastanjebruin\nkastanjechampignon\nkastanjekleurig\nkastanjelaan\nkastdeur\nkastdeurknop\nkaste\nkasteel\nkasteelboerderij\nkasteeldreef\nkasteelgracht\nkasteelheer\nkasteelhoeve\nkasteelmuur\nkasteelpark\nkasteelroman\nkasteelterrein\nkasteeltoren\nkasteeltuin\nkasteelvrouwe\nkasteelwijn\nkastekort\nkastelein\nkasteleines\nkasteleinse\nkastelenstichting\nkastelentocht\nkasteloos\nkasteloze\nkasten\nkastengeest\nkastenmaker\nkastenstelsel\nkastensysteem\nkastenwand\nkasticket\nkastie\nkastiespel\nkastijden\nkastijding\nkastkoffer\nkastpapier\nkastplank\nkastrandje\nkastrol\nkastruimte\nkastslot\nkastuinder\nkastwand\nkastwanden\nkasuaris\nkasuitgave\nkasverschil\nkasverschillen\nkasvoorraad\nkasvoorschot\nkat\nkat-en-muisspel\nkataal\nkatabool\nkatachtig\nkatafalk\nkatalysator\nkatalyse\nkatalyseren\nkatalytisch\nkatanker\nkatapult\nkatapulteren\nkatapultvliegtuig\nkatenspek\nkater\nkatern\nkatheder\nkathedraal\nkathedraalglas\nkatheter\nkatheteriseren\nkathode\nkathodestraalbuis\nkathodestralen\nkatholicisme\nkatholiciteit\nkatholiek\nkatholiekendag\nkatholiseren\nkation\nkatjang\nkatje\nkatjes\nkatjesdrop\nkatjesspel\nkatknuppelen\nkatoen\nkatoenachtig\nkatoenbaal\nkatoenbaron\nkatoenbatist\nkatoenblekerij\nkatoenboeren\nkatoenboom\nkatoenbouw\nkatoendraad\nkatoendruk\nkatoendrukkerij\nkatoenen\nkatoenfabriek\nkatoenflanel\nkatoenfluweel\nkatoenindustrie\nkatoenplant\nkatoenplantage\nkatoenpluis\nkatoenspinnerij\nkatoenstruik\nkatoenteelt\nkatoentje\nkatoenweverij\nkatoog\nkatrol\nkatrolschijf\nkatsjoe\nkattebelletje\nkatten\nkattenbak\nkattenbakvulling\nkattendoorn\nkattengat\nkattengespin\nkattengoud\nkattenhaar\nkattenklauw\nkattenkop\nkattenkruid\nkattenkwaad\nkattenliefhebber\nkattenluik\nkattenmepper\nkattenmuziek\nkattenoog\nkattenpis\nkattenpoot\nkattenras\nkattenrug\nkattensprong\nkattenstaart\nkattentong\nkattenvel\nkattenvoer\nkattenwasje\nkattenziekte\nkattenzilver\nkatterig\nkatterigheid\nkattig\nkattin\nkatuil\nkatvanger\nkatvis\nkatwilg\nkatzwijm\nkauri\nkauw\nkauwbeweging\nkauwen\nkauwgom\nkauwgombal\nkauwgum\nkauwmaag\nkauwspier\nkavalje\nkavel\nkavelen\nkavelindeling\nkaveling\nkavelprijs\nkavelruil\nkavelsloot\nkaviaar\nkawina\nkazak\nkazakdraaien\nkazakdraaier\nkazakdraaierij\nkazakkeerder\nkazemat\nkazen\nkazer\nkazerne\nkazerneachtig\nkazernecomplex\nkazerneleven\nkazernepoort\nkazerneren\nkazernering\nkazernetaal\nkazerneterrein\nkazuifel\nkaïn\nkaïnsmerk\nkaïnsteken\nkca\nkcal\nkebab\nkebon\nkedive\nkeef\nkeek\nkeel\nkeelarts\nkeelband\nkeelgat\nkeelgeluid\nkeelholte\nkeelkanker\nkeelklank\nkeelontsteking\nkeelpastille\nkeelpijn\nkeelspiegel\nkeelstem\nkeeltjes\nkeen\nkeep\nkeepen\nkeeper\nkeepersprobleem\nkeeperstrainer\nkeeperstraining\nkeeperstrui\nkeeperswerk\nkeepertrainer\nkeeplat\nkeepster\nkeer\nkeerboei\nkeerdam\nkeerdicht\nkeerkoppeling\nkeerkring\nkeerkringsgordel\nkeerkringslanden\nkeerlus\nkeermuur\nkeerpunt\nkeersluis\nkeertje\nkeervers\nkeerweer\nkeerweg\nkeerzang\nkeerzij\nkeerzijde\nkees\nkeeshond\nkeesten\nkeet\nkeetwoning\nkeffen\nkeffer\nkeffertje\nkefir\nkeg\nkegel\nkegelaar\nkegelas\nkegelbaan\nkegelbal\nkegelclub\nkegeldragend\nkegelen\nkegeljongen\nkegelmantel\nkegelslak\nkegelsnede\nkegelspel\nkegeltje\nkegelvlak\nkegelvormig\nkegelwedstrijd\nkegge\nkeggen\nkei\nkeiachtig\nkeibestrating\nkeigaaf\nkeigoed\nkeihard\nkeikop\nkeilbout\nkeileem\nkeilen\nkeiler\nkeilsteen\nkeinijg\nkeisteen\nkeitje\nkeitof\nkeizand\nkeizer\nkeizerin\nkeizerin-moeder\nkeizerlijk\nkeizerrijk\nkeizerschap\nkeizershuis\nkeizerskroon\nkeizersmantel\nkeizersnede\nkeizersnee\nkeizerspinguïns\nkeizerstitel\nkeizertijd\nkeizertje\nkek\nkeken\nkeker\nkelder\nkelderachtig\nkelderbox\nkelderdepots\nkelderdeur\nkelderen\nkelderfles\nkeldergat\nkeldergewelf\nkelderkamer\nkelderkast\nkelderkeuken\nkelderlucht\nkelderluik\nkeldermeester\nkeldermot\nkelderraam\nkelderruimte\nkelderspin\nkeldertrap\nkeldervenster\nkelderverdieping\nkeldervloer\nkelderwoning\nkelen\nkelim\nkelk\nkelkblad\nkelkdoekje\nkelkvormig\nkelner\nkelnerin\nkelp\nkeltoloog\nkemel\nkemelsgaren\nkemelshaar\nkemelsharen\nkemp\nkempen\nkempenaar\nkemphaan\nkempstok\nkenau\nkenbaar\nkenbaarheid\nkenbron\nkendo\nkenen\nkengetal\nkenleer\nkenletter\nkenmerk\nkenmerken\nkenmerkend\nkennel\nkennelijk\nkennen\nkenner\nkennersblik\nkennersoog\nkennis\nkennisachterstand\nkennisbank\nkennisborging\nkennisbron\nkenniscentrum\nkennisdebat\nkennisdeel\nkenniseconomie\nkennisgebied\nkennisgeving\nkennisindustrie\nkennisinfrastructuur\nkennisinstituut\nkennisintensief\nkennisintensiteit\nkenniskloof\nkennislacune\nkennisland\nkennisleer\nkennismaatschappij\nkennismaken\nkennismaking\nkennismakingsadvertentie\nkennismakingsavond\nkennismakingsbezoek\nkennismakingsbijeenkomst\nkennismakingsgesprek\nkennismakingsronde\nkennismakingstijd\nkennismakingstournee\nkennismanagement\nkennismanager\nkennisname\nkennisnemen\nkennisneming\nkennisnet\nkennisniveau\nkennisontwikkeling\nkennisoverdracht\nkennissamenleving\nkennissen\nkennissenkring\nkennisslijtage\nkennissysteem\nkennistechnologie\nkennistheorie\nkennisuitwisseling\nkennisvergaring\nkennisvermeerdering\nkennisveroudering\nkennisverwerving\nkennisvoorsprong\nkennisvorming\nkenniswerker\nkenschets\nkenschetsen\nkenschetsend\nkenschetsing\nkenspreuk\nkentaur\nkenteken\nkentekenbewijs\nkentekenen\nkentekenhouder\nkentekennummer\nkentekenplaat\nkentekenregister\nkentekenregistratie\nkenteren\nkentering\nkentheoretisch\nkenvermogen\nkepen\nkeper\nkeperband\nkeperen\nkeperflanel\nkepie\nkeppel\nkeramiek\nkeramisch\nkeramist\nkeramiste\nkeratine\nkeratitis\nkerel\nkereltje\nkeren\nkerf\nkerfbank\nkerfbijl\nkerfmes\nkerfstok\nkering\nkerk\nkerkasiel\nkerkbaljuw\nkerkban\nkerkbank\nkerkbelasting\nkerkbestuur\nkerkbezoek\nkerkbijbel\nkerkblad\nkerkbode\nkerkboek\nkerkbord\nkerkbouw\nkerkcentrum\nkerkcultuur\nkerkdag\nkerkdak\nkerkdeur\nkerkdief\nkerkdienaar\nkerkdienst\nkerkdorp\nkerkelijk\nkerkelijke\nkerkelijken\nkerkelijkheid\nkerken\nkerkenraad\nkerkenwerk\nkerkenzakje\nkerker\nkerkeren\nkerkerhol\nkerkering\nkerkerkot\nkerkerlucht\nkerkerstraf\nkerkfabriek\nkerkfusie\nkerkgang\nkerkganger\nkerkgangster\nkerkgebondenen\nkerkgebouw\nkerkgemeenschap\nkerkgemeente\nkerkgenootschap\nkerkgeschiedenis\nkerkgewaad\nkerkgezang\nkerkgoed\nkerkgoederen\nkerkgrenzen\nkerkhervormer\nkerkhervorming\nkerkhistoricus\nkerkhistorie\nkerkhistorisch\nkerkhof\nkerkinterieur\nkerkjurist\nkerkklok\nkerkkoor\nkerkleer\nkerkleider\nkerkleraar\nkerklid\nkerklidmaatschap\nkerkmeester\nkerkmens\nkerkmusicus\nkerkmuur\nkerkmuziek\nkerknieuws\nkerkorde\nkerkorgel\nkerkpad\nkerkpatrones\nkerkpatroon\nkerkpilaar\nkerkplein\nkerkpolitiek\nkerkportaal\nkerkprovincie\nkerkraam\nkerkrat\nkerkrecht\nkerkrechtelijk\nkerkroof\nkerkruimte\nkerks\nkerkschat\nkerkschender\nkerkscheuring\nkerkschip\nkerksluiting\nkerkstijl\nkerkstoel\nkerkstructuur\nkerktaal\nkerktelefonie\nkerktelefoon\nkerktijd\nkerktoren\nkerkuil\nkerkvader\nkerkverband\nkerkvergadering\nkerkvervolging\nkerkvisitatie\nkerkvisitator\nkerkvloer\nkerkvolk\nkerkvoogd\nkerkvoogdij\nkerkvorst\nkerkweg\nkerkwet\nkerkwijding\nkerkzak\nkerkzakje\nkerkzang\nkerkzanger\nkerkzilver\nkermen\nkermes\nkermis\nkermisachtig\nkermisattractie\nkermisbaas\nkermisbed\nkermisbezoek\nkermisbier\nkermisdrukte\nkermisexploitant\nkermisfooi\nkermisgast\nkermisgeld\nkermisklant\nkermiskoek\nkermiskoers\nkermiskraam\nkermislief\nkermismolen\nkermispop\nkermissen\nkermissfeer\nkermisspel\nkermistent\nkermisterrein\nkermisvermaak\nkermisvogel\nkermisvolk\nkermisvrijer\nkermiswagen\nkermisweek\nkermiszanger\nkern\nkern-Europa\nkernaandrijving\nkernaanval\nkernachtig\nkernachtigheid\nkernactiviteit\nkernafval\nkernarsenaal\nkernbedrijf\nkernbegrip\nkernbeslissing\nkernbewapening\nkernblad\nkernbom\nkernboodschap\nkernbrandstof\nkerncentrale\nkerncompetentie\nkerndeel\nkerndeeltje\nkerndeling\nkerndepartement\nkerndoelgroep\nkernelement\nkernen\nkernenbeleid\nkernenergie\nkernenergiecentrale\nkernenergieprogramma\nkernenergiesector\nkernengeheugen\nkernexplosie\nkernfunctie\nkernfusie\nkernfysica\nkernfysicus\nkernfysisch\nkerngebied\nkerngedachte\nkerngegeven\nkerngeleerde\nkerngemeente\nkerngetal\nkerngezin\nkerngezond\nkerngroep\nkerngroepen\nkerngroeplid\nkernhout\nkernidee\nkernideeën\nkernindustrie\nkerninflatie\nkernkabinet\nkernkop\nkernkracht\nkernlading\nkernland\nkernlichaampje\nkernlid\nkernloos\nkernmacht\nkernmateriaal\nkernmogendheid\nkernnet\nkernonderzeeër\nkernonderzoek\nkernongeluk\nkernongeval\nkernontwapening\nkernoorlog\nkernploeg\nkernploeglid\nkernprobleem\nkernproef\nkernprogramma\nkernpunt\nkernraket\nkernramp\nkernreactie\nkernreactor\nkernredactie\nkernschaduw\nkernsmelting\nkernspinresonantie\nkernsplijting\nkernsplijtstof\nkernsplitsing\nkernspreuk\nkernstad\nkernstop\nkernstopverdrag\nkernstroom\nkernstuk\nkerntaak\nkerntakendiscussie\nkernteam\nkerntechniek\nkerntechnologie\nkerntemperatuur\nkernthema\nkerntransplantatie\nkerntransport\nkernvergadering\nkernvoorraad\nkernvraag\nkernvrij\nkernwapen\nkernwapenarsenaal\nkernwapenmogendheid\nkernwapenprogramma\nkernwapentechnologie\nkernwapenvrij\nkernwapenwedloop\nkernwoord\nkernzin\nkerosine\nkerosineprijs\nkerrie\nkerriepoeder\nkerriesaus\nkers\nkersappel\nkerselaar\nkerselaren\nkersen\nkersenbloei\nkersenbloesem\nkersenbomenhout\nkersenboom\nkersenbrandewijn\nkerseneter\nkersenhout\nkersenhouten\nkersenjam\nkersenmand\nkersenpit\nkersenpluk\nkersenrood\nkersentaart\nkersentijd\nkersentuin\nkersenvla\nkersouw\nkerspel\nkersrood\nkerst\nkerst-cd\nkerstavond\nkerstbal\nkerstbestand\nkerstblok\nkerstboek\nkerstbonus\nkerstboodschap\nkerstboom\nkerstboomverlichting\nkerstboter\nkerstbrood\nkerstcadeau\nkerstcircus\nkerstconcert\nkerstdag\nkerstdienst\nkerstdiner\nkerstdis\nkerstdrukte\nkerstekind\nkerstenen\nkerstening\nkerstevangelie\nkerstfeest\nkerstfilm\nkerstgedachte\nkerstgeschenk\nkerstgevoel\nkerstgezang\nkerstgratificatie\nkersthit\nkerstinkopen\nkerstkaart\nkerstkalkoen\nkerstkind\nkerstklok\nkerstkrans\nkerstkransje\nkerstkribbe\nkerstlied\nkerstmaal\nkerstmarkt\nkerstmenu\nkerstmis\nkerstmusical\nkerstmuts\nkerstmuziek\nkerstnacht\nkerstnachtdienst\nkerstnachtmis\nkerstnummer\nkerstochtend\nkerstoffensief\nkerstomaat\nkerstomzet\nkerstoratorium\nkerstpakket\nkerstperiode\nkerstpost\nkerstpot\nkerstpreek\nkerstreces\nkerstrede\nkerstroos\nkerstsfeer\nkerstshow\nkerstspel\nkerststaaf\nkerststal\nkerststemming\nkerstster\nkerststol\nkerststronk\nkerststukje\nkersttafel\nkerstthema\nkersttijd\nkersttoernooi\nkersttoespraak\nkerstvakantie\nkerstverhaal\nkerstverlichting\nkerstverlof\nkerstversiering\nkerstvertelling\nkerstviering\nkerstweek\nkerstweekeinde\nkerstwens\nkerstzang\nkersvers\nkervel\nkervelsoep\nkerven\nkerving\nkesp\nketamine\nketchup\nketel\nketelaar\nketelbikker\nketelbink\nketelbinkie\nketelboeter\nketelbouw\nketelbouwer\nketeldal\nketelhuis\nketelinstallatie\nketelkoek\nketellapper\nketelmuziek\nketelruim\nketelsteen\nketeltrom\nketen\nketenaansprakelijkheid\nketenbeheer\nketenbeheersing\nketenbewaking\nketendicht\nketenen\nketengebergte\nketenkaart\nketenvorming\nketjap\nketje\nketoembar\nkets\nketsen\nketter\nketteren\nkettergericht\nketterij\nketterjacht\nketterjager\nketters\nkettervervolging\nketting\nkettingbak\nkettingbakken\nkettingbeding\nkettingbotsing\nkettingbreuk\nkettingbreukontwikkeling\nkettingbrief\nkettingbrug\nkettingdraad\nkettingformulier\nkettingganger\nkettinggaren\nkettinghandel\nkettinghond\nkettingkast\nkettingkogel\nkettingloos\nkettingmechanisme\nkettingmolen\nkettingpapier\nkettingrad\nkettingreactie\nkettingregel\nkettingrijm\nkettingroken\nkettingroker\nkettingrookster\nkettingslot\nkettingspanner\nkettingsteek\nkettingstopper\nkettingzaag\nkettingzijde\nkettingzin\nkettingzinnen\nkeu\nkeuken\nkeukenafval\nkeukenapparaat\nkeukenapparatuur\nkeukenassistent\nkeukenassistente\nkeukenbenodigdheden\nkeukenblok\nkeukenchef\nkeukendeur\nkeukendoek\nkeukenfornuis\nkeukengeheim\nkeukengereedschap\nkeukengerei\nkeukengerief\nkeukenhanddoek\nkeukenhulp\nkeukeninrichting\nkeukeninventaris\nkeukenkast\nkeukenkastje\nkeukenla\nkeukenlamp\nkeukenlatijn\nkeukenmachine\nkeukenmeester\nkeukenmeid\nkeukenmeidenroman\nkeukenmes\nkeukenmixer\nkeukenmuur\nkeukenpapier\nkeukenpersoneel\nkeukenpiet\nkeukenplank\nkeukenprins\nkeukenprinses\nkeukenraam\nkeukenrol\nkeukenschort\nkeukenstoel\nkeukenstroop\nkeukentafel\nkeukentje\nkeukentrap\nkeukenuitrusting\nkeukenvloer\nkeukenwagen\nkeukenwerk\nkeukenzout\nkeulenaar\nkeur\nkeurbende\nkeurboek\nkeurcollectie\nkeurder\nkeuren\nkeurgroep\nkeurig\nkeurigheid\nkeurijzer\nkeuring\nkeuringsarts\nkeuringsbureau\nkeuringscommissie\nkeuringscriterium\nkeuringsdienst\nkeuringseis\nkeuringsinstantie\nkeuringsinstituut\nkeuringskarakteristiek\nkeuringskosten\nkeuringsopdracht\nkeuringspraktijk\nkeuringsrapport\nkeuringsregister\nkeuringsstation\nkeuringssysteem\nkeurkamer\nkeurkorps\nkeurling\nkeurmeester\nkeurmerk\nkeurprins\nkeurs\nkeurslager\nkeurslijf\nkeursoldaat\nkeurteken\nkeurtroepen\nkeurvorst\nkeurvorstelijk\nkeurvorstendom\nkeurvorstin\nkeus\nkeut\nkeutel\nkeutelaar\nkeutelachtig\nkeutelarij\nkeutelen\nkeutelig\nkeuteljacht\nkeuter\nkeuterboer\nkeuterij\nkeuvel\nkeuvelaar\nkeuvelarij\nkeuvelen\nkeuze\nkeuze-element\nkeuze-uur\nkeuzeaanbod\nkeuzecommissie\nkeuzedividend\nkeuzegids\nkeuzeheer\nkeuzelijst\nkeuzemenu\nkeuzemogelijkheid\nkeuzen\nkeuzepakket\nkeuzeprobleem\nkeuzeproces\nkeuzeruimte\nkeuzes\nkeuzeschakelaar\nkeuzevak\nkeuzevakje\nkeuzevraag\nkeuzevragen\nkeuzevrijheid\nkeuzewerktijd\nkevel\nkevels\nkeven\nkever\nkeveren\nkeverlarf\nkeverlarve\nkevertje\nkevie\nkevlar\nkeyboard\nkeycard\nkeynesiaan\nkeynesiaans\nkezen\nkg\nki\nkibbelaar\nkibbelarij\nkibbelen\nkibbeling\nkibbelpartij\nkibbels\nkibbelzucht\nkibboets\nkibboetsnik\nkick\nkickboksen\nkickbokser\nkicken\nkid\nkidde\nkidnappen\nkidnapper\nkidnapping\nkidneyboon\nkief\nkiek\nkiekeboe\nkieken\nkiekenborst\nkiekendief\nkiekenfretter\nkiekenvlees\nkiekje\nkiektoestel\nkiel\nkielbalk\nkielekiele\nkielen\nkielhalen\nkieljacht\nkielspit\nkielspitten\nkielvlak\nkielwater\nkielzog\nkiem\nkiembaangentherapie\nkiemblaadje\nkiemcel\nkiemen\nkiemgetal\nkiemgroente\nkiemgroenten\nkieming\nkiemkracht\nkiemkrachtig\nkiemplasma\nkiemschijf\nkiemtemperatuur\nkiemvorming\nkiemvrij\nkiemwit\nkien\nkienavond\nkienavonden\nkienen\nkienhout\nkienkaart\nkienspaan\nkienspel\nkiep\nkiepauto\nkiepbak\nkiepen\nkieperen\nkiepkar\nkiepwagen\nkier\nkierafdichting\nkierdichtheid\nkierdichting\nkieren\nkierewiet\nkierstand\nkies\nkiesarrondissement\nkiesbaar\nkiesbaarheid\nkiesbevoegdheid\nkiesbrief\nkiesbureau\nkiescampagne\nkiescollege\nkiescommissie\nkiesdeler\nkiesdistrict\nkiesdrempel\nkiesgedrag\nkiesgerechtigd\nkiesgerechtigde\nkiesgroep\nkiesgroepen\nkiesgroepenstelsel\nkiesheid\nkieskanton\nkieskauw\nkieskauwen\nkieskauwer\nkieskeurig\nkieskeurigheid\nkieskring\nkieslijst\nkieslokaal\nkiesman\nkiesomschrijving\nkiespijn\nkiesplatform\nkiesplicht\nkiesquotiënt\nkiesraad\nkiesrecht\nkiesregister\nkiesschijf\nkiesstelsel\nkiesstrijd\nkiessysteem\nkiestoon\nkiesvereniging\nkiesvergadering\nkiesvolk\nkieswet\nkietelen\nkieuw\nkieuwdeksel\nkieuwen\nkieuwholte\nkieuwspleet\nkieviet\nkievietsbloem\nkievietsei\nkievietsnest\nkievit\nkieviten\nkievitsbloem\nkievitsei\nkiezel\nkiezelaarde\nkiezelachtig\nkiezelbed\nkiezelgesteente\nkiezelpad\nkiezelrand\nkiezelsteen\nkiezelstrand\nkiezelweg\nkiezelzand\nkiezelzuur\nkiezen\nkiezentrekker\nkiezer\nkiezeres\nkiezersaanhang\nkiezersbedrog\nkiezersgroep\nkiezersgunst\nkiezerskorps\nkiezerslijst\nkiezersmandaat\nkiezersmarkt\nkiezersonderzoek\nkiezerspotentieel\nkiezersregistratie\nkiezerstrouw\nkiezersuitspraak\nkiezersvolk\nkif\nkift\nkiften\nkijfachtig\nkijfster\nkijk\nkijk- en luistergeld\nkijk-in-de-pot\nkijkboek\nkijkbuis\nkijkcijfer\nkijkcijferkanon\nkijkcijfers\nkijkcijfersucces\nkijkdag\nkijkdichtheid\nkijkdoos\nkijkduin\nkijken\nkijker\nkijkersaantal\nkijkersmarkt\nkijkersonderzoek\nkijkerspubliek\nkijkgat\nkijkgedrag\nkijkgeld\nkijkgenot\nkijkglas\nkijkgraag\nkijkhoek\nkijkkast\nkijklustig\nkijkonderzoek\nkijkoperatie\nkijkplezier\nkijkpoort\nkijkrichting\nkijkspel\nkijkster\nkijktijd\nkijktoestel\nkijkuit\nkijkvenster\nkijkvergunning\nkijkwijzer\nkijkwoning\nkijven\nkijver\nkijvers\nkik\nkikken\nkikker\nkikkerbad\nkikkerbil\nkikkerbilletje\nkikkerdril\nkikkeren\nkikkererwt\nkikkerhart\nkikkerland\nkikkerpoel\nkikkerrit\nkikkertje\nkikkervisje\nkikvors\nkikvorsachtig\nkikvorsman\nkil\nkilheid\nkilkoud\nkille\nkillen\nkiller\nkillersinstinct\nkillersmentaliteit\nkillig\nkilo\nkilo-ohm\nkilobit\nkilobyte\nkilocalorie\nkilogram\nkilogrammeter\nkilohertz\nkilojoule\nkiloliter\nkilometer\nkilometeradministratie\nkilometerheffing\nkilometerkosten\nkilometerpaal\nkilometerprijs\nkilometerpunt\nkilometerraai\nkilometerslang\nkilometerstand\nkilometertarief\nkilometerteller\nkilometervergoeding\nkilometervreter\nkilometerzone\nkilometrage\nkiloprijs\nkiloton\nkiloverpakking\nkilovolt\nkilowatt\nkilowattuur\nkilt\nkilte\nkim\nkimduiking\nkimkiel\nkimme\nkimmen\nkimono\nkin\nkina\nkinabast\nkinaboom\nkinacultuur\nkinase\nkinawijn\nkinband\nkind\nkindeke\nkindeken\nkinderachtig\nkinderachtigheid\nkinderadoptie\nkinderafdeling\nkinderaftrek\nkinderalimentatie\nkinderangst\nkinderanimatie\nkinderarbeid\nkinderartikel\nkinderarts\nkinderbad\nkinderbal\nkinderbalk\nkinderbed\nkinderbedtijd\nkinderbescherming\nkinderbeul\nkinderbewaarplaats\nkinderbijbel\nkinderbijslag\nkinderbijslagpremie\nkinderbijslagregeling\nkinderbijslaguitkering\nkinderbijslagwet\nkinderboek\nkinderboekenauteur\nkinderboekenschrijfster\nkinderboekenschrijver\nkinderboekenserie\nkinderboekenweekgeschenk\nkinderboerderij\nkinderburcht\nkindercentrum\nkindercollectie\nkinderconcert\nkindercrèche\nkinderdag\nkinderdagopvang\nkinderdagverblijf\nkinderdichter\nkinderdisco\nkinderdoek\nkinderdokter\nkinderdoop\nkinderdorp\nkinderdroom\nkinderen\nkinderendag\nkinderfantasie\nkinderfeest\nkinderfiets\nkinderfilm\nkinderfilmfestival\nkinderfysiotherapeut\nkindergek\nkindergeld\nkindergeneeskunde\nkindergezicht\nkindergoed\nkinderhand\nkinderhandel\nkinderhart\nkinderhartcentrum\nkinderhoek\nkinderhoofd\nkinderhoofdje\nkinderhuis\nkinderhulporganisatie\nkinderhuwelijk\nkinderjaren\nkinderjuf\nkinderjuffrouw\nkinderjury\nkinderkaart\nkinderkaartje\nkinderkamer\nkinderkanker\nkinderkerk\nkinderkleding\nkinderkleren\nkinderkliniek\nkinderkolonie\nkinderkoor\nkinderkopje\nkinderkorting\nkinderkost\nkinderkrant\nkinderkrib\nkinderledikant\nkinderledikantje\nkinderleed\nkinderleeftijd\nkinderleven\nkinderlichaam\nkinderlied\nkinderliefde\nkinderlijk\nkinderlijkheid\nkinderlijn\nkinderliteratuur\nkinderlokker\nkinderloos\nkinderloosheid\nkindermaaltijd\nkindermaat\nkindermarkt\nkindermeel\nkindermeid\nkindermeisje\nkindermenu\nkindermiddag\nkindermisbruik\nkindermishandeling\nkindermode\nkindermond\nkindermoord\nkindermoordenaar\nkindermuseum\nkindermusical\nkinderneuroloog\nkindernevendienst\nkinderogen\nkinderombudsman\nkinderoncologie\nkinderoppas\nkinderoptocht\nkinderopvang\nkinderopvangcentrum\nkinderpagina\nkinderpartijtje\nkinderplaag\nkinderpokken\nkinderpoli\nkinderpolitie\nkinderporno\nkinderpornografie\nkinderpornonetwerk\nkinderpornozaak\nkinderportret\nkinderpostzegel\nkinderpraat\nkinderprogramma\nkinderprostitutie\nkinderpsychiater\nkinderpsychiatrie\nkinderpsychiatrisch\nkinderpsychologe\nkinderpsychologie\nkinderrecht\nkinderrechtenfestival\nkinderrechter\nkinderreclame\nkinderrijk\nkinderrijmpje\nkinderroof\nkinderschaar\nkinderschare\nkinderschenders\nkinderschoen\nkinderschoenen\nkindersekstoerisme\nkinderserie\nkindershow\nkinderslavernij\nkinderslot\nkindersmokkel\nkinderspeelgoed\nkinderspeelplaats\nkinderspel\nkindersprookje\nkinderspul\nkinderstem\nkindersterfte\nkinderstoel\nkindertaal\nkindertal\nkindertehuis\nkindertekening\nkindertelefoon\nkindertelevisie\nkindertheater\nkindertherapie\nkindertijd\nkindertoelage\nkindertoeslag\nkindertop\nkindertrauma\nkindertuigje\nkindertuin\nkinderuitspraak\nkinderuurtje\nkindervakantiewerk\nkinderverhaal\nkinderverkrachter\nkinderverkrachting\nkinderverlamming\nkinderversje\nkinderverzorging\nkinderverzorgster\nkindervideo\nkindervoeding\nkindervoorstelling\nkindervriend\nkinderwagen\nkinderwelzijn\nkinderwens\nkinderwereld\nkinderwerk\nkinderwet\nkinderwetten\nkinderwijsje\nkinderwoord\nkinderzaal\nkinderzegel\nkinderzegen\nkinderzender\nkinderziekenhuis\nkinderziekte\nkinderziel\nkinderzin\nkinderzitje\nkinderzorg\nkindgericht\nkindlief\nkindplaats\nkindplaatsen\nkinds\nkinds zijn\nkindsbeen\nkindsdeel\nkindsgedeelte\nkindsheid\nkindskind\nkindskinderen\nkindskorf\nkindsoldaat\nkindsterretje\nkindveilig\nkindvriendelijk\nkindvriendelijkheid\nkindvrouwtje\nkindzorg\nkine\nkineast\nkinegram\nkinema\nkinematograaf\nkinematografie\nkinesist\nkinesitherapeut\nkinesitherapie\nkinesthetisch\nkinetica\nkinetisch\nkingsize\nkinine\nkininepoeder\nkink\nkinkel\nkinken\nkinketting\nkinkhoest\nkinkhoestvaccin\nkinkhoorn\nkinkhoren\nkinky\nkinnebak\nkinnesinne\nkinnetje\nkiosk\nkip\nkipbouillon\nkipfilet\nkipgerecht\nkipkap\nkiplekker\nkippen\nkippenbedrijf\nkippenboer\nkippenboerderij\nkippenborst\nkippenbouillon\nkippenbout\nkippenboutje\nkippencrisis\nkippendief\nkippendrift\nkippenei\nkippeneindje\nkippenfokkerij\nkippengaas\nkippenhok\nkippenhouder\nkippenhouderij\nkippenkoorts\nkippenkuur\nkippenladder\nkippenlever\nkippenloop\nkippenmest\nkippenpastei\nkippenpasteitje\nkippenpoot\nkippenren\nkippensoep\nkippenstap\nkippenvel\nkippenvet\nkippenvlees\nkippenvoer\nkipper\nkippetje\nkippetjeskermis\nkippig\nkippigheid\nkipsaté\nkipschnitzel\nkipsel\nkir\nkirren\nkirsch\nkiskassen\nkissebissen\nkissen\nkist\nkistdam\nkisten\nkistenhout\nkistenmaker\nkisting\nkistje\nkistkalf\nkistwerk\nkit\nkitchenette\nkiteboard\nkitesurfen\nkitmiddel\nkits\nkitsch\nkitscherig\nkitsen\nkittelaar\nkittelachtig\nkittelen\nkittelig\nkitteling\nkittelorig\nkittelorigheid\nkitten\nkittig\nkiwi\nklaaf\nklaagdicht\nklaaghuis\nklaaglied\nklaaglijk\nklaagpsalm\nklaagschrift\nklaagstem\nklaagster\nklaagtoon\nklaagvrouw\nklaagvrouwen\nklaagzang\nklaar\nklaar-over\nklaarblijkelijk\nklaarblijkelijkheid\nklaarhebben\nklaarheid\nklaarkomen\nklaarkrijgen\nklaarleggen\nklaarlicht\nklaarliggen\nklaarmaken\nklaarsel\nklaarspelen\nklaarstaan\nklaarstomen\nklaarte\nklaarwakker\nklaarzetten\nklaarziend\nklaarzitten\nklaas\nklabak\nklabetteren\nklacht\nklachtdelict\nklachtenafhandeling\nklachtenbehandeling\nklachtenboek\nklachtenbrief\nklachtenbureau\nklachtenbus\nklachtencommissie\nklachtenformulier\nklachtenfunctionaris\nklachtengeld\nklachteninstantie\nklachteninstituut\nklachtenlijn\nklachtenlijst\nklachtenloket\nklachtennummer\nklachtenopvang\nklachtenpatroon\nklachtenprocedure\nklachtenregeling\nklachtenregen\nklachtenstroom\nklachtentelefoon\nklachtenvrij\nklachtomschrijving\nklachtrecht\nklachtvereiste\nklad\nkladblaadje\nkladblok\nkladblokvel\nkladboek\nkladbrief\nkladden\nkladderaar\nkladderen\nkladderig\nkladderij\nkladje\nkladpapier\nkladpapiertje\nkladschilder\nkladschilderen\nkladschrift\nkladschrijver\nkladversie\nkladwerk\nklagelijk\nklagen\nklager\nklagerig\nklak\nklakhoed\nklakkebus\nklakkeloos\nklakken\nklam\nklamaai\nklamaai-ijzer\nklamboe\nklamheid\nklammig\nklamp\nklampen\nklamper\nklamplat\nklampsteen\nklandizie\nklank\nklankanalyse\nklankassociatie\nklankbeeld\nklankbodem\nklankbord\nklankbordgroep\nklankdemper\nklanken\nklankenbord\nklankexpressie\nklankfilm\nklankkast\nklankkleur\nklankleer\nklankloos\nklanknabootsend\nklanknabootsing\nklankreeks\nklankregisseur\nklankrijk\nklankschildering\nklankschrift\nklankspectrum\nklankstelsel\nklankstructuur\nklankverandering\nklankverschuiving\nklankvoet\nklankvolume\nklankwaarde\nklankwereld\nklankwet\nklankwettig\nklankwijziging\nklankwisseling\nklant\nklantcode\nklantcodes\nklantenaantal\nklantenanalyse\nklantenbasis\nklantenbenadering\nklantenbestand\nklantenbinding\nklantencontact\nklantendienst\nklantengroep\nklantenkaart\nklantenkring\nklantenonderzoek\nklantenonderzoeken\nklantenpas\nklantenportefeuille\nklantenraad\nklantenservice\nklantenstroom\nklantentevredenheid\nklantentrekker\nklantentrouw\nklantenverlies\nklantenvragen\nklantenwerver\nklantenwerving\nklantgericht\nklantgerichtheid\nklantinformatie\nklantkenmerk\nklantkenmerken\nklantnummer\nklantonvriendelijk\nklantspecifieke\nklanttevredenheid\nklantvriendelijk\nklantvriendelijkheid\nklap\nklapachtig\nklapbaar\nklapband\nklapbank\nklapbes\nklapbessenstruik\nklapbrug\nklapbus\nklapdeksel\nklapdeur\nklapekster\nklaphek\nklaphout\nklapkauwgom\nklaplong\nklaploopster\nklaplopen\nklaploper\nklaploperij\nklapmechanisme\nklapmuts\nklappei\nklappeien\nklappen\nklapper\nklapperboom\nklapperdop\nklapperen\nklapperkruid\nklapperman\nklappermelk\nklappernoot\nklapperolie\nklapperpistool\nklapperrat\nklappertanden\nklappertje\nklappertuin\nklapraam\nklaproos\nklapschaats\nklapsigaar\nklapstoel\nklapstuk\nklaptafel\nklapvee\nklapwieken\nklapzitting\nklapzoen\nklare\nklaren\nklarigheid\nklarinet\nklarinettist\nklaring\nklaroen\nklaroenblazer\nklaroenen\nklaroengeschal\nklaroenstoot\nklas\nklasbak\nklasboek\nklasgenoot\nklasgenote\nklaslokaal\nklasonderwijzer\nklasse\nklasseloos\nklassement\nklassementsaanvoerder\nklassementsleider\nklassementsproef\nklassementsrenner\nklassementsrijder\nklassen\nklassenagenda\nklassenavond\nklassenbelang\nklassenbewust\nklassenbewustzijn\nklassenboek\nklassendeler\nklassendictatuur\nklassenfeest\nklassenfoto\nklassengeest\nklassengrootte\nklassenhaat\nklassenindeling\nklassenjustitie\nklassenleraar\nklassenlokaal\nklassenmaatschappij\nklassenonderwijzer\nklassenorganisatie\nklassenpositie\nklassenraad\nklassenstrijd\nklassentegenstelling\nklassenverkleining\nklassenverschil\nklassenvertegenwoordiger\nklassenvertegenwoordigster\nklassenvijand\nklasseren\nklassering\nklassespeler\nklassiaan\nklassiek\nklassiek-romantisch\nklassieken\nklassieker\nklassiekerkoning\nklassikaal\nklastitularis\nklaterabeel\nklateren\nklatergoud\nklats\nklauteraar\nklauteren\nklauterpaal\nklauterpartij\nklauterwerk\nklauw\nklauwaard\nklauwaards\nklauwachtig\nklauwachtige\nklauwen\nklauwer\nklauwhamer\nklauwhand\nklauwier\nklauwijzer\nklauwplaat\nklauwstuk\nklauwvormig\nklauwzeer\nklauwzeerepidemie\nklauwzeervirus\nklavarskribomethode\nklavechord\nklavecimbel\nklavecinist\nklaveciniste\nklaver\nklaveraas\nklaveracht\nklaverblad\nklaverbloem\nklaverboer\nklaverbouw\nklaveren\nklaverendrie\nklavergewas\nklaverhonig\nklaverhoning\nklaverhooi\nklaverjassen\nklaverjasser\nklaverjastoernooi\nklaverjastoernooien\nklaverrijk\nklavertje\nklavertjevier\nklaverveld\nklavervier\nklaverwei\nklaverzuring\nklavichord\nklavier\nklavieren\nklavierinstrument\nklavierspeelster\nklavierspeler\nkledder\nkledderen\nkledderig\nkleddernat\nkleden\nklederdracht\nklederen\nkledij\nkleding\nkledingbedrijf\nkledingbranche\nkledingcode\nkledingcollectie\nkledingfabrikant\nkledinggeld\nkledinghaak\nkledinghaken\nkledinghandel\nkledingindustrie\nkledinginzameling\nkledingkast\nkledingketen\nkledingketens\nkledingkeuze\nkledinglijn\nkledingmagazijn\nkledingmerk\nkledingontwerper\nkledingpakket\nkledingproducent\nkledingsector\nkledingstijl\nkledingstuk\nkledingtoelage\nkledingverhuur\nkledingverkoop\nkledingverkoper\nkledingvoorschrift\nkledingwinkel\nkledingzaak\nkleed\nkleedcabine\nkleedgeld\nkleedhok\nkleedhokje\nkleedkamer\nkleedlokaal\nkleedruimte\nkleedsel\nkleedster\nkleef\nkleefband\nkleefgaren\nkleefkracht\nkleefkruid\nkleefmiddel\nkleefpasta\nkleefpleister\nkleefstof\nkleerborstel\nkleerhaak\nkleerhanger\nkleerkast\nkleerkist\nkleerkoop\nkleerkoper\nkleerluis\nkleermaakster\nkleermaken\nkleermaker\nkleermakerij\nkleermakerswinkel\nkleermakerszit\nkleermot\nkleerscheuren\nkleertjes\nkleerwinkel\nklef\nklefferig\nkleffig\nklefheid\nklei\nkleiaardappel\nkleiaarde\nkleiachtig\nkleiboer\nkleideeltje\nkleidelven\nkleiduif\nkleiduivenschieten\nkleiduivenschutter\nkleien\nkleigebied\nkleigroeve\nkleigrond\nkleiig\nkleikist\nkleilaag\nkleiland\nklein\nklein houden\nkleinbedrijf\nkleinbeeldcamera\nkleinbehuisd\nkleinbloemig\nkleinburger\nkleinburgerlijk\nkleinburgerlijkheid\nkleindochter\nkleinduimpje\nkleine\nkleinen\nkleineren\nkleinering\nkleingeestig\nkleingeestigheid\nkleingeld\nkleingelovig\nkleingelovige\nkleingelovigheid\nkleingoed\nkleinhandel\nkleinhandelaar\nkleinhandelsprijs\nkleinhartig\nkleinhartigheid\nkleinheid\nkleinigheid\nkleinindustrie\nkleinkind\nkleinkrijgen\nkleinkunst\nkleinkunstacademie\nkleinkunstenaar\nkleinmaken\nkleinmenselijk\nkleinmetaal\nkleinmoedig\nkleinmoedigheid\nkleinneef\nkleinnicht\nkleinood\nkleinschalig\nkleinschaligheid\nkleinschaligheidstoeslag\nkleinschrift\nkleinseminarie\nkleinsnijden\nkleinstedeling\nkleinsteeds\nkleinsteedsheid\nkleinte\nkleintje\nkleintjes\nkleinvee\nkleinverbruik\nkleinverbruiker\nkleinverbruikersheffing\nkleinwild\nkleinzen\nkleinzerig\nkleinzerigheid\nkleinzielig\nkleinzieligheid\nkleinzoon\nkleipolder\nkleiput\nkleischalie\nkleisoort\nkleistreek\nkleitablet\nkleiweg\nkleiwinning\nklem\nklemband\nklembeugel\nklemblaar\nklembord\nklembus\nklembussen\nklemhaak\nklemmap\nklemmen\nklemmend\nklemmenkast\nklemmenstroken\nklemmenstrook\nklemming\nklemrijden\nklemschroef\nklemschroevendraaier\nklemspanning\nklemtoon\nklemtoonteken\nklemvast\nklemverbinding\nklemzetten\nklep\nklepafsluiter\nklepbroek\nklepbrug\nklepdeur\nklepel\nklepelen\nklephoorn\nklepmand\nkleppen\nkleppendeksel\nklepper\nklepperen\nklepperman\nkleppermolen\nkleppertje\nkleppet\nkleptocratie\nkleptofobie\nkleptomaan\nkleptomanie\nklerelijer\nkleren\nklerenborstel\nklerenhaak\nklerenhanger\nklerenkast\nklerenkoop\nklerenkoper\nklerenstandaard\nklerenwinkel\nklerenzaak\nklerewijf\nklerezooi\nklerikaal\nklerikalisme\nklerk\nklerkambt\nklerkenwerk\nklessebes\nklessebessen\nklets\nkletsbui\nkletscollege\nkletsen\nkletser\nkletserig\nkletserij\nkletskoek\nkletskop\nkletskous\nkletsmajoor\nkletsmeier\nkletsnat\nkletsoor\nkletspraat\nkletspraatje\nkletstafel\nkletstante\nkletsverhaal\nkletteraar\nkletteren\nkleumen\nkleumer\nkleumerig\nkleums\nkleun\nkleunen\nkleur\nkleuraanpassing\nkleuraccent\nkleuradaptatie\nkleuradvies\nkleurbad\nkleurbalans\nkleurbepaling\nkleurboek\nkleurbreking\nkleurcode\nkleurcodering\nkleurcombinatie\nkleurcontrast\nkleurcorrectie\nkleurdoos\nkleurecht\nkleuren\nkleuren-tv\nkleurenadvertentie\nkleurenadviseur\nkleurenadviseuse\nkleurenafdruk\nkleurenbeeld\nkleurenbeeldscherm\nkleurenbijlage\nkleurenblind\nkleurenblindheid\nkleurenbuis\nkleurencirkel\nkleurencombinatie\nkleurencontrast\nkleurendia\nkleurendruk\nkleurenfilm\nkleurenfilter\nkleurenfolder\nkleurenfoto\nkleurenfotografie\nkleurengamma\nkleurenharmonie\nkleureninstelling\nkleurenkaart\nkleurenkopie\nkleurenleer\nkleurenlitho\nkleurenmagazine\nkleurenmonitor\nkleurennegatief\nkleurenontvanger\nkleurenopname\nkleurenpalet\nkleurenpracht\nkleurenprint\nkleurenprinter\nkleurenproef\nkleurenreproductie\nkleurenrijkdom\nkleurenscala\nkleurenschema\nkleurenscherm\nkleurenschijf\nkleurenspectrum\nkleurenspel\nkleurensymboliek\nkleurentekening\nkleurentelevisie\nkleurentoestel\nkleurenverloop\nkleurenweelde\nkleurfilter\nkleurgebruik\nkleurgevoel\nkleurgevoelig\nkleurgewaarwording\nkleurgradering\nkleurhoudend\nkleurig\nkleurigheid\nkleurindex\nkleurindruk\nkleuring\nkleurinstelling\nkleurintensiteit\nkleurkaart\nkleurkeuze\nkleurkrijt\nkleurling\nkleurlinge\nkleurlingengemeenschap\nkleurloos\nkleurloosheid\nkleurmenging\nkleurmiddel\nkleurmonster\nkleurnuance\nkleurpatroon\nkleurplaat\nkleurpotlood\nkleurpotloodtekening\nkleurrijk\nkleurschakering\nkleurschifting\nkleursel\nkleurshampoo\nkleurspoeling\nkleurstelling\nkleurstof\nkleurtemperatuur\nkleurtje\nkleurvariëteit\nkleurvast\nkleurverandering\nkleurverschil\nkleurvlak\nkleurwedstrijd\nkleurwerking\nkleurwisseling\nkleuter\nkleuterbad\nkleuterboekje\nkleuterboekjes\nkleuterdagverblijf\nkleuteren\nkleutergroep\nkleutergym\nkleuterjaren\nkleuterklas\nkleuterkweekschool\nkleuterleeftijd\nkleuterleidster\nkleutermaaltijd\nkleuteronderwijs\nkleuterperiode\nkleuterschool\nkleuterserie\nkleutertijd\nkleutertuin\nkleutervoeding\nkleven\nklever\nkleverig\nkleverigheid\nklewang\nklezmer\nklieder\nkliederboel\nkliederen\nkliederig\nkliefbeitel\nkliefhamer\nkliek\nklieken\nkliekenmaal\nkliekgeest\nkliekje\nkliekjesdag\nkliekvorming\nklier\nklierachtig\nklieren\nkliergezwel\nklierig\nklierkoorts\nklierontsteking\nkliervormig\nklierweefsel\nklierziekte\nklieven\nklif\nklik\nklikfonds\nklikken\nklikker\nklikklakken\nkliklijn\nklikspaan\nklikster\nklim\nklimaat\nklimaatakkoord\nklimaatbeheersing\nklimaatbeheersingssysteem\nklimaatbeleid\nklimaatcommissie\nklimaatconferentie\nklimaatgordel\nklimaatkamer\nklimaatnota\nklimaatonderzoek\nklimaatoverleg\nklimaatprobleem\nklimaatregelaar\nklimaatregeling\nklimaatschieten\nklimaatschommeling\nklimaatsverandering\nklimaatsysteem\nklimaattop\nklimaatverandering\nklimaatverdrag\nklimaatzone\nklimatologie\nklimatologisch\nklimatoloog\nklimbaars\nklimbonen\nklimboom\nklimboon\nklimgeit\nklimgordel\nklimhaak\nklimhal\nklimijzer\nklimkoord\nklimmast\nklimmen\nklimmer\nklimming\nklimnet\nklimoefening\nklimop\nklimopblad\nklimpaal\nklimpartij\nklimplant\nklimrek\nklimroos\nklimrots\nklimschoen\nklimspoor\nklimsport\nklimstok\nklimtalent\nklimtijdrit\nklimtocht\nklimtol\nklimtouw\nklimtrede\nklimtreden\nklimvogel\nklimwand\nklimwerk\nkling\nklingelen\nklingeling\nkliniek\nklinimobiel\nklinisch\nklinisch-wetenschappelijk\nklink\nklinkaard\nklinkbout\nklinkdicht\nklinken\nklinker\nklinkerbestrating\nklinkerbotsing\nklinkerpad\nklinkerrijm\nklinkersteen\nklinkerweg\nklinkerwisseling\nklinket\nklinkhamer\nklinkklaar\nklinkklank\nklinknaad\nklinknagel\nklinksnoer\nklinkwerk\nklip\nklip-en-klaar\nklipdas\nklipgeit\nklippenkust\nklipper\nklipsteen\nklipvis\nklipzout\nklipzwaluw\nklis\nkliskruid\nklissen\nklisteerspuit\nklister\nklisteren\nklit\nklitten\nklittenband\nklodde\nklodder\nklodderaar\nklodderen\nkloef\nkloek\nkloeken\nkloekhartig\nkloekheid\nkloekmoedig\nkloekmoedigheid\nkloekzinnig\nkloekzinnigheid\nkloet\nkloeten\nkloffie\nklojo\nklok\nklok-en-hamerspel\nklokbeker\nklokbekercultuur\nklokbloem\nklokbloemig\nklokgaaf\nklokgave\nklokgebeier\nklokgelui\nklokgevel\nklokhen\nklokhuis\nklokje\nklokjesachtig\nklokjesgentiaan\nklokkaart\nklokke\nklokken\nklokkengalg\nklokkengieter\nklokkengieterij\nklokkenist\nklokkenkast\nklokkenluider\nklokkenmaker\nklokkenspel\nklokkenspeler\nklokkenstoel\nklokkentoren\nklokkentouw\nklokkijken\nklokluider\nklokradio\nklokrok\nklokrokken\nkloksein\nklokslag\nklokslot\nkloksnelheid\nklokspijs\nklokuur\nklokvast\nklokvorm\nklokvormig\nklokwinde\nklokzeel\nklom\nklomp\nklompenbal\nklompendans\nklompenmaker\nklompenmakerij\nklompenschool\nklompenvolk\nklomplaars\nklompschoen\nklompvis\nklompvoet\nklompvoetje\nklompvormig\nklonen\nkloneren\nklonering\nklonk\nklont\nklonter\nklonteren\nklonterig\nklontering\nklontje\nklontjessuiker\nkloof\nkloofbijl\nkloofhamer\nkloofhout\nkloofmes\nkloofvlak\nklooi\nklooien\nkloon\nklooster\nkloosterachtig\nkloosterbibliotheek\nkloosterbier\nkloosterboek\nkloosterbroeder\nkloostercel\nkloostercomplex\nkloostergang\nkloostergebouw\nkloostergelofte\nkloostergemeenschap\nkloostergemeente\nkloostergewaad\nkloostergoed\nkloostergoederen\nkloosterhuis\nkloosterkapel\nkloosterkerk\nkloosterkleed\nkloosterkleren\nkloosterleven\nkloosterlijk\nkloosterling\nkloosterlinge\nkloostermoeder\nkloostermop\nkloostermuur\nkloosternaam\nkloosteromgeving\nkloosterorde\nkloosteroverste\nkloosterpoort\nkloosterregel\nkloosterroeping\nkloosterschool\nkloostertucht\nkloostertuin\nkloosterwet\nkloosterwezen\nkloosterzuster\nkloot\nkloothommel\nklootjesvolk\nklootschieten\nklootzak\nklop\nklopboor\nklopboormachine\nklopgeest\nklophamer\nklophengst\nklophout\nklopjacht\nklopje\nklopkever\nkloppartij\nkloppen\nklopper\nkloppertje\nklopping\nklopsignaal\nkloptor\nklopvast\nklopvastheid\nkloris\nklos\nkloskant\nklossen\nklote\nklotebaan\nklotefilm\nkloten\nkloterig\nkloterij\nklotsen\nklove\nkloven\nklovenier\nkloveniersdoelen\nklover\nkloving\nklucht\nkluchten\nkluchtig\nkluchtigheid\nkluchtspel\nkluft\nkluften\nkluif\nkluiffok\nkluifhout\nkluis\nkluisbeheerder\nkluisdeur\nkluisgat\nkluisruimte\nkluister\nkluisteren\nkluistering\nkluit\nkluitenbreker\nkluiterig\nkluitkalk\nkluiven\nkluiver\nkluiverboom\nkluizen\nkluizenaar\nkluizenaarsbestaan\nkluizenaarschap\nkluizenaarshut\nkluizenaarsleven\nkluizenaarster\nkluizencomplex\nklunen\nklungel\nklungelaar\nklungelaarster\nklungelen\nklungelig\nklungelwerk\nkluns\nklunzen\nklunzig\nkluppel\nkluppelen\nklus\nklusjesdienst\nklusjesman\nklussen\nklussenbureau\nklussendienst\nklussenman\nklussenmannen\nklusser\nkluts\nklutsei\nklutsen\nkluut\nkluwen\nkluwenachtige\nklysma\nkm\nkmo\nkmo'er\nkmo-markt\nkmo-zone\nknaagdier\nknaagkever\nknaagtand\nknaak\nknaap\nknaapje\nknabbelaar\nknabbelen\nknabbeltje\nknagen\nknaging\nknak\nknakken\nknakker\nknakworst\nknakworstjes\nknal\nknalbonbon\nknaldemper\nknaleffect\nknalfeest\nknalfuif\nknalgas\nknalgasvlam\nknalgeel\nknalhard\nknalkurk\nknalkwik\nknallen\nknaller\nknaloranje\nknalpot\nknalrood\nknalsein\nknalsignaal\nknalvuurwerk\nknap\nknapenkoor\nknapenleeftijd\nknapenliefde\nknapenvereniging\nknaphandig\nknapheid\nknapjes\nknapkers\nknapkoek\nknappen\nknapper\nknapperd\nknapperen\nknapperig\nknapzak\nknar\nknarpen\nknarsen\nknarsetanden\nknarsing\nknaster\nknauw\nknauwen\nknecht\nknechten\nknechtenrol\nknechting\nknechts\nknechtschap\nkneden\nkneder\nkneedbaar\nkneedbaarheid\nkneedbom\nkneedinstallatie\nkneedmachine\nkneep\nknekel\nknekelhuis\nknel\nknellen\nknelling\nknelpunt\nknelpuntenanalyse\nknelpuntennota\nknelpuntenpot\nknepen\nknerpen\nknetter\nknetteren\nknettergek\nknetterhard\nkneu\nkneukel\nkneukelen\nkneus\nkneuswond\nkneuter\nkneuteren\nkneuterig\nkneuterigheid\nkneuzen\nkneuzing\nknevel\nknevelaar\nknevelarij\nknevelbaard\nknevelen\nkneveling\nknevelwet\nknibbelaar\nknibbelarij\nknibbelen\nknickerbocker\nknie\nknieband\nkniebanden\nkniebeschermer\nknieblessure\nkniebocht\nknieboog\nkniebroek\nkniebuiging\nkniedicht\nkniediep\nkniegewricht\nknieholte\nkniehoog\nkniehoogte\nkniekap\nkniekous\nkniekwetsuur\nknielang\nknielap\nknielbank\nknielbankje\nknielbus\nknielen\nknieletsel\nknieling\nknielkussen\nknieoperatie\nkniepees\nkniepeesreflex\nknier\nkniereflex\nknieruimte\nknieschijf\nkniesoor\nkniestuk\nknietje\nknieval\nknieviool\nknievormig\nkniezen\nkniezer\nkniezerig\nkniezig\nknieën\nknijp\nknijpbril\nknijpen\nknijper\nknijperig\nknijpertje\nknijpfles\nknijpkat\nknijplamp\nknijprem\nknijptang\nknik\nknikkebenen\nknikkebollen\nknikken\nknikker\nknikkerbaan\nknikkeren\nknikkerspel\nknikkertijd\nknikkerzak\nknikstag\nknip\nknipbeugel\nknipbeurs\nknipbeurt\nknipbrood\nknipgaatje\nknipkaart\nknipkunst\nkniples\nknipmachine\nknipmes\nknipmessen\nknipmuts\nknipogen\nknipoog\nknippa\nknippatroon\nknippen\nknipper\nknipperbol\nknipperen\nknipperlicht\nknippers\nknipplaat\nknipschaar\nknipsel\nknipselalbum\nknipselarchief\nknipseldienst\nknipselkrant\nknipselmap\nknipslot\nknipster\nkniptang\nkniptor\nknipwerk\nknisperen\nknisteren\nknittelvers\nkno-arts\nknobbel\nknobbelachtig\nknobbeleend\nknobbelen\nknobbelgans\nknobbelig\nknobbeligheid\nknobbeljicht\nknobbelvormig\nknobbelziekte\nknobbelzwaan\nknobelen\nknock-out\nknock-outsysteem\nknoedel\nknoei\nknoeiboel\nknoeien\nknoeier\nknoeierig\nknoeierij\nknoeipot\nknoeiwerk\nknoert\nknoerthard\nknoest\nknoesterig\nknoestig\nknoestigheid\nknoet\nknoflook\nknoflookboter\nknoflookgeur\nknoflooklucht\nknoflookpad\nknoflookpers\nknoflooksaus\nknoflooksoep\nknoflookteen\nknoflookworst\nknok\nknokfilm\nknokig\nknokkel\nknokkelig\nknokkelkoorts\nknokken\nknokker\nknokpartij\nknokploeg\nknol\nknolbegonia\nknoldragend\nknolgewas\nknolkwal\nknollenland\nknollentuin\nknolletje\nknolraap\nknolselderie\nknolselderij\nknolvenkel\nknolvormig\nknolzaad\nknolzwam\nknook\nknoop\nknoopgras\nknoopjesdrop\nknoopkruid\nknooppunt\nknoopsgat\nknoopsgatenelastiek\nknoopsgatenschaar\nknoopsgatversiersel\nknoopsluiting\nknoopster\nknoopwerk\nknop\nknopen\nknopendoos\nknopendraaier\nknopenfabriek\nknopenschrift\nknopig\nknopoor\nknoppen\nknoppenangst\nknopscharnieren\nknopspeld\nknopvorming\nknor\nknorbeen\nknorf\nknorhaan\nknorren\nknorrepot\nknorrig\nknorrigheid\nknot\nknotje\nknots\nknotsdrager\nknotsen\nknotsgek\nknotsslag\nknotsvormig\nknotszwaaien\nknotten\nknotwilg\nknowhow\nknudde\nknuffel\nknuffelaar\nknuffelbeer\nknuffelbeest\nknuffeldier\nknuffelen\nknuffelig\nknuffelige\nknuffeling\nknuffelmuur\nknuist\nknul\nknullig\nknulligheid\nknuppel\nknuppelbrug\nknuppelen\nknuppelhout\nknuppelvers\nknurft\nknus\nknusheid\nknusjes\nknut\nknutselaar\nknutselarij\nknutselen\nknutselruimte\nknutselwerk\nknuttel\nknäckebröd\nkoala\nkoalabeer\nkobalt\nkobaltblauw\nkobaltbom\nkobalterts\nkobbe\nkobold\nkocht\nkodak\nkodde\nkoddebeier\nkoddig\nkoddigheid\nkoe\nkoebeest\nkoebel\nkoeboer\nkoebrug\nkoedoe\nkoehaar\nkoehandel\nkoehoorn\nkoehoren\nkoehuid\nkoeien\nkoeiendief\nkoeiendrek\nkoeiengriep\nkoeienhuid\nkoeienkop\nkoeienletter\nkoeienmarkt\nkoeienmelk\nkoeienmest\nkoeienogen\nkoeienoog\nkoeienplak\nkoeienpoep\nkoeienpoot\nkoeienstaart\nkoeienstal\nkoeienstront\nkoeientong\nkoeienuier\nkoeienvlaai\nkoeienvlees\nkoeienziekte\nkoeioneren\nkoek\nkoek-en-zopie\nkoekalf\nkoekbakker\nkoekbakkerij\nkoekdeeg\nkoekeboterham\nkoekebrood\nkoekeloeren\nkoeken\nkoekenaas\nkoekenacht\nkoekenbak\nkoekenbakken\nkoekenbakker\nkoekenbakkerij\nkoekenboer\nkoekendrie\nkoekenpan\nkoekepeer\nkoeketel\nkoeketer\nkoekfabriek\nkoekfabrikant\nkoekhakken\nkoekhappen\nkoekje\nkoekjesdoos\nkoekjesfabriek\nkoekjesfabrikant\nkoekjestrommel\nkoekkraam\nkoekoek\nkoekoeksbloem\nkoekoeksbrood\nkoekoeksei\nkoekoeksjong\nkoekoeksklok\nkoekoekszang\nkoekplank\nkoektrommel\nkoekvorm\nkoekwinkel\nkoel\nkoel-vriescombinatie\nkoelak\nkoelapparaat\nkoelauto\nkoelbak\nkoelbloedig\nkoelbloedigheid\nkoelbox\nkoelcapaciteit\nkoelcel\nkoelcontainer\nkoeldoos\nkoelen\nkoeler\nkoelheid\nkoelhuis\nkoelhuisboter\nkoelie\nkoeliewerk\nkoeling\nkoelinrichting\nkoelinstallatie\nkoelkamer\nkoelkan\nkoelkast\nkoelkelder\nkoelkruik\nkoelleiding\nkoellucht\nkoelmachine\nkoelmeubel\nkoelmiddel\nkoeloven\nkoelpakhuis\nkoelrib\nkoelruim\nkoelruimte\nkoelschip\nkoelsleuf\nkoelsysteem\nkoeltank\nkoeltas\nkoelte\nkoeltechnicus\nkoeltechniek\nkoeltje\nkoeltjes\nkoeltoren\nkoeltransport\nkoelvak\nkoelvat\nkoelvers\nkoelvitrine\nkoelvloeistof\nkoelwagen\nkoelwater\nkoelwaterleiding\nkoelwaterpomp\nkoelwatersysteem\nkoelwatertank\nkoelwatertemperatuur\nkoelweg\nkoemarkt\nkoemelk\nkoemest\nkoen\nkoenheid\nkoenjit\nkoep\nkoepel\nkoepelbouw\nkoepeldak\nkoepelgevangenis\nkoepelgewelf\nkoepelgraf\nkoepelkamer\nkoepelkerk\nkoepelorganisatie\nkoepelraam\nkoepelvormig\nkoepelzaal\nkoepok\nkoepokinenting\nkoepokken\nkoepokstof\nkoer\nkoeren\nkoerier\nkoerierbedrijf\nkoerierdienst\nkoeriersbedrijf\nkoeriersdienst\nkoerierster\nkoeriersvervoer\nkoers\nkoers-winstverhouding\nkoersafwijking\nkoersauto\nkoersbeloop\nkoersbepaling\nkoersberekening\nkoersbericht\nkoersbeweging\nkoersbord\nkoersbroek\nkoerscorrectie\nkoersdag\nkoersdaling\nkoersdirecteur\nkoersdoel\nkoersdruk\nkoersen\nkoersenbord\nkoersevolutie\nkoersexplosie\nkoersfiets\nkoersfluctuatie\nkoersgemiddelde\nkoersgevoelig\nkoersgevoeligheid\nkoersgrafiek\nkoersherstel\nkoershoudend\nkoersindex\nkoersinformatie\nkoersinzicht\nkoersklim\nkoerslijn\nkoerslijst\nkoersmanipulatie\nkoersniveau\nkoersnota\nkoersnotering\nkoersontwikkeling\nkoersopstoot\nkoerspaard\nkoerspeil\nkoerspiek\nkoersprestatie\nkoersreactie\nkoersrekening\nkoersrisico\nkoersschommeling\nkoerssprong\nkoersstijging\nkoersval\nkoersvast\nkoersvastheid\nkoersverandering\nkoersverhoging\nkoersverhouding\nkoersverlaging\nkoersverlegging\nkoersverlies\nkoersverloop\nkoersverschil\nkoersvorming\nkoerswaarde\nkoerswending\nkoerswijziging\nkoerswinst\nkoes\nkoeskoes\nkoest\nkoestal\nkoesteren\nkoestering\nkoet\nkoeteren\nkoeterwaal\nkoeterwaals\nkoeterwalen\nkoetje\nkoets\nkoetsen\nkoetsenmaker\nkoetshuis\nkoetsier\nkoetsiersjas\nkoetsierszweep\nkoetspaard\nkoetspoort\nkoetswerk\nkoetswerkkleur\nkoevoet\nkoewachter\nkof\nkoffer\nkofferbak\nkofferdeksel\nkofferdrager\nkofferen\nkoffergrammofoon\nkofferruimte\nkofferschrijfmachine\nkoffertje\nkoffervis\nkoffie\nkoffie-extract\nkoffie-uur\nkoffieapparaat\nkoffiearoma\nkoffieautomaat\nkoffiebar\nkoffiebeker\nkoffiebes\nkoffieblad\nkoffieboer\nkoffiebon\nkoffieboom\nkoffieboon\nkoffiebrander\nkoffiebranderij\nkoffiebroodje\nkoffiebuffet\nkoffiebus\nkoffieconcert\nkoffiecreamer\nkoffiecultuur\nkoffiedik\nkoffiedikkijker\nkoffiedikkijkerij\nkoffiedikkijkster\nkoffiedrinken\nkoffiedrinker\nkoffiedrinkster\nkoffiefilter\nkoffiegerei\nkoffiegeur\nkoffiehandel\nkoffiehandelaar\nkoffiehoek\nkoffiehuis\nkoffiejuffrouw\nkoffiekamer\nkoffiekan\nkoffieketel\nkoffiekeuken\nkoffiekleurig\nkoffiekoek\nkoffiekom\nkoffiekopje\nkoffiekransje\nkoffieland\nkoffielepel\nkoffielepeltje\nkoffieleut\nkoffielikeur\nkoffiemaaltijd\nkoffiemachine\nkoffiemarkt\nkoffiemeisje\nkoffiemelk\nkoffiemerk\nkoffiemok\nkoffiemolen\nkoffieonderneming\nkoffieoogst\nkoffiepauze\nkoffieplant\nkoffieplantage\nkoffieplanter\nkoffiepluk\nkoffiepoeder\nkoffiepot\nkoffiepraatje\nkoffieprijs\nkoffieproducent\nkoffieproductie\nkoffieprut\nkoffieroom\nkoffieruimte\nkoffieservies\nkoffieshop\nkoffieshophouder\nkoffiesoort\nkoffiestruik\nkoffiesurrogaat\nkoffietafel\nkoffietent\nkoffietijd\nkoffietrommel\nkoffieverbruik\nkoffievlek\nkoffievoorziening\nkoffiewagen\nkoffiewater\nkoffiezetapparaat\nkoffiezetmachine\nkoffiezetten\nkoffiezetter\nkofschip\nkog\nkogel\nkogelafsluiter\nkogelas\nkogelbaan\nkogelbiefstuk\nkogelen\nkogelfles\nkogelflesje\nkogelgat\nkogelgewricht\nkogelgieterij\nkogelkraan\nkogelkussen\nkogellager\nkogelmolen\nkogelpen\nkogelregen\nkogelrond\nkogelscharnier\nkogelslingeraar\nkogelslingeren\nkogelstoten\nkogelstoter\nkogelvanger\nkogelvis\nkogelvorm\nkogelvormig\nkogelvrij\nkogelwerend\nkogelwond\nkogge\nkohier\nkohierbelasting\nkohieren\nkoine\nkok\nkokanjemast\nkokarde\nkoken\nkokend\nkokendheet\nkoker\nkokerbrug\nkokerdenken\nkokerij\nkokerjuffer\nkokerpaal\nkokerrok\nkokertje\nkokervrucht\nkokerworm\nkoket\nkoketteren\nkoketterie\nkokhalzen\nkoking\nkokinje\nkokkel\nkokkelbank\nkokkelen\nkokkelsector\nkokkelvangst\nkokkelvisser\nkokkelvisserij\nkokken\nkokker\nkokkerd\nkokkerellen\nkokkeren\nkokkie\nkokkin\nkokmeeuw\nkokos\nkokosbast\nkokosboom\nkokosgaren\nkokosmakron\nkokosmat\nkokosmelk\nkokosnoot\nkokosolie\nkokospalm\nkokostouw\nkokosvet\nkokosvezel\nkokosvlees\nkokosvrucht\nkokoswater\nkokoszeep\nkoksjongen\nkoksmaat\nkoksmes\nkoksmuts\nkoksschool\nkol\nkola\nkolanoot\nkolbak\nkolchoz\nkolder\nkolderen\nkolderfilm\nkolderiek\nkolderig\nkolen\nkolenaak\nkolenader\nkolenbak\nkolenbekken\nkolenboer\nkolenbrander\nkolenbunker\nkolencentrale\nkolendamp\nkolendrager\nkolenemmer\nkolengas\nkolengestookt\nkolengruis\nkolenhaard\nkolenhandelaar\nkolenhok\nkolenindustrie\nkolenkachel\nkolenkelder\nkolenkist\nkolenkit\nkolenlaag\nkolenman\nkolenmijn\nkolennood\nkolenschep\nkolenschip\nkolenschop\nkolenslik\nkolenstation\nkolenstof\nkolenstook\nkolentip\nkolentransporteur\nkolentremmer\nkolenvergasser\nkolenvergassing\nkolenvoorraad\nkolenvuur\nkolenwagen\nkolenwinning\nkolenzak\nkolenzeef\nkolere\nkoleriek\nkolf\nkolfbaan\nkolfbal\nkolfje\nkolfspel\nkolgans\nkolharing\nkolibrie\nkoliek\nkolk\nkolken\nkolkenzuiger\nkollen\nkollenbloem\nkolokwint\nkolom\nkolombijntje\nkolomboormachine\nkolombreedte\nkolomkachel\nkolomkop\nkolommenbalans\nkolommenmethode\nkolomnummer\nkolomradiator\nkolomsgewijs\nkolomsgewijze\nkolomtitel\nkolomverplaatsing\nkolonel\nkolonel-generaal\nkolonelsbewind\nkolonelschap\nkolonelscoup\nkolonelsdictatuur\nkolonelsjunta\nkolonelsregime\nkoloniaal\nkolonialiseren\nkolonialisme\nkolonialist\nkolonialistisch\nkolonie\nkoloniehuis\nkolonisatie\nkolonisatieplan\nkolonisator\nkoloniseren\nkolonisering\nkolonist\nkoloniste\nkolonistenbeweging\nkolos\nkolossaal\nkolossus\nkolven\nkolvenier\nkolver\nkom\nkomaan\nkomaf\nkombaars\nkombuis\nkomediant\nkomediante\nkomediantesk\nkomedie\nkomedieschrijver\nkomediespeelster\nkomediespel\nkomediespelen\nkomediespeler\nkomediestuk\nkomeet\nkomeetkern\nkomen\nkomend\nkomenijswinkel\nkometenbaan\nkometenstaart\nkometenzoeker\nkomfoor\nkomgrens\nkomgronden\nkomiek\nkomiekeling\nkomiekerig\nkomijn\nkomijnekaas\nkomijnolie\nkomijnzaad\nkomisch\nkomkommer\nkomkommerachtig\nkomkommersalade\nkomkommerschaaf\nkomkommertijd\nkomma\nkommabacil\nkommaliewant\nkommaneuker\nkommapunt\nkommavormig\nkommen\nkommer\nkommerlijk\nkommerloos\nkommernis\nkommervol\nkommetje\nkomodovaraan\nkompaan\nkompas\nkompasbeugel\nkompasfout\nkompasketel\nkompasnaald\nkompaspeiling\nkompasrichting\nkompasroos\nkompasstreek\nkompel\nkompres\nkomst\nkomt-ie\nkomvormig\nkon\nkond\nkond doen\nkonden\nkondigen\nkondschap\nkondschappen\nkondschapper\nkonfijten\nkongeraal\nkongsi\nkonijn\nkonijnenberg\nkonijnenbont\nkonijnenfokkerij\nkonijnenhaar\nkonijnenhok\nkonijnenhol\nkonijnenjacht\nkonijnenkeutel\nkonijnenkot\nkonijnenmelk\nkonijnennest\nkonijnenpijp\nkonijnenpluim\nkonijnenpoot\nkonijnenras\nkonijnenstand\nkonijnenstrik\nkonijnenteelt\nkonijnenvangst\nkonijnenvel\nkonijnenvlees\nkonijnenvoer\nkonijnenziekte\nkoning\nkoning-keizer\nkoning-stadhouder\nkoningen\nkoningin\nkoningin-moeder\nkoningin-regentes\nkoningin-weduwe\nkoninginnenhapje\nkoninginnenharing\nkoninginnenkroon\nkoninginnenpage\nkoninginnenrit\nkoninginnensoep\nkoninginnenstuk\nkoningsaanval\nkoningsadelaar\nkoningsappel\nkoningsarend\nkoningsblauw\nkoningschap\nkoningsdochter\nkoningsdrama\nkoningsgambiet\nkoningsgezind\nkoningsgezinde\nkoningsgezindheid\nkoningsgraf\nkoningshof\nkoningshuis\nkoningskaars\nkoningskind\nkoningsklasse\nkoningskoppel\nkoningskroon\nkoningskwestie\nkoningsmantel\nkoningsmoord\nkoningsnummer\nkoningspaar\nkoningspinguïn\nkoningsslang\nkoningsstad\nkoningsstaf\nkoningsstelling\nkoningstijger\nkoningstitel\nkoningstroon\nkoningsvaren\nkoningsvleugel\nkoningswater\nkoningszeer\nkoningszoon\nkoninkje\nkoninklijk\nkoninkrijk\nkoninkrijksdeel\nkoninkrijksrelaties\nkoninkrijksverband\nkoninkrijkszaken\nkonkel\nkonkelaar\nkonkelachtig\nkonkelarij\nkonkelen\nkonkelfoes\nkonkelfoezen\nkonkelpot\nkonsoorten\nkonstabel\nkonstabelsmaat\nkont\nkonterfeiten\nkonterfeitsel\nkontje\nkontneuken\nkontzak\nkonvooi\nkonvooieren\nkonvooiering\nkonvooilinie\nkonvooischip\nkoof\nkoog\nkooi\nkooi-eend\nkooi-ei\nkooiconstructie\nkooien\nkooigevecht\nkooiker\nkooilamp\nkooiman\nkooiverbinding\nkooiverlichting\nkooivogel\nkook\nkookboek\nkookboekenwinkel\nkookcursus\nkookdemonstratie\nkookeiland\nkookfornuis\nkookgelegenheid\nkookgerei\nkookhitte\nkookhuis\nkookkachel\nkookketel\nkookkunst\nkookles\nkooklucht\nkooknat\nkookpan\nkookplaat\nkookpot\nkookproces\nkookprogramma\nkookpunt\nkookrubriek\nkookschool\nkooksel\nkookstel\nkookster\nkooktechniek\nkooktijd\nkooktoestel\nkookvoorschrift\nkookvoorschriften\nkookvrouw\nkookwas\nkookwater\nkookwekker\nkookwinkel\nkool\nkoolaanslag\nkoolader\nkoolbak\nkoolbekken\nkoolblad\nkoolborstel\nkoolbrander\nkooldioxide\nkooldioxide-emissie\nkooldioxidegas\nkooldioxidegehalte\nkooldraad\nkooldrager\nkooldruk\nkoolemmer\nkoolgruis\nkoolhaas\nkoolhydraat\nkoolkit\nkoollaag\nkoolmees\nkoolmijn\nkoolmonoxide\nkoolmonoxidevergiftiging\nkooloxide\nkoolplant\nkoolraap\nkoolrabi\nkoolschaaf\nkoolschop\nkoolsla\nkoolsoort\nkoolspits\nkoolsteen\nkoolstof\nkoolstofatoom\nkoolstofdioxide\nkoolstoffilter\nkoolstofmolecuul\nkoolstofmonoxide\nkoolstofverbinding\nkoolstofvezel\nkoolstronk\nkoolteer\nkooltje\nkooltje-vuur\nkoolvis\nkoolwagen\nkoolwaterstof\nkoolwitje\nkoolzaad\nkoolzaadolie\nkoolzaadveld\nkoolzak\nkoolzuur\nkoolzuurgas\nkoolzuurhoudend\nkoolzwart\nkoon\nkoop\nkoopadvies\nkoopakte\nkoopavond\nkoopbaar\nkoopbereidheid\nkoopbijdrage\nkoopbrief\nkoopcentrum\nkoopconditie\nkoopcontract\nkoopdag\nkoopdrempel\nkoopdrift\nkoopflat\nkoopgedrag\nkoopgewoonte\nkoopgoed\nkoopgraag\nkoophandel\nkoophuis\nkoopinteresse\nkoopje\nkoopjesjacht\nkoopjesjager\nkoopjesperiode\nkoopkaart\nkoopkracht\nkoopkrachtbeeld\nkoopkrachtbehoud\nkoopkrachtcijfer\nkoopkrachtdaling\nkoopkrachteffect\nkoopkrachtig\nkoopkrachtontwikkeling\nkoopkrachtpariteit\nkoopkrachtplaatje\nkoopkrachtreparatie\nkoopkrachtstijging\nkoopkrachttheorie\nkoopkrachtverbetering\nkoopkrachtverhoging\nkoopkrachtverlies\nkoopkrediet\nkooplust\nkooplustig\nkoopman\nkoopmansbeurs\nkoopmansboek\nkoopmansbrief\nkoopmanschap\nkoopmansfamilie\nkoopmansgebruik\nkoopmansgeest\nkoopmanshuis\nkoopmansmentaliteit\nkoopmansstijl\nkoopmarkt\nkoopmoment\nkoopoptie\nkooporder\nkoopovereenkomst\nkooppatroon\nkooppenning\nkooppenningen\nkoopplicht\nkoopprijs\nkoopprijsgrens\nkooprecht\nkoopsector\nkoopsignaal\nkoopsom\nkoopsompolis\nkoopstad\nkoopstemming\nkoopster\nkoopsubsidie\nkoopvaarder\nkoopvaardij\nkoopvaardijkapitein\nkoopvaardijschip\nkoopvaardijvloot\nkoopvaart\nkoopvernietigend\nkoopvernietiging\nkoopverplichting\nkoopvrouw\nkoopwaar\nkoopwaardig\nkoopwaren\nkoopwoede\nkoopwoning\nkoopwoningenmarkt\nkoopwoningmarkt\nkoopziek\nkoopzondag\nkoopzucht\nkoor\nkoorafsluiting\nkoorbank\nkoord\nkoorddansen\nkoorddanser\nkoorddanseres\nkoorde\nkoordeken\nkoordelastiek\nkoorden\nkoordendraaier\nkoordienst\nkoordirectie\nkoordirigent\nkoordschrift\nkoordsluiting\nkoordveter\nkoorgebed\nkoorgestoelte\nkoorgezang\nkoorheer\nkoorhek\nkoorhemd\nkoorkap\nkoorkapel\nkoorklank\nkoorknaap\nkoorleider\nkoorleidster\nkoorlessenaar\nkoorlid\nkoorlied\nkoormaatschappij\nkoormuziek\nkoornis\nkooromgang\nkoorpartij\nkoorschool\nkoorstoel\nkoorsymfonie\nkoorts\nkoortsaanval\nkoortsachtig\nkoortsdroom\nkoortsgloed\nkoortsig\nkoortsigheid\nkoortslijder\nkoortslip\nkoortsmiddel\nkoortsstuip\nkoortstherapie\nkoortsthermometer\nkoortstoestand\nkoortsuitslag\nkoortsvrij\nkoortswerend\nkoorvenster\nkoorvereniging\nkoorwerk\nkoorzang\nkoorzanger\nkoorzangeres\nkoorzuster\nkoos\nkoosjer\nkoosnaam\nkoot\nkootbeen\nkootje\nkop\nkop-en-schotel\nkop-hals-rompboerderij\nkop-staartbotsing\nkopal\nkopallak\nkopbal\nkopblad\nkopbout\nkopduel\nkopeke\nkopen\nkoper\nkoperachtig\nkoperbeslag\nkoperblazer\nkoperbrons\nkoperdiepdruk\nkoperdraad\nkoperdruk\nkoperen\nkopererts\nkoperets\nkopergeld\nkopergieter\nkopergieterij\nkoperglans\nkopergravure\nkopergroen\nkoperhoudend\nkoperindustrie\nkoperkleurig\nkopermijn\nkopermuziek\nkoperoxide\nkoperplaat\nkoperpletterij\nkoperpoets\nkoperprijs\nkoperproducent\nkoperrood\nkopersectie\nkopersgroep\nkopersgroepen\nkoperslager\nkoperslagerij\nkopersmarkt\nkopersmid\nkopersnede\nkoperspubliek\nkopersstaking\nkoperstuk\nkopersulfaat\nkopervitriool\nkoperwerk\nkoperwiek\nkoperzout\nkopglas\nkopgroep\nkopie\nkopieboek\nkopieerapparaat\nkopieerapparatuur\nkopieerbeveiliging\nkopieerboek\nkopieerder\nkopieergedrag\nkopieerinkt\nkopieerinrichting\nkopieerkosten\nkopieermachine\nkopieerpapier\nkopieerpers\nkopieerprogramma\nkopieervergoeding\nkopieerwerk\nkopieën\nkopiist\nkopiiste\nkopij\nkopijrecht\nkopiëren\nkopiëring\nkopje-onder\nkopklep\nkopklepper\nkoplaag\nkoplamp\nkoplast\nkoplastig\nkoplicht\nkoploopster\nkoploos\nkoploper\nkopman\nkopmanschap\nkopnagel\nkoppakking\nkoppel\nkoppelaar\nkoppelaarster\nkoppelarij\nkoppelbaas\nkoppelbazerij\nkoppelbout\nkoppelen\nkoppelgenoot\nkoppeling\nkoppelingsmechanisme\nkoppelingspedaal\nkoppelingsplaat\nkoppelingsslot\nkoppelingssloten\nkoppelingswet\nkoppelkoers\nkoppelnet\nkoppeloton\nkoppelriem\nkoppelstang\nkoppelstreepje\nkoppelstuk\nkoppelsubsidie\nkoppelteken\nkoppeltijd\nkoppeltijdrit\nkoppeltje\nkoppelverkoop\nkoppelvlak\nkoppelwedstrijd\nkoppelwerkwoord\nkoppelwoord\nkoppelzone\nkoppen\nkoppensnellen\nkoppensneller\nkopper\nkoppermaandag\nkoppig\nkoppigaard\nkoppigheid\nkoppijn\nkoppositie\nkoppotig\nkopra\nkopraolie\nkopregel\nkopriem\nkoprol\nkoprollen\nkops\nkopschool\nkopschuw\nkopschuwe\nkopshout\nkopspiegellamp\nkopspijker\nkopstation\nkopsteen\nkopstem\nkopstoot\nkopstudie\nkopstuk\nkopt\nkoptekst\nkoptelefoon\nkopten\nkoptisch\nkoptoloog\nkopvrouw\nkopwand\nkopwerk\nkopziekte\nkopzijde\nkopzorg\nkor\nkoraal\nkoraalbank\nkoraaldier\nkoraaldieren\nkoraaleiland\nkoraalfuga\nkoraalgezang\nkoraalmos\nkoraalmuziek\nkoraalpoliep\nkoraalrif\nkoraalrood\nkoraalslang\nkoraalvis\nkoraalvisser\nkoraalvisserij\nkoraalwier\nkoralen\nkoralijn\nkoran\nkorbeel\nkordaat\nkordaatheid\nkordeel\nkordelier\nkordon\nkoren\nkorenaar\nkorenakker\nkorenbeurs\nkorenblauw\nkorenbloem\nkorenblond\nkorenhalm\nkorenland\nkorenmaat\nkorenmarkt\nkorenmeel\nkorenmijt\nkorenmolen\nkorenmolenaar\nkorenoogst\nkorenroos\nkorenschoof\nkorenschuur\nkorenveld\nkorenwan\nkorenwolf\nkorenzeef\nkorenzolder\nkorf\nkorfbal\nkorfbalbond\nkorfbalclub\nkorfballen\nkorfballer\nkorfbalspeelster\nkorfbalspel\nkorfbalspeler\nkorfbalster\nkorfbalveld\nkorfbalvereniging\nkorfbalwedstrijd\nkorfvlechter\nkorhaan\nkorhoen\nkoriander\nkorianderblad\nkorianderzaad\nkorist\nkoriste\nkorjaal\nkormoraan\nkornak\nkornalijn\nkornel\nkornet\nkornetblazer\nkornetmuts\nkornis\nkornoelje\nkornoeljeboom\nkornoeljehout\nkornuit\nkoroester\nkorporaal\nkorporaalschap\nkorporaalsstrepen\nkorps\nkorpsbeheerder\nkorpsbeheerdersberaad\nkorpschef\nkorpscommandant\nkorpsgeest\nkorpsleiding\nkorpssterkte\nkorre\nkorrel\nkorrelachtig\nkorrelen\nkorrelgrootte\nkorrelig\nkorreligheid\nkorreling\nkorrelmais\nkorrelmaïs\nkorreltje\nkorren\nkorset\nkorsettenwinkel\nkorst\nkorstachtig\nkorstdeeg\nkorsten\nkorsterig\nkorstig\nkorstje\nkorstjes\nkorstmos\nkort\nkort geding\nkortaangebonden\nkortademig\nkortademigheid\nkortaf\nkortbenig\nkortbij\nkortdurend\nkorte golf\nkorteafstandloper\nkortebaanwedstrijd\nkortegolfontvanger\nkortegolfontvangst\nkortegolfzender\nkortelas\nkortelijk\nkortelings\nkorten\nkorter\nkortetermijnbeleid\nkortetermijndenken\nkortetermijndoel\nkortetermijndoelen\nkortetermijngeheugen\nkortetermijnoplossing\nkortetermijnrente\nkortetermijnvisie\nkortetermijnwinst\nkortgedingrechter\nkortgeknipt\nkortgeleden\nkortgerokt\nkortgeschoren\nkortgolvig\nkortharig\nkortheid\nkortheidshalve\nkorting\nkortingkaart\nkortingsactie\nkortingsbon\nkortingsgroep\nkortingsgroepen\nkortingskaart\nkortingsmaatregel\nkortingspas\nkortingspercentage\nkortingsregeling\nkortingstarief\nkortjan\nkortlopend\nkortom\nkortoor\nkortparkeerder\nkortschedelig\nkortschrift\nkortsluitankermotor\nkortsluitankermotoren\nkortsluiten\nkortsluiting\nkortsluitstromen\nkortsluitstroom\nkortstaart\nkortstaarten\nkortsteel\nkortstondig\nkortstondigheid\nkortswijl\nkortte\nkortverbander\nkortverbandvrijwilliger\nkortverhaal\nkortvleugelig\nkortvoer\nkortweg\nkortwieken\nkortzichtig\nkortzichtigheid\nkorund\nkorven\nkorvet\nkorzel\nkorzelig\nkorzeligheid\nkosmisch\nkosmogonie\nkosmograaf\nkosmografie\nkosmografisch\nkosmologie\nkosmologisch\nkosmoloog\nkosmonaut\nkosmopoliet\nkosmopolitisch\nkosmopolitisme\nkosmos\nkossem\nkost\nkostbaar\nkostbaarheden\nkostbaarhedenverzekering\nkostbaarheid\nkostbaas\nkoste\nkostelijk\nkostelijkheid\nkosteloos\nkosteloosheid\nkosteloosheidsbeginsel\nkosten\nkosten-batenanalyse\nkostenaftrek\nkostenanalyse\nkostenargument\nkostenaspect\nkostenbasis\nkostenbegrip\nkostenbegroting\nkostenbeheersing\nkostenbenadering\nkostenbepalend\nkostenbeperking\nkostenberekening\nkostenbesparend\nkostenbesparing\nkostenbesparingsprogramma\nkostenbewaking\nkostenbewust\nkostenbewustzijn\nkostencategorie\nkostencijfer\nkostencontrole\nkostencurve\nkostendaling\nkostendekkend\nkostendekking\nkostendekkingsgraad\nkostendrager\nkosteneffect\nkosteneffectief\nkosteneffectiviteit\nkostenefficiënt\nkostenefficiëntie\nkostenexplosie\nkostenfactor\nkostenforfait\nkostenkant\nkostenmatiging\nkostenmodel\nkostenneutraal\nkostenniveau\nkostenonderzoek\nkostenontwikkeling\nkostenoogpunt\nkostenopbouw\nkostenopgave\nkostenopstelling\nkostenoverschrijding\nkostenpatroon\nkostenpeil\nkostenpercentage\nkostenplaatje\nkostenplaats\nkostenplaatscode\nkostenplanning\nkostenpost\nkostenprobleem\nkostenraming\nkostenreductie\nkostensoort\nkostensoortcode\nkostensplitsing\nkostenstijging\nkostenstructuur\nkostentarief\nkostentechnisch\nkostenverantwoording\nkostenverdeling\nkostenvergoeding\nkostenverhogend\nkostenverhoging\nkostenverlaging\nkostenvermindering\nkostenverzwaring\nkostenvoordeel\nkoster\nkosteres\nkosterij\nkostersambt\nkosterschap\nkostershuis\nkostganger\nkostgangster\nkostgast\nkostgeld\nkostgrond\nkosthuis\nkostjuffrouw\nkostkind\nkostleerling\nkostprijs\nkostprijsberekening\nkostprijsverhoging\nkostprijsverlaging\nkostschool\nkostschoolhouder\nkostschoolhoudster\nkostschoolmeisje\nkostumeren\nkostumering\nkostuum\nkostuumdrama\nkostuumfilm\nkostuumgeschiedenis\nkostuumnaaien\nkostuumnaaister\nkostuumontwerp\nkostuumontwerper\nkostuumstuk\nkostvrouw\nkostwinnaar\nkostwinner\nkostwinnerschap\nkostwinnersmodel\nkostwinnersprincipe\nkostwinnersvergoeding\nkostwinnersvoordeel\nkostwinning\nkostwinster\nkot\nkotbaas\nkotelet\nkoten\nkoter\nkoteraar\nkoteren\nkoterhaak\nkoterij\nkotmadam\nkoto\nkots\nkotsbeu\nkotsen\nkotsmisselijk\nkotstudent\nkotter\nkotteraar\nkotterbank\nkottervloot\nkou\nkoubeitel\nkoud\nkoudbewerking\nkoudbloed\nkoudbloedig\nkoudbloedpaard\nkoude\nkoudefront\nkoudegolf\nkoudemiddel\nkoudeoorlogsdenken\nkouderecord\nkoudetechniek\nkoudetherapie\nkoudetoeslag\nkoudgeperst\nkoudheid\nkoudjes\nkoudmakend\nkoudslachter\nkoudsmeden\nkoudvuur\nkoudwaterbad\nkoudwaterinrichting\nkoudwaterkuur\nkoudwaterleiding\nkoudwatervrees\nkoudweg\nkoufront\nkoukleum\nkoukleumen\nkous\nkousenband\nkousenbeen\nkousenbroek\nkousenkoper\nkousenvoet\nkousenvoeten\nkousenweverij\nkousenwinkel\nkousje\nkousophouder\nkout\nkouten\nkouter\nkoutje\nkouvatten\nkouwelijk\nkouwelijkheid\nkovel\nkozak\nkozakkendans\nkozakkenmuts\nkozen\nkozerij\nkozijn\nkozijndelen\nkozijnen\nkozijnhout\nkozijnreparatie\nkraag\nkraageend\nkraagloos\nkraagsteen\nkraagstuk\nkraai\nkraaien\nkraaienbek\nkraaienkap\nkraaienmars\nkraaiennest\nkraaienoog\nkraaienpoot\nkraaienveren\nkraaier\nkraak\nkraakactie\nkraakamandel\nkraakbeen\nkraakbenzine\nkraakbeweging\nkraakgas\nkraakhelder\nkraakijs\nkraakinstallatie\nkraaknet\nkraakpand\nkraakporselein\nkraakschoon\nkraakstem\nkraakster\nkraakwagen\nkraakwereld\nkraakzindelijk\nkraal\nkraalogen\nkraaloog\nkraam\nkraamaantekening\nkraamafdeling\nkraambed\nkraambezoek\nkraamcentrum\nkraamheer\nkraamhok\nkraamhulp\nkraaminrichting\nkraamkamer\nkraamkind\nkraamkliniek\nkraampakket\nkraamperiode\nkraampje\nkraamtijd\nkraamverlof\nkraamverpleegkundige\nkraamverpleegster\nkraamverpleger\nkraamverpleging\nkraamverzorging\nkraamverzorgster\nkraamvisite\nkraamvrouw\nkraamvrouwen\nkraamvrouwenkoorts\nkraamvrouwensterfte\nkraamzorg\nkraan\nkraanarm\nkraanauto\nkraanbaan\nkraanbalk\nkraanbestuurder\nkraanboom\nkraanbrug\nkraandrijver\nkraaneiland\nkraangeld\nkraanhals\nkraanhuis\nkraanhulp\nkraanleertje\nkraanmachinist\nkraanoog\nkraanschip\nkraansleutel\nkraanspoor\nkraantje-lek\nkraantjeskan\nkraantjeswater\nkraanvogel\nkraanwagen\nkraanwater\nkrab\nkrabbekat\nkrabbel\nkrabbelaar\nkrabbelarij\nkrabbelen\nkrabbelig\nkrabbeling\nkrabbelschrift\nkrabbeltje\nkrabben\nkrabbeneter\nkrabbengang\nkrabbenscheer\nkrabber\nkrabbetje\nkrabcocktail\nkrablot\nkrabpaal\nkrabsel\nkrabstick\nkrabvlees\nkrach\nkracht\nkrachtbouillon\nkrachtbron\nkrachtcentrale\nkrachtdadig\nkrachtdadigheid\nkrachteloos\nkrachteloosheid\nkrachtenbundeling\nkrachtendriehoek\nkrachtens\nkrachtenspel\nkrachtenveld\nkrachtfiguur\nkrachthonk\nkrachtig\nkrachtinspanning\nkrachtlijn\nkrachtmens\nkrachtmeter\nkrachtmeting\nkrachtoverbrenging\nkrachtpatser\nkrachtpatserij\nkrachtproef\nkrachtsexplosie\nkrachtsinspanning\nkrachtsport\nkrachtstation\nkrachtstroom\nkrachtsverhouding\nkrachtsverschil\nkrachttennis\nkrachtterm\nkrachttoer\nkrachttraining\nkrachtveld\nkrachtvoeder\nkrachtvoer\nkrachtvoetbal\nkrachtwoord\nkrag\nkragen\nkragge\nkraggen\nkrak\nkrakeel\nkrakeelzucht\nkrakeend\nkrakelen\nkrakeling\nkraken\nkraker\nkrakerig\nkrakersbeweging\nkrakersbolwerk\nkrakerskorting\nkrakersrel\nkrakersverleden\nkrakerswereld\nkrakertje\nkrakkemikkig\nkrakken\nkralen\nkralenketting\nkralensnoer\nkram\nkramakkelig\nkramen\nkramer\nkramerij\nkramerslatijn\nkramersvolk\nkramiek\nkrammat\nkrammen\nkrammer\nkramming\nkramp\nkrampaanval\nkrampachtig\nkrampachtigheid\nkramperigheid\nkramphoest\nkramppijn\nkrampstillend\nkrampwerend\nkramsvogel\nkranen\nkranenbouwer\nkranig\nkranigheid\nkrank\nkranke\nkrankheid\nkrankjorum\nkrankzinnig\nkrankzinnige\nkrankzinnigengesticht\nkrankzinnigenverpleging\nkrankzinnigheid\nkrankzinnigverklaring\nkrans\nkransen\nkransje\nkranslegging\nkransslagader\nkrant\nkrantenadvertentie\nkrantenarchief\nkrantenartikel\nkrantenbedrijf\nkrantenbericht\nkrantenbezorger\nkrantenbijlage\nkrantenboer\nkrantenconcern\nkrantendruk\nkrantendrukkerij\nkrantenfoto\nkrantenfusie\nkrantengroep\nkrantenhanger\nkranteninterview\nkrantenjongen\nkrantenkartel\nkrantenkiosk\nkrantenknipsel\nkrantenkolom\nkrantenkop\nkrantenland\nkrantenlezer\nkrantenloper\nkrantenmagnaat\nkrantenman\nkrantenmarkt\nkrantennieuws\nkrantenpagina\nkrantenpapier\nkrantenredactie\nkrantenschrijver\nkrantensite\nkrantenstijl\nkrantenstrip\nkrantenstuk\nkrantentitels\nkrantenuitgever\nkrantenverkoop\nkrantenverkoper\nkrantenvrouw\nkrantenwereld\nkrantenwijk\nkrantenwinkel\nkrantenwinkels\nkrap\nkrapgeldpolitiek\nkrapjes\nkrapte\nkras\nkrasheid\nkraslot\nkrasloterij\nkrasselen\nkrassen\nkrasser\nkrasserig\nkrasvast\nkrat\nkrater\nkratermeer\nkratermond\nkraterrand\nkraterveld\nkratervormig\nkrates\nkraton\nkrats\nkratsen\nkrauw\nkrauwel\nkrauwen\nkrediet\nkredietaanvraag\nkredietaanvrage\nkredietbank\nkredietbedrag\nkredietbedrijf\nkredietbehoefte\nkredietbeleid\nkredietbeoordelaar\nkredietbeoordeling\nkredietbeperking\nkredietbeperkingstoeslag\nkredietbewaker\nkredietbewaking\nkredietbrief\nkredietcentrale\nkredietexpansie\nkredietfaciliteit\nkredietgarantie\nkredietgever\nkredietgeving\nkrediethypotheek\nkredietinrichting\nkredietinstelling\nkredietkaart\nkredietkraan\nkredietlijn\nkredietlimiet\nkredietmaatschappij\nkredietmarkt\nkredietnemer\nkredietopening\nkredietoperatie\nkredietovereenkomst\nkredietpapier\nkredietplafond\nkredietpolitiek\nkredietportefeuille\nkredietrapport\nkredietrating\nkredietregistratie\nkredietrente\nkredietrestrictie\nkredietrisico\nkredietruimte\nkredietschaarste\nkredietstatus\nkredietstelsel\nkrediettransactie\nkredietvereniging\nkredietverlener\nkredietverlening\nkredietverliezen\nkredietverschaffer\nkredietverschaffing\nkredietverstrekker\nkredietverstrekking\nkredietverzekeraar\nkredietverzekering\nkredietvoorstel\nkredietvorm\nkredietvraag\nkredietwaardig\nkredietwaardigheid\nkredietwaardigheidscontrole\nkredietwet\nkredietwezen\nkreeft\nkreeftachtig\nkreeftcanon\nkreeftcocktail\nkreeftdicht\nkreeften\nkreeftengang\nkreeftensaus\nkreeftenschaar\nkreeftensla\nkreeftensoep\nkreeftenvangst\nkreeftenvisser\nkreeg\nkreek\nkrees\nkreet\nkregel\nkregelig\nkregeligheid\nkregen\nkrek\nkrekel\nkrekelzang\nkreng\nkrengen\nkrengerig\nkrengig\nkrenken\nkrenking\nkrensen\nkrent\nkrenten\nkrentenbaard\nkrentenbol\nkrentenboompje\nkrentenboterham\nkrentenbrood\nkrentenkakker\nkrentenkoek\nkrentenmik\nkrentenweger\nkrenterig\nkrenterigheid\nkreppen\nkreten\nkretologie\nkreuk\nkreukecht\nkreukel\nkreukelen\nkreukelig\nkreukelzone\nkreuken\nkreukherstellend\nkreukvrij\nkreunen\nkreupel\nkreupelbos\nkreupele\nkreupelen\nkreupelheid\nkreupelhout\nkreupelrijm\nkrevel\nkrevelen\nkreveling\nkrib\nkribbe\nkribbebijten\nkribbebijter\nkribbelaar\nkribbelen\nkribbelschrift\nkribben\nkribbetje\nkribbig\nkribbigheid\nkribwerk\nkriebel\nkriebelen\nkriebelhoest\nkriebelig\nkriebeligheid\nkriebeling\nkriebelschrift\nkriebelziekte\nkriegel\nkriek\nkriekappel\nkriekelaar\nkrieken\nkriekenbier\nkriekenboom\nkriekenlambiek\nkriekenpit\nkriekensteen\nkriekentijd\nkriel\nkrielei\nkrielen\nkrielhaan\nkrielhen\nkrielkip\nkrieltje\nkrieuwel\nkrieuwelen\nkrieuwen\nkriezel\nkrijg\nkrijgen\nkrijger\nkrijgers\nkrijgertje\nkrijgsauditeur\nkrijgsbanier\nkrijgsbedrijf\nkrijgsbende\nkrijgsdans\nkrijgsdienst\nkrijgseer\nkrijgsgeschiedenis\nkrijgsgevangen\nkrijgsgevangene\nkrijgsgevangenenkamp\nkrijgsgevangenkamp\nkrijgsgevangenschap\nkrijgsgeweld\nkrijgsgewoel\nkrijgsgod\nkrijgsgodin\nkrijgshaftig\nkrijgshaftigheid\nkrijgsheer\nkrijgsheld\nkrijgsheldin\nkrijgskans\nkrijgsknecht\nkrijgskunde\nkrijgskundig\nkrijgskunst\nkrijgslied\nkrijgslieden\nkrijgslist\nkrijgsmacht\nkrijgsmachtdeel\nkrijgsmachtonderdeel\nkrijgsmachtsonderdeel\nkrijgsmakker\nkrijgsman\nkrijgsmanseer\nkrijgsmansstand\nkrijgsplicht\nkrijgsraad\nkrijgsrecht\nkrijgsroem\nkrijgsrumoer\nkrijgsschool\nkrijgstocht\nkrijgstoneel\nkrijgstrompet\nkrijgstucht\nkrijgsverraad\nkrijgsverrichting\nkrijgsvolk\nkrijgswet\nkrijgswetenschap\nkrijgswezen\nkrijgszuchtig\nkrijn\nkrijs\nkrijsen\nkrijt\nkrijtachtig\nkrijtberg\nkrijten\nkrijter\nkrijtformatie\nkrijtgebergte\nkrijthoudend\nkrijtje\nkrijtlijn\nkrijtrots\nkrijtstreep\nkrijttekening\nkrijtwit\nkrik\nkrikkel\nkrikkemik\nkrikkemikkig\nkrikken\nkrikkrak\nkrill\nkrimi\nkrimp\nkrimpeconomie\nkrimpen\nkrimpfolie\nkrimping\nkrimpkous\nkrimpmaat\nkrimpnaad\nkrimpoperatie\nkrimpring\nkrimpspanning\nkrimpvrij\nkring\nkringelen\nkringen\nkringetje\nkringgesprek\nkringgroep\nkringgroepen\nkringkwaliteit\nkringloop\nkringloopbedrijf\nkringloopcentra\nkringloopcentrum\nkringlooppapier\nkringloopsysteem\nkringloopwinkel\nkringproces\nkringsgewijs\nkringsgewijze\nkringspier\nkringstroom\nkringvormig\nkringwinkel\nkrinkel\nkrinkelen\nkrinkeling\nkrioelen\nkrip\nkris\nkriskras\nkriskrassen\nkrissen\nkristal\nkristalachtig\nkristalblauw\nkristalblauwe\nkristaldetector\nkristalfabriek\nkristalglas\nkristalhelder\nkristalkunde\nkristallen\nkristallens\nkristalliet\nkristallig\nkristallijn\nkristallijnen\nkristallisatie\nkristallisatiepunt\nkristalliseerbaar\nkristalliseren\nkristallisering\nkristallografie\nkristalmicrofoon\nkristalontvanger\nkristalrooster\nkristalsoda\nkristalstructuur\nkristalsuiker\nkristalvorm\nkristalvormig\nkristalwerk\nkritiek\nkritiekloos\nkritiekloosheid\nkritiekpunt\nkritisch\nkritiseren\nkrocht\nkrodde\nkroeg\nkroegbaas\nkroegbezoek\nkroegentocht\nkroeghouder\nkroegjool\nkroeglopen\nkroegloper\nkroelen\nkroep\nkroephoest\nkroepoek\nkroes\nkroeshaar\nkroesharig\nkroeskop\nkroesziekte\nkroezelen\nkroezelhaar\nkroezelig\nkroezelkop\nkroezen\nkroezig\nkrok\nkrokant\nkroken\nkroket\nkrokken\nkrokodil\nkrokodillenbek\nkrokodillenei\nkrokodillenjacht\nkrokodillenleder\nkrokodillenleer\nkrokodillentranen\nkrokodillenvel\nkrokus\nkrokusreces\nkrokusvakantie\nkrol\nkrollen\nkrols\nkrom\nkrombeen\nkrombek\nkrombenig\nkrombuigen\nkromgroeien\nkromhals\nkromheid\nkromhout\nkromliggen\nkromlijnig\nkromme\nkrommen\nkrommer\nkrommes\nkromming\nkromneus\nkromp\nkrompasser\nkrompraten\nkromspraak\nkromstaf\nkromstand\nkromsteven\nkromtaal\nkromte\nkromtrekken\nkromzwaard\nkronen\nkroniek\nkroniekschrijfster\nkroniekschrijver\nkroning\nkroningseed\nkroningsfeest\nkroningsplechtigheid\nkronkel\nkronkeldarm\nkronkelen\nkronkelig\nkronkeling\nkronkellijn\nkronkelpad\nkronkelredenering\nkronkelsnoer\nkronkelweg\nkrontjong\nkroon\nkroonbalk\nkroonbenoeming\nkroonblad\nkroondocent\nkroondomein\nkroondrager\nkroonduif\nkroongetuige\nkroonglas\nkroonjaar\nkroonjuweel\nkroonjuwelen\nkroonkandelaar\nkroonkolonie\nkroonkurk\nkroonlamp\nkroonlid\nkroonlijst\nkroonluchter\nkroonorde\nkroonpretendent\nkroonprins\nkroonprinselijk\nkroonprinses\nkroonraad\nkroonrad\nkroonslagader\nkroonsteentje\nkroontje\nkroontjeskruid\nkroontjespen\nkroonvogel\nkroonvormig\nkroonwerk\nkroop\nkroos\nkroost\nkroostrijk\nkroot\nkrop\nkropaar\nkropachtig\nkropandijvie\nkropbrood\nkropduif\nkropen\nkropgans\nkropgezwel\nkropkool\nkroppen\nkropper\nkropsla\nkropziekte\nkrot\nkrotbewoners\nkrotopruiming\nkrotten\nkrottenbewoner\nkrottenbuurt\nkrottenkamp\nkrottenwijk\nkrotter\nkrottig\nkrotwoning\nkrozen\nkrozig\nkruchen\nkrucher\nkruid\nkruidachtig\nkruidboek\nkruiden\nkruidenaftreksel\nkruidenazijn\nkruidenbad\nkruidenbitter\nkruidenbonbon\nkruidenboter\nkruidenbuiltje\nkruidendokter\nkruidendrank\nkruidengeneeskunde\nkruidenier\nkruideniersbedrijf\nkruideniersgeest\nkruideniersmentaliteit\nkruidenierster\nkruidenierswaren\nkruidenierswinkel\nkruidenierszaak\nkruidenkaas\nkruidenkenner\nkruidenlezer\nkruidenmengsel\nkruidenmix\nkruidenshampoo\nkruidenthee\nkruidentuin\nkruidenvrouwtje\nkruidenwijn\nkruiderij\nkruidig\nkruidigheid\nkruiding\nkruidje-roer-mij-niet\nkruidkaas\nkruidkoek\nkruidkunde\nkruidkundige\nkruidnagel\nkruidnagelboom\nkruidnoot\nkruidnootje\nkruidnootjes\nkruien\nkruier\nkruiersloon\nkruif\nkruik\nkruiken\nkruikenzak\nkruim\nkruimel\nkruimelaar\nkruimeldeeg\nkruimeldief\nkruimeldiefstal\nkruimelen\nkruimelig\nkruimelveger\nkruimelwerk\nkruimen\nkruimig\nkruimpje\nkruin\nkruinbreedte\nkruinen\nkruinschering\nkruip-door-sluip-door\nkruipdier\nkruipen\nkruipend\nkruiper\nkruiperig\nkruiperigheid\nkruiperij\nkruipertje\nkruipgat\nkruiphoogte\nkruiphouding\nkruipolie\nkruippakje\nkruipruimte\nkruipspoor\nkruipwilg\nkruis\nkruisafneming\nkruisarm\nkruisbalk\nkruisband\nkruisbanier\nkruisbeeld\nkruisbek\nkruisbes\nkruisbesmetting\nkruisbessenstruik\nkruisbestuiving\nkruisbeuk\nkruisbevruchting\nkruisbloem\nkruisbloemig\nkruisbloemigen\nkruisboog\nkruisboogschieten\nkruisboom\nkruisdagen\nkruisdak\nkruisdood\nkruisdraad\nkruisdrager\nkruisdraging\nkruiselings\nkruisen\nkruiser\nkruisfinale\nkruisgang\nkruisgebed\nkruisgewelf\nkruisgewijs\nkruisgewijze\nkruisgezant\nkruisheer\nkruishoogte\nkruishout\nkruisigen\nkruisiging\nkruising\nkruisingsvrij\nkruisjas\nkruisjassen\nkruisje\nkruiskerk\nkruiskoppeling\nkruiskozijn\nkruiskruid\nkruislat\nkruisleger\nkruislicht\nkruislieveheer\nkruislings\nkruismes\nkruisnet\nkruisoffer\nkruisorganisatie\nkruispaal\nkruispand\nkruisparticipatie\nkruispeiling\nkruispost\nkruisposten\nkruisproef\nkruispunt\nkruisra\nkruisraam\nkruisraket\nkruisridder\nkruissleutel\nkruissnelheid\nkruisspin\nkruisstaf\nkruissteek\nkruisstraat\nkruissubsidiëring\nkruistabel\nkruisteken\nkruistocht\nkruistochten\nkruisvaan\nkruisvaarder\nkruisvaart\nkruisverband\nkruisvereniging\nkruisverhoor\nkruisvluchtwapen\nkruisvorm\nkruisvormig\nkruisvuur\nkruisweg\nkruiswegstatie\nkruiswerk\nkruiswoord\nkruiswoordpuzzel\nkruiswoordraadsel\nkruiszeil\nkruit\nkruitdamp\nkruitfabriek\nkruithoorn\nkruithoren\nkruitkamer\nkruitmagazijn\nkruitslijm\nkruitspoor\nkruittoren\nkruitvat\nkruiven\nkruiwagen\nkruizemunt\nkruizen\nkruk\nkrukas\nkrukken\nkrukkig\nkrukstang\nkrul\nkrulandijvie\nkrulhaar\nkrulijzer\nkrullen\nkrullenbol\nkrullenjongen\nkrullenkop\nkruller\nkrullerig\nkrulletter\nkrullig\nkrulling\nkrulsla\nkrulspeld\nkrulstaart\nkrultabak\nkrultang\nkrulziekte\nkryoliet\nkrypton\nkubbe\nkubboot\nkuberen\nkubiek\nkubiekgetal\nkubiekwortel\nkubisme\nkubist\nkubistisch\nkubus\nkubusvormig\nkuch\nkuchen\nkuchhoest\nkudde\nkuddedier\nkuddegeest\nkuier\nkuieren\nkuierlatten\nkuif\nkuifaap\nkuifeend\nkuifleeuwerik\nkuifmees\nkuiken\nkuikensekser\nkuikenseksster\nkuil\nkuildek\nkuilen\nkuiler\nkuilgras\nkuilharing\nkuilkorvet\nkuilnet\nkuiltje\nkuilvisser\nkuilvisserij\nkuilvoer\nkuip\nkuipbad\nkuipen\nkuiper\nkuiperij\nkuipersambacht\nkuipersgereedschap\nkuiperswinkel\nkuiphout\nkuipplant\nkuipstoel\nkuis\nkuise\nkuisen\nkuiser\nkuisheid\nkuisheidsgelofte\nkuisheidsgordel\nkuist\nkuisvrouw\nkuit\nkuitbeen\nkuitblessure\nkuitbroek\nkuitenbijter\nkuitenflikker\nkuiter\nkuitharing\nkuitkramp\nkuitlang\nkuitschieten\nkuitspier\nkuitvis\nkuiven\nkuizen\nkukelen\nkul\nkulas\nkulkoek\nkullen\nkummel\nkumquat\nkunde\nkundig\nkundigheid\nkungfu\nkunnen\nkunst\nkunst- en vliegwerk\nkunstaanbod\nkunstaas\nkunstacademie\nkunstacademiestudent\nkunstacademiestudente\nkunstafdeling\nkunstagenda\nkunstambacht\nkunstantiquariaat\nkunstarm\nkunstavond\nkunstbaan\nkunstbeeld\nkunstbeen\nkunstbegrip\nkunstbegroting\nkunstbeleid\nkunstbeoefening\nkunstbeschouwing\nkunstbeurs\nkunstbeweging\nkunstbezit\nkunstbloem\nkunstboek\nkunstbont\nkunstboom\nkunstboter\nkunstbroeder\nkunstbudget\nkunstcentra\nkunstcentrum\nkunstcircuit\nkunstcollectie\nkunstcommissie\nkunstcritica\nkunstcriticus\nkunstdiefstal\nkunstdiscipline\nkunstdruk\nkunstdrukpapier\nkunsteducatie\nkunsteigendom\nkunsteloos\nkunstenaar\nkunstenaarschap\nkunstenaarscollectief\nkunstenaarsdorp\nkunstenaarsgroep\nkunstenaarshand\nkunstenaarsinitiatief\nkunstenaarskolonie\nkunstenaarskring\nkunstenaarsleven\nkunstenaarsorganisatie\nkunstenaarssociëteit\nkunstenaarsvereniging\nkunstenares\nkunstenbeleid\nkunstenbond\nkunstencentra\nkunstencentrum\nkunstenfestival\nkunstenmaker\nkunstenplan\nkunstenplanperiode\nkunstensector\nkunstenveld\nkunstenwereld\nkunstexpert\nkunstfestival\nkunstfoto\nkunstfotograaf\nkunstfotografie\nkunstfout\nkunstgalerie\nkunstgalerij\nkunstgebit\nkunstgenootschap\nkunstgenot\nkunstgenre\nkunstgeschiedenis\nkunstgevoel\nkunstgewrocht\nkunstgras\nkunstgrasmat\nkunstgrasveld\nkunstgreep\nkunstgrind\nkunsthal\nkunsthandel\nkunsthandelaar\nkunsthars\nkunsthart\nkunstheup\nkunsthistorica\nkunsthistoricus\nkunsthistorie\nkunsthistorisch\nkunsthonig\nkunsthoning\nkunsthumaniora\nkunstig\nkunstigheid\nkunstijs\nkunstijsbaan\nkunstivoor\nkunstje\nkunstkabinet\nkunstkalender\nkunstkanaal\nkunstkenner\nkunstkennis\nkunstkerstboom\nkunstklep\nkunstklimaat\nkunstkoe\nkunstkoper\nkunstkring\nkunstkritiek\nkunstledematen\nkunstleder\nkunstleer\nkunstlens\nkunstleren\nkunstleven\nkunstlever\nkunstlicht\nkunstliefhebber\nkunstliefhebster\nkunstlievend\nkunstmaan\nkunstmagazine\nkunstmanifestatie\nkunstmarkt\nkunstmateriaal\nkunstmatig\nkunstmatigheid\nkunstmest\nkunstmestfabriek\nkunstmestindustrie\nkunstmeststof\nkunstmiddel\nkunstminnaar\nkunstminnend\nkunstmoeder\nkunstmuseum\nkunstmuziek\nkunstnier\nkunstnijverheid\nkunstnijverheidsschool\nkunstobject\nkunstonderwijs\nkunstoog\nkunstopleiding\nkunstopvatting\nkunstpagina\nkunstpatrimonium\nkunstpaus\nkunstpenis\nkunstprijs\nkunstproduct\nkunstproductie\nkunstprogramma\nkunstproject\nkunstraad\nkunstredacteur\nkunstredactie\nkunstrichting\nkunstrijden\nkunstrijder\nkunstrijdster\nkunstroof\nkunstrubriek\nkunstschaats\nkunstschaatsen\nkunstschaatser\nkunstschaatsster\nkunstschat\nkunstschilder\nkunstschilderes\nkunstschool\nkunstscène\nkunstsector\nkunstsmeedwerk\nkunstsmid\nkunstsneeuw\nkunststad\nkunststeen\nkunststijl\nkunststof\nkunststofafval\nkunststofbuis\nkunststofindustrie\nkunststofproducent\nkunststofschuim\nkunststofverwerkend\nkunststofverwerking\nkunststoot\nkunststroming\nkunststuk\nkunsttaal\nkunsttand\nkunsttempel\nkunsttentoonstelling\nkunstterm\nkunsttheoreticus\nkunsttheoretisch\nkunsttheorie\nkunsttijdschrift\nkunstuiting\nkunstuitleen\nkunstvaardig\nkunstvaardigheid\nkunstvak\nkunstvakonderwijs\nkunstveiling\nkunstverlossing\nkunstverzamelaar\nkunstverzameling\nkunstvezel\nkunstvlieg\nkunstvliegen\nkunstvlieger\nkunstvoeding\nkunstvoorwerp\nkunstvorm\nkunstvriend\nkunstwaarde\nkunstwereld\nkunstwerk\nkunstwoord\nkunstwoordenboek\nkunstzaak\nkunstzaal\nkunstzij\nkunstzijde\nkunstzijden\nkunstzin\nkunstzinnig\nkunstzinnigheid\nkunstzwemmen\nkunstzwendel\nkuras\nkurassier\nkuren\nkurk\nkurkboom\nkurkdroog\nkurkeik\nkurken\nkurkengeld\nkurkentrekker\nkurkenzak\nkurkhout\nkurkiep\nkurkplaat\nkurkuma\nkurkzeil\nkursaal\nkus\nkushand\nkusjesdans\nkussen\nkussengevecht\nkussenkast\nkussenovertrek\nkussensloop\nkussenstoel\nkussentje\nkust\nkustafslag\nkustbatterij\nkustbevolking\nkustbewaking\nkustbewoner\nkustboot\nkustdorp\nkusteiland\nkustformatie\nkustgebergte\nkustgebied\nkustgemeente\nkustklimaat\nkustlicht\nkustlijn\nkustlocatie\nkustontwikkeling\nkustplaats\nkustprovincie\nkustrif\nkuststaat\nkuststad\nkuststation\nkuststreek\nkuststrook\nkusttoerisme\nkusttram\nkustvaarder\nkustvaart\nkustvaartuig\nkustverdediging\nkustverlichting\nkustversterking\nkustversteviging\nkustvisserij\nkustvlakte\nkustwacht\nkustwachter\nkustwater\nkustwateren\nkustweg\nkustwegen\nkustzone\nkustzonebeheer\nkut\nkutten\nkuttenkop\nkutwijf\nkuub\nkuur\nkuurgast\nkuuroord\nkwaad\nkwaadaardig\nkwaadaardigheid\nkwaaddenkend\nkwaaddoener\nkwaadgezind\nkwaadheid\nkwaadschiks\nkwaadspreekster\nkwaadspreken\nkwaadsprekendheid\nkwaadspreker\nkwaadsprekerij\nkwaadwillend\nkwaadwillig\nkwaadwilligheid\nkwaaie\nkwaaiigheid\nkwaal\nkwab\nkwabaal\nkwabbe\nkwabben\nkwabbig\nkwade\nkwader\nkwadraat\nkwadraatgetal\nkwadraatwortel\nkwadrant\nkwadrateren\nkwadratisch\nkwadratuur\nkwadreren\nkwajongen\nkwajongensachtig\nkwajongensstreek\nkwak\nkwaken\nkwakkel\nkwakkelaar\nkwakkelen\nkwakkelig\nkwakkeljacht\nkwakkelweer\nkwakkelwinter\nkwakken\nkwakkuil\nkwakzalven\nkwakzalver\nkwakzalverij\nkwakzalversmiddel\nkwal\nkwalificatie\nkwalificatie-eis\nkwalificatie-interland\nkwalificatieduel\nkwalificatiekans\nkwalificatiepoule\nkwalificatiereeks\nkwalificatieronde\nkwalificatiesysteem\nkwalificatietoernooi\nkwalificatiewedstrijd\nkwalificeren\nkwalificering\nkwalijk\nkwalijkheid\nkwalitatief\nkwaliteit\nkwaliteitsaanduiding\nkwaliteitsanalyse\nkwaliteitsaspect\nkwaliteitsassistent\nkwaliteitsbeheer\nkwaliteitsbeheersing\nkwaliteitsbeheersingssysteem\nkwaliteitsbeleid\nkwaliteitsbeoordeling\nkwaliteitsbesef\nkwaliteitsbewaking\nkwaliteitsbewust\nkwaliteitsbewustzijn\nkwaliteitsborging\nkwaliteitscertificaat\nkwaliteitscommissie\nkwaliteitscontrole\nkwaliteitscontroleur\nkwaliteitscriterium\nkwaliteitsdenken\nkwaliteitsdienst\nkwaliteitseis\nkwaliteitsfilm\nkwaliteitsfunctie\nkwaliteitsgarantie\nkwaliteitshandboek\nkwaliteitsimago\nkwaliteitsimpuls\nkwaliteitsinjectie\nkwaliteitsjournalistiek\nkwaliteitskaart\nkwaliteitskeurmerk\nkwaliteitskrant\nkwaliteitskring\nkwaliteitslabel\nkwaliteitsmanagement\nkwaliteitsmanager\nkwaliteitsmedia\nkwaliteitsmerk\nkwaliteitsmerken\nkwaliteitsmeting\nkwaliteitsmuziek\nkwaliteitsniveau\nkwaliteitsnorm\nkwaliteitsoffer\nkwaliteitsonderzoek\nkwaliteitsontwikkeling\nkwaliteitsoordeel\nkwaliteitspers\nkwaliteitsplan\nkwaliteitsplannen\nkwaliteitsprijs\nkwaliteitsprobleem\nkwaliteitsproduct\nkwaliteitsprogramma\nkwaliteitsslag\nkwaliteitssprong\nkwaliteitsstandaard\nkwaliteitsstempel\nkwaliteitssticker\nkwaliteitssysteem\nkwaliteitstoets\nkwaliteitsverbetering\nkwaliteitsverhogend\nkwaliteitsverhoging\nkwaliteitsverlies\nkwaliteitsvermindering\nkwaliteitsverschil\nkwaliteitsvol\nkwaliteitswerk\nkwaliteitswijn\nkwaliteitswinst\nkwaliteitszender\nkwaliteitszorg\nkwallenbeet\nkwalster\nkwalsteren\nkwam\nkwanselarij\nkwanselen\nkwansuis\nkwant\nkwantificeerbaar\nkwantificeren\nkwantificering\nkwantificeringen\nkwantitatief\nkwantiteit\nkwantum\nkwantumfysica\nkwantumkorting\nkwantummechanica\nkwantummechanisch\nkwantumsprong\nkwark\nkwarktaart\nkwarrel\nkwart\nkwartaal\nkwartaalbasis\nkwartaalbericht\nkwartaalblad\nkwartaalcijfer\nkwartaaldividend\nkwartaaldrinker\nkwartaalgroei\nkwartaallijst\nkwartaalomzet\nkwartaalrapport\nkwartaalrapportering\nkwartaalresultaat\nkwartaalschrift\nkwartaalstaat\nkwartaalverlies\nkwartaalverslag\nkwartaalwinst\nkwartanker\nkwarteeuw\nkwartel\nkwartelei\nkwartelkoning\nkwartet\nkwartetspel\nkwartetten\nkwartfinale\nkwartfinaleduel\nkwartfinaleplaats\nkwartfinalewedstrijd\nkwartfinalist\nkwartgulden\nkwartier\nkwartierarrest\nkwartieren\nkwartiermaker\nkwartiermeester\nkwartiermuts\nkwartiers\nkwartierstaat\nkwartiertje\nkwartijn\nkwartje\nkwartjesvinder\nkwartliterklasse\nkwartnoot\nkwarto\nkwartoformaat\nkwartrust\nkwarts\nkwartsachtig\nkwartsglas\nkwartshorloge\nkwartskristal\nkwartskristallen\nkwartslag\nkwartslagen\nkwartslamp\nkwartszand\nkwarttoon\nkwarttriatlon\nkwassie\nkwassieboom\nkwassiehout\nkwast\nkwasten\nkwasterig\nkwasterigheid\nkwasterij\nkwastig\nkwatong\nkwatrijn\nkwats\nkwatsen\nkwebbel\nkwebbelen\nkwee\nkweeappel\nkweek\nkweekbak\nkweekbed\nkweekgras\nkweekmerrie\nkweekplaats\nkweekplant\nkweekproef\nkweekreactor\nkweekschool\nkweekvijver\nkweekvis\nkweekzalm\nkween\nkweepeer\nkwek\nkwekeling\nkwekelinge\nkweken\nkweker\nkwekerij\nkwekersrecht\nkweking\nkwekken\nkwel\nkweldam\nkwelder\nkweldergras\nkweldergrond\nkweldijk\nkwelduivel\nkwelen\nkwelgeest\nkwellen\nkweller\nkwellerij\nkwelling\nkwelm\nkwelspreuk\nkwelwater\nkwelziek\nkwelzucht\nkwestie\nkwestieus\nkwets\nkwetsbaar\nkwetsbaarheid\nkwetsen\nkwetsing\nkwetsuur\nkwetteraar\nkwetteren\nkwezel\nkwezelaar\nkwezelachtig\nkwezelarij\nkwezelen\nkwibus\nkwiek\nkwijl\nkwijlbaard\nkwijlen\nkwijlerige\nkwijnen\nkwijnend\nkwijning\nkwijt\nkwijtbrief\nkwijten\nkwijting\nkwijtmaken\nkwijtraken\nkwijtschelden\nkwijtschelding\nkwijtscheldingsbeleid\nkwijtscheldingsnorm\nkwijtscheldingsregeling\nkwijtschrift\nkwijtspelen\nkwik\nkwikachtig\nkwikbak\nkwikbarometer\nkwikdamp\nkwikkolom\nkwiklamp\nkwikoxide\nkwikstaart\nkwikthermometer\nkwikvergiftiging\nkwikzalf\nkwikzilver\nkwikzilverachtig\nkwinkeleren\nkwinkslag\nkwint\nkwintaal\nkwintappel\nkwintencirkel\nkwintessens\nkwintet\nkwips\nkwispedoor\nkwispelen\nkwispeling\nkwispelstaarten\nkwistig\nkwistigheid\nkwitantie\nkwitantieloper\nkwitantiezegel\nkwiteren\nkynologie\nkynologisch\nkynoloog\nkür\nl\nla\nlaadbak\nlaadboom\nlaadbrief\nlaadbrug\nlaadcapaciteit\nlaaddeur\nlaadhoofd\nlaadkist\nlaadklep\nlaadkraan\nlaadperron\nlaadplaats\nlaadpoort\nlaadruim\nlaadruimte\nlaadschop\nlaadspanning\nlaadstation\nlaadstok\nlaadstroom\nlaadvermogen\nlaadvloer\nlaadvolume\nlaaf\nlaag\nlaag-bij-de-gronds\nlaagbetaald\nlaagbetaalde\nlaagblijvend\nlaagblijvende\nlaagbouw\nlaagcalorisch\nlaagconjunctuur\nlaagdikte\nlaagdrempelig\nlaagdrempeligheid\nlaagfrequent\nlaaggelegen\nlaaggeletterd\nlaaggeletterde\nlaaggeplaatste\nlaaggeprijsd\nlaaggeschoold\nlaaggeschoolde\nlaaghangend\nlaaghartig\nlaaghartigheid\nlaagheid\nlaagje\nlaagjes\nlaagland\nlaaglandbaan\nlaaglands\nlaagontwikkeld\nlaagopgeleid\nlaagproductief\nlaagradioactief\nlaagrentend\nlaagseizoen\nlaagsgewijs\nlaagsgewijze\nlaagspanning\nlaagspanningsinstallatie\nlaagspanningsnet\nlaagstaand\nlaagstam\nlaagstammig\nlaagstbetaalde\nlaagstbetaalden\nlaagste-inkomensgroep\nlaagsteprijsgarantie\nlaagte\nlaagtepunt\nlaagterecord\nlaagtij\nlaagveen\nlaagvlakte\nlaagvliegen\nlaagvliegend\nlaagvlieger\nlaagvliegroute\nlaagwaardig\nlaagwater\nlaagwaterlijn\nlaai\nlaaie\nlaaien\nlaaiend\nlaakbaar\nlaakbaarheid\nlaan\nlaanbeplanting\nlaar\nlaars\nlaarzen\nlaarzenkap\nlaarzenknecht\nlaarzenmaker\nlaarzenspanner\nlaarzentrekker\nlaas\nlaat\nlaatantiek\nlaatavondjournaal\nlaatbloeiend\nlaatbloeier\nlaatdunkend\nlaatdunkendheid\nlaatgotisch\nlaatje\nlaatkoers\nlaatkomer\nlaatkop\nlaatmes\nlaatmiddeleeuws\nlaatnegentiende-eeuws\nlaatnegentiende-eeuwse\nlaatprijs\nlaatromantiek\nlaatromantisch\nlaatst\nlaatstbedoeld\nlaatste\nlaatstejaars\nlaatstejaarsstudent\nlaatstelijk\nlaatstgeboren\nlaatstgeborene\nlaatstgekozen\nlaatstgenoemd\nlaatstgenoemde\nlaatstgenoten\nlaatstleden\nlaatstmaal\nlaatstverdiend\nlaatstverschenen\nlaattijdig\nlaattijdigheid\nlaatvlijm\nlab\nlabarum\nlabbekak\nlabbekakken\nlabber\nlabberdaan\nlabberen\nlabberlot\nlabberlotten\nlabberlottig\nlabboon\nlabel\nlabelen\nlabeling\nlabelprinter\nlabeur\nlabeuren\nlabeurgrond\nlabeurpaard\nlabiaal\nlabiaat\nlabiaten\nlabiel\nlabiliteit\nlabo\nlaborant\nlaborante\nlaboratorium\nlaboratoriumachtig\nlaboratoriumapparatuur\nlaboratoriumdier\nlaboratoriumexperiment\nlaboratoriumglaswerk\nlaboratoriumjas\nlaboratoriumomstandigheden\nlaboratoriumonderzoek\nlaboratoriumproef\nlaboratoriumrapport\nlaboratoriumtest\nlaboratoriumuitslag\nlaboratoriumwerk\nlaboreren\nlaborieus\nlabourregering\nlabrador\nlabyrint\nlabyrintisch\nlach\nlach-of-ik-schietshow\nlachbek\nlachbekken\nlachbui\nlachduif\nlachebek\nlachedingen\nlachen\nlachenderwijs\nlacher\nlacherig\nlacherigheid\nlachertje\nlachfilm\nlachgas\nlachkramp\nlachlust\nlachsalvo\nlachspel\nlachspiegel\nlachspier\nlachspieren\nlachstuip\nlachsucces\nlachwekkend\nlachwekkendheid\nlaconiek\nlaconisme\nlacrosse\nlactaat\nlactase\nlactatie\nlactatieperiode\nlactogeen\nlactometer\nlactose\nlacune\nladder\nladderauto\nladderbanen\nladderboom\nladderen\nladderhaak\nladdersport\nladderstoel\nladdervrij\nladderwagen\nladderzat\nlade\nladegreep\nladekast\nladelichter\nladelichterij\nladen\nlader\nlading\nladingboek\nladingcontroleur\nladingdichtheid\nladingmeester\nladingsbrief\nladingslijsten\nladingsplaats\nladingstank\nladingsteken\nlady\nladykiller\nladyshave\nlaesie\nlaetare\nlaf\nlafaard\nlafbek\nlafenis\nlafhartig\nlafhartigheid\nlafheid\nlag\nlage\nlage-inkomensgroepen\nlagedrukgebied\nlagelonenland\nlagen\nlagenmaat\nlager\nlagerbier\nlagerbus\nlagerbussen\nlagere-inkomensgroep\nlagereschoolleerling\nlagereschooltijd\nlagergelegen\nlagerhuizen\nlagering\nlagermateriaal\nlagerwal\nlagune\nlagunekust\nlaisser aller\nlaisser faire\nlaissez passer\nlak\nlakbeits\nlakceintuur\nlakei\nlaken\nlakenbereider\nlakenfabriek\nlakenhal\nlakenhalle\nlakenindustrie\nlakenkoper\nlakens\nlakenvelder\nlakenvelds\nlakenververij\nlakenvoller\nlakenwever\nlakenweverij\nlakenzak\nlakjas\nlakken\nlaklaag\nlakleer\nlakmoes\nlakmoespapier\nlakmoesproef\nlakmoestest\nlakooi\nlaks\nlakschoen\nlaksheid\nlakstaaf\nlakstempel\nlakstraat\nlakverf\nlakvernis\nlakwerk\nlakzegel\nlala\nlallen\nlam\nlama\nlambada\nlambda\nlambel\nlambertsnoot\nlambiek\nlambrekijn\nlambriseren\nlambrisering\nlamel\nlamelle\nlamelleren\nlamentabel\nlamentatie\nlamenteren\nlamet\nlamfer\nlamgelegd\nlamheid\nlaminaat\nlaminaatvloer\nlaminair\nlamineren\nlamleggen\nlamlendig\nlamlendigheid\nlamme\nlammeling\nlammen\nlammenadig\nlammeren\nlammergier\nlammermarkt\nlammetje\nlammetjespap\nlammig\nlammigheid\nlamoen\nlamp\nlampenfabrikant\nlampenglas\nlampenist\nlampenkap\nlampenkatoen\nlampenkousje\nlampenolie\nlampenpit\nlampenpoetser\nlampetkan\nlampetkom\nlampfitting\nlamphouder\nlampion\nlampionnenoptocht\nlampionoptocht\nlampionplant\nlamplicht\nlampolie\nlampongaap\nlamprei\nlampzwart\nlamsbout\nlamsfilet\nlamskotelet\nlamslaan\nlamsoor\nlamspoot\nlamsschenkel\nlamsschouder\nlamstong\nlamstraal\nlamsvacht\nlamsvel\nlamsvlees\nlamswol\nlamswollen\nlamszadel\nlamzak\nlamzalig\nlamé\nlancaster\nlanceerbasis\nlanceerbuis\nlanceerinrichting\nlanceerinstallatie\nlanceerplaats\nlanceerplatform\nlanceerprijs\nlanceerraket\nlanceervenster\nlanceren\nlancering\nlancet\nlancetbladig\nlancetvisje\nlancetvormig\nland\nland- en volkenkunde\nlandaanwinning\nlandaanwinst\nlandaard\nlandadel\nlandarbeid\nlandarbeider\nlandauer\nlandbestuur\nlandbezit\nlandbouw\nlandbouwakkoord\nlandbouwalaam\nlandbouwareaal\nlandbouwattaché\nlandbouwbank\nlandbouwbedrijf\nlandbouwbedrijfsleven\nlandbouwbegroting\nlandbouwbeleid\nlandbouwbeurs\nlandbouwbudget\nlandbouwchemicaliën\nlandbouwcommissaris\nlandbouwcommissie\nlandbouwconsulent\nlandbouwcoöperatie\nlandbouwcrisis\nlandbouwdeskundige\nlandbouwdossier\nlandbouweconomie\nlandbouweconomisch\nlandbouweconoom\nlandbouwer\nlandbouwersstand\nlandbouwexpert\nlandbouwexport\nlandbouwgebied\nlandbouwgereedschap\nlandbouwgewas\nlandbouwgif\nlandbouwgrond\nlandbouwheffing\nlandbouwhervorming\nlandbouwhogeschool\nlandbouwhuisdieren\nlandbouwhuishoudkunde\nlandbouwhuishoudschool\nlandbouwindustrie\nlandbouwingenieur\nlandbouwkrediet\nlandbouwkunde\nlandbouwkundig\nlandbouwkundige\nlandbouwland\nlandbouwlobby\nlandbouwmachine\nlandbouwmarkt\nlandbouwmethode\nlandbouwminister\nlandbouwministerie\nlandbouwmodel\nlandbouwnederzetting\nlandbouwonderwijs\nlandbouwonderzoek\nlandbouwoogsten\nlandbouwopbrengst\nlandbouworganisatie\nlandbouwoverschot\nlandbouwplastic\nlandbouwpolitiek\nlandbouwprijzen\nlandbouwproduct\nlandbouwproductie\nlandbouwproefstation\nlandbouwproject\nlandbouwraad\nlandbouwschool\nlandbouwsector\nlandbouwspecialist\nlandbouwsteun\nlandbouwsysteem\nlandbouwtechniek\nlandbouwtechnologie\nlandbouwtentoonstelling\nlandbouwtrekker\nlandbouwuitgaven\nlandbouwuniversiteit\nlandbouwverkeer\nlandbouwvoorlichting\nlandbouwwerktuig\nlandbouwwetenschap\nlandbouwzone\nlandcode\nlanddag\nlanddier\nlanddrost\nlandduin\nlandedelman\nlandeigenaar\nlandeigendom\nlandelijk\nlandelijkheid\nlanden\nlandenbeleid\nlandencompetitie\nlandengte\nlandeninformatie\nlandenkampioenschap\nlandenklassement\nlandenlijst\nlandennaam\nlandenpaviljoen\nlandenploeg\nlandenprijs\nlandenrapport\nlandenrisico\nlandenstrijd\nlandenteam\nlandentoernooi\nlandentornooi\nlandenwedstrijd\nlanderig\nlanderigheid\nlanderij\nlanderijen\nlandgebruik\nlandgenoot\nlandgenote\nlandgoed\nlandgoedeigenaar\nlandgoederen\nlandgraaf\nlandgrens\nlandheer\nlandhervorming\nlandhonger\nlandhoofd\nlandhuis\nlandhuishoudkunde\nlandhuishoudkundige\nlandhuur\nlandijs\nlanding\nlandingsbaan\nlandingsbaken\nlandingsboot\nlandingsbrug\nlandingsdivisie\nlandingsgebied\nlandingsgestel\nlandingsleger\nlandingslicht\nlandingsoperatie\nlandingsplaats\nlandingsplek\nlandingspoging\nlandingsrecht\nlandingsrechten\nlandingsschip\nlandingsstrip\nlandingsstrook\nlandingsterrein\nlandingstrap\nlandingstroepen\nlandingsvaartuig\nlandingsverbod\nlandingsvloot\nlandinrichting\nlandinrichtingscommissie\nlandinrichtingsplan\nlandinrichtingsproject\nlandinwaarts\nlandje\nlandjepik\nlandjonker\nlandjuweel\nlandkaart\nlandklimaat\nlandkrab\nlandkwestie\nlandleger\nlandleven\nlandlieden\nlandloos\nlandlopen\nlandloper\nlandloperij\nlandlucht\nlandmaat\nlandmacht\nlandmachtbevelhebber\nlandmachteenheid\nlandmachtgeneraal\nlandmachtstaf\nlandmachttop\nlandman\nlandmassa\nlandmeetkunde\nlandmeetkundige\nlandmerk\nlandmeten\nlandmeter\nlandmijl\nlandmijn\nlandnummer\nlandonteigening\nlandontginning\nlandoorlog\nlandoppervlak\nlandoppervlakte\nlandouw\nlandouwen\nlandpaal\nlandpacht\nlandpost\nlandraad\nlandrat\nlandrecht\nlandrechter\nlandreis\nlandreizen\nlandrente\nlandrentestelsel\nlandrot\nlandrover\nlands\nlandsaard\nlandsadvocaat\nlandsbelang\nlandsbestuur\nlandschap\nlandschappelijk\nlandschapsarchitect\nlandschapsarchitecte\nlandschapsarchitectuur\nlandschapsbeeld\nlandschapsbeheer\nlandschapsfotografie\nlandschapshistorie\nlandschapsonderhoud\nlandschapsontwikkeling\nlandschapspark\nlandschapsplan\nlandschapsschilder\nlandschapsschilderkunst\nlandschapsschoon\nlandschapsstijl\nlandschapstuin\nlandschapsverzorging\nlandscheiding\nlandschildpad\nlandsdeel\nlandsdienaar\nlandsdrukkerij\nlandsfinanciën\nlandsgedeelte\nlandsgrens\nlandsheer\nlandsheerlijk\nlandskampioen\nlandskampioenschap\nlandskind\nlandsknecht\nlandslak\nlandsman\nlandsnaam\nlandspolitiek\nlandsregering\nlandstaal\nlandstad\nlandstitel\nlandstreek\nlandstrijdkrachten\nlandstrook\nlandsverdediger\nlandsverdediging\nlandsverordening\nlandsvlag\nlandsvorst\nlandsvrouwe\nlandszaak\nlandtong\nlandvast\nlandverdeling\nlandverhuizer\nlandverhuizing\nlandverlies\nlandverraad\nlandverraadster\nlandverrader\nlandvolk\nlandvoogd\nlandvoogdes\nlandvoogdij\nlandwaarts\nlandwacht\nlandweer\nlandweerman\nlandweg\nlandwet\nlandwijn\nlandwind\nlandwinning\nlandzaat\nlandziek\nlandziekig\nlandziekte\nlandzij\nlandzijde\nlang\nlangademig\nlangarm\nlangarmaap\nlangarmig\nlangbeen\nlangbenig\nlangdradig\nlangdradigheid\nlangdurend\nlangdurig\nlangdurigheid\nlange\nlangeafstandloper\nlangeafstandsloper\nlangeafstandspad\nlangeafstandsraket\nlangeafstandsschot\nlangeafstandsvervoer\nlangeafstandswedstrijd\nlangebaanploeg\nlangebaanrijder\nlangebaanschaatsen\nlangebaanschaatser\nlangebaanwedstrijd\nlangen\nlanger\nlangetermijnbelegging\nlangetermijnbeleid\nlangetermijnbeloop\nlangetermijncontract\nlangetermijndenken\nlangetermijndoel\nlangetermijndoelen\nlangetermijneffect\nlangetermijngeheugen\nlangetermijninvestering\nlangetermijnlening\nlangetermijnleningen\nlangetermijnonderzoek\nlangetermijnperspectief\nlangetermijnplanning\nlangetermijnplanningen\nlangetermijnrelatie\nlangetermijnrente\nlangetermijnrentes\nlangetermijnsparen\nlangetermijnstrategie\nlangetermijnstrategieën\nlangetermijntrend\nlangetermijnverhuur\nlangetermijnvisie\nlanggerekt\nlanggestrafte\nlanggewenst\nlanghals\nlanghalzig\nlangharig\nlangjarig\nlanglauf\nlanglaufen\nlanglaufer\nlanglevend\nlanglijvig\nlanglip\nlanglopend\nlangnek\nlangneus\nlangoer\nlangoest\nlangoor\nlangoureus\nlangoustine\nlangparkeerder\nlangpoot\nlangpootmug\nlangs\nlangschedelig\nlangsdoorsnede\nlangsdoorsnee\nlangsdrager\nlangsfietsen\nlangsgaan\nlangsheen\nlangshelling\nlangskomen\nlangslaapster\nlangslaper\nlangslepend\nlangsligger\nlangslopen\nlangsnavel\nlangsom\nlangspeelfilm\nlangspeelplaat\nlangspeler\nlangsprieten\nlangsrazen\nlangsrazend\nlangsrichting\nlangsrijden\nlangsscheeps\nlangsschot\nlangsstromen\nlangsstromend\nlangst\nlangstaart\nlangstaartig\nlangstdurend\nlangstlevend\nlangstlevende\nlangstrekken\nlangstzittend\nlangsvarend\nlangsverband\nlangswippen\nlangszij\nlangszijde\nlangtand\nlangtong\nlanguissant\nlanguit\nlangverwacht\nlangvleugelig\nlangvoer\nlangwerpig\nlangwerpigheid\nlangwijlig\nlangzaam\nlangzaamaan\nlangzaamaanactie\nlangzaamheid\nlangzamerhand\nlangzichtwissel\nlankmoedig\nlankmoedigheid\nlanoline\nlans\nlansen\nlansier\nlansiers\nlansknecht\nlanssteek\nlantaarn\nlantaarndrager\nlantaarnlicht\nlantaarnman\nlantaarnopsteker\nlantaarnpaal\nlantaarnplaatje\nlantaarntje\nlantaarnvis\nlantaarnvissen\nlantaren\nlantarendrager\nlantarenopsteker\nlantarenpaal\nlantarenplaatje\nlantarentje\nlantarenvis\nlanteren\nlanterfant\nlanterfanten\nlanterfanter\nlanterfanterij\nlanthaan\nlanthaanreeks\nlaos\nlap\nlaparoscoop\nlaparoscopie\nlaparoscopisch\nlaparotomie\nlapdance\nlapel\nlapidair\nlapis lazuli\nlapjesdeken\nlapjeskat\nlapjeswerk\nlapmiddel\nlappen\nlappendag\nlappendeken\nlappenmand\nlappenmarkt\nlappenpop\nlapper\nlapperij\nlapsus\nlaptop\nlaptopcomputer\nlapwerk\nlapzak\nlapzalven\nlapzwans\nlaqué\nlardeerpriem\nlardeerspek\nlarderen\nlaren\nlarf\nlarge\nlarghetto\nlargo\nlarie\nlariefarie\nlariekoek\nlariks\nlariksboom\nlariksbos\nlark\nlarmoyant\nlarve\nlarvenstadium\nlaryngaal\nlaryngitis\nlaryngoloog\nlaryngoscoop\nlarynx\nlas\nlasaggregaat\nlasagne\nlasapparaat\nlasapparatuur\nlasband\nlasbrander\nlasbril\nlascief\nlasdoos\nlasdop\nlasdraad\nlaser\nlaserapparatuur\nlaserbehandeling\nlaserbundel\nlaserdiode\nlaserdisk\nlaserfax\nlasergame\nlasergun\nlasergyroscoop\nlaserkanon\nlaserklasse\nlaserlicht\nlaserpen\nlaserpistool\nlaserprinter\nlaserpuls\nlasers\nlaserscanner\nlaserscanners\nlasershow\nlaserstraal\nlaserstraling\nlasersysteem\nlasertechniek\nlasertechnologie\nlasertherapie\nlaserwapen\nlasflens\nlasijzer\nlaskaar\nlasmes\nlasnaad\nlasplaat\nlasrups\nlassen\nlasser\nlassing\nlasso\nlasstaaf\nlast\nlast minute\nlastarm\nlastbrief\nlastdier\nlastdrager\nlaste\nlastechnisch\nlasten\nlastenboek\nlastendruk\nlastenkohier\nlastenoverzicht\nlastenstijging\nlastenverdeling\nlastenverhoging\nlastenverlaging\nlastenverlichting\nlastenvermindering\nlastenverschuiving\nlastenverzwaring\nlaster\nlasteraar\nlastercampagne\nlasteren\nlastering\nlasterlijk\nlasterpraat\nlasterschrift\nlastertaal\nlastertong\nlastezel\nlastgeefster\nlastgeld\nlastgever\nlastgeving\nlasthebber\nlastig\nlastigaard\nlastigheid\nlastigvallen\nlastlijn\nlastminutereis\nlastpak\nlastpost\nlastransformator\nlastrem\nlastvrij\nlastwagen\nlaswerk\nlat\nlatafel\nlatei\nlateihout\nlaten\nlatenightshow\nlatent\nlatentie\nlatentiefase\nlatentietijd\nlater\nlateraal\nlatertje\nlatex\nlatexallergie\nlatexverf\nlathyrus\nlatierboom\nlatijn\nlatin jazz\nlatin lover\nlatin rock\nlating\nlatiniseren\nlatinisme\nlatinist\nlatiniteit\nlatino\nlatnagel\nlatrelatie\nlatrine\nlatten\nlattenbodem\nlatuw\nlatwerk\nlaudanum\nlaudatie\nlaudatio\nlauden\nlaureaat\nlaurier\nlaurierbes\nlaurierblad\nlaurierboom\nlaurierdrop\nlaurieren\nlaurierkers\nlaurierolie\nlauw\nlauwer\nlauweren\nlauwerkrans\nlauwerkroon\nlauwertak\nlauwhartig\nlauwheid\nlauwte\nlauwtjes\nlauwwarm\nlava\nlavabo\nlavabogarnituur\nlavaglas\nlavalaag\nlavas\nlavasteen\nlavastroom\nlaveloos\nlavement\nlavementspuit\nlaven\nlavendel\nlavendelgeur\nlavendelolie\nlavendelplant\nlavendelplanten\nlavendelwater\nlaveren\nlavet\nlaving\nlawaai\nlawaaibestrijding\nlawaaidoofheid\nlawaaien\nlawaaierig\nlawaaihinder\nlawaaiig\nlawaaiigheid\nlawaaimaker\nlawaaioverlast\nlawaaisaus\nlawaaischopper\nlawaaiterreur\nlawaaiterrorist\nlawine\nlawinegevaar\nlawinehond\nlawinewering\nlawn\nlawntennis\nlaxans\nlaxatief\nlaxeermiddel\nlaxeerpil\nlaxeren\nlay-out\nlay-outen\nlazaret\nlazarist\nlazaristen\nlazarus\nlazarusklep\nlazen\nlazer\nlazeren\nlazerij\nlazuren\nlazuur\nlazuurblauw\nlazuursteen\nlaïciseren\nlaïcisme\nlbo\nlcd\nlcd-scherm\nleader\nleadgitarist\nleadzanger\nleadzangeres\nleaflet\nleague\nleao\nlease\nleaseactiviteit\nleaseauto\nleasebak\nleasebedrijf\nleaseconstructie\nleasecontract\nleasemaatschappij\nleasen\nleaseovereenkomst\nleaseprijs\nleasewagen\nleasing\nleasingmaatschappij\nleb\nlebaal\nlebbe\nlebberen\nlebbig\nleblam\nlebmaag\nlecithine\nlectine\nlector\nlectoraat\nlectrice\nlectuur\nlectuurbak\nlectuurgids\nlectuurlijst\nlectuurplank\nled\nlede\nledemaat\nledematen\nleden\nledenaantal\nledenaanwas\nledenadministratie\nledenavond\nledenbestand\nledenblad\nledenbulletin\nledencongres\nledengroei\nledengroep\nledenkapitaal\nledenketel\nledenkring\nledenlijst\nledenman\nledenorganisatie\nledenpop\nledenraad\nledenraadpleging\nledenraadsvergadering\nledenradiator\nledenreferendum\nledenregister\nledenstop\nledental\nledenvergadering\nledenverlies\nledenwerfactie\nledenwerving\nledenwervingspagina\nleder\nlederachtig\nlederen\nlederhuid\nlederwaren\nledig\nledigen\nlediggang\nledigganger\nledigheid\nlediging\nledikant\nleed\nleedgevoel\nleedvermaak\nleedwezen\nleefbaar\nleefbaarheid\nleefbaarheidsstudie\nleefeenheid\nleefgebied\nleefgemeenschap\nleefgenot\nleefgewoonte\nleefgroep\nleefkamer\nleefklimaat\nleefkuil\nleefkwaliteit\nleeflaag\nleefloon\nleefmilieu\nleefmilieuverordening\nleefnet\nleefomgeving\nleefomstandigheden\nleefomstandigheid\nleefpatroon\nleefregel\nleefritme\nleefruimte\nleefsfeer\nleefsituatie\nleefstijl\nleefterras\nleeftijd\nleeftijdgebonden\nleeftijdgenoot\nleeftijdgenote\nleeftijdgrens\nleeftijdloos\nleeftijdsaanduiding\nleeftijdsbeperking\nleeftijdsbewust\nleeftijdscategorie\nleeftijdscontrole\nleeftijdscorrectie\nleeftijdscriterium\nleeftijdsdiscriminatie\nleeftijdsfase\nleeftijdsgebonden\nleeftijdsgenoot\nleeftijdsgrens\nleeftijdsgroep\nleeftijdsklasse\nleeftijdslimiet\nleeftijdsonderzoek\nleeftijdsontslag\nleeftijdsopbouw\nleeftijdspremie\nleeftijdsverschil\nleeftocht\nleefverband\nleefvorm\nleefwereld\nleefwijze\nleeg\nleeg raken\nleegblazen\nleegbloeden\nleegdrinken\nleegeten\nleegganger\nleeggewicht\nleeggieten\nleeggoed\nleeggooien\nleeghalen\nleegheid\nleeghoofd\nleeghoofdig\nleeghoofdigheid\nleegkomen\nleegloop\nleeglooptijd\nleeglopen\nleegloper\nleegloperij\nleegmaken\nleegplukken\nleegplunderen\nleegpompen\nleegroven\nleegruimen\nleegschenken\nleegschieten\nleegschudden\nleegstaan\nleegstand\nleegstandswet\nleegstelen\nleegstorten\nleegstromen\nleegte\nleegvissen\nleegzuigen\nleek\nleem\nleemaarde\nleemachtig\nleeman\nleemgroeve\nleemgrond\nleemhoudend\nleemkuil\nleemlaag\nleemput\nleemte\nleen\nleenauto\nleenbank\nleenbedrag\nleenbrief\nleencapaciteit\nleendienst\nleeneed\nleengeld\nleengoed\nleengoederen\nleenheer\nleenheerschap\nleenhulde\nleenman\nleenmanschap\nleenmoeder\nleenplicht\nleenrecht\nleenrechtelijk\nleenrechtregeling\nleenrechtvergoeding\nleenroerig\nleenroerigheid\nleenspreuk\nleenstelsel\nleentjebuur\nleenvergoeding\nleenverkeer\nleenvertaling\nleenvorst\nleenwoord\nleep\nleepheid\nleepogen\nleepoog\nleer\nleer-werktraject\nleerachterstand\nleerachtig\nleerbaar\nleerbaarheid\nleerbedrijf\nleerbegrip\nleerbehoefte\nleerbereider\nleerboek\nleercentrum\nleercontract\nleercurve\nleerdicht\nleerdichter\nleerdoek\nleerdoel\nleereffect\nleerelement\nleerervaring\nleerfabriek\nleerfase\nleergang\nleergebied\nleergedeelte\nleergedrag\nleergeld\nleergezag\nleergierig\nleergierigheid\nleergraag\nleergroepen\nleerhoofd\nleerhuid\nleerhuis\nleerhulp\nleerindustrie\nleerjaar\nleerjongen\nleerkracht\nleerling\nleerling-journalist\nleerling-kok\nleerling-verpleegkundige\nleerlingaantal\nleerlingbegeleider\nleerlingbegeleiding\nleerlingbegeleidster\nleerlinge\nleerlingenaantal\nleerlingenbegeleiding\nleerlingenbestand\nleerlingenpopulatie\nleerlingenraad\nleerlingenschaal\nleerlingenstelsel\nleerlingenstop\nleerlingental\nleerlingenvervoer\nleerlingniveau\nleerlingplaats\nleerlingprofiel\nleerlingschap\nleerlingstelsel\nleerlingvolgsysteem\nleerlingwezen\nleerlooien\nleerlooier\nleerlooierij\nleerlust\nleermateriaal\nleermeester\nleermeesteres\nleermeisje\nleermethode\nleermiddel\nleermodel\nleermogelijkheden\nleermoment\nleernicht\nleeromgeving\nleeropdracht\nleerovereenkomst\nleerpakket\nleerperiode\nleerplan\nleerplanontwikkeling\nleerplicht\nleerplichtambtenaar\nleerplichtig\nleerplichtwet\nleerproces\nleerprogramma\nleerproject\nleerpsychologie\nleerpsycholoog\nleerrecht\nleerrede\nleerregel\nleerrijk\nleerroute\nleers\nleerschool\nleersituatie\nleerstellig\nleerstelligheid\nleerstelling\nleerstelsel\nleerstijl\nleerstoel\nleerstoelgroep\nleerstof\nleerstofgebied\nleerstofjaarklassensysteem\nleerstofkeuze\nleerstofverwerking\nleerstoornis\nleerstraf\nleerstraffen\nleerstrategie\nleerstuk\nleertaak\nleertherapie\nleertijd\nleertje\nleertouwen\nleertouwer\nleertouwerij\nleertrant\nleervak\nleervergunning\nleervermogen\nleerwaren\nleerweg\nleerwerk\nleerwijze\nleerzaam\nleerzaamheid\nleerzucht\nleesapparaat\nleesapparatuur\nleesbaar\nleesbaarheid\nleesbaarheidsformule\nleesbeurt\nleesbevordering\nleesbibliotheek\nleesblind\nleesblindheid\nleesboek\nleesbril\nleescafé\nleesclub\nleescultuur\nleesdienst\nleesdoel\nleesdrama\nleeservaring\nleesgedrag\nleesgemak\nleesgenot\nleesgewoonte\nleesgezelschap\nleesglas\nleesgraag\nleesgroep\nleeshonger\nleesinrichting\nleeskabinet\nleeskamer\nleeskop\nleeskring\nleeslamp\nleesles\nleeslijst\nleeslint\nleeslust\nleesmachine\nleesmap\nleesmateriaal\nleesmethode\nleesmoeder\nleesoefening\nleesonderwijs\nleespauze\nleespen\nleesplank\nleesplezier\nleesportefeuille\nleesregel\nleesrooster\nleessnelheid\nleesstof\nleesstuk\nleest\nleestafel\nleesteken\nleestempo\nleesten\nleestest\nleestijd\nleestip\nleestoon\nleestraining\nleestrommel\nleesuur\nleesvaardigheid\nleesvoer\nleeswerk\nleeswijze\nleeswijzer\nleeswoede\nleeszaal\nleet\nleeuw\nleeuwenaandeel\nleeuwenbek\nleeuwendeel\nleeuwenhart\nleeuwenhok\nleeuwenhol\nleeuwenhuid\nleeuwenjacht\nleeuwenjong\nleeuwenklauw\nleeuwenkooi\nleeuwenkop\nleeuwenkuil\nleeuwenmanen\nleeuwenmest\nleeuwenmoed\nleeuwenmuil\nleeuwentand\nleeuwentemmer\nleeuwenvlag\nleeuwenwelp\nleeuwerik\nleeuwin\nleeuwtje\nleewater\nleewieken\nlef\nlefdoekje\nlefgozer\nlefhebber\nlefmaker\nleg\nlegaal\nlegaat\nlegalisatie\nlegalisatiekosten\nlegaliseren\nlegalisering\nlegalisme\nlegalistisch\nlegaliteit\nlegaliteitsbeginsel\nlegasthenie\nlegataris\nlegateren\nlegatie\nlegatieraad\nlegatiesecretaris\nlegato\nlegbatterij\nlegboor\nlegbuis\nlegen\nlegenda\nlegendarisch\nlegende\nlegendevorming\nleger\nlegeraalmoezenier\nlegeraanval\nlegeraanvallen\nlegeraanvoerder\nlegerafdeling\nlegerarts\nlegerauto\nlegerbarak\nlegerbasis\nlegerbende\nlegerbericht\nlegerbevelhebber\nlegerbordeel\nlegerchef\nlegercommandant\nlegercommuniqué\nlegerdienst\nlegereenheid\nlegeren\nlegerformatie\nlegergroen\nlegergroep\nlegerhelikopter\nlegerhervorming\nlegerhoofd\nlegerhospitaal\nlegering\nlegerjas\nlegerjassen\nlegerjeep\nlegerkamp\nlegerkapitein\nlegerkapiteins\nlegerkazerne\nlegerkolonel\nlegerkonvooi\nlegerkorps\nlegerleider\nlegerleiding\nlegermacht\nlegermanschappen\nlegermateriaal\nlegermaterieel\nlegermuseum\nlegernummer\nlegeroefening\nlegeroffensief\nlegerofficier\nlegeronderdeel\nlegerorder\nlegerpatrouille\nlegerplaats\nlegerpost\nlegerposten\nlegerpredikant\nlegerschaar\nlegerstaf\nlegerstafchef\nlegerstede\nlegersterkte\nlegertent\nlegertje\nlegertop\nlegertrein\nlegertros\nlegertruck\nlegeruniform\nlegervliegtuig\nlegervoertuig\nlegervoorlichtingsdienst\nlegerwoordvoerder\nleges\nlegeskosten\nleggen\nlegger\nleggerbestand\nlegging\nleghen\nleghorn\nlegio\nlegioen\nlegioensoldaat\nlegionair\nlegionairsziekte\nlegionella\nlegionellabacterie\nlegionellabesmetting\nlegionellagevaar\nlegionellavrij\nlegionellose\nlegislatief\nlegislatuur\nlegistiek\nlegitiem\nlegitimaris\nlegitimatie\nlegitimatiebewijs\nlegitimatiekaart\nlegitimatieplicht\nlegitimeren\nlegitimering\nlegitimist\nlegitimiteit\nlegitimiteitscrisis\nlegkaart\nlegkast\nlegkip\nlegpenning\nlegplank\nlegprent\nlegpuzzel\nlegras\nlegsel\nlegtijd\nleguaan\nlei\nleiband\nleiboom\nleidekker\nleiden\nleider\nleiders\nleidersbeginsel\nleiderschap\nleiderschapscrisis\nleiderschapskwaliteiten\nleiderschapspositie\nleiderschapsrol\nleiderschapsstijl\nleiderschapsverkiezing\nleidersfiguur\nleidersplaats\nleiderspositie\nleidersprincipe\nleidersrol\nleiderstricot\nleiderstrui\nleiderstype\nleiding\nleidingbuis\nleidingdraad\nleidingdruk\nleidingennet\nleidinggeven\nleidinggevend\nleidinggevende\nleidinggevenden\nleidingnet\nleidingstructuur\nleidingsysteem\nleidingwater\nleidmotief\nleidraad\nleidsel\nleidsman\nleidster\nleidsvrouw\nleidtoon\nleien\nleigrijs\nleigroeve\nleikleur\nleikleurig\nleiplaat\nleireep\nleiriem\nleis\nleisel\nleistang\nleisteen\nleitmotiv\nleizeel\nlek\nlekbak\nlekbier\nlekdicht\nlekdorpel\nleken\nlekenapostolaat\nlekenbroeder\nlekenbroederschap\nlekenkerk\nlekenlid\nlekenmoraal\nlekenoordeel\nlekenorde\nlekenpreken\nlekenpubliek\nlekenrechtspraak\nlekenspel\nlekenstaat\nlekenzuster\nlekgat\nlekgeslagen\nlekhoning\nlekkage\nlekken\nlekker\nlekkerbeetje\nlekkerbek\nlekkerbekje\nlekkerbekken\nlekkerbekkerij\nlekkerder\nlekkere\nlekkernij\nlekkers\nlekkertand\nlekkertje\nlekkertjes\nlekolie\nlekrijden\nlekschieten\nleksteen\nlekstroom\nlekverlies\nlekvrij\nlekwater\nlekweerstand\nlel\nleliaard\nleliaards\nlelie\nlelieachtig\nlelieachtige\nlelieblank\nleliebol\nlelietje-van-dalen\nleliewit\nlelijk\nlelijkaard\nlelijkerd\nlelijkheid\nlellebel\nlellebellen\nlellen\nlemen\nlemma\nlemmer\nlemmeraak\nlemmet\nlemmeten\nlemmetje\nlemming\nlemsteraak\nlemuur\nlende\nlendenbiefstuk\nlendendoek\nlendenkussen\nlendenstuk\nlendenwervel\nlenen\nlener\nlenerspas\nleng\nlengen\nlengte\nlengteas\nlengtecirkel\nlengtedal\nlengtedraad\nlengtegraad\nlengtegroei\nlengtemaat\nlengtemeting\nlengteprofiel\nlengterichting\nlengteverschil\nlenig\nlenigen\nlenigheid\nleniging\nlening\nleningenpakket\nleningenportefeuille\nleningkapitaal\nleninglast\nleningsfaciliteit\nleningsvoorwaarde\nleninisme\nleninist\nleninistisch\nlens\nlensafsluiter\nlensdop\nlensinrichting\nlenskap\nlensklep\nlenskop\nlensleiding\nlensopening\nlenspomp\nlenspoort\nlensput\nlensputten\nlensvorm\nlensvormig\nlenswater\nlenswerking\nlente\nlente-ui\nlente-uitje\nlenteaanbieding\nlenteachtig\nlenteavond\nlentebloem\nlentebode\nlentecollectie\nlentedag\nlentefeest\nlentegroen\nlenteklokje\nlentelied\nlentelucht\nlentemaand\nlentenacht\nlentepunt\nlenteroos\nlentes\nlentetijd\nlenteweder\nlenteweer\nlentezon\nlento\nlenze\nlenzen\nlenzenstelsel\nlepel\nlepelaar\nlepelbak\nlepelblad\nlepelboor\nlepeldoosje\nlepelen\nlepelkost\nlepelrek\nlepelslang\nlepeltje\nlepelvaasje\nleperd\nleporello\nleporelloboek\nleppen\nlepperen\nlepra\nleprabacterie\nleprabestrijding\nlepralijder\nleprastichting\nlepreus\nleproos\nleprozenhuis\nleprozenkolonie\nleprozerie\nlepton\nleptosoom\nleptospirose\nleraar\nleraarsambt\nleraarsberoep\nleraarsbetrekking\nleraarschap\nleraarskamer\nleraarsopleiding\nleraarsvak\nleraarsvergadering\nleraren\nlerarenagenda\nlerarenberoep\nlerarenkamer\nlerarenkorps\nlerarenopleiding\nlerarenteam\nlerarentekort\nlerarenvergadering\nlerares\nleren\nlering\nles\nlesaanbod\nlesauto\nlesbevoegdheid\nlesbienne\nlesbisch\nlesbo\nlesboek\nlesboer\nlesbrief\nlesdag\nlesgebouw\nlesgeefster\nlesgeld\nlesgeven\nlesgever\nleslokaal\nlesmateriaal\nlesmethode\nlespakket\nlespraktijk\nlesprogramma\nlesrooster\nlesruimte\nlessen\nlessenaar\nlessenaarsdak\nlessencyclus\nlessenpakket\nlessenreeks\nlessenrooster\nlessenserie\nlessentabel\nlessing\nlesstof\nlest\nleste\nlestijd\nlestoestel\nlesuitval\nlesuur\nlesvliegtuig\nlesvlucht\nleswagen\nlesweek\nletaal\nletaliteit\nlethargie\nlethargisch\nletsel\nletselschade\nletten\nletter\nletterbak\nletterbanket\nletterbeeld\nlettercombinatie\nletterdief\nletterdieverij\nletterdruk\nletteren\nletterenfaculteit\nletterenstudent\nletterenstudie\nlettergieten\nlettergieter\nlettergieterij\nlettergreep\nlettergreepraadsel\nlettergreepschrift\nlettergrootte\nletterhaak\nletterkast\nletterkeer\nletterknecht\nletterknechterij\nletterkorps\nletterkunde\nletterkundig\nletterkundige\nletterlievend\nletterlijk\nletteromzetting\nletterplaat\nletterplank\nletterproef\nletterraadsel\nletterreeks\nletterroof\nletterschrift\nlettersjabloon\nletterslot\nlettersnijder\nlettersoort\nletterspecie\nletterspijs\nletterstaafje\nlettersteker\nlettertang\nletterteken\nlettertje\nlettertype\nlettervermicelli\nlettervers\nlettervorm\nlettervreter\nletterwiel\nletterwielprinter\nletterwijs\nletterwoord\nletterzetten\nletterzetter\nletterzifter\nletterzifterij\nleugen\nleugenaar\nleugenaarster\nleugenachtig\nleugenachtigheid\nleugencampagne\nleugendetector\nleugentaal\nleugentje\nleugenverhaal\nleugenzak\nleuk\nleukemie\nleukemiegeval\nleukemiepatiënt\nleukerd\nleukheid\nleukigheid\nleukocyt\nleukoplast\nleukoplasten\nleukweg\nleunen\nleuning\nleuningstoel\nleunstoel\nleur\nleurder\nleuren\nleurhandel\nleus\nleut\nleute\nleuter\nleuteraar\nleuteren\nleuterig\nleuterkous\nleuterpraat\nleutig\nleuze\nleuzen\nleve\nleven\nlevend\nlevendbarend\nlevende\nlevenden\nlevendgeborene\nlevendig\nlevendigheid\nlevendmakend\nlevenhypotheek\nlevenloos\nlevenmaker\nlevensadem\nlevensader\nlevensangst\nlevensavond\nlevensbaan\nlevensbalans\nlevensbedreigend\nlevensbeginsel\nlevensbehoefte\nlevensbehoeften\nlevensbehoud\nlevensbelang\nlevensbelangrijk\nlevensbenodigdheden\nlevensbericht\nlevensberoving\nlevensbeschouwelijk\nlevensbeschouwing\nlevensbeschrijving\nlevensbesef\nlevensbeëindiging\nlevensblij\nlevensbloed\nlevensboom\nlevensbron\nlevenscyclus\nlevensdag\nlevensdagen\nlevensdelict\nlevensdoel\nlevensdraad\nlevensdrang\nlevensdrift\nlevensdroom\nlevensduur\nlevensduurte\nlevensecht\nlevensechtheid\nlevenseinde\nlevenselixer\nlevenselixir\nlevensenergie\nlevenservaring\nlevensfase\nlevensfilosofie\nlevensfunctie\nlevensgebeurtenis\nlevensgedrag\nlevensgeest\nlevensgeesten\nlevensgeluk\nlevensgemeenschap\nlevensgenieter\nlevensgeschiedenis\nlevensgevaar\nlevensgevaarlijk\nlevensgevoel\nlevensgewoonte\nlevensgezel\nlevensgezellin\nlevensgroot\nlevenshouding\nlevenshypotheek\nlevensinstelling\nlevensinvulling\nlevensjaar\nlevenskans\nlevenskracht\nlevenskrachtig\nlevenskunst\nlevenskunstenaar\nlevenskunstenares\nlevenskwaliteit\nlevenskwestie\nlevenslang\nlevensleer\nlevensles\nlevenslicht\nlevenslied\nlevenslijn\nlevensloop\nlevensloopregeling\nlevenslot\nlevenslust\nlevenslustig\nlevensmaand\nlevensmiddel\nlevensmiddelenbedrijf\nlevensmiddelenbranche\nlevensmiddelenconcern\nlevensmiddelenconcerns\nlevensmiddelendivisie\nlevensmiddelenfabrikant\nlevensmiddelengroothandel\nlevensmiddelenhandel\nlevensmiddelenindustrie\nlevensmiddelenmarkt\nlevensmiddelenpakket\nlevensmiddelenproducent\nlevensmiddelenproducenten\nlevensmiddelenschaarste\nlevensmiddelensector\nlevensmiddelentechnologen\nlevensmiddelentechnologie\nlevensmiddelentechnoloog\nlevensmiddelenvoorziening\nlevensmiddelenwinkel\nlevensmiddelenzaak\nlevensmoe\nlevensmoed\nlevensmoede\nlevensmoeheid\nlevensmotto\nlevensniveau\nlevensnoodzakelijk\nlevensomstandigheden\nlevensonderhoud\nlevensopvatting\nlevensoriëntatie\nlevensovertuiging\nlevensoverzicht\nlevenspad\nlevenspartner\nlevenspatroon\nlevenspeil\nlevensperiode\nlevensperspectief\nlevensproces\nlevensreddend\nlevensreis\nlevensritme\nlevensruimte\nlevenssappen\nlevensscenario\nlevensschets\nlevensschool\nlevenssector\nlevenssfeer\nlevenssituatie\nlevensstandaard\nlevensstijl\nlevensstromen\nlevensstroom\nlevenstaak\nlevensteken\nlevenstestament\nlevensthema\nlevenstijd\nlevensvatbaar\nlevensvatbaarheid\nlevensverhaal\nlevensverlengend\nlevensverlenging\nlevensverrichting\nlevensvervulling\nlevensverwachting\nlevensverzekeraar\nlevensverzekering\nlevensverzekeringmaatschappij\nlevensverzekeringsbedrijf\nlevensverzekeringsmaatschappij\nlevensverzekeringswiskunde\nlevensvisie\nlevensvoorwaarde\nlevensvorm\nlevensvraag\nlevensvraagstuk\nlevensvreugd\nlevensvreugde\nlevensvulling\nlevensvuur\nlevenswandel\nlevenswater\nlevensweg\nlevenswerk\nlevenswijs\nlevenswijsheid\nlevenswijze\nlevenswil\nleventje\nlevenwekkend\nlever\nleveraandoening\nleverancier\nleveranciersafhankelijkheid\nleverancierskrediet\nleveranciersnummer\nleveranciersonafhankelijkheid\nleveranciersoverleg\nleveranciersstandaard\nleverantie\nleverantiecontract\nleverbaar\nleverbeschadiging\nleverbetrouwbaarheid\nlevercarcinoom\nlevercirrose\nleveren\nleverextract\nleverfunctie\nlevering\nleveringsconditie\nleveringscontract\nleveringsdatum\nleveringskosten\nleveringsplicht\nleveringsprijs\nleveringsprogramma\nleveringstermijn\nleveringstijd\nleveringsvergunning\nleveringsverplichting\nleveringsvoorwaarde\nleveringszekerheid\nleverkaas\nleverkanker\nleverkleurig\nleverkruid\nleverkwaal\nleverontsteking\nleverpastei\nleverpatiënt\nleverstoornis\nlevertijd\nlevertraan\nlevertransplantatie\nlevertumor\nlevervlek\nleverweefsel\nleverworst\nleverziekte\nleviathan\nleviet\nlevitatie\nlevitisch\nlevulose\nlexicaal\nlexicograaf\nlexicografie\nlexicografisch\nlexicologie\nlexicologisch\nlexicoloog\nlexicon\nlezen\nlezenaar\nlezenswaard\nlezenswaardig\nlezer\nlezeres\nlezersbereik\nlezersbestand\nlezersbijdragen\nlezersbrief\nlezersgroep\nlezerskring\nlezersmarkt\nlezersonderzoek\nlezerspanel\nlezerspubliek\nlezersrubriek\nlezersservice\nlezing\nlezingencircuit\nlezingencyclus\nlezingenserie\nlezingentournee\nliaan\nliaison\nliaisonofficier\nliane\nlias\nliaspen\nlibel\nlibelle\nliberaal\nliberaal-democraat\nliberaal-democratisch\nliberalisatie\nliberaliseren\nliberalisering\nliberaliseringsbeleid\nliberaliseringsmaatregel\nliberaliseringsproces\nliberaliseringsprogramma\nliberalisme\nliberalistisch\nliberaliteit\nlibero\nlibertair\nlibertijn\nlibertijns\nlibidineus\nlibido\nlibrettist\nlibretto\nlibrettoschrijver\nlibrije\nlibrium\nlicentiaat\nlicentiaatsdiploma\nlicentiaatsthesis\nlicentiaatsverhandeling\nlicentiate\nlicentie\nlicentieaanvraag\nlicentiebeheer\nlicentiecommissie\nlicentiegever\nlicentiehouder\nlicentiehoudster\nlicentiekosten\nlicentiemodel\nlicentienemer\nlicentieovereenkomst\nlicentiepolitiek\nlicentierechten\nlicentieregeling\nlicentiestructuur\nlicentiesysteem\nlicentievoorwaarde\nlicentievoorwaarden\nlichaam\nlichaamsarbeid\nlichaamsbeheersing\nlichaamsbeweging\nlichaamsbouw\nlichaamscel\nlichaamsconditie\nlichaamscultuur\nlichaamsdeel\nlichaamseigen\nlichaamsfunctie\nlichaamsgebrek\nlichaamsgeur\nlichaamsgewicht\nlichaamshaar\nlichaamsholte\nlichaamshouding\nlichaamskracht\nlichaamslengte\nlichaamsmaten\nlichaamsmateriaal\nlichaamsoefening\nlichaamsopening\nlichaamsoppervlak\nlichaamsproces\nlichaamsschema\nlichaamsslagader\nlichaamsstraf\nlichaamstaal\nlichaamstechniek\nlichaamstemperatuur\nlichaamsverzorging\nlichaamsvet\nlichaamsvocht\nlichaamsvorm\nlichaamswarmte\nlichamelijk\nlichamelijkheid\nlicht\nlicht verteerbaar\nlicht-donker\nlichtaansluiting\nlichtbad\nlichtbak\nlichtbaken\nlichtbalk\nlichtbeeld\nlichtbeige\nlichtbewapend\nlichtblauw\nlichtblond\nlichtboei\nlichtbrekend\nlichtbron\nlichtbruin\nlichtbuis\nlichtbundel\nlichtcirkel\nlichtdicht\nlichtdivisie\nlichtdoorlatend\nlichtdruk\nlichtdrukpapier\nlichtecht\nlichtechtheid\nlichteffect\nlichtekooi\nlichtelaaie\nlichtelijk\nlichten\nlichtenergie\nlichter\nlichterlaaie\nlichtfilter\nlichtflits\nlichtgas\nlichtgebied\nlichtgebieden\nlichtgebogen\nlichtgebouwd\nlichtgeel\nlichtgekleurd\nlichtgelovig\nlichtgelovigheid\nlichtgeraakt\nlichtgeraaktheid\nlichtgevend\nlichtgevoelig\nlichtgevoeligheid\nlichtgewapend\nlichtgewicht\nlichtgewond\nlichtgewonde\nlichtgolf\nlichtgrijs\nlichtgroen\nlichthal\nlichthart\nlichthartig\nlichtheid\nlichthinder\nlichting\nlichtingstijd\nlichtinstallatie\nlichtintensiteit\nlichtinval\nlichtjaar\nlichtjesfeest\nlichtkap\nlichtkappen\nlichtkast\nlichtkegel\nlichtknop\nlichtkoepel\nlichtkogel\nlichtkoker\nlichtkracht\nlichtkrans\nlichtkrant\nlichtkring\nlichtkroon\nlichtleiding\nlichtlichaam\nlichtlijnen\nlichtloep\nlichtman\nlichtmast\nlichtmatroos\nlichtmetaal\nlichtmetalen\nlichtmeter\nlichtmis\nlichtmissen\nlichtmist\nlichtmotor\nlichtnet\nlichtnetadapter\nlichtopbrengst\nlichtopstand\nlichtpaars\nlichtpen\nlichtpistool\nlichtplan\nlichtpuls\nlichtpunt\nlichtreclame\nlichtrijk\nlichtrood\nlichtroze\nlichtschakelaar\nlichtschakering\nlichtscherm\nlichtschijnsel\nlichtschip\nlichtschuw\nlichtsein\nlichtshow\nlichtsignaal\nlichtsluis\nlichtsnelheid\nlichtspel\nlichtspoor\nlichtspoormunitie\nlichtstad\nlichtsterk\nlichtsterkte\nlichtstoet\nlichtstraal\nlichtstraat\nlichtstreep\nlichtstroom\nlichttherapie\nlichttoren\nlichtvaardig\nlichtvaardigheid\nlichtvaardiglijk\nlichtval\nlichtveld\nlichtverschijnsel\nlichtvervuiling\nlichtvlek\nlichtvoetig\nlichtvoetigheid\nlichtwachter\nlichtwaterreactor\nlichtzijde\nlichtzinnig\nlichtzinnigheid\nlichtzwak\nlictor\nlid\nlidcactus\nlidgeld\nlidkaart\nlidland\nlidmaat\nlidmaatschap\nlidmaatschapsaanvraag\nlidmaatschapsbewijs\nlidmaatschapsgeld\nlidmaatschapskaart\nlidnummer\nlidocaïne\nlidstaat\nlidwoord\nliebaard\nlied\nliedboek\nliedbundel\nliedcyclus\nlieden\nliederavond\nliederboek\nliederdichter\nliederen\nliederencyclus\nliederlijk\nliederlijkheid\nliedje\nliedjesfestival\nliedjesprogramma\nliedjesschrijver\nliedjeswedstrijd\nliedjeszanger\nliedkunst\nliedrepertoire\nliedtekst\nliedvorm\nliedzanger\nlief\nliefdadig\nliefdadigheid\nliefdadigheidsactie\nliefdadigheidsbal\nliefdadigheidsbijeenkomst\nliefdadigheidsconcert\nliefdadigheidsfonds\nliefdadigheidsinstelling\nliefdadigheidsorganisatie\nliefdadigheidswerk\nliefde\nliefdeband\nliefdebetrekking\nliefdebetuiging\nliefdebeurt\nliefdeblijk\nliefdebrief\nliefdedaad\nliefdedienst\nliefdegave\nliefdegebod\nliefdegeschiedenis\nliefdegesticht\nliefdegift\nliefdeleven\nliefdeloos\nliefdeloosheid\nliefdemaal\nliefderijk\nliefdesaffaire\nliefdesavontuur\nliefdesbaby\nliefdesband\nliefdesbetrekking\nliefdesbetuiging\nliefdesbrief\nliefdesdaad\nliefdesdrama\nliefdesdrank\nliefdesenergie\nliefdesfilm\nliefdesgedicht\nliefdesgeluk\nliefdesgeschiedenis\nliefdesgodin\nliefdeskoppel\nliefdesleed\nliefdesleven\nliefdeslied\nliefdesmart\nliefdesnaam\nliefdesnacht\nliefdesnest\nliefdesnestje\nliefdespaar\nliefdespad\nliefdespartner\nliefdespel\nliefdespoëzie\nliefdesrelatie\nliefdesroman\nliefdesscène\nliefdesspel\nliefdesverdriet\nliefdesverhaal\nliefdesverhouding\nliefdesverklaring\nliefdesverraad\nliefdesvuur\nliefdeverklaring\nliefdevol\nliefdewerk\nliefdezuster\nliefelijk\nliefelijkheid\nliefhebben\nliefhebber\nliefhebberen\nliefhebberij\nliefhebberijtoneel\nliefhebberstoneel\nliefhebster\nliefheid\nliefje\nliefjes\nliefkozen\nliefkozerij\nliefkozing\nlieflijk\nlieflijkheid\nliefst\nlieftallig\nlieftalligheid\nliegbeest\nliegen\nliep\nlier\nlierdicht\nlierdichter\nlieren\nlierenman\nliervogel\nliervormig\nlierzang\nlies\nliesblessure\nliesbreuk\nlieskanaal\nlieslaars\nliesoperatie\nliesstreek\nliet\nlieve\nlieveheer\nlieveheersbeestje\nlieveling\nlievelingsauteur\nlievelingsbezigheid\nlievelingsboek\nlievelingsdichter\nlievelingsdier\nlievelingseten\nlievelingsfilm\nlievelingsgerecht\nlievelingshond\nlievelingsidee\nlievelingskleur\nlievelingskost\nlievelingsliedje\nlievelingsschrijver\nlievelingsuitdrukking\nlievelingswerk\nlievelingszoon\nlievemoederen\nlieven\nliever\nlieverd\nlieverdje\nlieverlede\nlieverlee\nlievevrouw\nlievevrouwebedstro\nlievevrouwebeestje\nlievig\nlievigheid\nlifestyle\nlifestyleblad\nliflaf\nliflaffen\nliflafje\nlift\nliftboy\nliftdeur\nliften\nliftenfabriek\nlifter\nliftjongen\nliftkoker\nliftkooi\nliftkooien\nliftmonteur\nliftmuziek\nliftschacht\nliftster\nliftstertje\nliga\nligament\nligatuur\nligbad\nligbank\nligbed\nligbox\nligboxenstal\nligboxstal\nligdag\nligfiets\nliggeld\nliggen\nliggend\nligger\nligging\nlighal\nlight verse\nlightrail\nlightrailverbinding\nligkuur\nlignine\nligplaats\nligstoel\nligtaxi\nliguster\nligusterhaag\nligusterpijlstaart\nligwei\nligweide\nlij\nlijboord\nlijdelijk\nlijdelijkheid\nlijden\nlijdend\nlijdensaankondiging\nlijdensbeker\nlijdensdruk\nlijdensgeschiedenis\nlijdenskelk\nlijdenspreek\nlijdenstijd\nlijdensverhaal\nlijdensweek\nlijdensweg\nlijder\nlijderes\nlijdzaam\nlijdzaamheid\nlijf\nlijfarts\nlijfblad\nlijfeigene\nlijfeigenschap\nlijfelijk\nlijfgarde\nlijfgeur\nlijfgoed\nlijfje\nlijfknecht\nlijflied\nlijfrente\nlijfrente-uitkering\nlijfrenteaftrek\nlijfrentekapitaal\nlijfrentekas\nlijfrentepolis\nlijfrentepremie\nlijfrenteverzekering\nlijfsbehoud\nlijfsdwang\nlijfsgevaar\nlijfsieraad\nlijfspreuk\nlijfstraf\nlijfstraffelijk\nlijfstuk\nlijftocht\nlijfwacht\nlijk\nlijkauto\nlijkbaar\nlijkbalseming\nlijkbezorger\nlijkbezorging\nlijkbidder\nlijkbleek\nlijkbus\nlijkdienst\nlijkdrager\nlijken\nlijkengif\nlijkenhuis\nlijkenlucht\nlijkenpikker\nlijkenpikkerij\nlijkenroof\nlijkfeest\nlijkkist\nlijkkleed\nlijkkleren\nlijkkleur\nlijkkleurig\nlijkkoets\nlijkkrans\nlijklucht\nlijkmaal\nlijkoffer\nlijkopening\nlijkoven\nlijkplechtigheid\nlijkrede\nlijkredenen\nlijkroof\nlijkschennis\nlijkschouwer\nlijkschouwing\nlijkstaatsie\nlijkstijfheid\nlijkstoet\nlijkverbranding\nlijkwa\nlijkwade\nlijkwagen\nlijkwit\nlijm\nlijmband\nlijmen\nlijmer\nlijmerig\nlijmig\nlijmkam\nlijmketel\nlijmklem\nlijmknecht\nlijmkwast\nlijmnaad\nlijmpers\nlijmpoging\nlijmpot\nlijmschroef\nlijmsnuivend\nlijmsoort\nlijmstang\nlijmstof\nlijmstok\nlijmtang\nlijmverf\nlijmvlak\nlijn\nlijnbaan\nlijnboot\nlijnbus\nlijncliché\nlijndiagram\nlijndienst\nlijndienstmaatschappij\nlijndienstvervoer\nlijndikte\nlijndraaier\nlijnen\nlijnennet\nlijnenpatroon\nlijnenspel\nlijnfunctie\nlijnfunctionaris\nlijngravure\nlijnintegraal\nlijnkiezer\nlijnkoek\nlijnmanagement\nlijnmeel\nlijnolie\nlijnopzichter\nlijnorganisatie\nlijnrecht\nlijnrechter\nlijnscheepvaart\nlijnschip\nlijnslager\nlijnstijl\nlijnstoring\nlijnstuk\nlijntaxi\nlijntekenen\nlijntekening\nlijntje\nlijntoestel\nlijntrekken\nlijntrekker\nlijnvaart\nlijnverbinding\nlijnvliegtuig\nlijnvlucht\nlijnvoering\nlijnvormig\nlijnwaad\nlijnwerker\nlijnzaad\nlijnzaadkoek\nlijnzaadmeel\nlijnzaadolie\nlijp\nlijs\nlijst\nlijstaanvoerder\nlijstduwer\nlijsten\nlijstenklem\nlijstenmaker\nlijstenmakerij\nlijster\nlijsterbes\nlijsterboog\nlijstkiesdeler\nlijststem\nlijsttoneel\nlijsttrekker\nlijsttrekkerschap\nlijsttrekkersdebat\nlijsttrekster\nlijstverbinding\nlijstvolgorde\nlijstvorming\nlijstwerk\nlijven\nlijvig\nlijvigheid\nlijwaarts\nlijzebet\nlijzeil\nlijzen\nlijzig\nlijzigheid\nlijzij\nlijzijde\nlik\nlik op stuk\nlik-op-stukbeleid\nlikdoorn\nlikdoornsnijder\nlikdoornzalf\nlikdoren\nlikdorenzalf\nlikeur\nlikeurfles\nlikeurglaasje\nlikeurglas\nlikeurstel\nlikeurstoker\nlikeurstokerij\nlikeurtje\nlikhout\nlikkebaarden\nlikken\nlikkepot\nlikker\nliksteen\nlikstok\nlikzout\nlil\nlila\nlila-achtig\nlillen\nlillig\nlilliputachtig\nlilliputter\nliman\nlimbo\nlimbus\nlimerick\nlimes\nlimiet\nlimietpaal\nlimiettijd\nlimit\nlimitatief\nlimiteren\nlimitering\nlimo\nlimoen\nlimoensap\nlimoenschil\nlimonade\nlimonadefabrikant\nlimonadesiroop\nlimousin\nlimousine\nlindaan\nlinde\nlindeblad\nlindebloesem\nlindebloesemthee\nlindeboom\nlindehout\nlindehouten\nlindelaan\nlinden\nlindethee\nline-up\nlinea recta\nlineair\nlineamenten\nlineariseren\nlinearisering\nlineariteit\nlinesman\nlingerie\nlingeriefabrikant\nlingerielijn\nlingeriewinkel\nlingua franca\nlinguïst\nlinguïstiek\nlinguïstisch\nliniaal\nliniaalbalk\nliniatuur\nlinie\nlinieermachine\nlinieschip\nlinietroepen\nliniment\nliniëren\nlink\nlinken\nlinker\nlinkeraanvaller\nlinkerarm\nlinkerbaan\nlinkerbeen\nlinkerborst\nlinkerbovenhoek\nlinkerd\nlinkerdeel\nlinkerdijbeen\nlinkerduim\nlinkerenkel\nlinkerflank\nlinkerhand\nlinkerhelft\nlinkerheup\nlinkerhoek\nlinkerkant\nlinkerkantlijn\nlinkerknie\nlinkerkolom\nlinkerkuit\nlinkermarge\nlinkermiddenvelder\nlinkermuisknop\nlinkeroever\nlinkeroog\nlinkeroor\nlinkerpagina\nlinkerpink\nlinkerrijstrook\nlinkerschoen\nlinkerschouder\nlinkerspits\nlinkervleugel\nlinkervleugelverdediger\nlinkervoet\nlinkervoorpoot\nlinkerwang\nlinkerzij\nlinkerzijde\nlinks\nlinks-extremistisch\nlinks-liberaal\nlinks-liberalisme\nlinks-radicaal\nlinksachter\nlinksaf\nlinksback\nlinksbenig\nlinksbinnen\nlinksboven\nlinksbuiten\nlinksdraaiend\nlinkse\nlinksgeoriënteerd\nlinkshalf\nlinkshandig\nlinkshandigheid\nlinksheid\nlinksig\nlinksom\nlinksonder\nlinkspoot\nlinksvoetig\nlinksvoor\nlinktrainer\nlinnen\nlinnengoed\nlinnenjuffrouw\nlinnenkamer\nlinnenkast\nlinnennaaister\nlinnenwever\nlino\nlinoleum\nlinoleumdruk\nlinoleumsnede\nlinolzuur\nlinosnede\nlinotype\nlint\nlintbebouwing\nlintcassette\nlintdorp\nlintje\nlintjesjager\nlintjesregen\nlintmeter\nlintvis\nlintvormig\nlintworm\nlintzaag\nlinze\nlinzensoep\nlip\nlipbloem\nlipbloemig\nlipide\nlipje\nliplap\nliplezen\nlipogram\nliposuctie\nlippen\nlippendienst\nlippenpommade\nlippenrouge\nlippenstift\nlippenzalf\nlippizaner\nlipssleutel\nlipsslot\nlipstick\nlipsynchroon\nlipvis\nlipvissen\nliquida\nliquidateur\nliquidatie\nliquidatie-uitverkoop\nliquidatiewaarde\nliquidatiewinst\nliquide\nliquideren\nliquiditeit\nliquiditeitsmoeilijkheden\nliquiditeitspositie\nliquiditeitsprobleem\nliquiditeitssteun\nliquiditeitstekort\nlira\nlire\nlis\nlisbloem\nlisdodde\nliseen\nlispelen\nlispen\nlissen\nlist\nlisteria\nlistig\nlistigaard\nlistigheid\nlistiglijk\nlisting\nlitanie\nliter\nliteraat\nliterair\nliterair-historisch\nliterair-kritisch\nliterarisch\nliterator\nliteratuur\nliteratuurbeschouwing\nliteratuurcriticus\nliteratuurfestival\nliteratuurgeschiedenis\nliteratuurhistoricus\nliteratuurkritiek\nliteratuurliefhebber\nliteratuurlijst\nliteratuurmap\nliteratuuronderwijs\nliteratuuronderzoek\nliteratuuropgave\nliteratuuropvatting\nliteratuuroverzicht\nliteratuurprijs\nliteratuurprofessor\nliteratuursociologie\nliteratuurstudie\nliteratuurtheorie\nliteratuurverwijzing\nliteratuurwetenschap\nliteratuurwetenschappelijk\nliteratuurwetenschapper\nliterfles\nliterglas\nlitermaat\nliterpak\nliterprijs\nlithium\nlitho\nlithochromie\nlithograaf\nlithograferen\nlithografie\nlithografisch\nlithosfeer\nlitigieus\nlitotes\nlits-jumeaux\nlitteken\nlittekenvorming\nlittekenweefsel\nlitterair\nlitterator\nlitteratuur\nlitteratuurgeschiedenis\nliturg\nliturgie\nliturgieboek\nliturgiek\nliturgisch\nlive\nlive-cd\nlive-uitvoering\nlive-uitzending\nliveact\nlivealbum\nliveband\nliveconcert\nlivemuziek\nliveopname\nliveoptreden\nliveprogramma\nliveshow\nlivetelevisie\nliving\nlivrei\nlivreibediende\nlivreiknecht\nlivret\nliëren\nloafer\nloafers\nlob\nlobben\nlobberen\nlobberig\nlobbes\nlobbesachtig\nlobbesen\nlobbig\nlobby\nlobbyactiviteit\nlobbybeweging\nlobbycircuit\nlobbyen\nlobbygroep\nlobbying\nlobbyisme\nlobbyist\nlobbyorganisatie\nlobbywerk\nlobelia\nloboor\nlobotomie\nloc\nlocatie\nlocatiebalk\nlocatiedirecteur\nlocatief\nlocatiekeuze\nlocatiemanager\nlocatiesubsidie\nlocatietheater\nlocatiewijzer\nlocker\nloco\nlocoburgemeester\nlocomobiel\nlocomotief\nlocopreparaat\nlocosecretaris\nlocus\nlodder\nlodderachtig\nlodderen\nlodderig\nlodderogen\nlodderoog\nloden\nloding\nloeder\nloef\nloefhouder\nloefwaarts\nloefzij\nloefzijde\nloeien\nloeier\nloeihard\nloelav\nloempia\nloens\nloensen\nloep\nloepen\nloepzuiver\nloer\nloeren\nloeris\nloerogen\nloervogel\nloet\nloeten\nloeven\nloever\nloevert\nlof\nlofbazuin\nlofdicht\nloffelijk\nlofgezang\nloflied\nlofprijzend\nlofprijzing\nlofpsalm\nlofrede\nlofredenaar\nlofredenen\nlofspraak\nloftrompet\nloftuiting\nlofwaardig\nlofwerk\nlofzang\nlofzanger\nlog\nlogaritme\nlogaritmestelsel\nlogaritmetafel\nlogaritmisch\nlogbestand\nlogboek\nloge\nlogee\nlogeeradres\nlogeerbed\nlogeergast\nlogeerhuis\nlogeerkamer\nlogeerpartij\nlogeerruimte\nlogement\nlogementhouder\nlogen\nlogenstraffen\nlogenstraffing\nlogeren\nloggegevens\nloggen\nlogger\nloggia\nlogheid\nlogica\nlogicus\nlogies\nlogisch\nlogischerwijs\nlogischerwijze\nlogistiek\nlogistisch\nloglijn\nlogo\nlogogram\nlogopedie\nlogopedisch\nlogopedist\nlogopediste\nlogos\nlogé\nloipe\nlok\nlokaal\nlokaalspoorweg\nlokaaltje\nlokaaltrein\nlokaalvredebreuk\nlokaas\nlokalisatie\nlokaliseren\nlokalisering\nlokaliteit\nlokartikel\nlokazen\nlokduif\nlokeend\nloken\nloket\nloketbeambte\nloketbediende\nloketfunctie\nloketkast\nlokettenhal\nlokettist\nlokettiste\nlokfluitje\nlokken\nlokker\nlokkertje\nlokkig\nlokmiddel\nlokroep\nlokspijs\nlokstem\nlokstof\nlokus\nlokvink\nlokvogel\nlol\nlolbroek\nlolbroekerij\nlolita\nlollen\nlollepot\nlolletje\nlollig\nlolly\nlom\nlombok\nlomig\nlommer\nlommerd\nlommerdbriefje\nlommerdhouder\nlommerig\nlommerrijk\nlomp\nlompen\nlompenkoopman\nlompenpakhuis\nlompenpapier\nlompenproletariaat\nlomperd\nlomperik\nlompheid\nlompigheid\nlompweg\nlonen\nlonend\nlong\nlongaandoening\nlongader\nlongarts\nlongblaasje\nlongbloeding\nlongcapaciteit\nlongcarcinoom\nlongdrink\nlongembolie\nlongemfyseem\nlongfoto\nlongfunctie\nlonggezwel\nlongitudinaal\nlongkanker\nlongkruid\nlongkwab\nlonglist\nlongoedeem\nlongonderzoek\nlongontsteking\nlongpatiënt\nlongpijp\nlongprobleem\nlongroom\nlongspecialist\nlongstayafdeling\nlongtering\nlongtransplantatie\nlongtrechter\nlongtuberculose\nlongtumor\nlongvis\nlongvissen\nlongweefsel\nlongziekte\nlonk\nlonken\nlont\nlontarpalm\nloochenaar\nloochenen\nloochening\nlood\nloodacetaat\nloodachtig\nloodarm\nloodbelasting\nlooderts\nloodgehalte\nloodgieter\nloodgieterij\nloodgieterstas\nloodglans\nloodglit\nloodgrijs\nloodhagel\nloodhoudend\nloodje\nloodkabel\nloodkleur\nloodkleurig\nloodlijn\nloodmijn\nloodoxide\nloodrecht\nloods\nloodsboot\nloodsbriefje\nloodsdienst\nloodsdwang\nloodsen\nloodsgeld\nloodskotter\nloodsman\nloodsmannetje\nloodsschuit\nloodsuiker\nloodsulfaat\nloodsvaartuig\nloodsvlag\nloodswezen\nloodverbinding\nloodvergiftiging\nloodvervanger\nloodvrij\nloodwit\nloodziekte\nloodzout\nloodzwaar\nloof\nloofboom\nloofbos\nloofhout\nloofhut\nloofrijk\nloofwerk\nloog\nloogwater\nloogzout\nlooi\nlooien\nlooier\nlooierij\nlooikuip\nlooistof\nlooizuur\nlook\nlook-zonder-look\nlookalike\nlooksaus\nlooksmaak\nlookworst\nloom\nloomheid\nloon\nloon-prijsspiraal\nloonaanpassing\nloonachterstand\nloonactie\nloonadministratie\nloonakkoord\nloonarbeid\nloonarbeider\nloonbedrijf\nloonbeheersing\nloonbelasting\nloonbelastingverklaring\nloonbeleid\nloonberekening\nloonbeslag\nloonbetaling\nloonblokkering\nloonbod\nloonbriefje\nlooncompensatie\nloonconcurrentie\nloonconflict\nloondaling\nloonderving\nloondienst\nloondifferentiatie\nloondoorbetaling\nloondruk\nlooneis\nloonevolutie\nloonexplosie\nloonfiche\nloonfront\nloongebouw\nloongeschil\nloongolf\nloongrens\nloongroei\nloongroep\nloonhandicap\nloonheffing\nloonindexering\nlooninflatie\nlooninkomen\nlooninlevering\nloonklasse\nloonkloof\nloonkost\nloonkosten\nloonkostenhandicap\nloonkostenmatiging\nloonkostenontwikkeling\nloonkostenstijging\nloonkostensubsidie\nloonkostenverlaging\nloonlasten\nloonlastenverlaging\nloonlijst\nloonmaatregel\nloonmassa\nloonmatiging\nloonniveau\nloonnorm\nloonoffer\nloononderhandeling\nloonontwikkeling\nloonopslag\nloonoverleg\nloonpauze\nloonpeil\nloonplafond\nloonpolitiek\nloonregeling\nloonronde\nloonruimte\nloonschaal\nloonslaaf\nloonsom\nloonspecificatie\nloonstaat\nloonstandaard\nloonstelsel\nloonstijging\nloonstop\nloonstrijd\nloonstrook\nloonstrookje\nloonstructuur\nloonsubsidie\nloonsuppletieregeling\nloonsuppletieregelingen\nloonsverbetering\nloonsverhoging\nloonsverlaging\nloontechnisch\nloontijdvak\nloontoeslag\nloontrekkend\nloontrekkende\nloontrekker\nloonverlies\nloonverschil\nloonvoet\nloonvoorschrift\nloonvorming\nloonwerk\nloonwerker\nloonwerkersbedrijf\nloonwet\nloonwig\nloonzakje\nloop\nloopafstand\nloopbaan\nloopbaanadvies\nloopbaanadviseur\nloopbaanbegeleiding\nloopbaanbeleid\nloopbaanenquête\nloopbaanonderbreking\nloopbaanontwikkeling\nloopbaanperspectief\nloopbaanplan\nloopbaanplanning\nloopbaanverwachting\nloopband\nloopbrug\nloopeend\nloopfiets\nloopgips\nloopgraaf\nloopgracht\nloopgravenkoorts\nloopgravenoorlog\nloopgravenstelling\nloopgravenstelsel\nloopgroep\nloophek\nlooping\nloopje\nloopjongen\nloopkat\nloopkever\nloopknecht\nloopkraan\nlooplamp\nloopmare\nloopmeisje\nloopneus\nloopnummer\nloopoor\nlooppad\nlooppas\nloopplank\nlooppop\nloopprobleem\nlooprek\nlooprichting\nlooproute\nloops\nloopschoen\nloopsheid\nloopsnelheid\nloopstal\nloopster\nloopstoel\nlooptechniek\nlooptijd\nlooptouw\nlooptraining\nloopvermogen\nloopvlak\nloopvogel\nloopvuur\nloopwagen\nloopwerk\nloos\nloosheid\nloospijp\nloot\nlootje\nlopen\nlopend\nlopendebandwerk\nloper\nloperig\nloperpaar\nlopertje\nlor\nlord\nlorejas\nlorentzkracht\nlorgnet\nlori\nlork\nlorkenboom\nlorkenlaan\nlorre\nlorren\nlorrenboer\nlorrendraaier\nlorrenkraam\nlorretje\nlorrie\nlorrig\nlos\nlos-vast\nlosbaar\nlosbandig\nlosbandigheid\nlosbarsten\nlosbarsting\nlosbinden\nlosbladig\nlosbol\nlosbollig\nlosbranden\nlosbranding\nlosbreken\nloscedel\nlosceel\nlosdag\nlosdraaien\nloser\nlosgaan\nlosgeld\nlosgemaakt\nlosgeslagen\nlosgooien\nloshaken\nloshalen\nloshangen\nlosheid\nloshoofd\nlosjes\nlosknopen\nloskomen\nloskopen\nloskoppelen\nloskoppeling\nloskrijgen\nloslaten\nloslating\nlosliggend\nloslippig\nloslippigheid\nloslopen\nloslopend\nlosmaken\nlosmaking\nlospeuteren\nlosplaats\nlosprijs\nlosraken\nlosrijden\nlosrukken\nlosscheuren\nlosschieten\nlosschroeven\nlosschudden\nlosse\nlossebandstoot\nlossen\nlosser\nlossigheid\nlossing\nlosslaan\nlosspringen\nlosstaan\nlostornen\nlostrekken\nlosvijzen\nlosvliegen\nloswal\nlosweg\nlosweken\nloswerken\nloswoelen\nloswringen\nloszinnig\nloszinnigheid\nloszitten\nlot\nlota\nloteling\nloten\nlotenlening\nloterij\nloterijbriefje\nloterijkantoor\nloterijlijst\nloterijmarkt\nloterijspel\nlotgenoot\nlotgenote\nlotgenotencontact\nlotgeval\nlotgevallen\nloting\nlotingsnummer\nlotingssysteem\nlotion\nlotje\nlotnummer\nlotsbedeling\nlotsbepaling\nlotsbeschikking\nlotsbestel\nlotsbestemming\nlotsverbetering\nlotsverbonden\nlotsverbondenheid\nlotswisseling\nlotto\nlottoballetje\nlottokaart\nlottospel\nlotus\nlotusbloem\nlotuseter\nlotushouding\nlotussen\nlouche\nlounge\nloungemuziek\nloungen\nlouter\nlouteraar\nlouteren\nlouterheid\nloutering\nlouteringsberg\nlouteringsproces\nlouvredeur\nlouw\nlouwen\nlouwmaand\nlovegame\nlovehandles\nloven\nlovenswaardig\nlover\nloverboy\nloverdak\nloverwerk\nlow budget\nlow cost\nlow profile\nlowbudgetfilm\nlowbudgetproductie\nloyaal\nloyalist\nloyalistisch\nloyaliteit\nloyaliteitsconflict\nloyaliteitsprobleem\nloyaliteitsprogramma\nloyaliteitsverklaring\nloyauteit\nlozen\nlozing\nlozingseis\nlozingsnorm\nlozingspijp\nlozingspunt\nlozingsrecht\nlozingsvergunning\nlp\nlpg\nlsd\nlso\nlto\nlts\nlubben\nlubberen\nlubberiaans\nlubberig\nlucht\nluchtaanval\nluchtacrobaat\nluchtacrobatiek\nluchtactie\nluchtafvoer\nluchtafweer\nluchtafweergeschut\nluchtafweerraket\nluchtalarm\nluchtbad\nluchtballon\nluchtband\nluchtbasis\nluchtbed\nluchtbehandeling\nluchtbehandelingsinstallatie\nluchtbel\nluchtbelwaterpas\nluchtbescherming\nluchtbeschermingsoefening\nluchtbevochtiger\nluchtbeweging\nluchtbezoedeling\nluchtbombardement\nluchtbrug\nluchtbuis\nluchtbuks\nluchtcampagne\nluchtcel\nluchtcirculatie\nluchtcorridor\nluchtdeeltje\nluchtdekking\nluchtdicht\nluchtdienst\nluchtdoelartillerie\nluchtdoelgeschut\nluchtdoelraket\nluchtdoop\nluchtdoorlatend\nluchtdruk\nluchtdrukpistool\nluchtdrukverschil\nluchtduel\nluchten\nluchter\nluchteskader\nluchtfietser\nluchtfietserij\nluchtfilter\nluchtfoto\nluchtgat\nluchtgeest\nluchtgekoeld\nluchtgesteldheid\nluchtgevaar\nluchtgevecht\nluchtgitaar\nluchtgolf\nluchthart\nluchthartig\nluchthartigheid\nluchthaven\nluchthavenautoriteit\nluchthavenbedrijf\nluchthavenbelasting\nluchthavendirectie\nluchthavenexploitant\nluchthavengebouw\nluchthavenpersoneel\nluchthavenpolitie\nluchthaventerrein\nluchthavenuitbater\nluchtig\nluchtigheid\nluchtigjes\nluchtinfanterie\nluchtinlaat\nluchtje\nluchtkamer\nluchtkanaal\nluchtkartering\nluchtkasteel\nluchtklep\nluchtkoeling\nluchtkoker\nluchtkolom\nluchtkussen\nluchtkussenvaartuig\nluchtkwaliteit\nluchtlaag\nluchtlanding\nluchtlandingsdivisie\nluchtlandingstroepen\nluchtledig\nluchtledige\nluchtleiding\nluchtlijn\nluchtmacht\nluchtmachtbasis\nluchtmachtbevelhebber\nluchtmachtchef\nluchtmachtgeneraal\nluchtmachtofficier\nluchtmachtpersoneel\nluchtmachtstaf\nluchtmassa\nluchtmatras\nluchtmobiel\nluchtmonster\nluchtnet\nluchtoffensief\nluchtoorlog\nluchtoperatie\nluchtopname\nluchtoverwicht\nluchtperspomp\nluchtpijp\nluchtpiraat\nluchtplaats\nluchtpomp\nluchtpost\nluchtpostbrief\nluchtpostdienst\nluchtpostvel\nluchtpostverkeer\nluchtpostzegel\nluchtramp\nluchtrecht\nluchtreclame\nluchtreis\nluchtreiziger\nluchtreus\nluchtrooster\nluchtroute\nluchtruim\nluchtschip\nluchtschroef\nluchtshow\nluchtslang\nluchtsluis\nluchtsnelheid\nluchtspiegeling\nluchtspoorweg\nluchtsprong\nluchtsteun\nluchtstoring\nluchtstreek\nluchtstrijdkrachten\nluchtstroming\nluchtstroom\nluchttemperatuur\nluchttoevoer\nluchttransport\nluchttrilling\nluchtvaart\nluchtvaartakkoord\nluchtvaartalliantie\nluchtvaartautoriteit\nluchtvaartbedrijf\nluchtvaartbedrijven\nluchtvaartbeleid\nluchtvaartbeurs\nluchtvaartbranche\nluchtvaartcluster\nluchtvaartconcern\nluchtvaartcrisis\nluchtvaartdienst\nluchtvaartgebied\nluchtvaartgeschiedenis\nluchtvaartgroep\nluchtvaarthistorie\nluchtvaartindustrie\nluchtvaartinspectie\nluchtvaartlijn\nluchtvaartlobby\nluchtvaartmaatschappij\nluchtvaartmarkt\nluchtvaartmuseum\nluchtvaartonderneming\nluchtvaartongeluk\nluchtvaartorganisatie\nluchtvaartovereenkomst\nluchtvaartpersoneel\nluchtvaartpionier\nluchtvaartpolitie\nluchtvaartpolitiek\nluchtvaartrecht\nluchtvaartschool\nluchtvaartsector\nluchtvaartshow\nluchtvaarttechniek\nluchtvaarttechnologie\nluchtvaartuig\nluchtvaartverdrag\nluchtvaartverkeer\nluchtvaartwereld\nluchtvaartwet\nluchtverbinding\nluchtverdediging\nluchtverdedigingsraket\nluchtverdedigingssysteem\nluchtverfrisser\nluchtvering\nluchtverkeer\nluchtverkeersbegeleiding\nluchtverkeersbeveiliging\nluchtverkeerscontrole\nluchtverkeersleider\nluchtverkeersleiding\nluchtverkenning\nluchtverontreiniging\nluchtverplaatsing\nluchtverschijnsel\nluchtververser\nluchtverversing\nluchtverversingssysteem\nluchtvervoer\nluchtvervuiling\nluchtverwarming\nluchtvloot\nluchtvochtigheid\nluchtvochtigheidsgraad\nluchtvracht\nluchtvrachtexpediteur\nluchtvrachtvervoer\nluchtwaardig\nluchtwaardigheid\nluchtwaardigheidsbewijs\nluchtwacht\nluchtwachtdienst\nluchtwapen\nluchtweerstand\nluchtweg\nluchtwegaandoening\nluchtwegen\nluchtweginfectie\nluchtwegvernauwing\nluchtwortel\nluchtzak\nluchtziek\nluchtziekte\nluchtzuivering\nlucide\nluciditeit\nlucifer\nluciferdoosje\nluciferhoutje\nlucifersdoosje\nlucifersfabriek\nlucifershoutje\nlucratief\nlucullisch\nlucullusmaal\nludiek\nlues\nluguber\nlui\nluiaard\nluiaardij\nluibak\nluibakken\nluid\nluide\nluiden\nluidens\nluidheid\nluidkeels\nluidklok\nluidop\nluidruchtig\nluidruchtigheid\nluidspreker\nluidsprekerbox\nluidsprekersysteem\nluie\nluien\nluier\nluierbroekje\nluieremmer\nluieren\nluierik\nluieriken\nluierirritatie\nluiermand\nluierstoel\nluieruitslag\nluifel\nluifeldak\nluifelhoed\nluiheid\nluiigheid\nluik\nluiken\nluikgat\nluilak\nluilakken\nluilekkerland\nluim\nluimen\nluimig\nluimigheid\nluipaard\nluis\nluiskop\nluister\nluisteraar\nluisteraarster\nluisterapparaat\nluisterdichtheid\nluisterdienst\nluisteren\nluisterervaring\nluisterfunctie\nluistergedrag\nluistergeld\nluistergenot\nluisterhouding\nluisterlied\nluisterliedje\nluistermuziek\nluisteronderzoek\nluisterplezier\nluisterpost\nluisterpubliek\nluisterrijk\nluisterspel\nluistertest\nluistertijd\nluistertoets\nluistervaardigheid\nluistervaardigheidstraining\nluistervergunning\nluistervink\nluistervinken\nluiszak\nluit\nluitenant\nluitenant-admiraal\nluitenant-admiraalschap\nluitenant-generaal\nluitenant-kolonel\nluitenant-ter-zee\nluitenantsuniform\nluitist\nluitjes\nluitspeler\nluiwagen\nluiwammes\nluiwammesen\nluizen\nluizenbaan\nluizenbos\nluizenkam\nluizenkop\nluizenleven\nluizenmarkt\nluizenplaag\nluizig\nlukken\nlukraak\nlul\nlul-de-behanger\nlulhannes\nlulkoek\nlulleman\nlullen\nlullepot\nlullepraat\nlulletje\nlullig\nlulligheid\nlullo\nlulverhaal\nlumbaal\nlumbaalpunctie\nlumbecken\nluminal\nluminescent\nluminescentie\nlumineus\nlumme\nlummel\nlummelachtig\nlummelen\nlummelig\nlumpsum\nlumpsumbekostiging\nlumpsumfinanciering\nlunair\nlunapark\nlunch\nlunchafspraak\nlunchbespreking\nlunchbijeenkomst\nlunchconcert\nlunchen\nlunchgedeelte\nlunchgerecht\nlunchkaart\nlunchpakket\nlunchpauze\nlunchroom\nlunchtijd\nlunchtrommel\nlunchuur\nlunchvoorstelling\nlunet\nluns\nlunzen\nlupine\nlupus\nlurken\nlurven\nlus\nlussen\nlust\nlustbeleving\nlusteloos\nlusteloosheid\nlusten\nluster\nlustgevoel\nlusthof\nlustig\nlustigheid\nlustmoord\nlustmoordenaar\nlustobject\nlustoord\nlustprieel\nlustre\nlustrum\nlustrumconcert\nlustrumfeest\nlustrumjaar\nlustslot\nlustwarande\nlutheraan\nlutheranisme\nluthers\nlutje\nluttel\nluur\nluw\nluwen\nluwte\nlux\nluxaflex\nluxe\nluxe-editie\nluxe-industrie\nluxeappartement\nluxeartikel\nluxeauto\nluxebrood\nluxebroodje\nluxegoederen\nluxehotel\nluxehuis\nluxehut\nluxeleven\nluxelingerie\nluxemerk\nluxepaard\nluxepositie\nluxeprobleem\nluxeproduct\nluxetrein\nluxewagen\nluxueus\nluzerne\nlyceum\nlychee\nlycopeen\nlycra\nlymf\nlymfatisch\nlymfe\nlymfedrainage\nlymfeklier\nlymfevat\nlymfklier\nlymfklierkanker\nlymfocyt\nlymfvat\nlynchen\nlynchpartij\nlynchwet\nlynx\nlynxoog\nlyricus\nlyriek\nlyrisch\nlyrisme\nlysine\nlysol\nlöss\nm\nm.\nm.a.w.\nm.b.t.\nm.b.v.\nm.i.\nm.i.v.\nm.m.\nm.n.\nm.u.v.\nm/s\nma\nmaag\nmaag-darmcatarre\nmaag-darmkanaal\nmaag-darmstelsel\nmaagaandoening\nmaagbloeding\nmaagd\nmaagdeke\nmaagdeken\nmaagdelijk\nmaagdelijkheid\nmaagdenhonig\nmaagdenhoning\nmaagdenpalm\nmaagdenpeer\nmaagdenroof\nmaagdenvlies\nmaagelixer\nmaagelixir\nmaagfistel\nmaaghevel\nmaaginhoud\nmaagkanker\nmaagklachten\nmaagkramp\nmaagkwaal\nmaaglijder\nmaagonderzoek\nmaagontsteking\nmaagoperatie\nmaagperforatie\nmaagpijn\nmaagpomp\nmaagresectie\nmaagsap\nmaagschap\nmaagslijmvlies\nmaagsonde\nmaagstoornis\nmaagstreek\nmaagwand\nmaagzout\nmaagzuur\nmaagzuurremmer\nmaagzweer\nmaaidorser\nmaaidorsmachine\nmaaien\nmaaier\nmaailand\nmaaimachine\nmaaisel\nmaaitijd\nmaaiveld\nmaaiveldhoogte\nmaaiveldniveau\nmaakbaar\nmaakbaarheid\nmaakindustrie\nmaakloon\nmaakproces\nmaaksel\nmaakster\nmaakwerk\nmaal\nmaalderij\nmaalfeest\nmaalloon\nmaalpeil\nmaalsel\nmaalsteen\nmaalstroom\nmaaltand\nmaalteken\nmaaltijd\nmaaltijdbon\nmaaltijdcheque\nmaaltijdcomponent\nmaaltijden\nmaaltijdonderdeel\nmaaltijdsalade\nmaaltijdsoep\nmaaltijdvergoeding\nmaaltijdverstrekking\nmaaltijdvoorziening\nmaaltje\nmaalzolder\nmaan\nmaanbaan\nmaanbeving\nmaanbewoners\nmaanblind\nmaanbrief\nmaancirkel\nmaancyclus\nmaand\nmaandabonnement\nmaandag\nmaandagavond\nmaandagmiddag\nmaandagmorgen\nmaandagmorgenproduct\nmaandagnacht\nmaandagnamiddag\nmaandagochtend\nmaandags\nmaandagse\nmaandbalans\nmaandbasis\nmaandbedrag\nmaandbericht\nmaandbetaling\nmaandblad\nmaandbrief\nmaandbudget\nmaandcijfer\nmaandelijks\nmaandenlang\nmaandgeld\nmaandgemiddelde\nmaandhuur\nmaandinkomen\nmaandkaart\nmaandlast\nmaandlasten\nmaandlimiet\nmaandloner\nmaandloon\nmaandnummer\nmaandomzet\nmaandoverzicht\nmaandpremie\nmaandrapport\nmaandroos\nmaandsalaris\nmaandschrift\nmaandstaat\nmaandsteen\nmaandstond\nmaandtarief\nmaandtotaal\nmaanduitkering\nmaandverband\nmaandverslag\nmaandwedde\nmaaneclips\nmaanfase\nmaanfoto\nmaangodin\nmaanjaar\nmaankaart\nmaankop\nmaankrater\nmaanlander\nmaanlanding\nmaanlandschap\nmaanlicht\nmaanloos\nmaanmannetje\nmaanmonster\nmaanoppervlak\nmaanraket\nmaanring\nmaansatelliet\nmaanschijf\nmaansikkel\nmaanstand\nmaansteen\nmaanstof\nmaansverduistering\nmaantijd\nmaantje\nmaanvis\nmaanvormig\nmaanwandeling\nmaanzaad\nmaanziek\nmaanziekte\nmaar\nmaarschalk\nmaarschalksstaf\nmaarschalkstaf\nmaart\nmaarte\nmaartnummer\nmaarts\nmaas\nmaasbal\nmaashagedis\nmaasnaald\nmaassteek\nmaaswerk\nmaaswijdte\nmaaswol\nmaat\nmaatbeker\nmaatcilinder\nmaatdeel\nmaatdop\nmaateenheid\nmaatgevend\nmaatgevoel\nmaatglas\nmaathouden\nmaatje\nmaatjesharing\nmaatjespeer\nmaatkan\nmaatkleding\nmaatkostuum\nmaatlat\nmaatloos\nmaatpak\nmaatregel\nmaatregelenpakket\nmaats\nmaatschap\nmaatschappelijk\nmaatschappij\nmaatschappijbeeld\nmaatschappijcriticus\nmaatschappijgericht\nmaatschappijhervormer\nmaatschappijkritiek\nmaatschappijkritisch\nmaatschappijleer\nmaatschappijmodel\nmaatschappijopvatting\nmaatschappijoriëntatie\nmaatschappijpolis\nmaatschappijstructuur\nmaatschappijverandering\nmaatschappijvisie\nmaatschappijvlag\nmaatschappijvorm\nmaatschappijwetenschap\nmaatschappijwetenschappen\nmaatschapsovereenkomst\nmaatschepje\nmaatschets\nmaatschoenen\nmaatslag\nmaatsoort\nmaatstaf\nmaatstok\nmaatstreep\nmaatsysteem\nmaatvast\nmaatvastheid\nmaatverdeling\nmaatvoeren\nmaatvoering\nmaatwerk\nmaatwerkanalyse\nmaatwerkprogrammatuur\nmaatwerksoftware\nmacaber\nmacadam\nmacadamiseren\nmacadamweg\nmacaroni\nmacaronisch\nmacaronischotel\nmach\nmacher\nmachete\nmachiavellisme\nmachiavellist\nmachiavellistisch\nmachientje\nmachinaal\nmachinatie\nmachine\nmachine-industrie\nmachineas\nmachinebankwerker\nmachinebediener\nmachinebediening\nmachinebestuurder\nmachinebezetting\nmachinebouw\nmachinebouwer\nmachinecapaciteit\nmachinecode\nmachinefabriek\nmachinefabrikant\nmachinegaren\nmachinegebondenheid\nmachinegeweer\nmachinegeweervuur\nmachinekamer\nmachinekracht\nmachinematig\nmachinemodel\nmachineolie\nmachineonderdeel\nmachinepark\nmachinepistool\nmachinerie\nmachineschrift\nmachineschrijven\nmachinestraat\nmachinetaal\nmachinevermogen\nmachinevoerder\nmachinezetsel\nmachinezetter\nmachinist\nmachismo\nmachistisch\nmacho\nmachocultuur\nmachogedrag\nmacht\nmachteloos\nmachteloosheid\nmachtenscheiding\nmachthebbend\nmachthebber\nmachtig\nmachtigen\nmachtiging\nmachtiginghouder\nmachtigingshouder\nmachtigingsprocedure\nmachtigingswet\nmachtsapparaat\nmachtsbalans\nmachtsbasis\nmachtsbederf\nmachtsbehoud\nmachtsbelangen\nmachtsbelust\nmachtsbetoon\nmachtsblok\nmachtsbolwerk\nmachtscentrum\nmachtsconcentratie\nmachtsconstellatie\nmachtsdeling\nmachtsdenken\nmachtselite\nmachtsevenwicht\nmachtsfactor\nmachtsgebied\nmachtsgevoel\nmachtsgreep\nmachtshonger\nmachtsinstrument\nmachtskwestie\nmachtsmiddel\nmachtsmisbruik\nmachtsmonopolie\nmachtsongelijkheid\nmachtsontplooiing\nmachtsontwikkeling\nmachtsoverdracht\nmachtsovername\nmachtspartij\nmachtspolitiek\nmachtspositie\nmachtspreuk\nmachtsrelatie\nmachtssfeer\nmachtsspel\nmachtsstrijd\nmachtsstructuur\nmachtssubject\nmachtsuitbreiding\nmachtsuitoefening\nmachtsvacuüm\nmachtsverdeling\nmachtsvergelijking\nmachtsverheffing\nmachtsverhouding\nmachtsverhoudingen\nmachtsverlies\nmachtsverschil\nmachtsverschuiving\nmachtsvertoon\nmachtsverzameling\nmachtsvorming\nmachtsvraag\nmachtswellust\nmachtswellusteling\nmachtswissel\nmachtswisseling\nmachtswoord\nmachtwoord\nmacramé\nmacro\nmacro-economie\nmacro-economisch\nmacro-econoom\nmacrobioot\nmacrobiotiek\nmacrobiotisch\nmacrobudget\nmacrodefinitie\nmacrofaag\nmacrofotografie\nmacrofunctie\nmacrogebruik\nmacrokosmos\nmacromoleculair\nmacromolecule\nmacronaam\nmacroniveau\nmacroscopisch\nmacrostructuur\nmaculadegeneratie\nmaculatuur\nmadam\nmadame\nmadammekes\nmadammen\nmade\nmadelief\nmadeliefje\nmadera\nmaderasaus\nmadeworm\nmadonna\nmadonna-achtig\nmadras\nmadrigaal\nmadrigal\nmaestoso\nmaestro\nmaf\nmaffen\nmaffer\nmaffia\nmaffia-achtig\nmaffiabaas\nmaffiabende\nmaffiabestrijder\nmaffiageld\nmaffialeider\nmaffialid\nmaffiaorganisatie\nmaffiapraktijk\nmaffioos\nmaffioso\nmafkees\nmafketel\nmagazijn\nmagazijnadministratie\nmagazijnbediende\nmagazijnchef\nmagazijncode\nmagazijngoederen\nmagazijnier\nmagazijnmedewerker\nmagazijnmeester\nmagazijnnummer\nmagazijnruimte\nmagazine\nmagenta\nmager\nmagere\nmagerheid\nmagerte\nmagertjes\nmagerzucht\nmaggi\nmaggiplant\nmagie\nmagirusladder\nmagisch\nmagisch realisme\nmagisch-realistisch\nmagister\nmagistraal\nmagistraat\nmagistraatschap\nmagistraatspersoon\nmagistrate\nmagistratelijk\nmagistratuur\nmagiër\nmagma\nmagmakamer\nmagnaat\nmagneet\nmagneetanker\nmagneetbaan\nmagneetband\nmagneetijzer\nmagneetkaart\nmagneetkern\nmagneetkracht\nmagneetnaald\nmagneetpool\nmagneetrem\nmagneetschijf\nmagneetsteen\nmagneetstrip\nmagneettrein\nmagneetveld\nmagneetwerking\nmagneetzweefbaan\nmagneetzweeftrein\nmagnesia\nmagnesium\nmagnesiumlicht\nmagnesiumoxide\nmagnesiumpoeder\nmagneten\nmagnetiet\nmagnetisatie\nmagnetisch\nmagnetiseren\nmagnetiseur\nmagnetisme\nmagnetodynamisch\nmagnetometer\nmagnetosfeer\nmagnetron\nmagnetronfolie\nmagnetronmaaltijd\nmagnetronoven\nmagnifiek\nmagnitude\nmagnolia\nmagnum\nmagot\nmaharadja\nmaharishi\nmahdist\nmahjong\nmahonie\nmahonieboom\nmahoniehout\nmahoniehouten\nmaidenspeech\nmaidentrip\nmail\nmailboot\nmailbox\nmailen\nmailing\nmailinglijst\nmailinglist\nmaillot\nmailpapier\nmailprogramma\nmailserver\nmailtje\nmailverkeer\nmainframe\nmainport\nmainstream\nmaintenee\nmainteneren\nmais\nmaisgluten\nmaiskolf\nmaismeel\nmaisonnette\nmaispap\nmaisveld\nmaizena\nmajem\nmajestatisch\nmajesteit\nmajesteitelijk\nmajesteitsschennis\nmajestueus\nmajeur\nmajolica\nmajolicategel\nmajoor\nmajoor-generaal\nmajor\nmajor-minorsysteem\nmajoraan\nmajoraat\nmajordomus\nmajoreren\nmajorette\nmajorettekorps\nmajoriteit\nmajuskel\nmak\nmakaak\nmakam\nmakaron\nmakassarolie\nmake\nmake-over\nmake-up\nmakelaar\nmakelaardij\nmakelaarsbedrijf\nmakelaarsbranche\nmakelaarschap\nmakelaarsfunctie\nmakelaarskantoor\nmakelaarskosten\nmakelaarsloon\nmakelaarsorganisatie\nmakelaarsprovisie\nmakelaarsrapport\nmakelaarster\nmakelaarsvereniging\nmakelaarswereld\nmakelaarswereldje\nmakelarij\nmakelen\nmakelij\nmaken\nmaker\nmakerij\nmakerschap\nmakheid\nmaki\nmakke\nmakkelijk\nmakken\nmakker\nmakkie\nmakreel\nmakreelfilet\nmakron\nmakroon\nmal\nmalachiet\nmalachietgroen\nmalafide\nmalaga\nmalaise\nmalaisestemming\nmalaria\nmalaria-epidemie\nmalariabestrijding\nmalariamug\nmalariaonderzoek\nmalariaparasiet\nmalathion\nmalcontent\nmalcontenten\nmaledictie\nmalen\nmalentendu\nmaler\nmalerij\nmalheid\nmalheur\nmalicieus\nmalie\nmaliebaan\nmalieveld\nmaligne\nmaling\nmaliën\nmaliënkolder\nmalkaar\nmalkander\nmall\nmallejan\nmallemoer\nmallemolen\nmallen\nmallepraat\nmaller\nmalligheid\nmalloot\nmalloterig\nmallotig\nmalm\nmals\nmalsheid\nmalta\nmaltbier\nmaltentig\nmaltezer\nmalthusianisme\nmaltose\nmaltraiteren\nmalus\nmalusregeling\nmalussysteem\nmaluwe\nmalve\nmalversatie\nmalverseren\nmalvezij\nmam\nmama\nmamba\nmamma\nmamma-amputatie\nmammeluk\nmammelukken\nmammen\nmammie\nmammoet\nmammoetbedrijf\nmammoetschool\nmammoettand\nmammoettank\nmammoettanker\nmammografie\nmammografisch\nmammogram\nmammon\nmams\nmamzel\nman\nman-vrouwrollen\nman-vrouwverhouding\nmanachtig\nmanagement\nmanagementadviesbureau\nmanagementboek\nmanagementbuy-out\nmanagementconcept\nmanagementconsultant\nmanagementcontract\nmanagementcultuur\nmanagementcursus\nmanagementervaring\nmanagementfunctie\nmanagementjargon\nmanagementlid\nmanagementniveau\nmanagementondersteuning\nmanagementopleiding\nmanagementsactiviteiten\nmanagementschool\nmanagementsteam\nmanagementstijl\nmanagementstructuur\nmanagementsysteem\nmanagementtalent\nmanagementteam\nmanagementtheorie\nmanagementtijd\nmanagementtraining\nmanagen\nmanager\nmanagersfunctie\nmanagerziekte\nmanaging director\nmanbaar\nmanbaarheid\nmanche\nmanchester\nmanchet\nmanchetknoop\nmanco\nmancolijst\nmand\nmandaat\nmandaatgebied\nmandag\nmandala\nmandarijn\nmandarijntje\nmandataris\nmandateren\nmande\nmandekker\nmandekking\nmandement\nmandenmaker\nmandenmakerij\nmandfles\nmandir\nmandiën\nmandoer\nmandoline\nmandragora\nmandril\nmaneblusser\nmanege\nmanegepaard\nmanen\nmaner\nmaneschijn\nmanga\nmangaan\nmangaanerts\nmangaanknol\nmangaanstaal\nmangat\nmangel\nmangelen\nmangelgoed\nmangelkamer\nmangelrol\nmangelwortel\nmango\nmangoboom\nmangochutney\nmangoest\nmangoeste\nmangrove\nmangrovebos\nmanhaftig\nmanhaftigheid\nmani\nmaniak\nmaniakaal\nmanicheeër\nmanicheïsme\nmanicure\nmanicuren\nmanicuurster\nmanie\nmanier\nmanieren\nmaniertje\nmanifest\nmanifestant\nmanifestatie\nmanifesteren\nmanilla\nmanillahennep\nmanillatouw\nmanille\nmaning\nmaniok\nmaniokmeel\nmaniokwortel\nmanipel\nmanipels\nmanipulatie\nmanipulatief\nmanipulatiekunst\nmanipulator\nmanipuleerbaar\nmanipuleren\nmanisch\nmanisch-depressief\nmanisme\nmaniërisme\nmaniërist\nmaniëristisch\nmanjaar\nmank\nmankement\nmanken\nmankepoot\nmankeren\nmankpoot\nmankracht\nmanlief\nmanlijk\nmanlijkheid\nmanmeersituatie\nmanmoedig\nmanmoedigheid\nmanna\nmanneke\nmanneken\nmannelijk\nmannelijkheid\nmannen\nmannenafdeling\nmannenbastion\nmannenblad\nmannenbolwerk\nmannenbondscoach\nmannenbroeder\nmannenbroeders\nmannenclub\nmannendubbelspel\nmannenfinale\nmannengek\nmannengemeenschap\nmannengeur\nmannengroep\nmannenhaat\nmannenhaatster\nmannenhand\nmannenhockeyploeg\nmannenhoofd\nmannenhuis\nmannenkiesrecht\nmannenkleding\nmannenkleren\nmannenklooster\nmannenkoor\nmannenkracht\nmannenlichaam\nmannenliefde\nmannenmaatschappij\nmannenmode\nmannenmoed\nmannenpaviljoen\nmannenploeg\nmannenpraatgroep\nmannenrol\nmannenstem\nmannentaal\nmannenteam\nmannentennis\nmannentoernooi\nmannentoernooien\nmannentorso\nmannenverslindster\nmannenvest\nmannenvriendschap\nmannenwereld\nmannenwerk\nmannenzaak\nmannenzaal\nmannequin\nmannetje\nmannetjeseend\nmannetjesmaker\nmannetjesmakerij\nmannetjesmus\nmannetjesplant\nmannetjesputter\nmannetjesvaren\nmannin\nmanoeuvre\nmanoeuvreerbaar\nmanoeuvreerruimte\nmanoeuvreren\nmanometer\nmanou\nmanplanning\nmans\nmansarde\nmansardedak\nmansbroek\nmanschap\nmanschappen\nmanschappenwagen\nmansdik\nmanshemd\nmanshoed\nmanshoog\nmanshoogte\nmanskerel\nmanskleren\nmanskracht\nmanslag\nmanslengte\nmansnaam\nmansoor\nmanspersoon\nmansvolk\nmantel\nmanteldier\nmanteling\nmanteljas\nmantelkostuum\nmantelmeeuw\nmantelorganisatie\nmantelpak\nmantelstof\nmanteltje\nmantelzorg\nmantelzorger\nmantelzorgster\nmantiek\nmantilla\nmantille\nmantisse\nmantra\nmanuaal\nmanueel\nmanufacturen\nmanufacturenwinkel\nmanufactuurwinkel\nmanuscript\nmanusje-van-alles\nmanuur\nmanvolk\nmanwijf\nmanziek\nmaoïsme\nmaoïst\nmaoïstisch\nmap\nmaquette\nmaquillage\nmaquilleren\nmaquis\nmaraboe\nmaraboet\nmaracuja\nmaraskijn\nmarasquin\nmarathon\nmarathondebat\nmarathondebuut\nmarathonkampioene\nmarathonloop\nmarathonloopster\nmarathonloper\nmarathonpartij\nmarathonschaatsen\nmarathonschaatser\nmarathonsessie\nmarathontitel\nmarathonuitzending\nmarathonvergadering\nmarathonvoorstelling\nmarathonwedstrijd\nmarathonzitting\nmarbriet\nmarburgvirus\nmarchanderen\nmarche\nmarcheren\nmarconist\nmare\nmarechaussee\nmaren\nmaretak\nmargarine\nmargarineboter\nmargay\nmarge\nmargebeleid\nmargedruk\nmargegericht\nmargeverbetering\nmargeverkrapping\nmargeverlies\nmargeverruiming\nmarginaal\nmarginalia\nmarginalisatie\nmarginaliseren\nmarginalisering\nmarginaliteit\nmarginaliën\nmargriet\nmariakaakje\nmarien\nmarifoon\nmarifoonkanaal\nmarifoontoestel\nmarihuana\nmarimba\nmarina\nmarinade\nmarine\nmarine-eenheid\nmarineattaché\nmarinebasis\nmarineblauw\nmarinebouw\nmarinehaven\nmarinehelikopter\nmarineluchtvaartdienst\nmarineman\nmarineofficier\nmarinepersoneel\nmarineren\nmarineschilder\nmarineschip\nmarinestad\nmarinestaf\nmarinetop\nmarinevaartuig\nmarinevliegkamp\nmarinevliegtuig\nmarinewerf\nmarinewezen\nmarinier\nmariniersbataljon\nmarinierseenheid\nmarinierskapel\nmarinierskazerne\nmarionet\nmarionettenregering\nmarionettenregime\nmarionettenspel\nmarionettenstaat\nmarionettentheater\nmaritiem\nmarjolein\nmark\nmarkant\nmarkeerstift\nmarker\nmarkeren\nmarkering\nmarkeringsboei\nmarkeringspunt\nmarkervaccin\nmarketeer\nmarketen\nmarketentster\nmarketing\nmarketingaanpak\nmarketingadviseur\nmarketingafdeling\nmarketingbedrijf\nmarketingbeleid\nmarketingbudget\nmarketingbureau\nmarketingcampagne\nmarketingcommunicatie\nmarketingconcept\nmarketingcreativiteit\nmarketingdenken\nmarketingdeskundige\nmarketingdirecteur\nmarketingfilosofie\nmarketingfunctie\nmarketinggedachte\nmarketinggedeelte\nmarketinginformatie\nmarketinginstrument\nmarketingjargon\nmarketingkant\nmarketingkosten\nmarketingmachine\nmarketingman\nmarketingmanager\nmarketingmedewerker\nmarketingmiddel\nmarketingmix\nmarketingoffensief\nmarketingonderzoek\nmarketingorganisatie\nmarketingplan\nmarketingplannen\nmarketingpolitiek\nmarketingprobleem\nmarketingstrategie\nmarketingstunt\nmarketingsucces\nmarketingtechnisch\nmarketingterm\nmarketingtruc\nmarketingverantwoordelijke\nmarketingvisie\nmarketingwereld\nmarketmaker\nmarketplace\nmarkgenoot\nmarkgenootschap\nmarkgraaf\nmarkgraafschap\nmarkgravin\nmarkgrond\nmarkies\nmarkieslinnen\nmarkiezin\nmarkizaat\nmarkt\nmarktaanbod\nmarktaandeel\nmarktacceptatie\nmarktanalist\nmarktanalyse\nmarktanalysebureau\nmarktanalysemodel\nmarktbeeld\nmarktbehoefte\nmarktbeleid\nmarktbenadering\nmarktbenaderingsplan\nmarktbericht\nmarktbescherming\nmarktbeweging\nmarktbewerking\nmarktcijfer\nmarktcombinatie\nmarktcommentaar\nmarktconform\nmarktdag\nmarktdenken\nmarktdominantie\nmarktdynamiek\nmarkteconomie\nmarkten\nmarkterkenning\nmarktevenwicht\nmarktevolutie\nmarktfalen\nmarktfundamentalisme\nmarktganger\nmarktgebied\nmarktgebonden\nmarktgedrag\nmarktgedreven\nmarktgeld\nmarktgemiddelde\nmarktgericht\nmarktgerichtheid\nmarktgeschreeuw\nmarktgevoel\nmarktgevoelig\nmarktgroei\nmarktgrootte\nmarkthal\nmarkthandel\nmarkthandelaar\nmarktherstel\nmarktinformatie\nmarktintroductie\nmarktinvloed\nmarktkapitalisatie\nmarktkennis\nmarktkoers\nmarktkoopman\nmarktkoopvrouw\nmarktkraam\nmarktkramer\nmarktleider\nmarktleiderschap\nmarktliberalisering\nmarktmacht\nmarktmaker\nmarktmechanisme\nmarktmeester\nmarktmodel\nmarktniche\nmarktnotering\nmarktomgeving\nmarktomvang\nmarktondersteuning\nmarktonderzoek\nmarktonderzoekbureau\nmarktonderzoeker\nmarktonderzoeksafdeling\nmarktonderzoeksbureau\nmarktonderzoeksplan\nmarktontwikkeling\nmarktontwikkelingsplan\nmarktopening\nmarktordening\nmarktoverzicht\nmarktpakket\nmarktpartij\nmarktpartner\nmarktpenetratie\nmarktplaats\nmarktplein\nmarktpolitie\nmarktpositie\nmarktpositionering\nmarktpotentieel\nmarktprijs\nmarktprincipe\nmarktproductie\nmarktprognose\nmarktrecht\nmarktrente\nmarktrijp\nmarktrisico\nmarktsector\nmarktsegment\nmarktsegmentatie\nmarktsituatie\nmarktspeler\nmarktstrategie\nmarktstructuur\nmarktstudie\nmarktsucces\nmarktsysteem\nmarkttechnisch\nmarkttendens\nmarkttoegang\nmarkttrend\nmarktverdeling\nmarktverdelingsafspraak\nmarktvergrotend\nmarktvergunning\nmarktverhouding\nmarktverkenning\nmarktverlies\nmarktverordening\nmarktverstorend\nmarktverstoring\nmarktverwachting\nmarktverzadiging\nmarktvolume\nmarktvraag\nmarktvrouw\nmarktwaar\nmarktwaarde\nmarktwerking\nmarktwezen\nmarlen\nmarlijn\nmarling\nmarlpriem\nmarmel\nmarmelade\nmarmer\nmarmerachtig\nmarmerbeeld\nmarmerdessin\nmarmeren\nmarmergroef\nmarmergroeve\nmarmerpapier\nmarmerslijp\nmarmersoort\nmarmerstroken\nmarmerwerk\nmarmerwerken\nmarmiet\nmarmoleum\nmarmot\nmarode\nmaroderen\nmarodeur\nmarokijn\nmarokijnen\nmarokijnleder\nmarokijnleer\nmaroniet\nmaronitisch\nmaroquinerie\nmaroquinerieën\nmarot\nmarquise\nmarqué\nmarren\nmarron\nmarrons\nmars\nmarsbevel\nmarscolonne\nmarsdrager\nmarsen\nmarsepein\nmarsepeinen\nmarsgrond\nmarshallplan\nmarshmallow\nmarshmallows\nmarskramer\nmarsland\nmarslied\nmarsmannetje\nmarsmuziek\nmarsorde\nmarsorder\nmarsrichting\nmarsroute\nmarsseizoen\nmarstempo\nmarstenue\nmarsvaardig\nmarszeil\nmartelaar\nmartelaarsboek\nmartelaarschap\nmartelaarsdood\nmartelaarsgezicht\nmartelaarskroon\nmartelaarsrol\nmartelapparaat\nmartelapparatuur\nmartelares\nmartelarij\nmarteldood\nmartelen\nmartelgang\nmartelhok\nmarteling\nmartelkamer\nmartelpaal\nmartelpraktijk\nmartelpraktijken\nmarteltuig\nmartelwerktuig\nmarter\nmarterachtig\nmarterbont\nmarterhaar\nmarterharen\nmartiaal\nmartini\nmartyrologium\nmarxisme\nmarxisme-leninisme\nmarxist\nmarxistisch\nmarxistisch-leninistisch\nmasala\nmascara\nmascarpone\nmascotte\nmasculien\nmasculine\nmasculiniteit\nmasculinum\nmasjallah\nmaske\nmasker\nmaskerachtig\nmaskerade\nmaskeradepak\nmaskeren\nmaskering\nmaskerspel\nmasochisme\nmasochist\nmasochistisch\nmasoreten\nmassa\nmassa-actie\nmassa-artikel\nmassa-executie\nmassa-extinctie\nmassaal\nmassabetoging\nmassabeweging\nmassabijeenkomst\nmassablad\nmassacommunicatie\nmassacommunicatiemiddel\nmassaconsumptie\nmassacre\nmassacreren\nmassacultuur\nmassademonstratie\nmassadeportatie\nmassafabricage\nmassage\nmassagesalon\nmassagetafel\nmassagoed\nmassagraf\nmassahysterie\nmassakrant\nmassaliteit\nmassamarkt\nmassamedium\nmassamens\nmassamobilisatie\nmassamoord\nmassamoordenaar\nmassaontslag\nmassaproducent\nmassaproduct\nmassaproductie\nmassaprotest\nmassapsychologie\nmassapsychologisch\nmassapsychose\nmassarecreatie\nmassaregie\nmassascreening\nmassascène\nmassaslachting\nmassaspectrometer\nmassaspectrometrie\nmassaspel\nmassasport\nmassasprint\nmassaspurt\nmassatoerisme\nmassaverkoop\nmassaverkrachting\nmassavernietigingswapen\nmassavernietigingswapens\nmassavervoer\nmassawerkloosheid\nmassazang\nmasseren\nmasseur\nmasseuse\nmassief\nmassificatie\nmassificeren\nmassiviteit\nmast\nmastaba\nmastbeeld\nmastboom\nmastbos\nmastectomie\nmastel\nmasteluin\nmasteluinbrood\nmasten\nmastentop\nmasterclass\nmasterfase\nmasteropleiding\nmasterplan\nmasterplannen\nmastersopleiding\nmastertape\nmastertitel\nmastgat\nmastiek\nmastiekbedekking\nmastiekdak\nmastieken\nmastiekschroten\nmastino\nmastino napoletano\nmastitis\nmastklimmen\nmastkoker\nmastkorf\nmastodont\nmasturbatie\nmasturberen\nmastworp\nmat\nmata\nmatador\nmatadorspel\nmataglap\nmatch\nmatchen\nmatchpartij\nmatchplay\nmatchpoint\nmatchpunt\nmatchwinnaar\nmatchwinner\nmatdreiging\nmate\nmateloos\nmateloosheid\nmatelot\nmaten\nmatennaaien\nmatennaaier\nmater\nmateriaal\nmateriaalbehandeling\nmateriaalbestand\nmateriaalcommissie\nmateriaaleigenschap\nmateriaaleisen\nmateriaalfout\nmateriaalgebruik\nmateriaalgevoel\nmateriaalkennis\nmateriaalkeuze\nmateriaalkosten\nmateriaalkunde\nmateriaalleer\nmateriaalman\nmateriaalonderzoek\nmateriaalpech\nmateriaalspanning\nmateriaaltoepassing\nmateriaalverlies\nmateriaalverzameling\nmateriaalwagen\nmaterialisatie\nmaterialiseren\nmaterialisme\nmaterialist\nmaterialistisch\nmaterialiteit\nmaterie\nmaterieel\nmaterieeltekort\nmaterieelvoorziening\nmaterietransport\nmaterniteit\nmatgeel\nmatglanzend\nmatglas\nmatglazen\nmatheid\nmathematica\nmathematicus\nmathematiek\nmathematisch\nmathematiseren\nmathesis\nmatig\nmatigen\nmatigheid\nmatigheidsbond\nmatigheidsgenootschap\nmatiging\nmatigingsbeleid\nmatigjes\nmatinee\nmatineevoorstelling\nmatineus\nmatje\nmatpartij\nmatrak\nmatras\nmatrasbeschermer\nmatrasdek\nmatrassenfabriek\nmatrassenmaker\nmatriarch\nmatriarchaal\nmatriarchaat\nmatrijs\nmatrikel\nmatrilineair\nmatrimoniaal\nmatrix\nmatrixen\nmatrixprinter\nmatrixstructuur\nmatrixvorm\nmatrone\nmatroos\nmatrozenbak\nmatrozenbroek\nmatrozenhoed\nmatrozenkraag\nmatrozenlied\nmatrozenmuts\nmatrozenpak\nmatse\nmatsen\nmatten\nmattenbies\nmattenklopper\nmattenmaker\nmattentaart\nmattenvlechter\nmatter\nmatteren\nmattering\nmatting\nmaturiteit\nmatverf\nmatvernis\nmatvoering\nmatwerk\nmatzwart\nmaté\nmauser\nmausoleum\nmauve\nmauwen\nmavo\nmavo-opleiding\nmavoadvies\nmavodiploma\nmavoleerling\nmavoniveau\nmavoschool\nmax.\nmaxi\nmaxima\nmaximaal\nmaximalisatie\nmaximaliseren\nmaximalisering\nmaximalist\nmaxime\nmaximeren\nmaximering\nmaximum\nmaximumaantal\nmaximumbedrag\nmaximumcapaciteit\nmaximumduur\nmaximumfactuur\nmaximumformaat\nmaximumgewicht\nmaximumgrens\nmaximumkoppel\nmaximumleeftijd\nmaximumnorm\nmaximumpercentage\nmaximumprijs\nmaximumrente\nmaximumsalaris\nmaximumsnelheid\nmaximumstraf\nmaximumtarief\nmaximumtemperatuur\nmaximumtermijn\nmaximumthermometer\nmaximumwaarde\nmaxwell\nmayo\nmayonaise\nmazelen\nmazelenepidemie\nmazen\nmazout\nmazoutkachel\nmazurka\nmazzel\nmazzelaar\nmazzelen\nmaçonniek\nmaître\nmaîtresse\nmaïs\nmaïsakker\nmaïsbrood\nmaïskip\nmaïskoek\nmaïskolf\nmaïskorrel\nmaïsland\nmaïsmeel\nmaïsolie\nmaïsoogst\nmaïspap\nmaïsplant\nmaïsteelt\nmaïsveld\nmaïsverbouw\nmaïszetmeel\nmaïzena\nmbo\nmbo-diploma\nmbo-niveau\nmbo-opleiding\nme\nmea culpa\nmeander\nmeanderen\nmeao\nmecanicien\nmeccano\nmecenaat\nmecenas\nmechanica\nmechanicus\nmechaniek\nmechanisatie\nmechanisch\nmechaniseren\nmechanisering\nmechanisme\nmechanistisch\nmechanotherapie\nmeconium\nmedaille\nmedaillekandidaat\nmedaillekandidate\nmedaillekans\nmedailleklassement\nmedailleoogst\nmedailleregen\nmedaillespiegel\nmedaillewinnaar\nmedaillewinnaars\nmedaillewinnares\nmedaillist\nmedaillon\nmede\nmede-eigenaar\nmede-eigendom\nmede-erfgenaam\nmede-erfgename\nmede-initiatiefnemer\nmede-inzittende\nmedeaandeelhouder\nmedeaansprakelijk\nmedearbeider\nmedeauteur\nmedebeheer\nmedebeklaagde\nmedebepalend\nmedebeslissingsrecht\nmedebestuur\nmedebestuurder\nmedebestuurslid\nmedebewind\nmedebewoner\nmedebewoonster\nmedebrengen\nmedebroeder\nmedeburger\nmedechristen\nmededader\nmededeelbaar\nmededeelnemer\nmededeelzaam\nmededeelzaamheid\nmededelen\nmededeling\nmededelingenblad\nmededelingenbord\nmededingen\nmededinger\nmededinging\nmededingingsautoriteit\nmededingingsbeleid\nmededingingsrecht\nmededingingsregels\nmededingingswet\nmededingingswetgeving\nmededingster\nmededirecteur\nmededirectrice\nmededogen\nmedefinancier\nmedefinanciering\nmedefinancieringsorganisatie\nmedefinancieringsprogramma\nmedegaan\nmedegebruik\nmedegefinancierd\nmedegevangene\nmedegevoel\nmedehoofdredacteur\nmedehuurder\nmedehuurderschap\nmedekandidaat\nmedeklinker\nmedeklinkercombinatie\nmedelander\nmedeleerling\nmedeleerlinge\nmedeleven\nmedelid\nmedelijden\nmedelijdend\nmedelijdenswaardig\nmedemens\nmedemenselijk\nmedemenselijkheid\nmedeminnaar\nmedeminnares\nmedeneming\nmedeondertekenaar\nmedeondertekend\nmedeondertekenen\nmedeondertekening\nmedeontwerper\nmedeoorzaak\nmedeoprichter\nmedeoprichtster\nmedeopsteller\nmedeorganisator\nmedepassagier\nmedepastoor\nmedepatiënte\nmedepatiënten\nmedeplegen\nmedepleger\nmedeplichtig\nmedeplichtige\nmedeplichtigheid\nmedepresentator\nmederedacteur\nmederegeerder\nmedereiziger\nmedereizigster\nmedeschepsel\nmedescholier\nmedeschuld\nmedeschuldenaar\nmedeschuldig\nmedeschuldige\nmedeslepen\nmedespeelster\nmedespeler\nmedesponsor\nmedestander\nmedestanders\nmedestandster\nmedestichter\nmedestrever\nmedestrijd\nmedestrijder\nmedestrijdster\nmedestudent\nmedestudente\nmedevennoot\nmedeverantwoordelijk\nmedeverantwoordelijkheid\nmedeverdachte\nmedevluchter\nmedevrijer\nmedeweggebruiker\nmedeweggebruikers\nmedewerken\nmedewerker\nmedewerkersbestand\nmedewerkerschap\nmedewerkerscontact\nmedewerkerscontract\nmedewerkersovereenkomst\nmedewerking\nmedewerkster\nmedeweten\nmedewetgever\nmedezeggenschap\nmedezeggenschapscommissie\nmedezeggenschapsorgaan\nmedezeggenschapsraad\nmedezeggenschapsrecht\nmedezeggenschapsregeling\nmedezeggenschapswetgeving\nmedezuster\nmedia\nmedia-aanbod\nmedia-aandacht\nmedia-adviseur\nmedia-evenement\nmedia-imperium\nmediaal\nmediaan\nmediaanlijn\nmediabaas\nmediabedrijf\nmediabelangstelling\nmediabeleid\nmediaberichten\nmediabestel\nmediabudget\nmediabureau\nmediacampagne\nmediacentrale\nmediacentrum\nmediacircus\nmediaconcentratie\nmediaconcern\nmediaconglomeraat\nmediaconglomeraten\nmediaconsument\nmediacratie\nmediacultuur\nmediadebat\nmediadeskundige\nmediadirecteur\nmediagebied\nmediagebruik\nmediageil\nmediagekte\nmediageniek\nmediageweld\nmediagigant\nmediagroep\nmediahype\nmediakant\nmediakritiek\nmediakunde\nmedialand\nmedialandschap\nmediamaatschappij\nmediamacht\nmediamagnaat\nmediamarkt\nmediamiek\nmediaminister\nmediamix\nmedianota\nmediaoffensief\nmediaoorlog\nmediaoptreden\nmediaorganisatie\nmediapark\nmediaplan\nmediaplanner\nmediaplanning\nmediapolitiek\nmediaprogramma\nmediarecht\nmediaredactie\nmediareus\nmediaruimte\nmediasector\nmediashow\nmediasocioloog\nmediaspecialist\nmediaspektakel\nmediaspeler\nmediaster\nmediastilte\nmediastorm\nmediastrateeg\nmediastrategie\nmediatechnologie\nmediathecaris\nmediathecarissen\nmediatheek\nmediatheekbeleid\nmediatheekcommissie\nmediatheekruimte\nmediatijdperk\nmediatisering\nmediator\nmediatrainer\nmediatraining\nmediatycoon\nmediavertegenwoordigers\nmediawereld\nmediawet\nmediawetgeving\nmediawoordvoerder\nmedica\nmedicaliseren\nmedicalisering\nmedicament\nmedicamenteus\nmedicatie\nmedicatiebewaking\nmedicatiecontrole\nmedici\nmedicijn\nmedicijnbeleid\nmedicijnen\nmedicijnengebruik\nmedicijnengroothandel\nmedicijnenstudent\nmedicijnenstudie\nmedicijnfles\nmedicijngebruik\nmedicijnkast\nmedicijnkastje\nmedicijnkist\nmedicijnknaak\nmedicijnkosten\nmedicijnman\nmedicijnverslaving\nmedicijnverstrekking\nmedicinaal\nmedicineren\nmedicus\nmediene\nmedina\nmedio\nmediocre\nmediocriteit\nmedisch\nmedisch-biologisch\nmedisch-ethisch\nmedisch-juridisch\nmedisch-psychologisch\nmedisch-technisch\nmedisch-wetenschappelijk\nmeditatie\nmeditatiecentrum\nmeditatief\nmeditatieruimte\nmeditatietechniek\nmeditatietraining\nmediteren\nmediterraan\nmedium\nmediëvist\nmediëvistiek\nmedley\nmedoc\nmedusa\nmee\nmee-eten\nmee-eter\nmee-installeren\nmeebakken\nmeebeleven\nmeebepalen\nmeebeslissen\nmeebesturen\nmeebetalen\nmeebewegen\nmeebidden\nmeebieden\nmeeblazen\nmeebouwen\nmeebrengen\nmeebrullen\nmeebuigen\nmeed\nmeedansend\nmeedeinen\nmeedelen\nmeedenken\nmeedenker\nmeedingen\nmeediscussiëren\nmeedoen\nmeedogend\nmeedogendheid\nmeedogenloos\nmeedogenloosheid\nmeedraaien\nmeedragen\nmeedrijven\nmeedrinken\nmeefietsen\nmeefinancieren\nmeefluiten\nmeegaan\nmeegaand\nmeegaandheid\nmeegekookt\nmeegenieten\nmeegenomen\nmeegerekend\nmeegeteld\nmeegeven\nmeegevoel\nmeegroeien\nmeehelpen\nmeehobbelen\nmeehollen\nmeehuilen\nmeekijken\nmeeklappen\nmeeklinken\nmeekoken\nmeekomen\nmeekrap\nmeekrapplant\nmeekrapteelt\nmeekrapwortel\nmeekrijgen\nmeekunnen\nmeel\nmeelachtig\nmeeladen\nmeeldauw\nmeeldraad\nmeeleven\nmeelevendheid\nmeeleveren\nmeelezen\nmeelezer\nmeelfabriek\nmeelfabrikant\nmeelhandelaar\nmeeliften\nmeeligger\nmeelij\nmeelijden\nmeelijwekkend\nmeelkost\nmeelmolen\nmeelokken\nmeeloopster\nmeelopen\nmeeloper\nmeeloten\nmeelpap\nmeelspijs\nmeeltor\nmeeluisteren\nmeelworm\nmeelzak\nmeemaken\nmeemoeder\nmeeneemprijs\nmeeneemrestaurant\nmeenemen\nmeenste\nmeent\nmeeondertekenen\nmeepakken\nmeepikken\nmeepit\nmeepraten\nmeeprater\nmeeprofiteren\nmeer\nmeeraal\nmeeraderig\nmeerarbeid\nmeerbladig\nmeerboei\nmeercellig\nmeercijferig\nmeercijferige\nmeerdaags\nmeerdelig\nmeerder\nmeerdere\nmeerderen\nmeerderheid\nmeerderheidsaandeel\nmeerderheidsaandeelhouder\nmeerderheidsadvies\nmeerderheidsbeginsel\nmeerderheidsbelang\nmeerderheidsbeslissing\nmeerderheidsbesluit\nmeerderheidsbesluitvorming\nmeerderheidscoalitie\nmeerderheidscollege\nmeerderheidskabinet\nmeerderheidsopvatting\nmeerderheidspakket\nmeerderheidsparticipatie\nmeerderheidspartij\nmeerderheidspositie\nmeerderheidsregering\nmeerderheidsstandpunt\nmeerderheidsstelsel\nmeerderjarig\nmeerderjarige\nmeerderjarigheid\nmeerderjarigheidsverklaring\nmeerderjarigverklaring\nmeerderwaardigheidsgevoel\nmeerdimensionaal\nmeerduidig\nmeerduidigheid\nmeeregeren\nmeereizen\nmeerekenen\nmeerekken\nmeergeld\nmeergemeld\nmeergenoemd\nmeergezinshuis\nmeergezinswoning\nmeerhoofdig\nmeerhoofdigheid\nmeerijden\nmeerijder\nmeerinkomsten\nmeerjarenafspraak\nmeerjarenbegroting\nmeerjarenbeleid\nmeerjarenoverzicht\nmeerjarenperspectief\nmeerjarenplan\nmeerjarenplanning\nmeerjarenprogramma\nmeerjarenraming\nmeerjarig\nmeerkamp\nmeerkamper\nmeerkat\nmeerkeuze\nmeerkeuzetoets\nmeerkeuzevraag\nmeerkleurendruk\nmeerkleurig\nmeerkoet\nmeerkol\nmeerkost\nmeerkosten\nmeerledig\nmeerlettergrepig\nmeerling\nmeerlingzwangerschap\nmeermaals\nmeermalen\nmeerman\nmeermanskaart\nmeermin\nmeermotorig\nmeeroken\nmeeromvattend\nmeeropbrengst\nmeerpaal\nmeerpartijenstelsel\nmeerpartijensysteem\nmeerpersoons\nmeerpersoonshuishouden\nmeerprijs\nmeers\nmeerschuim\nmeerslachtig\nmeerslag\nmeersporenbeleid\nmeerstemmig\nmeerstemmigheid\nmeertalig\nmeertaligheid\nmeertje\nmeertouw\nmeertrapsraket\nmeertros\nmeerval\nmeerverbruik\nmeervoud\nmeervoudig\nmeervoudigheid\nmeervoudsuitgang\nmeervoudsvorm\nmeervoudsvorming\nmeerwaarde\nmeerwaardebelasting\nmeerwaardigheidsgevoel\nmeerwerk\nmeerwerkkosten\nmeerwerkposten\nmeerzijdig\nmees\nmeeschrijven\nmeesjouwen\nmeeslepen\nmeeslepend\nmeeslependheid\nmeesleur\nmeesleuren\nmeesmokkelen\nmeesmuil\nmeesmuilen\nmeespelen\nmeespeler\nmeespreken\nmeest\nmeestal\nmeestamper\nmeestappen\nmeestbegunstigd\nmeestbegunstigingsclausule\nmeestbiedende\nmeestemmen\nmeestendeels\nmeestentijds\nmeester\nmeester-kok\nmeester-opzichter\nmeester-schilder\nmeesterachtig\nmeesterbrein\nmeesteren\nmeesteres\nmeestergast\nmeestergitarist\nmeestergraad\nmeesterhand\nmeesterknecht\nmeesterkok\nmeesterkraker\nmeesterlijk\nmeesteroplichter\nmeesterpianist\nmeesterplan\nmeesterproef\nmeesterschap\nmeesterspion\nmeesterstuk\nmeesterteken\nmeestertitel\nmeesterverteller\nmeesterwerk\nmeesterzet\nmeestgebruikt\nmeestgelezen\nmeestijgen\nmeestoeien\nmeestoof\nmeestrijden\nmeesttijds\nmeesturen\nmeet\nmeetapparaat\nmeetapparatuur\nmeetbaar\nmeetbaarheid\nmeetbank\nmeetbereik\nmeetbrief\nmeetbrug\nmeetbuis\nmeetcircuit\nmeetcode\nmeetellen\nmeetflens\nmeetfout\nmeetgegeven\nmeetgereedschap\nmeeting\nmeetinstallatie\nmeetinstrument\nmeetinstrumentarium\nmeetketting\nmeetklokje\nmeetkunde\nmeetkundig\nmeetkundige\nmeetlat\nmeetlijn\nmeetlint\nmeetmethode\nmeetmodel\nmeetnauwkeurigheid\nmeetnet\nmeetopstelling\nmeetorsen\nmeetpasser\nmeetperiode\nmeetploeg\nmeetprobleem\nmeetprocedure\nmeetproces\nmeetprogramma\nmeetpunt\nmeetrainen\nmeetreeks\nmeetrekken\nmeetresultaat\nmeetrillen\nmeetroede\nmeetronen\nmeetschip\nmeetsignaal\nmeetsnoer\nmeetspanning\nmeetstaat\nmeetstation\nmeetstok\nmeetsysteem\nmeettechniek\nmeettijd\nmeetuitrusting\nmeetvermogen\nmeetvoorschrift\nmeetwaarde\nmeetwagen\nmeetwerk\nmeeuw\nmeeuwtje\nmeevader\nmeevallen\nmeevaller\nmeevallertje\nmeevaren\nmeevat\nmeevechten\nmeeverdiener\nmeeverhuizen\nmeeverhuizend\nmeeverzekeren\nmeevieren\nmeevliegen\nmeevoelen\nmeevoeren\nmeevoetballen\nmeevragen\nmeewaaien\nmeewandelen\nmeewarig\nmeewarigheid\nmeewegen\nmeewerkaftrek\nmeewerken\nmeewillen\nmeewind\nmeezeilen\nmeezenden\nmeezeulen\nmeezingen\nmeezinger\nmeezitten\nmefisto\nmefistofelisch\nmega-evenement\nmegabanenmarkt\nmegabedrijf\nmegabioscoop\nmegabit\nmegabyte\nmegachip\nmegaclaim\nmegaconcert\nmegacontract\nmegadancing\nmegadeal\nmegadiscotheek\nmegafoon\nmegafraude\nmegafusie\nmegahertz\nmegahit\nmegajoule\nmegaliet\nmegalithisch\nmegalomaan\nmegalomanie\nmegalopolis\nmegamarkt\nmegaohm\nmegaoperatie\nmegaorder\nmegaovername\nmegapixel\nmegaplan\nmegaprijs\nmegaprijzen\nmegaproces\nmegaproject\nmegastad\nmegaster\nmegastore\nmegasucces\nmegatentoonstelling\nmegaton\nmegawatt\nmegazaak\nmegohm\nmehari\nmei\nmeiavond\nmeibeweging\nmeibock\nmeiboom\nmeiboter\nmeid\nmeidag\nmeidans\nmeidenachtig\nmeidenblad\nmeidenclub\nmeidengroep\nmeidenkamer\nmeidenwegloophuis\nmeidenwerk\nmeidoorn\nmeidoornhaag\nmeidoren\nmeien\nmeier\nmeieren\nmeierij\nmeifeest\nmeikaas\nmeikers\nmeikever\nmeiknol\nmeikoningin\nmeiler\nmeimaand\nmeinacht\nmeinedig\nmeinedige\nmeineed\nmeineedzaak\nmeinummer\nmeisje\nmeisjesachtig\nmeisjesbaby\nmeisjesblad\nmeisjesboek\nmeisjesgek\nmeisjesgezicht\nmeisjesgroep\nmeisjeshand\nmeisjesinternaat\nmeisjeskamer\nmeisjeskleding\nmeisjeskleren\nmeisjeskoor\nmeisjesnaam\nmeisjesogen\nmeisjesschool\nmeisjesstem\nmeisjesstudent\nmeisjeswerk\nmeiske\nmeistreel\nmeitak\nmeivakantie\nmeiveld\nmeivis\nmeivuur\nmeiwijn\nmeizoentje\nmejuffrouw\nmekaar\nmekka\nmekken\nmekkeren\nmelaats\nmelaatse\nmelaatsheid\nmelamine\nmelancholicus\nmelancholie\nmelancholiek\nmelancholisch\nmelange\nmelangeren\nmelanisme\nmelanoom\nmelasse\nmelassesuiker\nmelatonine\nmelde\nmelden\nmeldenswaard\nmeldenswaardig\nmelder\nmelding\nmeldingsbereidheid\nmeldingsbureau\nmeldingsformulier\nmeldingsplicht\nmeldingsplichtig\nmeldingsplichtige\nmeldingsprocedure\nmeldingspunt\nmeldingssysteem\nmeldkamer\nmeldlijn\nmeldplicht\nmeldpost\nmeldpunt\nmeldsysteem\nmelen\nmelig\nmeligheid\nmeliniet\nmelis\nmelisse\nmelisseblad\nmelissekruid\nmelisseolie\nmelissuiker\nmelk\nmelkaanvoer\nmelkachtig\nmelkafromer\nmelkapparaat\nmelkauto\nmelkbaard\nmelkboer\nmelkboerenhondenhaar\nmelkboerin\nmelkbrood\nmelkbus\nmelkchocola\nmelkchocolade\nmelkconsumptie\nmelkcontroleur\nmelkdieet\nmelkdistel\nmelkeiwit\nmelkemmer\nmelken\nmelkenstijd\nmelkeppe\nmelker\nmelkerij\nmelkertbaan\nmelkfabriek\nmelkfles\nmelkgebit\nmelkgebruik\nmelkgevend\nmelkgift\nmelkglas\nmelkhandel\nmelkhuis\nmelkinrichting\nmelkkan\nmelkkar\nmelkkies\nmelkklier\nmelkklierontsteking\nmelkkoe\nmelkkoeler\nmelkkoeltank\nmelkkoker\nmelkkoorts\nmelkkruik\nmelkkuur\nmelkleverancier\nmelkleverantie\nmelkmachine\nmelkman\nmelkmeisje\nmelkmuil\nmelkontromer\nmelkontvangst\nmelkopbrengst\nmelkpak\nmelkpap\nmelkplas\nmelkpoeder\nmelkpoeier\nmelkpot\nmelkprijs\nmelkproduct\nmelkproductie\nmelkquota\nmelkquotering\nmelkquotum\nmelkresten\nmelkrijder\nmelkrobot\nmelksalon\nmelksap\nmelkslijter\nmelkspijs\nmelkstal\nmelkster\nmelksuiker\nmelktand\nmelktank\nmelkte\nmelktijd\nmelkuur\nmelkvee\nmelkveebedrijf\nmelkveehouder\nmelkveehouderij\nmelkveestapel\nmelkverwerking\nmelkvet\nmelkwagen\nmelkweger\nmelkwegstelsel\nmelkwinkel\nmelkwit\nmelkwol\nmelkzuur\nmelkzuurbacterie\nmelodie\nmelodielijn\nmelodieus\nmelodisch\nmelodrama\nmelodramatisch\nmeloen\nmeloenboom\nmeloenzaad\nmelomaan\nmelomanie\nmeltdown\nmeluw\nmem\nmembraan\nmembraanfilter\nmemel\nmemento\nmemmen\nmemo\nmemoblok\nmemoformaat\nmemoires\nmemorabel\nmemorabilia\nmemorandum\nmemoreren\nmemoriaal\nmemoriaalpost\nmemorie\nmemorisatie\nmemoriseren\nmemory\nmen\nmenage\nmenagemeester\nmenageren\nmenagerie\nmenarche\nmendelen\nmendelisme\nmeneer\nmeneertje\nmenen\nmeneren\nmenestreel\nmengbaar\nmengbak\nmengeldichten\nmengelen\nmengeling\nmengelklomp\nmengelmoes\nmengelwerk\nmengen\nmenger\nmenginfectie\nmenging\nmengkleur\nmengkom\nmengkoren\nmengkraan\nmengmachine\nmengpaneel\nmengproduct\nmengras\nmengsel\nmengsmering\nmengsysteem\nmengtaal\nmengtafel\nmengverhouding\nmengvoeder\nmengvoederbedrijf\nmengvoederindustrie\nmengvoer\nmengvorm\nmenhir\nmenie\nmenieverf\nmenig\nmenige\nmenigeen\nmenigerhande\nmenigerlei\nmenigmaal\nmenigte\nmenigvoud\nmenigvuldig\nmenigvuldigheid\nmenigwerf\nmening\nmeningitis\nmeningokok\nmeningokokbacterie\nmeningokokkenziekte\nmeningspeiling\nmeningsuiting\nmeningsverschil\nmeningsvorming\nmeniscus\nmeniscusoperatie\nmenist\nmeniën\nmennen\nmenner\nmennoniet\nmenopauze\nmenora\nmens\nmens-erger-je-niet\nmens-zijn\nmensa\nmensaap\nmensachtig\nmensbeeld\nmensbeschouwing\nmensdom\nmenselijk\nmenselijkerwijs\nmenselijkerwijze\nmenselijkheid\nmensenbloed\nmensendieck\nmensendiecktherapie\nmensendochter\nmenseneter\nmensenfiguur\nmensengedaante\nmensengeslacht\nmensengroep\nmensenhaai\nmensenhaar\nmensenhaat\nmensenhand\nmensenhandel\nmensenhart\nmensenhater\nmensenheugenis\nmensenhoofd\nmensenkant\nmensenkenner\nmensenkennis\nmensenkind\nmensenkinderen\nmensenkracht\nmensenleeftijd\nmensenleven\nmensenlichaam\nmensenliefde\nmensenmaat\nmensenmassa\nmensenmenigte\nmensenmond\nmensenoffer\nmensenogen\nmensenpaar\nmensenpark\nmensenras\nmensenrechten\nmensenrechtenactivist\nmensenrechtenactiviste\nmensenrechtenadvocaat\nmensenrechtenambassadeur\nmensenrechtenbeleid\nmensenrechtenbeweging\nmensenrechtencomité\nmensenrechtencommissie\nmensenrechtenconferentie\nmensenrechtengroep\nmensenrechtengroepering\nmensenrechtenorganisatie\nmensenrechtenrapport\nmensenrechtenschending\nmensenrechtensituatie\nmensenrechtenspecialist\nmensenrechtenverdrag\nmensenredder\nmensenroof\nmensenschedel\nmensenschuw\nmensenschuwe\nmensenschuwheid\nmensensmokkel\nmensensmokkelaar\nmensensmokkelbende\nmensensmokkelzaak\nmensenstad\nmensenstem\nmensenstroom\nmensentaal\nmensentype\nmensenverstand\nmensenvlees\nmensenvrees\nmensenvriend\nmensenwereld\nmensenwerk\nmensenzee\nmensfiguur\nmensgericht\nmensgeworden\nmensheid\nmenshoog\nmensjaar\nmensjewiek\nmensjewistisch\nmenskracht\nmenskunde\nmenskundig\nmenslief\nmenslievend\nmenslievendheid\nmensonterend\nmensonwaardig\nmenstruaal\nmenstruatie\nmenstruatiebloed\nmenstruatiecyclus\nmenstruatiepijn\nmenstruatiestoornis\nmenstrueel\nmenstrueren\nmenstype\nmensuraal\nmensuur\nmensvormig\nmensvriendelijk\nmenswaardig\nmenswaardigheid\nmenswetenschap\nmenswetenschappen\nmenswording\nmentaal\nmentaal-cultureel\nmentaliteit\nmentaliteitsgeschiedenis\nmentaliteitskwestie\nmentaliteitsomslag\nmentaliteitsverandering\nmentaliteitsverschil\nmentaliteitswijziging\nmenthol\nmentie\nmentor\nmentoraat\nmentorschap\nmentrix\nmenu\nmenubalk\nmenublok\nmenublokken\nmenuet\nmenufunctie\nmenukaart\nmenukeuze\nmenulijst\nmenuprogramma\nmep\nmeppen\nmepper\nmeranti\nmerbau\nmercantiel\nmercantilisme\nmercantilistisch\nmercator\nmercatorprojectie\nmerceriseren\nmerchandise\nmerchandiser\nmerchandising\nmerci\nmercurochroom\nmerel\nmeren\nmerendeel\nmerendeels\nmerengebied\nmerengue\nmerg\nmergbeen\nmergel\nmergelaarde\nmergelachtig\nmergelen\nmergelgroeve\nmergelgrot\nmergelkalk\nmergelput\nmergelsteen\nmergelwinning\nmergpijp\nmeridiaan\nmeridiaancirkel\nmeridionaal\nmerinos\nmerinosschaap\nmerinoswol\nmeristeem\nmerite\nmerites\nmeritocratie\nmeritocratisch\nmerk\nmerkafhankelijk\nmerkartikel\nmerkbaar\nmerkbekendheid\nmerkel\nmerkelijk\nmerken\nmerkenaanbod\nmerkenbeleid\nmerkenbureau\nmerkendorp\nmerkengemachtigde\nmerkenportefeuille\nmerkenrecht\nmerkentrouw\nmerkenvoorkeur\nmerkenwet\nmerker\nmerkgaren\nmerkgebonden\nmerkhouder\nmerkidentiteit\nmerkinbreuk\nmerkinkt\nmerkje\nmerkkledij\nmerkkleding\nmerklap\nmerkletter\nmerkloos\nmerknaam\nmerkproduct\nmerkrecht\nmerksteen\nmerkteken\nmerktrouw\nmerkvast\nmerkvervalsing\nmerkvoorkeur\nmerkwaardig\nmerkwaardigerwijs\nmerkwaardigerwijze\nmerkwaardigheid\nmerrie\nmerriepaard\nmerrieveulen\nmes\nmesalliance\nmescal\nmescaline\nmesjogge\nmesjokke\nmesmerisme\nmesoderm\nmesolithicum\nmesolithisch\nmeson\nmesosfeer\nmesothelioom\nmesozoïcum\nmespunt\nmess\nmesschede\nmesscherp\nmessen\nmessenbak\nmessenhandel\nmessenla\nmessenlade\nmessenlegger\nmessenmaker\nmessenschede\nmessenslijper\nmessentrekker\nmessiaans\nmessianisme\nmessianistisch\nmessias\nmessiasfiguren\nmessiasfiguur\nmessing\nmessingen\nmessnede\nmessnee\nmessroom\nmessteek\nmest\nmestactieplan\nmestafzet\nmestakkoord\nmestbank\nmestbedrijf\nmestbeleid\nmestbelt\nmestboekhouding\nmestboycot\nmesten\nmester\nmesterij\nmestfabriek\nmestgier\nmestgreep\nmesthaak\nmestheffing\nmesthoen\nmesthoop\nmesties\nmesting\nmestkalf\nmestkar\nmestkever\nmestkoe\nmestnorm\nmestopslag\nmestoverschot\nmestprobleem\nmestproblematiek\nmestproductie\nmestput\nmestriek\nmestsilo\nmestspreider\nmeststof\nmeststoffenwet\nmesttank\nmesttor\nmestvaalt\nmestvarken\nmestvee\nmestverspreider\nmestverwerker\nmestverwerking\nmestverwerkingsbedrijf\nmestverwerkingsfabriek\nmestvoer\nmestvork\nmestwagen\nmestwet\nmestwetgeving\nmet\nmet dien verstande\nmet veel verve\nmet verve\nmet voorbedachten rade\nmeta-analyse\nmetaal\nmetaalachtig\nmetaalader\nmetaalarbeider\nmetaalbedrijf\nmetaalbewerker\nmetaalbewerking\nmetaalbewerkingsbedrijf\nmetaalbond\nmetaalbranche\nmetaalconstructie\nmetaalconstructiebedrijf\nmetaaldetector\nmetaaldraad\nmetaalfabriek\nmetaalfolie\nmetaalgieter\nmetaalgieterij\nmetaalglans\nmetaalindustrie\nmetaalionen\nmetaalklank\nmetaalkleur\nmetaalkleurige\nmetaalkunde\nmetaalkundig\nmetaallegering\nmetaalmoeheid\nmetaalnijverheid\nmetaaloxide\nmetaalpoeder\nmetaalsector\nmetaalslak\nmetaalsoort\nmetaaltechniek\nmetaalvakbond\nmetaalverwerkend\nmetaalverwerking\nmetaalverwerkingsbedrijf\nmetaalwaren\nmetaalzaag\nmetaalzout\nmetabletica\nmetaboliet\nmetabolisch\nmetabolisme\nmetadata\nmetafoor\nmetafora\nmetaforiek\nmetaforisch\nmetafysica\nmetafysicus\nmetafysisch\nmetagegeven\nmetaldehyde\nmetalektro\nmetalen\nmetalfestival\nmetalgroep\nmetalig\nmetalinguïstisch\nmetallic\nmetalliek\nmetallisatie\nmetallisch\nmetalliseren\nmetallografie\nmetalloïde\nmetallurg\nmetallurgie\nmetallurgisch\nmetamorf\nmetamorfose\nmetamorfoseren\nmetanalyse\nmetastase\nmetastaseren\nmetasymbolen\nmetataal\nmetathese\nmetathesis\nmeteen\nmetempsychose\nmeten\nmeteoor\nmeteoorregen\nmeteoorsteen\nmeteorenzwerm\nmeteoriet\nmeteorietenregen\nmeteorietinslag\nmeteoroliet\nmeteorologie\nmeteorologisch\nmeteoroloog\nmeter\nmeterbord\nmeterfabriek\nmeterhuur\nmeterkast\nmetermarkt\nmeteropnemer\nmeteropneming\nmeterprijs\nmetersbreed\nmeterschap\nmetersdiep\nmetersdik\nmetersgroot\nmetershoog\nmeterslang\nmeterstand\nmetertarief\nmetgezel\nmetgezellin\nmethaan\nmethaangas\nmethadon\nmethadonbus\nmethadonprogramma\nmethadonverstrekking\nmethanol\nmethionine\nmethode\nmethodeleer\nmethoden\nmethodes\nmethodiek\nmethodisch\nmethodisme\nmethodist\nmethodistisch\nmethodologie\nmethodologisch\nmethodoloog\nmethotrexaat\nmethyl\nmethylalcohol\nmethylbromide\nmethyleenchloride\nmetier\nmeting\nmetonymia\nmetonymie\nmetonymisch\nmetrage\nmetriek\nmetrisch\nmetro\nmetrobaan\nmetrobedrijf\nmetrobestuurder\nmetrobuis\nmetrohalte\nmetrokaartje\nmetrolijn\nmetronet\nmetronetwerk\nmetronomisch\nmetronoom\nmetronteken\nmetronymicum\nmetropoliet\nmetropolis\nmetropolitaans\nmetropool\nmetrostation\nmetrostel\nmetrostelsel\nmetrosysteem\nmetrotrein\nmetrotunnel\nmetroverbinding\nmetrum\nmetselaar\nmetselaarsbaas\nmetselaarsknecht\nmetselaarswerk\nmetselen\nmetselkalk\nmetselploeg\nmetselspecie\nmetselsteen\nmetselverband\nmetselwerk\nmetselzand\nmetsen\nmetser\nmetserdiender\nmetsersbaas\nmetsersstiel\nmetten\nmetterdaad\nmetterhaast\nmettertijd\nmetterwoon\nmetworst\nmeubel\nmeubelbedrijf\nmeubelbeurs\nmeubelboulevard\nmeubelbranche\nmeubelcollectie\nmeubeldesign\nmeubelen\nmeubelfabriek\nmeubelfabrikant\nmeubelgigant\nmeubelgordijn\nmeubelindustrie\nmeubelmagazijn\nmeubelmaken\nmeubelmaker\nmeubelmakerij\nmeubelontwerp\nmeubelontwerper\nmeubelplaat\nmeubelplein\nmeubelsector\nmeubelstof\nmeubelstoffeerder\nmeubelstuk\nmeubelwas\nmeubelwinkel\nmeubelzaak\nmeubilair\nmeubileren\nmeubilering\nmeublement\nmeug\nmeuk\nmeuken\nmeun\nmeuren\nmeute\nmevr.\nmevrouw\nmezelf\nmezzo\nmezzosopraan\nmi\nmiasma\nmiasme\nmiauw\nmiauwen\nmica\nmicaglas\nmichielszomer\nmicro\nmicro-economie\nmicro-economisch\nmicro-elektronica\nmicro-elektronisch\nmicro-ondernemer\nmicro-onderneming\nmicro-organisme\nmicro-organismen\nmicroampère\nmicroarchief\nmicrobalans\nmicrobe\nmicrobieel\nmicrobiologe\nmicrobiologie\nmicrobiologisch\nmicrobioloog\nmicroburst\nmicrocefaal\nmicrocefalie\nmicrochemie\nmicrochip\nmicrochirurgie\nmicrocomputer\nmicrofiche\nmicrofilm\nmicrofilmen\nmicroflora\nmicrofonist\nmicrofoon\nmicrofoonstandaard\nmicrofoontechniek\nmicrofossiel\nmicrofoto\nmicrofotografie\nmicrogolf\nmicrogolfoven\nmicrogram\nmicrohenry\nmicrokaart\nmicroklimaat\nmicrokosmos\nmicrokrediet\nmicrometeoriet\nmicrometer\nmicron\nmicroniveau\nmicroprocessor\nmicroprocessorsysteem\nmicroschaal\nmicroscoop\nmicroscopie\nmicroscopisch\nmicroseconde\nmicrosfeer\nmicrostructuur\nmicrotechniek\nmicrotoon\nmicrovolt\nmicrowatt\nmicrozwaartekracht\nmidasoren\nmiddag\nmiddagappel\nmiddagbeurt\nmiddagbulletin\nmiddagcirkel\nmiddagconcert\nmiddagdienst\nmiddagdutje\nmiddageditie\nmiddageten\nmiddaggebed\nmiddaghitte\nmiddaghoogte\nmiddagjournaal\nmiddagkerk\nmiddagkrant\nmiddaglijn\nmiddagmaal\nmiddagmaaltijd\nmiddagmalen\nmiddagpauze\nmiddagpauzedienst\nmiddagploeg\nmiddagpost\nmiddagprogramma\nmiddagrust\nmiddagschaft\nmiddagsessie\nmiddagslaapje\nmiddagsluiting\nmiddagspreekuur\nmiddagtemperatuur\nmiddagtrein\nmiddaguur\nmiddagvoorstelling\nmiddagzitting\nmiddagzon\nmiddel\nmiddelaar\nmiddelaarschap\nmiddelares\nmiddelbaar\nmiddelbareschooldiploma\nmiddelbareschooltijd\nmiddeleeuwen\nmiddeleeuwer\nmiddeleeuws\nmiddelen\nmiddelenbeheer\nmiddelengebruik\nmiddelentoets\nmiddelerwijl\nmiddelevenredig\nmiddelevenredige\nmiddelfijn\nmiddelgebergte\nmiddelgewicht\nmiddelgroot\nmiddelhand\nmiddelhoog\nmiddeling\nmiddelkleur\nmiddellands\nmiddellang\nmiddellangeafstandsraket\nmiddellijk\nmiddellijn\nmiddelloodlijn\nmiddelloon\nmiddelloonstelsel\nmiddelloonsysteem\nmiddelmaat\nmiddelmatig\nmiddelmatigheid\nmiddelmoot\nmiddelpunt\nmiddelpuntvliedend\nmiddelpuntzoekend\nmiddels\nmiddelschot\nmiddelsoort\nmiddelste\nmiddelstuk\nmiddelvinger\nmiddelzwaar\nmidden\nmiddenafstand\nmiddenas\nmiddenbaan\nmiddenbedrijf\nmiddenberm\nmiddenbermbeveiliging\nmiddenbeuk\nmiddenblad\nmiddenblok\nmiddenbouw\nmiddencategorie\nmiddencirkel\nmiddenconsole\nmiddendeel\nmiddending\nmiddendoor\nmiddenevenredig\nmiddenfase\nmiddengebied\nmiddengedeelte\nmiddengeleider\nmiddengewicht\nmiddengolf\nmiddengolfzender\nmiddengroep\nmiddenhandsbeentje\nmiddenin\nmiddeninkomen\nmiddenkader\nmiddenkaderfunctie\nmiddenklasse\nmiddenklassenauto\nmiddenklassengezin\nmiddenklassengezinnen\nmiddenklasser\nmiddenkleur\nmiddenkoers\nmiddenlaag\nmiddenlijn\nmiddenlinie\nmiddenman\nmiddenmanagement\nmiddenmoot\nmiddenmoter\nmiddenmotor\nmiddenniveau\nmiddenoor\nmiddenoorontsteking\nmiddenpad\nmiddenpaneel\nmiddenpartij\nmiddenplein\nmiddenpositie\nmiddenprijs\nmiddenrif\nmiddenrifademhaling\nmiddenrijm\nmiddenschip\nmiddenschool\nmiddenschot\nmiddensegment\nmiddensoort\nmiddenspanningsnet\nmiddenspel\nmiddenspeler\nmiddenstand\nmiddenstander\nmiddenstandsdiploma\nmiddenstandsexamen\nmiddenstandsorganisatie\nmiddenstandspolitiek\nmiddenstandsvereniging\nmiddensteentijd\nmiddenstem\nmiddenstijl\nmiddenstip\nmiddenstof\nmiddenstreep\nmiddenstrook\nmiddenstuk\nmiddenterm\nmiddenterrein\nmiddenvak\nmiddenveld\nmiddenvelder\nmiddenvinger\nmiddenvoetsbeentje\nmiddenvoor\nmiddenweg\nmiddenzaal\nmiddernacht\nmiddernachtelijk\nmiddernachtmis\nmiddernachtsuur\nmiddernachtzendeling\nmiddernachtzending\nmiddernachtzon\nmiddle class\nmiddle-of-the-roadmuziek\nmidgetgolf\nmidgetgolfen\nmidhalf\nmidi\nmidlifecrisis\nmidlifeproblemen\nmidscheeps\nmidvoor\nmidweek\nmidweeks\nmidwinter\nmidwinterblazen\nmidwinterhoorn\nmidwinterhoornblazen\nmidwinterhoren\nmidzomer\nmidzomernacht\nmidzomernachtfeest\nmie\nmiep\nmier\nmieren\nmierenegel\nmierenei\nmiereneter\nmierenhoop\nmierenjager\nmierenkolonie\nmierenleeuw\nmierennest\nmierenneuker\nmierenpad\nmierenstaat\nmierenzuur\nmierik\nmierikswortel\nmierikswortelsaus\nmierikwortel\nmierzoet\nmies\nmieter\nmieteren\nmieters\nmietje\nmiezel\nmiezelregen\nmiezeren\nmiezerig\nmiezerigheid\nmifepriston\nmigraine\nmigraineaanval\nmigrainepatiënt\nmigrant\nmigrantenbeleid\nmigrantengemeenschap\nmigrantenhulpverlening\nmigrantenjongere\nmigrantenorganisatie\nmigrantenproblematiek\nmigrantenrellen\nmigrantenstemrecht\nmigrantenstroom\nmigrantenwijk\nmigratie\nmigratiebeleid\nmigratiedruk\nmigratiefactor\nmigratiegolf\nmigratiekosten\nmigratieoverschot\nmigratiepolitiek\nmigratierecht\nmigratiesaldo\nmigratiestop\nmigratiestroom\nmigratietheorie\nmigreren\nmihoen\nmihrab\nmij\nmijden\nmijl\nmijlenver\nmijlpaal\nmijlsteen\nmijmeraar\nmijmeren\nmijmerij\nmijmering\nmijn\nmijn en dijn\nmijnbedrijf\nmijnbouw\nmijnbouwactiviteiten\nmijnbouwbedrijf\nmijnbouwgigant\nmijnbouwindustrie\nmijnbouwkunde\nmijnbouwkundig\nmijnbouwkundige\nmijnbouwmaatschappij\nmijnbouwonderneming\nmijnbouwsector\nmijncomplex\nmijnconcessie\nmijndetector\nmijndirectie\nmijndistrict\nmijne\nmijnen\nmijnenbestrijdingsvaartuig\nmijnendienst\nmijnengevaar\nmijnenjager\nmijnenlegger\nmijnenruimer\nmijnenthalve\nmijnentwege\nmijnentwil\nmijnentwille\nmijnenveger\nmijnenveld\nmijnenvrij\nmijner\nmijnerzijds\nmijngang\nmijngas\nmijngebied\nmijngroep\nmijnheer\nmijnheren\nmijnhout\nmijnindustrie\nmijningenieur\nmijnlamp\nmijnonderneming\nmijnongeluk\nmijnontginning\nmijnopruimingsdienst\nmijnraad\nmijnramp\nmijns\nmijns inziens\nmijnschacht\nmijnsector\nmijnsite\nmijnsluiting\nmijnstad\nmijnstaking\nmijnstatuut\nmijnstreek\nmijnterrein\nmijntoestel\nmijnwerker\nmijnwerkerslamp\nmijnwerkersstaking\nmijnwezen\nmijnworm\nmijnwormziekte\nmijt\nmijten\nmijter\nmijteren\nmijtertje\nmijzelf\nmik\nmikado\nmikken\nmikmak\nmikpunt\nmila\nmild\nmilddadig\nmilde\nmilderen\nmildheid\nmilicien\nmilieu\nmilieu-informatie\nmilieu-inspanning\nmilieu-inspecteur\nmilieu-inspecteurs\nmilieu-inspectie\nmilieu-invloed\nmilieu-uitgaven\nmilieuactiegroep\nmilieuactivist\nmilieuactiviste\nmilieuadvies\nmilieuadviesbureau\nmilieuadviseur\nmilieuafdeling\nmilieuambtenaar\nmilieuaspect\nmilieubalans\nmilieubederf\nmilieubedrijf\nmilieubegroting\nmilieubeheer\nmilieubehoud\nmilieubelang\nmilieubelastend\nmilieubelasting\nmilieubeleid\nmilieubeleidsplan\nmilieubeschermend\nmilieubeschermer\nmilieubescherming\nmilieubesef\nmilieubeweging\nmilieubewust\nmilieubewustzijn\nmilieubox\nmilieubureau\nmilieucalamiteit\nmilieucentrum\nmilieucijfers\nmilieuclub\nmilieucommissie\nmilieuconferentie\nmilieucontrole\nmilieuconvenant\nmilieucoördinator\nmilieucriminaliteit\nmilieucrimineel\nmilieucrisis\nmilieudebat\nmilieudefensie\nmilieudelict\nmilieudenken\nmilieudeskundige\nmilieudienst\nmilieudoelstelling\nmilieudruk\nmilieueconomie\nmilieueducatie\nmilieueffect\nmilieueffectrapport\nmilieueffectrapportage\nmilieueis\nmilieuerosie\nmilieufactor\nmilieufederatie\nmilieufonds\nmilieufraude\nmilieufreak\nmilieugebied\nmilieugebonden\nmilieugedrag\nmilieugroep\nmilieugroepering\nmilieuhandhaving\nmilieuheffing\nmilieuhinder\nmilieuhoogleraar\nmilieuhygiëne\nmilieuhygiënisch\nmilieujaarverslag\nmilieukeur\nmilieukeuring\nmilieukeurmerk\nmilieukosten\nmilieukunde\nmilieukundig\nmilieukundige\nmilieukwaliteit\nmilieulasten\nmilieuleges\nmilieulobby\nmilieumaatregel\nmilieumanagement\nmilieumarkt\nmilieuminister\nmilieuministerie\nmilieunorm\nmilieuonderzoek\nmilieuonvriendelijk\nmilieuoogpunt\nmilieuorganisatie\nmilieuoverlast\nmilieuovertreding\nmilieuoverwegingen\nmilieuparagraaf\nmilieupartij\nmilieuplan\nmilieuplanning\nmilieupolitie\nmilieupolitiek\nmilieuprijs\nmilieuprobleem\nmilieuproblematiek\nmilieuprogramma\nmilieuproject\nmilieuraad\nmilieuramp\nmilieurapport\nmilieurapportage\nmilieurecht\nmilieuregelgeving\nmilieurendement\nmilieurisico\nmilieus\nmilieuschade\nmilieuschandaal\nmilieuschets\nmilieuschuld\nmilieusector\nmilieusituatie\nmilieuspecialist\nmilieustraat\nmilieustudie\nmilieutaks\nmilieuteam\nmilieutechniek\nmilieutechnisch\nmilieutechnologie\nmilieutelefoon\nmilieuthema\nmilieutoeslag\nmilieutop\nmilieuverantwoord\nmilieuverdrag\nmilieuvereniging\nmilieuvergunning\nmilieuverloedering\nmilieuverontreiniging\nmilieuverslag\nmilieuvervuilend\nmilieuvervuiler\nmilieuvervuiling\nmilieuvoordeel\nmilieuvraagstuk\nmilieuvreemd\nmilieuvriendelijk\nmilieuvriendelijkheid\nmilieuwachter\nmilieuwereld\nmilieuwerkgroep\nmilieuwet\nmilieuwetgeving\nmilieuwethouder\nmilieuwinst\nmilieuzaak\nmilieuzorg\nmilieuzorgsysteem\nmilitair\nmilitair-civiel\nmilitair-industrieel\nmilitair-politiek\nmilitair-strategisch\nmilitair-technisch\nmilitant\nmilitante\nmilitanten\nmilitantisme\nmilitariseren\nmilitarisering\nmilitarisme\nmilitarist\nmilitaristisch\nmilitary\nmilitaryruiter\nmilitia\nmilitie\nmilitieleider\nmilitielid\nmilitieplicht\nmilitieraad\nmiljard\nmiljardair\nmiljardenaankoop\nmiljardenbezit\nmiljardenbod\nmiljardenbusiness\nmiljardenclaim\nmiljardencontract\nmiljardendans\nmiljardendeal\nmiljardenfraude\nmiljardenhulp\nmiljardeninvestering\nmiljardenlening\nmiljardenmarkt\nmiljardennota\nmiljardenomzet\nmiljardenorder\nmiljardenovername\nmiljardenplan\nmiljardenproject\nmiljardenschade\nmiljardenschuld\nmiljardensteun\nmiljardenstroom\nmiljardenstrop\nmiljardenveiling\nmiljardenveilingen\nmiljardenverlies\nmiljardenwinst\nmiljardenzaak\nmiljardste\nmiljoen\nmiljoenenbedrijf\nmiljoenenboete\nmiljoenenbonus\nmiljoenenclaim\nmiljoenencontract\nmiljoenendeal\nmiljoenenerfenis\nmiljoenenfraude\nmiljoeneninvestering\nmiljoenennota\nmiljoenenomzet\nmiljoenenorder\nmiljoenenproject\nmiljoenenpubliek\nmiljoenenroof\nmiljoenenschade\nmiljoenenschuld\nmiljoenenstad\nmiljoenenstrop\nmiljoenentekort\nmiljoenentransactie\nmiljoenentransfer\nmiljoenenverlies\nmiljoenenwinst\nmiljoenenzaak\nmiljoenenzwendel\nmiljoenste\nmiljonair\nmiljonairsdochter\nmilkshake\nmille\nmillennium\nmillenniumbestendig\nmillenniumbestendigheid\nmillenniumbom\nmillenniumbug\nmillenniumjaar\nmillenniumnacht\nmillenniumovergang\nmillenniumplatform\nmillenniumprobleem\nmillenniumproblematiek\nmillenniumproject\nmillenniumproof\nmillenniumtest\nmillenniumviering\nmillenniumwisseling\nmilliade\nmilliampère\nmillibar\nmilligram\nmillihenry\nmillihertz\nmilliliter\nmillimeter\nmillimeteren\nmillimeterpapier\nmillimeterwerk\nmillirem\nmilliseconde\nmillisievert\nmillivolt\nmilliwatt\nmilt\nmiltvuur\nmiltvuurbacterie\nmiltvuurbesmetting\nmiltvuurbrief\nmime\nmimegroep\nmimen\nmimer\nmimesis\nmimespeelster\nmimespel\nmimespeler\nmimetheater\nmimi\nmimicry\nmimicus\nmimiek\nmimisch\nmimograaf\nmimografie\nmimosa\nmin\nmin-maxcontract\nmin.\nminachten\nminachtend\nminachting\nminaret\nminarine\nminder\nminderbedeeld\nminderbedeelde\nminderbegaafd\nminderbroeder\nmindere\nminderen\nminderhedenakkoord\nminderhedenbeleid\nminderhedenprobleem\nminderhedenproblematiek\nminderhedenvraagstuk\nminderheid\nminderheidsaandeel\nminderheidsaandeelhouder\nminderheidsaandelen\nminderheidsbelang\nminderheidsgroep\nminderheidsgroepering\nminderheidskabinet\nminderheidsnota\nminderheidsparticipatie\nminderheidspartij\nminderheidspositie\nminderheidsregering\nminderheidsregime\nminderheidsstandpunt\nminderheidstaal\nmindering\nminderjarig\nminderjarige\nminderjarigheid\nmindervalide\nminderwaardig\nminderwaardige\nminderwaardigheid\nminderwaardigheidsbesef\nminderwaardigheidscomplex\nminderwaardigheidsgevoel\nmineraal\nmineraalrijk\nmineraalwater\nmineraalwatermerk\nmineralenbalans\nmineralenboekhouding\nmineralenoverschot\nmineralisatie\nmineraliseren\nmineralogie\nmineralogisch\nmineraloog\nminestra\nminestrone\nmineur\nmineurstemming\nminheid\nmini\nmini-cd\nmini-enquête\nmini-essay\nmini-jurk\nminiaturisatie\nminiaturisering\nminiaturist\nminiatuur\nminiatuurformaat\nminiatuurportret\nminiatuurschilder\nminiatuurschilderes\nminiatuurstad\nminiatuurversie\nminibar\nminibiografie\nminibus\nminicamping\nminicomputer\nminiconcert\nminiconferentie\nminicrisis\nminidecreet\nminidisk\nminiem\nminiemen\nminifestival\nminiformaat\nminigolf\nminima\nminimaal\nminimabeleid\nminimal art\nminimal music\nminimalisatie\nminimaliseren\nminimalisering\nminimalisme\nminimalist\nminimalistisch\nminimode\nminimum\nminimumaantal\nminimumbedrag\nminimumbod\nminimumbudget\nminimumduur\nminimumeis\nminimumformaat\nminimumgrens\nminimuminkomen\nminimumjeugdloon\nminimumkapitaal\nminimumleeftijd\nminimumlengte\nminimumlijder\nminimumloner\nminimumloon\nminimumloonkosten\nminimumniveau\nminimumnorm\nminimumorder\nminimumpakket\nminimumpensioen\nminimumpercentage\nminimumpremie\nminimumprijs\nminimumprogramma\nminimumrendement\nminimumsalaris\nminimumsnelheid\nminimumstraf\nminimumtarief\nminimumtemperatuur\nminimumthermometer\nminimumuitkering\nminimumvakantietoeslag\nminimumvereiste\nminimumvoorwaarde\nminimumwaarde\nminionderneming\nminirok\nminiseren\nminiserie\nminiset\nministaat\nministadion\nministelsel\nminister\nminister-president\nminister-presidentschap\nminister-resident\nministerconferentie\nministeriabel\nministerie\nministerieel\nministeriegebouw\nministerpapier\nministerportefeuille\nministerpost\nministerraad\nministerraadsvergadering\nministersbijeenkomst\nministerschap\nministersconferentie\nministerscrisis\nministerskamer\nministersniveau\nministersoverleg\nministersploeg\nministersportefeuille\nministerspost\nministerssalaris\nministerszetel\nministreren\nminitop\nminitrip\nminivoetbal\nmink\nminkukel\nminlijk\nminlijke\nminnaar\nminnares\nminnarij\nminne\nminnebrief\nminnedicht\nminnedichter\nminnedrank\nminnegod\nminnehandel\nminnekozen\nminnekozerij\nminnekunst\nminnelied\nminnelijk\nminnelijkheid\nminnen\nminnenijd\nminnenswaard\nminnepijn\nminnespel\nminnetjes\nminnezang\nminnezanger\nminor\nminoriet\nminoriseren\nminorisering\nminoriteit\nminpunt\nminst\nminstbedeelde\nminste\nminstens\nminstreel\nminteken\nmintgroen\nminus\nminuscuul\nminuskel\nminutenlang\nminutieus\nminuut\nminuutwijzer\nminvermogend\nminvermogende\nminwaarde\nminzaam\nminzaamheid\nminziek\nmioceen\nmirabel\nmiraculeus\nmirakel\nmirakeloplossing\nmirakels\nmirakelspel\nmirliton\nmirre\nmirreboom\nmirt\nmirte\nmirtenboom\nmirtenkrans\nmirtenstruik\nmis\nmis poes\nmisachten\nmisantroop\nmisantropie\nmisantropisch\nmisbaar\nmisbak\nmisbakken\nmisbaksel\nmisboek\nmisbruik\nmisbruiken\nmisbruiker\nmisbruikervaring\nmisbruiksituatie\nmisbruikwetgeving\nmiscalculatie\nmiscommunicatie\nmisdaad\nmisdaadanalyse\nmisdaadauteur\nmisdaadbende\nmisdaadbestrijders\nmisdaadbestrijding\nmisdaadcijfer\nmisdaadfilm\nmisdaadgeld\nmisdaadgenre\nmisdaadgeschiedenis\nmisdaadjournalist\nmisdaadkomedie\nmisdaadliteratuur\nmisdaadmilieu\nmisdaadorganisatie\nmisdaadpreventie\nmisdaadroman\nmisdaadschrijver\nmisdaadserie\nmisdaadsyndicaat\nmisdaadthriller\nmisdaadverhaal\nmisdaadverslaggever\nmisdaadwereld\nmisdadig\nmisdadiger\nmisdadigheid\nmisdadigster\nmisdeeld\nmisdeelde\nmisdienaar\nmisdoen\nmisdragen\nmisdraging\nmisdrijf\nmisdrijfzaken\nmisdrijven\nmisdruk\nmisdrukken\nmisduiden\nmise-en-place\nmise-en-scène\nmiserabel\nmiserere\nmiserie\nmisgaan\nmisgeboorte\nmisgewaad\nmisgewas\nmisgooien\nmisgreep\nmisgrijpen\nmisgunnen\nmishagen\nmishandelen\nmishandeling\nmishandelingsproblematiek\nmisinformatie\nmisintentie\nmisinterpretatie\nmiskelk\nmiskend\nmiskennen\nmiskenning\nmiskleun\nmiskleunen\nmiskleur\nmiskomen\nmiskoop\nmiskopen\nmiskraam\nmisleiden\nmisleider\nmisleiding\nmislezen\nmislopen\nmislukkeling\nmislukken\nmislukking\nmislukt\nmismaakt\nmismaaktheid\nmismanagement\nmismeesteren\nmismoedig\nmismoedigheid\nmisnoegd\nmisnoegdheid\nmisnoegen\nmisoffer\nmisogamie\nmisogyn\nmisogynie\nmisoogst\nmispakken\nmispel\nmispelaar\nmispelaren\nmispelboom\nmispelhout\nmispeuteren\nmisplaatst\nmisprijzen\nmispunt\nmisraden\nmisrekenen\nmisrekening\nmiss\nmissaal\nmisschien\nmisschieten\nmisschot\nmisselijk\nmisselijkheid\nmisselijkmakend\nmissen\nmisser\nmissie\nmissiegebied\nmissiehuis\nmissiekruis\nmissieland\nmissiepost\nmissiepriester\nmissiewerk\nmissieziekenhuis\nmissiezuster\nmissing\nmissionair\nmissionaris\nmissioneren\nmissionering\nmissive\nmisslaan\nmisslag\nmissprong\nmisstaan\nmisstand\nmisstap\nmisstappen\nmisstelling\nmisstoot\nmissverkiezing\nmist\nmistachterlicht\nmistasten\nmistbank\nmistel\nmistelboom\nmistellen\nmisten\nmistevreden\nmistflard\nmistgordijn\nmisthoorn\nmisthoren\nmistig\nmistigheid\nmistlamp\nmistletoe\nmistlicht\nmistoestand\nmistral\nmistred\nmistroostig\nmistroostigheid\nmistrouw\nmistrouwen\nmistrouwig\nmistsein\nmistsliert\nmistveld\nmistwedstrijd\nmisval\nmisvallen\nmisvatting\nmisverstaan\nmisverstand\nmisviering\nmisvormd\nmisvormen\nmisvorming\nmiswas\nmiswassen\nmiswijn\nmiswijzing\nmiszeggen\nmiszien\nmisère\nmitaine\nmitella\nmitigatie\nmitigeren\nmitochondriaal\nmitochondriën\nmitose\nmitrailleren\nmitrailleur\nmitrailleurkogel\nmitrailleurpistool\nmitrailleurschot\nmitrailleursnest\nmitrailleurvuur\nmits\nmitsdien\nmitsen\nmitsgaders\nmix\nmix-cd\nmixage\nmixed grill\nmixed pickles\nmixen\nmixer\nmixes\nmixtum\nmixture\nmixtuur\nmkb\nmld.\nmlk-school\nmln.\nmnemotechniek\nmnemotechnisch\nmobbing\nmobiel\nmobieletelefoniebedrijf\nmobieltje\nmobilair\nmobile\nmobilhome\nmobilisabel\nmobilisatie\nmobilisatiecentrum\nmobilisatiecomplex\nmobilisatieplan\nmobiliseerbaar\nmobiliseren\nmobilisering\nmobiliteit\nmobiliteitsbeleid\nmobiliteitscentrum\nmobiliteitsfonds\nmobiliteitsgroei\nmobiliteitsplan\nmobiliteitsprobleem\nmobiliteitsproblematiek\nmobiliteitsratio\nmobiliteitsregeling\nmobiliteitsvraagstuk\nmobilofonie\nmobilofoon\nmobilofoonabonnee\nmobilofooninstallatie\nmobilofoonnet\nmobilofoonoperator\nmobimeter\nmocassin\nmocht\nmodaal\nmodaliteit\nmodder\nmodderaar\nmodderbad\nmodderbrij\nmoddercampagne\nmodderen\nmodderfiguur\nmoddergevecht\nmoddergooien\nmodderig\nmodderigheid\nmodderkruiper\nmodderkuil\nmodderlaag\nmodderlawine\nmoddermolen\nmodderplas\nmodderpoel\nmodderschuit\nmoddersloot\nmodderspat\nmodderstroom\nmoddervechten\nmoddervet\nmode\nmode-evenement\nmode-imperium\nmode-industrie\nmodeacademie\nmodeaccessoire\nmodeafdeling\nmodeartikel\nmodebedrijf\nmodebeeld\nmodebewust\nmodebewustzijn\nmodeblad\nmodeboek\nmodeduo\nmodefoto\nmodefotograaf\nmodefotografie\nmodegebied\nmodegek\nmodegevoelig\nmodegevoeligheid\nmodegril\nmodehuis\nmodejournaal\nmodeketen\nmodekleur\nmodekoning\nmodekreet\nmodel\nmodelabel\nmodelactie\nmodeland\nmodelberekening\nmodelboerderij\nmodelbouw\nmodelbouwer\nmodelcode\nmodelcontract\nmodeldorp\nmodelhoeve\nmodelijn\nmodeljaar\nmodelkamer\nmodelkeuze\nmodelkinderen\nmodelkleding\nmodellenboek\nmodellenbureau\nmodellencarrière\nmodellenpolitiek\nmodellenreeks\nmodellenwedstrijd\nmodellenwerk\nmodelleren\nmodellering\nmodelleur\nmodelmatig\nmodelovereenkomst\nmodelportefeuille\nmodelproject\nmodelreglement\nmodelschool\nmodelspecificatie\nmodelspoorbaan\nmodelstaat\nmodelstad\nmodelstudie\nmodeltekenen\nmodeltekst\nmodeltheorie\nmodeltrein\nmodelvliegtuig\nmodelvorming\nmodelwijk\nmodelwoning\nmodelzaal\nmodem\nmodemaakster\nmodemagazijn\nmodemerk\nmodemkaart\nmodemuseum\nmodemverbinding\nmodeontwerper\nmodeontwerpster\nmodeopleiding\nmodepers\nmodeplaat\nmodepop\nmodeprent\nmodeprijs\nmoderaat\nmoderamen\nmoderateur\nmoderatie\nmoderato\nmoderator\nmoderedactrice\nmodereren\nmodern\nmodern-klassiek\nmodernen\nmodernisatie\nmoderniseren\nmodernisering\nmoderniseringsoperatie\nmoderniseringsplan\nmoderniseringsproces\nmoderniseringsprogramma\nmoderniseringsproject\nmodernisme\nmodernist\nmodernistisch\nmoderniteit\nmodeschool\nmodeshow\nmodesnufje\nmodespecials\nmodest\nmodestad\nmodetaal\nmodetalent\nmodetijdschrift\nmodetrend\nmodevak\nmodevakschool\nmodeverschijnsel\nmodevormgeving\nmodeweek\nmodewereld\nmodewinkel\nmodewoord\nmodezaak\nmodezucht\nmodieus\nmodieusheid\nmodieuze\nmodificatie\nmodificeerbaar\nmodificeerbaarheid\nmodificeren\nmodinette\nmodiste\nmodulair\nmodulariteit\nmodulatie\nmodulatietechniek\nmodulator\nmodule\nmoduleerbaar\nmoduleren\nmodulus\nmodus\nmoduul\nmoe\nmoed\nmoedeloos\nmoedeloosheid\nmoeder\nmoeder-dochterrelatie\nmoeder-overste\nmoederband\nmoederbank\nmoederbedrijf\nmoederbeeld\nmoederbij\nmoederbinding\nmoederblad\nmoederbord\nmoederborst\nmoederbuik\nmoedercel\nmoedercomplex\nmoederconcern\nmoedercursus\nmoederdier\nmoederen\nmoederfiguur\nmoedergeluk\nmoedergevoel\nmoedergod\nmoedergodin\nmoederhand\nmoederhart\nmoederholding\nmoederhuis\nmoederinstinct\nmoederkantoor\nmoederkerk\nmoederkloek\nmoederklok\nmoederklooster\nmoederkoek\nmoederkoorn\nmoederkoren\nmoederland\nmoederlands\nmoederlichaam\nmoederlief\nmoederliefde\nmoederlijk\nmoederlijkheid\nmoederloog\nmoederloos\nmoedermaatschappij\nmoedermavo\nmoedermelk\nmoedermens\nmoedermoord\nmoedernaakt\nmoederonderneming\nmoederorganisatie\nmoederpartij\nmoederplant\nmoederrol\nmoeders\nmoederschap\nmoederschip\nmoederschoot\nmoederskant\nmoederskind\nmoederskindje\nmoedersleutel\nmoederspraak\nmoederstad\nmoederszijde\nmoedertaal\nmoedertaalonderwijs\nmoedertaalspreker\nmoedertje\nmoedertjelief\nmoedervennootschap\nmoedervlek\nmoedervreugde\nmoederweelde\nmoederzegen\nmoederziel\nmoederzorg\nmoedgevend\nmoedig\nmoedigen\nmoedjahedien\nmoedwil\nmoedwillig\nmoedwilligheid\nmoeflon\nmoefti\nmoegespeeld\nmoegestreden\nmoeheid\nmoei\nmoeial\nmoeien\nmoeilijk\nmoeilijke\nmoeilijkheid\nmoeilijkheidsfactor\nmoeilijkheidsgraad\nmoeite\nmoeiteloos\nmoeitevol\nmoeizaam\nmoeizaamheid\nmoeke\nmoeken\nmoel\nmoelie\nmoellah\nmoer\nmoeraal\nmoeras\nmoerasachtig\nmoerasbos\nmoerasdelta\nmoerasgas\nmoerasgebied\nmoerasgrond\nmoeraskoorts\nmoerasland\nmoeraslucht\nmoerasplant\nmoerasschildpad\nmoerassig\nmoerassigheid\nmoerasveen\nmoerasvogel\nmoerbalk\nmoerbei\nmoerbeiblad\nmoerbeiboom\nmoerbeisap\nmoerbeizijde\nmoerbes\nmoerbint\nmoerbout\nmoerdraad\nmoeren\nmoergrond\nmoerig\nmoerkonijn\nmoermantherapie\nmoerplaatje\nmoersleutel\nmoerstaal\nmoertje\nmoervos\nmoes\nmoesappel\nmoesgroente\nmoeshof\nmoesjawara\nmoesje\nmoeskruid\nmoesson\nmoessonregen\nmoest\nmoestuin\nmoet\nmoeten\nmoetje\nmoezel\nmoezelwijn\nmoezjiek\nmof\nmoffel\nmoffelen\nmoffeloven\nmoffen\nmoffenpijp\nmoffin\nmogelijk\nmogelijkerwijs\nmogelijkerwijze\nmogelijkheid\nmogen\nmogendheid\nmogol\nmohair\nmohammedaan\nmohammedaans\nmohammedaanse\nmohammedanisme\nmoireren\nmoiré\nmok\nmoker\nmokeren\nmokerslag\nmokka\nmokkagebak\nmokkakoffie\nmokkakopje\nmokkapunt\nmokkataart\nmokkel\nmokkelen\nmokken\nmokkig\nmokkige\nmol\nmolaar\nmolair\nmolasse\nmolboon\nmoleculair\nmoleculairbiologisch\nmoleculairgewicht\nmolecule\nmolecuul\nmolecuulgewicht\nmolecuulmassa\nmolen\nmolenaar\nmolenaarsgraaf\nmolenaarsknecht\nmolenaarster\nmolenaarszoon\nmolenarin\nmolenas\nmolenbaas\nmolenbeek\nmolenbouwer\nmolengang\nmolenhoek\nmolenkap\nmolenpaard\nmolenrad\nmolenroede\nmolensteen\nmolentje\nmolentocht\nmolentrechter\nmolenvang\nmolenwiek\nmolenwieken\nmolenzeil\nmolest\nmolestatie\nmolestclausule\nmolesteren\nmolestpremie\nmolestverzekering\nmolik\nmolière\nmolières\nmolk\nmollah\nmollen\nmollengang\nmollengat\nmollenkruid\nmollenval\nmollenvel\nmollenwerk\nmolletje\nmollig\nmolligheid\nmolm\nmolmen\nmolmig\nmoloch\nmolotovcocktail\nmolsgat\nmolshoop\nmolsla\nmolteken\nmolton\nmoltonnen\nmolybdeen\nmom\nmombakkes\nmomber\nmomberschap\nmomboor\nmomboorschap\nmoment\nmoment suprême\nmomentaan\nmomenteel\nmomentopname\nmomentsluiter\nmomentum\nmommelen\nmommen\nmommerij\nmompelen\nmonachaal\nmonade\nmonarch\nmonarchaal\nmonarchie\nmonarchist\nmonarchistisch\nmonastiek\nmond\nmond op mond\nmond-en-klauwzeer\nmond-en-klauwzeercrisis\nmond-keelholte\nmond-op-mondbeademing\nmond-tot-mondreclame\nmondain\nmondaines\nmondbeschermer\nmonddeel\nmonddood\nmonddouche\nmonde\nmondeling\nmonden\nmondgemeen\nmondgevoel\nmondgezondheid\nmondharmonica\nmondharmonicaspeler\nmondharp\nmondheelkunde\nmondhoek\nmondholte\nmondhygiëne\nmondhygiënist\nmondhygiëniste\nmondiaal\nmondialisering\nmondialisme\nmondig\nmondigen\nmondigheid\nmonding\nmondjegauw\nmondjesmaat\nmondjevol\nmondkanker\nmondkapjes\nmondklem\nmondkost\nmondlijm\nmondmasker\nmondopening\nmondorgel\nmondreclame\nmondspoeling\nmondstopper\nmondstuk\nmondverzorging\nmondvol\nmondvoorraad\nmondwater\nmondzorg\nmonetair\nmonetarisme\nmonetarist\nmonetaristisch\nmoneybelt\nmoneymaker\nmongolisme\nmongoloïde\nmongool\nmonisme\nmonist\nmonistisch\nmonitor\nmonitoraat\nmonitoren\nmonitoring\nmonitoringscommissie\nmonitrice\nmonkelen\nmonkellach\nmonken\nmonnik\nmonniken\nmonnikenbestaan\nmonnikendom\nmonnikenklooster\nmonnikenlatijn\nmonnikenorde\nmonnikenwerk\nmonnikenwezen\nmonnikskap\nmonnikspij\nmonniksrob\nmono\nmonocausaal\nmonochord\nmonochromatisch\nmonochromie\nmonochroom\nmonocle\nmonocultureel\nmonocultuur\nmonocyclisch\nmonodie\nmonodrama\nmonofone\nmonofoon\nmonoftong\nmonogaam\nmonogamie\nmonografie\nmonografisch\nmonogram\nmonokini\nmonoklonaal\nmonoliet\nmonolithisch\nmonoloog\nmonomaan\nmonomane\nmonomanie\nmonomeer\nmonometallisme\nmonopolie\nmonopoliecommissie\nmonopoliemacht\nmonopoliepositie\nmonopolieprijs\nmonopoliesituatie\nmonopolievorming\nmonopoliseren\nmonopolisering\nmonopolist\nmonopolistisch\nmonopoliën\nmonopoloïde\nmonopoly\nmonopolyen\nmonopolygeld\nmonorail\nmonosyllabe\nmonosyllabisch\nmonotheïsme\nmonotheïst\nmonotheïsten\nmonotheïstisch\nmonotonie\nmonotoon\nmonotype\nmonseigneur\nmonsieur\nmonster\nmonsterachtig\nmonsterachtigheid\nmonsterbestand\nmonsterboekje\nmonstercollectie\nmonsterdoos\nmonsteren\nmonsterfles\nmonsterfusie\nmonsterhit\nmonstering\nmonsterlijk\nmonsterneming\nmonsterplaat\nmonsterproces\nmonsterproductie\nmonsterproject\nmonsterrol\nmonsterscore\nmonsterverbond\nmonsterverlies\nmonsterwinsten\nmonsterzege\nmonstrans\nmonstrueus\nmonstrum\nmonstruositeit\nmontage\nmontageafdeling\nmontageatelier\nmontagebouw\nmontagedraad\nmontagefabriek\nmontagefoto\nmontagehal\nmontagekamer\nmontagekosten\nmontageleider\nmontagemogelijkheid\nmontagetafel\nmontagevloer\nmontagewagen\nmontagewerk\nmontagewerkplaats\nmontagewoning\nmonter\nmonteren\nmonterheid\nmontering\nmontessorionderwijs\nmontessorischool\nmonteur\nmontuur\nmontycoat\nmonument\nmonumentaal\nmonumentaliteit\nmonumentenbeleid\nmonumentencommissie\nmonumentenlijst\nmonumentenstatus\nmonumentenverordening\nmonumentenwacht\nmonumentenwet\nmonumentenzorg\nmooi\nmooidoener\nmooidoenerij\nmooifilmerij\nmooiheid\nmooiigheid\nmooiklinkend\nmooimakerij\nmooipraten\nmooiprater\nmooipraterij\nmoois\nmooischrijverij\nmooist\nmooizitten\nmoonboots\nmoor\nmoord\nmoordaanslag\nmoordbrigade\nmoordcommando\nmoordcomplot\nmoorddadig\nmoorddadigheid\nmoorden\nmoordenaar\nmoordenaarsbende\nmoordenaarshand\nmoordenaarshol\nmoordenares\nmoordend\nmoorderij\nmoordervaring\nmoordgeschreeuw\nmoordkuil\nmoordlust\nmoordlustig\nmoordmachine\nmoordmysterie\nmoordonderzoek\nmoordpartij\nmoordplan\nmoordplek\nmoordpoging\nmoordtoneel\nmoordtuig\nmoordwapen\nmoordzaak\nmoordzucht\nmoordzuchtig\nmoorkop\nmoorpad\nmoot\nmop\nmopmuts\nmopneus\nmoppen\nmoppentapper\nmoppentapster\nmoppentrommel\nmopperaar\nmopperen\nmopperig\nmopperkont\nmopperpot\nmoppie\nmoppig\nmoppigheid\nmops\nmopshond\nmopsneus\nmoquette\nmora\nmoraal\nmoraalfilosofie\nmoraalfilosoof\nmoraalridder\nmoraaltheologie\nmoraaltheoloog\nmoraaltheorie\nmoralisatie\nmoraliseren\nmoralisme\nmoralist\nmoralistisch\nmoraliteit\nmoraliteitsbeginsel\nmoratoir\nmoratorium\nmorbide\nmorbiditeit\nmordicus\nmore\nmoreel\nmoreen\nmorel\nmorellenwijn\nmoren\nmorene\nmores\nmoreske\nmorfeem\nmorfine\nmorfinespuitje\nmorfinisme\nmorfinist\nmorfogenese\nmorfogenetisch\nmorfologie\nmorfologisch\nmorganatisch\nmorgen\nmorgenavond\nmorgenblad\nmorgendienst\nmorgendrank\nmorgeneditie\nmorgengave\nmorgengebed\nmorgengroet\nmorgenkoffie\nmorgenkrieken\nmorgenlicht\nmorgenlied\nmorgenmiddag\nmorgennacht\nmorgenochtend\nmorgenpost\nmorgenprogramma\nmorgenrood\nmorgens\nmorgenschemering\nmorgenster\nmorgenstond\nmorgenuur\nmorgenvroeg\nmorgenwandeling\nmorgenwijding\nmorgenwijn\nmorgenzon\nmoriaan\nmorielje\nmorille\nmormel\nmormeldier\nmormonen\nmormonenkerk\nmormoon\nmormoons\nmormoonse\nmorning-afterpil\nmorose\nmorrelen\nmorren\nmorrig\nmorsdood\nmorse\nmorsealfabet\nmorsebel\nmorselamp\nmorsen\nmorserij\nmorsesleutel\nmorseteken\nmorsig\nmorsigheid\nmorspot\nmortaliteit\nmortel\nmortelbak\nmortelen\nmortelmolen\nmortelsamenstelling\nmortier\nmortieraanval\nmortierbatterij\nmortierbeschieting\nmortiergranaat\nmortiervuur\nmortificatie\nmortuarium\nmorzel\nmorzelen\nmorzeling\nmos\nmosaangroei\nmosachtig\nmosasaurus\nmosgroen\nmosjav\nmoskee\nmoskeebestuur\nmoskeebezoek\nmoskeebezoeker\nmoskeeganger\nmoskeeorganisatie\nmoskeevereniging\nmoslaag\nmoslim\nmoslima\nmoslimactivist\nmoslimbevolking\nmoslimbeweging\nmoslimbroederschap\nmoslimcultuur\nmoslimenclave\nmoslimextremisme\nmoslimextremist\nmoslimextremistisch\nmoslimfundamentalisme\nmoslimfundamentalist\nmoslimfundamentalistisch\nmoslimgebied\nmoslimgeestelijken\nmoslimgeleerde\nmoslimgemeenschap\nmoslimgroep\nmoslimgroepering\nmoslimhaat\nmoslimland\nmoslimleerlingen\nmoslimleger\nmoslimleider\nmoslimman\nmoslimmeerderheid\nmoslimmeisje\nmoslimminderheid\nmoslimorganisatie\nmoslimpartij\nmoslimraad\nmoslims\nmoslimse\nmoslimsoldaat\nmoslimstaat\nmoslimstad\nmoslimterrorisme\nmoslimvrouw\nmoslimwereld\nmoslimwijk\nmosplant\nmosroos\nmossel\nmosselbaai\nmosselbank\nmosselcultuur\nmosselen\nmosselkraam\nmosselkweker\nmosselman\nmosselperceel\nmosselput\nmosselschelp\nmosselseizoen\nmosselteelt\nmosselvergiftiging\nmosselvisser\nmosselvisserij\nmosselwagen\nmosselwijf\nmosselzaad\nmossen\nmossig\nmost\nmostaard\nmostapijt\nmosterd\nmosterdgas\nmosterdgeel\nmosterdmolen\nmosterdolie\nmosterdpleister\nmosterdpot\nmosterdsaus\nmosterdsoep\nmosterdzaad\nmot\nmotard\nmotecht\nmotel\nmotet\nmotgaatje\nmotie\nmotief\nmotivatie\nmotivatierichting\nmotivator\nmotiveren\nmotivering\nmotiveringsplicht\nmoto\nmotor\nmotoragent\nmotorbediening\nmotorbedrijf\nmotorbende\nmotorblok\nmotorboot\nmotorbrandstof\nmotorbrigade\nmotorbril\nmotorclub\nmotorcompartiment\nmotorcoureur\nmotorcross\nmotorcrosser\nmotordefect\nmotorfabrikant\nmotorfiets\nmotorgeluid\nmotorgeronk\nmotorhelm\nmotoriek\nmotorindustrie\nmotorinhoud\nmotorisch\nmotoriseren\nmotorisering\nmotorist\nmotorjacht\nmotorjack\nmotorkap\nmotorlaars\nmotorlawaai\nmotorliefhebbers\nmotormaaier\nmotormanagement\nmotormarkt\nmotorolie\nmotoronderdeel\nmotorongeluk\nmotorongeval\nmotorophanging\nmotorordonnans\nmotorpak\nmotorpanne\nmotorpech\nmotorrace\nmotorracen\nmotorrennen\nmotorrenner\nmotorrijden\nmotorrijder\nmotorrijdster\nmotorrijtuig\nmotorrijtuigenbelasting\nmotorrijwiel\nmotorschip\nmotorscooter\nmotorsport\nmotorstoring\nmotortechniek\nmotortoertocht\nmotortractie\nmotorvermogen\nmotorvoertuig\nmotorwagen\nmotorwedstrijd\nmotorzaag\nmotorzaak\nmotorzijspan\nmotregen\nmotregenen\nmots\nmotse\nmotsen\nmotsneeuw\nmotte\nmottekasteel\nmotten\nmottenbal\nmottenballen\nmottenzak\nmottig\nmottigheid\nmotto\nmotvlinder\nmotvrij\nmouleren\nmountainbike\nmountainbikeje\nmountainbiken\nmountainbiker\nmoussaka\nmousse\nmousseline\nmousselinen\nmousselinesaus\nmousseren\nmoustache\nmout\nmoutbrood\nmouteest\nmouten\nmouter\nmouterij\nmoutextract\nmoutkoffie\nmoutsuiker\nmoutwijn\nmouvement\nmouw\nmouwloos\nmouwophouder\nmouwschort\nmouwstreep\nmouwstrijker\nmouwveger\nmouwvegerij\nmouwvest\nmove\nmoven\nmoveren\nmoyenne\nmozaïek\nmozaïektegel\nmozaïekvloer\nmozaïsch\nmozetta\nmozzarella\nmp\nmp3-formaat\nmr.\nmts\nmu\nmucoviscidose\nmud\nmudvol\nmuesli\nmuezzin\nmuf\nmuffen\nmuffig\nmuffigheid\nmuffin\nmufheid\nmufte\nmug\nmuggenbeet\nmuggenbult\nmuggengaas\nmuggenlarve\nmuggennet\nmuggenolie\nmuggenplaag\nmuggenpoot\nmuggensteek\nmuggenziften\nmuggenzifter\nmuggenzifterig\nmuggenzifterij\nmui\nmuik\nmuiken\nmuil\nmuilband\nmuilbanden\nmuildier\nmuilen\nmuilezel\nmuilkorf\nmuilkorven\nmuilpeer\nmuilplaag\nmuiltje\nmuis\nmuisaanwijzer\nmuisarm\nmuiscursor\nmuisgrijs\nmuishond\nmuisjes\nmuiskat\nmuiskleur\nmuiskleurig\nmuisklik\nmuisklikken\nmuisknop\nmuismat\nmuismatje\nmuisspel\nmuisstil\nmuiswijzer\nmuit\nmuiteling\nmuiten\nmuiter\nmuiterij\nmuitziek\nmuitzucht\nmuizen\nmuizengat\nmuizengerst\nmuizengif\nmuizenhol\nmuizenis\nmuizenissen\nmuizenkeutel\nmuizennest\nmuizenplaag\nmuizenstaart\nmuizentarwe\nmuizenval\nmuizenvanger\nmuizerd\nmul\nmulat\nmulattin\nmulder\nmuleta\nmullig\nmulo\nmuloschool\nmulti-etniciteit\nmulti-etnisch\nmulti-instrumentalist\nmulti-interpretabel\nmulti-inzetbaar\nmulticulti\nmulticulturalisme\nmulticulturaliteit\nmulticultureel\nmultidimensionaal\nmultidisciplinair\nmultifunctionaliteit\nmultifunctioneel\nmultilateraal\nmultilateralisme\nmultimedia\nmultimedia-pc\nmultimediaal\nmultimediabedrijf\nmultimediacomputer\nmultimediaconcern\nmultimediatoepassingen\nmultimiljardair\nmultimiljonair\nmultimodaal\nmultimode\nmultinationaal\nmultinational\nmultipel\nmultiplatform\nmultiple\nmultiple choice\nmultiple sclerose\nmultiplechoicetest\nmultiplechoicevraag\nmultiplechoicevragen\nmultiplex\nmultiplicatie\nmultiplicator\nmultipliceren\nmultiplier\nmultipliereffect\nmultipolair\nmultiraciaal\nmultiregionaal\nmultireligieus\nmultiresistent\nmultiset\nmultitasking\nmultomap\nmummelen\nmummelmond\nmummie\nmummiekist\nmummificatie\nmummificeren\nmungo\nmunicipaal\nmunitie\nmunitiedepot\nmunitiefabriek\nmunitiekist\nmunitiemagazijn\nmunitieopslag\nmunitieopslagplaats\nmunitietrein\nmunitievoorraad\nmunitiewagen\nmunster\nmunsterkerk\nmunt\nmuntbeleid\nmunteenheid\nmunten\nmuntenkabinet\nmuntenverzamelaar\nmunter\nmuntgasmeter\nmuntgeld\nmuntig\nmuntinworp\nmuntjak\nmuntje\nmuntloon\nmuntmeester\nmuntmetaal\nmuntmeter\nmuntontwaarding\nmuntrisico\nmuntschat\nmuntslag\nmuntsoort\nmuntsorteerder\nmuntspecie\nmuntstabiliteit\nmuntstelsel\nmuntstempel\nmuntstuk\nmuntteken\nmuntthee\nmuntunie\nmuntvervalsing\nmuntvoet\nmuntvoorraad\nmuntwezen\nmuon\nmurale\nmurmelen\nmurmureren\nmurw\nmurwen\nmurwheid\nmus\nmusculair\nmusculatuur\nmusea\nmuseaal\nmusette\nmuseum\nmuseumarchitectuur\nmuseumbeleid\nmuseumbezoek\nmuseumbezoeker\nmuseumboerderij\nmuseumcafé\nmuseumcollectie\nmuseumconservator\nmuseumdirecteur\nmuseumdirectie\nmuseumfunctie\nmuseumgebouw\nmuseumgids\nmuseumjaarkaart\nmuseumkunst\nmuseumkwartier\nmuseummedewerker\nmuseumpersoneel\nmuseumpubliek\nmuseumrestaurant\nmuseumrestaurants\nmuseums\nmuseumschip\nmuseumspoorlijn\nmuseumstaf\nmuseumstuk\nmuseumsuppoost\nmuseumtram\nmuseumtuin\nmuseumwereld\nmuseumwinkel\nmuseumzaal\nmusical\nmusicalfilm\nmusicalmaker\nmusicalproductie\nmusicalster\nmusicalversie\nmusicalwereld\nmusiceren\nmusichall\nmusicienne\nmusicologe\nmusicologie\nmusicologisch\nmusicoloog\nmusicus\nmusk\nmuskaat\nmuskaatboom\nmuskaatdruif\nmuskaatnoot\nmuskaatrasp\nmuskaatwijn\nmuskadel\nmuskadellenwijn\nmusket\nmusketier\nmusketonhaak\nmuskiet\nmuskietengaas\nmuskietennet\nmuskietenplaag\nmuskus\nmuskusdier\nmuskushert\nmuskuskruid\nmuskusos\nmuskusrat\nmussennest\nmust\nmustang\nmutabel\nmutageen\nmutagenese\nmutant\nmutatie\nmutatiebedrag\nmutatiebestand\nmutatiedatum\nmutatief\nmutatiekosten\nmutatieoverzicht\nmutatieprogramma\nmutatierecht\nmutatietarief\nmutatietheorie\nmutatieverslag\nmutatieverwerking\nmutatis mutandis\nmutator\nmuteren\nmutilatie\nmutileren\nmutisme\nmuts\nmutsaard\nmutsenmaakster\nmutserd\nmutsje\nmutualisme\nmutualiteit\nmutueel\nmuur\nmuuraansluiting\nmuuranker\nmuurbekleding\nmuurbeschot\nmuurbloem\nmuurbloempje\nmuurdikte\nmuurhagedis\nmuurhoeken\nmuurkluis\nmuurkrant\nmuurpijler\nmuurplaat\nmuurreclame\nmuursafe\nmuurschildering\nmuursteunen\nmuurvast\nmuurverf\nmuurvlak\nmuurwerk\nmuurwerken\nmuurzijden\nmuzak\nmuze\nmuzelman\nmuzentempel\nmuzenzoon\nmuziek\nmuziek-cd\nmuziekaanbod\nmuziekacademie\nmuziekafdeling\nmuziekalbum\nmuziekapparatuur\nmuziekarchief\nmuziekavond\nmuziekband\nmuziekbeleid\nmuziekbeleving\nmuziekbibliotheek\nmuziekblad\nmuziekboek\nmuziekbranche\nmuziekbusiness\nmuziekcafé\nmuziekcarrière\nmuziekcassette\nmuziekcentrum\nmuziekclips\nmuziekcollectie\nmuziekcommissie\nmuziekcompositie\nmuziekconcern\nmuziekconcours\nmuziekcriticus\nmuziekcultuur\nmuziekdienst\nmuziekdirecteur\nmuziekdivisie\nmuziekdocent\nmuziekdocumentaire\nmuziekdoos\nmuziekdrama\nmuziekensemble\nmuziekevenement\nmuziekfeest\nmuziekfestival\nmuziekfilm\nmuziekfragment\nmuziekgebied\nmuziekgenre\nmuziekgeschiedenis\nmuziekgezelschap\nmuziekgroep\nmuziekhandel\nmuziekindustrie\nmuziekinstallatie\nmuziekinstrument\nmuziekje\nmuziekjournalist\nmuziekkanaal\nmuziekkapel\nmuziekkast\nmuziekkenner\nmuziekkeus\nmuziekkeuze\nmuziekkiosk\nmuziekklimaat\nmuziekkorps\nmuzieklabel\nmuziekleer\nmuziekleraar\nmuzieklerares\nmuziekles\nmuzieklessenaar\nmuziekleven\nmuziekliefhebber\nmuziekliefhebster\nmuziekliteratuur\nmuziekmaatschappij\nmuziekmaken\nmuziekmarkt\nmuziekmeester\nmuziekmuseum\nmuzieknoot\nmuzieknotatie\nmuzieknummer\nmuziekonderwijs\nmuziekopleiding\nmuziekpapier\nmuziekpartituur\nmuziekpers\nmuziekpiraterij\nmuziekpodium\nmuziekpraktijk\nmuziekprijs\nmuziekproducent\nmuziekprogramma\nmuziekproject\nmuziekrecensent\nmuziekrecensie\nmuziekrechten\nmuziekscene\nmuziekschool\nmuziekschrift\nmuzieksector\nmuzieksite\nmuzieksleutel\nmuzieksmaak\nmuzieksoort\nmuziekspektakel\nmuziekstad\nmuziekstandaard\nmuziekstijl\nmuziekstroming\nmuziekstudie\nmuziekstudio\nmuziekstuk\nmuziektaal\nmuziektalent\nmuziektempel\nmuziektent\nmuziektheater\nmuziektheaterproductie\nmuziektheoreticus\nmuziektheorie\nmuziektherapeut\nmuziektherapie\nmuziektijdschrift\nmuziektraditie\nmuziekuitgever\nmuziekuitgeverij\nmuziekuitvoering\nmuziekvakonderwijs\nmuziekvereniging\nmuziekvideo\nmuziekvoorstelling\nmuziekvorm\nmuziekwedstrijd\nmuziekwereld\nmuziekwerk\nmuziekwetenschap\nmuziekwinkel\nmuziekzaal\nmuziekzender\nmuzikaal\nmuzikaliteit\nmuzikant\nmuzikante\nmuzikantesk\nmuzisch\nmw.\nmycelium\nmycologie\nmycologisch\nmycoloog\nmycoplasma\nmyeline\nmyopie\nmyosotis\nmyriade\nmyriameter\nmysterie\nmysteriespel\nmysterieus\nmystica\nmysticisme\nmysticus\nmystiek\nmystieken\nmystificatie\nmystificeren\nmythe\nmythevorming\nmythisch\nmythologie\nmythologisch\nmythologiseren\nmythologisering\nmytholoog\nmythomaan\nmythomanie\nmytylschool\nmyxomatose\nmêlee\nmêleren\nn\nn.a.v.\nn.o.t.k.\nn.v.t.\nna\nna-apen\nna-aper\nna-aperij\nna-ijl\nna-ijlde\nna-ijlden\nna-ijleffect\nna-ijlen\nna-ijling\nna-ijlt\nna-ijver\nna-ijverig\nna-ijveriger\nna-ijverigere\nna-ijverigst\nna-ijverigste\nnaad\nnaadloos\nnaadverbinding\nnaaf\nnaaiatelier\nnaaicursus\nnaaidoos\nnaaien\nnaaigaren\nnaaigarnituur\nnaaigerei\nnaaikamer\nnaaikransje\nnaaikussen\nnaailes\nnaaimachine\nnaaimand\nnaaimeisje\nnaainaald\nnaaischool\nnaaispullen\nnaaister\nnaaiwerk\nnaakt\nnaaktbloeier\nnaaktfiguur\nnaaktfoto\nnaaktfotografie\nnaaktheid\nnaaktloopster\nnaaktloper\nnaaktloperij\nnaaktmodel\nnaaktschilderij\nnaaktscène\nnaaktshow\nnaaktslak\nnaaktstrand\nnaaktzadig\nnaald\nnaaldboom\nnaaldbos\nnaaldenboekje\nnaaldenkoker\nnaaldenoog\nnaaldenprik\nnaaldhak\nnaaldhout\nnaaldscherp\nnaaldvakken\nnaaldwerk\nnaaldwoud\nnaam\nnaamaanduiding\nnaamafroeping\nnaambekendheid\nnaambord\nnaamchristen\nnaamcijfer\nnaamdag\nnaamdicht\nnaamfeest\nnaamgeefster\nnaamgenoot\nnaamgenote\nnaamgever\nnaamgeving\nnaamkaartje\nnaamkeuze\nnaamkunde\nnaamlijst\nnaamloos\nnaamlozen\nnaamplaat\nnaamrecht\nnaamsaanduiding\nnaamsbekendheid\nnaamstem\nnaamsverandering\nnaamsvermelding\nnaamsverwarring\nnaamsverwisseling\nnaamswijziging\nnaamval\nnaamvalsuitgang\nnaamvalsvorm\nnaamwoord\nnaamwoordelijk\nnaan\nnaar\nnaar binnen\nnaar de barbiesjes\nnaar de barrebiesjes\nnaar den vleze\nnaar hartenlust\nnaardien\nnaargeestig\nnaargeestigheid\nnaargelang\nnaarheid\nnaarling\nnaarmate\nnaarstig\nnaarstigheid\nnaarstiglijk\nnaartoe\nnaast\nnaaste\nnaasten\nnaastenliefde\nnaastgelegen\nnaasting\nnaastliggend\nnaatje\nnababbelen\nnabauwen\nnabehandeling\nnabericht\nnaberouw\nnabeschouwing\nnabespreken\nnabespreking\nnabestaande\nnabestaandenpensioen\nnabestaandenuitkering\nnabestaandenverzekering\nnabestaandenwet\nnabestellen\nnabestelling\nnabetaling\nnabetrachting\nnabeurs\nnabewerken\nnabewerking\nnabewerkingsapparatuur\nnabiecht\nnabij\nnabijgelegen\nnabijheid\nnabijkomen\nnablaffen\nnablijven\nnablijver\nnabloeding\nnabloei\nnabloeien\nnabloeier\nnablussen\nnablussing\nnabob\nnabootsen\nnabootsing\nnaborduren\nnabouwen\nnabrander\nnabrengen\nnaburig\nnabuur\nnabuurland\nnabuurschap\nnacalculatie\nnachecken\nnachochips\nnacht\nnachtarbeid\nnachtasiel\nnachtbel\nnachtblind\nnachtblinde\nnachtblindheid\nnachtbloem\nnachtboog\nnachtboot\nnachtbraken\nnachtbraker\nnachtbrakerij\nnachtburgemeester\nnachtbus\nnachtcafé\nnachtcamera's\nnachtclub\nnachtclubdanseres\nnachtclubeigenaar\nnachtclubportier\nnachtclubzangeres\nnachtcrème\nnachtcultuur\nnachtdienst\nnachtdier\nnachtegaal\nnachtelijk\nnachtenlang\nnachtevening\nnachtgelegenheid\nnachtgewaad\nnachtgoed\nnachthemd\nnachthemel\nnachthok\nnachthoofd\nnachtjager\nnachtjapon\nnachtkaars\nnachtkastje\nnachtkijker\nnachtkleding\nnachtkluis\nnachtkus\nnachtkwartier\nnachtlamp\nnachtlampje\nnachtlawaai\nnachtleger\nnachtleven\nnachtlicht\nnachtlucht\nnachtmens\nnachtmerrie\nnachtmerrieachtig\nnachtmerriescenario\nnachtmis\nnachtnorm\nnachtoefening\nnachtopname\nnachtopvang\nnachtpauwoog\nnachtpermissie\nnachtpit\nnachtploeg\nnachtpon\nnachtportier\nnachtprogramma\nnachtraaf\nnachtradio\nnachtregime\nnachtrestaurant\nnachtritme\nnachtronde\nnachtrust\nnachts\nnachtschade\nnachtschadefamilie\nnachtschuit\nnachtscène\nnachtslot\nnachtsluiting\nnachtspiegel\nnachtstand\nnachtstilte\nnachtstroom\nnachttafel\nnachttafeltje\nnachttarief\nnachttemperatuur\nnachttrein\nnachtuil\nnachtveiligheidsdienst\nnachtverblijf\nnachtvergunning\nnachtverpleegster\nnachtvliegen\nnachtvlinder\nnachtvlucht\nnachtvogel\nnachtvoorstelling\nnachtvorst\nnachtwaak\nnachtwaakster\nnachtwacht\nnachtwake\nnachtwaker\nnachtwakersstaat\nnachtwandelaar\nnachtwandeling\nnachtwerk\nnachtwerker\nnachtwind\nnachtwinkel\nnachtzichtapparatuur\nnachtzichtkijker\nnachtzijde\nnachtzoen\nnachtzuster\nnachtzwaluw\nnacijferen\nnacompetitie\nnacontrole\nnadagen\nnadar\nnadarafsluiting\nnadarhek\nnadat\nnadeel\nnadeelcompensatie\nnadele\nnadelig\nnademaal\nnadenken\nnadenkend\nnader\nnaderbij\nnaderen\nnaderhand\nnadering\nnadien\nnadienst\nnadir\nnadoen\nnadoenerij\nnadorst\nnadragen\nnadreunen\nnadrogen\nnadroog\nnadruk\nnadrukkelijk\nnadrukkelijkheid\nnadrukken\nnadruppelen\nnaduiken\nnafeest\nnaffer\nnafluiten\nnafta\nnaftaleen\nnaftaline\nnagaan\nnagalm\nnagalmen\nnageboorte\nnagedachte\nnagedachtenis\nnagekomen\nnagel\nnagelbak\nnagelbed\nnagelbijten\nnagelbijter\nnagelbijtster\nnagelborstel\nnagelen\nnagelgarnituur\nnagelijzer\nnagelkaas\nnagelknipper\nnagellak\nnagellakverwijderaar\nnagelnieuw\nnagelriem\nnagelschaar\nnagelschaartje\nnageltang\nnagelvast\nnagelvijl\nnagemaakt\nnagenieten\nnagenoeg\nnagerecht\nnageslacht\nnagesprek\nnageven\nnagewas\nnagisting\nnaglans\nnagloeien\nnagras\nnaheffen\nnaheffing\nnaheffingsaanslag\nnaheft\nnahikkend\nnahollen\nnahosser\nnahouden\nnajaar\nnajaarsaanbieding\nnajaarsactie\nnajaarsbeurs\nnajaarsbloem\nnajaarscollectie\nnajaarsconferentie\nnajaarsdag\nnajaarsmode\nnajaarsnota\nnajaarsnummer\nnajaarsoffensief\nnajaarsopruiming\nnajaarsoverleg\nnajaarsstorm\nnajaarstinten\nnajaarstrek\nnajaarsveiling\nnajaarsvergadering\nnajaarsweer\nnajaarszon\nnajade\nnajagen\nnajouwen\nnakaarten\nnakauwen\nnaken\nnakend\nnakermis\nnakeuring\nnakijken\nnakijkwerk\nnakind\nnaklank\nnaklinken\nnakomeling\nnakomelinge\nnakomelingschap\nnakomen\nnakomer\nnakomertje\nnakoming\nnakroost\nnalaten\nnalatenschap\nnalatig\nnalatigheid\nnaleven\nnalevering\nnaleving\nnalezen\nnalezing\nnaloop\nnalopen\nnaloper\nnaltrexon\nnamaak\nnamaaksel\nnamaken\nnamaker\nnamaking\nname\nnamedropping\nnamelijk\nnameloos\nnamen\nnamenlijst\nnamenregister\nnamens\nnameten\nnameting\nnamiddag\nnamiddaguur\nnamiddagzon\nnanacht\nnaneef\nnanking\nnanoen\nnanogram\nnanometer\nnanoseconde\nnanotechnologie\nnanovolt\nnaogen\nnaoogst\nnaoorlogs\nnap\nnapalm\nnapalmbom\nnapeinzen\nnapijn\nnapluizen\nnapluizer\nnapoleon\nnapoleontisch\nnappa\nnappaleer\nnappen\nnapraat\nnapraten\nnapret\nnar\nnarcis\nnarcisme\nnarcist\nnarcistisch\nnarcoanalyse\nnarcolepsie\nnarcose\nnarcostaat\nnarcotica\nnarcoticabrigade\nnarcoticahandel\nnarcoticum\nnarcotine\nnarcotisch\nnarcotiseren\nnarcotiseur\nnardus\nnarede\nnareiken\nnareizen\nnarekenen\nnarennen\nnarigheid\nnarijden\nnaroepen\nnarollen\nnarratief\nnarren\nnarrenkap\nnarrenpak\nnarrenschip\nnarrig\nnarrowcasting\nnarwal\nnasaal\nnasaleren\nnasalering\nnaschilderen\nnaschok\nnascholen\nnascholing\nnascholingscursus\nnascholingsprogramma\nnaschools\nnaschouw\nnaschreeuwen\nnaschrift\nnaschrijven\nnaschrijver\nnaseizoen\nnasi\nnasi goreng\nnasi rames\nnasibal\nnasischijf\nnasjen\nnaslaan\nnaslag\nnaslagwerk\nnasleep\nnasluipen\nnasmaak\nnasnede\nnasnuffelen\nnaspel\nnaspelen\nnaspeuren\nnaspeuring\nnaspoelen\nnasporen\nnasporing\nnaspreken\nnasputteren\nnassen\nnastaren\nnastoot\nnastreven\nnastrevenswaardig\nnastuk\nnasturen\nnasynchronisatie\nnasynchroniseren\nnat\nnataal\nnatafelen\nnataliteit\nnatekenen\nnatellen\nnathals\nnatheid\nnathouden\nnatie\nnatiebaas\nnatiepaard\nnatiestaat\nnatievlag\nnatievorming\nnatiewagen\nnatijd\nnationaal\nnationaalcommunistisch\nnationaaldemocratisch\nnationaalsocialisme\nnationaalsocialist\nnationaalsocialistisch\nnationalisatie\nnationaliseren\nnationalisering\nnationalisme\nnationalist\nnationaliste\nnationalistisch\nnationaliteit\nnationaliteitenkwestie\nnationaliteitsbeginsel\nnationaliteitsbesef\nnationaliteitsbewijs\nnationaliteitsgevoel\nnationaliteitswijziging\nnative speaker\nnatmaken\nnatransport\nnatrappen\nnatregenen\nnatrekken\nnatrekking\nnatrillen\nnatrium\nnatriumarm\nnatriumbicarbonaat\nnatriumchloride\nnatriumlamp\nnatron\nnatronloog\nnatronzout\nnatspuiten\nnatten\nnattevingerwerk\nnattig\nnattigheid\nnatté\nnaturalisatie\nnaturalisatiedienst\nnaturalisatieprocedure\nnaturalisatieverzoek\nnaturalisatiewet\nnaturaliseren\nnaturalisme\nnaturalist\nnaturalistisch\nnaturel\nnaturisme\nnaturist\nnaturistencamping\nnaturistenkamp\nnaturistenvereniging\nnatuur\nnatuurazijn\nnatuurbad\nnatuurbeeld\nnatuurbeheer\nnatuurbeheerder\nnatuurbehoud\nnatuurbelang\nnatuurbeleid\nnatuurbeleving\nnatuurbeschermer\nnatuurbescherming\nnatuurbeschermingsgebied\nnatuurbeschermingsorganisatie\nnatuurbeschermingswet\nnatuurbeschouwing\nnatuurbeschrijving\nnatuurbestemming\nnatuurbeweging\nnatuurbos\nnatuurboter\nnatuurbouw\nnatuurcentrum\nnatuurcompensatie\nnatuurdrift\nnatuureducatie\nnatuurelement\nnatuurfeest\nnatuurfeesten\nnatuurfenomeen\nnatuurfilm\nnatuurfilosofie\nnatuurfilosoof\nnatuurfotograaf\nnatuurgebied\nnatuurgeneeskunde\nnatuurgeneeskundige\nnatuurgeneeswijze\nnatuurgenezer\nnatuurgetrouw\nnatuurgetrouwheid\nnatuurgevoel\nnatuurgeweld\nnatuurgodsdienst\nnatuurgras\nnatuurgrond\nnatuurherstel\nnatuurhistorisch\nnatuurijs\nnatuurijsbaan\nnatuurkampeerterrein\nnatuurkamperen\nnatuurkenner\nnatuurkennis\nnatuurkind\nnatuurkracht\nnatuurkunde\nnatuurkundeboek\nnatuurkundeleraar\nnatuurkundeles\nnatuurkundelokaal\nnatuurkundestof\nnatuurkundig\nnatuurkundige\nnatuurlandschap\nnatuurleerpad\nnatuurliefhebber\nnatuurlijk\nnatuurlijkerwijs\nnatuurlijkerwijze\nnatuurlijkheid\nnatuurlyriek\nnatuurmens\nnatuurmonument\nnatuuronderwijs\nnatuuronderzoek\nnatuuronderzoeker\nnatuurontwikkeling\nnatuurontwikkelingsgebied\nnatuurontwikkelingsproject\nnatuurorganisatie\nnatuurpad\nnatuurpark\nnatuurpracht\nnatuurproduct\nnatuurprogramma\nnatuurproject\nnatuurramp\nnatuurrecht\nnatuurreligie\nnatuurreservaat\nnatuurrubber\nnatuurschade\nnatuurschoon\nnatuurschrijvers\nnatuurstaat\nnatuursteen\nnatuurstenen\nnatuurstudie\nnatuurtalent\nnatuurterrein\nnatuurtoerisme\nnatuurtuin\nnatuurvereniging\nnatuurverschijnsel\nnatuurvoeding\nnatuurvoedingswinkel\nnatuurvolk\nnatuurvorm\nnatuurvorser\nnatuurvriend\nnatuurvriendelijk\nnatuurwaarde\nnatuurwandeling\nnatuurwandelingen\nnatuurwerking\nnatuurwet\nnatuurwetenschap\nnatuurwetenschappelijk\nnatuurwetenschappen\nnatuurwetenschapper\nnatuurwol\nnatuurwonder\nnatuurzijde\nnautiek\nnautilus\nnautisch\nnauw\nnauwelijks\nnauwgezet\nnauwgezetheid\nnauwheid\nnauwkeurig\nnauwkeurigheid\nnauwlettend\nnauwlettendheid\nnauwsluitend\nnauwte\nnavel\nnavelband\nnavelbandje\nnavelbreuk\nnavelpiercing\nnavelsinaasappel\nnavelstaarder\nnavelstaarderij\nnavelstaren\nnavelstreek\nnavelstreng\nnavelstrengbloed\nnaveltruitje\nnavenant\nnaverbrander\nnavertellen\nnaverwant\nnaverwante\nnavigatie\nnavigatie-instrument\nnavigatieapparatuur\nnavigatiebrug\nnavigatiecomputer\nnavigatiefout\nnavigatieknop\nnavigatielicht\nnavigatiemiddel\nnavigatiestructuur\nnavigatiesysteem\nnavigator\nnavigeren\nnavlooien\nnavoelbaar\nnavoelen\nnavolgbaar\nnavolgen\nnavolgend\nnavolgenswaard\nnavolgenswaardig\nnavolger\nnavolging\nnavorderen\nnavordering\nnavorderingsaanslag\nnavorsen\nnavorser\nnavorsing\nnavraag\nnavragen\nnavrant\nnaw-gegevens\nnawee\nnaweeën\nnawegen\nnawerken\nnawerking\nnawijzen\nnawinter\nnawoord\nnawuiven\nnazaat\nnazang\nnazeggen\nnazenden\nnazetten\nnazi\nnazi-Duitsland\nnazi-ideologie\nnazi-jager\nnazibeweging\nnazibewind\nnazicht\nnazien\nnazigroet\nnazileider\nnazimisdaad\nnazin\nnazinderen\nnazingen\nnazioorlogsmisdadiger\nnazipartij\nnazipropaganda\nnazireaat\nnazireeër\nnaziregime\nnaziskins\nnazislachtoffer\nnazisme\nnazistisch\nnazitijd\nnazitten\nnaziverleden\nnazivlag\nnazoeken\nnazomer\nnazomeravond\nnazomermiddag\nnazomers\nnazomerweer\nnazorg\nnazorgbegeleiding\nnazorgbeleid\nnazorgfase\nnazorgfunctionaris\nnazorgplan\nnazorgtaak\nnazorgteam\nnazorgtraject\nnazorgvraag\nnazorgvragen\nnazwaaien\nnaïef\nnaïeve\nnaïeveling\nnaïveteit\nnaïviteit\nneanderthaler\nneb\nnebbe\nnebbisj\nnecessaire\nnecrofiel\nnecrofilie\nnecrologie\nnecroloog\nnecromantie\nnecropolis\nnecropool\nnecrose\nnectar\nnectarine\nneder\nnederdalen\nnederdaling\nnederig\nnederigheid\nnederlaag\nnederpop\nnederwaarts\nnederwiet\nnederzetting\nnederzettingenbeleid\nnederzettingenpolitiek\nnee\nnee-stem\nneecampagne\nneef\nneeg\nneekamp\nneen\nneep\nneepjesmuts\nneer\nneerbliksemen\nneerbuigen\nneerbuigend\nneerbuigendheid\nneerdalen\nneerdaling\nneerdoen\nneerdonderen\nneerdrukken\nneerduwen\nneerdwarrelen\nneergaan\nneergang\nneergemaaid\nneergeschoten\nneergooien\nneerhalen\nneerhangen\nneerhof\nneerhurken\nneerkijken\nneerknallen\nneerknielen\nneerkomen\nneerkrabbelen\nneerkwakken\nneerlandica\nneerlandicus\nneerlandisme\nneerlandistiek\nneerlaten\nneerleggen\nneerlegging\nneerliggen\nneerloop\nneerlopen\nneerpennen\nneerplenzen\nneerploffen\nneerpoten\nneersabelen\nneerschieten\nneerschrijven\nneerslaan\nneerslachtig\nneerslachtigheid\nneerslag\nneerslaggebied\nneerslaghoeveelheid\nneerslagzone\nneersmeet\nneersmijten\nneersteken\nneerstorten\nneerstrijken\nneerstromen\nneerstrooien\nneertellen\nneertrekken\nneervallen\nneervellen\nneervlijen\nneerwaarts\nneerwerpen\nneerzakken\nneerzetten\nneerzien\nneerzijgen\nneerzitten\nneet\nneetoor\nneezegger\nnefast\nneffens\nnefriet\nneg\nnegatie\nnegatief\nnegatieveling\nnegationisme\nnegationisten\nnegativisme\nnegativist\nnegativistisch\nnegativiteit\nnegen\nnegendaags\nnegende\nnegende-eeuws\nnegenduizend\nnegenendertig\nnegenendertigste\nnegenennegentig\nnegenentachtig\nnegenentwintig\nnegenentwintigduizend\nnegenentwintigjarig\nnegenentwintigste\nnegenenveertig\nnegenenvijftig\nnegenenzestig\nnegenhonderd\nnegenhonderdduizend\nnegenhonderdste\nnegenjarig\nnegenjarige\nnegenkoppig\nnegenmaal\nnegenogen\nnegenoog\nnegenproef\nnegental\nnegentien\nnegentiende\nnegentiende-eeuwer\nnegentiende-eeuws\nnegentienduizend\nnegentienhonderd\nnegentienjarig\nnegentig\nnegentigduizend\nnegentigduizendste\nnegentiger\nnegentigjarig\nnegentigste\nnegentigtal\nnegenvoud\nnegenvoudig\nneger\nnegerdans\nnegeren\nnegerhut\nnegerij\nnegerin\nnegermuziek\nnegerras\nnegerslaaf\nnegerstaat\nnegervraagstuk\nnegerzanger\nnegerzoen\nnegge\nneggen\nnegligeren\nnegligé\nnegorij\nnegotie\nnegotiepenning\nnegotiëren\nnegrito\nnegrospiritual\nnegroïde\nnegus\nneigen\nneiging\nnek\nnek aan nek\nnek-aan-nekrace\nnekhaar\nnekken\nnekkramp\nnekletsel\nnekschot\nnekslag\nnekspier\nnekstijfheid\nnekton\nnekvel\nnekwervel\nnel\nnematode\nnemen\nnemer\nneming\nneo-expressionisme\nneo-international\nneobarok\nneoclassicisme\nneoclassicistisch\nneocommunist\nneocommunistisch\nneoconservatief\nneoconservatisme\nneocorporatisme\nneofascisme\nneofascist\nneofascistisch\nneofiel\nneofiet\nneogotiek\nneogotisch\nneoklassiek\nneoklassieke\nneokoloniaal\nneokolonialisme\nneoliberaal\nneoliberalisme\nneolithicum\nneolithisch\nneologisme\nneomalthusianisme\nneomarxistisch\nneomist\nneomodernisme\nneon\nneonataal\nneonatologie\nneonatologisch\nneonatoloog\nneonazi\nneonazisme\nneonazistisch\nneonbuis\nneonlamp\nneonletter\nneonlicht\nneonreclame\nneonverlichting\nneoplasticisme\nneoplatonisme\nneoplatoons\nneopop\nneopreen\nneoprof\nneorealisme\nneorealist\nneorealistisch\nneorenaissance\nneoromantiek\nneoromantisch\nneoscholastiek\nneosenior\nneostalinistisch\nneostijl\nneoteen\nneothomisme\nnep\nnepagent\nnepbloed\nnepbom\nnepen\nnepmiddel\nnepotisme\nneppen\nnepper\nneppil\nnepstatuut\nnepzaak\nnerd\nneren\nnerf\nnergens\nnering\nneringdoende\nneringziek\nnero\nnerts\nnertsenfokker\nnertsenfokkerij\nnertsenhouderij\nnertsmantel\nnervatuur\nnerven\nnerveus\nnerveusheid\nnerveuze\nnervig\nnervositeit\nnes\nnesse\nnessuskleed\nnest\nnestbeschermer\nnestbevuiler\nnestblijver\nnestei\nnestel\nnestelen\nnesteling\nnesten\nnesterig\nnestgelegenheid\nnestgeur\nnesthaar\nnestholte\nnestig\nnestkast\nnestkastje\nnestkuiken\nnestmateriaal\nnestor\nnestoriaans\nnestplaats\nnestschaal\nnestschalen\nnestveren\nnestvlieder\nnestwarmte\nnet\nnetbal\nnetband\nnetbeheer\nnetbeheerder\nnetbestuur\nnetcoördinator\nnetel\nnetelachtig\nneteldier\nneteldoek\nneteldoeks\nnetelen\nnetelig\nneteligheid\nnetelkoorts\nnetelorgaan\nnetelorganen\nnetelplant\nnetelplanten\nnetelroos\nneten\nnetenkam\nnetetiquette\nnetfrequentie\nnetheid\nnetjes\nnetkaart\nnetkous\nnetmaag\nnetmanager\nnetnummer\nnetoverschrijdend\nnetprofilering\nnetrechter\nnetschakelaar\nnetschrift\nnetservice\nnetspanning\nnetspel\nnetstatuut\nnetstroom\nnetstructuur\nnetsuke\nnetten\nnettenboeter\nnettenboetster\nnettenknoper\nnettenmaker\nnetter\nnettigheid\nnetto\nnetto-effect\nnetto-inkomen\nnetto-netto\nnetto-omzet\nnetto-ontvanger\nnetto-opbrengst\nnetto-uitkering\nnetto-uitvoer\nnettobankproduct\nnettobedrag\nnettobedrijfsresultaat\nnettobedrijfsresultaten\nnettobetaler\nnettobijdrage\nnettocashpositie\nnettodividend\nnettogewicht\nnettogroepswinst\nnettohuur\nnettolast\nnettoloon\nnettoloonstijging\nnettomarge\nnettomassa\nnettominimumloon\nnettoprijs\nnettorendement\nnettoresultaat\nnettosalaris\nnettoschuld\nnettotonnage\nnettoverhaal\nnettoverlies\nnettovermogen\nnettowaarde\nnettowinst\nnettowinstgroei\nnettowinstmarge\nnetversperring\nnetvervuiling\nnetvleugelig\nnetvlies\nnetvliesloslating\nnetvliesontsteking\nnetvoeding\nnetwerk\nnetwerkaanbieder\nnetwerkaansluiting\nnetwerkanalyse\nnetwerkapparatuur\nnetwerkarchitectuur\nnetwerkautomatisering\nnetwerkbedrijf\nnetwerkbeheer\nnetwerkbeheerder\nnetwerkberekening\nnetwerkbeveiliging\nnetwerkcapaciteit\nnetwerkcomputer\nnetwerkconsulent\nnetwerkdeel\nnetwerkeconomie\nnetwerkelement\nnetwerken\nnetwerker\nnetwerkgesprek\nnetwerkgigant\nnetwerkinfrastructuur\nnetwerkintegrator\nnetwerkinterventie\nnetwerkkaart\nnetwerkknooppunt\nnetwerkmaatschappij\nnetwerkorganisatie\nnetwerkplanning\nnetwerkprinter\nnetwerkprobleem\nnetwerkprogramma\nnetwerksamenleving\nnetwerkstad\nnetwerkstructuur\nnetwerktechniek\nnetwerktechnologie\nnetwerktechnologieën\nnetwerkverbinding\nnetwerkverkeer\nnetwerkversie\nnetwerkvorming\nneuken\nneukpartij\nneuraal\nneuralgie\nneuralgisch\nneurastheen\nneurasthenicus\nneurasthenie\nneurasthenisch\nneurend\nneuriën\nneuriënd\nneurobiologie\nneurobioloog\nneurochirurg\nneurochirurgie\nneurofysiologie\nneurofysiologisch\nneurologe\nneurologie\nneurologisch\nneuroloog\nneuron\nneuronaal\nneuroot\nneuropathie\nneuropathologie\nneuropeptide\nneuropsychologie\nneuropsycholoog\nneurose\nneuroticus\nneurotisch\nneurotiseren\nneurotoxine\nneurotoxines\nneurotoxisch\nneurotransmitter\nneus\nneus-keelholte\nneusaap\nneusamandel\nneusbeen\nneusbeentje\nneusbeer\nneusbloeding\nneusbrug\nneuscatarre\nneusdoek\nneusdruppel\nneusdruppels\nneusgat\nneushaai\nneushaar\nneusholte\nneushoorn\nneushoren\nneuskegel\nneusklank\nneusknijper\nneuslengte\nneusnijper\nneuspeuteren\nneusring\nneusrug\nneusschelp\nneusspraak\nneusspray\nneusstem\nneustussenschot\nneusverkouden\nneusverkoudheid\nneusvleugel\nneusvocht\nneuswarmer\nneuswarmertje\nneuswiel\nneuswijs\nneuswijsheid\nneuswortel\nneut\nneutel\nneutraal\nneutralisatie\nneutralisator\nneutraliseren\nneutralisering\nneutralisme\nneutralist\nneutralistisch\nneutraliteit\nneutraliteitspolitiek\nneutraliteitsverklaring\nneutrino\nneutron\nneutronenbom\nneutronenster\nneutronenstraal\nneutrum\nneuzelaar\nneuzelen\nneuzelig\nneuzen\nnevel\nnevelachtig\nnevelbank\nnevelbeeld\nnevelblusser\nnevelen\nnevelgordijn\nnevelhypothese\nnevelig\nnevelkamer\nnevelkap\nnevelspuit\nnevelvlek\nneven\nnevenactiviteit\nnevenbedrijf\nnevendiagonaal\nnevendienst\nnevendoel\nneveneffect\nnevenfunctie\nnevengeschikt\nnevengeul\nnevengevolg\nnevenhoek\nnevenhoeken\nneveninkomsten\nnevenintrige\nnevenman\nnevenopmerking\nnevenproduct\nnevenrol\nnevens\nnevenschade\nnevenschikkend\nnevenschikking\nnevensgaand\nnevenstaand\nnevenverdienste\nnevenverschijnsel\nnevenvestiging\nnevenvoordeel\nnevenvorm\nnevenwerking\nnew age\nnew wave\nnewageachtig\nnewagealbum\nnewagedrama\nnewagegeluidsbehang\nnewfoundlander\nnewton\nnewtonringen\nnewwaveband\nniche\nnichemarkt\nnichepubliek\nnichroom\nnicht\nnichtenbar\nnichterig\nnick\nnicotine\nnicotinearm\nnicotinegehalte\nnicotinevergiftiging\nnicotinevlek\nnicotinevrij\nnicotinezuur\nniemand\nniemandsland\nniemendal\nniemendalletje\nnier\nnieraandoening\nnierbed\nnierbekken\nnierbekkenontsteking\nnierbroodje\nnierdialyse\nnierfalen\nnierfunctie\nnierfunctiestoornis\nniergordel\nniergruis\nnierkanker\nnierkoliek\nnierkwaal\nnierontsteking\nnieroperatie\nnierpatiënt\nnierpatiënte\nnierschade\nniersteen\nniersteenverbrijzelaar\nniersteenvergruizer\nniersteenvorming\nnierstuk\nniertransplantatie\nnierverwijdering\nniervet\nniervormig\nnierziekte\nniesbui\nniesen\nnieskruid\nniespoeder\nniespoeier\nnieswortel\nniesziekte\nniet\nniet-Engelstalig\nniet-Europees\nniet-Joodverklaring\nniet-aangesloten\nniet-aanvalspact\nniet-aanvalsverdrag\nniet-aanwezige\nniet-academisch\nniet-actief\nniet-actieve\nniet-adellijk\nniet-aflatend\nniet-agrarisch\nniet-agressief\nniet-alledaags\nniet-ambtelijk\nniet-ambtenaar\nniet-arisch\nniet-artistiek\nniet-bancair\nniet-beeldend\nniet-begrijpend\nniet-belastingontvangst\nniet-bestaan\nniet-bestaand\nniet-betaald\nniet-betalen\nniet-betalend\nniet-betaling\nniet-beursgenoteerd\nniet-bindend\nniet-blank\nniet-blanke\nniet-christelijk\nniet-christen\nniet-commercieel\nniet-communist\nniet-communistisch\nniet-confessioneel\nniet-conventioneel\nniet-correct\nniet-corrupt\nniet-coöperatief\nniet-crimineel\nniet-deelnemer\nniet-democratisch\nniet-deskundige\nniet-dodelijk\nniet-doorgaan\nniet-duurzaam\nniet-echt\nniet-economisch\nniet-econoom\nniet-eigen\nniet-erkend\nniet-erkenning\nniet-essentieel\nniet-euclidisch\nniet-exact\nniet-familielid\nniet-financieel\nniet-fiscalist\nniet-fossiel\nniet-functioneel\nniet-functionerend\nniet-fundamentalistisch\nniet-geautoriseerd\nniet-gebonden\nniet-gebondenheid\nniet-gebruik\nniet-gebruiker\nniet-geconsolideerd\nniet-gekozen\nniet-geleidend\nniet-gelovig\nniet-gemeenteraadslid\nniet-gemotoriseerd\nniet-georganiseerd\nniet-geregistreerd\nniet-geselecteerd\nniet-gespecialiseerd\nniet-gesubsidieerd\nniet-gewelddadig\nniet-gewenst\nniet-gewerkt\nniet-godsdienstig\nniet-gouvernementeel\nniet-gouvernementele organisatie\nniet-historisch\nniet-huwelijks\nniet-ijzerhoudend\nniet-industrieel\nniet-industriële\nniet-inflatoir\nniet-ingelost\nniet-ingeschreven\nniet-ingewijd\nniet-ingewijde\nniet-ingezetene\nniet-inhoudelijk\nniet-inkomensafhankelijk\nniet-inmenging\nniet-integer\nniet-intellectueel\nniet-islamiet\nniet-islamitisch\nniet-joods\nniet-juridisch\nniet-katholiek\nniet-kerkelijk\nniet-kernactiviteit\nniet-klanten\nniet-klassiek\nniet-kostendekkend\nniet-kunst\nniet-kwetsbaar\nniet-ledengebonden\nniet-legitiem\nniet-leven\nniet-levend\nniet-lezer\nniet-lid\nniet-lidstaat\nniet-lineair\nniet-literair\nniet-loonkosten\nniet-marxistisch\nniet-materieel\nniet-medisch\nniet-menselijk\nniet-militair\nniet-monetair\nniet-moslim\nniet-naleving\nniet-nationalistisch\nniet-natuurlijk\nniet-nucleair\nniet-objectief\nniet-officieel\nniet-olympisch\nniet-onderwijzend\nniet-ontploft\nniet-ontvankelijk\nniet-ontvankelijkheid\nniet-openbaar\nniet-opgelost\nniet-optimaal\nniet-parlementair\nniet-partijgebonden\nniet-passend\nniet-permanent\nniet-politicus\nniet-politiek\nniet-productief\nniet-professioneel\nniet-raciaal\nniet-radioactief\nniet-rationeel\nniet-realistisch\nniet-regerend\nniet-regeringspartij\nniet-regulier\nniet-relevant\nniet-religieus\nniet-roken\nniet-roker\nniet-royeerbaar\nniet-socialist\nniet-socialistisch\nniet-specialist\nniet-stedelijk\nniet-stemgerechtigd\nniet-stemmer\nniet-strafbaar\nniet-strategisch\nniet-structureel\nniet-studerend\nniet-talig\nniet-technisch\nniet-theoloog\nniet-toegestaan\nniet-traditioneel\nniet-universitair\nniet-vakbondslid\nniet-verdienend\nniet-verhit\nniet-vermelden\nniet-verplicht\nniet-verslaafde\nniet-verspreiding\nniet-vervolging\nniet-verwant\nniet-verzekerd\nniet-verzuild\nniet-vrijblijvend\nniet-werken\nniet-werkend\nniet-werkende\nniet-werknemer\nniet-westers\nniet-weten\nniet-wetenschappelijk\nniet-weter\nniet-wettelijk\nniet-winstgevend\nniet-zichtbaar\nniet-zijn\nnietapparaat\nnieteling\nnieten\nnieter\nnietes\nniethamer\nnietig\nnietigheid\nnietigverklaring\nnietje\nnietmachine\nnietpistool\nniets\nnietsbetekenend\nnietsdoen\nnietsdoener\nnietsnut\nnietsnutten\nnietsontziend\nnietsvermoedend\nnietswaardig\nnietswaardigheid\nnietszeggend\nnietszeggendheid\nniettegenstaande\nniettemin\nnietwaar\nnietzscheaans\nnieuw\nnieuwbakken\nnieuwbouw\nnieuwbouwcomplex\nnieuwbouwgebied\nnieuwbouwhuis\nnieuwbouwlocatie\nnieuwbouwmarkt\nnieuwbouwplan\nnieuwbouwprogramma\nnieuwbouwproject\nnieuwbouwwijk\nnieuwbouwwoning\nnieuweling\nnieuwelinge\nnieuwerwets\nnieuwgeboren\nnieuwgekozen\nnieuwgevormd\nnieuwheid\nnieuwigheid\nnieuwjaarsartikel\nnieuwjaarsbezoek\nnieuwjaarsbijeenkomst\nnieuwjaarsboodschap\nnieuwjaarsbrand\nnieuwjaarsbrief\nnieuwjaarscadeau\nnieuwjaarsconcert\nnieuwjaarsdag\nnieuwjaarsduik\nnieuwjaarsfeest\nnieuwjaarsfooi\nnieuwjaarsgeschenk\nnieuwjaarsgroet\nnieuwjaarskaart\nnieuwjaarsmorgen\nnieuwjaarsnacht\nnieuwjaarsperiode\nnieuwjaarsramp\nnieuwjaarsreceptie\nnieuwjaarsrede\nnieuwjaarsspeech\nnieuwjaarstoespraak\nnieuwjaarsviering\nnieuwjaarsvisite\nnieuwjaarswens\nnieuwkomer\nnieuwkomersbeleid\nnieuwkoop\nnieuwkuis\nnieuwlichter\nnieuwlichterij\nnieuwmelkt\nnieuwmodisch\nnieuwprijs\nnieuwrechts\nnieuws\nnieuwsaanbod\nnieuwsagentschap\nnieuwsbericht\nnieuwsblad\nnieuwsbrief\nnieuwsbrievensysteem\nnieuwsbron\nnieuwsbulletin\nnieuwsdienst\nnieuwsfeit\nnieuwsflits\nnieuwsfoto\nnieuwsfotograaf\nnieuwsgaring\nnieuwsgierig\nnieuwsgierige\nnieuwsgierigheid\nnieuwsgroep\nnieuwshonger\nnieuwsitem\nnieuwsjaarsdag\nnieuwsjager\nnieuwskanaal\nnieuwskrant\nnieuwslezer\nnieuwslezeres\nnieuwsmedia\nnieuwsmedium\nnieuwsnet\nnieuwsorganisatie\nnieuwsoverzicht\nnieuwspagina\nnieuwspraak\nnieuwspresentator\nnieuwsprogramma\nnieuwsquiz\nnieuwsredactie\nnieuwsrubriek\nnieuwsselectie\nnieuwsshow\nnieuwssite\nnieuwsstation\nnieuwsstop\nnieuwsstroom\nnieuwsticker\nnieuwstijding\nnieuwsuitzending\nnieuwsvoorziening\nnieuwswaarde\nnieuwswaardig\nnieuwszender\nnieuwtestamenticus\nnieuwtestamentisch\nnieuwtje\nnieuwtjesjager\nnieuwvorming\nnieuwwaarde\nnieuwzilver\nniezen\nnigromantie\nnihil\nnihilbeding\nnihilisme\nnihilist\nnihiliste\nnihilistisch\nnijd\nnijdas\nnijdassen\nnijdasserig\nnijdassig\nnijdig\nnijdigaard\nnijdigheid\nnijdnagel\nnijgen\nnijging\nnijlbaars\nnijlgans\nnijlpaard\nnijlreiger\nnijnagel\nnijpen\nnijpend\nnijper\nnijptang\nnijver\nnijveraar\nnijverheid\nnijverheidsconsulent\nnijverheidsgewas\nnijverheidsonderwijs\nnijverheidsschool\nnijverig\nnikkel\nnikkel-cadmium\nnikkel-cadmiumbatterij\nnikkel-metaalhydride\nnikkel-metaalhydridebatterij\nnikkelallergie\nnikkelbad\nnikkelen\nnikkelerts\nnikkelprijs\nnikkelproducent\nnikkelstaal\nnikken\nnikker\nnikkertje\nniks\nniksen\nniksje\nniksnut\nnimbostratus\nnimbus\nnimby\nnimf\nnimmer\nnimmermeer\nnimrod\nnipje\nnippel\nnippen\nnipper\nnippertje\nnippertjes\nnipt\nnirwana\nnis\nnisbus\nnitraat\nnitraatfilm\nnitraatgehalte\nnitraatnorm\nnitraatrichtlijn\nnitreren\nnitriet\nnitrificatie\nnitrobenzeen\nnitroglycerine\nnitwit\nniveau\nniveaudifferentiatie\nniveaulijn\nniveaulijnen\nniveaus\nniveauverandering\nniveauverschil\nnivelleren\nnivellering\nnixe\nniëlleren\nnjet\nnjonja\nnl.\nnl.openoffice.org\nno pay\nno-claim\nno-claimkorting\nno-flyzone\nno-goarea\nno-iron\nno-nonsense\nnobel\nnobelheid\nnobiliteit\nnoblesse\nnoblesse oblige\nnobody\nnoch\nnochtans\nnocturne\nnode\nnodeloos\nnoden\nnodig\nnodigen\nnodiger\nnoedels\nnoemen\nnoemenswaard\nnoemenswaardig\nnoemer\nnoen\nnoenmaal\nnoenslaap\nnoenstond\nnoenzaal\nnoes\nnoest\nnoestig\nnog\nnoga\nnogablok\nnogakraam\nnogal\nnogal wiedes\nnogataart\nnogmaals\nnok\nnokbalk\nnokken\nnokkenas\nnoklijn\nnokvol\nnol\nnolens volens\nnolle\nnollen\nnom de guerre\nnom de plume\nnomade\nnomaden\nnomadenbestaan\nnomadenleven\nnomadenstam\nnomadentent\nnomadenvolk\nnomadisch\nnomadisme\nnomen\nnomenclatuur\nnominaal\nnominalisme\nnominalist\nnominalistisch\nnominatie\nnominatief\nnomineren\nnomografie\nnomogram\nnomothetisch\nnon\nnon-actief\nnon-activiteit\nnon-agressie\nnon-agressiepact\nnon-alcoholisch\nnon-beleid\nnon-belligerent\nnon-combattant\nnon-commerciële\nnon-conformisme\nnon-conformist\nnon-conformistisch\nnon-descript\nnon-directief\nnon-discriminatie\nnon-discussie\nnon-event\nnon-existent\nnon-ferro\nnon-fictie\nnon-fictieboek\nnon-fiction\nnon-fictionboek\nnon-figuratief\nnon-food\nnon-gouvernementeel\nnon-inflatoir\nnon-informatie\nnon-interventie\nnon-interventiebeginsel\nnon-issue\nnon-paper\nnon-profit\nnon-profitorganisatie\nnon-profitsector\nnon-proliferatie\nnon-proliferatieverdrag\nnon-raciaal\nnon-respons\nnon-stop\nnon-vaccinatie\nnon-vaccinatiebeleid\nnon-valeur\nnon-verbaal\nnonchalance\nnonchalant\nnone\nnonet\nnonius\nnonkel\nnonna\nnonnenkleed\nnonnenklooster\nnonnenorde\nnonnenschool\nnonnensluier\nnonnetje\nnonsens\nnonsense\nnonvlinder\nnood\nnoodaansluiting\nnoodadres\nnoodaggregaat\nnoodanker\nnoodbevel\nnoodbouw\nnoodbrug\nnoodcamping\nnoodcel\nnooddecreet\nnooddeur\nnooddoop\nnooddruft\nnooddruftig\nnooddwang\nnoodenting\nnoodfonds\nnoodgang\nnoodgebied\nnoodgebouw\nnoodgebouwtje\nnoodgebouwtjes\nnoodgedwongen\nnoodgeld\nnoodgeval\nnoodgreep\nnoodhaven\nnoodhospitaal\nnoodhuisvesting\nnoodhulp\nnoodinstallatie\nnoodkachel\nnoodkerk\nnoodklok\nnoodknop\nnoodkrediet\nnoodkreet\nnoodlanding\nnoodleiding\nnoodleverancier\nnoodleveranciers\nnoodlijdend\nnoodlijdende\nnoodlokaal\nnoodlot\nnoodlotstragedie\nnoodlottig\nnoodlottigheid\nnoodluik\nnoodmaatregel\nnoodmunt\nnoodnet\nnoodnummer\nnoodoplossing\nnoodoproep\nnoodoproepen\nnoodopvang\nnoodoverloopgebied\nnoodpakket\nnoodpeil\nnoodplan\nnoodprocedure\nnoodprogramma\nnoodrantsoen\nnoodrecht\nnoodregeling\nnoodrem\nnoodremprocedure\nnoodreparatie\nnoodreserve\nnoodscenario\nnoodschot\nnoodsein\nnoodsignaal\nnoodsituatie\nnoodslachting\nnoodsprong\nnoodstal\nnoodstop\nnoodstroom\nnoodstroomvoorziening\nnoodteken\nnoodtelefoon\nnoodtelefoonsysteem\nnoodtempo\nnoodtoestand\nnoodtrappen\nnooduitgang\nnoodvaart\nnoodvaccinatie\nnoodverband\nnoodverlichting\nnoodverordening\nnoodvoorraad\nnoodvoorziening\nnoodweer\nnoodweerexces\nnoodweg\nnoodwendig\nnoodwendigheid\nnoodwet\nnoodwetgeving\nnoodwinkel\nnoodwoning\nnoodzaak\nnoodzaakdiscussie\nnoodzakelijk\nnoodzakelijkerwijs\nnoodzakelijkerwijze\nnoodzakelijkheid\nnoodzaken\nnooit\nnooit ofte nimmer\nnoord\nnoord-zuidroute\nnoord-zuidverbinding\nnoordelijk\nnoordelijken\nnoordeling\nnoorden\nnoordenwind\nnoorderbreedte\nnoorderbuur\nnoordergrens\nnoorderkeerkring\nnoorderkwartier\nnoorderlicht\nnoorderling\nnoorderzon\nnoordflank\nnoordgrens\nnoordkant\nnoordkaper\nnoordkriek\nnoordkust\nnoordnoordoost\nnoordnoordoosten\nnoordnoordwest\nnoordoever\nnoordoost\nnoordoostelijk\nnoordoosten\nnoordoostenwind\nnoordooster\nnoordoostkust\nnoordpool\nnoordpoolcirkel\nnoordpoolgebied\nnoordpoolreis\nnoordpoolreizen\nnoordpoolreiziger\nnoordpooltocht\nnoordpunt\nnoordrand\nnoords\nnoordtak\nnoordwaarts\nnoordwand\nnoordwest\nnoordwestelijk\nnoordwesten\nnoordwestenwind\nnoordwester\nnoordwesterstorm\nnoordwesthoek\nnoordwestkust\nnoordzeekrab\nnoordzij\nnoordzijde\nnoot\nnootmuskaat\nnootteken\nnop\nnopen\nnopens\nnoppen\nnoppenfolie\nnoppes\nnoppig\nnor\nnoradrenaline\nnorbertijn\nnorbertijnenklooster\nnorbertijner\nnoren\nnoria\nnorm\nnormaal\nnormaalfilm\nnormaalformaat\nnormaalonderwijs\nnormaalschool\nnormaalspoor\nnormaalvector\nnormafwijkend\nnormalerwijs\nnormalerwijze\nnormalisatie\nnormaliseren\nnormalisering\nnormalist\nnormaliste\nnormaliteit\nnormaliter\nnormatief\nnormbedrag\nnormbepalend\nnormbepaling\nnormbesef\nnormcommissie\nnormen-en-waardendebat\nnormenpatroon\nnormenstelsel\nnormensysteem\nnormeren\nnormering\nnormgevend\nnormhandhaving\nnorminkomen\nnormlonen\nnormloon\nnormloos\nnormloosheid\nnormoverschrijdend\nnormpraktijk\nnormstelling\nnormuitkering\nnormvervaging\nnormverval\nnors\nnorsheid\nnortonbuis\nnortonpomp\nnosologie\nnostalgie\nnostalgisch\nnot amused\nnota\nnota bene\nnotabedrag\nnotabedragen\nnotabel\nnotabele\nnotabelen\nnotaboek\nnotaboekje\nnotanummer\nnotanummers\nnotariaat\nnotarieel\nnotaris\nnotarisambt\nnotariskantoor\nnotarisklerk\nnotariskosten\nnotariswet\nnotariszoon\nnotatie\nnotationele\nnotawisseling\nnotebook\nnotelaar\nnotelaren\nnoten\nnotenapparaat\nnotenbalk\nnotenbar\nnotenbomen\nnotenboom\nnotendop\nnotendruk\nnotenhout\nnotenhouten\nnotenkraker\nnotenleer\nnotenlijst\nnotenmuskaat\nnotenolie\nnotenpapier\nnotenpasta\nnotenschelp\nnotenschrift\nnoteren\nnotering\nnotie\nnotificatie\nnotificeren\nnotitie\nnotitieblok\nnotitieboek\nnotitieboekje\nnotoir\nnotulant\nnotulen\nnotulenboek\nnotuleren\nnotulering\nnotulist\nnotuliste\nnou\nnougat\nnouveauté\nnouveaux riches\nnouvelle\nnova\nnoveen\nnovelle\nnovellebundel\nnovellist\nnovelliste\nnovember\nnovembermaand\nnovembernummer\nnovene\nnovice\nnovicemeester\nnoviciaat\nnoviet\nnoviteit\nnovitiaat\nnovitius\nnovum\nnozem\nnr.\nnu\nnuance\nnuanceren\nnuancering\nnuanceverschil\nnubuck\nnuchter\nnuchterheid\nnuchterling\nnucleair\nnucleon\nnucleotiden\nnucleus\nnucleïnezuur\nnudisme\nnudist\nnudistencamping\nnuditeit\nnuf\nnuffig\nnuffigheid\nnuk\nnukkig\nnukkigheid\nnul\nnulcoupon\nnulde\nnulfunctie\nnulgroei\nnulhypothese\nnulkolom\nnullast\nnullijn\nnulliteit\nnulmeridiaan\nnulmeting\nnulnummer\nnuloptie\nnulpost\nnulposten\nnulpunt\nnulpuntsbepaling\nnulrij\nnulserie\nnulstand\nnultarief\nnultolerantie\nnultrap\nnulvector\nnumerair\nnumeriek\nnumero\nnumerologie\nnumeroteur\nnumerus clausus\nnumerus fixus\nnumismatiek\nnumismatisch\nnummer\nnummerbewijs\nnummerbord\nnummeren\nnummerformaat\nnummerherhaling\nnummering\nnummeroverdraagbaarheid\nnummerplaat\nnummerplan\nnummerportabiliteit\nnummerschijf\nnummerservice\nnummertje\nnummervolgorde\nnuntiatuur\nnuntius\nnuptiaal\nnurk\nnurks\nnurksheid\nnurse\nnut\nnutriënt\nnutsbedrijf\nnutsfunctie\nnutsgroep\nnutssector\nnutstaken\nnutsvoorziening\nnutteloos\nnutteloosheid\nnutten\nnuttig\nnuttigen\nnuttigheid\nnuttigheidsdenken\nnuttigheidsoverweging\nnuttiging\nnv\nnylon\nnylonkous\nnylonweefsel\nnymfomaan\nnymfomane\nnymfomanie\no\no jee\no.a.\no.i.\no.i.d.\no.m.\no.t.t.\no.v.t.\no.v.v.\noase\noasis\nobduceren\nobductie\nobediëntie\nobelisk\nober\nobesitas\nobject\nobjectbalk\nobjectcode\nobjectglaasje\nobjectie\nobjectief\nobjectiveerbaar\nobjectiveren\nobjectivering\nobjectivisme\nobjectiviteit\nobjectsubsidie\noblaat\noblate\noblie\noblie-ijzer\nobligaat\nobligaatpartij\nobligatie\nobligatie-uitgifte\nobligatiefonds\nobligatiegulden\nobligatiehandelaar\nobligatiehouder\nobligatiekapitaal\nobligatiekoers\nobligatielening\nobligatiemarkt\nobligatieportefeuille\nobligatierente\nobligatieschuld\nobligatoir\nobligo\noblong\nobool\nobs\nobsceen\nobsceniteit\nobscurantisme\nobscurantist\nobscurantistisch\nobscuriteit\nobscuur\nobsederen\nobservant\nobservanten\nobservantie\nobservatie\nobservatie-eenheid\nobservatieafdeling\nobservatiecentrum\nobservatiehuis\nobservatiehut\nobservatiekliniek\nobservatieonderzoek\nobservatieperiode\nobservatiepost\nobservatieteam\nobservatievermogen\nobservatievlucht\nobservationeel\nobservator\nobservatorium\nobservatrice\nobserveren\nobsessie\nobsessief\nobsessioneel\nobsoleet\nobstakel\nobstetrie\nobstetrisch\nobstinaat\nobstinaatheid\nobstipatie\nobstructie\nobstructief\nobstructionisme\nobstrueren\nobus\nocarina\noccasie\noccasion\noccasioneel\noccidentaal\noccidentalist\nocclusie\nocclusief\noccult\noccultisme\noccultist\noccupatie\noccuperen\noceaan\noceaanbodem\noceaandepressie\noceaanfront\noceaanhaven\noceaanlucht\noceaanreus\noceaansleper\noceaanstomer\noceaanstoring\noceaanvlieger\noceaanvlucht\noceaanwater\noceaanzeiler\noceanisch\noceanograaf\noceanografie\noceanografisch\noceanologie\nocelot\noch\nochlocratie\nochtend\nochtendappel\nochtendappels\nochtendbeurt\nochtendblad\nochtendbulletin\nochtenddienst\nochtendeditie\nochtenderectie\nochtendetappe\nochtendfile\nochtendgebed\nochtendgloren\nochtendgroet\nochtendgymnastiek\nochtendhandel\nochtendhumeur\nochtendjas\nochtendjournaal\nochtendkoffie\nochtendkrant\nochtendkrieken\nochtendlicht\nochtendlijk\nochtendlucht\nochtendmens\nochtendmist\nochtendnevel\nochtendploeg\nochtendpost\nochtendprogramma\nochtendritueel\nochtendschema\nochtendschemer\nochtendschemering\nochtendsessie\nochtendshow\nochtendspits\nochtendspitsuur\nochtendspreekuur\nochtendstond\nochtendtemperatuur\nochtendtraining\nochtendtrein\nochtendurine\nochtenduur\nochtendvergadering\nochtendvoer\nochtendwandeling\nochtendwijding\nochtendziek\nochtendzitting\nochtendzon\noctaaf\noctaal\noctaan\noctaangehalte\noctaangetal\noctaanwaarde\noctale\noctant\noctavo\noctaëder\noctet\noctopus\noctrooi\noctrooiaanvraag\noctrooiaanvrage\noctrooibescherming\noctrooibezorger\noctrooibrief\noctrooibureau\noctrooieerbaar\noctrooieerbaarheid\noctrooieren\noctrooigemachtigde\noctrooihouder\noctrooiraad\noctrooirecht\noctrooiregister\noctrooireglement\noctrooistelsel\noctrooisysteem\noctrooiverlening\noctrooiwet\noctrooiwetgeving\noctrooiwezen\noculair\noculatie\noculeermes\noculeren\noculist\nodalisk\nodaliske\node\nodeur\nodeurflesje\nodieus\nodium\nodoriseren\nodyssee\noecumene\noecumenisch\noedeem\noedipaal\noedipuscomplex\noef\noefenaar\noefenaarster\noefenbaan\noefenbak\noefenbal\noefenboek\noefenbom\noefencampagne\noefencentrum\noefendag\noefendorp\noefenduel\noefenen\noefengebied\noefengranaat\noefening\noefeninterland\noefenkamp\noefenmatch\noefenmateriaal\noefenmeester\noefenpartij\noefenpartner\noefenperiode\noefenperk\noefenpop\noefenpotje\noefenprogramma\noefenruimte\noefenschema\noefenschool\noefensessie\noefenstage\noefenstof\noefenterrein\noefentherapeut\noefentherapie\noefentijd\noefenveld\noefenvlucht\noefenwedstrijd\noehoe\noei\noekaze\noelama\noelema\noelewapper\noempa\noen\noenig\noenologie\noenologisch\noenoloog\noeps\noer\noer-Engels\noer-Hollands\noerachtig\noerbank\noerbeeld\noerbegin\noerbewoner\noerbewustzijn\noerbos\noerbron\noerchristendom\noerconservatief\noercontinent\noerdegelijk\noerdom\noerdonker\noerdrift\noerelement\noerexplosie\noergeweld\noergezellig\noergezond\noergrond\noerinstinct\noerjoods\noerknal\noerkomisch\noerkracht\noerkreet\noerlaag\noerlandschap\noerlelijk\noermens\noermodel\noermoeder\noernatuur\noeros\noeroud\noersaai\noerschreeuw\noerstaat\noersterk\noerstof\noertaal\noertekst\noertijd\noertype\noerversie\noervervelend\noervogel\noervolk\noervonk\noervorm\noerwoud\noerwoudgeluid\noerwoudgeluiden\noerzee\noester\noesterbank\noesterbar\noesterbed\noestercultuur\noesterkwekerij\noesterparel\noesterput\noestersaus\noesterschelp\noesterteelt\noesterzaad\noesterzwam\noestradiol\noestrogeen\noestrogeengehalte\noestrus\noetlul\noeuvre\noeuvrecatalogus\noeuvreprijs\noever\noeveraas\noeverbekleding\noeverloos\noeverloper\noeverplant\noeverstaat\noeverval\noevervegetatie\noeververbinding\noeververdediging\noeverwal\noeverzwaluw\nof\nof all people\nof all places\nof zo\noffday\noffensief\noffer\nofferaar\nofferaltaar\nofferande\nofferbereidheid\nofferblok\nofferbus\nofferdienst\nofferdier\nofferdood\nofferen\nofferfeest\noffergave\noffergezindheid\nofferlam\nofferplaats\nofferplechtigheid\nofferpriester\nofferschaal\noffersteen\noffertafel\nofferte\nofferteaanvraag\noffertebedrag\noffertebedragen\noffertorium\noffervaardig\noffervaardigheid\noffice\nofficemanager\nofficepakket\nofficial\nofficialiseren\nofficiant\nofficie\nofficieel\nofficier\nofficierenkorps\nofficiersdegen\nofficierskorps\nofficiersmess\nofficiersopleiding\nofficiersrang\nofficiersstem\nofficierstafel\nofficiersuniform\nofficieus\nofficinaal\nofficium\nofficiëren\noffline\noffreren\noffrerend\noffset\noffsetdruk\noffsetdrukker\noffsetdrukkerij\noffsetpers\noffshore\noffshore-industrie\noffshorebedrijf\noffside\noffwhite\nofschoon\noftalmie\noftalmologie\noftalmoloog\noftewel\nofwel\nogelijk\nogen\nogenblik\nogenblikkelijk\nogenblikken\nogendienaar\nogendienst\nogenschijnlijk\nogenschouw\nogentaal\nogentest\nogentroost\nogenzwart\nogief\noh\nohm\nohmse\noho\noio\noir\nojief\nokapi\noker\nokerachtig\nokergeel\nokerkleurig\nokkernoot\nokra\noksaal\noksel\nokselfris\nokselholte\nokselstandig\nokselstuk\nokseltruitje\nokshoofd\noktober\noktoberdag\noktobermaand\noktoberweer\noké\nold boys network\noldtimer\noleander\noleografie\noleïne\nolfactorisch\nolie\nolie voor voedsel\nolie-embargo\nolie-export\nolie-exporterend\nolie-import\nolie-industrie\nolie-installatie\nolie-uitvoerend\nolie-voor-voedselprogramma\nolieaandeel\nolieaanvoer\nolieachtig\noliebad\noliebaron\noliebedrijf\noliebehoefte\noliebelang\noliebestrijding\noliebevoorrading\nolieboer\noliebol\noliebollenkraam\nolieboot\nolieboring\nolieboycot\noliebranche\noliebrand\noliebrander\noliebron\noliebunker\noliecarter\nolieconcern\nolieconsumptie\noliecrisis\noliedollar\noliedom\noliedruk\noliedrum\noliefilm\noliefilter\noliefirma\noliefles\noliefonds\noliefraude\noliegehalte\noliegeld\noliegigant\noliegoed\noliegroep\noliehaard\noliehandel\noliehandelaar\noliehaven\noliehoudend\noliejas\noliekachel\noliekan\noliekoek\noliekop\noliekraan\noliekruik\nolielaag\nolielamp\nolieland\nolieleiding\nolielek\nolielekkage\nolieleverancier\nolieleveranties\nolielozing\noliemaatschappij\noliemagnaat\nolieman\noliemarkt\noliemeter\nolieminister\noliemolen\noliemotor\nolienoot\nolieopslag\nolieopslagplaats\nolieopslagtank\noliepak\noliepalm\noliepeil\noliepijp\noliepijpleiding\noliepijplijn\nolieplatform\noliepomp\nolieprijs\nolieprijsdaling\nolieprijsstijging\nolieproducent\nolieproducerend\nolieproduct\nolieproductie\nolieproject\nolieput\nolieraffinaderij\nolieraffinage\nolieramp\nolierekening\noliereserve\noliereservoir\noliereus\nolierijk\nolierijkdom\nolieschaarste\noliescherm\nolieschok\noliesector\noliesel\noliesjeik\nolieslager\nolieslagerij\noliesmokkel\noliesoort\noliespoor\noliespuit\noliespuiter\noliestaat\noliestad\noliesteen\noliestook\noliestookinrichting\noliestroom\nolietank\nolietanker\nolietankwagen\nolietekort\nolieterminal\nolietoevoer\nolietransport\nolievat\nolieveld\nolieverbruik\nolieverf\nolieverfportret\nolieverfschets\nolieverfschilderij\nolieverkoop\nolieverontreiniging\nolievervuiling\nolieverwarming\nolievlek\nolievlekwerking\nolievogel\nolievondst\nolievoorraad\nolievoorziening\noliewinning\noliezaad\noliezuur\nolifant\nolifantachtig\nolifantengeheugen\nolifantenhok\nolifantenkraal\nolifantenpoep\nolifantenpopulatie\nolifantenverblijf\nolifantsgras\nolifantshuid\nolifantsorde\nolifantspoot\nolifantssnuit\nolifantstand\nolifantsvoet\nolifantsziekte\noligarch\noligarchie\noligarchisch\noligoceen\noligofreen\noligofrenie\noligopolie\nolijf\nolijfachtig\nolijfboom\nolijfboomgaard\nolijfbos\nolijfgroen\nolijfhout\nolijfkleurig\nolijfkrans\nolijfolie\nolijftak\nolijk\nolijkerd\nolijkheid\nolijven\nolijvenbos\nolijvenhout\nolijvenoogst\nolijvenpers\nolim\noliën\nollekebolleke\nolm\nolmen\nolmenbos\nolympiade\nolympiajol\nolympisch\nolympiër\nom\nom den brode\nom en om\noma\nomafiets\nomarmen\nomarming\nomber\nomberen\nomberkleurig\nomberspel\nombertje\nombervis\nombinden\nomblad\nombladeren\nomblazen\nomboord\nomboorden\nomboordsel\nombouw\nombouwen\nombouwflexibiliteit\nombouwoperatie\nombouwset\nombrengen\nombrenger\nombudsbureau\nombudscommissie\nombudsdienst\nombudsfunctie\nombudsman\nombudsvrouw\nombudswerk\nombuigen\nombuiging\nombuigingsmaatregel\nombuigingsoperatie\nombuigingspakket\nombuigingsplan\nombuigingsplannen\nombuigingsproblematiek\nomcirkelen\nomcirkeling\nomdat\nomdijken\nomdijking\nomdoen\nomdolen\nomdopen\nomdoping\nomdraai\nomdraaien\nomdraaiing\nomdragen\nomduikelen\nomduwen\nome\nomega\nomelet\nomen\nomerta\nomfloersen\nomfloerst\nomgaan\nomgaand\nomgaande\nomgang\nomgangshuis\nomgangskunde\nomgangsrecht\nomgangsregeling\nomgangsstrategie\nomgangstaal\nomgangsvorm\nomgangsvormen\nomgebogen\nomgedraaid\nomgehakt\nomgekatte\nomgekeerd\nomgekeerde\nomgekocht\nomgekomene\nomgekomenen\nomgekruld\nomgelegen\nomgerold\nomgeschreven\nomgespen\nomgeven\nomgeving\nomgevingsaspect\nomgevingsconditie\nomgevingsfactor\nomgevingsgeluid\nomgevingsinvloed\nomgevingskenmerk\nomgevingskenmerken\nomgevingsklimaat\nomgevingslawaai\nomgevingslucht\nomgevingstemperatuur\nomgevingstype\nomgevingsvariabele\nomgewend\nomgezetten\nomgooien\nomgorden\nomgraven\nomgrensd\nomgrenzen\nomgrenzing\nomhaal\nomhakken\nomhalen\nomhaling\nomhanden\nomhangen\nomhangsel\nomheen\nomheinen\nomheining\nomhelsd\nomhelzen\nomhelzing\nomhoog\nomhoogdrijven\nomhoogduwen\nomhooggaan\nomhooggevallen\nomhooghalen\nomhooghouden\nomhoogkomen\nomhooglopen\nomhoogschieten\nomhoogsteken\nomhoogtillen\nomhoogtrekken\nomhoogvallen\nomhoogvliegen\nomhoogwerken\nomhoogzitten\nomhouwen\nomhullen\nomhulling\nomhulsel\nomina\nomineus\nomissie\nomkaden\nomkaderen\nomkadering\nomkading\nomkant\nomkantelen\nomkappen\nomkapping\nomkappingen\nomkat\nomkatten\nomkeer\nomkeerbaar\nomkeerbaarheid\nomkeerfilm\nomkeerkoppeling\nomkeerprocedé\nomkeerproces\nomkegelen\nomkeren\nomkering\nomkiepen\nomkijken\nomklappen\nomkleden\nomkleding\nomkleedsel\nomklemmen\nomklemming\nomklinken\nomknellen\nomkomen\nomkoopaffaire\nomkoopbaar\nomkoopbaarheid\nomkooppraktijken\nomkoopschandaal\nomkoopsom\nomkoopzaak\nomkopen\nomkoper\nomkoperij\nomkoping\nomkopingsaffaire\nomkopingsschandaal\nomkopingszaak\nomkransen\nomkranst\nomkrullen\nomlaag\nomlaaggaan\nomlaaghalen\nomladen\nomleggen\nomlegging\nomlegkalender\nomleiden\nomleiding\nomleidingsroute\nomliggend\nomliggende\nomlijnd\nomlijnen\nomlijning\nomlijsten\nomlijsting\nomloop\nomloopbaan\nomloopdijk\nomloopsnelheid\nomloopstijd\nomlooptijd\nomlopen\nomloper\nommantelen\nommanteling\nommegaand\nommegang\nommekant\nommekeer\nommekomst\nommeland\nommelands\nommestaand\nommestaande\nommetje\nommezien\nommezij\nommezijde\nommezwaai\nommuren\nommuring\nommuurd\nomnevelen\nomneveling\nomnibus\nomnibusdienst\nomnipotent\nomnium\nomniumverzekering\nomnivoor\nomnummeren\nomnummering\nompakken\nompalen\nompaling\nomploegen\nomplooien\nompolen\nompoling\nompolingen\nompraten\nomranden\nomranding\nomranken\nomrasteren\nomrastering\nomreizen\nomrekenen\nomrekening\nomrekeningskoers\nomrekenkoers\nomrekentabel\nomrijden\nomringd\nomringen\nomringing\nomrit\nomroep\nomroepbaas\nomroepbedrijf\nomroepbedrijven\nomroepbeleid\nomroepbericht\nomroepbestel\nomroepbijdrage\nomroepblad\nomroepcentrum\nomroepen\nomroeper\nomroepgeld\nomroepgids\nomroepinstallatie\nomroepinstelling\nomroepkoor\nomroepland\nomroepmaatschappij\nomroepman\nomroepmedewerker\nomroeporganisatie\nomroeporkest\nomroeppersoneel\nomroeppolitiek\nomroepprogrammagegevens\nomroepraad\nomroepreserve\nomroepsatelliet\nomroepstation\nomroepster\nomroepstichting\nomroepsysteem\nomroeptaak\nomroeptientje\nomroepvereniging\nomroepwereld\nomroepwet\nomroepwezen\nomroepzender\nomroeren\nomrollen\nomruil\nomruilbod\nomruilen\nomruiling\nomrukken\nomschakelaar\nomschakelen\nomschakeling\nomschakelingsproces\nomschakelingsvermogen\nomschansing\nomscheppen\nomschieten\nomscholen\nomscholing\nomscholingscursus\nomschoppen\nomschrevene\nomschrevenen\nomschrift\nomschrijven\nomschrijving\nomschudden\nomsingelen\nomsingeling\nomslaan\nomslachtig\nomslachtigheid\nomslag\nomslagartikel\nomslagdoek\nomslagfoto\nomslagpunt\nomslagstelsel\nomslagsysteem\nomslagtekening\nomslagtitel\nomslagverhaal\nomslepen\nomslingeren\nomslotene\nomsluieren\nomsluiering\nomsluiten\nomsluiting\nomsmeden\nomsmelten\nomsmijten\nomsnoeren\nomspannen\nomspelden\nomspelen\nomspeling\nomspellen\nomspinnen\nomspitten\nomspoelen\nomspoken\nomspringen\nomstaan\nomstaand\nomstaander\nomstander\nomstanders\nomstandig\nomstandigheden\nomstandigheid\nomstellen\nomsteltijd\nomsteltijden\nomstoten\nomstralen\nomstreden\nomstreeks\nomstreken\nomstrengelen\nomstrengeling\nomstulpen\nomstuwen\nomtogen\nomtollen\nomtoveren\nomtrek\nomtrekken\nomtrekking\nomtreklijn\nomtrekshoek\nomtreksnelheid\nomtrektekening\nomtrekvorm\nomtrent\nomtuinen\nomtuining\nomturnen\nomvaart\nomvallen\nomvamen\nomvang\nomvangen\nomvangrijk\nomvangrijkheid\nomvaren\nomvatten\nomvattendheid\nomvatting\nomver\nomverblazen\nomvergooien\nomverhalen\nomverkegelen\nomverlopen\nomverrijden\nomvertrekken\nomvervallen\nomverwaaien\nomverwerpen\nomverwerping\nomvlaggen\nomvliegen\nomvoeren\nomvormen\nomvormer\nomvorming\nomvouwen\nomvraag\nomwaaien\nomwallen\nomwalling\nomwandelen\nomwandeling\nomwaren\nomwassen\nomweg\nomwenden\nomwentelen\nomwenteling\nomwentelingsas\nomwentelingslichaam\nomwentelingsoppervlak\nomwentelingssnelheid\nomwentelingstijd\nomwentelingsvlak\nomwerken\nomwerking\nomwerpen\nomwikkelen\nomwikkeling\nomwille\nomwinden\nomwindsel\nomwippen\nomwisselbaar\nomwisselen\nomwisseling\nomwoelen\nomwoeling\nomwolken\nomwolkt\nomwonend\nomwonende\nomwonenden\nomwoners\nomwringen\nomwroeten\nomzadelen\nomzagen\nomzeg\nomzeggen\nomzeggens\nomzeilen\nomzeiling\nomzendbrief\nomzet\nomzetaandeel\nomzetanalyse\nomzetbelasting\nomzetbelastingnummer\nomzetbelastingwetgeving\nomzetcijfer\nomzetcijfers\nomzetdaling\nomzetderving\nomzetdoelstelling\nomzetdrempel\nomzetduur\nomzetgericht\nomzetgroei\nomzetindicatie\nomzetmogelijkheid\nomzetniveau\nomzetnorm\nomzetontwikkeling\nomzetpotentie\nomzetpremie\nomzetprognose\nomzetprovisie\nomzetrecord\nomzetschade\nomzetsnelheid\nomzetspecificatie\nomzetsprong\nomzetstagnatie\nomzetstatistiek\nomzetstijging\nomzetten\nomzetter\nomzetting\nomzettingssnelheid\nomzettoename\nomzetverdubbeling\nomzetvergroting\nomzetverhoging\nomzetverlies\nomzetverloop\nomzetvermindering\nomzetverwachting\nomzetvolume\nomzetwaarschuwing\nomzichtig\nomzichtigheid\nomzien\nomzitten\nomzomen\nomzoming\nomzwaaien\nomzwaaier\nomzwachteld\nomzwachtelen\nomzwachteling\nomzwalken\nomzwenken\nomzwermen\nomzwerven\nomzwerving\nomzwervingen\nomzweven\nomzwikken\non speaking terms\non-Amerikaans\non-Bijbels\non-Duits\non-Engels\non-Europees\non-Frans\non-Hollands\non-Nederlands\nonaandoenlijk\nonaandoenlijkheid\nonaangebroken\nonaangedaan\nonaangediend\nonaangekleed\nonaangekondigd\nonaangelijnd\nonaangemeld\nonaangenaam\nonaangenaamheid\nonaangepast\nonaangepaste\nonaangepastheid\nonaangeraakt\nonaangeroerd\nonaangesproken\nonaangetast\nonaangevochten\nonaanlokkelijk\nonaannemelijk\nonaannemelijkheid\nonaanraakbaar\nonaanraakbaarheid\nonaansprakelijk\nonaanspreekbaar\nonaantastbaar\nonaantastbaarheid\nonaantrekkelijk\nonaantrekkelijkheid\nonaanvaard\nonaanvaardbaar\nonaanvaardbaarheid\nonaanvechtbaar\nonaanzienlijk\nonaanzienlijkheid\nonaardig\nonaardigheid\nonaards\nonacceptabel\nonachterhaalbaar\nonachtzaam\nonachtzaamheid\nonaf\nonafgebouwd\nonafgebroken\nonafgedaan\nonafgedekt\nonafgehaald\nonafgemaakt\nonafgewend\nonafgewerkt\nonafgezien\nonafhankelijk\nonafhankelijke\nonafhankelijkheid\nonafhankelijkheidsbeginsel\nonafhankelijkheidsbeweging\nonafhankelijkheidsfeest\nonafhankelijkheidsleider\nonafhankelijkheidsoorlog\nonafhankelijkheidsstreven\nonafhankelijkheidsstrijd\nonafhankelijkheidsstrijder\nonafhankelijkheidsverklaring\nonafscheidbaar\nonafscheidelijk\nonafscheidelijkheid\nonafwendbaar\nonafwendbaarheid\nonafwijsbaar\nonafwisbaar\nonafzetbaar\nonafzetbaarheid\nonafzienbaar\nonager\nonalledaags\nonaneren\nonanie\nonanist\nonappetijtelijk\nonattent\nonbaatzuchtig\nonbaatzuchtigheid\nonbalans\nonbarmhartig\nonbarmhartigheid\nonbeantwoord\nonbeantwoordbaar\nonbebouwd\nonbedaarlijk\nonbedacht\nonbedachtzaam\nonbedachtzaamheid\nonbedeeld\nonbedekt\nonbederfelijk\nonbedijkt\nonbedoeld\nonbedorven\nonbedorvenheid\nonbedreigd\nonbedreven\nonbedrevenheid\nonbedrieglijk\nonbedrukt\nonbeduidend\nonbeduidendheid\nonbedwingbaar\nonbegaafd\nonbegaanbaar\nonbegeleid\nonbegonnen\nonbegrensd\nonbegrensdheid\nonbegrepen\nonbegrijpbaar\nonbegrijpelijk\nonbegrijpelijkheid\nonbegrijpend\nonbegrip\nonbegroeid\nonbehaaglijk\nonbehaaglijkheid\nonbehaard\nonbehagelijk\nonbehagen\nonbehandelbaar\nonbehandelbaarheid\nonbehandeld\nonbeheerd\nonbeheersbaar\nonbeheersbaarheid\nonbeheerst\nonbehendig\nonbeholpen\nonbeholpenheid\nonbehoorlijk\nonbehoorlijkheid\nonbehouwen\nonbehouwenheid\nonbehuisd\nonbehuisde\nonbehuisden\nonbekeerd\nonbekend\nonbekende\nonbekendheid\nonbekleed\nonbeklemtoond\nonbekommerd\nonbekommerdheid\nonbekookt\nonbekooktheid\nonbekrompen\nonbekrompenheid\nonbekwaam\nonbekwaamheid\nonbeladen\nonbelangrijk\nonbelangrijker\nonbelangrijkheid\nonbelast\nonbelastbaar\nonbeleefd\nonbeleefderik\nonbeleefdheid\nonbelegd\nonbelemmerd\nonbelicht\nonbeloond\nonbemand\nonbemerkt\nonbemiddelbaar\nonbemiddeld\nonbemiddeldheid\nonbemind\nonbenaderbaar\nonbenoembaar\nonbenoemd\nonbenul\nonbenullig\nonbenulligheid\nonbenut\nonbepaald\nonbepaaldheid\nonbeperkt\nonbeperktheid\nonbeproefd\nonberaden\nonberadenheid\nonberecht\nonbereden\nonberedeneerbaar\nonberedeneerd\nonbereikbaar\nonbereikbaarheid\nonbereisd\nonberekenbaar\nonberekenbaarheid\nonberijdbaar\nonberijmd\nonberispelijk\nonberispelijkheid\nonberoerd\nonbeschaafd\nonbeschaafdheid\nonbeschaamd\nonbeschaamdheid\nonbeschadigd\nonbescheiden\nonbescheidenheid\nonbeschermd\nonbeschikbaar\nonbeschilderd\nonbeschoft\nonbeschoftheid\nonbeschreven\nonbeschrijfbaar\nonbeschrijfelijk\nonbeschrijflijk\nonbeschroomd\nonbeschroomdheid\nonbeschut\nonbeslagen\nonbeslapen\nonbeslecht\nonbeslist\nonbeslistheid\nonbesmet\nonbesneden\nonbespeelbaar\nonbespeeld\nonbespied\nonbespoten\nonbespreekbaar\nonbesproken\nonbestaanbaar\nonbestaanbaarheid\nonbestaand\nonbestelbaar\nonbestemd\nonbestendig\nonbestendigheid\nonbestorven\nonbestraat\nonbestraft\nonbestreden\nonbestuurbaar\nonbestuurbaarheid\nonbesuisd\nonbesuisdheid\nonbetaalbaar\nonbetaalbaarheid\nonbetaald\nonbetamelijk\nonbetamelijkheid\nonbetekenend\nonbeteugeld\nonbetreden\nonbetrokkenheid\nonbetrouwbaar\nonbetrouwbaarheid\nonbetuigd\nonbetwijfelbaar\nonbetwist\nonbetwistbaar\nonbetwistbaarheid\nonbevaarbaar\nonbevangen\nonbevangenheid\nonbevaren\nonbevattelijk\nonbevattelijkheid\nonbeveiligd\nonbevestigd\nonbevlekt\nonbevlektheid\nonbevoegd\nonbevoegde\nonbevoegdheid\nonbevolkt\nonbevooroordeeld\nonbevredigd\nonbevredigdheid\nonbevredigend\nonbevreesd\nonbevrucht\nonbewaakt\nonbewapend\nonbeweegbaar\nonbeweegbaarheid\nonbeweeglijk\nonbeweeglijkheid\nonbewerkt\nonbewezen\nonbewijsbaar\nonbewimpeld\nonbewogen\nonbewogenheid\nonbewolkt\nonbewoonbaar\nonbewoonbaarheidsverklaring\nonbewoonbaarverklaring\nonbewoond\nonbewust\nonbewuste\nonbewustheid\nonbezet\nonbezield\nonbezien\nonbezocht\nonbezoedeld\nonbezoldigd\nonbezonnen\nonbezonnenheid\nonbezorgd\nonbezorgdheid\nonbezwaard\nonbezweken\nonbeëdigd\nonbillijk\nonbillijkheid\nonbloedig\nonblusbaar\nonbrandbaar\nonbrandbaarheid\nonbreekbaar\nonbreekbaarheid\nonbruik\nonbruikbaar\nonbruikbaarheid\nonbuigbaar\nonbuigzaam\nonbuigzaamheid\nonchristelijk\nonchristelijkheid\noncollegiaal\noncologie\noncologisch\noncoloog\noncomfortabel\nonconstitutioneel\noncontroleerbaar\noncontroleerbaarheid\nonconventioneel\nondank\nondankbaar\nondankbaarheid\nondanks\nondeelbaar\nondeelbaarheid\nondefinieerbaar\nondegelijk\nondemocratisch\nondenkbaar\nondenkbeeldig\nonder\nonder ede\nonder meer\nonderaan\nonderaanbesteding\nonderaannemer\nonderaanneming\nonderaanzicht\nonderaards\nonderaf\nonderafdeling\nonderarm\nonderarms\nonderbaas\nonderbed\nonderbedeeld\nonderbeen\nonderbeet\nonderbelicht\nonderbelichten\nonderbelichting\nonderbemand\nonderbemanning\nonderbenutten\nonderbenutting\nonderberm\nonderbesteding\nonderbetaald\nonderbetalen\nonderbetaling\nonderbevelhebber\nonderbewust\nonderbewuste\nonderbewustzijn\nonderbezet\nonderbezetting\nonderbieden\nonderbieding\nonderbinden\nonderblad\nonderblijfsel\nonderblouse\nonderbord\nonderbouw\nonderbouwd\nonderbouwen\nonderbouwing\nonderbreken\nonderbreker\nonderbreking\nonderbrengen\nonderbrenging\nonderbroek\nonderbroekenlol\nonderbroken\nonderbuik\nonderbuikgevoel\nonderburen\nonderbuur\nonderbuurman\nonderbuurvrouw\nondercapaciteit\nonderchef\nondercommandant\nondercommissaris\nondercuratelestelling\nonderdaan\nonderdak\nonderdanen\nonderdanig\nonderdanigheid\nonderdeel\nonderdek\nonderdeken\nonderdekken\nonderdeks\nonderdeur\nonderdeurtje\nonderdijk\nonderdirecteur\nonderdirectoraat\nonderdoen\nonderdompelen\nonderdompeling\nonderdoor\nonderdoorgang\nonderdorpel\nonderdruk\nonderdrukken\nonderdrukker\nonderdrukking\nonderdrukt\nonderduikadres\nonderduiken\nonderduiker\nonderduikperiode\nonderduikster\nonderduims\nonderduwen\nondereen\nondereind\nondereinde\nonderen\nondergaan\nondergang\nondergebit\nondergedeelte\nondergelopen\nondergeschikt\nondergeschikte\nondergeschiktheid\nondergeschoven\nondergetekende\nondergewaardeerd\nondergewicht\nondergieten\nondergoed\nondergraven\nondergraving\nondergreep\nondergrens\nondergroei\nondergrond\nondergronds\nondergrondse\nonderhaar\nonderhand\nonderhandelaar\nonderhandelaarster\nonderhandelbaar\nonderhandelen\nonderhandeling\nonderhandelingsakkoord\nonderhandelingsargument\nonderhandelingsbasis\nonderhandelingsdelegatie\nonderhandelingsdoel\nonderhandelingsdoelstelling\nonderhandelingselement\nonderhandelingsfase\nonderhandelingsgesprek\nonderhandelingsklimaat\nonderhandelingsmacht\nonderhandelingsmandaat\nonderhandelingsmarge\nonderhandelingspartner\nonderhandelingsperiode\nonderhandelingspositie\nonderhandelingsproces\nonderhandelingsresultaat\nonderhandelingsronde\nonderhandelingsruimte\nonderhandelingssituatie\nonderhandelingsspel\nonderhandelingsstrategie\nonderhandelingstactiek\nonderhandelingstafel\nonderhandelingsteam\nonderhandelingsthema\nonderhandelingsvoorstel\nonderhands\nonderhavig\nonderhemd\nonderhevig\nonderhevigheid\nonderhorig\nonderhorige\nonderhorigheid\nonderhoud\nonderhouden\nonderhoudend\nonderhouder\nonderhoudplichtig\nonderhoudsabonnement\nonderhoudsactiviteit\nonderhoudsadvies\nonderhoudsafdeling\nonderhoudsarm\nonderhoudsbedrijf\nonderhoudsbegroting\nonderhoudsbeurt\nonderhoudsbijdrage\nonderhoudsbudget\nonderhoudscontract\nonderhoudsdienst\nonderhoudsdosis\nonderhoudsfonds\nonderhoudsgeld\nonderhoudsgevoelig\nonderhoudskosten\nonderhoudsmonteur\nonderhoudsnorm\nonderhoudsobject\nonderhoudsopdracht\nonderhoudsperiode\nonderhoudspersoneel\nonderhoudsplan\nonderhoudsplannen\nonderhoudsplanning\nonderhoudsplicht\nonderhoudsplichtig\nonderhoudsplichtige\nonderhoudsploeg\nonderhoudsprogramma\nonderhoudsproject\nonderhoudsschema\nonderhoudssubsidie\nonderhoudssysteem\nonderhoudstaak\nonderhoudstaken\nonderhoudstechnicus\nonderhoudstermijn\nonderhoudstherapie\nonderhoudstimmerman\nonderhoudstoestand\nonderhoudsverplichting\nonderhoudsvriendelijk\nonderhoudsvrij\nonderhoudsvrije\nonderhoudswerk\nonderhoudswerkzaamheden\nonderhout\nonderhuid\nonderhuids\nonderhuis\nonderhuren\nonderhuur\nonderhuurder\nonderhuurster\nonderin\nonderjurk\nonderkaak\nonderkant\nonderkapitalisatie\nonderkast\nonderkennen\nonderkenning\nonderkerk\nonderkin\nonderklas\nonderklasse\nonderkleding\nonderkleed\nonderkleren\nonderknuppel\nonderkoeld\nonderkoelen\nonderkoeling\nonderkoelingsverschijnselen\nonderkok\nonderkomen\nonderkoning\nonderkoningschap\nonderkop\nonderkotsen\nonderkruier\nonderkruipen\nonderkruiper\nonderkruiperij\nonderkruiping\nonderkruipsel\nonderlaag\nonderlaken\nonderlangs\nonderlast\nonderlegd\nonderlegger\nonderlichaam\nonderliggen\nonderliggend\nonderligger\nonderlijf\nonderlijfje\nonderlijk\nonderlijn\nonderlijnen\nonderling\nonderlinge\nonderlinnen\nonderlip\nonderlopen\nonderlosser\nonderluitenant\nondermaans\nondermaanse\nondermaat\nondermaats\nondermarge\nondermeester\nondermelk\nondermengen\nondermijnen\nondermijning\nonderminister\nonderneemster\nondernemen\nondernemend\nondernemer\nondernemersactiviteit\nondernemersbond\nondernemerscentrum\nondernemerschap\nondernemerscombinatie\nondernemerscultuur\nondernemersfunctie\nondernemersgeest\nondernemersinitiatief\nondernemersinkomen\nondernemersklimaat\nondernemerslobby\nondernemersloon\nondernemersopleiding\nondernemersorganisatie\nondernemersovereenkomst\nondernemersplan\nondernemersplannen\nondernemersprijs\nondernemersrisico\nondernemersrol\nondernemerstalent\nondernemersverbond\nondernemersvereniging\nondernemersvertrouwen\nondernemersvrijheid\nondernemerswinst\nondernemerszin\nonderneming\nondernemings-cao\nondernemingsactiviteit\nondernemingsbelang\nondernemingsbeleid\nondernemingsbeslissing\nondernemingsbestuur\nondernemingscultuur\nondernemingsfonds\nondernemingsgeest\nondernemingsgewijs\nondernemingsijver\nondernemingskamer\nondernemingsklimaat\nondernemingsleiding\nondernemingslust\nondernemingsniveau\nondernemingsorganisatie\nondernemingspensioenfonds\nondernemingsplan\nondernemingsplannen\nondernemingsplanning\nondernemingsproces\nondernemingsraad\nondernemingsraadslid\nondernemingsraadsvergadering\nondernemingsrecht\nondernemingsrisico\nondernemingsstrategie\nondernemingsstructuur\nondernemingsvermogen\nondernemingsvorm\nondernemingswereld\nondernemingswijze\nondernemingszin\nondernemingszucht\nondernomene\nonderofficier\nonderofficierskamer\nonderom\nonderonsje\nonderonsjes\nonderontwikkeld\nonderontwikkeling\nonderop\nonderopperbevelhebber\nonderoverste\nonderpacht\nonderpand\nonderpastoor\nonderploegen\nonderpresteren\nonderproductie\nonderpui\nonderraad\nonderramen\nonderrand\nonderrapportage\nonderricht\nonderrichten\nonderrichting\nonderrok\nonderrug\nonderschatten\nonderschatting\nonderscheid\nonderscheidbaar\nonderscheiden\nonderscheidend\nonderscheidenheid\nonderscheidenlijk\nonderscheiding\nonderscheidingsdrang\nonderscheidingsteken\nonderscheidingsvermogen\nonderscheidingsvlag\nonderscheppen\nonderschepping\nonderschikken\nonderschikkend\nonderschikking\nonderschoren\nonderschoring\nonderschragen\nonderschreven\nonderschrevene\nonderschrevenen\nonderschrift\nonderschriften\nonderschrijven\nonderschrijving\nonderschuiven\nonderschuiving\nondersecretaris\nondersecretaris-generaal\nondershands\nondersim\nonderslag\nonderslagbalk\nonderslagmolen\nondersneeuwen\nondersoort\nonderspannen\nonderspitten\nonderspuiten\nonderst\nonderstaan\nonderstaand\nonderstaatssecretaris\nonderstam\nonderstand\nonderstandig\nonderstation\nonderstboven\nonderste\nondersteboven\nondersteek\nondersteken\nonderstel\nonderstelde\nonderstellen\nonderstelling\nondersteunen\nondersteuner\nondersteuning\nondersteuningsfonds\nondersteuningspunt\nondersteuningsteam\nonderstippeld\nonderstoppen\nonderstrepen\nonderstreping\nonderstrepingskleur\nonderstrepingsstijl\nonderstrepingsteken\nonderstromen\nonderstroming\nonderstroom\nonderstuk\nonderstutten\nonderstuur\nonderstuurd\nondertand\nondertapijt\nondertas\nondertekenaar\nondertekenen\nondertekening\nondertekeningsceremonie\nondertitel\nondertitelen\nondertiteling\nondertoezichtstelling\nondertoon\nondertrouw\nondertrouwde\nondertrouwen\nondertunnelen\nondertunneling\nondertussen\nonderuit\nonderuitgaan\nonderuitglijden\nonderuithalen\nonderuitzakken\nondervangen\nondervanging\nonderverdelen\nonderverdeling\nonderverhuren\nonderverhuring\nonderverhuurder\nondervertegenwoordiging\nonderverzekerd\nonderverzekering\nondervinden\nondervinding\nondervloer\nondervoed\nondervoeding\nondervoorzitter\nondervraagde\nondervragen\nondervrager\nondervraging\nonderwaarde\nonderwaarderen\nonderwaardering\nonderwaterarcheologie\nonderwatercamera\nonderwaterfotografie\nonderwatergedeelte\nonderwaterklok\nonderwaterleven\nonderwatermicrofoon\nonderwateropname\nonderwaterpompen\nonderwaterschip\nonderwatersport\nonderwaterzetting\nonderweg\nonderwereld\nonderwereldfiguur\nonderwereldkoning\nonderwerk\nonderwerken\nonderwerp\nonderwerpelijk\nonderwerpen\nonderwerping\nonderwerpkeuze\nonderwerpregel\nonderwerpskeuze\nonderwerpszin\nonderwezene\nonderwezenen\nonderwicht\nonderwijl\nonderwijs\nonderwijs-cao\nonderwijsaanbod\nonderwijsachterstand\nonderwijsachterstandenbeleid\nonderwijsachterstandsbeleid\nonderwijsactiviteit\nonderwijsadministratie\nonderwijsadviescentrum\nonderwijsakkoord\nonderwijsassistent\nonderwijsbegeleidingsdienst\nonderwijsbegroting\nonderwijsbeleid\nonderwijsbestel\nonderwijsbevoegdheid\nonderwijsbond\nonderwijsbudget\nonderwijscarrière\nonderwijscentrum\nonderwijscommissie\nonderwijsconcept\nonderwijscultuur\nonderwijsdebat\nonderwijsdecaan\nonderwijsdeelname\nonderwijsdeskundige\nonderwijservaring\nonderwijsfonds\nonderwijsgebied\nonderwijsgebonden\nonderwijsgebouw\nonderwijsgeld\nonderwijsgevende\nonderwijshervorming\nonderwijshuisvesting\nonderwijsinrichting\nonderwijsinspanning\nonderwijsinspecteur\nonderwijsinspectie\nonderwijsinstelling\nonderwijsinstituut\nonderwijsklimaat\nonderwijskosten\nonderwijskracht\nonderwijskunde\nonderwijskundig\nonderwijskundige\nonderwijskwaliteit\nonderwijskwestie\nonderwijsland\nonderwijslandschap\nonderwijslast\nonderwijsleerproces\nonderwijsloopbaan\nonderwijsman\nonderwijsmarkt\nonderwijsmateriaal\nonderwijsmethode\nonderwijsmethodiek\nonderwijsminister\nonderwijsministerie\nonderwijsmodel\nonderwijsnet\nonderwijsnetwerk\nonderwijsniveau\nonderwijsnummer\nonderwijsondersteunend\nonderwijsontwikkelaar\nonderwijsontwikkeling\nonderwijsopzet\nonderwijsorganisatie\nonderwijspagina\nonderwijspakket\nonderwijspeil\nonderwijspersoneel\nonderwijsplan\nonderwijspolitiek\nonderwijspraktijk\nonderwijsprijs\nonderwijsprobleem\nonderwijsproces\nonderwijsprogramma\nonderwijsproject\nonderwijsraad\nonderwijsrecht\nonderwijsresearch\nonderwijsschepen\nonderwijssector\nonderwijssituatie\nonderwijssocioloog\nonderwijssoftware\nonderwijssoort\nonderwijsstaking\nonderwijsstelsel\nonderwijssysteem\nonderwijstaak\nonderwijstaal\nonderwijsteam\nonderwijstijd\nonderwijstype\nonderwijsvakbond\nonderwijsvakorganisatie\nonderwijsveld\nonderwijsvernieuwing\nonderwijsvisie\nonderwijsvoorrangsbeleid\nonderwijsvoorziening\nonderwijsvorm\nonderwijsvormen\nonderwijsvraag\nonderwijsvragen\nonderwijsvrijheid\nonderwijswereld\nonderwijswet\nonderwijswetenschap\nonderwijswetgeving\nonderwijswethouder\nonderwijswinkel\nonderwijswoordvoerder\nonderwijzen\nonderwijzenden\nonderwijzer\nonderwijzeres\nonderwijzersakte\nonderwijzersbond\nonderwijzersdiploma\nonderwijzersexamen\nonderwijzersgenootschap\nonderwijzing\nonderwind\nonderwinden\nonderworpeling\nonderworpen\nonderworpene\nonderworpenen\nonderworpenheid\nonderzaat\nonderzeeboot\nonderzeebootjager\nonderzeedienst\nonderzees\nonderzeeër\nonderzeil\nonderzetten\nonderzetter\nonderzetting\nonderzij\nonderzijde\nonderzoek\nonderzoekbureau\nonderzoekcentrum\nonderzoekcommissie\nonderzoeken\nonderzoeker\nonderzoekersopleiding\nonderzoekgegeven\nonderzoeking\nonderzoekingstocht\nonderzoekinstituut\nonderzoekkamer\nonderzoekmethode\nonderzoekmethodiek\nonderzoekopzet\nonderzoekprogramma\nonderzoekresultaat\nonderzoeksactiviteit\nonderzoeksafdeling\nonderzoeksapparatuur\nonderzoeksassistent\nonderzoeksbedrijf\nonderzoeksbelang\nonderzoeksbeleid\nonderzoeksbevoegdheid\nonderzoeksbudget\nonderzoeksbureau\nonderzoekscapaciteit\nonderzoekscel\nonderzoekscentrum\nonderzoekschool\nonderzoekscommissie\nonderzoekscoördinator\nonderzoeksdeel\nonderzoeksdelen\nonderzoeksdirecteur\nonderzoeksdoel\nonderzoeksdomein\nonderzoeksdomeinen\nonderzoeksdossier\nonderzoekseenheid\nonderzoekservaring\nonderzoeksfaciliteit\nonderzoeksfase\nonderzoeksgebied\nonderzoeksgegeven\nonderzoeksgeld\nonderzoeksgroep\nonderzoeksinstelling\nonderzoeksinstituut\nonderzoeksjournalist\nonderzoeksjournalistiek\nonderzoekskosten\nonderzoekslab\nonderzoekslaboratorium\nonderzoeksleider\nonderzoekslijn\nonderzoekslijnen\nonderzoeksmateriaal\nonderzoeksmatig\nonderzoeksmethode\nonderzoeksmissie\nonderzoeksobject\nonderzoeksonderwerp\nonderzoeksopdracht\nonderzoeksopzet\nonderzoeksorganisatie\nonderzoeksperiode\nonderzoeksplan\nonderzoeksplicht\nonderzoekspopulatie\nonderzoekspraktijk\nonderzoeksprogramma\nonderzoeksproject\nonderzoeksprotocol\nonderzoeksraad\nonderzoeksrapport\nonderzoeksreactor\nonderzoeksrechter\nonderzoeksresultaat\nonderzoeksruimte\nonderzoeksschip\nonderzoeksschool\nonderzoeksstation\nonderzoekstafel\nonderzoekstage\nonderzoekstation\nonderzoeksteam\nonderzoekstechniek\nonderzoekster\nonderzoeksterrein\nonderzoeksthema\nonderzoekstijd\nonderzoekstraditie\nonderzoeksuitslag\nonderzoeksvaardigheid\nonderzoeksveld\nonderzoeksverpleegkundige\nonderzoeksverslag\nonderzoeksvoorstel\nonderzoeksvraag\nonderzoekswereld\nonderzoekswerk\nonderzoektafel\nonderzoektechniek\nonderzoekverslag\nondeskundig\nondeskundigheid\nondeugd\nondeugdelijk\nondeugdelijkheid\nondeugend\nondeugendheid\nondicht\nondichterlijk\nondienst\nondienstig\nondiep\nondiepe\nondiepte\nondier\nonding\nondiplomatiek\nondode\nondoelmatig\nondoelmatigheid\nondoeltreffend\nondoenbaar\nondoenlijk\nondogmatisch\nondoordacht\nondoordringbaar\nondoordringbaarheid\nondoorgrondelijk\nondoorgrondelijkheid\nondoorlaatbaar\nondoorlatend\nondoorschijnend\nondoorwaadbaar\nondoorzichtig\nondoorzichtigheid\nondraagbaar\nondraaglijk\nondraaglijkheid\nondragelijk\nondramatisch\nondrinkbaar\nondubbelzinnig\nondubbelzinnigheid\nonduidelijk\nonduidelijkheid\nondulatie\nonduldbaar\nonduleren\nonduline\none-issuepartij\nonecht\nonechtheid\noneconomisch\nonedel\noneens\noneer\noneerbaar\noneerbaarheid\noneerbiedig\noneerbiedigheid\noneerlijk\noneerlijkheid\noneervol\noneetbaar\noneffen\noneffenheid\noneigenlijk\noneindig\noneindige\noneindigheid\noneindigheidsteken\nonelastisch\nonelegant\noneliner\nonemanshow\nonenig\nonenigheid\nonenightstand\nonereus\nonervaren\nonervarenheid\nonesthetisch\nonethisch\noneven\nonevenredig\nonevenredigheid\nonevenwicht\nonevenwichtig\nonevenwichtigheid\nonfair\nonfatsoen\nonfatsoenlijk\nonfatsoenlijkheid\nonfeilbaar\nonfeilbaarheid\nonflatteus\nonfortuinlijk\nonfraai\nonfris\nong.\nongaar\nongaarne\nongans\nongastvrij\nongastvrijheid\nongeacht\nongeadresseerd\nongeanimeerd\nongearticuleerd\nongeautoriseerd\nongebaand\nongebakken\nongebleekt\nongeblust\nongeboeid\nongebogen\nongebonden\nongebondenheid\nongeboren\nongeborene\nongebouwd\nongebrand\nongebreideld\nongebroken\nongebruikelijk\nongebruikt\nongebuild\nongebundeld\nongecensureerd\nongeciviliseerd\nongeclausuleerd\nongecodeerd\nongecompliceerd\nongecompliceerdheid\nongeconcentreerd\nongeconditioneerd\nongecontroleerd\nongecorrigeerd\nongecoördineerd\nongecultiveerd\nongedaan\nongedacht\nongedateerd\nongedeeld\nongedeerd\nongedefinieerd\nongedekt\nongedesemd\nongedetailleerd\nongedierte\nongediertebestrijder\nongediertebestrijding\nongedifferentieerd\nongediplomeerd\nongedisciplineerd\nongedoopt\nongedrukt\nongeduld\nongeduldig\nongeduldigheid\nongedurig\nongedurigheid\nongedwongen\nongedwongenheid\nongeestig\nongefilterd\nongeflatteerd\nongeforceerd\nongefrankeerd\nongefundeerd\nongegeneerd\nongegeneerdheid\nongegist\nongeglazuurd\nongegrond\nongegrondheid\nongehaast\nongehavend\nongehinderd\nongehoord\nongehoorzaam\nongehoorzaamheid\nongehuicheld\nongehuwd\nongein\nongekamd\nongekend\nongekeurd\nongekleed\nongekleurd\nongekookt\nongekozen\nongekrenkt\nongekreukt\nongekroond\nongekuist\nongekunsteld\nongekunsteldheid\nongekwalificeerd\nongel\nongeladen\nongelakt\nongeld\nongeldig\nongeldigheid\nongeldigverklaring\nongeleed\nongeleerd\nongelegen\nongelegenheid\nongeleid\nongeletterd\nongeletterde\nongeletterdheid\nongelezen\nongeliefd\nongelijk\nongelijkbenig\nongelijkheid\nongelijkmatig\nongelijkmatigheid\nongelijknamig\nongelijkslachtig\nongelijksoortig\nongelijksoortigheid\nongelijkvloers\nongelijkvormig\nongelijkwaardig\nongelijkwaardigheid\nongelijkzijdig\nongelijmd\nongelijnd\nongelikt\nongeliktheid\nongelimiteerd\nongelinieerd\nongelofelijk\nongelofelijke\nongelogen\nongelood\nongeloof\nongelooflijk\nongelooflijke\nongeloofwaardig\nongeloofwaardigheid\nongelouterd\nongelovig\nongelovige\nongelovige thomas\nongelovigheid\nongeluk\nongelukje\nongelukkig\nongelukkige\nongelukkigerwijs\nongelukkigerwijze\nongelukkiglijk\nongeluksbode\nongeluksdag\nongeluksgetal\nongelukskind\nongeluksprofeet\nongelukstijding\nongeluksvogel\nongemak\nongemakkelijk\nongemakkelijkheid\nongemakkentoeslag\nongemanierd\nongemanierdheid\nongemarkeerd\nongemaskerd\nongematteerd\nongemeen\nongemeend\nongemengd\nongemerkt\nongemeten\nongemeubileerd\nongemodereerd\nongemoeid\nongemonteerd\nongemotiveerd\nongemotoriseerd\nongemunt\nongenaakbaar\nongenaakbaarheid\nongenade\nongenadig\nongeneesbaar\nongeneeslijk\nongeneeslijkheid\nongenegen\nongenegenheid\nongeneigd\nongeneigdheid\nongeneselijk\nongenietbaar\nongenodigd\nongenoegen\nongenoeglijk\nongenoegzaam\nongenoegzaamheid\nongenoemd\nongenood\nongenuanceerd\nongenuanceerdheid\nongenummerd\nongeoefend\nongeoefendheid\nongeoorloofd\nongeopend\nongeordend\nongeorganiseerd\nongepaard\nongepast\nongepastheid\nongepeld\nongepermitteerd\nongeplaatst\nongepland\nongeplastificeerd\nongeplaveid\nongepolijst\nongeprepareerd\nongepubliceerd\nongeraden\nongerealiseerd\nongerechtigheid\nongerechtvaardigd\nongeregeld\nongeregeldheden\nongeregeldheid\nongeregistreerd\nongereglementeerd\nongereguleerd\nongerekend\nongerelateerd\nongeremd\nongerept\nongereptheid\nongericht\nongerief\nongeriefelijk\nongeriefelijkheid\nongerieflijk\nongerieflijkheid\nongerijmd\nongerijmdheid\nongeroerd\nongerust\nongerustheid\nongescheiden\nongeschikt\nongeschiktheid\nongeschild\nongeschminkt\nongeschoeid\nongeschokt\nongeschonden\nongeschoold\nongeschoren\nongeschreven\nongesigneerd\nongeslachtelijk\nongeslagen\nongeslepen\nongesluierd\nongesorteerd\nongespecificeerd\nongesplitst\nongestadig\nongestadigheid\nongesteeld\nongesteld\nongesteldheid\nongestempeld\nongestoffeerd\nongestoord\nongestraft\nongestreken\nongestructureerd\nongestudeerd\nongestuurd\nongesubsidieerd\nongesuikerd\nongetekend\nongeteld\nongetemd\nongetemperd\nongetraind\nongetroost\nongetrouwd\nongetwijfeld\nongevaarlijk\nongevaccineerd\nongevaccineerde\nongeval\nongevallenpolis\nongevallenraad\nongevallenrisico\nongevallenstatistiek\nongevallenverzekering\nongevallenwet\nongevallig\nongevalsrisico\nongeveer\nongeveinsd\nongeverfd\nongevoeglijk\nongevoelig\nongevoeligheid\nongevoerd\nongevormd\nongevraagd\nongevuld\nongewapend\nongewassen\nongewenst\nongewenstheid\nongewerveld\nongeweten\nongewettigd\nongewijd\nongewijzigd\nongewild\nongewillig\nongewis\nongewisheid\nongewisse\nongewoon\nongewoonheid\nongewoonte\nongewroken\nongezegd\nongezegeld\nongezeglijk\nongezeglijkheid\nongezellig\nongezelligheid\nongezien\nongezind\nongezocht\nongezond\nongezondheid\nongezouten\nongezuiverd\nongezuurd\nongeëmancipeerd\nongeëmotioneerd\nongeëvenaard\nongeïdentificeerd\nongeïllustreerd\nongeïnformeerd\nongeïnspireerd\nongeïnteresseerd\nongeïnteresseerdheid\nongodist\nongodisterij\nongodsdienstig\nongodsdienstigheid\nongrammaticaal\nongrijpbaar\nongrijpbaarheid\nongrondwettelijk\nongrondwettig\nongrondwettigheid\nongunst\nongunstig\nongunstigheid\nonguur\nonguurheid\nonhaalbaar\nonhaalbaarheid\nonhandelbaar\nonhandelbaarheid\nonhandig\nonhandigheid\nonhanteerbaar\nonhartelijk\nonhebbelijk\nonhebbelijkheid\nonheil\nonheilbrengend\nonheilig\nonheiligheid\nonheilsbode\nonheilsboodschap\nonheilsdag\nonheilspellend\nonheilsplek\nonheilsprofeet\nonheilstijding\nonhelder\nonhelderheid\nonherbergzaam\nonherbergzaamheid\nonherhaalbaar\nonherkenbaar\nonherleidbaar\nonherroepelijk\nonherroepelijkheid\nonherstelbaar\nonheuglijk\nonheus\nonheuse\nonheusheid\nonhistorisch\nonhoffelijk\nonhoorbaar\nonhoudbaar\nonhoudbaarheid\nonhuiselijk\nonhuiselijkheid\nonhuislijk\nonhygiënisch\noninbaar\noningevuld\noningewijd\nonintelligent\noninteressant\nonintuïtief\nonintuïtieve\nonislamitisch\nonjuist\nonjuistheid\nonkel\nonkenbaar\nonkennelijk\nonkerkelijk\nonkerkelijke\nonkerkelijkheid\nonkies\nonkiese\nonkiesheid\nonklaar\nonklopbaar\nonknap\nonkosten\nonkostenboek\nonkostenboeken\nonkostendeclaratie\nonkostendekkend\nonkostennota\nonkostenpost\nonkostenregeling\nonkostenrekening\nonkostenvergoeding\nonkraakbaar\nonkreukbaar\nonkreukbaarheid\nonkritisch\nonkruid\nonkruidbestrijder\nonkruidbestrijding\nonkruidbestrijdingsmiddel\nonkruidtuin\nonkruidverdelger\nonkruidverdelgingsmiddel\nonkruidzaad\nonkuis\nonkuisheid\nonkunde\nonkundig\nonkwetsbaar\nonkwetsbaarheid\nonland\nonlangs\nonledig\nonleefbaar\nonleefbaarheid\nonleesbaar\nonleesbaarheid\nonlekker\nonlesbaar\nonleuk\nonliberaal\nonlichamelijk\nonlijdelijk\nonline\nonlinecatalogus\nonlineverbinding\nonlineversie\nonlogica\nonlogisch\nonloochenbaar\nonlosmakelijk\nonlust\nonlusten\nonlustgevoel\nonmaatschappelijk\nonmaatschappelijkheid\nonmacht\nonmachtig\nonmanlijk\nonmannelijk\nonmatig\nonmatigheid\nonmededeelbaar\nonmededeelzaam\nonmeedogend\nonmeedogendheid\nonmeetbaar\nonmeetbaarheid\nonmens\nonmenselijk\nonmenselijkheid\nonmerkbaar\nonmetelijk\nonmetelijkheid\nonmiddellijk\nonmiddellijkheid\nonmin\nonmisbaar\nonmisbaarheid\nonmiskenbaar\nonmodieus\nonmogelijk\nonmogelijkheid\nonmondig\nonmondigheid\nonmuzikaal\nonnadenkend\nonnadenkendheid\nonnadrukkelijk\nonnaspeurbaar\nonnaspeurlijk\nonnaspeurlijkheid\nonnatuur\nonnatuurlijk\nonnatuurlijkheid\nonnauwkeurig\nonnauwkeurigheid\nonnauwkeurigheidsmarge\nonnavolgbaar\nonneembaar\nonnet\nonnodig\nonnoembaar\nonnoemelijk\nonnoemlijk\nonnozel\nonnozelaar\nonnozelheid\nonnut\nonnuttig\nonofficieel\nonomasticon\nonomastiek\nonomatopee\nonomkeerbaar\nonomkeerbaarheid\nonomkoopbaar\nonomstootbaar\nonomstotelijk\nonomstreden\nonomwonden\nononderbroken\nononderhandelbaar\nononderscheidbaar\nonontbeerlijk\nonontbeerlijkheid\nonontbindbaar\nonontdekt\nonontgonnen\nonontkoombaar\nonontkoombaarheid\nonontploft\nonontsloten\nonontvankelijk\nonontvreemdbaar\nonontwarbaar\nonontwijkbaar\nonontwikkeld\nonooglijk\nonooglijkheid\nonoorbaar\nonoordeelkundig\nonopgehelderd\nonopgeleid\nonopgelost\nonopgemaakt\nonopgemerkt\nonopgesmukt\nonopgevoed\nonophoudelijk\nonoplettend\nonoplettendheid\nonoplosbaar\nonoplosbaarheid\nonopmerkelijk\nonopmerkzaam\nonoprecht\nonoprechtheid\nonopvallend\nonopvallendheid\nonopzegbaar\nonopzettelijk\nonordelijk\nonorthodox\nonov. ww.\nonoverbrugbaar\nonoverdacht\nonoverdekt\nonoverdraagbaarheid\nonovergankelijk\nonoverkomelijk\nonoverkomelijkheid\nonoverkoombaar\nonovertrefbaar\nonovertroffen\nonoverwinbaar\nonoverwinlijk\nonoverwinlijkheid\nonoverwinnelijk\nonoverwinnelijkheid\nonoverwonnen\nonoverzichtelijk\nonoverzichtelijkheid\nonoverzienbaar\nonpaar\nonparlementair\nonpartijdig\nonpartijdigheid\nonpasselijk\nonpasselijkheid\nonpatriottisch\nonpedagogisch\nonpeilbaar\nonpersoon\nonpersoonlijk\nonpersoonlijkheid\nonplezierig\nonpolitiek\nonpopulair\nonpopulariteit\nonpraktisch\nonpretentieus\nonprettig\nonproblematisch\nonproductief\nonprofessioneel\nonraad\nonrealistisch\nonrecht\nonrechtmatig\nonrechtmatigheid\nonrechtstreeks\nonrechtvaardig\nonrechtvaardigheid\nonredelijk\nonredelijkheid\nonregeerbaar\nonregeerbaarheid\nonregelmatig\nonregelmatigheden\nonregelmatigheid\nonregelmatigheidstoeslag\nonreglementair\nonrein\nonreinheid\nonrendabel\nonrepresentatief\nonrijm\nonrijp\nonrijpheid\nonroerend\nonroerendezaakbelasting\nonroerendgoedbelasting\nonroerendgoedbezit\nonroerendgoedmarkt\nonroerendgoedonderneming\nonroerendgoedsector\nonroerendgoedtransactie\nonromantisch\nonrooms\nonrust\nonrustbarend\nonrustgevoel\nonrustgevoelens\nonrustig\nonrustigheid\nonruststoker\nonruststookster\nonruststooksters\nonrustwekkend\nonrustzaaier\nons\nonsamenhangend\nonsamenhangendheid\nonschadelijk\nonschadelijkheid\nonschatbaar\nonscheidbaar\nonscheidbaarheid\nonschendbaar\nonschendbaarheid\nonscherp\nonscherpte\nonschoon\nonschuld\nonschuldig\nonsentimenteel\nonserieus\nonshore\nonslijtbaar\nonsmakelijk\nonsmakelijkheid\nonsolidair\nonspectaculair\nonspeelbaar\nonsplitsbaarheid\nonspoed\nonsportief\nonsportiviteit\nonstabiel\nonstabiliteit\nonstandvastig\nonsterfelijk\nonsterfelijkheid\nonsterk\nonstichtelijk\nonstilbaar\nonstoffelijk\nonstoffelijkheid\nonstuimig\nonstuimigheid\nonstuitbaar\nonsubtiel\nonsuccesvol\nonsympathiek\nonsystematisch\nonszelf\nontaalkundig\nontaard\nontaarden\nontaardheid\nontaarding\nontactisch\nontastbaar\nontbeend\nontberen\nontbering\nontberingen\nontbieden\nontbijt\nontbijtblad\nontbijtbord\nontbijtbordje\nontbijtbuffet\nontbijten\nontbijtkamer\nontbijtkoek\nontbijtlaken\nontbijtprogramma\nontbijtservies\nontbijtshow\nontbijtspek\nontbijttafel\nontbijttelevisie\nontbijtzaal\nontbindbaar\nontbinden\nontbinding\nontbindingsactie\nontbindingsbesluit\nontbindingsprocedure\nontbindingsrecht\nontbindingsverschijnselen\nontbindingsverzoek\nontbladerd\nontbladeren\nontbladering\nontbladeringsmiddel\nontbloot\nontbloten\nontbloting\nontboezemen\nontboezeming\nontbolsteren\nontbolstering\nontbossen\nontbossing\nontbost\nontbrandbaar\nontbranden\nontbranding\nontbrandingstemperatuur\nontbreken\nontbundeling\nontcijferbaar\nontcijferen\nontcijfering\nontdaan\nontdaanheid\nontdekken\nontdekker\nontdekking\nontdekkingsreis\nontdekkingsreiziger\nontdekkingstocht\nontdoen\nontdooien\nontdooiing\nontdubbelen\nontdubbeling\nontduiken\nontduiker\nontduiking\nontduikingsmogelijkheid\nontegensprekelijk\nontegenzeggelijk\nontegenzeglijk\nonteigenen\nonteigening\nonteigeningsprocedure\nonteigeningswet\nontelbaar\nontembaar\nontembaarheid\nonterecht\nonteren\nontering\nonterven\nonterving\nontevreden\nontevredene\nontevredenheid\nontfermen\nontferming\nontfronsen\nontfutselen\nontgaan\nontgassen\nontgassing\nontgelden\nontgeven\nontgiften\nontgifting\nontgiftingsprogramma\nontgiftingsprogramma's\nontginnen\nontginner\nontginning\nontglijden\nontglippen\nontgloeien\nontgon\nontgonnen\nontgoocheld\nontgoochelen\nontgoocheling\nontgraven\nontgraving\nontgrendelen\nontgrinding\nontgroeien\nontgroenen\nontgroening\nontgroeningsceremonie\nontgroeningstijd\nontgronden\nontgronder\nontgronding\nontgrondingsvergunning\nonthaal\nonthaalmoeder\nonthaalouder\nonthaalvader\nonthaasten\nonthaasting\nonthalen\nonthalzen\nonthand\nontharden\nontharder\nontharding\nontharen\nontharing\nontharingscrème\nontharingsmiddel\nonthecht\nonthechten\nonthechtheid\nonthechting\nontheemd\nontheemde\nontheemden\nontheemdenregeling\nontheemdenstatus\nontheemding\nontheffen\nontheffing\nontheffingsregeling\nontheffingsverzoek\nontheiligen\nontheiliging\nonthoofd\nonthoofden\nonthoofding\nonthoornd\nonthouden\nonthouder\nonthouding\nonthoudingsdag\nonthoudingsverschijnselen\nonthullen\nonthuller\nonthulling\nonthutsen\nonthutsing\nonthutst\nontideologisering\nontiegelijk\nontij\nontijde\nontijdig\nontijdigheid\nontilbaar\nontkalken\nontkalking\nontkennen\nontkennend\nontkenner\nontkenning\nontkerkelijking\nontkerkelijkt\nontkerstenen\nontkerstening\nontketenen\nontketening\nontkiemen\nontkieming\nontkleden\nontkleding\nontkleed\nontkleuren\nontkleuring\nontknopen\nontknoping\nontkolen\nontkomen\nontkoppelen\nontkoppeling\nontkoppelingspedaal\nontkrachten\nontkrachting\nontkurken\nontlaadtang\nontladen\nontlader\nontlading\nontlasten\nontlasting\nontlaten\nontleden\nontleding\nontledingstemperatuur\nontleedkamer\nontleedkunde\nontleedkundig\nontleedkundige\nontleedmes\nontleedtafel\nontleerd\nontlenen\nontlener\nontlening\nontleren\nontlezing\nontliep\nontloken\nontlokken\nontlook\nontlopen\nontluchten\nontluchting\nontluchtingen\nontluchtingskanaal\nontluchtingskoker\nontluchtingsleiding\nontluchtingsventiel\nontluiken\nontluisd\nontluisteren\nontluistering\nontluizen\nontluizing\nontmaagden\nontmaagding\nontmagnetiseren\nontmannen\nontmantelen\nontmanteling\nontmaskeren\nontmaskering\nontmengen\nontmenselijken\nontmenselijking\nontmenst\nontmijnen\nontmijning\nontmijningsdienst\nontmoedigd\nontmoedigen\nontmoedigendste\nontmoediging\nontmoedigingsbeleid\nontmoeten\nontmoeting\nontmoetingsavond\nontmoetingscentrum\nontmoetingsdag\nontmoetingsplaats\nontmoetingsplek\nontmoetingspunt\nontmoetingsruimte\nontmunten\nontmythologiseren\nontmythologisering\nontnemen\nontneming\nontnemingsvordering\nontnuchterd\nontnuchteren\nontnuchtering\nontoegankelijk\nontoegankelijkheid\nontoegeeflijk\nontoelaatbaar\nontoelaatbaarheid\nontoepasselijk\nontoereikend\nontoereikendheid\nontoerekenbaar\nontoerekenbaarheid\nontoerekeningsvatbaar\nontoerekeningsvatbaarheid\nontoeschietelijk\nontogenese\nontologie\nontologisch\nontoombaar\nontoonbaar\nontpakken\nontpitten\nontplofbaar\nontploffen\nontploffing\nontploffingsgevaar\nontplooien\nontplooiing\nontplooiingskans\nontplooiingsmogelijkheid\nontpolderen\nontpoldering\nontpoppen\nontraadselen\nontraadseling\nontraceerbaar\nontraden\nontrafelen\nontrafeling\nontratten\nontredderd\nontreddering\nontrefbaar\nontregeld\nontregelen\nontregeling\nontremd\nontremmen\nontremmend\nontremming\nontrieven\nontroerd\nontroeren\nontroerend\nontroering\nontroesten\nontrollen\nontromen\nontromer\nontroming\nontroostbaar\nontroostbaarheid\nontrouw\nontroven\nontruimen\nontruiming\nontruimingsactie\nontruimingsalarm\nontruimingsbevel\nontruimingsplan\nontruimingsprocedure\nontrukken\nontrust\nontrusten\nontschepen\nontscheping\nontschieten\nontschorsen\nontschorsing\nontschotting\nontsieren\nontsiering\nontslaan\nontslag\nontslagaanvraag\nontslagaanvrage\nontslagaanzegging\nontslagbegeleiding\nontslagbeleid\nontslagbescherming\nontslagbeslissing\nontslagbesluit\nontslagbrief\nontslagcommissie\nontslagdreiging\nontslagene\nontslaggesprek\nontslaggolf\nontslaggolven\nontslaggrond\nontslagkosten\nontslagleeftijd\nontslagmoment\nontslagname\nontslagnemend\nontslagnemer\nontslagneming\nontslagpremie\nontslagprocedure\nontslagrecht\nontslagreden\nontslagregeling\nontslagronde\nontslagtoets\nontslagverbod\nontslagverboden\nontslagvergoeding\nontslagvergunning\nontslagverzoek\nontslagvoorbereiding\nontslagzaak\nontslaken\nontslakken\nontslapen\nontslapene\nontslippen\nontsluieren\nontsluiering\nontsluipen\nontsluiten\nontsluiting\nontsluitingsplan\nontsluitingsroute\nontsluitingssysteem\nontsluitingstechniek\nontsluitingsweg\nontsmetten\nontsmettend\nontsmetting\nontsmettingsbak\nontsmettingsdienst\nontsmettingsmiddel\nontsmettingsoven\nontsnaard\nontsnappen\nontsnapping\nontsnappingsclausule\nontsnappingskunstenaar\nontsnappingsluik\nontsnappingsmiddel\nontsnappingsmogelijkheid\nontsnappingspoging\nontsnappingsroute\nontsnappingssnelheid\nontsnappingsweg\nontsnappingswegen\nontspannen\nontspannends\nontspannenheid\nontspanner\nontspanning\nontspanningsactiviteit\nontspanningscentrum\nontspanningslectuur\nontspanningsoefening\nontspanningspolitiek\nontspanningsprogramma\nontspanningsruimte\nontspanningstoestand\nontsparen\nontsparing\nontspiegeld\nontspiegelen\nontspinnen\nontsporen\nontsporing\nontspringen\nontspruiten\nontstaan\nontstaansgeschiedenis\nontstaansperiode\nontstaansproces\nontstaansrecht\nontstaanswijze\nontstedelijking\nontsteken\nontsteker\nontsteking\nontstekingskoorts\nontstekingsmechanisme\nontstekingsmiddel\nontstekingspen\nontstekingsproces\nontstekingsreactie\nontstekingsremmend\nontstekingsremmer\nontstekingstijdstip\nontstekingstrafo\nontsteld\nontstelen\nontstellen\nontstellend\nontsteltenis\nontstemd\nontstemdheid\nontstemmen\nontstemming\nontstentenis\nontstichten\nontstichting\nontstijgen\nontstijging\nontstoken\nontstoppen\nontstopper\nontstoppingsmiddel\nontstoppingsveer\nontstoren\nontstrijden\nonttakelen\nonttakeling\nonttogen\nonttoveren\nonttovering\nonttrekken\nonttrekking\nonttronen\nonttroning\nontucht\nontuchtig\nontuchtigheid\nontuchtzaak\nontuig\nontvallen\nontvang\nontvangantenne\nontvangbak\nontvangbewijs\nontvangdag\nontvangen\nontvangenis\nontvanger\nontvangerskant\nontvangerskantoor\nontvanginstallatie\nontvangkamer\nontvangkantoor\nontvangst\nontvangstantenne\nontvangstapparatuur\nontvangstation\nontvangstbericht\nontvangstberichten\nontvangstbevestiging\nontvangstbewijs\nontvangstcentrum\nontvangstcomité\nontvangstdatum\nontvangsten\nontvangsthal\nontvangstkaarten\nontvangstkamer\nontvangstpost\nontvangstposten\nontvangstruimte\nontvangststation\nontvangstzaal\nontvangtoestel\nontvankelijk\nontvankelijkheid\nontvaren\nontveinzen\nontveld\nontvellen\nontvelling\nontvet\nontvetten\nontvlambaar\nontvlambaarheid\nontvlammen\nontvlechten\nontvlechting\nontvleesd\nontvlekken\nontvlieden\nontvlochten\nontvlucht\nontvluchten\nontvluchting\nontvoerder\nontvoeren\nontvoering\nontvoeringszaak\nontvolken\nontvolking\nontvonken\nontvoogd\nontvoogden\nontvoogding\nontvoogdingsstrijd\nontvouwen\nontvouwing\nontvreemd\nontvreemden\nontvreemding\nontwaakt\nontwaarding\nontwaken\nontwaking\nontwapenen\nontwapening\nontwapeningsakkoord\nontwapeningscommissie\nontwapeningsconferentie\nontwapeningsonderhandeling\nontwapeningsoverleg\nontwapeningsplan\nontwapeningsproces\nontwapeningsverdrag\nontwaren\nontwarren\nontwarring\nontwassen\nontwateren\nontwatering\nontweien\nontweldigen\nontwellen\nontwennen\nontwenning\nontwenningskliniek\nontwenningskuur\nontwenningsverschijnselen\nontwerp\nontwerpadvies\nontwerpafdeling\nontwerpakkoord\nontwerpbegroting\nontwerpbeschikking\nontwerpbesluit\nontwerpbestemmingsplan\nontwerpbureau\nontwerpcontract\nontwerpdecreet\nontwerpdetails\nontwerpdocument\nontwerpeisen\nontwerpen\nontwerper\nontwerperscollectief\nontwerpersduo\nontwerpfase\nontwerpfout\nontwerpgrondwet\nontwerphandvest\nontwerpje\nontwerpjes\nontwerpkosten\nontwerplijst\nontwerpnota\nontwerpovereenkomst\nontwerpplan\nontwerpplannen\nontwerpproces\nontwerpprogramma\nontwerprapport\nontwerpregeerakkoord\nontwerpresolutie\nontwerprichtlijn\nontwerpschets\nontwerpslotverklaring\nontwerpster\nontwerpstijl\nontwerpstrategie\nontwerpstreekplan\nontwerpstructuur\nontwerpstudio\nontwerpteam\nontwerptechnisch\nontwerptekening\nontwerptekst\nontwerptracébesluit\nontwerpverdrag\nontwerpverklaring\nontwerpvoorstel\nontwerpwedstrijd\nontwerpwerk\nontwerpwet\nontwerpwijziging\nontwijden\nontwijding\nontwijfelbaar\nontwijken\nontwijkend\nontwijkgedrag\nontwijking\nontwikkelaar\nontwikkelafdeling\nontwikkelbak\nontwikkelcentrale\nontwikkeld\nontwikkeldoos\nontwikkelen\nontwikkelgemeenschap\nontwikkelgereedschappen\nontwikkelgroep\nontwikkelgroepen\nontwikkeling\nontwikkelingsachterstand\nontwikkelingsaspect\nontwikkelingsbad\nontwikkelingsbank\nontwikkelingsbedrijf\nontwikkelingsbehoefte\nontwikkelingsbeleid\nontwikkelingsbiologie\nontwikkelingsbudget\nontwikkelingscentrum\nontwikkelingscombinatie\nontwikkelingseconoom\nontwikkelingsfase\nontwikkelingsfonds\nontwikkelingsgang\nontwikkelingsgebied\nontwikkelingsgeld\nontwikkelingsgeneeskunde\nontwikkelingsgericht\nontwikkelingsgeschiedenis\nontwikkelingsgroep\nontwikkelingshulp\nontwikkelingskans\nontwikkelingskosten\nontwikkelingskrediet\nontwikkelingsland\nontwikkelingsleer\nontwikkelingsmaatschappij\nontwikkelingsmodel\nontwikkelingsmogelijkheid\nontwikkelingsniveau\nontwikkelingsorganisatie\nontwikkelingspeil\nontwikkelingsplan\nontwikkelingspotentieel\nontwikkelingsproblematiek\nontwikkelingsproces\nontwikkelingsprogramma\nontwikkelingsproject\nontwikkelingspsychologie\nontwikkelingsrelatie\nontwikkelingsroman\nontwikkelingssamenwerking\nontwikkelingsschema\nontwikkelingsstadium\nontwikkelingssteun\nontwikkelingsstoornis\nontwikkelingsstrategie\nontwikkelingsteam\nontwikkelingstheorie\nontwikkelingstijd\nontwikkelingstijdperk\nontwikkelingstraject\nontwikkelingsverdrag\nontwikkelingsvisie\nontwikkelingswerk\nontwikkelingswerker\nontwikkelingswerkster\nontwikkelkosten\nontwikkelmethode\nontwikkelmodel\nontwikkelomgevingen\nontwikkelplatform\nontwikkeltank\nontwikkelteam\nontwikkeltraject\nontwikkelwerk\nontwinden\nontwoekeren\nontwormen\nontworstelen\nontworteld\nontwortelen\nontworteling\nontwrichten\nontwrichting\nontwringen\nontzadelen\nontzag\nontzaglijk\nontzaglijkheid\nontzagwekkend\nontzanden\nontzander\nontzanding\nontzegeld\nontzegelen\nontzegeling\nontzeggen\nontzegging\nontzeilen\nontzenuwen\nontzenuwing\nontzet\nontzetten\nontzettend\nontzetting\nontzettingsleger\nontzield\nontzielen\nontzien\nontzilten\nontzilting\nontzind\nontzinken\nontzouten\nontzuilen\nontzuiling\nontzuren\nontzwavelen\nontzwaveling\nontzwavelingsinstallatie\nontzwellen\nonuitblusbaar\nonuitgebracht\nonuitgegeven\nonuitgenodigd\nonuitgepakt\nonuitgesproken\nonuitgevoerd\nonuitgewerkt\nonuitputbaar\nonuitputtelijk\nonuitputtelijkheid\nonuitroeibaar\nonuitspreekbaar\nonuitsprekelijk\nonuitstaanbaar\nonuitstaanbaarheid\nonuitvoerbaar\nonuitvoerbaarheid\nonuitwisbaar\nonvaderlands\nonvaderlandslievend\nonvast\nonvastheid\nonvatbaar\nonvatbaarheid\nonveilig\nonveiligheid\nonveiligheidsgevoel\nonveiligheidsgevoelens\nonveranderbaar\nonveranderd\nonveranderlijk\nonveranderlijkheid\nonverantwoord\nonverantwoordelijk\nonverantwoordelijkheid\nonverbasterd\nonverbeterbaar\nonverbeterd\nonverbeterlijk\nonverbeterlijkheid\nonverbiddelijk\nonverbiddelijkheid\nonverbindend\nonverbindendverklaring\nonverbloemd\nonverbrand\nonverbreekbaar\nonverbreekbaarheid\nonverbrekelijk\nonverbrekelijkheid\nonverbuigbaar\nonverdacht\nonverdedigbaar\nonverdedigbaarheid\nonverdedigd\nonverdeelbaar\nonverdeeld\nonverdeeldheid\nonverdiend\nonverdienstelijk\nonverdorven\nonverdorvenheid\nonverdraaglijk\nonverdraaglijkheid\nonverdraagzaam\nonverdraagzaamheid\nonverdroten\nonverdund\nonverenigbaar\nonverenigbaarheid\nonverenigd\nonverflauwd\nonvergankelijk\nonvergankelijkheid\nonvergeeflijk\nonvergefelijk\nonvergelijkbaar\nonvergelijkelijk\nonvergetelijk\nonverglaasd\nonvergolden\nonverhard\nonverhinderd\nonverhoeds\nonverholen\nonverhoopt\nonverhoord\nonverhuld\nonverhuurbaar\nonverhuurbaarheid\nonverkiesbaar\nonverkiesbaarheid\nonverkieslijk\nonverklaarbaar\nonverklaarbaarheid\nonverklaard\nonverkleinbaar\nonverkocht\nonverkoopbaar\nonverkort\nonverkrijgbaar\nonverkwikkelijk\nonverkwikkelijkheden\nonverkwikkelijkheid\nonverlaat\nonverlet\nonverlicht\nonvermakelijk\nonvermeld\nonvermengd\nonvermijdbaar\nonvermijdelijk\nonvermijdelijkheid\nonverminderd\nonvermoed\nonvermoeibaar\nonvermoeibaarheid\nonvermoeid\nonvermogen\nonvermogend\nonvermurwbaar\nonvermurwbaarheid\nonverpakt\nonverplicht\nonverpoosd\nonverricht\nonverrichter zake\nonversaagd\nonversaagdheid\nonverschillig\nonverschilligheid\nonverschoonbaar\nonverschrokken\nonverschrokkenheid\nonversierd\nonverslaanbaar\nonverslijtbaar\nonversneden\nonverstaanbaar\nonverstaanbaarheid\nonverstand\nonverstandig\nonverstandigheid\nonverstoorbaar\nonverstoorbaarheid\nonverstoord\nonvertaalbaar\nonvertaald\nonvertakt\nonverteerbaar\nonverteerbaarheid\nonverteerd\nonvertogen\nonvertraagd\nonvervaard\nonvervaardheid\nonvervalst\nonvervangbaar\nonvervormd\nonvervreemdbaar\nonvervreemdbaarheid\nonvervuild\nonvervulbaar\nonvervuld\nonvervuldheid\nonverwacht\nonverwachtheid\nonverwachts\nonverwarmd\nonverwelkbaar\nonverwelkelijk\nonverwelkt\nonverwerkbaar\nonverwerkt\nonverwezenlijkbaar\nonverwezenlijkbare\nonverwijld\nonverwinbaar\nonverwinlijk\nonverwinnelijk\nonverwinnelijkheid\nonverwoestbaar\nonverwrikbaar\nonverwrikt\nonverzaadbaar\nonverzadelijk\nonverzadelijkheid\nonverzadigbaar\nonverzadigbaarheid\nonverzadigd\nonverzekerbaar\nonverzekerd\nonverzeld\nonverzetbaar\nonverzettelijk\nonverzettelijkheid\nonverzoenbaar\nonverzoenlijk\nonverzoenlijkheid\nonverzorgd\nonverzwakt\nonvindbaar\nonvindbaarheid\nonvoegzaam\nonvoldaan\nonvoldaanheid\nonvoldoend\nonvoldoende\nonvoldragen\nonvoleindigd\nonvolgroeid\nonvolkomen\nonvolkomenheid\nonvolledig\nonvolledigheid\nonvolmaakt\nonvolmaaktheid\nonvolprezen\nonvoltooid\nonvolwaardig\nonvolwassen\nonvolwassenheid\nonvoorbedacht\nonvoorbereid\nonvoordelig\nonvoorspelbaar\nonvoorspelbaarheid\nonvoorstelbaar\nonvoorwaardelijk\nonvoorwaardelijkheid\nonvoorzichtig\nonvoorzichtigheid\nonvoorzien\nonvoorzienbaar\nonvoorziens\nonvrede\nonvree\nonvriendelijk\nonvriendelijkheid\nonvriendschappelijk\nonvrij\nonvrije\nonvrijheid\nonvrijwillig\nonvrijwilligheid\nonvrouwelijk\nonvrouwelijkheid\nonvruchtbaar\nonvruchtbaarheid\nonwaar\nonwaarachtig\nonwaarachtigheid\nonwaard\nonwaarde\nonwaardeerbaar\nonwaardig\nonwaardigheid\nonwaarheid\nonwaarneembaar\nonwaarschijnlijk\nonwaarschijnlijkheid\nonwankelbaar\nonwankelbaarheid\nonweder\nonweer\nonweerachtig\nonweerlegbaar\nonweerlegbaarheid\nonweersachtig\nonweersbeestje\nonweersbui\nonweerslucht\nonweersprekelijk\nonweersproken\nonweerstaanbaar\nonweerstaanbaarheid\nonweerswolk\nonwel\nonwelgevallig\nonwelkom\nonwellevend\nonwellevendheid\nonwelluidend\nonwelluidendheid\nonwelriekend\nonwelvoeglijk\nonwelvoeglijkheid\nonwelwillend\nonwelwillendheid\nonwennig\nonwennigheid\nonwenselijk\nonwenselijkheid\nonwerelds\nonweren\nonwerkbaar\nonwerkbaarheid\nonwerkelijk\nonwerkzaam\nonwetend\nonwetendheid\nonwetens\nonwetenschappelijk\nonwetenschappelijkheid\nonwetmatig\nonwettelijk\nonwettelijkheid\nonwettig\nonwettigheid\nonwezenlijk\nonwijs\nonwijsheid\nonwil\nonwillekeurig\nonwillens\nonwillig\nonwilligheid\nonwis\nonwraakbaar\nonwrikbaar\nonwrikbaarheid\nonyx\nonyxen\nonyxmarmer\nonzacht\nonzakelijk\nonzalig\nonze\nonzedelijk\nonzedelijkheid\nonzedig\nonzedigheid\nonzeewaardig\nonzegbaar\nonzeglijk\nonzeker\nonzekerheid\nonzekerheidsfactor\nonzekerheidsgevoel\nonzekerheidsmarge\nonzelfstandig\nonzelfstandigheid\nonzelfzuchtig\nonzelfzuchtigheid\nonzelieveheersbeestje\nonzelievevrouwebedstro\nonzen\nonzenthalve\nonzentwil\nonzentwille\nonzer\nonzerzijds\nonzes\nonzes inziens\nonzichtbaar\nonzichtbaarheid\nonzienlijk\nonzijdig\nonzijdigheid\nonzin\nonzindelijk\nonzindelijkheid\nonzinnelijk\nonzinnig\nonzinnigheid\nonzinverhaal\nonzorgvuldig\nonzorgvuldigheid\nonzuiver\nonzuiverheid\nooft\nooftboom\nooftbouw\nooftkelder\noog\noog-handcoördinatie\noogaandoening\noogafwijking\noogappel\noogarts\noogbad\noogbal\noogbol\noogcontact\noogdruppels\nooggetuige\nooggetuigenverklaring\nooggetuigenverslag\noogglas\nooghaar\noogheelkunde\noogheelkundig\noogheelkundige\nooghoek\noogholte\noogirritatie\noogje\noogkas\noogklep\noogkleur\noogkliniek\noogkwaal\nooglap\nooglapje\nooglens\noogletsel\nooglid\nooglijder\nooglijk\noogluikend\noogluiking\noogmeester\noogmerk\noogmeting\noogonderzoek\noogontsteking\noogoperatie\noogopslag\noogplaatje\noogprothese\noogpunt\noogrand\noogschaduw\noogschroef\noogspiegel\noogspier\noogst\noogstappel\noogstbericht\noogsten\noogster\noogstfeest\noogsthulp\noogstjaar\noogstlied\noogstmaand\noogstmachine\noogstperiode\noogstraming\noogstrelend\noogstrijp\noogstschade\noogstseizoen\noogsttijd\noogstverlof\noogstwoord\noogtand\noogverblindend\noogverblinding\noogvijs\noogvlies\noogvocht\noogvormig\noogvormige\noogwater\noogwenk\noogwimper\noogwit\noogzalf\noogzenuw\noogziekte\nooi\nooibos\nooievaar\nooievaarsbeen\nooievaarsbek\nooievaarsnest\nooievaartje\nooievaren\nooilam\nooit\nook\noom\noomschap\noomzegger\noomzegster\noor\noorarts\noorbaar\noorbel\noorbiecht\noorblazer\noorblazerij\noorclip\noord\noordeel\noordeelkunde\noordeelkundig\noordeelonthouding\noordeelsdag\noordeelsvermogen\noordeelsvorming\noordeelvelling\noordelaar\noordelen\noordop\noorgetuige\noorhanger\noorheelkunde\noorijzer\noorklep\noorknop\noorkonde\noorkondeboek\noorkussen\noorlam\noorlap\noorlel\noorlog\noorlog voeren\noorlogen\noorlogsacties\noorlogsbedrijf\noorlogsbegraafplaats\noorlogsbelasting\noorlogsbodem\noorlogsboek\noorlogsbuit\noorlogscontrabande\noorlogscorrespondent\noorlogsdaad\noorlogsdag\noorlogsdagboek\noorlogsdocumentaire\noorlogsdocumentatie\noorlogsdoeleinden\noorlogsdrama\noorlogsdreiging\noorlogseconomie\noorlogsellende\noorlogsepos\noorlogservaring\noorlogsfakkel\noorlogsfilm\noorlogsfotograaf\noorlogsfront\noorlogsgebied\noorlogsgeneratie\noorlogsgeschiedenis\noorlogsgetroffene\noorlogsgevaar\noorlogsgeweld\noorlogsgezind\noorlogsgezindheid\noorlogsgod\noorlogsgraf\noorlogsgruwelen\noorlogshaard\noorlogshandeling\noorlogshaven\noorlogsheld\noorlogsheldin\noorlogshitser\noorlogsindustrie\noorlogsinspanning\noorlogsinvalide\noorlogsjaar\noorlogsjournalistiek\noorlogskabinet\noorlogskans\noorlogskas\noorlogskerkhof\noorlogskind\noorlogskunst\noorlogslasten\noorlogsleed\noorlogsleider\noorlogsliteratuur\noorlogsmachine\noorlogsmateriaal\noorlogsmisdaad\noorlogsmisdadiger\noorlogsmisdadigster\noorlogsmisdrijf\noorlogsmoe\noorlogsmolest\noorlogsmonument\noorlogsmunitie\noorlogsmuseum\noorlogsnieuws\noorlogsomstandigheden\noorlogspad\noorlogspartij\noorlogspensioen\noorlogsperiode\noorlogsplannen\noorlogspolitiek\noorlogspremier\noorlogsprent\noorlogsprenten\noorlogspropaganda\noorlogspsychose\noorlogsramp\noorlogsrecht\noorlogsregio\noorlogsretoriek\noorlogsschaarste\noorlogsschade\noorlogsschatting\noorlogsschip\noorlogsschuld\noorlogssfeer\noorlogssituatie\noorlogsslachtoffer\noorlogsspel\noorlogsstemming\noorlogssterkte\noorlogsstrategie\noorlogstaal\noorlogsterrein\noorlogstijd\noorlogstoestand\noorlogstoneel\noorlogstrauma\noorlogstribunaal\noorlogstuig\noorlogsverklaring\noorlogsverleden\noorlogsverminkte\noorlogsverslaggever\noorlogsverslaggeving\noorlogsveteraan\noorlogsvlag\noorlogsvlieger\noorlogsvloot\noorlogsvluchteling\noorlogsvoering\noorlogsvrijwilliger\noorlogswapen\noorlogsweduwe\noorlogswee\noorlogswees\noorlogswet\noorlogswinst\noorlogswinter\noorlogszone\noorlogszucht\noorlogszuchtig\noorlogvoerend\noorlogvoerende\noorlogvoering\noormerk\noormerken\noorontsteking\noorpijn\noorprop\noorring\noorschelp\noorsieraad\noorsmeer\noorspecialist\noorspiegel\noorsprong\noorsprongsgebied\noorspronkelijk\noorspronkelijkheid\noorstrelend\noorsuizen\noorsuizing\noortelefoon\noorthermometer\noortje\noorveeg\noorverdovend\noorverscheurend\noorvijg\noorvlies\noorwarmer\noorwarmers\noorworm\noorwurm\noorzaak\noorzaakanalyse\noorzakelijk\noorzakelijkheid\noorziekte\noost\noost-west\noost-westbaan\noost-westrichting\noost-westverbinding\noostelijk\noosten\noostenwind\noosterburen\noosterbuur\noosteren\noostergrens\noosterkim\noosterkimme\noosterlengte\noosterling\noosters\noosters-orthodox\noosterzon\noostflank\noostfront\noostfrontstrijder\noostganger\noostgrens\noosthoek\noostkant\noostkanton\noostkust\noostmoesson\noostnoordoost\noostnoordoosten\noostoever\noostpassaat\noostpunt\noosttangent\noostvleugel\noostwaarts\noostzij\noostzijde\noostzuidoost\noostzuidoosten\nootje\nootjes\nootmoed\nootmoedig\nootmoedigheid\nop\nop ad-hocbasis\nop de bonnefooi\nop ooghoogte\nop uitleenbasis\nop zichzelf\nop-en-neer\nop-en-top\nopa\nopaak\nopaal\nopaalglas\nopaalsteen\nopaciteit\nopalen\nopart\nopbaggeren\nopbakken\nopbaren\nopbellen\nopbeller\nopbergen\nopberging\nopbergkast\nopbergmap\nopbergplaats\nopbergruimte\nopbergsysteem\nopbeuren\nopbeurend\nopbeuring\nopbiechten\nopbieden\nopbieding\nopbinden\nopblaasbaar\nopblaasbad\nopblaasboot\nopblaaspop\nopblazen\nopblijven\nopblinken\nopbloei\nopbloeien\nopbod\nopboeien\nopboenen\nopboksen\nopbollen\nopbomen\nopboren\nopborrelen\nopborstelen\nopbouw\nopbouwen\nopbouwfase\nopbouworgaan\nopbouwperiode\nopbouwsysteem\nopbouwtechniek\nopbouwwerk\nopbouwwerker\nopbouwwerkster\nopbraak\nopbraden\nopbranden\nopbrassen\nopbreken\nopbrengen\nopbrengst\nopbrengsthuis\nopbrengstprijs\nopbrengstverlies\nopbruisen\nopcenten\nopcentiemen\nopcommanderen\nopdagen\nopdat\nopdeciemen\nopdekken\nopdelen\nopdeling\nopdelven\nopdelving\nopdienen\nopdiepen\nopdikkend\nopdirken\nopdissen\nopdoeken\nopdoemen\nopdoeming\nopdoen\nopdoffen\nopdoffer\nopdokken\nopdonder\nopdonderen\nopdooi\nopdraaien\nopdracht\nopdrachtaanwijzing\nopdrachtbehandeling\nopdrachtenbeleid\nopdrachtenlijst\nopdrachtfilm\nopdrachtgeefster\nopdrachtgever\nopdrachtgeverschap\nopdrachthouder\nopdrachtig\nopdrachtlijst\nopdrachtnemer\nopdrachtonderzoek\nopdrachtpagina\nopdrachtverklaring\nopdrachtwerk\nopdragen\nopdraven\nopdreggen\nopdreunen\nopdrijven\nopdrijving\nopdringen\nopdringerig\nopdringerigheid\nopdrinken\nopdrogen\nopdroging\nopdruk\nopdrukken\nopduikelen\nopduiken\nopduvel\nopduvelen\nopduwen\nopdwarrelen\nopdweilen\nopeen\nopeendringen\nopeengeklemd\nopeengepakt\nopeengepropt\nopeenhopen\nopeenhoping\nopeens\nopeenstapelen\nopeenstapeling\nopeenvolgen\nopeenvolgend\nopeenvolging\nopeisbaar\nopeisbaarheid\nopeisen\nopeising\nopen\nopen source\nopenbaar\nopenbaar maken\nopenbaarheid\nopenbaarheidsbeginsel\nopenbaarmaking\nopenbaarvervoerbedrijf\nopenbaarvervoerkaart\nopenbaarvervoermaatschappij\nopenbaarvervoerskaart\nopenbaarvervoertarief\nopenbaren\nopenbaring\nopenbaringsleer\nopenbarsten\nopenblijven\nopenbloeien\nopenbreken\nopenbreking\nopenbuigen\nopendeurbeleid\nopendeurdag\nopendeurpolitiek\nopendoen\nopendraaien\nopenduwen\nopeneinderegeling\nopeneindregeling\nopenen\nopener\nopengaan\nopengehakt\nopengewerkt\nopengooien\nopenhaardhout\nopenhakken\nopenhalen\nopenhangen\nopenhartchirurgie\nopenhartig\nopenhartigheid\nopenhartoperatie\nopenheid\nopenhouden\nopening\nopeningsact\nopeningsartikel\nopeningsavond\nopeningsbalans\nopeningsbod\nopeningsceremonie\nopeningsceremoniën\nopeningsconcert\nopeningsdag\nopeningsdatum\nopeningsdoelpunt\nopeningsduel\nopeningsetappe\nopeningsfase\nopeningsfeest\nopeningsfilm\nopeningsfolder\nopeningsgala\nopeningsgedicht\nopeningsgoal\nopeningshandeling\nopeningshoofdstuk\nopeningsklassieker\nopeningskoers\nopeningslied\nopeningsmanifestatie\nopeningsmatch\nopeningsnieuwtje\nopeningsnummer\nopeningspagina\nopeningspartij\nopeningsplechtigheid\nopeningsprogramma\nopeningsrace\nopeningsrede\nopeningsrit\nopeningsronde\nopeningsscène\nopeningssessie\nopeningsspeech\nopeningstheorie\nopeningstijd\nopeningstijden\nopeningstoespraak\nopeningstreffer\nopeningsuren\nopeningsuur\nopeningsverhaal\nopeningsverhouding\nopeningsvoorbereiding\nopeningsvoorstelling\nopeningsvraag\nopeningswedstrijd\nopeningsweekeinde\nopeningsweekend\nopeningswoord\nopeningszet\nopeningszin\nopeningszitting\nopenklappen\nopenknippen\nopenkrabben\nopenlaten\nopenleggen\nopenlegging\nopenliggen\nopenlijk\nopenluchtbad\nopenluchtconcert\nopenluchtdienst\nopenluchtexpositie\nopenluchtfestival\nopenluchtmis\nopenluchtmissen\nopenluchtmuseum\nopenluchtpodium\nopenluchtrecreatie\nopenluchtschool\nopenluchtspel\nopenluchttentoonstelling\nopenluchttheater\nopenluchtviering\nopenluchtvoorstelling\nopenluchtzwembad\nopenmaken\nopenpeuteren\nopenprikken\nopenrijten\nopenritsen\nopenrukken\nopenscheuren\nopenschuiven\nopenslaan\nopenslaand\nopensnijden\nopensourcelicentie\nopensourceprogramma\nopensourceproject\nopensourcesoftware\nopenspalken\nopensperren\nopensplijten\nopenspringen\nopenstaan\nopenstaand\nopenstellen\nopenstelling\nopentrappen\nopentrekken\nopenvallen\nopenvliegen\nopenvouwen\nopenwerken\nopenwerpen\nopenzetten\nopenzwaaien\nopera\nopera-aria\nopera-enscenering\noperabel\noperacomponist\noperadebuut\noperadirigent\noperadiva\noperafestival\noperagebouw\noperagezelschap\noperahuis\noperaklas\noperalibretto\noperamuziek\noperand\noperanden\noperaorkest\noperaproductie\noperaregie\noperaregisseur\noperarepertoire\noperaseizoen\noperaster\noperatesk\noperateur\noperatheater\noperatie\noperatieafdeling\noperatiebasis\noperatiecapaciteit\noperatief\noperatiegebied\noperatiekamer\noperatiemicroscoop\noperatiepatiënt\noperatieplan\noperatietafel\noperatietechniek\noperatieterrein\noperatieveld\noperatiezaal\noperatiezuster\noperationaliseren\noperationalisering\noperationaliteit\noperationeel\noperator\noperavoorstelling\noperawereld\noperazaal\noperazanger\noperazangeres\nopereren\noperette\noperetteachtig\noperettefiguur\noperettegezelschap\noperettezanger\noperment\nopeten\nopflakkeren\nopflakkering\nopfleuren\nopfleuring\nopflikken\nopflikkeren\nopflikkering\nopflitsen\nopfokken\nopfrisbeurt\nopfriscursus\nopfrissen\nopfrisser\nopfrissertje\nopfrissing\nopfrisverlof\nopgaaf\nopgaan\nopgaand\nopgang\nopgave\nopgaven\nopgavenformulier\nopgavenverplichting\nopgebaard\nopgeblazen\nopgeblazenheid\nopgebouwd\nopgebrand\nopgebruiken\nopgedirkt\nopgedroogd\nopgefokt\nopgehoogd\nopgehoopt\nopgeilen\nopgejaagd\nopgeklaard\nopgeklopt\nopgeknapt\nopgekropt\nopgelaten\nopgeld\nopgeleefd\nopgelegd\nopgeleid\nopgeleide\nopgelicht\nopgelopen\nopgelucht\nopgemaakt\nopgemerkt\nopgepakt\nopgeplaatst\nopgeprikt\nopgepropt\nopgeruimd\nopgeruimdheid\nopgescheept\nopgeschikt\nopgeschoren\nopgeschoten\nopgeschreven\nopgeschroefd\nopgesloten\nopgeslotenheid\nopgesmukt\nopgestanen\nopgestopt\nopgestoven\nopgetogen\nopgetogenheid\nopgetut\nopgeven\nopgever\nopgevoed\nopgewarmd\nopgewassen\nopgewekt\nopgewektheid\nopgewonden\nopgewondenheid\nopgezet\nopgezwollen\nopgieten\nopgloeien\nopgooi\nopgooien\nopgraven\nopgraving\nopgroeien\nophaal\nophaalbrug\nophaaldienst\nophaalgordijn\nophaalnet\nophaalsysteem\nophakken\nophakker\nophakkerij\nophalen\nophaler\nophaling\nophanden\nophangbeugel\nophangen\nophanging\nophangpunt\nopharken\nophebben\nophef\nopheffen\nopheffing\nopheffingsnorm\nopheffingsuitverkoop\nophefmakend\nophelderen\nopheldering\nophelderingspercentage\nophelpen\nophemelarij\nophemelen\nophemeling\nophijsen\nophitsen\nophitser\nophitsing\nophoepelen\nophoesten\nophogen\nophoging\nophollen\nophoogzand\nophopen\nophoping\nophoren\nophouden\nophouder\nophouding\nophout\nopiaat\nopinie\nopinieartikel\nopinieblad\nopiniecijfers\nopinieleider\nopiniemaker\nopinieonderzoek\nopiniepagina\nopiniepeiler\nopiniepeiling\nopiniestuk\nopinievorming\nopinieweekblad\nopiniëren\nopiniërend\nopium\nopiumhandel\nopiumkit\nopiumpijp\nopiumproductie\nopiumregie\nopiumschuiver\nopiumteelt\nopjagen\nopjutten\nopkalefateren\nopkalfateren\nopkamer\nopkammen\nopkammerij\nopkappen\nopkijken\nopkikkeren\nopkikkertje\nopklapbaar\nopklapbed\nopklappen\nopklaren\nopklaring\nopklauteren\nopkleden\nopklimmen\nopklimming\nopklinken\nopkloppen\nopknapbeurt\nopknapkosten\nopknappen\nopknapper\nopknippen\nopknopen\nopknoping\nopkoken\nopkomeling\nopkomen\nopkomer\nopkomst\nopkomstcijfers\nopkomstdrempel\nopkomstpercentage\nopkomstplicht\nopkomsttijd\nopkooien\nopkoop\nopkoopregeling\nopkoopster\nopkopen\nopkoper\nopkoping\nopkoteren\nopkrabbelen\nopkramen\nopkrassen\nopkrikken\nopkroppen\nopkropping\nopkruien\nopkruipen\nopkrullen\nopkuisen\nopkweken\noplaadapparaat\noplaadapparatuur\noplaadbaar\noplaadtijd\noplaag\noplaaien\noplaaiing\nopladen\noplading\noplage\noplagecijfer\noplagedaling\noplagestijging\noplanger\noplappen\noplapping\noplassen\noplaten\noplawaai\noplazer\noplazeren\nopleg\nopleggen\noplegger\noplegging\noplegsel\noplegslot\noplegsloten\noplegwerk\nopleiden\nopleider\nopleiding\nopleidingsactiviteit\nopleidingsbedrijf\nopleidingsbehoefte\nopleidingsbeleid\nopleidingscapaciteit\nopleidingscentrum\nopleidingscoördinator\nopleidingsduur\nopleidingseis\nopleidingsfilosofie\nopleidingsfonds\nopleidingsgraad\nopleidingsinspanning\nopleidingsinstantie\nopleidingsinstituut\nopleidingskamp\nopleidingskosten\nopleidingsniveau\nopleidingsovereenkomst\nopleidingspeil\nopleidingsplaats\nopleidingsplan\nopleidingsplannen\nopleidingsploeg\nopleidingsprogramma\nopleidingsproject\nopleidingsregeling\nopleidingsreglement\nopleidingsresultaat\nopleidingsrichting\nopleidingsschip\nopleidingsschool\nopleidingssysteem\nopleidingstijd\nopleidingstraject\noplepelen\nopletten\noplettend\noplettendheid\nopleuken\nopleven\nopleverdatum\nopleveren\noplevering\nopleveringsdatum\nopleveringstermijn\nopleving\noplezen\noplichten\noplichter\noplichterij\noplichting\noplichtingspraktijk\noplichtingszaak\noplichtster\noplikken\noploeven\noploop\noplopen\noplopend\noplopendheid\noplosbaar\noplosbaarheid\noploskoffie\noplosmethode\noplosmiddel\noplosproces\noplossen\noplosser\noplossing\noplossingsgericht\noplossingsmethode\noplossingspercentage\noplossingsproces\noplossingsrichting\noplossingsstrategie\noplossingsstrategieën\noploswarmte\nopluchten\nopluchting\nopluiken\nopluisteren\nopluistering\nopmaak\nopmaakbestand\nopmaakcode\nopmaakdefinitie\nopmaakfunctie\nopmaakoptie\nopmaakprofiel\nopmaakprofielen\nopmaakredacteur\nopmaakster\nopmaaktype\nopmaat\nopmaken\nopmaker\nopmaking\nopmalen\nopmaling\nopmarcheren\nopmars\nopmarsgebied\nopmerkelijk\nopmerken\nopmerkenswaard\nopmerkenswaardig\nopmerker\nopmerking\nopmerkingsgave\nopmerkzaam\nopmerkzaamheid\nopmeten\nopmeting\nopmetselen\nopmieteren\nopmonteren\nopmontering\nopnaaien\nopname\nopnameadvies\nopnameapparatuur\nopnamebegeleiding\nopnamecapaciteit\nopnamecriterium\nopnamedag\nopnamedagen\nopnameduur\nopnamefunctie\nopnamefuncties\nopnamekwaliteit\nopnameleider\nopnamelicht\nopnamen\nopnameperiode\nopnamereden\nopnamesituatie\nopnamestop\nopnamestudio\nopnametechniek\nopneembaar\nopneemsnelheid\nopnemen\nopnemer\nopneming\nopnemingsvaartuig\nopnemingsvermogen\nopnieuw\nopnoemen\nopnoeming\nopoe\nopoefiets\nopofferen\nopoffering\nopofferingsgezind\nopofferingsgezindheid\nopofferingsslag\noponthoud\nopossum\noppakken\noppas\noppascentrale\noppasmoeder\noppassen\noppassend\noppassendheid\noppasser\noppasseres\noppassing\noppasster\noppensioenstelling\noppeppen\noppepper\nopper\nopperarm\nopperbaas\nopperbest\nopperbestuur\nopperbevel\nopperbevelhebber\nopperbevelhebberschap\nopperbewind\noppercommando\nopperen\noppergaai\noppergezag\noppergod\nopperheer\nopperheerschappij\nopperhoofd\nopperhuid\nopperkamerheer\nopperkleed\nopperkoopman\noppermacht\noppermachtig\nopperman\nopperofficier\nopperpriester\nopperrabbijn\nopperrechter\noppersen\nopperst\nopperstalmeester\nopperste\nopperstuurman\noppertje\noppertoezicht\noppervlak\noppervlakkig\noppervlakkigheid\noppervlakte\noppervlakte-eenheid\noppervlakte-infiltratie\noppervlaktebehandeling\noppervlaktedruk\noppervlaktelaag\noppervlaktemaat\noppervlaktespanning\noppervlaktestructuur\noppervlaktetemperatuur\noppervlaktewater\noppervogel\nopperwachtmeester\nopperwal\nopperwezen\nopperzaal\noppeuzelen\noppiepen\noppikken\nopplakken\nopploegen\nopplooien\noppoetsen\noppoken\noppompen\nopponens\nopponent\nopponente\nopponeren\nopporren\nopportunisme\nopportunist\nopportunistisch\nopportuniteit\nopportuniteitsbeginsel\nopportuun\nopposant\noppositie\noppositiebank\noppositiebeweging\noppositieblad\noppositiecoalitie\noppositiefractie\noppositiegroep\noppositiejaren\noppositiekandidaat\noppositiekrant\noppositiekringen\noppositiekuur\noppositieleider\noppositieleidster\noppositielid\noppositiepartij\noppositierol\noppositioneel\noppotten\noppressie\nopprikken\nopproppen\noppuntstelling\nopraapsel\noprakelen\nopraken\noprapen\noprecht\noprechtheid\nopredderen\noprekken\noprekking\noprennen\noprichten\noprichter\noprichter-directeur\noprichtersaandeel\noprichtersbewijs\noprichtersfamilie\noprichting\noprichtingsakte\noprichtingsbijeenkomst\noprichtingsdatum\noprichtingsjaar\noprichtingskapitaal\noprichtingskosten\noprichtingsstatuut\noprichtingsverdrag\noprichtingsvergadering\noprichtster\noprijden\noprijlaan\noprijten\noprijzen\nopril\noprispen\noprisping\noprit\noproeien\noproep\noproepbaar\noproepcentrale\noproepcontract\noproepcontractant\noproepen\noproeper\noproeping\noproepingsbrief\noproepingskaart\noproepkaart\noproepkracht\noproepnummer\noproepsysteem\noproer\noproeren\noproerig\noproerigheid\noproerkraaier\noproerkraaister\noproerling\noproermaker\noproerpolitie\noproken\noprolbaar\noprollen\noprotpremie\noprotten\nopruien\nopruiend\nopruier\nopruiing\nopruimactie\nopruimen\nopruimer\nopruiming\nopruimingsdienst\nopruimingskosten\nopruimingsprijs\nopruimingsuitverkoop\nopruimplicht\nopruimploeg\nopruimwerk\nopruimwerkzaamheden\noprukken\nopruststelling\nopruwen\nopschalen\nopschaling\nopscharrelen\nopschenken\nopschepen\nopscheplepel\nopscheppen\nopschepper\nopschepperig\nopschepperigheid\nopschepperij\nopschepster\nopscheren\nopscherpen\nopschieten\nopschik\nopschikken\nopschilderen\nopschoeien\nopschommelen\nopschonen\nopschoning\nopschoppen\nopschorsen\nopschorten\nopschorting\nopschrift\nopschrijfboekje\nopschrijven\nopschrikken\nopschroeven\nopschrokken\nopschudden\nopschudding\nopschuiven\nopschuiving\nopschuren\nopschutten\nopsieren\nopsiering\nopsjorren\nopsjouwen\nopslaan\nopslag\nopslagbedrijf\nopslagbeurt\nopslagcapaciteit\nopslagdepot\nopslaggeld\nopslaggelden\nopslagkosten\nopslagloods\nopslagmedium\nopslagmogelijkheid\nopslagpercentage\nopslagplaats\nopslagrente\nopslagruimte\nopslagsysteem\nopslagtank\nopslagterrein\nopslagvat\nopslepen\nopsleuren\nopslibbing\nopslingeren\nopslingering\nopslobberen\nopslokken\nopslokking\nopslorpen\nopslorping\nopslorpingsvermogen\nopsluiten\nopsluiting\nopslurpen\nopslurping\nopsmeren\nopsmuk\nopsmukken\nopsnijden\nopsnijder\nopsnijderij\nopsnoepen\nopsnorren\nopsnuiven\nopsodemieter\nopsodemieteren\nopsolferen\nopsommen\nopsommerig\nopsomming\nopsommingsteken\nopsouperen\nopspannen\nopsparen\nopspatten\nopspelden\nopspelen\nopsperren\nopspeuren\nopsplitsen\nopsplitsing\nopspoelen\nopspoorbaar\nopsporen\nopsporing\nopsporingsactie\nopsporingsambtenaar\nopsporingsapparaat\nopsporingsapparatuur\nopsporingsbelang\nopsporingsbeleid\nopsporingsbericht\nopsporingsbevel\nopsporingsbevoegdheid\nopsporingsbrigade\nopsporingscapaciteit\nopsporingsdienst\nopsporingseenheid\nopsporingsinstantie\nopsporingsmethode\nopsporingsmiddel\nopsporingsmiddelen\nopsporingsonderzoek\nopsporingsprogramma\nopsporingsregister\nopsporingssysteem\nopsporingsteam\nopsporingsvergunning\nopsporingsverzoek\nopsporingswerk\nopspraak\nopspringen\nopspuiten\nopspuwen\nopstaan\nopstaand\nopstaander\nopstal\nopstallen\nopstalverzekering\nopstand\nopstandeling\nopstandelingenbeweging\nopstandelingenleider\nopstandig\nopstandigheid\nopstanding\nopstandingsgeloof\nopstap\nopstapcursus\nopstapelen\nopstapeling\nopstappen\nopstapper\nopstapplaats\nopstappunt\nopstartconfiguratie\nopstartdiskette\nopstarten\nopstartfase\nopstartkosten\nopstartmenu\nopstartprobleem\nopstarttijd\nopsteekladder\nopsteken\nopsteker\nopstel\nopstellen\nopsteller\nopstelling\nopstelwedstrijd\nopstijgen\nopstijging\nopstijven\nopstoken\nopstoker\nopstokerij\nopstomen\nopstootje\nopstootjes\nopstoppen\nopstopper\nopstopping\nopstormen\nopstoten\nopstoven\nopstralen\nopstrijken\nopstrijkmes\nopstromen\nopstropen\nopstuiten\nopstuiven\nopsturen\nopstuwen\nopstuwing\nopt-in\nopt-out\noptakelen\noptakeling\noptant\noptassen\noptater\noptatie\noptatief\noptekenen\noptekening\noptelfout\noptellen\nopteller\noptelling\noptelmachine\noptelsom\nopteltabel\nopteren\noptica\nopticien\nopticus\noptie\noptiebeurs\noptiebewijs\noptiecontract\noptiehandel\noptiehandelaar\noptiehaven\noptiehouder\noptiejaar\noptiek\noptiekoers\noptiemarkt\noptiepakket\noptieperiode\noptieplan\noptiepremie\noptieprijs\noptieprogramma\noptieprogramma's\noptierecht\noptieregeling\noptiespecialist\noptietransactie\noptillen\noptima\noptimaal\noptimalisatie\noptimaliseren\noptimalisering\noptimaliseringsstrategie\noptimisme\noptimist\noptimistisch\noptimmeren\noptimum\noptioneel\noptisch\noptocht\noptomen\noptometrist\noptooien\noptornen\noptrede\noptreden\noptree\noptreedschema\noptrekje\noptrekken\noptrekking\noptrommelen\noptuigen\noptuiging\noptutten\nopulent\nopulentie\nopus\nopvallen\nopvallend\nopvallenderwijs\nopvang\nopvangadres\nopvangbeleid\nopvangcapaciteit\nopvangcentrum\nopvangen\nopvangfunctie\nopvanggezin\nopvanghuis\nopvangkamp\nopvangkosten\nopvangland\nopvangmodel\nopvangmoeder\nopvangmogelijkheid\nopvangnet\nopvangorganisatie\nopvangouder\nopvangplaats\nopvangplek\nopvangprogramma\nopvangproject\nopvangregeling\nopvangruimte\nopvangstation\nopvangsysteem\nopvangtehuis\nopvangvoorziening\nopvangvoorzieningen\nopvaren\nopvarende\nopvatten\nopvatting\nopvegen\nopveren\nopverven\nopvijzelen\nopvijzeling\nopvijzen\nopvissen\nopvlammen\nopvliegen\nopvliegend\nopvliegendheid\nopvlieger\nopvliegerig\nopvlieging\nopvoedbaar\nopvoedcursus\nopvoedcursussen\nopvoeden\nopvoeder\nopvoeding\nopvoedingsgesticht\nopvoedingsideaal\nopvoedingskosten\nopvoedingsmethode\nopvoedingsmoeilijkheid\nopvoedingsondersteuning\nopvoedingspatroon\nopvoedingsprobleem\nopvoedingssituatie\nopvoedingsstelsel\nopvoedingsstijl\nopvoedingssysteem\nopvoedingstaak\nopvoedkunde\nopvoedkundig\nopvoedkundige\nopvoedster\nopvoeren\nopvoerhoogte\nopvoering\nopvolgen\nopvolger\nopvolgersstaat\nopvolgerstaat\nopvolging\nopvolgingskwestie\nopvolgingsprobleem\nopvolgingsrecht\nopvolgingsstrijd\nopvolgster\nopvorderbaar\nopvorderen\nopvordering\nopvouwbaar\nopvouwen\nopvraagbaar\nopvraagbaarheid\nopvraagmogelijkheid\nopvragen\nopvreten\nopvreter\nopvriezen\nopvrijen\nopvrolijken\nopvullen\nopvulling\nopvulsel\nopvulteken\nopwaaien\nopwaarderen\nopwaardering\nopwaarts\nopwachten\nopwachting\nopwandelen\nopwarmen\nopwarmer\nopwarmertje\nopwarming\nopwarmingscapaciteit\nopwarmronde\nopwassen\nopwegen\nopwekken\nopwekkend\nopwekking\nopwekkingsbron\nopwellen\nopwelling\nopwerken\nopwerking\nopwerkingsfabriek\nopwerkingsproces\nopwerpen\nopwerping\nopwikkelspoel\nopwinden\nopwindend\nopwinding\nopwindspoel\nopwippen\nopwrijven\nopzadelen\nopzagen\nopzakken\nopzeg\nopzegbaar\nopzeggen\nopzegger\nopzegging\nopzeggingstermijn\nopzeggingsvergoeding\nopzegtermijn\nopzenden\nopzending\nopzet\nopzetheling\nopzetje\nopzetkarton\nopzetstuk\nopzettelijk\nopzettelijkheid\nopzetten\nopzetter\nopzetting\nopzicht\nopzichte\nopzichter\nopzichteres\nopzichtig\nopzichtigheid\nopzichzelfstaand\nopzien\nopzienbarend\nopziener\nopzienersambt\nopzienster\nopzij\nopzijleggen\nopzijschuiven\nopzijzetten\nopzitten\nopzoeken\nopzoeking\nopzoekingswerk\nopzoeksnelheid\nopzouten\nopzuigen\nopzuiging\nopzuipen\nopzuiveren\nopzwaaiend\nopzwellen\nopzwelling\nopzwepen\nor\noraal\norakel\norakelachtig\norakelen\norakelspreuk\norakeltaal\noraliteit\norang-oetan\norang-oetang\norangeade\norangisme\norangist\norangisten\noranje\noranje-blanje-bleu\noranjeappel\noranjebitter\noranjebloesem\noranjeboom\noranjegeel\noranjehemd\noranjekleur\noranjekleurig\noranjelint\noranjemarmelade\noranjerie\noranjerood\noranjeschil\noranjetruidrager\norante\noratie\noratio pro domo\norator\noratorio\noratorisch\noratorium\norchidee\norchis\norde\nordebewaarder\nordebroeder\nordedienst\nordehandhaver\nordehandhaving\nordeketen\nordekleed\nordekruis\nordelievend\nordelijk\nordelijkheid\nordelint\nordeloos\nordeloosheid\nordenen\nordening\nordeningsbeleid\nordeningsprincipe\nordentelijk\nordentelijkheid\nordepolitie\nordeprobleem\nordeproblemen\norder\norderbedrag\norderbehandeling\norderbeheer\norderbevestiging\norderbiljet\norderboek\norderbrief\norderbriefje\norderclausule\norderdatum\norderformulier\nordergedreven\nordergrootte\norderkopie\nordernummer\norderontvangst\norderpapier\norderportefeuille\norderpositie\norderprogramma\norderregel\norderstatus\norderstroom\norderverlies\norderverwerking\nordeteken\nordetroepen\nordeverstoorder\nordeverstoring\nordevoorstel\nordi\nordinaal\nordinaat\nordinair\nordinantie\nordinariaat\nordinarius\nordinatie\nordineren\nordner\nordonnans\nordonnansofficier\nordonnantie\nordonneren\nordovicium\noreade\noregano\noremus\norenmaffia\noreren\norgaan\norgaandonatie\norgaandonor\norgaanhandel\norgaantransplantatie\norgaanuitname\norgaanverwijdering\norgaanvlees\norgandie\norganel\norganiek\norganigram\norganisatie\norganisatieadvies\norganisatieadviesbureau\norganisatieadviseur\norganisatieafhankelijk\norganisatiebeleid\norganisatiebureau\norganisatiecomité\norganisatiecommissie\norganisatieconcept\norganisatiecultuur\norganisatiedeskundige\norganisatiedoel\norganisatiegebied\norganisatiegraad\norganisatiegrens\norganisatiehandboek\norganisatieklimaat\norganisatiekosten\norganisatiekunde\norganisatieleer\norganisatiemethode\norganisatiemodel\norganisatienaam\norganisatieniveau\norganisatieonderzoek\norganisatieontwikkeling\norganisatiepraktijk\norganisatieprincipe\norganisatieproject\norganisatiepsychologe\norganisatiepsychologie\norganisatiepsycholoog\norganisatierapport\norganisatieschema\norganisatiestrategie\norganisatiestructuur\norganisatietaken\norganisatietalent\norganisatietraject\norganisatieverandering\norganisatievermogen\norganisatievorm\norganisatiewerk\norganisatiewijziging\norganisator\norganisatorisch\norganisatrice\norganisch\norganiseren\norganisme\norganist\norganizer\norganogram\norganza\norgasme\norgastisch\norgeade\norgel\norgelboek\norgelbouw\norgelbouwer\norgelconcert\norgelconcours\norgeldraaier\norgelen\norgelist\norgelkast\norgelmaker\norgelman\norgelmuziek\norgelpijp\norgelpunt\norgelregister\norgelspel\norgelspeler\norgeltje\norgeltoon\norgeltrapper\norgiastisch\norgie\norgieën\norgiën\noriflamme\norigami\noriginaliteit\norigine\norigineel\noriëntaal\noriëntaals\noriëntalisme\noriëntalist\noriëntalistiek\noriëntalistisch\noriëntatie\noriëntatiebezoek\noriëntatiecursus\noriëntatiefase\noriëntatiejaar\noriëntatieloop\noriëntatienota\noriëntatiepunt\noriëntatiereis\noriëntatievermogen\noriënteren\noriëntering\noriënteringsvermogen\norka\norkaan\norkaankracht\norkaanseizoen\norkest\norkestbak\norkestbegeleiding\norkestbezetting\norkestenbestel\norkestklank\norkestleider\norkestlid\norkestmeester\norkestmuziek\norkestpartij\norkestpartituur\norkestraal\norkestratie\norkestrepertoire\norkestreren\norkestrion\norkeststuk\norkestwerk\nornaat\nornament\nornamenteel\nornamenteren\nornamentiek\nornement\nornithologie\nornithologisch\nornitholoog\norografie\norografisch\northodidactiek\northodontie\northodontist\northodox\northodox-christelijk\northodox-gereformeerd\northodox-islamitisch\northodox-joods\northodox-protestants\northodox-religieus\northodoxe\northodoxie\northogonaal\northografie\northografisch\northomoleculair\northopedagoge\northopedagogie\northopedagogiek\northopedagogisch\northopedagoog\northopedie\northopedisch\northopedist\northopeed\northotheek\nortolaan\norwelliaans\noryx\nos\noscillatie\noscillator\noscilleren\noscillograaf\noscillogram\noscilloscoop\nosmose\nosmotisch\nossenbloed\nossengal\nossengebraad\nossenhaas\nossenhuid\nossenkar\nossenkop\nossenkoper\nossenkopstuur\nossenleder\nossenleer\nossenmarkt\nossenoog\nossenrib\nossenstaart\nossenstaartsoep\nossenstal\nossentong\nossenvlees\nossenwagen\nossenworst\nossi\nossuarium\nostensief\nostensorium\nostentatie\nostentatief\nosteologie\nosteopathie\nosteoporose\nostracisme\notium\notoscoop\notter\notterbont\notteren\nottomane\noubaas\noublie\noubliëtte\noubollig\noubolligheid\noud\noud-Grieks\noud-Indiëganger\noud-Kamerlid\noud-aanvoerder\noud-adviseur\noud-advocaat\noud-ambassadeur\noud-ambtenaar\noud-atleet\noud-bankier\noud-bestuurder\noud-bestuurslid\noud-bestuursvoorzitter\noud-bevelhebber\noud-bewindsman\noud-bisschop\noud-bokser\noud-bondscoach\noud-bondskanselier\noud-burgemeester\noud-chef\noud-coach\noud-collega\noud-commandant\noud-commissaris\noud-communist\noud-communistisch\noud-correspondent\noud-deken\noud-dictator\noud-diplomaat\noud-directeur\noud-docent\noud-doelman\noud-eigenaar\noud-eurocommissaris\noud-fractieleider\noud-fractievoorzitter\noud-gedeputeerde\noud-generaal\noud-gevangene\noud-gouverneur\noud-griffier\noud-hoofd\noud-hoofdcommissaris\noud-hoofdredacteur\noud-hoogleraar\noud-hulpbisschop\noud-informateur\noud-inspecteur\noud-international\noud-journalist\noud-kampioen\noud-kampioene\noud-kanselier\noud-kapitein\noud-kolonel\noud-koloniën\noud-korpschef\noud-leerling\noud-leerlinge\noud-legerleider\noud-leider\noud-leraar\noud-lerares\noud-liberaal\noud-lid\noud-marineman\noud-marinier\noud-medewerker\noud-mijnwerker\noud-militair\noud-minister\noud-minister-president\noud-monopolist\noud-nazi\noud-notaris\noud-officier\noud-ondernemer\noud-parlementariër\noud-partijleider\noud-partijvoorzitter\noud-ploeggenoot\noud-politica\noud-politicus\noud-politieman\noud-predikant\noud-premier\noud-president\noud-prof\noud-rebel\noud-rechter\noud-rector\noud-redacteur\noud-regeringsleider\noud-renner\noud-schaatser\noud-scheidsrechter\noud-secretaris\noud-secretaris-generaal\noud-senator\noud-soldaat\noud-speler\noud-staatshoofd\noud-staatssecretaris\noud-strijder\noud-student\noud-studiegenoot\noud-topambtenaar\noud-topman\noud-trainer\noud-vakbondsbestuurder\noud-vakbondsleider\noud-vakbondsman\noud-verzetsman\noud-verzetsstrijder\noud-vicepremier\noud-vicepresident\noud-voetballer\noud-voorlichter\noud-voorzitter\noud-wereldkampioen\noud-wereldkampioene\noud-werkgever\noud-werknemer\noud-wethouder\noud-wielrenner\noud-zeeman\noud-zwemster\noudachtig\noudbakken\noudblauw\noudbouw\noudchristelijk\noude\noudedagspensioen\noudedagsreserve\noudedagsvoorziening\noudedagvoorziening\noudeheer\noudejaar\noudejaarsavond\noudejaarsconference\noudejaarsconferencier\noudejaarsdag\noudejaarsnacht\noudejaarsvereniging\noudelui\noudemannenhuis\noudemannenkwaal\nouder\nouder gewoonte\nouder-kindrelatie\nouderavond\nouderbeleid\nouderbijdrage\noudercomité\noudercommissie\nouderdag\nouderdom\nouderdomsanalyse\nouderdomsdeken\nouderdomsdiabetes\nouderdomsgebrek\nouderdomskwaal\nouderdomspensioen\nouderdomsrente\nouderdomssuikerziekte\nouderdomsuitkering\nouderdomsverschijnsel\nouderdomsverzekering\nouderdomsvoorziening\nouderdomswet\nouderdomsziekte\noudere\nouderejaars\nouderejaarsstudent\nouderen\nouderenadviseur\nouderenaftrek\nouderenbeleid\nouderenbond\nouderencentrum\nouderencommissie\nouderenhuisvesting\nouderenkoor\nouderenkorting\nouderenmishandeling\nouderenorganisatie\nouderenpsychiatrie\nouderenraad\nouderenregeling\nouderenwerk\nouderenzorg\noudergesprek\nouderhart\nouderhuis\nouderliefde\nouderlijk\nouderling\nouderlingschap\nouderloos\nouderorganisatie\nouderpaar\nouderparticipatie\nouderplicht\nouderraad\nouders\nouderschap\nouderschapsovereenkomst\nouderschapsregeling\nouderschapsverlof\nouderslaapkamer\noudervereniging\nouderverhoor\noudervreugde\nouderwets\nouderwetsheid\noudewijvenpraat\noudgast\noudgediende\noudgereformeerd\noudgereformeerde\noudheid\noudheidkamer\noudheidkenner\noudheidkunde\noudheidkundig\noudheidkundige\noudheidskamer\noudjaar\noudjaarsdag\noudje\noudkatholiek\noudkatholieken\noudkomer\noudmodisch\noudoom\noudpapiercontainer\noudpapiercontainers\noudpapierhandel\noudpapierprijs\noudroest\noudroze\noudste\noudtante\noudtestamenticus\noudtestamentisch\noudtijds\noudvader\noudvaderlands\nounce\nout\noutcast\noutdoor\noutdoorwedstrijd\noutfit\noutillage\noutilleren\noutlaw\noutlook\noutplacement\noutplacementbureau\noutplacementregeling\noutput\noutputfinanciering\noutsider\noutsiderkunst\noutsourcen\noutsourcing\nouverture\nouvreuse\nouwe\nouwe-jongens-krentenbrood\nouwehoer\nouwehoeren\nouwel\nouwelijk\nouzo\nov\nov-jaarkaart\nov-kaart\nov-studentenkaart\novaal\novaaltje\novaalvormig\novarium\novariumkanker\novatie\novationeel\noven\novenkrabber\novenpaal\novenplaat\novenschaal\novenschotel\novenvast\novenvers\novenvisje\novenwant\nover\nover the counter\noveraanbod\noveraccentuering\noveractief\noveracting\noveral\noverall\noverbeet\noverbegrazing\noverbehandeling\noverbeharing\noverbejaging\noverbekend\noverbeladen\noverbelading\noverbelast\noverbelasten\noverbelasting\noverbeleefd\noverbelicht\noverbelichten\noverbelichting\noverbemesting\noverbemeten\noverbeschaafd\noverbeschaving\noverbesteding\noverbetaald\noverbevissing\noverbevolking\noverbevolkt\noverbezet\noverbezetting\noverbezorgd\noverbezorgdheid\noverbieden\noverblazen\noverblijfkracht\noverblijflokaal\noverblijfregeling\noverblijfruimte\noverblijfsel\noverblijven\noverblijvend\noverblijver\noverbloezend\noverbluffen\noverbluft\noverbodig\noverbodigheid\noverboeken\noverboeking\noverboord\noverboord gooien\noverbrengen\noverbrenger\noverbrenging\noverbrengingsverhouding\noverbrieven\noverbriever\noverbrugbaar\noverbruggen\noverbrugging\noverbruggingsfinanciering\noverbruggingshulp\noverbruggingsklas\noverbruggingskrediet\noverbruggingsperiode\noverbruggingstoelage\noverbruggingsuitkering\noverburen\noverbuur\noverbuurman\noverbuurvrouw\novercapaciteit\novercompensatie\novercompenseren\novercompleet\noverconcentratie\noverconsumptie\noverdaad\noverdacht\noverdadig\noverdadigheid\noverdag\noverdek\noverdekken\noverdekking\noverdekt\noverdenken\noverdenking\noverdoen\noverdonderen\noverdone\noverdosering\noverdosis\noverdraagbaar\noverdraagbaarheid\noverdracht\noverdrachtelijk\noverdrachtsbelasting\noverdrachtsbrief\noverdrachtsfunctie\noverdrachtsinkomen\noverdrachtsinstrument\noverdrachtskosten\noverdrachtstijd\noverdrachtsuitgave\noverdrachtsuitgaven\noverdrachttaks\noverdragen\noverdrager\noverdreven\noverdrevenheid\noverdrijven\noverdrijving\noverdrive\noverdruk\noverdrukken\noverduidelijk\noverdwars\novereen\novereenbrengen\novereenkomen\novereenkomst\novereenkomstenrecht\novereenkomstig\novereenkomstigheid\novereenkomstsluitend\novereenstemmen\novereenstemmend\novereenstemming\novereind\noverenthousiast\novererfbaar\novererfelijk\novererven\novererving\novereten\noverexpansie\noverexploitatie\noverexposure\noverflow\novergaaf\novergaan\novergaar\novergang\novergangsbepaling\novergangsbestuur\novergangsbewind\novergangscijfer\novergangscontract\novergangsexamen\novergangsfase\novergangsfiguur\novergangsgebied\novergangsjaar\novergangskabinet\novergangsklasse\novergangsklimaat\novergangsleeftijd\novergangsmaatregel\novergangsparlement\novergangsperiode\novergangsproces\novergangspunt\novergangsraad\novergangsrapport\novergangsrapportcijfer\novergangsrecht\novergangsregel\novergangsregeling\novergangsregering\novergangsregime\novergangssituatie\novergangsstadium\novergangsstrategie\novergangstermijn\novergangstijd\novergangstoestand\novergangsverschijnsel\novergangsvorm\novergangszin\novergangszone\novergankelijk\novergave\novergeblevene\novergeconcentreerd\novergecultiveerd\novergedienstig\novergefinancierd\novergeganen\novergegeven\novergehaald\novergeleverd\novergelukkig\novergeorganiseerd\novergereguleerd\novergeven\novergeving\novergevoelig\novergevoeligheid\novergevoeligheidsreactie\novergewicht\novergieten\novergooien\novergooier\novergordijn\novergroeien\novergronden\novergroot\novergrootmoeder\novergrootouder\novergrootouders\novergrootvader\noverhaal\noverhaast\noverhaasten\noverhaastig\noverhaasting\noverhalen\noverhaling\noverhand\noverhandigen\noverhandiging\noverhands\noverhangen\noverhead\noverheadkosten\noverheadprojector\noverheadsheet\noverhebben\noverheen\noverheerlijk\noverheersen\noverheerser\noverheersing\noverheid\noverheidsaandacht\noverheidsaandeel\noverheidsaankoop\noverheidsadministratie\noverheidsagentschap\noverheidsambt\noverheidsapparaat\noverheidsarchief\noverheidsbaan\noverheidsbank\noverheidsbedrijf\noverheidsbegroting\noverheidsbelang\noverheidsbeleid\noverheidsbemoeienis\noverheidsbemoeiing\noverheidsbescherming\noverheidsbesluit\noverheidsbesteding\noverheidsbestellingen\noverheidsbestuur\noverheidsbezit\noverheidsbijdrage\noverheidsbond\noverheidsbudget\noverheidsbureau\noverheidsbureaucratie\noverheidscampagne\noverheidscircuit\noverheidsclub\noverheidscommissaris\noverheidscommissie\noverheidscommunicatie\noverheidsconsumptie\noverheidscontrole\noverheidscorrespondentie\noverheidsdienaar\noverheidsdienst\noverheidsdocument\noverheidsdotatie\noverheidsdwang\noverheidseigendom\noverheidsfinanciering\noverheidsfinanciën\noverheidsfonds\noverheidsfunctie\noverheidsfunctionaris\noverheidsgarantie\noverheidsgebouw\noverheidsgeld\noverheidsgelden\noverheidsgezag\noverheidshandelen\noverheidshandeling\noverheidshanden\noverheidsholding\noverheidshuishouding\noverheidshulp\noverheidsinformatie\noverheidsingrijpen\noverheidsinitiatief\noverheidsinkomsten\noverheidsinmenging\noverheidsinstantie\noverheidsinstelling\noverheidsinstituut\noverheidsinterventie\noverheidsinvestering\noverheidsinvloed\noverheidskas\noverheidskosten\noverheidslichaam\noverheidsmaatregel\noverheidsmacht\noverheidsmanagement\noverheidsmarkt\noverheidsmiddelen\noverheidsmonopolie\noverheidsniveau\noverheidsobligatie\noverheidsonderneming\noverheidsonderzoek\noverheidsopdracht\noverheidsoptreden\noverheidsorgaan\noverheidsorganisatie\noverheidspapier\noverheidspensioen\noverheidspersoneel\noverheidspersoon\noverheidsprogramma\noverheidsproject\noverheidspropaganda\noverheidspublicatie\noverheidsrapport\noverheidsregel\noverheidsregeling\noverheidsregulering\noverheidsrol\noverheidsschuld\noverheidsschuldquote\noverheidssector\noverheidssfeer\noverheidssteun\noverheidssturing\noverheidssubsidie\noverheidstaak\noverheidstekort\noverheidstoestemming\noverheidstoezicht\noverheidsuitgave\noverheidsuitgaven\noverheidsvoorlichter\noverheidsvoorlichting\noverheidswege\noverheidswerknemer\noverheidszaak\noverheidszorg\noverhellen\noverhelling\noverhemd\noverhemdblouse\noverhevelen\noverheveling\noverhevelingstoeslag\noverhoeks\noverhoop\noverhoophalen\noverhoopliggen\noverhoopsteken\noverhoren\noverhoring\noverhouden\noverhouder\noverhuiven\noverig\noverige\noverigens\noverijld\noverijlen\noverijling\noverijverig\noveringetekend\noverinvestering\noverjagen\noverjarig\noverjarige\noverjas\noverkant\noverkappen\noverkapping\noverkijken\noverkill\noverklassen\noverkleden\noverkleding\noverkleed\noverkleren\noverkluizen\noverkluizing\noverkoepelen\noverkoepeling\noverkoken\noverkomelijk\noverkomen\noverkomst\noverkomstduur\noverkopen\noverkrijgen\noverlaadhaven\noverlaadstation\noverlaat\noverladen\noverladenheid\noverlading\noverlang\noverlangs\noverlap\noverlappen\noverlapping\noverlast\noverlastbestrijding\noverlastbron\noverlasten\noverlasttaks\noverlaten\noverlating\noverleden\noverledene\noverleder\noverleed\noverleer\noverleg\noverlegcircuit\noverlegcomité\noverlegcultuur\noverlegeconomie\noverlegforum\noverleggen\noverlegging\noverleggroep\noverlegmodel\noverlegniveau\noverlegorgaan\noverlegpartner\noverlegplatform\noverlegprocedure\noverlegronde\noverlegsituatie\noverlegstelsel\noverlegstructuur\noverlegtafel\noverlegvergadering\noverlegvorm\noverlegvormen\noverlengte\noverleven\noverlevende\noverlever\noverleveren\noverlevering\noverleving\noverlevingsdrang\noverlevingsinstinct\noverlevingskans\noverlevingskracht\noverlevingskunst\noverlevingspak\noverlevingspakket\noverlevingspensioen\noverlevingsplan\noverlevingsstrategie\noverlevingsstrijd\noverlevingstocht\noverlezen\noverlezing\noverlieden\noverligdag\noverliggeld\noverliggen\noverlijden\noverlijdensadvertentie\noverlijdensakte\noverlijdensbericht\noverlijdensdatum\noverlijdensdekking\noverlijdensrisico\noverlijdensrisicoverzekering\noverlijdensuitkering\noverlijdensverklaring\noverlijdensverzekering\noverliquiditeit\noverlommerd\noverlommeren\noverloop\noverloopbeveiliging\noverloopgebied\noverloopsysteem\noverlopen\noverloper\noverloping\noverluid\novermaat\novermaats\novermacht\novermachtig\novermachtsituatie\novermachtssituatie\novermaken\novermaking\noverman\novermand\novermannen\novermatig\novermeesteren\novermeestering\novermits\novermoed\novermoedig\novermoedigheid\novermorgen\novermouw\novernaads\novernaaien\novernacht\novernachten\novernachting\novernachtingsmogelijkheid\novernachtingsplaats\novernachtingsplek\novername\novernamebedrag\novernamebeleid\novernamebod\novernamedoelwit\novernamegerucht\novernamegevecht\novernamegolf\novernamekandidaat\novernamekoorts\novernamekosten\novernamemarkt\novernamenieuws\novernameonderhandelingen\novernamepad\novernamepartner\novernameperiode\novernameplan\novernamepoging\novernamepolitiek\novernamepremie\novernameprijs\novernameproces\novernameprooi\novernameslag\novernamesom\novernamespeculatie\novernamestrategie\novernamestrijd\novernamevoorstel\novernamewetgeving\novernemen\novernemer\noverneming\novernemingsbod\novernieuw\noveroud\noveroudgrootmoeder\noveroudgrootvader\noverpad\noverpakken\noverpeinzen\noverpeinzing\noverpennen\noverplaatsen\noverplaatsing\noverplaatsingsbeleid\noverplanten\noverplanting\noverpompen\noverpopulatie\noverpoten\noverpraten\noverprikkeld\noverprikkelen\noverprikkeling\noverproductie\noverreactie\noverreageren\noverreden\noverreding\noverredingskracht\noverredingskunst\noverregulering\noverreiken\noverrijden\noverrijp\noverrijpheid\noverroepen\noverrompelen\noverrompeling\noverrompelingstactiek\noverrulen\noverschaduwen\noverschakelen\noverschakeling\noverschat\noverschatten\noverschatting\noverschenken\noverschep\noverschepen\noverscheping\noverscheppen\noverscherend\noverschieten\noverschilderbaar\noverschilderen\noverschildering\noverschitteren\noverschoen\noverscholing\noverschoon\noverschot\noverschotprobleem\noverschouwen\noverschreeuwen\noverschrijden\noverschrijding\noverschrijdingskans\noverschrijdingsregeling\noverschrijven\noverschrijver\noverschrijving\noverschrijvingsformulier\noverschrijvingskaart\noverschrijvingskosten\noverschuiven\noverschuiving\noverseinen\noversekst\noversensitief\noversimplificatie\noversimplificering\noversized\noverslaan\noverslag\noverslagbedrijf\noverslagcapaciteit\noverslagcentrum\noverslagen\noverslaghaven\noverslagplaats\noverslagpunt\noverslagstation\noverslagterminal\noverslagterrein\noverslapen\noversluiten\noversnijden\noverspannen\noverspannenheid\noverspanning\noversparen\noverspecialisatie\noverspeelster\noverspel\noverspelen\noverspeler\noverspelig\noverspoelen\noverspraak\noverspringen\noversprong\noverspuiten\noverstaan\noverstaand\noverstag\noverstap\noverstapje\noverstapkaartje\noverstapmogelijkheid\noverstappen\noverstapper\noverstapplaats\noverstappunt\noverstaptijd\noverstatement\noverste\noversteek\noversteekplaats\noversteeksel\noverstek\noversteken\noversteker\noverstelpen\noverstelpend\noverstelping\noverstemmen\noverstemming\noversterfte\noverstijgen\noverstimulatie\noverstort\noverstorten\noverstralen\noverstromen\noverstroming\noverstromingsgebied\noverstromingsgevaar\noverstromingskans\noverstromingsramp\noverstromingsrisico\noverstromingsslachtoffers\noverstroombeveiliging\noverstroomrelais\noversturen\noverstuur\noverstuurd\novertal\novertallig\novertalsituatie\novertappen\novertekenen\novertekening\novertellen\novertijdbehandeling\novertijdpil\novertijdsbehandeling\novertijgen\novertikken\novertocht\novertollig\novertolligheid\novertoom\novertraind\novertreden\novertreder\novertreding\novertreffen\novertreffend\novertrek\novertrekken\novertreksel\novertreksnelheid\novertroeven\novertrokken\novertuigd\novertuigen\novertuigend\novertuiging\novertuigingskracht\novertypen\noveruur\novervaart\noverval\novervalcommando\novervallen\novervallene\novervallenen\novervaller\novervaltactiek\novervaltechniek\novervalwagen\novervaren\noververfijnd\noververfijning\noververhit\noververhitten\noververhitting\noververmoeid\noververmoeidheid\noververtegenwoordigd\noververtegenwoordiging\noververtellen\noververven\noververzadigd\noververzadiging\noververzekering\novervet\novervleugelen\novervleugeling\novervliegen\novervlieger\novervliegrechten\novervloed\novervloedig\novervloedigheid\novervloeien\novervloeier\novervoeden\novervoeding\novervoerd\novervoeren\novervol\novervracht\novervragen\novervraging\novervriendelijk\noverwaaien\noverwaard\noverwaarde\noverwaarderen\noverwaardering\noverwal\noverweg\noverwegbeveiliging\noverwegboom\noverwegen\noverwegend\noverweging\noverwegwachter\noverweldigen\noverweldigend\noverweldiger\noverweldiging\noverwelfd\noverwelfsel\noverwelven\noverwelving\noverwerk\noverwerken\noverwerking\noverwerkkosten\noverwerkt\noverwerktheid\noverwerktoeslag\noverwerkuur\noverwerkvergoeding\noverwerkvergunning\noverwicht\noverwinnaar\noverwinnares\noverwinnen\noverwinning\noverwinningsfeest\noverwinningspremie\noverwinningsroes\noverwinningsteken\noverwinst\noverwinteraar\noverwinteren\noverwintering\noverwinteringsgebied\noverwippen\noverwoekeren\noverwoekering\noverwogene\noverwonneling\noverwonnene\noverzee\noverzees\noverzeilen\noverzenden\noverzending\noverzet\noverzetboot\noverzetdienst\noverzetster\noverzetten\noverzetter\noverzetting\noverzetveer\noverzicht\noverzichtelijk\noverzichtelijkheid\noverzichtsartikel\noverzichtsfoto\noverzichtskaart\noverzichtslijst\noverzichtsniveau\noverzichtspagina\noverzichtstekening\noverzichtstekeningen\noverzichtstentoonstelling\noverzichtswerk\noverzien\noverzienbaar\noverziene\noverzienen\noverzij\noverzijde\noverzijds\noverzitten\noverzwemmen\novulatie\novuleren\noweeër\nowngoal\noxaalzuur\noxer\noxidase\noxidatie\noxidatief\noxide\noxideren\noxymoron\noxytocine\nozb-aanslag\nozb-belasting\nozb-opbrengst\nozb-tarief\nozon\nozonaantastend\nozonafbrekend\nozonconcentratie\nozongat\nozongehalte\nozonisatie\nozoniseren\nozonlaag\nozonlucht\nozonsfeer\nozonwater\noöliet\np\np.\np.a.\np.m.\np.o.\np.w.\npH\npH-waarde\npa\npaadje\npaaien\npaaigebied\npaaiplaats\npaaitijd\npaaivis\npaal\npaalbalk\npaaldansen\npaaldanseres\npaaldorp\npaalfundering\npaalgat\npaalgording\npaalstand\npaalsteek\npaaltje\npaalvast\npaalwerk\npaalwoning\npaalworm\npaalzitten\npaan\npaander\npaap\npaapje\npaaps\npaapsgezind\npaar\npaard\npaard-en-wagen\npaarden\npaardenarts\npaardenbeenhouwer\npaardenbek\npaardenbeslag\npaardenbiefstuk\npaardenbloem\npaardenboon\npaardenborstel\npaardenbrood\npaardendek\npaardendeken\npaardendief\npaardendistel\npaardendokter\npaardendressuur\npaardenfokker\npaardenfokkerij\npaardengebit\npaardengetrappel\npaardengetuig\npaardenhaar\npaardenhals\npaardenhandel\npaardenhandelaar\npaardenharen\npaardenhoef\npaardenhoofd\npaardenhorzel\npaardenhouderij\npaardenkastanje\npaardenkenner\npaardenknecht\npaardenkoers\npaardenkoets\npaardenkoorts\npaardenkop\npaardenkoper\npaardenkracht\npaardenleer\npaardenleren\npaardenleugen\npaardenliefhebber\npaardenmarkt\npaardenmest\npaardenmiddel\npaardenmolen\npaardenoog\npaardenpis\npaardenpoep\npaardenpolo\npaardenpoot\npaardenpost\npaardenprocessie\npaardenrace\npaardenras\npaardenrenbaan\npaardenrennen\npaardenrookvlees\npaardenslachter\npaardenslachterij\npaardenslager\npaardensmid\npaardenspel\npaardensport\npaardensportevenement\npaardensprong\npaardenstaart\npaardenstal\npaardenstamboek\npaardenstoeterij\npaardenteelt\npaardentram\npaardentuig\npaardentuiser\npaardenvijg\npaardenvlees\npaardenvlieg\npaardenvoet\npaardenvolk\npaardenwereld\npaardenwerk\npaardenziekte\npaardjerijden\npaardmens\npaardrift\npaardrijden\npaardrijder\npaardrijdster\npaardrijles\npaardspringen\npaargedrag\npaarlemoer\npaarlemoeren\npaarlemoervlinder\npaarlen\npaarplaats\npaarrelatie\npaarrijden\npaars\npaars-groen\npaars-wit\npaarsachtig\npaarsblauw\npaarsgewijs\npaarsgewijze\npaarsig\npaarsrood\npaart\npaartijd\npaartje\npaarvorming\npaas\npaasavond\npaasbest\npaasbestand\npaasbeurt\npaasbiecht\npaasbloem\npaasboodschap\npaasbrood\npaascommunie\npaasdag\npaasdatum\npaasdrukte\npaasei\npaasfeest\npaasgebruik\npaasgezang\npaashaas\npaaskaars\npaasklok\npaaslam\npaasmaal\npaasmaandag\npaasnacht\npaasos\npaasplicht\npaasprocessie\npaasreces\npaasspel\npaastijd\npaasvakantie\npaasviering\npaasvuur\npaaswake\npaasweek\npaasweekeinde\npaasweekend\npaaszaterdag\npaaszondag\npabo\npabostudent\npabostudenten\npacemaker\npacen\npacht\npachtakte\npachtbesluit\npachtboer\npachtboerderij\npachtbrief\npachtcontract\npachten\npachter\npachteres\npachtgebied\npachtgeld\npachtgrond\npachtheer\npachthoeve\npachthof\npachtovereenkomst\npachtprijs\npachtsom\npachtster\npachtsysteem\npachttermijn\npachttijd\npachtvrij\npachtwet\npachyderm\npacificatie\npacificatiedemocratie\npacificatiemodel\npacificator\npacificeren\npacifiek\npacifisme\npacifist\npacifistisch\npack\npact\npacteren\npad\npaddel\npaddelen\npadden\npaddenpoel\npaddenstoel\npaddenstoelenzoeker\npaddenstoeltjes\npaddenstoelwolk\npaddo\npaddock\npaddy\npaden\npadie\npadisjah\npadvinder\npadvinderachtig\npadvinderij\npadvindersbeweging\npadvindersgroet\npadvindershoed\npadvinderskamp\npadvindersuniform\npadvindster\npaella\npaf\npaffen\npafferig\npafferigheid\npaffig\npafpaal\npafzak\npag.\npagaai\npagaaien\npagadder\npaganisme\npaganist\npaganistisch\npage\npagekop\npager\npages\npagina\npagina-einde\npaginabreed\npaginabreedte\npaginaformaat\npaginagroot\npaginagrootte\npaginalang\npaginalengte\npaginanummer\npaginanummering\npaginascheiding\npaginatuur\npaginaverdeling\npaginaverwijzing\npagineren\npaginering\npagode\npaillet\npaillette\npaintball\npaintballen\npair\npais\npak\npakaan\npakbaar\npakbon\npakezel\npakhuis\npakhuisbedrijven\npakhuisknecht\npakhuismeester\npakijs\npakistaan\npakje\npakjesavond\npakjesbezorger\npakjesdienst\npakjesdrager\npakjesfeest\npakkage\npakkamer\npakkans\npakken\npakker\npakkerd\npakkerij\npakket\npakketbeschrijving\npakketboot\npakketgeschakeld\npakketkeuze\npakketpolis\npakketpost\npakketreis\npakketvaart\npakketvergelijking\npakketweger\npakketzegel\npakketzegels\npakkie-an\npakking\npakkingkraan\npakkingring\npakkist\npakknecht\npaklijst\npaklinnen\npakmand\npakmateriaal\npaknaald\npakpaard\npakpapier\npakprijs\npakschuit\npaksoi\npakster\npaktafel\npaktouw\npakwagen\npakweg\npakwerk\npakzadel\npakzolder\npal\npaladijn\npalaestra\npalankijn\npalataal\npalatum\npalaver\npalaveren\npaleis\npaleisachtig\npaleisarchitectuur\npaleiscomplex\npaleismuur\npaleispark\npaleisrevolutie\npaleistuin\npaleiswacht\npaleiszaal\npalen\npalenpest\npaleoantropologie\npaleoceen\npaleograaf\npaleografie\npaleolithicum\npaleolithisch\npaleologie\npaleontologie\npaleontologisch\npaleontoloog\npaleozoën\npaleozoïcum\npaleren\npalet\npaletmes\npaletot\npaletten\npalfium\npalfrenier\npalimpsest\npalindroom\npaling\npalingboer\npalingfuik\npalingkwekerij\npalingrokerij\npalingsound\npalingstand\npalingtrek\npalingtrekken\npalingvel\npalingworst\npalissade\npalissaderen\npalissadering\npalissander\npalissanderhout\npaljas\npalladium\npallen\npallet\npalletprijs\npalletsysteem\npalliatief\npallieter\npallium\npalm\npalmachtig\npalmares\npalmblad\npalmbomen\npalmboom\npalmboompje\npalmen\npalmenstrand\npalmentuin\npalmet\npalmhaag\npalmhart\npalmhout\npalmhouten\npalmolie\npalmpaas\npalmpit\npalmpittenolie\npalmprocessie\npalmslag\npalmstruik\npalmtak\npalmtakjes\npalmtop\npalmvrucht\npalmwijding\npalmwijn\npalpabel\npalpatie\npalperen\npalpiteren\npalrad\npalter\npaltrokmolen\npalts\npaltsgraaf\npaltsgraafschap\npalurk\npamflet\npamfletschrijver\npamflettisme\npamflettist\npamflettistisch\npampa\npampagras\npamper\npamperen\npan\npan-Afrikaans\npan-Amerikaans\npan-Arabisch\npan-Europees\npan-Turks\npanacee\npanache\npanacheren\npanafrikanisme\npanama\npanamahoed\npanamerikanisme\npanarabisme\npancake\npancetta\npanchromatisch\npancreas\npancreasklier\npand\npanda\npandan\npandanrijst\npandbelener\npandbeslag\npandbewijs\npandbrief\npandecten\npandeksel\npandemie\npandemonium\npanden\npander\npandgever\npandgeving\npandgoed\npandhof\npandhouder\npandhuis\npanding\npandit\npandjesbaas\npandjeshuis\npandjesjas\npandnemer\npandoer\npandoeren\npandoering\npandovereenkomst\npandrecht\npandverbeuren\npaneel\npaneelbediening\npaneeldeur\npaneelraam\npaneelradiator\npaneelranden\npaneelschilder\npaneermeel\npanegyriek\npanel\npaneldiscussie\npanellid\npanelrapport\npanen\npaneren\npanfluit\npang\npangermanisme\npanharing\npaniek\npaniekaanval\npaniekachtig\npaniekbestendigheid\npaniekerig\npaniekreactie\npaniekscenario\npanieksituatie\npanieksluiting\npaniektoestand\npaniekvoetbal\npaniekzaaier\npaniekzaaierij\npanikeren\npanisch\npanislamisme\npanklaar\npanlat\npanlikker\npanna\npanne\npannen\npannenbakker\npannenbakkerij\npannenbier\npannendak\npannendekker\npannendeksel\npannengreep\npannenkoek\npannenkoekenboerderij\npannenkoekenhuis\npannenkoekenrestaurant\npannenkoekmeel\npannenkoekmes\npannenkoekmix\npannenkoekmixen\npannenlap\npannenlikker\npannenrek\npannenspons\npannenvis\npanopticum\npanorama\npanoramakijker\npanoramisch\npansfluit\npanslavisme\npanspermie\npantalon\npanter\npantervel\npantheon\npantheïsme\npantheïst\npantheïsten\npantheïstisch\npantoffel\npantoffeldiertje\npantoffelheld\npantoffelparade\npantoffeltje\npantograaf\npantomime\npantomimisch\npantry\npantser\npantserafweergeschut\npantserauto\npantserbekleding\npantserdek\npantserdekschip\npantserdivisie\npantsereenheid\npantseren\npantsergevechtsvoertuig\npantserglas\npantsergranaat\npantserhemd\npantserinfanterie\npantserinfanteriebataljon\npantsering\npantserkoepel\npantserkruiser\npantserplaat\npantserschip\npantserstaal\npantservoertuig\npantserwagen\npanty\npantykous\npanvis\npap\npapa\npapadum\npapaja\npaparazzo\npapaver\npapaverbol\npapaverolie\npapaverteelt\npapaverzaad\npapborstel\npapbuik\npapegaai\npapegaaiduiker\npapegaaien\npapegaaienbek\npapegaaienziekte\npapendom\npapenkop\npapenvreter\npaper\npaperassen\npaperback\npaperbackeditie\npaperbackuitgave\npaperclip\npaperclips\npapeterie\npapfles\npapier\npapier-maché\npapieractie\npapierafval\npapierbak\npapierbedrijf\npapierberg\npapierbinder\npapierbrij\npapierconsumptie\npapierdoorvoer\npapieren\npapierenfase\npapierfabriek\npapierfabrikant\npapierformaat\npapiergeld\npapiergradatie\npapiergroothandel\npapiergrootte\npapierhandel\npapierindustrie\npapierinvoer\npapierklem\npapierknijper\npapierkwaliteit\npapierlengte\npapierlinnen\npapierloos\npapiermachine\npapiermaker\npapiermand\npapiermarkt\npapiermerk\npapiermolen\npapieromslag\npapierprijs\npapierproducent\npapierproductie\npapierpulp\npapierrol\npapierschaarste\npapiersector\npapierslag\npapierslib\npapiersnijder\npapiersnipper\npapiersoort\npapierstrook\npapierstroom\npapiertje\npapiertoevoer\npapiertouw\npapiertransport\npapierverbruik\npapierverlies\npapiervernietiger\npapierversnipperaar\npapierwaren\npapierwerk\npapierwinkel\npapierwol\npapil\npapillot\npapisme\npapist\npapje\npapkind\npaplam\npaplepel\npappa\npappen\npappenheimer\npapperig\npapperigheid\npappie\npappig\npappot\npaprika\npaprikapoeder\npaps\npapyrologie\npapyrologisch\npapyroloog\npapyrus\npapyrusplant\npapyrusrol\npapyrustekst\npapzak\npar\npara\npara-tbc\npara-universitair\nparaaf\nparaat\nparaatheid\nparaattas\nparabel\nparabellum\nparabolisch\nparabool\nparacetamol\nparachute\nparachuteren\nparachutespringen\nparachutespringer\nparachutesprong\nparachutetroepen\nparachutist\nparachuutje\nparaclub\nparacommando\nparacommercie\nparade\nparadebed\nparademars\nparadentose\nparadepaard\nparadepas\nparaderen\nparadetje\nparadigma\nparadigmatisch\nparadijs\nparadijsachtig\nparadijsappel\nparadijselijk\nparadijsgeschiedenis\nparadijsslang\nparadijsverhaal\nparadijsvogel\nparadox\nparadoxaal\nparadoxe\nparafencultuur\nparaferen\nparafering\nparafernalia\nparaffine\nparaffinekaars\nparaffinepapier\nparaffineren\nparafiscaal\nparafrase\nparafraseren\nparafrasering\nparafraseringen\nparaglider\nparagnosie\nparagnost\nparagnostisch\nparagraaf\nparagraafindeling\nparagraafkop\nparagraafnummer\nparagraafnummering\nparagraafteken\nparagraaftitel\nparagraferen\nparallactisch\nparallax\nparallel\nparallelbeweging\nparallelcirkel\nparallelgroepen\nparallelimport\nparallelklas\nparallellepipedum\nparallellie\nparallellijn\nparallellisatie\nparallellisme\nparallelliteit\nparallellogram\nparallelmarkt\nparallelplaats\nparallelschakeling\nparallelweg\nparalympisch\nparalyse\nparalyseren\nparalysie\nparalytisch\nparamagnetisch\nparamedicus\nparamedisch\nparament\nparameter\nparameterlijst\nparametermechanisme\nparameterschatting\nparameterwaarde\nparametrisch\nparamilitair\nparamnesie\nparanimf\nparanoia\nparanoot\nparanormaal\nparanoïcus\nparanoïde\nparaplu\nparapluantenne\nparaplubak\nparapluorganisatie\nparapluplant\nparaplustandaard\nparaplustander\nparapsychologie\nparapsychologisch\nparapsycholoog\nparascolair\nparasiet\nparasitair\nparasiteren\nparasitisch\nparasitisme\nparasitologie\nparasitologisch\nparasol\nparasoldekker\nparasport\nparastataal\nparastatale\nparataxis\nparathion\nparatroepen\nparatroeper\nparatyfus\nparcours\nparcoursbouwer\npardaf\npardessus\npardoen\npardoes\npardon\npardonneren\nparel\nparelbank\nparelcokes\nparelduiken\nparelduiker\nparelen\nparelgerst\nparelgort\nparelgrijs\nparelhoen\nparelketting\nparelkoffie\nparelkroon\nparelkwekerij\nparelmoer\nparelmoeren\nparelmoervlinder\nparelmossel\npareloester\nparelrand\nparelscherm\nparelsnoer\nparelvisser\nparelvisserij\nparelwit\nparelziekte\nparement\nparen\nparenclub\nparenthese\nparenthesis\npareren\nparet\nparfait\nparfum\nparfumachtig\nparfumeren\nparfumerie\nparfumeriezaak\nparfumeur\nparfumfles\nparfumindustrie\nparfumlijn\nparfummerk\npari\nparia\nparikoers\nparing\nparingsdaad\nparingsdans\nparingsritueel\nparitair\npariteit\npariteitsbit\npark\nparka\nparkaanleg\nparkachtig\nparkbank\nparkbezoeker\nparkbos\nparkeerapparatuur\nparkeerautomaat\nparkeerbaan\nparkeerbedrijf\nparkeerbeheer\nparkeerbelasting\nparkeerbeleid\nparkeerbeugel\nparkeerbiljet\nparkeerboete\nparkeerbon\nparkeercapaciteit\nparkeercontrole\nparkeercontroleur\nparkeerdak\nparkeerdek\nparkeerder\nparkeerdruk\nparkeeretage\nparkeerfonds\nparkeergarage\nparkeergedrag\nparkeergeld\nparkeergelegenheid\nparkeerhaven\nparkeerhoes\nparkeerkaart\nparkeerkelder\nparkeerklem\nparkeerkosten\nparkeerlaag\nparkeerlicht\nparkeermeter\nparkeernorm\nparkeernota\nparkeerontheffing\nparkeeroverlast\nparkeerovertreding\nparkeerplaats\nparkeerplan\nparkeerplek\nparkeerpolitie\nparkeerprobleem\nparkeerproblematiek\nparkeerregeling\nparkeerrem\nparkeerruimte\nparkeerschijf\nparkeersituatie\nparkeerstrook\nparkeerstudie\nparkeersysteem\nparkeertarief\nparkeertegel\nparkeerterrein\nparkeertijd\nparkeervak\nparkeerverbod\nparkeervergunning\nparkeervoorziening\nparkeerwacht\nparkeerwachter\nparkeerwekker\nparkeerzone\nparkeren\nparket\nparketmagistraat\nparketnummer\nparketpolitie\nparketsecretaris\nparketteren\nparketvloer\nparketwacht\nparketwachter\nparketwoordvoerder\nparketwrijver\nparkgebied\nparkiet\nparkiettulp\nparking\nparkinson\nparklandschap\nparkoers\nparktuin\nparkwachter\nparlando\nparlement\nparlementair\nparlementair-democratisch\nparlementaire-enquêtecommissie\nparlementarisme\nparlementariër\nparlementen\nparlementeren\nparlementscommissie\nparlementscommissies\nparlementsfractie\nparlementsgebouw\nparlementskandidaat\nparlementslid\nparlementsmeerderheid\nparlementsverkiezing\nparlementsverkiezingen\nparlementsvoorzitter\nparlementszetel\nparlementszitting\nparlesanten\nparlevink\nparlevinken\nparlevinker\nparlofoon\nparmaham\nparmant\nparmantig\nparmantigheid\nparmezaan\nparmezaankaas\nparnassia\nparochiaal\nparochiaan\nparochialisme\nparochie\nparochiebesturen\nparochiebestuur\nparochieblad\nparochiecentrum\nparochieel\nparochiegeestelijke\nparochiehuis\nparochiekerk\nparochiekoor\nparochieleider\nparochiepriester\nparochieraad\nparochieschool\nparochievergadering\nparochiezaal\nparodie\nparodistisch\nparodiëren\nparodontitis\nparodontium\nparodontologie\nparodontose\nparool\nparoxisme\npars\npars pro toto\nparsen\npart\nparten\nparterre\nparterrebouw\nparterreplaats\nparterretrap\nparterrewoning\nparthenogenese\nparthenogenesis\nparti-pris\nparticipant\nparticipatie\nparticipatiebedrijf\nparticipatiebewijs\nparticipatief\nparticipatiefonds\nparticipatiegraad\nparticipatiemaatschappij\nparticipatiemethode\nparticipatiemodel\nparticipatieonderwijs\nparticipatieplan\nparticipatiestelsel\nparticipation\nparticiperen\nparticipium\nparticratie\nparticularisme\nparticularist\nparticularistisch\nparticulariteit\nparticulier\nparticuliere\npartieel\npartij\npartij kiezen\npartijafdeling\npartijapparaat\npartijbasis\npartijbelang\npartijbeleid\npartijbestuur\npartijbestuursvergadering\npartijbijeenkomst\npartijblad\npartijbons\npartijbureau\npartijcongres\npartijdag\npartijdemocratie\npartijdig\npartijdigheid\npartijdiscipline\npartijdwang\npartijencoalitie\npartijenovereenkomst\npartijenpost\npartijenstelsel\npartijfinanciering\npartijfront\npartijfunctionaris\npartijganger\npartijgebonden\npartijgebouw\npartijgeest\npartijgeld\npartijgelederen\npartijgenoot\npartijgenote\npartijgeschiedenis\npartijhoofdkwartier\npartijideologie\npartijideoloog\npartijintern\npartijkaart\npartijkader\npartijkantoor\npartijkas\npartijkeuze\npartijkoers\npartijkrant\npartijleider\npartijleiderschap\npartijleiding\npartijleus\npartijleuze\npartijleven\npartijlid\npartijlidmaatschap\npartijlijn\npartijloos\npartijmachine\npartijman\npartijmodel\npartijnaam\npartijopbouw\npartijorgaan\npartijorganisatie\npartijpers\npartijpoliticus\npartijpolitiek\npartijprogram\npartijprogramma\npartijraad\npartijraadsbestuur\npartijraadslid\npartijraadsvergadering\npartijschap\npartijsecretariaat\npartijsecretaris\npartijstandpunt\npartijstelling\npartijstrijd\npartijstructuur\npartijstudie\npartijtje\npartijtop\npartijtrekken\npartijtrouw\npartijtwist\npartijverbod\npartijvergadering\npartijvernieuwing\npartijvlag\npartijvoorzitster\npartijvoorzitter\npartijvoorzitterschap\npartijvorm\npartijvorming\npartijwerk\npartijwezen\npartijzucht\npartikel\npartita\npartitie\npartituur\npartituurlezen\npartituurspel\npartizaan\npartizanenstrijd\npartje\npartner\npartnerbedrijf\npartnerbedrijven\npartnerinkomen\npartnerkeus\npartnerkeuze\npartnerland\npartnerorganisatie\npartnerpensioen\npartnerplan\npartnerregistratie\npartnerrelatie\npartnerruil\npartnerschap\npartnerschapsakkoord\npartnerschapsovereenkomst\npartnerschapsregistratie\npartnership\npartnerstad\npartnertoeslag\nparttime\nparttimebaan\nparttimejob\nparttimer\npartus\npartuur\nparty\npartycentrum\npartydrug\npartyservice\npartytent\nparure\nparuur\nparvenu\nparvenuachtig\npas\npas de deux\npas op de plaats\npasar\npasbout\npascontrole\npasfoto\npasganger\npasgeboren\npasgeborene\npasgehuwden\npasgeld\npasgeleden\npasgetrouwd\npasgetrouwde\npashokje\npashoogte\npashouder\npasja\npasje\npasjes\npasjesregeling\npasjessysteem\npasjeswet\npaskaart\npaskamer\npasklaar\npaskwil\npaslood\npasmodel\npasmunt\npaso doble\npaspen\npaspennen\npaspoort\npaspoortaffaire\npaspoortcontrole\npaspoortfraude\npaspoortnummer\npaspoortproject\npaspoortsysteem\npaspoortwet\npaspop\npasrand\npass\npassaat\npassaatgordel\npassaatwind\npassabel\npassage\npassagebiljet\npassagebureau\npassagegeld\npassagekantoor\npassages\npassagier\npassagiere\npassagieren\npassagiersaantal\npassagiersaccommodatie\npassagiersafhandeling\npassagiersboot\npassagiersbus\npassagiersdienst\npassagiersgroei\npassagiershut\npassagierslijst\npassagiersruimte\npassagiersschip\npassagiersstoel\npassagiersterminal\npassagierstoestel\npassagierstrap\npassagierstrein\npassagiersverkeer\npassagiersvervoer\npassagiersvliegtuig\npassagiersvlucht\npassant\npassantenhaven\npassantenhotel\npassantenhuis\npassantenonderzoek\npassantenverblijf\npasse\npasse-partout\npasseerbeweging\npasseerslag\npasseerverbod\npasselijk\npassement\npassementwerker\npassen\npassend\npasser\npasserdoos\npasserelle\npasseren\npassie\npassiebloem\npassief\npassiefzijde\npassieloos\npassiemoord\npassiemuziek\npassiepreek\npassiespel\npassietijd\npassieverhaal\npassievol\npassievrucht\npassieweek\npassim\npassing\npassioneel\npassionist\npassiva\npassiviteit\npassivum\npasspiegel\npasstroken\npassus\npassword\npassé\npasta\npastafabrikant\npastagerecht\npastasalade\npastasaus\npastei\npasteibakjes\npasteibakker\npasteibakkerij\npasteitje\npastel\npastelkleur\npastelkleurig\npastelschilder\npastelstift\npasteltekening\npasteltint\npasteurisatie\npasteuriseren\npastiche\npastille\npastinaak\npastis\npastoor\npastoorschap\npastoorshoed\npastoorsmeid\npastor\npastoraal\npastoraat\npastorale\npastoralia\npastores\npastorie\npastorietuin\npastorij\npastrami\npasverworven\npasvorm\npaswoord\npat\npatat\npatatbakker\npatates frites\npatatgeneratie\npatatje\npatatkraam\npatatsnijder\npatattent\npatch\npatchoeli\npatchwork\npateel\npateen\npatent\npatentaanvraag\npatentbloem\npatentbureau\npatenteerbaar\npatenteren\npatentering\npatentgeneesmiddel\npatenthouder\npatentplichtig\npatentrecht\npatentsluiting\npater\npater familias\npaternalisme\npaternalistisch\npaternoster\npaternosterbol\npaternosteren\npaternosterlift\npaternosterwerk\npatersbier\npaterskerk\npaterstuk\npatersvaatje\npatertje\npathefoon\npathetiek\npathetisch\npathisch\npathogeen\npathognostisch\npathologie\npathologisch\npathologisch-anatomisch\npatholoog\npatholoog-anatoom\npathos\npatience\npatience spelen\npatiencespel\npatina\npatineren\npatio\npatiobungalow\npatiowoning\npatisserie\npatissier\npatisson\npatiënt\npatiënte\npatiëntenbestand\npatiëntenbijsluiter\npatiëntendemonstratie\npatiëntendossier\npatiëntengroep\npatiënteninformatie\npatiëntenorganisatie\npatiëntenplatform\npatiëntenrecht\npatiëntenstop\npatiëntenstromen\npatiëntenstroom\npatiëntenvereniging\npatiëntenvoorlichting\npatiëntenwet\npatiëntenzorg\npatiëntgebonden\npatiëntgegevens\npatiëntie\npatiëntiewerk\npatiëntmateriaal\npatiëntrelatie\npatiëntsituatie\npatjakker\npatjepeeër\npatois\npatriarch\npatriarchaal\npatriarchaat\npatriciaat\npatricisch\npatriciër\npatriciërsfamilie\npatriciërshuis\npatriciërswoning\npatrijs\npatrijshaan\npatrijshen\npatrijshond\npatrijspoort\npatrilineair\npatrimoniaal\npatrimonie\npatrimonium\npatrimoniumvennootschap\npatriot\npatriottentijd\npatriottisch\npatriottisme\npatriottistisch\npatristiek\npatrologie\npatronaal\npatronaat\npatronage\npatronagesysteem\npatronen\npatroneren\npatrones\npatroniem\npatroniseren\npatroon\npatroonanalyse\npatroonband\npatroongordel\npatroonheilige\npatroonherkenning\npatroonhouder\npatroonhuls\npatroonriem\npatroonschap\npatroonsfeest\npatroontas\npatrouille\npatrouilleboot\npatrouilleren\npatrouilleschip\npatrouillevaartuig\npatrouillevliegtuig\npatrouillevlucht\npatrouillewagen\npats\npats-boem\npatsen\npatser\npatserig\npatsituatie\npatstelling\npaté\npauk\npauken\npaukenist\npaukenslag\npaulinisch\npaulinisme\npaumelle\npauper\npauperisme\npaus\npausbezoek\npausdom\npauselijk\npausen\npausgezind\npausgezinde\npauskeuze\npausmobiel\npausreis\npausschap\npauw\npauwblauw\npauwenoog\npauwenstaart\npauwenveer\npauwig\npauwin\npauwoog\npauwstaart\npauze\npauzeconcert\npauzefilm\npauzeknop\npauzenummer\npauzeren\npauzering\npauzeteken\npauzetoets\npavane\npaviljoen\npavlovreactie\npavoiseren\npay-per-view\npay-tv\npc\npc's\npc-afdeling\npc-divisie\npc-fabrikant\npc-gebruik\npc-gebruiker\npc-industrie\npc-kaart\npc-markt\npc-privéproject\npc-scherm\npc-verkoop\npc-verkoper\npcb\npdf-formaat\npeacekeeping\npeau de pêche\npeauter\npeccadille\npech\npechdienst\npechlamp\npechstrook\npechverhelping\npechvogel\npectine\npectoraal\npectorale\npecunia\npecuniair\npeda\npedaal\npedaalas\npedaalemmer\npedaalharp\npedaalridder\npedagoge\npedagogie\npedagogiek\npedagogisch\npedagogisch-didactisch\npedagoog\npedalo\npedant\npedanterie\npeddel\npeddelaar\npeddelen\npede\npedel\npederast\npederastie\npederastisch\npedestal\npedestallen\npedestals\npediater\npediatrie\npedicure\npedicuren\npedigree\npedis\npedo\npedofiel\npedofilie\npedofilienetwerk\npedofiliezaak\npedologie\npedologisch\npedoloog\npedometer\npedoseksualiteit\npedoseksueel\npedoseksuele\npee\npeekoffie\npeel\npeeling\npeen\npeengras\npeenhaar\npeentje\npeepshow\npeer\npeer-to-peernetwerk\npeergroep\npeergroup\npeertje\npeervormig\npees\npeesachtig\npeeskamer\npeesontsteking\npeesschede\npeesschedeontsteking\npeet\npeetdochter\npeetje\npeetmoeder\npeetoom\npeetschap\npeettante\npeetvader\npeetzoon\npeeën\npegel\npegelen\npeggen\npegulanten\npeignoir\npeigné\npeil\npeilantenne\npeilbaar\npeildatum\npeilen\npeiler\npeilglas\npeiling\npeiljaar\npeilkoker\npeillood\npeilloos\npeilopening\npeilraam\npeilschaal\npeilstok\npeilteken\npeilverlaging\npeilzender\npeinzen\npeis\npejoratief\npek\npekblende\npekdraad\npekel\npekelen\npekelharing\npekelschade\npekelspek\npekelvlees\npekelwagen\npekelwater\npekelzonde\npekinees\npekingeend\npekken\npekton\npektoorts\npel\npelagiaan\npelargonium\npelen\npelerine\npelgrim\npelgrimage\npelgrimeren\npelgrimshoed\npelgrimsoord\npelgrimsreis\npelgrimsstaf\npelgrimstocht\npelikaan\npellagra\npellen\npellengoed\npeller\npellerij\npellets\npelmolen\npelorie\npelorisch\npeloton\npelotonscommandant\npelotonsvuur\npels\npelsdier\npelsen\npelser\npelshandel\npelsjacht\npelsjager\npelsjas\npelskraag\npelsmantel\npelsmuts\npelsrob\npelster\npelswerk\npelterij\npeluw\npeluwsloop\npelzen\npelzig\npen\npenaal\npenaliseren\npenaliteit\npenalty\npenaltystip\npenant\npenantkastje\npenantspiegel\npenanttafel\npenarie\npenaten\npendag\npendant\npendel\npendelaar\npendelbeweging\npendelbus\npendeldienst\npendeldiplomatie\npendelen\npendeloque\npendeltrein\npendelverkeer\npendule\npene\npenetrant\npenetratie\npenetratiegraad\npenetreren\npengat\npenhouder\npenhoudergreep\npenibel\npenicilline\npenis\npeniskoker\npenisnijd\npenitent\npenitentiair\npenitentie\npennen\npennenbak\npennendoos\npennenhouder\npennenkoker\npennenlikker\npennenmes\npennenproef\npennenschacht\npennenstreek\npennenstrijd\npennentrek\npennenvrucht\npennenzak\npenner\npenning\npenningkabinet\npenningkruid\npenningkunde\npenningkunst\npenningmeester\npenningmeesteresse\npenningmeesterschap\npenningsnijder\npennoen\npenny\npenologie\npenopauze\npenoze\npens\npensee\npenseel\npenseelstreek\npenseeltrek\npenseelvoering\npenselen\npensenkermis\npenserij\npensioen\npensioenaanspraak\npensioenaanvraag\npensioenaanvrage\npensioenaanvulling\npensioenbedrag\npensioenbeleid\npensioenberekening\npensioenbijdrage\npensioenbreuk\npensioendatum\npensioendeskundige\npensioendossier\npensioenfonds\npensioengat\npensioengebied\npensioengeld\npensioengerechtigd\npensioengerechtigde\npensioengrondslag\npensioenhervorming\npensioeninkomen\npensioeninstelling\npensioenkapitaal\npensioenkas\npensioenkorting\npensioenkosten\npensioenland\npensioenlast\npensioenleeftijd\npensioenmaatschappij\npensioenmarkt\npensioenopbouw\npensioenpijler\npensioenplan\npensioenplicht\npensioenpot\npensioenpremie\npensioenprobleem\npensioenproblematiek\npensioenrecht\npensioenregeling\npensioenreglement\npensioenreparatie\npensioenreserve\npensioensaanvraag\npensioensaanvrage\npensioensbijdrage\npensioensector\npensioensgrondslag\npensioenskorting\npensioenspaarfonds\npensioensparen\npensioensregeling\npensioenstelsel\npensioensverzekering\npensioensysteem\npensioentekort\npensioentoezegging\npensioentrekkenden\npensioentrekker\npensioenuitkering\npensioenuitvoerder\npensioenverlies\npensioenvermogen\npensioenverweer\npensioenverzekeraar\npensioenverzekering\npensioenverzekeringsovereenkomst\npensioenvoorziening\npensioenwereld\npensioenwet\npensioenwetgeving\npensioenzorgen\npension\npensionaat\npensionado\npensionair\npensionaire\npensionaris\npensionboerderij\npensioneren\npensionering\npensiongast\npensionhouder\npensionhoudster\npensionkosten\npensionnetje\npensionprijs\npensiontehuis\npensjager\npenster\npensum\npentaan\npentagonaal\npentagram\npentameter\npentatlon\npentatonisch\npentaëder\npentekening\npenter\npenterhaak\npenthouse\npenultima\npenurie\npenvoerder\npenwortel\npep\npepdrankje\npeper\npeper-en-zoutkleur\npeper-en-zoutstel\npeperbes\npeperbol\npeperboom\npeperboompje\npeperbus\npeperduur\npeperen\npeperhuisje\npeperig\npeperkoek\npeperkoeken\npeperkorrel\npeperland\npepermolen\npepermunt\npepermuntje\npepermuntolie\npepernoot\npepernootje\npepernootjes\npeperoni\npepersaus\npeperspray\npeperstruik\npepertje\npepertuin\npepervaatje\npepervat\npepervreter\npeperwortel\npepmiddel\npeppel\npeppelen\npeppen\npepperspray\npeppil\npepsine\npeptalk\npeptide\npepton\nper\nper capita\nper se\nperceel\nperceelsgewijs\npercent\npercentage\npercentielscore\npercentsgewijs\npercentsgewijze\npercentteken\npercentueel\nperceptie\nperceptiekosten\nperceptievermogen\nperceptueel\nperchloorethyleen\npercipiëren\npercolator\npercoleren\npercussie\npercussie-instrument\npercussief\npercussiehamer\npercussiemuziek\npercussionist\npercuteren\npereat\nperelaar\nperemptoir\nperen\nperenbomen\nperenboom\nperenhout\nperenjaar\nperenmoes\nperensap\nperentaart\nperenvuur\nperequatie\nperestrojka\nperfect\nperfectie\nperfectief\nperfectioneren\nperfectionering\nperfectionisme\nperfectionist\nperfectionistisch\nperfectum\nperfide\nperfiditeit\nperforatie\nperforatielijn\nperforator\nperforeermachine\nperforeren\nperformance\nperformancekunstenaar\nperformant\nperformantie\nperformen\nperformer\npergola\npericuleus\nperifeer\nperiferie\nperiferisch\nperifrase\nperifrastisch\nperigeum\nperihelium\nperikel\nperikelen\nperikoop\nperimeter\nperinataal\nperineum\nperiode\nperiodeafsluiting\nperiodebedrag\nperiodebedragen\nperiodebouw\nperiodeduur\nperiodekampioen\nperiodekampioenschap\nperioden\nperioderegeling\nperiodes\nperiodetijd\nperiodetitel\nperiodetotaal\nperiodiciteit\nperiodiek\nperiodiseren\nperiodisering\nperipateticus\nperipatetisch\nperipetie\nperiscoop\nperiscoopdiepte\nperiscopisch\nperistaltiek\nperistaltisch\nperistyle\nperitonitis\nperk\nperkaline\nperkament\nperkamentachtig\nperkamenten\nperkamentpapier\nperkamentrol\nperken\nperkoen\nperkoenpaal\nperm\npermafrost\npermanent\npermanenten\npermanentie\npermeabel\npermeabiliteit\npermetrine\npermis\npermissie\npermissief\npermissiviteit\npermitteren\npermutatie\npernambukhout\npernicieus\nperonisme\nperonist\nperonistisch\nperoratie\nperoreren\nperoxide\nperpendiculair\nperpendiculariseren\nperpetueel\nperpetuum mobile\nperplex\nperplexiteit\nperron\nperronchef\nperronkaartje\nperronopzichter\nperronoverkapping\nperronwagen\npers\npersafdeling\npersagent\npersagentschap\npersattaché\npersbeleid\npersbericht\npersbijeenkomst\npersboycot\npersbreidel\npersbriefing\npersbrood\npersbuis\npersbureau\nperscampagne\nperscensuur\nperscentrum\nperschef\nperscombinatie\nperscommentaar\nperscommuniqué\npersconferentie\nperscongres\npersdag\npersdelict\npersdienst\npersdocumentatie\npersdrang\npersdruk\npersen\nperser\nperserij\nperseveratie\npersevereren\npersfilter\npersfoto\npersfotograaf\npersfotografie\npersgas\npersgeheim\npersgesprek\npersgroep\npersianer\npersico\npersiflage\npersifleren\npersijzer\npersinformatie\npersing\npersistent\npersistentie\npersisteren\npersjury\nperskaart\nperskamer\npersklaar\nperskorps\nperskracht\npersleger\npersleiding\nperslucht\npersluchtapparatuur\npersluchtmachine\npersluchtmasker\nperslunch\npersmagnaat\npersman\npersmap\npersmatrijs\npersmededeling\npersmensen\npersmerk\npersmuskiet\npersofficier\npersona non grata\npersonage\npersonal computer\npersonalia\npersonalisatie\npersonaliseren\npersonalisering\npersonalisme\npersonalistisch\npersonaliteit\npersonality\npersoneel\npersoneelsaankoop\npersoneelsaantal\npersoneelsadministratie\npersoneelsadvertentie\npersoneelsadvies\npersoneelsafdeling\npersoneelsavond\npersoneelsbegroting\npersoneelsbeheer\npersoneelsbehoefte\npersoneelsbeleid\npersoneelsbeoordeling\npersoneelsbestand\npersoneelsbezetting\npersoneelsblad\npersoneelsbudget\npersoneelscategorie\npersoneelschef\npersoneelscheffin\npersoneelscommissie\npersoneelsconsulent\npersoneelsdienst\npersoneelsdirecteur\npersoneelsdossier\npersoneelsfeest\npersoneelsfonds\npersoneelsformatie\npersoneelsfunctie\npersoneelsfunctionaris\npersoneelsgebied\npersoneelsgebrek\npersoneelsgesprek\npersoneelsgroei\npersoneelsgroep\npersoneelsgroepen\npersoneelsinkrimping\npersoneelsinventarisatie\npersoneelsinzet\npersoneelskaart\npersoneelskaarten\npersoneelskamer\npersoneelskantine\npersoneelskeuze\npersoneelskorting\npersoneelskosten\npersoneelskrapte\npersoneelsleiding\npersoneelslid\npersoneelsmanagement\npersoneelsmanager\npersoneelsmutatie\npersoneelsomvang\npersoneelsontwikkeling\npersoneelsopbouw\npersoneelsopleiding\npersoneelsorgaan\npersoneelsplan\npersoneelsplannen\npersoneelsplanning\npersoneelsprobleem\npersoneelsproblematiek\npersoneelspsychologie\npersoneelsraad\npersoneelsraden\npersoneelsreductie\npersoneelsregister\npersoneelsrestaurant\npersoneelsruimte\npersoneelsschaarste\npersoneelssector\npersoneelsselectie\npersoneelsstaf\npersoneelsstatistiek\npersoneelsstatuut\npersoneelssterkte\npersoneelsstop\npersoneelstekort\npersoneelsuitbreiding\npersoneelsuitgang\npersoneelsverdeling\npersoneelsvereniging\npersoneelsvergadering\npersoneelsverloop\npersoneelsvermindering\npersoneelsvertegenwoordiger\npersoneelsvertegenwoordiging\npersoneelsvoorstellen\npersoneelsvoorziening\npersoneelsvraagstuk\npersoneelswerk\npersoneelswerving\npersoneelszaken\npersoneelszorg\npersonenalarmering\npersonenauto\npersonenbelasting\npersonenbestand\npersonencontrole\npersonencultus\npersonenlift\npersonenrecht\npersonenregister\npersonentrein\npersonenvennootschap\npersonenverkeer\npersonenvervoer\npersonenverzekering\npersonenwagen\npersonificatie\npersonifiëren\npersontmoeting\npersoon\npersoonlijk\npersoonlijkheid\npersoonlijkheidscultus\npersoonlijkheidsfactor\npersoonlijkheidskenmerk\npersoonlijkheidsleer\npersoonlijkheidsmodel\npersoonlijkheidsonderzoek\npersoonlijkheidsontwikkeling\npersoonlijkheidspathologie\npersoonlijkheidsprofiel\npersoonlijkheidsrecht\npersoonlijkheidsrechten\npersoonlijkheidsstoornis\npersoonlijkheidsstructuur\npersoonlijkheidstest\npersoonlijkheidsvorming\npersoonsbeschrijving\npersoonsbeveiliging\npersoonsbewijs\npersoonscontrole\npersoonsdossier\npersoonsgebonden\npersoonsgegeven\npersoonsgegevens\npersoonsgericht\npersoonskaart\npersoonslijst\npersoonsnaam\npersoonsnummer\npersoonsregister\npersoonsregistratie\npersoonsverbeelding\npersoonsverheerlijking\npersoonsverwisseling\npersoonsvorm\npersoontje\npersorgaan\npersoverzicht\nperspectief\nperspectiefloos\nperspectiefrijk\nperspectieftekenen\nperspectieftekening\nperspectiefwisseling\nperspectieven\nperspectivisch\nperspenning\nperspex\nperspiratie\npersplank\nperspomp\nperspresentatie\npersprijs\nperspublicatie\npersraad\npersrechter\npersreis\npersruimte\nperssinaasappel\npersslang\npersstem\nperstribune\npersuasie\npersuasief\npersverantwoordelijke\npersvereniging\npersverklaring\npersvertegenwoordiger\npersvoorlichter\npersvoorlichting\npersvoorlichtster\npersvoorstelling\npersvorm\npersvrijheid\nperswee\npersweeën\nperswet\nperswetenschap\nperswezen\nperszaal\nperszaken\npertinent\npertinentie\nperubalsem\nperuzilver\npervers\nperversie\nperversiteit\nperverteren\nperzik\nperzikboom\nperzikenboom\nperzikenpit\nperzikpit\npeseta\npeso\npesocrisis\npessarium\npessimisme\npessimist\npessimistisch\npest\npestbacil\npestbacterie\npestbui\npestbuil\npesten\npestepidemie\npester\npesterig\npesterigheid\npesterij\npestgedrag\npesthaard\npesthekel\npesthol\npesthuis\npesthumeur\npesticide\npestilent\npestilentie\npestkoorts\npestkop\npestlijder\npestlucht\npesto\npestpokken\npeststreek\npestvent\npestvirus\npestvogel\npestziekte\npestzooi\npet\npetanque\npetanquen\npetekind\npetemoei\npeter\npeterprinciple\npeterschap\npeterselie\npeterseliesaus\npetfles\npetfood\npetgat\npetieter\npetieterig\npetieterigheid\npetit restaurant\npetitfour\npetitie\npetitierecht\npetitionaris\npetitioneren\npetitionnement\npetoet\npetrand\npetrischaal\npetrochemie\npetrochemisch\npetrodollar\npetroleum\npetroleumblik\npetroleumboer\npetroleumbron\npetroleumgas\npetroleumhaven\npetroleumhoudend\npetroleumindustrie\npetroleumkachel\npetroleumkan\npetroleumkleurig\npetroleumlamp\npetroleumlicht\npetroleumlucht\npetroleummaatschappij\npetroleummarkt\npetroleummotor\npetroleumproduct\npetroleumsector\npetroleumstel\npetroleumtank\npetroleumtanker\npetroleumvat\npetroleumveld\npetroleumvergasser\npetroleumwaarde\npetrologie\npets\npetsen\npettenwinkel\npetticoat\npetunia\npeuk\npeuken\npeul\npeulen\npeulenschil\npeulerwt\npeulgewas\npeulvrucht\npeur\npeurder\npeuren\npeurstok\npeut\npeuten\npeuter\npeuteraar\npeutercrèche\npeuteren\npeutergroep\npeutergroepen\npeuterig\npeuterklas\npeuterleeftijd\npeuterleider\npeuterleidster\npeuteropvang\npeuterschool\npeuterspeelplaats\npeuterspeelzaal\npeuterspeelzaalwerk\npeutertijd\npeutertuin\npeuterwerk\npeuzelaar\npeuzelen\npeuzelwerk\npeyote\npezen\npezerik\npezeweven\npezewever\npezig\npfeiffer\npg\npi\npianino\npianissimo\npianist\npianiste\npianistiek\npianistisch\npiano\npianobar\npianobegeleiding\npianoconcert\npianoconcerto\npianoduo\npianoforte\npianoklank\npianoklas\npianokruk\npianokwartet\npianola\npianoleraar\npianolerares\npianoles\npianomuziek\npianorecital\npianosolo\npianosonate\npianospel\npianospelen\npianospeler\npianostemmer\npianostoel\npianotoets\npianotrio\npianovirtuoos\npianowerk\npias\npiasserig\npiasserij\npiaster\npica\npicador\npicaresk\npicareske\npiccalilly\npiccolo\npiccolofluit\npick-up\npick-uptruck\npickles\npicknick\npicknicken\npicknickmand\npicknickplaats\npicknicktafel\npico bello\npicogram\npicoseconde\npicpus\npicrinezuur\npictogram\npicturaal\npicture\npidgin\npiechem\npied-à-terre\npief\npiefpaf\npiek\npiekarbeid\npiekautomaat\npiekbelasting\npiekdag\npiekdrukte\npieken\npiekeraar\npiekeraarster\npiekeren\npiekerig\npiekfijn\npiekhaar\npiekjaar\npieklast\npiekniveau\npiekperiode\npiektijd\npiekuur\npiekverkoop\npiekverkopen\npiekvermogen\npiekvraag\npiel\npielen\npielepoot\npiemel\npiemelen\npiemelnaakt\npienter\npienterheid\npiep\npiepa\npiepel\npiepelen\npiepen\npieper\npieperig\npiepertje\npiepgeluid\npiepjong\npiepklein\npiepkuiken\npiepschuim\npiepschuimen\npiepstem\npieptoon\npiepzak\npier\npiercen\npiercing\npierdood\npieremachochel\npierement\npieren\npierenbad\npierenbak\npierenland\npierewaaien\npierewaaier\npierewiet\npierlala\npierrette\npierrot\npierrotjes\npies\npiesen\npiespot\npiet\npietepeuterig\npieterig\npieterman\npietermannetje\npieterselie\npietje\npietje-precies\npietlut\npietluttig\npietluttigheid\npietsje\npiezel\npifpaf\npigment\npigmentatie\npigmentvlek\npigskin\npij\npijjekker\npijl\npijlbundel\npijlen\npijlenbundel\npijler\npijlerbrug\npijlerdam\npijlgewicht\npijlhout\npijlinktvis\npijlkoker\npijlkruid\npijlpunt\npijlrecht\npijlsnel\npijlstaart\npijlstaartrog\npijlstaartvlinder\npijltje\npijltjestoets\npijlvormig\npijlwortel\npijn\npijnaanval\npijnaanvallen\npijnappel\npijnappelklier\npijnbank\npijnbehandeling\npijnbestrijding\npijnboom\npijncentrum\npijndrempel\npijne\npijnen\npijngevoel\npijngrens\npijnhout\npijnigen\npijniger\npijniging\npijnkliniek\npijnlijk\npijnlijkheid\npijnloos\npijnpoli\npijnprikkel\npijnpunt\npijnscheut\npijnstillend\npijnstiller\npijnstilling\npijntje\npijnvrij\npijnwoud\npijp\npijpaarde\npijpbeen\npijpbloem\npijpdrop\npijpen\npijpenbakker\npijpendop\npijpenkop\npijpenkrul\npijpenla\npijpenlade\npijpenrager\npijpenrek\npijpensteel\npijpenstelen\npijpenstopper\npijpenstrootje\npijper\npijpfitter\npijpfitting\npijpgast\npijphout\npijpijzer\npijpje\npijpkaneel\npijpkruid\npijpleiding\npijpleidingennet\npijplijn\npijporgel\npijproken\npijproker\npijpsleutel\npijpsnijder\npijptabak\npijpwerk\npijpzak\npijpzwavel\npijpzweer\npik\npikant\npikanterie\npikantig\npikbroek\npikdonker\npikdraad\npikeren\npiket\npiketdienst\npikethamer\npiketpaal\npiketspel\npiketten\npiketteren\npikeur\npikhaak\npikhamer\npikhouweel\npikkedonker\npikkel\npikkelen\npikken\npikker\npikkerig\npikketanis\npikkig\npikol\npikorde\npikslee\npikton\npiktoorts\npikzwart\npil\npilaar\npilaarbijter\npilaarheilige\npilaster\npilav\npilgebruik\npilgebruikster\npilipili\npillegift\npillegiften\npillen\npillendeeg\npillendoos\npillendraaier\npillenfles\npillenslikker\npillenslikster\npillenzaad\npilo\npiloot\npilootaflevering\npilootproject\npilootwinkel\npilotenhulp\npilotenopleiding\npilotenstaking\npilotenstoel\npilotenuniform\npilotenvakbond\npilotenvereniging\npilotproject\npilotstudy\npils\npilsener\npilsje\npilvrije\npiment\npimentboom\npimentolie\npimpampetten\npimpel\npimpelaar\npimpelen\npimpelmees\npimpelpaars\npimpernel\npimpernoot\npin\npin-up\npin-upgirl\npina\npinacotheek\npinakel\npinang\npinangnoot\npinapparaat\npinaren\npinas\npinautomaat\npince-nez\npincet\npincher\npinchhitter\npincode\npinda\npindachinees\npindakaas\npindaman\npindarotsje\npindasaus\npindasoep\npineut\nping\npingel\npingelaar\npingelen\npingping\npingpong\npingpongbal\npingpongen\npingpongspel\npingpongtafel\npinguïn\npinguïnverblijf\npink\npinkelen\npinken\npinker\npinkogen\npinkring\npinkster\npinksteravond\npinksterbeweging\npinksterbloem\npinksterdag\npinksterdinsdag\npinksterdrie\npinksterfeest\npinkstergemeente\npinkstergroepen\npinksterkroon\npinkstermaand\npinkstermaandag\npinksterroos\npinkstertheologie\npinkstertijd\npinkstervakantie\npinkstervuur\npinksterweek\npinksterweekeinde\npinksterweekend\npinksterweide\npinksterzending\npinksterzondag\npinkstier\npinkvaars\npinnen\npinnig\npinpas\npint\npintelieren\npinten\npinyin\npioen\npioenroos\npioentje\npion\npionier\npionieren\npioniersarbeid\npioniersfase\npioniersfunctie\npioniersgeest\npioniersgroep\npioniersrol\npionierster\npionierstijd\npioniersvereniging\npionierswerk\npionneneindspel\npionnenstelling\npionoffer\npiot\npip\npiperade\npipet\npipetteren\npipowagen\npippeling\npips\npiqué\npiraat\npiramidaal\npiramidale\npiramide\npiramidespel\npiramidesysteem\npiramidevormig\npiranha\npirateneditie\npiratenfilm\npiratennest\npiratenschip\npiratenzender\npiraterij\npirouette\npirouetteren\npis\npisang\npisangboom\npisbak\npisblaas\npisbloem\npisbroek\npisbuis\npiscicultuur\npiscine\npisdoek\npisglas\npiskijker\npiskijkerij\npiskous\npisnijdig\npispaal\npispot\npispraatje\npissebed\npissen\npisser\npissertje\npissig\npissoir\npistache\npistacheboom\npistachenoot\npistachenootje\npiste\npistier\npistolet\npiston\npistonblazer\npistonpen\npistool\npistoolgreep\npistoolholster\npistoolmitrailleur\npistoolschieten\npistoolschilder\npistoolschot\npistooltje\npistousaus\npit\npita\npitabroodje\npitbull\npitbulleigenaar\npitbullterriër\npitchen\npitcher\npitchpine\npitje\npitloos\npitriet\npitrieten\npitsen\npitspoes\npitsstop\npitstop\npitte\npitten\npittig\npittigheid\npittoresk\npitvrucht\npivoteren\npixel\npixelgrootte\npizza\npizzabakker\npizzakoerier\npizzeria\npizzicato\npièce de résistance\npiëdestal\npiëta\npiëteit\npiëteitsvol\npiëtisme\npiëtist\npiëtistisch\npiëzometer\npk\nplaag\nplaaggeest\nplaagstoot\nplaagziek\nplaagzucht\nplaaster\nplaasteren\nplaat\nplaatbrood\nplaatcondensator\nplaatdruk\nplaatdrukken\nplaatdrukker\nplaatfrezer\nplaathaak\nplaatijzer\nplaatijzeren\nplaatje\nplaatjesalbum\nplaatjesboek\nplaatkoek\nplaatmateriaal\nplaatmetaal\nplaatmetalen\nplaatopname\nplaatradiator\nplaats\nplaats delict\nplaatsaanduiding\nplaatsaanwijzing\nplaatsbaar\nplaatsbekleder\nplaatsbepaling\nplaatsbeschrijving\nplaatsbespreking\nplaatsbewijs\nplaatsbiljet\nplaatsbureau\nplaatschaar\nplaatschade\nplaatscommandant\nplaatselijk\nplaatsen\nplaatser\nplaatsgebonden\nplaatsgebrek\nplaatsgeld\nplaatsgenoot\nplaatsgrijpen\nplaatshebben\nplaatsing\nplaatsingsbeleid\nplaatsingsbesluit\nplaatsingsbureau\nplaatsingscommissie\nplaatsingsgesprek\nplaatsingslijst\nplaatsingsmogelijkheid\nplaatsingsovereenkomst\nplaatskaart\nplaatsmaken\nplaatsnaam\nplaatsnaambord\nplaatsnaamkunde\nplaatsnemen\nplaatsnijden\nplaatsnijder\nplaatsnummer\nplaatsopneming\nplaatspanning\nplaatsruimte\nplaatstaal\nplaatstalen\nplaatsverandering\nplaatsverlies\nplaatsvervangend\nplaatsvervanger\nplaatsvervanging\nplaatsvervangster\nplaatsvervulling\nplaatsvinden\nplaatszin\nplaattektoniek\nplaatveld\nplaatwerk\nplaatwerken\nplaatwerker\nplaatwerkerij\nplacebo\nplacebo-effect\nplacebogroep\nplacemat\nplacement\nplacenta\nplaceren\nplacet\nplacht\nplacide\npladijs\nplafon\nplafond\nplafondbetimmering\nplafondconsole\nplafondhaak\nplafondhanger\nplafondhoogte\nplafondlamp\nplafondlat\nplafondlicht\nplafondschildering\nplafondtegel\nplafonlamp\nplafonlat\nplafonlicht\nplafonneren\nplafonnering\nplafonneur\nplafonnière\nplag\nplagen\nplager\nplagerig\nplagerij\nplagge\nplaggen\nplaggenhut\nplaggensteker\nplagiaat\nplagiaris\nplagiator\nplagiëren\nplaid\nplak\nplakadres\nplakalbum\nplakband\nplakboek\nplakbord\nplakbrief\nplaket\nplakkaat\nplakkaatboek\nplakkaatverf\nplakken\nplakker\nplakkerig\nplakkerij\nplakkertje\nplakletter\nplakmiddel\nplakplaatje\nplakplastic\nplakpleister\nplaksel\nplakspul\nplakspullen\nplaktafel\nplakwerk\nplakzegel\nplamuren\nplamuur\nplamuurmes\nplamuursel\nplamuurwerk\nplan\nplan de campagne\nplanbord\nplanbureau\nplanchet\nplane\nplaneconomie\nplaneerder\nplaneerhamer\nplaneet\nplaneetbaan\nplaneetoppervlak\nplaneetstand\nplaneren\nplanetair\nplanetarium\nplanetenbaan\nplanetenloop\nplanetenstelsel\nplanetoïde\nplanetoïden\nplangebied\nplanhuishouding\nplanimeter\nplanimetrie\nplanisfeer\nplank\nplankaart\nplanken\nplankenbeschot\nplankenkast\nplankenkoorts\nplankenvloer\nplankenvrees\nplankerig\nplanket\nplanketsel\nplankgas\nplankhard\nplankier\nplankrediet\nplankton\nplankzeilen\nplankzeiler\nplanloos\nplanmatig\nplanmatigheid\nplannen\nplannenmaker\nplannenmakerij\nplannensmeder\nplanner\nplanning\nplano\nplanologie\nplanologisch\nplanoloog\nplanometer\nplanontwikkeling\nplanparallel\nplanperiode\nplanprocedure\nplanschade\nplanschadevergoeding\nplant\nplantaarde\nplantaardig\nplantafstand\nplantage\nplantage-eigenaar\nplantagearbeider\nplantageholding\nplantagehuis\nplantageslaaf\nplantbed\nplante\nplanten\nplantenaardrijkskunde\nplantenalbum\nplantenatlas\nplantenbak\nplantenbed\nplantenbeschrijving\nplantenbiotechnologie\nplantenboek\nplantenboter\nplantencel\nplantencollectie\nplantendelen\nplantenecologie\nplantenetend\nplanteneter\nplantenfamilie\nplantengemeenschap\nplantengenetica\nplantengeslacht\nplantengif\nplantengordel\nplantengroei\nplantenhaar\nplantenkalender\nplantenkas\nplantenkenner\nplantenkennis\nplantenkweker\nplantenkwekerij\nplantenleer\nplantenleven\nplantenmateriaal\nplantennaam\nplantenrijk\nplantensap\nplantensoort\nplantenspuit\nplantenstek\nplantenteelt\nplantentuin\nplantenveredeling\nplantenvet\nplantenvoedsel\nplantenwereld\nplantenwortels\nplantenziekte\nplantenziektekunde\nplantenzuur\nplanter\nplanteren\nplanterij\nplanteur\nplantgoed\nplantgoedbehandeling\nplanting\nplantkunde\nplantkundig\nplantkundige\nplantlore\nplantluis\nplantmachine\nplantmateriaal\nplantnaam\nplanton\nplantrekker\nplantseizoen\nplantsel\nplantsoen\nplantsoendienst\nplantsoenendienst\nplantwijdte\nplanvoorbereiding\nplanvorming\nplaque\nplaquette\nplas\nplasberm\nplasbuis\nplasdankje\nplasma\nplasmabank\nplasmacel\nplasmascherm\nplasmatisch\nplasmide\nplasmolen\nplaspauze\nplaspil\nplasregen\nplasregenen\nplasseks\nplassen\nplassengebied\nplasser\nplastic\nplasticbom\nplasticfolie\nplasticindustrie\nplasticine\nplasticiteit\nplastics\nplasticsoort\nplastiek\nplastieken\nplastificeermachine\nplastificeren\nplastisch\nplastron\nplastuit\nplat\nplataan\nplataf\nplatbodem\nplatbodemd\nplatbombarderen\nplatboomd\nplatbranden\nplatdrukken\nplateau\nplateaulift\nplateauwagen\nplateauzool\nplateel\nplateelbakker\nplateelbakkerij\nplateelgoed\nplateelschilder\nplateelwerk\nplaten\nplatenalbum\nplatenatlas\nplatenbaas\nplatenbijbel\nplatenboek\nplatenboer\nplatenbon\nplatencollectie\nplatencontract\nplatendraaier\nplatenfirma\nplatenhandelaar\nplatenhoes\nplatenindustrie\nplatenkast\nplatenkoffer\nplatenlabel\nplatenmaatschappij\nplatenmarkt\nplatenproducer\nplatenrek\nplatenschijf\nplatenspeler\nplatenstudio\nplatentektoniek\nplatenverkoop\nplatenwereld\nplatenwinkel\nplatenwisselaar\nplatenzaak\nplateren\nplateservice\nplatform\nplatformen\nplatforms\nplatgetreden\nplatglas\nplatgooien\nplatheid\nplatina\nplatina-erts\nplatinablond\nplatinadraad\nplatineren\nplating\nplatitude\nplatje\nplatkop\nplatleggen\nplatliggen\nplatlopen\nplatluis\nplatneus\nplatonisch\nplatpersen\nplatribbig\nplatrijden\nplatrond\nplatschieten\nplatslaan\nplatspuiten\nplatstrijken\nplattebuiskachel\nplattegrond\nplattekaas\nplatteland\nplattelander\nplattelands\nplattelandsarts\nplattelandsbeleid\nplattelandsbevolking\nplattelandsbewoner\nplattelandsdistrict\nplattelandsdokter\nplattelandsdorp\nplattelandseconomie\nplattelandsgebied\nplattelandsgemeenschap\nplattelandsgemeente\nplattelandsheelmeester\nplattelandskarakter\nplattelandskenmerken\nplattelandsleven\nplattelandsontwikkeling\nplattelandsschool\nplattelandssituatie\nplattelandstoerisme\nplattelandsvernieuwing\nplattelandsvrouw\nplatten\nplatting\nplattrappen\nplattreden\nplatuit\nplatvis\nplatvloers\nplatvloersheid\nplatvoet\nplatvoeten\nplatvoetig\nplatvoetwacht\nplatvorm\nplatwalsen\nplatweg\nplatwerk\nplatworm\nplatzak\nplatzetter\nplausibel\nplausibiliteit\nplaveien\nplaveiing\nplaveisel\nplaveisteen\nplavuis\nplay-off\nplay-offsysteem\nplay-offwedstrijd\nplayback\nplaybacken\nplaybackshow\nplayboy\nplayboys\nplaystation\nplebaan\nplebejer\nplebejisch\nplebisciet\nplebs\nplecht\nplechtanker\nplechtgewaad\nplechtig\nplechtigheid\nplechtstatig\nplechtstatigheid\nplectrum\nplee\npleeborstel\npleeboy\npleefiguur\npleegbroeder\npleegbroer\npleegdochter\npleeggezin\npleegkind\npleegkinderenwet\npleegmoeder\npleegouder\npleegouders\npleegouderschap\npleegvader\npleegzoon\npleegzorg\npleegzuster\npleepapier\npleerol\npleet\npleetwerk\npleetzilver\nplegen\npleger\npleidooi\nplein\npleintjesbasketbal\npleinvrees\npleinwacht\npleiotropie\npleister\npleisteraar\npleisterafgietsel\npleisterbeeld\npleisteren\npleisterkalk\npleisterlaag\npleistermortel\npleisterplaats\npleisterspecie\npleisterwerk\npleisterwerker\npleistoceen\npleit\npleitbaar\npleitbezorger\npleitbezorging\npleitbezorgster\npleite\npleiten\npleiter\npleitnota\npleitrede\npleitster\npleitzaak\npleitzaal\nplejade\nplek\nplekken\nplekkerig\nplemp\nplempen\nplenair\nplengen\nplenging\nplengoffer\nplenipotentiaris\nplens\nplensbui\nplensregen\nplensregenen\nplenty\nplenum\nplenzen\npleonasme\npleonastisch\npletbaar\npletbord\npleten\nplethamer\npletmolen\npletpers\npletrol\npletsen\npletten\npletter\npletteren\npletterij\npletwals\npletwerk\npleuren\npleuris\npleurislijder\npleuritis\npleuropneumonie\nplevier\nplexiglas\nplexus\nplezant\nplezier\nplezierboot\nplezieren\nplezierig\nplezierjacht\npleziermaker\nplezierreis\nplezierreiziger\npleziertje\npleziertocht\npleziertrein\npleziervaart\npleziervaartuig\npleziervaartuigenbelasting\nplicht\nplichtbesef\nplichtbetrachting\nplichtbewust\nplichtenleer\nplichtgetrouw\nplichtgevoel\nplichtmatig\nplichtpleging\nplichtsbesef\nplichtsbetrachting\nplichtsgetrouw\nplichtsgevoel\nplichtshalve\nplichtsvervulling\nplichtsverzuim\nplichtvergeten\nplichtverzuim\nplint\nplinttegel\nplintverwarming\nplioceen\nplisseermachine\nplisseren\nplissé\nplistoceen\nplm.\nploeg\nploegarts\nploegbaas\nploegbelang\nploegboom\nploegdokter\nploegen\nploegenachtervolging\nploegenarbeid\nploegendienst\nploegenklassement\nploegenspel\nploegenstelsel\nploegensysteem\nploegentijdrit\nploegentoeslag\nploeger\nploeggang\nploeggenoot\nploeggenote\nploeghout\nploegijzer\nploegkoers\nploegkouter\nploegleider\nploegleiderswagen\nploegleiding\nploegmaat\nploegmachine\nploegmakker\nploegmanager\nploegmes\nploegos\nploegpaard\nploegpresentatie\nploegschaar\nploegsgewijs\nploegstaart\nploegverband\nploert\nploertachtig\nploertendoder\nploertendom\nploertenstreek\nploerterig\nploerterigheid\nploerterij\nploertig\nploertigheid\nploeteraar\nploeteren\nplof\nploffen\nploffer\nplofkoffer\nplok\nplokgeld\nplokken\nplokpenning\nplokworst\nplombe\nplombeerlood\nplombeersel\nplombeertang\nplomberen\nplombering\nplombière\nplomp\nplompen\nplompenblad\nplomperd\nplompheid\nplompverloren\nplompweg\nplons\nplonsbad\nplonzen\nplooi\nplooi-ijzer\nplooibaar\nplooibaarheid\nplooien\nplooiing\nplooiingsgebergte\nplooikraag\nplooimuts\nplooirok\nplooisel\nploos\nploot\nplootwol\nplop\nplopper\nplot\nploten\nplots\nplotseling\nplotsklaps\nplotten\nplotter\nplotwending\nplozen\nplu\npluche\npluchen\nplug\nplug-and-play\nplug-in\npluggen\nplugger\nplugkraan\npluim\npluimage\npluimbal\npluimborstel\npluimen\npluimgedierte\npluimgewicht\npluimgraaf\npluimgras\npluimhoed\npluimpje\npluimriet\npluimstaart\npluimstrijken\npluimstrijker\npluimstrijkerij\npluimvee\npluimveebedrijf\npluimveeconsulent\npluimveehouder\npluimveehouderij\npluimveemest\npluimveesector\npluimveeslachterij\npluimveestapel\npluimveeteelt\npluimveevlees\npluimveevoer\npluis\npluizen\npluizer\npluizerig\npluizerij\npluizig\npluk\npluk-ze-wetgeving\nplukbaar\nplukgeld\nplukharen\nplukken\nplukker\nplukloon\nplukmand\nplukrijp\npluksel\npluktijd\nplumeau\nplumpudding\nplunderaar\nplunderen\nplundering\nplundertocht\nplunje\nplunjebaal\nplunjer\nplunjerpomp\nplunjers\nplunjezak\npluralis\npluralisme\npluralistisch\npluraliteit\npluriform\npluriformiteit\nplus\nplusfour\nplusminus\nplusminusteken\npluspakket\npluspion\npluspool\npluspunt\nplussen\nplusser\nplusstrook\nplusteken\nplustoets\nplutocraat\nplutocratie\nplutocratisch\nplutonisch\nplutonisme\nplutonium\nplutoniumbom\nplutoniumvoorraad\npluvier\npluviometer\nplv.\npneumatiek\npneumatisch\npneumatologie\npneumonie\npneumothorax\npo\npochen\npocher\npocheren\npocherig\npocherij\npochet\npochhans\npocket\npocketboek\npocketcamera\npocketeditie\npocketformaat\npocketreeks\npodagra\npodagreus\npodagrist\npodium\npodiumact\npodiumbeest\npodiumdebuut\npodiumervaring\npodiuminstelling\npodiumkunst\npodiumkunsten\npodiumkunstenaar\npodiumkunstinstelling\npodiumpersoonlijkheid\npodiumplaats\npodiumtechniek\npodotherapeut\npoedel\npoedelen\npoedelhond\npoedelnaakt\npoedelprijs\npoeder\npoederblusser\npoederbrief\npoederbrieven\npoederchocolade\npoederdons\npoederdoos\npoederen\npoederig\npoederkalk\npoederkoffie\npoederkool\npoederkwast\npoedermelk\npoedersneeuw\npoedersuiker\npoedervorm\npoedervormig\npoef\npoeh\npoeha\npoeier\npoeieren\npoeierig\npoel\npoelen\npoelet\npoelier\npoelje\npoelslak\npoelsnip\npoema\npoen\npoenen\npoenerig\npoenig\npoep\npoepdoos\npoepen\npoeper\npoeperd\npoeperij\npoepers\npoer\npoeren\npoerimfeest\npoes\npoesiealbum\npoesje\npoesjenel\npoesjenellenkelder\npoeslief\npoesmooi\npoespas\npoesta\npoet\npoets\npoetsbeurt\npoetsdoek\npoetsdoos\npoetsen\npoetser\npoetsgerei\npoetsgoed\npoetskatoen\npoetslap\npoetsmiddel\npoetspommade\npoetsster\npoetsvrouw\npoetszak\npoezel\npoezelig\npoezeligheid\npoezen\npoezig\npof\npofbroek\npoffen\npoffer\npofferd\npoffertje\npoffertjeskraam\npoffertjespan\npofmais\npofmouw\npogen\npoger\npogers\npoging\npogoën\npogrom\npoinsettia\npointe\npointer\npointeren\npointilleren\npointillisme\npointillistisch\npointillé\npok\npokachtig\npokdalig\npoken\npoker\npokeraar\npokerbeker\npokeren\npokerface\npokergezicht\npokerspel\npokerspeler\npokerstenen\npokhout\npokken\npokkenbriefje\npokkenepidemie\npokkenlijder\npokkenprik\npokkenvaccin\npokkenvirus\npokkenweer\npokkig\npokputje\npokstof\npokziekte\npol\npolair\npolak\npolakker\npolarisatie\npolarisatiebril\npolarisatiefilter\npolarisatiespanning\npolarisatiestroom\npolarisatiethese\npolarisatievlak\npolariscoop\npolariseren\npolarisering\npolarisraket\npolariteit\npolaroid\npolaroidcamera\npolder\npolderbelasting\npolderbemaling\npolderbestuur\npolderblindheid\npolderboer\npolderboezem\npolderdijk\npolderdistrict\npolderdorp\npoldergebied\npoldergemaal\npolderhuis\npolderjongen\npolderkoorts\npolderland\npolderlandschap\npolderlasten\npoldermeester\npoldermodel\npoldermolen\npolderoverleg\npolderpeil\npolderschouw\npoldersloot\npoldersluis\npolderstad\npolderstreek\npolderwater\npolderweg\npolderwerker\npolemicus\npolemiek\npolemisch\npolemiseren\npolemist\npolemologie\npolemologisch\npolemoloog\npolenta\npoleposition\npoli\npolichinel\npoliep\npolieren\npolijsten\npolijster\npolijstkop\npolijstpapier\npolijstpoeder\npolijstschijf\npolijststaal\npolijststeen\npolijstwerk\npolikliniek\npoliklinisch\npolio\npolio-epidemie\npoliomyelitis\npolioprik\npoliovaccin\npoliovaccinatie\npoliovirus\npolis\npolisbestand\npolishouder\npoliskosten\npolismantel\npolisnummer\npolisopmaak\npolisoverzicht\npolistekst\npolisvoorwaarde\npolisvoorwaarden\npoliswaarde\npolitbureau\npolitica\npoliticaster\npolitici\npoliticologe\npoliticologie\npoliticologiestudenten\npoliticologisch\npoliticoloog\npoliticus\npolitie\npolitie-cao\npolitie-eenheid\npolitie-escorte\npolitie-infiltrant\npolitie-informant\npolitie-informatie\npolitie-ingrijpen\npolitie-inspecteur\npolitie-inval\npolitie-inzet\npolitie-uniform\npolitieacademie\npolitieactie\npolitieafdelingen\npolitieafzetting\npolitieagent\npolitieagente\npolitieambtenaar\npolitieapparaat\npolitiearts\npolitieauto\npolitiebeambte\npolitiebegeleiding\npolitiebegroting\npolitiebeleid\npolitiebericht\npolitiebescherming\npolitiebestel\npolitiebevoegdheid\npolitiebewaking\npolitiebezoek\npolitieblad\npolitiebond\npolitieboot\npolitiebron\npolitiebudget\npolitiebureau\npolitiebus\npolitiecapaciteit\npolitiecel\npolitiechef\npolitiecommandant\npolitiecommissariaat\npolitiecommissaris\npolitiecomputer\npolitiecontrole\npolitiecultuur\npolitiedetective\npolitiedienaar\npolitiedienst\npolitiedistrict\npolitiedossier\npolitieduo\npolitiedwang\npolitieel\npolitiefilm\npolitiefunctionaris\npolitiegebouw\npolitiegeweld\npolitiehelikopter\npolitiehervorming\npolitiehond\npolitiehoofdkwartier\npolitiehulp\npolitiek\npolitiek-bestuurlijk\npolitiek-bureaucratisch\npolitiek-cultureel\npolitiek-economisch\npolitiek-financieel\npolitiek-ideologisch\npolitiek-inhoudelijk\npolitiek-juridisch\npolitiek-maatschappelijk\npolitiek-militair\npolitiek-psychologisch\npolitiek-strategisch\npolitiekaart\npolitiekamer\npolitiekantoor\npolitiekapel\npolitiekazerne\npolitieker\npolitiekeurmerk\npolitiekogel\npolitiekolonel\npolitiekordon\npolitiekorps\npolitiekorpschef\npolitiekosten\npolitieland\npolitieleiding\npolitielint\npolitiemaatregel\npolitiemacht\npolitieman\npolitiemedewerker\npolitiemeldkamer\npolitieminister\npolitieministers\npolitiemonitor\npolitiemuts\npolitienummer\npolitieofficier\npolitieonderwijs\npolitieonderzoek\npolitieoorlog\npolitieoperatie\npolitieopleiding\npolitieoptreden\npolitieorganisatie\npolitieovertreding\npolitiepaard\npolitiepak\npolitiepatrouille\npolitiepenning\npolitieperskaart\npolitiepersoneel\npolitiepet\npolitiepost\npolitiepraktijk\npolitieprefect\npolitieradio\npolitierapport\npolitierecht\npolitierechtbank\npolitierechter\npolitieregio\npolitiereglement\npolitiereorganisatie\npolitieruiter\npolitiesamenwerking\npolitiescanner\npolitieschool\npolitieserie\npolitiespion\npolitiestaat\npolitiestation\npolitiesterkte\npolitiestraf\npolitiestructuur\npolitiesurveillance\npolitiesurveillant\npolitiesysteem\npolitietaak\npolitieteam\npolitiethriller\npolitietoezicht\npolitietop\npolitietroepen\npolitievak\npolitievakbond\npolitieverhoor\npolitieverkeerscentrale\npolitieverordening\npolitieversterking\npolitievoorlichter\npolitievrouw\npolitiewagen\npolitiewereld\npolitiewerk\npolitiewet\npolitiewezen\npolitiewoordvoerder\npolitiewoordvoerster\npolitiezaak\npolitiezone\npolitiezorg\npolitioneel\npolitiseren\npolitisering\npolitoer\npolitoeren\npolk\npolka\npolkahaar\npoll\npollak\npollen\npollenseizoen\npollepel\npollevie\npollevij\npollutie\npolo\npolohemd\npolonaise\npolonium\npoloshirt\npolospel\npoloën\npols\npolsader\npolsband\npolsbeschermer\npolsbeweging\npolsblessure\npolsbreuk\npolsdik\npolsdrager\npolsen\npolsfrequentie\npolsgewricht\npolshorloge\npolsriem\npolsslag\npolsslagader\npolsstok\npolsstokhoogspringen\npolsstokhoogspringer\npolsstokspringen\npolsstokspringer\npolstasje\npoltergeist\npolyamide\npolyandrie\npolyarchie\npolycarbonaat\npolychloorbifenyl\npolychromatisch\npolychromeren\npolychromie\npolychroom\npolycyclisch\npolyeder\npolyester\npolyesterhars\npolyetheen\npolyether\npolyethyleen\npolyfonie\npolyfoon\npolyform\npolygaam\npolygamie\npolyglot\npolyglotbijbel\npolyglotte\npolyglottisch\npolygoon\npolygraaf\npolygrafie\npolyhistor\npolyinterpretabel\npolymeer\npolymerisatie\npolymeriseren\npolymorf\npolymorfie\npolymorfisme\npolynoom\npolypropeen\npolypropyleen\npolyptiek\npolyritmiek\npolysemantisch\npolysemie\npolystyreen\npolysyllabisch\npolysyndeton\npolytechniek\npolytechnisch\npolytheen\npolytheïsme\npolytheïst\npolytheïsten\npolytheïstisch\npolyurethaan\npolyurethaanlijm\npolyurethaanschuim\npolyurethanen\npolyvalent\npolyvalentie\npolyvinylchloride\npom\npomerans\npomeransen\npommade\npommaderen\npomologie\npomoloog\npomp\npompadoer\npompaf\npompapparatuur\npompbak\npompbediende\npompbuis\npompeiland\npompelmoes\npompemmer\npompen\npomperij\npompernikkel\npompeus\npompgemaal\npomphouder\npompier\npompinstallatie\npompje\npompkamer\npompmotor\npompoen\npompoenlampion\npompoenlampionnen\npompoensoep\npompon\npompschroevendraaier\npompstation\npompstationhouder\npompsteen\npompstok\npompstokken\npompsysteem\npompwater\npompzuiger\npompzwengel\npon\nponcho\npond\nponden\nponder\npondkoek\npondsgewijs\npondsgewijze\npondspondsgewijs\npondspondsgewijze\nponem\nponeren\nponjaard\nponk\nponken\npons\nponsband\nponsen\nponsgaatje\nponsgat\nponskaart\nponsmachine\nponsoen\nponstypist\nponstypiste\npont\npontbrug\nponteneur\npontgeld\npontifex\npontificaal\npontificaat\npontificale\npontificeren\npontklep\nponton\npontonbrug\npontonnier\npontveer\npontwachter\npony\npony'tje\nponyhaar\nponymarkt\nponywagen\npooien\npooier\npook\npool\npoolbeer\npoolbiljart\npoolcentrum\npoolcirkel\npoolen\npooler\npoolexpeditie\npoolgebied\npoolhond\npoolijs\npooling\npoolkap\npoollicht\npoolnacht\npoolreiziger\npoolroute\npoolschip\npoolschoen\npoolshoogte\npoolstreek\npoolstreken\npooltochten\npoolvos\npoolweefsel\npoolwind\npoolzee\npoon\npoort\npoortader\npoortdeur\npoorten\npoorter\npoorterschap\npoortgebouw\npoortklok\npoortselector\npoortwachter\npoortwachtersfunctie\npoos\npoosje\npoot\npootaan\npootaardappel\npootafdruk\npootafstand\npootgat\npootgoed\npootijzer\npootje\npootjebaden\npootmachine\npootui\npootvis\npootziekte\npop\npop-cd\npop-lp\npop-up\npopachtig\npopact\npopalbum\npopart\npopartiest\npopband\npopblad\npopcentrum\npopconcert\npopcorn\npopcultuur\npopdiva\npopduo\npope\npopel\npopelen\npopeline\npopelpee\npopencyclopedie\npopfeest\npopfestival\npopformatie\npopfotografe\npopgeschiedenis\npopgroep\npophit\npopi\npopidool\npopiejopie\npopindustrie\npopjournalist\npopjournalistiek\npoplegende\npoplied\npopliefhebber\npoplin\npopmooi\npopmusicus\npopmuziek\npopmuzikant\npopnummer\npoppedein\npoppedeintje\npoppen\npoppendokter\npoppenfilm\npoppengezicht\npoppengoed\npoppenhoek\npoppenhuis\npoppenjurk\npoppenkamer\npoppenkast\npoppenkastfiguren\npoppenkastfiguur\npoppenkastvoorstelling\npoppenkleren\npoppenkraam\npoppenmaker\npoppenserie\npoppenspeelster\npoppenspel\npoppenspeler\npoppentheater\npoppenwagen\npopperig\npoppetje\npoppig\npopplaat\npoppodia\npoppodium\npopprijs\npopquiz\npoprock\npopscene\npopsong\npopstation\npopster\npoptempel\npoptijdschrift\npopulair\npopulairwetenschappelijk\npopularisatie\npopularisator\npopulariseren\npopularisering\npopulariteit\npopulariteitscijfer\npopulariteitspoll\npopulariteitstest\npopulatie\npopulier\npopulieren\npopulierenbos\npopulierenhout\npopulisme\npopulist\npopulistisch\npopwereld\npopzanger\npopzangeres\npopzender\npor\nporder\nporem\nporeus\nporeusheid\nporfier\nporfieren\nporie\nporiën\nporno\nporno-industrie\npornoactrice\npornobaas\npornobedrijf\npornobioscoop\npornoblad\npornofilm\npornofoto\npornograaf\npornografie\npornografisch\npornokoning\npornoshow\npornosite\npornoster\npornotheek\npornovideo\npornowereld\nporositeit\nporren\nporring\nporselein\nporseleinaarde\nporseleinen\nporseleinfabriek\nporseleinhoen\nporseleinkast\nporseleinkleur\nporseleinschilder\nporseleinwinkel\nporster\nport\nportaal\nportaalkraan\nportaalsite\nportabiliteit\nportable\nportakabin\nportal\nportalsite\nportatief\nportee\nportefeuille\nportefeuillebeheer\nportefeuillehouder\nportefeuillekwestie\nportefeuilles\nportefeuillesamenstelling\nportefeuilleverdeling\nportel\nportelen\nportemonnee\nportfolio\nportglas\nportie\nportiek\nportiekflat\nportiekwoning\nportier\nportierraam\nportierraampje\nportiershokje\nportiersloge\nportierspet\nportierster\nportière\nportières\nportlandcement\nporto\nportofoon\nportokosten\nportret\nportretalbum\nportretformaat\nportretfoto\nportretfotograaf\nportretfotografie\nportretgalerij\nportretkunst\nportretlijst\nportretrecht\nportretschilder\nportretschilderen\nportretstudie\nportrettengalerij\nportretteren\nportrettering\nportrettist\nportuur\nportvrij\nportvrijdom\nportwijn\nportzegel\nporum\npos\npose\nposeren\nposes\nposeur\npositie\npositiebepaling\npositief\npositief-kritisch\npositiejurk\npositiekeuze\npositiekleding\npositiespel\npositieve\npositieven\npositieverbetering\npositiewisseling\npositioneel\npositioneren\npositionering\npositioneringen\npositivisme\npositivist\npositivistisch\npositiviteit\npositivo\npositron\npossessie\npossessief\npost\npostaal\npostabonnement\npostacademiaal\npostacademisch\npostadres\npostagentschap\npostambtenaar\npostament\npostauto\npostbak\npostbakken\npostbeambte\npostbedeling\npostbedrijf\npostbesteller\npostbestelling\npostbewijs\npostbezorging\npostblad\npostbode\npostboot\npostbox\npostbus\npostbusadres\npostbusnummer\npostcheque\npostchequerekening\npostcode\npostcodeboek\npostcodegebied\npostcodeloterij\npostcodenummer\npostcoderegio\npostcommandant\npostcommunisme\npostcommunistisch\npostdateren\npostdatum\npostdienst\npostdirecteur\npostdistrict\npostdoc\npostdoctoraal\npostduif\npostduivenvereniging\nposte restante\npostelectoraal\npostelein\nposten\nposter\nposteren\nposterformaat\nposterieur\nposterijen\nposterioriteit\npostformaat\npostgebouw\npostgids\npostgiro\npostgirodienst\npostgirorekening\npostgraduaat\nposthistorisch\nposthoorn\nposthoren\nposthypnotisch\npostiche\nposticheur\npostideologisch\npostiljon\npostille\npostincunabel\npostindustrieel\npostje\npostjesjager\npostkaart\npostkamer\npostkantoor\npostkantoortje\npostkoets\npostkoloniaal\npostkwitantie\npostloket\npostmandaat\npostmarkt\npostmaterialistisch\npostmeester\npostmerk\npostmerken\npostmodern\npostmoderne\npostmodernisme\npostmodernist\npostmodernistisch\npostmortaal\npostnataal\npostnummer\npostogram\npostolympisch\npostontvanger\npostoperatief\npostorder\npostorderaar\npostorderactiviteiten\npostorderapotheek\npostorderbedrijf\npostorderbranche\npostordercatalogus\npostorderfarmacie\npostordergigant\npostorderservice\npostorderverkoop\npostpaard\npostpak\npostpakket\npostpakketformulier\npostpakkettendienst\npostpapier\npostpunk\npostrekening\npostrekeningnummer\npostrevolutionair\npostrijtuig\npostscriptum\npostsector\npostsorteercentrum\npostspaarbank\npoststempel\npoststroom\npoststructuralisme\npoststuk\nposttarief\nposttraumatisch\nposttraumatisch stresssyndroom\nposttrein\npostulaat\npostulant\npostulante\npostuleren\npostunie\npostuniversitair\npostuum\npostuur\npostuurtje\npostvak\npostvatten\npostverbinding\npostverdrag\npostverkeer\npostvervoer\npostverwerking\npostverzending\npostviraal\npostviraalsyndroom\npostvliegtuig\npostvlucht\npostwagen\npostweg\npostwet\npostwezen\npostwissel\npostzak\npostzegel\npostzegelalbum\npostzegelautomaat\npostzegelbeurs\npostzegelbevochtiger\npostzegelcatalogus\npostzegelhandel\npostzegelkunde\npostzegelverzamelaar\npostzegelverzameling\npostzending\npot\npot-au-feu\npotaarde\npotas\npotcultuur\npotdeksel\npotdicht\npotdoof\npotdorie\npoteling\npoten\npotenrammen\npotenrammer\npotent\npotentaat\npotentiaal\npotentiaalfunctie\npotentiaalverschil\npotentialis\npotentie\npotentieel\npotentiometer\npoter\npotestaat\npotgeld\npotgrond\npothoed\npothuis\npotig\npotje\npotjeslatijn\npotkachel\npotkacheltjes\npotkijker\npotloden\npotlood\npotloodhouder\npotloodjes\npotloodlijn\npotloodscherper\npotloodschets\npotloodslijper\npotloodslijpmachine\npotloodtekening\npotloodventer\npotnat\npotplant\npotpolder\npotpourri\npots\npotscherf\npotsenmaker\npotsenmakerij\npotsierlijk\npotsig\npotspel\npotstal\npotten\npottenbakken\npottenbakker\npottenbakkerij\npottenbakkersklei\npottenbakkersoven\npottenbakkersschijf\npottenbakkerswiel\npottenbakster\npottenkast\npottenkijker\npottenmarkt\npottenwinkel\npotter\npotteus\npotverdikke\npotverdomme\npotverdorie\npotverteer\npotverteert\npotverteren\npotvis\npoujadisme\npoulain\npoularde\npoule\npoule-indeling\npoulesysteem\npoulet\npoulewedstrijd\npoulewinnaar\npousseren\npover\npoverheid\npovertjes\npower\npowerhouse\npowerliften\npowerlifter\npowerlifting\npowerplay\npowerpop\npowertennis\npozen\npoëem\npoëet\npoëma\npoësis\npoëtaster\npoëtica\npoëticaal\npoëtiek\npoëtisch\npoëtiseren\npoëzie\npoëziealbum\npoëzieavond\npoëziebundel\npoëziedebuut\npoëziefestival\npoëziekritiek\npoëzieliefhebber\npoëzieprijs\npoëzietijdschrift\npoëziewedstrijd\npoëziezomer\npr\npr-adviseur\npr-bedrijf\npr-beleid\npr-bureau\npr-functionaris\npr-machine\npr-man\npr-medewerker\npr-verantwoordelijke\npraaien\npraairapport\npraal\npraalbed\npraalboog\npraalgraf\npraalhans\npraalkoets\npraalvertoon\npraalwagen\npraalziek\npraalzucht\npraam\npraat\npraatachtig\npraatal\npraatavond\npraatbarak\npraatclub\npraatcultuur\npraatgraag\npraatgroep\npraathuis\npraatje\npraatjesmaker\npraatlustig\npraatpaal\npraatpapier\npraatprogramma\npraatshow\npraatster\npraatstoel\npraatstuk\npraatvaar\npraatziek\npraatzucht\nprachen\npracht\nprachtband\nprachtboek\nprachtexemplaar\nprachtfilm\nprachtig\nprachtkans\nprachtkerel\nprachtkleed\nprachtlievend\nprachtprestatie\nprachtstuk\nprachtuitgave\nprachtvol\nprachtvrouw\nprachtwerk\npractica\npractical\npracticant\npracticum\npracticumleiding\npracticus\npragmaticus\npragmatiek\npragmatisch\npragmatisme\npragmatist\npragmatistisch\nprairie\nprairiebrand\nprairiegras\nprairiehond\nprairiewolf\nprak\nprakken\nprakkiseren\npraktijk\npraktijkbegeleiding\npraktijkdag\npraktijkdiploma\npraktijkdocent\npraktijken\npraktijkervaring\npraktijkexamen\npraktijkgedeelte\npraktijkgericht\npraktijkgeval\npraktijkjaar\npraktijkkennis\npraktijkkosten\npraktijkkostenvergoeding\npraktijkleerfase\npraktijkleerperiodes\npraktijkleraar\npraktijkles\npraktijklokaal\npraktijkman\npraktijkondersteuning\npraktijkonderwijs\npraktijkonderzoek\npraktijkopleiding\npraktijkproef\npraktijkruimte\npraktijkscholing\npraktijkschool\npraktijksituatie\npraktijktest\npraktijkverhandeling\npraktijkverpleegkundige\npraktijkvoering\npraktijkvoorbeeld\npraktisch\npraktisch-politieke\npraktiseren\npraktizijn\npralen\npraler\npralerij\npraline\npramen\nprang\nprangen\nprangend\npranger\nprangijzer\nprat\npraten\nprater\npratikeren\nprauw\nprauwenveer\npraxis\npre\npre-embryo\npre-existent\npre-industrieel\npre-islamitisch\npreadvies\npreadviseren\nprealabel\npreambule\nprebende\nprebiotisch\nprecair\nprecambrium\nprecario\nprecariobelasting\nprecariorechten\nprecedent\nprecedentwerking\npreceptor\nprecies\npreciesheid\nprecieus\nprecieusheid\nprecieze\npreciezen\npreciezer\nprecipiteren\npreciseren\nprecisering\nprecisie\nprecisie-instrument\nprecisie-uurwerk\nprecisieaanval\nprecisieapparaat\nprecisiebombardement\nprecisiemeter\nprecisiewapen\nprecisieweegschaal\nprecisiewerk\nprecolumbiaans\nprecommunistisch\npredatie\npredatiedruk\npredator\npredestinatie\npredestinatieleer\npredestineren\npredicaat\npredicatie\npredicatief\nprediceren\npredictie\npredicties\npredikambt\npredikant\npredikante\npredikantenopleiding\npredikantschap\npredikantsopleiding\npredikantsplaats\npredikantswoning\npredikbeurt\npredikbeurtenblad\nprediken\nprediker\npredikheer\nprediking\npredikstoel\npredisponeren\npredispositie\nprednison\npredomineren\npree\npreek\npreekbeurt\npreekgestoelte\npreekheer\npreekrooster\npreekstijl\npreekstoel\npreektoon\npreektrant\npreekverbod\npref\nprefab\nprefabhuis\nprefabricatie\nprefabriceren\nprefabwoning\nprefatie\nprefect\nprefectuur\npreferabel\npreferent\npreferentie\npreferentieel\nprefereren\nprefigeren\nprefiguratie\nprefix\npregnant\npregnantie\nprehistoricus\nprehistorie\nprehistorisch\nprei\npreiplant\npreisoep\nprejudicie\nprejudicieel\nprejudiciëren\npreken\npreker\nprekerig\nprekerigheid\npreklinisch\nprekwalificatietoernooi\nprelaat\nprelaatschap\nprelatuur\npreliminair\npreliminairen\nprelude\npreluderen\npreludium\nprematuriteit\nprematuur\npremeditatie\npremenstrueel\npremetro\npremie\npremie-inkomen\npremie-inkomsten\npremieaandeel\npremieafdracht\npremiebedrag\npremieberekening\npremiebetaler\npremiebetaling\npremiebijdrage\npremiebouw\npremiecontract\npremiedaling\npremiedeel\npremiedelen\npremiedifferentiatie\npremiedruk\npremiefraude\npremiegeld\npremiegrens\npremiegrondslag\npremiehandel\npremieheffing\npremiehoogte\npremiejager\npremieklasse\npremiekoopwoning\npremiekorting\npremiekosten\npremielast\npremielening\npremieloon\npremielot\npremiemutatie\npremieobligatie\npremieomzet\npremiepercentage\npremieplicht\npremieplichtig\npremier\npremieregeling\npremiereserve\npremierschap\npremierskandidaat\npremiespaarplan\npremiespaarregeling\npremiesparen\npremiestelling\npremiestelsel\npremiestijging\npremiesysteem\npremietarief\npremieverhoging\npremieverlaging\npremieverzekering\npremievoordeel\npremievrij\npremievrijstelling\npremiewoning\npremisse\npremium\npremière\npremièredag\npremièrepubliek\npremodern\npremolaar\npremonstratenzer\nprenataal\nprent\nprentbriefkaart\nprentbriefkaartenalbum\nprenten\nprentenatlas\nprentenbijbel\nprentenboek\nprentenkabinet\nprenterig\nprentkaart\nprentkunst\nprenuptiaal\npreoccupatie\npreoccuperen\npreolympisch\nprepaid\nprepaidkaart\npreparaat\npreparateur\npreparatie\npreparatieven\npreparatoir\nprepareren\npreparé\nprepensioen\nprepositie\nprepositioneel\nprepress\npreprint\nprepsychotisch\nprepuberaal\nprepuberteit\nprequel\nprerevolutionair\nprerogatief\npresbyter\npresbyteriaan\npresbyteriaans\npresbyterium\nprescriberen\nprescriptie\nprescriptief\npreselectie\npresenning\npresens\npresent\npresentabel\npresentatie\npresentatieprogramma\npresentatieruimte\npresentatietraining\npresentatievorm\npresentatiewerk\npresentator\npresentatrice\npresenteerblad\npresenteren\npresentexemplaar\npresentia\npresentie\npresentiegeld\npresentielijst\npreservatief\npreserveren\npreservering\npreses\npresident\npresident-commissaris\npresident-curator\npresident-diaken\npresident-directeur\npresidente\npresidentialisme\npresidentieel\npresidentsambt\npresidentscampagne\npresidentschap\npresidentshamer\npresidentskandidaat\npresidentskandidate\npresidentskandidatuur\npresidentsrace\npresidentsverkiezing\npresidentsverkiezingen\npresidentsvrouw\npresidentsvrouwe\npresidentszetel\npresidentverkiezing\npresideren\npresidiaal\npresidium\npressant\npressante\npresse-papier\npressen\npresseren\npressie\npressiegroep\npressiemiddel\npressievoetbal\npressing\npressurecooker\nprestatie\nprestatie-eis\nprestatiebeloning\nprestatiebeoordeling\nprestatiebeurs\nprestatiebevorderend\nprestatiecontract\nprestatiecurve\nprestatiedrang\nprestatiedruk\nprestatiedwang\nprestatief\nprestatiegericht\nprestatielijn\nprestatielijnen\nprestatieloon\nprestatieloop\nprestatiemaatschappij\nprestatiemoraal\nprestatieniveau\nprestatienorm\nprestatierit\nprestatieverbetering\nprestatievermogen\npresteerder\npresteren\nprestige\nprestigeduel\nprestigekwestie\nprestigemerk\nprestigeobject\nprestigeproject\nprestigeslag\nprestigestrijd\nprestigezaak\nprestigieus\nprestissimo\npresto\nprestrategisch\npresumeren\npresumptie\npresumptief\npresuppositie\npret\npretbederver\npretendent\npretenderen\npretentie\npretentieloos\npretentieloosheid\npretentieus\npreteritum\npretext\npretje\npretlichtje\npretmaker\npretnet\npretogen\npretor\npretoriaan\npretorianen\npretorium\npretpakket\npretpark\nprettig\npreutelaar\npreutelen\npreuts\npreutsheid\nprevaleren\nprevelaar\nprevelement\nprevelen\npreventie\npreventiebeleid\npreventiecampagne\npreventief\npreventiefonds\npreventiemaatregel\npreventiemedewerker\npreventiemogelijkheden\npreventieoogpunt\npreventieplan\npreventieprogramma\npreventieproject\npreventieteam\npreventiezorg\npreview\nprezen\npriapisme\nprieel\npriegelen\npriegelig\npriegelschrift\npriegelwerk\npriel\npriem\npriemen\npriemgetal\npriempje\npriester\npriester-dichter\npriesterambt\npriesterdom\npriesteres\npriesterfeest\npriestergewaad\npriesterheerschappij\npriesterjubileum\npriesterkaste\npriesterkoor\npriesterlijk\npriesteropleiding\npriesterroeping\npriesterschap\npriesterstand\npriesterstudent\npriestertekort\npriesterwijding\npriesterzegen\nprietpraat\nprijken\nprijs\nprijs-kwaliteitsverhouding\nprijs-kwaliteitverhouding\nprijsaanbieding\nprijsaanduiding\nprijsaanpassing\nprijsaanvraag\nprijsaanvragen\nprijsafbraak\nprijsafspraak\nprijsbederf\nprijsbeest\nprijsbeheersing\nprijsbeleid\nprijsbemanning\nprijsbepaling\nprijsberekening\nprijsbeschikking\nprijsbeweging\nprijsbewust\nprijsbinding\nprijsboek\nprijsbreker\nprijscategorie\nprijscode\nprijscompensatie\nprijsconcurrentie\nprijscontrole\nprijscourant\nprijsdaling\nprijsdier\nprijsdifferentiatie\nprijsdruk\nprijsdrukkend\nprijsdumping\nprijseffect\nprijselasticiteit\nprijselijk\nprijserosie\nprijsevolutie\nprijsexplosie\nprijsfluctuatie\nprijsgarantie\nprijsgegeven\nprijsgeld\nprijsgeven\nprijsgevoelig\nprijsgevoeligheid\nprijsherstel\nprijshoudend\nprijsindex\nprijsindexcijfer\nprijsindexering\nprijsindicatie\nprijsinflatie\nprijsinformatie\nprijskaart\nprijskaartje\nprijskamp\nprijskartel\nprijsklas\nprijsklasse\nprijskraker\nprijslijk\nprijslijst\nprijslimiet\nprijsmaatregel\nprijsmarge\nprijsmatig\nprijsmechanisme\nprijsniveau\nprijsnominatie\nprijsnotering\nprijsofferte\nprijsondersteuning\nprijsontwikkeling\nprijsoorlog\nprijsopdrijving\nprijsopgaaf\nprijsopgave\nprijsovereenkomst\nprijspeil\nprijspolitiek\nprijsraadsel\nprijsrange\nprijsratio\nprijsrecht\nprijsrechter\nprijsrechtspraak\nprijsreductie\nprijsregeling\nprijsregulering\nprijsschaar\nprijsschieten\nprijsschommeling\nprijssegment\nprijsslag\nprijsspiraal\nprijsstabilisatie\nprijsstabiliteit\nprijsstatistiek\nprijsstelling\nprijssteun\nprijsstijging\nprijsstop\nprijsstructuur\nprijsstunter\nprijsstunts\nprijssysteem\nprijstarief\nprijstechnisch\nprijstheorie\nprijstransparantie\nprijsuitdeling\nprijsuitreiking\nprijsval\nprijsvechter\nprijsverandering\nprijsverbetering\nprijsvergelijk\nprijsvergelijking\nprijsverhogend\nprijsverhoging\nprijsverhouding\nprijsverklaring\nprijsverlaging\nprijsverloop\nprijsvermindering\nprijsvers\nprijsverschil\nprijsvlucht\nprijsvoordeel\nprijsvoorschrift\nprijsvork\nprijsvorming\nprijsvraag\nprijswaardig\nprijswinnaar\nprijswinnares\nprijszetting\nprijzen\nprijzenbedrag\nprijzencontrole\nprijzendruk\nprijzenfestival\nprijzengala\nprijzengeld\nprijzenkast\nprijzenoorlog\nprijzenpakket\nprijzenpolitiek\nprijzenpot\nprijzenregen\nprijzenslag\nprijzenstop\nprijzenswaard\nprijzenswaardig\nprijzenwet\nprijzig\nprik\nprikactie\nprikbord\nprikje\nprikkaart\nprikkel\nprikkelbaar\nprikkelbaarheid\nprikkeldraad\nprikkeldraadomheining\nprikkeldraadversperring\nprikkeldrempel\nprikkelen\nprikkelend\nprikkelgeleiding\nprikkelhoest\nprikkeling\nprikkellectuur\nprikkeloverdracht\nprikken\nprikker\nprikkertje\nprikkie\nprikklok\npriklimonade\nprikpil\nprikplank\nprikslee\npriksleeën\nprikstaking\nprikstok\npriktol\npril\nprima\nprima donna\nprimaat\nprimaatschap\nprimair\nprimarius\nprimatencentrum\nprimatologie\nprimatoloog\nprimauteit\nprime\nprimer\nprimeren\nprimetime\nprimeur\nprimitief\nprimitieven\nprimitivisme\nprimitivistisch\nprimitiviteit\nprimo\nprimordiaal\nprimula\nprimus\nprinceps\nprinciep\nprincipaal\nprincipale\nprincipe\nprincipe-uitspraak\nprincipeakkoord\nprincipebeslissing\nprincipebesluit\nprincipekwestie\nprincipeloos\nprincipeovereenkomst\nprincipeschema\nprincipeverklaring\nprincipezaak\nprincipieel\nprins\nprins-bisschop\nprins-gemaal\nprins-regent\nprinsbisdom\nprinsdom\nprinselijk\nprinsenhof\nprinsenkind\nprinsenleven\nprinsenpaar\nprinsenvlag\nprinsenwagen\nprinses\nprinses-gemalin\nprinsessen\nprinsessenboon\nprinsgezind\nprinsgezinde\nprinsheerlijk\nprint\nprint-out\nprintbestand\nprintcommando\nprinten\nprinter\nprinterdivisie\nprinterdriver\nprinterfabrikant\nprinterfout\nprintfaciliteit\nprintfunctie\nprintgang\nprintinstructie\nprintkop\nprintopdracht\nprintopmaak\nprintplaat\nprintprobleem\nprintproces\nprintsnelheid\nprintverslag\nprintverslagen\nprintwerk\nprintwiel\nprinzipienreiterei\nprion\nprionziekte\nprior\nprioraat\npriores\npriori\npriorij\nprioritair\nprioriteit\nprioriteitenlijst\nprioriteitennota\nprioriteitenprogramma\nprioriteitenstelling\nprioriteitsaandeel\nprioriteitslening\nprioriteitsrecht\nprioriteitsstelling\nprioriteitstelling\nprioriteitsvraag\nprioriteren\nprioritering\npriorschap\nprisma\nprismakijker\nprismatisch\nprivaat\nprivaatdocent\nprivaatles\nprivaatonderwijs\nprivaatrecht\nprivaatrechtelijk\nprivacy\nprivacyaspecten\nprivacybeleid\nprivacybescherming\nprivacygevoelig\nprivacyreden\nprivacyredenen\nprivacyreglement\nprivacywet\nprivacywetgeving\nprivatief\nprivatim\nprivatisatie\nprivatiseren\nprivatisering\nprivatiseringsbeleid\nprivatiseringsoperatie\nprivatiseringsproces\nprivatiseringsprogramma\nprivatiseringsproject\nprivatiseringswet\nprivatissimum\nprivilege\nprivilegie\nprivilegiëren\nprivé\nprivé-eigendom\nprivé-informatie\nprivé-initiatief\nprivé-uitgave\nprivéaangelegenheid\nprivéadres\nprivéarchief\nprivéauto\nprivébank\nprivébedrijf\nprivébelegging\nprivébezit\nprivébibliotheek\nprivéchauffeur\nprivécollectie\nprivédetective\nprivédomein\nprivégebruik\nprivégesprek\nprivéjet\nprivékarakter\nprivékliniek\nprivéleger\nprivéleraar\nprivéles\nprivélessen\nprivéleven\nprivémilitie\nprivémuseum\nprivéondernemer\nprivéonderneming\nprivéonderwijs\nprivépersoon\nprivéprobleem\nprivéreis\nprivérekening\nprivéschool\nprivésecretaresse\nprivésecretaresses\nprivésecretaris\nprivésector\nprivésfeer\nprivésituatie\nprivéterrein\nprivétrainer\nprivévermogen\nprivéverzamelaar\nprivéverzameling\nprivévliegtuig\nprivéwoning\nprivézaak\npro\npro Deo\npro bono\npro forma\npro memorie\npro-Amerikaans\npro-Deozaak\npro-Duits\npro-Europees\npro-Israëlisch\npro-Koerdisch\npro-Russisch\npro-Syrisch\npro-formazitting\nproactief\nprobaat\nprobabilistisch\nprobabiliteit\nprobatie\nprobeersel\nproberen\nprobleem\nprobleemanalist\nprobleemanalyse\nprobleembuurt\nprobleemcumulatie\nprobleemcumulatiegebied\nprobleemcumulatiegebieden\nprobleemdefinitie\nprobleemdefiniëring\nprobleemdrinker\nprobleemdrinkster\nprobleemformulering\nprobleemgebied\nprobleemgedrag\nprobleemgericht\nprobleemgeval\nprobleemgezin\nprobleemgroep\nprobleemjaar\nprobleemjeugd\nprobleemkind\nprobleemland\nprobleemloos\nprobleemoplossen\nprobleemoplossend\nprobleemoplossing\nprobleemproduct\nprobleempunt\nprobleempunten\nprobleemsituatie\nprobleemstelling\nprobleemwijk\nproblematiek\nproblematisch\nproblematiseren\nproblematisering\nprocedeetjes\nprocederen\nprocedure\nprocedureafspraak\nprocedureel\nprocedurefout\nprocedurekosten\nprocedurekwestie\nprocedureregels\nprocedureslag\nprocedurevergadering\nprocedurevoorschrift\nprocedé\nprocedés\nprocent\nprocentnorm\nprocentpunt\nprocentteken\nprocentueel\nproces\nproces-verbaal\nprocesbegeleider\nprocesbeheersing\nprocesbesturing\nprocesbewaking\nprocescontrole\nprocesdag\nprocesdossier\nprocesgang\nprocesindustrie\nprocesinnovatie\nproceskosten\nprocesmanagement\nprocesmanager\nprocesmatig\nprocesoperator\nprocesorde\nprocesrecht\nprocesrechtelijk\nprocessie\nprocessiegewijs\nprocessiekruis\nprocessierups\nprocessievlinder\nprocessing\nprocessor\nprocessoren\nprocessorkern\nprocessorkoeler\nprocesstuk\nprocessueel\nprocestechniek\nprocestechnologie\nprocestheoloog\nprocesvereenvoudiging\nprocesvertegenwoordiging\nprocesvoering\nproceswater\nproclamatie\nproclameren\nproclisis\nproclitisch\nprocommunistisch\nproconsul\nprocope\nprocreatie\nprocrustesbed\nprocuratie\nprocuratiehouder\nprocurator\nprocureur\nprocureur-generaal\nprocureurschap\nprocureurskantoor\nprocyclisch\nprodecaan\nprodemocratisch\nproducen\nproducent\nproducente\nproducentenlanden\nproducentenmarkt\nproducentenprijs\nproducentenvertrouwen\nproducer\nproduceren\nproducersduo\nproduct\nproductaanbod\nproductaansprakelijkheid\nproductassortiment\nproductcategorie\nproductdifferentiatie\nproductenaanbod\nproductengamma\nproductenpakket\nproductfamilie\nproductgamma\nproductgericht\nproductgroep\nproductie\nproductie-eenheid\nproductie-installatie\nproductie-uitbreiding\nproductieafdeling\nproductieapparaat\nproductieapparatuur\nproductieassistent\nproductieband\nproductiebedrijf\nproductiebeperking\nproductiebos\nproductiecapaciteit\nproductiecentrum\nproductiechef\nproductiecijfer\nproductiecyclus\nproductiedaling\nproductief\nproductiefaciliteit\nproductiefactor\nproductiefase\nproductiefout\nproductiegebied\nproductiegoederen\nproductiegrafiek\nproductiegroei\nproductiehal\nproductiehuis\nproductiehuishouding\nproductiekantoor\nproductiekern\nproductieketen\nproductiekosten\nproductieland\nproductieleider\nproductieleiding\nproductieleidster\nproductielijn\nproductielocatie\nproductiemaatschappij\nproductiemanager\nproductiemanagers\nproductiemedewerker\nproductiemethode\nproductiemiddel\nproductiemodel\nproductieniveau\nproductienorm\nproductieomzet\nproductiepeil\nproductiepersoneel\nproductieplafond\nproductieplan\nproductieplanning\nproductieplatform\nproductiepremie\nproductieprijs\nproductieproces\nproductieprogramma\nproductiequota\nproductierijp\nproductieruimte\nproductieschema\nproductiesector\nproductiesfeer\nproductieslag\nproductiesnelheid\nproductiestatistiek\nproductiestijging\nproductiestop\nproductiestrategie\nproductiestroom\nproductiestructuur\nproductiesysteem\nproductieteam\nproductietechniek\nproductietechnisch\nproductietechnologie\nproductietempo\nproductietijd\nproductietoename\nproductievereniging\nproductievergroting\nproductieverhoging\nproductieverlaging\nproductieverlies\nproductievermindering\nproductievermogen\nproductievestiging\nproductievolgorde\nproductievolume\nproductiewaarde\nproductiewerk\nproductiewijze\nproductinformatie\nproductinnovatie\nproductioneel\nproductiviteit\nproductiviteitscentrum\nproductiviteitsgroei\nproductiviteitsontwikkeling\nproductiviteitsstijging\nproductiviteitstoename\nproductiviteitsverbetering\nproductiviteitsverhoging\nproductiviteitsverlies\nproductiviteitswinst\nproductiviteitswinsten\nproductkenmerken\nproductkennis\nproductkwaliteit\nproductleverancier\nproductlijn\nproductmanager\nproductmix\nproductnaam\nproductnummer\nproductnummers\nproductontwikkelaar\nproductontwikkelaars\nproductontwikkeling\nproductpakket\nproductportfolio\nproductschap\nproductsector\nproducttype\nproductvernieuwing\nproductwijziging\nproductwijzigingen\nproef\nproefabonnee\nproefabonnement\nproefaflevering\nproefbaan\nproefbalans\nproefballon\nproefbedrijf\nproefbelasting\nproefbestelling\nproefbewerking\nproefblad\nproefboerderij\nproefboren\nproefboring\nproefbuis\nproefbuisbaby\nproefcentrum\nproefdier\nproefdiercentrum\nproefdiergebruik\nproefdieronderzoek\nproefdraaien\nproefdruk\nproefexamen\nproefexemplaar\nproeffabriek\nproeffase\nproefgebied\nproefhoudend\nproefinstallatie\nproefjaar\nproefkonijn\nproeflancering\nproefleider\nproefles\nproeflezer\nproeflokaal\nproefmeting\nproefmodel\nproefmonster\nproefneming\nproefnummer\nproefobject\nproefondervindelijk\nproefonderzoek\nproefopname\nproefopstelling\nproeforder\nproefpakket\nproefpanel\nproefpark\nproefperiode\nproefpersoon\nproefplaat\nproefpreek\nproefpreken\nproefprocedure\nproefproces\nproefprocessenfonds\nproefprogramma\nproefproject\nproefreactor\nproefregio\nproefrijbewijs\nproefrijden\nproefrit\nproefschrift\nproefserie\nproefstadium\nproefstation\nproefstomen\nproefstrook\nproefstuk\nproeftafel\nproefteam\nproefterrein\nproeftijd\nproeftocht\nproeftraining\nproeftraject\nproeftuin\nproefuitzending\nproefvaart\nproefvak\nproefvaren\nproefveld\nproefverlof\nproefvlucht\nproefvoorstelling\nproefwerk\nproefwerkblaadje\nproefwerkweek\nproefwinkel\nproefzending\nproestbui\nproesten\nproeve\nproeven\nproever\nproeverij\nprof\nprof.\nprofaan\nprofanatie\nprofane\nprofaneren\nprofase\nprofavontuur\nprofbasketbal\nprofbestaan\nprofboksen\nprofbokser\nprofbond\nprofcarrière\nprofcircuit\nprofclub\nprofcompetitie\nprofcontract\nprofdebuut\nprofeet\nprofes\nprofessen\nprofessie\nprofessional\nprofessionaliseren\nprofessionalisering\nprofessionalisme\nprofessionaliteit\nprofessioneel\nprofessor\nprofessoraal\nprofessoraat\nprofessorabel\nprofessorstitel\nprofetenmantel\nprofetenschool\nprofeteren\nprofetes\nprofetie\nprofetisch\nprofhonkballer\nproficiat\nprofiel\nprofieldeel\nprofielfrees\nprofielschets\nprofieltekening\nprofielwerkstuk\nprofielzool\nprofijt\nprofijtbeginsel\nprofijtelijk\nprofijtig\nprofiler\nprofileren\nprofilering\nprofileringsdrang\nprofitabel\nprofitariaat\nprofiteren\nprofiteur\nprofjaar\nproflicentie\nprofliga\nprofloopbaan\nprofpartij\nprofpeloton\nprofploeg\nprofrenner\nprofronde\nprofspeler\nprofsport\nprofteam\nproftennis\nproftennisser\nproftoernooi\nprofvoetbal\nprofvoetbalclub\nprofvoetballer\nprofwielrenner\nprofylactisch\nprofylaxe\nprofylaxis\nprofzege\nprogestageen\nprogestatief\nprogesteron\nprognathisme\nprognose\nprognosticeren\nprognostiek\nprognostisch\nprogram\nprogramakkoord\nprogramcollege\nprogramcommissie\nprogramma\nprogramma-aanbod\nprogramma-akkoord\nprogramma-informatie\nprogrammabeleid\nprogrammablad\nprogrammaboek\nprogrammaboekje\nprogrammabrochure\nprogrammabudget\nprogrammabureau\nprogrammacode\nprogrammacommissie\nprogrammacoördinator\nprogrammadirecteur\nprogrammaformule\nprogrammagenres\nprogrammagids\nprogrammahulp\nprogrammakeuze\nprogrammakosten\nprogrammaleider\nprogrammaleiding\nprogrammamaakster\nprogrammamaker\nprogrammamanager\nprogrammamuziek\nprogrammaonderdeel\nprogrammaoverzicht\nprogrammaoverzichten\nprogrammapakket\nprogrammapunt\nprogrammaraad\nprogrammareeks\nprogrammaregeling\nprogrammaschema\nprogrammaschijf\nprogrammaserie\nprogrammaspecificaties\nprogrammatisch\nprogrammatuur\nprogrammaverantwoordelijkheid\nprogrammaverkoper\nprogrammavoorschrift\nprogrammavoorstel\nprogrammawet\nprogrammeerbaar\nprogrammeertaal\nprogrammeren\nprogrammering\nprogrammeur\nprogrammeuse\nprogressie\nprogressief\nprogressief-liberaal\nprogressielijst\nprogressievoorbehoud\nprogressist\nprogressistisch\nprogressivisme\nprogressiviteit\nprohibitie\nprohibitief\nprohibitiestelsel\nprohibitionist\nproject\nprojectaanvraag\nprojectbasis\nprojectbegeleider\nprojectbeheer\nprojectbeschrijving\nprojectbureau\nprojectcoördinator\nprojectdirecteur\nprojectdrager\nprojectenlijst\nprojecteren\nprojectfinanciering\nprojectgebonden\nprojectgroep\nprojecthulp\nprojectie\nprojectiedoek\nprojectief\nprojectiel\nprojectielamp\nprojectielantaarn\nprojectieplaatje\nprojectiescherm\nprojectietafel\nprojectietekenen\nprojectietekening\nprojectietoestel\nprojectkosten\nprojectleider\nprojectleiding\nprojectleidster\nprojectmanagement\nprojectmanager\nprojectmatig\nprojectmedewerker\nprojectonderwijs\nprojectonderzoek\nprojectontwikkelaar\nprojectontwikkeling\nprojectontwikkelingsmaatschappij\nprojector\nprojectorganisatie\nprojectplan\nprojectreferentie\nprojectresearch\nprojectsubsidie\nprojectteam\nprojectverantwoordelijke\nprojectvoorstel\nprojectwerk\nprojectwethouder\nprokaryoot\nprol\nproleet\nprolegomena\nprolepsis\nproleptisch\nproletariaat\nproletarisch\nproletariseren\nproletarisering\nproletariër\nproliferatie\nprolongatie\nprolongatiepremie\nprolongeren\nproloog\npromenade\npromenadeconcert\npromenadedek\npromesse\npromessedisconto\npromessekrediet\npromilitair\npromillage\npromille\nprominent\nprominentie\npromiscue\npromiscuïteit\npromo\npromofilm\npromoot\npromoten\npromotie\npromotieactie\npromotiebeleid\npromotiebudget\npromotiecampagne\npromotiecommissie\npromotiefeest\npromotiefilm\npromotiekans\npromotieklasse\npromotiekosten\npromotielijn\npromotielijnen\npromotielijst\npromotiemateriaal\npromotiemedewerker\npromotiemiddel\npromotieonderzoek\npromotiepartij\npromotieplaats\npromotieplan\npromotieplechtigheid\npromotiereglement\npromotiereis\npromotieteam\npromotietoer\npromotietour\npromotieverlof\npromotiewedstrijd\npromoting\npromotion\npromotioneel\npromotor\npromovenda\npromovendi\npromovendus\npromoveren\nprompt\npromptheid\npronazi\nprondel\npronk\npronkappel\npronkboon\npronken\npronker\npronkerig\npronkerij\npronkerwt\npronkgewaad\npronkjuweel\npronkkamer\npronkkast\npronksieraad\npronkster\npronkstuk\npronkziek\npronkzitting\npronkzucht\npronkzuchtig\npronomen\npronominaal\nprononceren\npronostiek\npronostikeren\npront\npronunciamiento\npronunciatie\nprooi\nprooidier\nproosdij\nproost\nproosten\nprop\npropaan\npropaangas\npropaganda\npropaganda-afdeling\npropaganda-instrument\npropagandacampagne\npropagandacommissie\npropagandafilm\npropagandakosten\npropagandamachine\npropagandamateriaal\npropagandamiddel\npropagandamiddelen\npropagandaminister\npropagandanummer\npropagandaoorlog\npropagandaslag\npropagandastunt\npropagandatocht\npropaganderen\npropagandist\npropagandiste\npropagandistisch\npropagatie\npropageren\npropedeuse\npropedeutisch\npropeen\npropeller\npropellervliegtuig\nproper\nproperheid\npropertjes\npropjes\nproponent\nproponeren\nproportie\nproportionaliteit\nproportioneel\npropos\npropositie\npropositielogica\nproppen\nproppenschieter\nproprioceptie\nproprium\npropvol\npropyleen\npropyleeën\nprorector\nprorogatie\nproscenium\nproscriptie\nprosector\nproseliet\nproselietenmakerij\nproselitisme\nprosit\nprosodie\nprosodisch\nprospect\nprospecteren\nprospectie\nprospectief\nprospector\nprospectus\nprospectussen\nprospereren\nprostaat\nprostaatkanker\nprostaatklier\nprostaatoperatie\nprostaatvergroting\nprostaglandine\nprostituant\nprostituee\nprostitueren\nprostitutie\nprostitutiebedrijf\nprostitutiebeleid\nprostitutiebranche\nprostitutiecircuit\nprostitutiegebied\nprostitutiemilieu\nprostitutienetwerk\nprostitutiewereld\nprostitué\nprotactinium\nprotagonist\nprotagoniste\nprotease\nprotectie\nprotectionisme\nprotectionist\nprotectionistisch\nprotector\nprotectoraat\nprotegee\nprotegeren\nprotegé\nproterozoïcum\nprotest\nprotestactie\nprotestant\nprotestante\nprotestanten\nprotestantendag\nprotestantisering\nprotestantisme\nprotestants\nprotestants-christelijk\nprotestbetoging\nprotestbeweging\nprotestbijeenkomst\nprotestbord\nprotestbrief\nprotestdag\nprotestdemonstratie\nprotesteren\nprotesthouding\nprotestlied\nprotestmanifestatie\nprotestmars\nprotestmeeting\nprotestnota\nprotestoptocht\nprotestpartij\nprotestsong\nproteststaking\nproteststem\nprotesttocht\nprotestvergadering\nprotestwissel\nprotestzanger\nprotestzangeres\nproteïne\nproteïnerijk\nproteïnurie\nprothallium\nprothese\nprothesemaker\nprothesis\nprothetisch\nprotocol\nprotocolakkoord\nprotocollair\nprotocollen\nprotocolleren\nprotocollering\nprotohistorie\nproton\nprotonkaart\nprotonotarius\nprotontherapie\nprotoplasma\nprotoplast\nprototype\nprototypisch\nprotozo\nprotozoïsch\nprotozoön\nprotsen\nprotser\nprotserig\nprotserigheid\nprotsig\nprotuberans\nprotuberantie\nprove\nprovenier\nproveniershuis\nprovenu\nproviand\nprovianderen\nproviandering\nproviandschip\nproviandwagen\nprovidentie\nprovidentieel\nprovider\nprovinciaal\nprovinciaals\nprovinciaaltje\nprovincialisme\nprovincialist\nprovincialistisch\nprovincie\nprovincieambtenaar\nprovinciebestuur\nprovinciebestuurder\nprovincieblad\nprovincieclub\nprovinciefonds\nprovinciegouverneur\nprovinciegrens\nprovinciehoofdplaats\nprovinciehoofdstad\nprovinciehuis\nprovinciekaart\nprovinciekaarten\nprovincieplaats\nprovincieraad\nprovinciestad\nprovincieweg\nprovinciewet\nprovisie\nprovisie-inkomsten\nprovisiebasis\nprovisieberekening\nprovisiekamer\nprovisiekast\nprovisiekelder\nprovisiekosten\nprovisiereiziger\nprovisierekening\nprovisiestructuur\nprovisiesysteem\nprovisioneel\nprovisoir\nprovisor\nprovisorisch\nprovisorium\nprovo\nprovobeweging\nprovocateur\nprovocatie\nprovocatief\nprovocatrice\nprovoceren\nprovocerend\nprovoost\nprovotijd\nprowesters\nproximaal\nproxy\nproxyserver\nproza\nprozabewerking\nprozadebuut\nprozagedicht\nprozaschrijver\nprozastijl\nprozatekst\nprozavertaling\nprozawerk\nprozaïsch\nprozaïst\nprudent\nprudentie\npruderie\npruik\npruikenbol\npruikenmaker\npruikenstijl\npruikentijd\npruikerig\npruilen\npruiler\npruilerig\npruillip\npruilmond\npruim\npruimbaar\npruimedant\npruimelaar\npruimen\npruimenbomen\npruimenboom\npruimenhout\npruimenjam\npruimenmoes\npruimenmond\npruimenpit\npruimenpluk\npruimensap\npruimentaart\npruimentijd\npruimer\npruimtabak\npruimtomaat\nprul\npruldichter\nprullaria\nprullen\nprullenbak\nprullenboel\nprullenkraam\nprullenman\nprullenmand\nprullenvent\nprullenwerk\nprullerig\nprullerij\nprulletje\nprullig\nprulpoëet\nprulschrijver\nprulwerk\nprune\nprunel\nprunus\nprut\nprutoog\npruts\nprutsding\nprutsen\nprutser\nprutserig\nprutserij\nprutswerk\npruttelaar\npruttelarij\npruttelen\npruttelig\nprutterig\nprzewalskipaard\nprésence\npsalm\npsalmberijming\npsalmboek\npsalmbord\npsalmbundel\npsalmdichter\npsalmeren\npsalmgezang\npsalmist\npsalmlied\npsalmodie\npsalmodiëren\npsalmvers\npsalmvertaling\npsalmzingen\npsalter\npsalterion\npsalterium\npseudo-intellectueel\npseudo-islamitisch\npseudoconsensus\npseudofilosofisch\npseudokoop\npseudokoopteam\npseudokoper\npseudologia fantastica\npseudologie\npseudoniem\npseudonimiteit\npseudovogelpest\npseudowetenschap\npseudowetenschappelijk\npsilocine\npsittacosis\npsoriasis\npst\npsyche\npsychedelica\npsychedelicum\npsychedelisch\npsychiater\npsychiatrie\npsychiatrisch\npsychisch\npsychoactief\npsychoanalyse\npsychoanalytica\npsychoanalyticus\npsychoanalytisch\npsychobiologie\npsychodiagnostiek\npsychodrama\npsychodynamiek\npsychodynamisch\npsychofarmaca\npsychofarmacologie\npsychofarmacon\npsychofarmacotherapie\npsychofysiologie\npsychofysisch\npsychogeen\npsychogenese\npsychogeriatrie\npsychogeriatrisch\npsychogram\npsychohygiëne\npsychohygiënisch\npsychokinese\npsycholinguïst\npsycholinguïstiek\npsychologe\npsychologie\npsychologiestudent\npsychologiestudente\npsychologisch\npsychologiseren\npsychologisering\npsychologisme\npsycholoog\npsychometrie\npsychometrisch\npsychometrist\npsychomotoriek\npsychomotorisch\npsychoneurose\npsychonomie\npsychoot\npsychopaat\npsychopate\npsychopathie\npsychopathisch\npsychopathologie\npsychopathologisch\npsychoscopie\npsychose\npsychosociaal\npsychosomatiek\npsychosomatisch\npsychosomatose\npsychotechnicus\npsychotechniek\npsychotechnisch\npsychotherapeut\npsychotherapeute\npsychotherapeutisch\npsychotherapie\npsychotisch\npsychotrauma\npsychotraumatologie\npsychotroop\npsychrometer\npsyché\npub\npuber\npuberaal\npuberachtig\npuberen\npuberleeftijd\npubermeisje\npuberteit\npuberteitscrisis\npuberteitsfase\npuberteitsjaren\npuberteitsleeftijd\npuberteitsverhaal\npubertijd\npuberzoon\npubescent\npubescentie\npubis\npublic relations\npublicabel\npublicatie\npublicatieblad\npublicatiebord\npublicatiedatum\npublicatielijst\npublicatiemethode\npublicatiemethodes\npublicatieplicht\npublicatieverbod\npublicdomainsoftware\npubliceren\npublicist\npubliciste\npublicistiek\npublicistisch\npublicitair\npubliciteit\npubliciteitsagent\npubliciteitsbureau\npubliciteitscampagne\npubliciteitsdrift\npubliciteitsgeil\npubliciteitsgolf\npubliciteitsmachine\npubliciteitsman\npubliciteitsmateriaal\npubliciteitsmedium\npubliciteitsoffensief\npubliciteitsorgaan\npubliciteitsschuw\npubliciteitsservice\npubliciteitsstunt\npubliciteitswaarde\npubliek\npubliek-privaat\npubliekelijk\npubliekgericht\npubliekrecht\npubliekrechtelijk\npublieksactie\npublieksbalie\npublieksbereik\npubliekscampagne\npublieksdebat\npublieksenquête\npublieksfilm\npublieksfunctie\npublieksgericht\npublieksgroep\npublieksinformatie\npublieksjury\npubliekslieveling\npublieksonderzoek\npublieksonvriendelijk\npublieksopkomst\npublieksparticipatie\npublieksprijs\npublieksreclame\npublieksruimte\npubliekssucces\npubliekstaak\npubliekstaken\npubliekstijdschrift\npubliekstrekkend\npubliekstrekker\npublieksvoorlichting\npublieksvriendelijk\npublieksvriendelijkheid\npubliekswissel\npuck\npuddelen\npuddelijzer\npuddeloven\npudding\npuddingpoeder\npuddingpoeier\npuddingsaus\npuddingvorm\npudeur\npueblo\npueriel\npuf\npuffen\npufferig\npufheet\npugilist\npui\npuik\npuikbest\npuikjuweel\npuikstuk\npuilen\npuilogen\npuiloog\npuim\npuimsteen\npuimsteenpoeder\npuimstenen\npuin\npuinbak\npuinbed\npuinbreker\npuinfundering\npuingesteente\npuinhoop\npuinlaag\npuinruimen\npuinruimer\npuinruimster\npuinweg\npuinzooi\npuissance\npuissant\npuist\npuistachtig\npuistenkop\npuisterig\npuistig\npuit\npuitaal\npuk\npukkel\npukkelig\npukkie\npul\npulken\npull\npullen\npullman\npullmanrijtuig\npullmantrein\npullover\npulmonaal\npulp\npulpblad\npulpboek\npulpindustrie\npulppers\npulpprijs\npulproman\npuls\npulsar\npulsatie\npulsbuis\npulsen\npulseren\npulspaal\npulsteller\npulver\npulverachtig\npulveren\npulverig\npulverisator\npulveriseren\npummel\npummelachtig\npummelig\npump\npunaise\npunch\npunchglas\npunchkom\npunchlepel\npuncteren\npunctie\npunctualiteit\npunctuatie\npunctueel\npunctum\npunctuur\npunk\npunkachtig\npunkachtige\npunkband\npunkbeweging\npunker\npunkgroep\npunkkapsel\npunkmuziek\npunkrock\npunkrocker\npunkscene\npunktijd\npunniken\npunt\npuntbaard\npuntbeitel\npuntbeschermer\npuntboog\npuntbroodje\npuntdak\npuntdicht\npuntdichter\npuntdraad\npunten\npuntenaantal\npuntenaftrek\npuntendeling\npuntengrens\npuntenklassement\npuntenkoers\npuntenlijst\npuntenrecord\npuntenrijbewijs\npuntenschaal\npuntenslijper\npuntenstelsel\npuntensysteem\npuntental\npuntentelling\npuntentoekenning\npuntentotaal\npuntentrui\npuntenverlies\npuntenvoorsprong\npuntenwaarde\npuntenwaardering\npunter\npunteren\npunterjacht\npuntertocht\npuntgaaf\npuntgevel\npuntgrootte\npunthelm\npunthoed\npunthoofd\npuntig\npuntigheid\npuntje\npuntkomma\npuntlassen\npuntlijn\npuntloos\npuntmuts\npuntschoen\npuntsgewijs\npuntsgewijze\npuntverlies\npuntvijl\npuntvlam\npuntvormig\npuntzak\npup\npupil\npupillenschool\npupillenvoetbal\npupilreflex\npuppy\npups\npur\npur sang\npuree\npureestamper\npuren\npureren\npurgatie\npurgatief\npurgatorium\npurgeermiddel\npurgeerpoeder\npurgeerpoeier\npurgeren\npurificatie\npurine\npurisme\npurist\npuristerij\npuristisch\npuritanisme\npuritein\npuriteins\npurper\npurperachtig\npurperblauw\npurperen\npurperglans\npurperkleurig\npurperreiger\npurperrood\npurperslak\npurpriet\npurpura\npurschuim\npurser\npus\npush\npush-up\npushen\npussen\nput\nputbaas\nputboor\nputdeksel\nputemmer\nputgalg\nputhaak\nputjesschepper\nputketting\nputoptie\nputrad\nputrand\nputs\nputsch\nputschist\nputse\nputsen\nputt\nputtee\nputten\nputtenzuiger\nputter\nputting\nputtings\nputtingwant\nputto\nputwater\npuur\npuurheid\npuzzel\npuzzelaar\npuzzelaarster\npuzzelen\npuzzelkubus\npuzzelprijs\npuzzelrit\npuzzelspel\npuzzelstukje\npuzzeltocht\npuzzelvraag\npuzzelwerk\npvc\npvc-buis\npygmee\npygmeeënvolk\npyjama\npyjamabroek\npyjamajasje\npyknisch\npylon\npyloon\npyrexglas\npyridine\npyridoxine\npyriet\npyrimidine\npyroclastisch\npyrogallol\npyrolyse\npyromaan\npyromanie\npyrometer\npyrotechniek\npyrotechnisch\npyrronisme\npyrrusoverwinning\npythisch\npython\nq\nq.e.d.\nq.q.\nqat\nqua\nquad\nquadrafonie\nquadrafonisch\nquadrageen\nquadragesima\nquadriljoen\nquadrille\nquadrilleren\nquadrofonie\nquadrofonisch\nquadrupleren\nquaestor\nquaestrix\nquaestuur\nquaker\nqualitate qua\nquant\nquarantaine\nquarantaine-inrichting\nquarantainemaatregel\nquarantainevlag\nquark\nquartair\nquarterback\nquarterone\nquarto\nquarté\nquasar\nquasi\nquasi-intellectueel\nquasiauthentiek\nquasibestraffend\nquasidiepzinnig\nquasidocumentair\nquasifilosofisch\nquasimodo\nquasimonopolie\nquasinonchalant\nquasionverschillig\nquasireligieus\nquasislordig\nquasistaat\nquasiwetenschappelijk\nquatertemper\nquatertemperdag\nquatre-mains\nquatre-mainsspeler\nquatsch\nquattrocento\nqueeste\nquerulant\nquerulantisme\nqueruleren\nquery\nquestionnaire\nqueue\nqueueën\nqui pro quo\nqui-vive\nquiche\nquickstep\nquidam\nquilt\nquilten\nquinoa\nquinquagesima\nquinto\nquisling\nquitte\nquiz\nquizleider\nquizmaster\nquizprogramma\nquizvraag\nquizzen\nquiëtisme\nquiëtist\nquiëtisten\nquodlibet\nquorum\nquota\nquotaregeling\nquotastelsel\nquotasysteem\nquotatie\nquote\nquoten\nquoteren\nquotering\nquoteringsregeling\nquoteringssysteem\nquotisatie\nquotiseren\nquotiënt\nquotum\nquotumregeling\nquotums\nr\nr.-k.\nra\nraad\nraadadviseur\nraadgeefster\nraadgevend\nraadgever\nraadgeving\nraadhuis\nraadje\nraadkamer\nraadpensionaris\nraadpleegbaar\nraadplege\nraadplegen\nraadpleging\nraadsadviseur\nraadsagenda\nraadsbesluit\nraadsbreed\nraadscommissie\nraadsdebat\nraadsel\nraadselachtig\nraadselachtigheid\nraadselrubriek\nraadselspel\nraadsfractie\nraadsheer\nraadskelder\nraadslag\nraadslid\nraadslidmaatschap\nraadsman\nraadsmeerderheid\nraadsnestor\nraadsnotulen\nraadspensionaris\nraadsperiode\nraadsstuk\nraadsvergadering\nraadsvergoeding\nraadsverkiezing\nraadsverkiezingen\nraadsverslag\nraadsvoordracht\nraadsvoorstel\nraadsvoorzitter\nraadsvoorzitterschap\nraadsvrouw\nraadsvrouwe\nraadswerk\nraadszaal\nraadszetel\nraadszitting\nraadzaal\nraadzaam\nraadzaamheid\nraaf\nraafachtig\nraagbol\nraai\nraaien\nraaigras\nraaipaal\nraak\nraakcirkel\nraaklijn\nraakpunt\nraakslaan\nraakvlak\nraam\nraamadvertentie\nraamakkoord\nraamantenne\nraambekleder\nraambekleding\nraambekledingsproduct\nraambiljet\nraamcontract\nraamdorpel\nraamgewicht\nraamhor\nraamkant\nraamkit\nraamkoord\nraamkozijn\nraamloos\nraamopening\nraamovereenkomst\nraampen\nraampje\nraampost\nraamprofiel\nraamprogramma\nraamprostitutie\nraamprostitutiegebied\nraamsponning\nraamstijl\nraamstok\nraamthermometer\nraamventilator\nraamverdrag\nraamvertelling\nraamwerk\nraamwet\nraamzaag\nraap\nraapbord\nraapkoek\nraapkool\nraapolie\nraapspecie\nraapsteel\nraapstelen\nraapwerk\nraapzaad\nraar\nraasdonders\nraaskallen\nraat\nraathoning\nrabarber\nrabarbermoes\nrabarbersteel\nrabarberstelen\nrabat\nrabatten\nrabatteren\nrabauw\nrabbelaar\nrabbelen\nrabbi\nrabbijn\nrabbijns\nrabbinaal\nrabbinaat\nrabiaat\nrabiës\nraccordement\nrace\nraceauto\nracebaan\nraceboot\nracecircuit\nracefiets\nracekak\nracen\nracepaard\nracer\nracerij\nracespel\nracesport\nracestuur\nraceteam\nracewagen\nrachel\nrachitis\nrachitisch\nraciaal\nracisme\nracismebestrijding\nracist\nraciste\nracistisch\nracket\nracketeer\nracketeering\nraclette\nracletten\nrad\nradar\nradarantenne\nradarapparaat\nradarapparatuur\nradarbeeld\nradarcontrole\nradardetector\nradarecho\nradargolf\nradarinstallatie\nradarpost\nradarreflector\nradars\nradarscherm\nradarsignaal\nradarsnelheidscontrole\nradarstation\nradarstraling\nradarsysteem\nradartoestel\nradartoren\nradarvaart\nradarwaarnemer\nradbraken\nraddraaier\nraddraaierij\nradeermesje\nradeerstift\nradeloos\nradeloosheid\nraden\nradencommunisme\nradenrepubliek\nrader\nraderbaar\nraderboot\nraderdiertje\nraderen\nraderkast\nradertje\nraderwerk\nraderwieltje\nradheid\nradiaal\nradiaalband\nradiant\nradiateur\nradiatie\nradiator\nradiatorfolie\nradiatorknop\nradiatorkraan\nradiatorlak\nradiatorrooster\nradiatorthermostaat\nradicaal\nradicaal-links\nradicaaldemocratisch\nradicaalislamitisch\nradicaliseren\nradicalisering\nradicalisme\nradicaliteit\nradicchio\nradijs\nradijszaad\nradikalinski\nradio\nradio-cassetterecorder\nradio-dj\nradio-interview\nradio-isotoop\nradio-omroep\nradio-omroeper\nradio-ontvanger\nradio-ontvangst\nradio-opname\nradio-orkest\nradio-uitzending\nradioactief\nradioactiviteit\nradioamateur\nradioantenne\nradioapparatuur\nradioastronomie\nradiobaken\nradiobericht\nradiobestel\nradiobesturing\nradiobiologie\nradiobiologisch\nradiobode\nradioboodschap\nradiobron\nradiobuis\nradiocampagne\nradiocentrale\nradiocolumn\nradiocommentator\nradiocommercial\nradiocommunicatie\nradiocontact\nradiocontroledienst\nradiodiagnost\nradiodienst\nradiodirecteur\nradiodistributie\nradiodrama\nradiofrequentie\nradiogesprek\nradiogids\nradiogolf\nradiograferen\nradiografie\nradiografisch\nradiogram\nradiohandelaar\nradiohit\nradiohoorspel\nradiohut\nradiojournaal\nradiojournalist\nradiojournaliste\nradiokamer\nradiokast\nradiolamp\nradiolandschap\nradiolezing\nradiologie\nradiologisch\nradioloog\nradioluisteraar\nradiomaken\nradiomaker\nradioman\nradiomarkt\nradiomast\nradiomedewerker\nradiometer\nradiometrisch\nradiomicrofoon\nradionet\nradionetwerk\nradionieuws\nradionieuwsdienst\nradiopastor\nradiopastoraat\nradiopeiling\nradiopiraat\nradiopositie\nradiopraatje\nradiopresentator\nradiopresentatrice\nradioprogramma\nradioreclame\nradiorede\nradioreportage\nradioreporter\nradiorubriek\nradioscopie\nradioscopisch\nradioshow\nradiosignaal\nradiosonde\nradiospectrum\nradiospot\nradiostation\nradioster\nradiosterrenkunde\nradiosterrenwacht\nradiostilte\nradiostoring\nradiostraling\nradiostudio\nradiotalkshow\nradiotechniek\nradiotelefonie\nradiotelefoon\nradiotelegrafie\nradiotelegrafist\nradiotelegram\nradiotelescoop\nradiotherapeut\nradiotherapeutisch\nradiotherapie\nradiotoespraak\nradiotoestel\nradioverbinding\nradioverkeer\nradioverslag\nradioverslaggever\nradiovraaggesprek\nradiowekker\nradiozender\nradiozendinstallatie\nradiozendtijd\nradium\nradiumbehandeling\nradius\nradix\nradja\nradon\nradslag\nradstand\nradvormig\nrafactie\nrafel\nrafeldraad\nrafelen\nrafelig\nrafeling\nrafelrand\nraffelen\nraffia\nraffiawerk\nraffinaderij\nraffinadeur\nraffinage\nraffinagecapaciteit\nraffinageproces\nraffinagesector\nraffinement\nraffineren\nraften\nrafter\nrag\nraga\nragdun\nrage\nragebol\nragen\nragfijn\nraggen\nraglan\nraglanmouw\nragout\nragtime\nrai\nraid\nraider\nraiffeisenbank\nraiffeisenbanken\nrail\nrailauto\nrailinfrastructuur\nrailkanon\nrailleren\nrailnet\nrailsysteem\nrailterminal\nrailtraject\nrailtransport\nrailverbinding\nrailverkeer\nrailvervoer\nrailvoertuig\nraio\nraisonnabel\nraisonnement\nraisonneren\nraisonneur\nrak\nrake\nrakel\nrakelen\nrakelijzer\nrakelings\nraken\nraket\nraketaanval\nraketafweer\nraketafweersysteem\nraketauto\nraketbal\nraketbasis\nraketbom\nraketbrandstof\nraketdreiging\nraketgranaat\nraketinstallatie\nraketkop\nraketkoppen\nraketlancering\nraketmotor\nraketproef\nraketprogramma\nraketschild\nraketsla\nraketspel\nraketsysteem\nrakettechnologie\nraketten\nrakettenarsenaal\nrakettencrisis\nrakettenfabriek\nrakettenproductie\nrakettenschild\nrakettest\nrakettrap\nraketverdediging\nraketverdedigingssysteem\nraketvliegtuig\nraketwerper\nraki\nrakken\nrakker\nrakkeren\nrakkertje\nral\nrallen\nrallentando\nrally\nrallycross\nrallyrijden\nrallyrijder\nrallywagen\nram\nramadan\nramadanfeest\nrambo\nramboetan\nramee\nrameeplant\nramen\nramin\nraming\nramkoers\nramkraak\nrammei\nrammeien\nrammel\nrammelaar\nrammelen\nrammeling\nrammelkar\nrammelkast\nrammen\nrammenas\nrammenassen\nrammetje\nramp\nrampbestrijding\nrampbestrijdingsplan\nrampcafé\nrampdag\nrampenbestrijding\nrampenbestrijdingsplan\nrampencoördinator\nrampendienst\nrampenfilm\nrampenfonds\nrampenoefening\nrampenopvangplan\nrampenorganisatie\nrampenplan\nrampenscenario\nrampenstaf\nrampenteam\nrampenverzekering\nrampenzender\nrampetampen\nrampgebied\nrampjaar\nrampmelding\nrampnacht\nrampoefening\nrampokken\nrampokker\nrampplaats\nrampplek\nrampscenario\nrampsituatie\nrampspoed\nrampspoedig\nrampterrein\nramptoerisme\nramptoerist\nramptoestel\nramptrein\nrampvliegtuig\nrampvlucht\nrampzalig\nrampzalige\nrampzaligheid\nramshoofd\nramshoorn\nramshoren\nramsj\nramsjen\nranch\nrancher\nranchero\nrancho\nrancune\nrancuneus\nrand\nrandaarding\nrandapparaat\nrandapparatuur\nrandbalk\nrandbemerking\nrandbeplanting\nranddebiel\nrandeffect\nranden\nrandfiguur\nrandfunctie\nrandgebergte\nrandgebeuren\nrandgebied\nrandgemeente\nrandgroep\nrandgroepjongere\nrandmeer\nrandom\nrandpion\nrandprobleem\nrandprofiel\nrandpsychose\nrandschrift\nrandstaat\nrandstad\nrandstoring\nrandtype\nrandverschijnsel\nrandversiering\nrandvoorwaarde\nrandwaarde\nrandweg\nrandzee\nrang\nrangcijfer\nrange\nrangeerder\nrangeeremplacement\nrangeerheuvel\nrangeerlocomotief\nrangeerspoor\nrangeerterrein\nrangenstelsel\nrangeren\nranggetal\nranglijst\nrangnummer\nrangorde\nrangordening\nrangregeling\nrangschikken\nrangschikking\nrangtelwoord\nranja\nrank\nranken\nrankenkast\nrankheid\nranking\nrankwerk\nranonkel\nranonkelachtig\nrans\nransel\nranselen\nranseling\nransuil\nrantsoen\nrantsoenbon\nrantsoeneren\nrantsoenering\nranzig\nranzigheid\nrap\nrapact\nrapaille\nrapcrew\nrapen\nrapformatie\nrapgroep\nrapheid\nrapidschaak\nrapier\nrapmuziek\nrapnummer\nrappe\nrappel\nrappelleren\nrappen\nrapper\nrappigheid\nrapplaat\nrapport\nrapportage\nrapportageformulier\nrapportageplicht\nrapportageverplichting\nrapportcijfer\nrapportcijfers\nrapporteren\nrapportering\nrapporteur\nrapportrice\nrapscene\nrapsode\nrapsodie\nrapsodisch\nrapster\nrapstijl\nrapte\nraptekst\nrapunzel\nrapé\nrara\nrarefactie\nrarekiek\nrarigheid\nrariteit\nrariteitenkabinet\nrariteitenkamer\nrariteitenverzameling\nras\nrasartiest\nrasbestuurder\nrasdier\nrasecht\nraseren\nrasheid\nrashond\nraskenmerk\nraskruising\nrasp\nraspaard\nraspaardje\nraspen\nrasper\nrasperig\nrasphuis\nraspoetin\nraspvijl\nrassendiscriminatie\nrassengelijkheid\nrassenhaat\nrassenjustitie\nrassenkwestie\nrassenleer\nrassenlijst\nrassenonlusten\nrassenoorlog\nrassenpolitiek\nrassenprobleem\nrassenscheiding\nrassenstrijd\nrassentheorie\nrassenvermenging\nrassenverschil\nrassenvraagstuk\nrassenwaan\nrassenwet\nrassprinter\nrassé\nrasta\nrastafari\nrastakapsel\nraster\nrasterdiepdruk\nrasterdraad\nrasterdruk\nrasteren\nrastering\nrasterlijn\nrasterwerk\nrasure\nrasuur\nrasverbetering\nrasveredeling\nrasvereniging\nrasverschil\nrasverteller\nrasvooroordeel\nraszuiver\nraszuiverheid\nrat\nrata\nratafia\nrataplan\nratatouille\nratel\nratelaar\nratelboor\nratelen\nratelkous\nratelpopulier\nratelslag\nratelslang\nratificatie\nratificatieprocedure\nratificatieproces\nratificeren\nratificering\nratineren\nrating\nratingbureau\nratinglijst\nratinglijsten\nratingprijs\nratingpunt\nratiné\nratio\nrationaal\nrationale\nrationalisatie\nrationaliseren\nrationalisering\nrationalisme\nrationalist\nrationalistisch\nrationaliteit\nrationeel\nratjetoe\nrato\nratrace\nrats\nratsen\nratsmodee\nratten\nrattenbestrijding\nrattengif\nrattengift\nrattenhol\nrattenklem\nrattenkoning\nrattenkruid\nrattenkruit\nrattennest\nrattenplaag\nrattenstaart\nrattenval\nrattenvanger\nrattenvergift\nrattenvlooien\nratuur\nrauhfaser\nrauw\nrauwdouwer\nrauwelijks\nrauwelings\nrauwheid\nrauwig\nrauwigheid\nrauwkost\nrauwkostsalade\nrauzen\nravage\nravanger\nravelijn\nraven\nravenaas\nravenbek\nravennest\nravenveer\nravenzwart\nravigotesaus\nravijn\nravioli\nravissant\nravitailleren\nravitaillering\nravotten\nrawlplug\nrayon\nrayonchef\nrayondirecteur\nrayongericht\nrayonhoofd\nrayonkantoor\nrayonleider\nrayonmanager\nrayonverband\nrazeil\nrazen\nrazend\nrazendknap\nrazendsnel\nrazernij\nrazzia\nrazzia-achtig\nre\nre-educatie\nre-integratie\nre-integratiebedrijf\nre-integratiebeleid\nre-integratiegedeelte\nre-integratieproject\nre-integreren\nre-interpretatie\nreaal\nreactie\nreactief\nreactiekracht\nreactiemacht\nreactiemotor\nreactiepatroon\nreactiesnelheid\nreactietijd\nreactievat\nreactievermogen\nreactionair\nreactiveren\nreactivering\nreactiviteit\nreactor\nreactorbrandstof\nreactorcentrale\nreactorcentrum\nreactorgebouw\nreactorkern\nreactorvat\nreader\nready\nreadymade\nreaffectatie\nreageerbuis\nreageerbuisbaby\nreageerbuisbevruchting\nreageermiddel\nreagens\nreageren\nrealia\nrealisatie\nrealisator\nrealiseerbaar\nrealiseren\nrealisering\nrealisme\nrealist\nrealistisch\nrealiteit\nrealiteitsbesef\nrealiteitsgehalte\nrealiteitsgevoel\nrealiteitswaarde\nrealiteitszin\nrealiter\nreality-tv\nrealityprogramma\nrealitysoap\nreallifesoap\nrealo\nrealpolitik\nreanimatie\nreanimatietechniek\nreanimeren\nreassurantie\nreassureren\nrebbe\nrebel\nrebellenbeweging\nrebellenclub\nrebellengebied\nrebellengroep\nrebellengroepering\nrebellenkamp\nrebellenleger\nrebellenleider\nrebellenorganisatie\nrebellenregering\nrebelleren\nrebellie\nrebels\nrebirthing\nrebooten\nrebound\nrebus\nrecalcitrant\nrecalcitrantie\nrecapitulatie\nrecapituleren\nreceiver\nrecensent\nrecensente\nrecenseren\nrecensie\nrecensie-exemplaar\nrecent\nrecentelijk\nrecenter\nrecentralisatie\nrecepis\nrecept\nreceptbriefje\nreceptenboek\nrecepteren\nreceptformulier\nreceptie\nreceptieavond\nreceptiebalie\nreceptieboek\nreceptief\nreceptiegeschiedenis\nreceptiekosten\nreceptiezaal\nreceptionist\nreceptioniste\nreceptiviteit\nreceptor\nreceptuur\nreceptvrij\nreces\nrecessie\nrecessieachtig\nrecessiebestendig\nrecessief\nrecessiejaar\nrecette\nrechaud\nrecherche\nrecherche-eenheid\nrecherchebijstandsteam\nrecherchebureau\nrecherchecapaciteit\nrecherchechef\nrecherchedienst\nrechercheonderzoek\nrechercheren\nrechercheteam\nrechercheur\nrecherchevaartuig\nrecherchewerk\nrecht\nrecht voor z'n raap\nrechtaan\nrechtbank\nrechtbankjury\nrechtbankpresident\nrechtbankthriller\nrechtbankverslag\nrechtbankvonnis\nrechtbankvoorzitter\nrechtbreien\nrechtbuigen\nrechtdoor\nrechtdoorzee\nrechtdraads\nrechte\nrechtelijk\nrechteloos\nrechteloosheid\nrechten\nrechtenfaculteit\nrechtens\nrechtenstudent\nrechtenstudente\nrechtenstudie\nrechtenvrij\nrechter\nrechter-commissaris\nrechter-plaatsvervanger\nrechterarm\nrechterbeen\nrechterbenedenhoek\nrechterbladzijde\nrechterborst\nrechterbovenbeen\nrechterbovenhoek\nrechterdeel\nrechteren\nrechterenkel\nrechterflank\nrechterhand\nrechterhelft\nrechterhersenhelft\nrechterheup\nrechterhoek\nrechterkant\nrechterkantlijn\nrechterknie\nrechterkolom\nrechterlijk\nrechtermarge\nrechtermiddenvelder\nrechtermuisknop\nrechteroever\nrechteronderbeen\nrechteroog\nrechteroor\nrechterpagina\nrechterportier\nrechterrijstrook\nrechters-commissarissen\nrechtersambt\nrechterschap\nrechterschoen\nrechterschouder\nrechterspits\nrechtersrecht\nrechterstoel\nrechtervleugel\nrechtervoet\nrechterwang\nrechterwijsvinger\nrechterzij\nrechterzijde\nrechtgeaard\nrechtgelovig\nrechtgelovige\nrechtgelovigheid\nrechthebbende\nrechtheid\nrechthoek\nrechthoekig\nrechthoekszijde\nrechthouden\nrechthuis\nrechtkantig\nrechtlijnig\nrechtlijnigheid\nrechtmaken\nrechtmatig\nrechtmatigheid\nrechtop\nrechtopgezet\nrechtopstaand\nrechtover\nrechtovereind\nrechts\nrechts-conservatief\nrechts-extremisme\nrechts-extremistisch\nrechts-liberaal\nrechts-populistisch\nrechts-radicaal\nrechtsachter\nrechtsaf\nrechtsback\nrechtsbasis\nrechtsbedeling\nrechtsbedrijf\nrechtsbeginsel\nrechtsbegrip\nrechtsbenig\nrechtsbescherming\nrechtsbestel\nrechtsbetrekking\nrechtsbevoegd\nrechtsbevoegdheid\nrechtsbewustzijn\nrechtsbijstand\nrechtsbijstandsverzekering\nrechtsbijstandverzekeraar\nrechtsbijstandverzekeraars\nrechtsbijstandverzekering\nrechtsbinnen\nrechtsboven\nrechtsbuiten\nrechtschapen\nrechtschapenheid\nrechtscollege\nrechtscultuur\nrechtsdraaiend\nrechtsdwang\nrechtse\nrechtsfaculteit\nrechtsfeit\nrechtsfiguur\nrechtsfilosofie\nrechtsfilosoof\nrechtsgang\nrechtsgebied\nrechtsgebouw\nrechtsgeding\nrechtsgeldig\nrechtsgeldigheid\nrechtsgeleerd\nrechtsgeleerde\nrechtsgeleerdheid\nrechtsgelijkheid\nrechtsgemeenschap\nrechtsgeschiedenis\nrechtsgeschil\nrechtsgevoel\nrechtsgoed\nrechtsgrond\nrechtsgrondslag\nrechtshalf\nrechtshandeling\nrechtshandhaving\nrechtshandig\nrechtsherstel\nrechtshistorisch\nrechtshulp\nrechtshulpverdrag\nrechtshulpverlening\nrechtshulpverzoek\nrechtsingang\nrechtsinstantie\nrechtsinstituut\nrechtskarakter\nrechtskennis\nrechtskracht\nrechtskundig\nrechtskundige\nrechtslaan\nrechtsleer\nrechtsmacht\nrechtsmiddel\nrechtsmisbruik\nrechtsom\nrechtsomkeer\nrechtsomkeert\nrechtsonder\nrechtsongelijkheid\nrechtsontwikkeling\nrechtsonzekerheid\nrechtsopvatting\nrechtsopvolger\nrechtsorde\nrechtsorgaan\nrechtspersoon\nrechtspersoonlijkheid\nrechtspleging\nrechtsplicht\nrechtspositie\nrechtspositioneel\nrechtspraak\nrechtspraktijk\nrechtspreken\nrechtsprincipe\nrechtsprobleem\nrechtsprocedure\nrechtspsychologie\nrechtspsycholoog\nrechtsregel\nrechtssfeer\nrechtssociologie\nrechtsstaat\nrechtsstatelijk\nrechtsstelsel\nrechtsstudent\nrechtssysteem\nrechtstaal\nrechtstaan\nrechtstaat\nrechtstand\nrechtstandig\nrechtstelsel\nrechtsterm\nrechtstheorie\nrechtstitel\nrechtstoepassing\nrechtstoestand\nrechtstraditie\nrechtstreeks\nrechtsverdraaiing\nrechtsvergelijking\nrechtsverkeer\nrechtsverkrachting\nrechtsvermoeden\nrechtsvervolging\nrechtsverwerking\nrechtsvinding\nrechtsvoor\nrechtsvoorganger\nrechtsvordering\nrechtsvorm\nrechtsvorming\nrechtsvraag\nrechtswege\nrechtsweigering\nrechtswetenschap\nrechtswetenschappelijk\nrechtswezen\nrechtswinkel\nrechtswinkelier\nrechtszaak\nrechtszaal\nrechtszekerheid\nrechtszitting\nrechtte\nrechttoe\nrechttoe rechtaan\nrechttrekken\nrechtuit\nrechtvaardig\nrechtvaardige\nrechtvaardigen\nrechtvaardigheid\nrechtvaardigheidsgevoel\nrechtvaardigheidsgrond\nrechtvaardigheidsgronden\nrechtvaardigheidsoverweging\nrechtvaardigheidsprincipe\nrechtvaardiging\nrechtvaardigingsgrond\nrechtvaardiglijk\nrechtvaardigmaking\nrechtverkrijgende\nrechtvleugelig\nrechtzetten\nrechtzetting\nrechtzijdig\nrechtzinnig\nrechtzinnigheid\nrecidief\nrecidive\nrecidivegevaar\nrecidivekans\nrecidiveren\nrecidivisme\nrecidivist\nreciet\nrecipiënt\nrecipiëren\nreciproceren\nreciprociteit\nreciproque\nrecirculatie\nrecirculeren\nrecital\nrecitando\nrecitatie\nrecitatief\nreciteren\nreclamant\nreclamatie\nreclame\nreclame-industrie\nreclame-inkomsten\nreclame-uitgaven\nreclame-uiting\nreclameaanbieding\nreclameachtig\nreclameactie\nreclameadviseur\nreclameafdeling\nreclameaffiche\nreclameartikel\nreclamebedrijf\nreclamebeleid\nreclamebesluit\nreclameblad\nreclameblok\nreclameboodschap\nreclamebord\nreclamebranche\nreclamebudget\nreclamebureau\nreclamecampagne\nreclamechef\nreclamecode\nreclamecodecommissie\nreclameconcern\nreclamecontract\nreclamedoeleinden\nreclamedrukwerk\nreclamefestival\nreclamefilm\nreclamefolder\nreclamefoto\nreclamefotografie\nreclamegeld\nreclamejongen\nreclamekaravaan\nreclamekosten\nreclamekreet\nreclameleus\nreclamemaken\nreclamemaker\nreclameman\nreclamemarkt\nreclamemateriaal\nreclamemedium\nreclamemensen\nreclamemiddel\nreclamemonopolie\nreclamemuziek\nreclameplaat\nreclameposter\nreclameprijs\nreclameraad\nreclamerecht\nreclameregie\nreclameren\nreclameruimte\nreclameschilder\nreclamesector\nreclameslagzinnen\nreclameslogan\nreclamespot\nreclamestunt\nreclametaal\nreclameteam\nreclametechniek\nreclametekenaar\nreclametekening\nreclametekst\nreclametijd\nreclamevak\nreclamevakblad\nreclameverbod\nreclameverpakking\nreclamevliegtuig\nreclamevlucht\nreclamevluchten\nreclamevrij\nreclamewagen\nreclamewereld\nreclamewezen\nreclamezendtijd\nreclamezuil\nreclasseren\nreclassering\nreclasseringsambtenaar\nreclasseringscontact\nreclasseringsmedewerker\nreclasseringsraad\nreclasseringsrapport\nreclasseringstoezicht\nreclasseringswerk\nrecognitie\nrecognitiegeld\nrecollectie\nrecombinant\nrecombinant-DNA\nrecombinatie\nrecombineren\nrecommandabel\nrecommandatie\nrecommanderen\nreconciliatie\nreconquista\nreconstructie\nreconstructief\nreconstructieplan\nreconstructietekening\nreconstrueren\nreconvalescent\nreconvalescentie\nreconventie\nreconversie\nrecord\nrecordaantal\nrecordbedrag\nrecordcijfer\nrecorder\nrecorderdeck\nrecordgroei\nrecordhoeveelheid\nrecordhoogte\nrecordhouder\nrecordhoudster\nrecordinternational\nrecordjaar\nrecordjacht\nrecordkampioen\nrecordkoers\nrecordlaagte\nrecordniveau\nrecordomzet\nrecordopbrengst\nrecordoplage\nrecordpeil\nrecordpoging\nrecordprijs\nrecordrace\nrecordreeks\nrecordresultaat\nrecordscore\nrecordsnelheid\nrecordsprong\nrecordstand\nrecordtempo\nrecordtijd\nrecordvangst\nrecordverbetering\nrecordverbruik\nrecordverkoop\nrecordverlies\nrecordvlucht\nrecordwinst\nrecovery\nrecreant\nrecreatie\nrecreatiebad\nrecreatiebedrijf\nrecreatiebos\nrecreatiebungalow\nrecreatiecentrum\nrecreatiecomplex\nrecreatiedruk\nrecreatief\nrecreatiegebied\nrecreatieoord\nrecreatiepark\nrecreatieplas\nrecreatieproject\nrecreatieroute\nrecreatieruimte\nrecreatieschap\nrecreatiesector\nrecreatiesport\nrecreatieterrein\nrecreatievaart\nrecreatieverkeer\nrecreatievoorziening\nrecreatiewoning\nrecreatiezaal\nrecreëren\nrectaal\nrectificatie\nrectificeren\nrecto\nrector\nrector magnificus\nrectoraal\nrectoraat\nrectoscoop\nrectoscopie\nrectrix\nrectum\nrecuperatie\nrecupereren\nrecurrent\nrecurrente\nrecursie\nrecursief\nrecursiviteit\nrecyclage\nrecyclagebedrijf\nrecyclebaar\nrecyclebedrijf\nrecyclebedrijven\nrecycleerbaar\nrecyclefabriek\nrecyclefabrieken\nrecyclen\nrecycleren\nrecycling\nrecyclingbedrijf\nred.\nredacteur\nredacteurschap\nredactie\nredactiebureau\nredactiebureel\nredactiechef\nredactiecommissie\nredactiegeheim\nredactiekantoor\nredactiekosten\nredactielid\nredactielokaal\nredactieraad\nredactiesecretariaat\nredactiestatuut\nredactieteam\nredactievergadering\nredactiewerk\nredactiezaal\nredactioneel\nredactrice\nreddeloos\nreddeloosheid\nredden\nredder\nredderaar\nredderen\nreddering\nredding\nreddingactie\nreddingboei\nreddingboot\nreddingbrigade\nreddingbroek\nreddinggordel\nreddingmaatschappij\nreddingmiddel\nreddingpost\nreddingsactie\nreddingsboei\nreddingsboot\nreddingsbrigade\nreddingsbroek\nreddingsdienst\nreddingsgordel\nreddingshelikopter\nreddingskans\nreddingsloep\nreddingsmaatschappij\nreddingsmiddel\nreddingsoperatie\nreddingspakket\nreddingsplan\nreddingsplank\nreddingsploeg\nreddingspoging\nreddingspost\nreddingssloep\nreddingsstation\nreddingstation\nreddingsteam\nreddingstoestel\nreddingsvaartuig\nreddingsvest\nreddingsvlot\nreddingswerk\nreddingswerker\nreddingvest\nreddingvlot\nrede\nrededeel\nredekavelen\nredekaveling\nredekunde\nredekundig\nredekunst\nredekunstig\nredelijk\nredelijkerwijs\nredelijkerwijze\nredelijkheid\nredelijkheidsbeginsel\nredelijkheidstoets\nredeloos\nredeloosheid\nredemptorist\nredemptoristen\nreden\nredenaar\nredenaarsgave\nredenaarstalent\nredenaren\nredenatie\nredeneerfout\nredeneerkunde\nredeneerkunst\nredeneertrant\nredeneren\nredenering\nredengevend\nredengeving\nreder\nrederij\nrederijk\nrederijker\nrederijkerij\nrederijkerskamer\nrederijkerskunst\nredersfamilie\nrederskantoor\nredersvereniging\nredetwist\nredetwisten\nredevoeren\nredevoering\nredewisseling\nredhibitie\nredhibitoir\nredigeren\nredingote\nredmiddel\nredoubleren\nredoublet\nredoute\nredoutezaal\nredres\nredresseren\nredster\nreduceren\nreductie\nreductiedeling\nreductiedoelstelling\nreductiegetal\nreductiekaart\nreductieplan\nreductieprijs\nreductieproces\nreductieregeling\nreductietabel\nreductio ad absurdum\nreductionisme\nreductionist\nreductionistisch\nredundant\nredundantie\nreduplicatie\nredzaam\nredzaamheid\nree\nreebok\nreebout\nreebruin\nreed\nreeds\nreef\nreefer\nreeg\nreegeit\nreek\nreekalf\nreeks\nreekshoofd\nreel\nreen\nreep\nreerug\nrees\nreeschaaf\nreet\nreeuw\nreeuwen\nreeuws\nreevlees\nreewild\nrefactie\nrefectorium\nreferaat\nreferee\nreferenda\nreferendabel\nreferendaris\nreferendum\nreferendumcampagne\nreferendumcommissie\nreferendums\nreferendumuitslag\nreferendumverordening\nreferendumverzoek\nreferendumvoorstel\nreferendumwet\nreferent\nreferentie\nreferentieaandeelhouder\nreferentieaandeelhouders\nreferentiebestek\nreferentieel\nreferentiegroep\nreferentiejaar\nreferentiekader\nreferentieknooppunt\nreferentiekoers\nreferentielening\nreferentielijst\nreferentieperiode\nreferentieprijs\nreferentiepunt\nreferentierente\nreferentiesysteem\nreferentiewaarde\nreferentiële\nrefereren\nreferte\nreferte-eis\nreflatie\nreflectant\nreflecteren\nreflectie\nreflectief\nreflectiefactor\nreflectiescherm\nreflector\nreflectorisch\nreflex\nreflexbeweging\nreflexcamera\nreflexhamer\nreflexief\nreflexiviteit\nreflexmatig\nreflexwerking\nreflexzoeker\nrefo\nreform\nreformartikel\nreformateur\nreformatie\nreformator\nreformatorisch\nreformbeweging\nreformen\nreformeren\nreformhuis\nreformisme\nreformist\nreformistisch\nreformvoeding\nreformwinkel\nreformzaak\nrefractie\nrefractometer\nrefractor\nrefrein\nrefter\nrefugié\nrefuseren\nrefutatie\nregaal\nregaleren\nregalia\nregaliën\nregarderen\nregatta\nregeerakkoord\nregeerambt\nregeerbaar\nregeerbaarheid\nregeerder\nregeerkunst\nregeermacht\nregeerperiode\nregeerploeg\nregeerprogramma\nregeerstijl\nregel\nregelaar\nregelafbreking\nregelafstand\nregelapparatuur\nregelbaar\nregelbegin\nregeldrift\nregeldrukker\nregeleinde\nregelen\nregelgevend\nregelgever\nregelgeving\nregelhoogte\nregeling\nregelingscommissie\nregelingsloon\nregelkamer\nregelklep\nregelknop\nregellengte\nregelloos\nregelloosheid\nregellus\nregelmaat\nregelmatig\nregelmatigheid\nregelneef\nregelneverij\nregelniveau\nregelpaneel\nregelrecht\nregels\nregelstaaf\nregelsysteem\nregeltechniek\nregeltransformator\nregelval\nregelvast\nregelverdichting\nregelweerstand\nregelwerk\nregelwijzer\nregelwijziging\nregelzucht\nregen\nregenachtig\nregenarm\nregenbak\nregenboog\nregenboogcoalitie\nregenboogforel\nregenboogjacht\nregenboogklasse\nregenboognatie\nregenboogtrui\nregenboogvlies\nregenbroek\nregenbui\nregendag\nregendans\nregendicht\nregendroppel\nregendruppel\nregenen\nregeneraat\nregeneratie\nregeneratief\nregeneratievermogen\nregenerator\nregenereren\nregenfront\nregengebied\nregengod\nregengordijn\nregenhoed\nregeninstallatie\nregenjack\nregenjas\nregenkap\nregenkleding\nregenlucht\nregenmachine\nregenmaker\nregenmantel\nregenmeter\nregenmoesson\nregenpak\nregenpauze\nregenperiode\nregenpijp\nregenput\nregenrijk\nregenrivier\nregenschaduw\nregenscherm\nregenseizoen\nregent\nregentaat\nregentendom\nregentenfamilie\nregentenkamer\nregentenkliek\nregentenmentaliteit\nregentenstuk\nregententijd\nregentes\nregentesk\nregentijd\nregentje\nregenton\nregentschap\nregentschapsraad\nregenval\nregenverlet\nregenverzekering\nregenvlaag\nregenwater\nregenweer\nregenwolk\nregenworm\nregenwoud\nregenwulp\nregenzone\nregeren\nregering\nregering-in-ballingschap\nregeringsadviseur\nregeringsakkoord\nregeringsambtenaar\nregeringsapparaat\nregeringsbank\nregeringsbeleid\nregeringsbeslissing\nregeringsbesluit\nregeringsbureau\nregeringscentrum\nregeringscijfers\nregeringscoalitie\nregeringscollege\nregeringscombinatie\nregeringscommissaris\nregeringscommissie\nregeringsconferentie\nregeringscontrole\nregeringscrisis\nregeringsdeelname\nregeringsdelegatie\nregeringsformatie\nregeringsfractie\nregeringsfunctie\nregeringsfunctionaris\nregeringsgebied\nregeringsgebouw\nregeringshulp\nregeringsinstantie\nregeringsjaar\nregeringsjubileum\nregeringskamp\nregeringskandidaat\nregeringskrant\nregeringsleger\nregeringsleider\nregeringsleidster\nregeringslid\nregeringsmaatregel\nregeringsmacht\nregeringsmeerderheid\nregeringsniveau\nregeringsnota\nregeringsonderhandelaar\nregeringsonderzoek\nregeringsontwerp\nregeringsorgaan\nregeringspartij\nregeringspartner\nregeringsperiode\nregeringsploeg\nregeringspolitiek\nregeringspost\nregeringsprogramma\nregeringsraad\nregeringsrapport\nregeringsstad\nregeringsstandpunt\nregeringssteun\nregeringsstuk\nregeringssysteem\nregeringstafel\nregeringstermijn\nregeringstijd\nregeringstoestel\nregeringstop\nregeringstroepen\nregeringsverantwoordelijkheid\nregeringsverklaring\nregeringsvertegenwoordiger\nregeringsvliegtuig\nregeringsvoorlichtingsdienst\nregeringsvoornemen\nregeringsvoorstel\nregeringsvorm\nregeringsvorming\nregeringswege\nregeringswerk\nregeringswijk\nregeringswissel\nregeringswisseling\nregeringswoordvoerder\nregeringszaak\nregeringszetel\nregeringszijde\nregest\nregestenboek\nreggae\nreggaenummer\nreggaezanger\nregie\nregieaanwijzing\nregieassistent\nregiedebuut\nregiefout\nregiefunctie\nregiegroep\nregiekamer\nregiem\nregieopleiding\nregieopvatting\nregieprijs\nregierol\nregievoering\nregiezitting\nregime\nregiment\nregimentscommandant\nregimentsdokter\nregimentsschool\nregimentsstaf\nregio\nregio-indeling\nregiobestuur\nregiobestuurder\nregiobijeenkomst\nregiobreed\nregiocode\nregiocoördinator\nregiodirecteur\nregiofunctie\nregiokantoor\nregiokorps\nregiokorting\nregiolect\nregiomanager\nregionaal\nregionalisatie\nregionaliseren\nregionalisering\nregionalisme\nregionalist\nregionalistisch\nregionen\nregionieuws\nregiopolitie\nregioraad\nregiotaxi\nregioteam\nregiotrein\nregiovisie\nregiovoorzitter\nregiovorming\nregisseren\nregisseur\nregisseur-scenarist\nregisseursduo\nregisseurstoneel\nregisseuse\nregister\nregisteraccountant\nregisterband\nregisterdeel\nregisteren\nregistergoederen\nregisterhouder\nregisterinhoud\nregisterkaart\nregisterknop\nregistermeester\nregisternummer\nregisterpapier\nregistersysteem\nregisterton\nregisterwalsen\nregistratie\nregistratieapparaat\nregistratiebelasting\nregistratiebewijs\nregistratieboek\nregistratieboeken\nregistratiebureau\nregistratiecommissie\nregistratiecomputer\nregistratief\nregistratieformulier\nregistratiegegeven\nregistratiekaart\nregistratiekaarten\nregistratiekamer\nregistratiekantoor\nregistratiekosten\nregistratiemethode\nregistratienummer\nregistratieplicht\nregistratieprocedure\nregistratiepunt\nregistratiepunten\nregistratierecht\nregistratierechten\nregistratiesysteem\nregistratietechniek\nregistrator\nregistratuur\nregistreerapparaat\nregistreerbaar\nregistreren\nregistrering\nreglement\nreglementair\nreglementeren\nreglementering\nreglementswijziging\nregres\nregresrecht\nregressie\nregressief\nregressietherapie\nregulair\nregularisatie\nregularisatiecampagne\nregularisatiecommissie\nregularisatieprocedure\nregularisatiewet\nregulariseren\nregularisering\nregulariteit\nregulateur\nregulatie\nregulatief\nregulator\nreguleren\nregulering\nregulier\nrehabilitatie\nrehabilitatiecentrum\nrehabilitatieprogramma\nrehabiliteren\nrehydratie\nrei\nreidans\nreidansen\nreien\nreiger\nreigerbos\nreigerkolonie\nreigernest\nreigersnest\nreiken\nreikhalzen\nreikhalzend\nreikhoogte\nreiki\nreikitherapeut\nreikitherapeute\nreikitherapie\nreikwijdte\nreilen\nrein\nreincultuur\nreine\nreine-claude\nreinheid\nreinigen\nreiniger\nreiniging\nreinigingsbedrijf\nreinigingscrème\nreinigingsdienst\nreinigingsheffing\nreinigingsinstallatie\nreinigingskosten\nreinigingsmiddel\nreinigingspolitie\nreinigingsproces\nreinigingsrecht\nreinigingsritueel\nreinigingswagen\nreis\nreisadvies\nreisafstand\nreisagent\nreisagentschap\nreisapotheek\nreisavontuur\nreisbagage\nreisbedrijf\nreisbenodigdheden\nreisbeperking\nreisbeschrijving\nreisbestemming\nreisbeurs\nreisbijstand\nreisbijstandsverzekering\nreisbiljet\nreisblad\nreisboek\nreisboekhandel\nreisbranche\nreisbrochure\nreisbudget\nreisbureau\nreisbus\nreischaaf\nreischeque\nreisconcern\nreisdag\nreisdagboek\nreisdeclaratie\nreisdeken\nreisdeviezen\nreisdocument\nreisdoel\nreisduif\nreisduur\nreisexemplaar\nreisfolder\nreisgedrag\nreisgeld\nreisgelegenheid\nreisgemak\nreisgenoot\nreisgenote\nreisgezel\nreisgezelschap\nreisgids\nreisgoed\nreisgroep\nreishandboek\nreisherinnering\nreisindustrie\nreisinformatie\nreisjournaal\nreiskatern\nreiskoffer\nreiskosten\nreiskostenaftrek\nreiskostenforfait\nreiskostenregeling\nreiskostenvergoeding\nreislectuur\nreisleider\nreisleidster\nreisliteratuur\nreislust\nreislustig\nreismagazine\nreismakker\nreismand\nreismarkt\nreisnecessaire\nreisonderneming\nreisorder\nreisorganisatie\nreisorganisator\nreispapieren\nreispas\nreisplan\nreisplanner\nreisprogramma\nreisreportage\nreisroute\nreisschema\nreisschrijver\nreissector\nreisseizoen\nreissom\nreistas\nreistijd\nreistijdvergoeding\nreisvaardig\nreisverbod\nreisvereniging\nreisvergoeding\nreisvergunning\nreisverhaal\nreisverkeer\nreisverslag\nreisverzekering\nreiswagen\nreisweg\nreiswekker\nreiswereld\nreiswieg\nreiswijzer\nreiszak\nreisziekte\nreizen\nreizend\nreiziger\nreizigersaanbod\nreizigersbedrijf\nreizigersdiarree\nreizigersgroei\nreizigersinformatie\nreizigerskilometer\nreizigersorganisatie\nreizigersprovisie\nreizigersstroom\nreizigerstrein\nreizigersvereniging\nreizigersverkeer\nreizigersvervoer\nreizigster\nrek\nrekbaar\nrekbaarheid\nrekband\nrekbank\nrekel\nreken\nrekenaar\nrekenaarster\nrekenapparaat\nrekenarij\nrekenautomaat\nrekenblad\nrekenboek\nrekenbord\nrekencapaciteit\nrekencentrum\nrekeneenheid\nrekenen\nrekenfout\nrekening\nrekening-courant\nrekening-courantkrediet\nrekeninghouder\nrekeningnummer\nrekeningoverzicht\nrekeningrijden\nrekeningsaldo\nrekeningschema\nrekeninguittreksel\nrekenkracht\nrekenkunde\nrekenkundig\nrekenkundige\nrekenkunst\nrekenlat\nrekenles\nrekenliniaal\nrekenmachine\nrekenmeester\nrekenmethode\nrekenmodel\nrekenmunt\nrekenonderwijs\nrekenopgave\nrekenorgaan\nrekenplichtig\nrekenplichtige\nrekenplichtigheid\nrekenprogramma\nrekenraam\nrekenrente\nrekenschap\nrekensnelheid\nrekensom\nrekentaak\nrekentabel\nrekentabellen\nrekentechniek\nrekentijd\nrekentruc\nrekentuig\nrekenvaardigheid\nrekenvergoeding\nrekenvermogen\nrekenvoorbeeld\nrekenvoorschrift\nrekenwerk\nrekenwijze\nrekenwonder\nrekest\nrekestreren\nrekgrens\nrekke\nrekkelijk\nrekkelijken\nrekkelijkheid\nrekken\nrekker\nrekkerig\nrekking\nrekolonisatie\nrekristallisatie\nrekruteren\nrekrutering\nrekruteringsbasis\nrekruut\nrekspanning\nrekstok\nrekverband\nrekwest\nrekwestrant\nrekwestreren\nrekwirant\nrekwireren\nrekwisiet\nrekwisieten\nrekwisiteur\nrekwisitie\nrel\nrelaas\nrelais\nrelaiszender\nrelance\nrelaps\nrelateren\nrelatering\nrelatie\nrelatiebeheer\nrelatiebeheerder\nrelatiebemiddeling\nrelatiebemiddelingsbureau\nrelatiebureau\nrelatief\nrelatiegeschenk\nrelatiekomedie\nrelatiemanagement\nrelatiemarkt\nrelatienetwerk\nrelatieprobleem\nrelatieproblematiek\nrelatiesfeer\nrelatietherapie\nrelatietraining\nrelatievorm\nrelatievorming\nrelationeel\nrelativeren\nrelativering\nrelativeringsvermogen\nrelativisme\nrelativistisch\nrelativiteit\nrelativiteitsbeginsel\nrelativiteitstheorie\nrelativum\nrelax\nrelaxatie\nrelaxed\nrelaxen\nrelaxruimte\nrelayeren\nrelease\nrelevant\nrelevantie\nrelevatie\nreleveren\nrelict\nreliek\nreliekaltaar\nreliekhouder\nreliekschrijn\nreligie\nreligieus\nreligieus-culturele\nreligieus-politieke\nreligieuze\nreligiositeit\nrelikwie\nreling\nreliquiarium\nreliëf\nreliëfdruk\nreliëfkaart\nrellen\nrellenbrigade\nrellerig\nrellerigheid\nrelletje\nrelmuis\nrelnicht\nrelocatie\nrelschopper\nreltrapper\nrem\nremafstand\nremake\nrembekrachtiging\nremblok\nrembours\nremboursement\nrembourseren\nrembourskosten\nrembourszending\nrembrandtesk\nremcilinder\nremcircuit\nremedial teacher\nremedial teaching\nremedie\nremediëren\nremenergie\nremgeld\nremigrant\nremigratie\nremigratiebeleid\nremigratieproject\nremigratieregeling\nremigreren\nreminder\nreminiscens\nreminiscentie\nreminrichting\nremise\nremiseren\nremisestelling\nremissie\nremittent\nremitteren\nremix\nremixen\nremkabel\nremketting\nremklep\nremkracht\nremkrachtverdeler\nremlicht\nremmechanisme\nremmen\nremmer\nremming\nremmingswerk\nremmingwerk\nremnaaf\nremolie\nremonstrant\nremonstranten\nremonstrantie\nremonstrants\nremonstreren\nremonte\nremontoir\nremote sensing\nremouladesaus\nremous\nremover\nremparachute\nrempedaal\nremplaceren\nremplaçant\nremproef\nremraket\nremschijf\nremschoen\nremslaap\nremspoor\nremsysteem\nremtoestel\nremunereren\nremvermogen\nremvloeistof\nremvoering\nremweg\nremwerking\nren\nrenaissance\nrenaissancekasteel\nrenaissancemuziek\nrenaissanceschilder\nrenaissancestijl\nrenaissancetijd\nrenaissancist\nrenaissancistisch\nrenationalisatie\nrenationaliseren\nrenationalisering\nrenbaan\nrenbode\nrencontre\nrendabel\nrendabiliseren\nrendabiliteit\nrendang\nrendement\nrendementscijfer\nrendementscurve\nrendementseis\nrendementsheffing\nrendementsniveau\nrendementsnorm\nrendementsverbetering\nrendementsverhoging\nrendementsverlies\nrendementsverschil\nrendementsverwachting\nrenderen\nrendez-vous\nrendez-voustje\nrendier\nrendierleer\nrendiermos\nrendiervel\nrendiervlees\nrenegaat\nrenen\nrenet\nreng\nrenminbi\nrennen\nrenner\nrennerskwartier\nrennersvakbond\nrennersveld\nrenommee\nrenonce\nrenonceren\nrenovatie\nrenovatiekosten\nrenovatiemarkt\nrenovatieplan\nrenovatieproject\nrenovatiewerkzaamheden\nrenoveren\nrenpaard\nrenperk\nrenprijs\nrensport\nrenstal\nrentabiliseren\nrentabiliteit\nrentambt\nrente\nrente-effect\nrente-evolutie\nrente-inkomsten\nrente-uitgaven\nrenteaanpassing\nrenteaftrek\nrenteangst\nrentebank\nrentebaten\nrentebeding\nrentebedrag\nrentebedragen\nrentebeleid\nrenteberekening\nrentebeslissing\nrentebesluit\nrentebesparing\nrentebetaling\nrentebewijs\nrentebijschrijving\nrentebijslag\nrentebrief\nrenteclausule\nrentecoupon\nrentecurve\nrentedag\nrentedaling\nrentederving\nrentedragend\nrentedruk\nrentefonds\nrentegamma\nrentegarantie\nrentegevend\nrentegevoelig\nrentegevoeligheid\nrentegroeifonds\nrenteheffer\nrentehobbel\nrentekaart\nrentekoers\nrentekosten\nrentelast\nrentelasten\nrenteloos\nrentemaatregel\nrentemarge\nrentemarkt\nrenten\nrentenier\nrentenieren\nrentenierster\nrenteniveau\nrentenummer\nrenteontwikkeling\nrenteopbrengst\nrentepeil\nrentepercentage\nrentepolitiek\nrentepremie\nrenteproduct\nrenterekening\nrenteresultaat\nrenterisico\nrenteschuld\nrentespaarbrief\nrentestand\nrentestandaard\nrentestijging\nrentestructuur\nrentesubsidie\nrentesubsidieregeling\nrentetabel\nrentetarief\nrentetermijn\nrentetheorie\nrentetrekker\nrentevast\nrenteverbod\nrentevergoeding\nrenteverhoging\nrenteverlaging\nrenteverlies\nrenteverrekening\nrenteverschil\nrenteverzekering\nrentevoet\nrentevoordeel\nrentevrees\nrentevrij\nrentevrijstelling\nrentewapen\nrentewijziging\nrentewinst\nrentezegel\nrentmeester\nrentmeesterschap\nrentree\nrenunciatie\nrenversaal\nrenvooi\nrenvooieren\nrenwagen\nreometer\nreorganisatie\nreorganisatiekosten\nreorganisatielast\nreorganisatieplan\nreorganisatieproces\nreorganisatieronde\nreorganisatievoorziening\nreorganisator\nreorganiseren\nreparabel\nreparateur\nreparatie\nreparatiebedrag\nreparatiebedrijf\nreparatiehelling\nreparatiekosten\nreparatieofferte\nreparatieopdracht\nreparatiewerf\nreparatiewerk\nreparatiewerkzaamheden\nreparatiewet\nreparatiewetgeving\nrepareren\nrepartitie\nrepasseren\nrepatriant\nrepatriatie\nrepatriëren\nrepatriëring\nrepel\nrepelaar\nrepelen\nrepen\nrepercussie\nrepertoire\nrepertoiregezelschap\nrepertoirekennis\nrepertoirekeuze\nrepertoirestuk\nrepertoiretoneel\nrepertorium\nrepeteergeweer\nrepeteervuur\nrepeteerwekker\nrepetent\nrepeteren\nrepetitie\nrepetitiecijfer\nrepetitief\nrepetitiehorloge\nrepetitielokaal\nrepetitieperiode\nrepetitieproces\nrepetitieruimte\nrepetitietijd\nrepetitiewerk\nrepetitor\nreplay\nreplica\nreplicatie\nrepliceren\nrepliek\nreporente\nreport\nreportage\nreportageachtig\nreportageprogramma\nreportagereeks\nreportageroman\nreportageserie\nreportageteam\nreportagewagen\nreporter\nreppen\nrepresaille\nrepresaillemaatregel\nrepresailles\nrepresentant\nrepresentatie\nrepresentatief\nrepresentatiekosten\nrepresentativiteit\nrepresenteren\nrepressie\nrepressief\nreprimande\nreprint\nreprise\nrepro\nreproduceerbaar\nreproduceerbaarheid\nreproduceren\nreproductie\nreproductiecamera\nreproductief\nreproductierecht\nreproductietechniek\nreproductievermogen\nreproductiviteit\nreprograferen\nreprografie\nreprorecht\nreptiel\nreptielenhandelaar\nreptielenhuis\nrepublicanisme\nrepubliek\nrepublikein\nrepublikeins\nrepublikeinse\nrepulsie\nreputatie\nreputatieschade\nreputatieverlies\nrequiem\nrequiemmis\nrequisitoir\nrerelease\nrescontre\nrescontreren\nrescript\nrescriptie\nresearch\nresearchafdeling\nresearchcentrum\nresearchgroep\nresearchinstituut\nresearchlaboratorium\nresearchpark\nresearchprogramma\nresearchproject\nresearchreactor\nresearchteam\nresearchwerk\nreseda\nresem\nreservaat\nreservaatsgebied\nreservaatvorming\nreservatie\nreservatiesysteem\nreserve\nreserve-eenheid\nreserveaanvoerder\nreserveband\nreservebank\nreservebestand\nreservecapaciteit\nreservedoelman\nreservefonds\nreservekader\nreservekapitaal\nreservekopie\nreservelijst\nreservelucht\nreserveofficier\nreserveonderdeel\nreserveperiode\nreservepolitie\nreservepot\nreservepotje\nreservepotjes\nreserverekening\nreserveren\nreservering\nreserveringsbevestiging\nreserveringskosten\nreserveringsnummer\nreserveringsruimte\nreserveringssysteem\nreserverol\nreservesleutel\nreservespeler\nreservetank\nreservetroepen\nreservevoedsel\nreservevoorraad\nreservewiel\nreservist\nreservoir\nreset\nresetknop\nresetten\nresident\nresidente\nresidentie\nresidentieel\nresidentiestad\nresidentschap\nresideren\nresidu\nresiduwaarde\nresignatie\nresigneren\nresistent\nresistentie\nresisteren\nresocialisatie\nresocialisatieprogramma\nresocialiseren\nresocialisering\nresolutie\nresoluut\nresolveren\nresonans\nresonantie\nresonantiebodem\nresonantiefrequentie\nresonantiekring\nresonator\nresoneren\nresorberen\nresorptie\nresort\nresource\nresources\nresp.\nrespect\nrespectabel\nrespectabiliteit\nrespecteren\nrespectering\nrespectief\nrespectievelijk\nrespectloos\nrespectueus\nrespectvol\nrespijt\nrespiratie\nrespiratietoestel\nrespiratoir\nrespirator\nrespiratorisch\nrespireren\nrespondent\nrespondente\nresponderen\nrespons\nresponsabel\nresponsabiliseren\nresponsabilisering\nresponsabiliteit\nresponse\nresponsie\nresponsiecollege\nresponsief\nresponsorie\nresponsorium\nresponspercentage\nresponstijd\nressentiment\nressort\nressorteren\nressource\nressources\nrest\nrestactiviteit\nrestafval\nrestant\nrestantbewijs\nrestantpartij\nrestantvoorraad\nrestaurant\nrestaurant-hotel\nrestaurantbezoek\nrestaurantbezoeker\nrestaurantformule\nrestaurantgedeelte\nrestaurantgids\nrestauranthouder\nrestaurantketen\nrestaurantkeuken\nrestaurantkosten\nrestaurantmanager\nrestaurantpersoneel\nrestaurantwezen\nrestaurateur\nrestauratie\nrestauratieafdeling\nrestauratieatelier\nrestauratiebeurt\nrestauratiebudget\nrestauratief\nrestauratiefonds\nrestauratiekosten\nrestauratieplan\nrestauratieproject\nrestauratierijtuig\nrestauratiesubsidie\nrestauratiewagen\nrestauratiewerk\nrestauratiewerkzaamheden\nrestaurator\nrestauratrice\nrestaureren\nrestbedrag\nrestcapaciteit\nrestcategorie\nresten\nresteren\nrestfractie\nrestgetal\nrestgroep\nrestitueren\nrestitutie\nrestmateriaal\nrestorno\nrestpost\nrestproduct\nrestrictie\nrestrictief\nrestruimte\nrestschuld\nreststof\nrestterm\nrestwaarde\nrestwarmte\nrestyleden\nrestylen\nrestyling\nrestzetel\nresultaat\nresultaatbeloning\nresultaatgebied\nresultaatgebieden\nresultaatgericht\nresultaatgerichtheid\nresultaatsverbetering\nresultaatsverbintenis\nresultaatsverplichting\nresultaatverantwoordelijk\nresultaatverbetering\nresultaatvoetbal\nresultante\nresultatenrekening\nresultatenseizoen\nresultatenverbetering\nresultatief\nresulteren\nresumeren\nresumptie\nresumé\nresurrectie\nresusaap\nresuscitatie\nresusfactor\nresusnegatief\nresuspositief\nretabel\nretailbank\nretailer\nretailing\nretailmarkt\nretailsector\nretardatie\nretarderen\nretegoed\nreten\nretentie\nreticulair\nreticule\nretina\nretinol\nretirade\nretireren\nretor\nretorica\nretoricus\nretoriek\nretorisch\nretorsie\nretort\nretortenkool\nretouche\nretoucheertafel\nretoucheren\nretour\nretourbiljet\nretouremballage\nretouren\nretourenvelop\nretourenveloppe\nretourfles\nretourflessen\nretourgoed\nretourgoederen\nretourhandel\nretourkaartje\nretourlading\nretourleiding\nretourneren\nretourpremie\nretourprovisie\nretourrecht\nretourschip\nretourservice\nretourtarief\nretourticket\nretourtje\nretourvlucht\nretourvracht\nretractie\nretraitant\nretraite\nretraitehuis\nretranchement\nretributie\nretro\nretroacta\nretroactief\nretroactiviteit\nretrograde\nretropop\nretrospectie\nretrospectief\nretrospectieve\nretrotrend\nretrovirus\nretsina\nrettich\nreturn\nreturnmatch\nreturnwedstrijd\nreu\nreuk\nreukaltaar\nreukcentrum\nreukeloos\nreukflesje\nreukgras\nreukloos\nreukoffer\nreukorgaan\nreukstof\nreukverdrijver\nreukvermogen\nreukwater\nreukwerk\nreukzenuw\nreukzin\nreukzout\nreuma\nreumapatiënt\nreumatiek\nreumatisch\nreumatologie\nreumatoloog\nreumatoïde\nreuring\nreus\nreusachtig\nreut\nreutel\nreutelaar\nreutelen\nreutemeteut\nreuter\nreuze\nreuzeblij\nreuzegezellig\nreuzegroot\nreuzel\nreuzeleuk\nreuzenbeeld\nreuzenblad\nreuzendoder\nreuzenformaat\nreuzengebouw\nreuzengroei\nreuzenhagedis\nreuzenkracht\nreuzenmop\nreuzenommegang\nreuzenpanda\nreuzenpinguïn\nreuzenplaneet\nreuzenrad\nreuzensalamander\nreuzenschelp\nreuzenscherm\nreuzenschildpad\nreuzenschrede\nreuzenslalom\nreuzenslang\nreuzensprong\nreuzenstap\nreuzenstoet\nreuzenwerk\nreuzenzwaai\nreuzig\nreuzin\nrevaccinatie\nrevaccineren\nrevalidatie\nrevalidatiearts\nrevalidatiecentrum\nrevalidatieperiode\nrevalidatieproces\nrevalidatieprogramma\nrevalideren\nrevaloriseren\nrevaluatie\nrevalueren\nrevanche\nrevanchegedachte\nrevanchegevoel\nrevanchematch\nrevanchepartij\nrevancheren\nrevanchisme\nrevanchist\nrevanchistisch\nreveil\nreveille\nrevelaar\nrevelatie\nrevelen\nreveleren\nreven\nrevenu\nreverence\nreverentie\nrevers\nreversibel\nreversibiliteit\nreviaan\nreviaans\nrevideren\nrevier\nrevieren\nrevindicatie\nreviseren\nrevisie\nrevisiebedrijf\nrevisietekening\nrevisievergunning\nrevisionisme\nrevisionist\nrevisionistisch\nrevisor\nrevitalisatie\nrevitaliseren\nrevitalisering\nrevival\nrevivescentie\nrevocatie\nrevoltant\nrevolte\nrevolteren\nrevolutie\nrevolutiebouw\nrevolutiegeest\nrevolutiejaar\nrevolutietijd\nrevolutionair\nrevolutioneren\nrevolver\nrevolverheld\nrevolverschot\nrevolvertas\nrevue\nrevueartiest\nrevuedanseres\nrevues\nrevueschrijver\nrevuester\nrez-de-chaussee\nrezen\nreçu\nreëel\nreële\nreïncarnatie\nreïncarnatieleer\nreïncarnatiesessie\nreïncarnatietheorie\nreïncarnatietherapeut\nreïncarnatietherapie\nreïncarneren\nreünie\nreünist\nreüsseren\nrhythm-and-blues\nrial\nriant\nrib\nribbe\nribbel\nribbelig\nribbeling\nribben\nribbenkast\nribblessure\nribbroek\nribcord\nribes\nribfluweel\nribgewelf\nribhout\nribkarbonade\nribkotelet\nriblap\nriboflavine\nribonucleïnezuur\nribose\nribosoom\nribstof\nribstuk\nricambio\nrichel\nrichtbaak\nrichten\nrichter\nrichtgetal\nrichtig\nrichting\nrichtingaanwijzer\nrichtingbord\nrichtingenstrijd\nrichtinggevend\nrichtinggevoel\nrichtingloos\nrichtingloosheid\nrichtingscoëfficiënt\nrichtingsgevoel\nrichtingslijn\nrichtingverandering\nrichtingwijzer\nrichtingzoeker\nrichtkracht\nrichtlat\nrichtlijn\nrichtlood\nrichtmicrofoon\nrichtmiddel\nrichtprijs\nrichtpunt\nrichtsnoer\nrichttijd\nricine\nricinus\nricinusboom\nricinusolie\nricotta\nridder\nriddereed\nridderen\nridderepiek\nridderepos\nriddergoed\nridderhofstede\nridderideaal\nridderkruis\nridderlijk\nridderlijkheid\nridderlint\nridderorde\nridderroman\nridderschap\nridderslag\nridderspoor\nridderstand\nriddertijd\nridderverhaal\nridderwezen\nridderwoord\nridderzaal\nridderzate\nridiculiseren\nridiculisering\nridicuul\nried\nriedel\nriedelen\nriek\nrieken\nriem\nriemblad\nriemen\nriemoverbrenging\nriempje\nriemschijf\nriemslag\nriesling\nriet\nrietachtig\nrietakker\nrietblazer\nrietdekker\nrieten\nrietfluit\nrietgans\nrietgors\nrietgras\nriethalm\nrietje\nrietkraag\nrietland\nrietmat\nrietmeubelen\nrietmoeras\nrietpeer\nrietpijp\nrietpluim\nrietscherm\nrietstengel\nrietsuiker\nriettuin\nrietveld\nrietvink\nrietvoorn\nrietzanger\nrietzodde\nrif\nriff\nrigide\nrigiditeit\nrigor mortis\nrigorisme\nrigoureus\nrigueur\nrij\nrijbaan\nrijbevoegdheid\nrijbewijs\nrijbewijstoerisme\nrijbroek\nrijcomfort\nrijdek\nrijden\nrijder\nrijdier\nrijdraad\nrijdster\nrijeigenschap\nrijen\nrijenbouw\nrijendik\nrijer\nrijervaring\nrijexamen\nrijf\nrijgdraad\nrijgedrag\nrijgen\nrijgenot\nrijggaren\nrijglaars\nrijglijf\nrijgnaad\nrijgnaald\nrijgpen\nrijgschoen\nrijgsluiting\nrijgsnoer\nrijgsteek\nrijgsysteem\nrijgveter\nrijhoogte\nrijhuis\nrijinstructeur\nrijinstructrice\nrijk\nrijkaard\nrijkaart\nrijkbloeiend\nrijkdom\nrijke\nrijkelijk\nrijkelui\nrijkeluiskind\nrijkeluiszoontje\nrijken\nrijkgeschakeerd\nrijkheid\nrijklaar\nrijkleding\nrijkleed\nrijkmaker\nrijknecht\nrijkop\nrijkostuum\nrijksacademie\nrijksaccountantsdienst\nrijksadvocaat\nrijksambt\nrijksambtenaar\nrijksappel\nrijksarbeidsbureau\nrijksarchief\nrijksarchivaris\nrijksban\nrijksbegroting\nrijksbelasting\nrijksbeleid\nrijksbemiddelaar\nrijksbestuur\nrijksbetrekking\nrijksbeurs\nrijksbijdrage\nrijksbijdrageregeling\nrijksbouwmeester\nrijksbureau\nrijkscollectie\nrijkscommissaris\nrijksconsulent\nrijksdaalder\nrijksdag\nrijksdeel\nrijksdienst\nrijksfinanciën\nrijksgebied\nrijksgebouw\nrijksgeld\nrijksgenoot\nrijksgrens\nrijksgroepsregeling\nrijksgroepsregelingen\nrijksgrote\nrijkshogeschool\nrijksinkomsten\nrijksinkomstenbelasting\nrijksinrichting\nrijksinsigniën\nrijksinspecteur\nrijksinspectie\nrijksinstelling\nrijksinstituut\nrijkskanselier\nrijkskas\nrijkskeurmeester\nrijksklerk\nrijkskosten\nrijkskweekschool\nrijkslandbouwproefstation\nrijksleerschool\nrijkslening\nrijksmaarschalk\nrijksmerk\nrijksmiddelen\nrijksmiddelenbegroting\nrijksministerraad\nrijksmonument\nrijksmonumentenlijst\nrijksmunt\nrijksmuseum\nrijksniveau\nrijksnormaalschool\nrijksonderwijs\nrijksontvanger\nrijksopvoedingsgesticht\nrijksoverheid\nrijkspartijdag\nrijkspensioen\nrijkspersoneel\nrijkspolitie\nrijksrecherche\nrijksrechercheonderzoek\nrijksrechercherapport\nrijksrechercheur\nrijksregeling\nrijksregering\nrijksregister\nrijksscepter\nrijksschool\nrijksstad\nrijksstenden\nrijkssteun\nrijksstraatweg\nrijkssubsidie\nrijkssubsidieregeling\nrijkstaal\nrijkstoelage\nrijksuitgave\nrijksuitgaven\nrijksuniversiteit\nrijksveldwacht\nrijksveldwachter\nrijksvergoeding\nrijksverkeersinspectie\nrijkswacht\nrijkswachter\nrijkswachtkazerne\nrijkswapen\nrijksweg\nrijkswege\nrijkswegenfonds\nrijkswegennet\nrijkswerkinrichting\nrijkswet\nrijkunst\nrijkversierd\nrijlaars\nrijles\nrijm\nrijmbijbel\nrijmeester\nrijmelaar\nrijmelarij\nrijmelen\nrijmen\nrijmklank\nrijmkroniek\nrijmloos\nrijmpje\nrijmprent\nrijmschema\nrijmwerk\nrijmwoord\nrijmwoordenboek\nrijnaak\nrijnboot\nrijnschip\nrijnse\nrijnsteen\nrijnwijn\nrijnzand\nrijontzegging\nrijopleiding\nrijp\nrijpaard\nrijpad\nrijpelijk\nrijpen\nrijpheid\nrijping\nrijpingsproces\nrijplezier\nrijproef\nrijpte\nrijpwording\nrijrichting\nrijs\nrijsberm\nrijsbeslag\nrijsbezem\nrijschema\nrijschool\nrijschoolhouder\nrijsdam\nrijshout\nrijsmiddel\nrijsnelheid\nrijspoor\nrijsport\nrijst\nrijstboer\nrijstbouw\nrijstbuik\nrijstebloem\nrijstebrij\nrijstebrijberg\nrijstemeel\nrijstepap\nrijstevla\nrijstevlaai\nrijstewater\nrijstgerecht\nrijstijl\nrijstimport\nrijstkom\nrijstkorrel\nrijstmarkt\nrijstmeel\nrijstoel\nrijstoogst\nrijstpap\nrijstpapier\nrijstpellerij\nrijstpelmolen\nrijstproductie\nrijstpudding\nrijstrand\nrijstrecept\nrijstrook\nrijstsoep\nrijsttaart\nrijsttafel\nrijsttafelen\nrijstteelt\nrijstveld\nrijstvla\nrijstvogel\nrijstwater\nrijstwijn\nrijswaard\nrijswerk\nrijtaks\nrijten\nrijtest\nrijtijd\nrijtijdenbesluit\nrijtje\nrijtjeshuis\nrijtjeswoning\nrijtoer\nrijtuig\nrijtuigkap\nrijtuigschilder\nrijtuigverhuurder\nrijvaardigheid\nrijvaardigheidsbewijs\nrijvaardigheidstest\nrijvak\nrijveiligheid\nrijven\nrijverbod\nrijvereniging\nrijverkeer\nrijweerstand\nrijweg\nrijwiel\nrijwielband\nrijwielbelasting\nrijwielberging\nrijwielbewaarplaats\nrijwielfabriek\nrijwielhandel\nrijwielhandelaar\nrijwielhersteller\nrijwielkaart\nrijwielpad\nrijwielplaatje\nrijwielstalling\nrijwielverhuur\nrijwielverzekering\nrijwielvierdaagse\nrijwind\nrijwoning\nrijzadel\nrijzen\nrijzig\nrijzing\nrijzweep\nrikkekikken\nrikken\nrikketik\nrikketikken\nrikkikken\nriks\nriksja\nril\nrild\nrillen\nrillerig\nrillettes\nrillijn\nrilling\nrimboe\nrimpel\nrimpelen\nrimpelig\nrimpeling\nrimpelloos\nrimram\nring\nringagenda\nringbaan\nringbaard\nringband\nringbestuur\nringbout\nringdijk\nringduif\nringelduif\nringelen\nringeloren\nringelrups\nringen\nringetje\nringkade\nringkraag\nringleiding\nringlijn\nringmus\nringmuur\nringnet\nringoven\nringrijden\nringrijderij\nringscheur\nringslang\nringsleutel\nringsloot\nringslot\nringsteken\nringvaart\nringvaccinatie\nringvinger\nringvormig\nringweg\nringworm\nringwormen\nrink\nrinkel\nrinkelaar\nrinkelbel\nrinkelbom\nrinkelen\nrinkelrooien\nrinkelrooier\nrinket\nrinkinken\nrinoceros\nrinoplastiek\nrins\nrioja\nriolen\nriolenstelsel\nrioleren\nriolering\nrioleringsbuis\nrioleringsnet\nrioleringsplan\nrioleringsstelsel\nrioleringssysteem\nriool\nrioolaansluiting\nrioolafvoerrecht\nrioolbelasting\nrioolbuis\nrioolgas\nriooljournalistiek\nrioollucht\nriooloverstort\nrioolpijp\nrioolput\nrioolrat\nrioolrecht\nrioolreiniging\nrioolreinigingsservice\nrioolslib\nrioolstelsel\nrioolsysteem\nrioolwater\nrioolwaterzuivering\nrioolwaterzuiveringsinstallatie\nrioolzuiveringsinstallatie\nriotgun\nripdeal\nriposte\nriposteren\nrippen\nripper\nrips\nripspapier\nris\nrisee\nrisico\nrisico-inventarisatie\nrisico-opslag\nrisicoanalyse\nrisicobeheer\nrisicobeheersing\nrisicobeoordeling\nrisicobeperkend\nrisicoberekening\nrisicodekking\nrisicodeling\nrisicodragend\nrisicoduel\nrisicofactor\nrisicofonds\nrisicogebied\nrisicogedrag\nrisicogehalte\nrisicograad\nrisicogroep\nrisicokapitaal\nrisicokapitaalfonds\nrisicokenmerken\nrisicoloos\nrisicomaatschappij\nrisicomanagement\nrisicomateriaal\nrisicomijdend\nrisicopatiënt\nrisicoperceptie\nrisicopremie\nrisicoprofiel\nrisicoregeling\nrisicoselectie\nrisicospreiding\nrisicovol\nrisicovrij\nrisicowedstrijd\nriskant\nrisken\nriskeren\nrisotto\nrissen\nrist\nristen\nristorneren\nristorno\nrit\nritalin\nritardando\nrite\nritenuto\nritme\nritmebox\nritmeester\nritmegevoel\nritmeren\nritmesectie\nritmiek\nritmisch\nritmus\nritnaald\nritornel\nritoverwinning\nritprijs\nrits\nritselaar\nritselen\nritseling\nritsen\nritser\nritsig\nritsijzer\nritssluiting\nritten\nrittenadministratie\nrittenkoers\nrittenwedstrijd\nrituaal\nritualiseren\nritualisering\nritualisme\nritualist\nritualistisch\nritueel\nritus\nritwinnaar\nritwinst\nritzege\nrivaal\nrivale\nrivaliseren\nrivaliteit\nrivet\nrivier\nrivierarm\nrivierbed\nrivierbedding\nrivierblindheid\nrivierbocht\nrivierbodem\nrivierdal\nrivierdelta\nrivierdijk\nrivierduin\nrivierduinen\nrivierengebied\nrivierenland\nrivierenlandschap\nriviergezicht\nriviergod\nriviergrind\nrivierkaart\nrivierklei\nrivierkreeft\nrivierlandschap\nrivierloop\nriviermond\nriviermonding\nriviermossel\nrivieroever\nrivierpaling\nrivierpolitie\nrivierschip\nrivierslib\nrivierstand\nrivierstelsel\nriviervaart\nriviervis\nriviervisserij\nrivierwater\nrivierzand\nrivierzijde\nrizofoor\nroadblock\nroadie\nroadmanager\nroadmovie\nroadshow\nroadster\nroaring twenties\nrob\nrobbedoes\nrobbedoezen\nrobben\nrobbenhuid\nrobbenjacht\nrobbenjager\nrobbenschip\nrobbenvangst\nrobber\nrobberen\nrobbertje\nrobe\nrobijn\nrobijnen\nrobijnlaser\nrobijnrood\nrobijntje\nrobinsonade\nrobot\nrobotachtig\nrobotarm\nrobotfoto\nrobothond\nrobotica\nrobotiseren\nrobotisering\nrobuust\nrobuustheid\nroc's\nrocaille\nrochel\nrochelen\nrochelpot\nrochet\nrock\nrock-'n-roll\nrock-'n-roller\nrock-'n-rollmuziek\nrockabilly\nrockartiest\nrockband\nrockconcert\nrockcultuur\nrocken\nrocker\nrockfan\nrockfestival\nrockfilm\nrockformatie\nrockgeluid\nrockgitaar\nrockgitarist\nrockgroep\nrockheld\nrockidool\nrocklegende\nrockmusical\nrockmusicus\nrockmuziek\nrockmuzikant\nrocknummer\nrockopera\nrockplaat\nrockpubliek\nrockscene\nrockshow\nrocksong\nrockster\nrockzanger\nrockzangeres\nrococo\nrococoachtig\nrococomeubel\nrococostijl\nroddel\nroddelaar\nroddelaarster\nroddelblad\nroddelcircuit\nroddelen\nroddeljournalist\nroddeljournalistiek\nroddelpers\nroddelpraat\nroddelpraatje\nroddelrubriek\nroddeltante\nrode\nrodehond\nrodekool\nrodelaar\nrodelbaan\nrodelen\nrodeloop\nroden\nrodeo\nroderen\nrodetruidrager\nrododendron\nrodopsine\nroe\nroebel\nroebelcrisis\nroede\nroedel\nroedeloper\nroef\nroefdek\nroefelen\nroei-equipe\nroeibaan\nroeibank\nroeibond\nroeiboot\nroeicoach\nroeidol\nroeien\nroeier\nroeiklamp\nroeipen\nroeipotig\nroeiriem\nroeischuit\nroeiseizoen\nroeispaan\nroeisport\nroeister\nroeistrop\nroeivereniging\nroeiwedstrijd\nroeiwereld\nroek\nroekeloos\nroekeloosheid\nroekoeken\nroekoeën\nroem\nroemen\nroemer\nroemloos\nroemrijk\nroemrucht\nroemruchtig\nroemvol\nroemwaardig\nroemzucht\nroemzuchtig\nroep\nroepen\nroeper\nroepgeld\nroepia\nroepie\nroeping\nroepletter\nroepnaam\nroepstem\nroepzaal\nroer\nroerbak\nroerbakgroente\nroerbakken\nroerblad\nroerdomp\nroerei\nroeren\nroerend\nroerganger\nroerig\nroerigheid\nroering\nroerkoning\nroerlepel\nroerloos\nroerloosheid\nroerom\nroerpen\nroersel\nroerselen\nroerspaan\nroerstel\nroervink\nroerzeef\nroerzeven\nroes\nroesmiddel\nroest\nroestbak\nroestbruin\nroesten\nroesterig\nroestig\nroestigheid\nroestkleur\nroestkleurig\nroestmiddel\nroestplaats\nroestplek\nroeststok\nroestvast\nroestvlek\nroestvorming\nroestvrij\nroestvrij staal\nroestvrijstalen\nroestwerend\nroet\nroetachtig\nroetbruin\nroetdeeltje\nroeten\nroeterig\nroetfilter\nroetig\nroetkleur\nroetmop\nroetmoppen\nroetschade\nroetsjbaan\nroetsjen\nroetuitstoot\nroetzwart\nroeven\nroezemoes\nroezemoezen\nroezemoezerig\nroezemoezig\nroezen\nroezig\nroffel\nroffelaar\nroffelen\nroffelig\nroffelschaaf\nroffelwerk\nroffelzaag\nrog\nrogatoir\nrogge\nroggeaar\nroggebloem\nroggebrood\nroggemeel\nroggemik\nroggeoogst\nroggestro\nroggetje\nroggeveld\nrogvleugel\nrohypnol\nrok\nrokade\nroken\nroker\nrokeren\nrokerig\nrokerij\nrokersdeel\nrokershoest\nrokertje\nrokhanger\nrokjas\nrokken\nrokkenjager\nrokkenjagerij\nrokkostuum\nrokpand\nrokzak\nrol\nrolaap\nrolbaan\nrolbandmaat\nrolberoerte\nrolbevestigend\nrolbeweging\nrolbezem\nrolbezetting\nrolblind\nrolborstel\nrolcentimeter\nrolconflict\nrolcontainer\nroldak\nrolder\nroldeur\nroldoorbrekend\nrolfilm\nrolgedrag\nrolgordijn\nrolhanddoek\nrolhockey\nrolkei\nrolklaver\nrolkraag\nrolkraagtrui\nroll-on-roll-offschip\nrollaag\nrollade\nrollager\nrollator\nrollebollen\nrollen\nrollenbank\nrollende\nrollenpatroon\nrollenspel\nrollepaal\nroller\nrollercoaster\nrolleren\nrollerskate\nrollerskater\nrolletje\nrolling\nrolluik\nrolmaat\nrolmodel\nrolmops\nrolomschrijving\nrolopvatting\nroloven\nrolpaal\nrolpaard\nrolpatroon\nrolpens\nrolprent\nrolrond\nrolschaats\nrolschaatsbaan\nrolschaatsen\nrolschaatser\nrolschaatsster\nrolscherm\nrolsteen\nrolsteiger\nrolstoel\nrolstoelbasketbal\nrolstoelbus\nrolstoelen\nrolstoeler\nrolstoelgebruiker\nrolstoeltennis\nrolstoelvervoer\nrolstok\nroltabak\nroltafel\nroltrap\nrolvast\nrolveegmachine\nrolveger\nrolverdeling\nrolverwisseling\nrolvlucht\nrolvorm\nrolvormig\nrolwagen\nrolweerstand\nrolwisseling\nrolzitting\nromaans\nromaanse\nroman\nromance\nromancier\nromancière\nromancyclus\nromandebuut\nromanesk\nromanfiguur\nromanheld\nromanheldin\nromaniseren\nromanist\nromanistiek\nromankunst\nromanlectuur\nromanlezer\nromanliteratuur\nromannetje\nromanpersonage\nromanschrijfster\nromanschrijver\nromanstructuur\nromantica\nromanticus\nromantiek\nromantiekerig\nromantisch\nromantisch-klassiek\nromantiseren\nromantisering\nromantisme\nromantrilogie\nromanvorm\nromboïde\nrombus\nromeinletter\nromen\nromer\nromig\nrommel\nrommelaar\nrommelen\nrommelhoek\nrommelhok\nrommelig\nrommeligheid\nrommeling\nrommelkamer\nrommelkast\nrommelmarkt\nrommelpot\nrommeltje\nrommelzolder\nrommelzooi\nrommendom\nrommentom\nromp\nrompdeel\nrompkabinet\nrompparlement\nrompslomp\nrompstaat\nrompstand\nrompvorm\nrond\nrond krijgen\nrondachtig\nrondas\nrondbanjeren\nrondbazuinen\nrondbellen\nrondbezorgen\nrondblikken\nrondbogig\nrondboog\nrondborstig\nrondbreien\nrondbreimachine\nrondbreipen\nrondbrengen\nrondbrieven\nrondcirkelen\nronddansen\nronddarren\nronddartelen\nronddelen\nronddobberen\nronddolen\nronddollen\nronddraaien\nronddragen\nronddraven\nronddrentelen\nronddrijven\nronddwalen\nronde\nrondedans\nrondeel\nrondegang\nrondemiss\nronden\nronderenner\nrondetafelconferentie\nrondetafelgesprek\nrondetijd\nrondewerk\nrondfietsen\nrondfladderen\nrondgaan\nrondgang\nrondgeven\nrondgezang\nrondgraaien\nrondhangen\nrondheid\nrondhollen\nrondhout\nrondhuppelen\nronding\nrondjagen\nrondje\nrondkijken\nrondkomen\nrondkop\nrondkruipen\nrondleiden\nrondleiding\nrondleuren\nrondlopen\nrondlummelen\nrondmaken\nrondneuzen\nrondo\nrondom\nrondploeteren\nrondpompen\nrondreis\nrondreizen\nrondrennen\nrondrijden\nrondrit\nrondscharrelen\nrondschrift\nrondschrijven\nrondschuiven\nrondsel\nrondsjouwen\nrondslaan\nrondslenteren\nrondslingeren\nrondsluipen\nrondsmijten\nrondsnuffelen\nrondspelen\nrondspoken\nrondspringen\nrondsproeiend\nrondstappen\nrondstralen\nrondstrooien\nrondstruinen\nrondsturen\nrondtasten\nrondte\nrondtocht\nrondtoeren\nrondtollen\nrondtrekken\nronduit\nrondvaart\nrondvaartbedrijf\nrondvaartboot\nrondvaren\nrondventen\nrondventer\nrondvertellen\nrondvis\nrondvliegen\nrondvlucht\nrondvoeren\nrondvraag\nrondvragen\nrondwandelen\nrondwandeling\nrondwaren\nrondweg\nrondzaaien\nrondzendbrief\nrondzenden\nrondzien\nrondzingen\nrondzwaaien\nrondzwalken\nrondzwemmen\nrondzwermen\nrondzwerven\nrondzweven\nrondzwieren\nrong\nronken\nronker\nronselaar\nronselen\nronselpraktijk\nronselpraktijken\nronzebons\nrood\nrood-groen\nrood-wit\nrood-wit-blauw\nrood-zwart\nroodaarde\nroodachtig\nroodbaard\nroodbaars\nroodbloedig\nroodbont\nroodborst\nroodborstje\nroodborsttapuit\nroodbruin\nroodfluwelen\nroodgeel\nroodgekleurd\nroodgelakt\nroodgeruit\nroodgieter\nroodgloeiend\nroodharig\nroodharige\nroodheid\nroodhuid\nroodkapje\nroodkleurig\nroodkoper\nroodkoperen\nroodlichtcamera\nroodlichtcamera's\nroodloof\nroodneus\nroodomrand\nroodpluchen\nroodsel\nroodst\nroodstaart\nroodstand\nroodstenen\nroodverbrand\nroodverschuiving\nroodvonk\nroodvos\nroodwangig\nroodwild\nroodzijden\nroof\nroofachtig\nroofbank\nroofbouw\nroofdier\nroofdruk\nroofdrukken\nroofgierig\nroofgoed\nroofing\nroofkunst\nroofmier\nroofmoord\nroofnest\nroofoverval\nroofovervaller\nroofridder\nroofschip\nrooftocht\nroofvis\nroofvogel\nroofziek\nroofzucht\nroofzuchtig\nrooi\nrooie\nrooien\nrooier\nrooiing\nrooilat\nrooilijn\nrooimeester\nrooinek\nrooipaal\nrooitijd\nrook\nrookartikel\nrookartikelen\nrookbaar\nrookbeleid\nrookbom\nrookcoupé\nrookdetector\nrookgas\nrookgasontzwaveling\nrookgasontzwavelingsinstallatie\nrookgasreiniger\nrookgasreiniging\nrookgedrag\nrookgerei\nrookgewoonte\nrookglas\nrookgordijn\nrookgranaat\nrookhol\nrookkaas\nrookkamer\nrookkanaal\nrookkast\nrookkolom\nrookkwarts\nrookloos\nrooklucht\nrookmachine\nrookmasker\nrookmelder\nrookontwikkeling\nrookoverlast\nrookpaal\nrookpauze\nrookpluim\nrookruimte\nrooksalon\nrookschade\nrookscherm\nrooksignaal\nrooksliert\nrooksmaak\nrookspek\nrookstel\nrookster\nrooktabak\nrookverbod\nrookverdrijver\nrookvergiftiging\nrookverslaving\nrookvlees\nrookvrij\nrookwaar\nrookwagen\nrookwaren\nrookwolk\nrookworst\nrookzuil\nroom\nroomboter\nroomhoorn\nroomhoren\nroomijs\nroomkaas\nroomkleur\nroomkleurig\nroommeter\nrooms\nrooms-katholicisme\nrooms-katholiek\nrooms-koning\nrooms-rood\nroomsaus\nroomse\nroomservice\nroomsgezind\nroomsgezinde\nroomsoes\nroomtaart\nroomvers\nroomvla\nroomwit\nroos\nroosachtig\nroosje\nroosjesslijper\nrooskleurig\nroosten\nrooster\nroosteren\nroostering\nroosterlijn\nroosterlijnen\nroostermaker\nroosterpunten\nroostervloer\nroostervormig\nroostervrij\nroosterwerk\nroosting\nroosvenster\nroosvormig\nroot\nrootput\nrootsmuziek\nropij\nroppen\nroquefort\nroro\nroroschip\nros\nrosachtig\nrosarium\nrosbief\nrosharig\nroskam\nroskammen\nrosmarijn\nrosmolen\nrossen\nrossig\nrossigheid\nrossinant\nrossing\nrost\nrostra\nrostrum\nrosé\nrot\nrotacisme\nrotan\nrotanmeubel\nrotanmeubeltjes\nrotanpalm\nrotanschild\nrotanstoel\nrotanstok\nrotatie\nrotatieas\nrotatiedruk\nrotatiemotor\nrotatiepers\nrotatiepomp\nrotatieprincipe\nrotatiesnelheid\nrotatiesysteem\nrotatietijd\nrotator\nrotdag\nroten\nroteren\nroterij\nrotgang\nrotgans\nrotgevoel\nrotheid\nrothumeur\nroti\nrotisserie\nrotje\nrotkop\nrotkreupel\nrotleven\nrotmof\nrotogravure\nrotonde\nrotopmerking\nrotor\nrotorblad\nrotperiode\nrots\nrotsachtig\nrotsbeen\nrotsblok\nrotsbodem\nrotschop\nrotseiland\nrotsen\nrotsformatie\nrotsgevaarte\nrotsgrond\nrotsig\nrotsklomp\nrotskloof\nrotskust\nrotslandschap\nrotsmoes\nrotspartij\nrotsplant\nrotspunt\nrotsschildering\nrotsspelonk\nrotsspleet\nrotstekening\nrotstraal\nrotstreek\nrotstuin\nrotsvast\nrotswand\nrotswol\nrotte\nrotten\nrottig\nrottigheid\nrottijd\nrotting\nrottingsproces\nrottweiler\nrotvaart\nrotweer\nrotwoord\nrotzak\nrotzooi\nrotzooien\nrotzorg\nrouge\nroulade\nroulatie\nroulatiesysteem\nrouleren\nroulette\nroulettetafel\nroute\nroute-informatie\nroutebeschrijving\nrouteboek\nrouteboekje\nroutekaart\nroutenet\nroutenetwerk\nrouteplanner\nrouteplanning\nrouteren\nroutering\nrouteschema\nroutier\nroutine\nroutinebehandeling\nroutinecontrole\nroutinehandeling\nroutineklus\nroutinematig\nroutineonderzoek\nroutineus\nroutinewerk\nroutinezaak\nrouting\nroutinier\nrouw\nrouwadvertentie\nrouwauto\nrouwband\nrouwbeklag\nrouwbetoon\nrouwbezoek\nrouwbrief\nrouwcentrum\nrouwdag\nrouwdienst\nrouwdouwen\nrouwdouwer\nrouwen\nrouwfloers\nrouwgewaad\nrouwgoed\nrouwig\nrouwjapon\nrouwkaart\nrouwkamer\nrouwkapel\nrouwklacht\nrouwklagen\nrouwklager\nrouwkleding\nrouwkleed\nrouwkleren\nrouwkleur\nrouwkoets\nrouwkoop\nrouwkrans\nrouwmis\nrouwmoedig\nrouwnagels\nrouwpapier\nrouwperiode\nrouwplechtigheid\nrouwproces\nrouwrand\nrouwsluier\nrouwstemming\nrouwstoet\nrouwstrik\nrouwtijd\nrouwverlof\nrouwverwerking\nroux\nroven\nrover\nroverbende\nroverhoofdman\nroverij\nroversbende\nrovershol\nroverskapitein\nroversnest\nroyaal\nroyalisme\nroyalist\nroyalistisch\nroyaliteit\nroyalty\nroyaltyverslaggever\nroyeerbaar\nroyement\nroyementskosten\nroyeren\nroyering\nroze\nrozelaar\nrozemarijn\nrozemarijnzalf\nrozen\nrozenbed\nrozenblad\nrozenboom\nrozenbottel\nrozengaard\nrozengeur\nrozenhoedje\nrozenhout\nrozenhouten\nrozenkleur\nrozenknop\nrozenkrans\nrozenkruiser\nrozenkweker\nrozenkwekerij\nrozenmond\nrozennobel\nrozenolie\nrozenperk\nrozenstam\nrozenstek\nrozenstruik\nrozentak\nrozentuin\nrozenwater\nrozerood\nrozet\nrozetruidrager\nrozig\nrozijn\nrozijnenbaard\nrozijnenbrood\nrubato\nrubber\nrubberachtig\nrubberband\nrubberboom\nrubberboot\nrubbercultuur\nrubberen\nrubberhandschoen\nrubberindustrie\nrubberkogel\nrubberlaars\nrubberpakking\nrubberplant\nrubberplantage\nrubberproduct\nrubbertapper\nrubberzool\nrubidium\nrubricator\nrubriceren\nrubricering\nrubriek\nrubriekschrijver\nrubrieksnaam\nruche\nruchtbaar\nruchtbaarheid\nruchtbaarmaking\nrucola\nruderaal\nrudiment\nrudimentair\nruften\nrug\nrugblessure\nrugby\nrugbybal\nrugbyclub\nrugbyen\nrugbyer\nrugbyploeg\nrugbyspeler\nrugbyteam\nrugbyveld\nrugcrawl\nrugdecolleté\nrugdekking\nruggelings\nruggen\nruggengraat\nruggengraatloos\nruggengraatsverkromming\nruggenmerg\nruggenmergpunctie\nruggenmergsvocht\nruggenmergszenuw\nruggenprik\nruggensteun\nruggensteunen\nruggenstreng\nruggenwervel\nruggespraak\nrugkant\nrugklachten\nrugkorf\nrugkrabber\nrugletsel\nrugleuning\nrugligging\nrugnummer\nrugoperatie\nrugpand\nrugpijn\nrugpositief\nrugschild\nrugslag\nrugspier\nrugspuit\nrugsteun\nrugstreeppad\nrugstuk\nrugtas\nrugtitel\nrugvin\nrugwaarts\nrugwering\nrugwervel\nrugwind\nrugzak\nrugzaktoerist\nrugzijde\nrugzwemmen\nrui\nruide\nruien\nruif\nruig\nruigaard\nruigharig\nruigheid\nruigpotig\nruigte\nruikbaar\nruiken\nruiker\nruil\nruilbaar\nruilbeurs\nruilbod\nruilcontract\nruilebuiten\nruilebuiter\nruilen\nruiler\nruilhandel\nruilhart\nruiling\nruilmiddel\nruilobject\nruilsysteem\nruilverdrag\nruilverhouding\nruilverkaveling\nruilverkeer\nruilvoet\nruilwaarde\nruim\nruim bemeten\nruimdenkend\nruimdenkendheid\nruimen\nruimer\nruimhartig\nruimhartigheid\nruimijzer\nruiming\nruimingsbeleid\nruimschoots\nruimte\nruimtebasis\nruimtebehoefte\nruimtebeslag\nruimtebesparing\nruimtebiologie\nruimtecapsule\nruimtedekking\nruimtegebrek\nruimtegebruik\nruimtegevoel\nruimtekromme\nruimtelaboratorium\nruimtelijk\nruimtelijkeordeningsbeleid\nruimtelijkheid\nruimtemaat\nruimtemissie\nruimtenood\nruimteonderzoek\nruimtepak\nruimtependel\nruimteplatform\nruimteprobleem\nruimteproblematiek\nruimteprogramma\nruimtepuin\nruimterace\nruimtereis\nruimteschild\nruimteschip\nruimteschroot\nruimtesonde\nruimtestation\nruimtetechnologie\nruimtetekort\nruimtetelescoop\nruimtetoerisme\nruimtetoerist\nruimtetuig\nruimtevaarder\nruimtevaart\nruimtevaartbureau\nruimtevaartcentrum\nruimtevaartconcern\nruimtevaartindustrie\nruimtevaartorganisatie\nruimtevaartprogramma\nruimtevaartproject\nruimtevaarttechniek\nruimtevaarttechnologie\nruimtevaartuig\nruimteveer\nruimteverdeling\nruimtevliegtuig\nruimtevlucht\nruimtevrees\nruimtewagen\nruimtewandeling\nruimtewapen\nruimtewerking\nruimtewezen\nruimtewinst\nruimteziekte\nruimvallend\nruin\nruinen\nruis\nruisen\nruisfilter\nruising\nruisonderdrukking\nruisvoorn\nruisvoren\nruit\nruiten\nruitenboer\nruitenbreker\nruitensproeier\nruitentikker\nruitenveger\nruitenwasser\nruitenwisser\nruiter\nruiterbende\nruiterequipe\nruiterfeest\nruitergevecht\nruiterij\nruiterlijk\nruitermantel\nruiterpad\nruitersport\nruiterstandbeeld\nruitertje\nruitervereniging\nruitervolk\nruiterweg\nruitijd\nruitjespapier\nruitjespatroon\nruitpatroon\nruitsgewijs\nruitvormig\nruiven\nruizelen\nruizen\nruk\nrukken\nrukker\nrukwind\nrul\nrulheid\nrulijs\nruling\nrullen\nrullig\nrum\nrumba\nrumble\nrumboon\nrumfles\nrumgrog\nrumoer\nrumoeren\nrumoerig\nrumoerigheid\nrumoermaker\nrumpudding\nrumpunch\nrumtaart\nrumvaatje\nrun\nrund\nrunderbouillon\nrunderdaas\nrunderen\nrunderfilet\nrundergehakt\nrunderhaas\nrunderhart\nrunderhorzel\nrunderlap\nrundermest\nrunderpest\nrunderrollade\nrundersperma\nrunderteelt\nrundervet\nrunderziekte\nrundleren\nrundvee\nrundveebedrijf\nrundveehouder\nrundveehouderij\nrundveesector\nrundveestamboek\nrundveestapel\nrundvet\nrundvlees\nrundvleesconsumptie\nrundvleesmarkt\nrundvleesproductie\nrundvleessector\nrune\nrunenalfabet\nrunenschrift\nrunensteen\nrunenteken\nrunmolen\nrunnen\nrunner\nrunner-up\nrunning mate\nrunsel\nrups\nrupsauto\nrupsband\nrupsendoder\nrupsenjacht\nrupsennest\nrupsenplaag\nrupsenschaar\nrupsklaver\nrupsvoertuig\nruptuur\nruraal\nrus\nrush\nrussen\nrussificatie\nrussificeren\nrust\nrustaltaar\nrustbank\nrustbed\nrustdag\nruste\nrusteloos\nrusteloosheid\nrusten\nrustgebied\nrustgeld\nrustgevend\nrusthuis\nrusticiteit\nrustiek\nrustig\nrustigheid\nrustigjes\nrusting\nrustjaar\nrustkamer\nrustkuur\nrustlievend\nrustmoment\nrustoord\nrustpauze\nrustpensioen\nrustperiode\nrustplaats\nrustpunt\nruststand\nruststoel\nrustteken\nrusttijd\nrusttoestand\nrustuur\nrustverstoorder\nrustverstoring\nrut\nruw\nruwaard\nruwaardschap\nruwbladig\nruwbouw\nruwdoek\nruwen\nruweolieprijs\nruwharig\nruwheid\nruwijzer\nruwkruid\nruwte\nruwvoer\nruwweg\nruzie\nruzieachtig\nruziemaakster\nruziemaken\nruziemaker\nruzietoon\nruziezoekend\nruziezoeker\nruziën\nruïne\nruïneren\nruïnestad\nruïneus\nrvs\nrégence\nréussite\nrêverie\nrömertopf\nröntgen\nröntgenafdeling\nröntgenapparaat\nröntgenapparatuur\nröntgenbuis\nröntgendiffractie\nröntgenen\nröntgenfoto\nröntgenkamer\nröntgenlaborant\nröntgenologie\nröntgenologisch\nröntgenoloog\nröntgenonderzoek\nröntgenopname\nröntgensatelliet\nröntgenscherm\nröntgenstraal\nröntgenstralen\nröntgenstraling\nröntgentherapie\nrösti\nrücksichtslos\ns\ns.v.p.\nsa\nsaai\nsaaien\nsaaiheid\nsaam\nsaamhorig\nsaamhorigheid\nsaamhorigheidsgevoel\nsaampjes\nsabayon\nsabbat\nsabbatdag\nsabbatical\nsabbatjaar\nsabbatlamp\nsabbatreis\nsabbatrust\nsabbatschender\nsabbatschennis\nsabbatsjaar\nsabbatslamp\nsabbatsreis\nsabbatsrust\nsabbatsschender\nsabbatsverlof\nsabbattist\nsabbelen\nsabberen\nsabel\nsabelbont\nsabeldier\nsabelgekletter\nsabelhouw\nsabelkling\nsabelkoppel\nsabelschede\nsabelsprinkhaan\nsabotage\nsabotageactie\nsabotagedaad\nsaboteren\nsaboteur\nsabra\nsacerdotaal\nsacharimeter\nsacharine\nsacharose\nsacherijnig\nsachet\nsacoche\nsacraal\nsacraliteit\nsacrament\nsacramentaliën\nsacramenteel\nsacramentsaltaar\nsacreren\nsacrificie\nsacrifiëren\nsacrilegie\nsacristie\nsacrosanct\nsadduceeën\nsadduceeër\nsadisme\nsadist\nsadiste\nsadistisch\nsado\nsadomasochisme\nsadomasochist\nsadomasochistisch\nsafari\nsafaripark\nsafe\nsafeloket\nsaffiaan\nsaffiaanleer\nsaffie\nsaffier\nsaffierblauw\nsaffieren\nsaffiersteen\nsaffisch\nsaffloer\nsaffraan\nsaffraangeel\nsaffraankleurig\nsaga\nsagaai\nsage\nsagen\nsago\nsagomelk\nsagopalm\nsaguweer\nsaillant\nsaisine\nsajet\nsak\nsake\nsaki\nsakkeren\nsakkerloot\nsakkers\nsalade\nsalade niçoise\nsaladeschaal\nsalam\nsalam aleikum\nsalamander\nsalamanderkachel\nsalamanders\nsalami\nsalamipolitiek\nsalamitactiek\nsalangaan\nsalariaat\nsalaris\nsalarisaanpassing\nsalarisachterstand\nsalarisactie\nsalarisadministratie\nsalarisbetaling\nsalariscategorie\nsalarischeque\nsalariseis\nsalarisgarantieregeling\nsalarisgarantieregelingen\nsalarisgrens\nsalarisgrenzen\nsalarisgroei\nsalarisgroep\nsalarisherziening\nsalarisklasse\nsalariskorting\nsalariskosten\nsalarisniveau\nsalarisontwikkeling\nsalarisplafond\nsalarisregeling\nsalarisschaal\nsalarisschijf\nsalarisstaat\nsalarisstijging\nsalarisstrook\nsalarisstructuur\nsalarissysteem\nsalaristabel\nsalarisverbetering\nsalarisvergelijking\nsalarisverhoging\nsalarisverlaging\nsalarisvermindering\nsalarisverschil\nsalariëren\nsalariëring\nsalbutamol\nsalderen\nsaldi\nsaldibalans\nsaldilijst\nsaldo\nsaldobedrag\nsaldobedragen\nsaldobetaling\nsaldobiljet\nsalesiaan\nsalesmanager\nsalespromotor\nsalet\nsaletjonker\nsalicyl\nsalicylzuur\nsalie\nsaliemelk\nsaline\nsalmagundi\nsalmi\nsalmiak\nsalmiakdrop\nsalmonella\nsalmonellabacterie\nsalmonellabesmetting\nsalmonellavergiftiging\nsalomonsoordeel\nsalomonszegel\nsalon\nsalonameublement\nsalonboot\nsaloncommunist\nsalonfähig\nsalonheld\nsalonmuziek\nsalonorkest\nsalonrijtuig\nsalonsocialist\nsalonstuk\nsalontafel\nsalontafelboek\nsalonwagen\nsaloon\nsaloondeur\nsalpeter\nsalpeterzuur\nsalsa\nsalsaband\nsalsamuziek\nsalto\nsalto mortale\nsalueren\nsalut\nsaluut\nsaluutschot\nsalvarsan\nsalvia\nsalvo\nsamaar\nsamaritaan\nsamba\nsambabal\nsambal\nsamen\nsamenballen\nsamenballing\nsamenbinden\nsamenblijven\nsamenbouwen\nsamenbreien\nsamenbrengen\nsamenbundelen\nsamenbundeling\nsamendoen\nsamendrijven\nsamendringen\nsamendrommen\nsamendrukbaar\nsamendrukbaarheid\nsamendrukken\nsamendrukking\nsamenflansen\nsamengaan\nsamengeflanst\nsamengeraapt\nsamengesteld\nsamengesteldbloemig\nsamengevat\nsamengevoegd\nsamengroeien\nsamenhang\nsamenhangen\nsamenhangend\nsamenhokken\nsamenhorigheid\nsamenhorigheidsgevoel\nsamenhouden\nsamenklank\nsamenklappen\nsamenklemmen\nsamenkleven\nsamenklonteren\nsamenklontering\nsamenknijpen\nsamenknopen\nsamenkoeken\nsamenkomen\nsamenkomst\nsamenkoppelen\nsamenkoppeling\nsamenkrimpen\nsamenleven\nsamenleving\nsamenlevingscontract\nsamenlevingsmodel\nsamenlevingsopbouw\nsamenlevingsregister\nsamenlevingsverband\nsamenlevingsvorm\nsamenloop\nsamenlopen\nsamennemen\nsamenpakken\nsamenpersen\nsamenproppen\nsamenraapsel\nsamenrapen\nsamenroepen\nsamenrotten\nsamenrotting\nsamenscholen\nsamenscholing\nsamenscholingsverbod\nsamensmeden\nsamensmeedt\nsamensmelten\nsamensmelting\nsamensnoering\nsamenspannen\nsamenspanning\nsamenspel\nsamenspelen\nsamenspraak\nsamenstel\nsamenstellen\nsamenstellend\nsamensteller\nsamenstellers\nsamenstelling\nsamenstelster\nsamenstromen\nsamentellen\nsamentreffen\nsamentrekken\nsamentrekking\nsamentrekkingsteken\nsamenvallen\nsamenvatten\nsamenvatting\nsamenvloeien\nsamenvloeiing\nsamenvoegen\nsamenvoeging\nsamenvouwen\nsamenweefsel\nsamenwerken\nsamenwerking\nsamenwerkingsafspraak\nsamenwerkingsakkoord\nsamenwerkingsbereidheid\nsamenwerkingscontract\nsamenwerkingsmodel\nsamenwerkingsorgaan\nsamenwerkingsorganisatie\nsamenwerkingsovereenkomst\nsamenwerkingspartner\nsamenwerkingsplan\nsamenwerkingsprogramma\nsamenwerkingsproject\nsamenwerkingsrelatie\nsamenwerkingsschool\nsamenwerkingssfeer\nsamenwerkingsveld\nsamenwerkingsverband\nsamenwerkingsverdrag\nsamenwerkingsvorm\nsamenweven\nsamenwonen\nsamenwoner\nsamenwoning\nsamenzang\nsamenzijn\nsamenzitten\nsamenzweerder\nsamenzweerderig\nsamenzweerders\nsamenzweren\nsamenzwering\nsamenzweringstheorie\nsamizdat\nsammelen\nsamoem\nsamoerai\nsamoreus\nsamowaar\nsamowar\nsampan\nsample\nsamplen\nsampler\nsampling\nsamsam\nsanatorium\nsanbenito\nsanctie\nsanctiebeleid\nsanctiecomité\nsanctiemaatregel\nsanctiemiddel\nsanctiepakket\nsanctiepolitiek\nsanctieregime\nsanctiesysteem\nsanctiewapen\nsanctiewet\nsanctioneren\nsanctionering\nsanctuarium\nsandaal\nsandelboom\nsandelhout\nsandelhouten\nsandelolie\nsandhi\nsandinist\nsandinistisch\nsandrak\nsandwich\nsandwichbord\nsandwichformule\nsandwichman\nsandwichspread\nsaneerder\nsaneren\nsanering\nsaneringsbeleid\nsaneringsbevel\nsaneringsfonds\nsaneringsgebied\nsaneringskaart\nsaneringskosten\nsaneringsmaatregel\nsaneringsonderzoek\nsaneringsoperatie\nsaneringsplan\nsaneringspolitiek\nsaneringsproces\nsaneringsprogramma\nsaneringsproject\nsaneringsregeling\nsaneringsronde\nsaneringswerk\nsangria\nsanguine\nsanguinisch\nsanhedrin\nsanitair\nsannyasin\nsans-papiers\nsansculotte\nsansculotten\nsanseveria\nsansevieria\nsanskritist\nsant\nsanten\nsantenboetiek\nsantenkraam\nsantin\nsantje\nsantjes\nsanté\nsap\nsapcentrifuge\nsapfisch\nsapgroen\nsappanhout\nsappe\nsappelaar\nsappelen\nsapperen\nsapperloot\nsappeur\nsappig\nsappigheid\nsaprijk\nsapristi\nsaprofyt\nsapstroom\nsapverf\nsara\nsarabande\nsarcasme\nsarcast\nsarcastisch\nsarcofaag\nsarcoom\nsarcoïdose\nsardien\nsardientje\nsardine\nsardineblikje\nsardonisch\nsardonyx\nsari\nsarin\nsarong\nsarren\nsarrig\nsas\nsasdeur\nsashimi\nsasmeester\nsassafras\nsassen\nsassenier\nsassluis\nsatan\nsatanisch\nsatanisme\nsatanist\nsatans\nsatansgebroed\nsatansgroep\nsatansgroepen\nsatanskerk\nsatanskind\nsatanswerk\nsatelliet\nsatellietbaan\nsatellietbedrijf\nsatellietbeeld\nsatellietcommunicatie\nsatellietfoto\nsatellietland\nsatellietnavigatie\nsatellietnavigatiesysteem\nsatellietnetwerk\nsatellietontvanger\nsatellietontvangst\nsatellietproject\nsatellietschotel\nsatellietstaat\nsatellietstad\nsatellietsysteem\nsatelliettelefoon\nsatelliettelevisie\nsatellietuitzending\nsatellietverbinding\nsatellietwaarneming\nsatellietzender\nsater\nsatijn\nsatijnachtig\nsatijnen\nsatijnig\nsatijnverf\nsatineren\nsatinet\nsatire\nsatiredichter\nsatiricus\nsatiriek\nsatirisch\nsatisfactie\nsatraap\nsatrapie\nsatsuma\nsaturnaliën\nsatyriasis\nsaté\nsatésaus\nsatéstokje\nsaucijs\nsaucijzenbroodje\nsaucisse\nsauna\nsaunabad\nsauriër\nsaurus\nsaus\nsausen\nsauskom\nsauslepel\nsauspan\nsauswerk\nsauteren\nsauveren\nsauzen\nsavanne\nsaven\nsavoir-faire\nsavoir-vivre\nsavonet\nsavooi\nsavooiekool\nsavooikool\nsavoureren\nsawa\nsax\nsaxofonist\nsaxofoniste\nsaxofoon\nsaxofoonkwartet\nsaxofoonspel\nscabiës\nscabreus\nscafander\nscala\nscalair\nscalp\nscalpeermes\nscalpel\nscalperen\nscampi\nscan\nscanapparaat\nscanapparatuur\nscandaleus\nscanderen\nscandinavistiek\nscannen\nscanner\nscanning\nscapulier\nscarabee\nscatologisch\nscenario\nscenarioschrijfster\nscenarioschrijven\nscenarioschrijver\nscenarist\nscenarist-regisseur\nscenariste\nscene\nscenery\nscenisch\nscenograaf\nscenografie\nscepsis\nscepter\nscepticisme\nscepticus\nsceptisch\nscha\nschaaf\nschaafbank\nschaafbeitel\nschaafijs\nschaafkrullen\nschaafmachine\nschaafsel\nschaafwond\nschaafwonde\nschaak\nschaakblind\nschaakboek\nschaakbond\nschaakbord\nschaakcafé\nschaakclub\nschaakcomputer\nschaakevenement\nschaakgrootmeester\nschaakjournalist\nschaakkampioen\nschaakkampioenschap\nschaakklok\nschaakles\nschaakleven\nschaakliefhebber\nschaakliteratuur\nschaakmat\nschaakmatch\nschaakmedewerker\nschaakmeester\nschaakolympiade\nschaakpartij\nschaakprobleem\nschaakprogramma\nschaakrubriek\nschaakspeelster\nschaakspel\nschaakspelen\nschaakspeler\nschaaksport\nschaakster\nschaakstuk\nschaaktoernooi\nschaaktornooi\nschaaktrainer\nschaakvereniging\nschaakwedstrijd\nschaakwereld\nschaakwonder\nschaakzet\nschaal\nschaalaanduiding\nschaalbaar\nschaalbaarheid\nschaalcollecte\nschaaldeel\nschaaldier\nschaaldieren\nschaalgrootte\nschaalmodel\nschaalverdeling\nschaalvergroting\nschaalvergrotingsoperatie\nschaalverkleining\nschaalverlichting\nschaalvoordeel\nschaalvrucht\nschaamachtig\nschaambeen\nschaamdeel\nschaamdelen\nschaamdoek\nschaamhaar\nschaamheuvel\nschaamlap\nschaamlip\nschaamlippen\nschaamluis\nschaamrood\nschaamschot\nschaamspleet\nschaamstreek\nschaamte\nschaamteblos\nschaamtegevoel\nschaamteloos\nschaamteloosheid\nschaamtelozen\nschaamtevol\nschaap\nschaapachtig\nschaapherder\nschaapherderin\nschaapscheerder\nschaapsherder\nschaapskleren\nschaapskooi\nschaapskop\nschaapskudde\nschaapsleder\nschaapsleer\nschaapsleren\nschaapsvacht\nschaar\nschaarbeweging\nschaarbos\nschaard\nschaarde\nschaarden\nschaardijk\nschaarhout\nschaarlamp\nschaars\nschaarsheid\nschaarsliep\nschaarste\nschaartrap\nschaarvormig\nschaarweide\nschaats\nschaatsafstand\nschaatsbaan\nschaatsband\nschaatsbelg\nschaatsbond\nschaatscarrière\nschaatsclub\nschaatsen\nschaatsenband\nschaatsenrijden\nschaatsenrijder\nschaatsenrijdster\nschaatsenslijper\nschaatser\nschaatsevenement\nschaatsfabrikant\nschaatshal\nschaatshout\nschaatsijzer\nschaatskampioen\nschaatskampioene\nschaatskampioenschap\nschaatsland\nschaatslanden\nschaatsleven\nschaatsliefhebber\nschaatsmarathon\nschaatsmijl\nschaatspak\nschaatspeloton\nschaatspiste\nschaatsploeg\nschaatsschool\nschaatsseizoen\nschaatssport\nschaatsster\nschaatstalent\nschaatstitel\nschaatstocht\nschaatstoernooi\nschaatstrainer\nschaatsunie\nschaatswedstrijd\nschaatswereld\nschab\nschabbernak\nschabbig\nschabel\nschabouwelijk\nschacht\nschachtendoop\nschachtenmeester\nschachtkooi\nschadde\nschade\nschade-eis\nschade-expert\nschade-uitkering\nschadeaangifte\nschadeactie\nschadeafdeling\nschadebedrag\nschadebehandeling\nschadebeperking\nschadecertificaat\nschadeclaim\nschadecommissaris\nschadecorrespondent\nschadefonds\nschadeformulier\nschadegeval\nschadeherstel\nschadelast\nschadelijder\nschadelijk\nschadelijkheid\nschadeloos\nschadeloosstellen\nschadeloosstelling\nschademelding\nschaden\nschadeopneming\nschadepercentage\nschadeplichtig\nschadeplichtigheid\nschadepost\nschadeprocedure\nschaderapport\nschaderegeling\nschaderekening\nschadestatistiek\nschadevergoeding\nschadevergoedingsplicht\nschadevergoedingsprocedure\nschadevergoedingsregeling\nschadeverhaal\nschadeverhaling\nschadeverloop\nschadeverzekeraar\nschadeverzekering\nschadeverzekeringsbedrijf\nschadevordering\nschadevrij\nschaduw\nschaduwachtig\nschaduwadministratie\nschaduwarchief\nschaduwbeeld\nschaduwbestaan\nschaduwbestand\nschaduwboekhouding\nschaduwboksen\nschaduweconomie\nschaduwen\nschaduwfiguur\nschaduwing\nschaduwkabinet\nschaduwkant\nschaduwkegel\nschaduwloos\nschaduwminister\nschaduwminnende\nschaduwpartij\nschaduwplek\nschaduwregering\nschaduwrijk\nschaduwspel\nschaduwspits\nschaduwverhaal\nschaduwwerking\nschaduwzijde\nschaffen\nschaft\nschaften\nschaftgelegenheid\nschafthuis\nschaftkeet\nschaftlokaal\nschafttijd\nschaftuur\nschakel\nschakelaar\nschakelapparatuur\nschakelarmband\nschakelautomaat\nschakelbaar\nschakelband\nschakelbord\nschakelbungalow\nschakelcapaciteit\nschakelcursus\nschakelen\nschakelfout\nschakelfunctie\nschakelhefboom\nschakelhuisje\nschakeling\nschakelkast\nschakelklas\nschakelklasse\nschakelklok\nschakelknop\nschakelmateriaal\nschakelmechanisme\nschakelmoment\nschakelnet\nschakeloptie\nschakelpaneel\nschakelperiode\nschakelprogramma\nschakelrad\nschakelschema\nschakelstation\nschakelwoning\nschaken\nschaker\nschakeren\nschakering\nschaking\nschalen\nschalie\nschaliedak\nschaliedekker\nschalk\nschalkachtig\nschalken\nschalks\nschalksheid\nschallebijter\nschallen\nschalm\nschalmei\nschalmen\nschalmgat\nschalmketting\nschamel\nschamelheid\nschamen\nschamp\nschampavie\nschampdek\nschampen\nschamper\nschamperen\nschamperheid\nschamppaal\nschampscheut\nschampschot\nschandaal\nschandaalblad\nschandaalpers\nschandaalsfeer\nschandaleus\nschandalig\nschandaliseren\nschandbord\nschanddaad\nschande\nschandegeld\nschandekoop\nschandelijk\nschandelijkheid\nschandknaap\nschandmerk\nschandmerken\nschandpaal\nschandpaaleffect\nschandteken\nschandvlek\nschandvlekken\nschans\nschansen\nschanskorf\nschansloper\nschansspringen\nschansspringer\nschap\nschapenboter\nschapenbout\nschapendoes\nschapenfokker\nschapenfokkerij\nschapengras\nschapenhoeder\nschapenhok\nschapenhouder\nschapenhouderij\nschapenhuid\nschapenkaas\nschapenkeutel\nschapenkop\nschapenleder\nschapenleer\nschapenleren\nschapenmarkt\nschapenmelk\nschapenpoot\nschapenras\nschapenschaar\nschapenscheerder\nschapenstal\nschapenteelt\nschapenvacht\nschapenvel\nschapenvet\nschapenvlees\nschapenweide\nschapenwol\nschapenwollen\nschapenziekte\nschapenzuring\nschaper\nschapershond\nschappelijk\nschappelijkheid\nschapraai\nschapruimte\nschapulier\nschar\nscharde\nschare\nscharen\nscharensliep\nscharenslijper\nscharlaken\nscharlakenrood\nscharlakens\nscharminkel\nscharnier\nscharnierbout\nscharnieren\nscharnierend\nscharnierfunctie\nscharniergewricht\nscharnierjaar\nscharnierkoppeling\nscharniermoment\nscharnierpunt\nscharrebier\nscharrebijter\nscharrel\nscharrelaar\nscharrelbenen\nscharrelei\nscharrelen\nscharrelkip\nscharreltje\nscharrelvarken\nscharrelvlees\nscharren\nscharretong\nschart\nschartong\nschat\nschatbaar\nschatbewaarder\nschateren\nschatering\nschaterlach\nschaterlachen\nschatgraver\nschatkaart\nschatkamer\nschatkist\nschatkistbewaarder\nschatkistbiljet\nschatkistbon\nschatkistcertificaat\nschatkistpapier\nschatkistpromesse\nschatkistsaldo\nschatkisttekort\nschatmeester\nschatplichtig\nschatplichtigen\nschatplichtigheid\nschatrijk\nschattebout\nschatten\nschatter\nschattig\nschattigheid\nschatting\nschattingskosten\nschatzoeker\nschavelen\nschaveling\nschaven\nschaverdijn\nschaverdijnen\nschavielen\nschavieling\nschaving\nschavot\nschavotkleur\nschavuit\nschavuitenstreek\nschede\nschedekramp\nschedel\nschedelbasis\nschedelbasisfractuur\nschedelbeen\nschedelboor\nschedelbreuk\nschedeldak\nschedelgeboorte\nschedelholte\nschedelhuid\nschedelinhoud\nschedelleer\nschedelletsel\nschedelligging\nschedelmeting\nschedelpunt\nschedeltrauma\nschee\nscheef\nscheefbloem\nscheefgezakt\nscheefgroei\nscheefgroeien\nscheefhals\nscheefheid\nscheefhoek\nscheefhoekig\nscheefliggende\nscheeflopen\nscheefnek\nscheefneus\nscheefogig\nscheefslaan\nscheefstaand\nscheefstand\nscheefte\nscheeftrekken\nscheeftrekking\nscheefwonen\nscheefzakken\nscheel\nscheelheid\nscheelogen\nscheelogig\nscheeloog\nscheelzien\nscheen\nscheenbeen\nscheenbeschermer\nscheepje\nscheepmaker\nscheepsaandeel\nscheepsafval\nscheepsagent\nscheepsagentuur\nscheepsarcheologie\nscheepsarts\nscheepsbehoeften\nscheepsbel\nscheepsbeschuit\nscheepsbestek\nscheepsbevrachter\nscheepsboord\nscheepsbouw\nscheepsbouwer\nscheepsbouwindustrie\nscheepsbouwkunde\nscheepsbouwkundig\nscheepsbouwmeester\nscheepscharter\nscheepsclassificatie\nscheepsconstructie\nscheepsdek\nscheepsdokter\nscheepseigenaar\nscheepsgelegenheid\nscheepsgezel\nscheepshelling\nscheepshoorn\nscheepshuid\nscheepshut\nscheepshypotheek\nscheepsjongen\nscheepsjournaal\nscheepskapitein\nscheepskeuken\nscheepskist\nscheepsklerk\nscheepsklok\nscheepsklokken\nscheepskok\nscheepskost\nscheepslading\nscheepslantaarn\nscheepslantaren\nscheepslast\nscheepslift\nscheepsmaat\nscheepsmagnaat\nscheepsmakelaar\nscheepsmaker\nscheepsmodel\nscheepsmotor\nscheepsnieuwbouw\nscheepsofficier\nscheepsongeluk\nscheepspapieren\nscheepsproviand\nscheepsraad\nscheepsramp\nscheepsrecht\nscheepsregister\nscheepsreis\nscheepsreparatie\nscheepsroeper\nscheepsrol\nscheepsromp\nscheepsruim\nscheepsruimte\nscheepsschroef\nscheepsterm\nscheepstijding\nscheepstijdingen\nscheepstimmerman\nscheepstimmerwerf\nscheepstoeter\nscheepston\nscheepstype\nscheepsverkeer\nscheepsvolk\nscheepsvracht\nscheepswand\nscheepswant\nscheepswerf\nscheepswerktuigkundige\nscheepswrak\nscheepvaart\nscheepvaartbedrijf\nscheepvaartbelang\nscheepvaartbericht\nscheepvaartgroep\nscheepvaartindustrie\nscheepvaartinspectie\nscheepvaartmaatschappij\nscheepvaartmuseum\nscheepvaartonderneming\nscheepvaartroute\nscheepvaartsector\nscheepvaartverkeer\nscheer\nscheerapparaat\nscheerbalk\nscheerbekken\nscheercontactdoos\nscheercrème\nscheerder\nscheerdoek\nscheerdoos\nscheerdraad\nscheergereedschap\nscheergerei\nscheerhout\nscheerklant\nscheerkop\nscheerkwast\nscheerlijn\nscheerling\nscheerlings\nscheermes\nscheermesje\nscheerriem\nscheersalon\nscheerschuim\nscheerspiegel\nscheerstaaf\nscheervlucht\nscheerwater\nscheerwinkel\nscheerwol\nscheerzeep\nscheerzolder\nscheet\nscheg\nschegbeeld\nschegge\nschei\nscheiboter\nscheidbaar\nscheidbrief\nscheiden\nscheider\nscheiding\nscheidingsangst\nscheidingsbemiddelaar\nscheidingsbemiddeling\nscheidingsdenken\nscheidingsgebergte\nscheidingsinstallatie\nscheidingslijn\nscheidingsmuur\nscheidingsprocedure\nscheidingsproces\nscheidingsschakelaar\nscheidingsteken\nscheidingstransformator\nscheidingswand\nscheids\nscheidsgerecht\nscheidslieden\nscheidslijn\nscheidsman\nscheidsmuur\nscheidsrechter\nscheidsrechteren\nscheidsrechterlijk\nscheidsrechtersbal\nscheidsrechterscommissie\nscheidsrechtersfluit\nscheidsrechterskorps\nscheidsrechtersstoel\nscheien\nscheikunde\nscheikundedoos\nscheikundeleraar\nscheikundeles\nscheikundig\nscheikundige\nscheilijn\nscheisloot\nscheitrechter\nscheiweg\nschel\nscheldbrief\nscheldejol\nschelden\nschelder\nscheldkanonnade\nscheldnaam\nscheldpartij\nscheldwoord\nschele\nschelen\nschelf\nschelheid\nschelknop\nschelkoord\nschellak\nschellen\nschellenboom\nschelling\nschellinkje\nschelm\nschelmachtig\nschelmenroman\nschelmenstreek\nschelmerij\nschelms\nschelmstuk\nschelp\nschelpdier\nschelpdieren\nschelpdiervisserij\nschelpenpad\nschelpenverzameling\nschelpenvisser\nschelpenzand\nschelpkalk\nschelpmotief\nschelpnet\nschelpvormig\nschelpweg\nschelpzand\nscheluw\nscheluwte\nschelven\nschelvis\nschelvisoog\nschelvisvangst\nschema\nschematekenprogramma\nschematisch\nschematiseren\nschematisering\nschematisme\nschemel\nschemer\nschemerachtig\nschemeravond\nschemerdonker\nschemerduister\nschemeren\nschemergebied\nschemerig\nschemering\nschemeringscirkel\nschemeringsschakelaar\nschemerlamp\nschemerlicht\nschemertijd\nschemertoestand\nschemeruur\nschemerwereld\nschemerzone\nschendblad\nschendbrief\nschenden\nschender\nschenderij\nschendig\nschending\nschenen\nschenk\nschenkblad\nschenkbord\nschenkel\nschenkeldijk\nschenkelvlees\nschenken\nschenker\nschenking\nschenkingsakte\nschenkingsrecht\nschenkkan\nschenkketel\nschenkkurk\nschenkmandje\nschenkrand\nschenkster\nschenktuit\nschennis\nschep\nschepbord\nschepel\nschepeling\nschepen\nschepenambt\nschepenbank\nschepenbrief\nschepencollege\nschependom\nschepenkamer\nschepenrecht\nscheper\nschepershond\nschepijs\nscheplepel\nschepnet\nscheppen\nscheppend\nschepper\nschepping\nscheppingsdaad\nscheppingsdag\nscheppingsdrang\nscheppingsdrift\nscheppingsgeschiedenis\nscheppingskracht\nscheppingsproces\nscheppingstheorie\nscheppingsverhaal\nscheppingsvermogen\nscheppingswerk\nscheprad\nschepsel\nschepvat\nscheren\nscherenkust\nscherf\nscherfbom\nscherfgranaat\nscherfvrij\nscherfwerend\nscherfwerking\nschering\nscherm\nschermafdruk\nschermbloemig\nschermbreedte\nschermclub\nschermdegen\nschermen\nschermenbeurs\nschermenhandel\nschermer\nschermgrootte\nschermhandschoen\nschermkunst\nschermles\nschermmasker\nschermmeester\nschermpje\nschermsport\nschermster\nschermutselen\nschermutseling\nschermvereniging\nschermzaal\nscherp\nscherpen\nscherper\nscherpheid\nscherphoekig\nscherpkort\nscherplang\nscherpomlijnd\nscherprechter\nscherpriekend\nscherpschutter\nscherpslijper\nscherpslijperij\nscherpsnijdend\nscherpstellen\nscherpstelling\nscherpte\nscherptediepte\nscherpzinnig\nscherpzinnigheid\nscherts\nschertsen\nschertsenderwijs\nschertsenderwijze\nschertsfiguur\nschertsprijs\nschertsprijzen\nschertsproces\nschertsvertoning\nscherven\nschervengericht\nscherzando\nscherzo\nscheten\nschets\nschetsboek\nschetsen\nschetsmatig\nschetsontwerp\nschetsplan\nschetstekening\nschetteren\nschetterstem\nscheuken\nscheukpaal\nscheur\nscheurbaan\nscheurbuik\nscheuren\nscheurijzer\nscheuring\nscheurkalender\nscheurkies\nscheurlijn\nscheurlijst\nscheurlinnen\nscheurmaker\nscheurmand\nscheurpapier\nscheurpartij\nscheurvorming\nscheut\nscheuten\nscheutig\nscheutigheid\nscheutist\nschicht\nschichtig\nschichtigheid\nschiedammer\nschiedammertje\nschiefer\nschielijk\nschielijkheid\nschieman\nschiemannen\nschiemansgaren\nschiep\nschier\nschieraal\nschiereiland\nschietbaan\nschietclub\nschieten\nschieter\nschietgat\nschietgebed\nschietgeweer\nschietgraag\nschietijzer\nschietincident\nschieting\nschietinstructie\nschietkampioen\nschietkans\nschietkatoen\nschietklaar\nschietkraam\nschietlap\nschietles\nschietlijn\nschietlood\nschietmasker\nschietoefening\nschietpartij\nschietproef\nschietschijf\nschietschool\nschietschouw\nschietsleuf\nschietspel\nschietspoel\nschietsport\nschietstoel\nschiettent\nschietterrein\nschiettuig\nschietvaardig\nschietvaardigheid\nschietvereniging\nschietvoorraad\nschietwapen\nschietwilg\nschiften\nschifting\nschijf\nschijfgeheugen\nschijfje\nschijfkoppeling\nschijfkwal\nschijfrem\nschijfruimte\nschijfschieten\nschijfvormig\nschijfwiel\nschijn\nschijnaanval\nschijnbaar\nschijnbeeld\nschijnbeweging\nschijndemocratie\nschijndeugd\nschijndode\nschijndood\nschijneenheid\nschijnen\nschijnexecutie\nschijngehakt\nschijngeleerde\nschijngeluk\nschijngestalte\nschijngevecht\nschijngrond\nschijnhandeling\nschijnheilig\nschijnheilige\nschijnheiligheid\nschijnhuwelijk\nschijnkoop\nschijnmanoeuvre\nschijnoplossing\nschijnpapaver\nschijnprobleem\nschijnproces\nschijnreden\nschijnschoon\nschijnsel\nschijnspurrie\nschijntegenstelling\nschijntje\nschijnveiligheid\nschijnvertoning\nschijnvrede\nschijnvriend\nschijnvroom\nschijnvrucht\nschijnwereld\nschijnwerkelijkheid\nschijnwerper\nschijnzekerheid\nschijnzoet\nschijnzwanger\nschijnzwangerschap\nschijt\nschijtebroek\nschijten\nschijter\nschijterig\nschijterij\nschijtgat\nschijthuis\nschijtkont\nschijtlaars\nschijtwortel\nschijveling\nschijven\nschijveneg\nschijvenegge\nschijvengeheugen\nschijventarief\nschik\nschikgodin\nschikgodinnen\nschikkelijk\nschikken\nschikking\nschikkingsbedrag\nschikkingsvoorstel\nschil\nschild\nschildboortig\nschilddak\nschilddrager\nschilder\nschilderaar\nschilderacademie\nschilderachtig\nschilderachtigheid\nschilderatelier\nschilderbeurt\nschilderemail\nschilderen\nschilderes\nschildergerei\nschilderhuis\nschilderij\nschilderijencollectie\nschilderijengalerij\nschilderijenkabinet\nschilderijenmuseum\nschilderijententoonstelling\nschilderijenverzameling\nschilderijlijst\nschildering\nschilderkunst\nschilderkunstig\nschilderles\nschildersambacht\nschildersatelier\nschildersbedrijf\nschildersbent\nschildersbranche\nschilderschool\nschildersezel\nschildersgroep\nschildersmodel\nschildersmossel\nschildersschool\nschilderstijl\nschilderstuk\nschildersvak\nschildersverdriet\nschilderswinkel\nschildertechniek\nschildertrant\nschilderwerk\nschilderwijze\nschildhouder\nschildklier\nschildklierhormoon\nschildknaap\nschildluis\nschildpad\nschildpadden\nschildpaddensoep\nschildpadsoep\nschildvleugelig\nschildvormig\nschildwacht\nschildwachthuisje\nschilfer\nschilferachtig\nschilferen\nschilferig\nschilfering\nschilfersteen\nschillen\nschillenbak\nschillenboer\nschillenmand\nschillerhemd\nschillerkraag\nschilletje\nschilling\nschilmachine\nschilmesje\nschim\nschimmel\nschimmelbles\nschimmeldodend\nschimmelen\nschimmelgroei\nschimmelig\nschimmelinfectie\nschimmeling\nschimmelkaas\nschimmelkleurig\nschimmelplant\nschimmelspel\nschimmelvorming\nschimmelwerend\nschimmelziekte\nschimmenrijk\nschimmenspel\nschimmenwereld\nschimmetje\nschimmig\nschimmigheid\nschimp\nschimpdicht\nschimpen\nschimpig\nschimplied\nschimpnaam\nschimprede\nschimpscheut\nschimpwoord\nschink\nschinkel\nschinkelhaak\nschinken\nschip\nschipbreuk\nschipbreukeling\nschipbrug\nschipper\nschipperen\nschipperij\nschippersbeurs\nschippersboek\nschippersboom\nschippersgemeente\nschippershuis\nschipperskind\nschippersknecht\nschippersknoop\nschippersorganisatie\nschipperstrui\nschippersvrouw\nschippertje\nschippond\nschisma\nschismaticus\nschismatiek\nschistosomiasis\nschitteren\nschitterend\nschittering\nschitterlicht\nschizofreen\nschizofrenie\nschizoïde\nschlager\nschlagerzanger\nschlemiel\nschlemielig\nschluss\nschmieren\nschmink\nschminken\nschnabbel\nschnabbelaar\nschnabbelcircuit\nschnabbelen\nschnaps\nschnauzer\nschnitzel\nschobbejak\nschobbejakken\nschobben\nschobber\nschobberd\nschobberdebonk\nschoeien\nschoeiing\nschoeisel\nschoelje\nschoeljeachtig\nschoen\nschoenaantrekker\nschoenborstel\nschoencrème\nschoenenbranche\nschoenendoos\nschoenenfabriek\nschoenenfabrikant\nschoenenindustrie\nschoenenmarkt\nschoenenmerk\nschoenenontwerpster\nschoenensponsor\nschoenenverkoper\nschoenenwinkel\nschoenenzaak\nschoener\nschoenerbark\nschoenfabriek\nschoengesp\nschoenhoorn\nschoenindustrie\nschoenklomp\nschoenlappen\nschoenlapper\nschoenleer\nschoenleest\nschoenlepel\nschoenmaat\nschoenmaken\nschoenmaker\nschoenmakerij\nschoenmakersjongen\nschoenmakerswinkel\nschoenontwerper\nschoenpin\nschoenpoets\nschoenpoetser\nschoenriem\nschoensmeer\nschoenspijker\nschoentje\nschoenverkoper\nschoenveter\nschoenwinkel\nschoenzool\nschoep\nschoepen\nschoepenrad\nschoffel\nschoffelen\nschoffelfrees\nschofferen\nschoffering\nschoffie\nschoft\nschoftachtig\nschoften\nschofterig\nschofthoogte\nschok\nschokabsorberend\nschokbestendig\nschokbestendigheid\nschokbeton\nschokbreker\nschokdemper\nschokdemping\nschokeffect\nschokgolf\nschokken\nschokkend\nschokker\nschokkerig\nschokproef\nschokschouderen\nschoksgewijs\nschoksgewijze\nschoktherapie\nschokvrij\nschokwerking\nschol\nscholarisatie\nscholaster\nscholasticus\nscholastiek\nscholastisch\nschold\nscholekster\nscholen\nscholenbestand\nscholenbouw\nscholencomplex\nscholenfusie\nscholengemeenschap\nscholengroep\nscholenproject\nscholenstrijd\nscholfilet\nscholiast\nscholier\nscholiere\nscholierenstaking\nscholierster\nscholing\nscholingsactiviteiten\nscholingsaftrek\nscholingsgraad\nscholingsinstituut\nscholingskosten\nscholingsniveau\nscholingsplan\nscholingsprogramma\nscholingsproject\nscholingsverlof\nscholiën\nschollevaar\nscholp\nscholver\nschommel\nschommelaar\nschommelbank\nschommelbeweging\nschommelen\nschommelgang\nschommelig\nschommeling\nschommelingsmarge\nschommelmeisje\nschommelstoel\nschond\nschone\nschonegrondverklaring\nschonen\nschonk\nschonkig\nschoof\nschooien\nschooier\nschooieren\nschooierij\nschooister\nschool\nschooladvies\nschooladviesdienst\nschoolagenda\nschoolagent\nschoolakte\nschoolarts\nschoolatlas\nschoolbank\nschoolbataljon\nschoolbegeleider\nschoolbegeleidingsdienst\nschoolbehoeften\nschoolbel\nschoolbeleid\nschoolbestuur\nschoolbestuurder\nschoolbevolking\nschoolbezoek\nschoolbibliotheek\nschoolbijdrage\nschoolbijdragen\nschoolblad\nschoolblijven\nschoolboek\nschoolboekhandel\nschoolbord\nschoolbudget\nschoolbus\nschoolcarrière\nschoolcijfers\nschoolcomplex\nschoolcomputer\nschoolconciërge\nschoolcoördinator\nschoolcultuur\nschooldag\nschooldecaan\nschooldecanaat\nschooldeur\nschooldiploma\nschooldirecteur\nschooldirectie\nschooldistrict\nschoolexamen\nschoolfeest\nschoolfonds\nschoolfoto\nschoolfrik\nschoolfruit\nschoolgaan\nschoolgaand\nschoolgang\nschoolgebonden\nschoolgebouw\nschoolgeld\nschoolgemeenschap\nschoolgeweld\nschoolgids\nschoolgrammatica\nschoolgrootte\nschoolhoofd\nschoolhouden\nschoolhuis\nschoolinspecteur\nschoolinspectie\nschoolinternaat\nschooljaar\nschooljeugd\nschooljongen\nschooljuf\nschooljuffrouw\nschoolkaart\nschoolkameraad\nschoolkamp\nschoolkennis\nschoolkeuze\nschoolkind\nschoolklas\nschoolklimaat\nschoolkosten\nschoolkrant\nschoolkwestie\nschoolleeftijd\nschoolleider\nschoolleiding\nschoolleven\nschoollokaal\nschoolloopbaan\nschoollopen\nschoolmaatschappelijk\nschoolmakker\nschoolmanagement\nschoolmateriaal\nschoolmeester\nschoolmeesterachtig\nschoolmeesterachtigheid\nschoolmeesteren\nschoolmeisje\nschoolmelk\nschoolmeubilair\nschoolmuseum\nschoolmuur\nschoolmuziek\nschoolnet\nschoolniveau\nschoolonderwijs\nschoolonderzoek\nschoolopleiding\nschoolopziener\nschoolorganisatie\nschoolorkest\nschoolpaard\nschoolpact\nschoolperiode\nschoolplaat\nschoolplein\nschoolplicht\nschoolplichtig\nschoolpolitiek\nschoolpoort\nschoolpopulatie\nschoolprogramma\nschoolproject\nschoolpsycholoog\nschoolraad\nschoolradio\nschoolradioprogramma\nschoolrapport\nschoolreglement\nschoolreis\nschoolrijden\nschoolrijp\nschoolroute\nschools\nschoolschip\nschoolschrift\nschoolseizoen\nschoolsheid\nschoolslag\nschoolsoort\nschoolsport\nschoolsportdag\nschoolstrijd\nschoolsucces\nschoolsysteem\nschooltaal\nschooltas\nschoolteam\nschooltelevisie\nschoolterrein\nschooltijd\nschooltoets\nschooltoezicht\nschooltoneel\nschooltucht\nschooltuin\nschooltuinproject\nschooltuinprojecten\nschooltype\nschooluitgaaf\nschooluitgave\nschooluitval\nschooluitvoering\nschooluitzending\nschooluniform\nschooluur\nschoolvak\nschoolvakantie\nschoolverband\nschoolvereniging\nschoolverlaten\nschoolverlater\nschoolvervoer\nschoolverzuim\nschoolvoeding\nschoolvoetbal\nschoolvoorbeeld\nschoolvoorstelling\nschoolvos\nschoolvriend\nschoolvriendin\nschoolvrij\nschoolwandeling\nschoolwedstrijd\nschoolweek\nschoolwerk\nschoolwerkplan\nschoolwet\nschoolwezen\nschoolwijsheid\nschoolwoning\nschoolziek\nschoolzwemmen\nschoon\nschoonbroeder\nschoonbroer\nschoondochter\nschoondruk\nschoonfamilie\nschoongeborsteld\nschoonheid\nschoonheidsbehandeling\nschoonheidsbeleving\nschoonheidscommissie\nschoonheidsfout\nschoonheidsgevoel\nschoonheidsideaal\nschoonheidsinstituut\nschoonheidskoningin\nschoonheidsleer\nschoonheidsmasker\nschoonheidsmiddel\nschoonheidsprijs\nschoonheidsproduct\nschoonheidssalon\nschoonheidsslaapje\nschoonheidsspecialist\nschoonheidsspecialiste\nschoonheidsverzorging\nschoonheidswedstrijd\nschoonheidszin\nschoonhouden\nschoonklinkend\nschoonmaak\nschoonmaakactie\nschoonmaakartikel\nschoonmaakartikelen\nschoonmaakbedrijf\nschoonmaakbeurt\nschoonmaakbranche\nschoonmaakcontract\nschoonmaakdienst\nschoonmaakkosten\nschoonmaakmiddel\nschoonmaakoperatie\nschoonmaakpersoneel\nschoonmaakploeg\nschoonmaaksector\nschoonmaakster\nschoonmaakwerk\nschoonmaakwoede\nschoonmaken\nschoonmaker\nschoonmoeder\nschoonouder\nschoonouders\nschoonpapa\nschoonpoetsen\nschoonprater\nschoonrijden\nschoonschijnend\nschoonschrift\nschoonschrijven\nschoonschrijver\nschoonspoelen\nschoonspringen\nschoonspringer\nschoonspringster\nschoontjes\nschoonvader\nschoonvegen\nschoonwassen\nschoonwerk\nschoonwrijven\nschoonzoon\nschoonzus\nschoonzuster\nschoonzwemmen\nschoor\nschoorbalk\nschoorhoek\nschoormuur\nschoorpaal\nschoorpijler\nschoorsteen\nschoorsteenbrand\nschoorsteenkap\nschoorsteenmantel\nschoorsteenpijp\nschoorsteenplaat\nschoorsteenpotten\nschoorsteenstuk\nschoorsteenval\nschoorsteenvegen\nschoorsteenveger\nschoorvoetend\nschoorwal\nschoorzuil\nschoot\nschootcomputer\nschootgaan\nschoothond\nschoothondje\nschootkind\nschootsafstand\nschootshoek\nschootsvel\nschootsveld\nschootvrij\nschop\nschoppen\nschoppenaas\nschopstoel\nschor\nschorem\nschoren\nschorheid\nschoring\nschorpioen\nschorre\nschorremorrie\nschorren\nschorriemorrie\nschors\nschorsen\nschorseneel\nschorseneer\nschorsing\nschorsingsprocedure\nschorsingsverzoek\nschorsmolen\nschorste\nschort\nschorteldoek\nschorten\nschortenband\nschot\nschotbalk\nschotel\nschotelantenne\nschotelbezitter\nschoteldoek\nschotelen\nschotelhuis\nschotelrek\nschoteltje\nschotelvod\nschotelvormig\nschotelwater\nschoten\nschotenwisseling\nschotkalf\nschotresten\nschots\nschotsbont\nschotschrift\nschotvaardig\nschotvarken\nschotvrij\nschotwilg\nschotwond\nschotwonde\nschouder\nschouderband\nschouderbedekking\nschouderblad\nschouderblessure\nschouderbreedte\nschouderduw\nschouderen\nschoudergewricht\nschouderham\nschouderhoogte\nschouderkarbonade\nschouderklop\nschouderklopje\nschoudermantel\nschouderophalen\nschouderophalend\nschouderpassant\nschouderpijn\nschouderriem\nschouderstand\nschouderstuk\nschoudertas\nschoudervulling\nschouderworp\nschout\nschout-bij-nacht\nschoutambt\nschoutschap\nschouw\nschouwbrand\nschouwburg\nschouwburgabonnement\nschouwburgbezoek\nschouwburgbezoeker\nschouwburgdirecteur\nschouwburgdirectie\nschouwburgpubliek\nschouwburgzaal\nschouwen\nschouwer\nschouwgarnituur\nschouwing\nschouwingsbewijs\nschouwmantel\nschouwplaats\nschouwspel\nschouwtoneel\nschouwveger\nschoven\nschovenbinder\nschoverzeil\nschraag\nschraagbalk\nschraagpijler\nschraal\nschraalhans\nschraalheid\nschraalte\nschraaltjes\nschraap\nschraapachtig\nschraapijzer\nschraapmes\nschraapsel\nschraapstaal\nschraapzucht\nschraapzuchtig\nschrab\nschrabben\nschrabber\nschragen\nschraging\nschralen\nschraler\nschram\nschrammen\nschrander\nschrandere\nschranderheid\nschrank\nschranken\nschransen\nschranser\nschranserij\nschranspartij\nschranzen\nschranzer\nschrap\nschrapen\nschraper\nschraperig\nschraperigheid\nschrapijzer\nschrapnel\nschrappen\nschrapper\nschrapping\nschrapsel\nschrede\nschreed\nschreef\nschreefloos\nschreeuw\nschreeuwbek\nschreeuwen\nschreeuwend\nschreeuwer\nschreeuwerig\nschreeuwlelijk\nschreeuwlelijkerd\nschreeuwpartij\nschreeuwvogel\nschreeuwvogels\nschreien\nschreier\nschreierig\nschrepel\nschreven\nschriel\nschrielheid\nschrieltjes\nschrieperig\nschrift\nschriftbeeld\nschriftcultuur\nschrifteffect\nschriftelijk\nschriftexpertise\nschriftkunde\nschriftkundige\nschriftteken\nschriftuur\nschriftvervalser\nschriftvervalsing\nschrijden\nschrijfbehoeften\nschrijfbenodigdheden\nschrijfblad\nschrijfblok\nschrijfboek\nschrijfbureau\nschrijfcursus\nschrijffout\nschrijfgemak\nschrijfgerei\nschrijfgerief\nschrijfgroep\nschrijfhouding\nschrijfhulp\nschrijfinkt\nschrijfkamer\nschrijfkop\nschrijfkoppen\nschrijfkramp\nschrijfkunst\nschrijfles\nschrijflessenaar\nschrijfletter\nschrijfmachine\nschrijfmachinelint\nschrijfmap\nschrijfmateriaal\nschrijfoefening\nschrijfonderwijs\nschrijfopdracht\nschrijfpapier\nschrijfpen\nschrijfplezier\nschrijfproces\nschrijfrechten\nschrijfsel\nschrijfster\nschrijfstift\nschrijfstijl\nschrijftaal\nschrijftafel\nschrijftalent\nschrijftoets\nschrijftrant\nschrijfvaardigheid\nschrijfverbod\nschrijfwaren\nschrijfwedstrijd\nschrijfwerk\nschrijfwijs\nschrijfwijze\nschrijfwijzer\nschrijfwoede\nschrijlings\nschrijn\nschrijnen\nschrijnend\nschrijnwerk\nschrijnwerker\nschrijnwerkerij\nschrijvelaar\nschrijven\nschrijver\nschrijver-dichter\nschrijver-journalist\nschrijverij\nschrijversbent\nschrijversblok\nschrijverscarrière\nschrijverschap\nschrijverscollectief\nschrijversduo\nschrijversechtpaar\nschrijversgild\nschrijversleven\nschrijversloopbaan\nschrijversnaam\nschrijversorganisatie\nschrijversteam\nschrijvertje\nschrik\nschrikaanjagend\nschrikaanjaging\nschrikachtig\nschrikbarend\nschrikbeeld\nschrikbewind\nschrikdraad\nschrikeffect\nschrikkeldag\nschrikkeldans\nschrikkelijk\nschrikkeljaar\nschrikkelmaand\nschrikken\nschrikkerig\nschrikmiddel\nschrikogen\nschrikplank\nschrikpoeder\nschrikpoeier\nschrikreactie\nschrikverwekkend\nschrikwekkend\nschril\nschrilheid\nschrobbe\nschrobben\nschrobber\nschrobbering\nschrobbing\nschrobnet\nschrobput\nschrobputje\nschrobputten\nschrobster\nschrobvisserij\nschrobzaag\nschroden\nschroef\nschroefas\nschroefaskoker\nschroefbank\nschroefblad\nschroefboor\nschroefboot\nschroefbout\nschroefdeksel\nschroefdop\nschroefdraad\nschroeflijn\nschroefloos\nschroefmoer\nschroefoog\nschroefrendement\nschroefsgewijs\nschroefsleutel\nschroefsluiting\nschroefstoomboot\nschroeftang\nschroefturbine\nschroefveer\nschroefvormig\nschroei-ijzer\nschroeien\nschroeierig\nschroeilucht\nschroeiplek\nschroeven\nschroevendraaier\nschrok\nschrokachtig\nschrokken\nschrokker\nschrokkerd\nschrokkerig\nschrokop\nschromelijk\nschromen\nschrompelen\nschrompelig\nschrooi\nschrooi-ijzer\nschrooien\nschrooier\nschroom\nschroomachtig\nschroomvallig\nschroomvalligheid\nschroomvol\nschroot\nschroothandel\nschroothandelaar\nschroothoop\nschrootjes\nschrootjeswand\nschrootvuur\nschrootwaarde\nschrot\nschroten\nschub\nschubachtig\nschubbe\nschubben\nschubbetje\nschubbig\nschubdier\nschubdieren\nschubhuid\nschubje\nschubmes\nschubsgewijs\nschuchter\nschuchterheid\nschudde\nschuddebol\nschuddebollen\nschuddebuiken\nschuddekoppen\nschudden\nschudding\nschudgoot\nschuier\nschuieren\nschuif\nschuifafsluiter\nschuifblad\nschuifdak\nschuifdeur\nschuifelen\nschuifknop\nschuifknoppen\nschuifladder\nschuiflade\nschuifluik\nschuifmaat\nschuifpaneel\nschuifpui\nschuifraam\nschuifregelaar\nschuifslot\nschuifspanning\nschuiftafel\nschuiftrombone\nschuiftrompet\nschuifvenster\nschuifwand\nschuifweerstand\nschuiladres\nschuilen\nschuilevinkje\nschuilgaan\nschuilgelegenheid\nschuilhoek\nschuilhol\nschuilhouden\nschuilhut\nschuilkelder\nschuilkerk\nschuilnaam\nschuiloord\nschuilplaats\nschuilplek\nschuim\nschuimachtig\nschuimbad\nschuimbekken\nschuimblusser\nschuimen\nschuimer\nschuimgebakje\nschuimig\nschuimkop\nschuimkraag\nschuimlaag\nschuimlepel\nschuimpje\nschuimplastic\nschuimrubber\nschuimrubberen\nschuimspaan\nschuimtablet\nschuimvlok\nschuimvorming\nschuimwijn\nschuin\nschuinen\nschuining\nschuins\nschuinschrift\nschuinsmarcheerder\nschuinstaand\nschuinte\nschuit\nschuitengat\nschuitenhuis\nschuitenvoerder\nschuitje\nschuitjevaren\nschuitvormig\nschuiven\nschuiver\nschuivertje\nschuld\nschuldafbouw\nschuldaflossing\nschuldbedrag\nschuldbeheer\nschuldbekentenis\nschuldbelijdenis\nschuldbemiddeling\nschuldbesef\nschuldbetaling\nschuldbewijs\nschuldbewust\nschuldbewustzijn\nschuldbrief\nschuldcomplex\nschulddelging\nschuldeisend\nschuldeiser\nschuldeiseres\nschuldeloos\nschuldeloosheid\nschuldenaar\nschuldenakkoord\nschuldenares\nschuldenbeleid\nschuldenberg\nschuldencrisis\nschuldenkwestie\nschuldenkwijtschelding\nschuldenland\nschuldenlast\nschuldenlastverlichting\nschuldenplan\nschuldenpositie\nschuldenprobleem\nschuldenproblematiek\nschuldenregeling\nschuldenverlichting\nschuldenvrij\nschulderkenning\nschuldfinanciering\nschuldgevoel\nschuldgevoelens\nschuldgraad\nschuldherschikking\nschuldhulpverlening\nschuldig\nschuldige\nschuldigverklaring\nschuldkwijtschelding\nschuldloos\nschuldoverdracht\nschuldovereenkomst\nschuldpapier\nschuldpositie\nschuldprobleem\nschuldquote\nschuldratio\nschuldreductie\nschuldregeling\nschuldsaldo\nschuldsaldoverzekering\nschuldsanering\nschuldtitels\nschulduitsluitingsgrond\nschuldverbintenis\nschuldvereffening\nschuldvergelijking\nschuldvergeving\nschuldverlichting\nschuldvermindering\nschuldverplichting\nschuldvordering\nschuldvraag\nschulp\nschulpen\nschulplijn\nschulpzaag\nschunnig\nschunnigheid\nschuren\nschurft\nschurftig\nschurftigheid\nschurftkop\nschurftmijt\nschuring\nschurk\nschurkachtig\nschurkachtigheid\nschurken\nschurkenrol\nschurkenstaat\nschurkenstreek\nschurkenwerk\nschurkerij\nschurkpaal\nschut\nschutblad\nschutdeur\nschutgeld\nschuthoogte\nschutkleur\nschutkolk\nschutmeester\nschutpaal\nschutsboom\nschutsel\nschutsengel\nschutsheer\nschutsheilige\nschutskring\nschutsluis\nschutspatroon\nschutstal\nschutsvrouw\nschutten\nschutter\nschutteren\nschutterig\nschutterigheid\nschutterij\nschuttersbond\nschuttersdoelen\nschuttersfeest\nschuttersgilde\nschutterskoning\nschuttersmaaltijd\nschuttersput\nschuttersstuk\nschutting\nschuttingtaal\nschuttingwoord\nschuur\nschuurborstel\nschuurdeur\nschuurgoed\nschuurlinnen\nschuurmachine\nschuurpaal\nschuurpapier\nschuurpoort\nschuurschijf\nschuursel\nschuurspons\nschuurtje\nschuurzand\nschuw\nschuwen\nschuwheid\nschwalbe\nschwung\nsciencefiction\nsciencefictionfilm\nsciencefictionroman\nsciencefictionschrijver\nsciencefictionserie\nsciencepark\nsciopticon\nsciëntisme\nsclerose\nscoliose\nscone\nscones\nscoop\nscooter\nscootmobiel\nscope\nscopolamine\nscorbuut\nscore\nscorebord\nscorekaart\nscorelijst\nscoren\nscorer\nscoreverloop\nscoringsdrang\nscoringsdrift\nscoringskans\nscoringspercentage\nscoringspositie\nscotch\nscout\nscouting\nscoutingclub\nscoutinggroep\nscoutingsapparaat\nscoutisme\nscrabbelaar\nscrabbelen\nscrabble\nscramjet\nscrapie\nscraps\nscratchen\nscreenen\nscreeningsprogramma\nscreensaver\nscreentest\nscriba\nscribent\nscrimmage\nscrip\nscript\nscriptgirl\nscriptie\nscriptorium\nscriptschrijver\nscripttaal\nscrofuleus\nscrofulose\nscrollen\nscrotum\nscrub\nscrubben\nscrum\nscrupel\nscrupule\nscrupules\nscrupuleus\nscrupulositeit\nscullen\nsculler\nsculpturaal\nsculptuur\nscène\nsealen\nsealskin\nseance\nsec\nsecans\nsecessie\nsecessionist\nsecond opinion\nsecondair\nsecondant\nsecondante\nseconde\nsecondelang\nsecondelijm\nseconderen\nsecondeslinger\nsecondewerk\nsecondewijzer\nsecreet\nsecretaire\nsecretaresse\nsecretariaat\nsecretariaat-generaal\nsecretariaatskosten\nsecretarie\nsecretarieel\nsecretaris\nsecretaris-generaal\nsecretaris-penningmeester\nsecretarisschap\nsecretarissen-generaal\nsecretie\nsectie\nsectiebestuur\nsectiecommandant\nsectierapport\nsectievergadering\nsectievoorzitter\nsectio\nsector\nsectoraal\nsectoranalyse\nsectorbeleid\nsectordirecteur\nsectorfonds\nsectorgemiddelde\nsectorgenoot\nsectorhoofd\nsectorieel\nsectormanager\nsectornieuws\nsectorniveau\nsectorraad\nseculair\nsecularisatie\nseculariseren\nsecularisering\nsecularisme\nseculier\nsecundair\nsecundo\nsecundus\nsecuriteit\nsecuur\nsedan\nsedatie\nsedatief\nsedativum\nsedentair\nseder\nsedert\nsedertdien\nsediment\nsedimentair\nsedimentatie\nsedimentgesteente\nseductie\nseelachs\nseffens\nsegment\nsegmentaal\nsegmentatie\nsegmenteren\nsegmentering\nsegregatie\nsegregeren\nsegrijn\nseider\nseideravond\nseigneur\nsein\nseinboek\nseinbord\nseincode\nseinen\nseiner\nseinfluit\nseingever\nseinhoorn\nseinhuis\nseinlamp\nseinlantaarn\nseinlicht\nseinontvanger\nseinpaal\nseinpost\nseinraket\nseinregister\nseinsleutel\nseinspiegel\nseinstoring\nseintje\nseintoestel\nseintoren\nseinvlag\nseinvuur\nseinwachter\nseismisch\nseismograaf\nseismogram\nseismologie\nseismologisch\nseismoloog\nseismometer\nseitan\nseizen\nseizing\nseizoen\nseizoenarbeid\nseizoenarbeider\nseizoenartikel\nseizoenbedrijf\nseizoendrukte\nseizoenfactor\nseizoenfluctuatie\nseizoengebonden\nseizoengevoelig\nseizoeninvloed\nseizoenkaart\nseizoenkaarthouder\nseizoenmatig\nseizoenopruiming\nseizoenprestatie\nseizoensarbeid\nseizoenschommeling\nseizoensgasten\nseizoensgebonden\nseizoenshelft\nseizoensinvloed\nseizoensmatig\nseizoensstart\nseizoenstart\nseizoenswerk\nseizoenszege\nseizoenwerk\nseizoenwerkloosheid\nseizoenzege\nseks\nseksadvertentie\nseksaffaire\nseksbaas\nseksbioscoop\nseksblad\nseksboek\nseksboetiek\nseksbom\nseksbranche\nseksclub\nsekse\nseksediscriminatie\nseksegebonden\nseksegelijkheid\nseksegenoot\nseksegenote\nseksen\nsekseneutraal\nsekser\nsekseverschil\nseksexploitant\nseksfilm\nseksfoto\nseksindustrie\nseksinrichting\nseksisme\nseksist\nseksistisch\nseksleven\nsekslijn\nseksloos\nseksmaniak\nseksobject\nseksobjecten\nseksorgie\nseksschandaal\nseksscène\nseksshop\nsekssite\nsekssymbool\nsekstheater\nsekstherapeut\nsekstoerisme\nsekstoerist\nseksualiseren\nseksualisering\nseksualiteit\nseksualiteitsbeleving\nseksueel\nseksuologe\nseksuologie\nseksuologisch\nseksuoloog\nseksverslaving\nseksvideo\nsekswerker\nsekswinkel\nsekt\nsektarisch\nsektarisme\nsektariër\nsekte\nsektegeest\nsekteleider\nsektelid\nsekwester\nsekwestratie\nsekwestreren\nsela\nselder\nselderie\nselderieknol\nselderiesoep\nselderij\nselderijknol\nselderijsoep\nselderijzout\nselderknol\nseldersoep\nseldertje\nselect\nselecteren\nselecteur\nselectie\nselectiebeleid\nselectiebureau\nselectiecommissie\nselectiecriterium\nselectiedruk\nselectief\nselectielijst\nselectiemechanisme\nselectiemethode\nselectiemodus\nselectienorm\nselectieprocedure\nselectieproces\nselectiepsychologie\nselectieronde\nselectiespeler\nselectiesysteem\nselectieteam\nselectietheorie\nselectiewedstrijd\nselectiviteit\nseleen\nseleenzuur\nselenium\nselffulfilling\nselffulfilling prophecy\nselfmade\nselfservice\nselfsupporting\nsemafonie\nsemafoon\nsemafoor\nsemanteem\nsemanticus\nsemantiek\nsemantisch\nsemasiologie\nsemasiologisch\nsemavoice\nsemester\nsemi-industrieel\nsemi-intellectueel\nsemiambtelijk\nsemiarts\nsemiartsen\nsemiautobiografisch\nsemiautomatisch\nsemiautonoom\nsemibungalow\nsemicollectief\nsemicrimineel\nsemidemocratisch\nsemidocumentaire\nsemifinale\nsemigeprivatiseerd\nsemiklassieker\nsemilegaal\nsemilor\nsemimilitair\nsemimuraal\nseminaar\nseminar\nseminarie\nseminarist\nseminarium\nseminomadisch\nsemiofficieel\nsemiologie\nsemionafhankelijk\nsemiopenbaar\nsemioticus\nsemiotiek\nsemiotisch\nsemioverheid\nsemioverheidsbedrijf\nsemioverheidsinstantie\nsemioverheidsinstelling\nsemipermanent\nsemipermeabel\nsemipoliticus\nsemipolitiek\nsemiprof\nsemiprofessionalisme\nsemiprofessioneel\nsemipubliek\nsemiscenisch\nsemiwetenschappelijk\nsemtex\nsenang\nsenator\nseneblad\nseniel\nseniliteit\nsenior\nsenior partner\nseniorenbeleid\nseniorenconvent\nseniorenkaart\nseniorenlabel\nseniorenmarkt\nseniorenraad\nseniorenregeling\nseniorenwoning\nseniorie\nsenioriteit\nsennhut\nsensatie\nsensatiebelust\nsensatiebericht\nsensatieblad\nsensatiefilm\nsensatiekrant\nsensatielectuur\nsensatielust\nsensatiepers\nsensatieproces\nsensatieroman\nsensatieverhaal\nsensatiezoeker\nsensatiezucht\nsensationeel\nsensibel\nsensibilisatie\nsensibiliseren\nsensibilisering\nsensibiliseringscampagne\nsensibiliteit\nsensitief\nsensitivisme\nsensitiviteit\nsensitivitytraining\nsensomotorisch\nsensor\nsensorisch\nsensualisme\nsensualist\nsensualiteit\nsensueel\nsententie\nsententieus\nsentiment\nsentimentalisme\nsentimentalist\nsentimentaliteit\nsentimenteel\nseparaat\nseparatie\nseparatiemogelijkheid\nseparatisme\nseparatist\nseparatistisch\nseparator\nsepareercel\nsepareren\nsepia\nsepiatekening\nseponeren\nseponering\nsepot\nsepotbeleid\nsepsis\nseptember\nseptemberdag\nseptembermaand\nseptembernummer\nseptennaal\nseptet\nseptic tank\nseptiem\nseptiemakkoord\nseptime\nseptimo\nseptisch\nseptuagesima\nsequeel\nsequel\nsequens\nsequentie\nsequentieel\nsequoia\nseraf\nserafijn\nserafijns\nserafine\nserafineorgel\nserail\nsereen\nsereh\nserenade\nserenademuziek\nserendipiteit\nsereniteit\nserge\nsergeant\nsergeant-majoor\nsergeantsstrepen\nserialiteit\nserie\nseriebouw\nserieel\nseriefabricage\nseriematig\nseriemoordenaar\nserienummer\nserieproduct\nserieproductie\nserieschakeling\nserieus\nserieusheid\nserieverkrachter\nseriewedstrijd\nseriewerk\nsering\nseringenbloesem\nseringenboom\nsermoen\nseroen\nserologie\nserologisch\nseronegatief\nseropositief\nseropositiviteit\nserotonine\nserpent\nserpentig\nserpentijnsteen\nserpentine\nserranoham\nserre\nserreplant\nserum\nserumtherapie\nserval\nserve\nserveerboy\nserveerder\nserveerster\nserveerwagen\nserver\nserveren\nserversoftware\nservet\nservetring\nserveuse\nservice\nservice-instituut\nservice-volley\nserviceafdeling\nservicebedrijf\nservicebeurt\nservicebreak\nservicebureau\nservicecentrum\nservicecontract\nservicedienst\nserviceflat\nservicegame\nservicegarantie\nservicegericht\nservicegerichtheid\nservicegeweld\nservicekanon\nservicekosten\nservicelijn\nservicemonteur\nserviceniveau\nservicenummer\nserviceorganisatie\nservicepakket\nserviceprovider\nservicepunt\nservicestation\nservicevak\nserviceverlening\nserviel\nservies\nserviesgoed\nserviet\nserviliteit\nservituut\nservomechanisme\nservomotor\nsesam\nsesambrood\nsesamolie\nsesampasta\nsesamzaad\nsesamzaadje\nsessie\nsessiemuzikant\nsestertie\nset\nset-up\nsetpoint\nsetpunt\nsetstanden\nsettelen\nsetter\nsetting\nsettopbox\nsetverlies\nsetwinst\nseventies\nsexagesima\nsexappeal\nsextakkoord\nsextant\nsextet\nsexy\nsexyer\nseñor\nseñora\nseñorita\nsf-film\nsfagnum\nsfeer\nsfeerbeeld\nsfeerbeschrijving\nsfeergevoelig\nsfeerimpressie\nsfeerloos\nsfeermaker\nsfeermuziek\nsfeerrijk\nsfeerschepping\nsfeertekening\nsfeerverlichting\nsfeervol\nsferisch\nsferometer\nsferoïdaal\nsferoïde\nsfinx\nsfinxachtig\nsforzando\nsfumato\nshabby\nshag\nshagindustrie\nshagje\nshagroker\nshake-out\nshaken\nshaker\nshamponeren\nshampoo\nshampoos\nshampooën\nshantoeng\nshantykoor\nshareware\nsharia\nshawl\nsheddak\nsheet\nshell\nshellshock\nshelter\nsheriff\nsherpa\nsherry\nsherryfles\nshetlander\nshetlandpony\nshetlandpony's\nshiatsu\nshift\nshifttoets\nshiitake\nshilling\nshimmy\nshimmyen\nshintoïsme\nshintoïst\nshirt\nshirtreclame\nshirtsponsor\nshirtsponsoring\nshit\nshoarma\nshoarmabroodje\nshoarmasaus\nshoarmazaak\nshock\nshockbehandeling\nshockeffect\nshocken\nshocking\nshocktherapie\nshocktoestand\nshogi\nshogun\nshop\nshoppen\nshopper\nshopping\nshoppingcenter\nshoppingcentrum\nshoppingmall\nshort\nshortlist\nshortpositie\nshorts\nshorttrack\nshorttracken\nshorttracker\nshorttrackster\nshot\nshotgun\nshotten\nshovel\nshow\nshowband\nshowbink\nshowbizz\nshowbusiness\nshowcase\nshowdans\nshowelement\nshowen\nshowkorps\nshowman\nshowmaster\nshownieuws\nshoworkest\nshowproces\nshowprogramma\nshowroom\nshowroommodel\nshowtime\nshrapnel\nshredder\nshredderbedrijf\nshuffle\nshunt\nshuttle\nshuttlebus\nshuttletrein\nsiamang\nsiamees\nsibbe\nsibille\nsibillijns\nsic\nsicav\nsiccatief\nsickbuildingsyndroom\nsidderaal\nsidderen\nsiddering\nsidderrog\nsidecar\nsidekick\nsideraal\nsiderisch\nsidewinder\nsief\nsiepelen\nsiepoog\nsier\nsieraad\nsieraadontwerper\nsierasperge\nsierbestrating\nsierbloem\nsierduif\nsieren\nsiergewas\nsiergras\nsierheester\nsierkers\nsierkunst\nsierkunstenaar\nsierletter\nsierlijk\nsierlijkheid\nsierlijst\nsierplant\nsierschrift\nsiersel\nsierspeld\nsiersteen\nsierstrip\nsierstuk\nsiertabak\nsierteelt\nsiertuin\nsiervis\nsiervogel\nsiervuurwerk\nsierwaarde\nsifon\nsigaar\nsigaartje\nsigaarvormig\nsigarenaansteker\nsigarenas\nsigarenbandje\nsigarenbeker\nsigarenboer\nsigarendamp\nsigarendoos\nsigarenfabriek\nsigarenfabrikant\nsigarenhandel\nsigarenhandelaar\nsigarenindustrie\nsigarenkist\nsigarenknipper\nsigarenkoker\nsigarenmagazijn\nsigarenmaker\nsigarenpeuk\nsigarenpijpje\nsigarenpuntje\nsigarenrokende\nsigarenrook\nsigarenschaartje\nsigarenwinkel\nsigarenzaak\nsigaret\nsigaretten\nsigarettenaansteker\nsigarettenautomaat\nsigarettendoos\nsigarettenfabriek\nsigarettenfabrikant\nsigarettenindustrie\nsigarettenkoker\nsigarettenmarkt\nsigarettenmerk\nsigarettenpakje\nsigarettenpapier\nsigarettenpeuk\nsigarettenpijpje\nsigarettenroker\nsigarettenroller\nsigarettenrook\nsigarettensmokkel\nsigarettentabak\nsigarettenverkoop\nsightseeing\nsigma\nsignaal\nsignaalfunctie\nsignaalhoorn\nsignaalkleur\nsignaaloverdracht\nsignaalsterkte\nsignaalstof\nsignaalverwerking\nsignaalvlag\nsignaalwaarde\nsignaalwerking\nsignalement\nsignaleren\nsignalering\nsignaleringssysteem\nsignalisatie\nsignatuur\nsigneersessie\nsigneren\nsignet\nsignifica\nsignificant\nsignificantie\nsignificatie\nsignifisch\nsignum\nsijpelen\nsijs\nsijsje\nsik\nsikahert\nsikh\nsikhtempel\nsikkel\nsikkelcelanemie\nsikkelvormig\nsikkeneurig\nsikkepit\nsikkepitje\nsikker\nsileen\nsilene\nsilex\nsilhouet\nsilica\nsilicaat\nsilicium\nsilicone\nsiliconenborsten\nsiliconenkit\nsilicose\nsilo\nsilurisch\nsiluur\nsim\nsimilor\nsimkaart\nsimlock\nsimlockvrij\nsimmen\nsimmetje\nsimonie\nsimpel\nsimpeler\nsimpelheid\nsimpellijk\nsimpeltjes\nsimpelweg\nsimpen\nsimplex\nsimpliciteit\nsimplificatie\nsimplificeren\nsimplificering\nsimplisme\nsimplistisch\nsimsalabim\nsimsonsverzuchting\nsimulant\nsimulante\nsimulatie\nsimulatiemodel\nsimulatieprogramma\nsimulatiespel\nsimulatiespelen\nsimulator\nsimuleren\nsimultaan\nsimultaangever\nsimultaanpartij\nsimultaanschaken\nsimultaanspeler\nsimultaanvertaling\nsimultaneïteit\nsinaasappel\nsinaasappelboom\nsinaasappelkist\nsinaasappellikeur\nsinaasappellimonade\nsinaasappelplantage\nsinaasappelsap\nsinaasappelschil\nsinaasappelsmaak\nsinas\nsinds\nsinds mensenheugenis\nsindsdien\nsinecure\nsinecuur\nsingel\nsingelband\nsingelen\nsinger-songwriter\nsingle\nsinglet\nsingularis\nsingulariteit\nsingulier\nsinister\nsinjeur\nsinjo\nsinjoor\nsinjoren\nsinjorenstad\nsinksenbloem\nsinksendag\nsinologie\nsinologisch\nsinoloog\nsinopel\nsint\nsint-bernard\nsint-bernardshond\nsint-elmsvuur\nsint-jakobsschelp\nsint-janskruid\nsint-jansvlinder\nsint-juttemis\nsint-veitsdans\nsint-vitusdans\nsintel\nsintelbaan\nsintelpad\nsinter\nsinteren\nsinterklaas\nsinterklaasavond\nsinterklaasdag\nsinterklaasfeest\nsinterklaasgedicht\nsinterklaasgeschenk\nsinterklaasgoed\nsinterklaasliedje\nsinterklaaspop\nsinterklaasvers\nsinterklaasviering\nsinterklazen\nsinus\nsinusfunctie\nsinusgolf\nsinusitis\nsinusoïde\nsip\nsirene\nsirenegeloei\nsirenenlied\nsirenenzang\nsirih\nsirihblad\nsirihdoos\nsirihpruim\nsirocco\nsiroop\nsirtaki\nsisal\nsisalhennep\nsisklank\nsissen\nsisser\nsiste\nsister\nsistrum\nsisyfusarbeid\nsit-in\nsitar\nsitarspeler\nsitcom\nsitdownstaking\nsite\nsits\nsitsen\nsitsenwinkel\nsitspapier\nsitu\nsituatie\nsituatief\nsituatiekaart\nsituatieplan\nsituatieschets\nsituatietekening\nsituationeel\nsitueren\nsituering\nsixpack\nsixtijns\nsiërra\nsiësta\nsjaal\nsjabbat\nsjabbes\nsjablone\nsjabloneren\nsjabloon\nsjabloonachtig\nsjabloonbestand\nsjabrak\nsjachel\nsjachelaar\nsjachelen\nsjacheraar\nsjacheraarster\nsjacheren\nsjah\nsjahs\nsjakes\nsjako\nsjalot\nsjamaan\nsjamanisme\nsjamanistisch\nsjamberloek\nsjammes\nsjanker\nsjans\nsjansen\nsjap\nsjappen\nsjappie\nsjappietouwer\nsjasliek\nsjees\nsjeik\nsjeikdom\nsjekel\nsjekkie\nsjerp\nsjeu\nsjezen\nsjia\nsjibbolet\nsjiiet\nsjiieten\nsjiitisch\nsjikse\nsjilpen\nsjirpen\nsjoege\nsjoel\nsjoelbak\nsjoelbakken\nsjoelen\nsjoelschijf\nsjoemelaar\nsjoemelen\nsjofar\nsjofel\nsjofelheid\nsjofeltjes\nsjokken\nsjokkerig\nsjonge\nsjor\nsjorren\nsjorring\nsjortouw\nsjotten\nsjouw\nsjouwen\nsjouwer\nsjouwerij\nsjouwerlieden\nsjouwerman\nsjouwwerk\nsjtetl\nsjwa\nska\nskaat\nskai\nskald\nskate-off\nskatebaan\nskateboard\nskateboardclub\nskateboarden\nskateboarder\nskateboarders\nskateboarding\nskaten\nskateparcours\nskatepark\nskater\nskating\nskeeler\nskeeleraar\nskeelerclub\nskeeleren\nskeelerwedstrijd\nskeet\nskelet\nskeletbouw\nskeletspier\nskeletspieren\nskeletteren\nskelter\nskelterbaan\nskelteren\nsketch\nski\nski-jack\nskibaan\nskibus\nskidorp\nskiester\nskiet\nskifederatie\nskiff\nskiffeur\nskiffeuse\nskiffhead\nskigebied\nskihelling\nskihut\nskikampioen\nskileraar\nskiles\nskilift\nskiloopster\nskilopen\nskiloper\nskimateriaal\nskimmen\nskimmia\nskin\nskinhead\nskiongeluk\nskioord\nskipak\nskipas\nskipiste\nskipper\nskippybal\nskischans\nskischoen\nskiseizoen\nskisport\nskispringen\nskispringer\nskistation\nskistok\nskitrein\nskiuitrusting\nskivakantie\nskiwedstrijd\nskiën\nskiër\nskunk\nskybox\nskylab\nskyline\nskûtsje\nskûtsjesilen\nsla\nslaaf\nslaafs\nslaafsheid\nslaagkans\nslaagpercentage\nslaags\nslaak\nslaan\nslaap\nslaapapneu\nslaapbank\nslaapbeen\nslaapbol\nslaapbus\nslaapcabine\nslaapcentrum\nslaapcomfort\nslaapcoupé\nslaapcoupés\nslaapdienst\nslaapdrank\nslaapdronken\nslaapgebrek\nslaapgedeelte\nslaapgelegenheid\nslaapgemeente\nslaapgewoonte\nslaaphouding\nslaaphuis\nslaapje\nslaapkamer\nslaapkameraad\nslaapkamerameublement\nslaapkamerdeur\nslaapkamerraam\nslaapkleed\nslaapkop\nslaapkuur\nslaapliedje\nslaapmat\nslaapmiddel\nslaapmuts\nslaapmutsje\nslaapogen\nslaappatroon\nslaappil\nslaapplaats\nslaapplek\nslaappoeder\nslaappoeier\nslaapprobleem\nslaapruimte\nslaapstad\nslaapstand\nslaapstede\nslaapstee\nslaapster\nslaapstoornis\nslaaptablet\nslaaptekort\nslaaptrein\nslaapvertrek\nslaapverwekkend\nslaapwagen\nslaapwandelaar\nslaapwandelen\nslaapwandeling\nslaapwekkend\nslaapzaal\nslaapzak\nslaapziekte\nslaapzucht\nslaatje\nslab\nslabakken\nslabakker\nslabbe\nslabben\nslabberen\nslabbetje\nslabed\nslablad\nslaboon\nslacht\nslachtafval\nslachtbank\nslachtbeest\nslachtbijl\nslachtblok\nslachtcapaciteit\nslachtdier\nslachten\nslachter\nslachterij\nslachtfeest\nslachtgeld\nslachtgewicht\nslachthamer\nslachthuis\nslachting\nslachtkuiken\nslachtlijn\nslachtloon\nslachtmaand\nslachtmasker\nslachtmes\nslachtoffer\nslachtofferen\nslachtofferenquête\nslachtofferhulp\nslachtofferrol\nslachtofferschap\nslachtofferzorg\nslachtpartij\nslachtplaats\nslachtprijs\nslachtrijp\nslachttijd\nslachtvee\nslachtveld\nslachtverbod\nslacks\nslacouvert\nsladood\nslafelijk\nslag\nslagader\nslagaderbreuk\nslagaderlijk\nslagbal\nslagbalk\nslagbeitel\nslagbeurt\nslagboom\nslagboormachine\nslagcirkel\nslagdeur\nslagdrempel\nslagen\nslagenarsenaal\nslagenwisseling\nslager\nslagerij\nslagersbank\nslagersbedrijf\nslagersbijl\nslagersblok\nslagershond\nslagersjongen\nslagersknecht\nslagersmes\nslagersrekening\nslagersvrouw\nslagerszoon\nslaggitaar\nslaghamer\nslaghoedje\nslaghout\nslagingskans\nslagingspercentage\nslaginstrument\nslagkracht\nslagkrachtig\nslagkruiser\nslagkwik\nslaglijn\nslaglinie\nslagman\nslagmolen\nslagnet\nslagorde\nslagpartij\nslagpen\nslagperk\nslagpin\nslagregen\nslagregenen\nslagrijm\nslagroeier\nslagroom\nslagroomgebak\nslagroompunt\nslagroomsoes\nslagroomsoesje\nslagroomtaart\nslagsas\nslagschaduw\nslagschip\nslagtand\nslagtechniek\nslaguurwerk\nslagvaardig\nslagvaardigheid\nslagvast\nslagveer\nslagveld\nslagvolume\nslagwapen\nslagwerk\nslagwerker\nslagwerkgroep\nslagwerkster\nslagzee\nslagzij\nslagzijde\nslagzin\nslagzwaard\nslak\nslaken\nslakhoorn\nslaking\nslakken\nslakkenbestrijdingsmiddel\nslakkengang\nslakkenhuis\nslakkenlijn\nslakkenmeel\nslakkensteker\nslakkenwol\nslakom\nslakrop\nslalepel\nslalom\nslalommen\nslamand\nslamix\nslampampen\nslampamper\nslampamperij\nslang\nslangachtig\nslangbrandspuit\nslangen\nslangenarend\nslangenbeet\nslangenbezweerder\nslangenbroed\nslangenbroedsel\nslangenei\nslangengebroed\nslangengif\nslangengift\nslangenhuid\nslangenkop\nslangenkruid\nslangenkuil\nslangenleer\nslangenlijn\nslangenmens\nslangentong\nslangenvel\nslangenwagen\nslangenwortel\nslangetje\nslangvormig\nslank\nslanken\nslankheid\nslankheidsideaal\nslaolie\nslap\nslapeloos\nslapeloosheid\nslapen\nslapengaan\nslaper\nslaperdijk\nslaperig\nslaperigheid\nslapers\nslaphartig\nslapheid\nslapie\nslapjanus\nslapjes\nslaplant\nslappeling\nslappen\nslappigheid\nslapping\nslapstick\nslapstickachtig\nslapstickfilm\nslapte\nslasaus\nslaschotel\nslash\nslat\nslatten\nslatting\nslaven\nslavenarbeid\nslavenbestaan\nslavendienst\nslavendrijver\nslavenfamilie\nslavenhaler\nslavenhandel\nslavenhandelaar\nslavenhouder\nslavenjacht\nslavenjuk\nslavenketen\nslavenleven\nslavenmarkt\nslavenopstand\nslavenschip\nslaventijd\nslavenverzet\nslavenwerk\nslavenziel\nslavernij\nslavernijmonument\nslavernijverleden\nslavin\nslavist\nslavistiek\nslavork\nslecht\nslecht verlicht\nslechtaard\nslechten\nslechterik\nslechteriken\nslechtgehumeurd\nslechtgeluimd\nslechtgemanierd\nslechtgemutst\nslechtheid\nslechthorend\nslechthorende\nslechthorendheid\nslechtigheid\nslechting\nslechtje\nslechtkwast\nslechtlopend\nslechtnieuwsgesprek\nslechts\nslechtvalk\nslechtweg\nslechtziend\nslechtziende\nslechtziendheid\nslede\nsledehond\nsleden\nsledetocht\nslee\nsleedoorn\nsleedoren\nsleehak\nsleep\nsleep-in\nsleepantenne\nsleepasperge\nsleepauto\nsleepbedrijf\nsleepboot\nsleepbootkapitein\nsleepcontact\nsleepdienst\nsleephaak\nsleephelling\nsleephopperzuiger\nsleepjapon\nsleepkaan\nsleepkabel\nsleeplift\nsleeploon\nsleepmodus\nsleepnet\nsleepruim\nsleepschip\nsleeptoon\nsleeptouw\nsleeptros\nsleepvaart\nsleepvisserij\nsleepvoeten\nsleepwagen\nsleepzak\nsleet\nsleetje\nsleetocht\nsleets\nsleetsheid\nsleeuw\nsleeuwheid\nsleevaart\nsleeën\nsleg\nslegge\nslem\nslemp\nslempen\nslemper\nslemperij\nslemphout\nslemppartij\nslendang\nslenk\nslenter\nslenteraar\nslenteren\nslentergang\nslenterig\nslepen\nsleper\nslepersbedrijf\nslepersknecht\nsleperswagen\nslet\nsleten\nsletig\nsleuf\nsleufantenne\nsleur\nsleuren\nsleurmens\nsleurwerk\nsleutel\nsleutel-op-de-deur\nsleutelaar\nsleutelbedrijf\nsleutelbeen\nsleutelbeenbreuk\nsleutelbegrip\nsleutelbloem\nsleutelbord\nsleutelbos\nsleutelclub\nsleuteldrager\nsleutelduel\nsleutelelement\nsleutelen\nsleutelfactor\nsleutelfiguur\nsleutelfunctie\nsleutelgat\nsleutelgeld\nsleutelhanger\nsleuteljaar\nsleutelkind\nsleutelmacht\nsleutelmoment\nsleutelpassage\nsleutelpersoon\nsleutelplaatje\nsleutelpositie\nsleutelpost\nsleutelproject\nsleutelring\nsleutelrol\nsleutelroman\nsleutelstuk\nsleutelvaluta\nsleutelvraag\nsleutelwoord\nsleutelzin\nsleutelzinnen\nsleuven\nslib\nslibben\nslibberen\nslibberig\nslibdepot\nslibstort\nslice\nslichten\nslidderen\nslidegitaar\nslideguitar\nsliding\nsliep\nsliepuit\nslier\nslierasperge\nslierbaan\nslieren\nsliert\nslierten\nsliet\nslijk\nslijkbord\nslijkerig\nslijkgras\nslijkig\nslijkmossel\nslijkvulkaan\nslijm\nslijmachtig\nslijmafdrijvend\nslijmafscheiding\nslijmbal\nslijmdiertje\nslijmen\nslijmer\nslijmerd\nslijmerig\nslijmerigheid\nslijmhoest\nslijmig\nslijmjurk\nslijmklier\nslijmlaag\nslijmoplossend\nslijmprik\nslijmprop\nslijmvis\nslijmvlies\nslijmvliesirritatie\nslijp\nslijpbord\nslijpen\nslijper\nslijperij\nslijping\nslijpmachine\nslijpmiddel\nslijpmolen\nslijpplank\nslijppoeder\nslijppoeier\nslijpschijf\nslijpsel\nslijpstaal\nslijpsteen\nslijptol\nslijpzand\nslijtachtig\nslijtage\nslijtageplek\nslijtageplekken\nslijtageproces\nslijtageslag\nslijtageverschijnsel\nslijten\nslijter\nslijterij\nslijtersziekte\nslijting\nslijtlaag\nslijtplek\nslijtster\nslijtvast\nslijtvastheid\nslijtvergunning\nslik\nslikbeweging\nslikgrond\nslikken\nslikker\nslikkerig\nsliklap\nslikloods\nsliknat\nslikprobleem\nslim\nslimheid\nslimme\nslimmeling\nslimmerd\nslimmerik\nslimmigheid\nslinger\nslingeraap\nslingeraar\nslingeras\nslingerbeweging\nslingerdans\nslingeren\nslingerhoning\nslingering\nslingerklok\nslingerlaan\nslingerlat\nslingermachine\nslingerpad\nslingerplant\nslingerproef\nslingerslag\nslingersteen\nslingertijd\nslingeruurwerk\nslingerweg\nslingerwijdte\nslinken\nslinking\nslinks\nslinksheid\nslip\nslip-over\nslipafstand\nslipcursus\nslipgevaar\nslipjacht\nslipjas\nslippartij\nslippen\nslippendrager\nslipper\nslippertje\nslipsteek\nslipstream\nsliptong\nslipvrij\nslissen\nslivovitsj\nslobbe\nslobber\nslobberen\nslobberig\nslobbering\nslobbertrui\nslobbroek\nslobeend\nslobkous\nslodderbroek\nslodderen\nslodderig\nsloddervos\nsloeber\nsloef\nsloeg\nsloep\nsloepen\nsloependek\nsloepgast\nsloeproeier\nsloerie\nslof\nsloffen\nsloffer\nsloffig\nslofhak\nslofheid\nslogan\nslok\nslokdarm\nslokken\nslokker\nslokkerd\nslokop\nslome\nslomp\nslonk\nslons\nslonsachtig\nslonzen\nslonzig\nslonzigheid\nsloof\nslooien\nsloom\nsloomheid\nsloop\nsloopafval\nsloopauto\nsloopbedrijf\nsloophamer\nsloophout\nsloopkogel\nsloopkosten\nsloopmateriaal\nslooponderdeel\nslooppand\nslooppremie\nsloopregeling\nsloopvergunning\nsloopwerk\nsloopwerkzaamheden\nsloor\nsloorzaad\nsloot\nslootjespringen\nslootkant\nslootriet\nslootwater\nslootwerk\nslop\nslopen\nsloper\nsloperij\nslopersbal\nslopersbedrijf\nslopershamer\nslopershand\nsloping\nsloppenwijk\nslordig\nslordige\nslordigheid\nslorp\nslorpen\nslot\nslotact\nslotaflevering\nslotafstand\nslotakkoord\nslotakte\nslotalinea\nslotapplaus\nslotartikel\nslotavond\nslotbalans\nslotbeeld\nslotbepaling\nslotbeschouwing\nslotbetoog\nslotbewaarder\nslotbewoner\nslotbijeenkomst\nslotceremonie\nslotcommuniqué\nslotconcert\nslotconclusie\nslotcoördinator\nslotdag\nslotdebat\nslotdeel\nslotdienst\nslotdividend\nslotdocument\nsloten\nslotenmaker\nslotetappe\nslotfase\nslotfeest\nslotfilm\nslotformule\nslotgebed\nslotgracht\nslotheer\nslothoofdstuk\nslotkilometer\nslotklank\nslotklim\nslotklooster\nslotkoers\nslotkwartier\nslotletter\nslotlied\nslotmanifestatie\nslotminuut\nslotnoot\nslotnotering\nslotoffensief\nslotopmerking\nslotpartij\nslotpassage\nslotpleidooi\nslotpoort\nslotrecord\nslotrede\nslotregel\nslotresolutie\nslotrit\nslotronde\nslotscène\nslotseconde\nslotserie\nslotsom\nslotstand\nslotstuk\nslotte\nslottekst\nslottoernooi\nslottoespraak\nslotvast\nslotverhaal\nslotverklaring\nslotvers\nslotvoogd\nslotvraag\nslotweek\nslotweekeinde\nslotweekend\nslotwoord\nslotzang\nslotzin\nslotzitting\nslotzuster\nslotzwemmer\nsloven\nslow motion\nslowfox\nslufter\nsluier\nsluierbewolking\nsluierdoek\nsluiereffect\nsluieren\nsluiering\nsluierstaart\nsluif\nsluik\nsluikblad\nsluiken\nsluikerij\nsluikgoed\nsluikhandel\nsluikhandelaar\nsluikharig\nsluikpers\nsluikreclame\nsluiks\nsluikstokerij\nsluikstort\nsluikstorten\nsluikstorter\nsluikweg\nsluikwerk\nsluimer\nsluimeren\nsluimering\nsluimerrol\nsluimertoestand\nsluipen\nsluipend\nsluipenderwijs\nsluiper\nsluipers\nsluipgang\nsluiphoek\nsluipmoord\nsluipmoordenaar\nsluiproute\nsluipschutter\nsluipschuttervuur\nsluipverkeer\nsluipweg\nsluipwesp\nsluis\nsluisdeur\nsluisgeld\nsluiskolk\nsluismeester\nsluiswachter\nsluiswerken\nsluit\nsluitappel\nsluitbalk\nsluitband\nsluitboom\nsluiten\nsluiter\nsluitergordijn\nsluitertijd\nsluitgat\nsluiting\nsluitingsbevel\nsluitingsceremonie\nsluitingsdag\nsluitingsdatum\nsluitingsplan\nsluitingstermijn\nsluitingstijd\nsluitingsuur\nsluitjas\nsluitkool\nsluitmand\nsluitplaat\nsluitpost\nsluitrede\nsluitspeld\nsluitspier\nsluitsteen\nsluitstuk\nsluitveer\nsluitwerk\nsluitzegel\nsluizen\nsluizencomplex\nslum\nslump\nslungel\nslungelachtig\nslungelen\nslungelig\nslurf\nslurfdier\nslurp\nslurpen\nsluw\nsluwe\nsluwheid\nslöjd\nsm\nsmaad\nsmaadproces\nsmaadrede\nsmaadschrift\nsmaadwoord\nsmaak\nsmaakbederf\nsmaakcel\nsmaakgevoel\nsmaakje\nsmaakloos\nsmaakmakend\nsmaakmaker\nsmaakorgaan\nsmaakpalet\nsmaakpapil\nsmaakprofiel\nsmaaksensatie\nsmaakstof\nsmaakverschil\nsmaakversterker\nsmaakvervlakking\nsmaakvol\nsmaakzenuw\nsmaakzin\nsmacht\nsmachten\nsmachtend\nsmack\nsmadelijk\nsmaden\nsmak\nsmakelijk\nsmakelijkheid\nsmakeloos\nsmakeloosheid\nsmaken\nsmakken\nsmakkerd\nsmal\nsmalbladig\nsmaldeel\nsmaldelen\nsmaldoek\nsmalen\nsmaler\nsmalfilm\nsmalheid\nsmall\nsmalletjes\nsmalltalk\nsmalspoor\nsmalt\nsmalte\nsmaragd\nsmaragden\nsmaragdgroen\nsmart\nsmartcard\nsmartdrug\nsmartelijk\nsmarteloos\nsmarteloosheid\nsmarten\nsmartengeld\nsmartenkind\nsmarting\nsmartkreet\nsmartlap\nsmartshop\nsmash\nsmashen\nsmeden\nsmeder\nsmederij\nsmedig\nsmeedbaar\nsmeedbaarheid\nsmeedijzer\nsmeedijzeren\nsmeedkunst\nsmeedstaal\nsmeedtang\nsmeedwerk\nsmeekbede\nsmeekbrief\nsmeekdicht\nsmeekgebed\nsmeekolen\nsmeekschrift\nsmeer\nsmeerbaar\nsmeerboel\nsmeerbuik\nsmeerder\nsmeergeld\nsmeergeldaffaire\nsmeergeldschandaal\nsmeerkaars\nsmeerkaas\nsmeerkanis\nsmeerkees\nsmeerklier\nsmeerkwast\nsmeerlap\nsmeerlapperij\nsmeermiddel\nsmeerolie\nsmeerolietank\nsmeerpijp\nsmeerpoes\nsmeerpoets\nsmeerpot\nsmeerprop\nsmeersel\nsmeerseltje\nsmeertroep\nsmeervet\nsmeerwortel\nsmeerzalf\nsmeet\nsmegma\nsmekeling\nsmekelinge\nsmeken\nsmekerig\nsmeking\nsmelleken\nsmelt\nsmeltbaar\nsmeltbaarheid\nsmeltbak\nsmelten\nsmelter\nsmelterig\nsmelterij\nsmelting\nsmeltkaas\nsmeltkroes\nsmeltkroesmuziek\nsmeltoven\nsmeltpan\nsmeltproces\nsmeltpunt\nsmeltstop\nsmelttemperatuur\nsmeltveiligheid\nsmeltwarmte\nsmeltwater\nsmeren\nsmergel\nsmerig\nsmerigheid\nsmering\nsmeris\nsmet\nsmeten\nsmetlijn\nsmetstof\nsmetteloos\nsmetteloosheid\nsmetten\nsmetvrees\nsmetvrij\nsmeu\nsmeue\nsmeulen\nsmeuïg\nsmeuïgheid\nsmid\nsmidsbaas\nsmidse\nsmidshamer\nsmidsknecht\nsmidskolen\nsmidsvuur\nsmidswerk\nsmiecht\nsmient\nsmiezen\nsmijdig\nsmijdigheid\nsmijten\nsmijter\nsmikkel\nsmikkelen\nsmiley\nsmis\nsmisse\nsmodderen\nsmoddervis\nsmoel\nsmoeltje\nsmoelwerk\nsmoes\nsmoezelen\nsmoezelig\nsmoezeligheid\nsmoezen\nsmoezig\nsmog\nsmogalarm\nsmogvorming\nsmoken\nsmoking\nsmokkel\nsmokkelaar\nsmokkelaarster\nsmokkelarij\nsmokkelen\nsmokkelgoed\nsmokkelhandel\nsmokkelroute\nsmokkelschip\nsmokkelwaar\nsmokkelzaak\nsmokken\nsmokwerk\nsmolt\nsmook\nsmoor\nsmoordronken\nsmoorheet\nsmoorklep\nsmoorkuil\nsmoorlijk\nsmoorpot\nsmoorspoel\nsmoorverliefd\nsmoren\nsmos\nsmotsen\nsmotsig\nsmous\nsmousen\nsmoushond\nsmout\nsmoutachtig\nsmoutbol\nsmoutebol\nsmouten\nsmouterig\nsmoutig\nsmoutwerk\nsmoutzetter\nsmouzen\nsms\nsms'en\nsms'je\nsms'jes\nsms-bericht\nsms-dienst\nsms-verkeer\nsmuiger\nsmuk\nsmukken\nsmul\nsmulgraag\nsmullen\nsmuller\nsmullerij\nsmulpaap\nsmulpapen\nsmulpartij\nsmurf\nsmurrie\nsmyrnatapijt\nsmörrebröd\nsnaai\nsnaaien\nsnaak\nsnaaks\nsnaaksheid\nsnaar\nsnaarinstrument\nsnack\nsnackbar\nsnackbarhouder\nsnackcar\nsnak\nsnaken\nsnakerig\nsnakerij\nsnakken\nsnap\nsnapachtig\nsnaphaan\nsnappen\nsnapper\nsnapshot\nsnapster\nsnaredrum\nsnaren\nsnarenmaker\nsnarenspel\nsnarentheorie\nsnars\nsnater\nsnaterbek\nsnateren\nsnauw\nsnauwen\nsnauwerig\nsnavel\nsneaker\nsneakpreview\nsneb\nsnebbe\nsnebberen\nsnede\nsneden\nsnedig\nsnedigheid\nsnee\nsneed\nsneep\nsneer\nsnees\nsneetje\nsneeuw\nsneeuwachtig\nsneeuwbal\nsneeuwbaleffect\nsneeuwballen\nsneeuwbank\nsneeuwberg\nsneeuwbes\nsneeuwblind\nsneeuwblindheid\nsneeuwbril\nsneeuwbui\nsneeuwdek\nsneeuwen\nsneeuwgans\nsneeuwgebergte\nsneeuwgrens\nsneeuwhaas\nsneeuwhoen\nsneeuwhut\nsneeuwjacht\nsneeuwketting\nsneeuwklas\nsneeuwklokje\nsneeuwkristal\nsneeuwlaag\nsneeuwlandschap\nsneeuwlawine\nsneeuwlucht\nsneeuwmachine\nsneeuwman\nsneeuwmassa\nsneeuwploeg\nsneeuwpop\nsneeuwpret\nsneeuwruimen\nsneeuwruimer\nsneeuwschoen\nsneeuwschuiver\nsneeuwscooter\nsneeuwstorm\nsneeuwtapijt\nsneeuwtop\nsneeuwuil\nsneeuwvakantie\nsneeuwval\nsneeuwveld\nsneeuwvlaag\nsneeuwvlok\nsneeuwvogel\nsneeuwvrij\nsneeuwwater\nsneeuwwit\nsneeuwwitje\nsneeuwwolk\nsneeuwzeker\nsneeën\nsnek\nsnel\nsnelbinder\nsnelblusser\nsnelbuffet\nsnelbus\nsnelbusnet\nsnelcursus\nsneldicht\nsneldichter\nsneldienst\nsneldrogend\nsneldroger\nsnelfilter\nsnelfoon\nsnelgroeiend\nsnelhechter\nsnelheid\nsnelheidsbegrenzer\nsnelheidsbegrenzing\nsnelheidsbeperkend\nsnelheidsbeperking\nsnelheidscontrole\nsnelheidsduivel\nsnelheidslijn\nsnelheidslimiet\nsnelheidsmaniak\nsnelheidsmeter\nsnelheidsmeting\nsnelheidsmonster\nsnelheidsovertreder\nsnelheidsovertreding\nsnelheidsrecord\nsnelheidsregelaar\nsnelheidsregeling\nsnelheidsremmer\nsnelheidsverhoging\nsnelheidsvermindering\nsnelheidsverschil\nsnelheidsverschillen\nsnelheidswedstrijd\nsnelheidswinst\nsnelkassa\nsnelkoker\nsnelkookpan\nsnelkookrijst\nsnelkoppeling\nsnelkraak\nsnellekweekreactor\nsnellen\nsnellereactiemacht\nsnellezen\nsnellopend\nsnelmenu\nsnelpers\nsnelrecht\nsnelrechtprocedure\nsnelschaken\nsnelschrift\nsnelschrijven\nsnelschrijver\nsnelsnel\nsnelstromend\nsneltekenaar\nsneltempo\nsneltoets\nsneltoetscombinatie\nsneltoetsen\nsneltram\nsneltramlijn\nsneltramverbinding\nsneltrein\nsneltreinvaart\nsneltreinverbinding\nsnelverband\nsnelverkeer\nsnelvoetig\nsnelvuur\nsnelvuurkanon\nsnelvuurwapen\nsnelwandelaar\nsnelwandelen\nsnelweg\nsnelwegennet\nsnelweger\nsnelwerkend\nsnelzeiler\nsnep\nsnepen\nsnepper\nsneren\nsnerken\nsnerpen\nsnert\nsnertkerel\nsnertketel\nsnertvent\nsneu\nsneue\nsneukelaar\nsneukelen\nsneuvelbereidheid\nsneuvelen\nsneuveltekst\nsneven\nsnezen\nsnibbe\nsnibben\nsnibbig\nsnibbigheid\nsnieren\nsnijbal\nsnijbank\nsnijbiet\nsnijbloem\nsnijbonenmolen\nsnijboon\nsnijbord\nsnijbrander\nsnijcirkel\nsnijdbaar\nsnijden\nsnijdend\nsnijder\nsnijdersambacht\nsnijdiamant\nsnijding\nsnijdsel\nsnijijzer\nsnijkamer\nsnijkant\nsnijklaar\nsnijkoek\nsnijkopzuiger\nsnijlijn\nsnijmachine\nsnijmais\nsnijmaïs\nsnijmes\nsnijpers\nsnijplank\nsnijpunt\nsnijtafel\nsnijtand\nsnijvlak\nsnijwerk\nsnijwond\nsnijworst\nsnijzaal\nsnik\nsnikheet\nsnikkel\nsnikken\nsnip\nsnippel\nsnippen\nsnippenjacht\nsnipper\nsnipperdag\nsnipperen\nsnipperkoek\nsnippermand\nsnipperuur\nsnipperwerk\nsnipverkouden\nsnit\nsnob\nsnobisme\nsnobistisch\nsnode\nsnoei\nsnoeiafval\nsnoeibeurt\nsnoeien\nsnoeier\nsnoeihard\nsnoeiheet\nsnoeihout\nsnoeiing\nsnoeikunst\nsnoeimes\nsnoeischaar\nsnoeisel\nsnoeitang\nsnoeiwerk\nsnoek\nsnoekachtig\nsnoekbaars\nsnoekduik\nsnoeken\nsnoekenbek\nsnoekenkop\nsnoekhengel\nsnoekkop\nsnoekshoofd\nsnoeksprong\nsnoep\nsnoepachtig\nsnoepautomaat\nsnoepcent\nsnoepen\nsnoeper\nsnoeperig\nsnoeperij\nsnoepertje\nsnoepgoed\nsnoepig\nsnoepje\nsnoepkraam\nsnoeplust\nsnoepreis\nsnoepreisje\nsnoepster\nsnoepwinkel\nsnoepziek\nsnoepzucht\nsnoer\nsnoeren\nsnoerloos\nsnoerschakelaar\nsnoes\nsnoeshaan\nsnoet\nsnoeven\nsnoever\nsnoeverig\nsnoeverij\nsnoezelen\nsnoezepoes\nsnoezig\nsnok\nsnokken\nsnol\nsnollen\nsnood\nsnoodaard\nsnoodheid\nsnoof\nsnooker\nsnookercentrum\nsnookeren\nsnookerspeler\nsnookertafel\nsnookertoernooi\nsnookerzaal\nsnoot\nsnor\nsnorbaard\nsnorder\nsnordragend\nsnorfiets\nsnorfietser\nsnorhaar\nsnorkel\nsnorkelen\nsnorken\nsnorker\nsnorkerig\nsnorren\nsnorrenbaard\nsnorrenkop\nsnorrepijperij\nsnot\nsnotaap\nsnoten\nsnotjongen\nsnotneus\nsnotolf\nsnottebel\nsnotter\nsnotteren\nsnotterig\nsnottig\nsnotvalling\nsnotverkouden\nsnotziekte\nsnoven\nsnowboard\nsnowboarden\nsnowboarder\nsnuf\nsnuffelaar\nsnuffelen\nsnuffelmarkt\nsnuffelmarkten\nsnuffelpaal\nsnuffelstage\nsnuffelziekte\nsnuffen\nsnufferd\nsnuffmovie\nsnufje\nsnugger\nsnuggere\nsnuggerheid\nsnuif\nsnuifdoos\nsnuifje\nsnuifneus\nsnuifrasp\nsnuiftabak\nsnuisteren\nsnuistergeld\nsnuisterij\nsnuit\nsnuiten\nsnuiter\nsnuitkever\nsnuitkevers\nsnuitsel\nsnuitvormig\nsnuiven\nsnuiver\nsnul\nsnurk\nsnurken\nsnurker\nsoa\nsoap\nsoapopera\nsoapserie\nsoapster\nsober\nsoberheid\nsobertjes\nsociaal\nsociaal geneeskundige\nsociaal geograaf\nsociaal psycholoog\nsociaal verpleegkundige\nsociaal-cultureel\nsociaal-emotioneel\nsociaal-maatschappelijk\nsociaaldemocraat\nsociaaldemocrate\nsociaaldemocratie\nsociaaldemocratisch\nsociaaldemocratischer\nsociaaleconomisch\nsociaalgeografisch\nsociaalkritisch\nsociaalliberaal\nsociaalliberalisme\nsociaalpedagogisch\nsociaalpsychiatrisch\nsociaalpsychologisch\nsociaalrealisme\nsociaalwetenschappelijk\nsociabel\nsociabiliteit\nsocialezekerheidsbeleid\nsocialezekerheidsregeling\nsocialezekerheidsstelsel\nsocialezekerheidswet\nsocialisatie\nsocialisatieproces\nsocialiseren\nsocialisering\nsocialisme\nsocialist\nsocialiste\nsocialistenleider\nsocialistisch\nsocialistisch realisme\nsocialistisch-realistisch\nsocialiteit\nsociety\nsocietynieuws\nsociniaan\nsocio-economisch\nsociobiologie\nsociobioloog\nsociocratie\nsociocratisch\nsociocultureel\nsocioculturele\nsociodrama\nsociograaf\nsociografie\nsociografisch\nsociogram\nsociolect\nsociolinguïstiek\nsociologe\nsociologie\nsociologisch\nsociologisme\nsocioloog\nsociometrie\nsociometrisch\nsociopaat\nsociopolitieke\nsociotherapie\nsociëteit\nsociëteitsleven\nsocratisch\nsoda\nsodawater\nsodeju\nsodemieter\nsodemieteren\nsodomie\nsodomieter\nsodomieterij\nsodomieters\nsodomsappel\nsoebatten\nsoefi\nsoefibeweging\nsoefisme\nsoek\nsoelaas\nsoenna\nsoenniet\nsoennieten\nsoennitisch\nsoep\nsoepballetje\nsoepbeen\nsoepblokje\nsoepbord\nsoepel\nsoepelheid\nsoeperig\nsoepgroente\nsoepjurk\nsoepketel\nsoepkip\nsoepkokerij\nsoepkom\nsoepkop\nsoeplepel\nsoeppan\nsoepschildpad\nsoepstengel\nsoeptablet\nsoepterrine\nsoepuitdeling\nsoepvlees\nsoepzootje\nsoera\nsoes\nsoesa\nsoeverein\nsoevereinen\nsoevereiniteit\nsoevereiniteitsoverdracht\nsoevereiniteitsrecht\nsoevereiniteitsverlies\nsoezen\nsoezerig\nsoezig\nsof\nsofa\nsofinummer\nsofisme\nsofist\nsofisterij\nsofistisch\nsoft\nsoftbal\nsoftballen\nsoftdrink\nsoftdrug\nsoftdrugs\nsoftdrugsbeleid\nsoftdrugsgebruik\nsoftenon\nsoftenonbaby\nsoftheid\nsoftie\nsoftijs\nsoftporno\nsoftseks\nsoftware\nsoftware-industrie\nsoftwareapplicatie\nsoftwarebedrijf\nsoftwarebureau\nsoftwarecode\nsoftwarecomponent\nsoftwareconcern\nsoftwarecontract\nsoftwaredistributeur\nsoftwarefabrikant\nsoftwaregebied\nsoftwaregigant\nsoftwaregroep\nsoftwarehuis\nsoftwarekosten\nsoftwareleverancier\nsoftwarelicentie\nsoftwaremaker\nsoftwaremarkt\nsoftwarematig\nsoftwareonderneming\nsoftwareontwikkelaar\nsoftwareontwikkeling\nsoftwarepakket\nsoftwareproducent\nsoftwareproduct\nsoftwareprogramma\nsoftwaresector\nsoftwaresysteem\nsoftwareversies\nsoigneren\nsoigneur\nsoiree\nsoit\nsoja\nsoja-eiwit\nsoja-eiwitten\nsojabonenkaas\nsojabonenkoek\nsojaboon\nsojameel\nsojamelk\nsojaolie\nsojaplant\nsojasaus\nsojaschroot\nsok\nsokkel\nsokkerig\nsokophouder\nsol\nsolaas\nsolair\nsolarium\nsoldaat\nsoldaatje\nsoldaatjes\nsoldate\nsoldatenbrood\nsoldatenkerkhof\nsoldatenlaars\nsoldatenleven\nsoldatenlied\nsoldatentaal\nsoldatentijd\nsoldatenvolk\nsoldaterij\nsoldatesk\nsoldateska\nsolde\nsoldeer\nsoldeerbout\nsoldeerbrander\nsoldeerder\nsoldeerdraad\nsoldeereilandje\nsoldeerijzer\nsoldeerlamp\nsoldeerpistool\nsoldeersel\nsoldeertin\nsoldeerwater\nsoldeerwerk\nsolden\nsoldenier\nsolderen\nsoldering\nsoldij\nsolecisme\nsolemneel\nsolemniseren\nsolemniteit\nsolenoïde\nsoleren\nsolex\nsolfegiëren\nsolfer\nsolferbloem\nsolferstank\nsolfège\nsolfègeklas\nsolidair\nsolidariseren\nsolidarisme\nsolidaristisch\nsolidariteit\nsolidariteitsactie\nsolidariteitsbeginsel\nsolidariteitsbijdrage\nsolidariteitsbijeenkomst\nsolidariteitsfonds\nsolidariteitsgedachte\nsolidariteitsgevoel\nsolidariteitsheffing\nsolidariteitsprincipe\nsolidariteitsstaking\nsolidariteitstoeslag\nsolidariteitsverklaring\nsolide\nsolideren\nsolidering\nsoliditeit\nsolied\nsoliede\nsolipsisme\nsolipsist\nsolisme\nsolist\nsoliste\nsolistenkamer\nsolistisch\nsolitair\nsolitairspel\nsollen\nsollicitant\nsollicitante\nsollicitatie\nsollicitatiebeleid\nsollicitatiebrief\nsollicitatiecommissie\nsollicitatiecursus\nsollicitatieformulier\nsollicitatiegesprek\nsollicitatieplicht\nsollicitatieprocedure\nsollicitatieronde\nsollicitatietraining\nsolliciteren\nsolmisatie\nsolmiseren\nsolo\nsolo-cd\nsolo-instrument\nsolo-optreden\nsoloactie\nsoloalbum\nsolocarrière\nsolodebuut\nsoloecisme\nsologitarist\nsoloklas\nsolopartij\nsoloplaat\nsolopraktijk\nsoloprogramma\nsoloproject\nsolospel\nsolospeler\nsolostem\nsolotentoonstelling\nsolotoer\nsolovlucht\nsolovoorstelling\nsolowerk\nsolozang\nsolozanger\nsolozangeres\nsolozeiler\nsolsleutel\nsolstitium\nsolutie\nsolvabel\nsolvabiliteit\nsolvabiliteitseis\nsolvabiliteitspositie\nsolvabiliteitsprobleem\nsolvabiliteitsratio\nsolvabiliteitsverzekering\nsolvent\nsolventie\nsolveren\nsom\nsomatisch\nsomatologie\nsomber\nsomberaars\nsomberen\nsomberheid\nsomberman\nsomberte\nsombrero\nsomfunctie\nsomma\nsommatie\nsommelier\nsommen\nsommenverzekering\nsommeren\nsommering\nsommig\nsommige\nsomnambule\nsomnambulisme\nsomp\nsompen\nsompig\nsomptueus\nsoms\nsomtijds\nsomwijlen\nsonant\nsonar\nsonarapparatuur\nsonarinstallatie\nsonarsysteem\nsonate\nsonatine\nsonde\nsondeerballon\nsondeerijzer\nsonderen\nsondering\nsondevoeding\nsong\nsongfestival\nsongmateriaal\nsongschrijven\nsongschrijver\nsongtekst\nsongtitel\nsongwriter\nsonnet\nsonnettenkrans\nsonologie\nsonoor\nsonoriteit\nsoort\nsoortbescherming\nsoortecht\nsoorteigen\nsoortelijk\nsoortement\nsoortenbeschrijving\nsoortenrijk\nsoortenrijkdom\nsoortensamenstelling\nsoortgelijk\nsoortgenoot\nsoortnaam\nsoos\nsop\nsophisticated\nsoporatief\nsoppen\nsopperig\nsoppig\nsopraan\nsopraanpartij\nsopraansax\nsopraansaxofonist\nsopraansaxofoon\nsopraansleutel\nsopraanstem\nsopraanzangeres\nsopropo\nsorbenkruid\nsorbet\nsorbetijs\nsorbiet\nsorbitol\nsordino\nsores\nsorghum\nsorry\nsorrydemocratie\nsorteercentrale\nsorteercentrum\nsorteercriteria\nsorteerder\nsorteermachine\nsorteerproef\nsorteerster\nsorteervolgorde\nsorteerwerk\nsorteerwijze\nsorteerwijzen\nsorteren\nsortering\nsortie\nsortiment\nsostenuto\nsoterisch\nsotternie\nsotto voce\nsou\nsoubrette\nsouche\nsouffleren\nsouffleur\nsouffleuse\nsoufflé\nsoul\nsoulband\nsouljazz\nsoulmate\nsoulmuziek\nsoulnummer\nsoulplaat\nsoulsong\nsoulstem\nsoulzanger\nsoulzangeres\nsound\nsoundbite\nsoundblaster\nsoundcheck\nsounder\nsoundmachine\nsoundmix\nsoundmixen\nsoundmixer\nsoundmixshow\nsoundtrack\nsouper\nsouperen\nsoupertjes\nsouplesse\nsourdine\nsousafoon\nsousbras\nsouschef\nsouspied\nsoutache\nsoutane\nsouteneren\nsouteneur\nsouteneurschap\nsouterliedeken\nsouterrain\nsoutien\nsouvenir\nsouvenirjager\nsouvenirshop\nsouvenirtje\nsouvenirtjes\nsouvenirwinkel\nsouvlaki\nsovchoz\nsovchoze\nsovjet\nsovjetiseren\nsovjetologie\nsovjetoloog\nsowieso\nspa\nspaak\nspaakbeen\nspaakwiel\nspaan\nspaander\nspaanders\nspaanhout\nspaanplaat\nspaanplaatgas\nspaaractie\nspaarbank\nspaarbankboekje\nspaarbankzegel\nspaarbedrag\nspaarbekken\nspaarbewijs\nspaarbiljet\nspaarboekje\nspaarbon\nspaarbrander\nspaarbrief\nspaarcenten\nspaardeel\nspaardelen\nspaardeposito\nspaarder\nspaardersmarkt\nspaarduit\nspaarduiten\nspaarfonds\nspaarfondsenwet\nspaarformule\nspaargedrag\nspaargeld\nspaarhypotheek\nspaarinspanning\nspaarkaart\nspaarkas\nspaarkasbedrijf\nspaarkasovereenkomst\nspaarlamp\nspaarloon\nspaarloonregeling\nspaarmarkt\nspaaroverschot\nspaarpenning\nspaarpenningen\nspaarplan\nspaarpot\nspaarpremie\nspaarproduct\nspaarprogramma\nspaarquote\nspaarregeling\nspaarrekening\nspaarrente\nspaarsaldo\nspaarsysteem\nspaartegoed\nspaartekort\nspaarvarken\nspaarverzekering\nspaarvlam\nspaarvolume\nspaarvorm\nspaarzaam\nspaarzaamheid\nspaarzegel\nspaarzin\nspaat\nspaatje\nspacecake\nspacelab\nspaceshuttle\nspacewagon\nspade\nspaden\nspadesteek\nspadille\nspagaat\nspagaathouding\nspaghetti\nspaghettivreter\nspaghettiwestern\nspahi\nspaken\nspakerig\nspalier\nspalierboom\nspalk\nspalken\nspalkhout\nspalking\nspalkverband\nspalling\nspam\nspamfilter\nspan\nspanader\nspanbeton\nspanbroek\nspandienst\nspandoek\nspandraad\nspanen\nspang\nspanhaak\nspanhout\nspaniël\nspanjolet\nspanjool\nspankracht\nspanlaken\nspanne\nspannen\nspannend\nspanner\nspanners\nspannetje\nspanning\nspanningsboog\nspanningsbron\nspanningsgebied\nspanningshaard\nspanningshoofdpijn\nspanningsloos\nspanningsmeter\nspanningsomzetter\nspanningsopbouw\nspanningsrail\nspanningsregelaar\nspanningsregeling\nspanningstoestand\nspanningsveld\nspanningsverlies\nspanningsverschil\nspanningsvrij\nspanningsvrije\nspanningzoeker\nspanplaat\nspanraam\nspanrib\nspanriem\nspanrol\nspanrups\nspant\nspantouw\nspanwerk\nspanwijdte\nspanzaag\nspar\nsparappel\nsparen\nsparerib\nsparing\nsparingen\nsparkelen\nsparren\nsparrenboom\nsparrenbos\nsparrengroen\nsparrenhout\nsparrenkegel\nsparrentak\nsparring\nsparringpartner\nspartaan\nspartaans\nspartelen\nsparteling\nspasme\nspasmodisch\nspasticiteit\nspastisch\nspat\nspatader\nspatbord\nspatel\nspatelvormig\nspatgelijk\nspatie\nspatiebalk\nspatiëren\nspatiëring\nspatkleed\nspatlap\nspats\nspatscherm\nspatten\nspatterig\nspattig\nspatting\nspatwater\nspeaker\nspecerij\nspecerijenhandel\nspecerijhandel\nspecht\nspechtensmidse\nspeciaal\nspeciaalzaak\nspecial\nspecialisatie\nspecialisatiejaar\nspecialiseren\nspecialisering\nspecialisme\nspecialist\nspecialiste\nspecialisteninkomen\nspecialistenopleiding\nspecialistenplaats\nspecialistentarief\nspecialistenvereniging\nspecialistenwerk\nspecialistisch\nspecialiteit\nspecialiteitenrestaurant\nspecie\nspeciebriefje\nspeciekuip\nspeciemolen\nspecies\nspecificatie\nspecificeren\nspecificiteit\nspecificum\nspecifiek\nspecimen\nspectaculair\nspectator\nspectatoriaal\nspectraal\nspectraallijn\nspectrograaf\nspectrografie\nspectrografisch\nspectrogram\nspectroheliograaf\nspectrometer\nspectroscoop\nspectroscopie\nspectroscopisch\nspectrum\nspeculaas\nspeculaasje\nspeculant\nspeculatie\nspeculatief\nspeculatiegeest\nspeculatiegolf\nspeculatieobject\nspeculatiewinst\nspeculeren\nspeculum\nspeech\nspeechen\nspeecher\nspeechschrijver\nspeed\nspeedboot\nspeedmetal\nspeedway\nspeek\nspeeksel\nspeekselafscheiding\nspeekselklier\nspeelautomaat\nspeelautomatenhal\nspeelavond\nspeelbaar\nspeelbal\nspeelbank\nspeelbeurt\nspeelboom\nspeelbord\nspeelbos\nspeeldag\nspeeldingen\nspeeldoos\nspeelduivel\nspeelduur\nspeelfilm\nspeelfilmdebuut\nspeelfilmindustrie\nspeelfilmlang\nspeelfilmlengte\nspeelfilmmaker\nspeelfilmproductie\nspeelfilmregisseur\nspeelgedrag\nspeelgeld\nspeelgelegenheid\nspeelgenoot\nspeelgenote\nspeelgerechtigd\nspeelgoed\nspeelgoedafdeling\nspeelgoedauto\nspeelgoedbeer\nspeelgoedbeest\nspeelgoedbranche\nspeelgoedfabrikant\nspeelgoedindustrie\nspeelgoedketen\nspeelgoedmuseum\nspeelgoedpistool\nspeelgoedpop\nspeelgoedsector\nspeelgoedtrein\nspeelgoedwinkel\nspeelgoedzaak\nspeelhal\nspeelhelft\nspeelhoek\nspeelhol\nspeelhuis\nspeelkaart\nspeelkamer\nspeelkameraad\nspeelklaar\nspeelkwartier\nspeellijst\nspeellokaal\nspeelmakker\nspeelman\nspeelnoot\nspeelomgeving\nspeelparadijs\nspeelperiode\nspeelplaats\nspeelplan\nspeelplein\nspeelplek\nspeelpop\nspeelreis\nspeelronde\nspeelruimte\nspeels\nspeelschema\nspeelschuld\nspeelseizoen\nspeelsheid\nspeelstad\nspeelster\nspeelsterkte\nspeelstijl\nspeeltafel\nspeeltechniek\nspeeltempo\nspeelterrein\nspeeltijd\nspeeltje\nspeeltoestel\nspeeltuig\nspeeltuin\nspeeltuinwerk\nspeeluur\nspeelveld\nspeelverbod\nspeelvlak\nspeelvloer\nspeelvogel\nspeelwagen\nspeelweek\nspeelwei\nspeelweide\nspeelwerk\nspeelwijze\nspeelzaal\nspeelziek\nspeelzucht\nspeen\nspeenkruid\nspeenvarken\nspeer\nspeerhaai\nspeerhaak\nspeerpunt\nspeerpuntenbeleid\nspeerwerpen\nspeerwerper\nspeerwerpster\nspeet\nspeetje\nspek\nspekachtig\nspekbokking\nspekbuik\nspeken\nspekglad\nspekhaak\nspekje\nspekjood\nspekken\nspekkie\nspekkig\nspekking\nspekkoek\nspekkoper\nspeklaag\nspeklap\nspeknaald\nspeknek\nspekpannenkoek\nspekslager\nspekslagerij\nspeksnijder\nspeksteen\nspeksteenpoeder\nspekstenen\nspekstruif\nspektakel\nspektakelfilm\nspektakelmaker\nspektakelshow\nspektakelstuk\nspektakelwaarde\nspekvet\nspekwortel\nspekzak\nspekzwoerd\nspekzwoord\nspel\nspelactiviteit\nspelbederf\nspelbederver\nspelbeeld\nspelbepaler\nspelboek\nspelbord\nspelbreekster\nspelbreker\nspelcomputer\nspelconcept\nspelconsole\nspelconsoles\nspeld\nspeldeel\nspelden\nspeldenbakje\nspeldendoosje\nspeldengeld\nspeldenknop\nspeldenkop\nspeldenkussen\nspeldenprik\nspeldenpunt\nspeldenwerk\nspeldenwerkster\nspeldje\nspeldjesdag\nspelelement\nspelemeien\nspelen\nspelenderwijs\nspelenderwijze\nspeleologie\nspeleologisch\nspeleoloog\nspeler\nspeler-coach\nspeler-trainer\nspelergroep\nspelerijden\nspelersaankoop\nspelersbank\nspelersbus\nspelerscarrière\nspelersgroep\nspelershome\nspelerslijst\nspelersloopbaan\nspelersmakelaar\nspelersmarkt\nspelersmateriaal\nspelersraad\nspelersselectie\nspelerstunnel\nspelersvakbond\nspelersveld\nspelervaring\nspelevaart\nspelevaren\nspelfout\nspelgedrag\nspeling\nspelinzicht\nspelkunst\nspelleider\nspelleiding\nspelleidster\nspellen\nspeller\nspelletje\nspelletjescomputer\nspelletjesfabrikant\nspelletjesmarkt\nspelletjesprogramma\nspelletjesshow\nspelling\nspellingbeeld\nspellingbestand\nspellingchecker\nspellingcommissie\nspellingcontrole\nspellingcontrolebestanden\nspellingcontrolefunctie\nspellingcontrolemodule\nspellingcontroleprogramma\nspellingcorrectie\nspellingcorrector\nspellinggids\nspellinghervormer\nspellinghervorming\nspellingherziening\nspellinginstructie\nspellingkwestie\nspellingproblematiek\nspellingregel\nspellingscontrole\nspellingshervorming\nspellingsmodule\nspellingsprogramma\nspellingsregel\nspellingsuggestie\nspellingvariant\nspellingvoorschriften\nspellingvorm\nspellingvraagstuk\nspellingwet\nspellingwijziging\nspellingwoordenlijst\nspellingwoordenlijsten\nspelmaker\nspelmateriaal\nspelmethode\nspelmoment\nspelniveau\nspelonderbreking\nspelonk\nspelonkachtig\nspelopvatting\nspelotheek\nspelpeil\nspelplezier\nspelprogramma\nspelregel\nspelregelcommissie\nspelregie\nspelronde\nspelshow\nspelsituatie\nspelsoort\nspelspanning\nspelt\nspeltechniek\nspeltechnisch\nspeltempo\nspeltheorie\nspeltherapeut\nspeltherapie\nspeltype\nspelvaardigheid\nspelvariant\nspelverdeler\nspelverloop\nspelverruwing\nspelvoorstel\nspelvorm\nspelvreugde\nspelwijze\nspelwijzen\nspencer\nspenderen\nspenen\nsperactie\nspergebied\nsperma\nspermabank\nspermaceet\nspermacel\nspermaceti\nspermadonor\nspermarietje\nspermaspoor\nspermatogenese\nspermatozoïde\nspermatozoön\nsperperiode\nsperren\nsperring\nspertijd\nspervuur\nsperwer\nsperzieboon\nspeten\nspetten\nspetter\nspetteren\nspeuractie\nspeurder\nspeurdersroman\nspeuren\nspeurhond\nspeurneus\nspeurtocht\nspeurwerk\nspeurzin\nspiccato\nspicht\nspichtig\nspichtigheid\nspie\nspiebaan\nspiebout\nspieden\nspiegat\nspiegel\nspiegelbeeld\nspiegelbeeldig\nspiegelbepaling\nspiegelblank\nspiegelboog\nspiegeldeur\nspiegeleffect\nspiegelei\nspiegelen\nspiegelgalerij\nspiegelgevecht\nspiegelglad\nspiegelglas\nspiegelhars\nspiegeling\nspiegelkabinet\nspiegelkast\nspiegellamp\nspiegellijst\nspiegelnet\nspiegelpaleis\nspiegelreflexcamera\nspiegelruit\nspiegelschrift\nspiegeltelescoop\nspiegeltent\nspiegeltje\nspiegelverhaal\nspiegelvlak\nspiegelwand\nspiegelzaal\nspiekbriefje\nspieken\nspieker\nspiekpapiertje\nspielerei\nspier\nspieraam\nspierarbeid\nspieratrofie\nspierbal\nspierballenpolitiek\nspierballentaal\nspierballenvertoon\nspierbelasting\nspierbeweging\nspierblessure\nspierbundel\nspiercel\nspierdystrofie\nspieren\nspiergroep\nspiergroepen\nspiering\nspieringen\nspieringvangst\nspierkracht\nspierkramp\nspiermaag\nspiermassa\nspiernaakt\nspierpijn\nspierscheuring\nspierschok\nspierschokjes\nspierschokken\nspierspanning\nspierstelsel\nspierstijfheid\nspiertje\nspiertrekking\nspierverlamming\nspierverrekking\nspierverslappend\nspierverslapper\nspierverslapping\nspierversterkend\nspiervezel\nspiervlees\nspierweefsel\nspierwit\nspierziekte\nspierzwakte\nspies\nspiesen\nspiesglans\nspieshert\nspiesvormig\nspiets\nspietsen\nspieën\nspijbelaar\nspijbelaarster\nspijbelen\nspijbelgedrag\nspijer\nspijgat\nspijk\nspijker\nspijkerbak\nspijkerbalsem\nspijkerband\nspijkerbed\nspijkerbom\nspijkerboor\nspijkerbroek\nspijkerbroekenmerk\nspijkeren\nspijkergat\nspijkerhard\nspijkerjack\nspijkerpak\nspijkerschoen\nspijkerschrift\nspijkerstof\nspijkervast\nspijkolie\nspijl\nspijlen\nspijlenledikant\nspijs\nspijsbrij\nspijshuis\nspijskaart\nspijskokerij\nspijslift\nspijslijst\nspijsoffer\nspijsolie\nspijsuitdeling\nspijsvertering\nspijsverteringskanaal\nspijsverteringsorgaan\nspijsverteringsprobleem\nspijsverteringsstelsel\nspijsverteringsstoornis\nspijsvet\nspijt\nspijtbetuiging\nspijten\nspijtig\nspijtigheid\nspijtoptant\nspijts\nspijzen\nspijzigen\nspijziging\nspike\nspikkel\nspikkelachtig\nspikkelen\nspikkelig\nspikkeling\nspiksplinternieuw\nspil\nspilfiguur\nspilfunctie\nspilgat\nspilholding\nspilindex\nspilkoers\nspillage\nspillebeen\nspillebenen\nspilleleen\nspillen\nspillepoot\nspilpositie\nspilziek\nspilzucht\nspilzuchtig\nspin\nspin-off\nspina bifida\nspinaal\nspinachtig\nspinaker\nspinazie\nspinaziebed\nspinazieblad\nspinde\nspindel\nspindoctor\nspindraad\nspinel\nspinet\nspinhuis\nspinklier\nspinmachine\nspinnaker\nspinnen\nspinnendraad\nspinnenkop\nspinnenweb\nspinner\nspinnerij\nspinnetje\nspinnewiel\nspinnig\nspinnijdig\nspinning\nspinozisme\nspinozist\nspinrag\nspinrok\nspinrokken\nspinsel\nspinster\nspinstok\nspint\nspinzen\nspion\nspionage\nspionageactiviteit\nspionageaffaire\nspionagedienst\nspionagefilm\nspionagenet\nspionagenetwerk\nspionageroman\nspionagesatelliet\nspionageschandaal\nspionagesysteem\nspionagethriller\nspionagetoestel\nspionageverhaal\nspionagevliegtuig\nspionagewerk\nspioneren\nspionkop\nspionne\nspionnen\nspionnetje\nspiraal\nspiraaldraad\nspiraallijn\nspiraalmatras\nspiraalsgewijs\nspiraalsgewijze\nspiraaltje\nspiraalveer\nspiraalvorm\nspiraalvormig\nspiralen\nspirant\nspirantiseren\nspirea\nspirit\nspiritisme\nspiritist\nspiritistisch\nspiritual\nspiritualisme\nspiritualist\nspiritualistisch\nspiritualiteit\nspiritualiën\nspiritueel\nspiritus\nspiritusbrander\nspirituslamp\nspirituslichtje\nspiritusstel\nspiritusvlam\nspirocheet\nspirometer\nspit\nspitant\nspits\nspitsbaard\nspitsbek\nspitsboef\nspitsbogenstijl\nspitsboog\nspitsbroeder\nspitsbus\nspitsen\nspitsenduo\nspitsenkoppel\nspitsenprobleem\nspitsentrainer\nspitser\nspitsheffing\nspitsheid\nspitshond\nspitsig\nspitsing\nspitskool\nspitsmuis\nspitsneus\nspitspositie\nspitsroede\nspitsroeden\nspitsspeler\nspitsstrook\nspitstarief\nspitstechnologie\nspitstoeslag\nspitstrein\nspitsuren\nspitsuur\nspitsverkeer\nspitsvignet\nspitsvondig\nspitsvondigheid\nspitten\nspitter\nspitvarken\nspitwerk\nspitzen\nspleen\nspleet\nspleetogen\nspleetogig\nspleetoog\nspleetsluiter\nspleetvormig\nspleten\nsplijtbaar\nsplijten\nsplijting\nsplijtingsproduct\nsplijtstaaf\nsplijtstof\nsplijtstofcyclus\nsplijtstofelement\nsplijtstofstaaf\nsplijtzwam\nsplinter\nsplinterbom\nsplinterbreuk\nsplinteren\nsplintergroep\nsplintergroepering\nsplinterig\nsplinternieuw\nsplinterpartij\nsplintertang\nsplit\nspliterwt\nspliterwten\nsplitgevaar\nsplitpen\nsplitrok\nsplits\nsplitsbaar\nsplitsbaarheid\nsplitsen\nsplitser\nsplitshamer\nsplitsing\nsplitsingsstelsel\nsplitten\nsplitvrucht\nspoed\nspoedadvies\nspoedbehandeling\nspoedberaad\nspoedbestelling\nspoedbijeenkomst\nspoedcursus\nspoeddebat\nspoedeisend\nspoeden\nspoedgeval\nspoedhulp\nspoedig\nspoedkarakter\nspoedklus\nspoedoperatie\nspoedopname\nspoedoverleg\nspoedplaats\nspoedprocedure\nspoedshalve\nspoedstuk\nspoedvergadering\nspoedwerk\nspoedwet\nspoedzitting\nspoel\nspoelbak\nspoeldrank\nspoelen\nspoeler\nspoelhok\nspoeling\nspoeljongen\nspoelkeuken\nspoelkom\nspoelmachine\nspoelolie\nspoelsel\nspoelstelsel\nspoelvloeistof\nspoelwater\nspoelworm\nspoetnik\nspog\nspogen\nspoiler\nspoken\nspokerig\nspokerij\nspoliatie\nspoliëren\nspon\nsponde\nspondee\nsponden\nspondeus\nspondeïsch\nspong\nspongat\nspongen\nspongiform\nsponnen\nsponning\nsponningschaaf\nspons\nsponsachtig\nsponsachtigheid\nsponsen\nsponshanddoek\nsponsig\nsponsor\nsponsoractie\nsponsorbedrag\nsponsorbeleid\nsponsorbijdrage\nsponsorcode\nsponsorcontract\nsponsoren\nsponsorgeld\nsponsoring\nsponsorinkomsten\nsponsornaam\nsponsorovereenkomst\nsponsorschap\nsponsorwerving\nsponssteen\nsponsvisser\nsponsvisserij\nsponszakje\nspontaan\nspontaneïteit\nspontaniteit\nsponturf\nsponzen\nsponzendoos\nsponzenduiker\nsponzenvisser\nsponzenvisserij\nsponzenzakje\nsponzig\nspoog\nspook\nspookachtig\nspookbeeld\nspookdier\nspookdorp\nspookgedaante\nspookgeschiedenis\nspookgestalte\nspookhuis\nspookkasteel\nspooklicht\nspooknota\nspookrijden\nspookrijder\nspookrijdster\nspookschip\nspooksel\nspookslot\nspookstad\nspooktrein\nspookuur\nspookverhaal\nspookverschijning\nspoor\nspoorbaan\nspoorbalk\nspoorbedrijf\nspoorbiels\nspoorboekje\nspoorbond\nspoorboom\nspoorboot\nspoorbreedte\nspoorbrug\nspoorbus\nspoorcapaciteit\nspoordienst\nspoordijk\nspooremplacement\nspoorfiets\nspoorinfrastructuur\nspoorkaartje\nspoorkuil\nspoorlijn\nspoorloos\nspoormaatschappij\nspoorman\nspoormarkt\nspoormaterieel\nspoornet\nspoornetwerk\nspoorovergang\nspoorrail\nspoorrijtuig\nspoorslag\nspoorslags\nspoorstaaf\nspoorstaking\nspoorstation\nspoorstok\nspoorstudent\nspoortijd\nspoortje\nspoortracé\nspoortraject\nspoortrein\nspoortunnel\nspoorverbinding\nspoorverdubbeling\nspoorverkeer\nspoorvervoer\nspoorviaduct\nspoorvorming\nspoorwachter\nspoorwagen\nspoorwagon\nspoorweg\nspoorwegaandeel\nspoorwegarbeider\nspoorwegbeambte\nspoorwegbedrijf\nspoorwegbouw\nspoorwegbrug\nspoorwegdienst\nspoorwegdirectie\nspoorwegemplacement\nspoorwegen\nspoorwegennet\nspoorweginfrastructuur\nspoorwegknooppunt\nspoorweglawaai\nspoorwegmaatschappij\nspoorwegmagnaat\nspoorwegman\nspoorwegmaterieel\nspoorwegnet\nspoorwegnetwerk\nspoorwegonderneming\nspoorwegovergang\nspoorwegpersoneel\nspoorwegpolitie\nspoorwegstaking\nspoorwegstation\nspoorwegtraject\nspoorwegtunnel\nspoorwegvakbond\nspoorwegverbinding\nspoorwegverkeer\nspoorwegvervoer\nspoorwegviaduct\nspoorwijdte\nspoorzoeken\nspoorzoeker\nspoot\nsporadisch\nsporangium\nsporangiën\nspore\nsporen\nsporendiertje\nsporenelement\nsporengassen\nsporenhouder\nsporenmateriaal\nsporenonderzoek\nsporenplant\nsporkeboom\nsporkehout\nsport\nsportaanbod\nsportacademie\nsportaccommodatie\nsportactiviteit\nsportarena\nsportartikel\nsportartikelenfabrikant\nsportarts\nsportauto\nsportbegroting\nsportbeha\nsportbeleid\nsportbeoefenaar\nsportbeoefening\nsportbericht\nsportbestuurder\nsportbestuurders\nsportblad\nsportblessure\nsportblouse\nsportbond\nsportboycot\nsportbroek\nsportbudget\nsportcarrière\nsportcentrum\nsportclub\nsportcommentator\nsportcomplex\nsportcoupé\nsportcultuur\nsportdag\nsportdeelname\nsportdirecteur\nsportdocent\nsportdoeleinden\nsportdrama\nsportdrank\nsportduiker\nsporten\nsporter\nsportevenement\nsportfaciliteit\nsportfederatie\nsportfeest\nsportfiets\nsportfilm\nsportgala\nsportgebeuren\nsportgebied\nsportgelegenheid\nsportgeneeskunde\nsportgeschiedenis\nsporthal\nsportheld\nsporthemd\nsporthistoricus\nsportief\nsportieveling\nsportinfrastructuur\nsportinstructeur\nsportiviteit\nsportjaar\nsportjournaal\nsportjournalist\nsportjournalistiek\nsportkanaal\nsportkantine\nsportkatern\nsportkeuring\nsportkledij\nsportkleding\nsportkledingfabrikant\nsportklimaat\nsportklimmen\nsportkoepel\nsportkostuum\nsportkous\nsportkrant\nsportland\nsportleider\nsportleidster\nsportleraar\nsportles\nsportletsel\nsportleven\nsportliefhebber\nsportman\nsportmanifestatie\nsportmarketing\nsportmarkt\nsportmasseur\nsportmateriaal\nsportmedisch\nsportmens\nsportmerk\nsportmodel\nsportmoment\nsportmuseum\nsportnatie\nsportnet\nsportnieuws\nsportnota\nsportopleiding\nsportorganisatie\nsportpagina\nsportpak\nsportpaleis\nsportpark\nsportploeg\nsportpresentator\nsportprestatie\nsportprogramma\nsportpsychologie\nsportpsycholoog\nsportraad\nsportredacteur\nsportredactie\nsportrubriek\nsportruimte\nsportschoeisel\nsportschoen\nsportschoenenfabrikant\nsportschool\nsportschoolhouder\nsportsector\nsportsite\nsportsok\nsportsponsoring\nsportstad\nsportstadion\nsportster\nsportstimulering\nsportstuur\nsporttak\nsporttalent\nsporttas\nsportteam\nsporttechnisch\nsportterrein\nsporttoernooi\nsporttribunaal\nsportuitrusting\nsportuitzending\nsportveld\nsportvereniging\nsportverslaggever\nsportverslaggeving\nsportvissen\nsportvisser\nsportvisserij\nsportvlieger\nsportvliegtuig\nsportvoeding\nsportvriend\nsportvrijwilliger\nsportvrouw\nsportwagen\nsportwagenmerk\nsportwedstrijd\nsportwereld\nsportwet\nsportwinkel\nsportzaak\nsportzaal\nsportzak\nsportzender\nspot\nspotachtig\nspotbeeld\nspotdicht\nspoten\nspotgeest\nspotgoedkoop\nspotkoopje\nspotlach\nspotlachen\nspotlicht\nspotlight\nspotlijster\nspotlust\nspotmarkt\nspotnaam\nspotprent\nspotprijs\nspotschrift\nspotster\nspotten\nspottenderwijs\nspottenderwijze\nspotter\nspotternij\nspotvogel\nspotziek\nspotzucht\nspouw\nspouwen\nspouwer\nspouwmuur\nspouwmuurisolatie\nspraak\nspraakcentrum\nspraakgebrek\nspraakgebruik\nspraakgeluid\nspraakgestuurd\nspraakherkenning\nspraakklank\nspraakkunst\nspraakkunstig\nspraakleer\nspraakleraar\nspraaklerares\nspraakles\nspraakmakend\nspraakmaker\nspraakorgaan\nspraakstoornis\nspraaksynthese\nspraaktechnologie\nspraaktechnologiebedrijf\nspraaktechnologisch\nspraaktelefonie\nspraakverkeer\nspraakvermogen\nspraakverwarring\nspraakwater\nspraakwaterval\nspraakwerktuig\nspraakzaam\nspraakzaamheid\nsprake\nsprakeloos\nsprakeloosheid\nsprang\nsprank\nsprankelen\nsprankeling\nsprankje\nspray\nsprayen\nsprays\nspread\nspreadsheet\nspreekangst\nspreekbeurt\nspreekbuis\nspreekcel\nspreekgestoelte\nspreekhoorn\nspreekhoren\nspreekkamer\nspreekkoor\nspreekles\nspreekmaat\nspreekoefening\nspreekrecht\nspreekstalmeester\nspreekstem\nspreekster\nspreektaal\nspreektalig\nspreektempo\nspreektijd\nspreektrant\nspreektrompet\nspreekuur\nspreekuuragenda\nspreekuurcontact\nspreekuuronderzoek\nspreekuurrooster\nspreekvaardigheid\nspreekverbod\nspreekvermogen\nspreekwijs\nspreekwijze\nspreekwoord\nspreekwoordelijk\nspreekwoordenboek\nspreeuw\nspreeuwennest\nsprei\nspreiden\nspreiding\nspreidingsbeleid\nspreidingsbreedte\nspreidingsdiagram\nspreidingsplan\nspreidsel\nspreidsprong\nspreidstand\nspreien\nspreilaag\nspreke\nspreken\nsprekend\nspreker\nsprekerslijst\nsprekerstalent\nspreng\nsprengen\nsprenkel\nsprenkelen\nsprenkeling\nsprenkelinstallatie\nspreuk\nspreukachtig\nspreukenboek\nspriet\nsprietantenne\nsprieten\nsprietig\nsprietje\nsprietloop\nsprietlopen\nsprietzeil\nspring\nspring-in-'t-veld\nspringaal\nspringader\nspringbak\nspringbalk\nspringbalsemien\nspringbok\nspringbron\nspringbus\nspringconcours\nspringeb\nspringen\nspringer\nspringerig\nspringfout\nspringhaas\nspringkasteel\nspringkever\nspringkruid\nspringlading\nspringlevend\nspringmatras\nspringmuis\nspringnet\nspringpaard\nspringparcours\nspringplank\nspringpoot\nspringriem\nspringruiter\nspringschans\nspringscherm\nspringslot\nspringspin\nspringsport\nspringstof\nspringstok\nspringtij\nspringtouw\nspringtuig\nspringuur\nspringveer\nspringveren\nspringvloed\nspringvorm\nspringzeil\nsprinkhaan\nsprinkhaanrietzanger\nsprinkhanenplaag\nsprinkler\nsprinklerinstallatie\nsprint\nsprintafstand\nsprintduel\nsprintelite\nsprinten\nsprinter\nsprintkampioen\nsprintkampioene\nsprintkanon\nsprintkoning\nsprintnummer\nsprintsnelheid\nsprintster\nsprinttitel\nsprintwedstrijd\nsprintwerk\nsprintzege\nsprits\nspritsen\nsproei\nsproei-installatie\nsproeien\nsproeier\nsproeikop\nsproeimachine\nsproeimiddel\nsproeistof\nsproeivliegtuig\nsproeiwagen\nsproeiwater\nsproet\nsproeten\nsproeterig\nsproetig\nsproke\nsprokkel\nsprokkelaar\nsprokkelaarster\nsprokkelen\nsprokkelhout\nsprokkeling\nsprokkelmaand\nsprong\nsprongbeen\nspronggewricht\nsprongkracht\nsprongsgewijs\nsprongsgewijze\nsprookje\nsprookjesachtig\nsprookjesboek\nsprookjesbos\nsprookjesdichter\nsprookjesfiguur\nsprookjeshuwelijk\nsprookjeskasteel\nsprookjesland\nsprookjespaleis\nsprookjesprins\nsprookjesprinses\nsprookjesschrijver\nsprookjesverteller\nsprookjeswereld\nsprookspreker\nsproot\nsprot\nsprotje\nspruit\nspruiten\nspruitje\nspruitjes\nspruitjesgeur\nspruitjeslucht\nspruitkool\nspruitsel\nspruitstuk\nspruw\nspugen\nspui\nspuien\nspuigat\nspuiing\nspuikom\nspuipijp\nspuipijpen\nspuisluis\nspuit\nspuitbeton\nspuitbus\nspuitcabine\nspuiten\nspuiter\nspuiterij\nspuitfles\nspuitgast\nspuitgat\nspuitgieten\nspuitgieter\nspuitgietproces\nspuitgietwerk\nspuitje\nspuitlak\nspuitmachine\nspuitmasker\nspuitmeester\nspuitmiddel\nspuitomruil\nspuitpistool\nspuitslang\nspuitstuk\nspuitvis\nspuitwater\nspuitwerk\nspuitzak\nspul\nspullen\nspullenbaas\nspurrie\nspurt\nspurten\nspurter\nsputteren\nsputum\nspuug\nspuugbak\nspuuglelijk\nspuuglok\nspuugsel\nspuugzat\nspuwbak\nspuwen\nspuwer\nspuwsel\nspyware\nspécialité\nsquadron\nsquare\nsquash\nsquashbaan\nsquashen\nsquasher\nsquaw\nsta-in-de-weg\nstaaf\nstaafantenne\nstaafbatterij\nstaafdiagram\nstaafgrafiek\nstaafijzer\nstaafje\nstaaflantaarn\nstaaflantaren\nstaafmagneet\nstaafmixer\nstaafvorm\nstaafvormig\nstaag\nstaak\nstaakboon\nstaakmolen\nstaaksgewijs\nstaakster\nstaakt-het-vuren\nstaal\nstaalachtig\nstaalarbeider\nstaalbedrijf\nstaalbeton\nstaalblauw\nstaalboek\nstaalborstel\nstaalbouw\nstaalbron\nstaalconcern\nstaalconstructie\nstaalconstructiebedrijf\nstaalcrisis\nstaaldivisie\nstaaldraad\nstaaldraadkabel\nstaaldraadproducent\nstaalexport\nstaalfabriek\nstaalfabrikant\nstaalfusie\nstaalgieterij\nstaalgigant\nstaalgrauw\nstaalgravure\nstaalgrijs\nstaalgroep\nstaalhard\nstaalindustrie\nstaalkaart\nstaalkabel\nstaalkleurig\nstaalkoord\nstaalmagnaat\nstaalmarkt\nstaalmeester\nstaalpil\nstaalplaat\nstaalprijs\nstaalproducent\nstaalproductie\nstaalreus\nstaalsector\nstaalskelet\nstaalsoort\nstaalstad\nstaalstempeldruk\nstaaltje\nstaalverwerkend\nstaalvisserij\nstaalwater\nstaalwerk\nstaalwol\nstaan\nstaand\nstaande\nstaander\nstaandevoets\nstaandsvoets\nstaangeld\nstaanplaats\nstaantribune\nstaar\nstaaroperatie\nstaart\nstaartbalk\nstaartbeen\nstaartdelen\nstaartdeling\nstaarten\nstaarthamer\nstaartje\nstaartklok\nstaartletter\nstaartlicht\nstaartloos\nstaartmees\nstaartmolen\nstaartpagina\nstaartparachute\nstaartpen\nstaartpruik\nstaartriem\nstaartster\nstaartsteun\nstaartstuk\nstaartuiteinde\nstaartveer\nstaartvin\nstaartvlak\nstaartwervel\nstaartwortel\nstaat\nstaathuishoudkunde\nstaathuishoudkundig\nstaathuishoudkundige\nstaatkunde\nstaatkundig\nstaatkundige\nstaatloos\nstaatloze\nstaats\nstaats-tv\nstaatsaandeel\nstaatsaangelegenheid\nstaatsalmacht\nstaatsalmanak\nstaatsamateur\nstaatsambt\nstaatsambtenaar\nstaatsapparaat\nstaatsarchief\nstaatsbalans\nstaatsbank\nstaatsbanket\nstaatsbankroet\nstaatsbeambte\nstaatsbedrijf\nstaatsbegrafenis\nstaatsbegroting\nstaatsbelang\nstaatsbeleid\nstaatsbemoeienis\nstaatsbemoeiing\nstaatsbestel\nstaatsbestuur\nstaatsbetrekking\nstaatsbeurs\nstaatsbewind\nstaatsbezit\nstaatsbezoek\nstaatsblad\nstaatsbon\nstaatsbudget\nstaatsburger\nstaatsburgerlijk\nstaatsburgerschap\nstaatscircus\nstaatscomité\nstaatscommissie\nstaatscontrole\nstaatsdienaar\nstaatsdienst\nstaatsdrukkerij\nstaatseigendom\nstaatsenergiebedrijf\nstaatsexamen\nstaatsfabriek\nstaatsfinanciën\nstaatsfonds\nstaatsgarantie\nstaatsgasbedrijf\nstaatsgeheim\nstaatsgeld\nstaatsgelden\nstaatsgevaarlijk\nstaatsgevangene\nstaatsgevangenis\nstaatsgeweld\nstaatsgezag\nstaatsgezind\nstaatsgezondheidszorg\nstaatsgodsdienst\nstaatsgreep\nstaatsgrens\nstaatsgrond\nstaatshanden\nstaatshervorming\nstaatsholding\nstaatshoofd\nstaatshuishouding\nstaatshuishoudkunde\nstaatshulp\nstaatsideologie\nstaatsie\nstaatsiebezoek\nstaatsiedegen\nstaatsiefoto\nstaatsiekleed\nstaatsiekleren\nstaatsiekoets\nstaatsieportret\nstaatsindustrie\nstaatsinkomen\nstaatsinkomsten\nstaatsinmenging\nstaatsinrichting\nstaatsinstelling\nstaatsinterventie\nstaatsinvloed\nstaatskapitalisme\nstaatskas\nstaatskerk\nstaatskosten\nstaatskunst\nstaatsleer\nstaatsleider\nstaatslening\nstaatslichaam\nstaatslieden\nstaatslot\nstaatsloterij\nstaatsluchtvaartmaatschappij\nstaatsmacht\nstaatsman\nstaatsmanschap\nstaatsmanskunst\nstaatsmedia\nstaatsmijn\nstaatsminister\nstaatsmisdaad\nstaatsmonopolie\nstaatsmonopolist\nstaatsniveau\nstaatsobligatie\nstaatsoliebedrijf\nstaatsomroep\nstaatsomwenteling\nstaatsondermijnend\nstaatsonderneming\nstaatsonderwijs\nstaatsorde\nstaatsorgaan\nstaatsorganisatie\nstaatspapier\nstaatspartij\nstaatspensioen\nstaatspersbureau\nstaatspolitie\nstaatspolitiek\nstaatspraktijkdiploma\nstaatspresident\nstaatsprijs\nstaatspropaganda\nstaatsraad\nstaatsrecht\nstaatsrechtelijk\nstaatsrechtgeleerde\nstaatsrechtsgeleerde\nstaatsrederij\nstaatsregeling\nstaatsreligie\nstaatsrente\nstaatsruif\nstaatsschool\nstaatsschuld\nstaatsschuldquote\nstaatsschuldreductie\nstaatssecretariaat\nstaatssecretaris\nstaatssocialisme\nstaatssoevereiniteit\nstaatsspoorweg\nstaatsspoorwegmaatschappij\nstaatssteun\nstaatsstructuur\nstaatsstuk\nstaatssubsidie\nstaatssysteem\nstaatstaal\nstaatstelecombedrijf\nstaatstelevisie\nstaatsterreur\nstaatsterrorisme\nstaatstoelage\nstaatstoezicht\nstaatsuitgeverij\nstaatsveiligheid\nstaatsveiligheidsdienst\nstaatsverband\nstaatsverdrag\nstaatsvijand\nstaatsvorm\nstaatsvorming\nstaatsvrouw\nstaatswaarborg\nstaatswege\nstaatswetenschap\nstaatswinkel\nstaatszaak\nstaatsziekenhuis\nstaatszorg\nstabiel\nstabilisatie\nstabilisatiebeleid\nstabilisatieprogramma\nstabilisatievlak\nstabilisator\nstabiliseren\nstabilisering\nstabiliseringsprogramma\nstabiliteit\nstabiliteitscontrole\nstabiliteitspact\nstabiliteitsprogramma\nstacaravan\nstaccato\nstaccatostijl\nstad\nstadbewoner\nstadgenoot\nstadgenote\nstadhouder\nstadhouderlijk\nstadhouderloos\nstadhouderschap\nstadhuis\nstadhuisachtig\nstadhuisbode\nstadhuiscomplex\nstadhuisklerk\nstadhuisstijl\nstadhuistaal\nstadhuiswoord\nstadie\nstadig\nstadinwaarts\nstadion\nstadionbezoek\nstadionbezoeker\nstadiondirectie\nstadionramp\nstadionspeaker\nstadionterrein\nstadionverbod\nstadium\nstads\nstadsaanleg\nstadsadvocaat\nstadsapotheek\nstadsarcheoloog\nstadsarchief\nstadsarchitect\nstadsarchitectuur\nstadsarchivaris\nstadsas\nstadsauto\nstadsbeeld\nstadsbeiaardier\nstadsbeschrijving\nstadsbestuur\nstadsbevolking\nstadsbewoner\nstadsbewoonster\nstadsbezoek\nstadsbibliotheek\nstadsbode\nstadsboerderij\nstadsbouwmeester\nstadsbrand\nstadsbrug\nstadsbus\nstadscentrum\nstadscultuur\nstadsdeel\nstadsdeelbestuur\nstadsdeelcommissie\nstadsdeelkantoor\nstadsdeelplan\nstadsdeelplannen\nstadsdeelraad\nstadsdeelvoorzitter\nstadsdeelvoorzitters\nstadsdeelwethouder\nstadsdeelwethouders\nstadsderby\nstadsdichter\nstadsdienst\nstadsdistrict\nstadsdokter\nstadsduif\nstadseconomie\nstadsetiquette\nstadsfiets\nstadsfront\nstadsgas\nstadsgebied\nstadsgedeelte\nstadsgemeente\nstadsgenoot\nstadsgenote\nstadsgeschiedenis\nstadsgevangenis\nstadsgewest\nstadsgewestelijk\nstadsgewoel\nstadsgezicht\nstadsgids\nstadsgracht\nstadsgroen\nstadsgrond\nstadsguerrilla\nstadshart\nstadsherberg\nstadsherstel\nstadsjeugd\nstadsjongen\nstadsjungle\nstadskaart\nstadskantoor\nstadskas\nstadskerk\nstadskern\nstadskind\nstadskledij\nstadskleuren\nstadskosten\nstadskrant\nstadskranten\nstadslandschap\nstadsleven\nstadslicht\nstadslucht\nstadsmens\nstadsmus\nstadsmuseum\nstadsmuur\nstadsnatuur\nstadsnet\nstadsnetten\nstadsnieuws\nstadsnomade\nstadsontvanger\nstadsontwikkeling\nstadspaleis\nstadspark\nstadspartij\nstadspas\nstadspersoneel\nstadsplan\nstadsplanning\nstadsplattegrond\nstadsplein\nstadspolitiek\nstadspoort\nstadsprins\nstadspromotie\nstadsprovincie\nstadsraad\nstadsrand\nstadsrecht\nstadsregering\nstadsregio\nstadsreiniging\nstadsreinigingsdienst\nstadsring\nstadsrit\nstadsrondrit\nstadsrumoer\nstadssanering\nstadsschool\nstadsschoon\nstadsschouwburg\nstadssecretaris\nstadstaat\nstadstheater\nstadstimmerman\nstadstimmerwerf\nstadstoezicht\nstadstram\nstadstuin\nstadsuitbreiding\nstadsuitleg\nstadsverkeer\nstadsvernieuwing\nstadsvernieuwingsfonds\nstadsvernieuwingsproject\nstadsvernieuwingswijk\nstadsvervoer\nstadsverwarming\nstadsvisie\nstadsvlucht\nstadsvoogd\nstadswaag\nstadswacht\nstadswal\nstadswandeling\nstadswapen\nstadsweg\nstadswerkman\nstadswijk\nstadswoning\nstadszegel\nstadszending\nstadsziekenhuis\nstadvoogd\nstadwaarts\nstaf\nstafafdeling\nstafbespreking\nstafbestuur\nstafbureau\nstafchef\nstafdienst\nstafdrager\nstaffel\nstaffelen\nstaffelmethode\nstaffier\nstaffunctie\nstaffunctionaris\nstafhouder\nstafkaart\nstaflid\nstafmedewerker\nstafmedewerkster\nstafmuziek\nstafofficier\nstaforganisatie\nstafoverleg\nstafpersoneel\nstafrijm\nstafvergadering\nstafylokok\nstafylokokken\nstag\nstage\nstage lopen\nstage-ervaring\nstageactiviteit\nstagebegeleider\nstagebegeleiding\nstagebeleid\nstagediven\nstagejaar\nstageld\nstageloon\nstagen\nstageopdracht\nstageperiode\nstageplaats\nstageplek\nstageprogramma\nstageproject\nstagerapport\nstagetijd\nstagevergoeding\nstageverslag\nstagflatie\nstagiair\nstagiaire\nstagnatie\nstagneren\nstagnering\nstagzeil\nstahoogte\nstak\nstakeholder\nstakelen\nstakellicht\nstaken\nstaker\nstakerig\nstakerspost\nstaket\nstaketsel\nstaketwerk\nstaking\nstakingbreker\nstakingsaanzegging\nstakingsactie\nstakingsbereidheid\nstakingsbreker\nstakingscomité\nstakingsdag\nstakingsdreiging\nstakingsfonds\nstakingsgolf\nstakingskas\nstakingsleider\nstakingsleiding\nstakingsmiddel\nstakingsoproep\nstakingsperiode\nstakingspiket\nstakingspost\nstakingsrecht\nstakingsregeling\nstakingsuitkering\nstakingsverbod\nstakingsvrijheid\nstakingswapen\nstakingswet\nstakingswinst\nstakker\nstakkerd\nstal\nstalactiet\nstalagmiet\nstalbaas\nstalbezem\nstalboter\nstaldeur\nstaldienst\nstalen\nstalenboek\nstalgeld\nstalgenoot\nstalhouder\nstalhouderij\nstalhoudster\nstaling\nstalinisme\nstalinist\nstalinistisch\nstaljongen\nstalkaars\nstalken\nstalker\nstalking\nstalknecht\nstalkruid\nstallantaarn\nstallantaren\nstalle\nstallen\nstallencomplex\nstalles\nstalletje\nstallicht\nstalling\nstallingsruimte\nstallucht\nstalmeester\nstalmest\nstalnet\nstalpaal\nstalruimte\nstalvee\nstalvoeder\nstalvoer\nstam\nstambewustzijn\nstamboek\nstamboekdier\nstamboeknummer\nstamboekpaard\nstamboekvee\nstamboom\nstamboomonderzoek\nstamboon\nstambroeder\nstamcafé\nstamcel\nstamcelonderzoek\nstamceltherapie\nstamelaar\nstamelen\nstameltaal\nstamgast\nstamgebied\nstamgenoot\nstamgenote\nstamgoed\nstamgoederen\nstamhoofd\nstamhouder\nstamhuis\nstamijn\nstamijnen\nstaminee\nstamkaart\nstamkapitaal\nstamkroeg\nstamland\nstamleider\nstamlid\nstamlokaal\nstammen\nstammenconflict\nstammenoorlog\nstammenstrijd\nstammentegenstelling\nstammentwist\nstammoeder\nstamouder\nstamouders\nstamoudste\nstamp\nstampbeton\nstampblok\nstampei\nstampen\nstamper\nstamperbloem\nstampij\nstamping\nstampmolen\nstamppot\nstampvoeten\nstampvol\nstampwerk\nstamrecht\nstamregister\nstamroos\nstamslot\nstamtaal\nstamtafel\nstamtijd\nstamvader\nstamverband\nstamverwant\nstamverwantschap\nstamvorm\nstamwoord\nstand\nstand-by\nstand-in\nstand-upcomedian\nstand-upcomedy\nstandaard\nstandaardactie\nstandaardafmeting\nstandaardafwijking\nstandaardantwoord\nstandaardartikel\nstandaardbedrag\nstandaardbehandeling\nstandaardbericht\nstandaardbestek\nstandaardbrief\nstandaardconstructie\nstandaardcontract\nstandaarddefinitie\nstandaarddeviatie\nstandaarddrager\nstandaardeenheid\nstandaardeis\nstandaardeisen\nstandaardformaat\nstandaardformule\nstandaardformulering\nstandaardformulier\nstandaardfout\nstandaardfunctie\nstandaardgebed\nstandaardgedrag\nstandaardgegeven\nstandaardgehalte\nstandaardgeval\nstandaardgevallen\nstandaardgezin\nstandaardgrens\nstandaardgrenzen\nstandaardgrootte\nstandaardinstelling\nstandaardisatie\nstandaardisatieorgaan\nstandaardiseren\nstandaardisering\nstandaardkaart\nstandaardlettertype\nstandaardlijst\nstandaardlijsten\nstandaardloon\nstandaardmaat\nstandaardmeter\nstandaardmethode\nstandaardmodel\nstandaardmolen\nstandaardmunt\nstandaardnummering\nstandaardomschrijving\nstandaardoperatie\nstandaardoplossing\nstandaardovereenkomst\nstandaardoverzicht\nstandaardpakket\nstandaardpakketpolis\nstandaardpolis\nstandaardprijs\nstandaardprinter\nstandaardprocedure\nstandaardproduct\nstandaardprogramma\nstandaardproject\nstandaardreactie\nstandaardregeling\nstandaardrepertoire\nstandaardsjabloon\nstandaardsleutel\nstandaardsoftware\nstandaardsuggestie\nstandaardtaal\nstandaardtaalinstelling\nstandaardtabel\nstandaardtarief\nstandaardtekst\nstandaardtoets\nstandaardtraining\nstandaardtype\nstandaarduitdrukking\nstandaarduitnodiging\nstandaarduitrusting\nstandaarduitvoering\nstandaardvergoeding\nstandaardversie\nstandaardvoorbeeld\nstandaardvoorschrift\nstandaardvorm\nstandaardvormgeving\nstandaardvraag\nstandaardvragenlijst\nstandaardwaarde\nstandaardwerk\nstandaardzetting\nstandaardzin\nstandalone\nstandbeeld\nstandbeen\nstandelkruid\nstandengeest\nstandenmaatschappij\nstandenonderwijs\nstandenvertegenwoordiging\nstander\nstanderd\nstanderdmolen\nstandgeld\nstandhoek\nstandhouden\nstandhouder\nstanding\nstandingvol\nstandje\nstandleiding\nstandlicht\nstandolie\nstandpenning\nstandpijp\nstandplaats\nstandpunt\nstandpuntbepaling\nstandrecht\nstandrechtelijk\nstandruimte\nstandsbesef\nstandsorganisatie\nstandsverschil\nstandvastig\nstandvastigheid\nstandvis\nstandvizier\nstandvogel\nstandwerker\nstandwild\nstang\nstangen\nstangenstelsel\nstaniol\nstank\nstankafsluiter\nstankbeleid\nstankcirkel\nstankgolf\nstankhinder\nstankoverlast\nstankprobleem\nstankwerend\nstanleymes\nstanniool\nstansen\nstante pede\nstanza\nstap\nstap voor stap\nstapavond\nstapel\nstapelbaar\nstapelbaarheid\nstapelbed\nstapelelement\nstapelen\nstapelgek\nstapelgoed\nstapelgoederen\nstapelhout\nstapelhuis\nstapeling\nstapelloop\nstapelmarkt\nstapelplaats\nstapelrecht\nstapeltje\nstapelverliefd\nstapelvorm\nstapelwerk\nstapelwolk\nstapelzot\nstapgrootte\nstaplaats\nstappen\nstappenlijst\nstappenmethode\nstappenplan\nstapper\nstapsgewijs\nstapsteen\nstapvoets\nstar\nstaren\nstarheid\nstarlings\nstarnakel\nstarogen\nstarre\nstarren\nstart\nstartaccu\nstartbaan\nstartbaanovereenkomst\nstartbatterij\nstartbedrag\nstartbewijs\nstartblok\nstartblokkering\nstartbox\nstartcode\nstartdag\nstartdatum\nstartdiskette\nstarten\nstartensklaar\nstarter\nstarterkast\nstartersmarkt\nstarterspakket\nstartfase\nstartgeld\nstarthok\nstartinvestering\nstartjaar\nstartkapitaal\nstartklaar\nstartknop\nstartkosten\nstartkwalificatie\nstartlijn\nstartloon\nstartmotor\nstartniveau\nstartnota\nstartnotitie\nstartnummer\nstartonderbreker\nstartpagina\nstartpakket\nstartperiode\nstartpistool\nstartplaats\nstartplek\nstartpositie\nstartpremie\nstartprijs\nstartprocedure\nstartpunt\nstartrecht\nstartrij\nstartsalaris\nstartschot\nstartsein\nstartsignaal\nstartsituatie\nstartstipendium\nstartsubsidie\nstarttarief\nstarttijd\nstarttoren\nstartveld\nstartverbod\nstartwaarde\nstartzwemmer\nstaruimte\nstatarisch\nstate\nstate of the art\nstatelijk\nstatelijkheid\nstateloos\nstateloosheid\nstatelozen\nstatement\nstatenbijbel\nstatenbond\nstatengemeenschap\nstater\nstatica\nstatie\nstatief\nstatiefcamera\nstatiegeld\nstatiegeldactie\nstatiegeldregeling\nstatiegeldsysteem\nstatieus\nstatieven\nstatig\nstatigheid\nstatiglijk\nstation\nstationair\nstationcar\nstationeerverbod\nstationeren\nstationering\nstationnement\nstationsboekhandel\nstationsbuurt\nstationschef\nstationseiland\nstationsemplacement\nstationsgebied\nstationsgebouw\nstationshal\nstationsherberg\nstationskiosk\nstationsklok\nstationsletter\nstationsnaam\nstationsomgeving\nstationsplein\nstationsrestauratie\nstationsroman\nstationsstraat\nstationstrappen\nstationstype\nstationsweg\nstationswerk\nstationwagen\nstationwagon\nstatisch\nstatisticus\nstatistiek\nstatistiekbureau\nstatistiekrecht\nstatistisch\nstatten\nstatuesk\nstatus\nstatusbalk\nstatusberichten\nstatuscode\nstatusinformatie\nstatusregel\nstatussen\nstatussymbool\nstatusverhogend\nstatusverhoging\nstatusverlies\nstatuswet\nstatutair\nstatuten\nstatutenaanpassing\nstatutenherziening\nstatutenwijziging\nstatuur\nstatuut\nstaven\nstaving\nstayer\nsteak\nstealth\nstearine\nstearinekaars\nstearinezuur\nstedehouder\nstedelijk\nstedelijkheid\nstedeling\nstedelinge\nsteden\nstedenband\nstedenbeleid\nstedenbouw\nstedenbouwer\nstedenbouwkunde\nstedenbouwkundig\nstedenbouwkundige\nstedendriehoek\nstedenkroon\nstedenmaagd\nstedenring\nstedenschoon\nstedentrip\nstedenverbond\nstedewaarts\nstee\nsteeds\nsteef\nsteeg\nsteek\nsteekbeitel\nsteekblad\nsteekboog\nsteekboor\nsteekcontact\nsteekgeld\nsteekhevel\nsteekhoudend\nsteekkaart\nsteekkar\nsteekmes\nsteekmug\nsteekpalm\nsteekpan\nsteekpartij\nsteekpass\nsteekpasser\nsteekpenning\nsteekpenningen\nsteekpomp\nsteekproef\nsteekproefgewijs\nsteekproefgrootte\nsteekproefomvang\nsteekproefonderzoek\nsteekproefsgewijs\nsteekproefsgewijze\nsteekproeftheorie\nsteeksla\nsteeksleutel\nsteekspel\nsteektrap\nsteekturf\nsteekvlam\nsteekvlieg\nsteekvogel\nsteekwagen\nsteekwapen\nsteekwond\nsteekwonde\nsteekwoord\nsteekzaag\nsteekzak\nsteel\nsteelband\nsteelgat\nsteelgitaar\nsteelguitar\nsteelpan\nsteels\nsteelsgewijs\nsteelsgewijze\nsteelswijze\nsteelzucht\nsteen\nsteenaarde\nsteenachtig\nsteenarend\nsteenbakker\nsteenbakkerij\nsteenbeitel\nsteenberg\nsteenbeuk\nsteenbikker\nsteenblok\nsteenbok\nsteenboor\nsteenbreek\nsteendood\nsteendruk\nsteendrukken\nsteendrukker\nsteendrukkerij\nsteendrukpers\nsteenduif\nsteenduur\nsteeneik\nsteenezel\nsteenfabriek\nsteenfragmenten\nsteengaas\nsteengang\nsteengeit\nsteenglooiing\nsteengoed\nsteengrill\nsteengrillen\nsteengroef\nsteengroeve\nsteengruis\nsteenhard\nsteenhommel\nsteenhoop\nsteenhouwen\nsteenhouwer\nsteenhouwerij\nsteenkalk\nsteenkapper\nsteenkapperij\nsteenkarper\nsteenklaver\nsteenklomp\nsteenklopper\nsteenkolen\nsteenkolenbekken\nsteenkolenengels\nsteenkolengas\nsteenkolengruis\nsteenkolenlaag\nsteenkolenmijn\nsteenkolenproductie\nsteenkolenteer\nsteenkolenverbruik\nsteenkool\nsteenkoolbekken\nsteenkoolgas\nsteenkoolgruis\nsteenkoollaag\nsteenkoolmijn\nsteenkoolproductie\nsteenkoolteer\nsteenkoolverbruik\nsteenkoolwinning\nsteenkoud\nsteenkring\nsteenkruid\nsteenlaag\nsteenlawine\nsteenlegging\nsteenloper\nsteenmarter\nsteenmassa\nsteenoven\nsteenplaats\nsteenpuin\nsteenpuist\nsteenrijk\nsteenrood\nsteenrots\nsteenschaap\nsteenslag\nsteenslagweg\nsteenslijper\nsteensnijder\nsteensoort\nsteenstort\nsteentang\nsteentijd\nsteentijdperk\nsteentje\nsteentjes\nsteenuil\nsteenvalk\nsteenvorming\nsteenvrucht\nsteenwagen\nsteenweg\nsteenwoestijn\nsteenwol\nsteenwoldeken\nsteenworp\nsteenzaag\nsteenzager\nsteenzagerij\nsteenzetter\nsteenzout\nsteenzweer\nsteeplechase\nsteeplechaser\nsteepler\nsteevast\nstefanotis\nstegel\nstegen\nsteggelen\nstegosaurus\nstehgeiger\nsteiger\nsteigerbouwer\nsteigerdelen\nsteigeren\nsteigergeld\nsteigermateriaal\nsteigerpaal\nsteigerplank\nsteigerschuit\nsteigertje\nsteigerwerk\nsteil\nsteilheid\nsteiloor\nsteilorig\nsteilschrift\nsteilte\nstek\nstekeblind\nstekel\nstekelachtig\nstekelachtigheid\nstekelbaars\nstekelbes\nstekelbrem\nstekelhaar\nstekelhuidig\nstekelhuidigen\nstekelig\nstekeligheid\nstekelrog\nstekeltje\nstekeltjes\nstekeltjeshaar\nstekelvarken\nsteken\nsteker\nsteking\nstekken\nstekker\nstekkerdoos\nstekkerverbinding\nstekkie\nstekske\nstel\nstelanker\nstelbaar\nstelbout\nstele\nstelen\nsteler\nstelfouten\nstelhout\nstelijzer\nstelkunde\nstellage\nstellair\nstellen\nsteller\nstelletje\nstellig\nstelligheid\nstelling\nstellingenoorlog\nstellingenspel\nstellingmolen\nstellingname\nstellingoorlog\nsteloefening\nstelopdracht\nstelp\nstelpen\nstelping\nstelplaats\nstelplicht\nstelpnet\nstelpost\nstelregel\nstelschroef\nstelsel\nstelselherziening\nstelselloos\nstelselloosheid\nstelselmatig\nstelselmatigheid\nstelselwijziging\nstelt\nsteltenloper\nsteltlopen\nsteltloper\nsteltlopers\nsteltpoot\nsteltvoet\nsteltwortel\nstem\nstemadvies\nstemband\nstembeheersing\nstembereik\nstembevoegd\nstembiljet\nstembreuk\nstembrief\nstembriefje\nstembuiging\nstembureau\nstembus\nstembusakkoord\nstembusfraude\nstembusgang\nstembusnederlaag\nstembusoverwinning\nstembusronde\nstembusslag\nstembusstrijd\nstembusuitslag\nstembuszege\nstemcijfer\nstemcomputer\nstemcontact\nstemdistrict\nstemfluitje\nstemformulier\nstemgebruik\nstemgedrag\nstemgeluid\nstemgember\nstemgerechtigd\nstemgerechtigde\nstemgewicht\nstemhamer\nstemhebbend\nstemherkenning\nstemhokje\nstemkaart\nstemklank\nstemkunstenaar\nstemlijst\nstemlokaal\nstemloos\nstemma\nstemmachine\nstemmen\nstemmenaantal\nstemmenblok\nstemmencijfer\nstemmengegons\nstemmengewicht\nstemmenhandel\nstemmenkoperij\nstemmenmachine\nstemmenoverschot\nstemmenpercentage\nstemmental\nstemmentotaal\nstemmentrekker\nstemmenverdeling\nstemmenverhouding\nstemmenverlies\nstemmenweefsel\nstemmenweging\nstemmenwinst\nstemmer\nstemmetje\nstemmig\nstemmigheid\nstemming\nstemmingmakerij\nstemmingsbeeld\nstemmingspoëzie\nstemmingsproblematiek\nstemmingsronde\nstemmingsvol\nstemmingswisseling\nstemoefening\nstemomvang\nstemonthouding\nstemopnemer\nstemopneming\nstemorgaan\nstemorganen\nstempel\nstempelaar\nstempelautomaat\nstempelband\nstempelbeeld\nstempelcontrole\nstempeldoos\nstempelen\nstempelgeld\nstempeling\nstempelinkt\nstempelkaart\nstempelklok\nstempelkussen\nstempellokaal\nstempelmachine\nstempelmerk\nstempelpers\nstempelpost\nstempelsnijder\nstempelwerken\nstemplicht\nstemprocedure\nstemrecht\nstemrechtbeperking\nstemregister\nstemronde\nstemspleet\nstemsysteem\nstemtechniek\nstemtest\nstemvee\nstemverdeling\nstemverheffing\nstemverhouding\nstemverklaring\nstemvolume\nstemvork\nstemvorming\nstemwijze\nstemwisseling\nsten\nstencil\nstencilen\nstencilinkt\nstencilmachine\nstenen\nstenen gooien\nstenengooier\nsteng\nstengel\nstengelblad\nstengelknol\nstengelknoop\nstengels\nstengun\nstenig\nstenigen\nsteniging\nstennis\nsteno\nstenograaf\nstenograferen\nstenografie\nstenografisch\nstenogram\nstenotypen\nstenotypie\nstenotypist\nstenotypiste\nstentor\nstentorstem\nstep\nstep-in\nstepdans\nsteppe\nsteppeachtig\nsteppebewoner\nsteppegordel\nsteppehoen\nsteppehond\nsteppemeer\nsteppen\nsteppingstonetheorie\nsteps\nster\nsteraandeel\nsteraanvaller\nsteracteur\nsteradiaal\nsteradvocaat\nsterallures\nsteranijs\nsterappel\nsterarchitect\nsterauteur\nsterbladig\nstereo\nstereo-installatie\nstereo-opname\nstereo-uitzending\nstereoapparatuur\nstereocamera\nstereofilm\nstereofonie\nstereofonisch\nstereofoto\nstereofotografie\nstereografisch\nstereometrie\nstereometrisch\nstereomeubel\nstereoplaat\nstereoscoop\nstereoscopie\nstereoscopisch\nstereotiep\nstereotoren\nstereotype\nstereotyperen\nstereotypering\nstereotypie\nsterfbed\nsterfdag\nsterfdatum\nsterfelijk\nsterfelijkheid\nsterfgeval\nsterfhuis\nsterfhuisconstructie\nsterfjaar\nsterfkamer\nsterflat\nsterflijk\nsterflijkheid\nsterflijst\nsterfproces\nsterfput\nsterfscène\nsterfte\nsterftecijfer\nsterftekans\nsterftepercentage\nsterfterisico\nsterftetafel\nsterftijd\nsterfuur\nsteriel\nsterilisatie\nsterilisator\nsteriliseerketel\nsteriliseerpot\nsteriliseertoestel\nsteriliseren\nsteriliteit\nsterk\nsterke\nsterkedrank\nsterken\nsterkerij\nsterkers\nsterkhouder\nsterking\nsterkstroom\nsterkte\nsterkte-zwakteanalyse\nsterkteleer\nsterkteverdeling\nsterkwater\nsterlicht\nstern\nsteroïde\nsteroïden\nsterproduct\nsterpunt\nsterrenbeeld\nsterrenbloem\nsterrenbos\nsterrencast\nsterrendag\nsterrendak\nsterrendom\nsterrenensemble\nsterrenet\nsterrenformatie\nsterrengroep\nsterrenhemel\nsterrenhoop\nsterrenhotel\nsterrenjaar\nsterrenkaart\nsterrenkers\nsterrenkijker\nsterrenkijkerij\nsterrenkok\nsterrenkroos\nsterrenkruid\nsterrenkunde\nsterrenkundig\nsterrenkundige\nsterrenlicht\nsterrenmix\nsterrenmuur\nsterrennet\nsterrenparade\nsterrenregen\nsterrenrestaurant\nsterrenschot\nsterrenstatus\nsterrenstelsel\nsterrenstof\nsterrensysteem\nsterrenteam\nsterrentijd\nsterrenwacht\nsterrenwichelaar\nsterrenwichelarij\nsterretje\nsterrit\nsterrol\nsterspeler\nsterstatus\nsterveling\nstervelinge\nsterven\nstervende\nstervensbegeleider\nstervensbegeleiding\nstervensfase\nstervensgevaar\nstervenshulp\nstervenskoud\nstervensnood\nstervensproces\nstervensuur\nstervenswens\nsterverslaggever\nstervlucht\nstervoetballer\nstervorm\nstervormig\nstethoscoop\nsteun\nsteunaankoop\nsteunaanvraag\nsteunactie\nsteunbalk\nsteunbedrag\nsteunbeer\nsteunbeleid\nsteunbetuiging\nsteunbewijs\nsteunboog\nsteunbrieven\nsteunder\nsteunen\nsteunfonds\nsteunfraude\nsteunfunctie\nsteungeld\nsteungrens\nsteungroep\nsteunkleur\nsteunkous\nsteunlijn\nsteunlijst\nsteunmaatregel\nsteunmaatregelen\nsteunmuur\nsteunniveau\nsteunoperatie\nsteunpaal\nsteunpakket\nsteunpilaar\nsteunprogramma\nsteunpunt\nsteunregeling\nsteunschoen\nsteunsel\nsteunstuk\nsteuntje\nsteuntrekker\nsteunverklaring\nsteunverlener\nsteunverlening\nsteunweefsel\nsteunzender\nsteunzool\nsteur\nsteuren\nsteurgarnaal\nsteurharing\nsteurkrab\nstevel\nsteven\nstevenen\nstevig\nstevigheid\nsteward\nstewardess\nstewardessen\nsticht\nstichtelijk\nstichtelijkheid\nstichten\nstichter\nstichteres\nstichting\nstichtingsakkoord\nstichtingsakte\nstichtingsbestuur\nstichtingskapitaal\nstichtingskosten\nstichtingslid\nstichtingsnorm\nstichtingsoorkonde\nstichtingsregister\nstichtingsvoorzitter\nstichtingsvorm\nstichtster\nstick\nsticker\nstickeractie\nstickie\nstiefbroeder\nstiefbroer\nstiefdochter\nstiefelen\nstiefgezin\nstiefkind\nstiefmoeder\nstiefmoederlijk\nstiefouder\nstiefouderadoptie\nstiefouders\nstiefvader\nstiefzoon\nstiefzuster\nstiekem\nstiekemerd\nstiel\nstielkennis\nstielman\nstielvaardig\nstier\nstieren\nstierenfokker\nstierengevecht\nstierenhuid\nstierenkeuring\nstierenkop\nstierenmester\nstierennek\nstierenoffer\nstierenvechten\nstierenvechter\nstierenvlees\nstierf\nstierhouder\nstierkalf\nstierlijk\nstierven\nstiet\nstift\nstiftbal\nstiften\nstiftsdame\nstifttand\nstigma\nstigmatisatie\nstigmatiseren\nstigmatisering\nstijf\nstijfbevroren\nstijfgeklopt\nstijfheid\nstijfhoofd\nstijfhoofdig\nstijfhoofdigheid\nstijfjes\nstijfkop\nstijfkoppig\nstijfkoppigheid\nstijfsel\nstijfselen\nstijfselkwast\nstijfselpap\nstijfselpot\nstijfselverband\nstijfster\nstijfte\nstijfzinnig\nstijgbeugel\nstijgen\nstijging\nstijgingspercentage\nstijgingstempo\nstijgsnelheid\nstijgvermogen\nstijl\nstijlanalyse\nstijlbegrip\nstijlbijbel\nstijlbloempje\nstijlboek\nstijlbreuk\nstijlconcept\nstijldans\nstijldansen\nstijlelement\nstijlen\nstijlfiguur\nstijlfout\nstijlgevoel\nstijlkamer\nstijlkenmerk\nstijlleer\nstijlloos\nstijlmiddel\nstijloefening\nstijlperiode\nstijltuin\nstijlvast\nstijlverschil\nstijlvol\nstijlvolle\nstijlvorm\nstijve\nstijven\nstijvigheid\nstijving\nstik\nstikdonker\nstikgaren\nstikheet\nstikjaloers\nstikken\nstikker\nstiklucht\nstiksel\nstiksteek\nstikster\nstikstof\nstikstofbinding\nstikstofdioxide\nstikstofgas\nstikstofgehalte\nstikstofoxide\nstikstofverbinding\nstikvol\nstikwerk\nstikzij\nstikzijde\nstil\nstilaan\nstileren\nstilering\nstilet\nstiletto\nstilheid\nstilhouden\nstilist\nstiliste\nstilistiek\nstilistisch\nstille\nstilleggen\nstillegging\nstillen\nstilletje\nstilletjes\nstilleven\nstillezen\nstilliggen\nstilligheid\nstilling\nstilstaan\nstilstaand\nstilstand\nstilte\nstiltecentrum\nstiltegebied\nstiltegordel\nstilton\nstilvallen\nstilzetten\nstilzitten\nstilzwijgen\nstilzwijgend\nstilzwijgendheid\nstimulans\nstimulantia\nstimulatie\nstimulator\nstimuleren\nstimulering\nstimuleringsbeleid\nstimuleringsfonds\nstimuleringsgebied\nstimuleringsmaatregel\nstimuleringspakket\nstimuleringsplan\nstimuleringspremie\nstimuleringsprijs\nstimuleringsprogramma\nstimuleringsproject\nstimuleringsregeling\nstimuleringssubsidie\nstimuli\nstimulus\nstinkbok\nstinkbom\nstinkboom\nstinkdas\nstinkdier\nstinken\nstinkend\nstinker\nstinkerd\nstinkhout\nstinkkaas\nstinkpoel\nstinksloot\nstinkstok\nstinkzwam\nstins\nstip\nstipendiaat\nstipendium\nstippel\nstippelen\nstippeling\nstippellijn\nstippen\nstipt\nstiptelijk\nstiptheid\nstiptheidsactie\nstipulatie\nstipuleren\nstirlingmotor\nstobbe\nstochast\nstochastiek\nstochastisch\nstock\nstockboek\nstockcar\nstockcarrace\nstockdividend\nstockeren\nstockholmsyndroom\nstocks\nstoefen\nstoeien\nstoeierij\nstoeipartij\nstoeipoes\nstoel\nstoelbekleding\nstoeldraaier\nstoelen\nstoelendans\nstoelenfabrikant\nstoelenmaker\nstoelenmatten\nstoelenmatter\nstoelenproject\nstoelenzetster\nstoelgang\nstoelgeld\nstoelkussen\nstoelleuning\nstoelmat\nstoelnummer\nstoelpoot\nstoeltjesgeld\nstoeltjesklok\nstoeltjeslift\nstoelvast\nstoelverwarming\nstoelzitting\nstoemelings\nstoep\nstoepa\nstoepband\nstoepen\nstoepje\nstoeppad\nstoepparkeren\nstoeprand\nstoepranden\nstoepsteen\nstoeptegel\nstoer\nstoerdoenerij\nstoerheid\nstoet\nstoeterij\nstoethaspel\nstoethaspelig\nstoetsgewijs\nstof\nstofafzuiging\nstofbestrijding\nstofbril\nstofdeeltje\nstofdicht\nstofdoek\nstofdoekenmandje\nstofexplosie\nstoffage\nstoffeerder\nstoffeerderij\nstoffeerster\nstoffel\nstoffelijk\nstoffelijkheid\nstoffen\nstoffenmode\nstoffenwinkel\nstoffer\nstofferen\nstofferig\nstofferigheid\nstoffering\nstoffig\nstoffigheid\nstofgehalte\nstofgoud\nstofhagel\nstofhoes\nstofjas\nstofje\nstofkam\nstofkap\nstoflong\nstofloos\nstofmantel\nstofmasker\nstofnaam\nstofnest\nstofomslag\nstofregen\nstofschijf\nstofstorm\nstofthee\nstofuitdrukking\nstofvorming\nstofvrij\nstofwisseling\nstofwisselingsproces\nstofwisselingsstoornis\nstofwisselingsziekte\nstofwolk\nstofzuigen\nstofzuiger\nstofzuigeren\nstok\nstokanker\nstokboon\nstokbrood\nstokdood\nstokdoof\nstokebrand\nstokebranden\nstoken\nstoker\nstokerij\nstokkaart\nstokken\nstokkerig\nstokmaat\nstokoud\nstokpaard\nstokpaardje\nstokpasser\nstokregel\nstokroos\nstokslag\nstokstaartje\nstokstijf\nstokvis\nstokvoering\nstol\nstola\nstollen\nstolling\nstollingsfactor\nstollingsgesteente\nstollingsproces\nstolp\nstolpboerderij\nstolpdeur\nstolpen\nstolpfles\nstolpkraag\nstolpraam\nstolsel\nstom\nstoma\nstomatologie\nstomdronken\nstomen\nstomend\nstomer\nstomerij\nstomheid\nstomkop\nstomme\nstommeknecht\nstommel\nstommelen\nstommeling\nstommerd\nstommerik\nstommigheid\nstommiteit\nstomp\nstompen\nstompheid\nstomphoekig\nstompneus\nstompstaart\nstompvoet\nstompzinnig\nstompzinnigheid\nstomtoevallig\nstomverbaasd\nstomvervelend\nstomverwonderd\nstomweg\nstond\nstonde\nstoned\nstonerrock\nstonewashed\nstonk\nstoof\nstoofappel\nstoofbuis\nstoofhaak\nstoofhout\nstooflap\nstooflapje\nstooflapjes\nstoofpan\nstoofpeer\nstoofpot\nstoofschotel\nstoofsel\nstoofsmid\nstoofvlees\nstookgas\nstookgat\nstookgedrag\nstookgelegenheid\nstookhok\nstookhout\nstookinrichting\nstookkanaal\nstookkelder\nstookkosten\nstookolie\nstookplaat\nstookplaats\nstookseizoen\nstooksel\nstookverbod\nstool\nstoom\nstoomafvoer\nstoombad\nstoombaggermolen\nstoombarkas\nstoomboot\nstoombootdienst\nstoombootmaatschappij\nstoombrandspuit\nstoomcilinder\nstoomcursus\nstoomfluit\nstoomgemaal\nstoomhamer\nstoomhoutzagerij\nstoomjacht\nstoomketel\nstoomklep\nstoomkraan\nstoomkracht\nstoomlier\nstoomlocomotief\nstoommachine\nstoommolen\nstoompan\nstoompers\nstoompijp\nstoompomp\nstoomschip\nstoomschuif\nstoomsleper\nstoomstrijkijzer\nstoomtractie\nstoomtram\nstoomtramverbinding\nstoomtrawler\nstoomtrein\nstoomturbine\nstoomvaart\nstoomvaartlijn\nstoomvaartmaatschappij\nstoomvaartuig\nstoomwals\nstoomwolk\nstoomzaag\nstoop\nstoorder\nstoorloos\nstoornis\nstoorniveau\nstoorzender\nstoot\nstootbalk\nstootband\nstootblok\nstootbord\nstootgaren\nstoothout\nstootkant\nstootkar\nstootkracht\nstootkussen\nstootplaat\nstootrand\nstoots\nstoottand\nstoottroepen\nstootvast\nstootvoeg\nstootvogel\nstootwagen\nstootwapen\nstootzak\nstop\nstopbit\nstopbits\nstopbord\nstopbus\nstopcontact\nstopfles\nstopgaren\nstophorloge\nstophout\nstopknop\nstopkogel\nstopkraan\nstoplamp\nstoplap\nstoplicht\nstoplijn\nstopmes\nstopmiddel\nstopnaald\nstoporder\nstoppage\nstoppage-inrichting\nstoppel\nstoppelakker\nstoppelbaard\nstoppelbloot\nstoppelen\nstoppelgewas\nstoppelhaar\nstoppelig\nstoppelland\nstoppelploeg\nstoppels\nstoppelveld\nstoppen\nstopper\nstopperspil\nstopping\nstopplaats\nstoppoging\nstopsein\nstopsel\nstopsignaal\nstopster\nstopstreep\nstopstuk\nstopteken\nstoptrein\nstopverbod\nstopverf\nstopwatch\nstopwerk\nstopwol\nstopwoord\nstopzetten\nstopzetting\nstorax\nstore\nstoren\nstorend\nstoring\nstoringsanalyse\nstoringsbron\nstoringsdienst\nstoringsduur\nstoringsfactor\nstoringsfilter\nstoringsgevoelig\nstoringsgevoeligheid\nstoringsmelding\nstoringsmonteur\nstoringsmonteurs\nstoringsopheffing\nstoringssituatie\nstoringstijd\nstoringsvrij\nstoringvrij\nstorm\nstormaanval\nstormachtig\nstormbaan\nstormbal\nstormband\nstormbui\nstormcentrum\nstormdak\nstormdepressie\nstormdeur\nstormen\nstormenderhand\nstormfok\nstormgebied\nstormgeweld\nstormhoed\nstormig\nstormklok\nstormkracht\nstormladder\nstormlantaarn\nstormlijn\nstormloop\nstormlopen\nstormmeeuw\nstormnacht\nstormpas\nstormram\nstormramp\nstormschade\nstormsein\nstormtij\nstormtroepen\nstormvast\nstormvlaag\nstormvloed\nstormvloedkering\nstormvogel\nstormwaarschuwing\nstormwaarschuwingsdienst\nstormweder\nstormweer\nstormwind\nstormzeil\nstorneren\nstorno\nstort\nstortbad\nstortbak\nstortbeek\nstortbeton\nstortbier\nstortbui\nstortcapaciteit\nstorten\nstortgas\nstortgoed\nstortgoederen\nstorting\nstortingsbewijs\nstortingsbulletin\nstortingsdatum\nstortingsformulier\nstortingskaart\nstortkar\nstortkoker\nstortmast\nstortmolen\nstortplaats\nstortregen\nstortregenen\nstortsteen\nstortverbod\nstortvloed\nstortwerk\nstortzee\nstoryboard\nstoten\nstotend\nstoter\nstoterig\nstotig\nstotteraar\nstotteraarster\nstotteren\nstout\nstouterd\nstouterik\nstoutheid\nstoutigheid\nstoutmoedig\nstoutmoedigheid\nstoutweg\nstouwage\nstouwen\nstouwer\nstoven\nstovenzetster\nstoverij\nstoïcijn\nstoïcijns\nstoïcijnse\nstoïcisme\nstoïsch\nstraal\nstraalaandrijving\nstraalbezopen\nstraalbreking\nstraalbuis\nstraalbuismotor\nstraaldier\nstraalgewelf\nstraaljager\nstraaljagerpiloot\nstraalkachel\nstraalkapel\nstraallamp\nstraalmotor\nstraalpijp\nstraalpunt\nstraalsgewijs\nstraalsgewijze\nstraalstroom\nstraalturbine\nstraalverbinding\nstraalvliegtuig\nstraalvormig\nstraalzender\nstraat\nstraatactie\nstraatadvocaat\nstraatarm\nstraatartiest\nstraatbeeld\nstraatbende\nstraatbengel\nstraatblok\nstraatcollecte\nstraatcriminaliteit\nstraatcultuur\nstraatdeun\nstraatdienst\nstraatfeest\nstraatfestival\nstraatfotograaf\nstraatgeld\nstraatgeluid\nstraatgevecht\nstraatgeweld\nstraatgoot\nstraatgras\nstraathandel\nstraathandelaar\nstraathoek\nstraathoekwerk\nstraathoekwerker\nstraathond\nstraatinterview\nstraatjesvolk\nstraatjeugd\nstraatjongen\nstraatkabaal\nstraatkant\nstraatkat\nstraatkei\nstraatkind\nstraatklinker\nstraatkolk\nstraatkreet\nstraatlantaarn\nstraatlantaren\nstraatlengte\nstraatleven\nstraatlied\nstraatloopster\nstraatloper\nstraatmadelief\nstraatmaker\nstraatmeid\nstraatmest\nstraatmeubilair\nstraatmuzikant\nstraatnaam\nstraatnaambord\nstraatnaamgeving\nstraatnamencommissie\nstraatnieuws\nstraatnimf\nstraatniveau\nstraatorgel\nstraatorkest\nstraatprediker\nstraatprijs\nstraatprostituee\nstraatprostitutie\nstraatprotest\nstraatrace\nstraatracen\nstraatracer\nstraatroof\nstraatrover\nstraatrumoer\nstraatschender\nstraatschenderij\nstraatschoffie\nstraatschuimers\nstraatslijpen\nstraatslijper\nstraatstamper\nstraatsteen\nstraatsurveillance\nstraattaal\nstraattegel\nstraatterreur\nstraattheater\nstraattheaterfestival\nstraattoneel\nstraattype\nstraatvechter\nstraatvechtersmentaliteit\nstraatvegen\nstraatveger\nstraatventer\nstraatverbod\nstraatverkoop\nstraatverkoper\nstraatverlichting\nstraatversperring\nstraatvoetbal\nstraatvuil\nstraatwaarde\nstraatwand\nstraatweg\nstraatwerk\nstraatwerker\nstraatzanger\nstraatzijde\nstraddle\nstraf\nstrafactie\nstrafbaar\nstrafbaarheid\nstrafbaarstelling\nstrafbal\nstrafballenserie\nstrafbank\nstrafbankje\nstrafbeding\nstrafbeleid\nstrafbepaling\nstrafblad\nstrafcel\nstrafcompagnie\nstrafcorner\nstrafcornerkanon\nstrafcornerspecialist\nstrafdossier\nstrafeis\nstrafexercitie\nstrafexpeditie\nstraffe\nstraffeloos\nstraffeloosheid\nstraffen\nstraffer\nstrafgericht\nstrafgevangenis\nstrafgriffie\nstrafheffing\nstrafheid\nstrafhof\nstrafinrichting\nstrafkamer\nstrafkamp\nstrafklacht\nstrafklimaat\nstrafkolonie\nstrafkorting\nstraflijst\nstrafmaat\nstrafmaatregel\nstrafmaximum\nstrafmiddel\nstrafoefening\nstrafonderbreking\nstrafonderzoek\nstrafontslag\nstrafoplegging\nstrafplaats\nstrafpleiter\nstrafport\nstrafprocedure\nstrafproces\nstrafprocesrecht\nstrafpunt\nstrafpuntensysteem\nstrafrecht\nstrafrechtadvocaat\nstrafrechtbank\nstrafrechtdeskundige\nstrafrechtelijk\nstrafrechter\nstrafrechtgeleerde\nstrafrechtpleging\nstrafrechtsketen\nstrafrechtspecialist\nstrafrechtspleging\nstrafrechtspraak\nstrafrechtsysteem\nstrafregel\nstrafregels\nstrafregister\nstrafrente\nstrafschop\nstrafschopgebied\nstrafschoppenreeks\nstrafschoppenserie\nstrafschopstip\nstrafseconde\nstrafsector\nstrafstelsel\nstrafstudie\nstrafsysteem\nstraftijd\nstraftoemeting\nstraftoemetingsbeleid\nstraftraining\nstrafuitsluitingsgrond\nstrafuitvoering\nstrafverhoging\nstrafverlichting\nstrafvermindering\nstrafverordening\nstrafvervolging\nstrafverzwaring\nstrafvonnis\nstrafvordering\nstrafvorderlijk\nstrafwaardig\nstrafwaardigheid\nstrafwerk\nstrafwet\nstrafwetboek\nstrafwetgeving\nstrafworp\nstrafzaak\nstrafzitting\nstraight\nstrak\nstrakblauw\nstrakgespannen\nstrakheid\nstrakjes\nstraks\nstraktrekken\nstralen\nstralenbundel\nstralend\nstralenkrans\nstralenkroon\nstraling\nstralingsbelasting\nstralingsbescherming\nstralingsbron\nstralingsdeskundige\nstralingsdosis\nstralingsgevaar\nstralingsmeter\nstralingsniveau\nstralingsschade\nstralingsveld\nstralingswarmte\nstralingsziekte\nstram\nstramheid\nstramien\nstrammig\nstrammigheid\nstrand\nstrandbad\nstrandbal\nstrandbewoner\nstrandboulevard\nstranddag\nstranddief\nstranden\nstrandfeest\nstrandfeesten\nstrandganger\nstrandgaper\nstrandgezicht\nstrandgoed\nstrandhanddoek\nstrandhoofd\nstrandhotel\nstrandhuisje\nstranding\nstrandjurk\nstrandjutten\nstrandjutter\nstrandjutterij\nstrandlaken\nstrandleven\nstrandlijn\nstrandloop\nstrandloper\nstrandmeer\nstrandmeester\nstrandmuur\nstrandopgang\nstrandpaal\nstrandparasol\nstrandpaviljoen\nstrandplevier\nstrandpyjama\nstrandrecht\nstrandschelp\nstrandstoel\nstrandtas\nstrandtent\nstrandtenthouder\nstrandvisser\nstrandvlo\nstrandvoetbal\nstrandvolleybal\nstrandvond\nstrandvonder\nstrandvonderij\nstrandvoogd\nstrandwaarts\nstrandwacht\nstrandwandeling\nstrandweer\nstrandweg\nstrandwegen\nstrandzand\nstrangulatie\nstrapatsen\nstrapless\nstras\nstrateeg\nstrategie\nstrategiebepaling\nstrategienota\nstrategiespel\nstrategievorming\nstrategiewijziging\nstrategisch\nstrategist\nstratego\nstraten\nstratenboek\nstratencircuit\nstratengids\nstratenloop\nstratenmaker\nstratennet\nstratenpatroon\nstratenplan\nstratificatie\nstratigrafie\nstratosfeer\nstratosfeerballon\nstratosferisch\nstratus\nstreaken\nstreaker\nstreakers\nstreamers\nstreber\nstreberig\nstreed\nstreefbedrag\nstreefcapaciteit\nstreefcijfer\nstreefdatum\nstreefdoel\nstreefgetal\nstreefgewicht\nstreefpercentage\nstreefwaarde\nstreek\nstreekarchief\nstreekarchivaris\nstreekblad\nstreekbus\nstreekcentrum\nstreekderby\nstreekdialect\nstreekeigen\nstreekeigene\nstreekgebonden\nstreekgenoot\nstreekgerecht\nstreekgewest\nstreekkeuken\nstreekkrant\nstreekmanager\nstreekmuseum\nstreekplan\nstreekpost\nstreekraad\nstreekroman\nstreekschool\nstreeksgewijs\nstreektaal\nstreekvervoer\nstreekvervoerbedrijf\nstreekvervoerder\nstreekvervoersbedrijf\nstreekziekenhuis\nstreep\nstreepdessin\nstreepje\nstreepjesbroek\nstreepjescode\nstreepjesgoed\nstreepjeslijn\nstreepjesoverhemd\nstreepjespak\nstreepjespatroon\nstreeplijn\nstreeppatroon\nstreepvormig\nstreetdance\nstreetwear\nstreetwise\nstrek\nstrekapparaat\nstrekdam\nstrekel\nstreken\nstrekken\nstrekkend\nstrekking\nstrekkingsroman\nstreklaag\nstrekoefening\nstreks\nstrekspier\nstrelen\nstrelend\nstreling\nstremmen\nstremming\nstremsel\nstreng\nstrengelen\nstrengelijk\nstrengeling\nstrengen\nstrenggelovig\nstrengheid\nstrepen\nstreperig\nstrepig\nstreptokinase\nstreptokok\nstreptokokken\nstreptomycine\nstress\nstressbestendig\nstressbestendigheid\nstressen\nstresseren\nstresserend\nstressfactor\nstressfractuur\nstressgevoelig\nstresskonijn\nstressniveau\nstresspreventie\nstressreactie\nstresssituatie\nstressstoornis\nstressverschijnsel\nstressvol\nstretch\nstretchen\nstretcher\nstreven\nstreving\nstriae\nstribbelen\nstribbeling\nstribbelingen\nstrictuur\nstriem\nstriemen\nstrijd\nstrijdbaar\nstrijdbaarheid\nstrijdbijl\nstrijden\nstrijder\nstrijders\nstrijdersbond\nstrijdgas\nstrijdgenoot\nstrijdgenote\nstrijdgewoel\nstrijdgroep\nstrijdhamer\nstrijdig\nstrijdigheid\nstrijdknots\nstrijdkrachten\nstrijdkreet\nstrijdleus\nstrijdleuze\nstrijdlied\nstrijdlust\nstrijdlustig\nstrijdmacht\nstrijdmakker\nstrijdmethode\nstrijdmiddel\nstrijdorganisatie\nstrijdperk\nstrijdplan\nstrijdpunt\nstrijdros\nstrijdschrift\nstrijdster\nstrijdterrein\nstrijdtoneel\nstrijdvaardig\nstrijdvaardigheid\nstrijdvraag\nstrijdwagen\nstrijdwijze\nstrijk\nstrijkage\nstrijkbaar\nstrijkbalk\nstrijkband\nstrijkbord\nstrijkbout\nstrijkconcert\nstrijkdeken\nstrijkdroog\nstrijkel\nstrijkelings\nstrijken\nstrijker\nstrijkerij\nstrijkersarrangement\nstrijkersklank\nstrijkgeld\nstrijkgoed\nstrijkhout\nstrijkijzer\nstrijkinstrument\nstrijkje\nstrijkkwartet\nstrijkkwintet\nstrijklap\nstrijklicht\nstrijklijn\nstrijkmuziek\nstrijkorkest\nstrijkplank\nstrijksteen\nstrijkster\nstrijkstok\nstrijktrio\nstrijkwerk\nstrik\nstrikdas\nstrike\nstrikken\nstrikkenzetter\nstrikknoop\nstrikt\nstriktelijk\nstriktheid\nstrikvraag\nstring\nstringent\nstrip\nstripact\nstripalbum\nstripblad\nstripboek\nstripclub\nstripfestival\nstripfiguur\nstripgeschiedenis\nstripgoed\nstripheld\nstripmaker\nstripmuseum\nstrippen\nstrippenkaart\nstripper\nstripreeks\nstrips\nstripserie\nstripster\nstriptang\nstriptease\nstripteasedanseres\nstripteasetent\nstripteaseuse\nstriptekenaar\nstriptekenen\nstriptijdschrift\nstripverhaal\nstripvorm\nstripwereld\nstripwinkel\nstripzolder\nstro\nstroachtig\nstrobaal\nstroband\nstrobed\nstrobenen\nstrobloem\nstroblond\nstrobokking\nstrobos\nstroboscoop\nstroboscopisch\nstrobreed\nstrobundel\nstrodak\nstrodekker\nstroef\nstroefheid\nstroever\nstrofe\nstrofenvorm\nstrofisch\nstroganoffsaus\nstrogeel\nstrohaksel\nstrohalm\nstrohoed\nstrohuls\nstrohut\nstrokarton\nstroken\nstrokenparket\nstrokenproef\nstrokenproeven\nstrokleurig\nstroman\nstromat\nstromatras\nstromen\nstromijt\nstroming\nstromingsbron\nstromingsleer\nstromingspatroon\nstromingsweerstand\nstrompelaar\nstrompelen\nstrompelig\nstronk\nstronken\nstront\nstrontium\nstrontje\nstrontjongen\nstrontkar\nstrontraper\nstrontvent\nstrontvlieg\nstrontzat\nstrooi-jonker\nstrooiauto\nstrooiavond\nstrooibiljet\nstrooibrief\nstrooibus\nstrooien\nstrooier\nstrooifolder\nstrooigoed\nstrooiing\nstrooilepel\nstrooimijn\nstrooisel\nstrooisellaag\nstrooisuiker\nstrooiveld\nstrooiwagen\nstrooiweide\nstrooizand\nstrooizout\nstrook\nstroom\nstroomaf- en stroomopwaarts\nstroomafnemer\nstroomafwaarts\nstroombaan\nstroombedding\nstroombedrijf\nstroombeurs\nstroombreker\nstroombron\nstroomcircuit\nstroomcrisis\nstroomdal\nstroomdiagram\nstroomdicht\nstroomdraad\nstroomduiker\nstroometikettering\nstroomfabrieken\nstroomgebied\nstroomgebruik\nstroomgeleider\nstroomgeul\nstroomgigant\nstroomgod\nstroomgodin\nstroomimport\nstroomkaart\nstroomkabel\nstroomkosten\nstroomkring\nstroomleverancier\nstroomlevering\nstroomlijn\nstroomlijnen\nstroomlijning\nstroomlijnvorm\nstroomloos\nstroommarkt\nstroommeter\nstroomnet\nstroomnetwerken\nstroomnimf\nstroomonderbreker\nstroomonderbreking\nstroomop- en stroomafwaarts\nstroomopwaarts\nstroomopwekking\nstroompje\nstroomprijs\nstroomproducent\nstroomproductie\nstroomrekening\nstroomrichting\nstroomrijk\nstroomrug\nstroomschema\nstroomsector\nstroomsnelheid\nstroomstelsel\nstroomsterkte\nstroomstoot\nstroomstoring\nstroomtoevoer\nstroomtransformator\nstroomuitval\nstroomverbruik\nstroomverbruiker\nstroomverdeler\nstroomverschil\nstroomverschillen\nstroomversnelling\nstroomvoorziening\nstroomvreter\nstroomwisselaar\nstroop\nstroopachtig\nstroopbal\nstroophappen\nstroopkan\nstroopkwast\nstrooplepel\nstrooplikken\nstrooplikker\nstrooplikkerij\nstroopnagel\nstrooppot\nstroopsmeerder\nstroopsmeerderij\nstrooptocht\nstroopvat\nstroopwafel\nstrootje\nstrop\nstropapier\nstropdas\nstropen\nstroper\nstroperig\nstroperigheid\nstroperij\nstropers\nstropersbende\nstropop\nstroppen\nstroppenpot\nstroptouw\nstrosnijder\nstrossen\nstrot\nstrotklep\nstrottenhoofd\nstrovlechten\nstrovlechter\nstrovlechtster\nstrovuur\nstrowis\nstrozak\nstrubbelen\nstrubbeling\nstrubbelingen\nstructuralisme\nstructuralist\nstructuralistisch\nstructureel\nstructureren\nstructurering\nstructuur\nstructuuraanduiding\nstructuurbeleid\nstructuurdiagram\nstructuurdrager\nstructuurfonds\nstructuurformule\nstructuurhervorming\nstructuurkenmerken\nstructuurlogica\nstructuurloos\nstructuurmiddel\nstructuurmiddelen\nstructuurnota\nstructuurplan\nstructuurrapport\nstructuurregime\nstructuurschema\nstructuurschets\nstructuurvennootschap\nstructuurverandering\nstructuurverf\nstructuurversterkend\nstructuurversterking\nstructuurvisie\nstructuurwet\nstructuurwijziging\nstruif\nstruik\nstruikachtig\nstruikelblok\nstruikelen\nstruikeling\nstruikelpunt\nstruikelsteen\nstruiken\nstruikgewas\nstruikhei\nstruikheide\nstruikhout\nstruikroos\nstruikrover\nstruikroverij\nstruikvorm\nstruinen\nstruis\nstruise\nstruisen\nstruisgras\nstruisheid\nstruisriet\nstruisveer\nstruisvogel\nstruisvogelbiefstuk\nstruisvogelei\nstruisvogelmaag\nstruisvogelpolitiek\nstruisvogelveer\nstruisvogelvlees\nstruiven\nstruma\nstruweel\nstrychnine\nstuc\nstucmarmer\nstucwerk\nstudeerbaar\nstudeerbaarheid\nstudeerkamer\nstudeerkamergeleerde\nstudeerlamp\nstudeervertrek\nstudent\nstudent-assistent\nstudent-lid\nstudente\nstudentenaantal\nstudentenadministratie\nstudentenalmanak\nstudentenarbeid\nstudentenarts\nstudentenbestand\nstudentenbevolking\nstudentenbeweging\nstudentenblad\nstudentenbond\nstudentenchipkaart\nstudentenclub\nstudentencomplex\nstudentencorps\nstudentendecaan\nstudentendemonstratie\nstudentenfeest\nstudentenflat\nstudentengemeenschap\nstudentengeneratie\nstudentengrap\nstudentengroep\nstudentenhaver\nstudentenhuis\nstudentenhuisvesting\nstudentenjaarkaart\nstudentenjool\nstudentenkaart\nstudentenkamer\nstudentenkerk\nstudentenkot\nstudentenkroeg\nstudentenleider\nstudentenleven\nstudentenlied\nstudentenmilieu\nstudentenmuts\nstudentenopstand\nstudentenorganisatie\nstudentenorkest\nstudentenpastor\nstudentenpastoraat\nstudentenpet\nstudentenpopulatie\nstudentenpredikantschap\nstudentenprotest\nstudentenraad\nstudentenrebellie\nstudentenrevolte\nstudentenrevolutie\nstudentenroeivereniging\nstudentenscriptie\nstudentensociëteit\nstudentenstad\nstudentenstop\nstudententaal\nstudententijd\nstudentenunie\nstudentenvakbond\nstudentenvereniging\nstudentenverzekering\nstudentenverzet\nstudentenvoorziening\nstudentenvoorzieningen\nstudentenweerbaarheid\nstudentenwereld\nstudentenwoning\nstudentgericht\nstudentikoos\nstudentikoziteit\nstudentin\nstuderen\nstudie\nstudie-uren\nstudie-uur\nstudieactiviteit\nstudieadres\nstudieadvies\nstudieadviseur\nstudieadviseuse\nstudiebegeleider\nstudiebegeleiding\nstudiebelasting\nstudiebeurs\nstudiebezoek\nstudiebijeenkomst\nstudieboek\nstudiebol\nstudiebureau\nstudiecentrum\nstudieclub\nstudiecommissie\nstudieconferentie\nstudiedag\nstudiedienst\nstudiedoeleinden\nstudiedruk\nstudieduur\nstudieduurverkorting\nstudiefase\nstudiefinanciering\nstudiefinancieringsschijf\nstudiefinancieringsstelsel\nstudiefonds\nstudiegebied\nstudiegeest\nstudiegenoot\nstudiegids\nstudiegroep\nstudiehoofd\nstudiehouding\nstudiehuis\nstudiejaar\nstudiekeuze\nstudiekop\nstudiekosten\nstudiekostenvergoeding\nstudiekring\nstudielast\nstudielening\nstudieles\nstudieloon\nstudiemakker\nstudiemateriaal\nstudiemeester\nstudiemiddag\nstudiemodel\nstudieobject\nstudieopdracht\nstudiepakket\nstudieperiode\nstudieplan\nstudieplanning\nstudieplein\nstudieplek\nstudieplekken\nstudieprefect\nstudieprogramma\nstudieproject\nstudiepunt\nstudierapport\nstudiereis\nstudierendement\nstudieresultaat\nstudierichting\nstudierichtingscommissie\nstudieruimte\nstudieschuld\nstudiestof\nstudiesucces\nstudietempo\nstudieterrein\nstudietijd\nstudietoelage\nstudietraject\nstudieus\nstudievaardigheid\nstudievak\nstudieverblijf\nstudievereniging\nstudieverlof\nstudieverplichting\nstudievertraging\nstudieverzekering\nstudievoortgang\nstudievoortgangscontrole\nstudievriend\nstudievriendin\nstudieweek\nstudiewerk\nstudiewijzer\nstudiezaal\nstudio\nstudio-opname\nstudioalbum\nstudiochef\nstudiocomplex\nstudioconcert\nstudiogast\nstudiohuur\nstudiomuzikant\nstudioplaat\nstudiopubliek\nstudioruimte\nstudiosessie\nstudiosus\nstudiovloer\nstudium generale\nstuf\nstuff\nstuffen\nstug\nstugheid\nstuifbrand\nstuifdijk\nstuifduinen\nstuiflawine\nstuifmeel\nstuifmeelkorrel\nstuifsel\nstuifsneeuw\nstuifzand\nstuifzandgebied\nstuifzwam\nstuik\nstuiken\nstuikmand\nstuip\nstuipachtig\nstuiptrekken\nstuiptrekking\nstuit\nstuitbeen\nstuitbevalling\nstuiten\nstuitend\nstuiter\nstuiteren\nstuitgeboorte\nstuiting\nstuitje\nstuitligging\nstuitstuk\nstuiveling\nstuiven\nstuiver\nstuiversroman\nstuiverstuk\nstuk\nstuk voor stuk\nstukadoor\nstukadoormortel\nstukadoorsbedrijf\nstukadoorswerk\nstukadoren\nstukbijten\nstukbreken\nstuken\nstukgaan\nstukgoed\nstukgoederen\nstukgoederenvervoer\nstukgoedsector\nstukgooien\nstukhout\nstukje\nstukjesschrijver\nstukken\nstuklezen\nstuklijst\nstukloon\nstuklopen\nstukmaken\nstukoffer\nstukprijs\nstukrijder\nstuksgewijs\nstuksgewijze\nstukslaan\nstuksmijten\nstuksnijden\nstukvallen\nstukwerk\nstukwerker\nstulp\nstulpen\nstumper\nstumperd\nstumperen\nstumperig\nstumperigheid\nstunt\nstuntel\nstuntelaar\nstuntelen\nstuntelig\nstunteligheid\nstunten\nstunter\nstuntman\nstuntploeg\nstuntprijs\nstuntteam\nstuntvliegen\nstuntvlieger\nstuntvliegtuig\nstuntwerk\nstupide\nstupiditeit\nsturen\nsturing\nsturingsinformatie\nsturingsinstrument\nsturingsmechanisme\nstut\nstutbalk\nstutsel\nstutten\nstutter\nstutting\nstutwerk\nstutwerken\nstuur\nstuurautomaat\nstuurbaar\nstuurbekrachtiging\nstuurbeweging\nstuurboom\nstuurboord\nstuurboordlicht\nstuurboordzij\nstuurboordzijde\nstuurcabine\nstuurcode\nstuurcomité\nstuurcommando\nstuurfout\nstuurgedrag\nstuurgroep\nstuurgroeplid\nstuurhoes\nstuurhuis\nstuurhut\nstuurinrichting\nstuurkaarten\nstuurkabel\nstuurknuppel\nstuurkolom\nstuurkunde\nstuurkunst\nstuurlast\nstuurlastig\nstuurlieden\nstuurloos\nstuurloosheid\nstuurmachine\nstuurman\nstuurmanschap\nstuurmanskunst\nstuurmansmaat\nstuurmechanisme\nstuurpen\nstuurplaats\nstuurplecht\nstuurproef\nstuurproeven\nstuurprogramma\nstuurrad\nstuurreep\nstuurroer\nstuurs\nstuursheid\nstuurslot\nstuurstang\nstuurstoel\nstuurstok\nstuurtouw\nstuurvlak\nstuurvrouw\nstuurwerk\nstuurwiel\nstuw\nstuwadoor\nstuwadoorsbedrijf\nstuwadoorsonderneming\nstuwage\nstuwbekken\nstuwblok\nstuwdam\nstuwdruk\nstuwen\nstuwer\nstuwing\nstuwkracht\nstuwmeer\nstuwmuur\nstuwraket\nstuwsluis\nstuwstof\nstuwwal\nstylen\nstyliet\nstyling\nstylist\nstyliste\nstylo\nstyreen\nstèle\nstère\nsuatiesluis\nsuave\nsub\nsubafdeling\nsubaltern\nsubamendement\nsubarctisch\nsubatlanticum\nsubatomair\nsubboreaal\nsubcategorie\nsubclan\nsubcommissie\nsubcontinent\nsubcontract\nsubcontractor\nsubcultureel\nsubcultuur\nsubdiaken\nsubdirectory\nsubdivisie\nsubdocument\nsubdoel\nsubdoelen\nsubdraad\nsubeenheid\nsubfaculteit\nsubformulier\nsubframe\nsubgenre\nsubgroep\nsubharmonisch\nsubharmonischen\nsubhoofd\nsubiet\nsubindex\nsubject\nsubjectief\nsubjectivisme\nsubjectivistisch\nsubjectiviteit\nsubjunctief\nsublegaat\nsublicentie\nsubliem\nsublimaat\nsublimatie\nsublimeren\nsublimiteit\nsubmenu\nsubmissie\nsubniveau\nsubnummer\nsubordinatie\nsubordineren\nsubplot\nsubprogramma\nsubregent\nsubregio\nsubrogatie\nsubroute\nsubroutine\nsubschrift\nsubscript\nsubscriptie\nsubsectie\nsubsector\nsubsidiabel\nsubsidiair\nsubsidiariteit\nsubsidiariteitsbeginsel\nsubsidie\nsubsidieaanvraag\nsubsidieaanvrage\nsubsidiebedrag\nsubsidiebeleid\nsubsidiebijdrage\nsubsidiebudget\nsubsidieerbaar\nsubsidiefonds\nsubsidiefraude\nsubsidiegeld\nsubsidiegelden\nsubsidiegever\nsubsidiekorting\nsubsidiekraan\nsubsidieloos\nsubsidiemogelijkheid\nsubsidieontvanger\nsubsidieplaats\nsubsidieplaatsen\nsubsidiepot\nsubsidiepotje\nsubsidieprogramma\nsubsidieregeling\nsubsidierelatie\nsubsidieronde\nsubsidiestelsel\nsubsidiestop\nsubsidiestroom\nsubsidiesysteem\nsubsidietoekenning\nsubsidieverdeling\nsubsidieverhoging\nsubsidieverlening\nsubsidievermindering\nsubsidieverordening\nsubsidieverstrekker\nsubsidieverstrekking\nsubsidieverzoek\nsubsidievoorstel\nsubsidievoorwaarde\nsubsidioloog\nsubsidiënt\nsubsidiëren\nsubsidiëring\nsubsistentie\nsubsonisch\nsubspecialisme\nsubsponsor\nsubstantie\nsubstantieel\nsubstantief\nsubstantiefgroepen\nsubstantiveren\nsubstantivisch\nsubstitueren\nsubstitutie\nsubstitutieformule\nsubstitutiegraad\nsubstituut\nsubstituut-griffier\nsubstituut-officier\nsubstituut-procureur\nsubstraat\nsubstraatteelt\nsubsysteem\nsubtaken\nsubthema\nsubtheorie\nsubtiel\nsubtiliteit\nsubtitel\nsubtop\nsubtopic\nsubtopper\nsubtotaal\nsubtractie\nsubtractief\nsubtropen\nsubtropisch\nsubtype\nsuburbaan\nsuburbanisatie\nsuburbia\nsubversie\nsubversief\nsubversiviteit\nsubvraag\nsubvragen\nsubwoofer\nsucces\nsuccesauteur\nsuccesboek\nsuccesfactor\nsuccesfilm\nsuccesformule\nsuccesjaar\nsucceskans\nsuccesnummer\nsuccespercentage\nsuccesperiode\nsuccesproduct\nsuccesprogramma\nsuccesrecept\nsuccesreeks\nsuccesrijk\nsuccesroman\nsuccesschrijver\nsuccesserie\nsuccessie\nsuccessiebelasting\nsuccessief\nsuccessieoorlog\nsuccessieplanning\nsuccessierecht\nsuccessierechten\nsuccessievelijk\nsuccessiewet\nsuccesstory\nsuccesstuk\nsuccestrainer\nsuccesverhaal\nsuccesvol\nsuccesvoller\nsucculent\nsucculenten\nsuccursale\nsucrose\nsudden death\nsudderen\nsudderlap\nsuf\nsuffen\nsuffer\nsufferd\nsufferdje\nsufferig\nsufferij\nsufficiënt\nsuffig\nsuffigheid\nsuffix\nsuffragaan\nsuffragaanbisschop\nsuffragette\nsufheid\nsugarsnap\nsuggereren\nsuggestibiliteit\nsuggestie\nsuggestief\nsui generis\nsuiker\nsuikeraccijns\nsuikerachtig\nsuikerbakker\nsuikerbakkerij\nsuikerbeest\nsuikerbiet\nsuikerboer\nsuikerbol\nsuikerboon\nsuikerbrood\nsuikercampagne\nsuikercultuur\nsuikerde\nsuikeren\nsuikererwt\nsuikerfabriek\nsuikergast\nsuikergehalte\nsuikerglazuur\nsuikergoed\nsuikerhart\nsuikerhoudend\nsuikerig\nsuikerij\nsuikerindustrie\nsuikerklontje\nsuikerkoek\nsuikerkorrel\nsuikerkristal\nsuikerlepel\nsuikerlord\nsuikermais\nsuikermannetje\nsuikermarkt\nsuikermeloen\nsuikermuisjes\nsuikeroogst\nsuikeroom\nsuikerpatiënt\nsuikerpeer\nsuikerplantage\nsuikerplanter\nsuikerpot\nsuikerprijs\nsuikerproducent\nsuikerproductie\nsuikerraffinaderij\nsuikerraffinadeur\nsuikerregime\nsuikerriet\nsuikerrietplantage\nsuikerrietveld\nsuikersmaak\nsuikerspiegel\nsuikerspin\nsuikerstok\nsuikerstrooier\nsuikerstroop\nsuikertaart\nsuikertang\nsuikertante\nsuikerverwerkend\nsuikervrij\nsuikerwater\nsuikerwerk\nsuikerwerkfabriek\nsuikerzakje\nsuikerziek\nsuikerzieke\nsuikerziekte\nsuikerzoet\nsuilen\nsuisse\nsuite\nsuitedeur\nsuizebollen\nsuizelen\nsuizelig\nsuizeling\nsuizen\nsuizing\nsujet\nsukade\nsukadekoek\nsukkel\nsukkelaar\nsukkelaarster\nsukkelachtig\nsukkeldraf\nsukkelen\nsukkelgang\nsukkelgangetje\nsukkelig\nsukkeling\nsukkelstraatje\nsul\nsulfaat\nsulfamide\nsulfanilamide\nsulfer\nsulferbloem\nsulferstank\nsulfide\nsulfiet\nsulfonamiden\nsulfureus\nsulky\nsullebaan\nsullen\nsulletje\nsullig\nsulligheid\nsultan\nsultanaat\nsultane\nsumak\nsumma\nsummarium\nsummier\nsummierlijk\nsummum\nsumo\nsumoworstelaar\nsumoworstelen\nsunroof\nsuper\nsuper-de-luxe\nsuper-pg\nsuperaanbieding\nsuperarbiter\nsuperband\nsuperbe\nsuperbelegger\nsuperbenzine\nsuperblij\nsupercarga\nsupercargo\nsupercomputer\nsupercool\nsupercup\nsuperdag\nsuperdividend\nsuperdun\nsuperego\nsuperette\nsuperficieel\nsuperficiële\nsuperfijn\nsuperfosfaat\nsupergeleidend\nsupergeleider\nsupergeleiding\nsupergemotiveerd\nsupergevoelig\nsupergezond\nsupergranulatie\nsupergroep\nsuperheffing\nsuperheld\nsuperhighway\nsuperhit\nsuperhoofdprijs\nsuperieur\nsuperieure\nsuperintelligent\nsuperintendent\nsuperior\nsuperioriteit\nsuperioriteitsgevoel\nsuperjumbo\nsuperkanon\nsuperklasse\nsuperknecht\nsuperkritisch\nsuperkwaliteit\nsuperlatief\nsuperlicentie\nsuperlinks\nsupermacht\nsuperman\nsupermarkt\nsupermarktbedrijf\nsupermarktbranche\nsupermarktconcern\nsupermarktformule\nsupermarktgigant\nsupermarktgroep\nsupermarktkarretje\nsupermarktketen\nsupermarktondernemer\nsupermarktonderneming\nsupermarktorganisatie\nsupermarktreus\nsupermarktsector\nsupermarktwereld\nsupermens\nsuperminister\nsuperministerie\nsuperministerraad\nsupermodel\nsupermodern\nsupermogendheid\nsupernova\nsuperoxide\nsuperplie\nsuperponeren\nsuperpositie\nsuperpositiebeginsel\nsuperproductie\nsuperrace\nsuperrijk\nsuperschrift\nsuperscript\nsuperslecht\nsuperslim\nsupersnel\nsupersnelrecht\nsupersonisch\nsuperspannend\nsuperspion\nsuperstaat\nsuperstar\nsuperster\nsupersterk\nsuperstitie\nsuperstrak\nsuperstructuur\nsupersub\nsupertaks\nsupertalent\nsupertanker\nsupertrendy\nsupertrio\nsupervedergewicht\nsuperviseren\nsupervisie\nsupervisor\nsupervloeibaar\nsupervorm\nsupervrouwen\nsuperwinst\nsuperzwaargewicht\nsupplement\nsupplementair\nsuppleren\nsuppletie\nsuppletoir\nsuppliant\nsuppliek\nsuppliëren\nsuppoost\nsupport\nsupportact\nsupporter\nsupporteren\nsupportersbegeleiding\nsupportersbeleid\nsupportersbus\nsupportersclub\nsupportersgedrag\nsupportersgeweld\nsupportersgroep\nsupportershome\nsupporterskern\nsupporterslegioen\nsupportersschare\nsupporterstrein\nsupportersvereniging\nsuppositie\nsuppositoire\nsuppressie\nsupprimeren\nsuprageleiding\nsupranationaal\nsupranationaliteit\nsuprematie\nsuprematisme\nsuprematistisch\nsurf\nsurfboard\nsurfen\nsurfer\nsurfgedrag\nsurfkleding\nsurfplank\nsurfsport\nsurfster\nsurinamiseren\nsurinamistiek\nsurnumerair\nsurplace\nsurplacen\nsurplus\nsurplusgoederen\nsurprise\nsurpriseparty\nsurrealisme\nsurrealist\nsurrealistisch\nsurreëel\nsurrogaat\nsurround\nsurseance\nsurseanceaanvraag\nsurveillance\nsurveillanceauto\nsurveillancedienst\nsurveillancewagen\nsurveillant\nsurveillante\nsurveilleren\nsurvival\nsurvivallen\nsurvivaltocht\nsusceptibel\nsusceptibiliteit\nsushi\nsuspect\nsuspenderen\nsuspense\nsuspensie\nsuspensief\nsussen\nsuzerein\nsuzereiniteit\nsuède\nsuïcidaal\nsuïcide\nsuïcideert\nsuïcideneiging\nsuïcideplan\nsuïcideplannen\nsuïcidepoging\nsuïcideproblematiek\nsuïciderisico\nswagger\nswami\nswap\nswastika\nsweater\nsweatshirt\nswing\nswingen\nswitch\nswitchen\nsybariet\nsybaritisch\nsycofant\nsycomoor\nsycomore\nsyfilis\nsyfilislijder\nsyfilitisch\nsylfe\nsylfide\nsyllabe\nsyllabi\nsyllabificatie\nsyllabisch\nsyllabus\nsyllogisme\nsyllogistisch\nsymbiose\nsymbiotisch\nsymboliek\nsymbolisatie\nsymbolisch\nsymboliseren\nsymbolisme\nsymbolist\nsymbolistisch\nsymbolum\nsymbool\nsymboolfunctie\nsymboolkleuren\nsymboolpolitiek\nsymbooltaal\nsymboolteken\nsymboolwaarde\nsymboolwerking\nsymboolwetgeving\nsymfonicus\nsymfonie\nsymfonieconcert\nsymfonieorkest\nsymfonisch\nsymmetrie\nsymmetrievlak\nsymmetrisch\nsympathetisch\nsympathie\nsympathiek\nsympathiestaking\nsympathisant\nsympathisch\nsympathiseren\nsymposion\nsymposium\nsymptomatisch\nsymptomatologie\nsymptoom\nsymptoombehandeling\nsymptoombestrijding\nsymptoomloos\nsymptoommanagement\nsymptoomvrij\nsynagogaal\nsynagoge\nsynagoog\nsynaps\nsynchroniciteit\nsynchronie\nsynchronisatie\nsynchronisatieprobleem\nsynchronisatiepuls\nsynchronisch\nsynchroniseren\nsynchronisme\nsynchronistisch\nsynchroon\nsynchroonspringen\nsynchroonzwemmen\nsynchrotron\nsyncope\nsyncoperen\nsyncopering\nsyncopisch\nsyncretisch\nsyncretisme\nsyndicaal\nsyndicaat\nsyndicaatsleider\nsyndicalisme\nsyndicalist\nsyndicalistisch\nsyndicus\nsyndroom\nsynecdoche\nsynergetisch\nsynergie\nsynergie-effect\nsynergievoordeel\nsynesthesie\nsynodaal\nsynode\nsynodebesluit\nsynodebesluiten\nsynodevergadering\nsynodisch\nsynoniem\nsynoniemenbestand\nsynoniemenlijst\nsynoniemenlijsten\nsynoniemenwoordenboek\nsynonymie\nsynonymiek\nsynopsis\nsynoptici\nsynopticus\nsynoptisch\nsyntactisch\nsyntagma\nsyntagmatisch\nsyntaxis\nsynthese\nsyntheseroute\nsynthesizer\nsynthesizerklank\nsynthesizerpop\nsynthetisch\nsynthetiseren\nsynthipop\nsyrah\nsysteem\nsysteemanalist\nsysteemanalyse\nsysteembeheer\nsysteembeheerder\nsysteembekisting\nsysteembenadering\nsysteembestand\nsysteembouw\nsysteemconfiguratie\nsysteemcrashes\nsysteemdatum\nsysteemdenken\nsysteemdiagnose\nsysteemdiagnostiek\nsysteemdirectory\nsysteemdiskette\nsysteemdwang\nsysteemeigenschap\nsysteemfout\nsysteemgericht\nsysteemgroepen\nsysteemhuis\nsysteemintegratie\nsysteeminterventie\nsysteeminvoering\nsysteemkaart\nsysteemleer\nsysteemleverancier\nsysteemloos\nsysteemmeubelen\nsysteemmodel\nsysteemonderzoek\nsysteemontwerp\nsysteemontwerper\nsysteemontwikkeling\nsysteemopzet\nsysteemplafond\nsysteemprogramma\nsysteemprogrammatuur\nsysteemprogrammeren\nsysteemprogrammering\nsysteemprogrammeur\nsysteemrisico\nsysteemschijf\nsysteemsoftware\nsysteemtechnicus\nsysteemtheorie\nsysteemtherapeut\nsysteemtherapeute\nsysteemtijd\nsysteemverantwoordelijke\nsysteemverf\nsysteemwand\nsystematicus\nsystematiek\nsystematisch\nsystematiseren\nsystematisering\nsèvres\nt\nt-groep\nt.a.v.\nt.b.v.\nt.g.v.\nt.h.t.\nt.n.v.\nt.o.v.\nt.w.\nt.w.v.\nt.z.t.\ntaai\ntaaie\ntaaien\ntaaierd\ntaaiheid\ntaainagel\ntaaitaai\ntaak\ntaakafbakening\ntaakanalist\ntaakanalyse\ntaakbelasting\ntaakbeschrijving\ntaakcode\ntaakelement\ntaakgebied\ntaakgebieden\ntaakgericht\ntaakgroep\ntaakgroeplid\ntaakgroepmedewerker\ntaakgroepvoorzitter\ntaakinhoud\ntaakkarakteristiek\ntaakkenmerk\ntaakkenmerken\ntaakleerkracht\ntaakleraar\ntaakomschrijving\ntaakomvang\ntaakontwerp\ntaakopdracht\ntaakopvatting\ntaakroulatie\ntaakspecialisatie\ntaakstellend\ntaakstelling\ntaakstraf\ntaakstructurering\ntaakstructuur\ntaakuitbreiding\ntaakuitoefening\ntaakuitvoering\ntaakuur\ntaakveld\ntaakverdeling\ntaakverlichting\ntaakverrijking\ntaakverruiming\ntaakvervulling\ntaakverwerking\ntaakverzwaring\ntaakwijziging\ntaakwisseling\ntaal\ntaalaanbod\ntaalachterstand\ntaaladvies\ntaaladviesdienst\ntaaladviseur\ntaalarm\ntaalatlas\ntaalbad\ntaalbarrière\ntaalbederf\ntaalbegrip\ntaalbeheerser\ntaalbeheersing\ntaalbeleid\ntaalbeoefenaar\ntaalbeoefening\ntaalbeschouwing\ntaalbeweging\ntaalbewustzijn\ntaalblunder\ntaalboek\ntaalcentrum\ntaalchauvinisme\ntaalcode\ntaalconcept\ntaalcongres\ntaalcursus\ntaaldiversiteit\ntaaleenheid\ntaaleigen\ntaaleigenaardigheid\ntaalexamen\ntaalfamilie\ntaalfilosofie\ntaalfilosoof\ntaalfout\ntaalgebied\ntaalgebonden\ntaalgebruik\ntaalgebruiker\ntaalgedrag\ntaalgeleerde\ntaalgemeenschap\ntaalgeschiedenis\ntaalgevoel\ntaalgevoelig\ntaalgevoeligheid\ntaalgids\ntaalgrapje\ntaalgrens\ntaalgroep\ntaalhandeling\ntaalhantering\ntaalhervormer\ntaalhulpbestand\ntaalinstellingen\ntaalkaart\ntaalkader\ntaalkamp\ntaalkenner\ntaalkennis\ntaalkeuze\ntaalklank\ntaalkring\ntaalkritiek\ntaalkunde\ntaalkundig\ntaalkundige\ntaalkunst\ntaalkunstenaar\ntaalkwestie\ntaallabo\ntaalleraar\ntaalles\ntaalman\ntaalmethode\ntaalmodule\ntaalniveau\ntaalnorm\ntaaloefening\ntaalonderricht\ntaalonderwijs\ntaalonderzoek\ntaalonderzoeker\ntaalontwikkeling\ntaalpakket\ntaalpathologie\ntaalpolitiek\ntaalprobleem\ntaalproject\ntaalpsychologie\ntaalpsychologisch\ntaalpurisme\ntaalpurist\ntaalrecht\ntaalregel\ntaalrol\ntaalrubriek\ntaalschat\ntaalscheppend\ntaalsituatie\ntaalspel\ntaalstam\ntaalstandaard\ntaalstrijd\ntaalstudie\ntaalsymbool\ntaalsysteem\ntaaltechnisch\ntaaltechnologie\ntaaltechnologiebedrijf\ntaalteken\ntaaltelefoon\ntaaltest\ntaaltoets\ntaaltuinier\ntaaluitbreiding\ntaaluiting\ntaalvaardig\ntaalvaardigheid\ntaalvariant\ntaalverandering\ntaalverbastering\ntaalvermenging\ntaalvermogen\ntaalvernieuwing\ntaalverrijking\ntaalverschijnsel\ntaalverschil\ntaalvervuiling\ntaalverwantschap\ntaalverwerving\ntaalverzorging\ntaalvirtuoos\ntaalvoorschrift\ntaalvorm\ntaalvraag\ntaalwet\ntaalwetenschap\ntaalwetenschapper\ntaalwetgeving\ntaalzorg\ntaalzuiveraar\ntaalzuivering\ntaan\ntaander\ntaanderij\ntaanhuis\ntaanketel\ntaart\ntaartbodem\ntaarten\ntaartenbakker\ntaartje\ntaartpan\ntaartpunt\ntaarts\ntaartschep\ntaartvorkje\ntaartvorm\ntaats\ntab\ntabak\ntabakken\ntabakker\ntabaksaandeel\ntabaksaccijns\ntabaksartikel\ntabaksbedrijf\ntabaksbeleid\ntabaksbewerker\ntabaksblaas\ntabaksblad\ntabaksbouw\ntabaksconsumptie\ntabaksculture\ntabakscultuur\ntabaksdamp\ntabaksdoos\ntabaksfabriek\ntabaksfabrikant\ntabaksgebruik\ntabakshandel\ntabakshandelaar\ntabaksindustrie\ntabakskerver\ntabakskerverij\ntabakslobby\ntabakslucht\ntabaksmonopolie\ntabaksonderneming\ntabaksontmoedigingsbeleid\ntabaksoogst\ntabakspijp\ntabaksplant\ntabaksplantage\ntabaksplanter\ntabakspot\ntabaksproducent\ntabakspruim\ntabaksreclame\ntabaksrichtlijn\ntabaksrol\ntabaksrook\ntabaksschuur\ntabakssector\ntabaksstripper\ntabaksteelt\ntabaksteler\ntabaksveiling\ntabaksveld\ntabaksvergunning\ntabaksverkoop\ntabaksverkoper\ntabaksverslaving\ntabakswaar\ntabakswalm\ntabakswaren\ntabakswet\ntabakswinkel\ntabakswinkelier\ntabakszaak\ntabakszak\ntabasco\ntabbaard\ntabberd\ntabbetje\ntabblad\ntabee\ntabel\ntabelkop\ntabellarisch\ntabellariseren\ntabelleer\ntabellenregister\ntabelleren\ntabelvorm\ntabelvormig\ntabernakel\ntabernakelen\ntabijn\ntabkaart\ntabla\ntablatuur\ntableau\ntablet\ntabletvorm\ntabloid\ntabloidformaat\ntabloidkrant\ntabloidpers\ntaboe\ntaboedoorbrekend\ntaboeonderwerp\ntaboeret\ntaboesfeer\ntaboeïsering\ntabpagina\ntabstop\ntabula rasa\ntabulatie\ntabulator\ntabulatortoets\ntabulatuur\ntabuleren\ntachograaf\ntachometer\ntachotype\ntachotypist\ntachtig\ntachtigduizend\ntachtigen\ntachtiger\ntachtigjarig\ntachtigste\ntachtigtal\ntachtigvoud\ntachtigvoudig\ntachycardie\ntachygraaf\ntachygrafie\ntachymeter\ntachymetrie\ntachyon\ntackelen\ntackle\ntaco\ntact\ntacticus\ntactiek\ntactiel\ntactisch\ntactloos\ntactloosheid\ntactvol\ntaekwondo\ntaekwondoka\ntaf\ntafel\ntafelaansteker\ntafelbekisting\ntafelbel\ntafelberg\ntafelbier\ntafelblad\ntafelboter\ntafelconversatie\ntafeldame\ntafeldans\ntafeldienen\ntafeldrank\ntafeleend\ntafelen\ntafelfruit\ntafelgebed\ntafelgeld\ntafelgenoot\ntafelgenot\ntafelgenote\ntafelgerei\ntafelgerief\ntafelgesprek\ntafelgoed\ntafelheer\ntafelkleed\ntafella\ntafellade\ntafellaken\ntafellamp\ntafelland\ntafellinnen\ntafelloper\ntafelmanieren\ntafelmatje\ntafelmes\ntafelmodel\ntafelmuziek\ntafelpoot\ntafelpresident\ntafelrand\ntafelrede\ntafelschel\ntafelschikking\ntafelschuier\ntafelschuimer\ntafelservies\ntafelspeech\ntafelspel\ntafelspringer\ntafelstoel\ntafeltennis\ntafeltennisbond\ntafeltennisfederatie\ntafeltennissen\ntafeltennisser\ntafeltennistafel\ntafeltennisteam\ntafeltennistitel\ntafeltennistoernooi\ntafeltennisvereniging\ntafeltje-dek-je\ntafeltoestel\ntafelvoetbal\ntafelvoetbalspel\ntafelwater\ntafelwijn\ntafelzeil\ntafelzilver\ntafelzout\ntafelzuur\ntafereel\ntaffen\ntaffetas\ntaffia\ntafia\ntafzij\ntafzijde\ntafzijden\ntag\ntagger\ntagliatelle\ntagrijn\ntahin\ntahoe\ntai chi\ntai-chiën\ntaifoen\ntaiga\ntaille\ntailleband\ntaillelijn\ntailleren\ntailleur\ntailleuse\ntajine\ntak\ntakel\ntakelaar\ntakelage\ntakelauto\ntakelbalk\ntakelbedrijf\ntakelblok\ntakelen\ntakeling\ntakelmaterieel\ntakelwagen\ntakelwerk\ntaken\ntakenlijst\ntakenlijsten\ntakenpakket\ntakenstructuur\ntakhout\ntakkeling\ntakken\ntakkenbos\ntakkewijf\ntaks\ntaksvrij\ntakwerk\ntal\ntalaan\ntalen\ntalencursus\ntaleninstituut\ntalenkenner\ntalenkennis\ntalenknobbel\ntalenlaboratorium\ntalenonderwijs\ntalenpracticum\ntalenschool\ntalent\ntalentenbank\ntalentenjacht\ntalentenjager\ntalentloos\ntalentontwikkeling\ntalentrijk\ntalentscout\ntalentvol\ntalenwonder\ntalg\ntalgklier\ntalhout\ntaliban\ntalie\ntaliehaak\ntalig\ntaligheid\ntaling\ntalisman\ntaliën\ntalk\ntalkklier\ntalkpoeder\ntalkpoeier\ntalkshow\ntalkshowcircuit\ntalkshowhost\ntalkshowpresentator\ntalloos\ntalmen\ntalmer\ntalon\ntalreep\ntalrijk\ntalrijkheid\ntalstelsel\ntalud\ntaludbekleding\ntam\ntamagotchi\ntamari\ntamarinde\ntamarindeboom\ntamarindebos\ntamarindehout\ntamarindestroop\ntamarisk\ntamboer\ntamboer-majoor\ntamboereerwerk\ntamboeren\ntamboereren\ntamboerijn\ntamboerkorps\ntambour-maître\ntamelijk\ntamheid\ntamp\ntampen\ntampon\ntamponneren\ntamtam\ntand\ntandaanslag\ntandarts\ntandartsassistente\ntandartsbezoek\ntandartsboor\ntandartsenopleiding\ntandartshulp\ntandartskosten\ntandartspolis\ntandartspraktijk\ntandartsstoel\ntandbederf\ntandbeen\ntandcariës\ntandeloos\ntandem\ntandemail\ntanden\ntandenborstel\ntandengeknars\ntandenknarsen\ntandenpoetsen\ntandenstoker\ntandentrekker\ntandformule\ntandglazuur\ntandhals\ntandheelkunde\ntandheelkundig\ntandheelkundige\ntandholte\ntanding\ntandkas\ntandkroon\ntandlijst\ntandmeester\ntandoori\ntandpasta\ntandpijn\ntandplaque\ntandpoeder\ntandpoeier\ntandprothese\ntandrad\ntandradbaan\ntandradspoor\ntandsteen\ntandtechnicus\ntandtechnisch\ntandvlees\ntandvleesontsteking\ntandvormig\ntandvulling\ntandwalvis\ntandwerk\ntandwiel\ntandwielkast\ntandwortel\ntandzenuw\ntandzorg\ntanen\ntang\ntanga\ntangaslip\ntangbeweging\ntangconstructie\ntangens\ntangent\ntangentieel\ntango\ntango-orkest\ntangomuziek\ntangram\ntangverlossing\ntanig\ntank\ntankaanval\ntankauto\ntankbataljon\ntankbemanning\ntankbeurt\ntankboot\ntankcolonne\ntankcommandant\ntankdeksel\ntankdivisie\ntankdop\ntankeenheid\ntanken\ntanker\ntankercapaciteit\ntankervloot\ntankgeschut\ntankgracht\ntankinhoud\ntankinstallatie\ntankkaart\ntankopslag\ntankopslagbedrijf\ntankpas\ntankschip\ntankslag\ntankstation\ntanksysteem\ntankunit\ntankvaart\ntankvliegtuig\ntankvloot\ntankwagen\ntankwagon\ntannine\ntantaliseren\ntantalium\ntantalusbeker\ntantaluskwelling\ntante\ntanteagaathregeling\ntantebetjestijl\ntantième\ntantièmebelasting\ntantra\ntantrisme\ntantum\ntaoïsme\ntaoïstisch\ntap\ntapas\ntapasbar\ntapbier\ntapdans\ntapdansen\ntapdanser\ntapdanseres\ntape\ntapedeck\ntapen\ntapenade\ntaperecorder\ntapgat\ntapijt\ntapijten\ntapijtfabriek\ntapijtfabrikant\ntapijtgaren\ntapijthal\ntapijthandel\ntapijtindustrie\ntapijtkever\ntapijtklopper\ntapijtreiniger\ntapijtsector\ntapijttegel\ntapijtwerk\ntapijtwever\ntapijtwol\ntapioca\ntapiocapap\ntapir\ntapis-plain\ntapisserie\ntapisseriewerk\ntapissière\ntapkast\ntapkraan\ntappelen\ntappelings\ntappen\ntapper\ntapperij\ntapplaats\ntappunt\ntaps\ntapster\ntaptemelk\ntaptoe\ntapuit\ntapverbod\ntapvergunning\ntapvormig\ntapwater\ntarantella\ntarantula\ntarbot\ntarget\ntarief\ntariefafspraak\ntariefbepaling\ntariefcalculator\ntariefcommissie\ntariefdaling\ntariefdifferentiatie\ntariefgroep\ntariefgroepindeling\ntariefkaart\ntariefklasse\ntariefloon\ntariefmuren\ntariefmuur\ntariefregeling\ntariefschaal\ntariefschijf\ntariefsdifferentiatie\ntariefstelling\ntariefstelsel\ntariefstijging\ntariefstructuur\ntariefsverhoging\ntariefsverlaging\ntariefswijziging\ntariefsysteem\ntariefverhoging\ntariefverlaging\ntariefwerk\ntariefwijziging\ntariefzone\ntariefzones\ntarievenbeleid\ntarievenlijst\ntarievenoorlog\ntarievenpolitiek\ntarievenslag\ntarievenstelsel\ntarievenstructuur\ntarievensysteem\ntarieventabel\ntarieventabellen\ntarievenwijzer\ntarifair\ntariferen\ntarifering\ntarificatie\ntarlatan\ntarmac\ntarnen\ntarok\ntarokspel\ntarot\ntarotkaart\ntarpan\ntarra\ntarreren\ntartaan\ntartaar\ntartaartje\ntartan\ntarten\ntarwe\ntarweaar\ntarwebloem\ntarwebrood\ntarwehalm\ntarwekiem\ntarwekorrel\ntarweland\ntarwemeel\ntarweoogst\ntarweprijs\ntarweschoof\ntarwestro\ntarwevlokken\ntarwezemelen\ntarwezetmeel\ntas\ntasjesdief\ntasjeskruid\ntasjesroof\ntasjesrover\ntaskforce\ntassen\ntast\ntastbaar\ntastbaarheid\ntastdraad\ntasten\ntaster\ntastorgaan\ntastzin\ntastzintuig\ntasveld\ntaswoning\ntatami\ntater\ntateraar\ntateren\ntatoeage\ntatoeëer\ntatoeëerden\ntatoeëerder\ntatoeëert\ntatoeëren\ntatoeëring\ntaugé\ntaupe\ntaupekleurig\ntaurine\ntautologie\ntautologisch\ntaveerne\ntaverne\ntaxameter\ntaxateur\ntaxatie\ntaxatiebureau\ntaxatiefout\ntaxatiekosten\ntaxatieprijs\ntaxatieproces\ntaxatierapport\ntaxatieronde\ntaxatieverslag\ntaxatiewaarde\ntaxeren\ntaxfree\ntaxfreeshop\ntaxfreewinkel\ntaxi\ntaxibaan\ntaxibedrijf\ntaxibeleid\ntaxibranche\ntaxicentrale\ntaxichauffeur\ntaxiconflict\ntaxikosten\ntaximarkt\ntaximeter\ntaxinummer\ntaxiondernemer\ntaxionderneming\ntaxioorlog\ntaxipost\ntaxirit\ntaxistandplaats\ntaxistop\ntaxivergunning\ntaxivervoer\ntaxivervoerder\ntaxiwereld\ntaxiwet\ntaxizaken\ntaxiën\ntaxol\ntaxon\ntaxonomie\ntaxonomisch\ntaxonoom\ntaxus\ntaxusboom\ntaxushaag\ntaxustwijgen\ntaylorstelsel\ntaël\ntb\ntbc\ntbc-bestrijding\ntbc-onderzoek\ntbc-test\ntbs\ntbs'er\ntbs'ers\ntbs-behandeling\ntbs-inrichting\ntbs-inrichtingen\ntbs-kliniek\ntbs-maatregel\ntbs-patiënt\nte\nte berde brengen\nte bestemder tijd\nte elfder ure\nte gelde maken\nte midden\nte midden van\nte moede\nte pas en te onpas\nte stade\nte werk gaan\nteach-in\nteak\nteakhout\nteakhouten\nteakolie\nteam\nteamadministratie\nteamarts\nteambegeleider\nteambelang\nteambespreking\nteambuilding\nteambuildingsactiviteit\nteambuildingsactiviteiten\nteamcaptain\nteamchef\nteamcoördinator\nteamcoördinatrice\nteamdokter\nteamgebeuren\nteamgeest\nteamgenoot\nteamgenote\nteamintervisie\nteamleider\nteamleiding\nteamleidster\nteamlid\nteamlunch\nteammanager\nteamoverleg\nteamprestatie\nteamsecretaresse\nteamspel\nteamspeler\nteamspirit\nteamsport\nteamstructuur\nteamtoernooi\nteamverband\nteamvormend\nteamvorming\nteamwedstrijd\nteamwerk\nteamwork\ntearjerker\ntearoom\nteaën\nteboekstelling\ntechneut\ntechniciteit\ntechnicolor\ntechnicum\ntechnicus\ntechniek\ntechnieklokaal\ntechnisch\ntechnisch-economisch\ntechnisch-juridisch\ntechnisch-wetenschappelijk\ntechnocraat\ntechnocratie\ntechnocratisch\ntechnocratisering\ntechnokeuring\ntechnolease\ntechnologie\ntechnologie-index\ntechnologieaandelen\ntechnologiebedrijf\ntechnologiebeleid\ntechnologiebeurs\ntechnologiecentrum\ntechnologieconcern\ntechnologiefonds\ntechnologiegedreven\ntechnologiegroep\ntechnologiehoek\ntechnologiemarkt\ntechnologieoverdracht\ntechnologieprogramma\ntechnologierace\ntechnologiesector\ntechnologietransfer\ntechnologieën\ntechnologisch\ntechnologisering\ntechnoloog\ntechnomuziek\ntechnostation\nteckel\ntectyl\ntectyleren\nteddy\nteddybeer\nteder\ntederheid\nteef\nteek\nteelaarde\nteelbal\nteelbalkanker\nteeldrift\nteelgrond\nteellaag\nteelland\nteelster\nteelt\nteeltijd\nteeltkeus\nteeltkeuze\nteeltmethode\nteeltwijze\nteeltwisseling\nteelvocht\nteem\nteemkous\nteems\nteemsen\nteen\nteenager\nteenganger\nteenhout\nteenkootje\nteennagel\nteenslipper\nteenstuk\nteentje\nteenwilg\nteer\nteerachtig\nteerbemind\nteerbeminde\nteerdag\nteerfeest\nteergehalte\nteergeld\nteergeliefd\nteergevoelig\nteergevoeligheid\nteerhartig\nteerhartigheid\nteerheid\nteerketel\nteerkleed\nteerkost\nteerkwast\nteerling\nteerlingbak\nteerlingen\nteerlingspel\nteerlingworp\nteerolie\nteerpenning\nteerpot\nteers\nteerspijze\nteersteen\nteerton\nteerwater\nteerweg\nteerzand\nteerzeep\nteevee\nteeveetoestel\nteflon\ntegaar\ntegader\ntegel\ntegelbakker\ntegelbakkerij\ntegelbekleding\ntegeldemaking\ntegelijk\ntegelijkertijd\ntegelkachel\ntegeloven\ntegelpad\ntegeltableau\ntegeltjeswijsheid\ntegelvloer\ntegelwand\ntegelwerk\ntegelzetten\ntegelzetter\ntegemoet\ntegemoetkomen\ntegemoetkomend\ntegemoetkomendheid\ntegemoetkoming\ntegemoetzien\ntegen\ntegenaan\ntegenaanval\ntegenactie\ntegenargument\ntegenartikel\ntegenbeeld\ntegenbegroting\ntegenbericht\ntegenbetoging\ntegenbetoog\ntegenbevel\ntegenbeweging\ntegenbewijs\ntegenbezoek\ntegenbod\ntegenboeking\ntegencoup\ntegencultuur\ntegendeel\ntegendemonstratie\ntegendoelpunt\ntegendraads\ntegendraadsheid\ntegendraaiend\ntegendruk\ntegendrukken\ntegeneen\ntegeneffect\ntegeneis\ntegengaan\ntegengas\ntegengebaar\ntegengeluid\ntegengeschenk\ntegengesteld\ntegengestelde\ntegengesteldheid\ntegengeweld\ntegengewicht\ntegengif\ntegengift\ntegengoal\ntegengroet\ntegenhanger\ntegenheid\ntegenhouden\ntegenin\ntegenkandidaat\ntegenkant\ntegenkanting\ntegenkomen\ntegenkoning\ntegenkracht\ntegenlachen\ntegenlicht\ntegenlichtopname\ntegenliggend\ntegenligger\ntegenlopen\ntegenmaatregel\ntegenmacht\ntegenmaken\ntegennatuurlijk\ntegennatuurlijkheid\ntegenoffensief\ntegenonderzoek\ntegenop\ntegenorder\ntegenover\ntegenoverdracht\ntegenovergelegen\ntegenovergesteld\ntegenovergestelde\ntegenoverliggend\ntegenoverstaand\ntegenoverstellen\ntegenoverstelling\ntegenpartij\ntegenpaus\ntegenpleiter\ntegenpool\ntegenpraat\ntegenprestatie\ntegenpruttelen\ntegenreactie\ntegenregering\ntegenrekening\ntegenslaan\ntegenslag\ntegenslagen\ntegenspartelen\ntegensparteling\ntegenspeelster\ntegenspel\ntegenspelen\ntegenspeler\ntegenspoed\ntegenspraak\ntegensprekelijk\ntegenspreken\ntegenspreker\ntegensputteren\ntegenstaan\ntegenstand\ntegenstander\ntegenstandster\ntegensteken\ntegenstelbaar\ntegenstellend\ntegenstelling\ntegenstem\ntegenstemmen\ntegenstemmer\ntegenstoom\ntegenstoot\ntegenstreefster\ntegenstreven\ntegenstrever\ntegenstribbelen\ntegenstribbeling\ntegenstrijd\ntegenstrijdig\ntegenstrijdigheid\ntegenstroom\ntegensturen\ntegenstuur\ntegentij\ntegentreffer\ntegenvallen\ntegenvaller\ntegenvergif\ntegenvergift\ntegenvoeter\ntegenvoeters\ntegenvoets\ntegenvoorbeeld\ntegenvoorstel\ntegenvordering\ntegenvraag\ntegenvuur\ntegenwaarde\ntegenweer\ntegenwerken\ntegenwerker\ntegenwerking\ntegenwerpen\ntegenwerping\ntegenwicht\ntegenwind\ntegenwoordig\ntegenwoordigheid\ntegenzang\ntegenzegel\ntegenzet\ntegenzetten\ntegenzij\ntegenzijde\ntegenzin\ntegenzitten\ntegoed\ntegoedbon\ntehuis\nteil\nteilen\nteint\nteisteren\nteistering\ntekeer\ntekeergaan\nteken\ntekenaap\ntekenaar\ntekenacademie\ntekenachtig\ntekenakte\ntekenares\ntekenbeet\ntekenbenodigdheden\ntekenbevoegd\ntekenbevoegdheid\ntekenblok\ntekenboek\ntekenbord\ntekenbreedte\ntekendoos\ntekendriehoek\ntekenen\ntekenfilm\ntekenfilmfiguur\ntekenfilmheld\ntekenfilmserie\ntekenfilmstudio\ntekenfunctie\ntekenfuncties\ntekengebied\ntekengeld\ntekengereedschap\ntekengereedschappen\ntekengerei\ntekenhaak\ntekenhobby\ntekening\ntekeningencollectie\ntekenkamer\ntekenkleur\ntekenkosten\ntekenkrijt\ntekenkunst\ntekenleer\ntekenlengte\ntekenleraar\ntekenles\ntekenliniaal\ntekenlokaal\ntekenmateriaal\ntekenmethode\ntekenmunt\ntekenonderwijs\ntekenopmaakprofiel\ntekenpaar\ntekenpapier\ntekenpen\ntekenplank\ntekenportefeuille\ntekenpotlood\ntekenprofiel\ntekenprogramma\ntekenreeks\ntekenschool\ntekenschrift\ntekenset\ntekenstift\ntekenstijl\ntekentafel\ntekentalent\ntekenvel\ntekenverzameling\ntekenvoorbeeld\ntekenwedstrijd\ntekenwerk\ntekenwisseling\ntekenzaal\ntekoopstelling\ntekort\ntekortdoen\ntekortfinanciering\ntekortkomen\ntekortkoming\ntekortnorm\ntekortreductie\ntekortschieten\ntekortvermindering\ntekst\ntekstanalyse\ntekstballon\ntekstbeeld\ntekstbegrip\ntekstbehandeling\ntekstbereik\ntekstbericht\ntekstbestand\ntekstbewerking\ntekstbezorger\ntekstblok\ntekstblokken\ntekstboek\ntekstboekje\ntekstbord\ntekstcorrectie\ntekstcursor\ntekstdeel\ntekstdelen\ntekstdichter\ntekstdocument\nteksteditie\nteksteenheid\ntekstelement\ntekstenbestand\ntekstflard\ntekstformaat\ntekstfragment\ntekstgedeelte\ntekstgeoriënteerde\ntekstgrootte\nteksthaak\ntekstindeling\ntekstinhoud\ntekstinvoer\ntekstkader\ntekstkleur\ntekstkolom\ntekstkritiek\ntekstkritisch\ntekstlaag\ntekstloos\ntekstmateriaal\ntekstmodel\ntekstobject\ntekstopbouw\ntekstopmaakprofiel\ntekstoptie\ntekstopties\ntekstopzet\ntekstpassage\ntekstprinter\ntekstregel\ntekstrevisie\ntekstrichting\ntekstschema\ntekstscherm\ntekstschrijfster\ntekstschrijven\ntekstschrijver\ntekstselectie\ntekststructuur\nteksttelefoon\nteksttype\ntekstueel\ntekstuitgave\ntekstvak\ntekstvariant\ntekstveld\ntekstverandering\ntekstverbetering\ntekstverklaring\ntekstverlies\ntekstverloop\ntekstverplaatsing\ntekstvervalsing\ntekstverwerken\ntekstverwerker\ntekstverwerking\ntekstverwerkingscursus\ntekstverwerkingsfunctie\ntekstverwerkingspakket\ntekstverwerkingsprogramma\ntekstverwijzing\ntekstverzorging\ntekstvoorstel\ntekstvraag\ntekstvragen\ntekstwetenschap\ntekstwijziging\ntekstwolkje\ntekstwoord\ntekstzet\ntektoniek\ntektonisch\ntel\ntelaatkomer\ntelapparaat\ntelastlegging\ntelbaar\ntelbaarheid\ntelboek\ntelco\nteldatum\ntelebankieren\ntelecard\ntelecom\ntelecomaanbieder\ntelecomaandeel\ntelecomanalist\ntelecomapparatuur\ntelecombedrijf\ntelecombranche\ntelecomconcern\ntelecomdochter\ntelecomfabrikant\ntelecomfusie\ntelecomgigant\ntelecomgroep\ntelecomindustrie\ntelecominfrastructuur\ntelecommaatschappij\ntelecommarkt\ntelecommunicatie\ntelecommunicatie-industrie\ntelecommunicatie-infrastructuur\ntelecommunicatieapparatuur\ntelecommunicatiebedrijf\ntelecommunicatiebehoefte\ntelecommunicatiecentrale\ntelecommunicatiegroep\ntelecommunicatiekosten\ntelecommunicatielijn\ntelecommunicatiemarkt\ntelecommunicatiemiddel\ntelecommunicatienet\ntelecommunicatienetwerk\ntelecommunicatienetwerken\ntelecommunicatiesector\ntelecommunicatiesysteem\ntelecommunicatietechniek\ntelecommunicatietoepassing\ntelecommunicatieverkeer\ntelecommunicatiewet\ntelecomnet\ntelecomnetwerk\ntelecomoperator\ntelecomoperators\ntelecomreus\ntelecomsector\ntelecomspelers\ntelecomtoezichthouder\ntelecomverkeer\ntelecomwaakhond\ntelecomwereld\ntelecomwet\ntelecomwetgeving\nteleconferentie\nteleconverter\nteledienst\nteledistributie\ntelefax\ntelefilm\ntelefonade\ntelefoneren\ntelefonie\ntelefoniebedrijf\ntelefoniedochter\ntelefoniemarkt\ntelefonienetwerk\ntelefonieplatform\ntelefonieprijzen\ntelefoniesysteem\ntelefonisch\ntelefonist\ntelefoniste\ntelefoon\ntelefoonaansluiting\ntelefoonabonnee\ntelefoonabonnement\ntelefoonantwoordapparaat\ntelefoonapparaat\ntelefoonapparatuur\ntelefoonautomaat\ntelefoonbeantwoorder\ntelefoonbedrijf\ntelefoonbehandeling\ntelefoonboek\ntelefoonbotje\ntelefooncel\ntelefooncentrale\ntelefooncentrales\ntelefooncirkel\ntelefoondienst\ntelefoondistrict\ntelefoondraad\ntelefoongebruik\ntelefoongeheim\ntelefoongesprek\ntelefoongids\ntelefoonhoorn\ntelefoonhoren\ntelefooninstallatie\ntelefoonjuffrouw\ntelefoonkaart\ntelefoonkabel\ntelefoonkantoor\ntelefoonklapper\ntelefoonkosten\ntelefoonkostenvergoeding\ntelefoonleidingen\ntelefoonlijn\ntelefoonlijst\ntelefoonmaatschappij\ntelefoonnet\ntelefoonnetwerk\ntelefoonnota\ntelefoonnummer\ntelefoonoefening\ntelefoonoperator\ntelefoonpaal\ntelefoonrekening\ntelefoonseks\ntelefoonservice\ntelefoonsnoer\ntelefoonstem\ntelefoonsysteem\ntelefoontap\ntelefoontarief\ntelefoonteam\ntelefoonteller\ntelefoonterreur\ntelefoontijd\ntelefoontje\ntelefoontoestel\ntelefoonverbinding\ntelefoonverbod\ntelefoonverkeer\ntelefoonwinkel\ntelefoto\ntelefotografie\ntelegraaf\ntelegraafbureau\ntelegraafdienst\ntelegraafdraad\ntelegraafkabel\ntelegraafkantoor\ntelegraaflijn\ntelegraafnet\ntelegraafpaal\ntelegraaftoestel\ntelegraafverkeer\ntelegraafwezen\ntelegraferen\ntelegrafie\ntelegrafisch\ntelegrafist\ntelegrafiste\ntelegram\ntelegramadres\ntelegrambesteller\ntelegramformulier\ntelegramstijl\ntelekaart\ntelekinese\ntelekinetisch\ntelekrant\ntelelens\nteleleren\ntelemarketing\ntelematica\ntelematica-infrastructuur\ntelematisch\ntelemeter\ntelemetrie\ntelen\nteleobjectief\nteleologie\nteleologisch\nteleonthaal\ntelepaat\ntelepathie\ntelepathisch\nteleprocessing\nteleprompter\nteler\ntelescoop\ntelescoopbuis\ntelescoophengel\ntelescoperen\ntelescopisch\nteleshoppen\nteleshopper\nteleshopping\nteletekst\nteletekstpagina\ntelethuiswerk\nteletijdmachine\nteleur\nteleurgang\nteleurgesteld\nteleurstellen\nteleurstellend\nteleurstelling\ntelevisie\ntelevisie-inkomsten\ntelevisie-interview\ntelevisie-uitzending\ntelevisieaanbod\ntelevisieantenne\ntelevisieavond\ntelevisiebaas\ntelevisiebeeld\ntelevisiebesluit\ntelevisiebewerking\ntelevisiecamera\ntelevisiecampagne\ntelevisiecarrière\ntelevisiecommercial\ntelevisieconcern\ntelevisiecursus\ntelevisiedebat\ntelevisiedienst\ntelevisiedocumentaire\ntelevisiedominee\ntelevisiedrama\ntelevisiefabriek\ntelevisiefestival\ntelevisiefeuilleton\ntelevisiefilm\ntelevisiegebied\ntelevisiegeniek\ntelevisiegeschiedenis\ntelevisiegesprek\ntelevisiegids\ntelevisiegroep\ntelevisieheld\ntelevisiejournaal\ntelevisiejournalist\ntelevisiejournalistiek\ntelevisiekabel\ntelevisiekanaal\ntelevisiekijken\ntelevisiekijker\ntelevisiekok\ntelevisiekomiek\ntelevisieland\ntelevisiemaker\ntelevisieman\ntelevisiemarkt\ntelevisiemast\ntelevisienet\ntelevisienetwerk\ntelevisienieuws\ntelevisieomroep\ntelevisieontvanger\ntelevisieontvangst\ntelevisieoptreden\ntelevisieoptredens\ntelevisiepersoonlijkheid\ntelevisieploeg\ntelevisiepresentator\ntelevisiepresentatrice\ntelevisieproducent\ntelevisieproductie\ntelevisieproductiemaatschappij\ntelevisieprogramma\ntelevisieprogrammering\ntelevisieproject\ntelevisiepubliek\ntelevisiequiz\ntelevisierecensent\ntelevisierechten\ntelevisiereclame\ntelevisierede\ntelevisiereeks\ntelevisieregisseur\ntelevisieregistratie\ntelevisiereportage\ntelevisierol\ntelevisierubriek\ntelevisiescherm\ntelevisieseizoen\ntelevisieserie\ntelevisieshow\ntelevisiesignaal\ntelevisiesoap\ntelevisiespel\ntelevisiespot\ntelevisiestation\ntelevisiester\ntelevisiestudio\ntelevisietaks\ntelevisietalkshow\ntelevisieteam\ntelevisietijdperk\ntelevisietoespraak\ntelevisietoestel\ntelevisietoren\ntelevisieverslaggever\ntelevisieverslaggeving\ntelevisiewereld\ntelevisiewerk\ntelevisiezender\ntelevisiezendtijd\ntelewerk\ntelewerken\ntelewerker\ntelewinkelen\ntelex\ntelexapparaat\ntelexbericht\ntelexdienst\ntelexen\ntelexist\ntelexiste\ntelexkosten\ntelexverbinding\ntelexverkeer\ntelfout\ntelg\ntelgang\ntelganger\nteling\nteljoor\ntelkaart\ntelkenjare\ntelkenmaal\ntelkenmale\ntelkens\ntellen\nteller\ntellerstand\ntellijst\ntelling\ntellurisch\ntellurium\ntelmachine\ntelomerase\nteloor\nteloorgaan\nteloorgang\ntelpas\ntelraam\ntelstrook\ntelsysteem\ntelwerk\ntelwoord\ntembaar\ntemeer\ntemeier\ntemen\ntemer\ntemerig\ntemerigheid\ntemet\ntemmen\ntemmer\ntempeest\ntempeesten\ntempel\ntempelachtig\ntempelbouw\ntempelcomplex\ntempeldienst\ntempelen\ntempelfeest\ntempelier\ntempelpolitie\ntempelridder\ntempelstad\ntempelwijding\ntempen\ntempera\ntemperament\ntemperamentvol\ntemperans\ntemperantia\ntemperaturen\ntemperatuur\ntemperatuurafhankelijk\ntemperatuurbepaling\ntemperatuurcurve\ntemperatuurdaling\ntemperatuurgevoelig\ntemperatuurmeter\ntemperatuurmeting\ntemperatuurregelaar\ntemperatuurregeling\ntemperatuurschommeling\ntemperatuurstijging\ntemperatuursverhoging\ntemperatuurvariatie\ntemperatuurverandering\ntemperatuurverhoging\ntemperatuurverlaging\ntemperatuurverloop\ntemperatuurverschil\ntemperatuurvoeler\ntemperatuurwisseling\ntemperen\ntemperijzer\ntempering\ntempermes\ntemperoven\ntempex\ntemplate\ntempo\ntempo doeloe\ntempoaanduiding\ntempobeul\ntempobeurs\ntempomaker\ntemponorm\ntemporaal\ntemporair\ntemporalia\ntemporaliën\ntemporeel\ntemporisatie\ntemporiseren\ntemporisering\ntempoversnelling\ntempowinst\ntemptatie\ntempteren\ntempura\ntempus\ntempé\nten\nten aanschouwen van\nten algemenen nutte\nten anderen male\nten bate van\nten bedrage van\nten behoeve van\nten belope van\nten besluite\nten bewijze van\nten burele\nten dele\nten derden male\nten dienste\nten enenmale\nten faveure van\nten gehore\nten gemeentehuize\nten geschenke\nten gevolge van\nten grave dragen\nten huize van\nten kantore\nten laste gelegde\nten laste leggen\nten onrechte\nten overstaan van\nten overvloede\nten paleize\nten stadhuize\nten tonele\nten vervolge op\nten vierden male\nten voordele van\ntenaamstelling\ntenachterstelling\ntenakel\ntenant\ntendens\ntendenskunst\ntendensroman\ntendentie\ntendentieus\ntender\ntenderbod\ntenderen\ntenderlocomotief\ntendersysteem\ntendinitis\nteneinde\ntenen\ntenenkaas\ntenenkrommend\nteneur\ntengel\ntengelen\ntengels\ntengelwerk\ntenger\ntengerheid\ntenhemelopneming\ntenhemelschreiend\nteniet\ntenietdoen\ntenietdoening\ntenietgaan\ntenlastelegging\ntenminste\ntennis\ntennisarm\ntennisbaan\ntennisbal\ntennisbond\ntenniscarrière\ntenniscircuit\ntennisclub\ntenniscoach\ntenniscomplex\ntenniselleboog\ntennisfenomeen\ntennisfinale\ntennisgeschiedenis\ntennishal\ntennisjaar\ntenniskampioenschap\ntenniskleding\ntennisland\ntennisleraar\ntennisleraren\ntennisles\ntennisliefhebber\ntennisloopbaan\ntennisnet\ntennispark\ntennispartij\ntennisploeg\ntennisprof\ntennisprofessional\ntennisracket\ntennisraket\ntennisschoen\ntennisschool\ntennisseizoen\ntennissen\ntennisser\ntennisspeelster\ntennisspel\ntennisspeler\ntennissport\ntennisster\ntennissucces\ntennistalent\ntennisteam\ntennistitel\ntennistoernooi\ntennistop\ntennisvedette\ntennisveld\ntennisvereniging\ntenniswedstrijd\ntenniswereld\ntenor\ntenorsax\ntenorsaxofonist\ntenorsaxofoon\ntenorstem\ntenorzanger\ntensie\ntenslotte\ntent\ntentakel\ntentamen\ntentamenbriefje\ntentamenopdracht\ntentamenstof\ntentamineren\ntentatief\ntentbewoner\ntentdak\ntentdoek\ntenten\ntentendorp\ntentenkamp\ntenteren\ntentet\ntentharing\ntentoon\ntentoonspreiden\ntentoonspreiding\ntentoonstellen\ntentoonstelling\ntentoonstellingsbeleid\ntentoonstellingscatalogus\ntentoonstellingsgebouw\ntentoonstellingshal\ntentoonstellingsmaker\ntentoonstellingspark\ntentoonstellingsruimte\ntentoonstellingsterrein\ntentoonstellingszaal\ntentstok\ntentwagen\ntentzeil\ntenue\ntenuitvoerbrenging\ntenuitvoerlegging\ntenware\ntenzij\ntepel\ntepelhof\ntepelkloven\ntepelvormig\ntepronkstelling\ntequila\nter\nter kerke gaan\nter perse\nter plaatse\nter plekke\nter stede\nter wille\nter zake\nter ziele\ntera-elektronvolt\nteraardebestelling\nterabyte\nteratogeen\nteratogene\nteratologie\nterbeschikkingstelling\nterdege\nterdoodbrenging\nterdoodveroordeelde\nterdoodveroordeling\nterecht\nterechtbrengen\nterechtkomen\nterechtkunnen\nterechtstaan\nterechtstellen\nterechtstelling\nterechtwijzen\nterechtwijzing\nterechtzitting\nteren\ntergen\ntergend\nterging\nterhandstelling\nteriakel\nterig\ntering\nteringachtig\nteringbende\nteringherrie\nteringlijder\nteringlijdster\nteringzooi\nterloops\nterloopsheid\nterm\ntermiet\ntermietenheuvel\ntermijn\ntermijnbetaling\ntermijnbeurs\ntermijncontract\ntermijndeposito\ntermijnhandel\ntermijnhandelaar\ntermijnmarkt\ntermijnnotering\ntermijnpacht\ntermijnplan\ntermijnplanning\ntermijnpolitiek\ntermijnprogramma\ntermijnrekening\ntermijntransactie\ntermijnvisie\nterminaal\nterminal\nterminalprogramma\nterminatie\ntermineren\nterminologie\nterminologisch\nterminus\nternair\nternauwernood\nterne\nterneder\nterneerdrukkend\nterneergedrukt\nterneergeslagen\nterneerslaan\nterp\nterpaarde\nterpdorp\nterpeen\nterpenen\nterpentijn\nterpentijnboom\nterpentijnolie\nterpentine\nterpostbezorging\nterra\nterra incognita\nterracotta\nterracottakleur\nterracottakleurig\nterrarium\nterras\nterrascultuur\nterrasgewijs\nterrasgewijze\nterrasland\nterrasscheiding\nterrassenbeleid\nterrasseren\nterrasstoel\nterrastegel\nterrasvloer\nterrasvorm\nterrasvormig\nterrazzo\nterrazzovloer\nterrein\nterreinafbakening\nterreinafscheiding\nterreinafsluiting\nterreinauto\nterreinbeheer\nterreinbeheerder\nterreinfiets\nterreingedeelte\nterreingesteldheid\nterreinkaart\nterreinkennis\nterreinknecht\nterreinmeester\nterreinopzichter\nterreinplooi\nterreinrit\nterreintekening\nterreinverkenning\nterreinverlichting\nterreinverlies\nterreinvoertuig\nterreinwagen\nterreinwinst\nterrestrisch\nterreur\nterreuraanslag\nterreuraanval\nterreuractie\nterreurbestrijding\nterreurbeweging\nterreurbewind\nterreurcampagne\nterreurdaad\nterreurdreiging\nterreurgolf\nterreurgolven\nterreurgroep\nterreurnetwerk\nterreurorganisatie\nterreurregime\nterrine\nterritoir\nterritoriaal\nterritorialiteit\nterritorialiteitsbeginsel\nterritorium\nterritoriumdrift\nterriër\nterrorisatie\nterroriseren\nterrorisme\nterrorisme-expert\nterrorismebestrijding\nterrorist\nterroriste\nterroristenbende\nterroristengroep\nterroristenleider\nterroristennetwerk\nterroristenorganisatie\nterroristisch\ntersel\ntersluiks\nterstond\ntertiair\ntertiaris\ntertio\nterts\nterug\nterug kunnen\nterug moeten\nterug willen\nterug zijn\nterugbekomen\nterugbellen\nterugbetaalbaar\nterugbetalen\nterugbetaling\nterugbetalingsprijs\nterugbetalingsregeling\nterugbetalingstarief\nterugbezorgen\nterugbezorging\nterugbladeren\nterugblik\nterugblikken\nterugboeken\nterugboeking\nterugbouwen\nterugbrengen\nterugbrenging\nterugdeinzen\nterugdenken\nterugdoen\nterugdraaien\nterugdraaiing\nterugdrijven\nterugdringen\nterugdringing\nterugduwen\nterugeisen\nterugeising\nterugfluiten\nteruggaaf\nteruggaan\nteruggang\nteruggave\nteruggavebeleid\nteruggeslagen\nteruggetrokken\nteruggetrokkenheid\nteruggeven\nteruggooien\nteruggrijpen\nteruggroeten\nterughaalactie\nterughalen\nterughangen\nterughebben\nterughoren\nterughouden\nterughoudend\nterughoudendheid\nterughoudenheid\nterughouding\nterugjagen\nterugkaatsen\nterugkaatsing\nterugkeer\nterugkeerbeleid\nterugkeergarantie\nterugkeerplan\nterugkeerprogramma\nterugkeerproject\nterugkeerregeling\nterugkeren\nterugkijken\nterugklappen\nterugkomavond\nterugkomdag\nterugkomen\nterugkomst\nterugkopen\nterugkoppelen\nterugkoppeling\nterugkoppelingsmechanisme\nterugkrabbelen\nterugkrijgen\nterugladen\nterugleggen\nteruglegging\nterugleiden\nterugleveren\nteruglezen\nterugloop\nteruglopen\nterugluisteren\nterugmarcheren\nterugmars\nterugmelden\nterugname\nterugnameplicht\nterugnemen\nterugneming\nterugontvangen\nterugpakken\nterugplaatsen\nterugplaatsing\nterugploegen\nterugplooien\nterugrapporteren\nterugreis\nterugreizen\nterugrekenen\nterugrijden\nterugrit\nterugroepactie\nterugroepbaarheid\nterugroepbevel\nterugroepen\nterugroeping\nterugroepprocedure\nterugronde\nterugschakelen\nterugschakeling\nterugschieten\nterugschoppen\nterugschrijven\nterugschrikken\nterugschroeven\nterugschuiven\nterugslaan\nterugslag\nterugslagklep\nterugsluizen\nterugsnoeien\nterugspeelbal\nterugspelen\nterugspoelen\nterugspringen\nterugsteken\nterugstoot\nterugstootloos\nterugstorten\nterugstorting\nterugstotend\nterugstromen\nterugstroombeveiliging\nterugsturen\nterugtocht\nterugtransformeren\nterugtrappen\nterugtraprem\nterugtred\nterugtreden\nterugtreding\nterugtrekken\nterugtrekking\nterugval\nterugvallen\nterugvaren\nterugvechten\nterugverdieneffect\nterugverdienen\nterugverdientijd\nterugveren\nterugverlangen\nterugveroveren\nterugvertalen\nterugverwachten\nterugverwijzen\nterugvindbaar\nterugvindbaarheid\nterugvinden\nterugvliegen\nterugvloeien\nterugvlucht\nterugvoeren\nterugvorderen\nterugvordering\nterugvragen\nterugvuren\nterugwedstrijd\nterugweg\nterugwerken\nterugwerking\nterugwerpen\nterugwijken\nterugwijzen\nterugwijzing\nterugwinnen\nterugwinning\nterugwinningssysteem\nterugzakken\nterugzeggen\nterugzenden\nterugzending\nterugzendingsrecht\nterugzendrecht\nterugzetten\nterugzien\nterugzoeken\ntervisielegging\nterwijl\nterzelfder tijd\nterzet\nterzijde\nterzijdelating\nterzijdestelling\nterzine\ntest\ntestament\ntestamentair\ntestamentuitvoerder\ntestapparaat\ntestapparatuur\ntestateur\ntestatrice\ntestauto\ntestbaan\ntestbaar\ntestbaarheid\ntestbank\ntestbatterij\ntestbeeld\ntestbeleid\ntestbestand\ntestcase\ntestcentrum\ntestcircuit\ntestcriterium\ntestdocument\ntesten\ntester\ntesteren\ntestfase\ntestgebied\ntestgroep\ntestikel\ntestimonium\ntestis\ntestleider\ntestmarkt\ntestmatch\ntestmateriaal\ntestmethode\ntestmodel\ntestonderzoek\ntestopstelling\ntestosteron\ntestosterongehalte\ntestosteronproductie\ntestosteronspiegel\ntestpanel\ntestperiode\ntestpersoon\ntestpiloot\ntestprocedure\ntestprogramma\ntestpsychologie\ntestpubliek\ntestrapport\ntestresultaat\ntestrijder\ntestrit\ntests\nteststation\nteststrategie\ntestteam\ntesttheorie\ntestuitslag\ntestversie\ntestvloeistof\ntestvlucht\ntestwedstrijd\ntestwoord\ntestzaak\ntet\ntetanus\ntetanusbacterie\ntetanusinjectie\ntetanusprik\ntetanusvaccin\ntetra\ntetracycline\ntetralogie\ntetrarch\ntetrarchie\ntetraëder\ntets\ntetteren\ntetterig\nteug\nteugel\nteugelen\nteugelloos\nteugelloosheid\nteugen\nteunisbloem\nteut\nteuten\nteuteren\nteuterig\nteveel\ntevens\ntevergeefs\ntevoorschijn\ntevoren\ntevreden\ntevredene\ntevredenheid\ntevredenheidsonderzoek\ntevredenstellen\ntevredenstelling\ntewaterlating\nteweeg\nteweegbrengen\nteweerstellen\ntewerkstellen\ntewerkstelling\ntewerkstellingsbeleid\ntewerkstellingsvergunning\ntex-mex\ntexelaar\ntextiel\ntextielarbeider\ntextielbaron\ntextielbedrijf\ntextielbranche\ntextielexport\ntextielfabriek\ntextielfabrikant\ntextielfamilie\ntextielgroep\ntextielhandel\ntextielhandelaar\ntextielindustrie\ntextielkunst\ntextielmarkt\ntextielmuseum\ntextielnijverheid\ntextielonderneming\ntextielproducent\ntextielproductie\ntextielschool\ntextielsector\ntextielstad\ntextielsupermarkten\ntextielveredelingsbedrijf\ntextielververij\ntextielvezel\ntextuur\ntezamen\ntezelfdertijd\ntezen\ntgv\nthaiboksen\nthalassotherapie\nthalidomide\nthallium\nthans\nthaumatologie\nthaumaturg\ntheater\ntheateracteur\ntheateragenda\ntheateragent\ntheaterartiest\ntheaterbedrijf\ntheaterbewerking\ntheaterbezoek\ntheaterbezoeker\ntheaterbureau\ntheatercafé\ntheatercarrière\ntheaterconcert\ntheatercriticus\ntheaterdebuut\ntheaterdirecteur\ntheaterdirectie\ntheaterfeest\ntheaterfestival\ntheatergebouw\ntheatergeschiedenis\ntheatergezelschap\ntheatergroep\ntheaterheld\ntheaterkostuum\ntheaterland\ntheaterleven\ntheaterlicht\ntheaterliefhebber\ntheatermaken\ntheatermaker\ntheaterman\ntheatermarathon\ntheatermuziek\ntheateropleiding\ntheateroptreden\ntheaterpodium\ntheaterpraktijk\ntheaterprijs\ntheaterproducent\ntheaterproductie\ntheaterprogramma\ntheaterprogrammering\ntheaterproject\ntheaterpubliek\ntheaterregisseur\ntheaterschool\ntheaterseizoen\ntheatershow\ntheatersolo\ntheaterspektakel\ntheatersport\ntheaterstuk\ntheatertalent\ntheatertechniek\ntheatertekst\ntheatertour\ntheatertournee\ntheatertraditie\ntheatervak\ntheatervernieuwer\ntheatervoorstelling\ntheatervorm\ntheaterwereld\ntheaterwerk\ntheaterwerkplaats\ntheaterwetenschap\ntheaterzaal\ntheatraal\ntheatraliteit\nthee\nthee-ei\nthee-uur\ntheeachtig\ntheebanket\ntheebeschuitje\ntheebeurs\ntheebezoek\ntheebiscuit\ntheeblad\ntheebladeren\ntheeblaren\ntheeboom\ntheebuiltje\ntheebus\ntheeceremonie\ntheecultuur\ntheedoek\ntheedrinken\ntheedrinker\ntheegerei\ntheeglas\ntheegoed\ntheehandel\ntheehuis\ntheeketel\ntheekist\ntheekoekje\ntheekopje\ntheekransje\ntheelepel\ntheelepeltje\ntheeleut\ntheelichtje\ntheemeubel\ntheemuts\ntheeonderneming\ntheeoogst\ntheepauze\ntheeplantage\ntheeplanter\ntheepluk\ntheepot\ntheeroos\ntheesalon\ntheeservies\ntheesoort\ntheestoof\ntheestruik\ntheetafel\ntheetante\ntheetijd\ntheetuin\ntheeveiling\ntheevisite\ntheewagen\ntheewater\ntheezakje\ntheezeef\ntheezeefje\ntheeën\nthema\nthema-avond\nthemabijeenkomst\nthemabijlage\nthemaboek\nthemadag\nthemagedeelte\nthemagericht\nthemagroep\nthemagroepen\nthemakanaal\nthemakeuze\nthemamiddag\nthemanummer\nthemaonderwijs\nthemapagina\nthemapakket\nthemapark\nthemaprogramma\nthematiek\nthematisch\nthematiseren\nthematisering\nthemavocaal\nthemawerkgroep\nthemazender\ntheocraat\ntheocratie\ntheocratisch\ntheodicee\ntheodoliet\ntheogonie\ntheologant\ntheologe\ntheologie\ntheologiestudent\ntheologiestudente\ntheologiestudie\ntheologisch\ntheologiseren\ntheoloog\ntheonomie\ntheorema\ntheoreticus\ntheoretisch\ntheoretiseren\ntheorie\ntheorie-examen\ntheoriegedeelte\ntheorieles\ntheorievorming\ntheosofie\ntheosofisch\ntheosoof\ntherapeut\ntherapeute\ntherapeutisch\ntherapie\ntherapiedoel\ntherapiedoelstelling\ntherapiemodel\ntherapieresistent\ntherapietrouw\ntherapieverslag\ntherapievorm\ntheremin\nthermaal\nthermaalbad\nthermaalbaden\nthermaalwater\nthermen\nthermiek\nthermisch\nthermo-elektriciteit\nthermo-elektrisch\nthermodynamica\nthermodynamisch\nthermofiel\nthermogeen\nthermograaf\nthermografie\nthermokoppel\nthermometer\nthermometerbuis\nthermometerschaal\nthermometerstand\nthermonucleair\nthermopane\nthermoplast\nthermoplastisch\nthermos\nthermoscoop\nthermosfeer\nthermosfles\nthermoskan\nthermostaat\nthermostaatkraan\nthermostatisch\nthermotherapie\nthesaurie\nthesaurier\nthesaurier-generaal\nthesaurus\nthese\nthesis\nthesisjaar\ntheïne\ntheïsme\ntheïst\ntheïsten\ntheïstisch\nthinner\nthomasslakken\nthomisme\nthomist\nthomistisch\nthorax\nthoraxfoto\nthorium\nthriller\nthrillerachtig\nthrillerauteur\nthrillerlezer\nthrillerschrijfsters\nthrillerschrijver\nthuis\nthuis voelen\nthuisadres\nthuisarbeid\nthuisbaan\nthuisbankieren\nthuisbasis\nthuisbehandeling\nthuisbevallen\nthuisbevalling\nthuisbezorgen\nthuisbezorging\nthuisbioscoop\nthuisblijfmoeder\nthuisblijfster\nthuisblijven\nthuisblijver\nthuisbrengen\nthuisclub\nthuiscomputer\nthuisduel\nthuisfluiter\nthuisfront\nthuisgebruik\nthuisgebruiker\nthuisgeraakt\nthuisgestuurd\nthuisgevoel\nthuishalen\nthuishaven\nthuishonk\nthuishoren\nthuishouden\nthuishulp\nthuishulpcentrale\nthuiskeer\nthuiskok\nthuiskomen\nthuiskomst\nthuiskopie\nthuiskopiëren\nthuiskrijgen\nthuisland\nthuislaten\nthuislevering\nthuisliggen\nthuisloos\nthuisloze\nthuislozenproject\nthuislozenzorg\nthuismarkt\nthuismatch\nthuisnaaister\nthuisnederlaag\nthuisnet\nthuisopdracht\nthuisoverwinning\nthuispagina\nthuisplaat\nthuisploeg\nthuispubliek\nthuisraken\nthuisreis\nthuisrijder\nthuisservice\nthuissituatie\nthuisspelend\nthuisspeler\nthuisstaat\nthuisstad\nthuistaal\nthuisteelt\nthuistest\nthuisverpleging\nthuisverzorging\nthuisvloot\nthuisvlucht\nthuisvoordeel\nthuiswacht\nthuiswedstrijd\nthuiswerk\nthuiswerken\nthuiswerker\nthuiswerkster\nthuiswonen\nthuiswonend\nthuiswonende\nthuiszege\nthuiszitten\nthuiszitter\nthuiszorg\nthuiszorginstelling\nthuiszorgmedewerkers\nthuiszorgorganisatie\nthuiszorgsysteem\nthuja\nthymine\nthymusklier\nthyristorbrug\nthyrs\nthyrsus\ntiaar\ntiara\ntic\ntichel\ntichelaar\ntichelbakker\ntichelen\nticheloven\ntichelsteen\ntichelwerk\nticje\ntickertape\nticket\nticketbureau\nticketprijs\nticketverkoop\ntiebreak\ntien\ntienarmig\ntiend\ntiendaags\ntiendblok\ntiendboek\ntiende\ntiende-eeuws\ntiendelig\ntienden\ntiendheffer\ntiendheffing\ntiendplichtig\ntiendrecht\ntiendubbel\ntienduizend\ntienduizendste\ntienduizendtal\ntiendverpachting\ntiendvrij\ntienen\ntiener\ntienerblad\ntienerdisco\ntieneridool\ntienerjaren\ntienerjongen\ntienerkamer\ntienerleeftijd\ntienermeisje\ntienermoeder\ntieneropvang\ntienertoerkaart\ntienerzwangerschap\ntienguldenstuk\ntienhoek\ntienjaarlijks\ntienjaars\ntienjaarsrente\ntienjarenplan\ntienjarenprogramma\ntienjarig\ntienjarige\ntienkamp\ntienkamper\ntienkoppig\ntienling\ntienmaal\ntienman\ntienmanschap\ntienponder\ntienpuntenplan\ntienregelig\ntienrittenkaart\ntiens\ntienstuiverstuk\ntiental\ntientallig\ntientje\ntientjeslid\ntientonner\ntienurendag\ntienuurjournaal\ntienvoud\ntienvoudig\ntienzijdig\ntier\ntiercé\ntierelantijn\ntierelantijntje\ntierelieren\ntieren\ntierig\ntierigheid\ntierlantijn\ntierlantijntje\ntiet\ntifosi\ntig\ntij\ntijd\ntijdaanduiding\ntijdaanwijzing\ntijdaffaire\ntijdbalk\ntijdbeeld\ntijdbepaling\ntijdbesparing\ntijdbesteding\ntijdbestek\ntijdbewaking\ntijdbom\ntijdcapsule\ntijdconstante\ntijdcontrole\ntijddomein\ntijde\ntijdeenheid\ntijdelijk\ntijdelijkheid\ntijdeloos\ntijdeloosheid\ntijdenlang\ntijdens\ntijdgebonden\ntijdgebrek\ntijdgeest\ntijdgenoot\ntijdgenote\ntijdgrens\ntijdig\ntijdigheid\ntijding\ntijdingzaal\ntijdinvariant\ntijdklok\ntijdkorting\ntijdkrediet\ntijdkring\ntijdkritisch\ntijdlang\ntijdlijn\ntijdlimiet\ntijdloos\ntijdloosheid\ntijdmaat\ntijdmachine\ntijdmechanisme\ntijdmelding\ntijdmeter\ntijdmeting\ntijdnood\ntijdopname\ntijdopnemer\ntijdopneming\ntijdpad\ntijdparameter\ntijdpassering\ntijdperk\ntijdplanning\ntijdreeks\ntijdreeksanalyse\ntijdregeling\ntijdregistratie\ntijdreis\ntijdreizen\ntijdrekening\ntijdrekenkunde\ntijdrekken\ntijdrelais\ntijdresponsie\ntijdrijden\ntijdrijder\ntijdrit\ntijdritfiets\ntijdritspecialist\ntijdrovend\ntijdruimte\ntijdsaanduiding\ntijdsafhankelijk\ntijdsafstand\ntijdsbalk\ntijdsbeeld\ntijdsbeleving\ntijdsbepaling\ntijdsbesef\ntijdsbeslag\ntijdsbesparing\ntijdsbesteding\ntijdsbestek\ntijdscapsule\ntijdschaal\ntijdschakelaar\ntijdschakeling\ntijdschakelklok\ntijdschema\ntijdschrift\ntijdschriftartikel\ntijdschriftenhandel\ntijdschriftenhandelaar\ntijdschriftenmarkt\ntijdschriftenoverzicht\ntijdschriftenportefeuille\ntijdschriftenuitgever\ntijdschriftenwinkel\ntijdschriftenzaal\ntijdschriftpublicatie\ntijdschriftredactie\ntijdschriftuitgever\ntijdschrijver\ntijdsdenken\ntijdsdimensie\ntijdsdocument\ntijdsdruk\ntijdsduur\ntijdseenheid\ntijdsein\ntijdsfactor\ntijdsgebonden\ntijdsgebrek\ntijdsgeest\ntijdsgewricht\ntijdsgrens\ntijdshorizon\ntijdsindeling\ntijdsinterval\ntijdsinvariant\ntijdsinvestering\ntijdskader\ntijdsklem\ntijdslijn\ntijdslimiet\ntijdslot\ntijdsluiter\ntijdsomstandigheid\ntijdsorde\ntijdsoriëntatie\ntijdsoverschrijding\ntijdspad\ntijdspanne\ntijdspassering\ntijdsperiode\ntijdsperspectief\ntijdsplan\ntijdsplanning\ntijdsrelatie\ntijdsruimte\ntijdsschema\ntijdsspanne\ntijdstabel\ntijdstap\ntijdstip\ntijdstraf\ntijdstroom\ntijdsverlies\ntijdsverloop\ntijdsverschijnsel\ntijdsverschil\ntijdsverspilling\ntijdsvolgorde\ntijdswaarde\ntijdswinst\ntijdtabel\ntijdtafel\ntijdvak\ntijdverbetering\ntijdverdrijf\ntijdverdrijvend\ntijdverlies\ntijdvers\ntijdverschijnsel\ntijdverschil\ntijdverschuiving\ntijdverslindend\ntijdverspilling\ntijdvertraging\ntijdverzuim\ntijdwaarneemster\ntijdwaarnemer\ntijdwaarneming\ntijdwijzer\ntijdwinst\ntijdzang\ntijdzone\ntijen\ntijgen\ntijger\ntijgerachtig\ntijgerbalsem\ntijgerbont\ntijgerbrood\ntijgeren\ntijgerhaai\ntijgerhond\ntijgerin\ntijgerjacht\ntijgerkat\ntijgerlelie\ntijgerprint\ntijgerslang\ntijgertje\ntijgerval\ntijgervel\ntijhaven\ntijk\ntijken\ntijloos\ntijm\ntijmkruid\ntijrivier\ntik\ntikfout\ntikje\ntikjuffrouw\ntikkel\ntikkelen\ntikkeltje\ntikkeltjes\ntikken\ntikker\ntikkertje\ntikmachine\ntikschrift\ntiksel\ntiksnelheid\ntikster\ntiktak\ntiktakken\ntikwerk\ntil\ntilapia\ntilbaar\ntilbury\ntilde\ntillen\ntillift\ntilwerk\ntimbaal\ntimbre\ntime\ntime-out\ntimemanagement\ntimen\ntimer\ntimesharing\ntimide\ntimiditeit\ntiming\ntimmeraar\ntimmerage\ntimmerbedrijf\ntimmerdoos\ntimmeren\ntimmerfabriek\ntimmergereedschap\ntimmerhout\ntimmering\ntimmerloods\ntimmerman\ntimmermansbaas\ntimmermansjongen\ntimmermansoog\ntimmermanspotlood\ntimmermanswerkplaats\ntimmermanszoon\ntimmerwerf\ntimmerwerk\ntimmerwerkplaats\ntimmerwinkel\ntimocratie\ntimotheegras\ntimp\ntimpaan\ntimpen\ntin\ntinader\ntinas\ntinctuur\ntinerts\ntinfoelie\ntinfolie\ntingelen\ntingeling\ntingelingeling\ntingeltangel\ntinhandel\ntinkelen\ntinken\ntinmijn\ntinne\ntinnef\ntinnegieter\ntinnegieterij\ntinnegoed\ntinnen\ntinneroy\ntinsoldeer\ntinsteen\ntint\ntintel\ntintelen\ntintelig\ntinteling\ntintelogen\ntintelton\ntinten\ntinto\ntinwerk\ntinwinning\ntip\ntipgeefster\ntipgeld\ntipgever\ntipi\ntiplijn\ntipmuts\ntipparade\ntippel\ntippelaar\ntippelaarster\ntippelcircuit\ntippelen\ntippelplaats\ntippelplaatsen\ntippelprostitutie\ntippelverbod\ntippelzone\ntippen\ntips\ntipsy\ntiptoets\ntiptop\ntirade\ntirades\ntirailleren\ntirailleur\ntirailleurslinie\ntirailleursvuur\ntiramisu\ntiran\ntirannie\ntiranniek\ntiranniseren\ntiras\ntissue\ntitaan\ntitan\ntitanen\ntitanengevecht\ntitanenstrijd\ntitanenwerk\ntitaniet\ntitanisch\ntitanium\ntitel\ntitelaspiraties\ntitelbalk\ntitelbescherming\ntitelbeschrijving\ntitelblad\ntitelcatalogus\ntiteldebat\ntitelen\ntitelfavoriet\ntitelfeest\ntitelgevecht\ntitelheld\ntitelhouder\ntitelhoudster\ntitelkaart\ntitelkandidaat\ntitellied\ntitelloos\ntitelnummer\ntitelpagina\ntitelplaat\ntitelprent\ntitelpretendent\ntitelprolongatie\ntitelrace\ntitelrol\ntitels\ntitelsong\ntitelstrijd\ntitelstuk\ntiteltoernooi\ntitelverdediger\ntitelverdedigster\ntitelverhaal\ntitelvignet\ntitelvoerend\ntitelwedstrijd\ntiter\ntitratie\ntitreren\ntittel\ntitulair\ntitularis\ntitulatuur\ntituleren\ntiërceren\ntiërcering\ntja\ntjalk\ntjalkschip\ntjalkschipper\ntjap\ntjappen\ntjaptjoi\ntjerk\ntjiftjaf\ntjilpen\ntjingel\ntjingelen\ntjirpen\ntjitjak\ntjoepen\ntjok\ntjokken\ntjokvol\ntjonge\ntjotter\ntl-armatuur\ntl-balk\ntl-buis\ntl-licht\ntl-verlichting\ntmesis\ntoast\ntoasten\ntoaster\ntoastje\ntobbe\ntobbedansen\ntobben\ntobber\ntobberd\ntobberig\ntobberij\ntobogan\ntobster\ntoccata\ntoch\ntocht\ntochtband\ntochtdeur\ntochtdichtheid\ntochten\ntochtgat\ntochtgenoot\ntochtgenote\ntochthond\ntochtig\ntochtigheid\ntochtlat\ntochtprofiel\ntochtraam\ntochtscherm\ntochtsloot\ntochtstrip\ntochtvrij\ntochtwerend\ntochtwering\ntochtweringen\ntod\ntoddy\ntoe\ntoe-eigenen\ntoe-eigening\ntoean\ntoebedeeld\ntoebedelen\ntoebedeling\ntoebedenken\ntoebehoren\ntoebereiden\ntoebereiding\ntoebereidselen\ntoebijten\ntoebinden\ntoeblaffen\ntoebrengen\ntoebroek\ntoebrullen\ntoebuigen\ntoeclip\ntoedammen\ntoedekken\ntoedelen\ntoedeling\ntoedenken\ntoedichten\ntoedienen\ntoediening\ntoedieningsvorm\ntoedoen\ntoedraaien\ntoedracht\ntoedragen\ntoedrinken\ntoedrukken\ntoef\ntoefluisteren\ntoegaan\ntoegang\ntoegangsbeleid\ntoegangsbewijs\ntoegangsbiljet\ntoegangscode\ntoegangscontrole\ntoegangsdeur\ntoegangsdrempel\ntoegangsexamen\ntoegangsgeld\ntoegangshal\ntoegangshek\ntoegangskaart\ntoegangsluik\ntoegangsnummer\ntoegangspas\ntoegangspoort\ntoegangsprijs\ntoegangssnelheid\ntoegangsticket\ntoegangstijd\ntoegangsverbod\ntoegangsweg\ntoegankelijk\ntoegankelijkheid\ntoegedaan\ntoegeeflijk\ntoegeeflijkheid\ntoegefelijk\ntoegefelijkheid\ntoegegeven\ntoegejuicht\ntoegeleid\ntoegenegen\ntoegenegenheid\ntoegepast\ntoegespitst\ntoegestaan\ntoegestemd\ntoegetakeld\ntoegeven\ntoegevend\ntoegevendheid\ntoegeving\ntoegevoegd\ntoegewend\ntoegewijd\ntoegift\ntoegooien\ntoegrijnzen\ntoegrijpen\ntoegroeien\ntoehalen\ntoehappen\ntoehoorder\ntoehoorderes\ntoehoorders\ntoehoorster\ntoehoren\ntoejuichen\ntoejuiching\ntoejuichingen\ntoekan\ntoekennen\ntoekenning\ntoekenningssysteem\ntoekeren\ntoekijken\ntoekijker\ntoeknijpen\ntoeknikken\ntoeknopen\ntoekomen\ntoekomend\ntoekomende\ntoekomst\ntoekomstbeeld\ntoekomstdroom\ntoekomstgericht\ntoekomstgerichtheid\ntoekomstideaal\ntoekomstig\ntoekomstmogelijkheden\ntoekomstmogelijkheid\ntoekomstmuziek\ntoekomstperspectief\ntoekomstplaatje\ntoekomstplan\ntoekomstplannen\ntoekomstproject\ntoekomstroman\ntoekomstscenario\ntoekomstschets\ntoekomststaat\ntoekomststrategie\ntoekomstvastheid\ntoekomstverkenning\ntoekomstverwachting\ntoekomstvisie\ntoekomstvisioen\ntoekomstwaarde\ntoekruid\ntoekunnen\ntoelaatbaar\ntoelaatbaarheid\ntoelachen\ntoelage\ntoelast\ntoelaten\ntoelating\ntoelatingsbeleid\ntoelatingsbewijs\ntoelatingscommissie\ntoelatingscriterium\ntoelatingseis\ntoelatingsexamen\ntoelatingskaart\ntoelatingsnummer\ntoelatingsprocedure\ntoelatingsproef\ntoelatingsregeling\ntoelatingstest\ntoeleg\ntoeleggen\ntoeleiden\ntoeleiding\ntoeleven\ntoeleverancier\ntoeleveren\ntoelevering\ntoeleveringsbedrijf\ntoeleveringsindustrie\ntoelichten\ntoelichting\ntoelonken\ntoeloop\ntoelopen\ntoeluisteren\ntoemaat\ntoemaatje\ntoemaken\ntoemeten\ntoemetselen\ntoemetsen\ntoen\ntoenaaien\ntoenaam\ntoenadering\ntoenaderingspoging\ntoenaderingspolitiek\ntoenaderingsproces\ntoename\ntoendra\ntoendragebied\ntoenemen\ntoenemend\ntoeneming\ntoenijpen\ntoenmaals\ntoenmalig\ntoentertijd\ntoepad\ntoepasbaar\ntoepasbaarheid\ntoepasbaarheidsonderzoek\ntoepasselijk\ntoepasselijkheid\ntoepassen\ntoepassing\ntoepassingsgebied\ntoepassingsgericht\ntoepassingsgerichtheid\ntoepassingsmogelijkheid\ntoepassingsprogramma\ntoepassingssoftware\ntoepen\ntoeplakken\ntoepleisteren\ntoeplooien\ntoer\ntoerauto\ntoerbeurt\ntoerbeurtsysteem\ntoerbus\ntoercaravan\ntoereiken\ntoereikend\ntoerekenbaar\ntoerekenbaarheid\ntoerekenen\ntoerekening\ntoerekeningsvatbaar\ntoerekeningsvatbaarheid\ntoeren\ntoerenregelaar\ntoerenregeling\ntoerental\ntoerenteller\ntoerfiets\ntoerisme\ntoerisme-industrie\ntoerismeboycot\ntoerismebranche\ntoerismebureau\ntoerismesector\ntoerist\ntoeristenattractie\ntoeristenauto\ntoeristenbelasting\ntoeristenbond\ntoeristenbranche\ntoeristenbureau\ntoeristenbus\ntoeristencentrum\ntoeristeneiland\ntoeristenfuik\ntoeristenhotel\ntoeristenindustrie\ntoeristenkaart\ntoeristenklasse\ntoeristenmarkt\ntoeristenmentaliteit\ntoeristenmenu\ntoeristenoord\ntoeristenorganisatie\ntoeristenplaats\ntoeristensector\ntoeristenseizoen\ntoeristenstad\ntoeristenstroom\ntoeristentaxi\ntoeristentrekker\ntoeristenval\ntoeristenvisum\ntoeristenwagen\ntoeristisch\ntoeristisch-recreatief\ntoerit\ntoeritdosering\ntoerjacht\ntoermalijn\ntoermotor\ntoernooi\ntoernooiarts\ntoernooiboek\ntoernooidatum\ntoernooidirecteur\ntoernooien\ntoernooiencircuit\ntoernooileiding\ntoernooiopzet\ntoernooiorganisatie\ntoernooioverwinning\ntoernooischema\ntoernooispel\ntoernooispeler\ntoernooiveld\ntoernooiwinst\ntoernooizaal\ntoernooizege\ntoeroepen\ntoerrijtuigen\ntoertocht\ntoerusten\ntoerusting\ntoervaartnet\ntoeschietelijk\ntoeschietelijkheid\ntoeschieten\ntoeschietreflex\ntoeschijnen\ntoeschouwen\ntoeschouwer\ntoeschouwers\ntoeschouwersaantal\ntoeschouwersblik\ntoeschouwster\ntoeschreeuwen\ntoeschrijven\ntoeschrijving\ntoeschroeven\ntoeschuiven\ntoeslaan\ntoeslag\ntoeslagbiljet\ntoeslagmap\ntoeslagregeling\ntoeslede\ntoesluiten\ntoesmijten\ntoesnauwen\ntoesnellen\ntoesnijden\ntoesnoeren\ntoespeld\ntoespelden\ntoespelen\ntoespeling\ntoespijs\ntoespitsen\ntoespitsing\ntoespraak\ntoespreken\ntoespringen\ntoestaan\ntoestand\ntoestandsbepaling\ntoestandsvariabele\ntoestappen\ntoesteken\ntoestel\ntoestelfinale\ntoestellen\ntoesteloefening\ntoestemmen\ntoestemming\ntoestemmingsbeleid\ntoestemmingsprocedure\ntoestemmingsvereiste\ntoestemmingsverklaring\ntoestemmingswet\ntoestoppen\ntoestoten\ntoestrijken\ntoestromen\ntoestroming\ntoesturen\ntoet\ntoetakelen\ntoetasten\ntoetel\ntoetellen\ntoeten\ntoeter\ntoeteren\ntoeters\ntoeterzat\ntoethoorn\ntoetje\ntoetreden\ntoetreding\ntoetredingscriteria\ntoetredingsdatum\ntoetredingsdrempel\ntoetredingseis\ntoetredingsonderhandelingen\ntoetredingsproces\ntoetredingsverdrag\ntoetredingsvoorwaarde\ntoetrekken\ntoets\ntoetsaanslag\ntoetsbaar\ntoetscombinatie\ntoetsen\ntoetsenbediening\ntoetsenbord\ntoetsencombinatie\ntoetseninstrument\ntoetsenist\ntoetseniste\ntoetsenman\ntoetser\ntoetsfunctie\ntoetsing\ntoetsingscommissie\ntoetsingsconferentie\ntoetsingscriterium\ntoetsingsgrootheid\ntoetsingskader\ntoetsingsprocedure\ntoetsingsrecht\ntoetsingssysteem\ntoetsinstrument\ntoetsnaald\ntoetsontwikkeling\ntoetssteen\ntoetsstenen\ntoeval\ntoevallen\ntoevallig\ntoevalligerwijs\ntoevalligerwijze\ntoevalligheid\ntoevalseffect\ntoevalsfactor\ntoevalsfluctuatie\ntoevalstreffer\ntoeven\ntoeverlaat\ntoevertrouwen\ntoevertrouwing\ntoevliegen\ntoevloed\ntoevloeien\ntoevlucht\ntoevluchtshuis\ntoevluchtsoord\ntoevoegbaar\ntoevoegen\ntoevoeging\ntoevoegsel\ntoevoegsels\ntoevoer\ntoevoerbak\ntoevoerbuis\ntoevoeren\ntoevoerkanaal\ntoevoerleiding\ntoevoerweg\ntoevouwen\ntoevriezen\ntoewaaien\ntoewas\ntoewater\ntoewenden\ntoewensen\ntoewerken\ntoewerpen\ntoewijden\ntoewijding\ntoewijsbaar\ntoewijzen\ntoewijzing\ntoewijzingsbeleid\ntoewijzingsprocedure\ntoewijzingssysteem\ntoewuiven\ntoezang\ntoezeggen\ntoezegging\ntoezenden\ntoezender\ntoezending\ntoezicht\ntoezicht houden\ntoezichter\ntoezichthoudend\ntoezichthouder\ntoezichtkamer\ntoezichtorgaan\ntoezichtsgebied\ntoezichtsorgaan\ntoezien\ntoeziend\ntoeziener\ntoezingen\ntoezwaaien\ntof\ntoffee\ntoffel\ntofoe\ntoga\ntogen\ntoges\ntoilet\ntoiletartikel\ntoiletartikelen\ntoiletbenodigdheden\ntoiletbezoek\ntoiletblok\ntoiletbril\ntoiletdeur\ntoiletdoos\ntoiletemmer\ntoiletgang\ntoiletgarnituur\ntoiletgelegenheid\ntoiletgroepen\ntoiletjuffrouw\ntoiletkast\ntoiletkastje\ntoiletmaken\ntoiletpapier\ntoiletpot\ntoiletreiniger\ntoiletruimte\ntoiletspiegel\ntoiletspoeling\ntoilettafel\ntoilettas\ntoiletteren\ntoiletwagen\ntoiletzeep\ntok\ntokayer\ntoken\ntokkelaar\ntokkelen\ntokkeling\ntokkelinstrument\ntokken\ntoko\ntokohouder\ntol\ntolbaas\ntolbeambte\ntolboom\ntolbrug\ntolerabel\ntolerant\ntolerantie\ntolerantiedrempel\ntolerantiegrens\ntolereren\ntolgaarder\ntolgeld\ntolheffing\ntolhek\ntolhuis\ntolk\ntolk-vertaler\ntolkantoor\ntolken\ntolkenprobleem\ntolkenschool\ntollen\ntollenaar\ntolletje\ntolmuren\ntolmuur\ntolplan\ntolpoort\ntolrecht\ntolsysteem\ntoltarief\ntoltunnel\ntolueen\ntolunie\ntolverbond\ntolvrij\ntolvrijheid\ntolweg\ntolwezen\ntomaat\ntomaatkleurig\ntomahawk\ntomatenkas\ntomatenketchup\ntomatenpuree\ntomatensalade\ntomatensap\ntomatensaus\ntomatensla\ntomatensoep\ntomatenteelt\ntombak\ntombe\ntombola\ntomboy\ntomeloos\ntomeloosheid\ntomen\ntommy\ntomografie\ntompoes\ntompouce\ntomtom\nton\ntonaal\ntonaliteit\ntonbrug\ntondel\ntondeldoos\ntonder\ntondeuse\ntoneel\ntoneelaanwijzing\ntoneelacademie\ntoneelachtig\ntoneelauteur\ntoneelavond\ntoneelbeeld\ntoneelbenodigdheden\ntoneelbestel\ntoneelbewerking\ntoneelcarrière\ntoneelclub\ntoneelcriticus\ntoneeldebuut\ntoneeldecor\ntoneeldichter\ntoneeleffect\ntoneelervaring\ntoneelgezelschap\ntoneelgroep\ntoneelheld\ntoneelhuis\ntoneelkapper\ntoneelkennis\ntoneelkijker\ntoneelknecht\ntoneelkostuum\ntoneelkring\ntoneelkritiek\ntoneelkunst\ntoneelkunstenaar\ntoneellaars\ntoneelleider\ntoneellicht\ntoneelliefhebber\ntoneelliefhebster\ntoneelliteratuur\ntoneelloopbaan\ntoneelmaker\ntoneelmatig\ntoneelmeester\ntoneelmonoloog\ntoneelmuziek\ntoneelopleiding\ntoneelopvoering\ntoneelpraktijk\ntoneelprijs\ntoneelproductie\ntoneelrecensent\ntoneelregie\ntoneelregisseur\ntoneelrepetitie\ntoneelrol\ntoneelruimte\ntoneelscherm\ntoneelschikking\ntoneelschool\ntoneelschrijfster\ntoneelschrijver\ntoneelscript\ntoneelscène\ntoneelseizoen\ntoneelspeelster\ntoneelspel\ntoneelspelen\ntoneelspeler\ntoneelstuk\ntoneeltaal\ntoneeltekst\ntoneeltje\ntoneeltoren\ntoneeluitvoering\ntoneelverbond\ntoneelvereniging\ntoneelversie\ntoneelvertoning\ntoneelvoorstelling\ntoneelwereld\ntoneelwerk\ntoneelwerkgroep\ntoneelzaal\ntonelist\ntonen\ntoner\ntong\ntongbeen\ntongbeslag\ntongblaar\ntongbreker\ntongen\ntongenworst\ntongetje\ntongewelf\ntongfilet\ntongkijker\ntongkus\ntongpiercing\ntongpunt\ntongriem\ntongschar\ntongschraper\ntongstrelend\ntongue in cheek\ntongval\ntongvormig\ntongwerk\ntongwortel\ntongzoen\ntongzoenen\ntonic\ntonica\ntonicum\ntonijn\ntonijnsalade\ntonijnvangst\ntonijnvisser\ntonijnvisserij\ntonisch\ntonkaboom\ntonkaboon\ntonkilometer\ntonkinstok\ntonmolen\ntonnage\ntonnagegrondslag\ntonneau\ntonnen\ntonnenmaat\ntonnenstelsel\ntonner\ntonnetje\ntonrond\ntonrondte\ntonsil\ntonsillectomie\ntonsillitis\ntonster\ntonsuur\ntontine\ntonus\ntoog\ntoogdag\ntooghanger\ntoogpraat\ntooi\ntooien\ntooisel\ntool\ntoom\ntoompje\ntoon\ntoonaangevend\ntoonaard\ntoonafstand\ntoonbaar\ntoonbank\ntoonbanksysteem\ntoonbankuitgifte\ntoonbankverkoop\ntoonbeeld\ntoonbrood\ntoondemper\ntoonder\ntoonderpapier\ntoondichter\ntoondichteres\ntoonfrequent\ntoongat\ntoongenerator\ntoongeslacht\ntoongevend\ntoongever\ntoonhoogte\ntoonkamer\ntoonkunst\ntoonkunstenaar\ntoonkunstenares\ntoonladder\ntoonloos\ntoonschaal\ntoonsoort\ntoonsterkte\ntoonsysteem\ntoontaal\ntoonteken\ntoontje\ntoontrap\ntoonvast\ntoonvorming\ntoonzaal\ntoonzetten\ntoonzetter\ntoonzetting\ntoorn\ntoornen\ntoornig\ntoorts\ntoortsdrager\ntoortslicht\ntoost\ntoosten\ntooster\ntoot\ntootschoen\ntop\ntop acht\ntop drie\ntop honderd\ntop secret\ntop tien\ntop twaalf\ntop twintig\ntop veertig\ntop vier\ntop vijf\ntop vijftien\ntop zes\ntop-down\ntop-downbenadering\ntopaankoop\ntopaas\ntopadviseur\ntopadvocaat\ntopambtenaar\ntopamusement\ntopas\ntopatleet\ntopatlete\ntopattractie\ntopazen\ntopbaan\ntopbankier\ntopbasketbal\ntopbedrijf\ntopberaad\ntopbestemming\ntopbezetting\ntopbijeenkomst\ntopcapaciteit\ntopclub\ntopcoach\ntopcompetitie\ntopconditie\ntopconferentie\ntopcrimineel\ntopdag\ntopdiplomaat\ntopdrukte\ntopdruktes\ntopduel\ntopduo\ntopevenement\ntopfavoriet\ntopfiguur\ntopfit\ntopformatie\ntopfunctie\ntopfunctionaris\ntopgeheim\ntopgesprek\ntopgevel\ntopgroep\ntophit\ntophockey\ntophoek\ntopholding\ntophypotheek\ntopic\ntopinamboer\ntopindustrieel\ntopinkomen\ntopinstituut\ntopisch\ntopjaar\ntopje\ntopjob\ntopjudo\ntopkader\ntopkandidaat\ntopkeeper\ntopklasse\ntopkoers\ntopkok\ntopkunst\ntopkwaliteit\ntoplaag\ntopleiding\ntopless\ntoplicht\ntopliga\ntoplijn\ntoplijst\ntoplocatie\ntopmaand\ntopman\ntopmanagement\ntopmanager\ntopmedewerker\ntopmensen\ntopmerk\ntopmilitair\ntopmodel\ntopniveau\ntopograaf\ntopografie\ntopografisch\ntopologie\ntopologisch\ntopoloog\ntoponderhandelaar\ntopondernemer\ntoponderzoek\ntoponiem\ntopontmoeting\ntopontwerper\ntoponymie\ntoponymisch\ntopopleiding\ntoporgaan\ntoporkest\ntopos\ntopoverleg\ntoppen\ntoppenant\ntoppenend\ntopper\ntoppereend\ntopperiode\ntopping\ntopplaats\ntopploeg\ntoppolitici\ntoppoliticus\ntoppositie\ntopprestatie\ntopprijs\ntopprioriteit\ntopproduct\ntopproductie\ntoppunt\ntopregisseur\ntoprenner\ntoprestaurant\ntoproeien\ntops\ntopsalaris\ntopschaak\ntopschaatser\ntopschutter\ntopscoorder\ntopscore\ntopscorer\ntopscorerslijst\ntopsegment\ntopseizoen\ntopsnelheid\ntopspeelster\ntopspeler\ntopspin\ntopspits\ntopsport\ntopsportbeleid\ntopsportbeleidsplan\ntopsportcarrière\ntopsportcoördinator\ntopsporter\ntopsportgeneeskunde\ntopsporthal\ntopsportklimaat\ntopsportland\ntopsportmanager\ntopsportnota\ntopsportster\ntopsprinter\ntopstander\ntopsteen\ntopstructuur\ntopstuk\ntoptalent\ntoptarief\ntopteam\ntoptennis\ntoptennisser\ntoptienspeler\ntoptijd\ntoptijdschrift\ntoptoernooi\ntoptrainer\ntoptransfer\ntoptrio\ntopturnen\ntopuniversiteit\ntopverkoper\ntopversie\ntopvoetbal\ntopvoetballer\ntopvolleybal\ntopvorm\ntopvrouw\ntopwaarde\ntopwedstrijd\ntopweek\ntopweekeinde\ntopwerk\ntopwijn\ntopzakenlieden\ntopzeil\ntopzeilskoelte\ntopzwaar\ntopzwemmen\ntopzwemmer\ntopzwemster\ntoque\ntor\ntorderen\ntoreador\ntoren\ntorenblazer\ntorenbouw\ntorenbrand\ntorenen\ntorenflat\ntorengebouw\ntorenhoog\ntorenkamer\ntorenklok\ntorenkraai\ntorenoffer\ntorenspits\ntorentje\ntorentjesoverleg\ntorentrans\ntorentrap\ntorenuil\ntorenvalk\ntorenwachter\ntorero\ntori\ntorinstinct\ntorment\ntormenteren\ntorn\ntornado\ntornen\ntornmesje\ntornooi\ntornooien\ntornooispel\ntornooiveld\ntoros\ntorpederen\ntorpedering\ntorpedist\ntorpedo\ntorpedoboot\ntorpedobootjager\ntorpedojager\ntorpedolanceerbuis\ntorpedovormig\ntorretje\ntors\ntorsen\ntorsie\ntorsiestijfheid\ntorso\ntortel\ntortelduif\ntortelduiven\ntortelen\ntortilla\ntortillachips\ntortuur\ntorus\ntoss\ntossen\ntoste\ntosti\ntosti-ijzer\ntostiapparaat\ntot\ntot bloedens toe\ntot dusver\ntot dusverre\ntot stand komen\ntot stikkens toe\ntot vervelens toe\ntotaal\ntotaalaanbod\ntotaalaanpak\ntotaalakkoord\ntotaalbedrag\ntotaalbeeld\ntotaalbegrip\ntotaalbestand\ntotaalbudget\ntotaalcijfer\ntotaalconcept\ntotaalcontrole\ntotaalervaring\ntotaalgeluid\ntotaalgewicht\ntotaalindruk\ntotaalklank\ntotaalkolom\ntotaalomzet\ntotaaloordeel\ntotaalopbrengst\ntotaaloplossing\ntotaaloverzicht\ntotaalpakket\ntotaalplaatje\ntotaalplan\ntotaalprijs\ntotaalproduct\ntotaalprogramma\ntotaalproject\ntotaalrendement\ntotaalresultaat\ntotaalscore\ntotaalspektakel\ntotaalstand\ntotaaltheater\ntotaaltijd\ntotaalverbod\ntotaalvisie\ntotaalvoetbal\ntotaalwaardering\ntotaalweigeraar\ntotaalweigeren\ntotal loss\ntotalisator\ntotaliseren\ntotalitair\ntotalitarisme\ntotaliteit\ntotaliter\ntotdat\ntotebel\ntotem\ntotemisme\ntotemistisch\ntotempaal\ntoto\ntotok\ntotoks\ntotstandbrenging\ntotstandkoming\ntouche\ntoucher\ntoucheren\ntouchpad\ntouchscreen\ntouperen\ntoupet\ntour\ntourdirectie\ntouretappe\ntouringcar\ntouringcarbedrijf\ntouristclass\ntourkaravaan\ntourmanager\ntournedos\ntournee\ntourniquet\ntournure\ntouroperator\ntouroverwinning\ntourschema\ntourwinnaar\ntout court\ntouw\ntouwbaan\ntouwdraaien\ntouwdraaier\ntouwen\ntouwer\ntouwerij\ntouwfabriek\ntouwkleurig\ntouwklimmen\ntouwladder\ntouwslager\ntouwslagerij\ntouwtje\ntouwtjespringen\ntouwtrekken\ntouwtrekker\ntouwtrekkerij\ntouwwerk\ntovenaar\ntovenaarsleerling\ntovenaarster\ntovenares\ntovenarij\ntoveraar\ntoverachtig\ntoverbal\ntoverbeeld\ntoverbeker\ntoverboek\ntovercirkel\ntoverdoos\ntoverdrank\ntoveren\ntoveres\ntoverfee\ntoverfiguur\ntoverfluit\ntoverformule\ntoverformulier\ntovergodin\ntoverheks\ntoverij\ntoverkijker\ntoverklank\ntoverkol\ntoverkracht\ntoverkring\ntoverkunst\ntoverlantaarn\ntoverlantaren\ntovermiddel\ntoverpaleis\ntoverroede\ntoverslag\ntoverspiegel\ntoverspreuk\ntoverstaf\ntoverstokje\ntovertuin\ntovervierkant\ntoverwereld\ntoverwoord\ntoxiciteit\ntoxicologie\ntoxicologisch\ntoxicoloog\ntoxicomanie\ntoxicose\ntoxicum\ntoxine\ntoxisch\ntoxoplasmose\ntoynbeewerk\ntra\ntraag\ntraagheid\ntraagzaam\ntraan\ntraanachtig\ntraanbeen\ntraanbuis\ntraangas\ntraangasbom\ntraangasgranaat\ntraanklier\ntraankoker\ntraankokerij\ntraanloos\ntraanogen\ntraanoog\ntraanvocht\ntraceerbaar\ntraceerbaarheid\ntraceerwerk\ntraceren\ntracering\ntrachea\ntracheaal\ntrachee\ntracheeën\ntracheotomie\ntrachiet\ntrachoom\ntrachten\ntrack\ntrackrecord\ntractie\ntractiecontrole\ntractor\ntractorbestuurder\ntractorenfabriek\ntractorfeed\ntracé\ntracébesluit\ntracédeel\ntracékeuze\ntracés\ntrad\ntraditie\ntraditiegetrouw\ntraditierijk\ntraditional\ntraditionalisme\ntraditionalist\ntraditionalistisch\ntraditioneel\ntrafiek\ntrafikant\ntrafo\ntragedie\ntragicus\ntragiek\ntragikomedie\ntragikomisch\ntragisch\ntragédien\ntragédienne\ntrailer\ntrain\ntrainee\ntrainen\ntrainer\ntrainer-coach\ntrainer-speler\ntraineren\ntrainersbank\ntrainerscarrière\ntrainerschap\ntrainerscursus\ntrainerslicentie\ntrainersloopbaan\ntrainersstaf\ntrainersvak\ntrainerswissel\ntraining\ntraining on the job\ntrainingsaanpak\ntrainingsachterstand\ntrainingsarbeid\ntrainingsavond\ntrainingsbaan\ntrainingsbroek\ntrainingscentrum\ntrainingscomplex\ntrainingscursus\ntrainingsdag\ntrainingsdagen\ntrainingsdier\ntrainingsfaciliteiten\ntrainingsgroep\ntrainingsijver\ntrainingsinstituut\ntrainingsjack\ntrainingskamp\ntrainingskosten\ntrainingsmaatje\ntrainingsmethode\ntrainingsmogelijkheden\ntrainingsoord\ntrainingsopbouw\ntrainingsopzet\ntrainingspak\ntrainingsperiode\ntrainingspraktijk\ntrainingsprogramma\ntrainingsrit\ntrainingsschema\ntrainingssessie\ntrainingssituatie\ntrainingsstage\ntrainingstijd\ntrainingstocht\ntrainingsveld\ntrainingsvlucht\ntrainingsweek\ntrainingswerk\ntrainster\ntraite\ntraiteur\ntraject\ntrajectbegeleider\ntrajectbegeleiding\ntrajectcontrole\ntrajectkaart\ntrajectnota\ntrajectplan\ntraktaat\ntraktaatje\ntraktant\ntraktatie\ntraktement\ntraktementsdag\ntraktementsverhoging\ntrakteren\ntralala\ntralie\ntraliedeur\ntraliehek\ntralieluik\ntralies\ntralievenster\ntraliewerk\ntraliën\ntram\ntrambaan\ntrambalkon\ntrambedrijf\ntrambestuurder\ntrambestuurster\ntrambiljet\ntramconducteur\ntramcontroleur\ntramdienst\ntramhalte\ntramhuisje\ntramkaart\ntramkaartje\ntramlijn\ntrammaatschappij\ntrammelant\ntrammen\ntramnet\ntramontane\ntramp\ntrampersoneel\ntrampoline\ntrampolinespringen\ntramrail\ntramrails\ntramremise\ntramrijtuig\ntramrit\ntramstel\ntramtunnel\ntramverbinding\ntramverbod\ntramverkeer\ntramwagen\ntramweg\ntrance\ntranceachtig\ntrancemuziek\ntrancetoestand\ntranche\ntrancheermes\ntrancheervork\ntrancheren\ntranen\ntranendal\ntranenplaat\ntranentrekker\ntranenvloed\ntranig\ntranquillizer\ntrans\ntrans-Alpijns\ntrans-Atlantisch\ntrans-Europees\ntransactie\ntransactiebedrag\ntransactiebeheer\ntransactiekosten\ntransactievoorstel\ntransactievoorstellen\ntransactiewinst\ntransatlantieker\ntransbordeur\ntranscategoriaal\ntranscendent\ntranscendentaal\ntranscendentalisme\ntranscendentie\ntranscenderen\ntranscontinentaal\ntranscriberen\ntranscript\ntranscriptie\ntranscultureel\ntransen\ntransept\ntransfer\ntransferbureau\ntransfereren\ntransfergeld\ntransferium\ntransferlijst\ntransfermarkt\ntransferperikelen\ntransferperiode\ntransferprijs\ntransferpunt\ntransfersom\ntransfersysteem\ntransfervrij\ntransferwaarde\ntransfiguratie\ntransformatie\ntransformatiematrix\ntransformatieproces\ntransformationeel\ntransformationeel-generatief\ntransformator\ntransformatorblik\ntransformatorhuis\ntransformatorhuisje\ntransformatorolie\ntransformeren\ntransfusie\ntransfusiebloed\ntransfusiedienst\ntransgeen\ntransgenese\ntransgressie\ntransigeren\ntransistor\ntransistorradio\ntransit\ntransithal\ntransitie\ntransitief\ntransitiviteit\ntransitland\ntransito\ntransitohandel\ntransitohaven\ntransitoir\ntransitorium\ntransitoverkeer\ntransitowissel\ntransitruimte\ntransitverkeer\ntransitvisum\ntransiënt\ntransiënte\ntranslateur\ntranslatie\ntranslocatie\ntransmigrant\ntransmigratie\ntransmigratiebeleid\ntransmissie\ntransmissieapparatuur\ntransmissiecapaciteit\ntransmissiekosten\ntransmissielijn\ntransmissienet\ntransmissiesnelheid\ntransmissiesysteem\ntransmissietechniek\ntransmissietijd\ntransmissievertraging\ntransmutatie\ntransmutatieklassen\ntransmuteren\ntransnationaal\ntransoceanisch\ntransparant\ntransparantie\ntransparantje\ntranspiratie\ntranspiratiegeur\ntranspiratievocht\ntranspireren\ntransplantaat\ntransplantatie\ntransplantatiecentrum\ntransplantatiedoeleinden\ntransplantatiegeneeskunde\ntransplanteren\ntransponder\ntransponeren\ntransponeringstabel\ntransport\ntransportabel\ntransportactiviteiten\ntransportakte\ntransportarbeider\ntransportatie\ntransportbaan\ntransportband\ntransportbandensysteem\ntransportbataljon\ntransportbedrijf\ntransportbeleid\ntransportbranche\ntransportcapaciteit\ntransportcentrum\ntransporteenheid\ntransporteiwit\ntransporteren\ntransporteur\ntransportfirma\ntransportgroep\ntransporthelikopter\ntransportindustrie\ntransportinfrastructuur\ntransportkosten\ntransportland\ntransportleiding\ntransportlijn\ntransportlijsten\ntransportmarkt\ntransportmaterieel\ntransportmiddel\ntransportmiddelenindustrie\ntransportnet\ntransportnetwerk\ntransportondernemer\ntransportonderneming\ntransportorganisatie\ntransportprobleem\ntransportrecht\ntransportroute\ntransportschip\ntransportsector\ntransportsysteem\ntransporttoestel\ntransportverbod\ntransportvergunning\ntransportverpakking\ntransportverzekering\ntransportvliegtuig\ntransportwagen\ntransportwereld\ntransportwezen\ntranspositie\ntransseksisme\ntransseksualiteit\ntransseksueel\ntranssubstantiatie\ntransversaal\ntrant\ntrap\ntrapas\ntrapauto\ntrapbeweging\ntrapdelen\ntrapeze\ntrapezenummer\ntrapezewerk\ntrapezewerker\ntrapezium\ntrapeziumregel\ntrapeziumvorm\ntrapeziumvormig\ntrapezoïde\ntrapfunctie\ntrapgans\ntrapgat\ntrapgevel\ntraphal\ntrapkast\ntrapkruk\ntrapladder\ntrapleer\ntrapleuning\ntraplift\ntraploos\ntraplopen\ntraploper\ntrapmachine\ntrapnaaimachine\ntrappelen\ntrappelzak\ntrappen\ntrappenhal\ntrappenhuis\ntrappenlopen\ntrapper\ntrappers\ntrappist\ntrappistenbier\ntrappistenklooster\ntrapportaal\ntraproe\ntraproede\ntrapsgewijs\ntrapstoel\ntraptechniek\ntraptrede\ntraptree\ntrapveld\ntrapveldje\ntrapverlichting\ntrapzaal\ntras\ntrash\ntrashmetal\ntrasmortel\ntrasraam\ntrassant\ntrassen\ntrasseren\ntrassi\ntrauma\ntrauma-arts\ntraumacentrum\ntraumachirurg\ntraumaheli\ntraumahelikopter\ntraumateam\ntraumatisch\ntraumatiseren\ntraumatisering\ntraumatologie\ntraumatologisch\ntraumatoloog\ntraumaverwerking\ntravaat\ntravalje\ntravee\ntravellercheque\ntraven\ntravers\ntraverse\ntraverseren\ntravertijn\ntravesteren\ntravestie\ntravestiet\ntrawant\ntrawler\ntrawlnet\ntray\ntrechter\ntrechterbeker\ntrechterbekercultuur\ntrechtermond\ntrechtertje\ntrechtervormig\ntred\ntrede\ntreden\ntredmolen\ntree\ntreef\ntreeft\ntreek\ntreem\ntreeplank\ntreerad\ntrees\ntref\ntrefbaar\ntrefbal\ntrefcentrum\ntreffelijk\ntreffen\ntreffend\ntreffer\ntrefkans\ntrefpunt\ntrefwoord\ntrefwoordencatalogus\ntrefwoordenlijst\ntrefwoordenregister\ntrefzeker\ntrefzekerheid\ntreife\ntreil\ntreilen\ntreiler\ntrein\ntrein-tram-busdag\ntreinabonnement\ntreinbeambte\ntreinbesturing\ntreinbestuurder\ntreinbeïnvloeding\ntreinbotsing\ntreinchef\ntreinconducteur\ntreincoupé\ntreindienst\ntreindienstleider\ntreinen\ntreinenbouwer\ntreinenloop\ntreinkaartje\ntreinkaping\ntreinmaatschappij\ntreinmachinist\ntreinmaterieel\ntreinongeluk\ntreinongeval\ntreinpassagier\ntreinpersoneel\ntreinraampje\ntreinrail\ntreinramp\ntreinreis\ntreinreiziger\ntreinretour\ntreinrit\ntreinroof\ntreinrover\ntreinsmid\ntreinspoor\ntreinstaking\ntreinstation\ntreinstel\ntreinstoring\ntreinstudent\ntreinsurfen\ntreintarief\ntreintaxi\ntreinticket\ntreintjesgek\ntreintraject\ntreintransport\ntreintunnel\ntreinverbinding\ntreinverkeer\ntreinvervoer\ntreinwachter\ntreinwagon\ntreinziek\ntreiter\ntreiteraar\ntreiterachtig\ntreiteren\ntreiterig\ntreiterij\ntreitering\ntrek\ntrekbal\ntrekbank\ntrekbeest\ntrekbel\ntrekbeugel\ntrekbus\ntrekdag\ntrekdier\ntrekezel\ntrekgat\ntrekgedrag\ntrekgeld\ntrekgordijn\ntrekhaak\ntrekharmonica\ntrekhond\ntrekkamp\ntrekkar\ntrekkas\ntrekkebekken\ntrekkebenen\ntrekken\ntrekker\ntrekkerig\ntrekkerstent\ntrekking\ntrekkingslijst\ntrekkingsrecht\ntrekklep\ntrekkoord\ntrekkracht\ntrekletter\ntreklijn\ntreklust\ntrekmier\ntrekmieren\ntrekmuts\ntreknet\ntrekos\ntrekpaard\ntrekpad\ntrekpen\ntrekplaat\ntrekpleister\ntrekpop\ntrekpot\ntrekroute\ntrekschakelaar\ntrekschuit\ntreksel\ntrekslot\ntreksluiting\ntrekspier\ntreksprinkhaan\ntrekstang\ntrekster\ntreksterkte\ntrekstoot\ntrektafel\ntrektang\ntrektijd\ntrektocht\ntrektouw\ntrekvaart\ntrekvastheid\ntrekveer\ntrekvis\ntrekvogel\ntrekweg\ntrekwerk\ntrekzaag\ntrekzak\ntrema\ntremel\ntremolo\ntremor\ntremulant\ntremuleren\ntrenchcoat\ntrend\ntrendanalyse\ntrendbeleid\ntrendbreuk\ntrendgevoelig\ntrendgevoeligheid\ntrendkanaal\ntrendlijn\ntrendmatig\ntrendsettend\ntrendsetter\ntrendvolgend\ntrendvolger\ntrendvolgster\ntrendwatcher\ntrendy\ntrens\ntrenzen\ntrepaan\ntrepanatie\ntrepaneren\ntres\ntressen\ntreurberk\ntreurbeuk\ntreurbuis\ntreurdicht\ntreurdichter\ntreuren\ntreures\ntreurgewaad\ntreurig\ntreurigheid\ntreurigmakend\ntreurigstemmend\ntreurlied\ntreurmare\ntreurmars\ntreurmuziek\ntreurnis\ntreurroos\ntreurspel\ntreurspeldichter\ntreurtijd\ntreurtoneel\ntreurwilg\ntreurzang\ntreuzel\ntreuzelaar\ntreuzelaarster\ntreuzelachtig\ntreuzelen\ntreuzelig\ntreuzelwerk\ntrezoor\ntrezorie\ntrezorier\ntri\ntriade\ntriakel\ntrial\ntrial-and-error\ntriangel\ntriangulair\ntriangulatie\ntriarchie\ntrias\ntriatleet\ntriatlete\ntriatlon\ntribaal\ntribal\ntribalisme\ntribulatie\ntribulatiën\ntribunaal\ntribunaat\ntribune\ntribuneklant\ntribus\ntributyltin\ntribuun\ntribuut\ntrichine\ntrichinose\ntricky\ntricolor\ntricolore\ntricot\ntricotage\ntricotbroek\ntricotjes\ntriduüm\ntrielje\ntrien\ntriest\ntriestheid\ntriestig\ntriestigheid\ntrifolium\ntriforium\ntriggerhappy\ntriglief\ntrigonaal\ntrigonometrie\ntrigonometrisch\ntrijntje\ntrijntjes\ntrijp\ntrijpen\ntrijs\ntrijsen\ntriktrak\ntriktrakbord\ntriktrakken\ntriktrakspel\ntrilateraal\ntrilbeton\ntrilgras\ntrilhaar\ntrilhaarbewegingen\ntrilhaardiertje\ntriljard\ntriljoen\ntrillen\ntriller\ntrillerig\ntrillerigheid\ntrilling\ntrillingsdemper\ntrillingsgetal\ntrillingshinder\ntrillingsmeting\ntrillingsniveau\ntrillingsonscherpte\ntrillingsverschijnsel\ntrillingsvrij\ntrillingsvrije\ntrillingvrij\ntrilobiet\ntrilogie\ntrilplaat\ntrilveen\ntrilvrij\ntrimaran\ntrimbaan\ntrimester\ntrimestrieel\ntrimfiets\ntrimloop\ntrimmen\ntrimmer\ntrimparcours\ntrimparkoers\ntrimschaar\ntrimschema\ntrimschoen\ntriniteit\ntriniteitszondag\ntrio\ntriode\ntriolet\ntriomf\ntriomfaal\ntriomfalisme\ntriomfalistisch\ntriomfant\ntriomfantelijk\ntriomfator\ntriomfbalk\ntriomfboog\ntriomferen\ntriomfkreet\ntriomflied\ntriomfmars\ntriomfpoort\ntriomftocht\ntriomfwagen\ntriomfzuil\ntriool\ntrip\ntripang\ntripartiet\ntripartisering\ntripartite\ntripel\ntriphop\ntripleren\ntriplet\ntriplex\ntriplexglas\ntriplexhout\ntriplexplaat\ntripliceren\ntripliek\ntrippelen\ntrippelmaat\ntrippen\ntrips\ntriptiek\ntriptrap\ntriptrappen\ntrireem\ntrissen\ntritium\ntriton\ntritonshoorn\ntritonshoren\ntrits\ntritsen\ntriumvir\ntriumviraat\ntrivia\ntriviaal\ntriviaalliteratuur\ntrivialiseren\ntrivialisering\ntrivialiteit\ntrivium\ntriënnale\ntriëren\ntrochee\ntrocheus\ntrocheïsch\ntroebel\ntroebelen\ntroebelheid\ntroebleren\ntroef\ntroefaas\ntroefkaart\ntroel\ntroela\ntroep\ntroepen\ntroepenbeweging\ntroepenconcentratie\ntroepencontingent\ntroepeneenheden\ntroepeneenheid\ntroepenleverancier\ntroepenmacht\ntroepenopbouw\ntroepenreductie\ntroepenschip\ntroepenschouw\ntroepensterkte\ntroepenterugtrekking\ntroepentransport\ntroepenvermindering\ntroepenverplaatsing\ntroepenversterking\ntroepenvervoer\ntroepenzending\ntroepsgewijs\ntroetel\ntroeteldier\ntroetelen\ntroetelkind\ntroetelnaam\ntroetelwoord\ntroeven\ntrof\ntrofee\ntroffel\ntrog\ntroggelen\ntroglodiet\ntrogvormig\ntrojka\ntrok\ntrol\ntrollenkoning\ntrolley\ntrolleybus\ntrolleys\ntrom\ntrombone\ntrombonist\ntrombose\ntrombosebeen\ntromboserisico\ntromgeroffel\ntrommel\ntrommelaar\ntrommelaarster\ntrommeldroger\ntrommelen\ntrommelholte\ntrommelrem\ntrommelslag\ntrommelslager\ntrommelstok\ntrommelvel\ntrommelvlies\ntrommelvuur\ntrommelwasmachine\ntrommelzeef\ntrommelzucht\ntrommen\ntromp\ntrompe-l'oeil\ntrompen\ntrompet\ntrompetblazer\ntrompetbloem\ntrompetboom\ntrompetgeschal\ntrompetnarcis\ntrompetsignaal\ntrompetsolo\ntrompetspel\ntrompetten\ntrompetter\ntrompetteren\ntrompettist\ntrompettiste\ntrompetvogel\ntrompetvormig\ntronen\ntronie\ntronk\ntroon\ntroonhemel\ntroonopvolger\ntroonopvolging\ntroonopvolgster\ntroonpretendent\ntroonrede\ntroonsafstand\ntroonsbeklimming\ntroonsbestijging\ntroonsopvolging\ntroonswisseling\ntroonzaal\ntroonzetel\ntroop\ntroost\ntroostbrief\ntroostelijk\ntroosteloos\ntroosteloosheid\ntroosten\ntrooster\ntroosteres\ntroostfinale\ntroostgrond\ntroosting\ntroostlied\ntroostprijs\ntroostrede\ntroostrijk\ntroostwedstrijd\ntroostwoord\ntropee\ntropeeën\ntropen\ntropenarts\ntropengordel\ntropenhelm\ntropenjaren\ntropenkolder\ntropenkoorts\ntropennacht\ntropenpak\ntropenrooster\ntropenzon\ntropisch\ntropischeplantenkas\ntropisme\ntropopauze\ntroposfeer\ntros\ntrossen\ntrostomaat\ntrosvormig\ntrots\ntrotsaard\ntrotseren\ntrotsering\ntrotsheid\ntrotskisme\ntrotskist\ntrotskistisch\ntrottinette\ntrottoir\ntrottoirband\ntrottoirrand\ntrottoirtegel\ntrotyl\ntroubadour\ntroubleshooter\ntrouvaille\ntrouvère\ntrouvères\ntrouw\ntrouwakte\ntrouwalbum\ntrouwbelofte\ntrouwbijbel\ntrouwboek\ntrouwboeket\ntrouwboekje\ntrouwbreuk\ntrouwbrief\ntrouwdag\ntrouwdatum\ntrouwdienst\ntrouwelijk\ntrouweloos\ntrouweloosheid\ntrouwen\ntrouwens\ntrouwer\ntrouwerij\ntrouwfeest\ntrouwfoto\ntrouwgeld\ntrouwgewaad\ntrouwhartig\ntrouwhartigheid\ntrouwheid\ntrouwjapon\ntrouwjurk\ntrouwkaart\ntrouwkamer\ntrouwkleed\ntrouwkleren\ntrouwlocatie\ntrouwlustig\ntrouwpak\ntrouwpartij\ntrouwplannen\ntrouwplechtigheid\ntrouwregister\ntrouwring\ntrouwstoet\ntrouwtekst\ntrouwzaal\ntruc\ntrucage\ntrucfilm\ntrucfoto\ntruck\ntruckchauffeur\ntruckdivisie\ntrucker\ntruckmarkt\ntruckstelsel\ntruffel\ntruffelsaus\ntruffelworst\ntrufferen\ntrui\ntruitje\ntrukendoos\ntrukeren\ntrumeau\ntrunkdek\ntrust\ntrustakte\ntrustee\ntrustkantoor\ntrustmaatschappij\ntrustvorming\ntrut\ntruttig\ntruttigheid\ntruweel\ntruïsme\ntry-out\ntrypsine\ntryptofaan\ntsaar\ntsarenfamilie\ntsarenrijk\ntsarevitsj\ntsarina\ntsarisme\ntsaristisch\ntseetseevlieg\ntsjilpen\ntsjirpen\ntsunami\ntuba\ntube\ntubeless\ntuberculeus\ntuberculine\ntuberculose\ntuberculosebestrijding\ntuberculosehaard\ntuberculoselijder\ntuberkel\ntuberkelbacil\ntuberkelbacterie\ntuberkelziekte\ntuberoos\ntubeverf\ntucht\ntuchtcollege\ntuchtcommissie\ntuchteling\ntuchteloos\ntuchteloosheid\ntuchthuis\ntuchthuisboef\ntuchthuisstraf\ntuchtigen\ntuchtiging\ntuchtmaatregel\ntuchtmeester\ntuchtmiddel\ntuchtonderzoek\ntuchtprocedure\ntuchtraad\ntuchtrecht\ntuchtrechtelijk\ntuchtrechter\ntuchtrechtspraak\ntuchtreglement\ntuchtroede\ntuchtschool\ntuchtschoolstraf\ntuchtwet\ntuchtzaak\ntudorstijl\ntuf\ntuffen\ntufkrijt\ntufsteen\ntui\ntuibrug\ntuidraad\ntuien\ntuieren\ntuiertouw\ntuig\ntuigage\ntuigen\ntuighuis\ntuigleer\ntuil\ntuilen\ntuiltje\ntuimelaar\ntuimelblad\ntuimelen\ntuimeling\ntuimelraam\ntuin\ntuinaanleg\ntuinaarde\ntuinafval\ntuinameublement\ntuinanjelier\ntuinarchitect\ntuinarchitectuur\ntuinbaas\ntuinbank\ntuinbed\ntuinboek\ntuinboon\ntuinbouw\ntuinbouwbedrijf\ntuinbouwcentrum\ntuinbouwconsulent\ntuinbouwer\ntuinbouwgebied\ntuinbouwgewas\ntuinbouwgrond\ntuinbouwkas\ntuinbouwkunde\ntuinbouwkundige\ntuinbouwleraar\ntuinbouworganisatie\ntuinbouwproduct\ntuinbouwschool\ntuinbouwsector\ntuinbouwveiling\ntuinbroek\ntuincentrum\ntuincultuur\ntuinder\ntuinderij\ntuindersbedrijf\ntuindersbond\ntuindeur\ntuindorp\ntuinen\ntuinfeest\ntuinfluiter\ntuingereedschap\ntuingewas\ntuingrond\ntuinhek\ntuinhoed\ntuinhout\ntuinhuis\ntuinhuisje\ntuinier\ntuinieren\ntuiniersbedrijf\ntuinierster\ntuinkabouter\ntuinkamer\ntuinkant\ntuinkast\ntuinkers\ntuinknecht\ntuinkruid\ntuinkruiden\ntuinlamp\ntuinlieden\ntuinliefhebber\ntuinman\ntuinmanswoning\ntuinmeubel\ntuinmeubelen\ntuinmeubilair\ntuinmuur\ntuinonderhoud\ntuinontwerp\ntuinontwerper\ntuinpad\ntuinpaviljoen\ntuinplant\ntuinpoort\ntuinschaar\ntuinslang\ntuinslaper\ntuinsproeier\ntuinstad\ntuinstoel\ntuintafel\ntuinterras\ntuinvijver\ntuinwerk\ntuinwijk\ntuinzaad\ntuisen\ntuiser\ntuit\ntuitelig\ntuiten\ntuithoed\ntuitkan\ntuitlamp\ntuitouw\ntuitpot\ntuk\ntukje\ntukken\ntukker\ntul\ntulband\ntulbandvorm\ntule\ntulen\ntullen\ntulp\ntulpenbed\ntulpenbol\ntulpenboom\ntulpenhandel\ntulpenkweker\ntulpenstengel\ntulpglas\ntulpomanie\ntulpvormig\ntumbler\ntumor\ntumorcel\ntumorgroei\ntumorweefsel\ntumtum\ntumult\ntumultueus\ntumulus\ntune\ntuner\ntunica\ntuniek\ntunnel\ntunnelaanleg\ntunnelbak\ntunnelboor\ntunnelboormachine\ntunnelbouw\ntunnelbrand\ntunnelbrug\ntunnelbuis\ntunneldeel\ntunnelelement\ntunnelen\ntunnelproject\ntunnelramp\ntunnelsegment\ntunnelvariant\ntunnelverbinding\ntunnelvisie\ntunnelvorm\ntunnelwand\nturban\nturbine\nturbinehal\nturbinerad\nturbineschip\nturbo\nturbocompressor\nturbodiesel\nturbodieselmotor\nturbogenerator\nturbojet\nturbomotor\nturboprop\nturbopropmotor\nturbotaal\nturbulent\nturbulentie\ntureluren\ntureluur\ntureluurs\nturen\nturf\nturfaarde\nturfachtig\nturfbak\nturfboer\nturfdrager\nturfgraver\nturfgrond\nturfhok\nturflijst\nturfmand\nturfmolm\nturfschip\nturfschipper\nturfschuit\nturfschuur\nturfsteken\nturfsteker\nturfstrooisel\nturftrapper\nturfvuur\nturfwinning\nturfzolder\nturken\nturkoois\nturkooizen\nturn-over\nturnbroekje\nturncoach\nturnen\nturner\nturngereedschap\nturnhal\nturnles\nturnoefening\nturnsloef\nturnster\nturntoernooi\nturnvereniging\nturnzaal\nturquoise\nturven\ntussen\ntussen zitten\ntussen-n\ntussen-s\ntussenafstand\ntussenarrest\ntussenas\ntussenbalans\ntussenbedrijf\ntussenbeide\ntussenberm\ntussenbestuur\ntussenbouw\ntussencategorie\ntussendeel\ntussendek\ntussendeks\ntussendekspassagier\ntussendeur\ntussendijks\ntussending\ntussendoor\ntussendoortje\ntussenevaluatie\ntussenfase\ntussengastheer\ntussengebied\ntussengelegen\ntussengeneratie\ntussengerecht\ntussengeschil\ntussengevoegd\ntussengezang\ntussengroep\ntussenhandel\ntussenhandelaar\ntussenhersenen\ntussenholding\ntussenhuis\ntussenin\ntussenjaar\ntussenklank\ntussenklassement\ntussenkleur\ntussenkoeler\ntussenkomen\ntussenkomend\ntussenkomst\ntussenkop\ntussenlaag\ntussenlanding\ntussenliggend\ntussenmaaltijd\ntussenmaat\ntussenmuur\ntussenniveau\ntussenoplossing\ntussenopslag\ntussenpartij\ntussenpaus\ntussenpauze\ntussenpauzen\ntussenperiode\ntussenpersoon\ntussenpoos\ntussenpositie\ntussenproduct\ntussenrapport\ntussenrapportage\ntussenregel\ntussenregering\ntussenrekening\ntussenresultaat\ntussenribstuk\ntussenronde\ntussenruimte\ntussenschakel\ntussenschot\ntussensegment\ntussensoort\ntussenspel\ntussenspraak\ntussensprint\ntussenstadium\ntussenstand\ntussenstap\ntussenstation\ntussenstop\ntussenstrook\ntussenstuk\ntussentaal\ntussentijd\ntussentijds\ntussentoon\ntussenuit\ntussenuur\ntussenvariant\ntussenverdieping\ntussenvlak\ntussenvoegen\ntussenvoeging\ntussenvoegsel\ntussenvonnis\ntussenvoorstel\ntussenvoorziening\ntussenvorm\ntussenwand\ntussenweg\ntussenwerpsel\ntussenwervelschijf\ntussenwoning\ntussenzang\ntussenzet\ntussenzin\ntussor\ntut\ntutoyeren\ntuttebel\ntutten\ntutter\ntutti\ntuttifrutti\ntuttig\ntuttigheid\ntutu\ntuut\ntv\ntv'loos\ntv-aanbod\ntv-acteur\ntv-actie\ntv-baas\ntv-bedrijf\ntv-blad\ntv-camera\ntv-campagne\ntv-carrière\ntv-circuit\ntv-comedy\ntv-commentator\ntv-commercial\ntv-contract\ntv-criticus\ntv-debat\ntv-directeur\ntv-documentaire\ntv-dominee\ntv-dominees\ntv-drama\ntv-ervaring\ntv-film\ntv-gebied\ntv-geld\ntv-gelden\ntv-geschiedenis\ntv-gesprek\ntv-geweld\ntv-gids\ntv-hit\ntv-interview\ntv-interviewer\ntv-journaal\ntv-journalist\ntv-journalistiek\ntv-kabel\ntv-kanaal\ntv-kijken\ntv-kijker\ntv-kok\ntv-komiek\ntv-kritiek\ntv-landschap\ntv-magazine\ntv-maker\ntv-marathon\ntv-markt\ntv-net\ntv-netwerk\ntv-nieuws\ntv-oorlog\ntv-opname\ntv-optreden\ntv-persoonlijkheid\ntv-ploeg\ntv-ploegen\ntv-presentator\ntv-presentatrice\ntv-producent\ntv-producente\ntv-producer\ntv-productie\ntv-producties\ntv-programma\ntv-project\ntv-publiek\ntv-quiz\ntv-recensent\ntv-reclame\ntv-reeks\ntv-regisseur\ntv-reportage\ntv-scherm\ntv-seizoen\ntv-serie\ntv-show\ntv-signaal\ntv-soap\ntv-special\ntv-spel\ntv-sport\ntv-spot\ntv-station\ntv-ster\ntv-systeem\ntv-toespraak\ntv-toestel\ntv-toren\ntv-uitzending\ntv-versie\ntv-verslaggeefster\ntv-verslaggever\ntv-voetbal\ntv-wereld\ntv-zender\ntv-zendtijd\ntwaalf\ntwaalfdaags\ntwaalfde\ntwaalfde-eeuws\ntwaalfdelig\ntwaalfduizend\ntwaalfduizendste\ntwaalfhonderd\ntwaalfjarig\ntwaalfjarige\ntwaalfkoppig\ntwaalfmaal\ntwaalfmijlsgrens\ntwaalfmijlszone\ntwaalfponder\ntwaalftal\ntwaalftallig\ntwaalftoonsmuziek\ntwaalfuurtje\ntwaalfvingerig\ntwaalfvlak\ntwaalfvoud\ntwaalfvoudig\ntwee\ntwee derde\ntwee tiende\ntwee vijfde\ntwee-eenheid\ntwee-eiig\ntwee-eurostuk\ntwee-onder-een-kapwoning\ntweearmig\ntweebaansweg\ntweebenig\ntweebladig\ntweecilinder\ntweecomponentenlijm\ntweed\ntweedaags\ntweede\ntweededivisieclub\ntweedegraads\ntweedegraadsleraar\ntweedehands\ntweedehandsautomarkt\ntweedehandsje\ntweedehandskleding\ntweedehandsmarkt\ntweedehandszaak\ntweedejaars\ntweedekansonderwijs\ntweedekker\ntweedeklas\ntweedeklasreiziger\ntweedeklassenreiziger\ntweedeklasser\ntweedekwartaalcijfers\ntweedelig\ntweedelijns\ntweedeling\ntweedens\ntweederangs\ntweederangsburger\ntweederangsrol\ntweederdemeerderheid\ntweedeurs\ntweedeursauto\ntweedeurskoelkast\ntweedhoed\ntweedimensionaal\ntweedimensionaliteit\ntweedjas\ntweedraads\ntweedracht\ntweedrachtig\ntweedrank\ntweeduizend\ntweeduizendste\ntweefasestructuur\ntweefasig\ntweegesprek\ntweegevecht\ntweegezinswoning\ntweehandig\ntweeheid\ntweehoevig\ntweehonderd\ntweehonderddertig\ntweehonderdduizend\ntweehonderdduizendste\ntweehonderdjarig\ntweehonderdste\ntweehonderdtal\ntweehonderdtwintig\ntweehonderdveertig\ntweehonderdvijftig\ntweehoofdig\ntweehoog\ntweehuizig\ntweejaarlijks\ntweejarentermijn\ntweejarig\ntweejarige\ntweekamerappartement\ntweekamerflat\ntweekamerstelsel\ntweekamerwoning\ntweekamp\ntweeklank\ntweekleppig\ntweekleurendruk\ntweekleurig\ntweekoppig\ntweeledig\ntweeledigheid\ntweelettergrepig\ntweeling\ntweelingbaan\ntweelingbroeder\ntweelingbroer\ntweelingdorp\ntweelingstad\ntweelingzus\ntweelingzuster\ntweelingzwangerschap\ntweelippig\ntweelobbig\ntweeloop\ntweeloops\ntweeluik\ntweemaal\ntweemaandelijks\ntweemansbob\ntweemanschap\ntweemansfractie\ntweemansschool\ntweemaster\ntweemotorig\ntweemotorige\ntweeogig\ntweepartijenstelsel\ntweepartijensysteem\ntweepersoons\ntweepersoonsauto\ntweepersoonsbed\ntweepersoonshuishouden\ntweepersoonskamer\ntweepersoonsledikant\ntweepersoonsspelen\ntweepits\ntweepitsgastoestel\ntweepitter\ntweeploegendienst\ntweeregelig\ntweerelatie\ntweerichtingsverkeer\ntweeriemsgiek\ntweern\ntweernen\ntweeschalig\ntweeschijfsblok\ntweeslachtig\ntweeslachtigheid\ntweeslag\ntweesnijdend\ntweesoortig\ntweespalt\ntweespan\ntweesporenbeleid\ntweesporig\ntweespraak\ntweesprong\ntweestemmig\ntweestemmigheid\ntweesterrenrestaurant\ntweestrijd\ntweestromenland\ntweetakt\ntweetaktmotor\ntweetal\ntweetalig\ntweetaligheid\ntweetallig\ntweeter\ntweeterm\ntweetje\ntweetjes\ntweetongig\ntweetonig\ntweetoppig\ntweetrapsraket\ntweeverdiener\ntweeverdieners\ntweeverdienerswet\ntweeversnellingsnaaf\ntweevlakkig\ntweevlakshoek\ntweevleugelig\ntweevoeter\ntweevoetig\ntweevormig\ntweevoud\ntweevoudig\ntweeweeks\ntweewegluidsprekersysteem\ntweewekelijks\ntweewieler\ntweewielerbedrijf\ntweewielig\ntweewoonst\ntweezaadlobbig\ntweezaadlobbigen\ntweezijdig\ntweezijdigheid\ntweezitter\ntweeëndertig\ntweeëndertigste\ntweeënhalf\ntweeënnegentig\ntweeëntachtig\ntweeëntwintig\ntweeëntwintigjarig\ntweeëntwintigste\ntweeënveertig\ntweeënvijftig\ntweeënzestig\ntweeënzeventig\ntweeërhande\ntweeërlei\ntwen\ntwenter\ntwijfel\ntwijfelaar\ntwijfelaarster\ntwijfelachtig\ntwijfelachtigheid\ntwijfelarij\ntwijfelen\ntwijfelgeval\ntwijfeling\ntwijfelkont\ntwijfelmoedig\ntwijfelmoedigheid\ntwijfelzucht\ntwijfelzuchtig\ntwijg\ntwijgen\ntwijn\ntwijnder\ntwijnderij\ntwijndraad\ntwijnen\ntwijnster\ntwinkelen\ntwinkeling\ntwinset\ntwintig\ntwintigduizend\ntwintiger\ntwintigjarig\ntwintigje\ntwintigkoppig\ntwintigmaal\ntwintigste\ntwintigste-eeuwer\ntwintigste-eeuws\ntwintigtal\ntwintigvlak\ntwist\ntwistappel\ntwisten\ntwister\ntwistgeding\ntwistgeschrijf\ntwistgesprek\ntwistgierig\ntwistpunt\ntwistvraag\ntwistvuur\ntwistziek\ntwistzoeker\ntwistzucht\ntwoseater\ntwostep\ntycoon\ntyfeus\ntyfoon\ntyfus\ntyfuslijder\ntype\ntypeaanduiding\ntypeaanduidingen\ntypecasten\ntypecasting\ntypediploma\ntypefout\ntypekamer\ntypelint\ntypemachine\ntypemachineschrift\ntypen\ntypenummer\ntyperen\ntyperend\ntypering\ntypetafel\ntypevaardigheid\ntypevoorbeeld\ntypewerk\ntypewriter\ntypisch\ntypist\ntypiste\ntypo\ntypograaf\ntypografie\ntypografisch\ntypogravure\ntypologie\ntypologisch\ntyposcript\ntyrannosaurus\ntzatziki\ntête-à-tête\nu\nub\nud\nufo\nugli\nuhd\nui\nuienbed\nuienbrood\nuiengeur\nuienloof\nuienplant\nuienring\nuiensaus\nuienschil\nuiensmaak\nuiensnijder\nuiensoep\nuier\nuierboord\nuiercel\nuierkwartier\nuierontsteking\nuiig\nuil\nuilachtig\nuilen\nuilenbal\nuilenbord\nuilenbril\nuilenkop\nuilennest\nuilenoog\nuilenspiegel\nuilenveer\nuilenvlucht\nuilig\nuilskop\nuilskuiken\nuiltje\nuisnipper\nuit\nuit eten\nuit jagen\nuit kunnen\nuit willen\nuit-en-te-na\nuit-en-ter-na\nuitademen\nuitademing\nuitbaatster\nuitbaggeren\nuitbaggering\nuitbakenen\nuitbakken\nuitbal\nuitbalanceren\nuitbannen\nuitbanning\nuitbarsten\nuitbarsting\nuitbaten\nuitbater\nuitbating\nuitbatingsvergunning\nuitbazuinen\nuitbeelden\nuitbeelding\nuitbehandeld\nuitbeitelen\nuitbellen\nuitbenen\nuitbener\nuitbeners\nuitbesteden\nuitbesteder\nuitbesteding\nuitbetalen\nuitbetaler\nuitbetaling\nuitbezemen\nuitbijten\nuitbijter\nuitbikken\nuitblazen\nuitbleken\nuitblijven\nuitblinken\nuitblinker\nuitblinkster\nuitbloeien\nuitblussen\nuitblutsen\nuitbodeming\nuitboeken\nuitboenen\nuitboeten\nuitboeting\nuitboezeming\nuitbollen\nuitbomen\nuitboren\nuitborstelen\nuitbotten\nuitbotting\nuitbouw\nuitbouwen\nuitbouwsel\nuitbraak\nuitbraakpoging\nuitbraaksel\nuitbraden\nuitbraken\nuitbranden\nuitbrander\nuitbranding\nuitbreidbaar\nuitbreidbaarheid\nuitbreiden\nuitbreiding\nuitbreidingsgebied\nuitbreidingsmogelijkheid\nuitbreidingsplan\nuitbreidingsproces\nuitbreidingsronde\nuitbreidingsvergunning\nuitbreidingswerkzaamheden\nuitbreidingswijk\nuitbreken\nuitbreker\nuitbreking\nuitbrengen\nuitbroeden\nuitbroeding\nuitbroedsel\nuitbroeien\nuitbrokkelen\nuitbrommen\nuitbrullen\nuitbuigen\nuitbuiging\nuitbuiken\nuitbuilen\nuitbuiten\nuitbuiter\nuitbuiting\nuitbulderen\nuitbundig\nuitbundigheid\nuitchecken\nuitcijferen\nuitdaagster\nuitdagen\nuitdagend\nuitdager\nuitdaging\nuitdampen\nuitdamping\nuitdeelster\nuitdelen\nuitdeler\nuitdelgen\nuitdelging\nuitdeling\nuitdelingslijst\nuitdelven\nuitdempen\nuitdenken\nuitdenker\nuitdeuken\nuitdienen\nuitdiensttreding\nuitdiensttredingen\nuitdiepen\nuitdieping\nuitdijen\nuitdijing\nuitdoen\nuitdokteren\nuitdorsen\nuitdossen\nuitdossing\nuitdoven\nuitdoving\nuitdraagster\nuitdraai\nuitdraaien\nuitdragen\nuitdrager\nuitdragerij\nuitdragerswinkel\nuitdrijven\nuitdrijver\nuitdrijving\nuitdrijvingsfase\nuitdrinken\nuitdrogen\nuitdroging\nuitdrogingsverschijnsel\nuitdruipen\nuitdrukkelijk\nuitdrukkelijkheid\nuitdrukken\nuitdrukking\nuitdrukkingloos\nuitdrukkingskracht\nuitdrukkingsloos\nuitdrukkingsmiddel\nuitdrukkingsmogelijkheid\nuitdrukkingsvaardigheid\nuitdrukkingsvermogen\nuitdrukkingsvorm\nuitdrukkingswijze\nuitdruppelen\nuitdruppen\nuitduel\nuitduiden\nuitduiding\nuitdunnen\nuitdunning\nuitduwen\nuitdweilen\nuiteen\nuiteendoen\nuiteendrijven\nuiteengaan\nuiteengroeien\nuiteenhouden\nuiteenjagen\nuiteenleggen\nuiteenlopen\nuiteenlopend\nuiteenlopendheid\nuiteenneembaar\nuiteennemen\nuiteenrafelen\nuiteenrukken\nuiteenslaan\nuiteenspatten\nuiteenspringen\nuiteenstuiven\nuiteenvallen\nuiteenzetten\nuiteenzetting\nuiteinde\nuiteindelijk\nuiten\nuitentreuren\nuiteraard\nuiterdijk\nuiterland\nuiterlijk\nuiterlijkheid\nuitermate\nuiterst\nuiterste\nuiterton\nuiterwaard\nuiteter\nuitfaden\nuitfilteren\nuitflappen\nuitfluiten\nuitfoeteren\nuitfrezen\nuitgaaf\nuitgaafprijs\nuitgaan\nuitgaand\nuitgaansavond\nuitgaansbuurt\nuitgaanscentrum\nuitgaanscircuit\nuitgaansdag\nuitgaansgebied\nuitgaansgelegenheid\nuitgaansgeweld\nuitgaanskas\nuitgaanskleding\nuitgaansleven\nuitgaanspubliek\nuitgaansstraat\nuitgaanstenue\nuitgaanstype\nuitgaansverbod\nuitgaanswereld\nuitgaanswereldje\nuitgaanswijk\nuitgalmen\nuitgalming\nuitgang\nuitgangsbasis\nuitgangsbuurt\nuitgangsdag\nuitgangsmateriaal\nuitgangspositie\nuitgangspunt\nuitgangssignaal\nuitgangssituatie\nuitgangsstelling\nuitgangsvermogen\nuitgave\nuitgavenbeheersing\nuitgavenbeleid\nuitgavenbeperking\nuitgavengroei\nuitgavenkader\nuitgavenkant\nuitgavenniveau\nuitgavennorm\nuitgavenoverschrijding\nuitgavenpatroon\nuitgavenplafond\nuitgavenpost\nuitgavenquote\nuitgavenstijging\nuitgavenvermindering\nuitgebalanceerd\nuitgebalanceerder\nuitgebannen\nuitgebannene\nuitgebeend\nuitgebloeid\nuitgeblust\nuitgebrand\nuitgebreid\nuitgebreidheid\nuitgebroken\nuitgecommentarieerd\nuitgecommentarieerde\nuitgedacht\nuitgedempt\nuitgediend\nuitgediscussieerd\nuitgedoofd\nuitgedroogd\nuitgedund\nuitgeefactiviteiten\nuitgeefbeleid\nuitgeefconcern\nuitgeefster\nuitgegeven\nuitgehold\nuitgehongerd\nuitgejaagd\nuitgekauwd\nuitgekeken\nuitgekiend\nuitgekinderd\nuitgeklopt\nuitgekookt\nuitgelachen\nuitgelaten\nuitgelatenheid\nuitgeleefd\nuitgeleerd\nuitgelegd\nuitgeleide\nuitgelezen\nuitgeloot\nuitgeloten\nuitgemaakt\nuitgemergeld\nuitgemeten\nuitgenomen\nuitgeplast\nuitgepraat\nuitgeprocedeerd\nuitgeput\nuitgerangeerd\nuitgeregeerd\nuitgerekend\nuitgerekt\nuitgerijpt\nuitgerukt\nuitgerust\nuitgeschakeld\nuitgescheden\nuitgeschulpt\nuitgeslagen\nuitgeslapen\nuitgesloten\nuitgeslotenen\nuitgesneden\nuitgesorteerd\nuitgespeeld\nuitgespreid\nuitgesproken\nuitgespuugde\nuitgestald\nuitgestorven\nuitgestoten\nuitgestreken\nuitgestrekt\nuitgestrektheid\nuitgestudeerd\nuitgeteerd\nuitgeteld\nuitgetogen\nuitgetrokken\nuitgevallen\nuitgeveend\nuitgeven\nuitgever\nuitgeverij\nuitgeversbedrijf\nuitgeversbranche\nuitgeversconcern\nuitgeversfirma\nuitgeversfonds\nuitgeversgroep\nuitgevershuis\nuitgeversland\nuitgeversmaatschappij\nuitgeversparadijs\nuitgeversvak\nuitgeverswereld\nuitgeverszaak\nuitgevloerd\nuitgevuld\nuitgewandeld\nuitgewekene\nuitgewerkt\nuitgewezene\nuitgewoond\nuitgezakt\nuitgezet\nuitgezocht\nuitgezonderd\nuitgezonderden\nuitgieren\nuitgieten\nuitgifte\nuitgiftebedrag\nuitgiftekoers\nuitgifteprijs\nuitgifteprospectus\nuitgillen\nuitglijden\nuitglijder\nuitglijer\nuitgloeien\nuitgommen\nuitgooien\nuitgraven\nuitgraving\nuitgroeibaan\nuitgroeien\nuitgroeisel\nuitgroeven\nuitgummen\nuithaal\nuithakken\nuithalen\nuithaler\nuithaling\nuitham\nuithameren\nuithangbord\nuithangen\nuithangteken\nuitharden\nuitharding\nuitheems\nuitheemse\nuitheemsheid\nuithoek\nuithoeken\nuithof\nuithollen\nuitholling\nuithongeren\nuithongering\nuithoren\nuithouden\nuithouder\nuithouding\nuithoudingsproef\nuithoudingsvermogen\nuithouwen\nuithozen\nuithuilen\nuithuisplaatsing\nuithuiszetting\nuithuizig\nuithuizigen\nuithuizigheid\nuithuwelijken\nuithuwelijking\nuithuwen\nuiting\nuitingsvorm\nuitingsvrijheid\nuitje\nuitjoelen\nuitjouwen\nuitkafferen\nuitkammen\nuitkappen\nuitkauwen\nuitkavelen\nuitkepen\nuitkeping\nuitkeren\nuitkering\nuitkeringsaanvraag\nuitkeringsbedrag\nuitkeringsbedragen\nuitkeringsdatum\nuitkeringsduur\nuitkeringsfabriek\nuitkeringsfonds\nuitkeringsfraude\nuitkeringsgeld\nuitkeringsgerechtigd\nuitkeringsgerechtigde\nuitkeringshoogte\nuitkeringsinstantie\nuitkeringsjaar\nuitkeringskas\nuitkeringsniveau\nuitkeringsontvanger\nuitkeringsorganisatie\nuitkeringspercentage\nuitkeringsperiode\nuitkeringsrechten\nuitkeringsregeling\nuitkeringssituatie\nuitkeringsstelsel\nuitkeringssysteem\nuitkeringstrekker\nuitkeringsverhouding\nuitkeringswet\nuitkermen\nuitkerven\nuitkerving\nuitkiemen\nuitkienen\nuitkiezen\nuitkijk\nuitkijken\nuitkijker\nuitkijkpost\nuitkijkpunt\nuitkijktoren\nuitkippen\nuitklapbaar\nuitklappen\nuitklaren\nuitklaring\nuitkleden\nuitkletsen\nuitklimmen\nuitkloppen\nuitknagen\nuitknijpen\nuitknippen\nuitknipsel\nuitknobbelen\nuitknobelen\nuitkoken\nuitkomen\nuitkomst\nuitkoop\nuitkoopbod\nuitkoopregeling\nuitkoopsom\nuitkopen\nuitkotsen\nuitkraaien\nuitkrabben\nuitkramen\nuitkrassen\nuitkrijgen\nuitkrijten\nuitkristalliseren\nuitlaat\nuitlaatgas\nuitlaatklep\nuitlaatpijp\nuitlaatsysteem\nuitlachen\nuitladen\nuitlading\nuitlandig\nuitlandigheid\nuitlaten\nuitlating\nuitleenbaar\nuitleenbalie\nuitleenbeheer\nuitleenbibliotheek\nuitleenbureau\nuitleendienst\nuitleendiscotheek\nuitleenpost\nuitleenrecht\nuitleensysteem\nuitleentermijn\nuitleesinstrument\nuitleg\nuitlegbaar\nuitleggen\nuitlegger\nuitleggerig\nuitlegging\nuitlegkunde\nuitlegkundig\nuitlegkundige\nuitleiden\nuitleiding\nuitlekken\nuitlenen\nuitlener\nuitlening\nuitlepelen\nuitleven\nuitleveren\nuitlevering\nuitleveringsbevel\nuitleveringsprocedure\nuitleveringsverdrag\nuitleveringsverzoek\nuitleveringswet\nuitlezen\nuitlezing\nuitlichten\nuitlijnen\nuitlijning\nuitlijningen\nuitlikken\nuitliteren\nuitlogen\nuitloggen\nuitlokken\nuitlokking\nuitloodsen\nuitloop\nuitloopbaan\nuitloopgebied\nuitloopmogelijkheid\nuitlooppoging\nuitloopster\nuitloopstrook\nuitlopen\nuitloper\nuitloten\nuitloting\nuitlotingssysteem\nuitloven\nuitloving\nuitlozen\nuitlozing\nuitlozingsbuis\nuitluiden\nuitluiding\nuitluisteren\nuitmaken\nuitmalen\nuitmaling\nuitmelken\nuitmergelen\nuitmesten\nuitmesting\nuitmeten\nuitmeting\nuitmiddelpuntig\nuitmiddelpuntigheid\nuitmonden\nuitmonding\nuitmonsteren\nuitmonstering\nuitmoorden\nuitmunten\nuitmuntend\nuitmuntendheid\nuitname\nuitneembaar\nuitnemen\nuitnemend\nuitnemendheid\nuitnijpen\nuitnodigen\nuitnodiging\nuitnodigingsbeleid\nuitnodigingsbrief\nuitnodigingskaart\nuitoefenbaar\nuitoefenen\nuitoefening\nuitoefenkoers\nuitoefenprijs\nuitonderhandelen\nuitpakken\nuitpakker\nuitpellen\nuitpennen\nuitpersen\nuitpersing\nuitpeuteren\nuitpikken\nuitplaatsen\nuitplaatsing\nuitplanten\nuitploegen\nuitpluizen\nuitpluizer\nuitplukken\nuitplunderen\nuitplundering\nuitplussen\nuitpoepen\nuitpoetsen\nuitpompen\nuitponden\nuitpoot\nuitpraten\nuitprinten\nuitproberen\nuitproesten\nuitpuffen\nuitpuilen\nuitpuiling\nuitpuren\nuitputten\nuitputting\nuitputtingsoorlog\nuitputtingsslag\nuitputtingsverschijnsel\nuitrafelen\nuitraken\nuitrangeren\nuitrapen\nuitrazen\nuitredding\nuitreden\nuitreding\nuitregenen\nuitreiken\nuitreiker\nuitreiking\nuitreis\nuitreispapieren\nuitreisverbod\nuitreisvisum\nuitrekenen\nuitrekening\nuitrekken\nuitrekking\nuitrennen\nuitrichten\nuitrijden\nuitrijverbod\nuitrijzen\nuitrit\nuitroeien\nuitroeiing\nuitroep\nuitroepen\nuitroeper\nuitroeping\nuitroepingsteken\nuitroepteken\nuitroken\nuitrollen\nuitrotten\nuitruil\nuitruilen\nuitruimen\nuitrukdienst\nuitrukken\nuitrusten\nuitrusting\nuitrustingsniveau\nuitrustingsstuk\nuitschakelen\nuitschakeling\nuitschateren\nuitscheiden\nuitscheiding\nuitscheidingsorgaan\nuitscheidingsproduct\nuitschelden\nuitschenken\nuitscheppen\nuitscheren\nuitscheuren\nuitschieten\nuitschieter\nuitschiften\nuitschijnen\nuitschilderen\nuitschitteren\nuitschoppen\nuitschot\nuitschrapen\nuitschrappen\nuitschreeuwen\nuitschreien\nuitschrijven\nuitschrijver\nuitschrijving\nuitschrobben\nuitschudden\nuitschudding\nuitschuifbaar\nuitschuifblad\nuitschuiftafel\nuitschuiven\nuitschuiver\nuitschuld\nuitschuren\nuitschutten\nuitselecteren\nuitserveren\nuitslaan\nuitslag\nuitslagenlijst\nuitslapen\nuitslepen\nuitsliepen\nuitslijpen\nuitslijten\nuitslijting\nuitsloofster\nuitsloven\nuitslover\nuitsloverij\nuitsluiten\nuitsluitend\nuitsluiting\nuitsluitingsmechanisme\nuitsluitsel\nuitslurpen\nuitsmeden\nuitsmelten\nuitsmeren\nuitsmering\nuitsmijten\nuitsmijter\nuitsnede\nuitsnijden\nuitsnijding\nuitsoppen\nuitspannen\nuitspanning\nuitspansel\nuitsparen\nuitsparing\nuitspatten\nuitspatting\nuitspelen\nuitspellen\nuitspinnen\nuitspitten\nuitsplitsen\nuitsplitsing\nuitspoelen\nuitspoeling\nuitspoken\nuitspraak\nuitspraakleer\nuitspraakprobleem\nuitspraakregel\nuitsprakenlijst\nuitspreekbaar\nuitspreiden\nuitspreiding\nuitspreken\nuitspringen\nuitspringer\nuitspringing\nuitsprong\nuitspruiten\nuitspruitsel\nuitspugen\nuitspuiten\nuitspuwen\nuitspuwing\nuitspuwsel\nuitstaan\nuitstaans hebben met\nuitstalkast\nuitstallen\nuitstalling\nuitstalraam\nuitstampen\nuitstap\nuitstapkosten\nuitstapleeftijd\nuitstappen\nuitstapregeling\nuitstedig\nuitstedigheid\nuitsteeksel\nuitstek\nuitsteken\nuitstekend\nuitstekendheid\nuitstekken\nuitstel\nuitstelgedrag\nuitstellen\nuitsteller\nuitstelling\nuitsterfbeleid\nuitsterven\nuitsterving\nuitstijgen\nuitstippelen\nuitstoelen\nuitstoffen\nuitstomen\nuitstoot\nuitstoppen\nuitstorten\nuitstorting\nuitstoten\nuitstoter\nuitstoting\nuitstralen\nuitstraling\nuitstralingseffect\nuitstralingsvermogen\nuitstralingswarmte\nuitstrekken\nuitstrijken\nuitstrijkje\nuitstromen\nuitstroming\nuitstromingsopening\nuitstromingssnelheid\nuitstrooien\nuitstrooiing\nuitstroom\nuitstroombeleid\nuitstroomopening\nuitstroompremie\nuitstulpen\nuitstulping\nuitsturen\nuittappen\nuittarten\nuittarting\nuittekenen\nuittellen\nuitteren\nuittering\nuittesten\nuittikken\nuittillen\nuittocht\nuittorenen\nuittrap\nuittrappen\nuittrede\nuittreden\nuittreding\nuittredingsrecht\nuittredingsregeling\nuittredingsvergoeding\nuittrekbaar\nuittrekken\nuittrekking\nuittreksel\nuittrektafel\nuittrouwen\nuittypen\nuitvaagsel\nuitvaardigen\nuitvaardiging\nuitvaart\nuitvaartbranche\nuitvaartcentrum\nuitvaartdienst\nuitvaartleider\nuitvaartmis\nuitvaartondernemer\nuitvaartonderneming\nuitvaartplechtigheid\nuitvaartstoet\nuitvaartvereniging\nuitvaartverzekeraar\nuitvaartverzekering\nuitvaartverzorger\nuitvaartverzorging\nuitvaartwezen\nuitvaartwinkel\nuitvagen\nuitval\nuitvalbasis\nuitvallen\nuitvaller\nuitvalpercentage\nuitvalpoort\nuitvalsbasis\nuitvalsduur\nuitvalspercentage\nuitvalspoort\nuitvalster\nuitvalsweg\nuitvangen\nuitvaren\nuitvechten\nuitvegen\nuitvening\nuitventen\nuitventer\nuitverdedigen\nuitvergroten\nuitvergroting\nuitverkiezen\nuitverkiezing\nuitverkocht\nuitverkoop\nuitverkopen\nuitverkoren\nuitverkorene\nuitvertellen\nuitveteren\nuitvezelen\nuitvieren\nuitvinden\nuitvinder\nuitvindersbeurs\nuitvinding\nuitvindsel\nuitvindster\nuitvissen\nuitvlaggen\nuitvlagging\nuitvlakken\nuitvliegen\nuitvlieger\nuitvliegroute\nuitvloeien\nuitvloeier\nuitvloeiing\nuitvloeisel\nuitvloeken\nuitvloeren\nuitvlooien\nuitvlucht\nuitvoegen\nuitvoegstrook\nuitvoer\nuitvoerartikel\nuitvoerbaar\nuitvoerbaarheid\nuitvoerbelasting\nuitvoerbestand\nuitvoerder\nuitvoerdersrol\nuitvoerdocument\nuitvoeren\nuitvoerend\nuitvoerende\nuitvoerhandel\nuitvoerhaven\nuitvoerig\nuitvoerigheid\nuitvoering\nuitvoeringsbepaling\nuitvoeringsbesluit\nuitvoeringsbevel\nuitvoeringsduur\nuitvoeringsfase\nuitvoeringsinstantie\nuitvoeringsinstelling\nuitvoeringskosten\nuitvoeringsniveau\nuitvoeringsorgaan\nuitvoeringsorganisatie\nuitvoeringsovereenkomst\nuitvoeringsplan\nuitvoeringspraktijk\nuitvoeringsproces\nuitvoeringsprogramma\nuitvoeringsregeling\nuitvoeringsstructuur\nuitvoeringstechnisch\nuitvoeringstermijn\nuitvoeringswet\nuitvoeringswijze\nuitvoermarkt\nuitvoeroverschot\nuitvoerproduct\nuitvoerrecht\nuitvoerrechten\nuitvoerster\nuitvoerstroom\nuitvoerverbod\nuitvoervergunning\nuitvoerwaarde\nuitvogelen\nuitvorsen\nuitvorsing\nuitvouwbaar\nuitvouwen\nuitvragen\nuitvraging\nuitvreten\nuitvreter\nuitvriezen\nuitvullen\nuitvulling\nuitwaaien\nuitwaaieren\nuitwaaiering\nuitwaarts\nuitwalsen\nuitwas\nuitwasemen\nuitwaseming\nuitwassen\nuitwateren\nuitwatering\nuitwateringskanaal\nuitwateringssluis\nuitwedstrijd\nuitweg\nuitwegen\nuitweiden\nuitweiding\nuitweken\nuitwendig\nuitwendige\nuitwendigheid\nuitwenen\nuitwerken\nuitwerking\nuitwerkingsfase\nuitwerkingsplan\nuitwerksel\nuitwerpen\nuitwerping\nuitwerpsel\nuitwerpselen\nuitwieden\nuitwijkeling\nuitwijken\nuitwijkhaven\nuitwijking\nuitwijkingsplicht\nuitwijkmanoeuvre\nuitwijkmogelijkheid\nuitwijkplaats\nuitwijzen\nuitwijzing\nuitwijzingsbeleid\nuitwijzingsbesluit\nuitwijzingsbevel\nuitwijzingspolitiek\nuitwijzingsproblematiek\nuitwijzingsprocedure\nuitwinnen\nuitwinning\nuitwinteren\nuitwippen\nuitwisbaar\nuitwisselbaar\nuitwisselbaarheid\nuitwisselen\nuitwisseling\nuitwisselingsproces\nuitwisselingsprogramma\nuitwisselingsproject\nuitwisselingsstudent\nuitwisselingsverdrag\nuitwissen\nuitwissing\nuitwoeden\nuitwonen\nuitwonend\nuitwonende\nuitworp\nuitwrijven\nuitwringen\nuitwuiven\nuitzaad\nuitzaaien\nuitzaaiing\nuitzagen\nuitzakken\nuitzakking\nuitzege\nuitzeilen\nuitzend-cao\nuitzendarbeid\nuitzendbaan\nuitzendbaar\nuitzendbasis\nuitzendbedrijf\nuitzendbranche\nuitzendbureau\nuitzendconcern\nuitzenddag\nuitzenden\nuitzender\nuitzendformule\nuitzendfrequentie\nuitzendgebied\nuitzendgroep\nuitzending\nuitzendkantoor\nuitzendketen\nuitzendkracht\nuitzendlicentie\nuitzendmarkt\nuitzendonderneming\nuitzendorganisatie\nuitzendpersoneel\nuitzendschema\nuitzendsector\nuitzendtijd\nuitzendtijdstip\nuitzenduur\nuitzendverbod\nuitzendverboden\nuitzendvergunning\nuitzendwerk\nuitzendwezen\nuitzet\nuitzetbaar\nuitzetbaarheid\nuitzetbeleid\nuitzetijzer\nuitzetten\nuitzetting\nuitzettingsbeleid\nuitzettingsbevel\nuitzettingscoëfficiënt\nuitzettingsprocedure\nuitzettingsvermogen\nuitzicht\nuitzichtloos\nuitzichtloosheid\nuitzichtpunt\nuitzichttoren\nuitzieken\nuitzien\nuitziften\nuitzijgen\nuitzingen\nuitzinnig\nuitzinnige\nuitzinnigheid\nuitzitten\nuitzoeken\nuitzoekerij\nuitzoekwerk\nuitzonderen\nuitzondering\nuitzonderingsbepaling\nuitzonderingsclausule\nuitzonderingsgeval\nuitzonderingsgrond\nuitzonderingsmaatregel\nuitzonderingspositie\nuitzonderingsregel\nuitzonderingssituatie\nuitzonderingstoestand\nuitzonderlijk\nuitzonderlijkheid\nuitzoomen\nuitzuigen\nuitzuiger\nuitzuiging\nuitzuigster\nuitzuinigen\nuitzuipen\nuitzuiveren\nuitzuivering\nuitzwaaien\nuitzwavelen\nuitzwellen\nuitzwemmen\nuitzwenkbaar\nuitzwenken\nuitzweren\nuitzwermen\nuitzweten\nuiver\nuivormig\nuk\nukelele\nukkepuk\nulaan\nulevel\nulo\nuloschool\nulster\nultiem\nultimatief\nultimatum\nultimatums\nultimo\nultra\nultracentrifuge\nultraconservatief\nultradun\nultrageluid\nultrakort\nultraliberalisme\nultralicht\nultralinks\nultramarijn\nultramodern\nultramontaan\nultramontaans\nultramontanisme\nultranationalist\nultranationalistisch\nultraorthodox\nultrarechts\nultrasnel\nultrasoon\nultraviolet\numlaut\numlautsteken\numpire\nunaniem\nunanimiteit\nunanimiteitsregel\nunciaal\nundercover\nundercoveragent\nundercoveragente\nundercoveroperatie\nunderdog\nunderdogpositie\nunderground\nundergroundmuziek\nunderperformer\nunderscore\nunderstatement\nunfair\nunheimisch\nunicaat\nuniciteit\nunicum\nunie\nunief\nuniek\nuniekheid\nunieverdrag\nunificatie\nunificeren\nuniform\nuniformdrager\nuniformeren\nuniformering\nuniformiteit\nuniformjas\nuniformkleding\nuniformpet\nuniformverbod\nunikleurig\nunikleurige\nunilateraal\nunilateralisme\nunionist\nunionistisch\nuniseks\nunisono\nunit\nunitair\nunitarisme\nunitarist\nunitaristisch\nunitariër\nunitariërs\nuniteitsbeginsel\nunithoofd\nunitmanager\nuniversale\nuniversalia\nuniversalisme\nuniversalistisch\nuniversaliteit\nuniversaliteitsbeginsel\nuniverseel\nuniversitair\nuniversiteit\nuniversiteitsbestuur\nuniversiteitsbibliotheek\nuniversiteitsblad\nuniversiteitscampus\nuniversiteitscomplex\nuniversiteitsdocent\nuniversiteitsfonds\nuniversiteitsgebouw\nuniversiteitsgids\nuniversiteitskliniek\nuniversiteitskrant\nuniversiteitsmedewerker\nuniversiteitsmedewerkster\nuniversiteitspersoneel\nuniversiteitsprofessor\nuniversiteitsraad\nuniversiteitsstad\nuniversiteitsstudent\nuniversiteitsterrein\nuniversiteitsziekenhuis\nuniversum\nuniëren\nunplugged\nunster\nunverfroren\nup-to-date\nupdate\nupdatefunctie\nupdaten\nupdateten\nupdating\nupgrade\nupgraden\nupgrading\nupload\nuploaden\nupmarket\nupper\nupper ten\nuppercut\nups\nups en downs\nuptempo\nuraan\nuraniet\nuranium\nuraniumerts\nuraniummijn\nuraniumoxide\nuraniumverrijking\nuraniumverrijkingsfabriek\nuraniumwinning\nuranografie\nurbaan\nurbanisatie\nurbanisatiegraad\nurbaniseren\nurbanisme\nurbanistisch\nurbaniteit\nurbi et orbi\nure\nuremie\nuren\nurenbriefje\nurenlang\nurennorm\nurenregistratie\nurenregistratiesysteem\nurentotaal\nurenverantwoording\nureter\nurethra\nureum\nureumcyclus\nurgent\nurgentie\nurgentiebewijs\nurgentielijst\nurgentieopleiding\nurgentieprogram\nurgentieprogramma\nurgentiepunt\nurgentierecht\nurgentieverklaring\nurinaal\nurine\nurine-incontinentie\nurineblaas\nurinebuis\nurinebuisopening\nurinecontrole\nurineleider\nurinemonster\nurineonderzoek\nurineren\nurinestaal\nurinetest\nurinevergiftiging\nurineverlies\nurineweg\nurineweginfectie\nurinezuur\nurinoir\nurmen\nurn\nurne\nurnenmuur\nurnenveld\nurntje\nurologie\nurologisch\nuroloog\nuroscopie\nursuline\nursulinen\nusance\nusantie\nusantiën\nusername\nuso\nusueel\nusurpatie\nusurpator\nusurperen\nuterus\nutilisatie\nutiliseren\nutilisme\nutilistisch\nutilitair\nutilitarisme\nutilitaristisch\nutiliteit\nutiliteitsbeginsel\nutiliteitsbouw\nutiliteitsgebouw\nutility\nutility's\nutopie\nutopisch\nutopisme\nutopist\nutopistisch\nuur\nuurbasis\nuurbedrag\nuurcirkel\nuurdienst\nuurdocent\nuurgemiddelde\nuurglas\nuurloner\nuurloon\nuurprijs\nuurprijzen\nuurrecord\nuurregeling\nuurrooster\nuursnelheid\nuurtarief\nuurtje\nuurverbruik\nuurvergoeding\nuurwerk\nuurwerkindustrie\nuurwerkmaker\nuurwijzer\nuw\nuwen\nuwentwege\nuwentwil\nuwentwille\nuwer\nuwerzijds\nuzelf\nuzi\nv\nv.\nv.d.\nv.h.\nv.t.t.\nv.v.\nv.v.t.\nva\nva-banque\nva-et-vient\nvaag\nvaagheid\nvaagjes\nvaaglijk\nvaagweg\nvaak\nvaakluizen\nvaakst\nvaal\nvaalachtig\nvaalblauw\nvaalbleek\nvaalbont\nvaalbruin\nvaalgeel\nvaalgroen\nvaalheid\nvaalkleurig\nvaalrood\nvaalt\nvaalten\nvaam\nvaan\nvaandel\nvaandeldraagster\nvaandeldrager\nvaandelstok\nvaandelvlucht\nvaandrig\nvaantje\nvaar\nvaarbelasting\nvaarbewijs\nvaarboom\nvaardag\nvaardiepte\nvaardig\nvaardigen\nvaardigheid\nvaardigheidsbewijs\nvaardigheidsproeven\nvaardigheidstraining\nvaarervaring\nvaargebied\nvaargeul\nvaarklaar\nvaarlicht\nvaarlichten\nvaarplan\nvaarreglement\nvaarrichting\nvaarroute\nvaars\nvaarschema\nvaarseizoen\nvaarskalf\nvaarsnelheid\nvaarstok\nvaart\nvaartdijk\nvaartgeld\nvaartijd\nvaartje\nvaartkapoen\nvaartocht\nvaartschipper\nvaartuig\nvaartuigenbelasting\nvaarverbinding\nvaarverbod\nvaarwater\nvaarweg\nvaarwel\nvaas\nvaasvormig\nvaat\nvaataandoening\nvaatbundel\nvaatchirurg\nvaatdoek\nvaatgezwel\nvaathout\nvaatje\nvaatkramp\nvaatkwast\nvaatplant\nvaatrijk\nvaats\nvaatstelsel\nvaatvernauwing\nvaatverwijdend\nvaatverwijding\nvaatvlies\nvaatwand\nvaatwas\nvaatwasmachine\nvaatwasmiddel\nvaatwasser\nvaatwerk\nvaatziekte\nvacant\nvacatie\nvacatiegeld\nvacatiegelden\nvacature\nvacaturebank\nvacaturebeurt\nvacaturenummer\nvacaturesite\nvacaturestop\nvacatuur\nvaccin\nvaccinateur\nvaccinatie\nvaccinatiebeleid\nvaccinatiebewijs\nvaccinatiecampagne\nvaccinatiegraad\nvaccinatieplicht\nvaccinatieprogramma\nvaccinatieverbod\nvaccine\nvaccinedwang\nvaccineren\nvaccinering\nvaceren\nvacht\nvachtroller\nvacuole\nvacuüm\nvacuümbuis\nvacuümglas\nvacuümkamer\nvacuümlamp\nvacuümmeter\nvacuümpan\nvacuümpomp\nvacuümverpakking\nvacuümverpakt\nvadem\nvademecum\nvademen\nvader\nvader-abt\nvader-overste\nvader-zoonrelatie\nvaderbeeld\nvaderbinding\nvaderen\nvaderfiguur\nvaderhand\nvaderhart\nvaderhuis\nvaderimago\nvaderland\nvaderlander\nvaderlandlievend\nvaderlandloos\nvaderlands\nvaderlandse\nvaderlandsgezind\nvaderlandsgezindheid\nvaderlandsliefde\nvaderlandslievend\nvaderlief\nvaderliefde\nvaderlijk\nvaderlijkheid\nvaderloos\nvadermoord\nvadermoordenaar\nvadermoorder\nvaderons\nvaderplicht\nvaderrol\nvaderschap\nvaderschapsactie\nvaderschapsverlof\nvaderskant\nvaderskind\nvaderstad\nvaderszijde\nvadertje\nvadertrots\nvadervreugde\nvaderzegen\nvaderzorg\nvadoek\nvadsig\nvadsigaard\nvadsigheid\nvagant\nvagantenpoëzie\nvagebond\nvagebonderen\nvagelijk\nvagen\nvagevuur\nvagina\nvaginaal\nvaginisme\nvair\nvak\nvakantie\nvakantie-eiland\nvakantie-uitkering\nvakantie-uittocht\nvakantieadres\nvakantiebestemming\nvakantiebeurs\nvakantieboek\nvakantieboerderij\nvakantiebon\nvakantiebudget\nvakantiebungalow\nvakantiecentra\nvakantiecentrum\nvakantiecursus\nvakantiedag\nvakantiedagen\nvakantiedorp\nvakantiedrukte\nvakantiefoto\nvakantieganger\nvakantiegebied\nvakantiegedrag\nvakantiegeld\nvakantiegevoel\nvakantiegids\nvakantieherinnering\nvakantiehuis\nvakantiehuisje\nvakantiehulp\nvakantiejob\nvakantiekaart\nvakantiekamp\nvakantiekiekje\nvakantiekolonie\nvakantiekracht\nvakantieland\nvakantielectuur\nvakantieliefde\nvakantiemaand\nvakantieoord\nvakantieparadijs\nvakantiepark\nvakantiepatroon\nvakantieperiode\nvakantieplaats\nvakantieplan\nvakantiepret\nvakantieregeling\nvakantiereis\nvakantieresort\nvakantieseizoen\nvakantiesfeer\nvakantiespreiding\nvakantiestemming\nvakantiestreek\nvakantietijd\nvakantietoeslag\nvakantietrip\nvakantieverblijf\nvakantievergoeding\nvakantieverhaal\nvakantieverkeer\nvakantievreugde\nvakantieweek\nvakantieweer\nvakantiewerk\nvakantiewerker\nvakantiewoning\nvakantiezegel\nvakarbeider\nvakbekwaam\nvakbekwaamheid\nvakbekwaamheidseisen\nvakbeurs\nvakbeweging\nvakbibliotheek\nvakblad\nvakboek\nvakbond\nvakbondsactie\nvakbondsafgevaardigde\nvakbondsbeleid\nvakbondsbestuur\nvakbondsbestuurder\nvakbondscentrale\nvakbondscongres\nvakbondsdelegatie\nvakbondseis\nvakbondsfederatie\nvakbondsfront\nvakbondsleider\nvakbondslid\nvakbondslidmaatschap\nvakbondslijn\nvakbondsmacht\nvakbondsman\nvakbondsorganisatie\nvakbondsstrijd\nvakbondstop\nvakbondstraditie\nvakbondsverleden\nvakbondsvertegenwoordiger\nvakbondsvleugel\nvakbondsvoorman\nvakbondsvrijheid\nvakbondsvrouw\nvakbondswerk\nvakbondswoordvoerder\nvakbondszijde\nvakbroeder\nvakcentrale\nvakcongres\nvakdepartement\nvakdeskundige\nvakdetailhandel\nvakdidactiek\nvakdiploma\nvakdocent\nvake\nvaker\nvakerig\nvakfederatie\nvakgebied\nvakgeleerde\nvakgenoot\nvakgenote\nvakgericht\nvakgroep\nvakhandel\nvakidioot\nvakinformatie\nvakinhoudelijk\nvakjargon\nvakjury\nvakkencombinatie\nvakkenintegratie\nvakkennis\nvakkenpakket\nvakkenvuller\nvakkleding\nvakkring\nvakkringen\nvakkundig\nvakkundige\nvakkundigheid\nvakleerkracht\nvakleraar\nvaklieden\nvakliteratuur\nvaklitteratuur\nvaklokaal\nvaklui\nvakman\nvakmannen\nvakmanschap\nvakmatig\nvakminister\nvakministerie\nvakonderwijs\nvakonderwijzer\nvakonderwijzeres\nvakopleiding\nvakorgaan\nvakorganisatie\nvakoverstijgend\nvakpers\nvakreferent\nvakscholing\nvakschool\nvaksgewijs\nvaksgewijze\nvakspecialist\nvakspecifiek\nvakstudie\nvaktaal\nvaktechnisch\nvakterm\nvakterminologie\nvakterrein\nvaktest\nvaktijdschrift\nvakverbond\nvakverdeling\nvakvereniging\nvakvermelding\nvakvrouw\nvakwereld\nvakwerk\nvakwerkbouw\nvakwerkconstructie\nvakwerkhuis\nvakwetenschap\nvakwoord\nvakwoordenboek\nval\nvalabel\nvalappel\nvalavond\nvalbeveiliging\nvalbijl\nvalblok\nvalbrug\nvaldeur\nvale\nvalentie\nvalentijnskaart\nvaleriaan\nvaleriaanwortel\nvaleur\nvaleurs\nvalgordijn\nvalhek\nvalhelm\nvalhoed\nvalhoek\nvalhoogte\nvalidatie\nvalide\nvalideren\nvalidering\nvaliditeit\nvalies\nvalig\nvalium\nvalk\nvalkachtig\nvalkenblik\nvalkenhuis\nvalkenier\nvalkenierschap\nvalkeniershandschoen\nvalkenjacht\nvalkenkap\nvalkennest\nvalkenoog\nvalkenvlucht\nvalkerij\nvalkhof\nvalklep\nvalkruid\nvalkuil\nvallei\nvallen\nvalletje\nvallicht\nvalling\nvalluik\nvalmachine\nvalnet\nvaloefening\nvalorisatie\nvaloriseren\nvalpartij\nvalpijp\nvalreep\nvalreepsknoop\nvals\nvals spelen\nvalsaard\nvalscherm\nvalschermjager\nvalschermspringen\nvalschermspringer\nvalschermtroepen\nvalselijk\nvalsemunter\nvalsemunterij\nvalserik\nvalshartig\nvalsheid\nvalsheid in geschrifte\nvalslot\nvalsmunter\nvalsmunterij\nvalsnelheid\nvalsspeler\nvalsteiger\nvalstrik\nvalstrikken\nvaltijd\nvaluatie\nvaluta\nvaluta-effect\nvaluta-inkomsten\nvalutabeurs\nvalutacrisis\nvalutadekking\nvalutafonds\nvalutagebied\nvalutahandel\nvalutahandelaar\nvalutair\nvalutakoers\nvalutamarkt\nvalutaoptie\nvalutarisico\nvalutaschommeling\nvalutaspeculatie\nvalutateken\nvalutatransactie\nvalutaverkeer\nvalutaverlies\nvalutaverschil\nvalutawinst\nvaluteren\nvalutering\nvalversnelling\nvalwet\nvalwind\nvamen\nvamp\nvampier\nvampierfilm\nvampierverhaal\nvampirisme\nvan\nvan ambtswege\nvan binnenuit\nvan buiten uit\nvan dien\nvan gemeentezijde\nvan goeden huize\nvan goeden wille\nvan heinde en verre\nvan iets af moeten\nvan jongs af\nvan koninklijken bloede\nvan moslimzijde\nvan nature\nvan onzentwege\nvan oudsher\nvan overheidswege\nvan overheidszijde\nvan stadswege\nvan stavast\nvan tevoren\nvan zins zijn\nvanachter\nvanadium\nvanaf\nvanavond\nvanbinnen\nvanboven\nvanbuiten\nvancomycine\nvandaag\nvandaal\nvandaalbestendig\nvandaan\nvandaar\nvandalisme\nvandalismebestendig\nvandalismebestrijding\nvandalistisch\nvandehands\nvanderwaalskracht\nvandoen\nvandoor\nvaneen\nvaneenscheiden\nvaneenscheuren\nvang\nvangarm\nvangbaar\nvangbal\nvangband\nvangdraad\nvangen\nvanger\nvangertje\nvanghaak\nvanglijn\nvangnet\nvangnetfunctie\nvangrail\nvangsnoer\nvangst\nvangstbeperking\nvangstcapaciteit\nvangstcijfers\nvangsthoeveelheid\nvangstlimiet\nvangstok\nvangstquotum\nvangstverbod\nvangtouw\nvangverbod\nvangzeil\nvanher\nvanhier\nvanille\nvanille-essence\nvanille-ijs\nvanillepudding\nvanillesaus\nvanillesmaak\nvanillestokje\nvanillesuiker\nvanillevla\nvanilline\nvanjewelste\nvanmiddag\nvanmorgen\nvannacht\nvanochtend\nvanonder\nvanouds\nvanuit\nvanwaar\nvanwaaruit\nvanwege\nvanzelf\nvanzelfsprekend\nvanzelfsprekendheid\nvapeur\nvaporisator\nvaporiseren\nvar\nvaraan\nvaren\nvarenmos\nvarensgast\nvarensgezel\nvarensman\nvarensvolk\nvaria\nvariabel\nvariabele\nvariabilisatie\nvariabiliseren\nvariabiliteit\nvariant\nvariante\nvariantie\nvariatie\nvariatiemogelijkheid\nvarinas\nvariété\nvariétéartiest\nvariétéartieste\nvariétégezelschap\nvariéténummer\nvariététheater\nvariëren\nvariëteit\nvarken\nvarkenpest\nvarkensachtig\nvarkensbedrijf\nvarkensblaas\nvarkensbloed\nvarkensboer\nvarkensboerderij\nvarkensborstel\nvarkensbrood\nvarkenscrisis\nvarkenscyclus\nvarkensdarm\nvarkensdebat\nvarkensdraf\nvarkensdrijfmest\nvarkensdrijver\nvarkensflats\nvarkensfokker\nvarkensfokkerij\nvarkensgebraad\nvarkensgehakt\nvarkensgras\nvarkenshaar\nvarkenshaas\nvarkenshart\nvarkenshoeder\nvarkenshok\nvarkenshouder\nvarkenshouderij\nvarkenskarbonade\nvarkenskop\nvarkenskost\nvarkenskot\nvarkenskotelet\nvarkenslap\nvarkensleder\nvarkensleer\nvarkenslever\nvarkensmarkt\nvarkensmest\nvarkensmester\nvarkensmesterij\nvarkensogen\nvarkensoog\nvarkenspest\nvarkenspestcrisis\nvarkenspestepidemie\nvarkenspestgebied\nvarkenspestvirus\nvarkensplan\nvarkenspoot\nvarkensrib\nvarkensrollade\nvarkenssector\nvarkensslachter\nvarkensslachterij\nvarkensslager\nvarkenssnuit\nvarkenssperma\nvarkensstaart\nvarkensstal\nvarkensstapel\nvarkensteelt\nvarkenstrog\nvarkensvet\nvarkensvlees\nvarkensvoer\nvarkenswet\nvarkensziekte\nvarkentje\nvarsity\nvasculair\nvasectomie\nvaseline\nvasomotorisch\nvasopressine\nvasotomie\nvast\nvastbakken\nvastbenoemd\nvastberaden\nvastberadenheid\nvastbesloten\nvastbeslotenheid\nvastbijten\nvastbinden\nvastdraaien\nvaste\nvasteland\nvastelander\nvastelijk\nvasten\nvastenactie\nvastenbrief\nvastendag\nvastenkalender\nvastenmaand\nvastenperiode\nvastenpreek\nvastentijd\nvastentrommel\nvastenwet\nvastgebouwd\nvastgebrand\nvastgeklemd\nvastgekluisterd\nvastgemaakt\nvastgeroest\nvastgespen\nvastgespijkerd\nvastgesteld\nvastgetimmerd\nvastgoed\nvastgoedadviseur\nvastgoedafdeling\nvastgoedbedrijf\nvastgoedbeheer\nvastgoedbeheerder\nvastgoedbelegger\nvastgoedbelegging\nvastgoedbeleggingsfonds\nvastgoedbevak\nvastgoedbezit\nvastgoedcertificaat\nvastgoeddochter\nvastgoedfiscaliteit\nvastgoedfonds\nvastgoedgroep\nvastgoedhandelaar\nvastgoedinvesteerder\nvastgoedkantoor\nvastgoedmaatschappij\nvastgoedmagnaat\nvastgoedmakelaar\nvastgoedmarkt\nvastgoedonderneming\nvastgoedontwikkelaar\nvastgoedontwikkeling\nvastgoedpapier\nvastgoedpatrimonium\nvastgoedportefeuille\nvastgoedproject\nvastgoedsector\nvastgoedspecialist\nvastgoedwereld\nvastgrijpen\nvastgroeien\nvasthaken\nvasthebben\nvasthechten\nvastheid\nvasthouden\nvasthoudend\nvasthoudendheid\nvasthouding\nvastigheid\nvastketenen\nvastkitten\nvastklampen\nvastklemmen\nvastkleven\nvastklikken\nvastklinken\nvastklitten\nvastknopen\nvastkoeken\nvastkokend\nvastkoppelen\nvastleggen\nvastlegging\nvastliggen\nvastlijmen\nvastlopen\nvastmaken\nvastmeren\nvastnaaien\nvastnagelen\nvastnemen\nvastnieten\nvastomlijnd\nvastomschreven\nvastpakken\nvastpennen\nvastpinnen\nvastplakken\nvastpraten\nvastprikken\nvastraken\nvastrecht\nvastrechttarief\nvastrijden\nvastroesten\nvastschroeven\nvastsjorren\nvastslaan\nvastsnoeren\nvastspelden\nvastspijkeren\nvaststaan\nvaststaand\nvaststellen\nvaststelling\nvastvriezen\nvastwerken\nvastzetten\nvastzitten\nvastzuigen\nvat\nvatbaar\nvatbaarheid\nvatbier\nvaten\nvatenkwast\nvatenwasser\nvatten\nvaudeville\nvazal\nvazalliteit\nvazalstaat\nvbo\nvbo-school\nvechten\nvechter\nvechterij\nvechtersbaas\nvechtersmentaliteit\nvechtfilm\nvechthaan\nvechthond\nvechtjas\nvechtkunst\nvechtlust\nvechtlustig\nvechtmachine\nvechtmarkt\nvechtpartij\nvechtpet\nvechtsport\nvechtsporter\nvechttechniek\nvechtvoetbal\nvechtwagen\nvector\nvectorafbeelding\nvectoralgebra\nvectorsysteem\nvectortekening\nvectorvoorstelling\nvedel\nvedelaar\nvedelen\nveder\nvederachtig\nvederbal\nvederbos\nvedergewicht\nvederlicht\nvederloos\nvedermot\nvedermotten\nvedervormig\nvederwolken\nvedette\nvee\nveearts\nveeartsenijkunde\nveeartsenijkundig\nveeartsenijkundige\nveeartsenijschool\nveeauto\nveebedrijf\nveebeslag\nveebezetting\nveeboer\nveeboot\nveedief\nveediefstal\nveedrijver\nveefokker\nveefokkerij\nveeg\nveegactie\nveegmachine\nveegmes\nveegploeg\nveegsel\nveegster\nveegvast\nveegwagen\nveegwet\nveehandel\nveehandelaar\nveehoeder\nveehouder\nveehouderij\nveehouderijbedrijf\nveehoudersbedrijf\nveehoudster\nveejay\nveekeuring\nveekoek\nveekoopman\nveekoper\nveel\nveelal\nveelarmig\nveelbeduidend\nveelbekeken\nveelbelovend\nveelbeluisterd\nveelbesproken\nveelbetekenend\nveelbewogen\nveelbezongen\nveelbloemig\nveelduidigheid\nveeleer\nveeleisend\nveelgebruikt\nveelgeciteerde\nveelgehoord\nveelgelezen\nveelgeliefd\nveelgemaakt\nveelgeplaagd\nveelgeprezen\nveelgeroemd\nveelgevraagd\nveelgodendom\nveelgoderij\nveelheid\nveelhoek\nveelhoekig\nveelhoofdig\nveeljarig\nveelkleurendruk\nveelkleurig\nveelkleurigheid\nveelkoppig\nveelledig\nveelluik\nveelmeer\nveelomvattend\nveelpleger\nveelprater\nveelschrijver\nveelschrijverij\nveelsnarig\nveelsoortig\nveelstemmig\nveelszins\nveeltalig\nveeltaligheid\nveelte\nveelterm\nveeltijds\nveelverdiener\nveelvlak\nveelvlakkig\nveelvoet\nveelvoorkomend\nveelvormig\nveelvormigheid\nveelvoud\nveelvoudig\nveelvraat\nveelvuldig\nveelvuldigheid\nveelwetend\nveelweter\nveelweterij\nveelwijverij\nveelzeggend\nveelzijdig\nveelzijdigheid\nveem\nveemarkt\nveemarkthal\nveembaas\nveemgericht\nveen\nveenachtig\nveenarbeider\nveenbaas\nveenbes\nveenbodem\nveenbrand\nveenbranden\nveenbrug\nveenderij\nveengebied\nveengraver\nveengrond\nveenkoloniaal\nveenkolonie\nveenlaag\nveenlijk\nveenmoeras\nveenmol\nveenmos\nveenplas\nveenpluis\nveenput\nveenrook\nveenweidegebied\nveenwerker\nveepacht\nveepest\nveer\nveerboot\nveerbootramp\nveercomfort\nveerdienst\nveergeld\nveerhaven\nveerhavens\nveerhuis\nveerklok\nveerknecht\nveerkracht\nveerkrachtig\nveerkrachtigheid\nveerlieden\nveerloon\nveerman\nveerploeg\nveerpont\nveerring\nveerschip\nveerschipper\nveerschuit\nveerslot\nveersysteem\nveertien\nveertiendaags\nveertiende\nveertiende-eeuws\nveertienduizend\nveertienhonderd\nveertienhonderdste\nveertienjarig\nveertienjarigen\nveertiental\nveertig\nveertigdagentijd\nveertigduizend\nveertiger\nveertigjarig\nveertigplusser\nveertigste\nveertigtal\nveertigurengebed\nveertigurig\nveertrommel\nveerverbinding\nveerweg\nveesector\nveest\nveestal\nveestapel\nveesten\nveeteelt\nveeteeltbedrijf\nveeteeltconsulent\nveeteeltkundig\nveeteeltsector\nveeteler\nveetransport\nveevervoer\nveevoeder\nveevoederbedrijf\nveevoederfabriek\nveevoederindustrie\nveevoedersector\nveevoer\nveewagen\nveeweide\nveeweider\nveeziekte\nveganisme\nveganist\nveganistisch\nvegen\nveger\nvegetaal\nvegetarisch\nvegetarisme\nvegetariër\nvegetariërs\nvegetariërsbond\nvegetatie\nvegetatief\nvegetatiegebied\nvegetatiegordel\nvegetatiekunde\nvegetatielijn\nvegeteren\nvehikel\nvei\nveil\nveildag\nveilen\nveilheid\nveilig\nveiligheid\nveiligheidsadviseur\nveiligheidsagent\nveiligheidsagente\nveiligheidsanalyse\nveiligheidsapparaat\nveiligheidsapparatuur\nveiligheidsarchitectuur\nveiligheidsaspect\nveiligheidsbeambte\nveiligheidsbelang\nveiligheidsbeleid\nveiligheidsbeleving\nveiligheidsbesluit\nveiligheidsbril\nveiligheidscertificaat\nveiligheidschef\nveiligheidscode\nveiligheidscommissie\nveiligheidsconcept\nveiligheidsconferentie\nveiligheidscontracten\nveiligheidscontrole\nveiligheidscoördinator\nveiligheidscriteria\nveiligheidsdenken\nveiligheidsdeur\nveiligheidsdienst\nveiligheidsdoctrine\nveiligheidseis\nveiligheidsexpert\nveiligheidsfactor\nveiligheidsfunctionaris\nveiligheidsgarantie\nveiligheidsgebied\nveiligheidsgevoel\nveiligheidsglas\nveiligheidsgordel\nveiligheidsgrens\nveiligheidshalve\nveiligheidshelm\nveiligheidsinspectie\nveiligheidsinstituut\nveiligheidsinstructie\nveiligheidskabinet\nveiligheidskeuring\nveiligheidskleding\nveiligheidsklep\nveiligheidskooi\nveiligheidskordon\nveiligheidslamp\nveiligheidslek\nveiligheidslucifer\nveiligheidsmaatregel\nveiligheidsmacht\nveiligheidsman\nveiligheidsmarge\nveiligheidsmiddelen\nveiligheidsnet\nveiligheidsniveau\nveiligheidsnorm\nveiligheidsofficier\nveiligheidsonderzoek\nveiligheidsoogpunt\nveiligheidsoperatie\nveiligheidsorganisatie\nveiligheidsoverleg\nveiligheidsoverweging\nveiligheidsoverwegingen\nveiligheidspact\nveiligheidspakket\nveiligheidspal\nveiligheidspersoneel\nveiligheidspin\nveiligheidsplan\nveiligheidspolitie\nveiligheidspolitiek\nveiligheidsprobleem\nveiligheidsproblematiek\nveiligheidsrapport\nveiligheidsregime\nveiligheidsriem\nveiligheidsrisico\nveiligheidsrol\nveiligheidssamenwerking\nveiligheidsscheermes\nveiligheidsschepen\nveiligheidsschoen\nveiligheidssituatie\nveiligheidsslot\nveiligheidsspeld\nveiligheidsstelsel\nveiligheidsstop\nveiligheidsstructuur\nveiligheidsstudie\nveiligheidssysteem\nveiligheidstraining\nveiligheidstroepen\nveiligheidsuitrusting\nveiligheidsvacuüm\nveiligheidsventiel\nveiligheidsverdrag\nveiligheidsvest\nveiligheidsvoorschrift\nveiligheidsvoorschriften\nveiligheidsvoorziening\nveiligheidsvraagstuk\nveiligheidswet\nveiligheidszone\nveiligheidszorg\nveiligstellen\nveiligstelling\nveiling\nveilingcatalogus\nveilingcomplex\nveilingdag\nveilingdagen\nveilinggebouw\nveilinghal\nveilinghamer\nveilinghouder\nveilinghuis\nveilingklok\nveilingkosten\nveilingmeester\nveilingomzet\nveilingontwerp\nveilingopbrengst\nveilingopzet\nveilingprijs\nveilingprijzen\nveilingprocedure\nveilingreglement\nveilingresultaten\nveilingsite\nveilingsysteem\nveilingwaarde\nveilingwereld\nveilingwezen\nveilingzaal\nveilplicht\nveine\nveinzaard\nveinzen\nveinzer\nveinzerij\nvel\nvelaar\nveld\nveldarbeid\nveldarbeider\nveldartillerie\nveldbatterij\nveldbed\nveldbezetting\nveldbloem\nveldboeket\nveldboon\nveldcompetitie\nvelddienst\nvelddoelpunt\nveldfles\nveldfluit\nveldgeschut\nveldgewas\nveldhaas\nveldheer\nveldheersstaf\nveldheerstalent\nveldhockey\nveldhoen\nveldhospitaal\nveldkei\nveldkers\nveldkeuken\nveldkijker\nveldkorfbal\nveldlaboratorium\nveldleeuwerik\nveldlijn\nveldloop\nveldlopen\nveldloper\nveldmaarschalk\nveldmuis\nveldmuts\nveldnaam\nveldonderzoek\nveldoorlog\nveldoven\nveldoverste\nveldoverwicht\nveldpolitie\nveldpost\nveldprediker\nveldproef\nveldrat\nveldrijden\nveldrijder\nveldrit\nveldsalade\nveldsla\nveldslag\nveldspaat\nveldspel\nveldspeler\nveldsport\nveldsterkte\nveldteam\nveldteken\nveldtent\nveldtenue\nveldtheorie\nveldtocht\nveldtrainer\nvelduil\nvelduitrusting\nveldvoetbal\nveldvrucht\nveldvruchten\nveldwacht\nveldwachter\nveldweg\nveldwerk\nveldwerker\nveldwesp\nvele\nvelen\nvelerhande\nvelerlei\nvelg\nvelgen\nvelgrem\nvelijn\nvelijnpapier\nvelkant\nvellen\nvellenploter\nvelletje\nvellig\nvelling\nvellingen\nvelo\nvelodroom\nvelours\nvelum\nvelvet\nvelvorming\nvemen\nven\nvendel\nvendelen\nvendelzwaaien\nvendelzwaaier\nvendetta\nvendu\nvenduhouder\nvenduhuis\nvendumeester\nvendutie\nvenen\nveneratie\nvenerisch\nveneroloog\nveneus\nvenig\nvenijn\nvenijnig\nvenijnigheid\nvenizoen\nvenkel\nvenkelknol\nvenkelolie\nvenkelsalade\nvenkelthee\nvenkelwater\nvenkelzaad\nvennengebied\nvennoot\nvennootschap\nvennootschappelijk\nvennootschapsbelasting\nvennootschapsrecht\nvennootschapsstructuur\nvennootschapsvorm\nvennootschapswet\nvennootschapswetgeving\nvenster\nvensterbank\nvensterblind\nvensterbreedte\nvensterenveloppe\nvenstergat\nvensterglas\nvenstergordijn\nvensterhoogte\nvensterloos\nvensterluik\nvensterprogrammering\nvensterraam\nvensterruit\nvensterschool\nvent\nventen\nventer\nventiel\nventielklep\nventielslang\nventilatie\nventilatiegat\nventilatiekanaal\nventilatiekap\nventilatiekappen\nventilatiekoker\nventilatielucht\nventilatieopening\nventilatierooster\nventilatiesysteem\nventilatievoorziening\nventilator\nventilatorkachel\nventilatorriem\nventilatorriemen\nventileren\nventjager\nventje\nventriculair\nventrikel\nventrikelfibrilleren\nvents\nventster\nventweg\nvenusberg\nvenushaar\nvenusheuvel\nvenusschelp\nvenusziekte\nver\nver-van-mijn-bedshow\nveraangenamen\nveraangenaming\nveraanschouwelijken\nveraanschouwelijking\nverabsoluteren\nverabsolutering\nveraccijnzen\nveracht\nverachtelijk\nverachtelijkheid\nverachten\nverachter\nverachterd\nverachteren\nverachtering\nverachting\nverachtvoudigen\nverademen\nverademing\nveraf\nverafgelegen\nverafgoden\nverafgoding\nverafschuwen\nveralgemenen\nveralgemening\nveralgemeniseren\nveralgemenisering\nverambtelijking\nveramerikaansen\nveramerikaansing\nveramerikaanst\nveramerikaniseren\nveramerikanisering\nveranda\nveranderaar\nveranderbaar\nveranderen\nverandering\nveranderingsbeleid\nveranderingsdrift\nveranderingsgezind\nveranderingsgezindheid\nveranderingsmanagement\nveranderingsmanager\nveranderingsmogelijkheid\nveranderingsproces\nveranderlijk\nveranderlijkheid\nveranderzucht\nverankeren\nverankering\nverantwoord\nverantwoordelijk\nverantwoordelijke\nverantwoordelijkheid\nverantwoordelijkheidsbesef\nverantwoordelijkheidsgevoel\nverantwoordelijkheidsstructuur\nverantwoordelijkheidsverdeling\nverantwoordelijkheidsvraag\nverantwoordelijkheidszin\nverantwoorden\nverantwoording\nverantwoordingsplicht\nverarmd\nverarmen\nverarming\nverarmingsproces\nverbaal\nverbaasd\nverbaasdheid\nverbabbelen\nverbakken\nverbalisant\nverbaliseren\nverbalisme\nverband\nverbandbrief\nverbanddelen\nverbanddoos\nverbandgaas\nverbandkist\nverbandleer\nverbandlinnen\nverbandmateriaal\nverbandmiddel\nverbandplaats\nverbandstof\nverbandtrommel\nverbandwagen\nverbandwatten\nverbannen\nverbanning\nverbanningsoord\nverbasteren\nverbastering\nverbazen\nverbazend\nverbazing\nverbazingwekkend\nverbedden\nverbeelden\nverbeelding\nverbeeldingskracht\nverbeesten\nverbeiden\nverbeider\nverbeiding\nverbena\nverbenen\nverbening\nverbergen\nverbeten\nverbetenheid\nverbeteraar\nverbeterbaar\nverbeterblad\nverbeteren\nverbeterhuis\nverbetering\nverbeteringsgesticht\nverbeteringsplan\nverbeteringsproces\nverbeteringsprogramma\nverbeteringsvoorstel\nverbeterplan\nverbeulemansen\nverbeurdverklaren\nverbeurdverklaring\nverbeuren\nverbeurte\nverbeuzelen\nverbidden\nverbieden\nverbijsterd\nverbijsteren\nverbijsterend\nverbijstering\nverbijten\nverbijzonderen\nverbijzondering\nverbinden\nverbindendverklaring\nverbinding\nverbindings-s\nverbindingsapparatuur\nverbindingsas\nverbindingsdeur\nverbindingseenheid\nverbindingsgang\nverbindingsgroep\nverbindingskabel\nverbindingskanaal\nverbindingskantoor\nverbindingsklank\nverbindingslijn\nverbindingsman\nverbindingsmiddel\nverbindingsofficier\nverbindingsroute\nverbindingsschakel\nverbindingsstreepje\nverbindingsstuk\nverbindingsteken\nverbindingstoon\nverbindingstroepen\nverbindingsweg\nverbindingswoord\nverbindingszinnen\nverbindingszone\nverbintenis\nverbitterd\nverbitterdheid\nverbitteren\nverbittering\nverbleekt\nverbleken\nverblijd\nverblijden\nverblijf\nverblijfkosten\nverblijfplaats\nverblijfsaccommodatie\nverblijfsduur\nverblijfsgebied\nverblijfsinrichting\nverblijfsklimaat\nverblijfskosten\nverblijfskostenvergoeding\nverblijfspapieren\nverblijfsplaats\nverblijfsrecht\nverblijfsrecreatie\nverblijfsruimte\nverblijfsstatus\nverblijfstatus\nverblijfstijd\nverblijfstitel\nverblijfstoerisme\nverblijfsverbod\nverblijfsvergoeding\nverblijfsvergunning\nverblijftijd\nverblijven\nverblijvingsbeding\nverblikken\nverblind\nverblinden\nverblindheid\nverblinding\nverbloeden\nverbloeding\nverbloemd\nverbloemen\nverbloeming\nverblozen\nverbluffen\nverbluffend\nverbluft\nverbod\nverbodemen\nverboden\nverbodene\nverbodsbepaling\nverbodsbord\nverbodsrecht\nverbodswetgeving\nverboemelen\nverboeren\nverbolgen\nverbolgenheid\nverbond\nverbonden\nverbondene\nverbondenheid\nverbondsark\nverbondsbeker\nverbondsbreuk\nverbood\nverborgen\nverborgenheid\nverbositeit\nverbouw\nverbouwen\nverbouwer\nverbouwereerd\nverbouwereerdheid\nverbouwing\nverbouwingskosten\nverbouwingsplan\nverbouwingswaarde\nverbouwingswerk\nverbouwingswerkzaamheden\nverbrand\nverbrandbaar\nverbranden\nverbrander\nverbranding\nverbrandingscapaciteit\nverbrandingsenergie\nverbrandingsgas\nverbrandingsinrichting\nverbrandingsinstallatie\nverbrandingskamer\nverbrandingsmotor\nverbrandingsoven\nverbrandingsproces\nverbrandingsproduct\nverbrandingsruimte\nverbrandingstemperatuur\nverbrandingswaarde\nverbrandingswarmte\nverbrassen\nverbreden\nverbreding\nverbreed\nverbreekbaar\nverbreid\nverbreiden\nverbreiding\nverbreidingsgebied\nverbreken\nverbreking\nverbrekingshof\nverbrekingsvergoeding\nverbrijzeld\nverbrijzelen\nverbrijzeling\nverbroddelen\nverbrodden\nverbroederen\nverbroedering\nverbroederingsfeest\nverbroeien\nverbrokkeld\nverbrokkelen\nverbrokkeling\nverbruid\nverbruien\nverbruik\nverbruiken\nverbruiker\nverbruikersbelasting\nverbruikersbond\nverbruikersmarkt\nverbruikersorganisatie\nverbruikersunie\nverbruiklening\nverbruiksartikel\nverbruiksbelasting\nverbruikscijfer\nverbruikscoöperatie\nverbruiksgoederen\nverbruiksmeter\nverbruikspatroon\nverbruikspieken\nverbruikster\nverbruiksvereniging\nverbruikt\nverbuigbaar\nverbuigen\nverbuiging\nverbuigingsvorm\nverbum\nverbureaucratiseerd\nverbureaucratiseren\nverburgerlijken\nverburgerlijking\nverchristelijken\nverchromen\nverchroomd\nvercijferen\nvercommercialiseren\nvercommercialisering\nverdacht\nverdachte\nverdachtenbank\nverdachtenlijst\nverdachtmaking\nverdagen\nverdaging\nverdampen\nverdamper\nverdamping\nverdampingswarmte\nverdapperen\nverdedigbaar\nverdedigen\nverdedigend\nverdediger\nverdediging\nverdedigingscentrum\nverdedigingsduo\nverdedigingsfout\nverdedigingsgordel\nverdedigingslijn\nverdedigingslinie\nverdedigingsmechanisme\nverdedigingsmiddel\nverdedigingsmuur\nverdedigingsoorlog\nverdedigingsplan\nverdedigingsrecht\nverdedigingsrede\nverdedigingsstrategie\nverdedigingssysteem\nverdedigingstaak\nverdedigingstactiek\nverdedigingsteam\nverdedigingswal\nverdedigingswapen\nverdedigingswerk\nverdedigingswerken\nverdedigster\nverdeel-en-heersstrategie\nverdeelcentrum\nverdeeld\nverdeeldheid\nverdeelkast\nverdeelnet\nverdeelpaneel\nverdeelpunt\nverdeelsleutel\nverdeelstation\nverdeelstekker\nverdeelsysteem\nverdeemoedigen\nverdek\nverdekken\nverdekt\nverdelen\nverdeler\nverdelgd\nverdelgen\nverdelger\nverdelging\nverdelgingsmiddel\nverdelgingsoorlog\nverdeling\nverdelingskeuze\nverdelingsmechanisme\nverdelingsplan\nverdelingssysteem\nverdelingsvraagstuk\nverdenken\nverdenking\nverder\nverderaf\nverdere\nverderf\nverderfelijk\nverderfelijkheid\nverderfengel\nverderfenis\nverdergaan\nverdergaand\nverderop\nverderstrekkend\nverderven\nverderver\nverderving\nverderzetten\nverdicht\nverdichten\nverdichting\nverdichtsel\nverdict\nverdiencapaciteit\nverdiend\nverdienen\nverdiener\nverdienste\nverdienstelijk\nverdienstelijkheid\nverdiepen\nverdieping\nverdiepingshoogte\nverdiepingsvloer\nverdiepschaaf\nverdiept\nverdierf\nverdierlijken\nverdierlijking\nverdietsen\nverdietsing\nverdijd\nverdijen\nverdikke\nverdikkeme\nverdikken\nverdikkie\nverdikking\nverdikkingsmiddel\nverdisconteren\nverdiscontering\nverdobbelen\nverdoeken\nverdoeking\nverdoemd\nverdoemde\nverdoemelijk\nverdoemeling\nverdoemen\nverdoemenis\nverdoemenswaardig\nverdoeming\nverdoen\nverdoezelen\nverdoezeling\nverdoffen\nverdoffing\nverdoken\nverdokteren\nverdolen\nverdoling\nverdomd\nverdomhoek\nverdomhoekje\nverdomme\nverdommelijk\nverdommeling\nverdommen\nverdommenis\nverdonkeremanen\nverdonkeren\nverdonkering\nverdoofd\nverdoold\nverdoolde\nverdooldheid\nverdopen\nverdord\nverdorie\nverdorren\nverdorring\nverdorven\nverdorvenheid\nverdoven\nverdoving\nverdovingsgeweer\nverdovingsmiddel\nverdovingsspuit\nverdraagbaar\nverdraaglijk\nverdraagzaam\nverdraagzaamheid\nverdraaid\nverdraaidheid\nverdraaien\nverdraaiing\nverdrag\nverdragen\nverdragend\nverdragsartikel\nverdragsbepaling\nverdragsgebied\nverdragsherziening\nverdragsland\nverdragslanden\nverdragsluitend\nverdragsorganisatie\nverdragspartij\nverdragspartner\nverdragsrecht\nverdragsrechtelijk\nverdragstekst\nverdragsverplichting\nverdragswijziging\nverdreven\nverdrevene\nverdriedubbelen\nverdriedubbeling\nverdriet\nverdrietelijk\nverdrietelijkheid\nverdrieten\nverdrietig\nverdrietigheid\nverdrievoudigen\nverdrievoudiging\nverdrijven\nverdrijving\nverdringen\nverdringing\nverdringingseffect\nverdringingsmarkt\nverdringingsmechanisme\nverdrinken\nverdrinking\nverdrinkingsdood\nverdrogen\nverdroging\nverdromen\nverdronken\nverdronkene\nverdroogd\nverdroomd\nverdroot\nverdroten\nverdrukken\nverdrukker\nverdrukking\nverdubbelen\nverdubbeling\nverduffen\nverduft\nverduidelijken\nverduidelijking\nverduiken\nverduisteraar\nverduisterd\nverduisteren\nverduistering\nverduisteringsgordijn\nverduitsen\nverduitsing\nverduiveld\nverduizendvoudigen\nverduldig\nverdund\nverdunnen\nverdunner\nverdunning\nverdunningsmiddel\nverduren\nverduurzaamd\nverduurzamen\nverduurzaming\nverduveld\nverduwen\nverdwaald\nverdwaasd\nverdwaasde\nverdwaasdheid\nverdwalen\nverdwazen\nverdwazing\nverdween\nverdwenen\nverdwijnen\nverdwijning\nverdwijningszaak\nverdwijnpunt\nverdwijntruc\nveredelaar\nveredeld\nveredelen\nveredeling\nveredelingsbedrijf\nveredelingsproduct\nvereelt\nvereelten\nvereelting\nvereend\nvereenvoudigd\nvereenvoudigen\nvereenvoudiging\nvereenzaamd\nvereenzamen\nvereenzaming\nvereenzelvigd\nvereenzelvigen\nvereenzelviging\nvereerder\nvereerster\nvereeuwigen\nvereeuwiging\nvereffenaar\nvereffenbaar\nvereffenen\nvereffening\nvereisen\nvereist\nvereiste\nveren\nverendek\nverenen\nverengelsen\nverengelsing\nverengelst\nverengen\nverenging\nverenigbaar\nverenigbaarheid\nverenigd\nverenigen\nvereniging\nverenigingsactiviteit\nverenigingsadministratie\nverenigingsbestuur\nverenigingsblad\nverenigingscultuur\nverenigingsgebouw\nverenigingskantoor\nverenigingsleven\nverenigingslid\nverenigingslokaal\nverenigingsmodel\nverenigingsorgaan\nverenigingspunt\nverenigingsraad\nverenigingsrecht\nverenigingsrechtelijk\nverenigingsregister\nverenigingsstructuur\nverenigingsteken\nverenigingsverband\nverenigingsvorm\nverenkelen\nverenkleed\nverenpak\nverentooi\nvereren\nvererenswaard\nvererenswaardig\nverergeren\nverergering\nverering\nvererven\nvererving\nveresteren\nverestering\nveretteren\nverettering\nvereuropeest\nverevenen\nverevening\nvereveningsbijdrage\nverf\nverfaarde\nverfbad\nverfbehandeling\nverfbeurt\nverfblik\nverfbom\nverfborstel\nverfdoos\nverffabriek\nverffabrikant\nverfhandel\nverfhout\nverfijnd\nverfijndheid\nverfijnen\nverfijning\nverfijningsregeling\nverfilmen\nverfilming\nverfindustrie\nverfkrabber\nverfkuip\nverfkwast\nverflaag\nverflauwen\nverflauwing\nverflensen\nverfleverancier\nverfmolen\nverfoeien\nverfoeilijk\nverfoeisel\nverfoliën\nverfomfaaid\nverfomfaaien\nverfoppervlak\nverfoven\nverfplant\nverfpoeder\nverfpoeier\nverfpot\nverfproduct\nverfraaien\nverfraaiing\nverfransen\nverfransing\nverfranst\nverfrest\nverfrissen\nverfrissend\nverfrissing\nverfrist\nverfrol\nverfroller\nverfrommeld\nverfrommelen\nverfronselen\nverfschilfers\nverfschraper\nverfsoort\nverfspuit\nverfstof\nverfstreek\nverfstreep\nverfsysteem\nverftube\nverfverdunner\nverfwaren\nverfwerk\nverfwinkel\nverg.\nvergaan\nvergaand\nvergaarbak\nvergaarbekken\nvergaderaar\nvergaderagenda\nvergadercentrum\nvergadercircuit\nvergadercultuur\nvergaderdag\nvergaderdatum\nvergaderen\nvergaderfaciliteit\nvergadering\nvergaderjaar\nvergaderkamer\nvergaderlokaal\nvergaderorde\nvergaderplaats\nvergaderproces\nvergaderruimte\nvergaderschema\nvergaderstuk\nvergadertafel\nvergadertechniek\nvergadertijd\nvergadertijger\nvergadertraining\nvergaderuur\nvergaderweek\nvergaderzaal\nvergaf\nvergallen\nvergalopperen\nvergaloppering\nvergankelijk\nvergankelijkheid\nvergapen\nvergaren\nvergaring\nvergassen\nvergasser\nvergassing\nvergasten\nvergat\nvergaven\nvergeeflijk\nvergeeflijkheid\nvergeefs\nvergeefsheid\nvergeeld\nvergeestelijken\nvergeestelijking\nvergeet-mij-niet\nvergeetachtig\nvergeetachtigheid\nvergeetal\nvergeetboek\nvergeethoek\nvergefelijk\nvergelden\nvergelder\nvergelding\nvergeldingsaanval\nvergeldingsactie\nvergeldingsbombardement\nvergeldingsmaatregel\nvergeleek\nvergeleken\nvergelen\nvergelijk\nvergelijkbaar\nvergelijkbaarheid\nvergelijke\nvergelijken\nvergelijkend\nvergelijkenderwijs\nvergelijkenderwijze\nvergelijking\nvergelijkingsbasis\nvergelijkingsbeeldspraak\nvergelijkingsmaatstaf\nvergelijkingsmateriaal\nvergelijkingspunt\nvergelijkingssite\nvergelijkingstabel\nvergeling\nvergemakkelijken\nvergemakkelijking\nvergen\nvergenoegd\nvergenoegdheid\nvergenoegen\nvergetelheid\nvergetelijk\nvergeten\nvergeven\nvergevensgezind\nvergevensgezindheid\nvergeving\nvergevingsgezind\nvergevingsgezindheid\nvergevorderd\nvergewissen\nvergezellen\nvergezicht\nvergezocht\nvergiet\nvergieten\nvergiettest\nvergif\nvergiffenis\nvergift\nvergiften\nvergiftenleer\nvergiftig\nvergiftigen\nvergiftigheid\nvergiftiging\nvergiftigingsdood\nvergiftigingsverschijnsel\nvergissen\nvergissing\nvergisten\nvergisting\nverglaassel\nverglazen\nverglazing\nvergletsjerd\nverglijden\nverglimmen\nvergoddelijken\nvergoddelijking\nvergoden\nvergoeden\nvergoeding\nvergoedingenbeleid\nvergoedingenstelsel\nvergoedingensysteem\nvergoedingensystematiek\nvergoedingslimiet\nvergoedingspakket\nvergoedingsprijs\nvergoedingsregeling\nvergoedingssom\nvergoedingssysteem\nvergoelijken\nvergoelijking\nvergokken\nvergooien\nvergramd\nvergrammen\nvergrassing\nvergraven\nvergrendeld\nvergrendelen\nvergrendeling\nvergrendelingsmechanisme\nvergrijp\nvergrijpen\nvergrijzen\nvergrijzing\nvergrijzingsprobleem\nvergroeidbladig\nvergroeien\nvergroeiing\nvergroenen\nvergroening\nvergrootglas\nvergroten\nvergrotend\nvergroting\nvergroven\nvergroving\nvergruizelen\nvergruizen\nvergruizing\nverguizen\nverguizing\nverguld\nvergulden\nverguldsel\nverguldwerk\nvergunnen\nvergunning\nvergunningaanvraag\nvergunningaanvrage\nvergunningenbeleid\nvergunningenstelsel\nvergunningensysteem\nvergunninghouder\nvergunningplicht\nvergunningplichtig\nvergunningprocedure\nvergunningsaanvraag\nvergunningsplicht\nvergunningsprocedure\nvergunningsrecht\nvergunningsstelsel\nvergunningstelsel\nvergunningsvoorwaarde\nvergunningverlenend\nvergunningverlener\nvergunningverlening\nverhaal\nverhaalbaar\nverhaalbelasting\nverhaalelement\nverhaalkunst\nverhaallijn\nverhaalopbouw\nverhaalplicht\nverhaalsactie\nverhaalsplicht\nverhaalsrecht\nverhaalstructuur\nverhaaltechnisch\nverhaaltje\nverhaaltrant\nverhaalverloop\nverhaalvorm\nverhaasten\nverhaasting\nverhabbezakken\nverhakkeld\nverhakkelen\nverhakken\nverhakking\nverhakselen\nverhakstukken\nverhalen\nverhalenboek\nverhalenbundel\nverhalencyclus\nverhalenderwijs\nverhalenderwijze\nverhalenschrijver\nverhalenverteller\nverhalenwedstrijd\nverhaler\nverhandelaar\nverhandelbaar\nverhandelbaarheid\nverhandelen\nverhandeling\nverhang\nverhangen\nverhanging\nverhanselen\nverhapstukken\nverhard\nverharden\nverharder\nverharding\nverharen\nverhaspelen\nverhaspeling\nverheerlijken\nverheerlijking\nverheerlijkt\nverheffen\nverheffend\nverheffing\nverheid\nverheien\nverheimelijken\nverheimelijking\nverhelderen\nverheldering\nverhelen\nverheler\nverhelpen\nverhemelte\nverhemelteboog\nverheugd\nverheugen\nverheugend\nverheugenis\nverheuging\nverheveling\nverheven\nverhevenheid\nverhevigen\nverheviging\nverhinderen\nverhindering\nverhip\nverhippen\nverhipt\nverhit\nverhitheid\nverhitten\nverhitter\nverhitting\nverhoeden\nverhoefslaging\nverhoeren\nverhogen\nverhoging\nverhogingsteken\nverholen\nverholenheid\nverhollandsen\nverhonderdvoudigen\nverhongeren\nverhongering\nverhoog\nverhoogd\nverhoogsel\nverhoogstuk\nverhoopt\nverhoor\nverhoordag\nverhoorder\nverhoorkamer\nverhoormethode\nverhoortechniek\nverhopen\nverhoren\nverhoring\nverhouden\nverhouding\nverhoudingen\nverhoudingsgetal\nverhoudingsgewijs\nverhoudingsgewijze\nverhoudingsschaal\nverhout\nverhoute\nverhouten\nverhouting\nverhoutte\nverhovaardigen\nverhuis\nverhuisauto\nverhuisbedrijf\nverhuisbericht\nverhuisbiljet\nverhuisboedel\nverhuisdag\nverhuisdoos\nverhuisdrukte\nverhuiskaart\nverhuiskosten\nverhuiskostenvergoeding\nverhuisoperatie\nverhuisplan\nverhuisplicht\nverhuispremie\nverhuiswagen\nverhuizen\nverhuizer\nverhuizing\nverhuld\nverhullen\nverhulling\nverhuren\nverhuring\nverhuur\nverhuurbaar\nverhuurbaarheid\nverhuurbedrijf\nverhuurbeleid\nverhuurdatum\nverhuurder\nverhuurkantoor\nverhuurmaatschappij\nverhuurmarkt\nverhuurrecht\nverhuurster\nverhypothekeren\nverificateur\nverificatie\nverificatiecommissie\nverificatieonderzoek\nverificatieprocedure\nverificatieproces\nverificatiesysteem\nverificatievergadering\nverifieerbaar\nverifieerbaarheid\nverifiëren\nverijdeld\nverijdelen\nverijdeling\nverijzen\nverindischen\nvering\nverinnerlijken\nverinnerlijking\nverinnerlijkt\nverinnigen\nverisme\nverjaard\nverjaardag\nverjaardagscadeau\nverjaardagsfeest\nverjaardagsgeschenk\nverjaardagskalender\nverjaardagspartij\nverjaardagspartijen\nverjaardagspartijtje\nverjaardagstaart\nverjaardagsvisite\nverjaarfeest\nverjaargeschenk\nverjaarscadeau\nverjaarsfeest\nverjaarsgeschenk\nverjaarspartij\nverjaarstaart\nverjagen\nverjaging\nverjaren\nverjaring\nverjaringsfeest\nverjaringsrecht\nverjaringstermijn\nverjeugdigen\nverjeugdiging\nverjongen\nverjonging\nverjongingskuur\nverjongingsmiddel\nverjubelen\nverkalken\nverkalking\nverkankeren\nverkankering\nverkappen\nverkapping\nverkapt\nverkassen\nverkavelen\nverkaveling\nverkazen\nverkeer\nverkeerd\nverkeerdelijk\nverkeerdheid\nverkeersaanbod\nverkeersacademie\nverkeersader\nverkeersafwikkeling\nverkeersagent\nverkeersagressie\nverkeersambtenaar\nverkeersbeeld\nverkeersbegeleiding\nverkeersbegeleidingssysteem\nverkeersbelasting\nverkeersbeleid\nverkeersbesluit\nverkeersbeweging\nverkeersboete\nverkeersbord\nverkeersbrigadier\nverkeersbrug\nverkeerscentrale\nverkeerscentrum\nverkeerschaos\nverkeerscirculatie\nverkeerscirculatieplan\nverkeerscommissie\nverkeerscongestie\nverkeerscontrole\nverkeersdeelname\nverkeersdeelnemer\nverkeersdelict\nverkeersdeskundige\nverkeersdichtheid\nverkeersdienst\nverkeersdiploma\nverkeersdode\nverkeersdoorstroming\nverkeersdrempel\nverkeersdruk\nverkeersdrukte\nverkeerseducatie\nverkeersellende\nverkeersexamen\nverkeersfout\nverkeersgebied\nverkeersgedrag\nverkeersgeleiding\nverkeersgevaarlijk\nverkeersgroei\nverkeersgroep\nverkeershandhaving\nverkeershinder\nverkeersinfarct\nverkeersinformatie\nverkeersinfrastructuur\nverkeersinspectie\nverkeersintensiteit\nverkeersinzicht\nverkeersjournaal\nverkeersknoop\nverkeersknooppunt\nverkeerskunde\nverkeerskundig\nverkeerskundige\nverkeerslawaai\nverkeersleider\nverkeersleiding\nverkeersles\nverkeerslicht\nverkeersluw\nverkeersmaatregel\nverkeersmanagement\nverkeersmiddel\nverkeersminister\nverkeersnet\nverkeersonderwijs\nverkeersonderzoek\nverkeersongeluk\nverkeersongeval\nverkeersonveilig\nverkeersonveiligheid\nverkeersopstopping\nverkeersoverlast\nverkeersovertreder\nverkeersovertreding\nverkeersplan\nverkeersplein\nverkeerspolitie\nverkeersprobleem\nverkeersproblematiek\nverkeersproject\nverkeerspunt\nverkeersregel\nverkeersregelaar\nverkeersregeling\nverkeersregels\nverkeersreglement\nverkeersrotonde\nverkeersroute\nverkeerssignalering\nverkeerssituatie\nverkeersslachtoffer\nverkeersspecialist\nverkeersstroom\nverkeersstructuur\nverkeerssysteem\nverkeerstechniek\nverkeerstechnisch\nverkeersteken\nverkeerstoename\nverkeerstoezicht\nverkeerstoren\nverkeerstunnel\nverkeersveilig\nverkeersveiligheid\nverkeersveiligheidsactie\nverkeersveiligheidsbeleid\nverkeersveiligheidsplan\nverkeersvlieger\nverkeersvliegtuig\nverkeersvoorziening\nverkeersvrij\nverkeerswaarde\nverkeersweg\nverkeerswet\nverkeerswetgeving\nverkeerswethouder\nverkeerswezen\nverkeerswisselaar\nverkeerszuil\nverkeken\nverkenbaar\nverkenmerk\nverkennen\nverkenner\nverkennerij\nverkenning\nverkenningseenheid\nverkenningsmissie\nverkenningsteam\nverkenningstocht\nverkenningstoestel\nverkenningsvliegtuig\nverkenningsvlucht\nverkenningsvoertuig\nverkeren\nverkering\nverkerven\nverketteren\nverkettering\nverkeuren\nverkiesbaar\nverkiesbaarheid\nverkieselijk\nverkieslijk\nverkiezen\nverkiezing\nverkiezingen\nverkiezingsaffiche\nverkiezingsagent\nverkiezingsavond\nverkiezingsbelofte\nverkiezingsbijeenkomst\nverkiezingsbiljet\nverkiezingsboycot\nverkiezingscampagne\nverkiezingscomité\nverkiezingscommissie\nverkiezingscongres\nverkiezingsdag\nverkiezingsdatum\nverkiezingsdebat\nverkiezingsfraude\nverkiezingsgeweld\nverkiezingsissue\nverkiezingsitem\nverkiezingsjaar\nverkiezingskandidaat\nverkiezingskas\nverkiezingskoorts\nverkiezingsleer\nverkiezingsleus\nverkiezingsleuze\nverkiezingslijst\nverkiezingsmanifest\nverkiezingsmanoeuvre\nverkiezingsmeeting\nverkiezingsnederlaag\nverkiezingsnieuws\nverkiezingsonderzoek\nverkiezingsoverwinning\nverkiezingspad\nverkiezingspamflet\nverkiezingsperiode\nverkiezingsposter\nverkiezingsprocedure\nverkiezingsproces\nverkiezingsprogram\nverkiezingsprogramma\nverkiezingspropaganda\nverkiezingsraad\nverkiezingsrace\nverkiezingsresultaat\nverkiezingsretoriek\nverkiezingsronde\nverkiezingsslag\nverkiezingsslogan\nverkiezingsspot\nverkiezingsstrijd\nverkiezingsstunt\nverkiezingssucces\nverkiezingsthema\nverkiezingstijd\nverkiezingstoespraak\nverkiezingstournee\nverkiezingsuitslag\nverkiezingsverlies\nverkiezingswaarnemer\nverkiezingswet\nverkiezingswinst\nverkiezingszege\nverkijken\nverkikkerd\nverkillen\nverkilling\nverkindsen\nverklaarbaar\nverklaarbaarheid\nverklaard\nverklaarder\nverkladden\nverklanken\nverklanking\nverklappen\nverklapper\nverklaren\nverklarend\nverklaring\nverklaringsgrond\nverklaringsmodel\nverkleden\nverkleding\nverkleedkist\nverkleedpartij\nverkleefd\nverkleefdheid\nverkleinbaar\nverkleind\nverkleinen\nverkleinglas\nverkleining\nverkleiningsfactor\nverkleiningsuitgang\nverkleinvorm\nverkleinwoord\nverkleumd\nverkleumen\nverkleuming\nverkleurd\nverkleuren\nverkleuring\nverkleutering\nverkleving\nverklevingen\nverklikken\nverklikker\nverklikkerlampje\nverklikking\nverklikster\nverklinken\nverkloeken\nverkloten\nverklungelen\nverknallen\nverknechten\nverknechting\nverkneukelen\nverkneuteren\nverkniezen\nverknijpen\nverknippen\nverknipt\nverkniptheid\nverknocht\nverknochtheid\nverknoeien\nverknoeiing\nverknollen\nverknoopt\nverknooptheid\nverknopen\nverknoping\nverknutselen\nverkocht\nverkoelen\nverkoeling\nverkoeverkamer\nverkoken\nverkokeren\nverkokering\nverkolen\nverkoling\nverkolingsproces\nverkommeren\nverkommering\nverkonden\nverkonder\nverkondigen\nverkondiger\nverkondiging\nverkonding\nverkoold\nverkoop\nverkoopactie\nverkoopadres\nverkoopadvies\nverkoopafdeling\nverkoopafspraak\nverkoopakte\nverkoopapparaat\nverkoopargument\nverkoopbaar\nverkoopbaarheid\nverkoopbedrag\nverkoopbedrijf\nverkoopbeleid\nverkoopbevordering\nverkoopboek\nverkoopbrief\nverkoopbudget\nverkoopbureau\nverkoopcatalogus\nverkoopcijfer\nverkoopcijfers\nverkoopconcept\nverkoopcontract\nverkoopcoöperatie\nverkoopdag\nverkoopdatum\nverkoopdirecteur\nverkoopdivisie\nverkoopdocumentatie\nverkoopdoelstelling\nverkoopdruk\nverkoopervaring\nverkoopfilosofie\nverkoopformule\nverkoopfunctie\nverkoopgebied\nverkoopgebieden\nverkoopgedrag\nverkoopgesprek\nverkoopgolf\nverkoophuis\nverkoopinformatie\nverkoopinspanning\nverkoopinstrument\nverkoopkaarten\nverkoopkanaal\nverkoopkantoor\nverkoopkoers\nverkoopkosten\nverkoopkracht\nverkoopleider\nverkoopleiding\nverkooplijst\nverkooplokaal\nverkoopmaatschappij\nverkoopmanager\nverkoopmedewerker\nverkoopmethode\nverkoopmogelijkheid\nverkoopnet\nverkoopnetwerk\nverkoopopbrengst\nverkoopopdracht\nverkooporder\nverkooporganisatie\nverkoopovereenkomst\nverkooppersoneel\nverkoopplan\nverkoopplicht\nverkooppraat\nverkooppraatje\nverkoopprijs\nverkoopprocedure\nverkoopproces\nverkoopprogramma\nverkooppunt\nverkooprecht\nverkooprecord\nverkoopresultaat\nverkoopruimte\nverkoopsignaal\nverkoopsom\nverkoopsprijs\nverkoopstaf\nverkoopstatistiek\nverkoopster\nverkoopstijging\nverkoopstop\nverkoopstrategie\nverkoopsucces\nverkoopsvoorwaarden\nverkoopsysteem\nverkooptactieken\nverkooptalent\nverkoopteam\nverkooptechniek\nverkooptechnisch\nverkooptekst\nverkooptentoonstelling\nverkooptijd\nverkooptraining\nverkooptransactie\nverkooptruc\nverkoopverbod\nverkoopvergadering\nverkoopverhaal\nverkoopvolume\nverkoopvoorwaarden\nverkoopwaarde\nverkoopwinst\nverkoopzijde\nverkopen\nverkoper\nverkoperd\nverkoperen\nverkopering\nverkoping\nverkoren\nverkorf\nverkorsten\nverkort\nverkorten\nverkorting\nverkortingsteken\nverkorven\nverkouden\nverkoudheid\nverkracht\nverkrachten\nverkrachter\nverkrachting\nverkrachtingsscène\nverkrachtingszaak\nverkrampen\nverkramping\nverkrampt\nverkramptheid\nverkrappen\nverkrapping\nverkreeg\nverkregen\nverkreukeld\nverkreukelen\nverkreukeling\nverkreuken\nverkrijgbaar\nverkrijgbaarheid\nverkrijgen\nverkrijger\nverkrijging\nverkrimpen\nverkrommen\nverkromming\nverkroppen\nverkrotten\nverkrotting\nverkruien\nverkruimelen\nverkruimeling\nverkuilen\nverkwanselen\nverkwanseling\nverkwijnen\nverkwijning\nverkwikkelijk\nverkwikken\nverkwikkend\nverkwikking\nverkwisten\nverkwistend\nverkwister\nverkwisting\nverlaat\nverladen\nverlader\nverladersorganisatie\nverlading\nverlagen\nverlaging\nverlakken\nverlakker\nverlakkerij\nverlakt\nverlakwerk\nverlamd\nverlamdheid\nverlammen\nverlammend\nverlamming\nverlammingsverschijnsel\nverlanding\nverlangd\nverlangen\nverlanglijst\nverlangzamen\nverlangzaming\nverlanterfanten\nverlappen\nverlaten\nverlatenheid\nverlating\nverlatingsangst\nverleden\nverleed\nverlegde\nverlegen\nverlegenheid\nverlegenheidsoplossing\nverleggen\nverlegging\nverleidelijk\nverleidelijkheid\nverleiden\nverleider\nverleiding\nverleidingskunst\nverleidingsscène\nverleidster\nverleien\nverlekkerd\nverlekkerdheid\nverlekkeren\nverlelijken\nverlelijking\nverlenen\nverlener\nverlengbaar\nverlengde\nverlengen\nverlenging\nverlengingsteken\nverlengkabel\nverlengkabels\nverlengsel\nverlengsnoer\nverlengstuk\nverlening\nverleppen\nverlept\nverleren\nverlet\nverletdag\nverletten\nverleuteren\nverlevendigen\nverlevendiging\nverlezen\nverlicht\nverlichten\nverlichting\nverlichtingsdenken\nverlichtingsideaal\nverlichtingsinstallatie\nverlichtingspaal\nverlichtingsplan\nverlichtingspunt\nverlichtingspunten\nverlichtingstechniek\nverlichtingstoestel\nverliederlijken\nverlief\nverliefd\nverliefde\nverliefdheid\nverlieft\nverlies\nverlies-en-winstrekening\nverliescijfer\nverliescijfers\nverliescompensatie\nverliesdag\nverliesgevend\nverliesjaar\nverlieslatend\nverlieslijdend\nverlieslijst\nverliesloos\nverliesloze\nverliesmakend\nverliesnorm\nverliespartij\nverliespost\nverliespunt\nverliesrekening\nverliessaldo\nverliessituatie\nverliet\nverlieven\nverliezen\nverliezer\nverliggen\nverlijden\nverlijmen\nverlijming\nverlinken\nverlinksen\nverliteratuurd\nverloden\nverloederen\nverloedering\nverloederingsproces\nverloederingsverschijnsel\nverlof\nverlofaanvraag\nverlofaanvrage\nverlofbrief\nverlofdag\nverlofganger\nverlofhouder\nverlofpas\nverlofperiode\nverlofregeling\nverlofspaarregeling\nverlofsparen\nverloftijd\nverlokkelijk\nverlokken\nverlokkend\nverlokker\nverlokking\nverlokster\nverlonen\nverloning\nverloningssysteem\nverloningssystemen\nverloochenaar\nverloochenen\nverloochening\nverloofd\nverloofde\nverloop\nverloopstekker\nverloopstuk\nverloor\nverlopen\nverloren\nverlorene\nverlorenheid\nverloskamer\nverloskunde\nverloskundig\nverloskundige\nverlossen\nverlosser\nverlossing\nverlossingswerk\nverlostang\nverloten\nverloting\nverloven\nverloving\nverlovingsaankondiging\nverlovingsdag\nverlovingsfeest\nverlovingskaart\nverlovingsring\nverlovingstijd\nverluchten\nverluchtigen\nverluchtiging\nverluchting\nverluchtingskunst\nverluiden\nverluieren\nverlummelen\nverlustigen\nverlustiging\nvermaak\nvermaakscentrum\nvermaaksindustrie\nvermaan\nvermaanhuis\nvermaard\nvermaardheid\nvermaatschappelijken\nvermaatschappelijking\nvermageren\nvermagering\nvermageringsdieet\nvermageringskuur\nvermageringsmiddel\nvermakelijk\nvermakelijkheid\nvermakelijkheidsbelasting\nvermaken\nvermaking\nvermaledijd\nvermaledijden\nvermaledijen\nvermalen\nvermaling\nvermanen\nvermaner\nvermangelen\nvermaning\nvermannelijken\nvermannelijking\nvermannen\nvermarkten\nvermarkting\nvermeend\nvermeerderaar\nvermeerderen\nvermeerdering\nvermeerderingsbedrijf\nvermeesteren\nvermeestering\nvermeien\nvermeld\nvermelden\nvermeldenswaard\nvermeldenswaardig\nvermelding\nvermemeld\nvermemelen\nvermenen\nvermengd\nvermengen\nvermenging\nvermenigvuldigen\nvermenigvuldiger\nvermenigvuldiging\nvermenigvuldigingsfactor\nvermenigvuldigingsteken\nvermenigvuldigtal\nvermenselijken\nvermenselijking\nvermesting\nvermetel\nvermetelheid\nvermeten\nvermicelli\nvermicellipap\nvermicellisoep\nvermijdbaar\nvermijdelijke\nvermijden\nvermijding\nvermijdingsgedrag\nvermiljoen\nvermiljoenkleurig\nvermiljoenrood\nverminderd\nverminderen\nvermindering\nverminderingskaart\nverminken\nverminking\nverminkt\nverminkte\nvermissen\nvermissing\nvermist\nvermiste\nvermits\nvermoedelijk\nvermoeden\nvermoeid\nvermoeidheid\nvermoeidheidssyndroom\nvermoeidheidsverschijnsel\nvermoeien\nvermoeiend\nvermoeienis\nvermoeienissen\nvermoeiing\nvermoeiingsproef\nvermoffelen\nvermogen\nvermogend\nvermogensaanwas\nvermogensaanwasdeling\nvermogensaftrek\nvermogensbalans\nvermogensbeheer\nvermogensbeheerder\nvermogensbelasting\nvermogensbestanddeel\nvermogensbezitter\nvermogenscriminaliteit\nvermogensdelict\nvermogensdeling\nvermogenseffect\nvermogenselektronica\nvermogensgroei\nvermogensheffing\nvermogensmarkt\nvermogensopbouw\nvermogensoverdracht\nvermogensoverschot\nvermogenspositie\nvermogensrecht\nvermogensrechtelijk\nvermogensrendementsheffing\nvermogensschade\nvermogensschakelaar\nvermogensstraf\nvermogensstructuur\nvermogenstekort\nvermogenstoets\nvermogensvergelijking\nvermogensverlies\nvermogensversterking\nvermogensvorming\nvermogenswaarde\nvermogenswinst\nvermogenswinstbelasting\nvermolmd\nvermolmen\nvermolming\nvermomd\nvermomde\nvermommen\nvermomming\nvermooien\nvermoord\nvermoorden\nvermoording\nvermorsen\nvermorsing\nvermorzelen\nvermorzeling\nvermout\nvermouten\nvermouting\nvermuffen\nvermurwen\nvermurwing\nvernaaien\nvernachelen\nvernachten\nvernagelen\nvernageling\nvernaggelen\nvernatting\nvernauwen\nvernauwing\nvernederen\nvernederend\nvernedering\nvernederlandsen\nvernederlandsing\nvernederlandst\nverneembaar\nvernemen\nvernepen\nvernestelen\nverneuken\nverneukeratief\nverneukerij\nverneuteld\nvernevelaar\nvernevelen\nverneveling\nvernielal\nvernield\nvernielen\nvernieler\nvernieling\nvernielingswerk\nvernielzucht\nvernielzuchtig\nvernietigbaar\nvernietigd\nvernietigen\nvernietigend\nvernietiger\nvernietiging\nvernietigingsdrang\nvernietigingsdrift\nvernietigingskamp\nvernietigingsoorlog\nvernietigingswapen\nvernieuwbaar\nvernieuwbouw\nvernieuwd\nvernieuwen\nvernieuwer\nvernieuwing\nvernieuwingsbeleid\nvernieuwingsbeweging\nvernieuwingsdrang\nvernieuwingsdrift\nvernieuwingsgedachte\nvernieuwingsgezind\nvernieuwingsgezindheid\nvernieuwingsoperatie\nvernieuwingsplan\nvernieuwingsproces\nvernieuwingsprogramma\nvernieuwingsproject\nvernikkelen\nvernis\nverniskwast\nvernislaag\nvernissage\nvernissen\nvernoemd\nvernoemen\nvernoeming\nvernooi\nvernuft\nvernuftig\nvernuftigheid\nvernummeren\nvernummering\nveronaangenamen\nveronachtzamen\nveronachtzaming\nveronal\nverondersteld\nveronderstellen\nveronderstelling\nverongelijken\nverongelijking\nverongelijkt\nverongelijktheid\nverongelukken\nverontheiligen\nverontreinigd\nverontreinigen\nverontreiniging\nverontreinigingsheffing\nverontrust\nverontrusten\nverontrustend\nverontrusting\nverontschuldigen\nverontschuldiging\nverontwaardigd\nverontwaardigen\nverontwaardiging\nveroordeelde\nveroordelen\nveroordeling\nveroorloofd\nveroorloven\nveroorloving\nveroorzaken\nveroorzaker\nverootmoedigen\nverootmoediging\nveropenbaren\nverorberen\nverordenen\nverordening\nverordineren\nverordonneren\nverouderd\nverouderen\nveroudering\nverouderingsaftrek\nverouderingsonderzoek\nverouderingsproces\nverouderingsziekte\nverouwelijken\nveroveraar\nveroveraarster\nveroveren\nverovering\nveroveringsdrang\nveroveringsoorlog\nveroveringstocht\nveroveringszucht\nverpachten\nverpachter\nverpachting\nverpaft\nverpakken\nverpakker\nverpakking\nverpakkingsafdeling\nverpakkingsafval\nverpakkingsbedrijf\nverpakkingsconvenant\nverpakkingseenheid\nverpakkingsgroep\nverpakkingsindustrie\nverpakkingskosten\nverpakkingsmachine\nverpakkingsmateriaal\nverpakkingsmiddelen\nverpand\nverpanden\nverpanding\nverpatsen\nverpauperen\nverpaupering\nverpersoonlijken\nverpersoonlijking\nverpersoonlijkt\nverpesten\nverpesting\nverpieterd\nverpieteren\nverpinken\nverplaatsbaar\nverplaatsen\nverplaatsing\nverplaatsingskosten\nverplaatsingsteken\nverplanten\nverplanting\nverplatting\nverpleegafdeling\nverpleegdag\nverpleegde\nverpleegduur\nverpleeggeld\nverpleeggelden\nverpleeghuis\nverpleeghuisarts\nverpleeghuisbed\nverpleeghuisbewoners\nverpleeghuisindicatie\nverpleeghuiszorg\nverpleeghulp\nverpleeginrichting\nverpleegkosten\nverpleegkunde\nverpleegkundig\nverpleegkundige\nverpleegplan\nverpleegprijs\nverpleegprijzen\nverpleegster\nverpleegstersuniform\nverpleegtehuis\nverpleegzorg\nverplegen\nverpleger\nverpleging\nverplegingsdienst\nverpletten\nverpletterd\nverpletteren\nverpletterend\nverplettering\nverplicht\nverplichten\nverplichtend\nverplichting\nverplichtstelling\nverplooien\nverpoederen\nverpolitieken\nverpolitiekt\nverpompen\nverponding\nverpoppen\nverpopping\nverpot\nverpoten\nverpotten\nverpotting\nverpozen\nverpozing\nverpraten\nverprutsen\nverpulpte\nverpulveren\nverpulvering\nverraad\nverraadster\nverraden\nverrader\nverraderij\nverraderlijk\nverraderlijkheid\nverradersloon\nverrafelen\nverramsjen\nverrassen\nverrassend\nverrassenderwijs\nverrassing\nverrassingsaanval\nverrassingsactie\nverrassingseffect\nverrassingselement\nverrassingsfeest\nverrassingsfilm\nverrassingsmenu\nverrassingspakket\nverrast\nverre\nverrechtsen\nverrechtsing\nverrechtvaardigen\nverregaand\nverregenen\nverreiken\nverreikend\nverreisd\nverreizen\nverrek\nverrekenbaar\nverrekenen\nverrekening\nverrekeningscheque\nverrekenkantoor\nverrekenkas\nverrekenpakket\nverrekenprijs\nverrekenprijzen\nverrekijker\nverrekkeling\nverrekken\nverrekking\nverrekt\nverrekte\nverrel\nverrevelder\nverreweg\nverrichten\nverrichting\nverried\nverrijdbaar\nverrijden\nverrijken\nverrijking\nverrijkingsfabriek\nverrijkingsmarkt\nverrijkingsstof\nverrijkt\nverrijzen\nverrijzenis\nverrimpelen\nverroeren\nverroest\nverroesten\nverroken\nverrolbaar\nverrollen\nverronselen\nverroomsen\nverrot\nverrotten\nverrotting\nverrottingsproces\nverruigen\nverruiging\nverruilen\nverruiling\nverruimen\nverruiming\nverruimingskandidaat\nverrukkelijk\nverrukkelijkheid\nverrukken\nverrukking\nverrukt\nverruwen\nverruwing\nvers\nversaagd\nversaagdheid\nversagen\nversassen\nversbouw\nverschaald\nverschaffen\nverschaffer\nverschaffing\nverschalen\nverschalken\nverschalking\nverschansen\nverschansing\nverschanst\nverscheiden\nverscheidene\nverscheidenheid\nverschelen\nverschenen\nverschenken\nverschepen\nverscheper\nverscheping\nverscherpen\nverscherping\nverscherven\nverscheurdheid\nverscheuren\nverscheurend\nverscheuring\nverschiet\nverschieten\nverschijndag\nverschijnen\nverschijning\nverschijningsdatum\nverschijningsfrequentie\nverschijningsjaar\nverschijningsplicht\nverschijningsverbod\nverschijningsvorm\nverschijnsel\nverschikken\nverschikking\nverschil\nverschilferen\nverschillen\nverschillend\nverschillende\nverschilmeting\nverschilpunt\nverschilrekening\nverschilsignaal\nverschilstroom\nverschimmelen\nverscholen\nverschonen\nverschoning\nverschoningsrecht\nverschoof\nverschool\nverschoonbaar\nverschoonbaarheid\nverschoond\nverschoonlijk\nverschoppeling\nverschoppen\nverschot\nverschoten\nverschoven\nverschraald\nverschralen\nverschraling\nverschrijven\nverschrijving\nverschrikkelijk\nverschrikkelijkheid\nverschrikken\nverschrikking\nverschrikt\nverschroeien\nverschroeiing\nverschrokken\nverschrompeld\nverschrompelen\nverschrompeling\nverschroten\nverschudden\nverschuifbaar\nverschuilen\nverschuiven\nverschuiving\nverschuldigd\nverseert\nverseren\nversgebakken\nversgemalen\nversgeperst\nversgeraspt\nversheid\nversheidsdatum\nversie\nversiebeheersysteem\nversienummer\nversierder\nversieren\nversiering\nversieringskunst\nversieringsmotief\nversiersel\nversierster\nversiertoer\nversificatie\nversificeren\nversifiëren\nversimpelen\nversimpeling\nversjachelen\nversjacheren\nversjofeld\nversjouwen\nversjteren\nverskunst\nverslaafd\nverslaafde\nverslaafdenzorg\nverslaafdheid\nverslaan\nverslag\nverslagboek\nverslagen\nverslagenheid\nverslaggeefster\nverslaggever\nverslaggeverij\nverslaggeving\nverslagjaar\nverslaglegging\nverslagperiode\nverslampampen\nverslapen\nverslappen\nverslapping\nverslapt\nverslaven\nverslavend\nverslaving\nverslavingscircuit\nverslavingsgedrag\nverslavingskliniek\nverslavingsonderzoek\nverslavingsprobleem\nverslavingsproblematiek\nverslavingsproblemen\nverslavingsreclassering\nverslavingsziekte\nverslavingszorg\nverslechten\nverslechteren\nverslechtering\nversleer\nverslensen\nverslepen\nversleten\nversleuren\nversleutelen\nversleuteling\nverslibben\nverslibbing\nverslijken\nverslijking\nverslijmen\nverslijtbaar\nverslijten\nverslikken\nverslinden\nverslingerd\nverslingerdheid\nverslingeren\nversloffen\nverslond\nverslonden\nverslonzen\nverslonzing\nversluierd\nversluieren\nversluiering\nversluiting\nversluizen\nversmaad\nversmaat\nversmachten\nversmachting\nversmaden\nversmading\nversmallen\nversmalling\nversmarkt\nversmeden\nversmelten\nversmelting\nversmijten\nversmoren\nversmoring\nversnapering\nversneld\nversnellen\nversneller\nversnelling\nversnellingsbak\nversnellingshandel\nversnellingshendel\nversnellingsmeter\nversnellingsnaaf\nversnellingspook\nversnijden\nversnijding\nversnipperaar\nversnipperen\nversnippering\nversnoepen\nverso\nversoberen\nversobering\nversoepelen\nversoepeling\nversomberen\nversombering\nverspanen\nverspannen\nverspelen\nverspenen\nversperren\nversperring\nversperringsballon\nversperringsvuur\nverspieden\nverspieder\nverspieding\nverspiedster\nverspijkeren\nverspillen\nverspiller\nverspilling\nverspinnen\nversplinteren\nversplintering\nverspreid\nverspreiden\nverspreider\nverspreiding\nverspreidingsgebied\nverspreidingskaart\nverspreken\nverspreking\nverspringen\nverspringer\nverspringing\nversproduct\nversregel\nverssnede\nverst\nverstaald\nverstaan\nverstaanbaar\nverstaanbaarheid\nverstaander\nverstaatsing\nverstaging\nverstalen\nverstaling\nverstallen\nverstand\nverstandelijk\nverstandelijkheid\nverstandeloos\nverstandhouding\nverstandig\nverstandigheid\nverstandshuwelijk\nverstandskies\nverstandsmens\nverstandsontwikkeling\nverstandsverbijstering\nverstappen\nverstard\nverstarren\nverstarring\nverstatelijking\nverstatelijkt\nverstechniek\nverstedelijken\nverstedelijking\nversteedsen\nversteend\nversteendheid\nverstek\nverstekbak\nverstekblok\nverstekeling\nverstekelinge\nversteken\nverstekhaak\nverstekken\nverstekvonnis\nverstekwerk\nverstekzaag\nverstekzaak\nverstelbaar\nverstelbaarheid\nversteld\nversteldheid\nverstelgoed\nverstellen\nversteller\nverstelling\nverstelnaaister\nverstelster\nverstelwerk\nverstenen\nverstening\nversterf\nversterfrecht\nversterken\nversterkend\nversterker\nversterking\nversterkingsfactor\nversterkingswerk\nversterkt\nversterven\nversterving\nverstevigen\nversteviger\nversteviging\nverstevigingsbalk\nverstevigingsbalken\nverstieren\nverstijfd\nverstijven\nverstijving\nverstikken\nverstikking\nverstikkingsdood\nverstikt\nverstild\nverstillen\nverstilling\nverstoeling\nverstoffelijken\nverstoffen\nverstoffing\nverstoft\nverstoken\nverstokken\nverstokt\nverstolen\nverstomd\nverstommen\nverstomming\nverstompen\nverstomping\nverstompt\nverstond\nverstoorbaar\nverstoord\nverstoorder\nverstoordheid\nverstoppen\nverstoppertje\nverstopping\nverstopt\nverstoptheid\nverstoren\nverstoring\nverstorven\nverstoteling\nverstotelinge\nverstoten\nverstotene\nverstoting\nverstouten\nverstouwen\nverstraffen\nverstrakken\nverstrakking\nverstraler\nverstrammen\nverstramming\nverstrekken\nverstrekkend\nverstrekker\nverstrekking\nverstrekkingenpakket\nverstrengelen\nverstrengeling\nverstrijken\nverstrikken\nverstrikking\nverstrikt\nverstrooid\nverstrooidheid\nverstrooien\nverstrooiing\nverstuiken\nverstuiking\nverstuiven\nverstuiver\nverstuiving\nverstuivingsbrander\nversturen\nversturing\nverstuwen\nversuffen\nversuffing\nversuft\nversuftheid\nversuikerd\nversuikeren\nversukkelen\nversukkeling\nversus\nversvoet\nversvorm\nvertaalbaar\nvertaalbureau\nvertaalcode\nvertaalcomputer\nvertaaldienst\nvertaalfout\nvertaalkosten\nvertaalkunde\nvertaalmachine\nvertaaloefening\nvertaalproces\nvertaalprogramma\nvertaalproject\nvertaalrecht\nvertaalslag\nvertaalsoftware\nvertaalster\nvertaaltabel\nvertaalwerk\nvertaalwetenschap\nvertaalwoede\nvertaalwoordenboek\nvertakken\nvertakking\nvertakt\nvertalen\nvertaler\nvertaler-tolk\nvertaling\nvertanden\nvertanding\nvertappen\nvertapping\nvertassen\nvertasten\nverte\nvertebraal\nvertebraat\nvertebraten\nvertechnisering\nvertederd\nvertederen\nvertederend\nvertedering\nverteerbaar\nverteerbaarheid\nverteerd\nvertegenwoordigen\nvertegenwoordiger\nvertegenwoordiging\nvertegenwoordigster\nvertekend\nvertekenen\nvertekening\nvertelfestival\nvertelkunst\nvertellen\nverteller\nvertellersstem\nvertelling\nvertelperspectief\nvertelplezier\nvertelsel\nvertelselboek\nvertelstem\nvertelster\nvertelstijl\nvertelstructuur\nverteltalent\nverteltechniek\nverteltempo\nverteltrant\nvertelvoorstelling\nvertelvorm\nverteren\nvertering\nverteringsbelasting\nverteringsproces\nverteuten\nverticaal\nverticalisering\nverticaliteit\nverticuteerhark\nvertienvoudigen\nvertienvoudiging\nvertier\nvertikken\nvertillen\nvertimmeren\nvertimmering\nvertinnen\nvertinsel\nvertoef\nvertoefd\nvertoefplaats\nvertoeven\nvertogen\nvertolken\nvertolker\nvertolking\nvertolkster\nvertonen\nvertoner\nvertoning\nvertoningsverbod\nvertoog\nvertoogschrift\nvertoon\nvertoonbaar\nvertoornd\nvertoornen\nvertraagd\nvertragen\nvertraging\nvertragingsfactor\nvertragingsmanoeuvre\nvertragingsmechanisme\nvertragingstactiek\nvertragingstijd\nvertrappelen\nvertrappeling\nvertrappen\nvertrapping\nvertreden\nvertreding\nvertrek\nvertrekbasis\nvertrekcentrum\nvertrekdatum\nvertrekhal\nvertrekken\nvertrekkensklaar\nvertrekker\nvertrekking\nvertrekoverschot\nvertrekplaats\nvertrekpremie\nvertrekpunt\nvertrekregeling\nvertreksein\nvertrekstation\nvertrektijd\nvertrekuur\nvertroebelen\nvertroebeling\nvertroeteld\nvertroetelen\nvertroeteling\nvertrok\nvertrokken\nvertrokkene\nvertroosten\nvertrooster\nvertroosting\nvertrossing\nvertrouwd\nvertrouwde\nvertrouwdheid\nvertrouwelijk\nvertrouwelijkheid\nvertrouweling\nvertrouwelinge\nvertrouwen\nvertrouwensarts\nvertrouwensband\nvertrouwensbasis\nvertrouwensbeginsel\nvertrouwensberoep\nvertrouwensbreuk\nvertrouwenscommissie\nvertrouwenscrisis\nvertrouwensfiguur\nvertrouwensfunctie\nvertrouwensherstel\nvertrouwensindex\nvertrouwenskwestie\nvertrouwensman\nvertrouwenspersoon\nvertrouwenspositie\nvertrouwensregel\nvertrouwensrelatie\nvertrouwensstemming\nvertrouwensverlies\nvertrouwensvotum\nvertrouwensvraag\nvertrouwenwekkend\nvertrutting\nvertuien\nvertwijfeld\nvertwijfelen\nvertwijfeling\nveruit\nveruiterlijken\nveruiterlijking\nveruitwendigen\nvervaagd\nvervaard\nvervaardheid\nvervaardigd\nvervaardigen\nvervaardiger\nvervaardiging\nvervaarlijk\nvervagen\nvervaging\nverval\nvervaldag\nvervaldatum\nvervalen\nvervallen\nvervallenverklaring\nvervalsen\nvervalser\nvervalsing\nvervalst\nvervaltermijn\nvervaltijd\nvervangbaar\nvervangen\nvervanger\nvervanging\nvervangingsexemplaar\nvervangingsinkomen\nvervangingsinkomsten\nvervangingsinvestering\nvervangingskosten\nvervangingsmarkt\nvervangingsmiddel\nvervangingsoperatie\nvervangingsplicht\nvervangingspool\nvervangingsprocedure\nvervangingsregeling\nvervangingsreserve\nvervangingsschema\nvervangingstabel\nvervangingsvraag\nvervangingswaarde\nvervangmiddel\nvervangopdracht\nvervangster\nvervangstuk\nvervangwagen\nvervaren\nvervatten\nverveeld\nverveeldheid\nverveelvoudigen\nverveelvoudiging\nvervelen\nvervelend\nverveling\nvervellen\nvervelling\nverveloos\nverveloosheid\nverven\nvervenen\nvervening\nverver\nververij\nverversen\nverversing\nverversingshaven\nverversingskanaal\nververswinkel\nvervetten\nvervetting\nverviervoudigen\nverviervoudiging\nvervijfvoudigen\nvervijfvoudiging\nvervilten\nvervilting\nvervlaamsen\nvervlaamsing\nvervlaamst\nvervlakken\nvervlakking\nvervlechten\nvervlechting\nvervliegen\nvervlieten\nvervloeien\nvervloeken\nvervloeking\nvervloekt\nvervlogen\nvervluchtigen\nvervluchtiging\nvervoederen\nvervoegbaar\nvervoegen\nvervoeging\nvervoer\nvervoerbaar\nvervoerbedrijf\nvervoerbeleid\nvervoerbewijs\nvervoerbiljet\nvervoerder\nvervoeren\nvervoerinfrastructuur\nvervoering\nvervoerkosten\nvervoermaatschappij\nvervoermarkt\nvervoermiddel\nvervoerplan\nvervoerprijs\nvervoersaanbod\nvervoersadvies\nvervoersbedrijf\nvervoersbehoefte\nvervoersbeleid\nvervoersbewijs\nvervoersbond\nvervoerscapaciteit\nvervoerscontract\nvervoersdienst\nvervoersdocument\nvervoersector\nvervoersgebied\nvervoersgroei\nvervoersinfrastructuur\nvervoerskaart\nvervoersknooppunt\nvervoerskosten\nvervoerskostenvergoeding\nvervoersmaatschappij\nvervoersmanagement\nvervoersmarkt\nvervoersmiddel\nvervoersmogelijkheid\nvervoersnet\nvervoersnetwerk\nvervoersonderneming\nvervoersorganisatie\nvervoersplan\nvervoersprestatie\nvervoersprobleem\nvervoersproject\nvervoersregeling\nvervoersregio\nvervoerssector\nvervoersstaking\nvervoersstroom\nvervoerssysteem\nvervoerstak\nvervoersverbod\nvervoersvergoeding\nvervoersvoorziening\nvervoersvorm\nvervoersvraag\nvervoerswereld\nvervoerswezen\nvervoerswijze\nvervoersysteem\nvervoerverbod\nvervolg\nvervolgactie\nvervolgafspraak\nvervolgbaar\nvervolgbehandelaar\nvervolgbespreking\nvervolgblad\nvervolgboek\nvervolgbundel\nvervolgconferentie\nvervolgcontact\nvervolgcursus\nvervolgdag\nvervolgdagen\nvervolgdeel\nvervolgen\nvervolgens\nvervolger\nvervolgfilm\nvervolggesprek\nvervolging\nvervolgingsapparaat\nvervolgingsbeleid\nvervolgingsslachtoffer\nvervolgingswaan\nvervolgingswaanzin\nvervolgklas\nvervolglijst\nvervolgonderwijs\nvervolgonderzoek\nvervolgopdracht\nvervolgopleiding\nvervolgorder\nvervolgoverleg\nvervolgpagina\nvervolgprocedure\nvervolgproject\nvervolgrapport\nvervolgrapportage\nvervolgroman\nvervolgschade\nvervolgserie\nvervolgstap\nvervolgster\nvervolgstudie\nvervolgstuk\nvervolgtherapie\nvervolgtoets\nvervolgtoetsen\nvervolgtraject\nvervolguitgifte\nvervolguitkering\nvervolgverhaal\nvervolgvraag\nvervolgwerk\nvervolledigen\nvervollediging\nvervolmaken\nvervolmaking\nvervolmakingscursus\nvervorderen\nvervormbaar\nvervormd\nvervormen\nvervorming\nvervrachten\nvervrachter\nvervrachting\nvervreemd\nvervreemdbaar\nvervreemden\nvervreemding\nvervreemdingseffect\nvervriezen\nvervriezing\nvervroegen\nvervroeging\nvervrolijken\nvervrolijking\nvervrouwelijken\nvervrouwelijking\nvervuild\nvervuilen\nvervuiler\nvervuiling\nvervuilingsbron\nvervuilingseenheid\nvervuilingsgraad\nvervuilingsrechten\nvervuilster\nvervulbaar\nvervuld\nvervullen\nvervulling\nverwaaid\nverwaaien\nverwaand\nverwaandheid\nverwaardigen\nverwaarloosbaar\nverwaarloosd\nverwaarlozen\nverwaarlozing\nverwacht\nverwachtbaar\nverwachten\nverwachter\nverwachting\nverwachtingspatroon\nverwachtingsvol\nverwachtingswaarde\nverwant\nverwante\nverwantschap\nverwantschapsbetrekking\nverwantschapsnaam\nverward\nverwardheid\nverwarmd\nverwarmen\nverwarming\nverwarmingsapparatuur\nverwarmingsbuis\nverwarmingselement\nverwarmingsinstallateur\nverwarmingsinstallatie\nverwarmingsketel\nverwarmingskosten\nverwarmingsmonteur\nverwarmingsprobleem\nverwarmingsradiator\nverwarmingssysteem\nverwarmingstoestel\nverwarmingsvermogen\nverwarmingswater\nverwarren\nverwarrend\nverwarring\nverwasemen\nverwassen\nverwaten\nverwatenheid\nverwaterd\nverwateren\nverwatering\nverwedden\nverweduwd\nverweer\nverweerd\nverweerder\nverweermiddel\nverweerschrift\nverweerster\nverweesd\nverweiden\nverweiding\nverwekelijken\nverwekelijking\nverwekelijkt\nverweken\nverweking\nverwekken\nverwekker\nverwekking\nverwekster\nverwelf\nverwelfsel\nverwelken\nverwelking\nverwelkomen\nverwelkoming\nverwelkt\nverwend\nverwendheid\nverwennen\nverwennerij\nverwenning\nverwensen\nverwensing\nverwenst\nverwereldlijken\nverwereldlijking\nverweren\nverwering\nverweringsproces\nverwerkbaar\nverwerkbaarheid\nverwerkelijken\nverwerkelijking\nverwerken\nverwerker\nverwerking\nverwerkingsbedrijf\nverwerkingscapaciteit\nverwerkingscriterium\nverwerkingsdatum\nverwerkingseenheid\nverwerkingsindustrie\nverwerkingskosten\nverwerkingsmethode\nverwerkingsperiode\nverwerkingsproces\nverwerkingsprogramma\nverwerkingssessie\nverwerkingssnelheid\nverwerkingssysteem\nverwerkingstechnologie\nverwerkingstemperatuur\nverwerkingstijd\nverwerkingsvoorschrift\nverwerpelijk\nverwerpelijkheid\nverwerpen\nverwerping\nverwerven\nverwerving\nverwervingscommissie\nverwervingskosten\nverwervingsleeftijd\nverwervingsprocedure\nverwervingsproces\nverwervingsproject\nverwesteren\nverwestersing\nverweven\nverwevenheid\nverweving\nverwezen\nverwezenlijkbaar\nverwezenlijken\nverwezenlijking\nverwierf\nverwierven\nverwijden\nverwijderbaar\nverwijdercentrum\nverwijderd\nverwijderen\nverwijdering\nverwijderingsbeleid\nverwijderingsbijdrage\nverwijding\nverwijfd\nverwijfdheid\nverwijl\nverwijlen\nverwijsbrief\nverwijsbriefje\nverwijsfunctie\nverwijsgesprek\nverwijsindex\nverwijskaart\nverwijslijst\nverwijsprocedure\nverwijt\nverwijtbaar\nverwijtbaarheid\nverwijtbaarheidscriterium\nverwijten\nverwijting\nverwijven\nverwijzen\nverwijzing\nverwijzingsteken\nverwikkeld\nverwikkelen\nverwikkeling\nverwikken\nverwilderd\nverwilderen\nverwildering\nverwinden\nverwinnen\nverwinteren\nverwisselbaar\nverwisselen\nverwisseling\nverwittigen\nverwittiging\nverwoed\nverwoest\nverwoesten\nverwoestend\nverwoestijning\nverwoesting\nverwonden\nverwonderd\nverwonderen\nverwondering\nverwonderlijk\nverwonding\nverwonen\nverwoorden\nverwoording\nverworden\nverwording\nverworpeling\nverworpen\nverworpene\nverworpenheid\nverworvene\nverworvenheid\nverwrikken\nverwringen\nverwringing\nverwrongen\nverwulfsel\nverwurgen\nverwurging\nverzachten\nverzachtend\nverzachting\nverzaden\nverzadigbaar\nverzadigd\nverzadigen\nverzadiging\nverzadigingseffect\nverzadigingspunt\nverzadigingsverschijnselen\nverzagen\nverzakelijken\nverzakelijking\nverzaken\nverzaking\nverzakken\nverzakking\nverzakt\nverzaligd\nverzamel-cd\nverzamelaar\nverzamelaarster\nverzamelalbum\nverzamelbak\nverzamelband\nverzamelbegrip\nverzamelbeurs\nverzamelbox\nverzamelbundel\nverzameldrift\nverzamelelpee\nverzamelen\nverzamelgebied\nverzamelgebieden\nverzamelgebouw\nverzamelgiro\nverzamelhandschrift\nverzameling\nverzamelingenleer\nverzamelingetje\nverzamelinkomen\nverzamelkamp\nverzamelnaam\nverzamelobject\nverzamelplaat\nverzamelplaats\nverzamelplek\nverzamelpunt\nverzamelstaat\nverzamelstoot\nverzamelterm\nverzameltitel\nverzamelwaarde\nverzamelwerk\nverzamelwoede\nverzamelwoord\nverzanden\nverzanding\nverzegelen\nverzegeling\nverzeggen\nverzeild\nverzeilen\nverzekeraar\nverzekerbaar\nverzekerbaarheid\nverzekerd\nverzekerde\nverzekerdenbestand\nverzekerdheid\nverzekeren\nverzekering\nverzekeringmaatschappij\nverzekeringnemer\nverzekeringsadviseur\nverzekeringsagent\nverzekeringsarts\nverzekeringsbank\nverzekeringsbedrijf\nverzekeringsbon\nverzekeringsbranche\nverzekeringsconcern\nverzekeringscontract\nverzekeringsdekking\nverzekeringsdeskundige\nverzekeringsdochter\nverzekeringsfirma\nverzekeringsfonds\nverzekeringsformule\nverzekeringsfraude\nverzekeringsgeld\nverzekeringsgeneeskunde\nverzekeringsgeneeskundige\nverzekeringsgroep\nverzekeringsinstelling\nverzekeringsjaar\nverzekeringskamer\nverzekeringskantoor\nverzekeringskosten\nverzekeringsmaatschappij\nverzekeringsmakelaar\nverzekeringsman\nverzekeringsmarkt\nverzekeringsnemer\nverzekeringsonderneming\nverzekeringsovereenkomst\nverzekeringspakket\nverzekeringsplaat\nverzekeringsplicht\nverzekeringsplichtig\nverzekeringsplichtigen\nverzekeringspolis\nverzekeringspoot\nverzekeringsportefeuille\nverzekeringspremie\nverzekeringsproduct\nverzekeringsraad\nverzekeringsrecht\nverzekeringsreus\nverzekeringsrisico\nverzekeringssector\nverzekeringsstelsel\nverzekeringssysteem\nverzekeringstak\nverzekeringstechnisch\nverzekeringstussenpersoon\nverzekeringsuitkering\nverzekeringsvoorwaarde\nverzekeringsvoorwaarden\nverzekeringsvorm\nverzekeringswaarde\nverzekeringswereld\nverzekeringswet\nverzekeringswetgeving\nverzekeringswezen\nverzekeringswiskundige\nverzekeringszaken\nverzelfstandigd\nverzelfstandigen\nverzelfstandiging\nverzelfstandigingsproces\nverzenbundel\nverzendadres\nverzendboekhandel\nverzendcode\nverzenden\nverzender\nverzenderkensdag\nverzenderkesdag\nverzendhuis\nverzending\nverzendingskosten\nverzendingsprocedure\nverzendklaar\nverzendknop\nverzendkosten\nverzendlijst\nverzendprocedure\nverzendster\nverzendsysteem\nverzenen\nverzengen\nverzenging\nverzenmaker\nverzenmakerij\nverzenuwd\nverzepen\nverzeping\nverzesvoudigen\nverzesvoudiging\nverzet\nverzetje\nverzetsactiviteit\nverzetsactiviteiten\nverzetsbeweging\nverzetsblad\nverzetsdaad\nverzetsdeelnemers\nverzetsfilm\nverzetsgroep\nverzetshaard\nverzetsheld\nverzetsheldin\nverzetskrant\nverzetsleger\nverzetsleider\nverzetsman\nverzetsmensen\nverzetsmonument\nverzetsmuseum\nverzetsorganisatie\nverzetspensioen\nverzetsstrijder\nverzetsstrijdster\nverzetswerk\nverzettelijk\nverzetten\nverzetting\nverzieken\nverzieking\nverziekt\nverzien\nverziend\nverziende\nverziendheid\nverzijp\nverzilten\nverzilting\nverzilverbaar\nverzilveren\nverzilvering\nverzinkboor\nverzinken\nverzinkerij\nverzinking\nverzinkkop\nverzinnebeelden\nverzinnebeelding\nverzinnelijken\nverzinnelijking\nverzinnen\nverzinsel\nverzitten\nverzoek\nverzoeken\nverzoeker\nverzoeking\nverzoeknummer\nverzoekplaat\nverzoekplatenprogramma\nverzoekprogramma\nverzoekschrift\nverzoekster\nverzoenbaar\nverzoendag\nverzoenen\nverzoenend\nverzoener\nverzoening\nverzoeningsbijeenkomst\nverzoeningscommissie\nverzoeningsconferentie\nverzoeningsgebaar\nverzoeningsgesprek\nverzoeningsgezind\nverzoeningsgezindheid\nverzoeningsleer\nverzoeningsoffer\nverzoeningspoging\nverzoeningsprocedure\nverzoeningsproces\nverzoeningswerk\nverzoeten\nverzoeting\nverzolen\nverzoling\nverzonken\nverzonnen\nverzopen\nverzorgd\nverzorgdheid\nverzorgen\nverzorger\nverzorging\nverzorgingscentrum\nverzorgingsflat\nverzorgingsgebied\nverzorgingshuis\nverzorgingsmaatschappij\nverzorgingsperiode\nverzorgingsplaatsen\nverzorgingsplicht\nverzorgingsproduct\nverzorgingssector\nverzorgingsstaat\nverzorgingstehuis\nverzorgingstermijn\nverzorgpony\nverzorgster\nverzot\nverzotheid\nverzotten\nverzouten\nverzuchten\nverzuchting\nverzuild\nverzuilen\nverzuiling\nverzuilingsmodel\nverzuim\nverzuimbegeleiding\nverzuimbeleid\nverzuimbestrijding\nverzuimcijfer\nverzuimcontrole\nverzuimdag\nverzuimen\nverzuiming\nverzuimpercentage\nverzuipen\nverzuren\nverzuring\nverzuringsgevoelig\nverzuringsgraad\nverzusteren\nverzustering\nverzuurd\nverzwageren\nverzwakken\nverzwakking\nverzwakt\nverzwaren\nverzwaring\nverzwelgen\nverzwelging\nverzwendelen\nverzweren\nverzwering\nverzwijgen\nverzwijging\nverzwikken\nverzwikking\nverzwinden\nvesper\nvesperdienst\nvesperklok\nvespertijd\nvesperviering\nvest\nvestaals\nveste\nvesten\nvestiaire\nvestibulair\nvestibule\nvestigen\nvestiging\nvestigingsbeleid\nvestigingsbesluit\nvestigingsdirecteur\nvestigingseis\nvestigingsfactor\nvestigingsklimaat\nvestigingskosten\nvestigingsland\nvestigingsleider\nvestigingslocatie\nvestigingsmanager\nvestigingsoverschot\nvestigingsplaats\nvestigingsplek\nvestigingspremie\nvestigingsproblematiek\nvestigingspunt\nvestigingspunten\nvestigingsrecht\nvestigingsverbod\nvestigingsvergunning\nvestigingsvoorwaarde\nvestigingswet\nvesting\nvestingartillerie\nvestingbouw\nvestinggeschut\nvestingmuur\nvestingoorlog\nvestingstad\nvestingstraf\nvestingwal\nvestingwerk\nvestingwerken\nvestzak\nvestzak-broekzak\nvestzakformaat\nvestzakslagschip\nvet\nvetachtig\nvetafzetting\nvetarm\nvetblad\nvetbol\nvetbuik\nvetbult\nvetconsumptie\nvete\nveter\nveteraan\nveterane\nveteranenbeleid\nveteranenleider\nveteranenorganisatie\nveteranenziekte\nveterband\nveterdrop\nveteren\nvetergat\nveterinair\nveterschoen\nvetertje\nvetgans\nvetgedrukt\nvetgehalte\nvetgezwel\nvetheid\nvethuishouding\nvetjes\nvetkaars\nvetklier\nvetklomp\nvetkrijt\nvetkuif\nvetkussen\nvetlaag\nvetlaars\nvetleer\nvetleren\nvetlok\nvetmesten\nvetmester\nvetmesting\nveto\nvetoog\nvetorecht\nvetoën\nvetpercentage\nvetplant\nvetpot\nvetrand\nvetrijk\nvetrol\nvetschrift\nvetsmelter\nvetsmelterij\nvetsmering\nvetspuit\nvetstaart\nvetstof\nvette\nvetten\nvetter\nvettig\nvettigheid\nvetverdeling\nvetvlek\nvetvorming\nvetvrij\nvetweefsel\nvetwei\nvetweiden\nvetweider\nvetweiderij\nvetzak\nvetzucht\nvetzuur\nveulen\nvexatie\nvexeren\nvezel\nvezelachtig\nvezelen\nvezelfabriek\nvezelgewas\nvezelig\nvezeligheid\nvezelplaat\nvezelplant\nvezelproductie\nvezelrijk\nvezelstof\nvezeltje\nvezelvlies\nvezen\nvgl.\nvia\nvia via\nviaduct\nviagra\nviaticum\nvibrafonist\nvibrafoon\nvibratie\nvibrato\nvibrator\nvibreren\nvicariaat\nvicaris\nvicaris-generaal\nvice versa\nviceaanvoerder\nviceadmiraal\nviceburgemeester\nvicecommandant\nviceconsul\nvicedirecteur\nvicefractieleider\nvicefractievoorzitter\nvicegouverneur\nvicekanselier\nvicekanselierschap\nvicekoning\nviceminister\nviceminister-president\nvicepartijvoorzitter\nvicepremier\nvicepremiers\nvicepremierschap\nvicepresident\nvicepresidente\nvicepresidentieel\nvicepresidentschap\nvicepresidentskandidaat\nvicerector\nvicesecretaris\nvicesecretaris-generaal\nvicevoorzitter\nvicevoorzitterschap\nvicewereldkampioen\nvicieus\nvictoriaans\nvictoriabaars\nvictorie\nvictorieus\nvictualie\nvictualiën\nvide\nvideo\nvideo on demand\nvideo-installatie\nvideo-opname\nvideoapparaat\nvideoapparatuur\nvideoband\nvideobeeld\nvideobewaking\nvideobewerking\nvideoboodschap\nvideobranche\nvideobrief\nvideobril\nvideocamera\nvideocassette\nvideocassetterecorder\nvideoclip\nvideoclipachtig\nvideoconferencing\nvideoconferentie\nvideodocumentaire\nvideofilm\nvideofilmpjes\nvideofoon\nvideofragment\nvideogame\nvideojockey\nvideokaart\nvideoketen\nvideokunst\nvideokunstenaar\nvideokunstenares\nvideomarkt\nvideomateriaal\nvideomontage\nvideomuur\nvideoplaat\nvideopresentatie\nvideoproduct\nvideoproductie\nvideoprogramma\nvideoproject\nvideorecorder\nvideoregistratie\nvideoreportage\nvideoscherm\nvideosignaal\nvideospel\nvideospeler\nvideosysteem\nvideotape\nvideotechniek\nvideotheek\nvideoverbinding\nvideoverhuur\nvideowerk\nvideowerkgroep\nvideowinkel\nvideozaak\nviditel\nvidé\nvief\nviefheid\nviel\nvier\nvier tiende\nvier vijfde\nvier-zonder-stuurman\nvierarmig\nvieravond\nvierbaans\nvierbaansweg\nvierbenig\nvierbladig\nviercilinder\nvierdaags\nvierdaagse\nvierdag\nvierdagenweek\nvierde\nvierdejaars\nvierdeklasser\nvierdelig\nvierderangs\nvierderlei\nvierdeurs\nvierdeursauto\nvierdimensionaal\nvierdraads\nvierdubbel\nvierduizend\nvierel\nvieren\nvierendeel\nvierendelen\nvierendertig\nvierendertigste\nvierenhalf\nvierennegentig\nvierentachtig\nvierentwintig\nvierentwintigduizend\nvierentwintigjarig\nvierentwintigste\nvierentwintiguurseconomie\nvierenveertig\nvierenveertigste\nvierenvijftig\nvierenzestig\nvierenzeventig\nviergangenmenu\nvierhandig\nvierhoek\nvierhoekig\nvierhonderd\nvierhonderdduizend\nvierhonderdste\nvierhonderdtal\nvierhonderdvijftig\nvierhoog\nviering\nvierjaarlijks\nvierjarenplan\nvierjarentermijn\nvierjarig\nvierjarige\nvierkaart\nvierkamp\nvierkant\nvierkantemeterprijs\nvierkanten\nvierkantig\nvierkantsvergelijking\nvierkantswortel\nvierklauwens\nvierkleurendruk\nvierkoppig\nvierkwartsmaat\nvierlandentoernooi\nvierledig\nvierling\nvierloper\nvierluik\nviermaal\nviermansbob\nviermanschap\nviermaster\nviermotorig\nvierpartijencoalitie\nvierpersoonskamer\nvierpitter\nvierregelig\nvierschaar\nvierspan\nviersporig\nviersprong\nvierstemmig\nviersterrengeneraal\nviersterrenhotel\nviertakt\nviertaktmotor\nviertal\nviertalig\nviertallencompetitie\nviertallig\nviertje\nviertrapsautomaat\nvieruurtje\nviervlak\nviervoet\nviervoeter\nviervoetig\nviervoud\nviervoudig\nvierweeks\nvierwielaandrijving\nvierwielaangedreven\nvierwieler\nvierwielig\nvierzijdig\nvierzitter\nvies\nviesheid\nviesneus\nviespeuk\nvietnamees\nvieux\nview\nviewdata\nviewer\nviewing\nviewmaster\nvieze\nviezerd\nviezerik\nviezevazen\nviezig\nviezigheid\nvigeren\nvigeur\nvigilante\nvigileren\nvigilie\nvigiliedag\nvignet\nvijand\nvijandbeeld\nvijanddenken\nvijandelijk\nvijandelijkheden\nvijandelijkheid\nvijandig\nvijandigheid\nvijandin\nvijandsbeeld\nvijandschap\nvijf\nvijfbak\nvijfcilinder\nvijfdaags\nvijfdagenweek\nvijfde\nvijfdejaars\nvijfdelig\nvijfdeurs\nvijfdeursauto\nvijfdeursauto's\nvijfduizend\nvijfduizendste\nvijfendertig\nvijfendertigduizend\nvijfendertigste\nvijfenhalf\nvijfennegentig\nvijfentachtig\nvijfentwintig\nvijfentwintigduizend\nvijfentwintighonderd\nvijfentwintigjarig\nvijfentwintigste\nvijfenveertig\nvijfenveertigduizend\nvijfenveertigjarig\nvijfenveertigjarige\nvijfenvijftig\nvijfenzestig\nvijfenzestigpluskaart\nvijfenzestigplusser\nvijfenzestigste\nvijfenzeventig\nvijfenzeventigjarig\nvijfenzeventigste\nvijffrankstuk\nvijfhoek\nvijfhoekig\nvijfhonderd\nvijfhonderdduizend\nvijfhonderdste\nvijfhonderdvijftig\nvijfjaarlijks\nvijfjarenplan\nvijfjarenprogramma\nvijfjarig\nvijfjarige\nvijfje\nvijfkaart\nvijfkamp\nvijfkantig\nvijfkoppig\nvijfkruidenpoeder\nvijfledig\nvijfling\nvijfmaal\nvijfploegendienst\nvijfpuntig\nvijfsetter\nvijfstemmig\nvijfsterrenhotel\nvijftal\nvijftallig\nvijftien\nvijftiende\nvijftiende-eeuws\nvijftienduizend\nvijftienhonderd\nvijftienjarig\nvijftienkoppig\nvijftiental\nvijftig\nvijftigduizend\nvijftiger\nvijftigjarig\nvijftigmaal\nvijftigplusser\nvijftigste\nvijftigtal\nvijftrapsautomaat\nvijfversnellingsbak\nvijfvingerig\nvijfvlak\nvijfvoud\nvijfvoudig\nvijg\nvijgenblad\nvijgenboom\nvijgenmand\nvijgenmat\nvijl\nvijlen\nvijlsel\nvijs\nvijver\nvijvervis\nvijzel\nvijzelen\nvijzelmolen\nvijzelstamper\nvijzen\nvilbeluik\nvilder\nvilderij\nvilderswerk\nvilein\nvilla\nvillabewoner\nvilladorp\nvillagrond\nvillanelle\nvillapark\nvillawijk\nvillegiatuur\nvillen\nvilmes\nvilt\nviltachtig\nvilten\nvilthoed\nviltig\nviltje\nviltpapier\nviltpen\nviltstift\nvim\nvimmen\nvin\nvinaigrette\nvindbaar\nvindbaarheid\nvindelig\nvinden\nvinder\nvindersloon\nvindersrecht\nvindicatie\nvindicatief\nvindiceren\nvinding\nvindingrijk\nvindingrijkheid\nvindplaats\nvindster\nving\nvinger\nvingerafdruk\nvingerafdrukkensysteem\nvingeralfabet\nvingerbreed\nvingerdik\nvingerdoekje\nvingeren\nvingergreep\nvingerhandschoen\nvingerhoed\nvingerhoedskruid\nvingerkom\nvingerkootje\nvingerlid\nvingerling\nvingernagel\nvingeroefening\nvingerring\nvingerspraak\nvingertop\nvingertoppengevoel\nvingervaardigheid\nvingerverf\nvingervlug\nvingervlugheid\nvingerwerk\nvingerwijzing\nvingerzetting\nvinificatie\nvink\nvinken\nvinkenbaan\nvinkenier\nvinkenkooi\nvinkennest\nvinkennet\nvinkenslag\nvinkentouw\nvinkenvangst\nvinker\nvinkje\nvinnervig\nvinnig\nvinnigheid\nvinoloog\nvintage\nvinvis\nvinyl\nvinylchloride\nvinylplaat\nviola da gamba\nviolatie\nviolen\nviolenbed\nviolent\nviolet\nvioletkleurig\nviolier\nviolist\nvioliste\nviolistisch\nvioloncel\nvioloncellist\nvioloncello\nviool\nvioolbouwer\nvioolconcert\nvioolconcerto\nvioolhars\nvioolkam\nvioolkast\nvioolkist\nvioolklank\nvioolles\nvioolmuziek\nvioolpartij\nvioolsleutel\nvioolsnaar\nvioolsonate\nvioolspel\nvioolspelen\nvioolspelend\nvioolspelende\nvioolspeler\nviooltje\nviooltjesgeur\nvioolvirtuoos\nvip\nvipbehandeling\nvipdorp\nvips\nviraal\nvirago\nvirginaal\nvirginiteit\nviriel\nviriliteit\nvirologie\nviroloog\nvirtual reality\nvirtualisatie\nvirtualiteit\nvirtueel\nvirtuoos\nvirtuositeit\nvirtuoze\nvirulent\nvirulentie\nvirus\nvirusbestrijder\nvirusdetectieprogramma\nvirusdrager\nvirusepidemie\nvirusinfectie\nvirusscan\nvirusscanner\nvirusstam\nvirusvariant\nvirusziekte\nvis\nvis-à-vis\nvisaanvoer\nvisaas\nvisachtig\nvisafoon\nvisafslag\nvisafval\nvisagist\nvisagiste\nvisakte\nvisarend\nvisbank\nvisbedrijf\nvisben\nvisbestand\nvisblaas\nvisboer\nvisbouillon\nvisburger\nvisceraal\nvisconserven\nvisconsumptie\nviscose\nviscosimetrie\nviscositeit\nviscouvert\nvisdag\nvisdief\nvisdiefje\nvisduivel\nviseren\nvisering\nvisetend\nviseter\nvisfilet\nvisfraude\nvisgebied\nvisgerecht\nvisgerei\nvisgraat\nvisgraatdiagram\nvisgraatmotief\nvisgrom\nvisgrond\nvisgronden\nvishaak\nvishal\nvishandel\nvishandelaar\nvishoek\nvisibiliteit\nvisie\nvisieloos\nvisindustrie\nvisioen\nvisionair\nvisitatie\nvisitatiecommissie\nvisitatierapport\nvisitator\nvisite\nvisitekaartje\nvisiteren\nvisiteur\nvisiteuren\nvisiteuse\nviskaar\nviskar\nviskeus\nviskoper\nviskotter\nviskraam\nviskweek\nviskwekerij\nvislepel\nvisliefhebber\nvisliefhebster\nvislijm\nvislijn\nvislucht\nvismaaltijd\nvismarkt\nvismeel\nvismes\nvismijn\nvisnet\nvisofoon\nvisolie\nvisotter\nvispastei\nvisperspectief\nvisplaat\nvisrecht\nvisrestaurant\nvisrijk\nvissaus\nvisschotel\nvisschub\nvissector\nvisseizoen\nvissen\nvissenbloed\nvissenkom\nvissenkop\nvissenoog\nvisser\nvisserij\nvisserijakkoord\nvisserijband\nvisserijbedrijf\nvisserijbeleid\nvisserijbioloog\nvisserijinspectie\nvisserijonderzoek\nvisserijoorlog\nvisserijproduct\nvisserijrechten\nvisserijsector\nvisserijvloot\nvisserijwereld\nvisserman\nvissersbedrijf\nvissersbevolking\nvissersboot\nvissersdorp\nvissersgaren\nvissersgemeenschap\nvissershaven\nvissershut\nvisserslatijn\nvissersleven\nvisserspink\nvissersplaats\nvissersring\nvissersschip\nvissersschuit\nvisserssloep\nvissersvaartuig\nvissersvloot\nvissersvolk\nvissersvrouw\nvissig\nvissing\nvissloep\nvissnoer\nvissoep\nvissoort\nvisspaan\nvisstand\nvisstek\nvissterfte\nvisstick\nvisstoeltje\nvisteelt\nvistijd\nvistrap\nvistuig\nvisualisatie\nvisualiseren\nvisualisering\nvisueel\nvisuitrusting\nvisum\nvisumaanvraag\nvisumbeleid\nvisumkantoor\nvisumplicht\nvisumplichtig\nvisumplichtige\nvisumverlening\nvisumweigering\nvisvangst\nvisventer\nvisverbod\nvisvergunning\nvisverwerkend\nvisverwerking\nvisverwerkingsbedrijf\nvisvijver\nvisvlees\nvisvoer\nvisvrouw\nviswant\nviswater\nviswedstrijd\nvisweer\nviswijf\nviswijventaal\nviswinkel\nvit\nvitaal\nvitalisering\nvitalisme\nvitalist\nvitalistisch\nvitaliteit\nvitamine\nvitaminearm\nvitaminegebrek\nvitaminegehalte\nvitamineloos\nvitaminen\nvitaminepil\nvitaminepreparaat\nvitamineproducent\nvitamineren\nvitaminerijk\nvitamines\nvitaminestoot\nvitaminetablet\nvitaminetekort\nvitiligo\nvitrage\nvitrine\nvitrinekast\nvitriool\nvitrocultuur\nvitse\nvitsen\nvitten\nvitter\nvitterig\nvitterij\nvitusdans\nvitzucht\nvivace\nvivaciteit\nvivarium\nvivat\nvivisectie\nvizier\nvizierhelm\nvizierkijker\nvizierklep\nvizierkorrel\nvizierlijn\nvj\nvla\nvlaag\nvlaai\nvladder\nvlade\nvlaflip\nvlag\nvlagdiscriminatie\nvlagen\nvlaggen\nvlaggendoek\nvlaggendraagster\nvlaggendrager\nvlaggenkaart\nvlaggenkapitein\nvlaggenkoord\nvlaggenlijn\nvlaggenmast\nvlaggenparade\nvlaggenschip\nvlaggenstok\nvlaggentouw\nvlaggetjesdag\nvlagofficier\nvlagsignaal\nvlagvertoon\nvlagvoerder\nvlak\nvlakaf\nvlakbij\nvlakdruk\nvlakglas\nvlakgom\nvlakhamer\nvlakheid\nvlakken\nvlakker\nvlakkerig\nvlakkig\nvlakliggend\nvlakschuurmachine\nvlaktaks\nvlakte\nvlaktemaat\nvlaktemeting\nvlakuit\nvlakverdeling\nvlakversiering\nvlakvulling\nvlakweg\nvlam\nvlambloem\nvlamboog\nvlamisme\nvlamkolen\nvlammen\nvlammend\nvlammengloed\nvlammenwerper\nvlammenzee\nvlammerig\nvlammetje\nvlammig\nvlamoven\nvlampijp\nvlampunt\nvlamvatten\nvlamverdeler\nvlamvertrager\nvlamvormig\nvlas\nvlasaard\nvlasachtig\nvlasakker\nvlasbaard\nvlasbewerking\nvlasbloem\nvlasblond\nvlasboer\nvlasbouw\nvlasbraak\nvlasbraker\nvlasdraad\nvlashaar\nvlashandel\nvlashekel\nvlaskam\nvlaskleurig\nvlaskop\nvlasland\nvlasleeuwenbek\nvlaslinnen\nvlasroting\nvlassen\nvlasser\nvlassig\nvlasspinner\nvlasspinnerij\nvlasspinster\nvlasstengel\nvlasstreek\nvlasteelt\nvlasvezel\nvlasvink\nvlaswiek\nvlaszaad\nvlecht\nvlechtdraad\nvlechten\nvlechtheg\nvlechtheggen\nvlechting\nvlechtriet\nvlechtsel\nvlechtwerk\nvleermuis\nvleermuisman\nvleermuizengrot\nvlees\nvleesafdeling\nvleesafval\nvleesbal\nvleesbank\nvleesbedrijf\nvleesberg\nvleesblok\nvleesboom\nvleesbord\nvleesbouillon\nvleesbranche\nvleesconserven\nvleesconsumptie\nvleescrisis\nvleesdag\nvleesetend\nvleeseter\nvleesexport\nvleesextract\nvleesfabriek\nvleesfondue\nvleesfraude\nvleesgerecht\nvleesgeworden\nvleesgrossier\nvleeshaak\nvleeshal\nvleeshandel\nvleeshouwer\nvleeshouwerij\nvleeshuis\nvleesindustrie\nvleeskers\nvleeskeurder\nvleeskeuring\nvleeskleur\nvleeskleurig\nvleesklomp\nvleeskoe\nvleeskost\nvleesloos\nvleesmarkt\nvleesmes\nvleesmolen\nvleesnat\nvleespan\nvleespastei\nvleespen\nvleespot\nvleesprijs\nvleesproduct\nvleesproductie\nvleessalade\nvleesschotel\nvleessector\nvleessoort\nvleesstier\nvleestomaat\nvleesvarken\nvleesvee\nvleesvervanger\nvleesverwerkend\nvleesverwerker\nvleesverwerking\nvleesverwerkingsbedrijf\nvleesvlieg\nvleesvork\nvleeswaar\nvleeswaren\nvleeswarenbedrijf\nvleeswarenfabriek\nvleeswarenindustrie\nvleeswond\nvleeswonde\nvleeswording\nvleesworst\nvleet\nvlegel\nvlegelachtig\nvlegelachtigheid\nvlegeljaren\nvleien\nvleiend\nvleier\nvleierij\nvleinaam\nvleister\nvleitaal\nvleiwoord\nvlek\nvlekkeloos\nvlekkeloosheid\nvlekken\nvlekkenmiddel\nvlekkenpatroon\nvlekkenwater\nvlekkenziekte\nvlekkerig\nvlekkig\nvlektyfus\nvlekziekte\nvlerk\nvlerkachtig\nvlerken\nvlerkerig\nvlerkprauw\nvleselijk\nvleselijkheid\nvlet\nvletschuit\nvletten\nvletter\nvleug\nvleugel\nvleugelaanvaller\nvleugeladjudant\nvleugelaltaar\nvleugelboot\nvleugeldeur\nvleugellam\nvleugelloos\nvleugelman\nvleugelmoer\nvleugelmuts\nvleugelpiano\nvleugelprofiel\nvleugelraam\nvleugelslag\nvleugelspanning\nvleugelspanwijdte\nvleugelspeler\nvleugelspits\nvleugeltip\nvleugeltje\nvleugelverdediger\nvleugelwijdte\nvleugen\nvleugje\nvlezen\nvlezig\nvlieboot\nvlieden\nvlieg\nvliegafstand\nvliegangst\nvliegas\nvliegbaan\nvliegbasis\nvliegbedrijf\nvliegbereik\nvliegbeweging\nvliegbiljet\nvliegboot\nvliegbrevet\nvliegclub\nvliegdek\nvliegdekschip\nvliegden\nvliegdienst\nvliegeigenschappen\nvliegen\nvliegend\nvliegendoder\nvliegendrek\nvliegeneter\nvliegengordijn\nvliegenier\nvliegenkast\nvliegenklap\nvliegenkop\nvliegenlarve\nvliegenlijm\nvliegenmepper\nvliegennet\nvliegenpapier\nvliegenplaag\nvliegenpoot\nvliegenraam\nvliegens\nvliegenscheet\nvliegenstront\nvliegensvlug\nvliegenvanger\nvliegenvuil\nvliegenzwam\nvlieger\nvliegeren\nvliegerfeest\nvliegerij\nvliegertouw\nvliegervaring\nvliegfeest\nvlieggat\nvlieggedrag\nvlieggewicht\nvlieghaven\nvlieghoogte\nvlieghuid\nvlieginstructeur\nvliegkamp\nvliegkampschip\nvliegkosten\nvliegkunst\nvlieglawaai\nvlieglengte\nvliegles\nvliegmaatschappij\nvliegmachine\nvliegmarkt\nvliegoefening\nvliegongeluk\nvliegopleiding\nvliegpost\nvliegproeven\nvliegramp\nvliegreis\nvliegroute\nvliegschema\nvliegschool\nvliegshow\nvliegsnelheid\nvliegsport\nvliegster\nvliegstrip\nvliegtechniek\nvliegterrein\nvliegticket\nvliegtijd\nvliegtocht\nvliegtochtje\nvliegtoestel\nvliegtuig\nvliegtuigbenzine\nvliegtuigbestuurder\nvliegtuigbom\nvliegtuigbouw\nvliegtuigbouwer\nvliegtuigbouwkunde\nvliegtuigbouwkundig\nvliegtuigbrandstof\nvliegtuigcrash\nvliegtuigdeur\nvliegtuigfabriek\nvliegtuigfabrikant\nvliegtuighangar\nvliegtuigindustrie\nvliegtuigkaper\nvliegtuigkaping\nvliegtuiglawaai\nvliegtuigloods\nvliegtuigmaatschappij\nvliegtuigmodel\nvliegtuigmoederschip\nvliegtuigmonteur\nvliegtuigmotor\nvliegtuigonderdeel\nvliegtuigonderhoud\nvliegtuigongeluk\nvliegtuigongeval\nvliegtuigpassagier\nvliegtuigproductie\nvliegtuigramp\nvliegtuigreis\nvliegtuigspotter\nvliegtuigstoel\nvliegtuigtechniek\nvliegtuigticket\nvliegtuigtrap\nvliegtuigtrombose\nvliegtuigtype\nvliegtuigvleugel\nvliegtuigwrak\nvlieguur\nvliegvakantie\nvliegveiligheid\nvliegveld\nvliegverbinding\nvliegverbod\nvliegverkeer\nvliegvissen\nvliegwedstrijd\nvliegweer\nvliegwerk\nvliegwezen\nvliegwiel\nvliem\nvliemen\nvlier\nvlierbes\nvlierboom\nvlierhout\nvlierhouten\nvliering\nvlierpit\nvliersiroop\nvlierstroop\nvlierstruik\nvlierthee\nvlies\nvliesachtig\nvliesdun\nvliespinda\nvliesridder\nvliesvleugelig\nvliesvleugelige\nvliet\nvlieten\nvliezen\nvliezig\nvlij\nvlijen\nvlijlaag\nvlijm\nvlijmen\nvlijmend\nvlijmscherp\nvlijt\nvlijtig\nvlinder\nvlinderachtig\nvlinderbloem\nvlinderbloemig\nvlinderbloemigen\nvlinderbril\nvlinderdas\nvlinderdasje\nvlinderen\nvlindermes\nvlindernet\nvlinderslag\nvlinderslagspecialist\nvlindersoort\nvlinderstrik\nvlindertje\nvlindertuin\nvlindervriendelijk\nvlindervriendelijke\nvlo\nvlocht\nvloden\nvloed\nvloedanker\nvloedbos\nvloeddeur\nvloedgolf\nvloedhaven\nvloedlijn\nvloedstand\nvloedstroom\nvloedwater\nvloei\nvloeibaar\nvloeibaarheid\nvloeiblad\nvloeiblok\nvloeiboek\nvloeien\nvloeiend\nvloeiing\nvloeilijst\nvloeimest\nvloeipapier\nvloeiplank\nvloeirol\nvloeistof\nvloeistofdicht\nvloeistofoppervlak\nvloeistofpeil\nvloeistofpomp\nvloeistofsnelheid\nvloeistofstroming\nvloeistofstroom\nvloeitje\nvloeiweide\nvloek\nvloekbeest\nvloeken\nvloeker\nvloekverbod\nvloekwaardig\nvloekwoord\nvloer\nvloerbalk\nvloerbedekking\nvloerbekleding\nvloerdeel\nvloerdikte\nvloerdweil\nvloeren\nvloerkleed\nvloerlamp\nvloermat\nvloermozaïek\nvloeroefening\nvloeroppervlak\nvloeroppervlakte\nvloerplaat\nvloerplank\nvloerplanken\nvloersteen\nvloersysteem\nvloertapijt\nvloertegel\nvloertje\nvloertrekker\nvloerveld\nvloerverwarming\nvloerzand\nvloerzeil\nvlogen\nvlok\nvlokachtig\nvlokken\nvlokkentest\nvlokkenzeep\nvlokkerig\nvlokkig\nvlonder\nvlood\nvloog\nvlooien\nvlooienband\nvlooienbeet\nvlooienmarkt\nvlooienpoeder\nvlooienspel\nvlooientheater\nvloot\nvlootbasis\nvlootdemonstratie\nvlooteenheid\nvlooteskader\nvlootoefening\nvlootpersoneel\nvlootrevue\nvlootschouw\nvlootverdrag\nvlootvernieuwing\nvlootvoogd\nvlos\nvlossen\nvlossig\nvloszij\nvloszijde\nvlot\nvlot trekken\nvlotbrug\nvloten\nvlotgaand\nvlotgras\nvlotheid\nvlothout\nvlotjes\nvlotten\nvlottend\nvlotter\nvlotterschakelaar\nvlotweg\nvlouw\nvlucht\nvluchtauto\nvluchtberm\nvluchtbeweging\nvluchteling\nvluchtelinge\nvluchtelingenbeleid\nvluchtelingencentrum\nvluchtelingenconventie\nvluchtelingencrisis\nvluchtelingendrama\nvluchtelingenhulp\nvluchtelingenkamp\nvluchtelingenopvang\nvluchtelingenorganisatie\nvluchtelingenpolitiek\nvluchtelingenprobleem\nvluchtelingenproblematiek\nvluchtelingenschip\nvluchtelingenstatus\nvluchtelingenstroom\nvluchtelingenverdrag\nvluchtelingenvraagstuk\nvluchtelingenvrouwen\nvluchtelingenwerk\nvluchtelingschap\nvluchten\nvluchter\nvluchtgang\nvluchtgedrag\nvluchtgegevens\nvluchtgevaar\nvluchtgevaarlijk\nvluchthaven\nvluchtheuvel\nvluchthuis\nvluchtig\nvluchtigheid\nvluchtinformatie\nvluchtkapitaal\nvluchtleider\nvluchtleiding\nvluchtleidingscentrum\nvluchtluik\nvluchtluiken\nvluchtmisdrijf\nvluchtmogelijkheid\nvluchtnabootser\nvluchtnummer\nvluchtoord\nvluchtplaats\nvluchtplan\nvluchtpoging\nvluchtreactie\nvluchtroute\nvluchtschema\nvluchtschot\nvluchtsimulator\nvluchtstrook\nvluchtverhaal\nvluchtverhalen\nvluchtwagen\nvluchtweg\nvlug\nvluggeren\nvluggertje\nvlugheid\nvlugschrift\nvlugzout\nvmbo\nvmbo'ers\nvmbo-leerling\nvmbo-scholen\nvmbo-school\nvnl.\nvocaal\nvocabulaire\nvocabularium\nvocalise\nvocaliseren\nvocalist\nvocaliste\nvocalistenconcours\nvocatie\nvocatief\nvocht\nvochtafscheiding\nvochtbalans\nvochtblaas\nvochtblaasje\nvochten\nvochtgehalte\nvochthoudend\nvochthuishouding\nvochtig\nvochtigheid\nvochtigheidsgraad\nvochtigheidsmeter\nvochtmaat\nvochtmeter\nvochtminnend\nvochtniveau\nvochtophoping\nvochtplek\nvochtresistent\nvochtverlies\nvochtvlek\nvochtvrij\nvochtweger\nvochtwerend\nvochtwering\nvod\nvodde\nvoddenbaal\nvoddenboer\nvoddengoed\nvoddenkoper\nvoddenman\nvoddenmand\nvoddenmarkt\nvoddenraapster\nvoddenraper\nvoddenvent\nvodderij\nvoddig\nvoeden\nvoeder\nvoederbak\nvoederbeet\nvoederbiet\nvoederen\nvoedergewas\nvoederplaats\nvoederrantsoen\nvoeding\nvoedingsadvies\nvoedingsapparaat\nvoedingsartikel\nvoedingsbedrijf\nvoedingsbestanddeel\nvoedingsbodem\nvoedingsbond\nvoedingsbron\nvoedingsconcern\nvoedingscrème\nvoedingsdeskundige\nvoedingsdistributie\nvoedingsfabrikant\nvoedingsfonds\nvoedingsgebied\nvoedingsgewas\nvoedingsgewoonte\nvoedingsgigant\nvoedingsgroep\nvoedingsindustrie\nvoedingskabel\nvoedingskanaal\nvoedingskast\nvoedingsleer\nvoedingsmarkt\nvoedingsmiddel\nvoedingsmiddelenbedrijf\nvoedingsmiddelenconcern\nvoedingsmiddelenindustrie\nvoedingsmiddelenproducent\nvoedingsmiddelensector\nvoedingsnijverheid\nvoedingsonderzoek\nvoedingspakket\nvoedingspatroon\nvoedingsprobleem\nvoedingsproces\nvoedingsproduct\nvoedingsreserve\nvoedingsreus\nvoedingssector\nvoedingsspanning\nvoedingsspecialist\nvoedingsstof\nvoedingsstoffen\nvoedingssupplement\nvoedingssysteem\nvoedingstoestand\nvoedingstof\nvoedingsunit\nvoedingsvezel\nvoedingswaarde\nvoedsel\nvoedselaanbod\nvoedselagentschap\nvoedselallergie\nvoedselarm\nvoedselautoriteit\nvoedselbehoefte\nvoedselbereiding\nvoedselbron\nvoedselbureau\nvoedselconcern\nvoedselconsumptie\nvoedselcontrole\nvoedselcrisis\nvoedseldeskundige\nvoedseldistributie\nvoedseldropping\nvoedselgebied\nvoedselgebrek\nvoedselhulp\nvoedselimport\nvoedselindustrie\nvoedselinfecties\nvoedselketen\nvoedselkonvooi\nvoedselkwaliteit\nvoedselmarkt\nvoedselnood\nvoedselopname\nvoedseloverschot\nvoedselpakket\nvoedselpatroon\nvoedselpiramide\nvoedselprijs\nvoedselprobleem\nvoedselproducent\nvoedselproduct\nvoedselproductie\nvoedselprogramma\nvoedselrest\nvoedselrijk\nvoedselschaarste\nvoedselschandaal\nvoedselsector\nvoedselsituatie\nvoedselstroom\nvoedseltekort\nvoedseltransport\nvoedselveiligheid\nvoedselvergiftiging\nvoedselverkoper\nvoedselverstrekking\nvoedselverwerkend\nvoedselverzorging\nvoedselvoorraad\nvoedselvoorziening\nvoedselweigeraar\nvoedselzekerheid\nvoedster\nvoedsteren\nvoedsterkind\nvoedstervader\nvoedzaam\nvoedzaamheid\nvoeg\nvoegen\nvoeger\nvoegijzer\nvoeging\nvoegmortel\nvoegsel\nvoegspijker\nvoegvulling\nvoegwerk\nvoegwoord\nvoegzaam\nvoegzaamheid\nvoelbaar\nvoeldraad\nvoelen\nvoeler\nvoelhoorn\nvoelhoorns\nvoelhoren\nvoeling\nvoelspriet\nvoer\nvoerbak\nvoerder\nvoeren\nvoering\nvoeringleer\nvoerlieden\nvoerman\nvoertaal\nvoertje\nvoertuig\nvoet\nvoetafdruk\nvoetangel\nvoetbad\nvoetbal\nvoetbalacademie\nvoetbalafdeling\nvoetbalanalist\nvoetbalavond\nvoetbalavontuur\nvoetbalbedrijf\nvoetbalbeker\nvoetbalbestuurder\nvoetbalboek\nvoetbalbolwerk\nvoetbalbond\nvoetbalbroek\nvoetbalcarrière\nvoetbalclub\nvoetbalcoach\nvoetbalcommentator\nvoetbalcompetitie\nvoetbalcontract\nvoetbalcultuur\nvoetbalderby\nvoetbalelftal\nvoetbalevenement\nvoetbalfan\nvoetbalfederatie\nvoetbalfeest\nvoetbalfestijn\nvoetbalfilm\nvoetbalgala\nvoetbalgek\nvoetbalgekte\nvoetbalgeluk\nvoetbalgeschiedenis\nvoetbalgevecht\nvoetbalgeweld\nvoetbalgod\nvoetbalgras\nvoetbalgrootmacht\nvoetbalhemd\nvoetbalhistorie\nvoetbalintelligentie\nvoetbalinterland\nvoetbalinternational\nvoetbaljaar\nvoetbaljaargang\nvoetbaljournalist\nvoetbalkaartje\nvoetbalkalender\nvoetbalkampioen\nvoetbalkampioenschap\nvoetbalkantine\nvoetbalkeeper\nvoetbalkenner\nvoetbalklasse\nvoetbalklassieker\nvoetbalknie\nvoetbalkoning\nvoetballand\nvoetballegende\nvoetballen\nvoetballer\nvoetballerij\nvoetballeven\nvoetballied\nvoetballiefhebber\nvoetballiga\nvoetballoopbaan\nvoetbalmakelaar\nvoetbalmanager\nvoetbalmarkt\nvoetbalmatch\nvoetbalmiljonair\nvoetbalmiljonairs\nvoetbalnatie\nvoetbalopleiding\nvoetbalorganisatie\nvoetbalplezier\nvoetbalploeg\nvoetbalpool\nvoetbalprof\nvoetbalprogramma\nvoetbalpronostiek\nvoetbalpubliek\nvoetbalquiz\nvoetbalrechten\nvoetbalscheidsrechter\nvoetbalscheidsrechters\nvoetbalschoen\nvoetbalschool\nvoetbalseizoen\nvoetbalselectie\nvoetbalshirt\nvoetbalshow\nvoetbalspel\nvoetbalspeler\nvoetbalsport\nvoetbalstad\nvoetbalstadion\nvoetbalster\nvoetbalsupporter\nvoetbaltaal\nvoetbaltalent\nvoetbaltas\nvoetbalteam\nvoetbaltempel\nvoetbaltenue\nvoetbalterm\nvoetbalterrein\nvoetbaltijdschrift\nvoetbaltoernooi\nvoetbaltop\nvoetbaltopper\nvoetbaltoto\nvoetbaltrainer\nvoetbaltrainers\nvoetbaltraining\nvoetbaltrots\nvoetbaluitslag\nvoetbalvandaal\nvoetbalvandalisme\nvoetbalveld\nvoetbalvereniging\nvoetbalverstand\nvoetbalvoorzitter\nvoetbalwedstrijd\nvoetbalwereld\nvoetbalwet\nvoetbalzaken\nvoetbalzender\nvoetbank\nvoetbed\nvoetbediening\nvoetbeentje\nvoetbeweging\nvoetblessure\nvoetboei\nvoetboog\nvoetbreed\nvoetbrug\nvoeteling\nvoeten\nvoetenbank\nvoeteneind\nvoeteneinde\nvoetenkussen\nvoetenplank\nvoetenplanken\nvoetensteun\nvoetenveger\nvoetenwerk\nvoetenzak\nvoeter\nvoeteren\nvoeteuvel\nvoetfout\nvoetganger\nvoetgangersbrug\nvoetgangersdomein\nvoetgangersgebied\nvoetgangerslicht\nvoetgangersoversteekplaats\nvoetgangerspromenade\nvoetgangerstunnel\nvoetgangersverkeer\nvoetgangerszone\nvoetgangster\nvoetijzer\nvoeting\nvoetjevrijen\nvoetknecht\nvoetkus\nvoetkussen\nvoetlicht\nvoetmaat\nvoetmassage\nvoetmat\nvoetnoot\nvoetnootnummer\nvoetnootnummering\nvoetoverheveling\nvoetpad\nvoetpedaal\nvoetplaat\nvoetpomp\nvoetpunt\nvoetregel\nvoetreis\nvoetrem\nvoetschabel\nvoetschakelaar\nvoetschimmel\nvoetspoor\nvoetstand\nvoetstap\nvoetsteun\nvoetstoots\nvoetstuk\nvoettekst\nvoettocht\nvoetval\nvoetveeg\nvoetveer\nvoetverzorging\nvoetvolk\nvoetvolley\nvoetvrij\nvoetwassing\nvoetweg\nvoetzak\nvoetzand\nvoetzoeker\nvoetzool\nvof\nvogel\nvogelaar\nvogelasiel\nvogelbek\nvogelbekdier\nvogelbeschermer\nvogelbescherming\nvogelboek\nvogelei\nvogeleiland\nvogelen\nvogelgebied\nvogelgekwetter\nvogelgeluid\nvogelgezang\nvogelgriep\nvogelhandelaar\nvogelhuisje\nvogelhut\nvogeljacht\nvogelkenner\nvogelkers\nvogelknip\nvogelkooi\nvogelkop\nvogelkunde\nvogelliefhebber\nvogellijm\nvogelmarkt\nvogelmuur\nvogelnest\nvogelnestkastjes\nvogelopvang\nvogelopvangcentrum\nvogelpak\nvogelpark\nvogelperspectief\nvogelpest\nvogelpik\nvogelpikken\nvogelpoep\nvogelpopulatie\nvogelrek\nvogelreservaat\nvogelrichtlijn\nvogelrijk\nvogelroer\nvogelschieten\nvogelschrik\nvogelslag\nvogelsoort\nvogelspin\nvogelstand\nvogelsterfte\nvogeltje\nvogeltjesmarkt\nvogeltrek\nvogelvangst\nvogelveer\nvogelverschrikker\nvogelvlucht\nvogelvluchtperspectief\nvogelvoer\nvogelvrij\nvogelvrijverklaring\nvogelwacht\nvogelwachter\nvogelwereld\nvogelwerkgroep\nvogelzaad\nvogelzang\nvogelzwermen\nvoice-over\nvoicemail\nvoile\nvoiture\nvol\nvol raken\nvol zetten\nvol zitten\nvol-au-vent\nvolant\nvolatiel\nvolatiliteit\nvolautomatisch\nvolbloed\nvolbloedig\nvolbloedigheid\nvolbouwen\nvolbracht\nvolbrassen\nvolbrengen\nvolbrenging\nvolcontinu\nvoldaan\nvoldaanheid\nvolder\nvoldingend\nvoldoen\nvoldoend\nvoldoende\nvoldoening\nvoldongen\nvoldragen\nvoleinden\nvoleindigen\nvoleindiging\nvoleinding\nvolgaarne\nvolgapparatuur\nvolgauto\nvolgboot\nvolgbriefje\nvolgeboekt\nvolgebouwd\nvolgegeten\nvolgeladen\nvolgeling\nvolgelinge\nvolgen\nvolgend\nvolgende\nvolgenderwijs\nvolgenderwijze\nvolgens\nvolgens Bartjens\nvolgepland\nvolgeplant\nvolgepropt\nvolger\nvolgeraakt\nvolgestort\nvolgestouwd\nvolgezet\nvolgieten\nvolgkaravaan\nvolgkoets\nvolglijst\nvolgnummer\nvolgooien\nvolgorde\nvolgordebepaling\nvolgorden\nvolgordes\nvolgrecht\nvolgreeks\nvolgrijtuig\nvolgroeid\nvolgspot\nvolgstation\nvolgsysteem\nvolgwagen\nvolgzaam\nvolgzaamheid\nvolhangen\nvolharden\nvolhardend\nvolharding\nvolhardingsvermogen\nvolheid\nvolhouden\nvolhouder\nvolijverig\nvolière\nvolièrevogels\nvolk\nvolkenkunde\nvolkenkundig\nvolkenkundige\nvolkenmoord\nvolkenrecht\nvolkenrechtdeskundige\nvolkenrechtelijk\nvolkenrechtgeleerde\nvolkeren\nvolkerengemeenschap\nvolkerenmoord\nvolkerenorganisatie\nvolkerenrecht\nvolkom\nvolkomen\nvolkomenheid\nvolkoren\nvolkorenbrood\nvolkrijk\nvolks\nvolksaandeel\nvolksaard\nvolksalmanak\nvolksbedrog\nvolksbelang\nvolksbesef\nvolksbestaan\nvolksbeweging\nvolksbewustzijn\nvolksbibliotheek\nvolksboek\nvolksbond\nvolksbuurt\nvolkscommissaris\nvolkscommune\nvolksconcert\nvolkscongres\nvolkscultuur\nvolksdans\nvolksdansen\nvolksdanser\nvolksdansgroep\nvolksdeel\nvolksdemocratie\nvolksdemocratisch\nvolksdeun\nvolksdichter\nvolksdracht\nvolksdrama\nvolksdrank\nvolkseditie\nvolkseigen\nvolksepos\nvolksetymologie\nvolksfeest\nvolksfront\nvolksgaarkeuken\nvolksgebruik\nvolksgeest\nvolksgeloof\nvolksgemeenschap\nvolksgenoot\nvolksgenote\nvolksgericht\nvolksgevoel\nvolksgewoonte\nvolksgezondheid\nvolksgezondheidsbelang\nvolksgezondheidsbeleid\nvolksgroep\nvolksgunst\nvolkshart\nvolksheilige\nvolksheld\nvolkshogeschool\nvolkshuis\nvolkshuishouding\nvolkshuisvester\nvolkshuisvesting\nvolkshuisvestingsbeleid\nvolkshuisvestingsplan\nvolkshumor\nvolksinitiatief\nvolksinvloed\nvolksjongen\nvolksjury\nvolkskapitalisme\nvolkskarakter\nvolkskerk\nvolkskind\nvolksklasse\nvolkskredietbank\nvolkskunde\nvolkskundig\nvolkskundige\nvolkskunst\nvolksleger\nvolksleider\nvolksleven\nvolkslied\nvolksliedachtig\nvolksliedje\nvolksliteratuur\nvolkslogies\nvolksmagie\nvolksmassa\nvolksmelodie\nvolksmenigte\nvolksmenner\nvolksmennerij\nvolksmilitie\nvolksmond\nvolksmuziek\nvolksnaam\nvolksomroep\nvolksontwikkeling\nvolksoorlog\nvolksoploop\nvolksoproer\nvolksopruier\nvolksopstand\nvolksopvoeding\nvolksoverlevering\nvolkspartij\nvolksplanting\nvolksraad\nvolksraadpleging\nvolksrecht\nvolksrechtbank\nvolksredenaar\nvolksreferendum\nvolksregering\nvolksreligie\nvolksrepubliek\nvolksroman\nvolksschool\nvolksschrijver\nvolkssoevereiniteit\nvolksspel\nvolksspelen\nvolkssport\nvolkssprookje\nvolksstam\nvolksstemming\nvolkssterrenwacht\nvolksstuk\nvolkstaal\nvolkstelling\nvolkstoeloop\nvolkstoneel\nvolkstribunaal\nvolkstribunalen\nvolkstribuun\nvolkstuin\nvolkstuincomplex\nvolkstuinder\nvolkstuinencomplex\nvolkstuintje\nvolkstuinvereniging\nvolksuniversiteit\nvolksvergadering\nvolksverhaal\nvolksverheffing\nvolksverhuizing\nvolksverhuizingen\nvolksverlakkerij\nvolksvermaak\nvolksverrader\nvolksvertegenwoordiger\nvolksvertegenwoordiging\nvolksvertegenwoordigster\nvolksvertelling\nvolksverzekering\nvolksvijand\nvolksvoedsel\nvolksvoorstelling\nvolksvreemd\nvolksvreugde\nvolksvriend\nvolksvrouw\nvolkswijk\nvolkswijsheid\nvolkswil\nvolkswinkel\nvolkswoede\nvolkswoning\nvolkswoningbouw\nvolkszaak\nvolkszang\nvolkszanger\nvolksziekte\nvolksziel\nvolkuip\nvolladen\nvollast\nvolle\nvolledig\nvolledigheid\nvolledigheidshalve\nvolleerd\nvollemaansgezicht\nvollen\nvoller\nvolleren\nvollerij\nvolley\nvolleybal\nvolleybalbond\nvolleybalclub\nvolleybalcoach\nvolleybalfinale\nvolleybalinternational\nvolleyballen\nvolleyballer\nvolleybalploeg\nvolleybalster\nvolleybalteam\nvolleybaltoernooi\nvolleybaltoernooien\nvolleybalvereniging\nvolleyen\nvolleys\nvolleyspel\nvollopen\nvolmaakbaarheid\nvolmaakt\nvolmaaktheid\nvolmachine\nvolmacht\nvolmachtgever\nvolmachthebber\nvolmachtigen\nvolmaken\nvolmaking\nvolmatroos\nvolmolen\nvolmondig\nvolontair\nvolontaire\nvolop\nvolpension\nvolplakken\nvolplempen\nvolpompen\nvolpraten\nvolprezen\nvolproppen\nvolschenken\nvolschieten\nvolschrijven\nvolslagen\nvolslank\nvolstaan\nvolstandig\nvolstoppen\nvolstorten\nvolstorting\nvolstouwen\nvolstrekt\nvolstrektheid\nvolstromen\nvolt\nvolta\nvoltage\nvoltallig\nvoltameter\nvoltampère\nvoltanken\nvoltapijt\nvolte\nvoltekend\nvoltige\nvoltigeren\nvoltijdbaan\nvoltijder\nvoltijds\nvoltijdstudent\nvoltijdwerker\nvoltmeter\nvoltooid\nvoltooidheid\nvoltooien\nvoltooiing\nvoltreffer\nvoltrekken\nvoltrekker\nvoltrekking\nvoltrokkene\nvoluit\nvolume\nvolumebeleid\nvolumebeperkend\nvolumebeperking\nvolumedaling\nvolumedeel\nvolumedelen\nvolumegroei\nvolumeknop\nvolumen\nvolumeprocent\nvolumeregelaar\nvolumeregeling\nvolumestijging\nvolumeverandering\nvolumevermindering\nvolumineus\nvolumineuze\nvoluntair\nvoluntariaat\nvoluntarisme\nvoluntaristisch\nvoluptueus\nvolute\nvoluut\nvolvet\nvolvoeren\nvolvreten\nvolwaardig\nvolwassen\nvolwassene\nvolwassenendoop\nvolwasseneneducatie\nvolwassenenonderwijs\nvolwassenenprogramma\nvolwassenenstrafrecht\nvolwassenheid\nvolwassenwording\nvolzalig\nvolzet\nvolzin\nvolzuigen\nvomeren\nvond\nvondel\nvondeliaans\nvondeling\nvondelinge\nvondelingenhuis\nvonden\nvonder\nvondst\nvonk\nvonkelen\nvonkeling\nvonken\nvonkenregen\nvonkenvanger\nvonkvorming\nvonkvrij\nvonnis\nvonnissen\nvont\nvoodoo\nvoogd\nvoogdes\nvoogdij\nvoogdijinstelling\nvoogdijkind\nvoogdijminister\nvoogdijoverheid\nvoogdijraad\nvoogdijraden\nvoogdijregeling\nvoogdijschap\nvoogdijvereniging\nvoor\nvoor de hand liggend\nvoor pampus liggen\nvoor zover\nvoor-de-gek-houderij\nvooraan\nvooraanduiding\nvooraankondiging\nvooraanmelden\nvooraanmelding\nvooraanstaand\nvooraanzicht\nvooradvies\nvooraf\nvoorafbeelding\nvoorafbetaling\nvoorafgaan\nvoorafgaand\nvoorafgaande\nvoorafgaandelijk\nvoorafje\nvoorafschaduwing\nvoorafspiegeling\nvoorafspraak\nvooraftrek\nvoorakkoord\nvooral\nvooraleer\nvooraleerst\nvooralsnog\nvoorankerlier\nvoorarbeid\nvoorarm\nvoorarrest\nvooras\nvooravond\nvoorbaat\nvoorbakken\nvoorbalkon\nvoorband\nvoorbank\nvoorbarig\nvoorbarigheden\nvoorbarigheid\nvoorbedacht\nvoorbedachtelijk\nvoorbedachtheid\nvoorbede\nvoorbeding\nvoorbedingen\nvoorbedrukken\nvoorbedrukt\nvoorbeeld\nvoorbeeldeloos\nvoorbeeldfiguur\nvoorbeeldfunctie\nvoorbeeldgedrag\nvoorbeeldgeval\nvoorbeeldgevallen\nvoorbeeldig\nvoorbeeldigheid\nvoorbeeldmateriaal\nvoorbeeldpagina\nvoorbeeldproject\nvoorbeeldrol\nvoorbeeldtekening\nvoorbeeldtekst\nvoorbeeldthema\nvoorbeeldvenster\nvoorbeeldvraag\nvoorbeeldvragen\nvoorbeeldweergave\nvoorbeeldwerking\nvoorbeeldzin\nvoorbeen\nvoorbehandeling\nvoorbehoedend\nvoorbehoedmiddel\nvoorbehoedsmiddel\nvoorbehoud\nvoorbehouden\nvoorbelasting\nvoorbereiden\nvoorbereidend\nvoorbereider\nvoorbereiding\nvoorbereidingsbesluit\nvoorbereidingscommissie\nvoorbereidingsdag\nvoorbereidingsdagen\nvoorbereidingsfase\nvoorbereidingsgesprek\nvoorbereidingshandeling\nvoorbereidingskamer\nvoorbereidingsklas\nvoorbereidingskosten\nvoorbereidingskrediet\nvoorbereidingsperiode\nvoorbereidingsprogramma\nvoorbereidingstijd\nvoorbereidsel\nvoorbereidselen\nvoorbericht\nvoorbeschikken\nvoorbeschikking\nvoorbeschouwing\nvoorbespeeld\nvoorbespreking\nvoorbestaan\nvoorbestemd\nvoorbestemmen\nvoorbestemming\nvoorbeurs\nvoorbewerken\nvoorbewerking\nvoorbewerkt\nvoorbezichtiging\nvoorbidden\nvoorbidder\nvoorbij\nvoorbijfietsen\nvoorbijflitsen\nvoorbijgaan\nvoorbijgaand\nvoorbijgang\nvoorbijganger\nvoorbijgangster\nvoorbijgegaan\nvoorbijgestreefd\nvoorbijkomen\nvoorbijlopen\nvoorbijpraten\nvoorbijrazen\nvoorbijrijden\nvoorbijschieten\nvoorbijsnellen\nvoorbijsteken\nvoorbijstreven\nvoorbijtrekken\nvoorbijvaren\nvoorbijvliegen\nvoorbijzien\nvoorbil\nvoorbinden\nvoorblad\nvoorblijven\nvoorbode\nvoorboren\nvoorbout\nvoorbrengen\nvoorbumper\nvoorburcht\nvoorbuur\nvoorcalculatie\nvoorchristelijk\nvoorcontract\nvoord\nvoordansen\nvoordanser\nvoordat\nvoorde\nvoordeel\nvoordeelfles\nvoordeelregel\nvoordeeltarief\nvoordeeltje\nvoordeelurenkaart\nvoordek\nvoordelig\nvoordeligheid\nvoordeur\nvoordeurdeler\nvoordeurdelers\nvoordeurdelersregeling\nvoordeursleutel\nvoordeursleutels\nvoordewind\nvoordien\nvoordienen\nvoordochter\nvoordoen\nvoordracht\nvoordrachtgever\nvoordrachtkunst\nvoordrachtkunstenaar\nvoordrachtskunst\nvoordrachtskunstenaar\nvoordrachtskunstenares\nvoordrachtwedstrijd\nvoordragen\nvoordrager\nvoordringen\nvoordrukken\nvoorechtelijk\nvooreerst\nvooreind\nvooreinde\nvoorerf\nvoorexamen\nvoorfase\nvoorfilm\nvoorfinancieren\nvoorfinanciering\nvoorfront\nvoorgaan\nvoorgaand\nvoorgaande\nvoorgaats\nvoorgalerij\nvoorgang\nvoorganger\nvoorgangersfunctie\nvoorgangster\nvoorgebed\nvoorgebergte\nvoorgeboord\nvoorgeborchte\nvoorgedefinieerd\nvoorgedrukt\nvoorgekauwd\nvoorgekookt\nvoorgeleiden\nvoorgeleiding\nvoorgemeld\nvoorgenomen\nvoorgepraat\nvoorgerecht\nvoorgeschiedenis\nvoorgeschreven\nvoorgeslacht\nvoorgespannen\nvoorgesprek\nvoorgestane\nvoorgestanst\nvoorgevel\nvoorgeven\nvoorgeving\nvoorgevoel\nvoorgevormd\nvoorgewend\nvoorgift\nvoorgoed\nvoorgrond\nvoorgrondkleur\nvoorhal\nvoorhamer\nvoorhand\nvoorhanden\nvoorhang\nvoorhangen\nvoorhangsel\nvoorhaven\nvoorhebben\nvoorhechtenis\nvoorheen\nvoorheffing\nvoorhistorisch\nvoorhoede\nvoorhoedefunctie\nvoorhoedepositie\nvoorhoederol\nvoorhoedespeelster\nvoorhoedespeler\nvoorhoef\nvoorhof\nvoorhoofd\nvoorhoofdsband\nvoorhoofdsbeen\nvoorhoofdsholte\nvoorhoofdsholteontsteking\nvoorhoofdsspiegel\nvoorhouden\nvoorhuid\nvoorhuis\nvoorhuwelijks\nvoorhuwelijkssparen\nvoorin\nvoorinformatie\nvooringang\nvooringenomen\nvooringenomenheid\nvoorinschrijving\nvoorinstelling\nvoorintekening\nvoorinzage\nvoorjaar\nvoorjaarsaanbieding\nvoorjaarsachtig\nvoorjaarsbeurs\nvoorjaarsbloem\nvoorjaarscollectie\nvoorjaarsdag\nvoorjaarsklassieker\nvoorjaarsmoeheid\nvoorjaarsnota\nvoorjaarsnummer\nvoorjaarsopruiming\nvoorjaarsoverleg\nvoorjaarsschoonmaak\nvoorjaarssemester\nvoorjaarsvakantie\nvoorjaarsvergadering\nvoorjaarsweer\nvoorjaarszon\nvoorkamer\nvoorkant\nvoorkauwen\nvoorkennis\nvoorkenniszaak\nvoorkeur\nvoorkeurloos\nvoorkeurrecht\nvoorkeursactie\nvoorkeursbehandeling\nvoorkeursbeleid\nvoorkeursinterpretatie\nvoorkeurskandidaat\nvoorkeurslijst\nvoorkeurspelling\nvoorkeursplaats\nvoorkeursplaatsen\nvoorkeurspositie\nvoorkeursrecht\nvoorkeursregeling\nvoorkeursrichting\nvoorkeurstem\nvoorkeurstracé\nvoorkeursvariant\nvoorkeurtarief\nvoorkeurtoets\nvoorkeus\nvoorkind\nvoorkoken\nvoorkomen\nvoorkomend\nvoorkomendheid\nvoorkoming\nvoorkoop\nvoorkooprecht\nvoorkopen\nvoorkruipen\nvoorkwalificatie\nvoorkwartier\nvoorlaatst\nvoorlader\nvoorland\nvoorlang\nvoorlangs\nvoorlast\nvoorlaten\nvoorleden\nvoorleer\nvoorleesavond\nvoorleesboek\nvoorleesdag\nvoorleeskampioen\nvoorleeswedstrijd\nvoorleggen\nvoorlegging\nvoorleiden\nvoorletter\nvoorleven\nvoorlezen\nvoorlezer\nvoorlezeres\nvoorlezing\nvoorlichten\nvoorlichter\nvoorlichting\nvoorlichtingsactie\nvoorlichtingsafdeling\nvoorlichtingsapparaat\nvoorlichtingsavond\nvoorlichtingsbeleid\nvoorlichtingsbijeenkomst\nvoorlichtingsboek\nvoorlichtingsbrochure\nvoorlichtingsbureau\nvoorlichtingscampagne\nvoorlichtingscentrum\nvoorlichtingsdag\nvoorlichtingsdienst\nvoorlichtingsfilm\nvoorlichtingsfolder\nvoorlichtingsgebied\nvoorlichtingsgesprek\nvoorlichtingsgesprekken\nvoorlichtingsgids\nvoorlichtingsmateriaal\nvoorlichtingsmiddag\nvoorlichtingsprogramma\nvoorlichtingsproject\nvoorlichtingsvideo\nvoorlichtster\nvoorliefde\nvoorliegen\nvoorliggen\nvoorligger\nvoorlijf\nvoorlijk\nvoorloop\nvoorloopster\nvoorlopen\nvoorloper\nvoorlopercellen\nvoorlopig\nvoorlopigheid\nvoorluik\nvoormaals\nvoormalig\nvoorman\nvoormast\nvoormeld\nvoormelde\nvoormenselijk\nvoormeting\nvoormiddag\nvoormiddagdienst\nvoormiddagwacht\nvoormuur\nvoorn\nvoornaam\nvoornaamheid\nvoornaamwoord\nvoornaamwoordelijk\nvoornacht\nvoornamelijk\nvoornemen\nvoornemens\nvoornoemd\nvoornoemde\nvoornoen\nvooroefening\nvooroever\nvooronder\nvooronderstellen\nvooronderstelling\nvooronderzoek\nvooronderzoeker\nvoorontsteking\nvoorontwerp\nvooroordeel\nvooroorlogs\nvoorop\nvooropening\nvooropgaan\nvooropgeplaatst\nvooropgesteld\nvooropgezet\nvooropleiding\nvooroplopen\nvooropstaan\nvooropstellen\nvooropstelling\nvooropzeg\nvooropzegging\nvooropzetten\nvoorouder\nvoorouderbeeld\nvoorouderlijk\nvoorouders\nvoorouderverering\nvoorover\nvooroverbuigen\nvooroverleg\nvooroverlijden\nvoorpaard\nvoorpagina\nvoorpagina-artikel\nvoorpaginabericht\nvoorpaginanieuws\nvoorpand\nvoorpiek\nvoorplaat\nvoorplaats\nvoorplan\nvoorplanting\nvoorplecht\nvoorplein\nvoorpoort\nvoorpoot\nvoorportaal\nvoorportier\nvoorpost\nvoorpostengevecht\nvoorpostenlinie\nvoorpraten\nvoorpremière\nvoorpret\nvoorproef\nvoorproefje\nvoorproeven\nvoorprogramma\nvoorprogrammeren\nvoorpublicatie\nvoorpubliceren\nvoorpubliciteit\nvoorpunt\nvoorraad\nvoorraadadministratie\nvoorraadaftrek\nvoorraadbeheer\nvoorraadbeheersing\nvoorraadbestand\nvoorraadbewaking\nvoorraadboek\nvoorraadboeken\nvoorraadcontrole\nvoorraadhuis\nvoorraadkaart\nvoorraadkaarten\nvoorraadkamer\nvoorraadkast\nvoorraadkelder\nvoorraadkosten\nvoorraadniveau\nvoorraadpeil\nvoorraadrekening\nvoorraadschuur\nvoorraadtank\nvoorraadvat\nvoorraadvorming\nvoorraam\nvoorradig\nvoorradigheid\nvoorrand\nvoorrang\nvoorrangsbehandeling\nvoorrangsbeleid\nvoorrangsbord\nvoorrangsgebied\nvoorrangskaart\nvoorrangskruising\nvoorrangspositie\nvoorrangsregel\nvoorrangsregeling\nvoorrangsweg\nvoorrangszorg\nvoorrecht\nvoorrede\nvoorrekenen\nvoorrichtingsbord\nvoorrijden\nvoorrijder\nvoorrijkosten\nvoorronde\nvoorruit\nvoors en tegens\nvoorschans\nvoorschieten\nvoorschijn\nvoorschip\nvoorschoen\nvoorschool\nvoorschools\nvoorschoot\nvoorschot\nvoorschotbank\nvoorschotelen\nvoorschotfaciliteit\nvoorschotnota\nvoorschotrente\nvoorschreven\nvoorschrift\nvoorschrijfgedrag\nvoorschrijfsysteem\nvoorschrijven\nvoorschrijver\nvoorschrijving\nvoorseizoen\nvoorselecteren\nvoorselectie\nvoorshands\nvoorslaan\nvoorslag\nvoorsluiting\nvoorsmaak\nvoorsmaakje\nvoorsnijden\nvoorsnijder\nvoorsnijmes\nvoorsnijvork\nvoorsorteerstrook\nvoorsorteren\nvoorspan\nvoorspannen\nvoorspanning\nvoorspeelster\nvoorspel\nvoorspelbaar\nvoorspelbaarheid\nvoorspeld\nvoorspelden\nvoorspelen\nvoorspeler\nvoorspellen\nvoorspeller\nvoorspelling\nvoorspellingsgave\nvoorspiegelen\nvoorspiegeling\nvoorspijs\nvoorspoed\nvoorspoedig\nvoorspoediglijk\nvoorspook\nvoorspraak\nvoorspreekster\nvoorspreken\nvoorspreker\nvoorspreking\nvoorsprong\nvoorst\nvoorstaan\nvoorstad\nvoorstadium\nvoorstander\nvoorstanderklier\nvoorstandster\nvoorstarter\nvoorste\nvoorstedelijk\nvoorsteken\nvoorstel\nvoorstelbaar\nvoorstellen\nvoorsteller\nvoorstelling\nvoorstellingenreeks\nvoorstellingsvermogen\nvoorstellingswereld\nvoorstellingswijze\nvoorstemmen\nvoorstemmer\nvoorsteven\nvoorstoelen\nvoorstoot\nvoorstopper\nvoorstoten\nvoorstudie\nvoorstuk\nvoort\nvoortaan\nvoortand\nvoortbestaan\nvoortbewegen\nvoortbeweging\nvoortbewegingsmechanisme\nvoortboeren\nvoortborduren\nvoortbouwen\nvoortbrengen\nvoortbrenger\nvoortbrenging\nvoortbrengingskracht\nvoortbrengsel\nvoortdoen\nvoortdrijven\nvoortduren\nvoortdurend\nvoortduring\nvoortduwen\nvoorteken\nvoortekenen\nvoortekening\nvoortekens\nvoortellen\nvoortent\nvoortentamen\nvoorterrein\nvoortgaan\nvoortgang\nvoortgangsbewaking\nvoortgangscontrole\nvoortgangsgesprek\nvoortgangsoverleg\nvoortgangsrapport\nvoortgangsrapportage\nvoortgangsverslag\nvoortgebracht\nvoortgewerkt\nvoortgezet\nvoortglijden\nvoorthelpen\nvoorthollen\nvoortijd\nvoortijdig\nvoortjagen\nvoortjakkeren\nvoortkabbelen\nvoortkankeren\nvoortkomen\nvoortkronkelen\nvoortkruipen\nvoortleven\nvoortlopen\nvoortmaken\nvoortmodderen\nvoortoneel\nvoortouw\nvoortoveren\nvoortplanten\nvoortplanting\nvoortplantingsdrang\nvoortplantingsgedrag\nvoortplantingsorgaan\nvoortplantingsorganen\nvoortplantingssnelheid\nvoortplantingstechniek\nvoortplantingsvermogen\nvoortraject\nvoortrazen\nvoortreden\nvoortreffelijk\nvoortreffelijkheid\nvoortrein\nvoortreizen\nvoortrekken\nvoortrekker\nvoortrekkerij\nvoortrekkersfunctie\nvoortrekkersrol\nvoortrijden\nvoortrollen\nvoorts\nvoortschrijden\nvoortschrijding\nvoortslepen\nvoortsleuren\nvoortsnellen\nvoortspoeden\nvoortspruiten\nvoortstappen\nvoortstormen\nvoortstrompelen\nvoortstuwen\nvoortstuwing\nvoortstuwingsinstallatie\nvoortsukkelen\nvoorttelen\nvoortteling\nvoorttrekken\nvoortuin\nvoorturnen\nvoorturner\nvoortvaren\nvoortvarend\nvoortvarendheid\nvoortvertellen\nvoortvloeien\nvoortvloeisel\nvoortvluchtig\nvoortvluchtige\nvoortwerken\nvoortwoeden\nvoortwoekeren\nvoortzeggen\nvoortzetten\nvoortzetter\nvoortzetting\nvooruit\nvooruitbestellen\nvooruitbetalen\nvooruitbetaling\nvooruitblik\nvooruitblikken\nvooruitdenken\nvooruitdringen\nvooruitgaan\nvooruitgang\nvooruitgangsdenken\nvooruitgangsgedachte\nvooruitgangsgeloof\nvooruitgangsoptimisme\nvooruitgangspartij\nvooruithelpen\nvooruitkijken\nvooruitkomen\nvooruitlezen\nvooruitlopen\nvooruitrijden\nvooruitschuiven\nvooruitsnellen\nvooruitspringen\nvooruitsteken\nvooruitstreven\nvooruitstrevend\nvooruitstrevendheid\nvooruitwerpen\nvooruitwijzen\nvooruitwijzing\nvooruitzicht\nvooruitzien\nvooruitziend\nvooruitziendheid\nvoorvader\nvoorvaderlijk\nvoorval\nvoorvallen\nvoorvechter\nvoorvechtster\nvoorvenster\nvoorverkiezing\nvoorverkoop\nvoorverkopen\nvoorverpakken\nvoorverpakt\nvoorversterker\nvoorvertonen\nvoorvertoning\nvoorvertrek\nvoorverwarmen\nvoorvinger\nvoorvlak\nvoorvleugel\nvoorvleugels\nvoorvoeg\nvoorvoegen\nvoorvoeging\nvoorvoegsel\nvoorvoelen\nvoorvoet\nvoorvork\nvoorvrouw\nvoorwaar\nvoorwaarde\nvoorwaardelijk\nvoorwaardenscheppend\nvoorwaarschuwing\nvoorwaarts\nvoorwacht\nvoorwagen\nvoorwal\nvoorwand\nvoorwas\nvoorwedstrijd\nvoorwenden\nvoorwending\nvoorwendsel\nvoorwereld\nvoorwereldlijk\nvoorwerk\nvoorwerken\nvoorwerker\nvoorwerp\nvoorwerpen\nvoorwerpsnaam\nvoorwerpszin\nvoorwetenschap\nvoorwetenschappelijk\nvoorwiel\nvoorwielaandrijver\nvoorwielaandrijving\nvoorwielaangedreven\nvoorwielophanging\nvoorwind\nvoorwinter\nvoorwoord\nvoorworp\nvoorz.\nvoorzaal\nvoorzaat\nvoorzang\nvoorzanger\nvoorzangersambt\nvoorzeggen\nvoorzegger\nvoorzegging\nvoorzegster\nvoorzeil\nvoorzeker\nvoorzet\nvoorzetlens\nvoorzetraam\nvoorzetsel\nvoorzetselbepaling\nvoorzetseluitdrukking\nvoorzetselvoorwerp\nvoorzetten\nvoorzichtig\nvoorzichtigheid\nvoorzichtigheidshalve\nvoorzichtigheidsmaatregel\nvoorzichtigjes\nvoorzien\nvoorzienbaar\nvoorzienig\nvoorzienigheid\nvoorziening\nvoorzieningenaanbod\nvoorzieningenniveau\nvoorzieningenpakket\nvoorzieningsfonds\nvoorzieningszekerheid\nvoorzij\nvoorzijde\nvoorzingen\nvoorzitster\nvoorzitten\nvoorzitter\nvoorzitterschap\nvoorzittersduo\nvoorzittersfunctie\nvoorzittershamer\nvoorzittersoverleg\nvoorzittersrol\nvoorzittersstoel\nvoorzittersverkiezing\nvoorzitterszetel\nvoorzitting\nvoorzomer\nvoorzoon\nvoorzorg\nvoorzorgbeginsel\nvoorzorgprincipe\nvoorzorgsbeginsel\nvoorzorgsmaatregel\nvoorzorgsprincipe\nvoos\nvoosheid\nvopo\nvorderen\nvordering\nvorderingsrecht\nvore\nvoren\nvorenbedoeld\nvorengenoemd\nvorenstaand\nvorig\nvork\nvorkbeen\nvorken\nvorkheftruck\nvorm\nvormbak\nvormbehoud\nvormcrisis\nvormeis\nvormelijk\nvormelijkheid\nvormeling\nvormeloos\nvormeloosheid\nvormen\nvormend\nvormenrijkdom\nvormenstoof\nvormentaal\nvormer\nvormexperiment\nvormfout\nvormgebrek\nvormgeefster\nvormgeheugen\nvormgeven\nvormgever\nvormgeving\nvormgevingsbeleid\nvormgevingsinstituut\nvormgevingsprobleem\nvormgevoel\nvorming\nvormingsactiviteit\nvormingscentrum\nvormingscursus\nvormingsinstituut\nvormingsklas\nvormingsleider\nvormingsleidster\nvormingsonderwijs\nvormingsproces\nvormingstheater\nvormingstoneel\nvormingswerk\nvormingswerker\nvormingswerkster\nvormkenmerk\nvormleer\nvormloos\nvormloosheid\nvormmachine\nvormmeter\nvormopmaker\nvormpeter\nvormpje\nvormsel\nvormtaal\nvormvariant\nvormvast\nvormvastheid\nvormverandering\nvormverlies\nvormzand\nvorsen\nvorser\nvorst\nvorstdag\nvorstelijk\nvorstelijkheid\nvorstenbloed\nvorstendom\nvorstengunst\nvorstenhuis\nvorstenkroon\nvorstenpaar\nvorstentelg\nvorstenzoon\nvorstgevaar\nvorstgevoelig\nvorstgrens\nvorstig\nvorstin\nvorstpan\nvorstperiode\nvorstschade\nvorstverlet\nvorstvrij\nvort\nvos\nvosaap\nvoscursus\nvoskleurig\nvospaard\nvossen\nvossenbes\nvossenbont\nvossengat\nvossenhaar\nvossenhol\nvossenhuid\nvossenjacht\nvossenjong\nvossenkop\nvossenkuil\nvossenlintworm\nvossenpopulatie\nvossenstaart\nvossenstand\nvossenval\nvossenvel\nvota\nvoteren\nvotief\nvotiefkerk\nvotiefmis\nvotiefsteen\nvotum\nvoucher\nvouchersysteem\nvoute\nvouw\nvouwbaar\nvouwbeen\nvouwblad\nvouwboot\nvouwcaravan\nvouwdak\nvouwdeur\nvouwdoos\nvouwen\nvouwfiets\nvouwing\nvouwkano\nvouwlijn\nvouwmachine\nvouwmeter\nvouwscherm\nvouwstoel\nvouwtafel\nvouwwagen\nvouwwand\nvoyant\nvoyeur\nvoyeurisme\nvoyeuristisch\nvozen\nvp\nvraag\nvraag-en-antwoordspel\nvraagachtig\nvraagafhankelijk\nvraagal\nvraagbaak\nvraagcurve\nvraaggericht\nvraaggesprek\nvraaggestuurd\nvraagkant\nvraagprijs\nvraagpunt\nvraagpuntennota\nvraagsgewijs\nvraagsgewijze\nvraagspel\nvraagstaart\nvraagstaarten\nvraagsteller\nvraagstelling\nvraagstuk\nvraagsturing\nvraagteken\nvraaguitval\nvraagvormen\nvraagwoord\nvraagzijde\nvraagzin\nvraagzucht\nvraat\nvraatzucht\nvraatzuchtig\nvracht\nvrachtagent\nvrachtauto\nvrachtautochauffeur\nvrachtboot\nvrachtbrief\nvrachtcedel\nvrachtceel\nvrachtdivisie\nvrachtdocumentatie\nvrachtgeld\nvrachtgoed\nvrachtkosten\nvrachtlijst\nvrachtloon\nvrachtovereenkomst\nvrachtprijs\nvrachtrijder\nvrachtruim\nvrachtruimte\nvrachtschip\nvrachtschipper\nvrachtschuit\nvrachttarief\nvrachttransport\nvrachttrein\nvrachtvaarder\nvrachtvaart\nvrachtverdeling\nvrachtverkeer\nvrachtvervoer\nvrachtvervoerder\nvrachtvliegtuig\nvrachtvliegveld\nvrachtvlucht\nvrachtvoerder\nvrachtvrij\nvrachtwagen\nvrachtwagenbedrijf\nvrachtwagenbestuurder\nvrachtwagenbouwer\nvrachtwagenchauffeur\nvrachtwagencombinatie\nvrachtwagenfabriek\nvrachtwagenmarkt\nvrachtwagenonderdeel\nvrachtwagenproducent\nvrachtwagenrijbewijs\nvrachtwagentransport\nvrachtwagenverkeer\nvragen\nvragenboek\nvragenbus\nvragenderwijs\nvragenderwijze\nvragenformulier\nvragenlijst\nvragenlijstmethode\nvragenreeks\nvragenronde\nvragenrondje\nvragenrubriek\nvragensteller\nvragenstelster\nvragenuur\nvragenuurtje\nvragenvuur\nvrager\nvrank\nvrankheid\nvrat\nvrede\nvredebond\nvredebreuk\nvredegerecht\nvredehandel\nvredehandhaving\nvredelievend\nvredelievendheid\nvrederechter\nvredesaanbod\nvredesactie\nvredesactivist\nvredesactiviste\nvredesafdwingend\nvredesakkoord\nvredesapostel\nvredesbeleid\nvredesberaad\nvredesbespreking\nvredesbesprekingen\nvredesbeweging\nvredesboodschap\nvredesconferentie\nvredescongres\nvredesdemonstratie\nvredesdialoog\nvredesdividend\nvredesduif\nvredesgebaar\nvredesgroep\nvredeshandhavend\nvredeshandhaver\nvredeshandhaving\nvredesinitiatief\nvredesinspanning\nvredeskamp\nvredeskans\nvredeskus\nvredeslied\nvredesmacht\nvredesmars\nvredesmissie\nvredesmonument\nvredesoffensief\nvredesonderhandelaar\nvredesonderhandeling\nvredesonderhandelingen\nvredesopbouw\nvredesoperatie\nvredesopleiding\nvredesoplossing\nvredesoproep\nvredesorganisatie\nvredesovereenkomst\nvredesoverleg\nvredespact\nvredespad\nvredespartner\nvredespijp\nvredesplan\nvredespoging\nvredespolitiek\nvredesprijs\nvredesproces\nvredesregeling\nvredessoldaat\nvredessterkte\nvredesstrategie\nvredestaak\nvredesteken\nvredestichter\nvredestichtster\nvredestijd\nvredestop\nvredestraktaat\nvredesverdrag\nvredesverklaring\nvredesvoorstel\nvredesvoorwaarde\nvredeswacht\nvredesweek\nvredeswens\nvredeswerk\nvredeswil\nvredeszondag\nvredeverstoorder\nvredevlag\nvredevorst\nvredevuur\nvredig\nvredigheid\nvree\nvreedzaam\nvreedzaamheid\nvreemd\nvreemdeling\nvreemdelinge\nvreemdelingenangst\nvreemdelingenbegeleider\nvreemdelingenbeleid\nvreemdelingenbesluit\nvreemdelingenbewaring\nvreemdelingenboek\nvreemdelingencirculaire\nvreemdelingendienst\nvreemdelingenhaat\nvreemdelingenheerschappij\nvreemdelingenindustrie\nvreemdelingenkamer\nvreemdelingenlegioen\nvreemdelingenpolitie\nvreemdelingenrecht\nvreemdelingenrechter\nvreemdelingenregister\nvreemdelingentoezicht\nvreemdelingenverkeer\nvreemdelingenvraagstuk\nvreemdelingenwet\nvreemdelingenwetgeving\nvreemdelingschap\nvreemdetalenkennis\nvreemdetalenonderwijs\nvreemdgaan\nvreemdheid\nvreemdigheid\nvreemdsoortig\nvreemdsoortigheid\nvreemdtalig\nvrees\nvreesaanjagend\nvreesaanjaging\nvreesachtig\nvreesachtigheid\nvreeslijk\nvreeswekkend\nvreetpartij\nvreetzak\nvrek\nvrekachtig\nvrekkig\nvrekkigheid\nvreselijk\nvreselijkheid\nvreten\nvreter\nvreterij\nvreugd\nvreugde\nvreugdebedrijf\nvreugdebetoon\nvreugdedag\nvreugdedans\nvreugdedronken\nvreugdekreet\nvreugdelied\nvreugdeloos\nvreugdesprong\nvreugdetraan\nvreugdevol\nvreugdevuur\nvreugdezang\nvreugdig\nvreze\nvrezen\nvriend\nvriendelijk\nvriendelijkheid\nvriendenclub\nvriendendienst\nvriendenfeest\nvriendengroep\nvriendengroet\nvriendenkring\nvriendenmaal\nvriendenmatch\nvriendenpaar\nvriendenploeg\nvriendenprijsje\nvriendenschaar\nvriendin\nvriendinnenkring\nvriendinnetje\nvriendjespolitiek\nvriendschap\nvriendschappelijk\nvriendschappelijkheid\nvriendschapsband\nvriendschapsbetuiging\nvriendschapsrelatie\nvriendschapsverdrag\nvriesbak\nvriescel\nvriesdrogen\nvrieshuis\nvrieskamer\nvrieskast\nvrieskist\nvrieskou\nvrieskoude\nvrieslucht\nvriesnacht\nvriespunt\nvriesruimte\nvriesvak\nvriesweder\nvriesweer\nvrieswind\nvriezen\nvriezer\nvrij\nvrijaf\nvrijage\nvrijberoepsbeoefenaar\nvrijbiljet\nvrijblijvend\nvrijblijvendheid\nvrijbrief\nvrijbuiten\nvrijbuiter\nvrijbuiterij\nvrijdag\nvrijdagavond\nvrijdaggebed\nvrijdagmiddag\nvrijdagmorgen\nvrijdagnacht\nvrijdagnamiddag\nvrijdagochtend\nvrijdags\nvrijdagse\nvrijdagsgebed\nvrijdenkend\nvrijdenker\nvrijdenkerij\nvrijdenkster\nvrijdom\nvrijdragend\nvrije\nvrijelijk\nvrijemarkteconomie\nvrijemarktprincipe\nvrijemarktsector\nvrijemarktwerking\nvrijen\nvrijer\nvrijerij\nvrijesectorwoning\nvrijetijdsactiviteit\nvrijetijdsauto\nvrijetijdsbesteding\nvrijetijdscentrum\nvrijetijdsgedrag\nvrijetijdsindustrie\nvrijetijdskleding\nvrijetijdskunde\nvrijetijdsmarkt\nvrijetijdsprobleem\nvrijetijdssector\nvrijetrappenspecialist\nvrijgave\nvrijgeboren\nvrijgeborene\nvrijgeest\nvrijgeesterij\nvrijgelatene\nvrijgeleide\nvrijgeleidebrief\nvrijgemaakt\nvrijgespeeld\nvrijgesteld\nvrijgestelde\nvrijgevallen\nvrijgeven\nvrijgevestigd\nvrijgevig\nvrijgevigheid\nvrijgevochten\nvrijgevochtenheid\nvrijgezel\nvrijgezellenavond\nvrijgezellenbelasting\nvrijgezellenbestaan\nvrijgezellenflat\nvrijgezellenstaat\nvrijhandel\nvrijhandelaar\nvrijhandelsakkoord\nvrijhandelsassociatie\nvrijhandelsgebied\nvrijhandelsovereenkomst\nvrijhandelstelsel\nvrijhandelsverdrag\nvrijhandelszone\nvrijhaven\nvrijheer\nvrijheid\nvrijheid-blijheid\nvrijheidlievend\nvrijheidsbeginsel\nvrijheidsbeneming\nvrijheidsbeperking\nvrijheidsberoving\nvrijheidsbeweging\nvrijheidsboom\nvrijheidsdrang\nvrijheidsgeest\nvrijheidsgevoel\nvrijheidsgraad\nvrijheidsheld\nvrijheidshoed\nvrijheidsideaal\nvrijheidsliefde\nvrijheidslievend\nvrijheidsmuts\nvrijheidsoorlog\nvrijheidsrechten\nvrijheidsstraf\nvrijheidsstreven\nvrijheidsstrijd\nvrijheidsstrijder\nvrijheidsstrijdster\nvrijheidszin\nvrijheidszucht\nvrijhouden\nvrijkaart\nvrijkomen\nvrijkopen\nvrijkoping\nvrijkorps\nvrijlaten\nvrijlating\nvrijlatingsregeling\nvrijleen\nvrijliggend\nvrijloop\nvrijlopen\nvrijlot\nvrijloten\nvrijmacht\nvrijmachtig\nvrijmaken\nvrijmaking\nvrijmarkt\nvrijmetselaar\nvrijmetselaarsloge\nvrijmetselaarsteken\nvrijmetselarij\nvrijmoedig\nvrijmoedigheid\nvrijpartij\nvrijpion\nvrijplaats\nvrijpleiten\nvrijpostig\nvrijpostigheid\nvrijschop\nvrijscène\nvrijspelen\nvrijspraak\nvrijspreken\nvrijspreking\nvrijstaan\nvrijstaand\nvrijstaat\nvrijstad\nvrijstellen\nvrijstelling\nvrijstellingenvariant\nvrijstellingsregeling\nvrijster\nvrijsterschap\nvrijthof\nvrijuit\nvrijval\nvrijvallen\nvrijvechten\nvrijverklaard\nvrijverklaren\nvrijwaren\nvrijwaring\nvrijwaringsbewijs\nvrijwel\nvrijwiel\nvrijwielen\nvrijwillig\nvrijwilliger\nvrijwilligersbeleid\nvrijwilligerscentrale\nvrijwilligersdag\nvrijwilligersgroep\nvrijwilligerskorps\nvrijwilligerskrijgsmacht\nvrijwilligersleger\nvrijwilligersorganisatie\nvrijwilligersproject\nvrijwilligersvergoeding\nvrijwilligerswerk\nvrijwilligheid\nvrijwilligster\nvrijwilligsterswerk\nvrijzinnig\nvrijzinnig-democratisch\nvrijzinnige\nvrijzinnigheid\nvrille\nvrind\nvroed\nvroedkunde\nvroedkundig\nvroedkundige\nvroedschap\nvroedvrouw\nvroeg\nvroegbloeier\nvroegchristelijk\nvroegdienst\nvroegeling\nvroeger\nvroegere\nvroegertje\nvroeggeboorte\nvroeggeboren\nvroeggehandicapt\nvroeggehandicapte\nvroeggestorven\nvroegmiddeleeuws\nvroegmis\nvroegoud\nvroegoude\nvroegpreek\nvroegrenaissance\nvroegrijp\nvroegrijpheid\nvroegrit\nvroegst\nvroegte\nvroegtijdig\nvroegwijs\nvrolijk\nvrolijkheid\nvrome\nvromelijk\nvromigheid\nvroom\nvroomheid\nvroon\nvroondienst\nvroonhof\nvroonland\nvroor\nvrouw\nvrouw des huizes\nvrouw-zijn\nvrouwachtig\nvrouwbeeld\nvrouwe\nvrouwelijk\nvrouwelijkheid\nvrouwenaard\nvrouwenafdeling\nvrouwenarbeid\nvrouwenarts\nvrouwenbasketbal\nvrouwenbeeld\nvrouwenbeen\nvrouwenberoep\nvrouwenbesnijdenis\nvrouwenbeul\nvrouwenbeweging\nvrouwenblad\nvrouwenboek\nvrouwenbond\nvrouwenborst\nvrouwencafé\nvrouwencentrum\nvrouwencircuit\nvrouwencollectie\nvrouwencomité\nvrouwencondoom\nvrouwenconferentie\nvrouwendag\nvrouwendienst\nvrouwendiscriminatie\nvrouwendokter\nvrouwendubbel\nvrouwendubbelspel\nvrouwenelftal\nvrouwenemancipatie\nvrouwenenkelspel\nvrouwenfiguur\nvrouwenfilm\nvrouwenfinale\nvrouwengek\nvrouwengeschiedenis\nvrouwengestalte\nvrouwengevangenis\nvrouwengroep\nvrouwenhaar\nvrouwenhaat\nvrouwenhand\nvrouwenhandel\nvrouwenhandelaar\nvrouwenhart\nvrouwenhater\nvrouwenhockey\nvrouwenhockeyploeg\nvrouwenhockeyteam\nvrouwenhoofd\nvrouwenhuis\nvrouwenhulpverlening\nvrouwenjager\nvrouwenkamp\nvrouwenkerk\nvrouwenkiesrecht\nvrouwenkleding\nvrouwenkleren\nvrouwenkliniek\nvrouwenklooster\nvrouwenkoor\nvrouwenkwaal\nvrouwenkwartet\nvrouwenkwestie\nvrouwenleven\nvrouwenliefde\nvrouwenlijf\nvrouwenlist\nvrouwenliteratuur\nvrouwenlogica\nvrouwenmantel\nvrouwenmishandeling\nvrouwennaam\nvrouwennetwerk\nvrouwenonderdrukking\nvrouwenoog\nvrouwenopvang\nvrouwenorganisatie\nvrouwenorkest\nvrouwenoverschot\nvrouwenpagina\nvrouwenploeg\nvrouwenportret\nvrouwenprogramma\nvrouwenrechten\nvrouwenrok\nvrouwenrol\nvrouwenroof\nvrouwenschender\nvrouwenschennis\nvrouwensport\nvrouwenstem\nvrouwenstrijd\nvrouwenstudie\nvrouwenstudies\nvrouwentaal\nvrouwenteam\nvrouwentehuis\nvrouwentennis\nvrouwentoernooi\nvrouwentoernooien\nvrouwentoilet\nvrouwenuitgeverij\nvrouwenvakschool\nvrouwenvereniging\nvrouwenversierder\nvrouwenverslinder\nvrouwenvlees\nvrouwenvleugel\nvrouwenvoetbal\nvrouwenvolleybalploeg\nvrouwenvolleybalteam\nvrouwenwereld\nvrouwenwerk\nvrouwenwielrennen\nvrouwenzaak\nvrouwenzender\nvrouwenziekte\nvrouwlief\nvrouwmens\nvrouwonvriendelijk\nvrouwonvriendelijkheid\nvrouwspersoon\nvrouwtje\nvrouwtjesdier\nvrouwvijandig\nvrouwvolk\nvrouwvriendelijk\nvrouwvriendelijkheid\nvrucht\nvruchtafdrijving\nvruchtbaar\nvruchtbaarheid\nvruchtbaarheidsbehandeling\nvruchtbaarheidscijfer\nvruchtbaarheidscultus\nvruchtbaarheidsgodin\nvruchtbaarheidskliniek\nvruchtbaarheidsonderzoek\nvruchtbaarheidsrite\nvruchtbeginsel\nvruchtbodem\nvruchtboom\nvruchtdragend\nvruchteloos\nvruchteloosheid\nvruchten\nvruchtenbowl\nvruchtendrank\nvruchtengelei\nvruchtenhagel\nvruchtenmand\nvruchtenmoes\nvruchtenpers\nvruchtenplukker\nvruchtensalade\nvruchtensap\nvruchtenschaal\nvruchtensuiker\nvruchtentaart\nvruchtenwijn\nvruchtenyoghurt\nvruchtgebruik\nvruchtgebruiker\nvruchtgebruikster\nvruchtgenot\nvruchtknop\nvruchtlichaam\nvruchtvlees\nvruchtvlies\nvruchtvorming\nvruchtwand\nvruchtwater\nvruchtwateronderzoek\nvruchtwaterpunctie\nvruchtwisseling\nvruchtzetting\nvs.\nvuig\nvuil\nvuilaard\nvuilaardig\nvuilafvoer\nvuilak\nvuilbak\nvuilbek\nvuilbekken\nvuilbekkerij\nvuilblik\nvuilboom\nvuilbroed\nvuilcontainer\nvuilemmer\nvuilheid\nvuilhoop\nvuiligheid\nvuilik\nvuilkar\nvuilmaken\nvuilnis\nvuilnisauto\nvuilnisbak\nvuilnisbakkenras\nvuilnisbelt\nvuilnisberg\nvuilnisblik\nvuilniscontainer\nvuilnisdienst\nvuilnisemmer\nvuilnishoop\nvuilniskar\nvuilnisman\nvuilnisophaaldienst\nvuilnisophaler\nvuilnisproductie\nvuilnisvat\nvuilniswagen\nvuilniszak\nvuilophaal\nvuilophaaldienst\nvuilophaler\nvuilpoes\nvuilspuiter\nvuilspuiterij\nvuilstort\nvuilstortplaats\nvuilte\nvuiltje\nvuiltong\nvuilverbrander\nvuilverbranding\nvuilverbrandingsinstallatie\nvuilverbrandingsoven\nvuilverwerker\nvuilverwerking\nvuilverwerkingsbedrijf\nvuilwaterpomp\nvuilwit\nvuilzak\nvuist\nvuistbijl\nvuistdik\nvuisten\nvuistgevecht\nvuistgroot\nvuisthandschoen\nvuistpand\nvuistrecht\nvuistregel\nvuistslag\nvuistvechter\nvuldop\nvuldruk\nvulgair\nvulgarisatie\nvulgarisator\nvulgariseren\nvulgarisering\nvulgarisme\nvulgariteit\nvulgo\nvulgus\nvulhaard\nvulkaan\nvulkaanas\nvulkaaneiland\nvulkaankrater\nvulkaanuitbarsting\nvulkachel\nvulkanisatie\nvulkanisch\nvulkaniseren\nvulkanisme\nvulkanologie\nvulkanologisch\nvulkanoloog\nvulleiding\nvullen\nvullichaam\nvulling\nvullingsgraad\nvullis\nvulmateriaal\nvulmiddel\nvulopening\nvulpasta\nvulpen\nvulpenhouder\nvulpeninkt\nvulpotlood\nvulsel\nvulstem\nvulstof\nvulstuk\nvultrechter\nvulva\nvuns\nvunsheid\nvunzig\nvunzigheid\nvuren\nvurenhout\nvurenhouten\nvurig\nvurigheid\nvuriglijk\nvutten\nvutter\nvuur\nvuur spuwen\nvuuraanbidder\nvuurbaak\nvuurbaken\nvuurbal\nvuurberg\nvuurbestendig\nvuurbol\nvuurcontact\nvuurdekking\nvuurdood\nvuurdoop\nvuurdoorn\nvuurgeest\nvuurgevaarlijk\nvuurgevecht\nvuurgloed\nvuurhaard\nvuurhoudend\nvuurkast\nvuurkei\nvuurkogel\nvuurkolk\nvuurkolom\nvuurkorf\nvuurkracht\nvuurlak\nvuurleiding\nvuurlijn\nvuurlinie\nvuurmaker\nvuurmolen\nvuurmond\nvuurpan\nvuurpeloton\nvuurpijl\nvuurplaat\nvuurpot\nvuurproef\nvuurregen\nvuurrood\nvuursalamander\nvuurscherm\nvuurschip\nvuursein\nvuurslag\nvuursnelheid\nvuursprank\nvuurspuwend\nvuurspuwer\nvuurstaal\nvuursteen\nvuurstenen\nvuursteun\nvuurstorm\nvuurstraal\nvuurtest\nvuurtje\nvuurtoren\nvuurtorenwachter\nvuurvast\nvuurvlieg\nvuurvliegje\nvuurvlinder\nvuurvogel\nvuurvreter\nvuurwapen\nvuurwapenbezit\nvuurwapengebruik\nvuurwapengevaarlijk\nvuurwapengeweld\nvuurwapenlobby\nvuurwapenopleiding\nvuurwater\nvuurwerk\nvuurwerkbedrijf\nvuurwerkbesluit\nvuurwerkbom\nvuurwerkbranche\nvuurwerkcampagne\nvuurwerker\nvuurwerkexplosie\nvuurwerkfabriek\nvuurwerkfestival\nvuurwerkhandel\nvuurwerkmaker\nvuurwerkopslag\nvuurwerkopslagplaats\nvuurwerkramp\nvuurwerkshow\nvuurwerkspektakel\nvuurwerkteam\nvuurzee\nvuurzuil\nvwo\nvwo'er\nvwo-diploma\nvwo-eindexamen\nvwo-examen\nvwo-leerling\nvwo-niveau\nvwo-opleiding\nvwo-scholiere\nvwo-school\nvzw\nw\nw.o.\nw.v.t.t.k.\nwaadbaar\nwaadpoot\nwaadvogel\nwaag\nwaaggeld\nwaaghals\nwaaghalzerig\nwaaghalzerij\nwaaghalzig\nwaagmeester\nwaagschaal\nwaagspel\nwaagstuk\nwaaibomenhout\nwaaiboom\nwaaien\nwaaier\nwaaierdeur\nwaaieren\nwaaiergewelf\nwaaierpalm\nwaaierrijden\nwaaiersluis\nwaaiertje\nwaaiervormig\nwaak\nwaakdienst\nwaakdienstregeling\nwaakhond\nwaakhondfunctie\nwaakloon\nwaaks\nwaakster\nwaaktoestand\nwaakvlam\nwaakzaam\nwaakzaamheid\nwaal\nwaalklinker\nwaalsteen\nwaan\nwaanbeeld\nwaandenkbeeld\nwaanidee\nwaanvoorstelling\nwaanwijs\nwaanwijsheid\nwaanwijze\nwaanzin\nwaanzinaria\nwaanzinnig\nwaanzinnige\nwaanzinnigheid\nwaar\nwaaraan\nwaarachter\nwaarachtig\nwaarachtigheid\nwaaraf\nwaarbij\nwaarbinnen\nwaarborg\nwaarborgen\nwaarborgfonds\nwaarborging\nwaarborgkapitaal\nwaarborgmaatschappij\nwaarborgsom\nwaarborgstempel\nwaarboven\nwaarbuiten\nwaard\nwaarde\nwaardebepaling\nwaardebon\nwaardecreatie\nwaardedaling\nwaardeel\nwaardeerbaar\nwaardeerder\nwaardegroei\nwaardeketen\nwaardeklasse\nwaardeleer\nwaardeloos\nwaardeloosheid\nwaardemeter\nwaardeoordeel\nwaardeoverdracht\nwaardepapier\nwaardepapieren\nwaardepatroon\nwaarderen\nwaardering\nwaarderingscijfer\nwaarderingsgrondslag\nwaarderingsmethode\nwaarderingssubsidie\nwaarderingssysteem\nwaarderingsverschil\nwaardeschaal\nwaardestijging\nwaardesysteem\nwaardetransport\nwaardevast\nwaardevastheid\nwaardeverandering\nwaardeverlies\nwaardevermeerdering\nwaardevermindering\nwaardevernietiging\nwaardeverschil\nwaardevol\nwaardevoller\nwaardevrij\nwaardevrijheid\nwaardig\nwaardigheid\nwaardigheidsbekleder\nwaardiglijk\nwaardij\nwaardijn\nwaardin\nwaardoor\nwaardoorheen\nwaardplant\nwaargebeurd\nwaargoed\nwaarheen\nwaarheid\nwaarheidlievend\nwaarheidsbegrip\nwaarheidscommissie\nwaarheidsgehalte\nwaarheidsgetrouw\nwaarheidsgetrouwheid\nwaarheidsliefde\nwaarheidsserum\nwaarheidsvinding\nwaarheidszin\nwaarin\nwaarlangs\nwaarlijk\nwaarloos\nwaarmaken\nwaarmaking\nwaarmede\nwaarmee\nwaarmerk\nwaarmerken\nwaarmerking\nwaarna\nwaarnaar\nwaarnaartoe\nwaarnaast\nwaarneembaar\nwaarneembaarheid\nwaarneemgroep\nwaarneemster\nwaarnemen\nwaarnemer\nwaarnemerschap\nwaarnemersgroep\nwaarnemersmacht\nwaarnemersmissie\nwaarnemersstatus\nwaarnemersteam\nwaarneming\nwaarnemingscentrum\nwaarnemingsfout\nwaarnemingsmateriaal\nwaarnemingsmethode\nwaarnemingsorgaan\nwaarnemingsplaats\nwaarnemingspost\nwaarnemingsresultaat\nwaarnemingssatelliet\nwaarnemingssysteem\nwaarnemingstechniek\nwaarnemingsvermogen\nwaarnemingsvliegtuig\nwaarnevens\nwaarom\nwaaromheen\nwaaromtrent\nwaaromvraag\nwaaronder\nwaarop\nwaarover\nwaaroverheen\nwaarrond\nwaarschijnlijk\nwaarschijnlijkheid\nwaarschijnlijkheidsrekening\nwaarschuwen\nwaarschuwend\nwaarschuwing\nwaarschuwingsactie\nwaarschuwingsbord\nwaarschuwingsbrief\nwaarschuwingscommando\nwaarschuwingsfase\nwaarschuwingslamp\nwaarschuwingsschot\nwaarschuwingssignaal\nwaarschuwingsstaking\nwaarschuwingssysteem\nwaarschuwingsteken\nwaarschuwingstijd\nwaartegen\nwaartegenover\nwaartoe\nwaartussen\nwaaruit\nwaarvan\nwaarvandaan\nwaarvoor\nwaarzeggen\nwaarzegger\nwaarzeggerij\nwaarzegging\nwaarzegster\nwaarzo\nwaarzonder\nwaas\nwacht\nwachtbed\nwachtcommandant\nwachtdag\nwachtdienst\nwachtel\nwachten\nwachter\nwachtgeld\nwachtgelder\nwachtgeldgerechtigde\nwachtgeldperiode\nwachtgeldregeling\nwachtgelduitgaven\nwachtgelduitkering\nwachtgeldverplichting\nwachtgeldverzekering\nwachthokje\nwachthond\nwachthuis\nwachthuisje\nwachtkamer\nwachtlijst\nwachtlijstbemiddeling\nwachtlijstbrigade\nwachtlijstfonds\nwachtlijstgeld\nwachtlijstproblematiek\nwachtlokaal\nwachtlopen\nwachtmeester\nwachtparade\nwachtperiode\nwachtplaats\nwachtpost\nwachtproblematiek\nwachtrij\nwachtruimte\nwachtschip\nwachtstand\nwachttermijn\nwachttijd\nwachttoren\nwachtvuur\nwachtwoord\nwachtwoordbeveiliging\nwachtzaal\nwad\nwaddengebied\nwaddenkust\nwade\nwaden\nwadi\nwadjan\nwadlopen\nwadloper\nwadplaat\nwadvaarder\nwadvogel\nwafel\nwafelbakker\nwafelbakkerij\nwafelbeslag\nwafelhuis\nwafelijzer\nwafelijzerpolitiek\nwafelkraam\nwafelstof\nwafelvormig\nwaffel\nwagen\nwagenas\nwagenbak\nwagenbestuurder\nwagenboom\nwagenhok\nwagenhuis\nwagenkap\nwagenkilometer\nwagenladder\nwagenlading\nwagenloods\nwagenmaker\nwagenmakerij\nwagenmeester\nwagenmenner\nwagenpark\nwagenparkbeheer\nwagenrennen\nwagenschot\nwagensmeer\nwagenspel\nwagenspoor\nwagenstel\nwagentje\nwagenvracht\nwagenwiel\nwagenwijd\nwagenwip\nwagenziek\nwagenziekte\nwaggelbenen\nwaggelen\nwaggelgang\nwagon\nwagonlading\nwahabiet\nwahabisme\nwahabitisch\nwajang\nwajangpop\nwak\nwake\nwaken\nwakend\nwaker\nwakerdijk\nwakke\nwakker\nwakkeren\nwakkerheid\nwakkerschudden\nwal\nwaladres\nwalbaas\nwaldhoorn\nwaldhoornist\nwaldhoren\nwalen\nwalg\nwalgang\nwalgelijk\nwalgelijkheid\nwalgen\nwalging\nwalglijk\nwalhalla\nwalhoofd\nwaling\nwalk-over\nwalkant\nwalkapitein\nwalken\nwalker\nwalkietalkie\nwalkman\nwallebak\nwallebakken\nwallen\nwallengebied\nwallenkant\nwalletje\nwallingant\nwalm\nwalmen\nwalmuur\nwalmvanger\nwalnoot\nwalnotenboom\nwalnotenolie\nwalpersoneel\nwalpoort\nwalradar\nwalrus\nwalrussensnor\nwalrussnor\nwalrustand\nwals\nwalschot\nwalsen\nwalser\nwalserij\nwalsmaat\nwalsmachine\nwalsmuziek\nwalstempo\nwalstro\nwalswerk\nwalvis\nwalvisachtig\nwalvisbaard\nwalvisjacht\nwalvisjager\nwalvisvaarder\nwalvisvaart\nwalvisvangst\nwalvisvlees\nwalvisvloot\nwam\nwambuis\nwamen\nwammen\nwammes\nwan\nwanbedrijf\nwanbegrip\nwanbeheer\nwanbeleid\nwanbesef\nwanbestuur\nwanbetaler\nwanbetaling\nwanbof\nwanboffen\nwanboffer\nwand\nwandaad\nwandbeen\nwandbekleding\nwandbetimmering\nwandbord\nwandcontactdoos\nwanddecoratie\nwanddikte\nwandel\nwandelaar\nwandelaarster\nwandelafstand\nwandelbrug\nwandelclub\nwandeldag\nwandeldek\nwandeldreef\nwandelen\nwandeletappe\nwandelgang\nwandelgangen\nwandelgebied\nwandelgids\nwandelhoofd\nwandeling\nwandelkaart\nwandelkostuum\nwandelmars\nwandelmogelijkheden\nwandelpad\nwandelpark\nwandelpas\nwandelpier\nwandelplaats\nwandelpromenade\nwandelrit\nwandelroute\nwandelschoen\nwandelsport\nwandelsportvereniging\nwandelstaf\nwandelstok\nwandelstraat\nwandeltocht\nwandeltoerisme\nwandelvakantie\nwandelvereniging\nwandelvierdaagse\nwandelwagen\nwandelweer\nwandelweg\nwandgedierte\nwandkaart\nwandkalender\nwandkast\nwandkleed\nwandklok\nwandkluis\nwandlamp\nwandlampje\nwandluis\nwandmeubel\nwandmodel\nwandplaat\nwandrek\nwandschildering\nwandtapijt\nwandtegel\nwandtekst\nwandversiering\nwanen\nwang\nwangebruik\nwangedrag\nwangedrocht\nwangeloof\nwangeluid\nwangen\nwangetje\nwangslijm\nwangslijmvlies\nwangunst\nwangzak\nwanhoop\nwanhoopsactie\nwanhoopsdaad\nwanhoopsgebaar\nwanhoopskreet\nwanhoopsoffensief\nwanhoopspoging\nwanhopen\nwanhopig\nwanhopige\nwanhout\nwankant\nwankel\nwankelbaar\nwankelbaarheid\nwankelen\nwankelheid\nwankeling\nwankelmoedig\nwankelmoedigheid\nwankelmotor\nwanklank\nwanklinkend\nwanluidend\nwanmolen\nwanneer\nwannen\nwanorde\nwanordelijk\nwanordelijkheden\nwanordelijkheid\nwanpraktijken\nwanprestatie\nwanproduct\nwanschapen\nwanschapenheid\nwanschepsel\nwansmaak\nwansmakelijk\nwansmakelijkheid\nwanspraak\nwanstaltig\nwanstaltigheid\nwant\nwantaal\nwanten\nwantij\nwantoestand\nwantrouwen\nwantrouwend\nwantrouwig\nwantrouwigheid\nwants\nwanverhouding\nwanvoeglijk\nwapen\nwapenaankoop\nwapenakkoord\nwapenarsenaal\nwapenbalk\nwapenbedrijf\nwapenbeeld\nwapenbeheersing\nwapenbeperking\nwapenbestand\nwapenbeurs\nwapenbezit\nwapenboek\nwapenbord\nwapenboycot\nwapenbrief\nwapenbroeder\nwapencontracten\nwapencontrole\nwapendeal\nwapendepot\nwapendeskundigen\nwapendracht\nwapendrager\nwapenembargo\nwapenen\nwapenexpert\nwapenexport\nwapenexportbeleid\nwapenexporteur\nwapenexporteurs\nwapenfabriek\nwapenfabrikant\nwapenfeit\nwapengebruik\nwapengekletter\nwapengeweld\nwapenhandel\nwapenhandelaar\nwapenhuis\nwapenhulp\nwapenindustrie\nwapening\nwapeningsstaal\nwapeninspectie\nwapenkamer\nwapenknecht\nwapenkoning\nwapenkreet\nwapenkunde\nwapenkundig\nwapenleverancier\nwapenleverantie\nwapenlevering\nwapenlobby\nwapenmagazijn\nwapenmakker\nwapenmarkt\nwapenmateriaal\nwapenoefening\nwapenopslag\nwapenopslagplaats\nwapenorder\nwapenoverleg\nwapenproductie\nwapenprogramma\nwapenrace\nwapenrek\nwapenring\nwapenroem\nwapenrok\nwapenrokken\nwapenrusting\nwapenschild\nwapenschorsing\nwapenschouw\nwapenschouwing\nwapensmid\nwapensmokkel\nwapensnijder\nwapenspel\nwapenspreuk\nwapenstilstand\nwapenstilstandsakkoord\nwapenstilstandsovereenkomst\nwapenstilstandsverdrag\nwapenstok\nwapensysteem\nwapentechnologie\nwapentransport\nwapentuig\nwapenuitrusting\nwapenverbod\nwapenverdrag\nwapenvergunning\nwapenverkoop\nwapenvermindering\nwapenvernietiging\nwapenvondst\nwapenvoorraad\nwapenwedloop\nwapenwet\nwapenwetgeving\nwapenwinkel\nwapenzaal\nwapenzending\nwapper\nwapperen\nwaranda\nwarande\nwaratje\nwarbak\nwarboel\nware\nwarempel\nwaren\nwarenhandel\nwarenhuis\nwarenhuisdochter\nwarenhuisketen\nwarenkennis\nwarenmarkt\nwarenmerk\nwarenonderzoek\nwarenwet\nwargaren\nwargeest\nwarhoofd\nwarhoofdig\nwarhoop\nwaring\nwaringin\nwaringins\nwarklomp\nwarkop\nwarkruid\nwarlord\nwarm\nwarmbloedig\nwarmbloedigheid\nwarmdraaien\nwarmen\nwarmer\nwarmhartig\nwarmhouder\nwarmhoudplaat\nwarmhoudplaten\nwarming\nwarming-up\nwarmlopen\nwarmloper\nwarmoes\nwarmoeshof\nwarmoezenier\nwarmoezerij\nwarmpjes\nwarmte\nwarmte-eenheid\nwarmte-equivalent\nwarmte-isolatie\nwarmte-isolerend\nwarmtebehandeling\nwarmtebestendig\nwarmtebeweging\nwarmtebron\nwarmtecapaciteit\nwarmtecentrale\nwarmtefront\nwarmtegeleider\nwarmtegeleiding\nwarmtegraad\nwarmtehuishouding\nwarmteleer\nwarmtemeter\nwarmteontwikkeling\nwarmtepomp\nwarmteproductie\nwarmterecord\nwarmtereflectie\nwarmteregelaar\nwarmtestralen\nwarmtestraler\nwarmtestraling\nwarmtestroom\nwarmtetechniek\nwarmteterugwinning\nwarmtetransport\nwarmteverlies\nwarmtewerend\nwarmtewisselaar\nwarmwalserij\nwarmwaterboiler\nwarmwaterbord\nwarmwaterbron\nwarmwaterbuis\nwarmwaterkraan\nwarmwaterstoof\nwarmwatertoestel\nwarmwatervat\nwarmwaterverwarming\nwarmwatervoorziening\nwarmwaterzak\nwarnest\nwarnet\nwarong\nwarrant\nwarrelen\nwarrelig\nwarreling\nwarrelklomp\nwarrelwind\nwarren\nwarrig\nwars\nwartaal\nwartel\nwartelmoer\nwarwinkel\nwas\nwasabi\nwasachtig\nwasafdruk\nwasautomaat\nwasbaar\nwasbaas\nwasbak\nwasbank\nwasbeer\nwasbeits\nwasbekken\nwasbenzine\nwasbeurt\nwasbleek\nwasbloem\nwasboom\nwasbord\nwascombinatie\nwasdag\nwasdoek\nwasdoeken\nwasdom\nwasdraad\nwasdroger\nwasecht\nwasem\nwasemen\nwasemkap\nwasfiguur\nwasfrequentie\nwasgedrag\nwasgeel\nwasgeld\nwasgelegenheid\nwasgoed\nwashandje\nwashok\nwashuis\nwasinrichting\nwasinstallatie\nwaskaars\nwaskan\nwasketel\nwaskleurig\nwasknijper\nwaskom\nwaskracht\nwaskrijt\nwaskrijtje\nwaskuip\nwaslaag\nwaslap\nwaslicht\nwaslijn\nwaslijst\nwaslucifer\nwasmachine\nwasmachineaansluiting\nwasmand\nwasmerk\nwasmiddel\nwasmiddelenbranche\nwasmiddelenconcern\nwasmiddelenmarkt\nwasmiddelenreclame\nwasmolen\nwaspeen\nwaspit\nwasplaats\nwaspoeder\nwaspoeier\nwasprogramma\nwasrol\nwasruimte\nwassalon\nwassen\nwassenaar\nwassenbeeldenmuseum\nwassenbeeldenspel\nwasser\nwasserette\nwasserij\nwassing\nwasspeld\nwasstel\nwasster\nwasstraat\nwastafel\nwasteil\nwastobbe\nwastrog\nwastrommel\nwastunnel\nwasvat\nwasverzachter\nwasvoorschrift\nwasvrouw\nwaswater\nwaszak\nwaszij\nwaszijde\nwat\nwater\nwateraanvoer\nwaterachtig\nwaterader\nwaterafscheider\nwaterafstotend\nwaterafvoer\nwateralarm\nwaterarm\nwaterbaars\nwaterbad\nwaterbak\nwaterballast\nwaterballet\nwaterbasis\nwaterbassin\nwaterbed\nwaterbedeling\nwaterbedrijf\nwaterbehandeling\nwaterbeheer\nwaterbeheersing\nwaterbehoefte\nwaterbekken\nwaterbel\nwaterbeleid\nwaterbergend\nwaterberging\nwaterbes\nwaterbesparend\nwaterbesparing\nwaterbestendig\nwaterbewoner\nwaterbezoedeling\nwaterbloem\nwaterbodem\nwaterbouw\nwaterbouwer\nwaterbouwkunde\nwaterbouwkundig\nwaterbouwkundige\nwaterbron\nwaterbrood\nwaterbuffel\nwaterbuis\nwaterbus\nwaterchinees\nwaterchocolade\nwatercirculatie\nwatercloset\nwaterconferentie\nwaterdamp\nwaterdicht\nwaterdichtheid\nwaterdiepte\nwaterdier\nwaterdistributie\nwaterdoorlatend\nwaterdrager\nwaterdroppel\nwaterdruk\nwaterdruppel\nwaterdun\nwateremmer\nwateren\nwaterequivalent\nwaterfabriek\nwaterfiets\nwaterfietsen\nwaterfilm\nwaterfilter\nwaterfles\nwaterfront\nwatergang\nwatergas\nwatergebied\nwatergebonden\nwatergebrek\nwatergebruik\nwatergeest\nwatergehalte\nwatergekoeld\nwatergeld\nwatergelden\nwatergeus\nwatergezwel\nwatergladheid\nwaterglas\nwaterglijbaan\nwatergod\nwatergodin\nwatergolf\nwatergolven\nwatergoot\nwatergraaf\nwatergruwel\nwaterhoen\nwaterhol\nwaterhoofd\nwaterhoogte\nwaterhoos\nwaterhoudend\nwaterhuishouding\nwaterhyacint\nwaterig\nwaterigheid\nwaterijs\nwatering\nwaterinsect\nwaterinstallatie\nwaterjuffer\nwaterkaarde\nwaterkaart\nwaterkamp\nwaterkan\nwaterkanon\nwaterkans\nwaterkant\nwaterkaraf\nwaterkerend\nwaterkering\nwaterkers\nwaterketel\nwaterkever\nwaterklerk\nwaterkoeling\nwaterkoker\nwaterkolom\nwaterkom\nwaterkoud\nwaterkoude\nwaterkraan\nwaterkracht\nwaterkrachtcentrale\nwaterkrachtinstallatie\nwaterkruik\nwaterkussen\nwaterkuur\nwaterkwaliteit\nwaterkwaliteitsbeheerder\nwaterlaag\nwaterlaars\nwaterland\nwaterlanders\nwaterleiding\nwaterleidingbedrijf\nwaterleidingbuis\nwaterleidingduinen\nwaterleidingmaatschappij\nwaterleidingnet\nwaterleidingsysteem\nwaterlelie\nwaterleven\nwaterleverancier\nwaterlijm\nwaterlijn\nwaterlinie\nwaterloo\nwaterloop\nwaterloopkundig\nwaterloos\nwaterlozing\nwatermaatschappij\nwatermanagement\nwatermarkt\nwatermassa\nwatermeloen\nwatermerk\nwatermeter\nwatermolecuul\nwatermolen\nwatermonster\nwatermunt\nwaternavel\nwaternet\nwaternevel\nwaternimf\nwaterniveau\nwaternood\nwaterontharder\nwateroorlog\nwateropbrengst\nwateropname\nwateroppervlak\nwateroppervlakte\nwateropslag\nwateropvang\nwaterorgel\nwateroverlast\nwaterpartij\nwaterpas\nwaterpaslijn\nwaterpassen\nwaterpeil\nwaterpeilglas\nwaterpers\nwaterpest\nwaterpijp\nwaterpistool\nwaterpistooltje\nwaterplaats\nwaterplan\nwaterplant\nwaterplas\nwaterpoel\nwaterpokken\nwaterpolitie\nwaterpolo\nwaterpoloclub\nwaterpolocoach\nwaterpoloploeg\nwaterpoloster\nwaterpoloteam\nwaterpolovereniging\nwaterpoloër\nwaterpomp\nwaterpomptang\nwaterpoort\nwaterpot\nwaterpret\nwaterprijs\nwaterprobleem\nwaterproblematiek\nwaterproef\nwaterproject\nwaterproof\nwaterput\nwaterrad\nwaterral\nwaterramp\nwaterranonkel\nwaterrat\nwaterrecreatie\nwaterrekening\nwaterreservoir\nwaterrijk\nwaterrot\nwatersalamander\nwaterschaarste\nwaterschade\nwaterschap\nwaterschapsbelasting\nwaterschapsbestuur\nwaterschapsheffing\nwaterscheerling\nwaterscheiding\nwaterscheut\nwaterschildpad\nwaterschoen\nwaterschot\nwaterschout\nwaterschouw\nwaterschuw\nwaterscooter\nwatersector\nwaterski\nwaterskiester\nwaterskiën\nwaterskiër\nwaterslag\nwaterslang\nwaterslot\nwatersnip\nwatersnood\nwatersnoodramp\nwaterspektakel\nwaterspiegel\nwaterspin\nwaterspoeling\nwaterspoor\nwatersport\nwatersportcentrum\nwatersporten\nwatersporter\nwatersportgebied\nwatersportvereniging\nwaterspuit\nwaterspuwer\nwaterstaat\nwaterstaatkundig\nwaterstaatsingenieur\nwaterstaatswerk\nwaterstad\nwaterstand\nwaterstof\nwaterstofatoom\nwaterstofbom\nwaterstoffluoride\nwaterstofgas\nwaterstofkern\nwaterstoflijn\nwaterstoflijnen\nwaterstofmolecule\nwaterstofperoxide\nwaterstofsulfide\nwaterstoof\nwaterstraal\nwaterstroming\nwaterstroom\nwatersysteem\nwatertanden\nwatertank\nwatertaxi\nwatertekort\nwatertemperatuur\nwatertje\nwatertoerisme\nwatertoerist\nwatertoets\nwatertoevoer\nwaterton\nwatertor\nwatertoren\nwatertransport\nwatertrappelen\nwatertuin\nwateruurwerk\nwaterval\nwatervang\nwatervast\nwatervat\nwaterverbinding\nwaterverbruik\nwaterverdeling\nwaterverdrag\nwaterverdunbaar\nwaterverdunbare\nwaterverf\nwaterverfschilderij\nwaterverftekening\nwaterverontreiniging\nwaterverplaatsing\nwaterverval\nwaterverversing\nwatervervuiling\nwatervlak\nwatervlakte\nwatervlek\nwatervliegtuig\nwatervlo\nwatervloed\nwatervlug\nwatervogel\nwatervoorraad\nwatervoorziening\nwatervrees\nwatervrij\nwaterwants\nwaterweg\nwaterwereld\nwaterwerk\nwaterwerken\nwaterwerper\nwaterwijding\nwaterwijs\nwaterwild\nwaterwilg\nwaterwinbedrijf\nwaterwingebied\nwaterwinning\nwaterwinplaats\nwaterwolf\nwaterzak\nwaterzijde\nwaterzo\nwaterzonnetje\nwaterzooi\nwaterzucht\nwaterzuchtig\nwaterzuivering\nwaterzuiveringsinstallatie\nwaterzuiveringsstation\nwaterzuiveringstablet\nwatje\nwatjekouw\nwatt\nwattage\nwatten\nwattenfabriek\nwattenstaafje\nwattenstokje\nwatteren\nwattig\nwattmeter\nwattseconde\nwattuur\nwauw\nwauwelaar\nwauwelen\nwave\nwaxcoat\nwaxinelichtje\nwazig\nwazigheid\nwc\nwc-borstel\nwc-bril\nwc-papier\nwc-pot\nwc-rol\nwe\nweb\nweb-tv\nwebadres\nwebapplicatie\nwebbe\nwebbrowser\nwebcam\nwebcamera\nwebdesign\nwebdesigner\nwebdienst\nwebforum\nwebhandel\nwebhosting\nwebkoppeling\nweblog\nwebmagazine\nwebmail\nwebmarketeer\nwebmaster\nwebpagina\nwebserver\nwebshop\nwebsite\nwebsitebouwer\nwebstek\nwebsurfen\nwebvertising\nwebwinkel\nwebwinkelen\nwebzine\nweck\nwecken\nweckfles\nweckglas\nweckketel\nweckpot\nwed\nwedde\nwedden\nweddenschap\nwedder\nweddeschaal\nwedding\nwede\nweder\nwederantwoord\nwederdienst\nwederdoop\nwederdoper\nwederdopers\nwedereis\nwedereisen\nwedergade\nwedergeboorte\nwedergeboren\nwedergeven\nwedergroet\nwederhelft\nwederhoor\nwederik\nwederinhuring\nwederinkoop\nwederinstorting\nwederinvoering\nwederkeer\nwederkeren\nwederkerend\nwederkerig\nwederkerigheid\nwederkerigheidsbeginsel\nwederkomen\nwederkomst\nwederliefde\nwederom\nwederontmoeting\nwederopbloei\nwederopbouw\nwederopbouwhulp\nwederopbouwperiode\nwederopbouwplan\nwederopbouwprogramma\nwederopleving\nwederoprichting\nwederopstanding\nwederoptreden\nwederopzeggens\nwederopzegging\nwederpartij\nwederrechtelijk\nwederrechtelijkheid\nwedersamenstelling\nwedervaren\nwedervergelden\nwedervergelding\nwederverhuring\nwederverkoop\nwederverkoopster\nwederverkoper\nwedervinden\nwedervoer\nwedervond\nwedervraag\nwederwaardigheden\nwederwaardigheid\nwederwoord\nwederzien\nwederzijde\nwederzijds\nwedgwood\nwedijver\nwedijveren\nwedkamp\nwedkantoor\nwedloop\nwedlopen\nwedloper\nwedren\nwedstrijd\nwedstrijdbaan\nwedstrijdbeeld\nwedstrijdbeker\nwedstrijdcircuit\nwedstrijdcommissaris\nwedstrijddag\nwedstrijdelement\nwedstrijdenreeks\nwedstrijdervaring\nwedstrijdfit\nwedstrijdformulier\nwedstrijdkalender\nwedstrijdklasse\nwedstrijdleider\nwedstrijdleiding\nwedstrijdloper\nwedstrijdorganisatie\nwedstrijdpaard\nwedstrijdprogramma\nwedstrijdpunt\nwedstrijdreglement\nwedstrijdrijder\nwedstrijdritme\nwedstrijdroeien\nwedstrijdschema\nwedstrijdsecretaris\nwedstrijdseizoen\nwedstrijdspeler\nwedstrijdsport\nwedstrijdterrein\nwedstrijdvaren\nwedstrijdverband\nwedstrijdverloop\nwedstrijdverslag\nwedstrijdvoorbereiding\nwedstrijdzeilen\nwedstrijdzwemmen\nwedstrijdzwemmer\nweduwe\nweduwe-uitkering\nweduwedracht\nweduwefonds\nweduwekas\nweduwepensioen\nweduwerente\nweduweverbranding\nweduwgift\nweduwjaar\nweduwlijk\nweduwnaar\nweduwnaarschap\nweduwnaarspensioen\nweduwnaarspijn\nweduwschap\nweduwstaat\nweduwvrouw\nwedvlucht\nwee\nweed\nweedas\nweedgebruik\nweedom\nweeffout\nweefgaren\nweefgetouw\nweefkam\nweefkunst\nweeflijn\nweefschool\nweefsel\nweefseldonatie\nweefselkweek\nweefselleer\nweefselonderzoek\nweefselschade\nweefselstructuur\nweefselvocht\nweefspoel\nweefster\nweefstoel\nweefvak\nweegapparatuur\nweegbaar\nweegbree\nweegbrug\nweegfactor\nweeghaak\nweegkunde\nweegloon\nweegluis\nweegs\nweegschaal\nweegsensor\nweegsensoren\nweegsteen\nweegstoel\nweegtoestel\nweeheid\nweek\nweekagenda\nweekbak\nweekbakken\nweekbasis\nweekbericht\nweekbeurt\nweekblad\nweekbladpers\nweekboek\nweekdag\nweekdienst\nweekdier\nweekeind\nweekeinde\nweekeindedag\nweekeindedagen\nweekeinden\nweekeindeverkeer\nweekeindhuisje\nweekend\nweekendbijlage\nweekenddienst\nweekenden\nweekender\nweekendhuisje\nweekendhuwelijk\nweekendkaart\nweekendretour\nweekendtas\nweekendverblijf\nweekendverlof\nweekendwerk\nweekgeld\nweekhartig\nweekhartigheid\nweekheid\nweekhuur\nweekijzer\nweekinvoer\nweekjournaal\nweekkaart\nweekkalender\nweekkrant\nweeklacht\nweeklagen\nweeklijst\nweeklimiet\nweekloners\nweekloon\nweekmaker\nweekmarkt\nweeknummer\nweekomzet\nweekopgave\nweekoverzicht\nweekrapport\nweeksalaris\nweekstaat\nweektaak\nweekwater\nweel\nweelde\nweeldeartikel\nweeldebelasting\nweelderig\nweelderigheid\nweemakend\nweemoed\nweemoedig\nweemoedigheid\nween\nweenhuis\nweeps\nweer\nweeraal\nweeral\nweeralarm\nweerbaar\nweerbaarheid\nweerbaarheidstraining\nweerballon\nweerbarstig\nweerbarstigheid\nweerbeeld\nweerbericht\nweerbestendig\nweerborstel\nweerbots\nweerbureau\nweerdienst\nweerdruk\nweerga\nweergaaf\nweergaas\nweergalm\nweergalmen\nweergaloos\nweergave\nweergeven\nweerglans\nweerglas\nweergod\nweerhaak\nweerhaan\nweerhouden\nweerhuisje\nweerinformatie\nweerinstituut\nweerkaart\nweerkaatsen\nweerkaatsing\nweerkenner\nweerkeren\nweerklank\nweerklinken\nweerkomen\nweerkorps\nweerkracht\nweerkrijgen\nweerkunde\nweerkundig\nweerkundige\nweerlegbaar\nweerleggen\nweerlegging\nweerlicht\nweerlichten\nweerlichts\nweerloos\nweerloosheid\nweermacht\nweerman\nweermiddelen\nweerom\nweeromkomen\nweeromstuit\nweeroverzicht\nweerpijn\nweerplicht\nweerpraatje\nweerprofeet\nweerrapport\nweersatelliet\nweerschijn\nweerschijnend\nweerschijnsel\nweerschip\nweersgesteldheid\nweersinformatie\nweerskanten\nweerslag\nweersomstandigheden\nweerspannig\nweerspannigheid\nweerspiegelen\nweerspiegeling\nweerspreken\nweerstaan\nweerstand\nweerstandmeter\nweerstandskas\nweerstandslijn\nweerstandsniveau\nweerstandspunt\nweerstandsvermogen\nweerstation\nweerstoestand\nweerstond\nweerstreven\nweerstroom\nweersverandering\nweersverbetering\nweersverwachting\nweersvoorspelling\nweersvooruitzichten\nweerszij\nweerszijde\nweerszijden\nweertafel\nweertje\nweertype\nweervaren\nweervastheid\nweerverwachting\nweervinden\nweervoorspeller\nweervoorspelling\nweervrouw\nweerwerk\nweerwijzer\nweerwil\nweerwolf\nweerwolven\nweerwoord\nweerwraak\nweerzien\nweerzin\nweerzinwekkend\nweerzinwekkendheid\nwees\nweesboom\nweeshuis\nweesjongen\nweeskamer\nweeskind\nweesmeester\nweesmeisje\nweesmoeder\nweesvader\nweet\nweetal\nweetgierig\nweetgierigheid\nweetgraag\nweetje\nweetlust\nweetniet\nweeënremmer\nweeïg\nweeïgheid\nweg\nwegaanduiding\nwegaanleg\nwegaansluiting\nwegafzetting\nwegbarricade\nwegbebakening\nwegbedekking\nwegbeheer\nwegbeheerder\nwegbeplanting\nwegbereider\nwegbergen\nwegberm\nwegbezuinigen\nwegblazen\nwegblijven\nwegblijver\nwegblijvers\nwegblokkade\nwegbombarderen\nwegbonjouren\nwegbranden\nwegbreken\nwegbrengen\nwegcapaciteit\nwegcijferen\nwegcircuit\nwegcode\nwegconcurreren\nwegdeel\nwegdeemsteren\nwegdek\nwegdelen\nwegdempen\nwegdenken\nwegdoen\nwegdoezelen\nwegdommelen\nwegdraaien\nwegdragen\nwegdrijven\nwegdringen\nwegdromen\nwegdrukken\nwegdrummen\nwegduiken\nwegduwen\nwegebben\nwegedoorn\nwegedoren\nwegel\nwegeling\nwegen\nwegenaanleg\nwegenatlas\nwegenbelasting\nwegenbouw\nwegenbouwbedrijf\nwegenbouwer\nwegenbouwkundige\nwegenbouwmachine\nwegenbouwpoot\nwegenbouwproject\nwegenhulp\nwegeninfrastructuur\nwegenis\nwegenkaart\nwegennet\nwegenonderhoud\nwegenplan\nwegens\nwegenstelsel\nwegenstructuur\nwegenverkeersreglement\nwegenverkeerswet\nwegenwacht\nwegenzout\nweger\nwegeren\nwegering\nwegervaring\nwegfietsen\nwegfilteren\nwegfladderen\nwegfluit\nwegfrommelen\nweggaan\nweggappen\nwegge\nweggebrand\nweggebruik\nweggebruiker\nweggebruikster\nweggedeelte\nweggedrag\nweggeefprijs\nweggeefwinkel\nweggeklapt\nweggeld\nweggepest\nweggepraat\nweggeraakt\nweggeregeld\nweggeroest\nweggeroofd\nweggesleurd\nweggesluisd\nweggestopt\nweggetje\nweggevangen\nweggeven\nweggevertje\nweggevlucht\nweggevoerde\nweggeweest\nweggewoven\nweggieten\nwegglijden\nwegglippen\nweggommen\nweggooien\nweggraven\nweggrissen\nweghakken\nweghalen\nweghangen\nweghebben\nweghelft\nweghelpen\nweghollen\nweghonen\nweghouden\nweginfrastructuur\nweging\nwegingsfactor\nwegingsprocedure\nwegjagen\nwegkampioen\nwegkankeren\nwegkant\nwegkapen\nwegkapitein\nwegkappen\nwegkijken\nwegknippen\nwegkomen\nwegkopen\nwegkrijgen\nwegkruipen\nwegkruis\nwegkruisen\nwegkruising\nwegkwijnen\nwegkwijning\nweglaatbaar\nweglachen\nweglaten\nweglating\nweglatingsstreepje\nweglatingsteken\nwegleggen\nwegleiden\nweglekken\nweglengte\nweglichaam\nwegligging\nweglokken\nwegloophuis\nweglopen\nwegloper\nwegmaaien\nwegmaken\nwegmarkering\nwegmoffelen\nwegnemen\nwegneming\nwegomlegging\nwegonderhoud\nwegopzichter\nwegpakken\nwegparcours\nwegpesten\nwegpikken\nwegpinken\nwegpiraat\nwegpiraterij\nwegplukken\nwegpoetsen\nwegpompen\nwegpraten\nwegproces\nwegprofiel\nwegpromoveren\nwegrace\nwegracer\nwegraken\nwegreconstructie\nwegredeneren\nwegregelen\nwegrennen\nwegrenner\nwegrestaurant\nwegreus\nwegrijden\nwegrit\nwegroepen\nwegroesten\nwegrollen\nwegrotten\nwegrotting\nwegruimen\nwegruiming\nwegrukken\nwegsaneren\nwegschenken\nwegschenking\nwegscheren\nwegscheuren\nwegschieten\nwegschoppen\nwegschouw\nwegschrappen\nwegschrijven\nwegschuilen\nwegschuiven\nwegseizoen\nwegsijpelen\nwegslaan\nwegsleepregeling\nwegslepen\nwegslikken\nwegslingeren\nwegslinken\nwegsluipen\nwegsluiten\nwegsluizen\nwegsmelten\nwegsmijten\nwegsnellen\nwegsnijden\nwegsnijding\nwegsnoeien\nwegsnoepen\nwegsoezen\nwegspelen\nwegsplitsing\nwegspoelen\nwegspringen\nwegspuiten\nwegsteken\nwegstemmen\nwegsterven\nwegstoppen\nwegstormen\nwegstrepen\nwegstrijken\nwegstromen\nwegstuiven\nwegsturen\nwegsuffen\nwegteren\nwegtikken\nwegtoveren\nwegtransport\nwegtrappen\nwegtreiteren\nwegtrekken\nwegvagen\nwegvak\nwegvallen\nwegvangen\nwegvaren\nwegvast\nwegvastheid\nwegvegen\nwegverbinding\nwegverbreding\nwegverharding\nwegverkeer\nwegverlegging\nwegverlichting\nwegversmalling\nwegversperring\nwegvervoer\nwegvervoerder\nwegvliegen\nwegvloeien\nwegvluchten\nwegvoeren\nwegvoering\nwegvreten\nwegwaaien\nwegwachter\nwegwandel\nwegwandelen\nwegwassen\nwegwedstrijd\nwegwerken\nwegwerker\nwegwerkzaamheden\nwegwerpaansteker\nwegwerpartikel\nwegwerpbarbecue\nwegwerpcamera\nwegwerpcultuur\nwegwerpen\nwegwerpfles\nwegwerpgebaar\nwegwerpluier\nwegwerpmaatschappij\nwegwerpservies\nwegwerpverpakking\nwegwezen\nwegwijs\nwegwijsborden\nwegwijzer\nwegwimpelen\nwegwissen\nwegwuiven\nwegzakken\nwegzappen\nwegzenden\nwegzending\nwegzendofficier\nwegzetten\nwegzinken\nwegzuigen\nwegzuiveren\nwegzwijmelen\nwei\nweiboter\nweide\nweidebloem\nweidegang\nweidegebied\nweidegeld\nweidegras\nweidegrond\nweideklaver\nweideland\nweidelandschap\nweidelijk\nweidemolen\nweiden\nweider\nweiderecht\nweiderij\nweideveld\nweidevogel\nweidevogelbeheer\nweidevogelbescherming\nweidevogelgebied\nweidevogelstand\nweidewinkel\nweidman\nweidmes\nweids\nweidsheid\nweidspel\nweifelaar\nweifelachtig\nweifelen\nweifeling\nweifelmoedig\nweifelmoedigheid\nweigelia\nweigeraar\nweigerachtig\nweigerachtigheid\nweigeren\nweigerig\nweigering\nweigeringsgrond\nweigrond\nweikaas\nweiland\nweiman\nweimes\nweinig\nweinigen\nweinigje\nweinigjes\nweinigzeggend\nweispel\nweitas\nweitebrood\nweivlies\nwekamine\nwekaminen\nwekdienst\nwekelijk\nwekelijkheid\nwekelijks\nwekeling\nweken\nwekenlang\nwekken\nwekker\nwekkerklok\nwekkerradio\nwekroep\nwektoon\nwel\nwelaan\nwelbedacht\nwelbegrepen\nwelbehaaglijk\nwelbehagen\nwelbekend\nwelbemind\nwelbepaald\nwelberaden\nwelbereid\nwelbeschouwd\nwelbespraakt\nwelbespraaktheid\nwelbesteed\nwelbevinden\nwelbewaakt\nwelbewerkt\nwelbewust\nwelbezocht\nweldaad\nweldadig\nweldadigheid\nweldadigheidsconcert\nweldadigheidszegel\nweldenkend\nweldenkendheid\nweldoen\nweldoener\nweldoenster\nweldoordacht\nweldoortimmerd\nweldoorvoed\nweldorpel\nweldra\nweledel\nweledele\nweledelgeboren\nweledelgeleerd\nweledelgestreng\nweledelzeergeleerd\nweleer\nweleerwaard\nwelfare\nwelgat\nwelgeaard\nwelgeboren\nwelgebouwd\nwelgedaan\nwelgedaanheid\nwelgekomen\nwelgekozen\nwelgelegen\nwelgelukken\nwelgemaakt\nwelgemanierd\nwelgemanierdheid\nwelgemeend\nwelgemoed\nwelgemoedheid\nwelgemutst\nwelgeordend\nwelgeschapen\nwelgesteld\nwelgesteldheid\nwelgeteld\nwelgevallen\nwelgevallig\nwelgevalligheid\nwelgevormd\nwelgevuld\nwelgezind\nwelgezindheid\nwelhaast\nwelig\nweligheid\nwelijzer\nwelingelicht\nweliswaar\nwelk\nwelke\nwelken\nwelker\nwelkom\nwelkomst\nwelkomstceremonie\nwelkomstdrankje\nwelkomstgeschenk\nwelkomstgroet\nwelkomstlied\nwelkomstpremie\nwelkomsttekst\nwelkomstwoord\nwellen\nwelles\nwelles-nietes\nwelles-nietesspel\nwelletjes\nwellevend\nwellevendheid\nwellicht\nwelling\nwellington\nwelluidend\nwelluidendheid\nwellust\nwellusteling\nwellustig\nwellustigheid\nwelmenend\nwelnee\nwelnemen\nwelnu\nwelomlijnd\nwelomschreven\nwelopgevoed\nweloverwogen\nwelp\nwelpenleidster\nwelpomp\nwelput\nwelriekend\nwelslagen\nwelsprekend\nwelsprekendheid\nwelstand\nwelstandcommissie\nwelstandsbepaling\nwelstandscommissie\nwelstandsgrens\nwelstandsklasse\nwelstandstoezicht\nwelstellend\nweltergewicht\nwelterusten\nwelteverstaan\nweltevreden\nweltschmerz\nwelvaart\nwelvaartseconomie\nwelvaartseffect\nwelvaartsgroei\nwelvaartskloof\nwelvaartsmaatschappij\nwelvaartsniveau\nwelvaartsontwikkeling\nwelvaartspeil\nwelvaartspolitiek\nwelvaartsstaat\nwelvaartsstijging\nwelvaartstheorie\nwelvaartsvast\nwelvaartsverbetering\nwelvaartsverdeling\nwelvaartsverlies\nwelvaartsverschijnsel\nwelvaartswinst\nwelvaartsziekte\nwelvaren\nwelvarend\nwelvarendheid\nwelven\nwelverdiend\nwelversneden\nwelverzorgd\nwelving\nwelvoeglijk\nwelvoeglijkheid\nwelvoorzien\nwelwater\nwelwijs\nwelwillend\nwelwillendheid\nwelzalig\nwelzand\nwelzeker\nwelzijn\nwelzijnsbeleid\nwelzijnsbevorderend\nwelzijnsbevordering\nwelzijnsinstelling\nwelzijnsorganisatie\nwelzijnssector\nwelzijnswerk\nwelzijnswerker\nwelzijnswerkster\nwelzijnswet\nwelzijnswethouder\nwelzijnszorg\nwem\nwemelen\nwemeling\nwen\nwendbaar\nwendbaarheid\nwende\nwenden\nwending\nwenen\nwener\nwengé\nwenk\nwenkbrauw\nwenkbrauwboog\nwenken\nwennen\nwens\nwensdenken\nwensdroom\nwenselijk\nwenselijkheid\nwensen\nwensenlijst\nwensenpakket\nwenskaart\nwensmoeder\nwensouder\nwentelaar\nwentelen\nwenteling\nwentelsteen\nwentelteefje\nwenteltrap\nwentelwiek\nwepel\nwerd\nwereld\nwereldatlas\nwereldbedrijf\nwereldbeeld\nwereldbeheerser\nwereldbekend\nwereldbekendheid\nwereldbeker\nwereldbekercircuit\nwereldbekercyclus\nwereldbekerfinale\nwereldbekerklassement\nwereldbekerstand\nwereldbekerstrijd\nwereldbekertoernooi\nwereldbekerwedstrijd\nwereldbekerwinnaar\nwereldberoemd\nwereldberoemdheid\nwereldbeschouwelijk\nwereldbeschouwing\nwereldbeschrijving\nwereldbevolking\nwereldbewoner\nwereldbol\nwereldbond\nwereldboom\nwereldbrand\nwereldburger\nwereldburgeres\nwereldburgerschap\nwereldcentrum\nwereldcinema\nwereldconcern\nwereldconferentie\nwereldconflict\nwereldcongres\nwereldcrisis\nwereldcup\nwerelddeel\nwereldeconomie\nwereldeconomisch\nwereldelftal\nwerelderfgoed\nwerelderfgoedlijst\nwereldexpo\nwereldexport\nwereldfaam\nwereldfederatie\nwereldfirma\nwereldformaat\nwereldforum\nwereldgebeuren\nwereldgebeurtenis\nwereldgeestelijke\nwereldgemeenschap\nwereldgemiddelde\nwereldgericht\nwereldgeschiedenis\nwereldgodsdienst\nwereldgroei\nwereldgroep\nwereldhandel\nwereldhandelsakkoord\nwereldhandelsconferentie\nwereldhandelsronde\nwereldhandelssysteem\nwereldhaven\nwereldheerschappij\nwereldhegemonie\nwereldhistorie\nwereldhistorisch\nwereldhit\nwereldindex\nwereldinkomen\nwereldje\nwereldkaart\nwereldkampioen\nwereldkampioene\nwereldkampioenschap\nwereldkampioenschapsmatch\nwereldkampioenskandidaat\nwereldkennis\nwereldkerk\nwereldklasse\nwereldklimaat\nwereldklimaatconferentie\nwereldklimaatverdrag\nwereldkundig\nwereldleed\nwereldleider\nwereldleiderschap\nwereldlijk\nwereldlijst\nwereldling\nwereldliteratuur\nwereldlitteratuur\nwereldmacht\nwereldmarkt\nwereldmarktaandeel\nwereldmarktleider\nwereldmarktniveau\nwereldmarktprijs\nwereldmedia\nwereldmerk\nwereldmuziek\nwereldmuziekfestival\nwereldnaam\nwereldnieuws\nwereldniveau\nwereldoliemarkt\nwereldomspannend\nwereldomvattend\nwereldontvanger\nwereldoorlog\nwereldopinie\nwereldorde\nwereldorganisatie\nwereldoriëntatie\nwereldpers\nwereldpodium\nwereldpolitiek\nwereldpopulatie\nwereldpremière\nwereldprestatie\nwereldprimeur\nwereldprobleem\nwereldproblematiek\nwereldproducent\nwereldproductie\nwereldraad\nwereldraadsel\nwereldramp\nwereldranglijst\nwereldrecessie\nwereldrecord\nwereldrecordhouder\nwereldrecordhoudster\nwereldrecordpoging\nwereldrecordrace\nwereldrecordtijd\nwereldregering\nwereldreis\nwereldreiziger\nwereldreligie\nwereldreputatie\nwereldrevolutie\nwereldrijk\nwereldroem\nwereldrond\nwerelds\nwereldsamenleving\nwereldschaal\nwereldschepper\nwereldschokkend\nwereldsgezind\nwereldsheid\nwereldsituatie\nwereldsnelheidsrecord\nwereldspelen\nwereldspeler\nwereldsport\nwereldstad\nwereldstandaard\nwereldstelsel\nwereldster\nwereldstreek\nwereldsucces\nwereldsysteem\nwereldtaal\nwereldtentoonstelling\nwereldterrorisme\nwereldtijd\nwereldtitel\nwereldtitelgevecht\nwereldtitelstrijd\nwereldtoneel\nwereldtop\nwereldtopper\nwereldtournee\nwerelduurrecord\nwereldverbeteraar\nwereldverbetering\nwereldverbond\nwereldverbruik\nwereldverkeer\nwereldvermaard\nwereldveroveraar\nwereldvlak\nwereldvoedselprobleem\nwereldvoedselproductie\nwereldvoedselprogramma\nwereldvoedselsituatie\nwereldvoedselvoorziening\nwereldvoetbal\nwereldvoetballer\nwereldvoorraad\nwereldvraag\nwereldvrede\nwereldvreemd\nwereldvreemdheid\nwereldwijd\nwereldwijs\nwereldwijsheid\nwereldwinkel\nwereldwonder\nwereldzee\nwereldziel\nweren\nwerf\nwerfbrief\nwerfbureau\nwerfdepot\nwerfgeld\nwerfkantoor\nwerfkracht\nwerfleider\nwerfofficier\nwerfreserve\nwering\nwerk\nwerkaanbieding\nwerkaanbod\nwerkadres\nwerkafspraak\nwerkbaar\nwerkbaarheid\nwerkbaas\nwerkbak\nwerkbalk\nwerkbank\nwerkbeest\nwerkbegeleiding\nwerkbelasting\nwerkbeleving\nwerkbemiddeling\nwerkbemiddelingsbureau\nwerkbenadering\nwerkbesparend\nwerkbespreking\nwerkbestand\nwerkbeurs\nwerkbezoek\nwerkbij\nwerkbijeenkomst\nwerkblad\nwerkboek\nwerkboot\nwerkbriefje\nwerkbroek\nwerkclassificatie\nwerkcollege\nwerkcomité\nwerkconferentie\nwerkcoupé\nwerkcultuur\nwerkdag\nwerkdefinitie\nwerkdiner\nwerkdiskette\nwerkdocument\nwerkdoos\nwerkdrift\nwerkdruk\nwerkduur\nwerkeenheid\nwerkeiland\nwerkelijk\nwerkelijkheid\nwerkelijkheidsbesef\nwerkelijkheidsgehalte\nwerkelijkheidswaarde\nwerkelijkheidszin\nwerkeloos\nwerkeloosheid\nwerkeloosheidsuitkering\nwerkeloosheidsverzekering\nwerkeloze\nwerkelozensteun\nwerken\nwerkend\nwerkende\nwerker\nwerkervaring\nwerkervaringsplaats\nwerkervaringsproject\nwerkethiek\nwerkezel\nwerkformulier\nwerkgarantie\nwerkgebied\nwerkgeefster\nwerkgeheugen\nwerkgelegenheid\nwerkgelegenheidsafspraak\nwerkgelegenheidsakkoord\nwerkgelegenheidsaspect\nwerkgelegenheidsbeleid\nwerkgelegenheidsbevorderend\nwerkgelegenheidscreatie\nwerkgelegenheidseffect\nwerkgelegenheidsfonds\nwerkgelegenheidsgarantie\nwerkgelegenheidsgraad\nwerkgelegenheidsgroei\nwerkgelegenheidsontwikkeling\nwerkgelegenheidspact\nwerkgelegenheidsplan\nwerkgelegenheidspolitiek\nwerkgelegenheidsprobleem\nwerkgelegenheidsprogramma\nwerkgelegenheidsproject\nwerkgelegenheidssituatie\nwerkgelegenheidstop\nwerkgemeenschap\nwerkgever\nwerkgever-werknemer\nwerkgeversaandeel\nwerkgeversbestand\nwerkgeversbijdrage\nwerkgeverschap\nwerkgeversclub\nwerkgeversclubs\nwerkgeversdeel\nwerkgeversdelegatie\nwerkgeversfederatie\nwerkgeversfront\nwerkgeverskant\nwerkgeverskoepel\nwerkgeverskring\nwerkgeverslasten\nwerkgeversorganisatie\nwerkgeverspremie\nwerkgeversstandpunt\nwerkgeversverbond\nwerkgeversvereniging\nwerkgeversverklaring\nwerkgeversvertegenwoordiger\nwerkgeversvoorzitter\nwerkgeverswereld\nwerkgeverszijde\nwerkgroep\nwerkgroeplid\nwerkhanden\nwerkhervatting\nwerkhoek\nwerkhoogte\nwerkhouding\nwerkhuis\nwerkhypothese\nwerkindeling\nwerking\nwerkingsduur\nwerkingskosten\nwerkingsmechanisme\nwerkingsplan\nwerkingsplannen\nwerkingsprincipe\nwerkingssfeer\nwerkingstoelage\nwerkingsveld\nwerkingsverslag\nwerkinhoudelijk\nwerkinrichting\nwerkinstructie\nwerkinstrument\nwerkjaar\nwerkje\nwerkkamer\nwerkkamp\nwerkkapitaal\nwerkkast\nwerkkiel\nwerkkledij\nwerkkleding\nwerkkleren\nwerkklimaat\nwerkkopie\nwerkkracht\nwerkkring\nwerklast\nwerkleider\nwerklieden\nwerkliedenverbond\nwerklijn\nwerklijst\nwerkloon\nwerkloos\nwerkloosheid\nwerkloosheidcijfer\nwerkloosheidsbestrijding\nwerkloosheidscijfer\nwerkloosheidsdaling\nwerkloosheidsduur\nwerkloosheidsfonds\nwerkloosheidsgraad\nwerkloosheidsniveau\nwerkloosheidspercentage\nwerkloosheidsprobleem\nwerkloosheidsproblematiek\nwerkloosheidsuitkering\nwerkloosheidsval\nwerkloosheidsvergoeding\nwerkloosheidsverzekering\nwerkloosheidsvoorziening\nwerkloosheidswet\nwerkloze\nwerklozenbestand\nwerklozencontrole\nwerklozenkas\nwerklozensteun\nwerklui\nwerklunch\nwerklust\nwerklustig\nwerkmaatschappij\nwerkman\nwerkmansbroek\nwerkmanswoning\nwerkmap\nwerkmateriaal\nwerkmeester\nwerkmeid\nwerkmens\nwerkmensen\nwerkmethode\nwerkmethodiek\nwerkmeubel\nwerkmeubelen\nwerkmier\nwerkmilieu\nwerknaam\nwerkneemster\nwerknemer\nwerknemersaandeel\nwerknemersbelang\nwerknemersbestand\nwerknemersbijdrage\nwerknemerscommissaris\nwerknemerskant\nwerknemersorganisatie\nwerknemersparticipatie\nwerknemerspremie\nwerknemersvereniging\nwerknemersverklaring\nwerknemersvertegenwoordiger\nwerknemersvertegenwoordiging\nwerknemersverzekering\nwerknemerszelfbestuur\nwerknemerszijde\nwerkobject\nwerkomgeving\nwerkomstandigheden\nwerkonbekwaam\nwerkonbekwaamheid\nwerkonderbreking\nwerkongeval\nwerkontbijt\nwerkonwillige\nwerkopdracht\nwerkorganisatie\nwerkos\nwerkoverleg\nwerkpaard\nwerkpak\nwerkpakket\nwerkpaleis\nwerkpauze\nwerkperiode\nwerkplaats\nwerkplan\nwerkplanning\nwerkplek\nwerkplezier\nwerkplicht\nwerkploeg\nwerkplunje\nwerkpraktijk\nwerkprestatie\nwerkproces\nwerkprogram\nwerkprogramma\nwerkproject\nwerkprotocol\nwerkput\nwerkrechter\nwerkrechtersraad\nwerkrelatie\nwerkritme\nwerkrooster\nwerkruimte\nwerkschema\nwerkschoen\nwerkschrift\nwerkschuw\nwerksfeer\nwerksituatie\nwerkslaaf\nwerksoort\nwerkspoor\nwerkstaat\nwerkstad\nwerkstaker\nwerkstaking\nwerkstation\nwerkstellig\nwerkster\nwerkstijl\nwerkstoel\nwerkstraf\nwerkstress\nwerkstroom\nwerkstructuur\nwerkstudent\nwerkstuk\nwerktaal\nwerktafel\nwerktekening\nwerktemperatuur\nwerktempo\nwerkterrein\nwerktijd\nwerktijdenbesluit\nwerktijdenregeling\nwerktijdverkorting\nwerktijdverlenging\nwerktitel\nwerktuig\nwerktuigbalk\nwerktuigbouw\nwerktuigbouwkunde\nwerktuigbouwkundig\nwerktuigbouwkundige\nwerktuigelijk\nwerktuigkunde\nwerktuigkundig\nwerktuigkundige\nwerktuiglijk\nwerkuur\nwerkvakantie\nwerkveld\nwerkverband\nwerkverdeling\nwerkvergadering\nwerkvergunning\nwerkverhouding\nwerkverkeer\nwerkverlet\nwerkverschaffer\nwerkverschaffing\nwerkverschaffingsproject\nwerkverslaafde\nwerkverslaafden\nwerkverslaving\nwerkvertrek\nwerkverzuim\nwerkvlak\nwerkvloer\nwerkvoetbal\nwerkvolk\nwerkvolume\nwerkvoorbereider\nwerkvoorbereiding\nwerkvoorraad\nwerkvoorziening\nwerkvoorzieningschap\nwerkvoorzieningsschap\nwerkvorm\nwerkvreugde\nwerkvrouw\nwerkweek\nwerkweekverkorting\nwerkweigeraar\nwerkweigering\nwerkwijze\nwerkwillig\nwerkwillige\nwerkwinkel\nwerkwoord\nwerkwoordelijk\nwerkwoordsvervoegingen\nwerkwoordsvorm\nwerkzaam\nwerkzaamheden\nwerkzaamheid\nwerkzekerheid\nwerkzoekend\nwerkzoekende\nwerkzuster\nwerpanker\nwerpen\nwerper\nwerphengel\nwerpheuvel\nwerping\nwerplans\nwerplijn\nwerplood\nwerpmolen\nwerpnet\nwerpnummer\nwerpplaat\nwerpschicht\nwerpschijf\nwerpspeer\nwerpspel\nwerpspies\nwerpspiets\nwerpster\nwerptuig\nwerst\nwervel\nwervelbed\nwervelen\nwervelend\nwerveling\nwervelkolom\nwervelstorm\nwervelstroom\nwervelwind\nwerven\nwerver\nwerving\nwervingsactie\nwervingsbeleid\nwervingsbijeenkomst\nwervingsbureau\nwervingscampagne\nwervingskosten\nwervingskracht\nwervingsreserve\nwervingsstop\nweshalve\nwesp\nwespen\nwespenangel\nwespendief\nwespennest\nwespensteek\nwespentaille\nwessi\nwest\nwestelijk\nwestelijken\nwesten\nwestenwind\nwesterkim\nwesterlengte\nwesterling\nwestern\nwesternklassieker\nwesters\nwesterstorm\nwesterzon\nwestflank\nwestgevel\nwestgrens\nwesthoek\nwestkant\nwestkust\nwestlander\nwestmoesson\nwestnoordwest\nwestoever\nwestpunt\nwestrand\nwestwaarts\nwestzij\nwestzijde\nwestzuidwest\nweswege\nwet\nwetboek\nweten\nwetenschap\nwetenschappelijk\nwetenschappelijkheid\nwetenschapper\nwetenschapsbedrijf\nwetenschapsbeleid\nwetenschapsbeoefenaar\nwetenschapsbeoefening\nwetenschapsblad\nwetenschapscentrum\nwetenschapsdynamica\nwetenschapsfilosofie\nwetenschapsfilosoof\nwetenschapsgebied\nwetenschapsgeschiedenis\nwetenschapsjournalist\nwetenschapsjournalistiek\nwetenschapsleer\nwetenschapsman\nwetenschapsmens\nwetenschapsmuseum\nwetenschapspark\nwetenschapspolitiek\nwetenschapsquiz\nwetenschapsredactie\nwetenschapster\nwetenschapstheorie\nwetenschapsvoorlichting\nwetenschapswinkel\nwetenswaardig\nwetenswaardigheden\nwetenswaardigheid\nwetering\nwetgeefster\nwetgeleerde\nwetgevend\nwetgever\nwetgeving\nwetgevingsafdeling\nwetgevingsjurist\nwetgevingsoperatie\nwetgevingsproces\nwetgevingsreferendum\nwethouder\nwethouderschap\nwethouderskandidaat\nwethouderspost\nwethouderszetel\nwethoudster\nwetland\nwetmatig\nwetmatigheid\nwetplank\nwetsaanpassing\nwetsartikel\nwetsbepaling\nwetsbesluit\nwetsdienaar\nwetsdokter\nwetsgrond\nwetshandhaving\nwetsherziening\nwetsinterpretatie\nwetskennis\nwetsontduiking\nwetsontwerp\nwetsovertreder\nwetsovertreding\nwetsrol\nwetsschennis\nwetstaal\nwetstechnisch\nwetsteen\nwetstekst\nwetsuit\nwetsuitlegging\nwetsverandering\nwetsverkrachting\nwetsvoorschrift\nwetsvoorstel\nwetswijziging\nwetswinkel\nwettekst\nwettelijk\nwettelijkheid\nwetteloos\nwetteloosheid\nwetten\nwettig\nwettigen\nwettigheid\nwettiging\nwettisch\nweven\nwever\nweverij\nweversboom\nweverskam\nweversklos\nweversknoop\nweversspoel\nwevervogel\nwezel\nwezen\nwezenfonds\nwezengeld\nwezenheid\nwezenlijk\nwezenlijke\nwezenlijkheid\nwezenloos\nwezenloosheid\nwezenpensioen\nwezenrente\nwezenskenmerk\nwezenskern\nwezenstrek\nwezensvreemd\nwezenuitkering\nwezenwet\nwherry\nwhiplash\nwhirlpool\nwhiskey\nwhisky\nwhisky-soda\nwhiskyfles\nwhiskyglas\nwhist\nwhisten\nwhister\nwhistspel\nwhistspeler\nwhite spirit\nwhizzkid\nwhodunit\nwichelaar\nwichelares\nwichelarij\nwichelen\nwichelroede\nwichelroedeloper\nwicht\nwichtig\nwicket\nwicketkeeper\nwie\nwiebelen\nwiebelig\nwiebeltaks\nwieberen\nwied\nwieden\nwieder\nwiedijzer\nwiedster\nwiedvorkje\nwieg\nwiegelen\nwiegelied\nwiegeling\nwiegen\nwiegendood\nwiegendruk\nwiegenkind\nwiegetouw\nwiek\nwieken\nwiekslag\nwiel\nwielas\nwielband\nwielbasis\nwielbeslag\nwieldop\nwieldruk\nwielen\nwielerarts\nwielerbaan\nwielerbond\nwielercarrière\nwielerclub\nwielerevenement\nwielerfederatie\nwielerformatie\nwielergek\nwielergeschiedenis\nwielerheld\nwielerjournalist\nwielerkalender\nwielerkampioen\nwielerkaravaan\nwielerklassieker\nwielerkoers\nwielerland\nwielerleven\nwielerliefhebber\nwielerloopbaan\nwielermilieu\nwielerpeloton\nwielerpers\nwielerploeg\nwielerprof\nwielerronde\nwielerseizoen\nwielerspektakel\nwielersponsor\nwielersponsoring\nwielersport\nwielerteam\nwielertoerisme\nwielertoerist\nwielertoernooi\nwielerverslaggever\nwielerwedstrijd\nwielerwereld\nwielewaal\nwieling\nwielkast\nwielklem\nwielophanging\nwielrennen\nwielrenner\nwielrennerij\nwielrenster\nwielrenunie\nwielrenwedstrijd\nwielrijden\nwielrijder\nwielrijdersbond\nwielrijdster\nwielstel\nwieltje\nwieme\nwiemelen\nwiemen\nwienerschnitzel\nwiens\nwiep\nwier\nwierde\nwierf\nwierhuis\nwierig\nwieroken\nwierook\nwierookboom\nwierookbrander\nwierookdamp\nwierookdrager\nwierookgeur\nwierookstokje\nwierookvat\nwierookwolk\nwierp\nwierven\nwies\nwiet\nwietplantage\nwietteelt\nwiettelers\nwig\nwigge\nwiggen\nwiggenbeen\nwigvormig\nwigwam\nwij\nwij-gevoel\nwij-vorm\nwijbisschop\nwijbrood\nwijd\nwijd en zijd\nwijd open\nwijdbal\nwijdbeens\nwijdbefaamd\nwijdberoemd\nwijde\nwijdeling\nwijden\nwijders\nwijdheid\nwijding\nwijdingsplechtigheid\nwijdlopig\nwijdlopigheid\nwijdmazig\nwijdte\nwijduit\nwijduitstaand\nwijdvallend\nwijdverbreid\nwijdvermaard\nwijdverspreid\nwijdvertakt\nwijf\nwijfachtig\nwijfie\nwijfje\nwijfjeseend\nwijfjesolifant\nwijfjesvaren\nwijfjesvos\nwijgeschenk\nwijk\nwijkaanpak\nwijkagent\nwijkbeheer\nwijkbewoner\nwijkblad\nwijkbureau\nwijkbus\nwijkcentrum\nwijkcomité\nwijkconcentratie\nwijkcoördinator\nwijkdiploma\nwijken\nwijkgebonden\nwijkgebouw\nwijkgemeente\nwijkgericht\nwijkhoofd\nwijkhulp\nwijking\nwijkkantoor\nwijkkrant\nwijkkrantje\nwijkkrantjes\nwijkmeester\nwijkniveau\nwijkopbouworgaan\nwijkoverstijgend\nwijkpark\nwijkplaats\nwijkplan\nwijkplatform\nwijkpolitie\nwijkpost\nwijkpredikant\nwijkraad\nwijkschool\nwijkteam\nwijkvereniging\nwijkvergadering\nwijkvernieuwing\nwijkverpleegkundige\nwijkverpleegster\nwijkverpleging\nwijkverwarming\nwijkwast\nwijkwerk\nwijkwinkel\nwijkzuster\nwijl\nwijle\nwijlen\nwijn\nwijn maken\nwijnaanbod\nwijnaccijns\nwijnachtig\nwijnactie\nwijnadvies\nwijnafdeling\nwijnappel\nwijnarrangement\nwijnazijn\nwijnbak\nwijnbal\nwijnbar\nwijnbedrijf\nwijnberg\nwijnbeurs\nwijnboek\nwijnboer\nwijnboerderij\nwijnbouw\nwijnbouwer\nwijncultuur\nwijndomein\nwijndrinker\nwijndruif\nwijnfeest\nwijnfles\nwijngaard\nwijngaardenier\nwijngaardrank\nwijngaardslak\nwijngebied\nwijngeest\nwijngids\nwijnglas\nwijngod\nwijngoed\nwijngrog\nwijnhandel\nwijnhandelaar\nwijnhuis\nwijnimporteur\nwijnindustrie\nwijnjaar\nwijnkaart\nwijnkan\nwijnkaraf\nwijnkasteel\nwijnkelder\nwijnkenner\nwijnkennis\nwijnkeuze\nwijnkleurig\nwijnkoeler\nwijnkoper\nwijnkoperij\nwijnkuip\nwijnland\nwijnlezer\nwijnliefhebber\nwijnmaand\nwijnmaker\nwijnmakerij\nwijnmarkt\nwijnmerk\nwijnmoer\nwijnmuseum\nwijnoogst\nwijnpeer\nwijnpers\nwijnpersen\nwijnpijp\nwijnproducent\nwijnproductie\nwijnproever\nwijnproeverij\nwijnrank\nwijnrek\nwijnroeien\nwijnroeier\nwijnroemer\nwijnrood\nwijnruit\nwijnsaus\nwijnschandaal\nwijnschrijver\nwijnschuur\nwijnsector\nwijnsoep\nwijnsoort\nwijnstad\nwijnsteen\nwijnsteenzuur\nwijnstok\nwijnstreek\nwijntest\nwijntje\nwijnvat\nwijnveiling\nwijnverlater\nwijnvlek\nwijnvoorraad\nwijnwereld\nwijnwinkel\nwijnwinkels\nwijs\nwijsbegeerte\nwijselijk\nwijsgeer\nwijsgerig\nwijsgerigheid\nwijsheid\nwijsheidstand\nwijsje\nwijsmaken\nwijsneus\nwijsneuzerij\nwijsneuzig\nwijsvinger\nwijten\nwijting\nwijvenpraat\nwijwater\nwijwaterbak\nwijwaterkwast\nwijwatervat\nwijze\nwijzelf\nwijzen\nwijzer\nwijzerplaat\nwijzigbaar\nwijzigen\nwijziging\nwijzigingsbesluit\nwijzigingsbevoegdheid\nwijzigingsdatum\nwijzigingsplan\nwijzigingstijd\nwijzigingsvoorstel\nwijzing\nwik\nwikke\nwikkel\nwikkelen\nwikkeling\nwikkeljurk\nwikkelrok\nwikken\nwil\nwild\nwildachtig\nwildbaan\nwildbeheer\nwildbeheereenheid\nwildbraad\nwildcard\nwilddief\nwilde\nwildebeest\nwildebras\nwildeling\nwildeman\nwildernis\nwildgroei\nwildheid\nwildkamperen\nwildklem\nwildpark\nwildpastei\nwildplassen\nwildplasser\nwildreservaat\nwildrijk\nwildrooster\nwildschade\nwildseizoen\nwildsmaak\nwildstand\nwildstroper\nwildstroperij\nwildtuin\nwildtunnel\nwildvang\nwildvreemd\nwildvreemde\nwildwaterbaan\nwildwaterkanoën\nwildwatervaren\nwildwestfilm\nwildwestverhaal\nwildzang\nwilg\nwilgen\nwilgenblad\nwilgenbloesem\nwilgenboom\nwilgenbos\nwilgenhout\nwilgenkatje\nwilgenkatjes\nwilgenlaan\nwilgenrijs\nwilgenroos\nwilgenroosje\nwilgentak\nwilgenteen\nwilgentenenhut\nwillekeur\nwillekeurig\nwillekeurigen\nwillekeurigheid\nwillen\nwillens en wetens\nwillig\nwilligen\nwilligheid\nwilloos\nwilloosheid\nwilsbekwaam\nwilsbepaling\nwilsbeschikking\nwilsbesluit\nwilsgebrek\nwilskracht\nwilskrachtig\nwilsonbekwaam\nwilsonbekwaamheid\nwilsovereenstemming\nwilsuiting\nwilsverklaring\nwilsvorming\nwilsvrijheid\nwimber\nwimberg\nwimpel\nwimper\nwin-winsituatie\nwinbaar\nwinch\nwind\nwindas\nwindboom\nwindbord\nwindbreker\nwindbuil\nwindbuilen\nwindbuks\nwinddicht\nwinddroog\nwinddruk\nwinde\nwindei\nwindel\nwindelen\nwinden\nwindenergie\nwindenergieproject\nwinderig\nwinderigheid\nwinderosie\nwindgat\nwindgenerator\nwindgevoelig\nwindhaak\nwindhaan\nwindhalm\nwindhandel\nwindharp\nwindhoek\nwindhond\nwindhoos\nwindig\nwinding\nwindjack\nwindjammer\nwindje\nwindkanaal\nwindkant\nwindketel\nwindkracht\nwindkussen\nwindmachine\nwindmaker\nwindmeter\nwindmolen\nwindmolenpark\nwindmotor\nwindorgel\nwindowdressing\nwindpark\nwindplank\nwindpokken\nwindrichting\nwindroer\nwindroos\nwindschade\nwindscherm\nwindscheuren\nwindschut\nwindsel\nwindsnelheid\nwindsnelheidsmeter\nwindspaak\nwindspil\nwindsterkte\nwindstil\nwindstilte\nwindstoot\nwindstreek\nwindstreep\nwindsurfen\nwindsurfer\nwindsurfing\nwindsurfplank\nwindtunnel\nwindturbine\nwindvaan\nwindvang\nwindvanger\nwindveer\nwindvlaag\nwindvleugel\nwindwaarts\nwindwijzer\nwindzak\nwindzijde\nwinegum\nwingebied\nwingerd\nwingewest\nwinkel\nwinkel-wandelstraat\nwinkelaanbod\nwinkelapparaat\nwinkelbank\nwinkelbediende\nwinkelbedrijf\nwinkelbel\nwinkelbestand\nwinkelbestemming\nwinkelbuurt\nwinkelcentrum\nwinkelcomplex\nwinkelconcept\nwinkelconcern\nwinkelcriminaliteit\nwinkeldag\nwinkeldief\nwinkeldiefstal\nwinkeldievegge\nwinkeldochter\nwinkeleigenaar\nwinkelen\nwinkelformule\nwinkelformules\nwinkelfunctie\nwinkelgalerij\nwinkelgebied\nwinkelgedeelte\nwinkelgedrag\nwinkelhaak\nwinkelhart\nwinkelhouder\nwinkelhuis\nwinkelier\nwinkelierster\nwinkeliersvereniging\nwinkelinrichting\nwinkeljongen\nwinkeljuf\nwinkeljuffrouw\nwinkelkar\nwinkelkast\nwinkelketen\nwinkelknecht\nwinkella\nwinkellade\nwinkelmarkt\nwinkelmeisje\nwinkelmerk\nwinkelnering\nwinkelomzet\nwinkelopening\nwinkelopenstelling\nwinkelopstand\nwinkelpand\nwinkelparadijs\nwinkelpassage\nwinkelpersoneel\nwinkelplein\nwinkelprijs\nwinkelpromenade\nwinkelpubliek\nwinkelpui\nwinkelraam\nwinkelruimte\nwinkelruit\nwinkelschap\nwinkelsluiting\nwinkelsluitingswet\nwinkelstad\nwinkelstand\nwinkelstraat\nwinkeltijdenwet\nwinkeltje\nwinkelvastgoed\nwinkelvloer\nwinkelvoorraad\nwinkelwaar\nwinkelwaarde\nwinkelwagen\nwinkelwijk\nwinkelzaak\nwinket\nwinnaar\nwinnaarsmentaliteit\nwinnares\nwinnen\nwinner\nwinning\nwinningsgebied\nwinplaats\nwinst\nwinst nemen\nwinst-en-verliesrekening\nwinstaandeel\nwinstafdracht\nwinstafhankelijk\nwinstbasis\nwinstbejag\nwinstbelasting\nwinstbepaling\nwinstberekening\nwinstbewijs\nwinstbijdrage\nwinstbijdragen\nwinstbron\nwinstcalculatie\nwinstcapaciteit\nwinstcijfer\nwinstcijfers\nwinstdaling\nwinstdeelname\nwinstdelend\nwinstdeling\nwinstdelingsregeling\nwinstderving\nwinstdoel\nwinstdoelstelling\nwinstevolutie\nwinstexplosie\nwinstgevend\nwinstgevendheid\nwinstgroei\nwinstherstel\nwinstkans\nwinstkracht\nwinstmachine\nwinstmakend\nwinstmaker\nwinstmarge\nwinstmaximalisatie\nwinstmogelijkheid\nwinstmotief\nwinstneming\nwinstniveau\nwinstontwikkeling\nwinstoogmerk\nwinstopslag\nwinstparticipatie\nwinstpartij\nwinstpercentage\nwinstpositie\nwinstpotentie\nwinstpotentieel\nwinstpremie\nwinstprognose\nwinstpunt\nwinstraming\nwinstrekening\nwinstreserve\nwinstsaldo\nwinstschatting\nwinstsprong\nwinststijging\nwinststreven\nwinststroom\nwinsttoename\nwinstuitkering\nwinstval\nwinstverbetering\nwinstverdeling\nwinstverdubbeling\nwinstvermogen\nwinstverwachting\nwinstverwatering\nwinstvoorspelling\nwinstwaarschuwing\nwinter\nwinteraanbieding\nwinteraardappel\nwinterappel\nwinteravond\nwinterband\nwinterbed\nwinterbedding\nwinterberging\nwinterblues\nwinterboek\nwintercircus\nwintercollectie\nwintercursus\nwinterdag\nwinterdepressie\nwinterdienst\nwinterdienstregeling\nwinterdijk\nwinterdracht\nwintereditie\nwintereik\nwinteren\nwintergast\nwintergenoegen\nwintergerst\nwintergewas\nwintergezicht\nwintergoed\nwintergraan\nwintergroen\nwintergroente\nwinterhaar\nwinterhalfjaar\nwinterhanden\nwinterhard\nwinterhaven\nwinterhoed\nwinterjack\nwinterjas\nwinterjasmijn\nwinterkaal\nwinterkampioen\nwinterkleding\nwinterkleed\nwinterkleren\nwinterkoning\nwinterkoninkje\nwinterkoren\nwinterkost\nwinterkou\nwinterkoude\nwinterkwartier\nwinterlandschap\nwinterlicht\nwinterlucht\nwintermaand\nwintermantel\nwinternacht\nwinternummer\nwinterochtend\nwinteroffensief\nwinterpaleis\nwinterpauze\nwinterpeen\nwinterpeer\nwinterpeil\nwinterperiode\nwinterprogramma\nwinterprovisie\nwinterreis\nwinterrogge\nwinterrust\nwinters\nwinterschilder\nwinterseizoen\nwinterslaap\nwintersport\nwintersportbestemming\nwintersportcentrum\nwintersporter\nwintersportgebied\nwintersportland\nwintersportoord\nwintersportplaats\nwintersportvakantie\nwinterstalling\nwinterstof\nwinterstop\nwinterstorm\nwintertaling\nwintertarwe\nwinterteen\nwintertemperatuur\nwintertenen\nwintertijd\nwintertruffel\nwintertuin\nwinteruur\nwintervacht\nwintervakantie\nwintervast\nwinterverblijf\nwintervermaak\nwintervinger\nwintervoer\nwintervoeten\nwintervogel\nwintervoorraad\nwinterwandeling\nwinterweder\nwinterweer\nwinterwortel\nwinterzanger\nwinterzon\nwinti\nwinzucht\nwinzuchtig\nwip\nwipbrug\nwipgalg\nwiphout\nwipkar\nwipkip\nwipmolen\nwipneus\nwippen\nwipper\nwipperig\nwippertje\nwippertoestel\nwipplank\nwipschieting\nwipstaart\nwipstoel\nwireless\nwirwar\nwis\nwisbaar\nwisdoek\nwisecrack\nwisent\nwisheid\nwishful thinking\nwiskop\nwiskunde\nwiskundeboek\nwiskundedocent\nwiskundeknobbel\nwiskundeleraar\nwiskundelerares\nwiskundeles\nwiskundeonderwijs\nwiskundestudent\nwiskundestudie\nwiskundig\nwiskundige\nwiskunst\nwiskunstig\nwispelen\nwispelturig\nwispelturigheid\nwisse\nwissel\nwisselaar\nwisselagent\nwisselautomaat\nwisselbaar\nwisselbad\nwisselbank\nwisselbedrag\nwisselbeker\nwisselbouw\nwisselbrief\nwisseldienst\nwisseldisconto\nwisselen\nwisselend\nwisselgeld\nwisselhandel\nwisselijk\nwisseling\nwisselkans\nwisselkantoor\nwisselkoers\nwisselkoersaanpassing\nwisselkoersbeleid\nwisselkoersmechanisme\nwisselkoersrisico\nwisselkoersstabiliteit\nwisselkoersstelsel\nwisselkoerssysteem\nwisselkoersverhouding\nwisselkosten\nwissellaadbak\nwisselleerstoel\nwissellijst\nwisselloper\nwisselmarkt\nwisselmeerderheid\nwisselnotering\nwisseloplossing\nwisselplaats\nwisselrecht\nwisselruiterij\nwisselslag\nwisselspanning\nwisselspeler\nwisselspoor\nwisselstand\nwisselstrook\nwisselstroom\nwisselstroomcomponent\nwisselstroommotor\nwisselstroomtheorie\nwisselstroomweerstand\nwisselstuk\nwisseltand\nwisseltentoonstelling\nwisseltransactie\nwisseltrofee\nwisseltruc\nwisselvallig\nwisselvalligheid\nwisselwachter\nwisselwerking\nwisselwoning\nwisselzang\nwisselzegel\nwissen\nwisser\nwissewasje\nwist\nwit\nwit-blauw\nwit-zwart\nwitachtig\nwitbalans\nwitbier\nwitbloedig\nwitbloemig\nwitblond\nwitboek\nwitbol\nwitbont\nwitborstel\nwitbrood\nwitgatje\nwitgeel\nwitgehandschoend\nwitgejast\nwitgekalkt\nwitgelakt\nwitgeld\nwitgepleisterd\nwitgeverfd\nwitglas\nwitgloeiend\nwitgoed\nwitgoedfabrikant\nwitgoedsector\nwitgoedwinkel\nwitgoud\nwitgouden\nwitgrijs\nwitharig\nwitheer\nwitheet\nwitheid\nwithout\nwithouten\nwitje\nwitjes\nwitkalk\nwitkar\nwitkiel\nwitkop\nwitkwast\nwitlippekari\nwitlof\nwitloof\nwitloog\nwitmaker\nwitmarmeren\nwitmetaal\nwitmetalen\nwitpoot\nwitregel\nwitruimte\nwitsel\nwitspeler\nwitstaart\nwitte\nwitte wieven\nwitte-illegalenregeling\nwitteboordencriminaliteit\nwitteboordencrimineel\nwittebrood\nwittebroodsweken\nwitteke\nwitten\nwitter\nwittetruidrager\nwittig\nwittigheid\nwitvis\nwitvoet\nwitwasoperatie\nwitwaspraktijken\nwitwassen\nwitwasser\nwitwasserij\nwitwaswet\nwitwaswetgeving\nwitwerk\nwitwerker\nwitz\nwitzijden\nwodka\nwodkafles\nwoede\nwoede-uitbarsting\nwoedeaanval\nwoeden\nwoedend\nwoef\nwoei\nwoeker\nwoekeraar\nwoekeraarster\nwoekeren\nwoekergeld\nwoekerhandel\nwoekering\nwoekerplant\nwoekerprijs\nwoekerrente\nwoekervlees\nwoekerwinst\nwoekerzucht\nwoelachtig\nwoelen\nwoelgaren\nwoelgeest\nwoelhout\nwoelig\nwoeligheid\nwoeling\nwoelingen\nwoelmuis\nwoelrat\nwoelwater\nwoelziek\nwoelzucht\nwoensdag\nwoensdagavond\nwoensdagmiddag\nwoensdagmorgen\nwoensdagnacht\nwoensdagnamiddag\nwoensdagochtend\nwoensdags\nwoensdagse\nwoerd\nwoerhaan\nwoerhen\nwoest\nwoestaard\nwoesteling\nwoestenij\nwoestheid\nwoestijn\nwoestijnachtig\nwoestijnbewoner\nwoestijngebied\nwoestijnklimaat\nwoestijnland\nwoestijnlandschap\nwoestijnpas\nwoestijnrally\nwoestijnrat\nwoestijnstad\nwoestijnvorming\nwoestijnwind\nwoestijnzand\nwoestijnzon\nwogen\nwok\nwokkel\nwokken\nwol\nwolaap\nwolachtig\nwolbaal\nwolboom\nwoldragend\nwolf\nwolfabriek\nwolfachtig\nwolfijzer\nwolfraam\nwolfraamstaal\nwolfram\nwolframiet\nwolframstaal\nwolfsangel\nwolfsbalk\nwolfsdak\nwolfseind\nwolfshond\nwolfshonger\nwolfskers\nwolfsklauw\nwolfsklem\nwolfskuil\nwolfsmelk\nwolfsmond\nwolfsmuil\nwolfstand\nwolfsvel\nwolgoed\nwolgras\nwolhaar\nwolhandel\nwolhandkrab\nwolharig\nwolindustrie\nwolk\nwolkaarde\nwolkaarden\nwolkaarder\nwolkachtig\nwolkam\nwolkammer\nwolkbreuk\nwolkeloos\nwolken\nwolkenbank\nwolkendek\nwolkenformatie\nwolkenhemel\nwolkenkrabber\nwolkenlucht\nwolkenpartij\nwolkenveld\nwolkgevaarte\nwolkig\nwollegras\nwollen\nwolletje\nwollig\nwolligheid\nwolluis\nwolmaniseren\nwolmarkt\nwolplukker\nwolspinner\nwolspinnerij\nwolspinster\nwolvee\nwolven\nwolvenbeet\nwolvengehuil\nwolvenjacht\nwolvenklem\nwolvenkuil\nwolvenmuil\nwolvenspoor\nwolventand\nwolvenvel\nwolverver\nwolververij\nwolvin\nwolweverij\nwolzak\nwomanizer\nwombat\nwon\nwond\nwonde\nwonden\nwonder\nwonderbaar\nwonderbaarlijk\nwonderbaarlijkheid\nwonderbloem\nwonderboom\nwonderboy\nwonderdaad\nwonderdadig\nwonderdadigheid\nwonderdier\nwonderdoener\nwonderdoenster\nwonderdokter\nwonderen\nwonderformule\nwonderformules\nwondergoed\nwonderjaar\nwonderkind\nwonderkracht\nwonderkruid\nwonderkuil\nwonderlamp\nwonderland\nwonderlijk\nwonderlijkheid\nwondermacht\nwonderman\nwondermiddel\nwondermooi\nwonderolie\nwonderpil\nwonderschoon\nwonderspreuk\nwonderspreukig\nwonderteken\nwondertrainer\nwonderverhaal\nwonderwel\nwonderwereld\nwonderwerk\nwondhaak\nwondheler\nwondijzer\nwondinfectie\nwondkoorts\nwondroos\nwondteken\nwondverzorging\nwondvocht\nwonen\nwoning\nwoningaanbod\nwoningaanpassing\nwoningbedrijf\nwoningbeheer\nwoningbehoefte\nwoningbeleid\nwoningbestand\nwoningbezetting\nwoningbezit\nwoningbezitter\nwoningblok\nwoningbouw\nwoningbouwbeleid\nwoningbouwcomplex\nwoningbouwcontingent\nwoningbouwcorporatie\nwoningbouwer\nwoningbouwlocatie\nwoningbouwmarkt\nwoningbouwplan\nwoningbouwproductie\nwoningbouwprogramma\nwoningbouwproject\nwoningbouwstichting\nwoningbouwsubsidie\nwoningbouwvereniging\nwoningbrand\nwoningbureau\nwoningcomplex\nwoningcorporatie\nwoningcoöperaties\nwoningdeler\nwoningeigenaar\nwoningencomplex\nwoninggids\nwoninghypotheek\nwoninginbraak\nwoninginrichter\nwoninginrichting\nwoningisolatie\nwoningmarkt\nwoningmarktonderzoek\nwoningnood\nwoningonderhoud\nwoningprijs\nwoningprobleem\nwoningproductie\nwoningruil\nwoningsector\nwoningsplitsing\nwoningstichting\nwoningtekort\nwoningtextiel\nwoningtoewijzing\nwoningtoewijzingsbeleid\nwoningtoezicht\nwoningtype\nwoningverbetering\nwoningvereniging\nwoningverhuurder\nwoningvoorraad\nwoningvraagstuk\nwoningwaarde\nwoningwet\nwoningwetbouw\nwoningwetlening\nwoningwetwoning\nwoningzoekende\nwonnen\nwoog\nwoon\nwoon-werkkilometers\nwoon-werkverkeer\nwoon-zorgcentrum\nwoon-zorgcomplex\nwoonachtig\nwoonadres\nwoonark\nwoonbebouwing\nwoonbegeleiding\nwoonbeleid\nwoonbestemming\nwoonbeurs\nwoonblok\nwoonboerderij\nwoonboot\nwoonbuurt\nwooncarrière\nwooncentrum\nwooncomfort\nwooncomplex\nwoonconcentratie\nwoonconsument\nwooncontainer\nwooncultuur\nwoonduur\nwooneenheid\nwoonerf\nwoonflat\nwoonfunctie\nwoongebied\nwoongebouw\nwoongedeelte\nwoongedrag\nwoongelegenheid\nwoongemeenschap\nwoongemeente\nwoongenot\nwoongroep\nwoonhuis\nwoonhuisaansluiting\nwoonidee\nwoonkamer\nwoonkazerne\nwoonkern\nwoonketen\nwoonkeuken\nwoonklimaat\nwoonkosten\nwoonkostentoeslag\nwoonkrant\nwoonkrediet\nwoonkwaliteit\nwoonlaag\nwoonland\nwoonlandbeginsel\nwoonlasten\nwoonlocatie\nwoonmilieu\nwoonomgeving\nwoonomstandigheid\nwoonoord\nwoonoppervlak\nwoonpark\nwoonplaats\nwoonplek\nwoonplezier\nwoonproject\nwoonrecht\nwoonruimte\nwoonruimteverdeling\nwoonschip\nwoonsfeer\nwoonsituatie\nwoonsparen\nwoonst\nwoonstaat\nwoonstad\nwoonstede\nwoonstee\nwoonstichting\nwoonstijl\nwoonstraat\nwoontoren\nwoonverblijf\nwoonvergunning\nwoonvertrek\nwoonvoorziening\nwoonvorm\nwoonwagen\nwoonwagenbeleid\nwoonwagenbewoner\nwoonwagencentrum\nwoonwagengezin\nwoonwagenkamp\nwoonwagenstandplaats\nwoonwagenterrein\nwoonwagenwerk\nwoonwagenwet\nwoonwarenhuis\nwoonwijk\nwoonwinkel\nwoonzone\nwoord\nwoordaccent\nwoordafbreking\nwoordafleiding\nwoordarm\nwoordassociatie\nwoordbeeld\nwoordbetekenis\nwoordblind\nwoordblindheid\nwoordbreker\nwoordbreuk\nwoordcombinatie\nwoorddeel\nwoorddelen\nwoorddienst\nwoordeinde\nwoordelijk\nwoordeloos\nwoordenbestand\nwoordenboek\nwoordenboekartikel\nwoordenboekenmaker\nwoordenboekmaker\nwoordenbrij\nwoordenkennis\nwoordenkeus\nwoordenkraam\nwoordenkramerij\nwoordenlijst\nwoordenoorlog\nwoordenpraal\nwoordenrij\nwoordenrijk\nwoordenrijkdom\nwoordenrijkheid\nwoordenschat\nwoordenspel\nwoordenstrijd\nwoordenstroom\nwoordentolk\nwoordentwist\nwoordenvloed\nwoordenwisseling\nwoordfamilie\nwoordfrequentie\nwoordgebruik\nwoordgeslacht\nwoordgrap\nwoordgroep\nwoordhouder\nwoordinvulling\nwoordje\nwoordkeus\nwoordkeuze\nwoordkunst\nwoordkunstenaar\nwoordlengte\nwoordloos\nwoordontleding\nwoordorde\nwoordparen\nwoordreeks\nwoordschikking\nwoordsoort\nwoordspel\nwoordspelig\nwoordspeling\nwoordtarief\nwoordteken\nwoordtoon\nwoordvariatie\nwoordveld\nwoordverbinding\nwoordverklaring\nwoordverkondiging\nwoordvoerder\nwoordvoerderschap\nwoordvoering\nwoordvoerster\nwoordvolgorde\nwoordvoorraad\nwoordvorm\nwoordvorming\nworcestersaus\nworden\nwording\nwordingsgeschiedenis\nwordingsproces\nworgen\nworgengel\nworging\nworgpaal\nworkaholic\nworkflow\nworkshop\nworkshoppen\nworkshopvorm\nworkstation\nworld wide web\nworm\nwormachtig\nwormgat\nwormig\nwormkoekje\nwormkruid\nwormmiddel\nwormschroef\nwormsteek\nwormstekig\nwormverdrijvend\nwormvirus\nwormvormig\nwormwiel\nwormziekte\nworp\nworst\nworstachtig\nworstachtige\nworstcasescenario\nworstelaar\nworstelen\nworsteling\nworstelkunst\nworstelperk\nworstelspel\nworstelstrijd\nworstelwedstrijd\nworstenbroodje\nworsthoorntje\nworstmachine\nworstvergiftiging\nwortel\nwortelboom\nworteldoek\nwortelen\nwortelgestel\nwortelgetal\nwortelgewas\nwortelgrootheid\nwortelhaar\nwortelhout\nwortelig\nworteling\nwortelkanaalbehandeling\nwortelkluit\nwortelloof\nwortelnoten\nwortelsap\nwortelstelsel\nwortelstok\nwortelteken\nworteltje\nworteltrekken\nworteltrekking\nwortelvorm\nwou\nwoud\nwoudaap\nwoudduif\nwoudduivel\nwouden\nwoudezel\nwoudgebergte\nwoudloper\nwoudreus\nwoudvogel\nwould-be\nwould-beschrijver\nwout\nwouter\nwouterman\nwouw\nwow\nwraak\nwraakactie\nwraakbaar\nwraakengel\nwraakgedachte\nwraakgevoel\nwraakgevoelens\nwraakgierig\nwraakgierigheid\nwraakgodin\nwraaklust\nwraaklustig\nwraakneming\nwraakoefening\nwraakroepend\nwraakzucht\nwraakzuchtig\nwrak\nwrake\nwraken\nwrakgoed\nwrakgoederen\nwrakhout\nwraking\nwrakingskamer\nwrakingsverzoek\nwrakker\nwrakkig\nwrakstuk\nwrang\nwrangheid\nwrangwortel\nwrat\nwratachtig\nwrattenkruid\nwrattenzwijn\nwrattig\nwratziekte\nwredelijk\nwreed\nwreedaard\nwreedaardig\nwreedaardigheid\nwreedheid\nwreef\nwreken\nwreker\nwreking\nwrensen\nwrevel\nwrevelig\nwreveligheid\nwrevelmoed\nwrevelmoedig\nwriemelen\nwriemeling\nwriggelen\nwrijfdoek\nwrijfhout\nwrijflap\nwrijfpaal\nwrijfsteen\nwrijfwas\nwrijven\nwrijving\nwrijvingscoëfficiënt\nwrijvingselektriciteit\nwrijvingshoek\nwrijvingsmeter\nwrijvingspunt\nwrijvingswarmte\nwrijvingsweerstand\nwrikkelen\nwrikken\nwrikriem\nwringen\nwringer\nwringing\nwrochten\nwroegen\nwroeging\nwroeten\nwroeter\nwrok\nwrokken\nwrokkig\nwrong\nwrongel\nwrongstuk\nwuft\nwuftheid\nwui\nwuit\nwuiten\nwuiven\nwuiving\nwulf\nwulk\nwulp\nwulpennest\nwulps\nwulpsheid\nwurgcontract\nwurgen\nwurggreep\nwurging\nwurgkoord\nwurgpaal\nwurgtouw\nwurm\nwurmen\nwyandotte\nwybertje\nx\nx-aantal\nx-as\nx-stralen\nxanthine\nxanthofyl\nxanthoom\nxantippe\nxenocratie\nxenofiel\nxenofilie\nxenofobie\nxenofobisch\nxenofoob\nxenograaf\nxenomanie\nxenon\nxenotransplantatie\nxenotransplantaties\nxeres\nxereswijn\nxeroderma\nxerografie\nxtc\nxtc-bende\nxtc-gebruik\nxtc-handel\nxtc-laboratoria\nxtc-pil\nxtc-productie\nxtc-smokkel\nxtc-zaak\nxyleem\nxyleen\nxylitol\nxylofonist\nxylofoon\nxylografie\nxyloliet\ny\ny-as\nyahtzee\nyaleslot\nyam\nyamswortel\nyang\nyank\nyankee\nyard\nyell\nyellen\nyen\nyes\nyeti\nyieldcurve\nyin\nyoga\nyogalessen\nyogaoefening\nyoghurt\nyoghurtdrank\nyoghurtijs\nyogi\nypsilon\nyttrium\nyuan\nyuca\nyucca\nyup\nyuppen\nyuppenstel\nyuppie\nyuppieachtig\nyuppies\nz\nz'n\nz.g.\nz.g.a.n.\nz.i.\nz.o.z.\nz.s.m.\nzaad\nzaadbakje\nzaadbal\nzaadbalkanker\nzaadbank\nzaadbol\nzaadcel\nzaaddodend\nzaaddonor\nzaaddoos\nzaaddragend\nzaaddrager\nzaadhandel\nzaadhuisje\nzaadknop\nzaadkorrel\nzaadkwekerij\nzaadleider\nzaadlijst\nzaadlob\nzaadloos\nzaadlozing\nzaadolie\nzaadpacht\nzaadpluis\nzaadproductie\nzaadstreng\nzaadval\nzaadvast\nzaadveredeling\nzaadveredelingsbedrijf\nzaadwinkel\nzaadzolder\nzaag\nzaagbank\nzaagbek\nzaagbekken\nzaagbeugel\nzaagblad\nzaagbok\nzaagdak\nzaagmachine\nzaagmeel\nzaagmolen\nzaagraam\nzaagsel\nzaagsnede\nzaagstoel\nzaagtand\nzaagvijl\nzaagvis\nzaagvormig\nzaaibed\nzaaien\nzaaier\nzaaigoed\nzaaigraan\nzaaikoren\nzaaikorf\nzaailand\nzaailing\nzaaimachine\nzaaisel\nzaaitijd\nzaaiveld\nzaaizaad\nzaaizak\nzaak\nzaakbelasting\nzaakbezorger\nzaakgelastigde\nzaakje\nzaakkennis\nzaakkundig\nzaakkundige\nzaaknaam\nzaakpapieren\nzaakregister\nzaakrijk\nzaakschade\nzaaksgevolg\nzaaksofficier\nzaakvoerder\nzaakvoerster\nzaakvorming\nzaakwaarneemster\nzaakwaarnemer\nzaakwaarneming\nzaal\nzaalarts\nzaalcompetitie\nzaaleigenaar\nzaalgeluid\nzaalhandbal\nzaalhockey\nzaalhouder\nzaalhuur\nzaallicht\nzaallichten\nzaalsport\nzaalvoetbal\nzaalvoetbalclub\nzaalvoetbaltoernooi\nzaalwacht\nzaalwachter\nzaalzuster\nzaan\nzaathout\nzabaglione\nzabbelaar\nzabbelen\nzabberaar\nzabberdoek\nzabberen\nzacht\nzachtaardig\nzachtaardigheid\nzachtboard\nzachte\nzachtgeel\nzachtgekookt\nzachtgroen\nzachtharig\nzachtheid\nzachtjes\nzachtjesaan\nzachtmoedig\nzachtmoedigheid\nzachtroze\nzachts\nzachtzinnig\nzachtzinnigheid\nzadel\nzadelboog\nzadeldak\nzadeldaktoren\nzadeldek\nzadelen\nzadelgewricht\nzadelknop\nzadelkussen\nzadelmaker\nzadelmakerij\nzadelpaard\nzadelpijn\nzadelpunt\nzadelriem\nzadelrob\nzadelrug\nzadeltas\nzadeltje\nzadelvast\nzaden\nzag\nzageman\nzagemeel\nzagen\nzager\nzagerij\nzagevent\nzak\nzakagenda\nzakatlas\nzakband\nzakbijbel\nzakboekje\nzakbreuk\nzakcent\nzakcomputer\nzakdoek\nzakduit\nzakeditie\nzakelijk\nzakelijkheid\nzaken\nzakenauto\nzakenbank\nzakenbankier\nzakenbankiers\nzakenbelang\nzakenbelangen\nzakenblad\nzakenbrief\nzakencentrum\nzakencijfer\nzakendiner\nzakendoen\nzakengesprek\nzakenhotel\nzakenimperium\nzakeninstinct\nzakenjet\nzakenkabinet\nzakenkantoor\nzakenklimaat\nzakenkrant\nzakenleven\nzakenlieden\nzakenluchthaven\nzakenlui\nzakenlunch\nzakenmagazine\nzakenman\nzakenmannen\nzakenmarkt\nzakenmens\nzakenmilieu\nzakenpartner\nzakenregister\nzakenreis\nzakenreiziger\nzakenrelatie\nzakenstad\nzakentijdschrift\nzakenverkeer\nzakenvliegtuig\nzakenvriend\nzakenvrouw\nzakenwereld\nzakenwijk\nzakenzender\nzakflacon\nzakformaat\nzakgeld\nzakhorloge\nzakjapanner\nzakkam\nzakken\nzakkendrager\nzakkengoed\nzakkenlinnen\nzakkenrollen\nzakkenroller\nzakkenrollerij\nzakkenvullen\nzakkenvullend\nzakkenvuller\nzakkenvullerij\nzakkenwasser\nzakkerig\nzakkig\nzakking\nzaklamp\nzaklantaarn\nzaklantaren\nzaklopen\nzakmes\nzakmuis\nzakpijp\nzakrekenmachientje\nzakrekenmachine\nzakschaakspel\nzakschaartje\nzaksel\nzakspiegel\nzakspin\nzaktelefoon\nzakuitgave\nzakuurwerk\nzakvormig\nzakwater\nzakwoordenboek\nzalencentrum\nzalencircuit\nzalencomplex\nzalf\nzalfolie\nzalfoliën\nzalfpot\nzalig\nzalige\nzaligen\nzaliger\nzaligheid\nzaligmakend\nzaligmaking\nzaligspreking\nzaligverklaring\nzaling\nzalm\nzalmfilet\nzalmforel\nzalmkleur\nzalmkleurig\nzalmkweker\nzalmkwekerij\nzalmmousse\nzalmrokerij\nzalmroze\nzalmsalade\nzalmsnip\nzalmteelt\nzalmvisser\nzalmvisserij\nzalven\nzalvend\nzalving\nzambo\nzamelen\nzand\nzandaal\nzandaardappel\nzandachtig\nzandafgraving\nzandauto\nzandbad\nzandbak\nzandbank\nzandbed\nzandberg\nzandblad\nzandbodem\nzandboer\nzanddepot\nzandduin\nzanden\nzander\nzanderig\nzanderij\nzandgat\nzandgebak\nzandgebied\nzandglas\nzandgoed\nzandgraverij\nzandgroeve\nzandgrond\nzandhaas\nzandhaver\nzandheuvel\nzandhoop\nzandhoos\nzandig\nzandkasteel\nzandkever\nzandkleurig\nzandkoekje\nzandkorrel\nzandkuil\nzandlaag\nzandlichaam\nzandloper\nzandlopermodel\nzandman\nzandmannetje\nzandoogje\nzandopspuiting\nzandpad\nzandpakket\nzandplaat\nzandput\nzandraap\nzandrug\nzandruiter\nzandschilderen\nzandschuit\nzandsculptuur\nzandspiering\nzandsteen\nzandsteengroeve\nzandstenen\nzandstorm\nzandstralen\nzandstraler\nzandstrand\nzandstreek\nzandstroken\nzandstrooier\nzandsuppletie\nzandtaart\nzandtaartje\nzandtransport\nzandtrein\nzandverstuiving\nzandvlakte\nzandvlo\nzandvorm\nzandweg\nzandwesp\nzandwinlocatie\nzandwinning\nzandwinput\nzandwoestijn\nzandzak\nzandzee\nzandzuiger\nzang\nzangbalk\nzangberg\nzangbodem\nzangboek\nzangcarrière\nzangconcours\nzangcursus\nzanger\nzanger-componist\nzanger-gitarist\nzangeres\nzangerig\nzangerigheid\nzangerscast\nzangersfeest\nzangertje\nzanggezelschap\nzanggodin\nzanghulde\nzangkoor\nzangkunst\nzangleraar\nzanglerares\nzangles\nzanglijn\nzanglijnen\nzanglijster\nzangmaatschappij\nzangnoot\nzangnummer\nzangoefening\nzangonderwijs\nzangpartij\nzangpedagoge\nzangpedagoog\nzangschool\nzangspel\nzangstem\nzangstijl\nzangstuk\nzangtalent\nzangtekst\nzanguitvoering\nzangvereniging\nzangvogel\nzangwedstrijd\nzangwijs\nzangzaad\nzanik\nzaniken\nzaniker\nzanten\nzapcultuur\nzaponlak\nzappen\nzapper\nzarzuela\nzat\nzate\nzaterdag\nzaterdagamateur\nzaterdagavond\nzaterdagcompetitie\nzaterdageditie\nzaterdagkrant\nzaterdagmarkt\nzaterdagmiddag\nzaterdagmorgen\nzaterdagnacht\nzaterdagnamiddag\nzaterdagochtend\nzaterdags\nzaterdagsavonds\nzaterdagse\nzaterdagvoetbal\nzaterdagvoormiddag\nzatheid\nzatladder\nzatlap\nzatlapperij\nzavel\nzavelachtig\nzavelboom\nzavelgrond\nzavelig\nze\nzeboe\nzebra\nzebra-achtig\nzebracode\nzebrahout\nzebrapad\nzebrastreep\nzede\nzedelijk\nzedelijkheid\nzedelijkheidsgevoel\nzedelijkheidsmotief\nzedelijkheidswetgeving\nzedeloos\nzedeloosheid\nzeden\nzedenbederf\nzedenbedervend\nzedenbederver\nzedendelict\nzedendelinquent\nzedenkomedie\nzedenkunde\nzedenkundig\nzedenkundige\nzedenkwetsend\nzedenleer\nzedenles\nzedenmeester\nzedenmeesterij\nzedenmisdrijf\nzedenpolitie\nzedenprediker\nzedenpreek\nzedenpreken\nzedenpreker\nzedenroman\nzedenschandaal\nzedenschets\nzedenschildering\nzedenspreuk\nzedenverwildering\nzedenwet\nzedenzaak\nzedig\nzedigheid\nzee\nzee-eend\nzee-egel\nzee-engte\nzeeaal\nzeeanemoon\nzeeaquarium\nzeearend\nzeearm\nzeeassurantie\nzeebaak\nzeebaars\nzeebad\nzeebadplaats\nzeebaken\nzeebanket\nzeebenen\nzeebeving\nzeebioloog\nzeeblauw\nzeebodem\nzeeboezem\nzeebonk\nzeeboot\nzeeboring\nzeebrak\nzeebreker\nzeebrief\nzeebries\nzeecontainer\nzeedag\nzeedagenregeling\nzeedamp\nzeedelta\nzeedienst\nzeediepte\nzeedier\nzeedijk\nzeedistel\nzeedorp\nzeedrift\nzeeduivel\nzeef\nzeefauna\nzeefdoek\nzeefdruk\nzeefdrukken\nzeeforel\nzeeg\nzeegaand\nzeegang\nzeegat\nzeegevecht\nzeegezicht\nzeegod\nzeegodin\nzeegolf\nzeegras\nzeegrasveld\nzeegrens\nzeegrind\nzeegroen\nzeehaan\nzeehandel\nzeehaven\nzeeheld\nzeehond\nzeehondenbaby\nzeehondenbont\nzeehondencentrum\nzeehondencrèche\nzeehondenjacht\nzeehondenjager\nzeehondenmoord\nzeehondenopvangcentrum\nzeehondenpopulatie\nzeehondenstand\nzeehondensterfte\nzeehondenvirus\nzeehoofd\nzeek\nzeekaart\nzeekabel\nzeekant\nzeekapitein\nzeekasteel\nzeekat\nzeeklei\nzeekleigebied\nzeeklimaat\nzeekoe\nzeekoet\nzeekomkommer\nzeekool\nzeekraal\nzeekrab\nzeekreeft\nzeekust\nzeel\nzeeldraaier\nzeeleeuw\nzeelelie\nzeeleven\nzeelieden\nzeeloods\nzeelt\nzeelucht\nzeelui\nzeem\nzeemacht\nzeemachtbasis\nzeeman\nzeemanschap\nzeemansgraf\nzeemanshuis\nzeemansknoop\nzeemanskunst\nzeemansleven\nzeemanslied\nzeemanstaal\nzeemeermin\nzeemeeuw\nzeemijl\nzeemijn\nzeemilieu\nzeemlap\nzeemleder\nzeemleer\nzeemleren\nzeemogendheid\nzeemonster\nzeemos\nzeemtouwerij\nzeemvel\nzeemzoet\nzeen\nzeenat\nzeenatie\nzeenimf\nzeeniveau\nzeeoester\nzeeoever\nzeeofficier\nzeeoorlog\nzeeoppervlak\nzeep\nzeepaard\nzeepaardje\nzeepachtig\nzeepaling\nzeepbakje\nzeepbekken\nzeepbel\nzeepbeleconomie\nzeepboom\nzeepdoos\nzeepfabriek\nzeephouder\nzeepijl\nzeepindustrie\nzeepje\nzeepkist\nzeepkistenrace\nzeepkruid\nzeeplaats\nzeepmerk\nzeepmerken\nzeepok\nzeepolder\nzeepost\nzeeppoeder\nzeeppoeier\nzeepsop\nzeeptuimelaar\nzeepvlokken\nzeepwater\nzeepzieder\nzeepziederij\nzeer\nzeeramp\nzeerecht\nzeereep\nzeereerwaard\nzeereerwaarde\nzeereis\nzeereservaat\nzeergeleerd\nzeergeleerde\nzeerob\nzeeroof\nzeerot\nzeeroute\nzeerover\nzeeroverij\nzeerst\nzeeschade\nzeescheepvaart\nzeeschelp\nzeeschilder\nzeeschildpad\nzeeschip\nzeeschuim\nzeeschuimer\nzeeschuimerij\nzeeslag\nzeeslak\nzeeslang\nzeesleper\nzeesluis\nzeesoldaat\nzeespiegel\nzeespiegelrijzing\nzeespiegelstijging\nzeestad\nzeester\nzeestraat\nzeestrand\nzeestrijd\nzeestrijdkrachten\nzeestroming\nzeestroom\nzeestuk\nzeet\nzeeterm\nzeetijding\nzeetje\nzeetocht\nzeetong\nzeetransport\nzeevaarder\nzeevaardig\nzeevaart\nzeevaartkunde\nzeevaartkundig\nzeevaartkundige\nzeevaartpolitie\nzeevaartschool\nzeevakantie\nzeevarend\nzeevast\nzeeverkenner\nzeevervoer\nzeevervuiling\nzeeverzekering\nzeeverzekeringsmaatschappij\nzeevis\nzeevisserij\nzeevissers\nzeevlakte\nzeevogel\nzeevolk\nzeevonk\nzeevracht\nzeevrucht\nzeewaardig\nzeewaardigheid\nzeewaarts\nzeewater\nzeewaterbestendig\nzeewatertemperatuur\nzeeweg\nzeewering\nzeewezen\nzeewier\nzeewijf\nzeewind\nzeewolf\nzeezand\nzeezeilen\nzeezeiler\nzeezender\nzeezicht\nzeeziek\nzeeziekte\nzeezijde\nzeezoogdier\nzeezout\nzeezwaluw\nzefier\nzeg\nzege\nzegeboog\nzegekar\nzegekrans\nzegekreet\nzegel\nzegelafdruk\nzegelbelasting\nzegelbewaarder\nzegelen\nzegelgeld\nzegelied\nzegelkosten\nzegellak\nzegelmerk\nzegelrecht\nzegelring\nzegelsnijder\nzegelverkoop\nzegelwas\nzegelwet\nzegen\nzegenbede\nzegenen\nzegening\nzegenrijk\nzegenwens\nzegepalm\nzegepoort\nzegepraal\nzegepralen\nzegereeks\nzegeteken\nzegetocht\nzegevieren\nzegevlag\nzegewagen\nzegezang\nzegge\nzegge en schrijve\nzeggen\nzeggenschap\nzeggenschapsrechten\nzeggenschapsverhouding\nzegger\nzegging\nzeggingskracht\nzegje\nzegsman\nzegster\nzegsvrouw\nzegsvrouwe\nzegswijs\nzegswijze\nzei\nzeiden\nzeik\nzeiken\nzeiker\nzeikerd\nzeikerig\nzeiknat\nzeiksnor\nzeil\nzeilaanwijzing\nzeilboot\nzeilclub\nzeildoek\nzeildoeks\nzeilen\nzeiler\nzeilervaring\nzeiljacht\nzeilkamp\nzeilklaar\nzeilmaker\nzeilmakerij\nzeiloppervlak\nzeilplank\nzeilpunt\nzeilrace\nzeilree\nzeilschip\nzeilschool\nzeilschuit\nzeilsport\nzeilsteen\nzeilster\nzeilteam\nzeiltje\nzeiltocht\nzeilvaardig\nzeilvaart\nzeilvaartuig\nzeilvereniging\nzeilvloot\nzeilwagen\nzeilwedstrijd\nzeilweer\nzeilwind\nzeis\nzeisen\nzeisenman\nzeispreuk\nzeisvormig\nzeken\nzeker\nzekere\nzekeren\nzekerheid\nzekerheidshalve\nzekerheidsmaatregel\nzekerheidsrecht\nzekerheidsregeling\nzekerheidsstelsel\nzekerheidssysteem\nzekerheidstelling\nzekerheidstelsel\nzekerheidsuitgaven\nzekerheidswetgeving\nzekering\nzekeringhouder\nzekeringkast\nzekerlijk\nzekers\nzekerstelling\nzelateur\nzelatrice\nzelden\nzeldzaam\nzeldzaamheid\nzeldzaamheidswaarde\nzelf\nzelfaanvaarding\nzelfacceptatie\nzelfachting\nzelfanalyse\nzelfbedacht\nzelfbediening\nzelfbedieningsapparatuur\nzelfbedieningsgroothandel\nzelfbedieningsprincipe\nzelfbedieningsrestaurant\nzelfbedieningswinkel\nzelfbedieningszaak\nzelfbedrog\nzelfbedwang\nzelfbeeld\nzelfbegoocheling\nzelfbehaaglijk\nzelfbehagen\nzelfbeheer\nzelfbeheersing\nzelfbehoud\nzelfbeklag\nzelfbeoordeling\nzelfbeperking\nzelfbescherming\nzelfbeschikking\nzelfbeschikkingsrecht\nzelfbeschouwing\nzelfbeschuldiging\nzelfbespiegeling\nzelfbestuiving\nzelfbesturend\nzelfbestuur\nzelfbevestiging\nzelfbevlekking\nzelfbevrediging\nzelfbevrijding\nzelfbevruchting\nzelfbewoning\nzelfbewust\nzelfbewustheid\nzelfbewustzijn\nzelfbinder\nzelfbouw\nzelfbouwer\nzelfcensuur\nzelfcontrole\nzelfcorrectie\nzelfcorrigerend\nzelfde\nzelfdenkend\nzelfdestructie\nzelfdestructief\nzelfdiscipline\nzelfdoding\nzelfdoener\nzelfdragend\nzelfevaluatie\nzelfevaluatiemodel\nzelfexpressie\nzelfgebakken\nzelfgebouwd\nzelfgecreëerde\nzelfgefabriceerde\nzelfgegraven\nzelfgekozen\nzelfgemaakt\nzelfgenererend\nzelfgenoegzaam\nzelfgenoegzaamheid\nzelfgeschapen\nzelfgeschreven\nzelfgevoel\nzelfhaat\nzelfhandhaving\nzelfheid\nzelfhulp\nzelfhulpboek\nzelfhulpgroep\nzelfhypnose\nzelfinductie\nzelfingenomen\nzelfingenomenheid\nzelfinzicht\nzelfironie\nzelfkant\nzelfkanten\nzelfkastijding\nzelfkennis\nzelfklevend\nzelfklever\nzelfkritiek\nzelfkritisch\nzelfkwelling\nzelflerende\nzelfmedelijden\nzelfmedicatie\nzelfmoord\nzelfmoordaanslag\nzelfmoordaanval\nzelfmoordactie\nzelfmoordbriefje\nzelfmoordcommando\nzelfmoorddrama\nzelfmoorden\nzelfmoordenaar\nzelfmoordenares\nzelfmoordgedachte\nzelfmoordneiging\nzelfmoordneigingen\nzelfmoordpil\nzelfmoordpiloot\nzelfmoordplan\nzelfmoordplannen\nzelfmoordpoging\nzelfmoordterrorist\nzelfnoemfunctie\nzelfonderricht\nzelfonderzoek\nzelfontbranding\nzelfontplooiing\nzelfontspanner\nzelfontwikkeling\nzelfontworpen\nzelfopblaasbaar\nzelfopofferend\nzelfopoffering\nzelforganisatie\nzelfoverschatting\nzelfoverwinning\nzelfportret\nzelfpromotie\nzelfrealisatie\nzelfredzaam\nzelfredzaamheid\nzelfreflectie\nzelfregelend\nzelfregistrerend\nzelfregulatie\nzelfregulerend\nzelfregulering\nzelfreinigend\nzelfreiniging\nzelfrelativering\nzelfrespect\nzelfrijzend\nzelfs\nzelfscholing\nzelfselectie\nzelfsmerend\nzelfspot\nzelfstandig\nzelfstandige\nzelfstandigenaftrek\nzelfstandigenorganisatie\nzelfstandigenstatuut\nzelfstandigheid\nzelfstandigheidsdrang\nzelfstandigheidsstreven\nzelfstrijd\nzelfstrijkend\nzelfstudie\nzelfsturend\nzelfsturing\nzelfsuggestie\nzelftest\nzelftucht\nzelftwijfel\nzelfverachting\nzelfverblinding\nzelfverbranding\nzelfverdediging\nzelfverdedigingscursus\nzelfvergroting\nzelfverheerlijking\nzelfverheffing\nzelfverklaard\nzelfverkozen\nzelfverloochening\nzelfverminking\nzelfvernedering\nzelfvernietiging\nzelfverrijking\nzelfvertrouwen\nzelfverwerkelijking\nzelfverwezenlijking\nzelfverwijt\nzelfverwonding\nzelfverzekerd\nzelfverzekerdheid\nzelfverzonnen\nzelfvoldaan\nzelfvoldaanheid\nzelfvoldoening\nzelfvoorzienend\nzelfvoorziening\nzelfvoorzieningsgraad\nzelfwaardering\nzelfwerkend\nzelfwerkzaamheden\nzelfwerkzaamheid\nzelfzeker\nzelfzekerheid\nzelfzorg\nzelfzucht\nzelfzuchtig\nzelfzuchtige\nzelfzuchtigheid\nzelling\nzeloot\nzelve\nzemel\nzemelaar\nzemelachtig\nzemelen\nzemelig\nzemelknopen\nzemelknoper\nzemelwater\nzemen\nzemig\nzen\nzenboeddhisme\nzenboeddhist\nzendamateur\nzendantenne\nzendapparatuur\nzendbereik\nzendbode\nzendbrief\nzendeling\nzendelinge\nzendelingengenootschap\nzendelingswerk\nzenden\nzender\nzenderaanbod\nzendercoördinator\nzenderindeling\nzenderkleuring\nzendernet\nzenderpakket\nzenderpark\nzenderprofiel\nzenderprofilering\nzenderredactie\nzendgebied\nzendgemachtigde\nzending\nzendingsarbeid\nzendingsarts\nzendingsbijdragen\nzendingsbijeenkomst\nzendingsdrang\nzendingsdrift\nzendingsfeest\nzendingsgenootschap\nzendingskalender\nzendingsorganisatie\nzendingspost\nzendingsraad\nzendingsschool\nzendingswerk\nzendinstallatie\nzendmachtiging\nzendmast\nzendpiraat\nzendpost\nzendschema\nzendschip\nzendstation\nzendster\nzendtijd\nzendtijdindeling\nzendtijduitbreiding\nzendtijdverdeling\nzenduur\nzendvergunning\nzendvermogen\nzenegroen\nzenen\nzeng\nzengen\nzenig\nzenit\nzenmeditatie\nzenmeester\nzenuw\nzenuwaandoening\nzenuwachtig\nzenuwachtigheid\nzenuwarts\nzenuwbehandeling\nzenuwberoerte\nzenuwcel\nzenuwcentrum\nzenuwcrisis\nzenuwen\nzenuwenoorlog\nzenuwgas\nzenuwgestel\nzenuwinrichting\nzenuwinstorting\nzenuwinzinking\nzenuwkanaal\nzenuwknoop\nzenuwkoorts\nzenuwkwaal\nzenuwleer\nzenuwlijden\nzenuwlijder\nzenuwontsteking\nzenuwoorlog\nzenuwoverspanning\nzenuwpatiënt\nzenuwpatiënte\nzenuwpees\nzenuwpijn\nzenuwschok\nzenuwslopend\nzenuwstelsel\nzenuwstoornis\nzenuwtablet\nzenuwtoeval\nzenuwtrekking\nzenuwuitloper\nzenuwverlamming\nzenuwvezel\nzenuwweefsel\nzenuwziek\nzenuwziekte\nzenuwzwakte\nzeoliet\nzepen\nzeperd\nzeperig\nzepig\nzeppelin\nzerk\nzerken\nzero\nzero tolerance\nzerotolerancebeleid\nzerp\nzerpheid\nzes\nzes-en-een-half\nzesbaans\nzesbak\nzescilinder\nzesdaags\nzesdaagse\nzesde\nzesde-eeuws\nzesdejaars\nzesdeklasser\nzesdelig\nzesdraads\nzesduizend\nzesendertig\nzesendertigste\nzesenhalf\nzesennegentig\nzesentachtig\nzesentwintig\nzesentwintigduizend\nzesentwintigjarig\nzesentwintigste\nzesenveertig\nzesenvijftig\nzesenzestig\nzesenzeventig\nzeshoek\nzeshoekig\nzeshonderd\nzeshonderdduizend\nzeshonderdste\nzeshonderdvijftig\nzesjarig\nzeskamp\nzeskantig\nzeskoppig\nzeslandentoernooi\nzesmaal\nzesmaandelijks\nzespersoons\nzesponder\nzessen\nzestal\nzestien\nzestiende\nzestiende-eeuws\nzestienduizend\nzestienhonderd\nzestienjarig\nzestienjarige\nzestienkoppig\nzestienmetergebied\nzestiental\nzestig\nzestigduizend\nzestigduizendste\nzestiger\nzestigjarig\nzestigplusser\nzestigste\nzestigtal\nzesuurjournaal\nzesvlak\nzesvoud\nzesvoudig\nzeswekendienst\nzet\nzetangel\nzetbaas\nzetboer\nzetbok\nzetduiveltje\nzetdwang\nzetel\nzetelaantal\nzetelen\nzetelmeerderheid\nzetelroof\nzeteltal\nzetelverdeling\nzetelverlies\nzetelwinst\nzetfout\nzetgang\nzethaak\nzetherhaling\nzetinstructie\nzetkastelein\nzetlijn\nzetmachine\nzetmeel\nzetpil\nzetschipper\nzetsel\nzetselproef\nzetspiegel\nzetstuk\nzetten\nzettenreeks\nzetter\nzetterij\nzetting\nzetwerk\nzeug\nzeugenhouderij\nzeugma\nzeulen\nzeuntje\nzeur\nzeurder\nzeurderig\nzeuren\nzeurig\nzeurkous\nzeurpiet\nzeurzak\nzeven\nzeven-en-een-half\nzevenarmig\nzevenblad\nzevenbladig\nzevenboom\nzevendaags\nzevende\nzevendelig\nzevenduizend\nzevenduizendste\nzevenendertig\nzevenendertigste\nzevenenhalf\nzevenentachtig\nzevenentwintig\nzevenentwintigduizend\nzevenentwintigste\nzevenenveertig\nzevenenveertigste\nzevenenvijftig\nzevenenzestig\nzevenenzeventig\nzevenenzeventigste\nzevenhoek\nzevenhoekig\nzevenhonderd\nzevenhonderdduizend\nzevenhonderdste\nzevenhonderdvijftig\nzevenjarig\nzevenjarige\nzevenkamp\nzevenklapper\nzevenkleurig\nzevenkoppig\nzevenmaal\nzevenmaands\nzevenmijlslaarzen\nzevenoog\nzevenslaper\nzevenslapers\nzevensprong\nzevenster\nzevental\nzeventallig\nzeventien\nzeventiende\nzeventiende-eeuwer\nzeventiende-eeuws\nzeventienduizend\nzeventienhonderd\nzeventienjarig\nzeventig\nzeventigduizend\nzeventiger\nzeventigjarig\nzeventigjarige\nzeventigste\nzeventigtal\nzevenuurjournaal\nzevenvoud\nzevenvoudig\nzevenzitter\nzever\nzeveraar\nzeveraarster\nzeveren\nzeverlap\nzgn.\nzich\nzicht\nzichtas\nzichtbaar\nzichtbaarheid\nzichten\nzichter\nzichtlijn\nzichtlocatie\nzichtlocaties\nzichtrekening\nzichtzending\nzichzelf\nziedaar\nzieden\nziedend\nziederij\nziegezagen\nziehier\nziek\nziek melden\nziek-zijn\nziekbed\nzieke\nziekelijk\nziekelijkheid\nzieken\nziekenafdeling\nziekenappel\nziekenauto\nziekenbezoek\nziekenboeg\nziekenboekje\nziekenbroeder\nziekendag\nziekenfonds\nziekenfondsbijdrage\nziekenfondsbril\nziekenfondsbudget\nziekenfondsgrens\nziekenfondskaart\nziekenfondskantoor\nziekenfondskas\nziekenfondspakket\nziekenfondspatiënt\nziekenfondspremie\nziekenfondsraad\nziekenfondsrekening\nziekenfondsverzekerd\nziekenfondsverzekerde\nziekenfondsverzekering\nziekenfondswet\nziekengasthuis\nziekengeld\nziekenhuis\nziekenhuisafdeling\nziekenhuisafval\nziekenhuisapotheek\nziekenhuisapotheker\nziekenhuisarts\nziekenhuisbacterie\nziekenhuisbal\nziekenhuisbed\nziekenhuisbehandeling\nziekenhuisbeleid\nziekenhuisbestuur\nziekenhuisbevalling\nziekenhuisbezoek\nziekenhuisbudget\nziekenhuiscomplex\nziekenhuisdirecteur\nziekenhuisdirecteuren\nziekenhuisdirectie\nziekenhuisinfectie\nziekenhuiskamer\nziekenhuiskosten\nziekenhuislaboratorium\nziekenhuislinnen\nziekenhuisopname\nziekenhuisorganisatie\nziekenhuispatiënt\nziekenhuispersoneel\nziekenhuispredikant\nziekenhuisprotocol\nziekenhuispsychiater\nziekenhuispsychiatrie\nziekenhuisschool\nziekenhuissector\nziekenhuisserie\nziekenhuisterrein\nziekenhuisverblijf\nziekenhuisverpleging\nziekenhuiswereld\nziekenhuiswezen\nziekenhuiszorg\nziekenkamer\nziekenkas\nziekenkost\nziekenmoeder\nziekenomroep\nziekenoppasser\nziekenoppasster\nziekenrapport\nziekenstal\nziekenstoel\nziekentransport\nziekentroost\nziekenvader\nziekenverblijf\nziekenverpleegster\nziekenverpleger\nziekenverpleging\nziekenvervoer\nziekenverzorgende\nziekenverzorger\nziekenverzorging\nziekenverzorgster\nziekenwagen\nziekenzaal\nziekenzalving\nziekenzorg\nziekenzuster\nziekjes\nziekmakend\nziekmelding\nziekte\nziekte-inzicht\nziekte-uitkering\nziektebeeld\nziektebeloop\nziektebeschrijving\nziektebestrijding\nziektecijfer\nziektedag\nziektefobie\nziektegeld\nziektegeschiedenis\nziektegeval\nziektejaar\nziektekiem\nziektekosten\nziektekostenfonds\nziektekostenpolis\nziektekostenpremie\nziektekostenregeling\nziektekostenstelsel\nziektekostenverzekeraar\nziektekostenverzekering\nziektekostenvoorziening\nziektekunde\nziektekundig\nziektekundige\nziekteleer\nziektemelding\nziekten\nziekteoorzaak\nziektepatroon\nziektepercentage\nziekteperiode\nziekteproces\nziekterisico\nziektes\nziektestof\nziektesymptoom\nziektetoestand\nziekteverlof\nziekteverloop\nziekteverschijnsel\nziekteverwekkend\nziekteverwekker\nziekteverzekering\nziekteverzuim\nziekteverzuimbeleid\nziektewet\nziektewetpremie\nziektewetuitkering\nziel\nzielenadel\nzielengrootheid\nzielenheil\nzielenherder\nzielenknijper\nzielenleed\nzielenleven\nzielenlijden\nzielenmis\nzielennood\nzielenpiet\nzielenpieten\nzielenpijn\nzielenpoot\nzielenroerselen\nzielenrust\nzielensmart\nzielenstrijd\nzielental\nzielenvreugde\nzielenzorg\nzielig\nzieligheid\nzielkunde\nzielkundig\nzielkundige\nzielloos\nzielmis\nzielroerend\nzielsaandoening\nzielsalleen\nzielsangst\nzielsbedroefd\nzielsblij\nzielsgelukkig\nzielsgenoegen\nzielsgesteldheid\nzielskracht\nzielskwelling\nzielslief\nzielsrust\nzielstevreden\nzielstoestand\nzielsveel\nzielsverdriet\nzielsverhuizing\nzielsverlangen\nzielsvermogen\nzielsvervoering\nzielsverwant\nzielsverwantschap\nzielsvreugde\nzielsvriend\nzielsvriendin\nzielsziek\nzielszieke\nzielsziekte\nzielszorg\nzieltje\nzieltjeswinnerij\nzieltogen\nzieltogend\nzielverheffend\nzielverkoper\nzielverkwikkend\nzielverzorger\nzielzorg\nzielzorger\nzien\nziende\nzienderogen\nziener\nzieneres\nzienersblik\nzienersoog\nzienlijk\nziens\nzienster\nzienswijze\nzier\nziezo\nzift\nziften\nzifter\nzifterij\nzifting\nziftsel\nzigeuner\nzigeunerachtig\nzigeunerfamilie\nzigeunerin\nzigeunerkamp\nzigeunerleven\nzigeunermeisje\nzigeunermuziek\nzigeunerorkest\nzigeunertaal\nzigeunertango\nzigeunertroep\nzigeunervolk\nzigeunervrouw\nzigeunerwagen\nzigzag\nzigzagbeleid\nzigzaggen\nzigzagkoers\nzigzaglijn\nzigzagsgewijs\nzigzagsgewijze\nzigzagsteek\nzij\nzij aan zij\nzijaanrijding\nzijaanzicht\nzijaltaar\nzijbalkon\nzijbeuk\nzijde\nzijde-industrie\nzijdeaapje\nzijdeachtig\nzijdecocon\nzijdecultuur\nzijdefabriek\nzijdeglans\nzijdelings\nzijden\nzijdens\nzijdepapier\nzijderoute\nzijderups\nzijdespinnerij\nzijdestreep\nzijdeteelt\nzijdeur\nzijdevlinder\nzijdewever\nzijdeweverij\nzijdeworm\nzijdezacht\nzijgalerij\nzijgang\nzijgebouw\nzijgen\nzijgevel\nzijig\nzijingang\nzijinstromer\nzijinstroom\nzijkamer\nzijkanaal\nzijkant\nzijkapel\nzijklep\nzijlaan\nzijlicht\nzijligging\nzijlijn\nzijlings\nzijlinie\nzijloge\nzijmuur\nzijn\nzijn pappenheimers kennen\nzijne\nzijnen\nzijnentwege\nzijnentwil\nzijnentwille\nzijner\nzijnerzijds\nzijnet\nzijns inziens\nzijnsleer\nzijopening\nzijp\nzijpad\nzijpaneel\nzijpelen\nzijpen\nzijpoort\nzijportaal\nzijraam\nzijrand\nzijrivier\nzijruit\nzijschip\nzijsluiting\nzijspan\nzijspancross\nzijspanwagen\nzijspiegel\nzijspoor\nzijsprong\nzijstap\nzijstraat\nzijstuk\nzijtak\nzijtas\nzijtje\nzijuitgang\nzijvertrek\nzijvinnen\nzijvlak\nzijvleugel\nzijwaarts\nzijwand\nzijweg\nzijwiel\nzijwind\nzijzak\nzijzelf\nzijzwaard\nzilt\nziltheid\nziltig\nziltigheid\nzilver\nzilverachtig\nzilverader\nzilverberk\nzilverblad\nzilverblank\nzilverbon\nzilverbromide\nzilverden\nzilverdraad\nzilveren\nzilverenmedaillewinnaar\nzilvererts\nzilverfazant\nzilverfolie\nzilvergehalte\nzilvergeld\nzilverglans\nzilvergrijs\nzilverhoudend\nzilverig\nzilverkast\nzilverkleurig\nzilverlegering\nzilverling\nzilvermeeuw\nzilvermijn\nzilvermunt\nzilvernitraat\nzilverpapier\nzilverpoeder\nzilverpoets\nzilverprijs\nzilverreiger\nzilverschat\nzilverschoon\nzilversmid\nzilversoldeer\nzilverspar\nzilverspiegel\nzilverstuk\nzilveruitje\nzilvervis\nzilvervlies\nzilvervliesrijst\nzilvervloot\nzilvervos\nzilverwerk\nzilverwit\nzilverzand\nzin\nzindeel\nzindelijk\nzindelijkheid\nzindelijkheidstraining\nzinderen\nzindering\nzingbaar\nzingen\nzingenot\nzingevend\nzingeving\nzingevingsvraag\nzink\nzinkafval\nzinkbak\nzinkbedekking\nzinkblende\nzinken\nzinker\nzinkerts\nzinkfabriek\nzinkgat\nzinkhoudend\nzinking\nzinklaag\nzinklegering\nzinklood\nzinkmijn\nzinkografie\nzinkoxide\nzinkplaat\nzinkprijs\nzinkproducent\nzinkput\nzinksel\nzinkstof\nzinkstuk\nzinkwit\nzinkzalf\nzinkzout\nzinkzouten\nzinledig\nzinlijk\nzinlijkheid\nzinloos\nzinloosheid\nzinnebeeld\nzinnebeeldig\nzinnelijk\nzinnelijkheid\nzinneloos\nzinneloosheid\nzinneloze\nzinnen\nzinnenprikkelend\nzinnens zijn\nzinnenstrelend\nzinnenwereld\nzinnespel\nzinnia\nzinnig\nzinnigheid\nzinrijk\nzinsaccent\nzinsbedrog\nzinsbegoocheling\nzinsbouw\nzinsconstructie\nzinsdeel\nzinsleer\nzinslengte\nzinsmelodie\nzinsnede\nzinsontleding\nzinspelen\nzinspeling\nzinspreuk\nzinstype\nzinsverband\nzinsverbijstering\nzinsvervoering\nzinsvolgorde\nzinswending\nzintuig\nzintuiglijk\nzinverwant\nzinvol\nzinvolheid\nzionisme\nzionist\nzionistisch\nzippen\nzirkonium\nzirkoon\nzit\nzit-slaapkamer\nzit-slaapkamers\nzitbad\nzitbank\nzitcomfort\nzitdag\nzitelement\nzitgedeelte\nzitgelegenheid\nzithoek\nzithoogte\nzithouding\nzitje\nzitkamer\nzitkamerameublement\nzitkuil\nzitkussen\nzitmeubel\nzitpenning\nzitplaats\nzitpositie\nzitruimte\nzitstaking\nzitten\nzittenblijven\nzittenblijver\nzittend\nzitter\nzitters\nzittijd\nzitting\nzitting hebbend\nzittingsdag\nzittingsdatum\nzittingsduur\nzittingsjaar\nzittingsperiode\nzittingsruimte\nzittingstermijn\nzittingsverslag\nzittingszaal\nzittingzaal\nzittribune\nzituur\nzitvlak\nzitvlees\nzitzak\nzloty\nzmlk\nzmlk-school\nzo\nzo langzamerhand\nzo nodig\nzo'n\nzo-even\nzoab\nzoal\nzoals\nzocht\nzodanig\nzodat\nzode\nzoden\nzodenbank\nzodensnijder\nzodiak\nzodiakaal\nzodoende\nzodra\nzoeaaf\nzoef\nzoek\nzoekactie\nzoekalgoritme\nzoekalgoritmen\nzoekbrengen\nzoekdienst\nzoeken\nzoekenden\nzoekengine\nzoeker\nzoekertje\nzoekfunctie\nzoekgebied\nzoekgedrag\nzoekgeraakt\nzoekinstructie\nzoeklicht\nzoekmachine\nzoekmaken\nzoekmodule\nzoekmogelijkheid\nzoekmotor\nzoekopdracht\nzoekoperatie\nzoekplaatje\nzoekprocedure\nzoekproces\nzoekprogramma\nzoekraken\nzoekreflex\nzoekrobot\nzoeksite\nzoeksnelheid\nzoeksoftware\nzoeksuggestie\nzoeksysteem\nzoekterm\nzoekterrein\nzoektijd\nzoektocht\nzoekvraag\nzoekwerk\nzoekwoord\nzoel\nzoelen\nzoelte\nzoemen\nzoemer\nzoemertoon\nzoemtoon\nzoen\nzoenaltaar\nzoenbloed\nzoendood\nzoenen\nzoener\nzoenerig\nzoengeld\nzoenoffer\nzoet\nzoet water\nzoetachtig\nzoetekauw\nzoetelaar\nzoetelaarster\nzoetelief\nzoetelijk\nzoetemelk\nzoetemelks\nzoeten\nzoeter\nzoeterd\nzoeterig\nzoetgevooisd\nzoetheid\nzoethouder\nzoethoudertje\nzoethout\nzoetig\nzoetigheid\nzoetje\nzoetjes\nzoetjesaan\nzoetluidend\nzoetmiddel\nzoetsappig\nzoetsappigheid\nzoetschaaf\nzoetstof\nzoetstoftablet\nzoette\nzoetvijl\nzoetvijlen\nzoetvloeiend\nzoetwaren\nzoetwaterbeheer\nzoetwaterbron\nzoetwaterfauna\nzoetwatermeer\nzoetwaterplant\nzoetwatervis\nzoetwatervisserij\nzoetwatervoorraad\nzoetzuur\nzoeven\nzog\nzogeheten\nzogen\nzogenaamd\nzogenoemd\nzogezegd\nzogwater\nzohaast\nzoiets\nzojuist\nzolang\nzolder\nzolderbalk\nzolderbetimmering\nzolderdeur\nzolderen\nzolderetage\nzoldergat\nzoldering\nzolderkamer\nzolderkamertje\nzolderluik\nzolderraam\nzolderruimte\nzolderschuit\nzoldertje\nzoldertrap\nzoldervenster\nzolderverdieping\nzoldervloer\nzolen\nzomaar\nzombie\nzomede\nzomen\nzomer\nzomeraanbieding\nzomeraardappel\nzomerachtig\nzomeravond\nzomerbed\nzomerbedding\nzomercampagne\nzomercollectie\nzomercursus\nzomerdag\nzomerdienst\nzomerdienstregeling\nzomerdijk\nzomerdos\nzomerdracht\nzomereik\nzomeren\nzomerfeest\nzomerfestival\nzomergast\nzomergoed\nzomergraan\nzomergriep\nzomergroente\nzomerhalfjaar\nzomerhit\nzomerhitte\nzomerhoed\nzomerhuis\nzomerjack\nzomerjapon\nzomerjas\nzomerjurk\nzomerkade\nzomerkamp\nzomerkleding\nzomerkleed\nzomerkleren\nzomerkoren\nzomerkostuum\nzomerlucht\nzomermaand\nzomermantel\nzomermiddag\nzomermode\nzomermorgen\nzomernacht\nzomernummer\nzomeroffensief\nzomerpak\nzomerpaleis\nzomerpeer\nzomerpeil\nzomerperiode\nzomerpolder\nzomerpostzegel\nzomerprogramma\nzomerprogramma's\nzomerprogrammering\nzomerrally\nzomerreces\nzomerreeks\nzomerregen\nzomerresidentie\nzomerrogge\nzomers\nzomerschool\nzomerseizoen\nzomerserie\nzomerslaap\nzomersmog\nzomerspelen\nzomersport\nzomersproet\nzomersproeten\nzomerstop\nzomertaling\nzomertarwe\nzomertemperatuur\nzomertentoonstelling\nzomertijd\nzomertournee\nzomertruffel\nzomeruniversiteit\nzomeruur\nzomervakantie\nzomerverblijf\nzomerwarmte\nzomerweer\nzomerwind\nzomerzalm\nzomerzegel\nzomerzon\nzomerzonnewende\nzomerzotheid\nzomin\nzomp\nzompen\nzompig\nzon\nzona\nzonaal\nzonaanbidder\nzonaanbidster\nzonbeschenen\nzonbestraling\nzond\nzondaar\nzondaarsbank\nzondag\nzondagamateurs\nzondagavond\nzondagkrant\nzondagmiddag\nzondagmorgen\nzondagnacht\nzondagnamiddag\nzondagochtend\nzondagopenstelling\nzondags\nzondagsarbeid\nzondagsavonds\nzondagsbeurt\nzondagsblad\nzondagsdienst\nzondagse\nzondagseditie\nzondagsgezicht\nzondagsheiliging\nzondagsjager\nzondagskind\nzondagskleed\nzondagskleren\nzondagskrant\nzondagsletter\nzondagsmaal\nzondagsmis\nzondagsopening\nzondagsopenstelling\nzondagspak\nzondagsplicht\nzondagspubliek\nzondagsrijder\nzondagsrust\nzondagsschilder\nzondagsschool\nzondagsschot\nzondagssluiting\nzondagsviering\nzondagswerk\nzondagvoetbal\nzondagvoormiddag\nzondares\nzonde\nzondebegrip\nzondebesef\nzondebewustzijn\nzondebok\nzondelast\nzondeloos\nzondeloosheid\nzonden\nzonder\nzonderbaar\nzonderegister\nzonderling\nzonderlinge\nzonderlingheid\nzondeschuld\nzondeval\nzondevergeving\nzondig\nzondigen\nzondigheid\nzondoorstoofd\nzondoorstoofde\nzondvloed\nzone\nzonecht\nzoneclips\nzonedekking\nzonegrens\nzonering\nzones\nzonestelsel\nzonet\nzonetarief\nzonetijd\nzonetoernooi\nzoneverdediging\nzonevreemd\nzong\nzongebruind\nzongedroogd\nzongerijpt\nzonhoed\nzonk\nzonkant\nzonkracht\nzonlicht\nzonloos\nzonne-energie\nzonneactiviteit\nzonneauto\nzonnebaan\nzonnebad\nzonnebaden\nzonnebader\nzonnebank\nzonneblind\nzonnebloem\nzonnebloemolie\nzonnebloempit\nzonneboiler\nzonnebrand\nzonnebrandcrème\nzonnebrandolie\nzonnebril\nzonnecel\nzonnecirkel\nzonnecollector\nzonnecrème\nzonnecultus\nzonnecyclus\nzonnedag\nzonnedak\nzonnedauw\nzonnedek\nzonnedienst\nzonnefilter\nzonnegloed\nzonnegloren\nzonnegod\nzonnegodin\nzonnehemel\nzonnehoed\nzonnejaar\nzonnejurk\nzonnekanon\nzonnekijker\nzonneklaar\nzonneklep\nzonneklopper\nzonnekoning\nzonnelicht\nzonnen\nzonnepaneel\nzonnerad\nzonnescherm\nzonneschijf\nzonneschijn\nzonnespectrum\nzonnestand\nzonnesteek\nzonnestelsel\nzonnestilstand\nzonnestofje\nzonnestraal\nzonnestraling\nzonnestroom\nzonnestudio\nzonnetafel\nzonnetempel\nzonnetent\nzonneterras\nzonnetijd\nzonnetje\nzonnevis\nzonnevlek\nzonnevuur\nzonnewachter\nzonnewagen\nzonnewarmte\nzonneweg\nzonneweide\nzonnewende\nzonnewering\nzonnewijzer\nzonnewind\nzonnig\nzonovergoten\nzonsafstand\nzonshoogte\nzonsondergang\nzonsopgang\nzonsopkomst\nzonsverduistering\nzonuren\nzonvakantie\nzonverbrand\nzonwering\nzonzij\nzonzijde\nzoo\nzoog\nzoogbroeder\nzoogbroer\nzoogdier\nzoogdiercellen\nzoogdiersoort\nzoogkind\nzoogkoe\nzooglam\nzoogperiode\nzoogster\nzoogzuster\nzooi\nzooien\nzooitje\nzool\nzoolganger\nzoolleder\nzoolleer\nzoom\nzoomen\nzoomlens\nzoomwerk\nzoon\nzoonlief\nzoop\nzoopje\nzoor\nzootje\nzopas\nzopen\nzorg\nzorg dragen\nzorgaanbieder\nzorgaanbod\nzorgadministratie\nzorgarbeid\nzorgbarend\nzorgbehoefte\nzorgbehoevend\nzorgbeleid\nzorgboerderij\nzorgbreedte\nzorgbudget\nzorgcentrum\nzorgcircuit\nzorgcoördinator\nzorgdifferentiatie\nzorgdragend\nzorgelijk\nzorgelijkheid\nzorgeloos\nzorgeloosheid\nzorgen\nzorgenkind\nzorgenverstrekker\nzorgfunctie\nzorggras\nzorggroep\nzorghotel\nzorghuis\nzorginhoud\nzorginstelling\nzorginventarisatie\nzorgkantoor\nzorgkas\nzorgketen\nzorgkosten\nzorgleerling\nzorglijk\nzorglijn\nzorgloket\nzorgloon\nzorgmanager\nzorgmarkt\nzorgnummer\nzorgorganisatie\nzorgpakket\nzorgpas\nzorgperiode\nzorgpersoneel\nzorgplan\nzorgplicht\nzorgplichtige\nzorgprogramma\nzorgsector\nzorgsoort\nzorgstelsel\nzorgstoel\nzorgsysteem\nzorgtaak\nzorgtarief\nzorgtoeslag\nzorgtoewijzingsbeleid\nzorgtoewijzingssysteem\nzorgtype\nzorgverbreding\nzorgverlener\nzorgverlening\nzorgverlof\nzorgvernieuwing\nzorgverplichting\nzorgverstrekkers\nzorgverstrekking\nzorgverzekeraar\nzorgverzekering\nzorgvol\nzorgvoorziening\nzorgvraag\nzorgvrager\nzorgvuldig\nzorgvuldigheid\nzorgvuldigheidsbeginsel\nzorgvuldigheidscriterium\nzorgvuldigheidseisen\nzorgvuldigheidsnorm\nzorgvuldigheidsregels\nzorgvuldigheidsvereisten\nzorgwekkend\nzorgzaam\nzorgzaamheid\nzorgzwaarte\nzot\nzotheid\nzothuis\nzotskap\nzotskolf\nzottebollen\nzotteklap\nzotternij\nzottigheid\nzottin\nzou\nzouden\nzout\nzoutachtig\nzoutafzetting\nzoutarm\nzoutbak\nzoutberg\nzoute\nzouteloos\nzouteloosheid\nzouten\nzouter\nzoutevis\nzoutgehalte\nzoutheid\nzouthoudend\nzoutig\nzoutje\nzoutkeet\nzoutkoepel\nzoutkorrel\nzoutkristal\nzoutlepeltje\nzoutloos\nzoutmeer\nzoutmijn\nzoutminnend\nzoutoplossing\nzoutpakhuis\nzoutpan\nzoutpilaar\nzoutplant\nzoutpot\nzoutraffinaderij\nzoutstrooier\nzoutte\nzouttuin\nzoutvaatje\nzoutvat\nzoutverbruik\nzoutvlees\nzoutwaterbron\nzoutwatermeer\nzoutwatervis\nzoutweger\nzoutwinning\nzoutzak\nzoutzieder\nzoutziederij\nzoutzuur\nzoveel\nzoveeljarig\nzoveelste\nzovelen\nzover\nzoverre\nzowaar\nzowat\nzowel\nzozeer\nzozo\nzoögeografie\nzoölogie\nzoölogisch\nzoöloog\nzoömorf\nzoömorfe\nzoöplankton\nzucht\nzuchten\nzuchtig\nzuchtigheid\nzuchtje\nzuid\nzuidas\nzuidelijk\nzuidelijken\nzuiden\nzuidenwind\nzuiderbreedte\nzuiderbuur\nzuidergrens\nzuiderkeerkring\nzuiderkolonie\nzuiderlicht\nzuiderling\nzuiders\nzuiderstrand\nzuiderzon\nzuidflank\nzuidgevel\nzuidgrens\nzuidkant\nzuidkust\nzuidoever\nzuidoost\nzuidoostelijk\nzuidoostelijke\nzuidoosten\nzuidoostenwind\nzuidooster\nzuidoosthoek\nzuidoostkant\nzuidoostkust\nzuidoostwaarts\nzuidpool\nzuidpoolcirkel\nzuidpoolgebied\nzuidpoollanden\nzuidpoolreis\nzuidpoolreiziger\nzuidpunt\nzuidrand\nzuidtak\nzuidvleugel\nzuidvrucht\nzuidvruchten\nzuidwaarts\nzuidwest\nzuidwestelijk\nzuidwestelijke\nzuidwesten\nzuidwestenwind\nzuidwester\nzuidwesterstorm\nzuidwesthoek\nzuidwestkant\nzuidwestkust\nzuidwestpunt\nzuidzij\nzuidzijde\nzuidzuidoost\nzuidzuidoosten\nzuidzuidwest\nzuidzuidwesten\nzuigbuis\nzuigcurettage\nzuigeling\nzuigelingenbureau\nzuigelingensterfte\nzuigelingenvoeding\nzuigelingenzorg\nzuigen\nzuiger\nzuigerklep\nzuigermachine\nzuigerstang\nzuigerveer\nzuigfilter\nzuigfles\nzuiging\nzuigkalf\nzuigklep\nzuigkorf\nzuigkorven\nzuigkracht\nzuiglam\nzuigleiding\nzuigmond\nzuigmonden\nzuignap\nzuigpijp\nzuigpomp\nzuigslang\nzuigtablet\nzuigtoestel\nzuigvis\nzuigworm\nzuil\nzuilenbestel\nzuilengalerij\nzuilengang\nzuilenrij\nzuilenstelsel\nzuilensysteem\nzuilenzaal\nzuilheilige\nzuiltje\nzuilvormig\nzuinig\nzuinigheid\nzuinigheidsmaatregel\nzuinigje\nzuinigjes\nzuip\nzuipen\nzuiper\nzuiplap\nzuippartij\nzuipschuit\nzuipster\nzuivel\nzuivelbedrijf\nzuivelbereiding\nzuivelblok\nzuivelboeren\nzuivelbond\nzuivelconcern\nzuivelconsulent\nzuivelcoöperatie\nzuiveldrank\nzuivelfabriek\nzuivelhandel\nzuivelindustrie\nzuivelmarkt\nzuivelondernemingen\nzuivelorganisatie\nzuivelproducent\nzuivelproduct\nzuivelproductie\nzuivelschool\nzuivelsector\nzuiver\nzuiveraar\nzuiveren\nzuiverheid\nzuiverheidsgraad\nzuiverheidsonderzoek\nzuivering\nzuiveringsactie\nzuiveringsbelasting\nzuiveringschap\nzuiveringscommissie\nzuiveringseed\nzuiveringsheffing\nzuiveringsinstallatie\nzuiveringslasten\nzuiveringsmaatregel\nzuiveringsmethode\nzuiveringsoperatie\nzuiveringsproces\nzuiveringsschap\nzuiveringsslib\nzuiveringsstation\nzuiveringssysteem\nzuiveringstablet\nzuiveringstechnieken\nzuiveringszout\nzulk\nzulke\nzulks\nzulle\nzullen\nzult\nzulte\nzulten\nzultspek\nzundgat\nzuren\nzurig\nzurigheid\nzuring\nzuringzout\nzuringzuur\nzurkel\nzus\nzuster\nzuster-overste\nzusterbedrijf\nzustergemeente\nzusterhuis\nzusterinstelling\nzusterliefde\nzusterlijk\nzustermaatschappij\nzusteronderneming\nzusterorganisatie\nzusterpaar\nzusterpartij\nzusterschap\nzusterschip\nzusterschool\nzusterstad\nzustervereniging\nzusterzender\nzuur\nzuurachtig\nzuurbal\nzuurbrand\nzuurdeeg\nzuurder\nzuurdesem\nzuurdesembrood\nzuurgehalte\nzuurgraad\nzuurheid\nzuurhoudend\nzuurkast\nzuurkijker\nzuurkool\nzuurkraam\nzuurmuil\nzuurmuilen\nzuurpruim\nzuurpruimen\nzuurrest\nzuursel\nzuurstel\nzuurstof\nzuurstofapparaat\nzuurstofapparatuur\nzuurstofarm\nzuurstofatoom\nzuurstofcilinder\nzuurstofconcentratie\nzuurstoffles\nzuurstofgebrek\nzuurstofgehalte\nzuurstofloos\nzuurstofmasker\nzuurstofopname\nzuurstofpomp\nzuurstofrijk\nzuurstoftank\nzuurstoftekort\nzuurstoftent\nzuurstoftoevoer\nzuurstofverbinding\nzuurstofverbruik\nzuurstofvoorziening\nzuurstok\nzuurstokkleur\nzuurstokkleurig\nzuurtegraad\nzuurtje\nzuurtjes\nzuurvast\nzuurverdiend\nzuurvrij\nzuurzak\nzuurzakboom\nzuurzoet\nzwaai\nzwaaibeweging\nzwaaien\nzwaaigat\nzwaaihaak\nzwaaiing\nzwaaikom\nzwaailicht\nzwaan\nzwaanshals\nzwaantje\nzwaar\nzwaarbeladen\nzwaarbelast\nzwaarbeproefd\nzwaarbeveiligd\nzwaarbevochten\nzwaarbewaakt\nzwaarbewapend\nzwaarbewolkt\nzwaard\nzwaarddans\nzwaarden\nzwaardleen\nzwaardlelie\nzwaardrecht\nzwaardridder\nzwaardslag\nzwaardvechten\nzwaardvechter\nzwaardvis\nzwaardvormig\nzwaardwalvis\nzwaargebouwd\nzwaargeschapen\nzwaargewapend\nzwaargewicht\nzwaargewond\nzwaargewonde\nzwaarheid\nzwaarhoofd\nzwaarhoofdig\nzwaarhoofdigheid\nzwaarlijvig\nzwaarlijvigheid\nzwaarmoedig\nzwaarmoedigheid\nzwaarstwegend\nzwaarte\nzwaartekracht\nzwaartekrachtsveld\nzwaartelijn\nzwaartepunt\nzwaartillend\nzwaarwaterreactor\nzwaarwegend\nzwaarweltergewicht\nzwaarwichtig\nzwaarwichtigheid\nzwabber\nzwabberen\nzwachtel\nzwachtelen\nzwad\nzwadder\nzwadderig\nzwade\nzwager\nzwagerin\nzwagerschap\nzwak\nzwakalcoholisch\nzwakbegaafd\nzwakbegaafde\nzwakbegaafden\nzwakbegaafdheid\nzwakheid\nzwakhoofd\nzwakhoofdig\nzwakjes\nzwakkelijk\nzwakkeling\nzwakkelinge\nzwakken\nzwakker\nzwakstroom\nzwakstroominstallatie\nzwakte\nzwakteanalyse\nzwaktebod\nzwakzinnig\nzwakzinnige\nzwakzinnigeninrichting\nzwakzinnigenzorg\nzwakzinnigheid\nzwalken\nzwalker\nzwalp\nzwalpen\nzwaluw\nzwaluwennest\nzwaluwnest\nzwaluwstaart\nzwaluwstaarten\nzwaluwstaartvormig\nzwaluwtong\nzwam\nzwammen\nzwammerig\nzwammetje\nzwammig\nzwamneus\nzwamp\nzwanenbloem\nzwanenbrood\nzwanendons\nzwanenei\nzwanenhals\nzwanenkop\nzwanenmossel\nzwanennest\nzwanenveer\nzwanenzang\nzwanger\nzwangere\nzwangerschap\nzwangerschapsafbreking\nzwangerschapsduur\nzwangerschapsgymnastiek\nzwangerschapsklachten\nzwangerschapsmasker\nzwangerschapsonderbreking\nzwangerschapsperiode\nzwangerschapstest\nzwangerschapsuitkering\nzwangerschapsvergiftiging\nzwangerschapsverlof\nzwans\nzwanzen\nzware\nzwarigheid\nzwart\nzwart geld\nzwart-op-wit\nzwart-wit\nzwart-witbeeld\nzwart-witfilm\nzwart-witfoto\nzwart-witfotografie\nzwart-wittegenstelling\nzwart-wittelevisie\nzwartachtig\nzwartblaar\nzwartboek\nzwartbont\nzwartbruin\nzwartdag\nzwartdruk\nzwarte\nzwartekousenkerk\nzwarten\nzwartepiet\nzwartepieten\nzwartepietenspel\nzwartfluwelen\nzwartgallig\nzwartgalligheid\nzwartgeblakerd\nzwartgekleed\nzwartgelakt\nzwartgeldaffaire\nzwartgeldcircuit\nzwartgerokt\nzwartgevlekt\nzwartgrijs\nzwarthandel\nzwarthandelaar\nzwartharig\nzwartharige\nzwartheid\nzwarthemd\nzwartig\nzwartigheid\nzwarting\nzwartje\nzwartkijken\nzwartkijker\nzwartkijkerij\nzwartkop\nzwartkoren\nzwartkrijttekening\nzwartlakens\nzwartleren\nzwartmaken\nzwartmakerij\nzwartmaking\nzwartogig\nzwartoog\nzwartrijden\nzwartrijder\nzwartrok\nzwartsel\nzwartspeler\nzwartwerken\nzwartwerker\nzwartzijden\nzwatelen\nzwavel\nzwavelachtig\nzwavelarm\nzwavelbad\nzwavelbloem\nzwavelbron\nzwaveldamp\nzwaveldioxide\nzwavelen\nzwavelerts\nzwavelgeel\nzwavelgehalte\nzwavelhoudend\nzwavelig\nzwavelijzer\nzwavelkoolstof\nzwavellucht\nzwavelregen\nzwavelstok\nzwavelstokje\nzwaveluitstoot\nzwavelverbinding\nzwavelwaterstof\nzwavelzuur\nzweden\nzweefbaan\nzweefbrug\nzweefclub\nzweefduik\nzweefmolen\nzweefrek\nzweefspoor\nzweefsport\nzweeftoestel\nzweeftrein\nzweefvlieg\nzweefvliegen\nzweefvlieger\nzweefvliegtuig\nzweefvlucht\nzweeg\nzweem\nzweep\nzweepdiertje\nzweepdiertjes\nzweepdraad\nzweepkoker\nzweeppartij\nzweepslag\nzweeptol\nzweeptouw\nzweer\nzweers\nzweet\nzweetafscheiding\nzweetbad\nzweetband\nzweetdoek\nzweetdrank\nzweetdrijvend\nzweetdruppel\nzweetgeur\nzweethanden\nzweetkamer\nzweetkamertje\nzweetklier\nzweetkoorts\nzweetkuur\nzweetlucht\nzweetmiddel\nzweetplek\nzweetpoeder\nzweetproductie\nzweetvoeten\nzweetvos\nzwegen\nzwei\nzweien\nzwelen\nzwelg\nzwelgen\nzwelger\nzwelgerij\nzwelgpartij\nzwelkast\nzwellen\nzwellichaam\nzwelling\nzwemabonnement\nzwembaan\nzwembad\nzwembadpas\nzwembadpersoneel\nzwembadwater\nzwemband\nzwembandjes\nzwembassin\nzwembeweging\nzwemblaas\nzwemboei\nzwembond\nzwembroek\nzwemcarrière\nzwemclub\nzwemcoach\nzwemdiploma\nzwemdok\nzwemen\nzwemfederatie\nzwemgelegenheid\nzwemgordel\nzweminrichting\nzweminstructeur\nzwemkaart\nzwemkampioen\nzwemkampioene\nzwemkleding\nzwemkostuum\nzwemkunst\nzwemleraar\nzwemles\nzwemmen\nzwemmer\nzwemmerig\nzwemmerseczeem\nzwemoefening\nzwemonderwijs\nzwemonderwijzer\nzwempak\nzwemparadijs\nzwempartij\nzwemplaats\nzwemploeg\nzwempoot\nzwemrecord\nzwemschool\nzwemselectie\nzwemslag\nzwemsport\nzwemstadion\nzwemster\nzwemtalent\nzwemtoernooi\nzwemtop\nzwemtrainer\nzwemverbod\nzwemvereniging\nzwemvest\nzwemvierdaagse\nzwemvlies\nzwemvoet\nzwemvogel\nzwemwater\nzwemwaterkwaliteit\nzwemwedstrijd\nzwemwereld\nzwendel\nzwendelaar\nzwendelaarster\nzwendelarij\nzwendelen\nzwendelpraktijken\nzwengel\nzwengelboor\nzwengelen\nzwengelpomp\nzwenghout\nzwenk\nzwenkas\nzwenken\nzwenkgras\nzwenking\nzwenkwiel\nzwepen\nzweren\nzwerfafval\nzwerfauto\nzwerfblok\nzwerfhond\nzwerfjongere\nzwerfkat\nzwerfkei\nzwerfkind\nzwerflandbouw\nzwerfsteen\nzwerfster\nzwerftocht\nzwerfvogel\nzwerfvuil\nzwerfvuilactie\nzwerfziek\nzwerk\nzwerm\nzwermen\nzwermer\nzwermpot\nzwermtijd\nzwerveling\nzwervelinge\nzwerven\nzwerver\nzwerversbestaan\nzwerversleven\nzweten\nzweterig\nzwetsen\nzwetserij\nzweven\nzwevend\nzwever\nzweverig\nzweverigheid\nzweving\nzwezerik\nzwichten\nzwichtstelling\nzwiep\nzwiepen\nzwieper\nzwieping\nzwiepplank\nzwier\nzwierbol\nzwierbollen\nzwieren\nzwierf\nzwierig\nzwierigheid\nzwierven\nzwijgen\nzwijger\nzwijggeld\nzwijgplicht\nzwijgrecht\nzwijgzaam\nzwijgzaamheid\nzwijmel\nzwijmelbeker\nzwijmeldronken\nzwijmelen\nzwijmeling\nzwijmelroes\nzwijmen\nzwijn\nzwijnachtig\nzwijnen\nzwijnenaard\nzwijnenboel\nzwijnenhoeder\nzwijnenjacht\nzwijnenkeet\nzwijnenkost\nzwijnenkot\nzwijnenpan\nzwijnenstal\nzwijnenvlees\nzwijnerij\nzwijnjak\nzwijnshoofd\nzwijnskop\nzwijntje\nzwijntjesjager\nzwik\nzwikboor\nzwikhout\nzwikken\nzwilk\nzwilwrat\nzwin\nzwing\nzwingelaar\nzwingelen\nzwingelmolen\nzwingelspaan\nzwirrelen\nzwoegen\nzwoeger\nzwoel\nzwoelheid\nzwoelte\nzwoerd\nzwoor\nzwoord\nzymose\nzèta\nà\nà charge\nà contrecoeur\nà la carte\nà la minute\nà propos\néchéance\nélégance\néminence grise\néén\nöre\nüberhaupt\nübermensch\nAziatische\nIsraëlische\nSyrische\naangebodene\nallernaaste\nbetekenisgevend\nbloedzuiverend\nbreedlachend\ncacteeën\nconcurrentievervalsend\ngeclusterd\ngeherformuleerd\ngeschapene\ngestijfd\nhoede\ningeborene\nkeppeltje\nkraaienpootjes\nmevrouwen\nmiepen\nminderbegaafde\nnaturen\nongerede\npresentje\nprijsopdrijvend\nstopfunctie\ntijdbesparend\ntoegeëigend\ntoeriste\nvakoverschrijdend\nverhevene\nzonneslag\nCypriotische\nemancipatiegedachte\neigendomspapieren\nGeorgische\nJemenitische\nJoegoslavische\nKaapverdische\nKirgizische\nMacedonische\nMoldavische\nMongolische\nNamibische\nSaudi-Arabische\nSaudische\nSomalische\nTunesische\nbinnenzeilen\nhuwelijks\nomkaderd\nDuitssprekende\nBaskische\nzilvervisje\nspeculaaskruiden\ntwintigvoudige\nboekenweekessay\nboekenweekgeschenk\nNieuw-Castilië\nCO₂-heffing\nCO₂-probleem\nnewtoniaans\nrabelaisiaans\ntolstojaans\nwagneriaans\nWest-Germaans\nNoord-Germaans\nOost-Germaans\nspachtelputz\nontkroesd\nvergrauwd\nbemeesterd\ncyclecrossen\ncyclocrossen\nlazerstralen\nmishoord\nontvloeid\nvnw.\nww.\n't\naprilgrap\nBrugman\nbups\nfielterig\nJehova\nmoede\npappenheimers\nsenaat\nwillens\nKaapvaarder\nvoorplat\nDuitsgezind\nOranjeselectie\nMorgenster\nGreenwichtijd\nD-trein\nOranjespeler\nOranje-international\nV-hals\nMoskovisch\nV-riem\npro-Deoadvocaat\nOranjezon\nMuiderkring\npro-Servisch\nB-status\nRuslandkenner\nDuitssprekend\nOpperlands\npro-Iraaks\nOud-Romeins\nBq\nVlaamstalig\nRuslandkunde\nOranjeteam\nburgermansfatsoen\nmuziekhistorisch\ngymnastiekleraar\ntwintigvoud\nrustsignaal\npotmeter\nbuurtwacht\nVietnamsyndroom\nmuurpeper\nkooldioxide-uitstoot\nvoorzuiveren\nopruimingscommando\nvijflandentoernooi\nmortiergeschut\nvioolsolo\nruwstaal\nhulppolitie\nouwelui\ntweeëndertigjarig\nburgerpolitie\ndwangneurotisch\ngootsteenkastje\ntypescript\nmoralisering\nburgemeesterskamer\nturkoloog\nbuitengewonelastenregeling\nopenluchtrecreatiebeleid\nbrontaal\ndrugbende\nvleessnijmachine\ndorpsonderwijzer\ndroogkoken\nopvolgmelk\ndrempelkosten\nruimterecht\ngroeitijd\nvideoaanbod\nbroodwinkel\ngrondhuur\nbuitendruk\nvluchtelingenbureau\nkredieturen\ngyros\ntussenkamer\nkoopopdracht\nwurgseks\ndagtekst\nvoedselvlucht\nvleesmachine\ndossierdiploma\nazijnpisser\nantikraak\nvoodoo-economie\nvoorzitter-directeur\naardgeschiedenis\nachtertoneel\naha-effect\nalfa-effect\nfondueset\nauto-import\nautostuur\nbabyuitzet\nbandgeheugen\nditjes-en-datjes\nbètaverval\nbinnenwacht\nbiofruit\nboorpijp\nbootrace\nbrandraam\ndemocratisch-liberaal\ndierenhotel\nDNA-lid\nDNA-voorzitter\ndubbelzout\neuro-enthousiasme\nfototherapie\nvliegtuigenfabriek\nmontage-instructie\nsteakhouse\nSovjet-socialisme\nSranantongo\nSRD\nSchengenakkoord\nshutter\nSlotfeest\nslagerswinkel\nstokpop\nSurinaams-Nederlands\nSecretaressedag\nterugtrekkingsschema\nsushibar\nsubstructuur\nstatensysteem\nlevensector\nservicesector\nstortgeld\nsporttaal\nobjecttaal\nschoolclub\nsuperclub\nmaatvis\nijswijn\nstartvergunning\nsubsidiepolitiek\nradiomuziek\nmargetheater\noerbeginsel\nhardgroen\nzijvak\nreclameomzet\njeugdconcert\nveldtelefoon\nonderspanning\nnachtlogies\nwijnpokken\nzeebewoner\ntaaldaad\nijsbox\ntopbridge\nAlpijns\nHelhond\nInwijdingsfeest\npaars-rood\nVopo\nvos-cursus\ntechniekgeschiedenis\nstudententoneel\nglasstralen\nsummerschool\nkoffie-ijs\nloodmenie\nautowegenvignet\nhandklavier\ntheateraffiche\nzelftankstation\nzaalkorfbal\ntaalvariatie\nstudentenzwangerschap\noergesteente\ndeeltijdberoepsonderwijs\nhoofdkapitein\ndobbelsteentje\nvlinderstrikje\nslacentrifuge\nganzendons\nkrulset\nnepantiek\nmassa-immigratie\ntemperatuursverandering\ngraanboer\nhoofdpijnwijn\nschiller\nverslagweek\nexercitieterrein\nkrijtgrond\nmensenziel\nmuziekkritiek\ntrapezeartiest\naerobiccen\nchargen\ncorveeën\ncoupen\nfrisbeeën\ngeografe\nineenduiken\npartyen\nyahtzeeën\nzaketui\nvoorwerpglas\northodox-communistisch\nMokums\nelftalspeler\nlasergamen\nMerovingisch\ntoerrijder\ndoorzuipen\nftp'en\ngodgelijk\nultrasonisch\nijsracen\ncoupplan\npasbenoemd\nkiteboarden\nGriekstalig\npro-Iraans\nomkieperen\nwegritsen\ntaboeloos\nBrits-Indisch\nskimonitor\nzakker\nTurkssprekend\ntoerwagen\nOudfries\nuitwandelen\nopgraver\nOudnoors\nTurkstalig\nmaagpatiënt\njeukbult\nbijplakken\nB-52-bommenwerper\nGroot-Nederlands\nschriftloos\ntrainersdiploma\nRussischtalig\nvakantiedia\npolaroidfoto\nbuurtwachter\nkinderfoto\nscènewisseling\nkameelachtige\nburrito\nduinplant\ngeweersalvo\norganisatiepatroon\nprijsconcessie\neivlies\nopeenklemmen\nromusha\nschoonmama\nsteenformatie\npreiring\npropaganda-uitzending\nburgeres\ncellenhuis\nvisgat\nstandsuitgave\nskeletdeel\nSpaanssprekend\nlomschool\nijsboer\nwagenveer\nzoutlozing\nvolleybalcompetitie\nveellezer\ngesmak\nsublimering\nprestigeverlies\npepermuntthee\nkoudwaterkraan\nbadkamerdeur\nstofzuigerslang\nvulkaanlandschap\ngillerig\nrondzoemen\npagina-indeling\nogenpotlood\nbierschuim\nstuwdamproject\nfaxmachine\nstandgenoot\nfilmapparaat\nhelblond\nstiekempjes\nouweheer\nleerling-verpleegster\nkinderopvoeding\nafrikanisering\ngedender\npenicilline-injectie\ndromerigheid\nkloostertafel\nkleefrijst\nhoela\nbenzineaansteker\nkikkerproef\nmangroveboom\ngejongleer\ngeklauter\ngerijm\ngeplaag\ngerasp\ngeram\ngepronk\ngedrentel\ngespook\ngeneuk\ngemieter\ngebal\ngefleem\ngebeuzel\ngevlag\ngetover\ngetintel\ngeveeg\nmuurkast\nonliterair\nmarinecommandant\ngeroer\ngescandeer\ngeschilder\ngesluip\ngezwem\nmilitie-eenheid\nlpg-tank\nschooltandarts\nsiersteek\nproefvertaling\nschildpadachtig\nspekzool\nrasgenoot\ndibbes\noptie-index\nkomijnpoeder\npusher\nonjoods\nonvrolijk\nonverwisselbaar\nonuitgeslapen\nonrechtzinnig\nonkinderlijk\nongelaagd\ncacaoboer\ncadeau-idee\ntrekkingsdatum\nonkerks\nondeugdzaam\nonharmonisch\nonbedenkelijk\nonfunctioneel\nonbehoedzaam\nonbekoorlijk\nonartistiek\nraku\nwitbiertje\nzieligjes\nvetkrijtje\nsponsrubber\ngeestesmerk\nwelzijnskoepel\nondergevel\nschoenpoetsen\nappelwang\nbinnenklimmen\nbadkamertegel\nsmeedstalen\nprozastuk\nbokkenpootje\nbiedermeiertje\nbaardstoppel\nonverrijkt\nwijndistrict\nongeaccepteerd\nongehonoreerd\nuiteten\nsympathiebetuiging\nonverheeld\nongezoet\nmeerkoppig\nongeuit\nonbeplant\nongekerstend\nlangverbeid\nkopijvel\ncompactdiscspeler\nomhoogkijken\nschuifbaar\nrichtbaar\nfiltreerbaar\nformuleerbaar\nhervormbaar\nsoloseks\nwurger\nondoofbaar\nonverwoordbaar\nonbeklimbaar\nfopper\nzeper\ninwit\nhaakster\nkwaker\nrijmer\nherschrijver\noverlegger\npeinzer\npingponger\nverfilmer\nsmakker\nverschrikker\nvoorflap\nvoordoek\nonbegaan\nonbegraven\nongedragen\nachtersteek\nonbedwongen\nVermeylenfonds\nvolkskracht\nongedoubleerd\nlakleren\nhartstimulator\ninklaarder\nSudeten-Duitser\nhefboomarm\nhoutspaan\nvloeiwei\nvuurgeleidingssysteem\nperenhouten\ndennenhouten\nstripteaseshow\nvanilleyoghurt\nnakie\ngodver\nhoedna\nginter\nviskom\npothelm\nsurimi\nrotding\nraspsel\nwablief\nwijnzak\nslavink\ntalliet\nvolgbod\nbasmati\ndamlijn\ndrukpan\ngifbelt\nereloge\nkuurbad\nhominide\ndamsport\nbijtgaar\nonafheid\noogkamer\npislucht\nringarts\ntweezits\ntrekzalf\nmaakkans\nzeskaart\nuierzalf\nslagwoord\nyenkoers\ntroefslag\nsynodelid\ntroefheer\nvlizotrap\nvolkspark\nzenuwtrek\nafwasteil\nbaroktuin\nclownsduo\ndagteller\ndoopkaars\ngipskruid\nhandmixer\nkijksport\njetstream\nkriegelig\noperakoor\npionwinst\nwaslokaal\nzelfbesef\ntroefvrouw\ntroefkleur\nautosloper\ndienschaal\ncognacglas\ndiergedrag\nglitterpak\nhuisleraar\nhuismuziek\njeetjemina\nknekelveld\nkraakwacht\nlevensgang\npastasoort\nomknelling\nnylonkoord\nschaatstop\nroebelzone\nsamenstand\nrandschijf\nsonnetvorm\nslaapwagon\nsquashbond\nsporttenue\nveegdienst\nvlaggenist\nslijmbeurs\nzevenkaart\nzielsgraag\nwaanwereld\nsetsysteem\nbankdrukken\nadvieskoers\nbordreclame\nbiedverloop\ncricketclub\ncontrafagot\ndwarsigheid\nenkelspeler\ngastheercel\nherfstlucht\njongensband\nkioskhouder\nluipaardvel\nmeccanodoos\nnoodkabinet\nnovemberdag\nlooningreep\nparenbridge\npaardsprong\nprofhonkbal\npariastatus\nprozabundel\nroebelkoers\nspijkergoed\nspreekstijl\nsteelaanzet\npotjandorie\nvenkelgroen\nvalbeweging\ntafeldekken\npervertering\npoencontract\nschaatsplank\nschoonlikken\nlegerkistjes\naramidevezel\nbondssponsor\nbuitenvelder\nafbladdering\nbootsnelheid\ndaggeldrente\ngembersiroop\nfactiestrijd\ngenafwijking\ngetverderrie\nhandgeschept\nhamsterwoede\nklavierleeuw\nkijkersgunst\nleidersstijl\nlombardrente\nlintmacaroni\nkunstlederen\nmammoetorder\nlongslagader\nmessenverbod\nsigarenroker\nslobberbroek\nsnookersport\nspionagezaak\nvuurwapenwet\nverspringbak\nzeetankvaart\nrichtingsroer\nzuurstokroze\nschrijfarbeid\nschoppenkleur\nspelerslounge\nsprongservice\nsterspeelster\nsymboolfiguur\ntravestierol\nafvoertroepen\nmachtsstreven\nboekbespreker\ndagboekachtig\nemissieleider\ngruwelkabinet\ngymnasiumtijd\nhulppredikant\nkalkafzetting\nlanspuntslang\nmosterdpoeder\nmilitarysport\nolifantenhuid\npapierprikker\npocketuitgave\nparentoernooi\nonderduiktijd\nsportofficial\ntribuneplaats\nwaarborgstaat\ntoetsenspeler\nzeesleepvaart\nvoortsudderen\nturninternaat\nverschoolsing\nzijspanklasse\nrepertoirekeus\nbankierswereld\nbadmintonploeg\nrechterdijbeen\nbuurtpreventie\ndiscontotarief\nbauxietbedrijf\nfrankeerwaarde\ngeldhervorming\nfinlandisering\ngoedgeschreven\ngriezelkabinet\nhypnotherapeut\nkampioenspoule\nkrulpeterselie\nmimegezelschap\nparenwedstrijd\nministerstafel\ntarievenstrijd\ntoneeltraditie\nstemmingsindex\nconjunctuurtest\nbeleningstarief\nbadmintonwereld\namerikanisering\nexpressiemiddel\nbevindelijkheid\nhaatdragendheid\nmagnetronschaal\nmijnwerkersbond\nmiljoenenoplage\nonwerkelijkheid\nopwaardeerkaart\noverbewinkeling\nonderwereldbaas\nplichtmatigheid\nschilderslinnen\nsprintkernploeg\ntafeltennisster\nstrontvervelend\nwagenbegeleider\nweerstandsgrens\nevolutiebiologie\nfantasieloosheid\ngebitsbeschermer\ngarnalencocktail\nterugspeelregel\nkinderboekwinkel\ngepsychologiseer\nniervergiftiging\navontuurlijkheid\nbenedenbuurvrouw\ndemonstratiezaal\nelleboogblessure\nelftalbegeleider\nderdedivisieclub\nespressoapparaat\npionnenstructuur\npaleoantropoloog\nsovjetcommunisme\ntafeltennissport\nvideotheekhouder\nwerklozenproject\nverpakkingsstaal\nverwesterlijking\nbadmintontoernooi\nbadmintonselectie\ndiamantnijverheid\nassemblagebedrijf\nimmigrantenbeleid\npodiumpresentatie\ntrainersopleiding\nprofileringsdrift\ntriomfantelijkheid\nappartementenhotel\nassociatievermogen\nbloedgroepenstrijd\ncommissionairshuis\ncontingentsperiode\ngeschiedbeoefening\ninfraroodsatelliet\nmonsteroverwinning\nintroductiebericht\npopulatiedichtheid\nstudentenpredikant\ntoneelschrijfkunst\ntijdschriftengroep\ntoneelgeschiedenis\ncarpoolwisselstrook\ncomputerbeeldscherm\ndissidentenbeweging\ncontingentsverbruik\nburgemeesterswoning\nopvolgingsprocedure\nranglijstaanvoerder\nsupermarktpersoneel\nquarantainepolitiek\nzwartgeldpraktijken\ntwaalftoonstechniek\nsysteemherstel\ngeheimzinnigdoenerij\npolarisatiestrategie\nstrafrechthervorming\nbewoningsgeschiedenis\ncommissionairsbedrijf\nnoteringsovereenkomst\nburgerrechtenwetgeving\nafschrikkingsevenwicht\nvoorlichtingsambtenaar\nlunchpauzevoorstelling\nverwetenschappelijking\nspeedbootrace\nkersenbonbon\nklappertjespistool\nkruiskop\nluizenei\nmaanzaadbrood\ntraankanaal\nventieldop\nvingerplant\nvlaggenbrief\nvloerbrood\natopie\ndysartrie\nneusspiegel\nwervelgewricht\nzweetspoor\nmotorkruiser\nschroefwinding\nuithoesten\ntrekrichting\narrestantenwagen\narbeidsleer\nbestuurswijziging\naannemingsmaatschappij\nafbraakbuurt\nherexamineren\ndoctoraalbul\ndrugmaffia\ndrugrunner\neffectenkredietinstelling\nexhumatie\nafloopmaand\ngelegenheidsdrinker\nkompaskoers\ngoedschrift\nhemdblouse\nheroïnespuit\nhuurgewenningsbijdrage\nimitatieleer\nteakdek\nkiesbevoegd\nkleefmijn\nkredietverzekeringsmaatschappij\nontstekingsverschijnselen\nmolenvliegtuig\nmorfineverslaving\nzakenpand\nzandwinplas\nzeeafzetting\nnevenbedoeling\nheiligdomsvaart\nsorrycultuur\nkroonrand\nchanoekafeest\npistache-ijs\nwaldkornbrood\nnevelflarden\noncogen\nbuurhuis\nvolksdansfeest\npingo\ndroogkokend\netstechniek\nSyrisch-orthodox\nall-inpakket\nski-instructeur\nfietscrossen\nvleugeloppervlak\nkersenontpitter\nsaturatie\nspelregelwijziging\nvijfgangendiner\nkeepersvak\nrotsplateau\nmotortoerental\nbegeleidingsorkest\nschimmengevecht\nbinnenrijm\nmuziekbeoefening\noppositiekamp\neilandrepubliek\nindustriearbeider\ndeelraadbestuur\nrupsje-nooit-genoeg\npocketcomputer\ncelstofwisseling\ncelplasma\nmaag-darmklachten\nslavenarmband\nverpakkingskarton\nFranglais\nsyndiceren\nAnansi\nonderwatertunnel\nschoolfrans\nrugsproeier\nmelkoverschot\nkoningspalm\ntolstation\ntijmblaadje\ngruisdeeltje\ncomposttoilet\nmaïsgluten\nstraatnamenboek\nzatterik\nservice-volleyspel\nbewolkingsgraad\nkleuterprogramma\npuzzelwoordenboek\nbarokconcert\nreteslim\nreuzemooi\nreuzeklein\nberenhol\nreuzemop\ngriezeleffect\nRIZIV\nhaarkrul\nhongerlijden\nhoutvezelplaat\nkamerwand\nkleermakerskrijt\nloonslip\noverhoopschieten\nplatmaken\nsmiespelen\nspawater\nstucwerker\nvensterkozijn\nverdonkeremaning\nburlen\nduifgrijs\nochtenddauw\nduivelsdrek\nfiguurdans\nkarakterbeschrijving\nvliegvermogen\ntransliteratie\ninstudering\nhoutgraveur\ntroepiaal\nstuurraket\nstortgoot\nartillerieduel\nstudentenjargon\nnaziconcentratiekamp\nhemotoxisch\nfosfaatwinning\nslakkenwouw\npotloodstreep\nliefdeslyriek\noud-Vlaams\npalissadeparenchym\nsoortenarm\nmolrat\npitvis\noppergerechtshof\ndodenboek\nServo-Kroatisch\nSamisch\ngeschutsopstelling\nlongvlies\nzitvolleybal\nhartneurose\nnazidom\npapiergebrek\nU-bahn\nballroomdans\nOstrogotisch\nOstrogoten\nlymeziekte\nzeepschuim\naspergersyndroom\ndaglengte\nshanty\ndeuteriumkern\npurperhart\nkwartcirkel\nafritsbroek\nthermoharder\nSranan\nbegrafenisvereniging\ntefilin\nmezoeza\nItalisch\nbastaardhond\nsektevorming\nJodenvraagstuk\nRijndal\nslaaprijtuig\nenergiespectrum\ngiethars\nwatertrappen\nkoninginnenkruid\nsplijtingsproces\nnetvormig\nvolkspetitionnement\nteleonomie\nKZ-syndroom\npH-neutraal\nkolenveld\ndekzand\nsymbolisering\ndienstweigeren\ndrukkersvak\nredenaarskunst\nmikwe\nCornisch\nwrijvingsloos\ninfanteriesoldaat\nnijlkrokodil\ntabtoets\npianobouwer\nhydroxide-ion\ngrootlint\nkoolzuursneeuw\nzanger-songwriter\npriorin\nluitspel\nachterlichaam\nmaandnaam\noranjekoek\nhurling\nontbindingsproces\nhaardstedengeld\nmagmatisch\ncupwinnaar\nNederlandkunde\nLadino\nautoresponder\nparaffineolie\nkunstskibaan\nkronendak\ntoeschouwerscapaciteit\nleerbewerking\nopbleken\ncaravanstalling\nkloostercongregatie\nrasterpatroon\nmennonitisch\nwaf\naggregaatstoestand\ncabrioletkap\nzandsteenlaag\nprivaatdocentschap\nboswachtershuis\nginderachter\njobcenter\nwolkenmassa\nfoezelig\nklankidioom\nsopraansolo\nbloedvorming\ngeiligheid\nLaagland-Schots\ngereedschapsstaal\nvoorvak\nNumeri\nklankgat\ntubifex\nwaarnemingsveld\nneusriem\novertrekpapier\nvarkensleren\nsemiet\npsychologiestudie\nzonnevlecht\nneusgang\nretroflexie\nsorteersysteem\nskiwas\nschuldvermenging\ngeslachtskunde\nwijnkoop\nbimetaal\nfonduestel\nhiking\nhealer\nsekslingerie\nsodeflikker\nsnijapparaat\nkuurhotel\nspiltrap\nfietskamperen\noasestad\nontdekkingsreizigster\nstijlbesef\npaginacijfer\nmidrasj\nmedresse\narmoedje\ngenadiglijk\nschoolvorming\nuitklinken\nvoordeurbel\nzomertortel\ngrondkapitaal\nbuuf\ntijdspiegel\novenhandschoen\npaardrijbroek\nzonneallergie\nmethylchloride\nthiofeen\nvinylgroep\nonsamendrukbaar\nloodcarbonaat\nafkoelsnelheid\nbrabo\npapierdun\nhoboconcert\nkaraktervastheid\nrijmerij\nnargileh\nreceptenbundel\ntransportkist\nRomereis\nroerstok\nneuslijn\nstootsgewijs\nfilmkunde\nschildersoog\nzwerflust\nschimpschrift\nredactieadres\nPasjtoe\nstakkerig\nbeeldenrijk\nkokosbrood\nregisseurstheater\ntoneelschoolleerling\nkorianderpoeder\nsuggestiviteit\ngroei-industrie\ncompositietechniek\nnotatiebiljet\nschoolgebruik\nuniformbroek\nsnabbel\nhaarkroon\npaardenlul\nafbakbrood\ngrachtenwater\nkweeksel\nvarenachtig\nineenvouwen\nronddienen\nrondwentelen\noverroeien\novertrouwen\nopstikken\nomdonderen\nomdwalen\nomflikkeren\nomkukelen\nomnaaien\nomtrappen\nomverslaan\nomverschieten\ndamessjaal\nnabranden\nnavullen\nnabloeden\ngenitief-s\ninranselen\ninzijpelen\ndoorakkeren\ndoorkammen\ndoorrouteren\ndoorsmeulen\nbijgooien\nafbietsen\nachteruitsteken\nhoutrasp\nphilibertspant\nvliesgevel\nlandnaam\nlagerhand\nafloopdag\nkiesnummer\nnatuurzij\nmishoren\nkeerwoord\nluchtmeter\ngeschiedeniswetenschap\nmethodestrijd\nbuurtbezoek\nluchtslag\nmelklijst\nlaterzaak\ndansmaat\ngelijkkomen\ngeheugenschijf\nkoopziekte\nmuziekvermogen\nluchtbus\nbijverlichting\nmeiregen\nboordinstrument\nmistongeluk\nbreedteniveau\nhandexemplaar\neindindruk\neeuwhelft\nkunstvlees\nhotellift\ngenrevoorstelling\nboekwezen\neuroverpakking\nautofusie\nmaatanalyse\nperiodeoverzicht\nwassoort\nstraatdeur\ntitelwoord\nsecondespel\nvliegtuigshow\nseksbusiness\nvoetbalpas\nreputatiemoord\nzetbreedte\nschooleditie\npolitiewacht\nwaspapier\nvalutaoorlog\nshowmusical\nvoorraadwinst\nwachtverbod\nwereldbehoefte\ntelevisiemagazine\ntaalvergelijking\npostpositie\nsituatieanalyse\nafgiftekoers\nagiostock\nliquiditeitenmassa\nbolivar\ninterventiekoers\njobber\nresultatenontwikkeling\nsaguaro\ngoedleggen\nrechtzitten\nversafdeling\npersonenstrijd\naftershavelotion\nrolroer\nanlaut\navondmens\nbepruiken\nbeslissingspartij\nbezitsverhouding\ncentsprent\nformicatafel\nkalmeringstablet\nkoereiger\nkolensjouwer\nkrielaardappel\nliederenrecital\nlijkvlek\nmaanreiziger\nmaatwisseling\nrekoefening\nsabotagepoging\nscoringsmogelijkheid\nsectiebestuurslid\nside-out\nstationsoverkapping\nstraalverkeersvliegtuig\nsysteembouwer\nvalutaspeculant\nveldbioloog\nwolfsmelkachtig\nzomerschoen\nbewegingskunst\nfly-drive\nwoonkuil\nplofklank\nhurksprong\nkunstkop\nsteilstarter\nnarcotica-agent\nturbopropvliegtuig\nloodverf\nherscholingsprogramma\nmastiff\nceldodend\nobligatiegroeifonds\nmegadosis\ngeslachtstest\nbatterijoplader\nonderhandelingstechniek\nstralingsenergie\nkoudwalserij\ngenenonderzoek\nflessenbier\nmerseybeat\ndouanehuisje\npijl-en-boog\nelleboogholte\nplissérok\nstrijk-en-zet\nvleierig\nkapiteinspet\ncannelloni\nbloeiseizoen\nbriefhoofding\nomslagbelasting\nroeiclub\ndégénérée\nochtendmaaltijd\ndungesneden\nventvergunning\nspeculaaspop\nkopvoorn\nsinterklaasinkopen\nbrandname\nsheetfeeder\njournaalverslaggever\nsaloeki\nrevolvertang\nsynergisme\ndartboard\nglo\nperzikhuid\nvormbeheersing\nliefdeservaring\nrotssteen\nafstotelijkheid\nraakheid\neenheidsbeweging\nontspanningsliteratuur\nontronding\nerbovenuit\nréféré\nreaffecteren\nbewustzijnsinhoud\nkenobject\nfijnvoelend\nspiercontractie\nvegaburger\nbasfluit\nmeervouds-s\nderdewereldactivist\npenningske\nvolksverbeelding\nboerenham\nzeebrasem\nvrijkous\nmontignaccen\ngrondoefening\nderdewereldstad\nwaxine\nsubmicroscopisch\nozonafbraak\nwc-deur\n65+-kaart\nvaalgrijs\nzonneglans\nheenleiden\nhalfgeleidermateriaal\nafscheidsscène\nwildviaduct\nsnoeioperatie\nparticipatieakkoord\nvleeskant\nontgraten\npublicrelationsbureau\nmaisakker\nmaiskip\nmaisbrood\nmaisolie\nmaisoogst\nmaisplant\npofmaïs\ntijgerkooi\nvideo-editor\nheupwijdte\nkreukloos\nlaospoeder\nbakkeljauw\nbirambi\npalmsuiker\nonrustgebied\nstinsenplant\nstralingsintensiteit\nruigtekruiden\nkruldistel\ntrechterwerking\nsluitdop\nescalatieladder\nwerkdiscipline\nopnameafdeling\nelevatiehoek\ntoeleveraar\nkransvat\ndecollectivisering\nloodmantel\nkoelmantel\ngeïnvolveerdheid\nontmenging\nconfrontatiemodel\nbesluitvormingscentrum\ngasvulling\nkweekmantel\nkernsplijtingsafval\nschuimblusapparaat\nontluchtingspijp\nscrambler\nstroommeting\nzodenbemester\nspiegeloptiek\nraffinage-industrie\nTonga-eilanden\nmaagvulling\nEuropapolitiek\neenkoppig\ncasinopersoneel\nverrijkingscapaciteit\nsecondopinionarts\ntry-outvoorstelling\nlustbevrediging\nberoepingswerk\nvoetenbad\npukcode\njakamp\nnee-uitslag\nluchtpostpapier\ntandoorikruiden\nviersterrenrestaurant\nexpositieterrein\nbuten\nnettiquette\ndroplul\nschuiflood\nplantenkleed\nverzetshouding\nschijtlijster\nkamerorgel\nplurk\nnewagebeweging\ntitelgedicht\nkweekje\ndommerd\nrotjong\nombuigingsprogramma\nframbozenbier\njongenstijd\ngeschiedfilosofie\nlotsgemeenschap\nkakkies\nafweerhouding\nrelatiestoornis\noerervaring\ngebedsleven\npoepgat\nstrafklas\nethernetkaart\nautocarrosserie\nhaarvatennet\nschaambeharing\nhulpbrug\ndillezaad\nongemalen\ngrafietreactor\npijpbreuk\nmuskusgeur\nzilverbeslag\ncassavebrood\nnegerbevolking\ntolerantiegraad\nwoningdelersregeling\nmasttop\nkleurendriehoek\nspellingsysteem\nrassenkunde\nCoronie\nzeikwijf\nKoranvertaling\nhumanresourcesafdeling\nvolvoering\nkwantumtheorie\nwereldmilieutop\nverbeeldingswereld\nveroveringsdrift\ncellosolo\nhangpuntenbrief\nonvoorstelbaarheid\nmoslimstrijdkrachten\nstrafrechtwetenschap\npietepeuteren\ndouchekraan\nregelgen\nlevenspositie\nzelfwaarneming\nhoogstonwaarschijnlijk\nvechteconomie\nziektewetmaatregel\nzondagsmorgens\nanabolisch\nmicrowave\nsmeernippel\nwijfjesdier\nprachtdag\nL-profiel\nStadsfries\ndialectvorm\nwederoproeping\nsniffen\nhangpuntennota\nijzerrijk\ncalamaris\nvalgewicht\nBelial\ngeboortecontrole\ngevoelsuiting\nAsen\nwaterslak\ndemonopolisering\nluisterbijdrage\npompstang\npuinkegel\ngarnalenvloot\nbedrijfsonzeker\nillegalenprobleem\nbossterfte\nafmeldkaart\nwederga\nwereldluchtvaartmarkt\neconomisch-historisch\nrechtsinstelling\nvadersnaam\ndichtheidsverschil\nloerder\nscheepskiel\nreuzengestalte\nroofstaat\nzoomobjectief\nhaarscheiding\nhalfgek\nik-besef\nzintuiglijkheid\nhotsaus\nhistorisch-sociologisch\nlevenloosheid\nwolvet\nongelukkigheid\nrevisiecommissie\nME-syndroom\ngemakzuchtigheid\nschoonheidservaring\nspiraalstelsel\nschubvormig\nomraming\nkattengejank\ngrammaticaliteit\nBartholomeusnacht\nbodemvochtigheid\netheromroep\ngiftshop\nknersen\nmariaal\ngevoelsontlading\nfusionmuziek\nschuldigheid\npianokwintet\nstrijkersgroep\nzegerijk\nheroïsering\nPalmzondag\nbuitenzintuiglijk\naangepastheid\nSint-Eustachius\ndorpsnotabele\nredplank\nvestingstelsel\ngrandslamcup\nfullcolourdruk\nafluisteraar\nbedpan\nkrankzinnigenwet\nperronkap\nhoofdcommies\ntakelinstallatie\nZ-opleiding\nV-profiel\nuitgeverssector\nSabaan\nniet-rokencoupé\nbevoorradingsvaart\nondercurateleplaatsing\nziektewetplan\ntulpenfestival\nketelpak\nbraamsluiper\ntelevisievraaggesprek\nmoedervel\nfröbelwerk\nrechtshistorie\nziektewetvoorstel\nverzuildheid\nsecularisatieproces\nnormherstel\nduetvorm\nmetaalverf\npersonifiëring\ndefensieportefeuille\nzendingsijver\ngraanexport\ngevechtsafstand\nautotelefoonverkeer\nruïnering\nwakaman\ntaakverdelingsoperatie\npuddingbroodje\npuntbuik\nLongobarden\nkunstenmakerij\nruitentikken\nrussofiel\nbedplank\nstagfok\nalpenlandschap\ngeheugenzwakte\ngatlikken\noppositiepers\ndeemster\nklankvol\nkruisprocessie\nbewegingswet\nschermbloem\ndiluvium\nklepzeiker\nslotmedeklinker\ndiernaam\nluxetelegram\ncilinderwand\nbruinkoolmijn\ntentoonstellingsbezoeker\nverbruikszaal\nmachtsusurpatie\ngevoelsuitbarsting\ngedoogdenstatus\ntegenstroming\nwereldhervormer\novergangstijdperk\nbessenjam\nmachtsaanvaarding\nammoniakgeur\nmaandkalender\nplasma-eiwit\nouderafhankelijkheid\nMisjna\nontkroezen\nmiljoenenleger\nlevensregel\nschuifaf\nmelkreep\nbollebof\nwinstobject\nchef-redactie\nariërverklaring\nchristelijk-nationaal\nsufkop\nkleurencompositie\nVisigoten\nzondagsmiddags\nverfrommeling\nkwaaiig\nkruisrak\ninternationaal-economisch\nKromanti\nnaamloosheid\nnegerbloed\nacme\nrijmdwang\nzabaione\nneerzinken\ncassettesysteem\nbosgezicht\nröntgenfilm\nonderdrukkingsapparaat\naminozuurvolgorde\ntemporaalkwab\nkiteskaten\nallesbeheersend\nvalutawijziging\ntweekwartsmaat\nstaatsraison\nuniformblouse\npolster\ntoonomvang\npsychobabbel\nsurrogaatmoeder\nov-studentenjaarkaart\nfestivalcatalogus\nvluggerd\nwaarnemingsomstandigheden\nkasmoni\nOudindisch\neenklank\nlospraten\nsluikinvoer\nonafweerbaar\ncharterreis\nvolksvoorlichting\nsjorder\ntwaalfmaandsperiode\nauslaut\nkennissociologie\nkunstwol\nams\nSchortelwoensdag\ndakgebint\nnederzetten\nonbeschofterik\nagrobiologisch\nvlinderlicht\nfilisterdom\ngrotestadsleven\nmaagholte\nrassenonderzoek\nbenuttigen\ngrondstoffenvoorraad\ntabakssap\nlompenhandelaar\ndrankkast\nkunstlong\ntijgersprong\nschaduwplant\npoldercultuur\nhalfverheven\nOranjevorst\nnevelsluier\npunthamer\nspatietoets\nremiseaanbod\nheilsgebeuren\nsurrogaatkoffie\ngoudgalon\nsedekah\nBS'er\nmidzwaard\nwaterblaas\nhoekverbinding\nmuziekminnaar\ndriftmatig\ndenationalisering\nwetlook\ningemeen\ngranaatsteen\nhemelteken\nhomecinema\neendagsvlinder\nkennistheoretisch\nopperrabbinaat\nmicrofoonvrees\nrechtermondhoek\npolymeerketen\nKabylen\nvingerlang\ncauteriseren\nkakkerij\npartijachterban\nkontlikken\nacademielid\nscheppingswoord\nstandsbewustzijn\nspaarbanktegoed\ngestemdheid\ntussenmenselijk\ncrochet\nmeettafel\nwinterzonnestilstand\nzinledigheid\nvervoerstoelage\nKwinti\ntraanzak\ncajunkruiden\nsjampie\nsupranaturalisme\nschuifgordijn\nruigpoot\ncitroensaus\nnatuurfilosofisch\nwetenschapshistorisch\nhooischudder\nvaalwit\nvoeglijn\nbacovenwinkel\ncirkelrond\nzwijgverbod\nscheepsdiesel\nremastering\nhouweelslag\nkabouterhuisje\nsymmetrieas\nmiskleed\nimponeerhouding\nmoeder-kindrelatie\ncrisistoestand\nafvalverwijderingsbedrijf\ntaalverloedering\ngeluksteken\nveekraal\nvertragingsactie\nwenkbrauwpotlood\neponiemenwoordenboek\nstrofebouw\nKaninefaat\ninfanterieaanval\nvergrauwen\npinknagel\nIngveoons\nallergevoeligst\ngaffeltuig\nherfstbos\nlichtboog\nmijnwerkersvakbond\nspellinguitspraak\ndemi-monde\nskeletresten\nS-vormig\nbacterieflora\nzondagdienst\nprozaroman\nsamenklinken\nnaverkoopdienst\ntoneeloeuvre\nzwabberaar\nprikkeldraadhek\nwerkwoordstam\nklanksymboliek\ngirondijns\nsjalom\nstoottoon\nmetroniem\nautoreply\nvleeszijde\nspiraalboor\neucalyptusolie\nberenleider\nverfmassa\nzinsstructuur\nverkorrelen\nrijksmark\ngefascineerdheid\nkenwijsje\nbeenderstelsel\nkolenvergassingscentrale\nlevensvoldoening\ncomité-generaal\nbinnenpad\noerzonde\nbedrijfsingenieur\ngetiktheid\ngaasweefsel\ntoonstelsel\nJodenwet\nejectknop\nneusademhaling\nonderdrukkingsmechanisme\nbedisselcultuur\nbuutreedner\nlosjesweg\nzelfontleding\nhandoplegger\nzuipfeest\nvisgraatpatroon\nrookgat\nschaafijzer\nexistentiefilosoof\ndiefijzer\nwereldgeest\nministersfunctie\nkoffieteelt\npantservuist\nwysiwyg\nwildschut\nkeukeneiland\ntandwolf\norderverwerkingssysteem\ntroostvol\nwaardecoupon\nmensenvlo\nspectraalanalyse\nalpengebied\nadjudant-onderofficier\npaleografisch\nfilosofiegeschiedenis\nawara\nschelprits\nhoningvogel\nuitglippen\nademcentrum\nmestvocht\nnawijsbaar\ntemperatuurgradiënt\nzustersschool\nvaargeld\nsurah\nkwikdruk\nkraakwilg\nlazerstraal\nvuurstoot\nU-profiel\nbuutplaats\nvoortredeneren\nminjan\nmaatslaan\nzenuwaanval\nscharnierblad\nrolstempel\nmarsala\nzaadbed\nwaanzinscène\ncondoomcampagne\nviespeukerij\nvoortijlen\nrexisme\nannexatiepolitiek\ngevoelstoestand\nbushbush\nterugzinken\nkoefnoen\nbliksemslag\nhandelsfoor\nvlechthout\novergangsrite\nveldwerkster\nhoerenloon\nvodderig\nbosrank\nholklinkend\ncorniche\nbalsemkruid\nschrijfangst\neenwordingsverdrag\nvertrekklaar\nomscholingsprogramma\nmeubelhout\nlevensverlangen\npasse-vite\nU-ijzer\nmuurhaak\nroodkop\nsproeiflacon\nvooroudergeest\nspuitpoep\nboetprocessie\nflessengas\ngrauwwit\nlaïcisering\nmaagmond\nH-bom\nroerijzer\ngeloofsverdeeldheid\nperenbloesem\nflakkering\nmarktstemming\ndarmparasiet\nglasfabricage\nbeenpit\ngrauwzwart\nrunkleurig\nonderschip\nbinnenvaarder\ntoonval\ncorbillard\nluitenant-adjudant\nsoortsvorming\nbeeldfrequentie\nnaft\narbeidsslag\nvliegengaas\nI-profiel\npuibalk\nMegila\nzelfvervreemding\nkwikdamplamp\nalpenvereniging\nschroefkop\ngelukbrengend\nplantkoord\nonderwaterfoto\nzelfvergoding\nberenlul\nbollantaarn\nsuikerbus\nhaverveld\ngodsopenbaring\nlevensverschijnsel\nnegerstam\nbiologiewinkel\nloomte\nstormlamp\nbodemsaneringsregeling\nschandhout\npedaalgebruik\nichtyoloog\nloodkoliek\nhakenkruisvlag\ntallship\nvolksmacht\nsmeltmiddel\nGehenna\nhooipers\nzeillat\nzoutontginning\nkaakholteontsteking\ngenadigheid\nkopschudden\nvoortzeulen\nvolksvijandig\nkattendarm\nalverman\ndesolaatheid\ningenieurstitel\nmuzieksalon\ntoetoep\nbadjing\nwetenschapsopvatting\nacculturatieproces\nprachtkleur\nchemisme\nhofceremonieel\nlentebloesem\npaasdienst\nsamenlevingsstructuur\nbladmetaal\nsocietyleven\nafhaalmaaltijd\npoëzieopvatting\ndwangnagel\nstadskeur\nmollusk\nbronnenpublicatie\nspeculaasplank\nviooltoon\n3D-visualisatie\ndemocratiseringsprogramma\nlidbonden\nmandarijnendom\nbarbarakruid\nblauwgeverfd\nomslagillustratie\nwarmvoelend\nhoektafel\nzalfachtig\nouwenelen\ntijgersluipgang\nsagomeel\nconsumptiegoederenindustrie\nbagageafdeling\naandelenzwendel\ngevoelsreactie\nonus\ngeslachtsliefde\ncholerapatiënt\nwaarnemingstijd\nslaphangend\nchromosfeer\npubliciteitsbewust\nstijlloosheid\nwaarnemingsscherpte\nraketsilo\nDuitslandkunde\ntoxinegehalte\npennenstok\nloonkostenpeil\napfelstrudel\nlevensblijheid\nconvectiestroom\nmolecuulstructuur\nbruinbakken\nAROB-rechter\nknuddig\navonddis\nschetskaart\npomparm\nversuikering\nslametan\ngodtergend\navondboterham\ngamelanorkest\npoorterrecht\nimproviserenderwijs\nBirmaspoorlijn\nsouffleurshokje\nmacrameeën\nerosiemateriaal\nambtenarenstaat\nlachaanval\nproefexplosie\nreinette\nstijlniveau\nkaiserbrötchen\nscheringdraad\ngeobsedeerdheid\nontvloeien\nbovengalerij\nbosnegerdorp\nnovembermiddag\nbemeesteren\nsodoku\nMarialegende\nhebi\nhartversterker\nkwelderland\nhoogveenreservaat\nschoftenstreek\nslijpstof\ngifgasgranaat\nuniversiteitsmuseum\nkankantri\nkasiri\npiai\nparelachtig\nrexist\nhifiketen\nstadhouder-koning\nfotozetten\nhaarvilt\nbroekhoest\ntuftuf\nPortugees-Israëlitisch\nlavendelheide\nHasselaarse\nzijluik\nnapoleonvis\nmathematisering\nboventitel\nberegelen\nVroegmiddelnederlands\nwereldhuishouding\nwaldorfsalade\nergheid\nstukscheuren\nOudkerkslavisch\nlongkwaal\nnondedju\nstagediver\ntemeie\ntoewenken\nrijksvorst\naardappelbloem\ntaaltechnologisch\nbaksteenarchitectuur\nwaterstofsuperoxide\nschoorsteengat\nschuurmiddel\nrubberlaag\nvegetatiekundige\nsabeldans\nstrokartonfabriek\ndiversificatiepolitiek\nbandsnelheid\nwapenfiguur\ninhumatie\nspeelsgewijs\nzenuwstillend\ndragonazijn\nzuurgoed\nbere-interessant\nwaterwinningbedrijf\ncoq-au-vin\npotlatch\ntsarentijd\nassembleevoorzitter\nmassavermaak\nwaarnemingsreeks\nperceelland\nstralingsgordel\nrokvest\nkukeleku\nonewomanshow\nbasisgemeenschap\ncarbuur\nkandidaat-international\npatentsteek\nmilitievergoeding\nnatuurminnaar\nsnelletreinverbinding\ngelijkberechtigdheid\nfamiliebijbel\nantropobiologie\nkleurgevoeligheid\nVUT-gelden\nlijndienstvlucht\nsmeltdraad\nbegeleidingsinstituut\nabortusvraagstuk\nkruitlucht\ngroei-jaar\nertsoverslagbedrijf\nMokumer\nmonopoliebedrijf\nsneeuwgors\nWvS\nbruinkoolindustrie\nluchtwortelboom\nKoerdenvraagstuk\npianist-componist\nomwentelingskegel\nsoevereiniteitsverklaring\nritme-instrument\ngroei-explosie\nnumerus-fixusstudie\nrijkspolitiekorps\nseksboerderij\nagro-economie\nstuudje\navonturistisch\ndecibelgehalte\ninplaatsingsbeleid\ntiti\nzaadhandelaar\nsecretaressecongres\noverallconclusie\njournaalteam\nlokethandeling\nT-zone\nspoorwegtechniek\nstabiliteitspolitiek\nstofboel\nemigratieverdrag\nonderdelenpakket\nwoningdelersnorm\nnuclearisering\nwaterontharding\nshoyu\nsoufflémengsel\nhotel-café-restaurant\nscheepsradio\ntweedeklascoupé\ngewichtscoëfficiënt\nstartakkoord\nmultimedia-apparatuur\nC-omroep\nafschrikkingstheorie\nparlementair-politiek\ngoodwillreis\nvakhistoricus\nantibolsjewistisch\ngeldkrapte\nstelmoer\noudewijvenknoop\nzondagbijlage\nontwikkelingshulpbeleid\nmoderniseringspolitiek\ntafeldoek\nbuitenfunctiestelling\nantennewoud\nafscheidingsstreven\neindereeks\nhuiskamerdeur\nkwaliteitspapier\ngrondvergadering\nuitjubelen\npartijelite\nmannenziekte\nbitterkoekjespudding\nlongtop\nlaspistool\ngetijdencentrale\nkeukenrobot\nverwetenschappelijken\nnieuwsgaarder\nonderlaatst\noperatiekamerpersoneel\nvrijekeuzeruimte\ncoöptatiesysteem\nnegerkind\nonafhankelijkheidsverdrag\nnetwerkoptie\nmissie-ijver\nwezensvraag\ngastheorie\nzipdrive\nsyllabeschrift\nhypotheekkrediet\ngrondontsmetter\n't is dief en diefjesmaat\n11 julifeest\n11 juliviering\n21 juliviering\n24 uursdienst\n24 uurseconomie\n24 uursservice\nA-attest\nAOV'er\nATM-kaart\nAarlenaarse\nAdek\nAfrikaanssprekend\nAl Qaida\nAlbinees\nAnansitori\nArdenner ham\nArdense hesp\nArowak\nArowaks\nArthurroman\nAsjkenazi\nAssembleecommissie\nAssembleevergadering\nAucaans\nAucaner\nAzteeks\nB-attest\nB-omroep\nBantoetaal\nBaskisch-nationalistisch\nBeatlesplaat\nBerbervolk\nBhagwanbeweging\nBoerenrepubliek\nBosschenaarse\nBoterwet\nBraziliaans-Portugees\nBrits-Engels\nBrits-Indiër\nBrokopondonees\nBruggelinge\nC-attest\nCanadees-Engels\nCaribisch-Engels\nCaricom-land\nChampions League\nChampions Leaguewedstrijd\nCherokee-indiaan\nChristian Science\nCockneydialect\nCommewijner\nCommewijns\nCoroniaan\nCoroniaans\nCycladisch\nD-sluiting\nDaviscupfinale\nDode Zeerollen\nDolle Mina\nDon Juan\nDon Quichot\nDowning Street\nElvislookalike\nEskimocultuur\nEskimohut\nEustatiaan\nEustatiaans\nGallo-Romaans\nGestapo-chef\nGoidelisch\nGuinees biggetje\nGurkha\nHemelwagen\nHomerusvertaling\nHubertusdag\nIers-Engels\nJodenbegraafplaats\nJodenmop\nJut en Jul\nK2-top\nKafkafan\nKeti Koti\nKol Nidrei\nKorangeleerde\nKoranspreuk\nKrim-Gotisch\nL-kamer\nLand van Kokanje\nLloyd's-lid\nLodewijk XV-meubel\nLondentrip\nMX-raket\nMaltezer kruis\nMaltezer leeuwtje\nManx\nMarowijner\nMarowijns\nMatawai\nMeirevolutie\nMiradj\nMolièrevertaling\nMont Blancbeklimming\nMultatulibiografie\nNSB-familie\nNatin\nNeolatijns\nNew Yorker\nNew Yorks\nNickeriaan\nNickeriaans\nNoordzee-Germaans\nOegaritisch\nOernevel\nOost-Europadeskundige\nParaan\nParaans\nParamaccaner\nPetrussleutel\nPostbanknummer\nPueblo-indiaan\nQueen Annestijl\nRiagg-centrum\nRiffijn\nRode Duivelswedstrijd\nRosj Hasjana\nRubenstentoonstelling\nS-haak\nSUV-wagen\nSan Andreasbreuk\nSassanidisch\nShakespearedrama\nSimchat Thora\nSint-Bernhardpas\nSint-Elizabethsvloed\nSipaliwinees\nSipaliwiniër\nSjavoeot\nSlavischsprekend\nSoW-kerk\nSovjet-Jood\nSrananman\nSri Krisjna\nStanfries\nStille Oceaangebied\nSturm und Drang\nSurinaams-Javaans\nTEE-trein\nTalmudica\nTemmincks strandloper\nTosefta\nTweede Kamerlidmaatschap\nU-balk\nV-effect\nV-wapen\nV1-bom\nVondelkenner\nW.v.Str.\nWAM-sticker\nWagneruitvoering\nWajana\nWanicaan\nWanicaans\nWarau\nWereldschaakfederatie\nWereldtennisbond\nWereldvoetbalfederatie\nWitte Huiswoordvoerder\nZ-kaart\nZ-profiel\nZ-vormig\nZaanse klok\nZuid-Afrikaans-Engels\nZuid-Vlaams\nZwarte Zeevloot\nZwartvoetindiaan\nZwitsers-Duits\naandelenkoersindex\naannemerskartel\naanpassingsklas\naanvoertroepen\naardewerkfabrikant\naardkleurig\naardstralenkastje\naartshuichelaar\nabaja\nabortustoerisme\nabrikooskleurig\nabstinentieverschijnsel\nacademieopleiding\naccordeondeur\nachterkwab\nachtervolgingswedstrijd\nacteurstoneel\nactiecomedy\nactualiteitenshow\nad hominem\nad-interimaanstelling\naddenoi\nadelaarskop\nadukiboon\nadvertentiekolom\naero-elasticiteit\naerosolverpakking\nafbakbroodje\naffrontelijk\nafgronddiep\nafgunstwekkend\nafkickboerderij\nafknijper\nafruiltransactie\nafscheidingsstrijd\nafstandsbaby\nafstandsvader\naftruggelen\nafwezigheidslijst\nagaveplant\nagentenuniformrokje\nagglomeratieraad\nagroalimentair\nagrotechnologisch\naha-ervaring\naidsafdeling\naioplaats\naiostelsel\naircospecialist\nalcolade\nallerverrukkelijkst\nallerzachtst\nallweatherkleding\nalpenkauw\nalpenkraai\nalttoets\namah\namandelgeest\namateurbepaling\nambassadeurswerk\namerikanist\namoebeabces\namoebedysenterie\nams'er\namto\namyotrofie\nanarchistencomplot\nandesgier\nangejiddeld\nangiosperm\nangisa\nangostura\nanijstablet\nanno Domini\nanorexia-nervosapatiënt\nanti-Vietnamdemonstratie\nanti-inflationair\nanti-inflatoir\nantiheldin\nantimaffiapolitie\nantimuggenspray\nantinarcoticabrigade\nantiorangist\nantiquarenbeurs\nantiracismebeweging\nantiroosshampoo\nantisandinistisch\nantonpieckachtig\napachedans\napachetraan\napinti\napothekerscoöperatie\narabicakoffie\narbeidsonbekwaamheid\narbitrageaankoop\narcheofyt\narchievenkamer\narchitectenvereniging\narganolie\narganvrucht\narmoeiig\narmoelijder\narteriogram\nasfaltdakwerk\nasfaltjungle\nassyriologie\nassyriologisch\nastroturf\nat-teken\natelierhouder\natletenmakelaar\natoomdeskundige\naudiotoer\nauditiezaal\nauralezen\naussie-Engels\nauteursrechtenbureau\nautonomieakkoord\nautoreverse\nautoslotspray\nautostradebrug\nautoverschrikker\nautozoektocht\navondmist\navondnevel\nawari\nazertyklavier\nazuki\nbaanderen\nbaantjestrekker\nbaarmoederkoek\nbabi pangang\nbabiroesa\nbabyeczeem\nbabymais\nbabymaïs\nback-upbestand\nbacklist\nbackstagepasje\nbacteriocide\nbadhandje\nbadmintonshuttle\nbaissedekking\nbakabana\nbaklap\nbakra\nbaksis\nbaksjisj\nbalkanisering\nbalkanvergeet-mij-niet\nballetorkest\nbalneologie\nbalneologisch\nbalsemlucht\nbamafoon\nbamaopleiding\nbamboepaal\nbamischijf\nbammoeder\nbangbroek\nbaobabboom\nbar-restaurant\nbarbershopkoor\nbaribal\nbarnumachtig\nbarragepartijtje\nbarré\nbarréakkoord\nbasishoek\nbasketbalfederatie\nbasketschoen\nbaskiet\nbat mitswa\nbatter\nbatterijlamp\nbattingwicket\nbauxietmaatschappij\nbauxietmarkt\nbauxietstad\nbazigheid\nbazuinkoor\nbc.\nbeatlehaar\nbebophaar\nbedampen\nbedolah\nbedrijfs-pc-netwerk\nbedstedeplank\nbedsteeplank\nbedwants\nbeganegrondwoning\nbeheime\nbehemoth\nbeigeachtig\nbelatafelen\nbelcanto-opera\nbeleggerskringen\nbendir\nbenedenlands\nbensjen\nbenzinebon\nbenzinestank\nberenboek\nberenhap\nbernhardtiti\nberoepswielrennen\nbeschuitgras\nbestuursopzichter\nbetbetovergrootmoeder\nbett.\nbeurswezen\nbeurtstaking\nbewapeningsindustrie\nbewapeningsplan\nbewilligingsverklaring\nbewoningslaag\nbewustwordingsproject\nbezetenheidsdans\nbezitsconstructie\nbiedermeiertijd\nbiedstijl\nbiergarten\nbiesbok\nbigbandleider\nbigbandmuziek\nbij geruchte vernemen\nbijbelpapier\nbijbelslot\nbijklusser\nbijkrediet\nbijna-unanimiteit\nbijtring\nbikker\nbillboardformaat\nbima\nbinnenduingebied\nbinnenhofs\nbinnenschrijden\nbiochemieconcern\nbitawiwiri\nbitter lemon\nbitterblad\nbitterpee\nblaaswier\nblablafiguur\nbladderig\nbladgeel\nbladvezel\nblakaman\nblauwvos\nbleekschijter\nblerken\nblikjeswaren\nblimbing\nblinddammen\nblocnotevel\nbloedfactor\nbloedgroepgenoot\nbloesemtak\nbobbelgum\nbobijnhouder\nbobsleeploeg\nbodemziekte\nbodyboarden\nbodysafe\nboeddhologie\nboeddhologisch\nboeddholoog\nboekhandelsgroep\nboekingsbureau\nboeklong\nboerenstulp\nboletri\nbombel\nbomchecken\nbomendijk\nbondsploeg\nbonensalade\nbonhomme\nbonsaiboom\nbontebok\nboodschapperstof\nboomboa\nboontjedief\nboordwijdte\nbootlegging\nborstkolf\nbosananas\nboslandcreools\nboslanddignitaris\nbospapaja\nbospolitie\nbosspin\nbosyaws\nbotenterrein\nbotervlinder\nbotsingsenergie\nbowl-out\nboycotbeleid\nboycotwet\nbps\nbrandweerrood\nbrandzwam\nbrasa\nbreakdansen\nbridgetitel\nbriefkaartactie\nbriefkaartformaat\nbriet\nbrillenjood\nbrocanteur\nbroge\nbroncode-editor\nbroodcrouton\nbroomdrankje\nbroomzuur\nbrouwerijindustrie\nbrownbeweging\nbruinhart\nbruinkoolgroeve\nbrushleer\nbuikwind\nbuitengevechtstelling\nbuitenlanderangst\nbuitenlandexpert\nbureau-inhoud\nbureaueigenaar\nbureaujob\nburgerlijk-liberaal\nburgermansbestaan\nburgermansmoraal\nburgertrut\nburgul\nbursa-equivalent\nbusbo\nbuurttehuis\nbyebye\nbètastralen\ncadmiumrood\ncafé noir\ncafé-brasserie\ncajunkeuken\ncalimerocomplex\ncamaieu\ncambiohouder\ncanadagans\ncandlelight\ncantatekoor\ncardioscopie\ncargorijst\ncarolina-eend\ncarolusgulden\ncarpaletunnelsyndroom\ncarrièreoverweging\ncascadeschakeling\ncash-and-carryzaak\ncasinohotel\ncassandravoorspelling\ncassata-ijs\ncassavechips\ncassettewisselaar\ncassolette\ncd-rewriter\ncementlijm\ncentrifugaalkoppeling\ncentrifugeonderdeel\nceylonthee\nchambrette\nchampagneflûte\nchampagnestreek\nchanoekalamp\ncharlotte-russe\nchazanoet\nchef d'équipe\nchef-d'oeuvre\ncheider\nchemieaandeel\nchequeboekdiplomatie\nchimerisch\nchipolata-ijs\nchipsmarkt\nchlooracne\nchloorecht\nchloorwaterstof\nchochme\nchoreografieopdracht\nchristelijk-fundamentalistisch\nchristen-sociaal\nchristensocialisme\nchristian-scientist\nchromotypie\ncicadeachtig\nciceroniaans\ncilinderglas\ncilindervlak\ncinemaprimeur\ncinemascopeformaat\ncircusachtig\ncirkelboor\ncitohulp\ncivilisatietheorie\nckv-docent\nclafoutis\nclassificeerder\ncliché-uitdrukking\nclose-upopname\ncloseharmonykoor\nclubsjaal\nclubvolleybal\nclusterbijeenkomst\nclusterprijs\nco-existeren\ncocaproducerend\ncoccejaan\ncola light\ncold case\ncollagetechniek\ncollectiecatalogus\ncollectievelastenpeil\ncollega-curator\ncollega-onderzoekster\ncollegezalencomplex\ncolumnistenprijs\ncommissarisplaats\ncomponistenbond\ncompositiedocent\ncomposteringsfabriek\ncompostfabriek\ncomputerverslaafde\nconcubaan\nconditioneringsproces\nconfituurtaart\nconservatief-democratisch\nconservenbedrijf\nconsistentvet\nconsolbaken\nconsoletafel\nconstructie-ijzer\nconstructiebankwerker\ncontactlenzenspecialist\ncontainerlijnvaart\ncontingentsberoep\ncontrarebel\ncontrareformatorisch\nconvenantcultuur\nconversatiekunst\nconversatiestuk\ncopycard\ncourgettebloem\ncowboykapitalisme\ncraniotoom\ncrediteurenbank\ncreolistiek\ncreutzfeldt-jakobsyndroom\ncro-magnonmens\ncroque-madame\ncroquetwedstrijd\ncross-overmuziek\ncrosscountryrace\ncrosscountryskiën\ncrosscousinhuwelijk\ncrème au beurre\nctrl-toets\ncube-ijs\ncultfilmer\ncummerband\ncuptoernooi\ncuriositeitsgehalte\ncyclecross\ncysteaaltje\ncystenier\ndag-en-nachtritme\ndagtekstenboekje\ndalang\ndalver\ndamboek\ndameskapsalon\ndancehallartiest\ndans-en-showorkest\ndansi\ndansrage\ndark horse\ndarwinhybride\ndarwinvink\ndata-encryptie\ndatrecorder\ndavvenen\ndawet\nde bout hachelen\ndeactualiseren\ndecimeterhoog\ndecorwand\ndecurio\ndecurion\ndeelraadbestuurder\ndeelradensysteem\ndeeltjesonderzoek\ndefensieaankoop\ndefensiearm\ndemocratiseringsplan\ndepressieactiviteit\nderboeka\nderdebordspeler\nderdegeneratieallochtoon\nderdehonkman\ndetectieplaatje\ndeterminatiegraad\ndeux-chevauxgarage\ndevonisch\ndiaboliseren\ndiagonaalsgewijs\ndiana-aap\ndiaprogramma\ndibboek\ndichloordifenyltrichloorethaan\ndienst-na-verkoop\ndienstenbalans\ndienstpet\ndieplinken\ndierpsychologie\ndievenijzer\ndijonmosterd\ndinarbiljet\ndingdong\ndirectmailcampagne\ndirigentenbok\ndissidentengroep\ndistrictsbewoner\ndistrictsgenoot\ndistrictstoelage\ndivalifeest\ndivalioptocht\ndividendloos\ndividivi\ndixielandmuziek\ndjilbab\ndjorken\ndoceertoon\ndocentenagenda\ndocumentairefotografie\ndogla\ndolfijnvriendelijk\ndollarobligatie\ndolle mina\ndomme august\ndomus Dei\ndonsveer\ndoodconcurreren\ndoodskopaapje\ndoorkachelen\ndoorsnee-Nederlander\ndoorsnee-Surinamer\ndoorstromingsafdeling\ndoorzonkamer\ndorpskapitein\ndozenopener\ndraagmier\ndrag-and-drop\ndrakenvlieger\ndreestrekker\ndrentenieren\ndriekamerparlement\ndriestuiverroman\ndrijfnetvloot\ndrogeladingvaart\ndroogkoker\ndroogneuken\ndroogstappen\ndroogstoppelig\ndroomuitlegging\ndrs.-titel\ndrukring\ndrukwaterreactor\ndrumpodium\ndrycleaning\ndtp-prik\ndubbelbogey\ndubbelfocusbril\ndue diligence\nduediligenceonderzoek\nduetfragment\nduikadres\nduivelskermis\nduivenklok\ndumppraktijk\ndumpschip\nduovoorzitterschap\ndwarskrachtcompensatie\ndwergberk\ndynamometer\ndöner kebab\ne-dentifier\nearlgreythee\neblouissant\nebo\nebullioscoop\necloge\necoaardappelen\nediacara\neemien\neenaprilgrap\neenmeifeest\neenvrouwsactie\neerstedagenvelop\neersteministerportefeuille\neersteprijswinnaar\negomaniakaal\neigener beweging\neilandhopping\neksternest\nelektro-oven\nelementairedeeltjesfysica\nelfjuliviering\nelfstedenstad\nemblematabundel\nemigratiepolitiek\nemptynestsyndroom\nen profil\nenchilada\nenkelkous\nenveloppenfinanciering\nereorde\nerfelijkheidsmolecule\nerfwoning\nesc-toets\netagebos\netiolement\neto\neuropide\nex-PTT'er\nex-provo\nexcarnatie\nextended family\neïs\nfabricagehal\nfactoringmaatschappij\nfantasiestof\nfaçadebouw\nfedajien\nfellaga\nfelnationalistisch\nfeloek\nfeloeka\nfenoloplossing\nfiancee\nfiancé\nfichebak\nfietseling\nfijngesnipperd\nfijnpapier\nfilaria\nfilet d'anvers\nfilosofieles\nfinoegrist\nfinummer\nfitnessstudio\nflat character\nfleetracen\nflesgroen\nflessenborstel\nflightrecorder\nflinterig\nfloraliën\nfloridawater\nfluitsolo\nfluorescentlamp\nfly-drivevakantie\nfopmiddel\nfopsigaar\nforechecking\nfosfaatlozing\nfotofobie\nfotofucken\nfoutslag\nfransmanbirambi\nfrontnieuws\nfruits de mer\nfrust\nfrutti di mare\nfunkbas\nfusie-energie\ngaarsmoren\ngabarit\ngaleriebezoeker\ngalkoliek\ngaloet\ngaloppas\ngalzucht\ngamma-ijzer\ngangmaakster\nganzenpastei\ngarimpeiro\ngarneerspuit\ngarnierder\ngas- en lichtrekening\ngasopnemer\ngebiedsaanspraak\ngebitplaat\ngebitsziekte\ngeboeidheid\ngeboortedaling\ngeboortekrik\ngeco\ngedachteflarden\ngeelverlicht\ngeestverwarring\ngefilte fisj\ngehoormeting\ngekke henkie\ngelaatszenuw\ngeldingszucht\ngeldmarktverruimend\ngelebek\ngelegenheidsaanbieding\ngelijkheidswaan\ngelijkknippen\ngeloftedag\ngeloofsgeschil\ngeluidsopnameapparatuur\ngeluidspoort\ngeluidstrechter\ngeluksverlangen\ngemberpot\ngemeente-instelling\ngemeier\ngemenebestland\ngeniza\ngentleman-trainer\ngeo-etnisch\ngeobotanie\ngeoha\ngerenoek\ngeschiedschrijven\ngeselslag\ngeserreerdheid\ngeslachtsomgang\ngestumper\ngeurscheiding\ngeuzenverzet\ngevechtssterkte\ngevechtstas\ngevelspits\ngeverseerdheid\ngewafeld\ngeweldsscène\ngewichtigdoener\ngezondheidsbril\ngezondheidsregel\nghazel\nghazidsja\nghibil\ngiro-envelop\ngitaarakkoord\ngladkammen\ngladwrijven\ngletsjerdal\nglijijzer\ngloschool\ngo-getter\ngodsgemeenschap\ngodsgetuige\ngodsliederlijk\ngodsstad\ngodswoord\ngoenagoena\ngomma\ngommakoekje\ngordijnlat\ngospelzang\ngothic novel\ngoudkarper\ngraffitischrijver\ngrafgedicht\ngrafsculptuur\ngraftempel\ngrafvaas\ngrammaire\ngrammaticaonderwijs\ngranietachtig\ngrannysmithappel\ngrasluis\ngriendbos\ngrietjebie\ngroeibon\ngroeivertragend\ngroenhart\ngroenteburger\ngroothandelsorganisatie\ngrootordeteken\ngrosprijs\ngrotchampignon\nguavesap\ngunstvoorwaarden\nhaaienbek\nhaakbout\nhaaknagel\nhaaksluiting\nhaaksteek\nhaardot\nhakbeschermer\nhakstuk\nhalfgeleiderlaser\nhalfleren\nhalfpijler\nhalftint\nhalfvocaal\nhalfwollen\nhalogeenlicht\nhalsgewricht\nhalszenuw\nhalvaproduct\nhamergooien\nhamertje-tik\nhamschijf\nhandbalcoach\nhandbeugel\nhandbezem\nhandruiker\nhang-legkast\nhanigheid\nhardeschijfactiviteit\nhardvoer\nharicots verts\nharpijarend\nhartenbeest\nhartpunt\nhartscheur\nhartzwakte\nhatsiekadee\nhaute-couturewinkel\nhaverkorrel\nhawaïburger\nhawkingstraling\nhazelnootreep\nhedjra\nheen-en-weerdienst\nheikraan\nheiploeg\nhekpaal\nhelderheidsverandering\nhemeltjelief\nhemotoxine\nhepatitis B-injectie\nheptaëder\nherbebossingsprogramma\nherdersverhaal\nheremetijd\nherfstkleurig\nheriheri\nhernhuttertje\nhersenspook\nhertenzwijn\nhespenspek\nheteluchtkachel\nhiggsdeeltje\nhighriskvirus\nhikkerig\nhindekalf\nhindoefundamentalist\nhitwezen\nhobu\nhobuer\nhoekmeting\nhoekplaats\nhoerenkind\nhoerensjans\nhoesttablet\nhofopera\nhokkig\nholoniem\nhomeshopping\nhomologatiecommissie\nhongermaal\nhoningblond\nhoninggeel\nhoningkelk\nhoningkleur\nhoofdklassenspeler\nhoogmoedswaan\nhoogstgeplaatst\nhoogvliegend\nhooi-jaar\nhora est\nhortologie\nhostie-ijzer\nhotelappartement\nhousebroek\nhousehit\nhoutje-touwtjejas\nhoutmaat\nhoutmeel\nhoutveredeling\nhoutweefsel\nhtm\nhubbleconstante\nhudo\nhuilkramp\nhuis-tuin-en-keukengebruik\nhuiskraai\nhulpkit\nhumaninterestverhaal\nhumanresourcesmanagement\nhumboldtpinguïn\nhuppelpas\nhuwelijksbedrog\nhydrobiologie\nhymneboek\nhymnedichter\nhysteron proteron\nic-verpleegkundige\nicetea\nideologieloos\nijsachtig\nijsappel\nijsballet\nijshockeyfan\nijsspeedway\nijstijdvak\nijzersmaak\nijzertijdperk\nillegalenkwestie\nimmigrantenstroom\nimmuniteitsleer\nimmunologe\nimpulsgedrag\nin absentia\nin allen gevalle\nin familiehanden\nin koelen bloede\nin regeringshanden\nin staatshanden\nin triplo\nin voce\nin z'n uppie\nin- en ingemeen\ninbrenghuls\nincasso-endossement\nincompanytraining\ninderminneregeling\nindexgerelateerd\nindianenboek\nindom\nindoortennistoernooi\ninductielus\nindustrialisatienota\nindustrialisatiepolitiek\ninformatie-industrie\ninfraroodopname\ningebruiksstelling\ningewandsworm\ningveonisme\ninkiesnummer\ninklaptafel\ninklaringsactiviteit\ninktlijn\ninslagfrequentie\ninspuitmoment\ninstroom-doorstroombaan\nintensivecareverpleegkundige\ninter-Afrikaans\ninterregionet\nintiemspray\nintimidatiepolitiek\nintroductieabonnement\ninvesteringsgoederenindustrie\ninvestmentbank\nionosferisch\niriscoop\nislamologisch\nja-neevraag\njachtbouwer\njachtsaus\njack russell\njackrussellterriër\njagersjas\njagerssaus\njakobiet\njammertoon\njapanologisch\njasses\njeansvest\njeneverkruik\njesjieve\njeugdcellenhuis\njeugdtandverzorger\njij-vorm\njojo-etappe\njordaanlied\njordaanzanger\njouker\njournalistencafé\njuffertje-in-'t-groen\njump-'n-jive\njump-'n-jivemuziek\njurassisch\njuristenpartij\njusblokje\njustiniaans\njuweliersketen\nkaakstomp\nkaalgegraasd\nkaartlegging\nkaasprijs\nkabbes\nkabinetsattaché\nkabinetsdecreet\nkabouterland\nkaenozoïcum\nkaffiya\nkaiserbroodje\nkaisoi\nkajotster\nkalenderblad\nkali-industrie\nkallegaaien\nkalletje\nkalong\nkampeerbed\nkamsin\nkandidaat-plaatsvervanger\nkangoeroeschip\nkanselarijminister\nkantiaan\nkantinebijeenkomst\nkaoline\nkappersvakschool\nkaraoken\nkarpatenklokje\nkarweiman\nkaseko\nkasekoband\nkasjeren\nkat-in-de-zak\nkaterstemming\nkattenbakgrit\nkattensnaar\nkawai\nkawinaband\nkazakkendraaier\nkeepertraining\nkegelvrucht\nkehila\nkei-interessant\nkeltenkruis\nkeltistiek\nkeltologie\nkernhem\nkernwetenschap\nkervelblad\nkeukenmeisje\nkgm\nkhimar\nkick-and-rush\nkick-and-rushvoetbal\nkickboksgala\nkidoesj\nkielboot\nkiembak\nkiendopje\nkina-extract\nkinderfilosofie\nkinderheil\nkindje-op-moeders-schoot\nkinesionomie\nkipkerriesalade\nkitscherigheid\nkitschgehalte\nkiwi-ijs\nkiwiyoghurt\nkiyu\nklagerigheid\nklanktrap\nklaverkaart\nkleinverlofganger\nkleioven\nkleiplastiek\nkleiterp\nklemtoonverschuiving\nklerengek\nklerevent\nkleurkatern\nkleurlingenwijk\nkleurvernis\nkleurversteviger\nklieving\nklipspringer\nklitwortel\nklompachtig\nklontjestang\nkloostergewelf\nkloothannesen\nknalprijzen\nkneippkuur\nknieaandoening\nknielaars\nkniewarmer\nkniewater\nknolvrucht\nknoopband\nknotsoefening\nknowhowovereenkomst\nkoekkruiden\nkoersenverloop\nkoersoverzicht\nkoestraat\nkofferdekschip\nkoffiebitter\nkoffiestroop\nkokosdistrict\nkokoskoek\nkol nidrei\nkola-extract\nkolffles\nkolfplaat\nkolonisatie-expeditie\nkomeetfragment\nkoningskleur\nkontlikker\nkookaanwijzing\nkoollong\nkoolpot\nkoolstofdioxide-emissie\nkoolzuurassimilatie\nkoordzeep\nkoormantel\nkoormonnik\nkop-en-schotelverzameling\nkop-van-jut\nkophout\nkopjeduikelen\nkoppoter\nkoptologie\nkorfbalselectie\nkortedrachtwapen\nkostuummuseum\nkotomisi\nkraambeen\nkrabbenmentaliteit\nkrachttrainen\nkrakerproduct\nkrapa\nkrapgeldbeleid\nkraukrau\nkrentenpikker\nkringbeweging\nkristalnaald\nkristalversterker\nkrobia\nkroi\nkrokodillenklem\nkromhoorn\nkromsluiten\nkromtecirkel\nkronkelachtig\nkruidkers\nkruidnagelsigaret\nkruimelfraude\nkruimelvlaai\nkruisingsproef\nkruisschroevendraaier\nkruisstelling\nktv\nkuiptent\nkuitbeenspier\nkunstenaarscafé\nkunstenaarsnaam\nkunstenstad\nkunstgevoelig\nkunstmestproductie\nkunstparel\nkunststoffenfabrikant\nkunstvoortbrengsel\nkurkpapier\nkutsmoes\nkutzwager\nkvv'er\nkwajongenswerk\nkwallig\nkwartjesfilosofie\nkwartsklok\nkwartviool\nkwasibita\nkwatta-aap\nkwezelig\nkwikwi\nkwikzilverig\nlaatglaciaal\nlaatneolithisch\nlaatpleistoceen\nlabaria\nlachziek\nlactovegetariër\nladingscertificaat\nladyboy\nlagenhout\nlakboom\nlakmoestinctuur\nlamelvloer\nlancetblad\nlandbouwstation\nlandrug\nlanggolvig\nlangspeelband\nlangsvoeg\nlanolinezalf\nlaplanduil\nlaryngoscopie\nlaryngoscopisch\nlastminuteaanbieding\nlateriet\nlatinisering\nlawaaierigheid\nlawaaisoep\nlbgo\nleagueduel\nleaguefinale\nleaguewedstrijd\nleba\nlechajim\nleefhoek\nleefhouding\nleeftijdsloos\nleegtegevoel\nleemglazuur\nleerkring\nleersecretariaat\nlefschopper\nlegbatterijei\nlegervoorraad\nlekenstand\nlemmetjeboom\nlentejas\nlepelsgewijs\nlepidopterist\nlepidopterologie\nlepidopterologisch\nletselschade-expert\nletterrijm\nletterziften\nleugenontdekker\nleugenverklikker\nleukjes\nlevensgeheim\nlevenswaarde\nlezerscategorie\nlibellennet\nlic.\nlichtkabel\nlichtkunstwerk\nliefdadigheidsmarkt\nliefdessmart\nlijkmis\nlinksrijdend\nlinnaeusklokje\nlinzenmoes\nliquiditeitengroeifonds\nlisdoddenfamilie\nlive-tv-debat\nlno\nloeach\nlombardtarief\nlongdrinkglas\nlongvaten\nloodblauw\nloodkoord\nloop-in-'t-lijntje\nlooprail\nloostrens\nlosstormen\nlost generation\nlotsverandering\nlowbudgethotel\nlp-verzameling\nlsd-verslaving\nluchtbeleconomie\nluchtkussenboot\nluchtveersysteem\nluidsprekend\nluiermarkt\nluierwas\nluilaknacht\nluilakviering\nluistercel\nluizenstreek\nlupineveld\nm-bankieren\nmaagkatheter\nmaagslang\nmaagstoot\nmaastrichtien\nmacho-uiterlijk\nmachtigingsnummer\nmachtsstaat\nmagelhaengans\nmagneetinductie\nmagneetschijfgeheugen\nmagneetsluiting\nmagneetspoel\nmagneetstaaf\nmagneetstrippas\nmagnetiseerder\nmakaperi\nmakaslang\nmake-upremover\nmalaisegevoel\nmalchance\nmampier\nmanagersopleiding\nmanagersschool\nmanchepoging\nmanicureopleiding\nmannencondoom\nmantouxtest\nmanumitteren\nmanxkat\nmaraan\nmariadistel\nmarinejager\nmariniersdivisie\nmarionettenbewind\nmaripa\nmarrondorp\nmarsfractuur\nmarteko\nmartialartsfilm\nmarxist-leninist\nmassa-uitwijzing\nmatenstelsel\nmatrijzenmakerij\nmatrixscherm\nmaturiteitsdiploma\nmaturiteitsexamen\nmaulana\nmauritiuspalm\nmavo 4-leerling\nmavo-eindexamen\nmazzeltof\nmaître d'hôtel\nmecklenburger\nmede-Kamerlid\nmediateur\nmedisch-administratief\nmedusahoofd\nmeelbal\nmeeouder\nmeerkabel\nmeerrompschip\nmeesterarrangeur\nmeetlood\nmegabrein\nmeikrans\nmelissethee\nmelkertbaner\nmelkkrat\nmelksteen\nmelkvoorziening\nmelkzeep\nmemobedrijf\nmendeliaans\nmensendiecken\nmensenkluwen\nmentsj\nmenuanimatie\nmer à boire\nmerchandiseartikel\nmeridiaanshoogte\nmeroniem\nmesdjid\nmestinjectie\nmetaalzaagblad\nmethadongebruiker\nmethodeonderzoek\nmethylchloroform\nmezomme\nmicrobesoort\nmicrofoonhengel\nmicrokopie\nmicrokorfbal\nmicromorfologie\nmiddenpaleolithicum\nmiegelen\nmigratieattaché\nmikwa\nmildironisch\nmilicien-korporaal\nmilitair-economisch\nmimekunstenaar\nmimeschool\nmineraalwatermarkt\nmini-Europa\nmini-ijstijd\nminiatuurlandschap\nminikrach\nminioorlog\nminipil\nminiuitrusting\nminusteken\nmiradj\nmisgokken\nmisjpooche\nmiss-wet-T-shirtverkiezing\nmitrailleursalvo\nmo A\nmo A-akte\nmo B\nmo-akte\nmobiliteitsschrift\nmoekim\nmoerasvergeet-mij-niet\nmoerbeivlinder\nmofokoranti\nmohairen\nmoheel\nmokka-ijs\nmoksimeti\nmolinologie\nmolluskicide\nmolukkenkreeft\nmondigheidsverklaring\nmongolenvlek\nmonkimonki\nmonopolierechten\nmontignacdieet\nmopé\nmopéstroop\nmorenemateriaal\nmorgengrauwen\nmorsdoek\nmorshandel\nmortiergeweer\nmoslimhulporganisatie\nmotordrive\nmotterig\nmouwband\nmouwgat\nmouwplank\nmuizenbeetje\nmuizenvalk\nmultatuliaans\nmultiplechoicetoets\nmultivariabel\nmuskietenkaars\nmuurlamp\nmuurschilder\nmuurschilderen\nmuziekbehang\nmyomeer\nménière\nnaai-juf\nnaaktcultuur\nnaaktstudie\nnaaldkunst\nnamaakleer\nnapi\nnarcosearts\nnatgooien\nnationaliteitenprobleem\nnatriumzwavel\nnavylook\nnaziagressie\nnazivernietigingskamp\nnederzettingsonderzoek\nneerstoten\nnegenponder\nnegerjongen\nnegerwijk\nnekstuk\nneofyt\nneolithisatie\nneolithisering\nneopaganisme\nnephuis-aan-huisblad\nnepopenhaard\nneptweedestuurman\nnesjomme\nnestkleed\nnestvaren\nneuroseleer\nneuspleister\nneuspoliep\nneuspulker\nnewwavemuziek\nnieges\nniemboom\nniet-idealiteit\nnikab\nnisskakam\nnitroverbinding\nnivelleringsmaatregel\nno cure\nno-nonsensebeleid\nno-nonsensepolitiek\nno-showstudent\nnoachitisch\nnomadencultuur\nnon-alcoholica\nnon-foodafdeling\nnoni\nnoordzeegarnaal\nnootolie\nnotatieformulier\nnotchback\nnumismaat\nnumismaticus\nnylongrondstof\nobia\nobiaman\nobligatieomzet\nobservatiegraad\noelpan\noestrogeensubstitutie\noeverkruid\noff-the-roadmotor\nofficiersclub\noffsetprocedé\noffshoreoliewinning\nofiologie\nohaën\noioplaats\nokselstick\nolewesjolem\noliebrandstof\nolieresidu\noliesardine\nomgevingskunst\nomhoogslaan\nomkaderingsnorm\nomkeerschakelaar\nomsingelingspolitiek\nomvademing\nomverlullen\non the rocks\non-Joods\nonaflosbaar\nondeelbaarheidsgedachte\nonderdelenmagazijn\nonderdrukkingsinstrument\nonderinspecteur\nondernemersgewijs\nondernemingsraadvergadering\nonderwijsleerplan\nonetouchvoetbal\nonewayscreen\nongecomplexeerd\nongedeeldheid\nongeluksjaar\nongepaneerd\nongesausd\nonkruidkunde\nonlineshopping\nonroerendgoedmaatschappij\nontheemdendocument\nontheemdenpas\nonthoorningscampagne\nontindividualisering\nontkoppelingsbesluit\nontmaken\nontstekingscel\nontvettingsmiddel\nontvlokken\nontvriezen\nontwapeningswedloop\nontwerplandbouwakkoord\nontwikkelpapier\nontworteldheid\nontzippen\noogmeetkunde\noorlogsspelletje\nooruil\nopdienster\nopenboektentamen\nopendeurdienst\nopeningsdefilé\nopenschieten\nopera-uitvoering\noperarol\nopgelierd\nophangslee\nopjuinen\nopmaakredactie\nopmaaksel\nopname-unit\noppasprobleem\noppepoperatie\noppeppakket\nopstellingscommissie\noptieaandeel\noptischevezelactiviteiten\noral history\noribi\noriëntatiegraad\norkaansterkte\norkestenplan\norni\norpheusgrasmus\nosloconfrontatie\nosteoma\noublie-ijzer\noud-medewerkster\nouderdomsclausule\noudewijvenkoek\noudkatholicisme\noudpapieractie\nout of the blue\noutdoorkledij\noutdoortoernooi\nouwelullendag\noveralldrager\noverdressed\noverdrukpapier\novergeclassificeerd\noverhoopgooien\noverlijdensannonce\novernemingsgevecht\nozonarm\nozonrijk\npaalkrans\npaard-en-kar\npaardenschilder\npacificering\npaddenstoelvormig\npadieboer\npagara\npagekapsel\npagodeboom\npain à la grecque\npakgoed\npakira\npaleoantropologisch\npaleobotanicus\npaleobotanie\npaleopathologie\npalestijnensjaal\npanamaziekte\npanarabist\npandita\npaneelwerk\npangi\npanna cotta\npanoramaopname\npanterhaai\npapaja-ijs\npapajayoghurt\npapierriet\npar excellence\nparaboolantenne\nparagneis\nparaplumoord\nparasitoloog\nparelvormig\nparnas\nparnassijn\nparterreappartement\nparticipatiebeurs\npartijconvent\npartijtopper\npartydier\nparwa\npaspoorthuwelijk\npassencombinatie\npastifi\npatates-friteskraam\npatati patata\npatentmeel\npatroonpapier\npavloviaans\npeerdrops\npeies\npeilballon\npekingmens\npelgrimshaven\npelikaanachtig\npen-en-gatverbinding\npendrive\npennenvoerder\npenseelvormig\npepermuntachtig\npepermuntsmaak\npernod\npersad\npersfusiecontrole\npersfusiecontroleregeling\npersoneelsbond\npersonenmeerderheidsstelsel\npersoonlijkheidspsychologie\npertang\npeterseliesteeltje\npetsjorapieper\npicassovis\npickwicksyndroom\npiepbeest\npiepplastic\npiesbak\npigmentpapier\npijnpit\npijpenkabinet\npijpenplank\npikolet\npilcontrole\npindarisch\npindasambal\npinteriaans\npireng\npiripiri\npisang goreng\nplaatkieuwig\nplaatpers\nplaatwals\nplaatzwam\nplafondmortel\nplafondschroot\nplanisferisch\nplankschaatsen\nplantaardappel\nplanterszoon\nplat du jour\nplatenplugger\nplatenreiniger\nplatinahoudend\nplatinakleurig\nplatinazwart\npleier\npleiner\npleisterpil\nploegschaaf\nplombière-ijs\npluisachtig\npluk-ze-wet\npluksgewijs\nplutoniumschip\nplutoniumtransport\npoederzeep\npoepbruin\npoetsextract\npointeloos\npoliopatiënt\npolitbureaulid\npolitiehandvest\npolsdruk\npolswijdte\npommerak\npondteken\nponsstrook\npoolkring\npop-upkaart\npop-upreclame\npopkunstenaar\npoppenmethode\npoppenmoeder\npopulariteitsscore\npopulatie-ecologie\nporknokker\nportiekgesprek\npostcheque-en-girodienst\npostimpressionist\npotemkinfaçade\npotentieprobleem\npotpoldergebied\npottenschuur\npowisi\npoësisleraar\npractical-joker\nprairiepaard\npralerig\npre-emeritaat\npreboreaal\npremie A-woning\npremièrevoorstelling\nprepaykaart\npreëminent\npreëminentie\npriemvormig\nprijs-loonspiraal\nprikwater\nprimus inter pares\nprivaatweg\nprivacyeis\nprivatiseringsronde\nproefspel\nprofafdeling\nprofessorentoga\nprofileerdrang\npropagandachef\npropperig\nprotonraket\npruikenkop\nprulachtig\npseudo-isidorisch\npseudoklassiek\npsychiater-seksuoloog\npsychoseaanval\npubliciteitschef\npubliciteitsvrouw\npublicrelationsmedewerker\npublieksboek\npublieksomroep\npuddinglepel\npuddingmengsel\npuinbrok\npuntlipneushoorn\npuntneus\npurperverf\nqualitate-quafunctie\nquasionschuldig\nqwertyklavier\nraambekledingsfabrikant\nrabbinica\nrachmones\nracketmateriaal\nradeernaald\nradicaalfeministisch\nradicaalnationalistisch\nradiolyse\nradiomeubel\nradiopeiler\nradiopeiltoestel\nradiotaks\nradiumzout\nraffinageproduct\nrakettendebat\nrandkerkelijk\nrapaillepoliticus\nrasegoïst\nrastercliché\nratelschroevendraaier\nrattenkop\nrauwdouwen\nreactorwand\nrealtimeonderzoek\nrebbelen\nrecappen\nreceptenschrijver\nreceptionist-telefonist\nreceptioniste-telefoniste\nrecessieverschijnsel\nrechtshistoricus\nrechtsveiligheid\nrechute\nreclameadviesbureau\nrecorddieptepunt\nreflectiecoëfficiënt\nregeltechnicus\nregentenschool\nregeringsmededeling\nregeringstopper\nregisterwisseling\nreikimeester\nreiskoorts\nrelaxatieoefening\nreliëfstip\nrelmaker\nremaster\nremise-eindspel\nremisepartij\nremisevoorstel\nremotesensingtechniek\nrenaissancescenario\nrendierjager\nrentegever\nreorganisatiebureau\nreproductieonderzoek\nrepubliekvlucht\nreservekapitein\nresonansbodem\nressortraad\nressortraadslid\nrestauratie-ethiek\nrestore-update\nretromode\nreuzenmiereneter\nreveillist\nrhythm-and-bluesmuziek\nribtricot\nricecooker\nrij-op-rij-afschip\nrijijzer\nrijkspolitiegroep\nrijstenat\nrijststro\nrissglaciaal\nrivierkrib\nriyal\nrock-'n-rollen\nroddelzucht\nrodekoolsalade\nrodekoorts\nroebelbiljet\nroedelbaan\nroerketting\nrokkenjagen\nroksplit\nrokzadel\nroldoorbreking\nrolschaatsplank\nrolschildering\nrolsprong\nrolzoom\nromanfragment\nromantechnisch\nrompgebergte\nrookstoel\nroomblank\nroomstel\nrorschachtest\nrotishop\nrotisseur\nrotshaan\nrotterdammertje\nroyaltyjournalist\nrubberbal\nrubensfiguur\nruggenmergtering\nruimte-experiment\nruiterstukje\nrum-cola\nrumcocktail\nrunning gag\nrussofilie\nrvs-wasbak\nröntgenspectrum\nsaalien\nsachertaart\nsaffraandraadje\nsaffraanpoeder\nsaladbar\nsalamkramp\nsalarisslip\nsalesianer\nsalkvaccin\nsalpeterzout\nsamenrollen\nsamensnoeren\nsamenvlechten\nsamenwerkingsvoorwaarde\nsandwichkind\nsaoto\nsatijnbinding\nsatijnzacht\nsauve-qui-peut\nsavannebos\nsavannehert\nsavannehond\nsavannevos\nsaxhoorn\nscandinavist\nschaalvlies\nschaalvormig\nschaarste-economie\nschaduwkandidaat\nschakelwagen\nschedeldeformatie\nscheendekker\nscheepswerktuigbouwkundige\nscheldwoordenboek\nschelvispekel\nschenkelbeen\nschermdragend\nscherpgras\nscheursterkte\nschiervlakte\nschietmot\nschietschijfcel\nschijnkoning\nschijtgeld\nschimmelachtig\nschippersleven\nschitterglans\nschokbehandeling\nschokstaking\nschokvast\nscholenraad\nscholierenopstand\nschoolengels\nschoolslagzwemmer\nschoonheidsvlekje\nschoppenslem\nschopschijf\nschotelwarmer\nschotjesgeest\nschouderbeweging\nschouderholster\nschraagtafel\nschredenteller\nschrijfvlak\nschrijversgeneratie\nschrikneurose\nschrikstroom\nschroefbacterie\nschroefplug\nschroefsteven\nschroefwiel\nschrokhans\nschrootprijs\nschrootverwerker\nschuifdoos\nschuifpuzzel\nschuingedrukt\nschuldenaflossing\nschuringsklank\nschuttersdoek\nschutterslijst\nschuurkurk\nschuurpoeder\nschuursteen\nschwarzwalderkirsch\nscènefoto\nsecondantschap\nsecondegrens\nsecondopiniononderzoek\nsedenteren\nseibel\nseksetest\nselderiezout\nselderijstengel\nsemitistiek\nseniorenburger\nsergeant-majoor-vlieger\nserie-inbreker\nserviceapparaat\nservicereturn\nservobesturing\nshabushabu\nshakespeareaans\nshish kebab\nshoarmaburger\nshoarmakruiden\nshort story\nshutterboom\nsibbenkunde\nsicksinussyndroom\nsiertegel\nsigarettenvloei\nsijsjeslijmer\nsilicoselijder\nsimultaanseance\nsitatoenga\nsjabloonpen\nsjia-islam\nskaldengedicht\nski-internaat\nskiavontuur\nslaapjurk\nslaapkamergeluk\nslaapstoel\nslachtoffertaks\nslagenverkaveling\nslagplank\nslagwerkmuziek\nslakachtig\nslangenhout\nslavenmoraal\nsleepaak\nsleephengel\nslibzuiger\nsliertig\nslijmzwam\nslijpmeel\nslijpplaatje\nslipschool\nslokdarmspraak\nsloopwagen\nsloverig\nsluimerig\nsluipschutterkogel\nsluipschuttersvuur\nsluitketting\nsluitklep\nslurfachtig\nsmeerleverworst\nsmeerzeep\nsmikkelaar\nsnabbelaar\nsnabbelcircuit\nsnabbelen\nsneeuwbloem\nsnelle-interventiemacht\nsnelrekenaar\nsnelvuurgeweer\nsnelwegvignet\nsnijpeterselie\nsnijtang\nsnoepgraag\nsnoepjesfabrikant\nsnoeplustig\nsnoge\nsnotlap\nsnuffelvliegtuig\nsoftwarespecialist\nsoja-extract\nsojavlees\nsoldatenuniform\nsoldijverhoging\nsolistenkwartet\nsolo-elpee\nsolo-oven\nsolvayprocedé\nsongschrijversduo\nsoufflébakje\nsoulinvloed\nspachtelputzen\nspadesteel\nspanfiets\nspanningscoëfficiënt\nspasmeaanval\nspatiewoord\nspeculatiedrift\nspeedbootracen\nspeelgoeddier\nspeelgoedhuisje\nspeelklok\nspeelleerklas\nspeerpuntindustrie\nspelersingang\nspic en span\nspiegelaflezing\nspiegelzool\nspierballenwetgeving\nspierpees\nspierstuk\nspiersuiker\nspiesbok\nspijbelbus\nspilgemeente\nspiraalnevel\nsponsorschenking\nsporenkievit\nsport-bh\nsportbulletin\nsporthygiëne\nsportlievend\nsporttoto\nspotblad\nspraakchip\nspreidlicht\nspreidvoet\nspreidzit\nsprekerstafel\nspringkikker\nspringlat\nspringruiterteam\nspringvrucht\nsproeidop\nsquareback\nsquashsport\nstaalsanering\nstaarlijder\nstaartgeboorte\nstaartpeper\nstaatsbesluit\nstaatschef\nstaatsinvesteringsmaatschappij\nstaccatocultuur\nstadscreool\nstadsguerrillaorganisatie\nstadsvervoersbedrijf\nstakenas\nstalinorgel\nstammorfeem\nstamwapen\nstandyoghurt\nstarfruit\nstate-of-the-artartikel\nstationskap\nstatusladder\nstatusobject\nsteekneus\nsteekpenningenaffaire\nsteekpenningenrekening\nsteendrukkunst\nsteengravure\nsteenkolenwinning\nsteilewandrijder\nsteilwandig\nstellingsgevoel\nstelphoeve\nstemadviescommissie\nstembusafspraak\nstemmingsverbetering\nstemsleutel\nstemvastheid\nstengelvezel\nsteppekiekendief\nsteppekievit\nsteppingstone\nster-van-bethlehem\nsterachtig\nsterexplosie\nstijfkramp\nstijfvloeken\nstijlkritiek\nstijllabel\nstille willie\nstinkvogel\nstinsenflora\nstoepenzout\nstofknoop\nstokmeter\nstolpnaad\nstoneleek\nstootbeitel\nstormrijp\nstortgoedtechnologie\nstortklep\nstraatfiguur\nstraatjunkenproject\nstraatvechterij\nstralingsdruk\nstralingsgenetica\nstrandvogel\nstrategoën\nstrijdkrachtonderdeel\nstrijkecht\nstrijkvrij\nstripverpakking\nstrokleur\nstrooidop\nstrooiwei\nstroomdalflora\nstroomregelaar\nstroopsmeren\nstrovezelplaat\nstructurenvergadering\nstudie-ijver\nstudiebeurzenstelsel\nstudieleider\nstudierichtingsleider\nstuifgaten\nstukgoedbedrijf\nstuurschakeling\nstuwstraalmotor\nsub rosa\nsubstraattaal\nsuccubus\nsudderplaat\nsufkees\nsuggestibel\nsultanarozijn\nsuperdeeltjesversneller\nsuperdoe-het-zelfzaak\nsuperprestigeklassement\nsupervetcool\nsurimono\nsurinamisme\nsurinamist\nsuripop\nsuzanne-met-de-mooie-ogen\nswipi\nsymbolentaal\nsyndroom van Asperger\nsynontologie\nsynthesizermuziek\ntaalbehoud\ntaalconsulent\ntaalpariteit\ntaartjeswinkel\ntaboulé\ntafelbiljart\ntafelgarnituur\ntaikoen\ntajineschaal\ntakehometentamen\ntallegio\ntallshipsrace\ntamponziekte\ntandmedeklinker\ntandoorikip\ntapijtslang\ntarboesj\ntargoem\ntarokkaart\nte bestemder plaatse\nte eniger tijd\nte onzen voordele\ntechina\ntechnologieakkoord\ntefille\ntehuiskind\ntekeningententoonstelling\ntele-informatie\ntelecommunicatiemaatschappij\ntelefooncabine\ntelerecorder\ntelescoopvoorvork\nteloh\ntelrijmpje\nten bewijze\nten geschenke geven\ntennisnatie\ntenorsleutel\ntentamenzaal\ntentoonstellingsinstituut\ntentoonstellingspaviljoen\nter beurze\nter eenre zijde\nter kerke\nter ore\nterekruiter\ntermijnlevering\nterneerliggen\nterneervallen\nterpentijnhars\nterra nigra\nterra sigillata\nterra-sigillata-aardewerk\nterra-sigillataschaal\nterraszitter\nteruggavenbiljet\nterugkomer\nterugploegproject\nterugroeprecht\nterugwensen\ntestexplosie\ntetanusserum\ntewerkstellingsdienst\ntheaterdecor\ntheeautomaat\ntheepakker\ntheeworstje\nthermobarometer\nthermodiffusie\nthomaschristenen\nthuislandensysteem\ntienvingersysteem\ntirette\ntitelapparaat\ntitelrolvertolker\ntitiaap\ntjabé\ntjauwmin\ntoekenningscommissie\ntoelatingsstop\ntoestormen\ntogatus\ntoldienst\ntolstojaan\ntomatensardine\ntoneelfiguur\ntoneelmuseum\ntoneelspelersgezelschap\ntoonbanklening\ntoonduur\ntoongeving\ntoonhoogteverschil\ntoonkunstenaarsbond\ntoonsleutel\ntopcricket\ntopsportliga\ntotallossverklaring\ntourniquetdeur\ntourradio\ntramwegmaatschappij\ntramwegwezen\ntransfer-RNA\ntransfigureren\ntransporttroepen\ntreinenhal\ntrekkoffie\ntreurniet\ntrial-and-errormethode\ntrimtoestel\ntriobezetting\ntripartiteoverleg\ntripmadam\ntrippelpas\ntroefboer\ntrommelvliesontsteking\ntropenwoud\ntrucopname\ntrustcompagnie\ntsuba\ntubelijm\ntuchtprefect\ntulpenveld\ntuner-versterker\ntuniekpak\nturboproptoestel\nturkenbak\nturkenvriend\nturkologie\nturtleneck\ntussentint\ntuttipassage\ntuttut\ntwatwa\ntweedegeneratieallochtoon\ntweekamerparlement\ntweepoot\ntwk\ntype-eenonderwijs\ntypetweeonderwijs\nuienmengsel\nuit kostenoogpunt\nuit milieuoogpunt\nuitdagerslijst\nuitfloepen\nuitgangsverbod\nuitgeversimperium\nuitkakken\nuitkomstprobleem\nuitlaatcenter\nuitstapclausule\nuitvlagoperatie\nultramicroscoop\nultrastructuur\nundercoveractie\nunzippen\nupper class\nups-and-downs\nuraniumverwerkend\nutiliteitsbouwer\nv.l.n.r.\nv.r.n.l.\nvaagdoenerij\nvaasvorm\nvaatwassen\nvaderlandsloos\nvaluta-analist\nvalutamarktinterventie\nvampiersmentaliteit\nvampirella\nvan bondswege\nvan dattum\nvan krommenaas gebaren\nvan likmevestje\nvanghek\nvanityfair\nvastgoedbeleggingsmaatschappij\nveertigurenweek\nveldgrijs\nvelomaker\nvensterdorpel\nvensterrichel\nverbindings-n\nverdachtenkooi\nverdedigingspact\nverduisteringspapier\nverdulleme\nverfmes\nvergassingstechniek\nvergletsjering\nvergrotingsapparaat\nverjaardagsgast\nverkiezingsinkt\nverkletsen\nverkrachtingskamp\nverleidingstheorie\nvermassacreren\nvermogensgroeifonds\nverpappen\nverpleegassistent\nverrichtingsleer\nverrijkingsarbeid\nverschut\nversoberingspolitiek\nverssoort\nvertepunt\nvervalmaand\nvervoerdersoverleg\nvervolmakingsjaar\nverzamelbekken\nverzekerbank\nverzevenvoudiging\nverzinklijn\nvetersluiting\nvetpuistje\nvezelgroep\nvezelmarkt\nvibratoloos\nvice-eersteminister\nvideoverhuurder\nvideoverhuurketen\nvierentwintiguursdienst\nvierentwintiguursservice\nvierenveertigjarig\nvijfkamerwoning\nvijfpartijenakkoord\nvijftigeurobiljet\nvingerkleuren\nvingerspel\nvingertaal\nvioolpedagoog\nvipplaats\nviproom\nvipruimte\nviptribune\nvisgraatdessin\nviskruiden\nvismoot\nvisooglens\nvissenhuid\nvissenleer\nvisserijuitrusting\nvitamine B12\nvlakschaaf\nvlakvijl\nvleesgroente\nvlekvrij\nvliegenklapper\nvlieghelm\nvliegstoel\nvliegtuigbouwconsortium\nvochtkring\nvoetbesturing\nvoetiaan\nvoettitel\nvoj\nvoj-school\nvolksarmee\nvolksballade\nvolksheerschappij\nvolksverhuizingstijd\nvolksvlijt\nvolledigheidsdrang\nvollullen\nvoogdijinstantie\nvoor-Grieks\nvoorgefabriceerd\nvoorrevolutionair\nvoortverkopen\nvoortvluchtigheid\nvooruitgangsideaal\nvooruitgangsideologie\nvormverscheidenheid\nvorstkam\nvos-school\nvraatziekte\nvrachtwagenvignet\nvredespartij\nvreemdelingenbureau\nvrijeluchtinspectie\nvrijemarktkapitalisme\nvrijerig\nvroegneolithisch\nvrolijke frans\nvrouwen-wc\nvrouwenpaar\nvrouwenpraatgroep\nvruchtafdrijvend\nvruchtenbrandewijn\nvruchtgebruikregeling\nvuilniskoker\nvuilnisstort\nvuilschrijverij\nvuisthamer\nvuurkruis\nvuurkruiser\nvuurmuur\nvuurtang\nwaaierigheid\nwalrecht\nwandschroot\nwandsculptuur\nwapenbeheersingsbespreking\nwarimbo\nwarmwaterkruik\nwasemig\nwashi\nwashipapier\nwasi\nwasstift\nwatercooker\nwatertransportmaatschappij\nwederuitgave\nwederuitzending\nwedstrijdmakelaar\nweefselkenmerk\nweerstandsbeweging\nwegdistel\nweggooiartikel\nwegwerpbatterij\nweichselien\nweifelachtigheid\nwelfarewerk\nwensvoorstelling\nwereldmilieuconferentie\nwereldseizoentijd\nwereldtopspeler\nwereldverkenning\nwerkingskrediet\nwerpkracht\nwervelholte\nwervingssecretariaat\nwetenschappelijk-technisch\nwetenschapstheoretisch\nwhiskygrog\nwiekgeklap\nwielrenbroek\nwielvlucht\nwijnkleur\nwijnkristal\nwildschaar\nwildschotel\nwilgachtig\nwinchester\nwindefamilie\nwindschoor\nwinnersmentaliteit\nwinningmood\nwintersportmode\nwinti-ensemble\nwintiritueel\nwisi\nwisselplicht\nwitbestoven\nwitkopaap\nwitoog\nwodanseik\nwoede-uitval\nwolboer\nwolprijs\nwonderblad\nwoon-werkproject\nworggreep\nwortelaanzet\nwortelsoep\nwortelvormig\nwould-beactrice\nwrijvingsvlak\nwurgstokje\nyankee-Engels\nyaws\nyencrisis\nyoghurtbeker\nyoghurtplant\nypresien\nzaadkiem\nzaadstorting\nzaaduitstorting\nzaaizaadbedrijf\nzandrits\nzebra-effect\nzeegeschiedenis\nzeeprovincie\nzeeverbranding\nzeggenmoeras\nzeggenveen\nzegsmens\nzeikstraal\nzelfbedieningspomp\nzelfverdedigingssport\nzelfwording\nzenuwpil\nzenuwvlecht\nzesendertigurenweek\nzesjarenplan\nzestiende-eeuwer\nzestigpluskaart\nzeurderigheid\nzeurprobleem\nziekte van Ménière\nziekte van Weil\nziektegevoelig\nzielknijper\nzigzagmachine\nzigzagnaaimachine\nzijspanrace\nzijspanrijder\nzilverpopulier\nzilverstift\nzilverzout\nzingevingsdeskundige\nzinkgravure\nzinsritme\nzintuigfysiologie\nzipfile\nzit-slaapbank\nzitkubus\nzoektool\nzoetelijkheid\nzoetklinkend\nzomerhausse\nzonne-uitslag\nzonnepit\nzonnewei\nzoutwateraquarium\nzoögamie\nzuidingang\nzuiveringsmiddel\nzwageres\nzwart-Amerikaans\nzwart-witprinter\nzwart-wittoestel\nzwartewoudham\nzwavelkop\nzweetparel\nzwingliaan\nà gogo\nà-la-carterestaurant\nüber-ich\nEerste Kamerfractie\nEerste Kamerlid\nEerste Kamervoorzitter\nHof van Cassatie\nMiddellandse Zeekust\nMiddellandse Zeeland\nTweede Kamervoorzitter\nVlaamse kermis\ndemocratisch socialist\ner bekaaid van afkomen\nhonderd miljoen\njunior manager\nmilitant nationalistisch\nmoleculair bioloog\nop de pof\nte eigen bate\nte gelegener tijd\nte harent\nte hunnent\nte mijnent\nte onzent\nterzijde staan\nver verwijderd\nboekenweekuitgave\ndecafeïné\n3-cijferig\nBosnisch-Servisch\nHabsburgs\nKennemer\nZuid-Limburgs\naandelenparticipatie\naankooporder\naanslagpleger\naanvalslustig\naardappelteler\nabstract-expressionistisch\nachtergrondzanger\nachtvlakkig\nactiefoto\nactiviteitenbegeleidster\nafleidkundig\nalsemachtig\namalgaamvulling\namateurkunstenaar\nantiglobalistisch\nantimonarchistisch\naquatisch\narbeidstherapeutisch\narchitectuurhistorisch\naudiologisch\nbabyfoto\nballetvoorstelling\nbaptistisch\nbasisorganisatie\nbedieningsorgaan\nbedrijfscollectie\nbedrijfsfusie\nbedrijfslocatie\nbedrijfsrelatie\nbekkenbodemspier\nbeknibbelaar\nbelastingverplichting\nbeleggingsbeslissing\nbeleidsconclusie\nbeloningstechnisch\nberoepsontwikkeling\nberover\nbewegingsagogisch\nbewijstechnisch\nbibliometrisch\nbiofarmaceutisch\nbioscoopganger\nbioterroristisch\nbladsprietig\nbleekneuzig\nbloedklonter\nbodembeweging\nboeker\nbonder\nbosbeheerder\nbouwlustig\nbovenharmonisch\nbovenschools\nbuitenlandminister\nbuitenlocatie\nbuzzer\nbètastudie\ncallcentrum\ncarveski\ncertificatie-instelling\nclubcompetitie\ncommunitaristisch\ncompactcamera\ncomputeraar\ncontrole-instantie\ncontrolecentrum\ncreationistisch\ncrewlid\ncystisch\ndagattractie\ndagparkeerder\ndansliefhebber\ndanslustig\ndanstechnisch\ndataverbinding\ndecompensatie\ndeflationistisch\ndekdoorvoering\nderdendaags\ndisfunctie\ndoder\ndoorrijder\ndrieletterig\ndrugsorganisatie\ndrugssmokkelaar\ndubbelcijferig\ndubbeling\ndubbelsporig\nduiveluitdrijver\nduivenhouder\ndunharig\ndunwandig\nduwer\ndvd-film\neelterig\nelektroakoestisch\nendoscopisch\nenergieverbruiker\netatistisch\nevangelisch-luthers\nevenwichtspositie\nex-kraker\nex-psychiatrisch\nfalangistisch\nfattig\nfietsliefhebber\nfietsstalling\nfijnmechanisch\nfilegevoelig\nfilmposter\nfilmrecensie\nflamingantisch\nfte\nfundamentalistisch-islamitisch\ngalvanoplastisch\ngebruikersorganisatie\ngehandicaptenorganisatie\ngeitenhouder\ngelijkhebberig\ngeloofsuiting\ngeluidsdemper\ngezondheidskundig\ngraaier\ngraffitispuiter\ngringo\ngroeidoelstelling\ngroepsbezoek\ngroepssessie\ngroepstherapeutisch\ngroepswoning\ngrondstoffenleverancier\nhalachisch\nheksenvervolging\nheteroman\nhobbezakkig\nhobbydier\nhomovijandig\nhorecamedewerker\nhuidafwijking\nhuurteam\nhyperkinetisch\nidentiteitsgevoelig\ninbreidingslocatie\ninformatieprogramma\ninterieurfoto\ninterim-bestuurder\ninternettoepassing\njazzpodium\njeugdervaring\njubileumreceptie\nkampeervakantie\nkandidaat-huurder\nkantoormedewerker\nkathodisch\nkennisinstelling\nkerninstallatie\nkerstman\nkinderpornografisch\nklantenrelatie\nkleurvariatie\nkliko\nkolfvormig\nkortfilm\nkostenoverweging\nkraaierig\nkraakvers\nkrijgslustig\nkunstfilm\nlaagvormig\nlaboratoriumsituatie\nlandschapsfoto\nlanglaufski\nlangtongig\nleerprestatie\nlesaantekening\nlezersreactie\nliberaal-economisch\nlibertarisch\nlichtharig\nliftinstallatie\nlonginfectie\nluchthapper\nluministisch\nmacrocijfer\nmadrassa\nmarketingactie\nmarkteconomisch\nmarktvorser\nmbo'er\nmbo-instelling\nmedegebruiker\nmedisch-specialistisch\nmeerketting\nmeerlagig\nmeerpolder\nmeerring\nmensenhandelaar\nmerkdealer\nmeubelverkoper\nmiddaguitzending\nmijnbouwer\nmilieuverbetering\nminicontainer\nmono-etnisch\nmoreel-ethisch\nmoslimfamilie\nmoslimkind\nmotorrijtuigenverzekering\nmp3-speler\nmuizig\nmuziekproductie\nnavelstaarderig\nnegationistisch\nnegendelig\nnetgebruiker\nneurobiologisch\nneurochirurgisch\nneuropsychologisch\nniet-alcoholisch\nniet-giftig\nniet-inheems\nniet-kenner\nniet-woning\nnootvormig\nobligatiebelegger\noligopolistisch\nonderhoudsuitkering\nonderzoeksinspanning\nonderzoeksinstantie\nontuchtpleger\nontwikkelingsafdeling\nontwikkelingsinspanning\nontziltingsinstallatie\noogbeweging\nopbreking\noperaliefhebber\nopnamesessie\nopvanginstelling\noud-bewoner\noud-inwoner\noverheidsbeslissing\noverheidswerkgever\noverlastveroorzaker\nparallelbaan\npartijbestuurder\npatiëntenpopulatie\npensioenverplichting\npersoneelswisseling\npiercer\npizzabezorger\npleuritisch\npolitiek-filosofisch\npolitiek-historisch\npolitieregister\npopper\npreventiewerker\nprijsonderhandeling\nprijsrisico\nprijswijziging\nprivépartner\nproefnotitie\npubliciteitsgevoelig\npublieksfavoriet\nraadsmedewerker\nradarverklikker\nraketbeschieting\nrechts-nationalistisch\nrechtsfilosofisch\nrechtshulpverlener\nrechtspositieregeling\nrecordboek\nrecreatieondernemer\nrecruiter\nreiservaring\nrenster\nreseller\nreservelid\nretourzending\nreumatologisch\nrijprestatie\nrisicodrager\nrouter\nruiltransactie\nruimtelijk-economisch\nrustzoeker\nsatanistisch\nschachtvormig\nschaduwverkiezing\nscheepvaartverbinding\nschijnconstructie\nschrokkig\nschubvleugelig\nsekspartner\nservicemedewerker\nsitebezoeker\nsmartig\nsmokerig\nsoapachtig\nsociaalpsychisch\nsociobiologisch\nsoftwaretoepassing\nspammer\nspeciaalbier\nspeelvoorziening\nspiersamentrekking\nsportminister\nsportvoorziening\nspraakgebrekkig\nstaatsdeelneming\nstaatszender\nstadsbestuurder\nstadsvilla\nstandaardoptie\nstandaardsituatie\nstationslocatie\nstekelvinnig\nstelkundig\nsterkbenig\nstijgijzer\nstookinstallatie\nstripachtig\nstriptekening\nsubsidieaanvrager\nsuperzuinig\ntbs-instelling\nteamvergadering\ntelefoonaanbieder\ntoekomstvoorspelling\ntoetreder\ntopbestuurder\ntopfilm\ntopklinisch\ntrainingspartner\ntransportminister\ntreinserie\ntreinvertraging\ntussenschools\ntv-studio\ntweedehandsauto\ntweekapper\ntweescharig\nuiachtig\nuitbreidingslocatie\nvaarvakantie\nveelkantig\nveelknopig\nveelslachtig\nveelwaardig\nveevervoerder\nveiligheidscamera\nveiligheidsinstantie\nveiligheidsregeling\nverkeerstelling\nverkeersverbinding\nverkiezingsfolder\nverwerkingsinstallatie\nverwijzer\nverzorgingsinstelling\nvideoprojectie\nviercijferig\nviertonner\nvinpotig\nvirusprogramma\nvirusschrijver\nvisbereiding\nviskweker\nvispopulatie\nvissersfamilie\nvisumaanvrager\nvliegtuigbemanning\nvoetbaltechnisch\nvolwassenenafdeling\nvolwichtig\nvoorbidding\nwaardestelsel\nwagenparkbeheerder\nwarmwaterinstallatie\nwaterbeheerder\nwaterwoning\nwebsurfer\nweefselmonster\nwegafsluiting\nwegopbreking\nwelstandig\nwereldfietser\nwerkdadig\nwerkingssubsidie\nwerklocatie\nwetshandhaver\nwinkelaar\nwooncorporatie\nzaaioester\nzeeotter\nzelfmoordcijfer\nzendfrequentie\nzijanker\nzorgwoning\nzwart-romantisch\nzwartkoppig\ninsectenpoeier\npush-up-bh\npush-upbeha\nwegzagen\nrondzeulen\nherkwalificeren\nsederen\nvandaliseren\nhydrateren\noranje-geel\nnaleveren\nstageadres\nkandidaat-land\nmega-investering\nwegmasseren\nverkleven\nveelgelaagd\nmoegetergd\ndiepergaand\nzelfvernietigend\nbeeldvormend\nrelschoppen\nallesvernietigend\nzonwerend\nvastrentend\nweglezen\ngeel-rood\novergeproduceerd\nvoortstuderen\nongedocumenteerd\nobjectgeoriënteerd\nmarktgeoriënteerd\nporteren\nlageren\nburgeren\nmodisch\ndoofblind\nlievelingsplek\nkaderstuk\nJiddisj\nmimiset\ntuinschuur\nmediatiek\nstikstofrijk\nnatuurrijk\nsneeuwrijk\nsubliminaal\nsubregionaal\nantiliberaal\nepiduraal\npluraal\ntransmuraal\nfractaal\nzwart-geel\nblauw-geel\nemotievol\nsoulvol\ninhoudsvol\ngrijs-groen\ngeel-bruin\nonzinkbaar\nsuperzwaar\nrietgedekt\nwelgemikt\nbruin-zwart\nallerleukst\nadv\nnaw\npdf\nsf\ntl\ndierenactivist\nweesgegroetje\nMalediven\nWK\nEK\nteststof\nvanop\nreview\nkredietcrisis\nVI\nmg\nhare\n3D\nNK\nscreening\ngeb.\n23-jarige\n18-jarige\nXVI\n21-jarige\n16-jarige\n20-jarige\nPvdA-fractie\n24-jarige\nfilmkeuze\nblogger\nRNA\n22-jarige\n17-jarige\nABS\ninfrastructuurbeheerder\nRSS\nA3\n26-jarige\ncontactgegevens\nbasisverordening\n28-jarige\nHRM\n14-jarige\nVVD-fractie\nfysio\nvoorzieningenrechter\n27-jarige\nCDA-fractie\nH5N1\n30-jarige\ndouanevervoer\n15-jarige\n12-jarige\n38-jarige\n33-jarige\n32-jarige\nafb.\n29-jarige\nkookvocht\n31-jarige\nzoekresultaat\nkaderrichtlijn\n35-jarige\ntoewijzingsplan\nWOZ-waarde\ncapaciteitsopbouw\n25-jarig\nVN-Veiligheidsraad\nWaterschapswet\nGBP\nprevalentie\nbelastingcenten\ngeo-informatie\nEU-niveau\nEU-beleid\n20-tal\nvogelgriepvirus\ncontactformulier\nSP-fractie\n34-jarige\n37-jarige\nonderzoektijdvak\n13-jarige\n36-jarige\nhielspoor\n41-jarige\ninburgeringsexamen\n40-jarige\nprofielpagina\nspeelplezier\nbijl.\nsupergoed\nZorgverzekeringswet\nno.\n10-tal\nkaderbesluit\nsuperleuk\nprogrammatie\nchippen\n43-jarige\nrisicogewicht\noplader\n11-jarige\n42-jarige\ncompetentiegericht\nmanagementinformatie\n39-jarige\ndataset\nbedrijfsuitje\ngebiedsontwikkeling\nregelgevingskader\nspringkussen\nleegstaand\nHades\no.b.v.\nhuurtoeslag\n50-jarige\nbegrotingslijn\nstamboomforum\nheraangelegd\ngroepsvrijstelling\n47-jarige\nspammen\nCAD\nms\nBosnië-Herzegovina\nEU-wetgeving\ndrugshol\nwifi\nhabitattype\ndeskundigenbericht\nv.w.b.\nwildkleur\n60-jarige\n10-jarige\nprobiotica\n44-jarige\nwondgenezing\n46-jarige\nregering-Bush\nzomergerst\nLAN\nsnaartheorie\nvogelpestvirus\n3-tal\nEU-lidmaatschap\nkabinet-Balkenende\nSP-Kamerlid\nbalansdatum\n48-jarige\nterrorismefinanciering\nsubforum\nzeegebied\n52-jarige\nkredietprotectie\nschoolomgeving\nhoofdpagina\nlaseren\nbewaarplicht\nMDF\nT-splitsing\nmassastaking\narbeidersstrijd\nplandeel\nbedrijvengids\ngeneratiepact\nbegrotingsautoriteit\nUSB-stick\nsmartphone\ninternetforum\nweblogger\nverkoopseizoen\nwaterfase\ntijdskrediet\nwerkingsgebied\nPvdA-leider\nNOS-journaal\nadresbalk\nblogpost\nbroederij\nopbergvak\nonderwaterwereld\nringenstelsel\naanschaffingswaarde\nspiegelreflex\nhielbeen\nGMT\n51-jarige\ncamperplaats\ntestproces\ndoormailen\ntestcyclus\nIT-afdeling\npimpen\nZuiderzeelijn\nregeldruk\nVVE\nOCMW-voorzitter\nPLC\nentmateriaal\nhoofdveld\n65-jarige\nAmazonewoud\ntoewijzingsbesluit\nnierinsufficiëntie\nIT-organisatie\nfuifzaal\nveiligheidssector\nOCMW-raad\nherbevolking\ncoax\nafknallen\n75-jarige\nkalibratie\nAAA\nwebruimte\nclubavond\noverheidsdienstverlening\n62-jarige\nzoekveld\nreisovereenkomst\npeilbeheer\ndetailniveau\nenergieprestatie\nfamiliehotel\nziektedruk\nsudoku\npakstation\nbeleidsregel\n56-jarige\nMaasstad\nburgerjournalistiek\nvreemdelingendetentie\narbeidsmiddel\nketentest\nverborgene\neffectbeoordeling\nspeelpleinwerking\nlijnmanager\nstemwijzer\nluisterboek\nonderhandelingsprocedure\nkaderregeling\nKuipergordel\nvisagie\n7-jarige\ndienstenrichtlijn\nvervoersbeperkingsgebied\nPVV-leider\n72-jarige\ngroenbemester\ngrondgebruiker\ngrensgevangenis\ngroepsfase\nenerverend\nA-selectie\nvredesdetachement\nvetverbranding\nmensenrecht\nlactatiekundige\nhoofdgeding\nonverdoofd\ngetuigenbescherming\nverdunningswater\n1-jarige\ni.c.m.\n3M\nglucosamine\n20-jarig\nhomobeweging\ndatacentrum\nEtrusken\nprogrammeringsperiode\nbeoordelingsvrijheid\ncellengebouw\nbasisoverleg\nosteopaat\n3-jarige\nstrandvakantie\n59-jarige\nschaalniveau\nbasisvermogen\n63-jarige\nketenzorg\nhyperthermie\nAEX-index\ntoverstok\n49-jarige\ndosisniveau\ntoegangspunt\nbeperkingsgebied\ninlogcode\nVPN\nsuikersector\nwinstvoet\nEG-recht\nactiviteitenverslag\navondmarkt\nhondenschool\nkleinstedelijk\nzwemvijver\nterugvorderingsbeschikking\nVN-resolutie\na.g.v.\n79-jarige\ninfra\nnieuwsartikel\n61-jarige\nCDJA\ndeelvenster\npostrichtlijn\nov-chipkaart\nhuishoudfolie\nparkmanagement\nchiropractor\nspaghettisaus\nstikstofmonoxide\nvrijstellingsprocedure\nCJP\nPvdA-fractievoorzitter\nC-klasse\nEG-bijdrage\nVHF\nbijboot\nvrijgezellenfeest\nbodemkaart\ntestomgeving\nvliegtaks\nschoolboerderij\nnrs.\ntypegoedkeuringsinstantie\nophokplicht\nvismaat\npeesplaat\noersoep\nbardienst\nveiligheidscultuur\nverdunningslucht\nlevensmiddelenwetgeving\nhoofdonderzoek\n100-tal\nbio-olie\ninterventiebureau\nEU-verband\nkennisnetwerk\nvarkensgriep\nH5N1-virus\nclubkampioenschap\nmarktdeelnemer\naansluitvergunning\nBelgenland\nwarenproductie\nsoeps\nleerlijn\n68-jarige\nPvdA-Kamerlid\nenneagram\ndarmwerking\nEU-regelgeving\nbestandssysteem\n71-jarige\nwetsgeschiedenis\nthemafeest\nmensensoort\nnetwerksite\ntaakbalk\nstreefbeeld\ntransactielogboek\nvalentijn\nveldbeemdgras\ngemeenteraadszitting\nproductontwerp\ngoedkeuringsinstantie\nvluchtuitvoering\nanti-islam\nvijverrand\noranje-blauw\n53-jarige\ncocktailglas\nMaasoever\nslachtpluimvee\ntestconcentratie\nIRT-affaire\nkartelpartner\nkennisdeling\nopvangbak\nsuperlekker\nsoortvorming\n60-tal\ndistributieriem\nbedrijfsprogramma\nablatie\nbewonerskaart\nopbouwmissie\nmelanine\nkerkzaal\nklantmanager\nsuperveel\nIT-infrastructuur\nbadolie\nzeilvakantie\nopeningspost\ninteroperabiliteitsonderdeel\n90-jarige\nfaalkosten\nwoonuitbreidingsgebied\nroofblei\nseizoenskaart\nhakselaar\nomslagheffing\nijklijn\n74-jarige\nleidingwerk\nE-klasse\n2-jarige\n73-jarige\nbegrotingsprocedure\nhypotheekcrisis\nEU-voorzitter\ninhoudingsplichtige\ngoederencorridor\nduikstek\nmarkttoezicht\nbewegingsrichting\ndouanewetboek\nbasisexamen\nvezelvlas\nVVD-leider\nzorgpremie\nvalkparkiet\nleverdatum\nEDI\nmaangod\nmotorfamilie\ntoereikendheid\nwaarheidswaarde\narbobeleid\nplanproces\nreferentiestof\nArbobesluit\napplicator\nvoertuigtype\npaniekstoornis\nSchipholbrand\nbeeldsensor\nbiopt\nzoekscherm\nkwalificatiestructuur\nbeginpagina\nmuziekspeler\nbeoordelingsperiode\nsupergezellig\neivoer\nhandset\nopleidingsonderdeel\nvrijspreker\nhaatzaaierij\npaardenmelk\nkinetiek\nstikstofbemesting\nnabuurschapsbeleid\nmedebeslissingsprocedure\ncompetentiemanagement\noorsprongslandbeginsel\nRFID-chip\nindienststelling\nbrandwerendheid\ninsulineresistentie\nsponsorloop\nindicatiebesluit\ndienstwerk\nopaciteitsmeter\nindicatieadviseur\nwerkelijkheidsbeeld\ninvloedsgebied\nOCR\nwoonvisie\nSER-advies\ngasfase\ndierenspeciaalzaak\nimplementatietraject\n64-jarige\nSP-raadslid\n81-jarige\nnakweek\nhobbypluimvee\ndwergplaneet\ndroogpak\ne-overheid\nMayakalender\nreferentielaboratorium\nsubcomité\nvijverwater\nICT-infrastructuur\ndataverzameling\ntinnitus\nmailbericht\ninstellingsaccountant\nDEET\nstoringsindicator\nbestuurderskant\nhooggevoeligheid\ninfrastructuurcapaciteit\nenergiestroom\nmyositis\nthuisnetwerk\nprogrammabegroting\nbeeldbank\noperatiekwartier\nhuidlaag\nmogelijkheidsvoorwaarde\nherenteam\nconcessieovereenkomst\nmotortype\noptielijst\ngolfsport\nblikvoer\nknalroze\nPvdA-wethouder\nimplementatieplan\nfunctiemenging\nIrakoorlog\nschoolpremie\nproductieomgeving\nregelgevingsprocedure\ngroeiwijze\n15-jarig\nEU-grondwet\nringkern\ncultuurdienst\ndroombaan\nwatertechnologie\ndrugsinfo\nontspanknop\n69-jarige\ntopo\nknolaanleg\nlinkerhersenhelft\nwereldproletariaat\n67-jarige\nkwaliteitsverhouding\npodoloog\nwebredactie\nketensamenwerking\n6-tal\nstreekproduct\nspraaksignaal\npuinhelling\nzoutvlakte\nreisaanbod\nActiviteitenbesluit\nscheerbeurt\nadvieswaarde\nall-in-one\nkraakverbod\nhypotheekofferte\nEG-hulp\nvingerknip\nLeiedal\ntriage\ninterventiegroep\nprojectweek\ndecreetgever\nverbureaucratisering\nEU-strategie\nzaak-Dutroux\nzorgproces\nverblijfskaart\nMichelinster\ncontactoppervlak\nERP-systeem\nleertraject\nregressieanalyse\nheupkop\nverbetertraject\nERP-pakket\nspoorwegbedding\nuitloging\nSchengengebied\nbeleidsperiode\ngebiedseigen\nwebsitehouder\nartikellid\n83-jarige\nautohuur\nbasisolie\nreisleiding\nmotorruimte\nfunctietoewijzingsproces\noveractiviteit\nkasteeldomein\nwindbelasting\n76-jarige\nvuilwatertank\ntussenteelt\nhobbykamer\nD66-fractie\nPvdA-raadslid\nVN-mandaat\n100-jarig\n77-jarige\nerfgoedbeleid\nhobbymatig\n57-jarige\npedopartij\nbermbom\nkapitaalaccumulatie\nVLD-voorzitter\nveiligheidsketen\ninfovergadering\nbeheersorgaan\nwinterlinde\n60-jarig\nfilmavond\n25-tal\nnavigatiebalk\npatchen\nretinopathie\npancreatitis\nvisiedocument\nbroodbakmachine\nneokapitalisme\nmeetniveau\nEU-voorzitterschap\nrekentoets\nkabelboom\nmacro-evolutie\naanmeldformulier\ncalciet\nzeevaartsector\ndouanerecht\nbeschermgas\nkleinburgerij\nEU-gemiddelde\nbarrièrewerking\ndrooggewicht\nhiken\nvrouwenlichaam\nsuperstorm\nresultatenlijst\nwrap\nt.h.v.\nwindlade\nopzoekwerk\nhoofdruimte\ntraanfilm\ntraagschuim\nleerkrediet\ncoördinatiemethode\nopeningsdans\nglasvocht\nproductveiligheid\na.d.h.v.\ncalibratie\narmoederisico\nVN-missie\nnekpijn\nfacilitering\nvervangingskatalysator\ngendergelijkheid\nfotolijst\noverlevingsdrift\nsupergaaf\ndinghy\ndaguitstap\npersoneelsuitje\nwereldkapitalisme\ntestwagen\ndouchegel\ncilinderkop\nzondoffer\nIJsselmeergebied\ngroeipact\nplasmamembraan\nsnacken\nRekenkamercommissie\nEMU-saldo\nklantcontact\nmonstername\nEG-verdrag\ntewerkstellingscel\nremediëring\nbuikvet\nzorggebruik\nmacula\nmaagband\nlooppatroon\nmixtape\nwaterpark\nrechtskeuze\nreferentiefunctie\ntoiletgebouw\nstadsproject\nbegrotingswijziging\nlimbisch\nperfusie\nmassageolie\nslaaponderzoek\nwereldvisie\naankomstlijn\nbuiskap\nduurtraining\nloginnaam\nSP-afdeling\nhondenbeleid\nvogelpestcrisis\nEU-top\ntestsysteem\nprojectgebied\nmetalband\nionenmotor\ninformatiehuishouding\nVVD-Kamerlid\ndampscherm\nclublogo\nbikinilijn\ndiermodel\nnatuurwinkel\nminderwerk\nenergiedichtheid\nklimaatopwarming\nSP-leider\nbeleidsdialoog\ntienerdochter\nbuitenschrijnwerk\ninburgeringsverplichting\narbeidsparticipatiegraad\ntuktuk\nontwikkelproces\ngame-industrie\nledenbrief\nmonovolume\nnanny\nEU-bijdrage\nverderfs\n7-tal\nDNS-server\nsuperuniversum\nkoolsoep\neiproductenindustrie\nnatuurpunt\nspinhengel\ngeboortehoroscoop\nhefboomgebied\npeperwater\nbabynaam\npenisring\nzaadopbrengst\nmacrofauna\nmaculagat\nsupersport\nbasisspel\nScheldereglement\ne-mailmarketing\nopiumwetgeving\nCDA-minister\nvoertuigfabrikant\nlimiettest\nlumen\nboogie\ntrombo-embolie\nbuikzijde\nSovjetstaat\nhypoglykemie\nendotheel\ncrosstrainer\ntrombosedienst\nTutsi\nhogesnelheidsspoorwegsysteem\nlicentiëring\nopzegbrief\nCIA-agent\nmilieu-impact\ninlaatspruitstuk\nhuidweerstand\nwebcast\nslaapmedicatie\nWK-finale\ndiabeteszorg\nkwaliteitsborgingsysteem\neigenwoningschuld\n78-jarige\nlagerugpijn\n66-jarige\ncytotoxiciteit\ngeldigheidstermijn\nhervormingsagenda\ntrimbos\nnetwerkkabel\nrandomisatie\ninformatiepagina\nvideosite\nneurotoxiciteit\nstoflichaam\nAfro-Amerikaanse\nschoolspullen\nomgrachting\nprolactine\nsuperhandig\nKosovo-oorlog\nidentificatiecode\nvismigratie\nstoepkrijt\nVN-gezant\nbotafbraak\ngasstroom\nopdrachtbevestiging\nperfusionist\nafleidingsmateriaal\nOscarnominatie\n8-tal\nhartchakra\nvormtheorie\nbedrijfsprofiel\nheilsgeschiedenis\nkinderopvangtoeslag\nvisstandbeheer\ninfosessie\nlichaamsvreemd\nondernemingsnummer\nkoivijver\n14-jarig\nklantendatabase\nbasisvergunning\ncultuurbeleidscoördinator\nklikfraude\nracegame\nmultimeter\nzoektechnologie\nbeleidsveld\nbedrijfsmiddel\ntaalprof\nsubsidiereglement\nevolutionisme\ncelcyclus\noxazepam\nreviewen\ntandplak\ndoorbuiging\ndouanegebied\nactiveringscode\nslokdarmkanker\nkleuterjuf\ndistrictshuis\nclustermunitie\nmobiliteitsmanagement\nresonansgroep\nheffingsmaatstaf\nruimtevaartagentschap\nnieuwjaarsborrel\nEU-lid\nauditcommissie\n13-jarig\nvreemdelingenstemrecht\nwoonservicewijk\nminivan\nheemkring\nwaardepeildatum\nmaanrand\nprogrammamanagement\nhoofddoekenverbod\npreventieadviseur\nenergievoorzieningszekerheid\n86-jarige\nsamenlevingsovereenkomst\naccuraatheid\nmyopathie\ndownloadsnelheid\nwasco\nkwaliteitszorgsysteem\ngebruiksfase\nberoepsmobiliteit\nex-moslim\nreferentiegegevens\nhuidveroudering\nbagageband\nmaaibeheer\nwoningwaarderingsstelsel\nprecessie\nkuddegedrag\nrichtlijnvoorstel\npompfunctie\nberoepsbrandweer\nkliksysteem\nmoederpoes\nschijtziek\nassociatieproces\nvochtvoorziening\nbotscan\nalufolie\nteambaas\nsupertof\nfanshop\nbabyspullen\nkweekhok\nenergiezorgsysteem\ngiststarter\nvoorjaarscompetitie\nVVD-wethouder\nsterartiest\nEU-markt\nlevenskader\nkraamverzorgende\nLozingenbesluit\nbloedgeil\nsubonderdeel\nprostaatcarcinoom\nsuikersiroop\nautorondreis\nmediawijsheid\npomphuis\nbinnenspeeltuin\ntransferbudget\nhoofdspiegel\nademlucht\nuitkomstmaat\nvakbondsafvaardiging\nonderhoudsbehandeling\nbiogasinstallatie\ndrugsinfoteam\nactiepotentiaal\ngeldcreatie\ncumuleerbaar\nregering-Leterme\nbovenrug\nsubdealer\nkringerigheid\ngisterennamiddag\ndekvrucht\nbijslagtrekkende\nschottendek\nendometriose\nhoofdbudgethouder\nijzerzandsteen\nontwikkelomgeving\nbankencrisis\nneusslijmvlies\nhomogemeenschap\nsecuritisatiepositie\nmondslijmvlies\narachidonzuur\nuitslaapkamer\ntoverhazelaar\nwijknetwerk\nuitsluitingsclausule\nbergwereld\nCDA-leider\nfotovraag\nbewegingsbeperking\nhoofd-halsgebied\nverdelingscoëfficiënt\nwaterkwantiteit\narbeidszorg\ncontactinformatie\nzwemseizoen\nberoepsregister\nbemensing\nvoorvrucht\nfunctiewijziging\nsystemisch\nhydratatie\nJupitermaan\nwegenvignet\nstijghoogte\namoxicilline\nsubsidieplafond\noogstand\npeesblad\nklimaatproblematiek\nniet-standaard\nbietenteelt\nAWACS\nspoedafdeling\nzorgteam\nmeeteenheid\nbeeldformaat\nniet-jood\nrechtsverhouding\nparfumolie\nironieteken\nprojectresultaat\natletiekpiste\naccijnstarief\nbouwvorm\nbegeleidingsstructuur\nvroegpensioen\nvochtafdrijvend\nschutbord\nnandrolon\nGrebbelinie\ninformatieanalyse\ntulpenwindhandel\nopbrengstderving\ndimensionering\nstadsweefsel\nKrimoorlog\nkleurslag\nuitlaatgasstroom\nondervacht\nmailformulier\nopleidingscommissie\nkinderpsycholoog\nbuitenterras\nprogrammaperiode\nreissnelheid\narbeidersdemocratie\nTaurusgebergte\ncontactpagina\nwerkgang\ng-spot\nkopersbescherming\nobjectbeschrijving\nschermafbeelding\nobjectnummer\nbetalingsmethode\nnieuwstaat\ntransittijd\nprivacyverklaring\noverlegpagina\ngebruikerslijst\nthuiswinkel\nschadeauto\nreisperiode\nzoekformulier\nretourbeleid\nafspeellijst\nlijstweergave\nautonieuws\nwoonoppervlakte\nvriendenlijst\nprintversie\ngebruikersprofiel\nadressengids\nadvertentiesite\nzoekvak\ntrouwkleding\nwebradio\npartnerprogramma\nbuitenspeelgoed\ngemeentegids\nneerklapbaar\nwinkelmand\nafdekhoes\nnagelstudio\nnaamruimte\nboekingsformulier\nbabyspeelgoed\nsubrubriek\noverheidsloket\nartikelcode\nsportweek\n18-jarig\n21-jarig\n16-jarig\n24-jarig\n17-jarig\nCalifornisch\nlevel\n30-jarig\n12-jarig\n35-jarig\n40-jarig\n11-jarig\n50-jarig\n10-jarig\n65-jarig\n75-jarig\n7-jarig\n1-jarig\n3-jarig\n90-jarig\n2-jarig\nvirusdeeltje\ngedragsprobleem\nT-cel\nniet-discriminerend\nvoedselbank\nuitvoeringsmaatregel\nhartprobleem\n50-plusser\nzenuwbaan\nEG-producent\nbasistechniek\nprobioticum\nstrategiedocument\nterreurverdachte\nhuidprobleem\nwelzijnsprobleem\nlandschapselement\nFrans-Vlaams\nmilieuprestatie\nhandelskern\nrenovatiewerk\nmillenniumdoelstelling\nverslagene\nTsjetsjeen\nbasisbeginsel\nprachtwijk\nlandbouwsubsidie\nleerprobleem\nE-nummer\nBalkanland\nbedrijfshulpverlener\ngewichtspercent\nCarthager\nmoslimbroeder\ninburgeraar\nrechts-extremist\nhersendeel\ntransmissiesysteembeheerder\nHabsburger\nAssyriër\nDuits-Nederlands\nhaatzaaier\ntechnostarter\ncardiaal\nICT-project\ngeheugenprobleem\nIT-manager\nhobbydierhouder\nritmestoornis\nmachtshebber\nNederlands-Duits\nIT-medewerker\nislamofoob\nkapitaalvereiste\nkeylogger\nIsraëlisch-Palestijns\npraktijkopleider\nGrieks-Romeins\ncomplotdenker\ndownloader\neetbui\nazijnzeiker\nlinkpartner\nrugdrager\nEU-norm\ntetrapode\nsupergroot\n17e-eeuws\nluipaardgekko\nmoslimterrorist\nontwikkelingsdoel\nspeelmogelijkheid\nabiotisch\nkunstinstelling\ndoelvoorschrift\nspambericht\ndoelsoort\ntelecommunicatieorganisatie\nknelpuntberoep\nprestatieafspraak\nallerlekkerst\nminigame\nweerspreuk\nvlaggenstaat\nWaregemnaar\nstrandwal\nweldoend\nverkeersregelinstallatie\nsoftwarepatent\ngedragsmatig\nmultifocaal\nniet-biologisch\ntramspoor\nsupermooi\nkalkoenbedrijf\nstarterswoning\nbetaalorgaan\nleerpunt\nHutu\n19e-eeuws\nonderhoudsproduct\nzenuwuiteinde\narbeidsregeling\ncontactmoment\nwijkcontract\ndownloadbaar\ngastro-intestinaal\nreferentiecentrum\nmilieu-effect\nkerntechnisch\ninterinstitutioneel\nreststroom\nEU-instelling\nklimaatmodel\nICT-toepassing\nFNV-bond\nIT-project\nerfgoedinstelling\nbewegingsactiviteit\nmulticulturalist\ndienstverplichting\ncamerabeweging\nremleiding\nmillenniumdoel\nrugprobleem\nuitzetcentrum\nkaderstellend\nanti-Europees\nmaatwerkoplossing\ngroepsles\nbedrijfsbreed\nverbeterpunt\nplantenextract\nkansengroep\nGGZ-instelling\nrechtsinstrument\nmailadres\nresidueel\nwetgevingsvoorstel\nFrans-Belgisch\nproducentenorganisatie\nschildklierprobleem\nstresshormoon\nvochtprobleem\nsectorbreed\nEtruskisch\nanti-epilepticum\nzoekcriterium\nzebravink\norgaansysteem\ndatingsite\ngesteeld\nbaleinwalvis\nbasisschoolkind\nomrekeningsfactor\nvochtinbrengend\nacupunctuurpunt\ndollarteken\nzintuigcel\nstraatcoach\nwapeninspecteur\nlaadtijd\noverheidsambtenaar\nkarmisch\nolieverlies\nRFID-tag\nepilepsieaanval\naanbestedingstraject\naannemingsovereenkomst\naasvis\nafscheidsdiner\nafschermplicht\nanalyseapparatuur\nappelzuur\napplicatiebeheer\napplicatiebeheerder\napplicatielandschap\napplicatieserver\nbabyolie\nbalanstelling\nbankcrisis\nbarbarendom\nbasismodule\nbatterijduur\nbedrijfsoverdracht\nbeeldverwerking\nbeenlengte\nbegrotingsreserve\nbehandelaanbod\nbehandeltraject\nbekkenpijn\nbelastingverordening\nbeleidsartikel\nbeleidscyclus\nbeleidsdomein\nbeslisboom\nbestelbaar\nbestuursploeg\nbetrouwbaarheidsverklaring\nbeveiligingsbeleid\nbewegingsvorm\nbijdragevoet\nblaarvorming\nblaasgruis\nbladrand\nbloemkleur\nblootstellingsniveau\nboekhoudpakket\nbosmaaier\nbouwkwaliteit\nbouwweg\nbreedbandpenetratie\nbreekmes\nbrilsterkte\nbruidsmode\nbudgetmeter\nbuienradar\nbusinesscase\nbuurtmanager\ncalciumkanaal\ncamerastandpunt\ncasemanager\ncenterspeaker\ncinemazaal\ncisgenese\ncliëntenparticipatie\ncommunicatiemanager\ncompetentieprofiel\nconceptontwikkeling\ncontrolearts\ncontrolebezoek\ncontroleprotocol\ncontrolestrategie\ncorporatiesector\ncrossmedia\ndarmslijmvlies\ndaslook\ndatacenter\ndataverlies\ndeeglap\ndenkstelsel\ndepositogarantiestelsel\ndeskresearch\ndetailinformatie\ndeurwachter\ndiabetesverpleegkundige\ndienstverleningskwaliteit\ndistaal\ndodentocht\ndoelgroepenvervoer\ndoelloosheid\ndoorvoersnelheid\ndraagarm\ndraaggolf\ndraagvloer\ndrukval\nduikinstructeur\nduikvakantie\ndwerghamster\ndwergster\neenheidswetenschap\neindbaas\neindklant\neindversterker\nembryoselectie\nenergiebevoorrading\nenergiemeter\nenergievraagstuk\nexpertmeeting\nfaunabeheerplan\nfeestbeest\nfeestlocatie\nfiatgeld\nfietsdrager\nflashgeheugen\nfotobewerking\nfotoreeks\nfotosite\nfotowerk\nfoutcode\nfrontpaneel\nfruitsla\nfunctiecategorie\ngasklep\ngasramp\ngeboorteplek\ngebruikersaccount\ngehaktmengsel\ngeleisuiker\ngemeenschapsdienst\ngemeentedecreet\ngemeenteplein\ngezondheidszorgsector\ngitaarles\ngolfcursus\ngrensbeheer\ngrindbak\ngroendak\ngrondplaat\ngrondvloer\nhaarstijl\nhandbak\nhandelsportefeuille\nhardloopgroep\nheermoes\nhellingsgraad\nhengelsportzaak\nherseninhoud\nhersenontwikkeling\nhersenstructuur\nherstelpunt\nheupkom\nheupworp\nhittebron\nhoefbevangenheid\nhondensport\nhoofddoekverbod\nhoofdentree\nhoofdlerares\nhoofdrace\nhoofdvorm\nhoogkoor\nhuisarbeid\nhuisartsenkring\nhuisfotograaf\nhuisverbod\nidentiteitsdiefstal\nimplementatiefase\ninbelverbinding\ninburgeringsvoorziening\ninkooporder\ninspanningstest\ninspectiegebied\ninterieurbouw\ninternetbelasting\ninternetshop\nislamdebat\nislamkritiek\njazzdans\nkaneelpoeder\nkanotocht\nkantonhoofdbureau\nkartbaan\nkennisbeheer\nkennisgever\nkerklied\nkerkraad\nketenintegratie\nketenmanagement\nkiespubliek\nkiesvee\nkijkervaring\nkinddossier\nkinderparadijs\nklankweefsel\nklantvraag\nkleurweergave\nklikbaar\nklimaatcrisis\nklimmateriaal\nklimmuur\nkoemelkallergie\nkofferklep\nkoffiestop\nkooktemperatuur\nkoolfilter\nkoolstofgehalte\nkorthaar\nkrachtverlies\nkredietbemiddelaar\nkunstbus\nkunstplant\nkwalificatiesessie\nlaaggeletterdheid\nlandbrug\nlaptoptas\nledenbijeenkomst\nleenhof\nleerlingenzorg\nlichtsensor\nlijmlaag\nlinkermenu\nlongboard\nloonaangifte\nloopwedstrijd\nluchtreiniger\nluchtvaartterrein\nluisterbeurt\nmaagverkleining\nmaankalender\nmaanman\nmarktautoriteit\nmassabalans\nmateriaalsoort\nmeldcode\nmelkstroom\nmeningsvrijheid\nmensengestalte\nmenustructuur\nmerkbeleving\nmerkimago\nmilieuzone\nmiljoenenjacht\nmismatch\nmodebranche\nmodelprotocol\nmoederster\nmoedersterfte\nmonitoringsprogramma\nmoordspel\nmoslimgeloof\nmoslimpopulatie\nmosselsector\nmotivatiebrief\nmotorhome\nmotorkleding\nmutatiestop\nnaamverklaring\nnatuurgids\nnetwerkomgeving\nnummerweergave\nomgevingsbeleid\noogdruk\noogpotlood\noorzakelijkheidsdenken\noostrand\nopbrengstwaarde\norderverzamelaar\norganisatieonderdeel\noudercontact\noutplacementbegeleiding\novendeur\nparkmoord\npatiëntveiligheid\npensioenovereenkomst\npijnbeleving\nplantgat\npolisblad\npostman\npraatcafé\nproductcode\nproductieversie\nproductpresentatie\nproefversie\nproefvlak\nprofielensite\nprogrammeerwerk\nprojectadministratie\nprovinciecollege\nprovincieraadslid\nraamdecoratie\nrandanimatie\nreactieformulier\nrechtsgevolg\nrechtsnorm\nreferentiebestand\nreferentienummer\nreferentiesituatie\nregeerverklaring\nregensensor\nregisteradministrateur\nrespectloosheid\nrisicoklasse\nrondpunt\nruimteverwarming\nsatellietradio\nschakelpunt\nschildklierfunctie\nschoolplan\nschuldinstrument\nseinwezen\nservermarkt\nserverpark\nserverruimte\nservicedesk\nservicegraad\nservicepack\nsitemap\nsmeltbad\nsmoelenboek\nsmulweb\nsolidariteitsbeweging\nsonatevorm\nspelpunt\nspelsysteem\nspieropbouw\nspoorbeheerder\nsportdienst\nsportkamp\nsprintrace\nspuitmond\nstagemeester\nstageschool\nstartlijst\nstartmenu\nstartvak\nstoelmassage\nstoofvocht\nstoomreiniger\nstopweek\nstroomafname\nstroompanne\nstudiecoördinator\nsysteemintegrator\nsysteemkast\ntanderosie\ntemperatuursensor\nterreuralarm\ntestmanager\ntestorganisatie\nthuiscircuit\nthuisdoelman\ntiteltrack\ntoeleveringsketen\ntotaaladvies\ntracklist\ntransferbeleid\ntreinbegeleider\ntrimsalon\ntrouwambtenaar\ntuchtstraf\ntuinverlichting\ntweelingziel\ntypegoedkeuring\ntypekeuring\nvastgoedondernemer\nverandermanagement\nverenigingsjaar\nvergeetput\nverteltraditie\nvervoerovereenkomst\nvirusvrij\nvisievorming\nvlinderstruik\nvoetbalplein\nvoorstag\nvuistvuurwapen\nwandelboulevard\nwarmtenet\nwashand\nwasresultaat\nwaterbergingsgebied\nwaterkoeler\nwelstandsnota\nwerkbegeleider\nwerkstroombeheer\nwestmuur\nwijkmanager\nwooncode\nwoonfraude\nzaadvorming\nzanggroep\nzekerheidsstelling\nzoekmachinemarketing\nzoekvenster\nzoonschap\nzorgconsument\nzorginkoop\nzorgverzekeringswet\naaibaarheidsgehalte\naanbestedingsdossier\naanbestedingsplicht\naanbestedingsrecht\naanbestedingswet\naanbiedingsvorm\naanbodsturing\naanbodsysteem\naanbodtekort\naandachtsgeil\naandachtshoer\naandachtsspanne\naandachtstekort\naandachtstekortstoornis\naandachtstraining\naandachtswijk\naandeleninkoopprogramma\naandelenprijs\naandelenvermogen\naandrijftechniek\naangeefpositie\naangezichtszenuw\naangifteprogramma\naangiftesoftware\naangiftesysteem\naangiftetermijn\naanjaagteam\naankomstdag\naankomstdatum\naankomstpunt\naankomststrook\naankoopbegeleiding\naankoopdienst\naankoopfactuur\naankoopkeuring\naankoopmakelaar\naankoopnota\naankooppolitiek\naankooprecht\naankoopsysteem\naankoopverplichting\naanlegfase\naanlegvergunningenstelsel\naanmaakwater\naanmeldingsperiode\naanmeldingsplicht\naanmeldprocedure\naanmeldpunt\naanmeldscherm\naanpassingswet\naanraakbaar\naanraakgevoelig\naanrechtsubsidie\naanrijdtijd\naanschafbedrag\naanschafbelasting\naanschaffingskosten\naanslagoplegging\naanslagregeling\naansluitbaar\naansluitingscontract\naansluitnummer\naansluitschema\naansluitverordening\naansprakelijkheidsbeperking\naansprakelijkheidsregeling\naanstellingswijze\naantastbaar\naantrekkingspunt\naanvalsdoel\naanvalsdrift\naanvalsgeweld\naanvalshoek\naanvalsmachine\naanvalsmacht\naanvalsploeg\naanvalsvak\naanvalsvrij\naanvangsdosis\naanvangshuurprijs\naanvangskapitaal\naanvangsniveau\naanvangssituatie\naanvangstempo\naanvraagdossier\naanvraagperiode\naanwervingspolitiek\naanwervingsprocedure\naanwezigheidsdienst\naanwezigheidsplicht\naanwezigheidsvergunning\naanwinstenlijst\naanzuigbuis\naanzuigeffect\naardappelgewas\naardappelland\naardappelmengsel\naardappelopslag\naardappelprijs\naardappelschotel\naardappelsector\naardappelsoep\naardappelsoort\naardappelzak\naardbeienlikeur\naardbeienpuree\naardbeiensmaak\naardbeientaart\naardgasproductie\naardlek\naardman\naardpunt\naardwetenschapper\naasaanbieding\naassoort\nabcesvorming\nabdijgemeenschap\nabdijhoeve\nabonnementenbeheer\nabonnementenverkoop\nabonnementsperiode\nabonnementsvorm\nacceptatiespeech\nacceptatietest\naccijnsgoederenplaats\naccijnsvrijstelling\naccordeonspel\naccordeonspeler\naccountantsberoep\naccounthouder\naccountmanagement\naccountnaam\naccuboor\naccuboormachine\naccuduur\naccupack\naccupakket\naccuschroevendraaier\naccuspanning\nachillespeesontsteking\nachtergrondconcentratie\nachtergronddocument\nachtergrondkoor\nachtergrondlaag\nachtergrondmateriaal\nachtergrondniveau\nachtergrondstudie\nachtergrondverhaal\nachterhoofdsknobbel\nachteruitrijcamera\nachteruitstelling\nachterwielophanging\nachttiental\nacquisitiegesprek\nacteerspel\nacteursensemble\nacteurskoppel\nactiebeweging\nactiebijeenkomst\nactieblad\nactiegame\nactiegebied\nactiegenre\nactiekaart\nactiekader\nactiekrant\nactielijn\nactiematig\nactiemodel\nactieonderzoek\nactiepagina\nactieplatform\nactiescène\nactiespektakel\nactievorm\nactiewezen\nactiviteitenaanbod\nactiviteitenagenda\nactiviteitenbegroting\nactiviteitenbesluit\nactiviteitenbudget\nactiviteitenpakket\nactiviteitenpatroon\nactiviteitenruimte\nactiviteitensector\nactiviteitenweek\nademautomaat\nademfrequentie\nademhalingscentrum\nademhalingsfrequentie\nademhalingspatroon\nademhalingsritme\nademhalingssnelheid\nademhalingsstelsel\nademhalingssysteem\nademsteun\nademstroom\nademtechniek\nademtekort\nademtherapie\naderwand\nadministratiepakket\nadoptieakte\nadoptiedienst\nadoptiedochter\nadoptieland\nadoptieprogramma\nadoptiezoon\nadresbestand\nadresinformatie\nadressticker\nadventskalender\nadvertentiecontract\nadvertentiemateriaal\nadvertentiemedium\nadvertentieprogramma\nadvertentiesysteem\nadviesbevoegdheid\nadviesforum\nadvieslijn\nadviesplicht\nadviesprocedure\nadviespunt\nadviesregeling\nadviesstelsel\nadviesstructuur\nadviessysteem\nadviestraject\nadviesvak\nadviesverkoopprijs\nafbetalingsplan\nafbouwfase\nafbraakpolitiek\nafbraaksnelheid\nafbraakvoetbal\nafdekkap\nafdekmiddel\nafdekzeil\nafdelingsarts\nafdelingssecretaris\nafdrachtsregeling\nafdruklepel\nafdrukmateriaal\nafdruksnelheid\nafdruktaak\nafdrukvoorbeeld\nafgiftedatum\nafhaalbericht\nafhaalpunt\nafhandelingsbedrijf\nafhandelingsduur\nafhangbord\nafhangsysteem\nafhankelijkheidsratio\nafkappunt\nafkoelperiode\nafleverdatum\nafleveringsbon\nafleveringskosten\nafloscapaciteit\naflossingsbedrag\naflossingscapaciteit\nafluisterprogramma\nafnamekraan\nafnemersmacht\nafreisdatum\nafrekenbaar\nafrekencultuur\nafscheidsavond\nafscheidsbijeenkomst\nafscheidsmusical\nafscheidsplechtigheid\nafscheidsritueel\nafscheidstour\nafscheidsvideo\nafscheidsviering\nafscheidszoen\nafschotplan\nafschrijvingsperiode\nafschrijvingstabel\nafschrikmuziek\nafslagstrook\nafslankmethode\nafslankmiddel\nafsluitklep\nafsluitkosten\nafspiegelingsbeginsel\nafsprakenkader\nafsprakennota\nafstandscriterium\nafstandsloper\nafstandsmeter\nafstandsmeting\nafstemmingsoverleg\nafstudeerfeest\nafstudeerjaar\nafstudeertraject\nafstudeervak\naftakas\naftappunt\naftelklok\naftrekaanval\nafvalarm\nafvalbrengstation\nafvalfase\nafvalkalender\nafvalkuil\nafvalmanagement\nafvalschandaal\nafvalschema\nafvalstoffenbeleid\nafvaltank\nafvalwaterbehandeling\nafvalwaterketen\nafvalwaterzuiveringsinstallatie\nafvoergang\nafvoergolf\nafvoergoot\nafvoerslang\nafzetbevordering\nafzetlint\nafzuigschouw\nagendabeheer\nagressiebeheersing\nakkergrond\nalbumhoes\nalbumlijst\nalbumversie\nalcoholafhankelijkheid\nalcoholbasis\nalcoholindustrie\nalcoholinname\nalcohollimiet\nalcohollucht\nalcoholpreventie\nalcoholproblematiek\nalcoholroes\nalcoholslot\nalcoholsyndroom\nalimentatievoorwaarde\nalimentatievordering\nallergietest\nallesbinder\naluminiumlegering\naluminiumpoeder\nalvleesklierkanker\namandelmeel\namandelpoeder\namateurbasis\namateurfilmer\namateurfotografie\namateurgezelschap\namateurkok\namateurmuziek\namateurniveau\namateurploeg\namateurtak\nambachtenmarkt\nambassadeursfunctie\nambtsgebed\nambtsinstructie\nambtskleding\nambtsleer\nambulancemedewerker\nambulancesector\nambulancezorgverlener\nammoniakgas\nanalistenbureau\nanalistenverwachting\nanalysekader\nanalysesysteem\nangelusgebed\nangstbeeld\nangstcultuur\nangstniveau\nangstpolitiek\nanimatieprogramma\nanimatieteam\nankerlijn\nantwoordmodel\napartheidssysteem\napenbos\napengedrag\napenvlees\napostelschap\napothekerskast\nappartementsbouw\nappelallergie\nappelcake\nappelcider\nappelpunt\nappelras\nappelteelt\nappelthee\nappeltjesgroen\nappelvink\napplicatiearchitectuur\napplicatielaag\napplicatieniveau\napplicatieontwikkeling\napplicatieprogrammeur\napplicatiesoftware\naquarelpapier\naquariumwater\narbeidersverzet\narbeidsadviseur\narbeidsbehoefte\narbeidsbeloning\narbeidsbeperking\narbeidsconcept\narbeidsgang\narbeidsgebonden\narbeidsgeneeskunde\narbeidsintensiviteit\narbeidsleeftijd\narbeidsloopbaan\narbeidsmarktparticipatie\narbeidsmarktproblematiek\narbeidsmilieu\narbeidsomgeving\narbeidsongeschiktheidsbeoordeling\narbeidsongeschiktheidscriterium\narbeidsongeschiktheidsklasse\narbeidsongeschiktheidspercentage\narbeidsongevallenverzekering\narbeidsovereenkomstenrecht\narbeidsregime\narbeidsrisico\narbeidstijdenrichtlijn\narbeidsuitval\narbeidsverplichting\narbeidsvoorwaardengesprek\narbeidsvoorwaardenvorming\narbeidswereld\narbodienstverlener\narchiefambtenaar\narchiefbeeld\narchiefbeheer\narchiefbestand\narchiefbewaarplaats\narchieffunctie\narchiefgebouw\narchiefinspectie\narchiefinstelling\narchiefkamer\narchiefpagina\narchiefsector\narchiefsysteem\narchitectuurfotografie\narchitectuurhistoricus\narchitectuurstad\narchitectuurtheorie\narmblessure\narmfunctie\narmklem\narmkracht\narmoededrempel\narmoedemonitor\narmoedesituatie\narmoedespiraal\naromatherapeut\nasfaltpad\nasielstelsel\nassenstelsel\nauditcomité\nauditrapport\nautobeurs\nautolader\nazijnwater\nbaarmoederholte\nbaarmoederverwijdering\nbabyboek\nbabyhuid\nbabypop\nbabysterfte\nbadkamervloer\nbaggerspecieverklaring\nbajesboot\nbalansdag\nbandenkeuze\nbandenpijn\nbandwedstrijd\nbankautomaat\nbankpersoneel\nbardame\nbasisbestand\nbasisbijdrage\nbasislaag\nbasisplek\nbasisrecept\nbasistype\nbasisvaardigheid\nbasketbalveld\nbedieningssysteem\nbedrijfsconcept\nbedrijfsdruk\nbedrijfsfunctie\nbedrijfstakpensioenfonds\nbedrijvenzone\nbeekvallei\nbeekwater\nbeeldbellen\nbeeldbewerkingsprogramma\nbeeldgebruik\nbeeldstabilisatie\nbeeldverhouding\nbeenlengteverschil\nbeginscherm\nbeginvoorraad\nbegrotingsonderdeel\nbehandelteam\nbeheerbaar\nbeheerfase\nbeheeromgeving\nbeheerpagina\nbeheerseenheid\nbeheersoftware\nbekermatch\nbelastingobject\nbeleggersprofiel\nbeleggingsonderneming\nbeleidsaanpak\nbeleidscel\nbeleidsdoorlichting\nbeleidsondersteuning\nbeleidsthema\nbeleveniseconomie\nbemonsteringstijdstip\nbeoordelingsformulier\nbeoordelingskader\nbeoordelingsrapport\nberghuis\nbergingsgebied\nberichtenuitwisseling\nberkensap\nberoepsaansprakelijkheidsverzekering\nberoepsnaam\nbeslistermijn\nbestandstype\nbestedingslimiet\nbestuurdersattest\nbestuurdersplaats\nbestuursdocument\nbestuursjaar\nbestuursmeerderheid\nbetonspecie\nbeursstand\nbeveiligingsrisico\nbevestigingsmail\nbevestigingssysteem\nbevrijdingsfestival\nbevrijdingsvuur\nbeweeggedrag\nbewegingsonscherpte\nbewegingsprogramma\nbewegingssensor\nbewegingsstelsel\nbewegingsuitslag\nbewonersparticipatie\nbezoekersregeling\nbezoekersvak\nbibliotheekvernieuwing\nbierconsumptie\nbierkaart\nbijenfauna\nbijtkracht\nbindweefselmassage\nbitterstof\nblaaswand\nbladpeterselie\nblessuregevoeligheid\nblikrichting\nbliksembeveiliging\nbloedhitte\nbloedproduct\nblokdrop\nblondering\nblootstellingsduur\nblootstellingsperiode\nblowjob\nboekencollectie\nboekhoudfraude\nboekproductie\nboerderijwinkel\nboerencamping\nbokszak\nbonuscultuur\nbonusmateriaal\nboogarm\nbooronderzoek\nboottrip\nborstband\nborstklierweefsel\nborstomvang\nborstvlees\nborstvoedingsperiode\nboterpapier\nboterroom\nbotskracht\nbouwnummer\nbouwpraktijk\nbouwregelgeving\nbouwtraject\nbouwvlak\nbouwvoor\nbowlingcentrum\nbramenplukker\nbrandsnelheid\nbrandstofkwaliteit\nbrandweerdienst\nbreedbandaansluiting\nbrekingsverhouding\nbroedgeval\nbroednest\nbroedperiode\nbrondocument\nbrongebied\nbronnenboek\nbroodoven\nbudgetbak\nbudgethouderschap\nbudgetneutraliteit\nbudgetvriendelijk\nbuffergebied\nbuffetrestaurant\nbuffetvorm\nbuikslagader\nbuikwandcorrectie\nbusinesslogica\nbuurmaatschap\nbuurtboerderij\nbuurtwerking\ncameragebied\ncamerateam\ncannabisplantage\ncasemanagement\ncastrum\ncasusoverleg\ncasusregisseur\ncellenbeton\nchatprogramma\nclassificatiecommissie\nclitorisstimulator\ncliëntenperspectief\ncliëntsysteem\nclubcoach\nclubkleding\nclubman\nclubsite\nclusterhoofdpijn\ncoalitieprogramma\ncodeboek\ncollegereeks\ncollegestof\ncomitéprocedure\ncommandowagen\ncommentaartrack\ncommunicatieafdeling\ncommunicatiemedewerker\ncommunicatiespecialist\ncompetentieontwikkeling\ncompetitiematch\ncompostmeester\ncompromispakket\ncomputerbranche\ncomputercrash\ncomputerkamer\ncomputerklas\ncomputervredebreuk\ncomputerwerk\ncomputerzaal\nconceptfase\nconcertleven\nconcerttent\nconciërgewoning\nconcurrentieverstoring\nconformiteitsbeoordeling\nconsumptiedrang\ncontactblad\ncontactcenter\ncontacteczeem\ncontactloos\ncontainertrafiek\ncontractbeheer\ncontractvorm\ncontractvorming\ncontrolefreak\ncontrolekaart\ncontrolekader\ncrisisaanpak\ncrisisbeleid\ncultuurmarkt\ncultuurproject\ncultuurschepen\ndaginvulling\ndaglichttoetreding\ndagopname\ndagzaal\ndakwerker\ndamesploeg\ndampdruk\ndankdienst\ndanswedstrijd\ndarmfunctie\ndatabaseserver\ndatabeveiliging\ndatacollectie\ndatakabel\ndatakwaliteit\ndatamanagement\ndataoverdracht\ndatapakhuis\ndeelgroep\ndeelklasse\ndeelruimte\ndeelsysteem\ndeeltraject\ndefinitiestudie\ndekhuis\ndekzandrug\ndeskundigenoordeel\ndessertbuffet\ndetailontwerp\ndetectiegrens\ndiagnosestelling\ndienstenmarkt\ndienstenorganisatie\ndienstenportfolio\ndienstvak\ndienstverleningsconcept\ndieptezicht\ndieselgenerator\ndieselwagen\ndijkonderhoud\ndinerbuffet\ndiplomasupplement\ndisbalans\ndiscriminatiebestrijding\ndiscussieleider\ndiscussiepagina\ndiversiteitsplan\ndocententeam\ndocumentenstroom\ndocumentmanagement\ndoelhout\ndoelkader\ndoembeeld\ndomeincontroller\ndomeinmodel\ndomeinnaamhouder\ndonderdagvoormiddag\ndonorregistratie\ndoorloopbal\ndosisgroep\ndouchebeurt\ndraadglas\ndraagmuur\ndraagstructuur\ndraaimoment\ndrankverslaving\ndrankvoorraad\ndreigingsniveau\ndroomtuin\ndrukopbouw\ndrukregelaar\ndruksensor\nduelkracht\nduikbrevet\nduikcentrum\nduikcomputer\nduikcursus\nduikerspak\nduiklamp\nduikongeval\nduikplaats\nduivenei\nduurtest\nduurzaamheidsbeleid\nechoapparaat\necholocatie\neducatieprogramma\neendenvet\neenheidsgevoel\neetkamertafel\neffectenonderzoek\neffectonderzoek\nefficiencyslag\neiermengsel\neigendomskosten\neilandautomatisering\neindapparatuur\neindfactuur\neindfeest\neindopdracht\neindpositie\neiwitschuim\nelektriciteitsfactuur\nelektriciteitspaal\nelektriciteitsvraag\nellebooggewricht\nemissiehandelssysteem\nencryptiesleutel\nenergielijn\nenergiemanagement\nenergienetwerk\nenergieopbrengst\nenergiepeil\nenergieproblematiek\nenergievorm\nenergiezekerheid\nenergiezorg\nervaringsgericht\nervaringsniveau\neucalyptusboom\nevolutiemodel\nexamentraining\nexpertgroep\nfacettenbeleid\nfactuurverklaring\nfamiliepakket\nfamiliesysteem\nfamilievakantie\nfantasiebeeld\nfaunabeheereenheid\nfeestgebeuren\nfeestmarkt\nfertiliteitscentrum\nfietscomputer\nfietsendrager\nfietskleding\nfietsknooppuntennetwerk\nfietsrouteplanner\nfietstraining\nfietsweer\nfiledruk\nfileserver\nfilmkast\nfilmvlak\nfilterkamer\nfiltermateriaal\nfinancieringsniveau\nfluisterboot\nfocusgroep\nfocuspunt\nfossielenbestand\nfotoapparaat\nfotobewerkingsprogramma\nfotomoment\nfotowinkel\nfotozoektocht\nfrontvrouw\nfruitboer\nfruitsoort\nfruitstreek\nfruittuin\nfuifbeleid\nfuiforganisator\nfunctiegericht\ngameconsole\ngameverslaving\ngamewereld\ngarantiestelsel\ngasbescherming\ngasnetwerk\ngastfamilie\ngasuitwisseling\ngasvorm\ngaswisseling\ngeboortenaam\ngeboortetijd\ngebouwgebonden\ngebruikersdeel\ngebruikerservaring\ngebruikersgemeenschap\ngebruikersvereniging\ngedragscommissie\ngeelbuikvuurpad\ngegevensbeveiliging\ngegevensgroep\ngegevensinvoer\ngegevensmodel\ngegevensverlies\ngehaktbrood\ngeitenboer\ngeldaanbod\ngeldcrisis\ngeldeconomie\ngeluidniveau\ngemeenschapsniveau\ngemeenteavond\ngemeenteloket\ngemeenteopbouw\ngemeentepagina\ngemeentezang\ngenenpool\ngevoeligheidsanalyse\ngewestgroep\ngewestweg\ngewichtenregeling\ngezondheidsconferentie\ngezondheidsgebied\ngezondheidsmanagement\ngezondheidsstatus\ngezondheidstoezicht\ngietvloer\ngietwater\ngistdeeg\ngistingsvat\ngistmengsel\ngitaarleraar\ngitaarzak\nglansspoelmiddel\ngoedkeuringsnummer\ngolfkar\ngolfkarakter\ngoothoogte\ngoudstof\ngriepvariant\ngrillplaat\ngroeimarge\ngroentelade\ngroentemengsel\ngrondbalans\ngrondniveau\ngrondwaterkwaliteit\ngrondwatertafel\nhaaksteel\nhaartype\nhaatpropaganda\nhalsschild\nhalsstreek\nhandelingsplan\nhandelskarakter\nhandelsketen\nhandelspraktijk\nhandhavingsprogramma\nhandkolf\nhandschriftherkenning\nhandzeep\nharddrugsscene\nharingseizoen\nhartverzakking\nhavenstaatcontrole\nhavenvoorzitter\nhechtingsstoornis\nheidegemeente\nheikikker\nhekstelling\nhelpdeskmedewerker\nhengeltop\nherenboerderij\nherenhoeve\nherenploeg\nherkansingsronde\nhersenwerking\nhersteltraining\nherstelvermogen\nherstelvordering\nherstructureringsopgave\nherstructureringssteun\nherzieningsprocedure\nheupvervanging\nheuvelflank\nhindernissenparcours\nhobbywinkel\nhoefwand\nhondeneigenaar\nhondenshow\nhoofdaanval\nhoofdbibliotheek\nhoofdbron\nhoofddoekendebat\nhoofdfase\nhoofdlicht\nhoofdsite\nhoofdtank\nhoofdterrein\nhooggevoelig\nhoogtewerker\nhormoontherapie\nhoutsmaak\nhoutstructuur\nhuidmodel\nhuidstructuur\nhuidtest\nhuisbazin\nhuishoek\nhuurgrens\nhuurliberalisatie\nidentiteitsbeheer\nidentiteitsbeleving\nijsblok\nijscoupe\nijsdikte\nijskar\nijsoppervlak\nijsroom\nimplementatiekosten\nimplementatiemanager\nimplementatieproject\nimplementatietijd\ninburgeringsstelsel\ninburgeringswet\nindexkoppeling\nindustrielawaai\ninformatieboek\ninformatiebrief\ninformatieverkeer\ninhaalrust\ninitiatieffase\ninitiatiefverslag\ninjectieplaats\ninkomprijs\ninkoopfunctie\ninlogscherm\ninloopkast\ninschrijflijst\ninspectieplan\ninspectieprogramma\ninspectieverslag\ninspraakperiode\ninstellingsbestuur\nintegratieproblematiek\nintegratievraagstuk\ninterieuradvies\ninternetbellen\ninternetcensuur\ninternetdagboek\ninternetfraude\ninternetgedrag\ninternetkennis\ninternetoplichting\ninternetvideo\ninvoerapplicatie\nionenuitwisseling\nislamfobie\nislamfundamentalisme\njaardocument\njaarovergang\njaarwerk\njachthouder\njachthut\njachtwapen\njazzzolder\njeugdcompetitie\njeugdconsulent\njeugdoverlast\njeugdvakantie\njongbier\njongensteam\njubileumcommissie\nkabinetsreactie\nkalenderkwartaal\nkansrijkheid\nkantelmoment\nkantelpoort\nkantelpunt\nkapitaalpositie\nkapitalistenklasse\nkappersvak\nkarakterontwikkeling\nkarpervisser\nkarpervisserij\nkartellijst\nkennisbasis\nkennisbehoefte\nkennisdomein\nkenniskring\nkennisverspreiding\nkenniswinst\nkerndoel\nkernwaarde\nkerstborrel\nkerstdecoratie\nkerstgebeuren\nkerststuk\nketenaanpak\nketenbenadering\nketenhandhaving\nketenorganisatie\nketenproject\nkettingmail\nkeuzemodel\nkiezerspubliek\nkijkafstand\nkinderclub\nkinderfestival\nkinderspeeltuin\nkippenras\nklaagcultuur\nklachtafhandeling\nklachtbrief\nklachtenbemiddelaar\nklankkwaliteit\nklanktaal\nklantbeeld\nklantloyaliteit\nklanttevredenheidsonderzoek\nklasfoto\nklassensysteem\nklassenterrein\nkledingadvies\nkleinburgerdom\nkleurdiepte\nkleurechtheid\nkleurenanalyse\nkleurenlaser\nkleurentabel\nkleurtoon\nkliermaag\nklimaatdebat\nklimaatdiscussie\nklimaatplan\nklimaatvriendelijk\nklimtoestel\nknekelput\nknoflookolie\nkoekblik\nkoelblok\nkoelelement\nkontgat\nkookploeg\nkookvuur\nkoopgoot\nkorfslak\nkostentoerekening\nkoudebrug\nkoudeperiode\nkraamgeld\nkredietinformatie\nkrijtbord\nkuisploeg\nkunstdossier\nkunstroute\nkustlandschap\nkustploeg\nkustroute\nkwalificatiedossier\nkwaliteitsbevordering\nkwaliteitskenmerk\nkwaliteitsmanagementsysteem\nkwaliteitstest\nkwarkmengsel\nkweekprogramma\nkweekruimte\nkweekseizoen\nkweldergebied\nkwikbelasting\nlaboratoriumschaal\nlachsessie\nlagenbenadering\nlakennijverheid\nlandbouwactiviteit\nlandbouwontwikkeling\nlandbouwschade\nlandbouwster\nlandbouwvoertuig\nlandingspagina\nlandroof\nlangdurigheidstoeslag\nlawaaidemonstratie\nleaserijder\nledenpas\nleefgeld\nleeftijdsverdeling\nleenvorm\nleerlingenorkest\nleesbevestiging\nleeshandicap\nleesniveau\nlentegevoel\nlesbus\nlesjaar\nleskist\nlesvoorbereiding\nlevensboek\nlevenscyclusanalyse\nlevenslooprekening\nlevenslooptegoed\nlevensloopverzekering\nlevensplan\nleveringsbedrijf\nlevertermijn\nlicentiebeleid\nlichtbreking\nlichtglans\nlichtmeting\nlichtniveau\nlichtontwerper\nlichtspectrum\nlichtspektakel\nliedcultuur\nliefdesgebied\nlievelingsmuziek\nlijmpistool\nlinkerbovenbeen\nlinkerkamer\nlinkerluik\nliquiditeitsfaciliteit\nlonginhoud\nloodsplicht\nloonaanvullingsuitkering\nloonwaarde\nloopbaanbegeleider\nloopbeweging\nloopdeur\nloopevenement\nloopruimte\nloopscholing\nluchtdichtheid\nluchtfotografie\nluchtwassysteem\nluiertas\nluisterbereidheid\nlunchbox\nlustrumviering\nmaatkolf\nmachtigingsformulier\nmailgroep\nmailwisseling\nmanagementinformatiesysteem\nmantelbuis\nmarktterrein\nmassavernietiging\nmatchhengel\nmeergranenbrood\nmeetbedrijf\nmeetprotocol\nmelkjaar\nmelkvoeding\nmensengemeenschap\nmerkwaarde\nmestdecreet\nmetaalcentrale\nmetaalhandel\nmethodesite\nmiddaghandel\nmiddelenmisbruik\nmijnwater\nmilieueffectenrapport\nmilieuresultaat\nminimuminvoerprijs\nminuutplan\nmobilisatieperiode\nmodellenwereld\nmoedertinctuur\nmomentsleutel\nmonitoringsplan\nmonsterverzameling\nmonumentenvergunning\nmorgendauw\nmorgennamiddag\nmoslimjongen\nmotorkamer\nmotorrijbewijs\nmotorsysteem\nmuskusrattenbestrijding\nmuziekbestand\nmuziekkoepel\nmuziekquiz\nmuziekscène\nmuziekverkoop\nnaamdrager\nnachtduik\nnachtnet\nnachtperiode\nnachtrit\nnachtvoeding\nnatuurfotografie\nnatuurfunctie\nnatuurkwaliteit\nnavigatiesoftware\nnestbouw\nnesteldrang\nnetwerkbijeenkomst\nnetwerkleverancier\nneukpaal\nneukstaaf\nnierwerking\nnietigheidsafdeling\nnieuwbouwproductie\nnieuwsarchief\nnoodregering\nnoordoosthoek\nnoordoostzijde\nnoordwestzijde\nnummerherkenning\nochtendmis\nochtendmisselijkheid\nochtendpauze\noeverzone\nokselhaar\noliebasis\noliekartel\nomgevingsanalyse\nomgevingslicht\nomgevingsvergunning\nomleidingsweg\nondernemingshoofd\nonderwaterhuis\nonderwereldbankier\nonderwijsfunctie\nonderwijskaart\nonderwijsstructuur\nonkruidgroei\nonkruidvrij\nontbijtservice\nontgiftingskuur\nonthaalcentrum\nonthaalgezin\nontvangstmelding\nontwerpverordening\nontwerpverslag\nontwikkelingsrichting\nontwikkelorganisatie\nontwikkeltijd\noogspecialist\noorlogsmaterieel\noorlogsverhaal\noorlogsvoorbereiding\nopdrachtregel\nopdrachtverlening\nophangsysteem\noplaadpunt\nopleidingsaanbod\nopleidingsbudget\nopleidingsdirecteur\noplosbaarheidsgrens\nopnamefase\nopnametijd\nopperarmbeen\noproepbasis\nopstalrecht\nopstelplaats\noptiebalk\nopvoerpomp\nopvulmateriaal\nopwarmtijd\nopzegvergoeding\nordegrootte\nordewoord\norganisatietheorie\norgelbegeleiding\norkestspel\nouderbetrokkenheid\novenkamer\noventemperatuur\noverheidsmanager\npaardenbak\npaardentrailer\npaasontbijt\npaddentrek\npakketdienst\npanelgesprek\npaniekaankoop\npapierbaan\npapiercontainer\nparcourskennis\nparcoursrecord\npardonregeling\nparochiegemeenschap\npartijcomité\npartnergeweld\npasfrequentie\npaslengte\npassagierskant\npassagierszetel\npastamachine\npastelkrijt\npatiëntenperspectief\npechdag\npeilbesluit\npeilperiode\npelgrimsroute\npersaandacht\npersbelangstelling\npersoonlijkheidsproblematiek\nperstekst\npeuterbad\npianopartij\npiekmoment\npiepsignaal\npijnmedicatie\npijpbeurt\npisvee\npizzadeeg\nplakstrip\nplaneetverkenner\nplaneetvorming\nplanfase\nplanstudie\nplantenolie\nplantenvoeding\nplasmaconcentratie\nplaswekker\npodiumplek\npoepluier\npoetshulp\npolisadministratie\npolitiecollege\npolitieregistratie\npolitievoertuig\npopulatiegrootte\nportkosten\npostbezorger\npostrock\npotkluit\npoulefase\npraalstoet\nprijscorrectie\nprijsmodel\nprikpagina\nprintkwaliteit\nprocedureverordening\nproductactivering\nproductiedatum\nproductiekost\nproductiestadium\nproductmanagement\nproductmarkt\nproefopzet\nproefplaatsing\nproefslapen\nproefstand\nprofielkeuze\nprogrammacontract\nprojectaanpak\nprojectbegeleiding\nprojectbesluit\nprojectdossier\nprojectfase\nprojectniveau\nprojectperiode\nprojectplanning\nprojectuitvoering\nprojectvoorbereiding\nprovinciebedrijf\nprovincieontvanger\npuntzeef\npuzzelstuk\nraampartij\nraceklasse\nradiowereld\nrallysport\nrandzone\nrapportagesysteem\nratingsysteem\nrechtskader\nrechtsstatelijkheid\nrecreatiedomein\nredactiesecretaris\nreferentieaanbod\nreferentiebedrag\nreferentieland\nreferentiemaand\nreferentiemateriaal\nreferentiemodel\nregeleenheid\nregelkring\nregencape\nregenkledij\nregieorganisatie\nregioconferentie\nregiovrij\nreisbegeleider\nreisbegeleiding\nreisplezier\nrekenwaarde\nrelaiscentrum\nrelatienummer\nrelatietherapeut\nreligiekritiek\nremklauw\nreservekeeper\nreservemunt\nreservesysteem\nresponsietijd\nrestauranteigenaar\nrestgeul\nrestloos\nresultaatverplichting\nrichtwaarde\nrijksgedachte\nrijksregisternummer\nrisicobeleid\nrisicocategorie\nrisicodragerschap\nrisicokaart\nrisiconiveau\nrisicopositie\nrisicoreductie\nrokersruimte\nrolstoelvriendelijk\nrondleider\nrooibos\nrookoven\nrookstop\nroommate\nrouwregister\nrozenkransgebed\nruimbagage\nruimtebesparend\nruimtetemperatuur\nrustfase\nrustplek\nrustpost\nruststroom\nsabeltandtijger\nsalarisverwerking\nsamenwerkingsprotocol\nsatellietclub\nsatellietgroep\nsatéprikker\nsausbinder\nschaalloon\nschaalsprong\nschadebestrijding\nschadeoorzaak\nschakelsysteem\nschattenjacht\nscheenbeenvliesontsteking\nscheergel\nschermresolutie\nschildersdoek\nschoendoos\nschoolbegeleiding\nschoolgebeuren\nschoolgerief\nschoolkantine\nschoolontwikkeling\nschoolpersoneel\nschoolsituatie\nschooltoelage\nschoolvoetbaltoernooi\nschoonheidsherkenning\nschoonmaakazijn\nschrijfmethode\nschrijverstalent\nschuifbalk\nschuimnest\nschuldsaneringsregeling\nschutkring\nscriptieprijs\nsectorplan\nseinbeeld\nseinstelsel\nseksdrive\nseksualiteitsdispositief\nselectiedag\nselectiefase\nselectiekader\nselectieproef\nselectietraject\nservercapaciteit\nservicebalie\nserviceclub\nserviceoriëntatie\nservicewinkel\nsfeerbepalend\nshowmodel\nshowtuin\nsierpapier\nsierpleister\nsiervijver\nsinaasappelhuid\nsingletrack\nsinusknoop\nskeelerbaan\nskibril\nskireis\nslaapbehoefte\nslaapduur\nslaapfase\nslaapgedrag\nslaapkwaliteit\nslaapritme\nslaaptijd\nslagaderverkalking\nslagroomspuit\nslagvlucht\nsleurhut\nsleuteloverdracht\nslijmbeursontsteking\nslijmhuid\nslotnummer\nsmaakbeleving\nsoftwarefout\nsoftwarepiraterij\nsoftwarereus\nsoftwareversie\nsoloartiest\nsoloviool\nspeedgebruik\nspeekselproductie\nspeekselvloed\nspeelfiguur\nspeelmateriaal\nspeelstraat\nspeelstuk\nspeeltuinvereniging\nspeelwereld\nspelerskern\nspelerspas\nspelwereld\nspermakwaliteit\nspiergroei\nspierspanningshoofdpijn\nspierwand\nsplitsingsvoorstel\nsplitsingswet\nspoeddienst\nspoedgevallendienst\nsponsorcommissie\nspooktocht\nspoorzone\nsportdokter\nsportmassage\nsportschutter\nspraakcomputer\nstaartbasis\nstaartpunt\nstaatssteunbeleid\nstabilisatiemacht\nstagebedrijf\nstagecoördinator\nstagedag\nstakingsbeweging\nstamgroep\nstamlijn\nstamnummer\nstamoplossing\nstamreeks\nstartbijeenkomst\nstartbrief\nstarterslening\nstartgewicht\nstartkaart\nstartkabel\nstartopstelling\nstartvolgorde\nstartzaal\nsteekas\nsteekbal\nsteekschuim\nsteigerhout\nstekgrond\nstekkerblok\nstemafdeling\nstemcode\nstemgeheim\nstemkeuze\nstemmingsstoornis\nstemopnemingsbureau\nstempas\nsterindex\nsteuncomité\nstiltecoupé\nstofemissie\nstoomcabine\nstoomgenerator\nstoomkoker\nstoomoven\nstraattuig\nstrategieontwikkeling\nstreekbier\nstreekplanherziening\nstreeploos\nstressmanagement\nstresstest\nstrijdkracht\nstrijdveld\nstudentenjob\nstudentnummer\nstudiepad\nstudioplaats\nstuiterbal\nstuurgevoel\nstuurstand\nsubsidievaststelling\nsuccescoach\nsuikerbietenteelt\nsuikerhervorming\nsuikermaïs\nsuperdruk\nsuperfeest\nsuperlicht\nsupermarktoorlog\nsuperscherp\nsupertrots\nsupervakantie\nsupervet\nsurfplezier\nsymbooldossier\nsysteemcrisis\nsysteemtherapie\nsysteemvak\ntaakbeleid\ntaalanalyse\ntaalcoach\ntaalgericht\ntaalregeling\ntaalverscheidenheid\ntaartrooster\ntandverzorging\ntankautospuit\ntankinstallateur\ntapinstallatie\nteeltmateriaal\nteeltplan\nteeltruimte\ntegellijm\nteksteditor\nteksttheater\ntelefoonkiezer\ntelevisieomroeporganisatie\ntempelplein\ntemperatuurbereik\ntemperatuurverdeling\ntermijnoverschrijding\nterreinwerking\nterrorismedreiging\nterroristenafdeling\nterugkeerbesluit\ntestbasis\ntestdag\ntestexemplaar\ntestinspanning\ntestmedium\ntestobject\ntestoplossing\ntestplan\ntestpreparaat\ntestproject\ntestsessie\ntesttraject\ntestuitvoering\ntestwerk\ntewerkstellingsgraad\nthemagebied\nthuisomgeving\nthuisonderwijs\nthuistap\nthuiswater\nthuiswerkplek\ntijdmanager\ntijdnoodfase\ntoedieningsweg\ntoepassingsbereik\ntoernooicommissie\ntoernooikalender\ntoetsweek\ntoezichtgebied\ntoonregeling\ntoreneindspel\ntorenuurwerk\ntotaalklassement\ntouwbrug\ntrackback\ntrainingsintensiteit\ntrajectberaad\ntramnetwerk\ntramstation\ntransactiebasis\ntransactievolume\ntransferbedrag\ntrekarm\ntrekstapel\ntrillingsfrequentie\ntrouwauto\ntruffelolie\ntuchtdossier\ntuchtoverheid\ntuinaannemer\ntuinplan\ntuinset\ntunnelalternatief\nturnclub\nuimengsel\nuitgeefbaar\nuitkeringsafhankelijkheid\nuitlaatpoort\nuitlaatspruitstuk\nuitstelperiode\nuitvoeringsperiode\nuitwisseldienst\nurencriterium\nurineproductie\nvachtkleur\nvakantiebaan\nvakantiecomplex\nvakantiejaar\nvakantieopvang\nvakantieplek\nvakantieverlof\nvangkooi\nvarkensflat\nvastloper\nvaststellingsovereenkomst\nvechtmissie\nveehouderijsector\nveenpakket\nveenvorming\nvegetatiedak\nveiligheidsbeoordeling\nveiligheidshek\nveiligheidskundige\nveiligheidsregio\nveiligheidsstrategie\nveldbezoek\nveldgids\nveldkruis\nveranderingstraject\nverandertraject\nverbintenissenrecht\nverbrandingslucht\nverdeelmodel\nverdienmodel\nverdienvermogen\nverdunningstunnel\nverdunningsverhouding\nvergassingsinstallatie\nvergrijzingskosten\nvergunningenregister\nverhuisfirma\nverkenningsfase\nverkiezingscircus\nverkiezingssite\nverklikkerfase\nverkoopwagen\nverleningsbesluit\nverliesverrekening\nverliesverwerking\nverloopdatum\nvernietigingskracht\nverpakkingenbelasting\nverpakkingsbelasting\nvershoudfolie\nversiebeheer\nvertragingsrente\nvertrekdag\nvervalperiode\nvervangingsratio\nvervolgbehandeling\nvervolgfase\nvervuilingswaarde\nverwendag\nverwerkingskracht\nverzadigingsgevoel\nverzamelaanvraag\nverzoeningsbureau\nvetmassa\nvetzuursamenstelling\nvideoverslag\nviltlaag\nvingerprik\nvioolbouw\nvirusremmer\nvisafdeling\nvisclub\nvisieontwikkeling\nvisserijactiviteit\nvisummodel\nvlagzalm\nvlasnijverheid\nvlektekening\nvliegbelasting\nvliegplan\nvliegseizoen\nvlierbloesem\nvliesbehang\nvliesdoek\nvloeistofniveau\nvloerisolatie\nvluchthandboek\nvochtopname\nvochttekort\nvoederplank\nvoedingsbehoefte\nvoedingscentrum\nvoedingsdriehoek\nvoedingskundige\nvoedingslijn\nvoedingsschema\nvoedselinname\nvoedselvertering\nvoerhek\nvoerkorf\nvoeropname\nvoerplek\nvoerstek\nvoertuigtechnologie\nvoetbalgebeuren\nvoetbalgebied\nvoetbalkamp\nvoetbalkennis\nvoetbalkooi\nvoetbalvisie\nvoeteinde\nvolkorenmeel\nvolledigheidsverklaring\nvolumegarantie\nvonniswijzing\nvoorbereidingsgroep\nvoorfilter\nvoorjaarstrek\nvoorkeurshouding\nvoorleesontbijt\nvoormelk\nvoorpassagier\nvoorraadruimte\nvoorrem\nvoorsnuit\nvoorstelronde\nvoorstoel\nvoortplantingstijd\nvoorzieningsregeling\nvorklift\nvormdrift\nvormherkenning\nvormingsaanbod\nvormpeil\nvraagstelster\nvraagvoorspelling\nvreemdelingenketen\nvriendennetwerk\nvriendlief\nvriesgedeelte\nvrijboord\nvrijgezellendag\nvrijwaringsclausule\nwaardeontwikkeling\nwaardevaststelling\nwagenrust\nwalvishaai\nwandelparadijs\nwandelreis\nwandeltempo\nwapenhandelsverdrag\nwapenuitvoer\nwarmteafgifte\nwarmtelevering\nwarmteopslag\nwarmteoverdracht\nwarmtevraag\nwarmwaterbad\nwateraansluiting\nwaterhuishoudkundige\nwaterketen\nwateropgave\nwateroplosbaar\nwaterstofeconomie\nwaterverbruiker\nwaterverlies\nwederinvoer\nwederuitvoer\nwedstrijdbad\nwedstrijdcommissie\nwedstrijdjury\nwedstrijdsecretariaat\nweefselherstel\nweekmenu\nweekplanning\nweekvocht\nwegennetwerk\nwegenverordening\nwegingskader\nwegwerpmateriaal\nwelstandsbeleid\nwenslijst\nwereldkeuken\nwereldleraar\nwereldmunt\nwereldvloot\nwerfvergadering\nwerkbeschrijving\nwerkdeel\nwerkgelegenheidsstrategie\nwerkingsjaar\nwerkleven\nwerkonzekerheid\nwerkpost\nwerksnelheid\nwerksysteem\nwerktrein\nwerkvolgorde\nwerkwoordspelling\nwerkzaamheidsgraad\nwervelkanaal\nwetenschapsbijlage\nwetenschapscommunicatie\nwetgevingskader\nwetgevingspakket\nwijkberaad\nwijkeconomie\nwijkfeest\nwijkontwikkeling\nwijkoverleg\nwijksteunpunt\nwijktafel\nwijkvisie\nwijkwerking\nwijnbereiding\nwijzerzin\nwijzigingenreeks\nwijzigingsformulier\nwindgeruis\nwindlicht\nwindvermogen\nwinsthonger\nwinterprik\nwitwasrichtlijn\nwoekerpolis\nwoensdagvoormiddag\nwondbehandeling\nwondheling\nwoonmarkt\nwortelkanaal\nwortelstam\nwortelsysteem\nwortelvlieg\nwortelvlies\nwurgslang\nzaadhuid\nzadelpen\nzadenlijst\nzanddeeg\nzandraket\nzandstort\nzandstrook\nzeeblokkade\nzeeklas\nzeemist\nzeesla\nzeevaartbeleid\nzeilcursus\nzeildag\nzeilevenement\nzeilreis\nzeilseizoen\nzekerheidssteller\nzelfmoordterrorisme\nzendingsveld\nzesversnellingsbak\nzichttermijn\nzichtveld\nziekteduur\nziektegedrag\nziektegevoel\nziektelast\nziektepreventie\nzieligheidsindustrie\nzoekbalk\nzoekbox\nzoekgigant\nzoekkaart\nzoekpagina\nzoeksleutel\nzomergevoel\nzomerstage\nzomervacht\nzonechef\nzonenummer\nzoombereik\nzoomfunctie\nzorgdossier\nzorginfrastructuur\nzorginhoudelijk\nzorginnovatie\nzorgovereenkomst\nzorgpolis\nzorgstructuur\nzorgtraject\nzorgverstrekker\nzorgvisie\nzorgvorm\nzorgwet\nzoutconcentratie\nzuidmuur\nzuigsnuit\nzustersite\nzuurstoftransport\nzwaardschede\nzwaartekrachtveld\nzwangerschapshormoon\nzwangerschapswens\nzwembeurt\nzwemplezier\nafvoerwater\nafwerkvloer\nafwijzingsgrond\nafwikkelingsvergoeding\naktenummer\nalarmcode\nalarmdrempel\nalarmniveau\nalarmopvolging\nalarmschijf\nalarmsituatie\nanijsolie\nanijssmaak\nanimatiereeks\nankerbaai\nankergang\nankerplek\nantennedraad\nantisliplaag\nantwoordbestand\nantwoordblad\nantwoordenboek\nantwoordmogelijkheid\nappartementseigenaar\narbeidersmacht\narbeiderssolidariteit\narbeidskost\narchiefwereld\narchiefwerking\nartiestenleven\nartikelenbestand\nartikelinformatie\nartikelniveau\nartikelreeks\nartilleriebatterij\nartsenblad\nartsentitel\nasbestafval\nasbestcementafval\nasbestsanering\nasfaltfabriek\nasfaltfietspad\nasielhond\naspergebedrijf\naspergeplant\naspergeseizoen\nassertiviteitscursus\nassisenjury\nassisenprocedure\nassisenvoorzitter\nassisenzaak\nassisenzaal\nassurantieadviseur\nastmafonds\natelierroute\natletiekmeeting\natletiektraining\natoomkracht\natoommodel\natoomspion\natoomtechnologie\natoomtest\natoomwaakhond\nauditprogramma\nauditprotocol\nauditteam\nauteursrechtinbreuk\nauteursvereniging\nautoambulance\nautobelettering\nautobereikbaarheid\nautoboulevard\nautoclub\nautoconsument\nautodeur\nautofreak\nautogebied\nautojournalist\nautokoffer\nautokraak\nautoladder\nautolease\nautolening\nautomagazine\nautomatenkoffie\nautomechanica\nautopolis\nautopomp\nautoprogramma\nautoriteitsargument\nautoscooter\nautosite\nautosnelwegennet\nautosportbond\nautosportfederatie\nautostad\nautostart\nautotechnicus\nautotransport\nautowinkel\navondactiviteit\navondconcert\navondrit\navondritueel\navondsessie\navondspel\navondtraining\navonduitzending\navonturentocht\nbaancommandant\nbaanfiets\nbaangesprek\nbaankapitein\nbaanoppervlak\nbaanplan\nbaanseizoen\nbaansnelheid\nbaantraining\nbaanverlichting\nbaanverlies\nbaanvlak\nbaarmoederhalsslijm\nbaarmoederlichaam\nbaarmoederontsteking\nbabbeltruc\nbabyafdeling\nbabybad\nbabyblauw\nbabyborrel\nbabydouche\nbabyfles\nbabymassage\nbabypakket\nbabysite\nbabyslaapzak\nbabytaal\nbabyvet\nbabywinkel\nbabyzaak\nbachelorjaar\nbachelorniveau\nbacheloronderwijs\nbachelorproef\nbachelorprogramma\nbachelorscriptie\nbachelorstudie\nbachelorwerkstuk\nbacterievuur\nbadkamermeubel\nbadkamerraam\nbagagekelder\nbagagevervoer\nbaggermarkt\nbaggerplan\nbaggerproject\nbaggerweer\nbakdek\nbakgoot\nbakkerijbranche\nbakkerijsector\nbakkersvak\nbakkerszaak\nbakkwaliteit\nbaklijn\nbaklijst\nbakmix\nbaksteenbouw\nbaksteenmetselwerk\nbaksteennijverheid\nbaktarwe\nbaktemperatuur\nbakvocht\nbalanspost\nbalansverstoring\nbaliewerk\nballenhok\nballetzaal\nballonpomp\nballonwedstrijd\nbalmuziek\nbalsnelheid\nbaltempo\nbalvlucht\nbalwinst\nbalwisseling\nbananendoos\nbananenlikeur\nbananenplant\nbananenplantage\nbananensector\nbandenboer\nbandencentrale\nbandenleverancier\nbandenmaat\nbandenmerk\nbandenslijtage\nbandenspecialist\nbandenwissel\nbandfoto\nbandletsel\nbandmateriaal\nbanenaanbod\nbanencijfer\nbanenrapport\nbankadviseur\nbankboek\nbankenplan\nbankenstelsel\nbankensysteem\nbankentrio\nbankenwereld\nbankfinanciering\nbankreus\nbanksite\nbankwaarborg\nbarbezetting\nbarblad\nbarcommissie\nbareigenaar\nbargedeelte\nbaritonsax\nbaritonstem\nbarjongen\nbarkast\nbarokkerk\nbarokperiode\nbarrageduel\nbarrièrefunctie\nbarruimte\nbarstwond\nbaseballknuppel\nbasgeluid\nbasisaanbod\nbasisabonnement\nbasisarchitectuur\nbasisbegrip\nbasisbestanddeel\nbasisbibliotheek\nbasiscertificaat\nbasiscollectie\nbasisdeel\nbasisdekking\nbasisdienst\nbasisdoelstelling\nbasisdossier\nbasisfinanciering\nbasisfrequentie\nbasisfunctionaliteit\nbasisgevoel\nbasisgrammatica\nbasisgrondstof\nbasishuurprijs\nbasisinspanning\nbasisinstelling\nbasisinstrument\nbasiskookboek\nbasiskosten\nbasiskracht\nbasislast\nbasismobiliteit\nbasisnet\nbasispas\nbasisplaat\nbasisritme\nbasisschoolperiode\nbasisschooltijd\nbasisset\nbasissoftware\nbasisstek\nbasisstof\nbasissubsidie\nbasistaak\nbasisthema\nbasistheorie\nbasisunit\nbasisvaluta\nbasisvereiste\nbasisverhaal\nbasisvoeding\nbasisvoorraad\nbasiswijn\nbasiszorgverzekering\nbasketbalseizoen\nbasketbalvereniging\nbastaarddochter\nbastoon\nbastrombone\nbasversterker\nbaswerk\nbatterijcapaciteit\nbatterijhouder\nbatterijlading\nbatterijspanning\nbatterijvak\nbebouwingshoogte\nbebouwingspercentage\nbededag\nbedevaartoord\nbedevaartseizoen\nbediendestatuut\nbedieningseenheid\nbedieningsgebouw\nbedieningshendel\nbedrijfsadvies\nbedrijfsafvalwater\nbedrijfsanalyse\nbedrijfsarchief\nbedrijfsarchitectuur\nbedrijfsautomatisering\nbedrijfsbegeleider\nbedrijfsborrel\nbedrijfscrisis\nbedrijfsdierenarts\nbedrijfsdoel\nbedrijfseigenaar\nbedrijfsevenement\nbedrijfsfotografie\nbedrijfsfysiotherapeut\nbedrijfsgedeelte\nbedrijfsidentiteit\nbedrijfsinformatiesysteem\nbedrijfsinmenging\nbedrijfsinrichting\nbedrijfsjournalistiek\nbedrijfskasstroom\nbedrijfslening\nbedrijfsnoodplan\nbedrijfsopening\nbedrijfsopzet\nbedrijfspoort\nbedrijfsrecht\nbedrijfsregeling\nbedrijfsregister\nbedrijfsreglement\nbedrijfsreminrichting\nbedrijfsschadeverzekering\nbedrijfsstage\nbedrijfsstagnatie\nbedrijfstakniveau\nbedrijfstoeslag\nbedrijfstoeslagregeling\nbedrijfstoestand\nbedrijfstype\nbedrijfsuitrusting\nbedrijfsvergelijking\nbedrijfsvermogen\nbedrijfsvervoerplan\nbedrijfsvisie\nbedrijfsvloer\nbedrijfsvoorraad\nbedrijvenbestand\nbedrijvendag\nbedrijvenloket\nbedrijvenloop\nbeekbedding\nbeekforel\nbeekherstel\nbeekloop\nbeeldanalyse\nbeeldarchief\nbeeldbestand\nbeeldchip\nbeeldcommunicatie\nbeeldcompositie\nbeelddenken\nbeelddenker\nbeelddiagonaal\nbeeldelement\nbeeldenroute\nbeeldenstroom\nbeeldenverering\nbeeldenwereld\nbeeldgrootte\nbeeldkader\nbeeldmanipulatie\nbeeldmontage\nbeeldpunt\nbeeldresolutie\nbeeldrijm\nbeeldruis\nbeeldschermloep\nbeeldsnelheid\nbeeldtraditie\nbeeldverbod\nbeeldvoering\nbeeldvorm\nbeeldvormingsgroep\nbeeldvulling\nbeeldweergave\nbeenas\nbeenblessure\nbeendermerg\nbeengeleiding\nbeenletsel\nbeenmode\nbeenvliesontsteking\nbeestenspul\nbeetregistratie\nbeetverklikker\nbegeleidingsaanbod\nbegeleidingsbrief\nbegeleidingscomité\nbegeleidingsdocument\nbegeleidingsstaf\nbegijnenbeweging\nbeginleeftijd\nbeginnersgroep\nbeginnersniveau\nbeginniveau\nbeginontwikkeling\nbeginpositie\nbeginpost\nbeginscène\nbeginselmanifest\nbeginstelling\nbeginstuk\nbeginthema\nbeginvraag\nbegraafplaatsbeheerder\nbegrafenismaal\nbegrafenisritueel\nbegrafenisstemming\nbegripsniveau\nbegrotingsbeheer\nbegrotingscyclus\nbegrotingsdoelstelling\nbegrotingsperiode\nbegrotingsrekening\nbegrotingsstaat\nbegrotingsuitvoering\nbegrotingsvergadering\nbehandeladvies\nbehandelbeleid\nbehandelcoördinator\nbehandelfase\nbehandelgroep\nbehandelingsstrategie\nbehandelingstermijn\nbehandelingsvoorbehoud\nbehandelingsvoorstel\nbehandelingsvorm\nbehandelingswetgeving\nbehandelkosten\nbehandeloptie\nbehandelovereenkomst\nbehandelperiode\nbehandelprotocol\nbehandelvisie\nbehandelvorm\nbehanglijm\nbeheergebied\nbeheergroep\nbeheerrekening\nbeheersautoriteit\nbeheersmaatregel\nbeheersomgeving\nbeheersorganisatie\nbeheersregister\nbeheersvennootschap\nbeheersverordening\nbeheerteam\nbehendigheidsparcours\nbehoedzaamheidsreserve\nbehoeftestelling\nbeiaardmuziek\nbekeringsdrift\nbekeringsverhaal\nbekeroverwinning\nbekkenfysiotherapeut\nbekkengebied\nbekkengordel\nbekkenstreek\nbeklagrechter\nbekostigingsmodel\nbekostigingsstelsel\nbekwaamheidsbewijs\nbelangenclub\nbelastbaarheidspatroon\nbelastingklasse\nbelastingpot\nbelastingregister\nbelastingreglement\nbeleggersvereniging\nbeleggingsbedrijf\nbeleggingsfraude\nbeleggingspolis\nbeleggingsprofiel\nbeleidsaandacht\nbeleidsafdeling\nbeleidsakkoord\nbeleidsbegroting\nbeleidsbesluit\nbeleidsbeïnvloeding\nbeleidsformulering\nbeleidsinstrumentarium\nbeleidsinzet\nbeleidsonderwerp\nbeleidsonderzoeker\nbeleidsploeg\nbeleidspraktijk\nbeleidsprobleem\nbeleidspunt\nbeleidsreactie\nbeleidsregeling\nbeleidsrichting\nbeleidsstructuur\nbeleidstheorie\nbeleidstraject\nbeleidsverantwoordelijkheid\nbeleidsverantwoording\nbeleidsvernieuwing\nbeleidsverslag\nbeleidsvlak\nbeleidswerk\nbelevingseconomie\nbelevingsonderzoek\nbellenblaas\nbellenman\nbelofteteam\nbeloningscode\nbeloningspakket\nbeloningsregeling\nbemanningsverblijf\nbemestingsadvies\nbemiddelingscomité\nbemiddelingsgesprek\nbemonsteringsfrequentie\nbenefietactie\nbenzinebrander\nbenzinegeld\nbenzineslang\nbenzinetoevoer\nbenzinewagen\nbeoordelingsbevoegdheid\nbeoordelingsmarge\nbeoordelingsmodel\nbeoordelingsrichtlijn\nbeoordelingsruimte\nbeoordelingsschema\nbeperkingengebied\nbeplantingsplan\nbereidingsmethode\nbergdal\nberghotel\nbergplateau\nbergprijs\nbergvak\nbergzolder\nbergzone\nberichtenbalk\nbermbeheer\nbermbrand\nbermgras\nberoepenstructuur\nberoepingscommissie\nberoepsbeoefening\nberoepsfotograaf\nberoepsgang\nberoepsgedeelte\nberoepsjournalist\nberoepskaart\nberoepskennis\nberoepskeuzebegeleiding\nberoepskolom\nberoepsmusicus\nberoepsorgaan\nberoepspensioenregeling\nberoepsregistratie\nberoepsrichting\nberoepsscheepvaart\nberoepsscholing\nberoepssituatie\nberoepsstatus\nberoepstak\nberoepstitel\nberoepsveld\nbeschavingsmissie\nbeschermfolie\nbeschermhuls\nbeschermingsbeleid\nbeschermingsinrichting\nbeschermingsmiddel\nbeschermingsomvang\nbeschermingsprocedure\nbeschermingsregime\nbeschermingsstatus\nbeschermplaat\nbeschikkingsonbevoegdheid\nbeschuitkruim\nbeslagrechter\nbeslispunt\nbeslissingsboom\nbesluitvormingsorgaan\nbesluitvormingstraject\nbesmettingsniveau\nbesparingsprogramma\nbespreekpunt\nbespreekstuk\nbessenfruit\nbestaanszekerheidsvergoeding\nbestandsdeel\nbestandseigenaar\nbestandsindeling\nbestandsuitwisseling\nbestedingsdoel\nbestelcode\nbestelgrootte\nbestelinformatie\nbestelknop\nbestelkosten\nbestelmodule\nbestelmogelijkheid\nbestelpagina\nbestemmingsland\nbestemmingsvlak\nbestralingstijd\nbesturingseenheid\nbesturingselement\nbesturingskast\nbesturingsmodel\nbestuurdersdeur\nbestuurderskaart\nbestuurderszetel\nbestuurderszijde\nbestuursconvenant\nbestuursondersteuning\nbestuursopdracht\nbestuurspartij\nbestuursprogramma\nbestuursrapportage\nbestuursreglement\nbestuursstelsel\nbestuursvoering\nbestuurswissel\nbetaalbaarheidsheffing\nbetaaldienst\nbetaalmarkt\nbetaalmogelijkheid\nbetaalomgeving\nbetaalopdracht\nbetaalperiode\nbetaaltelevisiemarkt\nbetaaltermijn\nbetalingskenmerk\nbetalingsmiddel\nbetalingsoverzicht\nbetalingsrisico\nbetalingsstuk\nbetalingsverzoek\nbetekenislaag\nbetekenisonderscheid\nbetekenisveld\nbetekenisverlening\nbetekenisverschuiving\nbetekenisvolheid\nbetekeniswereld\nbetonbaan\nbetonbak\nbetonbalk\nbetoncentrale\nbetonmixer\nbetonmortel\nbetonneren\nbetonoppervlak\nbetonpad\nbetonrand\nbetonverf\nbetonvoetbal\nbetonwand\nbeugelbehandeling\nbeursautoriteit\nbeurscomplex\nbeursdeelname\nbeursmarkt\nbeursorganisator\nbeursperiode\nbeurssentiment\nbeursterrein\nbevallingskamer\nbevallingsuitkering\nbevallingsverhaal\nbeveiligingsbulletin\nbeveiligingscode\nbeveiligingskosten\nbeveiligingsman\nbeveiligingsonderzoeker\nbeveiligingsoplossing\nbeveiligingspakket\nbeveiligingsprobleem\nbeveiligingsspecialist\nbeveiligingswerk\nbeverdam\nbevergroep\nbevestigingsmateriaal\nbevoegdheidsdomein\nbevoegdheidsgebied\nbevoegdheidsoverdracht\nbevolkingsbeleid\nbevolkingsdienst\nbevolkingsniveau\nbevoorradingspost\nbevoorradingsroute\nbevoorradingszekerheid\nbevrijdingsoperatie\nbevrijdingspastoraat\nbewaarbaar\nbewaardoos\nbewaarpotentieel\nbewaarwijn\nbewaarzak\nbewakingspost\nbewakingsvideo\nbeweegnorm\nbeweegpatroon\nbewegingsaanbod\nbewegingsanalyse\nbewegingsangst\nbewegingsconsulent\nbewegingscultuur\nbewegingsdetectie\nbewegingsdetector\nbewegingsgedrag\nbewegingsmelder\nbewegingsopvoeding\nbewegingsspel\nbewegingssysteem\nbewegingstaal\nbewegingsverloop\nbewegingszin\nbewerkingsvenster\nbewijsaanbod\nbewijsconstructie\nbewijsdrang\nbewijslevering\nbewijswaarde\nbewindvoering\nbewonersbijeenkomst\nbewonersbrief\nbewonersenquête\nbewonersoverleg\nbewonersvergadering\nbewustwordingsgang\nbewustzijnsontwikkeling\nbewustzijnsverandering\nbewustzijnsvorm\nbewustzijnswaarde\nbezemhok\nbezettingsbestuur\nbezettingsdichtheid\nbezettingsoorlog\nbezettingsperiode\nbezettingsregime\nbezinningsbijeenkomst\nbezinningscentrum\nbezinningsdag\nbezinningsmoment\nbezitsverlies\nbezitsvorm\nbezoekerspas\nbezoekersteller\nbezoekgroep\nbezoekruimte\nbezoekwerk\nbezorgadres\nbezorgdag\nbezorgtijd\nbezuinigingstaakstelling\nbezwaarcommissie\nbibliotheekbezoek\nbibliotheekcatalogus\nbibliotheekcollectie\nbibliotheekgeschiedenis\nbibliotheekland\nbibliotheekpas\nbibliotheekvoorziening\nbibliotheekweek\nbiedingsprocedure\nbierbostel\nbiercafé\nbierfestival\nbierfiets\nbierkenner\nbierland\nbiermuseum\nbierpens\nbierronde\nbiertap\nbierteam\nbiertuin\nbierwereld\nbierwinkel\nbietenbrug\nbietensoep\nbijdrageplicht\nbijenhal\nbijennest\nbijenpopulatie\nbijenstand\nbijensterfte\nbijrijderskant\nbijstandsverzekering\nbijstandsvolume\nbijtgedrag\nbijtincident\nbijtwond\nbiljartkamer\nbiljartsport\nbinddraad\nbindingsenergie\nbindkracht\nbindsla\nbindvliesontsteking\nbindweefselplaat\nbinnenvaartsector\nbiologieboek\nbioscoopervaring\nbioscoophit\nbioscoopketen\nbioscoopsucces\nbisschopshuis\nbittervoorn\nbivakplaats\nbivakzak\nblaasfunctie\nblaasgat\nblaaskatheter\nblaastraining\nbladafval\nbladenmarkt\nbladformule\nbladgroei\nbladhoek\nbladkleur\nbladkool\nbladmassa\nbladoppervlak\nbladrammenas\nbladschikking\nbladsla\nbladvoet\nblafband\nblafbrief\nblauwgrasland\nblauwschimmel\nblauwschimmelkaas\nblauwsteen\nblauwtongvirus\nblauwtongziekte\nbleekgroen\nbleekweide\nblessuregevoelig\nblessuregolf\nblessureperiode\nblessurerisico\nblikpunt\nbliksemkanaal\nbliksemstart\nbloedaanmaak\nbloedafbraak\nbloedanalyse\nbloeddrukcontrole\nbloeddrukverhoging\nbloeddrukverlaging\nbloedgroepdieet\nbloedgroepenonderzoek\nbloedinstelling\nbloedinzameling\nbloedkuil\nbloedmaaltijd\nbloedmeel\nbloedmijt\nbloedoffer\nbloedsinaasappel\nbloedsuikerwaarde\nbloeduitslag\nbloedvoering\nbloedwaarde\nbloeistengel\nbloemendorp\nbloemeneiland\nbloemenkraam\nbloemenprint\nbloemensector\nbloemenverkoop\nbloemenweelde\nbloemmengsel\nbloemsmaak\nbloemsoort\nblokfluitles\nblokkendam\nbloknoot\nblokvorm\nblootlegging\nblootstellingskamer\nblootstellingstijd\nblowverbod\nbluesartiest\nbluesfestival\nbluesharp\nblusdeken\nblusgroep\nblusinstallatie\nblusmateriaal\nbluspoeder\nbluspoging\nblusstof\nblussysteem\nblustoestel\nblusvoertuig\nbluswatervoorziening\nbochtentechniek\nbodemoppervlak\nboedelbak\nboedelinventaris\nboedelregister\nboedelrekening\nboekbaar\nboekcultuur\nboekenafdeling\nboekenbestand\nboekenfestijn\nboekenhoek\nboekenkeuze\nboekenlezer\nboekenrubriek\nboekenschat\nboekensite\nboekenstand\nboekentoren\nboekenverkoper\nboekenzaak\nboekhistoricus\nboekhistorisch\nboekhoudafdeling\nboekhoudkantoor\nboekhoudperiode\nboekhoudrecht\nboekhoudwet\nboekingsbevestiging\nboekingskosten\nboekingsperiode\nboeknummer\nboekpublicatie\nboerderijcamping\nboerderijproject\nboerenbestaan\nboerencultuur\nboerenkip\nboerenkoolstamppot\nboerenlandschap\nboerentuin\nboetebeleid\nboetegeld\nboetepot\nboeterapport\nboetetocht\nboksclub\nboksgala\nbokswereld\nbollengrond\nbollensector\nbollentuin\nbomenverordening\nbommenruim\nbommenvizier\nbonenpasta\nbonenschotel\nbonnetjesaffaire\nbontindustrie\nbonusbeleid\nbonuskorting\nbonusrente\nbonusronde\nbonussectie\nbonustrack\nbonusvraag\nboogstraal\nboombal\nboomdeskundige\nboomfeestdag\nboomgeest\nboomgroei\nboomholte\nboomhuis\nboomkap\nboomlaag\nboomleeuwerik\nboomloos\nboompaal\nboomplantdag\nboomverzorger\nboomverzorging\nboomvorm\nboordcommandant\nboordkas\nboordnet\nboordplank\nboordsteen\nboormeel\nboorwerk\nbootdienst\nbootjesmolen\nbootmanager\nbootongeluk\nbootsector\nbootshow\nboottype\nbootverhuur\nborderplant\nbordestrap\nbordpunt\nbordspeler\nborgbrief\nborgstellingskrediet\nborgterrein\nborstademhaling\nborstelbeurt\nborstgroei\nborstkankermaand\nborstkankerrisico\nborstkliniek\nborstlift\nborstontwikkeling\nborstvoedingsverlof\nborstvorming\nborstwand\nborstzijde\nbosbessensap\nbosbestand\nbosbouwsector\nboscomplex\nbosdecreet\nbosdomein\nbosfruit\nbosgroep\nboskapel\nbosontwikkeling\nbospark\nbosrietzanger\nbosspel\nbosstrook\nbostuin\nbosuitbreiding\nboswachterswoning\nbotenloods\nbotenshow\nbotenwagen\nboterbereiding\nbotergeil\nbotermengsel\nboterpacht\nboterpachtregister\nbotervis\nbouillonpoeder\nbouwaard\nbouwbegeleider\nbouwbegeleiding\nbouwcultuur\nbouwdatum\nbouwdepot\nbouwdirectie\nbouwdossier\nbouwfysica\nbouwgebied\nbouwhal\nbouwhandleiding\nbouwhek\nbouwhelm\nbouwhistorie\nbouwhoek\nbouwhuis\nbouwinspecteur\nbouwinspectie\nbouwkamp\nbouwkolom\nbouwlamp\nbouwlijn\nbouwmanagement\nbouwmaterieel\nbouwovertreding\nbouwpersoneel\nbouwplank\nbouwpuin\nbouwregime\nbouwstart\nbouwstoffenbesluit\nbouwtraditie\nbouwvergunningvrij\nbouwverslag\nbouwvoorbereiding\nbovenbeenblessure\nbovenbuurjongen\nbraadtijd\nbranchekennis\nbrancheniveau\nbrancherapport\nbranchering\nbrandbeveiligingsconcept\nbrandcompartiment\nbranddeken\nbranddeskundige\nbrandduur\nbrandgrens\nbrandlijn\nbrandmeldcentrale\nbrandmeldinstallatie\nbrandnetelthee\nbrandprogramma\nbrandpuntafstand\nbrandstofinjectie\nbrandstofinspuiting\nbrandstofleverancier\nbrandstofmengsel\nbrandstofmix\nbrandstofmotor\nbrandstofsoort\nbrandtijd\nbrandverzekeraar\nbrandweerchef\nbrandweergarage\nbrandweerhervorming\nbrandweerschool\nbrandweerstand\nbrandweervoertuig\nbrandweervrijwilliger\nbrandweerwerk\nbrandweerwoordvoerder\nbreakpunt\nbreedbandinfrastructuur\nbreedbandmarkt\nbreedbandtoegang\nbreedbeeldformaat\nbreedtemaat\nbreedterichting\nbrekingsafwijking\nbreukregister\nbriefgeld\nbrilcorrectie\nbrilstand\nbroedblok\nbroedduur\nbroedergemeenschap\nbroederpaar\nbroedgedrag\nbroedgelegenheid\nbroedkooi\nbroedplaatsenbeleid\nbroedpopulatie\nbroeihaard\nbroeikasgasemissie\nbroeikasgasuitstoot\nbroekrand\nbromfietspad\nbromfietsrijbewijs\nbromfietsverzekering\nbromtoon\nbronbeleid\nbronhouder\nbronnengebruik\nbronnengeheim\nbronsgieterij\nbronstaat\nbronsysteem\nbroodafdeling\nbroodautomaat\nbroodbereiding\nbroodblik\nbroodfok\nbroodfokker\nbroodmeel\nbroodpudding\nbroodvermenigvuldiging\nbrouwgerst\nbrouwinstallatie\nbrouwmeester\nbrouwwater\nbrouwzaal\nbrowsermarkt\nbrowserscherm\nbrowservenster\nbrowserversie\nbrughoektumor\nbrugoefening\nbrugpieper\nbrugtaal\nbrugwachterswoning\nbrugwerk\nbruidsbeurs\nbruidskamer\nbruidsreportage\nbruidssuite\nbruidswerk\nbruidswinkel\nbruikleenovereenkomst\nbrulkikker\nbubbeltjesplastic\nbubbeltjeswijn\nbudgetbegeleiding\nbudgetcompensatie\nbudgethotel\nbudgetlimiet\nbudgetmaatschappij\nbudgetplafond\nbudgetplan\nbudgetwijziging\nbufferbekken\nbuffervat\nbuienactiviteit\nbuiengebied\nbuienwolk\nbuigpees\nbuikdrager\nbuikgebied\nbuikinhoud\nbuikkleur\nbuiklijn\nbuikschild\nbuikschuiver\nbuiktyfus\nbuikvlek\nbuikvlieskanker\nbuisdefect\nbuismaag\nbuispaal\nbuitentent\nbulklading\nbulkmail\nburchtmuur\nbureauredactie\nbureauruimte\nbureaustudie\nburgemeesterszoon\nbusincident\nbusinesscentrum\nbusinesspartner\nbuskaart\nbusnetwerk\nbusnummer\nbusplatform\nbussnelheid\nbusstaking\nbusstop\nbusticket\nbustoer\nbustrip\nbustunnel\nbuurkat\nbuurplaneet\nbuurtbijeenkomst\nbuurtbudget\nbuurtgemeenschap\nbuurtheer\nbuurtinformatienetwerk\nbuurtleven\nbuurtnetwerk\nbuurtoverleg\nbuurtplein\nbuurtpreventieteam\nbuurtprobleem\nbuurtraad\nbuurtsport\nbuurtsupermarkt\nbuurtteam\nbuurtwinkelcentrum\nbuxushaag\ncabarettalent\ncabaretwereld\ncabinedeur\ncacaomassa\ncacaoproductie\ncachelocatie\ncacheplek\ncadeaucheque\ncadeaukaart\ncadeauservice\ncadeautip\ncaféruimte\ncaférust\ncafétafel\ncalamiteitenbestrijding\ncalamiteitendienst\ncalciumopname\ncalciumsulfaat\ncalciumtekort\ncaloriegehalte\ncalorieverbruik\ncamerabeeld\ncamerabeveiliging\ncamerafabrikant\ncameragebruik\ncamerapositie\ncameratas\ncameratechniek\ncampagnebeeld\ncampagnebijeenkomst\ncampagnegeld\ncampagnelied\ncampagnemanager\ncampagneperiode\ncampagnesite\ncampagnestaf\ncampagnestrateeg\ncampagnestrijd\ncampingeigenaar\ncampinggids\ncampingplaats\ncampingticket\ncampingvakantie\ncampingzender\ncannabisbeleid\ncannabisplant\ncanoncommissie\ncanonvorming\ncanvasdoek\ncapaciteitsgroep\ncapaciteitsontwikkeling\ncapaciteitstarief\ncapaciteitsverhoging\ncapaciteitsversterking\ncaravanpark\ncaritasinstelling\ncarnavalsgebeuren\ncarnavalshit\ncarnavalsjaar\ncarnavalskleding\ncarnavalsmis\ncarnavalsnummer\ncarnavalspak\ncarnavalsperiode\ncarnavalsvakantie\ncarnavalszaterdag\ncarnavalszondag\ncarrièrebeurs\ncarrièreontwikkeling\ncarrièrepad\ncarrièrewending\ncartoonaffaire\ncartooncrisis\ncartoonkwestie\ncartoonoorlog\ncartoonrel\ncartoonwedstrijd\ncashback\ncashgeld\ncassettespeler\ncatalogusgedeelte\ncategoriefout\ncederboom\ncensuskiesrecht\ncentrumring\ncentrumvisie\ncentrumzone\nchampagnebar\nchampignonmengsel\nchatbot\nchatfunctie\nchatkanaal\nchatlijn\nchatruimte\nchatsite\nchecklijst\ncheckpost\nchloorlucht\nchloridegehalte\ncholesterolniveau\nchristengelovige\nchristengemeenschap\nchristenpoliticus\nchristenvolk\nchromosomenpaar\ncijferproducent\ncijferrapport\ncijferseizoen\ncijnsboek\ncilindervorm\ncircuitgebruik\ncircuitmodel\ncircuittraining\ncirculatiestilstand\ncircusfamilie\ncircuspiste\ncircusschool\ncirkelredenatie\nciteerwijze\ncitroenblad\ncitroengeur\ncitroenvlinder\ncitroenwater\ncitroenzuurcyclus\ncitrusgeur\nclaimbrief\nclaimgedrag\nclanhoofd\nclanmoeder\nclassisvergadering\nclipboard\nclipping\ncliëntenbeweging\ncliëntenpopulatie\ncliëntgerichtheid\ncliëntondersteuning\ncliënttevredenheid\nclubbijeenkomst\nclubfeest\nclubhouse\nclubjaar\nclubleven\nclubmanager\nclubmatch\nclubmiddag\nclubmuziek\ncluborgaan\nclubrit\nclubsecretaris\nclubsfeer\nclubshirt\nclubtent\nclubtraining\nclubtrouw\nclubvlag\nclusterknooppunt\nclustermanager\ncocktailavond\ncodegenerator\ncodeweergave\ncokeskolen\ncollectegeld\ncollecteweek\ncollectiviteitskorting\ncollegeakkoord\ncollegedeelname\ncollegegeldkrediet\ncollegekaartnummer\ncollegestandpunt\ncolumnschrijver\ncommandoregel\ncommentaarstuk\ncommissiebehandeling\ncommissiestelsel\ncommunicatieadvies\ncommunicatiebehoefte\ncommunicatieboodschap\ncommunicatiebranche\ncommunicatiebudget\ncommunicatiedienst\ncommunicatiefunctie\ncommunicatiegebied\ncommunicatiegedrag\ncommunicatiekracht\ncommunicatiekunde\ncommunicatiemanagement\ncommunicatiemateriaal\ncommunicatiemix\ncommunicatiemodel\ncommunicatieprofessional\ncommunicatiestijl\ncommunicatiestructuur\ncommunicatietrainer\ncommunicatietraject\ncommunicatievak\ncommunicatiewereld\ncommunieviering\ncompensatiebeginsel\ncompensatiegedrag\ncompensatieplicht\ncompensatieverlof\ncompetentieniveau\ncompetitieavond\ncompetitiedrang\ncompetitiegeest\ncompetitiehervorming\ncompetitieseizoen\ncompetitiestand\ncompetitieteam\ncompetitievorm\ncompromisloosheid\ncomputeraanval\ncomputerafdeling\ncomputerboer\ncomputerervaring\ncomputerexpert\ncomputerfanaat\ncomputerhoek\ncomputerhulp\ncomputerinfrastructuur\ncomputerkast\ncomputernaam\ncomputerpracticum\ncomputershop\ncomputertafel\ncomputervaardigheid\ncomputerverzekering\nconcentratiebereik\nconcentratieniveau\nconcentratieverordening\nconceptauto\nconceptbesluit\nconceptcode\nconceptmap\nconceptplaat\nconceptrichtlijn\nconceptstudie\nconceptwet\nconceptwetsvoorstel\nconcernvorming\nconcertfilm\nconcerthal\nconcertorgel\nconcertpraktijk\nconcertrepertoire\nconcertserie\nconcerttempel\nconcerttour\nconcertzender\nconcessiemodel\nconcessieverlener\nconcessieverlening\nconcurrentiegedrag\nconcurrentieprobleem\nconcurrentiewetgeving\ncondensdroger\nconditiebewaking\nconditieverbetering\ncondoomverbod\nconfectiemaat\nconferentiedag\nconfiguratiebeheer\nconflictbeslechting\nconflictdiamant\nconflictmanagement\nconflictregel\nconflictzone\nconformiteitsattest\nconformiteitsverklaring\ncongresboek\ncongresbundel\ncongreslocatie\ncongresprogramma\ncongrestekst\nconserveringsprogramma\nconstructiedeel\nconstructiefase\nconstructiehout\nconstructiesnelheid\nconstructiestaal\nconsulteerbaar\nconsumentenkoop\nconsumptiebelasting\nconsumptiebon\nconsumptiedwang\ncontactallergie\ncontactenlijst\ncontactfrequentie\ncontactlijst\ncontactonderwijs\ncontactsport\ncontactspray\ncontactverzoek\ncontactvlak\ncontainerbrand\ncontainerkade\ncontextafhankelijk\ncontextgebonden\ncontextloos\ncontextverhaal\ncontinuïteitsplan\ncontractfase\ncontractmanager\ncontractrecht\ncontracttermijn\ncontractuur\ncontractvoorstel\ncontractwerk\ncontraststof\ncontrastverhouding\ncontroleafspraak\ncontrolebeurt\ncontroleformulier\ncontrolefrequentie\ncontrolegetal\ncontrolemaatschappij\ncontrolemonster\ncontroleonderzoek\ncontroleopdracht\ncontroleorganisme\ncontroleplan\ncontroleprocedure\ncontrolerapport\ncontrolerecht\ncontroleruimte\ncontrolespoor\ncontrolestaat\ncontroletotaal\ncontroleverslag\nconventiecentrum\nconversietabel\ncopyrighthouder\ncorpusonderzoek\ncorrectievoorschrift\ncorsowagen\ncosmeticagigant\ncountryband\ncoverfoto\ncovergroep\ncoververhaal\ncoördinatiecel\ncoördinatiefunctie\ncoördinatiegroep\ncoördinatiekosten\ncoördinatiemechanisme\ncoördinatievermogen\ncreatiespiraal\ncreditcontract\ncreditmanagement\ncreolentaal\ncrewroom\ncriminaliteitsbeeld\ncrisisakkoord\ncrisiscel\ncrisisdebat\ncrisiseenheid\ncrisishulp\ncrisiskaart\ncrisispakket\ncrisispreventie\ncrosscup\ncrossparcours\ncrossseizoen\ncrosswind\ncrèmespoeling\nculthit\ncultusbeeld\ncultuurbeeld\ncultuurbereik\ncultuurcluster\ncultuurcoördinator\ncultuurdag\ncultuurdeelname\ncultuurelement\ncultuurevenement\ncultuurfenomeen\ncultuurfunctionaris\ncultuurgroep\ncultuurmakelaar\ncultuurmens\ncultuurminnaar\ncultuuronderwijs\ncultuurperiode\ncultuurpodium\ncultuurprobleem\ncultuurproductie\ncultuurseizoen\ncultuurtheorie\ncultuurvisie\ncultuurvolger\ncultuurvorm\ncupcake\ncursusavond\ncursusbedrag\ncursusbeheerder\ncursuscentrum\ncursuscoördinator\ncursusdienst\ncursuskosten\ncursusleidster\ncursuslocatie\ncursusmap\ncursusnaam\ncursusonderdeel\ncursusweek\ndaadloosheid\ndaadstelling\ndaderkennis\ndagactiviteit\ndagafsluiting\ndagbewustzijn\ndagbladhandel\ndagboekkamer\ndagbudget\ndagburgemeester\ndagdosis\ndagetappe\ndaggrafiek\ndaghospitaal\ndagklassement\ndaglicentie\ndaglichtperiode\ndagoverwinning\ndagpas\ndagperiode\ndagprogrammering\ndagsituatie\ndagstructuur\ndagtherapie\ndagticket\ndagverslag\ndagverzorgingscentrum\ndagvulling\ndagwinnaar\ndagziekenhuis\ndagzorg\ndakantenne\ndakbekleding\ndakbrand\ndakdoorvoer\ndakleer\ndakoppervlak\ndakplaat\ndakschild\ndakspoiler\ndakstructuur\ndameshockeyteam\ndameslijn\ndameslingerie\ndampbad\ndampfase\ndankmis\ndankviering\ndansacademie\ndansact\ndansclub\ndanscursus\ndansdocent\ndanservaring\ndansexpressie\ndansgevoel\ndanskleding\ndansoptreden\ndanspaal\ndansplezier\ndansruimte\ndansscène\ndansseizoen\ndansspektakel\ndansstuk\ndanstechniek\ndansveld\ndarmperforatie\ndarmspoeling\ndarmsyndroom\ndarmweefsel\ndartsport\ndarttoernooi\ndashboardverlichting\ndatabankenrecht\ndatabasebeheer\ndatabasestructuur\ndatabasesysteem\ndatabus\ndataconversie\ndatafile\ndatagebruik\ndatagroei\ndatakaart\ndatalink\ndatapakket\ndataselectie\ndatasheet\ndatasnelheid\ndataverbruik\ndatingservice\ndatumveld\ndealerkanaal\ndealerorganisatie\ndealerschap\ndealerwerkplaats\ndebatcentrum\ndebatland\ndebatleider\ndebatsite\ndebattenreeks\ndebattoernooi\ndebatwedstrijd\ndebriefingsgesprek\ndebuutprijs\ndecibelmeter\ndeclaratieschandaal\ndeclaratieverkeer\ndecorploeg\ndeegplak\ndeelbekken\ndeelbemiddeling\ndeelkwalificatie\ndeellast\ndeelnamepercentage\ndeelnemersbestand\ndeelnemersbijdrage\ndeelnemersgroep\ndeelnemerskaart\ndeelraadsvergadering\ndeelsite\ndeeltijdfactor\ndeelvak\ndefensiemedewerker\ndefensiesysteem\ndefinitiefase\ndefinitiekwestie\ndegradatienood\ndegradatieregeling\ndegradatiestreep\ndekbedhoes\ndekdienst\ndekkingsmiddel\ndekkingstekort\ndeklicentie\ndekseizoen\ndekzool\ndelegatiebesluit\ndelfstofwinning\ndeltatechnologie\ndemonstratiemateriaal\ndemonstratierecht\ndemonstratieruimte\ndenkhouding\ndenklijn\ndenkschema\ndenkspel\ndenksportcentrum\ndenkstijl\ndenkstof\ndenkstroming\ndennenolie\ndepositogarantie\ndepositogarantieregeling\ndepositoronde\ndesignbureau\ndesignradiator\ndesigntaal\ndesignteam\ndeskstudie\ndeskundigengroep\ndeskundigenonderzoek\ndeskundigenpanel\ndeskundigenverklaring\ndeskundigenverslag\ndeskundigheidsgebied\ndeskundigheidsniveau\ndessertenbuffet\ndetacheringsbasis\ndetailhandelsbeleid\ndetailkaart\ndetailpagina\ndetailscherm\ndetailverkoop\ndetailweergave\ndetailwerk\ndetectiekans\ndetectielimiet\ndetectiveboek\ndetentieboot\ndeugdethiek\ndeurblad\ndeurkozijn\ndeurlijst\ndeurwaarderskantoor\ndiabaas\ndiagnosecode\ndiakenambt\ndiakenwijding\ndialezing\ndialoogbox\ndialysebehandeling\ndiamantbuurt\ndiamantcentrum\ndiamantvak\ndichterscollectief\ndichttalent\ndichtwedstrijd\ndieetadvisering\ndieetboek\ndieetgoeroe\ndieetpreparaat\ndieetprogramma\ndieetvoer\ndiefstalpreventie\ndienstactiviteit\ndienstanciënniteit\ndienstapotheek\ndienstchef\ndiensthuis\ndienstraad\ndienstsnelheid\ndienstuitvoering\ndienstverleningsdocument\ndienstverleningsovereenkomst\ndienstverleningspakket\ndienstvoertuig\ndienstvrijstelling\ndiepteligging\ndiepteonderzoek\ndiepvriesdoos\ndiepvriesspinazie\ndiepvriesvoer\ndiepvrieszak\ndiepwand\ndiepzwart\ndierenartsassistente\ndierenartsbezoek\ndierenartskosten\ndierenartspraktijk\ndierenbevrijdingsfront\ndierenbos\ndierendokter\ndierengeluid\ndierengeneeskunde\ndierengezondheid\ndierenopvangcentrum\ndierenorganisatie\ndierenpartij\ndierenpaspoort\ndierenpolitie\ndierenporno\ndierenrechtenbeweging\ndierenriemteken\ndierenseks\ndierensoort\ndierentehuis\ndierentransport\ndierenverzorging\ndierenvriendin\ndierenweide\ndierenwelzijnsbeleid\ndierenzaak\ndierenziekenhuis\ndiergeneesmiddel\ndiervoederindustrie\ndiervoedersector\ndierziektebestrijding\ndieselbus\ndieselpomp\ndievengilde\ndifferentiatiefase\ndijbeenkop\ndijkaanleg\ndijkhoogte\ndijkringgebied\ndijkvoet\ndiktegroei\ndinerbon\ndinerkaart\ndinertafel\ndinsdagmarkt\ndinsdagtraining\ndinsdagvoormiddag\ndiplomatendochter\ndirectiechauffeur\ndirectiemodel\ndirectievoerder\ndirectievoering\ndirectievoorstel\ndiscoavond\ndiscofeest\ndiscomfort\ndisconteringsvoet\ndiscriminatiegrond\ndiscussiecultuur\ndiscussiemateriaal\ndiscussienotitie\ndiscussiepanel\ndiscussietafel\ndiscussietekst\ndispositief\ndisproportionaliteit\ndisselkast\ndistelvlinder\ndistributiedienst\ndistributielijst\ndistributiemodel\ndistributiestelsel\ndistributiestrategie\ndiversiteitsmanagement\ndocumentairefestival\ndocumentairereeks\ndocumentanalyse\ndocumentherkenning\ndocumenthouder\ndocumentnummer\ndocumenttype\ndodehoekongeval\ndodengebed\ndodenhuis\ndodenweg\ndoelcomputer\ndoeleind\ndoelgroepanalyse\ndoelgroepbereik\ndoelgroepgericht\ndoelmap\ndoelmarkt\ndoelmatigheidsonderzoek\ndoelmatigheidswinst\ndoelpuntenproductie\ndoelpuntensaldo\ndoelsysteem\ndoeltekst\ndoelvariabele\ndoelvennootschap\ndoktersdienst\ndoktershuis\ndokterskamer\ndokterspost\ndokterswoning\ndolfijnenshow\ndolfijntherapie\ndollarbiljet\ndomeinbeheerder\ndomeinkennis\ndomeinnaamregistratie\ndompelpomp\ndonderdagmarkt\ndonorcoördinatie\ndonorshow\ndoodgeboorte\ndoodslager\ndoopdatum\ndoopdienst\ndoopmeter\ndoopritueel\ndoopviering\ndoorklikratio\ndoorlaatmiddel\ndoorreisland\ndoorvaartopening\ndoorwerkbonus\ndoorzettingskracht\ndoorzettingsmacht\ndopingarts\ndopingcontroleur\ndorstgevoel\ndosisaanpassing\ndosisafhankelijk\ndossieranalyse\ndossierbeheerder\ndossieroverdracht\ndossiersamenstelling\ndossierstudie\ndossiervreter\ndotterprocedure\ndouchedeur\ndouchegelegenheid\ndouchehoek\ndouchemuts\ndoucheschuim\ndoucheslang\ndouchestraal\ndouchewand\ndraadboom\ndraadeinde\ndraadstang\ndraagbeugel\ndraagsysteem\ndraaibeurt\ndraaidop\ndraaiduizeligheid\ndraaiorgelmuziek\ndraaiperiode\ndraaipoging\ndraaischakelaar\ndraaisysteem\ndraaitijd\ndraaiwiel\ndrafbaan\ndramadocent\ndramafilm\ndramales\ndrankautomaat\ndrankconsumptie\ndrankgelag\ndrankketen\ndrankomzet\ndrankpauze\ndrankpost\ndranktent\ndreigmail\ndressuurmatig\ndressuurstal\ndressuurteam\ndressuurwedstrijd\ndressuurzadel\ndriehoekvorm\ndriehonkslag\ndriekamerappartement\ndriekamp\ndriemastschoener\ndriesetter\ndriftsneeuw\ndrijflaag\ndrijflichaam\ndrilpudding\ndrinkbouillon\ndrinkfles\ndrinkgelegenheid\ndrinkgerei\ndrinkhoorn\ndrinkpatroon\ndrinkpauze\ndrinkpost\ndrinkvoeding\ndrinkwaterbereiding\ndrinkwaterkwaliteit\ndrinkwatermaatschappij\ndrinkwaternet\ndrinkwatersector\ndriveletter\ndromenvanger\ndroombestemming\ndroomduiding\ndroomeiland\ndroomfase\ndroomjurk\ndroomleven\ndroomlocatie\ndroomplek\ndroomscène\ndroomstaat\ndroomvakantie\ndroomvilla\ndroomvrouw\ndroomwoning\ndropzone\ndrugsbaas\ndrugseconomie\ndrugsindustrie\ndrugspolitie\ndrugsstrategie\ndruivenstok\ndrukbelasting\ndrukdaling\ndrukgeschiedenis\ndrukgevoel\ndrukgevoelig\ndrukgroep\ndrukkamer\ndrukkersregister\ndrukkerswereld\ndrukkracht\ndrukkwaliteit\ndrukloos\ndrukpijn\ndrukpuntmassage\ndrukspuit\ndrukstijging\ndrukstuk\ndrukvel\ndrukverandering\ndrukverlaging\ndrukvermindering\ndrukvrij\ndrumspel\ndubbelfestival\ndubbelgebruik\ndubbelhuis\ndubbelklooster\ndubbelpartij\ndubbelroman\ndubbeltest\ndubbeltractie\nduidingsprogramma\nduikapparatuur\nduikbestemming\nduikclub\nduikdiepte\nduikfles\nduikgebied\nduikgedrag\nduikhelm\nduikles\nduikmateriaal\nduikopleiding\nduikplek\nduikshop\nduiktrip\nduikvereniging\nduikwereld\nduikwinkel\nduimafdruk\nduimmuis\nduinengordel\nduinenlandschap\nduingrasland\nduinterrein\nduinvorming\nduinwandeling\nduivenbond\nduivenlokaal\nduivenmarkt\nduivenoverlast\nduivenpoep\nduivenstront\nduiventoren\nduivenvereniging\nduivenvoer\ndumpingmarge\nduurkracht\nduurlooptempo\nduurloper\nduurovereenkomst\nduurproef\nduurzaamheidsambtenaar\nduurzaamheidstoets\ndwangakkoord\ndwangburcht\ndwanghandeling\ndwangstoornis\ndwangtoepassing\ndwangvoeding\ndwergenkoning\ndwergkonijn\ndwergmens\ndwerguil\ndwergvorm\nechelonnering\nechtheidscertificaat\nechtscheidingswet\nechtvriend\neclipskleed\neconomenwereld\neconomieonderwijs\neducatiereis\neeltvorming\neendenvijver\neendenvlees\neenheidsbewustzijn\neenheidscirkel\neenheidstype\neetkamerstoel\neffectbeschrijving\neffectgrootte\nefficiencykorting\nefficiëntiewinst\neierdoos\neiermassa\neierproductie\neiersalade\neigendomsakte\neigendomsmerk\neigendomssituatie\neigendomstitel\neigendomsverwerving\neigenwoningregeling\neikelmuis\neikenmos\neilandbevolking\neindafnemer\neindarrest\neindbeschikking\neinddeclaratie\neinddemper\neinddoelstelling\neindeloopbaandebat\neindeloopbaanproblematiek\neindexamenfeest\neindexamenfilm\neindexamenwerk\neindgevecht\neindinspectie\neindjaar\neindkandidaat\neindleeftijd\neindlocatie\neindmix\neindoefening\neindoffensief\neindpass\neindplaats\neindproef\neindproject\neindranglijst\neindrondeticket\neindsom\neindstelling\neindstuk\neindtest\neindtraject\neindtrap\neinduitspraak\neinduur\neindverbruik\neindvorm\neindwerkstuk\neindwinst\neiproductenbedrijf\neisbaar\neiwitbehoefte\neiwitbron\neiwitinname\neiwitmantel\neiwitmolecuul\neiwitopname\neiwitpoeder\neiwitproductie\neiwitverlies\nelektriciteitsaansluiting\nelektriciteitscabine\nelektriciteitskast\nelektriciteitslevering\nelektriciteitsmast\nelementenmethode\nelfenbos\nelfenkoning\nelftalcommissie\neliteclub\nemancipatienota\nemancipatiestreven\nembargoregeling\nembargostatus\nemissiebeleid\nemissiebeperking\nemissiefactor\nemissieniveau\nemissieplafond\nemissieregistratie\nemissieverslag\nencryptiesoftware\nenergieafhankelijkheid\nenergiebal\nenergiebesparingsplan\nenergiebewust\nenergieboekhouding\nenergiecentrum\nenergiecertificaat\nenergieconcept\nenergiecontract\nenergiedebat\nenergiedeskundige\nenergiedoorstroming\nenergiegehalte\nenergiegewas\nenergieketen\nenergieklasse\nenergieleverantie\nenergielichaam\nenergieloos\nenergiemix\nenergieonderzoek\nenergieopname\nenergiepakket\nenergieprogramma\nenergierapport\nenergiereserve\nenergiescan\nenergiesituatie\nenergieteelt\nenergietoestand\nenergieveiligheid\nenergieverdeling\nenergievisie\nenergiewerk\nenergiewinst\nengelenmaker\nengelenwereld\nenkelletsel\nenkelspan\nenkelvork\nenquêteprocedure\nentertainmentbranche\nentertainmentgehalte\nentertainmentprogramma\nentertainmentsysteem\nentertainmentwereld\nerectieprobleem\neredivisieniveau\neredivisiewedstrijd\neremoord\nerepark\neretreffer\nerfpachtrecht\nerkenningsaanvraag\nerkenningsbesluit\nerkenningscommissie\nerkenningsnummer\nerkenningsronde\nerkenningstermijn\nerosiesnelheid\nervaringsbewijs\nervaringsuitwisseling\nervaringsverhaal\nescortbedrijf\nescortdame\nesdoornhout\nesdorpenlandschap\netherlichaam\nethersignaal\nethertelevisie\nethylacetaat\netmaaltemperatuur\nevangelielezing\nevangelietekst\nevangelieverkondiging\nevenementenbranche\nevenementencentrum\nevenementencommissie\nevenementenlocatie\nevenementennota\nevenementenorganisatie\nevenementenstad\nevenementenvergunning\nevolutiegedachte\nevolutiepsychologie\nexamencentrum\nexamendossier\nexamenfeest\nexamenjury\nexamenkosten\nexamenregeling\nexamenrooster\nexamensecretaris\nexamenstress\nexamenstunt\nexamenuitslag\nexecutiefase\nexecutiepaal\nexecutieveiling\nexercitiepeloton\nexpansiestrategie\nexpansiezucht\nexpeditieteam\nexperimenteerbord\nexperimenteerdrang\nexperimenteerruimte\nexpertisegebied\nexpertisenetwerk\nexpertkennis\nexpertpanel\nexpertteam\nexploitatiefase\nexploitatiemodel\nexploitatieplan\nexploitatierisico\nexploitatiesaldo\nexploitatiesteun\nexploitatievorm\nexploitatiezetel\nexportbestand\nexportcertificaat\nexportovereenkomst\nexportplan\nexpositiecentrum\nfabricagefout\nfabricagekosten\nfaciliteitenonderwijs\nfactuurregel\nfaculteitsbibliotheek\nfaculteitsbureau\nfaculteitsreglement\nfakkelloop\nfamiliebadplaats\nfamiliebelang\nfamilieboek\nfamiliecircus\nfamiliecultuur\nfamiliediner\nfamiliehond\nfamiliekamer\nfamiliekunde\nfamiliekwestie\nfamilielink\nfamiliemens\nfamilieonderzoek\nfamilieopstelling\nfamilieprogramma\nfamilierecept\nfamiliesite\nfamiliesituatie\nfamiliestamboom\nfamilietoernooi\nfamilievader\nfamilievoorstelling\nfamiliewet\nfamiliezorg\nfantasietaal\nfantasieverhaal\nfasehuis\nfaseovergang\nfavorietenlijst\nfederatievorming\nfeestcafé\nfeestcultuur\nfeesteditie\nfeestgelegenheid\nfeestkalender\nfeestkledij\nfeestkrant\nfeestmuts\nfeestnacht\nfeestpakket\nfeestpaleis\nfeestruimte\nfeeststoet\nfeestversiering\nfeitenrechter\nfestivalbezoeker\nfestivalcamping\nfestivalpaleis\nfestivalpodium\nfestivalsfeer\nfestivalsite\nfestivaltent\nfestivalzomer\nfietsactie\nfietsarrangement\nfietsavontuur\nfietsboot\nfietsbus\nfietscafé\nfietsconditie\nfietscross\nfietsdoos\nfietsdynamo\nfietsenberging\nfietsenboer\nfietsenbranche\nfietsenhandel\nfietsenhandelaar\nfietsenpark\nfietsenverhuur\nfietserstunnel\nfietservaring\nfietsevenement\nfietsfabrikant\nfietsfanaat\nfietsflat\nfietsgids\nfietsgroep\nfietshandelaar\nfietshuur\nfietsinfrastructuur\nfietskledij\nfietsknooppuntensysteem\nfietslamp\nfietsles\nfietslift\nfietslus\nfietsmaat\nfietsmand\nfietsmerk\nfietsnet\nfietsonderdeel\nfietsoversteek\nfietspadennetwerk\nfietsproject\nfietspunt\nfietsrit\nfietsronde\nfietsseizoen\nfietssport\nfietsstad\nfietsstraat\nfietssuggestiestrook\nfietstijd\nfietstoerisme\nfietstraject\nfietstrip\nfietsvaardigheid\nfietsveer\nfietsveiligheid\nfietsvergoeding\nfietsverzekering\nfietsvierdaagse\nfietsvriendelijk\nfietswedstrijd\nfietsweg\nfietswerk\nfietswinkel\nfigurentheater\nfiguurglas\nfilelengte\nfilezwaarte\nfilmcollectie\nfilmfanaat\nfilmformaat\nfilmgame\nfilmgeweld\nfilmhistorie\nfilmhuisfilm\nfilmkanaal\nfilmkenner\nfilmkennis\nfilmlaag\nfilmladder\nfilmlandschap\nfilmliefde\nfilmmarathon\nfilmmontage\nfilmpjessite\nfilmquiz\nfilmreeks\nfilmscherm\nfilmsite\nfilmtheorie\nfilmtip\nfilmtrilogie\nfilmvak\nfilmvakblad\nfilmverslag\nfilosofieboek\nfilterelement\nfilterfunctie\nfiltergedeelte\nfilterhouder\nfilterhuis\nfilterkoek\nfiltermedium\nfilterpapier\nfinancieringsaanvraag\nfinancieringsbeleid\nfinancieringsmechanisme\nfinancieringsproblematiek\nfinancieringssystematiek\nfinishlocatie\nfinishstraat\nfinishtijd\nfinishvlag\nfitheidstest\nfitnessapparaat\nfitnesscenter\nfitnesstrainer\nfitnesszaak\nflatwijk\nflensjesbeslag\nflesrijping\nflexibiliteitsinstrument\nflitscamera\nflitskop\nflitsschoen\nflosdraad\nfluitles\nfolderactie\nfoliedruk\nfolkbal\nfolkband\nfondsensector\nfondsrendement\nfondsverdrag\nforellenvijver\nformatiecrisis\nformulebalk\nformulekaart\nformulierenbrigade\nfortgracht\nforumbezoeker\nforumdebat\nforumkeuze\nforumnaam\nforumonderdeel\nforumsite\nfosfaattoestand\nfosforgehalte\nfossielenarchief\nfotoacademie\nfotobehang\nfotobestand\nfotobond\nfotocursus\nfotodiode\nfotodoos\nfotokader\nfotokunst\nfotomap\nfotopresentatie\nfotoprint\nfotoprinter\nfotoprogramma\nfotoquiz\nfotorapportage\nfotoservice\nfotoshow\nfotospeurtocht\nfotostop\nfototas\nfotowand\nfoutbericht\nfoutenanalyse\nfoutenrapport\nfoutkans\nfoutloosheid\nfouttolerantie\nfractieondersteuning\nframbozenjam\nframbozensaus\nframeset\nframewerk\nfraterhuis\nfraudeland\nfraudesysteem\nfreesbank\nfrietboer\nfrietpan\nfrietzak\nfrisdrankautomaat\nfriszuur\nfrituurbak\nfrituurlucht\nfrontbreedte\nfrontplaat\nfrontstad\nfrontstreek\nfrontzijde\nfruitafdeling\nfruitbedrijf\nfruitbier\nfruitboomgaard\nfruitdag\nfruithandelaar\nfruitoogst\nfruitpost\nfruitsmaak\nfuifbeest\nfuifruimte\nfunctiebestand\nfunctieblok\nfunctiefamilie\nfunctiegebouw\nfunctieherstel\nfunctiehuis\nfunctiejaar\nfunctielijst\nfunctiemix\nfunctieschaal\nfunctietitel\nfunctievoorschrift\nfunctioneringstoelage\nfunderingsherstel\nfunderingsplaat\nfunderingsspecialist\nfunderingstechniek\nfusieonderneming\nfusiepartij\nfusietoets\nfusietraject\nfusievereniging\nfusieziekenhuis\ngaartijd\ngaaswerk\ngalacommissie\ngalajurk\ngamedesign\ngamedrive\ngamelanmuziek\ngamemaker\ngameserver\ngamesite\ngammacamera\ngangenmenu\nganzenbordspel\nganzenpopulatie\ngarageverkoop\ngarantiekaart\ngarantiekapitaal\ngarantieservice\ngarderegiment\ngarderoberuimte\ngarenloos\ngasafsluiter\ngasalarm\ngasblok\ngasboer\ngasconcentratie\ngasconflict\ngascrisis\ngasdetectie\ngasdichtheid\ngasdroger\ngasgeur\ngaskabel\ngasklephuis\ngaskookplaat\ngasontwikkeling\ngasophoping\ngasovenstand\ngasreus\ngasschuif\ngastbedrijf\ngastbijdrage\ngastboek\ngastentafel\ngastentoilet\ngastgever\ngasthuisfonds\ngastlogger\ngastrijder\ngastvader\ngastverblijf\ngastvriendelijk\ngastvriendelijkheid\ngastvrouwe\ngastzanger\ngastzus\ngaswasser\ngebakkraam\ngeboortebos\ngeboortecertificaat\ngeboortefeest\ngeboortekaart\ngeboortemoeder\ngeboortemoment\ngeboortepolitiek\ngeboorteverhaal\ngebouwbeheerder\ngebouweigenaar\ngebruikersbijdrage\ngebruikerskant\ngebruikersniveau\ngebruikersomgeving\ngebruikersondersteuning\ngebruikersonderzoek\ngebruikerspagina\ngebruikerspaneel\ngebruikerstest\ngebruikersvergunning\ngedachtebeeld\ngedachtekracht\ngedachtelijn\ngedachtepatroon\ngedachtepolitie\ngedachtevorm\ngedenkmonument\ngedenktegel\ngedoogverklaring\ngedragsaanpassing\ngedragsbiologie\ngedragsinterventie\ngedragskundige\ngedragsniveau\ngedragsproblematiek\ngedragsrepertoire\ngedragstest\ngedragstoezicht\ngedragswijze\ngedragswijziging\ngeefster\ngeestesgenoot\ngeestesgestoorde\ngeestesstoornis\ngeesteswetenschap\ngegevensanalyse\ngegevensbron\ngegevensdrager\ngegevenshuishouding\ngegevenskwaliteit\ngegevensset\ngegevensterugwinning\ngegevenstype\ngeheugeneffect\ngeheugenmodule\ngeheugenpoli\ngeheugenslot\ngeheugenstick\ngeheugentest\ngehoorzaamheidscursus\ngehoorzaamheidstraining\ngeldbesparing\ngeldbesteding\ngeldboom\ngeldgod\ngeldigheidsdatum\ngeldigheidsperiode\ngeldkapitaal\ngeldlener\ngeldlust\ngeldmacht\ngeldnemer\ngeldpot\ngeldsoort\ngeldtransportwagen\ngeldverschaffer\ngeldvraag\ngeldwereld\ngelegenheidskoor\ngelegenheidspoëzie\ngelegenheidsroker\ngelegenheidsteam\ngelegenheidstoespraak\ngelegenheidsuitgave\ngeleidegeest\ngeleidehondenschool\ngeleidewerk\ngelijkgerichtheid\ngelijkhebberigheid\ngelijkheidsgedachte\ngelijkstand\ngeloofstaal\ngeluiddruk\ngeluiddrukniveau\ngeluidemissie\ngeluidloosheid\ngeluidruimte\ngeluidsignaal\ngeluidwering\ngemberplant\ngemeenschapsbezit\ngemeenschapscommissie\ngemeenschapsgebouw\ngemeenschapsoctrooi\ngemeenschapsopbouw\ngemeenschapsregeling\ngemeenschapsruimte\ngemeenschapsschool\ngemeenschapswerk\ngemeentearbeider\ngemeentearts\ngemeentebericht\ngemeenteblad\ngemeentebode\ngemeentebudget\ngemeentegrot\ngemeenteland\ngemeenteoverheid\ngemeentepark\ngemeentepredikant\ngemeentereglement\ngemeentesite\ngemeentestichting\ngemeenteveldwachter\ngemeentevergadering\ngemeentevoorlichter\ngemeentewerk\ngemeentewinkel\ngeneesmiddelenautoriteit\ngeneesmiddelenbeoordeling\ngeneesmiddelenproducent\ngeneesmiddelenreclame\ngeneesmiddelgebruik\ngenenpaar\ngenenpakket\ngenenpoel\ngenezingsbediening\ngenezingsdienst\ngenezingspercentage\ngereedschapskoffer\ngeriefhout\ngeschenkboek\ngeschiedeniscanon\ngeschiedenisverhaal\ngeschilbeslechting\ngespannenheidstheorie\ngespsluiting\ngetalbegrip\ngetallenlijn\ngetallenstelsel\ngeurbelasting\ngeurbeleid\ngeuremissie\ngeurproef\ngeurruimte\ngeursorteerproef\ngeurvrij\ngevaarherkenning\ngevaarzetting\ngevangenisgebouw\ngevangenisleven\ngevangenismuseum\ngevangenisterrein\ngewasgroei\ngewasontwikkeling\ngewasschade\ngewasstadium\ngewasverdamping\ngeweergranaat\ngeweldbeheersing\ngeweldmonopolie\ngeweldspectrum\ngewestwaarborg\ngezondheidsbelang\ngezondheidsbeleving\ngezondheidscheck\ngezondheidsdossier\ngezondheidseconomie\ngezondheidsinstituut\ngezondheidskuur\ngezondheidsplan\ngezondheidspolitiek\ngezondheidspost\ngezondheidspreventie\ngezondheidsproblematiek\ngezondheidsproject\ngezondheidsreden\ngezondheidsstelsel\ngezondheidstrend\ngezondheidsvlak\ngezondheidszorgstelsel\ngidsbeurt\ngietmal\ngiftbrief\ngipsafdruk\ngipsbroek\ngipslaag\ngipsspalk\ngirorekeningnummer\ngistingsfles\ngitaarbegeleiding\ngitaarbouwer\ngitaarhals\ngitaarkoffer\ngitaarpartij\ngitaarsnaar\ngitaarsound\ngitaarversterker\nglansgraad\nglasatelier\nglasbol\nglasdeur\nglasdoek\nglasfolie\nglasmassa\nglasmozaïek\nglasmuseum\nglasoppervlakte\nglaspartij\nglaspasta\nglasproductie\nglaspui\nglasreiniger\nglasservice\nglastegel\nglastuinbouwsector\nglasvezelaansluiting\nglasvezeldoek\nglasvezelinfrastructuur\nglasvochtbloeding\nglasvochtloslating\nglasweefsel\ngletsjermeer\ngletsjerwater\nglobaliseringsbeweging\nglutenallergie\ngodenkaart\ngodenkind\ngodenrijk\ngodsbeleving\ngodsconcept\ngodsdienstfilosofie\ngodsdienstfilosoof\ngodsdienstkritiek\ngodsdienstpolitiek\ngodsidee\ngodskennis\ngodsleer\ngodsvermogen\ngodsvrees\ngoederenbehandeling\ngoederendistributie\ngoederenontvangst\ngoederenrecht\ngoedkeuringsbeschikking\ngoedkeuringsbesluit\ngoedkeuringsformulier\ngoedkeuringsmerk\ngoedkeuringsrecht\ngolfcentrum\ngolfdag\ngolffront\ngolffunctie\ngolfleraar\ngolfset\ngolfsnelheid\ngolfverschijnsel\ngondelbaan\ngoochelshow\ngordeldracht\ngordelgebruik\ngospelband\ngoudproducent\ngoudsector\ngouverneurswoning\ngraanopslag\ngraanrepubliek\ngrabbelmand\ngrachtenstelsel\ngrafcomplex\ngrafhekel\ngrafkist\ngrafkosten\ngrafplaats\ngrafritueel\ngrafruimte\ngrafstemming\ngraftak\ngranaatappelsap\ngranulatieweefsel\ngrapjurk\ngrasdijk\ngrashelling\ngrasklaver\ngrasrand\ngrasstrook\ngrastrimmer\ngrasweide\ngraszaadteelt\ngraveerwerk\ngravelweg\ngrensbepaling\ngrensdistrict\ngrensweg\ngrenswetenschap\ngriendcultuur\ngriepspuit\ngriesmeelpap\ngriessuiker\ngriezelbus\ngriezelfeest\ngrijsrot\ngrijswaarde\ngrillrestaurant\ngrindbed\ngroeiambitie\ngroeicyclus\ngroeihormoontekort\ngroeilicht\ngroeimedium\ngroeinorm\ngroeiremming\ngroeirichting\ngroeischeut\ngroeistadium\ngroeivermogen\ngroeivorm\ngroenaanleg\ngroenbak\ngroenbruin\ngroencontainer\ngroenfront\ngroenpool\ngroenscherm\ngroentemix\ngroentemolen\ngroentepap\ngroenverklaring\ngroetjespagina\ngrondafstand\ngrondbal\ngrondbedekking\ngrondbehandeling\ngrondbeheer\ngrondgeluid\ngrondidee\ngrondkamer\ngrondlichaam\ngrondmechanica\ngrondmengsel\ngrondmist\ngrondmotief\ngrondontsmetting\ngrondpositie\ngrondprijsbeleid\ngrondspeling\ngrondstemming\ngrondstoffensector\ngrondtemperatuur\ngrondtype\ngrondvraag\ngrondwal\ngrondwateroverlast\ngrondwaterrichtlijn\ngrondwaterverontreiniging\ngrondweefsel\ngrondwetsontwerp\ngrondzeiler\ngrootteklasse\ngrottentocht\ngunstmaatregel\nhaagplant\nhaaiensoort\nhaakaas\nhaakbocht\nhaaklijn\nhaakoog\nhaakpunt\nhaaranalyse\nhaarcoupe\nhaardhout\nhaarkapper\nhaarkleed\nhaarkleuring\nhaarmasker\nhaarschacht\nhaarspoeling\nhaarstructuur\nhaarstuk\nhaarwerk\nhaatbaard\nhagelgeweer\nhalsgebied\nhalsring\nhalswervelkolom\nhamburgergigant\nhamsterkooi\nhandafdruk\nhandbagagecontrole\nhandeczeem\nhandelingsdeel\nhandelingsperspectief\nhandelingsprincipe\nhandelingsruimte\nhandelsaanvang\nhandelscircuit\nhandelsdrukwerk\nhandelsfunctie\nhandelsnaamrecht\nhandelspand\nhandelsperiode\nhandelsruimte\nhandelssite\nhandelsstadium\nhandelsstelsel\nhandelsuur\nhandengeklap\nhandfunctie\nhandhavingsactie\nhandhavingsbevoegdheid\nhandhavingscapaciteit\nhandhavingsniveau\nhandhavingsorganisatie\nhandhavingsplan\nhandhavingsstrategie\nhandhavingssysteem\nhandhavingstaak\nhandhavingsteam\nhandhavingstraject\nhandhavingsverzoek\nhandhygiëne\nhandleeskunde\nhandmassage\nhandscanner\nhandschriftonderwijs\nhandstuk\nhandtasdiefstal\nhandterminal\nhandtherapeut\nhandvoorkeur\nhandwerkblad\nhandwerkles\nhandzender\nhangcloset\nhanggroep\nhangstoel\nhangtoilet\nharddiskrecorder\nhardloopevenement\nhardloopforum\nhardloopkleding\nhardloopsport\nhardlooptraining\nhardschuim\nhardwareconfiguratie\nhardwarefabrikant\nhardwarematig\nharingparty\nharingworm\nharnasgordel\nhartactie\nhartactiviteit\nhartcyclus\nhartecho\nhartenproject\nharthelft\nhartminuutvolume\nhartmonitor\nhartpijn\nhartschild\nhartslagfrequentie\nhartslagmeting\nhartspierweefsel\nhartwand\nhartweefsel\nhavenarbeid\nhavenbeheerder\nhavendirecteur\nhavengemeenschap\nhavenindustrie\nhavenkade\nhavenkanaal\nhavenmonding\nhavenontwikkeling\nhavenrace\nhavenregio\nhavenrichtlijn\nhavenschandaal\nhavenspoor\nhavenstaat\nhaventoegang\nhavenwater\nhavenwerk\nhazelnootpasta\nheemkundevereniging\nheerspolitiek\nheffingsambtenaar\nheffingsbevoegdheid\nheffingsrecht\nheidag\nheideterrein\nheidevegetatie\nheidevlakte\nhelikopterhaven\nhelikopterview\nhellingspercentage\nhelmtherapie\nhemelkoepel\nhemelobject\nhemelwaterput\nhengeldruk\nhengelsportwinkelier\nhengstenshow\nherdenkingsceremonie\nherdenkingsmis\nherdenkingsmunt\nherdenkingsplaats\nherdenkingsplek\nherdenkingsprogramma\nherenclub\nherenkamer\nherenkoor\nherensociëteit\nherfstcollectie\nherfstdepressie\nherfstperiode\nherfstsfeer\nherfsttafel\nherfstteelt\nherfsttooi\nherfsttype\nherfstwandeling\nherfstwind\nherhaalbezoek\nherhaalrecept\nherhalingsbezoek\nherhalingsles\nherhalingsrisico\nherhalingstijd\nherkomstaanduiding\nherkomstgebied\nherpesinfectie\nhersengedeelte\nherseninfectie\nhersenslagader\nhersenstof\nhersenvloeistof\nherstelbeweging\nherstelfunctie\nherstelgedrag\nherstelgericht\nherstelplaats\nhersteltermijn\nherstructureringsbeleid\nherstructureringsproject\nherstructureringswijk\nhertenbiefstuk\nhertenjong\nhervormingsverdrag\nherwaarderingsreserve\nherzieningsclausule\nherzieningsonderzoek\nherzieningsregeling\nheupafwijking\nheupband\nheupfractuur\nheupslijtage\nheuptas\nheuvelrij\nheuveltraining\nheuvelzone\nhielkap\nhijsband\nhijswerk\nhindermacht\nhiphopformatie\nhiphopmuziek\nhittebehandeling\nhitteberoerte\nhitteslag\nhobbybeurs\nhobbyfotograaf\nhobbykok\nhobbymarkt\nhobbymes\nhobbyproject\nhockeywereld\nhoedrand\nhoefbeen\nhoefkatrolontsteking\nhoefmechanisme\nhoefverzorging\nhoekappartement\nhoekbad\nhoekenwerk\nhoekkeuken\nhoeklocatie\nhoekopstelling\nhoekscheidsrechter\nhoekstuk\nhoekverdraaiing\nhoevewinkel\nholdingvennootschap\nholocaustontkenning\nhondenbed\nhondenbrigade\nhondenfokkerij\nhondengedrag\nhondenhandel\nhondenhater\nhondenhemel\nhondenoverlast\nhondenpik\nhondenstront\nhondentaal\nhondentrainer\nhondentraining\nhondenuitlaatservice\nhongerdieet\nhongerdoek\nhongerklop\nhongertocht\nhoningkamer\nhoningraatstructuur\nhoningsaus\nhoningwijn\nhoningzwam\nhonkbalbond\nhonkbalwedstrijd\nhonkvrouw\nhoofdactrice\nhoofdagente\nhoofdarchitect\nhoofdarts\nhoofdauteur\nhoofdbalk\nhoofdbasis\nhoofdbescherming\nhoofdbestemming\nhoofdbetekenis\nhoofdbeuk\nhoofdbloei\nhoofdboodschap\nhoofdburcht\nhoofdcast\nhoofdcomponent\nhoofdcriterium\nhoofdcultuur\nhoofddeel\nhoofddoekjesverbod\nhoofddraagconstructie\nhoofddracht\nhoofdeffect\nhoofdfactor\nhoofdframe\nhoofdgang\nhoofdgebied\nhoofdgebruiker\nhoofdgedeelte\nhoofdgeheugen\nhoofdgeneesheer\nhoofdgerechtigde\nhoofdgevel\nhoofdgewas\nhoofdgod\nhoofdgraadmeter\nhoofdhandeling\nhoofdhouding\nhoofdinfrastructuur\nhoofdinstrument\nhoofdkamp\nhoofdkap\nhoofdklacht\nhoofdlading\nhoofdlettergebruik\nhoofdlettergevoelig\nhoofdlijnenakkoord\nhoofdmachine\nhoofdmandoer\nhoofdmap\nhoofdmassage\nhoofdmelodie\nhoofdmonitor\nhoofdnerf\nhoofdnoot\nhoofdobject\nhoofdomtrek\nhoofdonderdeel\nhoofdopzet\nhoofdovereenkomst\nhoofdpiet\nhoofdpijndossier\nhoofdportaal\nhoofdprioriteit\nhoofdprocedure\nhoofdrailnet\nhoofdrapport\nhoofdreeks\nhoofdremcilinder\nhoofdresultaat\nhoofdronde\nhoofdrubriek\nhoofdschap\nhoofdschot\nhoofdslaapkamer\nhoofdslagader\nhoofdsleutel\nhoofdsponsorschap\nhoofdsproeier\nhoofdstam\nhoofdstelling\nhoofdster\nhoofdsysteem\nhoofdtaal\nhoofdtempel\nhoofdtoegang\nhoofdtop\nhoofdvaart\nhoofdvenster\nhoofdverdieping\nhoofdverdragsgerechtigde\nhoofdverhuurder\nhoofdverwarming\nhoofdvijand\nhoofdvoeding\nhoofdvolume\nhoofdwerkwoord\nhoofdwoord\nhoofdwortel\nhoofdzaal\nhoogbouwvisie\nhooggehakt\nhoogovengas\nhoogschout\nhoogslaper\nhoogspanningsstation\nhoogteburcht\nhoogtechnologie\nhoogteparcours\nhoogteprofiel\nhoogteverstelling\nhoogwatergeul\nhoogwatervluchtplaats\nhooibaal\nhooikoortsseizoen\nhoorbril\nhoorhandicap\nhoornpit\nhoornstof\nhoornwand\nhoornzuil\nhoorrecht\nhoortest\nhoorvermogen\nhormonenhuishouding\nhormoonbalans\nhormoonklier\nhormoonkuur\nhormoonstelsel\nhormoonwerking\nhormoonzalf\nhorrengaas\nhoudbaarheidsduur\nhousefeest\nhoutgebruik\nhouthok\nhoutkant\nhoutkleur\nhoutloods\nhoutoogst\nhoutopslag\nhoutoven\nhoutrijping\nhoutskelet\nhoutskoolvuur\nhouttoets\nhoutwinning\nhoutzager\nhoutzwam\nhuicheltaal\nhuidallergie\nhuidanalyse\nhuidbeschadiging\nhuidconditie\nhuidgebied\nhuidinfectie\nhuidkwaliteit\nhuidolie\nhuidontsteking\nhuidoppervlakte\nhuidtherapeut\nhuidtint\nhuidverbetering\nhuidverjonging\nhuidvraat\nhuidvriendelijk\nhuidzorg\nhuilverhaal\nhuisarbeider\nhuisartsopleiding\nhuisbier\nhuisbrouwerij\nhuisdichter\nhuisdichteres\nhuiself\nhuisfeest\nhuisfilosoof\nhuisgevel\nhuishouder\nhuishoudknip\nhuishoudpot\nhuisinrichting\nhuisinstallatie\nhuiskamerconcert\nhuiskamertafel\nhuiskamervraag\nhuiskavel\nhuiskerk\nhuiskleur\nhuisnaam\nhuisneger\nhuisonderwijs\nhuisoudste\nhuispak\nhuisplaats\nhuisrif\nhuisspitsmuis\nhuistaak\nhuisverkoop\nhuisverwarming\nhuiswerkinstituut\nhuiszwam\nhulpbehoefte\nhulpcentrum\nhulpgroep\nhulpindustrie\nhulplijst\nhulploon\nhulpmateriaal\nhulpouder\nhulppersoon\nhulpprediker\nhulptoets\nhulpverleningsaanbod\nhulpverleningstraject\nhulpvorm\nhumorloosheid\nhumusgehalte\nhurkhouding\nhuttendorp\nhuttentocht\nhuttenwaard\nhuurappartement\nhuurbelasting\nhuurbesluit\nhuurbetaling\nhuurdersbond\nhuurliberalisering\nhuurniveau\nhuurplan\nhuurprijsbescherming\nhuurprijsgrens\nhuursegment\nhuurstelsel\nhuurtarief\nhuurvergoeding\nhuurwetgeving\nhuurwoningmarkt\nhypotheekaanvraag\nhypotheekinstelling\nhypotheeksom\nhypothekenmarkt\nideevorming\nidentiteitsbesef\nidentiteitsloos\nidentiteitsonderzoek\nidentiteitsontwikkeling\nidentiteitsstoornis\nijsazijn\nijsbaanterrein\nijsbad\nijsbank\nijsbedekking\nijsbijl\nijsblauw\nijscrème\nijsdag\nijsdam\nijsgroei\nijsgrot\nijsgruis\nijshotel\nijskou\nijskraam\nijslepel\nijsmaan\nijsmengsel\nijsmuur\nijsperiode\nijsplaat\nijsrand\nijsregen\nijssituatie\nijsvissen\nijswinkel\nijswoestijn\nillustratiewerk\nimmigratieproblematiek\nimmigratierecht\nimpactanalyse\nimpactzone\nimplementatiestrategie\nimplementatietermijn\nimportbruid\nimpulsresponsie\ninbouwdoos\ninbouwhaard\ninbouwhoogte\ninbouwkeuken\ninbouwruimte\ninbouwverlichting\ninbrekersmateriaal\ninbrengverplichting\ninburgeringstest\ninburgeringstoets\nincassomachtiging\nincassoprocedure\nincassotarief\nincassotraject\nincestmonster\nincidentbestrijding\nincidentmanagement\nindemniteitsbeginsel\nindexkorf\nindianentent\nindicatieadvies\nindicatiesteller\ninductiekookplaat\nindustriecommissie\nindustriefunctie\ninfanteriegevechtsvoertuig\ninfectierisico\ninfectieziektebestrijding\ninfiltratiegebied\ninfiltratievoorziening\ninformaticadienst\ninformaticamateriaal\ninformaticaonderwijs\ninformatieaanvraag\ninformatieanalist\ninformatiearchitectuur\ninformatiebalk\ninformatiedeling\ninformatiedocument\ninformatiedoorstroming\ninformatiedossier\ninformatiefase\ninformatieformulier\ninformatiekaart\ninformatieketen\ninformatiekundige\ninformatieloket\ninformatiemanager\ninformatiemodel\ninformatieopslag\ninformatieplatform\ninformatieprobleem\ninformatieprofessional\ninformatieruimte\ninformatiescherm\ninformatieservice\ninformatiesite\ninformatiespecialist\ninformatiestop\ninformatiestructuur\ninformatieveld\ninformatieverlies\ninformatieverplichting\ninformatieverstrekker\ninformatieverwerving\ninformatievraag\ninformatiewetenschap\ninfrastructuurregister\ninfuusnaald\ningenieursbedrijf\ninhaalgroei\ninitiatiefnota\ninjectieflacon\ninjectiepomp\ninjectiesysteem\ninkomdeur\ninkomensgelijkheid\ninkomensgrondslag\ninkomensheffing\ninkomensopgave\ninkomensverzekering\ninkomstengroei\ninkomstenzijde\ninkoopactie\ninkoopmodule\ninkoopstrategie\ninkoopvolume\ninkoopvoordeel\ninktvlekstrategie\ninlaatkanaal\ninlaatlucht\ninlaatslag\ninlaatsysteem\ninlaattraject\ninlevingsgevoel\ninlogpagina\ninlogprocedure\ninloopdouche\ninloopmiddag\ninlooprisico\ninnovatieagenda\ninnovatiebudget\ninnovatiedrang\ninnovatiefonds\ninnovatieklimaat\ninnovatiemanagement\ninnovatiemodel\ninnovatienetwerk\ninnovatieplatform\ninnovatiepotentieel\ninnovatiestrategie\ninnovatiesysteem\ninnovatietraject\ninpakafdeling\ninpakwerk\ninschrijfbewijs\ninschrijfnummer\ninschrijfperiode\ninschrijfprocedure\ninschrijftafel\ninschrijftarief\ninschrijftijd\ninschrijvingsbedrag\ninschrijvingsdatum\ninschrijvingsgarantie\ninschrijvingsregister\ninschrijvingsstop\ninsectengaas\ninsectenplaag\ninsectensoort\ninslagpunt\ninspanningsniveau\ninspanningsonderzoek\ninspectiemandaat\ninspectieput\ninspectieregime\ninspectietocht\ninspraakmogelijkheid\ninspraaktraject\ninspraakverordening\ninspuitdruk\ninstallatiehandleiding\ninstallatiekunst\ninstallatiepakket\ninstallatiesector\ninstallatietijd\ninstallatievergadering\ninstandhoudingsfunctie\ninstaptarief\ninsteekkaart\ninstelhoek\ninstelknop\ninstellingsbeleid\ninstellingsbesluit\ninstellingsterrein\ninstelprijs\ninstemmingsbevoegdheid\ninstroomgroep\ninstroomniveau\ninstructielokaal\ninstructiemateriaal\ninstructiemodel\ninstructietaal\ninstructievideo\ninstrumentbeheersing\ninstrumentenbouw\nintegratiecentrum\nintegratiecursus\nintegratiedienst\nintegratiekwestie\nintegratienota\nintegratieprobleem\nintegratietraject\nintegriteitscode\nintentieboek\nintentiebrief\ninterieurbeplanting\ninterieurinrichting\ninterieurontwerp\ninterieurontwerper\ninterieurwinkel\ninterimbureau\ninterimcontract\ninterimovereenkomst\ninternetapotheek\ninternetapplicatie\ninternetbehandeling\ninternetcampagne\ninternetcentrum\ninternetcriminaliteit\ninternetdate\ninternetdienstverlening\ninternetdiscussie\ninterneteditie\ninternetenquête\ninternetervaring\ninternetfilter\ninternetgebeuren\ninternetgigant\ninternethoek\ninternethulpverlening\ninternetknooppunt\ninternetlink\ninternetloos\ninternetmarketing\ninternetomgeving\ninternetonderzoek\ninternetpanel\ninternetpeiling\ninternetpenetratie\ninternetpoll\ninternetpopulatie\ninternetporno\ninternetprogramma\ninternetpubliek\ninternetradiostation\ninternetseks\ninternetserver\ninternetsnelheid\ninternetspaarbank\ninternetspaarrekening\ninternettelevisie\ninternettijd\ninternettijdschrift\ninternetveiligheid\ninternetworm\ninterpretatieruimte\ninterpretatievermogen\ninterventiedienst\ninterventieleger\ninterventieplan\ninterventieploeg\ninterventieprogramma\ninterventiewaarde\ninterventiewagen\ninterviewbundel\ninterviewkandidaat\ninterviewronde\ninterviewschema\ninterviewstijl\nintervisiegroep\nintroductiebijeenkomst\nintroductieduik\nintroductiefase\nintroductiefilm\nintroductiekamp\nintroductieles\nintroductiepagina\ninventarisatiefase\ninventarisatieronde\ninventarisnummer\ninvesteringsagenda\ninvesteringskrediet\ninvesteringsreserve\ninvesteringsrisico\ninvesteringsronde\ninvesteringsruimte\ninvesteringstoelage\ninvesteringsvoorstel\ninvoegpositie\ninvoegtoepassing\ninvoercapaciteit\ninvoercertificaat\ninvoerfout\ninvoeringsplan\ninvoeringstraject\ninvoeringswet\ninvoerkosten\ninvoerland\ninvoerprijs\ninvoerprogramma\ninvoerwaarde\ninvorderingsrente\ninvulbaar\ninvulvak\ninwerkprogramma\ninwijdingsceremonie\ninwijdingsschool\ninwijdingsweg\ninzagetermijn\ninzameldag\ninzetduur\ninzetgebied\ninzetplan\ninzetronde\ninzettijd\nislambeleving\nislamcriticus\nislamcultuur\nislamdeskundige\nislamdiscussie\nislamgeleerde\nislamgeloof\nislamgemeenschap\nislamhaat\nislamhater\nislamideologie\nislamleraar\nislamonderwijs\nislamprobleem\nislamstaat\nislamterreur\nislamterrorisme\nisolatieafstand\nisolatieglas\nisotopenonderzoek\njaaragenda\njaarbalans\njaarbijdrage\njaarcyclus\njaargroep\njaarlijst\njaarnota\njaarpacht\njaarschijf\njaartaak\njaartarief\njaarwerkplan\njaarwiel\njachtrechthouder\njachttraining\njachtverlof\njachtvogel\njachtwild\njareneis\njeeptour\njeugdagent\njeugdavond\njeugdbibliotheek\njeugdbijstand\njeugdbond\njeugddans\njeugddelinquent\njeugdgerichtheid\njeugdheld\njeugdhulpvoorziening\njeugdjury\njeugdkerk\njeugdkleed\njeugdlokaal\njeugdloop\njeugdmonitor\njeugdouderling\njeugdparket\njeugdparlement\njeugdparlementariër\njeugdperiode\njeugdprinses\njeugdproduct\njeugdschrijver\njeugdsector\njeugdtijd\njeugdtoerisme\njeugdtoneel\njeugdverpleegkundige\njeugdvoorstelling\njeugdvoorzitter\njeugdwerkbeleid\njeugdwerkbeleidsplan\njeugdwerkeloosheid\njodiumgehalte\njodiumtekort\njongensbesnijdenis\njongensgroep\njongenshuis\njongensinternaat\njongenskleding\njongensmeisje\njubileumdag\njubileumprogramma\njubileumshow\njuffendag\njungletocht\njungletraining\njurykamer\njurytafel\njuryteam\njustitieambtenaar\njustitiehuis\njuweliershuis\nkaakbot\nkaakoperatie\nkaarsenhouder\nkaartavond\nkaartblad\nkaartcatalogus\nkaartjescontrole\nkaartwissel\nkaasmengsel\nkaasstad\nkaastafel\nkaatssport\nkaatsveld\nkabinetsbrief\nkabinetsdoelstelling\nkabinetsvisie\nkabouterbos\nkaboutermuts\nkabouterpad\nkachelplaats\nkadasterkaart\nkalenderdagmethode\nkalenderhervorming\nkalendertelling\nkaliumnitraat\nkalkbodem\nkalkgehalte\nkalkgesteente\nkalkgrasland\nkalkoenenbedrijf\nkalkverf\nkalkvrij\nkalverhouder\nkamelenmarkt\nkamelenmelk\nkamelentocht\nkamelenvlees\nkampcommissie\nkampioenenploeg\nkampioenenviering\nkampkrant\nkampliteratuur\nkampthema\nkamptijd\nkampverleden\nkampvuurkuil\nkampweek\nkampwissel\nkanaalarm\nkanaaleiland\nkanaalnummer\nkanaaloever\nkandidaatstellingscommissie\nkandidatenvergelijking\nkaneelsuiker\nkankerhoer\nkankerjood\nkankerpreventie\nkankerregistratie\nkankersoort\nkankervrij\nkankerweefsel\nkanopolo\nkanoroute\nkanselbijbel\nkansenbeleid\nkansengelijkheid\nkanskaart\nkansloosheid\nkansspelcommissie\nkansteam\nkantelmechanisme\nkantinecommissie\nkantinedienst\nkantinepersoneel\nkantongebouw\nkantsoort\nkantwerkhuis\nkapitaalbuffer\nkapitaalgarantie\nkapitaalgoed\nkapitaalintensiteit\nkapitalisatiesysteem\nkapiteinsband\nkappersbedrijf\nkappersbezoek\nkarakteracteur\nkarakterkop\nkarakteromschrijving\nkarakterverandering\nkarmozijnbes\nkarperhengel\nkarperwereld\nkartelbijeenkomst\nkartelbreuk\nkartelrecht\nkasbasis\nkasgeldlimiet\nkasstroomoverzicht\nkasteelhotel\nkasteelt\nkasteelvijver\nkasteelvrouw\nkastemperatuur\nkatoenproductie\nkatoensector\nkatoenzaad\nkauwvermogen\nkauwvlak\nkeelhuid\nkeeloperatie\nkeelzak\nkeerring\nkeerwand\nkeerwater\nkegelvorm\nkeienstrand\nkennelhoest\nkennelnaam\nkennisbeleid\nkenniscirculatie\nkenniscreatie\nkennisdrager\nkennisgebrek\nkennisgroep\nkennisideaal\nkennisketen\nkennismakelaar\nkennismakingscursus\nkennismakingsdag\nkennismakingsles\nkennismakingsreis\nkennismakingsspel\nkennismarkt\nkennismigrant\nkennismigrantenregeling\nkennisopbouw\nkennisorganisatie\nkennisplatform\nkennispositie\nkennispotentieel\nkennisproductie\nkennisquiz\nkennisregio\nkennisruimte\nkennissector\nkennisstad\nkennistest\nkennistoets\nkennistransfer\nkennisveld\nkennisverrijking\nkennisvraag\nkenniswerk\nkerkarchief\nkerkbeeld\nkerkbijdrage\nkerkenbouw\nkerkenpad\nkerkenraadslid\nkerkenraadsvergadering\nkerkinrichting\nkerkmeubilair\nkerkmis\nkerkmodel\nkerkorganisatie\nkerkplanting\nkerkradio\nkerkrentmeester\nkerkstrijd\nkerktuin\nkerkverlating\nkermisbeleid\nkermisdag\nkermiskrant\nkermisleven\nkermismaandag\nkermismeester\nkermisseizoen\nkermisstad\nkermisteam\nkermiswereld\nkermiswethouder\nkermiszondag\nkernconflict\nkerndruk\nkernenergielobby\nkernfusiereactor\nkernkapitaal\nkernkwaliteit\nkernopdracht\nkernopgave\nkernpagina\nkernpark\nkernpersoonlijkheid\nkernprioriteit\nkerntakendebat\nkernvermogen\nkernwapenstaat\nkernzone\nkersensap\nkersensmaak\nkersenteelt\nkersenvlaai\nkerstactie\nkerstaflevering\nkerstboomverbranding\nkerstcross\nkerstdorp\nkerstengel\nkerstgala\nkerstgroen\nkerstgroep\nkerstgroet\nkerstkoor\nkerstlunch\nkerstmaaltijd\nkerstontbijt\nkerstplaat\nkerstseizoen\nkerstshoppen\nkerstsingle\nketenlengte\nketenmobiliteit\nketenregie\nketenregisseur\nketenverantwoordelijkheid\nkeurmerkhouder\nkeurverslag\nkeuzebepaling\nkeuzedaad\nkeuzegedrag\nkeuzehulp\nkeuzeknop\nkeuzemoment\nkeuzeprogramma\nkeuzerecht\nkeuzestress\nkeuzetheorie\nkeuzevermogen\nkickstart\nkickstarter\nkiellinie\nkiemzaad\nkiesgebied\nkieskast\nkieskompas\nkiesprogramma\nkieswetgeving\nkieswijzer\nkieuwboog\nkieuwgreep\nkiezersblok\nkiezerspas\nkijkavond\nkijkbeurt\nkijkcijferhit\nkijkfile\nkijkhut\nkijkmoment\nkijkpubliek\nkijkstuk\nkijktechniek\nkijkvoer\nkikvorsperspectief\nkinderaantal\nkinderarmoede\nkinderatelier\nkindercircus\nkinderdagcentrum\nkinderfonds\nkindergedeelte\nkindergemeenteraad\nkindergroep\nkinderhotel\nkinderhuid\nkinderkamp\nkinderkankerfonds\nkinderkermis\nkinderkledij\nkinderkledingwinkel\nkinderkribbe\nkinderlast\nkinderlectuur\nkindermerkkleding\nkinderontvoering\nkinderopvangkosten\nkinderopvangorganisatie\nkinderopvangregeling\nkinderopvangsector\nkinderpark\nkinderparlement\nkinderparticipatie\nkinderpornojager\nkinderpornomateriaal\nkinderpoëzie\nkinderraad\nkinderrechtencommissaris\nkinderrechtenorganisatie\nkinderrechtenverdrag\nkinderrommelmarkt\nkinderschedel\nkinderseks\nkindersite\nkinderspeelhoek\nkinderspeelparadijs\nkindertent\nkindervakantieweek\nkinderverjaardag\nkindervermaak\nkinderversie\nkinderwerking\nkinderwinkel\nkinderzang\nkinderzwembad\nkindgebonden\nkindschap\nkindveiligheid\nkippenfarm\nkippenfilet\nkippenschuur\nkippenslachterij\nkippenstal\nkitspuit\nklachtenbeeld\nklachtendienst\nklachtenmanagement\nklachtenregistratie\nklachtenreglement\nklachtonderdeel\nklachtopvang\nklachtprocedure\nklankband\nklankbeker\nklankgedicht\nklankkunst\nklankman\nklankpalet\nklankschaal\nklankschoonheid\nklankspel\nklanksysteem\nklankvorm\nklankvorming\nklantbehoud\nklantbeleving\nklantbenadering\nklantdossier\nklantenbeheer\nklantenbezoek\nklantenlijst\nklantennummer\nklantenondersteuning\nklantenpanel\nklantgedrag\nklantgroep\nklantmanagement\nklantonderzoek\nklantorder\nklantorganisatie\nklantprofiel\nklantspecificatie\nklantwaarde\nklantwaardering\nklantwens\nklantzijde\nklapdak\nklapdoos\nklaphoes\nklapschroef\nklasgebeuren\nklasgesprek\nklasniveau\nklaspraktijk\nklassenassistent\nklassendocent\nklassengesprek\nklassenkarakter\nklassenmanagement\nklassenoorlog\nklassenouder\nklassenoudste\nklassenreglement\nklassensamenwerking\nklassensituatie\nklassensolidariteit\nklassenstructuur\nklasserestaurant\nklasverband\nklaverjasclub\nklaviermuziek\nkledingconcern\nkledingcontainer\nkledingdracht\nkledingmaat\nkledingmarkt\nkledingrek\nkledingsmaak\nkledingsponsor\nkleedgedrag\nkleedgelegenheid\nkleedjesmarkt\nkleeflaag\nkleermakersvak\nkleibodem\nkleimodel\nkleinschaligheidsinvesteringsaftrek\nkleisteen\nklemkracht\nklepopening\nklepspeling\nklepzitting\nkleuranalyse\nkleurbeeld\nkleurbereik\nkleureffect\nkleurencode\nkleurengebruik\nkleurenlaserprinter\nkleurenpatroon\nkleurentherapie\nkleurenwiel\nkleurfout\nkleurinformatie\nkleurkracht\nkleurlaag\nkleurnummer\nkleuromslag\nkleuronderzoek\nkleurrijkheid\nkleurruimte\nkleurstaal\nkleursysteem\nkleurverdeling\nkleurverlies\nkleurverloop\nkleurverzadiging\nkleurvoorkeur\nkleurwaarneming\nkleuterafdeling\nkleuterbouw\nkleuterniveau\nkleutertoets\nklikgedrag\nklikgeluid\nklimaatbescherming\nklimaatbeweging\nklimaatcompensatie\nklimaatcomputer\nklimaatdoelstelling\nklimaateffect\nklimaatfilm\nklimaatgebied\nklimaatgevoeligheid\nklimaathype\nklimaathysterie\nklimaatinstallatie\nklimaatomslag\nklimaatpakket\nklimaatpanel\nklimaatramp\nklimaatrapport\nklimaatreligie\nklimaatscenario\nklimaatscepticus\nklimaatvraagstuk\nklimaatwet\nklimaatwetenschap\nklimaatwetenschapper\nklimaatwijziging\nklimdag\nklimervaring\nklimgebied\nklimpark\nklimuitrusting\nklokkengelui\nklokkenwinkel\nklokprogramma\nklokthermostaat\nkloosterbezit\nkloosterhof\nkloosterpand\nkloosterterrein\nklootviool\nkluiscode\nkluissleutel\nkluizenaarswoning\nklusbedrijf\nklusdag\nklusman\nklussenbedrijf\nklusteam\nkluswerk\nklutsbal\nknalblauw\nknalgroen\nknalpijp\nkneedhaak\nkniepijn\nknieschot\nknieslot\nkniestoot\nkniezwengel\nknijpkracht\nknoflookadem\nknoflookbrood\nknoflookpoeder\nknolgroei\nknollenveld\nknolopbrengst\nknolvoet\nknooppuntennetwerk\nknooppuntensysteem\nknuffelbaar\nknuffelbeleid\nknuffelgehalte\nknuffelhoek\nknuffelhond\nknuffelkonijn\nknuffelkont\nknuppelpad\nknutselactiviteit\nknutselclub\nknutselhoek\nknutselmateriaal\nknutselmiddag\nkoeherder\nkoeienmaag\nkoeienras\nkoekjesdeeg\nkoelgedeelte\nkoelkastdeur\nkoelkop\nkoellast\nkoeltoog\nkoelventilator\nkoelvermogen\nkoelvin\nkoelwals\nkoemelkeiwit\nkoersbal\nkoerstrend\nkoetjesreep\nkoetsentocht\nkoffervolume\nkoffiebezoek\nkoffieceremonie\nkoffiecorner\nkoffiedame\nkoffiekop\nkoffieliefhebber\nkoffieochtend\nkoffiepad\nkoffiepost\nkoffiesmaak\nkoffievisite\nkoffiewinkel\nkoffiezaak\nkogelbrief\nkogeldruk\nkogelgeweer\nkogelinslag\nkokerbalk\nkokerprofiel\nkokervisie\nkokosrasp\nkokskleding\nkoksroom\nkoksvak\nkolenfornuis\nkolenoverslag\nkolfapparaat\nkomedieserie\nkomkommerkruid\nkonijnenpopulatie\nkoningskamer\nkoningsspil\nkoningsvogel\nkoningszilver\nkookactiviteit\nkookadvies\nkookclub\nkookervaring\nkookgebied\nkookhoek\nkookliefhebber\nkookplezier\nkookroom\nkookschrift\nkooksessie\nkookstijl\nkookstudio\nkooktip\nkookwedstrijd\nkookzak\nkoolsalade\nkoolstofcyclus\nkoolstofdatering\nkoolstofkringloop\nkoolstofstaal\nkoolstofuitstoot\nkoolzaadkoek\nkoolzuurgehalte\nkoopbeslissing\nkoopjeshoek\nkoopverslaving\nkoorbestuur\nkoorgedeelte\nkoororgel\nkoorreis\nkoorrepetitie\nkoortsblaas\nkopersprofiel\nkopersvereniging\nkopieerheffing\nkoppelingscapaciteit\nkoppelingskabel\nkoppenmaker\nkoraalmelodie\nkorenfestival\nkorenwijn\nkorfboog\nkorrelopbrengst\nkorrelstructuur\nkorrelvorm\nkorstvorming\nkortetermijnbelang\nkortingsbedrag\nkortingscode\nkortingstegoed\nkostenbesparingsplan\nkostencalculatie\nkostencomponent\nkostendruk\nkostenindicatie\nkostenoverzicht\nkostenschatting\nkostenvergelijking\nkostenverhaal\nkostprijssysteem\nkottersector\nkotterstag\nkoudegetal\nkoudeopslag\nkozijnmodule\nkraakgroep\nkraakscene\nkraakspreekuur\nkraambureau\nkraamcadeau\nkraamfeest\nkraamhotel\nkraammand\nkraamweek\nkraanlijn\nkraanman\nkraanwerk\nkrabsalade\nkrachtdier\nkrachtloos\nkrachtwijk\nkrakerstuig\nkralenplank\nkralenwinkel\nkrantenabonnement\nkrantenbak\nkrantenoverzicht\nkrantensector\nkraskaart\nkrasvastheid\nkraterwand\nkredietcyclus\nkredietgeschiedenis\nkredietgroei\nkredietkosten\nkredietscore\nkredietsysteem\nkredietvolume\nkreeftenvlees\nkrijtpoeder\nkrijtstreeppak\nkringavond\nkringloopcomplex\nkroegeigenaar\nkroegpraat\nkroegtijger\nkroonlantaarn\nkroonplaat\nkroonstuk\nkruidlaag\nkruidnagelpoeder\nkruidtuin\nkruimelpad\nkruimelzuiger\nkruinhoogte\nkruipkelder\nkruisingsvlak\nkruispuntbank\nkruisribgewelf\nkruithuis\nkruitlading\nkruitmolen\nkruitschip\nkrullenbos\nkuifarend\nkuiprand\nkunstartiest\nkunstatelier\nkunstbedrijf\nkunstbeleving\nkunstcafé\nkunstendecreet\nkunstevenement\nkunstexpositie\nkunstgebeuren\nkunstgebied\nkunstgewricht\nkunsthuid\nkunsthuis\nkunstknie\nkunstlied\nkunstlul\nkunstmelk\nkunstmestgift\nkunstmeststrooier\nkunstnagel\nkunstopdracht\nkunstpik\nkunstpraktijk\nkunstreis\nkunstscene\nkunststofbaan\nkunststoffolie\nkunststoflaag\nkunsttoepassing\nkunstverlichting\nkunstwedstrijd\nkwaliteitsafdeling\nkurksmaak\nkurkvloer\nkustbeheer\nkustbescherming\nkusterosie\nkusthaven\nkustland\nkustmarathon\nkustregio\nkustveiligheid\nkuurcentrum\nkwakkelzomer\nkwalificatiegroep\nkwalificatieniveau\nkwalificatieplicht\nkwalificatieprofiel\nkwalificatietijd\nkwaliteitsagenda\nkwaliteitsbeleving\nkwaliteitsblad\nkwaliteitscoördinator\nkwaliteitscultuur\nkwaliteitsgericht\nkwaliteitshandvest\nkwaliteitsinformatie\nkwaliteitskader\nkwaliteitsklasse\nkwaliteitskleding\nkwaliteitsmodel\nkwaliteitsondersteuning\nkwaliteitsonderwijs\nkwaliteitsplanning\nkwaliteitsprofiel\nkwaliteitsregister\nkwaliteitsscore\nkwaliteitsstelsel\nkwaliteitsteam\nkwaliteitstelevisie\nkwaliteitstoetsing\nkwaliteitsverklaring\nkwantumcomputer\nkwantumtoestand\nkwantumveld\nkwartierdienst\nkwartsstof\nkwartstand\nkweekapparatuur\nkweekbodem\nkweekmethode\nkweekperiode\nkwekersrechthouder\nkweldruk\nkwikgehalte\nkwikvervuiling\nlaadeenheid\nlaagdoorlaatfilter\nlaaggebergte\nlaagstijl\nlaagveengebied\nlaathof\nlabelbaas\nlaboratoriumdiagnostiek\nlaboratoriumpersoneel\nlachband\nlachkick\nlachtherapie\nladingaanbod\nladingslijst\nladingzone\nlagenpalet\nlakenhandel\nlakenkoopman\nlanceerdatum\nlandbouwdorp\nlandbouwfunctie\nlandbouwgebruik\nlandbouwmuseum\nlandbouwontwikkelingsgebied\nlandbouwoppervlakte\nlandbouwperceel\nlandbouwpraktijk\nlandbouwregeling\nlandbouwstaat\nlandbouwstreek\nlandbouwstructuur\nlandbouwtelling\nlandbouwvrijstelling\nlandcomponent\nlandenniveau\nlandgebonden\nlandgedeelte\nlandhuisstijl\nlandijsbaan\nlandingsnet\nlandingszone\nlandkant\nlandschrijver\nlandwerk\nlangetermijnoplossing\nlangetermijnplan\nlanghuisboerderij\nlapjesmarkt\nlaserchirurgie\nlasersnijden\nlaskap\nlasmetaal\nlasrook\nlawinepijl\nleasebedrag\nleasekosten\nleasemarkt\nleaseperiode\nleasetarief\nleasetermijn\nleasingcontract\nledenadministrateur\nledenbijdrage\nledendag\nledendemocratie\nledengedeelte\nledenkaart\nledenpagina\nledenpartij\nledenservice\nledenwinst\nlederindustrie\nlederschildpad\nleefcomfort\nleefkeuken\nleefplaats\nleeftijdcategorie\nleeftijdsafhankelijk\nleeftijdsonderscheid\nleeftijdspiramide\nleeftijdsstructuur\nleeftijdverschil\nleefwensenonderzoek\nleegtrekken\nleegverkoop\nleemstreek\nleenbijstand\nleenfaciliteit\nleenfiets\nleengedrag\nleenkamer\nleensysteem\nleentermijn\nleentoestel\nleerlingbemiddeling\nleerlingbespreking\nleerlingenadministratie\nleerlingenboek\nleerlingendossier\nleerlingengroep\nleerlingenkamer\nleerlingenparlement\nleerlingenparticipatie\nleerlingenstatuut\nleerlinggebonden\nleesachterstand\nleesafstand\nleesbevorderingsproject\nleescommissie\nleesdeel\nleesdossier\nleesfout\nleesgedeelte\nleeshoek\nleeshouding\nleesjaar\nleesontwikkeling\nleesprobleem\nleesproject\nleespubliek\nleesrichting\nleessleutel\nleesstrategie\nleestekst\nleesverslag\nleesvolgorde\nleesvorm\nlegerbroek\nlegergeneraal\nlegerkleding\nlegerradio\nlegertank\nlegerwoordvoerster\nlegesheffing\nlegesverordening\nleidcultuur\nleidersduo\nleidsnoer\nlelieblad\nlenerskaart\nlengtetheorie\nleningnemer\nleningovereenkomst\nleningsovereenkomst\nlenskapsel\nlentebries\nlentenummer\nlenteochtend\nlenteoffensief\nlenteregen\nlentewandeling\nlentewind\nlenzenvloeistof\nlesblok\nlesgebeuren\nlesgroep\nlesinhoud\nleskoffer\nlesmap\nlesonderwerp\nlesopbouw\nlesopdracht\nlesplan\nlessituatie\nlestaak\nletselschadeadvocaat\nletselschadebureau\nlettercode\nletterdoos\nletterkaart\nletterkennis\nlettermateriaal\nletterontwerp\nlettervolgorde\nleugenbank\nleuterkoek\nlevensbeeld\nlevensbestemming\nlevensfasebewust\nlevensgebied\nlevensgenot\nlevenshuis\nlevensideaal\nlevensinzicht\nlevenskeuze\nlevenskiem\nlevenskosten\nlevenskring\nlevenslichaam\nlevensliedzender\nlevensloopbeleid\nlevensloopbijdrage\nlevenslooppot\nlevensloopverlof\nlevensloopverlofkorting\nlevensmentaliteit\nlevensmissie\nlevensmogelijkheid\nlevensnoodzaak\nlevensopdracht\nlevenspijn\nlevenspraktijk\nlevensprincipe\nlevensproductie\nlevensprogramma\nlevensproject\nlevenssap\nlevensstaat\nlevensstrijd\nlevenstempo\nlevensterrein\nlevensverzekeringspolis\nlevensweek\nlevenswens\nlevenswet\nlevenszekerheid\nlevenszin\nleverbot\nleveringsadres\nleveringsakte\nleveringsbetrouwbaarheid\nleveringsbon\nleveringsovereenkomst\nleverkleur\nleverschade\nleverwerking\nlezersactie\nlezersschare\nlezersvraag\nlezingenreeks\nlicentiecode\nlicentiecontract\nlicentienummer\nlicentievergoeding\nlicentieverkoop\nlicentieverlening\nlichtapparatuur\nlichtdoorlaatbaarheid\nlichtdrager\nlichtgebonden\nlichtkleur\nlichtontwerp\nlichtreflectie\nlichtschijn\nlichtschuwheid\nlichtslang\nlichttafel\nlichttechniek\nlichtverlies\nlichtwezen\nliederenschat\nliedjesfestijn\nliefdekracht\nliefdesbeleving\nliefdeskind\nliefdesobject\nliefdesverlangen\nliersysteem\nliesbreukoperatie\nlievelingsbloem\nlievelingsdochter\nlievelingslied\nlievelingsnummer\nlievelingsvak\nlievelingsvrouw\nliftkracht\nliftsysteem\nlightrailproject\nligusterheg\nlijflucht\nlijkschouw\nlijkvocht\nlijkzak\nlijmmortel\nlijmoor\nlijmverbinding\nlijnbreuk\nlijnenteelt\nlijnmotor\nlijnnummer\nlijnpiloot\nlijnpoging\nlijstgevel\nlijsttrekkersverkiezing\nlijstverbintenis\nlimietklasse\nlimietprijs\nlimoenrasp\nlimonadeglas\nlingeriemerk\nlingeriezaak\nlinkerbalk\nlinkerbenedenhoek\nlinkerbil\nlinkerbladzijde\nlinkerbocht\nlinkerboezem\nlinkerbuur\nlinkerbuurman\nlinkerdeur\nlinkerdij\nlinkerelleboog\nlinkerfoto\nlinkergedeelte\nlinkerhartkamer\nlinkerlid\nlinkerlies\nlinkerlong\nlinkermuur\nlinkerneusgat\nlinkeroksel\nlinkeronderbeen\nlinkerooghoek\nlinkerpoot\nlinkerrand\nlinkerscherm\nlinkerslaap\nlinkerverdediger\nlinkervoorwiel\nlinkerwand\nlinkerwijsvinger\nlinksbackpositie\nlinksisme\nlinoleumvloer\nliquiditeitscrisis\nliquiditeitsrisico\nlobbybar\nlobbycampagne\nlobbyclub\nlocatiebeleid\nlocatiebepaling\nlocatieleider\nlocatiesysteem\nlocatievoorstelling\nlocomotievenloods\nlogeeropvang\nlogeerplek\nlokettenzaal\nlongafdeling\nlongfunctieonderzoek\nlongfunctietest\nlonggeneeskunde\nlongpositie\nlongschade\nlongverpleegkundige\nlongvlieskanker\nlongvolume\nloodaccu\nloodglazuur\nloodgordel\nloofvernietiging\nloonaanvulling\nloonbegrip\nloonbevriezing\nloonbrief\nloonbudget\nloonheffingskorting\nloonlast\nloonperiode\nloonschade\nloonslavernij\nloonspanning\nloonsuppletie\nloonverhoging\nloopactie\nloopauto\nloopbaancoach\nloopbaaneinde\nloopbaanoriëntatie\nloopbaantraject\nloopbaanvermindering\nloopcomfort\nloopconditie\nloopdag\nloopervaring\nloopgang\nloopgebied\nloopgedeelte\nloophouding\nloophulpmiddel\nlooplijn\nlooponderdeel\nloopparcours\nlooppiste\nloopplezier\nloopproef\nloopprogramma\nloopronde\nloopschema\nloopsport\nloopstijl\nlooptempo\nlooptest\nlooptocht\nlooptrainer\nloopwiel\nloopwonder\nloopzool\nlotusblad\nloungebank\nloungebar\nloungeruimte\nlouteringsvuur\nlozingssituatie\nlozingsverbod\nluchtaanvoer\nluchtbehandelingskast\nluchtdoorstroming\nluchtgeleiding\nluchtgeluid\nluchtgeweer\nluchthaveninfrastructuur\nluchthavenregio\nluchthoorn\nluchtkwaliteitsplan\nluchtlandingsoperatie\nluchtmengsel\nluchtonderzoek\nluchtreiniging\nluchtruimte\nluchtsoort\nluchtspleet\nluchttransportcapaciteit\nluchtvaartruimte\nluchtvaartveiligheid\nluchtvaartwetgeving\nluchtverbruik\nluchtverkenningssysteem\nluchtvervoerder\nluchtvolume\nluchtwasser\nluchtwrijving\nluiertaart\nluistermateriaal\nluisterpaal\nluisterruimte\nluistersessie\nluisvrij\nlunchadres\nlunchbuffet\nlunchmenu\nlunchplek\nlunchprogramma\nlunchstop\nlunchtafel\nlunchuitzending\nlustprincipe\nlustrumboek\nlustrumcommissie\nlustrumeditie\nlusttuin\nmaagbeschermer\nmaagring\nmaagtorsie\nmaaguitgang\nmaakbaarheidsdenken\nmaakbaarheidsgedachte\nmaalstoel\nmaaltijdservice\nmaaltijdvervanger\nmaanbasis\nmaandafsluiting\nmaandagmarkt\nmaandagvoormiddag\nmaandgrafiek\nmaandmenu\nmaandprijs\nmaandsom\nmaanmaand\nmaannacht\nmaataanduiding\nmaatjesproject\nmaatlepel\nmaatlijn\nmaatoplossing\nmaatschappijanalyse\nmaatschappijformatie\nmaatstafconcurrentie\nmaattabel\nmaatwerkadvies\nmaatwerkregeling\nmaatwerktraject\nmachinehuis\nmachinekamerpersoneel\nmachinistenhuis\nmachtigingskaart\nmaffiafamilie\nmaffiafilm\nmaffiawereld\nmagazijnbeheer\nmagneetbord\nmagnesiumgehalte\nmagnesiumlegering\nmagnesiumsulfaat\nmagnesiumtekort\nmailbestand\nmailcontact\nmailknop\nmaillijst\nmailorder\nmaiszetmeel\nmanagementassistente\nmanagementbureau\nmanagementcapaciteit\nmanagementcomité\nmanagementdenken\nmanagementgebied\nmanagementgoeroe\nmanagementinstrument\nmanagementlaag\nmanagementletter\nmanagementliteratuur\nmanagementmodel\nmanagementonderwijs\nmanagementorgaan\nmanagementprogramma\nmanagementrapportage\nmanagementsoftware\nmanagementstrategie\nmanagementvisie\nmanagerscultuur\nmandaatbesluit\nmandaatgever\nmandaathouder\nmannenberoep\nmannenbeweging\nmannencollectie\nmannencultuur\nmannendag\nmannending\nmannenfiguur\nmannenhart\nmannenhuid\nmannenkamp\nmannenlijf\nmannennaam\nmannenpil\nmannensport\nmannenvlees\nmannenzweet\nmannetjesdier\nmantelovereenkomst\nmantelzak\nmantelzorgondersteuning\nmappenstructuur\nmarathoninterview\nmarathontempo\nmarathontijd\nmarathontraining\nmarketingadvies\nmarketingoogpunt\nmarketingteam\nmarketingtechniek\nmarketingtool\nmarktafbakening\nmarktbezoek\nmarktconformiteit\nmarktgebeuren\nmarktgebouw\nmarkthuur\nmarktideologie\nmarktintegratie\nmarktinzicht\nmarktlogica\nmarktmanipulatie\nmarktmisbruik\nmarktniveau\nmarktoriëntatie\nmarktpotentie\nmarktregulering\nmarktruimte\nmarktsentiment\nmarktstad\nmarkttoetreding\nmarktvorm\nmarktwaardering\nmartelcentrum\nmassabewustzijn\nmassadichtheid\nmassagebehandeling\nmassagestoel\nmassagetechniek\nmassaloos\nmassamaatschappij\nmassamanipulatie\nmassamarketing\nmassameeting\nmassamiddelpunt\nmassamigratie\nmassapartij\nmassapercentage\nmassapubliek\nmassatraagheid\nmassaverdeling\nmasthoogte\nmastvoet\nmatchbal\nmatchritme\nmatchverslag\nmateriaalbesparing\nmateriaaldikte\nmateriaalgedrag\nmateriaalhok\nmateriaallijst\nmateriaalpost\nmateriaaltechnologiegroep\nmateriaalverbruik\nmateriaalwinst\nmaterieelbeleid\nmatrashoes\nmatrixzin\nmaximumboete\nmaximumgrootte\nmaximumlengte\nmaximumloon\nmaximumperiode\nmaximumscore\nmaximumvermogen\nmazouttank\nmaïsdoolhof\nmededelingenformulier\nmededingingsvermogen\nmedefinancieringsstelsel\nmedewerkersonderzoek\nmedewerkerstevredenheid\nmedicatiedossier\nmedicatieveiligheid\nmedicijnmeester\nmeditatievorm\nmeelbloem\nmeeloopdag\nmeerderheidscultuur\nmeerderheidsregel\nmeerderheidsstemming\nmeerderwaardigheid\nmeerjarenbeeld\nmeerjarenbeleidsplan\nmeerjarenprogrammering\nmeerkeuzesysteem\nmeerverkoop\nmeervleermuis\nmeerwaardevoet\nmeerwaardezoeker\nmeerwaardigheid\nmeetband\nmeetcampagne\nmeetcel\nmeetfiets\nmeetfrequentie\nmeetgebied\nmeetinrichting\nmeetkamer\nmeetmast\nmeetmiddel\nmeetmoment\nmeetonzekerheid\nmeetplaats\nmeetplan\nmeetprincipe\nmeetrapport\nmeettoestel\nmeetvolume\nmeidenavond\nmeidenband\nmeisjesafdeling\nmeisjesbesnijdenis\nmeisjesdroom\nmeisjeshart\nmeisjeshuis\nmeisjeslichaam\nmeisjesteam\nmeldactie\nmeldcentrale\nmeldingsfrequentie\nmeldnummer\nmeldster\nmeldtekst\nmeldweek\nmelkgang\nmelkgeld\nmelkmengsel\nmelkschuim\nmelksector\nmelkwei\nmembraantechnologie\nmemoriaalboeking\nmengbeker\nmengcultuur\nmengmonster\nmeningenpagina\nmensenbaby\nmensenbestaan\nmensenfamilie\nmensengeschiedenis\nmensenhuid\nmensenleed\nmensenmaatschappij\nmensenrechteneducatie\nmensenrechteninstituut\nmensenrechtenstrategie\nmensenwoord\nmensport\nmenssoort\nmensverbetering\nmensvisie\nmenswezen\nmentaliteitsprobleem\nmentorklas\nmentoruur\nmenuonderdeel\nmenuoptie\nmenuscherm\nmenusysteem\nmenutekst\nmerkbescherming\nmerkeigenaar\nmerkgebruik\nmerkgeneesmiddel\nmerkregistratie\nmerkstreep\nmessenblok\nmessenset\nmestafvoer\nmestgift\nmestkelder\nmestonderzoek\nmestsoort\nmetaalplaat\nmetaalsmaak\nmetaalwerk\nmeteoorinslag\nmethodegebonden\nmethodeschool\nmethodiekontwikkeling\nmethylkwik\nmetrobouw\nmetrokaart\nmetroman\nmetrorit\nmetroverkeer\nmetselmortel\nmeubelhandelaar\nmeubelketen\nmeubelkunst\nmeubelolie\nmeubeltekst\nmiddagboterham\nmiddaggedeelte\nmiddaglicht\nmiddagmagazine\nmiddagshow\nmiddagslaap\nmiddagspits\nmiddagtraining\nmiddagwandeling\nmiddelbrand\nmiddelomtrek\nmiddelonderdeel\nmidwinterfeest\nmidzomerfeest\nmigratiedienst\nmigratiegeschiedenis\nmigratieland\nmigratieprobleem\nmigratieproblematiek\nmigratieroute\nmigratievraagstuk\nmijnbestrijding\nmijnmuseum\nmijnsteenberg\nmijnverleden\nmilieuaansprakelijkheid\nmilieuactieprogramma\nmilieuadviesraad\nmilieuagentschap\nmilieubarometer\nmilieubeleidsovereenkomst\nmilieubeoordeling\nmilieucategorie\nmilieuduurzaamheid\nmilieueffectbeoordeling\nmilieuhoek\nmilieujaarprogramma\nmilieulast\nmilieumaffia\nmilieupark\nmilieuprofiel\nmilieuruimte\nmilieusatelliet\nmilieuscore\nmilieusteun\nmilieusubsidie\nmilieutoezicht\nmilieuveiligheid\nmilieuvergunningsaanvraag\nmilieuvernietiging\nmilieuverordening\nmilieuvlak\nmilieuwetenschappen\nmiljardenbedrijf\nmiljardenindustrie\nmiljardeninjectie\nmiljoenenbal\nmiljoenenbedrag\nmiljonairsbeurs\nminderheidscoalitie\nminderwaarde\nmineraalgehalte\nmineralenblok\nminiatuurkunst\nminiatuurweergave\nminiatuurwereld\nminimumafstand\nminimumdienst\nminimumdrempel\nminimumgewicht\nminimumhoogte\nminimummaat\nminimumperiode\nminimumtermijn\nministersvergadering\nminutenwijzer\nmisdaadbestrijder\nmisdaaddrama\nmisdaadjournalistiek\nmisdaadprogramma\nmisdaadreeks\nmishandelaar\nmispeer\nmissiebrief\nmissiekerk\nmissionarishouding\nmistlaag\nmiswaak\nmobieltjesfabrikant\nmobilisatiekracht\nmobilisatietijd\nmobiliteitsambtenaar\nmobiliteitsbehoefte\nmobiliteitsbeperking\nmobiliteitsconvenant\nmobiliteitsmarkt\nmobiliteitsvergoeding\nmodderpad\nmodderwater\nmodderweg\nmodebeurs\nmodecollectie\nmodelauto\nmodelbaan\nmodelbouwwinkel\nmodelbouwzaak\nmodelbrief\nmodelburger\nmodelformulier\nmodelfotografie\nmodelgezin\nmodellengamma\nmodellenrecht\nmodellijst\nmodelnummer\nmodelrecht\nmodelregeling\nmodelserie\nmodelspoor\nmontagebedrijf\nmontagehandleiding\nmontagekit\nmontagetijd\nmonumentenpand\nmonumentenstad\nmoordcijfer\nmoslimomroep\nmoslimschool\nmosselkookvocht\nmosselkweek\nmosselzaadvisserij\nmossoort\nmotoras\nmotorbeurs\naanmeldingsverplichting\naansprakelijkheidsvraag\naardolieprijs\nachtergronddecor\nactieknop\nactiepuntenlijst\nactieschip\nademhalingsdepressie\nadoptieproject\nadresregel\nafscheidingsproduct\nafspeelsnelheid\nafvalstoffenbeheer\nafvalwatersysteem\nagressieoorlog\nalcoholstift\nantennepark\napartheidsdenken\napenfamilie\napenhuis\napocalypsfilm\narbeidsidentiteit\narbeidsmigrant\narcheologiebeleid\nartikelonderdeel\natoombunker\natoomexplosie\natoomsoort\nattractielijst\nauditverslag\nautoloog\nautoriteitsprincipe\navondbrood\navondrust\navondwind\nbaggerstort\nbankenmarkt\nbasisopzet\nbasisovereenkomst\nbasisregister\nbasiswerking\nbedrijfsbalans\nbedrijfssegment\nbehoeftepeiling\nbekkenholte\nbelastingstatus\nbelastingvordering\nbeleggingsvehikel\nbeleidsbenadering\nbeleidsmodel\nbelevingsmogelijkheid\nbeloningscentrum\nbenefietgala\nbeoordelingsverslag\nbergrand\nbergvlakte\nberichtenbord\nberichtenlijst\nberoepsidentiteit\nbeschavingsgraad\nbeslissingsprocedure\nbesparingsoperatie\nbestandscatalogus\nbestandsvergelijking\nbestelbevestiging\nbestelgemak\nbestralingstherapie\nbesturingsconcept\nbesturingspaneel\nbetekenisdrager\nbetekenissysteem\nbeverburcht\nbewonersonderzoek\nbewustwordingsmogelijkheid\nbewustzijnsdrempel\nbezetmelder\nbezoekersgedrag\nbezoekgedrag\nbibliotheekgebruiker\nbicepspees\nblaasvorming\nbloedafdruk\nbochtgedrag\nboekverkoopster\nbomenlijst\nbommengordel\nborstmelk\nbreedbandgebruik\nbroodpap\nbrouwgroep\nbruidsgeschenk\nbruiloftsstoet\nbureauonderzoek\nbuurtbemiddelaar\nbuurtblad\ncalamiteitenorganisatie\ncamerastand\ncampingplek\ncampingstoel\ncapaciteitsberekening\ncentrumzijde\nclubterrein\ncollecterooster\ncommunicatieklimaat\ncompetitiejaar\ncompositieopdracht\nconcurrentiebeperking\nconcurrentieoogpunt\nconferentiehotel\nconstructievloer\ncontrastkleur\ncontroleperiode\ncorporatiebezit\ncrashdieet\ncriminaliteitsbeeldanalyse\ncultuurideaal\ncultuurredactie\ncultuurwaarde\ndagkapel\ndagtotaal\ndakafdichting\ndakspant\ndakvoet\ndansdocente\ndansgedeelte\ndanslied\ndanslokaal\ndatabescherming\ndeclaratieregeling\ndeeltijdpercentage\ndekkingsvoorstel\ndemocratiecongres\ndenkvrijheid\ndepotwerking\ndesignkleding\ndetailhandelsstructuur\ndienstencatalogus\ndienstonderdeel\ndienstreglement\ndierenbloed\ndiervoederbedrijf\ndiervoederketen\ndiffusiesnelheid\ndiscoshow\ndiscussieruimte\ndistributiestructuur\ndobbelsteenworp\ndocumentvorming\ndoelkaart\ndoelpopulatie\ndonkerzwart\ndraagvlakversterking\ndraaitabel\ndranklokaal\ndriepasboog\ndrinkwaterprobleem\ndroomdag\ndroomlandschap\ndrugsbestrijdingsdienst\ndruivennat\neenheidsbeleving\neenheidscel\neenheidservaring\neiwitbinding\neiwitstofwisseling\nervaringswetenschap\nevenementenagenda\nevolutiesprong\nfactorkosten\nfaillissementsbescherming\nfertiliteitsarts\nfestivalbeleid\nfietspadenplan\nfilmaffiche\nfilmauteur\nflashdrive\nfluisterzang\nfosfaatgroep\nfruityoghurt\ngasapparatuur\ngasnaald\ngastuniversiteit\ngeboortebord\ngedragstraining\ngegevensblad\ngegevenswoordenboek\ngeheimleer\ngeheugenkaartlezer\ngeheugenspoor\ngeldmassa\ngeldpolitiek\ngelijkheidsideologie\ngevangeniskleding\ngevrijwaarde\ngewasstand\ngezondheidsvoordeel\ngodenverering\ngodsdienstuitoefening\ngolfvakantie\ngraanopbrengst\ngroeiregeling\ngrondbevolking\ngrondheer\ngrootheidswaanzinnige\nhalsgedeelte\nhalsmisdrijf\nhandelsbescherming\nhandwerkclub\nhavenfaciliteit\nhavenfaciliteitsveiligheidsplan\nhemelsfeer\nherenbank\nherhaalmedicatie\nherinneringswaarde\nhersenloosheid\nhersenstimulatie\nhogeschoolbibliotheek\nhoofddeur\nhoofdeigenschap\nhoofdfoto\nhoofdleger\nhoofdlichaam\nhoofdmassa\nhoofdontsluiting\nhoofdprincipe\nhoofdring\nhoofdverzekering\nhoofdwachtwoord\nhoofdwedstrijd\nhoudverbod\nhuurtoelage\nimmigratiekantoor\nimpactfactor\nincestverbod\nindexbeleggen\nindianenkamp\nindianennaam\ninductiespanning\ninformatieopdracht\ninformatieplanning\ninjectievloeistof\ninkomensreferentieperiode\ninktsteen\ninternetzorg\ninvesteringsindustrie\ninvullicht\ninwijdingsleer\nislambasher\njaarverantwoording\njachtgezelschap\njachthondenproef\njeugdtraining\njonggehandicapte\nkaakhelft\nkaartencollectie\nkaartfragment\nkanselboodschap\nkansenzone\nkantorenlocatie\nkapitaalwaarde\nkasritme\nkenniscampus\nkennisdatabase\nkennisgebruik\nkennistoegang\nkerkterrein\nkerkvisie\nkermisperiode\nkerninrichting\nkernmaterieel\nkeuzebord\nkinderbrowser\nkinderslaapkamer\nkindervoet\nkindvolgsysteem\nklaagverhaal\nklankherhaling\nkleurkwaliteit\nklokkenhuis\nkluitjesvoetbal\nknoflooksmaak\nkoelunit\nkolenimport\nkolfruimte\nkoningsmaal\nkookzone\nkoorsluiting\nkoraalsteen\nkoraalzand\nkostprijsmodel\nkraakbeenweefsel\nkrachtvoergift\nkriekbier\nkroegbazin\nkruideniersvrouw\nkruisbandletsel\nkruisgebouw\nkunstmenu\nkunstmestgebruik\nkunsttak\nkunstvol\nkweekkas\nlandbouwkolonie\nlandpunt\nlangetermijndoelstelling\nleasevorm\nledenwerfcampagne\nleefcultuur\nleefniveau\nleegroof\nleeskaart\nleesprogramma\nlegeroverste\nlelieveld\nlessentaak\nlettermuur\nlevensaanvaarding\nlevensinhoud\nlevenskennis\nlevensomgeving\nlevensroeping\nlevensspel\nlevensuiting\nlevensuur\nlevensvernieuwing\nleverfunctiestoornis\nlezersredacteur\nlichtbeuk\nlichtwereld\nliefdesideaal\nliesgras\nlinkerberm\nlinkerframe\nlinkerpaal\nlinkervuist\nlocatieraad\nloopbaancentrum\nloopbaangericht\nloopgedrag\nloopvloeistof\nloyaliteitsvraag\nluchtbal\nluchtdrukverdeling\nluchtsysteem\nmaagspoeling\nmaaswijdtemeter\nmanagementassistent\nmanagementstatuut\nmannenbesnijdenis\nmaterialenkennis\nmaximummassa\nmaximumstelsel\nmaximumvergoeding\nmededingingsoogpunt\nmeisjestoilet\nmelkproducent\nmensenplaag\nmensenrechtenclausule\nmensenrechtendialoog\nmensenrechtengebied\nmensenrechtenraad\nmerkbeleid\nmiddagstop\nmigratieproject\nmijnafval\nmijnsteen\nmineralenhuishouding\nmodelsysteem\nmodelverordening\nmodelvliegen\nmodelvoorbeeld\nmodepolitie\nmodereportage\nmodesector\nmodeziekte\nmodulering\nmoederaap\nmoederboom\nmoederclub\nmoedercultuur\nmoederdagcadeau\nmoederdepartement\nmoedereend\nmoederfiets\nmoedergroep\nmoederhond\nmoederkat\nmoederknol\nmoederkoe\nmoederkruid\nmoederlijf\nmoederlijn\nmoedermateriaal\nmoederplaneet\nmoeraszone\nmoessontijd\nmoffenhoer\nmolenspel\nmollenvanger\nmondbal\nmondgebied\nmondgeur\nmondspleet\nmonitoringssysteem\nmonnikenleven\nmonstercoalitie\nmonsterfilm\nmonsternemer\nmonsterrit\nmonstertocht\nmonstertruck\nmontageplaat\nmoorddiner\nmoordverhaal\nmoraalleer\nmorgenlucht\nmorgenvoormiddag\nmortelbed\nmortelspecie\nmortierbom\nmoslimdebat\nmoslimgeweld\nmoslimgezin\nmoslimhater\nmoslimhoek\nmoslimhoer\nmoslimidentiteit\nmoslimjeugd\nmoslimprobleem\nmoslimschap\nmoslimterreur\nmoslimtraditie\nmoslimvolk\nmoslimvriend\nmosselvocht\nmosterdplant\nmosvorming\nmotivatieprobleem\nmotiveringsgebrek\nmotiveringsklacht\nmotorcrossbaan\nmotorcrossterrein\nmotorfietser\nmotorgebruik\nmotorgedeelte\nmotorhuis\nmotorjas\nmotorkoeling\nmotorkoppel\nmotorkracht\nmotorleverancier\nmotorliefhebber\nmotorloop\nmotormerk\nmotormuis\nmotorpolitie\nmotorreddingboot\nmotorrem\nmotorrijles\nmotorrijtuigverzekering\nmotorrit\nmotorruim\nmotorschade\nmotorschot\nmotorseizoen\nmotorsloep\nmotorspuit\nmotorsteun\nmotorstroom\nmotorsturing\nmotortankschip\nmotortechnologie\nmotortemperatuur\nmotortocht\nmotorverzekering\nmotorwereld\nmozaïekwerk\nmuggenmelk\nmuggenspray\nmuispijl\nmuistoets\nmuiswiel\nmuntdrop\nmunthuis\nmuntrecht\nmuseumshop\nmusicalafdeling\nmusicaltheater\nmutatieformulier\nmutatiegraad\nmuurbeugel\nmuurbevestiging\nmuurdecoratie\nmuurisolatie\nmuuropening\nmuziekbedrijf\nmuziekcircuit\nmuziekclip\nmuziekclub\nmuziekdag\nmuziekdistributie\nmuziekeducatie\nmuziekfan\nmuziekfestijn\nmuziekfreak\nmuziekgebeuren\nmuziekgebruik\nmuziekhistorie\nmuziekhuis\nmuziekjaar\nmuziekjournalistiek\nmuziekkamer\nmuziekkennis\nmuziekland\nmuzieklandschap\nmuzieklokaal\nmuziekmix\nmuziekonderricht\nmuziekoptreden\nmuziekpaleis\nmuziekproducer\nmuziekprogrammering\nmuziekredactie\nmuziekscore\nmuziekshow\nmuziekspel\nmuziekstation\nmuzieksysteem\nmuziektherapeute\nmuziekverzameling\nmuziekvoorkeur\nmuziekzaak\nmuzikantenbestaan\nnaadtoeslag\nnaaktkalender\nnaaktrecreatie\nnaaktreportage\nnaaldenspel\nnaaldkant\nnaamgebruik\nnaamkundige\nnaamwet\nnachtgebed\nnachtgezicht\nnachtkroeg\nnachtmarkt\nnachtmode\nnachtmuziek\nnachtrace\nnachtschoot\nnachtspel\nnachtvervoer\nnachtzicht\nnadeelcompensatieregeling\nnagelkruid\nnagelplaat\nnagelverzorging\nnagelvuil\nnamenrecht\nnamiddaghandel\nnamiddagprogramma\nnarcismijt\nnascholingsaanbod\nnascholingsplan\nnascholingsproject\nnatiegevoel\nnationaliteitsrecht\nnationaliteitsverklaring\nnationaliteitswet\nnationaliteitswetgeving\nnatriumcarbonaat\nnatriumgehalte\nnatriumhydroxide\nnatriumsulfaat\nnatuurarts\nnatuurbedrijf\nnatuurbegraafplaats\nnatuurbrug\nnatuurcamping\nnatuurcosmetica\nnatuurdocumentaire\nnatuurdoeltype\nnatuurdomein\nnatuureiland\nnatuurervaring\nnatuurfoto\nnatuurgebeuren\nnatuurgeest\nnatuurgeloof\nnatuurgericht\nnatuurgrasveld\nnatuurgroep\nnatuurhistorie\nnatuurkader\nnatuurkalender\nnatuurkurk\nnatuurleven\nnatuurmuseum\nnatuurprofiel\nnatuurspektakel\nnatuurstroom\nnatuurtafereel\nnatuurtoestand\nnatuurtoon\nnatuurtype\nnatuurvergunning\nnatuurvijver\nnatuurwater\nnatuurwetgeving\nnatuurwinst\nnatuurziel\nnatuurzone\nnavigatieapparaat\nnavigatiemarkt\nnavigatiemenu\nnavigatiescherm\nnavigatieverlichting\nnavorderingstermijn\nnazikamp\nnaziterreur\nnazomerdag\nnazomerzon\nnederzettingsgeschiedenis\nnederzettingsstructuur\nneerklappen\nneerslagintensiteit\nneerslagoverschot\nneerslagtekort\nneerslagtotaal\nneerslagvorming\nneerstorting\nnestbescherming\nnestblok\nnestcontrole\nnestelgelegenheid\nnestgrootte\nnestkamer\nnetvliesbeeld\nnetwerkadres\nnetwerkbenadering\nnetwerkberaad\nnetwerkborrel\nnetwerkcommunicatie\nnetwerkconfiguratie\nnetwerkdienst\nnetwerkfunctie\nnetwerkkosten\nnetwerklaag\nnetwerklocatie\nnetwerkmanagement\nnetwerkmodel\nnetwerknaam\nnetwerkniveau\nnetwerkontwikkeling\nnetwerkoperator\nnetwerkschijf\nnetwerkserver\nnetwerkstation\nnetwerkstoring\nnetwerkverband\nneukbeurt\nneuklat\nneuscorrectie\nneusdop\nneushoornvogel\nneusmasker\nneusoperatie\nneuspiercing\nneuspunt\nneusslijm\nneusslijmvliesontsteking\nneussonde\nneusverstopping\nnevenberoep\nnevenimport\nnevenruimte\nneventaak\nneventak\nneventhema\nnevenzittingsplaats\nnicheproduct\nnichespeler\nnierbeschadiging\nnierslagader\nnierstreek\nnierweefsel\nnieuwbouwappartement\nnieuwheidsonderzoek\nnieuwsanalyse\nnieuwsanker\nnieuwsconsument\nnieuwsconsumptie\nnieuwsfotografie\nnieuwsfreak\nnieuwsmagazine\nnieuwsmail\nnieuwsonderwerp\nnieuwsradio\nnieuwsserver\nnieuwsverslaggeving\nnieuwsverspreiding\nnikkelvrij\nniveaumeter\nniveauregeling\nniveauverlaging\nnominatielijst\nnominatieronde\nnoodgenerator\nnoodherstel\nnoodingreep\nnoodonderzoek\nnoodoperatie\nnoodpaspoort\nnoodpil\nnoodplanning\nnoodradio\nnoodschool\nnoodsysteem\nnoodtrap\nnoodvulling\nnoodziekenhuis\nnoordbrug\nnoordgevel\nnoordhoek\nnoordmuur\nnoordoostkant\nnoordoostpassaat\nnoordtracé\nnoordwestkant\nnoordwestpunt\nnormbetrekking\nnormblad\nnormendebat\nnormenkader\nnormgroep\nnormjaartaak\nnormkosten\nnormoverschrijding\nnormtijd\nnormverbruik\nnormwaarde\nnotatiesysteem\nnummerbehoud\nnylondraad\nobjectgebied\nobjectmodel\nobjectoriëntatie\nobjecttype\nobligatiehandel\nobligatieverzekeraar\nobservatielijst\nobservatiepunt\nochtendbezoek\nochtendgedeelte\nochtendgym\nochtendkou\nochtendrit\nochtenduitzending\nochtendvlucht\noctrooibox\noctrooilicentie\noefenavond\noefenplaats\noefenpot\noefensituatie\noefentoets\noefenvorm\noefenzaal\noestermes\noeverbegroeiing\noeverbescherming\noeverlijn\noeverloosheid\noeverrand\nofferteformulier\noffertetraject\noffertevraag\nokselzweet\noliebeurs\noliebollenactie\noliekeerring\noliekoeler\nolielobby\noliemassage\noliepiek\noliepit\nolietijdperk\nolieverslaving\nolievraag\noliewereld\noliewet\nolifantenkamp\nolijfboomcoalitie\nolijfbruin\nolijfgaard\nolijventeelt\nomgevingsbewustzijn\nomgevingsdruk\nomgevingskwaliteit\nomgevingsplan\nomgevingsrecht\nomgevingsrook\nomgevingsruis\nomgevingsverordening\nomkeerregel\nomroepdecreet\nomroepgebouw\nomroepprogramma\nomroepstelsel\nomschakelingskosten\nomschakelingsperiode\nomslagontwerp\nomzetbaar\nonafhankelijkheidspartij\noncologieverpleegkundige\nonderduikplaats\nonderhandelingsagenda\nonderhandelingshuishouding\nonderhandelingskader\nonderhandelingstraject\nonderhoudbaar\nonderhuurovereenkomst\nondernemersaftrek\nondernemersbloed\nondernemersfamilie\nondernemersgedrag\nondernemersgezin\nondernemersplatform\nondernemerswereld\nondernemingsloket\nondernemingsmodel\nondernemingsovereenkomst\nondernemingsvlak\nondernemingswinst\nondersteuningsaanbod\nondersteuningsbehoefte\nondersteuningsbeleid\nondersteuningsfunctie\nondersteuningskosten\nondersteuningsplan\nondersteuningsprogramma\nondersteuningsstructuur\nondersteuningsverklaring\nondersteuningsvraag\nonderwaterfotograaf\nonderwatergewicht\nonderwijsaanpak\nonderwijsarbeidsmarkt\nonderwijsassistente\nonderwijsbalie\nonderwijsbegeleiding\nonderwijsbestuur\nonderwijsbijdrage\nonderwijsblad\nonderwijsbureau\nonderwijsconsulent\nonderwijsdecreet\nonderwijsdirecteur\nonderwijsdoel\nonderwijseenheid\nonderwijsfilosofie\nonderwijsgebeuren\nonderwijsgroep\nonderwijsinfrastructuur\nonderwijsinhoud\nonderwijsinnovatie\nonderwijsmanager\nonderwijsomgeving\nonderwijsondersteuning\nonderwijsonderzoek\nonderwijsopdracht\nonderwijsperiode\nonderwijsruimte\nonderwijssecretariaat\nonderwijsstad\nonderwijstraject\nonderwijsvereniging\nonderwijszorg\nonderwijzersopleiding\nonderwijzerswoning\nonderzoekstaak\nonkruiddruk\nontbijtactie\nontbijtpakket\nontbijtruimte\nontbijtsessie\nonteigeningsplan\nonthaalbalie\nonthaalbeleid\nonthaalbureau\nontheffingenbeleid\nontheffingsaanvraag\nontheffingsmogelijkheid\nonthoudingspolitiek\nontkenningsfase\nontmoetingsfunctie\nontplooiingsliberalisme\nontruimingsoefening\nontruimingsvonnis\nontslagdatum\nontslagplan\nontslagstelsel\nontslaguitkering\nontspanningsfase\nontspanningsmassage\nontspanningsoord\nontspanningstherapie\nontstekingsbron\nontstekingshaard\nontstekingsvocht\nontstekingsziekte\nontvangstbalie\nontvangster\nontvangstkwaliteit\nontwerpaanbeveling\nontwerpatelier\nontwerpdossier\nontwerpmethode\nontwerponderwijs\nontwerpopdracht\nontwerpopgave\nontwerppraktijk\nontwerpsnelheid\nontwerpsoftware\nontwerpstudie\nontwerptalent\nontwerptheorie\nontwerptraject\nontwerpvergunning\nontwerpwetgeving\nontwerpwetgevingsresolutie\nontwikkelcentrum\nontwikkelfase\nontwikkelingsagenda\nontwikkelingsbijstand\nontwikkelingscyclus\nontwikkelingseconomie\nontwikkelingsfinanciering\nontwikkelingsfunctie\nontwikkelingslijn\nontwikkelingsmateriaal\nontwikkelingsonderzoek\nontwikkelingspad\nontwikkelingspatroon\nontwikkelingsperiode\nontwikkelingsperspectief\nontwikkelingsprofiel\nontwikkelingspsycholoog\nontwikkelingsronde\nontwikkelingsruimte\nontwikkelingssamenwerkingsbeleid\nontwikkelingssector\nontwikkelingsstimulering\nontwikkelingstoxiciteit\nontwikkelingsvoorsprong\nontwikkelingsweg\nontwikkelingswereld\nontwikkelplan\nontwikkelproject\nontwikkelstraat\nontwikkeltool\nonzekerheidsprincipe\noogbescherming\noogbindvlies\noogchirurg\noogcontrole\noogcorrectie\noogcrème\noogdop\noogdruppel\nooggel\nooginfectie\noogkamerhoek\noogkanker\nooglaserbehandeling\noogmasker\noogoppervlak\noogring\noogrok\noogstbaar\noogstdag\noogstmoment\noogstopbrengst\noogstreep\noogsttijdstip\noogtest\noogziekenhuis\noogzorg\noorlogsburgemeester\noorlogscrimineel\noorlogsdoel\noorlogsgebeuren\noorlogskreet\noorlogslogica\noorlogsmissie\noorlogsnoodzaak\noorlogsplan\noorlogsproductie\noorlogsresolutie\noosteinde\noostgevel\noostmuur\nopbergdoos\nopberghok\nopbergkist\nopbergmogelijkheid\nopbergzak\nopbouwpercentage\nopbouwtrainer\nopbrengstverhoging\nopdrachtbon\nopdrachtbrief\nopdrachtformulering\nopdrachtformulier\nopdrachtkaart\nopdrachtomschrijving\nopdrachtverstrekking\nopeningsbel\nopeningsdeel\nopeningsgebed\nopeningshoek\nopeningskoor\nopeningskwartier\nopeningsreceptie\nopeningsscherm\nopeningsshot\nopeningsshow\nopeningsstoet\nopeningsstuk\nopeningstijdrit\nopeningstoernooi\nopeningstrack\nopeningstune\nopeningsweek\noperatieassistent\noperatiecentrum\noperatiedatum\noperatiehemd\noperatiekleding\noperatieteam\noperatietijd\noperatieverslag\noperatiewond\nophaaldag\nophaalkalender\nophangconstructie\nophoudprijs\nopiniebijdrage\nopinieklimaat\nopinieredactie\nopiniesite\nopinietijdschrift\nopknapwerk\noplaadbeurt\noplaadstation\noplapwerk\nopleidingenaanbod\nopleidingencentrum\nopleidingsadviseur\nopleidingsdag\nopleidingsfase\nopleidingsgroep\nopleidingsinstelling\nopleidingsjaar\nopleidingsorkest\nopleidingspakket\nopleidingsperiode\nopleidingsprofiel\nopleidingssteun\nopleidingsteam\nopleidingsvergoeding\nopleidingsvorm\nopleidingsziekenhuis\noplossingsgerichtheid\nopmaakprogramma\nopmaaktaal\nopmerkingenveld\nopmerkingsvermogen\nopnameapparaat\nopnamebeleid\nopnamedatum\nopnamegesprek\nopnameknop\nopnamekosten\nopnamemateriaal\nopnamemogelijkheid\nopnameploeg\nopnameprogramma\nopnameruimte\nopnamestand\noppasadres\noppasdienst\noppaskind\nopperhof\noppervlakteruwheid\noppervlaktewaterkwaliteit\noprichtingscongres\noprichtingsvergunning\noproepbrief\noproepfiche\nopruimbeurt\nopruimdag\nopruimwoede\nopslagapparatuur\nopslagdruk\nopslageenheid\nopslagfaciliteit\nopslaggebouw\nopslaglocatie\nopslagmethode\nopslagvolume\nopslagvoorziening\nopsporingslijst\nopsporingstaak\nopstandingskracht\nopstandingslichaam\nopstartpagina\nopstartperiode\nopstartscherm\nopstartschijf\nopstelpunt\nopstelruimte\nopstelterrein\noptiestrategie\nopusnummer\nopvangdag\nopvanginrichting\nopvangkamer\nopvanglocatie\nopvangzak\nopvoedingscursus\nopvoedingskamp\nopvoedingsklimaat\nopvoedingsproject\nopvoedondersteuning\nopvolgersplaats\nopvolgingsplanning\nopwekkingsbeweging\nopwekkingscapaciteit\nopwekkingslied\nopzeggingsbrief\nopzeggingsgrond\nopzegperiode\nordemaatregel\nordeningsmodel\nordeningsplan\nordeningsrecht\norderafhandeling\nordersysteem\norderwaarde\nordetermijn\nordewacht\norgaanschade\norgaanstelsel\norganisatiebelang\norganisatiecriminaliteit\norganisatiekundige\norganisatieontwerp\norganisatieplan\norganisatieteam\norgelbank\norgelcultuur\norgelfonds\norgelgalerij\norgelkas\norgelles\norgelliteratuur\norgelpartij\norgelwerk\noriginaliteitsprijs\noriëntatieprijs\norkestband\norkestdirecteur\norkestdirectie\nouderbegeleiding\nouderengeneeskunde\nouderenomroep\nouderensoos\nouderenvervoer\noudergroep\nouderhulp\nouderinitiatief\nouderkamer\noudermoord\nouderrol\noutplacementtraject\noutputsturing\novengrill\novenreiniger\novenrooster\novenruimte\noventijd\noverblijfmoeder\noverdrukventiel\novergangsmaand\novergangsmodel\novergangsritueel\novergangsweerstand\noverheidsbeslag\noverheidscensuur\noverheidsdaad\noverheidsgeweld\noverheidskorting\noverheidsland\noverheidsparticipatie\noverheidsregelgeving\noverheidstewerkstelling\noverheidsverantwoordelijkheid\noverlastproblematiek\noverlastvergunning\noverlegcommissie\noverlegregeling\noverlevingsduur\noverlevingsgedrag\noverlevingsmechanisme\noverlevingstijd\noverlijdensaangifte\noverlijdenskans\noverlijdensoorzaak\noverlijdensregister\noverlijdensrisicodekking\noverlijdensschade\novernachtingsadres\novernamedatum\noverschrijvingstermijn\noverstapkosten\noverstapservice\noverstapstation\noverstrekken\noverstrekking\novervalknop\noverwinningsleven\noverwinningspunt\noverwinningsspeech\noverwinningstoespraak\noxidelaag\nozonvorming\npaalrot\npaardengek\npaardenkar\npaardenlichaam\npaardenman\npaardenmond\npaardenrug\npaardensector\npaardenshow\npaardenstoet\npaardenwei\npaardrijtocht\npaarseizoen\npaasakkoord\npaasboom\npaasbult\npaaskermis\npaaskonijn\npaaslunch\npaasmaaltijd\npaasmis\npaasmysterie\npaasverhaal\npaasverlof\npachtrecht\npadenstructuur\npaginaset\npaginatitel\npakjesboot\npakketkorting\npakketprijs\npakketselectie\npakketsoftware\npaleispoort\npaleizencomplex\npalingroker\npalingvisserij\npallettruck\npalletwagen\npalmvet\npancreaskanker\npandabeer\npandeigenaar\npanelonderzoek\npaniekknop\npaniekstemming\npannenkoekbeslag\npannenkoekenbeslag\npannenkoekenmeel\npannenset\npapaveroogst\npapaverplant\npapierfabricage\npapiergebruik\npapierlade\npapiertafel\npapierverspilling\nparallelexport\nparallelhandel\nparallelsessie\nparcoursmeester\nparcoursverkenning\nparfumwinkel\nparingsgedrag\nparingstijd\nparkbeheerder\nparketwoordvoerster\nparkgedeelte\nparkmanager\nparkoersbeschrijving\nparkoersbouwer\nparkoersmeester\nparkvijver\nparkzone\nparochiefeest\nparochieherder\nparochieverband\nparticipatiebeleid\nparticipatiebudget\nparticipatiecultuur\nparticipatiedecreet\nparticipatietop\nparticipatietraject\npartijcommissie\npartijconventie\npartijcultuur\npartijendemocratie\npartijkeuring\npartijkleur\npartijlandschap\npartijleidster\npartijvoorkeur\npartijwoordvoerder\npartneralimentatie\npartnernetwerk\npartnerschool\npartyband\npartyboot\npartyscene\npartyschip\npasfotoregistratie\npaslezer\npasnummer\npasovergang\npaspoorthouder\npaspoortkwestie\npassagetijd\npassagiersaanbod\npassagierscompartiment\npassagiersgedeelte\npassagiersvaart\npassagierszijde\npasstuk\npastadeeg\npastamaaltijd\npastaparty\npastaschotel\npatatboer\npatatzaak\npatiëntdossier\npatiëntenbeweging\npatiëntenmateriaal\npatiëntenvervoer\npatiëntgericht\npatiëntinformatie\npatiënttevredenheid\npatiëntvriendelijk\npatriottenbeweging\npatroonsorganisatie\npatrouillebasis\npatrouillegang\npausverkiezing\npauzeplaats\npechduivel\npechgeval\npechhulp\npedaalslag\npeervorm\npeesblessure\npeesweefsel\npeilbuis\npeilvak\npeilverhoging\npekelbad\npelgrimskerk\npelgrimsmenu\npelgrimspad\npelgrimstas\npelgrimsweg\npenisplant\npenisvergroting\npennenset\npensioenadvies\npensioenadviseur\npensioenbrief\npensioencontract\npensioencrisis\npensioendekking\npensioenfondsbestuur\npensioenrisico\npensioensituatie\npensioenspaarverzekering\npensioenstaat\npensioentijd\npensioenverevening\nperceelgrens\nperiodestand\npersartikel\npersgeschiedenis\nperskoek\npersmachine\npersmoment\npersonenbus\npersonendemocratie\npersonenkaart\npersonenschade\npersonenvervoerder\npersonenweegschaal\npersoonlijkheidspatroon\npersoonlijkheidstype\nperspectiefnota\nperssector\nperstafel\nperswereld\nperswoordvoerder\nperzikkruid\npestprobleem\npestprotocol\npeterseliewortel\npeuterpuberteit\npeuterzaal\npianolak\npianoman\npianostudie\npianostuk\npianotechniek\npicknickbank\npicknickplek\npicknickset\npiekervaring\npiekspanning\npiekwaarde\npijlenkoker\npijnbestrijder\npijnervaring\npijngedrag\npijngevoeligheid\npijngewaarwording\npijnintensiteit\npijnlijn\npijnplek\npijnpomp\npijnprobleem\npijnprotocol\npijnscore\npijnsignaal\npijnteam\npijpleidingennetwerk\npilotfase\npilotstudie\npilsbier\npinpasfraude\npionverlies\npiramidevorm\npiratenboot\npirateneiland\npiratenfeest\npiratenfestijn\npiratenkapitein\npiratenleven\npiratenmuziek\npiratenvlag\npislink\npisvlek\npitsstraat\npizzabodem\npizzaboer\npizzadoos\npizzaoven\npizzarestaurant\npizzasteen\nplaatdikte\nplaatkant\nplaatsbal\nplaatsbezoek\nplaatscheidsrechter\nplaatsgebondenheid\nplaatshert\nplaatsingskosten\nplaatsingsplan\nplaatsingsprocedure\nplaatsingswedstrijd\nplaatskeuze\nplaatsonderwerp\nplaatstrouw\nplaatswaarde\nplafondplaat\nplafondventilator\nplaklaag\nplakoorlog\nplakploeg\nplakrand\nplanbaar\nplancapaciteit\nplandrempel\nplanlast\nplantactie\nplantdichtheid\nplantenafval\nplantenbeurs\nplantencentrum\nplantenfilter\nplantengroep\nplantenkeuze\nplantenmest\nplantenzaak\nplantput\nplanttijd\nplantvak\nplanuitwerking\nplasmatelevisie\nplasstop\nplaszuil\nplateauplanning\nplatenbeurs\nplatendeal\nplatenkeus\nplatenkeuze\nplatenpakket\nplatentas\nplavuizenvloer\npleegvergoeding\npleegvoogdij\npleegzus\npleurishekel\nploegachtervolging\nploegenpresentatie\nploeggeest\nploeglichaam\nploegopstelling\nploegvoorstelling\nploegwerk\nplofkip\nplooival\nplooivorming\nplotlijn\nplottwist\npluimveevleessector\nplusklas\nplusremise\npodiumdichter\npodiumgeluid\npodiumpoëzie\npodiumvrees\npodiumwagen\npoelkikker\npoepbroek\npoeplucht\npoetsdienst\npoetsploeg\npoetswerk\npokeravond\npokerhand\npokersite\npokertafel\npokertoernooi\npokerwereld\npolitiebaas\npolitiebevel\npolitiebureel\npolitiecodex\npolitiecontact\npolitiedag\npolitiefoto\npolitiemissie\npolitiemotor\npolitiemuseum\npolitieploeg\npolitieroman\npolitieterrein\npolitietoren\npolitietraining\npolitieverklaring\npolitieverslag\npolstering\npolyesterplamuur\npompcapaciteit\npompelmoessap\npompgebouw\npompkracht\npompprijs\npompput\npompwagen\npompwerking\npontbaas\npoortnummer\npoorttoren\npoortwachtersmodel\npootgoedteelt\npoppenkastspel\npopulatiebeheer\npopulatiegroei\npopulatieniveau\npopulatieontwikkeling\npornoacteur\npornoboer\npornolijf\npornoverslaving\nportefeuillehoudersoverleg\nportfoliomanagement\nportiegrootte\nportierswoning\nportrettekening\npositiestelsel\npostbestuur\npostblokkade\npostcodecheck\nposteractie\nposterboy\npostercampagne\npostfris\nposthouder\npostmoderniteit\npostproductie\npostpunt\npostregistratie\npostroute\npostsysteem\npostvat\npostvolume\npostwinkel\npostzegelformaat\npostzegelhandelaar\npostzegelvel\npostzegelvereniging\npotentiepil\npotentieverhogend\npotmateriaal\npotremise\npotsierlijkheid\npoweranalyse\npowerbox\npowerknop\npowernap\npoëzielezer\npoëzieslag\npraatsessie\nprachtgebouw\nprachtland\nprachtlocatie\nprachtmens\nprachtnummer\nprachtplaat\nprachtstad\nprachtverhaal\nprachtvoorbeeld\npresentatiedag\npresentatieduo\npresentatiegids\npresentatielaag\npresentatiemap\npresentatieteam\npresentatiewijze\npretsigaret\npreventiebeginsel\npreventiecheck\npreventiedienst\npreventiemiddel\npreventiestrategie\npreventiewerk\nprijsdiscriminatie\nprijsduif\nprijsherziening\nprijsimago\nprijsinstrument\nprijsnummer\nprijsplafond\nprijsstrategie\nprijstabel\nprijzencircus\nprijzencommissie\nprijzenschema\nprijzensysteem\nprijzentafel\nprikpen\nprikzuster\nprinsendom\nprinsenverkiezing\nprinsessenfeest\nprinsessenjurk\nprinsverkiezing\nprintbaar\nprinterinkt\nprinterkabel\nprinterpapier\nprinterpoort\nprintersoftware\nprinterstuurprogramma\nprintknop\nprintkosten\nprintmedia\nprintpapier\nprintserver\nprintservice\nprioriteitenplan\nprivaatbezit\nprivacybelang\nprivacycommissie\nprivacyrecht\nprivacyschending\nprivacywaakhond\nprivatiseringsgolf\nprivéfeest\nprivéfirma\nprivégebied\nprivégedeelte\nprivékapitaal\nprivékluis\nprivékwestie\nprivémarkt\nprivéruimte\nprivéstrand\nprivétijd\nprivétuin\nprivézwembad\nprobleemeigenaar\nprobleemhuid\nprobleemveld\nprobleemverkenning\nprocedureregeling\nprocessorcapaciteit\nprocessorkracht\nprocessorsnelheid\nprocessortijd\nproducentenverantwoordelijkheid\nproductbegroting\nproductbescherming\nproductcatalogus\nproductconcept\nproductdesign\nproductencatalogus\nproductenportfolio\nproductenraming\nproductgebonden\nproductgebruik\nproductgewicht\nproductidee\nproductiebeheersing\nproductiebudget\nproductiebureau\nproductiecel\nproductieconcept\nproductiefunctie\nproductiekant\nproductiekwaliteit\nproductiemachine\nproductieomvang\nproductieorder\nproductieoverschot\nproductiepark\nproductieperiode\nproductieplaats\nproductieploeg\nproductiepotentieel\nproductiesite\nproductiesteun\nproductieveld\nproductiezone\nproductintroductie\nproductketen\nproductkeuze\nproductlevenscyclus\nproductniveau\nproductomschrijving\nproductpagina\nproductprijs\nproductsoort\nproductspecificatie\nproductstroom\nproductstructuur\nproductverbetering\nproductverkoop\nproefavond\nproefbank\nproefbehandeling\nproefberekening\nproefdag\nproefdiervrij\nproefduik\nproefgroep\nproefronde\nproefsessie\nproefsleuvenonderzoek\nproefstier\nprofieldiepte\nprofielfoto\nprofileringsruimte\nprogrammabeheer\nprogrammafolder\nprogrammagebied\nprogrammagroep\nprogrammalijn\nprogrammalijst\nprogrammanaam\nprogrammaniveau\nprogrammanummer\nprogrammaplan\nprogrammarekening\nprogrammateam\nprogrammatekst\nprogrammaterrein\nprogrammator\nprogrammeerfout\nprogrammeerkennis\nprogrammeermodel\nprogrammeeromgeving\nprojectadviseur\nprojectbegroting\nprojectbeheersing\nprojectbudget\nprojectcoördinatie\nprojectcyclus\nprojectdeel\nprojectdefinitie\nprojectdirectie\nprojectdocumentatie\nprojectdoelstelling\nprojectduur\nprojectenoverzicht\nprojectfiche\nprojecthouder\nprojectidee\nprojectievlak\nprojectinformatie\nprojectinrichting\nprojectjaar\nprojectkoor\nprojectlocatie\nprojectnaam\nprojectnummer\nprojectomgeving\nprojectomschrijving\nprojectonderdeel\nprojectondersteuning\nprojectopdracht\nprojectoproep\nprojectopzet\nprojectpagina\nprojectportfolio\nprojectstructuur\nprojectverslag\nprojectvoortgang\nprojectvorm\nprojectwerking\nprojectzone\npronkrol\nprooivis\nproportionaliteitsbeginsel\nprostitueebezoek\nprostitutiebezoek\nprostitutiesector\nprovinciedecreet\nprovinciedomein\nprovinciegenoot\npsalmenoproer\npsalmtekst\npuberdochter\npubergedrag\npuberjongen\npubliciteitsdienst\npuddingbuks\npulsgenerator\npunkpop\npuntbelasting\npuntbron\npuntenboek\npuntenplan\npuntenverdeling\npuntenverschil\npuntenwinst\npuntenwolk\npuntmutatie\npunttang\npupillenteam\npupilverwijding\npureeknijper\npurperverkoopster\npuzzelboek\nquotumsysteem\nraadplaat\nraadscommissievergadering\nraadselwoord\nraadspel\nraambediening\nraamplan\nraamprostituee\nraamschildering\nraapzaadolie\nrabarbertaart\nracecoureur\nracedag\nracefietser\nracemonster\nracemotor\nraceronde\nraceseizoen\nracewereld\nradiobedrijf\nradiocarrière\nradiochip\nradiocollega\nradiodebat\nradiodocumentaire\nradiogebied\nradiogeschiedenis\nradiohoogtemeter\nradioland\nradiopakket\nradiopost\nradioprogrammering\nradioschip\nradiosector\nradiostem\nradiosysteem\nradiotak\nradiotechnicus\nradiowerk\nrailgoederenvervoer\nrailruwheid\nrailspiraal\nrailveiligheid\nraketgeleerde\nraketinslag\nrakettenregen\nrallyseizoen\nrallysprint\nrampenbeheersing\nrampengebied\nrampenkabinet\nrampseizoen\nramptype\nrandaarde\nrandbeveiliging\nrandinformatie\nrandprogramma\nrangeerstation\nrapportageperiode\nrapportvergadering\nrapsong\nrasbeeld\nrasbeschrijving\nrasgebonden\nrasgroep\nraskat\nraspoliticus\nrassengeest\nrassenkeuze\nrasvermenging\nrayonarchitect\nreactiedraad\nreactieforum\nreactiekoppel\nreactiemengsel\nreactiemodule\nreactiemogelijkheid\nreactienota\nreactiepagina\nreactieruimte\nreactietermijn\nreactieveld\nreactievergelijking\nreceptieruimte\nrechtbankdrama\nrechtbankverslaggever\nrechtenbeheer\nrechtenopleiding\nrechtgeleide\nrechtmatigheidstoets\nrechtsbackpositie\nrechtsbron\nrechtseconomie\nrechtseenheid\nrechtshandigheid\nrechtsleven\nrechtsoverweging\nrechtspersonenrecht\nrechtspoot\nrechtspreker\nrechtsschool\nrechtssituatie\nrechtsstaatgedachte\nrechtsstrijd\nrechtszekerheidsbeginsel\nrechttrekking\nrechtvaardigheidsindex\nrechtvaardigingsleer\nreclamebelasting\nreclamemail\nreclamemast\nreclamepaneel\nreclamering\nreclamestudio\nreclametelevisie\nreclamevergunning\nreclamevorm\nreclamewerk\nrecreatiebeleid\nrecreatiebranche\nrecreatiefunctie\nrecreatiegemeente\nrecreatiemeer\nrecreatieprogramma\nrecreatieteam\nrecreatiezone\nredactiebeleid\nredactiecomité\nredactieruimte\nredactievloer\nreddingsdeken\nreddingsfonds\nreddingshond\nreddingssteun\nredeneerlijn\nredeneervermogen\nrederijkerstoneel\nreductiepotentieel\nreductieprogramma\nreekszege\nreferentiearchitectuur\nreferentiedocument\nreferentielijn\nreferentiemethode\nreferentieniveau\nreferentiescenario\nreferentiestelsel\nreferentievlak\nreferentiewerk\nreflectieperiode\nreflectieverslag\nregelapparaat\nregelmatigheidscriterium\nregelmechanisme\nregelnummer\nregelovertreding\nregelwaarde\nregenboogbrug\nregenboogvlag\nregendouche\nregenhoes\nregenplas\nregenstorm\nregentenklasse\nregentenpartij\nregentenstand\nregenwaterafvoer\nregenwaterput\nregenwaterriool\nregeringsbron\nregeringshoofd\nregeringskliek\nregeringsorganisatie\nregeringsplan\nregeringsstelsel\nregieruimte\nregiestoel\nregiewagen\nregimeverandering\nregimewissel\nregimewisseling\nregiodag\nregiodivisie\nregiogebonden\nregiomarketing\nregioplan\nregiovergadering\nregisseursrol\nregisseursstoel\nregisterbestand\nregistergoed\nregistersleutel\nregistratiebalie\nregistratiecode\nregistratiecontract\nregistratiedatum\nregistratiedossier\nregistratiegraad\nregistratiehouder\nregistratiepagina\nregistratieperiode\nregistratieverplichting\nreglementencommissie\nregressielijn\nregressiemodel\nregresvordering\nreinigbaar\nreinigingsbeurt\nreinigingskuur\nreinigingsmelk\nreinigingsmethode\nreinigingssysteem\nreinigingsvloeistof\nreinigingswater\nreisadviseur\nreisauto\nreisbegeleidster\nreiscomfort\nreiscommissie\nreisdatum\nreisgenootschap\nreisgenot\nreiskaart\nreispakket\nreispartner\nreisplanning\nreissite\nreistempo\nreistijdverwachting\nreizigersdienst\nrekenhulp\nrekeningafschrift\nrekeningcommissie\nrekeningstelsel\nrekenmethodiek\nrekenmodule\nrekenniveau\nrekenprobleem\nrekenregel\nrekentool\nrelatiebeding\nrelatiebeheersysteem\nrelatiebestand\nrelatiebreuk\nrelatiedag\nrelatiegericht\nrelatieleven\nrelatiemagazine\nrelatiemanager\nrelatiemarketing\nrelatiepatroon\nrelatietest\nrelatietherapeute\nrelaxstoel\nreligiegeschiedenis\nremdruk\nremhendel\nremmanoeuvre\nremstof\nremtechniek\nremtrommel\nremvertraging\nremwerk\nremzuiger\nrendementsgrondslag\nrennerspark\nrenovatiebeurt\nrentebox\nrentedeel\nrentekorting\nrenteopslag\nrenterisiconorm\nrentestap\nrentetoelage\nrentevastperiode\nrentevergadering\nreparatieprogramma\nreparatieset\nreparatietijd\nreparatiewerkplaats\nrepertoirelijst\nrepetitieavond\nrepetitiedag\nrepetitiekot\nrepetitieweek\nreportagefotografie\nreportageploeg\nreputatiemanagement\nresearchmaster\nreservebatterij\nreservefiets\nreservekledij\nreservekleding\nreserveleger\nreservemateriaal\nreservepositie\nreserveteam\nreservevaluta\nrespectfilter\nresponsgroep\nressortcommandant\nrestafvalzak\nrestantbedrag\nrestaurantuitbater\nrestaurantweek\nrestauratiedossier\nrestauratiemateriaal\nrestauratiesector\nrestauratiewagon\nrestgas\nresthout\nrestoren\nrestrisico\nrestschade\nrestsuiker\nresttijd\nrestwater\nresultaatbepaling\nresultaatbestemming\nresultaatdeling\nresultatenpagina\nrevisieverzoek\nreünieconcert\nrichtbedrag\nrichtingsverandering\nrichtlijnontwikkeling\nrichtschema\nridderburcht\nridderliteratuur\nverslagdatum\nverstikkingsgevaar\naluminiumtak\nberoepsfase\nbezoekerskaart\nbudgetsteun\nconsumptieafval\nhelikoptercrash\nhuurkluis\ninspanningstolerantie\ninspanningstraining\ninspanningsvermogen\ninternetterminal\nlichtzwaard\nmannenlijn\noverheidsaansprakelijkheid\npakketbezorger\npodiumtraining\nprijsopbouw\npuzzelgame\nreclamefotograaf\nridderpoëzie\nridderslot\nriddertoernooi\nridderzuring\nriemspanning\nrietstok\nrietteelt\nrijafstand\nrijangst\nrijbak\nrijcyclus\nrijdbaar\nrijdynamiek\nrijenafstand\nrijenbemesting\nrijgeschiktheid\nrijgeschiktheidsattest\nrijhal\nrijhelft\nrijhouding\nrijkenlijst\nrijksadviseur\nrijksbudget\nrijksleger\nrijkspresident\nrijksvaccinatieprogramma\nrijksverantwoordelijkheid\nrijkswerf\nrijlijn\nrijmvorm\nrijnummer\nrijpositie\nrijsimulator\nrijskast\nrijstcultuur\nrijstdistrict\nrijstijd\nrijstkoker\nrijstmengsel\nrijstplant\nrijstschotel\nrijstsector\nrijstsoort\nrijstwafel\nrijtaak\nrijtechniek\nrijtechnisch\nrijtuigbak\nrijvaardigheidstraining\nrijwielgedeelte\nrijwielzaak\nrimpelbehandeling\nrimpelroos\nrimpelvorming\nringdrager\nringgracht\nringmaat\nringmap\nringmeester\nringnummer\nringonderzoek\nringtraining\nringvorm\nrioleringsnetwerk\nrioolbeheer\nrioolgemaal\nrioolheffing\nrioolnet\nrioolschuif\nrisicoaansprakelijkheid\nrisicobeleving\nrisicobenadering\nrisicobepaling\nrisicobeperking\nrisicobereidheid\nrisicobewustzijn\nrisicobudget\nrisicocommunicatie\nrisicometer\nrisicopreventie\nrisicoreservering\nrisicoschatting\nrisicosfeer\nrisicosolidariteit\nrisicotermijn\nrisicoverdeling\nrisicoverevening\nrisicoverzekering\nrisicozone\nriskmanagement\nritsvak\nrittenkaart\nrittenregistratie\nrivierafvoer\nrivierboot\nrivierdonderpad\nrivierfront\nrivierkant\nrivierkleilandschap\nrivierovergang\nriviersysteem\nriviertraject\nrivierverruiming\nriviervlakte\nrivierwaterstand\nrobotmissie\nrobottechnologie\nrockalbum\nrockgeschiedenis\nrockrally\nrockstar\nrocktempel\nrockwereld\nroddelkrant\nroedeverdeling\nroeruitslag\nroestrood\nroetaanslag\nroetdauw\nroetmeting\nrokershol\nrokerskamer\nrokerskerk\nrokerslong\nrokjesdag\nrollenbaan\nrollerbank\nrolstoelafhankelijk\nrolstoelgebonden\nrolstoelgebruik\nrolstoelhockey\nrolstoellift\nrolstoelpatiënt\nrolstoeltaxi\nromanwereld\nrondkarren\nrondshoppen\nrondspant\nrondtoer\nrondworm\nrondzit\nroodlof\nroodwangschildpad\nroodzwenkgras\nroofkapitalisme\nroofmijt\nrooftas\nroofvisseizoen\nroofvisser\nrooibosthee\nrooimachine\nrookaanslag\nrookafvoer\nrookcabine\nrookcafé\nrookgasafvoer\nrookgedeelte\nrookgenerator\nrookgeur\nrookhok\nrookkanon\nrookplek\nrookpolitie\nroommengsel\nroosterwijziging\nrotorkop\nrotsengte\nrotsgebergte\nrotslijster\nrotsmassa\nrotsmassief\nrotsmuur\nrotspad\nroutebepaling\nrouteberekening\nroutegids\nroutekennis\nroutekeuze\nrouteplan\nroutewijziging\nrouwbericht\nrozenboog\nrozenfamilie\nrozenkwarts\nrubberfabriek\nrubberfolie\nrubberring\nruggenmergkanaal\nruggenmergletsel\nruggenmergvloeistof\nruiladvertentiesite\nruileconomie\nruilfamilie\nruilkring\nruilmateriaal\nruilplan\nruimteafval\nruimteagentschap\nruimtebeleving\nruimtedruk\nruimtehaven\nruimtekavel\nruimtemeetkunde\nruimteproductiviteit\nruimtestaat\nruimtevaartbedrijf\nruimtevaartbeleid\nruimtevaartsector\nruimteverlies\nruimtevraag\nruisvrij\nruitbreuk\nruitersportzaak\nruitmotief\nruitverdeling\nrundleder\nrundleer\nrundvleessalade\nrupsbaan\nrupskraan\nrustgever\nrusthartslag\nrustmassa\nrustpositie\nrustruimte\nrustweek\nröntgendoorlichting\nsafaritruck\nsaffierglas\nsaladebar\nsaladebuffet\nsalarisadministrateur\nsalarisbedrag\nsalarisgebouw\nsalarisgesprek\nsalarisnummer\nsalarispakket\nsalarisrekening\nsalonsocialisme\nsamenlevingscultuur\nsamenwerkingsbeleid\nsamenwerkingsplatform\nsamenwerkingsstrategie\nsamenwerkingsstructuur\nsaneringsbewindvoerder\nsaneringsbijdrage\nsaneringskrediet\nsaneringsplicht\nsapkuur\nsashuis\nsatellietsignaal\nsatelliettechnologie\nsatellietverkeer\nsaunabezoek\nsaunacabine\nsaunacomplex\nsausdikte\nscanbaar\nscenarioanalyse\nscenariostudie\nschaafplek\nschaakavond\nschaakgebied\nschaakseizoen\nschaalfactor\nschaalscore\nschaambot\nschaargebit\nschaatscoach\nschaatsijs\nschaatskoorts\nschaatsles\nschaatsplezier\nschaatspret\nschaatsteam\nschaatstechniek\nschaatsweer\nschadeaangifteformulier\nschadeafhandeling\nschadeafwikkeling\nschadebedrijf\nschadebeeld\nschadeberekening\nschadebesluit\nschadedossier\nschadedrempel\nschadeherstelbedrijf\nschadehersteller\nschadekosten\nschademarge\nschademodel\nschadepreventie\nschadespoor\nschadezaak\nschakelbak\nschakelbewijs\nschakelgedrag\nschakelindicator\nschakeljaar\nschakelketting\nschakelmodule\nschakelpook\nschakelunit\nschathuis\nschattingsbesluit\nschattingsverslag\nschattingswijziging\nschedelfractuur\nschedelomtrek\nschedelpan\nschedelvorm\nscheepsbouwsector\nscheepsmacht\nscheepvaartpolitie\nscheepvaartwereld\nscheerresultaat\nscheidsrechtersbaas\nscheidsrechtersblad\nschelpdiercultuur\nschemerschakelaar\nschenktemperatuur\nschennispleger\nschepbek\nschepenhuis\nschepenmandaat\nschepenzaal\nschepenzetel\nscherfvest\nschermbeveiliging\nschermlezer\nschermopbouw\nschermrooster\nschermruimte\nschermvoorbeeld\nscherpstelpunt\nschietbuis\nschietpositie\nschietpunt\nschietstand\nschietwedstrijd\nschietwerk\nschijfaandrijving\nschijfcontrole\nschijfkopie\nschijfstation\nschijfwinst\nschijndracht\nschijntolerantie\nschijnvrijheid\nschijnzelfstandigheid\nschijthekel\nschildersgilde\nschilderspalet\nschilderstape\nschildhoofd\nschildklieraandoening\nschildklierafwijking\nschildklierfunctiestoornis\nschildklierkanker\nschildklierweefsel\nschildklierwerking\nschildklierziekte\nschildwachtklier\nschimmelhengst\nschimmelnagel\nschimmelpluis\nschippersfamilie\nschippersvereniging\nschlagermuziek\nschoenadvies\nschoenencollectie\nschoenenkast\nschoenenketen\nschoenenlijn\nschoenenpoetser\nschokbelasting\nschokbuis\nscholencompetitie\nscholenveld\nscholenvis\nscholierensite\nscholingsaanbod\nscholingsbeleid\nscholingsbudget\nscholingsfonds\nscholingstraject\nschommelpaard\nschoolbal\nschoolband\nschoolbordverf\nschoolcommissie\nschooldokter\nschooldomein\nschooldrama\nschoolervaring\nschoolfotograaf\nschoolgenoot\nschoolgeschiedenis\nschoolgroep\nschoolhek\nschoolinfrastructuur\nschoolingang\nschoolkalender\nschoolkoor\nschoolmusical\nschoolnetwerk\nschoolopdracht\nschoolpraktijk\nschoolrekening\nschoolrestaurant\nschoolreünie\nschoolsite\nschoolverandering\nschoolverlating\nschoolverpleegkundige\nschoolverzekering\nschoolwandkaart\nschoonheidsindustrie\nschoonmaakhulp\nschoonmaakonderhoud\nschoonmaakproduct\nschoonmaakrooster\nschoonmaakservice\nschoorsteenkanaal\nschoppartij\nschorsingsbesluit\nschorsingsperiode\nschorsingsverordening\nschotkracht\nschotpercentage\nschotpoging\nschouwarts\nschouwkap\nschrijfbaar\nschrijfbord\nschrijfclub\nschrijfdans\nschrijfdocent\nschrijfervaring\nschrijfgereedschap\nschrijfhand\nschrijfonderzoek\nschrijfopleiding\nschrijfproef\nschrijfrichting\nschrijfruimte\nschrijfschrift\nschrijfsleutel\nschrijfsnelheid\nschrijftolk\nschrijftraining\nschrijversbestaan\nschrijversbond\nschrijversvak\nschrikdraadapparaat\nschrobbeurt\nschroefasafdichting\nschroefwater\nschroefworm\nschubkarper\nschubvis\nschuifkracht\nschuifschakelaar\nschuilnis\nschuimbeton\nschuimparty\nschulddienstverlening\nschuldendienst\nschuldensanering\nschuldhulp\nschuldhulpverlener\nschuldoffer\nschuldopbouw\nschuldpapieren\nschuldproblematiek\nschuldsituatie\nschuldslavernij\nschuldverklaring\nschuldvrij\nschurfthekel\nschutterslokaal\nschuttersvereniging\nschuttingdeur\nschuurdak\nschuurfeest\nschuurkerk\nschuurwerk\nscoreformulier\nscoreloos\nscoresysteem\nscoutingapparaat\nscoutinggebouw\nscoutingkamp\nscoutslokaal\nscreeningsinstrument\nscreeningstest\nscriptblok\nscriptcode\nscriptiebegeleider\nscriptieonderwerp\nscriptieonderzoek\nsectiechef\nsectieleider\nsectieraad\nsectorakkoord\nsectorbestuur\nsectorinstituut\nsectorkeuze\nsectormodel\nsectororganisatie\nsectorovereenkomst\nsectoroverleg\nsectorwerkstuk\nsegmentatiebasis\nseinsysteem\nseizoentafel\nseksbeleving\nseksfeest\nseksgebied\nseksgodin\nsekshandel\nseksmoraal\nsekspop\nseksslaaf\nseksslavin\nsekstape\nseksverslaafde\nselectiebalk\nselectiecomité\nselectiefunctionaris\nselectiegesprek\nselectiegroep\nselectiekamer\nselectiemiddel\nselectiepakket\nselectieprotocol\nselectiescherm\nselectietoets\nsensibiliseringsactie\nserveerschaal\nserveervak\nserverbeheer\nserveromgeving\nservicebus\nservicedruk\nservicegebied\nservicekostenoverzicht\nservicekwaliteit\nservicemanagement\nserviceovereenkomst\nserviceteam\nservicewagen\nservieskast\nsfeeractie\nsfeerfoto\nsfeerhaard\nsfeerlicht\nsfeerverhaal\nsfeerverhogend\nsfeerverslag\nshockschade\nshopgedrag\nshopmanager\nshortlease\nshowavond\nshowballet\nshowbeest\nshowgroep\nshowstopper\nshowteam\nshowwereld\nshuttledienst\nshuttlevlucht\nsieraardewerk\nsieradenparty\nsierbeslag\nsierboom\nsierdraad\nsiergrind\nsiermetselwerk\nsierrand\nsiersmeedwerk\nsierteeltsector\nsigarenmakerij\nsigarettenlucht\nsigarettenreclame\nsignaalgever\nsignaalverlies\nsignaleringsfunctie\nsignaleringstaak\nsinaasappelbloesem\nsinaasappelolie\nsinaasappelrasp\nsinaasappelsaus\nsingelgracht\nsinglepartij\nsinterklaascadeau\nsinterklaastijd\nsinusvorm\nsitebeheerder\nskeelersport\nskeletstatusfoto\nskibox\nskibroek\nskicentrum\nskiclub\nskidag\nskihal\nskikleding\nskilengte\nskiplezier\nskischool\nskiverlof\nslaapadres\nslaapcyclus\nslaapdagboek\nslaapgas\nslaaphok\nslaaphormoon\nslaaphut\nslaapkamermuur\nslaapperiode\nslaaprijder\nslaapritueel\nslaapschuld\nslaapsysteem\nslaaptent\nslaaptoestand\nslaapverstoring\nslaapzolder\nslachtleeftijd\nslachtvlees\nslachtvloer\nslagaderwand\nslagbeweging\nslagersvak\nslaggitarist\nslaglengte\nslagplaat\nslagploeg\nslagzet\nslakkentempo\nslakkenvraat\nslangenmuur\nslangenvrouw\nslaschaal\nslasoort\nslechtgezind\nsleepdoek\nsleeplijn\nsleepspoor\nsleeptheorie\nsleepwerk\nsleutelbeheer\nsleutelbewaarder\nsleutelhouder\nsleutelkaart\nsleutelmaker\nsleutelpaar\nsleutelprikkel\nsleutelscène\nsleutelstad\nsleuteltekst\nsleutelwerk\nsliblaag\nslibvang\nslijmproductie\nslijmspoor\nslijmvlieslaag\nslijmvliesontsteking\nslijmvorming\nslijpwerk\nslikfoto\nslikreflex\nslokdarmontsteking\nsloopbesluit\nslooplocatie\nsloopplan\nsloopsubsidie\nslootpeil\nslotbel\nslotbrug\nslotconferentie\nslotenpatroon\nslotevenement\nslotgala\nslotgedeelte\nslotgedicht\nslotkapel\nslotkoor\nslotmachine\nslotmatch\nslotmoment\nslotplaat\nslotshow\nslotspeeldag\nslotstelling\nslottoren\nslottuin\nslotviering\nslotwedstrijd\nslotwet\nsluikverkeer\nsluimerstand\nsluipverbruik\nsluisbrug\nsluiscomplex\nsluishoofd\nsluiterknop\nsluitingsperiode\nsluitlaken\nsluitmechanisme\nsluitsysteem\nslurptaks\nsmaadzaak\nsmaakervaring\nsmaakevolutie\nsmaakexplosie\nsmaakontwikkeling\nsmaakoordeel\nsmaaktest\nsmaakverlies\nsmaakvermogen\nsmaakvoorkeur\nsmaakwaarneming\nsmartlappenkoor\nsmeerput\nsmeerworst\nsnaarlengte\nsnackbareigenaar\nsnackkar\nsnackwagen\nsneeuwballengevecht\nsneeuwluipaard\nsneeuwmobiel\nsneeuwsituatie\nsneeuwvlakte\nsneeuwzekerheid\nsnelheidscamera\nsnelheidsregime\nsnelheidstest\nsnelheidstraining\nsnelheidstrein\nsnelheidsverandering\nsnelheidsverlaging\nsnelheidsverlies\nsnelwegverkeer\nsnertweer\nsnijafval\nsnijbloemenvoedsel\nsnijgereedschap\nsnijgroen\nsnijkop\nsnijsnelheid\nsnijwonde\nsnoepfabriek\nsnoepfabrikant\nsnoeppot\nsnoeptrommel\nsnoepzak\nsnorscooter\nsoapacteur\nsoepdieet\nsoeppost\nsoftwarearchitectuur\nsoftwareoplossing\nsoftwareplatform\nsoftwareprobleem\nsoftwareproject\nsokkenwol\nsoldatenmantel\nsolidariteitspact\nsoloconcert\nsologitaar\nsolonummer\nsoortaanduiding\nsoortenbeleid\nsoortendiversiteit\nsoortenlijst\nsoortgroep\nsorteerhal\nsouldiva\nsounddesign\nspaarkascommissie\nspaarperiode\nspaarrichtlijn\nspaarstand\nspaarvariant\nspaarvermogen\nspambestrijding\nspambox\nspammail\nspamrun\nspamverbod\nspanband\nspanlak\nspanningsniveau\nspanningsval\nspanningsverhouding\nspantenplan\nspatzeil\nspecerijenmengsel\nspecialisatiegraad\nspecialiteitsbeginsel\nspeculaaspasta\nspeeddate\nspeekseltest\nspeelboerderij\nspeelclub\nspeeldatum\nspeeldrift\nspeelervaring\nspeelgebied\nspeelgoedfabriek\nspeelgoedgeweer\nspeelgoedkast\nspeelgoedkist\nspeelgoedmarkt\nspeelkleed\nspeellocatie\nspeelniveau\nspeelobject\nspeelpark\nspeelsessie\nspeelsteen\nspeeltrommel\nspeelvolgorde\nspeelvreugde\nspeelwaarde\nspeelzone\nspeerdistel\nspekmengsel\nspeksteenkachel\nspektakelmaatschappij\nspelaanbod\nspelbegeleider\nspelbegeleiding\nspelbesturing\nspeldag\nspelersaantal\nspelershotel\nspelerskaart\nspelersvolgorde\nspelersvrouw\nspelfase\nspelfiguur\nspelhervatting\nspelidee\nspelkamer\nspelletjesavond\nspelletjesmiddag\nspellingonderwijs\nspellingprobleem\nspellingregeling\nspellingswijze\nspelmiddag\nspelnamiddag\nspelomgeving\nspelontwikkeling\nspelritme\nspelstijl\nspeltak\nspeluitleg\nspelverdeelster\nspelverdeling\nspermaproductie\nspieraandoening\nspierafbraak\nspiercontrole\nspiercoördinatie\nspierfunctie\nspierherstel\nspierlaag\nspierontspanning\nspierontwikkeling\nspierpomp\nspierschade\nspierscheur\nspiertest\nspiertraining\nspierversterking\nspierwerking\nspijkerrok\nspinaziemengsel\nspinaziezaad\nspinnenfobie\nspintol\nspionagesoftware\nspiraalbodem\nspiraalstructuur\nspitmachine\nspitsboogvenster\nspitvork\nspleetlamp\nsplitsingsakte\nsplitsingsplan\nsplitsingsvergunning\nspoedarts\nspoedopdracht\nspoedopleiding\nspoedzorg\nspoelbeurt\nspoelmiddel\nspoelsysteem\nsponsordeal\nsponsorformulier\nsponsorpagina\nsponsortocht\nspooraansluiting\nspoorbaas\nspoorbedding\nspoorberm\nspoorelement\nspoorhuis\nspooronderhoud\nspoorontsluiting\nspoorsector\nspoorsloot\nspoorsysteem\nspoorvoertuig\nspoorwiel\nsporenbundel\nsporenplan\nsportavond\nsportbad\nsportbeleidsplan\nsportbeleving\nsportbeweging\nsportbijlage\nsportboek\nsportbranche\nsportcafé\nsportcomité\nsportcommissie\nsportfanaat\nsportfestijn\nsportfiguur\nsportfotograaf\nsportfotografie\nsportfreak\nsportfysiotherapeut\nsporthart\nsporthorloge\nsporthotel\nsportinspanning\nsportkaart\nsportloopbaan\nsportmanagement\nsportmanager\nsportmiddag\nsportmotor\nsportpaard\nsportpakket\nsportparticipatie\nsportpas\nsportprijs\nsportproject\nsportschutterslicentie\nsportschuur\nsportseizoen\nsportspektakel\nsportstand\nsporttape\nsporttest\nsportuitlaat\nsportverdienste\nsportverkiezing\nsportverleden\nsportverslag\nsportvisakte\nsportvloer\nsportwethouder\nsportzomer\nsportzone\nspotlied\nspotmeter\nspotmeting\nspouwisolatie\nspraakherkenningssoftware\nspraakontwikkeling\nspraakprocessor\nspraakproductie\nspraaksoftware\nspraakverstaanbaarheid\nspreeksnelheid\nspreekspoel\nspreeksteen\nspreekstoel\nspriettuig\nspringstaart\nspringwedstrijd\nsprinttoernooi\nsprongbal\nsprookjeslandschap\nsprookjespark\nsprookjessfeer\nsprookjesstad\nsprookjesverhaal\nsprookjesvilt\nspuitboom\nspuitenruil\nspuitflacon\nspuitkop\nspuitlans\nspuitnevel\nspuitplamuur\nspuittechniek\nspuitvloeistof\nstaafkerk\nstaalband\nstaalnijverheid\nstaalsteuncode\nstaartaanzet\nstaartlengte\nstaartploeg\nstaartspits\nstaarttekening\nstaartwiel\nstaatsbureaucratie\nstaatscensuur\nstaatsdwang\nstaatseconomie\nstaatsexamencommissie\nstaatsgeleide\nstaatshotel\nstaatsidee\nstaatsjournaal\nstaatskrant\nstaatskundige\nstaatsmachine\nstaatsmodel\nstaatsoliemaatschappij\nstaatsopbouw\nstaatsopvatting\nstaatsopvoeding\nstaatsradio\nstaatssector\nstaatsuniversiteit\nstaatswinstaandeel\nstadhoudersbrief\nstadhuistoren\nstadsdeelbestuurder\nstadsdeeldichter\nstadsdeelhuis\nstadsdeelniveau\nstadsdeelpolitiek\nstadsdeelraadslid\nstadsdeelstelsel\nstadsdeelwerf\nstadsloop\nstadsvernieuwingsbeleid\nstafarts\nstaffelkorting\nstafkwartier\nstafverzekeringsarts\nstagebegeleidster\nstagebureau\nstagecontract\nstagedocent\nstageklas\nstagemanager\nstageovereenkomst\nstageplan\nstagering\nstageweek\nstakerscomité\nstakingsaftrek\nstalgedeelte\nstalinrichting\nstalklimaat\nstalkster\nstallingsplek\nstalperiode\nstalsysteem\nstalvloer\nstamcertificaat\nstamgod\nstammengebied\nstamnaam\nstamomtrek\nstamrechtvrijstelling\nstandenpartij\nstapagenda\nstapeldol\nstartapparatuur\nstartavond\nstartbod\nstartbonus\nstartconferentie\nstartdeeg\nstartdocument\nstartdosis\nstartersaftrek\nstartersdag\nstartersfunctie\nstartgebied\nstartgerechtigd\nstarthek\nstarthouding\nstarthulp\nstartlicentie\nstartlocatie\nstartlokaal\nstartmoment\nstartpost\nstartprogramma\nstartscherm\nstartschip\nstartset\nstartsnelheid\nstartspeler\nstartstreep\nstartvergadering\nstartzondag\nstationsbuffet\nstationspersoneel\nstationsschip\nstationswijk\nstatuspagina\nsteekincident\nsteekproeftrekking\nsteeksnuit\nsteeldrum\nsteencirkel\nsteenhuis\nsteenkoolcentrale\nsteenkoolindustrie\nsteenstof\nsteenwerk\nsteenzolder\nsteigerbouw\nstekkeuze\nstekpoeder\nstelonderwijs\nstelwerk\nstemacteur\nstemapparaat\nstembeurt\nstemdienst\nstemgewin\nstemhok\nstemhoogte\nstemknop\nstemmenkanon\nstemperiode\nstemuitslag\nstemverlies\nstemvoering\nstemvolk\nsteppegebied\nsteppegras\nsterabonnement\nsteractrice\nsterftegraad\nsterktegraad\nsterkteklasse\nsterreporter\nsterroetdauw\nstervorming\nstervormingsgebied\nsterwaarde\nsteunbestanddeel\nsteunelement\nsteunfractie\nsteunfractielid\nsteunintensiteit\nsteunkaart\nsteunpercentage\nsteunplan\nsteunsysteem\nsteunverband\nsteunvlak\nsteunvulling\nstichtingsdatum\nstichtingsjaar\nstichtingsvergadering\nstickerboek\nstickervel\nstickerverkoop\nstierkikker\nstijfburgerlijkheid\nstijfkloppen\nstijgbuis\nstijgingspotentieel\nstijgtijd\nstijgvlucht\nstijladvies\nstijlgids\nstijlkeuze\nstijlopvatting\nstijltang\nstijlverandering\nstikstofgift\nstikstofkringloop\nstikstofoverschot\nstikstofvoorziening\nstilteruimte\nstimulatietherapie\nstinkstad\nstockbeheer\nstockverkoop\nstoephoer\nstofallergie\nstofconcentratie\nstoffenmarkt\nstoffilter\nstofhinder\nstofkeuze\nstofkleed\nstoflaag\nstofmens\nstofomschrijving\nstofontwikkeling\nstofproductie\nstofwereld\nstofzak\nstofzuigsysteem\nstokbewaarder\nstooftijd\nstookketel\nstooklijn\nstookoliefactuur\nstookoliefonds\nstookolietank\nstookruimte\nstoomapparaat\nstoomdruk\nstoomsleepboot\nstoomsloep\nstoomspuit\nstoomtijdperk\nstoomwezen\nstootbal\nstootkuur\nstootslag\nstoottroep\nstootwil\nstopdatum\nstopkracht\nstoptoets\nstoringsnummer\nstormfront\nstormgod\nstormseizoen\nstortinrichting\nstortmateriaal\nstottertherapeut\nstottertherapie\nstraalmiddel\nstraatanimatie\nstraatauto\nstraatfotografie\nstraathoer\nstraatkunst\nstraatlawaai\nstraatmarkt\nstraatmuziek\nstraatparade\nstraatspeeldag\nstraattaxi\nstraatterrorisme\nstraatversie\nstraatversiering\nstraatwerving\nstrafbeschikking\nstrafboek\nstrafcampagne\nstrafcommissie\nstrafmotivering\nstrafrechtketen\nstrafuitvoeringsrechtbank\nstrafvoorstel\nstralengang\nstralingsblootstelling\nstrandbar\nstrandbed\nstrandbestemming\nstrandbezoek\nstrandbibliotheek\nstrandfuif\nstrandgevoel\nstrandhuis\nstrandpromenade\nstrandrace\nstrandraces\nstrandrit\nstrandseizoen\nstrandtoerisme\nstrandvlakte\nstrandzeilen\nstratenkennis\nstratenlijst\nstreefbeeldstudie\nstreefniveau\nstreefpeil\nstreeftijd\nstreekcultuur\nstreekdracht\nstreekgeschiedenis\nstreekmarkt\nstreeknaam\nstreekomroep\nstreekpact\nstreekwijn\nstreeplijst\nstreeptekening\nstrepenpatroon\nstressbal\nstressbeleid\nstressgebonden\nstressincontinentie\nstresskip\nstressvrij\nstrijdgebied\nstrijdlustigheid\nstrijdplaats\nstrijdwil\nstrijkatelier\nstrijkersensemble\nstrijkkamer\nstrijkservice\nstrijkwinkel\nstripauteur\nstripmuur\nstriptent\nstripverfilming\nstrokenrok\nstrokenzweep\nstromingsrichting\nstronteigenwijs\nstronthoop\nstroomaansluiting\nstroombed\nstroombehoefte\nstroomgroep\nstroomnetwerk\nstroomprofiel\nstroomschok\nstroomstok\nstrottenhoofdkanker\nstrottenhoofdontsteking\nstructuurbouw\nstructuurdecreet\nstructuurplanning\nstructuurregeling\nstructuurschade\nstructuurverbetering\nstruiklaag\nstuclaag\nstucplafond\nstudentenbalie\nstudentenbedrijf\nstudentenbestaan\nstudentenbuurt\nstudentencafé\nstudentenkorting\nstudentenkrant\nstudentenkring\nstudentenmobiliteit\nstudentenpas\nstudentenplatform\nstudentenplein\nstudentenpsycholoog\nstudentenpubliek\nstudentenrekening\nstudentenstatuut\nstudententarief\nstudententeam\nstudentenvertegenwoordiger\nstudentenvertegenwoordiging\nstudentenvisum\nstudentenwerk\nstudentenwijk\nstudieaanbod\nstudiecoach\nstudiegeld\nstudiehandleiding\nstudiekeus\nstudiekeuzebegeleiding\nstudielandschap\nstudieloopbaan\nstudieloopbaanbegeleider\nstudieloopbaanbegeleiding\nstudiemethode\nstudienamiddag\nstudieniveau\nstudieonderdeel\nstudieonderwerp\nstudieopzet\nstudieplaats\nstudiepopulatie\nstudiesecretariaat\nstudiestad\nstudiesyndicaat\nstudietaak\nstudieteam\nstudioapparatuur\nstudiobaas\nstudiogesprek\nstudiomanager\nstudiopersoneel\nstudiosysteem\nstudiotijd\nstudioversie\nstudiowerk\nstuifwater\nstukkenspel\nstuntshow\nsturingsconcept\nsturingsfilosofie\nsturingsmodel\nstuurcorrectie\nstuurdemper\nstuurgroepvergadering\nstuurinformatie\nstuurkracht\nstuurpost\nstuurrooster\nstuursignaal\nstuursysteem\nstuurtas\nstuuruitslag\nstuwband\nsubsidiariteitsprincipe\nsubsidiariteitstoets\nsubsidiebeschikking\nsubsidiebesluit\nsubsidiedossier\nsubsidiejaar\nsubsidiekader\nsubsidiemarge\nsubsidieovereenkomst\nsubsidiepercentage\nsubsidieperiode\nsubsidieperspectief\nsubsidieproject\nsubsidiespons\nsubsidiesystematiek\nsubsidieverlener\nsubsidievorm\nsuccesbeleving\nsucceservaring\nsuddervlees\nsuikerbeleid\nsuikerconcentratie\nsuikerconsumptie\nsuikergebruik\nsuikerlaag\nsuikermassa\nsuikermengsel\nsuikeronderneming\nsuikeroplossing\nsuikerpalm\nsuikerregeling\nsuikerstofwisseling\nsuikerverslaving\nsuikervervanger\nsuikerwafel\nsuperauto\nsuperavond\nsuperbaan\nsuperbus\nsupercompensatie\nsuperdom\nsuperfan\nsupergeil\nsupergoedkoop\nsuperheldin\nsuperhond\nsuperioriteitsdenken\nsuperioriteitswaan\nsuperjaar\nsuperkapitalisme\nsuperkracht\nsuperlijm\nsupermarktkanaal\nsupermarktmanager\nsupernet\nsuperprijs\nsuperras\nsuperronde\nsuperruimte\nsuperspits\nsupersportwagen\nsuperstart\nsupertevreden\nsupertijd\nsupertip\nsupervers\nsupervriendelijk\nsupervrouw\nsupervulkaan\nsuperweek\nsuperweer\nsupportafdeling\nsupportersboulevard\nsupporterscafé\nsupporterslokaal\nsupportersproject\nsupportersvak\nsupportteam\nsurfclub\nsurfles\nsurfmuziek\nsurfpak\nsurfplas\nsurfschool\nsurfspot\nsurfstrand\nsurftocht\nswingmuziek\nsymmetriebreking\nsynapsspleet\nsynodebestuur\nsynthesegas\nsyntheseverslag\nsysteemarchitectuur\nsysteembank\nsysteembelasting\nsysteemeenheid\nsysteemgeheugen\nsysteeminnovatie\nsysteemniveau\nsysteemontwikkelaar\nsysteemovereenkomst\nsysteemstatus\nsysteemvloer\nsysteemwereld\nsysteemwijziging\ntaakbeheer\ntaakgerichtheid\ntaakherschikking\ntaakinvulling\ntaakvenster\ntaaladviesbank\ntaalarmoede\ntaalbeleidsplan\ntaalcultuur\ntaaldeskundige\ntaaldocent\ntaalhandicap\ntaalhulp\ntaalliefhebber\ntaalmateriaal\ntaalmisbruik\ntaalondersteuning\ntaalopleiding\ntaalplezier\ntaalpolitie\ntaalportfolio\ntaalproblematiek\ntaalproductie\ntaalproef\ntaalprogramma\ntaalregime\ntaalregister\ntaalreis\ntaalschool\ntaalstage\ntaalstelsel\ntaalstimulering\ntaalstoornis\ntaaltaak\ntaaltraining\ntaalvaardigheidsniveau\ntaalverkrachting\ntaalverruwing\ntaalversie\ntaalverwarring\ntaalverwerking\ntaalvirtuositeit\ntaalvorming\ntaalvrijheid\ntaartdiagram\ntaartschaal\ntafeldecoratie\ntafelgast\ntafelsuiker\ntafeltennisclub\ntafelversiering\ntakeldienst\ntakendiscussie\ntakkenschaar\ntakkenwal\ntalenregeling\ntalenstudie\ntalentendag\ntalentenshow\ntalentmanagement\ntalgafscheiding\ntalgproductie\ntandartsassistent\ntandartsenpraktijk\ntandartsverzekering\ntandloos\ntandstructuur\ntandweefsel\ntangoshow\ntankbon\ntankervliegtuig\ntankput\ntankstop\ntanktas\ntankwand\ntapasrestaurant\ntapgesprek\ntapverslag\ntariefbeleid\ntariefcontingent\ntariefformule\ntariefindeling\ntariefplan\ntarievenoverzicht\ntarotspel\ntarwegras\ntarwekiemolie\ntarweveld\ntassenmuseum\ntastgevoel\ntastsensor\ntaxibus\ntaxichauffeuse\ntaxidienst\ntaximan\ntaxisector\ntaxiservice\ntaxuskever\nteamsprint\ntechniekonderwijs\ntechniektrainer\ntechniektraining\ntechnologiegebied\ntechnologienoot\ntechnologieontwikkeling\ntechnologieplatform\nteeltgebied\nteeltseizoen\nteeltsysteem\nteelttechniek\nteelttechnisch\nteenblessure\nteenlengte\ntegenbewijsregeling\ntekenblad\ntekenbureau\ntekengrootte\ntekenopdracht\ntekenpakket\ntekensysteem\ntekentaal\ntekentablet\ntekentang\ntekenveld\ntekstblad\ntekstbox\ntekstgeschiedenis\ntekstherkenning\ntekstinterpretatie\ntekstlink\ntekstopmaak\ntekstpagina\ntekstsoort\ntekststijl\ntekstvenster\ntekstversie\ntekstvorm\ntelbureau\ntelecomfraude\ntelecomleverancier\ntelecompakket\ntelecomprovider\ntelecomwinkel\ntelefonieaanbieder\ntelefoniedienst\ntelefonienet\ntelefoonalfabet\ntelefoonfabrikant\ntelefoongeheugen\ntelefoonmast\ntelefoonprovider\ntelefoonsignaal\ntelevisiecultuur\ntelevisiedebuut\ntelevisiedemocratie\ntelevisiedistributie\ntelevisiegeweld\ntelevisiehoek\ntelevisiekamer\ntelevisielandschap\ntelevisiemaatschappij\ntelevisiepakket\ntelevisieprijs\ntelevisievak\ntelevisieversie\ntelpost\ntempelbezoek\ntempelprostitutie\ntempelterrein\ntemperatuurbeheersing\ntemperatuurcontrole\ntemperatuurniveau\ntemperatuurtoename\ntenniscompetitie\ntennisfederatie\ntennismatch\ntennisplezier\ntennistornooi\ntennistrainer\ntennistraining\ntenoraria\ntentdienst\ntentfeest\ntentoonstellingsprogramma\ntentoonstellingsproject\ntepelpiercing\nteringhekel\ntermijnbedrag\ntermijndenken\ntermijnenwet\nterrasdeur\nterrasjesweer\nterrasmeubilair\nterrasoverkapping\nterrassencamping\nterrassenlandschap\nterrastafel\nterrasvergunning\nterrasverwarming\nterreineigenaar\nterreininrichting\nterreinwerk\nterreurbende\nterreurbombardement\nterreurcel\nterreurcomplot\nterreurleider\nterreurlijst\nterreurstaat\nterreurwetgeving\nterritorialiteitsprincipe\nterritoriumgedrag\nterrorismedeskundige\nterrorismerisico\nterrorismewet\nterrorismewetgeving\nterroristenjacht\nterugkeerbaan\nterugkeerfonds\nterugtrekkingsplan\nterugwinningssoftware\ntestaanpak\ntestafname\ntestbed\ntestcassette\ntestdruk\ntestlab\ntestloop\ntestmotor\ntestpagina\ntestpop\ntestprotocol\ntestreeks\ntestruimte\ntestserver\ntestset\nteststrip\ntesttemperatuur\ntesttoestel\ntesttruck\ntestvat\ntestveld\ntestverslag\ntestwater\ntestweek\ntestwinkel\ntevredenheidsenquête\ntewerkstellingsproject\ntextielstof\ntextielverf\ntextielverzorging\ntextielwinkel\ntheaterspel\ntheefabriek\ntheekoepel\ntheekop\ntheeliefhebber\ntheemuseum\ntheeplant\ntheewinkel\nthemacommissie\nthemagebonden\nthemajaar\nthemakist\nthemalied\nthemaonderzoek\nthemasite\nthematafel\nthematentoonstelling\nthemaweek\ntheologiebeoefening\ntheologieprofessor\ntheorieboek\ntheoriecertificaat\ntheoriecursus\ntheoriedeel\ntheorieonderwijs\naandeelhouderskapitalisme\naangezichtsverlamming\naanvalstactiek\naanvoertemperatuur\naardbeiensaus\naardolieproductie\nabdijsite\nabortuskwestie\naccijnsvrij\nadvertentieverkoper\nafdelingsuitje\naftapplug\nagendafunctie\nakkerrand\nalcoholgraad\narbeidersrevolutie\narbeidsherverdeling\nartsenverklaring\nautokraan\nautonavigatiesysteem\navondvoeding\nbabybed\nbachelorstudent\nbakerzak\nbedieningsconcept\nbedrijfsidee\nbedrijfsinventaris\nbedrijfsmakelaar\nbedrijfsprocessensysteem\nbeheerbedrijf\nbeheersoverdracht\nbehoefteraming\nbeiaardschool\nbelastingadviespraktijk\nbeleveniswereld\nbeoordelingsinstrument\nberoepsverleden\nbestralingsgebied\nbesturingsfilosofie\nbetalingsprobleem\nbetondekking\nbeursstijging\nbewaarniveau\nbeweegadvies\nbewoningskern\nbierindustrie\nbijstandsbudget\nbloemenshow\nboekengek\nboerderijtuin\nboerenjaar\nboerensloot\nboogconstructie\nboomopslag\nbootverzekering\nborstpomp\nbostraining\nbouwplaatspersoneel\nbrandstofdruk\nbrandweervoorlichter\nbroedbak\nbruidsvertrek\nbusvervoerder\ncaloriebom\ncamerahoek\ncarnavalsdag\ncarnavalssfeer\ncijferring\ncircusorkest\nclubmensen\nclubpas\nclubshow\nclubwerk\ncomputeranalyse\nconcentratiecontrole\ndrugsboot\nkinderdienst\nkinderfuif\nkledingfabriek\nkrantenindustrie\nleesopdracht\nnavigatietoestel\nringrot\nslijpvorm\nstimuleringsbeurs\nsuccesformatie\ntherapiegroep\ntherapieprogramma\ntherapiesessie\nthesisonderwerp\nthoraxwand\nthrillergenre\nthuisaanhang\nthuisbegeleider\nthuisbegeleiding\nthuisbegeleidingsdienst\nthuiscursus\nthuisgemeente\nthuiskantoor\nthuiskeeper\nthuiskopieheffing\nthuiskopievergoeding\nthuisloosheid\nthuismilieu\nthuisondersteuning\nthuisopvang\nthuisplaats\nthuisplaneet\nthuisrace\nthuisreputatie\nthuisshirt\nthuisstudie\nthuisstudio\nthuisteam\nthuisveld\nthuisverbruik\nthuisverdediging\nthuisverkoop\nthuiszorgmedewerker\nthuiszorgwinkel\nticketbalie\nticketbelasting\nticketbox\nticketheffing\nticketservice\nticketshop\nticketsysteem\ntickettaks\ntienercentrum\ntienerfilm\ntienerkomedie\ntienermeid\ntienerpubliek\ntienerseks\ntienertijd\ntienerwerk\ntijdbasis\ntijdblok\ntijdbuis\ntijdcode\ntijdfactor\ntijdgebondenheid\ntijdreiziger\ntijdrover\ntijdsaspect\ntijdsbegrip\ntijdsbesparend\ntijdsblok\ntijdselement\ntijdservaring\ntijdsgebeuren\ntijdsgebruik\ntijdsgevoel\ntijdsignaal\ntijdsinstelling\ntijdsintensief\ntijdsklimaat\ntijdsmeting\ntijdsmoment\ntijdsnood\ntijdsprong\ntijdsregistratie\ntijdsrekening\ntijdsschaal\ntijdsvertraging\ntijdsvorm\ntijdszone\ntijdtraining\ntijdvenster\ntijdverloop\ntijdvlak\ntijdvulling\ntijdwaarde\ntijgermug\ntijgeroog\ntijgerpak\ntitelbladzijde\ntitelfiguur\ntitellijst\ntitelpersonage\ntochtportaal\ntoedieningssysteem\ntoedieningswijze\ntoekenningsdatum\ntoekomstbestendigheid\ntoekomstmodel\ntoekomstonderzoek\ntoelatingsonderzoek\ntoelatingstoets\ntoepassingssfeer\ntoepassingsveld\ntoepassingsverordening\ntoerclub\ntoercommissie\ntoerfietser\ntoerismebeleid\ntoeristenbestemming\ntoeristengebied\ntoernooidag\ntoernooisite\ntoerrit\ntoerzeiler\ntoeslagpartner\ntoeslagrecht\ntoeslagverlening\ntoestelnummer\ntoestemmingsformulier\ntoetsenblok\ntoetsenblokkering\ntoetsenwerk\ntoetsingsadvies\ntoetsingsverbod\ntoetsleider\ntoetsmateriaal\ntoetsmoment\ntoetsperiode\ntoetsprogramma\ntoetsvorm\ntoewijzingsreglement\ntoezichtcommissie\ntoezichtfunctie\ntoezichtinstrumentarium\ntoezichtkader\ntoezichtkosten\ntoezichtsysteem\ntoiletborstel\ntoiletgebruik\ntoiletgerei\ntoiletgroep\ntoiletrol\ntoilettengroep\ntoiletvoorziening\ntoiletwater\ntolerantieniveau\ntolkvoorziening\ntomatenmengsel\ntomatenplant\ntomatenprut\ntomatenpulp\ntoneelduivel\ntoneelles\ntoneelleven\ntoneelopening\ntoneelpodium\ntoneelvloer\ntoneelvorm\ntongbasis\ntongbeet\ntoonarm\ntopsportevenement\ntopsportschool\ntorenkraan\ntorenmolen\ntossavond\ntotaalaantal\ntotaalbeleving\ntotaalkosten\ntotaalleverancier\ntotaalniveau\ntotaalruptuur\ntotaalshot\ntotaalsom\ntotaalsysteem\ntotaaltelling\ntotaaluitslag\ntotaalwaarde\ntotemdier\ntouringcarchauffeur\ntourrit\ntourspel\ntourzege\ntouwgroep\ntouwlengte\ntovenaarswereld\ntoverdokter\ntoverhoed\ntovermacht\ntoverschool\ntoxiciteitsonderzoek\ntraagheidsmoment\ntraanplaat\ntraanproductie\ntractiebatterij\ntractorband\ntrainbaar\ntrainersduo\ntrainingsaanbod\ntrainingsacteur\ntrainingsapparaat\ntrainingsbelasting\ntrainingsbureau\ntrainingscoördinator\ntrainingseffect\ntrainingsgebied\ntrainingsleer\ntrainingslocatie\ntrainingsloop\ntrainingsmaat\ntrainingsmateriaal\ntrainingsmodule\ntrainingsniveau\ntrainingsomvang\ntrainingsparcours\ntrainingsplan\ntrainingsprikkel\ntrainingsronde\ntrainingsruimte\ntrainingstraject\ntrainingsvorm\ntrainingswedstrijd\ntrainingszaal\ntrambedding\ntramchauffeur\ntrammuseum\ntramplatform\ntramroute\ntramtrein\ntramvervoer\ntransactiesysteem\ntransactieverwerking\ntransferbus\ntransferkosten\ntransformatorstation\ntransfusiereactie\ntransitzone\ntransparantiebeginsel\ntransportafstand\ntransportbrandstof\ntransportbrief\ntransportcriminaliteit\ntransportdienst\ntransportfunctie\ntransportketen\ntransportlaag\ntransportmedium\ntransportschade\ntransportsnelheid\ntransporttijd\ntransportverzekeringswet\ntransportvloot\ntransvet\ntrapfrequentie\ntrapondersteuning\ntrapopgang\ntrappartij\ntrapvorm\ntraumazorg\ntrechtervorm\ntrefdag\ntreinbaan\ntreinbegeleidster\ntreinkaart\ntreinkosten\ntreinlijn\ntreinpad\ntreinsamenstelling\ntrekdrop\ntrekhand\ntrekkershut\ntrekkersrol\ntrekoog\ntrekproef\ntrekspanning\ntrekvlinder\ntrekzetel\ntreurhouding\ntricotsteek\ntrilfunctie\ntrillingsgedrag\ntrillingstijd\ntrillingsveld\ntrilstand\ntriltafel\ntrimster\ntriniteitsleer\ntriomfkruis\ntriosonate\ntriosynode\ntripmiddel\ntroepentransportschip\ntroepenuitbreiding\ntrombus\ntrouwceremonie\ntrouwkostuum\ntrouwreportage\ntrouwvervoer\ntruckstop\ntruiendag\ntrustfonds\ntuchtklacht\ntuigpaard\ntuinbedrijf\ntuinbeeld\ntuinberging\ntuinbeurs\ntuinclub\ntuindagboek\ntuindecoratie\ntuinencomplex\ntuingebied\ntuingedeelte\ntuinhaard\ntuinhok\ntuininrichting\ntuinkas\ntuinkunst\ntuinland\ntuinpark\ntuinplezier\ntuinturf\ntuinzaal\ntuinzijde\ntuitbeker\ntuitgevel\ntumormassa\ntumorvorming\ntunnelcomplex\ntunneleffect\ntunnelingang\ntunnelsyndroom\nturfgraverij\nturfvaart\nturnbond\nturnfeest\nturnkring\nturnsport\nturnwedstrijd\ntweewielerbranche\ntwijfelloos\ntyfushond\ntypecontract\ntypecursus\ntypenaam\nuiensap\nuienteelt\nuienvlieg\nuiergezondheid\nuilensoort\nuitbreidingsbeleid\nuitbreidingsproject\nuitbreidingsvraag\nuitgaansplek\nuitgaansstad\nuitgavenbegroting\nuitgavenregeling\nuitgavenzijde\nuitgeefwereld\nuitgiftebeleid\nuitgiftedatum\nuitgiftepunt\nuitingsmogelijkheid\nuitkeringsinstituut\nuitkijkhut\nuitkijkplaats\nuitlaatcommentator\nuitlaatdemper\nuitlaatgeluid\nuitlaatservice\nuitleesbaar\nuitleesvenster\nuitleveringszaak\nuitlooprisico\nuitlooptijd\nuitoverwinning\nuitrekbaar\nuitruktijd\nuittredingservaring\nuitvaartbedrijf\nuitvaartbegeleider\nuitvaartbegeleiding\nuitvaartbeurs\nuitvaartkosten\nuitvaartleidster\nuitvaartorganisatie\nuitvaartsector\nuitvaartwereld\nuitvaartzorg\nuitvoerbeleid\nuitvoeringsagenda\nuitvoeringsagent\nuitvoeringsbeschikking\nuitvoeringscapaciteit\nuitvoeringsdatum\nuitvoeringsgarantie\nuitvoeringsplanning\nuitvoeringssysteem\nuitvoeringstoets\nuitvoeringstraject\nuitvoeringsverordening\nuitvoeringswetgeving\nuitvoerprijs\nuitvoervolume\nuitwerkbijlage\nuitwisselingsstudente\nuitzendbeding\nuitzenddatum\nuitzenddruk\nuitzendkwaliteit\nuitzendovereenkomst\nuitzendperiode\nuitzetraam\nuitzonderingsregeling\nuniversiteitsdiploma\nuniversiteitshoogleraar\nuniversiteitsteam\nuraniumverrijkingsprogramma\nurenadministratie\nurenbeperking\nurendeclaratie\nurenstaking\nurenteller\nurinekatheter\nurinelozing\nurinestraal\nurinestroom\nvaandelteam\nvaardigheidsniveau\nvaardigheidstest\nvaardigheidstoets\nvaargedrag\nvaarplezier\nvaarverkeer\nvaatchirurgie\nvaatwastablet\nvaccinatieplan\nvaccinatieschema\nvaccinatiestatus\nvachtverzorging\nvacuümsysteem\nvacuümtechniek\nvakantieaanbod\nvakantieappartement\nvakantiebeleving\nvakantiebijslag\nvakantiedomein\nvakantieduur\nvakantiefiets\nvakantiefilm\nvakantiemarkt\nvakantieplanning\nvakantieplezier\nvakantieprogramma\nvakantieregio\nvakantierooster\nvakantieschip\nvakantiestek\nvakantieverslag\nvakantievilla\nvakantiewas\nvakantiewerking\nvakwerkboerderij\nvakwerkstijl\nvalkenkop\nvalleigebied\nvalutadag\nvalutadatum\nvangbalk\nvanggewas\nvangkracht\nvangstmethode\nvarkensfilet\nvarkenshuid\nvarkensschuur\nvastenkuur\nvastgoedbaron\nvastgoedbeleid\nvastgoedbeurs\nvastgoedboer\nvastgoedbranche\nvastgoedcrisis\nvastgoedfraude\nvastgoedfraudezaak\nvastgoedhandel\nvastgoedman\nvastgoedmanager\nvastgoedrecht\nvastgoedtak\nvaststeken\nvaststelbaar\nvastzetting\nvechtspel\nvechtster\nvechtstijl\nvectorruimte\nveehouderijtak\nveelomvattendheid\nveelstemmigheid\nveenbedrijf\nveendijk\nveengroei\nveenland\nveenlandschap\nveenpolder\nveenwater\nveenweide\nveenweidelandschap\nveerconstante\nveerdam\nveerdruk\nveerenergie\nveermechanisme\nveerooster\nveerspanning\nveerwild\nveevoeding\nveevoerindustrie\nveevoersector\nvegetatieontwikkeling\nvegetatietype\nveiligheidsaanpak\nveiligheidsafstand\nveiligheidsattest\nveiligheidsbeheer\nveiligheidsbeheersysteem\nveiligheidsbenadering\nveiligheidsbeugel\nveiligheidsbewustzijn\nveiligheidsconsulent\nveiligheidscoördinatie\nveiligheidsdeskundige\nveiligheidsfunctie\nveiligheidshuis\nveiligheidsincident\nveiligheidsindex\nveiligheidsinformatieblad\nveiligheidskast\nveiligheidskeurmerk\nveiligheidskledij\nveiligheidskosten\nveiligheidskunde\nveiligheidslijn\nveiligheidsmanagement\nveiligheidsmateriaal\nveiligheidsmechanisme\nveiligheidsmedewerker\nveiligheidsmonitor\nveiligheidsmuur\nveiligheidsprocedure\nveiligheidsprofiel\nveiligheidsprogramma\nveiligheidsreden\nveiligheidsregelgeving\nveiligheidsrisicogebied\nveiligheidsstrook\nveiligheidsteam\nveiligheidsthema\nveiligheidstoeslag\nveiligheidstoetsing\nveiligheidsverlichting\nveiligheidsvoorraad\nveiligheidswetgeving\nveilingbedrijf\nveilingmodel\nveilingterrein\nvelddag\nveldesdoorn\nveldfout\nveldleger\nveldpartij\nveldraadpleging\nveldrijdster\nveldschuur\nveldseizoen\nveldspuit\nveldstudie\nveldtoertocht\nveldtraining\nveldverwarming\nveldvulling\nvendelhulde\nvenstermenu\nveranderaanpak\nveranderingsbereidheid\nveranderkundige\nverandermanager\nverantwoordelijkheidsgebied\nverantwoordingsdebat\nverantwoordingsinformatie\nverantwoordingsorgaan\nverbeeldingsvermogen\nverbeteractie\nverbeteringstraject\nverbeterprogramma\nverbeterproject\nverbeterslag\nverbeterteam\nverbindingsbureau\nverbindingsdienst\nverbindingspersoon\nverbindingspunt\nverbindingssnelheid\nverbindingstechniek\nverblijfadres\nverbrandingssnelheid\nverdedigingsorganisatie\nverdedigingsstelsel\nverdedigingsvak\nverdeelplan\nverdeelstelsel\nverdeelsystematiek\nverdeelweg\nverdelingsvolume\nverdelingsvoorstel\nverdiepingenplan\nverdiepingsslag\nverdovingspistool\nverdovingsvloeistof\nverdragsbijdrage\nverdragsgerechtigd\nverdragsgerechtigde\nverdragsgerechtigdheid\nverdragsplicht\nverdringingsreeks\nverdunningsfactor\nverdwijnziekte\nverenigingsavond\nverenigingsbureau\nverenigingskas\nverenigingsnaam\nverenigingswerk\nvereveningsfonds\nverflucht\nvergeldingsdrang\nvergelijkingsgroep\nvergoedingsplicht\nvergrijzingsgolf\nvergrijzingsproblematiek\nvergrotingsfactor\nvergunningaanvrager\nvergunningenstop\nvergunningentraject\nvergunninghoudster\nvergunningsbewijs\nvergunningssysteem\nvergunningsverlening\nvergunningsvrij\nvergunningvoorschrift\nvergunningvrij\nverhaalstof\nverhuiscircus\nverhuisdatum\nverhuisgeneigdheid\nverhuisservice\nverhuisvergoeding\nverhuurperiode\nverhuurvloot\nverkeersas\nverkeersveiligheidsfonds\nverkenningentabel\nverkenningsgroep\nverkenningsopdracht\nverkenningspatrouille\nverkenningspeloton\nverkenningsronde\nverkiezingsbord\nverkiezingsdeelname\nverkiezingsdrukwerk\nverkiezingsnacht\nverkiezingspoll\nverkiezingsreces\nverkiezingsshow\nverkiezingsstrategie\nverkiezingssysteem\nverkiezingsuitzending\nverkiezingswaarneming\nverkiezingszondag\nverklaringskracht\nverkleedfeest\nverkleedkoffer\nverkoopadministratie\nverkoopadviseur\nverkoopbord\nverkoopbrochure\nverkoopdagboek\nverkoopfactuur\nverkoopkans\nverkoopondersteuning\nverkoopoppervlakte\nverkoopplaats\nverkoopsite\nverkooptraject\nverkoopvergunning\nverkoopzaal\nverkoudheidsvirus\nverletkosten\nverlichtingsapparatuur\nverlichtingsfundamentalist\nverlichtingsniveau\nverlichtingssterkte\nverlichtingssysteem\nverlieservaring\nverliespercentage\nverliestijd\nverlieswedstrijd\nverlofkaart\nverloftegoed\nverloskundigenpraktijk\nverloskwartier\nverlossingsgedachte\nverlossingsleer\nverlossingsplan\nverluchtingssysteem\nvermageringsoperatie\nvermogensaangifte\nvermogensbank\nvermogensdichtheid\nvermogensgrens\nvermogenskosten\nvermogensplanning\nvermogenssituatie\nvermogenstoename\nvermogenstoestand\nvermogensverdeling\nvernietigingsgrond\nvernietigingstermijn\nvernieuwingsimpuls\nvernieuwingskracht\nvernieuwingsslag\nvernieuwingstraject\nverontreinigingsprobleem\nveroveringsleer\nverpakkingsglas\nverpakkingsheffing\nverpakkingshout\nverpakkingstaks\nverplaatsingsgedrag\nverplaatsingssnelheid\nverpleegadres\nverpleegpost\nverrassingsact\nverrassingsbezoek\nverrassingsdag\nverrassingsoptreden\nverrassingsreis\nverrekenbeding\nverrekeningsstelsel\nverrijkingsprogramma\nverrijzenisverhaal\nverschillenanalyse\nverschoningsgrond\nversgewicht\nversierpoging\nversiertruc\nvertaalafdeling\nvertaalarbeid\nvertaalopdracht\nvertaalprobleem\nvertaalvaardigheid\nvertebril\nvertelavond\nvertelcultuur\nvertelinstantie\nvertelsituatie\nverteltafel\nverteltheater\nverteltijd\nverteltoon\nvertrekbelasting\nvertrekbonus\nvertrekhaven\nverversingspost\nvervoerdienst\nvervoerdocument\nvervoermanagement\nvervoernet\nvervoerverbinding\nvervoervergunning\nvervoerwaarde\nvervoerwijze\nvervolgadvies\nvervolgartikel\nvervolgbijeenkomst\nvervolgkeuzelijst\nvervolgprogramma\nvervolgschool\nvervolgspel\nvervolgzorg\nverwachtingshorizon\nverwantenselectie\nverwarmbaar\nverwarmingsbron\nverwarmingstoelage\nverwenbeurt\nverwerkingsfabriek\nverwerkingsfase\nverwerkingsopdracht\nverwerkingssteun\nverwerkingswijze\nverwervingsautoriteit\nverwijderlijst\nverwijssysteem\nverwijtbaarheidstoets\nverwijzingsbeschikking\nverwijzingsregel\nverwijzingssysteem\nverzamelbeleid\nverzamelcentrum\nverzamellijst\nverzamelsite\nverzamelverbod\nverzekeringsbewijs\nverzekeringsgigant\nverzekeringskaart\nverzekeringsland\nverzekeringsmodel\nverzekeringsorgaan\nverzekeringspas\nverzekeringstelling\nverzuimverzekering\nvestigingsadres\nvestigingsgebied\nvestigingsmilieu\nvestigingsstad\nvestinggracht\nvestingplaats\nvetafbraak\nvetafscheider\nvetinname\nvetklep\nvetophoping\nvetopslag\nvetput\nvetreserve\nvetschort\nvetspek\nvetverlies\nvetvoorraad\nvezelgehalte\nvideoanalyse\nvideoarchief\nvideobellen\nvideochat\nvideocommunicatie\nvideodagboek\nvideoformaat\nvideofunctie\nvideogeheugen\nvideogesprek\nvideograaf\nvideokanaal\nvideokwaliteit\nvideolink\nvideonetwerk\nvideoplatform\nvideoprojector\nvideoreclame\nvideoteam\nvideotestament\nviergangendiner\nviergeslacht\nvijfgangenmenu\nvijfhonderdtal\nvijfsprong\nvijfzitter\nvijveraarde\nvijverbodem\nvijverfolie\nvijverpartij\nvijverpomp\nvijvertuin\nvillabouw\nvingerafdruklezer\nvingerbeweging\nvingerscan\nvingertechniek\nvirusaanval\nvirusbescherming\nvirusbesmetting\nvirusisolatie\nvirustype\nvirusverspreiding\nvisbak\nvisbezetting\nvisboot\nvisdocument\nvisdraad\nvisfauna\nvisgeur\nvisgids\nvishengel\nvisienota\nvisietekst\nvisitatiedag\nvisitatiemodel\nvisitatieteam\nvisitekaart\nviskist\nvisloos\nvisman\nvismateriaal\nvismengsel\nvismethode\nvispas\nvisplan\nvisplek\nvisrecept\nvisrechthebbende\nvisreis\nvisrokerij\nvisruim\nvissalade\nvissenbestand\nvissenstaart\nvisserijbeheer\nvisserijdruk\nvisserijgebied\nvisserijhaven\nvisserijmuseum\nvisserijovereenkomst\nvisserijtak\nvisserijwet\nvisserijzone\nvissersnet\nvisserswoning\nvisserszoon\nvissessie\nvissmaak\nvistocht\nvistrip\nvisumregeling\nvisumverbod\nvisvakantie\nvisvereniging\nvisverkoop\nviswijzer\nviszaak\nvlaaivorm\nvlaginstructie\nvlammenspel\nvlasindustrie\nvlasplant\nvleesketen\nvleeskwaliteit\nvleesmaaltijd\nvleesmassa\nvleesmengsel\nvleespluimvee\nvleesras\nvleessaus\nvleesthermometer\nvlekvorming\nvleugelspel\nvliegbestemming\nvliegdag\nvliegenhengel\nvliegenlijn\nvliegerpapier\nvlieggebied\nvlieghinder\nvlieghok\nvlieglicentie\nvliegopening\nvliegplank\nvliegploeg\nvliegprijs\nvliegprogramma\nvliegrichting\nvliegtuiggeluid\nvliegvergunning\nvliegvisser\nvliegwieleffect\nvlierbessensiroop\nvlinderkas\nvlinderklep\nvloeigrens\nvloeimiddel\nvloeistoffase\nvloerbelasting\nvloerconstructie\nvloerhoogte\nvloerniveau\nvloeropbouw\nvlooienallergie\nvlooienplaag\nvlootcapaciteit\nvlootverband\nvlottentocht\nvluchtduur\nvluchtelingenrecht\nvluchtfase\nvluchtlijn\nvluchtpunt\nvluchttijd\nvluchtvoorbereiding\nvochtafvoer\nvochtbeperking\nvochtigheidsgehalte\nvochtinname\nvochtmeting\nvochtpercentage\nvochtschade\nvochttoediening\nvochttoestand\nvochttransport\nvochtvoorraad\nvoederconversie\nvoedermiddel\nvoederplek\nvoedertafel\nvoedertijd\nvoederveiligheid\nvoederverbod\nvoederwaarde\nvoederwinning\nvoedingsbeha\nvoedingsdienst\nvoedingsgedrag\nvoedingsketen\nvoedingsoplossing\nvoedingsplan\nvoedingspomp\nvoedingsprogramma\nvoedingssituatie\nvoedingssonde\nvoedingsstatus\nvoedingstherapie\nvoedingsvoorlichting\nvoedingswijze\nvoedingswinkel\nvoedselafval\nvoedselbedeling\nvoedselbevoorrading\nvoedselbrij\nvoedselbrok\nvoedselinfectie\nvoedselinspectie\nvoedselkeuze\nvoedselkringloop\nvoedselonzekerheid\nvoedselopslag\nvoedselovergevoeligheid\nvoedselplant\nvoedselproject\nvoedselsoevereiniteit\nvoedselsysteem\nvoedseltoevoer\nvoedselveiligheidsbeleid\nvoedselverdeling\nvoedselverspilling\nvoedselverwerking\nvoedselweb\nvoegmiddel\nvoegspecie\nvoeringstof\nvoerkosten\nvoerleverancier\nvoerplaats\nvoerstreek\nvoertuigbeheersing\nvoertuigcategorie\nvoertuigcriminaliteit\nvoertuigenpark\nvoertuigunit\nvoertuigvolgsysteem\nvoetafwikkeling\nvoetbalaanbod\nvoetbalbeleving\nvoetbalblad\nvoetbaldag\nvoetbaldier\nvoetbaldoel\nvoetbalduel\nvoetbalervaring\nvoetbalfanaat\nvoetbalgame\nvoetbalhart\nvoetbalhater\nvoetbalheld\nvoetbalhumor\nvoetbaljargon\nvoetbalkaart\nvoetbalkanaal\nvoetbalkleding\nvoetbalkoorts\nvoetballes\nvoetbalman\nvoetbalmiddag\nvoetbalniveau\nvoetbalproject\nvoetbalschandaal\nvoetbalsfeer\nvoetbalsite\nvoetbalstadium\nvoetbaltafel\nvoetbaltitel\nvoetbaltornooi\nvoetbaltribune\nvoetbalunie\nvoetbalvedette\nvoetbalverleden\nvoetbalverslaggever\nvoetbalvriend\nvoetbalvrouw\nvoetbalweekeinde\nvoetbalweer\nvoetbalzone\nvoetbehandeling\nvoetgangersveiligheid\nvoetgangersverbinding\nvoetgewelf\nvoetpatrouille\nvoetreflex\nvoetreflexmassage\nvoetring\nvoetverzorger\nvoetvorm\nvogeltjesdans\nvoicerecorder\nvolatiliteitsaanpassing\nvolgbaar\nvolggewas\nvolggroep\nvolgmotor\nvolkerenwereld\nvolkorenpasta\nvolksgezondheidsprobleem\nvolleybalnet\nvolleybalseizoen\nvolleybalspel\nvolleybalveld\nvolmachtformulier\nvolumeniveau\nvolumestroom\nvolumevergroting\nvolumeverlies\nvondstenmateriaal\nvonkoverslag\nvonnisbrief\nvoogdijzaak\nvoorafname\nvooralarm\nvoorbeeldbedrijf\nvoorbeeldbrief\nvoorbeeldgever\nvoorbeeldland\nvoorbereidingscursus\nvoorbereidingsprocedure\nvoorbereidingstraject\nvoorbereidingswerk\nvoorbindlul\nvoorborst\nvoorbouw\nvoorgaren\nvoorgebouw\nvoorgedeelte\nvoorhangprocedure\nvoorinvestering\nvoorjaarstop\nvoorjager\nvoorkeursalternatief\nvoorkeursdrempel\nvoorkeursgrenswaarde\nvoorkeurshand\nvoorkeurslocatie\nvoorkeursmodel\nvoorkeursstem\nvoorklimmer\nvoorkruipzorg\nvoorkwab\nvoorlamp\nvoorleesverhaal\nvoorlichtingsorganisatie\nvoorlijn\nvoorlijst\nvoorlinie\nvoormaag\nvoorontwerpbestemmingsplan\nvoorpaneel\nvoorpartij\nvoorperiode\nvoorprocedure\nvoorprogrammering\nvoorpui\nvoorraadbeleid\nvoorraadlijst\nvoorraadmanagement\nvoorraadsysteem\nvoorruimte\nvoorschakelapparaat\nvoorschepen\nvoorscherm\nvoorschotbedrag\nvoorsein\nvoorspatbord\nvoorspellingsmodel\nvoorspoiler\nvoorstellingsbeeld\nvoorstellingsleven\nvoorstrijk\nvoorstrijkmiddel\nvoortandwiel\nvoortplantingscyclus\nvoortplantingsdrift\nvoortplantingsgeneeskunde\nvoortplantingsperiode\nvoortplantingsrichting\nvoortplantingsseizoen\nvoortplantingsstelsel\nvoortplantingssucces\nvoortplantingssysteem\nvoorurine\nvoorvering\nvoorverkenning\nvoorverpachting\nvoorverwarming\nvoorvocht\nvoorvorm\nvoorzieningenbeleid\nvoorzieningenstructuur\nvoorzolder\nvormbaar\nvormbewustzijn\nvormenwereld\nvormfactor\nvormingsdag\nvormingsfonds\nvormingspakket\nvormingsplicht\nvormingsprogramma\nvormingsstation\nvormkracht\nvormovereenkomst\nvormveld\nvormvereiste\nvormverzuim\nvormvoorschrift\nvormvrij\nvormwereld\nvouwgordijn\nvraagbundeling\nvraaggerichtheid\nvraagouder\nvraagtype\nvraagvorm\nvraatschade\nvrachtloods\nvrachtplatform\nvrachttoestel\nvrachttram\nvragenlijstonderzoek\nvragenspel\nvrederijk\nvredesbetoging\nvredesgroet\nvredesleger\nvredesopvoeding\nvredesproject\nvredesrijk\nvredesstichter\nvredevol\nvreemdelingencriminaliteit\nvreemdelingendocument\nvreemdelingenhater\nvreemdelingenprobleem\nvreetbui\nvreetfestijn\nvreetkick\nvreetschuur\nvreugdeloosheid\nvriendenboek\nvriendendag\nvriendenprijs\nvriendensite\nvriendenteam\nvriendinlief\nvriendinnendag\nvriestemperatuur\nvrijdageditie\nvrijdagmarkt\nvrijdagmiddagborrel\nvrijdagmiddaggebed\nvrijdagpreek\nvrijdagtraining\nvrijdagvoormiddag\nvrijdenken\nvrijgezellenleven\nvrijgezellenparty\nvrijheidsbegrip\nvrijheidsconcept\nvrijheidsdenken\nvrijheidsgedachte\nvrijheidsontneming\nvrijheidsprijs\nvrijheidsrecht\nvrijstellingsbepaling\nvrijstellingsbesluit\nvrijstellingsbevoegdheid\nvrijstellingslijst\nvrijstellingsmogelijkheid\nvrijstellingsverordening\nvrijstellingsverzoek\nvrijwaringsverklaring\nvrijwilligersavond\nvrijwilligerscoördinator\nvrijwilligersfunctie\nvrijwilligershulp\nvrijwilligersprijs\nvrijwilligersregeling\nvrijwilligersteam\nvrijwilligersverzekering\nvrijwilligerswerkbeleid\nvrijwilligerswerking\nvrijwilligerszorg\nvrouwenclub\nvrouwending\nvrouweneredivisie\nvrouwengezicht\nvrouwenkledij\nvrouwenliefhebber\nvrouwenmode\nvrouwenondergoed\nvrouwenpartij\nvrouwenpraat\nvrouwenprobleem\nvrouwenstandpunt\nvrouwenstemrecht\nvrouwentijdschrift\nvrouwenvertrek\nvrouwenwedstrijd\nvrouwenzot\nvrouwkracht\nvrouwvijandigheid\nvruchtbaarheidsgod\nvruchtbaarheidsritueel\nvruchtbaarheidssymbool\nvruchtensaus\nvruchtgroente\nvruchtloos\nvruchtpluis\nvruchtzak\nvuilnisstortplaats\nvuilvracht\nvuilwaterriool\nvuistdiep\nvulkaanstof\nvuurbelasting\nvuurgod\nvuurkist\nvuurman\nvuuroffer\nvuuroven\nvuurpauze\nvuurpoel\nvuurpositie\nvuurshow\nvuursteenslot\nvuurteken\nvuurwapenvergunning\nvuurwerkafval\nvuurwerkoverlast\nvuurwerkverbod\nvuurwerkwinkel\nwaadpak\nwaakbestaan\nwaakbewustzijn\nwaakritme\nwaakstand\nwaarborgfunctie\nwaarborgregeling\nwaardebeleving\nwaardecheque\nwaardeverminderingsverlies\nwaarheidsbevinding\nwaarheidsbeweging\nwaarheidsclaim\nwaarheidscriterium\nwaarheidsvraag\nwaarheidszoeker\nwaarschijnlijkheidsberekening\nwaarschuwingsboodschap\nwaarschuwingsdienst\nwaarschuwingsniveau\nwaarschuwingssticker\nwaarschuwingstekst\nwachtbekken\nwachtgebouw\nwachthok\nwachtmuziek\nwachtregister\nwachtzin\nwaddendijk\nwagencommandant\nwagenschuur\nwalgvogel\nwalshuid\nwalvissoort\nwandcloset\nwandconstructie\nwandelarrangement\nwandelbos\nwandeldijk\nwandelevenement\nwandelfestijn\nwandelgroep\nwandelnetwerk\nwandelparcours\nwandelpauze\nwandelplezier\nwandelprogramma\nwandelroutenetwerk\nwandelsafari\nwandelweek\nwandelzoektocht\nwandmontage\nwandschakelaar\nwandverwarming\nwapenbeheer\nwapenbode\nwapendeskundige\nwapendiefstal\nwapperlijn\nwarenruil\nwarmteafvoer\nwarmtebalans\nwarmtebedrijf\nwarmtebeeld\nwarmtebeeldcamera\nwarmtebehoefte\nwarmtebelasting\nwarmtegetal\nwarmtegevoel\nwarmtelamp\nwarmteopname\nwarmtepompsysteem\nwarmteregeling\nwarmtetoevoer\nwarmteverdeling\nwarmteweerstand\nwarmtewet\nwarmwaterbehandeling\nwarmwaterleiding\nwartellood\nwasapparatuur\nwasbeerhond\nwasgel\nwaskot\nwasmodel\nwasmot\nwasrek\nwasservice\nwastafelmeubel\nwaterattractie\nwaterbaan\nwaterbalans\nwaterballon\nwaterbeheersplan\nwaterbevoorrading\nwaterbeweging\nwaterbuffer\nwaterconsumptie\nwatercrisis\nwatercyclus\nwaterdag\nwaterdichting\nwaterdoop\nwaterdoorlatendheid\nwaterdrieblad\nwaterelement\nwaterenergie\nwatererosie\nwaterfactuur\nwaterfontein\nwatergeul\nwatergevecht\nwatergeweld\nwatergewenning\nwatergift\nwatergordijn\nwaterhardheid\nwaterhindernis\nwaterhond\nwaterinfrastructuur\nwaterinhoud\nwaterinjectie\nwaterinlaat\nwaterkasteel\nwaterkennis\nwaterketenbedrijf\nwaterkonijn\nwaterkringloop\nwaterkwaliteitsbeheer\nwaterkwaliteitsspoor\nwaterlandschap\nwaterlast\nwaterlek\nwaterlekkage\nwaterlevering\nwaterlichaam\nwaterlijst\nwatermaker\nwatermanager\nwatermatras\nwatermelder\nwatermilieu\nwaternetwerk\nwateronderzoek\nwaterpaleis\nwaterparadijs\nwaterplezier\nwaterploeg\nwaterpost\nwaterpretpark\nwaterraket\nwaterram\nwaterrand\nwatersamenstelling\nwaterschapstaak\nwaterskibaan\nwaterspeelplaats\nwaterspeeltuin\nwaterspitsmuis\nwatersportbaan\nwatersportliefhebber\nwatersportwinkel\nwaterstaatsdienst\nwaterstaatsgeschiedenis\nwaterstaatszorg\nwaterstofauto\nwaterstofbus\nwaterstoftechnologie\nwaterstoker\nwatersysteembeheer\nwatersysteemheffing\nwatertafel\nwatertype\nwatervegetatie\nwaterveiligheid\nwaterverkeer\nwaterverspilling\nwatervolume\nwaterwegennet\nwederopbouwmissie\nwederopname\nwedertewerkstelling\nwedertoelating\nwedstrijdbal\nwedstrijdbegin\nwedstrijdbespreking\nwedstrijdblad\nwedstrijdboot\nwedstrijddatum\nwedstrijdduur\nwedstrijdformule\nwedstrijdgebeuren\nwedstrijdgroep\nwedstrijdhelft\nwedstrijdinstelling\nwedstrijdkleding\nwedstrijdlicentie\nwedstrijdloop\nwedstrijdmentaliteit\nwedstrijdniveau\nwedstrijdnummer\nwedstrijdparcours\nwedstrijdploeg\nwedstrijdronde\nwedstrijdruimte\nwedstrijdselectie\nwedstrijdshirt\nwedstrijdspanning\nwedstrijdtafel\nwedstrijdtempo\nwedstrijdtenue\nwedstrijdtijd\nwedstrijdveld\nwedstrijdvisser\nwedstrijdvlucht\nwedstrijdvorm\nwedstrijdvraag\nwedstrijdzeiler\nweefkamer\nweefselbeschadiging\nweefselgroei\nweefselreactie\nweefseltype\nweefselvloeistof\nweeftechniek\nweefwerk\nweegkamer\nweekbrief\nweekgrafiek\nweekindeling\nweekopdracht\nweekopening\nweekpas\nweekprogramma\nweekrooster\nweeksluiting\nweekverslag\nweeramateur\nweercijfer\nweergavekwaliteit\nweergever\nweerkamer\nweermodel\nweerradar\nweersite\nweersituatie\nweerstandscapaciteit\nweerstandskracht\nweervisserij\nweesgeneesmiddel\nwegenbeheer\nwegenlegger\nwegenpatroon\nwegenreglement\nwegenwachter\nweggeefschaak\nwegwerpproduct\nweideperiode\nweideseizoen\nweigerambtenaar\nweipoeder\nwelkomstbonus\nwelkomstboodschap\nwelkomstbrief\nwelkomstcomité\nwelkomstpagina\nwelkomstpakket\nwelkomstscherm\nwelstandsadvies\nwelstandsniveau\nwelstandsvrij\nwenkbrauwstreep\nwensbeeld\nwensgedachte\nwensleven\nwensput\nwensvervulling\nwereldaanvaarding\nwereldautoriteit\nwereldbaan\nwereldbelang\nwereldbeleving\nwereldbeschaving\nwereldbestel\nwereldbestuur\nwereldbeweging\nwereldcomplot\nwereldconcept\nwereldconjunctuur\nwereldcultuur\nwerelddag\nwerelddekking\nwerelddictatuur\nwerelddominantie\nwereldeinde\nwereldelite\nwereldgelijkvormigheid\nwereldgoal\nwereldhoofdstad\nwereldkapitaal\nwereldklok\nwereldleger\nwereldmodel\nwereldopvatting\nwereldordening\nwereldoverheid\nwereldprijs\nwereldreservemunt\nwereldruim\nwereldruimte\nwereldspits\nwereldstaat\nwereldstekker\nwereldteam\nwereldtemperatuur\nwereldticket\nwereldtour\nwereldtuin\nwereldvoorstelling\nwereldwijf\nwerfbeurt\nwerfkeet\nwerfkelder\nwerfterrein\nwerfwagen\nwerfzone\nwerkarm\nwerkatelier\nwerkbedrijf\nwerkbereik\nwerkbonus\nwerkbreedte\nwerkbudget\nwerkcoach\nwerkcollegedocent\nwerkcontract\nwerkdek\nwerkdomein\nwerkdrukte\nwerkdrukvermindering\nwerkelijkheidsbeleving\nwerkelijkheidservaring\nwerkelijkheidsgetrouw\nwerkelijkheidsvisie\nwerkendag\nwerkgebonden\nwerkgedrag\nwerkgelegenheidssteun\nwerkgroepbijeenkomst\nwerkgroepvergadering\nwerkhaven\nwerkhok\nwerkhond\nwerkijver\nwerkingsbudget\nwerkingscoëfficiënt\nwerkingsspectrum\nwerkingswijze\nwerkinhoud\nwerkinstelling\nwerkkaart\nwerkkader\nwerkland\nwerkles\nwerkloosheidsbureau\nwerkloosheidsdag\nwerkmail\nwerkmakker\nwerkmaterieel\nwerkmentaliteit\nwerkmiddel\nwerkmodel\nwerknemersaantal\nwerknemersdeel\nwerknemersoptie\nwerknemerspensioen\nwerknemersstatuut\nwerknemersverkeer\nwerkniveau\nwerkomschrijving\nwerkongeschiktheid\nwerkoppervlak\nwerkorder\nwerkpatroon\nwerkplaatsapparatuur\nwerkplaatshandboek\nwerkplaatskaart\nwerkpunt\nwerkregeling\nwerkschip\nwerkschuur\nwerksessie\nwerkstage\nwerktijdfactor\nwerktijdregeling\nwerktop\nwerkuitkering\nwerkuitvoering\nwerkvenster\nwerkverbod\nwerkverbond\nwerkverleden\nwerkvermogen\nwerkvisum\nwerkzoeker\nwerkzone\nwerpafstand\nwerparm\nwerpgewicht\nwerpkist\nwerptechniek\nwervellichaam\nwervelzuil\nwervingskanaal\nwervingsmethode\nwervingssite\nwespenplaag\nwestcirculatie\nwesternzadel\nwestfront\nwesttoren\nwestvleugel\nwestwand\nwetenschapsforum\nwetenschapshistoricus\nwetenschapskatern\nwetenschapsprogramma\nwetenschapsredacteur\nwetenschapstaal\nwetenschapswereld\nwetgevingsadvisering\nwetgevingsbeleid\nwetgevingsgebied\nwetgevingsinitiatief\nwetgevingsinstrument\nwetgevingskwaliteit\nwetgevingsoverleg\nwetgevingsprocedure\nwetgevingstraject\nwetsuitleg\nwiebeltand\nwieleffect\nwielercircus\nwielerfan\nwielerfanaat\nwielerfeest\nwielergebeuren\nwielerjaar\nwielerkleding\nwielerpiste\nwielershirt\nwielertalent\nwielertoeristenclub\nwielertraditie\nwielerunie\nwielervereniging\nwiellader\nwiellager\nwielmaat\nwielspin\nwierpot\nwietboulevard\nwietgebruik\nwietkwekerij\nwietlucht\nwijkactieplan\nwijkagente\nwijkbeheerder\nwijkbezoek\nwijkboerderij\nwijkbudget\nwijkcentrale\nwijkfunctie\nwijkgedachte\nwijkhuis\nwijkindeling\nwijkinspecteur\nwijkkerk\nwijkkerkenraad\nwijkkermis\nwijkontwikkelingsplan\nwijkouderling\nwijkpanel\nwijkprogramma\nwijkschouw\nwijkveiligheid\nwijkverbetering\nwijkwandeling\nwijkwethouder\nwijkzorg\nwijnassortiment\nwijnavond\nwijnbouwgebied\nwijnclub\nwijncollectie\nwijnconsumptie\nwijncursus\nwijndorp\nwijnexport\nwijngeschiedenis\nwijngilde\nwijnhoeve\nwijnincident\nwijnkast\nwijnkurk\nwijnoogstjaar\nwijnpakket\nwijnregio\nwijnreis\nwijnroute\nwijnteelt\nwijntoerisme\nwijnverkoop\nwijsheidsleraar\nwijzernaald\nwijzigingskosten\nwijzigingsprocedure\nwijzigingsverdrag\nwijzigingsverordening\nwikkeldraad\nwildbestand\nwildleven\nwildtype\nwildvorm\nwindaanbod\nwindbrief\nwindhinder\nwindklimaat\nwindlak\nwindrecht\nwindstopper\nwindstroom\nwindturbinepark\nwindveld\nwindverwachting\nwindvoorziening\nwindvrij\nwinnaarspoule\nwinningsplan\nwinstaangifte\nwinstalarm\nwinstbestemming\nwinstplan\nwinstprincipe\nwinterbescherming\nwintercompetitie\nwinterdek\nwinterevenement\nwintergriep\nwinterhardheid\nwinterheide\nwinterkamp\nwinterkermis\nwinterkledij\nwinterland\nwintermode\nwinterpret\nwinterserie\nwintersfeer\nwintersmog\nwintersportseizoen\nwintertraining\nwintertrui\nwintertype\nwinteruitrusting\nwintervlinder\nwinterwerk\nwinterwonderland\nwiskundekennis\nwitwaszaak\nwoelpoot\nwoensdagmarkt\nwoestijncultuur\nwoestijngrond\nwoestijnreis\nwoestijntocht\nwoestijnvlakte\nwoestijnvolk\nwoestijnvos\nwolkenband\nwolkenbasis\nwolkendeken\nwolkenlaag\nwolkenvorming\nwolkkolom\nwolvilt\nwolwasmiddel\nwondbed\nwondergeloof\nwonderpan\nwondgebied\nwoningbouwopgave\nwoningbouwsector\nwoningdichtheid\nwoningenaanbod\nwoningenbestand\nwoningforfait\nwoningkrediet\nwoningkwaliteit\nwoningmarktbeleid\nwoningontruiming\nwoningpatrimonium\nwoningrenovatie\nwoningschaarste\nwoningverkoop\nwoningvraag\nwoonaanbod\nwoonbegeleider\nwoonbehoefte\nwoonbeleving\nwoonbestuur\nwoonbonus\nwoonboulevard\nwoondecoratie\nwoondichtheid\nwoonhuisverzekering\nwoonkamerraam\nwoonkamervloer\nwoonlandfactor\nwoonlandorgaan\nwoonlandpakket\nwoonlandstelsel\nwoonlandverzekering\nwoonlandwetgeving\nwoonlening\nwoonmaatschappij\nwoonoverlast\nwoonplan\nwoonproduct\nwoonprogramma\nwoonquote\nwoonrijp\nwoonschool\nwoonservicezone\nwoonstek\nwoonsubsidie\nwoonunit\nwoonverdieping\nwoonverzekering\nwoonwens\nwoordbegin\nwoordcultuur\nwoordenschatonderwijs\nwoordherkenning\nwoordkennis\nwoordmerk\nwoordniveau\nwoordpakket\nwoordstam\nwoordwaarde\nwoordzoeker\nwordingsgang\nwormbesmetting\nwormenbak\nwormenkuur\nworminfectie\nwormkuur\nworstelpartij\nworstenbrood\nworstenfabriek\nwortelgroei\nwortelhals\nwortelontwikkeling\nwortelopbrengst\nwortelpeterselie\nwortelpuree\nwortelras\nwortelrot\nworteltaart\nworteltjestaart\nwortelvorming\nwortelzone\nwrijvingskracht\nyoghurtsaus\nzaadgoed\nzaadkwaliteit\nzaadmengsel\nzaadmonster\nzaadrok\nzaadteelt\nzaadverspreiding\nzaadvloeistof\nzaadvocht\nzaaghout\nzaagslee\nzaagwerk\nzaaknummer\nzaalpersoneel\nzaalruimte\nzaalseizoen\nzaaluitbater\nzaalverhuur\nzaalvoetbalploeg\nzaalvoetbalteam\nzaalvoetbalwedstrijd\nzadelboom\nzadelhoogte\nzadelkamer\nzadenbank\nzakenclub\nzakendistrict\nzakengeheim\nzakenmodel\nzalmmengsel\nzandbaan\nzandcement\nzanddijk\nzandeiland\nzandfilter\nzandhagedis\nzandhonger\nzandkleur\nzandkop\nzandlandschap\nzandmotor\nzandpiste\nzandschip\nzandtafel\nzandvlieg\nzandvrij\nzandwal\nzangavond\nzangbundel\nzangcoach\nzangdienst\nzangdocent\nzangdocente\nzangduo\nzangervaring\nzangfeest\nzangkwaliteit\nzangleider\nzangmeester\nzangpartner\nzangrepertoire\nzangster\nzangstudie\nzangtechniek\nzangtechnisch\nzangtraditie\nzangwijze\nzaterdagafdeling\nzaterdagbijlage\nzaterdagelftal\nzaterdaghoofdklasse\nzaterdagtak\nzaterdagteam\nzaterdagtitel\nzaterdagwerk\nzeeaas\nzeeboulevard\nzeefbeen\nzeefdrukkerij\nzeehavengeld\nzeehavenpolitie\nzeehondenopvang\nzeehondenslachting\nzeejachthaven\nzeejournaal\nzeekanaal\nzeemeerman\nzeepier\nzeepiraterij\nzeepoplossing\nzeepsteen\nzeeverkeer\nzeevisser\nzeewaterpeil\nzeewierkalk\nzegegebaar\nzegenspreuk\nzeilgebied\nzeilles\nzeilnummer\nzeilpak\nzeilplezier\nzeiltuig\nzeilvoering\nzeilweek\nzeilwereld\nzekerheidsnemer\nzekerheidsovereenkomst\nzekeringenkast\nzelfhulpcursus\nzelfhulpprogramma\nzelfmoordpercentage\nzelfmoordpreventie\nzelfverdedigingswet\nzendelingenwerk\nzenderlijst\nzendermanager\nzendernaam\nzendernummer\nzendingscommissie\nzendingshospitaal\nzendingsreis\nzendontvanger\nzendsignaal\nzenuwbeschadiging\nzenuwblokkade\nzenuwfunctie\nzenuwgeleiding\nzenuwgif\nzenuwkracht\nzenuwletsel\nzenuwschade\nzenuwstimulatie\nzenuwsysteem\nzenuwwortel\nzeskant\nzeslandenoverleg\nzespartijenoverleg\nzetelverplaatsing\nzichtdekking\nzichtvermogen\nzichtzijde\nziekenhuisbloedbank\nziekenhuispastor\nziekenhuisrekening\nziektebed\nziektebesef\nziektekostensysteem\nziekteverzekeringskaart\nziekteverzuimpercentage\nziekteverzuimverzekering\nziektevrij\nziektewinst\nzilverfonds\nzilverklei\nzilverkleur\nzilverrug\nzilversmederij\nzilververf\nzingever\nzinkbad\nzinkfosfaat\nzinkspray\nzinksulfaat\nzinktekort\nzinkwerk\nzittingsrechter\nzoekbedrijf\nzoekcode\nzoekertjessite\nzoekfunctionaliteit\nzoekgeschiedenis\nzoekindex\nzoekingang\nzoekknop\nzoekkosten\nzoekmachinevriendelijk\nzoekmechanisme\nzoekmethode\nzoekoptie\nzoekprofiel\nzoekruimte\nzoekstrategie\nzoekstructuur\nzoekteam\nzoekverkeer\nzoekzone\nzoemgeluid\nzoenpartij\nzolderberging\nzolderopruiming\nzolendraai\nzomerbroek\nzomercolumn\nzomercompetitie\nzomerconcert\nzomereczeem\nzomereditie\nzomerfilm\nzomerfruit\nzomergarderobe\nzomerijs\nzomerkermis\nzomerkeuken\nzomerkledij\nzomerlicht\nzomermarkt\nzomerneerslag\nzomeroorlog\nzomerreis\nzomershow\nzomerstorm\nzomertenue\nzomerterras\nzomertoer\nzomertoerisme\nzomertornooi\nzomertraining\nzomertype\nzomerverlof\nzomerweek\nzondagafdeling\nzondagcompetitie\nzondageditie\nzondagmarkt\nzondagrust\nzondagselectie\nzondagteam\nzonenoverschot\nzonesysteem\nzonevreemdheid\nzoogtijd\nzoomfactor\nzorgadviesteam\nzorgafdeling\nzorgarrangement\nzorgautoriteit\nzorgbedrijf\nzorgbemiddeling\nzorgboer\nzorgcentrale\nzorgconcept\nzorgconsulent\nzorgconsumptie\nzorgcoördinatie\nzorgeconomie\nzorgeenheid\nzorggebied\nzorggebruiker\nzorgindicatie\nzorginstantie\nzorgkamer\nzorgkwaliteit\nzorgland\nzorgmakelaar\nzorgmanagement\nzorgmarketing\nzorgmodel\nzorgnetwerk\nzorgniveau\nzorgpad\nzorgplatform\nzorgpost\nzorgpraktijk\nzorgproductie\nzorgprogrammering\nzorgpunt\nzorgregeling\nzorgregio\nzorgsituatie\nzorgstaat\nzorgsteunpunt\nzorgtoewijzing\nzorgvastgoed\nzorgveld\nzorgverzekeringsstelsel\nzorgzwaartebekostiging\nzorgzwaartepakket\nzoutbad\nzoutbalans\nzoutbelasting\nzoutfabriek\nzoutgebruik\nzoutgeld\nzouthotel\nzouthuishouding\nzoutindustrie\nzoutinname\nzoutkorst\nzoutlaag\nzuidbeuk\nzuidbrug\nzuideiland\nzuideinde\nzuidfront\nzuidhelling\nzuidhoek\nzuidoostzijde\nzuidwand\nzuidwestzijde\nzuigbehoefte\nzuigreflex\nzuigritme\nzuigspanning\nzuigzoen\nzuilenhal\nzuipfestijn\nzuivelbeleid\nzuivelboerderij\nzuivelfabrikant\nzuiveringsbeheer\nzussendag\nzusterclub\nzusterflat\nzustertaal\nzuurbad\nzuurkoolschotel\nzuurkoolstamppot\nzuuroplossing\nzuurproductie\nzuurstofbehoefte\nzuurstofdruk\nzuurstofgas\nzuurstofniveau\nzuurstofnood\nzuurstofpercentage\nzuurstofspanning\nzuurstofsysteem\nzuurstoftherapie\nzuurstofwater\nzwaailamp\nzwaardkast\nzwaardveger\nzwamverhaal\nzwamvlok\nzwangerschapsbegeleiding\nzwangerschapscontrole\nzwangerschapsgym\nzwangerschapskleding\nzwangerschapsmaand\nzwangerschapsmisselijkheid\nzwangerschapssuiker\nzwangerschapsweek\nzwavelgeur\nzweeffase\nzweefmoment\nzweefvliegclub\nzweefvliegveld\nzweefvuil\nzweepstaart\nzweethut\nzweettest\nzweetverlies\nzwemadvies\nzwembadbar\nzwembadcomplex\nzwembril\nzwemgedeelte\nzwemgerief\nzwemhal\nzwemjuf\nzwemkledij\nzwemloop\nzwemluier\nzwemmarathon\nzwemmeer\nzwemonderdeel\nzwemplas\nzwemplateau\nzwemplatform\nzwemruimte\nzwemsessie\nzwemshort\nzwemtechniek\nzwemtest\nzwemtocht\nzwemtraining\nzwemtrap\nzwemvaardigheid\nzwemzone\nzwenkarm\nzwerfkunst\nzwerfvuilprobleem\nzwerfwagen\naanbiedingsplicht\naansluitstuk\naanvangsbegeleiding\nachtergrondwaarde\nacteeropleiding\nactiviteitendag\nafzuigcapaciteit\nanalyseschema\navondstilte\nbakkeet\nbalanspunt\nbandenstapel\nbankschuld\nbasisoorzaak\nbekkenbeheerplan\nbeleggingswaarde\nbeloningsdifferentiatie\nberekeningsprogramma\nbergroute\nberichtvenster\nbeslissingsondersteunend\nbewijsregel\nbezinningsruimte\nbloedkweek\nbloemenverkoper\nboekingsagent\nboerenlucht\nbosexploitatie\nbosrit\nbouwbeslag\nbouwvergunningaanvraag\nbrandsoftware\nbrandweermaterieel\nbrochurevorm\nbuffetontbijt\nbuurtplan\nchampignonmest\nclaimformulier\ncockpitkap\ncollectieregistratie\ncomedyshow\nconcurrentiebeperkend\nconcurrentiestrategie\nconsumptiemarkt\ncontroledwang\ncrisistop\ncultuuroverheid\ndaadloos\ndakbaan\ndansevenement\ndansvereniging\ndetacheringsrichtlijn\ndienstenchequebedrijf\ndierenzorg\ndieselaggregaat\ndijkgat\ndiplomademocratie\ndocumentinvoer\ndoelbepaling\ndoopinschrijving\ndragergas\ndramademocratie\ndramastuk\ndriezitter\nduikarbeid\nduikervaring\nduiktijd\nduinriet\nduoticket\ndweilband\nechtscheidingsbeschikking\neditiewetenschap\neendenfamilie\neenheidskandidaat\neffectenlease\neigendomsovergang\neilandleven\neindlid\neindoplevering\nemancipatiepartij\nenergiestrategie\nerosiebestendigheid\nexamenbureau\nexameninstelling\nfamiliefestival\nfamiliegeluk\nfeitenvaststelling\nfietsbranche\nfietsongeluk\nfolkpop\nformatieruimte\nfruitteeltbedrijf\nfunctiegebonden\ngardedans\ngazonmest\ngebruikersparticipatie\ngeestesgeschiedenis\ngegevenslevering\ngeldschuld\ngelegenheidsduo\ngezondheidsinspecteur\nglaslat\ngolfbelasting\ngoochelact\ngrafkerk\ngrindvloer\nhandboogsport\nhandelingsverlegenheid\nhandtekeningensessie\nhardwareplatform\nharingtest\nhavenarts\nhelikoptercapaciteit\nhemelsleutel\nhockeytraining\nhoofdcontract\nhoofddomein\nhoofdgroenstructuur\nhoofdwaterleiding\nhoutkwaliteit\nijswand\nindexpatiënt\ninformatiefiche\ninsectenleven\ninternetkanaal\ninvesteringsregering\ninzetperiode\njazzafdeling\njeugdtornooi\nkaartlegger\nkaasmatrix\nkaassmaak\nkankerzorg\nkerncollectie\nkiemplant\nkinderopera\nklantbelang\nklasleraar\nklemtoonverlichting\nklimpartner\nkoeienvla\nkookplaats\nkoolstofbron\nkorrelverdeling\nkostennota\nkraamstal\nlandbouwwerk\nlandencode\nlastechniek\nledensite\nleerlingenbegeleider\nlenteperiode\nlesgebonden\nlijnolieverf\nloonstudie\nloopcircuit\nluchtdreiging\nluchttransportvloot\nmachineveiligheid\nmassademocratie\nmeditatieles\nmeerderheidsgroep\nmeerjarenproject\nmeetlocatie\nmelkput\nmilieuzonering\nmodelvliegsport\nmutatiedocument\nmuurgedicht\nmuziekbeurs\nmuziekteam\nnachtcyclus\nnatuurverering\nnetwerkbelasting\nnetwerkkwaliteit\nnitraatresidu\nnoodvoeding\nobjectafbakening\noestervocht\nonderzeebootbestrijding\nonthaalgebouw\nonthaalklas\nontvangstgebouw\noogchirurgie\noperagebied\nopleidingsstructuur\nopnameformulier\noppervlaktevloot\noppervlaktevuil\nopstalgever\nopstalhouder\nopvolgingscommissie\nplaatsnamenregister\nprachtblad\nproefbaar\nproeflocatie\nprogrammeercode\npropagandadienst\nprostitutieverleden\npusvorming\nrandafzuiging\nreactieknop\nreferentiebeeld\nregelbereik\nrekenschema\nreparatiedienst\nreservepersoneel\nrijpedaal\nringstructuur\nrisicobedrag\nrisicobron\nrisiconorm\nrotstempel\nsalarisindicatie\nschaatsdag\nschildvoet\nschootsteek\nschorpioenvis\nschrijftest\nschuifsterkte\nselectietraining\nslotrace\nslotzaal\nsolvabiliteitsmarge\nspeelruimtebeleid\nspoeltafel\nsportcompetitie\nstartfunctie\nstartuur\nsteenbekleding\nsteenfruit\nstortdouche\nstraatpolitiek\nstressgevoeligheid\ntalenbeleid\nteeltjaar\ntekstvers\nterrasweer\nterreinonderzoek\nterreinvaardigheid\ntextielverleden\nthemakleding\ntotaaleffect\ntotaalzorg\ntrainingsmissie\ntypecertificaat\nuitzendstraat\nundergroundscene\nvaarbevoegdheid\nvaarbevoegdheidsbewijs\nvastgoedinformatie\nveiligheidspartner\nverbindingscentrum\nvergrijzingsvraagstuk\nvermogensfonds\nverwarmingsapparaat\nverwervingsvoorbereiding\nvistas\nvliegduur\nvoersysteem\nvoorbeeldberekening\nvoorruitverwarming\nvoorschouw\nvoortplantingswater\nvrachtafhandeling\nvrachtvolume\nvrouwenbrein\nvruchtenpulp\nwaardebehoud\nwaarschuwingsplicht\nwafelenbak\nwandelpool\nwaterfeest\nwaterstoftank\nwedstrijddeelname\nwelkomstcadeau\nwensboom\nwereldvaluta\nwerkdiepte\nwijkbestuur\nwijnleverancier\nwoningpark\nworkshopleider\nzendingsgebied\nzoekmachinemarkt\nzuivelketen\nzuiveringstechnisch\nzweefvliegsport\naandeelhoudersvereniging\nafdrukstand\nafvalstoffenbelasting\nakkerlandschap\narbeidsomvang\nassociatieraad\nautopiloot\navondkaart\nbandenspoor\nbasisframe\nbasisrentevoet\nbasisservice\nbeschermingsfonds\nbestuurskrachtmeting\nbeursrally\nbewonersinitiatief\nbroedrijp\nbruiloftsmuziek\ncargoschip\ncompetentiebeleid\ndamescompetitie\ndataformaat\ndenkmethode\ndienstenhandel\ndubbeldiagnose\nduikbootoorlog\nduosprong\nemancipatieambtenaar\nenergiewaakhond\nexploitatieverbod\nfestivalwei\nfitnessabonnement\ngasdoorvoer\ngasverwarming\ngebruikersinformatie\ngedragsregulering\ngedragsverbetering\ngeldingsduur\ngeneeskundestudie\ngeneesmiddelendistributie\ngordellijn\ngraadanciënniteit\ngrafrecht\ngramgewicht\ngrastoernooi\ngroeimogelijkheid\ngroeiregio\ngrondgetal\nhandelscomité\nherkomstnaam\nhiphopartiest\nhoofdafgevaardigde\nhoofdbemanning\nhoofdverdeler\nhoofdwerktuigkundige\nhoogzit\nhuistaal\nhumorgehalte\nhypotheekwet\nidentiteitsdocument\nijsbar\nijsklont\nijskoffie\nijsmaker\nijsverkoop\nijszeiler\nindianenfeest\ninformatiedienstverlening\ninktaap\ninloopbijeenkomst\ninspectietoezicht\ninstrumentkeuze\ninterieurconcept\ninterieurgebied\ninternetbestelling\ninternetdomein\ninternetleverancier\ninternetzuil\ninterventiecapaciteit\ninvesteringsgolf\njaarprognose\njodiumgebrek\njongbroed\nkanoclub\nkanoverhuur\nkansenongelijkheid\nkansenverhouding\nkapitaaloperatie\nkerkbalans\nkerkbegrip\nkerstvoetbal\nkeuzeformulier\nkeuzeonderwerp\nkiezersgedrag\nkinderbeschermingsmaatregel\nkinderland\nkippenkweker\nklaagbrief\nklassenbeweging\nklassensamenleving\nklassenverzoening\nklimmaat\nklimvermogen\nknipafval\nknopdruk\nkoelapparatuur\nkoeltechnisch\nkonijnenpak\nkonijnenplaag\nkookolie\nkorfbaltoernooi\nkorpsoverste\nkostenregeling\nkostenverschil\nkrachtvoertuig\nkringloopsluiting\nkruipafstand\nkwaliteitsbewaker\nkwaliteitsfunctionaris\nkweekwijze\nlandbelofte\nlandgoederenzone\nlaptoppen\nlaptopscherm\nlaserafstandsmeter\nlasverbinding\nledenregistratie\nlesschema\nlestijdenpakket\nlevenscrisis\nlevensloopproduct\nlevensverzekeringscontract\nlichtstudie\nliefdeskracht\nlievelingsprogramma\nlievelingsstad\nlongbeschadiging\nloonpakket\nloophulp\nloopjaar\nluchtcomponent\nluchtdoel\nluchtpistool\nluchtuitlaat\nmaandageditie\nmaandrecord\nmanagementtool\nmanifestatiedrang\nmarketingmateriaal\nmarktenzaal\nmarktvergroting\nmaximumgehalte\nmeerproduct\nmelkcontrole\nmengvat\nmerkkeuze\nmigrantenvraagstuk\nmilieulabel\nmilieuterrein\nmiljoenenbudget\nmistwolk\nmobiliteitsorganisatie\nmoslimregime\nmotornummer\nmuntsysteem\nmusicalopleiding\nmuziekkunst\nnaakthond\nnachtkleed\nnachtprogrammering\nnatriumconcentratie\nneerhouder\nnestbak\nnetwerkprovider\nnierspecialist\nnooddienst\nnoodlening\noceaanstroming\noliebollenmix\nondernemingswaarde\nonderwijscoördinator\nonderwijsopleiding\nonderwijsvak\nonderwijzersgezin\nonthaalbediende\nontwerpcontrole\nontwikkelingspolitiek\noogfunctie\nopeningstentoonstelling\nophaalbeurt\nopstandingsdag\nopvoedingsverantwoordelijkheid\norgelmakerij\nouderentoeslag\noudervogel\noverblijfouder\noverheidsplanning\noverheidssite\npaardentrainer\npapiervorm\npoëzieproject\nprivémail\nproductstrategie\nprojectvennootschap\nratingverlaging\nrayonbestuur\nrecessievrees\nreisverzekeraar\nreminstallatie\nremiseclaim\nrenteperiode\nrentesneeuwbal\nrepetitiebezoek\nrookalarm\nschiethouding\nsoepbedeling\nsoldijkantoor\nspaarboek\nspaargarantie\nspermacentrum\nspermaopslagcentrum\nsportmagazine\nsportnamiddag\nspreekruimte\nstatenoplossing\nstierenloop\nstimulusplan\nstoomzuivelfabriek\nstraalbeen\ntijdstempel\ntoezichtcentrale\ntoiletgerief\ntuindag\ntuinslak\nvakantietoelage\nveiligheidskopie\nventielgat\nvermogensvoordeel\nverzorgingsvoorziening\nvisumvrij\nwagenbeheersing\nwandgraf\nwaterstofproductie\nwerfbezoek\nwijkverbod\nwintergarderobe\nzendingsopdracht\nziekenhuisfactuur\nziekteverzuimbegeleiding\nzoekmarkt\nademhalingstherapie\nbasisbelasting\nbegijnenleven\nberoepsfierheid\nbeschavingsoorlog\nbordtekening\nbufferoplossing\nbuikvocht\ncachepagina\ncircusgezelschap\ncommunicatiemaatschappij\ndakdichting\ndeelnota\ndekglas\ndocumentstructuur\ndocumentvenster\ndoelkapitaal\ndoorgifteplicht\neffectenstudie\neisenplatform\nenergiebox\nfilmticket\nfilterbed\nfitnessbranche\ngebouwbeheersysteem\ngeitenpad\ngemeenschapsbeleid\nglasblad\nherstelbedrijf\nhoofdnavigatie\nhulpverleningsdienst\nijshockeybaan\ninitiatiefloos\ninschakelduur\ninsectenverdelger\ninspanningscapaciteit\ninternetinformatie\nisolatiedikte\nkaliumcarbonaat\nketendenken\nklankkarakter\nkrakersscene\nlandbouwweg\nlassnelheid\nleegstandspercentage\nlettervormgeving\nlevercel\nlichtwerk\nlijninfrastructuur\nmanagementtaak\nmannenpak\nmelkkelder\nmilieucommissaris\nminimumbezetting\nnoodkap\nnoodlijst\nobjectglas\nochtendvoeding\noeverkant\nondernemersnetwerk\nontstekingsactiviteit\nontwikkelkracht\nopvanginitiatief\noverheidstoelage\npaaltjesroute\npaardenbeen\nparkweg\nparkzijde\npashok\npassantentarief\npatiëntenbelang\npensioenbeheer\npersoonlijkheidsprojectie\npijnreductie\nplantendek\nplanwijziging\nplasvorming\nplatland\nplatschelp\npluktuin\npostbehandeling\nposterpresentatie\nprijscalculatie\nprikkelverwerking\nprivébelang\nprivéhuis\nprobleemdrinken\nproductieklimaat\nprofielontwikkeling\nprojectdag\nprojectmap\npuntenkaart\nracecarrière\nreferendumvraag\nregentencultuur\nregeringssamenwerking\nrelaxfauteuil\nreparatiemortel\nrepetitiehok\nreserveschandaal\nreservevermogen\nrisicobasis\nruimteregeling\nsaneringsdoelstelling\nschakeldraad\nschipperskwartier\nschorzijdebij\nschrijftechniek\nschuilhok\nscreeningsmethode\nsedimentaanvoer\nsedimenttransport\nserverniveau\nshockrocker\nsleepreis\nsluitingsmechanisme\nspeelaard\nspierbuik\nspringzaad\nstrekstand\nsubstraatlaag\ntaakoverheveling\ntapijthandelaar\ntempoverschil\ntherapiekeuze\ntoetsbeleg\ntriglyceridengehalte\ntuinafscheiding\ntunnelveiligheid\nvergunningsbeleid\nverkoopbalie\nvloerpas\nvoegmateriaal\nvrouwenband\nwakeboard\nwatersportstad\nwereldbewustzijn\nwereldervaring\nalarmlijst\nartikelvorm\nbakbeurt\nbeslissingstermijn\nboekenvoorraad\nboerenechtpaar\nboerenkarper\nbosplant\nbrandput\nbuikhoogte\nbusinessgroep\ncertificatenverplichting\ncoördinatiestructuur\ndoofblindheid\neindshot\nfantasieland\nfasediagram\nfestivalpark\nfilmwetenschap\ngelijkstroommotor\ngeneratieprobleem\ngevangenisplunje\ngezondheidseducatie\ngrammaticaboek\nhandelsvloer\nhoofdeenheid\nhoogrendementsglas\nhulpvariabele\ninlogaccount\ninslagdraad\njeugdsite\njubileumavond\nkaartweergave\nkantelproef\nklimaatcampagne\nlabojas\nmagneetventiel\nmarktorganisatie\nmigrantenprobleem\nmilieudegradatie\nmodelleerling\nnatuurliefde\nnestboom\nnoodloop\nooglaser\nopdrachtenblad\nopdrachtenportefeuille\nopleidingsconcept\npaardenkamp\npaardoffer\npartijverband\nplannenregister\nprijzenbeleid\nprivébezoek\nproefdiermodel\nprojecteigenaar\nprojectlading\nregeringspropaganda\nregeringsreglement\nrestaurantsector\nrotskruiper\nschadevergoedingsrecht\nspeelkasteel\nspinnensoort\nsportbeurs\nsporthuis\nsportiviteitsprijs\nstaatsgedachte\nstaatsleven\nstartrelais\nstatenpraktijk\nsteenbouw\nstemtraining\nstollingssysteem\nstookwijn\nstraatgebruik\nstrandpost\nstrekzijde\nstudentenavond\nstudentenbegeleider\nstudieduurverlenging\nstuwpand\nsuikerrijk\nsuperduur\nswingpaleis\ntabeltarief\ntandwieloverbrenging\ntantelief\ntelefoonmodem\ntenorpartij\nterugkeercapsule\ntijdschriftenrek\ntijdsindicatie\ntijdsvak\ntitelwijziging\ntoekomstdenken\ntoekomstschade\ntoeristenverkeer\ntoetredingsleeftijd\ntoevoegmateriaal\ntoezichtorganisatie\ntopsportstatuut\ntrappaal\ntraumakamer\ntreinaanbod\ntrekdraad\nvaasleven\nvakantieman\nvakantietegoed\nvaststellingsbesluit\nvederkleed\nveelvolkerenstaat\nveeprijskamp\nveiligheidsprotocol\nveiligheidstoestand\nveldbiologie\nveldzuring\nverbindingsboog\nverdedigingsgracht\nverdedigingshond\nverdedigingssport\nverdeelinrichting\nverffilm\nverlichtingsfundamentalisme\nverversingsstation\nvervoermaterieel\nvervolgdebat\nvillabuurt\nvissentijdperk\nvisserijschool\nvisstroperij\nvistechniek\nvisveiling\nvliedberg\nvliegwereld\nvochtbehoefte\nvochtgevoelig\nvoertuigpark\nvoorklep\nvreemdelingenstandpunt\nvrijwilligerswet\nwerkbon\nwerpcirkel\nwinstlogica\nwolftoon\nzakenrecht\nzeefdrukker\nzeillogger\nzuidpier\nzuurstofproductie\nalertering\nattendering\nbalancering\nbevoorschotting\nbeworteling\nbinnentreding\nbruining\ncommittering\ncontractering\ndeponering\nherprioritering\nmandatering\nontgrendeling\nontsnippering\nontstopping\nontworming\nsaldering\nschoning\nscoring\nslaging\nteruggeleiding\nteruglevering\nterugmelding\ntuning\nuitfasering\nverspaning\naangeschotenheid\nachterstalligheid\nadequaatheid\naftapbaarheid\naftelbaarheid\nauthentiekheid\nbehandelbaarheid\nblootheid\nbovenmatigheid\ncoolheid\ndrachtigheid\ndrinkbaarheid\neenhandigheid\nenkelvoudigheid\nernstigheid\nhipheid\nhoofdelijkheid\nidentificeerbaarheid\nillegaalheid\nintegreerbaarheid\ninteressantheid\nkostendekkendheid\nleverbaarheid\nmakkelijkheid\nmedeaansprakelijkheid\nmeerheid\nmerkbaarheid\nonbeschikbaarheid\nonderhoudbaarheid\nonkenbaarheid\nonontvankelijkheid\nonschuldigheid\nonverwijldheid\nonverzekerbaarheid\nonvolwaardigheid\nonvoorzienbaarheid\noverdrachtelijkheid\novermatigheid\npassendheid\nrealiseerbaarheid\nreinigbaarheid\nschriftelijkheid\nschrijnendheid\nspoedeisendheid\nuitwonendheid\nvernietigbaarheid\nverschuldigdheid\nvoorwaardelijkheid\nvoorzienbaarheid\nwinbaarheid\naaltjesadvisering\naanbestedingsproces\naanbiddingsleider\naangifteplichtige\naanpasbaarheid\naanrijdingsschade\naansluitleiding\naanvangsdosering\naanvangsleeftijd\naanvoerleiding\naanzuigleiding\naardedraad\naardgasleiding\naardingsweerstand\naccijnsplichtige\nactiveringsbeleid\nactiveringsdwang\nactiveringsprocedure\nadoptieproces\nadviesdosering\nadviesproces\nafbakeningslijn\nafbakeningsproces\nafdichtingslaag\nafleesbaarheid\naftoppingsgrens\nafvalrecycling\nafweerstelsel\nafwegingskader\nafwerkingskwaliteit\nafwerkingslaag\nafwerkingsniveau\nalerteringssysteem\napplicatieontwikkelaar\narbeidsinschakeling\nasfaltverharding\nassemblagemedewerker\nautomatiseringsproces\nbackdrop\nbackservicelast\nballetjespistool\nbankrun\nbaringskanaal\nbaskant\nbedekkingsgraad\nbeeldvervorming\nbegeerteleven\nbegeertelichaam\nbegeleidingsproces\nbegrazingsgebied\nbegrotingsproces\nbegunstigingstermijn\nbehandelproces\nbeheerbaarheid\nbekistingsplaat\nbelastingaftrekbaar\nbeleggingsdepot\nbeleggingsproces\nbeluchtingsvat\nbemiddelingsproces\nbenaderbaarheid\nbeoordelingsproces\nbepalingsmethode\nbereidingsproces\nberijdbaarheid\nbeslisproces\nbestelproces\nbestratingsmateriaal\nbestuursbeurs\nbestuursprocesrecht\nbetalingsautoriteit\nbetalingsproces\nbetekenisvorming\nbetrekkingsniveau\nbetrekkingsomvang\nbeverleiding\nbewaarbaarheid\nbeweegprogramma\nbewerkbaarheid\nbewijsrisico\nbewijsverkrijging\nbewustmakingscampagne\nbewustzijnsproces\nbezoldigingsbeleid\nbezoldigingsregeling\nbezwaarverzekeringsarts\nbeëindigingsovereenkomst\nbiedproces\nbliksemontlading\nbloedingsneiging\nbloedingstijd\nbloedingsziekte\nbloedstuwing\nblokkeringsregeling\nboekstuk\nboekverzorging\nbomenstichting\nbouwkost\nbouwspeeltuin\nbreukzak\nbroedproces\nbroeikast\nbuitdrift\ncabinedruk\ncashmanagement\ncellenstructuur\ncertificeringsinstantie\ncertificeringssysteem\ncertificeringstraject\nchristusenergie\nclubactie\ncoachingsgesprek\ncoachingspraktijk\ncoachingsproces\ncoachingstraject\ncompartimenteringsregeling\ncomposteringsproces\ncontroleproces\ncovergisting\ncoördinatieproces\ncreatieproces\ndagafdekking\ndagdosering\ndatabekabeling\ndeelnemingsformulier\ndefensiehervorming\ndeltaland\ndempingssysteem\ndesignproces\ndiepgroen\ndigitaliseringsproject\ndijktraject\ndoelgroepenbad\ndoeloorzaak\ndoodaas\ndoorzoekbaarheid\ndoseringsschema\ndriftbevrediging\ndrogingsproces\ndroomwagen\ndubbelbed\ndubbelpion\ndubbelpost\nduurzaamheidsvereiste\neindafwerking\neindgeneriek\neindverhandeling\nelektriciteitsstation\nemissiebeperkingssysteem\nenergiehandel\netiketteringsplicht\netiketteringssysteem\nextensiveringsgebied\nfactureringssysteem\nfalsifieerbaarheid\nfilmgevoeligheid\nfilmproces\nfotosyntheseproces\nframemaat\nfrontstage\nfunctietoewijzing\nfunctioneringsgebied\ngarantsteller\ngeboorteproces\ngebruikershoeveelheid\ngedachteproces\ngedoogplichtige\ngeelkuur\ngeheelheid\ngeheimdienst\ngehoorscreening\ngeleidingsdraad\ngeleidingsverlies\ngeloofsbasis\ngeloofsboek\ngeloofscultuur\ngeloofsdoop\ngeloofservaring\ngeloofsfanaat\ngeloofsgesprek\ngeloofsgoed\ngeloofskennis\ngeloofskeuze\ngeloofskracht\ngeloofsleerling\ngeloofsonderricht\ngeloofsopvoeding\ngeloofsoverdracht\ngeloofspraktijk\ngeloofsstroming\ngeloofssysteem\ngeloofsvorm\ngeluidbeleid\ngeluidisolatie\ngeluidproductie\ngeluidreductie\ngeluidscompositie\ngeluidsdemping\ngeluidsdruk\ngeluidsdrukniveau\ngeluidsemissie\ngeluidsenergie\ngeluidsinformatie\ngeluidsintensiteit\ngeluidsnet\ngeluidsomgeving\ngeluidsontwerp\ngeluidsprobleem\ngeluidsset\ngeluidssituatie\ngeluidsspectrum\ngeluidsspoor\ngeluidstechniek\ngeluidstrack\ngeluidsveld\ngeschiedenisvervalsing\ngevangenisleiding\ngoedkeuringsproces\ngrafstede\ngrondwateronttrekking\ngunningsbeslissing\ngunningsprocedure\ngunningswijze\nhandelsrente\nhechtgebonden\nheelwording\nheffingsplichtige\nherbeoordelingsoperatie\nherinvesteringsreserve\nherroepingsrecht\nherzieningsproces\nhoofdproces\nhoofdzekering\nhooglied\nhoogrendement\nhoudingsverandering\nhuisvestingsbehoefte\nhuisvestingsdienst\nhuisvestingsgebied\nhuisvestingsmarkt\nhuisvestingssector\nhuurbeëindiging\nillustratieproces\nimplementatieproces\ninburgeringsplichtige\nindicatieproces\nindieningsdatum\ningenieurswereld\ninhoudingsplicht\ninkoopproces\ninperkingsniveau\ninsluitingslinie\nintegratietegemoetkoming\ninterpreteerbaarheid\nintervisieproces\njaarrekeningenrecht\njeugdboekenweek\njongheid\nkadering\nkankerproces\nkastendiscriminatie\nkennisproces\nkerkleiding\nketeninformatisering\nketenomkering\nketenproces\nkeuringsbewijs\nkeuringsdatum\nkeuringsfrequentie\nkeuringsinstelling\nkeuringsuitslag\nkeuringsverslag\nkeuzeset\nkinderverwaarlozing\nklapvoet\nklasgroep\nklassebak\nklassevol\nkleedaccommodatie\nkleptiming\nkleurpalet\nkleurprofiel\nkleurschema\nkoelingssysteem\nkoopproces\nkostentoedeling\nkostentoedelingsverordening\nkredietoverschrijding\nkruisigingsact\nkwaliteitsborgingsstelsel\nkwaliteitszorgproces\nkwartuur\nkwijtingsprocedure\nlaagmasker\nlandboek\nlandbouwbevolking\nlandbouwgemeente\nlanghaar\nlasproces\nleesproces\nletterlijkheid\nlevensbedreiging\nlichtbol\nlichtdoorlatendheid\nlichtgeleider\nlichthoeveelheid\nlichtjestocht\nlichtloos\nlichttoetreding\nlichtverstrooiing\nlijnenplan\nlinkerbal\nloofdoding\nloondoorbetalingsverplichting\nloopbaancoaching\nluchtbevochtiging\nluchthoeveelheid\nluchtmassameter\nluchtverkeersbeheernetwerk\nmachtsafstand\nmachtsdeelname\nmachtsdrang\nmachtsgeil\nmachtsgeilheid\nmachtshandhaving\nmachtsoverwicht\nmachtsperiode\nmachtspoliticus\nmachtsproces\nmachtssysteem\nmachtswil\nmanoeuvreerbaarheid\nmarketingproces\nmarktafscherming\nmarktbevraging\nmarktleiding\nmarktproces\nmaximumhoeveelheid\nmededelingsplicht\nmeeneembaarheid\nmeerpersoonscel\nmestvergisting\nmiddelloonregeling\nmigratieproces\nmilieureglementering\nminimumhoeveelheid\nmondingsgebied\nmonsterlijkheid\nmonsternemingstijdstip\nmontagelijn\nmotortuning\nnagelstyling\nnalevingsgedrag\nnalevingskosten\nnatuurrichtplan\nnestdrang\nnetwerkbekabeling\nnetwerktoegang\nnoodweersituatie\nnormschending\nomheiningsmuur\nomkeringsregel\nomvormingsproces\nomwentelingsproces\nomzettingsproces\nondernemingsconferentie\nonderzoekgebied\nonderzoekruimte\nonderzoekteam\nontgiftingsproces\nontginningsgebied\nontlastingsonderzoek\nontlastingspatroon\nontsnappingsplan\nontwormingsmiddel\nopgravingsterrein\nopnameproces\nopneembaarheid\nopstartproces\nopvoedingsproces\nopzegverbod\norderproces\noudergeleding\noverbelastingsblessure\noverdrachtsformulier\noverdrukbeveiliging\novereenstemmingsbeoordeling\noverlegproces\noverspanningsbeveiliging\novertredingspercentage\noverwinteringsplaats\npaginamarkt\npaltsgravin\npanterprint\nparfumwereld\nparticipatieproces\npartijdebat\npensioneringsleeftijd\npersoonsinformatie\npersoonsniveau\npeulschil\nplafondafwerking\nplanningsfase\nplanningsinstrument\nplanningsnorm\nplanningsproces\nplanningssysteem\nplanningstool\nplantoelichting\nplanvormingsproces\npoedercoating\npretecho\nprijsbijstelling\nprocesaanpak\nprocesanalyse\nprocesarchitectuur\nprocesautomatisering\nprocesbegeleiding\nprocesbelang\nprocesbenadering\nprocesbeschrijving\nprocesbewaker\nprocesdenken\nproceseigenaar\nprocesgericht\nproceshouding\nprocesinformatie\nprocesinrichting\nprocesinstallatie\nproceskant\nprocesketen\nproceskostenveroordeling\nprocesmodel\nprocesmodellering\nprocesmonopolie\nprocesontwerp\nprocespartij\nprocespraktijk\nprocesrisico\nprocesschema\nprocessturing\nprocesverbetering\nprocesverloop\nprocesverslag\nproductontwikkelingsproces\nproefscheiding\nprofessionaliseringsslag\npublicatieproces\nraadplegingsprocedure\nraadplegingsproces\nradicaliseringsproces\nrandafwerking\nrapporteringsvaluta\nrechtsklacht\nrechtsproces\nrechtstatelijkheid\nreferentiehoeveelheid\nreflectieproces\nregistratieproces\nreguleringsinstantie\nreguleringsmanagement\nreguleringsperiode\nreisbevrachting\nrekenproces\nreproductieproces\nreserveringsafdeling\nreserveringsformulier\nrestauratieproces\nrestzoet\nrijpingsperiode\nrijpingstijd\nrijsproces\nrompbevrachting\nsamenwerkingsproces\nscanproces\nschadevergoedingsmaatregel\nscheidingsconstructie\nscheidingsvlak\nscheppingsgedachte\nscheppingsorde\nscheppingsplan\nscheppingsweek\nschiftingsvraag\nschijnheil\nschimmelaantasting\nschuilstal\nschurftaantasting\nslachtproces\nsnijproces\nspaarwezen\nspeelbaarheid\nspellingsherziening\nspijsverteringsproces\nspijsverteringssysteem\nspoortalud\nsportvis\nspreidingspunt\nsprookjesvorm\nstaatskunde\nstadsaanzicht\nstadsadministratie\nstadsarcheologie\nstadsbank\nstadsbegroting\nstadsbeheer\nstadsbeleid\nstadsblad\nstadsbos\nstadscafé\nstadsdebat\nstadsdistributie\nstadsfeest\nstadsfeestzaal\nstadsfestival\nstadsgedicht\nstadsgemeenschap\nstadsgrens\nstadshal\nstadshistoricus\nstadshotel\nstadskanker\nstadskant\nstadslijn\nstadslijst\nstadsmagazijn\nstadsmagistraat\nstadsmeubilair\nstadsmilieu\nstadsmonitor\nstadsnaam\nstadsniveau\nstadsomgeving\nstadsomroep\nstadsomroeper\nstadsonderwijs\nstadspolitie\nstadsradio\nstadsrekening\nstadsreporter\nstadsspel\nstadsstrand\nstadsstructuur\nstadstoer\nstadstoren\nstadsverlichting\nstadsvijver\nstadswarmte\nstadswater\nstadswinkel\nstadszender\nstadszijde\nstartdosering\nstemproces\nsteunberm\nstockoplossing\nstoffenbeleid\nstoomleiding\nstructuurplanningsproces\nstudentengeleding\nstudentenradio\nstuurbaarheid\nsuperlief\nsupermarktland\ntankcontainer\ntempelberg\ntermijnagenda\nterrorismeproces\ntestgebruik\ntestkaart\ntestkamer\ntijdbevrachting\ntijddruk\ntijdgewricht\ntijdinterval\ntoelichtingsnota\ntoetsbaarheid\ntoewijsbaarheid\ntoezichtstaak\ntotstandkomingsproces\ntrainingsproces\ntreindienstleiding\ntrekontlasting\ntroepenleiding\nuitademingslucht\nuitbestedingscontract\nuitbetalingsinstelling\nuitbuitingsgraad\nuitbuitingssysteem\nuithardingstijd\nuitlaatgasnabehandelingssysteem\nvarkensrecht\nvechtdrift\nvechtscheiding\nveiligheidscertificering\nveranderbaarheid\nveranderproces\nverbeterproces\nverdampingsproces\nverdedigingsdrift\nverdraagbaarheid\nverdrijvingspolitiek\nverdrogingsbestrijding\nverdubbelingstijd\nvergistingsinstallatie\nvergunningplichtige\nvergunningsplichtige\nverhaalbaarheid\nverkavelingsaanvraag\nverkavelingspatroon\nverkavelingsvergunning\nverkeersactie\nverkeersafdeling\nverkeersarm\nverkeersbelang\nverkeersbrigade\nverkeersbureau\nverkeersfunctie\nverkeersgeluid\nverkeerskennis\nverkeersknip\nverkeersleefbaarheid\nverkeersleidingssysteem\nverkeersmodel\nverkeersnetwerk\nverkeersofficier\nverkeersopvoeding\nverkeersorganisatie\nverkeersouder\nverkeerspaal\nverkeerspark\nverkeersplateau\nverkeersplatform\nverkeerspost\nverkeersquiz\nverkeersrechter\nverkeersruimte\nverkeersschool\nverkeerssnelheid\nverkeersvolume\nverkeringstijd\nverkrijgingsprijs\nverleggingsregeling\nvermijdgedrag\nvermogensmutatiemethode\nvernietigingsproces\nverpondingsregister\nverrijkingsproces\nverslavingsarts\nverslavingsbeleid\nverslavingspreventie\nverstedelijkingsbeleid\nverstedelijkingsdruk\nvertegenwoordigingsbevoegdheid\nverteringskanaal\nverteringsstelsel\nvervaardigingsprijs\nvervangbaarheid\nvervangingstheologie\nvervormbaarheid\nverwarringsgevaar\nverwateringsrisico\nverwisselbaarheid\nverzekeringstegemoetkoming\nverzendbewijs\nverzenddatum\nverzendmethode\nverzendwijze\nverzoekschriftprocedure\nverzoendeksel\nvisserijsterfte\nvloerafwerking\nvoerspoor\nvolkscafé\nvolksclub\nvolksgeneeskunde\nvolksmens\nvolksstaat\nvolkstheater\nvoortbrengingsproces\nwarenautoriteit\nwasproces\nweerstander\nwekeneis\nwereldland\nzomerland\naanbestedingsronde\naandeelhoudersregister\naankondigingsbord\naanloopschaal\naanmaakdatum\naanmaaklimonade\naanrijdingsformulier\naanvalsstrategie\naanvangsperiode\naardappelgerecht\naardrijkskundemethode\nabonnementsbedrag\naccessoirelijn\nacteerles\nafdelingsplan\nafhaalservice\nafleveringsadres\nafrolmenu\nafscheidslunch\nafslankpil\nafsluitmechanisme\nafvalsortering\nafvalstoffenverordening\nafwerkingsfase\nafwezigheidstoezicht\nagendasetting\nagendavorming\nalbumpresentatie\nalfabetiseringsgraad\naluminiumhydroxide\namandelkern\nantwoordrubriek\nantwoordvorm\naquareltechniek\naquariumhobby\naquariumzaak\narbeidersmilitie\narbeidersvereniging\narbeidsinspanning\narbeidskeuze\narbeidsongeschiktheidsvoorziening\narbeidsoverschot\narbeidspsychologie\narbeidssfeer\narchiefstudie\narchitectuurdebat\narchitectuurstroming\nartiestencontract\nartiestenvak\nartsbezoek\nasbestproblematiek\nasfaltbekleding\nasfaltmengsel\natletiekaccommodatie\nauteurscinema\nauteursrechtenschending\nautocontrolesysteem\nautohouder\nautokeuze\nautoleasemaatschappij\nautomatiseringsoplossing\nautomobielclub\navondshow\nbaangedeelte\nbacteriecel\nbagagevrijdom\nbaggerboot\nbaggerwereld\nbakkersfiets\nbakkersgezin\nbakkersgilde\nbalbezitter\nballonnenclown\nbananenpuree\nbarmedewerker\nbaseballspeler\nbasiscode\nbasisconstructie\nbasiswetgeving\nbeddenzaak\nbedieningspersoneel\nbedrijfsadvisering\nbedrijfsduur\nbedrijfskaart\nbedrijfsmassage\nbedrijvenvereniging\nbeeldfragment\nbeeldschermresolutie\nbeenbeweging\nbeenkam\nbeenmergonderzoek\nbeginnersgeluk\nbeginnersrijbewijs\nbegintekst\nbegrotingsfonds\nbegrotingsindeling\nbehandeldienst\nbehandelingseffect\nbehandelingsproces\nbeheercommissie\nbeheervisie\nbelangenruimte\nbeleidsman\nbeleidssector\nbeloningsinstrument\nbereidingstechniek\nberekeningsmodel\nberichtregel\nberoepscompetentie\nberoepsschrijver\nbeschermbril\nbestelhistorie\nbestelsite\nbestralingsapparaat\nbetaalmodel\nbetalingsbereidheid\nbeveiligingscentrum\nbeveiligingsfunctie\nbevolkingsspreiding\nbeweegoffer\nbeweegruimte\nbewegingsmateriaal\nbewegingsstimulering\nbewerkingskosten\nbietenveld\nbijdragebetaling\nbijengif\nbioscoopformaat\nbladweefsel\nboekenliefde\nboogtent\nboomplantactie\nbootvorm\nbosomgeving\nbosvogel\nbouwconcept\nbouwdiepte\nbouwmaffia\nbramenstruik\nbrandadres\nbranderkop\nbrandnetelsoep\nbrandstofefficiëntie\nbrandstofolie\nbrandweerboot\nbreedtesportimpuls\nbrijvoer\nbroederhuis\nbroedkast\nbroeikastheorie\nbroodproductie\nbrugrestaurant\nbrugverbinding\nbrugvleugel\nbruidsmodezaak\nbuisdiameter\nbuisframe\nbuurtgroep\ncalciumoxide\ncampinggas\ncapaciteitsverlies\ncarnavalsstemming\ncasebeschrijving\nchatvenster\ncircusbranche\nclubgebeuren\nclubkostuum\nclusterniveau\ncoalitieland\ncodeslot\ncollegecyclus\ncommunicatieaanpak\ncompetentietoelage\ncomputercatalogus\ncomputercrimineel\nconcurrentiestructuur\ncondensvocht\nconditieverlies\ncontainertrein\ncontrolecijfer\nconversieratio\ncorrespondentietheorie\ncoördinatieregeling\ncreditcardbedrijf\ncrisisafdeling\ncultuurpoliticus\ncultuurverrijking\ncultuurzaal\ncursusblok\ncursusdatum\ncursussite\ndakhemel\ndameoffer\ndampvorm\ndatabundel\ndenkstap\ndesignobject\ndialectgroep\ndieptevrees\ndierencentrum\ndierenrechtenactivist\ndodenfeest\ndoelbereik\ndoelbinding\ndoelgroepbenadering\ndoktersafspraak\ndoktersonderzoek\ndorststaking\ndosisverlaging\ndraaiveld\ndramatherapeut\ndroomman\ndroomverhaal\ndruivenpluk\ndrukopnemer\ndrukplek\ndubbelaflevering\ndubbelstersysteem\ndubbelsysteem\nduozit\ndwaaltuin\ndwerggeit\neffectenkaart\neindkeuring\nemissiemarkt\nenergiebeurs\nenergiegemeenschap\nenergiehoeveelheid\nenergieland\nenergiereep\nensemblemuziek\nexecutiekosten\nexportbestemming\nexportquote\nfactormaatschappij\nfaillissementsverslag\nfamilieclub\nfamilievak\nfastfoodindustrie\nfeestbegroting\nfestivalavond\nfietsgedeelte\nfietsshirt\nfilmband\nfilmbestand\nfinancieringsfunctie\nfinancieringskapitaal\nfitnesstoestel\nflitskast\nfocusgebied\nfolderstructuur\nfolkscene\nfotoruimte\nfotosoftware\nfotowereld\nfoutpercentage\nfrequentiegebruik\nfrontriem\nfruitteeltsector\nfunctiebouwwerk\nfusierichtlijn\ngaragevloer\ngebruikersbeheer\ngedichtensite\ngedragsvorm\ngeelwang\ngegevensregistratie\ngegevenstransmissie\ngelegenheidsdrukwerk\ngeloofsonderwijs\ngeloofsopbouw\ngeloofswaarde\ngeluidscomfort\ngeluidsmontage\ngeluidsvermogen\ngemeenschapsrechter\ngereedschapsset\ngeschenkpakket\ngetallentheorie\ngewelvenkelder\ngezichtsbedekking\ngezichtsbehandeling\ngezichtsbeharing\ngezichtscrème\ngezichtsmassage\ngezichtsopname\ngezichtsscan\ngezichtstransplantatie\ngezichtsveldonderzoek\ngezichtsvelduitval\ngezichtsverzorging\ngezichtsvorm\ngezondheidsfreak\ngezondheidsklacht\ngezondheidswaarde\ngipsmeester\ngolfgeleider\ngolfles\ngolfmateriaal\ngospelgroep\ngouwleider\ngrasafval\ngrasdak\ngratenpakhuis\ngroeistop\ngroentepakket\ngroentetas\ngroenwier\ngronddeel\ngrondexploitatiewet\ngrondpakket\ngrondschool\ngrondstoffenvoorziening\ngrondwatersysteem\nhaarmos\nhalsjuk\nhamstersoort\nhandelskenmerk\nhandelsleven\nhandnijverheid\nhandrail\nhavenpier\nheffingsverordening\nheidetuin\nhemelreis\nhenneplucht\nhersenabces\nherstructureringsfonds\nherzieningsconferentie\nhitteplan\nhondenman\nhondennaam\nhondenraces\nhoofdconstructie\nhoofdrivier\nhoogbaljuw\nhoogspanningscabine\nhoogspanningsnetwerk\nhoogteregeling\nhooilandbeheer\nhorrorliefhebber\nhuisbezit\nhuisboktor\nhuishoudapparatuur\nhuishoudazijn\nhuisregisseur\nhuldeboek\nhulpkerk\nhulpmoeder\nhuurprijsbeleid\nhypotheekberekening\nhypotheekvrij\nidentiteitsconstructie\nijsdek\nijshoorntje\nimportbedrijf\nimportland\nindianentooi\ninformatienota\ninfuuspaal\ninkomensafhankelijkheid\ninkomensbestanddeel\ninkoopprocedure\ninleverpunt\ninschrijfpakket\ninschrijvingsplicht\ninschrijvingstaks\ninterieurkunst\ninterieurverlichting\ninternetkosten\ninternetnetwerk\ninternetverkiezing\nintroductiecommissie\ninvoeringsproces\nisolatieniveau\njaarrekeningcontrole\njazzstijl\njeugdcrimineel\njongvolk\njubileumwedstrijd\njuryoordeel\njustitiemedewerker\nkaasland\nkaasrasp\nkalksteengroeve\nkanaalscheiding\nkankerplek\nkapitaalratio\nkappersbeurt\nkartsport\nkerkvorm\nkerninhoud\nkernvak\nkerststress\nketenverband\nkeuringscertificaat\nkeurman\nkeuzeregeling\nkiesproces\nkijkscherm\nkikkerperspectief\nkinderbeveiligingssysteem\nkinderstad\nklankmatig\nklantcontactcentrum\nklantenloyaliteit\nklassenanalyse\nklassentheorie\nkleurenversie\nkleuterspeelplaats\nkliedernat\nklimaatbureau\nklimaatschade\nkluslijst\nknaagsteen\nknalwerk\nknolselderijpuree\nknutseltafel\nkoffiebruin\nkolenhaven\nkolenproductie\nkolentrein\nkookmethode\nkookvlak\nkorfbalsport\nkostenbedrag\nkostenfunctie\nkraakcafé\nkrachtuithoudingsvermogen\nkrakersblad\nkrasbestendigheid\nkraterpijp\nkredietvergoeding\nlanddeken\nlengtestreep\nlenzensysteem\nletselschadezaak\nlevensdomein\nlevensveld\nlingerieketen\nlotuseffect\nmachtsverwerving\nmantelspeld\nmelkallergie\nmemoriaalboek\nmensgerichtheid\nmigratiebeheersing\nmigratietraject\nmotorreis\nolietemperatuur\nontbijtrestaurant\nontslagmanagement\nontwerpwereld\noorlogsmoeheid\nopsporingsfase\nouderlingentehuis\nparochiekerkhof\npartijstelsel\npassagiersdeur\npatiëntenaanbod\nperrontunnel\npetroleumnijverheid\nplafondbedrag\nplakstrook\nplanningssoftware\nplantdiepte\nplantenpot\nplooidak\nprocesstap\nracelicentie\nrampenbestrijdingsdienst\nreddingsmissie\nregeringsdaad\nreligiebeleving\nreservegetal\nriooldeksel\nroepingsbesef\nruimteaanbod\nschoolcomité\nseininrichting\nsinusregel\nskeelertocht\nslangenvuur\nspanningselement\nspeelkalender\nspeltafel\nspelterrein\nsportmodus\nstarterskit\nstortput\nstraatdorp\nstressreductie\nstroomgenerator\nstudentendag\nsysteemdocumentatie\ntankklep\ntelmethode\ntermijnstelling\nthuiswereld\ntoezichtregime\ntrekstarter\nuitlaatlijn\nveekering\nvelddichtheid\nverdienstelijking\nvermogenscurve\nverzoeningspolitiek\nverzoeningsvergadering\nverzorgingshuiszorg\nverzorgingskosten\nverzorgingspost\nverzorgingstas\nverzorgpaard\nverzuimboete\nverzuimduur\nverzuimkosten\nverzuimmanagement\nverzuimpreventie\nverzuimprotocol\nverzuimregistratie\nvitaminekuur\nvlieglijn\nvlotvaren\nvluchtdeur\nvluchtelingenkwestie\nvochtinwerking\nvoegingsformulier\nvoetbalnaam\nvolksfantasie\nvolksfiguur\nvolksgebied\nvolksgezegde\nvolksgodsdienst\nvolkskroeg\nvolkslichaam\nvolksnationalist\nvolksonderwijs\nvolkspoëzie\nvolksrevolutie\nvolksverbondenheid\nvolksverraad\nvolksverzet\nvolksvroomheid\nvolksweerkunde\nvoorbereidingsproces\nvoorlichtingsblad\nvoortplantingsproces\nvoortzettingsvermogen\nvormmerk\nvraagprogramma\nvrachtenmarkt\nvredeseducatie\nvreemdelingendebat\nvriendinnenclub\nvrijwording\nvrijzetting\nvrouwengemeenschap\nvrouwenvraagstuk\nwaardemanagement\nwaarderingsteken\nwaarderingsvaluta\nwaardetoevoeging\nwaardeverhouding\nwaarnemingsgebied\nwaarnemingshorizon\nwaarnemingsmissie\nwaarnemingsperiode\nwaarnemingsprogramma\nwaarschijnlijkheidsverdeling\nwandafwerking\nwarmtestuwing\nwaterfestijn\nwatergracht\nwaterhoeveelheid\nwaterhuishoudingsplan\nwateronttrekking\nwaterstofchloride\nwaterstofmotor\nwatervraag\nwederopbouwproces\nweermiddel\nwegenverkeerswetgeving\nwelstandstoets\nwendakker\nwereldbesef\nwereldnatie\nwereldoverheersing\nwereldranking\nwerkafstand\nwerkethos\nwerkgelegenheidsniveau\nwerkloosheidsreglementering\nwervingsproces\nwestbouw\nwetgevingsprogramma\nwielnaaf\nwielspoor\nwijzigingsrichtlijn\nwindgeluid\nwinstverlies\nwinterwind\nwoningverhuur\nwoonwaarde\nzaligverklaringsproces\nzandleemstreek\nzangopleiding\nzeegroente\nzeeprik\nzeilinstructeur\nzekeringskast\nzenuwspanning\nzetelbekleding\nzetelverwarming\nziektevrees\nzomerband\nzoneringsplan\nzorghulp\nzwemlip\nzwijnenpopulatie\naalbestand\naanvalspartij\naardgodin\naasgedrag\nacceptgiroformulier\nachteruitvaren\nachteruitversnelling\nachtknoop\nadembuis\nademhalingsapparatuur\nafwashulp\naidsfonds\nalarmtijd\naluminiumplaat\namberboom\nankerbak\narbeidsdiscipline\narbeidsgemeenschap\narbeidsmachine\narchiefdepot\narchiefinspecteur\nartikelnaam\nartseneed\natletiektoernooi\natoomlaag\nauteurswetgeving\nautoslot\nautozaak\navondbries\navondmenu\nbaantjesjagerij\nbabybos\nbabyleeftijd\nbacterieslijm\nbandenmuur\nbasisnetwerk\nbasisveen\nbasnoot\nbatterijlevensduur\nbauxietwinning\nbeademingsbuis\nbedenktermijn\nbedrijfsboekhouding\nbedrijfsfraude\nbedrijfslast\nbedrijfsvriendelijk\nbeeldinhoud\nbeeldtechniek\nbegrafenismis\nbehandelresultaat\nbeheersprobleem\nbehendigheidsautomaat\nbelastingschandaal\nbeleggingsinformatie\nbeleggingsklimaat\nbeleggingsstijl\nbeleidsvormingsproces\nbelevingsniveau\nbeloningstransparantie\nbergboezem\nbergstad\nberichtencentrale\nberoepsastma\nberoepscomité\nberoepstelling\nbeschermingsbewind\nbestemmingsplaats\nbestuursformatieplan\nbetaalpagina\nbetondek\nbetonpuin\nbeveiligingslaag\nbeveiligingsmethode\nbevolkingsaandeel\nbevolkingscategorie\nbewegingsloosheid\nbierbereiding\nbierhandel\nbijdragesysteem\nbinnenvaartondernemer\nbisschopsbenoeming\nblaastechniek\nbladtop\nblauwaderkaas\nblokverzoek\nboekenweekthema\nboerenkoolmaaltijd\nboerenstaat\nboetefonds\nbollengebied\nbosvijver\nbosvrucht\nboterkoekvorm\nbouwdag\nbouwproduct\nbouwvocht\nbrandklasse\nbrandweermateriaal\nbreekplaat\nbronspanning\nbudgetverdeling\nbuiswand\nbuitensportzaak\nbusremise\nbuurtauto\nbuurteconomie\nbuurvolk\ncabinevloer\ncalorieopname\ncannabismarkt\ncaravantrekker\ncarbonzuur\ncarnavalsstad\ncertificaatnummer\nchatdienst\nchloorgehalte\ncircusfestival\ncirkellijn\ncliëntparticipatie\nclubtitel\ncommentaarfunctie\ncommunicatietaal\nconcurrentieonderzoek\nconcurrentiestelling\ncondensafvoer\nconfiguratiepagina\nconstructiespeelgoed\ncorrectieverzoek\ncoördinatieplan\ncrossloop\ndamesklasse\ndansmaker\ndarmholte\ndatatransfer\ndeelforum\ndeeltijdaanstelling\ndeeltijdonderwijs\ndekmatras\ndekweefsel\ndetailvenster\ndialyseapparaat\ndieptebal\ndierenpopulatie\ndirecteursstoel\ndirectieberaad\ndistributierecht\ndoeleindenomschrijving\ndraadwerk\ndraaimachine\ndraaischema\ndrugslab\ndruklager\ndrukmethode\ndrukpak\ndrukveer\nduivelverering\nduivenpopulatie\ndweilwater\neffectenhypotheek\neiceldonor\neigendomsvorm\neindexamenbal\neindgastheer\neindknop\neindtemperatuur\neiwitconsumptie\nelektriciteitsbevoorrading\nenergieadvies\nenergieverschil\nervaringstheater\nevenemententeam\nexamenbundel\nexamenonderwerp\nexecutieruimte\nexpansiekracht\nexplosiegrens\nfaunafonds\nfietswissel\nfiguurcorrectie\nfilmscore\nfinancieringsdecreet\nflatpanel\nflitsauto\nflitsservice\nfolkwereld\nformatieteam\nforumbaas\nfoutboodschap\nframbozenpuree\nfriszoet\nfruitmix\nfruittaart\nfunctieknop\nfunctietest\ngaragedak\ngasdrukpistool\ngasmassa\ngasplaneet\ngebouwenbestand\ngeheugenbeheer\ngeheugenspel\ngehoormatig\ngeldbezit\ngeldpakhuis\ngeldvorm\ngelijkheidsteken\ngeluidkwaliteit\ngeluidsnelheid\ngeluidssein\ngemeenschapsproject\ngemeentecamping\ngerieflijkheid\ngeschiedenisopvatting\ngetijgolf\ngevangenisarts\ngewasopbrengst\ngifaanval\ngipsbehandeling\ngipspleister\nglasafval\ngodsbewustzijn\ngolfpijp\ngrenshoek\nhaarverwijdering\nhalshoek\nhaltebord\nhavenplan\nhelidek\nhielmerk\nhoofdbuis\nhoofdhal\nhooiman\nhouthaard\nhuidflap\nhuidplak\nhuismuur\nhulpspoor\nhulptaal\nhuurkamer\nijsduiker\nijsschep\nijsval\njaarschema\njeugdfase\njurywagen\nkampdag\nkaslucht\nkasschuif\nkeistad\nkerndraad\nkeuzewerk\nkiemlaag\nkleurbeheer\nkoerstrui\nkookgek\nkroonbuis\nkroonlaag\nkunstfilosofie\nkunstrecensent\nkunstsponsoring\nkustbaan\nkustreis\nkustuitbreiding\nkuurpark\nkwaliteitsopvolging\nkweekproces\nlaadsnoer\nlaboratoriumanalyse\nlasermuis\nledendeel\nledenkorting\nleerlinggericht\nleesonderzoek\nleeuwenstaart\nlesavond\nleskaart\nlesmodule\nlesniveau\nlesplaats\nlesstijl\nlevenslucht\nleverancierskeuze\nliberalisatiegrens\nlichtsfeer\nlichtzoet\nlidmatenboek\nliefdesboodschap\nliefdesgod\nlierstart\nliftcabine\nlijkgeur\nlijningang\nlijnteelt\nlijstvorm\nlimonadefles\nlinieregiment\nlinkerflankspeler\nlinkerrij\nlinkersleutelbeen\nlinkervak\nlinnenbinding\nliquiditeitsprognose\nlocatieniveau\nloodsstation\nloonaandeel\nloopmeditatie\nlooprobot\nloungeset\nluchtvrachtbrief\nluchtzijde\nluciferfabriek\nmaagportier\nmaakbaarheidsideaal\nmaalbedrijf\nmaalgoed\nmaalwerk\nmaantop\nmachtsbron\nmachtsgroep\nmagnesiumgebrek\nmailbom\nmanagementtaal\nmarketinggoeroe\nmarketingland\nmarketingprogramma\nmassatransport\nmaximumhoogte\nmeditatiehouding\nmeergewicht\nmeeroever\nmeetdag\nmeetsonde\nmeisjestweeling\nmelkdrank\nmelksaus\nmerkmedicijn\nmerkstift\nmeshouder\nmetaalafval\nmetaalgehalte\nmetaaloppervlak\nmetaalwerkplaats\nmiddagronde\nmigrantenliteratuur\nmilieuverantwoordelijkheid\nminimumafname\nminimumharmonisatie\nmissieleider\nmissieteam\nmobiliteitsprofiel\nmobiliteitsstudie\nmodellijn\nmodelonderzoek\nmodemarkt\nmoederkip\nmondkap\nmonsterklus\nmotoraandrijving\nmotorkist\nmuismodel\nmusicalgebied\nmuziekwetenschapper\nmysteriereligie\nnaamregister\nnaamsticker\nnachtluier\nnatuurdagboek\nnatuurontwikkelingsplan\nnatuurserie\nnatuurvernietiging\nnavigatieprogramma\nnaziperiode\nnederzettingspolitiek\nneerslagwater\nnetwerkevenement\nneukvlees\nneusbreuk\nneusstuk\nnieuwsverhaal\nnoodnaam\nnoodoproepsysteem\noefenhok\noliebollenbakker\nomroepdienst\nonbalansmarkt\nondernemingssfeer\nondernemingsvereniging\nondersteuningsschip\nonderwijsadviesbureau\nonderwijsadviseur\nonderwijsconferentie\nonderwijsinhoudelijk\nonderzoekproject\nontbijtnieuws\nontginningsgeschiedenis\nontslagpraktijk\nontspanningsindustrie\nontwerptafel\nontwikkelingsovereenkomst\nontwikkelingstempo\nontwormingskuur\nonveiligheidsbeleving\nonzichtbaarheidsmantel\noorlogsdienst\noorlogsgodin\noorlogstrom\nopeningstekst\noperapubliek\noplegnotitie\nopleidingsinformatie\nopleidingsplek\noprolmechanisme\nopslagkamer\nopslagmarkt\nopslagtijd\nopstartprocedure\nopvoedingsmiddel\nopvoedsteunpunt\norganisatieprobleem\norgeltype\noverdrachtssnelheid\noverheidsvakbond\noxidehuid\npaardenzadel\npaastak\npapierstoring\nparkdeel\npartijwerking\npartnergemeente\npaswerk\npatentsysteem\npatentwet\npausambt\npensioenbonus\npensioenschade\npersonaliteitsbeginsel\npersoonsverzekering\npersstop\npianoversie\npiekafvoer\npijnreactie\npilotonderzoek\npilotwinkel\npiramidestructuur\nplantaal\nplanteam\nplantverband\nploegfoto\npluimveebedrijfsleven\nplusdraad\npocketvering\npodiumzaal\npoepseks\npoezenbeest\npokergebied\npollenallergie\npollenanalyse\npompmechanisme\npornoproducent\nportefeuillebeleid\nportsaus\npostcodetabel\npostpersoneel\npostronde\nprikpost\nprivacyregelgeving\nproductiecontrole\nproductiekolom\nproductiekracht\nproductiemateriaal\nproductiepiek\nproductieserie\nproductiviteitsniveau\nprognosemodel\nprogrammacongres\nprojectopvolging\npublicatiekosten\npubliciteitsfoto\npuntengewin\npuntlast\npuntmassa\npuntstuk\npyjamadag\nraamlijn\nracketblad\nradencommunist\nradioknop\nradionavigatie\nrapcultuur\nrapportgesprek\nreclamedruk\nreclameland\nreclameverlichting\nreferentiedatum\nregeertermijn\nregelbaarheid\nregelboek\nregistratiemodel\nregistratieregeling\nreiskooi\nreisvisum\nreizigersadvisering\nrelatiedrama\nrelatiegebied\nreparatiecentrum\nreservebril\nreserveringsaanvraag\nreserveringswaarde\nrestauratieperiode\nrestverschijnsel\nrijdag\nrijgevoel\nrijksbelastingdienst\nrijksregelgeving\nrijptijd\nriviergebied\nrobottaks\nrocksound\nroodoog\nroofwants\nroofwild\nrookgenot\nroostertijd\nrotsheuvel\nrotskunst\nroutineoperatie\nrouwdrukwerk\nrouwritueel\nsafaritocht\nsalarisbeleid\nscantijd\nschaaktechnisch\nschadevaststelling\nschakelruimte\nschermweergave\nschilderskwast\nschimmelvrij\nschimmelweefsel\nscholingsplicht\nschoolerf\nschriftsysteem\nschrijfmeester\nschrijfproduct\nschroefgat\nschutterswezen\nsciencefictionverhaal\nselderijblad\nselectieknop\nshoprite\nshopsessie\nsieradenlijn\nsierelement\nsignaaldraad\nsignaalkabel\nsituatiegebonden\nskikamp\nskiverhuur\nslaapkwab\nslaapmodus\nslaapverdieping\nslagarm\nslakkenslijm\nslakkensoort\nsleepoog\nsleepvliegtuig\nsleutelgebied\nslikplaat\nslotband\nslotkoraal\nsmaakaccent\nsmeercampagne\nsmeulbrand\nsneeuwbol\nsnelheidsboete\nsnijblad\nsoftwaregebruik\nsoftwarewereld\nsolostuk\nsolotocht\nsoullegende\nsovjetsysteem\nspamvrij\nspelbeleving\nspelbeurt\nspelcassette\nspelles\nspildraai\nspoedrit\nspoelgang\nsponsorbrief\nsponsordag\nsponsorhome\nsponsorkind\nsporteconomie\nsportfan\nsportgebouw\nsportklas\nspraakkanaal\nspraakweergave\nstaaloppervlak\nstaatsgebouw\nstaatsgeloof\nstaatstheorie\nstadscommandant\nstadsfiguur\nstafgroep\nstagemap\nstamrestaurant\nstartbalk\nstationscomplex\nsteekplaats\nsteenspil\nstellingkast\nstemdag\nstemsoort\nsteunlid\nstiknaad\nstockfoto\nstoomcyclus\nstootjuk\nstortlocatie\nstraalgrit\nstreektaalfunctionaris\nstriksluiting\nstrobouw\nstroombegrenzing\nstroomgat\nstructuuranalyse\nstudentensport\nstudieavond\nstudiecontract\nstudieovereenkomst\nstuurhoek\nsubsidieland\nsuperjacht\nsuperplek\nsuperreus\nswingarm\nsysteeminformatie\nsysteemstart\nsysteemtheoretisch\ntaakdifferentiatie\ntaakklas\ntaalcoördinator\ntaaleis\ntaalklas\ntaaltip\ntaillering\ntalkshowkoningin\ntankpark\ntapeind\nteambuildingsdag\ntegelwijsheid\ntekstkwaliteit\nteksttoneel\ntelescoopkraan\ntelevisiemoment\ntelevisiewetenschap\nteringwijf\nterreurbeleid\nterugkeergesprek\ntestpunt\ntestrun\ntestscore\ntestsituatie\ntextielvlies\nthuisdorp\nthuishal\nthuislader\nthuismap\ntienerclub\ntijdpunt\ntimmerindustrie\ntoelatingsgesprek\ntoevoerslang\ntolkwerk\ntotaalaanbieder\ntoverbos\ntrainingsbeest\ntransactieprijs\ntransferfunctie\ntransportbox\ntrappiramide\ntreinnummer\ntrekfase\ntrimvest\ntrombonesectie\ntuinadvies\nuitoefendatum\nuitvoeringstechniek\nuitvoeringsvorm\nuitzonderingswet\nurinelucht\nvalutacode\nveeboerderij\nveenontginning\nveenwinning\nveerpoot\nvegetatiestructuur\nveiligheidsbarrière\nveldkapel\nveldtest\nveldvirus\nvensteropening\nverdiepingsopdracht\nverfafval\nvergistingsproces\nvergunningsysteem\nverhuurmakelaar\nverkeersmanager\nverkoopbevorderend\nverkoopmoment\nverkooppagina\nvermogenscategorie\nverpakkingsfolie\nverpleegeenheid\nverpleegunit\nverslavingsdeskundige\nvertelkracht\nvertrektermijn\nvervoergebied\nvervolgvlucht\nverwarmingsfactuur\nverwenarrangement\nverzekeringsgebied\nvetaanslag\nvetstofwisseling\nvideotechnologie\nvideotelefonie\nvijfluik\nvijgenjam\nvillacomplex\nvioolleraar\nvisavond\nvisbroed\nvispan\nvissenvoer\nvisserijcommissie\nvlambeeld\nvleesleverancier\nvliegbeeld\nvliegenlat\nvliegerfestival\nvliegeropleiding\nvliegtuigoverlast\nvliegtuigtoilet\nvloerenlegger\nvlotterkamer\nvoederopname\nvoedingsanalyse\nvoedingskracht\nvoedingstekort\nvoedingswaar\nvoegband\nvoerboot\nvoergang\nvoertuiggebonden\nvoertuigindustrie\nvoetbalmuseum\nvoetrand\nvolgmigratie\nvolksbal\nvolumeontwikkeling\nvorderingenstaat\nvormingsmoment\nvormingsperiode\nvraaglijn\nvraagoverschot\nvreugdebode\nvriendenbezoek\nvrijwilligersvereniging\nvrouwenauto\nvrouwencultuur\nvrouwenzang\nvuilnisophaal\nvullisbak\nvuurbeker\nvuurbron\nwaardebeschikking\nwaardeschatting\nwaardevorming\nwaarnemingsproces\nwachtwoordbeheer\nwalvistraan\nwapeningsnet\nwapenkast\nwapenolie\nwarenmassa\nwarmbruin\nwarmtedistributie\nwasmeubel\nwastijd\nwaterbeheerplan\nwaterbergingscapaciteit\nwaterbok\nwaterkanaal\nwaterturbine\nwaterzuil\nwedstrijdklok\nweefraam\nweekritme\nweektotaal\nweeromslag\nwelkomstborrel\nwereldontwikkeling\nwerkavond\nwerkdier\nwerkelijkheidsopvatting\nwerkervaringsplek\nwerkgelegenheidsfunctie\nwerkgemeente\nwerkingsgraad\nwerkset\nwerkvak\nwervingsfolder\nwetsuitvoering\nwietboter\nwietroker\nwietteler\nwijkavond\nwijkchef\nwijkopzichter\nwijnbes\nwijnplas\nwinstbelang\nwinstrol\nwintervastheid\nwoedebeheersing\nwoedebui\nwoonblad\nwoonconcept\nwoordenschatontwikkeling\nwormvrij\nworstdeeg\nworteldruk\nzaadmantel\nzaalshow\nzaalvoetbalvereniging\nzandaanvoer\nzandgehalte\nzandland\nzandleem\nzandspoor\nzeefzand\nzeehavengebied\nzeehondenkolonie\nzeepbaan\nzeepfabrikant\nzeepvrij\nzendtijdaanvraag\nzendtoren\nzenuwsignaal\nziekenhuisfinanciering\nziektezorg\nzijdemarkt\nzoekhulp\nzoekspel\nzomerliefde\nzomerpauze\nzomertuin\nzomervis\nzoomknop\nzuigvoet\nzuigzijde\nzuurvlees\nzwaktepunt\nzweethok\nzweetwerk\nzwemcomplex\nblokpost\nbuspas\nbuurtcoach\ndagcurve\nduikdag\nfilterpomp\ngaskanon\ngaspomp\ngrondmassa\ngrondsmaak\nharingboer\nhavencafé\nhefvlak\nhoofdzorg\nhuttenbouw\nijskern\nijsmist\nijsplaneet\ninbouwoven\ninfuuspomp\ninloopuur\nkeelzang\nklassewijn\nkniehoek\nkortingbon\nkostendeel\nkroonvorm\nkustvak\nlammertijd\nlasbaar\nlasstroom\nleverader\nleveradres\nloodslab\nmaanmissie\nmassabasis\nmeubellijn\nmondgedrag\nmondrand\nmoseik\nnatuurdoel\nneertikken\nneukgat\nogenzalf\nophaaltijd\noplapbeurt\nopslagzone\norgelfront\npartijspel\nperzikluis\npestbeleid\npijnzin\npostkar\npraatronde\nraamkader\nrestlading\nrijwerk\nringbus\nroodblond\nrotshol\nrubberdoek\nsigarenman\nsitebezoek\nskiklas\nskipret\nskiteam\nslaapfeest\nsloopfonds\nspelgebied\nspelsessie\nstadstrein\nstopbad\nstraatlamp\nstrodek\nsuperidee\nsuperwapen\ntaalgebrek\ntestlading\ntestopzet\nthuistenue\ntijdlaag\ntijdsperk\ntrambus\ntuinwinkel\nvarkensoor\nvetopname\nviruskweek\nvirusmaker\nvoerdraad\nvoetbalcel\nvoetenbak\nvragenset\nwaardewet\nwaterdorp\nwensvader\nzakendeal\nzeeboek\nzeevloot\nzingtrant\nzinkflora\nzorgethiek\nzweetdeken\nbaardmos\nbluspomp\nbrughoek\nchatnaam\ndieetpil\ndoeltype\ndoelworp\nijsbeker\nijsbloem\nkoeweide\nlanspunt\noefenwee\npijphoer\nplakpoep\npompdruk\nrijstand\nscanauto\nslagvlak\ntenthuis\nvierblad\nwenskind\nzandgeel\nzeeanker\nzwaaiarm\nbloksein\nwastoren\nduikeend\nstermol\ntandenrij\nhoofdteam\ntennisfan\nkaartboek\nrijbereik\nbuurtsite\nkraakvrij\ndansgarde\ndagarbeid\npekelnat\nfrontsein\njaarstijl\nliedgoed\nradarauto\nweidemelk\nnazirijk\nveldlens\nmissieschool\nmilieustation\nstadslegende\nreflectiekamer\nlichttechnicus\nmuntsmaak\nkantonhoofdplaats\nwandeltraject\nmonsterfile\nwastemperatuur\nverkiezingsteam\nmassavaccinatie\nmarktcorrectie\nhuisvuilwagen\nbosvegetatie\ngeslachtsverschil\nhulpgevangenis\nvacuümenergie\nsatellietkantoor\nnissenhut\npensioenrekening\nkortgedingprocedure\noliepolitiek\nmedicijnvrouw\nbestuurdersvereniging\nvoedselproductieketen\nproductiesubsidie\nrestaurantkaart\nverkiezingswedstrijd\nweerstandswaarde\nveiligheidstaak\nvirusmateriaal\ncomputerproject\ngarantiewaarde\nvoertuigsnelheid\nverhuisketen\nverhuisregeling\ngoederenpakket\nverbeteringsproject\nveiligheidszorgsysteem\nproductiestart\nvolgordelijkheid\nwaterbestendigheid\noverlegfase\nverandervermogen\ntelevisiecontract\nveiligheidsrapportage\nwaarschijnlijkheidspapier\nverzuimadministratie\nvisumkosten\nwaarderingsniveau\nsysteemgrens\nvraagbaakfunctie\nwagennummer\nverdeelstuk\npresentatiemateriaal\nverpleeghuisgeneeskunde\nschoonmaakproces\nmarketingoperatie\nindustriegemeente\nmarketingverhaal\nvolgtijdelijkheid\nwrattenbijter\nzuurstofvrij\nvechtkabinet\nparticipatiecontract\nvrachtdeur\nkwaliteitsbegrip\nvestigingswetgeving\nwetgevingstechniek\nparkhotel\npilotaflevering\nkredietkaartnummer\ninformatietype\nprachtmeid\nreddingslijn\nkapitaalakkoord\nzuigvermogen\nmuziekgebouw\nwielerfestijn\npartijsysteem\nkennismakingsperiode\ncompensatiesysteem\nvloeistofdruk\nnetwerksysteem\nverdrijvingsvlak\nmaandprogramma\ninkoopplan\neindkosten\nontwerpmodel\nkeuzeonderwijs\nhavenfunctie\ntelefoonfunctie\nbaggerprobleem\ngoederenproductie\ntelevisiesysteem\nspraaksysteem\nwaterstructuur\nintegratiesector\nbasisenergie\nprivépraktijk\ndeelnamegeld\nmodelland\nlichtwaarde\nmarktproduct\nstudiekamer\ngeheugenbank\nmoederkaart\nzoekvolume\ntaalcommissie\nwijkcommissie\nsysteemdruk\nprivévervoer\neindvraag\nplaatgrens\nmassalijn\npatiëntenkamer\nstoffenzaak\ninvoerregel\nverftechniek\nmeettechnisch\nhondenpark\nmuzieksoftware\nnatuurfreak\nproefkolonie\nspeeleiland\nstreekfestival\nspinnenbeet\npaardenevenement\nverwachtingskaart\nverhittingsproces\nvarkensworst\ntestbedrijf\nsnoeppapier\nseksbedrijf\nrijkwaliteit\nparallelgroep\nontsluitbaar\nherhaaltoets\nlinkerpaneel\nmigrantengroep\nhoofdcommissariaat\nmassagestaaf\ninkoopgebied\ngoudbedrijf\ninstallatiedraad\nbeoordelingsmethodiek\nseriemoordenares\ntariefaanpassing\nondernemersclub\nwapencollectie\nstraatgevel\nhoofdrestaurant\nsponsoravond\nstalgebouw\nwoordenwolk\nspeelgedeelte\nmengbaarheid\nherdenkingskruis\nsupergeheim\nstuurstelling\nkermisgebeuren\ninstructieles\nwekkerfunctie\nschetsblok\npodiumangst\nopruimkosten\nfusieproduct\nroutinevlucht\nsportafdeling\nsleepbeweging\nhandchirurgie\nhuisarchitect\nwoestijnstaat\nprovincienaam\nloketpersoneel\nstraatbaksteen\nthrillerdebuut\nbeurswaardering\nkoffietafelboek\nonderwaterrobot\ntransfertermijn\neffectapparatuur\nstudiofotografie\ngeslachtsoperatie\ninternetpiraterij\nschoenenontwerper\nstreektaalmuziek\nviertallenwedstrijd\nsensatiejournalistiek\nonderwijsverbetering\nstudentenuitzendbureau\nonderhandelingsvrijheid\ndoorslagspanning\nleeftijdsperiode\narbitrageovereenkomst\nbaanlengte\nbedrijfsinbraak\nbewaarbibliotheek\naccentverlichting\nverwijderingsnominatie\ndonorprincipe\ninklaringskosten\nlijfrenteclausule\nmuziekmagazine\nvoedselgewas\nwerkdiagnose\nthrillerelement\nnatuurparel\nkunstervaring\nstemkwaliteit\ndraaddikte\nsoldeerverbinding\nbaliebediende\nlievelingsrestaurant\nmensenbrein\noverwinteringsplek\ntalentenwedstrijd\nkoningskrab\ngeslachtsapparaat\ntrainingsdoel\nrivieroversteek\nhoutbewerkingsbedrijf\nijskoning\nstationsproject\nschetspapier\nkloksignaal\nverdelingsfunctie\nuitbreidingsstrategie\ncarrosseriebouw\ndieseltractie\norkestsuite\nbalansarm\nruimtevaarttijdperk\nkwartventiel\nhellingwagen\nregeringsgezag\ntrammaterieel\nslaapschema\nklauwkikker\nblokvenster\nontwikkelingskaart\nballastloos\nbewerkingsoorlog\nopeningsdebat\nblauwgras\nwaterstaatskerk\nbeugelkroon\nhoofdijzer\ntijdperiode\nonderzeebootoorlog\nmannetjeshert\nschroefmachine\ntijdsverdeling\nkansmodel\ndreighouding\nkroningsmantel\nsmeersysteem\nafzettingsmilieu\nvochtgebrek\nbewerkingssamenvatting\ninboedelwaardemeter\nonderwaterbeton\ntijdsdomein\nijsboerderij\nwintersportreis\nhiëroglyfenschrift\ngoudschip\ngeslachtslijn\nkwaliteitsborgingssysteem\nontwikkelingsgraad\nbrandstofrendement\nvideochip\nhuishoudafval\nschuinkruis\nsteeklengte\nstaatsordening\nproductcertificaat\nontvangstgebied\nnavigatieoplossing\ndansuitvoering\ndeurbreedte\nfamilierechtbank\nnetwerksnelheid\nlichtbehandeling\nkleurbehandeling\nzaakoverzicht\nreisforum\nsneeuwhoogte\nprofiellijst\nsoortniveau\nspeltraining\nserieweerstand\nrelativiteitsprincipe\nverhuurstation\nmaffiaoorlog\nstralingsbundel\nkennisgevingsprocedure\nsplitsingsproces\nflitsbeleid\nhoofdaandacht\ntrillingsoverlast\nontgroeningsritueel\npensioenplanning\ngrondopbrengst\nontspanningsmuziek\nvrachtterminal\ngolfvergelijking\npuntenscore\nkeuzecriterium\nprofessionaliseringstraject\nkoellichaam\nintelligentieonderzoek\nproceskostenvergoeding\nspitsperiode\nbereikbaarheidsprofiel\nluchtdoorlatendheid\nplanstudiefase\npensioenbewustzijn\ninvesteringsbegroting\ncliëntenpanel\nterugvaloptie\nmilieuadministratie\nstralingshygiëne\nuitleesapparatuur\ntransactieoverzicht\nrangeerdeel\nduinstrook\nsteenbewerking\nontstekingstemperatuur\ntoetsingsproces\ntunnelbeheerder\nonderhandelingsgroep\nwindschering\nuitstroomsnelheid\nstuurmachinekamer\nreisvoorbereiding\nhefinrichting\narchiefbeheerder\nkapitaalverschaffing\nvoorzieningsrechter\nliquiditeitsbegroting\nstationstunnel\nterugkombijeenkomst\nondernemersfonds\nraamoppervlak\npodiumkunstensector\nhalfgeleidertechnologie\ndonorwerving\nontwerpbeslissing\nolieverftechniek\ngasontlading\nschrijfinstrument\ntaaltheorie\ntoetsplan\nonderbrekingsuitkering\nrichtantenne\noogopener\nstreekhuis\nuilenkast\ntermijnecho\naanpassingsstage\nperszijde\nberoepstaak\nhoutverduurzaming\ngeslachtsonderscheid\nkartuizerorde\nklankverschil\narbeidsfactor\nslotdiscussie\nvoetbalinzicht\nrecyclingproces\nvoedingscircuit\nstandenverschil\nwatermolecule\nadersysteem\nwapenverzameling\ncameraoog\ngipsmortel\nhefcapaciteit\nbaggerproblematiek\nliedjestekst\ngrondstofwinning\ndienstverleningscontract\nzandhelling\nbeschikkingsnummer\nrivierenstelsel\nvestinggordel\nhandelingswijze\nschedelomvang\nhoofdbrander\naccentkleur\nzwaartekrachttheorie\nereloonnota\nverdragseis\nlotusvijver\ngeslachtsrijpheid\nvlierbessensap\nviervorst\nvakantiekoffer\nopeningscollege\nstadsingenieur\nhoutskoolbrander\nvertelstandpunt\ngeslachtsopening\nautolaadkraan\nconsumenteneducatie\nladingstoestand\nontstekingssysteem\necologiesteun\nstandenstaat\nsmaakaanzet\ndatamatrix\nverleidingsspel\nzeebekken\nstuureenheid\nhoofdbewapening\nkinderverpleegkundige\nwolproductie\nwolnijverheid\ntaalverwervingsproces\nstockruimte\nkubusruimte\nisolatiekamer\nspelerswissel\nbevallingsrust\nvrijkwartier\nplantagelandbouw\nmusicalvereniging\nlinkerknop\nopstelspoor\nbestuurdersruimte\nstopafstand\nperenstroop\nroosterspanning\nkettinglijn\nflatgenoot\nmuzieksignaal\ngeloofsbegrip\nkolenvervoer\nseinhuiswachter\nhondenforum\nkoetsiersbewijs\ngegevensformulier\nreferentiesite\nwindpeluw\ntoevoerlucht\nhoogte-breedteverhouding\nenergiemaïs\nweefsellaag\nkentekenherkenning\npostexploitant\nopvoedingswerk\nhulpgereedschap\nsoortenaantal\nzijdehandel\nbeeldsignaal\nbewonerswerkgroep\nevolutiestadium\nreductiekast\nvlooienbestrijding\nuitbreidingskaart\nteeltperiode\ndinercheque\nslagvastheid\nscheidingsfilter\nmobiliteitsbranche\ndaalcabine\nhervormingsdrang\nuitgaansoverlast\nmachtstoename\noverdrukklep\nkleutertaal\nkweeknummer\nstadsontwerp\ndatafusie\noefenvergunning\nmagneettherapie\nhandbalwedstrijd\nopnamekop\nmaatschappijordening\nklantervaring\nfantasieleven\nnachttocht\nbosbessentaart\npartijtucht\nnummermelder\nkomeetinslag\nsmaakstructuur\ntwistzaak\nbroodassortiment\nzakenadvocaat\nmagazijnbeheerder\nopvoedstijl\nsmaakkwestie\ndeportatiemachine\nmenutoets\ndroombeleving\nklemtoonpatroon\nroetvorming\nkoelafdeling\nmessenkooi\nlinkernaald\nhandcommunie\nsignaalbron\nplasmafysica\nhefsysteem\nbasenoverschot\nprachtleven\ndataprojector\nvolksislam\nsloopgoud\nuitvoergang\nbasluidspreker\nzuurstofverzadiging\nklompenindustrie\nwegentaks\nwaansysteem\ntafeldruif\nmaakwijze\nbushouder\nuitvalscherm\ntoeristenwijk\nafspeelkwaliteit\nzaaltraining\nsluipvlieg\nkinderwoorddienst\nballonrok\nmonsterstaat\nblokniveau\nontkenningspolitiek\npeutertandpasta\nvrieskoelwals\namberbier\nschepcorner\nvingerafdrukherkenning\nbedrijfsverkoop\ntuimelschakelaar\nmuzieklegende\nhanengedrag\nnavigatietoets\nzaalronde\nleeshandeling\nschaakopening\nvoedingsblok\nkopersbegeleiding\nsleutelbeheerder\nsamenlevingsvisie\nmantelbocht\nvochtvreter\nvoedingskleurstof\nfamiliestrand\nlevensrivier\nwarmtelek\nramadanfestival\nverschoontafel\nwarmwaterproductie\nkalendercommissie\nstadsdichteres\nnaziconcentratiekampen\nkraakwachtbureau\nheropvoedingscursus\nvertooganalyse\nsandwichbar\nhardloopwinkel\nforumbeheer\nbrandstoffles\nkunstcollectief\nlamellenpakket\nverbrandingsdood\nafdrukservice\nmachinebesturing\npaardenslee\ncompositieschema\nversnellingsopnemer\nplantagebestuur\npollendiagram\nbasketbalprogramma\nmoordproces\nbouwmisdrijf\nbeleidscultuur\novernamerichtlijn\nploegenwerk\nkennistekort\nverhuurdienst\nmensendorp\nziekenfondssysteem\nontwerpbenadering\nwalvisseizoen\nvandalenstreek\nveiligheidsmanager\nmigratieplan\nbehoefteanalyse\nwatertappunt\nreparatiemateriaal\nwapenbeleid\nroostertechnisch\nonderwijslocatie\nvaststellingsprocedure\nstofbelasting\nwaarschuwingsregister\nwijzigingsblad\nvergunninggebied\nwaterkwantiteitsbeheer\nvoedingsdoel\nvervangtoestel\nvluchtaanbod\nzichtbeton\nzeebaarsfilet\nhoutverkoop\nmanagementkosten\nminimumaanbod\ngrasseizoen\ndistributiemiddel\ngraafschade\nwereldnummer\nvolkstraditie\nspellingfout\nproceskwaliteit\noriëntatietraject\nverwerkingstechniek\nouderenpartij\nwaterbelasting\nthuisbezoek\nafvoerlucht\nconflictregio\nwerkverplichting\nwinkelstrip\nstudieproces\nwerkfunctie\nstudentenfilm\nboekenjaar\nplansysteem\nmensenmateriaal\nterreinbezoek\nmerkcommunicatie\nactiecampagne\nstrategiekeuze\nwerkgebouw\nscorespoor\nvoetbaltechniek\nluchthavenexploitatie\nslotopdracht\nwinterverhaal\ncultuurpark\nsupertoernooi\nklantbehoefte\ntransactiesom\nvastgoedeigenaar\nvastgoedfinanciering\nticketautomaat\nspuitgietmachine\nsmokkelnetwerk\nrijkeluiszoon\nradiovriendelijk\npijlgifkikker\npijnklacht\norganisatielid\nluchtafweersysteem\nkatoenprijs\nverpleegstersopleiding\nhondensoort\nsamenwerkingsinitiatief\nhandbalveld\nmannenborst\ntafelhoogte\nbierbeslag\nreinigingsmachine\nsuperhotel\ncementoven\nheffingssysteem\nbestuursteam\nmuziekmachine\nnaamverandering\nprinsenbal\ncabinelift\nklankbalans\nmisdaadgolf\nsekscontact\nstaatsconcern\nmaximumniveau\nsoftwarebranche\nhechtingstheorie\nminimumloonniveau\nvermoeidheidsziekte\nuitzonderingsmogelijkheid\nbolusinjectie\nwedstrijdcomité\naardingsinstallatie\nboomstamkano\nharinghandel\nkarakterschrift\nloopbaangesprek\nmassamanifestatie\nmatrixorganisatie\nmedezeggenschapsstructuur\ntrekbelasting\npijnboompit\nstartlening\nkaasliefhebber\nstudieroute\nthuisserver\nsierverlichting\nsneeuwkwaliteit\nhertenfilet\nspaardouchekop\nlandgebied\nbedevaartkerk\nkosteninflatie\nboerengeslacht\norgelwereld\nafdelingskampioen\nopdrachtovereenkomst\nspanningsdeler\nneerslagsom\nmoessonklimaat\nlustrumcongres\nmozaïekbeeld\nregentengeslacht\nafstudeersteun\ncompositiestijl\nstookproces\nprojectnota\nstructuurelement\nontwerpfilosofie\ngrondwatermodel\nhemelbekleding\nwaaggebouw\nstimuleringsbijdrage\ngeweldverbod\nliftplaats\ncontrolemoment\nhardwareprobleem\ndouchescherm\nideeontwikkeling\nkleurvolgorde\nkrachtverdeling\ndanshouding\nlandbevolking\nbasisweerstand\nkrachtwerking\nlandarrangement\nslokdarmwand\nonthaalruimte\nleesruimte\nklachtregeling\nbubbelwijn\nverrassingsdiner\ninschrijvingsstrook\nwederlegging\ndocumentairestijl\nverwenpakket\nmestafzetkosten\nvleesveehouderij\ngrasmengsel\nafwijkingsbevoegdheid\ninkomensbegrip\noverdrachtsdatum\ngolfoverslag\nrijksfinanciering\ntijdstraject\nbehandelingstijd\nkwaliteitsmedewerker\nluchthavencapaciteit\ndrinkwaterproductie\ntheorieontwikkeling\nkeuzebegeleiding\ninburgeringsbudget\nondernemersloket\nzwerfgedrag\npersonenstelsel\nopleidingsmateriaal\nemissiegrenswaarde\nverwerkingsvermogen\nnitraatconcentratie\nkooihuisvesting\nheffingssystematiek\nsuikerprotocol\ntoepassingsdatum\nbedieningsinrichting\nrevisierente\nvoedingsnet\npannenkoekenmix\nprocesontwikkeling\nwederopstand\nlandbouwproductiviteit\nbroeikaswerking\nmilieurisicobeoordeling\ntoetsbeleid\nschakeltraject\nplaatsingsdatum\nwapenkluis\nuitkeringsgrondslag\ngranaatappelboom\ntrainingservaring\ngeurwaarneming\nkoolstofdioxidegehalte\ngoederendienst\ninkomensvermindering\nstaatswezen\nwinstzucht\nbestralingsveld\nhoofdschool\nwerkgroepleider\nwederopbouwfase\nhefboomfunctie\nstoommotor\nstralingsbalans\nriviernaam\nleerlingenvolgsysteem\npeperhandel\nfitnessinstructeur\noverbrengingssysteem\nprogrammeringsdocument\nopeningsthema\nschijnleven\nsportbuurtwerk\nkoningsburcht\nkatoenoogst\nplotontwikkeling\nfabricagedatum\nwarmtegeleidingsvermogen\npartijbureaucratie\narchiefinventaris\nophoogmateriaal\nzwemrichting\nrotsrichel\ngasfactuur\ncrosstraining\nbloeitijdperk\nspaanplaatindustrie\npalmpaasstok\nliefdespijn\nbiologiestudie\npoëzieroute\nplamuurlaag\naantekeningenboek\nwijkservicepunt\nherenafdeling\nrockliefhebber\njachtdomein\ntotaalroman\nvredestoestand\nwareneconomie\nuitvliegopening\nwoestijngod\ndrankoffer\nnieuwsbureau\nkinderwerker\ntijdverdichting\ndiffusieproces\nmensengeest\nluisterpositie\nmoddervrij\ngodsdienstwaan\nplantenwerkgroep\nstralingshoek\nwinteronderhoud\nademhalingsapparaat\nliteratuurboek\nverdeelbord\nwaterpolotoernooi\nnormgedrag\nconsumentenmaatschappij\nhorizonlijn\nplanttemperatuur\nstadsgeneesheer\nbronopsporing\nverteringssysteem\nmedicijnwiel\ndeelnamebedrag\ntypekeuringscertificaat\nwerkplatform\nziekenhuisassociatie\nzendersignaal\nkweekkoppel\nabonnementenadministratie\nbezoekersgroep\naanmeldtermijn\nincidentenmanagement\nschadestaatprocedure\nontwerpgericht\ntirannenmoord\ninjectiemateriaal\nzakencultuur\nvechtarend\nkopieerwinkel\npracticumlokaal\ninvesteringsactiviteit\nmolecuulformule\nplantsoort\nleasinggever\ninstallatiegemak\nvoedingskeuze\nreflectiemoment\nlichtwerker\ninkijkexemplaar\nprivéjacht\ninfectiegraad\nsupersfeer\ndroomjongen\nstartbaankaart\ntijdsinvulling\nkansexperiment\nloyaliteitsdividend\nhuidverslapping\nvrouwenbevrijding\npaardeindspel\ntienerleven\nzelfmoordgedrag\nachillespeesruptuur\nwaswerking\nvoedingsleiding\nnatuurdarm\nhondenverbod\nkoortraditie\nraamambtenaar\nzoekmachinegigant\nplaatjesdraaier\ncollegeblok\nleesvermogen\nmelodievoering\nscheepvaartcontrole\nschimmelsap\nafstudeercommissie\nantwoordzin\nleuningwerk\nslangenvoer\ntextieldeskundige\nbomenwerkgroep\nbrutowinstpercentage\nschrijftijd\nprachtmuziek\nkinderbibliotheek\nwereldvoedselcrisis\nobservatieplatform\nuitgaansbeleid\nhondentrimsalon\nmerkportfolio\nluitmuziek\nfabrikantenfamilie\nmeniscusletsel\nheupomtrek\ninductieprobleem\nafvoerpomp\nafdrukzijde\ninkooppakket\nvluchtalternatief\nartsenfamilie\nvoetbalspektakel\nmilieumanagementsysteem\ncommunicatieconcept\nvergelijkingsmethode\nkunstruimte\nfilmtechnisch\ntestmachine\ntwaalfcilinder\nafvalstoffendecreet\nbeleidsjargon\nwandpaneel\nschuimstof\nfestivalleiding\nbetaaltelefoon\nprijsvaststelling\nballonkatheter\nbasisschooladvies\nbergingsteam\ngeitenhuid\nbekeringsproces\nentertainmentshow\nartsenberoep\nbenoemingsadviescommissie\nbestralingsruimte\nblaasmiddel\ngrondwaterlaag\nvarkensindustrie\narbeiderswereld\nbijtellingsregeling\narbeidsproduct\narbeidsstelsel\nschaatsvereniging\ngodsdienststichter\nstoominjectie\nmengvoedersector\nnatuurinrichting\npeilgebied\ntoetscommissie\nmappenlijst\nziekenhuissfeer\nbinnenhuisinstallatie\nberoepsproduct\nbetonherstel\nkopieerbescherming\nbreekinstallatie\nverzekeringsexpert\nkenniskaart\nverwerkingsinrichting\narchiefzorg\nbouwonderwijs\ngebouwdeel\nfilmstudent\nhulpsysteem\nlichtcomputer\ncompensatiedag\ncomputerverkoop\ncomputercommunicatie\nleveranciersmanagement\nhoofdschedel\nflatscreentelevisie\nkabinetsvorming\nherenschoen\ngroeibevorderend\nherinneringsteken\nbosbouwbeleid\ninburgeringsdiploma\nhoutbranche\nkwaliteitswet\nindustriegroep\nconjunctuurbeleid\neindexamenexpositie\ngebruikersgedrag\nbloedingsrisico\nbuffergeheugen\nkopiefactuur\nbudgetmechanisme\nblusleiding\nlijnperspectief\nefficiëntieverhoging\nfotonummer\nlocatieontwikkeling\nlichtstand\neindmusical\nfractiestrijd\ngewestbelasting\nfotoformaat\nbreedbandmodem\nimportbestand\nrijkstoezicht\nkennisproductiviteit\nmachtsbereik\nkleineveldenbeleid\nkerndirectie\nlevenstoestand\nhoofdtegenstelling\nlanddegradatie\nkredietgeld\ndradenkruis\nhersengewicht\neenheidswet\nkernenergiedebat\nverkooptopper\ndraagkabel\nimpulsfrequentie\nduimbreedte\nfamiliegebeurtenis\nbontwinkel\ndonorweefsel\ndodenwereld\nbosbouwstrategie\nledenvereniging\nvirusbestrijding\nfestivalperiode\nleesbegeleiding\nglobaliseringsfonds\ncompatibiliteitsmodus\nindoortraining\nstudentenpand\nburencontact\nfietspendelboot\nborstvlieskanker\nbruidsshow\ndomeinhouder\ncursuszaal\ngeloofsgeheim\npersoonlijkheidssyndroom\nnevenpersonage\nrecreatiewater\nrentebestanddeel\noverheidsstructuur\npaardencentrum\nsnelheidsradar\nmonumentenregister\nminimumrecht\nmoederrecht\nprivéwereld\nklantenpakket\nrelatiekaart\nstrandfoto\nverfmachine\nraamindeling\nroutebegeleiding\nmisdaadgroepen\nmuziekweergave\nrijonderricht\ndessertkaart\npartnerbegrip\npaardenspektakel\nschrijverskwaliteiten\nwoestijnleven\nmonnikengemeenschap\nmeisjeskostschool\nschriftelijkheidsvereiste\nprojectieperiode\nrechtmatigheidsonderzoek\nmonitoringsprotocol\nschroefkoppeling\nvijvergebied\nopvoedingsvoorlichting\nontwikkelingstrap\nneerslagreactie\nondernemerspakket\nmeerwaardevorming\nmilieutoestand\npreekvoorbereiding\nschietboom\nontwerpvisie\nbloemengroet\npaspoortenkwestie\nreformatietijd\nscheidingsmethode\nontledingsreactie\nkleurenbeheer\nhandklappen\nvideokabel\nmotorrevisie\npaastoernooi\nloopbaanjaar\nschijfopruiming\nwijkbeheerteam\nrangeermeester\nstichtingscongres\nsupercontract\nstudentenabonnement\nvuurwerkgebruik\nverwervingsvoorbereidingsfase\nwerktuiggebruik\nverhardingsmateriaal\nziektevervanging\nvariatiebreedte\nvoedingswater\nvermogenssfeer\nverdragenrecht\nvoortplantingsmechanisme\nvolumewagen\nwereldvoedselvraagstuk\nstudentenoverleg\nvoertuiggewicht\nwaterrecht\nwereldgeld\ntuincommissie\nwatervilla\ntelefoonoproep\nstroomrail\nstaatsbeheer\nspijkerjas\nsupersnelweg\nsportfondsenbad\nweefseltypering\nvernietigingsmachine\nzuurstofmolecuul\nuitvoeringsontwerp\nvaardigheidsonderwijs\nwondervol\nwaterkansenkaart\nwereldpositie\ntoiletzitting\nstudentenbeleid\nvisumsticker\nzinkgehalte\nvolksgeneeskunst\nstadskwartier\nmannengedeelte\nvredesgedachte\nspeltherapeute\nvoedingsprofiel\nvonkontsteking\ntemporaliteit\nwerktuigmachine\ntalentenpool\nstakersvergadering\ntransportstand\nwatervergiftiging\nveldentheorie\nwarenmaatschappij\nwoonkamerdeur\nsupportmedewerker\ntrustrekening\nspieruithoudingsvermogen\nvrouwengilde\nvideopagina\nwevershuis\nvetvertering\nverdedigingsstelling\nvleermuisonderzoek\nveiligheidsrelais\nvoedingsmiddelentechnologie\nopvangstructuur\nproductievorm\naanbodlijn\nwerkladder\nbeeldgedicht\nbedrijfslichaam\nbeoordelingsmaatstaf\ngrensdoorlaatpost\narbeidswaardeleer\nbestedingsinflatie\nafslankdieet\nbatterijpakket\nklassenstandpunt\nloonbedrag\nverbindingsorgaan\nbeheerspersoneel\nmachtsverovering\nprivaateigendom\nwildgebraad\narbeidsleger\nboerenbeweging\nreferentieadres\nboerenmassa\nzwemlerares\noorlogscommunisme\nvoedingsassistent\nboerenrevolutie\nadreszijde\nsubsidiewijzer\nbeleidsnetwerk\nhartafstand\narchitectenselectie\nbestedingsevenwicht\nafdelingscoördinator\nvolksfrontregering\nbankgiroloterij\nautoschadehersteller\nbedrijfsformulier\nonweersdreiging\ntabakspreventie\ngeslachtsselectie\ninternetfilm\nfamilievorm\nfrequentieanalyse\nsuperlocatie\nenergiesoort\ngasreservoir\ntabaksproduct\ncongresverslag\nmoslimzuil\nstolbaarheid\naanwijspen\nkiesrechtkwestie\ninkomensbeeld\njagersinstinct\ngeluidscollage\nlimonadefabriek\nlievelingswoord\nbevrachtingscontract\nfietskluis\nmotorvoertuigentechniek\nbetaalsite\nhoofdhalte\ngelegenheidsstructuur\ngolfsimulator\npapiertype\nbusinessruimte\nomzetverhouding\nfusierapport\nweergavestand\nomgevingstabaksrook\nframbozensap\nkinderprent\nunitdirecteur\nmentorgesprek\nnetwerkcoördinator\ncultuurnotasystematiek\nidentiteitscode\npopulatieverdeling\ningrediëntendeclaratie\nmelkquotaregeling\nexportomzet\ncausaliteitsbegrip\nroetafval\ngeloofsoog\nbevoorradingspunt\nherdenkingsartikel\ninhaalregeling\nverwijderingsprocedure\ndijkherstel\nmilieukapitaal\nherenenkel\nklankenspel\nhandweverij\nzomertoernooi\nkatoennijverheid\nparingshuwelijk\nhandelskaravaan\ninvoerlade\ndocentfunctie\ninternetbron\nbleekbruin\nrijstabiliteit\nbevestigingstoets\nberoepsbestuurder\nvestigingsdirectie\nverkeersmonitoring\nscantaak\nluchtverkeersleidingseenheid\nonweersactiviteit\ndoelgroepvermindering\ndiamantgrond\nbindelastiek\nexamenkans\nflitsontslag\nsnoepstok\nuitvoerlade\nuitstelkosten\ntandkristal\nbedrijfsautoregeling\nschoolpsychologe\nflitssterkte\neffectenleaseproduct\nnetwerksleutel\nonweersgebied\ninbouwhandleiding\nnetwerkcoach\nafstudeercoördinator\nclubtrofee\nmergschede\njasmijnrijst\nzilverborduursel\nkleurenmodus\ntuinadviseur\nnieuwskatern\nprocesvorm\nouderdeel\nrailsector\nsatellietkaart\nregeltechnisch\nbezwaargrond\nscheidsrechtersvereniging\nröntgendiagnostiek\ninterpretatiegeschil\nrechtspolitiek\nonderwijsgids\nruisverhouding\nsaneringsnoodzaak\nhoroscooptekening\nschaderegelaar\nkantinemedewerker\nproductiestelsel\nontwikkelingstendens\nolifantenkop\nmedezeggenschapsaangelegenheid\noliedrukmeter\nlevensgolf\nproductietak\nmedezeggenschapsbevoegdheid\nproductienummer\nrevolutieperiode\npersconcentratie\ninstemmingsgeschil\ntandwielpomp\nsluipvliegen\npolymeerbeton\nnazitijdperk\npowervrouw\nslaoliestijl\nlichaamsonderzoek\nlichaamsbedekking\nwoon-werkafstand\ntekenbevoegde\nteeltbedrijf\nschoolontwikkelingsplan\ngelaatsexpressie\nlichaamsonderdeel\nlandingsgeld\nlichaamsweefsel\ngelaatsscan\nlichaamshelft\nlichaamscontact\nlichaamsbeharing\ngelaatsvorm\nlichaamsbeeld\nlichaamsbeleving\nlichaamsbewustzijn\nlichaamskleur\nlichaamszwaartepunt\nlichaamstype\ndeelschool\ntitelverklaring\nlichaamswerk\nlichaamsgevoel\nlichaamsmassage\nlichaamssamenstelling\nstadsvernieuwingsplan\nbestuursbenoeming\nlichaamsvloeistof\nspuitlicentie\nlichaamsgrootte\nlichaamsversiering\nlichaamshygiëne\nlichaamsvolume\ndodencultuur\nlichaamsenergie\nlichaamsomvang\nlichaamsmassa\nlichaamsgebonden\nlichaamshuid\nlichaamsbehandeling\nstrokenverkaveling\ncampusdirectie\ntabaksdetailhandel\nadviesgeschil\ngelaatsverzorging\nklavierconcerto\nvierwielsturing\nsurvivalkit\nlichaamsvetpercentage\nlichaamsbestraling\nlichaamsgebruik\ntijdversnelling\nalcoholinkt\nversnellingskamer\nverkrijgbaarstelling\nvaandelwacht\nverlichtingsfilosofie\nvraagfunctie\nspermadruppel\nverzekeringsgedachte\ncodegeneratie\nverhaaltempo\nvruchtbaarheidsprobleem\nniervlek\nvochtbestrijding\nbladertooi\nproductenmarkt\nschrijversgilde\neenheidsfrontpolitiek\nbluesschema\nchlooratoom\nverweringsmateriaal\nopvoedtelefoon\narbeidersleven\nwaterpasinstrument\nprijszetter\nmestbassin\nstudentenoproer\nmijneigenaar\nkerkregering\nvrijstellingsmethode\nwaardetheorie\nwachterswoning\nwaarnemingspsychologie\nskilerares\nzwangerschapskans\ngrondligging\ntienertoer\nspeeltoneel\nspermadonatie\nzeeonderzoek\nclubwinkel\nzorgcommissie\nreferentieprofiel\nactiemuziek\nbelastingservice\nstructuurwerkloosheid\ngezondheidswinkel\nstadsmuziek\ncateringmedewerker\nkippenpest\nzakenelite\nafwikkelingsdatum\ndistributiestamkaart\ngoederengemeenschap\ngistingsbier\nvertaalstrategie\nbehandelingsteam\ntreinleiding\nkozijnwerk\nleasingovereenkomst\nbrouwersgilde\nconsumentensoevereiniteit\nbeschikbaarheidsbeginsel\nlaatkapitalisme\nmassastrijd\nerfelijkheidstheorie\ngodsdiensthistorisch\narbeidseenheid\nchristengeloof\nbeheersinformatie\ngebruikelijkheidscriterium\nletselpreventie\nmaatschappijorde\nsubstitutiebehandeling\ntoevoegingsmiddel\nhulpverleningswagen\ngeloofsgehoorzaamheid\nkerkenordening\nbinnenvaartverkeer\nbeeldvormingsproces\narbeidskrachtenenquête\nschoenensector\ninlaatpoort\nbedrijfschef\nlevensschoonheid\nremstraling\ntijdsverdichting\nlichtcrème\nbankbestuurder\nbotslichaam\nlaadprofiel\nsupersnaartheorie\ndoelwisseling\nmeldingstijd\nhandtekeningenkaart\nhomecinemaset\nhoogteregelaar\nberoepsstatuut\nplantloon\nangstdenken\nborstenman\nhoornconcert\njongensuur\nroodknievogelspin\ntrajectdeel\noverbruggingspensioen\nterugkeerbureau\nrecreatieverblijf\nwatersportverbond\nmoedergemeente\nwinstrecht\nmodeontwerp\nstrijdvorm\nvisproduct\nschoonheidsnorm\nneerbuiging\ndadelijkheid\nblushelikopter\nvrouwenman\nstatusangst\novernamespel\nopvoedingsinstituut\ntijdsafhankelijkheid\naanvangskosten\nuitgavenontwikkeling\nbewerkingscentrum\nstaatselektriciteitsbedrijf\ncreditcardschuld\nwinstsfeer\nbelastingsamenwerking\nsamenwerkingsprocedure\nvaccinatiekosten\nboerenklasse\noutdoorkleding\ntaartenbuffet\nthoraxchirurgie\nbelastingsom\nwinstmakerij\nuitstappunt\npredikdienst\nopperkamer\nkerkordening\nstationswachtkamer\nachteruitrijlicht\nboekenmens\nradensysteem\nmonumentenbescherming\nstaatsietrap\nsocialistenvreter\nbekerontmoeting\nrassengeweld\ntekeningspatroon\nbaksteenfabriek\nwoordendiarree\nvlindertelling\ndemoniseringsproces\nstaatsolie\nschietvergunning\nboekencatalogus\ncondenspot\nbacheloropdracht\ndelegatiehoofd\ngevechtstaak\nkasoverschot\nijsprinses\nheetwaterbad\nijshockeybond\nharddrugsverslaafde\nkunstorgaan\ngraalburcht\njongensbroek\nmijnarbeid\nverbruikskosten\nrechtshandhavingsautoriteit\nmonopoliekapitaal\nmaagmiddel\nsocialistenwet\nkiesrechthervorming\nindustriekapitaal\ninhaalruimte\nliefdegroet\nsurpluswinst\nwarmtehoeveelheid\nremgewicht\ngedachtevrijheid\ndraaistelframe\nremverdeler\nvoertuigbak\nmeerwaardetheorie\nverbruiksmateriaal\nnazidictatuur\nherontwikkelingsplan\nhardrockmuziek\nprijsvraaglijn\nverwijzingsarrest\ntoneelactrice\nsubsidiebeheer\nmonsteronderzoek\nvereveningsmodel\nwaterbank\nvrouwencommissie\nminimumprofiel\nsysteemtechnisch\npyjamajas\nomroepdirecteur\nkoffiezak\nsuperambtenaar\nprivécoach\nnatuurbeleidsplan\nrekeningenboek\nvlotterkraan\npatiëntenbespreking\nsterbedekking\nreceptiegebouw\nkweekgebied\noorlogsmiddel\nplanningsprobleem\nsuperspecialist\nplantenmassa\nvoedingstechnologie\nspinazieacademie\nsupernovarest\npamflettenoorlog\nvoorlichtingsactiviteit\nweerdeskundige\nkinderexploitatie\nschoolnieuws\nwaardevorm\narbeidersaristocratie\nploegwissel\narbeidsverrichting\nbourgeoisklasse\narbeidswijze\ncirculatieproces\nsovjetbureaucratie\nterugbetalingssysteem\nkinderopvangplaats\namateurdichter\namateurhistoricus\nantidrugsbeleid\naanwezigheidsdetectie\nliefdesthema\nafstudeerpakket\nbeleidsinspanning\nbankorganisatie\nbeleidsalternatief\naardkleur\nboekenstal\nbegripsanalyse\nbedrijfsvoeringsbeleid\nuitvoeraangifte\nbladzijdenummering\nbeeldwoordenboek\nwoonwagenpark\npostnetwerk\nvrachtwagenfabrikant\ncontactstop\nconceptkandidatenlijst\nsportwagenfabrikant\nrotorhuis\nwaarschuwingssein\nverplichtingenstand\npresidentsnominatie\nsportwagenbouwer\novergangsmaatschappij\nconcepteindrapport\nroestproces\ntienurenwet\ngeldbezitter\npedaalkracht\nsectorbijlage\npresidentsstrijd\nstaalhagel\nstatieoverste\nstroomarbeid\nremvoeringset\nschotbeeld\nverpakkingsband\nwaarschuwingsarm\nEG-typeonderzoek\nVN-kinderfonds\nEG-typegoedkeuring\nfamiliebeheer\nhoofdreservoir\ntrainingsjas\nkrijgsbeleid\ndelegatiebepaling\nijsgezicht\ngezelligheidsdrinker\nVN-klimaatpanel\nloopstand\nniveauverbetering\ngeschilleninstantie\nEG-keuringsverklaring\nkrijgsplan\nkostenschema\nkinderwagenbak\ndoorreiscamping\ngasontladingsbuis\nbedrijfsremsysteem\ngoedkeuringsmerkteken\narbeidsmaat\nhoofdwachter\nNAVO-stabilisatiemacht\narbeidsfysiologie\nkwaliteitscamping\nbedieningsleiding\nhulpremsysteem\ngeitenherder\nconformiteitskeuring\nkachelkraan\ndetailscan\nhoudadvies\nmachinistenkraan\ningenieurswetenschap\nimpulsijs\nburgerpanel\nburgerrechtbank\ngebruiksruimte\nburgerjaarverslag\nburgerinspectie\ngebruiksjaar\nburgersamenleving\nburgermanifest\nburgermoeder\ngebruikshandleiding\ngebruiksvorm\nburgerkledij\nmilieugebruiksruimte\ngebruiksvergoeding\nburgerraadpleging\ngebruiksdatum\ngebruikslicentie\nburgerforum\ngebruikscomfort\ngebruiksaardewerk\ngebruikshond\ngebruikskwaliteit\ngebruiksoppervlakte\ngebruiksperiode\ngebruikspatroon\ngebruiksintensiteit\ngebruikservaring\ngebruikstarief\nburgerstaat\nburgerplatform\nburgerjury\nburgerzakensysteem\nburgerjournalist\nburgerraadslid\nautoglas\nburgerkoning\njagerskostuum\nkindertandheelkunde\nkastuinbouw\nautowedstrijd\nuniformrok\naidscampagne\naidsrisico\nbelastingsector\nantidrugseenheid\naidscongres\nartiestencafé\naccijnswet\naanschafbon\nmasterprogramma\nmastertraject\noorlogsgebruik\nontwerpreglement\nmasterstudie\nmasterjaar\nmasterniveau\nmilitiewet\nnazisysteem\nmastervak\nprijssom\nmasterstudent\nmasterdiploma\nprivékantoor\nmastergraad\nprogrammeringsmodel\nmasterthesis\npettenprobleem\npensioensfeer\nmasterproef\ncirculatiemiddel\nmasterscriptie\nstopcoach\nmarktschets\nbruggat\ndeeltjessnelheid\nschippersvolk\nsolozeilen\nthuisdag\nverdovingspijl\nweervisser\ntransportbus\nvermogensaanwasbelasting\nstudentengezelligheidsvereniging\nsprookjesmotief\nuniversiteitslaboratorium\nontwikkelingsbenadering\nvrachtwagenindustrie\nstadscourant\nstaatsgeschiedenis\nvrijmetselaarsorde\nuitgifteband\nstuifregen\ntempelorde\ndieetbehandeling\nwegwerpeconomie\nbedrijfsvoeringskosten\nbedrijfsaansprakelijkheid\nzendingssituatie\nbakkersleerling\naidslijder\napneusyndroom\naidskliniek\nbelastingsoftware\nbeleidstechnisch\nberkenfamilie\nverjaardagslied\nzesenveertigste\nverjaardagsbezoek\neenennegentig\nscheepsgeschut\ndrieënzeventig\nzeeolifant\nrunderras\nverjaardagsparty\nscheepsbemanning\nverjaardagsgeld\ndriejarenbeleid\nscheepsbenodigdheden\nwinstregime\nzorgkostenforfait\ndriegeleding\nscheepsdienst\nscheepsgrootte\nvijfendertigjarige\nscheepshond\nzesjesmentaliteit\nbosolifant\nscheepskompas\nrundervlees\nscheepsbrug\nlopenzaad\ntweefrontenoorlog\nschildvorm\ntekenhoogte\nscheepslengte\nscheepsnummer\nscheepsuitrusting\nscheepsnaam\nscheepsveiligheidsplan\ntweeduizendjarige\nscheepswagen\nscheepsjager\nscheepssloperij\nscheepsmast\nbospartij\ndierentuindier\ngemeenschapszaal\ngemeentetram\nmannetjesolifant\ninvorderingsvrijstelling\nfondsgelden\npijpmakerij\nlijfrenteregime\noverdrachtsverplichting\ngeloofsonderzoek\nniercheck\nbrooddieet\ncabaretact\ngebruikersfout\npijpmodel\nverjaardagskaart\nblauwstructuur\nactiethema\nkasdienst\ninternetmarktplaats\nijsproducent\nijseend\nbabyolifant\niriswortel\nhuishoudrol\nmiljardensubsidie\nnazimisdadiger\npilotprogramma\nondersteuningstaak\npeiltoestel\nnazibeest\nontwerpverkiezingsprogramma\noorzakenleer\npalmcomputer\npioniersschop\npaardzet\npoppenkind\npoppenkasterij\nprivégedrag\npottenbakkersdraaischijf\npotroos\n's\n06\n1e\n2e\n4wd\nAAW\nABU\nAM\nAMAR\nANG\nARAB\nARDS\nARP\nAVI\nAVRO-programma\nAWW\nAlpenlandschap\nBAB\nBalkanstaten\nBekendmakingswet\nBengalese\nBermuda's\nBondsdaglid\nBondsministerie\nBosatlas\nBurgemeesterswijk\nBuurlo\nCANS\nCHE\nCO-emissie\nCentrumdemocraten\nChristus-Koning\nDNS\nGeneraliteitslanden\nGezinsraad\nGrabbelpas\nGraspop\nHaagje\nHanzelijn\nHollywoodster\nI\nIBAN\nICT-specialist\nID\nII\nIII\nIJzerfront\nIMEI-nummer\nIP\nIX\nKAJ\nKINT\nKamerbrief\nKlaagliederen\nLissabonstrategie\nMalagassische\nMexico-Stad\nMoederbond\nNAVO-ambassadeur\nNAVO-bijeenkomst\nNAVO-eskader\nNAVO-grondgebied\nNAVO-kringen\nNAVO-lid\nNAVO-lidstaat\nNAVO-militair\nNAVO-ministers\nNAVO-oefening\nNAVO-overleg\nNAVO-partner\nNAVO-strijdkrachten\nNAVO-troepen\nNAVO-verband\nNAVO-verdrag\nNAVO-vloot\nNAVO-zijde\nNIA\nNIAS\nNIC\nNOT\nNUR\nNeder-Rijn\nNoordzeeconferentie\nNoordzeegebied\nNoordzeemilieu\nNoordzeestaten\nNoordzeewater\nOnderwijsraad\nOranje-Vrijstaat\nOranjecomité\nOranjelegioen\nPsalmen\nRIN\nRIZA\nROO\nRekenkamer\nRijksarchiefschool\nRijksverkeersinspectie\nRijnbrug\nRijndelta\nRijnland\nRijnmondgebied\nSAI\nSIDS\nSIE\nSIS\nSU\nScheldestad\nSchipholtunnel\nSlangendrager\nSovjetperiode\nSovjetregime\nSovjettijdperk\nSpreuken\nSpullenhulp\nTHE\nTIA\nToeslagenwet\nV\nVII\nVIII\nVUT-fonds\nVUT-uitkering\nVerantwoordingsdag\nVolkskrantlezer\nVolkswagenfabriek\nWAO-gat\nWekenfeest\nWereldgezondheidsdag\nWereldhandelscentrum\nWereldnatuurfonds\nWereldvoedseldag\nWereldvrouwendag\nWerkloosheidswet\nX\nXI\nXII\nXIII\nXIV\nXIX\nXLI\nXLII\nXLIV\nXLIX\nXLV\nXLVI\nXV\nXVII\nXX\nXXI\nXXII\nXXIV\nXXIX\nXXV\nXXVI\nXXX\nZiekenfondsraad\nZiekenfondswet\nZiektewet\nZuid-Polen\naanbodgestuurd\naansprakelijkgestelde\naanw.\naanzuiveringstermijn\nabsentia\nachterkamertjesoverleg\nad-hoccommissie\nadministratievelastendruk\nadopter\nafhechting\nafvalling\nafzetbeen\nagrosector\nalgendiesel\nallerlaagst\nambtenarenbestand\namine\nan.\nandersgekleurde\nantibioticagebruik\nanticumulatieregeling\nantidemocraat\nantidiscriminatiebeleid\nantidiscriminatiebepaling\nantidumpingmaatregel\nantigif\nantipasta\nantiraketsysteem\nantistollingsmiddel\nantitankgranaat\nantiterreurwetgeving\nantitype\nantivirus\napparaatsuitgaven\napparatsjik\narabica\narbeidsgezondheidskundig\narbeidsongeschiktheidsfonds\narbeidsvoorzieningsorganisatie\narts-assistente\nasbestweg\naspectenonderzoek\natriumfibrilleren\naudioboodschap\naudioset\naudiotape\nbachelor-masterstelsel\nbanksparen\nbeboetbaar\nbedrijfscombinatie\nbedrijfserf\nbedrijfsinkomsten\nbedrijfsvoeringsinformatie\nbedrijfsvoeringsparagraaf\nbedrijfsvoeringsproces\nbeheerdersrechten\nbejaardenbelasting\nbelastingscurve\nbeleidsverantwoordelijk\nbelminuten\nbelsignaal\nbelspel\nberge\nberoepenclassificatie\nberoepsbegeleidend\nberoepsopleidend\nberoepsopleidende\nberoepspraktijkvorming\nbesluitmoratorium\nbetalingsonmacht\nbeurze\nbevolkingskrimp\nbezoekersparkeren\nbezwaarindiener\nbijstandsbesluit\nbinnenantenne\nbinnenhuisarchitecte\nblooteigenaar\nboerenvoorman\nboeroeper\nbolbloementeelt\nbomgordel\nbonnefooi\nbovennatuur\nbrutobedrijfsresultaat\nbrutoresultaat\nbrutotonnage\nbrutowedde\nbuitenlanduitgaven\nbuizenradio\nburger-oorlogsslachtoffers\ncategorisatie\nchocoladebeen\nchocoladevlokken\nco-evolutie\ncolloqueren\ncomorbiditeit\nconcernverhoudingen\ncongestiegebied\nconsultatiebureauarts\ncontaminant\ncontracteerruimte\ncoproductiefonds\ndaltarief\ndenitrificatie\ndepressieveling\nderogatie\ndescriptor\ndetacheerder\ndichtbebost\ndienstverrichter\ndoorgeleiden\ndooronderhandelen\ndoorverwijspagina\ndouaneschuld\ndouanewetgeving\ndraadtang\nduwfout\neergerelateerd\neetmoment\neetprobleem\neigenaarspagina\neindejaarsmarge\nexoplaneet\nfactoring\nfrictiekosten\nfusieperikelen\nfuture\ngameboy\ngebiedsverbod\ngeel-blauw\ngender\ngendergebonden\ngeschillenbeslechtingsprocedure\ngeslijm\ngestanddoeningstermijn\ngevarengrens\ngeweldsspectrum\ngezinsarbeid\ngezinscoach\ngezinsmigratie\ngezondheidswetenschappelijk\nggz\ngodsnaam\ngogo\ngrieppandemie\ngrintweg\ngroepsbeeld\ngroepsbinding\ngroepsidentiteit\ngroepsmaatschappij\ngroepssolidariteit\nhagelnieuw\nhalfdrie\nhalfelf\nhalfnegen\nhalftien\nhalftwaalf\nhalftwee\nhandelsverhoudingen\nherindicatie\nherontwikkelen\nherontwikkelingslocatie\nhiërogliefenschrift\nhominem\nhoofdvaarweg\nhotelbar\nhotelcomplex\nhufterig\nhuis-aan-huisactie\nhuisvester\nhulpverleningsmethode\nhuwelijksmigratie\nhuwelijksverbond\nijsbedrijf\nijsbestrijding\nijsdwerg\nijsschaatsen\nijzerwarenhandel\ninbreukprocedure\ninburgeringsplichtig\nincidentenbeleid\nincrementeel\nindianengebied\ninfobox\ninfobus\ninfodag\ninfrageluid\ninfraroodlamp\ninrichtinggebonden\ninstellingsaccreditatie\ninterculturalisatie\ninterculturaliseringsproces\nintering\ninvesteringsbankieren\ninwerkingtredingstermijn\ninzendingstermijn\njackfruit\njunicirculaire\nkanaalweg\nkernwinkelgebied\nkeukenkruiden\nklepstuw\nklimaatbestendig\nklimaatneutraal\nknoppenbalk\nkortlevend\nkwartiel\nlafjes\nleerwegondersteunend\nleidingbeheerder\nleprakolonie\nloonspiraal\nm.m.v.\nmateriaalhergebruik\nmeeverbrandingsinstallatie\nmega\nminderhedendebat\nminimumwaarderingsregel\nmixed\nmoederschapsverlof\nmondialiseringsproces\nmondingsenergie\nmotorenfabriek\nmunterij\nnestbevuiling\nnetsnoer\nnetto-nettokoppeling\nnettobegrenzer\nnettovermogenswaarde\nniet-belastingontvangsten\nniet-grondgebonden\nnieuwjaar\nno-claimteruggave\nnon-activiteitsregeling\nnon-stopvlucht\nnormkostensysteem\nnulsituatie\nobservatiemethode\nobsidiaan\nofftopic\noktobernummer\nonderbrengingsplicht\nonderhandelingstaal\nondermandateren\nondernemerschapsonderwijs\nonderschrijden\nondertoezichtgestelde\nonderwijsleersituatie\nonderwijsondersteuner\nonderzoeksagenda\nonderzoeksinstrument\nonderzoeksmethodologie\nonderzoeksprocedure\nonderzoeksproces\nongesprongen\nongewenstverklaring\nongewogen\nonlinediensten\nontvetting\nontwikkelingsgeneeskundig\nontwikkelingsplanologie\nontwikkelingspsychopathologie\nontwikkelingsrelevantie\noorlogscorrespondente\noorsprongsland\noorzaak-gevolgrelatie\nopenbaarvervoersysteem\nopleidingsaccreditatie\nopvoedingsrelatie\noranjebloesemwater\norganisatie-eenheid\nouderenrichtlijn\noverklokken\noxidant\npakwerker\npanoramadak\npapillomavirus\npartnerschapsverdrag\npelsdierhouderij\npercentiel\npingen\nplatgebeld\nplattelandsjongen\nplichtig\npolstas\npostinitieel\nppm\nprestatiebekostiging\nprijsbijstellingstranche\nproduct-marktcombinatie\nproeflezen\nprogressieveling\nprovinciegriffier\nprozac\nprudentieel\npuntenwedstrijd\nrechtsplegingsvergoeding\nrecidiverisico\nreferteperiode\nregeringsnotitie\nrelatieperikelen\nremuneratie\nretrocessie\nretrostijl\nrevalidatiezorg\nrijkscommissie\nrisicogewogen\nrisicotaxatie\nrockjazz\nsanitatie\nschatkistbankieren\nscheikundeonderwijs\nscholierenonderzoek\nschonehandenpolitiek\nschrikhek\nseizoenseffect\nsekserol\nsenioreneconomie\nseniorenvoetbal\nservo\nslaap-waakritme\nslagenlandschap\nslechtweerscenario\nsociaal-medisch\nsociotherapeut\nspooroverweg\nstaatsnatuurmonument\nstadsgehoorzaal\nstamcellijn\nstamceltransplantatie\nstans\nstappenteller\nstatenopvolging\nstatenzaal\nstereoset\nstichter-voorzitter\nstikstofdepositie\nstudentenpanel\nsubdomein\nsubsidieafbraakpercentage\nsurfrock\ntechnopreventie\ntelecommunicatiefaciliteiten\ntesla\ntheateractiviteiten\ntoegangskaartje\ntoekomstbestendig\ntoekomstvast\ntoelatingsassessment\ntoeristenweg\ntrainingskilometers\ntransitiedatum\ntransportweg\ntrigram\ntuinbouwraad\ntussenseizoen\ntwee-en-een-half\ntweerichtingsproces\ntweestatenoplossing\ntwitteren\nuitfaseren\nuitklikken\nuitsnijderij\nuitvinken\nuitzetter\nultrageluidonderzoek\nuploader\nurgentiearts\nurgentiegevoel\nurgentieplan\nurgentieprocedure\nurgentieregeling\nurgentiestatus\nurgentiesystematiek\nurgentieteam\nvakinhoud\nveiligheidstoebehoren\nverantwoordingsplichtig\nverenigingscontributie\nverenigingsondersteuner\nvergaderlocatie\nvergrijpboete\nvernieuwingsgeld\nveronderstellenderwijs\nverplaatsingsmogelijkheid\nverplaatsingsonkosten\nverrichtingensysteem\nverrommeling\nverspaningstechnologie\nvertrouwensinspecteur\nvervreemder\nverzekeringsgeneeskundig\nvicekampioen\nvirtualiseren\nvoedselbon\nvoetbalrel\nvoorbereidingstermijn\nvoorstraat\nvrijetijdseconomie\nvroegboekkorting\nvuvuzela\nwachtgeldpremie\nweblink\nweblocatie\nwebportaal\nwebredacteur\nwegatletiek\nwegdrinken\nweglekeffect\nwerkgeversvoorman\nwerkgroepvoorzitter\nwerknemersvoorzitter\nwerkweg\nwetssysteem\nwetstoepassing\nwijkenaanpak\nwijkontsluitingsweg\nwilsdaad\nwinput\nyogales\nyoni\nzesbaansweg\nzesjescultuur\nziekeninrichting\nzijbalk\nzonnefolie\nzonnehitte\nzonnekind\nzonnekracht\nzonnetoren\nzwangerschapsdiabetes\nzwart-witdenken\nkasseienrit\nopenbronsoftware\notoliet\nAfrikamissie\nAlpentoerisme\nAprilbeweging\nArthursage\nAuschwitzleugen\nAz.\nBalkansyndroom\nBeatlesfan\nCederrevolutie\nChin.\nGodsregering\nHerves\nHunnenkoning\nIVF-kind\nJodenhoek\nJodenhulp\nJodenvolk\nJodenwijk\nNAVO-bevelhebber\nNAVO-functionaris\nNAVO-luchtmacht\nNAVO-opperbevelhebber\nNAVO-plan\nNAVO-strijdmacht\nNAVO-studie\nNoordzeeland\nOpiumoorlog\nOranjeaanvoerder\nOranjeafvaardiging\nOranjebeweging\nOranjecoach\nOranjelied\nOranjepartij\nOranjeprins\nOranjeshirt\nOranjetelg\nOranjevorstin\nOssenhoeder\nPhilipslamp\nPhilipstelefoon\nProtestantenbond\nRampenidentificatieteam\nRiagg-medewerker\nRijksbrandweeracademie\nRijnbond\nRijnprovincie\nRijnverbond\nRozenoorlog\nSchapeneilanden\nSchriftmatig\nSlavenkust\nStatenvlag\naardappeljassen\naardeekhoorn\naasemmer\nacademieburger\naccordeonbus\naccountantsafdeling\nachterglasschildering\nachterleer\nad-hocbesluit\nadonisblauwtje\nadoniscomplex\nadonistuintje\nadventskerk\nadvocateborrel\nafvaldeken\nagame\naidsactivist\naidsdeskundige\naidsdode\naidsgala\naidsgeval\naidsonderzoeker\nakkermuis\nalcoholsterfte\nallemansverdriet\nallroundkampioenschap\nalpendorp\nalpengletsjer\nalpenhaas\nalpenklaver\nalpenroman\nalzheimerdiagnose\namandelhockey\namateurpoliticus\namazonemier\namortisatiekas\namusementsgelegenheid\nankerknoop\nannalenschool\nanti-inflatiebeleid\nantiabortuswetgeving\nantialcoholcampagne\nantiapartheidsorganisatie\nantiapartheidsstrijder\nantiastmamiddel\nantibeweging\nantiblafband\nantibotsingslicht\nantiburgerlijkheid\nanticonceptiemethode\nanticonceptiepleister\nanticorruptiecommissie\nanticrisismaatregel\nanticrisisprogramma\nantidatering\nantidiscriminatieregeling\nantidrugsbrigade\nantidumpheffing\nantidumpingheffing\nantifilm\nantigevoel\nantiguerrillaoorlog\nantihervormingsgezinde\nantihoestmiddel\nantihouding\nantihumor\nantikartelbeleid\nantikernenergie\nantikernenergielobby\nantiklopmiddel\nantikoloniaal\nantikraakwacht\nantikraakwetgeving\nantikraker\nantikunst\nantilobby\nantilopejacht\nantimaffiacommissie\nantimarketing\nantimigrantenpartij\nantimilitair\nantimisdaadwet\nantimodel\nantimodernisme\nantioproerpolitie\nantiparallel\nantipoliticus\nantipoëzie\nantipubliciteit\nantiraketwapen\nantiretour\nantiroman\nantirooklobby\nantisatellietwapen\nantischipraket\nantischool\nantispeculatie\nantistemming\nantistollingsbehandeling\nantitankgeweer\nantitankhelikopter\nantitankkanon\nantiterreurbrigade\nantiterreurgroep\nantiterrorismeteam\nantitheater\nantivoetbal\nantivrouw\nantoniusvarken\nantoniuszwijn\naposteldag\nappelepap\naquariumgebouw\narbeidersassociatie\narbeidershulp\narbeidsconferentie\narbeidspartijleider\narbeidsvoorwaardenbesluit\narbomedewerker\narendsvaren\narmengoed\narrestantenlokaal\nastaat\natechnisch\natlashert\nattila\naudiocolumn\naudiowandeling\naugustijns\nautocombiregeling\nautoglasservice\nautoherstelplaats\nautolijn\nautopootje\navondgodsdienstoefening\navondpauwoog\nbaanlijn\nbaanwijs\nbaardmees\nbabyaap\nbabybond\nbabybus\nbakstoel\nbalkanbeat\nbalkanjazz\nbalkanmuziek\nballadedichter\nballonlamp\nbalvangertje\nbandwagoneffect\nbaptistenpredikant\nbarrièretraktaat\nbedrijfsjargon\nbeemdooievaarsbek\nbeenbank\nbeenbreker\nbeenpoeder\nbeestentijd\nbendelstuk\nbenzinelampje\nbergfluiter\nbergforel\nbergingsinspecteur\nbergklokje\nbergrat\nberkenolie\nbeslissingsstrategie\nbestaanswereld\nbetaalradio\nbetalingsaanwijzing\nbetonrock\nbeukerij\nbeukvink\nbeurseconomie\nbewegingslijn\nbiezenweide\nbijkerk\nbikkelbal\nbindwilg\nbinnenafmeting\nbinnenvest\nbinnenvloot\nbitternoot\nblaaspistool\nblankofficier\nblauwschuit\nblijfpremie\nbloedpoeder\nbloedwortel\nbloemenmonument\nbloemensymboliek\nbloemenvriend\nblokeend\nblokjesvoetbal\nblokschijf\nbloothooi\nbobbed\nbochelmannetje\nboeddhabuikje\nboeddhahouding\nboeglul\nboekenimport\nboekgrafiek\nboerenprobleem\nboerentabak\nboethuis\nbogie\nbollendag\nbonbondoosje\nbondsakte\nbondsapparaat\nbondsparlement\nbondsvolk\nboombeschrijving\nboomhoek\nboomschool\nboomslaper\nboomsluiter\nboomstekelvarken\nboorzuurpoeder\nbootmens\nborrelworstje\nborstelkrans\nborstelwaren\nborsthanger\nbosbeer\nbosbode\nboshuishoudkunde\nboskar\nbosmuur\nbosvlam\nboterbrood\nboterhammentrommeltje\nboterhond\nboterhuis\nbourgeoiscultuur\nbourgeoismentaliteit\nbouwkeur\nbouwspeurwerk\nbovenkop\nbovenveen\nbovenwarmte\nboyscout\nbralaap\nbrandewijnkom\nbrandstofinjectiesysteem\nbreekhout\nbreinbaas\nbreintrainer\nbremraapfamilie\nbriefadel\nbrievenhanger\nbrijbek\nbrijberg\nbrilzee-eend\nbrobbel\nbroeder-overste\nbroederkerk\nbroekneus\nbrompijp\nbronzout\nbroodkist\nbrouwersbier\nbruinbank\nbrutovermogen\nbudgetpolis\nbuiklap\nbuitenbeen\nbuitenborg\nbuitenlust\nbulkoverslagbedrijf\nbunkerrechtbank\nburgerdag\nbusboot\nbusinessrestaurant\nbuurtbewaking\ncacaomot\ncadmiumcel\ncapaciteitenstelsel\ncarnavalsgroet\ncarnavalsmaand\ncarpoolbevordering\ncasheconomie\ncasinowit\ncatalogusverkoop\nceintuurbaan\ncellenbeleid\ncementkoper\nchemiewinkel\nchester\nchineesrestaurantsyndroom\nchristenkind\nchristenridder\nchristenrijk\nchrysantentroon\ncitrusolie\ncobranding\ncommandotoets\ncommissiebesluit\ncommuniepak\ncompensatietheorie\ncompressietherapie\ncomputerdiagnose\ncomputerkoppeling\ncomputerzetten\nconceptbeginselprogramma\nconcertdirectie\nconcordia\nconjunctuuronderzoek\nconsultorencollege\ncorrectiekaart\ncoördinatiewet\nflipteam\nflitslichtpoeder\nfloersring\nforumgeneratie\nfruitpromotie\nfusieverdrag\ngalapak\ngammavlinder\nganzenveld\ngarantieverdrag\ngasalarmpistool\ngasdood\ngasthuismoeder\ngaswater\ngauss\ngebedssnoer\ngeboortelid\ngeboortezang\ngedragsmechanisme\ngekkenkrant\ngeleidingsdoofheid\ngeloofsformulier\ngeloofsinzicht\ngeloofsoriëntatie\ngeluidscamera\ngemeenschapsdruk\ngemeenschapsgalerij\ngemeenschapsprijs\ngemeentearmen\ngenentechnologie\ngeneraal-veldmaarschalk\ngenotsknots\ngerechtsoefening\ngeslachtstafel\ngetallenraadsel\ngetijdenhaven\ngeuzenkerk\ngevechtseskader\ngevechtsinformatie\ngevechtspositie\ngevoelsaspect\ngevoelscontact\ngevoelsexpressie\ngeweizwam\ngewelfvak\ngezinsoord\ngezondheidscommunity\ngezondheidsstreven\ngierparelhoen\ngietgal\ngifkunde\ngifmeter\ngluurpop\ngodenzang\ngodsbestel\ngodsgave\ngoedhals\ngolfkam\ngooiarm\ngooilijn\ngordelmol\ngordelmuis\ngortebrij\ngortworst\ngoudhaar\ngoudmes\ngoudoog\ngoudpunt\ngoulashcommunisme\ngouvernementsbesluit\ngraafpoot\ngrachthuis\ngrafzorg\ngrasaap\ngrasboom\ngrashoen\ngrasleeuwerik\ngraswants\ngrauwbaard\ngrensdijk\ngrijsboek\ngrijsdenken\ngrijsgeel\ngroeiboog\ngroenkop\ngroenoog\ngroenstraat\ngroentestoofschotel\ngroepsassistent\ngroepspsychotherapie\ngrondgat\ngroteletterbibliotheek\ngrotetertstoonladder\nguldenmond\nhaaiebaai\nhaalgolf\nhaargras\nhaarrook\nhaarspijker\nhaarverzorger\nhaastbriefje\nhaat-liefderelatie\nhagenbeuk\nhaker\nhaler\nhammenbeen\nhandbeen\nhandbeenderen\nhandelsfaculteit\nhandelsscheepvaart\nhandmatigheid\nhandrembreekkabel\nhandzetsel\nhanengang\nhanghuis\nhangtoren\nharddrugverslaafde\nhardijzer\nharmoniedenken\nharnasman\nharnasmeerval\nhartbeeld\nhartenkenner\nhartheelkunde\nhavenbordeel\nhavenfort\nhavenstraat\nhazengras\nhazennoot\nheibaan\nheidoorn\nheilsfront\nheksenjager\nheksenziener\nhelmduif\nhelmkrab\nhemelheer\nherdenkingsnummer\nherdenkingsspeech\nherenbaan\nherfsttekens\nhersenatrofie\nhink-stap-springer\nhistorieblad\nhoefbron\nhoefhamer\nhoefslagboek\nhoeklijst\nhoekschoorsteen\nholenonderzoek\nholvoet\nhometerminal\nhomobom\nhondenbestaan\nhondendek\nhondendressuur\nhondenmaaltijd\nhondennest\nhondsapen\nhondsbossen\nhoofdseinpaal\nhoofdwoordencatalogus\nhoogeind\nhoogwijs\nhooigat\nhooikanon\nhotsknotsbegoniavoetbal\nhouseakkoord\nhoutakker\nhoutknecht\nhoutlading\nhuis-aan-huiscollecte\nhuis-aan-huisverkoop\nhuis-aan-huisverkoper\nhuisbestuur\nhuisbreker\nhuisbroei\nhuiscommissie\nhuiscorrectie\nhuishoudkwaliteit\nhuiswoordvoerder\nhulpverleningsinstituut\nhulstvlieg\nhuurzegel\nhuwelijksconflict\nhuwelijksgedicht\nijsbeeld\nijsbok\nijsbond\nijsbout\nijsclubterrein\nijsduif\nijsgala\nijsgeld\nijsgors\nijshanden\nijshockeyschaats\nijskist\nijssatelliet\nijsstroom\nijstak\nijswolk\nijzerbron\nijzerhardfamilie\nijzerhart\nijzermenie\nijzerpoeder\nijzerslag\nijzerstapelingsziekte\nijzervaren\nijzervitriool\nijzerwater\nijzerwerker\nimageverbetering\nimmuniteitsreactie\nincidentenjournalistiek\nindoorvolleybal\ninductievrij\ninferioriteitscomplex\ninformatie-cd\ninformatieadres\ninformatietheoretisch\ninfostopzuil\ninfraproject\ninfraroodtechniek\ninlegtafel\ninmaakuitje\ninstellingszorg\ninvoertoets\ninwijdingsmysterie\ninwonersequivalent\nirisdruk\njaarringenonderzoek\njagersfontein\njagershuis\njansenistenband\njeugdstad\njezuïetenporselein\njodenjongen\njongerenontmoetingsplek\njudasgroet\njudaslach\nkaarsmaker\nkaasklok\nkachelweer\nkalissehout\nkalkdeeg\nkalkhoofd\nkalmoestinctuur\nkammetjesstekelzwam\nkamperstukje\nkanaalkoorts\nkandidatenziekte\nkankerstraal\nkankerwond\nkapelbrug\nkapellendoos\nkardinaal-deken\nkasandijvie\nkasgeld-bv\nkasteelstraat\nkaterwater\nkatoenolie\nkattenkabinet\nkattenvrouw\nkeizerburcht\nkeldertheater\nkerkenkamer\nkerkgeschil\nkernspintomografie\nkersengom\nkerst-in\nkerstboombal\nkerstgave\nkettingschijf\nkeurhout\nkeurhuis\nki-station\nkievitsnest\nkilometerrit\nkinderbeen\nkinderbioscoop\nkinderenquête\nkinderschrijver\nkinderverliefdheid\nkindervisite\nkladaantekening\nkladlijst\nklap-bv\nklaphoed\nklappersuiker\nklaproosdag\nklassenloterij\nklasseverpleging\nklassewagen\nklauwaap\nklaverruiter\nkleefpaal\nkleinetertstoonladder\nkleipop\nkleitrapper\nkleiweidegebied\nklepmolen\nklimrank\nklimrente\nklopkwast\nkluisvrucht\nknoopsgatenmachine\nknopschimmel\nknorbuffel\nkoedokter\nkoeienbloem\nkoekdenken\nkoelucht\nkoffiezuur\nkolenbries\nkoningsbaan\nkoningsliefde\nkoningsstern\nkooiwiel\nkoollangpootmug\nmilleriet\nministring\nmoddergeus\nmoddergoot\nmoddermannetje\nmoederheil\nmoedervos\nmoerasmuur\nmoeraspalm\nmoerweide\nmoeskop\nmoffenmeid\nmoleculespectrum\nmoleculestructuur\nmolleboon\nmondkus\nmonsterman\nmontessorimethode\nmordechai\nmorgenbad\nmoslimautoriteiten\nmoslimmilitie\nmoslimparlement\nmosselplaat\nmotorenleverancier\nmuithuis\nmuntcollege\nmuntkamer\nmuseumman\nmuskietengordijn\nmuurplaquette\nnachtaap\nnachtbidder\nnachtschutter\nnapoleoncomplex\nnarcisridderzwam\nnarcissenbol\nnationaliteitsprincipe\nnatuurkarton\nnavelsnoer\nnaziarchitectuur\nnaziarts\nnazigezind\nnazileiding\nnaziminister\nnaziorganisatie\nnazipolitiek\nnazisymbool\nnestvogel\nnettobereik\nnettobetaling\nnettoproductie\nnettoverschil\nneusleer\nniet-rokerscoupé\nnieuwjaarsprent\nnieuwlands\nnieuwscommentaar\nnieuwstribune\nnijverheidsakte\nnijverheidsraad\nnonnenconvent\nnonnengang\nnoordeinde\nnoordzeeharing\nnorbertijnenorde\nobservatieoefening\noceaangebied\noesterbeurs\noesterpark\nohmmeter\nokersoep\noliegas\nolifantsbeen\nolifantsoor\nomwentelingsgeest\noncogeen\nonderwaterwapen\nonlinegame\noogscherm\noorlogsangst\noorlogsbazuin\noorlogschirurgie\noorlogswinstmaker\nopblaastent\nopeningstitel\nopiumverlof\noppositiewoordvoerder\noranjebloem\noranjeboek\noranjegroen\noranjelelie\noranjestrik\noranjewater\nordeboek\nossenboer\notterstation\nouderdomsaftrek\nouderdomsverziendheid\noudgelovige\noudhistoricus\noutdoortornooi\novenstok\novergangsveen\noverheidsorder\noverleveringsplan\noverlevingsoperatie\nozonapparaat\npaaldijk\npaalkistrecht\npaalrij\npaaltjeswandeling\npaardenkam\npaardenkleed\npaasgave\npaasmaand\npaasvlees\npadvinderslied\npakketbom\npakketvaartmaatschappij\npalentrekker\npalestijnensjaaltje\npalmgierzwaluw\npalmkernolie\npanoramarijtuig\nparachutistenbataljon\nparadedag\nparadegeld\nparademaker\nparadijsdeur\nparadijshof\nparelessence\npartijinstantie\npartijpresidium\npassageafdeling\npastoorsambt\npatatfooi\npatroontekenen\npauwenvlees\npavlovreflex\npenningkast\npenseelaapje\npensioen-bv\npeperkoren\nperenrood\npermissiebriefje\npestwortel\npijlbrem\npijlstaartolie\npijpbroek\npijpketel\npindakoek\npinksterchristen\npinkstergelovige\npinksterlied\nplank-bv\nplantenziektewet\nplanthof\npleintheater\nplof-bv\nplugboer\npoederzwamgast\npoesjenellentheater\npolderpop\npolderwijk\npondemaat\npontman\npootvisfonds\npostchequenummer\npostcommunie\npostmix\npostsleper\npotworm\npoëziekrant\npoëziekroniek\npremiecoupon\npremiehengst\npresidentsstoel\npriester-arbeider\nprikkelfoto\nprikkorf\nprivébestaan\nprivédruk\nprivéhandel\nprivéreden\nprivésponsor\nprivétransactie\nproduct-marktmatrix\npsalmpomp\npunt-streeplijn\nputjeskool\npyjamafeestje\nraderuurwerk\nradiopathologie\nradiosymfonieorkest\nradiotechnisch\nraketkunde\nrandhagel\nrandjesbloem\nrangcorrelatiecoëfficiënt\nrangordecijfer\nraptrio\nrasindeling\nrasinstinct\nrasterelektronenmicroscoop\nrattenklooster\nrechtsoefening\nreclamekring\nrecreatiecriminaliteit\nredactiecollectief\nredeleer\nreformpartij\nregelelement\nregenkanon\nregentenheerschappij\nregeringsprogram\nreggaekleuren\nregiopromotie\nregiorunner\nreinigingshuis\nreisatlas\nrelikwieënschrijn\nrelikwieënverering\nrenaissancepaus\nrenaissanceschoonheid\nresidentieorkest\nretroreflectie\nridderkroon\nrietmees\nrijinstructie\nrijksarbeidsbeurs\nrijkskroon\nrijkslandbouwwinterschool\nrijksridder\nrijksvrijheer\nrijkswachtkolonel\nrijkswerkplaats\nrijkszuivelstation\nrijnboog\nrijngrind\nrijnlichter\nrijpartij\nrijpmaand\nrijstgras\nrijstuin\nringhals\nringstuk\nrivierarrondissement\nrivierzwijn\nroeisimulator\nrollenzanger\nroodgevoelig\nroodkrijttekening\nrooirok\nrookgasontzwavelingsgips\nrooswinkel\nrowan\nrozenazijn\nrozengeranium\nrozenhof\nruilhuwelijk\nruimtegraf\nruimtevaarttak\nruiterkamp\nruitjesstof\nsabbatsschending\nsambo\nsaphout\nsaunapak\nsausboom\nschaatssponsor\nschapenmelker\nscharnierband\nscheelhoek\nscheepsbodem\nscheepsbouwmaatschappij\nscheepsijzer\nscheldcolumn\nschellekoord\nschelpenkabinet\nschietvoorschrift\nschijtgeel\nschildmol\nschonehandenwerk\nschoolman\nschoolvorderingentest\nschoonheidsconcours\nschoorbrug\nschoorsteenuren\nschotelbank\nschoudermuis\nschouwman\nschouwschuit\nschubboom\nschubvorst\nschutjassen\nschuttershof\nseizoensopruiming\nsektehaat\nsemiambtenaar\nsemimassief\nsemimetro\nsemioverheidsdienst\nsemistaatsinstelling\nseptemberavond\nshowmusicaldans\nsiena\nsierplank\nsinterklaaspret\nsinterklaasverrassing\nskicross\nslaapbed\nslaaplucht\nslaghek\nslagzilver\nslangenboog\nslangenzuil\nslapshot\nsleutelbloemvlinder\nslingerbeen\nslottoon\nsluishaak\nsluitmunt\nsmalheer\nsmartprincipe\nsmeerhout\nsmeltpoeder\nsmetbaan\nsneeuwhagel\nsnijinrichting\nsnijinstrument\nsnijnaald\nsnoekbroed\nsnotdoek\nsociëteitslid\nsolorivier\nspangereedschap\nspankeren\nspannagel\nspanningssituatie\nspecerijeilanden\nspecialinterestblad\nspeelbeurs\nspeelgaard\nspeelgoedaap\nspeelwoede\nspekdam\nspekmuis\nspellingrapport\nspetterpak\nspiegelijzer\nspinaap\nspinaziegroen\nspinbaas\nspitsfluit\nspleetvulkaan\nspoedgeld\nspoelvoet\nspoormaker\nspoorweglegger\nsportwol\nsprakel\nspringband\nspringschool\nspringvis\nspuugzak\nstaalboom\nstaalwijn\nstaatsgalerie\nstaatsmoraal\nstaatsvergadering\nstadiontribune\nstadsarmenschool\nstadskabel\nstadspolder\nstadstimmerhuis\nstalbeen\nstapeltafel\nstartverdrag\nstatenkwartier\nstatenstelsel\nstedenschennis\nsteeldief\nsteeltjeszwam\nsteenbedding\nsteenbestrating\nsteenkar\nsteenmolen\nsteenstapeling\nsteenveld\nsteenzilver\nstekelzwijn\nstelmaat\nsteppeolifant\nstergroep\nsterksel\nsterrendienst\nsterrenzanger\nsteurvissen\nstinkmolen\nstofconstante\nstokviswater\nstoombootonderneming\nstoomdrukkerij\nstoomveer\nstoomwasinrichting\nstralingsthermometer\nstrandwolf\nstreptokokkeninfectie\nstroomlijnkap\nstruikwaard\nstudentenkampioen\nstuifbal\nstukadoorsgips\nsubsidieperikelen\nsuikerconventie\nsuikerhars\nsuikerzuur\ntaalsterfte\ntaartenbodem\ntabaksbeurs\ntabaksspinnerij\ntakkeweer\ntanddiepte\ntapschroef\ntarwepap\ntastcel\ntechnobeat\ntechnofobie\ntechnohouse\ntechnomobiel\ntedertjes\nteerbal\ntekendefinitie\ntelegraafpersoneel\ntelegramwisseling\ntelescoopvis\ntelevisieminuten\ntelspel\ntft-scherm\ntheedrinkpolitiek\nthrillerclip\nthuismobieltje\ntijgereconomie\ntijgerpaard\ntoepassingsprogrammatuur\ntoezichtverordening\ntolkamer\ntoonscheiding\ntouwring\ntoverkunstenaar\ntovernoot\ntraditiegebonden\ntransman\ntrappenbouw\ntreebord\ntreiterchocolade\ntrekbeen\ntriniteitsfeest\ntroepenopstelling\ntrommelfluit\ntrouwadvertentie\ntrouwbericht\ntuigketting\ntuigrekje\ntuinbouwmaatschappij\ntuinpapaver\ntulpplug\nturfkarton\nturfkelder\nturfkool\ntussenbalansoperatie\nufojournalistiek\nufologe\nuitgangslinie\nuitgangsregel\nuitloopartikel\nuitvalarm\nuitwateringslijn\nunieland\nmeerstoel\nWereldroeibond\nvaleriaanfamilie\nvastenconferentie\nvastenmeditatie\nveldwinde\nveranderingsbekwaamheid\nverwerkingsmechanisme\nvoedselchemie\nvogellijmfamilie\nvolkenpsychologie\nvriendenpagina\nvrouwenslaaf\nvrouwtjeshond\nwachtbrigade\nwaterleliefamilie\nwaterruit\nwebstandaard\nweekenduitstapje\nwegenbouwkunde\nwelvaartsexplosie\nwereldkundigheid\nwerkliedenbond\nwetsidee\nwielergala\nwilgenbast\nwilgenfamilie\nwoestijnkunde\nzeekrijgsraad\nzeeorganisme\nzeepboomfamilie\nzendenergie\nzonnereligie\nzonneweelde\nzoogdierenklasse\nzoogdierenorde\nzwavelpasta\nadv-dag\npeigeren\nzelfdoder\nderdeklassenreiziger\nijlhoofd\nvoorraadhoudend\nwinterspel\nemaillering\nwondersterk\ntussenletter\nkoopmanstaal\nTimorees\nassepoestercomplex\nlagevloerbus\nMaria-Geboorte\nMBD-kind\nmoermandieet\nnabepaling\nallerlastigst\nallerlangst\nallerlichtst\naritmetiek\nzoekster\nnesterij\nagraaf\ntoerrijtuig\nSpaarndammer\nhogesnelheidsspoorweg\nWaals-Brabants\ntwintigvoudig\nbelminuut\nnamaakspul\nkortsluitanker\nlangspriet\nlangstaartaap\nrijtocht\npersoonlijkheidstrek\nreizigerstelling\nbevestigingspin\ngeleidingslat\nkilometertellerstand\nvoorlichtingsspot\nbehandelingsstap\nalkalinebatterij\ngoededoelenloterij\nmijngalerij\nXLX\nventilatiemogelijkheid\nalleenstaandenpensioen\nonthardingsinstallatie\nveiligheidsteken\nventilatieleiding\ngeperoxideerd\nmultilinguïstisch\ngeblabla\nvroegtwintigste-eeuws\nbeoordelingsplichtig\ninnestelingsbloeding\nsemesterindeling\nstaatsondermijning\nvakverenigingsvrijheid\nverzekeringswiskunde\nvoedingsconsulente\nformatiespringen\nhonderdvijfendertig\nonderbroekenlijn\nveranderingsbereid\nopvoedingsondersteuner\nveranderingsmoe\nindringingsweerstand\nbinnendenderen\nweersverslechtering\nparalympiër\nleprapatiënt\nmatroniem\nhooglerarenkorps\nonderwijzerskorps\nprofessorenkorps\njurykorps\nanalistenkorps\nastronautenkorps\nbedrijfsbrandweerkorps\nbestuurskorps\nconducteurskorps\ndameskorps\ndiëtistenkorps\ndiplomatenkorps\ndoedelzakkorps\ndrumkorps\nexpeditiekorps\nfluitkorps\ngeniekorps\nharmoniekorps\ningenieurskorps\ninspectiekorps\njournalistenkorps\nmarinierskorps\nmedewerkerskorps\nonderzoekskorps\npersoneelskorps\npredikantenkorps\nrechterskorps\nruiterkorps\nschutterskorps\ntankkorps\ntrommelkorps\ntrompetterkorps\nvliegerskorps\nvredeskorps\nvrouwenkorps\njeugdleiderskorps\ncadettenkorps\naardbevingsbestendig\nbeoordelingsmethodologie\nhengstenkeuringscommissie\nkinderbijslaginstelling\nondersteuningsbehoevende\nmededingingsverstorend\nontwikkelingspartnerschap\nvergissingsbombardement\nvoorrangsgerechtigde\nongediertebestrijdingsbedrijf\nbeleidsondersteuner\nontgeuringsinstallatie\nbedrijfsvoeringsbudget\nstandplaatszoekende\nafboekingsrekening\nbelastingplichtigheid\ndoordringingsvermogen\ndrachtigheidsonderzoek\ngendergelijkheidsbeleid\nhandelingsverlegen\nherintegratieondersteuning\nherontwikkelingsproces\ninteringsbevoegdheid\nniet-onderwijsgebonden\nonderpresteerder\nongestructureerdheid\ntransponderverplichting\ntweerichtingscommunicatie\nventilatie-installatie\nverdisconteringsvoet\nvergemeenschappelijking\nvernevelingsinstallatie\nverouderingsbestendig\nverslechteringstoets\nverzakingstermijn\nveronderstellenderwijze\nweerkaatsingsvermogen\nbedrijfsvoeringssysteem\nongeschondenheid\nuitvloeiingsgesteente\nverhonderdvoudiging\nverplichtstellingsbeschikking\nversterkerschakeling\nwoningzoekendenbestand\nherbestratingswerkzaamheden\nveiligheidscertificatie\nvoedingsintolerantie\nonderhandelaarsresultaat\nnabestaandenoverbruggingspensioen\nonderwijsassistentie\nverslechteringsfactor\nverinnerlijkingsproces\ngenderontwikkeling\nloondervingsverzekering\nmonitoringdoeleinden\nterugwentelingstermijn\nzwangerschapsconsulente\nvieringtoren\narbeidsongeschiktheidsverzekeringsmaatschappij\nwerknemersvertegenwoordiger-hoofdbestuurslid\naansprakelijkheidsverzekeringsmaatschappij\ncommissarissenaansprakelijkheidsverzekering\nstandplaatsgebondenheid\nhuiswerkles\nkindersok\nkraakbeencel\nlasartikel\nnaaldvak\noverheidseis\npasteibakje\npispraat\nportiershok\nspringput\nstaafbom\nvarkenscel\nvastenavondzot\nverbindingszin\nvetpuist\nvisangel\nviskoekje\nkerkenzak\nafvoerrol\nbashoren\nbosviool\nbusgroente\nbuspakje\nboscertificaat\ncroquetbal\ndagwinkel\nemballagebon\nembryocel\nexportras\nijsbericht\nkijverij\nspekeend\npotbloem\nveetransporteur\nwelzijnseis\nzoogdiercel\npasstrook\nallesoverkoepelend\nallesverwoestend\nallesverzengend\nangstverminderend\nsamenwerker\nveiligheidshes\nzijmarkering\ndesinfectering\nomsnoering\nmeeverbranding\nbodemvis\nontgeuring\nbalvanger\nsnijkunst\napparaatinstelling\nbondswege\nbuitengemeentelijk\nconservatieveling\neindrang\nbiatleet\ntandverzorger\nspeelgoedhuis\nmeldinstallatie\ntrimpomp\ntabletteermachine\nME-bus\nArabisch-Palestijns\nBijbelvertaler\nbelastingsrichting\nbolbloemententoonstelling\nhogesnelheidsinternetverbinding\nkoplampreinigingsinstallatie\nmeestbegunstigingsbehandeling\nnabestaandenpensioenregeling\nontwikkelingsstimulerend\ntrechteringsproces\nverslechteringsverbod\nvoorfinancieringsregeling\nwateronthardingsinstallatie\nbijeengezongen\nweersverschijnsel\nlindebos\nbestuursondersteuner\nhandelsgelijkvloers\nindustrialiseringsproces\nbolbloem\nmiddenkabinet\ngepensioneerdenvereniging\nherinschakelingsuitkering\nontvochtigingscapaciteit\nsecretariaatsondersteuning\nstandaardisatieorganisatie\ntractieonderstation\nsocialezekerheidsinstelling\nondersteunerscompensatie\nstageringsonderzoek\nveiligheidssignalisatie\naardbeiennet\naardbeienpitje\naardbeienras\naardgasput\nhuishoudingsplan\nopzetsteek\nprecisiebom\nreclameslagzin\nreisdevies\nstationswagen\nuniteit\nverbruikspiek\nwaardesom\nzondagamateur\ntwaalf-en-een-halfjarig\n"
  },
  {
    "path": "Quelea/dictionaries/nl.words.license",
    "content": "                                [ENGLISH]\n        You are kindly requested to read this file \"license_en_EN.txt\" \n     and to keep a copy of it with every copy you make of this language file.\n\n1. Name: Dutch word list for spell checking - OpenTaal\n2. Version of words list: 2.10G; version of spell checking: 2.10G.\n3. Requirements: Hunspell 1.2.8 and higher\n4. Spelling Seal of Dutch Language Union: The OpenTaal list of lemmas has \n   received the Spelling Seal of Approval from the Dutch Language Union, the \n   formal Dutch language institute. For more information please see: \n   http://www.taalunieversum.org/keurmerk/\n5. Copyrights: © 2006-2010 OpenTaal, © 2001-2005 Simon Brouwer e.a., \n   © 1996 Nederlandstalige Tex Gebruikersgroep\n6. Licenses: OpenTaal aims to create and publish free Dutch language files. To \n   enable the broadest (re)use the language files are freely available under the \n   below, liberal licenses at the discretion of the user. We strongly recommend \n   to read the applicable license before usage.\n   A. BSD (revised version):\n   - Full license text: http://creativecommons.org/licenses/BSD/legalcode\n   - Summary: http://creativecommons.org/licenses/BSD/deed.en\n   B. Creative Commons, Attribution 3.0 (unported)\n   - Full license text: http://creativecommons.org/licenses/by/3.0/legalcode\n   - Summary: http://creativecommons.org/licenses/by/3.0/deed.en\n7. Support OpenTaal: OpenTaal is a non-profit volunteer project. With your \n   (small) financial support OpenTaal will further expand its activities and \n   enhance its professionalism. Your donation is welcome at\n   account number: 15.62.32.782, BIC: RABONL2U, IBAN: NL88RABO0156232782 of \n   Stichting OpenTaal / OpenTaal Foundation. In the Netherlands your donations \n   are tax deductible. OpenTaal Foundation has been designated by the Dutch Tax \n   Administration as an Institution for General Benefit (algemeen nut beogende \n   instelling or ANBI). Please see: http://belastingdienst.nl/anbi/\n8. Participate: Everyone is welcome to participate. Please give feedback, \n   discuss on the mailing list or run Harvester. By contributing to the project \n   you agree that your contribution is available under free or/open source \n   licenses. In case you wish, your name will be mentioned on the website. Your \n   are invited to send us your written request.\n9. Rights of third parties: OpenTaal respects the rights of third parties and \n   aims to keep its data freely available. Therefore you may no use protected \n   sources of third parties, i.e. dictionaries, without their permission when \n   you contribute to the project. It is permitted to use the materials of the \n   Dutch Language Union, i.e. their spelling instruction and word list. In case \n   you believe OpenTaal is violating your rights, we ask you to send us a \n   written notice as soon as possible.\n10.Contact: OpenTaal Foundation, http://www.opentaal.org, bestuur@opentaal.org\n\n________________________________________________________________\n                              [NEDERLANDS]\n        U wordt vriendelijk verzocht om dit bestand (\"licentie_nl_NL.txt\") \n      te lezen en mee te leveren bij iedere kopie van dit taalhulpbestand.\n\n1. Naam: Nederlandstalige woordenlijst voor spellingcontrole - OpenTaal\n2. Versie woordenlijst: 2.10G; versie spellingcontrole: 2.10G\n3. Vereisten: Hunspell 1.2.8 en hoger\n4. Keurmerk Spelling Nederlandse Taalunie: De lijst met basiswoorden van \n   OpenTaal draagt het keurmerk van de Nederlandse Taalunie. Voor meer \n   informatie zie: http://www.taalunieversum.org/keurmerk\n5. Auteursrechten: © 2006-2010 OpenTaal, © 2001-2005 Simon Brouwer e.a., \n   © 1996 Nederlandstalige Tex Gebruikersgroep\n6. Licenties: OpenTaal heeft als doel om vrij beschikbare Nederlandstalige \n   taalhulpbestanden te ontwikkelen en te verspreiden. Om breed (her)gebruik \n   mogelijk te maken zijn de taalhulpbestanden gratis beschikbaar onder de twee \n   onderstaande, liberale licenties naar keuze van de gebruiker. U wordt ten \n   zeerste aangeraden om voorafgaand aan het gebruik kennis te nemen van de \n   toepasselijke licentie.\n   A. BSD (herziene versie):\n   - Volledige licentie: http://creativecommons.org/licenses/BSD/legalcode\n   - Samenvatting: http://creativecommons.org/licenses/BSD/deed.nl\n   B. Creative Commons, Naamsvermelding 3.0 (unported)\n   - Volledige licentie: http://creativecommons.org/licenses/by/3.0/legalcode\n   - Samenvatting: http://creativecommons.org/licenses/by/3.0/deed.nl\n7. Steun OpenTaal: OpenTaal is een vrijwilligersproject zonder winstoogmerk. \n   Door uw (kleine) financiële steun kan OpenTaal meer activiteiten ontplooien \n   en het project professionaliseren. Uw donatie is van harte welkom op \n   rekeningnummer 15.62.32.782 t.n.v. Stichting OpenTaal. Uw giften zijn \n   aftrekbaar van de belasting. Stichting OpenTaal is namelijk door de \n   Belastingdienst erkend als ANBI, oftewel \"Algemeen Nut Beogende Instelling\". \n   Zie: http://belastingdienst.nl/anbi/\n8. Meedoen: Iedereen is welkom om mee te doen. Meld fouten, discussieer mee op \n   de mailinglijst of draai Harvester. Door bij te dragen aan het project stemt \n   u ermee in dat uw bijdrage aan het desbetreffende taalhulpbestand beschikbaar\n   komt onder vrije en/of opensource licenties. Indien u dat wenst, dan kan uw \n   naam op de website genoemd worden. We ontvangen uw schriftelijk verzoek \n   daarvoor graag.\n9. Rechten van derden: OpenTaal respecteert de rechten van derden en \n   wil haar gegevens vrij beschikbaar houden. Voor bijdragen aan het project mag \n   u daarom niet zonder toestemming gebruikmaken van beschermde naslagwerken, \n   zoals woordenboeken. Wel is het toegestaan om gebruik te maken van de \n   materialen van de Nederlandse Taalunie, zoals de leidraad en de woordenlijst.\n   Indien u van mening bent dat OpenTaal inbreuk maakt op uw rechten, dan \n   verzoeken we u hierover zo spoedig mogelijk schriftelijk contact met ons op \n   te nemen.\n10.Contact: Stichting OpenTaal, http://www.opentaal.org, bestuur@opentaal.org\n"
  },
  {
    "path": "Quelea/dictionaries/sk.words",
    "content": "a\nA\ná\nÁ\nà\nä\náách\nAB\nabája\nabak\nabaka\nabakteriálny\nabakus\nAbakus\nabandon\nabandonovať\nabatiša\nabaton\nabaxiálny\nabázia\naba\nabažúr\nabbé\nABC\nabcoulomb\nabd\nAbdéra\nAbdérita\nabdikácia\nabdikačný\nabdikovaný\nabdikovať\nabdómen\nabdominálny\nabdukcia\nAbeba\nabecedár\nabeceda\nabecedne\nabecedno\nabecedný\nÁbel\nÁbelová\nÁbelovej\nÁbelovou\nÁbelovský\naberácia\nAberdeen\nAberdeene\naberdeenskym\nAbcházec\nAbcházka\nAbcházsko\nabcházsky\nAbidžane\nAbidžanu\nabiogenéza\nabiogénny\nabionóza\nabiotický\nabiturient\nabiturientiek\nabiturientka\nabiturientska\nabiturientske\nabiturientskeho\nabiturientskemu\nabiturientski\nabiturientsku\nabiturientsky\nabiturientskych\nabiturientskym\nabiturientskymi\nabiturientský\nabjudikácia\nabjurácia\nablácia\nablaktácia\nablatív\nablatívny\nablaut\nablefária\nablegácia\nablegát\nablepsia\nabnormalita\nabnormálne\nabnormálnosť\nabnormálny\nabnormita\nabnormný\nabolícia\nabolicionista\nabolicionizmus\naboličný\nabonent\nabonentka\nabonentný\nabonentský\nabonmán\nabonmáne\nabonmánu\nabonmány\nabonnement\nabonovať\nabordáž\naborigén\naborigénom\naborigénov\nabort\nabortácia\nabortér\nabortívny\nabortívum\nabortovať\nabortus\nAbov\nAbova\nabovský\nAbrahámami\nAbrahám\nabrahamita\nabrahámov\nabrahámova\nAbrahámovce\nabrahámove\nabrahámovej\nabrahámovho\nabrahámovi\nabrahámoviny\nabrahámovmu\nabrahámovo\nabrahámovom\nabrahámovou\nabrahámovu\nAbrahámov\nabrahámových\nabrahámovým\nabrahámovými\nabrahámsky\nabrakadabra\nAbramová\nAbranovce\nabraxas\nabrázia\nabrazívnosť\nabrazívny\nabrazívum\nabreakcia\nabreografia\nabreviácia\nabreviačný\nabreviatúra\nabrogácia\nabrupcia\nabruptný\nabruzzský\nAbruzzy\nABS\nabscedovať\nabsces\nabscisa\nabscisia\nabsencia\nabsenčne\nabsenčný\nabsentér\nabsentérka\nabsentérsky\nabsentérsky\nabsentérstvo\nabsentizmus\nabsentovaní\nabsentovania\nabsentovanie\nabsentovaniu\nabsentovanú\nabsentovať\nabsiemens\nabsint\nabsintmi\nabsintový\nabsol\nAbsolón\nabsolúcia\nabsolutista\nabsolutisticky\nabsolutistický\nabsolutistka\nabsolutizácia\nabsolutizmus\nabsolutizovanie\nabsolutizovať\nabsolútnosť\nabsolútny\nabsolutórium\nabsolvent\nabsolventka\nabsolventove\nabsolventský\nabsolvovanie\nabsolvovaný\nabsolvovať\nabsorbancia\nabsorbát\nabsorbátor\nabsorbčná\nabsorbenta\nabsorbent\nabsorbér\nabsorbérov\nabsorbéru\nabsorbéry\nabsorbovanie\nabsorbovaný\nabsorbovateľnosť\nabsorbovateľný\nabsorbovať\nabsorbujúci\nabsorpcia\nabsorpčne\nabsorpčný\nabstencia\nabstenovať\nabstergencium\nabstinencia\nabstinenčný\nabstinent\nabstinentka\nabstinentný\nabstinentský\nabstinovania\nabstinovať\nabstrahovaná\nabstrahovanie\nabstrahovať\nabstrahujúci\nabstrakcia\nabstrakcionistA\nabstrakcionistický\nabstrakcionistka\nabstrakcionizmus\nabstrakčný\nabstrakt\nabstraktivista\nabstraktivizmus\nabstraktmi\nabstraktne\nabstraktno\nabstraktnosť\nabstraktnosti\nabstraktný\nabstraktum\nabstrúzny\nabsúrd\nabsurdít\nabsurdita\nabsurdna\nabsurdne\nabsurdno\nabsurdnosť\nabsurdný\nabsurdum\nabštajg\nabúlia\nabundancia\nabundantný\nabuzér\nabúzov\nabúzus\nabvolt\nabwehr\naby\nabych\nabysál\nabysálny\nabyže\nAC\nacapu\naccelerando\naccentato\nacefália\nacetál\nacetaldehyd\nacetaldehydom\nacetamid\nacetát\nacetátov\nacetátového\nacetátovej\nacetátovou\nacetátových\nacetátu\nacetoín\nacetol\nacetometer\nacetón\nacetonémia\nacetonitril\nacetónový\nacetonúria\nacetyl\nacetylácia\nacetylén\nacetylénový\nacetylsalicylový\nacidifikácia\nacidimeter\nacidimetria\nacidita\nacidný\nacidobazický\nacidofília\nacidofilný\nacidofóbia\nacidolýza\nacidosa\nacidóza\nacidum\nacompagnato\nacre\nacta\nacuto\nacyklický\nacyl\nacylácia\nacylpyrín\náčkar\náčkarka\náčkarský\náčka\náčko\nadagiach\nadagiam\nadagietto\nadagií\nadagio\nadagiový\nadaktýlia\nAdamami\nadamantín\nadamantinóm\nAdam\nAdámiho\nadamín\nadamita\nadamitizmus\nadamitka\nadamitský\nAdamova\nAdamove\nAdamovej\nAdamovho\nAdamovom\nadamovská\nadamovského\nadamovskej\nadamovskom\nadamovskú\nAdamovský\nadamsit\nadaptabilita\nadaptabilnosť\nadaptabilný\nadaptácia\nadaptačne\nadaptačný\nadaptát\nadaptátor\nadaptér\nadaptérmi\nadaptéry\nadaptivita\nadaptívne\nadaptívny\nadaptometer\nadaptometria\nadaptor\nadaptovania\nadaptovanie\nadaptovaním\nadaptovaniu\nadaptovaný\nadaptovateľný\nadaptovať\nadaptujúci\nadaxiálny\nAdda\naddendum\nAddis\nAddisabebčan\nAddisabebčanka\naddisabebčanský\naddisabebský\naddisonizmus\naddolorato\naddukcia\nadefágia\nadekvátne\nadekvátnosť\nadekvátny\nAdel\nAdelaide\nAdela\nadelit\nAden\nadend\nAdene\nadenitída\nadenoakantóm\nadenohypofýza\nadenoidného\nadenokarcinóm\nadenóm\nadenomyóm\nadenopatia\nadenotómia\nadenovír\nAdenského\nadenskom\nAdenským\nadeptami\nadept\nadeptiek\nadeptka\nadeptova\nadespoton\nadherencia\nadherentnosť\nadherentný\nadhézia\nadhezívnou\nadhezívum\nadhézny\nadhortatívum\nADI\nadiabatický\nadícia\nadičný\nadidaska\nadie\nadié\nAdiel\nadieu\nadipóm\nadiponekróza\nadipozita\nadipsia\nadiptívny\naditivita\naditívny\naditívum\nadj\nadjektív\nadjektívach\nadjektívam\nadjektívne\nadjektívnosť\nadjektívny\nadjektívum\nadjudikácia\nadjunkcia\nadjunkt\nadjunktiek\nadjunktkách\nadjunktkám\nadjunktka\nadjunktský\nadjuntka\nadjustácia\nadjustačný\nadjutant\nadjutum\nadjuvancie\nadjuvatika\nadlatus\nAdlera\nAdlerova\nadm\nadmin\nadministrácia\nadministratív\nadministratívach\nadministratívam\nadministratíva\nadministratívnoprávny\nadministratívnosprávny\nadministratívny\nadministrátor\nadministrátorka\nadministrátormi\nadministrátorsky\nadministrátorský\nadministrovala\nadministrovali\nadministrovania\nadministrovanie\nadministrovaním\nadministrovaniu\nadministrovaný\nadministrovať\nadministruje\nadministrujú\nadmirál\nadmiralita\nadmirálsky\nadmirálsky\nadmisia\nadmisný\nadmitancia\nadmonícia\nADN\nadnexitída\nadnominálny\nadnotácia\nAdobe\nadogmatický\nadogmatizmus\nadolescencia\nadolescenčný\nadolescent\nadolescentka\nadolescentný\nadolescentský\nAdolf\nAdonai\nadonis\nadónis\nadónsky\nadopcia\nadopčný\nadoptácia\nadoptačný\nadoptant\nadoptát\nadoptívny\nadoptovanec\nadoptovania\nadoptovanie\nadoptovaný\nadoptovať\nadorácia\nadoračný\nadorovať\nadorujú\nADOS\nadoval\nadovala\nadovali\nadované\nadovaného\nadovanej\nadovanú\nadovaných\nadovať\nadr\nadrenalektómia\nadrenalín\nadrenalinémia\nadrenalínový\nadrenálny\nadrenolytikum\nadresár\nadresármi\nadresárový\nadresát\nadresátka\nadresátové\nadresa\nadresne\nadresnosť\nadresný\nadresovane\nadresovanie\nadresovaný\nadresovať\nadresový\nAdriánach\nAdriánam\nAdriána\nAdrián\nAdrianin\nadriatický\nAdrie\nAdrien\nAdriena\nAdrienou\nAdrienu\nAdrieny\nadries\nAdrii\nAdrií\nAdriou\nAdriu\nADSL\nadsorbát\nadsorbcia\nadsorbent\nadsorbér\nadsorbované\nadsorbovať\nadsorpcia\nadsorpčný\nadspekcia\nadstrát\nadstringentný\naduje\nadujeme\nadujú\nadulár\nadulterácia\nadultný\naduta\nadut\nadutmi\nadv\nadvekcia\nadvent\nadventista\nadventistický\nadventistka\nadventívny\nadventizmus\nadventmi\nadventný\nadverbálny\nadverbializácia\nadverbializovať\nadverbiálny\nadverbium\nadverzatívny\nadvok\nadvokácia\nadvokát\nadvokátka\nadvokátovej\nadvokátovho\nadvokátovým\nadvokátsky\nadvokátsky\nadvokátstvach\nadvokátstvam\nadvokátstvo\nadvokatúra\nadware\nAdyho\nadynamia\naedelost\naeón\nAera\naerácia\naerácii\naeračné\naeračného\naerátor\nAere\naero\nAero\naeróbia\naerobik\naerobiont\naerobióza\naeróbne\naeróbny\naerobus\naerodróm\naerodyn\naerodynamickosť\naerodynamicky\naerodynamický\naerodynamika\naeroembolizmus\naerofágia\naerofilatelia\naerofília\naerofilter\naerofóbia\naerofón\naerofotografia\naerofyt\naerogén\naerogeológia\naerogram\naerogramu\naerohydrodynamika\naeroklub\naerolínia\naerológia\nAerom\naeromagnetický\naeromechanika\naeronautický\naeronautika\naeronautike\naeronautiku\naeronautiky\naeronivelácia\naeronómia\naerootitída\naeropauza\naeroplán\naeroplanktón\naeroplánoch\naeroplánov\naeroplánu\nAeroplány\naeropónia\naeroport\nAeroport\naerosalón\naerosol\nAerosol\naerosól\naerosólmi\naerosolov\naerosolové\naerosolovom\naerosolových\naerosolovými\naerosólový\naerosolu\naerosoly\naerostat\naerostatika\naerotaxi\naerotaxík\nAerotechnika\naeroterapia\naerotriangulácia\naerovkou\nAeru\nAF\nafágia\nafakia\nafatik\nafázia\nafebrilita\nafebrilný\nafekcia\nafektácia\nafekt\nafektívny\nafektmi\nafektovane\nafektovanie\nafektovanosť\nafektovaný\nafektovať\nafektový\nafektujúci\nafélium\nafémia\nafér\naférach\naféram\naféra\naferentácia\naferentný\naférista\naffabile\naffaires\naffettuoso\naffidativ\naffrettando\nAfganec\nAfganistan\nAfganka\nafgánsky\nafganský\nafghání\nafilácia\nafiliácia\nafiliačný\nafiliantný\nafilovaný\nafinácia\nafinačný\nafinéria\nafinita\nafinitný\nafinný\nafirmácia\nafirmatívny\nafirmovať\nafiš\nafix\nafixácia\naflatoxín\nafónia\naforickosť\naforicky\naforický\naforista\naforistickosť\naforisticky\naforistický\naforizmus\nafotický\nAFP\nafr\nafrázia\nafrický\nAfričan\nAfričanka\nafrikán\nafrikánčina\nafrikanista\nafrikanistika\nafrikanistiky\nafrikanizácia\nAfrikánske\nafrikáta\nAfrika\nafro\nafroamer\nafroamerický\nafrodit\nAfrodita\nafroditka\nafrodízia\nafrodiziák\nafrodiziakum\nafta\nafter\nafterparty\nafterpills\naftongia\nafunkcia\nafunkčný\nAG\naga\nagalakcia\nagama\nagamia\nagamogónia\nagamospermia\nAGAP\nagapa\nagapé\nagar\nAgarové\nagarovým\nAgátach\nAgátam\nAgáta\nagát\nagátina\nagátmi\nagaton\nAgátova\nagátový\nagáv\nagávach\nagávam\nagáva\nage\nAgencia\nagencie\nagencií\nagend\nagenda\nagenéza\nagens\nagensový\nagent\nagentka\nagentovej\nagentovho\nagentových\nagentský\nagentúr\nagentúrach\nagentúram\nagentúra\nagentúrny\nAgenzia\nageuzia\naggiornamento\nagile\nagilita\nAgilitou\nagility\nagilne\nagilnosť\nagilný\nagiste\nagitácia\nagitačný\nagitato\nagitátor\nagitátorka\nagitátormi\nagitátorský\nagitka\nagitovanie\nagitovať\naglobúlia\naglomerácia\naglomeračne\naglomeračný\naglomerát\naglomerovanie\naglomerovaný\naglomerovať\nagloporit\naglosia\naglutinácia\naglutinačné\naglutinát\naglutinín\naglutinogén\naglúzia\nAGM\nagnácia\nagnát\nAgnes\nAgnesa\nAgneša\nagnoskácia\nagnosticizmus\nagnostický\nagnostik\nagnózia\nagnuska\nagnuskami\nagnuskoch\nagnuskom\nagnuskov\nagnusku\nagnusky\nagnusok\nagnuštek\nagogika\nagóna\nagónia\nagonický\nagonistický\nagonistika\nagonizovať\nagora\nAgora\nagorafóbia\nAgoru\nAgory\nAgra\nagraciácia\nagradácia\nagrafa\nagrafia\nagramatizmus\nagranulocytóza\nagrarizácia\nagrarizmus\nagrárnický\nagrárnictve\nagrárnik\nagrárny\nagravácia\nAgre\nagregácia\nagregačný\nagregát\nagregátmi\nagregátovanie\nagregátový\nagregovaný\nagregovať\nagremán\nagrément\nagresia\nagresivita\nagresívnosť\nagresívny\nagresor\nagresormi\nagresorský\nagrikultúra\nagrikultúrny\nagrobiológ\nagrobiológia\nagrobiologický\nagrobiologička\nagrobotanika\nagroekológia\nAgrofóra\nAgrofóre\nAgrofórum\nagrofyzika\nagrogeológia\nagrochémia\nagrochémie\nagrochémii\nagrochemikália\nagrochemikáliách\nagrochemikáliami\nagrochemikálie\nagrochemikálií\nagrochémiou\nagrochémiu\nagrokombinát\nagrokomplex\nagrokybernetika\nagrológ\nagrológia\nagrometeorológia\nagrometeorologických\nagronómami\nagronóm\nagronómi\nagronómia\nagronomický\nagronómka\nagropodnikateľ\nagropodnikateľka\nagropodnikateľský\nagropotravinový\nagrotechnicky\nagrotechnický\nagrotechnička\nagrotechnika\nagrotechnik\nagroturistický\nagroturistika\nAgru\nagrumy\nAgry\nagrypnia\nah\náh\naha\nahá\nahááá\nahahaha\nahasver\nAhasver\nahasverovský\nAhasverových\nahinsá\nahistorickosť\nahistoricky\nahistorický\nahistorizmus\nahjaj\nAHL\nahm\nahoj\nahojček\nahojko\nahojte\nach\nách\nachacha\nachachachá\nachát\nachátmi\nachátovo\nachátový\nachbože\nachbožemôj\nAchilles\nAchillmi\nachillova\nAchillovej\nachillovi\nAchillovou\nachillovský\nachillovu\nAchillových\nAchillovým\nachilodýnia\nachilovka\nachilovský\nachkať\nachloropsia\nachólia\nacholúria\nachondroplázia\nachromát\nachromatický\nachromatín\nachromatizmus\nachromatocyt\nachromatopsia\nachromatóza\nachromázia\nachromodermia\nachronický\nachronistický\nacht\nachtak\nachtlík\nachýlia\nAIDS\naids\naidsový\naidsy\naichmofóbia\naikido\naikinit\nAIP\nair\nAir\nairbag\nairbrush\nairbus\nAire\nAirom\nairport\nairsoft\nAiru\nAiry\nAiwa\nAIX\naj\najaj\najáj\najajaj\najajáj\najanámša\najatín\najatolláh\najhľa\najhrozivejšou\najjasnejšia\najnclík\najurvéda\najvaj\najznboňák\nak\nakácia\nakáciový\nakad\nakadémia\nakademickosť\nakademicky\nakademický\nakademička\nakademik\nakademizmus\nAkai\nakákoľvek\nakalkúlia\nakant\nAkant\nakantit\nakantóm\nakantóza\nakapnia\nakarinóza\nakarológ\nakarológia\nakási\nakatafázia\nakatalektický\nakatízia\nakawi\nakáže\nakc\nakcelerácia\nakceleračný\nakcelerátor\nakcelerograf\nakcelerovať\nakcent\nakcentmi\nakcentológia\nakcentovania\nakcentovanie\nakcentovaniu\nakcentovaný\nakcentovať\nakcept\nakceptabilný\nakceptácia\nakceptačný\nakceptant\nakceptanta\nakceptanti\nakceptantom\nakceptantovi\nakceptom\nakceptor\nakceptorom\nakceptov\nakceptovanie\nakceptovaný\nakceptovateľnosť\nakceptovateľný\nakceptovať\nakceptu\nakces\nakcese\nakcesia\nakcesoria\nakcesoricky\nakcesorický\nakcesórny\nakcia\nakcidencia\nakcidenčný\nakcidens\nakcident\nakcidentála\nakcidentálny\nakcieschopnosť\nakcieschopný\nakcionár\nakcionárka\nakcionársky\nakciovka\nakciovo\nakciový\nakcíz\nakcíza\nakcízne\nakčne\nakčnosť\nakčný\nakéhokoľvek\nakéhosi\nakejkoľvek\nakejsi\nAkejže\nakékoľvek\nakémukoľvek\nakémusi\naker\nakési\nakéto\nakéže\nakija\nakíkoľvek\nakinakes\nakineta\nakinéza\nakísi\nakiste\nakja\nAkkra\nAkkre\nakkriansky\nAkkry\naklamácia\naklamačne\naklamačný\naklamovať\naklimácia\naklimatizácia\naklimatizačný\naklimatizoval\naklimatizovala\naklimatizovali\naklimatizovalo\naklimatizovanie\naklimatizovať\naklimatizuj\naklimatizuje\naklimatizujem\naklimatizujeme\naklimatizuješ\naklimatizujete\naklimatizujme\naklimatizujte\naklimatizujú\naklimatizujúc\naklina\nakmé\nakméizmus\nakné\nako\nakoazma\nakoby\nakokoľvek\nakoláda\nakológ\nakológia\nakomak\nakomik\nakomkoľvek\nakomodácia\nakomodačný\nakomodovať\nakomsi\nakonáhle\nakonitín\nakontácia\nakontačný\nakord\nakordeón\nakordeonista\nakordný\nakordový\nakosi\nakosť\nakostne\nakostný\nakoukoľvek\nakousi\nakože\nakra\nakrálny\nakrami\nakránia\nakratopega\nakre\nakrécia\nakreditácia\nakreditačný\nakreditív\nakreditíve\nakreditívny\nakreditívový\nakreditovanie\nakreditovaný\nakreditovať\nakri\nakríbia\nakribofóbia\nakridín\nakrobacia\nakrobat\nakrobaticky\nakrobatický\nakrobatka\nakrocefália\nakrocyanóza\nakrodermatitída\nakrodýnia\nakrofóbia\nakroch\nakrochordit\nakroleín\nakrolit\nakrom\nakromegália\nakromelalgia\nakromikria\nakronizácia\nakronym\nAkropol\nakropola\nAkropole\nakropolis\nAkropolis\nAkropolou\nAkropolu\nakrostich\nakrostichon\nakrotómia\nakrov\nakru\nakryl\nakrylaldehyd\nakrylan\nakrylana\nakrylát\nakrylén\nakrylonitril\nakrylový\naksamiet\naksamietka\naksamietnic\naksamietnica\naksamietový\naksamít\nakta\naktách\naktám\naktá\nakt\naktér\naktérka\naktérky\naktérsky\naktín\naktinídia\naktínium\naktinodermatitída\naktinoid\naktinometer\naktinometria\naktinomorfný\naktinomyceta\naktinomycín\naktinomykóza\naktinoterapia\naktinoterapiou\naktivácia\naktivačne\naktivačný\naktívach\naktívam\naktivátor\naktív\naktivista\naktivistický\naktivistka\naktivita\naktívium\naktivizácia\naktivizačne\naktivizačno\naktivizačný\naktivizmus\naktivizovania\naktivizovanie\naktivizovaním\naktivizovaný\naktivizovať\naktívne\naktívnosť\naktívny\naktivovane\naktivovaný\naktivovať\naktívum\naktmi\naktograf\naktogram\naktológia\naktovka\naktualita\naktualizácia\naktualizačný\naktualizmus\naktualizovane\naktualizovanie\naktualizovaný\naktualizovať\naktuálne\naktuálnejší\naktuálnosť\naktuálny\naktulizáciám\nakty\nakúkoľvek\nakulit\nAkulit\nakulturácia\nakumulácia\nakumulačný\nakumulátor\nakumulátorka\nakumulátorky\nakumulátorovňa\nakumulátorovo\nakumulátorový\nakumuloval\nakumulovala\nakumulovali\nakumulovalo\nakumulovania\nakumulovanie\nakumulovaním\nakumulovaniu\nakumulovaný\nakumulovať\nakumuluj\nakumuluje\nakumulujem\nakumulujeme\nakumuluješ\nakumulujete\nakumulujme\nakumulujte\nakumulujú\nakumulujúc\nakupresúr\nakupresúrach\nakupresúram\nakupresúra\nakupunktúr\nakupunktúrach\nakupunktúram\nakupunktúra\nakupunktúrny\nakurát\nakurátne\nakurátnosť\nakurátny\nakúsi\nakust\nakusticky\nakustický\nakustik\nakustika\nakustofóbia\nakút\nakútne\nakútnosť\nakútny\nakúto\nakútový\nakutrátne\nakutrauma\nakuz\nakuzácia\nakuzatív\nakuzatíve\nakuzatívny\nAkúže\nakvabela\nakvacentrum\nakvadukt\nakvaduktom\nakvadukty\nakvakultúra\nakvalung\nakvamarín\nakvamarínový\nakvanautika\nakvapark\nakvaplán\nakvaplaning\nakvarel\nakvarelista\nakvarelistka\nakvarelmi\nakvarelový\nakváriový\nakvarista\nakvaristický\nakvaristika\nakvárium\nakvaterárium\nakvatický\nakvatinta\nakvatóriách\nakvatóriu\nakvavit\nakvirovala\nakvirované\nakvirovanej\nakvirovaných\nakvizícia\nakvizičný\nakvizitér\nakvizitéra\nAkvizitéri\nakvizitérov\nakvizítor\nakyanoblepsia\nakýchkoľvek\nakýchsi\nakýkoľvek\nakýmikoľvek\nakýmisi\nakýmkoľvek\nakýmsi\nakyn\nakýsi\naký\nakýže\nakže\nakživ\nal\nAl\nala\nAla\nAlabama\nAlabame\nAlabamu\nAlabamy\nalabandín\nalabaster\nalabastrovo\nalabastrový\nAladár\nAlah\nalain\nalaktit\nalália\nAlami\nalamosit\nAlán\nAlana\nAlan\nAlapiho\nalarm\nalarmovať\nalarmový\nalarmujúci\nalárny\nAlaska\nalb\nalba\nAlba\nAlbáncami\nAlbánci\nAlbáncoch\nAlbáncom\nAlbáncov\nalbánčin\nalbánčinách\nalbánčinám\nalbánčinami\nalbánčina\nAlbánec\nAlbánie\nAlbánii\nalbanista\nalbanistika\nAlbánka\nalbano\nAlbánsko\nalbánsky\nalbánsky\nalbatros\nalbatrosovi\nalbedo\nAlbedo\nAlbert\nAlberte\nAlbertina\nAlbertini\nAlbertovej\nalbertská\nAlbertu\nAlberty\nalbikácia\nAlbínach\nAlbínam\nAlbína\nalbín\nAlbín\nalbinizmus\nalbíny\nAlbion\nAlbión\nAlbiónom\nAlbiónu\nalbit\nAlbit\nAlbitom\nAlbitu\nAlbrecht\nAlbrechta\nAlbrechtom\nAlbrechtova\nAlbrechtovi\nalbum\nalbumen\nalbumín\nalbuminát\nalbumínového\nalbuminóza\nAlbumínu\nalbuminúria\nalbumíny\nalbumový\nalcazar\naldehyd\nAlderman\naldol\naldosterón\naldóza\naldrín\nAldus\nale\naleatorika\naleatórny\naleba\nalebo\nalef\nalegácia\nalegát\nalegória\nalegorickosť\nalegoricky\nalegorický\nalegorizácia\nalegorizovať\nalejach\nalejam\naleja\nalejí\nAlejova\nAlejová\nAlejové\nAlejovej\nAlekšince\nAlekšinciach\nalela\nalelopatia\naleluja\nalemontit\nAlena\nAlenka\nalergén\nalergénmi\nalergénov\nalergénu\nalergény\nalergia\nalergicky\nalergický\nalergička\nalergik\nalergiológ\nalergiológia\nalergiologický\nalergiologička\nalergológia\nalergologický\nalergóza\nalertný\nAleš\nAlešova\nAlešovo\naleukémia\naleurit\naleuronát\nAlex\nAlexa\nalexander\nAlexandera\nAlexander\nAlexanderoch\nAlexanderom\nAlexanderov\nAlexanderovi\nAlexandra\nAlexandria\nalexandrijský\nalexandrín\nalexandrit\nAlexej\nalexia\nAlexia\nAlexie\nalexín\nAlexom\nAlexov\nAlexovej\nAlexovi\nAlexovu\nAlexovým\nAlexyho\naleže\nálf\nalfabeta\nalfabetický\nalfabetizácia\nalfabetizátor\nalfách\nalfám\nalfameter\nalfanumerický\nalfavírus\nalfa\nAlfonz\nAlfréd\nalgebier\nalgebrách\nalgebraický\nalgebrám\nalgebrami\nalgebra\nalgebricky\nalgebrický\nalgézia\nalgezimetria\nalgodonit\nalgolagnia\nalgol\nalgológia\nalgomenorea\nalgonkin\nalgonkium\nalgor\nalgoritmický\nalgoritmizácia\nalgoritmizácie\nalgoritmus\nalgospazmus\nalgrafia\nAlhambra\nalhidáha\nalch\nalchemilka\nalchýmia\nalchymista\nalchymistický\nalchýmistický\naliancia\naliančne\naliančný\nalias\naliasing\nalibi\nalibista\nalibisticky\nalibistický\nalibistka\nalibizmus\nAlica\nalicín\nalicyklický\naliek\nalienácia\nalifatický\nalifer\naligátor\naligátorova\naligátorove\naligátorovo\naligátorovu\naligátorovým\naliín\nalikvotne\nalikvotný\naliment\nalimentácia\nalimentačný\nalimentárny\nAlimente\nalimentmi\nalimentoch\nalimentológia\nalimentom\nalimentov\nAlimentu\nalimenty\naliminácia\nalinea\nalit\nalitácia\naliterácia\naliteračný\nalitovanie\naliud\nalivalit\nalizarín\nalizarínová\nAljaška\naljašský\nAljašťan\nAljašťanka\nalka\nAlka\nalkália\nalkalicelulózy\nalkalickosť\nalkalicky\nalkalický\nalkálie\nalkalimetria\nalkalita\nalkalizácia\nalkaloid\nalkaloidný\nalkaloidový\nalkalóza\nalkán\nalkánoch\nalkánov\nalkány\nalke\nalkén\nalkín\nalkoholát\nalkohol\nalkoholicky\nalkoholický\nalkoholička\nalkoholik\nalkoholizácia\nalkoholizmus\nalkoholizovaný\nalkoholometer\nalkoholovo\nalkoholový\nalkoholýza\nalkohomer\nalkovňa\nalkoxid\nalku\nAlky\nalkyd\nalkyl\nalkylácia\nalkyón\nallargando\nallegier\nallegreto\nallegretto\nallegrissimo\nallegro\nallemanda\nallonym\nallround\nalm\nAlma\nAlma-ata\nAlmaatčan\nAlmaatčanka\nalmaatský\nalmanach\nalmanachový\nalmandín\nalmár\nalmara\nalmázia\nalmáziový\nalmea\nAlmu\nalmukantarát\nalmužiek\nalmužien\nalmužna\nalmužnícky\nalmužničku\nalmužník\nAlmy\nalnico\naloa\nalobal\nalobalmi\nalobalový\nalod\naloe\nalofán\nalofanoid\nalofóna\nalogamia\nalogénny\nalogickosť\nalogicky\nalogický\nalogizmus\nalograf\nalochória\nalochromatický\nalochronický\nalochtónny\nAlojz\nAlojzia\nAlojzove\nalokácia\nalokačný\nalokovaný\nalokovať\nalokúcia\nalometamorfóza\nalometria\nalomorfóza\nalonym\nalonž\nalonžový\naloový\nalopaládium\nalopat\nalopatia\nalopatický\nalopatria\nalopécia\naloplastika\nAľoša\nalotrium\nalotropia\nalozóm\nAlp\nálp\nÁlp\nalpách\nalpák\nalpaka\nalpakový\nalpám\nalpa\nalpid\nAlpin\nalpín\nAlpina\nalpínach\nalpínam\nAlpine\nalpínec\nalpinista\nalpinistický\nalpinistika\nalpinistka\nalpinizmus\nalpinkár\nalpínka\nalpínsky\nalpínum\nalpový\nalpsky\nalpský\nAlpy\nalsaský\nalstonit\nAlstrova\nAlšavská\naltait\nAltaja\nAltajského\nAltajskej\nAltajskou\naltajským\naltán\naltánkom\naltánku\naltánky\naltánok\naltánov\nalt\nalterácia\nalternácia\nalternačný\nalternanta\nalternarióza\nalternát\nalternatim\nalternatív\nalternatívach\nalternatívam\nalternatíva\nalternatívne\nalternatívnosť\nalternatívny\nalternátom\nalternátor\nalternátov\nalternovanie\nalternovaný\nalternovať\nalternujúca\nalternujúce\nalternujúci\nalternujúcim\nalterovať\naltimeter\naltis\naltista\naltistka\naltmi\naltocumulus\naltostratus\naltový\naltruista\naltruisticky\naltruistický\naltruistka\naltruizmus\naltsaxofón\nALU\nalumetovanie\naluminát\nalumíniový\naluminit\nalumínium\naluminotermia\nAluminotermia\naluminotermie\naluminotermiu\naluminóza\nalumnát\nalunit\nalunogén\nalurgit\nalúry\naluviálny\nalúvium\nalúzia\naluzívny\nalveolára\nalveolárna\nalveolárne\nalveolárni\nalveolárnu\nalveolárny\nalveola\nalveolitída\nAlvinczyho\nalweg\nalyl\nAlžbeta\nAlžbetin\nAlžbetina\nAlžbetinej\nAlžbetinho\nalžbetínka\nAlžbetinom\nalžbetínsky\nAlžbetinu\nAlžbetka\nAlžbetke\nAlžír\nAlžírka\nalžírska\nalžírske\nalžírskeho\nalžírskej\nalžírskemu\nalžírski\nalžírskom\nAlžírsko\nalžírskou\nalžírsku\nalžírsky\nalžírskych\nalžírskym\nalžírskymi\nam\nAM\namabile\nAmadea\nAmadeho\nAmadeus\namadína\namalgamácia\namalgamátorom\namalgám\namalgamovaní\namalgamovania\namalgamovanie\namalgamovať\namalgámový\nAmália\nAmanda\namanitín\namant\namanta\namanuensis\namara\namarant\namarantit\namarelka\namarilitit\namarylka\namatér\namaterizmus\namatérka\namatérsky\namatérsky\namatérstvach\namatérstvam\namatérstvo\namauróza\namazonit\namazonka\namazonský\nambaláž\nambasád\nambasádach\nambasádam\nambasáda\nambasádor\nambasádora\nambasádori\nambasádorom\nambasádorov\nambasádový\nambažúra\nambícia\nambiciózne\nambicióznosť\nambiciózny\nambidextria\nambient\nambiguita\nambiofónia\nambiopia\nambit\nambitmi\nambitus\nambivalencia\nambivalencie\nambivalentnosť\nambivalentný\namblyakúzia\namblyopia\nambo\nAMBO\nambona\nambra\nAmbra\nAmbre\nambrit\nambroid\nAmbroseho\nAmbrova\nAmbrové\nambrovi\nambrovou\nAmbróz\nambrózia\nambróziový\nAmbru\nambulancia\nambulančný\nambulantne\nambulantný\nambulatórium\nambulatórny\nAMD\naméba\namébocyt\namélia\nAmélia\namen\namencia\namendolores\namenglória\namenmária\namenorea\namer\namerícium\nAmericko\namericky\namerický\nAmeričan\nAmeričanka\nAmeričanova\nAmeričanove\nAmeričanovo\nAmeričanovu\namerika\namerikán\nAmerikán\namerikanista\namerikanistika\namerikanistiku\namerikanizácia\namerikanizmus\namerikanizoval\namerikanizovala\namerikanizovali\namerikanizovalo\namerikanizovaný\namerikanizovať\namerikanizuj\namerikanizuje\namerikanizujem\namerikanizujeme\namerikanizuješ\namerikanizujete\namerikanizujme\namerikanizujte\namerikanizujú\namerikanizujúc\nAmerikánka\namerikánsky\nAmerika\nAmeta\nametropia\nametyst\nametystový\namfetamín\namfíbia\namfibický\namfibiont\namfibol\namfibólia\namfibolický\namfibolit\namfibolitový\namfibolovec\namfibolový\namfibrach\namfigónia\namfimixia\namfión\namfiteáter\namfolyt\namfora\namfoterita\namfotérny\namhar\namid\namidol\namidopyrín\nAmiens\nAmiense\nAmiensky\namík\namimia\namín\nAmín\naminácia\namínokyselinami\naminokyselina\namínokyselinu\namínokyseliny\naminoplast\naminoskupina\namínov\namínovou\namínových\namíny\namiš\namitóza\namixia\nAmmán\nammánsky\namnestia\namnestovanie\namnestovaný\namnestovať\namnézia\namniocentéza\namnión\namnioskopia\namok\namondový\namoniakálneho\namoniak\namoniakový\namonifikácia\namóniový\namonit\namónium\namonizácia\namónny\namoralista\namoralitu\namoralizmus\namorálnosť\namorálny\namor\namoret\namorfický\namorfizmus\namorfne\namorfnosť\namorfný\namori\namoroso\namorovi\namortizácia\namortizačný\namortizér\namortizovane\namortizovaný\namortizovať\nAmos\namotóza\nampelografia\nampérhodina\nampér\nampérmeter\nampérmi\nampérovo\nampérový\nampérsekunda\nampéry\nampicilín\namplektácia\namplidyn\namplifikácia\namplifikačný\namplifikátor\namplión\nampliónový\namplitúda\namplitúdovo\namplitúdový\nampula\nampulka\namputácia\namputačný\namputovane\namputovaný\namputovať\nAmsterdam\nAmsterdamčan\nAmsterdamčanka\namsterdamský\nAmudarje\namulet\namur\nAmure\nAmurská\nAmurskej\nAmurskými\namúzia\namuzikálny\namygdalin\namygdalitída\namyl\nAmyl\namyláza\namylázy\namylolýza\namylopektín\namyloplast\namylóza\namyotrofia\nanabaptista\nanabaptizmus\nanabáz\nanabázach\nanabázam\nanabáza\nAnabel\nAnabela\nAnabelle\nanabióza\nanabolík\nanabolikum\nanabolizmus\nanacidita\nanacionalizmus\nanadróma\nanaerób\nanaerobióza\nanaerobný\nanaeróbny\nanafáza\nanafor\nanafora\nanaforický\nanafrodízia\nanafrodiziakum\nanafylaktický\nanafylaxia\nanaglyf\nanagram\nanagramonym\nanachorét\nanachoréta\nanachronickosť\nanachronicky\nanachronický\nanachronisticky\nanachronistický\nanachronizmus\nanakolut\nanakolút\nanakolútmi\nanakond\nanakonda\nAnakreón\nanakreontika\nanakúzia\nanál\nAňala\nanalcím\nanalektá\nanaleptikum\nanalfabet\nanalfabetický\nanalfabetizmus\nanalfabetka\nanalget\nanalgetický\nanalgetík\nanalgetikum\nanalgézia\nanalgia\nanáli\nanalista\nanalistický\nanalistika\nanálmi\nanálny\nanalog\nanalógia\nanalogickosť\nanalogicky\nanalogický\nanalogizovať\nanalogon\nanalógovo\nanalógový\nanáloch\nanálom\nanálov\nanalsex\nAňalské\nanály\nanalyt\nanalytickosť\nanalyticky\nanalytický\nanalytička\nanalytika\nanalytik\nanalýz\nanalýzach\nanalýzam\nanalyzátor\nanalýza\nanalyzovanie\nanalyzovaný\nanalyzovateľného\nanalyzovateľným\nanalyzovať\nanamnésis\nanamnesticky\nanamnestický\nanamnéz\nanamnézach\nanamnézam\nanamnéza\nanamorfóza\nananás\nananásový\nanankazmus\nananké\nananym\nanapait\nanapest\nanapestický\nanaplazmóza\nanarchia\nanarchickosť\nanarchicky\nanarchický\nanarchista\nanarchisticky\nanarchistický\nanarchistka\nanarchizmus\nanartria\nanastáza\nAnastázia\nanastézia\nanastigmat\nanastomóza\nanastrofa\nanastylóza\nanat\nanatas\nanatéma\nanatexia\nAnatol\nAnatola\nAnatoli\nAnatolia\nAnatólia\nAnatolie\nAnatólie\nAnatólii\nanatóm\nanatómia\nanatomicko\nanatomicky\nanatomický\nanatómka\nanatoxín\nanciáš\nancienita\nancikristami\nancikrist\nAncona\nAnča\nančar\nAnče\nAnči\nAnčí\nAnčina\nAnčine\nančovička\nančovka\nAnču\nand\nÁnd\nAndač\nAndách\nAndalúzia\nandaluzit\nandaluzitov\nandalúzskej\nandalúzsky\nAndami\nandante\nAndela\nAndelka\nandezit\nandezitový\nAndice\nandorit\nAndorra\nandorrský\nAndovce\nAndovská\nandradit\nandragogika\nAndraščíkova\nAndrea\nAndrej\nAndrejka\nAndrejku\nAndrejová\nAndrejovej\nAndrejovho\nAndrejovka\nandrewsit\nAndriana\nandroblastóm\nandrocefália\nandrofóbia\nandrogén\nandrogýn\nandrogýnia\nandroid\nandrokefália\nandrológia\nandrománia\nandronym\nandrospermia\nandrosterón\nAndrusovova\nandský\nandulka\nAndy\nanekčný\nanekdot\nanekdôt\nanekdota\nanekdotický\nanekdotiek\nanektoval\nanektovala\nanektovali\nanektovalo\nanektované\nanektovaných\nanektovať\nanektuj\nanektuje\nanektujem\nanektujeme\nanektuješ\nanektujete\nanektujme\nanektujte\nanektujú\nanektujúc\nanémia\nanemicky\nanemický\nanemik\nanemofília\nanemograf\nanemogram\nanemochória\nanemometer\nanemometra\nanemometri\nanencefália\nanenský\nanepigraf\nanergia\naneroid\nanestetický\nanestetikum\nanestéz\nanestézach\nanestézam\nanestéza\nanestézia\nanestéziológ\nanestéziológia\nanestéziologický\nanestéziologička\nanestézovať\nAneta\nanetol\nAnetta\nAnette\nAnettou\naneurín\naneuryziem\naneuryzma\nanexia\nAnežka\nánfas\nang\nAngarskej\nAngarsky\nangažmán\nangažovane\nangažovanie\nangažovanosť\nangažovaný\nangažovať\nAngel\nAngela\nAngeles\nangelika\nAngelika\nangelín\nAngelinum\nangialgia\nangínach\nangínam\nangína\nangín\nangínový\nangiografia\nangiológia\nangióm\nangioplastika\nangiorexa\nangiorexia\nangiospazmus\nangiostenóza\nangl\nanglesit\nAnglia\nanglicizmus\nAnglicko\nanglicky\nanglický\nangličan\nAngličan\nAngličanka\nAngličanke\nAngličanku\nAngličanky\nangličtín\nangličtinách\nangličtinám\nangličtinami\nangličtinár\nangličtinárka\nangličtina\nAnglie\nAnglii\nanglikán\nanglikanizmus\nanglikanizovať\nanglikánka\nanglikánsky\nanglikánsky\nanglikánstvo\nanglista\nanglistika\nanglistka\nanglo\nangloamer\nangloamerický\nAngloameričan\nAngloameričanka\nangloarab\nanglofil\nanglofília\nanglofilstvo\nanglofób\nanglofóbia\nanglofónny\nangloind\nangloman\nanglománia\nanglosas\nAnglosas\nanglosasky\nanglosaský\nAngôl\nAngola\nangolský\nangor\nangorách\nangorám\nangorami\nangora\nangorizmus\nangorský\nangulárny\nangulitída\nangúria\nanhidrotikum\nanhidróza\nanhydrid\nanhydridy\nanhydrit\nani\nanibohovi\nAnička\nAničke\nAničkin\nAničky\nAniek\nAnien\nanihilácia\nanilín\nanilínovo\nanilínový\nanimácia\nanimačný\nanimalista\nanimalistka\nanimalita\nanimalizmus\nanimálne\nanimálnosť\nanimálny\nanimato\nanimátor\nanimátore\nanimátormi\nanimátorský\nanimátoru\nanimátory\nanima\nanimikit\nanimista\nanimistický\nanimizácia\nanimizmus\nanimo\nanimoso\nanimovanie\nanimovaný\nanimovať\nanimozita\nanión\naniónový\naníz\nanizochrónny\nanizometropia\nanizotropia\nanízoviek\nanízovka\nanízový\nanjel\nanjeliček\nanjelička\nanjeličkami\nanjeličkoch\nanjeličkom\nanjeličkov\nanjeličkovi\nanjeličkovia\nanjeličky\nanjelik\nanjeliky\nanjelovej\nanjelovho\nanjelsky\nanjelský\nAnkách\nAnkám\nAnkara\nankarský\nAnka\nanketár\nanketárka\nanketa\nanketoval\nanketovala\nanketovali\nanketovalo\nanketovať\nanketový\nanketuj\nanketuje\nanketujem\nanketujeme\nanketuješ\nanketujete\nanketujme\nanketujte\nanketujú\nanketujúc\nankylóza\nAnnách\nAnnám\nAnna\nanni\nAnnin\nAnnina\nAnnine\nAnnini\nAnnino\nAnninu\nanno\nANO\náno\nanód\nanódach\nanódam\nanóda\nanodický\nanódovo\nanódový\nanodýnia\nanodynum\nanofeles\nanofelizmus\nanoftalmia\nanoch\nanom\nanomália\nanomálny\nanoméria\nanómia\nanons\nanonsa\nanonymC\nanonymita\nanonymizoval\nanonymizovala\nanonymizovali\nanonymizovalo\nanonymizované\nanonymizovať\nanonymizuj\nanonymizuje\nanonymizujem\nanonymizujeme\nanonymizuješ\nanonymizujete\nanonymizujme\nanonymizujte\nanonymizujú\nanonymizujúc\nanonymka\nanonymne\nanonymnosť\nanonymný\nanonymovia\nanopsia\nanorák\nanoretikum\nanorexia\nanorg\nanorganický\nanorganika\nAnorganika\nanorgazmia\nanormalita\nanormálny\nanosmia\nanotácia\nanotačný\nanotovať\nanov\nanoxémia\nanoxia\nanozmia\nansábel\nansámbel\nansámbl\nansámbla\nansámblami\nansámble\nansámbli\nansámbloch\nansámblom\nansámblov\nansámblový\nansámblu\nansámbly\nANSI\nanšlus\nanšlusom\nanšlusu\nantabus\nantacid\nantacidum\nantae\nantagonicky\nantagonický\nantagonista\nantagonisticky\nantagonistický\nantagonistu\nantagonizmus\nantant\nantanta\nantapex\nantarktický\nAntarktída\nantarktidy\nantarktis\nante\nantecedencia\nantecedent\nantedatovanie\nantedatovaním\nantedatovaný\nantedatovať\nantelúdium\nantén\nanténach\nanténam\nanténa\nanteneandertálec\nanténne\nanténneho\nanténnej\nanténny\nanténnych\nanténnym\nanténnymi\nanténový\nantependium\nantepozícia\nantéza\nanthelmintiká\nanti\nantialergický\nantialergiká\nantialergikum\nantianemický\nantianemikum\nantiatóm\nantibakteriálny\nantibarión\nantibiotický\nantibiotik\nantibiotík\nantibiotikum\nantibióza\nanticipácia\nanticipačný\nanticipovane\nanticipovanie\nanticipovaný\nanticipovať\nantický\nanticorodal\nanticyklický\nanticyklóna\nantičastica\nantidampingový\nantidemokraticky\nantidemokratický\nantidemokratizmus\nantidepresívny\nantidetonačný\nantidetonátormi\nantidetonátory\nantidiabetikum\nantidiaroikum\nantidiuretický\nantidiuretikum\nantidogmatizmus\nantidopingový\nantidotá\nantidotom\nantidotum\nantidráma\nantidumpingový\nantiemetikum\nantifašista\nantifašistický\nantifašizmus\nantifeminizmus\nantifón\nantifónach\nantifonálny\nantifónam\nantifonár\nantifóna\nantifónia\nantifonický\nantigén\nantigénny\nantigénový\nantigest\nantiglobalisti\nantigravitácia\nAntigua\nAntigue\nantihalačný\nantihistaminika\nantihistaminiká\nantihistaminikum\nantihistorizmus\nantihmôt\nantihmota\nantihumánny\nantijadro\nantík\nantikách\nantikám\nantikami\nantika\nantiklerikalizmus\nantiklimax\nantiklinála\nantikolonializmus\nantikomunista\nantikomunisti\nantikomunisticky\nantikomunistický\nantikomunistom\nantikomunistov\nantikomunizmus\nantikoncepcia\nantikoncepčný\nantikor\nantikoro\nantikorový\nantikoróznosť\nantikorózny\nantikrist\nAntikrist\nantikva\nantikvár\nantikvariát\nantikvariátmi\nantikvárium\nantikvark\nantikvárny\nantikvita\nantikvovať\nAntíl\nAntilách\nantilátka\nAntiliberálna\nantiliberálne\nantiliberálnych\nantilop\nantilopa\nantilopí\nantilopový\nantilský\nAntily\nantimagnetický\nantimalarickú\nantimalariká\nantimarxista\nantimikrobiálny\nantimilitarista\nantimilitaristický\nantimilitarizmus\nantimón\nantimonit\nantimonitý\nantimonopolný\nantimónový\nantinacionalistickú\nantineutríno\nantineutrón\nantinómia\nantinomický\nantinukleón\nantioxidácia\nantioxidant\nantioxidantmi\nantioxidantoch\nantioxidantov\nantioxidantu\nantioxidanty\nantiparazitikum\nantipasát\nantipasta\nantipatia\nantipatický\nantipendium\nantiperspirant\nantipód\nantipól\nantipropagande\nantipropagandu\nantiprotón\nantipyretickými\nantipyretikum\nantiquark\nantireflexný\nantireumatika\nantireumatiká\nantireumatiku\nantireumatikum\nantiromán\nantisemita\nantisemitista\nantisemitizmus\nantisemitka\nantisemitmi\nantisemitský\nantisepsa\nantisepticky\nantiseptický\nantiseptikum\nantisklerotický\nantislovenský\nantisocialistickým\nantisociálny\nantistaticky\nantistatický\nantistrofa\nantisymetrický\nantitalent\nantitetický\nantitéza\nantitoxický\nantitoxín\nantitoxínový\nantiuretikum\nantivegetačný\nantivibračný\nantivírový\nantivírusový\nantivitamín\nantivojnový\nantlerit\nAntol\nAntola\nantológia\nAntolská\nanton\nAnton\nAntónia\nantonomázia\nAntonova\nantoným\nantonýmia\nantonymický\nantonymum\nAntoš\nAntoša\nAntošov\nAntošovej\nAntošovou\nantracén\nantracénový\nantracit\nantracitmi\nantracitový\nantraknóza\nantrasilikóza\nantrax\nantraxe\nantraxom\nantraxu\nantrecén\nantritída\nantrop\nantropický\nantropobiológia\nantropocentrický\nantropocentrizmus\nantropofág\nantropofágia\nantropofilný\nantropofóbia\nantropofyl\nantropogenetika\nantropogenéza\nantropogénia\nantropogénny\nantropogeografia\nantropogogika\nantropoid\nantropokinetika\nantropológ\nantropológia\nantropologický\nantropologička\nantropomaxiológia\nantropometria\nantropomorficky\nantropomorfický\nantropomorfizácia\nantropomorfizmus\nantropomorfne\nantropomorfný\nantropomotorika\nantroponomastika\nantroposociológia\nantropozofia\nantropozoikum\nantrotómia\nantrozoonóza\nantuka\nantukový\nAntverp\nAntverpách\nantverpský\nAntverpy\nanuela\nanuít\nanuita\nanuitno\nanuitný\nanulácia\nanulácie\nanulácii\nanuláciu\nanulátor\nanuloid\nanulovanie\nanulovaný\nanulovateľný\nanulovať\nanuréza\nanúria\nanus\nanxieta\nanxiozita\naorist\naortálny\naorta\naortitída\naortový\nap\nAP\nApač\nApačov\napačský\napagoga\nApálska\napanážach\napanážam\napanáž\naparát\naparátmi\naparátnička\naparátnik\naparatúr\naparatúrach\naparatúram\naparatúra\napartheid\naparthotel\napartmán\napartnosť\napartný\napastron\napatéka\napatekár\napatia\napatickosť\napaticky\napatický\napatičnosť\napatit\napatitu\napatity\napatrida\napatritída\napeiron\napela\napelácia\napelačný\napelatív\napelatívach\napelatívam\napelativizácia\napelatívny\napelatívum\napel\napele\napelmi\napelovanie\napelovať\napelový\napendicitída\napendix\napendoktómia\napepsia\napercepcia\naperceptívny\napercipovať\naperiodický\naperitív\naperitíve\napertácia\napertúra\napetencia\nApetit\napetít\napetítmi\nApetitom\napex\nApex\nApia\napikála\napík\napikotómia\napitoxín\napko\naplaná\naplanácia\naplaudovaná\naplaudovania\naplaudovať\naplaudujúci\naplauz\naplázia\napléger\naplikabilita\naplikabilný\naplikáciach\naplikáciam\naplikácia\naplikačne\naplikačno\naplikačný\naplikatívny\naplikátorB\naplikatúra\naplikovanie\naplikovaný\naplikovateľnosť\naplikovateľnosti\naplikovateľnosťou\naplikovateľný\naplikovať\naplomb\napnoe\napo\napocentrum\napod\napodiktickosť\napodikticky\napodiktický\napofylit\napofýza\napogalaktikum\napogamia\napogeum\napochromát\napokalýps\napokalypsa\napokalypticky\napokalyptický\napokalyptik\napokarpium\napokastáza\napoklyptického\napokopa\napokrinný\napokryf\napokryfický\napokryfný\napolinský\napolita\napolitickosť\napoliticky\napolitický\nApolitičnosť\napolitičnosti\napollinský\napologéta\napologeticky\napologetický\napologetik\napologetika\napologétov\napológia\napologický\nApolón\napolónsky\napomixia\napoplexia\naporéma\naporia\naport\naportov\naportovať\napospória\napostata\naposteriórnosť\naposteriórny\napostrofa\napostrof\napostrofovať\napoštolát\napoštol\napoštolovia\napoštolský\napotéka\napoteóz\napoteózach\napoteózam\napoteóza\napozícia\napozičný\napoziopéza\nappartement\nappassionato\nappearancia\nappeasement\nappoggiatura\nappoint\napraxia\naprehenzia\naprehenzívny\napretácia\napretačný\napretátor\napretátorka\napretátorský\napretor\napretorka\napretorský\napretovacích\napretované\napretovanie\napretovať\napretovni\napretúr\napretúrach\napretúram\napretúra\napríl\naprílovi\naprílový\napríly\napriori\naprioristická\naprioristické\napriorizmus\napriórne\napriórnosť\napriórny\naprobácia\naprobačný\naproboval\naprobovala\naprobovali\naprobovalo\naprobovaný\naprobovať\naprobuj\naprobuje\naprobujem\naprobujeme\naprobuješ\naprobujete\naprobujme\naprobujte\naprobujú\naprobujúc\napropo\napropriácia\naprosexia\naprovizátor\naproximácia\naproximačný\naproximatívny\naproximovaný\naproximovať\naproximujúci\napsíd\napsida\naptéria\naptitúda\napu\napyrexia\naqua\naquadukt\naquaplaning\nAR\narab\naraba\nArab\narabčín\narabčinách\narabčinám\narabčinami\narabčina\nArabela\nArabelin\narabeska\nArábia\narabista\narabistika\narabistka\narabizmus\nArabka\nArabky\narabmi\narabom\narabov\narabova\narabove\narabovi\narabovo\narabovu\narabsky\narabský\naraby\nArad\naragonit\naragonitový\nAragónsko\naragónsky\narách\narachné\narachnoentomológia\narachnoidea\narachnológia\narak\nArak\nAraku\naram\narám\nArany\naranžér\naranžérka\naranžérska\naranžérske\naranžérskeho\naranžérskej\naranžérskemu\naranžérski\naranžérskom\naranžérskou\naranžérsku\naranžérsky\naranžérskych\naranžérskym\naranžérskymi\naranžérstvach\naranžérstvam\naranžérstvo\naranžmán\naranžovania\naranžovanie\naranžovaním\naranžovaniu\naranžovaný\naranžovať\nArarat\nararatský\narašid\narašidový\narat\naraukária\nara\nArba\narbiter\narbitrácia\narbitrácie\narbitráčný\narbitrárnosť\narbitrárny\narbitra\narbitrážach\narbitrážam\narbitráž\narbitrážny\narbitrérnosť\narbitrérny\narbitrovho\narboreál\narborétum\narbovírus\nArbus\narcibiskup\narcibiskupský\narcibiskupstvo\narcidiecéz\narcidiecézach\narcidiecézam\narcidiecéza\narcidiecézny\narcikňaz\narcikňažná\narciknieža\narcivojvoda\narcivojvodkyňa\narcivojvodský\narcivojvodstvo\nArdanovce\nardente\nardito\nardometer\nArdovo\narea\nArea\nareál\nareáli\nareálmi\nareálový\náredátor\nareflexia\nareka\narela\narén\narénach\narénam\naréna\nárendátor\nárendátorka\nárendátorský\nárenda\nárenduje\nareocentrický\nareografia\nareola\nareometer\nareopag\nAres\náreštant\nárešt\náreštmi\náreštovať\naretácia\naretačný\nareté\naretológia\naretuje\narg\nargalášsky\nargent\nArgent\nArgenta\nargentan\nArgentína\nArgentínca\nArgentínka\nargentínsky\nargentínsky\nargentit\nargentopyri\nargentum\nargilit\narginín\nargonaut\nArgonaut\nargón\nargónový\nArgos\nargot\nargotický\nargotmi\nargotový\nargumentácia\nargumentačne\nargumentačno\nargumentačný\nargument\nargumentmi\nargumentovaný\nargumentovať\nargus\nArgus\nargýria\nargyropyrit\narch\nárch\narchaeopteryx\narchaickosť\narchaicky\narchaický\narchaikum\narchaistický\narchaizmus\narchaizovaný\narchaizovať\narchangelika\narchangeľský\narchanjel\narchanjelský\narcha\narché\narcheografia\narcheol\narcheológ\narcheológia\narcheologicky\narcheologický\narcheologička\narcheomagnetický\narcheomagnetizmus\narcheopteryx\narchetypálny\narchetyp\narcheus\narchijerej\narchimandrita\nArchimedes\narchimedovský\narchipel\narchipelág\narchit\narchitekt\narchitektiek\narchitektka\narchitektonicky\narchitektonický\narchitektonika\narchitektúr\narchitektúrach\narchitektúram\narchitektúra\narchitráv\narchivácia\narchivačný\narchiválie\narchiválií\narchiválny\narchivár\narchivárka\narchivársky\narchivárstvo\narchív\narchíve\narchivistika\narchívnický\narchívnictvo\narchívny\narchivolta\narchivovanie\narchivovaný\narchivovať\narchoch\narchom\narchón\narchont\narchov\narí\nAriadna\nAriadnino\narianizmus\nariary\nária\nariboflavinóza\nArica\nArická\naridita\naridizácia\naridný\narieta\nAriete\nárí\nárijec\nárijka\nárijský\náriový\naristia\naristokracia\naristokrat\naristokraticky\naristokratický\naristokratka\nAristotel\naristotelizmus\naristotelovec\naristotelovský\narit\naritmeticky\naritmetický\naritmetika\naritmogrif\naritmológia\naritmomantia\narivederči\narivizmus\narizácia\narizačných\narizátor\narizátorov\nArizona\narizonský\narizovali\narizovaného\narizovať\nár\narkád\narkádach\narkádam\narkáda\nArkádia\nArkádii\narkádový\narkánum\narkebuza\narkebúza\narkier\narkiermi\narkierový\nArkom\narkticky\narktický\nArktída\narkus\narmád\narmádach\narmádam\narmáda\narmádny\nArmageddon\narmara\narmatúr\narmatúrach\narmatúram\narmatúra\narmatúrový\narmén\nArmén\nArména\narménčin\narménčinách\narménčinám\narménčinami\narménčina\nArméni\nArménia\nArménie\nArménii\narmenistika\narmenit\nArménka\nArménmi\nArménom\nArménov\nArménsko\narménsky\narménsky\nármi\nArmin\nArmina\nArminom\narmovacej\narmovací\narmovacia\narmovacie\narmovacích\narmovacími\narmovali\narmovaná\narmované\narmovanej\narmovaní\narmovanie\narmovaných\narmovaným\narmovať\nArmy\narnika\narnikový\nArnold\nArnoldovej\nArnutovce\nARO\narogancia\narogantne\narogantnosť\narogantný\narogovať\naróm\narómach\narómam\naromaterapia\naromatickosť\naromatický\naromatikum\naromatizácia\naromatizovaný\naromatizovať\naróma\nÁron\narondácia\nárový\narózia\nArpád\nArpádovcov\narpádovský\narrivederci\nars\nart\nArtD\nartdesign\nArte\nartefakt\nartefaktmi\narteficiálne\narteficiálnych\nArtel\nartela\narteranol\nartéria\nartériografia\narteriola\nartériosklerotický\nartérioskleróz\narterioskleróza\nartériosklerózach\nartériosklerózam\nartérioskleróza\nartériovenózny\nartériový\narteritída\narteterapia\nartézsky\nartézsky\nartézský\nArtfór\nArtfórach\nArtfóram\nArtfórum\nartičoka\nartificializmus\nartificiálny\nartikel\nartikla\nartiklami\nartikle\nartikli\nartikloch\nartiklom\nartiklov\nartiklu\nartikula\nartikulácia\nartikulačný\nartikulárne\nartikulárny\nartikul\nartikuloval\nartikulovala\nartikulovali\nartikulovalo\nartikulovane\nartikulovanie\nartikulovaním\nartikulovaný\nartikulovať\nartikuluj\nartikuluje\nartikulujem\nartikulujeme\nartikuluješ\nartikulujete\nartikulujme\nartikulujte\nartikulujú\nartikulujúc\nartikulujúci\nartiléria\nartilerista\nartileristický\nartista\nartistický\nartistika\nartistka\nartistný\nartizácia\nartizmus\nartmi\nartoch\nartom\nartotéka\nartov\nartový\nartralgia\nartritída\nartrografia\nartropatie\nartroskopia\nartróza\nartrózy\nartu\nArtúr\narty\naryl\narytmia\narytmický\narytmií\narzán\narzenál\narzenáli\narzenálmi\narzén\narzeničnan\narzenid\narzenik\narzenikový\narzenolit\narzénovo\narzenovodík\narzénový\narzia\nas\nAS\nasambláž\násana\nasanácia\nasanačne\nAsanačno\nasanačný\nasanovaná\nasanovane\nasanované\nasanovaní\nAsanovanie\nasanovaných\nasanovaným\nasanovať\nasasín\nascendencia\nascendent\nascendentný\nASCII\nAse\naseizmický\nasekurácia\nasekurovať\nasembler\nasentírka\nasepsa\nasepticky\naseptický\nasercia\nasertivita\nasertívnosť\nasertívny\nasertorický\nasesor\nasexuálny\nasfalt\nAsfaltéri\nasfaltérov\nasfaltérske\nasfaltérskej\nasfaltérskou\nasfaltiek\nasfaltka\nasfaltmi\nasfaltované\nasfaltovaní\nasfaltovania\nasfaltovanie\nasfaltovaním\nasfaltovaných\nasfaltovať\nasfaltovo\nasfaltový\nasférický\nasfyxia\nasi\nasiago\nasibilácia\nasibiláta\nasideróza\nasiento\nasignácia\nasignant\nasignát\nasignatár\nasignovanej\nasignovať\nasimilácia\nasimilačný\nasimilovane\nasimilovať\nasistencia\nasistenčný\nasistent\nasistentka\nAsistentova\nasistentove\nasistentovho\nasistentský\nasistoval\nasistovala\nasistovali\nasistovalo\nasistovaná\nasistovanej\nasistovanou\nasistovanú\nasistovať\nasistuj\nasistuje\nasistujem\nasistujeme\nasistuješ\nasistujete\nasistujme\nasistujte\nasistujú\nasistujúc\naskaridóza\naskéta\nasketickejší\nasketicky\nasketický\nasketička\nasketik\nasketizmus\naskétka\naskétmi\naskéz\naskézach\naskézam\naskéza\nasklepiad\nasklepiadín\nasklepiadský\nasklepieión\naskorbový\naskripcia\nAsmolova\nasocácia\nasociácia\nasociačný\nasociál\nasociálne\nasociálnosť\nasociálny\nasociatívne\nasociatívnosť\nasociatívny\nasociovanie\nasociovaný\nasociovať\nasoch\nAsom\nasomatický\nasomnia\nasonancia\nasonančný\nasortiment\nasov\nASP\nasparágmi\nasparágoch\nasparágom\nasparágov\nasparágu\nasparágus\nasparágy\naspartam\naspekcia\naspekt\naspektmi\naspektológia\nAspell\naspergilóza\naspermatizmus\naspermia\naspik\naspikový\naspirácia\naspiračný\naspiráta\naspirátor\naspirín\naspirínový\naspirovať\nasplikácií\naspoň\naspoňže\nASR\nassai\nassuta\nastát\nastáza\nastázia\nasténia\nastenický\nastenička\nastenik\nastenopia\nastenosféra\nastenospermia\nasteroid\nastí\nastiem\nastier\nastigmatický\nastigmatička\nastigmatik\nastigmatizmus\nastmatický\nastmatička\nastmatik\nastma\nasto\nastr\nastragal\nastrách\nastrachán\nAstrachán\nastrachanit\nAstrachánska\nAstrachánskeho\nAstrachánskej\nAstrachánskou\nAstrachánsku\nastrachánsky\nastrálny\nastrám\nastra\nAstrida\nAstride\nAstridu\nAstrina\nastrionika\nastro\nastroarcheológia\nastrobiológia\nastrocyt\nastrocytóm\nastrofia\nastrofix\nastrofóbia\nastrofotometria\nastrofyzický\nastrofyzika\nastrofyzik\nastrograf\nastrochémia\nastrokartografia\nastrol\nastroláb\nastrolábu\nastrolatria\nastrológ\nastrológia\nastrologický\nastrologička\nastromantia\nastromedicína\nastrometeorológia\nastrometria\nastron\nastronaut\nastronautický\nastronautika\nastronautka\nastronautov\nastronavigácia\nastronómami\nastronóm\nastronómi\nastronómia\nastronomicky\nastronomický\nastronómka\nastropsychológia\nastrový\nAstúria\nastúrsky\nAsu\nAsunción\nAsuncióne\nasunciónska\nasunciónsky\nasy\nasymetria\nasymetrickosť\nasymetricky\nasymetrický\nasymptomatický\nasymptota\nasymptotický\nasyndetický\nasyndeton\nasynchrónnosť\nasynchrónny\nAsýrčan\nAsýrčanka\nAsýria\nasýriológia\nasýrsky\nasystolia\naszu\nAš\našant\nAše\nAši\nAŠK\našpirácia\našpirant\našpirantka\našpirantský\našpirantúr\našpirantúrach\našpirantúram\našpirantúra\našpirovať\našram\našrama\našské\našského\našskej\našskí\našskom\nAšský\nAšu\nat\nAT\nata\nATA\natak\natakovania\natakovanie\natakovaním\natakovaniu\natakovaný\natakovať\nataman\natamanský\nataraktikum\nataraxia\nATARI\natašé\natavisticky\natavistický\natavizmus\nataxia\nATB\natď\nate\nateista\nateisticky\nateistický\nateistka\nateizmus\natelektáza\nateliér\nateliérmi\nateliérový\nateliéry\natematickosť\natematicky\natematický\natemporálnosť\natemporálny\natemticky\nAtén\nAténach\nAténam\nAténa\nAténčan\nAténčanka\naténsky\natentát\natentátmi\natentátnička\natentátnik\natenuácia\nAtény\natermický\nateróm\nateroskleróza\naterosklerózou\naterosklerózy\natestácia\natestačný\natest\natestovania\nAtestovanie\natestovaním\natestovaný\natestovať\natestový\natetéza\nAthos\natický\natičtina\natika\nAtika\nATIKA\natikový\natila\natitúda\natlant\nAtlant\nAtlanťan\nAtlanťanka\nAtlanta\natlantický\nAtlantíd\nAtlantída\nAtlantídam\nAtlantíde\nAtlantídou\nAtlantídu\nAtlantídy\nAtlantik\natlantský\natlas\nAtlas\nAtlasova\natlasový\natlét\natleticky\natletický\natletika\natlétka\nATM\nátman\natmosfér\natmosférach\natmosféram\natmosféra\natmosferický\natmosférický\natmosferílie\natol\nAtol\natole\natoloch\natomária\natomárny\natóm\natomický\natomista\natomisticky\natomistický\natomistika\natómium\natomizácia\natomizačný\natomizér\natomizmus\natomizoval\natomizovala\natomizovali\natomizovalo\nAtomizovalo\natomizovania\natomizovanie\natomizovaniu\natomizovaný\natomizovať\natomizuj\natomizuje\natomizujem\natomizujeme\natomizuješ\natomizujete\natomizujme\natomizujte\natomizujú\natomizujúc\natómove\natómovo\natómový\natonalita\natonálny\natónia\natopia\natou\natoxický\natp\nATP\natrakcia\nAtrakčný\natraktant\natraktivita\natraktívnosť\natraktívny\natraktor\natrament\natramentmi\natramentový\natráp\natrapa\natrézia\natri\natribúcia\natribút\natributívny\natribútmi\natribútový\natrichia\nátriový\nátrium\natrofia\natrofický\natrofovaním\natrofovať\natropín\natropínový\nATS\nattachment\natto\natu\nATU\naty\natymia\natypickosť\natypicky\natypický\natyreóza\nau\nAU\naucklandskom\nAUD\naudiálne\naudiálnej\naudiálnych\naudícia\naudiencia\naudienčný\naudio\naudiofón\naudiofonický\naudiofrekvencia\naudiokazeta\naudiológia\naudiometer\naudiometra\naudiometri\naudiometria\naudiometriu\naudioštúdio\naudiotechnika\naudiotex\naudiovízia\naudiovizuálny\naudit\nauditívny\nauditmi\naudítor\nauditórium\naudítorka\naudítormi\naudítorovho\naudítorský\nauditovaný\nauditovať\nauditový\naug\naugelit\naugiášovský\naugit\naugmentácia\naugmentatív\naugmentatívach\naugmentatívam\naugmentatívny\naugmentatívum\naugsburský\naugur\naugurov\naugust\nAugustin\nAugustina\nAugustín\nAugustine\nAugustini\naugustinizmus\nAugustino\nAugustinom\nAugustínovej\nAugustove\nAugustovi\naugustovo\naugustový\naugustus\naukcia\naukcionár\naukcionára\nAukcionári\naukcionármi\naukcionárov\naukčný\naukuba\naul\nául\naula\nAulický\nAulin\nAur\naura\nAurel\nAurélia\naureola\naureomycín\naurí\naurikula\naurit\nAurora\nAuróra\nAuroru\nAurory\nAuróry\naurum\nAurum\nausgerechnet\nauskultácia\nauslág\nauslender\nauspície\nauspicum\nAustálčan\naustenit\naustenitizácia\naustinit\naustr\naustrál\nAustrálčan\nAustrálčanka\nAustrália\naustralopitek\nAustralská\naustrálsky\naustrálsky\naustrofil\naustromarxizmus\naustronéz\naustroslavistický\naustroslavizmus\naušus\naušusový\náut\nautarchia\nautarkie\nautarkiu\nautarkný\nautarktický\nautarktný\naut\nautekológia\nautenticita\nautentickosť\nautenticky\nautentický\nautentičnosť\nautentičnosti\nautentifikácia\nautentifikačný\nautentifikovať\nautentika\nautentizované\nautentizovať\nautiak\nautiakov\nautičkár\nautíčko\nautistický\nautizmus\nautmi\nautoagresia\nautoakuzácia\nautoalarm\nautoanalýza\nautoantén\nautoantény\nautoatlas\nautobatéria\nautobazár\nautobazármi\nautobiografia\nautobiograficky\nautobiografický\nautoblok\nautoblokom\nautobloku\nautobusa\nautobusami\nautobusár\nautobus\nautobusový\nautocamping\nautocenzúr\nautocenzúrach\nautocenzúram\nautocenzúra\nautocisterien\nautocisternách\nautocisternami\nautocisterne\nautocisternou\nautocisternu\nautocisterny\nautodafé\nAutodesk\nautodeštrukcia\nautodetekcia\nautodidakt\nautodidakta\nautodidaktický\nautodidaxia\nautodielňach\nautodielňam\nautodielňa\nautodielní\nautodopráv\nautodoprava\nautodopravca\nautodopravcami\nautodopravcom\nautodopravcov\nautodopravcovia\nautodopravcu\nautodráh\nautodráhe\nautodráhou\nautodráhy\nAutodrom\nautodróm\nautodrome\nAutodromu\nautoerotika\nautoerotizmus\nautofokus\nautofónia\nautogamia\nautogén\nautogenéza\nautogénny\nautogónia\nautograf\nautografia\nautogram\nautogramiád\nautogramiádach\nautogramiádam\nautogramiáda\nautogyro\nautohavária\nautohaváriách\nautohavárie\nautohavárii\nautohavárií\nautohaváriou\nautohaváriu\nautohypnóza\nautochória\nautochróm\nautochton\nautochtón\nautochtonizmus\nautochtónnosť\nautochtónny\nautointoxikácia\nautoka\nautokar\nautokarový\nautokefália\nautokemping\nautokempingmi\nautokempingoch\nautokempingom\nautokempingov\nautokempingu\nautokempingy\nautokinetický\nautokláv\nautokláve\nautoklávoch\nautoklávy\nAutoklub\nAutoklube\nAutoklubom\nAutoklubu\nautokluby\nautokód\nautokolimácia\nautokolón\nautokolónach\nautokolónam\nautokolóna\nautokorelácia\nautokozmetika\nautokracia\nautokrat\nautokraticky\nautokratický\nautokritika\nautokros\nautolakov\nautolaky\nautologický\nautolýza\nauto\nautomáp\nautomapa\nautomasá\nautomat\nautomatickosť\nautomaticky\nautomatický\nautomatika\nautomatizácia\nautomatizačno\nautomatizačný\nautomatizmus\nautomatizovane\nautomatizovanie\nautomatizovaný\nautomatizovať\nautomatmi\nautomatový\nautomechanický\nautomechanik\nautomézia\nautomobil\nautomobilista\nautomobilistický\nautomobilistka\nAutomobilizácia\nautomobilizácie\nautomobilizácii\nautomobilizmus\nautomobilka\nautomobilmi\nautomobilovo\nautomobilový\nautomodelárstvo\nautomotoklub\nautomutilácia\nautonehoda\nautonómia\nautonomista\nautonomistický\nautonomistka\nautonomizmus\nautonómnosť\nautonómny\nautonym\nautoopravovňa\nautoopravovní\nautopark\nautoparkom\nautoparkov\nautoparku\nautopilot\nautoportrét\nautoportrétmi\nautopsia\nautorádií\nautorádiografia\nautorádio\nautor\nautoreferát\nautoreferenta\nautoregulácia\nautorelaxácia\nautoremedúra\nautoreprodukcia\nautoreverz\nautoritár\nautoritársky\nautoritárstva\nautoritárstvo\nautoritárstvu\nautoritatívne\nautoritatívnosť\nautoritatívny\nautoritatizmus\nautorita\nautorizácia\nautorizačne\nautorizačný\nautorizovania\nautorizovanie\nautorizovaný\nautorizovať\nautorka\nautorkine\nautorkinho\nautorkino\nautormi\nautorotácia\nautorov\nautorskoprávny\nautorsky\nautorský\nautorstvo\nautosalón\nautosémantický\nautoservis\nautoservisový\nautostabilizácia\nautostabilný\nautostimulácia\nautostop\nautostrád\nautostrádach\nautostrádam\nautostráda\nautostrádny\nautostrádový\nautosúčiastok\nautosugescia\nautosugestívny\nautošampón\nautošampóny\nautoškola\nautoštylizácia\nautotachygraf\nautotaxi\nautoterapia\nautotransfúzia\nautotrofia\nautotyp\nAutotyp\nautotypia\nautotypický\nautovakcín\nautovakcínach\nautovakcínam\nautovakcína\nautovo\nautový\nautoznačiek\nautoznačku\nautoznačky\nautozóm\nautožeriav\nautunit\nauxanometer\nauxiliárny\nauxín\navadána\naval\nAvala\navalát\navalista\navalistami\navalistom\navalistovi\navalistu\navalmi\navalom\navalov\navalovej\navalovi\navansovať\navantgarda\navantgardista\navantgardistický\navantgardne\navantgardný\navanti\navantúra\navanturista\navanturisticky\navanturistický\navanturizmus\navar\nAvar\nAvarka\navarský\nave\nAve\navenue\naverz\naverzia\naverzný\nAvesta\naviatický\naviatik\naviatika\naviatike\naviatiky\navicennit\navifauna\navigácia\navikultúra\navion\navión\navionika\naviril\navirulencia\navitaminóz\navitaminózach\navitaminózam\navitaminóza\navitaminózny\navivážach\navivážam\naviváž\navivážny\navíz\navízach\navízam\navízo\navizovania\navizovanie\navizovaním\navizovaniu\navizovaný\navizovať\navízový\navoár\navoáry\navogadrit\navoiry\navokád\navokádach\navokádam\navokádo\navokádový\navšak\naward\naxel\nAxelovi\naxely\naxiálny\naxila\naxiológia\naxiómach\naxiómam\naxiomatický\naxiomatika\naxióma\naxióm\naxon\naxonometria\naxoplazma\nazalka\nazalkový\nazaňád\nazaňát\nazaňďalát\nazapád\nazbest\nazbestmi\nazbestocement\nazbestocementmi\nazbestocementový\nazbestove\nazbestovo\nazbestovocementový\nazbestový\nazbestózu\nazbuka\nazbukový\nazda\nazdaže\nazeotropia\nazerb\nAzerbajdžan\nazerbajdžansko\nazerbajdžansky\nazerbajdžánsky\nazerbajdžanský\naziat\nAziat\naziatkách\naziatkám\naziatka\naziatsky\naziatskými\naziatsky\nÁzia\názij\nÁzijčan\nÁzijčanka\nÁzijec\nÁzijka\názijsky\názijský\nazimut\nazimutmi\nazoický\nazoikum\nazonálny\nazoospermia\nAzor\nazorský\nAzory\nazospermia\nazotúria\nAzov\nAzove\nAzovská\nAzovské\nAzovského\nazovskej\nAzovskom\nazul\nazulén\nazúr\nazuri\nAzurit\nAzuritom\nAzuritu\nazúrovo\nazúrový\nazylant\nazylantka\nazyl\nazylmi\nazylový\naž\nažaž\naž-až\nážia\nážio\nážiom\nažiotáž\nažiotér\nážiový\nážiu\nažúrach\nažúram\nažúra\nažúr\nažurita\nažúrka\nažúrovať\nažúrový\nb\nB\nba\nBA\nBaal\nBAB\nbábä\nbábach\nbábam\nbábänce\nbábät\nbábätiek\nbábätko\nbaba\nbába\nBábel\nBábelu\nbábencami\nbábence\nbábencoch\nbábencom\nbábeniec\nBabeta\nBabetách\nBabete\nBabetou\nBabetu\nBabety\nbabezióza\nbabi\nbabica\nbabička\nBabičkina\nbabičkine\nbabičkinej\nbabičkinho\nBabičkinu\nbabier\nBabiet\nbabí\nbábik\nbábika\nBabin\nBabín\nbabina\nBabinca\nBabindol\nBabinec\nBabinej\nBabinský\nbabirusa\nbabísk\nbabisko\nBabiše\nbábizmus\nbabizňa\nbabizní\nbábkar\nbábkár\nbábkarka\nbábkarsky\nbábkarský\nbábkársky\nbábkarstvo\nbabka\nbábka\nbabkin\nbábkoherec\nbábkohereckú\nbábkoherectvo\nbábkový\nbabôčka\nbabohorský\nbábo\nbabôn\nbabonársky\nbabona\nbábovka\nbábovkový\nbábovnica\nbábovnička\nbabrácky\nbabráctvach\nbabráctvam\nbabráctvo\nbabračka\nbabrák\nbabraňa\nbabraní\nbabranica\nbabranie\nbabranina\nbabrať\nbabravo\nbabravý\nbabra\nbabrem\nbabreme\nbabreš\nbabrete\nbabri\nbabrime\nbabrite\nbabroš\nbabroška\nbabrú\nbabrúc\nbabsky\nbábsky\nbabský\nbabuľa\nBabulicová\nbabuľka\nbaburiatko\nbaburiatok\nBabuša\nbabušiť\nBabuška\nbaby\nbabylon\nBabylonca\nBabylonci\nBabylončan\nBabylončanka\nBabylónii\nbabylónskej\nbabylonský\nbac\nbác\nbacať\nbaccarat\nbací\nbacia\nbacila\nbacil\nbacilmi\nbacilofóbia\nbacilonosič\nbacilonosiče\nbacilonosička\nbacilonosičstvo\nbacilový\nbacíte\nback\nbackhand\nbackup\nbacnúť\nbacon\nBacúch\nBacúcha\nBacúchu\nbacuľatý\nBacúrov\nBáč\nBáča\nbača\nbáči\nbáčik\nbáčinko\nbáčino\nBáčka\nbačkora\nBačkov\nBačkovík\nBačkovský\nBačová\nbačovaní\nbačovania\nbačovanie\nbačovaním\nbačovaniu\nbačovať\nbačovka\nbačovňa\nbačovský\nbačovstvo\nbačov\nBáčskeho\nBáčskom\nbáčsky\nbádajúceho\nBaďan\nbádanie\nbadaný\nbádateľ\nbádateľka\nbadateľne\nbadateľný\nbádateľsky\nbadateľský\nbádateľský\nbadať\nbádať\nbádavo\nbádavosť\nbádavý\nbaden\nBaden\nBadene\nBadenskom\nBadenu\nbadge\nBadín\nBadína\nbadinage\nbadináž\nBadíne\nBadínom\nBadínska\nBadínskemu\nBadínsky\nbadínskych\nbadká\nbadkaj\nbadkajme\nbadkajte\nbadkajú\nbadkajúc\nbadkal\nbadkala\nbadkali\nbadkalo\nbadkám\nbadkáme\nbadkáš\nbadkať\nbadkáte\nbadlans\nbadminton\nbadúriť\nbadurká\nbadurkaj\nbadurkajme\nbadurkajte\nbadurkajú\nbadurkajúc\nbadurkal\nbadurkala\nbadurkali\nbadurkalo\nbadurkám\nbadurkáme\nbadurkáš\nbadurkať\nbadurkáte\nbadyán\nbadzgať\nbadzgovať\nbaf\nbafať\nbafe\nbafkanie\nbafkať\nbafmi\nbafnutie\nbafnúť\nbafoch\nbafom\nbafov\nbafu\nbafy\nbaganča\nbagančí\nbagandža\nbagandží\nbagasa\nbagatelizovaný\nbagatelizovať\nbagateľ\nbagateľmi\nbagateľný\nbagateľoch\nbagateľom\nbagateľov\nbagateľu\nbagážach\nbagážam\nbagáž\nBagdad\nbagdadský\nbagdalín\nbágel\nbager\nbageta\nbagetka\nbagetový\nbago\nbagrista\nbagristka\nbagrovacia\nbagrovacie\nbagrovacích\nbagrovaciu\nbagrovania\nBagrovanie\nbagrovaním\nbagrovať\nbagrovísk\nbagrovisko\nbagún\nbagúnovi\nbahaí\nbaháizmus\nBahám\nBahamách\nBahamám\nBahamami\nBahamčan\nbahamsky\nbahamský\nBahamy\nBahančanka\nbahenný\nBahia\nbahien\nbahnatý\nbahni\nbahniatko\nbahniatok\nbahnica\nBahník\nBahníka\nbahnime\nbahnísk\nbahnisko\nbahnistý\nbahnite\nbahniť\nbahnitý\nbahnivý\nbahno\nbahnový\nBáhoňa\nBáhoni\nbahor\nBahrajn\nbahrajnský\nbaht\nbahurina\nbach\nbacha\nbachanta\nbachant\nbachantmi\nbachár\nbáchať\nbachnúť\nbachnutý\nBachom\nbachor\nBachorec\nbáchorky\nBachov\nBachova\nBachovej\nBachovho\nBachovi\nbachráč\nbachráčik\nbachraňa\nbachráň\nbachraní\nbachráni\nbachratieť\nbachratosť\nbachratý\nbaissa\nbaj\nBaja\nbajadéra\nBajan\nBajana\nBajanom\nBajanov\nBajanova\nBajanovi\nBajanových\nBajany\nBajč\nbáj\nbáječne\nbáječný\nBajerov\nBajerova\nBaji\nbájim\nbájiť\nBajka\nbajkalský\nbájkar\nbájkár\nbájkarský\nbájka\nBajkonur\nBajkonure\nBajkonuru\nbájkovitý\nbájkový\nBajku\nbájme\nbájny\nbajoneta\nbajonet\nbajonetový\nbájoslovie\nbájoslovný\nbájový\nBajtava\nbajt\nbajtmi\nbajtový\nbajzbalový\nbajzom\nBajzov\nbakalár\nbakalárka\nbakalársky\nbakalárstvo\nbakaný\nbakarat\nbakelit\nbakelitmi\nbakelitový\nbakchanáliách\nbakchanáliám\nbakchanáliami\nbakchanálie\nbakchanálií\nbakchantka\nbakchantský\nbakchický\nBakchovho\nBakchus\nbakláž\nbaklažán\nbaklažánový\nbakmi\nbákmi\nbakoch\nbákoch\nbakom\nbákom\nbakon\nbakov\nbákov\nbakšiša\nbakšiše\nbakšiši\nbakšiš\nbakšišmi\nbakšišoch\nbakšišom\nbakšišov\nbakšišu\nbakteriálny\nbaktéria\nbaktericíd\nbaktericidita\nbaktericídny\nbakteriémia\nbakteriofág\nbakteriofóbia\nbakteriológ\nbakteriológia\nbakteriologicky\nbakteriologický\nbakteriologička\nbakteriolyzín\nbakteriostatický\nbakteriostatikum\nbakteriostáza\nbakterioterapia\nbaktériový\nbakterióz\nbakterióza\nbakteriózami\nbakteriúria\nbakterizácia\nbakterológia\nBaku\nbakuľa\nbakuský\nbaky\nbáky\nbalada\nbaladickosť\nbaladicky\nbaladický\nbaladik\nbaladika\nBaladin\nbaláchanie\nbaláchať\nbalalajka\nbalalajkový\nbalamút\nbalamuta\nbalamutenia\nbalamutenie\nbalamutiť\nbalanitíd\nbalans\nbalanse\nbalansom\nbalansovania\nbalansovanie\nbalansovaním\nbalansovaniu\nbalansovaný\nbalansovať\nbalansu\nbalast\nbalastmi\nbalastný\nBalát\nbalata\nBalaton\nbalatonský\nBaláže\nBalážov\nbal\nbál\nbalboa\nbalbuties\nbalbutik\nbalbutizmus\nbaldachýn\nbaldachýnový\nbaldovského\nbaldovskom\nBaldovský\nbaldrián\nBaleárach\nBaleárske\nbaleárskej\nBaleárskych\nBaleáry\nbalenie\nbalený\nbalerín\nbalerínach\nbalerínam\nbalerína\nbalet\nbaletka\nbaletník\nbaletný\nBali\nbaliaci\nbaliareň\nbaliarňach\nBaliarňach\nbaliarňam\nbalič\nbalíček\nbalíčka\nbalíčkami\nbalička\nbalíčkoch\nbalíčkom\nbalíčkov\nbalíčkovací\nBalíčkovanie\nbalíčkovaním\nbalíčkovaný\nbalíčkovať\nbalíčkový\nbalíčku\nbalíčky\nbalijský\nbalík\nbalíkový\nbalisáž\nbalista\nBalistici\nbalistickejší\nbalistický\nbalistik\nbalistika\nbalistikov\nbalisty\nbaliť\nBalkán\nbalkanistika\nbalkanizácia\nbalkanizačný\nbalkanizmus\nbalkanizovať\nbalkanizuje\nbalkánsky\nbalka\nbalkón\nbalkónik\nbalkónový\nball\nBallu\nBally\nbalmi\nbálmi\nbalnárka\nbalné\nbalného\nbalnému\nbalneo\nbalneografia\nbalneológ\nbalneológia\nBalneologicky\nbalneologický\nbalneológov\nbalneotechnika\nbalneotechnikov\nbalneotechniky\nbalneoterapeutický\nbalneoterapia\nbalným\nBaloň\nbalón\nbaloniak\nbalónik\nbalonistika\nbalónový\nbalotáž\nbalotína\nbalotinovanie\nbálový\nbalt\nBalt\nbaltický\nBaltik\nBaltiku\nBaltiky\nbaltimorskej\nbaltimorskí\nbaltimorskú\nbaltista\nbaltistika\nBaltkom\nBaltom\nbaltský\nBaltu\nbalustráda\nbalustrádový\nbalušiť\nbalušivý\nbalvan\nbalvanovitý\nbalza\nBalza\nbalzám\nbalzam\nbalzamovači\nbalzamovanie\nbalzamovať\nbalzamový\nbam\nbamacký\nBamako\nbambino\nbambitka\nbambolo\nbambuch\nbambusa\nbambus\nBambusiek\nbambuska\nBambusky\nbambusový\nban\nbáňach\nbanalita\nbanalizácie\nbanalizujú\nbanálne\nbanálnejšíF\nbanálnosť\nbanálny\nbáňam\nbanán\nbanánik\nbanánky\nbanánovník\nbanánový\nbaňato\nBanátom\nbaňatosť\nbaňatosť\nbaňatý\nbaňa\nbanauzický\nbán\nbáňD\nbánd\nbandalír\nbandaska\nbanda\nbandážach\nbandážam\nbandáž\nbandážistika\nbandážne\nbandážneho\nbanderila\nbanderovec\nbandita\nbanditizmom\nbanditizmu\nbanditizmus\nbanditmi\nbanditstvo\nBandung\nBandúr\nbandura\nBandura\nBanduru\nBang\nBangkok\nBangladéša\nBangladéšan\nBangladéšanka\nBangladéši\nBangladéš\nBangladéšom\nbangladéšsky\nBangladéšu\nbaní\nbanícky\nbaníctvach\nbaníctvam\nbaníctvo\nbaníčiť\nbaniek\nbaník\nBaníkova\nBaníkovej\nbanjalucký\nbanjí\nbanjo\nbánk\nbankár\nbankárova\nbankárovho\nbankárových\nbankársky\nbanka\nbank\nbanket\nbanketový\nbanking\nBanknote\nbankokracia\nbankomat\nbankomate\nbankomatový\nbankomatu\nbankomaty\nBankove\nbankovka\nbankovkový\nbankovníctvach\nbankovníctvam\nbankovníctvo\nbankovo\nbankový\nbankrotár\nbankrotára\nbankrotári\nbankrotármi\nbankrotárom\nbankrotárov\nbankrot\nbankrotmi\nbankrotovaného\nbankrotovania\nbankrotovaných\nbankrotovať\nbankrotový\nbanon\nBánova\nBánová\nbanovať\nBánove\nBánovej\nBánovo\nbánovská\nbánovské\nbánovského\nbánovskej\nbánovskí\nbánovskom\nbánovskou\nbánovskú\nbánovských\nbánovským\nBánovský\nbanskobystrický\nBanskobystričan\nBanskobystričanka\nbanskoštiavnicky\nbanskoštiavnický\nbansky\nbanský\nbant\nbantam\nbantamka\nbantovať\nBantuské\nbantustan\nbánu\nbáňu\nbány\nbaobab\nbaptista\nbaptistérium\nbaptistický\nbaptistka\nbaptizmus\nbár\nBara\nBára\nbarabizňa\nbarabizne\nbarabizni\nBarabizní\nbarabizňu\nbarackovica\nBarách\nBarák\nBaráka\nbarak\nbárako\nBarákom\nBarakove\nbarakový\nbarakud\nbaráky\nbáraký\nbarala\nbaran\nbaranca\nBaranca\nbarancami\nbarance\nbarancoch\nbarancom\nbarancov\nbarancovi\nbaranča\nbaranček\nbarančekovi\nbarančiat\nbarančí\nbarančina\nbarančinový\nbarane\nbaranec\nbaranica\nbaranidlo\nbaraní\nbaranina\nbaraninka\nbaránka\nbaránkami\nbaránkoch\nbaránkom\nbaránkovia\nbaránkov\nbaránky\nbaránok\nbaraňom\nbaraňou\nBaranovej\nbaranovu\nBaranových\nbaranu\nbarany\nbárať\nbarážach\nbarážam\nbaráž\nbarážový\nbar\nBarbados\nbarbakan\nbarbar\nbarbarka\nbarbarskosť\nbarbarsky\nbarbarský\nbarbarstvo\nbarbecue\nbarbie\nbarbina\nbarbitalizmus\nbarbiturát\nBarbôr\nBarboráš\nBarborášom\nBarbora\nBarborka\nBarbuda\nBarca\nBarce\nBarcelona\nbarcelonský\nBarci\nbárčím\nbárčo\nbárčoho\nbárčom\nbárčomu\nbard\nBardejov\nbardejovský\nBardoňova\nBardoňove\nBardoňovo\nbardoňovskom\nbarel\nbarelmi\nbaret\nbaretka\nbaréž\nbargain\nbarches\nbarchet\nbarchetový\nBari\nbaribal\nBarica\nbarický\nbariel\nbariér\nbariérach\nbariéram\nbariéra\nbariérový\nbarikád\nbarikádach\nbarikádam\nbarikáda\nbarikádnik\nbarikádový\nBarilla\nBarillou\nBarillu\nBarilly\nbarinastý\nbarinatý\nbarina\nbarinný\nbarióny\nbárišní\nbárium\nBark\nBarka\nbárkade\nbarkarola\nbarkasa\nbárka\nbárkde\nbárkedy\nBarko\nbárkoho\nbárkoľko\nbárkom\nbárkomu\nbárkot\nBarkov\nbárkto\nbarkuna\nbárkým\nbarla\nbarlí\nbarlička\nBarma\nbarman\nbarmanka\nbarmanský\nBarme\nBarmu\nBarmy\nBarnabáš\nbarnabitka\nbarnavo\nbarnavý\nBarnu\nbarnumský\nBarny\nbarograf\nbarok\nbarokizácia\nbaroko\nbarokovo\nbarokový\nbarometer\nbarometria\nbarometrický\nbarón\nbarones\nbaronesa\nbaronet\nbaronetka\nbaróni\nbarónka\nbarónkin\nbarónovej\nbarónovi\nbarónsky\nbaroreceptor\nbarotraum\nbarovo\nbarový\nbarrandien\nbárs\nbársaj\nbársako\nbársaký\nbársčím\nbársčo\nbársčoho\nbársčom\nbársčomu\nbárskade\nbárskde\nbárskedy\nbárskoho\nbárskoľko\nbárskom\nbárskomu\nbárskto\nbárským\nbartera\nbarter\nbarteri\nbarterový\nBartolom\nBartolomej\nbartolomejský\nBartoš\nBartoša\nBartošom\nBartošova\nBartošovej\nBartošovi\nbarycentrický\nbaryón\nbaryony\nbáryový\nbarysféra\nbaryt\nbarytón\nbarytóni\nbarytonista\nbarytónovi\nbarytónový\nbarytónsaxofón\nbarytovo\nbarytový\nbarzo\nbás\nbasa\nbas\nbasbarytón\nbasebal\nbaseball\nbaseballmi\nbaseballový\nbasebalmi\nbáseň\nbaset\nBASF\nbasgitara\nbasgitarista\nbasgitarový\nbasic\nBasic\nBasin\nbasista\nbasistka\nBask\nbaskerville\nbasketbal\nbasketbalista\nbasketbalistka\nbasketbalmi\nbasketbalový\nBaskicko\nbaskicky\nbaskický\nBaskička\nbaskičtina\nBaskitsky\nbaskitský\nbásňach\nbásňam\nbásnení\nbásnením\nbásnicky\nbásnický\nbásnictvo\nbásničkár\nbásnička\nbásnik\nbásnikov\nbásniť\nbasordyka\nbasorkáňoš\nbasový\nBasra\nbasreliéf\nbasreliéfový\nbasriansky\nbasta\nbastard\nbastarde\nbastardizácia\nbastardizácii\nbastardný\nbastardy\nbastila\nbastión\nbastonád\nbastriguli\nbaša\nbašibozuk\nbašovanie\nbašovať\nbášt\nbašta\nBaštínov\nbaštový\nbaštrngovať\nbatalión\nbatát\nbataty\nbatéria\nbatériový\nbaterka\nbaterkový\nbátí\nbatik\nbatikový\nbatist\nbatistmi\nbatistový\nbatizovská\nbatizovské\nbatizovského\nbatizovskí\nbaťko\nBatkov\nBaťkove\nBaťkovej\nbatofóbia\nbatoha\nbatoh\nbatoľa\nbatoliat\nbatoliatko\nbatoliatok\nbatolit\nbatoliť\nbatometer\nbaton\nBátorová\nBátorové\nBátorových\nbaťovský\nBátovský\nbatôžik\nbatožinári\nbatožina\nbatožinový\nbatôžka\nbatôžkami\nbatôžkoch\nbatôžkom\nbatôžkov\nbatôžku\nbatôžky\nbatôžok\nbatôžtek\nbatrachológia\nbáťuška\nbáť\nbatyál\nbatygrafia\nbatymeter\nbatymetria\nbatysféra\nbatyskaf\nbaud\nbauch\nbauxit\nbauxitmi\nbauxitovo\nbauxitový\nbáva\nbavenie\nbavievať\nbaviť\nbavkať\nbavĺn\nbavlnách\nbavlnám\nbavlnami\nbavlnár\nbavlnársky\nbavlnárstvach\nbavlnárstvam\nbavlnárstvo\nbavlna\nbavlneno\nbavlnený\nbavlník\nbavlníkový\nbavlnka\nBavor\nBavora\nBavoráci\nBavori\nBavorka\nBavorom\nBavorov\nBavorova\nBavorove\nBavorovi\nBavorsko\nBavorsky\nbavorský\nbáz\nbázach\nbazalka\nbazalkový\nbazálny\nbazalt\nbazaltový\nbázam\nbazára\nbazár\nbazáre\nbazári\nbazármi\nbazároch\nbazárom\nBazárom\nbazárov\nbazárový\nbazáru\nbazáry\nbaza\nbáza\nbazén\nbázeň\nbazénik\nbazénový\nbazicita\nbazicity\nbázicky\nbazický\nbázický\nBazileja\nBazilej\nBazilejom\nbazilejský\nbazilián\nbaziliánsky\nbazilika\nbazilikový\nbaziliškami\nbazilišok\nBazírovanie\nbazírovať\nbázňach\nbázňam\nbazofília\nbazový\nbázový\nbažanta\nbažant\nbažanti\nBažantica\nbažantí\nbažantmi\nbažantnica\nbažanťom\nbažanťou\nbažantovi\nbaže\nbaženie\nbažiaci\nbažinatý\nbažiť\nbaživosť\nbaživý\nbažný\nBB\nBBC\nBBS\nBc\nBC\nBCPB\nBCT\nbdejúc\nbdelejšíF\nbdelo\nbdelosť\nbdelý\nbdenie\nbdieť\nBe\nbé\nbeán\nbeánia\nBeát\nBeátach\nBeátam\nBeáta\nbeat\nbeatifikácia\nBeátina\nbeatman\nbeatmi\nbeatnik\nbeatová\nBeatrica\nBeatrice\nbeaufort\nbeaujolais\nBebrava\nBebravská\nBebravského\nBebravskej\nBeckov\nBeckova\nBeckove\nBeckovom\nbeckovskej\nbeckovských\nBeckovský\nbecquerela\nbecquerel\nbecquerelmi\nbeč\nbečať\nbečiaci\nbéčkar\nbéčka\nbéčko\nBečov\nBečove\nbečovskom\nBečva\nBečve\nBečvou\nBečvu\nBečvy\nbeda\nbedač\nbedačenia\nbedačiť\nbedákania\nbedákanie\nbedákať\nbedár\nbedárčiť\nbedáriť\nbedárka\nbedársky\nbedárstvach\nbedárstvam\nbedárstvo\nbedeker\nbedier\nbedľa\nbedlenie\nbedliaci\nbedliť\nbedlivo\nbedlivosť\nbedlivý\nbedminton\nbedmintonový\nbedňa\nbedne\nbedovanie\nbedovať\nbedrá\nbedro\nbedrovník\nbedrový\nbeduín\nbeduínsky\nbeebop\nbeefsteak\nbeezvýhľadný\nbefel\nbeg\nbeghard\nbegónia\nbegóniový\nbeha\nbehačka\nbehák\nbeháku\nbeháky\nbehaní\nbehania\nbehanie\nbehaním\nbehať\nbehávať\nbehaviorálny\nbehaviorista\nbehavioristický\nbehaviorizmus\nbeh\nbehom\nBehúl\nbehúľa\nBehúľa\nbehúle\nbehúľ\nBehúlom\nBehúľom\nbehúň\nbehúne\nbehúni\nbehúňovej\nbehúňovou\nbehúňových\nbehúňu\nBehynce\nBehynciach\nBecherov\nBecherova\nbecherovka\nbecherovská\nbechterev\nBEI\nBeire\nbej\nbejovia\nBejrút\nbejrútskeho\nbejrútskej\nbejrútskom\nBejrútskou\nbejrútsky\nbejú\nbejzbal\nbejzbalmi\nbejzbalový\nbek\nbekhend\nbekon\nBeky\nbel\nBel\nBelá\nBéla\nbelák\nbeláky\nbelami\nbelaňa\nbelaní\nbeláni\nBeláni\nbeláň\nbelaria\nbelasa\nbelasastý\nbelasejšej\nbelasejší\nbelasejšia\nbelasejšie\nbelasejšieho\nbelasejšiemu\nbelasejších\nbelasejším\nbelasejšími\nbelasejšiu\nbelasejšom\nbelasejšou\nbelasieť\nbelasisto\nbelasistý\nbelasiť\nbeláskavo\nbelaskavý\nbeláskavý\nbelásky\nbelaso\nbelások\nbelasooký\nbelasosť\nbelasozelený\nbelastý\nbelasý\nBelavie\nbelavo\nbelavosť\nbelavý\nbelčov\nbeľ\nBelehrad\nbelehradský\nbelej\nBelej\nbelejme\nbelejte\nbelejú\nbelejúc\nbelemnit\nbeletria\nbeletrista\nbeletristicky\nbeletristický\nbeletristka\nbeletrizovať\nBelfast\nbelfastský\nbelg\nBELGA\nBelge\nBelgia\nBelgicko\nbelgicky\nbelgický\nBelgie\nBelgii\nBelgií\nbeli\nBelianska\nBelianske\nBelianskeho\nBelianskej\nBelianskou\nBeliansky\nBelianskych\nBelianskymi\nbelica\nbelieť\nBelín\nBelina\nBelince\nBelino\nBelinského\nBelize\nbelizský\nbeliže\nbelkanto\nBelkin\nbelkoC\nbelkova\nBelkovej\nBelku\nbelky\nBell\nBella\nBelle\nbellevue\nBellu\nbeľmo\nBelo\nbeloch\nbelochova\nbelom\nbeloň\nbeloňa\nbelone\nbelorítka\nbelosť\nbelostne\nbelostnosivý\nbelostnosť\nbelostný\nbeloška\nbelošský\nbelota\nBelou\nBelova\nBelove\nBeloveža\nbelovi\nBelovo\nbelovom\nBelovou\nbelovým\nbelšej\nbelší\nbelšia\nbelšie\nbelšieho\nbelšiemu\nbelších\nbelším\nbelšími\nbelšiu\nbelšom\nbelšou\nBelu\nBelú\nBélu\nbeluga\nBelucha\nBeluj\nbeluša\nbeluše\nBeluše\nbeluš\nbelušmi\nbelušoch\nbelušom\nBelušou\nbelušov\nbelušovi\nBelušské\nbelušskej\nBelušských\nbelvedér\nbelvedéri\nBelvedérom\nbelvedérsky\nbelvica\nBely\nbelzebub\nbelzebuba\nbelzebubom\nBelža\nBelže\nBelži\nBelžou\nBelžu\nBeňadická\nBeňadickej\nBeňadik\nBeňadiková\nBeňadikovej\nBeňadiku\nBeňadovo\nBenátčan\nBenátčana\nBenátkach\nBenátky\nbenátsky\nbendží\nbendžo\nbene\nbenedikcia\nBenedikt\nBenedikta\nbenediktín\nbenediktínka\nbenediktínsky\nbenefície\nbenefícium\nbenefičný\nBenelux\nBeneluxe\nBeneluxom\nBeneluxu\nBenešov\nBenešova\nBenešove\nBenešovom\nbenešovský\nBenešovu\nbenevolencia\nbenevolentne\nbenevolentnosť\nbenevolentný\nbeng\nbengál\nbengálčin\nbengálčinách\nbengálčinám\nbengálčinami\nbengálčina\nbengáli\nbengálmi\nbengálsky\nbengálsky\nbench\nBenický\nBenigna\nbenignita\nbenígny\nbeniky\nBenin\nbenjamín\nBenjamín\nbenjamíni\nbenjamínka\nBenjamínkom\nBenkovský\nBeňovský\nbentá\nbentonit\nbentonitom\nbentonitov\nbentonitu\nbentonity\nbentos\nBeňuš\nBeňuša\nBeňuši\nBeňušu\nbenzedrín\nbenzén\nbenzénový\nbenzín\nbenzínka\nbenzínový\nbenzol\nbenzolový\nBeograd\nbeolovnatý\nberber\nberceuse\nBerehov\nBerehove\nBerehovo\nBerezine\nbergader\nBergama\nBergame\nBergamo\nbergamot\nBerchtesgadene\nberiel\nberkélium\nberla\nBerlin\nberlina\nBerlina\nBerlín\nBerline\nberlinetta\nberlínska\nberlínske\nberlínskeho\nberlínskej\nberlínskemu\nberlínski\nberlínskom\nberlínskou\nberlínsku\nberlínsky\nberlínskych\nberlínskym\nberlínskymi\nbermúd\nBermúd\nbermudách\nbermudám\nbermudami\nBermudami\nbermudový\nbermudský\nbermudy\nBernard\nBernardina\nbernardín\nBernardine\nbernardíni\nBernardino\nbernardínovi\nBernardove\nBernardovo\nBernardu\nBern\nBerno\nBernolákova\nbernolákovčín\nbernolákovčinách\nbernolákovčinám\nbernolákovčinami\nbernolákovčina\nBernolákove\nbernolákovec\nBernolákovo\nbernolákovský\nbernský\nberný\nBeroun\nBeroune\nBerounom\nberounská\nberounské\nberounského\nberounskej\nberounskom\nberounskou\nberounských\nBerounský\nBerounu\nBert\nberta\nBerta\nbertierit\nBertine\nBertini\nBertiných\nBertinými\nBertrand\nBertranda\nbertrandi\nBertrandom\nberúci\nberyl\nberýliový\nberylióza\nberýlium\nberylnatý\nberylový\nbes\nbeseda\nbesednica\nbesednicový\nbesedník\nbesedovať\nbesedujúci\nbesemerácia\nbesi\nbesiedka\nBeskýd\nBeskydami\nBeskydoch\nbeskydský\nBeskydy\nbesne\nbesnení\nbesnenia\nbesnenie\nbesni\nbesniaci\nbesniacu\nbesnica\nbesnieť\nbesnime\nbesnite\nbesniť\nbesno\nbesnota\nbesný\nbesovi\nbestiofília\nbestsellera\nbestseller\nbestselleri\nBeša\nbešamel\nbešamelmi\nBešeňov\nBešeňova\nBešeňová\nBešeňove\nBešeňovej\nBešeňovou\nbešeňovský\nBeši\nbeštialít\nbeštialita\nbeštiálne\nbeštiálnosť\nbeštiálny\nbeštia\nbeťaha\nbeťah\nbeťahovi\nbeťahovia\nbetaín\nbetaínu\nbeťár\nbeťárčiť\nbeťárky\nbeťársky\nbeťárstvach\nbeťárstvam\nbeťárstvo\nbetatrón\nbeta\nBetina\nBetka\nBetku\nbetla\nbetlehema\nBetlehema\nbetlehem\nBetlehem\nbetlehemca\nbetlehemcami\nbetlehemci\nbetlehemcoch\nbetlehemcom\nbetlehemcov\nbetlehemcovi\nBetlehemčan\nBetlehemčanka\nbetlehemček\nbetlehemec\nbetlehemský\nBetliar\nBetliara\nBetliari\nBetliarska\nBetliarskej\nBetliarsky\nbetonár\nbetonáreň\nbetonárka\nbetonárňach\nbetonárňam\nbetonársky\nbetonárstvo\nbetonáž\nbetonáže\nbetonáži\nbetonážou\nbetón\nbetónovacích\nbetónovanie\nbetónovaný\nbetónovať\nbetónovo\nbetónový\nBetuša\nbétyl\nbez\nbezalkoholický\nbezatomový\nbezatómový\nbezbariérovo\nbezbariérovosť\nbezbariérový\nbezbolestne\nbezbolestnosť\nbezbolestný\nbezbožne\nbezbožnícky\nbezbožník\nbezbožníkovho\nbezbožnosť\nbezbožný\nbezbranne\nbezbrannosť\nbezbranný\nbezbreho\nBezbrehosť\nbezbrehý\nbezcennosť\nbezcenný\nbezcieľne\nbezcieľnosť\nbezcieľny\nbezcitne\nbezcitník\nbezcitnosť\nbezcitný\nbezcolne\nbezcolný\nbezčíselným\nbezdaždivý\nbezdetnosť\nbezdetný\nbezdevízový\nbezdný\nbezdomovec\nbezdomovecký\nbezdomovectvo\nbezdomovkyňa\nbezdomovo\nbezdomovský\nbezdomovstvo\nbezdomový\nbezdôvodne\nbezdôvodnosť\nbezdôvodný\nbezdrevný\nbezdrôtovo\nbezdrôtový\nbezduchejšej\nbezduchejší\nbezduchejšia\nbezduchejšie\nbezduchejšieho\nbezduchejšiemu\nbezduchejších\nbezduchejším\nbezduchejšími\nbezduchejšiu\nbezduchejšom\nbezduchejšou\nbezducho\nbezduchosť\nbezduchý\nbezdušový\nbezemšon\nbezfarbý\nbezfarebne\nbezfarebnosť\nbezfarebný\nbezforemný\nbezhlasne\nbezhlasný\nbezhlasý\nbezhlavo\nbezhlavosť\nbezhlavý\nbezhlučný\nbezhotovostne\nbezhotovostný\nbezhranične\nbezhraničnosť\nbezhraničnosti\nbezhraničný\nbezhrmotne\nbezhrmotný\nbezhviezdnej\nbezcharakterne\nbezcharakternosť\nbezcharakterný\nbezcholesterolový\nbezchvostý\nbezchybne\nbezchybnosť\nbezchybný\nbezideovo\nbezideovosť\nbezideový\nbezjadrový\nbezkofeinový\nbezkonečný\nbezkonfliktnosť\nbezkonfliktnosti\nbezkonfliktovo\nbezkonfliktovosť\nbezkonfliktový\nbezkonkurenčne\nbezkonkurenčný\nbezkontaktný\nbezkoristný\nbezkrídly\nbezkrký\nbezkrvne\nbezkrvnosť\nbezkrvný\nbezkvetý\nbezlepkový\nbezletový\nbezlistý\nbezmajetný\nbezmála\nbezmäsitý\nbezmäsý\nbezmedzne\nbezmedznosť\nbezmedzný\nbezmenne\nbezmennosť\nbezmenný\nbezmerný\nbezmoci\nbezmocne\nbezmocne\nbezmocnosť\nbezmocný\nbezmotorový\nbezmračný\nbezmyšlienkovite\nbezmyšlienkovito\nbezmyšlienkovitosť\nbezmyšlienkovitý\nbezmyšlienkovo\nbezmyšlienkový\nbeznádej\nbeznádejne\nbeznádejnosť\nbeznádejný\nbeznájdený\nbeznáročný\nbeznohý\nbezo\nbezoblačne\nbezoblačno\nbezoblačnosť\nbezoblačný\nbezobsažne\nbezobsažno\nbezobsažnosť\nbezobsažný\nbezočivec\nbezočivo\nbezočivosť\nbezočivý\nbezodkladne\nbezodkladnosť\nbezodkladný\nbezodne\nbezodný\nbezodpadový\nbezodplatne\nbezodplatnosť\nbezodplatný\nbezodtokovými\nbezohľadne\nbezohladnej\nbezohľadnosť\nbezohladnou\nbezohľadný\nbezoký\nbezolovnatý\nbezosporu\nbezostený\nbezostyšne\nbezostyšnosť\nbezostyšný\nbezozvyšku\nbezpartajnosť\nbezpartajný\nbezpätkové\nbezpeč\nbezpečieN\nbezpečne\nbezpečnejší\nbezpečnosťN\nbezpečnostne\nbezpečnostno\nbezpečnostný\nbezpečný\nbezperspektívne\nbezperspektívnosť\nbezperspektívny\nbezplánovitým\nbezplánovitými\nbezplatne\nbezplatnosť\nbezplatnosti\nbezplatný\nbezpočetný\nbezpodmienečne\nbezpodmienečný\nbezpodstatne\nbezpodstatný\nbezpohlavnosť\nbezpohlavný\nbezpochyby\nbezporuchovo\nbezporuchovosť\nbezporuchový\nbezpracne\nbezprácne\nbezprácnosť\nbezpracný\nbezprácny\nbezprašne\nbezprašnosť\nbezprašný\nbezprávie\nbezprávne\nbezprávnosť\nbezprávny\nbezprecedentne\nbezprecedentný\nbezpredm\nbezpredmetne\nbezpredmetnosť\nbezpredmetný\nbezpríčinný\nbezpríkladne\nbezpríkladnosť\nbezpríkladný\nbezpríspevkový\nbezprístrešný\nbezpríznakovo\nbezpríznakovosť\nbezpríznakový\nbezprizorne\nbezprizornosť\nbezprizorný\nbezprízorný\nbezproblémovo\nbezproblémovosť\nbezproblémovosti\nbezproblémovosťou\nbezproblémový\nbezprogramovému\nbezprogramoví\nbezprogramovú\nbezprostredne\nbezprostrednosť\nbezprostredný\nbezprstý\nbezpultový\nbezradne\nbezradnosť\nbezradný\nbezriziková\nbezrodový\nbezrohý\nbezruký\nbezsenne\nbezsennosť\nbezsenný\nbezslnečný\nbezslovný\nbezstarostne\nbezstarostnosť\nbezstarostný\nbezstavovec\nbezstratovosť\nbezstratový\nbezstupový\nbezstykovej\nbezšvíkový\nbezšvový\nbeztak\nbeztelesný\nbeztho\nbeztiažový\nbeztlakový\nbeztoho\nbeztresne\nbeztrestne\nbeztrestnosť\nbeztrestný\nbeztriedny\nbeztvárne\nbeztvárnosť\nbeztvárny\nbeztvaro\nbeztvarosť\nbeztvarý\nbezúčelne\nbezúčelnosť\nbezúčelný\nbezúčinne\nbezúčinný\nbezúhonne\nbezúhonnejší\nbezúhonnosť\nbezúhonný\nbezuchý\nbezúročne\nbezúročný\nbezúspešne\nbezúspešnosť\nbezúspešný\nbezútešne\nbezútešnosť\nbezútešný\nbezuzdne\nbezuzdnosť\nbezuzdný\nbezvadne\nbezvadný\nbezváhový\nbezvedomie\nbezvedomý\nbezverec\nbezverectvo\nbezveternosť\nbezveterný\nbezvetrie\nbezvízovo\nbezvízový\nbezvládie\nbezvládne\nbezvládnosť\nbezvládny\nbezvlasý\nbezvodný\nbezvodý\nbezvýhľadne\nbezvýhľadnosť\nbezvýhľadný\nbezvýhradne\nbezvýhradnosť\nbezvýhradný\nbezvýchodiskovo\nbezvýchodiskovosť\nbezvýchodiskový\nbezvýchodne\nbezvýchodnosť\nbezvýchodný\nbezvýnimočne\nbezvýnimočnosť\nbezvýnimočný\nbezvýrazne\nbezvýraznosť\nbezvýrazný\nbezvýsledne\nbezvýslednosť\nbezvýsledný\nbezvýznamne\nbezvýznamnosť\nbezvýznamný\nbezzákladne\nbezzákladný\nbezzákonnosť\nbezzákonný\nbezzásadovo\nbezzásadovosť\nbezzásadový\nbezzemka\nbezzemkami\nbezzemkoch\nbezzemkom\nbezzemkov\nbezzemkovi\nbezzemok\nbezzištný\nbezzmyselný\nbezzrážkový\nbezzubo\nbezzubosť\nbezzubý\nbezzvučne\nbezzvučný\nbezženstvo\nbezživotný\nbežaný\nbežať\nbežce\nbežcu\nbežec\nbežecký\nbežiaci\nbežiačky\nbežkár\nbežkárka\nbežkársky\nbežkárstvach\nbežkárstvam\nbežkárstvo\nbežkať\nbežka\nbežkom\nbežkoval\nbežkovala\nbežkovali\nbežkovalo\nbežkovať\nbežkuj\nbežkuje\nbežkujem\nbežkujeme\nbežkuješ\nbežkujete\nbežkujme\nbežkujte\nbežkujú\nbežkujúc\nbežkyňa\nbežne\nbežnejší\nBežník\nbežníku\nbežno\nbežnosť\nbežný\nBežovce\nbéžovo\nbéžový\nBFZ\nbhakti\nbhikh\nBhután\nBhutánčan\nBhutánčanka\nbhutánsky\nBhutánsky\nBialystok\nBialystoku\nbianco\nbianko\nbiankooferta\nbiatek\nbiatlon\nbiatlonista\nbiatlonistka\nbiatlonový\nbibas\nbibelot\nBibián\nBibiana\nBibiánach\nBibiánam\nBibiána\nbibl\nbiblia\nbiblicizmus\nbiblickosť\nbiblicky\nbiblický\nbibličtín\nbibličtinách\nbibličtinám\nbibličtinami\nbibličtina\nbiblio\nbibliobus\nbibliofil\nbibliofili\nbibliofília\nbibliofilský\nbibliofilstvo\nbibliofób\nbibliograf\nbibliografia\nbibliograficky\nbibliografický\nbibliografka\nbibliológia\nbibliománia\nbibliomantia\nbibliopedagogika\nbibliopsychológia\nbiblioték\nbibliotékach\nbibliotékam\nbibliotekár\nbibliotekárka\nbibliotekársky\nbibliotéka\nbiblioterapia\nbibret\nbicefalus\nbicepsami\nbiceps\nbicepsový\nbicie\nbicí\nbicykel\nbicykla\nbicyklami\nbicykle\nbicyklebal\nbicyklebalista\nbicyklebalmi\nbicyklebalový\nbicykli\nbicyklíka\nbicyklíkov\nbicyklista\nbicyklistka\nbicykloch\nbicyklom\nbicyklov\nbicyklovaní\nbicyklovanie\nbicyklovaním\nbicyklovaniu\nbicyklovať\nbicyklový\nbicyklu\nbičík\nbičíkovce\nbičíkovec\nbičísk\nbičisko\nbič\nbičovanie\nbičovaný\nbičovať\nbičový\nbidet\nBidet\nbidetom\nbidetov\nbidetu\nbidety\nbidielko\nbidlo\nbidon\nBidovský\nbied\nbieda\nbiedermeier\nbiedermeiermi\nbiedermeierovský\nbiedermeiery\nbiediť\nbiedne\nbiednejší\nbiednosť\nbiedny\nBiel\nbielená\nbielené\nbieleného\nbielenej\nbielení\nbielenia\nbielenie\nbielenou\nbielenú\nbielených\nbieleným\nbielenými\nBielený\nbieliace\nbieliaci\nbieliareň\nbielič\nbielidlo\nbielisto\nbieliť\nbielizeň\nbielizník\nbielizňový\nbielko\nbielkova\nbielkove\nbielkovi\nbielkovina\nbielkovinný\nbielkovinový\nbielkovo\nbielkovu\nbielkový\nbielo\nbielob\nbielobách\nbielobám\nbielobami\nbieloba\nbielo-červený\nbieločierna\nbielo-čierny\nbielogvardejec\nbielogvardejský\nbielohlávok\nbielohlavý\nbielokarpatskej\nbielok\nbielokrídly\nbielokrvnosť\nbielopotocký\nbielor\nbielorus\nBielorus\nBielorusa\nBielorusi\nBielorusko\nbielorusky\nbieloruský\nBielorusom\nBielorusov\nbieloruštín\nbieloruštinách\nbieloruštinám\nbieloruštinami\nbieloruština\nbielosivý\nbieloskvúca\nbieloskvúce\nbieloskvúceho\nbieloskvúci\nbieloskvúcimi\nbieloskvúcom\nbielosť\nbielota\nbielovláska\nbielovlasý\nBielovský\nBielskeho\nBielskej\nBielskom\nBielsku\nbielučičko\nbielučičký\nbielučko\nbielučký\nbielulinko\nbielulinký\nbielunko\nbielunký\nbieluško\nbiely\nbienále\nbiénium\nbiet\nbifaciálny\nbifenyl\nbifidus\nbifilárny\nbifliar\nbifľoš\nbifľovania\nbifľovanie\nbifľovať\nbifokálne\nbiftek\nbifurkácia\nbifurkačný\nbig\nbiga\nbigamia\nbigamický\nbigamista\nbigbít\nbigbítmi\nbígel\nbigotne\nbigotnosť\nbigotný\nBihár\nbijacovský\nbíjať\nbíjavať\nbijekcia\nbijou\nbijúce\nbijúci\nbijúcou\nbikarbonát\nbiking\nBikini\nbikiniek\nbikinky\nbikiny\nbikonkávny\nbikonvexný\nbikros\nbilabiála\nbilabiálny\nbiľag\nbiľagmi\nbiľagoch\nbiľagom\nbiľagov\nbiľagovať\nbiľagu\nbiľagy\nbilancia\nbilancovanie\nbilancovať\nbilančne\nBilančno\nbilančný\nbilaterálny\nBilbao\nBilbaom\nBilbau\nbilbord\nbilbordový\nbiletár\nbiletárka\nbilharzióza\nbiliarda\nbiliard\nbiliardista\nbiliardistka\nbiliardový\nbiliárny\nbiligrafia\nbilineárny\nbilingválny\nbilingvista\nbilingvistický\nbilingvizmus\nbilión\nbiliónovo\nbiliónový\nbilióntina\nbiliónty\nbilirubín\nBíll\nBilla\nbillboard\nBill\nbilokácia\nbim\nbimanuálny\nbim-bam\nbimetal\nbimetalický\nbimetalizmus\nbimetalový\nbimilénia\nbimilénium\nBIMILÉNIUM\nbin\nBíňa\nbinárne\nbinárnosť\nbinárny\nbíng\nbingo\nBinka\nBinku\nbinokel\nbinokulár\nbinokulárny\nbinóm\nbinomický\nbinominálny\nbíňovskí\nBíňovský\nbinturong\nbioaktivácia\nbioakustika\nbiocenológia\nbiocenóza\nbiocentrický\nbiocentrizmus\nbiocíd\nbiodiverzita\nbiodynamik\nbioelektrina\nbioenergeticky\nbioenergia\nbioetika\nbiofág\nbiofaktor\nbiofília\nbiofilter\nbiofyzik\nbiofyzikálny\nbiofyzika\nbiogenetický\nbiogenéza\nbiogénia\nbiogénny\nbiogeografia\nbioglyf\nbiograf\nbiografia\nBiograficky\nbiografický\nbiohelmint\nbiochem\nbiochémia\nbiochemický\nbiochemička\nbiochemik\nbioinžinierstve\nbiokatalyzátor\nbiokinetika\nbioklíma\nbioklimatológia\nbiol\nbiolit\nBiolit\nbiológ\nbiológia\nbiologicky\nbiologický\nbiologička\nbioluminiscencia\nbiom\nbiomás\nbiomasa\nbiomechanický\nbiomechanika\nbiometeorológia\nbiometeorologický\nbiometria\nbiometricky\nbiometrický\nbiometrika\nbionáft\nbionafta\nbionika\nbioniky\nbiont\nbioplaziem\nbioplazma\nbioplyn\nbiopolymér\nbiopotenciál\nbiopotravina\nbiopredpoveď\nbiopredpoveďami\nbiopredpovede\nbiopredpovedi\nbiopredpovedí\nbiopredpovediach\nbiopredpovediam\nbiopredpoveďou\nbiopreparát\nbioprodukt\nbioproduktmi\nbiopsia\nbiopsie\nbiopsiou\nbiopsiu\nbiorizácia\nbiorytmus\nbiosfér\nbiosférach\nbiosféram\nbiosféra\nbiosférický\nBioskop\nBioskopu\nbiostatika\nbiostatikum\nbiostimulácia\nbiostratigrafia\nbiosyntéza\nbiosystém\nbioštatistika\nbiota\nbiotar\nbiotaxia\nbiotechnik\nbiotechnika\nbiotechniky\nbiotechnológia\nbioterapia\nbiotest\nbiotický\nBiotik\nBiotika\nbiotiká\nBiotike\nBiotiku\nbiotín\nbiotit\nbiotop\nbiotronik\nbioturbác\nbiotyp\nbiotypológia\nbipartícia\nbipartíciu\nbipartít\nbipartita\nbipartitný\nbipedálny\nbipedia\nbiplán\nbipolarita\nbipolárne\nbipolárnosť\nbipolárny\nbipolita\nbipolitizmus\nbíreš\nbíreška\nbírešský\nbiret\nbirmovane\nbirmovanec\nbirmovanie\nbirmovanka\nbirmovaný\nbirmovať\nbirmovka\nbirmovný\nbirr\nbirzy\nbis\nBIS\nbisexuál\nbisexualita\nbisexuálne\nbisexuálnosť\nbisexuálny\nbiskup\nbiskupická\nBiskupické\nBiskupického\nbiskupickej\nBiskupová\nbiskupský\nbiskupstvo\nbiskvit\nbiskvitový\nBissau\nbistier\nbistra\nbistrá\nbistrách\nbistrám\nbistrami\nbistre\nbistro\nbistrom\nbistru\nbisťu\nbisťubohu\nbisťudade\nbisťuže\nBitarová\nBitarovská\nbit\nbít\nbitevný\nbitie\nbitkár\nbitkársky\nbitkárstvach\nbitkárstvam\nbitkárstvo\nbitka\nbitkom\nbitmi\nbítmi\nbito\nbitonalita\nbitovo\nbítový\nbitový\nbitter\nbitume\nbitúmen\nbitúmene\nbitúmenový\nbitúmeny\nbituminózny\nbitúnkový\nbitúnok\nbiť\nbitý\nbiva\nbivak\nbivakovania\nbivakovať\nbivalentný\nbizam\nbizamový\nbizarne\nbizarnosť\nbizarný\nbizet\nbizmut\nbizmutový\nbiznis\nbiznismen\nbizonálny\nbizón\nbizoní\nbizoňom\nbizoňou\nbizónovi\nbižutéria\nbla\nbľabotajúc\nbľabotanie\nbľabotaním\nbľabotať\nbľabotavo\nbľabotavosť\nbľabotavý\nbľabot\nbľabotiť\nbľabotmi\nbľač\nbľačať\nbľačiace\nbľačiak\nbľačivý\nblafák\nbľafkať\nblafovať\nbláh\nbláha\nBláha\nbláhaj\nbláhajme\nbláhajte\nbláhajú\nbláhajúc\nbláham\nbláhame\nbláhaš\nbláhate\nbláhať\nblahobyt\nblahobytmi\nblahobytne\nblahobytný\nblahodajný\nblahodárna\nblahodarne\nblahodárne\nblahodárnej\nblahodarnosť\nblahodarný\nblahodatný\nblahodejný\nblaho\nBlahomil\nblahonosný\nblahoprajne\nblahoprajnosť\nblahoprajný\nblahopriane\nblahoprianie\nblahoprianý\nblahopriať\nblahorečenie\nblahorečiť\nblahorodie\nblahosklonne\nblahosklonnosť\nblahosklonný\nBlahoslav\nblahoslavenie\nblahoslavený\nblahoslaviť\nblahovičník\nblahovičníkov\nblahovôľach\nblahovôľam\nblahovôľa\nblahovôlí\nblahovoľne\nblahovôľne\nblahovoľnosť\nblahovoľný\nBlahovský\nblahoželanie\nblahoželať\nblahý\nbľak\nbľakotajúc\nbľakotať\nbľakot\nbľakotmi\nblamážach\nblamážam\nblamáž\nblamovať\nblán\nblana\nBlanc\nblanitosť\nblanitý\nblanka\nBlanka\nblanketa\nblanketový\nblankozmenka\nblankvers\nblankyt\nblankytmi\nblankytne\nblankytný\nblankytový\nblanovitý\nblanový\nblanský\nblanšírovanie\nblanšírovať\nblasfémia\nblasfemickými\nblastém\nblastéza\nblasto\nblastogenéza\nblastóm\nblastula\nblát\nBlatenská\nblatenskej\nblatísk\nblatisko\nblatisto\nblatistý\nblativo\nblativý\nblatnato\nblatnatý\nBlatnica\nBlatnice\nBlatnici\nBlatnickej\nblatnickí\nblatník\nblatníku\nblatníky\nblatnivý\nblatný\nblato\nblatový\nBlaupunkt\nblazar\nblazeovane\nblazeovanosť\nblazeovaný\nblázinec\nbláznení\nbláznenie\nbláznieť\nblaznieť\nblázninca\nblázninec\nblázniť\nbláznivo\nbláznivosť\nbláznivý\nbláznovský\nbláznovstvo\nbláznov\nblázon\nBlaža\nBlažej\nBlažejovej\nBlažejovho\nBlažena\nblažene\nBlaženke\nblaženosť\nblažený\nBlažice\nblažiť\nblaživý\nBlažka\nBlažke\nBlažkov\nBlažková\nBlažku\nBlažov\nBlažovce\nBlažovská\nblbec\nblbla\nblbli\nblblo\nblbne\nblbnem\nblbneme\nblbneš\nblbnete\nblbni\nblbnime\nblbnite\nblbnú\nblbnúc\nblbnúť\nblbo\nblbol\nblbosť\nblbotajúc\nblbotať\nblbotavý\nblbšej\nblbší\nblbšia\nblbšie\nblbšieho\nblbšiemu\nblbších\nblbším\nblbšími\nblbšiu\nblbšom\nblbšou\nblbý\nblč\nblčať\nblčiaceho\nblčiaci\nblčiacim\nblčivý\nblé\nbleda\nbledastý\nbledavý\nBlede\nbledistý\nblednúci\nblednutie\nblednúť\nbledo\nbledobelasý\nbledočervene\nbledočervený\nbledofialový\nbledohnedý\nbledolíci\nbledolilavý\nbledomodrý\nbledoružový\nbledosivý\nbledosť\nbledozeleno\nbledozelený\nbledožltý\nbledučko\nbledučký\nbleduľa\nbledulinko\nbledulinký\nbledunko\nbledunký\nbleduško\nbledušký\nbledý\nblefaritída\nblefarochalázia\nblejzer\nblen\nblenový\nbleskami\nblesk\nbleskmo\nblesknúť\nbleskný\nbleskoistiek\nbleskoistky\nbleskom\nbleskorýchly\nbleskot\nbleskotať\nbleskotavý\nbleskotný\nbleskove\nbleskovíc\nBleskovica\nBleskovice\nbleskovka\nbleskovo\nbleskový\nbleskozvod\nbleskurýchle\nbleskurýchlo\nbleskurýchly\nblesky\nblesla\nblesli\nbleslo\nblesne\nblesnem\nblesneme\nblesneš\nblesnete\nblesni\nblesnime\nblesnite\nblesnú\nblesnúc\nblesnúť\nblesol\nbĺch\nblcháň\nblchár\nblcha\nbliakať\nbliakni\nblikajúci\nblikaní\nblikania\nblikanie\nblikaniu\nblikať\nblikavo\nblikavý\nbliknutie\nbliknutím\nbliknúť\nblikot\nblikotajúc\nblikotanie\nblikotať\nblikotavo\nblikotavý\nblindáž\nblinká\nblinkať\nblinkavý\nblinker\nblinkot\nblinkotať\nblinkotavý\nblíz\nblíza\nblízach\nblízam\nblízami\nblizard\nblizien\nblízk\nblízkach\nblízkam\nblízkami\nblízko\nblízkosť\nblízkových\nblízkovýchodný\nblízky\nblizňa\nblizna\nbliznencami\nbliznence\nbliznencoch\nbliznencom\nblizneniec\nblizniat\nblízo\nblízom\nblízosť\nblízu\nblízučko\nblízučký\nblízulinko\nblízulinký\nblízunko\nblízunký\nblížence\nblíženec\nblíženie\nblíženiec\nblížiaci\nblížiť\nblížny\nbližší\nblk\nblká\nblkať\nbĺkať\nblkom\nblkoť\nblkotať\nblkot\nblkoťe\nblkoťem\nblkoťeme\nblkoťeš\nblkoťete\nblkoťme\nblkotmi\nblkoťte\nblkoťú\nblkoťúc\nblku\nblky\nblnkať\nblnkotať\nbloc\nbloček\nbločka\nbločkami\nbločkoch\nbločkom\nbločkov\nbločku\nbločky\nblokácia\nblokačný\nblokád\nblokádach\nblokádam\nblokáda\nblok\nblokovacej\nblokovací\nblokovacia\nblokovacie\nblokovacieho\nblokovacích\nblokovacím\nblokovacími\nblokovaciu\nblokovane\nblokovania\nblokovanie\nblokovaný\nblokovať\nblokovne\nblokovňu\nblokovo\nblokový\nblokujúci\nblond\nBlonďaté\nblondiačik\nblondiak\nblondínach\nblondínam\nblondína\nblondín\nblondínka\nbloodhound\nBĽR\nblšací\nblšacinec\nblší\nblšinec\nblškách\nblškám\nblška\nbludár\nbludáriť\nbludárka\nbludársky\nbludárstvo\nblud\nblúdení\nblúdenia\nblúdenie\nblúdeniu\nblúdiaci\nbludička\nblúdievať\nbludísk\nbludisko\nblúdiť\nblúdivo\nblúdivý\nbludne\nbludný\nbluegrass\nblues\nbluf\nbluma\nBluma\nBlume\nbľuskať\nbľusknúť\nbľusla\nbľusli\nbľuslo\nbľusne\nbľusnem\nbľusneme\nbľusneš\nbľusnete\nbľusni\nbľusnime\nbľusnite\nbľusnú\nbľusnúc\nbľusnúť\nbľusol\nblúz\nblúzach\nblúzam\nblúza\nblúzička\nblúzka\nblúznenie\nblúzniaci\nblúznina\nblúzniť\nblúznivec\nblúznivo\nblúznivosť\nblúznivý\nblúzočka\nbluzón\nblúzový\nblyskáčik\nblyskáč\nblýskajúce\nblýskajúcej\nblýskajúci\nblýskajúcim\nblýskanie\nblýskať\nblýskavica\nblýskavo\nblýskavosť\nblýskavý\nblysk\nblysknúť\nblyskotať\nblyskot\nblysla\nblysli\nblyslo\nblysne\nblysnem\nblysneme\nblysneš\nblysnete\nblysni\nblysnime\nblysnite\nblysnú\nblysnúc\nblysnúť\nblysol\nblyšť\nblyšťať\nblyšťavý\nblyštek\nblyštiaci\nblyšťme\nblyšťte\nBM\nBMG\nBMN\nBMW\nbo\nboa\nbob\nBOB\nboba\nbobá\nBôba\nbobák\nBobáka\nBobákom\nbôb\nbobček\nBobík\nBobíka\nbobina\nBobinet\nbobista\nbobistov\nbobkový\nbobmi\nbobo\nboboch\nbobok\nbobom\nBobom\nbobôn\nbobonársky\nbobona\nbobor\nBobot\nBoboty\nbobov\nbôbový\nbobový\nbobra\nbobrami\nbobrí\nbobroch\nbobrov\nBobrovci\nBobrovček\nBobrove\nBobrovec\nbobrovi\nBobrovník\nbobrovo\nBobrovským\nbobrový\nbobry\nbobtail\nbobuľa\nbobuľka\nbobuľovín\nbobuľovina\nbobuľovitý\nbobuľový\nboby\nBoca\nbocci\nBoci\nbocianic\nbocianica\nbocianí\nbocian\nbociaňom\nbociaňou\nBocu\nbočenie\nBočiar\nBočiara\nBočiari\nBočiarom\nbočiarske\nbočiarskeho\nbočiarskej\nBočiarsky\nbôčik\nbočiť\nbočka\nbočne\nbočnica\nbočník\nbočníka\nbočníkom\nbočníkov\nbočný\nbodáčik\nbodaj\nbodajže\nbodák\nbodákový\nbodanie\nbodať\nbodavo\nbodavý\nbod\nbodcový\nbodec\nbodega\nBodega\nBoden\nbódhi\nbódhisattva\nBodík\nBodíka\nBodíkoch\nBodíkov\nBodíky\nbodkastý\nbodkavý\nbodka\nbodkočiarka\nbodkovane\nbodkovania\nbodkovanie\nbodkovaním\nbodkovaný\nbodkovať\nbodkový\nbodľač\nbodľačie\nbodľavý\nbodliaci\nbodliačik\nbodliak\nbodliakovi\nbodliakový\nbodnutie\nbodnutím\nbodnúť\nbodnutý\nbodný\nBodocký\nBodorová\nBodorovej\nbodovací\nbodovanie\nbodovaný\nbodovať\nbodovník\nbodovo\nbodový\nbodrejšej\nbodrejší\nbodrejšia\nbodrejšie\nbodrejšieho\nbodrejšiemu\nbodrejších\nbodrejším\nbodrejšími\nbodrejšiu\nbodrejšom\nbodrejšou\nbodrel\nbodro\nbodrocký\nBodrog\nbodrosť\nBodružal\nbodrý\nBodva\nbody\nbodybuilding\nbodyček\nbodyguard\nBodza\nBodze\nboeing\nbogandža\nbogandží\nboghead\nbogomil\nBogota\nbogotský\nbohabojne\nbohabojnosť\nbohabojný\nboháč\nboháčka\nBoháčovej\nboháčovho\nboháčsky\nbohaprázdnik\nbohapusto\nbohapustý\nbohate\nbohatiera\nbohatier\nbohatiersky\nbohatierstvo\nbohatnúci\nbohatnutí\nbohatnutia\nbohatnutie\nbohatnutiu\nbohatnúť\nbohato\nbohatosť\nbohatstvo\nbohatšíF\nbohatý\nboh\nBoh\nbohdá\nbohdaj\nBohdán\nBohdana\nBohdan\nBoheľov\nbohéma\nbohém\nbohemiká\nbohémin\nbohemista\nbohemistický\nbohemistika\nbohemistka\nbohemizácia\nbohemizmus\nbohemizovať\nbohémka\nbohémsky\nbohémstvo\nbohhovie\nbohchráň\nBohorodička\nbohorovne\nbohorovnosť\nbohorovný\nbohorúhačský\nbohorúhavý\nbohoslovec\nbohoslovecký\nbohoslovie\nbohoslovný\nbohoslužba\nbohoslužobný\nbohovať\nbohove\nbohovo\nbohovsky\nbohovský\nbohu\nBohu\nbohuchovaj\nbohuchvála\nBohumila\nBohumil\nbohumilejšej\nbohumilejší\nbohumilejšia\nbohumilejšie\nbohumilejšieho\nbohumilejšiemu\nbohumilejších\nbohumilejším\nbohumilejšími\nbohumilejšiu\nbohumilejšom\nbohumilejšou\nbohumilo\nbohumilý\nBohumín\nBohumíne\nBohumínom\nbohumínska\nbohumínske\nbohumínskeho\nbohumínskej\nbohumínskemu\nbohumínski\nbohumínskom\nbohumínskou\nbohumínsku\nbohumínsky\nbohumínskych\nbohumínskym\nBohumínu\nBohumír\nBohumíre\nBohunice\nbohunická\nbohunickej\nbohunickí\nbohunickú\nbohunických\nbohunickými\nBohunický\nBohúňove\nBohúňovo\nbohuotcu\nbohuotcuprisahám\nbohuotcuprisám\nbohuprisahám\nbohuprisám\nBohuslava\nBohuslav\nBohuslavický\nBohuš\nBohušove\nbohužiaľ\nbohvie\nbohvieako\nbohvieaký\nbohviečím\nbohviečo\nbohviečoho\nbohviečom\nbohviečomu\nbohviekade\nbohviekam\nbohviekde\nbohviekedy\nbohviekoho\nbohviekoľko\nbohviekoľký\nbohviekom\nbohviekomu\nbohviekto\nbohviekým\nbohvieodkiaľ\nbohyňa\nbohzná\nBochnia\nbochníček\nbochníčka\nbochníčkami\nbochníčkoch\nbochníčkom\nbochníčkov\nbochníčku\nbochníčky\nbochník\nbochníkový\nBochum\nboiler\nbójach\nbojachtivo\nbojachtivosť\nbojachtivý\nbójam\nbojar\nbojarka\nbojarský\nbojarstvo\nbojaschopne\nbojaschopnosť\nbojaschopný\nbója\nbojazlivec\nbojazlivo\nbojazlivosť\nbojazlivý\nbójí\nbojísk\nbojisko\nBojišti\nboj\nbójka\nbojko\nbojkot\nbojkotmi\nbojkotovaná\nbojkotovaní\nbojkotovania\nbojkotovanie\nbojkotovaním\nbojkotovaniu\nbojkotovaných\nbojkotovať\nBojkova\nbojlera\nbojler\nbojleri\nBojná\nBojnej\nbojnickej\nbojnickou\nbojnických\nbojnickými\nBojnický\nBojničiek\nBojničkách\nBojničky\nbójok\nbojova\nbojovaní\nbojovania\nbojovanie\nbojovať\nbojove\nbojovejší\nbojovne\nbojovnícky\nbojovníčka\nbojovník\nbojovnosť\nbojovný\nbojovo\nbojovovo\nbojový\nbojujúci\nbôk\nboká\nboka\nbok\nbokej\nboko\nbokombrada\nbokombriadka\nbokový\nBokroš\nBokroša\nBokrošov\nbokú\nbol\nboľ\nbola\nboľačka\nboľavieť\nboľavo\nboľavý\nBoldocká\nBoldockej\nbôle\nbolehlav\nbolengať\nbolenie\nbolením\nboleniu\nboler\nboleráz\nbolerázska\nbolerázske\nbolerázskeho\nbolerázskej\nboleriek\nbolerko\nbolero\nbolerový\nBoleslav\nBoleslave\nBoleslavou\nboleslavské\nboleslavskej\nboleslavskou\nboleslavskú\nBoleslavský\nBoleslavy\nbolestínstva\nbolestínstve\nbolestiplný\nbolestiť\nbolestivo\nbolestivosť\nbolestivý\nbolesť\nbolestne\nbolestnícky\nbolestnosť\nbolestný\nBolešov\nBolešova\nBolešove\nbolešovského\nboleta\nbôli\nboliaci\nBoliarov\nbolid\nbolier\nbolieť\nbolievať\nbolívar\nbolívarovský\nbolívarský\nbolivian\nBolívia\nBolívijčan\nBolívijčanka\nbolívijský\nbôľ\nboľká\nboľkovské\nboľme\nbôľmi\nbôľne\nbôľné\nbôľny\nbolo\nBologna\nbôľoch\nbôľom\nbolomete\nBolončan\nBolončanka\nbolonský\nbôľov\nbôľová\nbôľové\nbolože\nboľševicky\nboľševický\nboľševička\nboľševik\nboľševizácie\nboľševizáciou\nboľševizáciu\nboľševizačnému\nboľševizmus\nboľševizovať\nBoľševník\nboľte\nboltec\nbôľu\nBolzana\nBolzane\nBolzano\nbom\nBombaj\nbombajský\nbombarďák\nbombardéra\nbombardér\nbombardéri\nbombardérmi\nbombardéroch\nbombardérom\nbombardérov\nbombardérsky\nbombardéru\nbombardéry\nbombardón\nbombardovací\nbombardovane\nbombardovanie\nbombardovaný\nbombardovať\nbombast\nbombastickosť\nbombasticky\nbombastický\nbomba\nbombáž\nbombička\nBombovo\nbombový\nbonanza\nbonapartizmus\nbon\nbonbel\nbonbón\nbonboniér\nbonboniérach\nbonboniéram\nbonboniéra\nbonboniérka\nbonboniérky\nbonbónik\nbond\nboneshaker\nbonhomia\nBonifác\nbonifikácia\nbonifikačný\nbonifikátor\nbonifikovanie\nbonifikovaný\nbonifikovať\nbonitácia\nbonitácie\nbonitáciu\nbonita\nbonitne\nbonitný\nbonitovaná\nbonitovaných\nbonitovať\nbonmot\nbonmotmi\nBonn\nbonnský\nbonsai\nbonsajistika\nbonsaj\nbonsajový\nbontón\nbonus\nbonviván\nbonvivánsky\nbonvivánstvo\nbonz\nbonzák\nbonzoval\nbonzovala\nbonzovali\nbonzovalo\nbonzovať\nbonzuj\nbonzuje\nbonzujem\nbonzujeme\nbonzuješ\nbonzujete\nbonzujme\nbonzujte\nbonzujú\nbonzujúc\nbookmaker\nbookovanie\nbooksize\nboom\nboommi\nbooster\nbootleg\nbootstrap\nbop\nbóran\nBorát\nbórax\nbóraxový\nbóra\nborb\nbor\nbór\nbôr\nborba\nborcovanie\nborcovať\nborcove\nBorcovej\nborcujúci\nborcujúcu\nbordeaux\nBordeaux\nbordeauxského\nbordeauxsky\nbordelár\nbordel\nbordelmi\nbordereau\nbordero\nbordó\nbordovo\nbordový\nbordúra\nbordúrou\nbôre\nboreálny\nborec\nborelióza\nBorenie\nborgiovec\nborgis\nborgisový\nboriaci\nborid\nBorid\nborievča\nborievčie\nborievčina\nborievka\nborievkový\nbôrik\nborina\nBorinka\nBorinke\nBorinky\nBoris\nBorislav\nBorislava\nBorislavom\nBorisovej\nBorisovou\nboritá\nboritan\nborité\nboritej\nboriteľ\nboriť\nborito\nborivý\nBôrka\nborka\nBorland\nbórmi\nbôrmi\nBorneo\nBorneu\nbóroch\nbôroch\nbórom\nbôrom\nBorou\nbórov\nbôrov\nborovica\nborovicový\nborovičie\nborovička\nborovičkový\nboroviek\nBorovina\nBorovine\nBorovka\nBorovnici\nborovských\nBorovský\nborový\nbórový\nbôrový\nBorský\nborsučí\nborsug\nborsuk\nborsukovi\nBorša\nborščami\nboršč\nBorše\nBorši\nbort\nborta\nborte\nbortí\nbortiť\nbôru\nbôry\nBosák\nBosáka\nBosákom\nBosákova\nBosákovej\nBosákovou\nBosákovu\nbosanova\nbosáž\nbos\nBose\nbosenský\nbosket\nbosky\nBosna\nBosniačka\nbosniak\nBosnianské\nbosniansky\nbosniansky\nboso\nbosonohý\nbosorácky\nbosoráctvach\nbosoráctvam\nbosoráctvo\nbosoráčiť\nbosorák\nbosorátstvo\nbosorka\nbosorovať\nBospor\nbosporský\nboss\nBoston\nbostonský\nbosý\nboš\nBošáca\nBošáce\nBošáci\nBošácka\nBošáckej\nbošácku\nbošáckych\nBošácu\nBošanoch\nBošanom\nBošany\nBošian\nBošianske\nbošianskej\nBošiansky\nbošianskych\nbot\nbota\nbotách\nbotanický\nbotanička\nbotanika\nbotanik\nBoťanoch\nBoťany\nbotaska\nbotela\nbotel\nbotelmi\nbotelový\nBoteva\nBotin\nBotka\nbotky\nbotrytída\nBotswana\nBottova\nBottove\nBottovo\nbottovské\nBottovu\nbotu\nbotulizmom\nbotulizmu\nbotulizmus\nbotulotoxín\nbotulotoxínom\nbotulotoxínu\nboty\nBoubín\nbouclé\nbourbon\nBouvetov\nbouvier\nbovden\nbovdenov\nbovdeny\nbovinný\nbowden\nbowle\nbowling\nboxami\nbox\nboxera\nboxerC\nboxeri\nboxerovi\nboxersky\nboxerský\nboxovanie\nboxovať\nboxový\nboy\nboza\nbozkami\nbozkanie\nbozkať\nbozkávaní\nbozkávanie\nbozkávaním\nbozkávať\nbozk\nbozón\nBožčice\nbože\nbožedaj\nbožechráň\nbožeká\nbožekaj\nbožekajme\nbožekajte\nbožekajú\nbožekajúc\nbožekal\nbožekala\nbožekali\nbožekalo\nbožekám\nbožekáme\nbožekáš\nbožekať\nbožekáte\nbožemôj\nBožená\nBožena\nbožeuchovaj\nBožice\nBožidár\nBožidarách\nBožidarám\nBožidarami\nBožidara\nboží\nbôžik\nbožiť\nBožka\nbožskosť\nbožsky\nbožský\nbožstvo\nbožtek\nBq\nbr\nbŕ\nBRA\nbrabantka\nbraček\nbračekovať\nbračekovci\nBrač\nbračský\nbrád\nbradáč\nBradáčova\nBradáčovej\nbradatý\nbradavica\nbradavička\nbradavičnatosť\nbradavičnatý\nbradavka\nbradavkový\nbrada\nbradička\nbradisko\nbradliansky\nbradlo\nbradlový\nBradová\nbradsot\nbradybázia\nbradyfázia\nbradyfrénia\nbradykardia\nbradykinéza\nbradylália\nbradypnoa\nBrahma\nBráhma\nbrahman\nbrahmanka\nbrahmanský\nbrahmanstvo\nbrachiácia\nbrachialgia\nbrachiálne\nbrachiálnosť\nbrachiálny\nbrachiopóda\nbrachyblast\nbrachykefália\nbrachylógia\nbrachylogický\nbrainstorming\nbraintrust\nbrainwashing\nbrajgel\nbrakátový\nbrak\nbrakický\nbrakovanej\nbrakovania\nbrakovanie\nbrakovaných\nbrakovať\nbrakový\nbrakteát\nbrál\nbralísk\nbralisko\nbralistý\nbralnatý\nbralný\nbralo\nbrám\nbrama\nbramách\nbramami\nbramarbas\nbramy\nbrán\nBraňa\nbránach\nbránam\nbrána\nBranč\nBranča\nBranči\nbranding\nbrandy\nbrandža\nbrandží\nbranec\nbranecký\nbránenia\nbránenie\nbránením\nbráneniu\nbránený\nbrania\nbrániaci\nbránic\nBránic\nbránica\nbránicivý\nbránicový\nbránička\nbranie\nbraním\nBranisko\nBranislava\nBranislav\nbrániť\nbraniu\nbrankár\nbrankárka\nbrankárov\nbrankársky\nbránka\nbránkovísk\nbránkovisko\nbránkový\nbranne\nbranno\nbrannosť\nbranný\nBraňo\nBranov\nBranove\nBranovo\nbránový\nbraný\nbranzol\nbranža\nbranží\nbrašien\nBrašna\nbrašňa\nbrašnár\nbrašnárska\nbrašnárske\nbrašnárskeho\nbrašnárskej\nbrašnárskou\nbrašnársky\nbrašnárskych\nbrašnárskym\nbrašnárstvach\nbrašnárstvam\nbrašnárstvo\nbrašne\nbrašni\nbrašní\nBrašov\nbratanček\nbratanec\nbratania\nbratanie\nbratať\nbrat\nbratec\nBratislava\nBratislavčan\nBratislavčanka\nbratislavsky\nbratislavský\nBratka\nbratko\nBratkom\nbratkovať\nbratkovia\nbratku\nBratolomejovia\nbratovrah\nbratovražda\nbratovražedný\nbratov\nbratranček\nbratranec\nbratríčkovania\nbratríčkovanie\nbratríčkovať\nbrať\nbratsky\nbratský\nbratstvo\nbratý\nbraun\nBraväcova\nBraväcove\nBraväcovo\nbrávať\nbravce\nbravčekov\nbravčo\nbravčovina\nbravčový\nBrave\nbravec\nbravissimo\nbrav\nbravo\nbravó\nBravu\nbravúr\nbravúrach\nbravúram\nbravúra\nbravúrne\nbravúrnosť\nbravúrny\nbraz\nbrázda\nbrázdenie\nBrázdeniu\nbrázdička\nbrázdiť\nbrázdový\nBrazílčan\nBrazílčana\nBrazília\nbrazílsky\nbrazílsky\nbrazoleta\nbrazoletňa\nbrbce\nbrbcem\nbrbceme\nbrbceš\nbrbcete\nbrbci\nbrbcime\nbrbcite\nbrbcú\nbrbcúc\nbrblať\nbrblavo\nbrblavosť\nbrblavý\nbrbloš\nbrboc\nbrboce\nbrbocem\nbrboceme\nbrboceš\nbrbocete\nbrbocme\nbrbocte\nbrbocú\nbrbocúc\nbrbotajúc\nbrbotal\nbrbotala\nbrbotali\nbrbotalo\nbrbotať\nbrbtal\nbrbtala\nbrbtali\nbrbtalo\nbrbtať\nbrbtavý\nbrbt\nbrbtmi\nbrčkavo\nbrčkavý\nbrčka\nbrčkom\nbŕd\nBŕd\nbrdár\nBrdárka\nbrdársky\nbrdce\nbŕdnuť\nbrdó\nBrdoch\nbrdo\nbrdský\nBrdy\nbreak\nbrečka\nbrečtan\nbrečtanovo\nbrečtanový\nBreda\nBredou\nBredu\nBredy\nbreh\nBrehove\nbrehovitý\nBrehovský\nbrehový\nbrehuľa\nbrechá\nbrechaj\nbrechajme\nbrechajte\nbrechajúc\nbrechanie\nbrechať\nbrechávať\nbrechnúť\nbrechot\nbrechotmi\nbrejk\nbrejkbal\nbrejkový\nbrekcia\nbrekeke\nbrekotá\nbrekotať\nbrekoty\nBrekov\nbrekyňa\nBrém\nbremä\nBrémach\nBrémami\nbremeni\nbremeno\nbremien\nbrémska\nBrémske\nbrémskeho\nbrémskej\nbrémsky\nbrémskych\nBrémy\nbrenneke\nbresse\nbresta\nbrest\nBrestovanoch\nBrestovany\nBrestovca\nBrestovci\nBrestovec\nbrestový\nBrestská\nBrestskej\nbreš\nbreše\nbrešem\nbrešeme\nbrešeš\nbrešete\nbrešme\nbrešte\nbrešú\nbrešúc\nbretón\nbretónčina\nBretónec\nBretónka\nBretónsko\nbretónsky\nbretónsky\nbreve\nbreviár\nbreviármi\nBrezanoch\nBrezany\nbreza\nBrezianski\nBrezianskom\nBreziansky\nbrezička\nbrezina\nBrezinom\nBrezinský\nbrezivosť\nbrezivý\nBreznica\nBreznice\nBreznici\nBreznický\nBreznicu\nBrezno\nBrezov\nBrezovec\nBrezovica\nBrezovici\nBrezovický\nBrezovicou\nBrezovicu\nBrezovička\nBrezovka\nBrezovo\nbrezovská\nbrezovské\nbrezovskej\nBrezovský\nbrezový\nBrežany\nbrežnevský\nBrežný\nbrhličí\nbrhlík\nbrhlíkovi\nbrhliť\nbriadka\nBrianskej\nBriansku\nBrianskych\nbriard\nbrick\nbričesky\nbrička\nbrid\nbride\nbridiť\nbridivý\nbridký\nbridlica\nbridlicovitý\nbridlicovo\nbridlicový\nbridličnatý\nbridoš\nbridy\nbridže\nbridži\nbridž\nbridžmi\nbridžoch\nbridžom\nbridžov\nbridžu\nbrie\nBriestenský\nbriez\nbriezka\nbrieždenie\nbrieždiť\nbriežik\nbriežka\nbriežkami\nbriežkatý\nbriežkoch\nbriežkom\nbriežkov\nbriežkovitý\nbriežku\nbriežky\nBriežky\nbriežok\nbrífing\nbrífingmi\nbrífingoch\nbrífingom\nbrífingov\nbrífingu\nbrífingy\nbriga\nbrigád\nbrigádach\nbrigádam\nbrigáda\nbrigadír\nbrigadírka\nbrigádnicky\nbrigádnický\nbrigádničiť\nbrigádnička\nbrigádnik\nbrigádny\nbrigádoval\nbrigádovala\nbrigádovali\nbrigádovalo\nbrigádovať\nbrigáduj\nbrigáduje\nbrigádujem\nbrigádujeme\nbrigáduješ\nbrigádujete\nbrigádujme\nbrigádujte\nbrigádujú\nbrigádujúc\nbrigant\nbrigantína\nBrigita\nbriketáreň\nbriketa\nbriketovacej\nBriketovací\nbriketovacie\nbriketovacieho\nbriketovacích\nbriketovania\nbriketovanie\nBriketovaním\nbriketovaný\nbriketovať\nbriketový\nbrilancia\nbrilantína\nbrilantínou\nbrilantne\nbrilantnosť\nbrilantný\nbriliant\nbriliantmi\nbriliantový\nbrinčať\nbrink\nbrinkať\nbrinknúť\nbrioška\nbriskne\nbriskný\nBristol\nBristole\nBristolu\nBritánia\nbrit\nBrit\nBritka\nbritko\nbritkosť\nBritky\nbritký\nBritove\nBritovia\nbritsky\nbritský\nbritva\nbríz\nbríza\nbrizancia\nbrizancii\nbrizanciu\nbrizantný\nbrizolit\nbrizolitmi\nbrizolitový\nBrižitská\nbŕk\nbŕkať\nbrko\nbrkový\nbŕla\nbŕľať\nbrloha\nbrloh\nbrlôžik\nbrložiť\nbrlôžkoch\nbrlôžok\nbrlôžtek\nbrmbolcový\nbrmbolec\nbrň\nBŕn\nBrňan\nBrňané\nBrňania\nbrnasto\nbrnastý\nbrňať\nbrnavo\nbrnavý\nbrnč\nbrnčať\nbrnči\nbrnčime\nbrnčite\nbrnej\nbrnejme\nbrnejte\nbrnejú\nbrnejúc\nbrnenie\nbrnenský\nbrnený\nbrni\nBrnianka\nbrniansky\nbrnie\nbrniem\nbrnieme\nbrnieš\nbrniete\nbrnieť\nbrnk\nbrnkací\nbrnkadlo\nbrnkania\nbrnkanie\nbrnkať\nbrnknúť\nbrnkotať\nBrno\nBro\nbrod\nbrodenie\nbrodiť\nBrodno\nbrodový\nbrodskej\nbrodskú\nBrodsky\nBrodský\nBrodzianska\nBrodzianske\nBrodzianskej\nBrodzianskou\nbrojenia\nbrojenie\nbrojiť\nbrojlera\nbrojler\nbrojleri\nbrokát\nbrokátmi\nbrokátový\nbrok\nbrokera\nbroker\nbrokeri\nbrokermi\nbrokeroch\nbrokerom\nbrokerov\nbrokerovi\nbrokerský\nbrokolica\nbrokolicový\nBrokove\nbrokovnica\nbrokový\nBrom\nbróm\nbromélia\nbromičnan\nbromid\nbromidu\nbromizmus\nbromoform\nbromografia\nbromovodík\nbromovodíkový\nbrómový\nbroň\nBroňa\nbronevik\nbronchia\nbronchiálny\nbronchiektázia\nbronchiolitída\nbronchitický\nbronchitíd\nbronchitídach\nbronchitídam\nbronchitída\nbronchitik\nbronchografia\nbronchoskop\nbronchoskopia\nbronchoskopický\nbronchospazmus\nbronchostenóza\nbronieť\nBronislava\nbrontograf\nbrontosaurus\nbronz\nbronzova\nbronzovo\nbronzový\nbronzy\nbroskyňa\nbroskyňovo\nbroskyňový\nbrošňa\nbrošní\nbrošnička\nBrother\nbrovning\nbrovningmi\nbrovningoch\nbrovningom\nbrovningov\nbrovningu\nbrovningy\nbrowning\nbrožovaný\nbrožovať\nbrožúr\nbrožúrach\nbrožúram\nbrožúra\nbrožúrka\nbrr\nbrrmbolcový\nbrrum\nbršlen\nBRT\nBru\nbrucelóza\nbrucelózu\nbruč\nbručal\nbručala\nbručali\nbručalo\nbručanie\nbručať\nbručí\nbručia\nbručiac\nbručím\nbručíme\nbručíš\nbručíte\nbručivo\nbručivý\nbručme\nbručte\nbrud\nBrudno\nbrudný\nBrúgg\nBruggy\nbrúch\nbrucháč\nbrucháčik\nbruchaj\nbruchaňa\nbrucháň\nbrucháni\nbruchatieť\nbruchatosť\nbruchatý\nbrucho\nbruchopasníci\nbruchopasnícky\nbruchopasník\nbruchoplaz\nbruchovravec\nbrum\nbrumendo\nBrumov\nBrún\nbrunasto\nBrunejčan\nBrunejčanka\nBrunej\nBrunejsko\nbrunejský\nbrunet\nbrunetka\nBrunovský\nBruntál\nBruntále\nBruntálom\nBruntálska\nbruntálske\nbruntálskeho\nbruntálskej\nbruntálski\nBruntálskom\nbruntálskou\nBruntálsku\nbruntálsky\nbruntálskych\nbruntálskym\nBruntálu\nBruntály\nbrús\nBrusel\nbruselský\nbrúsenie\nbrúsením\nbrúsený\nbrúsiaci\nbrúsiareň\nbrusiareň\nbrúsiarne\nbrúsiarni\nbrúsiarňou\nbrúsič\nbrusič\nbrusička\nbrusičský\nbrúsidlo\nbrúsik\nbrúsiť\nbrúsiv\nbrúsivo\nbrúska\nbrusliak\nBrusna\nBrusne\nbrusnica\nBrusnická\nBrusnickej\nBrusnickou\nbrusnicový\nBrusník\nBrusno\nbrusný\nbrúsny\nbrúsovo\nbrúsový\nbrušiek\nbruško\nbrušný\nbrut\nBrút\nbrutalita\nbrutálne\nbrutálnosť\nbrutálny\nbrutto\nBruty\nbruyere\nbrvách\nbrvám\nbrván\nbrva\nbrvien\nbrvienko\nbrvno\nbryndza\nbryndzí\nbryndziar\nbryndziareň\nbryndziarňach\nbryndziarňam\nbryndziarsky\nbryndziarstvach\nbryndziarstvam\nbryndziarstvo\nbryndzovník\nbryndzovo\nbryndzový\nbryológia\nbryzg\nbrýzganie\nbrýzganím\nbrýzganiu\nbrýzgať\nbryzgnúť\nbryzgot\nbŕzd\nbrzdár\nbrzda\nbrzdene\nbrzdenia\nbrzdenie\nbrzdením\nbrzdeniu\nbrzdený\nbrzdi\nbrzdiaca\nbrzdiaci\nbrzdič\nbrzdime\nbrzdite\nbrzditeľ\nbrzdiť\nbrzdne\nbrzdný\nbrzdovo\nbrzdový\nbrzlík\nbrznúť\nBrzotín\nBrzotína\nBrzotíne\nbrzotínskej\nBSA\nBSE\nBSP\nBŠK\nbu\nBU\nbú\nBÚ\nbubák\nBubákovou\nbubáky\nbubenícky\nbubeníček\nBubeníčka\nbubeník\nBubeníkova\nBubeníkove\nBubeníkovej\nBubeníkovou\nbubienkový\nbubienok\nbublajúc\nbublajúcej\nbublajúci\nbublal\nbublala\nbublali\nbublalo\nbublanie\nbublanina\nbublať\nbublavo\nbublavý\nbuble\nbublem\nbubleme\nbubleš\nbublete\nbubli\nbublifukom\nbublime\nbublinatý\nbublina\nbublinka\nbublinkovo\nbublinkový\nbublinový\nbublite\nbublú\nbublúc\nBubnár\nbubníček\nbubníčka\nbubníčkami\nbubníčkoch\nbubníčkom\nbubníčkov\nbubníčku\nbubníčky\nbubník\nbubnovania\nbubnovanie\nbubnovaním\nbubnovať\nbubnový\nbubo\nbubon\nbububu\nbu-bu-bu\nbuc\nBuca\nbuckoch\nbucko\nbuckov\nbuckovi\nbuckovia\nbucla\nbucľatieť\nbucľato\nbucľatosť\nbucľatý\nBucovej\nbuč\nBúč\nBúča\nbučanie\nBučanom\nbučať\nBúči\nbučianske\nbučianskeho\nBučiansky\nbúčie\nbúčik\nbučina\nBučiniek\nbučinka\nbučinkách\nbučinkami\nbučinku\nbučinky\nbučinový\nbučka\nbúčka\nbučkami\nbúčkami\nbučkoch\nbúčkoch\nbučkom\nBučkom\nbúčkom\nbučkov\nBučkov\nbúčkov\nbučku\nBučku\nbúčku\nbučky\nbúčky\nbučný\nbučok\nbúčok\nBúčom\nbud\nbúd\nbúdach\nbúdam\nBudapešťan\nBudapeštianka\nbudapeštiansky\nBudapešť\nBudatín\nBudatíne\nBudatínska\nBudatínskej\nBudatínskou\nBudatínsku\nBudatínsky\nbúda\nBudča\nBudče\nBudči\nBudčou\nBuddha\nBuddhisti\nbude\nBudějovice\nbudem\nbudeme\nbudene\nbudenia\nbudenie\nbudením\nbudeniu\nbudený\nbudeš\nbudete\nbudeže\nBudha\nbudhista\nbudhistický\nbudhizmus\nbudiaci\nbudič\nbudiče\nbudíček\nbudíčka\nbudíčkami\nbudíčkoch\nbudíčkom\nbudíčkov\nbudíčku\nbudíčky\nbudievať\nbudík\nBudikovany\nBudín\nBudína\nBudince\nBudíne\nBudinský\nBudiš\nBudiša\nBudiši\nBudišov\nbudišský\nBudišu\nbuditeľ\nbuditeľka\nbuditeľský\nbudiť\nbudivé\nbúdka\nBudkovský\nbudmerickom\nBudmerický\nbudoár\nbudovanie\nbudovaný\nbudovateľ\nbudovateľka\nbudovateľský\nbudovať\nbudova\nbudovísk\nbudovisko\nbuďto\nbudu\nbudú\nbudúc\nbudúci\nbudúcno\nbudúcnosť\nbudúco\nbudúcoročný\nbudúcotýždňový\nbudujúce\nbudujúcej\nbudujúcimi\nBudulov\nBudyšín\nBudyšínskej\nbudyšínsky\nbudzogáňa\nbudzogáne\nbudzogáni\nbudzogáň\nbudzogáňmi\nbudzogáňoch\nbudzogáňom\nbudzogáňov\nbudzogáňu\nbudžet\nbudžucu\nbuenosaierský\nbuenosairesky\nbuenosaireský\nbufetár\nbufetárka\nbufetárky\nbufet\nbufetový\nbuffa\nbuffer\nbuffeting\nbuffo\nBuffy\nbugatti\nBug\nbuggy\nbugina\nbuch\nbúchač\nbúchačka\nbuchál\nbúchanec\nbúchaní\nbúchania\nbúchanie\nbúchaním\nBucharin\nbuchar\nbucharmi\nbuchary\nbuchát\nbúchať\nbúchavať\nBuchenwald\nBuchenwaldu\nbuchiek\nbuchiet\nbuchkať\nbuchnát\nbuchnátmi\nbuchnátovať\nbuchnutie\nbuchnutím\nbuchnúť\nbuchnutý\nbuchotajúc\nbuchotať\nbuchot\nbuchotmi\nbuchta\nbuchtička\nbuchtovať\nBuchtovo\nbuchtový\nBuchu\nbuj\nbujabéza\nbujačí\nbujačik\nbujačisko\nbujak\nBujakove\nbujaky\nbujarejšej\nbujarejší\nbujarejšia\nbujarejšie\nbujarejšieho\nbujarejšiemu\nbujarejších\nbujarejším\nbujarejšími\nbujarejšiu\nbujarejšom\nbujarejšou\nbujaro\nbujarosť\nbujarý\nbújať\nbujdošiť\nbujdošský\nbujne\nbujnenia\nbujnenie\nbujnením\nbujneniu\nbujnieť\nbujnosť\nbujný\nbujo\nbujón\nbujónový\nbujumburský\nbukanier\nbukas\nbukasový\nbúkať\nbuk\nbuket\nbuketných\nbukinista\nbuklé\nbukolický\nbukovanie\nBukovina\nBukovine\nBukovinka\nBukovinke\nBukovinou\nbukovo\nBukovský\nbukový\nbukrét\nbukrétach\nbukrétam\nbukréta\nbúks\nbuksa\nbuksér\nBukurešť\nbukureštský\nbukva\nbukvica\nbula\nbulbárny\nbulbus\nbuldodží\nbuldog\nbuldozéra\nbuldozér\nbuldozéri\nbuldozerista\nbuldozérmi\nbuldozéroch\nbuldozérom\nbuldozérov\nbuldozéru\nbuldozéry\nbuleta\nbulh\nBulhar\nBulhara\nbulharčín\nbulharčinách\nbulharčinám\nbulharčinami\nbulharčina\nBulhari\nbulharistika\nBulharka\nBulharky\nBulharmi\nBulharoch\nBulharom\nBulharov\nBulharsko\nbulharsky\nBulharsky\nbulharský\nBulhary\nbulímia\nbulletin\nbullion\nbullish\nbulmastif\nbulteriér\nbulvár\nbulvármi\nbulvárny\nbuľva\nbuly\nbum\nbumážka\nbumážky\nbumbaj\nBumbala\nbumerangami\nbumerang\nbumerangoch\nbumerangom\nbumerangov\nbumerangový\nbumerangu\nbumerangy\nbums\nbumst\nbumta\nbumtarata\nBuna\nbundáša\nbundáše\nbundáš\nbundášmi\nbundášoch\nbundášom\nbundášov\nbundášovi\nbundatý\nbunda\nbundeslíg\nbundesliga\nbundeswehr\nbundička\nbunečný\nbungalov\nbungalovový\nbungalow\nbuničinabuničitý\nbuničina\nbuničinový\nbuničitý\nbunka\nbunker\nbunkermi\nbunkery\nbunkový\nbunostomóza\nbuntošiť\nbuntošský\nbuntovanie\nbuntovať\nbuntovník\nburácajúci\nburácaní\nburácania\nburácanie\nburácať\nburácavý\nbúrací\nbúračka\nburan\nBuran\nBurana\nbúranej\nbúraní\nbúrania\nbúranie\nbúraním\nbúranísk\nbúranisko\nbúraniu\nbúrať\nburavý\nburcovania\nburcovanie\nburcovať\nburcujúci\nburcujúco\nburčiak\nBure\nburel\nbúrenia\nbúrenie\nburgenlandský\nbürger\nburgos\nburgundský\nburgyňa\nbúriaci\nBurián\nBuriatska\nBuriatskej\nburič\nburička\nburičsky\nburičský\nburičstvo\nburinatý\nburina\nburinovitý\nburinový\nbúriť\nburizón\nbúrka\nBurke\nBurkina\nbúrkový\nburlak\nburleska\nburleskný\nbúrlivácky\nbúrliváctvo\nbúrlivák\nbúrlivo\nbúrlivosť\nbúrlivý\nbúrne\nburnettovanie\nbúrnosť\nburnus\nbúrny\nbürotel\nbúrsky\nburšikózny\nBurundi\nburundský\nBury\nburý\nbúrz\nburza\nburzián\nburziáni\nburziánmi\nburziánom\nburziánov\nburziánovi\nburzitída\nburzovníci\nburzovníkov\nburzovný\nburzovo\nburzový\nburž\nburžoa\nburžoázia\nburžoáznodemokratický\nburžoáznonacionalistický\nburžoázny\nburžuj\nburžuji\nburžujka\nburžujky\nburžujský\nburžuoch\nburžuom\nburžuov\nburžuovi\nburžuovia\nBush\nBusiness\nbusinesse\nbusinessman\nbusinessmani\nbusinessmanov\nbusinessom\nbusinessu\nbúst\nbusta\nbuster\nBustin\nbuša\nbuše\nbušel\nbušelov\nbúšenie\nbuši\nbúšiacim\nbušidó\nBušince\nbúšiť\nbuš\nbušmi\nbušoch\nbušom\nbušov\nBušovská\nbušu\nBušu\nbutadién\nbután\nButanol\nbutánový\nbuteľa\nbuteľka\nbutik\nbutikový\nbútľavieť\nbútľavina\nbútľavosť\nbútľavý\nbútly\nbutor\nbútor\nbutorách\nbutorám\nbutorami\nbutora\nbútoriť\nbútorte\nbutyl\nbutylky\nbúvať\nbuvičkať\nbuvikať\nbuvinkať\nbuxus\nbuzar\nbuzerant\nbuzeroval\nbuzerovala\nbuzerovali\nbuzerovalo\nbuzerovať\nbuzeruj\nbuzeruje\nbuzerujem\nbuzerujeme\nbuzeruješ\nbuzerujete\nbuzerujme\nbuzerujte\nbuzerujú\nbuzerujúc\nBuzica\nBuzice\nBuzici\nBuziciach\nBuzitka\nBuzitke\nBuzitky\nbuzogaň\nbuzogáňa\nbuzogáne\nbuzogáni\nbuzogáň\nbuzogáňmi\nbuzogáňoch\nbuzogáňom\nbuzogáňov\nbuzogáňu\nbuzola\nBuzuluckej\nbužírka\nby\nbýci\nbýček\nbýčí\nbýčka\nbýčkami\nbýčkoch\nbýčkom\nbýčkov\nbýčkovi\nbýčky\nBydgoszcz\nbydgoszczský\nbydlísk\nbydlisko\nbydlo\nbych\nbýk\nbýkovec\nbýkovej\nbýľ\nbyľa\nbyľ\nbylí\nbylina\nbylinkár\nbylinkárka\nbylinkárstvo\nbylinka\nbylinkový\nbylinný\nbylinový\nbylinožravé\nbylinožravec\nbyľka\nbyľku\nbyľôčka\nbyľu\nbypass\nbýr\nbyreta\nbyretka\nbyretový\nbyrokracia\nbyrokrat\nbyrokratickosť\nbyrokraticky\nbyrokratický\nbyrokratizácia\nbyrokratizácie\nbyrokratizácii\nbyrokratizáciou\nbyrokratizáciu\nbyrokratizmus\nbyrokratizovania\nbyrokratizovanie\nbyrokratizovať\nbyrokratizuje\nbyrokratizujeme\nbyrokratka\nByrokratovo\nbyro\nbyronizmus\nbyronovský\nBys\nBystranoch\nBystrany\nbystrejšej\nbystrejší\nbystrejšia\nbystrejšie\nbystrejšieho\nbystrejšiemu\nbystrejších\nbystrejším\nbystrejšími\nbystrejšiu\nbystrejšom\nbystrejšou\nBystrian\nBystrianska\nBystrianskeho\nBystrianskej\nBystrianskemu\nBystrianskou\nBystriansku\nBystriansky\nBystrianskym\nbystrica\nBystrica\nBystricky\nbystrický\nbystrička\nBystrík\nbystrina\nbystrinka\nbystrinný\nbystriť\nbystro\nbystrohlavý\nbystronohý\nbystrooký\nbystrosť\nbystrota\nbystroumnosť\nbystroumný\nbystrozrak\nbystrozrako\nbystrozrakosť\nbystrozraký\nbystrý\nByšta\nbyt\nBytča\nBytče\nBytči\nbytčianske\nBYTČIANSKE\nbytčianskeho\nbytčianskej\nbytčianskemu\nBytčianski\nbytčianskom\nbytčiansku\nbytčiansky\nbytčianskych\nbytčianskym\nBytčica\nBytčici\nBytčicu\nBytčou\nBytču\nbytie\nbytík\nbytmi\nbyť\nbytné\nbytného\nbytomský\nbytosť\nbytostne\nbytostný\nbytovka\nbytovo\nbytový\nbýv\nbývajúca\nbývajúce\nbývajúceho\nbývajúcemu\nbývajúci\nbývajúcich\nbývajúcim\nbývajúcimi\nbývajúcu\nbývalý\nbývanie\nbývať\nbývavať\nbyvol\nbyvolí\nbyvolovi\nByzancia\nbyzantinizmus\nByzantínka\nbyzantínskej\nbyzantológia\nbyzantský\nbzdôch\nbzdocha\nbzdoich\nBzenica\nBzenice\nBzenov\nBZI\nbzí\nBzí\nbzik\nbzíkať\nbziknúť\nBzince\nBziniec\nBziny\nbzovíckej\nBzovík\nBzovíka\nbzuč\nbzučania\nbzučanie\nbzučaním\nbzučať\nbzučiak\nbzučivý\nbzuk\nbzukať\nbzukotajúc\nbzukotať\nbzukot\nbzukotmi\nbzz\nbzzz\nBžany\nBžian\nc\nC\nca\nCA\nCabaja\nCabaji\nCabajom\ncaballero\ncaban\nCabana\nCabanom\nCabanovej\nCabovský\ncabrales\ncabrať\nCabre\nCAC\nCACA\ncaccia\ncaciocavallo\ncaciotta\nCAD\ncaddie\ncaddy\nCádiz\nCádize\nCádizu\ncaduceus\ncaducum\ncaecum\nCaesar\ncafé\ncafetéria\ncache\ncachucha\nCAJC\ncajg\ncajgmi\ncajgoch\ncajgom\ncajgov\ncajgový\ncajgu\ncajgy\ncajchovaním\ncajchovať\ncak\nCak\ncakompak\nCakov\ncakumpak\ncal\ncalando\nCaletka\nCaletku\ncallgirl\ncalofrig\ncalor\ncáloval\ncálovala\ncálovali\ncálovalo\ncálovať\ncalpulli\ncalta\nCaltu\ncáluj\ncáluje\ncálujem\ncálujeme\ncáluješ\ncálujete\ncálujme\ncálujte\ncálujú\ncálujúc\ncalvados\nCAM\ncambozola\ncambridgeský\ncamembert\ncamembertmi\ncamerlengo\ncamorra\ncampari\ncamping\ncampingmi\ncampingoch\ncampingom\ncampingov\ncampingu\ncampingy\ncampr\ncanadair\ncanberrský\ncancer\nCancer\ncanisterapia\nCannes\ncanneský\nCanon\ncantabile\ncantal\ncanto\ncap\ncáp\ncápa\ncapart\ncápať\ncápavý\ncap\ncapí\ncapina\ncapísk\ncapiskoch\ncapisko\ncapiskov\ncapiskovi\ncapiskovia\ncapiť\nCápka\ncapkať\ncapko\ncapky\ncapla\ncapli\ncaplo\ncapne\ncapnem\ncapneme\ncapneš\ncapnete\ncapni\ncapnime\ncapnite\ncapnú\ncapnúc\ncapnúť\ncapol\ncapovej\ncapovu\nCapri\ncaprícc\ncapriccií\ncapriccio\ncapriccioso\ncaprijský\nCaps\ncaptatio\ncaput\ncapy\nCaracas\nCaracase\nCaracasom\nCaracasu\ncárach\ncaramba\ncár\nCarcassone\ncarezzando\ncarga\nCargu\ncári\ncáric\ncárica\nCarihrad\nCarihrade\ncarihradský\nCarihradu\nCarihrady\ncarioca\ncárizmus\nCarlo\ncárofil\ncárok\ncárovať\ncárovič\ncárovná\ncárov\nCarrara\ncársky\ncárstvach\ncárstvam\ncárstvo\ncartridge\ncarving\nCasablanca\ncasablanský\ncasanova\nCasanova\ncash\ncassa\ncasting\ncastis\nCastra\ncastrizmus\nCastrom\ncastrum\nCASTRUM\ncasus\ncatering\ncaudillo\ncausa\ncauserie\ncauserista\ncauseristický\nCB\nCBK\nCBS\ncc\nCC\ncca\nccaM\nccc\nCCD\ncd\nCD\nCDDB\nCDROM\nCDU\nCebuánske\nCebuánsky\ncecať\nCecília\nceckatý\nceckový\ncecnatý\ncecok\ncéčkar\ncéčka\ncéčko\nced\ncedáčik\ncedák\ncédečiek\ncédečkáreň\ncédečkárňach\ncédečkárňam\ncédéčko\ncédečko\ncedene\ncedenie\ncedent\ncedený\ncédeprehrávač\ncéder\ncéderom\ncediace\ncediaci\ncediacich\ncediacim\ncediacou\ncedič\ncediči\ncedidielko\ncedidlo\ncédille\ncediť\ncedovať\ncedrát\ncedrela\ncédrový\nceduľa\nceduľka\nceduľový\ncefalalgia\ncefalín\ncefalometer\ncefalometria\ncefeida\nCEFTA\ncech\ncechmajster\ncechmajsterka\ncechmajstrovský\ncechmajstrovstvo\ncechovné\ncechovnej\nCechovní\ncechovných\ncechový\nCejkov\nCejkove\nCejlón\nCejlóne\ncejlónskej\ncejlónsky\nCejlónu\nCejlóny\nceketa\nceknúť\ncekostómia\ncela\ncelebrant\ncelebrít\ncelebrita\ncelebrovanie\ncelebrovať\ncelejme\ncelejte\ncelejú\ncelejúc\ncelembať\ncelengať\ncelenia\ncelenie\nCelesta\nCeleste\ncelestín\nCelestín\nceliaci\nceliakia\ncelibát\ncelibátmi\ncelička\ncelieť\ncelina\ncelinový\nceliotómia\ncelistvo\ncelistvosť\ncelistvý\nceliť\ncelkom\ncelkou\ncelkove\ncelkovo\ncelkový\ncello\ncelo\nceloamerický\nceloázijský\nceločíselný\ncelodenne\ncelodenný\ncelodňová\ncelodomovo\ncelodrevená\nceloeurópsky\nceloeurópsky\ncelofán\ncelofánový\ncelok\ncelokovový\ncelokoženej\ncelokoženú\ncelokrajové\ncelokrajský\ncelomesačný\ncelomestký\ncelomestský\ncelonárodne\ncelonárodný\ncelonočný\nceloobecné\nceloobecného\nceloobecnej\nceloobrázkový\nceloobsiahleho\nceloplátenný\nceloplátený\nceloplošne\nceloplošný\ncelopodnikovo\ncelopodnikový\ncelorakúskom\ncelorakúsku\ncelorakúsky\nceloročne\nceloročný\ncelorodinný\ncelosezónny\ncelosieťový\nceloskop\nceloslovanský\nceloslovensky\nceloslovenský\ncelospoločensky\ncelospoločenský\ncelosť\ncelostne\ncelostnosť\ncelostný\ncelostranícky\ncelostránkový\ncelostranový\ncelostvetový\ncelosvetove\ncelosvetovo\ncelosvetový\nceloštátne\nceloštátny\ncelotýždenne\ncelotýždenný\ncelotýždňový\ncelovať\ncelovečerný\ncelový\ncelozávodný\ncelozrnný\ncelozrný\ncelozväzový\nceloživotne\nceloživotný\ncelt\ncelta\nceltovina\nceltový\ncelučičký\ncelučký\ncelula\ncelulárna\ncelulárne\ncelulárneho\ncelulárnej\ncelulárnemu\ncelulárni\ncelulárnom\ncelulárnou\ncelulárnu\ncelulárny\ncelulárnych\ncelulárnym\ncelulárnymi\nceluláza\ncelulinký\ncelulitída\nceluloid\nceluloidový\ncelulóz\ncelulózach\ncelulózam\ncelulóza\ncelulózka\ncelulózkový\ncelulózne\ncelulózovo\ncelulózový\ncelunký\ncelý\ncelzián\ncelziový\nCelzius\ncembalo\ncementácia\ncementačný\ncementár\ncementáreň\ncementárensky\ncementárenský\ncementárňach\ncementárňam\ncementárska\ncementárske\ncementárskeho\ncementárskej\ncementárski\ncementárskom\ncementárskou\ncementársku\ncementársky\ncementárskych\ncementárskym\ncementárskymi\ncementárstva\ncementárstve\ncementárstvo\ncement\ncementmi\ncementovania\ncementovanie\ncementovaný\ncementovať\ncementovo\ncementový\ncemeterium\nCemjate\ncena\ncencúľa\ncencúle\ncencúli\ncencúlik\ncencúľ\ncencúľmi\ncencúľoch\ncencúľom\ncencúľov\ncencúľovitý\ncencúľový\ncencúľu\ncenenie\ncenený\nceng\ncengáčik\ncengáč\ncengáčový\ncengálka\ncengať\ncengávať\ncengavý\ncengnutie\ncengnúť\ncengotať\ncengotavý\ncengot\ncengotmi\ncenin\ncenina\nceninový\nceniť\ncenne\ncennejší\ncenník\ncenníkový\ncenno\ncennosť\ncenný\ncenobita\ncenóbium\ncenocyt\ncenogaméta\ncenogenéza\ncenotvorný\ncenove\ncenovka\ncenovo\ncenový\ncenóza\ncenta\nCentaurus\ncent\ncentenárium\ncenterB\ncentesimo\ncentezimálny\ncenti\ncentier\ncentifólia\ncentigram\ncentík\ncentíkov\ncentiliter\ncentim\ncentime\ncentimeter\ncentimetrový\ncentimu\ncentmi\ncentový\ncentr\ncentrácia\ncentrál\ncentrálach\ncentrálam\ncentrála\ncentralista\ncentralisticky\ncentralistický\ncentralizácia\ncentralizačný\ncentralizmus\ncentralizovane\ncentralizovania\ncentralizovanie\ncentralizovaním\ncentralizovanosť\ncentralizovaný\ncentralizovať\ncentrálne\ncentrálnosť\ncentrálny\ncentráž\ncentricita\ncentricky\ncentrický\ncentrifugáciou\ncentrifugálnosť\ncentrifugálny\ncentrifúga\ncentrifugovať\ncentriola\ncentripetálne\ncentripetálnosť\ncentripetálny\ncentrista\ncentristicky\ncentristický\ncentrizmus\ncentronukleus\ncentroplán\ncentroplast\ncentroplazma\ncentrosféra\ncentrova\ncentrovacie\ncentrovanie\ncentrovaný\ncentrovať\ncentrum\ncentúria\ncenuróza\ncenze\ncenzom\ncenzor\ncenzormi\ncenzorský\ncenzorstvo\ncenzov\ncenzu\ncenzúr\ncenzúrach\ncenzúram\ncenzúra\ncenzúrny\ncenzurované\ncenzurovanej\ncenzurovanie\ncenzurovaniu\ncenzurovaných\ncenzurovanými\ncenzurovať\ncenzus\ncepa\ncepáň\ncep\ncepík\ncepín\ncepisko\ncepovanie\ncepový\ncér\ncera\nceratodon\ncer\nCerbera\ncerberovský\ncerberus\nCerberus\ncercle\ncereáliách\ncereáliám\ncereáliami\ncereálie\ncereálií\ncereálny\ncerebellum\ncerebrálny\ncerebropatia\ncerebrospinálny\ncerebrovaskulárny\ncerebrum\nceremeniál\nceremeniáli\nceremeniálu\nceremeniály\nceremoniál\nceremoniále\nceremoniálmi\nceremoniálnosť\nceremoniálny\nceremoniár\nceremónia\nceremónny\ncerenie\nCeres\ncereus\ncerezín\nceriaci\ncerid\ncerín\ncerit\nceriť\ncérium\ncerkária\ncerkev\ncerkláž\ncerkosporióza\ncerkvách\ncerkvám\ncerkvami\ncerkvi\ncerkví\ncerkvou\ncermet\nCerne\ncerografia\nceroplastika\nCerove\nCerovo\ncerovská\nCerovský\ncerový\ncerte\ncertifikácia\ncertifikačný\ncertifikát\ncertifikátmi\ncertifikovania\ncertifikovanie\ncertifikovaním\ncertifikovaniu\ncertifikovaný\ncertifikovať\ncerumen\ncerus\ncérus\ncerúz\nceruza\nceruzit\nceruzkáreň\nceruzka\nceruzkový\nceruzôčka\ncervantit\ncervicitída\ncervikálny\ncesia\ncesie\ncesii\ncesionár\ncesiou\ncesiu\ncesnačka\ncesnak\ncesnakovica\ncesnakový\ncest\ncestár\ncestársky\ncestárstvo\ncesta\ncestička\ncestíčko\ncestne\ncestno\ncestný\ncestóda\ncestodológia\ncestodóza\ncesto\ncestopis\ncestopisný\ncestovaného\ncestovanie\ncestovanom\ncestovateľ\ncestovateľka\ncestovateľsky\ncestovateľský\ncestovať\ncestovávať\ncestovina\ncestovinový\ncestovka\ncestovne\ncestovný\ncestovo\ncestový\ncestujúci\ncestúvať\ncetán\ncetera\nCetín\ncetyl\ncez\ncézar\ncézara\nCézarom\ncézaropapizmus\nCézarovi\ncézarská\ncezčasový\ncezeň\ncezhraničný\ncézia\ncéziový\ncézium\nCézium\ncezmína\ncezo\ncezoň\ncezpoľný\ncezpoly\ncezúra\nCGI\nCGT\nci\nCI\nCIA\nciageľ\nciach\nciacha\nciachovací\nciachovacia\nciachovacie\nciachovacích\nciachovačka\nciachovadlo\nciachovane\nciachovania\nciachovanie\nciachovaním\nciachovaný\nciachovať\nciachovné\nciachovného\nciachovnému\nciachovnom\nciachovným\nciachový\nciapčať\nciaš\nciaška\ncíba\ncíb\ncibéb\ncibéba\ncibéby\ncibelín\ncibet\ncibeta\ncíbik\ncibofóbia\ncibórium\ncíbový\ncibrenia\ncibrenie\ncibrí\ncibrím\ncibríme\ncibríš\ncíbriť\ncibríte\ncibriť\ncibuľa\ncibuliarov\ncibuľka\ncibuľkový\ncibuľnatý\ncibuľovite\ncibuľovito\ncibuľovitý\ncibuľový\ncic\ncicadlo\ncicajúci\ncicanie\ncicaním\ncicať\ncica\ncicavci\ncicavčí\ncicavec\ncicavý\ncícer\ncícerkať\ncícermi\nCicero\ncícerok\ncicero\ncicerón\ncicerone\ncicerónsky\ncicerónsky\ncícerový\ncícery\nciciačik\nciciačiky\nciciakB\ncicier\ncicit\ncickať\ncicka\ncíckom\ncíček\ncíčkom\ncider\ncidlíkom\nCiech\nciek\ncieľavedome\ncieľavedomejšej\ncieľavedomejší\ncieľavedomejšia\ncieľavedomejšie\ncieľavedomejšieho\ncieľavedomejšiemu\ncieľavedomejších\ncieľavedomejším\ncieľavedomejšími\ncieľavedomejšiu\ncieľavedomejšom\ncieľavedomejšou\ncieľavedomo\ncieľavedomosť\ncieľavedomý\ncielene\ncielenia\ncielenie\ncielením\ncieleniu\ncielenosť\ncielený\ncielik\ncieliť\ncieľ\ncieľmi\ncieľnik\ncieľoch\ncieľom\ncieľov\ncieľove\ncieľovo\ncieľový\ncieľu\ncieľuprimerane\ncieľuprimeranosť\ncieľuprimeraný\ncieňach\ncieňam\ncieňa\ncieň\ncienička\ncieňička\nciepčal\nciepčať\nciepkal\nciepkať\nCieszyn\ncieva\ncievka\ncievkovať\ncievkovitý\ncievkový\ncievny\ncievočka\ncievovky\ncievový\ncif\nciferne\nciferník\nciferníkový\nciferný\ncifier\ncifráň\ncifraňa\ncifra\ncifričkár\ncifrička\ncifrovane\ncifrovaný\ncifrovať\ncifruľa\ncifruša\ncigájach\ncigájam\ncigája\ncigájí\ncigájka\ncigájky\ncigán\ncigáň\ncigánča\ncigánčatiek\ncigánčatko\ncigánčin\ncigánčinách\ncigánčinám\ncigánčinami\ncigánčina\ncigáne\ncigánik\ncigániť\ncigánka\ncigánočka\nCigáňova\ncigánsky\ncigánstvach\ncigánstvam\ncigánstvo\ncigár\ncigara\ncigareta\ncigaretieľ\ncigaretka\ncigaretľa\ncigaretový\ncigariek\ncigarky\ncigarový\ncigaršpic\nCígeľ\nCigla\nCígľa\nCígli\ncigória\ncigóriový\ncigorka\ncichlida\ncichorín\ncik\nCik\ncikád\ncikádach\ncikádam\ncikáda\ncikanie\ncikaniu\ncikať\ncikatrizácia\ncikcak\ncik-cak\ncikcak\ncikcakovite\ncikcakovito\ncikcakovitý\ncikcakový\ncíkom\nciliárny\ncílie\ncililing\nciling\ncilingať\ncimbala\ncimbal\ncimbalista\ncimbalistka\ncimbalmi\ncimbalový\ncimburie\ncimélia\nCimenná\ncímer\ncímermi\ncímery\ncimier\ncimpr\ncimpr-campr\ncimra\ncin\ncinabarit\ncinár\ncináreň\ncinárstvo\ncín\ncinemaskop\ncinerácia\ncinerária\ncinerárium\ncing\ncingá\ncingi\ncingilingi\ncingi-lingi\ncingot\ncingulum\ncinchonín\ncínia\ncink\ncinkajúci\ncinkania\ncinkanie\ncinkať\ncink\ncinknutí\ncinknutie\ncinknutím\ncinknúť\ncinkotá\nCinobaňa\nCinobane\nCinobani\ncinobanský\ncinóber\ncínovanie\ncínovať\ncínovec\ncínový\ncinquecento\ncintľavka\ncintľavo\ncintľavosť\ncintľavý\ncintorín\ncintorínový\ncintorínsky\ncinzán\ncinzanach\ncinzanam\ncinzano\ncip\ncíp\ncip-cip\ncípček\nCIPE\ncípik\ncípka\ncipka\ncípku\ncípok\ncípový\ncipuška\nCIR\nciráda\ncirca\ncirhóz\ncirhózach\ncirhózam\ncirhóza\ncirk\ncirka\ncirkadiálny\ncirkadiánny\ncirkách\ncirkám\ncirke\ncirkev\ncirkevne\ncirkevnícky\ncirkevnícky\ncirkevníčka\ncirkevník\ncirkevnoprávny\ncirkevnoslovanský\ncirkevný\ncirkoráma\ncirku\ncirkulácia\ncirkulačný\ncirkulár\ncirkulárka\ncirkulárny\ncirkulovanie\nCirkulovaním\ncirkulovať\ncirkulujúci\ncirkumanálny\ncirkumcízia\ncirkumekvatoriálny\ncirkumferencia\ncirkumflex\ncirkumflexia\ncirkumlunárny\ncirkumpolárny\ncirkumzenitál\ncirkusácky\ncirkusák\ncirkusant\ncirkusantka\ncirkusantský\ncirkus\ncirkusový\ncirkvách\ncirkvám\ncirkvami\ncirkvi\ncirkví\ncirkvou\ncirky\nCirocha\ncirok\ncirokový\ncirokumulus\ncirostratus\ncirošský\ncirrus\ncirus\ncisár\ncisárovná\ncisárov\ncisársky\ncisárstvach\ncisárstvam\ncisárstvo\ncislunárny\ncista\ncistercián\ncisterciánskeho\ncistercita\ncisterien\ncisterna\ncisternovo\ncisternový\ncistrón\ncitácia\ncitadel\ncitadela\ncitadiel\ncitár\ncitara\ncitarista\ncitaristka\ncitarový\ncitát\ncitátmi\ncitátománia\ncitátový\ncit\nciteľne\nciteľný\ncítenie\ncítený\ncitera\ncítiaci\ncítievaš\nCítievaš\ncítiť\nCitizen\ncitlivec\ncitlivkár\ncitlivkársky\ncitlivkárstvach\ncitlivkárstvam\ncitlivkárstvo\ncitlivka\ncitlivo\ncitlivosť\ncitlivuškár\ncitlivuškársky\ncitlivuškárstvo\ncitlivý\ncitmi\ncitnosti\ncitný\ncitosl\ncitoslovce\ncitoslovcový\ncitosloviec\ncitoslovný\ncitovania\ncitovanie\ncitovaním\ncitovaniu\ncitovaný\ncitovať\ncitove\ncitovejší\ncitovo\ncitovosť\ncitový\ncitrát\ncitrátu\ncitrín\ncitroën\ncitronád\ncitronádach\ncitronádam\ncitronáda\ncitronát\ncitrón\nCitrone\ncitrónovník\ncitrónovníkový\ncitrónovo\ncitrónovožltý\ncitrónový\ncitrovník\ncitrusár\ncitrus\ncitrusový\ncituplný\ncitura\ncity\nCitybus\nCitybusom\ncitybusov\ncitybusu\ncitybusy\ncivej\ncivejme\ncivejte\ncivejú\ncivejúc\ncivenie\ncivie\nciviem\ncivieme\ncivieš\nciviete\ncivieť\ncivilB\ncivilista\ncivilistika\ncivilita\ncivilizácia\ncivilizačne\ncivilizačno\ncivilizačný\ncivilizátor\ncivilizmus\ncivilizovane\ncivilizovania\ncivilizovanosť\ncivilizovaný\ncivilizovať\ncivilkár\ncivilka\ncivilne\ncivilno\ncivilnoprávny\ncivilnosť\ncivilný\ncivis\ncizelér\ncizelérsky\ncizelérstvo\ncizelovane\ncizelovania\ncizelovanie\ncizelovaním\ncizelovanosť\ncizelovaný\ncizelovať\ncizioján\ncizúra\nCJ\nCK\nCKM\ncl\nCL\ncladonia\nclarino\nclaudetit\nclavecin\nclayonáž\nclearing\nclearingmi\nclearingoch\nclearingom\nclearingov\nclearingovo\nclearingový\nclearingu\nclearingy\nCleveland\nclinch\nclip\nclipboard\nClive\nclivieť\nclivo\nclivosť\nclivota\nclivý\nclo\nclôn\nclona\nclonenie\nclonený\ncloniaci\ncloniť\nclonka\nclonový\nclou\ncm\ncmar\ncmarový\nCME\ncmiter\ncmuk\ncmukať\ncmukla\ncmukli\ncmuklo\ncmukne\ncmuknem\ncmukneme\ncmukneš\ncmuknete\ncmukni\ncmuknime\ncmuknite\ncmuknú\ncmuknúc\ncmuknúť\ncmukol\nCmuky\ncmúľajúci\ncmúľaní\ncmúľať\ncmúlik\ncmuľkať\nCN\ncnej\ncnejme\ncnejte\ncnejú\ncnejúc\ncnel\ncnela\ncneli\ncnelo\ncnenie\ncnie\ncniem\ncnieme\ncnieš\ncnieť\ncniete\nCNN\ncnosť\ncnostne\ncnostný\nCNV\nCNX\nCNY\nco\nCO\ncoach\ncob\ncobbler\nCOBOL\ncockney\nCOCOM\nCoctail\ncoctaile\ncoda\ncofala\ncofať\ncofkať\ncogito\ncohn\ncochonerie\ncoitus\ncoky\ncóla\ncól\ncolbertizmus\ncolby\ncoli\ncóli\ncollege\ncollier\ncólmi\ncolne\ncolnica\ncolníctva\ncolníctve\ncolníctvo\ncolník\ncolno\ncolný\nColorado\ncoloradská\ncoloradské\ncoloradského\ncoloradskej\ncoloradskom\ncoloradskou\ncoloradsky\nColoradský\ncólový\ncolštok\ncólštoka\ncólštok\ncolumbia\nColumbijská\nColumbijskej\ncom\ncombáľa\ncombáľaj\ncombáľajme\ncombáľajte\ncombáľajú\ncombáľajúc\ncombáľal\ncombáľala\ncombáľali\ncombáľalo\ncombáľam\ncombáľame\ncombáľaš\ncombáľať\ncombáľate\ncombálať\ncombo\ncomics\ncommedia\ncommis\ncommodo\nCommonwealth\ncompany\nCompaq\ncomputer\nconcertíno\nconcertino\nConcordia\nConcordie\nConcordii\nConcordiu\nconditio\nconductus\nconfig\nConner\nconquista\nconquistador\nconquistadorský\nconsommé\ncontradictio\ncooler\ncopyright\ncor\nCordoba\ncórdoba\nCórdoba\nCordobe\ncordobu\nCordoby\ncordon\nCorel\ncorgoň\ncorgoni\nCorgoni\ncorgonísk\ncorgoniská\ncorgoniskách\ncorgoniskám\ncorgonisko\ncorgonisku\ncorium\ncornflakes\ncoroner\ncorps\nCorps\nCorpsu\ncorpus\ncorrida\ncorridou\ncorrigenda\nCosinus\ncotton\ncoulomb\ncoulombmetria\ncoulometria\ncoulommiers\ncountdow\ncountry\ncountryový\ncountyový\ncousin\ncousine\nCP\nCPU\nCR\ncrack\ncracker\ncrash\ncrawl\ncrazy\ncrč\ncrčať\ncrči\ncrčime\ncrčite\ncŕčkať\ncŕčkom\ncŕčky\ncremeroll\nCremona\ncrescat\ncrescendo\ncriakať\ncrinkle\ncripľavý\ncrk\ncŕk\ncŕka\ncŕkam\ncŕkame\ncŕkaš\ncŕkate\ncrkať\ncŕkať\ncrk\ncŕkmi\ncrknúť\ncŕkoch\ncŕkom\ncrkotajúci\ncrkotať\ncrkot\ncrkotmi\ncŕkov\ncŕku\ncŕky\ncroisant\ncrossbar\nCRTL\ncruising\ncrux\nCS\nCSc\nCSKA\ncsl\nCSU\ncťami\nctenie\nctenno\nctený\ncti\nctiach\nctiam\nctibažne\nctibažník\nctibažnosť\nctibažný\nCtibora\nCtibor\nCtibormi\nCtiboroch\nCtiborom\nCtiborov\nCtiborovi\nCtiborovia\nctihodne\nctihodnosť\nctihodný\nctime\nCtime\nCtirad\nCtirada\nCtiradom\nCtislav\nCtislavovi\nctite\nctiteľ\nctiteľka\nctiť\nctižiadostivec\nctižiadostivo\nctižiadostivosť\nctižiadostivý\nctižiadosť\ncťou\nCTRL\ncuajada\ncucať\ncuciak\ncuciaku\ncuciaky\ncucká\ncuckaj\ncuckajme\ncuckajte\ncuckajú\ncuckajúc\ncuckal\ncuckala\ncuckali\ncuckalo\ncuckám\ncuckáme\ncuckáš\ncuckať\ncuckáte\ncucu\ncucuracha\ncudi\ncudia\ncúdiť\ncudne\ncudnosť\ncudný\ncudzejšej\ncudzejšieho\ncudzejšiemu\ncudzejších\ncudzejším\ncudzejšími\ncudzejšiu\ncudzejšom\ncudzejšou\ncudziar\ncudzí\ncudzín\ncudzinách\ncudzinám\ncudzinami\ncudzina\ncudzincova\ncudzincovej\ncudzincovom\ncudzinec\ncudzinecký\ncudzinka\ncudzinský\ncudzo\ncudzobažný\ncudzoduchý\ncudzojazyčne\ncudzojazyčnosť\ncudzojazyčný\ncudzokrajne\ncudzokrajnosť\ncudzokrajný\ncudzoložiť\ncudzoložne\ncudzoložnica\ncudzoložnícky\ncudzoložník\ncudzoložný\ncudzoložstvo\ncudzonárodný\ncudzopasec\ncudzopasenie\ncudzopasiť\ncudzopasne\ncudzopasníci\ncudzopasnícky\ncudzopasníctvach\ncudzopasníctvam\ncudzopasníctvo\ncudzopasníčiť\ncudzopasník\ncudzopasníkovi\ncudzopasný\ncudzorečový\ncudzorodejšej\ncudzorodejší\ncudzorodejšia\ncudzorodejšie\ncudzorodejšieho\ncudzorodejšiemu\ncudzorodejších\ncudzorodejším\ncudzorodejšími\ncudzorodejšiu\ncudzorodejšom\ncudzorodejšou\ncudzorodo\ncudzorodosť\ncudzorodý\ncudzosť\ncudzota\ncudzotný\ncudzozemec\ncudzozemský\ncukerín\ncuketa\ncuketový\ncukina\ncukinový\ncukornatenie\ncukornatieť\ncukornatosť\ncukornatý\ncukornička\ncukorný\ncukor\nCukra\ncukrár\ncukráreň\ncukrárenský\ncukrárka\ncukrárňach\ncukrárňam\ncukrárnička\ncukrársky\ncukrárstvach\ncukrárstvam\ncukrárstvo\ncukríček\ncukríčka\ncukríčkami\ncukríčkoch\ncukríčkom\ncukríčkov\ncukríčku\ncukríčky\ncukrikár\ncukrikárka\ncukrík\ncukríkový\ncukriť\ncukrovanie\ncukrovar\ncukrovarníci\ncukrovarnícky\ncukrovarníctvach\ncukrovarníctvam\ncukrovarníctvo\ncukrovarník\ncukrovarníka\ncukrovarníkmi\ncukrovarníkoch\ncukrovarníkom\ncukrovarníkov\ncukrovarníkovi\ncukrovať\ncukrovina\ncukrovinkársky\ncukrovinkársky\ncukrovinkárstvo\ncukrovinka\ncukrovinkový\ncukrovkár\ncukrovkára\nCukrovkári\ncukrovkárom\ncukrovkárov\ncukrovka\ncukrovkový\ncukrovo\ncukrový\ncukrú\nculpa\ncumeľ\ncumľa\ncumľami\ncumlať\ncumľať\ncumlíček\ncumlík\ncumľoch\ncumľom\ncumľov\ncunami\ncundrať\ncundra\nCunín\ncupajdovať\ncupi\nCupido\ncupi-dupi\ncupi-lupi\ncupilupy\ncupinôžka\ncupitať\ncupitkať\ncupkanie\ncupkať\ncupnúť\ncupotanie\ncupotať\ncupot\ncupotmi\ncuprum\ncupy\ncupy-dupy\ncupy-lupy\ncuracao\ncurgať\ncurgla\ncurgli\ncurglo\ncurgne\ncurgnem\ncurgneme\ncurgneš\ncurgnete\ncurgni\ncurgnime\ncurgnite\ncurgnú\ncurgnúc\ncurgnúť\ncurgol\ncurigá\ncurigaj\ncurigajme\ncurigajte\ncurigajú\ncurigajúc\ncurigal\ncurigala\ncurigali\ncurigalo\ncurigám\ncurigáme\ncurigáš\ncurigať\ncurigáte\ncurigla\ncurigli\ncuriglo\ncurigne\ncurignem\ncurigneme\ncurigneš\ncurignete\ncurigni\ncurignime\ncurignite\ncurignú\ncurignúc\ncurignúť\ncurigol\ncurit\ncurk\ncurkať\ncurling\ncurriculum\ncurry\ncurukať\ncutis\ncúvajúci\ncúvaní\ncúvanie\ncúvaním\ncúvať\ncúvnutie\ncúvnutím\ncúvnuto\ncúvnuť\ncúvnutý\nCV\ncvak\ncvakanie\ncvakať\ncvaknutie\ncvaknúť\ncvakotať\ncvakot\ncvakotmi\ncválajúci\ncválať\ncval\ncvalmi\ncvalom\ncvalový\nCVČ\ncvendžať\ncvendžavý\ncvendži\ncvendžiaci\ncvendžime\ncvendžite\ncvendživý\ncvengať\ncvengavý\ncveng\ncvengmi\ncvengnúť\ncvengoch\ncvengom\ncvengot\ncvengotmi\ncvengov\ncvengu\ncvengy\ncverien\ncverna\ncvernovka\ncvernový\ncvičebňa\ncvičebnica\ncvičebnicový\ncvičebný\ncvičene\ncvičenec\ncvičenie\ncvičenka\ncvičený\ncvičísk\ncvičisko\ncvičiteľ\ncvičiteľka\ncvičiteľský\ncvičiť\ncvička\ncvične\ncvičnec\ncvičný\ncviká\ncvikací\ncvikačky\ncvikaj\ncvikajme\ncvikajte\ncvikajú\ncvikajúc\ncvikal\ncvikala\ncvikali\ncvikalo\ncvikám\ncvikáme\ncvikáš\ncvikať\ncvikáte\ncvik\ncviker\ncvikiel\ncvikla\ncvikli\ncviklička\ncviklo\ncviklovočervený\ncviklový\ncvikne\ncviknem\ncvikneme\ncvikneš\ncviknete\ncvikni\ncviknime\ncviknite\ncviknú\ncviknúc\ncviknúť\ncvikol\nCvikove\ncvikový\ncvilich\ncvoci\ncvoček\ncvočka\ncvočkami\ncvočkoch\ncvočkom\ncvočkov\ncvočku\ncvočky\ncvok\ncvoku\ncvoky\ncvrčať\ncvrček\ncvrčka\nCvrčka\ncvrčkami\ncvrčkoch\ncvrčkom\ncvrčkov\nCvrčkove\nCvrčkovho\ncvrčkovi\ncvrčky\ncvŕk\ncvrkať\ncvŕkať\ncvrk\ncvrknutie\ncvrknúť\ncvrkotať\ncvrkot\ncvrkotmi\ncvrlikaní\ncvrlikania\ncvrlikanie\ncvrlikaniu\ncvrlikať\ncvrnk\nCWC\nCY\ncyankáli\ncyankály\ncyanóza\ncyatostomóza\ncybeteria\ncydónia\ncykas\ncyklamát\ncyklámen\ncyklámenový\ncyklami\ncykle\ncyklenie\ncyklickosť\ncyklicky\ncyklický\ncykličnosť\ncykličnosti\ncykličnosťou\ncyklida\ncyklista\ncyklistický\ncyklistika\ncyklistka\ncykliť\ncyklitída\ncyklizáci\ncyklodróm\ncyklofrénia\ncyklograf\ncyklogram\ncykloch\ncykloid\ncykloida\ncykloklosár\ncyklokomputer\ncyklokros\ncyklom\ncyklometer\ncyklometria\ncyklometrický\ncyklóna\ncyklón\ncyklónový\ncyklopit\ncykloserín\ncyklostyl\ncyklostylmi\ncyklostylovanie\ncyklostylovaný\ncyklostylovať\ncyklostylový\ncyklotol\ncyklotrial\ncyklotró\ncyklotrón\ncyklotrónový\ncykloturistika\ncyklotýmia\ncyklov\ncyklovač\ncyklované\ncyklovanie\ncyklovej\ncyklových\ncyklóza\ncyklu\ncyklus\ncykly\ncylinder\ncylindricky\ncylindrický\ncylindróm\ncylindrový\ncymbídium\ncynici\ncynickosť\ncynicky\ncynický\ncynik\ncynizmus\nCyperčan\nCyperčanka\ncyperský\nCypre\nCyprián\nCyprom\ncypru\nCypru\ncyprus\nCyprus\ncyprusový\ncypruštek\ncyriak\nCyril\ncyrilika\ncyrilo\nCyrilometodejská\ncyrilometodejských\ncyrilo-metodovský\ncyrilo-metodský\ncyrilský\nCyrix\nCyrus\ncýst\ncystadenóm\ncystalgia\ncysta\ncysteín\ncystektómia\ncysticerkóza\ncystický\ncystitída\ncystografia\ncystolitiáza\ncystóm\ncystoskop\ncystoskopia\ncystóza\ncytoblast\ncytocentrum\ncytodiagnostika\ncytofarynx\ncytofyziológia\ncytogamia\ncytogén\ncytogenetika\ncytogenéza\ncytokinéza\ncytológia\ncytologicky\ncytologický\ncytolýza\ncytomegália\ncytomorfológia\ncytoplaziem\ncytoplazmatiský\ncytoplazma\ncytostatika\ncytostatiká\ncytostatikách\ncytostatikám\ncytostatikami\ncytostatikum\ncytotoxický\ncytotoxín\ncytozín\ncytozóm\nCZ\nCZK\nCZV\nč\nČ\nča\nČA\nČab\nČaba\nčabajka\nčabiansky\nčabiansky\nČabinách\nČabiny\nčabrak\nčabraka\nčabrať\nčačaný\nčača\nČačína\nčačina\nČačíne\nčačinový\nčačká\nčačkaj\nčačkajme\nčačkajte\nčačkajú\nčačkajúc\nčačkal\nčačkala\nčačkali\nčačkalo\nčačkáme\nčačkanie\nčačkáš\nčačkať\nčačkáte\nčačkavý\nčačka\nČáčov\nČáčove\nČačovej\nčad\nČad\nČadca\nČadce\nČadci\nČadcou\nČadcu\nčadčianska\nčadčianske\nčadčianskeho\nčadčianskej\nčadčianskemu\nčadčianski\nčadčianskom\nčadčianskou\nčadčiansku\nČadčiansky\nčadčianskych\nčadčianskym\nčadiaci\nčadič\nčadičový\nčadiť\nčadivý\nČadra\nčady\nčachrár\nčachrársky\nčachre\nčachriť\nčachroch\nčachrom\nčachrov\nčachrovaní\nčachrovania\nčachrovanie\nčachrovaniu\nčachrovať\nčachtického\nčachtickí\nčachtických\nČachtický\nČajakove\nčajčí\nčajíček\nčajíčka\nčajíčkami\nčajíčkoch\nčajíčkom\nčajíčkov\nčajíčku\nčajíčky\nčajík\nčaj\nčajka\nČajkov\nČajkove\nČajkovského\nčajné\nčajník\nčajovka\nčajovňa\nčajovní\nčajovník\nčajovníkovým\nčajový\nčajsi\nčáka\nčakací\nčakajúci\nčakan\nčakanie\nčakanka\nčakankovo\nčakaný\nčakáreň\nčakárenský\nčakárňach\nčakárňam\nčakateľ\nčakateľka\nčakateľský\nčakať\nčakáva\nčakávaj\nčakávajme\nčakávajte\nčakávajú\nčakávajúc\nčakával\nčakávala\nčakávali\nčakávalo\nčakávam\nčakávame\nčakávaniach\nčakávanou\nčakávanú\nčakávaš\nčakávať\nčakávate\nČaklov\nČaklova\nČaklove\nčákov\nčakra\nčalamád\nčalamádach\nčalamádam\nčalamáda\nČalovci\nČalove\nČalovec\nČalovo\nčalún\nčalúnenie\nčalúnený\nčalúnický\nčalúnikov\nčalúniť\nčalúnnický\nčalúnnictvo\nčalúnnik\nčamara\nčampaka\nčamrva\nČaňa\nČane\nČani\nČaní\nčankať\nČankov\nČankova\nČaňou\nČaňu\nčao\nčapato\nčapatosť\nčapatý\nčap\nčapci\nčapcime\nčapcite\nčapcovať\nčapica\nčapička\nčapík\nčapiť\nčapkať\nčapnúť\nČapore\nčapovací\nčapovania\nčapovanie\nčapovaním\nčapovaný\nčapovať\nčapovcový\nčapovec\nčapový\nčapták\nčaptaňa\nčaptáň\nčaptaní\nčaptáni\nčaptať\nčaptavo\nčaptavý\nčapta\nčaptoš\nčapurda\nčar\nČarák\nčarať\nčara\nčarbák\nčarbal\nčarbala\nčarbali\nčarbalo\nčarbance\nčarbanec\nčarbanica\nčarbanina\nčarbať\nčarbe\nčarbem\nčarbeme\nčarbeš\nčarbete\nčarbi\nčarbime\nčarbite\nčarbú\nčarbúc\nčardáša\nčardáše\nčardáši\nčardáš\nčardášmi\nčardášoch\nčardášom\nčardášov\nčardášu\nčárda\nčaringa\nčariť\nČarný\nčarodej\nčarodejka\nčarodejnica\nčarodejnícky\nčarodejníctvach\nčarodejníctvam\nčarodejníctvo\nčarodejníčka\nčarodejník\nčarodejný\nčarodejstvá\nčarodejstvo\nčarodejstvom\nčaroch\nčarokrásne\nčarokrásny\nčaro\nčarotajný\nčarov\nčarovaní\nčarovania\nčarovanie\nčarovaním\nčarovaniu\nčarovať\nčarovne\nčarovnosť\nčarovný\nČársky\nČárskym\nčarte\nčáry\nčary-mary\nčáry-máry\nčary\nčasa\nčas\nčasenka\nčasiť\nčasne\nčasnosť\nčasný\nčasom\nčasomera\nčasomeracej\nčasomerač\nčasomerače\nčasomeračský\nčasomeraču\nčasomer\nčasomerne\nčasomerný\nčasomiera\nčasopis\nčasopisecký\nčasopisectvo\nčasopriestor\nčasopriestorový\nčasovací\nčasovacia\nčasovacieho\nčasovač\nčasovanie\nčasovaný\nčasovať\nčasove\nčasovka\nčasovo\nčasovosť\nčasový\nčast\nčastica\nčasticový\nčasť\nČastkov\nčasto\nčastokrát\nčastosť\nčastovaný\nčastovať\nčastučko\nčastuška\nčastuško\nčastý\nčaša\nčaší\nčašnica\nčašnický\nčašnícky\nčašníctvo\nčašníčka\nčašník\nčát\nČataj\nČataji\nčatár\nčatárovo\nčatársky\nčata\nčatní\nčatrang\nčaturanga\nčau\nčaute\nČavoj\nČavoja\nČavojom\nČB\nČebovskej\nčeče\nČečehov\nčečín\nčečinách\nčečinám\nčečinami\nčečina\nčečinie\nčečinový\nčedar\nČech\nčechizácia\nčechizmus\nčechizovať\nčechoslovakista\nčechoslovakistický\nčechoslovakizmus\nČechova\nČechová\nČechove\nČechovej\nČechovmu\nČechovou\nčechrať\nčechriť\nČechynce\nČechy\nčejkoľvek\nčejsi\nčeka\nČeka\nČekám\nčekin\nčekista\nČekou\nčekovať\nčeľaď\nČeľadince\nčeľadinec\nčeľadnica\nčeľadnícky\nčeľadníčka\nčeladníčka\nčeľadník\nčeľadníku\nčeľadníky\nčeľadný\nčelbami\nčelbou\nčelby\nčelenie\nčeleniu\nčelenka\nčelenou\nčelesta\nčeliaci\nčeliadka\nčelíčko\nčelista\nčeliť\nčelne\nčelno\nčelný\nčelo\nČelovského\nčelový\nčeľusť\nčeľustie\nčeľustno\nčeľustný\nčelusťový\nčeľusťový\nčembál\nčembalo\nčembalový\nčemera\nčemer\nčemeri\nČemerička\nČemeričku\nČenkov\nČenkovské\nČenkovských\nČenstochová\nČenstochovej\nčenstochovský\nČenstochovú\nčepcový\nčepček\nčepči\nČepčianskeho\nČepčiansky\nčepčime\nČepčín\nčepčite\nčepčiť\nčepeľ\nčepeľový\nčeper\nčeperiť\nčeperte\nčepiec\nčepielka\nčepieľka\nčer\nčerebľa\nčereblí\nčereňa\nČereňanoch\nČereňany\nčereň\nčerene\nčereni\nčerenia\nčerenie\nčereňmi\nčereňoch\nčereňom\nčereňov\nčereňový\nčereňu\nčerený\nčerešieň\nčerešienka\nčerešňa\nčerešní\nčerešnička\nčerešňovica\nčerešňovo\nčerešňovočervený\nčerešňový\nČergov\nČergovská\nČergovské\nČergovského\nČergovských\nČerhov\nČerhova\nČerhove\nČerhovom\nčeriaci\nčeriesel\nčerieslo\nČerín\nČeríne\nČerínska\nčeriť\nČermáň\nČermáni\nČermanom\nČermany\nČernák\nČernáka\nČernákom\nČernákov\nČernákovi\nČernanie\nčernastý\nčernavý\nčerň\nčernejsí\nčernejšej\nčernejší\nčernejšia\nčernejšie\nčernejšieho\nčernejšiemu\nčernejších\nčernejším\nčernejšími\nčernejšiu\nčernejšom\nčernejšou\nčernenie\nčernica\nčernicový\nčerničie\nčernidlo\nčernieť\nČerník\nČerníka\nČerníkom\nčernistý\nČernobyľa\nČernobyľčan\nČernobyľčanka\nČernobyle\nČernobyli\nčernobyľ\nČernobyľom\nčernobyľový\nčernobyľský\nČernobyľu\nčernoch\nČernochova\nČernochove\nčernokňažnícky\nčernokňažníctvach\nčernokňažníctvam\nčernokňažníctvo\nčernokňažník\nčernoška\nČernoškov\nčernošský\nČernota\nčernotám\nčernote\nčernotou\nčernotu\nčernoty\nČernová\nČernovej\nČernovický\nčernovský\nčernozem\nčernozemný\nčernuľa\nčernuľka\nčerpací\nčerpadielko\nčerpadlár\nčerpadlo\nčerpadlový\nčerpajúcich\nčerpanie\nčerpaný\nčerpať\nčerstva\nčerstvieť\nčerstvo\nčerstvosť\nčerstvučký\nčerstvulinký\nčerstvunký\nčerstvušký\nčerstvý\nčertami\nčerťaž\nčert\nčerte\nčerthovie\nčertica\nčertík\nčertíky\nčertime\nčertisko\nčertite\nčertiť\nČertižné\nčertovica\nČertovice\nČertovici\nČertovicou\nČertovicu\nčertovina\nčertovsky\nčertovský\nčertovstvo\nčertov\nčertu\nčertvie\nčertvieako\nčertvieaký\nčertviečím\nčertviečo\nčertviečoho\nčertviečom\nčertviečomu\nčertviekoho\nčertviekoľko\nčertviekom\nčertviekomu\nčertviekto\nčertviekým\nčervač\nčervami\nčervavejme\nčervavejte\nčervavejú\nčervavejúc\nčervavel\nčervavela\nčervaveli\nčervavelo\nčervavie\nčervaviem\nčervavieme\nčervavieš\nčervavieť\nčervaviete\nčervavosť\nčervavý\nčervec\nčervena\nčervenajúci\nčerveňami\nčervenanie\nčervenasto\nčervenastý\nčervenať\nčervenavo\nčervenavý\nčerveniach\nčerveniam\nČervenica\nČervenice\nČervenici\nčervenicu\nčervenieť\nČerveník\nČerveníka\nČerveníku\nčerveň\nčervenkasto\nčervenkastý\nčervenkavo\nčervenkavý\nčerveno\nčervenoarmejec\nčerveno-biely\nčervenofialový\nčervenohnedý\nčervenolíci\nčervenomodrý\nčervenosť\nčervenostrakatý\nčerveňou\nčervenovlasý\nčervenožltý\nčervenučko\nčervenučký\nčervenunko\nčervenunký\nčervenuško\nčervenušký\nčervený\nčerviačí\nčerviačik\nčerviak\nčerviaky\nčervíček\nčervičí\nčervíčka\nčervíčkami\nčervíčkoch\nčervíčkom\nčervíčkov\nčervíčkovi\nčervíčky\nčervienkach\nčervienkam\nčervienkami\nčervienka\nčervienok\nčervík\nčervíkovi\nčervivieť\nčervivosť\nčervivý\nčerv\nčervotočami\nčervotočí\nčervotočiach\nčervotočiam\nčervotočivosť\nčervotočivý\nčervotoč\nčervotočou\nčervovitého\nčes\nčesací\nčesáč\nčesačka\nčesáčka\nčesadlo\nčesák\nčesania\nčesanie\nčesaný\nčesáreň\nčesárne\nčesárni\nčesať\nčesávaný\nčesávať\nčesiel\nčesko\nčeskobratský\nčeskokrumlovská\nčeskokrumlovského\nčeskokrumlovskej\nčeskokrumlovskom\nčeskokrumlovských\nčeskokrumlovskými\nČeskokrumlovský\nčeskolipský\nČesko\nČeskomoravský\nčeskoslovanský\nČeskoslovensko\nČesko-slovensko\nčeskoslovensky\nčeskoslovenský\nčesko-slovenský\nčeskosť\nčesky\nčeský\nčesla\nčeslá\nčesli\nčeslo\nčesnúť\nčesťN\nčesťnášťočný\nčestne\nčestnosť\nčestný\nČeška\nčešstva\nčeštenie\nČeští\nčeštín\nčeštinách\nčeštinám\nčeštinami\nčeština\nčeštiť\nčetník\nčevabčiči\nčevapčiči\nČEZ\nčharok\nči\nčiahať\nčiahnuci\nčiahnuť\nčiakoľvek\nčiapať\nčiapkárska\nčiapka\nčiapočka\nčiapt\nčiarať\nčiara\nčiarkať\nčiarka\nčiarknutie\nčiarknuť\nčiarkovane\nčiarkovaný\nčiarkovať\nčiarkovitý\nčiarkový\nčiarnuť\nčiaročka\nčiarový\nčias\nčiasi\nčiastka\nčiastkovo\nčiastkový\nčiastočka\nčiastočne\nčiastočnosť\nčiastočný\nčiaš\nčiaška\nčiaškový\nčiat\nčiateľský\nčiaže\nčibuk\nčibukový\nČičava\nčičíkaniam\nčičíkaním\nčičíkať\nčičíkavo\nčičíkavý\nČičmanoch\nČičmany\nČíčov\nČíčova\nČíčove\nčičrať\nčičre\nčičrem\nčičreme\nčičreš\nčičrete\nčičri\nčičrime\nčičrite\nčičrú\nčičrúc\nčida\nčidali\nčidaže\nčidla\nčidlo\nčiehokoľvek\nčiehosi\nčiehože\nčiej\nčiek\nčiekoľvek\nčiel\nčielko\nčielok\nčiemukoľvek\nčiemusi\nčiepčať\nčierňava\nčiernenie\nčierniť\nčierno\nčiernobalocký\nčiernobiely\nčierno-biely\nčiernohnedý\nČiernohorec\nčiernohoriek\nČiernohorka\nčiernohorský\nčiernokrídly\nčiernomodrý\nčiernomorský\nčiernooký\nčiernoplodého\nčiernosivý\nčiernot\nČiernota\nčiernote\nčiernotu\nčiernoty\nčiernouhoľný\nčiernovláska\nčiernovlasý\nČiernovodskej\nčiernozelenej\nčiernozelenými\nčiernozem\nčiernozemný\nčiernučký\nčiernulinký\nčiernušký\nčierny\nčierťaž\nčiesi\nčieže\nČIH\nčíhajúce\nčíhajúcim\nčíhať\nčíhavo\nčíhavý\nčihi\nčihí\nčíhokoľvek\nčihy\nčíchkoľvek\nčíchsi\nčí\nčík\nčikle\nčíkoľvek\nčikóš\nčíkovi\nčil\nČiľan\nČiľanka\nČile\nčili\nČilistov\nČilistova\nČilistove\nčilistovskom\nčilistovským\nČilistovu\nČiližská\nčílska\nčílske\nčílskeho\nčílskej\nčílskemu\nčílski\nčílskom\nčílskou\nčílsku\nčílsky\nčílskych\nčílskym\nčílskymi\nčilský\nčim\nčimčara\nčimčarara\nčímikoľvek\nčímisi\nčímkoľvek\nčímsi\nčímže\nčín\nčínach\nČíňan\nČíňania\nČíňanka\nČína\nčin\nčinčarara\nčinčila\nčinčilový\nčinela\nčinel\nčinelista\nčinelmi\nčinelový\nčinené\nčinenie\nčiniaci\nčinidlo\nčinitelia\nčiniteľC\nčiniteľka\nčiniteľský\nčiniteľu\nčiniť\nčinka\nčinne\nčinnosťN\nčinnostný\nčinný\nčinoherec\nčinoherný\nčinohra\nčinorodejšej\nčinorodejší\nčinorodejšia\nčinorodejšie\nčinorodejšieho\nčinorodejšiemu\nčinorodejších\nčinorodejším\nčinorodejšími\nčinorodejšiu\nčinorodejšom\nčinorodejšou\nčinorodo\nčinorodosť\nčinorodý\nčinovaťami\nčinovate\nčinovati\nčinovatí\nčinovatiach\nčinovatiam\nčinovaťou\nčinovaťový\nčinovať\nčinovník\nčínsky\nčínsky\nčínštin\nčínštinách\nčínštinám\nčínštinami\nčínština\nčinža\nčinže\nčinži\nčinží\nčinžiak\nčinžové\nčinžového\nčinžových\nčinžovými\nčiom\nčip\nČíp\nčip\nčipčať\nčipči\nčipčime\nčip-čip\nčipčite\nčiperný\nčípka\nčípkami\nčipkár\nčipkáreň\nčipkárka\nčipkársky\nčipkárstvach\nčipkárstvam\nčipkárstvo\nčipkastý\nčipkavý\nčipka\nčípkoch\nčípkom\nčípkov\nčipkovacích\nčipkovaný\nčipkovina\nčipkovitý\nčipkový\nčípku\nčípky\nčipôčka\nčípok\nčipotať\nčipový\nčips\nČirč\nčírejšej\nčírejší\nčírejšia\nčírejšie\nčírejšieho\nčírejšiemu\nčírejších\nčírejším\nčírejšími\nčírejšiu\nčírejšom\nčírejšou\nčírenie\nčiričiri\nčíridlo\nčíriť\nčíro\nčíročíry\nčíročistý\nčírosť\nčírosti\nčírovka\nčíry\nčís\nčíseliek\nčíselko\nčíselne\nčíselník\nčíselníkový\nčíselný\nčísi\nčísl\nčíslach\nčíslam\nčíslic\nčíslica\nčíslicovo\nčíslicový\nčísliel\nčíslo\nčíslov\nčíslovací\nčíslovač\nčíslovači\nčíslovačka\nčíslovane\nčíslovania\nčíslovanie\nčíslovaniu\nčíslovaný\nčíslovať\nčíslovka\nčíslovkový\nčista\nčistcový\nčiste\nčistec\nčistejšíF\nčistene\nčistenie\nčistený\nčisti\nčistiaci\nčistiareň\nčistiarenský\nčistiarňach\nčistiarňam\nčističJ\nčistička\nčistidlo\nčistime\nčistín\nčistina\nčistinka\nčistite\nČistite\nčistiť\nčistka\nčisto\nčistokrvnosť\nčistokrvný\nčistopis\nčistopisný\nčistôt\nčistotách\nčistotám\nčistotami\nčistotaN\nčistotne\nčistotnosť\nčistotný\nčistotymilovný\nčistučko\nčistučký\nčistulinko\nčistulinký\nčistunko\nčistunký\nčistý\nčit\nčítací\nčítač\nčítačka\nčítačmi\nčítačom\nčítačov\nčítajúci\nčítane\nčítanie\nčítanka\nčítankovo\nčítankový\nčítanosť\nčítanosti\nčítanosťou\nčítaný\nčitáreň\nčitarenský\nčitárenský\nčitárňach\nčitárňam\nčitateľJ\nčitatelia\nčitateľka\nčitateľne\nčitateľnosť\nčitateľný\nčitateľov\nčitateľsky\nčitateľský\nčitateľstvo\nčitateľu\nčítať\nčítavať\nčítavý\nčítka\nčítkaj\nčítkajme\nčítkajte\nčítkajú\nčítkajúc\nčítkal\nčítkala\nčítkali\nčítkalo\nčítkam\nčítkame\nčítkaš\nčítkať\nčítkate\nčitraka\nčiukoľvek\nčiusi\nčiv\nčivava\nčivi\nčivikať\nčiviš\nčivkať\nčiža\nČižatice\nčiže\nčíže\nčížičí\nčižiem\nčížik\nčíž\nčižmár\nčižmárka\nČižmárovej\nčižmársky\nčižmárstvo\nčižma\nčižmička\nčižmisko\nčižmový\nČížske\nčížskych\nČK\nčkaní\nčkanie\nčkať\nčkavka\nčl\nčlánkonožca\nčlánkonožce\nčlánkonožcoch\nčlánkonožcom\nčlánkonožcov\nčlánkonožec\nčlánkovane\nčlánkovanie\nčlánkovanosť\nčlánkovaný\nčlánkovať\nčlánkovitosť\nčlánkovitý\nčlánkový\nčlánoček\nčlánočku\nčlánočky\nčlánok\nčľap\nčľapatý\nčľapkanica\nčľapkanina\nčľapkať\nčľapkavo\nčľapkot\nčľapky\nčľapnúť\nčľapoc\nčľapoce\nčľapocem\nčľapoceme\nčľapoceš\nčľapocete\nčľapocme\nčľapocte\nčľapocú\nčľapocúc\nčľapotať\nčľapotavo\nčľapotavý\nčľapot\nčľapotmi\nčľaps\nčlenami\nčlenC\nčlenene\nčlenenie\nčlenenosť\nčlenený\nčleniť\nčlenito\nčlenitosť\nčlenitý\nčlenka\nčlenkový\nčlenný\nčlenok\nčlenova\nčlenove\nčlenovej\nčlenovia\nčlenské\nčlensky\nčlenský\nčlenstvo\nčliapať\nčliapka\nčliapkaj\nčliapkajme\nčliapkajte\nčliapkajú\nčliapkajúc\nčliapkal\nčliapkala\nčliapkali\nčliapkalo\nčliapkam\nčliapkame\nčliapkanica\nčliapkanina\nčliapkaš\nčliapkať\nčliapkate\nčliapkavo\nčlipky\nčln\nčlnkár\nčlnkovanie\nčlnkovať\nčlnkovitý\nčlnkový\nčlnok\nčlnový\nčloveče\nčlovečenský\nčlovečenstvo\nčlovečí\nčlovečina\nčlovečinec\nčlovek\nčloveku\nčlovieča\nčloviečik\nčloviečiku\nčľup\nčľupkať\nčľupnúť\nčľups\nčmár\nčmárach\nčmáranica\nčmáranina\nčmárať\nčmára\nčmarigať\nčmeliačik\nčmeliak\nčmeliaky\nčmelí\nČmelík\nčmeľ\nčmeľmi\nčmeľoch\nčmeľom\nčmeľou\nčmeľov\nčmeľovi\nčmud\nčmudenia\nčmudiaci\nčmudiť\nčmýriť\nČNB\nčnejúci\nčnejúcom\nčnelka\nčnieť\nČNL\nčnosť\nčnostne\nčnostný\nčoby\nčoho\nčohokoľvek\nčohosi\nčohože\nčochvíľa\nčojaviem\nčokolád\nčokoládach\nčokoládam\nčokoláda\nčokoládka\nčokoládovňa\nČokoládovňami\nčokoládovne\nčokoládovni\nČokoládovní\nČokoládovniach\nČokoládovniam\nčokoládovňou\nčokoládovňu\nčokoládovo\nčokoládovohnedý\nčokoládový\nčokoľvek\nČoltove\nČoltovo\nčomkoľvek\nčomsi\nčomu\nčomukoľvek\nčomusi\nčomuže\nčomže\nčoo\nčóó\nčóóó\nčop\nčopriam\nčoraz\nčorba\nČOS\nčosi\nčoskoro\nčoukoľvek\nčousi\nčože\nčožeby\nčpavkovaný\nčpavkový\nčpavok\nčpieť\nČR\nčremch\nčremchách\nčremchám\nčremchami\nčremcha\nčremchový\nčrenový\nčrepa\nčrep\nčrepina\nčrepinka\nčrepinový\nčrepník\nčrepový\nčrevný\nčrevo\nčrchnúť\nČRI\nčried\nčrieda\nčriemch\nčrienka\nčriepok\nčriev\nčrievic\nčrievicach\nčrievica\nčrievička\nčrievko\nčrievok\nčrpáčik\nčrpák\nčrpať\nčrpkať\nčrpnúť\nčŕt\nčrtách\nčrtať\nčrta\nčrvač\nčrvačí\nčrvavý\nčrviačí\nčrviačik\nčrviak\nčrviaky\nčrvočami\nčrvočí\nčrvočiach\nčrvočiam\nčrvoč\nčrvočou\nčrvotočami\nčrvotočí\nčrvotočiach\nčrvotočiam\nčrvotočina\nčrvotočivosť\nčrvotočivý\nčrvotoč\nčrvotočou\nčs\nČSA\nČSAD\nČSAV\nČSD\nČSFR\nČSL\nČSĽA\nČSN\nČSOB\nČSR\nČSSD\nČSSR\nČST\nČSTK\nČSZTV\nčt\nČT\nČTK\nčubrica\nčuč\nčučal\nčučala\nčučali\nčučalo\nčučať\nčučí\nčučia\nčučiac\nčučím\nčučíme\nčučíš\nčučíte\nčučko\nčučky\nČučma\nčučme\nČučmianska\nčučo\nčučoredie\nčučoriedie\nčučoriedka\nčučoriedkový\nčučte\nčučuľkať\nčúd\nčudácky\nčudáctvach\nčudáctvam\nčudáctvo\nčudáčka\nčudák\nčudesne\nčudesno\nčudesný\nčudeso\nčudies\nčudne\nčudno\nčudný\nčudo\nčudova\nčudovanie\nčudovať\nčufty\nčugaňa\nčuganí\nčuchanie\nčuchať\nčuch\nčuchnúť\nčuchový\nčuchradlo\nčuchrať\nčuchratý\nčuchravý\nčuchre\nčuchrem\nčuchreme\nčuchreš\nčuchrete\nčuchri\nčuchrime\nčuchrite\nčuchrú\nčuchrúc\nčujne\nčujno\nčujnosť\nčujný\nčujúcej\nčule\nčulejšej\nčulejší\nčulejšia\nčulejšie\nčulejšieho\nčulejšiemu\nčulejších\nčulejším\nčulejšími\nčulejšiu\nčulejšom\nčulejšou\nčulo\nčulosť\nčulý\nčum\nčumák\nčumákom\nčumel\nčumela\nčumeli\nčumelo\nčumí\nčumia\nčumiac\nčumieť\nčumím\nčumíme\nčumíš\nčumíte\nčumiza\nčumme\nčumte\nČunga\nČungu\nČunova\nČunove\nČunovo\nČunovom\nčunovský\nČunovu\nčupieť\nčupiť\nčupkať\nčupnúť\nČupra\nčupratý\nčupravý\nčuprín\nčuprina\nčupry\nčur\nčurák\nčurbes\nčurč\nčurčať\nčurči\nčurčime\nčurčite\nčuri\nčurkotá\nčurkotaj\nčurkotajme\nčurkotajte\nčurkotajú\nčurkotajúc\nčurkotám\nčurkotáme\nčurkotáš\nčurkotáte\nčurkotať\nčurkotavý\nčuš\nčušať\nčuteľný\nčutora\nčuť\nčuv\nčuvač\nčvach\nčvachci\nčvachcime\nčvachcite\nčvachtanica\nčvachtanie\nčvachtať\nčvachtavo\nčvárg\nčvargách\nčvargám\nčvargami\nčvarga\nčvíkot\nčvikota\nčvikotať\nčvíkota\nčvíkotí\nčviri\nčvirik\nčvirikanie\nčvirikať\nčvŕka\nčvŕkaj\nčvŕkajme\nčvŕkajte\nčvŕkajú\nčvŕkajúc\nčvŕkal\nčvŕkala\nčvŕkali\nčvŕkalo\nčvŕkam\nčvŕkame\nčvŕkaš\nčvŕkať\nčvŕkate\nčvrkať\nčvrli\nčvrlikaní\nčvrlikať\nČVS\nd\nD\nď\nĎ\nDAB\ndabakli\ndabatovať\ndabing\ndabingmi\ndabingoch\ndabingom\ndabingov\ndabingový\ndabingu\ndabingy\ndablér\ndablérka\ndablérsky\ndabovania\ndabovanie\ndabovaný\ndabovať\nDAC\nDacia\ndácia\nDacie\nDacii\nDacií\nDaciu\ndácka\ndacron\ndač\ndača\ndače\ndačej\ndači\ndačí\ndačia\ndačie\ndačieho\ndačiemu\ndačích\ndačím\ndačími\ndačiu\ndačo\ndačoho\ndačom\ndačomu\ndačou\nĎačov\ndaču\ndada\ndadaista\ndadaistický\ndadaizmus\ndade\nďaf\ndafnia\ndafnie\ndag\nDaga\ndagerotípia\ndagerotyp\nDagmar\nDagmár\nDagmara\ndagoba\ndaguerrotypia\nďah\ndahi\nDachau\ndaimon\ndaimonium\ndaiquiri\ndajak\ndajako\ndajaký\nDajana\ndajboh\ndajbože\ndajeden\ndajné\ndajsamibože\ndajsamisvete\ndajúci\nďaka\ndakade\ndakadiaľ\ndakam\nDakar\nDakare\ndakarský\nDakaru\ndakde\ndakedajší\ndakedy\ndakoho\ndakoľko\ndakom\ndakomu\ndákosi\nDakota\nDakote\ndakotskej\nDakotu\nDakoty\nďakovací\nďakovanie\nďakovať\nďakovný\nDakron\ndakryocystitída\ndakto\ndaktorý\ndaktyl\ndaktylmi\ndaktylografia\ndaktyloskopia\ndaktyloskopicky\ndaktyloskopický\ndaktylotika\ndaktylský\nďakúvať\ndakým\ndákysi\ndáky\ndalajláma\ndalamánky\ndalasi\ndalba\nDalby\nďalečizný\nďalej\nďalejslúžiaci\nďaleka\nďalekách\nďalekám\nďalekami\nďaleko\nďalekohľad\nďalekohľadový\nďalekonosný\nďalekopis\nďalekopisný\nďalekopisovať\nďalekosiahlosť\nďalekosiahly\nďaleko-široko\nďalekovýchodný\nďalekozrakosť\nďalekozraký\nďaleku\nďaleký\ndales\ndália\nDalibora\nDalibor\nDalibormi\nDaliboroch\nDaliborom\nDaliborov\nDaliborovi\nDaliborovia\nďaliek\nDalila\nDalilou\nDalily\nDalmácia\ndalman\ndalmatínec\nDalmatínec\nDalmatínka\ndalmatínsky\ndalmátsky\nDalmine\nDalmuti\nďalší\ndaltonista\ndaltonizmus\ndaluznačky\ndámach\ndámam\ndamascénka\ndamascénsky\ndamask\nDamask\ndamaskový\ndamaský\nDamaškom\ndamaškový\nDamašku\ndáma\nDamián\nDamiána\ndámička\ndamnum\nDamoklami\nDamokles\nDamoklovho\nDamoklovým\ndamper\ndamping\ndampingmi\ndampingoch\ndampingom\ndampingov\ndampingový\ndampingu\ndampingy\ndámsky\ndan\ndán\ndanablu\ndanajský\nDana\ndanbo\nDán\ndancing\nDanča\ndánčin\ndánčinách\ndánčinám\ndánčinami\ndánčina\ndaň\ndandy\nDandyho\nDandymu\ndania\ndaniami\ndaniar\ndaniarka\nDanica\ndanie\nDanielách\nDanielám\nDaniela\nDaniel\ndanielic\ndanielica\ndanielí\ndanielik\nDanielinho\nDanielinu\ndaniel\ndanieľom\ndanieľou\ndanielovi\ndaním\nDanina\nDanine\nDaninej\nDaniš\nDaniša\nDanišom\nDanišovej\nDanišovho\nDanišovia\ndaniu\nDánka\ndano\ndánom\ndanosť\nDánova\nĎanová\ndaňovaného\ndaňove\nĎanovej\ndaňovníckych\ndaňovníctvo\ndaňovníčka\ndaňovník\ndaňovo\ndaňový\nDánsko\ndánsky\ndánsky\ndanteovský\ndanub\nDanuša\nDanuše\nDanuši\nDanuška\ndaný\nDara\ndar\ndarca\ndarcovstvo\ndarček\ndarčekový\ndarda\ndardanelský\nDardanely\ndarebácka\ndarebácke\ndarebáckeho\ndarebáckej\ndarebáckejšej\ndarebáckejší\ndarebáckejšia\ndarebáckejšie\ndarebáckejšieho\ndarebáckejšiemu\ndarebáckejších\ndarebáckejším\ndarebáckejšími\ndarebáckejšiu\ndarebáckejšom\ndarebáckejšou\ndarebáckemu\ndarebácki\ndarebáckom\ndarebáckosť\ndarebáckou\ndarebácku\ndarebácky\ndarebáckych\ndarebáckym\ndarebáckymi\ndarebáctvach\ndarebáctvam\ndarebáctvo\ndarebáčiť\ndarebáčka\ndarebák\ndarebne\ndarebnosť\ndarebný\ndarení\ndarenie\nDargov\nDargova\nDargove\nDargovskom\nDargovských\nDária\nDarina\nDarinku\nDarinky\ndariť\nDárius\nDarke\ndarkyňa\ndarling\ndarmo\ndarmojed\ndarmošľap\ndarmožráč\ndarmožráčsky\nDarmstadt\nDarmstadte\nDarmstadtu\ndarobne\ndarobnosť\ndarobný\ndaromne\ndaromnica\ndaromníčiť\ndaromník\ndaromnikovať\ndaromnina\ndaromnosť\ndaromný\nDarou\ndarovací\ndarovanie\ndarovaný\ndarovateľa\ndarovateľoch\ndarovateľov\ndarovať\ndarte\ndarujúceho\ndarujúcimi\ndarussalamský\ndarúvať\ndarvinista\ndarvinistický\ndarvinizmus\ndarvinovský\nDarwin\ndarwinista\ndarwinov\nďas\nďase\nďasien\nďasno\nďasnový\nďasy\nDášach\nDášam\nDáša\nDaška\ndat\ndatabanka\ndatabankový\ndatabáz\ndatabázach\ndatabázam\ndatabáza\ndatabázovo\ndatabázový\ndatácia\ndataprojektor\ndáta\nďatele\nďatelina\nďatelinísk\nďatelinisko\nďatelinka\nďatelinkové\nďatelinotráva\nďatelinotrávny\nďatelinovina\nďatelinový\nďateľ\ndať\ndatív\ndatíve\ndatívny\ndatka\nďatľa\nďatľami\ndatľa\nďatle\ndatlí\nďatli\nďatľoch\nďatľom\ndatľovník\nďatľov\ndatľový\ndatovanie\ndatovaný\ndatovať\ndátovo\ndátový\ndatozmenka\ndátum\ndátumovka\ndátumový\ndauphin\ndauphn\nďaur\ndavajúc\ndávajúci\ndávania\ndávanie\ndávaním\ndávaný\ndávať\ndav\ndávenia\ndávenie\nDavid\nDávid\ndávidlo\nDavidova\nDavidove\nDavidovom\ndávidov\ndaviscupový\ndavista\ndavistický\nDavit\ndáviť\ndávivo\ndávivosť\ndávivý\nďavká\nďavkáč\nďavkaj\nďavkajme\nďavkajte\nďavkajú\nďavkajúc\nďavkal\nďavkala\nďavkali\nďavkalo\nďavkám\nďavkáme\nďavkáš\nďavkať\nďavkáte\ndávka\ndávkovací\ndávkovacie\ndávkovacieho\ndávkovacích\ndávkovaciu\ndávkovač\ndávkovane\ndávkovania\ndávkovanie\ndávkovaním\ndávkovaniu\ndávkovaný\ndávkovať\ndávkovo\ndávkový\ndávnejšíF\ndávno\ndávnominulý\ndávnovek\ndávnovekosť\ndávnoveký\ndávny\nDavos\nDavose\ndavoský\nDavosom\nDavosu\ndavovo\ndavový\ndaxlík\ndazymeter\ndažďa\ndažďami\ndažde\ndaždi\ndáždiček\ndáždička\ndáždičkami\ndáždičkoch\ndáždičkom\ndáždičkov\ndáždičku\ndáždičky\ndáždik\ndaždivo\ndaždivý\ndáždivý\ndážď\ndáždnik\ndáždnikový\ndažďoch\ndažďom\ndážďomera\ndážďomer\ndažďov\ndažďovica\ndážďovka\ndažďovnica\ndážďovník\ndažďovník\ndážďovníkovi\ndažďový\ndažďu\ndB\ndbajúci\ndbalý\ndbaní\ndbanie\ndbaniek\ndbaním\ndbanka\ndbať\ndbávať\nDBK\ndbonitový\nDC\ndcér\ndcérach\ndcéram\ndcéra\ndcérenka\ndcérenkin\ndcérin\ndcérine\ndcérinej\ndcérinho\ndcérino\ndcérinou\ndcérinými\ndcérka\ndcérsky\ndcéruška\nDD\nDDE\nDDP\nDDR\nDDT\nde\ndeadjektívum\ndeadline\ndeadweight\ndeaerácia\ndeaglomerácia\ndeaktivovať\ndealera\ndealer\ndealeri\ndealermi\ndealeroch\ndealerom\ndealerov\ndealerovi\ndean\ndebakel\ndebakla\ndebaklami\ndebakle\ndebakli\ndebakloch\ndebaklom\ndebaklov\ndebaklu\ndebardér\ndebarkadér\ndebať\ndebata\ndebatér\ndebatérka\ndebatérsky\ndebatí\ndebatia\ndebatiac\ndebatil\ndebatila\ndebatili\ndebatilo\ndebatím\ndebatíme\ndebatíš\ndebatiť\ndebatíte\ndebaťme\ndebatný\ndebatovania\ndebatovať\ndebatovávať\ndebaťte\ndebatúvať\ndebelácia\ndebet\ndebetný\ndebien\ndebil\ndebilita\ndebilne\ndebilnosť\ndebilný\ndebitor\ndebl\ndeblista\ndeblokácia\ndeblokačný\ndeblokovania\ndeblokovanie\ndeblokovaním\ndeblokovaný\ndeblokovať\ndebnár\nDebnárovo\nDebnárovým\ndebnársky\ndebnárstvach\ndebnárstvam\ndebnárstvo\ndebna\ndebnenie\ndebni\ndebniaci\ndebnička\ndebnime\ndebnite\ndebniť\nDebraď\nDebrecín\ndebrecínka\ndebrecínsky\ndebutant\ndebutantka\ndebutantský\ndebut\ndebutmi\ndebutovať\ndebužírovať\ndec\ndecelerácia\ndecember\ndecembrový\ndecénium\ndecentne\ndecentnosť\ndecentný\ndecentralisticky\ndecentralizácia\ndecentralizačný\ndecentralizmus\ndecentralizovane\ndecentralizovaný\ndecentralizovať\ndecepcia\ndecerebrácia\ndeci\ndecibel\ndecibele\ndecibelmi\ndecibelový\ndecidovať\ndeciek\ndecigram\ndecík\ndeciliter\ndecilitrový\ndecima\ndecimácie\ndecimáciou\ndecimáciu\ndecimalizácia\ndecimálka\ndecimálny\ndecimeter\ndecimetrový\ndecimovanie\ndecimovaný\ndecimovať\ndecízia\ndecizívny\ndecko\ndecovka\ndecový\ndecrescendo\ndectvo\ndéčkar\ndečka\ndéčka\ndéčko\nDedačov\nded\ndedenia\ndedenie\ndedením\ndedeniu\ndedený\ndederon\ndederón\ndederonový\ndediace\ndediaci\ndediacich\ndediacim\ndediacou\ndedič\ndedička\ndedičkému\ndedične\ndedičnosť\ndedičný\ndedičove\ndedičskoprávny\ndedičský\ndedičstvo\ndedikácia\ndedikačný\ndedikoval\ndedikovala\ndedikovali\ndedikovalo\ndedikovať\ndedikuj\ndedikuje\ndedikujem\ndedikujeme\ndedikuješ\ndedikujete\ndedikujme\ndedikujte\ndedikujú\ndedikujúc\ndedina\ndedinčan\ndedinčanka\ndedinka\ndedinôčka\ndedinsky\ndedinský\ndediteľnosť\ndediteľný\ndediť\ndedko\ndedkova\ndedkovo\ndedkovský\ndedo\ndedovizeň\ndedovsky\ndedovský\ndedukcia\ndedukované\ndedukovanie\ndedukovať\ndeduktívne\ndeduktívny\ndeduško\ndeeskalácia\ndeetatizácia\ndeexcitácia\ndefašizácia\ndefekácia\ndefekt\ndefektivita\ndefektmi\ndefektne\ndefektnosť\ndefektný\ndefektológ\ndefektológia\ndefektologický\ndefektoskop\ndefektoskopia\ndefektoskopické\ndefektoskopickou\ndefektoskopickú\ndefektoskopie\ndefektoskopii\ndefektoskopiu\ndefeminizácia\ndefenesrácia\ndefenestrácia\ndefenzív\ndefenzívach\ndefenzívam\ndefenzíva\ndefenzívne\ndefenzívnosť\ndefenzívny\ndefenzor\ndeferalizovaný\ndeferenciačne\ndeferenciačný\ndeferenciálna\ndeferenciálne\ndeferenciálny\ndeferenčne\ndeferenčný\ndeferent\ndefetista\ndefetisticky\ndefetistický\ndefetizmus\ndefibrátorom\ndefibrilátor\ndefibrilátormi\ndefibrilátorov\ndefibrilátory\ndeficiencia\ndeficient\ndeficit\ndeficitmi\ndeficitne\ndeficitný\ndefilé\ndefilírka\ndefilovať\ndefinícia\ndefiničný\ndefinitív\ndefinitívach\ndefinitívam\ndefinitíva\ndefinitívne\ndefinitívnosť\ndefinitívny\ndefinitný\ndefinovane\ndefinovanie\ndefinovaný\ndefinovateľnosť\ndefinovateľný\ndefinovať\ndefinujúci\ndeflácia\ndeflačne\ndeflačný\ndeflagrácia\ndeflektor\ndeflexia\ndeflorácia\ndeflúvium\ndefoliácia\ndefoliant\ndeforestácia\ndeformácia\ndeformačný\ndeformít\ndeformita\ndeformovane\ndeformovania\ndeformovanie\ndeformovaním\ndeformovaniu\ndeformovaný\ndeformovať\ndefosforácia\ndefraudácia\ndefraudačný\ndefraudant\ndefraudantka\ndefraudované\ndefraudovania\ndefraudovanie\ndefraudovaných\ndefraudovať\ndeftéria\nDEG\ndegenerácia\ndegeneračne\ndegeneračný\ndegeneratívne\ndegeneratívneho\ndegeneratívny\ndegeneratívnych\ndegenerovaný\ndegenerovať\ndeglaciácia\ndegoržovanie\ndegradácia\ndegradačne\ndegradačný\ndegradovane\ndegradovania\nDegradovanie\ndegradovaný\ndegradovať\ndegresia\ndegresie\ndegresii\ndegresiou\ndegresiu\ndegresívna\ndegresívne\ndegresívneho\ndegresívnej\ndegresívnemu\ndegresívnom\ndegresívnu\ndegresívny\ndegresívnym\ndegustácia\ndegustačná\ndegustačne\ndegustačné\ndegustačnej\ndegustačnom\ndegustačnou\ndegustačných\ndegustačnými\ndegustátor\ndegustátora\ndegustátori\ndegustátorom\ndegustátorov\ndegustovaná\ndegustované\ndegustovaní\ndegustovanie\nDegustovaniu\ndegustovať\ndegutantný\ndegviť\ndehelmintizáci\ndehepisecký\ndehepisectvo\ndehonestácia\ndehonestácie\ndehonestácii\ndehonestáciou\ndehonestáciu\ndehonestovanie\ndehonestovaný\ndehonestovať\ndehumanizácia\ndehumanizovať\ndehydratácia\ndehydratačný\ndehydratovaný\ndehydrogenácia\ndehydrogenizácia\ndehydrovaný\ndehydrovať\ndechlorácia\ndechta\ndechtáreň\ndecht\ndechtmi\ndechtovitý\ndechtový\ndeideologizácia\ndeiferencovať\ndeifikácia\ndeifikovať\ndeiktický\ndeiltantizmus\ndeinking\ndeiónový\ndeista\ndeisticky\ndeistický\ndeiure\ndeixia\ndeizmus\ndejateľ\ndejekcia\ndejepisár\ndejepis\ndejepisec\ndejepisecký\ndejepisectvo\ndejepisný\ndéjeuner\ndejinne\ndejinnosť\ndejinný\ndejinotvorný\ndejiny\ndejísk\ndejisko\ndej\ndejotvorný\ndejove\ndejovo\ndejovosť\ndejový\ndejstvo\ndejstvovať\ndejsvovať\ndek\ndekabrista\ndekabristický\ndekád\ndekádach\ndekádam\ndekáda\ndekadencia\ndekadent\ndekadentne\ndekadentnosť\ndekadentný\ndekadický\ndekádny\ndekádový\ndekaéder\ndekagram\ndekagramový\ndekalcifikácia\ndekalo\ndekalóg\ndekameron\ndekameter\ndekanát\ndekanátmi\ndekan\ndekanka\ndekanský\ndekanstvo\ndekantácia\ndekapitácia\ndekapitalizácia\ndekapitalizácie\ndekapitalizácii\ndekapitalizáciou\ndekapitalizáciu\ndekapovanie\ndekarbonizácia\ndekarbonizačný\ndekarbonizovať\ndekarboxylácia\ndekartelizácia\ndekatovanie\ndeka\ndeklamácia\ndeklamačne\ndeklamačnosť\ndeklamačný\ndeklamátor\ndeklamátora\ndeklamovane\ndeklamované\ndeklamovanej\ndeklamovať\ndeklarácia\ndeklaračný\ndeklarant\ndeklaranta\ndeklaranti\ndeklarantmi\ndeklarantom\ndeklarantov\ndeklarantovi\ndeklaratívne\ndeklaratívnosť\ndeklaratívny\ndeklaratórny\ndeklarovania\ndeklarovanie\ndeklarovaním\ndeklarovaniu\ndeklarovaný\ndeklarovať\ndeklasifikácia\ndeklasovanie\ndeklasovanosť\ndeklasovaný\ndeklasovať\ndeklinácia\ndeklinačný\ndeklinovať\ndekodéri\ndekodér\ndekódermi\ndekodéru\ndekódovačJ\ndekódovania\ndekódovanie\ndekódovaný\ndekódovať\ndekokt\ndekolonizácia\ndekolonizačný\ndekolonizovať\ndekolorácia\ndekolorizácia\ndekolt\ndekoltážach\ndekoltážam\ndekoltáž\ndekoltovaný\ndeko\ndekompenzácia\ndekompenzačný\nDekompenzovaný\ndekompletovať\ndekomponovala\ndekomponovan\ndekomponovať\ndekompozícia\ndekompresia\ndekompresii\ndekompresiu\ndekompresného\nDekomprimácia\ndekomprimácií\ndekomprimáciu\ndekomprimovaný\ndekomprimovať\ndekoncentrácia\ndekoncentrovaný\ndekonštrukcia\ndekontaminácia\ndekor\nDekor\ndekór\ndekorácia\ndekoračne\ndekoračnosť\ndekoračný\ndekórach\ndekóram\ndekoratér\ndekoratérka\ndekoratérsky\ndekorativizmus\ndekoratívne\ndekoratívnosť\ndekoratívny\nDekore\ndekoroch\ndekorom\ndekorov\ndekorovania\ndekorovanie\ndekorovaním\ndekorovaný\ndekorovať\ndekort\ndekortifikácia\nDekoru\ndekórum\nDekory\ndekový\ndekrement\ndekrescencia\ndekrét\ndekrétmi\ndekrétovať\ndekrétový\ndekretuje\ndekubit\ndekubitus\ndekurz\ndekurzívny\ndekvalifikácia\ndekvalifikácii\ndekvalifikovali\nDekýš\ndel\ndelácia\ndeľbách\ndeľbám\ndeľbami\ndeľba\ndelcredere\ndeleatur\ndelegácia\ndelegačka\ndelegačne\ndelegačný\ndelegát\ndelegátka\ndelegátsky\ndelegatúr\ndelegatúra\ndelegatúrach\ndelegatúrami\ndelegatúre\ndelegatúrou\ndelegatúru\ndelegatúry\ndelegovania\ndelegovanie\ndelegovaním\ndelegovaniu\ndelegovaný\ndelegovať\ndelene\ndelenec\ndelenie\ndeleno\ndelený\nDelf\nDelfách\ndelfín\ndelfínovi\ndelfský\nDelfy\ndeliaci\ndelibácia\ndeliberácia\ndeliberačná\ndelicato\ndelicózny\ndelicti\ndelič\ndelidlo\ndelieb\ndelignifikáciu\ndelikates\ndelikatesa\ndelikatesný\ndelikátne\ndelikátnosť\ndelikátny\ndelikt\ndeliktmi\ndelikvencia\ndelikvent\ndelikventka\ndelikventný\ndelikventský\ndelimitácia\ndelimitačne\ndelimitačný\ndelimitovanie\ndelimitovaním\ndelimitovaný\ndelimitovať\ndelirický\ndelíriový\ndelírium\ndelitelia\ndeliteľ\ndeliteľmi\ndeliteľnosť\ndeliteľný\ndeliteľoch\ndeliteľom\ndelitelov\ndeliteľov\ndeliteľovi\ndeliteľu\ndeliť\ndelitľa\ndelive\ndelivosť\ndelivý\ndelkredere\nDell\ndelobucha\ndelobuch\ndelo\ndelostreľba\ndelostrelec\ndelostrelecký\ndelostrelectvo\ndelový\nDeložovaná\ndeložovaní\ndeložovania\ndeložovanie\ndeložovaním\ndeložovaniu\ndeložovaných\ndeložovať\ndelt\ndeltaplán\ndelta\ndeltovitý\ndeltový\nDEM\ndemagnetizácia\ndemagnetizačný\ndemagóg\ndemagógia\ndemagogickosť\ndemagogicky\ndemagogický\ndemagogizovať\nDemänová\nDemänovej\nDemänovská\nDemänovské\nDemänovskej\nDemänovských\ndemarkácia\ndemarkačný\ndemaršami\ndemarše\ndemarši\ndemarš\ndemaršmi\ndemaršoch\ndemaršom\ndemaršov\ndemaršu\nDemaskovaná\ndemaskovaní\ndemaskovania\ndemaskovanie\ndemaskovať\ndematerializácia\ndemekológia\ndemencia\ndementi\ndementný\ndementovaná\ndementované\ndementovanej\ndementovaní\ndementovania\ndementovanie\ndementovaním\ndementovaniu\ndementovať\nDemetera\nDemeter\nDemeterom\nDemeterovej\nDemeterovou\ndemikát\ndemikátmi\ndemikátový\ndemilitarizácia\ndemilitarizačný\ndemilitarizovaná\ndemilitarizované\ndemilitarizovanej\ndemilitarizovanú\ndemilitarizovať\ndemineralizácia\ndeminutív\ndeminutívach\ndeminutívam\ndeminutívny\ndeminutívum\ndemisia\ndemiurg\ndemižon\ndemižón\ndemižónik\ndemižónový\nDemjata\nDemjatou\ndemo\ndemobilizácia\ndemobilizačne\ndemobilizačný\ndemobilizované\ndemobilizovaní\ndemobilizovaných\ndemobilizovať\ndemocentrum\ndémodé\ndemodulátor\ndemofóbia\ndemograf\ndemografia\ndemograficky\ndemografický\ndemografka\ndemografovia\ndemokartografia\ndemokracia\ndemokrarizovať\ndemokrat\ndemokratickosť\ndemokraticky\ndemokratický\ndemokratičnosť\ndemokratizácia\ndemokratizačný\ndemokratizmus\ndemokratizovanom\ndemokratizovať\ndemokratka\ndemolácia\ndemolačný\ndemolícia\ndemolíciami\ndemolície\ndemolícií\ndemolíciou\ndemolované\ndemolovaní\ndemolovania\ndemolovanú\ndemolovaných\ndemolovať\ndémon\ndemonetizácia\ndemonetizáciou\ndemonetizáciu\ndemonetizujeme\ndemonetizujú\ndémonickosť\ndémonicky\ndémonický\ndémonizmus\ndémonizoval\ndémonizovala\ndémonizovali\ndémonizovalo\ndémonizovania\ndémonizovanie\ndémonizovaním\ndémonizovaniu\ndémonizovaný\ndémonizovať\ndémonizuj\ndémonizuje\ndémonizujem\ndémonizujeme\ndémonizuješ\ndémonizujete\ndémonizujme\ndémonizujte\ndémonizujú\ndémonizujúc\ndemonopolizácia\ndémonská\ndemonštrácia\ndemonštračne\ndemonštračný\ndemonštrant\ndemonštrantka\ndemonštratívne\ndemonštratívnosť\ndemonštratívny\ndemonštrátor\ndemonštrátorka\ndemonštrátormi\ndemonštrátorský\ndemonštrovania\ndemonštrovanie\ndemonštrovaním\ndemonštrovaný\ndemonštrovať\ndemontážach\ndemontážam\ndemontáž\ndemontážny\ndemontovane\ndemontovania\ndemontovaním\ndemontovaniu\ndemontovaný\ndemontovateľný\ndemontovať\ndemoralizácia\ndemoralizačne\ndemoralizačný\ndemoralizovaný\ndemoralizovať\ndémos\ndemoskopia\nDemostenes\ndémotický\ndemotivácia\ndemotivoval\ndemotivovala\ndemotivovali\ndemotivovalo\ndemotivovať\ndemotivuj\ndemotivuje\ndemotivujem\ndemotivujeme\ndemotivuješ\ndemotivujete\ndemotivujme\ndemotivujte\ndemotivujú\ndemotivujúc\ndemultiplexor\ndenacifikácia\ndenacifikačný\ndenacifikovať\ndenacionalizácia\ndenacionalizácii\ndenár\ndenármi\ndenatalita\ndenaturácia\ndenaturácie\ndenaturáciou\ndenaturačná\ndenaturalizácia\ndenaturalizácii\ndenaturát\ndenaturovane\ndenaturovaný\ndenaturovať\ndendácia\ndendrit\ndendrolit\ndendrológ\ndendrológia\ndendrologický\ndendrometria\ndenervácia\ndenervovať\ndengľavieť\ndengľavo\ndengľavosť\ndengľavý\ndengue\ndenim\nDenís\nDenisa\nDenis\ndenitrácia\ndenitráciou\ndenitráciu\ndenitrifikácia\ndenitrifikácie\ndenitrifikácii\ndenitrifikáciou\ndenitrifikáciu\ndenivelizácia\ndenivelizácii\ndeň\ndenne\ndennica\ndenník\ndenníkový\ndenno\ndennodenne\ndennodenný\ndenný\ndenomikácia\ndenominácia\ndenominačný\ndenominatívny\ndenominatívum\ndenominovala\ndenominovania\ndenominovaný\ndenominovať\ndenominuje\nDenon\ndenotácia\ndentakryl\ndentála\ndentalgia\ndentálny\ndentícia\ndentin\ndentista\ndentistický\ndentistka\ndenudácia\ndenudačný\ndenuduje\ndenunciácia\ndenunciant\ndenunciantkách\ndenunciantkám\ndenunciantka\ndenunciantský\ndenunciantstvo\ndenuncovali\ndenuncovaný\ndenuncovať\ndenutrícia\nDenver\nDenverská\ndenverské\ndenverskej\nDenverskom\ndený\ndenzimeter\ndenzit\ndenzitometria\ndenzitu\ndeontológia\ndeoptimalizovať\ndeoxyribonukleová\ndep\ndepalatalizácia\ndepalatizácia\ndepandancia\ndepartement\ndepartementmi\ndepartmán\ndepartment\ndepartmente\ndepartmentoch\ndepartmentov\ndepartmentu\ndepartmenty\ndepce\ndepcem\ndepceme\ndepceš\ndepcete\ndepci\ndepcime\ndepcite\ndepcú\ndepcúc\ndepčiť\ndependancia\ndependencia\ndepergelácia\ndepersonalizácia\ndepeša\ndepeší\ndepigmentácia\ndepilácia\ndepilačný\ndepilátor\ndepilovač\ndepilovať\ndepistáž\ndepolarizácia\ndepolarizačný\ndepolymerácia\ndepolymerizácia\ndepo\ndeponát\ndeponent\ndeponentom\ndeponentov\ndepónia\ndeponovania\ndeponovanie\ndeponovaním\ndeponovaný\ndeponovať\ndepopulácia\ndeportácia\ndeportačný\ndeportovaný\ndeportovať\ndepot\nDepot\ndepote\ndepotný\ndepotu\ndepozícia\ndepozita\ndepozitá\ndepozitách\ndepozitám\ndepozitár\ndepozitármi\ndepozitárovi\ndepozit\ndepozitmi\ndepozitne\ndepozitno\ndepozitný\ndepozitový\ndepozitum\ndepravácia\ndepreciácia\ndepreciácie\ndepreciácii\ndepreciácií\ndepreciáciou\ndepreciáciu\ndepresia\ndepresívne\ndepresívnosť\ndepresívny\ndepresne\ndepresný\ndeprimovane\ndeprimovanosť\ndeprimovaný\ndeprimovať\ndeprimujúcejšej\ndeprimujúcejší\ndeprimujúcejšia\ndeprimujúcejšie\ndeprimujúcejšieho\ndeprimujúcejšiemu\ndeprimujúcejších\ndeprimujúcejším\ndeprimujúcejšími\ndeprimujúcejšiu\ndeprimujúcejšom\ndeprimujúcejšou\ndeprimujúci\ndeprimujúco\ndeprivácia\ndepsi\ndepsia\ndepsil\ndepsiť\ndeptanie\ndeptaných\ndeptať\ndepurácia\ndepurácie\ndepurácii\ndepuráciu\ndepuratívum\ndepurgácia\ndeputácia\ndeputát\ndeputátmi\ndeputátnický\ndeputátnička\ndeputátnik\ndeputátny\ndeputovať\nderatizácia\nderatizačný\nderatizátor\nderatizér\nderavenie\nderavieť\nderaviť\nderavo\nderavosť\nderavý\nderby\nderealizácia\nderegulácia\ndereizmus\nderelikcia\ndereš\nderivácia\nderivačne\nderivačný\nderivans\nderivát\nDerivatívna\nderivatívnej\nderivatívnych\nderivatívnym\nderivátmi\nderivátor\nderivovane\nderivovania\nderivovanie\nderivovaniu\nderivovaný\nderivovať\nderma\ndermabrázia\ndermálny\ndermatitída\ndermatoglyfika\ndermatoid\ndermatológ\ndermatológia\ndermatologický\ndermatológmi\ndermatológov\ndermatológovia\ndermatomykóza\ndermatoplastika\ndermatovenerológ\ndermatovenerológia\ndermatovenerológii\ndermatovenerológov\ndermatovenerológovia\ndermatóza\ndermatózami\ndermatozoonóza\ndermatózy\ndermo\ndermochalázia\ndermoid\nderniéra\nderogácia\nderogácie\nderogačných\nderuta\nderviš\ndervišský\ndesagregácia\ndesalinizácia\ndesant\ndesaťbodový\ndesaťboja\ndesaťbojár\ndesaťbojársky\ndesaťboj\ndesaťboji\ndesaťbojový\ndesaťcentový\ndesaťciferné\ndesať\ndesaťčlenný\ndesaťdenne\ndesaťdenný\ndesaťdielnom\ndesaťdňový\ndesaťdolárová\ndesaťhalier\ndesaťhaliernik\ndesaťhalierový\ndesaťhodinový\ndesatina\ndesatinka\ndesatinne\ndesatinný\ndesatinový\ndesaťkilometrový\ndesaťkilový\ndesaťkorún\ndesaťkoruna\ndesaťkorunáčka\ndesaťkorunák\ndesaťkorunám\ndesaťkorunami\ndesaťkorune\ndesaťkorunou\ndesaťkorunový\ndesaťkorunu\ndesaťkoruny\ndesaťkrát\ndesaťkusový\ndesaťlitrových\ndesaťmesačný\ndesaťmetrový\ndesaťmiestny\ndesaťmiliónový\ndesaťminútovka\ndesaťminútovkový\ndesaťminútový\ndesaťnásobkami\ndesaťnásobkoch\ndesaťnásobkom\ndesaťnásobkov\ndesaťnásobku\ndesaťnásobky\ndesaťnásobne\ndesaťnásobný\ndesaťnásobok\ndesatok\ndesator\ndesatora\ndesatorá\ndesatorách\ndesatorák\ndesatorako\ndesatoraký\ndesatorám\ndesatorami\ndesatorča\ndesatore\ndesatoro\ndesatorom\ndesatoru\ndesaťpalcový\ndesaťpercentný\ndesaťposchodový\ndesaťprstový\ndesaťprúdový\ndesaťročie\ndesaťročnice\ndesaťročnici\ndesaťročnicu\ndesaťročný\ndesaťslabičný\ndesaťstenný\ndesaťstopý\ndesaťstránkovej\ndesaťstránkovom\ndesaťstrunovej\ndesaťstupňový\ndesaťtisícami\ndesaťtisícina\ndesaťtisícinu\ndesaťtisíci\ndesaťtisíc\ndesaťtisíckrát\ndesaťtisícky\ndesaťtisícnásobné\ndesaťtisícok\ndesaťtisícoviek\nDesaťtisícovku\ndesaťtisícový\ndesaťtriedny\ndesaťtýždňové\ndesaťtýždňovej\ndesaťtýždňovom\ndesaťuhoľníkový\ndesaťvalcových\ndesaťzväzkové\ndesaveu\ndes\ndescendencia\ndescendent\ndescendentný\ndesény\ndesenzibilácia\ndesiaci\ndesiacu\ndesiatar\ndesiatár\ndesiatarka\ndesiatárka\ndesiata\ndesiati\ndesiatka\ndesiatkový\ndesiatnička\ndesiatnik\ndesiatnikových\ndesiatok\ndesiatovať\ndesiatový\ndesiaty\ndesiatykrát\ndesiaty\ndesignácia\ndesign\ndesignera\ndesigner\ndesignerstvo\ndesignovaný\ndesignovať\ndesikácia\ndesina\ndesinu\ndesiť\ndesivo\ndesivosť\ndesivý\ndeskripcia\ndeskriptív\ndeskriptívach\ndeskriptívam\ndeskriptivár\ndeskriptíva\ndeskriptívne\ndeskriptívnosť\ndeskriptívny\ndeskriptor\ndesktop\ndesktopový\ndesne\ndesný\ndesorpcia\ndesorpcii\ndesperácia\ndesperát\ndespocia\ndespota\ndespotickosť\ndespoticky\ndespotický\ndespotizmus\ndespotka\ndespotmi\ndestabilita\ndestabilizácia\ndestabilizačný\ndestabilizovaný\ndestabilizovať\ndestabilizujúci\ndestilácia\ndestilačne\ndestilačný\ndestilát\ndestilátmi\ndestilátor\ndestilátový\ndestilovania\ndestilovaný\ndestilovať\ndestinácia\ndestináciách\ndestináciám\ndestináciami\ndestinácie\ndestinácii\ndestinácií\ndestináciou\ndestináciu\ndesublimácia\ndesubstantívum\ndesulfurácia\ndešarža\ndešifrovanie\ndešifrovaný\ndešifrovať\ndešpekt\ndešpektmi\ndešperáti\ndeštruent\ndeštrukcia\ndeštrukčne\ndeštrukčno\ndeštrukčnosť\ndeštrukčný\ndeštruktivistický\ndeštruktívne\ndeštruktívnosť\ndeštruktívny\ndeštruovanie\ndeštruovaním\ndeštruovaniu\ndeštruovaný\ndeštruovať\ndet\ndetail\ndetailík\ndetailista\ndetailistka\ndetailizované\ndetailizovaním\ndetailizovanú\ndetailizovať\ndetailmi\ndetailne\ndetailnejší\ndetailnosť\ndetailný\ndetandér\ndetašér\ndetašovanie\ndetašovaný\ndetašovať\ndetegovať\ndetekcia\ndetekčný\ndetektív\ndetektívka\ndetektívny\ndetektívovia\ndetektor\ndetektorový\ndetektovať\ndetencia\ndetentor\ndetenzia\ndeterent\ndetergent\ndetergenty\ndeteriorácia\ndeteriorizácia\ndeterminácia\ndeterminačný\ndeterminanta\ndeterminant\ndeterminánt\ndeterminantmi\ndeterminántmi\ndeterminatívny\ndeterminátor\ndeterminista\ndeterministický\ndeterministka\ndeterminizmus\ndeterminovanie\ndeterminovanosť\ndeterminovaný\ndeterminovať\ndeterzia\ndetezaurácia\ndeti\ndetí\ndetičiek\ndetičky\ndetinskosť\ndetinsky\ndetinský\ndetinstvo\ndetísk\ndetiskách\ndetiskám\ndetiskami\ndetiská\ndeťmi\ndetný\ndeťoch\ndeťom\ndetonácia\ndetonačne\ndetonačný\ndetonátor\ndetonátorov\ndetonátory\ndetonovať\ndetoxikácia\ndetoxikácii\ndetoxikáciu\ndetrakcia\nDetrík\ndetrinid\ndetrit\ndetroitské\ndetroitského\ndetroitskej\ndetroitskému\ndetroitskom\ndetroitskou\ndetroitskú\ndetroitských\ndetroitským\nDetroitský\ndetronizácia\ndetronizovať\ndetskosť\ndetsky\ndetský\ndetstvo\ndetto\ndeťúrence\ndeťúrencoch\ndeťúrencom\ndeťúreniec\ndeťušky\nDetva\ndetvákmi\ndetvákoch\ndetvákom\ndetvákov\ndetváky\nDetve\nDetvianska\ndetvianske\ndetvianskeho\ndetvianskej\nDetvianski\nDetvianskom\ndetvianskou\ndetviansku\nDetviansky\ndetvianskych\ndetvianskym\ndetvianskymi\nDetvou\nDetvu\nDetvy\ndeus\ndeuteranopsia\ndeutérium\ndeuterizácia\ndeuterokanonický\ndeutzia\ndev\ndevalorizácia\ndevalvácia\ndevalvačne\ndevalvačno\ndevalvačný\ndevalvovania\ndevalvovanie\ndevalvovaný\ndevalvovať\ndevaporácia\ndevastácia\ndevastačný\ndevastovania\ndevastovanie\ndevastovaním\ndevastovaniu\ndevastovaný\ndevastovať\ndeväťbodového\ndeväťbodovú\ndeväťciferné\ndeväťciferných\ndeväť\ndeväťčlenný\ndeväťdenný\ndeväťdesiat\ndeväťdesiatdeväť\ndeväťdesiatdeväťtisíc\ndeväťdesiatdva\ndeväťdesiatdvatisíc\ndeväťdesiati\ndeväťdesiatjeden\ndeväťdesiatjedentisíc\ndeväťdesiatka\ndeväťdesiatkilový\ndeväťdesiatnička\ndeväťdesiatnik\ndeväťdesiatosem\ndeväťdesiatosemročný\ndeväťdesiatosemtisíc\ndeväťdesiatpäť\ndeväťdesiatpäťku\ndeväťdesiatpäťky\ndeväťdesiatpäťtisíc\ndeväťdesiatročný\ndeväťdesiatsedem\ndeväťdesiatsedemtisíc\ndeväťdesiatšesť\ndeväťdesiatšesťtisíc\ndeväťdesiatštyri\ndeväťdesiatštyritisíc\ndeväťdesiattisíc\ndeväťdesiattisícového\ndeväťdesiattri\ndeväťdesiattritisíc\ndeväťdesiaty\ndeväťdielneho\ndeväťdňový\ndeväťhlavá\ndeväťhlavým\ndeväťhodinový\ndeväťchvostá\ndevätín\ndevätina\ndeväťkilometrový\ndeväťkrát\ndeväťlitrových\ndeväťmesačný\ndeväťmetrovú\ndeväťmiestny\ndeväťmiliónový\ndeväťminútový\ndeväťnásobkom\ndeväťnásobku\ndeväťnásobne\ndeväťnásobný\ndeväťnásobok\ndevätnásť\ndevätnástina\ndevätnásti\ndevätnástka\ndevätnásťročný\ndevätnásťtisíc\ndevätnásty\ndevätorako\ndevätoraký\ndevätoro\ndeväťpercentný\ndeväťposchodový\ndeväťročenkou\ndeväťročný\ndeväťsto\ndeväťstodesať\ndeväťstodesaťtisíc\ndeväťstodeväť\ndeväťstodeväťdesiat\ndeväťstodeväťdesiatdeväť\ndeväťstodeväťdesiatdeväťtisíc\ndeväťstodeväťdesiatdva\ndeväťstodeväťdesiatdvatisíc\ndeväťstodeväťdesiatjeden\ndeväťstodeväťdesiatjedentisíc\ndeväťstodeväťdesiatosem\ndeväťstodeväťdesiatosemtisíc\ndeväťstodeväťdesiatpäť\ndeväťstodeväťdesiatpäťtisíc\ndeväťstodeväťdesiatsedem\ndeväťstodeväťdesiatsedemtisíc\ndeväťstodeväťdesiatšesť\ndeväťstodeväťdesiatšesťtisíc\ndeväťstodeväťdesiatštyri\ndeväťstodeväťdesiatštyritisíc\ndeväťstodeväťdesiattisíc\ndeväťstodeväťdesiattri\ndeväťstodeväťdesiattritisíc\ndeväťstodevätnásť\ndeväťstodevätnásťtisíc\ndeväťstodeväťtisíc\ndeväťstodva\ndeväťstodvadsať\ndeväťstodvadsaťdeväť\ndeväťstodvadsaťdeväťtisíc\ndeväťstodvadsaťdva\ndeväťstodvadsaťdvatisíc\ndeväťstodvadsaťjeden\ndeväťstodvadsaťjedentisíc\ndeväťstodvadsaťosem\ndeväťstodvadsaťosemtisíc\ndeväťstodvadsaťpäť\ndeväťstodvadsaťpäťtisíc\ndeväťstodvadsaťsedem\ndeväťstodvadsaťsedemtisíc\ndeväťstodvadsaťšesť\ndeväťstodvadsaťšesťtisíc\ndeväťstodvadsaťštyri\ndeväťstodvadsaťštyritisíc\ndeväťstodvadsaťtisíc\ndeväťstodvadsaťtri\ndeväťstodvadsaťtritisíc\ndeväťstodvanásť\ndeväťstodvanásťtisíc\ndeväťstodvatisíc\ndeväťstojedenásť\ndeväťstojedenásťtisíc\ndeväťstojeden\ndeväťstojedentisíc\ndeväťstoosem\ndeväťstoosemdesiat\ndeväťstoosemdesiatdeväť\ndeväťstoosemdesiatdeväťtisíc\ndeväťstoosemdesiatdva\ndeväťstoosemdesiatdvatisíc\ndeväťstoosemdesiatjeden\ndeväťstoosemdesiatjedentisíc\ndeväťstoosemdesiatosem\ndeväťstoosemdesiatosemtisíc\ndeväťstoosemdesiatpäť\ndeväťstoosemdesiatpäťtisíc\ndeväťstoosemdesiatsedem\ndeväťstoosemdesiatsedemtisíc\ndeväťstoosemdesiatšesť\ndeväťstoosemdesiatšesťtisíc\ndeväťstoosemdesiatštyri\ndeväťstoosemdesiatštyritisíc\ndeväťstoosemdesiattisíc\ndeväťstoosemdesiattri\ndeväťstoosemdesiattritisíc\ndeväťstoosemnásť\ndeväťstoosemnásťtisíc\ndeväťstoosemtisíc\ndeväťstopá\ndeväťstopäť\ndeväťstopäťdesiat\ndeväťstopäťdesiatdeväť\ndeväťstopäťdesiatdeväťtisíc\ndeväťstopäťdesiatdva\ndeväťstopäťdesiatdvatisíc\ndeväťstopäťdesiatjeden\ndeväťstopäťdesiatjedentisíc\ndeväťstopäťdesiatosem\ndeväťstopäťdesiatosemtisíc\ndeväťstopäťdesiatpäť\ndeväťstopäťdesiatpäťtisíc\ndeväťstopäťdesiatsedem\ndeväťstopäťdesiatsedemtisíc\ndeväťstopäťdesiatšesť\ndeväťstopäťdesiatšesťtisíc\ndeväťstopäťdesiatštyri\ndeväťstopäťdesiatštyritisíc\ndeväťstopäťdesiattisíc\ndeväťstopäťdesiattri\ndeväťstopäťdesiattritisíc\ndeväťstopätnásť\ndeväťstopätnásťtisíc\ndeväťstopäťtisíc\ndeväťstosedem\ndeväťstosedemdesiat\ndeväťstosedemdesiatdeväť\ndeväťstosedemdesiatdeväťtisíc\ndeväťstosedemdesiatdva\ndeväťstosedemdesiatdvatisíc\ndeväťstosedemdesiatjeden\ndeväťstosedemdesiatjedentisíc\ndeväťstosedemdesiatosem\ndeväťstosedemdesiatosemtisíc\ndeväťstosedemdesiatpäť\ndeväťstosedemdesiatpäťtisíc\ndeväťstosedemdesiatsedem\ndeväťstosedemdesiatsedemtisíc\ndeväťstosedemdesiatšesť\ndeväťstosedemdesiatšesťtisíc\ndeväťstosedemdesiatštyri\ndeväťstosedemdesiatštyritisíc\ndeväťstosedemdesiattisíc\ndeväťstosedemdesiattri\ndeväťstosedemdesiattritisíc\ndeväťstosedemnásť\ndeväťstosedemnásťtisíc\ndeväťstosedemtisíc\ndeväťstostranový\ndeväťstošesť\ndeväťstošesťdesiat\ndeväťstošesťdesiatdeväť\ndeväťstošesťdesiatdeväťtisíc\ndeväťstošesťdesiatdva\ndeväťstošesťdesiatdvatisíc\ndeväťstošesťdesiatjeden\ndeväťstošesťdesiatjedentisíc\ndeväťstošesťdesiatosem\ndeväťstošesťdesiatosemtisíc\ndeväťstošesťdesiatpäť\ndeväťstošesťdesiatpäťtisíc\ndeväťstošesťdesiatsedem\ndeväťstošesťdesiatsedemtisíc\ndeväťstošesťdesiatšesť\ndeväťstošesťdesiatšesťtisíc\ndeväťstošesťdesiatštyri\ndeväťstošesťdesiatštyritisíc\ndeväťstošesťdesiattisíc\ndeväťstošesťdesiattri\ndeväťstošesťdesiattritisíc\ndeväťstošestnásť\ndeväťstošestnásťtisíc\ndeväťstošesťtisíc\ndeväťstoštrnásť\ndeväťstoštrnásťtisíc\ndeväťstoštyri\ndeväťstoštyridsať\ndeväťstoštyridsaťdeväť\ndeväťstoštyridsaťdeväťtisíc\ndeväťstoštyridsaťdva\ndeväťstoštyridsaťdvatisíc\ndeväťstoštyridsaťjeden\ndeväťstoštyridsaťjedentisíc\ndeväťstoštyridsaťosem\ndeväťstoštyridsaťosemtisíc\ndeväťstoštyridsaťpäť\ndeväťstoštyridsaťpäťtisíc\ndeväťstoštyridsaťsedem\ndeväťstoštyridsaťsedemtisíc\ndeväťstoštyridsaťšesť\ndeväťstoštyridsaťšesťtisíc\ndeväťstoštyridsaťštyri\ndeväťstoštyridsaťštyritisíc\ndeväťstoštyridsaťtisíc\ndeväťstoštyridsaťtri\ndeväťstoštyridsaťtritisíc\ndeväťstoštyritisíc\ndeväťstotisíc\ndeväťstotri\ndeväťstotridsať\ndeväťstotridsaťdeväť\ndeväťstotridsaťdeväťtisíc\ndeväťstotridsaťdva\ndeväťstotridsaťdvatisíc\ndeväťstotridsaťjeden\ndeväťstotridsaťjedentisíc\ndeväťstotridsaťosem\ndeväťstotridsaťosemtisíc\ndeväťstotridsaťpäť\ndeväťstotridsaťpäťtisíc\ndeväťstotridsaťsedem\ndeväťstotridsaťsedemtisíc\ndeväťstotridsaťšesť\ndeväťstotridsaťšesťtisíc\ndeväťstotridsaťštyri\ndeväťstotridsaťštyritisíc\ndeväťstotridsaťtisíc\ndeväťstotridsaťtri\ndeväťstotridsaťtritisíc\ndeväťstotrinásť\ndeväťstotrinásťtisíc\ndeväťstotritisíc\ndeväťstranný\ndeväťstupňové\ndeväťtisíc\ndeväťtisícový\ndeväťtonové\ndeväťtonovom\ndeväťtýždňového\ndeva\ndévedečiek\ndévedečko\ndeverbatívny\ndeverbatívum\ndeveťdesiat\ndeviácia\ndeviačný\ndeviant\ndeviantný\ndeviata\ndeviatacký\ndeviatačka\ndeviatak\ndeviate\ndeviateho\ndeviatej\ndeviatemu\ndeviati\ndeviatka\ndeviatkoch\ndeviatkom\ndeviatkov\ndeviatok\ndeviatom\ndeviatou\ndeviatu\ndeviaty\ndeviatych\ndeviatykrát\ndeviatym\ndeviatymi\ndevica\ndevin\ndevina\nDevín\ndevine\ndevinho\ndevinkulácia\ndevinkuláciu\ndevinmu\nDevínskonovoveská\ndevínsky\ndeviovaný\ndevitalizácia\ndevitalizácie\ndevitalizácii\ndevitalizáciou\ndevitalizáciu\ndevíz\ndevízach\ndevízam\ndevíza\ndevízove\ndevízovo\ndevízový\ndevócia\ndevocionálie\ndevolúcia\ndevón\ndevónsky\ndevótnosť\ndevótny\ndevucha\ndevulienka\ndexiografia\ndexiotropný\ndextrálny\ndextrín\ndextrínový\ndextrokardia\ndextrotropný\ndextróza\ndextrózu\ndextrózy\ndezaktivácia\ndezaktivovať\ndezaktualizácia\ndezavuovať\ndezén\ndezénový\ndezercia\ndezert\ndezertér\ndezertérsky\ndezertérstvo\ndezertifikácia\ndezertikolný\ndezertmi\ndezertný\ndezertovať\nDezidera\ndezideratum\nDezider\ndezidérium\nDezidermi\nDezideroch\nDeziderom\nDeziderov\nDeziderovi\nDeziderovia\ndezignácia\ndezignácie\ndezignácii\ndezignáciu\ndezignovaný\ndezignovať\ndezilúzia\ndeziluzionizmus\ndeziluzionovať\ndezindustrializácia\ndezindustrializácie\ndezindustrializácii\ndezindustrializáciou\ndezindustrializáciu\ndezinfekcia\ndezinfekčne\ndezinfekčný\ndezinfekčný\ndezinficiens\ndezinfikovaný\ndezinfikovať\ndezinformácia\ndezinformačne\ndezinformačný\ndezinformovania\ndezinformovanie\ndezinformovaním\ndezinformovaniu\ndezinformovanosť\ndezinformovanosťou\ndezinformovaný\ndezinformovať\ndezinsekcia\ndezintegrácia\ndezintegračne\ndezintegračný\ndezintegrovali\ndezintegrovalo\ndezintegrovaný\ndezintegrovať\ndezintegruje\ndezinterpretácia\ndezodorácia\ndezodoráciu\ndezodoračný\ndezodorant\ndezodorantmi\ndezognovať\ndezolátne\ndezolátnosť\ndezolátny\ndezorganizácia\ndezorganizačne\ndezorganizačný\ndezorganizátor\ndezorganizovane\ndezorganizovaný\ndezorganizovať\ndezorientácia\ndezorientovane\ndezorientovanie\ndezorientovanosť\ndezorientovaný\ndezorientovať\ndezoxidácia\ndezoxidovanie\ndezoxidovať\nDežerice\ndežiem\ndežma\ndežmový\ndežurnaja\nDF\ndharma\ndhoul\ndiabete\ndiabetes\ndiabetický\ndiabetička\ndiabetik\ndiabetmi\ndiabetoch\ndiabetológ\ndiabetológia\ndiabetom\ndiabetov\ndiabetu\ndiabety\ndiabla\ndiablami\ndiabli\ndiablic\ndiablica\ndiablik\ndiabliky\ndiablisko\ndiabloch\ndiablom\ndiablov\ndiablova\ndiablove\ndiablovho\ndiablovi\ndiablovmu\ndiablovo\ndiablových\ndiablu\ndiabol\ndiabolický\ndiabolizmus\ndiabolka\ndiabolsky\ndiabolský\ndiáda\ndiadém\ndiadémový\ndiafan\ndiafilm\ndiafón\ndiafora\ndiaforéza\ndiafragma\ndiag\ndiagenéza\ndiagnosticky\ndiagnostický\ndiagnostička\ndiagnostiká\ndiagnostika\ndiagnostik\ndiagnostikovania\ndiagnostikovanie\ndiagnostikovaním\ndiagnostikovaniu\ndiagnostikovaný\ndiagnostikovať\ndiagnostikum\ndiagnóz\ndiagnózach\ndiagnózam\ndiagnóza\ndiagonál\ndiagonálach\ndiagonálam\ndiagonála\ndiagonálne\ndiagonálny\ndiagrafu\ndiagram\ndiagramový\ndiachrónia\ndiachronicky\ndiachronický\ndiachroniský\ndiachrónne\ndiachrónny\ndiák\ndiakon\ndiakonia\ndiakonický\ndiakonion\ndiakonís\ndiakonisa\ndiakonka\ndiakonský\ndiakonstvo\ndiakovský\ndiakriticky\ndiakritický\ndiakritika\ndiaľach\ndiaľam\ndiaľami\ndiaľava\ndiaľ\ndiale\ndialekt\ndialektickomaterialistický\ndialekticky\ndialektický\ndialektička\ndialektika\ndialektik\ndialektizmus\ndialektmi\ndialektológ\ndialektológia\ndialektologický\ndialektový\ndialer\ndialí\ndiaľkár\ndiaľkára\ndiaľkar\ndiaľkári\ndiaľkárka\ndiaľkárkach\ndiaľkárkam\ndiaľkárkami\ndiaľkarka\ndiaľkárke\ndiaľkárkou\ndiaľkárku\ndiaľkárky\ndiaľkármi\ndiaľkároch\ndiaľkárok\ndiaľkárom\ndiaľkárov\ndiaľkárovi\ndiaľkarský\ndiaľka\ndiaľkomer\ndiaľkomerný\ndiaľkopisnej\ndiaľkove\ndiaľkovo\ndiaľkovod\ndiaľkovodmi\ndiaľkovodom\ndiaľkovodov\ndiaľkovodu\ndiaľkovody\ndiaľkový\ndiaľnic\ndiaľnica\ndiaľnicový\ndiaľničný\ndiálny\ndialóg\ndialogickosť\ndialogický\ndialogizovať\ndialógmi\ndialógoch\ndialógom\ndialógov\ndialógový\ndialógu\ndialógy\ndiaľou\ndialytický\ndialyzačný\ndialyzátor\ndialýza\ndialyzovaných\ndialyzovať\ndiamagnetizmus\ndiamant\ndiamantmi\ndiamantove\ndiamantový\ndiameter\ndiametrálne\ndiametrálny\ndiametrom\ndiametru\nDiamín\nDián\nDianách\nDianám\nDiana\ndianetika\ndianie\nDianin\nDianinho\ndiapauza\ndiapazón\ndiapivo\ndiapozitív\ndiapozitíve\ndiapozitívny\ndiaprojekcia\ndiaprojektor\ndiarea\ndiarchia\ndiárium\ndiár\ndiármi\ndiaspór\ndiaspora\ndiaspórach\ndiaspóram\ndiaspóra\ndiasporou\ndiaspory\ndiastatický\ndiastáza\ndiastéma\ndiastôl\ndiastola\ndiastolický\ndiatermia\ndiatermický\ndiatéza\ndiatí\ndiatomit\ndiatomitov\ndiatomitu\ndiatomity\ndiatonický\nDiatu\ndiať\ndiatyron\ndiavýrobok\ndiazenitál\ndiazotípia\ndiazotypia\ndibenzo\ndibenzofurán\ndibenzo-p-dioxín\ndiboran\ndictum\nDIČ\ndidakticky\ndidaktický\ndidaktička\ndidaktika\ndidaktik\ndidaktizovať\ndidot\ndie\ndiecéz\ndiecézach\ndiecézam\ndiecéza\ndiecézny\ndiefenbachia\ndieferenciál\ndiek\ndiel\ndielcach\ndielcam\ndielce\ndielcový\ndielče\ndielček\ndielčich\ndielčí\ndielčimi\ndielec\ndielektrický\ndielektrikum\ndielenský\ndielik\ndielko\ndielkov\ndielmi\ndielňach\ndielňam\ndielňa\ndielní\ndielnička\ndielny\ndielok\ndielo\ndielovedúci\ndielový\ndien\ndiencefalón\ndienko\ndienok\ndiep\ndiera\ndieréza\ndiergol\ndierisko\ndierkastý\ndierkatý\ndierkavý\ndierka\ndierkovací\ndierkovač\ndierkovačka\ndierkovanie\ndierkovaný\ndierkovať\ndierkovej\ndierkovitý\ndiernoštítkový\ndierny\ndieročka\ndierovacej\ndierovací\ndierovacia\ndierovacie\ndierovacieho\ndierovacích\ndierovacími\ndierovač\ndierovania\ndierovanie\ndierovaný\ndierovať\ndierovo\ndierový\nDies\ndiesel\ndieselagregát\ndieselagregátmi\ndieselagregátoch\ndieselagregátom\ndieselagregátov\ndieselagregátu\ndieselagregáty\ndieselelektrický\ndieselgenerátor\ndieselizáciu\ndieselový\ndiét\ndieťa\ndiétach\ndiétam\ndietár\ndietárka\ndietárov\ndieťatiek\ndieťatko\ndiéta\ndieterika\ndieteticky\ndietetický\ndietetik\ndietetiká\ndietetika\ndietkach\ndietkastý\ndietky\ndiétne\ndiétny\ndietok\ndietológ\ndietológia\ndiéty\ndiev\ndievča\ndievčatiek\ndievčatísk\ndievčatisko\ndievčatko\ndievčence\ndievčenia\ndievčenskosť\ndievčensky\ndievčenský\ndievčenstvo\ndievčic\ndievčica\ndievčička\ndievčí\ndievčín\ndievčina\ndievčinka\ndievčisko\ndievčiť\ndievka\ndievocký\ndievoctvo\ndiež\ndiežach\ndiežam\ndieža\ndiežka\ndifamácia\ndifamáciu\ndifenbachia\ndiferenciácia\ndiferenciačne\ndiferenciačný\ndiferenciál\ndiferenciále\ndiferenciálmi\ndiferenciálny\ndiferenciálový\ndiferencia\ndiferencovane\ndiferencovania\ndiferencovanie\ndiferencovaním\ndiferencovaniu\ndiferencovanosť\ndiferencovaný\ndiferencovateľný\ndiferencovať\ndiferenčne\ndiferenčný\ndiferentný\ndificilita\ndificilný\ndifluencia\ndiformita\ndifosgén\ndifrakcia\ndifrakčný\ndiftéria\ndifterický\ndiftín\ndiftínový\ndiftong\ndiftongický\ndiftongizácia\ndiftongmi\ndiftongoch\ndiftongom\ndiftongov\ndiftongový\ndiftongu\ndiftongy\ndifundovať\ndifúzer\ndifúzera\ndifuzér\ndifúzeri\ndifuzéry\ndifúzery\ndifúzia\ndifúzne\ndifúznosť\ndifúzny\ndifúzor\ndifúzori\ndigamia\ndigerácia\ndigerovať\ndigescia\ndigescie\ndigescii\ndigescií\ndigest\ndigestív\ndigestívum\ndigestor\ndigestorový\ndigger\ndigit\nDigital\ndigitalín\ndigitalis\ndigitalizácia\ndigitalizovaný\ndigitalizovať\ndigitálne\ndigitálny\ndiglosia\ndignita\ndignitár\ndigresia\ndihybrid\ndichogamia\ndichotómia\ndichotomický\ndichróman\ndichromatický\ndichromázia\nDijon\nDijone\ndikcia\ndiklínia\ndikobraz\ndikobrazí\ndikólon\ndiktafón\ndiktát\ndiktátmi\ndiktátor\ndiktátormi\ndiktátorsky\ndiktátorský\ndiktátorstvo\ndiktatúr\ndiktatúrach\ndiktatúram\ndiktatúra\ndiktovania\ndiktovanie\ndiktovaním\ndiktovaniu\ndiktovaný\ndiktovať\ndiktum\ndilacerácia\ndilácia\ndilatácia\ndilatačný\ndilatans\ndilatátor\ndilatometer\ndilatovať\ndilem\ndilematický\ndilema\ndílera\ndíler\ndíleri\ndílerka\ndílermi\ndíleroch\ndílerom\ndílerov\ndílerovi\ndílerský\ndílerstvo\ndiletant\ndiletantizmus\ndiletantka\ndiletantsky\ndiletantský\ndiletantstvo\ndiligencie\ndilina\nDillí\ndillíjskeho\ndillíjskej\ndillíjsky\ndilógia\ndiluviálny\ndilúvium\ndimenzia\ndimenzionálny\ndimenzovania\ndimenzovanie\ndimenzovaný\ndimenzovať\ndimér\ndiminúcia\nDimitrovka\nDimitrovke\nDimitrovku\nDimitrovky\ndimofrne\ndimofrný\ndimorfia\ndimorfický\ndimorfizmus\ndimorfne\ndimorfný\nDIN\ndinár\ndinármi\nDinas\nDinase\ndinasové\ndinasových\nDinasu\ndiner\nding\nDinga\ndingo\nDingom\nDinka\nDinku\ndínom\ndínom-dánom\ndinosaurí\ndinosaurmi\ndinosaurus\ndinyl\ndinylmi\ndiód\ndiódach\ndiódam\ndióda\ndiódový\nDiogenes\ndiogenovský\ndiolén\ndiolénový\nDionýz\ndionýzie\ndionýzovský\nDioptra\ndioptria\ndioptrický\nDioptru\ndioráma\ndiority\ndioskurovia\nDioskurovia\ndioxan\ndioxid\ndioxidový\ndioxín\ndipkať\ndipl\ndiplakúzia\ndiplégia\ndiplofia\ndiplofónia\ndiplomacia\ndiplomatár\ndiplomat\ndiplomatickosť\ndiplomaticky\ndiplomatický\ndiplomatizovať\ndiplomatka\ndiplom\ndiplomovaný\ndiplomovka\ndiplomový\ndiplopia\ndipódia\ndipól\ndipólmi\ndipólový\ndipsománia\ndiptria\ndiptych\ndirect\ndirekcia\ndirekt\ndirektív\ndirektívach\ndirektívam\ndirektíva\ndirektívne\ndirektívnosť\ndirektívny\ndirektmi\ndirektný\ndirektor\ndirektórium\ndirektorka\ndirektormi\ndirektorova\ndirektorove\ndirektorovo\ndirektorovu\ndirektorovým\ndirektorský\ndirektorstvo\ndirham\ndirigent\ndirigentka\ndirigentský\ndirigizmus\ndirigovania\ndirigovanie\ndirigovaniu\ndirigovaný\ndirigovať\ndirimovať\ndirndl\ndisacharidom\ndisážio\ndisciplín\ndisciplínach\ndisciplínam\ndisciplinárka\ndisciplinárne\ndisciplinárny\ndisciplína\ndisciplinovane\ndisciplinovanosť\ndisciplinovaný\ndisciplinovať\ndiscízia\ndisekcia\ndiseminácia\ndisent\ndisentmi\ndisfunkcia\ndisfunkčný\ndisgustovať\ndisharmónia\ndisharmonickosť\ndisharmonicky\ndisharmonický\ndisident\ndisidentka\ndisidentský\ndisidentstvo\ndisimilácia\ndisimilačný\ndisimulácia\ndisipácia\ndisipovať\ndisjunkcia\ndisjunktívny\ndisjunktívny\ndisjunktný\ndiskant\ndiskantmi\ndiskantový\ndiskár\ndiskárka\ndiskársky\ndisk\ndiskdžokej\ndisketa\ndisketový\ndiskofil\ndiskografia\ndisko\ndiskont\ndiskontinuálny\ndiskontinuít\ndiskontinuita\ndiskontinuitne\ndiskontinuitný\ndiskontmi\ndiskontne\ndiskontný\ndiskontoval\ndiskontovala\ndiskontovania\ndiskontovanie\nDiskontovaním\ndiskontovaný\ndiskontovať\ndiskontuje\ndiskontujeme\ndiskoték\ndiskotékach\ndiskotékam\ndiskotekár\ndiskotekárka\ndiskotekárovu\ndiskotéka\ndiskotékový\ndiskovitý\ndiskovka\ndiskovník\ndiskový\ndiskrécia\ndiskrécie\ndiskrécii\ndiskreditácia\ndiskreditovanie\ndiskreditovaním\ndiskreditovaniu\ndiskreditovaný\ndiskreditovať\ndiskrepancia\ndiskrepanciách\ndiskrepanciám\ndiskrepanciami\ndiskrepancie\ndiskrepancii\ndiskrepancií\ndiskrepanciou\ndiskrepanciu\ndiskrepantný\ndiskrétne\ndiskrétnosť\ndiskrétny\ndiskriminácia\ndiskriminačne\ndiskriminačný\ndiskriminant\ndiskriminovania\ndiskriminovanie\ndiskriminovaný\ndiskriminovať\ndiskriminujúci\ndiskurz\ndiskurzívny\ndiskusia\ndiskusno\ndiskusný\ndiskutabilne\ndiskutabilný\ndiskutér\ndiskutérka\ndiskutovanie\ndiskutovaný\ndiskutovať\ndiskutujúci\ndiskvalifikácia\ndiskvalifikačný\ndiskvalifikovaný\ndiskvalifikovať\ndisky\ndislokácia\ndislokačný\ndislokoval\ndislokovali\ndislokovaný\ndislokovať\ndislokuje\ndismembrácia\ndisociácia\ndisociovaný\ndisociovať\ndisolúcia\ndisolvovať\ndisonancia\ndisonančne\ndisonančný\ndisonantne\ndisonantný\ndisonuje\ndisosmia\ndispanzívny\ndisparátne\ndisparátnosť\ndisparátny\ndisparít\ndisparita\ndisparite\ndisparitu\ndisparity\ndispečera\ndispečer\ndispečeri\ndispečerizácii\ndispečerka\ndispečermi\ndispečeroch\ndispečerom\ndispečerov\ndispečerovi\ndispečersky\ndispečerský\ndispečing\ndispečingmi\ndispečingoch\ndispečingom\ndispečingov\ndispečingu\ndispečingy\ndispenz\ndispenzácia\ndispenzár\ndispenzarizácia\ndispenzatórium\ndisperzia\ndisperzný\ndisplacement\ndisplej\ndisponent\ndisponibilita\ndisponibilne\ndisponibilný\ndisponovane\ndisponovanie\ndisponovanosť\ndisponovaný\ndisponovať\ndisponujúci\ndispozícia\ndispozične\ndispozičný\ndispozitívna\ndispozitívnej\ndispozitívny\ndispozitívnymi\ndispozítor\ndisproporcia\ndisproporcionálny\ndisproporčný\ndistančný\ndisthen\ndisticha\ndistichon\ndistingvovane\ndistingvovanosť\ndistingvovaný\ndistonovať\ndistorzia\ndistorziám\ndistorzie\ndistorzií\ndistorziou\ndistrakcia\ndistrib\ndistribúciach\ndistribúciam\ndistribúcia\ndistribučne\ndistribučno\ndistribučný\ndistribuovanie\ndistribuovaný\ndistribuovať\ndistributér\ndistributérka\ndistributérsky\ndistribútor\ndistribútorka\ndistribútormi\ndistribútorský\ndistrikt\ndisulfid\ndiškrécia\ndiškurovať\ndiškurz\ndišpenz\ndišpút\ndišputácia\ndišputácie\ndišputa\ndištancia\ndištanc\ndištancovaní\ndištancovanie\ndištancovaním\ndištancovaniu\ndištancovať\ndištančný\ndištinkcia\ndištinktívny\ndištncovať\ndištriktálny\ndištrikt\ndištriktmi\ndištriktový\ndištriktuálny\nDÍT\nDita\ndithering\ndithyramb\nDitou\nDity\ndityramb\ndityrambický\ndiuretický\ndiuretikum\ndiuréza\ndivácka\ndivácke\ndiváckeho\ndiváckej\ndiváckemu\ndivácki\ndiváckom\ndiváckou\ndivácku\ndivácky\ndiváckych\ndiváckym\ndiváckymi\ndiváčka\ndivadelne\ndivadelnejší\ndivadelnícky\ndivadelníctvach\ndivadelníctvam\ndivadelníctvo\ndivadelníčka\ndivadelník\ndivadelnosť\ndivadelný\ndivadielko\ndivadielok\ndivadlo\ndivagácia\ndívajúci\ndivák\ndivákovej\ndivákovho\ndiváky\ndivan\ndiván\ndívanie\ndivánik\ndivánový\ndívať\ndiv\ndive\ndivergencia\ndivergentne\ndivergentný\ndivergovať\ndivertimento\ndiverzant\ndiverzantsky\ndiverzantský\ndiverzia\ndiverzifikácia\ndiverzifikačný\ndiverzita\ndiverzný\nDiviacka\ndiviačic\ndiviačica\ndiviačí\ndiviačik\ndiviak\ndiviakovi\ndividenda\ndividendovo\ndividendový\ndivieť\ndivinácia\ndivina\nDivíne\nDivinka\nDivinky\nDivino\ndivínska\ndivinyl\ndivis\ndiviť\ndivízia\ndivízny\ndivne\ndivno\ndivný\ndivo\ndivočieť\ndivočina\ndivoch\ndivoko\ndivokosť\ndivokrásny\ndivoký\ndivorastúcich\ndivosť\ndivoška\ndivošský\ndivošstvo\ndivotvorca\ndivotvorne\ndivotvornejší\ndivotvorný\ndivozel\ndivšej\ndivší\ndivšia\ndivšie\ndivšieho\ndivšiemu\ndivších\ndivším\ndivšími\ndivšiu\ndivšom\ndivšou\ndivúca\ndivúce\ndivúceho\ndivúcej\ndivúcemu\ndivúci\ndivúcich\ndivúcim\ndivúcimi\ndivúcom\ndivúcou\ndivúcu\ndivulgácia\ndivý\ndixieland\ndixielandový\ndizajn\ndizajnér\ndizajnérka\ndizajnérsky\ndizajnérstvach\ndizajnérstvam\ndizajnérstvo\ndizertácia\ndizertačný\nDJ\nDjakarta\nDJZ\nDK\ndkg\nDKK\ndkrotať\ndl\ndlab\ndlabačka\ndlabačku\ndlabačky\ndlabania\ndlabanie\ndlabaním\ndlabať\ndlaba\ndlabči\ndlabčime\ndlabčite\ndlabčiť\ndlaha\ndlaň\ndlanička\ndlanísk\ndlanisko\ndlaňovitý\ndlaňový\ndláp\ndlapa\ndlapči\ndlapčime\ndlapčite\ndlapčiť\ndlát\ndlátach\ndlátam\ndlátkach\ndlátkam\ndlátko\ndlátok\ndláto\ndlátový\ndlávené\ndláviť\ndlažba\ndlažbový\ndláždenie\ndláždený\ndláždic\ndlaždica\ndlaždicoviteľné\ndlaždicový\ndláždič\ndlaždička\ndláždičský\ndláždiť\ndlážka\ndlážkový\ndlažobná\ndlažobné\ndlažobného\ndlažobnou\ndlažobných\ndlb\ndlbať\ndlbla\ndlbli\ndlblo\ndlbne\ndlbnem\ndlbneme\ndlbneš\ndlbnete\ndlbni\ndlbnime\ndlbnite\ndlbnú\ndlbnúc\ndlbnúť\ndlbol\ndlbú\ndlbúc\ndlej\ndlel\ndlené\ndlení\ndlenie\ndlha\ndlhaňa\ndlháň\ndlháni\ndlhániskoch\ndlhánisko\ndlhániskov\ndlhániskovi\ndlhániskovia\ndlhánsky\ndlhánsky\ndlh\ndlho\ndlhočizný\ndlhodobe\ndlhodobejší\ndlhodobo\ndlhodobosť\ndlhodobý\ndlhohrajúci\ndlhochvostý\ndlhokánsky\ndlhokánsky\ndlhokrídly\ndlhometráž\ndlhometrážny\nDlhoňa\ndlhonohý\ndlhopis\ndlhopisový\ndlhoprstý\ndlhoročne\ndlhoročný\ndlhoručný\ndlhoruký\ndlhosrstý\ndlhosť\ndlhotrvajúcejšej\ndlhotrvajúcejší\ndlhotrvajúcejšia\ndlhotrvajúcejšie\ndlhotrvajúcejšieho\ndlhotrvajúcejšiemu\ndlhotrvajúcejších\ndlhotrvajúcejším\ndlhotrvajúcejšími\ndlhotrvajúcejšiu\ndlhotrvajúcejšom\ndlhotrvajúcejšou\ndlhotrvajúci\ndlhotrvanlivé\ndlhovaný\ndlhovať\ndlhovekosť\ndlhovekosti\ndlhovekosťou\ndlhoveký\ndlhovlasý\ndlhovlnný\ndlhovo\ndlhový\ndlhšie\ndlhší\ndlhý\ndlie\ndlieť\nDLL\ndluktuácia\ndlž\ndĺžava\ndĺže\ndlžen\ndlženého\ndĺžeň\ndlženú\ndlží\ndlžia\ndlžil\ndlžila\ndlžili\ndlžilo\ndlžím\ndlžíme\nDlžín\ndlžina\nDlžiny\ndlžiť\ndĺžiť\ndlžizný\ndĺžka\ndĺžkovo\ndĺžkový\ndlžnícky\ndlžníčka\ndlžník\ndlžníkove\ndlžníkovej\ndlžníkovho\ndlžníkovo\ndlžníkovom\ndlžníkovou\ndlžníkovu\ndlžníkovým\ndĺžny\ndlžný\ndlžoba\ndlžobný\ndĺžok\ndm\nDM\nDMD\ndmul\ndmula\ndmuli\ndmulo\ndmúť\nDN\ndna\ndneperský\ndnepropetrovskej\nDnepropetrovský\ndnes\ndneska\ndneskajší\ndneskajšok\ndnešný\ndnešok\ndnia\ndníček\ndníčka\ndníčkami\ndníčkoch\ndníčkom\ndníčkov\ndníčku\ndníčky\ndniť\ndno\ndňov\ndnový\ndňový\ndnu\ndnuka\ndnuká\ndnukajší\ndnukajšok\ndo\ndoahovať\ndoarchivovať\ndôb\nďob\ndobabraný\ndobabrať\ndobabre\ndobabrem\ndobabreme\ndobabreš\ndobabrete\ndobabri\ndobabrime\ndobabrite\ndobabrú\ndobabrúc\ndobačovať\nďobanie\nďobať\ndoba\ndobehá\ndobeháva\ndobehávaj\ndobehávajme\ndobehávajte\ndobehávajú\ndobehávajúc\ndobehával\ndobehávala\ndobehávali\ndobehávalo\ndobehávam\ndobehávame\ndobehávaš\ndobehávať\ndobehávate\ndobehnuteľný\ndobehnutia\ndobehnutie\ndobehnutím\ndobehnúť\ndobehnutý\ndobehoval\ndobehovala\ndobehovali\ndobehovalo\ndobehovať\ndobehuj\ndobehuje\ndobehujem\ndobehujeme\ndobehuješ\ndobehujete\ndobehujme\ndobehujte\ndobehujú\ndobehujúc\ndobehujúci\ndobehúva\ndobehúvaj\ndobehúvajme\ndobehúvajte\ndobehúvajú\ndobehúvajúc\ndobehúval\ndobehúvala\ndobehúvali\ndobehúvalo\ndobehúvam\ndobehúvame\ndobehúvaš\ndobehúvať\ndobehúvate\ndobelasa\ndoberanie\ndoberať\ndoberman\ndobež\ndobiediť\ndobiedzaní\ndobiedzanie\ndobiedzať\ndobiedzavo\ndobiedzavosť\ndobiedzavý\ndobiehaní\ndobiehania\ndobiehanie\ndobiehaním\ndobiehaniu\ndobiehať\ndobiela\ndobier\ndobierka\ndobierkový\ndobíjaná\ndobíjané\ndobíjaní\ndobíjania\ndobíjanie\ndobíjaniu\ndobíjať\ndobitia\ndobitie\ndobitiu\ndobiť\ndobitý\nďobkať\ndobleda\nďobnúť\ndobo\ndoboč\ndobodaného\ndobodať\ndoboha\ndobojovaný\ndobojovať\ndoboka\ndobordinec\ndoboška\ndobove\ndobovo\ndobovosť\ndobový\ndobrácka\ndobrácke\ndobráckeho\ndobráckej\ndobráckejšej\ndobráckejší\ndobráckejšia\ndobráckejšie\ndobráckejšieho\ndobráckejšiemu\ndobráckejších\ndobráckejším\ndobráckejšími\ndobráckejšiu\ndobráckejšom\ndobráckejšou\ndobráckemu\ndobrácki\ndobráckom\ndobráckosť\ndobráckou\ndobrácku\ndobrácky\ndobráckych\ndobráckym\ndobráckymi\ndobráctvach\ndobráctvam\ndobráctvo\ndobráčisk\ndobráčiská\ndobráčiskách\ndobráčiskám\ndobráčisko\ndobráčisku\ndobráčka\ndobrák\ndobraného\ndobranie\ndobrať\ndobŕdať\ndobre\ndobreže\nDobriansky\ndobrista\nDobrman\ndobrobyt\ndobrobytmi\nDobroč\ndobročinne\ndobročinnosť\ndobročinný\ndobrodej\ndobrodejný\ndobrodenie\ndobrodil\ndobrodila\ndobrodinec\ndobrodinka\ndobrodruh\ndobrodružne\ndobrodružnosť\ndobrodružný\ndobrodružstvo\ndobrodušne\ndobrodušnosť\ndobrodušný\nDobrohošť\nDobrohošti\ndobrojil\ndobrojila\ndobro\nDobromil\nDobromila\nDobromír\ndobromyseľne\ndobromyseľnosť\ndobromyseľný\ndobronivského\ndobronzova\ndobropis\ndobroprajne\ndobroprajník\ndobroprajnosť\ndobroprajný\ndobrorečenie\ndobrorečiť\nDobroslava\nDobroslav\ndobrosrdečne\ndobrosrdečnosť\ndobrosrdečný\ndobrota\ndobrotivo\ndobrotivosť\ndobrotivý\ndobrôtka\nDobrovodský\ndobrovolné\ndobrovoľne\ndobrovoľnícky\ndobrovoľníctvo\ndobrovoľníčka\ndobrovoľníčky\ndobrovoľník\ndobrovoľno\ndobrovoľnosť\ndobrovolných\nDobrovolný\ndobrovoľný\ndobrozdanie\ndobručičko\ndobručičký\ndobručko\ndobručký\ndobrulinko\ndobrulinký\nDobruška\nDobruške\ndobruško\nDobrušku\nDobrušky\ndobrušký\ndobrý\nDobšiná\nDobšinej\ndobšinských\nDobšinský\nDobšinú\ndobudenie\ndobudiť\ndobudovanie\ndobudovaný\ndobudovať\ndobudováva\ndobudovávajú\ndobudovávala\ndobudovávali\ndobudovávame\ndobudovávania\ndobudovávanie\ndobudovávaním\ndobudovávaný\ndobudovávať\ndobudovávate\ndobudúvaní\ndobudúvania\ndobudúvanie\ndobudúvať\ndobúchali\ndobúr\ndobýjanie\ndobýjať\ndobytčí\ndobytie\ndobytkár\ndobytkársky\ndobytkárstvach\ndobytkárstvam\ndobytkárstvo\ndobytková\ndobytný\ndobyto\ndobytok\ndobyť\ndobytý\ndobývací\ndobyvačne\ndobyvačnosť\ndobyvačný\ndobývane\ndobývanie\ndobývaný\ndobyvateľ\ndobyvateľky\ndobyvateľký\ndobývateľné\ndobývateľného\ndobývateľných\ndobyvateľsky\ndobyvateľský\ndobývať\ndobý\ndoc\ndocenenia\ndocenenie\ndoceneniu\ndocenený\ndocenganý\ndocengať\ndoceniteľný\ndoceniť\ndoceňovaniu\ndoceňovaný\ndoceňovať\ndocent\ndocentka\ndocentský\ndocentúr\ndocentúrach\ndocentúram\ndocentúra\ndocestovať\ndocielenia\ndocielenie\ndocielením\ndocielený\ndocieliť\ndocieľovania\ndocieľovanie\ndocieľovaných\ndocieľovaným\ndocieľovať\ndocikať\ndocitovať\ndocitujúci\ndocmúľa\ndocmúľaj\ndocmúľajme\ndocmúľajte\ndocmúľajú\ndocmúľajúc\ndocmúľal\ndocmúľala\ndocmúľali\ndocmúľalo\ndocmúľam\ndocmúľame\ndocmúľaš\ndocmúľať\ndocmúľate\ndocukrených\ndocukrovanie\ndocupkať\ndocválať\ndocvičiť\ndocvičovať\ndočahovať\ndočakať\ndočasne\ndočasnosť\ndočasný\ndočasu\ndočernie\ndočerta\ndočervena\ndočervenie\ndočesávaní\ndočesávanie\ndočesávať\ndočiahnuť\ndočiarať\ndočiarkať\ndočierna\ndočinenia\ndočista\ndočistenie\ndočistiť\ndočisťovaní\ndočisťovanie\ndočisťovaním\ndočisťovať\ndočítať\ndočítavať\ndočkať\ndočmárať\ndočum\ndodací\ndoďaleka\ndodanie\ndodaný\ndoďasa\ndodať\ndodatkový\ndodatočne\ndodatočný\ndodatok\ndodávací\ndodávanie\ndodávaný\ndodávateľ\ndodávateľka\ndodávateľove\ndodávateľsko\ndodavateľskú\ndodávateľsky\ndodavateľských\ndodávateľský\ndodávateľstva\ndodávateľstvám\ndodávateľstve\ndodávateľstvo\ndodávateľstvu\ndodávať\ndodávka\ndodávkovo\ndodavkový\ndodávkový\ndodavky\ndodavok\ndôdavok\ndodekadika\ndodekaéder\ndodekafónia\ndodesia\ndodierať\ndodieva\ndodievaj\ndodievajme\ndodievajte\ndodievajú\ndodievajúc\ndodieval\ndodievala\ndodievali\ndodievalo\ndodievam\ndodievame\ndodievaš\ndodievať\ndodievate\ndodiv\ndodláviť\ndodnes\ndodneska\ndodneška\ndodo\ndodola\ndodrať\ndodrgáňať\ndodriapaný\ndodriapať\ndodrúzganý\ndodrúzgať\ndodrvený\ndodrviť\ndodŕžajú\ndodržanie\ndodržaný\ndodržať\ndodržiavanie\ndodržiavaný\ndodržiavať\ndodržovanie\ndodržovať\ndodržujúci\ndodula\ndodulo\ndodýchať\ndodýchava\ndodýchavaj\ndodýchavajme\ndodýchavajte\ndodýchavajú\ndodýchavajúc\ndodýchaval\ndodýchavala\ndodýchavali\ndodýchavalo\ndodýchavam\ndodýchavame\ndodýchavaš\ndodýchavať\ndodýchavate\ndodží\ndofajči\ndofajčievať\ndofajčime\ndofajčite\ndofajčiť\ndofar\ndofarbovanie\ndofarí\ndofaria\ndofariac\ndofaril\ndofarila\ndofarili\ndofarilo\ndofarím\ndofaríme\ndofaríš\ndofariť\ndofaríte\ndofarme\ndofarte\ndofialova\ndofinancoval\ndofinancovala\ndofinancovali\ndofinancovalo\ndofinancovať\ndofinancuj\ndofinancuje\ndofinancujem\ndofinancujeme\ndofinancuješ\ndofinancujete\ndofinancujme\ndofinancujte\ndofinancujú\ndofinancujúc\ndofoťte\ndofrasa\ndofrčať\ndofúkať\ndôg\ndogabať\ndogazdovať\ndoga\ndoger\ndogiaviť\ndogiem\ndogmatársky\ndogmatickosť\ndogmaticky\ndogmatický\ndogmatik\ndogmatizmus\ndogmatizovať\ndogma\ndogniaviť\ndogs\ndoguľata\ndogúľať\ndohádal\ndohádať\ndohad\ndohadovania\ndohadovaniach\ndohadovanie\ndohadovaním\ndohadovaniu\ndohadovaný\ndohadovať\ndohadzovač\ndohadzovačka\ndohadzovaním\ndohadzovať\ndohája\ndoháňaná\ndoháňaní\ndoháňania\ndoháňanie\ndoháňaním\ndoháňať\ndohán\ndohánik\ndohánový\ndohárajúci\ndohárať\ndohasínanie\ndohasínať\ndohasiť\ndohasnúť\ndohášať\ndohla\ndohlaď\ndohľadanie\ndohľad\ndohladí\ndohľadne\ndohľadnosť\ndohľadný\ndohlboka\ndohliadacej\ndohliadací\nDohliadacia\ndohliadacie\ndohliadacieho\ndohliadacích\ndohliadacím\ndohliadacími\ndohliadaciu\ndohliadacom\ndohliadač\ndohliadačka\ndohliadanému\ndohliadaní\ndohliadania\ndohliadanie\ndohliadaním\ndohliadanou\ndohliadanú\ndohliadaných\ndohliadať\ndohliadka\ndohliadkach\ndohliadke\ndohliadkou\ndohliadku\ndohliadky\ndohliadnutím\ndohliadnuť\ndohliadok\ndohlo\ndohlušiť\ndohnaná\ndohnané\ndohnaní\ndohnanie\ndohnaním\nDohňany\ndohnaných\ndohnať\ndohneda\ndohnevať\ndohod\ndohoda\ndohodca\ndohodcovský\ndohodenia\ndohodenie\ndohodením\ndohodiť\ndohodkyňa\ndohodnutie\ndohodnúť\ndohodnutý\ndohodom\ndohodov\ndohodovací\ndohodovania\ndohodovaniach\ndohodovanie\ndohodovaný\ndohodovať\ndohodový\ndohoj\ndohol\ndohoľ\ndohola\ndohoniť\ndohor\ndohora\ndohorieť\ndohorievanie\ndohorievať\ndohotovenia\ndohotovenie\ndohotovený\ndohotoviť\ndohotovovať\ndohovárané\ndohováranie\ndohovárať\ndohovárka\ndohovor\ndohovorenia\ndohovorenie\ndohovorený\ndohovoriť\ndohovorte\ndohrab\ndohrabať\ndohraná\ndohrať\ndohrávať\ndohrávka\ndohra\ndohrč\ndohrčať\ndohreje\ndohrejú\ndohriala\ndohriať\ndohrievaná\ndohrievať\ndohrkotajúc\ndohrkotať\ndohrm\ndohrmieť\ndohrnúť\ndohroma\ndohromady\ndohryzenou\ndohrýzť\ndohučať\ndohúdať\ndohusta\ndohútať\ndohúžvať\ndohúžve\ndohúžvem\ndohúžveme\ndohúžveš\ndohúžvete\ndohúžvi\ndohúžvime\ndohúžvite\ndohúžvu\ndohúžvuc\ndoch\ndochádzajúci\ndochádzaní\ndochádzania\ndochádzanie\ndochádzaním\ndochádzaniu\ndochádzať\ndochádzka\ndochádzkový\ndochladzoval\ndochladzovanie\ndochladzovať\ndochnúť\ndôchodca\ndôchodcovský\ndochodiť\ndôchodkove\ndôchodkovo\ndôchodkový\ndôchodkyňa\ndôchodok\ndôchov\ndochovania\ndochovanie\ndochovaný\ndochovať\ndochovávateľ\ndochovávateľka\ndochovávať\ndochrám\ndochráma\ndochrámaj\ndochrámajme\ndochrámajte\ndochrámajú\ndochrámajúc\ndochrámam\ndochrámame\ndochrámaný\ndochrámaš\ndochrámate\ndochrámať\ndochrámme\ndochrámte\ndochucovadlo\ndochucovať\ndochuj\ndochuje\ndochujem\ndochujeme\ndochuješ\ndochujete\ndochujme\ndochujte\ndochujú\ndochujúc\ndochuti\ndochutiť\ndochvíľne\ndochvíľnosť\ndochvíľny\ndochystať\ndochytať\ndochytenie\ndochytený\ndochytiť\ndoista\ndojacej\ndojací\ndojacia\ndojacie\ndojacieho\ndojacích\ndojaciu\ndojacou\ndojačku\ndojachať\ndojatie\ndojato\ndojatosť\ndojať\ndojatý\ndojča\ndojčenec\ndojčenie\ndojčenský\ndojči\ndojčiaci\ndojčiat\ndojčiatko\ndojčiatok\ndojčime\ndojčite\ndojčiť\ndôjdený\ndôjdi\ndôjdime\ndôjdite\ndôjduc\ndojedať\ndojedený\ndojednania\ndojednaniach\ndojednanie\ndojednaním\ndojednaniu\ndojednaný\ndojednať\ndojednávané\ndojednávaného\ndojednávanie\ndojednávaných\ndojednávať\ndojedovať\ndojemne\ndojemnosť\ndojemný\ndojem\ndojení\ndojenia\ndojenie\ndojením\ndojeniu\ndojenú\ndojesť\ndojič\ndojička\ndojičský\ndojímať\ndojímavo\ndojímavosť\ndojímavý\ndojiť\ndojivosť\ndojka\ndojmológia\ndojmový\ndojnica\ndojník\ndojnosť\ndojný\ndojsť\ndôjsť\ndokaličený\ndokaličiť\ndokántrený\ndokántriť\ndokár\ndokársky\ndokatovanie\ndokatovaný\ndokatovať\ndokázania\ndokázanie\ndokázaniu\ndokázaný\ndokázateľne\ndokázateľnosť\ndokázateľný\ndokázať\ndôkaz\ndôkazne\ndôkazno\ndôkaznosť\ndôkazný\ndokazovacej\ndokazovací\ndokazovacia\ndokazovacie\ndokazovacieho\ndokazovacími\ndokazovacom\ndokazovaná\ndokazované\ndokazovanie\ndokazovanou\ndokazovaných\ndokazovať\ndôkazový\ndokazujúce\ndokazujúci\ndok\ndokedy\ndokedyže\ndokelu\ndoketizmus\ndokiaľ\ndokiaľkoľvek\ndokiaľže\ndokl\ndokladania\ndokladanie\ndokladaný\ndokladať\ndoklad\ndôkladne\ndôkladnejšie\ndôkladnosť\ndokladný\ndôkladný\ndokladoval\ndokladovala\ndokladovali\ndokladovalo\ndokladovať\ndokladovo\ndokladový\ndokladuj\ndokladuje\ndokladujem\ndokladujeme\ndokladuješ\ndokladujete\ndokladujme\ndokladujte\ndokladujú\ndokladujúc\ndoklam\ndoklato\ndoklať\ndokľavený\ndoklepneme\ndoklopať\ndokľuckať\ndoklusal\ndoklusať\ndokmásané\ndokmásať\ndokmášu\ndokmášuc\ndokmitá\ndoknísať\ndokníšu\ndokníšuc\ndokoja\ndokola\ndokoluje\ndokomponovať\ndokonale\ndokonalejší\ndokonalosť\ndokonalý\ndokonania\ndokonanie\ndokonaním\ndokonaniu\ndokonaný\ndokonať\ndokonávajúci\ndokonávať\ndokonavosť\ndokonavý\ndokonca\ndokončenie\ndokončeno\ndokončený\ndokonči\ndokončievaného\ndokončievanej\ndokončievaní\ndokončievania\ndokončievanie\ndokončievaním\ndokončievaniu\ndokončievaných\nDokončievaný\ndokončievať\ndokončime\ndokončite\nDokončite\ndokončiť\ndokončovanie\ndokončovaný\ndokončovateľ\ndokončovať\ndokopaný\ndokopať\ndokopávaný\ndokopávať\ndokopnúť\ndokopy\ndokorán\ndokotúľať\ndokovaná\ndokovania\ndokovanie\ndokovať\ndokový\ndokráčať\ndokrájať\ndokrčený\ndokrčiť\ndokrémova\ndokreslenie\ndokresleniu\ndokreslený\ndokresliť\ndokresľovať\ndokričať\ndokrinár\ndokrista\ndokríva\ndokrívať\ndokrivený\ndokriviť\ndokrivkať\nDokrkvaná\ndokrkvať\ndokrkvi\ndokrkvime\ndokrkvite\ndokŕmení\ndokŕmiť\ndokrmovanie\ndokrmovaných\ndokrmovať\ndokrúca\ndokrúcaj\ndokrúcajme\ndokrúcajte\ndokrúcajú\ndokrúcajúc\ndokrúcam\ndokrúcame\ndokrúcaš\ndokrúcate\ndokrúcať\ndokrútiť\ndokrútky\ndokrvava\ndokrvavený\ndokrvaviť\ndokrvený\ndoktorand\ndoktorandiek\ndoktorandka\ndoktorandský\ndoktorandúra\ndoktoranti\ndoktorantom\ndoktorantov\ndoktorát\ndoktorátmi\ndoktor\ndoktorka\ndoktormi\ndoktorov\ndoktorský\ndoktrín\ndoktrínach\ndoktrínam\ndoktrinár\ndoktrinárka\ndoktrinársky\ndoktrinárstvo\ndoktrína\ndokúčať\ndôkučlivý\ndôkučný\ndokumentácia\ndokumentačne\ndokumentačno\ndokumentačný\ndokumentarista\ndokumentaristika\ndokumentaristiku\ndokumentaristiky\ndokumentaristka\ndokumentárne\ndokumentárnosť\ndokumentárny\ndokumentátorov\ndokument\ndokumentmi\ndokumentovanie\ndokumentovaný\ndokumentovať\ndokumentový\ndokúpené\ndokúpenie\ndokúpených\ndokúpiť\ndokupované\ndokupovania\ndokupovanie\ndokupovaním\ndokupovať\ndokúriť\ndokvasenie\ndokvasený\ndokvasiť\ndokvitať\ndokvitnúť\ndokým\ndokývať\ndokyvkať\ndoladenie\ndoladiť\ndolaďovacie\ndolaďovaciu\ndolaďovač\ndolaďovači\ndolaďoval\ndolaďovaní\ndolaďovanie\ndolaďovať\ndoľahnúť\ndolám\ndolámaný\ndolámať\ndolami\ndolámme\ndolámte\nDoľanoch\nDoľany\ndolapení\ndolapenia\ndolapenie\ndolapením\ndolapeniu\nDolapeným\ndolapiť\ndolár\ndolármi\ndolárovo\ndolárový\ndoľava\ndol\ndolby\ndolce\ndolcissimo\ndole\ndolel\ndolela\ndoleli\ndolelo\ndolendo\ndolepovanie\ndolepovať\ndoleštiť\ndoleť\ndolet\ndoletieť\ndoletovať\ndoletový\ndoleuvedený\nDoležalova\ndôležite\ndôležitkársky\ndôležito\ndôležitosť\ndôležitý\ndoliahla\ndoliatie\ndoliať\ndoličný\ndolie\ndoliečená\ndoliečenia\ndoliečenie\ndoliečeniu\ndoliečiť\ndoliečovanie\ndoliečovať\ndoliehajúce\ndoliehať\ndoliem\ndolieme\ndolieš\ndolieť\ndolietať\ndoliete\ndolievanie\ndolievaním\ndolievať\ndoliezať\ndoliezť\ndolichokefália\ndolichomorfný\ndolichos\ndolina\ndolinka\ndolinný\ndolinôčka\ndolinový\nDolinský\ndolípať\ndolípavý\ndolistovať\ndolízať\ndolkáreň\ndolkárňach\ndolkárňam\ndolka\ndolkový\ndolma\ndolmán\ndolmen\ndolniacky\ndolniačka\ndolniak\ndolník\ndolníky\ndolnodunajské\ndolnodunajskej\ndolnodunajských\ndolnodunajským\nDolnohámorskí\ndolnohričovské\ndolnohričovského\ndolnohričovskej\ndolnokubínska\ndolnokubínske\nDolnokubínskeho\ndolnokubínskej\ndolnokubínskemu\ndolnokubínski\nDolnokubínskom\ndolnokubínsku\nDolnokubínsky\ndolnokubínskym\ndolnoliptovské\ndolnolopašovského\ndolnolopašovskom\ndolnolužický\nDolnonemecky\ndolnonemecký\ndolnooravskom\ndolnooravských\ndolnorakúsky\nDolnorakúšan\nDolnorakúšanka\ndolnosaské\ndolnosasky\ndolnosliezskej\nDolnosúčan\nDolnosúčanka\ndolnosúčanský\ndolnosúčsky\nDolnovestenickí\nDolnovestenickým\ndolnozemský\ndolný\ndolomán\ndolománik\ndolomit\ndolomiť\ndolomitický\ndolomitmi\ndolomitový\ndolomitský\ndolores\ndoloroso\ndolovanie\ndolovať\ndolózny\ndoložene\ndoloženia\ndoloženiam\ndoloženie\ndoložením\ndoloženiu\ndoložený\ndoložiť\ndoložka\ndolu\ndolunižšie\nDolupodpísaný\ndolus\ndoluznačky\ndoma\ndomá\ndomáci\ndomáckosti\ndomácky\ndomácnosť\ndomáco\ndomáhaní\ndomáhania\ndomáhanie\ndomáhaním\ndomáhať\ndomakať\ndomäkka\ndomaľovali\ndomaľovať\nDomaníky\nDomaniža\nDomanižská\nDomanovský\ndomár\ndomased\nDomaša\nDomaše\nDomaši\ndomášne\ndomášny\nDomašu\ndomazať\ndomažlický\ndom\ndóm\ndomček\ndomec\nDomel\ndomeliť\ndomén\ndoménach\ndoménam\ndoména\nDomeník\ndomenovaná\ndoménový\ndomerajú\ndomerali\ndomeraná\ndomerané\ndomerania\ndomeranie\ndomeraných\ndomerať\nDomeriame\ndomeriavajú\ndomeriavanie\ndomeriavaním\ndomeriavať\ndomestikácia\ndomestikovanie\ndomestikovaný\ndomestikovať\ndomí\nDomica\ndomicil\ndomicilovaný\ndomický\ndomieľané\ndomieľať\ndomiešali\ndomiešaný\ndomilovaná\ndomiluje\ndomín\ndominancia\ndominánt\ndominanta\ndominantne\ndominantnosť\ndominantný\ndomíňať\ndominikál\ndominikán\ndominikánka\ndominikánsky\nDominika\nDominik\ndomíniový\ndomínium\ndomino\ndominova\ndominovaný\ndominovať\ndominový\ndominujúci\ndominujúco\nDominus\ndomísk\ndomisko\nDOMKA\ndomkami\ndomkár\ndomkárka\ndomkársky\ndomkla\ndomkol\ndomkov\ndomku\ndomky\ndomlátiť\ndomliaždiť\ndomlieť\ndomnele\ndomnelo\ndomnelý\ndomnenie\ndomnienka\ndomnievať\ndomobrán\ndomobranách\ndomobranám\ndomobranami\ndomobrana\ndomobranec\ndomobranecký\ndomôcť\ndomodliť\ndomodra\ndomodulovať\ndomontovanie\ndomordovať\ndomorodec\ndomorodka\nDomorodky\ndomorodkyňa\ndomorodo\ndomorodý\ndomotaný\ndomotať\ndomotkať\ndomov\ndomovina\ndomovnícky\ndomovníctvach\ndomovníctvam\ndomovníctvo\ndomovníčka\ndomovník\nDomovo\ndomovský\ndomový\ndomôž\ndomôžuc\ndomptér\ndomrvený\ndomrviť\ndomrz\ndomŕzania\ndomŕzať\ndomŕzavý\ndomrzieť\nDomský\ndómsky\ndomučiť\ndomých\ndômysel\ndômyselne\ndômyselnosť\ndômyselný\ndomyslenia\ndomyslenie\ndomyslený\ndomyslieť\ndômyslu\ndomýšľania\ndomýšľanie\ndomýšľaním\ndomýšľaniu\ndomýšľaný\ndomýšľať\ndomýšľavo\ndomýšľavosť\ndomýšľavosti\ndomýšľavý\ndoň\ndonácia\ndonačný\ndonaha\ndonaháňa\ndonaháňaj\ndonaháňajme\ndonaháňajte\ndonaháňajú\ndonaháňajúc\ndonaháňal\ndonaháňala\ndonaháňali\ndonaháňalo\ndonaháňam\ndonaháňame\ndonaháňaš\ndonaháňať\ndonaháňate\nDonald\nDonalda\nDonaldom\nDonaldov\nDonaldovi\ndonášač\ndonášačka\ndonášačský\ndonášačstvo\ndonášanie\ndonášať\ndonáška\ndonáškový\nDonát\nDonáta\ndonátor\ndonau\ndoňa\nDonbas\nDonbase\nDonbasom\nDonbasu\ndon\ndončovia\ndonebavolajúci\ndonecká\nDoneckej\ndoneckých\ndonedávna\ndonegal\ndonekonečna\ndonesený\ndonesol\ndong\ndoňho\ndonchuan\ndonchuansky\ndonchuanský\ndonchuanstvo\ndoní\ndoničiť\ndoniesť\ndonivočiť\ndonjon\ndonkichot\ndonkichotovsky\ndonkichotovský\ndonkichotovstvo\ndonkichotsky\ndonkichotský\ndonkichotstvo\ndonn\ndonna\ndonor\ndonormi\ndonoroch\ndonorom\ndonorov\ndonosenie\ndonosený\ndonosiť\nDonovál\nDonovalami\nDonovaloch\ndonovalský\nDonovaly\ndonovej\ndônovok\ndonových\nDonu\ndonucovací\ndonucovania\ndonucovanie\ndonucovaním\ndonucovaniu\ndonucovaný\ndonucovať\ndonútenie\ndonútený\ndonútiť\nDony\ndoobeda\ndoobedie\ndoobjednaná\ndoobjednanie\ndoobjednať\ndoobjednávaní\ndoobjednávať\ndoobliekať\ndooceľova\ndookola\ndookrúhla\ndoopatrovaní\ndoopatrovanie\ndoopatrovať\ndoor\ndoorať\ndoostra\ndoostrenie\ndoostrovať\ndootĺkať\ndopadajúca\ndopadajúce\ndopadajúci\ndopadať\ndopadávať\ndopad\ndopadnutia\ndopadnutie\ndopadnutiu\ndopadnúť\ndopadnutý\ndopadový\ndopadujú\ndopadúvať\ndopajediť\ndopálený\ndopáliť\ndopaľovať\ndopaľuje\ndopar\ndopára\ndoparia\ndopariť\ndoparoma\ndopasený\ndopašoval\ndopašovala\ndopašovali\ndopašovalo\ndopašovať\ndopašuj\ndopašuje\ndopašujem\ndopašujeme\ndopašuješ\ndopašujete\ndopašujme\ndopašujte\ndopašujú\ndopašujúc\ndopátrať\ndopekať\ndopekelce\ndopekla\ndoper\ndoperie\ndoperiem\ndoperieme\ndoperieš\ndoperiete\ndoperme\ndoperte\ndoperú\ndoperúc\ndopestovania\ndopestovanie\ndopestovaním\ndopestovaný\ndopestovať\ndopiecť\ndopierať\ndopichať\ndopíjať\ndopínať\ndoping\ndopingmi\ndopingoch\ndopingom\ndopingov\ndopingový\ndopingu\ndopingy\ndopísanie\ndopísaný\ndopísať\ndopis\ndopísmena\ndopisníc\ndopisnica\ndopisný\ndopisovane\ndopisovanie\ndopisovaný\ndopisovateľ\ndopisovateľka\ndopisovateľský\ndopisovateľstvo\ndopisovať\ndopišať\ndopíšu\ndopíšuc\ndopiť\ndopla\ndoplácaná\ndoplácané\ndoplácaní\ndoplácania\ndoplácanie\ndoplácaním\ndoplácaniu\ndoplácať\ndoplatenie\ndoplatený\ndoplatiť\ndoplatková\ndoplatkové\ndoplatkovej\ndoplatné\ndoplatného\ndoplatnému\ndoplatnom\ndoplatným\ndoplatok\ndoplávať\ndoplavené\ndoplavení\ndoplaviť\ndoplaziť\ndopletať\ndopletený\ndopli\ndopliesť\ndoplna\ndopĺňací\ndopĺňajúci\ndopĺňanieN\ndopĺňaný\ndopĺňať\ndoplnenie\ndoplnený\ndoplniť\ndoplnkovo\ndoplnkový\ndoplnok\ndoplňovacíN\ndoplňovania\ndoplňovanie\ndoplňovaním\ndoplňovaniu\ndoplňovaný\ndoplňovať\ndoplňujúci\ndoplo\ndoplúžiť\ndopne\ndopo\ndopočítanie\ndopočítaním\ndopočítaný\ndopočítať\ndopočítavať\ndopočutia\ndopočuť\ndopočúval\ndopočúvala\ndopočúvať\ndopodrobna\ndopol\ndopoludňajší\ndopoludnia\ndopoludnie\ndopoly\ndopomáhania\ndopomáhať\ndopomôcť\ndopomôž\ndopomôžuc\ndopopolava\ndoporučene\ndoporučenie\ndoporučený\ndoporučiť\ndoporučoval\ndoporučovala\ndoporučovali\ndoporučovalo\ndoporučovaný\ndoporučovať\ndoporučuj\ndoporučuje\ndoporučujem\ndoporučujeme\ndoporučuješ\ndoporučujete\ndoporučujme\ndoporučujte\ndoporučujú\ndoporučujúc\ndoporučujúci\ndoposiaľ\ndoposielala\ndoposielania\ndoposielať\ndopotiť\ndopotkýnať\ndopoťte\ndopovaného\ndopovanie\ndopovať\ndopovedané\ndopovedať\ndopozerať\ndopr\ndopracovanie\ndopracovaný\ndopracovať\ndopracúvať\ndoprané\ndopranej\ndopraskaný\ndopraskať\ndopratajúc\ndopratať\ndopraté\ndoprať\ndopráv\ndopraváci\ndopravák\ndopravákmi\ndopravákom\ndopravákov\ndopravár\ndopravárka\ndopravársky\ndoprávať\ndoprava\ndopravca\ndopravenia\ndopravenie\ndopravený\ndopraviť\ndopravne\ndopravník\ndopravníkový\ndopravníku\ndopravníky\ndopravno\ndopravný\ndopravovania\ndopravovanie\ndopravovaný\ndopravovať\ndopraž\ndopraženie\ndopredaj\ndopredajový\ndopredaný\ndopredku\ndopredu\ndoprevádza\ndoprevádzaj\ndoprevádzajme\ndoprevádzajte\ndoprevádzajú\ndoprevádzajúc\ndoprevádzal\ndoprevádzala\ndoprevádzali\ndoprevádzalo\ndoprevádzam\ndoprevádzame\ndoprevádzanie\ndoprevádzaný\ndoprevádzaš\ndoprevádzať\ndoprevádzate\ndopriadací\ndopriadacie\ndopriadacích\ndopriadania\ndopriadanie\ndopriata\ndopriati\ndopriatí\ndopriatu\ndopriať\ndopriaty\ndopriava\ndopriavaj\ndopriavajme\ndopriavajte\ndopriavajú\ndopriavajúc\ndopriaval\ndopriavala\ndopriavali\ndopriavalo\ndopriavam\ndopriavame\ndopriavanie\ndopriavaš\ndopriavať\ndopriavate\ndoprosiť\ndoprosovanie\ndoprosovaním\nDoprosovaniu\ndoprosovať\ndoprosta\ndoprostred\ndoprostriedka\ndoprotiví\ndoprovod\ndoprš\ndopršať\ndopršia\ndopukať\ndopustenie\ndopusti\ndopustime\ndopustite\ndopustiť\ndopúšťajúci\ndopúšťať\ndoputoval\ndoputovala\ndoputovali\ndoputovať\ndoputuje\ndoputujeme\ndoputujú\ndopýtať\ndopyt\ndopytmi\ndopytovania\ndopytovanie\ndopytovaním\ndopytovaniu\ndopytovaný\ndopytovať\ndopytový\ndór\nDór\nDora\nDóra\ndorábajúci\ndorábané\ndorábaného\ndorábanej\ndorábaní\ndorábania\ndorábanie\ndorábaním\ndorábanú\ndorábateľ\ndorábateľka\ndorábateľský\ndorábať\ndorác\ndoráce\ndorácem\ndoráceme\ndoráceš\ndorácete\ndorácme\ndorácte\ndorácu\ndorácuc\ndorachotiť\ndoráňanie\ndoráňaný\ndoráňať\ndoranci\ndoraním\ndoraniť\ndorantaný\ndorantať\ndorastajúce\ndorastajúcimi\ndorastania\ndorastanie\ndorastať\ndorast\ndorastenec\ndorastenecký\ndorastenie\ndorastenka\ndorastený\ndorasti\ndorastime\ndorastite\ndorastový\ndorásť\ndorátané\ndorátaní\ndorátania\ndorátať\ndoraz\ndôraz\ndorazené\ndorazenia\ndorazenie\ndoraziť\ndôrazne\ndôraznosť\ndôrazný\ndôrazový\ndorážať\ndorby\ndordon\ndorediká\ndoredikaj\ndoredikajme\ndoredikajte\ndoredikajú\ndoredikajúc\ndoredikal\ndoredikala\ndoredikali\ndoredikalo\ndoredikám\ndoredikáme\ndoredikáš\ndoredikať\ndoredikáte\ndoredikovať\ndoredukovať\ndorev\ndorezané\ndorezať\ndorezávaní\nDóri\ndoriadený\ndoriadiť\nDorica\ndoriecť\ndoriešenia\ndoriešenie\ndoriešením\ndoriešeniu\ndoriešený\ndoriešiť\ndorichtovaný\ndorichtovať\nDorin\nDorina\nDorinom\nDorka\nDorku\ndormancia\ndormitár\ndormitíva\ndormitorium\ndorobenie\ndorobený\ndorobiť\ndorosiť\nDorota\nDorotin\nDorotinom\nDorotka\nDorotku\nDorotky\ndorovna\ndorovnať\ndorozca\ndorozprávanie\ndorozprávať\ndorozumej\ndorozumejme\ndorozumejte\ndorozumejú\ndorozumejúc\ndorozumel\ndorozumela\ndorozumeli\ndorozumelo\ndorozumene\ndorozumenie\ndorozumený\ndorozumie\ndorozumiem\ndorozumieme\ndorozumieš\ndorozumieť\ndorozumiete\ndorozumievací\ndorozumievaní\ndorozumievania\ndorozumievanie\ndorozumievaním\ndorozumievať\ndórsky\nDortmund\nDortmunde\nDortmundom\ndortmundský\nDortmundu\nDoru\ndorúbaj\ndorúbajme\ndorúbajte\ndorúbajúc\ndorúbania\ndorúbanie\ndorúbaniu\ndorúbaný\ndorúbať\ndorub\ndorubiť\ndoručenie\ndoručenka\ndoručený\ndoručiteľ\ndoručiteľný\ndoručiť\ndoručný\ndoručovací\ndoručovanie\ndoručovaný\ndoručovateľ\ndoručovateľka\ndoručovateľský\ndoručovať\ndorútiť\ndoružova\ndorýpať\ndoryť\ndorzalgia\ndorzálny\ndorzoventrálny\nDOS\ndosadania\ndosadať\ndosadenie\ndosadený\ndosadiť\ndosadnutí\ndosadnutie\ndosadnúť\ndosádzať\ndosadzovacia\ndosadzovacie\ndosadzovacích\ndosadzoval\ndosadzovala\ndosadzovali\ndosadzovalo\ndosadzované\ndosadzovaní\ndosadzovania\ndosadzovanie\ndosadzovaním\ndosadzovaných\ndosadzovať\ndosadzuj\ndosadzuje\ndosadzujem\ndosadzujeme\nDosadzujeme\ndosadzuješ\ndosadzujete\ndosadzujme\ndosadzujte\ndosadzujú\ndosadzujúc\ndosádž\ndosádže\ndosádžem\ndosádžeme\ndosádžeš\ndosádžete\ndosádžme\ndosádžte\ndosádžu\ndosádžuc\ndosah\ndosahovanie\ndosahovaný\ndosahovať\ndosahujúci\ndosák\ndosáľať\ndosať\ndosažiteľný\ndosekaný\ndosekať\ndoser\ndosevu\ndoschnúť\ndoschýna\ndoschýnaj\ndoschýnajme\ndoschýnajte\ndoschýnajú\ndoschýnajúc\ndoschýnal\ndoschýnala\ndoschýnali\ndoschýnalo\ndoschýnam\ndoschýname\ndoschýnaš\ndoschýnať\ndoschýnate\ndosiahnú\ndosiahnúc\ndosiahnute\ndosiahnuteľne\ndosiahnuteľnosť\ndosiahnuteľnosti\ndosiahnuteľnosťou\ndosiahnuteľný\ndosiahnutieN\ndosiahnuto\ndosiahnuť\ndosiahnutý\ndosial\ndosiaľ\ndosiala\ndosiali\ndosialo\ndosiať\ndosiati\ndosieliť\ndosiva\ndoskákať\ndoskakovať\ndoska\ndoskin\ndoskočísk\ndoskočisko\ndoskočiť\ndoskok\ndoskokový\ndoskovitý\ndoskovový\ndoskový\ndosl\ndosladené\ndosladiť\ndosládzania\ndosládzať\ndôsledkový\ndôsledne\ndôslednosť\ndôsledný\ndôsledok\ndoslň\ndoslova\ndoslov\ndoslovne\ndoslovnosť\ndoslovný\ndosluhovať\ndosluchu\ndoslúženej\ndoslúžení\ndoslúženia\ndoslúžiť\ndosmial\ndosmrtný\ndosníval\ndosnívala\ndosnívali\ndosnívaný\ndosnívať\ndosnívavať\ndosoliť\ndosp\ndospaniu\ndospať\ndospávanie\ndospávať\ndospelák\ndospelejšej\ndospelejší\ndospelejšia\ndospelejšie\ndospelejšieho\ndospelejšiemu\ndospelejších\ndospelejším\ndospelejšími\ndospelejšiu\ndospelejšom\ndospelejšou\ndospelích\ndospelo\ndospelosť\ndospelý\ndospetí\ndospev\ndospevovať\ndospi\ndospieť\ndospievajúcejší\ndospievajúci\ndospievanie\ndospievať\ndospim\ndospime\ndospiš\ndospite\ndospodku\ndospodu\ndosrala\ndossier\ndosť\ndostačiť\ndostačovať\ndostačujúca\ndostačujúce\ndostačujúceho\ndostačujúcej\ndostačujúcemu\ndostačujúci\ndostačujúcich\ndostačujúcim\ndostačujúcimi\ndostačujúco\ndostačujúcom\ndostačujúcou\ndostačujúcu\ndostajní\ndostanoviť\ndostatiu\ndostatkový\ndostato\ndostatočne\ndostatočnosťN\ndostatočný\ndostatok\ndostať\ndostáť\ndostatý\ndostava\ndostávajúci\nDostavám\ndostavania\ndostávania\ndostavanie\ndostávanie\ndostavaním\ndostavaniu\ndostávanú\ndostavaný\ndostavať\ndostávať\ndostavba\ndostave\ndostavená\ndostavené\ndostavení\ndostavenia\ndostavenie\ndostaviť\ndostavník\ndostavou\ndostavovanie\ndostavovať\ndostavší\ndostavu\ndostavujúce\ndostavy\ndostih\ndostihmi\ndostihnuteľný\ndostihnutie\ndostihnutiu\ndostihnúť\ndostihnutý\ndostihoch\ndostihom\ndostihov\ndostihovať\ndostihovísk\ndostihovisko\ndostihový\ndostihy\ndostižný\ndôstojne\ndôstojnícky\ndôstojníčka\ndôstojník\ndôstojníkov\ndôstojnosť\ndôstojný\ndostratena\ndostredivo\ndostredivosť\ndostredivý\ndostrel\ndostrele\ndostreliť\ndostrelmi\ndostreľovaní\ndostreľovať\ndostriehnuť\ndostriekaný\ndostriekať\ndostrieľaný\ndostrieľať\ndostrihať\ndostúpa\ndostúpaj\ndostúpajme\ndostúpajte\ndostúpajú\ndostúpajúc\ndostúpal\ndostúpala\ndostúpali\ndostúpalo\ndostúpam\ndostúpame\ndostúpaš\ndostúpať\ndostúpate\ndostúpení\ndostúpenia\ndostupiť\ndostúpiť\ndostupne\ndostupnosť\ndostupný\ndostupom\ndostupovať\ndostupu\ndosucha\ndosúšať\ndosušenie\ndosušiť\ndosušovacie\ndosušovaného\ndosušovanie\ndosušovať\ndosvedčenie\ndosvedčený\ndosvedči\ndosvedčiť\ndosvedčovať\ndosviedča\ndosviedčaj\ndosviedčajme\ndosviedčajte\ndosviedčajú\ndosviedčajúc\ndosviedčam\ndosviedčame\ndosviedčaš\ndosviedčate\ndosviedčať\ndosvietil\ndosvietila\ndosycovať\ndosychať\ndosypaním\ndosypaný\ndosypať\ndosýpať\ndosypú\ndosypúc\ndosýta\ndosýtený\ndosýtiť\ndoši\ndošibať\ndošije\ndošijem\ndošijeme\ndošiješ\ndošijete\ndošijú\ndošijúc\ndošikovať\ndošil\ndošila\ndošili\ndošilo\ndošime\ndoširoka\ndošite\ndošitie\ndošiť\ndošitý\ndošívať\ndošklb\ndošklbať\ndošklbú\ndošklbúc\ndoškolenia\ndoškolenie\ndoškolením\ndoškolený\ndoškoliť\ndoškoľovací\ndoškoľovaní\ndoškoľovania\ndoškoľovanie\ndoškoľovaním\ndoškoľovaniu\ndoškoľovať\ndoškrab\ndoškrabať\ndoškriab\ndoškriabal\ndoškriabala\ndoškriabali\ndoškriabalo\ndoškriabať\ndoškriabe\ndoškriabem\ndoškriabeme\ndoškriabeš\ndoškriabete\ndoškriabme\ndoškriabte\ndoškriabu\ndoškriabuc\ndoškrtenie\ndoškrtený\ndošľahať\ndošľaka\ndošľap\ndošľapovanie\ndošľapovať\ndošliapať\ndošliapnuť\ndošlý\ndošmatlať\ndošpatiť\ndošpiniť\ndošpliechať\ndoštenák\ndoštene\ndoštený\ndoštička\ndoštiep\ndoštiepať\ndoštiepe\ndoštiepem\ndoštiepeme\ndoštiepeš\ndoštiepete\ndoštiepme\ndoštiepte\ndoštiepu\ndoštiepuc\ndoštípať\ndoštudovanie\ndoštudovaný\ndoštudovať\ndoštverať\ndošúchať\ndošum\ndošupovať\ndošutrovať\ndotácia\ndotackať\ndotačne\ndotačný\ndoťahať\ndoťahovaní\ndoťahovania\ndoťahovanie\ndoťahovaním\ndoťahovať\ndotancovať\ndoťapkať\ndotárať\ndotárčina\ndoťať\ndoťatý\ndotaz\ndotazníček\ndotazníčka\ndotazníčkami\ndotazníčkoch\ndotazníčkom\ndotazníčkov\ndotazníčku\ndotazníčky\ndotazník\ndotazníkovo\ndotazníkový\ndotazoval\ndotazované\ndotazovaní\ndotazovanie\ndotazovaných\ndotekať\ndotelefonovať\ndoteper\ndoteperiť\ndoteperte\ndoterajší\ndoteraz\ndoterigať\ndoteružiť\ndotiahnú\ndotiahnúc\ndotiahnutia\ndotiahnutie\ndotiahnutím\ndotiahnutiu\ndotiahnuť\ndotiahnutý\ndotiaľ\ndotiaľto\ndotiecť\ndotierať\ndotieravec\ndotieravo\ndotieravosť\ndotieravý\ndotískať\ndotisnúť\ndotkať\ndotkávať\ndotknuteľnosťN\ndotknuteľný\ndotknutia\ndotknutie\ndotknuto\ndotknutosť\ndotknúť\ndotknutý\ndotkýnať\ndotláčať\ndotlač\ndotlačenia\ndotlačenie\ndotlačený\ndotlačiť\ndotĺcť\ndotlčené\ndotlej\ndotlejme\ndotlejte\ndotlejú\ndotlejúc\ndotlieť\ndotlievať\ndotĺkať\ndotmava\ndotmoliť\ndotovania\ndotovanie\ndotovaním\ndotovaniu\ndotovaný\ndotovať\ndotrápiť\ndotrená\ndotrepať\ndotretie\ndotrhané\ndotrhaných\ndotrhať\ndotriedenie\ndotrieliť\ndotrieskať\ndotrímať\ndotrmácať\ndotrp\ndotrpieť\ndotrundžený\ndotuha\ndotváraní\ndotvárania\ndotváranie\ndotváraním\ndotváraniu\ndotváranú\ndotvárať\ndotvarovať\ndotvor\ndotvorenia\ndotvorenie\ndotvorením\ndotvoreniu\ndotvorený\ndotvoriť\ndotvorte\ndotvrdiť\ndotvŕdzať\ndotvrdzovať\ndotyčnica\ndotyčnicový\ndotyčný\ndotýkajúce\ndotýkajúci\ndotýkania\ndotýkanie\ndotýkať\ndotyk\ndotykovo\ndotykový\ndotýrané\ndotýrať\ndouble\ndoublé\ndoubledecker\ndoúčať\ndoučiť\ndoučovací\ndoučovane\ndoučovanie\ndoučovaný\ndoučovať\ndoudierať\ndouglaska\ndoumývať\ndoupratoval\ndourážaný\ndourážať\ndourčite\ndoux\ndovádzať\ndováľať\ndovalcovať\ndovaliť\nDovalov\nDovalova\nDovalová\nDovalove\nDovalovo\nDovalovom\ndovandrovať\ndovar\ndovárať\ndovarenie\ndovarený\ndovariť\ndovarte\ndovážane\ndovážanie\ndovážaním\ndovážaný\ndovážateľ\ndovážať\ndovážený\ndovážiť\ndôvažkový\ndôvažok\ndovažovať\ndovčera\ndovečerať\ndovedať\ndovedenia\ndovedenie\ndovedením\ndovedený\ndovedna\ndoveľ\nDover\ndôver\ndôverách\ndôverám\ndôverami\ndôveraN\ndôverčivo\ndôverčivosť\ndôverčivý\ndoverečať\ndôverivý\ndôverne\ndôvernícky\ndôverníčka\ndôverník\ndôvernosť\ndôverný\ndôverovaní\ndôverovanie\ndôverovať\ndôverujúci\ndôveryhodne\ndôveryhodnejší\ndôveryhodnosť\ndôveryhodný\ndôveryplný\ndoveslovať\ndôvetok\ndovetrať\ndovi\ndoviať\ndoviazať\ndoviď\ndovidenia\ndovidieť\ndoviera\ndovieraj\ndovierajme\ndovierajte\ndovierajú\ndovierajúc\ndovieral\ndovierala\ndovierali\ndovieralo\ndovieram\ndovierame\ndovieraš\ndovierať\ndovierate\ndoviesť\ndoviezť\ndovili\ndovír\ndovitie\ndovito\ndovitý\ndovláčiť\ndovladovať\ndovlečenia\ndovliecť\ndovnútra\ndôvod\ndôvodenia\nDôvodenie\ndôvodením\ndôvodiť\ndôvodne\ndôvodnosť\ndôvodnosti\ndôvodnosťou\ndôvodný\ndôvodový\ndovoďte\ndovôkola\ndovolaní\ndovolania\ndovolaniach\ndovolaniami\ndovolanie\ndovolaním\ndovolaniu\ndovolať\ndovolávania\ndovolávanie\ndovolávaním\ndovolávať\ndovolenie\ndovolenkár\ndovolenka\ndovolenkovania\ndovolenkovanie\ndovolenkovaním\ndovolenkovať\ndovolenkovo\ndovolenkový\ndovolený\ndovoliť\ndovoľovať\ndovoĺte\ndovoľujúci\ndovoz\ndovozca\ndovozne\ndovozno\ndovozný\ndovozový\ndovozte\ndovrav\ndovrávať\ndovravieť\ndovrchné\ndovrchu\ndovrieť\ndovrovoľný\ndovŕšenie\ndovŕšený\ndovŕšiť\ndovršovaním\ndovršovať\ndovŕtať\ndovrúc\ndovtedajší\ndovtedy\ndôvtip\ndovtípiť\ndôvtipne\ndôvtipnosť\ndôvtipný\ndovy\ndovyli\ndovysoka\ndown\ndownload\ndoxa\ndoxale\ndoxografia\ndoxológia\ndoyen\ndóz\ndozadu\ndózach\ndozaista\ndozajtra\ndózam\ndozátor\ndóza\ndozelena\ndozer\ndozerač\ndozerajúci\ndozeranie\ndozeraný\ndozerať\ndozéry\ndozický\ndózický\ndózičkách\ndózičky\ndozimeter\ndozimetria\ndozimetrický\ndozlata\ndozlostiť\ndoznačiť\ndoznačte\ndoznanie\ndoznaný\ndoznať\ndoznávať\ndoznení\ndoznenia\ndoznenie\ndoznieť\ndoznievajúci\ndoznievane\ndoznievania\ndoznievanie\ndoznievaním\ndoznievaný\ndoznievať\ndoznojiť\ndozor\ndozorca\ndozorkyňa\ndozorňa\ndozorne\ndozorni\ndozorňu\ndozorný\ndozoroval\ndozorovala\ndozorovali\ndozorovalo\ndozorovať\ndozoruj\ndozoruje\ndozorujem\ndozorujeme\ndozoruješ\ndozorujete\ndozorujme\ndozorujte\ndozorujú\ndozorujúc\ndózovať\ndozretia\ndozretie\ndozretím\ndozretý\ndozrieť\ndozrieť\ndozrievajúci\ndozrievanie\ndozrievaný\ndozrievať\ndozrúc\ndozveď\ndozvedať\ndozvedieť\ndozvoniť\ndozvuk\ndožadovaní\ndožadovania\ndožadovanie\ndožadovaním\ndožadovať\ndožadujúci\ndožať\ndóža\ndožerava\ndožiadal\nDožiadali\nDožiadaná\ndožiadaného\ndožiadanie\ndožiadanom\ndožiadaných\ndožiadať\ndožičené\ndožičiť\ndožierať\ndožínať\ndožiniek\ndožinkoch\ndožinkom\ndožinkov\ndožinkový\ndožinky\ndožitie\ndožiť\ndožitý\ndoživ\ndožívaní\ndožívania\ndožívanie\ndožívaním\ndožívať\ndoživoriť\ndoživotie\ndoživotne\ndoživotný\ndožlta\ndožobrať\ndóžovský\ndožrať\ndožratý\ndožrejú\ndožuť\ndožuvať\ndožúvať\nDP\nDPA\nDPB\nDPH\ndpi\nDPMB\nDPMK\nDPOH\nDr\nDR\ndrabár\ndráb\ndrabina\ndrabinák\ndrabinovec\ndrabiny\nDrábovej\nDrábovou\nDrábsko\ndracena\nDrač\nDrača\ndráč\ndračica\ndračí\ndráčik\ndračísk\ndračisko\ndračka\ndráčka\nDráčovým\ndráčsky\ndraft\ndraftoval\ndraftovala\ndraftovali\ndraftovalo\ndraftovať\ndraftuj\ndraftuje\ndraftujem\ndraftujeme\ndraftuješ\ndraftujete\ndraftujme\ndraftujte\ndraftujú\ndraftujúc\ndragún\ndragúnsky\ndráh\ndráhach\ndráham\ndráhar\ndráharka\ndráharský\ndráha\ndrahne\nDrahňov\nDrahňova\nDrahňove\nDrahňovom\ndrahný\ndraho\ndrahocennosť\ndrahocenný\ndrahokam\ndrahokamový\nDrahomírach\nDrahomíram\nDrahomíra\nDrahomír\nDrahoslava\nDrahoslav\nDrahoš\nDrahoša\nDrahošom\nDrahošove\nDrahošovej\nDrahošovi\nDrahošovo\nDrahošovým\ndrahota\nDrahotín\nDrahotína\ndrahotný\nDrahovský\ndráhový\ndrahší\ndrahučký\ndrahulinký\ndrahuľký\ndrahunký\nDrahuša\nDrahuše\ndrahušký\ndrahý\ndrachiem\ndrachma\ndrajv\ndrak\ndrakonicky\ndrakonický\ndrakónsky\ndrakova\ndrakovom\ndrakovu\ndraky\ndram\nDRAM\ndrám\ndrámach\ndrámam\ndramatickosť\ndramaticky\ndramatický\ndramatička\ndramatičnosť\ndramatičnosti\ndramatik\ndramatizácia\ndramatizovania\ndramatizovanie\ndramatizovaniu\ndramatizovaný\ndramatizovať\ndramaturg\ndramaturgia\ndramaturgicky\ndramaturgický\ndramaturgička\ndráma\ndrancovačka\ndrancovaná\ndrancovaní\ndrancovania\ndrancovanie\ndrancovaním\ndrancovaniu\ndrancovať\ndrančať\ndranie\ndrankanie\ndrankať\ndranžírovať\ndraoériový\ndrap\ndrapák\ndrapákový\ndrapáky\ndrapcovať\ndrapé\ndrapéria\ndrapériový\ndrapkať\ndrapľavieť\ndrapľavo\ndrapľavosť\ndrapľavý\ndrapnúť\ndrapový\ndraps\ndrápy\ndrása\ndrásaj\ndrásajme\ndrásajte\ndrásajú\ndrásajúc\ndrásal\ndrásala\ndrásali\ndrásalo\ndrásam\ndrásame\ndrásaš\ndrásať\ndrásate\ndraselný\ndrasla\ndraslík\ndraslíkový\ndrastickosť\ndrasticky\ndrastický\ndrastikum\ndrátená\ndrátenka\ndratia\ndratie\ndratiu\ndrátový\ndrať\ndratva\ndratvička\ndratvový\ndráv\nDráva\ndravce\nDravciach\ndravčí\ndravec\nDravecký\ndravo\ndravosť\ndrávsky\ndravšej\ndravší\ndravšia\ndravšie\ndravšieho\ndravšiemu\ndravších\ndravším\ndravšími\ndravšiu\ndravšom\ndravšou\ndravý\ndráž\ndražba\ndražbový\ndrážďanský\ndráždec\ndráždené\ndráždenie\nDraždiak\ndráždidlo\ndráždiť\ndráždivo\ndráždivosť\ndráždivý\ndražé\ndraženia\ndraženie\ndraženiu\ndražený\ndražéovitý\ndražiaca\nDražice\nDražická\nDražického\ndražieť\ndražiteľ\ndražiteľka\ndražiteľský\ndražiť\ndrážka\ndrážkovací\ndrážkovania\ndrážkovanie\ndrážkovaný\ndrážkovať\nDražkovce\ndrážkový\ndražoba\ndražobník\ndražobníka\ndražobníkov\ndražobníkovi\ndražobný\ndražovanie\nDražovce\nDrážovce\nDražovská\ndrb\ndrbal\nDrbal\ndrbala\nDrbala\ndrbali\ndrbalo\ndrbať\ndrbe\ndrbem\ndrbeme\ndrbeš\ndrbete\ndrbme\ndrbnutý\ndrboliť\ndrbte\ndrbú\ndrbúc\ndrc\ndrcá\ndrce\ndrcnutie\ndrcnúť\ndrcú\nDRČ\ndrdlať\ndrdol\ndred\ndreňami\ndrenážach\ndrenážam\ndrenáž\ndrenážny\ndrenážované\ndrenážovania\ndrenážovanie\ndrenážovať\ndrén\ndreň\ndrene\ndreni\ndrení\ndreniach\ndreniam\ndreňou\ndreňový\ndrep\ndrepči\ndrepčime\ndrepčite\ndrepčiť\ndrepeli\ndrepieť\ndrepli\ndrepnúť\ndres\ndresing\ndresingmi\ndresingoch\ndresingom\ndresingov\ndresingový\ndresingu\ndresingy\ndressing\ndretý\ndrev\ndrevák\ndrevár\ndreváreň\ndrevárňach\ndrevárňam\ndrevárnička\ndrevársky\ndrevárstvach\ndrevárstvam\ndrevárstvo\ndrevenenie\ndrevenený\ndrevenica\ndrevenička\ndrevenieť\ndreveno\ndrevenosť\ndrevený\ndrevina\ndrevinovo\ndrevinový\ndrevitý\ndrevnatieť\ndrevnatosť\ndrevnatý\ndrevne\ndrevný\ndrevocement\ndrevocementovú\ndrevocementových\ndrevokaza\ndrevokaz\ndrevokazný\ndrevokazovi\ndrevokombinát\ndrevokombinátmi\ndrevo\ndrevoobrábací\ndrevoplast\ndrevoplastmi\ndrevoplastový\ndrevoplyn\ndrevopriemysel\nDrevopriemyselné\ndrevopriemysle\ndrevopriemyslu\ndrevorez\ndrevorezbár\ndrevorezbári\ndrevorezbárov\ndrevorezbársky\ndrevorezbárstvo\ndrevorezba\ndrevorezový\ndrevorubač\ndrevorubačova\ndrevorubačský\ndrevorubačstvo\ndrevoryt\ndrevorytec\ndrevorytecký\ndrevorytectvo\ndrevorytina\ndrevorytmi\ndrevorytový\ndrevosklad\ndrevosklade\ndrevoskladoch\ndrevoskladov\ndrevoskladu\nDrevospracujúca\ndrevospracujúce\ndrevospracujúceho\ndrevospracujúcej\ndrevospracujúcemu\ndrevospracujúci\ndrevospracujúcich\ndrevospracujúcim\ndrevospracujúcimi\ndrevospracujúcom\ndrevospracujúcou\ndrevospracujúcu\ndrevotokára\ndrevotrieskový\ndrevouhoľný\ndrevovina\ndrevovláknitý\ndrevový\ndrez\ndrezér\ndrezín\ndrezina\ndrezinou\ndreziny\ndrezírovať\ndrezová\ndrezové\ndrezúr\ndrezúrach\ndrezúram\ndrezúra\ndrgáľať\ndrgaňa\ndrgáňať\ndrganec\ndrgať\ndrgavý\ndrgľavý\ndrgľovať\ndrgnutie\ndrgnúť\ndrgnutý\ndrgoliť\ndrgotať\ndrhla\ndrhli\ndrhliť\ndrhlo\ndrhne\ndrhnem\ndrhneme\ndrhneš\ndrhnete\ndrhni\ndrhnime\ndrhnite\ndrhnú\ndrhnúc\ndrhnutie\ndrhnúť\ndrhol\ndriapačka\ndriapačky\ndriapaj\ndriapajme\ndriapajte\ndriapajúc\ndriapajúci\ndriapanie\ndriapať\ndriapavý\ndriapkať\ndriapuci\ndriblér\ndribling\ndriblovanie\ndriblovať\ndribovať\ndriečik\ndriečne\ndriečnosť\ndriečny\ndriek\ndriekový\ndriemaj\ndriemajme\ndriemajte\ndriemajúc\ndriemajúci\ndriemania\ndriemanie\ndriemať\ndriemavý\ndriemkajúce\ndriemkajúci\ndriemkať\ndriemme\ndriemota\ndriemte\ndriemuci\ndrieňa\ndrieň\nDrienica\nDrienice\nDrienici\ndrienka\ndrienkovica\ndrienkový\ndrieňmi\ndrieňoch\ndrieňom\nDrienov\ndrieňov\nDrieňov\nDrienova\nDrienová\nDrienove\nDrieňove\nDrienovo\nDrieňovo\nDrienovom\ndrienovský\ndrieňový\ndrieňu\nDrietoma\nDrietome\nDrietomou\nDrietomu\nDrietomy\ndrieť\ndriev\ndrievcach\ndrievcam\ndrievce\ndrievec\ndrievko\ndrievny\ndrievok\ndrift\ndriftovať\ndrichmať\ndrichmú\ndrichmúc\ndril\ndrilmi\ndrín\ndrinách\ndrinám\ndrinami\ndrina\ndrink\ndrisnúť\ndrístať\ndrive\nDrive\ndriver\nDrivom\ndrivov\ndrkotajúc\ndrkotanie\ndrkotaním\ndrkotať\ndrkotavo\ndrkotavý\ndrkot\ndrkotmi\ndrm\nDRM\ndrmancovať\ndrmanom\ndrmať\ndrmme\ndrmnúť\ndrmoliť\ndrmotať\ndrmte\ndrmú\ndrmúc\nDrňa\nDrnava\nDrnave\ndrnč\ndrnčanie\ndrnčať\ndrnčiaci\ndrnčivý\ndrnk\ndrnkať\ndrnknúť\nDroba\ndrobami\ndrobce\ndrobček\ndrobčekovi\ndrobčekovia\ndrobčenie\ndrobči\ndrobčime\ndrobčite\ndrobčiť\ndrobčivý\ndrobec\ndrobení\ndrobenia\ndrobenie\ndrobením\ndrobeniu\ndrobených\ndrobiť\ndrobivosť\ndrobivý\ndrobizg\ndrobizgmi\ndrobizgoch\ndrobizgom\ndrobizgov\ndrobizgu\ndrobizgy\ndrobk\ndrobkoch\ndrobkom\ndrobkov\ndrobkový\ndrobky\ndrobmi\ndrobnejší\ndrobnička\ndrobnieť\ndrobno\ndrobnohľad\ndrobnohľadný\ndrobnohľadový\ndrobnochovateľ\ndrobnochovateľka\ndrobnochovateľský\ndrobnochov\ndrobnokresba\ndrobnokresbový\ndrobnokvetý\ndrobnolistý\ndrobnomaľba\ndrobnomer\ndrobnoplodý\ndrobnosemenný\ndrobnosť\ndrobnôstkárstvach\ndrobnôstkárstvam\ndrobnôstkarstvo\ndrobnôstkárstvo\ndrobnôstka\ndrobnozrnnosť\ndrobnozrnný\ndrobnozrný\ndrobnučko\ndrobnučký\ndrobnulinko\ndrobnulinký\ndrobnuľký\ndrobnuško\ndrobnušký\ndrobný\ndroboch\ndrobom\nDrobom\ndrobov\ndrobový\nDrobu\ndrobučko\ndrobučký\ndrobulinko\ndrobulinký\ndrobunko\ndrobunký\ndrobuško\ndrobušký\ndroby\ndrog\ndrôg\ndroga\ndrogéria\ndrogériový\ndrogérista\ndrogéristický\ndrogéristka\ndrogista\ndrogistický\ndrogistka\nDrogobyč\ndrogovať\ndrogovejší\ndrogovo\ndrogový\ndromedár\ndromedáre\ndropa\ndrop\ndropica\ndropí\ndropovi\ndrops\ndrotár\ndrotárčina\ndrotárik\ndrotárka\ndrotársky\ndrotárstvach\ndrotárstvam\ndrotárstvo\ndrôt\ndrôtenka\ndrôtený\ndrôtik\ndrôtikovať\ndrôtmi\ndrôtoťahov\ndrôtoťahu\ndrôtoťahy\ndrotoval\ndrotovala\ndrotovali\ndrotovalo\ndrôtovaný\ndrotovať\ndrôtovať\nDrôtovca\ndrôtovec\nDrôtovňa\ndrôtovňami\nDrôtovne\nDrôtovni\nDrôtovní\ndrôtovniach\ndrôtovniam\nDrôtovňou\nDrôtovňu\ndrôtový\ndrotuj\ndrotuje\ndrotujem\ndrotujeme\ndrotuješ\ndrotujete\ndrotujme\ndrotujte\ndrotujú\ndrotujúc\ndrozdí\ndrozdík\ndrozd\ndrozďom\ndrozďou\ndrozofila\ndrozometer\ndroždiareň\ndroždiarenský\ndroždiarňach\ndroždiarňam\ndroždiarskej\ndroždiarskou\ndroždiarsku\ndroždiarsky\ndroždiarstvach\ndroždiarstvam\ndroždiarstvo\ndroždie\ndrožďový\ndrožkár\ndrožka\nDRS\nDrSc\ndrsnato\ndrsnatý\ndrsne\ndrsni\ndrsnieť\ndrsno\ndrsnosť\ndrsnúť\ndrsný\nDRSR\ndrť\ndrtí\ndrtia\ndrtiac\ndrtil\ndrtila\ndrtili\ndrtilo\ndrtím\ndrtíme\ndrtíš\ndrtiť\ndrtíte\ndrťme\ndrťte\ndrubieľ\ndrúc\ndrúci\ndrúčik\ndruhácky\ndruháčik\ndruháčka\ndruhák\ndruhC\ndruhe\ndruho\ndruhohôr\ndruhohora\ndruhohorách\ndruhohorám\ndruhohorami\ndruhohore\ndruhohorný\ndruhohoru\ndruhohory\ndruholigisti\ndruholigový\ndruhopis\ndruhorado\ndruhoradosť\ndruhoradpsť\ndruhoradý\ndruhoročiak\ndruhorodený\ndruhostupňovosť\ndruhostupňový\ndruhotne\ndruhotnosť\ndruhotný\ndruhotriedne\ndruhotriednosť\ndruhotriedny\ndruhotvar\ndruhovaniu\ndruhove\ndruhovia\ndruhovo\ndruhovosti\ndruhovu\ndruhovýroba\ndruhový\ndruhýkrát\ndruhý\ndruid\ndruk\ndrúk\ndrukovanie\ndrukovať\ndrúkovi\ndrúľať\ndrúliť\nDrum\ndrumbľa\ndrumblence\ndrumblí\ndrumblička\ndrumbľovať\ndrumbľový\ndrupa\ndrusa\ndrúz\ndrúza\ndruzg\ndrúzgať\ndruzgnúť\ndruzgot\ndruzgotmi\ndrúzový\ndružba\ndružba\ndružbovský\ndružď\ndružďal\ndružďala\ndružďali\ndružďalo\ndružďať\ndruždi\ndruždí\ndruždia\ndruždiac\ndruždím\ndruždime\ndruždíme\ndruždíš\ndruždite\ndruždíte\ndružďme\ndružďte\ndružení\ndruženia\ndružica\ndružicový\ndružička\ndružinár\ndružinárka\ndružinársky\ndružina\nDružinin\nDružinina\ndružiť\ndružka\ndružne\nDružno\ndružnosť\ndružný\ndružobník\ndružobný\ndružstevne\ndružstevnícky\ndružstevníctvach\ndružstevníctvam\ndružstevníctvo\ndružstevníčka\ndružstevník\ndružstevno\ndružstevný\ndružstvo\ndrvenie\ndrvený\ndrviacemu\ndrviaci\ndrviacich\ndrvičJ\ndrvička\ndrvina\ndrviť\ndrvivo\ndrvivý\ndrvoliť\ndry\ndryáda\ndryas\ndryopitek\ndrzáň\ndrzáňom\ndrzejšej\ndrzejší\ndrzejšia\ndrzejšie\ndrzejšieho\ndrzejšiemu\ndrzejších\ndrzejším\ndrzejšími\ndrzejšiu\ndrzejšom\ndrzejšou\ndrzo\ndrzosť\ndrzý\ndržadlo\ndržane\ndržanie\ndržaný\ndržať\ndŕžava\ndržba\nDrženice\ndržgroš\ndržgrošsky\ndržgrošský\ndržgrošstvo\ndržiace\ndržiaci\ndržiacimi\ndržiak\ndržiava\ndržiek\ndržiteľ\ndržiteľka\ndržiteľský\nDržkovce\nDržkove\ndržkový\ndržky\ndržné\nDS\nDSc\nDSF\nDSL\nDSS\nDTM\nDTP\ndtto\ndu\nDU\nDÚ\nduál\nduáli\ndualisticky\ndualistický\ndualita\ndualitu\nduality\ndualizmus\nduálmi\nduálne\nduálnosť\nduálny\nduálový\nduant\nduatlon\nduatlonista\nduatlonistka\nduatlonový\nďub\nduba\ndubáčik\nDubajčan\nDubajčanka\nDubaj\ndubajský\ndubák\ndubákový\ndubasiť\nďubať\ndub\ndubbing\ndubbingom\nDubca\nDubcom\ndubčak\ndubček\nDubec\nDubí\nDubia\nDubica\ndubienka\ndubina\nDubinin\nDubinina\nDubininom\ndubioózny\nDubióz\ndubiózne\ndubiózny\ndubiť\ndúbka\ndúbkami\nďubkať\ndúbkoch\ndúbkom\ndúbkov\ndúbku\ndúbky\ndublé\ndublér\ndublet\ndubleta\ndubletne\ndubletný\ndubletov\nDublin\nDublinčan\nDublinčanka\ndublinský\ndublón\ndublovania\ndublovanie\ndublovaniu\ndublovaný\ndublovať\ndubluje\ndublujú\nDubná\nDubne\nDubnica\ndubnícka\nDubnícke\ndubnícky\ndubníckych\ndubnický\nDubnička\nDubničku\nDubník\nDubníka\nDubníku\nDubno\nďubnúť\nDubodiel\ndúbok\nDubovanom\nDubovany\nDubovca\nDubovcami\nDubovce\nDubovec\nDubovica\nDubovice\nDubovici\nDubovický\nDubovicou\nDubovicu\ndubovské\nDubovský\ndubový\ndúbrava\nDúbravica\ndúbravina\ndúbravka\ndúbravské\ndúbravského\ndúbravskí\ndúbravskom\ndúbravských\nDúbravský\ndubrovnícky\nDubrovníčan\nDubrovníčanka\nDubrovník\nduce\nductus\nduč\ndučan\nDučanom\ndučať\ndúčeľ\ndúčeľa\ndudaj\ndudáš\ndudať\ndudcí\nDudincami\nDudince\nDudinciach\nDudiniec\ndudinskej\ndudinských\nDudinský\nDudkovej\nDudkovho\ndudkovi\nDudkovi\nDudkovo\nDudkovou\ndudlať\ndudlavý\ndudnieť\ndudok\ndudrať\ndudravo\ndudravosť\ndudravý\ndudre\ndudrem\ndudreme\ndudreš\ndudrete\ndudri\ndudrime\ndudrite\ndudroš\ndudrú\ndudrúc\ndudu\ndudú\ndúdú\ndududu\nDudváh\ndudvážsky\nduel\nduele\nduelmi\nduelový\ndueňa\nduet\ndueto\nduetový\ndúfajúci\ndúfaní\ndúfanie\ndúfaním\ndúfanlivý\ndúfať\nďug\nďugať\nduglaska\nďugnutie\nďugnúť\ndúh\ndúhach\ndúham\ndúha\ndúhovite\ndúhovito\ndúhovitý\ndúhovka\ndúhovkový\ndúhovo\ndúhový\nduhu\nduchá\ndúchadlo\ndúchadlový\ndúchaní\ndúchanie\nduchaplne\nduchaplnosť\nduchaplný\nduchaprázdny\nduchaprítomne\nduchaprítomnosť\nduchaprítomný\nduchapustý\nduchár\nduchárstvo\ndúchať\ndúchavať\nduchB\nDuchcov\nDuchcova\nDuchcove\nduchcovské\nduchcovského\nduchcovskej\nduchcovskom\nduchcovskú\nduchcovských\nDuchcovský\nDuchcovu\nduchien\nduchna\nduchnička\nduchnísk\nduchnisko\ndúchnuť\nducho\nDuchoň\nDuchoňa\nDuchoňom\nDuchoslava\nduchou\nduchova\nduchovenstvo\nduchovho\nduchovia\nduchovien\nduchovmu\nduchovne\nduchovnieť\nduchovno\nduchovnosť\nduchovný\nduchovo\nduchovou\nduchovu\nduí\ndujný\ndujúcej\ndujúci\ndukát\ndukátik\ndukátmi\ndukátový\ndukelská\nDukelský\nDukiel\nDukla\ndukliansky\nduktilita\ndula\ndulbox\ndulcinea\ndulcitol\ndulia\nDulov\nDulova\ndulovania\ndulovanie\ndulovaný\ndulovať\nDulove\ndulovec\nDulovo\ndulový\ndúm\ndumanie\ndumať\ndumavý\nduma\nďumbier\nďumbieri\nĎumbier\nďumbiernik\nďumbierniku\nďumbierniky\nďumbierový\nďumbiersky\ndumka\ndumne\ndumno\ndumortierit\ndumper\nDumper\ndumperov\ndumpery\ndumping\ndumpingmi\ndumpingoch\ndumpingom\ndumpingov\ndumpingovo\ndumpingový\ndumpingu\ndumpingy\ndun\nduň\nDunajca\nDunajci\nDunajcom\nDunajcu\nDunajec\nDunaj\ndunajskostredský\ndunajský\nduna\ndunč\ndunčo\ndunčy\ndunenie\ndung\nduniaci\ndunieť\ndunievať\ndunivo\ndunivý\ndunový\ndunst\nduodecimálny\nduodenitída\nduodenum\nDuola\nduo\nduopol\ndup\ndupá\ndúpä\ndupačiek\ndupáčikmi\ndupáčikoch\ndupáčikom\ndupáčikov\ndupáčikový\ndupáčiky\ndupačky\ndupaj\ndupajme\ndupajte\ndupajú\ndupajúc\nDupák\nDupáka\ndupám\ndupáme\ndupancovať\ndupanie\ndupaním\ndupáš\ndúpät\ndupáte\ndupať\ndupči\ndupčime\ndupčite\ndupčiť\ndupi\ndupkanie\ndupkať\ndupkávať\ndupkom\ndupľa\nduplex\nDuplex\nduplexný\nduplexov\nduplexový\nduplexu\nduplexy\nduplí\nduplicita\nduplicitne\nduplicitnosť\nduplicitný\nduplikácia\nduplikačná\nduplikát\nduplikátmi\nduplikátor\nduplikova\nduplikovanie\nduplikovaný\nduplikovať\nDuplín\nDuplíne\ndupľom\ndupľovane\ndupľovaný\ndupľovať\ndupľovka\ndúpnatý\ndúpnieť\ndupnutí\ndupnutie\ndupnúť\ndúpny\ndupotaj\ndupotajme\ndupotajte\ndupotajúc\ndupotať\ndupotavo\ndupotavý\ndupot\ndupotmi\ndupsa\ndupsiť\ndupy\ndurabilný\ndural\nduralmi\nduralový\nduranzia\nduratívum\ndur\ndurdi\ndurdievať\ndurdime\ndurdite\ndurdiť\ndurdivý\nĎurďoš\nĎurďošík\ndure\ndurée\ndurený\ndurch\ndurič\nĎuríček\ndurievať\nĎurík\nĎuríka\nĎuríkom\nĎuríkovej\nĎuríkovi\nĎuríkovou\ndurina\nDurínska\nDurínske\ndurínskeho\ndurínskej\nDurínsko\nDurínskom\nDurínsku\ndurínsky\ndurínskych\ndurit\nDurit\nduriť\ndurk\ndurkať\ndurknúť\ndurkotať\nĎurkov\nĎurkova\nĎurková\nĎurkove\nĎurkovej\nĎurkovský\ndurman\ndurmane\ndurmanom\nDurmanová\ndurmanovej\ndurmanu\ndurmi\nďuro\nduroch\ndurom\nduroplast\ndurov\nĎurova\ndurový\ndurte\nduru\ndury\nDury\ndusene\ndusenia\ndusenie\nduseno\ndusený\ndusiace\ndusiaci\ndusičitý\ndusičnan\ndusičný\ndusien\ndusievať\ndusikáreň\ndusikárňach\ndusikárňam\ndusíkato\ndusíkatý\ndusík\ndusíkový\ndusitany\ndusiť\ndusitý\ndusivo\ndusivosť\ndusivý\ndusna\ndusnách\ndusnám\ndusnami\ndusne\ndusno\ndusnu\ndusný\ndust\nDušán\nDušana\nDušan\nduša\nduševna\nduševne\nduševný\ndušička\ndušičkový\ndušinka\ndušiť\ndúška\ndúškom\ndušný\ndúšok\ndušovanie\nDušovaniu\ndušovať\ndušpastier\ndúštek\ndutia\ndutie\ndutina\ndutinka\ndutinkový\ndutinový\ndutiu\nDutka\nDutku\ndutľavý\nduto\ndutorohý\ndutosť\ndutovypuklý\nduť\ndutý\ndux\nDúžava\nDúžavskej\ndúžejšej\ndúžejší\ndúžejšia\ndúžejšie\ndúžejšieho\ndúžejšiemu\ndúžejších\ndúžejším\ndúžejšími\ndúžejšiu\ndúžejšom\ndúžejšou\ndužieť\ndužinatosť\ndužinatý\ndužina\ndúži\ndúžka\ndužnatieť\ndužnatosť\ndužnatý\ndužnieť\ndužnina\ndv\nDV\ndva\ndvaapolkrát\ndvaapolnásobný\ndvaapolnásobok\ndvaatridsatina\ndvaatridsatinový\ndvacaťtisícový\ndvadsať\ndvadsaťdenný\ndvadsaťdeväť\nDvadsaťdeväťročný\ndvadsaťdeväťtisíc\ndvadsaťdňový\ndvadsaťdva\ndvadsaťdvaročný\ndvadsaťdvatisíc\ndvadsaťdvatisícdvesto\ndvadsaťdvatisícdvestosedemdesiattri\ndvadsaťdvatisícšesťsto\ndvadsaťdvatisíctridsaťštyri\ndvadsaťhaliernik\ndvadsatina\ndvadsaťjeden\ndvadsaťjedentisíc\ndvadsaťkilometrový\ndvadsaťkorún\ndvadsaťkoruna\ndvadsaťkorunáčka\ndvadsaťkorunám\ndvadsaťkorune\ndvadsaťkorunou\ndvadsaťkorunový\ndvadsaťkorunu\ndvadsaťkoruny\ndvadsaťkrát\ndvadsaťnásobkami\ndvadsaťnásobkoch\ndvadsaťnásobkom\ndvadsaťnásobkov\ndvadsaťnásobku\ndvadsaťnásobky\ndvadsaťnásobne\ndvadsaťnásobný\ndvadsaťnásobok\ndvadsatorako\ndvadsatoraký\ndvadsatoro\ndvadsaťosem\ndvadsaťosemtisíc\ndvadsaťosemtisícšesťsto\ndvadsaťpäť\ndvadsaťpäťka\ndvadsaťpäťke\ndvadsaťpäťkou\ndvadsaťpäťku\ndvadsaťpäťky\ndvadsaťpäťročie\ndvadsaťpäťročnom\ndvadsaťpäťročnú\nDvadsaťpäťročný\ndvadsaťpäťtisíc\ndvadsaťpäťtisíckrát\ndvadsaťpäťtisícový\ndvadsaťpäťtisícsto\ndvadsaťpiati\ndvadsaťročia\ndvadsaťročie\ndvadsaťročný\ndvadsaťsedem\ndvadsaťsedemročný\ndvadsaťsedemtisíc\ndvadsaťstupňový\ndvadsaťšesť\ndvadsaťšesťtisíc\ndvadsaťštyri\ndvadsaťštyrihodinový\ndvadsaťštyritisíc\ndvadsaťtisíc\ndvadsaťtisícdvesto\ndvadsaťtisíceho\ndvadsaťtisíci\ndvadsaťtisíckrát\ndvadsaťtisícom\ndvadsaťtisícosemsto\ndvadsaťtisícové\ndvadsaťtisícový\ndvadsaťtonová\ndvadsaťtonové\ndvadsaťtri\ndvadsaťtritisíc\ndvadsiati\ndvadsiatich\ndvadsiatim\ndvadsiatimi\ndvadsiatinu\ndvadsiatka\ndvadsiatnici\ndvadsiatnikov\ndvadsiaty\ndvaja\ndvakrát\ndvanásť\ndvanásťčlenný\ndvanásťdňový\ndvanásťhodinový\ndvanástina\ndvanásti\ndvanástka\ndvanástkový\ndvanásťkrát\ndvanásťky\ndvanásťmetrový\ndvanásťnásobne\ndvanásťnásobný\ndvanástnik\ndvanástnikový\ndvanástorák\ndvanástorako\ndvanástoraký\ndvanásťročný\ndvanásťsten\ndvanásťstupňový\ndvanásťtisíc\ndvanásťuholník\ndvanásťvalcom\ndvanásťvalcový\ndvanásťvalec\ndvanásty\ndvastaťdňový\ndvastaťhaliernik\nDVD\ndve\ndveraje\ndvercami\ndverciach\ndverciam\ndvercia\ndvere\ndveriec\ndvermi\ndverný\ndverový\ndvesotisíc\ndvesto\ndvestočlenný\ndvestodesať\ndvestodesaťtisíc\ndvestodeväť\ndvestodeväťdesiat\ndvestodeväťdesiatdeväť\ndvestodeväťdesiatdeväťtisíc\ndvestodeväťdesiatdva\ndvestodeväťdesiatdvatisíc\ndvestodeväťdesiatjeden\ndvestodeväťdesiatjedentisíc\ndvestodeväťdesiatosem\ndvestodeväťdesiatosemtisíc\ndvestodeväťdesiatpäť\ndvestodeväťdesiatpäťtisíc\ndvestodeväťdesiatsedem\ndvestodeväťdesiatsedemtisíc\ndvestodeväťdesiatšesť\ndvestodeväťdesiatšesťtisíc\ndvestodeväťdesiatštyri\ndvestodeväťdesiatštyritisíc\ndvestodeväťdesiattisíc\ndvestodeväťdesiattri\ndvestodeväťdesiattritisíc\ndvestodevätnásť\ndvestodevätnásťtisíc\ndvestodeväťtisíc\ndvestodva\ndvestodvadsať\ndvestodvadsaťdeväť\ndvestodvadsaťdeväťtisíc\ndvestodvadsaťdva\ndvestodvadsaťdvatisíc\ndvestodvadsaťjeden\ndvestodvadsaťjedentisíc\ndvestodvadsaťosem\ndvestodvadsaťosemtisíc\ndvestodvadsaťpäť\ndvestodvadsaťpäťtisíc\ndvestodvadsaťsedem\ndvestodvadsaťsedemtisíc\ndvestodvadsaťšesť\ndvestodvadsaťšesťtisíc\ndvestodvadsaťštyri\ndvestodvadsaťštyritisíc\ndvestodvadsaťtisíc\ndvestodvadsaťtri\ndvestodvadsaťtritisíc\ndvestodvanásť\ndvestodvanásťtisíc\ndvestodvatisíc\ndvestojedenásť\ndvestojedenásťtisíc\ndvestojeden\ndvestojedentisíc\ndvestokorunový\ndvestokrát\ndvestometrový\ndvestoosem\ndvestoosemdesiat\ndvestoosemdesiatdeväť\ndvestoosemdesiatdeväťtisíc\ndvestoosemdesiatdva\ndvestoosemdesiatdvatisíc\ndvestoosemdesiatjeden\ndvestoosemdesiatjedentisíc\ndvestoosemdesiatosem\ndvestoosemdesiatosemtisíc\ndvestoosemdesiatpäť\ndvestoosemdesiatpäťtisíc\ndvestoosemdesiatsedem\ndvestoosemdesiatsedemtisíc\ndvestoosemdesiatšesť\ndvestoosemdesiatšesťtisíc\ndvestoosemdesiatštyri\ndvestoosemdesiatštyritisíc\ndvestoosemdesiattisíc\ndvestoosemdesiattri\ndvestoosemdesiattritisíc\ndvestoosemnásť\ndvestoosemnásťtisíc\ndvestoosemtisíc\ndvestopäť\ndvestopäťdesiat\ndvestopäťdesiatdeväť\ndvestopäťdesiatdeväťtisíc\ndvestopäťdesiatdva\ndvestopäťdesiatdvatisíc\ndvestopäťdesiati\ndvestopäťdesiatjeden\ndvestopäťdesiatjedentisíc\ndvestopäťdesiatku\ndvestopäťdesiatky\ndvestopäťdesiatosem\ndvestopäťdesiatosemtisíc\ndvestopäťdesiatpäť\ndvestopäťdesiatpäťtisíc\ndvestopäťdesiatsedem\ndvestopäťdesiatsedemtisíc\ndvestopäťdesiatšesť\ndvestopäťdesiatšesťtisíc\ndvestopäťdesiatštyri\ndvestopäťdesiatštyritisíc\ndvestopäťdesiattisíc\ndvestopäťdesiattri\ndvestopäťdesiattritisíc\ndvestopätnásť\ndvestopätnásťtisíc\ndvestopäťtisíc\ndvestoročný\ndvestosedem\ndvestosedemdesiat\ndvestosedemdesiatdeväť\ndvestosedemdesiatdeväťtisíc\ndvestosedemdesiatdva\ndvestosedemdesiatdvatisíc\ndvestosedemdesiatjeden\ndvestosedemdesiatjedentisíc\ndvestosedemdesiatosem\ndvestosedemdesiatosemtisíc\ndvestosedemdesiatpäť\ndvestosedemdesiatpäťtisíc\ndvestosedemdesiatsedem\ndvestosedemdesiatsedemtisíc\ndvestosedemdesiatšesť\ndvestosedemdesiatšesťtisíc\ndvestosedemdesiatštyri\ndvestosedemdesiatštyritisíc\ndvestosedemdesiattisíc\ndvestosedemdesiattri\ndvestosedemdesiattritisíc\ndvestosedemnásť\ndvestosedemnásťtisíc\ndvestosedemtisíc\ndvestošesť\ndvestošesťdesiat\ndvestošesťdesiatdeväť\ndvestošesťdesiatdeväťtisíc\ndvestošesťdesiatdva\ndvestošesťdesiatdvatisíc\ndvestošesťdesiatjeden\ndvestošesťdesiatjedentisíc\ndvestošesťdesiatosem\ndvestošesťdesiatosemtisíc\ndvestošesťdesiatpäť\ndvestošesťdesiatpäťtisíc\ndvestošesťdesiatsedem\ndvestošesťdesiatsedemtisíc\ndvestošesťdesiatšesť\ndvestošesťdesiatšesťtisíc\ndvestošesťdesiatštyri\ndvestošesťdesiatštyritisíc\ndvestošesťdesiattisíc\ndvestošesťdesiattri\ndvestošesťdesiattritisíc\ndvestošestnásť\ndvestošestnásťtisíc\ndvestošesťtisíc\ndvestoštrnásť\ndvestoštrnásťtisíc\ndvestoštyri\ndvestoštyridsať\ndvestoštyridsaťdeväť\ndvestoštyridsaťdeväťtisíc\ndvestoštyridsaťdva\ndvestoštyridsaťdvatisíc\ndvestoštyridsaťjeden\ndvestoštyridsaťjedentisíc\ndvestoštyridsaťosem\ndvestoštyridsaťosemtisíc\ndvestoštyridsaťpäť\ndvestoštyridsaťpäťtisíc\ndvestoštyridsaťsedem\ndvestoštyridsaťsedemtisíc\ndvestoštyridsaťšesť\ndvestoštyridsaťšesťtisíc\ndvestoštyridsaťštyri\ndvestoštyridsaťštyritisíc\ndvestoštyridsaťtisíc\ndvestoštyridsaťtri\ndvestoštyridsaťtritisíc\ndvestoštyritisíc\ndvestotisíc\ndvestotisíce\ndvestotisíceho\ndvestotisícej\ndvestotisíci\ndvestotisícový\ndvestotisícu\ndvestotri\ndvestotridsať\ndvestotridsaťdeväť\ndvestotridsaťdeväťtisíc\ndvestotridsaťdva\ndvestotridsaťdvatisíc\ndvestotridsaťjeden\ndvestotridsaťjedentisíc\ndvestotridsaťosem\ndvestotridsaťosemtisíc\ndvestotridsaťpäť\ndvestotridsaťpäťtisíc\ndvestotridsaťsedem\ndvestotridsaťsedemtisíc\ndvestotridsaťšesť\ndvestotridsaťšesťtisíc\ndvestotridsaťštyri\ndvestotridsaťštyritisíc\ndvestotridsaťtisíc\ndvestotridsaťtri\ndvestotridsaťtritisíc\ndvestotrinásť\ndvestotrinásťtisíc\ndvestotritisíc\ndvestovka\ndvestovku\ndvestovky\nDvetisíca\ndvetisíc\ndvetisíci\ndvetisíckrát\ndvetisícosemstodvanásť\ndvetisícosemstoosemnásť\ndvetisícovej\ndvetisícpäťdesiatšesť\ndvetisícsedemsto\ndvetisícsedemstopäťdesiat\ndvetisícstosedemdesiatdva\ndvetisícšesťdesiatsedem\ndvetisícšesťsto\ndvetisícšesťstotridsať\ndvierkach\ndvierkam\ndvierkami\ndvierka\ndvierku\ndvierok\ndvíhač\ndvíhačov\ndvíhadlo\ndvíhajúci\ndvíhajúcich\ndvihák\ndvíhania\ndvíhanie\ndvíhaním\ndvíhaný\ndvíhať\ndvihnúť\ndvihnutý\ndvoch\ndvojak\ndvojako\ndvojakosť\ndvojaký\ndvojalbum\ndvojatómový\ndvojblok\ndvojbodka\ndvojbodový\ndvojboj\ndvojbubnový\ndvojbunkový\ndvojbytovku\ndvojcentimetrový\ndvojcentového\ndvojcestný\ndvojciferne\ndvojciferný\ndvojča\ndvojčeľusťový\ndvojčiat\ndvojčiatko\ndvojčiatok\ndvojčinný\ndvojčíslach\ndvojčíslam\ndvojčíslie\ndvojčíslo\ndvojčl\ndvojčlen\ndvojčlennosť\ndvojčlenný\ndvojdecák\ndvojdecovka\ndvojdecový\ndvojdenník\ndvojdenný\ndvojdetnosť\ndvojdetný\ndvojdielnosť\ndvojdielny\ndvojdňový\ndvojdobý\ndvojdomý\ndvojdotyk\ndvojdverový\ndvoje\ndvojenie\ndvojetážovej\ndvojfarebne\ndvojfarebný\ndvojfázovo\ndvojfázovosť\ndvojfázový\ndvojgarsoniér\ndvojgarsoniérach\ndvojgarsoniéram\ndvojgarsoniéra\ndvojgarsónka\ndvojgazónka\ndvojgazsónka\ndvojgeneračný\ndvojhaliera\ndvojhalierovou\ndvojhárkoch\ndvojhláska\ndvojhláskový\ndvojhlasne\ndvojhlasný\ndvojhlavňový\ndvojhlavý\ndvojhodinovka\ndvojhodinový\ndvojhra\ndvojhrbý\ndvojhviezd\ndvojhviezda\ndvojhviezdičkový\ndvojchróman\ndvojica\ndvojička\ndvojičky\ndvojilový\ndvojiť\ndvojito\ndvojitosť\ndvojitý\ndvojizbový\ndvojjadrový\ndvojjazyčne\ndvojjazyčnosť\ndvojjazyčný\ndvojjedinnosť\ndvojjedinosť\ndvojjedinosti\ndvojjediný\ndvojkanálový\ndvojkanoe\ndvojkár\ndvojka\ndvojkilometrový\ndvojkilový\ndvojklaný\ndvojklíčny\ndvojklik\ndvojkoľajka\ndvojkoľajne\ndvojkoľajnicový\ndvojkoľajnosť\ndvojkoľajný\ndvojkoľajová\ndvojkolesia\ndvojkolesie\ndvojkolesový\ndvojkolí\ndvojkolia\ndvojkolovo\ndvojkolový\ndvojkomorový\ndvojkopytník\ndvojkorunový\ndvojkotúčový\ndvojkový\ndvojkrídlový\ndvojkrídly\ndvojkríž\ndvojkríža\ndvojkríže\ndvojkríži\nDvojkrížna\ndvojkrok\ndvojkruhový\ndvojlist\ndvojlistový\ndvojlitrový\ndvojloďový\ndvojlôžkový\ndvojmanifest\ndvojmesačník\ndvojmesačný\ndvojmetrový\ndvojmiestny\ndvojmiliardový\ndvojmiliónový\ndvojminútový\ndvojmiskové\ndvojmo\ndvojmocnina\ndvojmocnosť\ndvojmocný\ndvojmotorový\nDvojnásob\ndvojnásobne\ndvojnásobnosť\ndvojnásobný\ndvojnásobok\ndvojne\ndvojníčka\ndvojník\ndvojnitkový\ndvojno\ndvojnohý\ndvojný\ndvojo\ndvojoká\ndvojokruhovom\ndvojosový\ndvojpásmový\ndvojpercentný\ndvojplášťový\ndvojplatnička\ndvojplošník\ndvojpočetnej\ndvojpodlažný\ndvojpohlavnosť\ndvojpohlavný\ndvojpolárny\ndvojpolárnym\ndvojpoľný\ndvojpolohový\ndvojpólový\ndvojpoložkový\ndvojposchodový\ndvojposteľový\ndvojprogram\ndvojprstý\ndvojprúdový\ndvojrad\ndvojradličný\ndvojrado\ndvojradový\ndvojradý\ndvojramenný\ndvojrečový\ndvojrezný\ndvojriadkový\ndvojročiak\ndvojročne\ndvojročnica\ndvojročný\ndvojrohý\ndvojrozmerný\ndvojručne\ndvojručný\ndvojrýchlostný\ndvojrýždenný\ndvojsečne\nDvojsečnosť\ndvojsečný\ndvojsedadlový\ndvojskifa\ndvojskif\ndvojskok\ndvojslabične\ndvojslabičný\ndvojslovný\ndvojsmennosti\ndvojsmennosťou\ndvojsmenný\ndvojsmerne\ndvojsmernosť\ndvojsmerný\ndvojspev\ndvojspeve\ndvojsťažňový\ndvojstenný\ndvojstĺpcový\ndvojstopo\ndvojstopový\ndvojstoviek\ndvojstovka\ndvojstovkár\ndvojstovkárka\ndvojstovkou\ndvojstovku\ndvojstovky\ndvojstránkový\ndvojstranne\ndvojstrannosť\ndvojstranný\ndvojstranový\ndvojstup\ndvojstupňovo\nDvojstupňovosť\ndvojstupňovosti\ndvojstupňovosťou\ndvojstupňový\ndvojstý\ndvojsýtny\ndvojštvrťový\ndvojtakt\ndvojtaktný\ndvojtaktov\ndvojtaktový\ndvojtisíci\ndvojtisícový\ndvojtisícročie\ndvojtlakový\ndvojtonový\ndvojtónový\ndvojtretinový\ndvojtriednej\ndvojtvár\ndvojtvárach\ndvojtváram\ndvojtvárami\ndvojtvar\ndvojtváre\ndvojtvári\ndvojtvárí\ndvojtvárne\ndvojtvárnosť\ndvojtvárny\ndvojtvárou\ndvojtvarý\ndvojtýždenne\ndvojtýždenník\ndvojtýždenný\ndvojtýždňový\ndvojuchý\ndvojúloha\ndvojúlohu\ndvojúlohy\ndvojvalcový\ndvojvalec\ndvojveršie\ndvojvládie\ndvojvláknový\ndvojvodičov\ndvojvrstvový\ndvojzápas\ndvojzáprah\ndvojzáprahu\ndvojzložkový\ndvojzmennosť\ndvojzmenný\ndvojzmenovou\ndvojzmyselne\ndvojzmyselnosť\ndvojzmyselný\ndvojzmysel\ndvojznačne\ndvojznačnosť\ndvojznačný\ndvojzubý\ndvojzväzkový\ndvojženstvo\ndvojžilový\ndvoma\ndvom\ndvomi\ndvorán\ndvorana\ndvoran\ndvorania\ndvoranka\ndvoranský\ndvoranstvo\ndvor\ndvorček\ndvorec\ndvorenie\nDvoriankach\nDvorianky\ndvoriť\ndvormajster\ndvorne\ndvorník\nDvorníkoch\nDvorníkom\nDvorníkov\nDvorníky\ndvornosť\ndvorný\ndvorový\ndvorský\ndvorte\nDX\ndyáda\ndýčka\ndyftín\ndýh\ndyha\ndyhovanie\ndyhovaný\ndyhovať\ndyhový\ndýchací\ndýchadiel\ndýchadlá\ndýchanie\ndýchateľnosť\ndýchateľný\ndýchať\ndýchavať\ndýchavica\ndýchavične\ndýchavičnosť\ndýchavičný\ndych\ndychč\ndychčať\ndychči\ndychčime\ndychčite\ndýchnutie\ndýchnutím\ndýchnuť\ndychotať\ndychovka\ndychový\ndychti\ndychtiacich\ndychtime\ndychtite\ndychtiť\ndychtivo\ndychtivosť\ndychtivý\ndýk\ndýkach\ndýkam\ndýka\ndýkový\ndymák\ndym\ndymenia\ndymenie\ndymiaci\ndymiť\ndymnica\ndymnicový\ndymník\ndymovnica\ndymovo\ndymovod\ndymovodný\ndymový\ndyn\nDyna\ndynám\ndynamickosť\ndynamicky\ndynamický\ndynamičnosť\ndynamičnosti\ndynamiek\nDynamik\ndynamík\ndynamikách\ndynamikám\ndynamikami\ndynamika\ndynamit\nDynamitka\ndynamitky\ndynamitmi\ndynamitový\ndynamizmus\ndynamizované\ndynamizovaní\ndynamizovania\ndynamizovaním\ndynamizovaniu\ndynamizovanými\ndynamizovať\ndynamko\ndynamo\ndynamometer\ndynamometria\ndynamový\ndynasta\ndynastia\ndynastický\ndyňa\ndynka\ndyňovísk\ndyňovisko\ndyňový\ndysbázia\ndysbúlia\ndysfágia\ndysfémia\ndysfemizmus\ndysfónia\ndysforia\ndysfunkcia\ndysfunkčný\ndysgeuzia\ndysgnózia\ndysgrafia\ndysgramatizmus\ndyshormonóza\ndyschrómia\ndyskoordinácia\ndyslália\ndyslexia\ndyslexiou\ndysmélia\ndysmenorea\ndysmímia\ndysmúzia\ndysódia\ndysorexia\ndysortografia\ndysosmia\ndyspareúnia\ndyspepsia\ndysplázia\ndyspnoe\ndysrytmia\ndystokia\ndystopia\ndystrofia\ndystrofický\ndysúria\ndýz\ndýzach\ndýzam\ndýza\ndyzentéria\ndyzenterický\ndyzestézia\ndyzorexia\ndyzosmia\ndyzostóza\ndýzový\ndyzúria\ndz\nDZ\ndzekať\ndzéta\ndzin\ndziny\nDzurinda\ndž\ndžabal\ndžajv\ndžakuzi\ndžámija\ndžangel\ndžaur\ndžavoť\ndžavotajúc\ndžavotanie\ndžavotať\ndžavotavo\ndžavotavosť\ndžavotavý\ndžavot\ndžavotmi\ndžbán\ndžbánček\ndžbánik\ndžbánka\ndžbánkami\ndžbankár\ndžbánkar\ndžbánkárka\ndžbánkársky\ndžbankársky\ndžbankárstvach\ndžbankárstvam\ndžbankárstvo\ndžbánkárstvo\ndžbánkoch\ndžbánkom\ndžbánkov\ndžbánku\ndžbánky\ndžbánok\ndžbera\ndžber\ndžebel\ndžekpot\ndžem\ndžemového\ndžemper\ndženlmen\ndžentlmen\ndžentlmensky\ndžentlmenský\ndžentlmenstvo\ndžentri\ndžentrík\ndžentríkov\ndžentry\ndžersej\ndžerseje\ndžersejový\ndžerseju\ndžez\ndžezový\ndžezva\ndžganec\ndžganie\ndžgať\nDžibutsko\ndžibutský\ndžicu\ndžigitovka\ndžigolo\ndžihád\ndžin\ndžine\ndžingel\ndžingischán\nDžingischán\ndžinizmus\ndžinov\ndžinový\ndžíns\ndžínsach\ndžínsam\ndžínsami\ndžínsoch\ndžínsom\ndžínsov\ndžínsy\ndžinu\ndžiny\ndžíp\ndžiu\ndžiudžicový\ndžiudžicu\ndžiu-džicu\ndžob\ndžoging\ndžogingmi\ndžogingoch\ndžogingom\ndžogingov\ndžogingový\ndžogingu\ndžogingy\ndžojrobik\ndžokej\ndžokejka\ndžokejský\ndžuboks\ndžúd\ndžudista\ndžudistický\ndžudistka\ndžudistký\ndžudo\ndžugať\ndžugnle\ndžugnlí\ndžugnľový\ndžugnúť\ndžuchnúť\ndžungľa\ndžunglí\ndžungľový\ndžunka\ndžurdžať\ndžus\ndžús\ndžúsik\ndžúsový\ndžuveč\ne\nE\né\nÉ\nearl\neben\nebenovník\nebenový\nebonit\nebonitmi\nebonitový\nEBRD\nebrilný\nebulícia\nebulioskopia\nebur\neburín\neburneácia\neburnifikácia\nEC\nECB\necce\necru\nECU\nEcuádore\nEcuádoru\néčka\néčko\nEda\nedafológia\nedafón\nedam\nEdda\nEddy\nEde\nedém\nedémový\neden\nedícia\nedične\nedičný\nedikt\nediktmi\nedikula\nedil\nEDIL\nedinburské\nedinburskej\nedinburských\nEdít\neditácia\nEdita\neditorC\neditorka\neditorsky\neditorský\neditorstvo\neditovací\neditovane\neditovanie\neditovaný\neditovateľný\neditovať\nEdmund\nEdo\nEdoch\nEdom\nEdov\nEduard\nEduardovo\nedukácia\nedukačno\nedukačný\nedukovaný\nedukt\nEEG\neem\nefarmóza\neféb\nefebólia\nefedra\nefedrín\nefekt\nefektivita\nefektívne\nefektívnejší\nefektívnosťN\nefektívny\nefektmi\nefektne\nefektnejší\nefektnosť\nefektný\nefektor\nefektový\nefeméra\nefemerický\nefemerida\nefemérne\nefemérnosť\nefemérny\nefeminácia\nefendi\neferentný\nefervescencia\nEfezanom\nEfez\nefezký\neficiencia\neflácia\neflorescencia\nefod\nefuzérny\nefúzia\nefúziometer\nefuzívny\nefydrogamia\neg\negalita\negalitarizmus\negalitárskeho\negalitárskej\negalitárskom\negalitársky\negalitárstvo\négalité\negalizácia\negalizačný\negalizovanie\negalizovaný\negalizovať\negejský\negíd\negida\nEgídia\negirín\negocentrickosť\negocentricky\negocentrický\negocentriskosť\negocentrisky\negocentriský\negocentrizmus\negoista\negoisticky\negoistický\negoistka\negoizmus\nego\nEgon\nEgona\nEgonom\nEgonovi\negoteizmus\negreš\negrešový\negutácia\negutér\negypt\nEgypta\nEgypťan\nEgypťania\nEgypťanka\nEgypt\negyptienka\negyptológ\negyptológia\negyptský\neh\nehe\nehm\nehmm\nEHS\nech\nechinokok\nechinokokóza\nechinos\nechinus\nechoencefalografia\nechofrázia\nechografia\nechokardiografia\nechokinéza\necholália\necholokácia\necholot\necho\nechomatizmus\nechomímia\nechový\necht\neidam\neidamský\neidetizmus\neidológia\neidos\neifel\nEiffelovka\nEiffelovku\nEinstein\neinsteinium\neintopf\nEISA\nEisenach\nEisenachu\neisenašskom\nej\nejakulácia\nejakulačný\nejakulát\nejej\nejekcia\nejektor\nejektorov\nejha\nek\nEK\nekdemit\nekdemománia\nekdýzia\nekecheiria\nEKG\nekchondróm\nekipa\nekistika\neklampsia\neklatantne\neklatantný\neklekticisticky\neklekticistický\neklekticizmus\neklekticky\neklektický\neklektik\neklektisticky\neklektistický\neklektizmus\nekletantný\neklézia\neklimeter\neklipsa\nekliptický\nekliptika\nekloga\neklogit\nekofarma\nekofilm\nekofond\nekofyziológia\nekohavária\nekoklimatológia\nekol\nekológ\nekológia\nekologickejší\nekologicky\nekologický\nekologička\nekologizácia\nekologizačný\nekomonička\nekomoničke\nekomoničky\nekomorfóza\nekon\nekonómami\nekonóm\nekonometria\nekonometrie\nekonómi\nekonómia\nekonomici\nekonomickosť\nekonomicky\nekonomický\nekonomičnosť\nekonomik\nekonomika\nekonomikom\nekonomikov\nekonomizácia\nekonomizačné\nekonomizačných\nekonomizér\nekonomizéra\nekonomizérov\nekonomizmu\nekonomizmus\nekonómka\nekonómova\nekosféra\nekosystém\nekotón\nekotoxicita\nekotoxikológia\nekoturistika\nekoturizmus\nekotyp\nekotypov\nekotypu\nekran\nEkran\nekrazit\nekrazitmi\nekrazitový\nekry\nektáza\nektázia\nektoblast\nektodaktýlia\nektoderma\nektofág\nektofyt\nektogénny\nektokardia\nektómia\nektoplazma\nektotermia\nektromélia\nektyma\nekuména\nekumenickosť\nekumenicky\nekumenický\nekumenizácia\nekumenizmus\nekv\nEkvádor\nEkvádorčan\nEkvádorčanka\nekvádorský\nekvalizér\nekvátor\nekvatoreál\nekvatoreálny\nekvatoriálny\nekvestrický\nekvidistantný\nekvilibrista\nekvilibristicky\nekvilibristický\nekvilibristika\nekvilibristka\nekvinokcia\nekvipážach\nekvipážam\nekvipáž\nekvipolentný\nekvita\nekvitabilita\nekvitácia\nekvivalencia\nekvivalent\nekvivalentmi\nekvivalentne\nekvivalentnosť\nekvivalentný\nekvivokácia\nekzém\nekzémový\nel\nEl\nEL\nelaborácie\nelaborát\nelaborátmi\nelácia\nElách\nelaín\nElám\nelán\nelastancia\nelasticít\nelasticita\nelasticite\nelasticitou\nelasticitu\nelasticity\nelastickosť\nelasticky\nelastický\nelastičnosť\nElastik\nElastiku\nelastín\nelastomér\nelastoméri\nelastoméru\nelastoméry\nelastooptika\nelatív\nEla\nElbrus\nElbruse\nElbrusu\nelce\neldorád\neldorádach\neldorádam\neldorádo\neleaté\nelefant\nelefantiáza\nelegán\nelegancia\nelegantne\nelegantnosť\nelegantný\nelégia\nelegickosť\nelegicky\nelegický\nelegraf\neleison\nelek\nElek\nelekcia\nelektor\nelektr\nelektráreň\nelektrárenský\nelektrárňach\nelektrárňam\nElektricite\nElektricity\nelektricky\nelektrický\nelektričenka\nelektričkárov\nelektrička\nelektričkový\nelektrifikácia\nelektrifikačný\nelektrifikovaním\nelektrifikovaný\nelektrifikovať\nelektrík\nelektrikách\nelektrikám\nelektrikami\nelektrikár\nelektrikárka\nelektrikársky\nelektrika\nelektrín\nelektrinách\nelektrinám\nelektrinami\nelektrina\nelektrit\nelektrizácia\nElektrizácia\nElektrizácie\nElektrizáciou\nelektrizáciu\nelektrizačný\nelektrizovaná\nelektrizované\nelektrizovanú\nelektrizovaných\nelektrizovať\nelektrizujúci\nelektroakustický\nelektroakustika\nelektroanalgézia\nelektroanalýz\nelektroanalýzach\nelektroanalýzam\nelektroanalýza\nelektroanestézia\nelektrobiológia\nelektrobioskopia\nelektrobus\nelektrobusov\nelektrobusu\nelektrobusy\nelektród\nelektródach\nelektródam\nelektróda\nelektrodiagnostika\nelektrodiagnostiky\nelektrodialýza\nelektródový\nelektrodynamický\nelektrodynamika\nelektroencefalograf\nelektroencefalografia\nelektroencefalografov\nelektroencefalografy\nelektroenergetík\nelektroenergetika\nelektroenergetike\nelektroenergetikou\nelektroenergetiku\nelektroenergetiky\nelektroerozívne\nelektroerozívny\nelektroerozívnych\nelektrofilter\nelektrofiltra\nelektrofiltre\nelektrofiltrov\nelektrofonický\nelektroforéza\nelektrofyziológia\nelektrografia\nelektrografitácia\nelektrogravimetria\nelektrochémia\nelektrochemicky\nelektrochemický\nelektrochirurgia\nelektroinštalácia\nelektroinštalačný\nelektroinštalatér\nelektroinštalatérsky\nelektroinštalatérstvo\nelektroinštalatérstvom\nelektroinžinier\nelektroinžinierka\nelektroinžiniersky\nelektroinžinierstvo\nelektroizolačné\nelektroizolačného\nelektroizolačných\nelektrokardiograf\nelektrokardiografia\nelektrokardiografiu\nelektrokardiografmi\nelektrokardiografov\nelektrokardiografy\nelektrokardiogram\nelektrokardioskop\nelektrokardiostimulátor\nelektrokaustika\nelektrokinetika\nelektrokoagulácia\nelektrokryštalizácia\nelektrokymografia\nelektroliečbach\nelektroliečbam\nelektroliečbami\nelektroliečba\nelektroliečebný\nelektroliečob\nelektroluminiscencia\nelektroluminiscencie\nelektrolyt\nelektrolyticky\nelektrolytický\nelektrolýz\nelektrolýzach\nelektrolýzam\nelektrolýza\nelektromagnet\nelektromagneticky\nelektromagnetický\nelektromagnetizmus\nelektromasáž\nelektromechanický\nelektromechanička\nelektromechanika\nelektromechanik\nelektromera\nelektromer\nelektromerový\nelektrometalurgia\nelektrometalurgický\nelektrometalurgiu\nelektrometeor\nelektrometer\nelektrometre\nelektrometrov\nelektromigrácia\nelektromobil\nelektromobilmi\nelektromontér\nelektromotor\nelektromotorická\nelektromotorické\nelektromotorickej\nelektromotorických\nelektromotorickým\nelektromyograf\nelektromyografia\nelektromyogram\nelektron\nelektronarkóza\nelektrón\nelektronegatívny\nelektronicky\nelektronický\nelektronika\nelektrónka\nelektrónkový\nelektrónovo\nelektrónový\nelektronový\nelektrónvolt\nelektrooptické\nelektrooptických\nelektrooptika\nelektroosmóza\nelektropneumaticky\nelektropneumatický\nelektropozitívny\nelektropriemysel\nelektroskop\nelektrospotrebič\nelektrostatický\nelektrostatika\nelektrostimulátor\nelektrostrikcia\nelektrošok\nelektrotaxia\nelektrotech\nelektrotechnicky\nelektrotechnický\nelektrotechnička\nelektrotechnika\nelektrotechnik\nelektrotechnológia\nelektrotechnológii\nelektrotechnológií\nelektroterapeutický\nelektroterapia\nelektrotermický\nelektrotom\nelektrovalencia\nelektrovanie\nelektrovodič\nelektrum\nelementál\nelementárne\nelementárnosť\nelementárny\nelement\nelementmi\nElena\nElenka\neleolit\nEleonór\nEleonórach\nEleonóram\nEleonóra\nelevácia\nelevácií\nelevačný\nelevátor\nelév\nelévka\nelévsky\nelf\nelfov\nEliáš\nEliášova\nEliášove\nEliášovia\nEliášovo\nEliášovu\nelidovať\neliek\neliminácia\neliminačný\neliminátor\neliminátorov\neliminovanie\neliminovaný\neliminovať\nElin\nelíps\nelipsa\nelipsoid\nelipsoidický\nelipsoidné\nelipsoidov\nelipsovite\nelipsovito\nelipsovitosť\nelipsovitý\nelipsový\neliptický\nEliška\nelít\nelitárstvo\nelita\nelitne\nelitnejšíF\nelitný\nelixír\nElíz\nEliza\nelize\nElize\nelízia\nElkin\nelko\nElkou\nElohim\nelokovaných\nelokúcia\nelokvencia\nelokventný\nelongácia\neloxácia\neloxovanie\neloxovaním\nelpéčko\neltech\neluát\nelúcia\neluent\neluviácia\nelúvium\nelux\nElvír\nElvírach\nElvíram\nElvíra\nelyzejský\nElýzium\nElza\nEm\nEmách\nemail\ne-mail\nemailmi\nemailovane\nemailovanie\nemailovaný\nemailovať\nemailovo\nemailový\ne-mailový\nEmám\neman\nEman\nEmana\nemanácia\nemanácie\nemanácii\nemanácií\nemanáciu\nemancipácia\nemancipačný\nemancipovaný\nemancipovať\nEmanuel\nEmanuele\nEmanuelova\nEmanuelovej\nEmanuelovho\nEmanuelovo\nEmanuelovým\nemaskulácia\nEma\nemballage\nembárg\nembargo\nemblém\nemblémový\nembólia\nembolický\nembolit\nemboloartria\nembolofrázia\nembolus\nembryí\nembryogenéza\nembryokardia\nembryológia\nembryologický\nembryo\nembryóm\nembryonálny\nembryopatia\nemendácia\nemendancia\nementál\nementáli\nementálmi\nementálsky\nemergencia\nemergentných\nemeritný\nemeritus\nEmery\nemerzia\nemetikum\neméza\nemfaticky\nemfatický\nemfáz\nemfázach\nemfázam\nemfáza\nemfázia\nemfyzém\nEMG\nEMI\nemiek\nemigrácia\nemigračný\nemigrant\nemigrantka\nemigrantský\nemigrantsstvo\nemigrantstvo\nemigrovaného\nemigrovania\nemigrovanie\nemigrovaných\nemigrovať\nEmil\nEmile\nEmilián\nEmiliána\nEmiliánom\nEmiliánovi\nEmília\nEmilu\nEmily\nEmin\neminenc\neminencia\neminentne\neminentný\nEmini\nEmino\nemír\nemirát\nemirátmi\nemir\nemirský\nemisár\nemisársky\nemisia\nemisivita\nemisne\nemisno\nemisný\nemitent\nemitor\nemitovanie\nemitovaný\nemitovať\nemitujúca\nemko\nemociálna\nemociálne\nemociálnej\nemociálnom\nemociálny\nemociálnych\nemociálnym\nemócia\nemociolálne\nemocionalita\nemocionálne\nemocionálnosť\nemocionálny\nemočnosť\nemočný\nemotivita\nemotívne\nemotívnosť\nemotívny\nempatia\nempatický\nempír\nempíre\nempíria\nempirickosť\nempiricky\nempirický\nempirik\nempiriokriticizmus\nempirizmus\nempírový\nempíru\nempíry\nemplektit\nempora\nempyém\nems\nEMS\nemšer\nemu\nEMÚ\nemulácia\nemulátor\nemulgácia\nemulgačný\nemulgátor\nemulgovaný\nemulgovať\nemulovať\nemulzia\nemulzín\nemulziový\nemulzný\nen\nEN\nenantioméria\nencefalický\nencefalitický\nencefalitíd\nencefalitídach\nencefalitídam\nencefalitída\nencefalografia\nencefalon\nencefalopatia\nencefalopatie\nencefalopatii\nencefalopatií\nencefalopatiu\nencefaloragia\nencián\nenciánový\nencyklika\nencyklopédia\nencyklopedickosť\nencyklopedicky\nencyklopedický\nend\nendémia\nendemický\nendemit\nendemizmus\nendikrinológie\nendívia\nendlovať\nendobióza\nendocervicitída\nendocyt\nendoderma\nendofág\nendofyt\nendogamia\nendogenéza\nendogénny\nendokard\nendokrinný\nendokrinológ\nendokrinológia\nendokrinologický\nendokrinologička\nendokrinopatia\nendolit\nendometritída\nendomitóza\nendoparazit\nendoplazma\nendoplazmatický\nendoprotéz\nendoprotéza\nendoprotézu\nendoprotézy\nendorfín\nendoskop\nEndoskopická\nendoskopické\nendoskopického\nendoskopickej\nendoskopie\nendoskopiu\nendoskopov\nendoskopy\nendospóra\nendotel\nendotermia\nendotermický\nenduro\nEneas\nEneida\neneolit\nenerg\nenergeia\nenerget\nenergetickejší\nenergeticky\nenergetický\nenergetička\nenergetika\nenergetik\nenergetizmus\nenergia\nenergickosť\nenergicky\nenergický\nEnergit\nenergotechnológie\nenervácia\nenervovaný\nenfatico\nengineering\nenharmonický\nenigma\nEnigma\nenigmatický\neniky\nenjambement\nenkapsulácia\nenkaustika\nenkláv\nenklávach\nenklávam\nenkláva\nenklitický\nenklitika\nenklitikon\nenkulturácia\nenoftalmus\nenol\nenológia\nenománia\nenormne\nenormnosť\nenormný\nenosis\nENR\nens\nensembla\nensemblami\nensemble\nensembli\nensembloch\nensemblom\nensemblov\nensemblu\nensembly\nenstatit\nENT\nentalpia\nEnte\nentelechia\nentente\nentera\nenterálny\nenter\nenteri\nenteritída\nenteroceptor\nenterokok\nenterokolitída\nenterolitiáza\nenterorágia\nenterostaxa\nenterotoxikóza\nenterovírus\nentít\nentita\nentitít\nentlovať\nento\nentomofág\nentomofauna\nentomofília\nentomológ\nentomológia\nentomologický\nentomologička\nentopický\nentreakt\nentrée\nentrefilet\nentropia\nentuziast\nentuziasta\nentuziasti\nentuziasticky\nentuziastický\nentuziastom\nentuziastov\nentuziazmus\nentyméma\nentý\nenudácia\nenumerácia\nenumeračný\nenumeratívny\nenunciácia\nenuréza\nenv\nenvir\nenviron\nenvironment\nenvironmentalista\nenvironmentalistika\nenvironmentalistka\nenvironmentálny\nenvoyé\nENW\nENX\nenzootia\nenzymatický\nenzým\nenzymológia\nenzymopatia\nenzymoterapia\nenzýmový\neocén\neocénny\neocénový\neolický\neolit\neolitický\neon\neonizmus\neosféra\neozín\nEP\nEPA\nepakta\nepanastrof\nepanastrofa\neparchiou\neparchiu\nepeda\nependým\nepentetický\nepiblast\nepiblém\nepic\nepicentier\nepicentrum\nepickosť\nepicky\nepický\nepicykloida\nepicyklus\nepidem\nepidémia\nepidemicky\nepidemický\nepidemiológ\nepidemiológia\nepidemiologicky\nepidemiologický\nepidemiologička\nepiderma\nepidermický\nepidermizácia\nepidiaskop\nepifánia\nEpifánia\nepifarynx\nepifauna\nepifenomén\nepifor\nepifora\nepifyt\nepifýza\nepigamia\nepigastrium\nepigenetický\nepigenéza\nepigeón\nepigon\nepigón\nepigónka\nepigónsky\nepigónstvach\nepigónstvam\nepigónstvo\nepigraf\nepigrafia\nepigram\nepík\nepikách\nepikám\nepikami\nepikard\nepikarp\nepika\nepik\nepikontinentálny\nepikríza\nepikrízia\nEpikur\nepikureizmus\nepikurejec\nepikurejský\nepikurejstvo\nepikurovský\nepilácia\nepilačný\nepilátor\nepilátory\nepilepsia\nepileptický\nepileptička\nepileptik\nepilimnion\nepilitón\nepilóg\nepilogický\nepilogizovať\nepilógmi\nepilógoch\nepilógom\nepilógov\nepilógu\nepilógy\nepiméria\nepinefritída\nepinerfin\nepingel\nepipelagiál\nepirogenéza\nepiskopálna\nepiskopálnej\nepiskopálny\nepiskopát\nepiskopB\nepistaxa\nepistémé\nepistilbit\nepistrofeus\nepištolárny\nepištola\nepištolový\nepitaf\nepitalamus\nepitaxia\nepitel\nepitelizácia\nepitelmi\nepitelový\nepitet\nepiteta\nepitetá\nepitetách\nepitetám\nepitetami\nepitete\nepitetom\nepiteton\nepitetu\nepitéza\nepitomé\nepitrofia\nepizácia\nepizeuxa\nepizeuxis\nepiziotomia\nepizoá\nepizód\nepizódach\nepizódam\nepizóda\nepizodicky\nepizodický\nepizódka\nepizódny\nepizootia\nepizootiami\nepizootológia\nEPM\nepoch\nepochálne\nepochálnosť\nepochálny\nepocha\nepoché\nepoisses\nepoleta\neponym\nepopej\nepopejach\nepopejam\nepopeja\nepopejí\nepos\nepoxid\nepoxidový\nEPROM\nepsilon\nepsomit\nEpson\nepurácia\nér\neradiácia\neradikácia\nérach\néram\nerár\nerári\nerármi\nerárny\nerároch\nerárom\nerárov\neráru\neráry\neratem\neratický\néra\nerb\nerbium\nerbový\nerdelteriér\nerdžanie\nerdžať\nerdži\nerdžite\nErebos\nerekcia\nerektor\neremita\neremitáž\neremofóbia\neretizmus\nereutofóbia\nerfurtský\nerg\nErg\nergasténia\nergaziománia\nergo\nergofóbia\nergografia\nergokalciferol\nergometer\nergometria\nergometrický\nergometrika\nergonómia\nergonomický\nergonomika\nergosféra\nergosterol\nergoterapia\nergotín\nergotizmus\nergotoxín\nErgu\nErich\nEricha\nErichom\nerika\nErika\nErik\nerinóza\nErínya\nEris\neristika\nEritrea\nermitáž\nErmitáž\nErmitáži\nErna\nErne\nErnest\nErnestína\nErnestova\nErnestovej\nerobik\nerodovanými\nerodovať\neros\nEros\nerosenka\nerotickejšíF\neroticky\nerotický\nerotička\nerotika\nerotik\nerotizmus\nerotogénny\nerotoman\nerotománia\nerózia\nerózívny\nerozívny\nerózny\nerrata\nerráta\nerror\nerudícia\nerudovane\nerudovanosť\nerudovaný\neruovať\nerupcia\nerupčný\neruptívne\neruptívny\nErvín\nErýnia\nerytém\nerytrazma\nerytrín\nerytroblast\nerytroblastóza\nerytrocyt\nerytrocytov\nerytromycín\nerytromycínom\nerytrosiderit\nes\nES\nés\nesalo\nescudo\nesej\nesejista\nesejisticky\nesejistický\nesejistka\nesemeska\nesenbák\nesenciálny\nesencia\nesencionálny\nesenciový\nEser\nEsera\neseročka\nesesáckych\nesesák\nesesákov\neschatológia\neschatologicky\neschatologický\nesiek\neskadra\neskadrón\neskadrónach\neskadrónam\neskadróna\neskalácia\neskalačný\neskalátor\neskamotážach\neskamotážam\neskamotáž\neskamotér\neskamotérska\neskamotérske\neskamotérskeho\neskamotérskej\neskamotérskemu\neskamotérski\neskamotérskom\neskamotérskou\neskamotérsku\neskamotérsky\neskamotérskych\neskamotérskym\neskamotérskymi\neskamotérstvach\neskamotérstvam\neskamotérstvo\neskamotovať\neskapáda\neskimácky\nEskimáčka\nEskimák\nesko\neskompt\neskont\neskonte\neskontom\neskontovala\neskontované\neskontovania\neskontovanie\neskontovaním\neskontovaných\neskontovať\neskontu\neskontuje\neskontujú\neskonty\neskorta\neskortovania\neskortovanie\neskortovaním\neskortovaný\neskortovať\neso\nesovite\nesovito\nesovitý\nESP\nesperantista\nesperantistka\nesperanto\nesperantsky\nesperantský\nesplanád\nesplanádach\nesplanádam\nesplanáda\nespres\nespreso\nespress\nespressivo\nespresso\nesprit\nespritmi\nesquire\nesrom\nessenský\nest\nESTA\nestablishment\nestablishmentmi\nestakád\nestakádach\nestakádam\nestakáda\nestavela\nesteráza\nEstera\nester\nesterházy\nesteri\nesterifikácia\nesterový\nestét\nestetickejší\nestetickosť\nesteticky\nestetický\nestetička\nestetičnosť\nestetika\nestetik\nestetizácia\nestétka\nestétsky\nestétstvach\nestétstvam\nestétstvo\nesteziológia\nEstier\nestimácia\nestón\nestónčin\nestónčinách\nestónčinám\nestónčinami\nestónčina\nEstónec\nEstónka\nEstónsko\nestónsky\nestónsky\nestrád\nestrádach\nestrádam\nestráda\nestradiol\nestrádny\nestragón\nestragónový\nestrín\nestrio\nestrogén\nestrón\nestrus\nestuár\nešalón\nešalónov\nešalónu\nešte\neštebácky\neštebáčka\neštebák\neštébak\neštébé\nešteže\neštežečo\nešus\net\nETA\néta\netablovania\netablovanie\netablovaním\netablovaniu\netablovaný\netablovať\netalón\netamín\netamínový\netán\netanol\netanolom\netanolu\netánový\netáp\netapa\netapovite\netapovito\netapovitý\netapovo\netapový\netat\netatizácia\netatizácie\netatizácii\netatizáciou\netatizáciu\netatizmus\netáž\netážach\netáže\netažér\netažérka\netáží\netážový\netc\nEtel\nEtela\nEtelka\netén\néter\néteri\néterickosť\netericky\nétericky\néterický\nEternetová\neternit\neternitmi\neternitový\néterový\neticky\netický\netička\netika\netik\netiketa\netiketka\netiketovací\netiketovačka\netiketovačkou\netiketovačku\netiketovačky\netiketovaní\netiketovania\netiketovanie\netín\netiolizácia\netiológia\netiológii\netióp\netiopatogenéza\nEtiópčan\nEtiópčanka\nEtiópia\netioplast\netiópsky\netiópsky\netn\nEtna\netnicita\netnicky\netnický\netník\netnikum\netnocentrizmus\netnogenéza\netnogeografia\netnogr\netnograf\netnografia\netnografický\netnografka\netnografovia\netnojazykový\netnológ\netnológia\netnologický\netnologička\netnonym\netnosti\netopédia\nétos\nêtre\nEtrusk\nEtruskovia\netruský\nETU\netud\netuda\netui\netuvovanie\nEty\netylácia\netylalkohol\netylalkoholový\netyl\netylén\netylénový\netylchlorid\netylizmus\netylový\netymológ\netymológia\netymologicky\netymologický\netymologička\netymológička\netymologizovať\nEU\nEÚ\neubiotika\neubúlia\neudaimonizmus\neudermický\neudialit\neufem\neufeministicky\neufeministický\neufemisticky\neufemistický\neufemizmus\neufónia\neufonický\neufória\neuforicky\neuforický\nEugen\nEugénia\neugenický\neugenika\neugenik\neucharistia\neucharistický\neuchroit\neukalyptami\neukalypte\neukalyptoch\neukalyptol\neukalyptom\neukalyptov\neukalyptový\neukalyptu\neukalyptus\neukalypty\neuklas\nEuklides\nEuklidmi\neuklidovský\neukómia\neuktetikum\neulitorál\neulógia\nEumenidy\neunuch\neunuchoid\neunuchovský\neunuchov\neupepsia\neupeptikum\neupnoe\neur\nEUR\neúr\nEurázia\neurázijský\neureflexia\nEuripides\neuroatlantický\neuroázij\neuroázijské\neuroázijskej\neuroázijských\nEuroázijský\neurocent\neurodoláre\neurofond\neurokomisár\neurokracia\neurokrat\neuro\neuróp\nEuróp\nEurópam\nEurópan\nEurópania\nEurópanka\neuropanstvo\neurópanstvo\neuroparlament\nEurópa\neuropeizácia\neuropeizačný\neuropeizmus\neuropeizovať\neuropocentrizmus\neuropoidný\neuroposlanec\neuroposlankyňa\neurópskosťN\neurópsky\neurópsky\neuroregión\neuroskepptička\neuroskepticizmus\neuroskeptický\neuroskeptička\neuroskeptik\neurošek\neuroškola\nEurovízia\nEurovízie\nEurovízii\nEurovíziu\neurovýbor\neurozón\neurozónach\neurozónam\neurozóna\neuryfág\neurytmia\neutanázia\neutónia\neutrofia\neutrofizácia\neutrofný\neutýmia\nev\nEv\nEvách\nevakuácia\nevakuačný\nevakuant\nevakuantka\nevakuantský\nevakuovaný\nevakuovať\nevaluácia\nevalvácia\nevalvačný\nEvám\nevanjeliár\nevanjeliármi\nevanjelicky\nevanjelický\nevanjelictvo\nevanjelička\nevanjelikál\nevanjelikálka\nevanjelikálny\nevanjelik\nevanjeliový\nevanjelista\nevanjélium\nevanjelium\nevanjelizácia\nevanjelizačný\nevanjelizovaný\nevanjelizovať\nevaporácia\nevaporimeter\nevaporitov\nevapority\nevapotranspirácia\nevázia\nevazívny\nEva\nevekcia\nevent\neventrácia\neventualita\neventuálne\neventuálnosť\neventuálny\nevergreen\nevergreenový\neverzia\nevid\nevidencia\nevidenčne\nevidenčno\nevidenčný\nevidentne\nevidentnosť\nevidentný\nevidovanie\nevidovanosť\nevidovaný\nevidovať\nEvin\nEvine\neviscerácia\nEvka\nEvky\nevokácia\nevokačný\nevokovať\nevokujúci\nevolúcia\nevolucionista\nevolucionistický\nevolucionizmus\nevolučne\nevolučný\névora\nevorzia\nex\nexacerbácia\nexagerácia\nexaktne\nexaktnosť\nexaktný\nexaltácia\nexaltovane\nexaltovanosť\nexaltovaný\nexaltovať\nexámen\nexaminátor\nexaminátorka\nexaminátormi\nexaminovať\nexantém\nexarácia\nexarcha\nexarchát\nexarchátom\nexartikulácia\nExcel\nexcelencia\nexcelentne\nexcelentný\nexcellence\nexcelovať\nexcenter\nexcentricít\nexcentricita\nexcentricite\nexcentricitu\nexcentricity\nexcentrickosť\nexcentricky\nexcentrický\nexcentrov\nexcepcia\nexcerpcia\nexcerpčný\nexcerpované\nexcerpovať\nexcerpt\nexcerptmi\nexces\nExcesívne\nexcesívneho\nexcindančný\nexcitabilita\nexcitácia\nexcitans\nexciton\nexcitovaným\nexcízia\nexecírovať\nexedra\nexegetické\nexegéza\nexekúcia\nexekučne\nexekučný\nexekutív\nexekutívach\nexekutívam\nexekutíva\nexekutívne\nexekutívny\nexekútor\nexekútormi\nexekútorova\nexekútorove\nexekútorsky\nexekútorský\nexekvovanie\nexekvovaním\nexekvovaný\nexekvovať\nexempcia\nExempla\nexemplár\nexemplármi\nexemplárne\nexemplárny\nexemplifikácia\nexemplifikovať\nexequatur\nexercíciách\nexercíciám\nexercíciami\nexercície\nexercícií\nexercičný\nexergia\nexfoliácia\nexhalácia\nexhalačný\nexhalát\nexhalátmi\nexhalovaného\nexhaustácia\nexhaustor\nexheredácia\nexhibícia\nexhibicionista\nexhibicionistický\nexhibicionizmus\nexhibičný\nexhumácia\nexhumačný\nexhumovať\nexil\nexilmi\nexilový\nexistencialista\nexistencialistický\nexistencializmus\nexistenciálny\nexistenciaN\nexistenčne\nexistenčný\nexistovania\nexistovanie\nexistovať\nexistujúci\nexite\nexitom\nexitov\nexitoval\nexitovali\nexitovaný\nexitovať\nexitu\nexituje\nexitujú\nexitus\nexity\nexkavácia\nexkavátor\nexkavátore\nexkavátormi\nexkavátoru\nexkavátory\nexklamácia\nexkláva\nexkludovať\nexklusive\nexkluzivita\nexkluzívne\nexkluzívnosť\nexkluzívny\nexkomunikácia\nexkomunikačný\nexkomunikovaný\nexkomunikovať\nexkoriácia\nexkráľ\nexkrécia\nexkrement\nexkrementoch\nexkrementov\nexkrementy\nexkulpácia\nexkurz\nexkurzia\nexkurzný\nexkuzovať\nexkvizitný\nexlibris\nexlibrisový\nexlibrista\nexmajster\nexmajsterka\nexminister\nexministerka\nexministrova\nExministrove\nexministrovej\nexministrovu\nexmisia\nexobiológia\nexode\nexoderm\nexodu\nexodus\nexoenzým\nexogamia\nexogénne\nexogénny\nexokrinný\nexomfalus\nexonymum\nexopexa\nexoplazma\nexorbitantný\nexorcizmus\nexosféra\nexospóra\nexostóza\nexot\nexoterický\nexotermický\nexotickosť\nexoticky\nexotický\nexotika\nexotizmus\nexozoochória\nexpander\nexpandia\nexpandit\nexpandoval\nexpandovala\nexpandovali\nexpandovalo\nexpandovania\nexpandovanie\nexpandovaním\nexpandovaný\nexpandovať\nexpanduje\nexpandujeme\nexpandujú\nexpanzia\nexpanzionistami\nexpanzionizmus\nexpanzivita\nexpanzívne\nexpanzívnosť\nexpanzívny\nexpanzný\nexpatriácia\nexpedícia\nexpedičný\nexpedient\nexpedientiek\nexpedientkách\nexpedientkám\nexpedientka\nexpedovanie\nexpedovaný\nexpedovať\nexpektorácia\nexpektorans\nexperimentálne\nexperimentálny\nexperimentátor\nexperimentátorka\nexperimentátormi\nexperimentátorský\nexperiment\nexperimentmi\nexperimentovaní\nexperimentovania\nexperimentovanie\nexperimentovaním\nexperimentovaniu\nexperimentovať\nexperlit\nexpert\nexpertiek\nexpertíz\nexpertízach\nexpertízam\nexpertíza\nexpertízny\nexpertka\nexpertný\nexplanácia\nexplanatórny\nexplantácia\nexplantát\nexplicit\nexplicite\nexplicitne\nexplicitnosť\nexplicitný\nExplicity\nexplikácia\nexplikačný\nexplikovať\nexploatácia\nexploatačný\nexploatátor\nexploatátorka\nexploatátormi\nexploatovanie\nexploatovaný\nexploatovať\nexplodovaní\nexplodovať\nexplorácia\nexplorácie\nexploráciu\nexploratívny\nexplózia\nexplozívne\nexplozívny\nexponát\nexponátmi\nexponenciála\nexponenciálny\nexponentC\nexponovane\nexponovania\nexponovanie\nexponovanosť\nexponovaný\nexponovať\nexport\nexportér\nexportmi\nexportne\nExportno\nexportný\nexportovanie\nexportovaný\nexportovať\nexportujúci\nexpozé\nexpozícia\nexpozičný\nexpozimeter\nexpozitúr\nexpozitúra\nexpozitúrach\nexpozitúram\nexpozitúrami\nexpozitúre\nexpozitúrou\nexpozitúru\nexpozitúry\nexpr\nexpremiér\nexpremiérka\nexpres\nexpresia\nexpresionista\nexpresionisticky\nexpresionistický\nexpresionistka\nexpresionizmus\nexpresivita\nexpresívne\nexpresívnosť\nexpresívny\nexpresne\nexpresnosť\nexpresný\nExpress\nexprezident\nexprezidentka\nexprezidentovho\nexpropriácia\nexpulzia\nexsangvinácia\nexsekrácia\nexsikát\nexsikóza\nexspirácia\nexspiračný\nexstirpácia\nexsudácia\nexsudát\next\nextabulácia\nextatickosť\nextaticky\nextatický\nextáz\nextázach\nextázam\nextáza\nextempore\nextenzia\nextenzie\nextenzii\nextenziou\nextenzita\nextenzite\nextenzitou\nextenzívne\nextenzívnosť\nextenzívny\nextenzný\nextenzometer\nextenzor\nexter\nexteriér\nexteriéri\nexteriérmi\nexteriéroch\nexteriérom\nexteriérov\nexteriérový\nexteriéru\nexteriéry\nexteriorizácia\nexteritorialita\nexteritoriálny\nexterminácia\nexternalita\nexternalizmus\nexterne\nexternista\nexternistka\nexterný\nextinkcia\nextirpácia\nextorzia\nextra\nextracelulárny\nextradícia\nextradície\nextradícii\nextradíciou\nextradíciu\nextragalaktický\nextrahovanie\nextrahovaný\nextrahovať\nextrakapsulárny\nextrakcia\nextrakčný\nextrakt\nextraktívny\nextraktívnych\nextraktmi\nextralíg\nextraliga\nextraligový\nextramatrimoniálny\nextraordinárny\nextrapolácia\nextrapunitivita\nextrasenzorický\nextrasystola\nextraterestrický\nextratried\nextratrieda\nextravagancia\nextravagantne\nextravagantnosť\nextravagantný\nextravaskulárny\nextraverzia\nextravilán\nextravilánový\nextrém\nextrémista\nextrémisticky\nextrémistický\nextrémistka\nextrémizmus\nextrémne\nextrémnosť\nextrémny\nextreroreceptor\nextrospekcia\nextrovert\nextrovertne\nextrovertnosť\nextrovertný\nextrovný\nextrudovať\nextrúzia\nextruzívny\nextrúzne\nextrúznej\nextrúznu\nextrúznym\nexuberancia\nexulant\nexulantka\nexulantský\nexuvia\nEzechiel\nezofág\nezofagitída\nezofagoskopia\nezofagostenóza\nEzop\nezopovský\nezoterický\nezoterika\nezoterizmus\nf\nF\nfa\nFA\nfaber\nFabián\nFabiána\nfabianizmus\nfabion\nfábor\nfabricky\nfabrický\nfabrička\nfabrikácia\nfabrikáciách\nfabrikácii\nfabrikáciu\nfabrikant\nfabrikantský\nfabrikát\nfabrika\nfabrikovaní\nfabrikovanie\nfabrikovaním\nfabrikovať\nfabulácia\nfabuláciám\nfabuláciami\nfabulácie\nfabuláciu\nfabulárny\nfabula\nfabulista\nfabulovanie\nfabulový\nfác\nface\nfacelifting\nfaciálny\nfacie\nfacies\nfacile\nfacility\nfacilizácia\nfackaní\nfackať\nfacka\nfackovaní\nfackovanie\nfackovať\nfacnúť\nfacsimile\nfacto\nfáč\nFačkov\nFačkova\nfačkovať\nFačkove\nFačkovská\nFačkovské\nfačoval\nfačovala\nfačovali\nfačovalo\nfáčovania\nfáčovanie\nfačovať\nfáčovať\nfačuj\nfačuje\nfačujem\nfačujeme\nfačuješ\nfačujete\nfačujme\nfačujte\nfačujú\nfačujúc\nfader\nfading\nfádne\nfádnosť\nfádny\nFaerčan\nFaerčanka\nfaerský\nfafrať\nfafre\nfafri\nfafrnka\nfafrnkami\nfafrnkoch\nfafrnkom\nfafrnkov\nfafrnkovi\nfafrnok\nfafrnský\nfág\nfagan\nfaganísk\nfaganiskoch\nfaganisko\nfaganiskov\nfaganiskovi\nfaganiskovia\nFaganova\nFaganove\nFaganovej\nFaganovo\nFaganových\nfagocyt\nfagocytóza\nfagocytózny\nfagománia\nfagot\nfagotmi\nfagotový\nfagotropia\nFahrenheit\nfach\nfachman\nfair\nfajáns\nfajansa\nfajansový\nfajčenie\nfajči\nfajčiaci\nfajčiarN\nfajčiareň\nfajčiarka\nfajčiarňach\nfajčiarňam\nFajčiarovmu\nfajčiarovou\nfajčiarsky\nfajčievať\nfajčime\nfajčite\nfajčiť\nfajčív\nfajčivo\nfajé\nfajkať\nfajka\nfajkový\nfajn\nfajne\nfajnota\nfajnovka\nfajnovo\nfajnovosť\nfajnový\nfajný\nfajočka\nfajront\nfajrontmi\nfájt\nfajta\nFajtov\nfaka\nfáka\nfákať\nfakieľ\nfakír\nfakírsky\nfaklandský\nfakľa\nfakliť\nfakľový\nfako\nfakolýza\nfakova\nfaksimile\nfaksimilný\nfaksimilový\nfakt\nfaktickosť\nfakticky\nfaktický\nfaktmi\nfaktografia\nfaktograficky\nfaktografický\nfaktor\nfaktoriál\nfaktoriálny\nfaktoring\nFaktorová\nFaktorove\nfaktorovej\nFaktorovi\nfaktorových\nFaktorovými\nfaktotum\nfaktovo\nfaktový\nfaktúr\nfakturácia\nfakturačne\nfakturačný\nfaktúrach\nfaktúram\nfakturant\nfakturantka\nfaktúra\nfaktúrovali\nfaktúrovalo\nfaktúrované\nfaktúrovaného\nfaktúrovanej\nfaktúrovaní\nfakturovanie\nfaktúrovaním\nfaktúrovanými\nfakturovaný\nfaktúrovať\nfakturovať\nfaktúrovo\nfaktúrový\nfaktúruje\nfakula\nfakúlt\nfakultatívne\nfakultatívnosť\nfakultatívny\nfakulta\nfakultný\nfaláng\nfalanga\nfalangovať\nfalangový\nfalanx\nfalc\nfáld\nfalda\nfald\nfaldička\nfaldík\nfaldíku\nfaldíky\nfaleristika\nfalibilita\nfalický\nFalklanďan\nFalklanďanka\nFalklandy\nfalodín\nfalos\nfaloš\nfalošne\nfalošnica\nfalošnícky\nfalošník\nfalošnosť\nfalošný\nfalšami\nfalše\nfalši\nfalší\nfalšiach\nfalšiam\nfalš\nfalšou\nfalšovanie\nfalšovaný\nfalšovateľ\nfalšovateľka\nfalšovateľský\nfalšovať\nFalun\nfalus\nFalz\nfalzám\nfalzátor\nfalzet\nfalzifikácia\nfalzifikačný\nfalzifikát\nfalzifikátmi\nfalzifikátor\nfalzifikátormi\nfalzifikátorský\nfalzifikovanie\nfalzifikovaním\nfalzifikovaný\nfalzifikovať\nfalzum\nfam\nfám\nfámach\nfámam\nfáma\nfamiliárne\nfamiliárnosť\nfamiliárny\nfamília\nfamózne\nfamózny\nfámulus\nFana\nfanál\nfanatickejší\nfanaticky\nfanatický\nfanatička\nfanatik\nfanatikova\nfanatizmus\nFanči\nfandango\nfandenie\nfandením\nfandi\nfandí\nfandia\nfandiac\nfandil\nfandila\nfandili\nfandilo\nfandím\nfandime\nfandíme\nfandíš\nfandiť\nfandite\nfandíte\nfanerofyt\nfanfár\nfanfárach\nfanfáram\nfanfára\nfanfarón\nfanfarónsky\nfanfarónstvach\nfanfarónstvam\nfanfarónstvo\nfanfárový\nfangľa\nfangľami\nfanglomerát\nfánka\nfanklub\nfant\nfánt\nfantas\nfantasta\nfantastickejšíF\nfantastickosť\nfantasticky\nfantastický\nfantastika\nfantastka\nfantastron\nfantaz\nfantázia\nfantazijne\nfantazijnosť\nfantazijný\nfantazírovaní\nfantazírovanie\nfantazírovaním\nfantazírovať\nfantazma\nfantazmagória\nfantazmagorický\nfanta\nfantom\nfantóm\nfantómový\nfanúšička\nfanúšik\nfanúšikovať\nfanúškom\nfanúškov\nfanúškovia\nfanúškovstva\nFany\nfaolit\nfar\nfár\nfáracieho\nfarad\nfaradizácia\nfárania\nfáranie\nfáraním\nfaraón\nfaraóni\nfaraónka\nfaraónov\nfaraónsky\nfarár\nfarárčiť\nFarárik\nfarárka\nfarárko\nfarárove\nfarárovej\nfarársky\nfarárstvach\nfarárstvam\nfarárstvo\nfárať\nfara\nfarba\nfarbenieN\nfarbený\nfarbi\nfarbiaca\nfarbiacej\nfarbiaci\nfarbiacou\nfarbiar\nfarbiareň\nfarbiarka\nfarbiarňach\nfarbiarňam\nfarbiarsky\nfarbiarstvach\nfarbiarstvam\nfarbiarstvo\nfarbička\nfarbime\nfarbisto\nfarbistý\nfarbite\nfarbiť\nfarbitosť\nfarbív\nfarbivo\nfarbosleposť\nfarboslepý\nfarbotlač\nfarbotlačový\nfarebne\nfarebnosť\nfarebný\nfariem\nFarina\nfarinóza\nfarizej\nfarizejka\nfarizejov\nfarizejsky\nfarizejský\nfarizejstvo\nfarm\nfarmaceut\nfarmaceuticky\nfarmaceutický\nfarmaceutika\nfarmaceutka\nfarmaceutský\nfarmácia\nfarmaká\nfarmakodynamické\nfarmakodynamika\nfarmakolit\nfarmakológ\nfarmakológia\nfarmakologicky\nfarmakologický\nfarmakologička\nfarmakológička\nfarmakománia\nfarmakoterapia\nfarmakoterapie\nfarmakoterapii\nfarmakoterapiou\nfarmakoterapiu\nfarmakum\nfarmár\nfarmárčení\nfarmárčenia\nfarmárčenie\nfarmárčením\nfarmárčeniu\nfarmárčiť\nfarmárenia\nfarmáriť\nfarmárka\nfarmárovu\nfarmársky\nfarmárstvach\nfarmárstvam\nfarmárstvo\nfarma\nfarmíčka\nfarmový\nFarná\nFarnej\nfarnícky\nfarníčka\nfarník\nfarnosť\nfarológia\nfárom\nFarsky\nfarský\nfartlek\nfáry\nfaryngála\nfaryngitída\nfarynx\nfasád\nfasádach\nfasádam\nfasáda\nfasádnik\nfasádny\nfasádový\nfascia\nfasciácia\nfascikel\nfascikla\nfasciklami\nfascikle\nfascikli\nfascikloch\nfasciklom\nfasciklov\nfasciklu\nfascinácia\nfascinovane\nfascinovanejší\nfascinovaný\nfascinovať\nfascinujúcejší\nfascinujúci\nfascio\nfasciola\nfasciolóza\nfashion\nfasoval\nfasovala\nfasovali\nfasovalo\nfasovaní\nfasovanie\nfasovať\nfastidiózny\nfasuj\nfasuje\nfasujem\nfasujeme\nfasuješ\nfasujete\nfasujme\nfasujte\nfasujú\nfasujúc\nfasung\nfašiangami\nfašiang\nfašiangoch\nfašiangom\nfašiangov\nfašiangovať\nfašiangový\nfašiangu\nfašiangy\nfašírka\nfašírkový\nfašírovať\nfašista\nfašisticky\nfašistický\nfašistka\nfašizácia\nfašizačný\nfašizmus\nfatalista\nfatalisticky\nfatalistický\nfatalistka\nfatalita\nfatalizmus\nfatálne\nfatálnosť\nfatálny\nfatamorgán\nfatamorgánach\nfatamorgánam\nfatamorgána\nfatamorganický\nfatamorgánový\nfatamotganický\nFatím\nFatima\nFatimami\nFatimou\nFatimu\nFatimy\nfatinkovať\nfatinovať\nFatra\nfatranský\nFatre\nfatum\nfatwa\nfaul\nfaulmi\nfaulovaní\nfaulovanie\nfaulovať\nfauna\nfaun\nfaunistika\nfaunove\nfaunovský\nfaunský\nfaustbal\nfauvizmus\nfaux\nfavela\nfavorel\nfavorit\nfavoritka\nfavorizácia\nfavorizáciou\nfavorizovania\nfavorizovanie\nfavorizovaniu\nfavorizovaný\nfavorizovať\nfavus\nfax\nfaxmodem\nfaxovanie\nfaxovaný\nfaxovať\nfaxový\nfayolizmus\nfáz\nfázach\nfázam\nfáza\nfazeta\nfazetovanej\nfázomer\nfazón\nfazónach\nfazónam\nfazóna\nfazónka\nfazónovo\nfazónový\nfázor\nfázotrón\nfázovania\nfázovanie\nfázovaním\nfázovaniu\nfázovaný\nfázovať\nfázovo\nfázovosť\nfázový\nfázujeme\nfazuľa\nfazuľka\nfazuľkový\nfazuľový\nFBI\nFC\nFCI\nFDD\nFDP\nFe\nFEA\nfeasibility\nfeatón\nfeaturami\nfeature\nfeaturi\nfeaturoch\nfeaturom\nfeaturov\nfeaturu\nfeatury\nfeb\nfebrilita\nfebrilný\nfebruár\nfebruármi\nfebruárový\nfederácia\nfederačný\nfederalista\nfederalistický\nfederalistka\nfederalizácia\nfederalizačný\nfederalizmus\nfederalizovaný\nfederálny\nfederatívne\nfederatívny\nFedor\nFedormi\nFedorova\nfedrovať\nfeéria\nfeferón\nfeferónka\nfeferónkový\nfeferónový\nfechtovať\nFEI\nfejtenistka\nfejtón\nfejtónik\nfejtonista\nfejtonisticky\nfejtonistický\nfejtonistka\nfejtónovitý\nfejtónový\nfekáliách\nfekáliám\nfekáliami\nfekálie\nfekálií\nfekálny\nfekundácia\nfekundita\nfelácia\nfeláh\nfelčiar\nfelčiarka\nfelčiarsky\nfelčiarstvach\nfelčiarstvam\nfelčiarstvo\nfeldkurát\nfelém\nFelícia\nfelíciách\nfelície\nfelícii\nfelícií\nfelíciou\nfelíciu\nFélix\nfeloderm\nfeloderma\nfelogén\nfelónia\nfeloplastika\nfelzuma\nfem\nFEM\nféma\nfemale\nfeminín\nfeminínach\nfeminínam\nfeminínum\nfeminista\nfeministicky\nfeministický\nfeministka\nfeminita\nfeminizácia\nfeminizmus\nfemur\nfen\nfén\nFenek\nfenestra\nFenestra\nfenestrácia\nFenícia\nfenický\nFeničan\nFeničanka\nfenig\nfenigmi\nfenigoch\nfenigom\nfenigov\nfenigový\nfenigu\nfenigy\nfenikel\nfenikla\nfeniklami\nfenikle\nfenikli\nfenikloch\nfeniklom\nfeniklov\nfeniklový\nfeniklu\nfenistika\nfénixa\nfénixami\nfénix\nfénixovi\nfenka\nfenke\nfenofáza\nfenogenetika\nfenokópia\nfenokryst\nfenolát\nfenol\nfenológia\nfenolový\nfenomenalizmus\nfenomenálne\nfenomenálny\nfenoménC\nfenomenológia\nfenón\nfenoplast\nfenoplastov\nfenoplasty\nfenotyp\nfenotypický\nfénovať\nfenyl\nfenylacetón\nfenylketonúria\nfér\nFera\nFerami\nferberit\nfercoval\nfercovala\nfercovali\nfercovalo\nfercovať\nfercuj\nfercuje\nfercujem\nfercujeme\nfercuješ\nfercujete\nfercujme\nfercujte\nfercujú\nfercujúc\nFerdinand\nferiálny\nférie\nferit\nferite\nferitom\nferitov\nferitový\nferity\nFerka\nFerko\nFerkom\nFerkova\nFerkovi\nFerkovu\nferman\nfermata\nfermáta\nfermentácia\nfermentačne\nfermentačný\nfermentatívnu\nfermentatívnym\nferment\nfermentmi\nfermentovaná\nfermentované\nfermentovaného\nfermentovaných\nfermentový\nfermentujú\nfermež\nfermežový\nfermión\nFero\nferoce\nferoelektrina\nferochróm\nferochrómov\nferochrómu\nferochrómy\nferokyanid\nferokyanidu\nFerom\nferomagnetický\nferomagnetikum\nferomagnetizmus\nferomangán\nferomangánov\nferomangánovými\nferomangánu\nferomolybdénu\nferomón\nferón\nferosilícia\nferosilíciá\nferosilíciom\nferosilícium\nferotypia\nFerov\nFerova\nférovo\nférovosť\nférový\nferozliatin\nferozliatina\nferozliatinami\nFerozliatinou\nferozliatinu\nferozliatiny\nFerr\nFerra\nFerrara\nferrarský\nFerrary\nFerre\nFerru\nferrum\nFerrum\nferry\nfertilita\nfertilizácia\nfertilný\nfertucha\nfertuška\nferuľa\nferventný\nfest\nfestival\nfestivalmi\nfestivalový\nfeston\nfestovný\nfešácky\nfešák\nfešanda\nfešne\nfešnosť\nfešný\nfeta\nfetálny\nfeticída\nfetiša\nfetiše\nfetiši\nfetišista\nfetišisticky\nfetišistický\nfetišistka\nfetišizácii\nfetišizáciou\nfetišizmus\nfetišizovaná\nfetišizované\nfetišizovať\nfetiš\nfetišmi\nfetišoch\nfetišom\nfetišov\nfetišu\nfetopatia\nfetoskopia\nfetovanie\nfetovaný\nfetovať\nfétus\nfeualista\nfeud\nfeudál\nfeudalista\nfeudalisticky\nfeudalistický\nfeudalizmus\nfeudálno-kapitalistický\nfeudálny\nfeudí\nfeudum\nFey\nfezárne\nfez\nff\nFF\nfff\nFFF\nFFP\nFFUK\nfi\nfí\nFIA\nfiáb\nfiaker\nfiakerový\nfiakrista\nfiakrový\nfiála\nfialách\nfialám\nfiala\nfialiek\nfialkách\nfialkám\nfialkasto\nfialkastý\nfialka\nfialkovasto\nfialkovastý\nfialkový\nfialôčka\nfialova\nFialove\nfialovieť\nfialovo\nfialovočervený\nfialový\nfiasca\nfiásk\nfiasko\nfiata\nfiat\nfiatiek\nfiatkách\nfiatkám\nfiatka\nfiatmi\nFiatmi\nfíb\nfíber\nfibrila\nfibrilácia\nfibrín\nFibrinogén\nfibrínový\nfibroblast\nfibrocyt\nfibróm\nfibroskop\nfibroskopia\nfibróza\nfibróze\nfibrózou\nfibrózu\nfibrózy\nfibula\nFicmi\nFico\nfiction\nFicu\nfič\nfičať\nfíčer\nfíčrami\nfíčri\nfíčroch\nfíčrom\nfíčrov\nfíčru\nfíčry\nfičúr\nfičúrsky\nfičúrstvach\nfičúrstvam\nfičúrstvo\nfideikomis\nfideista\nfideistický\nfideistka\nfideizmus\nFidél\nFidélia\nfidélne\nfidli\nfidlikár\nfidlikať\nfidlikovať\nFidži\nFidžijčan\nFidžijčanka\nfidžijský\nFiera\nFiere\nfiesta\nFIFA\nfifici\nfifíci\nfifik\nfifík\nFifikovej\nfifikovi\nfifíkovi\nfifikovia\nfifíkovia\nfiflena\nfiflenka\nfíg\nfiga\nfígeľ\nfighter\nfigliar\nfigliarka\nfigliarsky\nfigliarstvach\nfigliarstvam\nfigliarstvo\nfíglik\nfigľovať\nfigovník\nfigovníkový\nfigový\nfigu\nfigúr\nfigurácia\nfiguráciu\nfigúrach\nfiguralista\nfigurálne\nfigurálny\nfigúram\nfigurant\nfigurantka\nfiguratívne\nfiguratívnosť\nfiguratívny\nfigúra\nfigurín\nfigurínach\nfigurínam\nfigurína\nfigúrka\nfigurovaní\nfigurovanie\nfigurovať\nfiha\nfíha\nFii\nfíí\nFijaš\nfik\nfikanie\nfikať\nfikcia\nfikcionalizmus\nfiknúť\nfikot\nfikotmi\nfiktívne\nfiktívnosť\nfiktívny\nfiktonym\nfiktusa\nfiktus\nfiktusi\nfiktusovi\nfikus\nfikusový\nfil\nFiladejfijčan\nFiladejfijčanka\nFiladelfia\nfiladelfský\nfilagória\nFiľakova\nFiľakove\nFiľakovo\nfiľakovský\nFiľakovu\nfilantrop\nfilantropia\nfilantropicky\nfilantropický\nfilantropizmus\nfilantropka\nfilarióza\nfilat\nfilatelia\nfilatelista\nfilatelistický\nfilatelistika\nfilatelistka\nfilc\nfilcka\nfilcový\nfile\nfilé\nfilet\nfilharmónia\nfilharmonický\nfilharmonička\nfilharmonik\nfília\nfiliácia\nfiliačný\nfiliálka\nfiliálkový\nfiliálny\nFiliere\nfiligrán\nfiligráne\nfiligránova\nfiligránove\nfiligránovo\nfiligránovu\nfiligránovým\nfiligránsky\nfiligránu\nfiligrány\nfíling\nfilipa\nfilip\nFilip\nfilipika\nfilipikou\nfilipín\nFilipín\nFilipína\nFilipínach\nFilipínam\nFilipínec\nFilipínka\nfilipínsky\nFilipíny\nFilipová\nFilipovskej\nFilipov\nfilister\nfilisterský\nfilištín\nFilištínec\nfilištínsky\nfilištínsky\nfilmár\nfilmárka\nfilmársky\nfilmárstvach\nfilmárstvam\nfilmárstvo\nfilm\nfilmexport\nfilmexportu\nfilmoték\nfilmotékach\nfilmotékam\nfilmotéka\nfilmovací\nfilmovania\nfilmovanie\nfilmovaním\nfilmovaný\nfilmovať\nfilmovo\nfilmový\nfilodendron\nfilodendrový\nfilol\nfilológ\nfilológia\nfilologicky\nfilologický\nfilologička\nFilomén\nFiloménach\nFiloménam\nFiloména\nfiloxénia\nfiloz\nfilozof\nfilozofia\nfilozoficky\nfilozofický\nfilozofka\nfilozofovanie\nfilozofovať\nfilter\nfiltrácia\nfiltračno\nfiltračný\nfiltrát\nfiltrovací\nfiltrovanie\nfiltrovaný\nfiltrovateľnosť\nfiltrovateľnosti\nfiltrovateľnosťou\nfiltrovať\nfiltrovo\nfiltrový\nfiltrujúci\nfilumenista\nfilumenistika\nfilumenistka\nFIM\nfimóza\nfin\nfín\nfinál\nfinále\nfinalista\nfinalistka\nfinalita\nfinalitou\nfinalitu\nfinality\nfinalizácia\nfinalizmus\nfinálny\nfinálový\nfinanc\nfinanciách\nfinanciám\nfinanciami\nfinancie\nfinancií\nfinancmi\nfinancova\nfinancovane\nfinancovanie\nfinancovaný\nfinancovateľ\nfinancovateľka\nfinancovať\nfinančne\nfinančnejší\nfinančnícky\nfinančníctva\nfinančníctve\nfinančníctvo\nfinančníctvom\nfinančníčka\nfinančník\nfinančníkove\nfinančníkovej\nfinančníkovho\nfinančníkových\nfinančno\nfinančný\nFín\nfínčin\nfínčinách\nfínčinám\nfínčinami\nfínčina\nfine\nfines\nfinesa\nfingovane\nfingovanie\nfingovaný\nfingovať\nFiniša\nfiniš\nfinišerov\nfinišery\nfiniši\nfinišman\nfinišmanka\nfinišované\nfinišovaní\nfinišovania\nfinišovanie\nfinišovaním\nfinišovať\nfinitívum\nfinitizmus\nfinitný\nFinka\nFínka\nFinke\nFinku\nFínove\nFínovho\nFínsko\nfínsky\nfínsky\nfínt\nfinta\nfinti\nfintime\nfintite\nfintiť\nFIP\nfiremne\nfiremno\nfiremný\nfiriem\nfirmament\nfirma\nfirnajz\nfirn\nfirnis\nFIS\nfisipária\nfisting\nfistula\nfistulovo\nfistulový\nfisura\nfiškál\nfiškálčina\nfiškalita\nfiškálny\nfiškálsky\nfiškálstvach\nfiškálstvam\nfiškálstvo\nfiškus\nfiškusi\nfištrón\nfit\nfiť\nfitcentier\nfitcentrum\nfiťfiriť\nfiting\nfitnescentier\nfitnescentrum\nfitnese\nfitnesmi\nfitnesoch\nfitnesom\nfitnesov\nfitnes\nfitnesse\nfitnessmi\nfitnessoch\nfitnessom\nfitnessov\nfitness\nfitnessu\nfitnessy\nfitnesu\nfitnesy\nfitónia\nfiu\nfix\nfixácia\nfixačný\nfixatív\nfixatíve\nfixátor\nfixfokus\nfixiek\nfixing\nfixír\nfixírovať\nfixka\nfixľovanie\nfixľovaniu\nfixlovať\nfixľovať\nfixne\nfixný\nfixovania\nfixovanie\nfixovaním\nfixovaniu\nfixovaný\nfixovať\nfízel\nfízla\nfízlami\nfízloch\nfízlom\nfízlov\nfízlovi\nfizz\nfiží\nfjedl\nfjord\nfjordový\nFK\nFKM\nfladičiek\nflagelácia\nflagelantstvo\nflagellum\nflagrantne\nflagrantný\nflajster\nfláka\nflákač\nflákaj\nflákajme\nflákajte\nflákajú\nflákajúc\nflákal\nflákala\nflákali\nflákalo\nflákam\nflákame\nflákania\nflákanie\nflákaš\nflákať\nflákate\nfľakato\nfľakatosť\nfľakatý\nfľakavý\nfľak\nflakón\nflakóne\nflakónov\nflakónu\nflakóny\nfľakovanie\nfľakovať\nfľakovitý\nflám\nflambovanie\nflambovať\nflamboyantný\nFlám\nflámčin\nflámčinách\nflámčinám\nflámčinami\nflámčina\nflamenco\nflamender\nflamengo\nFlámka\nflámovať\nFlámsko\nflámsky\nflámsky\nflanc\nfľandra\nflanel\nflanelmi\nflanelový\nfľask\nfľaskmi\nfľasknúť\nfľaskoch\nfľaskom\nfľaskov\nfľasku\nfľasky\nfľasnúť\nfľaša\nflašinet\nfľaškáreň\nfľaškárne\nfľaškárni\nfľaška\nfľaškovaní\nfľaškovitý\nfľaškovozelený\nfľaškový\nfľašový\nfľaštička\nflatéria\nflatulancia\nflauše\nflauši\nflauš\nflaušmi\nflaušoch\nflaušom\nflaušov\nflaušový\nflaušu\nfláut\nflauta\nflautista\nflautistka\nflautový\nflavín\nflavizmus\nflažolet\nflebalgia\nflebitída\nflebológia\nflebotómia\nfleece\nflegma\nflegmatickosť\nflegmaticky\nflegmatický\nflegmatička\nflegmatik\nflegmatizácia\nflegmatizmus\nflegmóna\nflektívnosť\nflektívny\nfleret\nfleš\nfleuret\nfleuretový\nflexia\nflexibilita\nflexibilne\nflexibilnosť\nflexibilný\nflexívnosť\nflexívny\nflexografia\nflexúra\nfliačik\nfliačiky\nfliačka\nfliačkoch\nfliačkom\nfliačkov\nfliačku\nfliačky\nfliaskať\nfliaš\nflieskať\nflíglhorna\nflingnúť\nflink\nflinknúť\nflínt\nflinta\nflintička\nflintový\nflip\nflipper\nflirt\nflirtmi\nflirtovanie\nflirtovať\nflirtujúci\nflís\nfliter\nfloating\nflobertka\nfľočiť\nfľoch\nfľocháň\nfľocháne\nfľocháni\nfľocháňu\nfľochať\nfľochnúť\nflokula\nflokulácia\nfloorball\nflop\nFlora\nflórach\nflóram\nflóra\nflór\nFlore\nfloreat\nFlorén\nFlorenc\nFlorenca\nFlorenci\nFlorencia\nflorénov\nFlorenťan\nFlorenťanka\nflorentín\nflorentínskej\nflorentský\nflorény\nFlorián\nFloriánovej\nFloríd\nFloriďan\nFloriďanka\nFlorida\nfloridský\nFlorin\nFlorina\nFlorino\nFlorinom\nfloristika\nFloriš\nFloriša\nFlorišom\nflorivor\nflórmi\nflorogenéza\nflóroch\nflórom\nflórov\nflórový\nFloru\nFlory\nfloskula\nfloskulový\nfľoš\nfľošiť\nflot\nflota\nflotácia\nflotácie\nflotácií\nflotáciou\nflotáciu\nflotačný\nflotila\nflotilový\nflox\nfloxový\nfluid\nFluid\nfluíd\nfluidizácia\nfluidizácii\nfluidizáciou\nfluidizáciu\nfluidný\nfluidový\nfluidum\nfluktácii\nfluktuácia\nfluktuačný\nfluktuant\nfluktuantka\nfluktuantský\nfluktuovať\nfluktuujúci\nfluór\nfluóre\nfluorescencia\nfluorescenčný\nfluoreskovať\nfluoreskujúci\nfluorid\nfluoridový\nfluorit\nfluoritmi\nfluoritový\nfluorizácia\nfluórmi\nfluóroch\nfluórom\nfluórov\nfluorovodík\nfluorovodíkový\nfluórový\nfluoróza\nfluóru\nfluóry\nfľúskať\nflutter\nfluviálny\nflyša\nflyše\nflyš\nflyšom\nflyšový\nFM\nFN\nFNM\nFNP\nFNPY\nFNsP\nfňuk\nfňukáč\nfňukanie\nfňukať\nfňukavý\nfňukot\nFNY\nFO\nfoajé\nfóbia\nfocal\nföhn\nfokála\nfokálny\nfokusácia\nfókus\nfókusový\nfolder\nfóliá\nfoliácia\nfoliant\nfólia\nfolikul\nfolikulitída\nfóliované\nfóliovaných\nfóliovník\nfóliovníkový\nfóliový\nfolk\nfolklór\nfolklóre\nfolklorista\nfolkloristicky\nfolkloristický\nfolkloristika\nfolkloristka\nfolklorizovať\nfolklórmi\nfolklórny\nfolklóroch\nfolklórom\nfolklórov\nfolklóru\nfolklóry\nfolkový\nFolkušová\nfon\nfonácia\nfonačný\nfonasténia\nfonátor\nfón\nfön\nfondán\nfondánový\nfond\nfondovo\nfondový\nfondue\nfoném\nfonémach\nfonémam\nfonematický\nfonéma\nfonémový\nfonendoskop\nfoneticky\nfonetický\nfonetička\nfonetika\nfonetik\nfoniater\nfoniatria\nfoniatrický\nfoniatrička\nfonický\nfonografický\nfonogram\nfonokardiograf\nfonokardiografia\nfonokardiogram\nfonológ\nfonológia\nfonologicky\nfonologický\nfonologička\nfonometer\nfonometria\nfonometrický\nfonopsie\nfonoskop\nfonoskopový\nfonoték\nfonotékach\nfonotékam\nfonotekár\nfonotekárka\nfonotéka\nfönoval\nfönovala\nfönovali\nfönovalo\nfönovať\nfontán\nfontánach\nfontánam\nfontána\nfontanela\nfontánka\nfontánový\nfontina\nfönuj\nfönuje\nfönujem\nfönujeme\nfönuješ\nfönujete\nfönujme\nfönujte\nfönujú\nfönujúc\nfoot\nFoot\nfor\nfórach\nfóram\nfór\nForbasy\nforbína\nforčeking\nforčekingmi\nforčekingoch\nforčekingom\nforčekingov\nforčekingu\nforčekingy\nforčekovať\nfordiek\nfordizmu\nfordky\nforehand\nforemný\nforenzný\nforézia\nforhend\nforhendový\nforiem\nforinta\nforint\nforintmi\nform\nformácia\nformačný\nformagella\nformaldehyd\nformaldehydový\nformalín\nformalínový\nformalista\nformalisticky\nformalistický\nformalistika\nformalistka\nformalita\nformalizácia\nformalizačný\nformalizmus\nformalizovania\nformalizovaný\nformalizovať\nformálne\nformálnosť\nformálny\nformant\nformantmi\nformát\nformatívny\nformátmi\nformátovací\nformátovanie\nformátovaný\nformátovateľný\nformátovať\nformátovo\nformátový\nforma\nFormela\nFormelu\nfórmi\nformička\nformotvorný\nformovací\nformovačJ\nformovačka\nformovane\nformovanie\nformovaný\nformovateľ\nformovateľa\nformovateľný\nformovať\nformovka\nformovňa\nformovo\nformový\nformujúce\nformujúci\nformuláciach\nformulácia\nformulačne\nformulačný\nformulár\nformulármi\nformulárový\nformula\nformulka\nformulovanieN\nformulovaný\nformulovať\nformyl\nfornier\nfornix\nfóroch\nforota\nfórov\nforsáž\nforsírované\nforsírovaného\nforsírovaní\nforsírovanie\nforsírovaním\nforsírovať\nforšňa\nforšní\nforšňový\nforšty\nforšus\nforte\nfortepiano\nfortieľ\nfortieľmi\nfortieľny\nfortieľoch\nfortieľom\nfortieľov\nfortieľu\nfortifikácia\nfortifikáciu\nfortifikované\nfortifikovať\nfortissimo\nfortňa\nfortún\nfortuna\nfortúnach\nfortúnam\nfortúna\nfórum\nfóry\nforzítia\nforzítiový\nfosfán\nfosfát\nfosfátmi\nfosfátovanie\nfosfátovaný\nfosfátový\nfosfolipid\nfosfor\nfosforečnan\nfosforečný\nfosforescencia\nfosforeskovať\nfosforeskujúca\nfosforeskujúce\nfosforeskujúci\nfosforit\nfosforitan\nfosforitý\nfosforolýza\nfosforový\nfosforylácia\nfosgén\nfosgénový\nfosília\nfosilizácia\nfosilizovať\nfosílny\nfossa\nfošňa\nfošní\nfošňový\nfot\nFot\nfoťák\nfotela\nfotel\nfotelka\nfotelmi\nfotelový\nfotenie\nfotíno\nfotiť\nfotizmus\nfotka\nfotoalbum\nfotoamatér\nfotoamatérka\nfotoamatérsky\nfotoamatérsky\nfotoamatérstvo\nfotoaparát\nfotoaparátmi\nfotoarchív\nfotoarchívu\nfotoasimilácia\nfotoateliér\nfotoateliéri\nfotoateliérmi\nfotoateliéroch\nfotoateliérom\nfotoateliérov\nfotoateliérsky\nfotoateliéru\nfotoateliéry\nfotobiológia\nfotoblast\nfotobunka\nfotočlánok\nfotodermatóza\nfotodióda\nfotodynamia\nfotoefekt\nfotoelektricky\nfotoelektrický\nfotoelektrina\nfotoelektrón\nfotofília\nfotofóbia\nfotogenickosť\nfotogenicky\nfotogenický\nfotogénny\nfotograf\nfotografia\nfotograficky\nfotografický\nfotografista\nfotografistka\nfotografka\nfotografovanie\nfotografovaný\nfotografovať\nfotografovia\nfotogram\nfotogrametria\nfotogrametrický\nfotogrammetria\nfotochémia\nfotochemický\nfotochemikália\nfotojuvenizácia\nfotokatalýza\nfotokinéza\nfotokomore\nfotokópia\nfotokopická\nfotokopírovanie\nfotokrúžok\nfotolaborant\nfotolaboratórium\nfotolitografie\nfotolýza\nfoto\nfotomechanika\nfotometer\nfotometria\nfotometrický\nfotomodelka\nfotomontážach\nfotomontážam\nfotomontáž\nfotomontážny\nfotomorfóza\nfotón\nfotónka\nfotónový\nfotopapier\nfotopapiere\nfotopapierov\nfotopotrebami\nfotopotreby\nfotopotrieb\nfotoprodukt\nfotopsia\nfotorealistický\nfotoreportážach\nfotoreportážam\nfotoreportáž\nfotoreportér\nfotoreportérka\nfotoreportérsky\nfotoreportérsky\nfotosádzacie\nfotosenzibilita\nfotoseriál\nfotoseriálom\nfotosféra\nfotosférický\nfotoslužba\nfotoslužbou\nfotoslužby\nfotoslužieb\nfotostimulácia\nfotostimulátor\nfotosúťaž\nfotosyntetický\nfotosyntéz\nfotosyntézach\nfotosyntézam\nfotosyntéza\nfototechnika\nfototerapia\nfototermometria\nfototípia\nfototlač\nfototropia\nfototypia\nfox\nFoxom\nFoxov\nfoxteriéra\nfoxteriér\nfoxteriérmi\nfoxteriéroch\nfoxteriérom\nfoxteriérov\nfoxteriérovi\nfoxteriéry\nfoxtron\nfoxtrot\nfoxtrotmi\nfoxtrotový\nFoxu\nfoyer\nfoyeri\nFP\nFPÖ\nfr\nFR\nfŕ\nfráčik\nfráčka\nfráčkami\nfráčkoch\nfráčkom\nfráčkov\nfráčku\nfráčky\nfráčok\nfragile\nfragilita\nfragilný\nfragmentácia\nfragmentácie\nfragmentácii\nfragmentáciou\nfragmentáciu\nfragmentačné\nfragmentačných\nfragmentárnosť\nfragmentárny\nfragment\nfragmentmi\nfragmentovo\nfragmentový\nfracht\nfraj\nFraja\nfrajera\nfrajer\nfrajerči\nfrajerčime\nfrajerčina\nfrajerčite\nfrajerčiť\nfrajeri\nfrajeríb\nfrajerina\nfrajerkár\nfrajerkársky\nfrajerkársky\nfrajerkárstvach\nfrajerkárstvam\nfrajerkárstvo\nfrajerka\nfrajermi\nfrajerôčka\nfrajeroch\nfrajerom\nfrajerov\nfrajerovi\nfrajersky\nfrajerský\nfrajerstvo\nfrajla\nfrak\nfrakcia\nfrakcionáciu\nfrakcionár\nfrakcionársky\nfrakcionársky\nfrakcionárstvach\nfrakcionárstvam\nfrakcionárstvo\nfrakčný\nfrakový\nfraktál\nFraktálové\nfraktúr\nfraktúrach\nfraktúram\nfraktúra\nfraktúrový\nframykoin\nfranc\nFranciám\nFrancie\nFrancii\nFrancií\nFranciu\nfrancium\nFrancka\nFrancke\nfrancovka\nfrancovkový\nFrancúz\nFrancúzka\nFrancúzkam\nFrancúzke\nFrancúzku\nFrancúzky\nFrancúzok\nFrancúzska\nFrancúzsko\nfrancúzsky\nfrancúzsky\nfrancúzštin\nfrancúzštinách\nfrancúzštinám\nfrancúzštinami\nfrancúzštinár\nfrancúzštinárka\nfrancúzština\nfranfor\nfranforcový\nfranforček\nfranforec\nfranfurtskej\nfranchising\nfrankatúra\nfrank\nFrank\nFrankfurťan\nFrankfurťania\nFrankfurťanka\nFrankfurt\nfrankfurtský\nfrankizmus\nfranko\nFranko\nfrankofil\nfrankofónny\nfrankotyp\nfrankovacie\nfrankovaná\nfrankovaní\nfrankovať\nFrankovia\nfrankovka\nFrankovský\nfrankový\nfranský\nfranšíza\nFrantišek\nfrantiškán\nfrantiškánka\nfrantiškánsky\nFrantiška\nFrantiškoch\nFrantiškom\nFrantiškov\nFrantiškovi\nFrantiškovia\nfrapantne\nfrapantnosť\nfrapantný\nfrapovaná\nfrapovať\nfrasa\nfras\nfrasi\nfrasovi\nfrasovia\nfraška\nfraškovitosťou\nfraškovitý\nfraškový\nfráter\nfraternita\nfraternité\nfrátrovský\nfraucimor\nfraudulózny\nfraus\nfraz\nfráz\nfrázach\nfrázam\nfráza\nfrazém\nfrazémach\nfrazémam\nfrazéma\nfrazeológ\nfrazeológia\nfrazeológický\nfrazeologický\nfrazeologička\nfrazeológička\nfrazeologizmus\nfrázička\nfrázista\nfrázistický\nfrázistka\nfrázovaná\nfrázovanie\nfrázovať\nfrázovite\nfrázovito\nfrázovitosť\nfrázovitý\nfrckať\nfrcnúť\nfrcnutý\nfrč\nfrčať\nfrčkár\nfrčka\nfrčkovať\nFrederika\nFrederik\nfreediving\nfreemartinizmus\nFreetown\nFreetownčan\nFreetownčanka\nfreetownský\nfregata\nfregatný\nfregatový\nfreiburskej\nFreistadt\nFreistadte\nFreistadtu\nfrekvencia\nfrekvenčne\nfrekvenčný\nfrekventant\nfrekventantka\nfrekventantský\nfrekventovane\nfrekventovanejší\nfrekventovanosť\nfrekventovaný\nfrém\nfreneticky\nfrenetický\nfrenézia\nfrenológia\nfrenoplégia\nfrenštátska\nfrenštátskeho\nfrenštátskej\nfrenštátskom\nFrenštátsku\nFrenštátsky\nfrenštátskych\nfreón\nfreónový\nfreska\nfresko\nfreskovitý\nfreskový\nfretka\nfretum\nfreudizmus\nfréz\nfrézačka\nfrézach\nfrézam\nfrézar\nfrézareň\nfrézarka\nfrézárka\nfrézarský\nfrézársky\nfréza\nfrézia\nfrézka\nfrézku\nfrézky\nfrézok\nFrézovací\nfrézovacie\nfrézovacieho\nfrézovacích\nfrézovaciu\nfrézovač\nfrézovačka\nfrézovane\nfrézovania\nfrézovanie\nfrézovaním\nfrézovaný\nfrézovať\nfrézovo\nfrézový\nFRF\nfrflanie\nfrfľať\nfrflať\nfrflavý\nfrfloce\nfrflocú\nfrfloš\nfrfloška\nfrflotajúc\nfrflotal\nfrfotajúc\nfrfotať\nfrfot\nfrfotmi\nfrfravý\nFricka\nFricke\nFricky\nFrička\nFričke\nFričovský\nFrídku\nFridolín\nFridolína\nFridrich\nFridrichovej\nFridrichových\nfrigidita\nfrigidne\nfrigidnosť\nfrigidný\nfrigídny\nfrigorimeter\nfrikando\nfrikasé\nfrikcia\nfrikčných\nfrinault\nFrisianské\nfriško\nfrišný\nfritéza\nfritovací\nfritovačka\nfritovanie\nfritovaním\nfritovaný\nfritovať\nfrivolita\nfrivolne\nfrivolnosť\nfrivolný\nFriza\nFríza\nFrízske\nfrízskeho\nFrízsku\nfrízskym\nfrízskymi\nfrizúr\nfrizúrach\nfrizúram\nfrizúra\nfrk\nfrkan\nfŕkanec\nfrkaný\nfŕkaný\nfŕkať\nfrk\nfrknúť\nfŕkol\nfrkot\nfrkotmi\nfŕľa\nfŕľaš\nfŕľať\nfrmol\nfrňať\nfrnda\nfrndi\nfrndime\nfrndite\nfrndiť\nfrnduľa\nfrndž\nfrndžalka\nfrndžať\nfrndži\nfrndží\nfrndžia\nfrndžiac\nfrndžím\nfrndžíme\nfrndžíš\nfrndžíte\nfrndžme\nfrndžte\nfrng\nfrngať\nfrngnúť\nfrniačik\nfrniak\nfrnk\nfrnkať\nfrňúz\nfrom\nfronda\nfrônt\nfrontálne\nfrontálny\nfronta\nfront\nfrontispice\nfrontispis\nfrontman\nfrontmi\nfrontolýza\nfrontón\nfrontospis\nfrontový\nfrotáž\nfroté\nfrotér\nfrotír\nfrotírovaný\nfrotírovať\nfrotírový\nfŕŕ\nfŕskať\nfrsknúť\nfrugalita\nfruktifikácia\nfruktifikovať\nfruktóz\nfruktózach\nfruktózam\nfruktóza\nfruktózny\nfruktozúria\nfrustrácia\nfrustrovaný\nfrustrujúci\nfrustulácia\nfruštik\nfruštikovať\nfrutarián\nfrýdecko\nfrýdecko-místecký\nfrýdecký\nFrýdečan\nFrýdečanka\nFrýdek\nFrýdka\nFrýdku\nfrygana\nFS\nftíza\nftizeológia\nftp\nfu\nfú\nfuč\nfučanie\nfučaním\nfučať\nfučiaci\nfučka\nFudžisan\nfudžisanský\nfufien\nfufnanie\nfufnať\nfufnavo\nfufnavosť\nfufnavý\nfufna\nfufnú\nfufnúc\nfúg\nfuga\nfúgach\nfúgam\nfugato\nfúga\nfúgový\nfuj\nfujak\nfujár\nfujaráš\nfujara\nfujarista\nfujarka\nfujarôčka\nfujarovať\nfujarový\nfujas\nfujás\nfujavica\nfujazdi\nfujazdime\nfujazdite\nfujazdiť\nfujha\nFuji\nfuk\nfúkací\nfúkač\nfúkačka\nfúkania\nfúkanie\nfúkaním\nfúkaný\nfukár\nfúkať\nfúkavať\nfuk\nfuknúť\nfúknuť\nfukotať\nfuksia\nfukso\nfuksy\nFukušima\nfulár\nfúľať\nFulda\nFulde\nfulgentný\nfulgurácia\nFulla\nfulltextový\nfulminantný\nfulnecký\nfumarín\nfumarola\nfumigant\nfumigátor\nfumigovať\nfuňať\nfundácia\nfundáciu\nfundamentalista\nfundamentalisticky\nfundamentalistický\nfundamentalistka\nfundamentalizmus\nfundamentálne\nfundamentálnosť\nfundamentálny\nfundament\nfundamentmi\nfundom\nfundovane\nfundovanosť\nfundovaný\nFundu\nfundus\nFundy\nfundž\nfundžať\nfunebrák\nfunebráka\nfunebrákov\nfungicíd\nfungicídnych\nfungicídnymi\nfungovanie\nfungovať\nfungujúci\nfunieť\nfunikulus\nfunkcia\nfunkcionál\nfunkcionalistický\nfunkcionalita\nfunkcionalizmu\nfunkcionálna\nfunkcionálne\nfunkcionálneho\nfunkcionálnej\nfunkcionálnu\nfunkcionálny\nfunkcionaloizmus\nfunkcionár\nfunkcionárka\nfunkcionárky\nfunkcionárky\nfunkcionársky\nfunkčne\nfunkčnosťN\nfunkčný\nFunkenschlag\nfunktor\nfunt\nFuntík\nFuntíka\nfuntom\nfuntov\nfuntu\nfunty\nfunus\nfúnus\nfúr\nfúrach\nfúram\nfúra\nfurážka\nfuré\nfurgon\nfuriant\nfuriantsky\nfuriantský\nfúria\nfúrik\nfúrikovať\nfurioso\nfurman\nfurmanči\nfurmančime\nfurmančite\nfurmančiť\nfurmaniť\nfurmanka\nFurmanovom\nFurmanovým\nfurmansky\nfurmanský\nfurniera\nfurnier\nfurníra\nfurnír\nfurníre\nfuror\nfurt\nfurtácky\nfurtáctvach\nfurtáctvam\nfurtáctvo\nfurtáčka\nfurták\nfurtom\nfurunkel\nfurunkla\nfurunkle\nfurunkli\nfurunklový\nfurunkul\nfusak\nfuschi\nfusion\nfustik\nfušera\nfušer\nfušeri\nfušerka\nfušerkina\nfušermi\nfušeroch\nfušerom\nfušerov\nfušerovi\nfušersky\nfušerský\nfušerstvo\nfuškár\nfuškárčení\nfuškárčenia\nfuškárčenie\nfuškárčením\nfuškárčiť\nfuškárka\nfuškárky\nfuškársky\nfuška\nfušovaní\nfušovať\nfut\nfutbal\nfutbalista\nfutbalistka\nfutbalmi\nfutbalovo\nfutbalový\nfutier\nfutierko\nfutierok\nfutrála\nfutrál\nfutráli\nfutrálik\nfutrálmi\nfutrálový\nfutro\nfutrovaného\nFutrovanie\nfutrovať\nfutrový\nfutúr\nfutúrach\nfuturálny\nfutúram\nfuturista\nfuturisticky\nfuturistický\nfuturity\nfuturizmus\nfuturológ\nfuturológia\nfuturológicky\nfuturológický\nfuturologický\nfuturologička\nfuturológička\nfutúrový\nfuturum\nfutúrum\nfúú\nfúza\nfuzáč\nfúzač\nfuzáče\nfúzače\nfuzáň\nfuzáne\nfuzáni\nfuzarióza\nfúzatý\nfúz\nfúzia\nfúzik\nfuzikladióza\nfuzionovať\nfúzisko\nfúzkatý\nfylit\nfylogeneticky\nfylogenetický\nfylogenéza\nfylogénia\nfylotaxa\nfyloxér\nfyloxérach\nfyloxéram\nfyloxéra\nfyndo\nfysis\nfytal\nfytobiológia\nfytocenológia\nfytocenóza\nfytofág\nfytofágia\nfytofarmácia\nfytoftora\nfytofyziológia\nfytogenetika\nfytogénny\nfytogeografia\nfytografia\nfytochémia\nfytokrém\nfytopaleontológia\nfytoparazit\nfytopatológ\nfytopatológia\nfytopatológický\nfytopatologický\nfytopatológička\nfytoplanktón\nfytosféra\nfytoterapia\nfytoterapie\nfytotómia\nfytotoxicita\nfyz\nfýzia\nfyziatria\nfyziatrie\nfyziatriu\nfyzicky\nfyzický\nfyzička\nfyzikálne\nfyzikálnochemický\nfyzikálno-chemický\nfyzikálny\nfyzika\nfyzik\nfyziognómia\nfyziognomický\nfyziognomika\nfyziokracia\nfyziokratizmus\nfyziol\nfyziológ\nfyziológia\nfyziologicky\nfyziologický\nfyziologička\nfyzioterapeut\nfyzioterapeuta\nfyzioterapeuti\nfyzioterapeutom\nfyzioterapeutov\nfyzioterapia\nfyzioterapie\nfyzkultúra\nfyzkultúrne\nFZ\nFZKI\ng\nG\ngá\nGAB\nGaba\nGabal\nGabala\ngabardén\ngabardénový\ngabarit\ngabať\nGabčíkov\nGabčíkova\nGabčíkove\nGabčíkovo\nGabčíkovom\ngabčíkovský\nGabčíkovu\nGabe\nGabika\nGabike\nGabiku\nGabiky\ngabión\nGaboltov\nGabon\nGabončan\nGabončanka\ngabonský\nGaboročan\nGaboročanka\nGaborone\ngaboronský\ngabrá\nGabrielách\nGabrielám\nGabriela\nGabriel\nGabrielinej\nGabrielov\nGábriš\nGábriša\nGábrišom\nGábrišovi\ngabro\nGabro\nGabu\nGabun\ngabún\nGabune\nGabunu\nGaby\ngáč\ngadolínium\ngadžo\ngadžovsky\ngadžovský\nGaelština\nGaelštinské\ngáfor\ngáfrovník\ngáfrový\ngágá\ngá-gá\ngagačka\ngáganie\ngáganím\ngágať\ngag\ngagmi\ngagoch\ngagom\ngágor\ngágorec\ngagotajúc\ngagotať\ngagotavý\ngagot\ngagotmi\ngagov\ngagu\ngagy\ngailei\nGajár\nGajaroch\nGajarom\nGajary\ngajd\ngájd\ngajdách\ngajdám\ngajdami\ngajdičiek\ngajdičky\ngajdoš\nGajdošova\nGajdošovej\nGajdošovho\nGajdošovo\nGajdošovou\nGajdošových\ngajdošský\nGajdová\ngajdovať\nGajdovej\nGajdovou\ngajdy\ngal\ngál\nGál\ngala\nGalac\ngálach\ngalakoncert\ngalakoncertmi\ngalaktický\ngalaktometer\ngalaktorea\ngalaktostáza\ngalaktóza\ngalalit\ngálam\ngalamút\ngalamuta\ngalamutiť\nGalanta\ngalantéria\ngalantérny\ngalantína\ngalantne\ngalantnosť\ngalantný\ngalantský\nGalapág\nGalapágčan\nGalapágčanka\ngalapágsky\nGalapágy\ngalaprogram\ngalaxia\ngála\ngalbavo\ngalbavosť\ngalbavý\nGal\ngalčina\ngalea\ngaléa\ngaleassa\ngaleja\ngalejach\ngalejam\ngalejami\ngaleje\ngalejí\ngalejnícky\ngalejníctvach\ngalejníctvam\ngalejníctvo\ngalejník\ngalejný\ngalenické\nGalenika\ngaleniká\ngalenit\ngaleona\ngaleota\ngaléra\ngalériach\ngaléria\ngalerijný\ngaleriový\ngalériový\ngalérka\ngalgala\ngalgan\ngalganisko\ngalgansky\ngalganský\ngalganstvo\nGalia\ngaliba\nGalícia\nGalícijčan\nGalícijčanka\ngalícijský\ngalicizmus\ngalil\nGalileo\ngalimatiáše\ngalimatiáši\ngalimatiáš\ngalimatiášmi\ngalimatiášoch\ngalimatiášom\ngalimatiášov\ngalimatiášu\nGalina\ngalión\nGaliu\ngálium\ngalizácia\nGalka\nGalkin\nGalku\ngalofil\nGálom\ngalón\ngalónoch\ngalónov\ngalónu\ngalóny\ngalop\ngalopovať\ngaloša\ngaloší\nGalova\nGálová\ngalovanie\nGalovany\nGalove\nGalovej\nGálovej\nGálovi\nGalovia\nGalovo\nGálovou\nGalovu\nGálových\nGalovým\ngalský\nGalus\ngaluska\ngaluskový\ngalvanicky\ngalvanický\ngalvanizácia\ngalvanizačný\ngalvanizmus\ngalvanizovanie\ngalvanizovaný\ngalvanizovať\ngalvanizovňa\ngalvanizovní\ngalvanizujúci\nGalvanom\ngalvanometer\ngalvanometre\ngalvanometrický\ngalvanoplastické\ngalvanoplastickou\ngalvanotaxia\ngalvanoterapia\ngalvanotypia\ngám\ngamadefektoskopia\ngamaglobulín\ngamagrafia\ngamaša\ngamaší\ngama\ngambáč\ngambaňa\ngambaní\ngambatý\ngamba\nGambia\nGambijčan\nGambijčanka\ngambijský\ngambit\ngambitmi\ngamblera\ngambler\ngambleri\ngamblermi\ngambleroch\ngamblerom\ngamblerov\ngamblerovi\ngambling\ngamboš\nGambrinus\ngameboy\ngaméta\ngametangium\ngametofyt\ngametogenéza\ngamofóbia\ngamogónia\ngamón\nGáňa\ngáňať\ngándhizmus\nGangami\nGanga\ngang\nganglia\ngangliá\ngangliách\ngangliám\nganglií\nganglióm\nganglion\nganglión\nganglioplegikum\ngangliový\ngangliu\ngangmi\ngangoch\ngangom\ngangov\ngangréna\ngangrenózny\ngangský\ngangstera\ngangster\ngangsteri\ngangsterizmom\ngangsterizmu\ngangsterizmus\ngangsterka\ngangstermi\ngangsteroch\ngangsterom\ngangsterov\ngangsterovi\ngangsterský\ngangsterstvo\ngangu\ngangy\ngániť\ngánivo\ngánivý\ngánok\ngánovská\nGánovský\ngap\ngaperon\ngaramond\ngarancia\ngarančný\ngarant\ngarantka\ngarantova\ngarantovane\ngarantovanie\ngarantovaný\ngarantovať\ngarantovej\ngarazda\ngarazdiť\ngarazdovať\ngarážach\ngarážam\ngaráž\ngarážmajster\ngarážované\ngarážovaného\ngarážovania\ngarážovanie\ngarážovať\ngarážový\ngarb\ngarbiar\ngarbiareň\ngarbiarenský\ngarbiarka\ngarbiarňach\ngarbiarňam\ngarbiarsky\ngarbiarstvach\ngarbiarstvam\ngarbiarstvo\ngard\ngarda\ngarde\ngardedám\ngardedámach\ngardedámam\ngardedáma\ngardénia\ngarderób\ngarderóbach\ngarderóbam\ngarderóba\ngarderobiera\ngarderobier\ngarderobiérka\ngarderobierka\ngardina\nGardini\ngardista\ngardisticky\ngardistický\ngardový\nGargantua\ngargantuovský\ngargarizovať\ngaribaldista\ngarmond\ngarmondový\ngarnát\ngarníroval\ngarnírovala\ngarnírovali\ngarnírovalo\ngarnírovať\ngarníruj\ngarníruje\ngarnírujem\ngarnírujeme\ngarníruješ\ngarnírujete\ngarnírujme\ngarnírujte\ngarnírujú\ngarnírujúc\ngarnitúr\ngarnitúrach\ngarnitúram\ngarnitúra\ngarnitúrka\ngarnizóna\ngarniža\ngarniží\ngarota\nGarotinho\ngarrigue\ngarson\ngarsón\ngarsoniér\ngarsoniérach\ngarsoniéram\ngarsoniéra\ngarsónka\ngas\ngaser\ngaskonáda\nGaskonec\nGaskonka\nGaskonsko\ngaskonský\ngastarbeitera\ngastarbeiter\ngastarbeiteri\ngastarbeitermi\ngastarbeiteroch\ngastarbeiterom\ngastarbeiterov\ngastarbeiterovi\ngastralgia\ngastrektómia\ngastrický\ngastrín\ngastritída\ngastritis\ngastro\ngastroenteritída\ngastroenterológia\ngastrológia\ngastromegália\ngastronómB\ngastronómia\ngastronomický\ngastronómka\ngastronómovia\ngastropatia\ngastroskop\nGastroskop\ngastroskopia\ngastroskopiu\ngastroskopom\ngastrula\ngastrulácia\ngašpar\nGašpar\ngašparko\ngašparkové\nGašparová\nGašparove\nGašparovej\nGašparovo\ngaštan\ngaštanovo\ngaštanovočervený\ngaštanovohnedý\ngaštanový\ngat\ngaťa\ngate\ngáter\ngatí\ngatiek\ngatky\ngaťový\ngátra\ngátre\ngátri\ngátrov\ngátrových\ngaučať\ngauč\ngaučo\ngaučových\ngaudeamus\ngaudium\ngaudž\ngaudžať\ngaudži\ngaudží\ngaudžia\ngaudžiac\ngaudžím\ngaudžime\ngaudžíme\ngaudžíš\ngaudžite\ngaudžíte\ngaudžme\ngaudžte\ngaucho\ngaullizmus\ngaunera\ngauner\ngaunersky\ngaunerský\ngaunerstvo\ngavalec\ngavaliera\ngavalier\ngavalierskosť\ngavaliersky\ngavalierstvach\ngavalierstvam\ngavalierstvo\ngavdž\ngavdžať\ngavdži\ngavdží\ngavdžia\ngavdžiac\ngavdžím\ngavdžime\ngavdžíme\ngavdžíš\ngavdžite\ngavdžíte\ngavdžme\ngavdžte\ngaviál\ngavota\ngavotte\ngay\ngáz\ngázach\ngázam\nGazan\nGazania\nGazanka\nGaza\ngáza\ngazda\ngazdíček\ngazdíčka\ngazdíčkami\ngazdíčkoch\ngazdíčkom\ngazdíčkov\ngazdíčkovi\ngazdíčkovia\ngazdík\nGazdíkovej\nGazdíkovom\nGazdíkových\ngazdín\ngazdiná\ngazdinách\ngazdinám\ngazdinami\ngazdinámi\ngazdiné\ngazdinej\ngazdinka\ngazdinkinho\ngazdinou\ngazdinský\ngazdinú\ngazdovanie\ngazdovať\ngazdovlivo\ngazdovlivosť\ngazdovlivý\ngazdovsky\ngazdovský\ngazdovstvo\ngazdov\ngazel\ngazela\ngazelí\ngazeľom\ngazeľou\ngazíčkovia\ngazík\ngazolín\ngazolínu\ngazometria\ngázový\ngazský\ngáž\ngážach\ngážam\ngáža\ngáží\ngážový\nGb\nGB\nGbel\nGbeľanoch\nGbeľany\nGbelce\nGbelciach\ngbelianska\ngbelianskej\nGbeliec\nGbeloch\nGbelov\ngbelský\nGbelu\nGbely\nGbiel\nGBP\nGBps\nGBq\nGCM\nGdančan\nGdančanka\nGdansk\ngdanský\nGDI\nGDP\nGdynčan\nGdynčanka\nGdynia\ngdynský\ngebuľa\ngebuzina\ngeckať\nGeča\nGeče\nGeči\ngéčka\ngéčko\ngegne\ngegni\ngegyňa\ngejša\ngejší\nGejza\ngejzír\ngejzírový\ngekon\ngél\ngeleta\ngeletka\ngéli\ngelivácia\ngélmi\nGelnica\nGelnice\nGelnici\ngelnického\ngelnickej\ngelnickí\ngelnickú\ngelnických\ngelnickým\nGelnický\nGelnicou\nGelnicu\ngélový\ngém\ngemácia\ngemanizačný\ngemara\ngema\ngem\ngemelilógia\nGemer\nGemerčan\nGemerčanka\nGemerček\ngemerský\nGemina\ngeminácia\ngemináta\ngemini\nGemini\ngemipária\ngemma\ngemoglyptika\ngemula\ngen\nGena\ngén\ngencián\nGene\ngenealóg\ngenealógia\ngenealogicky\ngenealogický\ngenealogička\ngenefond\ngenekológia\ngenerácia\ngeneračne\ngeneračný\ngenerál\ngenerálie\ngeneralissimus\ngeneralita\ngeneralizácia\ngeneralizačný\ngeneralizovania\ngeneralizovanie\ngeneralizovaný\ngeneralizovať\ngenerálka\ngenerálmajor\ngenerálne\ngenerálny\nGenerálové\ngenerálovho\ngenerálovo\ngenerálplukovník\ngenerálporučík\ngenerálsky\ngeneratívny\ngenerátor\ngenerátorový\ngenerel\ngenerickosť\ngenericky\ngenerický\ngenerikum\ngenerovanie\ngenerovaný\ngenerovať\ngenerozita\ngeneróznosť\ngenerózny\ngenerujúci\ngenesis\ngenet\ngenetickosť\ngeneticky\ngenetický\ngenetička\ngenetika\ngenetik\ngenéz\ngenézach\ngenézam\ngenéza\nGenezis\ngenialít\ngenialita\ngeniálne\ngeniálnosť\ngeniálny\ngenitál\ngenitáliách\ngenitáliám\ngenitáliami\ngenitálie\ngenitálií\ngenitálny\ngenitív\ngenitíve\ngenitívny\ngénius\nGenke\nGenku\ngenmjr\ngenocíd\ngenocídach\ngenocídam\ngenocída\ngenocídny\ngenofond\ngenofor\ngenológia\nGenom\ngenóm\ngenotyp\ngenotypický\nGenovéva\ngénovo\ngénový\ngenpor\ngensal\nGent\nGente\ngentile\ngentilný\ngentleman\ngentlemansky\ngentlemanský\ngentlemanstvo\nGentom\ngentry\nGenty\ngenus\nGenus\ngeobiochémia\ngeobotanika\ngeocentrický\ngeocentrizmus\ngeod\ngeóda\ngeodepresia\ngeodet\ngeodetický\ngeodetka\ngeodézia\ngeodynamika\ngeofág\ngeofágia\ngeofaktor\ngeofáza\ngeofizikálny\ngeofón\ngeofónmi\ngeofyt\ngeofyz\ngeofyzička\ngeofyzikálny\ngeofyzika\ngeofyzik\ngeogr\ngeograf\ngeografia\ngeograficky\ngeografický\ngeografka\ngeografovia\ngeohelmint\ngeochem\ngeochémia\ngeochemický\ngeochronológia\ngeoid\ngeokarpia\ngeokoróna\ngeol\ngeológ\ngeológia\ngeologicky\ngeologický\ngeologička\ngeom\ngeomagnetizmus\ngeomantia\ngeomechanika\ngeometer\ngeometria\ngeometrickosť\ngeometricky\ngeometrický\ngeometrička\ngeometrizmus\ngeomorfológia\ngeomorfológiou\nGeonomické\ngeopatogénny\ngeopoliticky\ngeopolitický\ngeopolitika\ngeopolitike\ngeopolitikov\ngeopolitiku\ngeopolitiky\ngeopotenciál\ngeopsychológia\ngeoreliéf\nGeorg\nGeorge\nGeorgetown\nGeorgetownčan\nGeorgetownčanka\ngeorgetownský\nGeorgia\ngeorgiánska\ngeorgiánske\ngeorgiánsky\nGeorgie\nGeorgii\ngeorgín\nGeorgina\ngeorgínach\ngeorgínam\ngeorgína\ngeorgínový\nGeorgiou\nGeorgiu\nGeorgy\ngeosféra\ngeostacionárny\ngeostrategický\ngeosynklinála\ngeotaxia\nGeotechnika\ngeotechniku\ngeotechniky\ngeotechnológie\ngeotechnológií\ngeotektonika\ngeotermálna\ngeotermálne\ngeotermálneho\ngeotermálnej\ngeotermálnemu\ngeotermálnom\ngeotermálnou\ngeotermálnu\ngeotermálny\ngeotermálnych\ngeotermálnym\ngeotermálnymi\ngeotermia\ngeotermika\ngeotextília\ngeotropizmus\ngeotyp\ngeparda\ngepard\ngepardí\ngeparďom\ngeparďou\ngepardovi\nGeralda\nGeraldine\nGeraltov\ngerber\ngerbera\ngerbier\ngeriater\ngeriatr\ngeriatria\ngeriatrický\ngeriatrička\ngerila\ngerilla\ngerilový\nGerlach\nGerlachova\nGerlachove\ngerlachovský\ngerm\nGermán\ngermanista\ngermanistický\ngermanistika\ngermanistka\ngermánium\ngermanizácia\ngermanizačný\ngermanizmus\ngermanizovanú\ngermanizovať\nGermánka\ngermánsky\ngermánstva\ngermánstvo\ngermicíd\ngerminácia\ngéromé\ngerontofília\ngerontokracia\ngerontológ\ngerontológia\ngerontologický\ngerontologička\ngerontológička\ngeršľa\nGerta\nGertrúd\nGertrúdach\nGertrúdam\nGertrúda\nGerty\ngerundium\ngerundívum\ngescia\ngesčný\ngestácia\ngestagén\ngestaltizmus\ngestáp\ngestapácky\ngestapácky\ngestapák\ngestapo\ngestický\ngestika\ngestikulácia\ngestikulovať\ngesto\ngestor\ngestormi\ngestorsky\ngestorský\ngestóza\ngeto\nGGy\nGhanančan\nGhanančanka\nGhana\nghanský\ngheet\nghetto\nGHz\ngibbsit\ngibon\ngiboní\ngibonovi\nGibraltárčan\nGibraltárčanka\nGibraltár\ngibraltársky\ngibsonka\ngiet\nGiga\ngigahertz\ngigajoule\ngigaňa\ngigantB\ngigantickosť\ngiganticky\ngigantický\ngigantizmom\ngigantizmus\ngigantománia\ngigantománie\ngigantománii\ngigantomániu\ngigantopitek\ngigantský\ngigawatt\ngigolo\nGigolo\nGilbert\nGilberta\nGilbertovi\ngíld\ngilda\ngill\ngiloš\ngilotín\ngilotínach\ngilotínam\ngilotína\ngilotínový\ngin\nginepro\ngingíva\nginko\nGioconda\ngiocoso\ngioiozo\ngips\ngiraltovský\ngirandola\ngirlanda\ngirlandový\ngirondin\ngirondista\ngismondín\nGita\ngitár\ngitara\ngitarista\ngitaristka\ngitarový\ngit\nGitku\ngitmi\ngitovanie\ngitovať\nGiza\nGizel\nGizela\nGizelin\nglacé\nglaciál\nglaciálny\nglaciológia\ngladiátor\ngladiátormi\ngladiátorsky\ngladiátorský\ngladiátorstvo\ngladiola\ngladiolový\nglajch\nglajcha\nglajchšaltovať\nglanc\nglancovať\nglančiť\nglandula\nglaserit\nglasgovský\nGlasgow\nGlasgowčan\nGlasgowčanka\nglasgowský\nglasifikácia\nglasnosť\nglaukóm\nglaukómu\nglazé\nglazovacích\nglazovanie\nglazovaný\nglazovať\nglazúr\nglazúrach\nglazúram\nglazúra\nglazúrovaný\nglazúrovať\nglazúrový\nglejaca\nglejace\nglejaci\nglejaco\nglejacu\nGlejársky\nglejenie\nglejený\nglejiť\nglej\nglejovanie\nglejovaný\nglejovatieť\nglejovitý\nglejovka\nglejový\nglejt\nGlezg\nGlezgu\nglgač\nglgáč\nglgať\nglg\nglgček\nglgmi\nglgnúť\nglgoch\nglgom\nglgov\nglgu\nglgy\nglia\ngliadín\nglied\nglieda\ngliediť\nglisáda\ngliser\nglissando\nglizér\nglo\nglobál\nglobalistika\nglobalizácia\nglobalizačný\nglobálmi\nglobálne\nglobálnosť\nglobálny\nglobetrotter\nglobín\nglobula\nglobulín\nglobulínový\nglóbus\nglóbusový\ngloglo\nglogloglo\nglomerul\nglomerulonefritída\nglomerulus\nglomus\ngloria\nglória\ngloriet\nglorifikácia\nglorifikovanie\nglorifikovaný\nglorifikovať\ngloriola\nglóriu\nglos\nglosár\nglosátor\nglosátorov\nglosa\nglositída\nglosované\nglosovať\nglot\nglotmi\nglotový\nglottis\ngloxínia\nglucín\nglukagón\nglukokortikoid\nglukometer\nglukóz\nglukózach\nglukózam\nglukóza\nglukózový\ngluón\nglutamínu\nglutasol\nglutelín\nglutén\nglutín\nglycerid\nglycerín\nglycerínový\nglycerol\nglycid\nglycín\nglycínia\nglykémia\nglykemický\nglykogén\nglykogénový\nglykolom\nglykolov\nglykolu\nglykoly\nglykolýza\nglykosúria\nglyptika\nglyptotéka\nGM\ngniavení\ngniavenia\ngniavenom\ngniavienie\ngniaviť\ngniavivý\nGniezňan\nGniezňanka\ngniezniansky\nGniezno\ngnóm\ngnómach\ngnómam\ngnóma\nGNOME\ngnómickosť\ngnómicky\ngnómický\ngnómičnosť\ngnómon\ngnostik\ngnóza\ngnozeológia\ngnozeologicky\ngnozeológicky\ngnozeológický\ngnozeologický\nGNP\nGNU\ngobelín\ngobelínový\nGobi\ngobijský\nGočaltovo\nGočaltovský\nGočovo\ngodécia\ngoeleta\ngofier\ngofra\ngofrový\ngój\nGój\ngójim\ngól\ngolem\ngolet\ngolf\ngolfiek\ngolfky\ngolfovo\ngolfový\ngolfský\nGolgota\ngolgotský\nGolianov\nGolianova\nGolianová\nGolianove\nGolianovo\ngolianovského\nGolianovu\ngoliard\ngoliáš\ngoliášovský\ngoliášsky\ngoliášsky\ngolierik\ngolier\ngoliermi\ngolierový\ngólmi\ngólovo\ngólový\ngolubci\ngomasio\ngombíček\ngombíčka\ngombíčkami\ngombičkár\ngombičkáreň\ngombičkárka\ngombičkársky\ngombičkárstvo\ngombička\ngombíčkoch\ngombíčkom\ngombíčkov\ngombičkovitý\ngombičkový\ngombíčkový\ngombíčku\ngombíčky\ngombikár\ngombikáreň\ngombikárka\ngombikársky\ngombikárstvo\ngombík\nGombíkove\ngombíkovitý\ngombíkový\nGomora\ngonáda\ngonadektómia\ngonadotropín\ngonartritída\ngonartróza\ngondola\ngondoliér\ngondoliera\ngondoliéra\ngondolier\ngondoliersky\ngondoliersky\nGondová\ngonfalón\ngong\ngongmi\ngongoch\nGongol\nGongola\nGongolu\ngongom\ngongorizmus\ngongov\ngongu\ngongy\ngonídia\ngoniometer\ngoniometria\ngoniometrický\ngonoblast\ngonochorizmus\ngonokok\ngonorea\ngonorhea\ngonozóm\ngoodwill\nGoogle\ngópuram\ngoral\ngorálky\ngoralský\ngorbuša\ngordický\ngordonsetter\ngorgónsky\ngorgonský\nGorgóny\ngorgonzola\ngorgonzolou\nGorica\ngorický\nGoričan\nGoričanka\ngorila\ngorilí\ngoriľom\ngoriľou\ngorkovsky\ngorkovský\ngorodiek\nGorodkov\ngorodky\ngösch\ngoslarit\ngospel\ngót\nGöteborg\nGöteborgčan\nGöteborgčanka\ngöteborgčanský\ngothajskej\ngoticky\ngotický\ngotika\nGottwaldov\ngottwaldovci\nGottwaldove\ngottwaldovskej\ngottwaldovských\ngottwaldovským\ngouda\ngourde\ngourmand\ngourmet\ngovernment\nGP\nGPa\nGPL\nGPRS\nGPS\ngr\nGR\nGrác\nGraca\nGrace\ngrácia\ngracilný\ngraciozita\ngraciózne\ngracióznosť\ngraciózny\ngraciózo\ngrackať\ngradácia\ngradačný\ngrád\ngrader\ngradienta\ngradient\ngradientový\ngradológia\ngradoval\ngradovala\ngradovali\ngradovalo\ngradované\ngradovanie\ngradovať\ngrádový\ngraduácia\ngraduácie\ngraduáciu\ngraduačný\ngraduál\ngraduála\ngradualizmus\ngraduálne\ngraduálny\ngraduálnym\ngraduje\ngradujú\ngraduovala\ngraduovane\ngraduovanosť\ngraduovaný\ngraduovať\ngradus\ngrádus\ngrafasténia\ngraf\ngrafém\ngrafémach\ngrafémam\ngraféma\ngraffiti\ngraficky\ngrafický\ngrafička\ngrafika\ngrafik\ngrafikon\ngrafikovu\ngrafit\ngrafitista\ngrafitistka\ngrafitizácia\ngrafitmi\ngrafitový\ngrafognózia\ngrafológ\ngrafológia\ngrafologicky\ngrafologický\ngrafologička\ngrafoman\ngrafománia\ngrafospazmus\ngrafový\ngrafpad\ngraham\ngrahamový\ngracht\ngrajciarik\ngrajciar\ngrajciarmi\ngrajciarový\ngrál\nGrál\nGrálom\nGrálu\ngramatickosť\ngramaticky\ngramatický\ngramatik\ngramatika\ngramážach\ngramážam\ngramáž\ngram\ngrambľavieť\ngrambľavo\ngrambľavosť\ngrambľavý\ngramofón\ngramofónový\ngramoplatňa\ngramoprenosky\ngramorádií\ngramorádio\ngramotne\ngramotnosť\ngramotný\ngramový\ngrampiánsky\nGrampiány\ngrana\nGranaďan\nGranaďanka\nGranada\ngranadský\ngranát\ngranátik\ngranátit\ngranátka\ngranátkový\ngranátmi\ngranátnik\ngranátomet\ngranátomety\ngranátovník\ngranátovníku\ngranátovníky\ngranátový\ngrand\nGrandhotel\nGrandhoteli\ngrandhotelmi\nGrandhotelom\nGrandhotelu\ngrandhotely\ngrandioso\ngrandiozita\ngrandiózne\ngrandióznosť\ngrandiózny\ngrandský\ngrandslamový\ngranit\ngranitizácia\ngranitmi\ngranitoid\ngranitový\ngrant\ngrantmi\ngrantový\ngranulácia\ngranulačný\ngranulátor\ngranula\ngranulit\ngranulocyt\ngranulóm\ngranulometrie\ngranulovanie\ngranulovaný\ngranulovať\ngranulový\ngranulóza\ngráp\ngrapa\ngrapefruit\ngrapefruitmi\ngrapefruitový\ngrata\ngratias\ngratifikácia\ngratinovanie\ngrátis\ngratulácia\ngratulačný\ngratulant\ngratulantka\ngratulantský\ngratulovať\ngrave\ngravér\ngravettien\ngravidita\ngravidnosť\ngravidný\ngravimeter\ngravimetria\ngravimetrický\ngravírovací\ngravírovanie\ngravírovaný\ngravírovať\ngravisféra\ngravitácia\ngravitačne\ngravitačno\ngravitačný\ngravitíno\ngravitón\ngravitovať\ngravúra\ngraya\ngray\ngrayi\ngrázel\ngrazioso\ngrázla\ngrázlami\ngrázloch\ngrázlom\ngrázlov\ngrázlovi\ngrcanie\ngrcať\ngrckať\nGRD\ngréc\ngréckokat\ngréckokatolícky\ngréckokatolíčka\ngréckokatolík\nGrécko\ngréckorímsky\ngréckorímsky\ngrécky\ngrécky\ngréčtin\ngréčtinách\ngréčtinám\ngréčtinami\ngréčtina\ngreenhorn\ngreenpeace\ngreenset\nGreenwichan\nGreenwichanka\nGreenwich\ngreenwichský\nGreenwichy\nGreg\nGregora\nGregor\ngregoriánsky\ngregoriánsky\nGregorka\nGregorku\nGregormi\nGregoroch\nGregorom\nGregorov\nGregorova\nGregorovej\nGregorovi\nGregorovia\nGregorovou\nGregorových\nGregorovým\nGregoru\nGregory\ngrejdera\ngrejder\ngrejderi\ngrejderový\nGrék\nGrékyňa\ngremiála\ngremiálka\ngrémiálny\ngremiálny\ngrémiový\ngrémium\nGrenada\nGrenadčan\nGrenadčanka\ngrenadín\nGrenadín\ngrenadína\nGrenadínach\nGrenadínam\nGrenadíny\ngrenadír\ngrenadský\nGrenobľan\nGrenoble\nGrenobli\nGrenoblianka\ngrenobliansky\nGrenoblu\ngrep\ngrepový\ngrešľa\nGréta\ngrg\ngrganie\ngrgať\ngrgnúť\nGribov\nGribove\ngrif\ngrilážach\ngrilážam\ngriláž\ngrilážový\ngril\ngrilmi\ngrilovane\ngrilovanieN\ngrilovaný\ngrilovať\ngrilový\ngrimás\ngrimasa\ngriňa\ngrindélia\ngringo\ngriotka\ngríska\ngrit\ngrizlyami\ngrizlyho\ngrizly\ngrizlym\ngrizlymu\ngrizlyovia\ngrizzly\ngrman\ngrmane\ngrmanu\ngrmany\ngrňa\ngro\ngrobian\ngrobianí\ngrobianím\ngrobianíme\ngrobianíš\ngrobianíte\ngrobianiť\ngrobianka\ngrobiansky\ngrobiansky\ngrobiánstva\ngrobianstvach\ngrobianstvam\ngrobianstvo\nGrodna\nGrodne\nGrodno\ngróf\ngrófka\nGrófkini\ngrófkinými\ngrófov\ngrófsky\ngrófsky\ngrófstvach\ngrófstvam\ngrófstvo\ngrog\ngroggy\ngrogy\nGrónčan\nGrónčanka\nGrónsko\ngrónsky\ngros\ngroša\ngroše\ngroši\ngrošík\ngroš\ngrošmi\ngrošoch\ngrošom\ngrošov\ngrošovaný\ngrošový\ngrošu\ngrota\ngrotesk\ngroteska\ngroteskne\ngrotesknosť\ngroteskný\ngrotta\ngroup\ngrúliť\ngrúňa\nGrundig\ngrúne\ngrunge\ngrúni\nGrúni\ngrúnik\ngrúň\ngrúňmi\ngrúňoch\ngrúňom\ngrúňov\ngrunta\ngrunt\ngruntmi\ngruntovania\ngruntovanie\ngruntovať\ngruntovný\ngrúňu\ngrúp\ngrupa\ngrupovaní\ngrupovania\ngrupovanie\ngrupovať\ngruppensex\ngruviera\ngruz\ngruzínčina\nGruzínec\nGruzínka\nGruzínsko\ngruzínsky\ngruzínsky\ngryf\nGSM\nGSv\nGT\nGuadeloupe\nguajava\nguáno\nguaraní\nGuatemala\nGuatemalčan\nGuatemalčanka\nguatemalský\nGuayana\nGuayane\ngúb\nguba\ngubernátor\ngubernátormi\ngubernátorský\nguberniálny\ngubernia\ngubernský\nGubin\ngúč\nguča\ngučavý\ngučí\ngučka\ngudrónov\nGudróny\nguerilla\nGUI\nguidon\nguilder\nguilloche\nGuinea\nGuinejčan\nGuinejčanka\nGuinejsko\nguinejský\nguinnessovský\ngula\ngulag\ngulagmi\ngulagoch\ngulagom\ngulagov\ngulagu\ngulagy\ngúľanie\nguláša\nguľáša\nguláše\nguľáše\nguláši\nguľáši\ngulášik\nguľášik\nguláš\nguľáš\ngulášmi\nguľášmi\ngulášoch\nguľášoch\ngulášom\nguľášom\ngulášov\nguľášov\ngulášový\nguľášový\ngulášu\nguľášu\nguľata\nguľatieť\nguľatina\nguľatinový\nguľatiť\nguľato\nguľatosť\nguľatučký\ngúľať\nguľatý\nguľa\ngulden\nguldene\nguldenmi\nguldenoch\nguldenom\nguldenov\nguldenu\nguldeny\ngulí\ngúli\ngúlia\nguliar\nguliarka\nguliarsky\nguliarsky\nGuliver\nguľkať\nguľka\nguľkovitý\nguľkový\nguľôčka\nguľôčkový\nguľomet\nguľometník\nguľometný\nguľovačka\nguľovanie\nguľovať\nguľovito\nguľovitý\nguľovnica\nguľový\ngum\ngúm\ngumák\ngumáku\ngumáky\ngumár\ngumáreň\ngumárensky\ngumárenský\ngumárka\ngumárňach\nGumárňach\ngumárňam\ngumársky\ngumárstvach\ngumárstvam\ngumárstvo\nguma\ngumený\ngumička\ngumipuška\ngumka\ngumolit\ngumolitmi\ngumolitový\ngumované\ngumovania\nGumovanie\ngumovať\ngumovitý\ngumovo\ngumový\ngumóza\ngunár\ngunáre\ngunárí\ngundža\ngundžavý\ngundží\ngundžovitý\ngupka\ngurážach\ngurážam\nguráž\ngurážny\ngurmán\ngurmánsky\ngurmánsky\ngurmánstvach\ngurmánstvam\ngurmánstvo\ngurmet\nguru\ngúst\nGustava\nGustáv\nGustave\nGustína\ngustiózne\ngustióznosť\ngustiózny\ngustírovať\ngusto\ngustometer\ngustometria\ngutácia\ngutaperča\nguttae\nguvernantka\nguvernantského\nguvernér\nGuvernérova\nguvernérove\nguvernérovej\nguvernérovho\nGuvernérovo\nguvernérovom\nguvernérových\nguvernérsky\nGuyana\nGuyančan\nGuyančanka\nGuyanec\nGuyanka\nguyanský\nGvardián\ngvaše\ngvaši\ngvaš\ngvašmi\ngvašoch\ngvašom\ngvašov\ngvašový\ngvašu\nGWb\nGWh\nGy\ngýč\ngýčovite\ngýčovito\ngýčovitosť\ngýčovitý\nGýčovo\ngýčový\ngymghána\ngymnasta\ngymnastický\ngymnastika\ngymnastka\ngymnaziálny\ngymnazista\ngymnazistka\ngymnázium\ngynandria\ngynandromorf\ngynekofóbia\ngynekokracia\ngynekológ\ngynekológia\ngynekologicky\ngynekologický\ngynekologička\ngynekománia\ngynekomastia\ngynekospermia\ngynofóbia\ngynogenéza\ngyps\ngypsofilný\ngypsomilka\ngypsový\ngyroida\ngyrolit\ngyromantia\ngyrometer\ngyros\ngyroskop\ngyroskopom\ngyroskopy\nh\nH\nha\nhá\nháá\nHaag\nHaagčan\nHaagčanka\nhaagsky\nhaagský\nháb\nHába\nhabadej\nhábach\nhábam\nhábami\nhabán\nhabanéra\nhabánka\nHabánovej\nhabánsky\nhabarka\nhabarkovať\nhabať\nhabdala\nHabeši\nhabilitácia\nhabilitačný\nhabilitovať\nhabisko\nhábit\nhabitácia\nhabitat\nhabit\nhabitmi\nhabituácia\nhabitualita\nhabituálny\nhabitué\nhabitus\nhábkach\nhábkam\nhabkať\nhabkavo\nhabkavý\nhabkom\nhábky\nhablitácia\nhábmi\nhabnúť\nhábočiek\nhábočky\nháboch\nhábom\nHábom\nhábov\nHabovka\nHabovke\nHabsburg\nhabsburgovec\nHabsburgovec\nHabsburgovia\nhabsburgovský\nhabsburgský\nhabsburský\nHábu\nhabúci\nHabura\nháby\nHace\nhacienda\nhackera\nhacker\nhackeri\nhackermi\nhackeroch\nhackerom\nhackerov\nhackerovi\nhačať\nHačava\nHačave\nhačavský\nHačavu\nHačavy\nháčik\nháčikovo\nháčikový\nháčiť\nhačkanie\nhačkať\nháčko\nháčkov\nháčkovacíN\nháčkovanie\nháčkovaný\nháčkovať\nháčkovka\nháčky\nhačnúť\nháďa\nHadač\nHadača\nhádač\nhádačka\nHadačovej\nHádačovej\nHadačovou\nhádačstva\nhadál\nhádam\nhádaní\nhádanie\nhádaním\nhádaniu\nhádankár\nhádankárka\nhádankársky\nhádanka\nháďaťá\nháďatiek\nháďatko\nhádať\nhádavať\nhádavo\nhádavosť\nhádavý\nhádencami\nhádence\nhádencoch\nhádencom\nhádeniec\nhádes\nHádes\nhadi\nhadica\nhadicový\nhadička\nhadí\nhadik\nhadík\nhádik\nhadíkovi\nHadinca\nHadinec\nhadísk\nhadisko\nhadistý\nhadiť\nhadíth\nhadito\nhaditý\nhádka\nhad\nhaďom\nhaďou\nhadova\nHadová\nHadovce\nhadove\nHádove\nHadovej\nhadovite\nhadovito\nhadovitý\nhadovka\nhadovo\nHadovou\nhadovu\nhadovým\nhadróm\nhadróny\nHadušovský\nhádzanár\nhádzanárka\nhádzanársky\nhádzaná\nhádzania\nhádzanie\nhádzaním\nhádzaniu\nhádzaný\nhádzať\nhadž\nhadži\nhádžu\nhádžuc\nhádžuci\nhaf\nhaff\nHaff\nháfiz\nHafnia\nhafnium\nhafriť\nhagada\nhagiografia\nHágoch\nHágy\nhah\nháh\nhaha\nha-ha\nhahá\nhahahá\nhahó\nhahoj\nhahot\nhahotať\nhahou\nhach\nHaifan\nHaifanka\nHaifa\nhaifský\nHaiťan\nHaiťanka\nHaiti\nhaitský\nhaj\nhaja\nhajaj\nhajáj\nhajajáj\nhajať\nhajčiar\nhajda\nHajdáka\nhajdákať\nHajdarábad\nHajdarábadčan\nHajdarábadčanka\nhajdarábadský\nhajde\nhajdúch\nHajdúchovej\nhajduk\nHajduk\nHajduka\nhajdúsiť\nhajdúsky\nhajdúsky\nhajdúšiť\nhajdy\nhájené\nhájenie\nhajenkať\nhájených\nhájiček\nhájička\nhájičkami\nhájičkoch\nhájičkom\nhájičkov\nhájičku\nhájičky\nhájik\nhajinkať\nhájiť\nháj\nhajkať\nHájkom\nHájkov\nHajnáčka\nHájnice\nhájnický\nhájnictvo\nhájničiť\nhájnička\nhájnik\nHájnikova\nhájnikovej\nHájniky\nhajno\nHajný\nhájovňa\nhájovní\nhájový\nhajs\nHajská\nHájske\nHájskej\nHájskom\nhajtman\nHajtmanovej\nhajtmanovmu\nhajtmanský\nhajtmanstvo\nHajtovka\nhaju\nhajušenky\nhajuškať\nhajušky\nhajzel\nhajzeľB\nhajzla\nhajzľa\nhajzlami\nhajzľami\nhajzle\nhajzloch\nhajzľoch\nhajzlom\nhajzľom\nhajzlov\nhajzľov\nhajzlovi\nhajzľovi\nhajzlu\nhajzľu\nHakata\nhák\nhakera\nhaker\nhakeri\nhakermi\nhakeroch\nhakerom\nhakerov\nhakerovi\nHakima\nhákliť\nháklivo\nháklivosť\nháklivý\nhakmi\nhakoch\nhakom\nhakov\nhákovanie\nhákovať\nhákovite\nhákovito\nhákovitý\nhákovnica\nhákový\nhaky\nháky\nhaĺ\nhál\nhalabala\nhalabut\nhalácia\nHalač\nhalačiť\nhalacha\nhalákať\nhalali\nhalapartňa\nhalapartní\nhalászlé\nhalaškovať\nhala\nháld\nhalda\nHaldin\nhaldina\nhaldoval\nhaldovaného\nhalduje\nhaleluja\nHalenár\nHalenára\nHalenárskej\nhalena\nhalengať\nhaleniek\nhalenový\nhalf\nhalftime\nhalfvolej\nhaliace\nhaliacom\nhaliacu\nhalibut\nHaličan\nHaličanka\nHalič\nhaličsky\nhaličský\nhalienka\nhalierik\nhalier\nhaliermi\nhaliernik\nhaliernika\nhaliernikmi\nhaliernikoch\nHaliernikom\nhaliernikov\nhalierniky\nhalierový\nHalina\nHalinou\nhalit\nhaliť\nHalka\nhálka\nhalma\nHalma\nHalmu\nhaló\nhalobaktéria\nhalobiont\nhaloefekt\nhalofilný\nhalofóbny\nhalofyt\nhalogenácia\nhalogén\nhalogenéza\nhalogenid\nhalogénovaný\nhalogénový\nhalogénuhľovodíkov\nhalogény\nhalo\nhalomorfný\nhalopelit\nhalotan\nhalovce\nhalový\nhalštatský\nhalt\nhalucinácia\nhalucinačný\nhalucinogén\nhalucinogénny\nhalucinovať\nhaluška\nhaluškový\nhaluz\nhaluzie\nhaluzina\nhalúzka\nham\nHama\nhamada\nhamak\nhamaka\nhamal\nhambalok\nhambálok\nHamburčan\nHamburčanka\nHamburg\nhamburgera\nhamburger\nhamburgeri\nhamburgerový\nhamburský\nhamerleska\nhamkať\nhamletovská\nhamletovské\nhamletovskej\nhamletovskou\nhamletovskú\nhamman\nHámora\nhámor\nhámorský\nhamovač\nhamovať\nhamovka\nhamovkár\nhamovník\nhampshire\nhámrik\nHámu\nHamza\nHamzu\nHan\nhán\nHán\nhanácky\nhanácky\nHanáčka\nhanáčtina\nHanák\nHanákovej\nHanákovho\nHanákovu\nHanákových\nHaná\nhana\nHana\nhánb\nhanbách\nhanbám\nhanbami\nhanba\nhanbenia\nhanbi\nhanbiaci\nhanbime\nhanbite\nhanbiť\nhanblivo\nhanblivosť\nhanblivý\nhandár\nhandel\nhandicap\nhandicapovaný\nhandicapovať\nHandla\nhandle\nhandli\nhandliar\nhandliara\nhandliari\nhandliarom\nhandliarov\nhandlom\nhandlov\nHandlová\nhandlovania\nhandlovanie\nhandlovaním\nhandlovať\nHandlové\nHandlovej\nhandlovský\nHandlovú\nHandlových\nhandlu\nhandluje\nhandlujeme\nhandmade\nhandrár\nhandrárka\nhandrársky\nhandra\nhandrbulčín\nhandrbulčinách\nhandrbulčinám\nhandrbulčinami\nhandrbulčina\nhandrička\nhandrkovanie\nhandrkovať\nhandroš\nhandrový\nhandžár\nhanebne\nhanebnosť\nhanebný\nhanený\nhangár\nhangármi\nhangárovanie\nhangáruje\nhangárujú\nHaniek\nHanigovský\nHanin\nHanine\nHaniska\nHaniske\nHanisky\nhaniť\nHanka\nhánka\nHanke\nHankin\nHankou\nHanková\nHankovú\nHanku\nHanky\nhanlivo\nhanlivý\nHannover\nhannoverská\nhannoverské\nhannoverského\nhannoverskej\nhannoverskom\nhannoverskou\nhannoverskú\nhannoverským\nHannoverský\nHannovri\nhanobenie\nhanobených\nhanobeným\nhanobiteľ\nhanobiteľka\nhanobiť\nhanoblivý\nhanobný\nHanojčan\nHanojčanka\nHanoj\nhanojský\nhanopis\nhanopisec\nHanover\nhanoverskej\nHanoverskom\nhantec\nhantírka\nhantýrka\nhantýrke\nhantýrkou\nHanuša\nHanuška\nhanušovského\nhanušovskej\nhanušovskom\nHanušovský\nhanza\nhanzový\nhapalonychia\nhapať\nhapčí\nhapkal\nhaplografia\nhaploídia\nhaplológia\nhappening\nhappy\nhappyendový\nhaproval\nhaprovala\nhaprovali\nhaprovalo\nhaprovať\nhapruj\nhapruje\nhaprujem\nhaprujeme\nhapruješ\nhaprujete\nhaprujme\nhaprujte\nhaprujú\nhaprujúc\nhapták\nhaptalgia\nhaptický\nhaptotropizmus\nharabúrd\nharaburda\nharaburdie\nharaburdiť\nharakiri\nHaramia\nHaramiu\nharanga\nHararčan\nHararčanka\nHarare\nhararský\nHaras\nharasiť\nharassment\nharašenia\nharašenie\nharašením\nharašiť\nhárať\nharavár\nharavarách\nharavarám\nharavarami\nharavara\nharcoval\nharcovať\nharcovníci\nharcovník\nharcovníka\nharcovníkom\nharcovníkov\nhárček\nharddisk\nhardvér\nhardvéri\nhardvérmi\nhardvéroch\nhardvérom\nhardvérov\nhardvérový\nhardvéru\nhardvéry\nhardwardovo\nhardwardový\nhardware\nhardwarová\nhárem\nháremový\nhárf\nharfa\nharfista\nharfistka\nharfový\nHarhaj\nharinga\nharing\nharingmi\nharingoch\nharingom\nharingov\nharingovi\nharingový\nharingy\nharkať\nhárkový\nharlekýn\nharlekýnsky\nHarmanca\nHarmancami\nHarmance\nHarmanci\nHarmancu\nharmanček\nharmančekový\nHarmanec\nharmanecký\nharmatanec\nharmónia\nharmonickosť\nharmonicky\nharmonický\nharmonik\nharmonikár\nharmonikárka\nharmonikársky\nharmonika\nharmonikovo\nharmonikový\nharmónium\nharmonizácia\nharmonizačný\nharmonizovania\nharmonizovanie\nharmonizovaním\nharmonizovaný\nharmonizovať\nharmonizujúceho\nharmonogram\nhárok\nharovať\nharpagon\nHarpia\nharpsichord\nharpún\nharpúnach\nharpúnam\nharpúna\nharpunovať\nharpúnovať\nharpyách\nharpyám\nharpya\nharpyí\nhartley\nhartusiť\nhartuš\nharuľa\nharuľový\nharusiť\nharuspex\nharuspícium\nharušiť\nhasák\nhasenie\nhasený\nhasiaci\nhasič\nhasička\nhasičský\nhasičstvo\nhasidiel\nhasiť\nhaskala\nhasnúca\nhasnúci\nhasnúť\nhaspier\nhaspra\nhasprička\nhasprový\nhastroš\nhašé\nhášimovské\nhašiša\nhašiše\nhašiši\nhašiš\nhašišmi\nhašišoch\nhašišom\nhašišov\nhašišový\nhašišu\nhašlerka\nhašter\nhašterení\nhašterenia\nhašterenie\nhašterením\nhaštereniu\nhašteriť\nhašterivo\nhašterivosť\nhašterivý\nhašterte\nhatá\nHataj\nhatal\nHatala\nHatalov\nHatalove\nhať\nhatený\nhatéria\nhathajóga\nhatchback\nhatiť\nhatlanina\nhatlavo\nhatlavosť\nhatlavý\nHatné\nhaťový\nhattrick\nhausbót\nhausnumero\nhaussa\nhautreliéf\nhav\nhavaj\nHavajčan\nHavajčanka\nHavajec\nHavaj\nHavajka\nHavajsky\nhavajský\nhaván\nhavana\nHavana\nHavančan\nHavančanka\nHavanec\nhavanský\nhavária\nhavarijne\nhavarijný\nhavarovaný\nhavarovať\nhavarti\nháv\nháveď\nhavelok\nhav-hav\nhaviar\nHaviarovou\nhaviarsky\nhaviarstvach\nhaviarstvam\nhaviarstvo\nhavkáčL\nhavkať\nHavke\nhavkla\nhavko\nhavlíčkobrodské\nhavlíčkobrodského\nhavlíčkobrodskej\nhavlíčkobrodskom\nhavlíčkobrodských\nHavlíčkobrodský\nhavmi\nhavo\nHavranec\nHavrani\nHavranice\nhavraní\nhavran\nhavraňom\nhavraňou\nHavranova\nHavranovej\nhavranovo\nhazard\nhazardér\nhazardérka\nhazardérsky\nhazardérstvach\nhazardérstvam\nhazardérstvo\nhazardne\nhazardnosť\nhazardný\nhazardovaní\nhazardovania\nhazardovanie\nhazardovaním\nhazardovaniu\nhazardovať\nHazucha\nHažín\nHažlín\nHažlíne\nHB\nHBO\nHBr\nHC\nHCl\nHD\nHDD\nHDL\nHDP\nhe\nHE\nhé\nheadline\nheavymetalovej\nhebedo\nhebied\nhebko\nhebkosť\nhebký\nhebr\nhebreistika\nHebrej\nhebrejčín\nhebrejčinách\nhebrejčinám\nhebrejčinami\nhebrejčina\nHebrejka\nhebrejsky\nhebrejský\nHebron\nHebrončan\nHebrončanka\nhebronský\nhebučko\nhebučký\nhebunko\nhebunký\nhec\nhecoval\nhecovala\nhecovali\nhecovalo\nhecovania\nhecovať\nhecuj\nhecuje\nhecujem\nhecujeme\nhecuješ\nhecujete\nhecujme\nhecujte\nhecujú\nhecujúc\nHečka\nHeda\nhedonický\nhedonikmi\nhedonista\nhedonistický\nhedonistka\nhedonizmus\nHedou\nHedva\nHedve\nHedvíg\nHedviga\nHedvou\nHedvu\nHedvy\nHedy\nhedžra\nHeéj\nHefaistos\nhegajúci\nheganie\nhegať\nhegelovstvo\nhegemón\nhegemónia\nhegemónnosť\nhegemónny\nhegľovať\nhegnutie\nhegnúť\nhegomónnosť\nhegomónny\nhehe\nhe-he\nhehé\nhehej\nhehéj\nheika\nhej\nhejk\nhejsa\nhejveru\nhejže\nhekať\nhekatomba\nhektár\nhektármi\nhektárový\nhektickosť\nhekticky\nhektický\nhektografia\nhektoliter\nhektolitrový\nhektopascal\nHelada\nHeladin\nHelén\nHelena\nHelenina\nHelenine\nHeleninej\nHeleninými\nhelenistického\nhelénizmus\nhelenizovať\nhelénsky\nhelénsky\nHelga\nHelge\nheliája\nheliant\nHeliant\nheliem\nheligón\nheligónka\nheligónový\nheligónsky\nhelikoid\nhelikoptér\nhelikoptérach\nhelikoptéram\nhelikoptéra\nheling\nheliocentrický\nheliocentrizmus\nheliofilný\nheliofóbia\nheliofóbny\nheliofyt\nheliogeofyzika\nheliograf\nheliografia\nheliografický\nheliolatria\nhelión\nheliosféra\nhelioskop\nheliotaxia\nheliotechnika\nhelioterapia\nheliotrop\nheliotropín\nheliotropizmus\nheliovar\nhéliový\nheliport\nhélium\nhelkom\nHelku\nHellas\nHellove\nhelm\nhelma\nhelmica\nhelmička\nhelmint\nhelmintológ\nhelmintológia\nhelmintologický\nhelmintologička\nhelmintosporióza\nhelmintóza\nhelmintozoonóza\nhelofyt\nhelóta\nhélót\nHeľpa\nHeľpe\nHeľpu\nHeľpy\nHelsinčan\nHelsinčanka\nHelsínk\nHelsinki\nHelsinky\nHelsinsky\nhelsinský\nhelvet\nhelvét\nHelvétov\nHelvétska\nHelvétske\nhelvétskeho\nHelvétskej\nhelvétsky\nhelvétskych\nhelvétskym\nhem\nhém\nhemaglutinácia\nhemangioblastóm\nhemangióm\nhemastóza\nhemateméza\nhematín\nhematit\nhematitmi\nhematitový\nhematofág\nhematogénny\nhematokrit\nhematológ\nhematológia\nhematologický\nhematologička\nhematom\nhematóm\nhematomyélia\nhematón\nhematopoéza\nhematoxylín\nhematúria\nhemendex\nhemeralopia\nhemerofilný\nhemeroid\nhemeroidový\nhemiachromatopsia\nhemialgia\nhemianestézia\nhemiatrofia\nhemicyklus\nhemifáza\nhemikrania\nhemimorfit\nhemín\nhemiparazit\nhemiparéza\nhemiplégia\nhemisfér\nhemisférach\nhemisféram\nhemisféra\nhemisférický\nhemoblastóm\nhemoblastóza\nhemocefalus\nhemodialýza\nhemodynamika\nhemofília\nhemofilický\nhemofílie\nhemofílii\nhemofíliou\nhemofíliu\nhemoglobín\nhemoglobínový\nhemoglobinúria\nhemogram\nhemochróm\nhemokoagulácia\nhemolymfa\nhemolýza\nhemolyzín\nhemopoéza\nhemoptoe\nhemoragia\nhemoroidmi\nhemoroidný\nhemoroidoch\nhemoroidom\nhemoroidov\nhemoroidový\nhemoroidy\nhemostatický\nhemostatikum\nhemostázy\nhemoterapia\nhemoterapiu\nhemotoxín\nhemotoxínový\nhemp\nhemženia\nhemženie\nhemži\nhemžime\nhemžite\nhemžiť\nhen\nhena\nhencovský\nhendikep\nhendikepovaný\nhendikepovať\nhenleinovci\nhenna\nheno\nHenrieta\nHenrich\nhenry\nhenryho\nhenrym\nhenrymu\nhenryovka\nhentá\nhentaký\nhentam\nhentej\nhenten\nhentí\nhentie\nhento\nhentoho\nhentom\nhentomu\nhentou\nhentú\nhentých\nhentým\nhentými\nheny\nheorín\nhepa\nhepar\nHepar\nheparín\nheparínov\nheparíny\nhepatický\nhepatikum\nhepatitída\nhepatitíde\nhepatitídou\nhepatitídu\nhepatitídy\nhepatocyt\nhepatolit\nhepatológia\nhepodermis\nheptagón\nheptalín\nheptán\nheptánu\nHéra\nHerakles\nheraklit\nheraklitmi\nheraklitový\nherald\nheraldický\nheraldik\nheraldika\nheraldikmi\nheraldikom\nherba\nherbár\nherbármi\nherbeľovať\nherberg\nherbergmi\nherbergoch\nherbergom\nherbergov\nherbergu\nherbergy\nherbicíd\nherbicídny\nherbivor\nHercegovina\nHercegovinka\nhercegovinský\nhercog\nhercov\nhercýn\nhercýnske\nhercýnsky\nherec\nhereckejší\nherecky\nherecký\nherectvo\nherečka\nherečkin\nHerečkina\nherečkinho\nheredita\nhereditárny\nheretik\nheretológia\nheréz\nherézach\nherézam\nheréza\nhergot\nheritabilita\nherkules\nHerkules\nherkulesovský\nherkulmi\nherkulovský\nHerľanoch\nHerľany\nHerlianska\nHerlianskej\nHerliansky\nhermafrodický\nhermafroditizmus\nhermafrodit\nhermafroditný\nHermanovský\nhermelín\nhermelínový\nhermeneutický\nhermeneutika\nHermes\nHermesova\nHermesovej\nHermesovu\nhermetickosť\nhermeticky\nhermetický\nhermetizácia\nhermetizáciu\nhermetizmus\nHermín\nHermínach\nHermínam\nHermína\nhermovka\nHermu\nHermy\nherňa\nhernia\nhernis\nherný\nHerodes\nheroickosť\nheroicky\nheroický\nheroín\nheroinista\nheroinistka\nheroizmus\nheroizovať\nherold\nHerold\nHerolda\nHeroldom\nHeroldovi\nhéros\nherostratizmus\nherpes\nherpetický\nherpetofauna\nherpetológia\nHerta\nhertníckej\nHertník\nHertníka\nHertníku\nHertou\nHertu\nhertz\nheruistický\nHervartov\nheslár\nhesláre\nhesláru\nheslo\nheslovite\nheslovito\nheslovitosť\nheslovitý\nheslový\nhessenský\nheš\nhešta\nhet\nhetéra\nheterocyklický\nheterofág\nheterofázia\nheterofória\nheterofýlia\nheterogamia\nheterogenéza\nheterogenita\nheterogenitu\nheterogenity\nheterogénnosť\nheterogénny\nheterogónia\nheterochromozóm\nheterokarpia\nheterokinéza\nheteroklíza\nheterolália\nheterolit\nheterolýza\nheteromorfia\nheteromorfný\nheteronómia\nheteronómny\nheteronýmia\nheteronymia\nheterosexualita\nheterosexuálny\nheterosféra\nheterosugescia\nheterosugescie\nheterosylabický\nheterotrofia\nheterotropia\nheteróza\nheteróznym\nheterozygot\nhetéru\nhetrik\nheuréka\nheuristicka\nheuristicke\nheuristicki\nheuristicku\nheuristicky\nheuristický\nheuristika\nheurizmus\nhevera\nhever\nheveri\nheverovať\nHewlett\nhexadecimálny\nhexadekán\nhexaéder\nhexagón\nhexagonálne\nhexalín\nhexameron\nhexameter\nhexametrický\nhexametrový\nhexán\nhexánu\nhexenšus\nhexogén\nhexogénu\nhezitácia\nHFC\nHH\nhi\nhí\nhiát\nhiátmi\nhiátový\nhibernácia\nhibernačný\nhibernovať\nhickory\nhidalgo\nhidrodermia\nhidróza\nhidžra\nhierarchia\nhierarchickosť\nhierarchicky\nhierarchický\nhierarchizácia\nhierarchizácie\nhierarchizácii\nhierarchizáciou\nhierarchizáciu\nhierarchizmus\nhierarchizovať\nhierarchov\nhierarchovia\nhieratický\nhieroglyf\nhieroglyfický\nhieromantia\nhieronym\nhighway\nhíha\nhihi\nhihihi\nhihúňať\nhíí\nhije\nhijo\nhijó\nhíkať\nhíkavý\nhíkol\nhikory\nHIL\nHíld\nHilda\nHildegarda\nHildegardou\nHIM\nHimalájach\nHimalájami\nHimaláje\nHimalájí\nhimalájsky\nHimalaya\nhimelhergot\nhimlhergot\nhínajána\nhind\nHind\nhindčín\nhindčinách\nhindčinám\nhindčinami\nhindčina\nHindka\nHindovia\nhindský\nhinduistický\nhinduizmus\nhintov\nhio\nhió\nhip\nHIP\nhipický\nhipíčka\nhipík\nhipodróm\nhipológia\nhipoterapia\nhippie\nhippies\nhippokratický\nhiragana\nHirošima\nHirošime\nHirošimou\nhirošimský\nHirošimu\nHirošimy\nhirsutizmus\nhis\nHispánia\nHispánie\nhispanista\nhispanistický\nhispanistika\nhispanistka\nHispániu\nhispánske\nhispánskemu\nhispánski\nhispánskom\nhispánskou\nhispánsky\nhispánskych\nhispánskym\nhiss\nhist\nhistamín\nhistamínový\nhisterky\nhistiocytóm\nhistofyziológia\nhistogenéza\nhistografia\nhistografii\nhistogram\nhistológ\nhistológia\nhistologický\nhistolýza\nhistón\nhistoplazmóza\nhistória\nhistoricko\nhistorickomaterialistický\nhistoricko-porovnávací\nhistorickosť\nhistoricky\nhistorický\nhistorička\nhistorik\nhistorikov\nhistoriograf\nhistoriografia\nhistoriografický\nhistorizácia\nhistorizmus\nhistorizovať\nhistorka\nhistrión\nhit\nHitler\nhitlerovský\nhitmaker\nhitmi\nhitparád\nhitparádach\nhitparádam\nhitparáda\nHIV\nhja\nhjaj\nhjáj\nHK\nHKM\nhl\nhľa\nHláčik\nHláčika\nhláč\nhľaď\nhľadač\nhľadače\nhľadáčik\nhľadačka\nhľadačský\nhľadačstvo\nhľadaču\nhľadajúceho\nhľadajúcej\nhľadajúcemu\nhľadajúci\nhľadajúcich\nhľadajúcim\nhľadajúcu\nhľadane\nhľadanie\nhľadaný\nhľadať\nhľadávať\nhlad\nhladene\nhľadenie\nhladenie\nhladený\nhľadiace\nhľadiaci\nhladiaci\nhladiareň\nhladiarňach\nhladiarňam\nhladič\nhladička\nhladičovi\nhladidiev\nhladidlo\nhľadieť\nhladievať\nhľadievať\nhladina\nhladinky\nhladinový\nhľadísk\nhľadisko\nhladiť\nhladkajúcemu\nhladkajúci\nhladkajúcich\nhladkajúcim\nhladkaní\nhladkania\nhladkanie\nhladkať\nhladkávať\nhladko\nhladkosť\nhladký\nhladne\nhladno\nhladný\nhladomor\nhladomorňa\nhladomorný\nhladoš\nhladošský\nhladovaní\nhladovania\nhladovanie\nhladovaním\nhladovaniu\nhladovať\nhladovkár\nhladovkárka\nhladovka\nhladový\nhladšej\nhladší\nhladšia\nhladšie\nhladšieho\nhladšiemu\nhladších\nhladším\nhladšími\nhladšiu\nhladšom\nhladšou\nHľadteže\nhľaďteže\nHľaďteže\nhladučko\nhladučký\nhladujúci\nhladulinko\nhladulinký\nhladunko\nhladunký\nhladuško\nhladušký\nhľaďže\nhlahol\nhlaholika\nhlaholiť\nhlaholivý\nhlaholský\nhlaliský\nhlasá\nhlásajúci\nhlásanie\nhlásaný\nhlásateľ\nhlásatelien\nhlásateľka\nhlásateľňa\nhlásateľský\nhlásať\nhlas\nhlásenie\nhlásenke\nhlásenky\nhlásený\nhlásiaci\nhlásič\nhlásiče\nhlásiču\nhlásievať\nhlasísk\nhlasisko\nhlasista\nhlasistický\nhlasite\nhlasito\nhlasitosť\nhlásiť\nhlasitý\nhlasivka\nhlasivkový\nhláska\nhláskoch\nhláskom\nhláskoslovie\nhláskoslovne\nhláskoslovný\nhláskov\nhláskovania\nhláskovanie\nhláskovaný\nhláskovať\nhláskove\nhláskovo\nhláskový\nhlasne\nhlasnejšie\nhlasnejšíF\nhlásnický\nhlásnik\nhlasno\nhlasnosť\nhlasný\nhlásny\nhlaso\nhlások\nhlasovací\nhlasované\nhlasovanie\nhlasovať\nhlasovo\nhlasový\nhlasujúci\nhlasým\nhláška\nhláškami\nhlášku\nhlášky\nhlášok\nhlav\nhláv\nhlaváči\nhlaváčik\nHlaváčikova\nhlaváčiku\nhlaváč\nHlaváčovej\nhlavaj\nhlavaňa\nhlaváň\nhlavaní\nhlaváni\nhlavate\nhlavátka\nhlavato\nhlavatosť\nhlavatý\nhlava\nhlaveň\nhlavica\nhlavicový\nhlavička\nhlavičkovať\nhlavičkový\nhlávik\nHlavinka\nhlavísk\nhlavisko\nhlávka\nhlávkový\nhlavne\nhlavnica\nhlavnička\nHlavno\nhlavňové\nhlavný\nhlavo\nhlávočka\nhlavohruď\nhlavohrudný\nhlavolam\nhlavonožecL\nhlavový\nhlavybôľ\nhlavybôľom\nhlavybôľu\nhlavý\nhĺbajúci\nhĺbaní\nhĺbania\nhĺbanie\nhĺbaním\nhĺbaniu\nhĺbať\nhĺbava\nhĺbavo\nhĺbavosť\nhĺbavý\nhĺbená\nhĺbení\nhĺbenia\nhĺbenie\nhĺbením\nhĺbenou\nhĺbenú\nhĺbených\nhĺbeným\nhĺbenými\nhĺbiace\nhĺbiaci\nhĺbič\nhĺbiče\nhĺbiču\nhĺbidlo\nhlbín\nhlbina\nhlbinne\nhlbinný\nhĺbiť\nhĺbka\nhĺbkomera\nhĺbkomer\nhlbkomyseľný\nhĺbkotlač\nhĺbkotlačový\nhĺbkovo\nhĺbkový\nhlbockej\nhlbočina\nhlbočizno\nhlbočizný\nhĺbok\nhlbokánsky\nhlbokánsky\nhlboko\nhlbokomorské\nhlbokomorských\nhlbokomyseľne\nhlbokomyseľnosť\nhlbokomyseľný\nhlboký\nhlbší\nhlesnúť\nhliadka\nhliadkovací\nhliadkoval\nhliadkovala\nhliadkovali\nhliadkovalo\nhliadkovaní\nhliadkovanie\nhliadkovaním\nhliadkovať\nhliadkový\nhliadkuj\nhliadkuje\nhliadkujem\nhliadkujeme\nhliadkuješ\nhliadkujete\nhliadkujme\nhliadkujte\nhliadkujú\nhliadkujúc\nhličitan\nhlien\nhlienistý\nhlienitý\nhlienky\nhlienovitý\nhlienový\nhlín\nhlinastý\nhlina\nhlinenák\nhlinený\nhliníckych\nhlinikáreň\nhlinikárňach\nhlinikárňam\nhliník\nhliníkovane\nhliníkove\nhliníkovo\nhliníkový\nhlinísk\nhlinisko\nhlinistý\nhlinitan\nhlinitanov\nhlinitanového\nhlinitanovým\nhlinito\nhlinitopiesočnatý\nhlinitý\nhlinka\nHlinkovo\nHlinkovský\nhlinkový\nhlinový\nhlinský\nhlísta\nhlístovo\nhlístový\nhlív\nhliva\nhlivieť\nhlobiť\nhlodajúcemu\nhlodajúci\nhlodajúcich\nhlodajúcim\nhlodania\nhlodanie\nhlodať\nhlodávať\nhlodavce\nhlodavec\nhlodavý\nhloh\nhlohmi\nhlohoch\nhlohom\nhlohov\nHlohovca\nHlohovci\nHlohovcom\nHlohovcu\nHlohovec\nhlohovská\nhlohovského\nhlohovskej\nhlohovskou\nhlohovskú\nHlohovský\nhlohový\nhlohu\nhlohy\nhlohyňa\nhlohyňový\nhlový\nHloža\nhložie\nhložina\nhlôžka\nHložu\nhltací\nhltač\nhltan\nhltaní\nhltaním\nhltanový\nhltaným\nhltať\nhltavec\nhltavo\nhltavosť\nhltavý\nhlt\nhltkom\nhltmi\nhltoň\nhltoš\nhlúba\nhlúb\nhlúbik\nhlubocký\nhlúbovitý\nhlúbový\nhlucnemý\nhlúčik\nhlúčkoch\nhlučne\nhlučno\nhlučnosť\nhlučný\nhlúčok\nhluchaňa\nhlucháň\nhlucháne\nhlucháni\nhluchánik\nhluchaní\nhluchání\nhlucháň\nhluchaňom\nhlucháňou\nHlucháňovej\nhluchastý\nhluchavka\nhluchejšej\nhluchejší\nhluchejšia\nhluchejšie\nhluchejšieho\nhluchejšiemu\nhluchejších\nhluchejším\nhluchejšími\nhluchejšiu\nhluchejšom\nhluchejšou\nhluchnúť\nhlucho\nhluchonemo\nhluchonemosť\nhluchonemý\nhluchosť\nhluchôt\nhluchotách\nhluchotám\nhluchotami\nhluchota\nhluchý\nhluk\nhlukový\nhlupácky\nhlupáctvach\nhlupáctvam\nhlupáctvo\nhlupáčik\nhlupák\nhlupaňa\nhlupaní\nhlúpejší\nhlúpnuť\nhlúposť\nhlúpot\nhlúpota\nhlupstvo\nhlúpučko\nhlúpučký\nhlúpy\nhlušina\nhlušinový\nhlušiť\nhľúz\nhľúza\nhľuzavý\nhľuza\nhľuznatý\nhľuzovite\nhľuzovito\nhľuzovitosť\nhľuzovitý\nhľuzovka\nhľuzový\nhm\nhmatateľne\nhmatateľnosť\nhmatateľný\nhmatať\nhmat\nhmatkať\nhmatkom\nhmatmi\nhmatník\nhmatníku\nhmatníky\nhmatnúť\nhmatový\nhmhm\nhmiel\nHMIT\nhmkať\nhmlách\nhmlám\nhmla\nhmlisto\nhmlistosť\nhmlistý\nhmliť\nhmlovina\nhmlovite\nhmlovito\nhmlovitosť\nhmlovitý\nhmlovka\nhmlový\nhmôt\nhmotár\nhmotárka\nhmotársky\nhmotárstvach\nhmotárstvam\nhmotárstvo\nhmota\nhmotnatosť\nhmotne\nhmotno\nhmotnoprávna\nhmotnoprávne\nhmotnoprávneho\nhmotnoprávnej\nhmotnoprávnemu\nhmotnoprávnou\nhmotnoprávnu\nhmotnoprávny\nhmotnoprávnych\nhmotnoprávnymi\nhmotnosť\nhmotnostne\nhmotnostný\nhmotný\nhmoždinka\nhmoždinky\nhmýrenie\nhmýriť\nhmyz\nhmyzí\nhmyzím\nhmyzové\nhmyzovej\nhmyzových\nhmyzožravecL\nhmyzožravý\nHN\nhnací\nhnačka\nhnačkový\nhnadrbulčina\nhnania\nhnanie\nhnaný\nhnát\nhnátmi\nhnátový\nhnať\nhneda\nhnedák\nhnedáky\nhnedasto\nhnedastý\nhnedavý\nhneď\nhnedeľ\nhnedeľmi\nhnedeľoch\nhnedeľom\nhnedeľov\nhnedeľu\nhnedkasto\nhnedkastý\nhnedkavý\nhnedky\nhnednutie\nhnednúť\nhnedo\nhnedočervený\nhnedočervený\nhnedo-červený\nhnedočierny\nhnedo-čierny\nhnedočierný\nhnedooký\nhnedosť\nhnedouhoľ\nhnedouhoľný\nhnedouľný\nhnedovlasý\nhnedozelený\nhnedo-zelený\nhnedozemnej\nhnedožltý\nhnedučko\nhnedučký\nhnedý\nhnetací\nhnetač\nhnetačovi\nhnetený\nhnetieme\nhnetiem\nhnetie\nhnetieš\nhnetiete\nhneťme\nhneť\nhneťte\nhnetúc\nhnetú\nhnevajúcich\nhnevanie\nhnevať\nhnev\nhneve\nhnevkať\nhnevlivec\nhnevlivo\nhnevlivosť\nhnevlivý\nhnevníčka\nhnevník\nhnevný\nHnezdne\nHnezdnom\nhníd\nHnidák\nhnida\nhniesť\nhnietla\nhnietli\nhnietlo\nhnietol\nhniezd\nhniezdenia\nhniezdenie\nhniezdievať\nhniezdiť\nhniezdny\nhniezdočiek\nhniezdočko\nhniezdo\nhniezdový\nhnijúci\nhniľačami\nhniľač\nhniľače\nhniľačí\nhniľačiach\nhniľačiam\nhniľačou\nHnilčík\nHnilčíka\nHnilec\nhnilejšej\nhnilejší\nhnilejšia\nhnilejšie\nhnilejšieho\nhnilejšiemu\nhnilejších\nhnilejším\nhnilejšími\nhnilejšiu\nhnilejšom\nhnilejšou\nhniliak\nHnilica\nHnilicu\nhnilička\nhnilôb\nhnilobách\nhnilobám\nhnilobami\nhniloba\nhnilobný\nhniloš\nhnilý\nhnisajúci\nhnisanie\nhnisať\nhnisavosť\nhnisavý\nhnis\nhnisový\nhnitie\nhnitím\nhnitiu\nhniť\nhnitý\nhnojár\nhnojená\nhnojené\nhnojení\nhnojenia\nhnojenie\nhnojením\nhnojených\nhnojísk\nhnojisko\nhnojiť\nhnojív\nhnojival\nhnojivaly\nhnojivo\nhnojivový\nhnojivý\nhnoj\nhnojnica\nhnojnicový\nhnojničný\nHnojníka\nhnojný\nhnojovica\nhnojovicový\nhnojovka\nhnojovkový\nhnojový\nhnul\nhnula\nhnuli\nhnulo\nHňup\nHňupa\nhnusák\nhnus\nhnusiť\nhnusne\nhnusník\nhnusný\nhnusôb\nhnusobách\nhnusobám\nhnusobami\nhnusoba\nhnusota\nhnusote\nhnusoty\nhnúšťanského\nhnúšťanskému\nhnuté\nhnuteľnosťN\nhnuteľný\nhnutie\nhnuťový\nhnúť\nhó\nhobby\nhobeľ\nhobier\nhobjista\nhobľa\nhobľami\nhoble\nhobli\nhoblica\nhoblíček\nhoblík\nhoblíkový\nhoblina\nhoblinka\nhobľoch\nhobľom\nhobľov\nhobľovací\nhobľovačka\nhobľované\nhobľovaného\nhobľovania\nhobľovanie\nhobľovať\nhobľu\nhobojista\nhobojistka\nhoboj\nhobojový\nhobrách\nhobrám\nhobrami\nhobra\nhobrovo\nhobrový\nhoc\nhocako\nhocaký\nhocčím\nhocčo\nhocčoho\nhocčom\nhocčomu\nhoci\nhocičím\nhocičo\nhocičoho\nhocičom\nhocičomu\nhocijak\nhocijako\nhocijaký\nhocikade\nhocikam\nhocikde\nhocikedy\nhocikoho\nhocikoľké\nhocikoľkí\nhocikoľko\nhocikom\nhocikomu\nhocikto\nhociktorý\nhocikým\nhockade\nhockam\nhockde\nhockedy\nhockoho\nhockoľké\nhockoľkí\nhockoľko\nhockom\nhockomu\nhockto\nhocktorý\nhockým\nhod\nhodegetika\nhodegéza\nHodejov\nHodejove\nhoden\nhodenia\nhodenie\nhodením\nhodeniu\nhodený\nhodiaci\nhodinár\nhodinárka\nhodinársky\nhodinárstvach\nhodinárstvam\nhodinárstvo\nhodina\nhodinka\nhodinkovo\nhodinkový\nhodinky\nHodinove\nhodinovka\nhodinovo\nhodinový\nhodiny\nhodiť\nhodlať\nhodna\nhodne\nhodne\nhodno\nhodnostár\nhodnostárka\nhodnostársky\nhodnosťN\nhodnostný\nhodnota\nhodnotene\nhodnotenie\nhodnotený\nhodnoti\nhodnotiaci\nhodnotiteľ\nhodnotiť\nhodnotne\nhodnotnosť\nhodnotný\nhodnototvorné\nhodnototvorného\nhodnototvorných\nhodnotovo\nhodnotový\nhodnoverne\nhodnovernosť\nhodnoverný\nhodny\nhodný\nhodograf\nhodochrona\nhodokvas\nHodonín\nHodonína\nHodoníne\nHodonínom\nHodonínska\nhodonínske\nhodonínskeho\nhodonínskej\nhodonínskemu\nHodonínski\nHodonínskom\nhodonínskou\nHodonínsku\nhodonínsky\nhodonínskych\nhodonínskym\nhodovanie\nhodovať\nhodovnícky\nhodovníčka\nhodovník\nhodovný\nhodový\nHodruša\nHodruše\nHodruši\nHodrušou\nhodrušský\nHodrušu\nhodváb\nhodvábky\nhodvábnejší\nhodvábnický\nhodvábnictvo\nhodvábnik\nhodvábnikovi\nhodvábny\nhody\nhodža\nHodža\nHodžova\nHodžovej\nHodžovho\nHodžovi\nHodžovo\nHodžovom\nHodžovým\nHodžu\nhofiera\nhofier\nhofierka\nhofierok\nhofiersky\nhofierstvo\nhoh\nhóha\nhoho\nhohó\nhohój\nhohoľ\nhoholka\nhochštaplera\nhochštapler\nhochštapleri\nhochštaplerka\nhochštaplermi\nhochštapleroch\nhochštaplerom\nhochštaplerov\nhochštaplerovi\nhochštaplersky\nhochštaplerský\nhochštaplerstvo\nhojacou\nhojda\nhojdací\nhojdačka\nhojdajúcimi\nhojdania\nhojdanie\nhojdať\nhojdavo\nhojdavý\nHojdu\nhojení\nhojenia\nhojenie\nhojiť\nhojivo\nhojivý\nhojne\nhojnejší\nhojno\nhojnosť\nhojný\nhojoj\nhojój\nhojže\nhokejista\nhokejistický\nhokejistka\nhokej\nhokejka\nhokejkový\nhokejovo\nhokejový\nhokerlík\nhoko\nhókus\nhókuspókos\nhokuspókus\nhókuspókus\nhókus-pókus\nhôľ\nhola\nholahó\nHolanďan\nHolanďana\nholandčín\nholandčinách\nholandčinám\nholandčinami\nholandčina\nHolandsko\nholandsky\nholandský\nholáne\nholáni\nholánik\nholániky\nholáň\nHolanová\nHolanove\nHoláňovej\nHoláňovho\nHolanovo\nHoláňovo\nHolanovom\nHoláňovu\nhoľa\nholba\nholbách\nholbami\nHolbu\nholby\nhold\nholding\nholdingmi\nholdingoch\nholdingom\nholdingov\nholdingový\nholdingu\nholdingy\nholdovať\nholeň\nholender\nholengať\nholenie\nholenný\nholený\nholiaci\nholickou\nHolický\nholíča\nHolíčan\nHolíčanka\nholíčatiek\nholíčatko\nholič\nHolíč\nholička\nholičský\nholíčsky\nholičstvo\nholievať\nholina\nholisticky\nholistický\nHoliša\nholiť\nhôliť\nholizmus\nHollywood\nhollywoodska\nhollywoodske\nHollywoodské\nhollywoodskeho\nhollywoodskej\nhollywoodski\nhollywoodskom\nhollywoodskou\nhollywoodsku\nhollywoodskú\nhollywoodsky\nhollywoodskych\nhollywoodských\nhollywoodskym\nhollywoodskymi\nhôľme\nholmium\nholne\nholni\nhôľny\nholo\nholobradý\nholobriadka\nholobriadkami\nholobriadkoch\nholobriadkom\nholobriadkov\nholobriadkovi\nholobriadok\nholocaust\nholocén\nholofrastický\nhologamia\nholografia\nholografický\nhologram\nhologramov\nholohlavosť\nholohlavý\nholohumnica\nholokarst\nholokaust\nholokaustmi\nholokrký\nHolomkovej\nholomráz\nholomraze\nholomrazmi\nholomrazoch\nholomrazom\nholomrazov\nholomrazu\nholomrazy\nholopupkáč\nholopupkár\nholorub\nholorubmi\nholorubom\nholorubov\nholoruby\nholos\nholota\nholotopia\nholotyp\nholovlasý\nholport\nholt\nhôľte\nholúbä\nholubací\nholúbäcí\nholubacina\nholubár\nholubársky\nholubárstvach\nholubárstvam\nholubárstvo\nholúbät\nholúbätiek\nholúbätko\nholub\nholúbencami\nholúbence\nholúbencoch\nholúbencom\nholúbeniec\nholubiar\nholubiarsky\nholubiarstvach\nholubiarstvam\nholubiarstvo\nholubica\nholubičí\nholubička\nholubienka\nholubí\nholubinec\nholúbka\nholúbkami\nholúbkoch\nholúbkom\nholúbkov\nholúbkovať\nholúbkovi\nholúbky\nholubník\nholúbok\nholuby\nholučičko\nholučičký\nholučko\nholučký\nholulinko\nholulinký\nHolumnica\nHolumnice\nHolumnici\nholunko\nholunký\nholý\nhomár\nhomáre\nhomárový\nhomebanking\nhomeless\nhomeomorfia\nhomeopat\nhomeopata\nhomeopatia\nhomeopaticky\nhomeopatický\nhomeopatikum\nhomeopatov\nhomeostatický\nhomeostáza\nHomér\nhomérovský\nhomicidium\nhomilet\nhomiletika\nhomília\nhominidi\nhominizácia\nhomo\nhomocentrický\nhomofónia\nhomofónne\nhomofónny\nhomofýlia\nhomogamia\nhomogenita\nhomogenizácia\nhomogenizačný\nhomogenizátor\nhomogenizátorov\nhomogenizovala\nhomogenizovaný\nhomogenizuje\nhomogenizujú\nhomogénnosť\nhomogénny\nhomochrónia\nhomoioméria\nhomoiotermia\nhomokarpia\nhomôľ\nHomola\nhomoľa\nhomolí\nhomôľka\nhomológ\nhomologácia\nhomológia\nhomologický\nhomologizácia\nhomológny\nhomologovala\nhomologovaný\nhomologovať\nhomologujú\nhomoľovite\nhomoľovito\nhomoľovitý\nhomoľový\nHomolu\nhomolýza\nhomomorfia\nhomomorfizmus\nhomomorfný\nhomomorfóza\nhomoným\nhomonýmia\nhomonymia\nhomonymický\nhomonymita\nhomonymný\nhomonymum\nhomopauza\nhomosexuál\nhomosexualita\nhomosexuálnosť\nhomosexuálny\nhomosféra\nhomotalizmus\nhomotécia\nhomotypia\nhomozygotný\nhompáľať\nhomrať\nhomunkulus\nho\nhon\nhonbách\nhonbám\nhonbami\nhonba\nHonce\nhoncovanie\nhoncovať\nHonduras\nhonduraský\nhonec\nhonelnícky\nhonelník\nhonetný\nHongkong\nhongkonská\nhoniacich\nhoniacou\nhonieb\nhoniť\nhonobiť\nHonolulu\nhonorabilis\nhonorácia\nhonorárik\nhonorár\nhonorármi\nhonorárny\nhonorárový\nhonor\nhonore\nhonorovania\nhonorovanie\nhonorovaním\nhonorovaniu\nhonorovaný\nhonorovať\nhonosenie\nhonosiť\nhonosne\nhonosnosť\nhonosný\nhonový\nHonšú\nHont\nHontianska\nHontianske\nhontianskeho\nhontianskej\nHontianski\nhontiansky\nHontianskych\nHontianskym\nHontianskymi\nhonvéd\nhonvédsky\nhóó\nhop\nHopak\nhoper\nhopi\nhopkanie\nhopkať\nhopkavo\nhopkavý\nhopkovať\nhopsa\nhopsá\nhopsalo\nhopsasa\nhopy\nhor\nhóra\nHorácius\nhorák\nhoráková\nHorákové\nHorákovej\nHorákovú\nHorákových\nHorákovým\nhoral\nhorali\nhoraliek\nHoralka\nHoralke\nHoralku\nHoralky\nhoralom\nhoralov\nhoralský\nhorár\nhoráreň\nhorárka\nhorárňach\nhorárňam\nhorárova\nhorárove\nhorárovej\nhorárovo\nhorárovu\nhorársky\nhorárstvach\nhorárstvam\nhorárstvo\nhora\nhorcový\nhorčica\nhorčicový\nhorčičný\nhorčík\nhorčíkovo\nhorčíkový\nhorčina\nhôrd\nhorda\nhore\nhorec\nhorečnato\nhorečnatý\nHorehroní\nHorehronia\nHorehronie\nHorehroním\nHorehroniu\nhorehronský\nhorekovania\nhorekovať\nHorelica\nHorelice\nHorelici\nHorelický\nHorelicu\nhorenie\nhorenos\nhorenosý\nhorentný\nhorený\nhoreuvedený\nhorevyššie\nhoreznačky\nhoreznak\nhoreznakom\nhoriaci\nhoribilne\nhoribilný\nhorič\nhorička\nhorieť\nhorievať\nhorizontál\nhorizontálach\nhorizontálam\nhorizontála\nhorizontalizmus\nhorizontálny\nhorizont\nhorizontmi\nhorizontovo\nhorizontový\nhorkasto\nhorkastý\nhôrka\nhorknúť\nhorko\nhorkokrvný\nhorkosť\nhorkýtam\nhorký\nhorkýže\nhorkýžetam\nhorľavina\nhorľavosť\nhorľavý\nhorlenie\nhorliteľ\nhorliteľka\nhorliť\nhorlivec\nhorlivo\nhorlivosť\nhorlivý\nhormonálny\nhormón\nhormónový\nhorn\nHorn\nhorna\nHorna\nHorňa\nHornád\nHornádska\nHornádskeho\nHornádskej\nhornádsky\nHorňan\nHorňana\nHorňany\nhornatina\nhornatosť\nhornatý\nhorne\nhorniacky\nhorniačka\nhorniak\nhorník\nhorníky\nhornina\nhorninový\nhornohričovskom\nHornoliptovského\nhornolužický\nhornonitrianska\nHornonitrianske\nhornonitrianskeho\nhornonitrianskej\nHornonitrianski\nhornonitrianskom\nhornonitriansku\nHornonitriansky\nHornonitrianskych\nHornonitrianskym\nHornonitrianskymi\nhornooravská\nhornooravské\nhornooravskej\nHornooravskí\nhornooravskom\nhornooravskú\nhornooravskými\nhornorakúsky\nHornorakúšan\nHornorakúšanka\nHornosliezskej\nHornosúčan\nHornosúčanka\nhornosúčanský\nhornosúčsky\nhornotal\nhornouhorský\nHornov\nHornu\nhorný\nhôrny\nhorol\nhorolezec\nhorolezecký\nhorolezectvo\nhorolezkyňa\nhorológium\nhoropis\nhoropisný\nhoror\nhororový\nhoroskop\nhorotvorný\nhorovanie\nHorovský\nhorský\nhorstvo\nHorša\nhoršenie\nhoršeniu\nhorši\nhoršime\nhorší\nhoršite\nhoršiť\nhortenzia\nHortenzia\nhortenziový\nhorthyovské\nhorthyovskej\nhorthyovskému\nhorthyovských\nhorthyovským\nhortikultúra\nhortológia\nhortus\nhorúce\nhorúcejšíFN\nhorúci\nhorúco\nhorúcovod\nhorúcovode\nhorúcovodmi\nhorúcovodom\nhorúcovodov\nhorúcovodu\nhorúcovody\nhorúčava\nhorúčka\nhorúčkovite\nhorúčkovito\nhorúčkovitosť\nhorúčkovitý\nhorúčkový\nhorúčosť\nHOS\nhosana\nhosanna\nhosiäjaký\nhosp\nhospic\nhospitácia\nhospital\nhospitalita\nhospitalizácia\nhospitalizačný\nhospitalizovania\nhospitalizovanie\nhospitalizovaním\nhospitalizovaný\nhospitalizovať\nhospitovať\nhospôd\nhospoda\nhospodách\nhospodár\nhospodárene\nhospodárenie\nhospodárený\nhospodáriť\nhospodárka\nhospodárnosť\nhospodárnostné\nhospodárny\nhospodárova\nHospodárovej\nHospodárovou\nhospodárových\nhospodárskejší\nhospodársko-sociálny\nhospodársko-spoločenský\nhospodárskosprávny\nhospodársko-technický\nhospodársky\nhospodársky\nhospodárstvach\nhospodárstvam\nhospodárstvo\nhospode\nHospodin\nHospodine\nHospodinova\nHospodinove\nHospodinovu\nhospody\nhosť\nHoste\nhostel\nhosteným\nhosteska\nhosti\nHostiach\nhostia\nhostiek\nhostilita\nhostime\nhostín\nhostina\nhostinec\nhostinka\nHostinné\nHostinného\nHostinnom\nhostinský\nhostite\nhostiteľ\nhostiteľka\nhostiteľský\nhostiť\nhostka\nHosťová\nhosťovanie\nhosťovať\nhosťovský\nhosťujúci\nHostýn\nHostýna\nHostýnom\nhot\nhota\nhotela\nhotel\nhoteliera\nhotelier\nhotelierka\nhoteliérsky\nhoteliersky\nhotelík\nhotelmi\nhotelovo\nhotelový\nhotent\nhotentot\nhotentotčín\nhotentotčinách\nhotentotčinám\nhotentotčinami\nhotentotčina\nhotentotský\nhotlájn\nHotmail\nhotovanie\nhotovať\nhotoviť\nhotovo\nhotovosť\nhotovostne\nhotovostný\nhotový\nhou\nhoumlesák\nhouseboat\nhoustonská\nhoustonského\nhoustonskej\nhoustonskú\nhoustonských\nHoustonský\nhovädo\nhovadsky\nhovädsky\nhovadský\nhovädský\nhovädzí\nhovädzina\nhovädzinka\nhoviad\nhoviadko\nhoviadok\nhovien\nhovienko\nhovienok\nhovieť\nhovkať\nhovnivál\nhovno\nhovor\nhovorca\nhovorcovský\nhovorenia\nhovorenie\nhovorením\nhovorený\nhovoriaci\nhovoridiel\nhovoridlá\nhovoridlách\nhovoridlám\nhovoridlami\nhovorievať\nhovoriť\nhovorkyňa\nhovorňa\nhovorný\nhovorovo\nhovorovosť\nhovorový\nhovorte\nhow\nhowgh\nHôžďalov\nHP\nhr\nHR\nhŕ\nhrabáč\nhrabačka\nhrabáčka\nhrabanice\nhrabanie\nhrabaním\nhrabať\nhrabavý\nhrab\nHrabec\nHrabičov\nhrabieľ\nhrabina\nhrabivec\nhrabivo\nhrabivosť\nhrabivý\nhrabkanie\nhrabkať\nHrabkov\nhrable\nhrablí\nhrablíc\nhrablice\nhrabličiek\nhrabličky\nhrablísk\nhrablisko\nhrabľové\nhrabľových\nhrabnúť\nhraboš\nhraboše\nHrabova\nHrabovci\nHrabovcom\nHrabovcu\nHrabovčík\nHrabove\nHrabovec\nHrabovka\nHrabovo\nHrabovský\nhrabový\nHrabské\nhrabu\nhraby\nhracíN\nhráč\nhračička\nhračkár\nhračkárčiť\nhračkária\nhračkáriac\nhračkáril\nhračkárila\nhračkárili\nhračkárilo\nhračkárim\nhračkárime\nhračkáriš\nhračkáriť\nhračkárite\nhračkárka\nhračkárme\nhračkársky\nhračkárstvach\nhračkárstvam\nhračkárstvo\nhračkárte\nhračka\nhráčka\nhračkového\nHráčove\nhráčových\nhráčsky\nhrád\nhrada\nhrad\nhradba\nhradbový\nHradca\nHradce\nHradci\nHradcom\nHradcov\nHradcu\nHradec\nhradeckého\nhradeckej\nhradeckému\nhradeckom\nhradeckou\nhradeckú\nhradeckým\nHradecký\nhradenia\nhradenie\nhradením\nhradeniu\nhradený\nhradiaca\nhradiaci\nhradidlo\nhradísk\nhradisko\nhradiskový\nhradíšť\nhradišťa\nHradišťa\nhradišťami\nhradišti\nHradišti\nhradištia\nhradištiach\nhradištiam\nhradištný\nhradišťom\nHradišťom\nhradištského\nhradišťu\nHradišťu\nhradiť\nhrádkami\nhrádkoch\nhrádkom\nHrádkom\nhrádkov\nhrádku\nHrádku\nhrádky\nhradlár\nhradlárka\nhradlo\nhradlovo\nhradlový\nhradne\nhradný\nhradobný\nhrádocké\nhrádockého\nhrádockej\nhrádockému\nhrádockom\nhrádockú\nhrádockých\nHrádocký\nhrádok\nhradovanie\nhradovať\nhradový\nhradská\nhradský\nhrádzach\nhrádzam\nhrádza\nhrádzí\nhrádzka\nhrádzku\nhrádzky\nhrádznik\nhrádzok\nhrádzový\nhrách\nhrach\nhrachor\nHrachovca\nHrachovci\nhrachovec\nhrachovina\nhrachovísk\nhrachovisko\nHrachovo\nhrachový\nhrajúci\nHraň\nhrán\nhranatieť\nhranato\nhranatosť\nhranatý\nhrana\nhrancami\nhranci\nhranenie\nhranica\nhranický\nhraničenie\nhraničiaci\nhraničiar\nhraničiarka\nhraničiarsky\nhraničiť\nhraničný\nhranieť\nhranie\nhranka\nhranol\nhranolček\nhranolka\nhranolok\nhranolovito\nhranolovitý\nhranolový\nhranostaj\nhranostajovi\nHranovnica\nHranovnice\nHranovnici\nhranovo\nhranový\nhranta\nhrant\nhrantmi\nhraný\nhráškavý\nhráškovaný\nhráškovo\nhráškovozelený\nhráškový\nhrášok\nHrašovík\nhráštek\nhrať\nhrato\nhratý\nhrávať\nhravo\nhravosť\nhravý\nhrazda\nhrazdový\nhra\nhŕb\nhrba\nhrbáč\nhrbáčik\nhrbáčka\nHrbáčkom\nhŕbach\nhŕbam\nhrbaňa\nhrbáň\nhrbánik\nhrbatieť\nhrbatiť\nhrbato\nhrbatosť\nhrbatý\nhŕba\nhrb\nhrbček\nhrbenie\nhrbiace\nhrbiaci\nhŕbik\nhrbiť\nhŕbka\nhŕbkoch\nhŕbkom\nhŕbkov\nhrbľavý\nhrbľovatý\nhŕbočka\nhŕbok\nhrboľa\nhrboľatý\nhrbolček\nhrboľček\nhrbole\nhrbolec\nhrboli\nhrboľ\nhrboľmi\nhrboľnatý\nhrboľoch\nhrboľom\nhrboľov\nHrboltová\nHrboltovej\nhrboľu\nhrbú\nhŕč\nhrčať\nhrča\nhrčavosť\nhrčavý\nHrčeľ\nhrčiť\nhrčivý\nhrčkách\nhrčkám\nhrčkavý\nhrčka\nhrčkovitý\nhrčnatý\nhrčovito\nhrčovitosť\nhrčovitý\nhrdáň\nhrdejšej\nhrdejší\nhrdejšia\nhrdejšie\nhrdejšieho\nhrdejšiemu\nhrdejších\nhrdejším\nhrdejšími\nhrdejšiu\nhrdejšom\nhrdejšou\nhrdelne\nhrdelný\nhrdielce\nhrdielci\nhrdielcom\nhrdielec\nhrdielko\nhrdielok\nhrdina\nhrdinka\nhrdinkiných\nhrdinný\nhrdinov\nhrdinskosť\nhrdinsky\nhrdinský\nhrdinstvo\nhrdiť\nhrdko\nhrdlačenie\nhrdlačením\nhrdlačina\nhrdlačiť\nhrdličí\nhrdlička\nhrdličkovať\nhrdlo\nhrdlorez\nhrdlovanie\nhrdlovať\nhrdlový\nhrdo\nhrdohlavý\nhrdokrásny\nhrdopych\nhrdopysk\nhrdopýška\nhrdopyšný\nhrdosť\nhrdoš\nhrdšie\nhrdúsené\nhrdúsenie\nhrdúsiť\nhrdúsivý\nhrdý\nhrdza\nhrdzavec\nhrdzavejúci\nhrdzavenia\nhrdzavenie\nhrdzaveniu\nhrdzavieť\nhrdzavo\nhrdzavočervený\nhrdzavohnedý\nhrdzavosť\nhrdzavý\nhrdzí\nhre\nhreb\nhrebená\nhrebenáč\nhrebenačka\nHrebenár\nhrebenček\nhrebeň\nhrebeňovitý\nhrebeňovka\nhrebeňovo\nhrebeňový\nhrebie\nhrebiem\nhrebieme\nhrebienka\nhrebienkami\nhrebienkoch\nhrebienkom\nHrebienkom\nhrebienkov\nhrebienkový\nhrebienku\nHrebienku\nhrebienky\nhrebienok\nhrebieš\nhrebiete\nhrebme\nhrebnúť\nhrebte\nhrebú\nhrebúc\nhrej\nhrejem\nhrejeme\nhreje\nhreješ\nhrejete\nhrejivo\nhrejivosť\nhrejivý\nhrejme\nhrejte\nhrejú\nhrejúc\nhrejúce\nhrejúcej\nhrejúci\nhrešenie\nhrešievať\nhrešiť\nHrežďovská\nhrgľovať\nHrhov\nHrhova\nHrhove\nhrhovský\nhriadelík\nhriadeľ\nhriadeľmi\nhriadeľoch\nhriadeľom\nhriadeľov\nhriadeľový\nhriadeľu\nhriadka\nhriadková\nhriakať\nhrianka\nhriankovač\nhriankový\nhriate\nhriať\nhriaty\nhríba\nhríb\nhríbik\nhríbový\nHričov\nHričova\nHričove\nhričovskom\nHričovský\nhriebla\nhriebli\nhrieblo\nhriebol\nhriebsť\nhriedlko\nhriecha\nhriech\nhriechuplný\nhriemať\nhriešik\nhrieška\nhrieškami\nhrieškoch\nhrieškom\nhrieškov\nhriešku\nhriešky\nhriešnic\nhriešnica\nhriešnik\nhriešnosť\nhriešny\nhriešok\nHrin\nHrina\nHrinka\nHrinkom\nHrinku\nHrino\nHriňová\nHriňovej\nHriňovou\nHriňovská\nHriňovské\nhriňovskej\nHriňovskí\nHriňovskú\nHriňovských\nHriňovským\nHriňovskými\nHriňovú\nhrív\nhriva\nhrivien\nHrivnák\nHrivnáka\nHrivnákom\nhrivnatý\nhrivna\nhrk\nhrkálka\nhrkáločka\nhrkanie\nhrkať\nhrkavé\nhrkľoval\nhrkľovala\nhrkľovali\nhrkľovalo\nhrkľovať\nhrkľuj\nhrkľuje\nhrkľujem\nhrkľujeme\nhrkľuješ\nhrkľujete\nhrkľujme\nhrkľujte\nhrkľujú\nhrkľujúc\nhrknúť\nhrknutý\nhrkotajúc\nhrkotajúci\nhrkotanie\nhrkotať\nhrkotavo\nhrkotavý\nhrkot\nhrkotmi\nhrkú\nhrkútajúci\nhrkútanie\nhrkútať\nhrm\nhrmavica\nhrmavý\nhrmenie\nhrmený\nhrmi\nhrmiace\nhrmiaci\nhrmiacou\nhrmieť\nhrmoliť\nhrmonička\nhrmoský\nhrmotajúc\nhrmotania\nhrmotať\nhrmot\nhrmotiť\nhrmotmi\nhrmotne\nhrmotný\nhrmožiť\nhrň\nhrnček\nhrnčiar\nhrnčiarka\nHrnčiarovej\nhrnčiarovho\nhrnčiarovo\nhrnčiarovom\nHrnčiarovou\nhrnčiarových\nhrnčiarsky\nhrnčiarstvach\nhrnčiarstvam\nhrnčiarstvo\nhrnčíček\nhrnčíčka\nhrnčíčkami\nhrnčíčkoch\nhrnčíčkom\nhrnčíčkov\nhrnčíčku\nhrnčíčky\nhrnčík\nhrnčísk\nhrnčisko\nhrnie\nhrniec\nhrniem\nhrnieme\nhrnieš\nhrniete\nHrnkom\nhrnkový\nHrnku\nhrňme\nhrňte\nhrnutie\nhrnúť\nhrobami\nhrobár\nhrobárik\nhrobáriky\nhrobárova\nhrobárovej\nhrobársky\nhrobárstvo\nhrob\nhrobček\nhrobieľ\nhrobka\nhrobkový\nhrobľa\nhrobľavý\nhroblí\nhroblina\nhrobľovať\nhrobový\nhrocha\nhroch\nHrochoť\nHrochoti\nhrochovi\nhroma\nhromad\nhromada\nhromadenie\nhromadený\nhromadiaci\nhromadiť\nhromádka\nhromadne\nhromadnosť\nhromadný\nhrom\nHromnice\nhromnička\nhromničný\nhromobitie\nHromoš\nhromovanie\nhromovať\nhromove\nhromovládca\nhromovládny\nhromovo\nhromový\nhromozvod\nhromsky\nhromský\nhromženia\nhromženie\nhromži\nhromžime\nhromžite\nhromžiť\nHron\nHronca\nHronci\nHroncom\nhrončianskej\nHronec\nHronova\nHronove\nhronovskej\nHronovský\nHronsek\nHronseku\nhronský\nhrošíN\nhrota\nhrot\nhrotec\nhrotia\nhrotisto\nhrotistý\nhrotito\nhrotitý\nhrotmi\nhrotok\nhrotový\nhrovo\nhrový\nhrôz\nhrôzach\nhrôzam\nhrôza\nhrozba\nhrozenia\nhrozenie\nhroziaci\nhrozien\nhrozienko\nhrozienkový\nhrozienok\nhrozievať\nhrozitánsky\nhrozitánsky\nhroziť\nhrozivo\nhrozivý\nhroznejšíF\nhrozno\nhroznorodý\nhroznovitý\nhroznovo\nhroznový\nhrozný\nhrôzostrašne\nhrôzostrašnejšíF\nhrôzostrašnosť\nhrôzostrašný\nhrôzovlád\nhrôzovládach\nhrôzovládam\nhrôzovláda\nhrôzyplný\nhrr\nhŕŕ\nhrste\nhrsť\nhŕstka\nhŕstočka\nhrsťovať\nhrtan\nhrtanový\nhrub\nhrubánsky\nHrubca\nHrubcom\nhrubec\nhrubiny\nhrubizný\nhrúbka\nhrúbkovo\nhrúbkový\nhrubnutie\nhrubnúť\nhrubo\nhrubočizne\nhrubočizný\nhrubokožec\nhrubomletý\nHruboňovo\nhrubosrstý\nhrubostenný\nhrubosť\nhrubostrstý\nHruboš\nHruboša\nHrubošovi\nHrubov\nhrubovacie\nhrubovacích\nhrubovanom\nHrubovský\nhrubozrnný\nhrubší\nhrubý\nhruda\nhruď\nhrudka\nhrudkovatie\nHrudkove\nhrudkovite\nhrudkovito\nhrudkovitosť\nhrudkovitý\nhrudkový\nhrudník\nhrudníkový\nhrudný\nhrudôčka\nhrudovitý\nhrudový\nhruška\nhruškovica\nhruškovitý\nhruškový\nHrušov\nHrušova\nHrušovanoch\nHrušovany\nHrušove\nHrušovo\nHrušovom\nhrušovskom\nhrušovskú\nHrušovský\nhruštička\nHruštín\nHruštína\nhrúzach\nhrúzam\nhrúza\nhrúz\nHrúzik\nhrúzovi\nhrúžiť\nhrvoľa\nhrvoľček\nhrvole\nhrvoli\nhrvoľ\nhrvoľmi\nhrvoľoch\nhrvoľom\nhrvoľov\nhrvoľový\nhrvoľu\nhryzadiel\nhryzadlá\nhryzadlách\nhryzadlám\nhryzadlami\nhryzák\nhryzavosť\nhryzavý\nhryzenia\nhryzenie\nhryzený\nhryzkať\nhryzoba\nhryzota\nhryzovísk\nhryzovisko\nhrýzť\nHS\nHSĽS\nhtm\nhtml\nHTML\nhttp\nhu\nhú\nhúb\nhubáč\nhubáň\nhubár\nhubárčenie\nhubárčiť\nhubárka\nhubársky\nhubato\nhubatosť\nhubatý\nhuba\nhubenie\nhubený\nhübernit\nHubert\nhubertusa\nhubertus\nhubertusový\nhubiace\nhubiaci\nhubica\nhubické\nhubickom\nhubicový\nHubička\nhubičku\nHubina\nhubiteľ\nhubiteľka\nhubiť\nhubka\nhubovitý\nHubovo\nhubový\nhubymilovný\nhúcenica\nHucín\nHucíne\nhuckaný\nhuckať\nhucul\nhucula\nhuculský\nhuč\nhučač\nhučanie\nhučať\nhučí\nhučia\nhučiac\nhučiaci\nhučím\nhučíme\nhučíš\nhučíte\nhučkala\nhučkať\nhučme\nhučte\nhud\nhúda\nhudba\nhudbymilovný\nHudcovej\nHudcovho\nHudcovský\nHudcových\nHudcovým\nhudec\nhudí\nhudia\nhudliar\nhudlikanie\nhudlikať\nhudlikoval\nhudlikovala\nhudlikovali\nhudlikovalo\nhudlikovať\nhudlikuj\nhudlikuje\nhudlikujem\nhudlikujeme\nhudlikuješ\nhudlikujete\nhudlikujme\nhudlikujte\nhudlikujú\nhudlikujúc\nhudobne\nhudobnícky\nhudobníčka\nhudobník\nhudobníkovu\nhudobnina\nhudobno\nhudobnodramatický\nhudobno-slovný\nhudobno-spevácky\nhudobnosť\nhudobnovedný\nhudobný\nhudry\nHUF\nhúfa\nhúf\nhúfik\nhúfnic\nhúfnica\nhufny\nhúfny\nhugenot\nhugenotský\nHugo\nhuh\nhúha\nhuhlať\nhuhle\nhuhlem\nhuhleme\nhuhleš\nhuhlete\nhuhli\nhuhlime\nhuhlite\nhuhlú\nhuhlúc\nhuhňať\nhuhňavo\nhuhňavosť\nhuhňavý\nhuhne\nhuhnem\nhuhneme\nhuhneš\nhuhnete\nhuhni\nhuhnime\nhuhnite\nhuhňú\nhuhňúc\nhuhu\nhuhú\nhuhuhu\nhuhúkať\nhuch\nhuí\nhuíí\nhuj\nhujbuj\nhujuj\nhujúj\nhúkačka\nhúkania\nhúkanie\nhúkaním\nhúkať\nhúkavo\nhúkavý\nhuk\nhúknuť\nhukotajúc\nhukotať\nhukotavo\nhukotavý\nhukot\nhukotmi\nhulákanie\nhulákať\nhulákavo\nhulákavý\nhulán\nhúľava\nhúli\nhúlia\nhúliť\nhulvát\nhulvátsky\nhulvátstvach\nhulvátstvam\nhulvátstvo\nhumanista\nhumanisticky\nhumanistický\nhumanistka\nhumanitárny\nhumanita\nhumanitne\nhumanitno\nhumanitný\nhumanizácia\nhumanizácie\nhumanizácii\nhumanizáciou\nhumanizáciu\nhumanizmus\nhumanizovať\nhumanizuje\nhumánnosť\nhumánny\nhumbug\nhumbugmi\nhumbugoch\nhumbugom\nhumbugov\nhumbugu\nhumbugy\nHumence\nHumenciach\nHumenné\nHumenného\nHumennému\nHumennom\nHumenným\nhumenský\nhumerus\nhumidita\nhumídny\nhumien\nhumience\nhumienci\nhumiencom\nhumienec\nhumienko\nhumienok\nhumifikácia\nhumifikovať\nhumno\nhumnový\nhumorálny\nhumor\nhumoreska\nhumorista\nhumoristicko\nhumoristicky\nhumoristický\nhumoristika\nhumoristka\nhumorne\nhumornosť\nhumorný\nhumpľoš\nhumpľovanie\nhumpľovať\nhumrový\nhumus\nhumuse\nhumusmi\nhumusoch\nhumusom\nhumusov\nhumusovitý\nhumusový\nhumusu\nhumusy\nhuňato\nhuňatosť\nhuňatý\nhuňa\nHun\nHuncovská\nhuncút\nhuncútik\nhuncútsky\nhuncútstvach\nhuncútstvam\nhuncútstvo\nhundrák\nhundrania\nhundranie\nhundrať\nhundrávať\nhundravo\nhundravosť\nhundravý\nhundre\nhundrem\nhundreme\nhundreš\nhundrete\nhundri\nhundrime\nhundrite\nhundroš\nhundrú\nhundrúc\nhundry\nhunený\nHungária\nHungárii\nhungarista\nhungaristický\nhungaristika\nHungáriu\nhungarizácia\nhungarizačne\nhungarizačný\nhungarizmus\nhungarizovať\nhungarológia\nhuní\nhunka\nhunsky\nhunský\nhunt\nHunt\nhunte\nhunter\nHuntom\nhuntovať\nhup\nhúpa\nhúpací\nhúpacia\nhúpacie\nhúpačka\nhúpaj\nhúpajme\nhúpajte\nhúpajú\nhúpajúc\nhúpam\nhúpame\nhúpanie\nhúpaný\nhúpaš\nhúpate\nhúpať\nhúpavý\nhupi\nhupká\nhupkom\nhupky\nhupnúť\nhups\nhupy\nhurá\nHurbanov\nHurbanova\nHurbanove\nHurbanovo\nHurbanovom\nhurbanovský\nHurbanovu\nhurdiska\nhurhaj\nhuriavk\nhuriem\nhurikán\nhuriska\nhurka\nhurma\nhurónsky\nhurónsky\nhurt\nhurtmi\nHurtoň\nhurtovanie\nhurtovať\nhurtovne\nhurtovný\nhúsa\nhusací\nhusacina\nhusacinec\nhusacinka\nhusár\nHusárik\nHusárika\nHusárikom\nHusárikovej\nHusárikovou\nHusárovej\nHusárovho\nHusárovou\nhusársky\nhúsatiek\nhúsatko\nhúsencami\nhúsence\nhúsencoch\nhúsencom\nhúsenica\nhúsenicový\nhúseničí\nhúsenička\nhúseniec\nhusiar\nhusiarka\nhusička\nhusieľ\nhusí\nHusinca\nHusinci\nHusinec\nhusita\nhusitizmus\nhusitmi\nhusitský\nhusitstvo\nhus\nhúska\nhusle\nhuslí\nhusliar\nhusličiek\nhusličkách\nhusličkám\nhusličkami\nhusličky\nhuslista\nhuslistka\nhusľový\nhuslový\nhuspenina\nhuspeninka\nhuspeninovatieť\nhuspeninovitý\nhuspeninový\nhustejší\nhustenie\nhustením\nhusti\nhustilka\nhustime\nhustite\nhustiť\nhustnúci\nhustnutie\nhustnutím\nhustnúť\nhusto\nhustomera\nhustomer\nhustosrstý\nhustôt\nhustotách\nhustotám\nhustotami\nhustota\nhúsť\nhustý\nhuš\nhúšťach\nhúšťam\nhúšťava\nhúšťavina\nhúšť\nhúštie\nhuština\nhúština\nhúštinka\nhut\nhút\nhútať\nhútavať\nhuta\nHutka\nHutky\nhutne\nhutnenie\nhutnícky\nhutníctvach\nhutníctvam\nhutníctvo\nhutník\nHutníkovej\nHutníkovou\nHutníkovu\nhutnosť\nhutný\nhutská\nhúú\nhúúú\nhúževnate\nhúževnato\nhúževnatosť\nhúževnatý\nhúžvať\nhúžva\nhúžvem\nhúžveme\nhúžveš\nhúžvete\nhúžvi\nhúžvia\nhúžviac\nhúžvička\nhúžvil\nhúžvila\nhúžvili\nhúžvilo\nhúžvim\nhúžvime\nhúžviš\nhúžviť\nhúžvite\nhúžvový\nhúžvuc\nHvar\nHVB\nhvezdár\nhvezdárčina\nhvezdáreň\nhvezdárka\nhvezdárňach\nhvezdárňam\nhvezdársky\nhvezdárstvach\nhvezdárstvam\nhvezdárstvo\nHvezdoň\nHvezdoňa\nHvezdoňom\nHvezdoňovi\nhviezd\nhviezda\nhviezdic\nhviezdica\nhviezdicovite\nhviezdicovito\nhviezdicovitý\nhviezdicovo\nhviezdicový\nhviezdička\nhviezdičkovitý\nhviezdičkový\nhviezdnatý\nhviezdny\nhviezdokôp\nhviezdokopa\nHviezdoslava\nHviezdoslavov\nHviezdoslavova\nHviezdoslavove\nHviezdoslavovom\nhviezdoslavovský\nHviezdoslavovu\nhviezdovite\nhviezdovito\nhviezdovitý\nhviezdovka\nhviezdový\nhviezodovka\nhvízdajúci\nhvizdák\nhvizdákovi\nhvízdania\nhvízdať\nhvízdavý\nhvizd\nhvizdnúť\nhvizdot\nhvižď\nhvižďať\nhvižďme\nhvižďte\nHvozd\nHvozdnica\nhvozdov\nHvozdu\nHyacinta\nhyacint\nhyacintmi\nhyacintový\nhyalínny\nhyalit\nhýb\nhybááj\nhýbadlo\nhybaj\nhybáj\nhybajme\nhybajte\nhýbajúc\nHybami\nhýbanie\nhýbaný\nhýbateľ\nhýbateľmi\nhýbateľom\nhýbateľov\nhýbať\nhýbavať\nhýbavý\nHybe\nHybiach\nhybko\nhybkosť\nhybký\nhybnosť\nhybnosti\nhybnosťou\nhybný\nhybrid\nhybridizácia\nhybridizačný\nhybridnosť\nhybridný\nhybridovať\nhyd\nhydín\nhydinách\nhydinám\nhydinami\nhydinár\nhydináreň\nhydinárka\nhydinárňach\nhydinárňam\nhydinársky\nhydinárstvach\nhydinárstvam\nhydinárstvo\nhydina\nhydinový\nhydran\nhydrant\nhydrantmi\nhydrantový\nhydratácia\nhydratačný\nhydrát\nhydrátmi\nhydrátový\nhydratúra\nhydraulicky\nhydraulický\nhydraulika\nhydra\nhydrémia\nhydrid\nhydrin\nhydroaerodynamika\nhydroagregátov\nhydroalternátor\nhydroalternátorov\nhydroavión\nhydrobiológ\nhydrobiológia\nhydrobiologický\nhydrobiont\nhydrocefália\nhydrocefalus\nhydrocentrál\nhydrocentrálach\nhydrocentrálam\nhydrocentrála\nhydrodynamicky\nhydrodynamický\nhydrodynamika\nhydroelektráreň\nhydroelektrárňach\nhydroelektrárňam\nhydroenergetický\nhydroenergetika\nhydroenergetike\nhydroenergetikou\nhydroenergetiku\nhydroenergetiky\nhydrofil\nhydrofília\nhydrofilmi\nhydrofilný\nhydrofilový\nhydrofóbia\nhydrofóbny\nhydrofyt\nhydrogamia\nhydrogenácia\nhydrogenácie\nhydrogenáciou\nhydrogenáciu\nhydrogén\nhydrogenerátorov\nhydrogenerátory\nhydrogénium\nhydrogenizácia\nhydrogenizačný\nhydrogenizovaných\nhydrogénový\nhydrogeochémia\nhydrogeológia\nhydrogeologický\nhydrogeológov\nhydrogeológovia\nhydrograf\nhydrografia\nhydrografický\nhydrochémia\nhydrochória\nhydrokéla\nhydrokortizón\nhydrol\nhydroláza\nhydrológ\nhydrológia\nhydrologický\nhydrologička\nhydrolytický\nhydrolýz\nhydrolýzach\nhydrolýzam\nhydrolyzátu\nhydrolyzáty\nhydrolýza\nhydrolyzovaných\nhydrolyzovať\nhydromechanicky\nhydromechanický\nhydromechanika\nhydromechanizácia\nhydromechanizačný\nhydrometalurgia\nhydrometalurgicky\nhydrometalurgický\nhydrometeor\nhydrometeorológia\nhydrometeorologický\nhydrometer\nhydroperoxid\nhydroplán\nhydropónia\nhydropóniu\nhydrosfér\nhydrosférach\nhydrosféram\nhydrosféra\nhydrostatický\nhydrostatika\nhydrotechnicky\nhydrotechnický\nhydrotechnika\nhydroterapia\nhydroterapie\nhydroterapiu\nhydrotermálna\nhydrotermálneho\nHydrotermálny\nhydrotropizmus\nhydrotropný\nhydrotypia\nhydrouhličitan\nhydrouhličitany\nhydroxid\nhydroxylácia\nhyena\nhyení\nhyenizmus\nhyeňom\nhyeňou\nhyfa\nhyg\nhygien\nhygienach\nhygienam\nhygienami\nhygiena\nhygienickosť\nhygienicky\nhygienický\nhygienička\nhygienik\nhygrofília\nhygrofyt\nhygrograf\nhygrometer\nhygroskop\nhygroskopia\nhygroskopickosť\nhygroskopicky\nhygroskopický\nhyien\nhýľa\nhýle\nhýli\nhýľ\nhýľmi\nhýľoch\nhýľom\nhýľov\nHýľov\nHýľova\nHýľove\nhýľovi\nhylozoizmus\nhymen\nhymien\nhymna\nhymnickosť\nhymnicky\nhymnický\nhymnmi\nhymnoch\nhymnom\nhymnov\nhymnus\nhyň\nhynie\nhyniem\nhynieme\nhynieš\nhyniete\nhyňme\nhyňte\nhynúci\nhynutí\nhynutie\nhynúť\nhypemeréza\nhyper\nhyperaktivita\nhyperaktívne\nhyperaktívny\nhyperbola\nhyperbolicky\nhyperbolický\nhyperbolizované\nhyperbolizovať\nhyperdaktýlia\nhyperestézia\nhyperfunkcia\nhypergalakcia\nhyperglobúlia\nhyperglykémia\nhypermangán\nhypermangánový\nhypermarket\nhypermetropia\nhypermoderne\nhypermodernosť\nhypermoderný\nhyperodkaz\nhyperodoncia\nhyperocha\nhyperón\nhyperopia\nhyperosmia\nhyperpatia\nhyperplázia\nhyperplázie\nhypersalivácia\nhypersekrécia\nhypersenzitívny\nhypersexuál\nhypersexualita\nhypersexuálny\nhypersexuálu\nhypersomnia\nhypersonický\nhypertenzia\nhypertermia\nhypertext\nhypertextmi\nhypertextový\nhypertónia\nhypertonický\nhypertonik\nhypertrichóza\nhypertrofia\nhypertrofický\nHypertrofované\nhypertrofovaním\nhypertrofovaných\nhypertrogia\nhypervitaminóza\nhypestézia\nhypnabilita\nhypnolepsia\nhypnológia\nhypnopatológia\nhypnopédia\nhypnotický\nhypnotiká\nhypnotikách\nhypnotikum\nhypnotizér\nhypnotizérka\nhypnotizérska\nhypnotizérske\nhypnotizérskeho\nhypnotizérskej\nhypnotizérskemu\nhypnotizérski\nhypnotizérskom\nhypnotizérskou\nhypnotizérsku\nhypnotizérsky\nhypnotizérskych\nhypnotizérskym\nhypnotizérskymi\nhypnotizérstvach\nhypnotizérstvam\nhypnotizérstvo\nhypnotizovaný\nhypnotizovať\nhypnóz\nhypnózach\nhypnózam\nhypnóza\nhypo\nhypoblast\nhypobúlia\nhypocentrum\nhypoderma\nhypodermický\nhypofora\nhypofunkcia\nhypofýz\nhypofýzach\nhypofýzam\nhypofýza\nhypogalakcia\nhypogénny\nhypoglykémia\nhypochonder\nhypochonderka\nhypochondria\nhypochondricky\nhypochondrický\nhypok\nhypokaustum\nhypokoristicky\nhypokoristický\nhypokoristík\nhypokoristikum\nhypokrit\nhypokrita\nhypokríza\nhypolipémia\nhypomnézia\nhyponymum\nhypoplázia\nhyposmia\nhyposomnia\nhypostáza\nhypostázia\nhypostazovať\nhypostylos\nhypotaktický\nhypotalamus\nhypotaxa\nhypotaxia\nhypotečný\nhypoték\nhypotékach\nhypotékam\nhypotekárny\nhypotéka\nhypotékový\nhypotenzia\nhypotenzívum\nhypoterapia\nhypotermia\nhypotetickosť\nhypoteticky\nhypotetický\nhypotéz\nhypotézach\nhypotézam\nhypotéza\nhypotónia\nhypotonický\nhypotrachelion\nhypotrofia\nhypovitaminóza\nhypoxie\nhypsofóbia\nhypsografický\nhypsometer\nhypsometria\nhýrenie\nhýriacej\nhýriaci\nhýriť\nhýrivec\nhýrivo\nhýrivosť\nhýrivý\nhysteralgia\nhysterektómia\nhysteréza\nhysteréznej\nhystéria\nhysterickosť\nhystericky\nhysterický\nhysterička\nhysterik\nhysteroskop\nhysterostomatómia\nhysterotómia\nhyš\nhyšta\nhyzdi\nhyzdime\nhyzdite\nhyzdiť\nHyzop\nHz\nHZ\nHZD\nHZDS\nHZz\nch\nCh\ncha\nChabarovský\nchabazit\nchabec\nchabejšej\nchabejší\nchabejšia\nchabejšie\nchabejšieho\nchabejšiemu\nchabejších\nchabejším\nchabejšími\nchabejšiu\nchabejšom\nchabejšou\nchabieť\nchabina\nchablis\nchabnúť\nchabo\nchabosť\nchabrať\nchabre\nchabrem\nchabreme\nchabreš\nchabrete\nchabri\nchabrime\nchabrite\nchabrú\nchabrúc\nchabrus\nchabý\nchabzda\nchabzdový\nchačkar\nchacha\nchachot\nchachotať\nchachtať\nchairman\nchájd\nchajda\nchajdička\nchalan\nchalanísk\nchalaniská\nchalaniskách\nchalaniskám\nchalanisko\nchalanisku\nchalansky\nchalanský\nchalát\nchalátik\nchalátmi\nchalátový\nchalazión\nchalcedón\nchalcedónový\nChaldejec\nChaldejka\nchaldejskej\nchaldejskému\nchaldejskí\nchaldejskú\nchaldejských\nchalíf\nChalkida\nChalkidický\nchalkografia\nchalkolit\nchalkopyrit\nchalkozín\nchallenger\nchalúh\nchaluha\nchalúp\nchalupár\nchalupárčenie\nchalupárčiť\nchalupária\nchalupáriac\nchalupáril\nchalupárila\nchalupárili\nchalupárilo\nchalupárim\nchalupárime\nchalupáriš\nchalupáriť\nchalupárite\nchalupárka\nchalupárme\nchalupársky\nchalupárstvach\nchalupárstvam\nchalupárstvo\nchalupárte\nchalupa\nChalupka\nchalúpka\nchalva\nChalvin\nchám\nchambre\nchameleón\nchameleónova\nchameleónsky\nchameleónstvach\nchameleónstvam\nchameleónstvo\nchameleóny\nchamofyt\nChamonix\nchamonixský\nchamosit\nChampagne\nchampanský\nchamplevé\nchamraď\nchamradie\nchamrať\nchamriť\nchamsín\nchamti\nchamtime\nchamtite\nchamtiť\nchamtivec\nchamtivo\nchamtivosť\nchamtivý\nchanát\nChanava\nChanave\nchán\nchanel\nchange\nChánova\nChánove\nChánových\nchánsky\nchanuka\nchaos\nchaotickosť\nchaoticky\nchaotický\nchaotičnosti\nchápadlo\nchápadlový\nchápajúc\nchápajúce\nchápajúcej\nchápajúci\nchápajúcim\nchapák\nchápanieN\nchápanlivý\nchápaný\nchápať\nchápavo\nchápavosťN\nchápavý\nchapkať\ncharakter\ncharakteristicky\ncharakteristický\ncharakteristika\ncharakterizácia\ncharakterizačne\ncharakterizačný\ncharakterizovania\ncharakterizovanie\ncharakterizovaním\ncharakterizovaný\ncharakterizovať\ncharakterizujúci\ncharakterne\ncharakternosť\ncharakterný\ncharakterove\ncharakterovo\ncharakterový\ncharapšťať\nchargé\ncharitatívnosť\ncharitatívny\ncharita\ncharitnej\ncharitných\nchariziem\ncharizmaticky\ncharizmatický\ncharizma\nCharkov\nCharkova\nCharkove\ncharkovský\nCharkovu\ncharleston\nCharlotta\nCharlotte\nCharlotty\ncharm\nCháron\ncharta\ncharter\nchartisti\nchartreuse\nChartúm\nChartúme\nchartúmsky\nCharybda\nchás\nchasan\nchasa\nchasidizmus\ncháska\nchasnícky\nchasníčiť\nchasník\nchassis\nchasuble\nChat\nchát\nchatár\nchatárčiť\nchatária\nchatáriac\nchatáril\nchatárila\nchatárili\nchatárilo\nchatárim\nchatárime\nchatáriš\nchatáriť\nchatárite\nchatárka\nchatárme\nchatársky\nchatárstvach\nchatárstvam\nchatárstvo\nchatárte\nchata\nchatka\nchatovanie\nchatový\nchátraní\nchátrania\nchátranie\nchátraním\nchátraniu\nchátrať\nchatrč\nchatrčka\nchatrne\nchatrnosť\nchatrný\nchatt\nchaumes\nchaumont\nchaussée\nchazmofyt\nchcejúc\nchcejúci\nchcene\nchcenia\nchcenie\nchcením\nchceniu\nchcenosť\nchcený\nchcieť\nchcsl\nche\nCheb\nChebe\nChebom\nchebský\nChebu\nchebula\ncheckpoint\ncheckup\ncheddar\nchechce\nchechcem\nchechceme\nchechceš\nchechcete\nchechci\nchechcime\nchechcite\nchechcú\nchechcúc\ncheche\nchechliť\nchechotajúc\nchechotať\nchechotavo\nchechotavý\nchechot\nchechotmi\nchechtajúc\nchechtal\nchechtala\nchechtali\nchechtalo\nchechtať\nchechtavo\nchechtavý\ncheilitída\ncheirospazmus\nchem\nchémia\nchemicky\nchemický\nchemička\nchemikália\nchemik\nchemisorpcia\nchemizácia\nchemizmu\nchemlon\nchemlón\nchemlonový\nchemlónový\nchemomorfóza\nchemorecepcia\nchemoreceptor\nchemosféra\nchemosyntéza\nchemotaxia\nchemoterapeuticky\nchemoterapeutický\nchemoterapeutiká\nchemoterapeutikum\nchemoterapia\nchemotropia\nchemotropizmus\ncherry\ncherub\ncherubín\ncherubínsky\ncherubov\ncheshire\nChetit\nchetitčín\nchetitčinách\nchetitčinám\nchetitčinami\nchetitčina\nchetitológia\nchetitsky\nchetitský\nchevalier\nchevre\nCHF\nchi\nchí\nchianti\nchiasma\nchiastolit\nchiazma\nchiazmus\nchic\nChicaga\nChicago\nChicagom\nchicagsky\nchicagský\nChicagu\nchicle\nchichi\nchichliť\nchichotajúc\nchichotať\nchichotavo\nchichotavý\nchichot\nchichotmi\nchichtať\nchichúňať\nchichúta\nchichútaj\nchichútajme\nchichútajte\nchichútajú\nchichútajúc\nchichútal\nchichútala\nchichútali\nchichútalo\nchichútam\nchichútame\nchichútaš\nchichútať\nchichútate\nChile\nchiliastický\nchiliazmus\nchilli\nchilský\nchimér\nchimérach\nchiméram\nchiméra\nchimerická\nchimerické\nchimerických\nchimérický\nchimérizmus\nchinín\nchinínovník\nchinínový\nchinofilný\nchinofóbny\nchinofyt\nchinolín\nchinometer\nchinón\nchinook\nchip\nchips\nchipsy\nchiralita\nchirálny\nchirológia\nchiromantia\nchiropraktik\nchiropraxia\nchirurg\nchirurgia\nchirurgicky\nchirurgický\nchirurgička\nchistéra\nchít\nchitín\nchitínový\nchito\nchitón\nChľaba\nChľabe\nChľaby\nchlad\nchladenia\nchladenie\nchladením\nchladeniu\nchladený\nchladiaci\nchladiareň\nchladiarensky\nchladiarenský\nchladiarenstva\nchladiarenstve\nchladiarenstvo\nchladiarňach\nchladiarňam\nchladič\nchladičový\nchladien\nchladievať\nchladiť\nchladive\nchladivo\nchladivosť\nchladivý\nchladne\nchladnička\nchladničkových\nchladnokrvne\nchladnokrvnosť\nchladnokrvný\nchladno\nchladnosť\nchladnota\nchladnúci\nchladnúť\nchladný\nchládoček\nchládočka\nchládočkami\nchládočkoch\nchládočkom\nchládočkov\nchládočku\nchládočky\nchládok\nchlácholenie\nchlácholeniu\nchlácholiť\nchlácholivo\nchlácholivý\nchlamtať\nchlamýdie\nchlápä\nchlapák\nchlápät\nchlápätiek\nchlápätko\nchlap\nchlapcov\nchlapča\nchlapče\nchlapček\nchlapčensky\nchlapčenský\nchlapčenstvo\nchlapčiat\nchlapčiatko\nchlapčiatok\nchlapčísk\nchlapčiskoch\nchlapčisko\nchlapčiskov\nchlapčiskovi\nchlapčiskovia\nchlapec\nchlapiatko\nchlapiatok\nchlapík\nChlapíkovou\nchlapina\nchlapísk\nchlapiská\nchlapiskách\nchlapiskám\nchlapisko\nchlapisku\nchlapiť\nchlapskosť\nchlapsky\nchlapský\nchlapstvo\nchlasce\nchlascem\nchlasceme\nchlasceš\nchlascete\nchlasci\nchľasci\nchlascime\nchľascime\nchlascite\nchľascite\nchlascú\nchlascúc\nchlastá\nchlastačka\nchľastačka\nchlastaj\nchlastajme\nchlastajte\nchlastajú\nchlastajúc\nchlastal\nchlastala\nchlastali\nchlastalo\nchlastám\nchlastáme\nchlastanie\nchľastanie\nchlastáš\nchlastať\nchlastáte\nchľastať\nchlast\nchľast\nchleba\nchlebáreň\nchlebárňach\nchlebárňam\nchlebársky\nchlebe\nchlebíček\nchlebíčka\nchlebíčkami\nchlebičkársky\nchlebíčkoch\nchlebíčkom\nchlebíčkov\nchlebíčku\nchlebíčky\nchlebík\nchlebmi\nchlebník\nchlebodarca\nchlebodarný\nchleboch\nchlebom\nchlebov\nchlebovina\nchlebovnica\nchlebovník\nchlebovo\nchlebový\nchlebu\nchleby\nchlepci\nchlepcime\nchlepcite\nchlepčenský\nchleptajúc\nchleptať\nchlieb\nChlievany\nchliev\nchlieve\nchlievik\nchlievový\nchlípane\nchlípať\nchlipkať\nchlipne\nchlipník\nchlipnosť\nchlipnúť\nchlipný\nchlm\nChlmca\nChlmci\nChlmcom\nChlmcu\nChlmec\nChlmecká\nChlmeckej\nChlmeckí\nchloazma\nchlop\nchlopa\nchlopňa\nchlopní\nchlopnička\nchlopňový\nchlopnúť\nchlopotiť\nchlóracetofenón\nchlóracetón\nchlorácia\nchloramfenikol\nchloramín\nchloraminácia\nchlóramínu\nchlorát\nchlór\nchlórbenzén\nchlóre\nchlorečnan\nchlorečný\nchlorela\nchlorémia\nchlorenchým\nchlórfluórovaný\nchlorid\nchloristan\nchloritan\nchlorit\nchloritový\nchlórkyán\nchlórmi\nchlórnan\nchlórnanu\nchloroform\nchloroformový\nchlorofyl\nchlorofylmi\nchlóroch\nchlórom\nchloroplast\nchlórov\nchlórovanie\nchlórovaním\nchlórovaný\nchlórovať\nchlórovodík\nchlórovodíka\nchlorovodík\nchlorovodíkový\nchlórový\nchloróza\nchlórsilán\nchlórtetracyklín\nchlóru\nchlóry\nchlpa\nchlpáč\nchlpáče\nchlpáčik\nchlpáčiky\nchlpáňa\nchlpaňa\nchlpáň\nchlpáne\nchlpaní\nchlpáni\nchlpánik\nchlpáňovi\nchlpatec\nchlpatieť\nchlpatiť\nchlpatosť\nchlpatučký\nchlpatý\nchlp\nchlpčiť\nchlpiť\nchĺpka\nchĺpkami\nchĺpkatý\nchĺpkavý\nchĺpkoch\nchĺpkom\nchĺpkov\nchĺpku\nchĺpky\nchĺpok\nchlpovo\nchlpový\nchľus\nchľusnúť\nchľust\nCHM\nchmácu\nchmácuc\nchmár\nchmárach\nchmáram\nchmárava\nchmára\nchmárička\nchmáriť\nchmárka\nchmátať\nchmat\nchmatká\nchmatkaj\nchmatkajme\nchmatkajte\nchmatkajú\nchmatkajúc\nchmatkal\nchmatkala\nchmatkali\nchmatkalo\nchmatkám\nchmatkáme\nchmatkanie\nchmatkáš\nchmatkať\nchmatkáte\nchmatmi\nchmatnutie\nchmatnúť\nchmeľa\nchmeľ\nchmele\nchmelené\nchmeleného\nchmelení\nchmelenia\nchmelenie\nchmeli\nchmeliar\nchmeliarsky\nchmeliarstvach\nchmeliarstvam\nchmeliarstvo\nChmelina\nChmelinu\nchmeľnica\nChmelnická\nChmelnickej\nChmelnickou\nChmelnickú\nChmeľnický\nChmeľovec\nchmeľoviny\nchmeľový\nChmiňany\nchmuľko\nchmuľo\nchmúrach\nchmúram\nchmúrava\nchmúra\nchmúriť\nchmúrnosť\nchmúrny\nchňap\nchňapkať\nchňapka\nchňapnutie\nchňapnúť\nchniapať\ncho\nchobota\nchobot\nchobôtik\nchobotmi\nchobotnatý\nchobotnica\nchobotničí\nChoceň\nchocenská\nchocenskej\nChocne\nChocni\nChocňou\nChoč\nChoča\nChoči\nChodák\nChodáka\nchod\nChod\nchodbár\nchodbárka\nchodba\nchodbička\nchodbový\nchodec\nchodecký\nchodenieN\nchodiaci\nchodiačky\nchodidlo\nchodidlový\nchodievať\nchodiť\nchodkyňa\nchodníček\nchodníčka\nchodníčkami\nchodníčkoch\nchodníčkom\nchodníčkov\nchodníčku\nchodníčky\nchodník\nchodníkový\nChodove\nchodový\nchodský\nchodúľa\nchodúle\nchodúli\nchodúľ\nchodúľka\nchodúľmi\nchodúľoch\nchodúľom\nchodúľov\nchodúľu\nchôdzach\nchôdzam\nchôdza\nchôdzí\nchochláč\nchochláče\nchochlačka\nchochlatý\nchochlík\nchochlíkový\nchochly\nchochmes\nchocho\nchocholačka\nChocholate\nchocholatý\nchocholček\nchocholčekový\nchocholík\nchocholíkový\nchochol\nChocholná\nChocholnej\nChocholnou\nChocholnú\nchocholy\nChochúľ\nChochuľa\ncholagiocholecystografia\ncholagogum\ncholangitída\ncholecystitída\ncholekarciferol\ncholelitiáza\ncholerách\ncholerám\ncholerami\ncholera\ncholericky\ncholerický\ncholerička\ncholerik\ncholerový\ncholesterín\ncholesterol\ncholesterolémia\ncholetit\ncholiamb\ncholier\ncholín\nchomotypia\nchomúta\nchomút\nchomútik\nchomútmi\nChomutov\nChomutova\nChomutove\nChomutovom\nchomutovský\nchomútový\nchondra\nchondrit\nchondroblast\nchondroblastóm\nchondrocyt\nchondrológia\nChoňkovské\nchoňkovského\nchoňkovskí\nchoňkovskom\nchoňkovských\nchopenie\nchopiť\nChopka\nChopkom\nChopku\nchorál\nchoráli\nchorálmi\nchorálový\nchorasán\nchór\nchorda\nchordát\nchordektomia\nchorditída\nchóre\nchorea\nchorejme\nchorejšej\nchorejší\nchorejšia\nchorejšie\nchorejšieho\nchorejšiemu\nchorejších\nchorejším\nchorejšími\nchorejšiu\nchorejšom\nchorejšou\nchorejte\nchorejú\nchorejúc\nchoreograf\nchoreografia\nchoreograficky\nchoreografický\nchoreografka\nchoriamb\nchorieť\nchorioditída\nchorión\nchorioretinitída\nchórista\nchóristka\nchorľavenie\nchorľavieť\nchorľavo\nchorľavosť\nchorľavý\nchórmi\nchoro\nchorob\nchoroba\nchorobne\nchorobnosť\nchorobný\nchorobopis\nchoroboplodný\nchorografia\nchóroch\nchorológia\nchórom\nchoromyseľne\nchoromyseľnosť\nchoromyseľný\nchórov\nchorovod\nchórový\nchóru\nchorus\nchorv\nChorvát\nChorváta\nchorvátčin\nchorvátčinách\nchorvátčinám\nchorvátčinami\nchorvátčina\nChorváti\nChorvátka\nChorvátmi\nChorvátom\nChorvátov\nChorvátsko\nchorvátsky\nchorvátsky\nChorváty\nchóry\nchorý\nChorzów\nChorzowčan\nchorzowský\nchosen\nchoseň\nchosna\nchosňa\nchosnami\nchosňami\nchosne\nchosni\nchosnoch\nchosňoch\nchosnom\nchosňom\nchosnov\nchosňov\nchosnu\nchosňu\nchosny\nchotárik\nchotár\nchotármi\nchotárny\nChotča\nChotimír\nChotimíra\nChotín\nChotína\nChotíne\nChotínom\nchotínska\nchotínskeho\nchotínskej\nchotínski\nchotínskou\nchotínsku\nchotínsky\nchotínskym\nChotínu\nchotomyseľný\nchôv\nchovajúci\nChovancovej\nChovancovou\nChovancových\nchovane\nchovanec\nchovanecký\nchovanica\nchovanie\nchovanka\nchovankyňa\nchovano\nchovaný\nchovateľ\nchovateľka\nchovateľsky\nchovateľský\nchovateľstvo\nchovať\nchovávať\nchova\nchov\nchovný\nchozrasčot\nchozrasčotmi\nchozraščot\nChrabrany\nchrabrejšej\nchrabrejší\nchrabrejšia\nchrabrejšie\nchrabrejšieho\nchrabrejšiemu\nchrabrejších\nchrabrejším\nchrabrejšími\nchrabrejšiu\nchrabrejšom\nchrabrejšou\nchrabriť\nchrabro\nchrabrosť\nchrabrý\nchradnutí\nchradnutie\nchradnutím\nchradnutiu\nchradnúť\nchrakterizovať\nchráma\nchrámať\nchrám\nChrámce\nChrámcoch\nChrámec\nchrámový\nchráňboh\nchráňbože\nchránenec\nchránenie\nchránenka\nchránenkyňa\nchránený\nchrániaci\nchránič\nchránidlo\nchránidlový\nchránievať\nchrániť\nchráňpane\nchrapačami\nchrapač\nchrapače\nchrapačí\nchrapačiach\nchrapačiam\nchrapačka\nchrapačou\nchrápajúc\nchrápanie\nchrápať\nchrapč\nchrapčanie\nchrapčať\nchrapči\nchrapčime\nchrapčite\nchrápka\nchrápkaj\nchrápkajme\nchrápkajte\nchrápkajú\nchrápkajúc\nchrápkal\nchrápkala\nchrápkali\nchrápkalo\nchrápkam\nchrápkame\nchrápkaš\nchrápkať\nchrápkate\nchrapkať\nchrapľať\nchrapľavo\nchrapľavosť\nchrapľavý\nchrapotaj\nchrapotajme\nchrapotajte\nchrapotajúc\nchrapotať\nchrapot\nchrapotmi\nchrapšť\nchrapšťať\nchrapšťme\nchrapšťte\nchraptiť\nchraptivo\nchraptivý\nchrapúň\nchrapúni\nchrapúnsky\nchrapúnstvach\nchrapúnstvam\nchrapúnstvo\nchrást\nchrastavce\nchrastavcu\nChrastave\nchrastavec\nchrastavieť\nchrastavosť\nchrastavý\nchrasta\nchrasť\nchrastička\nchrastie\nchrastina\nChrastince\nChrastinom\nChrastinu\nchrastovitosť\nchrastovitý\nchrastový\nchrbát\nchrbátik\nchrbátmi\nchrbta\nchrbtami\nchrbte\nchrbtica\nchrbticový\nchrbtoch\nchrbtom\nchrbtov\nchrbtovina\nchrbtový\nchrbtu\nchrbty\nchrč\nchrčanie\nchrčať\nchrček\nchrčiaci\nchrčivo\nchrčivý\nchrčka\nchrčkami\nchrčkoch\nchrčkom\nchrčkov\nchrčkovi\nchrčky\nchrematistika\nchren\nchrenový\nchrestomania\nchrestomatia\nchrcheľ\nchrchľa\nchrchľal\nchrchľala\nchrchľali\nchrchľalo\nchrchľami\nchrchlanie\nchrchľať\nchrchlať\nchrchlavo\nchrchľavo\nchrchlavosť\nchrchľavosť\nchrchlavý\nchrchľavý\nchrchliaci\nchrchliak\nchrchliakovi\nchrchľoch\nchrchľom\nchrchloš\nchrchľov\nchrchľu\nchrchľú\nchrchľúc\nchrchotať\nchriachať\nchriak\nchriakať\nchriaknuť\nchriapa\nchriašteľ\nchriašteľmi\nchriašteľoch\nchriašteľom\nchriašteľov\nchriašteľovi\nchrip\nchripí\nchripia\nchripiac\nchripieť\nchripím\nchripíme\nchripíš\nchripíte\nchrípka\nchrípkový\nchripľavo\nchripľavý\nchripme\nchrípne\nchripot\nchripotmi\nchripte\nchristianizácia\nchristianizačný\nchristianizmus\nchristológia\nchrlenia\nchrlenie\nchrliaci\nchrličmi\nchŕlili\nchrliť\nchrmukavý\nchrobač\nchrobačí\nchrobáčik\nchrobáčikovia\nchrobák\nchrobáky\nchrochce\nchrochcem\nchrochceme\nchrochceš\nchrochcete\nchrochci\nchrochcime\nchrochcite\nchrochcú\nchrochcúc\nchrochtá\nchrochtaj\nchrochtajme\nchrochtajte\nchrochtajú\nchrochtajúc\nchrochtal\nchrochtala\nchrochtali\nchrochtalo\nchrochtám\nchrochtáme\nchrochtáš\nchrochtať\nchrochtáte\nchrochtavo\nchrochtavý\nchróman\nchromatickosť\nchromatický\nchromatid\nchromatída\nchromatika\nchromatín\nchromatizmus\nchromatofor\nchromatografia\nchromatografie\nchromatografiu\nchromatopsia\nchromatóza\nchróm\nchromejšej\nchromejší\nchromejšia\nchromejšie\nchromejšieho\nchromejšiemu\nchromejších\nchromejším\nchromejšími\nchromejšiu\nchromejšom\nchromejšou\nchromit\nchromitan\nchromito\nchromitý\nchrómniklovej\nchromo\nchromofor\nchromometria\nchromonéma\nchromoplast\nchromoproteín\nchromosféra\nchromosť\nchromotypia\nchromotypický\nchrómované\nchrómovanej\nchrómovanie\nchrómovanom\nchrómovaných\nchrómovať\nchrómový\nchromozóm\nchromozómový\nchromý\nchron\nchronicita\nchronickosť\nchronicky\nchronický\nchronik\nchronobiológia\nchronograf\nchronografický\nchronogram\nchronokrator\nchronol\nchronológia\nchronologicky\nchronologický\nchronologizácia\nchronometer\nchronometria\nchronometrický\nchronos\nchronostichon\nchronostratigrafický\nChropov\nChropovský\nchrotta\nchŕŕŕ\nchrst\nchrstnúť\nChrťanoch\nChrťany\nchrt\nchrty\nChrudim\nchrudimský\nchrum\nchrúm\nchrúmanie\nchrúmať\nchrumkanie\nchrumkať\nchrumkavo\nchrumkavý\nchrumka\nchrúmme\nchrúmte\nchruňo\nchrúpajúc\nchrúpať\nchrupavka\nchrup\nchrupč\nchrupčať\nchrupči\nchrupčime\nchrupčite\nchrupkať\nchrupkavý\nchrupka\nchrupkovitý\nchrupkový\nchrupnúť\nchrupot\nchrupotmi\nchrupový\nchrupšť\nchrupšťal\nchrupšťala\nchrupšťali\nchrupšťalo\nchrupšťať\nchrupšti\nchrupští\nchrupštia\nchrupštiac\nchrupštím\nchrupštime\nchrupštíme\nchrupštíš\nchrupštite\nchrupštíte\nchrupšťme\nchrupšťte\nchrústami\nchrúst\nchrústik\nchrústy\nchryzantém\nchryzantémach\nchryzantémam\nchryzantéma\nchryzoberyl\nchryzokol\nchryzolit\nchryzolitový\nchryzománia\nchryzopras\nchryzostomos\nChryzotil\nChtelnica\nChtelnice\nChtelnici\nchtelnickej\nChtelnicu\nchtivo\nchtivosť\nchtivý\nchtonický\nchtupnúť\nchúďa\nchudáčik\nchudáčisk\nchudáčiská\nchudáčiskách\nchudáčiskám\nchudáčisko\nchudáčisku\nchudák\nchudastý\nchúďatiek\nchúďatko\nchúdence\nchúdencoch\nchúdencom\nchúdeniec\nchudera\nchuderka\nchudiatko\nchudiatok\nchudier\nchudina\nchudinka\nchudnúci\nchudnutia\nchudnutie\nchudnúť\nchudo\nchudôb\nchudobách\nchudobám\nchudobami\nchudoba\nChudobine\nchudobinec\nchudobne\nchudobnejší\nchudobnením\nchudobnieť\nchudobnosť\nchudobný\nchudokrvnosť\nchudokrvný\nchudorľavo\nchudorľavosť\nchudorľavý\nchudosť\nchudučko\nchudučký\nchudulinko\nchudulinký\nchudunko\nchudunký\nchudý\nchuchma\nchuchmať\nchuchmatý\nchuchňať\nchuchvalec\nchujavica\nchuj\nchuje\nchujovina\nchuju\nchuligán\nchuligánka\nchuligánsky\nchuligánstvach\nchuligánstvam\nchuligánstvo\nchúliť\nchúlostivieť\nchúlostivo\nchúlostivosť\nchúlostivý\nchumáčik\nchumáčikovitý\nchumáč\nchumáčkovitý\nchumáčovitý\nchumáčový\nchumaj\nchumajsky\nchumajský\nchumajstvo\nchumelica\nchumeliť\nchumeľ\nchumľa\nchumľami\nchumlať\nchumľoch\nchumľom\nchumľov\nchumľu\nchúnt\nchunta\nchural\nchurma\nchute\nchutiaci\nchutieva\nchutievaj\nchutievajme\nchutievajte\nchutievajú\nchutievajúc\nchutieval\nchutievala\nchutievali\nchutievalo\nchutievam\nchutievame\nchutievaš\nchutievať\nchutievate\nchutiť\nchúťka\nchuťN\nchutnajúci\nchutnať\nchutne\nchutney\nchutno\nchutnosť\nchutnučko\nchutnučký\nchutnulinko\nchutnulinký\nchutný\nchuťove\nchuťovka\nchuťovo\nchuťový\nchvácu\nchvácuc\nchvál\nchváľa\nchvalabohu\nchválach\nchválam\nchvála\nchválenia\nchválenie\nchválením\nchválenkár\nchválenkárka\nchválenkársky\nchválenkárstvach\nchválenkárstvam\nchválenkárstvo\nchválený\nchválitebne\nchválitebný\nchváliť\nchválorečený\nchválorečiť\nchváloreč\nchválospev\nchválospeve\nchválospevný\nChvalová\nChvalovský\nchvályhodne\nchvályhodnosť\nchvályhodný\nchvasci\nchvascime\nchvascite\nchvastanie\nchvastaním\nchvastať\nchvastávať\nchvastavo\nchvastavý\nchvastoň\nchvastoš\nchvastúň\nchvastúni\nchvastúnka\nchvastúnsky\nchvastúnstvach\nchvastúnstvam\nchvastúnstvo\nchvátať\nchvátavo\nchvat\nChvatimech\nChvatimechom\nChvatimechu\nchvatkať\nchvatmi\nchvatnúť\nchvatný\nchveje\nchvejem\nchvejeme\nchveješ\nchvejete\nchvejivo\nchvejivý\nchvejný\nchvejúci\nchvenie\nchvieť\nchvíľ\nchvíľa\nchvíľka\nchvíľkovo\nchvíľkový\nchvíľočka\nchvojach\nchvojam\nchvoja\nchvojí\nchvojina\nchvojka\nchvojkový\nChvojnica\nChvojnice\nChvojnici\nchvojnických\nchvojový\nchvosta\nchvost\nchvostík\nchvostový\nchýbajúci\nchýbanie\nchýbať\nchýbavať\nchyba\nchybička\nchybieť\nchybiť\nchybne\nchybný\nchybovať\nchybovosť\nchybový\nchýl\nchýliť\nchylofyl\nChylom\nchylus\nchymozín\nchýmus\nChynoranoch\nChynorany\nChynorian\nchynorianskeho\nchynorianskom\nchypre\nchýr\nchýre\nchýrečne\nchýrečný\nchýrmi\nchýrny\nchýroch\nchýrom\nchýrov\nchyrovať\nchýru\nchýry\nchystačka\nchystajúce\nchystajúcej\nchystaný\nchystať\nchystávať\nchytač\nchytače\nchytačka\nchytaču\nchytadlo\nchyták\nchytanieN\nchytaný\nchytať\nchytenie\nchytený\nchytiť\nchytkať\nchytľavo\nchytľavosť\nchytľavý\nchytráckosť\nchytrácky\nchytráctvach\nchytráctvam\nchytráctvo\nchytráčení\nchytráčenia\nchytráčenie\nchytráčeniu\nchytráčiť\nchytráčka\nchytrák\nchytrejšej\nchytrejší\nchytrejšia\nchytrejšie\nchytrejšieho\nchytrejšiemu\nchytrejších\nchytrejším\nchytrejšími\nchytrejšiu\nchytrejšom\nchytrejšou\nchytro\nchytrosť\nchytrý\nchyža\nchyží\nchyžka\nchyžná\nCHZJD\ni\nI\ní\nia\niá\nIAAF\niactatio\niatrofyzika\niatrogénia\niatrochémia\niba\nibaže\niberoamer\niberoamerickej\niberoamerickom\niberský\nibidem\nibis\nibisovi\nibiša\nibiše\nibiši\nibiš\nibišmi\nibišoch\nibišom\nibišov\nibištek\nibišu\nIBM\nibn\nIC\nICL\nIČO\nID\niď\níd\nÍd\nida\nidá\nIdaha\nIdaho\nIdahu\nIdách\nidám\nIdám\nIda\nIDC\nide\nideál\nideálčiť\nideáli\nidealista\nidealistickejšíF\nidealisticky\nidealistický\nidealistka\nidealizácia\nidealizačný\nidealizmus\nidealizovanie\nIdealizovaním\nidealizovaný\nidealizovať\nideálmi\nideálnosť\nideálny\nidea\nidem\nideme\nident\nidentickosť\nidenticky\nidentický\nidentifikácia\nidentifikačný\nidentifikátor\nidentifikovanie\nidentifikovaný\nidentifikovateľnosť\nidentifikovateľný\nidentifikovať\nidentifikujúci\nidentít\nidentita\nidentitický\nideografický\nideografičký\nideogram\nideokracia\nideológ\nideológia\nideologickosť\nideologicky\nideologický\nideologizácia\nideologizované\nideologizovania\nideologizovanie\nideologizovaním\nideologizovaných\nideologizovať\nideotyp\nideove\nideovo\nideovo-estetický\nideovo-politický\nideovosť\nideovo-umelecký\nideovovýchovný\nideovo-výchovný\nideový\nideš\nidete\nidiazabel\nIdiným\nidioblast\nidiocia\nidiofón\nidiogamia\nidioglosia\nidiograf\nidiogram\nidiochromozóm\nidiolatria\nidiolekt\nidiom\nidiomaticky\nidiomatický\nidiomatizmus\nidióm\nidiomorfia\nidiopatia\nidiopatický\nidiosynkrázia\nidiot\nidiotia\nidiotikon\nidiotizmus\nidiotskejší\nidiotsky\nidiotský\nidiotstvo\nIdka\nIdke\nIdkou\nIdku\nIdky\niďme\nido\nIDO\nidolatria\nidol\nidoli\nidololatria\nidolovi\nidolový\nIDOM\niďte\nidú\nidúc\nidúca\nidúce\nidúceho\nidúcej\nidúci\nidúcich\nidúcim\nidúcimi\nidúcky\nidúcom\nidúcou\nidúcu\nIdus\nidýl\nidyla\nidylickosť\nidylicky\nidylický\nidylizovať\nidylka\nie\nIEP\nIF\nIFOR\nigelit\nigelitka\nigelitmi\nigelitový\niglu\niglú\nIgnác\nIgnácia\nIgnácovej\nigni\nignipunktúra\nignorancia\nignorant\nignorantka\nignorantsky\nignorantský\nignorantstvo\nignorovanie\nignorovaný\nignorovať\nIgora\nIgor\nIgormi\nIgoroch\nIgorom\nIgorov\nIgorovi\nIgorovia\nIgram\nigric\niguanodon\nigumen\nih\níh\niha\níha\nihaha\nihahá\niháj\níhaj\nihál\nihelnica\nihelnička\nihelník\nihiel\nihielka\nihihí\nihlách\nihlám\nihlan\nihlanček\nIhľanoch\nihlanovitý\nihlanový\nIhľany\nihla\nihlica\nihlicovite\nihlicovito\nihlicovitý\nihlicový\nihličí\nihličia\nihličiach\nihličiam\nihličiami\nihličie\nihličím\nihličiu\nihlička\nihličkovitý\nihličkový\nihličnan\nihličnatý\nihlovitý\nihlový\nihneď\nihop\nIHRA\nIhráč\nIhráči\nihračkať\nihráčsky\nihrajkať\nihrať\nihravo\nihravosť\nihravý\nihrísk\nihrisko\nihriskový\nihruškať\nihú\nihuhú\nich\nichni\nichnofosília\nichnogram\nichnológia\nichor\nichtamol\nichtyofág\nichtyofauna\nichtyografia\nichtyol\nichtyológ\nichtyológia\nichtyologický\nichtyolový\nichtyosaurus\nichtyóza\nichu\nichú\nichuchu\nichuchú\nii\nII\níí\nIIHF\niii\nIII\nIkara\nIkarom\nIkaros\nIkarovi\nikarovský\nikebán\nikebana\nikernáča\nikernáč\nikernačka\nikernáčovi\nikier\nikon\nikôn\nikona\nikonickosť\nikonický\nikonifikovaný\nikonifikovať\nikonizácia\nikonka\nikonodúlia\nikonografia\nikonografický\nikonoklazmus\nikonoskop\nikonostas\nikonostasy\nikonový\nikozaéder\nikráč\nikrách\nikrám\nikra\nIKT\nikterus\niktus\nilácia\nIlava\nIlave\nIlavou\nilavského\nilavskej\nilavskí\nilavskou\nIlavský\nIlavu\nIlavy\níl\nIle\nilegalita\nilegálnosť\nilegálny\nilegitímny\nileitída\nileokolitída\nileostómia\nileum\nileus\nIliada\nIliaš\nIliaša\nIlija\nilikvidita\nilimerizácia\nilimitovaný\nilit\niliterárny\nIľja\nIljušin\niľjušin\niljušiny\nIľku\nillinoian\nillinoiskom\nillit\nilmenitu\nílmi\nílnatý\nílovina\nílovito\nílovitý\nílový\niluminácia\niluminačný\niluminátor\niluminoval\niluminovaný\niluminovať\nilustrácia\nilustračne\nilustračný\nilustratívnosť\nilustratívny\nilustrátor\nilustrátorka\nilustrátormi\nilustrátorský\nilustrátorstvo\nilustrovaný\nilustrovať\niluviácia\nilúvium\nilúzia\niluzionista\niluzionisticky\niluzionistický\niluzionistka\niluzionizmus\niluzívnosť\niluzívny\niluzonizmus\niluzórnosť\niluzórny\nilýr\nIlýria\nilýrsky\nim\nimage\nimaginácia\nimaginačne\nimaginačný\nimaginárnosť\nimaginárny\nimaginatívnosti\nimaginatívny\nimaginizmus\nimago\nimám\nimamát\nimámit\nimanencia\nimanentne\nimanentnosť\nimanentný\nimanie\nimateriálny\nimatrikulácia\nimatrikulačný\nimatrikulované\nimatrikulovať\nimaturita\nimbecila\nimbecil\nimbecilita\nimbecilmi\nimbecilne\nimbecilný\nimbecilovi\nimbecilovia\nimbibovať\nimbreviatúra\nimbroglio\nimediátny\nimel\nImeľ\nImeľa\nimelo\nimelový\nimenzita\nimenzurabilný\nimerzia\nIMI\nimid\nimidža\nimidže\nimidži\nimidž\nimidžmi\nimidžoch\nimidžom\nimidžov\nimidžu\nimigrácia\nimigračný\nimigrant\nimigrantky\nimigrovať\nimín\niminentný\nimisia\nimisiách\nImisiám\nimisiami\nimisie\nimisií\nimisiou\nimitácia\nimitačný\nimitancia\nimitátor\nimitátorka\nimitátormi\nimitátorský\nimitátorstvo\nimitovanie\nimitovaním\nimitovaný\nimitovať\nimitujúci\nImmaculata\nimmunitas\nimobilárny\nimobília\nimobílie\nimobílií\nimobilita\nimobilizácia\nimobilizácie\nimobilizáciu\nimobilizovali\nimobilizované\nimobilizovať\nimobilnosť\nimobilný\nimonukomplex\nimoralita\nimorálnosť\nimortalita\nimp\nimpakcia\nimpakt\nimpaktit\nImpala\nimpaly\nimparita\nimpasibilita\nimpasto\nimpedancia\nimpedančný\nimperatív\nimperatíve\nimperatívnosť\nimperatívny\nimperátor\nimperátormi\nimperátorsky\nimperátorský\nimperfekt\nimperfektný\nimperfektový\nimperfektum\nimperforácia\nimperiál\nimperialista\nimperialisticky\nimperialistický\nimperialistovej\nimperializmus\nimperiálny\nimpériový\nimpérium\nimpermeabilita\nimpersonálny\nimpertinencia\nimpertinentne\nimpertinentnosť\nimpertinentný\nimpetigo\nimpetuózny\nimpf\nimplantácia\nimplantačný\nimplantát\nimplantátmi\nimplantibilný\nimplantovania\nimplantovanie\nimplantovaním\nimplantovaný\nimplantovať\nImplantové\nimplementácia\nimplementačný\nimplement\nimplementovanie\nimplementovaný\nimplementovateľný\nimplementovať\nimplicent\nimplicit\nimplicitne\nimplicitnosť\nimplicitný\nimplikácia\nimplikačný\nimplikovaný\nimplikovať\nimplózia\nimplóziou\nimponderabilita\nimponovať\nimponujúci\nimportantný\nimport\nimportér\nimportérova\nimportérska\nimportérske\nimportérskeho\nimportérskej\nimportérskou\nimportérsku\nimportérsky\nimportérskych\nimportérskym\nimportmi\nimportne\nimportno\nimportný\nimportovací\nimportovanie\nimportovaný\nimportovať\nimportúnny\nimpotencia\nimpotent\nimpotentne\nimpotentnosť\nimpotentný\nimpozantne\nimpozantnosť\nimpozantný\nimpregnácia\nimpregnačný\nimpregnovanie\nimpregnovaný\nimpregnovať\nImpres\nimpresário\nimpresia\nimpresionista\nimpresionisticky\nimpresionistický\nimpresionistka\nimpresionizmus\nimpresívna\nimpresívne\nimprimatur\nimprimovať\nimprinting\nimpromtu\nimprovizácia\nimprovizačne\nimprovizačný\nimprovizátor\nimprovizátorka\nimprovizátormi\nimprovizátorský\nimprovizovane\nimprovizovaním\nimprovizovaniu\nimprovizovanosť\nimprovizovaný\nimprovizovať\nimpulz\nimpulzívnosť\nimpulzívny\nimpulzne\nimpulzný\nimpulzovo\nimpulzový\nimputovanie\nimputovaný\nimputovať\nImra\nImre\nImrich\nImriška\nimunita\nimunitne\nimunitný\nimunizácia\nimunizácie\nimunizácii\nimunizáciu\nimunizačný\nimunizované\nimunizovaní\nimunizovať\nimúnnosť\nimúnny\nimunobiológia\nimunocit\nimunodeficiencia\nimunodeficit\nimunofarmakológia\nimunogén\nimunoglobulín\nimunohematológia\nimunoinkompatibilita\nimunokompetencia\nimunokomplex\nimunológ\nimunológia\nimunologický\nimunologička\nimunosupresia\nin\nIňa\ninač\nináč\ninačený\ninadaptabilita\ninadekvátny\ninadiaľ\ninak\ninakosť\ninakší\ninaktivácia\ninaktivácie\ninaktiváciu\ninaktivita\ninaktívnosť\ninaktívnych\ninaktivovaný\ninam\ninanícia\ninaparentný\ninaugurácia\ninauguračný\ninaugurovaním\ninaugurovaný\ninaugurovať\nincentíva\nincest\nincestom\ninciála\nincidencia\nincidencie\nincidencií\nincidenciou\nincidenciu\nincident\nincidentmi\nincidovať\nincinerácia\nincipientný\nincipit\nincízia\nincizúra\nincorporated\nIncoterms\nind\nInd\nInda\nindagácia\ninde\nindebite\nindeciso\nindefinitný\nindemnita\nindependent\nIndependent\nindependentizmus\nindependentný\ninderit\nindeterminizmus\nindeterminovanosť\nindeterminovaný\nindexácia\nindex\nindexný\nindexovanie\nindexovaný\nindexovať\nindexovo\nindexový\nindián\nIndián\nindiánka\nindiánsky\nindiánsky\nIndia\nindiciálny\nindícia\nindickooceánsky\nindicky\nindický\nIndiek\nindiferencia\nindiferencie\nindiferentne\nindiferentnosť\nindiferentný\nindíg\nindigénny\nindigescia\nindignácia\nindignovaný\nindigo\nindigový\nindikácia\nindikačný\nindikatív\nindikatíve\nindikatívny\nindikátor\nindikátorový\nindikcia\nindikovane\nindikovania\nindikovanie\nindikovaný\nindikovať\nindikujúci\nindirektný\nindiskrécia\nindiskrécie\nindiskrécii\nindiskrécií\nindiskréciu\nindiskrétnosť\nindiskrétny\nindisponibilita\nindisponovane\nindisponovanosť\nindisponovaný\nindispozícia\nindium\nindividiuálnu\nindividualista\nindividualisticky\nindividualistický\nindividualistka\nindividualita\nindividualizácia\nindividualizačný\nindividualizmus\nindividualizovaný\nindividualizovať\nindividuálnosť\nindividuálny\nindivíduí\nindivíduum\nindivirualizácia\nIndka\nIndmi\nIndočína\nIndočíne\nIndočínu\nIndočíny\nindoeur\nindoeuróp\nIndoeurópan\nindoeuropeistika\nindoeurópsky\nIndoch\nindoirán\nindol\nindolencia\nindolentne\nindolentnosť\nindolentný\nindológia\nIndom\nindonéz\nIndonézia\nindonézsky\nindoor\nindosácia\nindosament\nindosamentom\nindosamentov\nindosamenty\nindosant\nindosoval\nindosovala\nindosovaná\nindosované\nIndov\nIndovia\nindukcia\nindukčne\nindukčnosť\nindukčný\nindukovaný\nindukovať\ninduktivitou\ninduktívne\ninduktívnosť\ninduktívny\ninduktor\ninduktorový\nindulgencia\nindult\nindurácia\nindustrálny\nindustria\nindustrializácia\nindustrializačný\nindustrializmom\nindustrializmu\nindustrializmus\nindustrializovaný\nindustrializovať\nindustriálny\nIndustrie\nIndustrii\nindustrií\nIndustriu\niné\nineditum\ninefektívny\ninefektný\ninerciálny\ninercia\ninerčný\ninertne\ninertnosť\ninertnosti\ninertný\ninervácia\ninervovať\ninezit\ninf\ninfalibilný\ninfamácia\ninfámia\ninfámne\ninfámnosť\ninfámny\ninfancia\ninfant\ninfantéria\ninfanterista\ninfanticída\ninfantilizmus\ninfantilne\ninfantilnosť\ninfantilnosti\ninfantilný\ninfantka\ninfarkt\ninfarktmi\ninfarktový\ninfaustný\ninfekcia\ninfekčne\ninfekčnosť\ninfekčný\ninfekt\ninfektológ\ninfektológia\ninfektológie\ninfektológii\ninferencia\ninferencii\ninferenčný\ninferiorita\ninferiórne\ninferiórnosť\ninferiórny\ninfernálny\ninfertilita\ninfertilný\ninfidelita\ninfikovane\ninfikovania\ninfikovanie\ninfikovaním\ninfikovaniu\ninfikovaný\ninfikovať\ninfiltrácia\ninfiltračný\ninfiltrované\ninfiltrovanej\ninfiltrovaní\ninfiltrovať\ninfinitezimalita\ninfinitezimálny\ninfinitív\ninfinitíve\ninfinitívny\ninfinitizmus\ninfinitný\ninfirmita\ninflácia\ninflačne\ninflačno\ninflačný\ninflagranti\ninflamácia\ninflamatórny\ninflexia\ninflexný\ninfluencia\ninfluenza\ninfluenze\ninfolinka\ninfomácia\ninfor\ninform\ninformáciach\ninformácia\ninformačne\ninformačnejší\ninformačno\ninformačný\ninformatický\ninformatička\ninformatika\ninformatik\ninformatívnejší\ninformatívny\ninformatizácia\ninformátor\ninformátore\ninformátorka\ninformátormi\ninformátorský\ninformátorstvo\ninformátoru\ninformátory\ninformel\ninformovane\ninformovanie\ninformovanosť\ninformovaný\ninformovať\ninformujúci\ninfoservis\ninfotainment\ninfra\ninfračervene\ninfračerveno\ninfračervený\ninfrakcia\ninfraklavikulárny\ninfralampa\ninfralitorál\ninfraslúchadlá\ninfraštruktúr\ninfraštruktúrach\ninfraštrukturálny\ninfraštruktúram\ninfraštruktúra\ninfraštruktúrny\ninfrazvuk\ninfražiarič\ninfula\ninfúzia\ninfúzum\nIng\nING\nInga\nInge\ningeniózny\ningerencia\ningerenciách\ningerenciám\ningerenciami\ningerencie\ningerencii\ningerencií\ningerenciou\ningerenciu\ningescia\nInglostadt\ningolstadtský\ningot\ningotmi\ningotový\ningrediencia\ningres\nIngrid\nIngríd\nIngrida\ninguina\nIngy\ninhabilita\ninhalácia\ninhalačný\ninhalátor\nInhalatória\ninhalovanie\ninhalovanú\ninhalovať\ninherencia\ninherentne\ninherentný\ninhibícia\ninhibičný\ninhibítor\ninhomogenita\ninhumánny\ninch\niní\niniciácia\niniciačná\niniciačne\niniciačné\niniciačného\niniciačnej\niniciačnú\niniciačný\niniciačných\niniciačným\niniciál\niniciálach\niniciálam\niniciála\ninicializácia\ninicializačný\ninicializovaný\ninicializovať\niniciálka\niniciálkový\niniciálna\niniciálnej\niniciálnemu\niniciálny\niniciálový\niniciatív\niniciatívach\niniciatívam\niniciatíva\niniciatívnosť\niniciatívny\niniciátor\niniciátorka\niniciátormi\niniciovanie\niniciovať\ninjekcia\ninjekčne\ninjekčný\ninjektáž\ninjektážami\ninjektáže\ninjektáži\ninjektážou\ninjektor\ninjektorový\ninjektovaná\ninjektovaného\ninjektovanie\ninjektovaním\ninjektovaných\ninjektovať\ninjikácia\ninjunkcia\ninjuria\ninkantácia\ninkapsulácia\ninkarcerácia\ninkarnácia\ninkarnát\ninkás\ninkasant\ninkasantka\ninkasne\ninkasný\ninkaso\ninkasovania\ninkasovanie\ninkasovaním\ninkasovaniu\ninkasovaný\ninkasovať\ninkaustika\ninkbátor\nInk\ninklinácia\ninklinačný\ninklinovanie\ninklinovať\ninklusive\ninklúzia\ninkluzíve\ninkluzívne\ninkognít\ninkognito\ninkoherencia\ninkolát\ninkomparabilný\ninkompatibilita\ninkompatibilný\ninkompetencia\ninkonsekvencia\ninkontinencia\ninkontinencie\ninkontinencii\ninkontinenciou\ninkonveniencia\ninkonzekvencia\ninkonzistencia\ninkonzistencie\ninkonzistenciu\ninkorporácia\ninkorporačný\ninkorporované\ninkorporovanej\ninkorporovaním\ninkorporovať\nInkovia\ninkrécia\ninkrement\ninkrementálneho\ninkrét\ninkriminácia\ninkriminovaný\ninkriminovať\ninkriminujúci\ninkrustácia\nInku\ninkubácia\ninkubačný\ninkubátor\ninkunábul\ninkunábula\ninkvirovať\ninkvizácia\ninkvizícia\ninkvizičný\ninkvizítor\ninkvizítormi\ninkvizítorsky\ninkvizítorský\ninline\ninmemoriam\nInnsbruck\ninnsbrucký\ninoetnický\ninofarebnému\ninofarebnými\ninojazyčne\ninojazyčný\ninokade\ninokedy\ninokulácia\ninokulum\ninonárodný\ninoperabilný\ninorečový\ninorodý\ninosť\ninotaj\ninovácia\ninovačne\ninovačný\ninovaťami\ninovate\ninovati\ninovatí\ninovatiach\ninovatiam\ninovatka\ninovaťou\ninovať\nInovec\ninovecký\ninoverec\ninoverecký\ninovoval\ninovovala\ninovovali\ninovovalo\ninovovanie\ninovovaný\ninovovať\ninovský\ninovuj\ninovuje\ninovujem\ninovujeme\ninovuješ\ninovujete\ninovujme\ninovujte\ninovujú\ninovujúc\ninput\ninsania\ninscenácia\ninscenačný\ninscenátor\ninscenátormi\ninscenovanie\ninscenovaný\ninscenovať\ninsekt\ninsekticíd\ninsekticídny\ninsekticídy\ninsektivora\ninsektológ\ninsektológia\ninseminácia\ninseminačný\ninseminátor\ninseminovať\ninsenzibilita\ninsert\ninsígniách\ninsígniám\ninsígniami\ninsígnie\ninsígnií\ninsinuácia\ninsinuovaním\ninsinuovať\ninsistovať\ninsitne\ninsitnosť\ninsitný\ninskripcia\ninsolácia\ninsolancia\ninsolencia\ninsolvencia\ninsolventnosť\ninsolventný\ninsomnia\ninspirácia\ninspirovala\ninspirovať\ninspiruje\ninstabilita\ninstantný\ninstigácia\ninstilácia\ninstr\ninstradácia\nInstruments\ninsuficiencia\ninsuficientnosť\ninsuficientný\ninsuflácia\ninsulárny\ninsurekcia\ninšej\ninší\ninšia\ninšie\ninšieho\ninšiemu\ninších\ninším\ninšími\ninšiu\ninšom\ninšou\ninšpekcia\ninšpekčno\ninšpekčný\ninšpektorát\ninšpektorátmi\ninšpektor\ninšpektorka\ninšpektormi\ninšpektorský\ninšpícia\ninšpicient\ninšpicientiek\ninšpicientkách\ninšpicientkám\ninšpicientka\ninšpicientsky\ninšpicientský\ninšpirácia\ninšpiračne\ninšpiračný\ninšpiratívne\ninšpiratívny\ninšpirátor\ninšpirátorka\ninšpirátormi\ninšpirátorský\ninšpirovanie\ninšpirovaný\ninšpirovať\ninšpirujúci\ninšt\ninštalácia\ninštalačný\ninštalatér\ninštalatérka\ninštalatérsky\ninštalatérstvo\ninštalátorB\ninštalovanie\ninštalovaný\ninštalovateľný\ninštalovať\ninštancia\ninštančne\ninštančnosť\ninštančný\ninštinkt\ninštinktívne\ninštinktívnosť\ninštinktívny\ninštinktmi\ninštitúciach\ninštitúcia\ninštitucionalizmus\ninštitucionalizovania\ninštitucionalizovanie\ninštitucionalizovaním\ninštitucionalizovaniu\ninštitucionalizovaný\ninštitucionalizovať\ninštitucionálnach\ninštitucionálnam\ninštitucionálnami\ninštitucionálny\ninštitučne\ninštitučný\ninštitút\ninštitútmi\ninštr\ninštrukcia\ninštrukčne\ninštrukčný\ninštruktážach\ninštruktážam\ninštruktáž\ninštruktážny\ninštruktívne\ninštruktívnosť\ninštruktívny\ninštruktor\ninštruktorka\ninštruktormi\ninštruktorský\ninštrumentácia\ninštrumentačne\ninštrumentačný\ninštrumentál\ninštrumentáli\ninštrumentalista\ninštrumentálmi\ninštrumentálny\ninštrumentálový\ninštrumentár\ninštrumentária\ninštrumentáriá\ninštrumentáriom\ninštrumentáriu\ninštrumentárium\ninštrumentárka\ninštrument\ninštrumentmi\ninštrumentovať\ninštruovaná\ninštruované\ninštruovaní\ninštruovanie\ninštruovať\nint\nintabulácia\nintabuláciou\nintabulačnému\nintaglia\nintaktnosť\nintaktnosti\nintaktný\nintarzia\nintarzovaný\nintegrácia\nintegračne\nintegračný\nintegrál\nintegráli\nintegrálmi\nintegrálnosť\nintegrálny\nintegrátor\nIntegrátormi\nintegrít\nintegrita\nintegrovane\nintegrovania\nintegrovanie\nintegrovaním\nintegrovaniu\nintegrovaný\nintegrovať\nintegrujúci\nIntel\nintelekt\nintelektmi\nintelektrualizácia\nintelektuál\nintelektualizácia\nintelektualizmus\nIntelektualizovať\nintelektuálka\nintelektuálne\nintelektuálnosť\nintelektuálny\nintelektuálsky\nintelektuálstvach\nintelektuálstvam\nintelektuálstvo\ninteligencia\ninteligenčne\ninteligenčný\ninteligent\ninteligentka\ninteligentne\ninteligentnejšíF\ninteligentnosť\ninteligentný\nintencia\nintencionalita\nintencionálny\nintenčný\nintendačná\nintendačne\nintendancia\nintendančný\nintendant\nintendantský\nintendantúra\nintendantúry\nintenzifikácia\nintenzifikačný\nintenzifikovaný\nintenzifikovať\nintenzimeter\nintenzít\nintenzita\nintenzitný\nintenzívnosť\nintenzívny\ninterakcia\ninterakčný\ninterakt\ninteraktívny\ninteratómový\nInter\ninterbrigád\ninterbrigádach\ninterbrigádam\ninterbrigáda\nintercedent\nintercelulára\nintercepcia\ninterceptor\nintercesia\ninterdependencia\ninterdikt\ninterdisciplinárny\ninteregnum\ninteresant\ninteresantne\ninteresantnosť\ninteresantný\ninteres\ninteresovanie\ninteresovať\ninterface\ninterfáza\ninterfejs\ninterferencia\ninterferenčný\ninterferometria\ninterferón\ninterferovať\ninterfertilita\ninterferujú\ninterferujúci\nintergénový\ninterglaciál\nInterhotel\nInterhoteli\nInterhotelmi\nInterhoteloch\nInterhotelom\nInterhotelov\nInterhotelu\nInterhotely\nInteri\ninteriér\ninteriéri\ninteriérmi\ninteriéroch\ninteriérom\ninteriérov\ninteriérovo\ninteriérový\ninteriéru\ninteriéry\ninterim\nInterim\ninterimálny\ninteriorizácia\ninterj\ninterjekcia\ninterjekcionálny\ninterjekčný\ninterklúzia\ninterkom\ninterkomunikačného\ninterkontinentálny\ninterkozmický\ninterkros\ninterkurentný\ninterlineárny\ninterlingua\ninterludium\nIntermédia\nintermediálny\nintermediárny\nintermezz\nintermezzo\nintermisia\nintermitentný\nintermitovaný\nintermitóza\nintermolekulárny\nintermuskulárny\ninterna\ninternácia\ninternacionál\ninternacionálach\ninternacionálam\ninternacionála\nInternacionáli\ninternacionalista\ninternacionalisticky\ninternacionalistický\ninternacionalistka\ninternacionalizácia\ninternacionalizmus\ninternacionalizovaný\ninternacionalizovať\ninternacionálnosť\ninternacionálny\ninternacionálom\ninternacionálov\ninternačný\ninternalizácia\ninternát\ninternational\ninternátmi\ninternátny\ninterne\ninternet\ninternetbanking\ninternetista\ninternetovo\ninternetovskej\ninternetový\ninternista\ninternistické\ninternistickej\ninternistickú\ninternistických\ninternistka\ninterno\ninternovanie\ninternovaniu\ninternovaný\ninternovať\ninterný\ninterocepcia\ninteroceptor\ninterorecepcia\ninteroreceptor\ninterparlamentný\ninterpelácia\ninterpelačný\ninterpelovať\ninterpendencia\ninterpersonálny\ninterpetovať\ninterplanetárny\ninterpolácia\ninterpolačný\ninterpolovanie\ninterpolovať\ninterpolujúci\ninterponovať\ninterpozícia\ninterpretácia\ninterpretačne\ninterpretačný\ninterpretátor\ninterpretátorka\ninterpretátormi\ninterpret\ninterpretéra\ninterpretka\ninterpretova\ninterpretovanie\ninterpretovaný\ninterpretovať\ninterpretovej\ninterpunkcia\ninterpunkčný\ninterregnum\ninterrupcia\ninterrupčný\nintersexualita\nintersexuálny\nintersticiálny\ninterstícium\nintersubjektivita\nintertrigo\nintervaläintervencia\ninterval\nintervalmi\nintervalový\nintervencia\nintervenčne\nintervenčný\nintervenient\nintervenovania\nintervenovanie\nintervenovaním\nintervenovaný\nintervenovať\nintervent\ninterview\ninterviewovaný\ninterviewovať\nIntervízie\nintervokalický\nintervokálny\nintestát\nintestinálny\nintestínum\nintevokálny\nintifáda\nintimácia\nintimát\nintime\nintimidácia\nintimita\nintímnosť\nintímny\nintimus\nINTIMUS\nintolerancia\nintolerancie\nintolerancii\nintoleranciou\nintoleranciu\nintolerantný\nintonácia\nintonačne\nintonačný\nintonovať\nintoxikácia\nintoxikačný\nintoxikovaný\nintoxikovať\nintraalveolárny\nintraartikulárny\nintracelulárny\nintracerebrálny\nintráda\nintradermálny\nintraflorálny\nintragénový\nintrakomunitárny\nintrakraniálny\nintramolekulárny\nintramuskulárny\nintranet\nintransigentný\nintranukleárny\nintranzitívny\nintranzitívum\nintraperitoneálny\nIntrastat\nintrauterinný\nintravaskulárny\nintravenózne\nintravenózny\nintravilán\nintravilánový\nintríg\nintrigán\nintrigánka\nintrigánsky\nintrigánstvach\nintrigánstvam\nintrigánstvo\nintriga\nintrigovania\nintrigovaním\nintrigovať\nintrigový\nintrodukcia\nintrodukovali\nintroit\nintrojekcia\nintronizácia\nintrospekcia\nintrospekčný\nintrospektívnejší\nintrospektívny\nintrovert\nintroverta\nintroverti\nintrovertne\nintrovertnosť\nintrovertný\nintroverzia\nintrúzia\nintuícia\nintuitivizmus\nintuitívnejší\nintuitívnosť\nintuitívny\nintumescencia\ninuk\ninulín\ninundácia\ninundačný\ninundovať\ninvalid\ninvalidita\ninvalidizácii\ninvalidnejší\ninvalidný\nInvalidovni\ninvar\ninvariabilný\ninvariancia\ninvariant\ninvariantnosť\ninvariantný\ninvázia\ninvázny\ninvektív\ninvektívach\ninvektívam\ninvektíva\ninvektívny\ninvencia\ninvenčne\ninvenčnosť\ninvenčný\ninventarizácia\ninventarizačný\ninventarizovaný\ninventarizovať\ninventár\ninventármi\ninventárny\ninventazizácia\ninventúr\ninventúrach\ninventúram\ninventúra\ninventúrny\ninvenúrny\ninvertáza\ninvertný\ninvertor\ninvertovanie\nInvertovaný\ninvertovať\ninverzia\ninverzne\ninverzný\ninvestíciach\ninvestíciam\ninvestícia\ninvestične\ninvestično\ninvestičný\ninvestigácia\ninvestigatívnosť\ninvestigatívny\ninvestitúra\ninvestor\ninvestormi\ninvestorova\ninvestorove\ninvestorovej\ninvestorovho\ninvestorovo\ninvestorovu\ninvestorovými\ninvestorsky\ninvestorský\ninvestovanie\ninvestovaný\ninvestovať\ninvestujúci\ninvokácia\ninvokačný\ninvokovať\ninvolúcia\ninvolúcii\ninvolvovaný\ninvolvovať\nINY\niný\ninzerant\ninzerát\ninzerátmi\ninzerátový\ninzercia\ninzerčnom\ninzerent\ninzerovania\ninzerovanie\ninzerovaný\ninzerovať\ninzertne\ninzertný\ninzula\ninzulín\ninzulínový\ninzultácia\ninzultovaný\ninzultovať\ninžiniera\ninžinier\ninžinierka\ninžinierových\ninžiniersky\ninžiniersky\ninžinierstvach\ninžinierstvam\ninžinierstvo\nio\nion\nión\nIón\nionex\nionizácia\nionizačný\nionizátor\nionizovaného\nionizovať\nionizujúci\nionoforéz\nionoforézach\nionoforézam\nionoforéza\nionograf\nionogram\nIónok\nionometria\nionometrický\nionosféra\nionosferický\niónový\niónsky\niont\niontoforéza\niontomenič\niontomeničový\niontový\nIowská\nIowskej\nIowskou\nIowskú\niowských\nIP\nIPB\nIpeľ\nipeľský\nIPF\nIpľa\nIple\nIpli\nIpľom\nIpľu\nIPO\nipon\nipsácia\nIQ\nír\nIra\nIRA\nÍra\niracionalista\niracionalistický\niracionalít\niracionalita\niracionalite\niracionalitu\niracionality\niracionalizmus\niracionálnosť\niracionálny\niracký\niradiácia\niradiačný\nIrak\nirán\nIrán\nIráncami\nIránci\nIráncom\nIráncov\niránčina\nIránec\nIránka\niránsky\niránsky\nIRB\nirbis\nírčin\nírčinách\nírčinám\nírčinami\nírčina\nIRDA\nIRE\nirealita\nireálnosť\nireálny\nírečite\nírečito\nírečitosť\nírečitý\niredent\niredenta\niredentista\niredentisticky\niredentistický\niredentizmus\niregularita\niregularity\nirelevancia\nirelevantne\nirelevantnosť\nirelevantnosti\nirelevantný\nIren\nIrena\nIrenin\nirénizmus\nIrenka\nireparabilný\nireverzibilita\nireverzibilný\nircha\nirchárne\nirchový\nÍri\niriabilita\nirídiový\nirídium\nIriem\nirigácia\nirigačný\nirigografia\nIrina\nIrine\nIrinu\níris\niris\nírisový\niritácia\niritačný\niritída\niritovať\niritujúca\nIritujúce\niritujúci\nirizovať\nÍrka\nÍrkam\nÍrke\nÍrku\nirkutského\nIrkutský\nÍrky\nIrmách\nIrmám\nIrma\nÍrmi\nÍroch\niroko\nÍrom\niron\nirónia\nironickejší\nironickosť\nironicky\nironický\nironička\nironik\nironizovanie\nironizovaním\nironizovaniu\nironizovaný\nironizovať\nironizujúci\nÍrov\nÍrova\nÍrove\nÍrovi\nÍrsko\nírsky\nírsky\nIrtyš\nirtyšský\nIRU\nIry\nis\nIS\nISA\nISBN\nISDN\nIsfahán\nIsfaháne\nIsfahánu\nischémia\nischemický\nischias\nischiatický\nischuria\nisídie\nISIN\nískania\nískať\niskerník\niskerný\niskier\niskierka\niskrách\niskrám\niskra\niskrení\niskrenia\niskrenie\niskrením\niskreniu\niskrenný\niskriaca\niskriace\niskriaceho\niskriaci\niskrička\niskrišťa\niskrište\niskriť\niskrivo\niskrivosť\niskrivý\niskrový\nisl\nIslamabad\nislam\nislamský\nisland\nIslanďan\nIslanďana\nIsland\nislandčín\nislandčinách\nislandčinám\nislandčinami\nislandčina\nIslandsky\nislandský\nismailiti\nISO\nIspell\nIstanbul\nistanbulský\niste\nIstebník\nIstebníka\nIstebníku\nistejší\nistenia\nistenie\nistením\nisteniu\nistený\nistesso\nisteže\nisti\nistiace\nistič\nistime\nistín\nistina\nistinový\nistite\nistiť\nistmus\nisto\nistoiste\nistôt\nistotaN\nistotne\nistotný\nIstria\nIstrie\nIstrii\nIstriu\nísť\nistučičko\nistučko\nistučký\nistý\nišiel\nišla\nišli\nišlo\nišpán\nišpánsky\nišpánstvach\nišpánstvam\nišpánstvo\nit\nIT\nITA\nItal\nItala\nItália\nItálie\nItálii\nItálií\nitalika\nItalka\nItalky\nitalské\nitalského\nitalskí\nitalskou\nitalských\nitalskými\nItalský\nITAR\nitem\niterácia\niteračná\niteratívny\niteratívum\nitinerár\nitinerára\nitinerárium\nitinerárov\nitineráru\nITINO\nITL\nITU\niu\niure\niv\nIV\nIva\nIvachnová\nIvachnovej\nIvachnovou\nIvachnovú\nIván\nIvana\nIvan\nIvanin\nIvanina\nIvaninu\nIvaniných\nIvanišová\nIvanka\nIvanovský\nIve\nívera\níver\níverček\nIveta\nIvica\nIviet\nIvona\nIvou\nIvu\nIvy\nix\nIX\nixkrát\nixodóza\nixolit\nIY\nIzabel\nIzabela\nIzabelin\nizagon\nizagón\nIzák\nIzákova\nIzákovej\nIzákovho\nIzákovo\nIzákovom\nIzákových\nizalobara\nizbách\nizbám\nizba\nizbica\nizbička\nizbietka\nizbísk\nizbisko\nizbový\nIzidor\nIzidormi\nizoamplitúda\nizobár\nizobara\nizobarický\nizobarový\nizobata\nizobután\nizobutánom\nizobutánu\nizobutylom\nizocefália\nizocentrum\nizoecho\nizogaméta\nizogamia\nizoglos\nizoglosa\nizogóna\nizohyeta\nizohypsa\nizochasma\nizochiona\nizochora\nizochrónia\nizochronický\nizochronizmus\nizochrónny\nizoimunizácia\nizoklas\nizoklina\nizokyanát\nizolácia\nizolacionista\nizolacionisti\nizolacionistický\nizolacionistom\nizolacionistov\nizolacionizmus\nizolačka\nizolačne\nizolačný\nizolant\nizolátor\nizolátorový\nizolepa\nizolovane\nizolovania\nizolovanie\nizolovaním\nizolovano\nizolovanosť\nizolovaný\nizolovať\nizolujúca\nizolujúce\nizolujúci\nizomér\nizoméria\nizomerický\nizomerizácie\nizomérne\nizomérny\nizomérov\nizoméry\nizometria\nizometrický\nizomorfia\nizomorfizmus\nizomorfný\nizonefa\nizopatia\nizoperm\nizopora\nizoprén\nizostáza\nizoterm\nizotermálny\nizoterma\nizotermia\nizotermický\nizotón\nizotónia\nizotonického\nizotonických\nizotop\nizotopia\nizotopické\nizotopový\nizotropia\nizotropný\nizotypia\nIzraela\nIzrael\nIzraelčan\nIzraelčanka\nizraelita\nizraelitka\nizraelitmi\nizraelitský\nIzraelovho\nIzraelovi\nizraelsky\nizraelský\nIža\nIži\nižianskej\nIžipovce\nIživo\nIžkovce\nIžop\nížový\nj\nJ\nja\njá\njab\nJab\nJaba\nJabe\njablčastý\njablčistý\njabĺčkach\njabĺčkam\njabĺčko\njabĺčkový\njablčník\njablčný\njabĺk\njablko\njablkový\nJablonca\nJablonce\nJablonci\nJabloncom\nJabloncu\njabloň\nJablonec\njablonecký\nJablonica\nJablonice\nJablonici\nJablonický\nJablonicou\nJablonicu\njablonka\nJablonov\nJablonove\nJabloňove\nJabloňovo\nJablonovom\njablonovskej\nJablonovský\njabloňový\nJablonsky\nJablonský\nJacaranda\njackpot\njackpotmi\nJacovce\njacuzzi\njač\njačanie\njačaním\njačať\njačavejšie\njačavejší\njačavo\njačavý\njačiaci\njačmenísk\njačmenisko\njačmeň\njačmenný\njačmeňový\njačmienka\njad\njadeit\njadernica\njadernicový\njadernička\njaderný\njadier\njadierko\njadierok\nJadran\nJadrane\nJadranom\njadranský\nJadranu\nJadrany\njadrne\njadrnejšie\njadrnosť\njadrný\njadro\njadrovitý\njadrovňa\njadrovník\njadrovo\njadrovoenergetický\njadrový\nJaffe\nJAG\njaganieN\njagať\njagavejšie\njagavejší\njagavo\njagavý\njagdteriér\nJagelovského\njáger\njágerský\nJagom\njagotať\njagotavo\njagotavý\njagot\njagotmi\njagotný\njágrovi\njagu\njaguárí\njaguár\njáhen\nJahna\njahňa\njahňací\njahňacina\njahňada\njahnencami\njahnence\njahnencoch\njahnencom\njahneniec\njahni\njahňiad\njahniatko\njahniatok\njahnica\njahničiek\njahnime\njahnite\njahniť\njahoda\njahôdka\nJahodník\nJahodníku\njahodnísk\njahodnisko\njahodný\njahodovica\njahodovísk\njahodovisko\njahodový\nJahve\nJahveho\njachať\njachci\njachcime\njachcite\njachčiť\njácht\njachtár\njachtárka\njachtárska\njachtárske\njachtárskeho\njachtárskej\njachtárskejší\njachtárskemu\njachtárski\njachtárskom\njachtárskou\njachtársku\njachtársky\njachtárskych\njachtárskym\njachtárskymi\njachtárstvach\njachtárstvam\njachtárstvo\njachtať\njachtavo\njachtavosť\njachtavý\njachta\njachting\njachtingmi\njachtingoch\njachtingom\njachtingov\njachtingu\njachtingy\njachtový\nJáchymov\nJáchymova\nJáchymove\nJáchymovské\njáchymovského\njáchymovskej\njáchymovskú\njáchymovských\nJáchymovským\njaj\njáj\njajaj\njajč\njajčať\njajči\njajčí\njajčia\njajčiac\njajčím\njajčime\njajčíme\njajčíš\njajčite\njajčíte\njajčme\njajčte\njajkanie\njajkať\nJakabova\njak\njakéhosi\nJakla\njaklovskí\njaklovským\nJaklovský\nJakoba\njakobín\njakobinizmus\njakobínsky\nJakobov\nJakobovmu\njakot\njakotmi\nJakovany\njakovi\nJakovian\njaksi\njaktácia\nJakub\njakubka\nJakubovany\nJakubov\nJakubského\nJakubskej\nJakutská\njakutské\njakuza\njakýmsi\njaký\njakživ\njala\njalcovi\njalec\njali\njal\nJalná\njalo\nJalovcová\nJalovec\njalovel\njalovica\njalovička\njalovina\njalovka\njalovo\njalovosť\njalový\nJalšovík\nJalta\nJalte\nJaltou\njaltskou\nJaltských\njaltským\nJaltu\nJalty\njam\njám\nJamajčan\nJamajčanka\njamajka\nJamajkam\nJamajka\njamajský\njama\njamb\njambický\njamboree\njambus\nJamin\njamina\njamísk\njamisko\njamkavý\njamka\njamkovač\njamkovače\njamkovaču\njamkovaný\njamkovať\njamkovitý\njamkový\nJamník\nJamníku\njamôčka\njamôk\njamovanie\njamovisko\njamovitý\njamový\njan\nJana\nJan\nJán\nJanči\nJančí\njančiť\njang\nJaníček\njaničiar\njaničiarska\njaničiarske\njaničiarskeho\njaničiarskej\njaničiarskemu\njaničiarski\njaničiarskom\njaničiarskou\njaničiarsku\njaničiarsky\njaničiarskych\njaničiarskym\njaničiarskymi\njaničiarstvach\njaničiarstvam\njaničiarstvo\nJaníčka\nJaníčko\nJaníčkom\nJaníčkov\nJaník\nJaníka\nJaníkom\nJaníkov\nJaníkovej\nJaníkovho\nJaníkovi\nJaníkovmu\nJaníkovom\nJaníky\nJanin\nJanina\nJaninom\nJaninou\nJanka\nJanko\nJankom\nJankov\nJankovi\njankovských\nJankovský\nJankovu\nJano\nJánošík\nJánošíkova\nJánošíková\nJánošíkovo\njánošíkovsky\njánošíkovský\nJánošíkových\nJánošovka\nJánošovke\nJánošovku\nJánošovky\njánov\nJanov\nJanovčan\nJanovčanka\nJanovík\nJanovo\njanovský\nJánov\njansenizmus\njánsky\njantár\njantáre\njantármi\njantároch\njantárom\njantárov\njantárovo\njantárový\njantáru\njantáry\njanuár\njanuármi\njanuárovo\njanuárový\njanus\nJánus\njánusovský\njap\njapan\njapanológia\njapončín\njapončinách\njapončinám\njapončinami\njapončina\nJaponec\njaponéria\njaponka\nJaponka\njaponska\nJaponsko\njaponsku\njaponsky\njaponský\njara\njarabáč\njarabáče\njarabáčik\njarabáčikovi\njarabatieť\njarabato\njarabatý\njarabejšej\njarabejší\njarabejšia\njarabejšie\njarabejšieho\njarabejšiemu\njarabejších\njarabejším\njarabejšími\njarabejšiu\njarabejšom\njarabejšou\njarabica\njarabičí\njarabička\njarabieť\njarabina\njarabinka\njarabinový\njarabistý\njarabiť\nJarabo\njarabý\njarček\nJarda\nJardine\nJardu\nJare\njarec\njarejšej\njarejší\njarejšia\njarejšie\njarejšieho\njarejšiemu\njarejších\njarejším\njarejšími\njarejšiu\njarejšom\njarejšou\njarený\njariabka\njariabkoch\njariabkom\nJariabkom\njariabkov\njariabkovi\njariabok\njarica\njaricu\njariem\njarina\njarinový\njariť\njar\njarka\nJarko\njarkovač\njarkovať\njarl\nJarmil\njarmila\nJarmila\njarmočísk\njarmočisko\njarmočiť\njarmočné\njarmočnica\njarmočnícka\njarmočnícke\njarmočníckeho\njarmočníckej\njarmočníckemu\njarmočnícki\njarmočníckom\njarmočníckou\njarmočnícku\njarmočnícky\njarmočníckych\njarmočníckym\njarmočníckymi\njarmočník\njarmočnísk\njarmočnisko\njarmočný\njarmok\njarmo\njarmový\njarník\nJarno\njarný\njaro\nJarocký\njarok\nJarolímami\nJarolím\nJaromír\nJaromírou\nJaromíry\nJaroslava\nJaroslav\nJaroslavova\njarosť\nJaroš\nJaroša\nJarošov\nJarošova\nJarošove\nJarošovej\nJarošovho\nJarošovi\nJarošovou\nJarošovu\nJarovce\nJarovčan\nJarovčanka\njarovizácia\njarovizačný\njarovnické\njarovnického\njarovnickej\njarovnických\njarovnickým\njarovský\njarte\nJaru\njarý\nJás\nJasa\njasajúce\njasajúci\njasanie\njasať\njasavo\njasavosť\njasavý\njas\nJasení\nJasenia\nJasenica\nJasenice\nJasenici\nJaseniciach\njasenickom\nJasenie\njaseň\nJasenov\nJasenová\nJasenove\nJasenové\nJasenovej\nJasenovo\njaseňový\nJasenský\njasiel\njasieľ\njasien\njasky\njaskyňa\njaskyniar\njaskyniarska\njaskyniarske\njaskyniarskeho\njaskyniarskej\njaskyniarskemu\njaskyniarski\njaskyniarskom\njaskyniarskou\njaskyniarsku\njaskyniarsky\njaskyniarskych\njaskyniarskym\njaskyniarskymi\njaskyniarstvach\njaskyniarstvam\njaskyniarstvo\njaskynka\njaskynný\njaskyňový\njaský\njasle\njaslí\njasličiek\njasličkár\njasličky\njaslovskobohunickej\njaslovskobohunickom\njaslovskobohunickú\njaslovskobohunických\nJaslovskobohunický\nJaslovský\njasľový\njasna\njasnačka\njasnách\njasnám\njasnami\njasne\njasne\njasnenia\njasnenie\njasnením\njasni\njasnieť\njasnime\njasnite\njasniť\njasnobelaso\njasnobelasý\njasnobiely\njasnočervený\njasnohnedý\njasnomodro\njasnomodrý\njasno\njasnooký\njasnosťN\njasnoumný\njasnovidec\njasnovidecky\njasnovidecký\njasnovidectvo\njasnovidka\njasnovidne\njasnovidnosť\njasnovidný\njasnozelený\njasnozraký\njasnozrivo\njasnozrivosť\njasnozrivý\njasnožltý\njasnu\njasný\nJaso\njasot\njasotmi\njasotný\nJasova\nJasove\nJasovský\njaspé\njaspis\njaspisový\njastraba\nJastrabá\njastrab\njastrabieť\njastrabí\njastrabík\njastrabina\njastrabník\njastrabovi\njastrabozraký\njastrabozrivý\njastrenie\njastriť\njastrivo\njastrivý\njasuplný\nJasy\njašeniu\nJašíka\njašiť\njašmak\njašo\njašove\njaštera\njašter\njašterica\njašteričí\njašterička\njašterí\njašterky\njaštermi\njašteroch\njašterov\njašterovi\njaštery\nJAT\njatá\njaté\njaternica\njaternicový\njaternička\njatka\njatkový\njať\njato\njatočne\njatočný\nJatov\nJatove\njatrenia\njatrením\njatriť\njatrivý\njáv\njavajka\nJávan\nJávana\nJávania\nJávanka\nJávanke\nJávankina\nJávanku\nJávanky\nJávanmi\nJáva\njav\njaveru\njaviaci\njaviacim\njavísk\njavisko\njaviskovo\njaviskový\njaviť\njavor\nJavorček\nJavorčeka\njavorčie\njavorie\njavorina\nJavorinka\nJavorinský\nJavorníckej\nJavorník\nJavorníka\nJavorníkoch\nJavorníkom\nJavorníkov\nJavorníku\nJavorníky\njavorový\nJavorsky\nJavorský\njavový\njávska\njávske\nJávski\njávsky\njáw\njawa\njawách\njawami\nJawe\nJawou\nJawu\njawy\njaz\njazda\njazdce\njazdcový\njazdcu\njazdec\njazdecký\njazdectvo\njazdenie\njazdený\njazdi\njazdiacejší\njazdiaci\njazdiareň\njazdiarňach\njazdiarňam\njazdievať\njazdime\nJazdime\njazdite\njazdiť\njazdkyňa\njazdný\njazernatý\nJazernica\njazerný\njazero\njazier\njazierko\njazierok\njazmín\njazmínový\njazva\njazveca\njazvecL\njazvece\njazvecmi\njazvecoch\njazvecom\njazvecov\njazvecovi\njazvečí\njazvečík\njazvečíky\njazvička\njazviť\njazvovite\njazvovito\njazvovitý\njazvový\njazýček\njazýčekový\njazyčísk\njazyčisko\njazyčiť\njazýčka\njazýčkami\njazýčkoch\njazýčkom\njazýčkov\njazýčkovitý\njazýčkový\njazýčku\njazýčky\njazyčnatý\njazyčnica\njazyčný\njazyk\njazykoveda\njazykovedec\njazykovedkyňa\njazykovedný\njazykovitý\njazykovo\njazykový\njazylka\njazylkový\njazz\njazzová\nJC\nJCD\njé\nJean\njeb\njebal\njebala\njebali\njebalo\njebať\njebe\njebem\njebeme\njebeš\njebete\njebme\njebnutý\njebte\njebú\njebúc\njedáci\njedáčka\njedák\njedál\njedáleň\njedálenský\njedálňach\njedálňam\njedálniček\njedálnička\njedálničkoch\njedálničkom\njedálničkov\njedálny\njedávať\njed\njedenapolročný\njedenásť\njedenásťdňovým\njedenásťhodinový\njedenástinu\njedenásti\njedenástka\njedenásťkrát\njedenásťky\njedenásťposchodový\njedenásťročenka\njedenásťročný\njedenásťstupňový\njedenásťtisíc\njedenásty\njedenN\njedenie\njedenkrát\njedený\njediace\njediaci\njediacich\njediacim\njediacou\njedináčik\njedináčka\nJedinák\nJedináka\njedince\njedincových\njedinec\njedinečne\njedinečnosť\njedinečnosť\njedinečný\njedine\njedinký\njediný\njedív\njedivo\njedľa\njedlejšej\njedlejší\njedlejšia\njedlejšie\njedlejšieho\njedlejšiemu\njedlejších\njedlejším\njedlejšími\njedlejšiu\njedlejšom\njedlejšou\njedličie\njedlička\njedlina\njedlo\njedlosť\njedľovina\njedľovo\njedľový\njedlý\njedn\njednací\njednačka\njednajúci\njednak\njednako\njednaký\njedna\njednanie\njednateľ\njednateľa\njednať\njedného\njednej\njednému\njedni\njednička\njednoaktovka\njednoaktový\njednobodový\njednobožstvo\njednobožštvo\njednobunečný\njednobunkovca\njednobunkovcov\njednobunkovec\njednobunkový\njednocestný\njednociferný\njednočinnom\njednočl\njednočlen\njednočlenný\njednočlenov\njednodejstvový\njednodenný\njednodetný\njednodielny\njednodňovo\njednodňový\njednodomý\njednoducho\njednoduchosť\njednoduchší\njednoduchý\njednodušené\njednodušení\njednodušenia\njednodznačne\njednofarebne\njednofarebnosť\njednofarebnosti\njednofarebnosťou\njednofarebný\njednofázový\njednohlasne\njednohlasnosť\njednohlasný\njednohlasový\njednohlavý\njednohodinový\njednohorákový\njednohrbý\njednohriadeľový\njednoizbový\njednojazyčnosť\njednojazyčný\njednoklíčny\njednoklonného\njednokoľajka\njednokoľajný\njednokoľajový\njednokolesový\njednokomorový\njednokorunový\njednokotúčový\njednokrídlový\njednokruhový\njednoliatosť\njednoliaty\njednolícny\njednolistový\njednolôžkový\njednomesačný\njednomiestny\njednominútový\njednomiskový\njednoN\njednomocný\njednomotorový\njednomyseľne\njednomyseľnosť\njednomyseľný\njednonápravový\njednonárodný\njednonásobne\njednonásobný\njednonohý\njednonožmo\njednooký\njednoosový\njednopásový\njednopercentný\njednoplášťový\njednoplošník\njednopodlažný\njednopohlavný\njednopoľný\njednopólový\njednoposchodový\njednoposteľový\njednopriestorový\njednoprúdový\njednoprvkový\njednoradlicový\njednoradličný\njednoradový\njednoradý\njednoramenný\njednoranové\njednorazove\njednorazovo\njednorázovo\njednorazový\njednorázový\njednorečový\njednorezný\njednoriadkový\njednoročiak\njednoročiaky\njednoročný\njednorodený\njednorozmerný\njednorožec\njednoručný\njednoruký\njednosečný\njednosedadlový\njednosemenný\njednoslabične\njednoslabičnosť\njednoslabičný\njednoslovne\njednoslovnosť\njednoslovný\njednosmenný\njednosmerne\njednosmernosť\njednosmerný\njednostaj\njednostajne\njednostajnosť\njednostajný\njednosťažňový\njednostĺpcové\njednostopový\njednostránkový\njednostranne\njednostrannosť\njednostranný\njednostrunový\njednostupňovo\njednostupňový\njednosýtny\njednota\njednotenej\njednotenie\njednotiaci\njednotiredny\njednotiť\njednotivé\njednotkár\njednotkárka\njednotka\njednotkový\njednotlive\njednotlivec\njednotlivina\njednotlivkyňa\njednotlivo\njednotlivosť\njednotlivý\njednotne\njednotnosť\njednotný\njednotónová\njednotonového\njednotonových\njednotriedka\njednotriedny\njednotvárnosť\njednotvárny\njednotýždňový\njednotýždňovYý\njednou\njednoúčelový\njednouchý\njednovaječné\njednovaječných\njednovaječnými\njednovalcový\njednovetové\njednovetovú\njednovláknový\njednovrstvový\njednozložkový\njednozmenný\njednoznačne\njednoznačnosťN\njednoznačný\njednozubý\njednozväzkový\njednozvukový\njednoženstvo\njednožilový\njednú\njedných\njedným\njednými\njedny\njedoš\njedovaný\njedovato\njedovatosť\njedovať\njedovatý\njedovaťý\njedovitý\njedový\njedzkať\njeep\nJeep\nJeepe\nJeepom\njeepov\njeepu\njeepy\njeho\nJehova\njehovista\njehovistický\njehovistka\nJehovových\nJehovovým\njej\njéj\njejunitída\njejunum\njel\nJel\nJela\nJelena\njeleň\nJelenca\nJelenci\njelenča\njelene\nJelenec\njelenica\njelenicový\njelení\njelenina\njeleňou\nJeleňou\nJelenský\nJelenu\nJeleny\nJelica\njelita\njelito\nJelka\nJelke\nJelky\njelša\nJelšava\nJelšave\nJelšavou\njelšavské\njelšavského\njelšavskej\njelšavskí\njelšavskou\njelšavskú\njelšavských\njelšavským\nJelšavský\nJelšavu\nJelšavy\njelší\njelšín\njelšína\njelšina\nJelšovca\nJelšovce\nJelšovci\nJelšovec\nJelšovská\nJelšovské\njelšový\nJemen\njemenský\njemnejší\njemne\njemnieť\njemno\njemnocit\njemnocitmi\njemnocitne\njemnocitnosť\njemnocitný\njemnomletého\njemnomravný\njemnosť\njemnôstka\njemnozrnnosť\njemnozrnný\njemnučko\njemnučký\njemnulinko\njemnulinký\njemnuško\njemnušký\njemný\njemu\nJena\njen\nJenčan\nJenčana\nJenčania\nJenčaniek\nJenčanka\nJenčanky\nJenisej\nJenisejskej\njenský\njer\njeremiáda\nJerevan\nJerez\nJergaloch\nJergaly\nJerguš\njeri\njericho\nJericho\njerichovský\nJerichu\njerový\njersey\nJeruzalema\nJeruzalem\nJeruzalemčania\njeruzalemský\njeseňami\njeseň\njesene\njeseni\njesení\njeseniach\njeseniam\nJesenícka\njeseníckeho\njeseníckej\njeseníckom\njeseníckou\nJesenícku\njesenícky\nJeseníckych\nJeseník\nJeseníka\nJeseníkoch\nJeseníkom\nJeseníkov\nJeseníku\nJeseníky\njesenný\njeseňou\nJesenský\njesetera\njeseter\njeseterí\njeseterovi\njesienka\njesienkový\njest\njesto\njesť\njestvovanie\njestvovať\njestvujúci\njet\njeté\njezabel\nJezerský\njezuita\njezuitmi\njezuitský\nJezuliatka\njezuliatko\nJezuliatko\nJezuliatkom\nJezuliatku\nJezuliatok\nježací\nježatý\nježe\nježibaba\nježibábeľ\nježí\nježiš\nJežiš\nježiši\nJežiško\nježišmaria\nježišmária\nježišmáriajozef\nJežišov\nJežišu\nježiť\nježko\nJežkova\nJežkove\nJežkovej\nJežkovho\nJežkovmu\nJežkovo\nJežkovom\nJežkovou\nJežkovu\nJežkových\nJežkovým\nJežkovými\nježky\njež\nježohlave\nježohlav\nježohlavu\nJežová\nJežovej\nježovitý\nježovka\nJežových\nJežu\nježúr\nježura\nJičín\nJičína\nJičíne\nJičínom\njičínska\njičínskeho\njičínskej\njičínski\njičínskom\njičínskou\nJičínsku\njičínsky\nJičínskym\nJičínu\njidiš\nJihlava\njihlavského\njihlavskej\njihlavskému\njihlavskí\njihlavskom\njihlavskou\njihlavskú\njihlavskými\nJihlavský\njich\njimboit\njin\nJitka\nJitke\nJitkou\nJitku\nJitky\njitsu\njitterburg\njiu\nJiu\njive\nJizera\nJizere\nJizerou\nJizerská\nJizerské\nJizerského\nJizerskej\nJizerskému\njizerskohorských\nJizerskom\nJizerských\nJizerskými\nJizery\njme\njmem\njmeme\njmeš\njmete\njmi\njmime\njmite\njmú\njmúc\nJN\nJoachim\nJoachima\nJoachimom\nJoachimovi\njob\njobber\nJób\nJóbova\nJóbove\nJóbovo\nJóbovou\njóbovský\nJóbovu\nJóbových\nJóbovými\njockey\njodát\njodáty\njód\njodid\njodistan\njodizmus\njódlovanie\njódlovať\njódny\njodoform\njodoformový\njodometria\njódovaný\njódovať\njodovodík\njodovodíkový\njódový\njog\njogam\njoga\njogging\njoggingmi\njoggingoch\njoggingom\njoggingov\njoggingu\njoggingy\njogín\njogista\njogistický\njogistka\njogizmus\njogovo\njogurt\njogurtmi\njogurtovač\nJohana\njohanit\njohaniti\njohanitov\nJohanna\nJohannesburg\njohannesburský\njohimbín\nJohn\njoint\njoj\njój\njojč\njojčať\njojči\njojčime\njojčite\njojká\njojkaj\njojkajme\njojkajte\njojkajú\njojkajúc\njojkal\njojkala\njojkali\njojkalo\njojkám\njojkáme\njojkáš\njojkať\njojkáte\njojo\njojoba\njojoj\nJokohama\nJokohame\nJokohamy\njol\nJolán\nJolana\nJolanta\njola\njolka\nJonáš\nJonáša\nJonášom\nJonášov\nJonášovej\nJonášovho\nJonášovi\nJonášovo\nJonatán\njonatánka\nJonatánom\nJordán\nJordána\nJordáne\nJordánec\nJordáni\nJordánka\nJordánke\nJordánom\njordánska\njordánske\njordánskeho\njordánskej\njordánski\njordánskom\nJordánsko\njordánskou\njordánsku\njordánsky\njordánskych\njordánskym\njordánskymi\nJordánu\njot\njotácia\njotách\njotám\njotami\njota\nJou\njoulami\njoule\njouloch\njoulom\njoulov\njoulu\njouly\njour\njourfixe\njovicentrický\njovický\nJovsa\njoyrobic\njoystick\nJozef\nJozefe\nJozefín\nJozefina\nJozefínach\nJozefínam\nJozefína\njozefínsky\njozefínsky\nJozefka\nJozefovom\njozefovský\nJozefových\njozefský\nJozefu\nJozefy\nJozua\nJoža\nJože\nJožka\nJožko\nJožkove\nJožku\nJožo\nJožom\nJožov\nJPY\njr\nJRD\nju\njuan\nJuan\nJuana\njüan\nJuanov\njubilant\njubilantka\njubilantský\njubilárny\njubilejný\njubileum\njubiloso\njubilovať\njúd\nJúda\njudaista\njudaistický\njudaizmus\njudáš\nJudáš\njudášovej\njudášovo\nJudášovou\njudášsky\nJudea\nJudeou\njudiciálny\njudicium\njudikácia\njudikát\njudikatúra\njudista\nJudita\nJuditin\njudo\nJUDr\njudský\njuglón\njugulum\njuha\njuh\njuhoafr\njuhoafrický\njuhoalpskom\njuhoamer\njuhoamerický\njuhoázij\njuhočeský\nJuhočínske\njuhočínskej\njuhočínskom\njuhočínskych\njuhoeuróp\njuhoeurópsky\njuhoeurópsky\njuhofranc\nJuhofrancúzska\njuhofrancúzskeho\njuhofrancúzskej\njuhofrancúzskom\njuhokórejsky\njuhokórejský\njuhomoravská\njuhomoravské\njuhomoravského\njuhomoravskému\njuhomoravskí\njuhomoravskom\njuhomoravských\njuhomoravským\njuhomoravskými\nJuhomoravský\njuhonem\nJuhoslávia\njuhoslavizmus\njuhoslov\njuhoslovan\nJuhoslovan\nJuhoslovana\njuhoslovanský\njuhoslovenský\njuhošpan\njuhotal\njuhovietnam\njuhovietnamského\njuhovietnamskej\njuhových\njuhovýchod\njuhovýchodne\njuhovýchodný\njuhozáp\njuhozápad\njuhozápadne\njuhozápadný\njuch\njúcht\njuchtách\njuchtám\njuchtami\njuchta\njuchtovina\njuchtový\njuice\njuj\njúj\njujkať\njujuj\njuka\njukebox\njúle\njulep\njúli\nJúliach\nJúliam\nJulián\nJulianách\nJulianám\nJuliana\nJuliána\njuliánsky\njuliánsky\nJúlia\nJuliša\nJúlius\nJúliusovým\njúl\njúlový\njúlu\njumbo\nJumper\nJumperu\njunáckosť\njunácky\njunáctvo\njunač\njunák\njún\njunce\njunček\njunec\njungle\njúni\njuniáles\njuniálesový\njunior\njuniorka\njuniormi\njuniorsky\njuniorský\njunkera\nJunkera\njunker\njunkeri\njunkermi\njunkeroch\njunkerom\nJunkerom\njunkerov\njunkerovi\njunkerský\njunkerstvo\njunktim\njunktimu\njunktúra\njunónsky\njúnový\njúnt\njunta\nJupitera\nJupiterC\nJupiteri\nJupitre\njupka\njúr\nJuraj\nJurajove\nJurajovho\nJurajovom\nJuran\nJurana\njura\nJur\nJuríček\nJurík\nJuríka\nJuríkom\nJuríkov\nJuríkova\nJuríkovej\nJuríkovho\nJuríkovi\nJuríkovo\nJuríkovu\nJuríkovým\nJurina\nJurinu\njurisdikcia\njurisdikčný\njurisidikcií\njurisprudencia\njurista\njuristicky\njuristický\njuristika\nJurka\nJurku\nJuro\nJurom\nJurov\nJurová\nJurovej\nJurovský\njurský\njúrt\njurta\njust\nJusta\njustácia\njustáž\njustícia\njustične\njustičný\njustifikácia\njustifikovať\nJustin\nJustín\nJustínach\nJustínam\nJustína\nJustom\nJustova\njustovať\nJustus\nJusty\njút\njutár\njuta\njutovina\njutovník\njutový\nJutrík\njutro\njuvenálie\njuveníliách\njuveníliám\njuveníliami\njuvenílie\njuvenílií\njuvenilný\njuvenoid\njuventiológia\njuventus\njuxta\njuxtapozícia\njuxtapozičný\njuž\njužan\njužania\njužanka\njužanský\njužne\njužnejší\nJužno\njužnoslov\njužnoslovan\njužnoslovanský\njužný\njv\nJVC\njz\nJZR\nk\nka\nKA\nká\nKaaba\nkába\nKabál\nkabala\nKabaly\nkabaňa\nkabanica\nkabanička\nkabanos\nkabaret\nkabaretne\nkabaretný\nkabát\nkabátec\nkabátik\nkabátmi\nkabátový\nkabela\nkabeláž\nkabelážach\nkabelážami\nkábeláž\nkabeláže\nkabeláži\nkabeláží\nkabelážou\nkabelizácia\nkábel\nkabelka\nkábelogram\nkábelovanie\nkábelovať\nkábelový\nkabín\nkabínach\nkabínam\nkabína\nkabinet\nkabinetík\nkabinetný\nkabinetový\nkabínka\nkabínový\nkábla\nkáblami\nkáble\nkábli\nkáblik\nkábloch\nkáblom\nkáblov\nkáblovka\nkáblovňa\nKáblovne\nKáblovni\nkáblovní\nkáblovniach\nkáblovňou\nkáblovňu\nkáblovo\nkáblový\nkáblu\nkaboniť\nkabotáž\nkabotáže\nkabotáži\nKabotážna\nkabotážnej\nkabotážnych\nkabotážou\nkabrerit\nkabriolet\nkabuki\nKábul\nkábulský\nkacabajka\nkacír\nkacírka\nkacírsky\nkacírstvach\nkacírstvam\nkacírstvo\nkáč\nkačací\nkačacina\nKačanov\nkáčat\nkáčatá\nkáčaťa\nkáčatách\nkáčatám\nkáčatami\nkáčati\nkáčatiek\nkáčatko\nkáčaťom\nkáčaťu\nkača\nkáča\nkáčencami\nkáčence\nkáčencoch\nkáčencom\nkáčeniec\nKačenka\nKačenku\nKačenky\nkáčera\nKáčera\nkáčer\nkáčermi\nkáčeroch\nkáčerom\nKáčerom\nkáčerov\nkáčerovi\nKáčerovi\nkáčery\nkačí\nkačiatko\nkačica\nkačíča\nkačíčatiek\nkačíčatko\nkačičiareň\nkačičiarňach\nkačičiarňam\nkačička\nkačín\nkačká\nkačkanie\nkačkať\nkačka\nKačura\nKAD\nKadaň\nKadane\nKadani\nkaďa\nkadáver\nkadaverín\nkadaverózny\nkaddiš\nkadečím\nkadečo\nkadečoho\nkadečom\nkadečomu\nkadejako\nkadejaký\nkadekde\nkadekoho\nkadekoľvek\nkadekom\nkadekomu\nkadekto\nkadekým\nkadeľahšie\nkadeľnica\nkadencia\nkadenčný\nkaderách\nkaderám\nkaderavý\nkader\nkaderený\nkaderiť\nkáder\nkadernícky\nkaderníctvach\nkaderníctvam\nkaderníctvo\nkaderníčka\nkaderník\nkadesi\nkadet\nkadetský\nkadeže\nkadiaľ\nkadiaľkoľvek\nkadička\nkadidelnica\nkadidlo\nkadidlový\nkadiť\nkadlúb\nkadluba\nkadlub\nkadlúbka\nkadmiový\nkadmium\nkádrovania\nkádrovanie\nkádrovaním\nkádrovať\nkádrove\nkádrovnícky\nkádrovníčka\nkádrovník\nkádrovo\nkádrový\nkaduceus\nkaducita\nkafiléria\nkafilógia\nkaftan\nkaguár\nkagulár\nkahan\nkahancový\nkahanček\nkahanec\nkahanový\nKáhira\nkáhirský\nkahŕňať\nkach\nkachexia\nkachiel\nkachieľ\nkachľa\nkachle\nkachlí\nkachliar\nkachliarsky\nkachliarstvo\nkachlica\nkachlička\nkachličkový\nkachličky\nkachlový\nkachľový\nKaifáš\nKain\nkainit\nkainovský\nkainský\nkaja\nkajajúci\nkajakár\nkajakárka\nkajakársky\nkajakárstvach\nkajakárstvam\nkajakárstvo\nkajak\nkajakový\nkajam\nkajame\nkajania\nkajanie\nKajanom\nkajaš\nkajate\nkajať\nkajčí\nkajka\nkajman\nkajmaní\nKajňa\nKajne\nkajúci\nkajúcne\nkajúcnic\nkajúcnica\nkajúcnický\nkajúcnik\nkajúcnosť\nkajúcny\nkajúco\nkajút\nkajuta\nkajutová\nkajutovú\nkakadí\nkakaďom\nkakaďou\nkakadu\nkakaí\nkakao\nkakaovník\nkakaovníkový\nkakaovo\nkakaovohnedý\nkakaový\nkakapo\nkakať\nkaki\nkakodoncia\nkakofónia\nkakofonickosť\nkakofonicky\nkakofonický\nkakofrázia\nkakolália\nkakológia\nkakosmia\nkakoxé\nkaktusa\nkaktus\nkaktusový\nkala\nkáľa\nkalabasa\nkaláber\nKalábria\nkalábrijský\nkálačka\nkalafúna\nkalám\nkalamajka\nkalamárik\nkalamár\nkalamármi\nkalambúr\nKaľamenová\nKalameny\nkalamita\nkalamitne\nkalamitný\nkalander\nkalandrované\nkalandrovaní\nkalandrovanie\nkalandrový\nkálane\nkalanetika\nkalašnikov\nkálať\nkalav\nKaľava\nKaľave\nkalaverit\nkaľavne\nkaľavný\nKaľavský\nkal\nkalcémia\nkalciferol\nkalcifikácia\nkalcifikačný\nkalcifikovať\nkalcifit\nkalcifóbny\nkalcimeter\nkalcinácia\nkalcinácie\nkalcinémia\nkalcinovaná\nkalcinované\nkalcinovanej\nkalcinovanú\nkalcinovať\nkalcinóza\nkalciový\nkalcióza\nkalcit\nkalcitový\nkalcium\nkalciúria\nkalcivírus\nkaldera\nkalderit\nKaledónia\nKaledónie\nKaledónii\nkaledonit\nKaledóniu\nkaleidofón\nkaleidoskop\nkaleidoskopicky\nkaleidoskopický\nkalendáriá\nkalendárik\nkalendáriu\nKalendárium\nkalendár\nkalendármi\nkalendárny\nkalendárový\nkalendy\nkalenia\nkalenie\nkalením\nkalený\nkaleráb\nkalerábik\nkalerábový\nkaliaci\nkalián\nkaliareň\nkaliarňach\nkaliarňam\nkaliber\nkalibrácia\nkalibračný\nkalibrovacích\nkalibrovanie\nkalibrovaný\nkalibrovať\nkalibrový\nkalič\nkaličiť\nkalička\nkaličský\nkalifát\nkalif\nKalifornčan\nKalifornčana\nKalifornia\nKaliforniám\nKalifornie\nKalifornii\nKalifornií\nKaliforniou\nKaliforniu\nkalifornský\nkaligraf\nkaligrafia\nkaligraficky\nkaligrafický\nkaligrafka\nkaligrafovia\nkaligram\nkalicha\nkalich\nkalichovitý\nkalichový\nkalika\nkaliko\nkalikový\nkalikreín\nkalimeter\nkalimetria\nkalina\nKalinčiakov\nKalinčiakova\nKalinčiakovo\nKalinin\nkalinit\nkalinka\nKalinkou\nKalinkova\nKalinkove\nKalinkovo\nKalinov\nKalinova\nKalinove\nKalinovo\nkalinovský\nkalinový\nkaliopky\nkáliový\nkalísk\nkalisko\nkalíškovitý\nkališnícky\nkališník\nkališný\nkalíšok\nkalištek\nKalištie\nkaliteľnosť\nkaliteľný\nkaliť\nkalitu\nkality\nkalium\nkálium\nkalkant\nKalkát\nKalkata\nkalkatský\nkalk\nkalkofilná\nkalkofóbna\nkalkovať\nkalkový\nkalkul\nkalkulácia\nkalkulačka\nKalkulačne\nkalkulačný\nkalkulant\nkalkulanti\nkalkulátor\nkalkulovanie\nkalkulovaný\nkalkulovať\nkalkulóza\nkalkulus\nKalliopé\nkalm\nkalma\nKalma\nkalmetizácia\nkalmi\nKalmom\nKalmu\nKalmus\nkalne\nKálnica\nKálnici\nKálnickí\nkalný\nkalo\nkalobiotika\nkalofónia\nkalokagatia\nkalolis\nkalolisov\nkalolisy\nKalonda\nKalonde\nKalondou\nKalondu\nKalondy\nkalorescencia\nkalória\nkalorickosť\nkaloricky\nkalorický\nkalorimeter\nkalorimetria\nkalorimetrický\nkalorimetrov\nkaloritropizmus\nKaloša\nkalotypia\nkaloudácia\nkalovo\nkalový\nkalpa\nKalša\nKalše\nKalšou\nkalumet\nkalus\nkalusový\nkaluža\nkaluž\nkalužiak\nkalužina\nkalúžka\nKalužský\nkalva\nkalvária\nkalváriový\nkalvársky\nKalvina\nkalvín\nkalvíni\nkalvinista\nkalvinistka\nkalvinizmus\nkalvínka\nkalvínove\nkalvínovi\nkalvínsky\nkalvínstvach\nkalvínstvam\nkalvínstvo\nkalykant\nKalypsa\nKalypso\nkam\nkáma\nkamae\nkamaldul\nkamaldulský\nKamanová\nKamanovej\nkamarát\nkamarátievať\nkamarátik\nkamarátiť\nkamarátka\nkamarátko\nkamarátove\nkamarátsky\nkamarátstvach\nkamarátstvam\nkamarátstvo\nkamarila\nKámasútra\nkamaše\nkambál\nkambala\nkambiálny\nkambio\nkambium\nKambodžan\nKambodžana\nKambodža\nkambodžský\nkambrický\nkambrium\nKamčatka\nKamčatke\nKamčatku\nKamčatky\nkamčatský\nkamdiaľ\nkamea\nkamej\nkamélia\nkaméliový\nkamelota\nkamelot\nkameloti\nkamelotmi\nkamelotovi\nKameňany\nkamenár\nkamenársky\nkamenárstvach\nkamenárstvam\nkamenárstvo\nkamencový\nkamenček\nkamenčie\nkamenec\nkamenica\nkamenické\nKamenický\nKameničná\nKameničnej\nkamenieť\nkamenie\nKamenína\nkamenina\nKameníne\nkameninovo\nkameninový\nKamenínska\nKamenínskej\nkamenistý\nkamenitý\nkamenív\nkamenivo\nkameň\nkamenne\nkamenno\nkamennouhoľný\nkamenný\nkameňolom\nkameňoryt\nkameňorytec\nkameňorytecký\nkameňorytectvo\nkameňorytina\nkameňorytmi\nkameňosochárov\nkameňosochárstvo\nkameňotlač\nkamenouhoľný\nkameňovaný\nkameňovať\nKamensky\nKamenský\nkameňujúce\nkameový\nkameralistika\nkameraman\nkamera\nkamerlengo\nkamerový\nKamerun\nkamerunský\nkamho\nKamienke\nkamienok\nkamier\nkamikadze\nKamila\nKamil\nkamilka\nkamilkový\nkamión\nkamiónový\nkamizola\nkamizol\nkamizolík\nkamizolka\nkamkoľvek\nkamoš\nkamoška\nkamošský\nKampale\nkampaň\nkampanila\nkampaňovitá\nkampaňovite\nkampaňovité\nkampaňovitej\nkampaňovito\nkampaňovitom\nkampaňovitosť\nkampaňovitosti\nkampaňovitosťou\nkampaňovitých\nKampaňovitý\nkampaňový\nkampbelka\nkampes\nkampus\nkampylit\nkamrlík\nkamsi\nkamuflážach\nkamuflážam\nkamufláž\nkamuflovania\nkamuflovanie\nkamuflovaním\nkamuflovaniu\nkamuflovaný\nkamuflovať\nkamzica\nkamzíča\nkamzíček\nkamzičí\nkamzíčka\nkamzíčkami\nkamzíčkoch\nkamzíčkom\nkamzíčkov\nkamzíčku\nkamzíčky\nkamzičník\nkamzík\nkamzíky\nkamža\nkamží\nkaň\nkanabis\nkanad\nKanaďan\nkanada\nKanada\nkanadiek\nkanadky\nkanadsky\nkanadský\nkanafas\nkanafasový\nkanálJ\nkanálček\nkanálik\nkanálikový\nkanalizácia\nkanalizačný\nkanalizovali\nkanalizovanie\nkanálový\nkanáp\nkanapa\nkanapka\nkanáričí\nkanárik\nkanárikovo\nkanárikový\nkanáriky\nkanást\nkanasta\nkanát\nkaňa\nkanavália\nkanavanín\nkanava\nkanavový\nkanc\nkance\nkancela\nKancelácia\nkancelácie\nkancelácií\nkanceláciu\nkancelár\nkancelária\nkancelárova\nkancelárovej\nkancelárovmu\nkancelárovou\nkancelárovu\nkancelárových\nkancelársky\nkancelársky\nkancelárstva\nkancelárstvo\nkanceľ\nkancer\nkancerizácia\nkancerogén\nkancerogenéza\nkancerogénny\nkancerózny\nkancionála\nkancionál\nkancionáli\nkancionálmi\nkancionálový\nkancľa\nkancľami\nkancle\nkancli\nkancľoch\nkancľom\nkancľov\nkancľový\nkancľu\nkancona\nkančí\nkančil\nKandahar\nkandahár\nKandahár\nKandaháre\nkandel\nkandeláber\nkandela\nkandidácia\nkandidačný\nkandidát\nkandidátka\nkandidátny\nkandidátov\nkandidátsky\nkandidátstvu\nkandidatúr\nkandidatúrach\nkandidatúram\nkandidatúra\nkandidovania\nkandidovanie\nkandidovaním\nkandidovaný\nkandidovať\nkandidóza\nkandisový\nkandizovaný\nkandizovať\nkandys\nkandyt\nkanec\nKanel\nkanelácia\nkanelloni\nkanelúra\nkanibal\nkanibalizmus\nkanibalský\nkanibalstvo\nkaniem\nkanieme\nkanieš\nkaniete\nkaní\nkanikula\nkanikulový\nkanister\nkanistier\nkanistra\nkankán\nkankánový\nkaňme\nkannabinol\nkanoe\nkanoista\nkanoistický\nkanoistika\nkanoistka\nkaňom\nkanonád\nkanonádach\nkanonádam\nkanonáda\nkanón\nkaňon\nkánon\nkanónček\nkanóni\nkanonici\nkanonicky\nkanonický\nkánonický\nkanoniera\nkanonier\nkanonierka\nkanoniersky\nkanonik\nkanónik\nkanonikovi\nkanonizácia\nkanonizačný\nkanonizovaný\nkanonizovať\nkanónky\nkanónovi\nkaňonovitý\nkanónový\nkanopa\nKant\nKanta\nkantabilita\nkantabilný\nKantábria\nkantára\nkantár\nkantáre\nkantári\nkantárik\nkantármi\nkantároch\nkantárom\nkantárov\nkantáru\nkantát\nkantátach\nkantátam\nkantáta\nkantátový\nkaňte\nkantilácia\nkantilén\nkantilénach\nkantilénam\nkantiléna\nkantín\nkantínach\nkantínam\nkantína\nKantom\nkanton\nKanton\nkantonácia\nkantonálny\nkantón\nKantone\nkantor\nkantormi\nKantorovej\nKantorovo\nkantorský\nKantov\nKantova\nkantovský\nkántriť\nkanustná\nkanutie\nkanúť\nkanutý\nkanva\nkanvi\nkanví\nkanvica\nkanvička\nkanýl\nkanyla\nkaoliang\nkaolín\nkaolinit\nkaolínový\nkaón\nkapa\nkapacita\nkapacitne\nkapacitný\nkapacitovať\nkapacizmus\nkapaní\nkapár\nkapara\nkaparovník\nkapať\nkapciózny\nkapček\nkapec\nkapela\nkapelník\nkaper\nKaper\nkapesník\nkapia\nkapilár\nkapilárach\nkapiláram\nkapilára\nkapilarita\nkapilárny\nKapince\nkapiový\nkapišón\nKapišová\nkapit\nkapitácia\nkapitáciách\nkapitácie\nkapitácii\nkapitácií\nkapitáciou\nkapitáciu\nkapitálach\nkapitálam\nkapitála\nkapitál\nkapitáli\nkapitálik\nkapitalista\nkapitalisticky\nkapitalistický\nkapitalistka\nkapitalizácia\nkapitalizáciami\nkapitalizácie\nkapitalizácii\nkapitalizácií\nkapitalizáciou\nkapitalizáciu\nkapitalizačný\nkapitalizmus\nkapitálka\nkapitálmi\nkapitálne\nkapitálny\nkapitálotvorný\nkapitálove\nkapitálovo\nkapitálový\nkapitanát\nkapitanáte\nkapitán\nkapitánka\nkapitánsky\nkapitánsky\nkapitánstvo\nkapitola\nkapitolka\nkapitulácia\nkapitulačný\nkapitulant\nkapitulantsky\nkapitulantský\nkapitulantstvo\nkapitulárny\nkapitula\nkapitulovať\nkapitulský\nKapkom\nkapky\nkaplán\nkaplánčiť\nKaplánka\nKaplánkovej\nKaplánkovi\nkaplánova\nkaplánovať\nkaplánsky\nkaplica\nKaplice\nKaplici\nKapliciach\nKaplná\nKaplnej\nkaplnka\nkápo\nkapodaster\nkápom\nkapor\nkapota\nkapotáž\nkapotáže\nkapotážou\nkappa\nKappa\nkapparot\nKappe\nKappu\nKappy\nkapra\nkaprál\nkaprálsky\nkaprami\nkapric\nkaprici\nkapriciózny\nkapríček\nkapríčka\nkapríčkami\nkapríčkoch\nkapríčkom\nkapríčkov\nkapríčku\nkapríčky\nkaprí\nkaprík\nkapriola\nkaproch\nkapron\nkaprón\nkapronový\nkaprónový\nkaprov\nkaprovi\nkaprovitý\nkapry\nkáps\nkapsaicín\nkapsantín\nkapsa\nkapsička\nKapské\nKapského\nKapskom\nkapským\nkapsľa\nkapslí\nkapslička\nkapsľový\nkapsový\nkapsúl\nkapsulách\nkapsulám\nkapsula\nkapsuly\nkapšťan\nKapšťan\nkapštiansky\nkaptácia\nkaptatórny\nkapúci\nkapucináda\nkapucín\nkapucíner\nkapucíni\nkapucínovi\nkapucínsky\nkapucňa\nkapucní\nkapučíno\nkapún\nkapúní\nkapúňom\nkapúňou\nkapúnovi\nkapúst\nkapustách\nkapustám\nkapustami\nkapusta\nkapustička\nKapustin\nkapustnica\nkapustnicový\nkapustník\nkapustnísk\nkapustnisko\nkapustný\nKapustove\nkapustovitý\nkapustový\nKapušanoch\nKapušanom\nKapušany\nKapušian\nKapušianske\nKapušianskych\nkaput\nKapverd\nKapverdmi\nKapverdoch\nKapverdom\nKapverdy\nkapybara\nkár\nkarabín\nkarabínach\nkarabínam\nkarabína\nkarabínka\nkarabínkový\nKarabínom\nkarabínový\nKaráčí\nkaráčom\nkaráčsky\nKaradžičova\nkaráf\nkarafa\nkarafiát\nkarafiátmi\nKarafin\nkárach\nkáraj\nkárajme\nkárajte\nkárajú\nkárajúc\nKarak\nkaraka\nkarakal\nkarakola\nkarakul\nkarakulský\nkarakum\nkarakurt\nkáral\nkárala\nkárali\nkáralo\nkáram\nKaramanlis\nkarambol\nkarambolový\nkárame\nkaramel\nkaramelka\nkaramelmi\nkaramelový\nkáranie\nkarantén\nkaranténach\nkaranténam\nkaranténa\nkaranténny\nKáraný\nkararsky\nkararský\nkaraský\nkaras\nkáraš\nkárať\nkarát\nkarate\nkárate\nkaratista\nkaratistka\nkarátmi\nkarátový\nkaraván\nkaravánach\nkaravánam\nkaravána\nkaravan\nkaravaning\nkaravaningmi\nkaravaningoch\nkaravaningom\nkaravaningov\nkaravaningu\nkaravaningy\nkaravanista\nkaravanoval\nkaravanovala\nkaravanovali\nkaravanovalo\nkaravanovať\nkaravánové\nkaravánseráj\nkaravanuj\nkaravanuje\nkaravanujem\nkaravanujeme\nkaravanuješ\nkaravanujete\nkaravanujme\nkaravanujte\nkaravanujú\nkaravanujúc\nkaravela\nkáravý\nkára\nkarbamid\nkarbidácia\nkarbid\nkarbidový\nkarbofer\nkarbol\nkarbolín\nkarbolínový\nkarbolový\nKarbom\nkarbonácia\nkarbonádo\nkarbonári\nkarbonát\nkarbonatizácia\nkarbonátka\nkarbonátmi\nkarbón\nkarbonifikácia\nkarbonit\nkarbonizácia\nkarbonizačný\nkarbonizovanú\nkarbonizovať\nkarbónový\nkarbónsky\nkarbonylácia\nkarbonyl\nkarborafín\nkarborundový\nkarborundum\nkarbovanec\nkarboxylácia\nkarboxyl\nkarboxylový\nkarbu\nkarbunkul\nkarbunkulový\nkarburácia\nkarburačný\nkarburátor\nkarburátorový\nkarcer\nkarcinofóbia\nkarcinogén\nkarcinogenéza\nkarcinogenita\nkarcinogénny\nkarcinológia\nkarcinomatický\nkarcinomatózny\nkarcinóm\nkarcinostatikum\nkarcinóza\nkarda\nkardamon\nkardan\nkardanový\nkardia\nkardiaci\nkardiak\nkardiaká\nkardiakom\nkardiakov\nkardialgia\nkardiálny\nkardigany\nkardinála\nkardinál\nkardinalita\nkardinálka\nkardinálne\nkardinálny\nkardinálsky\nkardiocentier\nkardiocentrum\nkardiograf\nkardiogram\nkardiochirurg\nkardiochirurgia\nkardiochirurgický\nkardiochirurgička\nkardiológ\nkardiológia\nkardiologický\nkardiologička\nkardiologiský\nkardiomonitor\nkardiomyopatia\nkardionálny\nkardioplegia\nkardiopulmonálny\nkardioskop\nkardioskopia\nkardioskopom\nkardiospazmus\nkardiostimulátor\nkardiostimulátorom\nkardiostimulátorov\nkardiotachograf\nkardiotómia\nkardiotoniká\nkardiotonikum\nkardiovaskulárny\nkarditída\nkardogram\nkaré\nkarencia\nkaret\nkareta\nkarfiol\nkarfiolový\nkarfolit\nkarga\nkargo\nKargo\nkargom\nkarhanie\nkarhaný\nkarhať\nkarhavo\nkarhavý\nkarib\nkaribský\nkaribu\nkáričiek\nkárička\nkarička\nkáričke\nkáričkou\nkaričkový\nkáričky\nkarier\nkariér\nkariérach\nkariéram\nkariéra\nkarierista\nkarieristicky\nkarieristický\nkarieristka\nkarierizmus\nkariérny\nkariérový\nkaries\nkariet\nkarí\nkarikatúr\nkarikatúrach\nkarikatúram\nkarikatúra\nkarikaturista\nkarikaturistický\nkarikaturistka\nkarikatúrnosť\nkarikatúrny\nkarika\nkarikovaný\nkarikovať\nkarikturista\nkarimatka\nKarina\nkarisblok\nkarit\nkar\nkarkasy\nKarla\nKarle\nKarlin\nKarlou\nKarlov\nkarlovarský\nkarloveské\nkarloveského\nKarloveský\nkarlovský\nKarlových\nKarlovým\nKarlovými\nKarlovy\nKarlskrona\nKarlu\nKarly\nkarma\nkarmata\nkarmazín\nkarmazínový\nkarmelita\nkarmelitán\nkarmelitánka\nkarmelitánsky\nKarmelitskej\nkarmi\nkarmín\nkarmínovo\nkarmínovočervený\nkarmínový\nkarmu\nKarmy\nKarná\nkarnalit\nkarnát\nkarneol\nkarner\nkarnet\nkarnete\nkarnetmi\nkarnetoch\nkarnetom\nkarnetov\nkarnetu\nkarnety\nkarneval\nkarnevalmi\nkarnevalový\nkarnifikácia\nkarnivol\nkarnivoria\nkarnivorný\nkarnotit\nkárny\nKarol\nKaroli\nKarolín\nKarolina\nKarolínach\nKarolínam\nKarolína\nKaroline\nKarolínka\nKarolinou\nkarolínska\nKarolov\nKaroly\nkáro\nKaros\nkarosár\nkarosáreň\nkarosársky\nKarosa\nkaroséria\nkarotáž\nKarotáž\nkarotén\nkarotenoid\nkarotída\nkarotín\nkarotka\nkarotkový\nkárovaný\nkarovať\nkárový\nkarpálny\nKarpát\nKarpatami\nKarpatoch\nKarpatom\nkarpatskonemecký\nkarpatský\nKarpaty\nkarpavieť\nkarpavosť\nkarpavý\nkarpín\nkarpina\nkarpobiológia\nkarpofágia\nkarpológia\nkarposóma\nkarpotropizmus\nkart\nkartáč\nKartága\nKartáginca\nKartáginci\nkartáginský\nKartágo\nKartágom\nKartágu\nkartán\nkartár\nkartárka\nkartársky\nkarta\nkartel\nkartelizácie\nkartelizácii\nkartelizáciou\nkartelizáciu\nkartelizovať\nkartelmi\nkartelovo\nkartelový\nkarter\nkarteri\nkartezián\nkarteziáne\nkarteziánsky\nkarteziánu\nkarteziány\nkartička\nkartogr\nkartograf\nkartografia\nkartograficky\nkartografický\nkartografka\nkartografovia\nkartogramom\nKartogramy\nkartomantia\nkartometria\nkartonáž\nKartonážka\nkartonážke\nkartonážku\nkartonážky\nkartonážna\nkartonážne\nkartonážnej\nkartonážnu\nkartonážny\nkartonážnych\nkartonážnymi\nkartonážok\nkartón\nkartónovaná\nkartónovať\nkartónový\nkartotečný\nkartoték\nkartotékach\nkartotékam\nkartotéka\nkartotékový\nkartovanie\nkartovať\nkartovo\nkartový\nkartún\nkartúnový\nkartuš\nkartuša\nkartúza\nkartuzián\nkartuziánsky\nkarunkula\nkarusel\nkaruseloch\nkaruselom\nkaruselov\nkaruselový\nkaruselu\nkarusely\nKarviná\nKarviné\nKarvinej\nKarvinou\nkarvinský\nKarvinú\nkary\nkaryatída\nkaryogamia\nkaryológia\nkaryolymfa\nkaryolýza\nkaryon\nkaryoplazma\nkaryorexia\nkaryotyp\nkás\nkasá\nkasácia\nkasačného\nkasačnému\nKasačný\nkasaj\nkasajme\nkasajte\nkasajú\nkasajúc\nkasal\nkasala\nKasala\nkasali\nkasalo\nkasáme\nkasanica\nKasanom\nkasár\nkasáreň\nkasárenský\nkasárňach\nkasárňam\nkasárne\nkasársky\nkasárstvach\nkasárstvam\nkasárstvo\nkasáš\nkasať\nkasáte\nkasava\nkasa\nkasička\nkasin\nkasín\nkasina\nkasínach\nkasínam\nKasino\nkasíno\nkasínový\nkasiterit\nkaskád\nkaskádach\nkaskádam\nkaskáda\nkaskadér\nkaskadérka\nkaskadérsky\nkaskádovať\nkaskádovito\nkaskádovitý\nkáskádový\nkaskádový\nkasko\nkasňa\nkasní\nkasový\nkaspický\nKassel\nKassele\nKasselu\nkást\nkastanetách\nkastanetám\nkastanetami\nkastanety\nkastaniet\nkasta\nkastelán\nkastelánka\nkastigácia\nKastília\nkastílsky\nkastovnícky\nkastovníctvach\nkastovníctvam\nkastovníctvo\nkastový\nkastrácia\nkastračný\nkastrát\nkastróla\nkastról\nkastrólik\nkastrólmi\nkastrólový\nkastrovať\nkastrum\nkasula\nkaš\nKaš\nkáš\nKáš\nkaša\nkašeľ\nkašem\nkašeme\nkašeš\nkašete\nkaší\nkašička\nkašírovane\nkašírovania\nkašírovanie\nkašírovaním\nkašírovanosť\nkašírovaný\nkašírovať\nkaškaval\nKaškaval\nkaškavalu\nkaška\nkašľa\nkašľami\nkašlať\nkašľať\nkašlávať\nkašlavo\nkašľavo\nkašlavý\nkašľavý\nkašliava\nkašliavaj\nkašliavajme\nkašliavajte\nkašliavajú\nkašliavajúc\nkašliaval\nkašliavala\nkašliavali\nkašliavalo\nkašliavam\nkašliavame\nkašliavaš\nkašliavať\nkašliavate\nKašlík\nKašlíkom\nkašľoch\nkašľom\nkašľov\nkašľový\nkašme\nkašmír\nKašmír\nKašmírčan\nKašmírčana\nkašmírový\nkašmírska\nkašmírske\nkašmírskeho\nKašmírskej\nkašmírsky\nkašmírskych\nKašov\nKašová\nkašovatieť\nkašovitý\nKašovský\nkašte\nkaštielik\nkaštieľ\nkaštieľmi\nkaštieľoch\nkaštieľom\nkaštieľov\nkaštieľsky\nkaštieľu\nkašú\nKašub\nkašubčín\nkašubčina\nkašúc\nkatablast\nkatabolizmus\nkatadrómia\nkatafalk\nkatafáza\nkatafázia\nkataforetický\nkataforéznej\nkataforéznom\nkataforézou\nkataforézy\nkatagenéza\nkatachizovať\nkatakana\nkatakláza\nkatakliziem\nkataklizmatický\nkataklizma\nkataklyzma\nkatakomb\nkatakomba\nkatakombový\nkatakomby\nkatalán\nKatalána\nKatalánca\nkatalánčina\nKatalánec\nKataláni\nKatalánka\nkatalánskeho\nkatalánskej\nkatalánski\nKatalánsko\nkatalánskou\nkatalánsky\nkatalánskych\nkatalánskymi\nkataláza\nkatalektický\nkatalepsia\nkatalogizácia\nkatalogizačný\nkatalogizovanie\nkatalogizovaný\nkatalogizovať\nkatalóg\nkatalógovo\nkatalógový\nkatalógy\nkatalpa\nkatalytický\nkatalýz\nkatalýzach\nkatalýzam\nkatalyzátor\nkatalýza\nkatalyzovať\nkatamaran\nkatamaranom\nkatamarany\nkatamnéza\nkatan\nkatani\nkatanovi\nkatansky\nkatanský\nkatapleit\nkataplexia\nkatapult\nkatapultmi\nkatapultovaná\nkatapultovaní\nkatapultovania\nkatapultovanie\nkatapultovať\nkatapultový\nkatarakta\nkatarakt\nKatar\nKatarín\nKatarínach\nKatarínam\nKatarína\nKatarínina\nKatarínka\nKatarínke\nKatarínky\nKatarínska\nKatarínskej\nKatarínsku\nkatarínsky\nKatarínskych\nkatar\nkatarmi\nkatarový\nkatarský\nkatary\nkatarzia\nkatarzný\nkataster\nkatastr\nkatastrálny\nkatastrof\nkatastrôf\nkatastrofálny\nkatastrofa\nkatastroficky\nkatastrofický\nkatatónia\nkatatýmia\nkatazeľ\nkat\nKate\nkatedrál\nkatedrálach\nkatedrálam\nkatedrála\nkatedrálny\nkatedrálový\nkatedra\nkatedrový\nkategóriach\nkategoriálny\nkategória\nkategorickosť\nkategoricky\nkategorický\nkategorizácia\nkategorizovaná\nkategorizované\nkategorizovaní\nkategorizovania\nkategorizovanie\nkategorizovaných\nkategorizovať\nkatechéta\nkatechetický\nkatechetika\nkatechétka\nkatechétmi\nkatechétsky\nkatechétstvo\nkatechéz\nkatechézach\nkatechézam\nkatechéza\nkatechizácia\nkatechizmový\nkatechizmus\nkatechizovať\nkatecholamín\nkatechumen\nkatechumenický\nkatechumenka\nkatepsín\nkater\nKaterina\nkatéter\nkatetrizácia\nkatetrizácie\nkatetrizácii\nkatetrizáciu\nkatetrizovať\nkatexia\nkatexochén\nkatexovanie\nKáthmándú\nkatí\nkatia\nKatica\nkatil\nkatila\nKatilína\nkatilo\nKatina\nkatión\nkationizácia\nkatiónový\nKatka\nKatke\nKatkin\nKatkou\nKatku\nKatky\nkatód\nkatódach\nkatódam\nkatóda\nkatódovo\nkatódový\nkatoforit\nkatolicizmus\nkatolícky\nkatolícky\nkatolíctvach\nkatolíctvam\nkatolíctvo\nkatolíčka\nkatolík\nkatolyt\nKatou\nKátov\nkatovať\nKatovice\nkatovický\nkatovsky\nkatovský\nKatovu\nKatowický\nKatrin\nKatruša\nKatrušu\nKatu\nKatúň\nKatuša\nkaťuša\nkaťuší\nKatuška\nkaucia\nkaučný\nkaučuk\nkaučukovník\nkaučukový\nkauda\nkauk\nKaukaz\nKaukaze\nKaukazom\nkaukazský\nKaukazu\nKaukazy\nkaukliar\nkaukliarka\nkaukliarsky\nkaukliarstvo\nkaulifória\nkaulimovírus\nkauloid\nkaulom\nKaunas\nKaunase\nKaunasu\nkauri\nkaurí\nkausticky\nkaustický\nkaustifikácia\nkaustifikácie\nkaustifikácii\nkaustika\nkaustiku\nkaustikum\nkaustobiolit\nkautela\nkauter\nkauterizácia\nkáuz\nkauzalita\nkauzálnosť\nkauzálny\nkauzatívum\nkauza\nkáv\nkava\nKava\nkávach\nkavalec\nkavaléria\nkavalkáda\nkávam\nkavatína\nkáva\nkavčí\nKavečianskej\nkavejšiu\nkavent\nkaverien\nkaverna\nkavernikol\nkaviareň\nkaviarenský\nkaviár\nkaviármi\nkaviarňach\nkaviarňam\nkaviarnička\nkaviarnik\nkaviarnikov\nkaviárový\nkaviáry\nkávičkár\nkávičkárka\nkávička\nkavita\nkavitácia\nkavka\nkávovar\nkávovarmi\nkávovary\nkávovina\nkávovinový\nkávovník\nkávovníkový\nkávovo\nkávový\nkavyľ\nkavyľový\nkazaci\nKazach\nKazacha\nKazachstan\nkazajka\nkazak\nKazakova\nKazakovo\nkazakový\nkázanie\nkázaný\nkazára\nkazár\nkazári\nkazármi\nkazároch\nkazárom\nkazárov\nkazárovi\nkazárske\nkazaš\nKazaška\nkazašský\nkazateľ\nkazateľka\nkazateľňa\nkazateľnica\nkazateľsky\nkazateľský\nkazateľstvo\nkázať\nkázavať\nkaz\nkazeín\nkazeínom\nkazeínov\nkazeínové\nkazeínu\nkazemát\nkazematách\nkazematám\nkazematami\nkazemato\nkazematový\nkazematy\nkazematý\nkázeň\nkazenia\nkazenie\nkazením\nkazený\nkazeta\nkazetka\nkazetoték\nkazetotékach\nkazetotékam\nkazetotéka\nkazetový\nkaziace\nkaziaci\nKazimír\nKazimíre\nKazimírovej\nkazínový\nkazisvet\nkaziteľ\nkaziteľovi\nkaziť\nkazivce\nkazivcový\nkazivcu\nkazivec\nkázňach\nkázňam\nkázňový\nkazový\nkazuár\nkazuistika\nkazula\nKažde\nkaždodenne\nkaždodennosť\nkaždodenný\nkaždomesačného\nkaždopádne\nkaždoročne\nkaždoročný\nkaždučičký\nkaždučký\nkaždý\nKb\nKB\nKBr\nKBS\nkcal\nKCl\nKč\nKčs\nkde\nKDE\nkdeby\nkdečím\nkdečo\nkdečoho\nkdečom\nkdečomu\nkdejaký\nkdekade\nkdekoho\nkdekoľvek\nkdekom\nkdekomu\nkdekto\nkdektorý\nkdekým\nkdesi\nkdeže\nkdežeby\nKDH\nKDU\nKE\nké\nkea\nkebab\nKebab\nkebabov\nkeby\nkebyže\nkecať\nkecia\nkeciam\nkeciame\nkeciaš\nkeciate\nkecnúť\nKecskemét\nKecskeméte\nKecskemétu\nkeč\nkečka\nKečove\nKečovo\nkečup\nkečupový\nkeď\nkedy\nkedykoľvek\nkedysi\nkedyže\nkeďže\nkefalometer\nkefao\nkefár\nkefárka\nkefármi\nkefárovi\nkefársky\nkefa\nkefír\nkefírový\nkefka\nkefnúť\nkefôčka\nkefovanie\nkefovať\nkefový\nkého\nkéhože\nKechnec\nkechnecký\nkeirin\nkej\nkejže\nkeksami\nkeks\nkeksík\nkeksový\nKela\nkel\nKelča\nKelči\nkele\nkelim\nkelím\nkelímový\nKelin\nKelina\nkelmi\nkelňa\nkelne\nkelner\nkelnerka\nkelni\nkelniam\nkelňou\nkelňu\nkeloid\nkelotómia\nkelový\nkelt\nKelt\nkeltčina\nkeltológia\nkeltsky\nkeltský\nkelvín\nkelvin\nkelyfit\nkemalizmus\nkemp\nkemping\nkempingmi\nkempingoch\nkempingom\nkempingov\nkempingový\nkempingu\nkempingy\nkempista\nkempistka\nkempovane\nkempovanie\nkempovaný\nkempovať\nkempový\nkému\nkémuže\nKeňa\nKeňan\nKeňanka\nkencia\nkendo\nKendo\nKeňe\nkengúr\nkengura\nKení\nkenofytikum\nkenotaf\nKeňou\nkenozoium\nkensky\nkenský\nkentaur\nkentaurov\nkentaurus\nkentuckej\nKentucky\nKeňu\nKenwood\nKeňy\nkepeň\nkeper\nkepienka\nkepienkami\nkepienkoch\nkepienkom\nkepienkov\nkepienku\nkepienky\nkepienok\nkeprový\nkeramický\nkeramikár\nkeramikárka\nkeramikárovu\nkeramikársky\nkeramikárstvach\nkeramikárstvam\nkeramikárstvo\nkeramika\nkeramikový\nkeramohalit\nkeramzit\nkeramzitu\nkeratín\nkeratinizácia\nkeratínový\nkeratitída\nkerato\nkeratofág\nkeratolytikum\nkeratóm\nkeratopatia\nkeratóza\nker\nKerberos\nkermeš\nkermezit\nkernit\nkerovať\nkerový\nkerozín\nkerozíne\nkerozínom\nkerozínu\nKertágo\nkertak\nkeser\nkeson\nkesón\nkesónový\nkešeňa\nkešení\nkešienka\nkešu\nketa\nkeťas\nkeťasenie\nkeťaseniu\nkeťasiť\nketazón\nketén\nketolátka\nketón\nketonémia\nketónový\nketonúria\nketóz\nketóza\nketupa\nKevický\nkeyboard\nkéže\nKežmarka\nKežmarkom\nKežmarku\nKežmarok\nkežmarského\nkežmarskej\nkežmarskému\nkežmarskí\nkežmarskú\nkežmarských\nKežmarský\nKFOR\nkg\nKGB\nkhaki\nkhmér\nkHz\nKHz\nkí\nkiahňach\nkiahňam\nkiahňami\nkiahne\nkiahní\nkiahňový\nKiarov\nkibic\nkibicova\nkibicovať\nkibuc\nkickbox\nkicking\nkidnapper\nkidnapping\nkie\nkief\nkieho\nkiehože\nKiel\nkielskeho\nkielskej\nkielskom\nkiemu\nkiemuže\nkieserit\nkiež\nkiežby\nkieže\nKik\nkiking\nkikiríkanie\nkikiríkať\nkikiriki\nkikirikí\nkiksami\nkiks\nkiksla\nkiksli\nkikslo\nkiksne\nkiksnem\nkiksneme\nkiksneš\nkiksnete\nkiksni\nkiksnime\nkiksnite\nkiksnú\nkiksnúc\nkiksnúť\nkiksol\nkiksoval\nkiksovala\nkiksovali\nkiksovalo\nkiksovať\nkiksuj\nkiksuje\nkiksujem\nkiksujeme\nkiksuješ\nkiksujete\nkiksujme\nkiksujte\nkiksujú\nkiksujúc\nkíl\nkilacionovať\nkilečiek\nkilečko\nKilimandžáro\nkilimandžársky\nkiloampér\nkiloampéroch\nkiloampérov\nkilobajt\nkilobajtový\nkilogram\nkilogramový\nkilohertz\nkilojoulami\nkilojoule\nkilojouloch\nkilojoulom\nkilojoulov\nkilojoulu\nkilojouly\nkilokalória\nkilokalótia\nkilo\nkilometer\nkilometráž\nKilometráže\nkilometrovné\nkilometrovného\nkilometrovnému\nkilometrovník\nkilometrovnom\nkilometrovným\nkilometrovo\nkilometrový\nkilopond\nkilovec\nkilovník\nkilovolt\nkilovoltmi\nkilový\nkilowatt\nkilowatthodina\nkilowattmi\nkilowattový\nkilt\nKim\nkimberleyského\nkimberleyskému\nKimberleyský\nkimenokata\nKimom\nkimon\nkimono\nkimonový\nKimov\nkín\nkináza\nKinčeš\nKinčeša\nKinčešom\nKinčešov\nkindžal\nkinematický\nkinematika\nkinematograf\nkinematografia\nkinematografický\nkinestetický\nkinestéza\nkinetický\nkinetika\nkinetín\nkinetizmus\nkinetofón\nkinetogenéza\nkinetograf\nkinetoskop\nkinetostatika\nkinetóza\nkinéza\nkinézia\nkineziológia\nkineziológie\nking\nkinín\nkinocília\nkinofikácia\nkinofilm\nkinogram\nkino\nkinooperatér\nkinooperatérsky\nkinoplazma\nkinosál\nkinosálach\nkinosálam\nkinosála\nKinshasa\nkiosk\nkip\nkipu\nkirgiz\nKirgiz\nKirgizka\nKirgizsko\nkirgizsky\nkirgizský\nkirgizština\nKiribatčan\nKiribatčanka\nKiribati\nkiribatský\nkirna\nkismet\nkisňa\nkisní\nkisnička\nkisuč\nkišasoňka\nkišasonka\nKišiňov\nkišiňovský\nkit\nkiu\nkív\nkiva\nkivi\nkiví\nkivový\nkíže\nkJ\nkjeldahlizácia\nkjú\nKjúšú\nKK\nKKC\nkl\nkla\nkľač\nkľačadlo\nkľačanie\nkľačať\nKľače\nkľačí\nkľačia\nkľačiac\nkľačiaci\nkľačiačky\nkľačím\nkľačíme\nkľačíš\nkľačíte\nkľačme\nkľačmo\nKľačna\nKľačno\nkľačte\nklaď\nklád\nklada\nklad\nkladenia\nkladenie\nkladením\nkladeniu\nkladený\nkladina\nkladív\nkladivár\nkladiviek\nkladivko\nkladivkový\nkladivo\nkladivový\nkladka\nkladkostroj\nkladne\nKladno\nkladnosť\nkladný\nkladodium\nkladománia\nkladový\nkladúci\nkľaganie\nkľagať\nkľag\nkľagmi\nkľagoch\nkľagom\nkľagov\nkľagu\nkľagy\nklak\nklaka\nkľakadlo\nkľakanie\nkľakať\nkľak\nkľaknutie\nkľaknúť\nklaksón\nklaksónový\nklamania\nklamanie\nklamaním\nklamaniu\nklamaný\nklamár\nklamárka\nklamársky\nklamať\nklamávať\nklamavý\nklam\nklamlivejšio\nklamlivo\nklamlivosť\nklamlivý\nklamme\nklamne\nklamnosť\nklamný\nkľampa\nklampiar\nklampiarov\nklampiarsky\nklampiarstvach\nklampiarstvam\nklampiarstvo\nklampierstvo\nklamstvo\nklamte\nklamúci\nklaňajúca\nklaňaní\nklaňania\nklaňanie\nklaňať\nklan\nklanica\nklanovo\nklanový\nklaný\nklapať\nklap\nklapka\nklapkový\nklapla\nklapli\nklaplo\nklapne\nklapnem\nklapneme\nklapneš\nklapnete\nklapni\nklapnime\nklapnite\nklapnú\nklapnúc\nklapnúť\nklapol\nklapotať\nklapot\nKlár\nKlárach\nKláram\nKlára\nklaret\nklarifikácia\nKlárin\nKlárina\nKlárine\nKlárinej\nklarinet\nklarinetista\nklarinetistka\nklarinetový\nKlárinho\nKlárini\nKlárinmu\nKlárino\nKlárinom\nKlárinou\nKlárinu\nKláriných\nKláriným\nKlárinými\nklariska\nklariský\nklarit\nklark\nklarkia\nklas\nklasici\nklasicista\nklasicistický\nklasicizmus\nklasickosť\nklasicky\nklasický\nklasifikácia\nklasifikačný\nklasifikátor\nklasifikovanie\nklasifikovaný\nklasifikovať\nklasika\nklasik\nklasiť\nkláska\nkláskami\nkláskoch\nkláskom\nKláskom\nkláskov\nkláskový\nklásku\nklásky\nklasmatocyt\nklasnatieť\nklasnatý\nklások\nKlasove\nklasovitý\nklasový\nklast\nklaster\nklasterová\nklastické\nklásť\nkláštor\nkláštoriska\nkláštornícky\nkláštorník\nkláštorný\nkláštorský\nklát\nklátenie\nklatí\nklátik\nklátisko\nklátiť\nklátivo\nklátivosť\nklátivý\nklátmi\nklato\nklatom\nKlátová\nKlátove\nKlátovej\nKlatovmi\nKlatovoch\nKlatovom\nklatovskej\nklatovskému\nklatovskom\nklatovskou\nklatovskú\nklatovských\nklatovským\nklatovskými\nKlatovský\nKlatovy\nklať\nKlaudia\nKlaudiin\nklaudikácia\nKlaudius\nklaun\nklaunovsky\nklaunovský\nklaunovstvo\nklausthalit\nklaustrofília\nklaustrofóbia\nklauza\nKlauza\nklauzula\nklauzúr\nklauzúrach\nklauzúram\nklauzúra\nklauzúrny\nklávesa\nkláves\nklávesnica\nklávesnicový\nklávesový\nklaviatúr\nklaviatúrach\nklaviatúram\nklaviatúra\nklavičembál\nklavičembalo\nkľavieť\nklavifón\nklavichord\nklavikula\nklavikulárny\nklavírik\nklavirista\nklaviristka\nklavír\nklavírmi\nklavírny\nklavírový\nklavíry\nkľavo\nkľavosť\nklavus\nkľavý\nkĺba\nkĺb\nklbči\nklbčime\nklbčite\nklbčiť\nklbe\nkĺbi\nklbiek\nkĺbik\nklbko\nklbôčkach\nklbôčkam\nklbôčko\nkĺbovite\nkĺbovito\nkĺbovitý\nkĺbový\nklbu\nKlčov\nklčovaní\nklčovania\nklčovanie\nklčovaním\nklčovať\nKlčovom\nKĽDR\nkle\nklebetársky\nklebeta\nklebetenieN\nklebetievať\nklebetiť\nklebetnica\nklebetnícky\nklebetníctvach\nklebetníctvam\nklebetníctvo\nklebetník\nklebetnosť\nklebetný\nklebietka\nkleistogamia\nkleistopetálny\nklekotať\nklematis\nKlement\nklementína\nkleň\nKleňany\nklen\nklenba\nklenbový\nklenie\nkleniem\nklenieme\nklenieš\nkleniete\nkleňme\nklenot\nklenotmi\nklenotnica\nklenotnícky\nklenotníctvach\nklenotníctvam\nklenotníctvo\nklenotníčka\nklenotník\nKlenovca\nKlenovci\nKlenovec\nklenovského\nKlenovský\nklenový\nkleňte\nklenutia\nklenutie\nklenutím\nklenutiu\nklenuto\nklenúť\nklenutý\nKleopatra\nKleopatru\nKleopatry\nKlepáč\nKlepáča\nKlepáči\nklepačka\nKlepáčom\nklepaní\nklepania\nklepanie\nklepaniu\nklepať\nklepávať\nklepec\nklepeto\nklepietko\nklepietok\nklepkajúci\nklepkať\nklepkávať\nklepnutie\nklepnutím\nklepnúť\nklepotajúc\nklepotať\nklepotavý\nklepot\nklepotmi\nklepová\nklepové\nklepsydra\nkleptomácia\nkleptoman\nkleptománia\nkleptomanka\nklér\nklére\nklerík\nklerikách\nklerikál\nklerikalizmus\nklerikalizovať\nklerikálka\nklerikálny\nklerikám\nklerikami\nklerika\nklerik\nklérmi\nklérofašista\nklérofašistický\nklérofašizmus\nkléroch\nklérom\nkleronómny\nklérov\nkléru\nklérus\nkléry\nklesajúci\nklesaní\nklesania\nklesanie\nklesaním\nklesaniu\nklesať\nklesávať\nklesavo\nklesavosť\nklesavý\nklesnúca\nklesnúce\nklesnúci\nklesnúcu\nklesnutie\nklesnutiu\nklesnúť\nklesnutý\nklevela\nklezeasténia\nkliamp\nkliatba\nkliatie\nkliať\nkliaty\nklíček\nklíčenia\nklíčenie\nklíčeniu\nklíčiace\nklíčiacej\nklíčiť\nklíčivosť\nklíčivý\nklíčka\nklíčkami\nklíčkoch\nklíčkom\nklíčkov\nklíčkovať\nklíčkový\nklíčku\nklíčky\nklíčny\nKliem\nklient\nklientel\nklientelách\nklientelám\nklientelami\nklientela\nklientelizmus\nklientiek\nklientkám\nklientka\nklientova\nklientove\nklientovej\nklientovho\nklientovmu\nklientovo\nklientovom\nklientovou\nklientovu\nklientových\nklientovým\nklientsky\nklientský\nkliesniť\nkliešťach\nkliešťam\nkliešťami\nklieštenec\nkliešte\nklieští\nklieštikmi\nklieštikoch\nklieštikom\nklieštikov\nklieštiky\nklieštiny\nklieštiť\nkliešť\nklieštový\nkliešťový\nklietka\nklietkový\nklietočka\nklif\nklikanie\nklikať\nklika\nklik\nklík\nkliknutie\nkliknúť\nkliknutý\nklim\nklím\nklímach\nklimakterický\nklimaktérium\nklímam\nklimaticky\nklimatický\nklimatizácia\nklimatizačne\nklimatizačný\nklimatizovania\nklimatizovanie\nklimatizovaný\nklimatizovať\nklimatológia\nklimatologický\nklimatológov\nklimatológovia\nklimatoterapia\nklimatoterapie\nklimatoterapiu\nklimatyp\nklimax\nklimaxový\nklíma\nklin\nklincovaných\nklincovka\nklincový\nklinč\nklinček\nklinčekový\nklinec\nklingať\nklinicky\nklinický\nKlinik\nklinika\nklinikov\nklinka\nklinká\nklinkať\nKlinkom\nKlinkov\nklinku\nklinky\nklinoenstatit\nklinogonálny\nklinochlór\nklinok\nklinoklas\nklinometer\nklinopisný\nklinostrengit\nklinotropizmus\nklinovitý\nklinový\nklinozoizit\nKlinský\nklintonit\nKlió\nklip\nklipkať\nklipkavý\nklipnutie\nklipnúť\nklíps\nklipsa\nklipsňa\nklipsní\nklipsová\nklipsové\nklíring\nklíringmi\nklíringoch\nklíringom\nklíringov\nklíringovo\nklíringový\nklíringu\nklíringy\nklišé\nklišéovitosť\nklišéovitý\nklitoris\nklitorisu\nklívia\nklizúra\nKlíž\nKlížska\nKlížske\nklk\nklknúť\nklknutím\nklkovatý\nklkovitý\nklnie\nklnúť\nklnutie\nkloák\nkloaka\nkloakový\nklobás\nklobásach\nklobásam\nklobása\nklobáska\nklobásový\nklobúčik\nklobučnícky\nklobučníctvach\nklobučníctvam\nklobučníctvo\nklobučníčka\nklobučník\nklobúk\nklobúkový\nKlobušického\nklofnúť\nkloch\nklochni\nklochnime\nklochnite\nklochniť\nklochti\nklochtime\nklochtite\nklochtiť\nklokan\nKlokočí\nklokočiť\nklokoč\nKlokočova\nKlokočove\nklokočový\nklokotajúc\nklokotanie\nklokotať\nklokotavo\nklokotavý\nklokot\nklokotmi\nkloktadlo\nkloktaní\nkloktanie\nkloktať\nklom\nklon\nklonenie\nklonický\nkloniť\nklonkaní\nklonkať\nklonka\nklonovanie\nklonovaný\nklonovať\nklonus\nklopačka\nklopadlo\nklopaní\nklopanie\nklopaním\nklopať\nklopávať\nklopenie\nklopený\nklopiť\nklopkajúci\nklopkaní\nklopkanie\nklopkať\nklopkávať\nklopnúť\nklopotajúc\nklopotať\nklopota\nklopot\nklopotiť\nklopová\nklopové\nklot\nKlóthó\nklov\nklový\nklozet\nklozete\nklozetov\nklozety\nklu\nklub\nklubovka\nklubovky\nklubovňa\nklubovní\nklubový\nkľuckať\nkľuč\nkľúčenka\nkľučiar\nkľučiarka\nkľučiarsky\nkľúčik\nkľúč\nkľučka\nKľučková\nkľučkovanie\nkľučkovať\nKľučkovej\nKľučkovou\nkľúčny\nKľúčovec\nkľúčovo\nKľúčovská\nkľúčový\nkľúčový\nkľud\nkľudne\nkľudný\nkľukatiť\nkľukato\nkľukatosť\nkľukatý\nkľuka\nKluknava\nKluknave\nKluknavský\nKluknavy\nkľuknúť\nkľukový\nklusá\nklusácke\nklusáckej\nklusácku\nklusácky\nklusáckych\nklusaj\nklusajme\nklusajte\nklusajú\nklusajúc\nklusák\nklusám\nklusáme\nklusáš\nklusáte\nklusať\nklusávať\nklusavý\nklus\nKlusová\nKlusovou\nKlusovú\nKľušov\nKľušove\nkľutie\nkľuť\nkľuvať\nKluže\nKluži\nKluž\nklužský\nKlužu\nkly\nklystíra\nklystír\nklystíri\nklyzma\nkĺza\nkĺzačka\nkĺzadlo\nkĺzajúci\nklzák\nkĺzanie\nkĺzať\nkĺzavica\nkĺzavo\nkĺzavosť\nkĺzavý\nklzísk\nklzisko\nklzko\nklzkosť\nklzkosti\nklzký\nklzný\nkm\nKM\nkmásať\nkmasnúť\nkmáš\nkmáše\nkmášem\nkmášeme\nkmášeš\nkmášete\nkmášme\nkmášte\nkmášu\nkmášuc\nkmeň\nkmeňotvorný\nkmeňovo\nkmeňový\nKment\nKmentová\nkmérsky\nkmeť\nKmeťova\nKmeťová\nKmeťove\nKmeťovo\nKmeťovom\nkmeťovský\nkmetský\nkmienka\nkmienkami\nkmienkoch\nkmienkom\nkmienkov\nkmienkový\nkmienku\nkmienky\nkmienok\nkmih\nkmín\nkmíni\nKmíni\nkmíniť\nkmínovi\nkmínsky\nkmínstvach\nkmínstvam\nkmínstvo\nkmitajúci\nkmitanie\nkmitať\nkmitavosť\nkmitavý\nkmit\nkmitla\nkmitli\nkmitlo\nkmitmi\nkmitne\nkmitnem\nkmitneme\nkmitneš\nkmitnete\nkmitni\nkmitnime\nkmitnite\nkmitnú\nkmitnúc\nkmitnúť\nkmitočet\nkmitočtovo\nkmitočtový\nkmitol\nkmotier\nkmotor\nkmotra\nkmotri\nkmotríci\nkmotrička\nkmotríčkovať\nkmotrík\nKmotríkova\nKmotríkove\nKmotríkovej\nKmotríkovo\nKmotríkovom\nKmotríkovým\nkmotriť\nkmotroch\nkmotrom\nkmotrovcami\nkmotrovci\nkmotrovcoch\nkmotrovcom\nkmotrovcov\nkmotrovia\nkmotrovský\nkmotrovstvo\nkmotrov\nkmottrovstvo\nKN\nknajpovanie\nknaster\nkňaz\nkňazište\nkňazovať\nkňazovho\nkňazsky\nkňazský\nkňazstvo\nKňažia\nKňažická\nkňažka\nkňažkin\nkňažkinho\nkňažkino\nkňažnách\nkňažnám\nkňažnami\nkňažná\nkňažstvo\nknedieľ\nknedľa\nknedlí\nknedlička\nknedľový\nknecht\nknesset\nknieža\nkniežací\nkniežatský\nkniežatstvo\nknif\nknih\nknihár\nknihárne\nknihársky\nknihárstvach\nknihárstvam\nknihárstvo\nkniha\nkníhkupcovia\nkníhkupec\nkníhkupecký\nkníhkupectvo\nkníhkupkyňa\nknihomoľ\nknihopis\nkníhotlač\nknihovaná\nknihované\nknihovaní\nknihovania\nknihovanie\nknihovaním\nknihovaných\nknihovaným\nknihovať\nknihoveda\nknihovňa\nknihovní\nknihovnícky\nknihovníctvach\nknihovníctvam\nknihovníctvo\nknihovnička\nknihovníčka\nknihovník\nkníhtlač\nkníhtlačiar\nkníhtlačiareň\nkníhtlačiarňach\nkníhtlačiarňam\nkníhtlačiarňami\nkníhtlačiarne\nkníhtlačiarni\nkníhtlačiarní\nkníhtlačiarňou\nkníhtlačiarsky\nkníhtlačiarstvo\nkníhviazačského\nknísať\nknísavo\nknísavý\nkníš\nkníše\nkníšem\nkníšeme\nkníšeš\nkníšete\nkníšme\nkníšte\nkníšu\nkníšuc\nkniž\nknižka\nKnižková\nknižne\nknižnica\nknižnička\nknižnično\nknižničný\nknižnosť\nknižný\nknižočka\nknižtička\nknokaut\nknokautmi\nknokautovaný\nknokautovať\nknôt\nknôtik\nknôtmi\nknôtový\nknow\nkňuč\nkňučanie\nkňučať\nknút\nknuta\nKNV\nKNX\nKO\nkoacervát\nkoadaptácia\nkoagulácia\nkoagulačne\nkoagulačný\nkoagulans\nkoagulant\nkoagulát\nkoaguláza\nkoagulín\nkoagulopatia\nkoagulovanie\nkoagulovaný\nkoagulovať\nkoagulum\nkoainista\nkoakvizícia\nkoala\nkoalescencia\nkoalícia\nkoalične\nkoaličníčka\nkoaličník\nkoalično\nkoaličný\nkoarktácia\nkoati\nkoaxiálny\nkobalt\nkobaltín\nkobaltmi\nkobaltový\nkobea\nKobeliarove\nKobeliarovo\nkobelit\nkobercovo\nkobercový\nkoberček\nkoberčky\nkoberec\nkobier\nkobka\nkobler\nkobold\nkobra\nkobrí\nKobrin\nkobrina\nkobýl\nkobyla\nkobylí\nkobylinec\nkobylka\nkobyľom\nkobyľou\nKobza\nKobzu\nkockavý\nkocka\nkockovaný\nkockový\nkocôčka\nKocurany\nkocúr\nkocúrik\nkocúrkovčín\nkocúrkovčinách\nkocúrkovčinám\nkocúrkovčinami\nkocúrkovčina\nKocúrkovo\nkocúrkovsky\nkocúrkovský\nkocúry\nkočiarik\nkočiar\nkočiarmi\nkočíček\nkočíčka\nkočíčkami\nkočíčkoch\nkočíčkom\nkočíčkov\nkočíčku\nkočíčky\nkočikáreň\nkočikárňach\nkočikárňam\nkočík\nkočíkovať\nkočíkový\nKočín\nKočína\nKočíne\nKočínske\nkočínskeho\nKočínsky\nkočis\nkočisi\nkočiš\nKočišovej\nkočišský\nkoč\nkočka\nKočkin\nKočkovská\nkočová\nkočovaní\nkočovať\nkočovnícky\nkočovníctvo\nkočovník\nkočovný\nkočujúca\nkočujúce\nkočujúci\nKodak\nKodaň\nkodanský\nkód\nkodeín\nkodeínový\nkodéra\nkodér\nkodéri\nkodérmi\nkodéroch\nkodérom\nkodérov\nkodéru\nkodéry\nkódex\nkódexový\nkodiak\nkodicil\nkodifikácia\nkodifikačný\nkodifikovanie\nkodifikovaný\nkodifikovať\nkodikológia\nkódovací\nkódovačB\nkódovane\nkódovanie\nkódovaný\nkódovať\nkódovo\nkódový\nkoedukácia\nkoedukačný\nkoefeínový\nkoeficienta\nkoeficient\nkoeficientmi\nkoenzým\nkoercitívny\nkoevolúcia\nkoexistencia\nkoexistenčný\nkoexistovať\nkôf\nkofa\nkofeín\nkofeinizmus\nkofeínový\nkofina\nkofochirurgia\nkofol\nkofola\nkofóza\nkofund\nkofunkcia\nkoga\nkogazín\nkogentný\nkognácia\nkognát\nkognícia\nkognitívny\nkohabitácia\nkoherencia\nkoherenčný\nkoherentnosť\nkoherentnosti\nkoherentný\nkohézia\nkohézna\nkohézne\nkohézneho\nkohéznej\nkohéznemu\nkohéznom\nkohéznou\nkohéznu\nkohézny\nkohéznych\nkohéznym\nkohéznymi\nkoho\nkohokoľvek\nkohort\nkohorta\nkohorte\nkohortu\nkohorty\nkohosi\nkohože\nkohút\nkohutí\nkohútí\nkohútik\nkohútiku\nkohútilo\nkohútisk\nkohútiská\nkohútiskách\nkohútiskám\nkohútisko\nkohútisku\nkohútiť\nkohuťom\nkohúťom\nkohuťou\nkohúťou\nkohúty\nKochanom\nkochať\nkochia\nkoilometria\nkoincidencia\nkoincidenčne\nkoincidenčný\nkoiné\nkoinonifóbia\nKoitu\nkoitus\nkój\nkójach\nkója\nkójam\nkóje\nkojená\nkojené\nkojenec\nkojenecký\nkojenia\nkojenie\nkóji\nkójí\nkojiť\nkojot\nKojotu\nkojoty\nkójou\nKojšov\nKojšovskej\nKojšovskou\nkóju\nkok\nkoka\nKoka\nkokaín\nkokainista\nkokainizmus\nkokaínový\nkokakola\nkokarda\nkokáreň\nKokava\nKokave\nKokavou\nKokavy\nkokci\nkokcidióza\nkokcigodýnia\nkokcime\nkokcite\nkokeit\nkokeršpaniel\nkoketa\nkoketéria\nkoketka\nkoketne\nkoketnosť\nkoketný\nkoketovaní\nkoketovania\nkoketovanie\nkoketovaním\nkoketovaniu\nkoketovať\nkoketujúci\nkokiet\nkokila\nkokilové\nkokilovej\nkokilových\nkokimbit\nkokmi\nkokoch\nkokom\nKokom\nkokón\nkokónový\nkokos\nkokosovník\nkokosovo\nkokosový\nkokoš\nkokošiť\nkokot\nkokote\nKokotka\nkokotu\nkokoty\nkokov\nkokpit\nkokpite\nkokpitoch\nkokpitom\nkokpitov\nkokpitu\nkokpity\nkokrétum\nkoksár\nkoksáreň\nkoksárenský\nkoksárenstva\nkoksárenstve\nkoksárenstvo\nkoksármi\nkoksárňach\nkoksárňam\nkoks\nkoksochémia\nkoksochémie\nkoksovacia\nkoksovacie\nkoksovacích\nkoksovaného\nkoksovanie\nkoksovateľný\nkoksovať\nkoksovňa\nkoksovňami\nkoksovne\nkoksovni\nkoksovní\nkoksovniach\nkoksovňou\nkoksovňu\nkoksový\nkoksujúci\nkoktá\nkoktail\nkoktailmi\nkoktailový\nkoktaj\nkoktajme\nkoktajte\nkoktajú\nkoktajúc\nkoktám\nkoktáme\nkoktaní\nkoktanie\nkoktáš\nkoktáte\nkoktať\nkoktavo\nkoktavosť\nkoktavý\nkokteil\nkokteilmi\nkokteilový\nkoktejl\nkoku\nkokus\nkoky\nkol\nkolaborácia\nkolaborant\nkolaborantka\nkolaborantský\nkolaborantstvo\nkolaborovaním\nkolaborovať\nkolácia\nkolacionovanie\nkolacionovať\nkoláčik\nKolačíne\nkoláč\nKoláčkom\nKolačkov\nKolačkovský\nKolačno\nkoláčový\nkolagén\nkolagenóza\nkoľaj\nkoľajísk\nkoľajisko\nkoľajíšť\nkoľajišťa\nkoľajišťami\nkoľajište\nkoľajišti\nkoľajišťom\nkoľajišťu\nkoľajnica\nkoľajnicový\nkoľajnička\nkoľajničkách\nkoľajový\nkolamín\nkolapsar\nkolaps\nkolár\nkolárik\nKolárova\nKolárová\nKolárove\nKolárovej\nKolárovho\nKolárovo\nKolárovom\nkolárovského\nkolárovskej\nkolárovskom\nkolárovských\nkolárovským\nKolárovský\nkolársky\nkolárstvach\nkolárstvam\nkolárstvo\nkolaterál\nkolaterála\nkolaterálny\nkolaterálu\nkolaterály\nkolatúra\nkolaudácia\nkolaudačný\nkolaudovania\nkolaudovanie\nkolaudovaním\nkolaudovaný\nkolaudovať\nkolavorácia\nkola\nkolážach\nkolážam\nkoláž\nkolážový\nkôlb\nkôl\nKolba\nKolbasov\nkolbe\nkolbíšť\nkolbišťa\nkolbišťami\nkolbište\nkolbišti\nkolbišťom\nkolbišťu\nKolbu\nkolby\nkoldokola\nkolečka\nkolečko\nkoleda\nkoledný\nkoledovať\nkoledový\nkolega\nkolegialít\nkolegialita\nkolegiálnosť\nkolegiálny\nkolégiovo\nkolégiový\nkolégium\nkolegovu\nkolegyňa\nkolegynka\nkolekcia\nkolekt\nkolekta\nkolektív\nkolektivista\nkolektivisticky\nkolektivistický\nkolektivita\nkolektivizácia\nkolektivizačný\nkolektivizmus\nkolektivizovať\nkolektívnosť\nkolektívny\nkolektívum\nkolektómia\nkolektor\nkolektorový\nkolemanit\nkolembačka\nkolembať\nkolembavo\nkolembavý\nkolenačky\nkolenchým\nkolenkovať\nkolenný\nkoleno\nkolenový\nkoleoptéra\nkoleopterológia\nkoleoptóza\nkolerácia\nkoleso\nkolesovo\nkolesový\nkoleus\nkolchoz\nkolchoznícky\nkolchozníčka\nkolchozník\nkolchozno\nkolchozný\nkólia\nkolibacilóza\nkolibacilúria\nkoliba\nkolibričí\nkolibrí\nkolibrík\nkolibríky\nkolíček\nkolíčka\nkolíčkami\nkolíčkoch\nkolíčkom\nkolíčkov\nkolíčkovací\nkolíčkovanie\nkolíčkovať\nkolíčkový\nkolíčku\nkolíčky\nkolidovať\nkoliečkom\nkolien\nkolienko\nkolienok\nkoliesko\nkolieskový\nkoliesok\nkoligácia\nkolika\nkolík\nkolíkovaní\nkolíkovania\nkolíkovanie\nkolíkovaniu\nkolíkovať\nkolíkový\nkolikový\nkolikvácia\nkolimácia\nkolimaha\nkolimátor\nKolín\nKolína\nKolíňanoch\nKolíňany\nKolíne\nkolineácia\nkolinit\nKolínom\nkolínsky\nkolínsky\nKolínu\nkolísajúc\nkolísajúci\nkolísajúcich\nkolísané\nkolísaní\nkolísania\nkolísaniach\nkolísaniam\nkolísaniami\nkolísanie\nkolísaním\nkolísaniu\nkolísať\nkolísavo\nkolísavosť\nkolísavý\nkolíska\nkolíšu\nkolíšuc\nkolitída\nkolízia\nkolízny\nkolkár\nkolkáreň\nkolkárka\nkolkárňach\nkolkárňam\nkolkársky\nkolkárstvo\nkoľkáta\nkoľkáte\nkoľkáteho\nkoľkátej\nkoľkátemu\nkoľkatí\nkoľkáti\nkoľkátiek\nkoľkatím\nkoľkátka\nkoľkátkach\nkoľkátkam\nkoľkátkami\nkoľkátke\nkoľkátkou\nkoľkátku\nkoľkátky\nkoľkátok\nkoľkátom\nkoľkátou\nkoľkátu\nkoľkáty\nkoľkátych\nkoľkátym\nkoľkátymi\nkoľkíže\nkoľko\nkoľkociferný\nkoľkodenný\nkoľkodňový\nkoľkokoľvek\nkoľkokrát\nkoľkolitrový\nkoľkonásobne\nkoľkonásobný\nkoľkoposchodový\nkoľkoraký\nkoľkoročný\nkoľkosi\nkolkovania\nkolkovanie\nkolkovaním\nkolkovaniu\nkolkovaný\nkolkovať\nkolkovné\nkolkovného\nkolkový\nkoľkože\nkoľkýkrát\nkoľký-toľký\nkoľký\nkoľkýže\nkollárovskej\nkollinzit\nkolmácia\nkolmejšej\nkolmejší\nkolmejšia\nkolmejšie\nkolmejšieho\nkolmejšiemu\nkolmejších\nkolmejším\nkolmejšími\nkolmejšiu\nkolmejšom\nkolmejšou\nkolmi\nkolmica\nkolmo\nkolmosť\nkolmý\nkôlňach\nkôlňam\nkôlňa\nkôlní\nkôlnička\nkolobeh\nkolobežka\nkolobežkovať\nkolódiový\nkolódium\nkolofanit\nkolofónia\nkolofóniový\nkologaritmus\nkológium\nkolohnát\nkolohnáti\nkoloid\nkoloidný\nkolokácia\nkolokázia\nkolok\nkolokvializmus\nkolokvijný\nkolokviový\nkolokvium\nkolo\nKoloman\nkolomaž\nKolomba\nKolombe\nkolombína\nKolombína\nKolombo\nkolon\nkolón\nkólon\nkolonád\nkolonádach\nkolonádam\nkolonáda\nkolonádový\nkolónach\nkolónam\nkolóna\nkolonel\nkolonialista\nkolonialistický\nkolonializmus\nkoloniálny\nkolónia\nKolonica\nKolonickom\nkolóniek\nkolonista\nkolonizácia\nkolonizačný\nkolonizátor\nkolonizátormi\nkolonizátorský\nkolonizovaná\nkolonizované\nkolonizovaní\nkolonizovanie\nkolonizovať\nkolónka\nkolonky\nkolonoskopia\nkolor\nkolorácia\nkoloradoit\nkoloratúr\nkoloratúrach\nkoloratúram\nkoloratúra\nkoloratúrny\nKolore\nkolorimeter\nkolorimetria\nkolorista\nkoloristov\nkolorit\nkoloritmi\nkolorizmus\nkolorovanie\nkolorovaný\nkolorovať\nkolorujúca\nKolory\nkolosálnosť\nkolosálny\nkolos\nkoloseum\nkoloskopia\nkolostómia\nkolostrum\nkolotočiar\nkolotoč\nkolovaním\nkolovaný\nkolovať\nkolovrat\nkolovrátka\nkolovrátkami\nkolovrátkoch\nkolovrátkom\nkolovrátkov\nkolovrátku\nkolovrátky\nkolovratmi\nkolovrátok\nkolový\nkolozub\nKolož\nkoložvársky\nkoložvársky\nkolpis\nkolpitída\nkolpohysterektómia\nkolpoplastika\nkolporágia\nkolportážach\nkolportážam\nkolportáž\nkolportážny\nkolportér\nkolportérka\nkolportérsky\nkolportovať\nkolposkop\nkolta\nKolta\nkolt\nkoltmi\nkolumbárium\nKolumbia\nKolumbijka\nkolumbijský\nkolumbit\nKolumbus\nkolumna\nkolur\nkolúzia\nkoluzit\nkom\nkóm\nkoma\nkómach\nkómam\nkománd\nkomandant\nkomandatúra\nkomandér\nkomandita\nkomanditista\nkomanditisti\nkomanditistom\nkomanditistov\nKomanditistovi\nkomanditistu\nkomanditný\nkomando\nkomandované\nkomandovaní\nkomandovanie\nkomandovaním\nkomandovať\nKomanický\nKomárany\nkomár\nkomáre\nkomárí\nKomárik\nKomárna\nkomárňanský\nKomárne\nKomárnickou\nKomárno\nKomárnom\nKomárnu\nKomárove\nkomárovskej\nkomasácia\nkomasácie\nkomasácii\nkomasácií\nKomasáciou\nkomasáciu\nkóma\nkombajn\nkombajnista\nkombajnistka\nkombajnový\nkombatant\nkombinácia\nkombinačka\nkombinačkový\nkombinačky\nkombinačne\nkombinačný\nkombinát\nkombinátmi\nkombinátor\nkombinátora\nkombinátori\nkombinatorika\nkombinatórny\nkombinátorov\nkombiné\nkombinéz\nkombinézach\nkombinézam\nkombinéza\nkombinovane\nkombinovania\nkombinovanie\nkombinovaním\nkombinovaniu\nkombinovaný\nkombinovať\nkombi\nkombuča\nkombucha\nkombuscia\nkombustibilný\nkomediálnosť\nkomediálny\nkomediant\nkomediantka\nkomediantský\nkomediantstvo\nkomédia\nkomedon\nkomenda\nkomenológia\nkomensurabilita\nkomentár\nkomentármi\nkomentátor\nkomentátorka\nkomentátormi\nkomentátorský\nkomentovania\nkomentovanie\nkomentovaním\nkomentovaniu\nkomentovaný\nkomentovať\nkomentujúceho\nkomenzál\nkomenzátor\nkomenzurabilita\nkomercializácia\nkomercializačno\nkomercializačný\nkomercializované\nkomercializovať\nkomerciálneho\nkomerciálny\nkomercia\nkomerčne\nkomerčno\nkomerčný\nkomét\nkométach\nkométam\nkométa\nkomfort\nkomfortmi\nkomfortne\nkomfortnosť\nkomfortný\nkomickosť\nkomicky\nkomický\nkomička\nkomika\nkomik\nkomiks\nkomiliton\nkominár\nkominárik\nkominárikovia\nkominársky\nkominárstvach\nkominárstvam\nkominárstvo\nkomín\nkomínček\nkomínčekov\nkomínový\nKominterna\nKominterne\nKominternu\nKominterny\nkominutívny\nkomisár\nkomisariát\nkomisariátmi\nkomisárka\nkomisárove\nkomisárovo\nKomisárovou\nkomisárových\nkomisársky\nkomisárstvach\nkomisárstvam\nkomisárstvo\nkomisia\nkomisionálne\nkomisionálny\nkomisionár\nkomisionársky\nkomisívny\nkomisne\nkomisnosť\nkomisný\nkomitát\nkomitent\nkomitenta\nkomitentom\nkomitentov\nkomitentovi\nkomitét\nkomitétmi\nkomjatickej\nKomjatná\nKomjatnej\nkomkoľvek\nkomnata\nKomoča\nkomod\nkomoda\nkomodita\nkomoditný\nkomodor\nKomodor\nkomodore\nkomodu\nkomolenie\nkomoliť\nKomor\nkomora\nkomôrka\nKomormi\nkomorná\nkomorne\nKomorníckeho\nkomornícky\nkomorníčka\nkomorník\nKomorníkovom\nkomornosť\nkomorný\nKomoroch\nKomorom\nkomorovanie\nkomorový\nKomory\nkomótnosť\nkomótny\nkomp\nkômp\nkompaciscent\nkompaktne\nkompaktnosť\nkompaktný\nkompán\nkompáni\nkompánia\nkompánovi\nkomparácia\nkomparačný\nkomparatista\nkomparatistický\nkomparatistika\nkomparatív\nkomparatíve\nkomparatívna\nkomparatívne\nkomparatívneho\nkomparatívnej\nkomparatívnemu\nkomparatívnou\nkomparatívnu\nkomparatívny\nkomparatívnych\nkomparatívnym\nkomparatívnymi\nkomparátor\nkompár\nkomparované\nKomparovanie\nkomparovať\nkomparz\nkomparzista\nkomparzistka\nkomparzový\nkompas\nkompasový\nkompatibilitaN\nkompatibilne\nkompatibilný\nkompatriot\nkompa\nkompencium\nkompendium\nkompenzácia\nkompenzačne\nkompenzačný\nkompenzátor\nkompenzovane\nkompenzovanie\nkompenzovaný\nkompenzovať\nkompenzujúce\nkompetencia\nkompetenčne\nkompetenčný\nkompetentne\nkompetentnosťN\nkompetentný\nkompetícia\nkompetne\nkompilácia\nkompilačnosť\nkompilačný\nkompilát\nkompiláte\nkompilátom\nkompilátor\nkompilátori\nkompilátorsky\nkompilátorský\nkompilátorstvo\nkompilátov\nkompilátu\nkompiláty\nkompilované\nkompilovania\nkompilovanie\nkompilovateľný\nkompilovať\nkompilujúci\nkomplement\nkomplementácia\nkomplementár\nkomplementárnosť\nkomplementárnosti\nkomplementárny\nkomplementom\nkomplementu\nkomplet\nkompletizácia\nkompletizačný\nkompletizovaná\nkompletizované\nkompletizovaní\nkompletizovania\nkompletizovanie\nkompletizovaním\nkompletizovaných\nkompletizovať\nkompletne\nkompletnosť\nkompletný\nkompletoval\nkompletovala\nkompletovali\nkompletovania\nkompletovanie\nkompletovaním\nkompletovaný\nkompletovať\nkompletuje\nkompletujeme\nkompletujú\nkomplex\nkomplexite\nkomplexne\nkomplexnosť\nkomplexný\nkomplic\nkomplicovo\nkomplikácia\nkomplikovane\nkomplikovania\nkomplikovanie\nkomplikovaniu\nkomplikovanosť\nkomplikovaný\nkomplikovať\nkompliment\nkomplimentmi\nkomplot\nkomplotmi\nkomponenta\nkomponent\nkomponentmi\nkomponentový\nkomponista\nkomponistka\nkomponovanie\nkomponovaný\nkomponovať\nkomposesorát\nkomposesorátom\nkomposesorátov\nkomposesorátu\nkomposesoráty\nkompost\nkompostmi\nkompostovania\nkompostovanie\nkompostovaním\nkompostovaný\nkompostovať\nkompostový\nkompót\nkompótik\nkompótky\nkompótmi\nkompótový\nkompový\nkompozícia\nkompozične\nkompozičný\nkompozit\nkompozitný\nkompozitum\nkompradora\nkompradori\nkompradormi\nkomprdovať\nkompresia\nkompresibilita\nkompresívne\nkompresný\nkompresor\nKompresorovňa\nkompresorovne\nkompresorovni\nkompresorovňu\nkompresorový\nkompresovňu\nkomprimácia\nkomprimačný\nkomprimát\nkomprimátov\nkomprimáty\nkomprimovací\nkomprimovanie\nkomprimovaný\nkomprimovať\nkompromis\nkompromisne\nkompromisnícky\nkompromisníctvo\nkompromisník\nkompromisný\nkompromitovania\nkompromitovanie\nkompromitovaním\nkompromitovaniu\nkompromitovaný\nkompromitovať\nkompromitujúci\nkompulzia\nkomputer\nkomputera\nkomputermi\nkomputeroch\nkomputerom\nkomputerov\nkomputistika\nkomsi\nkomsomolec\nkomsomolka\nkomsomolský\nkomtesa\nKomtur\nkomtúr\nkomu\nkomukoľvek\nkomun\nkomún\nkomúnach\nkomunál\nkomunálka\nkomunálmi\nkomunálny\nkomúnam\nkomunard\nkomúna\nkomunik\nkomunikáciach\nkomunikácia\nkomunikačne\nkomunikačno\nkomunikačný\nkomunikatívnosť\nkomunikatívny\nkomuniké\nkomunikovaná\nkomunikovaní\nkomunikovania\nkomunikovanie\nkomunikovaním\nkomunikovaných\nkomunikovať\nkomunikujúci\nkomunista\nkomunisticky\nkomunistický\nkomunistka\nkomunita\nkomunitný\nkomunizmus\nkomúnový\nkomusi\nkomutácia\nkomutačný\nkomutatívnosť\nkomutatívny\nkomutátor\nkomutátore\nkomutátormi\nkomutátoru\nkomutátory\nkomutovania\nkomutovaný\nkomuže\nkomže\nkon\nkoňa\nkoňacín\nkoňacina\nkoňacinách\nkoňacinám\nkoňacine\nkoňacinec\nkoňacinou\nkoňacinu\nkoňaciny\nkoňačik\nkonajúci\nkoňak\nkoňakový\nkonane\nkonanie\nkonaný\nkonárik\nkonáristý\nkonár\nkonármi\nkonárový\nkonateľ\nkonateľka\nkonateľský\nkonať\nkonávať\nkoncedovať\nkoncelebrácia\nkoncelebroval\nkoncelebrovala\nkoncelebrovali\nkoncelebrovalo\nkoncelebrovať\nkoncelebruj\nkoncelebruje\nkoncelebrujem\nkoncelebrujeme\nkoncelebruješ\nkoncelebrujete\nkoncelebrujme\nkoncelebrujte\nkoncelebrujú\nkoncelebrujúc\nkoncentrácia\nkoncentračne\nkoncentračný\nkoncentrák\nkoncentrát\nkoncentrátmi\nkoncentrátor\nkoncentrátormi\nkoncentrátorov\nkoncentrátory\nkoncentricky\nkoncentrický\nkoncentrovane\nkoncentrovania\nkoncentrovanie\nkoncentrovaním\nkoncentrovaniu\nkoncentrovanosť\nkoncentrovaný\nkoncentrovať\nkoncepcia\nkoncepčne\nkoncepčno\nkoncepčnosť\nkoncepčný\nkoncept\nkonceptmi\nkonceptný\nkonceptuálny\nkoncern\nkoncernový\nkoncertantný\nkoncert\nkoncertmi\nkoncertný\nkoncertovaní\nkoncertovanie\nkoncertovať\nkoncertový\nkoncesia\nkoncesijný\nkoncesionár\nkoncesionárka\nkoncesionársky\nkoncesiovaný\nkoncesiový\nkoncesne\nkoncesný\nkoncesovaný\nkoncil\nkonciliácia\nkonciliantný\nkonciliarizmus\nkoncilmi\nkoncilový\nkoncínny\nkoncipient\nkoncipientského\nkoncipientskej\nkoncipientsky\nkoncipovanie\nkoncipovaný\nkoncipovať\nkoncíznosť\nkoncízny\nkôňL\nkoncom\nkoncoročný\nkoncovka\nkoncovkový\nkoncový\nkonča\nkončatina\nkončatinový\nkonček\nkončenia\nkončenie\nkončením\nkončeniu\nkončený\nkonči\nkončiaci\nkončiarik\nkončiar\nkončiarmi\nkončievať\nkončime\nkončina\nkončisto\nkončistý\nkončite\nkončiť\nkončito\nkončitosť\nkončitý\nkondemnácia\nkondenzácia\nkondenzačne\nkondenzačný\nkondenzát\nkondenzátor\nkondenzátorový\nkondenzor\nkondenzovaný\nkondenzovať\nkondenzujúci\nkondícia\nkondiciogram\nkondicionál\nkondicionáli\nkondicionalizmus\nkondicionálmi\nkondicionálny\nkondicionálový\nkondicionér\nkondicionéri\nkondicionérmi\nkondicionéroch\nkondicionérom\nkondicionérov\nkondicionéru\nkondicionéry\nkondicionovanie\nkondička\nkondične\nkondično\nkondičný\nkondikcia\nkondolencia\nkondolenčný\nkondolovať\nkondom\nkondóm\nkondomínia\nkondomíniá\nkondomíniách\nkondomínií\nkondomíniu\nkondomínium\nkondomov\nkondómový\nkondomu\nKondomy\nkondor\nkondorovi\nkondotiér\nkondukcia\nkondukt\nkonduktivita\nkonduktomer\nkonduktometria\nkonduktor\nkondyl\nkondylóm\nkone\nkône\nkonečne\nkonečník\nkonečníkový\nkonečno\nkonečnosť\nkonečnosti\nkonečný\nkonekčný\nkonektor\nkonektorový\nkonexia\nkonfabulácia\nkonfabuláciami\nkonfabulácie\nkonfabulácií\nkonfederácia\nkonfederačne\nkonfederačný\nkonfekcia\nkonfekčne\nkonfekčný\nkonferencia\nkonferenciera\nkonferencier\nkonferencierka\nkonferenciersky\nkonferenčný\nkonferovania\nkonferovať\nkonfesia\nkonfesijný\nkonfesionalizmus\nkonfesionálny\nkonfeta\nkonfetový\nkonfidencia\nkonfident\nkonfidentský\nkonfigurácia\nkonfiguračný\nkonfigurátor\nkonfigurovanie\nkonfigurovaný\nkonfigurovateľný\nkonfigurovať\nkonfinácia\nkonfínium\nkonfirmácia\nkonfirmačný\nkonfirmand\nkonfirmandiek\nkonfirmandka\nkonfirmovanom\nkonfirmujú\nkonfiškácia\nkonfiškačný\nkonfiškát\nkonfiškátmi\nkonfiškovaním\nkonfiškovaný\nkonfiškovať\nkonflagrácia\nkonflikt\nkonfliktmi\nkonfliktne\nKonfliktnosť\nkonfliktnosti\nkonfliktný\nkonfliktovosti\nkonfliktový\nkonfluencia\nkonformácia\nkonformista\nkonformisticky\nkonformistický\nkonformita\nkonformite\nkonformitu\nkonformity\nkonformizmus\nkonformne\nkonformnosť\nkonformný\nKonfráter\nkonfrontácia\nkonfrontačne\nkonfrontačný\nkonfrontovania\nkonfrontovanie\nkonfrontovaniu\nkonfrontovaný\nkonfrontovať\nkonfucianizmus\nkonfuciánskou\nkonfuciánstva\nkonfuciánstvo\nkonfundovať\nkonfutácia\nkonfúzia\nkonfúznosť\nkonfúzny\nkongelifrakcia\nkongeliturbácia\nkongenialita\nkongeniálnosť\nkongeniálny\nkongenitálny\nkongescia\nkonglomerát\nkonglomerátmi\nkonglutinácia\nKongo\nkongregácia\nkongregacionalizmus\nkongregačný\nkongres\nkongresman\nKongresovo\nkongresový\nkongrua\nkongruencia\nkongruenčný\nkongruentnosť\nkongruentný\nkoncha\nkonchológia\nkoni\nkoní\nkoniar\nkoniareň\nkoniarňach\nkoniarňam\nKoniarovská\nkónicky\nkónický\nkoníča\nkoníčatiek\nkoníčatko\nkoníček\nkoníčka\nkoníčkami\nkoničkár\nkoníčkoch\nkoníčkom\nkoníčkov\nkoníčkovi\nkoníčku\nkoníčky\nkonídia\nkonidráč\nkoniec\nkonieckoncov\nkonifera\nkoník\nKoníková\nKoníkovej\nkoníkovi\nkonimeter\nkonina\nkoniotómia\nkonísk\nkonisko\nkonj\nkonjektúra\nkonjugácia\nkonjugačný\nkonjukturalista\nkonjukturalizmus\nkonjunkcia\nkonjunktív\nkonjunktiva\nkonjunktivitída\nkonjunktov\nkonjunktúr\nkonjunktúrach\nkonjunkturalista\nkonjunkturalistický\nkonjunkturalistom\nkonjunkturalizmus\nkonjunkturálna\nkonjunkturálne\nkonjunkturálneho\nkonjunkturálnej\nkonjunkturálnemu\nkonjunkturálno\nkonjunkturálnom\nkonjunkturálnou\nkonjunkturálnu\nkonjunkturálny\nkonjunkturálnych\nkonjunkturálnym\nkonjunkturálnymi\nkonjunktúram\nkonjunktúra\nkonjunktúrny\nkonjurácia\nkonkáva\nkonkáve\nkonkavita\nkonkávnosť\nkonkávny\nkonkláve\nkonklávny\nkonkludentne\nkonkludentný\nkonkludovať\nkonklúzia\nkonkluzívny\nKonkoľ\nkonkordácia\nkonkordancia\nkonkordát\nkonkordáte\nkonkordátny\nkonkordátu\nkonkordáty\nkonkr\nkonkrécia\nkonkrécie\nkonkrécií\nkonkrement\nkonkrét\nkonkretizácia\nkonkretizačný\nkonkretizovania\nkonkretizovanie\nkonkretizovaniu\nkonkretizovaný\nkonkretizovať\nkonkrétne\nkonkrétnosť\nkonkrétny\nkonkrétum\nkonkubín\nkonkubína\nkonkubinát\nkonkubináte\nkonkubinátu\nkonkubináty\nkonkurencia\nkonkurencieschopnosť\nkonkurencieschopný\nkonkurenčne\nkonkurenčno\nkonkurenčný\nkonkurent\nkonkurentka\nkonkurentove\nkonkurentovom\nkonkurentových\nkonkurovaní\nkonkurovania\nkonkurovanie\nkonkurovaním\nkonkurovaniu\nkonkurovať\nkonkurujúci\nkonkurz\nkonkurzne\nkonkurzný\nkonluzívny\nkoňmi\nkoňmo\nkonofikácia\nkonofilm\nkoňoch\nkoňom\nkonôp\nkonopárske\nkonopárskych\nkonopa\nkonopí\nkonopiach\nkonopiam\nKonopísk\nKonopiská\nkonôpka\nkonopnísk\nkonopnisko\nkonopný\nkonosement\nkonotácia\nkoňov\nkoňovať\nkoňovi\nKonrád\nKonráda\nKonrádom\nkonsangvinita\nkonsekrácia\nkonsekračný\nkonsekvencia\nkonsens\nkonsensu\nkonsenzami\nkonsenze\nkonsenzoch\nkonsenzom\nkonsenzov\nkonsenzu\nkonsenzuálay\nkonsenzuálej\nkonsenzuáley\nkonsenzuáleyho\nkonsenzuáleymu\nkonsenzuáliy\nkonsenzuálny\nkonsenzuálom\nkonsenzuálou\nkonsenzuáluy\nkonsenzus\nkonsenzy\nkonsignácia\nkonsignácie\nkonsignáciu\nkonsignačný\nkonsignant\nkonskripcia\nkonskripčnej\nkonsky\nkonský\nkonsolidácia\nkonsolidačný\nkonsolidovania\nkonsolidovanie\nkonsolidovaním\nkonsolidovaniu\nkonsolidovaný\nkonsolidovať\nkonsonancia\nkonsonančný\nkonsonant\nkonsonante\nkonsonantický\nkonsonantný\nkonsonantu\nkonsonanty\nkonspekt\nkonspektmi\nkonspektoval\nKonstanca\nkonstanský\nkonsternácia\nkonstipácia\nkonstrikcia\nkonstriktor\nkonšel\nkonškolák\nkonšpirácia\nkonšpiračne\nkonšpiračný\nkonšpiratívnosť\nkonšpiratívnosti\nkonšpiratívny\nkonšpirátor\nKonšpirátori\nkonšpirovanie\nkonšpirovať\nkonštalácie\nkonštalácii\nkonštánt\nkonštanta\nKonštantín\nKonštantínovej\nkonštantne\nkonštantnosť\nkonštantný\nkonštatácia\nkonštatinopolský\nkonštatovanie\nkonštatovaný\nkonštatovaný\nkonštatovať\nkonštelácia\nkonštelačný\nkonšternácia\nkonšternovaný\nkonšternovať\nkonštitúcia\nkonštitucionalistika\nkonštitucionalizmu\nkonštitučne\nkonštitučný\nkonštituovanie\nkonštituovaný\nkonštituovať\nkonštitutívne\nkonštitutívneho\nkonštitutívnom\nkonštitutívnu\nkonštitutívny\nkonštr\nkonštrukcia\nkonštrukčne\nkonštrukčno\nkonštrukčný\nkonštrukt\nkonštruktér\nkonštruktérka\nkonštruktérsky\nkonštruktérstvo\nkonštruktivista\nkonštruktivistický\nkonštruktivizmus\nkonštruktívne\nkonštruktívnosť\nkonštruktívny\nkonštruktmi\nkonštruovanie\nkonštruovaný\nkonštruovať\nkontagiozita\nkontagiózny\nkontajner\nkontajnerový\nkontajnment\nkontakt\nkontaktmi\nkontaktne\nkontaktný\nkontaktovania\nkontaktovanie\nkontaktovaním\nkontaktovaniu\nkontaktovaný\nkontaktovať\nkontaktový\nkontaminácia\nkontaminant\nkontaminantmi\nkontaminovania\nkontaminovanie\nkontaminovaný\nkontaminovať\nkontangentoida\nkontemplácia\nkontemplatívny\nkontemplovať\nkontes\nkontesa\nkonteskami\nkontext\nkontextmi\nkontextovo\nkontextovosť\nkontextový\nkontier\nkontigentných\nkontiguita\nkontinentálny\nkontinent\nkontinentmi\nkontingentačný\nkontingent\nkontingentmi\nkontingentový\nkontinuácia\nkontinuálnosť\nkontinuálny\nkontinuí\nkontinuít\nkontinuita\nkontinuitne\nkontinuitnosť\nkontinuitný\nkontinuum\nkontokorent\nkontokorente\nkontokorentný\nkontokorentom\nkontokorentov\nkontokorentu\nkontokorenty\nkonto\nKontová\nkontovanie\nkontovať\nkontr\nkontraadmirál\nkontraband\nkontrabandový\nkontrabas\nkontrabasista\nkontrabasistka\nkontrabasový\nkontradikcia\nkontradikčný\nkontradiktórne\nkontradiktórnemu\nkontradiktórnom\nkontradiktórnosť\nkontradiktórny\nkontrahent\nkontrahenta\nkontrahenti\nkontrahentmi\nkontrahentom\nkontrahentov\nkontrahovania\nkontrahovanie\nkontrahovaním\nkontrahovaný\nkontrahovať\nkontraindikácia\nkontrakcia\nkontrakčný\nkontraktácia\nkontraktačne\nkontraktačno\nkontraktačný\nkontrakt\nkontraktilita\nkontraktmi\nkontraktné\nkontraktného\nkontraktnej\nkontraktnou\nkontraktnú\nkontraktných\nkontraktným\nkontraktový\nkontraktúra\nkontralaterálny\nkontramaska\nkontrapost\nkontrapozícia\nkontraproduktívnosť\nkontraproduktívny\nkontrapunkt\nkontrapunktický\nkontrapunktmi\nkontrareforma\nkontrarevolúcia\nkontrarevolucionár\nkontrarevolucionársky\nkontrarevolučne\nkontrarevolučnosť\nkontrarevolučný\nkontrárnosť\nkontrarozviedka\nkontrasignácia\nkontrasignácie\nkontrasignácii\nkontrasignáciou\nkontrasignáciu\nkontrasignatúra\nkontrasignoval\nkontrasignovať\nkontrasignuje\nkontrast\nkontrastmi\nkontrastne\nkontrastnosť\nkontrastný\nkontrastovať\nkontráš\nkontrašpionážach\nkontrašpionážam\nkontrašpionáž\nkontrašpionážny\nkontraverzie\nkontraverzii\nkontraverziu\nkontraverzne\nkontraverzný\nkontra\nkontreadmirál\nkontretizačný\nkontribúcia\nkontribučný\nkontrola\nkontroliek\nkontrolka\nkontrolkou\nkontrolku\nkontrolky\nkontrolne\nkontrolno\nkontrolný\nkontrolór\nkontrolórka\nkontrolórsky\nkontrolovania\nkontrolovanie\nkontrolovaním\nkontrolovaniu\nkontrolovaný\nkontrolovaný\nkontrolovateľne\nkontrolovateľnosť\nkontrolovateľnosti\nkontrolovateľnosťou\nkontrolovateľný\nkontrolovať\nkontrolujúci\nkontrovaná\nkontrovať\nkontroverzia\nkontroverzne\nkontroverznosť\nkontroverzný\nkontumácia\nkontumačne\nkontumačný\nkontúr\nkontúrach\nkontúram\nkontúra\nkontúrová\nkontúrovania\nkontúrovať\nkontúrovitý\nkontušovka\nkontúzia\nKonty\nkoňu\nkonuiltácia\nkonunkcia\nkónus\nkónusový\nKoňuš\nkonvalidácia\nkonvalidáciu\nkonvalinka\nkonvalinkovo\nkonvalinkový\nkonvejer\nkonvekcia\nkonvekcií\nkonvektor\nkonvektormi\nkonvektoroch\nkonvektorov\nkonvektory\nkonvekvencia\nkonvencia\nkonvencionalizmus\nkonvencionálny\nkonvenčne\nkonvenčnosť\nkonvenčný\nkonvenovať\nkonvent\nkonventmi\nkonventný\nkonvergencia\nkonvergentne\nkonvergentný\nkonvergovala\nkonvergovali\nkonvergované\nkonvergovaných\nkonvergovať\nkonverguje\nkonvergujeme\nkonvergujú\nkonvertibilita\nkonvertibilnosť\nkonvertibilný\nkonvertibilný\nkonvertiplán\nkonvertita\nkonvertitka\nkonvertitmi\nkonvertor\nkonvertorový\nkonvertovanie\nkonvertovaný\nkonvertovať\nkonvervárenský\nkonvervaródium\nkonverzácia\nkonverzačne\nkonverzačný\nkonverzia\nkonverzný\nkonverzovaná\nkonverzovaných\nkonverzovať\nkonvetigilný\nkonvexita\nkonvexne\nkonvexnosť\nkonvexný\nkonvoj\nkonvojový\nkonvokácia\nkonvolúcia\nkonvolučný\nkonvolut\nkonvoluta\nkonvulzia\nKóny\nkonzekvencia\nkonzekvent\nkonzekventne\nkonzekventnosť\nkonzekventný\nkonzerv\nkonzervácia\nkonzervačne\nkonzervačný\nkonzerváreň\nkonzervárenský\nkonzervárenský\nkonzervárenstva\nkonzervárenstve\nkonzervárenstvo\nkonzervárenstvu\nkonzervárňach\nkonzervárňam\nkonzervatívec\nkonzervativizmus\nkonzervatívnosť\nkonzervatívny\nkonzervatizme\nkonzervatizmom\nkonzervatizmu\nkonzervatizmus\nkonzervátor\nkonzervátori\nkonzervatorista\nkonzervatoristka\nkonzervatórium\nkonzervátorka\nkonzervátorovi\nkonzervátorský\nkonzerva\nkonzervovania\nkonzervovanie\nkonzervovaním\nkonzervovaniu\nkonzervovaný\nkonzervovať\nkonzervový\nkonzervujúci\nkonziliár\nkonziliárny\nkonzílium\nkonzistencia\nkonzistenčne\nkonzistenčný\nkonzistentne\nkonzistentnosť\nkonzistentný\nkonzistórium\nkonzola\nkonzolka\nkonzolový\nkonzorciálny\nkonzorcionálna\nkonzorcionálne\nkonzorcionálneho\nkonzorcionálnej\nkonzorcionálnom\nkonzorcionálnu\nkonzorcionálny\nkonzorcionálnych\nkonzorciový\nkonzorcium\nkonzulárny\nkonzulát\nkonzulátmi\nkonzul\nkonzulka\nkonzulovu\nkonzulský\nkonzultácia\nkonzultačne\nkonzultačno\nkonzultačný\nkonzultant\nkonzultantka\nkonzultantský\nkonzultovania\nkonzultovanie\nkonzultovaním\nkonzultovaný\nkonzultovať\nkonzultujúci\nkonzumácia\nkonzum\nkonzument\nkonzumentka\nkonzumentský\nkonzumizmus\nKonzumne\nkonzumno\nkonzumný\nkonzumovania\nkonzumovanie\nkonzumovaniu\nkonzumovaný\nkonzumovať\nkonzumpcia\nkonzumpčný\nKonžan\nkonžský\nkooperácia\nkooperačne\nkooperačno\nkooperačný\nkooperatív\nKooperatíve\nkooperatívny\nkooperatívov\nKooperatívu\nKooperatívy\nkooperátor\nkooperátorov\nkooperovaná\nKooperované\nkooperovanej\nkooperovania\nkooperovanie\nkooperovaných\nkooperovať\nkooptácia\nkooptácie\nkooptácii\nkooptácií\nkooptáciou\nkooptáciu\nkooptovanie\nkooptovaním\nkooptovaniu\nkooptovaný\nkooptovať\nkoordinácia\nkoordinačne\nkoordinačno\nkoordinačný\nkoordináta\nkoordinatívny\nkoordinátor\nkoordinátormi\nkoordinovane\nkoordinovania\nkoordinovanie\nkoordinovaním\nkoordinovaniu\nkoordinovanosť\nkoordinovany\nkoordinovaný\nkoordinovať\nkôp\nkopacej\nkopacieho\nkopaciu\nkopáč\nkopačka\nkopáčka\nkopáčsky\nkopainovník\nkopajúci\nKopál\nKopálom\nkopanec\nkopania\nkopanica\nkopanicový\nkopaničiar\nkopaničiarka\nkopaničiarsky\nkopanie\nkopaním\nKopanina\nkopaniu\nkopaný\nkopať\nkopa\nkop\nkopcoval\nkopcovanie\nkopcovať\nkopcovite\nkopcovito\nkopcovitý\nkopcový\nkopček\nKopčianska\nKopčianskej\nKopčianskou\nKopčiansku\nkopčísk\nkopčisko\nkopec\nkopejka\nKopenca\nKopenec\nkopenia\nkopením\nKopernica\nKopernický\nKoperníkov\nkopiapit\nkópia\nkopijach\nkopijam\nkopija\nkopijí\nkopijovite\nkopijovito\nkopijovitý\nkopilot\nkopiózny\nkopírovací\nkopírovači\nkopírovačka\nkopírovanie\nkopírovaný\nkopírovať\nkopírujúci\nkopisto\nKopistoch\nkopistý\nkopiť\nkopito\nkopitý\nkopkať\nkôpka\nkôpkovač\nkôpkovanie\nkôpkovať\nkopnieť\nkopno\nkopnutí\nkopnutie\nkopnutím\nkopnúť\nkopný\nkopolymér\nkopolymerácia\nkopolymérov\nkopolyméru\nkopolyméry\nkopónový\nkôpor\nkopovitý\nkopov\nkopra\nkopŕc\nkopŕcať\nkopŕcnuť\nKoprivnica\nKoprivnice\nKoprivnici\nkopŕľať\nkoprocesor\nkoprodukcia\nkoprodukčne\nkoprodukčný\nkoprofág\nkoprofágia\nkoprofília\nkoprofóbia\nkoprofyt\nkoprolália\nkoprolit\nkoprológia\nkopromitovaný\nkôprový\nkopt\nKopta\nKoptovej\nKoptské\nKoptsky\nkopúl\nkopulácia\nkopulačný\nkopulách\nkopulám\nkopulant\nkopula\nkopulovať\nkopulovitý\nkopuly\nkopunkcia\nkopýt\nkopýtkach\nkopýtkam\nkopýtko\nkopytník\nkopytný\nkopýtok\nkopyto\nkopytovo\nkopytový\nkor\nKor\nkôr\nKora\nkorába\nkoráb\nkorábový\nkôrach\nkorakoid\nKorál\nkorala\nkoráľa\nkoral\nkorále\nkoráli\nkorálik\nkoralit\nkoráľ\nkorálka\nkoralmi\nkorálmi\nkoráľmi\nkoráľoch\nkorálom\nkoráľom\nkoráľov\nkoralovec\nkoralovi\nkoralovitý\nkoralovka\nkoralový\nkorálový\nkoráľový\nkoráľu\nkôram\nkorán\nkôravela\nkorázia\nkôra\nkorbáčik\nkorbáč\nkorbáčovať\nkorbáčový\nkorba\nkorbička\nKorbin\nKorbini\nKorbinu\nKorcovo\nkorcový\nkorček\nkorčekový\nkorčuľa\nkorčuliar\nkorčuliarka\nkorčuliarsky\nkorčulovačky\nkorčuľovanie\nkorčuľovať\nKorda\nkordami\nkord\nkordialita\nkordierit\nKordíkov\nKordíky\nkordillera\nkordillersky\nKordillery\nkordomyóm\nkordón\nkordonet\nkordónový\nkordován\nkordovánový\nkordový\nkore\nkorealita\nKórea\nkorec\nkorečných\nkoreferát\nkoreferátmi\nkoreferent\nkoreferentka\nkórej\nKórejčan\nkórejčin\nkórejčín\nkórejčinách\nkórejčinám\nkórejčinami\nkórejčina\nKórejec\nkórejsky\nkórejský\nkorekcia\nkorekčne\nkorekčný\nkorektív\nkorektívna\nkorektívne\nkorektívnej\nkorektívnym\nkorektívom\nkorektívov\nkorektívy\nkorektne\nkorektnosť\nkorektný\nkorektorB\nkorektorka\nkorektorňa\nkorektorský\nkorektúr\nkorektúrach\nkorektúram\nkorektúra\nkorektúrový\nkorela\nkorelácia\nkorelačne\nkorelačný\nkorelát\nkorelatívnosť\nkorelatívny\nkorelovane\nkorelovaný\nkorenáč\nkorenáčmi\nkorenár\nkorenárka\nkorenárskej\nkorenatý\nkorenene\nkorenený\nkorenička\nkorenie\nkorenina\nkoreninový\nkorenisto\nkorenistý\nkoreniť\nkorenito\nkorenitý\nkoreň\nkorenný\nkoreňový\nkoreňový\nkorepetícia\nkorepetičný\nkorepetítor\nkorepetítorský\nkorešpodencia\nkorešpodencie\nkorešpodencii\nkorešpodenciou\nkorešpodenciu\nkorešpondencia\nkorešpondenčne\nkorešpondenčný\nkorešpondent\nkorešpondentka\nkorešpondentský\nkorešpondovanie\nkorešpondovať\nkorešpondujúce\nkorešpondujúci\nkorfball\nkorheľ\nkorheľčiť\nkorheľsky\nkorheľský\nkorheľstvo\nkoriander\nkoriandra\nkoriandrom\nkoriandru\nkoríd\nkorida\nkoridor\nkoriem\nkorienkár\nkorienok\nkorigencie\nkorigovania\nkorigovanie\nkorigovaním\nkorigovaniu\nkorigovaný\nkorigovať\nkorigujúci\nkorina\nKorinťan\nKorinťania\nKorint\nkorintský\nkoristenia\nkoristenie\nkoristime\nkoristite\nkoristiť\nkorisť\nkoristne\nkoristnícky\nkoristníctvach\nkoristníctvam\nkoristníctvo\nkoristník\nkoristný\nkoriť\nkorium\nkorkáreň\nkôrka\nkôrkovitý\nkorkovník\nkorkový\nkorm\nkorma\nkormidelného\nkormidelnícky\nkormidelníčka\nkormidelník\nkormidelnú\nkormidlo\nkormidlovaná\nkormidlovanej\nkormidlovaní\nkormidlovania\nkormidlovanie\nkormidlovať\nkormidlový\nkormorán\nKormoráne\nkormorány\nkormový\nkormus\nkormútiť\nkormútlivý\nKorňa\nkornak\nkornatenie\nkornatením\nkôrnatieť\nkôrnatý\nKorne\nkornea\nKornel\nKornélia\nkornelit\nkornet\nKornet\nkorneta\nKorni\nkornúta\nkornút\nkornútik\nkornútkoch\nkornútkov\nkornútku\nkornútky\nkornútmi\nkornútok\nkôročka\nkorodovaniu\nkorodovať\nkorofília\nkorok\nkorola\nKoromľa\nkorón\nkoronadit\nkorónach\nkorónam\nkoronárka\nkoronárny\nkoronavírus\nkoróna\nkoroner\nkoronograf\nkorónový\nkôrovecL\nkôrovia\nkôroviach\nkôroviam\nkôroviami\nkôrovie\nkôrovím\nkôrovitosť\nkôrovitý\nkôroviu\nkôrový\nkorózia\nkoróziovzdorný\nkorozívnosť\nkorozívny\nkorózny\nkorporácia\nkorporačný\nkorporativizmu\nkorporativizmus\nkorporatívny\nkorporátnych\nkorpulencia\nkorpulentne\nkorpulentnosť\nkorpulentný\nkorpus\nkorpuskula\nkorpuskulárny\nkorpusový\nkorsak\nkoršpondencia\nkorte\nkortesy\nkortešačiek\nkortešačka\nkortešačkách\nkortešačkou\nkortešačku\nkortešačky\nkorteš\nkortešovanie\nkortešovať\nkortešský\nkortexón\nkortikálny\nkortikoid\nkortikopropín\nkortikosteroid\nkortikosterón\nkortikostimulátor\nkortikovírus\nkortizol\nkortizon\nkoru\nkorúhva\nkorúhva\nkorumpovania\nkorumpovanie\nkorumpovaním\nkorumpovaniu\nkorumpovaný\nkorumpovať\nkoruna\nkorund\nkorundový\nkorunka\nkorunkový\nkorunný\nkorunovácia\nkorunovačný\nkorunovanie\nkorunovaniu\nkorunovaný\nkorunovať\nkorunovo\nkorunový\nkorupcia\nkorupčne\nkorupčníci\nkorupčnícky\nkorupčníctvo\nkorupčník\nkorupčníka\nkorupčníkom\nkorupčníkov\nkorupčno\nkorupčný\nkoruška\nKorutána\nKorutánka\nKorutánska\nkorutánskeho\nKorutánsko\nkorutánskom\nKorutánsku\nkorutánsky\nkorutánskych\nkorutánskym\nkorutina\nkorveta\nkorvetách\nkorvetám\nkorvete\nkorvetný\nkorvetou\nkorvetu\nkorvety\nkorviet\nkorvuzit\nkory\nkoryfa\nkoryfej\nkoryfejovi\nkorynebaktéria\nkorýt\nkorytár\nkorytársky\nkorytárstvo\nkorýtkach\nkorýtkam\nkorýtko\nkorýtkový\nkorytnačí\nkorytnačina\nkorytnačka\nKorytnica\nKorytnice\nKorytnici\nKorytnická\nKorytnické\nkorytnického\nKorytnickej\nKorytnickú\nkorytnických\nKorytnicou\nKorytnicu\nkorýtok\nkoryto\nkorytový\nkoryza\nkorz\nkorzár\nkorzársky\nkorzet\nkorzický\nKorzika\nkorzo\nkorzovanie\nkorzovať\nkôs\nkosáčik\nkosačka\nkosák\nkosákovitý\nkosákový\nkosalit\nkosatá\nkosatca\nkosatcami\nkosatce\nkosatci\nkosatcoch\nkosatcom\nkosatcov\nkosatcu\nkosatec\nkosa\nkosba\nkosec\nkosekans\nkosenieN\nkosený\nkosička\nkosienok\nkosiera\nkosier\nkosiere\nkosierik\nkosieru\nkosiery\nkosík\nkosíliť\nkosílka\nKosin\nKosina\nKosinu\nkosínus\nkosínusoida\nkosínusový\nkosísk\nkosisko\nkosiť\nkosmo\nkosmý\nkosná\nkosní\nkosnými\nkoso\nkosodlžník\nkosodĺžnik\nkosodĺžnikový\nkosodrevina\nKosorín\nKosorína\nkosoštvorcový\nkosoštvorčeky\nkosoštvorec\nkosouhlý\nKosovčan\nKosovčanka\nKosovo\nkosovsky\nkosovský\nKosťa\nkostálny\nkostarický\nKostarika\nkostený\nkostica\nkostička\nkostier\nkostilivec\nKostiviarska\nKostiviarskej\nKostiviarsku\nkosť\nkôstka\nkôstkovica\nkôstkovicový\nkôstkovitý\nkôstkový\nkostlivec\nkostlivý\nkostnatenie\nkostnatieť\nkostnatosť\nkostnatý\nkostnica\nkostnický\nkostný\nkôstočka\nKostoľanoch\nKostoľany\nkostol\nKostolci\nkostole\nKostolec\nkostolianska\nkostolianskemu\nKostoliansky\nkostolíčka\nkostolíčkami\nkostolíčkoch\nkostolíčkom\nkostolíčkov\nkostolíčku\nkostolíčky\nkostolík\nkostolnícky\nkostolníčka\nkostolník\nkostolný\nKosťov\nKosťova\nKosťovi\nkosťový\nKostrave\nkostra\nkostrbato\nkostrbatosť\nkostrbatý\nkostrč\nkostrčový\nkostrička\nkostrnka\nKostrome\nKostromu\nkostrový\nkostým\nkostýmček\nkostýmčekový\nkostýmový\nkosý\nKoš\nKošariskách\nKošariská\nkošarišská\nkošarovať\nkošatieť\nkošato\nkošatosť\nkošatý\nKošeca\nKošeci\nKošecké\nkošeckého\nkošeckom\nKošecu\nkošeľa\nkošeľovina\nkošeľový\nkošer\nkóšer\nkošerovanie\nkošiar\nkošiarmi\nkošiarový\nKošice\nkošický\nKošičan\nKošičanka\nkošíček\nkošíčka\nkošíčkami\nkošíčkoch\nkošíčkom\nkošíčkov\nkošíčku\nkošíčky\nkošieľ\nkošieľka\nkošikár\nkošikárka\nkošikársky\nkošikárstvach\nkošikárstvam\nkošikárstvo\nkošík\nkošíkový\nKošinár\nKošinára\nkošina\nkošinové\nKošiská\nkôš\nKošolná\nkošový\nKošťanoch\nKošťany\nkoštiaľa\nkoštiaľ\nkoštiale\nkoštiali\nkoštialik\nkoštiaľmi\nkoštiaľoch\nkoštiaľom\nkoštiaľov\nkoštiaľu\nkoštovať\nkoštovka\nkošútky\nKošúty\nkót\nkotácia\nkótach\nkótam\nkotangens\nkotavý\nkóta\nkotenie\nKotenom\nkoterec\nkotéria\nKotešová\nKotešovej\nkotevný\nkotilion\nkotinga\nkotiť\nkotkodák\nkotkodákajúca\nkotkodákanie\nkotkodákať\nkotlár\nkotláreň\nkotlárenský\nkotlárňach\nkotlárňam\nkotlársky\nkotlárstvach\nkotlárstvam\nkotlárstvo\nkotleta\nkotletka\nkotlík\nkotlíkový\nkotlina\nkotlinka\nkotlinový\nkotlisko\nkotlovitý\nkotlový\nkotly\nkotný\nkotol\nkotolňa\nkotolný\nkotonizácia\nkotonizácie\nKotor\nKotore\nKotorom\nKotoru\nKótovací\nkótovacia\nkótovacie\nkótovacieho\nKótovaciemu\nkótovacích\nkótovacím\nkótovacom\nkótovane\nkótovania\nkótovanie\nkótovaním\nkótovaniu\nkótovaný\nkótovať\nkótový\nkotrba\nkotrmelec\nkotúčik\nkotúčikový\nkotúč\nkotúčky\nkotúčovitý\nkotúčový\nkoťúh\nkoťuha\nkotúľať\nkotúle\nkotúli\nkotúľ\nkotúľka\nkotúľmi\nkotúľoch\nkotúľom\nkotúľov\nkotúľu\nkotunnit\nkoturn\nkotva\nkotvenia\nkotvenie\nkotvením\nkotvený\nkotvi\nkotviace\nkotviaci\nkotvica\nkotvice\nkotvička\nkotvime\nkotvite\nkotviť\nkotvový\nkou\nkouč\nkoučovho\nkouže\nková\nkovacej\nkovací\nkovacie\nkovacieho\nkovacích\nkovacom\nkováč\nkováčik\nKováčikovej\nKováčikovom\nKováčikovou\nKováčikovu\nKováčikovým\nkováčiky\nkováčňach\nkováčňam\nkováčňa\nkováční\nKováčova\nKováčová\nKováčove\nKováčovej\nKováčovho\nKováčovmu\nKováčovo\nKováčovom\nKováčovou\nkováčovská\nkováčovské\nkováčovskej\nkováčovskom\nKováčovských\nKováčovu\nKováčovú\nKováčových\nKováčovým\nkováčsky\nkováčstvach\nkováčstvam\nkováčstvo\nkovadlinu\nkovaj\nkovalencia\nkovalentná\nKoválov\nKoválova\nKoválovské\nkovanie\nkovaný\nkovar\nKovarce\nkovariancia\nkovariantnosť\nkovať\nkov\nkovboj\nkovbojka\nkovbojsky\nkovbojský\nkoverkot\nkovertovať\nkovnatosť\nkovnatosťami\nkovnatosti\nkovnatosťou\nkovnatou\nkovohutníctvo\nkovolejári\nkovonosné\nkovonosných\nkovonosným\nkovoobrábací\nkovopriemysel\nkovopriemyselného\nkovopriemyslami\nkovopriemysle\nkovopriemysloch\nkovopriemyslom\nkovopriemyslov\nkovopriemyslu\nkovopriemysly\nkovorobotnícky\nkovorobotník\nkovoroľníci\nkovoroľníka\nkovoroľníkom\nkovoroľníkov\nkovorytec\nkovorytecký\nkovorytectvo\nkovospracujúci\nkovotepec\nkovotepecký\nkovotepectvo\nkovovo\nkovovolesklý\nkovovýroba\nkovovýrobe\nkovovýrobou\nkovovýrobu\nkovovýroby\nkovový\nkovral\nkovralmi\nkovralový\nkoxa\nkoxagra\nkoxalgia\nkoxálny\nkoxatróza\nkoxitída\nKOZ\nkôz\nkozáci\nkozací\nkozacina\nkozácky\nkozáčik\nkozáčka\nkozáčkoch\nkozáčkom\nkozáčkov\nkozák\nKozákovej\nkozákovi\nKozákovi\nKozákovou\nKozákových\nkoza\nKozelník\nKozelský\nKoziarkach\nKoziarky\nkozička\nkozí\nkozina\nKozinec\nkozinka\nKozinsky\nkozla\nkozľa\nkozľací\nkozľacina\nkozlami\nkozle\nkozlencami\nkozlence\nkozlencoch\nkozlencom\nkozleniec\nkozliat\nkozliatka\nkozliatkach\nkozliatkam\nkozliatkami\nkozliatko\nkozliatkom\nkozliatku\nkozliatok\nkozlica\nkozlík\nkozloch\nkozlom\nkozlov\nkozlu\nkozly\nkozm\nKozma\nkozmet\nkozmeticky\nkozmetický\nkozmetička\nkozmetika\nkozmetik\nkozmicky\nkozmický\nkozmický\nkozmobiológia\nkozmodróm\nkozmogónia\nkozmogonický\nkozmografia\nkozmochémia\nkozmológ\nkozmológia\nkozmonaut\nkozmonautický\nkozmonautika\nkozmonautka\nkozmonómia\nkozmonymum\nkozmopolit\nkozmopolita\nkozmopolitický\nkozmopolitizmus\nkozmopolitka\nkozmopolitmi\nkozmopolitný\nkozmoráma\nkozmos\nkozmosický\nkozmunautom\nkozol\nkozorožec\nkozový\nkozuba\nkozub\nkozubový\nkož\nkožák\nKožany\nkoža\nkoženka\nkoženkový\nkožený\nkoží\nkožiar\nkožiarsky\nkožiarsky\nkožiarstvach\nkožiarstvam\nkožiarstvo\nKožíkov\nkožkár\nkožkársky\nkožka\nkožný\nkožovanie\nkožovaný\nkožovať\nkožovito\nkožovitosť\nkožovitý\nkožovka\nkožtička\nkožucha\nkožuch\nKožuchovce\nkožuchový\nkožušina\nkožušinka\nkožušinový\nkožušnícky\nkožušníctvach\nkožušníctvam\nkožušníctvo\nkožušníčka\nkožušník\nkožúšok\nkožuštek\nkp\nKP\nkpt\nKpt\nkr\nKr\nKR\nkŕ\nkra\nkrá\nkraal\nkrabica\nkrabicový\nkrabička\nkrabí\nkrab\nkrabova\nkráčajúci\nkráčanie\nkráčať\nkráčavať\nkrádež\nkradmejšej\nkradmejší\nkradmejšia\nkradmejšie\nkradmejšieho\nkradmejšiemu\nkradmejších\nkradmejším\nkradmejšími\nkradmejšiu\nkradmejšom\nkradmejšou\nkradmo\nkradmý\nkradnutia\nkradnutie\nkradnutím\nkradnutiu\nkradnúť\nkradnutý\nkradoš\nkrágľoval\nkrágľovala\nkrágľovali\nkrágľovalo\nkrágľovanie\nkrágľovaním\nkrágľovať\nkrágľuj\nkrágľuje\nkrágľujem\nkrágľujeme\nkrágľuješ\nkrágľujete\nkrágľujme\nkrágľujte\nkrágľujú\nkrágľujúc\nKragujevac\nkragujevacký\nKragujevčan\nkragujevský\nkrahulce\nKrahulce\nkrahulčí\nKrahule\nkrahulec\nKrahuliach\nkrach\nkrachnúť\nkrachovanej\nkrachovaní\nkrachovania\nkrachovanie\nkrachovať\nkrájač\nkrájačka\nkrájačky\nkrájadlo\nkrajan\nkrajania\nkrájania\nkrájanie\nkrájaním\nkrájaniu\nkrajanka\nkrajanský\nkrájaný\nkrájať\nkrajč\nkrajček\nkrajčír\nkrajčírka\nkrajčírsky\nkrajčírstvach\nkrajčírstvam\nkrajčírstvo\nkrajec\nkrajíček\nkrajíčka\nkrajíčkami\nkrajíčkoch\nkrajíčkom\nkrajíčkov\nkrajíčku\nkrajíčky\nkrajinár\nkrajinárka\nkrajinársky\nkrajinárstvach\nkrajinárstvam\nkrajinárstvo\nkrajina\nkrajinkár\nkrajinkárka\nkrajinkársky\nkrajinkárstvach\nkrajinkárstvam\nkrajinkárstvo\nkrajinka\nkrajinne\nkrajinno\nkrajinný\nkrajinomaľba\nkrajinotvorný\nkrajinský\nkraj\nkrajka\nkrajkach\nkrajkami\nkrajke\nKrajkou\nkrajkovane\nkrajkový\nKrajku\nkrajky\nkrajne\nkrajnešíF\nkrajnica\nkrajnicový\nkrajnosť\nkrajný\nkrajok\nkrajovo\nkrajovský\nkrajový\nkrajsky\nkrajský\nkrajšie\nkrajší\nkrajta\nkrákanie\nkrákať\nkrákavý\nkrakeláž\nkrakľa\nkraklí\nkrákor\nKrákor\nkrákoriť\nkrákorte\nkrakovacej\nkrakovací\nkrakovacia\nkrakovacie\nkrakovacích\nkrakovaciu\nkrakovacou\nkrakovania\nkrakovanie\nKrakovanoch\nKrakovany\nkrakovaný\nkrakovať\nKrakov\nKrakovčan\nkrakoviak\nKrakovian\nkrakovský\nkráľ\nkrálický\nkráliček\nkráličí\nkrálikár\nkrálikáreň\nkrálikárka\nkrálikárňach\nkrálikárňam\nkrálik\nKrálikova\nKrálikove\nKrálikovej\nKrálikovo\nKrálikovou\nKrálikových\nkrálikovým\nkráliku\nkráliky\nKráľová\nkraľovaní\nkraľovania\nkraľovanie\nKráľovany\nkraľovať\nKrálové\nkráľovič\nKráľovičove\nKráľovičovej\nKráľovičovou\nkráľovná\nkráľovnička\nkráľovohoľský\nkrálovohradecký\nkráľovskochlmecké\nkráľovskochlmeckého\nkráľovskochlmeckej\nkráľovskochlmeckí\nkráľovskochlmeckom\nKráľovskochlmecký\nkráľovsky\nkráľovský\nkráľovstvo\nkráľov\nkráľu\nkraľujúci\nkralupský\nKramár\nKramára\nKramároch\nKramárom\nKramárov\nkramárskeho\nkramárskom\nkramársky\nkrám\nkrami\nkrámik\nkramľa\nkramlí\nkramlička\nkramľový\nkrampus\nKrámsky\nkrandallit\nkranioektómia\nkraniológia\nkraniometer\nkranioneuralgia\nkraniostenóza\nkraniotómia\nkrápaný\nkrás\nkrásach\nkrásam\nkrásavec\nkrásavica\nkrása\nkras\nkráska\nKraskov\nKraskova\nKraskovo\nkraslica\nKrasňanoch\nKrasňany\nkrásnieť\nkrasnoarmejec\nkrasnoarmejka\nkrasnoarmejský\nKrasnodar\nKrasnodare\nkrasnodarský\nKrasnodaru\nkrásnohorský\nkrasnojarský\nkrásny\nkrásny\nkrasojazda\nkrasojazdec\nkrasojazdecký\nkrasojazdkyňa\nkrasokorčuliar\nkrasokorčuliarka\nkrasokorčuliarsky\nkrasokorčuliarstvach\nkrasokorčuliarstvam\nkrasokorčuliarstvo\nkrasokorčuľovanie\nkrasopis\nkrasopisec\nkrasopisne\nkrasopisný\nkrasorečnenie\nkrasorečnícky\nkrasorečníctvach\nkrasorečníctvam\nkrasorečníctvo\nkrasorečník\nkrásota\nkrásotinka\nKrasove\nkrasový\nkrášliť\nkrát\nkrátenie\nkrátený\nkrátera\nkráter\nkráteri\nkráterovitý\nkráterový\nkrátievať\nkrátiť\nkrátkodobe\nkrátkodobejšej\nkrátkodobejší\nkrátkodobejšia\nkrátkodobejšie\nkrátkodobejšieho\nkrátkodobejšiemu\nkrátkodobejších\nkrátkodobejším\nkrátkodobejšími\nkrátkodobejšiu\nkrátkodobejšom\nkrátkodobejšou\nkrátkodobo\nkrátkodobý\nkrátkohrdlý\nkrátkometrážny\nkrátkonohejšej\nkrátkonohejší\nkrátkonohejšia\nkrátkonohejšie\nkrátkonohejšieho\nkrátkonohejšiemu\nkrátkonohejších\nkrátkonohejším\nkrátkonohejšími\nkrátkonohejšiu\nkrátkonohejšom\nkrátkonohejšou\nkrátkonohý\nkrátkosrstý\nkrátkosrstý\nkrátkosrtstý\nkrátkosť\nkrátkovlnný\nkrátkovlnový\nkrátkovlný\nkrátkozrako\nkrátkozrakosť\nkrátkozraký\nkrátky\nkratogén\nkratochvíľa\nkratší\nkratučko\nkratučký\nkratulinko\nkratulinký\nkratunko\nkratunký\nkratuško\nkratušký\nkraul\nkrauliar\nkraulmi\nkrauróza\nkráv\nkravál\nKravany\nkravata\nkravatový\nkrava\nKraviansky\nkraviar\nkraviareň\nkraviarka\nkraviarsky\nkravička\nkraviek\nkravina\nkravín\nkravinec\nKravinej\nkravkách\nkravku\nkravky\nkravský\nkráža\nkrážam\nkráže\nkráži\nkráž\nkrážmi\nkrážoch\nkrážom\nkrážou\nkrážov\nkrážu\nkrbáľať\nkrb\nkrbový\nkrčaha\nkrčah\nKrčava\nKrčavu\nKrčavy\nkrček\nkrčenie\nkrčením\nkrčiažok\nkrčiažtek\nkrčiem\nkrčievať\nkŕčik\nkrčiť\nkrčivosť\nkrčivý\nkŕč\nkrčka\nkrčkami\nkrčkoch\nkrčkom\nkrčkov\nkrčku\nkrčky\nkrčmár\nkrčmárka\nKrčmárovej\nkrčmársky\nkrčma\nkrčmička\nkrčmový\nkrčný\nkŕčok\nkŕčovite\nkŕčovito\nkŕčovitosť\nkŕčovitý\nkŕčový\nkŕdeľ\nkŕdľa\nkŕdľami\nkŕdle\nkŕdli\nkŕdlik\nkŕdľoch\nkŕdľom\nkŕdľov\nkŕdľu\nkre\nkreácia\nkreacionista\nkreacionistický\nkreacionizmus\nkreačne\nkreačný\nkreatín\nkreatinín\nkreatinúria\nkreativita\nkreatívne\nkreatívnosť\nkreatívny\nkreatúr\nkreatúrach\nkreatúram\nkreatúra\nkréd\nkrédach\nkrédam\nkredenc\nkredibilita\nkredit\nkreditmi\nkreditne\nkreditno\nkreditný\nkreditor\nkreditora\nkreditori\nkreditormi\nkreditoroch\nkreditorom\nkreditorov\nkreditovala\nkreditovaný\nkreditový\nkredituje\nkrédo\nkredulita\nkrehko\nkrehkosť\nkrehký\nkrehnutia\nkrehnutie\nkrehnutiu\nkrehnúť\nkrehučko\nkrehučký\nkrehulinko\nkrehulinký\nkrehunko\nkrehunký\nkrecht\nkreker\nkrekermi\nkrekery\nkrem\nkremácia\nkremačný\nkrematórium\nkrém\nkreme\nKremeľ\nkremeliny\nkremeľské\nkremeľskou\nkremeľských\nkremeľským\nkremeľskými\nKremeľský\nkremencový\nkremenec\nkremenistý\nkremenitý\nkremeň\nkremenný\nkrémeš\nkremičitan\nkremičitanové\nkremičitanového\nkremičitanovú\nkremičitý\nKremienok\nkremíkatých\nkremík\nkremíkovo\nkremíkový\nkremité\nkremitým\nKremľa\nKremli\nKremľom\nKremľu\nKremná\nKremnica\nKremnice\nKremnici\nkremnický\nKremnicou\nKremnicu\nKremnička\nKremničke\nKremničky\nkremonky\nkrémova\nkrémovať\nkrémovník\nkrémovo\nkrémový\nkremžská\nkremžskej\nkrenelovanie\nkrenkovať\nkrenológia\nkrenoterapia\nkreol\nkreoli\nkreolka\nkreolovi\nkreolsky\nkreolský\nkreoval\nkreovala\nkreovali\nkreovalo\nkreovania\nkreovanie\nkreovaním\nkreovaniu\nkreovaný\nkreovať\nkrepa\nkrep\nkrepči\nkrepčime\nkrepčite\nkrepčiť\nkrepdešín\nkrepdešínový\nkrepí\nkrepia\nkrépidoma\nkrepili\nkrépis\nkrepiť\nkrepko\nkrepký\nkrepovaný\nkrepový\nkrepsilon\nkrepsilón\nkrepsilonový\nkrepsilónový\nkrepžoržetové\nkrepžoržetových\nkrepžoržety\nkresačka\nkresadlo\nkresadlový\nkresania\nkresanie\nkresaný\nkresať\nkresba\nkresbička\nkresbový\nkresielko\nkresielok\nkreskania\nkreskať\nkreslene\nkreslenie\nkreslenka\nkreslenky\nkreslený\nkresliaci\nkresliar\nkresliareň\nkresliarka\nkresliarsky\nkresliarstvo\nkreslič\nkreslička\nkresličský\nkresličstvo\nkreslievať\nkresliť\nkreslo\nkreslový\nkresť\nkresťanN\nkresťania\nkresťanka\nkresťanov\nkresťansko\nkresťanskodemokratický\nkresťansky\nkresťanský\nkresťanstvo\nKréťan\nKréťania\nKréťanka\nKréta\nkretén\nkretenizmus\nkreténizmus\nkreténsky\nkreténstvach\nkreténstvam\nkreténstvo\nkrétksky\nkretón\nkretónový\nkrétsky\nkrétsky\nkreuj\nkreuje\nkreujem\nkreujeme\nKreujeme\nkreuješ\nkreujete\nkreujme\nkreujte\nkreujú\nkreujúc\nkreveta\nkrezol\nkrezolový\nkrézovský\nkrhiel\nkrhlách\nkrhlám\nkrhla\nkrhlička\nkrhlový\nkrhly\nkrchňavý\nkriačik\nkriačina\nkriak\nkriatať\nkrič\nkričanie\nkričaný\nkričať\nkríček\nkričiaci\nkríčie\nkríčka\nkríčkami\nkríčkoch\nkríčkom\nkríčkov\nkríčkovito\nkríčkovitý\nkríčkový\nkríčku\nkríčky\nkrída\nkrídel\nkrídelce\nkrídeliec\nkrídeliek\nkrídelko\nkrídelne\nkrídelný\nkrídlach\nkrídlam\nkrídlatý\nkrídli\nkrídlo\nkrídlovitý\nkrídlovka\nkrídlový\nkrídlový\nkrídly\nkried\nkrieda\nkriedovatie\nkriedový\nkriesení\nkriesenia\nkriesenie\nkrieseniu\nkriesiť\nkrichtonit\nkríkať\nkrik\nkrík\nkriket\nkriketový\nkrikľavo\nkrikľavosť\nkrikľavý\nkrikľúň\nkrikľúni\nkrikľúnka\nkriklúnsky\nkriklúnsky\nkrikľúnsky\nkriklúnstvach\nkrikľúnstvach\nkriklúnstvam\nkrikľúnstvam\nkriklúnstvo\nkrikľúnstvo\nkríkovito\nkríkovitý\nkríkový\nkrim\nkrimi\nkrimifilm\nkriminála\nkriminál\nkrimináli\nkriminalista\nkriminalisticky\nkriminalistický\nkriminalistika\nkriminalistka\nkriminalita\nkriminalizoval\nkriminalizovala\nkriminalizovali\nkriminalizovalo\nkriminalizovať\nkriminalizuj\nkriminalizuje\nkriminalizujem\nkriminalizujeme\nkriminalizuješ\nkriminalizujete\nkriminalizujme\nkriminalizujte\nkriminalizujú\nkriminalizujúc\nkriminálka\nkriminálmi\nkriminálnička\nkriminálnik\nkriminálny\nkriminológ\nkriminológia\nkriminologická\nkriminologické\nkriminologickej\nkriminológie\nkriminológii\nkriminológiu\nkriminológov\nkriminológovia\nkrimiseriál\nkrimiseriálmi\nkrinolín\nkrinolínach\nkrinolínam\nkrinolína\nkripel\nkripla\nkriplami\nkriploch\nkriplom\nkriplov\nkriplovi\nkris\nKris\nKristánovia\nkriste\nkristeježiši\nkristepane\nKristián\nkristianizácia\nkristianizačný\nkristianizovať\nkristiánka\nKristin\nKristín\nKristina\nKristínach\nKristínam\nKristína\nKristínka\nKristínke\nKristínkou\nKristínky\nKristinom\nKristinu\nkristobalit\nkristovia\nKristov\nkristových\nKristu\nKristus\nKristy\nKrišna\nKrišpín\nkrištáľa\nkrištále\nkrištáli\nkrištáľ\nkrištáľmi\nkrištáľoch\nkrištáľom\nkrištáľov\nkrištáľovo\nkrišťáľovú\nkrištáľový\nkrištáľu\nKrištof\nkritérium\nkriticizmus\nkritickejší\nkritickorealistický\nkritickosť\nkriticky\nkritický\nkritička\nkritičnosť\nkritičnosti\nkritika\nkritik\nkritikova\nkritizovanie\nkritizovaný\nkritizovať\nkritizujúci\nkriváčik\nkrívačka\nkrívajúci\nkrivák\nKriváňa\nkrivaňa\nKriváni\nkrívanie\nKriváň\nKrivanoch\nkriváňom\nkrivánsky\nkrivánsky\nKrivany\nkrívať\nkrívd\nkrivda\nkrivdi\nkrivdiaci\nkrivdime\nkrivdite\nkrivdiť\nkrivenie\nkrivením\nkriveniu\nKrivian\nKrivianska\nkrivica\nkrivicový\nkrividlo\nkrivieť\nkriviť\nkrivkajúci\nkrivkať\nkrivkavý\nkrivka\nkrivkový\nkrivo\nkrivočiara\nkrivočiary\nkrivojrožskej\nkrivojrožskú\nkrivojrožských\nKrivojrožský\nkrivolako\nkrivolaký\nkrivonohý\nkrivonosí\nkrivonos\nkrivooký\nkrivoprísažne\nkrivoprísažníctvo\nkrivoprísažník\nkrivoprísažnosť\nkrivoprísažný\nKrivorožan\nkrivorožský\nkrivosť\nkrivskej\nkrivšej\nkrivší\nkrivšia\nkrivšie\nkrivšieho\nkrivšiemu\nkrivších\nkrivším\nkrivšími\nkrivšiu\nkrivšom\nkrivšou\nkrivuľa\nkrivý\nkríz\nkrízach\nkrízam\nkríza\nkrízovo\nkrízový\nkríža\nkrížalka\nKrížany\nkrížence\nkríženec\nkríženia\nkríženiami\nkríženie\nkrížením\nkríženiu\nkrížený\nkríže\nkrižiaci\nkrížiaci\nkrižiacky\nkrižiak\nkrižiakovi\nkrížik\nkrížikový\nKrižinova\nkrížiť\nkríž\nkrížkom\nKrižkov\nKrižkova\nkrížku\nkrížmi\nkrížmo\nkrížnik\nkrížny\nkrížoch\nkrížom\nkrížov\nkrižovania\nkrižovanie\nkrižovaním\nkrižovaniu\nKrižovany\nKrížovany\nkrižovaný\nkrižovatka\nkrižovatkový\nkrižovať\nkrížovkár\nkrížovkárka\nkrížovkársky\nkrížovka\nkrížovo\nkrížový\nkrížskych\nkrížu\nkrižujúci\nkŕk\nkŕkanie\nkŕkať\nkrkavce\nkrkavčí\nkrkavec\nkŕkavou\nkrk\nkrkolomne\nkrkolomnosť\nkrkolomný\nKrkonošami\nKrkonoše\nKrkonošiach\nKrkonošiam\nkrkonošského\nkrkonošskí\nkrkonošskom\nKrkonošský\nkrkovicu\nkrkovička\nkrkvať\nkrkvi\nkrkvime\nkrkvite\nkrm\nkŕmenie\nkŕmený\nkŕmič\nkŕmička\nkŕmičský\nkŕmidlo\nkŕmievať\nkŕmiť\nkrmív\nkrmivo\nkrmivový\nkrmník\nkŕmnik\nkŕmnikovi\nkŕmny\nkrmovinár\nkrmovinársky\nkrmovinárstvach\nkrmovinárstvam\nkrmovinárstvo\nkrmovina\nkrmovinový\nkrmový\nKrná\nKrnča\nKrnče\nKrnči\nKrnov\nKrnova\nKrnove\nkrocetín\nkrocín\nkročajach\nkročajam\nkročajami\nkročají\nkročaj\nkročajou\nkrôčik\nkročiť\nkrôčkoch\nkrôčkom\nkrôčky\nkroch\nkrôchať\nkrochkania\nkrochkať\nkrochmeľ\nkrochmeliť\nkrojený\nkroj\nkrojovaný\nkrojový\nKrokava\nkrok\nkrokera\nkroket\nkroketa\nkrokiet\nkrokodíl\nkrokodílí\nkrokodíľom\nkrokodíľou\nkrokodíly\nkrokoit\nkrokovať\nKrokove\nkrokovička\nkrokovo\nkrokový\nkrókusa\nkrókus\nkrókusový\nkrokva\nkrokvica\nkrokvicový\nkrokvička\nkrom\nkromaňonec\nkrome\nkrompáč\nKrompách\nKrompachoch\nKrompachom\nKrompachy\nkrompašský\nkróna\nkronikár\nkronikárka\nkronikársky\nkronikárstvo\nkronika\nKronštadt\nKronštadtu\nkroon\nkropáč\nkropajach\nkropajam\nkropajami\nkropají\nkropaj\nkropajou\nkropenatý\nkropenička\nkropenie\nkropený\nkropiace\nkropiaci\nkropievať\nkropiť\nkrôpkatý\nkrôpkavý\nkros\nkrosček\nkrosien\nkrosienkach\nkrosienkam\nkrosienkami\nkrosienka\nkrosienku\nkrosienok\nKrosna\nkrosnách\nkrosnám\nkrosnami\nkrosná\nKrosne\nkrosné\nKrosno\nKrosnom\nkrossit\nkrošňa\nkrošní\nkrotená\nkrotené\nkrotení\nkrotenie\nkrotením\nkrotiteľ\nkrotiteľka\nkrotiteľský\nkrotiť\nkrotko\nkrotkosť\nkrotký\nkrotnúť\nkrotšej\nkrotší\nkrotšia\nkrotšie\nkrotšieho\nkrotšiemu\nkrotších\nkrotším\nkrotšími\nkrotšiu\nkrotšom\nkrotšou\nkrotý\nkrov\nkrovie\nkrovinatý\nkrovina\nkrovinový\nkroviská\nkrovisko\nkrovitý\nkrovka\nkrovový\nkrpa\nkŕpa\nkrpaňa\nkrpáň\nkrpáne\nkrpaní\nkrpáni\nkrpánsky\nkrpáňu\nkrpatieť\nkrpato\nkrpatosť\nkrpatý\nkrpcovi\nkrpcový\nkrpček\nkrpčekovi\nkrpčekovia\nkrpčiar\nkrpčiarka\nkrpčiarsky\nkrpčiarstvach\nkrpčiarstvam\nkrpčiarstvo\nKRPE\nkrpec\nKrpeľanoch\nKrpeľany\nkrpelianska\nkrpka\nKrpy\nkrr\nkŕŕ\nkrst\nkrsteľnica\nkrstenec\nkrstenie\nkrstenka\nkrstený\nkrsti\nkrstime\nkrstiny\nkrstite\nkrstiteľ\nkrstiteľnica\nkrstiť\nkrstmi\nkrstňa\nkrstnencami\nkrstnence\nkrstnencoch\nkrstnencom\nkrstneniec\nkrstniatka\nkrstniatkach\nkrstniatkam\nkrstniatkami\nkrstniatko\nkrstniatkom\nkrstniatku\nkrstniatok\nkrstný\nkrstový\nKršteňanoch\nKršteňany\nkrštenie\nkrt\nkrtica\nkrtičí\nkrtíN\nkrtinec\nKrtiny\nkrtko\nkrtkoval\nkrtkovala\nkrtkovali\nkrtkovalo\nkrtkovať\nkrtkov\nkrtkuj\nkrtkuje\nkrtkujem\nkrtkujeme\nkrtkuješ\nkrtkujete\nkrtkujme\nkrtkujte\nkrtkujú\nkrtkujúc\nkrtky\nkrťom\nkrťou\nKrtovce\nkrtovou\nkrty\nkru\nkruci\nkruciáta\nkrucifix\nkruč\nkručaný\nkručať\nkručia\nkrudelita\nkruhári\nkruhárovi\nkruh\nkruhoústy\nkruhovite\nkruhovito\nkruhovitosť\nkruhovitý\nKruhovka\nkruhovo\nkruhový\nkruhový\nkruchta\nkrumpeľ\nkrumpľa\nkrumplí\nkrumpľoch\nkrumpľom\nkrumpľov\nkrumpľovitý\nkrumpľový\nkrúp\nKrupá\nkrupáda\nkrúpach\nkrúpam\nkrúpa\nKrupej\nkrupica\nkrupicovitý\nkrupicový\nkrupička\nKrupičková\nKrupičkovej\nkrupičkovitý\nkrupičný\nkrupiér\nKrupinica\nkrupinský\nkrúpka\nkrúpkový\nkrúpnatý\nkrupobitie\nkrupobitie\nkruponár\nkrupón\nkrupónovanie\nkrupónovať\nkrupónový\nKrupou\nkrúpovitý\nkrúpový\nkrusta\nkrustácia\nkruš\nKrušetnica\nKrušetnice\nKrušetnici\nKrušetnicu\nKruševac\nkruší\nKrušinec\nkrušiť\nkrušno\nkrušnohorskom\nKrušnohorský\nkrušnosť\nkrušný\nKrušovská\nkrušpán\nkrušpáne\nkrušpánový\nkrušpánu\nkrušpány\nKruták\nKrutáka\nKrutákových\nkrute\nkrutejšíF\nkrútenia\nkrútenie\nkrútením\nkrútený\nkrútiaci\nkrútievať\nkrútiť\nkrútivý\nKrútky\nkrútľavý\nkrútňav\nkrútňava\nkruto\nkrutohlavý\nkrutón\nkrutosť\nkrutovlád\nkrutovládach\nkrutovládam\nkrutovláda\nkrutovládca\nkrutovládcovia\nkrutovládny\nkrutý\nkrúžalka\nkrúženie\nkrúžiaca\nkrúžiace\nkrúžiaceho\nkrúžiacej\nkrúžiacich\nkrúžiacim\nkrúžiacom\nkružidlo\nkružina\nkrúžiť\nkrúživo\nkrúživý\nkrúžkovania\nkrúžkovanie\nkrúžkovaný\nkrúžkovať\nkrúžkový\nkrúžľať\nKružlov\nKružlová\nKružlovská\nKružlovské\nKružná\nkružnica\nkružnicový\nKružno\nkrúžok\nkrvácajúci\nkrvácanie\nkrvácať\nkrvácavosť\nkrvácavý\nkrvák\nkrvava\nkrvavieť\nkrvaviť\nkrvavnica\nkrvavnička\nkrvavo\nkrvavočerveno\nkrvavočervený\nkrvavosť\nkrvavý\nkrveľ\nkrveľmi\nkrveľoch\nkrveľom\nkrveľov\nkrveľový\nkrveľu\nkrvička\nkrvilačne\nkrvilačnosť\nkrvilačný\nkrvinka\nkrvipreliatiu\nkrviprelievanie\nkrvismilník\nkrvismilný\nkrvismilstvo\nkrv\nkrvnatosť\nkrvnatý\nkrvne\nkrvný\nkrvobažný\nkrvopotne\nkrvopotný\nkrvotok\nkrvotvorba\nkrvotvorný\nkrvotvorný\nkrvotvotný\nkrvožerný\nkrvožravý\nkrycí\nkrýh\nkryha\nkryhový\nKrym\nKrymčan\nkrymský\nkryobiológia\nkryofilný\nkryofyt\nkryogenetika\nkryogenéza\nkryogénny\nkryokomora\nkryokonit\nkryolit\nkryológia\nkryoplanácia\nkryoplanktón\nkryosféra\nkryoterapia\nkrypt\nkrýpt\nkrypta\nkryptestézia\nkryptické\nkryptodepresia\nkryptogam\nkryptogamia\nkryptogamná\nkryptogénny\nkryptografia\nkryptograficky\nkryptografický\nkryptogram\nkryptoklíma\nkryptokokus\nkryptokomunista\nkryptokomunistický\nkryptokomunizmus\nkryptokoryna\nkryptomelán\nkryptoméria\nkryptomérny\nkryptometria\nkryptomitóza\nkryptón\nkryptónový\nkryptonym\nkryptoxantín\nkryptozoá\nkrýs\nkrysa\nkrysí\nkryštáľ\nkryštál\nkryštáli\nkryštalickosť\nkryštalicky\nkryštalický\nkryštálik\nkryštalit\nkryštalizácia\nkryštalizačný\nkryštalizátor\nkryštalizovania\nkryštalizovanie\nkryštalizovaniu\nkryštalizovaný\nkryštalizovať\nkryštálmi\nkryštalograf\nkryštalografia\nkryštalografický\nkryštalografka\nkryštalomantia\nkryštálovo\nkryštálový\nkryt\nkrytiek\nkrytie\nkrytina\nkrytinový\nkrytmi\nkrytosemenný\nkryť\nkrytý\nKržle\nks\nKS\nKSČ\nksí\nksicht\nksichti\nksichtí\nksichtia\nksichtiac\nksichtík\nksichtil\nksichtila\nksichtili\nksichtilo\nksichtím\nksichtime\nksichtíme\nksichtíš\nksichtiť\nksichtite\nksichtíte\nksichtmi\nKSS\nKSSZ\nKST\nkšaft\nkšeftár\nkšeftára\nkšeftárenia\nkšeftári\nkšeftármi\nkšeftárom\nkšeftárov\nkšeftárska\nkšeftárske\nkšeftársky\nkšeftárstvo\nkšeft\nkšeftík\nkšeftíkov\nkšeftíky\nkšeftmi\nkšeftovaní\nkšeftovania\nkšeftovanie\nkšeftovaním\nkšeftovaniu\nkšeftovať\nKšinná\nkšš\nkt\nktenídie\nkto\nktohovie\nktokoľvek\nktorákoľvek\nktorási\nKtoráže\nktoréhokoľvek\nktoréhosi\nktoréhože\nktorejkoľvek\nktorejsi\nktorejže\nktorékoľvek\nktorémukoľvek\nktorémusi\nktorési\nktoríkoľvek\nktorím\nktorísi\nktoríže\nktoromkoľvek\nktoromsi\nktoroukoľvek\nktorousi\nktorúkoľvek\nktorúsi\nKtorúže\nktorýchkoľvek\nktorýchsi\nktorýkoľvek\nktorýmikoľvek\nktorýmisi\nktorýmkoľvek\nktorýmsi\nktorýmže\nktorýsi\nktorý\nktosi\nktovie\nktovieako\nktovieaký\nktoviečím\nktoviečo\nktoviečoho\nktoviečom\nktoviečomu\nktoviekoľko\nktoviekomu\nktoviekto\nktozná\nktože\nktožehovie\nktoževie\nku\nkú\nKÚ\nKuala\nKualalumpurčan\nkualalumpurský\nKualalupmurčan\nkub\nkúb\nKúb\nKubáň\nKubánec\nKubáni\nkubanit\nKubánka\nKubáňove\nKubáňovo\nkubánsky\nkubánsky\nkubatúr\nkubatúrach\nkubatúram\nkubatúra\nKuba\nkubicky\nkubický\nkubík\nKubiková\nkubíkovaní\nkubíkovať\nKubikovej\nkubíkový\nKubín\nKubina\nKubíne\nKubínom\nKubínska\nKubinu\nKubíny\nkubista\nkubisticky\nkubistický\nkubistka\nkubizmus\nkubo\nKubrice\nKubrický\nkubus\nkucapaca\nkucapacu\nkuckať\nkučeravenie\nkučeravieť\nkučeraviť\nkučeravosť\nkučeravý\nkučera\nKučerka\nkučerkavý\nKučerku\nkučier\nkučierka\nKučín\nKučínom\nKučínu\nkúdeľami\nkúdelí\nkúdeliach\nkúdeliam\nkúdeľ\nkúdeľka\nkúdeľou\nkúdeľový\nKudláč\nKudláča\nkudlatý\nkudliť\nkúdoľa\nkúdol\nkúdolček\nkúdoli\nkúdoliť\nkúdoľ\nkúdoľmi\nkúdoľoch\nkúdoľom\nkúdoľov\nkúdoľu\nkudrliniek\nKudrna\nkudrnavých\nkudu\nkuesta\nkuff\nkufor\nkufríček\nkufríčka\nkufríčkami\nkufríčkoch\nkufríčkom\nkufríčkov\nkufríčku\nkufríčky\nkufrík\nkufríkový\nkufrový\nkuguár\nkuch\nkuchár\nKuchárik\nKuchárikom\nKuchárikovi\nkuchárka\nkuchárova\nkuchársky\nkuchárstvach\nkuchárstvam\nkuchárstvo\nKuchta\nkuchti\nkuchtime\nkuchtite\nkuchtiť\nKuchtu\nkuchyňa\nkuchynka\nkuchynsky\nkuchynský\nKujawiak\nKujbyševa\nKujbyševe\nKujbyševskej\nkujnosť\nkujný\nkujon\nkujonsky\nkujonský\nkujonstvo\nkujúcej\nkuk\nkukanie\nKukanom\nkukať\nkukátka\nkukátko\nkukerzit\nkukiel\nkukláč\nkukla\nkuklička\nKuklov\nKuklova\nKuklove\nKuklovská\nkuklový\nKukluxklan\nkuknúť\nkúkoľa\nkúkole\nkúkoli\nkúkoľ\nkúkoľmi\nkúkoľoch\nkúkoľom\nkúkoľov\nkúkoľový\nkúkoľu\nKuková\nKuks\nkuku\nkukú\nkukučí\nkukučina\nKukučín\nKukučínova\nkukučínovskú\nKukučínovu\nkukučka\nkukučkový\nkukuk\nkukulienka\nkukurica\nkukuricový\nkukuričie\nkukurička\nkukuričnísk\nkukuričnisko\nkukuričný\nkulacký\nkulač\nkulak\nkulancia\nkulantne\nkulantný\nkulér\nkuľhá\nkuľhaj\nkuľhajme\nkuľhajte\nkuľhajú\nkuľhajúc\nkuľhal\nkuľhala\nkuľhali\nkuľhalo\nkuľhám\nkuľháme\nkuľháš\nkuľhať\nkuľháte\nkuli\nkuliem\nkulifaj\nKulík\nKulíka\nKulíkom\nkulinár\nkulinárie\nkulinárny\nkulinársky\nkulinárstvach\nkulinárstvam\nkulinárstvo\nkulís\nkulisár\nkulisa\nkulisovo\nkulisový\nkulma\nkulminácia\nkulminačný\nkulminovania\nkulminovanie\nkulminovať\nkulmovať\nkuloár\nkuloármi\nkuloárny\nkuloárový\nkulpózny\nkult\nkultický\nkultivácia\nkultivačne\nkultivačný\nkultivar\nkultivátora\nkultivátor\nkultivátore\nkultivátorový\nkultivovane\nkultivovania\nkultivovanie\nkultivovanosť\nkultivovaný\nkultivovať\nkultmi\nkultový\nkultúr\nkultúrach\nkultúram\nkultúra\nkulturista\nkulturistický\nkulturistika\nkulturistka\nkulturistku\nkulturistky\nkultúrnička\nkultúrnik\nkultúrnohistorický\nkultúrno-osvetový\nkultúrnopolitický\nkultúrnopolitický\nkultúrno-politický\nkultúrno-propagačný\nkultúrno-spoločenský\nkultúrnosťN\nkultúrno-umelecký\nkultúrno-výchovný\nkultúrno-vzdelávací\nkultúrny\nkulturológia\nkulturologicky\nkulturologický\nkulúrnopolitický\nkum\nKumán\nkumarón\nkumbál\nkumbáli\nkumbálik\nkumbálmi\nkumiuči\nkumkvát\nkummingtonit\nkumpán\nkumránsky\nkumšt\nkumštovať\nkumulácia\nkumulačný\nkumulatívnosť\nkumulatívny\nkumulonimbus\nkumulovania\nkumulovanie\nkumulovaním\nkumulovaniu\nkumulovaný\nkumulovaný\nkumulovať\nkumulujúci\nkumulus\nkumys\nkuna\nKunca\nKuncom\nKuncovi\nkunčaft\nkunčická\nkunčické\nkunčickej\nkunčickí\nkunčickú\nkunčických\nKunčický\nkundaliní\nkundol\nkundoliť\nKunec\nKunešov\nKunešove\nKunešovská\nkung\nkungur\nkuní\nkuňom\nkuňou\nKunov\nKunova\nKunove\nKunovský\nkunsthistória\nkunsthistorický\nkunsthistorička\nkunsthistorik\nkúpací\nkúpač\nkúpačka\nkúpach\nkúpaj\nkúpajme\nkúpajte\nkúpajúc\nkúpajúci\nkúpalísk\nkúpalisko\nkúpam\nkúpanie\nkúpať\nkúpavať\nkúpa\nkupážovanie\nkupcova\nKupcovej\nkupcovia\nKupcovo\nkupcovu\nkupcových\nkupčenie\nkupči\nkupčiaci\nkupčime\nkupčite\nkupčiť\nkupé\nkupec\nKupecky\nkupecký\nkupectvo\nkúpeľa\nkúpele\nkúpeľ\nkúpeľmi\nkúpelňa\nkúpeľňa\nkúpelne\nKúpeľníci\nkúpeľnícka\nkúpeľnícke\nkúpeľníckeho\nkúpeľnícki\nkúpeľníckom\nkúpeľnícku\nkúpeľnícky\nkúpeľníckych\nkúpeľníckymi\nkúpeľníctva\nkúpeľníctve\nkúpeľníctvo\nkúpeľníctvom\nkúpeľníctvu\nkúpeľníkom\nkúpeľníkov\nkúpeľno\nkúpeľňový\nkúpelný\nkúpeľný\nkúpeloch\nkúpeľoch\nkúpeľom\nkúpeľov\nkúpeľový\nkúpeľu\nkúpenia\nkúpenie\nkúpením\nkúpeniu\nkúpenský\nkúpený\nkupírovať\nkúpiť\nKupka\nKupke\nKupku\nKupky\nkuplet\nkupletový\nkupliar\nkupliarka\nkupliarsky\nkupliarstvach\nkupliarstvam\nkupliarstvo\nkuplové\nkuplovej\nkuplovne\nkuplovni\nkuplovní\nkuplovňou\nkuplových\nkúpny\nkupola\nkupolka\nkupolovitý\nkupolový\nkupón\nkupónik\nkupónka\nkupónovo\nkupónový\nkupovanie\nkupovaný\nkupovať\nkuprit\nkuproaurit\nkupujúci\nkupula\nkúpychtivosť\nkúpychtivosti\nkúpychtivý\nkúpyschopnosť\nkúpyschopný\nkura\nkurabilita\nkurácia\nkuracíN\nkuracina\nkuracinec\nkuracinka\nkurách\nkúrach\nKuraľany\nkurám\nkúram\nkurami\nkurare\nkurát\nkuratela\nkuratíva\nkuratívny\nkuratívu\nkurátor\nkuratórium\nkurátorka\nkurátormi\nkurátorský\nkurátorstvo\nkúra\nkurbľovať\nkurča\nkurčací\nkurčiat\nkurčiatko\nkurčiatok\nKurd\nKurdka\nKurdsky\nkurdský\nkure\nkúrenár\nkúrenársky\nkurencami\nkurence\nkurencoch\nkurencom\nkureniec\nkúrenie\nkúrenísk\nkúrenisko\nkurentný\nkurentovať\nkurevník\nKurfirst\nKurfirstovej\nkurgan\nkuriat\nkuriatko\nkuriatok\nkúria\nkurič\nkurička\nkuričský\nkuriér\nkuriérna\nkuriérne\nkuriérnej\nkuriérnom\nkuriérnou\nkuriérnu\nkuriérnych\nkuriérnymi\nkuriérska\nkuriérske\nkuriérskeho\nkuriérskej\nkuriérski\nkuriérskom\nkuriérskou\nkuriérsku\nkuriérsky\nkuriérskych\nkuriérskym\nkuriérskymi\nkuriev\nkurí\nKurilčan\nkurilský\nKurily\nKurima\nKurimany\nKurimka\nKurimský\nKurina\nkurín\nKurinca\nKurinec\nkurínec\nkuriozít\nkuriozita\nkuriozitka\nkurióznosť\nkuriózny\nkuriózum\nkurírovať\nkúriť\nkurív\nkurivo\nkurivový\nkurizant\nkurizovanie\nkurizovať\nkurka\nkurkuma\nkurkumín\nkúrňav\nkúrňava\nkurník\nKurov\nkúrová\nKurove\nkúrového\nKurskej\nkursky\nkurtáž\nkurt\nkurte\nkurtína\nkurtizána\nkurtoázia\nkurtoázie\nkurtoázny\nkurtový\nkurtu\nkurty\nkuru\nkuruc\nkurucký\nKurucovej\nkurvatúra\nkurva\nkury\nkurzami\nkurz\nkurzista\nkurzistka\nkurzív\nkurzívach\nkurzívam\nkurzíva\nkurzívka\nkurzívkový\nkurzor\nkurzorický\nkurzorový\nkurzovné\nkurzovného\nkurzovnému\nkurzovnom\nkurzovným\nkurzovo\nkurzový\nkusa\nkusami\nkus\nkusejšej\nkusejší\nkusejšia\nkusejšie\nkusejšieho\nkusejšiemu\nkusejších\nkusejším\nkusejšími\nkusejšiu\nkusejšom\nkusejšou\nKusín\nkusísk\nkusisko\nkúskovaní\nkúskovanie\nkúskovať\nkúskový\nkuskus\nkúsky\nkuso\nkúsoček\nkúsočka\nkúsočkami\nkúsočkoch\nkúsočkom\nkúsočkov\nkúsočku\nkúsočky\nkúsok\nkusosť\nkusovať\nkusovníkov\nkusovníky\nkusovo\nkusový\nkuspidín\nkustód\nkustódka\nkustódsky\nkusý\nkuš\nkúš\nkušať\nkuša\nkuší\nkušnier\nkušte\nkúštiček\nkúštička\nkúštičkami\nkúštičkoch\nkúštičkom\nkúštičkov\nkúštičku\nkúštičky\nkúštik\nkutáč\nkutať\nkút\nkuter\nkutica\nkutie\nkútikami\nkútik\nkutikula\nkutil\nkutín\nkutiť\nKuťka\nkutle\nkútmi\nKútmi\nKútna\nkutňa\nKútneho\nkutní\nKútnikoch\nKútnikov\nKútniky\nkutnohorské\nkutnohorského\nkutnohorskej\nkutnohorskému\nkutnohorskí\nkutnohorskom\nkutnohorskú\nkutnohorských\nkutnohorským\nKutnohorský\nKútny\nkuťo\nkútový\nKutra\nkutrami\nkutrať\nkutre\nkutrem\nkutreme\nkutreš\nkutrete\nkutri\nkutrime\nkutrite\nkutrú\nkutrúc\nkútskom\nkuť\nkutých\nKutý\nkuváda\nKuvajt\nkuvajtský\nkuvert\nkuvičí\nkuví\nkuvikanie\nkuvikať\nkuvik\nkuviky\nkúzel\nkúzelne\nkúzelnícky\nkúzelníctvach\nkúzelníctvam\nkúzelníctvo\nkúzelníčka\nkúzelník\nkúzelný\nkúziel\nkúzlach\nkúzlam\nkúzlenia\nkúzlenie\nkúzliť\nkúzlo\nKuzmický\nkúže\nkužeľček\nKuželík\nkuželíkov\nkuželíkové\nkuželíkovú\nkuželíkových\nkuželíkovým\nkuželíky\nkužeľ\nkužeľmi\nkužeľoch\nkužeľom\nkužeľosečka\nkužeľov\nkužeľovitý\nkužeľový\nkužeľu\nkV\nKV\nkva\nkvá\nkväckanie\nkvackať\nkväckať\nkvacnúť\nkväcnúť\nkvač\nkváč\nKváč\nkvačala\nkvačať\nkváče\nkváčem\nkváčeme\nkváčeš\nkváčete\nkvačí\nkvačkať\nkvačka\nkvačkovať\nkváčme\nkváčte\nkváču\nkváčuc\nKvád\nkváder\nkvadrant\nkvadrantmi\nkvadrantový\nkvadrát\nkvadraticky\nkvadratický\nkvadrátmi\nkvadratúra\nkvadriatlon\nkvadriga\nkvadrika\nkvadrila\nkvadriliarda\nkvadrilión\nkvadrilovanie\nkvadrinóm\nkvadrívium\nkvadrofónia\nkvádrový\nkvadrupédia\nkvadruplégia\nkvadruplicita\nkvádsky\nkvádsky\nkvajak\nkvajava\nkvak\nkvák\nkvákanie\nkvákať\nkvaka\nkvaker\nkvaknúť\nkvakový\nkvalifikácia\nkvalifikačne\nkvalifikačno\nkvalifikačný\nkvalifikátor\nkvalifikovane\nkvalifikovania\nkvalifikovanie\nkvalifikovanosť\nkvalifikovaný\nkvalifikovať\nkváliť\nkvalitár\nkvalitárka\nkvalitatívny\nkvalita\nkvalitne\nkvalitnejší\nkvalitnosť\nkvalitný\nKvant\nkvánt\nkvantifikácia\nkvantifikáciách\nkvantifikácie\nkvantifikácii\nkvantifikácií\nkvantifikáciou\nkvantifikáciu\nkvantifikátor\nkvantifikátorov\nkvantifikovania\nkvantifikovanie\nkvantifikovaním\nkvantifikovaný\nkvantifikovateľný\nkvantifikovať\nkvantifikujúcim\nkvantil\nkvantít\nkvantitatívny\nkvantita\nkvantizačným\nkvantovanie\nkvantovo\nkvantový\nkvantum\nkvap\nkvápa\nkvapalina\nkvapalinový\nkvapalnosť\nkvapalný\nkvápať\nkvapavka\nkvapavkový\nkvapčať\nkvapeľ\nkvapem\nkvapkadlo\nkvapkajúci\nkvapkaní\nkvapkania\nkvapkanie\nkvapkať\nkvapka\nkvapkovo\nkvapkový\nkvapľa\nkvapľami\nkvaple\nkvapľoch\nkvapľom\nkvapľov\nkvapľový\nkvapľu\nkvapnutia\nkvapnutie\nkvapnúť\nkvapôčka\nkvapôčkový\nkvarc\nkvarci\nkvarcit\nkvarcitov\nkvardián\nkvárená\nkváreným\nkvargľa\nkvarglí\nkváriť\nkvark\nkvartácia\nkvartál\nkvartálny\nkvartálový\nkvartály\nkvartán\nkvartánka\nkvartánsky\nkvarta\nkvart\nkvartér\nkvartérna\nkvartérne\nkvartérny\nkvartet\nkvarteto\nkvartetový\nkvartieľ\nkvartieľmi\nkvartieľoch\nkvartieľom\nkvartieľov\nkvartieľu\nkvartil\nkvarto\nkvartový\nkvas\nkvasene\nkvasenie\nkvasený\nkvasiaci\nkvasiareň\nkvasinka\nkvasiť\nkvasivosť\nkvasivý\nkvasne\nkvasnice\nkvasnicový\nkvasničný\nkvasný\nkvások\nkvaš\nKvašov\nkvaterín\nkvaternión\nkvazar\nkvázi\nkváziargumentmi\nkvázičastica\nkváziodborník\nkvázipeniaze\nkváziumenie\nkvellit\nkver\nkvér\nkverulant\nkverulantov\nkverulantských\nkverulantským\nkvestionár\nkvestor\nkvestormi\nkvestorský\nkvetastý\nkvetavo\nkvetavý\nkvet\nkvetenách\nkvetenám\nkvetenami\nkvetena\nkvetenstvo\nkvetien\nkvetináč\nkvetinár\nkvetinárka\nkvetinársky\nkvetinárstvach\nkvetinárstvam\nkvetinárstvo\nkvetina\nkvetinka\nkvetinovo\nkvetinový\nkvetistý\nKvetka\nKvetkou\nKvetku\nkvetnato\nkvetnatosť\nkvetnatý\nKvetnica\nKvetnici\nkvetník\nkvetný\nkveto\nKvetoslav\nKvetoslava\nKvetoslavov\nKvetoslavova\nKvetoslavove\nkvetoslavovský\nkvetovaný\nkvetový\nkvetý\nkví\nkvickať\nkvicnúť\nkvič\nkvičať\nkvičať\nkvičkať\nkviescencia\nkvieťa\nkvietizmus\nkvietkavý\nkvietkovaný\nkvietok\nkvik\nkvík\nkvíkanie\nkvíkať\nkvik\nkvikot\nkvikotmi\nkvíl\nkvílenieN\nkvíliaci\nkvíliť\nkvílivo\nkvílivý\nkvinkvenálny\nkvínt\nkvintán\nkvintánka\nkvintánsky\nkvinta\nkvintesencia\nkvintet\nKvintet\nkvinteto\nkvintilión\nkvisling\nkvit\nkvitancia\nkvitnúca\nkvitnúce\nkvitnúceho\nkvitnúci\nkvitnúcimi\nkvitnúcou\nkvitnúcu\nkvitnutí\nkvitnutia\nkvitnutie\nkvitnutím\nkvitnutiu\nkvitnúť\nkvitovaný\nkvitovať\nkvíz\nkvízový\nkvo\nkvocienta\nkvocient\nkvocientmi\nkvoč\nkvočať\nkvočka\nkvodlibet\nkvokaní\nkvokanie\nkvokať\nkvok\nkvoknúť\nkvôli\nkvór\nkvórach\nkvóram\nkvórum\nkvót\nkvótach\nkvótam\nkvóta\nkvótový\nKVP\nkW\nkwa\nkwacha\nkwanza\nkWh\nKX\nký\nkyainid\nkyán\nkyanid\nkyanidový\nkyanit\nkyanizácia\nKyanizácia\nkyanofyl\nkyanotypia\nkyanovanie\nkyanovodík\nkyanovodíkový\nkyb\nkýbeľ\nkybernetický\nkybernetička\nkybernetika\nkybernetik\nkýbľa\nkýbľami\nkýble\nkýbli\nkýblik\nkýbľoch\nkýbľom\nkýbľov\nkýbľu\nkyckať\nkycnúť\nkycnutý\nkydami\nkydať\nkyd\nkydnúť\nkydnutý\nkyfosa\nkyfoskolióza\nkyfóza\nkýho\nkýhože\nkých\nkýchanie\nkýchaním\nkýchať\nkýchavka\nkýchkoľvek\nkýchnutieN\nkýchnuť\nkychta\nkychtový\nkýchže\nkyjačik\nkyjačisko\nkyjak\nkyjanica\nkyjanička\nKyjev\nKyjevčan\nKyjeve\nkyjevský\nkyj\nKyjova\nKyjove\nKyjovka\nKyjovom\nkyjovský\nKyklady\nkyklop\nKyklop\nkyklopia\nkyklopom\nkyklopsky\nkyklopský\nKykulu\nKyle\nkýl\nkýlový\nkýly\nkým\nkyma\nKyma\nkymáca\nkymácať\nkými\nkýmiže\nkýmkoľvek\nkymograf\nkymometer\nkýmsi\nkýmu\nkýmuže\nkýmže\nKynceľová\nKynceľovej\nKynceľovú\nKynek\nkyneta\nkynizmus\nkynol\nkynológ\nkynológia\nkynologický\nkynologička\nkynór\nkynožiteľ\nkynožiť\nkynutie\nkynúť\nkynutý\nkyp\nkypa\nkypenie\nkýpeť\nkypiaci\nkypiacim\nkypiacimi\nkypieť\nkypovanie\nkyprejšej\nkyprejší\nkyprejšia\nkyprejšie\nkyprejšieho\nkyprejšiemu\nkyprejších\nkyprejším\nkyprejšími\nkyprejšiu\nkyprejšom\nkyprejšou\nkyprenie\nkypriaci\nkyprič\nkypriče\nkypričov\nkypridlo\nkyprieť\nkypriť\nkypro\nkyprosť\nkyprý\nkyptavo\nkyptavosť\nkyptavý\nkýptik\nkyptiť\nkýpťový\nkyreta\nkyretáž\nKyrgizské\nKyrgizsky\nkyron\nkyrys\nkýs\nKysak\nKysakom\nKysaku\nkyseľ\nkyseľa\nkysele\nkyseli\nKyselica\nKyselici\nKyselicou\nKyselicu\nkyselina\nkyselinotvorný\nkyselinový\nkyselinovzdorný\nkyselkavo\nkyselkavosť\nkyselkavý\nkyselka\nkýsi\nkysla\nkyslasto\nkyslastý\nkyslavo\nkyslavý\nkyslejšej\nkyslejší\nkyslejšia\nkyslejšie\nkyslejšieho\nkyslejšiemu\nkyslejších\nkyslejším\nkyslejšími\nkyslejšiu\nkyslejšom\nkyslejšou\nkyslenie\nkyslička\nkysličník\nkysličníková\nkysličníkové\nkysličníkových\nkyslie\nkyslikáreň\nkyslikárne\nkyslikárňou\nkyslíkaté\nkyslíkatého\nkyslíkatom\nkyslíkatých\nkyslík\nkyslíkove\nkyslíkovo\nkyslíkový\nkysliť\nkyslo\nkyslomliečny\nkyslosť\nkyslota\nkyslý\nkysne\nkysnem\nkysneme\nkysneš\nkysnete\nkysni\nkysnime\nkysnite\nkysnú\nkysnúc\nkysnúci\nkysnúť\nkysnuté\nkysnutého\nkysnutí\nkysnutia\nkysnutie\nkysnutím\nkysnutých\nkysol\nKyste\nkystka\nkystku\nKysúc\nKysuca\nKysuce\nKysuckonovomestská\nKysuckonovomestského\nkysuckonovomestskej\nkysucký\nkýšiť\nKýška\nKyte\nkytica\nkytička\nkytinu\nkytka\nkýv\nkyvadielko\nkyvadlo\nkyvadlový\nkývajúci\nkývanie\nkývaný\nkývať\nkývavať\nkývavo\nkývavý\nkývavý\nkyv\nkýve\nkývem\nkýveme\nkýveš\nkyveta\nkývete\nkyvkať\nkývme\nkývnutie\nkývnutím\nkývnuť\nkyvotajúc\nkyvotať\nkyvot\nkyvotmi\nkývte\nkývu\nkývuc\nkýže\nkýžený\nl\nL\nĺ\nĹ\nľ\nĽ\nla\nLA\nlá\nľa\nlabancovi\nlabanec\nlabanský\nlaba\nľabdoš\nlabel\nLabem\nLabeta\nLabety\nlabiála\nlabializácia\nlabiálny\nlabilita\nlabilne\nlabilnosť\nlabilný\nLabin\nLabina\nlabiodentála\nlabiovelára\nlabium\nlabka\nlablab\nlaborant\nlaborantka\nlaborantský\nlaboratórium\nlaboratórny\nLaborec\nlaborecký\nlaboretizum\nlaborovať\nlabourista\nlabouristicky\nlabouristický\nlabourizmus\nlabrador\nlabradorit\nlabradorom\nlabrum\nLábska\nlábske\nlábskeho\nlábskej\nlábsky\nlábskych\nlabský\nlabuť\nlabutienka\nlabutí\nlabuťom\nlabužnícky\nlabužníctvach\nlabužníctvam\nlabužníctvo\nlabužníčka\nlabužník\nlabyrint\nlabyrintektonómia\nlabyrintída\nlabyrintka\nlabyrintmi\nlabyrintový\nlabzovať\nlác\nLaca\nláce\nlácem\nláceme\nlacerácia\nláceš\nlaceta\nlácete\nLackov\nLackova\nLacková\nLackovej\nLackovou\nLackovú\nlácme\nlacne\nlacnejší\nlacnejší\nlacnieť\nlacno\nlacnosť\nlacnota\nlacný\nLaco\nLacom\nLacovej\nlacrimoso\nlácte\nLactobacillus\nlácu\nlácuc\nlačne\nlačnenia\nlačnieť\nlačno\nlačnosť\nlačnota\nLačnov\nlačný\nLád\nľaď\nLada\nlad\nľad\nLadce\nLadcoch\nladčianska\nladčianskeho\nladčianskej\nladčiansky\nladčianskych\nladčianskym\nladecké\nladeckej\nladeckí\nladeckých\nLadecký\nľadenca\nladenie\nladený\nladiaci\nladiareň\nladiarňach\nladiarňam\nladič\nladička\nladičkový\nladičskej\nLadiec\nľadík\nladin\nLadin\nLadina\nLadinom\nLadislava\nLadislav\nLadislavova\nLadislavove\nladiteľný\nladiť\nladne\nľadnička\nľadník\nľadníkový\nladno\nladnosť\nladný\nľadoborec\nľadochod\nLadomerská\nLadomerskej\nLadomerskú\nLadomírov\nLadomirová\nLadomírova\nLadomirovej\nLadou\nládoval\nládovala\nládovali\nládovalo\nládovanie\nládovaný\nládovať\nľadovatieť\nľadovcový\nľadovec\nľadovica\nľadovieť\nľadovka\nľadovňa\nľadovní\nľadovo\nľadovosť\nľadový\nľadový\nLadožská\nláduj\nláduje\nládujem\nládujeme\nláduješ\nládujete\nládujme\nládujte\nládujú\nládujúc\nľadvín\nľadvina\nľadvinka\nľadvinový\nLadzianskeho\nLadziansky\nľaďže\nlafeta\nlafetový\nlagan\nlaganísk\nlaganiská\nlaganiskách\nlaganiskám\nlaganisko\nlaganisku\nlaganský\nlaganstvo\nláger\nlagoftalamus\nLagosan\nLagos\nlagoský\nlagostoma\nlágrový\nlagún\nlagúnach\nlagúnam\nlagúna\nlagúnový\nĺah\nľaha\nlahar\nLáhaure\nľah\nľahčený\nľahčina\nľahko\nľahkoatletický\nľahkomyseľne\nľahkomyseľnica\nľahkomyseľníčka\nľahkomyseľník\nľahkomyseľnosť\nľahkomyseľný\nľahkonohejšej\nľahkonohejší\nľahkonohejšia\nľahkonohejšie\nľahkonohejšieho\nľahkonohejšiemu\nľahkonohejších\nľahkonohejším\nľahkonohejšími\nľahkonohejšiu\nľahkonohejšom\nľahkonohejšou\nľahkonohý\nľahkosť\nľahkostráviteľnej\nľahkovážnosť\nľahkovážny\nľahkoverne\nľahkovernosť\nľahkoverný\nľahký\nľahnutím\nľahnúť\nlahôd\nlahodách\nlahodám\nlahodami\nlahoda\nlahodiť\nlahodivo\nlahôdkar\nlahôdkár\nlahôdkareň\nlahôdkáreň\nlahôdkarka\nlahôdkárka\nlahôdkarňach\nlahôdkárňach\nlahôdkarňam\nlahôdkárňam\nlahôdkarský\nlahôdkársky\nlahôdkárstvach\nlahôdkárstvam\nlahôdkarstvo\nlahôdkárstvo\nlahôdka\nlahôdkový\nlahodne\nlahodno\nlahodnosť\nlahodný\nľahostajne\nľahostajnieť\nľahostajnosť\nľahostajný\nľahšie\nľahší\nLahti\nLahtijčan\nlahtijský\nľahtikár\nľahtikárka\nľahtikárska\nľahtikárske\nľahtikárskeho\nľahtikárskej\nľahtikárskejšej\nľahtikárskejší\nľahtikárskejšia\nľahtikárskejšie\nľahtikárskejšieho\nľahtikárskejšiemu\nľahtikárskejších\nľahtikárskejším\nľahtikárskejšími\nľahtikárskejšiu\nľahtikárskejšom\nľahtikárskejšou\nľahtikárskemu\nľahtikárski\nľahtikárskom\nľahtikárskou\nľahtikársku\nľahtikársky\nľahtikárskych\nľahtikárskym\nľahtikárskymi\nľahtikárstvach\nľahtikárstvam\nľahtikárstvo\nľahučko\nľahučký\nľahulinko\nľahulinký\nľahunko\nľahunký\nLahuta\nLacha\nLach\nLachovej\nlai\nlaicizácia\nlaicizovať\nlaicky\nlaický\nlaička\nlaik\nlajblík\nlájd\nlajdáckosť\nlajdácky\nlajdáctvach\nlajdáctvam\nlajdáctvo\nlajdáčina\nlajdáčiť\nlajdáčka\nlajdák\nlajda\nlajen\nlájf\nlajka\nLajka\nLajku\nLajky\nlajm\nlajn\nlajni\nlajniak\nlajniaky\nlajno\nlajntuch\nLajok\nlajster\nlajstier\nlajstro\nlajtmotív\nlajtmotíve\nlajtnant\nlákadlo\nlákajúci\nlákanieN\nlákaný\nľakať\nlákať\nlákavo\nľakavo\nlákavosť\nľakavosť\nlákavý\nľakavý\nlak\nľak\nLakedaimonskí\nlakeť\nlakmus\nlakmuse\nlakmusmi\nlakmusoch\nlakmusom\nlakmusov\nlakmusový\nlakmusu\nlakmusy\nľaknutie\nľaknutím\nľaknúť\nlakolit\nlakomec\nlakomejšej\nlakomejší\nlakomejšia\nlakomejšie\nlakomejšieho\nlakomejšiemu\nlakomejších\nlakomejším\nlakomejšími\nlakomejšiu\nlakomejšom\nlakomejšou\nlakomica\nlakomiť\nlakomnica\nlakomo\nlakomosť\nlakomstvo\nlakomý\nlakonickosť\nlakonicky\nlakonický\nlakota\nlakotiť\nlakôtka\nlakotne\nlakotnícky\nlakotníctvach\nlakotníctvam\nlakotníctvo\nlakotníčka\nlakotník\nlakotnosť\nlakotný\nlakovacej\nlakovací\nlakovacia\nlakovacie\nlakovacieho\nlakovacích\nlakovacími\nlakovaciu\nlakovač\nlakovačka\nlakovačský\nlakovačstvo\nlakoval\nlakovala\nlakovali\nlakovalo\nlakovania\nlakovanie\nlakovaním\nlakovaniu\nlakovaný\nlakovať\nlakovka\nlakovňa\nlakovní\nlakovnícky\nlakovníctvach\nlakovníctvam\nlakovníctvo\nlakovníčka\nlakovník\nlakový\nlakrimálny\nlakrimátor\nlakros\nLakšárska\nLakšárskej\nlaktácia\nlaktačný\nlaktagogum\nlaktát\nlaktáza\nlaktík\nlaktoflavín\nlaktoglobulín\nlaktologia\nlaktosúria\nlakťový\nlaktóz\nlaktózach\nlaktózam\nlaktóza\nlakuj\nlakuje\nlakujem\nlakujeme\nlakuješ\nlakujete\nlakujme\nlakujte\nlakujú\nlakujúc\nlakuna\nlakunosus\nlala\nľaľa\nlalácia\nľalia\nLalinský\nľaliovo\nľaliový\nlalku\nľaľo\nlalôčik\nlalôčikový\nlalôčkikový\nlalôčkový\nlalôčkový\nlaločnato\nlaločnatosť\nlaločnatý\nlaločný\nlalofóbia\nlalok\nlalokový\nlalopatia\nlalotať\nlalot\nlalotmi\nlám\nlámací\nLamač\nLamača\nlámač\nlámače\nLamači\nlámačka\nLamačom\nlamačský\nLamaču\nlámaču\nláma\nlamaista\nlámaistickými\nlamaistický\nlámaizmus\nlamaizmus\nlámane\nlámanie\nlámano\nlamanšský\nlámaný\nlamarckizmus\nlamassu\nlámať\nlámavica\nlámavo\nlámavosť\nlámavý\nlama\nlambada\nlambdacizmus\nlambda\nlambert\nLambert\nLambertom\nláme\nlamela\nlamelový\nlámem\nlámeme\nlamentácia\nlamentiť\nlamentoso\nlamentovania\nlamentovanie\nlamentovať\nlamenty\nlámeš\nlameta\nlámete\nlamí\nlamina\nlaminárny\nlaminát\nlaminátmi\nlaminátový\nLamino\nlaminovanie\nlaminovaný\nlaminovať\nlámka\nlámkový\nlámme\nlámou\nlámp\nlampár\nlampáreň\nlampárňach\nlampárňam\nlampas\nlampáša\nlampáše\nlampáši\nlampášik\nlampáš\nlampášmi\nlampášoch\nlampášom\nlampášov\nlampášový\nlampášu\nlampa\nlampička\nlampiek\nlampión\nlampiónik\nlampiónový\nlampka\nlampôčka\nlampovňa\nlampovní\nlampový\nlámte\nlámuc\nlaňajší\nlanár\nľanár\nlanáreň\nlanárení\nlanárenia\nlanárenie\nlanárením\nlanáreniu\nlanáriť\nľanárka\nlanarkit\nLanárne\nľanárska\nľanárske\nľanárskeho\nľanárskej\nľanárskemu\nľanárski\nľanárskom\nľanárskou\nľanársku\nľanársky\nľanárskych\nľanárskym\nľanárskymi\nlanársky\nľanárstvach\nľanárstvam\nlanárstvo\nľanárstvo\nlán\nľan\nlancety\nlanciet\nlanč\nLančár\nLančára\nlančmít\nlančmítmi\nlaň\nlandser\nlandsknecht\nlandsmanšaft\nLánec\nlanfáriť\nlangit\nlangoša\nlangoše\nlangoši\nlangoš\nlangošmi\nlangošoch\nlangošom\nLángošom\nlangošov\nlangošu\nlangúst\nlangusta\nlangustový\nlaní\nlankasterka\nlanka\nLanka\nlanko\nlankový\nlanolín\nlanolínový\nlano\nlaňom\nľanovísk\nľanovisko\nlanovkári\nlanovka\nlanovkový\nľanovo\nľanový\nlanový\nľanový\nLánskeho\nLánskej\nLánskemu\nLánsky\nLánskym\nlanský\nlanštiak\nlantán\nlantana\nlantanit\nlanugo\nlanýž\nLaosan\nLaos\nlaoský\nlapací\nlapač\nlapače\nlapačka\nlapaču\nlapaj\nlapajísk\nlapajiská\nlapajiskách\nlapajiskám\nlapajisko\nlapajisku\nlapajský\nlapajstvo\nlapák\nlapália\nlapanie\nlapaný\nlaparokéla\nlaparoskop\nlaparoskopia\nlaparoskopický\nlaparoskopom\nlaparoskopu\nlaparotómia\nLapáša\nLapáši\nlapať\nlapať\nlapazský\nľapci\nľapcime\nľapcite\nlapenie\nlapený\nlapidárium\nlapidárnosť\nlapidárny\nlapík\nlapikurkár\nlapikurkársky\nlápis\nlápisový\nlapiť\nlapkať\nlapka\nlaplaceovský\nlaplaleovský\nľapnúť\nlapončín\nlapončinách\nlapončinám\nlapončinami\nlapončina\nLaponec\nLaponka\nLaponsko\nlaponsky\nlaponský\nľapotanie\nľapotať\nľapotavý\nľapot\nľapotmi\nlappončina\nlaps\nlapsnúť\nlapsus\nľaptať\nlaptop\nlár\nlarderellit\nlárg\nlargo\nlari\nLarisa\nLarise\nLarisy\nlárom\nlarválny\nlarva\nlarvička\nlarvový\nláry\nlaryngála\nlaryngálny\nlaryngektómia\nlaryngitíd\nlaryngitídach\nlaryngitídam\nlaryngitída\nlaryngofaryngitída\nlaryngofón\nlaryngológ\nlaryngológia\nlaryngotómia\nlarynx\nlás\nlascivita\nlascívnosť\nlascívny\nLascov\nlasera\nlaser\nlaseri\nlaserový\nLasi\nlasica\nlasičí\nlasička\nláskaní\nláskanie\nláskaním\nLaskár\nLaskára\nLaskári\nláskať\nláskavce\nláskavcových\nláskavcu\nláskavec\nláskavo\nláskavosť\nláskavý\nláska\nlaskonka\nlaskotať\nlásky\nláskyplne\nláskyplnosť\nláskyplný\nlaso\nlassalizmus\nlassi\nlastex\nlastexový\nLastomír\nLastomírska\nlastovica\nlastovíča\nlastovičiar\nlastovičí\nlastovička\nlastovičník\nLastovka\nLastovku\nlastúr\nlastúrach\nlastúram\nlastúra\nlastúrničiar\nlastúrnička\nlastúrnik\nlastúrniky\nlastúrovitý\nlastúrový\nlaškovanie\nlaškovať\nlaškovne\nlaškovný\nlašovanie\nlašovaný\nlašovať\nlašský\nlat\nlát\nlátajúci\nlátaní\nlátania\nlátanie\nlátanina\nlátať\nlata\nlatén\nlatencia\nlatencie\nlatenciou\nlatenciu\nlatentne\nlatentnosť\nlatentný\nlaterál\nlaterála\nlateralita\nlaterálny\nlaterna\nLaterny\nlaterodukcia\nlateroflexia\nlatex\nlatexový\nlatifundista\nlatifundium\nlatiméria\nLatin\nlatina\nlatinčín\nlatinčinách\nlatinčinám\nlatinčinami\nlatinčinár\nlatinčinárka\nlatinčinársky\nlatinčina\nlatinizácia\nlatinizačný\nlatinizmus\nlatinka\nLatino\nlatinskoamer\nlatinskoamerický\nlatinsky\nlatinský\nlatitúda\nlatka\nlátka\nlátkove\nlátkovo\nlatkový\nlaťkový\nlátkový\nLatorica\nlatorický\nlatovanie\nlatovať\nlatovec\nlatovka\nlatovkový\nlatový\nlatrán\nlatrín\nlatrínach\nlatrínam\nlatrína\nlatrínový\nlaudanon\nlaudánum\nlaudátor\nlauf\nLaugarício\nlaur\nLaur\nLáur\nLaura\nlaureát\nlaureátka\nlaureátsky\nLaurent\nLaurenta\nLaurentom\nLaurin\nLaurina\nLaurinom\nLaurus\nláv\nlavábl\nlavabo\nľavačka\nľaváčka\nlávach\nľavák\nlávam\nlavatórium\nláva\nlaváž\nlavica\nľavica\nlavicovo\nľavicovo\nľavicový\nlavicový\nľavicový\nľavičiar\nľavičiarka\nľavičiarsky\nľavičiarsky\nľavičiarstvach\nľavičiarstvam\nľavičiarstvo\nlavička\nlavín\nlavínach\nlavínam\nlavína\nlavínovite\nlavínovito\nlavínovitý\nlavínovo\nlavínový\nlavinózny\nlavírovaní\nlavírovania\nlavírovanie\nlavírovaním\nlavírovať\nlávka\nľavo\nľavoboček\nľavobočka\nľavobočkami\nľavobočkoch\nľavobočkom\nľavobočkov\nľavobočkovi\nľavobočkovia\nľavopravej\nlavóra\nľavoramenný\nlavór\nlavóre\nľavorezný\nlavórmi\nlavóroch\nlavórom\nlavórov\nlavórovica\nlavórový\nlavóru\nlavóry\nľavostranný\nľavotočivo\nľavotočivý\nlávovitý\nlávový\nlavra\nLavrin\nľavý\nlawrencium\nlaxácia\nlaxatív\nlaxatívum\nlaxne\nlaxnosť\nlaxný\nlayout\nLazany\nlazar\nlazár\nLazár\nlazaret\nlazaretný\nlazaretový\nLazárik\nLazárika\nLazárikom\nlazarita\nLazárovej\nLazárovou\nlazársky\nlaz\nLazený\nLazia\nLazian\nlazík\nLazisko\nlaziť\nlaznícky\nlazníčka\nlazník\nlázok\nlazúr\nlazurit\nlazuritov\nlazúrou\nlazúrovaným\nlazúrový\nLažanami\nLažanoch\nLažany\nlažérny\nLažian\nlažírovať\nľažkať\nlážo\nLažteky\nLB\nĽB\nLCD\nLDL\nLe\nLeader\nleadra\nleadrami\nleadri\nleadrom\nleadrov\nleasing\nleasingmi\nleasingoch\nleasingom\nleasingov\nleasingový\nleasingu\nleasingy\nLea\nlebečný\nlebeď\nlebedí\nlebedia\nlebediac\nlebedil\nlebedila\nlebedili\nlebedilo\nlebedím\nlebedíme\nlebedíš\nlebediť\nlebedíte\nlebeďme\nlebeďte\nlebeňa\nlebeň\nlebení\nlebka\nlebkový\nlebo\nlebože\nlecikto\nlecithin\nlecitín\nlecitínový\nlečí\nlečo\nlečový\nLED\nleda\nledabolo\nledabolý\nledač\nledačím\nledačina\nledačo\nledačoho\nledačom\nledačomu\nledajak\nledajako\nledakde\nledakedy\nledakoľko\nledakto\nledaže\nLednica\nLednice\nLednici\nLedniciach\nlednického\nlednickej\nLednický\nledva\nledvaže\nledvučičko\nledvy\nlefoška\nleg\nlég\nlegácia\nlégach\nlegalita\nlegalite\nlegalitou\nlegalitu\nlegality\nlegalizácia\nlegalizačný\nlegalizovania\nlegalizovanie\nlegalizovaniu\nlegalizovaný\nlegalizovať\nlegálnosť\nlegálny\nlégam\nlegasténia\nlegát\nlegáti\nlegátka\nlegátmi\nlegato\nlegátovi\nlegátsky\nlegátstvach\nlegátstvam\nlegátstvo\nléga\nlegendárnosť\nlegendárny\nlegenda\nleggins\nlégia\nlegíns\nlegínsach\nlegínsam\nlegínsami\nlegínsoch\nlegínsom\nlegínsov\nlegínsy\nlegíny\nlegionár\nlegionársky\nlegisl\nlegislácie\nlegislačný\nlegislatív\nlegislatívach\nlegislatívam\nlegislatíva\nlegislatívec\nlegislatívkyňa\nlegislatívny\nlegisvakancia\nlegitimácia\nlegitimačný\nlegitimisti\nlegitimita\nlegitimizoval\nlegitimizovala\nlegitimizovali\nlegitimizovalo\nlegitimizovaním\nlegitimizovaný\nlegitimizovať\nlegitimizuje\nlegitimizujeme\nlegitimizujú\nlegitimnosť\nlegitímnosť\nlegitimný\nlegitímny\nlegitimovania\nlegitimovanie\nlegitimovaný\nlegitimovať\nlegitka\nlegizmus\nlegmatička\nLegnava\nlego\nlegovací\nlegovacia\nlegovania\nlegovanie\nlegovaniu\nlegovaný\nlegovať\nlegový\nleguán\nlegujúca\nlegujúci\nlehátka\nlehátko\nlehátkový\nlehátok\nlehnenie\nlehni\nlehnia\nlehnický\nLehocký\nlehota\nLehôtka\nLehôtke\nLehôtkou\nLehôtku\nLehôtky\nlehotník\nlehotového\nLehotský\nLechnica\nLechnicky\nLechnický\nlei\nLein\nLeina\nLeine\nleiomyón\nleitaci\nleitmotív\nleitmotíve\nlej\nlejací\nlejacie\nlejacích\nlejach\nlejak\nlejakový\nlejam\nlejár\nlejárka\nlejársky\nlejárstvach\nlejárstvam\nlejárstvo\nleja\nlejavec\nlejavica\nlejem\nlejeme\nleješ\nlejete\nlejí\nlejme\nlejte\nlejú\nlejúc\nlek\nlekár\nlekáreň\nlekárenský\nlekárka\nlekárky\nlekárňach\nlekárňam\nLekárnicky\nlekárnický\nlekárnictvo\nlekárnička\nlekárnik\nlekárova\nlekárovej\nlekárovho\nlekárovo\nLekárovou\nlekárovského\nlekárovu\nlekárových\nlekárovým\nlekársky\nlekárstvach\nlekárstvam\nlekárstvo\nlekáž\nlekcia\nlekcionár\nlekcionármi\nlekiel\nlekno\nleknový\nlektorát\nlektorátmi\nlektor\nlektorka\nlektormi\nlektorovanie\nlektorovať\nlektorsky\nlektorský\nlektorstvo\nlektúr\nlektúrach\nlektúram\nlektúra\nlekvár\nlekvármi\nlekvárnik\nlekvárniku\nlekvárniky\nlekvárovník\nlekvárový\nlékythos\nLeľa\nlelčí\nlelek\nLeles\nLelese\nleleskom\nleleským\nLelesu\nlelka\nlelkami\nlelkoch\nlelkom\nlelkov\nlelkovi\nlelky\nLelovský\nlema\nlem\nLemešanami\nLemešanoch\nLemešany\nLemešian\nlemeš\nlemma\nlemon\nlemovací\nlemovane\nlemovanie\nlemovaný\nlemovať\nlemovka\nlemový\nlempira\nlemujúci\nlemur\nlen\nlén\nLena\nlénach\nlénam\nLenartov\nLenčan\nLenčianka\nlenčiansky\nLendacký\nLendak\nLendakom\nLendaku\nlenenie\nlengať\nlengavý\nlenienciá\nLenin\nLenina\nLeningrad\nLeningradčan\nleningradský\nleninista\nleninizmus\nleninovec\nleninovský\nleninský\nleniť\nlenitívum\nlenivec\nlenivieť\nlenivo\nlenivosť\nlenivý\nLenka\nLenkin\nlénnik\nlénny\nleňochL\nleňochod\nléno\nleňošenie\nleňošením\nleňošeniu\nleňoší\nleňošiť\nleňoška\nleňošky\nleňošský\nleňošstvo\nLenou\nlenskej\nLenský\nlent\nlenticela\nlentilka\nlento\nLentvora\nLentvorského\nLentvory\nLeny\nlenže\nLeo\nLeón\nLeona\nLeonard\nLeonardova\nleonberger\nLeonberger\nleone\nLeone\nLeóne\nLeonid\nLeonida\nLeonidom\nLeonidov\nLeonidovi\nLeonou\nLeónu\nLeony\nleopard\nleopardíN\nleoparďom\nleoparďou\nleopardy\nLeopold\nLeopoldova\nLeopoldove\nLeopoldovia\nleopoldovského\nleopoldovskej\nleopoldovskom\nleopoldovských\nLeopoldovský\nLeoš\nLeoša\nLeošom\nlep\nlepenia\nlepenie\nlepením\nLepenkáreň\nlepenkárni\nlepenka\nlepenkový\nlepený\nlepiaci\nlepič\nlepička\nlepičské\nlepidlo\nlepidlový\nlepidopterológia\nlepier\nlepiť\nlepív\nlepiva\nlepivo\nlepivosť\nlepivosti\nlepivý\nlepkavo\nlepkavosť\nlepkavý\nlepkový\nlepok\nleporel\nleporelo\nleporelový\nlepový\nleprách\nleprám\nleprami\nlepra\nlepróm\nleprosárium\nleprový\nlepšejšej\nlepšejšieho\nlepšejšiemu\nlepšejších\nlepšejším\nlepšejšími\nlepšejšiu\nlepšejšom\nlepšejšou\nlepšeniu\nlepši\nlepšie\nlepší\nlepší\nlepšime\nlepšite\nlepšiť\nleptacej\nleptaciu\nleptadlo\nleptanie\nleptaný\nleptať\nleptavo\nleptavosť\nleptavý\nlept\nleptmi\nleptocefália\nleptóm\nleptomeningitída\nleptón\nleptosómny\nleptospiróza\nlepý\nlesák\nLesán\nLesana\nlesa\nles\nlesba\nlesbický\nlesbička\nlesbizmus\nLesbos\nLesia\nlesica\nlesíček\nlesíčka\nlesíčkami\nlesíčkoch\nlesíčkom\nlesíčkov\nlesíčku\nlesíčky\nlesík\nLesin\nlesina\nlesk\nlesklejšej\nlesklejší\nlesklejšia\nlesklejšie\nlesklejšieho\nlesklejšiemu\nlesklejších\nlesklejším\nlesklejšími\nlesklejšiu\nlesklejšom\nlesklejšou\nlesklosť\nlesklý\nlesknúci\nlesknutie\nlesknúť\nlesmajster\nlesnatosť\nlesnatý\nLesne\nLesnica\nLesnice\nLesnici\nlesnický\nlesnícky\nlesníctvach\nlesníctvam\nlesníctvo\nlesník\nlesno\nlesný\nlesohospodára\nlesohospodári\nlesohospodármi\nlesohospodárov\nlesohospodárske\nlesohospodárskeho\nlesohospodárskej\nlesohospodársky\nlesohospodárskych\nlesohospodárskymi\nlesoochranného\nlesopark\nlesoparkový\nlesostepami\nlesostep\nlesostepi\nlesostepí\nlesostepiach\nlesostepiam\nlesostepný\nlesostepou\nlesotechnických\nLesothačan\nLesothčan\nLesotho\nlesothský\nlesovňa\nlesovne\nlesovní\nlesť\nlesto\nlešenár\nlešenárske\nlešenársky\nlešenárskych\nlešenie\nlešeňový\nlešitaci\nLešná\nleštence\nleštencový\nleštencu\nleštenec\nleštenie\nleštený\nlešti\nleštiaci\nleštiareň\nleštiarne\nleštiarni\nleštič\nleštiče\nleštička\nleštičský\nleštiču\nleštidlo\nleštime\nLeštinách\nLeštinská\nleštinskej\nLeštiny\nleštite\nleštiť\nleť\nletáčik\nletáčikovi\nletáč\nletáčka\nletáčkami\nletáčkoch\nletáčkom\nletáčkov\nletáčkovi\nletáčky\nletáčový\nleták\nletáková\nletákové\nletákového\nletákovej\nletákovou\nletákovú\nletákových\nletákovými\nletalita\nletálny\nletanovskej\nLetanovský\nletá\nletargia\nletargicky\nletargický\nlet\nletec\nleteckonavigačný\nletecky\nletecký\nletectvo\nletenka\nletiaci\nletieť\nletísk\nletisko\nletiskový\nletišti\nletka\nletkis\nLetko\nletkyňa\nletmejšej\nletmejší\nletmejšia\nletmejšie\nletmejšieho\nletmejšiemu\nletmejších\nletmejším\nletmejšími\nletmejšiu\nletmejšom\nletmejšou\nletmo\nletmosť\nletmý\nletmý\nLetničie\nletnička\nletním\nletnina\nletno\nletný\nLetohrad\nLetohrade\nletohrádok\nLetohradu\nletok\nletokruh\nleto\nletopis\nletopisec\nletopisný\nletopočet\nletorast\nletorastmi\nletora\nletovací\nletovačka\nletovanie\nletovaný\nletovať\nLetove\nletovísk\nletovisko\nletovo\nletový\nletún\nletúnovi\nletúny\nletuška\nleu\nleucín\nleucit\nleukémia\nleukemický\nleukocytárny\nleukocyt\nleukocytmi\nleukocytogenéza\nleukocytopénia\nleukocytopoéza\nleukocytový\nleukocytóza\nleukoderma\nleukodermia\nleukolyzín\nleukopatia\nleukopénia\nleukoplast\nleukoplastmi\nleukoplastový\nleukopoéza\nleukorágia\nleukotázia\nleukotómia\nleukotoxín\nleukotrichia\nlevanduľa\nlevanduľový\nLevanta\nLevante\nlevantín\nlevantským\nlevárskeho\nlev\nleve\nlevel\nlevhart\nleviatan\nlevica\nLevice\nlevického\nlevickej\nlevickí\nlevickou\nlevickú\nLevický\nlevíča\nlevíček\nlevíčka\nlevíčkami\nlevíčkoch\nlevíčkom\nlevíčkov\nlevíčkovi\nlevíčky\nleví\nlevík\nlevirát\nlevita\nlevitácia\nlevity\nLevkuška\nLevoča\nLevoče\nLevoči\nLevočou\nlevočského\nlevočskej\nlevočskému\nlevočskí\nlevočskom\nlevočskú\nLevočský\nLevoču\nLevoslav\nlevova\nlevový\nlevský\nlevu\nlevulóza\nlevy\nlewisit\nlewisitmi\nlex\nLexa\nlexém\nlexikalizovať\nlexikálny\nlexika\nlexikograf\nlexikografia\nlexikograficky\nlexikografický\nlexikografka\nlexikológ\nlexikológia\nlexikologicko\nlexikologický\nlexikologička\nlexikon\nLexikon\nlexikón\nLexikone\nlexikonom\nlexikónový\nlexikonu\nlexikony\nLexou\nLexu\nlezba\nlezec\nlezecký\nlezení\nlezenia\nlezenie\nlezením\nlezeniu\nlézia\nlezkyňa\nležadlo\nležadlový\nležaní\nležania\nležanie\nležato\nležatosť\nležať\nležatý\nležérnosť\nležérny\nležiaci\nležiačky\nLežiachov\nležiak\nležiava\nležiavaj\nležiavajme\nležiavajte\nležiavajú\nležiavajúc\nležiaval\nležiavala\nležiavali\nležiavalo\nležiavam\nležiavame\nležiavaš\nležiavať\nležiavate\nležiavaťX\nležísk\nležisko\nležkať\nležmo\nležovísk\nležovisko\nLFUK\nlg\nLH\nLhasa\nLhase\nLi\nliacach\nliacam\nliace\nliaci\nliací\nliacový\nliadkovať\nliadkový\nliadkový\nliadok\nliaheň\nliahenský\nliahňach\nliahňam\nliahnisko\nliahnuci\nliahnutí\nliahnutia\nliahnutie\nliahnutím\nliahnuť\nlián\nLián\nlianách\nLianách\nlianám\nLianám\nliana\nLiana\nlianový\nliapať\nlias\nLias\nLiasu\nliatie\nliatina\nliatinový\nliatovček\nliatovec\nliať\nliaty\nLibanon\nLibanončan\nLibanonec\nLibanonka\nlibanonský\nlibela\nlibelový\nliberácia\nliberál\nliberalista\nliberalisticky\nliberalistický\nliberalizácia\nliberalizačný\nliberalizmus\nliberalizoval\nliberalizovala\nliberalizovali\nliberalizovalo\nliberalizovania\nliberalizovanie\nliberalizovaním\nliberalizovaniu\nliberalizovaný\nliberalizovať\nliberalizuje\nliberalizujeme\nLiberalizujte\nliberalizujú\nliberálka\nliberálnodemokratický\nliberálnosť\nliberálny\nLiberca\nLiberce\nLiberci\nLibercom\nLibercu\nLiberec\nliberecký\nLibéria\nLibérijčan\nlibérijský\nlibero\nliberté\nlibertin\nlibido\nLíbie\nlibier\nLibichava\nlibrácia\nlibra\nLibresse\nlibresso\nlibretista\nlibretistka\nlibreto\nlibris\nlibrový\nLibušách\nLibušám\nLibuša\nLibuší\nLíbya\nlíbyj\nLíbyjčan\nlíbyjský\nLíbyy\nlíc\nlícach\nlícam\nlicenciát\nlicenciátmi\nlicencia\nlicencioval\nlicenciovala\nlicenciovali\nlicenciovalo\nlicenciovať\nlicenciuj\nlicenciuje\nlicenciujem\nlicenciujeme\nlicenciuješ\nlicenciujete\nlicenciujme\nlicenciujte\nlicenciujú\nlicenciujúc\nlicencovaný\nlicencovať\nlicenčne\nlicenčno\nlicenčný\nlicenčný\nlíce\nlicet\nLicince\nLicinciach\nlicitácia\nlicitačný\nlicitátor\nlicitátora\nlicitátori\nlicitátorovej\nlicitátorovo\nlicitovaní\nlicitovania\nlicitovanie\nlicitovaním\nlicitovaniu\nLicitovaný\nlicitovať\nlícnic\nlícnica\nlícnice\nlícny\nlícovanie\nlícovaný\nlícovať\nlícový\nlíčení\nlíčenia\nlíčenie\nliči\nlíčidlo\nlíčiť\nlíčko\nlíd\nlidar\nlíder\nlido\nliečbach\nliečbam\nliečbami\nliečba\nliečebňa\nliečebno\nliečebný\nliečenie\nliečený\nliečiaca\nliečiteľ\nliečiteľka\nliečiteľnosť\nliečiteľný\nliečiteľský\nliečiteľstvo\nliečiť\nliečiv\nliečivo\nliečivosť\nliečivý\nliečnou\nliečob\nliedkový\nlieh\nliehobenzín\nliehobenzíne\nliehobenzínov\nliehobenzínový\nliehobenzínu\nliehovar\nliehovarnícky\nliehovarníctvach\nliehovarníctvam\nliehovarníctvo\nliehovarník\nliehovarský\nliehovina\nliehový\nliek\nliekový\nLiem\nlien\nlieňa\nlieň\nlienitída\nlieniť\nlienka\nlienkový\nlieňmi\nlieňoch\nlieno\nlieňom\nlienomalácia\nlieňov\nlieňovi\nlientéria\nliepať\nlies\nLiesek\nLieseku\nlieska\nLieskovany\nlieskovcový\nLieskove\nlieskovec\nlieskovica\nlieskovo\nLieskovský\nlieskový\nLiešno\nLiešťany\nlieštie\nlieštin\nlieština\nlietací\nlietačiek\nlietačky\nlietadielko\nlietadielok\nlietadlo\nlietadlový\nlietajúci\nlietanie\nlietať\nLietav\nlietavať\nLietave\nlietavica\nLietavský\nLietavu\nLietavy\nlietavý\nlievajúcich\nlievancový\nlievanček\nlievanec\nlievanka\nlievať\nlievč\nlievič\nlievik\nlievikovite\nlievikovito\nlievikovitý\nlievikový\nliezť\nLiežan\nliežsky\nliežsky\nlifrovanie\nlifrovať\nlift\nliftboy\nlifting\nliftmi\nliftový\nliftvan\nlíg\nligament\nligamentum\nligand\nligant\nligatúra\nliga\nligista\nLigna\nlignát\nLigne\nlignifikácia\nlignín\nlignínu\nlignit\nlignitmi\nlignitový\nlignos\nlignóza\nLignu\nlignum\nLignum\nligotajúci\nligotanie\nligotať\nligotavo\nligotavý\nligot\nligotmi\nligotný\nligový\nligula\nLigúria\nligurián\nLigúrii\nligúrsky\nlíhadlo\nlíhať\nlíhavať\nlichejšej\nlichejší\nlichejšia\nlichejšie\nlichejšieho\nlichejšiemu\nlichejších\nlichejším\nlichejšími\nlichejšiu\nlichejšom\nlichejšou\nlichen\nlichiev\nlichneológia\nlicho\nlichobežník\nlichobežníkový\nlichota\nlichotenie\nLichotín\nlichotiť\nlichotivo\nlichotivosť\nlichotivý\nlichôtka\nlichotnica\nlichotnícky\nlichotník\nlichotný\nlichotný\nlichtejštajnský\nLichtenštajnčan\nLichtenštajnsko\nlichtenštajnsky\nlichtenštajnský\nlichtenštajnský\nlichvách\nlichvám\nlichvami\nlichva\nlichvový\nlichý\nLikavka\nLikavke\nLikavkou\nLikavky\nlikavského\nLike\nlikér\nlikéri\nlikérka\nlikérmi\nlikérnickú\nlikérnikovi\nlikéroch\nlikérom\nlikérov\nlikérový\nlikéru\nlikéry\nliknavec\nliknavo\nliknavosť\nliknavosti\nliknavostí\nliknavosťou\nliknavý\nLikov\nliktorov\nLiku\nlikvefakcia\nlikvet\nlikvida\nlikvidácia\nlikvidačne\nlikvidačný\nlikvidátor\nlikvidátormi\nlikvidátorsky\nlikvidátorský\nlikvidátorstvo\nlikvidatúra\nlikvidatúrach\nlikvidatúre\nLikvidatúru\nlikvidatúry\nlikvidita\nlikvidne\nlikvidnosť\nlikvidnosti\nlikvidnosťou\nlikvidný\nlikvidovania\nlikvidovanie\nlikvidovaním\nlikvidovaniu\nlikvidovaný\nlikvidovať\nlikvidu\nlikvor\nlila\nlilangeni\nlilavkastý\nlilavkavý\nlilavo\nlilavý\nlileoryt\nliliput\nLiliput\nlilipután\nliliputánka\nliliputánsky\nliliputány\nliliputka\nLím\nliman\nLimanová\nLima\nLimbach\nLimbachu\nlimbašskom\nlimbašských\nLimbašský\nlimba\nlimbický\nLimbora\nlimbový\nlimburger\nLimburský\nlimbus\nLimčan\nlimes\nLimes\nlimeta\nlimikolný\nLimina\nlimitácia\nlimitatívny\nlimitativum\nlimita\nlimit\nlimited\nlimitkami\nlimitky\nlimitmi\nlimitne\nlimitný\nlimitovane\nlimitovanieN\nlimitovaný\nlimitovať\nlimitový\nlimnetický\nlimnický\nlimnigraf\nlimnigrafických\nlimnobiológia\nlimnobios\nlimnofilný\nlimnofyt\nlimnológia\nlimon\nlimonád\nlimonádach\nlimonádam\nlimonáda\nlimonádovo\nlimonádový\nlimonit\nlimonitmi\nlimonitový\nlimoterapia\nlimovnitový\nlimpidný\nlimský\nlimuzín\nlimuzínach\nlimuzínam\nlimuzína\nLin\nLina\nlinajka\nlinajkovaný\nlinajkovať\nlinajkový\nLinčan\nLínd\nlinda\nLinda\nLindin\nline\nlinea\nlineál\nlineálny\nlineament\nlineár\nlineáre\nlinearite\nlineárnosť\nlineárny\nlineárový\nlineáru\nLinec\nlinecký\nLiner\nlinerov\nlinery\nlingam\nlingi\nlingua\nLingua\nlingue\nlingv\nlingvála\nlingvista\nlingvisticky\nlingvistický\nlingvistika\nlingvistka\nLini\nliniatúra\nlínia\nliniment\nlinín\nlíniovo\nlíniový\nlinka\nlinkovacích\nlinkovanie\nlinkovaný\nlinkovať\nlinkový\nlinnéit\nLinoch\nlinoleát\nlinoleorez\nlinoleoryt\nlinoleorytmi\nlinoleový\nlinoleum\nlinorez\nlinoryt\nlinorytmi\nlinotypia\nlinotyp\nlinotypy\nlint\nLinux\nLinux\nlinuxovské\nlinuxový\nLip\nlíp\nLipanami\nLipanoch\nLipany\nlipáza\nlipa\nLipčan\nlipémia\nlipeň\nLipí\nLipian\nLipianska\nlipianskeho\nLipianskemu\nlipianski\nlipianskom\nlipianskou\nlipicán\nlipican\nlipicanovi\nlipicanský\nlipid\nlipieť\nlipina\nlipiodol\nlipkať\nlipkavca\nlipkavo\nlipkavý\nlipka\nLipko\nlipký\nlipňa\nlipňami\nlipnica\nLipnická\nLipník\nLipníka\nLipníkom\nLipníku\nLipníky\nlipňoch\nlipňom\nlipňov\nlipňovi\nlipnúci\nlipnúcich\nlipnutí\nlipnutie\nlipnutím\nlipnúť\nlipodystrofia\nlipofág\nlipofibróm\nlipofilný\nlipogénny\nlipochróm\nlipochrómia\nlipoidy\nlipóm\nlipomatóza\nlipoproteid\nliposukcia\nLipovany\nLipovce\nLipovci\nLipovcom\nLipovec\nLipovina\nlipovinou\nLipovník\nlipovo\nLipovský\nlipový\nlipozóm\nLipsko\nlipsky\nlipský\nLiptáčka\nLipták\nLiptákovej\nLiptova\nLiptov\nLiptove\nliptovskohrádocká\nliptovskohrádocké\nliptovskohrádockého\nliptovskohrádockej\nliptovskomikulášska\nliptovskomikulášske\nliptovskomikulášskeho\nliptovskomikulášskej\nLiptovskomikulášski\nLiptovskomikulášskom\nliptovskomikulášsku\nliptovskomikulášsky\nliptovskomikulášskych\nliptovskomikulášskym\nLiptovsky\nliptovský\nlipuša\nliquet\nliquor\nlír\nlira\nlírach\nlíram\nlíra\nlirokonit\nLisabon\nLisabončan\nlisabonský\nlisárske\nlisárskeho\nlis\nliskavo\nliskavý\nlisknúť\nliskovská\nliskovskej\nliskovskou\nLiskovský\nlisnúť\nlisovací\nlisovač\nlisovačka\nlisovačovi\nlisovačský\nlisovanie\nlisovaný\nlisovať\nlisovňa\nlisovní\nlisový\nlista\nlistár\nlistáreň\nlistárka\nlistárňach\nlistárňam\nlistársky\nlist\nlisteň\nlisteňový\nlistera\nlister\nlisteri\nlisterióza\nlisterový\nlístička\nlístie\nlistín\nlistina\nlistinný\nlistinový\nlístkovnici\nlístkový\nlistmi\nlistnáč\nlistnatý\nlístoček\nlístočka\nlístočkami\nlístočkoch\nlístočkom\nlístočkov\nlístočkový\nlístočku\nlístočky\nlistokaz\nlistokazy\nlístok\nlistované\nlistovaní\nlistovania\nlistovanie\nlistovaním\nlistovanou\nlistovanými\nlistovať\nlistovávať\nlistovka\nlistovne\nlistovný\nlistovozelený\nlistový\nlistra\nlistrami\nlistre\nlistri\nlistroch\nlistrom\nlistrov\nlistrový\nlistru\nlistúvať\nlistý\nlišací\nlišaj\nlišajník\nlišajníkovo\nlišajovi\nlíščí\nlíšiaci\nlišiackosť\nlišiacky\nlišiactvach\nlišiactvam\nlišiactvo\nlišiak\nlišiaky\nlíšiť\nlíškať\nlíškavcovi\nlíškavec\nlíškavo\nlíškavosť\nlíškavý\nlíška\nlíškin\nLíšková\nLíškovej\nLišov\nLišova\nLišove\nlišovský\nlíšt\nlíšťa\nlišta\nlíštencami\nlíštence\nlíštencoch\nlíštencom\nlíšteniec\nlíštička\nlištový\nlit\nlita\nlitánia\nlitánie\nLitava\nLitave\nlitavský\nLitavy\nliterál\nliterárčiť\nliterárnohistorický\nliterárnosť\nliterárnovedný\nliterárny\nliterát\nliterátka\nliterátskosť\nliterátsky\nliteratúr\nliteratúrach\nliteratúram\nliteratúra\nlitera\nliter\nlítia\nlitiáza\nlitier\nlitierka\nlitifikácia\nlítiový\nlitispedencia\nlitispendencia\nlítium\nlitocystotómia\nlitofánia\nlitofyt\nlitogenéza\nlitograf\nlitografia\nlitografický\nlitografka\nlitografovať\nlitoklast\nlitokláza\nlitolapaxia\nlitológia\nlitologických\nLitomyšl\nLitomyšľan\nLitomyšlianka\nlitomyšliansky\nlitomyšliansky\nlitonefrotómia\nlitonefróza\nlitorál\nlitosféra\nlitoskop\nlitotes\nlitotómia\nlitotrypsia\nlitotryptor\nlitov\nLitovci\nLitovcom\nLitovcov\nLitovcovi\nLitovčan\nLitovčanka\nlitovčín\nlitovčinách\nlitovčinám\nlitovčinami\nlitovčina\nLitovec\nlitovsky\nlitovský\nlitrážach\nlitrážam\nlitráž\nlitrík\nlitrovka\nlitrový\nlituanistika\nlituráza\nliturg\nliturgia\nliturgický\nliturgoval\nliturgovala\nliturgovali\nliturgovalo\nliturgovať\nliturguj\nliturguje\nliturgujem\nliturgujeme\nliturguješ\nliturgujete\nliturgujme\nliturgujte\nliturgujú\nliturgujúc\nLitvan\nLitvanka\nLitva\nLitvínov\nLitvínova\nLitvínove\nLitvínovom\nlitvínovský\nLitvínovu\nlivarot\nlive\nlivedo\nLiverpool\nLiverpoolčan\nliverpoolsky\nliverpoolsky\nLivia\nLívia\nlividita\nLivorna\nLivorne\nLivov\nLivovská\nlivrejach\nlivrejam\nlivrejami\nlivrejí\nlivrej\nlivrejou\nlivrejovaný\nLiz\nlízadlo\nlizák\nlízanie\nlízanka\nlízaný\nlízatko\nlízať\nlizéna\nlízing\nlízingový\nlízingy\nlizkať\nliznutie\nliznúť\nlíž\nlíže\nlížem\nlížeme\nlížeš\nlížete\nlížme\nlížte\nlížu\nlížuc\nlkanie\nlkať\nlm\nLM\nĽM\nlne\nľnúť\nloajalita\nlob\nLOB\nlobárny\nlobbizmus\nlobby\nLobe\nlobektómia\nlobélia\nlobelín\nlobelka\nlobing\nlobista\nlobistický\nlobizmus\nloboda\nlobotómia\nLobov\nlobované\nlobovaní\nlobovania\nlobovaniam\nlobovanie\nlobovaním\nlobovaniu\nlobovať\nloby\nloco\nlocus\nločkať\nločkavý\nločprda\nločprdina\nlod\nloď\nlodenica\nlodenicový\nlodenička\nlodiar\nlodiarenský\nlodiarní\nlodiarsky\nlodiarstvach\nlodiarstvam\nlodiarstvo\nlodička\nlodičkový\nLodín\nlodivod\nlodivodi\nlodivodskom\nloďka\nloďkovať\nloďkový\nLodna\nlodnícky\nlodníctvo\nlodník\nLodno\nlodný\nloďový\nloďstvo\nLodžan\nLodž\nlodžia\nlodžský\nlogaritmicky\nlogaritmický\nlogaritmovanie\nlogaritmovať\nlogaritmus\nlogať\nlogatóm\nlog\nloggia\nloggiová\nlogicizmus\nlogickosť\nlogicky\nlogický\nlogička\nlogika\nlogik\nlogisti\nlogistický\nlogistika\nlogistov\nlognutie\nlognúť\nlogofóbia\nlogogram\nlogo\nlogoneuróza\nlogopat\nlogopatia\nlogopéd\nlogopédia\nlogopedický\nlogopedička\nlogoplégia\nlogorea\nlogos\nlogovacej\nLogovacia\nlôchať\nlochia\nlochneska\nLoire\nLoiry\nlojalita\nlojálnosť\nlojálny\nloj\nlojovitý\nlojový\nLojza\nLojzík\nlok\nLok\nLoka\nlokácia\nlokácie\nlokácii\nlokácií\nlokačná\nlokačné\nlokačnej\nlokaj\nLokajovej\nlokajsky\nlokajský\nlokajstvo\nlokál\nlokáli\nlokalita\nlokalitný\nlokalitný\nlokalizácia\nlokalizačne\nlokalizačný\nlokalizačný\nlokalizovanie\nLokalizovaním\nlokalizovaný\nlokalizovaný\nlokalizovať\nlokálka\nlokálmi\nlokálnosť\nlokálny\nlokálový\nlokálpatriot\nlokálpatriotický\nlokálpatriotizmus\nlokálpatriotka\nlokatív\nlokátor\nLokátor\nlokátora\nlokátorov\nLokca\nLokce\nlokňa\nlokní\nloknička\nlokomócia\nlokomotív\nlokomotívach\nlokomotívam\nlokomotíva\nLokomotívka\nlokomotívkach\nLokomotívke\nLokomotívkou\nLokomotívku\nLokomotívky\nlokomotívny\nlokša\nlokší\nLoku\nlokus\nLola\nlologať\nlom\nlombard\nLombarďan\nLombarďanka\nLombardia\nLombardie\nLombardii\nlombardný\nlombardom\nlombardový\nLombardsko\nLombardsky\nlombardský\nlombardu\nlomcovať\nlomene\nlomenica\nlomeno\nlomený\nlomidrevo\nlomikameň\nlomiť\nlomka\nlomne\nLomnica\nLomnice\nLomnici\nLomnický\nLomnicou\nLomnicu\nLomnička\nLomničke\nLomničky\nlomný\nlomový\nlomoz\nlomozenie\nlomoziaci\nlomoziť\nlomozný\nlomský\nlôn\nLonce\nLondýn\nLondýnčan\nlondýnsky\nlondýnsky\nlongitudinálny\nLongobard\nlono\nlonový\nlonského\nLontov\nlonž\nlooping\nloopingov\nlopárik\nlopár\nlopármi\nLopašov\nLopašova\nLopašove\nLopašovský\nlopata\nlopatka\nlopatkovitý\nlopatkový\nlopatovitý\nlopatový\nLopej\nLopeji\nlopnúť\nlopota\nlopotiť\nlopotne\nlopotný\nlôpt\nlopta\nloptička\nloptoš\nloptovať\nloptový\nlopúcha\nlopúch\nlopúchový\nlopúší\nlopúšia\nlopúšiach\nlopúšiam\nlopúšiami\nlopúšie\nlopúším\nlopúšina\nlopušina\nlopúšiu\nLopušná\nLopušné\nLopušnej\nLopušnou\nlord\nlordoskolióza\nlordove\nlordóza\nlordský\nlordstvo\nLore\nloreta\nlori\nLorinčík\nLorinčíku\nlorňon\nlorovina\nlosangeleského\nlosangeleskej\nLosangeleskí\nlós\nlosica\nlosíča\nlosí\nlos\nlososí\nlosos\nlososovité\nlososovitých\nlososovo\nlososovoružový\nlososový\nlosovania\nlosovaniach\nlosovanie\nlosovaním\nlosovaniu\nlosovaný\nlosovať\nLošonec\nLošonský\nLota\nlotá\nlotami\nlote\nlotéria\nlotériový\nloti\nlotion\nLoto\nLotofágovia\nlotom\nlotora\nlotori\nlotor\nlotoroch\nlotorom\nlotorov\nlotorovi\nlotos\nlotosový\nLotrinčan\nLotrinsko\nlotrinský\nlotrísk\nlotriskoch\nlotrisko\nlotriskov\nlotriskovi\nlotriskovia\nlotrovi\nlotrovina\nlotrovsky\nlotrovský\nlotrovstvo\nlotu\nLotus\nLoty\nlotyš\nLotyš\nLotyška\nLotyšku\nLotyšsko\nLotyšsky\nlotyšský\nlotyštín\nlotyštinách\nlotyštinám\nlotyštinami\nlotyština\nLouis\nlouisdor\nLoun\nLounoch\nlounského\nlounskej\nlounskom\nlounskú\nlounským\nLounský\nLouny\nlov\nLovča\nLovče\nlovčianskom\nLovčíc\nLovčica\nLovčice\nLovčici\nLovčiciach\nlovec\nlovecky\nlovecký\nlovené\nlovenia\nlovenie\nlovením\nloviaca\nLovinobaňa\nLovinobane\nLovinobani\nLovinobaňou\nlovinobanský\nLovinobaňu\nlovísk\nlovisko\nlovíšť\nloviť\nlovkyňa\nlovne\nlovný\nloxodróma\nLoza\nlozenie\nloziť\nLozorna\nLozorne\nLozorno\nLozornom\nLozu\nlóžach\nlóžam\nlóža\nlož\nlóží\nLožín\nložísk\nložisko\nložiskový\nlož\nlôžkach\nlôžkam\nlôžkodeň\nlôžko\nlôžkovina\nlôžkový\nložný\nlôžok\nlóžový\nLP\nľpenie\nľpením\nľpeniu\nľpieť\nLQ\nLr\nĺrska\nLS\nĽS\nLSD\nľsťami\nľsti\nľstí\nľstiach\nľstiam\nľstivo\nľstivosť\nlstivý\nľstivý\nľsťou\nLT\nLtd\nLu\nLuanda\nLuande\nLuandy\nLuba\nĽuba\nĽubá\nĽubám\nľúbať\nlub\nĽube\nĽubeľa\nĽubeli\nľúbení\nlubenícka\nlubenícke\nlubeníckeho\nlubeníckej\nlubenícki\nlubeníckom\nlubenícku\nlubenícky\nlubeníckych\nlubeníckymi\nLubeník\nLubeníka\nLubeníku\nľúbezne\nľúbeznosť\nľúbezný\nľúbiaci\nĽubica\nĽubické\nĽubietová\nĽubietovej\nĽubietovou\nľubietovskej\nľubietovských\nĽubietovú\nĽubin\nĽubiša\nĽubiši\nľúbiť\nĽúbivosť\nLubkov\nĽubľana\nĽubľančan\nľubľanský\nLublin\nLubline\nlublinskej\nlublinskú\nLublinský\nLublinu\nľúbo\nĽubochňa\nĽubochni\nĽubochňou\nĽubomírach\nĽubomíram\nĽubomíra\nĽubomír\nĽubora\nĽuborami\nĽubor\nĽuboreč\nĽuboreči\nĽubormi\nĽuboroch\nĽuborom\nĽuborov\nĽuborovi\nĽuborovia\nĽuboslava\nĽuboslav\nľúbosť\nľúbostne\nľúbostný\nĽuboš\nľubotickej\nĽubotín\nĽubotíne\nĽubou\nĽubovec\nĽubovňa\nĽubovne\nĽubovni\nľubovník\nĽubovňou\nĽubovňu\nlubovo\nľubovôľach\nľubovôľam\nľubovôľa\nľubovôlí\nľubovolne\nľubovoľne\nľubovoľnosť\nľubovolný\nľubovoľný\nlubový\nľubozvučne\nľubozvučnosť\nľubozvučný\nľubozvuk\nlubrikácia\nlubrikant\nĽubu\nĽuby\nľúby\nLuca\nLuce\nlucerien\nlucerka\nlucerku\nlucerna\nlucernový\nLucián\nLuciána\nLuciánom\nLucia\nlucidita\nlucidný\nlucifera\nlucifer\nLucifer\nluciferi\nlucifermi\nluciferoch\nluciferom\nluciferov\nluciferova\nluciferove\nluciferovej\nluciferovho\nluciferovi\nluciferovmu\nluciferovo\nluciferovu\nluciferovým\nLuciinom\nLucka\nLuckou\nLucku\nLucky\nLucu\nLúčanmi\nlúčanská\nlúčanskej\nlúčanskom\nLučatín\nLučatína\nLučatíne\nLučatínom\nlúčavka\nLučenca\nLučenci\nLučencom\nLučencu\nLučenec\nlúčenie\nlučenský\nlúčik\nlúčinatý\nlúčina\nlúčinka\nlúčistý\nlúčiť\nLučivná\nLučivnej\nlúč\nlúčka\nlúčnatý\nLuční\nlúčnic\nlúčnica\nLúčnica\nlúčničiar\nlúčničiarka\nlúčničiarsky\nlúčny\nlúčovite\nlúčovito\nlúčovitý\nlúčový\nlúď\nĽuda\nľudácky\nľudáctvach\nľudáctvam\nľudáctvo\nľudáčka\nľudák\nludanickej\nľud\nludi\nlúdi\nlúdia\nľudia\nlúdiť\nľudkami\nľudkoch\nľudkom\nľudkov\nľudkovia\nĽudma\nĽudmila\nľudnato\nľudnatosť\nľudnatý\nľudojed\nľudojedstvo\nLudolfovo\nĽudomila\nľudomil\nĽudomil\nľudomilka\nľudomilne\nľudomilnosť\nľudomilný\nľudomilský\nľudomilstvo\nĽudomír\nĽudomíra\nĽudomírom\nĽudomírovi\nľudoop\nľudoopica\nľudoopí\nľudoop\nľudoprázdny\nľudovec\nĽudovít\nľudovky\nľudovlád\nľudovládach\nľudovládam\nľudovláda\nľudovo\nľudovodemokratický\nľudovosť\nľudovoumelecký\nľudovýchov\nľudovýchovách\nľudovýchovám\nľudovýchovami\nľudovýchova\nľudovýchovný\nľudový\nľudožrút\nľudožrútsky\nľudožrútstvach\nľudožrútstvam\nľudožrútstvo\nLudrová\nLudrovej\nludrovským\nLudrovský\nľudskosť\nľudsky\nľudský\nľudstvo\nludus\nLudvík\nludwigit\nLudwigshafen\nLudwigshafene\nlues\nluetik\nLUF\nlufa\nluft\nľuft\nluftmi\nľuftmi\nlugubre\nLuha\nluhania\nluhanina\nluhár\nluhárka\nluhársky\nluhárstiev\nluhárstva\nluhárstvach\nluhárstvam\nluhárstvami\nluhárstve\nluhárstvo\nluhárstvom\nluhárstvu\nluhať\nluh\nlúh\nlúhovacím\nlúhovanie\nlúhovať\nlúhovitosť\nlúhovitý\nlúhovni\nluhovo\nluhový\nlúhový\nLuhyňa\nLuhyni\nlúchať\nLújz\nLujza\nlúk\nLukách\nlúkach\nLukám\nlúkam\nlúkarský\nlúkársky\nlúkarstvo\nlúkárstvo\nLukáš\nLukášova\nLukášových\nLukášovým\nLukavica\nLukavice\nLukavici\nLukaviciach\nlúka\nluk\nLuke\nLukin\nLukinom\nlukostreľba\nlukostrelec\nlukostrelecký\nlukostrelkyňa\nLukove\nLukovištia\nlukovo\nLukovský\nlukový\nlukratívnejší\nlukratívnosť\nlukratívny\nlukulský\nľuľkať\nľuľkový\nľuľok\nlulotať\nlumachela\nlumbago\nlumbalgia\nlumbálny\nlumbotómia\nlumen\nlúmen\nlumík\nluminál\nluminiscencia\nluminiscenčný\nluminiscenčný\nluministenčný\nluminizmus\nluminofor\nluminoformi\nluminoforu\nluminozita\nlumpácky\nlumpáctvach\nlumpáctvam\nlumpáctvo\nlumpáčicko\nlumpáčiskoch\nlumpáčisko\nlumpáčiskov\nlumpáčiskovi\nlumpáčiskovia\nlumpáčiť\nlumpačka\nlumpák\nlumpami\nlump\nlumpenproletariát\nlumpenproletariátu\nlumpísk\nlumpiská\nlumpiskách\nlumpiskám\nlumpisko\nlumpisku\nlumpovačka\nlumpovať\nlun\nlunácia\nlunapark\nlunárny\nlunatik\nlunatizmus\nluna\nluneta\nlunetový\nlunch\nluncheon\nluncheonmeat\nluniak\nluniaky\nLunik\nLunika\nLuniku\nlunisolárny\nlunkre\nlunula\nlúpací\nlúpacia\nlúpacie\nlupáčik\nlúpačka\nlúpačkový\nlúpaj\nlúpajme\nlúpajte\nlúpajúc\nlupáky\nlúpanie\nlúpaný\nlúpareň\nlúpáreň\nlúparňach\nlúparňam\nlúpať\nlupa\nlup\nĽupča\nĽupče\nĽupči\nĽupčianska\nľupčianske\nĽupčianskeho\nľupčianskej\nĽupčianskom\nĽupčiansky\nľupčianskych\nľupčianskym\nĽupčou\nĽupču\nlúpení\nlúpenie\nlupeň\nlupeňovito\nlupeňovitý\nlupeňový\nlúpeže\nlúpežiť\nlúpeživý\nlúpež\nlúpežne\nľúpežníci\nlúpežnícky\nlúpežníctvach\nlúpežníctvam\nlúpežníctvo\nlúpežník\nlúpežný\nlupi\nlupič\nlupička\nLupičovu\nlupičský\nlupičstvo\nlupienka\nlupienkový\nlupienok\nlupina\nlupinín\nLupino\nlúpiť\nlupkať\nLupkov\nlupkové\nlupkových\nlupkovými\nlupku\nlupky\nlupnúť\nlupóm\nlupot\nlupulín\nlupus\nLupus\nlura\nlurdský\nlurexami\nlurex\nlurexový\nlusacký\nLusaka\nLusakou\nLusaky\nlusitan\nluskáčik\nluskáč\nlúskaní\nlúskanie\nlúskať\nlusk\nlusknutie\nlusknutím\nlusknúť\nluster\nlustr\nlustrácia\nlustračný\nlustrovania\nlustrovaním\nlustrovaný\nlustrovať\nlustrový\nlustrum\nlúštení\nlúštenie\nluštenín\nluštenina\nlúštievať\nlúštiteľ\nlúštiteľka\nlúštiteľná\nlúštiteľné\nlúštiteľský\nlúštiť\nlutécium\nluteín\nluteinizácia\nluteóm\nluter\nluterán\nluteranizmus\nluteránka\nLuteránovej\nluteránsky\nluteránstvach\nluteránstvam\nluteránstvo\nlutien\nLutiše\nľútiť\nlutna\nľútostime\nľútostite\nľútostiť\nľútostivo\nľútostivý\nľútosť\nľutovaní\nĽutovanie\nľutovať\nlutria\nľutujúci\nľúty\nlutza\nlutz\nluxácia\nluxami\nlux\nluxemb\nLuxembourg\nLuxemburčan\nLuxemburg\nLuxemburge\nLuxemburgom\nLuxemburgu\nLuxembursko\nluxembursky\nluxemburský\nluxfer\nluxmeter\nLuxor\nLuxore\nLuxoru\nluxovať\nluxuriózny\nluxus\nluxusne\nluxusno\nluxusný\nluxusný\nlúz\nluza\nLuzern\nLuzerne\nLuzernu\nluž\nLužanoch\nLužany\nluže\nlužem\nlužeme\nlužeš\nlužete\nLužian\nLužiankach\nLužianky\nLužianok\nLužianská\nLužica\nLužice\nLužici\nLužiciach\nlužickosrbský\nlužický\nLužicou\nLužicu\nlužme\nLúžna\nlužný\nlužte\nlužú\nlužúc\nĽvov\nĽvova\nĽvove\nľvovský\nĽvovu\nlx\nlyceálny\nlýcejný\nlýceum\nlyddit\nLýdia\nLydka\nlýk\nlykantropia\nlyko\nlykovcu\nlykovecL\nlykový\nlykožrút\nlykožrúty\nlymeswold\nlýmf\nlymfadenitída\nlymfangiektázia\nlymfangión\nlymfangoitída\nlymfatický\nlymfa\nlymfoblastóm\nlymfocyt\nlymfocytopénia\nlymfocytóza\nlymfogranulóm\nlymfológia\nlymfóm\nlymfonodus\nlymfosarkóm\nlymfostáza\nlynč\nlynčovaní\nlynčovanie\nlynčovať\nlyofilizácia\nLyon\nLyone\nLyonom\nlyonského\nlyonskej\nlyonskému\nlyonskom\nlyonskú\nlyonským\nLyonský\nLyonu\nlýr\nlýrach\nlýram\nlýra\nlyrickoepický\nlyrickosť\nlyricky\nlyrický\nlyrika\nlyrik\nlyrizmus\nlyrizované\nLysa\nLysák\nLysáka\nLysákom\nLysákovej\nlysatý\nlysejšej\nlysejší\nlysejšia\nlysejšie\nlysejšieho\nlysejšiemu\nlysejších\nlysejším\nlysejšími\nlysejšiu\nlysejšom\nlysejšou\nlysel\nlysenie\nLysica\nlysie\nLysin\nlysina\nlysinka\nlysis\nlyska\nlyso\nlyssa\nlysý\nlýtkach\nlýtkam\nlýtko\nlýtkový\nlýtok\nlyzimeter\nlyzín\nLyzín\nlyzínu\nlyzoform\nlyzogén\nlyzogénia\nlyzogénny\nlyzol\nlyzozóm\nlyzozým\nlyžach\nlyža\nlyží\nlyžiarak\nlyžiarák\nlyžiar\nlyžiareň\nlyžiarka\nlyžiarňach\nlyžiarňam\nLyžiarská\nlyžiarsky\nlyžiarstvach\nlyžiarstvam\nlyžiarstvo\nlyžica\nlyžicový\nlyžička\nlyžovačka\nlyžovanie\nlyžovať\nlžami\nlži\nlží\nlžiach\nlžiam\nlžidemokracia\nlžihumanizmus\nlžimorálka\nlživo\nlživosť\nlživý\nlžou\nm\nM\nma\nmA\nMAAE\nmaar\nMaar\nmaastricht\nmaastrichtský\nMac\nmác\nmacania\nmacať\nmacať\nMacdonaldových\nmáce\nMacedónčan\nMacedónčanka\nmacedónčin\nmacedónčinách\nmacedónčinám\nmacedónčinami\nmacedónčina\nMacedónec\nMacedónia\nMacedónie\nMacedónii\nMacedóniu\nMacedónka\nMacedónsko\nmacedónsky\nmacedónsky\nmacellum\nmácem\nmáceme\nmacerácia\nmaceračný\nmacerát\nmacerátov\nmaceráty\nmacerované\nmacerovanie\nmacerovať\nmacerujú\nmaces\nmáceš\nmácete\nmacchia\nmaciek\nmacík\nmacíky\nmacintosh\nmackách\nmackanie\nmackať\nmackintosh\nmacko\nMackova\nMacková\nMackove\nMackovej\nMackovho\nMackovmu\nMackovou\nMackovu\nMackovú\nMackových\nMackovým\nmacku\nmacky\nmácme\nmacočský\nmacocha\nmacoich\nmaco\nmacošsky\nmacošský\nmacošský\nmacramé\nmácte\nMacu\nmácu\nMácu\nmácuc\nmacy\nmača\nmačací\nmáčací\nmačacina\nmáčanie\nmáčaním\nmáčaný\nmáčať\nmačeta\nmačiareň\nmačiarne\nmačiat\nmačiatko\nmačiatok\nmačička\nmáčik\nmačina\nmačinový\nmáčka\nmačkalo\nmáčkami\nmäčkať\nmačka\nMačkin\nMačkinom\nmáčkoch\nmáčkom\nmáčkov\nmačkovito\nmačkovitý\nmáčku\nmáčky\nmačne\nmačný\nmáčny\nmačo\nmaď\nMadagaskar\nmadagaskarský\nmadam\nmadame\nMaďar\nmaďarči\nmaďarčín\nmaďarčinách\nmaďarčinám\nmaďarčinami\nmaďarčinár\nmaďarčinárka\nmaďarčina\nmaďarčiť\nmaďarizácia\nmaďarizačný\nmaďarizovať\nMaďarka\nMaďarku\nMaďarky\nmaďarofil\nmaďarofili\nmaďarofilský\nmaďarofilstvo\nmaďarón\nmaďarónka\nmaďarónsky\nMaďarovej\nmaďarsko\nMaďarsko\nmaďarskosť\nmaďarsky\nmaďarský\nmaďarstva\nmaďarstvom\nmadedónčina\nmadeir\nmadeirách\nmadeirám\nmadeirami\nmadeira\nmadeirový\nmadeirský\nmademoiselle\nmadle\nmädliť\nmadlo\nmadník\nmadon\nmadona\nMadonina\nmadras\nMadrás\nMadráse\nMadrasu\nMadriďan\nMadriďana\nMadrid\nMadridčan\nmadridský\nmadrigal\nmadrigalmi\nmadrigalový\nmadunického\nmadunickú\nMadunický\nmadžgať\nmaestos\nmaestoso\nmaestro\nmafián\nmafiánka\nmafiánsky\nmafiánstvach\nmafiánstvam\nmafianstvo\nmafiánstvo\nmafia\nmafista\nmafistický\nmafistka\nmágať\nmagazín\nmagazínový\nmág\nMagda\nMagdalén\nMagdalénach\nMagdalénam\nMagdaléna\nmagdalénin\nMagde\nMagdeburčan\nMagdeburg\nmagdeburský\nMagdou\nMagdu\nMagdy\nmaggi\nMaghreb\nmágia\nmagicky\nmagický\nmagiem\nmagika\nmagiky\nmagister\nmagisterka\nmagisterský\nmagistier\nmagistrál\nmagistrálach\nmagistrálam\nmagistrála\nmagistrálny\nmagistrát\nmagistrátmi\nmagistrátny\nmagistra\nmagľajz\nmagmách\nmagmám\nmagmami\nmagmatický\nmagmatit\nmagma\nmagmový\nMagna\nmagnáš\nmagnát\nmagnátove\nmagnátovými\nmagnátsky\nmagnátstvach\nmagnátstvam\nmagnátstvo\nmagneťák\nmagnet\nmagnetickosť\nmagneticky\nmagnetický\nmagnetický\nmagnetikum\nmagnetit\nmagnetitmi\nmagnetitový\nmagnetizácia\nmagnetizačne\nmagnetizačný\nmagnetizáreň\nmagnetizmus\nmagnetizovanie\nmagnetizovať\nmagnetizujúca\nmagnetizujúci\nmagnetka\nmagneto\nmagnetobiológia\nmagnetofón\nmagnetofónový\nmagnetograf\nmagnetogram\nmagnetochémia\nmagnetometer\nmagnetometria\nmagnetón\nmagnetooptika\nmagnetopáskový\nmagnetosféra\nmagnetoskop\nmagnetostatika\nmagnetostrikcia\nmagnetoterapia\nmagnetovec\nmagnetovo\nmagnetový\nmagnézie\nmagnéziou\nmagnéziový\nmagnezitár\nmagnezitáreň\nmagnezitári\nmagnezitármi\nmagnezitárňach\nmagnezitárňam\nmagnezitárom\nmagnezitárov\nmagnezit\nmagnezitka\nmagnezitmi\nmagnezitovo\nmagnezitový\nmagnézium\nmagnificat\nmagnificencia\nmagnifico\nmagnitogorské\nMagnitogorský\nmagnitúda\nmagnólia\nMagnus\nmago\nmagora\nmagor\nmagorina\nmagormi\nmagoroch\nmagorom\nmagorov\nmagorovi\nmagot\nmágova\nMagura\nMagure\nMagurka\nMagurke\nMagurou\nMagurská\nmagurského\nMagurskej\nMaguru\nMagury\nmahagón\nmahagónový\nmaharadža\nmahátma\nMahátma\nmahátmu\nmahaut\nMahdí\nmahónia\nmacha\nMacha\nmácha\nmáchal\nmáchala\nmáchanie\nmáchať\nMáchavá\nmach\nmachca\nmachcami\nmachci\nmachcom\nmachcorh\nmachcov\nmachcovi\nmache\nmachengo\nmacher\nmachiavellizmus\nMachin\nmachina\nmachinácia\nmachinačný\nMachine\nMachinu\nmachle\nmachliar\nmachliť\nmachľoch\nmachľom\nmachľov\nmachľovať\nmachnatieť\nmachnatý\nmacho\nmachorka\nmachorkový\nMachovca\nMachovce\nMachovcom\nMachovcov\nMachove\nMachovec\nmachovitý\nmachovo\nmachový\nmachroval\nmachrovala\nmachrovali\nmachrovalo\nmachrovať\nmachruj\nmachruje\nmachrujem\nmachrujeme\nmachruješ\nmachrujete\nmachrujme\nmachrujte\nmachrujú\nmachrujúc\nmachuľa\nMachulince\nMachulinciach\nMachuliniec\nmachuliť\nmachuľka\nmachurinka\nmaieutika\nmail\nmaili\nmailmi\nmailovací\nmailoval\nmailovala\nmailovali\nmailovalo\nmailovať\nmailový\nmailuj\nmailuje\nmailujem\nmailujeme\nmailuješ\nmailujete\nmailujme\nmailujte\nmailujú\nmailujúc\nmainstream\nmaizen\nmaizenách\nmaizenám\nmaizenami\nmaizena\nmaizenový\nmájá\nmajáčik\nmaják\nmajákový\nmajáles\nmajálesový\nMaja\nMajcichov\nMajcichova\nMajcichove\nMajcichovské\nmajcichovského\nmajcichovskej\nmajcichovskí\nmajcichovskom\nMajda\nMajdu\nmajera\nmajer\nmajerčan\nMajerčan\nmajerčanka\nmajerček\nmajerčík\nmajeri\nmajerík\nmajerový\nmajerský\nmajestát\nmajestátmi\nmajestátne\nmajestátnosť\nmajestátny\nmajetkoprávne\nmajetkoprávneho\nmajetkoprávnej\nmajetkoprávnemu\nmajetkoprávnom\nmajetkoprávnu\nmajetkoprávny\nmajetkoprávnych\nmajetkoprávnym\nmajetkoprávnymi\nmajetkove\nmajetkovo\nmajetkovoprávny\nmajetkový\nmajetne\nmajetnica\nmajetnícky\nmajetníctvach\nmajetníctvam\nmajetníctvo\nmajetníčka\nmajetník\nmajetnosť\nmajetný\nmajetoček\nmajetočka\nmajetočkami\nmajetočkoch\nmajetočkom\nmajetočkov\nmajetočku\nmajetočky\nmajetok\nmájik\nmajiteľ\nmajiteľka\nMajiteľove\nmajiteľovo\nmajiteľovou\nmajiteľových\nmajiteľsky\nmajiteľský\nmajiteľstva\nmajiteľstvo\nmáj\nMajka\nmájka\nMajkou\nMájkou\nMajku\nmájky\nmajme\nmaj\nMajnerovej\nmajolika\nmajolikový\nmajonéz\nmajonézach\nmajonézam\nmajonéza\nmajonézový\nmajorán\nmajoránka\nmajoránkami\nmajoránkoch\nmajoránkom\nmajoránkov\nmajoránkový\nmajoránku\nmajoránky\nmajoránok\nmajoránový\nmajorát\nmajorátmi\nmajorátny\nmajor\nmajordom\nmajordóm\nmajordómi\nmajordomus\nmajordómus\nmajorita\nmajoritne\nmajoritný\nmajorizácia\nmajorizačný\nmajorizoval\nmajorizovali\nmajorizovaný\nmajorizovať\nmajorizujú\nmajorka\nmajormi\nMajorova\nMajorovej\nMajorovu\nmajorský\nmájovka\nmájový\nmajster\nmajsterka\nmajsterko\nmajsterštuk\nmajstre\nmajstrík\nmajstrová\nmajstrovať\nmajstrové\nmajstrovsky\nmajstrovský\nmajstrovstvo\nmajstrovú\nmajstrov\nmajte\nmajúci\nmajú\nmajuskula\nmajuskulný\nmajuskulový\nmakadam\nmakadamový\nmakak\nmakakmi\nmakáma\nmakania\nmakanie\nmakao\nMakao\nMakarenko\nmakarón\nmakarónčin\nmakarónčinách\nmakarónčinám\nmakarónčinami\nmakarónčina\nmakarónový\nmakarónsky\nmakateľne\nmakať\nmakavo\nmak\nmäkčené\nmäkčeného\nmäkčenej\nmäkčenie\nmäkčeň\nmäkči\nmäkčiaci\nmäkčidlo\nmäkčime\nmäkčite\nmäkčiť\nmake\nmaketa\nmaketovo\nmaketový\nmakier\nmakista\nmakiwara\nmäkka\nmäkko\nmäkkosť\nmäkkýša\nmäkkýše\nmäkkýš\nmäkkýšmi\nmäkkýšoch\nmäkkýšom\nmäkkýšov\nmäkkýšovi\nmäkký\nmaklér\nmaklérovej\nmaklérsky\nmaklérstva\nmaklérstve\nmaklérstvo\nmaklérstvom\nmäknutie\nmäknúť\nmako\nMako\nMakova\nMakove\nmakovica\nmakovicový\nmakovičie\nmakovička\nmakovísk\nmakovisko\nmakovník\nmakovnísk\nmakovnisko\nmakovo\nmakovského\nMakovský\nmakový\nmakramé\nmakrel\nmakrela\nmakriel\nmakroanalýz\nmakroanalýza\nmakroanalýze\nmakroanalýzy\nmakroatlas\nmakrobiotický\nmakrobiotika\nmakrocefália\nmakrocefalita\nmakroceffalita\nmakrocia\nmakrocyt\nmakrodefinícia\nmakrodóma\nmakrodoncia\nmakroedafón\nmakroekonóm\nmakroekonómia\nmakroekonomicky\nmakroekonomický\nmakroelement\nmakrofagocytóza\nmakrofauna\nmakroflóra\nmakrofyzika\nmakrogenerátor\nmakrognatia\nmakrografia\nmakrocheiria\nmakroinštrukcia\nmakroklím\nmakroklímach\nmakroklímam\nmakroklimatológia\nmakroklíma\nmakrokozmos\nmakrokryštalický\nmakro\nmakromélia\nmakromolekulárny\nmakromolekula\nmakromolekulový\nmakroorganizmus\nmakropaleontológia\nmakroparazit\nmakroplanktón\nmakropsia\nmakroseizmika\nmakroskopicky\nmakroskopický\nmakrosvet\nmakroštruktúr\nmakroštruktúra\nmakroštruktúrou\nmakroštruktúru\nmakroukazovateľmi\nmäkšej\nmäkší\nmäkšia\nmäkšie\nmäkšieho\nmäkšiemu\nmäkších\nmäkším\nmäkšími\nmäkšiu\nmäkšom\nmäkšou\nmäkučko\nmäkučký\nmakula\nmakulár\nmakulárnou\nmakulatúr\nmakulatúrach\nmakulatúram\nmakulatúra\nmäkulinko\nmäkulinký\nmäkunko\nmäkunký\nmäkušiť\nmäkuško\nmäkušký\nmál\nmála\nmalabsorpcia\nmalácia\nMalaciek\nMalackách\nMalackám\nMalackami\nMalacky\nmalacký\nmaladaptácia\nmalág\nmalagách\nmalagám\nmalagami\nmalaga\nmalagelo\nmalagový\nmalagský\nmálach\nmalachit\nmalachitmi\nmalachitový\nMalachov\nMalachova\nMalachove\nMalachovský\nmalaj\nmalajál\nMalajec\nMalajsko\nmalajsky\nmalajský\nmalajský\nMalajzia\nMalajzijčan\nmalajzijský\nmalajzský\nmalakofyt\nmalakológia\nmalakón\nmálam\nmálami\nmalapropizmus\nmalária\nmalarický\nmalarik\nmaláriológ\nmaláriológia\nmaláriový\nMálaš\nMalatínach\nMalatíny\nmalátnieť\nmalátnosť\nmalátny\nMalawi\nMalawijčan\nmalawijský\nmaľba\nmaľbička\nmaľbový\nMalcov\nmalčickom\nMaldív\nMaldivách\nMaldivám\nMaldivami\nMaldivčan\nMaldivčanka\nmaldivský\nMaldivy\nmale\nMale\nmále\nmalebne\nmalebnejšíF\nmalebnosť\nmalebný\nmaledikcia\nMaledivách\nMaledivy\nmaleficium\nmálený\nmaleolárny\nmalér\nmaléri\nmalérik\nmalérmi\nmaléroch\nmalérom\nmalérov\nmaléru\nmaléry\nMaléry\nmaleus\nmalevolencia\nmalformácia\nmalgaš\nMalgašská\nmaliar\nmaliarka\nmaliarní\nmaliarsky\nmaliarsky\nmaliarstvach\nmaliarstvam\nmaliarstvo\nmaliciózny\nmalíček\nmáličičko\nmaličičký\nmalička\nmalíčka\nmalíčkami\nmáličko\nmalíčkoch\nmalíčkom\nmaličkosť\nmalíčkov\nmalíčku\nmalíčky\nmaličký\nmalignita\nmalígnosť\nmalígny\nmalicherne\nmalicherniť\nmalichernosť\nmalicherný\nMalijčan\nMalijčanka\nMalijec\nMalijka\nMalijkina\nmalijský\nmalik\nMalík\nMalíka\nMalíkom\nmálilinko\nmalilinký\nmalináč\nmalina\nMálinca\nMálinci\nMálincom\nMálincu\nmalinč\nmalinčiak\nmalinčie\nMálinec\nMalinger\nmaliniar\nmaliniarka\nmaliník\nmalinísk\nmalinisko\nmalinka\nmalinko\nmálinko\nmalinký\nMálino\nmalinôčiek\nmalinôčkách\nmalinôčkám\nmalinôčka\nMálinom\nMalinove\nMalinovec\nmalinovica\nmalinovka\nMalinovo\nmalinovočervený\nMalinovský\nmalinový\nmálinská\nmálinskej\nmáliť\nMalka\nMálka\nmalkaí\nmalkao\nMalkin\nMalkinom\nmallardit\nMalley\nmalm\nMalm\nmalnutrícia\nmálo\nmaloázij\nMaloázijčan\nMaloázijec\nmaloázijský\nmaloburžoázia\nmaloburžoázny\nmáločím\nmáločo\nmáločoho\nmáločom\nmáločomu\nMáločomu\nmalodušne\nmalodušnosť\nmalodušný\nMalohont\nMalohonte\nmalohontskej\nmalohontskú\nMalohontských\nMalohontu\nmalokalibrovka\nmalokalibrový\nmalokarpatský\nmálokde\nmálokedy\nmálokoho\nMalokolesové\nmalokolesového\nmálokom\nmálokomu\nmálokrvne\nmálokrvnosť\nmálokrvný\nmálokto\nmáloktorý\nmálokým\nmaloletosť\nmaloletý\nmalolistý\nmálom\nmalomesto\nmalomestsky\nmalomestský\nmalomešťan\nmalomeštiacky\nmalomeštiactvach\nmalomeštiactvam\nmalomeštiactvo\nmalomeštiačka\nmalomeštiak\nmalomeštianskym\nmalomocenstvo\nmalomocný\nmalomocný\nmalomužlianske\nmalomužlianskom\nmalomyseľne\nmalomyseľnosť\nmalomyseľný\nmaloobchod\nmaloobchodne\nmaloobchodnícky\nmaloobchodník\nmaloobchodno\nmaloobchodný\nmaloodberateľ\nmaloodberateľka\nmaloodberateľský\nmaloplošné\nmaloplošní\nmaloplošných\nmaloplošnými\nmálopočetný\nmalopodnikovej\nmalopodnikovou\nmalopolianskych\nMalopoľské\nMalopoľskom\nmalopoľským\nmalopredaj\nmalopredaja\nmalopredajca\nmalopredaji\nmalopredajne\nmalopredajni\nmalopredajní\nmalopredajniach\nmalopredajom\nmalorážka\nmalorážkach\nmalorážkou\nmalorážku\nmalorážky\nmalorážok\nMalorčan\nMalorčanka\nmálorečný\nMalorka\nmaloroľnícky\nmaloroľníctvach\nmaloroľníctvam\nmaloroľníctvo\nmaloroľníčka\nmaloroľník\nmalorský\nmalosériový\nmalosol\nmalospotrebiteľ\nmalospotrebiteľka\nmalospotrebiteľský\nmalosť\nmalostranský\nmálotriedka\nmálotriedny\nmaľovačka\nmaľovanie\nmaľovanka\nmaľovaný\nmaľovať\nmaľovávať\nmaloverne\nmalovernosť\nmaloverný\nmaľovka\nmálovravne\nmálovravnosť\nmálovravný\nmalovýrob\nmalovýroba\nmalovýrobca\nmalovýrobná\nmalovýrobnej\nmalovýrobných\nmalpa\nmalström\nmált\nmalťan\nMalťan\nmaltárske\nmaltárskeho\nmaltárskou\nmaltárskych\nMalta\nmaltáza\nmalta\nmaltézsky\nmaltovina\nmaltovňa\nmaltovne\nmaltovní\nmaltovnica\nmaltový\nmaltóz\nmaltózach\nmaltózam\nmaltóza\nmaltózový\nMaltsky\nmaltský\nmaltuzián\nmaltuziánec\nmaltuzianizmus\nmaltuziánsky\nmálu\nmalučenký\nmálučičko\nmalučičký\nmálučko\nmalučký\nmaľujúci\nmálulinko\nmalulinký\nmálunko\nmalunký\nmalus\nmalušký\nmaľúvať\nMalužiná\nMalužinskej\nmalva\nMalvaz\nmalvázia\nmalvazinka\nMalvazinkách\nmalverzácia\nmalvica\nmalvička\nMalvín\nMalvínach\nMalvínam\nMalvína\nmalý\nMalženice\nmalženické\nmalženického\nmalženickej\nmalženickým\nmamaliológia\nmama\nmam\nmamba\nmambo\nmamelik\nmameluci\nmamelucký\nmamelukami\nmameluk\nmamelukovi\nmamelukovia\nmamelumok\nmáme\nmámená\nmámenie\nmamenka\nmami\nMamica\nmamičenka\nmamičkár\nmamička\nmamičkin\nmamičkina\nmamičkine\nmamičkinmu\nmamičkovský\nmamila\nmaminka\nmaminkina\nmamin\nmámiť\nmámivý\nmamka\nmamľas\nmamma\nmám\nmamný\nmamograf\nmamografia\nmamografický\nmamon\nmamôn\nmamonách\nmamonám\nmamonami\nmamonár\nmamonárka\nmamonársky\nmamonárstvach\nmamonárstvam\nmamonárstvo\nmamona\nmámor\nmamulienka\nmamuľka\nmamušenka\nmamušinka\nmamuška\nmamut\nmamutí\nmamuťom\nmamuťou\nmamuty\nman\nmán\nmá\nmana\nMaňa\nmanagement\nmanagementmi\nManagua\nManagujčan\nManagujčanka\nmanagujský\nmanat\nmanažér\nmanažérka\nmanažérova\nmanažérove\nmanažérsky\nmanažérstvach\nmanažérstvam\nmanažérstvo\nmanažment\nmanažmentmi\nmanažmentový\nmanažovanie\nmanažovať\nmancando\nmancipácia\nmancovať\nmančaft\nmančaftmi\nmandala\nMandala\nMandaly\nmandanta\nmandant\nmandanti\nmandantka\nmandantmi\nmandantovi\nmandarín\nmandaríni\nmandarínka\nmandarinkové\nmandarínkový\nmandarínovi\nmandarínska\nmandarínskou\nmandarínsky\nmandatár\nmandatára\nmandatári\nmandatármi\nmandatárom\nmandatárovi\nmandát\nmandátmi\nmandátny\nmandátorom\nmandátorovi\nmandátovo\nmandátový\nmandelinka\nmandelinku\nmandelinky\nmandeľ\nmandibula\nmandľa\nmandlí\nmandlička\nmandľoch\nmandľom\nmandľov\nmandľovník\nmandľovníkovej\nmandľovníkových\nmandľový\nmandolín\nmandolínach\nmandolínam\nmandolína\nmandragor\nmandragora\nmandril\nmandrilov\nmandž\nMandžuska\nMandžusko\nMandžusku\nmandžusky\nmandžuský\nMane\nMané\nmanej\nmanekýn\nmanekýnka\nmanéver\nmanévrovací\nmanévrovanie\nmanévrovať\nmanévrový\nmanéžach\nmanéžam\nmanéž\nmanéžový\nmáng\nmangabej\nmangalica\nmanganan\nmangán\nmanganistan\nmanganit\nmanganitmi\nmangánový\nmangdragora\nmangeľ\nmangľovací\nmangľovanie\nmanglovať\nmangľovať\nmangľovňa\nmangľovní\nmangold\nmango\nmangovník\nmangrove\nmangrovmi\nmangrovoch\nmangrovom\nmangrovov\nmangrovy\nmangusta\nManchester\nmanchesterský\nmanchestrov\nmanchestrové\nmanchestrovú\nManchsterčan\nMani\nManí\nMania\nmaniacky\nmaniactvach\nmaniactvam\nmaniactvo\nmaniačkách\nmaniačkám\nmaniačka\nmaniakálny\nmaniak\nmánia\nmanický\nmaniek\nmanien\nmaniéra\nmaniera\nmaniére\nmanierista\nmanieristický\nmanieristka\nmaniérizmus\nmanierizmus\nmanier\nmaniermi\nmanierovosť\nmanierový\nmanifestácia\nmanifestačne\nmanifestačný\nmanifestant\nmanifestantka\nmanifest\nmanifestnej\nmanifestované\nmanifestovať\nmanifestový\nmanifestujúci\nmanicheizmus\nmanichejec\nmanikér\nmanikérka\nmanikúr\nmanikúrach\nmanikúram\nmanikúra\nmanikúrkach\nmanikúrkam\nmanikúrky\nmanikúrovať\nmanikúrový\nManila\nmanilčan\nManilčan\nmanilský\nManín\nManina\nManinách\nManinu\nManiny\nmaniodepresia\nmaniok\nmaniokové\nmanioku\nmanioky\nmanipul\nmanipulácia\nmanipulačne\nmanipulačno\nmanipulačný\nmanipulant\nmanipulantka\nmanipulatívny\nmanipulátor\nmanipulátore\nmanipulátormi\nmanipulátoru\nmanipulátory\nmanipulovania\nmanipulovanie\nmanipulovaním\nmanipulovaniu\nmanipulovaný\nmanipulovateľnosť\nmanipulovateľný\nmanipulovať\nmanipulujúci\nmanit\nManitoba\nManitobe\nmanitol\nmanitou\nmanitu\nmank\nmánk\nMaňka\nmankala\nmankanie\nmankár\nmankárka\nmankať\nmanko\nMaňku\nmanna\nmanne\nmannou\nMannová\nmannu\nmanny\nManom\nmanometer\nmanometrický\nManon\nmanostat\nMaňou\nmanov\nmanova\nmanovej\nmanovi\nmanovia\nmanovo\nmanovom\nmanovou\nmanovu\nmanóza\nmanský\nmanšaftu\nmanšester\nmantika\nmantila\nmantinela\nmantinel\nmantinelizmus\nmantinelmi\nmantinelovo\nmantinelový\nmantisa\nmantón\nmantra\nManu\nmanuál\nmanuáli\nmanuálmi\nmanuálny\nmanuálový\nmanudharma\nManuel\nManuela\nmanufaktúr\nmanufaktúrach\nmanufaktúram\nmanufaktúra\nmanufaktúrny\nmanul\nmanupresúr\nmanupresúrach\nmanupresúram\nmanupresúra\nmanuskript\nmaňuška\nmaňuškový\nmany\nmanzarda\nmanzardka\nmanzardkový\nmanzardový\nmanžel\nmanželka\nmanželkin\nmanželkina\nmanželkine\nmanželkinej\nmanželkinho\nmanželkinom\nmanželkinu\nmanželkiných\nmanželkiným\nmanželova\nmanželove\nmanželovej\nmanželovho\nmanželovmu\nmanželovo\nmanželovom\nmanželovou\nmanželovu\nmanželových\nmanželovým\nmanželsky\nmanželský\nmanželstvo\nmanžeta\nmanžetka\nmanžetový\nmaoizmus\nmaor\nMaor\nMaorské\nMaorsky\nmaovo\nmaový\nmáp\nmapa\nmapka\nmapografia\nmapovacie\nmapovaciu\nmapovanie\nmapovaný\nmapovaný\nmapovať\nmapovo\nmapový\nmapujúci\nmar\nMar\nmár\nMár\nmara\nMara\nmarabu\nMarabut\nmaracas\nmárach\nmaral\nMarám\nmáram\nmárami\nmaran\nMaran\nMaranom\nmaras\nmaraschino\nmarasia\nmaraska\nMaraska\nmaraskín\nmaraskínach\nmaraskínam\nmaraskino\nmaraskíno\nmarast\nmaratón\nmaratónec\nmaratónkyň\nmaratónkyňa\nmaratónsky\nmaratónsky\nmarazmus\nmarcato\nMarcela\nMarcel\nMarcelino\nMARCELKA\nMarcelová\nMarcelovej\nMarcelovú\nmarcia\nmarciálny\nmarcipán\nmarcipánový\nmarcovo\nmarcový\nmare\nMare\nmarec\nMarek\nMarekove\nMarekovej\nMarekovho\nMarel\nMareli\nmaréna\nmarenia\nmarenie\nmarením\nmareniu\nmarený\nmareograf\nmárg\nmargarét\nMargarét\nmargarétach\nMargarétach\nmargarétam\nMargarétam\nmargaréta\nMargaréta\nmargarétka\nmargarín\nmargarínový\nmargarit\nMargarite\nmargecianska\nmargeciansku\nmarginália\nmarginálnosť\nmarginálny\nmargírovať\nMargít\nMargita\nmargo\nMarhaň\nmarhuľa\nmarhuľka\nmarhuľovica\nmarhuľový\nmariaci\nMariana\nMarián\nMariane\nMarianien\nMariannách\nMariannám\nMarianna\nMarianou\nMariánskolázňan\nmariánskolázňanský\nmariánsky\nmariánsky\nMariany\nmariáša\nmariáše\nmariáši\nmariáš\nmariášmi\nmariášoch\nmariášom\nmariášov\nmariášový\nmariášu\nMária\nmaribo\nMaribor\nMaribore\nMariborom\nMariborská\nmariborské\nmariborských\nMariboru\nmarica\nMarie\nMarienka\nMarienkam\nMarienke\nMarienkou\nMarienku\nMarienky\nmarieť\nMarieta\nMarietou\nMariety\nmarievať\nmarihuán\nmarihuana\nMáriin\nMáriinej\nMáriinom\nMáriiných\nmarij\nMarík\nMarika\nMarike\nMarikou\nMaríková\nMaríkovej\nMariku\nMariky\nmarimba\nMarin\nMarín\nMarina\nmarína\nmarinád\nmarinádach\nmarinádam\nmarináda\nMarínach\nMarínam\nMarína\nMarine\nmaringotka\nMarinho\nMarini\nmarinka\nmarinkový\nmarinný\nMarino\nMaríno\nMarinom\nMarínom\nMarinou\nmarinovaná\nmarinované\nmarinovaných\nmarinovať\nMarinu\nMariny\nMário\nmarionet\nmarioneta\nmarionetka\nmarionetový\nmarioniet\nmariška\nmariť\nmaritimných\nmaritímny\nMárius\nmarivo\nmarízsky\nmarkantne\nmarkantnosť\nmarkantný\nmarka\nmarket\nmarketéria\nmarketing\nmarketingmi\nmarketingoch\nmarketingom\nmarketingov\nmarketingový\nmarketingu\nmarketingy\nmarkgróf\nMarkin\nmarkírovať\nmarkitán\nmarkitánka\nmarkízach\nmarkízam\nmarkíza\nmarkíz\nMarkízinej\nMarkízinho\nMarkízinom\nMarkíziných\nmarkízsky\nmarkízsky\nMarkom\nMarkoman\nmarkomanský\nMarkov\nMarkova\nmarkovať\nMarkovho\nMarkovi\nMarkovo\nMarkovou\nMarkovský\nMarkus\nMarkuška\nMarkušovská\nmarkušovského\nmarkušovskej\nmarkýzy\nmarmelád\nmarmeládach\nmarmeládam\nmarmeláda\nmarmeládový\nMarna\nMarne\nmárnená\nmárnenie\nmárnic\nmárnica\nmárnik\nmárniť\nmárnivec\nmárnivo\nmárnivosť\nmárnivý\nmárnomyseľne\nmárnomyseľník\nmárnomyseľnosť\nmárnomyseľný\nmárnosť\nmárnotratiť\nmárnotratne\nmárnotratnica\nmárnotratníčiť\nmárnotratník\nmárnotratnosť\nmárnotratný\nmárny\nmaroc\nmarocký\nMaročan\nmaród\nmarodér\nmaródili\nmaródiť\nmaródka\nmaródovania\nmaródovanie\nmaródovať\nmaroilles\nMaroko\nmarón\nmaróne\nmaronita\nmarónu\nmaróny\nMaroš\nMarošovej\nMarošovho\nMarošovo\nMarošových\nMarou\nMarrákeš\nMarrákeša\nMarrákeši\nmarrákešskej\nMarrákešskú\nmarsala\nMars\nmarseillaise\nMarseillčan\nMarseille\nmarseillský\nMarshallove\nmarsiek\nmarska\nmarsovský\nmarša\nmaršal\nmaršálek\nMaršalove\nmaršalský\nmaršalstvo\nmaršami\nmarše\nmarši\nmarš\nmaršoch\nmaršom\nmaršov\nMaršov\nMaršová\nMaršove\nMaršovský\nmaršrút\nmaršruta\nmaršu\nMarťan\nMarťania\nMarťanka\nmarťanský\nMarta\nmarte\nmartellando\nMartín\nMartina\nMartin\nMartinček\nmartini\nMartini\nMartinický\nMartinka\nMartinkách\nMartinku\nMartino\nMartinova\nMartinová\nMartinove\nMartinovej\nmartinovského\nmartinovskej\nmartinovskom\nmartinovskú\nmartinovských\nMartinovský\nMartinovu\nMartinových\nmartinský\nmartit\nmartýr\nmartýrion\nmartýrium\nmartýrka\nmartýrsky\nmartýrstvach\nmartýrstvam\nmartýrstvo\nMaru\nMaruška\nMarušku\nmarx\nMarx\nMarxa\nmarxista\nmarxisticko\nmarxisticko-leninovský\nmarxisticko-leninský\nmarxisticky\nmarxistický\nmarxistický\nmarxistka\nmarxizmus\nmarxizmus-leninizmus\nMarxova\nMarxovi\nMarxovo\nMarxovou\nmary\nmáry\nmarža\nmarží\nmás\nmasaker\nmasakier\nmasakra\nmasakri\nmasakroch\nmasakrom\nmasakrov\nmasakrovanie\nmasakrovaných\nmasakrovať\nMasarykovskú\nmasarykovských\nmasa\nmasážach\nmasážam\nmasáž\nmasážny\nmasážový\nmascagnit\nmascarpone\nmaselnica\nmaselnička\nmaselný\nmasera\nmaser\nmasér\nmaseri\nmasérka\nmasermi\nmaseroch\nmaserom\nmaserov\nmasérova\nmasérove\nmasérsky\nmaseru\nmaseruský\nmasery\nmäsiar\nmäsiarčina\nmäsiarčiť\nmäsiareň\nmäsiarka\nmäsiarňach\nmäsiarne\nmäsiarni\nmäsiarní\nmäsiarovho\nmäsiarsky\nmäsiarstvach\nmäsiarstvam\nmäsiarstvo\nmäsiek\nmasielko\nmasielok\nMasini\nmasírovania\nmasírovanie\nmasírovaním\nmasírovaniu\nmasírovaný\nmasírovať\nmäsísk\nmäsisko\nmäsitosť\nmäsitý\nmasív\nmasíve\nmasívnosť\nmasívny\nmaskáče\nmaskáčmi\nmaskáčoch\nmaskáčom\nmaskáčov\nmaskara\nmaskarón\nMaskat\nmaskatský\nmaska\nmaskér\nmaskérka\nmaskérsky\nmaskérstvach\nmaskérstvam\nmaskérstvo\nmäsko\nmaskota\nmaskot\nmaskoti\nmaskotmi\nmaskotovi\nmaskovací\nmaskovacia\nmaskovacie\nmaskovacích\nmaskovacím\nmaskovaciu\nmaskovacou\nmaskovane\nmaskovanie\nmaskovaný\nmaskovať\nmaskový\nmaskulín\nmaskulínach\nmaskulínam\nmaskulinita\nmaskulinizácia\nmaskulínum\nmasky\nmaslan\nmasliačik\nmasliak\nmasliakový\nmasliar\nmasliareň\nmasliarka\nmasliarňach\nmasliarňam\nmasliarstvach\nmasliarstvam\nmasliarstvo\nmaslo\nmaslovka\nmaslovo\nmaslový\nmasmediálny\nmasmédium\nmäsnatý\nmasochista\nmasochisticky\nmasochistický\nmasochistka\nmasochizmus\nmäsokombinát\nmäsokombinátmi\nmäso\nMasonite\nmäsopriemysel\nmäsopriemysle\nmäsopriemyslom\nmäsopriemyslov\nmäsopriemyslu\nmasoréti\nmäsospracujúca\nmäsospracujúce\nmäsospracujúceho\nmäsospracujúcej\nmäsospracujúcemu\nmäsospracujúci\nmäsospracujúcich\nmäsospracujúcim\nmäsospracujúcimi\nmäsospracujúcom\nmäsospracujúcu\nmasove\nmasovo\nmäsovo\nmäsovočervený\nmasovokomunikačný\nmasovopolitický\nmasovosť\nmäsovýY\nmasový\nmäsový\nmäsožravcovi\nmäsožravec\nmäsožravosť\nmäsožravý\nmastaba\nMastaba\nmastalgia\nmastencovo\nmastencový\nmastene\nmastenec\nmastenia\nmastenica\nmastenička\nmastenie\nmasteniu\nmastený\nmaster\nmastiaci\nmastič\nmastičkár\nmastičkáriť\nmastičkárka\nmastičkársky\nmastičkárstvach\nmastičkárstvam\nmastičkárstvo\nmastička\nmastičovi\nmastidlá\nmastidlo\nmastif\nmastika\nmastikácia\nmastime\nmastite\nmastiť\nmastitída\nmastív\nmastivo\nmastix\nmasť\nmastne\nmastnosť\nmastnota\nmastný\nmastocyt\nmastodonta\nmastodont\nmastodontmi\nmastodontovi\nmastodýnia\nmastonómia\nmastopatia\nmastoptóza\nmastotómia\nmasťový\nMastra\nmastri\nmasturbácia\nmasturbant\nmasturbovanie\nmasturbovať\nmasula\nMáša\nmašallah\nmaša\nmašér\nmaší\nmašieľ\nmašina\nmašinéria\nmašinista\nmašinistom\nmašinistov\nmašinka\nmašinový\nmašírovanie\nmašírovať\nMaška\nmaškár\nmaškarád\nmaškarádach\nmaškarádam\nmaškaráda\nmaškara\nmaškarný\nMaškom\nMaškov\nMaškove\nMaškovej\nMaškovi\nMaškovmu\nmaškŕt\nmaškrta\nmaškrtenie\nmaškrtiek\nmaškrtiť\nmaškrtka\nmaškrtne\nmaškrtnica\nmaškrtnícky\nmaškrtník\nmaškrtnosť\nmaškrtný\nmašľa\nmašlí\nmašlička\nmašľový\nmáš\nmašo\nMašove\nmaštale\nmaštaľ\nmaštaľka\nmaštaľný\nMášu\nmašura\nMašuru\nmatador\nmatadori\nmatadorovi\nmatadorské\nmatadorskú\nmatadorských\nMatadorský\nmätách\nmätám\nmátanie\nmátaný\nmatať\nmátať\nmátať\nmäta\nmat\nmaté\nmatečníkov\nmatečný\nMatej\nMatejova\nMatejovho\nmatejovské\nmatejovskej\nMatejovský\nmatematicky\nmatematický\nmatematička\nmatematikár\nmatematikárka\nmatematika\nmatematik\nmatematizácia\nmatematizácii\nmatematizáciou\nmať\nmáte\nmätenia\nmätenica\nmätenie\nmätením\nmätenina\nmäteniu\nmätený\nmateorický\nmaterčín\nmaterčinách\nmaterčinám\nmaterčinami\nmaterčina\nmater\nmateriál\nmateriálik\nmaterialista\nmaterialisticky\nmaterialistický\nmaterialistka\nmaterializácia\nmaterializačný\nmaterializmus\nmaterializoval\nmaterializovaný\nmaterializovať\nmaterializujú\nmateriálmi\nmateriálno\nmateriálnoprávny\nmateriálnosť\nmateriálno-technický\nmateriálny\nmateriálovo\nmateriálový\nmatéria\nmaterin\nmaterina\nmaterinčín\nmaterinčinách\nmaterinčinám\nmaterinčinami\nmaterinčina\nmaterinou\nmaterinskosť\nmaterinsky\nmaterinský\nmaterinstvom\nmaterinu\nMaterne\nmaternica\nmaternicový\nmaternita\nmaternity\nmaterný\nmaterskosť\nmatersky\nmaterský\nmaterstvo\nmates\nmätež\nmätežný\nmatch\nmatchball\nmati\nMatias\nMatiaška\nMatiašku\nMatiašovský\nmatica\nmaticovo\nmaticový\nmatičiar\nmatičiarka\nmatičiarsky\nmatička\nmatičný\nmatika\nMatikom\nMatíld\nMatilda\nmatiné\nmatjes\nmatkať\nmatka\nmatkin\nmatkový\nmatmi\nmatne\nmatnení\nmatnenie\nmatnica\nmatnici\nmatnicu\nmatnie\nmatnieť\nmatno\nmatnobiele\nmatnosť\nmatný\nmátoh\nmátoha\nmatolína\nmatovanie\nmatovaný\nmatovať\nmatovo\nMaťovský\nmatový\nmätový\nmátožiť\nmátoživé\nmátožne\nmátožný\nMatra\nmatrac\nmatracový\nmatranský\nMatre\nmatriarchálny\nmatriarchát\nmatriarchátmi\nmatrica\nmatricový\nmatričný\nmatrikár\nmatrikárka\nmatrikársky\nmatrika\nmatrikový\nmatrilinearita\nmatrilineárn\nmatrilineárny\nmatrilokácia\nmatrilokálny\nmatrimónium\nMatrin\nmatrinómium\nmatrioška\nMatrix\nmatrixe\nmatroklinita\nmatrón\nmatrónach\nmatrónam\nmatróna\nmatrónsky\nmatronymia\nMatrou\nmatróz\nmatrózka\nmatrózkový\nmatrózový\nmatrózsky\nMatru\nMatry\nmätúci\nmatujúci\nmatúr\nmaturácia\nmatúrach\nmatúram\nmaturant\nmaturantka\nmaturantský\nmatúra\nmaturita\nmaturitný\nmaturovať\nMatúš\nMatušíkovej\nmatušíkovské\nMatušíkových\nMatúškova\nMatúšková\nMatúškovo\nMatúšovej\nMatúšovho\nMatúšovým\nMatuzalem\nmatuzalemský\nMatylda\nMatysová\nMatysovej\nMatysovou\nMatysovú\nMaur\nMauretána\nMauretánca\nMauretánec\nMauretáni\nMauretánia\nMauretánka\nmauretánsky\nMaurícia\nMaurícijčan\nMaurícijčanka\nmaurícijský\nMauríciom\nMauríciu\nMaurícius\nMaurino\nMauritánec\nMauritánia\nMauritánka\nmauritánsky\nMaurítia\nMaurítiom\nMaurítiu\nMaurítius\nMaurka\nMaurovo\nMaurovou\nmaurský\nMaurus\nMaury\nmauzerka\nmauzóleový\nmauzóleum\nmávačka\nmávadlo\nmávajúci\nmávanie\nmávaním\nmávaniu\nmávať\nmávnutie\nmávnuť\nmax\nMaxell\nmaxi\nmaxila\nmaxilotómia\nMaxim\nmaxím\nmaximalista\nmaximalisticky\nmaximalistický\nmaximalizácia\nmaximalizačný\nmaximalizavanie\nmaximalizmus\nmaximalizovania\nmaximalizovanie\nmaximalizovaný\nmaximalizovať\nmaximalizujúca\nmaximálny\nMaximilián\nmaximin\nMaximov\nmaximum\nMaximy\nmayday\nmayovka\nmazací\nmazáč\nMazáča\nMazáčka\nMazáčom\nmazadlo\nmazák\nMazákova\nMazákove\nMazanca\nMazancom\nMazanec\nmazanica\nmazanie\nmazanina\nmazaninový\nmazaný\nmazať\nmaz\nmazdaizmus\nmazien\nmazív\nmazivo\nmazľavo\nmazľavosť\nmazľavý\nmazlena\nmaznácky\nmaznáčik\nmaznák\nmaznanie\nmaznať\nmaznávať\nmaznavec\nmaznavo\nmaznavosť\nmaznavý\nmazna\nmaznem\nmazneme\nmazneš\nmaznete\nmazniatko\nmaznica\nmaznička\nmazniť\nmaznú\nmazovo\nmazový\nmazuľa\nmazuli\nmazuľkať\nmazurka\nmazúrka\nmazúrkový\nmazut\nmazutmi\nmazutový\nmažiarik\nmažiar\nmažiarmi\nmažoretka\nMb\nMB\nMBps\nMBq\nMC\nMČ\nMD\nMDD\nmdlejšej\nmdlejší\nmdlejšia\nmdlejšie\nmdlejšieho\nmdlejšiemu\nmdlejších\nmdlejším\nmdlejšími\nmdlejšiu\nmdlejšom\nmdlejšou\nmdlo\nmdloba\nmdlosť\nmdlý\nMDPT\nMDŽ\nME\nmé\nmeander\nmeandra\nmeandrami\nmeandre\nmeandri\nmeandroch\nmeandrom\nmeandrov\nmeandrová\nmeandrovanie\nmeandrovať\nmeandrovitý\nmeandru\nmeandrujúci\nmeat\nmec\nMEC\nmece\nmecem\nmeceme\nmecenáš\nmecenáška\nmecenášsky\nmecenášstvach\nmecenášstvam\nmecenášstvo\nmecén\nmecéni\nmecénka\nmecénovi\nmecénsky\nmecénstvo\nmeceš\nmecete\nmecme\nmecte\nmecú\nmecúc\nmečať\nmečbal\nmečbalmi\nmečbol\nmečiaci\nMečiar\nMečiara\nMečiari\nMečiarom\nMečiarov\nMečiarova\nMečiarove\nMečiarovej\nMečiarovho\nMečiarovi\nMečiarovmu\nMečiarovo\nMečiarovom\nMečiarovou\nMečiarovu\nMečiarových\nMečiarovým\nMečiarovými\nmečík\nmeč\nmečový\nmedaila\nmedailér\nmedailérsky\nmedailérstvach\nmedailérstvam\nmedailérstvo\nmedailí\nmedailista\nmedailistka\nmedailón\nmedailónček\nmedailónik\nmedailónový\nmedailový\nmedaloman\nmedár\nMedard\nmedárka\nmedársky\nmed\nmeď\nMedea\nmedecín\nmedecínach\nmedecínam\nmedecína\nmedene\nmedenka\nmedenkový\nmedeno\nmedený\nMedia\nmediácia\nmediácie\nmediácii\nmediáciou\nmediáciu\nmediačné\nmediačného\nmediačnom\nmediačnú\nmediačných\nmediách\nmédiach\nmedializácia\nmedializoval\nmedializovala\nmedializovali\nmedializovalo\nmedializovať\nmedializuj\nmedializuje\nmedializujem\nmedializujeme\nmedializuješ\nmedializujete\nmedializujme\nmedializujte\nmedializujú\nmedializujúc\nmediálny\nmediálom\nmediám\nmedián\nmediánovou\nmediar\nMediarovej\nmediarsky\nmediarstvach\nmediarstvam\nmediarstvo\nmediastinálny\nmediastinum\nmediátor\nmediátora\nmediátori\nmediátorom\nmediátorov\nmedici\nmedicín\nmedicínach\nmedicinálny\nmedicínam\nmedicína\nmedicinbal\nmedicinbalmi\nmedicinman\nmedicínsky\nmedický\nmedička\nmedieval\nmedieválny\nmedifyt\nmedií\nmédii\nmedikácia\nmedikament\nmedikamentmi\nmedikamentový\nmedikamentózny\nmedik\nmedík\nmedikovi\nMedio\nmediokalcinóza\nmediokrita\nmediplanetárny\nmedirez\nmediryt\nmedirytec\nmedirytecký\nmedirytectvo\nmedirytina\nmedirytmi\nmedisancia\nmeditácia\nmeditačný\nmeditatívnosť\nmeditatívny\nmediterán\nmediteránny\nmeditlačami\nmeditlačí\nmeditlačiach\nmeditlačiam\nmeditlač\nmeditlačou\nmeditovanieN\nmeditovať\nMediu\nmédium\nmedlený\nmedli\nmedlodramatický\nmednatosť\nmednatý\nmeďnatý\nmednícky\nmedník\nmedníkový\nmedný\nmeďný\nmedokýš\nmedokýše\nmedokýšový\nmedokýšu\nmedomet\nmedonosnosť\nmedonosný\nmedoústeho\nMedovarce\nMedovarciach\nmedovať\nmedovica\nmedovicový\nmedovina\nmedovinka\nmedovka\nmedovku\nmedovky\nmedovníček\nmedovníčka\nmedovníčkami\nmedovníčkoch\nmedovníčkom\nmedovníčkov\nmedovníčku\nmedovníčky\nmedovnikár\nmedovnikársky\nmedovnikárstvach\nmedovnikárstvam\nmedovnikárstvo\nmedovník\nmedovníkový\nmedovo\nmedovožltý\nmedový\nmedula\nmedulárny\nmedunica\nmedúz\nmedúzach\nmedúzam\nmedúza\nMedvecký\nmedvede\nmedvedi\nmedvedica\nmedvedí\nmedvedík\nmedvedíky\nmedvedísk\nmedvediská\nmedvediskách\nmedvediskám\nmedvedisko\nmedvedisku\nmedveď\nmedveďou\nMedveďova\nMedveďove\nmedvieďa\nmedvieďatiek\nmedvieďatko\nmedviedencami\nmedviedence\nmedviedencoch\nmedviedencom\nmedviedeniec\nmedviedik\nmedza\nmedzera\nmedzerník\nmedzerovitý\nmedzerovník\nMedzev\nMedzeve\nMedzevom\nmedzevského\nmedzevskej\nmedzevských\nMedzevský\nmedzi\nmedzí\nMedzianky\nmedzibankový\nMedzibrodí\nMedzibrodia\nMedzibrodie\nmedzibunkový\nmedzičas\nmedzičím\nmedzička\nmedzičlánkami\nmedzičlánkoch\nmedzičlánkom\nmedzičlánkov\nmedzičlánku\nmedzičlánky\nmedzičlánok\nmedzidobí\nmedzidruhová\nmedzier\nmedzierka\nmedzifakultných\nmedzifázový\nmedzifrekvenčný\nmedzigeneráciu\nmedzigeneračný\nmedzihra\nmedzihviezdny\nmedziiným\nmedzijazykový\nmedziknižničnej\nmedzikontinentálny\nmedzikrajová\nmedzikrok\nmedzikrokmi\nmedzikrokoch\nmedzikrokom\nmedzikrokov\nmedzikroky\nmedzikruží\nmedzikvartálne\nMedzilaborcami\nMedzilaborce\nMedzilaborciach\nMedzilaborciam\nmedzilaborecké\nmedzilaboreckého\nmedzilaboreckej\nmedzilaboreckí\nmedzilaboreckom\nmedzilaboreckou\nmedzilaboreckú\nmedzilaboreckých\nMedzilaborecký\nMedzilaboriec\nmedziľahlé\nmedziľahlých\nmedziľudsky\nmedziľudský\nmedzilužia\nmedzimesto\nmedzimestsky\nmedzimestský\nmedziministerský\nmedzimolekulárny\nmedzin\nmedzinár\nmedzinárodne\nmedzinárodno\nmedzinárodnopolitický\nmedzinárodnoprávna\nmedzinárodnoprávne\nmedzinárodnoprávneho\nmedzinárodnoprávnej\nmedzinárodnoprávnemu\nmedzinárodnoprávnom\nmedzinárodnoprávnou\nmedzinárodnoprávnu\nmedzinárodnoprávny\nmedzinárodnoprávnych\nmedzinárodnoprávnym\nmedzinárodnoprávnymi\nmedzinárodnosť\nmedzinárodnosti\nmedzinárodný\nmedziobdobie\nmedziobchodu\nmedziobzorový\nmedziodborový\nmedzioperačná\nmedzioperačné\nmedzioperačného\nmedzioperačnej\nmedzioperačnú\nmedzioperačných\nmedzipalubný\nmedziparlamentný\nmedzipásme\nmedzipásmový\nmedzipevninový\nmedziplanetárny\nmedziplocha\nmedzipodnikovo\nmedzipodnikový\nmedzipolí\nmedziposchodie\nmedzipristátie\nmedziprodukt\nmedziprodukte\nmedziproduktmi\nmedziproduktoch\nmedziproduktom\nmedziproduktov\nmedziproduktu\nmedziprodukty\nmedzirezortne\nmedzirezortný\nmedziriadkov\nmedziriadková\nmedziročne\nmedziročný\nmedzisieťové\nmedziskládka\nmedzistupeň\nmedzistupňa\nmedzistupne\nmedzistupni\nmedzistupňoch\nmedzistupňom\nmedzistupňov\nmedzistupňový\nmedzisvalovom\nmedzištátny\nmedzititulkami\nmedzititulkoch\nmedzititulkom\nmedzititulkov\nmedzititulku\nmedzititulky\nmedzititulok\nmedzitriedny\nmedzitým\nmedzitýmčo\nmedziúver\nmedzivládie\nmedzivládny\nmedzivojnový\nmedzivrstva\nmedzivrstve\nmedzivrstvu\nmedzník\nmedzníkový\nmedzný\nMedžlisu\nméé\nmeeting\nMefisto\nMefistofeles\nmefistofelovský\nMefistoteles\nmefistovský\nmefitický\nmegabajt\nmegabajtový\nmegabytoch\nmegaflops\nmegafón\nmegafónový\nMegahertz\nmegahertze\nmegahertzov\nmegahviezd\nmegahviezda\nmegalit\nmegaloblast\nmegalocyt\nmegalofóbia\nmegalomácian\nmegaloman\nmegalománia\nmegalomanický\nmegalomansky\nmegalomanský\nmegalopsia\nmegaron\nmegatona\nmegawatt\nmegawatthodina\nmegawattmi\nmegera\nmegery\nmegier\nmecha\nmechanickosť\nmechanicky\nmechanický\nmechanička\nmechanika\nmechanik\nmechanizácia\nMechanizačno\nmechanizačný\nmechanizátor\nmechanizátormi\nmechanizátorský\nmechanizmus\nmechanizovanie\nmechanizovaný\nmechanizovať\nmechanofóbia\nmechanoterapie\nmech\nmechnizácia\nmechoriť\nmechriť\nmechúr\nmechúrik\nmechúrový\nmeióza\nmeira\nmeissenský\nmejdanov\nmejkap\nmejkapy\nmejl\nmejli\nmejlmi\nmejlovací\nmejloval\nmejlovala\nmejlovali\nmejlovalo\nmejlovať\nmejlový\nmejluj\nmejluje\nmejlujem\nmejlujeme\nmejluješ\nmejlujete\nmejlujme\nmejlujte\nmejlujú\nmejlujúc\nmékať\nMekka\nMekkčan\nmekkský\nMekong\nmekonión\nmekonizmus\nmekonský\nmekotajúc\nmekotať\nmekoty\nmekteb\nmel\nmelagra\nmeľach\nmeľam\nmelamín\nMelanézia\nmelanézsky\nmelange\nmelanchólia\nmelancholickosť\nmelancholicky\nmelancholický\nmelancholička\nmelancholik\nmelancholizovať\nMelánia\nmelanín\nmelanínovým\nmelanínu\nmelanizmus\nmelanodermia\nmelanóm\nmelanoplastika\nmelanóza\nmelanterit\nmelanž\nmelás\nmelasa\nmelasový\nmeľa\nmelazma\nmela\nMelbournčan\nmelbournsky\nmelbournsky\nmelbournský\nmelbury\nMelčický\nMelek\nmeliaci\nMeliata\nmelika\nmélika\nMelinda\nMelinde\nMelindinom\nMelindou\nMelindu\nMelindy\nmelinit\nmeliorácia\nmelioračný\nmelioratívum\nmeliorizačné\nmeliorovať\nmelír\nmelírovaný\nmelírovať\nMelisa\nMeliš\nMeliša\nMelišom\nMelišovi\nMelišovmu\nmeliť\nmelív\nmelivo\nmelizma\nmelódia\nmelodickosť\nmelodicky\nmelodický\nmelodičnosť\nmelodika\nmelodrám\nmelodrámach\nmelodrámam\nmelodramatickosť\nmelodramaticky\nmelodramatický\nmelodramatický\nmelodráma\nmeloman\nmelománia\nmelomélia\nmelón\nmelónik\nmelónový\nmelos\nmeloschíza\nMelpomené\nmelta\nmeluzín\nmeluzínach\nmeluzínam\nmeluzína\nmembrán\nmembránach\nmembránam\nmembrána\nmembránový\nmembrum\nmemento\nmemoáre\nmemoárový\nmemoránd\nmemorandový\nmemorandum\nmemoriál\nmemoriálmi\nmemoriam\nmemorovania\nmemorovanie\nmemorovaním\nmemorovať\nmenáda\nmenarché\nmeňastý\nmeňavo\nmeňavosť\nmeňavý\nmena\nmenážach\nmenážam\nmenáž\nmenažéria\nMenažéria\nmenčester\nmenčestrákmi\nmenčestrákoch\nmenčestrákom\nmenčestrákov\nmenčestráky\nmenčestrový\nmendelizmus\nmendelovské\nmendelovských\nmendíci\nmendícky\nmendík\nmendíkovi\nmenejcenne\nmenejcennosť\nmenejcenný\nmenej\nmenejhodnotný\nmenenie\nmenený\nmengusovský\nmenhir\nmeniaci\nmeniareň\nmeniarňach\nmeniarňam\nmenič\nmeniče\nmeniču\nmenilit\nmenín\nmeninách\nmeninám\nmeninami\nmeninga\nmeningióm\nmeningitída\nmeningitíde\nmeningitídy\nmeningokok\nmeningokoková\nmeningokokovým\nmeninový\nmeniny\nmeniskami\nmeniskoch\nmeniskom\nmeniskov\nmenisku\nmeniskus\nmenisky\nmenisto\nmenistý\nmeniteľnosť\nmeniteľný\nmeniť\nmenivosť\nmenivý\nmenlivo\nmenlivosť\nmenlivý\nmenne\nmenný\nmeno\nmenopauza\nmenora\nmenoragia\nmenorea\nmenorrhoea\nmenoslov\nmenostatikum\nmenovacej\nmenovací\nmenovacie\nmenovacieho\nmenovacích\nmenovacím\nmenovaciu\nmenovacom\nmenovanie\nmenovaný\nmenovatelia\nmenovateľ\nmenovateľmi\nmenovateľoch\nmenovateľom\nmenovateľov\nmenovateľovi\nmenovateľu\nmenovať\nmenove\nmenovec\nmenovite\nmenovito\nmenovitý\nmenovka\nmenovkyňa\nmenovo\nmenový\nmenový\nmenšenec\nmenševický\nmenševik\nmenševizmus\nmenši\nmenšina\nmenšinovo\nmenšinový\nmenší\nmenšiť\nmenšitelia\nmenšiteľ\nmenšiteľmi\nmenšiteľoch\nmenšiteľom\nmenšiteľov\nmenšiteľovi\nmenšiteľu\nmenštruácia\nmenštruačný\nmenštruovať\nmentalita\nmentálny\nmentieka\nmentiekový\nmentol\nmentole\nmentolka\nmentolový\nmentor\nmentori\nmentorovania\nmentorovanie\nmentorovať\nmentorovi\nmentorsky\nmentorský\nmentorstvo\nmentronomický\nmenuet\nmenuetový\nmenúvať\nmenz\nmenza\nmenzes\nMenzi\nmenzový\nmeprobamat\nmer\nmerá\nmerací\nmerač\nmerače\nmeračka\nmeračský\nmeračstvo\nmeraču\nmeradlo\nmerane\nmeranie\nmeraný\nmerateľne\nmerateľnosť\nmerateľnosti\nmerateľnosťou\nmerateľný\nmerať\nmeravieť\nmeravo\nmeravosť\nmeravý\nmercedes\nmercedeska\nmercerácia\nmercerovanej\nMere\nmerenchým\nmerica\nmerička\nmeridánový\nmeridián\nmeridzať\nMerina\nmerind\nmerínd\nmerinda\nMerine\nmerino\nMerinou\nmerinový\nMerinu\nMeriny\nmeristém\nmeristémová\nmeristémové\nmeristémového\nmeristémovej\nmeristémovú\nmeristémových\nmeristémovým\nMerit\nMerita\nmeriť\nmerítka\nmerítkach\nmerítkam\nmerítko\nmerítkom\nmerítku\nmerítok\nmeritom\nmeritórnosť\nmeritórny\nmeritu\nmeritum\nMerka\nmerkantil\nmerkantilista\nmerkantilistickej\nmerkantilistických\nmerkantilizmu\nmerkantilizmus\nmerkantilný\nmerkaptánoch\nmerkaptánov\nmerkaptánu\nmerkaptány\nmerkovať\nmerku\nMerkúr\nmerkurializmus\nmerne\nMerník\nmerný\nMerom\nMeru\nmeruôsma\nmeruôsme\nmeruôsmeho\nmeruôsmej\nmeruôsmemu\nmeruôsmi\nmeruôsmom\nmeruôsmou\nmeruôsmu\nmeruôsmy\nmeruôsmych\nmeruôsmym\nmeruôsmymi\nmery\nmerzolát\nmes\nmesačne\nmesačník\nmesačno\nmesačný\nmesiac\nmesiačik\nmesiačikový\nmesiačkov\nmesianizmus\nmesiáš\nmesiášovej\nmesiášsky\nmesiášstvach\nmesiášstvam\nmesiášstvo\nmeskal\nmeskalín\nmesmerizmus\nMessalina\nmest\nmestečiek\nmestečko\nmestiansky\nmestic\nMestický\nmesto\nmestotvorný\nmestsky\nmestský\nmešec\nmešita\nmeškajúci\nmeškanie\nmeškať\nmeškávať\nmešťan\nmešťania\nmešťanosta\nmešťanostka\nmešťanostovia\nmešťanstva\nmešťanstvom\nmeštek\nmeštiacky\nmeštiactvach\nmeštiactvam\nmeštiactvo\nmeštiačka\nmeštiak\nmeštianka\nmeštiansky\nmeštiansky\nmešťiansky\nmeštianstvach\nmeštianstvam\nmeštianstvo\nmešuge\nmét\nmetablastém\nMetabol\nmetabolický\nmetabolit\nmetabolitov\nmetabolity\nmetabolizmus\nmetabolizovať\nmetacie\nmetacích\nMetacom\nmetadáta\nmetadón\nmetadónový\nmetafáza\nmetafor\nmetafora\nmetaforickosť\nmetaforicky\nmetaforický\nmetafráza\nmetafyzicky\nmetafyzický\nmetafyzika\nmetafyzik\nmetagalaktický\nmetagalaxia\nmetagaliktické\nmetagenéza\nmetagram\nmetachronizmus\nmetajazyk\nmetakarpus\nmetakutizácia\nmetal\nmetalický\nmetalíz\nmetalizácia\nmetalizácie\nmetalizácii\nmetalizáciu\nmetalizačný\nmetalízach\nmetalízam\nmetalíza\nmetalizovaný\nmetalizovať\nmetál\nmetalmi\nmetalografická\nmetalografické\nmetalografie\nmetalografiou\nmetaloid\nmetalorgia\nmetalový\nmetálový\nmetalóza\nmetalues\nmetalurgami\nmetalurg\nmetalurgia\nmetalurgický\nmetalurmog\nmetaméra\nmetamorfovaný\nmetamorfovať\nmetamorfóz\nmetamorfózach\nmetamorfózam\nmetamorfóza\nmetán\nmetania\nmetanie\nmetanizácia\nmetanol\nmetanolom\nmetanolového\nmetanolu\nmetánový\nmetaný\nmetapsychológia\nmetastatický\nmetastáz\nmetastázach\nmetastázam\nmetastáza\nmetastázovať\nmetatartus\nmetatarzalgia\nmetatarzus\nmetať\nmetatéza\nmetatorax\nmetatropizmus\nmetazoa\nméta\nmet\nmeteľ\nmetelica\nmetempsychóza\nmetencefalón\nmeteor\nmeteoricky\nmeteorický\nmeteorit\nmeteoritmi\nmeteorizmus\nmeteoroid\nmeteorológ\nmeteorológia\nmeteorologický\nmeteorologička\nmeteoropatia\nmeteorosenzibilita\nmeteorotropizmus\nmeteorotropný\nMeteorová\nmeteosenzitivita\nmeteosenzitívny\nmeter\nmetér\nmetérmi\nmetérovi\nmetérsky\nmetical\nmetiel\nmetier\nMetin\nmetla\nmetlica\nmetlička\nmetlina\nmetlísk\nmetlisko\nmetlovitý\nmetód\nmetódach\nmetódam\nmetóda\nMetod\nmetodickosť\nmetodicky\nmetodický\nmetodička\nmetodika\nmetodik\nmetodista\nmetodistická\nmetodistické\nmetodistickej\nMETODKA\nmetodológ\nmetodológia\nmetodologicky\nmetodologický\nmetodovský\nMetodových\nmetodský\nmetománia\nmetonomázia\nmetonýmia\nmetonymia\nmetonymickosť\nmetonymicky\nmetonymický\nmetopa\nmetopizmus\nmetoposkopia\nmetr\nmetrák\nmetrákový\nmetralgia\nmetrážach\nmetrážam\nmetráž\nmetrážny\nmetresa\nmetricky\nmetrický\nmetrický\nmetrika\nmetriopatia\nmetritída\nmetrológia\nmetrologický\nmetro\nmetronom\nmetronómami\nmetronóm\nmetronóme\nmetronómia\nmetronomicky\nmetronomický\nmetronomický\nmetronómu\nmetronómy\nmetropol\nmetropola\nmetropolita\nmetropolitmi\nmetropolitný\nmetroptóza\nmetroragia\nmetrosalpingitída\nmetrosexuál\nmetrovica\nmetrový\nmetrum\nmetská\nmetské\nmetského\nmetskej\nMetskú\nmetských\nmetyl\nmetylácia\nmetylalkohol\nmetylalkoholový\nmetylové\nmex\nMexica\nmexický\nMexico\nMexicom\nMexicu\nMexičan\nMexiko\nmezaliancia\nmezanín\nmezanínovým\nmezencefalon\nmezenchým\nmezentérium\nmezkalín\nmezoblast\nmezoderma\nmezofauna\nmezofyl\nmezofyt\nmezogastralgia\nmezolit\nmezolitikum\nmezopauza\nMezopotámčan\nMezopotámčanka\nMezopotámec\nMezopotámia\nMezopotámka\nmezopotámsky\nmezopotámsky\nmezosféra\nmezosóma\nmezoterapia\nmezotorax\nmezozoické\nmezozoickým\nmezozoika\nmezozoikom\nmezozoikum\nmezúra\nmezzoforte\nmezzopiano\nmezzosoprán\nmezzosopranista\nmezzosopránista\nmezzosopranistka\nmezzosopránistka\nmezzosopránový\nmezzospranista\nmezzotinta\nMF\nMFF\nMFK\nMFSR\nmg\nMgr\nMGy\nmh\nMH\nMHD\nMHK\nmhm\nMHz\nmi\nMi\nmí\nmiagač\nmiagať\nmias\nmiasť\nmiau\nmiazg\nmiazgach\nmiazgam\nmiazgami\nmiazga\nmiazgový\nmiazma\nmiazmus\nmicelu\nMicku\nMicky\nmicovňa\nMicrosoft\nmičenica\nmidi\nmidlikovať\nmiečnobiely\nmiech\nmiechach\nmiecham\nmiechami\nmiecha\nmiechový\nmien\nmieňa\nmieň\nmienenie\nmienený\nmieniť\nmienka\nmienkotvorný\nmieňmi\nmieňoch\nmieňom\nmieňov\nmieňovi\nmiera\nmierenia\nmierenie\nmierený\nmieriaci\nmieridlo\nmieriť\nmier\nmierka\nmierkový\nmiermi\nmiernená\nmiernenie\nmierniť\nmiernosť\nmierny\nmierotvorca\nmierotvorne\nmierotvorný\nMierova\nMierovo\nmierový\nmierumilovne\nmierumilovnejší\nmierumilovnosť\nmierumilovný\nmiesenia\nmiesenie\nmieseniu\nmiesený\nmiesič\nmiesiče\nmiesička\nmiesiču\nmiesiť\nmiesiželezoch\nmiesiželezo\nmiesiželezov\nmiesiželezovi\nmiesiželezovia\nmiestečiek\nmiestečko\nmiestenka\nmiestenkový\nmiestenstka\nmiestnosť\nmiestnôstka\nmiestny\nmiesto\nmiestočiek\nmiestočko\nmiestodržiteľ\nmiestodržiteľský\nmiestodržiteľstve\nmiesto\nmiestopis\nmiestopisný\nmiestopredseda\nmiestopredsedom\nmiestopredsedu\nmiestoprísažne\nmiestoprísažný\nmiesť\nmiešací\nmiešač\nmiešačka\nmiešačovi\nmiešadiel\nmiešadlá\nmiešadlami\nmiešadle\nmiešadlom\nmiešancovi\nmiešanec\nmiešanica\nmiešanie\nmiešanina\nmiešanka\nmiešaný\nmiešateľné\nmiešateľnosť\nmiešateľnosti\nmiešateľných\nmiešať\nmiešiareň\nmiešiarňam\nmiešiarne\nmiešiarni\nmieška\nmieškami\nmieškoch\nmieškom\nmieškov\nmiešku\nmiešky\nmiešok\nmiet\nmiezd\nMigma\nMignon\nmigrácia\nMigračne\nmigračno\nmigračný\nmigrant\nmigrantka\nmigrén\nmigrénach\nmigrénam\nmigréna\nmigrenik\nmigrovaná\nmigrovať\nmigruje\nMigrujem\nmigrujú\nmigrujúci\nmihahá\nmihahať\nmihajúci\nmihalnica\nmihanie\nmihať\nmihavý\nmih\nmihi\nmihihi\nmihnutie\nmihnúť\nmihotá\nmihotaj\nmihotajme\nmihotajte\nmihotajú\nmihotajúc\nmihotám\nmihotáme\nmihotanie\nmihotáš\nmihotáte\nmihotať\nmihotavo\nmihotavý\nmihot\nmihotmi\nmihráb\nMichael\nMichaela\nMichaelina\nMichaľanoch\nMichaľany\nMichal\nMichalian\nMichaľian\nmichalianske\nmichalka\nmichalkina\nMichalková\nMichalkovej\nMichalkovi\nMichalkovo\nMichalok\nMichalová\nMichalovce\nMichalove\nMichalovej\nMichaloviec\nMichalovo\nMichalovou\nmichalovský\nMichalovú\nMichalových\nMichalovým\nmichalský\nMichigan\nmichiganský\nmikád\nmikádach\nmikádam\nmikádo\nmikcia\nMike\nMikeš\nMikeša\nMikešom\nMikešovej\nMikešovi\nMiko\nMiková\nMikovej\nmikovský\nmikro\nmikroanalýzach\nmikróba\nmikrób\nmikrobiálny\nmikrobicídny\nmikrobiológ\nmikrobiológia\nmikrobiologicky\nmikrobiologický\nmikrobiologička\nmikrobión\nmikrobúria\nmikrobusa\nmikrobus\nmikrocefália\nmikrócia\nmikrocyt\nmikročip\nmikrodermabrázia\nmikrodoncia\nmikroedafón\nmikroekonómia\nmikroekonomicky\nmikroekonomický\nmikroekonomika\nmikroelektronický\nmikroelektronický\nmikroelektronika\nmikroelementov\nmikroelementy\nmikrofág\nmikrofauna\nmikrofilm\nmikrofiše\nmikrofiši\nmikrofiš\nmikrofišmi\nmikrofišoch\nmikrofišom\nmikrofišov\nmikrofišu\nmikroflóra\nmikroflórou\nmikroflóru\nmikroflóry\nmikrofón\nmikrofónový\nmikrofyt\nmikrognatia\nmikrografia\nMikrografia\nmikrografický\nmikrografie\nmikrografiu\nmikrochirurgia\nmikroinštrukcia\nmikroklím\nmikroklímach\nmikroklímam\nmikroklimatické\nmikroklimatickou\nmikroklimatických\nmikroklimatológia\nmikroklíma\nmikrokozmos\nmikrokryštalický\nmikrolit\nmikrománia\nmikromélia\nmikrometer\nmikrometrické\nmikrometrického\nmikrón\nMikronézan\nMikronézanka\nMikronézia\nmikronézsky\nmikrónová\nmikrónovej\nmikrónovou\nmikrónovú\nmikrónových\nmikroorganizmus\nmikropaleontológia\nmikroplanktón\nmikropočítač\nmikropočítača\nmikropočítačov\nmikroport\nmikroprocesor\nmikroprocesorový\nmikropsia\nmikrosekunda\nmikroskop\nmikroskopia\nmikroskopicky\nmikroskopický\nmikrosomia\nmikrospánok\nmikrospínač\nmikrospória\nmikrostómia\nmikrosvet\nmikroštruktúra\nmikroštruktúre\nmikroštruktúrou\nmikroštruktúru\nmikroštruktúry\nmikrotelefón\nmikrotelefónu\nmikrotelefóny\nmikroten\nmikrotén\nmikroténový\nmikrotrauma\nmikrovĺn\nmikrovlna\nmikrovlnka\nmikrovlnný\nmikrovlnový\nmikrovlný\nmikrovlný\nmikrurgia\nMikšová\nMikšovej\nMikšovský\nmikter\nMikuláš\nMikulášová\nMikulášovo\nMikulášovou\nMikulášových\nmikulášska\nmikulášske\nmikulášskeho\nMikulášskej\nmikulášski\nmikulášskom\nmikulášskou\nmikulášsku\nmikulášsky\nmikulášskych\nmikulášskym\nmikulášskymi\nmikulka\nmikulkový\nMikulov\nMikulova\nMikulove\nmikulovský\nMikulovu\nMikušovská\nmil\nMíl\nmíľ\nMila\nmiláčik\nMilada\nMiladin\nMilán\nMilan\nMilánčan\nMiláno\nmilánsky\nmilánsky\nmíľa\nmild\nMile\nMilen\nMilena\nmilencov\nmilene\nmilenec\nmilenecky\nmilenecký\nmiléniový\nmilénium\nmilenka\nmilenko\nmilenký\nmileno\nmilený\nMilhosť\nMilhoste\nMilhosti\nMilhostov\nmiliampér\nmíliar\nmiliard\nmiliardách\nmiliardám\nmiliardár\nmiliardárka\nmiliardárkou\nmiliardárovej\nmiliardárovho\nmiliardárska\nmiliardárske\nmiliardárskeho\nmiliardárskej\nmiliardárskom\nmiliardárskou\nmiliardársky\nmiliardárskych\nmiliarda\nmiliardovo\nmiliardový\nmiliardtina\nmiliardtiny\nmiliardtý\nmilibar\nMilica\nmilícia\nmilicionár\nmilicionárka\nmilicionársky\nmiličný\nMiliek\nmilier\nmiliermi\nmilierový\nmilieu\nmiligram\nmiligramové\nmililiter\nmilimeter\nmilimetrový\nMilin\nmilinewton\nmiliohm\nmilionár\nmilionárka\nmilionárkou\nmilionárku\nmilionárky\nmilionárok\nmilionárska\nmilionárske\nmilionárskeho\nmilionárskej\nmilionárskom\nmilionárskou\nmilionársku\nmilionársky\nmilionárskych\nmilionárskymi\nmilión\nmiliónik\nmiliónkrát\nmiliónovo\nmiliónový\nmiliónta\nMiliónta\nmiliónte\nmiliónteho\nmilióntej\nmilióntemu\nmiliónti\nmilióntin\nmilióntinách\nmilióntinám\nmilióntinami\nmilióntina\nmilióntom\nmilióntou\nmilióntu\nmiliónty\nmilióntych\nmilióntym\nmilióntymi\nmilisekunda\nmiliskovať\nmilitant\nmilitantne\nmilitantnosť\nmilitantný\nmilitárie\nmilitarista\nmilitaristický\nmilitarizácia\nmilitarizačný\nmilitarizmus\nmilitarizovaný\nmilitarizovať\nmílius\nmilivolt\nmiliwatt\nmiliwattov\nMilka\nMilkina\nmilkovať\nMilku\nMilky\nmillefiori\nmíľnik\nmíľnikový\nmilo\nmilodar\nMilochov\nMilochova\nMilochove\nMiloslava\nMiloslav\nMiloslavove\nmilosrdenstvo\nmilosrdne\nmilosrdnosť\nmilosrdný\nmilostiplne\nmilostiplný\nmilostivo\nmilostivý\nmilosť\nmilosťN\nmilostnica\nmilostný\nmilosťpán\nmilosťpanej\nmilosťpani\nmilosťpaní\nmilosťpaniach\nmilosťpaniam\nmilosťpaniami\nmilosťpanička\nmilosťpanie\nmilosťpaniu\nmilosťpánko\nmilosťpaňou\nMiloš\nMilošovom\nmilôt\nmilotách\nmilotám\nmilotami\nmilota\nMilota\nmilovanie\nmilovaný\nmilovať\nMilovnice\nmilovnícky\nmilovníčka\nmilovník\nmíľovo\nmíľový\nmilozvučný\nMilpoš\nmilší\nMilu\nmilučko\nmilučký\nmilučký\nmilučný\nmilujúci\nmilulinko\nmilulinký\nmilulinký\nmilunko\nmilunký\nmilunký\nMiluša\nMiluše\nMiluši\nMiluška\nMilušou\nMilušu\nMily\nmilý\nmímami\nmímánsa\nmím\nmimeralógia\nmimesis\nmimetezit\nmiméza\nmimický\nmimikalkulačka\nmimika\nmimik\nmimikry\nmimimalista\nmimín\nmimina\nmimo\nmimoamerické\nmimoamerickej\nmimoamerickí\nmimoamerických\nmimoamerickými\nmimobežka\nmimobratislavský\nmimoeurópska\nmimoeurópske\nmimoeurópskej\nmimoeurópskemu\nmimoeurópski\nmimoeurópskou\nmimoeurópsku\nmimoeurópsky\nmimoeurópskych\nmimoeurópskym\nmimoeurópskymi\nmimochodom\nmimoidúci\nmimojazykový\nmimokonkurzne\nmimokonkurzné\nmimokonkurzného\nmimokonkurznému\nmimokonkurzní\nmimokonkurznom\nmimokonkurznou\nmimolette\nmimomanželský\nmimoparlamentný\nmimopracovne\nmimopracovný\nmimoriadnosť\nmimoriadny\nmimorozpočtový\nmimoslovenské\nmimoslovenskom\nmimoslovenských\nmimoslovenskými\nmimosúdny\nmimosystémová\nmimoškolský\nmimotarifná\nmimotarifné\nmimotarifnej\nmimotarifnou\nmimotarifných\nmimotarifným\nmimotarifnými\nmimotrhový\nmimoúradný\nmimoúrovňový\nmimoústavný\nmimovl\nmimovládny\nmimovoľne\nmimovoľnosť\nmimovoľný\nmímovými\nmimóz\nmimózach\nmimozákonný\nmimózam\nmimóza\nmimozemsky\nmimozemský\nmimozemšťan\nmimozemšťania\nMimozemšťania\nmimozemšťanka\nmimózový\nmimus\nmin\nmín\nmínach\nmínam\nMinami\nmíňané\nmíňaní\nmíňania\nmíňanie\nmíňaním\nmíňaniu\nmíňaných\nminaret\nmíňať\nmína\nminážach\nminážam\nmináž\nminca\nmincí\nminciari\nMinciarom\nminciarov\nminciarskeho\nminciarskych\nminciera\nmincier\nminciere\nmincieru\nmincove\nmincovňa\nmincovní\nmincovníctvach\nmincovníctvam\nmincovníctvo\nmincový\nMinčan\nmindrák\nminer\nminér\nminerál\nmineráli\nmineráliách\nmineráliám\nmineráliami\nminerálie\nminerálií\nmineralizácia\nmineralizácie\nmineralizácii\nmineralizáciou\nmineralizáciu\nmineralizovaná\nmineralizované\nmineralizovanou\nmineralizovaných\nmineralizovať\nminerálka\nminerálmi\nminerálny\nmineralóg\nmineralógia\nmineralogický\nmineralogička\nminerálový\nmíner\nmínerovi\nminestra\nMinet\nMineta\nMinetom\nminianketa\nminiatúr\nminiatúrach\nminiatúram\nminiatúra\nminiaturizácia\nminiaturizácie\nminiaturizácii\nminiaturizáciou\nminiaturizovaný\nminiaturizovať\nminiaturizový\nminiatúrny\nminiatúrový\nminigolf\nminiikona\nminikalkulačka\nminikamera\nminím\nminimalista\nminimalisticky\nminimalistický\nminimalistický\nminimalizácia\nminimalizačný\nminimalizmus\nminimalizovania\nminimalizovanie\nminimalizovaním\nminimalizovaniu\nminimalizovaný\nminimalizovaný\nminimalizovať\nminimalizujúca\nminimálny\nminimax\nminimum\nmíniový\nminiseriálov\nminiseriály\nminister\nMinisteriálne\nministerka\nministerkin\nministerkina\nministerkine\nministerkinej\nministerkinho\nministerkinmu\nministerkino\nministerkinom\nministerkinu\nministerkiných\nministerkiným\nministersky\nministerský\nministerstvo\nministrova\nministrová\nministrove\nministrové\nministrovej\nministrovho\nministrovmu\nministrovo\nministrovom\nministrovou\nministrovu\nministrových\nministrovým\nministrovými\nminisukieň\nminisukňa\nminisukní\nminištrant\nminištrovanie\nminištrovať\nminištrujúci\nmínium\nmini\nmink\nMink\nMinka\nMinkov\nminky\nminnesang\nminnesänger\nMinnesota\nMinnesote\nMinnesotskej\nminnesotskom\nMinnesoty\nmínojský\nmínolovku\nMinolta\nmínomer\nmínomet\nmínometník\nmínometný\nminorát\nminorita\nminoritne\nminoritný\nminoritského\nmínovač\nmínovanie\nmínovať\nMiňovský\nmínový\nMinsk\nminský\nminstrel\nminucióznosť\nminuciózny\nminule\nminulo\nminuloročne\nminuloročný\nminulosť\nminulostný\nminulotýždňový\nminulý\nmínus\nmínuska\nminuskula\nmínusovo\nmínusový\nminút\nminútach\nminútam\nminúta\nminutážach\nminutážam\nminutáž\nminutia\nminutie\nminutím\nminútka\nminútový\nminúť\nminutý\nmiocén\nmiocéne\nmiocénu\nmión\nmióza\nMiquelon\nMír\nmirabelka\nmirabelky\nmirabilit\nmiracídium\nmirakulózny\nmirákulum\nMiranda\nMirandu\nMiriám\nMiriamách\nMiriamám\nMiriama\nmirínd\nmirinda\nMirka\nMirko\nMirkovi\nMiro\nmiroelektronika\nMiroľa\nMiroslava\nMiroslav\nMiroslavova\nMiroslavove\nMiroslavovej\nMiroš\nMirošov\nMirošova\nMirošove\nMirovi\nMirovo\nMirovou\nMirza\nmís\nmisál\nmisály\nmisa\nmiscelanea\nmiserere\nMiserere\nmiserére\nmisia\nmisie\nmisijne\nmisijný\nmisionár\nmisionárka\nmisionársky\nmisísk\nmisisko\nmiska\nmiskovitý\nmiskový\nmisky\nmisovitý\nmiss\nmissa\nmissiek\nmississippská\nmisska\nmístecký\nMistela\nMistely\nMister\nmisterioso\nMistra\nmistrál\nmistráli\nmistrálmi\nMistrík\nmistrom\nmistrov\nmisurato\nMiša\nMiška\nmiškár\nMiške\nMiško\nMiškom\nmiškovaniu\nmiškovať\nMiškovčan\nMiškovec\nmiškovecký\nmiškovský\nMišku\nmišmaše\nmišmaši\nmišmaš\nmišmašmi\nmišmašoch\nmišmašom\nmišmašov\nmišmašu\nmišna\nMišo\nmišpuľa\nmištička\nMišu\nmitického\nmitickej\nmitickou\nmitickú\nMitický\nmitier\nmitigácia\nmítingami\nmíting\nmíting\nmítingy\nmitochondria\nmitochondrión\nmitotický\nmitóza\nmitrálny\nmitra\nmívať\nmixážach\nmixážam\nmixáž\nmixážny\nmix\nmixér\nmixérka\nmixérmi\nmixérovi\nmixéry\nmixoplódia\nmixoskopia\nmixotrofia\nmixovaná\nmixované\nmixovaného\nmixovania\nmixovanie\nmixovaných\nmixovaným\nmixovať\nmixtúra\nmizandria\nmizanscén\nmizanscénach\nmizanscénam\nmizanscéna\nmizantrop\nmizantropia\nmizantropický\nmizerácky\nmizeráctvo\nmizerák\nmizerére\nmizéria\nmizerne\nmizernosť\nmizerný\nmizina\nmizivo\nmizivý\nmiznúci\nmiznutí\nmiznutia\nmiznutie\nmiznutím\nmiznúť\nmizo\nmizogamia\nmizogýn\nmizogýnia\nmizomus\nmizopédia\nMjanmarčan\nMjanmarčanka\nMjanmarsko\nmjanmarský\nmjr\nMK\nMKDH\nMKS\nml\nmláčka\nmlada\nmláďa\nmláďatiek\nmláďatko\nmlaď\nmládenček\nmládenči\nmládenčime\nmládenčísk\nmládenčiskoch\nmládenčisko\nmládenčiskov\nmládenčiskovi\nmládenčiskovia\nmládenčite\nmládenčiť\nmládenec\nmládenecký\nMladenom\nmládež\nmládežnícky\nmládežníčka\nmládežník\nmladica\nmladícky\nmladíček\nmladíčka\nmladíčkami\nmladíčkoch\nmladíčkom\nmladíčkov\nmladíčkovi\nmladíčkovia\nmladík\nmladina\nmladinka\nmladistvo\nmladistvosť\nmladistvý\nmládka\nmládnik\nmládniku\nmládniky\nmladnúť\nmlado\nmladoboleslavský\nmladoch\nmladomanžel\nmladomanželka\nmladomanželský\nmladoň\nmladoni\nmladonský\nmladosť\nmladoženáč\nmladoženích\nmladší\nmladučko\nmladučký\nmladucha\nmladulinko\nmladulinký\nmladunko\nmladunký\nmladuško\nmladušký\nmladý\nmládzach\nmládzam\nmládza\nmládzí\nMládzova\nMládzovo\nmlák\nmlákach\nmlákam\nmláka\nmľandravcovi\nmľandravec\nmľandravieť\nmľandravo\nmľandravosť\nmľandravý\nmlanúť\nmľask\nmľaskanie\nmľaskať\nmľaskavo\nmľaskavý\nmľasknutie\nmľasknúť\nmľaskot\nmľasnúť\nmlát\nmláťacie\nmláťačka\nmláťačkový\nmlátach\nmlátam\nmlat\nmlatba\nmlatec\nmlátene\nmlátení\nmlátenia\nmlátenie\nmlátením\nmláteniu\nmlátiaci\nmlátievať\nmlátiť\nmlatmi\nmlatobný\nmlatok\nmláto\nmlatový\nmlčanieN\nmlčanlivec\nmlčanlivo\nmlčanlivosť\nmlčanlivý\nmlčať\nmlčiaci\nmlčky\nmlč\nmlčoch\nMlčocha\nMlčochom\nMlčochovej\nmld\nmlecí\nmledzív\nmledzivo\nmleičniak\nmletie\nmletý\nmlhavý\nmliaga\nmliagaj\nmliagajme\nmliagajte\nmliagajú\nmliagajúc\nmliagal\nmliagala\nmliagali\nmliagalo\nmliagam\nmliagame\nmliagaš\nmliagať\nmliagate\nmliaskanie\nmliaskať\nmliaskavo\nmliaskavý\nmliasknúť\nmliasknuť\nmliaždiť\nmlie\nmliečí\nmliečia\nmliečiach\nmliečiam\nmliečiami\nmliečie\nmliečím\nmliečiu\nmlieč\nmliečko\nmliečňak\nmliečniak\nmliečnic\nmliečnik\nmliečnobiely\nmliečnosť\nmliečny\nmliek\nmliekar\nmliekareň\nmliekarenský\nmliekarenstvo\nmliekarka\nmliekarňach\nmliekarňam\nmliekarsky\nmliekarský\nmliekarstvo\nmlieko\nmliekovod\nmliekový\nmlieť\nmlk\nmĺkla\nmĺkli\nmĺklo\nmĺkne\nmĺknem\nmĺkneme\nmĺkneš\nmĺknete\nmĺkni\nmĺknime\nmĺknite\nmĺknu\nmĺknuc\nmĺknuť\nmĺkol\nmĺkvieť\nmĺkvosť\nmĺkvota\nmĺkvy\nmločí\nmlok\nmloky\nMĽR\nmlsný\nMlyňanoch\nMlyňany\nmlynár\nMlynárce\nMlynárciach\nmlynárik\nmlynáriky\nmlynárka\nMlynárovce\nmlynársky\nmlynárstvach\nmlynárstvam\nmlynárstvo\nmlyn\nmlynček\nmlynčekový\nmlynica\nMlynická\nMlynickej\nMlynka\nMlynkoch\nMlynku\nMlynky\nmlynský\nmm\nMM\nMMF\nMMM\nmn\nMN\nmňa\nmňam\nmňau\nmňauč\nmňaučanie\nmňaučať\nmňauči\nmňaučime\nmňaučite\nmňaukanie\nmňaukať\nmňauknúť\nmne\nmnemotaxia\nmnemotechnický\nmnemotechnika\nmnemotechnik\nMNI\nmních\nMníchov\nMníchovčan\nMníchovej\nMníchovho\nMníchovo\nmníchovský\nmníška\nmníšsky\nmníšsky\nmno\nmnohoaspektový\nmnohobodový\nmnohobožstvo\nmnohobunečný\nmnohobunkový\nmnohocestná\nmnohocestné\nmnoho\nmnohočlen\nmnohočlena\nmnohočlene\nmnohočlenne\nmnohočlenný\nmnohočlenu\nmnohočleny\nmnohodetná\nmnohodetné\nmnohodetnej\nMnohodetnosť\nmnohodetných\nmnohodetným\nmnohofarebne\nmnohofarebnosť\nmnohofarebný\nmnohofázový\nmnohohlas\nmnohohlasnosť\nmnohohlasný\nmnohohlasovosť\nmnohohlavý\nmnohohodinová\nmnohohodinové\nmnohohodinového\nmnohohodinovému\nmnohohodinovom\nmnohohodinových\nmnohojazyčnosť\nmnohojazyčný\nmnohokanálový\nmnohokrát\nmnoholistých\nmnohomiestne\nmnohomiliónovo\nmnohomiliónový\nmnohomocný\nmnohonárodnostný\nmnohonárodný\nmnohonásobkami\nmnohonásobkom\nmnohonásobku\nmnohonásobky\nmnohonásobný\nmnohonásobok\nmnohopočetný\nmnohopólový\nmnohoposchodový\nmnohorako\nmnohorakosť\nmnohoraký\nmnohorečový\nmnohoročný\nmnohorozmernosť\nmnohorozmerný\nmnohoslovný\nmnohosľubnej\nmnohosten\nmnohostenný\nmnohosť\nmnohostranne\nmnohostrannosť\nmnohostranný\nmnohostupňový\nmnohotisícový\nmnohotvárne\nmnohotvárnosť\nmnohotvárny\nmnohotvarosť\nmnohoúčelový\nmnohouhlový\nmnohouholne\nmnohouholník\nmnohouholníkový\nmnohouholný\nmnohoveký\nmnohovravne\nmnohovravnosť\nmnohovravný\nmnohovravný\nmnohovrstevný\nmnohovrstvový\nmnohovýzmaný\nmnohovýznamne\nmnohovýznamnosť\nmnohovýznamný\nmnohovýznamovosť\nmnohovýznamový\nmnohovzácny\nmnohoznačne\nmnohoznačnosť\nmnohoznačný\nmnohozubou\nmnohozväzkový\nmnohoženstvo\nmnohožilový\nmnohý\nmnou\nmnoženie\nmnožený\nmnožiace\nmnožiaci\nmnožiarne\nmnožina\nmnožinový\nmnožitelia\nmnožiteľmi\nmnožiteľom\nmnožiteľov\nmnožiteľský\nmnožiť\nmnoživý\nmnožný\nmnožstvo\nmnožstvový\nMNV\nMo\nMO\nmoa\nmoaré\nmob\nmobil\nmobiliár\nmobílie\nmobilita\nmobilizácia\nmobilizačne\nmobilizačný\nmobilizátorom\nmobilizmus\nmobilizované\nmobilizovania\nmobilizovanie\nmobilizovaním\nmobilizovanú\nmobilizovať\nmobilmi\nmobilne\nmobilno\nmobilnosť\nmobilnosti\nmobilnosťou\nmobilný\nmobilový\nMoby\nmocca\nmocensky\nmocenský\nmocenstvo\nmocichtivý\nmocipán\nmoc\nmocnár\nmocnársky\nmocnárstvach\nmocnárstvam\nmocnárstvo\nmocnence\nmocnencu\nmocnenec\nmocne\nmocnieť\nmocnina\nmocninových\nmocniteľ\nmocnitele\nmocniteli\nmocniteľu\nmocno\nmocnosť\nmocný\nmocovať\nmôcť\nmočarina\nmočarísk\nmočarisko\nmočaristý\nMočarmanoch\nMočarmany\nmočení\nmočenie\nmočiar\nmočiarmi\nmočiarny\nmočiarovitý\nmočiarový\nMočidľany\nmočidlo\nmočievať\nmočiť\nmoč\nmočka\nmočkovať\nmočovica\nmočovina\nmočovinové\nmočovinovo\nmočovka\nmočovkoval\nmočovkovala\nmočovkovali\nmočovkovalo\nmočovkovať\nmočovkový\nmočovkuj\nmočovkuje\nmočovkujem\nmočovkujeme\nmočovkuješ\nmočovkujete\nmočovkujme\nmočovkujte\nmočovkujú\nmočovkujúc\nmočovod\nmočovodný\nmočový\nmod\nmód\nmódach\nmodalita\nmodálnosť\nmodálny\nmódam\nmóda\nmode\nMode\nmodelácia\nmodelačný\nmodelár\nmodeláreň\nmodelárka\nmodelárňach\nmodelárňam\nmodelársky\nmodelársky\nmodelárstvach\nmodelárstvam\nmodelárstvo\nmodel\nmodele\nmodeling\nmodelka\nmodelmi\nmodelovacíN\nmodelovane\nmodelovanie\nmodelovaný\nmodelovať\nmodelove\nmodelovo\nmodelový\nmodelový\nmodem\nmodemoval\nmodemovala\nmodemovali\nmodemovalo\nmodemovať\nmodemový\nmodemuj\nmodemuje\nmodemujem\nmodemujeme\nmodemuješ\nmodemujete\nmodemujme\nmodemujte\nmodemujú\nmodemujúc\nModena\nModene\nModenou\nmodenského\nModenskej\nmodenskom\nmodenskou\nModeny\nmoder\nmoderácia\nmoderato\nmoderator\nmoderátor\nmoderátore\nmoderátorka\nmoderátormi\nmoderátorský\nmoderátorstvo\nmoderátoru\nmoderátory\nmoderien\nmodernách\nmodernám\nmodernami\nmoderna\nmodernejší\nmodernista\nmodernistický\nmodernizácia\nmodernizačno\nmodernizačný\nmodernizmus\nmodernizovania\nmodernizovanie\nmodernizovaním\nmodernizovaniu\nmodernizovaný\nmodernizovať\nModerno\nmodernosť\nmoderný\nmoderoval\nmoderovala\nmoderovali\nmoderovalo\nmoderovane\nmoderovanie\nmoderovaný\nmoderovať\nmoderuj\nmoderuje\nmoderujem\nmoderujeme\nmoderuješ\nmoderujete\nmoderujme\nmoderujte\nmoderujú\nmoderujúc\nModest\nmodestný\nmodiel\nmodifikácia\nmodifikačný\nmodifikátor\nmodifikovane\nmodifikovanie\nmodifikovaný\nmodifikovaný\nmodifikovateľný\nmodifikovať\nmodifikujúce\nmodifikujúci\nmodistka\nmodiststvo\nmodistvo\nmodlár\nmodlára\nmodlármi\nmodlárstvo\nmodla\nmodliacej\nmodliaci\nmodliacich\nmodlievať\nmodlikanie\nmodlikať\nmodlikavo\nmodlikavý\nmodlitba\nmodlitbička\nmodlitbový\nmodlitebňa\nmodlitebnica\nmodlitebník\nmodlitebníku\nmodlitebníky\nmodlitebný\nmodliť\nmodlivka\nmodloslužba\nmodloslužobníctvo\nmodloslužobníčka\nmodloslužobník\nmodloslužobný\nmodmi\nmódnosť\nmódny\nmodoch\nmodom\nModom\nmodov\nmodra\nModrák\nmodrám\nModran\nmodranie\nmodranský\nModrany\nmodrasto\nmodrastý\nmodravo\nmodravý\nModra\nmodrejme\nmodrejšej\nmodrejší\nmodrejšia\nmodrejšie\nmodrejšieho\nmodrejšiemu\nmodrejších\nmodrejším\nmodrejšími\nmodrejšiu\nmodrejšom\nmodrejšou\nmodrejte\nmodrejú\nmodrejúc\nmodrené\nModrianka\nmodrianska\nmodrianske\nmodrianskeho\nmodrianskemu\nmodrianski\nmodriansku\nmodriansky\nmodrianskych\nmodrianskym\nmodrianskymi\nmodrianský\nmodridlo\nmodrieť\nmodrina\nmodriť\nmodro\nmodrobiely\nmodro-biely\nmodročervená\nmodrofialové\nmodrofúz\nmodrokamenská\nmodrokamenskej\nModrokamenských\nmodrooký\nmodrosivý\nmodrosť\nmodrota\nmodrotlačami\nmodrotlačí\nmodrotlačiach\nmodrotlačiam\nmodrotlač\nmodrotlačou\nmodrotlačový\nModrová\nModrovej\nModrovka\nModrovke\nModrovku\nmodrozelený\nmodručký\nmodrulinký\nmodrunký\nmodrý\nmodu\nmodulácia\nmodulačný\nmodularita\nmodulárny\nmodulátor\nmodulátorov\nmodulátory\nmodul\nmodulmi\nmoduloval\nmodulovane\nmodulovaný\nmodulovať\nmodulovo\nmodulový\nmoduluj\nmodus\nmody\nMody\nmodylion\nmofeta\nmogá\nMogadišo\nmogadišský\nmogám\nmoganie\nmoganý\nmogilália\nmogul\nMoháčan\nMoháč\nmoháčsky\nmoháčsky\nmohamedán\nmohamedánka\nmohamedánsky\nmohamedánstvach\nmohamedánstvam\nmohamedánstvo\nMohamed\nMohan\nMohane\nMohanom\nmohanský\nMohanu\nmohár\nmohári\nmohármi\nmohároch\nmohárom\nmohárov\nmoháru\nmoháry\nmohér\nmohéri\nmohérmi\nmohéroch\nmohérom\nmohérov\nmohérový\nmohéru\nmohéry\nmohok\nmohoročný\nmohovravný\nMohuči\nmohutne\nmohutnenie\nmohutnieť\nmohutnosť\nmohutný\nmohykán\nmohykánsky\nmohýl\nmohyla\nmohylový\nmohylový\nmoch\nMochov\nmochovský\nmoira\nmoiré\nmôj\nmoja\nmoje\nmojej\nmôjho\nmoji\nmojich\nmojim\nmojím\nmojimi\nmojká\nmojkaj\nmojkajme\nmojkajte\nmojkajú\nmojkajúc\nmojkal\nmojkala\nmojkali\nmojkalo\nmojkám\nmojkáme\nmojkáš\nmojkať\nmojkáte\nMojmír\nMojmírove\nMojmírovej\nmojmírovská\nmojmírovské\nmojmírovského\nmojmírovskej\nmojmírovskom\nmôjmu\nmojom\nmojou\nMojš\nMojša\nMojše\nMojši\nMojšom\nMojšu\nMojtín\nmoju\nMojzesova\nMojzesove\nMojzesovo\nMojzesovom\nMojzesovskí\nmojzesovskom\nMojžiš\nmojžišova\nmojžišove\nMojžišovej\nMojžišovho\nMojžišovmu\nMojžišovo\nMojžišovom\nMojžišovou\nmojžišovský\nMojžišovu\nMojžišových\nMojžišovým\nMojžišovými\nmojžišský\nmokasín\nmokasínach\nmokasínam\nmokasína\nmokasínka\nmokasínkový\nmokasínov\nmokasínový\nmok\nmokier\nmokk\nmokka\nmoknúť\nmokraď\nmokradín\nmokradina\nMokrance\nMokranciach\nmokrastý\nmokravina\nmokravý\nmokrejšej\nmokrejší\nmokrejšia\nmokrejšie\nmokrejšieho\nmokrejšiemu\nmokrejších\nmokrejším\nmokrejšími\nmokrejšiu\nmokrejšom\nmokrejšou\nmokrina\nmokrinka\nmokriť\nmokrohájska\nMokrohájskej\nMokrohájsky\nMokroluh\nmokro\nmokrosť\nmokrota\nmokručký\nmokrulinký\nmokrunký\nmokrý\nmokvajúci\nmokvanie\nmokvať\nmokvavý\nMokve\nmól\nmôľ\nmolah\nmólach\nmolalita\nmolám\nmólam\nmolami\nmolár\nmolarita\nmolárny\nmoľa\nmol\nmolbo\nMôlča\nMôlči\nmold\nMoldava\nMoldavčan\nMoldavčanka\nMoldave\nMoldavec\nMoldávia\nMoldávii\nmoldavit\nMoldáviu\nMoldavka\nMoldavou\nMoldavsko\nmoldavsky\nmoldavský\nMoldavu\nMoldavy\nmolekulárny\nmolekula\nmolekulový\nmoleskin\nmolestný\nmolestovať\nmolet\nmoletka\nmoletný\nmolí\nMolina\nMoline\nmolino\nMolinom\nMolinu\nmolitan\nmolitanový\nmoľ\nmoll\nmoľmi\nmoľoch\nMoloch\nmoloch\nmoľom\nmólo\nmoľov\nmoľovi\nmoľovitý\nmolový\nmólový\nmolucký\nmoluskum\nmolybdén\nmolybdenit\nmolybdénový\nmomentálny\nmomentánny\nmoment\nmomentík\nmomentka\nmomentmi\nmomentný\nmomentový\nMOMS\nMona\nMonaca\nmonacký\nMonaco\nMonacu\nMonačan\nmonáda\nMonáda\nmonachos\nMonako\nmonandria\nMonarch\nmonarcha\nmonarchia\nmonarchický\nmonarchista\nmonarchistický\nmonarchistka\nmonarchizmu\nmonarchizmus\nmonartritída\nMonastier\nmonastýr\nmonaurálny\nmondénnosť\nmondénny\nmonel\nmonéra\nmoneta\nMoneta\nmonetarizmus\nmonetárny\nmong\nmongol\nMongol\nmongolčín\nmongolčinách\nmongolčinám\nmongolčinami\nmongolčina\nmongolizmus\nMongolka\nmongoloidný\nMongolsko\nmongolsky\nmongolský\nMonika\nMonikini\nmoniliáza\nmonilióza\nmonilizácia\nMonine\nmonistický\nmonitor\nmonitoring\nmonitoringmi\nmonitoringoch\nmonitoringom\nmonitoringov\nmonitoringu\nmonitoringy\nmonitorovacíN\nmonitorovanie\nmonitorovať\nmonitorový\nmonitorujúci\nmonizmus\nmonk\nmono\nmonoblok\nmonobloku\nmonobloky\nmonobrachia\nmonobrachius\nmonocytóza\nmonočlánok\nmonódia\nmonodrám\nmonodrámach\nmonodrámam\nmonodráma\nmonoécia\nmonoestria\nmonofág\nmonofil\nmonofilmi\nmonofilový\nmonofóbia\nmonofónia\nmonofónny\nmonoftong\nmonoftongický\nmonoftongizácia\nmonoftongmi\nmonoftongoch\nmonoftongom\nmonoftongov\nmonoftongový\nmonoftongu\nmonoftongy\nmonofyzitizmus\nmonogamia\nmonogamicky\nmonogamický\nmonogamne\nmonogamný\nmonogenéza\nmonografia\nmonograficky\nmonografický\nmonogram\nmonogramový\nmonochromatickosť\nmonochromaticky\nmonochromatický\nmonochromatopsia\nmonochrómia\nmonochrómie\nmonokarpia\nmonokel\nmonokiny\nmonokla\nmonoklami\nmonokle\nmonokli\nmonoklínia\nmonokloch\nmonoklom\nmonoklov\nmonoklu\nmonokolokabilita\nmonokracia\nmonokracie\nmonokraticky\nmonokratický\nmonokryštál\nmonokryštálov\nmonokryštály\nmonokulárny\nmonokultúr\nmonokultúrach\nmonokultúram\nmonokultúra\nmonokultúrny\nmonokulus\nmonolit\nmonolitický\nmonolitický\nmonolitmi\nmonolitne\nmonolitnosť\nmonolitný\nmonolitový\nmonolitový\nmonologickosť\nmonologický\nmonológ\nmonológy\nmonolyža\nmonolyží\nmonomachia\nmonománia\nmonomér\nmonometalizmus\nmonominerálne\nmonominerálnych\nmononukleárny\nmononukleóza\nmonoparéza\nmonoplán\nmonoplégia\nmonopódia\nmonopol\nmonopolista\nmonopolisticky\nmonopolistický\nmonopolitickým\nmonopolizácia\nmonopolizácie\nmonopolizácii\nmonopolizáciou\nmonopolizáciu\nmonopolizačné\nmonopolizačným\nmonopolizmu\nmonopolizmus\nmonopolizovaniu\nmonopolizovaný\nmonopolizovať\nmonopolne\nmonopolný\nmonopolový\nmonosacharid\nmonoski\nmonoskop\nmonospermia\nmonosylabizmus\nmonoteista\nmonoteistický\nmonoteizmus\nmonotematickosť\nmonotematicky\nmonotematický\nmonotematický\nmonotónia\nmonotónnosť\nmonotónny\nmonotropia\nmonotyp\nmonotypia\nmonotypický\nmonoužívateľské\nmonovalentný\nmonoxid\nmons\nmonseigneur\nmonsieur\nMonsieur\nMonsieura\nmonsignor\nmonsignore\nmonsignormi\nmonstera\nmonštier\nmonštrancia\nmonštrum\nmonštruóznosť\nmonštruózny\nMont\nmontagnolo\nMontana\nmontanistika\nmontánny\nmontanskom\nmontasio\nmontážach\nmontážam\nmontáž\nmontážnických\nmontážnik\nmontážny\nmontblanský\nMonte\nmonté\nMontecarločan\nmontecarloský\nmontér\nmontérkach\nmontérkam\nmontérky\nmontérsky\nMontevidea\nMontevidejčan\nmontevidejský\nMontevideo\nMontevideom\nMontevideu\nmontgolfiéra\nmontgomerák\nmontovacích\nmontovane\nmontovania\nmontovanie\nmontovaním\nmontovaniu\nmontovaný\nmontovať\nmontovňa\nmontovňami\nmontovne\nmontovni\nmontovní\nmontovniach\nmontovňu\nMontpellier\nMontpellieri\nMontpellieru\nMontreal\nMontrealčan\nmontrealský\nMonu\nmonumentalita\nmonumentálnosť\nmonumentálny\nmonument\nmonumentmi\nMony\nmonzún\nmonzúnové\nmonzúnovému\nmonzúnových\nmoonovec\nMOP\nmopeda\nmoped\nmopseľ\nmopslík\nmopslíkovi\nmopy\nmoralista\nmoralisticky\nmoralistický\nmoralistka\nmoralita\nmoralitný\nmoralizátor\nmoralizátorka\nmoralizátormi\nmoralizátorsky\nmoralizátorský\nmoralizátorstvo\nmoralizmu\nmoralizovanie\nmoralizovaný\nmoralizovať\nmoralizujúci\nmoralizujúco\nmorálka\nmorálne\nmorálnopolitický\nmorálno-politický\nmorálnosť\nmorálny\nMorana\nMorane\nmoratórium\nMoravan\nMoravany\nMorava\nMoravcami\nMoravce\nMoravciach\nMoravian\nMoravický\nMoraviec\nmoravikum\nmoravsko\nmoravsko-slovenský\nmoravský\nmora\nmóra\nmor\nmorbidita\nmorbidity\nmorbídnosť\nmorbídny\nmorbili\nmorbus\nmorcovať\nmorča\nmorčací\nmorčacina\nmorčiat\nmorčiatko\nmorčiatok\nmorčí\nmorda\nmordacita\nmordovačka\nmordovaný\nmordovať\nmordovísk\nmordovisko\nmorelka\nMoren\nmorén\nmorénach\nmorénam\nMorena\nmoréna\nmorene\nmorenie\nmorénový\nmorenozit\nmorený\nmoreplavby\nmoreplavec\nmoreplaveckých\nmoreplavectvo\nmore\nmóres\nmóresný\nmorfé\nmorfém\nmorfémach\nmorfémam\nmorfematický\nmorféma\nmorfémový\nmorfín\nmorfinista\nmorfinizmus\nmorfínu\nmorfiový\nmorfium\nmorfogenéza\nmorfológ\nmorfológia\nmorfologicky\nmorfologický\nmorfometriu\nmorfondírovať\nmorfondovať\nmorfóza\nmorganatický\nmorganizmus\nmoriaci\nmoriak\nmoriaky\nMoriaky\nmoriami\nmoriareň\nmoriarne\nMóric\nMóricovej\nmoridlo\nmoridlové\nMorin\nMorina\nMorini\nmoritát\nmoriť\nmorka\nmormón\nmormorando\nmornár\nmornárstvo\nmorotizmus\nmorovo\nmórovo\nmorový\nmórový\nmorozita\nmoróznosť\nmorózny\nMorseami\nMorse\nMorseho\nMorsem\nMorsemu\nMorseova\nMorseove\nMorseovo\nMorseovu\nmorsky\nmorský\nmortadela\nmortadelu\nmortalita\nmortalite\nmortalitou\nmortalitu\nmortality\nmorte\nmortifikácia\nmortinalita\nmortinatálny\nmorula\nmorúš\nmoruša\nmoruší\nmorušová\nmorušovej\nmorušovo\nmorzeovka\nmoržovať\nMOS\nmosadz\nmosadzný\nmosadzovožltý\nMosela\nMosele\nmoselského\nmoselským\nMosely\nMoskovčan\nmoskovský\nMoskva\nmoskvič\nmoskyta\nmoskyt\nmoskytiéra\nmoskytí\nmoskytmi\nmoskyťom\nmoskyťou\nmoskytovi\nmoslimami\nmoslim\nmoslimka\nmoslimský\nmoslimský\nmosta\nMostar\nmostár\nMostare\nmostáreň\nmostárňach\nmostárňam\nMostárňam\nmostársky\nMostaru\nmost\nmostík\nmôstik\nmostíkový\nmôstikový\nmostín\nmostina\nmostmi\nmostnica\nmostný\nmostoviek\nmostovka\nmostovkou\nmostovku\nmostovky\nmostový\nmosúriť\nMoškovec\nmošovskej\nmošovskom\nMošovský\nMoštenica\nMoštenice\nMošurov\nmošus\nmot\nmoták\nmotanica\nmotanina\nmotanisko\nmotať\nmotávať\nmotela\nmotel\nmotelmi\nmotelový\nmotešického\nMotešických\nmotet\nmoteto\nmotilita\nmotivácia\nmotivačne\nmotivačno\nmotivačný\nmotív\nmotíve\nmotivicky\nmotivický\nmotivovanie\nmotivovaný\nmotivovať\nmotkanie\nmotkať\nmotocross\nmotocykel\nmotocykla\nmotocyklami\nmotocykle\nmotocykli\nmotocyklista\nmotocyklistka\nmotocyklizmu\nmotocykloch\nmotocyklom\nmotocyklov\nmotocyklový\nmotocyklu\nmotohliadka\nmotok\nmotokár\nmotokárach\nmotokáram\nmotokára\nmotokárový\nmotokros\nmotokrosový\nmotolica\nmotorák\nmotor\nmotorček\nmotorest\nmotorestmi\nMotorgenerátor\nmotorgenerátory\nmotorickosť\nmotoricky\nmotorický\nmotorika\nmotorist\nmotorista\nmotoristický\nmotoristka\nMotoristove\nmotorizácia\nmotorizácie\nmotorizácii\nmotorizáciou\nmotorizáciu\nmotorizačnej\nmotorizmus\nmotorizovaný\nmotorizovať\nmotorkár\nmotorka\nmotorobot\nMotorola\nmotorovo\nmotorový\nmototurista\nmototuristický\nmototuristika\nMôťová\nmotovidlo\nMôťovský\nmott\nMott\nmotto\nmotúza\nmotúz\nmotúzik\nmotúzok\nmotúzový\nmotúžtek\nmotyčka\nmotýk\nmotyka\nmotýľa\nmotýľ\nmotýle\nmotýlí\nmotýlik\nmotýľ\nmotýľou\nmotýľovi\nmouliné\nMOV\nmovitosť\nmovitý\nmozaika\nmozaikovite\nmozaikovito\nmozaikovitosť\nmozaikovitý\nmozaikovo\nmozaikový\nmozambický\nMozambik\nmozgami\nmozgovo\nmozgový\nmozoček\nmozočka\nmozočkami\nmozočkoch\nmozočkom\nmozočkov\nmozočkový\nmozočku\nmozočky\nmozog\nmozoľa\nmozole\nmozoli\nmozoliť\nmozoľ\nmozoľmi\nmozoľnatý\nmozoľne\nmozoľný\nmozoľoch\nmozoľom\nmozoľov\nmozoľovatý\nmozoľovitý\nmozoľu\nmozzarella\nMôž\nmôžbyť\nmožne\nmôžno\nmožno\nmožnosťN\nmožnože\nmožný\nmôžuc\nMP\nMPa\nMPSVR\nMR\nmračením\nmračien\nmráčik\nmračistý\nmračiť\nmráčka\nmráčkami\nmráčkoch\nmráčkom\nmráčkov\nmráčku\nmráčky\nmračno\nmračný\nmrákav\nmrákava\nmrak\nmrakodrap\nmrakodrapová\nmrakodrapové\nmrakodrapového\nmrákot\nmrákota\nmrákotný\nmramorárov\nmramor\nmramorovanie\nmramorovaný\nmramorovať\nmramorovitosť\nmramorovo\nmramorový\nmramorový\nmrašti\nmraštime\nmraštite\nmraštiť\nmrau\nmrauč\nmraučať\nmrauči\nmraučiak\nmraučime\nmraučite\nmrauknúť\nmrav\nmravčal\nmravčaní\nmravčať\nmravček\nmravčekova\nmravčeky\nmravčenie\nmravčiarom\nmravčí\nmravecL\nmravenčia\nMravenčiar\nmravenčiara\nmravenísk\nmravenisko\nmravne\nmravno\nmravnosť\nmravnosťN\nmravnostný\nmravný\nmravokárca\nmravokárny\nmravokársky\nmravopočestne\nmravopočestnosť\nmravopočestný\nmravoučne\nmravoučnosť\nmravoučný\nmravouka\nmravoveda\nmráz\nmraze\nmrazenia\nmrazenie\nmrazením\nmrazený\nmraziaci\nmraziar\nmraziareň\nmraziarensky\nmraziarenský\nmraziarenstvo\nmraziarňach\nmraziarňam\nmraziarsky\nmraziarstvach\nmraziarstvam\nmraziarstvo\nmrazík\nmrázik\nmrazísk\nmrazisko\nmraziť\nmrazivo\nmrazivý\nMrázkom\nmrazmi\nmraznička\nmrazoch\nmrazom\nmrazov\nmrazový\nmrazu\nmrazuvzdornosť\nmrazuvzdorný\nmrazy\nmrcina\nmrč\nmrčať\nmrčia\nmrdať\nmrdkať\nmrdnúť\nmrena\nmrení\nmreža\nmreží\nmrežovane\nmrežovaný\nmrežovín\nmrežoviny\nmrežový\nmrhač\nmrhaní\nmrhania\nmrhanie\nmrhaním\nmrhaniu\nmrhať\nmrholenie\nmrholiaci\nmrholiť\nmŕch\nmrchavo\nmrchavý\nmrcha\nmrchoviskami\nmriečkovať\nmrieť\nmriežkavý\nmriežka\nmriežkovanie\nmriežkovaný\nmriežkovať\nmriežkovitý\nmriežkový\nmrkaná\nmrkanie\nmrkať\nmrk\nmrknutia\nmrknutie\nmrknúť\nmrkotajúci\nmrkotný\nmrkva\nmrkvička\nMrkvičková\nmrkvovočervený\nmrkvový\nmŕľ\nmrľa\nmrlí\nmrmkať\nmrmláč\nmrmlanie\nmrmlať\nmrmlavo\nmrmlavý\nmrmloš\nmrmlot\nmrmlotmi\nmrmotať\nmrmot\nmrmotmi\nmrmrať\nMrňa\nmrňau\nmrnč\nmrnčanie\nmrnčať\nmrnči\nmrnčime\nmrnčite\nmrnkať\nmrnknúť\nmrože\nmroží\nmrož\nmrskať\nmrsknúť\nmršina\nmršinka\nmrštený\nmrštil\nmrštiť\nmŕštiť\nmrštný\nmŕtvic\nmŕtvica\nmŕtvieť\nmŕtvin\nmŕtvinách\nmŕtvinám\nmŕtvinami\nmŕtvina\nmŕtvola\nmŕtvolka\nmŕtvolne\nmŕtvolný\nmŕtvonarodené\nmŕtvonarodených\nmŕtvonarodeným\nmŕtvosť\nmŕtvot\nmŕtvotách\nmŕtvotám\nmŕtvotami\nmŕtvota\nmŕtvy\nmrúc\nmruč\nmručal\nmručala\nmručali\nmručalo\nmručať\nmručí\nmručia\nmručiac\nmručím\nmručíme\nmručíš\nmručíte\nmručme\nmručte\nmrvách\nmrvám\nmrvanec\nmrva\nmrvení\nmrvenica\nmrvenička\nmrvenie\nmrviť\nmrz\nmrzácky\nmrzáctvach\nmrzáctvam\nmrzáctvo\nmrzačené\nmrzačenie\nmrzáčik\nmrzačiť\nmrzáčka\nmrzáčkoch\nmrzáčkom\nmrzáčkov\nmrzáčkovi\nmrzáčkovia\nmrzák\nMrzenom\nmrzieť\nmrzievať\nmrzkáň\nmrzkejší\nmrzko\nmrzkosť\nmrzký\nmrznúci\nmrznutiu\nmrznúť\nmrzúch\nmrzút\nmrzute\nmrzutec\nmrzuto\nmrzutosť\nmrzutý\nms\nMS\nMSJ\nMsKS\nMSN\nMsP\nMsR\nmsti\nmstí\nmstia\nmstili\nmstím\nmstíme\nmstiť\nMsÚ\nMSv\nMsZ\nMŠ\nMŠK\nMT\nMTV\nmú\nmucko\nmúč\nmučania\nmučanie\nmučať\nmučenica\nmučenícky\nmučeníctvach\nmučeníctvam\nmučeníctvo\nmučenie\nmučeník\nmučený\nmučený\nmúči\nmučiaci\nmúčiar\nmučiareň\nmučiarňach\nmučiarňam\nmučidlo\nMučín\nmučiteľ\nmučiteľka\nmučiť\nmučivo\nmučivý\nmúčka\nmúčnatka\nmúčnatosť\nmúčnatý\nmúčnik\nmúčnikové\nmúčny\nmudda\nmudoňho\nMUDr\nmudra\nMudra\nmudrácky\nmudráctvach\nmudráctvam\nmudráctvo\nmudráčka\nmudrák\nmudrc\nmudrcova\nmudrcovo\nmúdrejme\nmúdrejší\nmúdrejte\nmúdrejú\nmúdrejúc\nmúdrieť\nmudrlant\nmudrlantka\nmudrlantský\nmudrlantstvo\nMudroňova\nMudroňove\nMudroňovo\nMudroňovu\nmúdroslovia\nmúdrosť\nmudrovačka\nmudrovanie\nmudrovať\nMudru\nmúdry\nmudžahedín\nmudžahíd\nmudžahídovia\nmuezín\nmuf\nmufla\nmuflón\nmuflónic\nmuflónica\nmufloní\nmuflóní\nmufloňom\nmuflóňom\nmufloňou\nmuflóňou\nmuflóny\nmufna\nmufňa\nmufti\nmucha\nMuchin\nmucholapka\nmuchotrávka\nmuk\nmúk\nMukačeva\nMukačeve\nMukačevo\nMukačevskú\nmúkach\nmúkajúc\nmúkam\nmúkami\nmúkať\nmúka\nmuka\nmukel\nmukl\nmuknúť\nmukoid\nmúkový\nmukyňa\nmukyňový\nmúl\nMuľa\nmúľa\nmulách\nmulám\nmulat\nmulatka\nmulatovať\nmula\nmul\nmulčovania\nmulčovanie\nmulčujú\nmúle\nmulec\nmúli\nmulica\nmulilaterálny\nmuliné\nmúlistý\nmulit\nmúľ\nmull\nmulláh\nmulmi\nmúľmi\nmúľoch\nmúľom\nmúľov\nmulovi\nmulovu\nmulový\nMulti\nmultiagentový\nmulticelulárny\nmultifunkčný\nmultikár\nmultikárach\nmultikáram\nmultikára\nmultikín\nmultikino\nmultikultúr\nmultikultúrach\nmultikultúram\nmultikultúrami\nmultikultúra\nmultikultúrny\nmultilaterálny\nmultimediálny\nmultimédium\nmultimédium\nmultimeter\nmultimilionár\nmultimodálny\nmultinacionálny\nmultinárodný\nmultiparazitizmus\nmultiparita\nMultipla\nmultiplatformový\nMultiple\nmultiplex\nmultiplexe\nmultiplexmi\nmultiplexný\nmultiplexoch\nmultiplexom\nmultiplexor\nmultiplexov\nmultiplexu\nmultiplexy\nmultiplicita\nmultiplikácia\nmultiplikácie\nmultiplikácii\nmultiplikačne\nmultiplikačný\nmultiplikát\nmultiplikátor\nmultiplikovala\nmultiplikovali\nmultiplikovať\nmultiplikujú\nMultiplum\nmultipolárneho\nmultipolárnej\nmultipolárnemu\nmultipolárny\nmultiprocesor\nmultiprocesorový\nmultiprogramovanie\nmultiservis\nmultiservisný\nmultiužívateľskom\nmultiužívateľských\nmultivesmír\nmultivitamín\nmultivitamínový\nmúľu\nmumaj\nmumák\nmúmia\nmumifikácia\nmumifikovať\nmúmio\nmumko\nmumlák\nmumlanie\nmumlať\nmumlavo\nmumlot\nmumps\nmumraj\nmumraju\nmumrať\nmu\nmundánny\nmundúr\nmungo\nmunícia\nmunicipalít\nmunicipalita\nmunicipalitách\nmunicipalitám\nmunicipalitami\nmunicipalite\nmunicipalitou\nmunicipalitu\nmunicipality\nmunicipalizácii\nmunicipalizáciou\nMunicipálna\nmunicipálne\nmunicipálneho\nmunicipálnej\nmunicipálnemu\nmunicipálnou\nmunicipálnu\nmunicipálny\nmunicipálnych\nmunicipálnym\nmunicipálnymi\nmunicípiá\nmunicipiálny\nmunicípií\nmunicipum\nmuničný\nmunificencia\nMur\nmúračky\nmurách\nmuralizmus\nmurám\nMurám\nmurami\nmúrami\nMuráňa\nMuránčan\nMuránčanka\nMuráni\nmúranica\nMuráň\nmuránsky\nmurár\nmurárčina\nMurárik\nMurárikových\nmurárok\nmurársky\nmurárstvach\nmurárstvam\nmurárstvo\nmura\nmúr\nmurckať\nmúrik\nMurin\nMurina\nmurín\nmuríni\nmurínovi\nmurív\nmurivo\nmurivový\nMurka\nMurko\nmurmanského\nMurmanskej\nMurmanskom\nMurmanskú\nmurovanica\nmurovanie\nmurovaný\nmurovať\nmuroviek\nmúrovo\nmúrový\nmurra\nMUS\nMusa\nmusaka\nMuse\nmusic\nmusieť\nmuskarín\nmuskovit\nmuskulárny\nmuskulatúra\nmuskulatúry\nmüsli\nmustangami\nmustang\nmustangu\nmustangy\nmustier\nmustra\nmušací\nmušacinec\nmušelín\nmušelínový\nmušiel\nmušieľ\nmuší\nmušinec\nMušiny\nmušísk\nmušisko\nmuškát\nmuškátmi\nmuškátovník\nmuškátový\nmuška\nmušketa\nmušketách\nmušketám\nmuškete\nmušketiera\nmušketier\nmušketiersky\nmušketou\nmušketu\nmuškety\nmuškiet\nmuškovitými\nmušľa\nmušlí\nmušlička\nmušľovitý\nmušľový\nmuštární\nmušt\nmuštier\nmuštmi\nmuštovaniu\nmuštový\nmuštra\nmuštrovať\nmuta\nmutabilita\nmutácia\nmutačný\nmutagén\nmutagénny\nmutant\nmutante\nmutarotácia\nMute\nmútenia\nmútenie\nmútiaci\nmutilácia\nMutina\nmútiť\nmútňav\nmútňava\nmútnieť\nmútnosť\nmútny\nmutovaného\nmutovaných\nmutovať\nmútovnica\nmútovník\nMutu\nmutualita\nmutualizmus\nmúz\nmúzach\nmúzam\nmúza\nmúzeach\nmuzeálny\nmúzejnícky\nmúzejníctvach\nmúzejníctvam\nmúzejníctvo\nmúzejník\nMúzejno\nmúzejný\nmuzeloógia\nmuzeológ\nmuzeológia\nmuzeologický\nmuzeologička\nmúzeum\nmuzicírovane\nmuzicírovania\nmuzicírovanie\nmuzicírovaniu\nmuzicírovaný\nmuzicírovať\nmúzický\nmuzikál\nmuzikáli\nmuzikalita\nmuzikálmi\nmuzikálnosť\nmuzikálny\nmuzikálový\nmuzikant\nmuzikantka\nmuzikantský\nmuzikantstvo\nmuzikány\nmuzika\nmuzikológ\nmuzikológia\nmuzikologický\nmuzikologička\nmuzikovať\nmužatka\nmuž\nmuži\nmužíci\nmužícky\nmužíček\nmužíčka\nmužíčkami\nmužíčkoch\nmužíčkom\nmužíčkov\nmužíčkovi\nmužíčkovia\nmužík\nMužíkovho\nMužla\nMužle\nmužne\nmužnieť\nmužnosť\nmužný\nmužov\nmužskosť\nmužsky\nmužský\nmužstvo\nMV\nMVDr\nMVK\nMVO\nMVP\nMW\nMWb\nMWh\nmyalgia\nmyanma\nmyasténia\nmycélií\nmycélium\nmycella\nmycetofág\nmycí\nmyčka\nmydielko\nmydielok\nmydlár\nmydlárni\nmydlárske\nmydlársky\nmydliaci\nmydlina\nmydliť\nmydlo\nmydlovnička\nmydlový\nmydriatikum\nmydriáza\nmyektómia\nmyelencafalón\nmyelín\nmyelitída\nmyelitis\nmyeloftíza\nmyelóm\nmyeloneuritída\nmyelopoéza\nmyiáza\nmyióza\nMyjava\nmyjavského\nmyjavskej\nmyjavskému\nmyjavskom\nmyjavskú\nmyjavských\nmyjavským\nmyjavskými\nMyjavský\nmyjúcej\nmyk\nMykací\nmykacieho\nmykacích\nmykania\nmykanie\nmykaný\nmykať\nmyk\nmykcovať\nmyknutie\nmyknutím\nmyknúť\nmykobiont\nmykoid\nmykológ\nmykológia\nmykologický\nmykologička\nmykoplazmóza\nmykóza\nmyksľovať\nmyksovať\nmylady\nmýlenie\nmýlený\nmýliť\nmýlivý\nmýlka\nmylne\nmylnosť\nmylný\nmylonit\nmylord\nmyoblast\nmyocyt\nmyofibrila\nmyofibróm\nmyogelóza\nmyograf\nmyokard\nmyokarditída\nmyokardóza\nmyoklonia\nmyológia\nmyóm\nmyoparalýza\nmyopatia\nmyopia\nmyopické\nmyorexa\nmyospazmus\nmyostimulátor\nmyotómia\nmyotónia\nmyóza\nmyozín\nmyrh\nmyrhách\nmyrhám\nmyrhami\nmyrha\nmyrhovník\nmyriad\nmyriád\nmyriáda\nmyriádam\nmyriada\nmyringitída\nmyringoskopia\nmyringotómia\nmyriofilum\nmyrmekogamia\nmyrmekochória\nmyrmekológ\nmyrmekológia\nmýrt\nmyrta\nmyrtový\nmys\nmyseľ\nMyslava\nMyslave\nMyslavskom\nmyslavskú\nMyslavy\nmyslene\nmyslenie\nmyslený\nmysliaci\nmyslienka\nmyslieť\nmysliteľ\nmysliteľka\nmysliteľne\nmysliteľný\nmysliteľsky\nmysliteľský\nmysliteľstvo\nmyslivecká\nmysliveckej\nmysliveckú\nMyslivna\nMySpell\nMySQL\nmystagong\nmystériový\nmysterióznosť\nmysteriózny\nmystérium\nmysticizmus\nmystickosť\nmysticky\nmystický\nmystička\nmystifikácia\nmystifikáciám\nmystifikácie\nmystifikácií\nmystifikáciou\nmystifikáciu\nMystifikátori\nmystifikoval\nmystifikovala\nMystifikovali\nmystifikovanie\nmystifikovaním\nmystifikovať\nmystifikuje\nmystika\nmystik\nmyšací\nmyšacina\nmyšacinec\nmyšiak\nmyšiaky\nmyšička\nmyší\nmyšilovka\nmyšina\nmyšiť\nmyš\nmyška\nmyšlienka\nmyšlienkove\nmyšlienkovo\nmyšlienkový\nmýt\nmýtach\nmýtam\nmyté\nmýtickosť\nmýticky\nmýtický\nmytie\nmytím\nMýtina\nmýtizovanými\nmýtizovať\nmýtmi\nmýtnik\nmýtny\nmyto\nmýtografov\nmýtoch\nmytol\nmytológ\nmytológa\nmytológia\nmytologický\nmytológmi\nmýto\nmýtománia\nmýtov\nmýtus\nmyť\nmýty\nMýval\nmyxedém\nmyxofibrosarkóm\nmyxóm\nmyxomatóza\nmyxomycéty\nmyzofóbia\nMZ\nmzdách\nmzdám\nmzda\nmzdovo\nmzdový\nMZV\nMŽP\nn\nN\nň\nŇ\nna\nnaakumuloval\nnaakumulovala\nnaakumulovali\nnaakumulovalo\nnaakumulovať\nnaakumuluj\nnaakumuluje\nnaakumulujem\nnaakumulujeme\nnaakumuluješ\nnaakumulujete\nnaakumulujme\nnaakumulujte\nnaakumulujú\nnaakumulujúc\nnaaplikovať\nnaaranžovanie\nnaaranžovaný\nnaaranžovať\nnáb\nnababrať\nnabací\nnabádanie\nnabádaný\nnabádať\nnabádavo\nnabádavý\nnabadúrený\nnabadúriť\nnabadurkať\nnabagrovanou\nnabagrovať\nnabájac\nnabájacej\nnabájiť\nnabála\nnabaláchať\nnabalenia\nnabalenie\nnabaleniu\nnabalený\nnabaliť\nnabaľoval\nnabaľovala\nnabaľovali\nnabaľovalo\nnabaľovanie\nnabaľovanými\nnabaľovať\nnabaľuj\nnabaľuje\nnabaľujem\nnabaľujeme\nnabaľuješ\nnabaľujete\nnabaľujme\nnabaľujte\nnabaľujú\nnabaľujúc\nnabalzamovať\nnabásniť\nnabáti\nnabažiť\nnabehať\nnabehávať\nnábeh\nnabehlina\nnabehline\nnabehnutia\nnabehnutie\nnabehnutím\nnabehnutiu\nnabehnúť\nnabehnutý\nnábehový\nnabehúvať\nnabelaso\nnáber\nnaberač\nnaberače\nnaberačka\nnaberaču\nnaberák\nnaberania\nnaberanie\nnaberaním\nnaberaný\nnaberať\nnabetón\nnabiediť\nnabiehacích\nnabiehania\nnabiehanie\nnabiehaním\nnabiehaniu\nnabiehaný\nnabiehať\nnabieľ\nnabieli\nnabielia\nnabieliac\nnabielil\nnabielila\nnabielili\nnabielilo\nnabielim\nnabielime\nnabieliš\nnabieliť\nnabielite\nnabieľme\nnabielo\nnabieľte\nnabifľovaná\nnabifľovať\nnabíjací\nnabíjač\nnabíjačka\nnabijak\nnabijaku\nnabijaky\nnabíjané\nnabíjaného\nnabíjanie\nnabíjať\nnabitie\nnabiť\nnabitý\nnabla\nnabledo\nnablízko\nnablízku\nnablížiť\nnablýskaný\nnablýskať\nnabob\nnabodať\nnabodávajúci\nnabodávať\nnabodnutie\nnabodnúť\nnabohovať\nnáboj\nnábojke\nnábojnica\nnábojnicovú\nnábojový\nnabok\nnaboku\nnábor\nnáborový\nnaboso\nnáboženskosť\nnábožensky\nnáboženský\nnáboženstvo\nnábožne\nnábožnosť\nnábožný\nnábr\nnabranie\nnabraný\nnabrať\nnabrechať\nnábreží\nnábrežia\nnábrežiach\nnábrežiam\nnábrežiami\nnábrežie\nnábrežím\nnábrežiu\nnábrežný\nnabronzovo\nnabrúsene\nnabrúsenie\nnabrúsený\nnabrúsiť\nnabrýzgať\nnabrznúť\nnabubrieť\nnabudená\nnabudené\nnabudenie\nnabudí\nnabudiť\nnabudúce\nnabumbať\nnabúra\nnabúraj\nnabúrajme\nnabúrajte\nnabúrajú\nnabúrajúc\nnabúral\nnabúrala\nnabúrali\nnabúralo\nnabúram\nnabúrame\nnabúrania\nnabúranie\nnabúraním\nnabúraniu\nnabúraný\nnabúraš\nnabúrať\nnabúrate\nnabúriť\nnábytkár\nnábytkárka\nnábytkársky\nnábytkárstvach\nnábytkárstvam\nnábytkárstvo\nnábytkový\nnábytok\nnacáp\nnacápal\nnacápala\nnacápali\nnacápalo\nnacápať\nnacápe\nnacápem\nnacápeme\nnacápeš\nnacápete\nnacápme\nnacápte\nnacápu\nnacápuc\nnacediť\nnacelkom\nnacenganý\nnacengať\nnácest\nnácia\nnacicaný\nnacicať\nnacieliť\nnacifikácia\nnacigániť\nnacionál\nnacionále\nnacionáliách\nnacionáliám\nnacionáliami\nnacionálie\nnacionálií\nnacionalista\nnacionalisticky\nnacionalistický\nnacionalistka\nnacionalita\nnacionalizácia\nnacionalizácie\nnacionalizácii\nnacionalizáciou\nnacionalizmus\nnacionalizovala\nnacionalizovaného\nnacionalizovanej\nnacionalizovať\nnacionálny\nnacista\nnacistický\nnacistka\nnacizmus\nnactiuhŕhačstvo\nnactiutŕhač\nnactiutŕhačsky\nnactiutŕhačský\nnactiutŕhačstvo\nnactiutŕhanie\nnacvičený\nnacvičiť\nnácvičný\nnacvičovanie\nnacvičovateľ\nnacvičovateľka\nnacvičovať\nnácvik\nnácvikový\nnacvrkať\nnač\nnačačkaní\nnačačkať\nnačahovať\nnačakať\nnačapovaný\nnačapovať\nnačarbaný\nnačarbať\nnačarbi\nnačarbime\nnačarbite\nnačarbú\nnačarbúc\nnačas\nnačase\nnačasovane\nnačasovanie\nnačasovaný\nnačasovať\nnačať\nnačatý\nnačechraný\nnačechrať\nnačechrávať\nnáčelnícky\nnáčelníctva\nnáčelníčka\nnáčelník\nnačernastý\nnačerpania\nnačerpanie\nnačerpaním\nnačerpaniu\nnačerpaný\nnačerpať\nnačerti\nnačertime\nnačertite\nnačertiť\nnačervenalý\nnačervenastý\nnačervenavý\nnačerveniť\nnačervenkasto\nnačervenkastý\nnačerveno\nnačesať\nnačiahnuť\nnačiaraný\nnačiarať\nnačieraním\nnačierať\nnačierniť\nnačierno\nnačim\nnačínať\nnáčinie\nnačisti\nnačistime\nnačistite\nnačistiť\nnačisto\nnačistom\nnačítane\nnačítanie\nnačítaný\nnačítaný\nnačítať\nnačítavanie\nnačítavať\nnačmárať\nnačmudnúť\nnačo\nnačože\nnačrenie\nnačretia\nnačretie\nnačrieť\nnačrpkať\nnačrtať\nnačrtávanie\nnačrtávať\nnáčrt\nnáčrtkovitý\nnáčrtmi\nnáčrtník\nnáčrtníku\nnáčrtníky\nnačrtnutia\nnačrtnutie\nnačrtnutím\nnačrtnúť\nnačrtnutý\nnáčrtok\nnáčrtovitý\nnačrúc\nnačuchnúť\nnačuchraný\nnačuchrať\nnačuchrávať\nnačuchre\nnačuchrem\nnačuchreme\nnačuchreš\nnačuchrete\nnačuchri\nnačuchrime\nnačuchrite\nnačuchrú\nnačuchrúc\nnačúvací\nnačúvajúcemu\nnačúvajúci\nnačúvajúcim\nnačúvaní\nnačúvania\nnačúvanie\nnačúvaním\nnačúvaniu\nnačúvať\nnáčuv\nnáčuve\nnad\nNaďa\nnaďabiť\nnadácia\nnadačný\nnadájať\nnaďalej\nnaďaleko\nnadanie\nnadaný\nnaďap\nnaďapí\nnaďapia\nnaďapiac\nnaďapil\nnaďapila\nnaďapili\nnaďapilo\nnaďapím\nnaďapíme\nnaďapíš\nnaďapiť\nnaďapíte\nnaďapme\nnaďapte\nnadar\nnadariť\nnadarmo\nnadaromnicu\nnadať\nnadávajúci\nnadávaní\nnadávania\nnadávanie\nnadávaním\nnadávať\nnadávka\nnadbehnutím\nnadbehnúť\nnadbi\nnadbiehaní\nnadbiehania\nnadbiehanie\nnadbiehaním\nnadbiehaniu\nnadbiehať\nnadbiehavý\nnadbito\nnadbytočne\nnadbytočnosť\nnadbytočný\nnadbytok\nnadcenený\nnadceniť\nnadčas\nnadčasovo\nnadčasovosť\nnadčasový\nnadčloveče\nnadčlovek\nnaddenominačný\nnaddĺžiť\nnaddvíhať\nnaddvihnúť\nnaddvihnutý\nnaddvihovať\nNade\nnadefinovanú\nnádeja\nnadejám\nnádejame\nnádejaš\nnádejate\nnádejať\nnádej\nnádejeplný\nnádejne\nnádejnosť\nnádejný\nnadekrétovaná\nnadekrétované\nnadekrétovať\nnadelené\nnadelenie\nnadeliť\nnadeľovanie\nnadeľovať\nnadeň\nnádennícky\nnádenníctvach\nnádenníctvam\nnádenníctvo\nnádenníčiť\nnádenníčka\nnádenník\nnadesiatovať\nNadežd\nNadežda\nnadhadzovať\nnadháňač\nnadháňače\nnadháňať\nnádher\nnádhera\nnádherne\nnádhernosť\nnádherný\nnadhľad\nnadhlavník\nnadhlavníkový\nnadhlavníku\nnadhlavníky\nnadhmat\nnadhmatmi\nnadhmotný\nnadhnať\nnadhnúť\nnadhodené\nnadhodeného\nnadhodenej\nnadhodenému\nnadhodených\nnadhodiť\nnadhodnocovania\nnadhodnocovanie\nnadhodnocovaním\nnadhodnocovaniu\nnadhodnocovaný\nnadhodnocovať\nnadhodnota\nnadhodnotenia\nnadhodnotenie\nnadhodnotením\nnadhodnoteniu\nnadhodnotený\nnadhodnotiť\nnadhraničná\nnadhrobný\nnadhviezdny\nnádch\nnadchádzajúci\nnadchádzať\nnadchádzka\nnádchach\nnádcham\nnádchami\nnádcha\nnadchnutie\nnadchnúť\nnadchnutý\nnadchod\nnadchodiť\nnádchový\nnadchýnať\nNadi\nnadiať\nnadicap\nnadíduc\nnadieľať\nnádielka\nňadier\nnadierovaná\nnadierovania\nnadierovanie\nnadierovať\nnadieť\nnadievať\nnadiktovaním\nnadiktovaný\nnadiktovať\nnadindividuálny\nnadir\nnadire\nnadirmi\nnadiroch\nnadirom\nnadirov\nnadiru\nnadiry\nnadísť\nnadívať\nnadivo\nnadivoko\nnadjazd\nnadkladanie\nnadkladať\nnadkolenie\nnadkontingentné\nnadlacký\nNadlačan\nnadľahčení\nnadľahči\nnadľahčime\nnadľahčite\nnadľahčiť\nnadľahčovanie\nnadľahčovať\nNadlak\nnadlaktie\nnadlep\nnadlepšenia\nNadlepšenie\nnadlepšeniu\nnadlepšený\nnadlepšovania\nnadlepšovanie\nnadlepšuje\nnadlepšujú\nnadleť\nnadletieť\nnadletovať\nnadlho\nnadlhšie\nnadlimitne\nnadlimitný\nnadlomiť\nnadložená\nnadložie\nnadložiť\nnadložný\nnadľudí\nnadľudia\nnadľuďmi\nnadľuďoch\nnadľuďom\nnadľudskosť\nnadľudsky\nnadľudský\nnadmerne\nnadmernosť\nnadmerný\nnadmiera\nnadmierna\nnadmierne\nnadmierneho\nnadmiernou\nnadmierny\nnadmorský\nnadmul\nnadmula\nnadmuli\nnadmulo\nnadmúť\nnadnárodne\nnadnárodnosť\nnadnárodný\nnadnášania\nnadnášanie\nnadnášaný\nnadnášať\nnadnáška\nnadnesene\nnadnesenosť\nnadnesený\nnadniesť\nnadnormálny\nnadnormatívny\nnado\nnádob\nnadobariť\nnádoba\nnádobí\nnádobka\nnadoblačný\nnadoblička\nnadobličkový\nnadobor\nnadobro\nnadobúdacej\nnadobúdací\nnadobúdacia\nnadobúdacie\nnadobúdacieho\nnadobúdacích\nnadobúdacím\nnadobúdacími\nnadobúdaciu\nnadobúdacom\nnadobúdacou\nnadobúdania\nnadobúdanie\nnadobúdaním\nnadobúdaniu\nnadobúdaný\nnadobúdateľ\nnadobúdateľka\nnadobúdateľský\nnadobúdať\nnadobudnutie\nnadobudnúť\nnadobudnutý\nnadobudnutý\nnadobýval\nnadočnicový\nnádoj\nnadojené\nnadojeného\nnadojení\nnadojením\nnadojiť\nnadokenná\nnadokenné\nnadol\nnadonášať\nnádor\nnádorovite\nnádorovito\nnádorovitosť\nnádorovitý\nnádorovo\nnádorový\nnadosmrti\nnadosobný\nnadostač\nNaďou\nnadovážať\nnadovšetko\nnadpísaný\nnadpísať\nnadpis\nnadpisovať\nnadpíšu\nnadpíšuc\nnadplán\nnadplánovane\nnadplánovaného\nnadplánovaných\nnadplánovanými\nnadplánový\nnadplatky\nnadpleť\nnadpletať\nnadpletie\nnadpletiem\nnadpletieme\nnadpletieš\nnadpletiete\nnadpleťme\nnadpleťte\nnadpletú\nnadpletúc\nnadpliesť\nnadplietla\nnadplietli\nnadplietlo\nnadplietol\nnadpočetný\nnadpodnikové\nnadpodnikového\nnadpodnikovej\nnadpodnikovú\nnadpolovične\nnadpolovičný\nnadponuka\nnadponukou\nnadporučícky\nnadporučíčka\nnadporučík\nnadpozemsky\nnadpozemský\nnadprácach\nnadprácam\nnadpráca\nNadpracované\nnadpracovanie\nnadpracovaných\nnadpracovať\nnadpracovávať\nnadpracúvať\nnadpracúvť\nnadpradovávať\nnadprahové\nnadprahového\nnadpráporčícky\nnadpráporčíčka\nnadpráporčík\nnadpráv\nnadprávach\nnadprávam\nnadprávo\nnadpriadať\nnadpriasť\nnadpriemerne\nnadpriemernosť\nnadpriemerný\nnadprirodzene\nnadprirodzenosť\nnadprirodzený\nnadprodukcia\nnadprodukčný\nnadprodukt\nnadproduktmi\nňadraa\nňadraá\nňadraách\nňadraám\nňadraami\nnadrábaním\nnadrábať\nnadradene\nnadradenia\nnadradenie\nnadradeniu\nnadradenosť\nnadradený\nnadradiť\nnadraďované\nnadraďovania\nnadraďovanie\nnadraďovaním\nnadraďovaniu\nnadraďovať\nňadrae\nnadralista\nnadránom\nnadrapacovať\nnadrapiť\nnadrapovať\nnadrať\nnadratviť\nňadrau\nnadraziť\nnadrážať\nnádražie\nnádražný\nnadŕdať\nnadrealista\nnadrealisticky\nnadrealistický\nnadrealizmus\nnadrezortný\nnadrhnúť\nnadriadená\nnadriadením\nnadriadenosť\nnadriadený\nnadriapať\nnadriecť\nnadrieť\nňadriev\nnadŕľať\nnadrobené\nnadrobených\nnadrobiť\nnadrobno\nnadrogoval\nnadrogovala\nnadrogovali\nnadrogovalo\nnadrogovaný\nnadrogovať\nnadroguj\nnadroguje\nnadrogujem\nnadrogujeme\nnadroguješ\nnadrogujete\nnadrogujme\nnadrogujte\nnadrogujú\nnadrogujúc\nňadro\nnadrozmerný\nnadrúc\nnadrviť\nnadŕžanie\nnadržaný\nnadŕžať\nnádrž\nnadržiavania\nnadržiavanie\nnadržiavaniu\nnadržiavať\nnádržiek\nnádržka\nnádržkový\nnadržovať\nnádržový\nnadsadenia\nnadsadenie\nnadsadením\nnadsadeniu\nnadsadený\nnadsadí\nnadsadia\nnadsadil\nnadsadila\nnadsadili\nnadsadilo\nnadsadím\nnadsadiť\nnadsádzka\nnadsádzke\nnadsádzkou\nnadsádzku\nnadsádzky\nnadsadzovali\nnadsadzovaná\nnadsadzované\nnadsadzovaní\nnadsadzovania\nnadsadzovaním\nnadsadzovať\nnadsadzuje\nnadsadzujú\nnadskakovanie\nnadskakovať\nnadskočiť\nnadskutočnosť\nnadskutočný\nnadsluhovať\nnadstaca\nnadstacami\nnadstace\nnadstaci\nnadstacoch\nnadstacom\nnadstacov\nnadstacu\nnadstavať\nnadstav\nnadstavba\nnadstavbovo\nnadstavbový\nnadstavec\nnadstavenia\nnadstaveniach\nnadstavením\nnadstavený\nnadstaviť\nnadstavovanie\nnadstavovanom\nnadstavovaných\nnadstavovať\nnadstraníckosť\nnadstranícky\nnadstrážmajster\nnadstrčiť\nnadstrkovať\nnadšene\nnadšenec\nnadšenie\nnadšeno\nnadšenosť\nnadšený\nnadši\nnadšije\nnadšijem\nnadšijeme\nnadšiješ\nnadšijete\nnadšijú\nnadšijúc\nnadšil\nnadšila\nnadšili\nnadšilo\nnadšime\nnadšite\nnadšiť\nnadšívať\nnadškrtnúť\nnadškrtnutý\nnadštandard\nnadštandardný\nnadštátne\nnadštátneho\nnadštátnej\nnadštátnom\nnadštátnu\nnadštátny\nnadštátnych\nnadštátnymi\nnadštrkla\nnadštrkli\nnadštrklo\nnadštrkne\nnadštrknem\nnadštrkneme\nnadštrkneš\nnadštrknete\nnadštrkni\nnadštrknime\nnadštrknite\nnadštrknú\nnadštrknúc\nnadštrknúť\nnadštrkol\nnadštrkovať\nnadtitulkom\nnadtitulku\nnadtitulok\nnadto\nnadtrhnúť\nnadtriednosť\nnadtriedny\nNaďu\nnadudrane\nnadudrano\nnadudraný\nnadudrený\nnadúchať\nnadur\nnadurdene\nnadurdeno\nnadurdenosť\nnadurdený\nnadurdi\nnadurdime\nnadurdite\nnadurdiť\nnadurený\nnaduriť\nnadúrovňový\nnadusiť\nnadutec\nnaduto\nnadutosť\nnaduť\nnadutý\nnadúvanie\nnadúvať\nnaduži\nnadužije\nnadužijem\nnadužijeme\nnadužiješ\nnadužijete\nnadužijú\nnadužijúc\nnadužime\nnadužite\nnadužiť\nnadužívanie\nnadužívaniu\nnadužívať\nnadváh\nnadváhach\nnadváham\nnadváha\nnadväzne\nnadväznosť\nnadväzný\nnadväzované\nnadväzovanie\nnadväzovaných\nnadväzovať\nnadväzujúci\nnadviazanie\nnadviazaný\nnadviazať\nnadviazať\nnadviažuc\nnadvihnutejší\nnadvihnutia\nnadvihnutie\nnadvihnutím\nnadvihnúť\nnadvihnutý\nnadvihovaní\nnadvihovať\nnadvlád\nnadvládach\nnadvládam\nnadvláda\nnádvorie\nNádvorník\nNádvorníka\nNádvorníkov\nNádvorníkovej\nNádvorníkovho\nNádvorníkovi\nNádvorníkovo\nNádvorníkových\nnádvorný\nnadvýkon\nnadvýrob\nnadvýroba\nnadvýrobok\nnadvýšené\nnadvýšenie\nnadýchaný\nnadýchať\nnádych\nnadýchnutie\nnadýchnuť\nnadýchnutý\nnadýma\nnadýmaj\nnadýmajme\nnadýmajte\nnadýmajú\nnadýmajúc\nnadýmal\nnadýmala\nnadýmali\nnadýmalo\nnadýmam\nnadýmame\nnadýmaný\nnadýmaš\nnadýmať\nnadýmate\nnadymiť\nnadzemný\nnadzemsky\nnadzemský\nnadzisku\nnadzmyselný\nnadzmyslový\nnadzvukový\nnadžgať\nnadžgávať\nnadživotný\nnaevus\nnafackať\nnafajči\nnafajčime\nnafajčite\nnafajčiť\nnafarbenie\nnafarbený\nnafarbi\nnafarbime\nnafarbite\nnafarbiť\nnafetoval\nnafetovala\nnafetovali\nnafetovalo\nnafetovaný\nnafetovať\nnafetuj\nnafetuje\nnafetujem\nnafetujeme\nnafetuješ\nnafetujete\nnafetujme\nnafetujte\nnafetujú\nnafetujúc\nnafialovo\nnafilmovaný\nnafilmovať\nnafintený\nnafír\nnafľaku\nnafliaskať\nnafňukalo\nnaforemný\nnaformátovane\nnaformátovaný\nnaformátovať\nnafoť\nnafotí\nnafotia\nnafotiac\nnafotil\nnafotila\nnafotili\nnafotilo\nnafotím\nnafotíme\nnafotíš\nnafotiť\nnafotíte\nnafoťme\nnafoťte\nnafŕkalo\nnáft\nnaftách\nNaftách\nnaftalén\nnaftaléne\nnaftalín\nnaftalínový\nnaftám\nNaftám\nnaftami\nnaftár\nNaftár\nnaftára\nNaftára\nnaftári\nnaftármi\nnaftároch\nnaftárom\nnaftárov\nnaftárovi\nNaftárovi\nnaftárska\nnafta\nnaftén\nnaftol\nnaftonosné\nnaftonosného\nnaftovo\nnaftovod\nnaftovodné\nnaftový\nnafučalo\nnafučane\nnafučaný\nnafúkane\nnafúkanec\nnafúkanosť\nnafúkaný\nnafúkať\nnafúknutia\nnafúknutie\nnafúknutím\nnafúknutiu\nnafúknuť\nnafúknutý\nnafukovací\nnafukovačka\nnafukovania\nnafukovanie\nnafukovaním\nnafukovaniu\nnafukovaný\nnafukovať\nnafutrovať\nnagan\nnagana\nnagasacký\nNagasačan\nNagasaki\nnagazdovať\nnaglejenie\nnaglejený\nnaglgať\nnagniaviť\nnagrobianiť\nnaguľato\nnahab\nnahabať\nnaháč\nnaháčik\nnaháčka\nnahádzaný\nnahádzať\nnahadzovania\nnahadzovanie\nnahadzovaním\nnahadzovať\nnahádž\nnahádže\nnahádžem\nnahádžeme\nnahádžeš\nnahádžete\nnahádžme\nnahádžte\nnahádžu\nnahádžuc\nnahajka\nnaháňači\nnaháňačka\nnaháňačov\nnaháňajúci\nnaháňania\nnaháňanie\nnaháňaním\nnaháňaniu\nnaháňaný\nnaháňať\nnahato\nnahatý\nnahib\nnahľadať\nnáhľad\nnahľadieť\nnahladko\nnáhľadový\nnahlas\nnahlásenia\nnahlásenie\nnahlásením\nnahláseniu\nnahlásený\nnahlásiť\nnahlasovať\nnáhle\nnáhlení\nnáhlenia\nnáhlenie\nnáhlením\nnáhleniu\nnáhle\nnahliadaní\nnahliadanie\nnahliadať\nnahliadnutie\nnahliadnuto\nnahliadnuť\nnahliadnutý\nnáhlievať\nnáhliť\nnáhlivo\nnáhlivosť\nnáhlivý\nnáhlo\nnahlodaniu\nnahlodaný\nnahlodať\nnahlodávaná\nnahlodávania\nnahlodávanie\nnahlodávať\nnáhlosť\nnahltať\nnahluchastý\nnahluchlejšej\nnahluchlejší\nnahluchlejšia\nnahluchlejšie\nnahluchlejšieho\nnahluchlejšiemu\nnahluchlejších\nnahluchlejším\nnahluchlejšími\nnahluchlejšiu\nnahluchlejšom\nnahluchlejšou\nnahluchlosť\nnahluchlý\nnahlucho\nnahlúplej\nnahlúply\nnahlúplym\nnáhly\nnahmatať\nnahmatávať\nnahmatkať\nnahnaným\nnahnať\nnahnedasto\nnahnedastý\nnahnedo\nnahnevane\nnahnevanie\nnahnevano\nnahnevaný\nnahnevať\nnahnitosť\nnahniť\nnahnitý\nnahnívanie\nnahnívať\nnahnuto\nnahnúť\nnahnutý\nnaho\nnáhod\nnáhoda\nnahodenie\nnahodený\nnáhodile\nnáhodilo\nnáhodilosť\nnáhodilý\nnahodiť\nnáhodne\nnáhodne\nnáhodnosť\nnáhodný\nnaholo\nnáhon\nnahoňme\nnahonobenie\nnahonobený\nnahonobiť\nnáhonový\nnahor\nnahorkastý\nnahorklý\nnáhorný\nnahospodáreného\nnahospodárení\nnahospodáriť\nnahostiť\nnahosť\nnahota\nnahotiniek\nnahotinkách\nnahotovať\nnahotoviť\nnahovací\nnahovárač\nnahováračka\nnahováračky\nnahovárania\nnahováraniach\nnahováranie\nnahováraním\nnahováraný\nnahovárať\nnahovárkach\nnahovárkam\nnahovárky\nnahovor\nnahovorenie\nnahovorený\nnahovoriť\nnahovorte\nnahrab\nnahrabané\nnahrabaného\nnahrabanie\nnahrabať\nnáhrada\nnahradenie\nnahradený\nnahraditeľnosť\nnahraditeľný\nnahradiť\nnáhradka\nnáhradkový\nnáhradne\nnáhradnícky\nnáhradníčka\nnáhradník\nnáhradný\nnáhradový\nnahrádzajúci\nnahrádzania\nnahrádzanie\nnahrádzaním\nnahrádzaniu\nnahrádzaný\nnahrádzať\nnahradzovane\nnahradzovanie\nnahradzovaný\nnahradzovať\nnahradzujúca\nnahradzujúcej\nnahradzujúci\nnahradzujúcom\nnahranejší\nnahrania\nnahranie\nnahraním\nnahraný\nnahrať\nnahratie\nnahratý\nnahrávací\nnahrávač\nnahrávača\nnahrávačov\nnahrávajúci\nnahrávane\nnahrávanie\nnahrávaný\nnahrávať\nnahrávka\nnáhražiek\nnáhražka\nnáhražkami\nnáhražkou\nnáhražku\nnáhražky\nnahrbenie\nnahrbený\nnahrbiť\nnáhrdelník\nnahrdlačiť\nnahrdlovať\nnahrej\nnahreje\nnahrejem\nnahrejeme\nnahreješ\nnahrejete\nnahrejme\nnahrejte\nnahrejú\nnahrejúc\nnáhrevu\nnahriatí\nnahriať\nnahriaty\nnahriatych\nnahrievaní\nnahrievania\nnahrievanie\nnahrievaním\nnahrievať\nnahrň\nnahŕňať\nnahrnie\nnahrniem\nnahrnieme\nnahrnieš\nnahrniete\nnahrňme\nnahrňte\nnahrnúť\nnáhrobník\nnáhrobný\nnáhrobok\nnahromadenia\nnahromadenie\nnahromadením\nnahromadenina\nnahromadeniu\nnahromadený\nnahromadený\nnahromadiť\nnahromaďovanie\nnahromaďovať\nnahromžili\nnahromžiť\nnahrubo\nnahrubšie\nnahrýzať\nnahryznutá\nnahryznuté\nnahryznutého\nnahryznutej\nnahryznúť\nnahrýzť\nnáhubok\nnahuckať\nnahuckávač\nnahuckávať\nnahučať\nnahučí\nnahučičký\nnahučký\nnahúkať\nnahúsť\nnahustenie\nnahustený\nnahusti\nnahustime\nnahustite\nnahustiť\nnahusto\nnahusťovať\nnahútať\nnahúžvať\nnahýbať\nnahýňať\nnahýnať\nnahý\nnachádzajúci\nnachádzajúci\nnachádzania\nnachádzanie\nnachádzaním\nnachádzaniu\nnachádzaný\nnachádzať\nnach\nnachladení\nnachladenie\nnachladiť\nnachladnutia\nnachladnutiach\nnachladnutie\nnachladnutím\nnachladnutiu\nnachladnúť\nnachladnutý\nnachleptať\nnachlípať\nnachmelený\nnachmeliť\nNáchod\nNáchode\nnáchodisko\nnachodiť\nnáchodské\nnáchodského\nnáchodskej\nnáchodskom\nnáchodskou\nnáchodskú\nnáchodských\nNáchodský\nNáchodu\nnachovanie\nnachovaný\nnachovať\nnachovo\nnachový\nnachrumkavo\nnachuj\nnachuje\nnachujem\nnachujeme\nnachuješ\nnachujete\nnachujme\nnachujte\nnachujú\nnachujúc\nnachvat\nnachýlenie\nnachýlený\nnachýliť\nnáchylnosť\nnáchylný\nnachyľovať\nnachystania\nnachystaný\nnachystať\nnachytaný\nnachytať\nnachytro\nnaidka\nnaigeria\nnaimportovaný\nnaimportovať\nnaimputovať\nnainfikovaný\nnainfikovať\nnainštalovane\nnainštalovania\nnainštalovanie\nnainštalovaním\nnainštalovaniu\nnainštalovaný\nnainštalovaný\nnainštalovať\nnaira\nnairobčan\nNairobčan\nNairobi\nnairobský\nnaisto\nnaivita\nnaivka\nnaivne\nnaivnosť\nnaivný\nnaj\nnajabnormálnejšej\nnajabnormálnejší\nnajabnormálnejšia\nnajabnormálnejšie\nnajabnormálnejšieho\nnajabnormálnejšiemu\nnajabnormálnejších\nnajabnormálnejším\nnajabnormálnejšími\nnajabnormálnejšiu\nnajabnormálnejšom\nnajabnormálnejšou\nnajabrazívnejšej\nnajabrazívnejší\nnajabrazívnejšia\nnajabrazívnejšie\nnajabrazívnejšieho\nnajabrazívnejšiemu\nnajabrazívnejších\nnajabrazívnejším\nnajabrazívnejšími\nnajabrazívnejšiu\nnajabrazívnejšom\nnajabrazívnejšou\nnajabsolutistickejšej\nnajabsolutistickejší\nnajabsolutistickejšia\nnajabsolutistickejšie\nnajabsolutistickejšieho\nnajabsolutistickejšiemu\nnajabsolutistickejších\nnajabsolutistickejším\nnajabsolutistickejšími\nnajabsolutistickejšiu\nnajabsolutistickejšom\nnajabsolutistickejšou\nnajabsorpčnejšej\nnajabsorpčnejší\nnajabsorpčnejšia\nnajabsorpčnejšie\nnajabsorpčnejšieho\nnajabsorpčnejšiemu\nnajabsorpčnejších\nnajabsorpčnejším\nnajabsorpčnejšími\nnajabsorpčnejšiu\nnajabsorpčnejšom\nnajabsorpčnejšou\nnajabstrakcionistickejšej\nnajabstrakcionistickejší\nnajabstrakcionistickejšia\nnajabstrakcionistickejšie\nnajabstrakcionistickejšieho\nnajabstrakcionistickejšiemu\nnajabstrakcionistickejších\nnajabstrakcionistickejším\nnajabstrakcionistickejšími\nnajabstrakcionistickejšiu\nnajabstrakcionistickejšom\nnajabstrakcionistickejšou\nnajabstraktnejšej\nnajabstraktnejší\nnajabstraktnejšia\nnajabstraktnejšie\nnajabstraktnejšieho\nnajabstraktnejšiemu\nnajabstraktnejších\nnajabstraktnejším\nnajabstraktnejšími\nnajabstraktnejšiu\nnajabstraktnejšom\nnajabstraktnejšou\nnajabsurdnejšej\nnajabsurdnejší\nnajabsurdnejšia\nnajabsurdnejšie\nnajabsurdnejšieho\nnajabsurdnejšiemu\nnajabsurdnejších\nnajabsurdnejším\nnajabsurdnejšími\nnajabsurdnejšiu\nnajabsurdnejšom\nnajabsurdnejšou\nnajád\nnajada\nnajáda\nnajadaptabilnejšej\nnajadaptabilnejší\nnajadaptabilnejšia\nnajadaptabilnejšie\nnajadaptabilnejšieho\nnajadaptabilnejšiemu\nnajadaptabilnejších\nnajadaptabilnejším\nnajadaptabilnejšími\nnajadaptabilnejšiu\nnajadaptabilnejšom\nnajadaptabilnejšou\nnajadekvátnejšej\nnajadekvátnejší\nnajadekvátnejšia\nnajadekvátnejšie\nNajadekvátnejšie\nnajadekvátnejšieho\nnajadekvátnejšiemu\nnajadekvátnejších\nnajadekvátnejším\nnajadekvátnejšími\nnajadekvátnejšiu\nnajadekvátnejšom\nnajadekvátnejšou\nnajadresnejšej\nnajadresnejší\nnajadresnejšia\nnajadresnejšie\nnajadresnejšieho\nnajadresnejšiemu\nnajadresnejších\nnajadresnejším\nnajadresnejšími\nnajadresnejšiu\nnajadresnejšom\nnajadresnejšou\nnajaerodynamickejšej\nnajaerodynamickejší\nnajaerodynamickejšia\nnajaerodynamickejšie\nnajaerodynamickejšieho\nnajaerodynamickejšiemu\nnajaerodynamickejších\nnajaerodynamickejším\nnajaerodynamickejšími\nnajaerodynamickejšiu\nnajaerodynamickejšom\nnajaerodynamickejšou\nnajafektovanejšej\nnajafektovanejší\nnajafektovanejšia\nnajafektovanejšie\nnajafektovanejšieho\nnajafektovanejšiemu\nnajafektovanejších\nnajafektovanejším\nnajafektovanejšími\nnajafektovanejšiu\nnajafektovanejšom\nnajafektovanejšou\nnajaforistickejšej\nnajaforistickejší\nnajaforistickejšia\nnajaforistickejšie\nnajaforistickejšieho\nnajaforistickejšiemu\nnajaforistickejších\nnajaforistickejším\nnajaforistickejšími\nnajaforistickejšiu\nnajaforistickejšom\nnajaforistickejšou\nnajagilnejšej\nnajagilnejší\nnajagilnejšia\nnajagilnejšie\nnajagilnejšieho\nnajagilnejšiemu\nnajagilnejších\nnajagilnejším\nnajagilnejšími\nnajagilnejšiu\nnajagilnejšom\nnajagilnejšou\nnajagitačnejšej\nnajagitačnejší\nnajagitačnejšia\nnajagitačnejšie\nnajagitačnejšieho\nnajagitačnejšiemu\nnajagitačnejších\nnajagitačnejším\nnajagitačnejšími\nnajagitačnejšiu\nnajagitačnejšom\nnajagitačnejšou\nnajagnostickejšej\nnajagnostickejší\nnajagnostickejšia\nnajagnostickejšie\nnajagnostickejšieho\nnajagnostickejšiemu\nnajagnostickejších\nnajagnostickejším\nnajagnostickejšími\nnajagnostickejšiu\nnajagnostickejšom\nnajagnostickejšou\nnajagresívnejšej\nnajagresívnejší\nnajagresívnejšia\nnajagresívnejšie\nnajagresívnejšieho\nnajagresívnejšiemu\nnajagresívnejších\nnajagresívnejším\nnajagresívnejšími\nnajagresívnejšiu\nnajagresívnejšom\nnajagresívnejšou\nNajagresívnejšou\nnájach\nnajakademickejšej\nnajakademickejší\nnajakademickejšia\nnajakademickejšie\nnajakademickejšieho\nnajakademickejšiemu\nnajakademickejších\nnajakademickejším\nnajakademickejšími\nnajakademickejšiu\nnajakademickejšom\nnajakademickejšou\nnajakceptovanejšej\nnajakceptovanejší\nnajakceptovanejšia\nnajakceptovanejšie\nnajakceptovanejšieho\nnajakceptovanejšiemu\nnajakceptovanejších\nnajakceptovanejším\nnajakceptovanejšími\nnajakceptovanejšiu\nnajakceptovanejšom\nnajakceptovanejšou\nnajakceptovateľnejšej\nnajakceptovateľnejší\nnajakceptovateľnejšia\nnajakceptovateľnejšie\nnajakceptovateľnejšieho\nnajakceptovateľnejšiemu\nnajakceptovateľnejších\nnajakceptovateľnejším\nnajakceptovateľnejšími\nnajakceptovateľnejšiu\nnajakceptovateľnejšom\nnajakceptovateľnejšou\nnajakcieschopnejšej\nnajakcieschopnejší\nnajakcieschopnejšia\nnajakcieschopnejšie\nnajakcieschopnejšieho\nnajakcieschopnejšiemu\nnajakcieschopnejších\nnajakcieschopnejším\nnajakcieschopnejšími\nnajakcieschopnejšiu\nnajakcieschopnejšom\nnajakcieschopnejšou\nnajakčnejšej\nnajakčnejší\nnajakčnejšia\nnajakčnejšie\nnajakčnejšieho\nnajakčnejšiemu\nnajakčnejších\nnajakčnejším\nnajakčnejšími\nnajakčnejšiu\nnajakčnejšom\nnajakčnejšou\nnajakostnejšej\nnajakostnejší\nnajakostnejšia\nnajakostnejšie\nnajakostnejšieho\nnajakostnejšiemu\nnajakostnejších\nnajakostnejším\nnajakostnejšími\nnajakostnejšiu\nnajakostnejšom\nnajakostnejšou\nnajaktívnejšej\nnajaktívnejší\nnajaktívnejšia\nnajaktívnejšie\nnajaktívnejšieho\nnajaktívnejšiemu\nnajaktívnejších\nnajaktívnejším\nnajaktívnejšími\nnajaktívnejšiu\nnajaktívnejšom\nnajaktívnejšou\nnajakurátnejšej\nnajakurátnejší\nnajakurátnejšia\nnajakurátnejšie\nnajakurátnejšieho\nnajakurátnejšiemu\nnajakurátnejších\nnajakurátnejším\nnajakurátnejšími\nnajakurátnejšiu\nnajakurátnejšom\nnajakurátnejšou\nnajakútnejšej\nnajakútnejší\nnajakútnejšia\nnajakútnejšie\nnajakútnejšieho\nnajakútnejšiemu\nnajakútnejších\nnajakútnejším\nNajakútnejšími\nnajakútnejšiu\nnajakútnejšou\nnajalbánskejšie\nnajalegorickejšej\nnajalegorickejší\nnajalegorickejšia\nnajalegorickejšie\nnajalegorickejšieho\nnajalegorickejšiemu\nnajalegorickejších\nnajalegorickejším\nnajalegorickejšími\nnajalegorickejšiu\nnajalegorickejšom\nnajalegorickejšou\nnajalergickejšej\nnajalergickejší\nnajalergickejšia\nnajalergickejšie\nnajalergickejšieho\nnajalergickejšiemu\nnajalergickejších\nnajalergickejším\nnajalergickejšími\nnajalergickejšiu\nnajalergickejšom\nnajalergickejšou\nnajalibistickejšie\nnajaltruistickejšej\nnajaltruistickejší\nnajaltruistickejšia\nnajaltruistickejšie\nnajaltruistickejšieho\nnajaltruistickejšiemu\nnajaltruistickejších\nnajaltruistickejším\nnajaltruistickejšími\nnajaltruistickejšiu\nnajaltruistickejšom\nnajaltruistickejšou\nnajamatérskejšej\nnajamatérskejší\nnajamatérskejšia\nnajamatérskejšie\nnajamatérskejšieho\nnajamatérskejšiemu\nnajamatérskejších\nnajamatérskejším\nnajamatérskejšími\nnajamatérskejšiu\nnajamatérskejšom\nnajamatérskejšou\nnajambicióznejšej\nnajambicióznejší\nnajambicióznejšia\nnajambicióznejšie\nnajambicióznejšieho\nnajambicióznejšiemu\nnajambicióznejších\nnajambicióznejším\nnajambicióznejšími\nnajambicióznejšiu\nnajambicióznejšom\nnajambicióznejšou\nnajambivalentnejšej\nnajambivalentnejší\nnajambivalentnejšia\nnajambivalentnejšie\nnajambivalentnejšieho\nnajambivalentnejšiemu\nnajambivalentnejších\nnajambivalentnejším\nnajambivalentnejšími\nnajambivalentnejšiu\nnajambivalentnejšom\nnajambivalentnejšou\nnajamorálnejšej\nnajamorálnejší\nnajamorálnejšia\nnajamorálnejšie\nnajamorálnejšieho\nnajamorálnejšiemu\nnajamorálnejších\nnajamorálnejším\nnajamorálnejšími\nnajamorálnejšiu\nnajamorálnejšom\nnajamorálnejšou\nnajamorfnejšej\nnajamorfnejší\nnajamorfnejšia\nnajamorfnejšie\nnajamorfnejšieho\nnajamorfnejšiemu\nnajamorfnejších\nnajamorfnejším\nnajamorfnejšími\nnajamorfnejšiu\nnajamorfnejšom\nnajamorfnejšou\nnajanachronickejšej\nnajanachronickejší\nnajanachronickejšia\nnajanachronickejšie\nnajanachronickejšieho\nnajanachronickejšiemu\nnajanachronickejších\nnajanachronickejším\nnajanachronickejšími\nnajanachronickejšiu\nnajanachronickejšom\nnajanachronickejšou\nnajanachronistickejšej\nnajanachronistickejší\nnajanachronistickejšia\nnajanachronistickejšie\nnajanachronistickejšieho\nnajanachronistickejšiemu\nnajanachronistickejších\nnajanachronistickejším\nnajanachronistickejšími\nnajanachronistickejšiu\nnajanachronistickejšom\nnajanachronistickejšou\nnajanalogickejšie\nnajanalytickejšej\nnajanalytickejší\nnajanalytickejšia\nnajanalytickejšie\nnajanalytickejšieho\nnajanalytickejšiemu\nnajanalytickejších\nnajanalytickejším\nnajanalytickejšími\nnajanalytickejšiu\nnajanalytickejšom\nnajanalytickejšou\nnajanarchistickejšej\nnajanarchistickejší\nnajanarchistickejšia\nnajanarchistickejšie\nnajanarchistickejšieho\nnajanarchistickejšiemu\nnajanarchistickejších\nnajanarchistickejším\nnajanarchistickejšími\nnajanarchistickejšiu\nnajanarchistickejšom\nnajanarchistickejšou\nnajangažovanejšej\nnajangažovanejší\nnajangažovanejšia\nnajangažovanejšie\nnajangažovanejšieho\nnajangažovanejšiemu\nnajangažovanejších\nnajangažovanejším\nnajangažovanejšími\nnajangažovanejšiu\nnajangažovanejšom\nnajangažovanejšou\nnajanglickejšie\nnajanjelskejšej\nnajanjelskejší\nnajanjelskejšia\nnajanjelskejšie\nnajanjelskejšieho\nnajanjelskejšiemu\nnajanjelskejších\nnajanjelskejším\nnajanjelskejšími\nnajanjelskejšiu\nnajanjelskejšom\nnajanjelskejšou\nnajantagonistickejšie\nnajapatickejšej\nnajapatickejší\nnajapatickejšia\nnajapatickejšie\nnajapatickejšieho\nnajapatickejšiemu\nnajapatickejších\nnajapatickejším\nnajapatickejšími\nnajapatickejšiu\nnajapatickejšom\nnajapatickejšou\nnajapolitickejšie\nnajaprílovejšej\nnajaprílovejší\nnajaprílovejšia\nnajaprílovejšie\nnajaprílovejšieho\nnajaprílovejšiemu\nnajaprílovejších\nnajaprílovejším\nnajaprílovejšími\nnajaprílovejšiu\nnajaprílovejšom\nnajaprílovejšou\nnajarabskejšie\nnajarbitrárnejšej\nnajarbitrárnejší\nnajarbitrárnejšia\nnajarbitrárnejšie\nnajarbitrárnejšieho\nnajarbitrárnejšiemu\nnajarbitrárnejších\nnajarbitrárnejším\nnajarbitrárnejšími\nnajarbitrárnejšiu\nnajarbitrárnejšom\nnajarbitrárnejšou\nnajarchaickejšej\nnajarchaickejší\nnajarchaickejšia\nnajarchaickejšie\nnajarchaickejšieho\nnajarchaickejšiemu\nnajarchaickejších\nnajarchaickejším\nnajarchaickejšími\nnajarchaickejšiu\nnajarchaickejšom\nnajarchaickejšou\nnajárijskejšej\nnajárijskejší\nnajárijskejšia\nnajárijskejšie\nnajárijskejšieho\nnajárijskejšiemu\nnajárijskejších\nnajárijskejším\nnajárijskejšími\nnajárijskejšiu\nnajárijskejšom\nnajárijskejšou\nnajaristokratickejšej\nnajaristokratickejší\nnajaristokratickejšia\nnajaristokratickejšie\nnajaristokratickejšieho\nnajaristokratickejšiemu\nnajaristokratickejších\nnajaristokratickejším\nnajaristokratickejšími\nnajaristokratickejšiu\nnajaristokratickejšom\nnajaristokratickejšou\nnajarogantnejšej\nnajarogantnejší\nnajarogantnejšia\nnajarogantnejšie\nnajarogantnejšieho\nnajarogantnejšiemu\nnajarogantnejších\nnajarogantnejším\nnajarogantnejšími\nnajarogantnejšiu\nnajarogantnejšom\nnajarogantnejšou\nnajaromatickejšej\nnajaromatickejší\nnajaromatickejšia\nnajaromatickejšie\nnajaromatickejšieho\nnajaromatickejšiemu\nnajaromatickejších\nnajaromatickejším\nnajaromatickejšími\nnajaromatickejšiu\nnajaromatickejšom\nnajaromatickejšou\nnajasertívnejšej\nnajasertívnejší\nnajasertívnejšia\nnajasertívnejšie\nnajasertívnejšieho\nnajasertívnejšiemu\nnajasertívnejších\nnajasertívnejším\nnajasertívnejšími\nnajasertívnejšiu\nnajasertívnejšom\nnajasertívnejšou\nnajasociálnejšej\nnajasociálnejší\nnajasociálnejšia\nnajasociálnejšie\nnajasociálnejšieho\nnajasociálnejšiemu\nnajasociálnejších\nnajasociálnejším\nnajasociálnejšími\nnajasociálnejšiu\nnajasociálnejšom\nnajasociálnejšou\nnajasymetrickejšej\nnajasymetrickejší\nnajasymetrickejšia\nnajasymetrickejšie\nnajasymetrickejšieho\nnajasymetrickejšiemu\nnajasymetrickejších\nnajasymetrickejším\nnajasymetrickejšími\nnajasymetrickejšiu\nnajasymetrickejšom\nnajasymetrickejšou\nnajašiť\nnajatavistickejšej\nnajatavistickejší\nnajatavistickejšia\nnajatavistickejšie\nnajatavistickejšieho\nnajatavistickejšiemu\nnajatavistickejších\nnajatavistickejším\nnajatavistickejšími\nnajatavistickejšiu\nnajatavistickejšom\nnajatavistickejšou\nnajatie\nnajatím\nnajatletickejšej\nnajatletickejší\nnajatletickejšia\nnajatletickejšie\nnajatletickejšieho\nnajatletickejšiemu\nnajatletickejších\nnajatletickejším\nnajatletickejšími\nnajatletickejšiu\nnajatletickejšom\nnajatletickejšou\nnajatraktívnejšej\nnajatraktívnejší\nnajatraktívnejšia\nnajatraktívnejšie\nnajatraktívnejšieho\nnajatraktívnejšiemu\nnajatraktívnejších\nnajatraktívnejším\nnajatraktívnejšími\nnajatraktívnejšiu\nnajatraktívnejšom\nnajatraktívnejšou\nnajať\nnajatypickejšej\nnajatypickejší\nnajatypickejšia\nnajatypickejšie\nnajatypickejšieho\nnajatypickejšiemu\nnajatypickejších\nnajatypickejším\nnajatypickejšími\nnajatypickejšiu\nnajatypickejšom\nnajatypickejšou\nnajatý\nnajatý\nnajautentickejšej\nnajautentickejší\nnajautentickejšia\nnajautentickejšie\nnajautentickejšieho\nnajautentickejšiemu\nnajautentickejších\nnajautentickejším\nnajautentickejšími\nnajautentickejšiu\nnajautentickejšom\nnajautentickejšou\nnajautomatickejšie\nnajautoritatívnejšej\nnajautoritatívnejší\nnajautoritatívnejšia\nnajautoritatívnejšie\nnajautoritatívnejšieho\nnajautoritatívnejšiemu\nnajautoritatívnejších\nnajautoritatívnejším\nnajautoritatívnejšími\nnajautoritatívnejšiu\nnajautoritatívnejšom\nnajautoritatívnejšou\nnajavantgardnejšej\nnajavantgardnejší\nnajavantgardnejšia\nnajavantgardnejšie\nnajavantgardnejšieho\nnajavantgardnejšiemu\nnajavantgardnejších\nnajavantgardnejším\nnajavantgardnejšími\nnajavantgardnejšiu\nnajavantgardnejšom\nnajavantgardnejšou\nnajavo\nnájazd\nnajazdenia\nnajazdenie\nnajazdený\nnajazdi\nnajazdime\nnajazdite\nnajazdiť\nnájazdový\nnajazúrovejšej\nnajazúrovejší\nnajazúrovejšia\nnajazúrovejšie\nnajazúrovejšieho\nnajazúrovejšiemu\nnajazúrovejších\nnajazúrovejším\nnajazúrovejšími\nnajazúrovejšiu\nnajazúrovejšom\nnajazúrovejšou\nnajbabráckejšej\nnajbabráckejší\nnajbabráckejšia\nnajbabráckejšie\nnajbabráckejšieho\nnajbabráckejšiemu\nnajbabráckejších\nnajbabráckejším\nnajbabráckejšími\nnajbabráckejšiu\nnajbabráckejšom\nnajbabráckejšou\nnajbabravejšej\nnajbabravejší\nnajbabravejšia\nnajbabravejšie\nnajbabravejšieho\nnajbabravejšiemu\nnajbabravejších\nnajbabravejším\nnajbabravejšími\nnajbabravejšiu\nnajbabravejšom\nnajbabravejšou\nnajbadateľnejšej\nnajbadateľnejší\nnajbadateľnejšia\nnajbadateľnejšie\nnajbadateľnejšieho\nnajbadateľnejšiemu\nnajbadateľnejších\nnajbadateľnejším\nnajbadateľnejšími\nnajbadateľnejšiu\nnajbadateľnejšom\nnajbadateľnejšou\nnajbádateľskejšie\nnajbádavejšej\nnajbádavejší\nnajbádavejšia\nnajbádavejšie\nnajbádavejšieho\nnajbádavejšiemu\nnajbádavejších\nnajbádavejším\nnajbádavejšími\nnajbádavejšiu\nnajbádavejšom\nnajbádavejšou\nnajbachratejšej\nnajbachratejší\nnajbachratejšia\nnajbachratejšie\nnajbachratejšieho\nnajbachratejšiemu\nnajbachratejších\nnajbachratejším\nnajbachratejšími\nnajbachratejšiu\nnajbachratejšom\nnajbachratejšou\nnajbáječnejšej\nnajbáječnejší\nnajbáječnejšia\nnajbáječnejšie\nnajbáječnejšieho\nnajbáječnejšiemu\nnajbáječnejších\nnajbáječnejším\nnajbáječnejšími\nnajbáječnejšiu\nnajbáječnejšom\nnajbáječnejšou\nnajbaladickejšej\nnajbaladickejší\nnajbaladickejšia\nnajbaladickejšie\nnajbaladickejšieho\nnajbaladickejšiemu\nnajbaladickejších\nnajbaladickejším\nnajbaladickejšími\nnajbaladickejšiu\nnajbaladickejšom\nnajbaladickejšou\nnajbaňatejšej\nnajbaňatejší\nnajbaňatejšia\nnajbaňatejšie\nnajbaňatejšieho\nnajbaňatejšiemu\nnajbaňatejších\nnajbaňatejším\nnajbaňatejšími\nnajbaňatejšiu\nnajbaňatejšom\nnajbaňatejšou\nnajbarbarskejšej\nnajbarbarskejší\nnajbarbarskejšia\nnajbarbarskejšie\nnajbarbarskejšieho\nnajbarbarskejšiemu\nnajbarbarskejších\nnajbarbarskejším\nnajbarbarskejšími\nnajbarbarskejšiu\nnajbarbarskejšom\nnajbarbarskejšou\nnajbarnavejšej\nnajbarnavejší\nnajbarnavejšia\nnajbarnavejšie\nnajbarnavejšieho\nnajbarnavejšiemu\nnajbarnavejších\nnajbarnavejším\nnajbarnavejšími\nnajbarnavejšiu\nnajbarnavejšom\nnajbarnavejšou\nnajbásnickejšie\nnajbasovejšej\nnajbasovejší\nnajbasovejšia\nnajbasovejšie\nnajbasovejšieho\nnajbasovejšiemu\nnajbasovejších\nnajbasovejším\nnajbasovejšími\nnajbasovejšiu\nnajbasovejšom\nnajbasovejšou\nnajbedlivejšej\nnajbedlivejší\nnajbedlivejšia\nnajbedlivejšie\nnajbedlivejšieho\nnajbedlivejšiemu\nnajbedlivejších\nnajbedlivejším\nnajbedlivejšími\nnajbedlivejšiu\nnajbedlivejšom\nnajbedlivejšou\nnajbelasejšej\nnajbelasejší\nnajbelasejšia\nnajbelasejšie\nnajbelasejšieho\nnajbelasejšiemu\nnajbelasejších\nnajbelasejším\nnajbelasejšími\nnajbelasejšiu\nnajbelasejšom\nnajbelasejšou\nnajbelavejšej\nnajbelavejší\nnajbelavejšia\nnajbelavejšie\nnajbelavejšieho\nnajbelavejšiemu\nnajbelavejších\nnajbelavejším\nnajbelavejšími\nnajbelavejšiu\nnajbelavejšom\nnajbelavejšou\nnajbelostnejšej\nnajbelostnejší\nnajbelostnejšia\nnajbelostnejšie\nnajbelostnejšieho\nnajbelostnejšiemu\nnajbelostnejších\nnajbelostnejším\nnajbelostnejšími\nnajbelostnejšiu\nnajbelostnejšom\nnajbelostnejšou\nnajbelšej\nnajbelší\nnajbelšia\nnajbelšie\nnajbelšieho\nnajbelšiemu\nnajbelších\nnajbelším\nnajbelšími\nnajbelšiu\nnajbelšom\nnajbelšou\nnajbenevolentnejšej\nnajbenevolentnejší\nnajbenevolentnejšia\nnajbenevolentnejšie\nnajbenevolentnejšieho\nnajbenevolentnejšiemu\nnajbenevolentnejších\nnajbenevolentnejším\nnajbenevolentnejšími\nnajbenevolentnejšiu\nnajbenevolentnejšom\nnajbenevolentnejšou\nnajbesnejšej\nnajbesnejší\nnajbesnejšia\nnajbesnejšie\nnajbesnejšieho\nnajbesnejšiemu\nnajbesnejších\nnajbesnejším\nnajbesnejšími\nnajbesnejšiu\nnajbesnejšom\nnajbesnejšou\nnajbeštiálnejšej\nnajbeštiálnejší\nnajbeštiálnejšia\nnajbeštiálnejšie\nnajbeštiálnejšieho\nnajbeštiálnejšiemu\nnajbeštiálnejších\nnajbeštiálnejším\nnajbeštiálnejšími\nnajbeštiálnejšiu\nnajbeštiálnejšom\nnajbeštiálnejšou\nnajbeťárskejšej\nnajbeťárskejší\nnajbeťárskejšia\nnajbeťárskejšie\nnajbeťárskejšieho\nnajbeťárskejšiemu\nnajbeťárskejších\nnajbeťárskejším\nnajbeťárskejšími\nnajbeťárskejšiu\nnajbeťárskejšom\nnajbeťárskejšou\nnajbezbolestnejšie\nnajbezbolestnejším\nnajbezbolestnejšou\nnajbezbožnejšej\nnajbezbožnejší\nnajbezbožnejšia\nnajbezbožnejšie\nnajbezbožnejšieho\nnajbezbožnejšiemu\nnajbezbožnejších\nnajbezbožnejším\nnajbezbožnejšími\nnajbezbožnejšiu\nnajbezbožnejšom\nnajbezbožnejšou\nnajbezbrannejšej\nnajbezbrannejší\nnajbezbrannejšia\nnajbezbrannejšie\nnajbezbrannejšieho\nnajbezbrannejšiemu\nnajbezbrannejších\nnajbezbrannejším\nnajbezbrannejšími\nnajbezbrannejšiu\nnajbezbrannejšom\nnajbezbrannejšou\nnajbezcennejšej\nnajbezcennejší\nnajbezcennejšia\nnajbezcennejšie\nnajbezcennejšieho\nnajbezcennejšiemu\nnajbezcennejších\nnajbezcennejším\nnajbezcennejšími\nnajbezcennejšiu\nnajbezcennejšom\nnajbezcennejšou\nnajbezcieľnejšie\nnajbezcitnejšej\nnajbezcitnejší\nnajbezcitnejšia\nnajbezcitnejšie\nnajbezcitnejšieho\nnajbezcitnejšiemu\nnajbezcitnejších\nnajbezcitnejším\nnajbezcitnejšími\nnajbezcitnejšiu\nnajbezcitnejšom\nnajbezcitnejšou\nnajbezduchejšej\nnajbezduchejší\nnajbezduchejšia\nnajbezduchejšie\nnajbezduchejšieho\nnajbezduchejšiemu\nnajbezduchejších\nnajbezduchejším\nnajbezduchejšími\nnajbezduchejšiu\nnajbezduchejšom\nnajbezduchejšou\nnajbezhlavejšie\nnajbezcharakternejšej\nnajbezcharakternejší\nnajbezcharakternejšia\nnajbezcharakternejšie\nnajbezcharakternejšieho\nnajbezcharakternejšiemu\nnajbezcharakternejších\nnajbezcharakternejším\nnajbezcharakternejšími\nnajbezcharakternejšiu\nnajbezcharakternejšom\nnajbezcharakternejšou\nnajbezchybnejšej\nnajbezchybnejší\nnajbezchybnejšia\nnajbezchybnejšie\nnajbezchybnejšieho\nnajbezchybnejšiemu\nnajbezchybnejších\nnajbezchybnejším\nnajbezchybnejšími\nnajbezchybnejšiu\nnajbezchybnejšom\nnajbezchybnejšou\nnajbezkrvnejšej\nnajbezkrvnejší\nnajbezkrvnejšia\nnajbezkrvnejšie\nnajbezkrvnejšieho\nnajbezkrvnejšiemu\nnajbezkrvnejších\nnajbezkrvnejším\nnajbezkrvnejšími\nnajbezkrvnejšiu\nnajbezkrvnejšom\nnajbezkrvnejšou\nnajbezmocnejšej\nnajbezmocnejší\nnajbezmocnejšia\nnajbezmocnejšieho\nnajbezmocnejšiemu\nnajbezmocnejších\nnajbezmocnejším\nnajbezmocnejšími\nnajbezmocnejšiu\nnajbezmocnejšom\nnajbezmocnejšou\nnajbezmyšlienkovitejšie\nnajbeznádejnejšej\nnajbeznádejnejší\nnajbeznádejnejšia\nnajbeznádejnejšie\nnajbeznádejnejšieho\nnajbeznádejnejšiemu\nnajbeznádejnejších\nnajbeznádejnejším\nnajbeznádejnejšími\nnajbeznádejnejšiu\nnajbeznádejnejšom\nnajbeznádejnejšou\nnajbezobsažnejšej\nnajbezobsažnejší\nnajbezobsažnejšia\nnajbezobsažnejšie\nnajbezobsažnejšieho\nnajbezobsažnejšiemu\nnajbezobsažnejších\nnajbezobsažnejším\nnajbezobsažnejšími\nnajbezobsažnejšiu\nnajbezobsažnejšom\nnajbezobsažnejšou\nnajbezočivejšej\nnajbezočivejší\nnajbezočivejšia\nnajbezočivejšie\nnajbezočivejšieho\nnajbezočivejšiemu\nnajbezočivejších\nnajbezočivejším\nnajbezočivejšími\nnajbezočivejšiu\nnajbezočivejšom\nnajbezočivejšou\nnajbezodnejšej\nnajbezodnejší\nnajbezodnejšia\nnajbezodnejšie\nnajbezodnejšieho\nnajbezodnejšiemu\nnajbezodnejších\nnajbezodnejším\nnajbezodnejšími\nnajbezodnejšiu\nnajbezodnejšom\nnajbezodnejšou\nnajbezohľadnejšej\nnajbezohľadnejší\nnajbezohľadnejšia\nnajbezohľadnejšie\nnajbezohladnejšieho\nnajbezohľadnejšieho\nnajbezohľadnejšiemu\nnajbezohľadnejších\nnajbezohladnejším\nnajbezohľadnejším\nnajbezohľadnejšími\nnajbezohľadnejšiu\nnajbezohľadnejšom\nnajbezohľadnejšou\nnajbezostyšnejšej\nnajbezostyšnejší\nnajbezostyšnejšia\nnajbezostyšnejšie\nnajbezostyšnejšieho\nnajbezostyšnejšiemu\nnajbezostyšnejších\nnajbezostyšnejším\nnajbezostyšnejšími\nnajbezostyšnejšiu\nnajbezostyšnejšom\nnajbezostyšnejšou\nnajbezprávnejšie\nnajbezproblémovejšej\nnajbezproblémovejší\nnajbezproblémovejšia\nnajbezproblémovejšie\nnajbezproblémovejšieho\nnajbezproblémovejšiemu\nnajbezproblémovejších\nnajbezproblémovejším\nnajbezproblémovejšími\nnajbezproblémovejšiu\nnajbezproblémovejšom\nnajbezproblémovejšou\nnajbezprostrednejšej\nnajbezprostrednejší\nnajbezprostrednejšia\nnajbezprostrednejšie\nnajbezprostrednejšieho\nnajbezprostrednejšiemu\nnajbezprostrednejších\nnajbezprostrednejším\nnajbezprostrednejšími\nnajbezprostrednejšiu\nnajbezprostrednejšom\nnajbezprostrednejšou\nnajbezradnejšej\nnajbezradnejší\nnajbezradnejšia\nnajbezradnejšie\nnajbezradnejšieho\nnajbezradnejšiemu\nnajbezradnejších\nnajbezradnejším\nnajbezradnejšími\nnajbezradnejšiu\nnajbezradnejšom\nnajbezradnejšou\nnajbezstarostnejšej\nnajbezstarostnejší\nnajbezstarostnejšia\nnajbezstarostnejšie\nnajbezstarostnejšieho\nnajbezstarostnejšiemu\nnajbezstarostnejších\nnajbezstarostnejším\nnajbezstarostnejšími\nnajbezstarostnejšiu\nnajbezstarostnejšom\nnajbezstarostnejšou\nnajbezúčelnejšej\nnajbezúčelnejší\nnajbezúčelnejšia\nnajbezúčelnejšie\nnajbezúčelnejšieho\nnajbezúčelnejšiemu\nnajbezúčelnejších\nnajbezúčelnejším\nnajbezúčelnejšími\nnajbezúčelnejšiu\nnajbezúčelnejšom\nnajbezúčelnejšou\nnajbezútešnejšej\nnajbezútešnejší\nnajbezútešnejšia\nnajbezútešnejšie\nnajbezútešnejšieho\nnajbezútešnejšiemu\nnajbezútešnejších\nnajbezútešnejším\nnajbezútešnejšími\nnajbezútešnejšiu\nnajbezútešnejšom\nnajbezútešnejšou\nnajbezuzdnejšej\nnajbezuzdnejší\nnajbezuzdnejšia\nnajbezuzdnejšie\nnajbezuzdnejšieho\nnajbezuzdnejšiemu\nnajbezuzdnejších\nnajbezuzdnejším\nnajbezuzdnejšími\nnajbezuzdnejšiu\nnajbezuzdnejšom\nnajbezuzdnejšou\nnajbezvadnejšej\nnajbezvadnejší\nnajbezvadnejšia\nnajbezvadnejšie\nnajbezvadnejšieho\nnajbezvadnejšiemu\nnajbezvadnejších\nnajbezvadnejším\nnajbezvadnejšími\nnajbezvadnejšiu\nnajbezvadnejšom\nnajbezvadnejšou\nnajbezvládnejšie\nnajbezvýhradnejšie\nnajbezvýchodiskovejšej\nnajbezvýchodiskovejší\nnajbezvýchodiskovejšia\nnajbezvýchodiskovejšie\nnajbezvýchodiskovejšieho\nnajbezvýchodiskovejšiemu\nnajbezvýchodiskovejších\nnajbezvýchodiskovejším\nnajbezvýchodiskovejšími\nnajbezvýchodiskovejšiu\nnajbezvýchodiskovejšom\nnajbezvýchodiskovejšou\nnajbezvýchodnejšej\nnajbezvýchodnejší\nnajbezvýchodnejšia\nnajbezvýchodnejšie\nnajbezvýchodnejšieho\nnajbezvýchodnejšiemu\nnajbezvýchodnejších\nnajbezvýchodnejším\nnajbezvýchodnejšími\nnajbezvýchodnejšiu\nnajbezvýchodnejšom\nnajbezvýchodnejšou\nnajbezvýraznejšej\nnajbezvýraznejší\nnajbezvýraznejšia\nnajbezvýraznejšie\nnajbezvýraznejšieho\nnajbezvýraznejšiemu\nnajbezvýraznejších\nnajbezvýraznejším\nnajbezvýraznejšími\nnajbezvýraznejšiu\nnajbezvýraznejšom\nnajbezvýraznejšou\nnajbezvýznamnejšej\nnajbezvýznamnejší\nnajbezvýznamnejšia\nnajbezvýznamnejšie\nnajbezvýznamnejšieho\nnajbezvýznamnejšiemu\nnajbezvýznamnejších\nnajbezvýznamnejším\nnajbezvýznamnejšími\nnajbezvýznamnejšiu\nnajbezvýznamnejšom\nnajbezvýznamnejšou\nnajbezzásadovejšej\nnajbezzásadovejší\nnajbezzásadovejšia\nnajbezzásadovejšie\nnajbezzásadovejšieho\nnajbezzásadovejšiemu\nnajbezzásadovejších\nnajbezzásadovejším\nnajbezzásadovejšími\nnajbezzásadovejšiu\nnajbezzásadovejšom\nnajbezzásadovejšou\nnajbéžovejšej\nnajbéžovejší\nnajbéžovejšia\nnajbéžovejšie\nnajbéžovejšieho\nnajbéžovejšiemu\nnajbéžovejších\nnajbéžovejším\nnajbéžovejšími\nnajbéžovejšiu\nnajbéžovejšom\nnajbéžovejšou\nnajbiblickejšej\nnajbiblickejší\nnajbiblickejšia\nnajbiblickejšie\nnajbiblickejšieho\nnajbiblickejšiemu\nnajbiblickejších\nnajbiblickejším\nnajbiblickejšími\nnajbiblickejšiu\nnajbiblickejšom\nnajbiblickejšou\nnajbigotnejšej\nnajbigotnejší\nnajbigotnejšia\nnajbigotnejšie\nnajbigotnejšieho\nnajbigotnejšiemu\nnajbigotnejších\nnajbigotnejším\nnajbigotnejšími\nnajbigotnejšiu\nnajbigotnejšom\nnajbigotnejšou\nnajbizarnejšej\nnajbizarnejší\nnajbizarnejšia\nnajbizarnejšie\nnajbizarnejšieho\nnajbizarnejšiemu\nnajbizarnejších\nnajbizarnejším\nnajbizarnejšími\nnajbizarnejšiu\nNajbizarnejšiu\nnajbizarnejšom\nnajbizarnejšou\nnajblahobytnejšej\nnajblahobytnejší\nnajblahobytnejšia\nnajblahobytnejšie\nnajblahobytnejšieho\nnajblahobytnejšiemu\nnajblahobytnejších\nnajblahobytnejším\nnajblahobytnejšími\nnajblahobytnejšiu\nnajblahobytnejšom\nnajblahobytnejšou\nnajblahodarnejšej\nnajblahodarnejší\nnajblahodarnejšia\nnajblahodarnejšie\nnajblahodarnejšieho\nnajblahodarnejšiemu\nnajblahodarnejších\nnajblahodarnejším\nnajblahodarnejšími\nnajblahodarnejšiu\nnajblahodarnejšom\nnajblahodarnejšou\nnajblahoprajnejšej\nnajblahoprajnejší\nnajblahoprajnejšia\nnajblahoprajnejšie\nnajblahoprajnejšieho\nnajblahoprajnejšiemu\nnajblahoprajnejších\nnajblahoprajnejším\nnajblahoprajnejšími\nnajblahoprajnejšiu\nnajblahoprajnejšom\nnajblahoprajnejšou\nnajblahosklonnejšej\nnajblahosklonnejší\nnajblahosklonnejšia\nnajblahosklonnejšie\nnajblahosklonnejšieho\nnajblahosklonnejšiemu\nnajblahosklonnejších\nnajblahosklonnejším\nnajblahosklonnejšími\nnajblahosklonnejšiu\nnajblahosklonnejšom\nnajblahosklonnejšou\nnajblahoslavenejšej\nnajblahoslavenejší\nnajblahoslavenejšia\nnajblahoslavenejšie\nnajblahoslavenejšieho\nnajblahoslavenejšiemu\nnajblahoslavenejších\nnajblahoslavenejším\nnajblahoslavenejšími\nnajblahoslavenejšiu\nnajblahoslavenejšom\nnajblahoslavenejšou\nnajblahovoľnejšej\nnajblahovoľnejší\nnajblahovoľnejšia\nnajblahovoľnejšie\nnajblahovoľnejšieho\nnajblahovoľnejšiemu\nnajblahovoľnejších\nnajblahovoľnejším\nnajblahovoľnejšími\nnajblahovoľnejšiu\nnajblahovoľnejšom\nnajblahovoľnejšou\nnajblanitejšej\nnajblanitejší\nnajblanitejšia\nnajblanitejšie\nnajblanitejšieho\nnajblanitejšiemu\nnajblanitejších\nnajblanitejším\nnajblanitejšími\nnajblanitejšiu\nnajblanitejšom\nnajblanitejšou\nnajblankytnejšej\nnajblankytnejší\nnajblankytnejšia\nnajblankytnejšie\nnajblankytnejšieho\nnajblankytnejšiemu\nnajblankytnejších\nnajblankytnejším\nnajblankytnejšími\nnajblankytnejšiu\nnajblankytnejšom\nnajblankytnejšou\nnajblatistejšej\nnajblatistejší\nnajblatistejšia\nnajblatistejšie\nnajblatistejšieho\nnajblatistejšiemu\nnajblatistejších\nnajblatistejším\nnajblatistejšími\nnajblatistejšiu\nnajblatistejšom\nnajblatistejšou\nnajblativejšej\nnajblativejší\nnajblativejšia\nnajblativejšie\nnajblativejšieho\nnajblativejšiemu\nnajblativejších\nnajblativejším\nnajblativejšími\nnajblativejšiu\nnajblativejšom\nnajblativejšou\nnajblatnatejšej\nnajblatnatejší\nnajblatnatejšia\nnajblatnatejšie\nnajblatnatejšieho\nnajblatnatejšiemu\nnajblatnatejších\nnajblatnatejším\nnajblatnatejšími\nnajblatnatejšiu\nnajblatnatejšom\nnajblatnatejšou\nnajblazeovanejšej\nnajblazeovanejší\nnajblazeovanejšia\nnajblazeovanejšie\nnajblazeovanejšieho\nnajblazeovanejšiemu\nnajblazeovanejších\nnajblazeovanejším\nnajblazeovanejšími\nnajblazeovanejšiu\nnajblazeovanejšom\nnajblazeovanejšou\nnajbláznivejšej\nnajbláznivejší\nnajbláznivejšia\nnajbláznivejšie\nnajbláznivejšieho\nnajbláznivejšiemu\nnajbláznivejších\nnajbláznivejším\nnajbláznivejšími\nnajbláznivejšiu\nnajbláznivejšom\nnajbláznivejšou\nnajbláznovskejšej\nnajbláznovskejší\nnajbláznovskejšia\nnajbláznovskejšie\nnajbláznovskejšieho\nnajbláznovskejšiemu\nnajbláznovskejších\nnajbláznovskejším\nnajbláznovskejšími\nnajbláznovskejšiu\nnajbláznovskejšom\nnajbláznovskejšou\nnajblaženejšej\nnajblaženejší\nnajblaženejšia\nnajblaženejšie\nnajblaženejšieho\nnajblaženejšiemu\nnajblaženejších\nnajblaženejším\nnajblaženejšími\nnajblaženejšiu\nnajblaženejšom\nnajblaženejšou\nnajblbšej\nnajblbší\nnajblbšia\nnajblbšie\nnajblbšieho\nnajblbšiemu\nnajblbších\nnajblbším\nnajblbšími\nnajblbšiu\nnajblbšom\nnajblbšou\nnajbledšej\nnajbledší\nnajbledšia\nnajbledšie\nnajbledšieho\nnajbledšiemu\nnajbledších\nnajbledším\nnajbledšími\nnajbledšiu\nnajbledšom\nnajbledšou\nnajbleskurýchlejšie\nnajblikavejšej\nnajblikavejší\nnajblikavejšia\nnajblikavejšie\nnajblikavejšieho\nnajblikavejšiemu\nnajblikavejších\nnajblikavejším\nnajblikavejšími\nnajblikavejšiu\nnajblikavejšom\nnajblikavejšou\nnajblíž\nnajbludnejšej\nnajbludnejší\nnajbludnejšia\nnajbludnejšie\nnajbludnejšieho\nnajbludnejšiemu\nnajbludnejších\nnajbludnejším\nnajbludnejšími\nnajbludnejšiu\nnajbludnejšom\nnajbludnejšou\nnajblýskavejšej\nnajblýskavejší\nnajblýskavejšia\nnajblýskavejšie\nnajblýskavejšieho\nnajblýskavejšiemu\nnajblýskavejších\nnajblýskavejším\nnajblýskavejšími\nnajblýskavejšiu\nnajblýskavejšom\nnajblýskavejšou\nnajblyšťavejšej\nnajblyšťavejší\nnajblyšťavejšia\nnajblyšťavejšie\nnajblyšťavejšieho\nnajblyšťavejšiemu\nnajblyšťavejších\nnajblyšťavejším\nnajblyšťavejšími\nnajblyšťavejšiu\nnajblyšťavejšom\nnajblyšťavejšou\nnajbodavejšej\nnajbodavejší\nnajbodavejšia\nnajbodavejšie\nnajbodavejšieho\nnajbodavejšiemu\nnajbodavejších\nnajbodavejším\nnajbodavejšími\nnajbodavejšiu\nnajbodavejšom\nnajbodavejšou\nnajbodkovanejšej\nnajbodkovanejší\nnajbodkovanejšia\nnajbodkovanejšie\nnajbodkovanejšieho\nnajbodkovanejšiemu\nnajbodkovanejších\nnajbodkovanejším\nnajbodkovanejšími\nnajbodkovanejšiu\nnajbodkovanejšom\nnajbodkovanejšou\nnajbodrejšej\nnajbodrejší\nnajbodrejšia\nnajbodrejšie\nnajbodrejšieho\nnajbodrejšiemu\nnajbodrejších\nnajbodrejším\nnajbodrejšími\nnajbodrejšiu\nnajbodrejšom\nnajbodrejšou\nnajbohabojnejšej\nnajbohabojnejší\nnajbohabojnejšia\nnajbohabojnejšie\nnajbohabojnejšieho\nnajbohabojnejšiemu\nnajbohabojnejších\nnajbohabojnejším\nnajbohabojnejšími\nnajbohabojnejšiu\nnajbohabojnejšom\nnajbohabojnejšou\nnajbohapustejšej\nnajbohapustejší\nnajbohapustejšia\nnajbohapustejšie\nnajbohapustejšieho\nnajbohapustejšiemu\nnajbohapustejších\nnajbohapustejším\nnajbohapustejšími\nnajbohapustejšiu\nnajbohapustejšom\nnajbohapustejšou\nnajbohatierskejšej\nnajbohatierskejší\nnajbohatierskejšia\nnajbohatierskejšie\nnajbohatierskejšieho\nnajbohatierskejšiemu\nnajbohatierskejších\nnajbohatierskejším\nnajbohatierskejšími\nnajbohatierskejšiu\nnajbohatierskejšom\nnajbohatierskejšou\nnajbohémskejšej\nnajbohémskejší\nnajbohémskejšia\nnajbohémskejšie\nnajbohémskejšieho\nnajbohémskejšiemu\nnajbohémskejších\nnajbohémskejším\nnajbohémskejšími\nnajbohémskejšiu\nnajbohémskejšom\nnajbohémskejšou\nnajbohorovnejšie\nnajbohovskejšej\nnajbohovskejší\nnajbohovskejšia\nnajbohovskejšie\nnajbohovskejšieho\nnajbohovskejšiemu\nnajbohovskejších\nnajbohovskejším\nnajbohovskejšími\nnajbohovskejšiu\nnajbohovskejšom\nnajbohovskejšou\nnajbohumilejšej\nnajbohumilejší\nnajbohumilejšia\nnajbohumilejšie\nnajbohumilejšieho\nnajbohumilejšiemu\nnajbohumilejších\nnajbohumilejším\nnajbohumilejšími\nnajbohumilejšiu\nnajbohumilejšom\nnajbohumilejšou\nnajbojachtivejšej\nnajbojachtivejší\nnajbojachtivejšia\nnajbojachtivejšie\nnajbojachtivejšieho\nnajbojachtivejšiemu\nnajbojachtivejších\nnajbojachtivejším\nnajbojachtivejšími\nnajbojachtivejšiu\nnajbojachtivejšom\nnajbojachtivejšou\nnajbojaschopnejšej\nnajbojaschopnejší\nnajbojaschopnejšia\nnajbojaschopnejšie\nnajbojaschopnejšieho\nnajbojaschopnejšiemu\nnajbojaschopnejších\nnajbojaschopnejším\nnajbojaschopnejšími\nnajbojaschopnejšiu\nnajbojaschopnejšom\nnajbojaschopnejšou\nnajbojazlivejšej\nnajbojazlivejší\nnajbojazlivejšia\nnajbojazlivejšie\nnajbojazlivejšieho\nnajbojazlivejšiemu\nnajbojazlivejších\nnajbojazlivejším\nnajbojazlivejšími\nnajbojazlivejšiu\nnajbojazlivejšom\nnajbojazlivejšou\nnajbojovnejšej\nnajbojovnejší\nnajbojovnejšia\nnajbojovnejšie\nnajbojovnejšieho\nnajbojovnejšiemu\nnajbojovnejších\nnajbojovnejším\nnajbojovnejšími\nnajbojovnejšiu\nnajbojovnejšom\nnajbojovnejšou\nnajboľavejšej\nnajboľavejší\nnajboľavejšia\nnajboľavejšie\nnajboľavejšieho\nnajboľavejšiemu\nnajboľavejších\nnajboľavejším\nnajboľavejšími\nnajboľavejšiu\nnajboľavejšom\nnajboľavejšou\nnajbolestivejšej\nnajbolestivejší\nnajbolestivejšia\nnajbolestivejšie\nnajbolestivejšieho\nnajbolestivejšiemu\nnajbolestivejších\nnajbolestivejším\nNajbolestivejším\nnajbolestivejšími\nnajbolestivejšiu\nnajbolestivejšom\nnajbolestivejšou\nnajbolestnejšej\nnajbolestnejší\nnajbolestnejšia\nnajbolestnejšie\nnajbolestnejšieho\nnajbolestnejšiemu\nnajbolestnejších\nnajbolestnejším\nnajbolestnejšími\nnajbolestnejšiu\nnajbolestnejšom\nnajbolestnejšou\nnajbôľnejšej\nnajbôľnejší\nnajbôľnejšia\nnajbôľnejšie\nnajbôľnejšieho\nnajbôľnejšiemu\nnajbôľnejších\nnajbôľnejším\nnajbôľnejšími\nnajbôľnejšiu\nnajbôľnejšom\nnajbôľnejšou\nnajbombastickejšej\nnajbombastickejší\nnajbombastickejšia\nnajbombastickejšie\nnajbombastickejšieho\nnajbombastickejšiemu\nnajbombastickejších\nnajbombastickejším\nnajbombastickejšími\nnajbombastickejšiu\nnajbombastickejšom\nnajbombastickejšou\nnajbosoráckejšej\nnajbosoráckejší\nnajbosoráckejšia\nnajbosoráckejšie\nnajbosoráckejšieho\nnajbosoráckejšiemu\nnajbosoráckejších\nnajbosoráckejším\nnajbosoráckejšími\nnajbosoráckejšiu\nnajbosoráckejšom\nnajbosoráckejšou\nnajbožskejšej\nnajbožskejší\nnajbožskejšia\nnajbožskejšie\nnajbožskejšieho\nnajbožskejšiemu\nnajbožskejších\nnajbožskejším\nnajbožskejšími\nnajbožskejšiu\nnajbožskejšom\nnajbožskejšou\nnajbradatejšej\nnajbradatejší\nnajbradatejšia\nnajbradatejšie\nnajbradatejšieho\nnajbradatejšiemu\nnajbradatejších\nnajbradatejším\nnajbradatejšími\nnajbradatejšiu\nnajbradatejšom\nnajbradatejšou\nnajbradavičnatejšej\nnajbradavičnatejší\nnajbradavičnatejšia\nnajbradavičnatejšie\nnajbradavičnatejšieho\nnajbradavičnatejšiemu\nnajbradavičnatejších\nnajbradavičnatejším\nnajbradavičnatejšími\nnajbradavičnatejšiu\nnajbradavičnatejšom\nnajbradavičnatejšou\nnajbrakovejšej\nnajbrakovejší\nnajbrakovejšia\nnajbrakovejšie\nnajbrakovejšieho\nnajbrakovejšiemu\nnajbrakovejších\nnajbrakovejším\nnajbrakovejšími\nnajbrakovejšiu\nnajbrakovejšom\nnajbrakovejšou\nnajbratskejšie\nnajbravúrnejšej\nnajbravúrnejší\nnajbravúrnejšia\nnajbravúrnejšie\nnajbravúrnejšieho\nnajbravúrnejšiemu\nnajbravúrnejších\nnajbravúrnejším\nnajbravúrnejšími\nnajbravúrnejšiu\nnajbravúrnejšom\nnajbravúrnejšou\nnajbrčkavejšej\nnajbrčkavejší\nnajbrčkavejšia\nnajbrčkavejšie\nnajbrčkavejšieho\nnajbrčkavejšiemu\nnajbrčkavejších\nnajbrčkavejším\nnajbrčkavejšími\nnajbrčkavejšiu\nnajbrčkavejšom\nnajbrčkavejšou\nnajbridkejšej\nnajbridkejší\nnajbridkejšia\nnajbridkejšie\nnajbridkejšieho\nnajbridkejšiemu\nnajbridkejších\nnajbridkejším\nnajbridkejšími\nnajbridkejšiu\nnajbridkejšom\nnajbridkejšou\nnajbrilantnejšej\nnajbrilantnejší\nnajbrilantnejšia\nnajbrilantnejšie\nnajbrilantnejšieho\nnajbrilantnejšiemu\nnajbrilantnejších\nnajbrilantnejším\nnajbrilantnejšími\nnajbrilantnejšiu\nnajbrilantnejšom\nnajbrilantnejšou\nnajbrisknejšej\nnajbrisknejší\nnajbrisknejšia\nnajbrisknejšie\nnajbrisknejšieho\nnajbrisknejšiemu\nnajbrisknejších\nnajbrisknejším\nnajbrisknejšími\nnajbrisknejšiu\nnajbrisknejšom\nnajbrisknejšou\nnajbritkejšej\nnajbritkejší\nnajbritkejšia\nnajbritkejšie\nnajbritkejšieho\nnajbritkejšiemu\nnajbritkejších\nnajbritkejším\nnajbritkejšími\nnajbritkejšiu\nnajbritkejšom\nnajbritkejšou\nnajbrnavejšej\nnajbrnavejší\nnajbrnavejšia\nnajbrnavejšie\nnajbrnavejšieho\nnajbrnavejšiemu\nnajbrnavejších\nnajbrnavejším\nnajbrnavejšími\nnajbrnavejšiu\nnajbrnavejšom\nnajbrnavejšou\nnajbronzovejšej\nnajbronzovejší\nnajbronzovejšia\nnajbronzovejšie\nnajbronzovejšieho\nnajbronzovejšiemu\nnajbronzovejších\nnajbronzovejším\nnajbronzovejšími\nnajbronzovejšiu\nnajbronzovejšom\nnajbronzovejšou\nnajbrudnejšej\nnajbrudnejší\nnajbrudnejšia\nnajbrudnejšie\nnajbrudnejšieho\nnajbrudnejšiemu\nnajbrudnejších\nnajbrudnejším\nnajbrudnejšími\nnajbrudnejšiu\nnajbrudnejšom\nnajbrudnejšou\nnajbruchatejšej\nnajbruchatejší\nnajbruchatejšia\nnajbruchatejšie\nnajbruchatejšieho\nnajbruchatejšiemu\nnajbruchatejších\nnajbruchatejším\nnajbruchatejšími\nnajbruchatejšiu\nnajbruchatejšom\nnajbruchatejšou\nnajbrutálnejšej\nnajbrutálnejší\nnajbrutálnejšia\nnajbrutálnejšie\nnajbrutálnejšieho\nnajbrutálnejšiemu\nnajbrutálnejších\nnajbrutálnejším\nnajbrutálnejšími\nnajbrutálnejšiu\nnajbrutálnejšom\nnajbrutálnejšou\nnajbublanie\nnajbucľatejšej\nnajbucľatejší\nnajbucľatejšia\nnajbucľatejšie\nnajbucľatejšieho\nnajbucľatejšiemu\nnajbucľatejších\nnajbucľatejším\nnajbucľatejšími\nnajbucľatejšiu\nnajbucľatejšom\nnajbucľatejšou\nnajbujarejšej\nnajbujarejší\nnajbujarejšia\nnajbujarejšie\nnajbujarejšieho\nnajbujarejšiemu\nnajbujarejších\nnajbujarejším\nnajbujarejšími\nnajbujarejšiu\nnajbujarejšom\nnajbujarejšou\nnajbujnejšej\nnajbujnejší\nnajbujnejšia\nnajbujnejšie\nnajbujnejšieho\nnajbujnejšiemu\nnajbujnejších\nnajbujnejším\nnajbujnejšími\nnajbujnejšiu\nnajbujnejšom\nnajbujnejšou\nnajbulharskejšej\nnajbulharskejší\nnajbulharskejšia\nnajbulharskejšie\nnajbulharskejšieho\nnajbulharskejšiemu\nnajbulharskejších\nnajbulharskejším\nnajbulharskejšími\nnajbulharskejšiu\nnajbulharskejšom\nnajbulharskejšou\nnajbulvárnejšej\nnajbulvárnejší\nnajbulvárnejšia\nnajbulvárnejšie\nnajbulvárnejšieho\nnajbulvárnejšiemu\nnajbulvárnejších\nnajbulvárnejším\nnajbulvárnejšími\nnajbulvárnejšiu\nnajbulvárnejšom\nnajbulvárnejšou\nnajburičskejšej\nnajburičskejší\nnajburičskejšia\nnajburičskejšie\nnajburičskejšieho\nnajburičskejšiemu\nnajburičskejších\nnajburičskejším\nnajburičskejšími\nnajburičskejšiu\nnajburičskejšom\nnajburičskejšou\nnajbúrlivejšej\nnajbúrlivejší\nNajbúrlivejší\nnajbúrlivejšia\nNajbúrlivejšia\nnajbúrlivejšie\nnajbúrlivejšieho\nnajbúrlivejšiemu\nnajbúrlivejších\nnajbúrlivejším\nnajbúrlivejšími\nnajbúrlivejšiu\nnajbúrlivejšom\nnajbúrlivejšou\nnajburžujskejšej\nnajburžujskejší\nnajburžujskejšia\nnajburžujskejšie\nnajburžujskejšieho\nnajburžujskejšiemu\nnajburžujskejších\nnajburžujskejším\nnajburžujskejšími\nnajburžujskejšiu\nnajburžujskejšom\nnajburžujskejšou\nnajbútľavejšej\nnajbútľavejší\nnajbútľavejšia\nnajbútľavejšie\nnajbútľavejšieho\nnajbútľavejšiemu\nnajbútľavejších\nnajbútľavejším\nnajbútľavejšími\nnajbútľavejšiu\nnajbútľavejšom\nnajbútľavejšou\nnajbyrokratickejšej\nnajbyrokratickejší\nnajbyrokratickejšia\nnajbyrokratickejšie\nnajbyrokratickejšieho\nnajbyrokratickejšiemu\nnajbyrokratickejších\nnajbyrokratickejším\nnajbyrokratickejšími\nnajbyrokratickejšiu\nnajbyrokratickejšom\nnajbyrokratickejšou\nnajbystrejšej\nnajbystrejší\nnajbystrejšia\nnajbystrejšie\nnajbystrejšieho\nnajbystrejšiemu\nnajbystrejších\nnajbystrejším\nnajbystrejšími\nnajbystrejšiu\nnajbystrejšom\nnajbystrejšou\nnajbystrozrakejšej\nnajbystrozrakejší\nnajbystrozrakejšia\nnajbystrozrakejšie\nnajbystrozrakejšieho\nnajbystrozrakejšiemu\nnajbystrozrakejších\nnajbystrozrakejším\nnajbystrozrakejšími\nnajbystrozrakejšiu\nnajbystrozrakejšom\nnajbystrozrakejšou\nnajbytostnejšej\nnajbytostnejší\nnajbytostnejšia\nnajbytostnejšie\nnajbytostnejšieho\nnajbytostnejšiemu\nnajbytostnejších\nnajbytostnejším\nnajbytostnejšími\nnajbytostnejšiu\nnajbytostnejšom\nnajbytostnejšou\nnajbyzantskejšej\nnajbyzantskejší\nnajbyzantskejšia\nnajbyzantskejšie\nnajbyzantskejšieho\nnajbyzantskejšiemu\nnajbyzantskejších\nnajbyzantskejším\nnajbyzantskejšími\nnajbyzantskejšiu\nnajbyzantskejšom\nnajbyzantskejšou\nnajbzučivejšej\nnajbzučivejší\nnajbzučivejšia\nnajbzučivejšie\nnajbzučivejšieho\nnajbzučivejšiemu\nnajbzučivejších\nnajbzučivejším\nnajbzučivejšími\nnajbzučivejšiu\nnajbzučivejšom\nnajbzučivejšou\nnajcelistvejšej\nnajcelistvejší\nnajcelistvejšia\nnajcelistvejšie\nnajcelistvejšieho\nnajcelistvejšiemu\nnajcelistvejších\nnajcelistvejším\nnajcelistvejšími\nnajcelistvejšiu\nnajcelistvejšom\nnajcelistvejšou\nnajcelostnejšej\nnajcelostnejší\nnajcelostnejšia\nnajcelostnejšie\nnajcelostnejšieho\nnajcelostnejšiemu\nnajcelostnejších\nnajcelostnejším\nnajcelostnejšími\nnajcelostnejšiu\nnajcelostnejšom\nnajcelostnejšou\nnajcentralizovanejšie\nnajcentralizovanejšiu\nnajcentrálnejšie\nnajcesnakovejšej\nnajcesnakovejší\nnajcesnakovejšia\nnajcesnakovejšie\nnajcesnakovejšieho\nnajcesnakovejšiemu\nnajcesnakovejších\nnajcesnakovejším\nnajcesnakovejšími\nnajcesnakovejšiu\nnajcesnakovejšom\nnajcesnakovejšou\nnajcibuľovejšej\nnajcibuľovejší\nnajcibuľovejšia\nnajcibuľovejšie\nnajcibuľovejšieho\nnajcibuľovejšiemu\nnajcibuľovejších\nnajcibuľovejším\nnajcibuľovejšími\nnajcibuľovejšiu\nnajcibuľovejšom\nnajcibuľovejšou\nnajcibuľovitejšej\nnajcibuľovitejší\nnajcibuľovitejšia\nnajcibuľovitejšie\nnajcibuľovitejšieho\nnajcibuľovitejšiemu\nnajcibuľovitejších\nnajcibuľovitejším\nnajcibuľovitejšími\nnajcibuľovitejšiu\nnajcibuľovitejšom\nnajcibuľovitejšou\nnajcieľavedomejšej\nnajcieľavedomejší\nnajcieľavedomejšia\nnajcieľavedomejšie\nnajcieľavedomejšieho\nnajcieľavedomejšiemu\nnajcieľavedomejších\nnajcieľavedomejším\nnajcieľavedomejšími\nnajcieľavedomejšiu\nnajcieľavedomejšom\nnajcieľavedomejšou\nnajcielenejšej\nnajcielenejší\nnajcielenejšia\nnajcielenejšie\nnajcielenejšieho\nnajcielenejšiemu\nnajcielenejších\nnajcielenejším\nnajcielenejšími\nnajcielenejšiu\nnajcielenejšom\nnajcielenejšou\nnajcieľuprimeranejšej\nnajcieľuprimeranejší\nnajcieľuprimeranejšia\nnajcieľuprimeranejšie\nnajcieľuprimeranejšieho\nnajcieľuprimeranejšiemu\nnajcieľuprimeranejších\nnajcieľuprimeranejším\nnajcieľuprimeranejšími\nnajcieľuprimeranejšiu\nnajcieľuprimeranejšom\nnajcieľuprimeranejšou\nnajcifrovanejšej\nnajcifrovanejší\nnajcifrovanejšia\nnajcifrovanejšie\nnajcifrovanejšieho\nnajcifrovanejšiemu\nnajcifrovanejších\nnajcifrovanejším\nnajcifrovanejšími\nnajcifrovanejšiu\nnajcifrovanejšom\nnajcifrovanejšou\nnajcigánskejšej\nnajcigánskejší\nnajcigánskejšia\nnajcigánskejšie\nnajcigánskejšieho\nnajcigánskejšiemu\nnajcigánskejších\nnajcigánskejším\nnajcigánskejšími\nnajcigánskejšiu\nnajcigánskejšom\nnajcigánskejšou\nnajcikcakovitejšie\nnajcintľavejšej\nnajcintľavejší\nnajcintľavejšia\nnajcintľavejšie\nnajcintľavejšieho\nnajcintľavejšiemu\nnajcintľavejších\nnajcintľavejším\nnajcintľavejšími\nnajcintľavejšiu\nnajcintľavejšom\nnajcintľavejšou\nnajcirkevnejšej\nnajcirkevnejší\nnajcirkevnejšia\nnajcirkevnejšie\nnajcirkevnejšieho\nnajcirkevnejšiemu\nnajcirkevnejších\nnajcirkevnejším\nnajcirkevnejšími\nnajcirkevnejšiu\nnajcirkevnejšom\nnajcirkevnejšou\nnajciteľnejšej\nnajciteľnejší\nNajciteľnejší\nnajciteľnejšia\nNajciteľnejšia\nnajciteľnejšie\nnajciteľnejšieho\nnajciteľnejšiemu\nnajciteľnejších\nnajciteľnejším\nNajciteľnejším\nnajciteľnejšími\nnajciteľnejšiu\nNajciteľnejšiu\nnajciteľnejšom\nnajciteľnejšou\nnajcitlivejšej\nnajcitlivejší\nnajcitlivejšia\nnajcitlivejšie\nnajcitlivejšieho\nnajcitlivejšiemu\nnajcitlivejších\nnajcitlivejším\nnajcitlivejšími\nnajcitlivejšiu\nnajcitlivejšom\nnajcitlivejšou\nnajcivilizovanejšej\nnajcivilizovanejší\nnajcivilizovanejšia\nnajcivilizovanejšie\nnajcivilizovanejšieho\nnajcivilizovanejšiemu\nnajcivilizovanejších\nnajcivilizovanejším\nnajcivilizovanejšími\nnajcivilizovanejšiu\nnajcivilizovanejšom\nnajcivilizovanejšou\nnajcivilnejšej\nnajcivilnejší\nnajcivilnejšia\nnajcivilnejšie\nnajcivilnejšieho\nnajcivilnejšiemu\nnajcivilnejších\nnajcivilnejším\nnajcivilnejšími\nnajcivilnejšiu\nnajcivilnejšom\nnajcivilnejšou\nnajclivejšej\nnajclivejší\nnajclivejšia\nnajclivejšie\nnajclivejšieho\nnajclivejšiemu\nnajclivejších\nnajclivejším\nnajclivejšími\nnajclivejšiu\nnajclivejšom\nnajclivejšou\nnajcnostnejšej\nnajcnostnejší\nnajcnostnejšia\nnajcnostnejšie\nnajcnostnejšieho\nnajcnostnejšiemu\nnajcnostnejších\nnajcnostnejším\nnajcnostnejšími\nnajcnostnejšiu\nnajcnostnejšom\nnajcnostnejšou\nnajctibažnejšej\nnajctibažnejší\nnajctibažnejšia\nnajctibažnejšie\nnajctibažnejšieho\nnajctibažnejšiemu\nnajctibažnejších\nnajctibažnejším\nnajctibažnejšími\nnajctibažnejšiu\nnajctibažnejšom\nnajctibažnejšou\nnajctihodnejšej\nnajctihodnejší\nnajctihodnejšia\nnajctihodnejšie\nnajctihodnejšieho\nnajctihodnejšiemu\nnajctihodnejších\nnajctihodnejším\nnajctihodnejšími\nnajctihodnejšiu\nnajctihodnejšom\nnajctihodnejšou\nnajctižiadostivejšej\nnajctižiadostivejší\nnajctižiadostivejšia\nnajctižiadostivejšie\nnajctižiadostivejšieho\nnajctižiadostivejšiemu\nnajctižiadostivejších\nnajctižiadostivejším\nnajctižiadostivejšími\nnajctižiadostivejšiu\nnajctižiadostivejšom\nnajctižiadostivejšou\nnajcudnejšej\nnajcudnejší\nnajcudnejšia\nnajcudnejšie\nnajcudnejšieho\nnajcudnejšiemu\nnajcudnejších\nnajcudnejším\nnajcudnejšími\nnajcudnejšiu\nnajcudnejšom\nnajcudnejšou\nnajcudzejšej\nnajcudzejší\nnajcudzejšia\nnajcudzejšie\nnajcudzejšieho\nnajcudzejšiemu\nnajcudzejších\nnajcudzejším\nnajcudzejšími\nnajcudzejšiu\nnajcudzejšom\nnajcudzejšou\nnajcudzoložnejšie\nnajcudzorodejšej\nnajcudzorodejší\nnajcudzorodejšia\nnajcudzorodejšie\nnajcudzorodejšieho\nnajcudzorodejšiemu\nnajcudzorodejších\nnajcudzorodejším\nnajcudzorodejšími\nnajcudzorodejšiu\nnajcudzorodejšom\nnajcudzorodejšou\nnajcukornatejšej\nnajcukornatejší\nnajcukornatejšia\nnajcukornatejšie\nnajcukornatejšieho\nnajcukornatejšiemu\nnajcukornatejších\nnajcukornatejším\nnajcukornatejšími\nnajcukornatejšiu\nnajcukornatejšom\nnajcukornatejšou\nnajcukríkovejšej\nnajcukríkovejší\nnajcukríkovejšia\nnajcukríkovejšie\nnajcukríkovejšieho\nnajcukríkovejšiemu\nnajcukríkovejších\nnajcukríkovejším\nnajcukríkovejšími\nnajcukríkovejšiu\nnajcukríkovejšom\nnajcukríkovejšou\nnajcukrovejšej\nnajcukrovejší\nnajcukrovejšia\nnajcukrovejšie\nnajcukrovejšieho\nnajcukrovejšiemu\nnajcukrovejších\nnajcukrovejším\nnajcukrovejšími\nnajcukrovejšiu\nnajcukrovejšom\nnajcukrovejšou\nnajcvičenejšej\nnajcvičenejší\nnajcvičenejšia\nnajcvičenejšie\nnajcvičenejšieho\nnajcvičenejšiemu\nnajcvičenejších\nnajcvičenejším\nnajcvičenejšími\nnajcvičenejšiu\nnajcvičenejšom\nnajcvičenejšou\nnajcviklovejšej\nnajcviklovejší\nnajcviklovejšia\nnajcviklovejšie\nnajcviklovejšieho\nnajcviklovejšiemu\nnajcviklovejších\nnajcviklovejším\nnajcviklovejšími\nnajcviklovejšiu\nnajcviklovejšom\nnajcviklovejšou\nnajcyklámenovejšej\nnajcyklámenovejší\nnajcyklámenovejšia\nnajcyklámenovejšie\nnajcyklámenovejšieho\nnajcyklámenovejšiemu\nnajcyklámenovejších\nnajcyklámenovejším\nnajcyklámenovejšími\nnajcyklámenovejšiu\nnajcyklámenovejšom\nnajcyklámenovejšou\nnajcynickejšej\nnajcynickejší\nnajcynickejšia\nnajcynickejšie\nnajcynickejšieho\nnajcynickejšiemu\nnajcynickejších\nnajcynickejším\nnajcynickejšími\nnajcynickejšiu\nnajcynickejšom\nnajcynickejšou\nnajčačanejšej\nnajčačanejší\nnajčačanejšia\nnajčačanejšie\nnajčačanejšieho\nnajčačanejšiemu\nnajčačanejších\nnajčačanejším\nnajčačanejšími\nnajčačanejšiu\nnajčačanejšom\nnajčačanejšou\nnajčapatejšej\nnajčapatejší\nnajčapatejšia\nnajčapatejšie\nnajčapatejšieho\nnajčapatejšiemu\nnajčapatejších\nnajčapatejším\nnajčapatejšími\nnajčapatejšiu\nnajčapatejšom\nnajčapatejšou\nnajčaptavejšej\nnajčaptavejší\nnajčaptavejšia\nnajčaptavejšie\nnajčaptavejšieho\nnajčaptavejšiemu\nnajčaptavejších\nnajčaptavejším\nnajčaptavejšími\nnajčaptavejšiu\nnajčaptavejšom\nnajčaptavejšou\nnajčarodejnejšej\nnajčarodejnejší\nnajčarodejnejšia\nnajčarodejnejšie\nnajčarodejnejšieho\nnajčarodejnejšiemu\nnajčarodejnejších\nnajčarodejnejším\nnajčarodejnejšími\nnajčarodejnejšiu\nnajčarodejnejšom\nnajčarodejnejšou\nnajčarokrásnejšie\nnajčarovnejšej\nnajčarovnejší\nnajčarovnejšia\nnajčarovnejšie\nnajčarovnejšieho\nnajčarovnejšiemu\nnajčarovnejších\nnajčarovnejším\nnajčarovnejšími\nnajčarovnejšiu\nnajčarovnejšom\nnajčarovnejšou\nnajčasnejšej\nnajčasnejší\nnajčasnejšia\nnajčasnejšie\nnajčasnejšieho\nnajčasnejšiemu\nnajčasnejších\nnajčasnejším\nnajčasnejšími\nnajčasnejšiu\nnajčasnejšom\nnajčasnejšou\nnajčastej\nnajčastejšej\nnajčastejší\nnajčastejšia\nnajčastejšie\nnajčastejšieho\nnajčastejšiemu\nnajčastejších\nnajčastejším\nnajčastejšími\nnajčastejšiu\nnajčastejšom\nnajčastejšou\nnajčelnejšie\nnajčelnejších\nnajčernastejšej\nnajčernastejší\nnajčernastejšia\nnajčernastejšie\nnajčernastejšieho\nnajčernastejšiemu\nnajčernastejších\nnajčernastejším\nnajčernastejšími\nnajčernastejšiu\nnajčernastejšom\nnajčernastejšou\nnajčernejšej\nnajčernejší\nnajčernejšia\nnajčernejšie\nnajčernejšieho\nnajčernejšiemu\nnajčernejších\nnajčernejším\nnajčernejšími\nnajčernejšiu\nnajčernejšom\nnajčernejšou\nnajčernošskejšej\nnajčernošskejší\nnajčernošskejšia\nnajčernošskejšie\nnajčernošskejšieho\nnajčernošskejšiemu\nnajčernošskejších\nnajčernošskejším\nnajčernošskejšími\nnajčernošskejšiu\nnajčernošskejšom\nnajčernošskejšou\nnajčerstvejšej\nnajčerstvejší\nnajčerstvejšia\nnajčerstvejšie\nnajčerstvejšieho\nnajčerstvejšiemu\nnajčerstvejších\nnajčerstvejším\nNajčerstvejším\nnajčerstvejšími\nnajčerstvejšiu\nnajčerstvejšom\nnajčerstvejšou\nNajčerstvejšou\nnajčertovskejšej\nnajčertovskejší\nnajčertovskejšia\nnajčertovskejšie\nnajčertovskejšieho\nnajčertovskejšiemu\nnajčertovskejších\nnajčertovskejším\nnajčertovskejšími\nnajčertovskejšiu\nnajčertovskejšom\nnajčertovskejšou\nnajčervavejšej\nnajčervavejší\nnajčervavejšia\nnajčervavejšie\nnajčervavejšieho\nnajčervavejšiemu\nnajčervavejších\nnajčervavejším\nnajčervavejšími\nnajčervavejšiu\nnajčervavejšom\nnajčervavejšou\nnajčervenejšej\nnajčervenejší\nnajčervenejšia\nnajčervenejšie\nnajčervenejšieho\nnajčervenejšiemu\nnajčervenejších\nnajčervenejším\nnajčervenejšími\nnajčervenejšiu\nnajčervenejšom\nnajčervenejšou\nnajčervenohnedšej\nnajčervenohnedší\nnajčervenohnedšia\nnajčervenohnedšie\nnajčervenohnedšieho\nnajčervenohnedšiemu\nnajčervenohnedších\nnajčervenohnedším\nnajčervenohnedšími\nnajčervenohnedšiu\nnajčervenohnedšom\nnajčervenohnedšou\nnajčervivejšej\nnajčervivejší\nnajčervivejšia\nnajčervivejšie\nnajčervivejšieho\nnajčervivejšiemu\nnajčervivejších\nnajčervivejším\nnajčervivejšími\nnajčervivejšiu\nnajčervivejšom\nnajčervivejšou\nnajčeskejšej\nnajčeskejší\nnajčeskejšia\nnajčeskejšie\nnajčeskejšieho\nnajčeskejšiemu\nnajčeskejších\nnajčeskejším\nnajčeskejšími\nnajčeskejšiu\nnajčeskejšom\nnajčeskejšou\nnajčestnejšej\nnajčestnejší\nnajčestnejšia\nnajčestnejšie\nnajčestnejšieho\nnajčestnejšiemu\nnajčestnejších\nnajčestnejším\nnajčestnejšími\nnajčestnejšiu\nnajčestnejšom\nnajčestnejšou\nnajčičíkavejšej\nnajčičíkavejší\nnajčičíkavejšia\nnajčičíkavejšie\nnajčičíkavejšieho\nnajčičíkavejšiemu\nnajčičíkavejších\nnajčičíkavejším\nnajčičíkavejšími\nnajčičíkavejšiu\nnajčičíkavejšom\nnajčičíkavejšou\nnajčinnejšie\nnajčinorodejšej\nnajčinorodejší\nnajčinorodejšia\nnajčinorodejšie\nnajčinorodejšieho\nnajčinorodejšiemu\nnajčinorodejších\nnajčinorodejším\nnajčinorodejšími\nnajčinorodejšiu\nnajčinorodejšom\nnajčinorodejšou\nnajčínskejšie\nnajčipernejšej\nnajčipernejší\nnajčipernejšia\nnajčipernejšie\nnajčipernejšieho\nnajčipernejšiemu\nnajčipernejších\nnajčipernejším\nnajčipernejšími\nnajčipernejšiu\nnajčipernejšom\nnajčipernejšou\nnajčipkovanejšej\nnajčipkovanejší\nnajčipkovanejšia\nnajčipkovanejšie\nnajčipkovanejšieho\nnajčipkovanejšiemu\nnajčipkovanejších\nnajčipkovanejším\nnajčipkovanejšími\nnajčipkovanejšiu\nnajčipkovanejšom\nnajčipkovanejšou\nnajčipkovitejšej\nnajčipkovitejší\nnajčipkovitejšia\nnajčipkovitejšie\nnajčipkovitejšieho\nnajčipkovitejšiemu\nnajčipkovitejších\nnajčipkovitejším\nnajčipkovitejšími\nnajčipkovitejšiu\nnajčipkovitejšom\nnajčipkovitejšou\nnajčírejšej\nnajčírejší\nnajčírejšia\nnajčírejšie\nnajčírejšieho\nnajčírejšiemu\nnajčírejších\nnajčírejším\nnajčírejšími\nnajčírejšiu\nnajčírejšom\nnajčírejšou\nnajčistotnejšej\nnajčistotnejší\nnajčistotnejšia\nnajčistotnejšie\nnajčistotnejšieho\nnajčistotnejšiemu\nnajčistotnejších\nnajčistotnejším\nnajčistotnejšími\nnajčistotnejšiu\nnajčistotnejšom\nnajčistotnejšou\nnajčistučkejšej\nnajčistučkejší\nnajčistučkejšia\nnajčistučkejšie\nnajčistučkejšieho\nnajčistučkejšiemu\nnajčistučkejších\nnajčistučkejším\nnajčistučkejšími\nnajčistučkejšiu\nnajčistučkejšom\nnajčistučkejšou\nnajčítanejšie\nnajčítankovejšej\nnajčítankovejší\nnajčítankovejšia\nnajčítankovejšie\nnajčítankovejšieho\nnajčítankovejšiemu\nnajčítankovejších\nnajčítankovejším\nnajčítankovejšími\nnajčítankovejšiu\nnajčítankovejšom\nnajčítankovejšou\nnajčitateľnejšej\nnajčitateľnejší\nnajčitateľnejšia\nnajčitateľnejšie\nnajčitateľnejšieho\nnajčitateľnejšiemu\nnajčitateľnejších\nnajčitateľnejším\nnajčitateľnejšími\nnajčitateľnejšiu\nnajčitateľnejšom\nnajčitateľnejšou\nnajčítavaní\nnajčítavania\nnajčítavanie\nnajčlánkovanejšej\nnajčlánkovanejší\nnajčlánkovanejšia\nnajčlánkovanejšie\nnajčlánkovanejšieho\nnajčlánkovanejšiemu\nnajčlánkovanejších\nnajčlánkovanejším\nnajčlánkovanejšími\nnajčlánkovanejšiu\nnajčlánkovanejšom\nnajčlánkovanejšou\nnajčľapatejšej\nnajčľapatejší\nnajčľapatejšia\nnajčľapatejšie\nnajčľapatejšieho\nnajčľapatejšiemu\nnajčľapatejších\nnajčľapatejším\nnajčľapatejšími\nnajčľapatejšiu\nnajčľapatejšom\nnajčľapatejšou\nnajčlenitejšej\nnajčlenitejší\nnajčlenitejšia\nnajčlenitejšie\nnajčlenitejšieho\nnajčlenitejšiemu\nnajčlenitejších\nnajčlenitejším\nnajčlenitejšími\nnajčlenitejšiu\nnajčlenitejšom\nnajčlenitejšou\nnajčlovečenskejšej\nnajčlovečenskejší\nnajčlovečenskejšia\nnajčlovečenskejšie\nnajčlovečenskejšieho\nnajčlovečenskejšiemu\nnajčlovečenskejších\nnajčlovečenskejším\nnajčlovečenskejšími\nnajčlovečenskejšiu\nnajčlovečenskejšom\nnajčlovečenskejšou\nnajčnostnejšej\nnajčnostnejší\nnajčnostnejšia\nnajčnostnejšie\nnajčnostnejšieho\nnajčnostnejšiemu\nnajčnostnejších\nnajčnostnejším\nnajčnostnejšími\nnajčnostnejšiu\nnajčnostnejšom\nnajčnostnejšou\nnajčokoládovejšej\nnajčokoládovejší\nnajčokoládovejšia\nnajčokoládovejšie\nnajčokoládovejšieho\nnajčokoládovejšiemu\nnajčokoládovejších\nnajčokoládovejším\nnajčokoládovejšími\nnajčokoládovejšiu\nnajčokoládovejšom\nnajčokoládovejšou\nnajčudáckejšej\nnajčudáckejší\nnajčudáckejšia\nnajčudáckejšie\nnajčudáckejšieho\nnajčudáckejšiemu\nnajčudáckejších\nnajčudáckejším\nnajčudáckejšími\nnajčudáckejšiu\nnajčudáckejšom\nnajčudáckejšou\nnajčudesnejšej\nnajčudesnejší\nnajčudesnejšia\nnajčudesnejšie\nnajčudesnejšieho\nnajčudesnejšiemu\nnajčudesnejších\nnajčudesnejším\nnajčudesnejšími\nnajčudesnejšiu\nnajčudesnejšom\nnajčudesnejšou\nnajčudnejšej\nnajčudnejší\nNajčudnejší\nnajčudnejšia\nnajčudnejšie\nNajčudnejšie\nnajčudnejšieho\nnajčudnejšiemu\nnajčudnejších\nnajčudnejším\nnajčudnejšími\nnajčudnejšiu\nnajčudnejšom\nnajčudnejšou\nnajčujnejšej\nnajčujnejší\nnajčujnejšia\nnajčujnejšie\nnajčujnejšieho\nnajčujnejšiemu\nnajčujnejších\nnajčujnejším\nnajčujnejšími\nnajčujnejšiu\nnajčujnejšom\nnajčujnejšou\nnajčulejšej\nnajčulejší\nNajčulejší\nnajčulejšia\nnajčulejšie\nnajčulejšieho\nnajčulejšiemu\nnajčulejších\nnajčulejším\nNajčulejším\nnajčulejšími\nNajčulejšími\nnajčulejšiu\nnajčulejšom\nnajčulejšou\nnajďalej\nnajďalekejšej\nnajďalekejší\nnajďalekejšia\nnajďalekejšie\nnajďalekejšieho\nnajďalekejšiemu\nnajďalekejších\nnajďalekejším\nnajďalekejšími\nnajďalekejšiu\nnajďalekejšom\nnajďalekejšou\nnajďalekonosnejšej\nnajďalekonosnejší\nnajďalekonosnejšia\nnajďalekonosnejšie\nnajďalekonosnejšieho\nnajďalekonosnejšiemu\nnajďalekonosnejších\nnajďalekonosnejším\nnajďalekonosnejšími\nnajďalekonosnejšiu\nnajďalekonosnejšom\nnajďalekonosnejšou\nnajďalekosiahlejšej\nnajďalekosiahlejší\nnajďalekosiahlejšia\nnajďalekosiahlejšie\nnajďalekosiahlejšieho\nnajďalekosiahlejšiemu\nnajďalekosiahlejších\nnajďalekosiahlejším\nnajďalekosiahlejšími\nnajďalekosiahlejšiu\nnajďalekosiahlejšom\nnajďalekosiahlejšou\nnajďalekozrakejšej\nnajďalekozrakejší\nnajďalekozrakejšia\nnajďalekozrakejšie\nnajďalekozrakejšieho\nnajďalekozrakejšiemu\nnajďalekozrakejších\nnajďalekozrakejším\nnajďalekozrakejšími\nnajďalekozrakejšiu\nnajďalekozrakejšom\nnajďalekozrakejšou\nnajdámskejšej\nnajdámskejší\nnajdámskejšia\nnajdámskejšie\nnajdámskejšieho\nnajdámskejšiemu\nnajdámskejších\nnajdámskejším\nnajdámskejšími\nnajdámskejšiu\nnajdámskejšom\nnajdámskejšou\nnajdarebáckejšej\nnajdarebáckejší\nnajdarebáckejšia\nnajdarebáckejšie\nnajdarebáckejšieho\nnajdarebáckejšiemu\nnajdarebáckejších\nnajdarebáckejším\nnajdarebáckejšími\nnajdarebáckejšiu\nnajdarebáckejšom\nnajdarebáckejšou\nnajdarebnejšej\nnajdarebnejší\nnajdarebnejšia\nnajdarebnejšie\nnajdarebnejšieho\nnajdarebnejšiemu\nnajdarebnejších\nnajdarebnejším\nnajdarebnejšími\nnajdarebnejšiu\nnajdarebnejšom\nnajdarebnejšou\nnajdarobnejšej\nnajdarobnejší\nnajdarobnejšia\nnajdarobnejšie\nnajdarobnejšieho\nnajdarobnejšiemu\nnajdarobnejších\nnajdarobnejším\nnajdarobnejšími\nnajdarobnejšiu\nnajdarobnejšom\nnajdarobnejšou\nnajdaromnejšej\nnajdaromnejší\nnajdaromnejšia\nnajdaromnejšie\nnajdaromnejšieho\nnajdaromnejšiemu\nnajdaromnejších\nnajdaromnejším\nnajdaromnejšími\nnajdaromnejšiu\nnajdaromnejšom\nnajdaromnejšou\nnajdaždivejšej\nnajdaždivejší\nnajdaždivejšia\nnajdaždivejšie\nnajdaždivejšieho\nnajdaždivejšiemu\nnajdaždivejších\nnajdaždivejším\nnajdaždivejšími\nnajdaždivejšiu\nnajdaždivejšom\nnajdaždivejšou\nnajdebilnejšej\nnajdebilnejší\nnajdebilnejšia\nnajdebilnejšie\nnajdebilnejšieho\nnajdebilnejšiemu\nnajdebilnejších\nnajdebilnejším\nnajdebilnejšími\nnajdebilnejšiu\nnajdebilnejšom\nnajdebilnejšou\nnajdecentnejšej\nnajdecentnejší\nnajdecentnejšia\nnajdecentnejšie\nnajdecentnejšieho\nnajdecentnejšiemu\nnajdecentnejších\nnajdecentnejším\nnajdecentnejšími\nnajdecentnejšiu\nnajdecentnejšom\nnajdecentnejšou\nnajdecentralizačnejšej\nnajdecentralizačnejší\nnajdecentralizačnejšia\nnajdecentralizačnejšie\nnajdecentralizačnejšieho\nnajdecentralizačnejšiemu\nnajdecentralizačnejších\nnajdecentralizačnejším\nnajdecentralizačnejšími\nnajdecentralizačnejšiu\nnajdecentralizačnejšom\nnajdecentralizačnejšou\nnajdedinskejšej\nnajdedinskejší\nnajdedinskejšia\nnajdedinskejšie\nnajdedinskejšieho\nnajdedinskejšiemu\nnajdedinskejších\nnajdedinskejším\nnajdedinskejšími\nnajdedinskejšiu\nnajdedinskejšom\nnajdedinskejšou\nnajdeduktívnejšie\nnajdefektnejšej\nnajdefektnejší\nnajdefektnejšia\nnajdefektnejšie\nnajdefektnejšieho\nnajdefektnejšiemu\nnajdefektnejších\nnajdefektnejším\nnajdefektnejšími\nnajdefektnejšiu\nnajdefektnejšom\nnajdefektnejšou\nnajdefenzívnejšej\nnajdefenzívnejší\nnajdefenzívnejšia\nnajdefenzívnejšie\nnajdefenzívnejšieho\nnajdefenzívnejšiemu\nnajdefenzívnejších\nnajdefenzívnejším\nnajdefenzívnejšími\nnajdefenzívnejšiu\nnajdefenzívnejšom\nnajdefenzívnejšou\nnajdeficitnejší\nnajdeficitnejším\nnajdefinitívnejšie\nnajdejovejšie\nnajdekadentnejšej\nnajdekadentnejší\nnajdekadentnejšia\nnajdekadentnejšie\nnajdekadentnejšieho\nnajdekadentnejšiemu\nnajdekadentnejších\nnajdekadentnejším\nnajdekadentnejšími\nnajdekadentnejšiu\nnajdekadentnejšom\nnajdekadentnejšou\nnajdeklaratívnejšej\nnajdeklaratívnejší\nnajdeklaratívnejšia\nnajdeklaratívnejšie\nnajdeklaratívnejšieho\nnajdeklaratívnejšiemu\nnajdeklaratívnejších\nnajdeklaratívnejším\nnajdeklaratívnejšími\nnajdeklaratívnejšiu\nnajdeklaratívnejšom\nnajdeklaratívnejšou\nnajdekoračnejšej\nnajdekoračnejší\nnajdekoračnejšia\nnajdekoračnejšie\nnajdekoračnejšieho\nnajdekoračnejšiemu\nnajdekoračnejších\nnajdekoračnejším\nnajdekoračnejšími\nnajdekoračnejšiu\nnajdekoračnejšom\nnajdekoračnejšou\nnajdekoratívnejšej\nnajdekoratívnejší\nnajdekoratívnejšia\nnajdekoratívnejšie\nnajdekoratívnejšieho\nnajdekoratívnejšiemu\nnajdekoratívnejších\nnajdekoratívnejším\nnajdekoratívnejšími\nnajdekoratívnejšiu\nnajdekoratívnejšom\nnajdekoratívnejšou\nnajdelikátnejšej\nnajdelikátnejší\nnajdelikátnejšia\nnajdelikátnejšie\nnajdelikátnejšieho\nnajdelikátnejšiemu\nnajdelikátnejších\nnajdelikátnejším\nnajdelikátnejšími\nnajdelikátnejšiu\nnajdelikátnejšom\nnajdelikátnejšou\nnajdeliteľnejšej\nnajdeliteľnejší\nnajdeliteľnejšia\nnajdeliteľnejšie\nnajdeliteľnejšieho\nnajdeliteľnejšiemu\nnajdeliteľnejších\nnajdeliteľnejším\nnajdeliteľnejšími\nnajdeliteľnejšiu\nnajdeliteľnejšom\nnajdeliteľnejšou\nnajdemagogickejšie\nnajdemancipovanejších\nnajdemokratickejšej\nnajdemokratickejší\nnajdemokratickejšia\nnajdemokratickejšie\nnajdemokratickejšieho\nnajdemokratickejšiemu\nnajdemokratickejších\nnajdemokratickejším\nnajdemokratickejšími\nnajdemokratickejšiu\nnajdemokratickejšom\nnajdemokratickejšou\nnajdémonickejšej\nnajdémonickejší\nnajdémonickejšia\nnajdémonickejšie\nnajdémonickejšieho\nnajdémonickejšiemu\nnajdémonickejších\nnajdémonickejším\nnajdémonickejšími\nnajdémonickejšiu\nnajdémonickejšom\nnajdémonickejšou\nnajdemonštratívnejšej\nnajdemonštratívnejší\nnajdemonštratívnejšia\nnajdemonštratívnejšie\nnajdemonštratívnejšieho\nnajdemonštratívnejšiemu\nnajdemonštratívnejších\nnajdemonštratívnejším\nnajdemonštratívnejšími\nnajdemonštratívnejšiu\nnajdemonštratívnejšom\nnajdemonštratívnejšou\nnájdene\nnájdenec\nnajdengľavejšej\nnajdengľavejší\nnajdengľavejšia\nnajdengľavejšie\nnajdengľavejšieho\nnajdengľavejšiemu\nnajdengľavejších\nnajdengľavejším\nnajdengľavejšími\nnajdengľavejšiu\nnajdengľavejšom\nnajdengľavejšou\nnájdenie\nnájdený\nnajdepresívnejšej\nnajdepresívnejší\nnajdepresívnejšia\nnajdepresívnejšie\nnajdepresívnejšieho\nnajdepresívnejšiemu\nnajdepresívnejších\nnajdepresívnejším\nnajdepresívnejšími\nnajdepresívnejšiu\nnajdepresívnejšom\nnajdepresívnejšou\nnajdeprimovanejšej\nnajdeprimovanejší\nnajdeprimovanejšia\nnajdeprimovanejšie\nnajdeprimovanejšieho\nnajdeprimovanejšiemu\nnajdeprimovanejších\nnajdeprimovanejším\nnajdeprimovanejšími\nnajdeprimovanejšiu\nnajdeprimovanejšom\nnajdeprimovanejšou\nnajdeprimujúcejšej\nnajdeprimujúcejší\nnajdeprimujúcejšia\nnajdeprimujúcejšie\nnajdeprimujúcejšieho\nnajdeprimujúcejšiemu\nnajdeprimujúcejších\nnajdeprimujúcejším\nnajdeprimujúcejšími\nnajdeprimujúcejšiu\nnajdeprimujúcejšom\nnajdeprimujúcejšou\nnajderavejšej\nnajderavejší\nnajderavejšia\nnajderavejšie\nnajderavejšieho\nnajderavejšiemu\nnajderavejších\nnajderavejším\nnajderavejšími\nnajderavejšiu\nnajderavejšom\nnajderavejšou\nnajdesivejšej\nnajdesivejší\nnajdesivejšia\nnajdesivejšie\nnajdesivejšieho\nnajdesivejšiemu\nnajdesivejších\nnajdesivejším\nnajdesivejšími\nnajdesivejšiu\nnajdesivejšom\nnajdesivejšou\nnajdesnejšej\nnajdesnejší\nnajdesnejšia\nnajdesnejšie\nnajdesnejšieho\nnajdesnejšiemu\nnajdesnejších\nnajdesnejším\nnajdesnejšími\nnajdesnejšiu\nnajdesnejšom\nnajdesnejšou\nnajdespotickejšej\nnajdespotickejší\nnajdespotickejšia\nnajdespotickejšie\nnajdespotickejšieho\nnajdespotickejšiemu\nnajdespotickejších\nnajdespotickejším\nnajdespotickejšími\nnajdespotickejšiu\nnajdespotickejšom\nnajdespotickejšou\nnajdeštrukčnejšej\nnajdeštrukčnejší\nnajdeštrukčnejšia\nnajdeštrukčnejšie\nnajdeštrukčnejšieho\nnajdeštrukčnejšiemu\nnajdeštrukčnejších\nnajdeštrukčnejším\nnajdeštrukčnejšími\nnajdeštrukčnejšiu\nnajdeštrukčnejšom\nnajdeštrukčnejšou\nnajdeštruktívnejšej\nnajdeštruktívnejší\nnajdeštruktívnejšia\nnajdeštruktívnejšie\nnajdeštruktívnejšieho\nnajdeštruktívnejšiemu\nnajdeštruktívnejších\nnajdeštruktívnejším\nnajdeštruktívnejšími\nnajdeštruktívnejšiu\nnajdeštruktívnejšom\nnajdeštruktívnejšou\nnajdetinskejšej\nnajdetinskejší\nnajdetinskejšia\nnajdetinskejšie\nnajdetinskejšieho\nnajdetinskejšiemu\nnajdetinskejších\nnajdetinskejším\nnajdetinskejšími\nnajdetinskejšiu\nnajdetinskejšom\nnajdetinskejšou\nnajdetskejšej\nnajdetskejší\nnajdetskejšia\nnajdetskejšie\nnajdetskejšieho\nnajdetskejšiemu\nnajdetskejších\nnajdetskejším\nnajdetskejšími\nnajdetskejšiu\nnajdetskejšom\nnajdetskejšou\nnajdezolátnejšej\nnajdezolátnejší\nnajdezolátnejšia\nnajdezolátnejšie\nnajdezolátnejšieho\nnajdezolátnejšiemu\nnajdezolátnejších\nnajdezolátnejším\nnajdezolátnejšími\nnajdezolátnejšiu\nnajdezolátnejšom\nnajdezolátnejšou\nnajdezorientovanejšej\nnajdezorientovanejší\nnajdezorientovanejšia\nnajdezorientovanejšie\nnajdezorientovanejšieho\nnajdezorientovanejšiemu\nnajdezorientovanejších\nnajdezorientovanejším\nnajdezorientovanejšími\nnajdezorientovanejšiu\nnajdezorientovanejšom\nnajdezorientovanejšou\nnajdiabolskejšej\nnajdiabolskejší\nnajdiabolskejšia\nnajdiabolskejšie\nnajdiabolskejšieho\nnajdiabolskejšiemu\nnajdiabolskejších\nnajdiabolskejším\nnajdiabolskejšími\nnajdiabolskejšiu\nnajdiabolskejšom\nnajdiabolskejšou\nnajdialektickejšie\nnajdialogickejšej\nnajdialogickejší\nnajdialogickejšia\nnajdialogickejšie\nnajdialogickejšieho\nnajdialogickejšiemu\nnajdialogickejších\nnajdialogickejším\nnajdialogickejšími\nnajdialogickejšiu\nnajdialogickejšom\nnajdialogickejšou\nnajdiametrálnejšie\nnajdierkovanejšej\nnajdierkovanejší\nnajdierkovanejšia\nnajdierkovanejšie\nnajdierkovanejšieho\nnajdierkovanejšiemu\nnajdierkovanejších\nnajdierkovanejším\nnajdierkovanejšími\nnajdierkovanejšiu\nnajdierkovanejšom\nnajdierkovanejšou\nnajdierovania\nnajdierovanie\nnajdiétnejšej\nnajdiétnejší\nnajdiétnejšia\nnajdiétnejšie\nnajdiétnejšieho\nnajdiétnejšiemu\nnajdiétnejších\nnajdiétnejším\nnajdiétnejšími\nnajdiétnejšiu\nnajdiétnejšom\nnajdiétnejšou\nnajdievčenskejšej\nnajdievčenskejší\nnajdievčenskejšia\nnajdievčenskejšie\nnajdievčenskejšieho\nnajdievčenskejšiemu\nnajdievčenskejších\nnajdievčenskejším\nnajdievčenskejšími\nnajdievčenskejšiu\nnajdievčenskejšom\nnajdievčenskejšou\nnajdiferencovanejšej\nnajdiferencovanejší\nnajdiferencovanejšia\nnajdiferencovanejšie\nnajdiferencovanejšieho\nnajdiferencovanejšiemu\nnajdiferencovanejších\nnajdiferencovanejším\nnajdiferencovanejšími\nnajdiferencovanejšiu\nnajdiferencovanejšom\nnajdiferencovanejšou\nnajdifúznejšie\nnajdiktátorskejšej\nnajdiktátorskejší\nnajdiktátorskejšia\nnajdiktátorskejšie\nnajdiktátorskejšieho\nnajdiktátorskejšiemu\nnajdiktátorskejších\nnajdiktátorskejším\nnajdiktátorskejšími\nnajdiktátorskejšiu\nnajdiktátorskejšom\nnajdiktátorskejšou\nnajdiletantskejšej\nnajdiletantskejší\nnajdiletantskejšia\nnajdiletantskejšie\nnajdiletantskejšieho\nnajdiletantskejšiemu\nnajdiletantskejších\nnajdiletantskejším\nnajdiletantskejšími\nnajdiletantskejšiu\nnajdiletantskejšom\nnajdiletantskejšou\nnájdime\nnajdiplomatickejšej\nnajdiplomatickejší\nnajdiplomatickejšia\nnajdiplomatickejšie\nnajdiplomatickejšieho\nnajdiplomatickejšiemu\nnajdiplomatickejších\nnajdiplomatickejším\nnajdiplomatickejšími\nnajdiplomatickejšiu\nnajdiplomatickejšom\nnajdiplomatickejšou\nnajdirektívnejšej\nnajdirektívnejší\nnajdirektívnejšia\nnajdirektívnejšie\nnajdirektívnejšieho\nnajdirektívnejšiemu\nnajdirektívnejších\nnajdirektívnejším\nnajdirektívnejšími\nnajdirektívnejšiu\nnajdirektívnejšom\nnajdirektívnejšou\nnajdisciplinovanejšej\nnajdisciplinovanejší\nnajdisciplinovanejšia\nnajdisciplinovanejšie\nnajdisciplinovanejšieho\nnajdisciplinovanejšiemu\nnajdisciplinovanejších\nnajdisciplinovanejším\nnajdisciplinovanejšími\nnajdisciplinovanejšiu\nnajdisciplinovanejšom\nnajdisciplinovanejšou\nnajdisharmonickejšej\nnajdisharmonickejší\nnajdisharmonickejšia\nnajdisharmonickejšie\nnajdisharmonickejšieho\nnajdisharmonickejšiemu\nnajdisharmonickejších\nnajdisharmonickejším\nnajdisharmonickejšími\nnajdisharmonickejšiu\nnajdisharmonickejšom\nnajdisharmonickejšou\nnajdiskontinuitnejšie\nnajdiskrétnejšej\nnajdiskrétnejší\nnajdiskrétnejšia\nnajdiskrétnejšie\nnajdiskrétnejšieho\nnajdiskrétnejšiemu\nnajdiskrétnejších\nnajdiskrétnejším\nnajdiskrétnejšími\nnajdiskrétnejšiu\nnajdiskrétnejšom\nnajdiskrétnejšou\nnajdiskriminačnejšej\nnajdiskriminačnejší\nnajdiskriminačnejšia\nnajdiskriminačnejšie\nnajdiskriminačnejšieho\nnajdiskriminačnejšiemu\nnajdiskriminačnejších\nnajdiskriminačnejším\nnajdiskriminačnejšími\nnajdiskriminačnejšiu\nnajdiskriminačnejšom\nnajdiskriminačnejšou\nNajdiskutabilnejší\nnajdiskutabilnejšie\nnajdiskutabilnejších\nnajdiskutabilnejším\nnajdisonančnejšej\nnajdisonančnejší\nnajdisonančnejšia\nnajdisonančnejšie\nnajdisonančnejšieho\nnajdisonančnejšiemu\nnajdisonančnejších\nnajdisonančnejším\nnajdisonančnejšími\nnajdisonančnejšiu\nnajdisonančnejšom\nnajdisonančnejšou\nnajdisponovanejšej\nnajdisponovanejší\nnajdisponovanejšia\nnajdisponovanejšie\nnajdisponovanejšieho\nnajdisponovanejšiemu\nnajdisponovanejších\nnajdisponovanejším\nnajdisponovanejšími\nnajdisponovanejšiu\nnajdisponovanejšom\nnajdisponovanejšou\nnajdistingvovanejšej\nnajdistingvovanejší\nnajdistingvovanejšia\nnajdistingvovanejšie\nnajdistingvovanejšieho\nnajdistingvovanejšiemu\nnajdistingvovanejších\nnajdistingvovanejším\nnajdistingvovanejšími\nnajdistingvovanejšiu\nnajdistingvovanejšom\nnajdistingvovanejšou\nnajdivnejšej\nnajdivnejší\nnajdivnejšia\nnajdivnejšie\nnajdivnejšieho\nnajdivnejšiemu\nnajdivnejších\nnajdivnejším\nnajdivnejšími\nnajdivnejšiu\nnajdivnejšom\nnajdivnejšou\nnajdivokejšej\nnajdivokejší\nnajdivokejšia\nnajdivokejšie\nnajdivokejšieho\nnajdivokejšiemu\nnajdivokejších\nnajdivokejším\nnajdivokejšími\nnajdivokejšiu\nnajdivokejšom\nnajdivokejšou\nnajdivošskejšej\nnajdivošskejší\nnajdivošskejšia\nnajdivošskejšie\nnajdivošskejšieho\nnajdivošskejšiemu\nnajdivošskejších\nnajdivošskejším\nnajdivošskejšími\nnajdivošskejšiu\nnajdivošskejšom\nnajdivošskejšou\nnajdivšej\nnajdivší\nnajdivšia\nnajdivšie\nnajdivšieho\nnajdivšiemu\nnajdivších\nnajdivším\nnajdivšími\nnajdivšiu\nnajdivšom\nnajdivšou\nnajdlhotrvajúcejšej\nnajdlhotrvajúcejší\nnajdlhotrvajúcejšia\nnajdlhotrvajúcejšie\nnajdlhotrvajúcejšieho\nnajdlhotrvajúcejšiemu\nnajdlhotrvajúcejších\nnajdlhotrvajúcejším\nnajdlhotrvajúcejšími\nnajdlhotrvajúcejšiu\nnajdlhotrvajúcejšom\nnajdlhotrvajúcejšou\nnajdlhšie\nnajdobiedzavejšej\nnajdobiedzavejší\nnajdobiedzavejšia\nnajdobiedzavejšie\nnajdobiedzavejšieho\nnajdobiedzavejšiemu\nnajdobiedzavejších\nnajdobiedzavejším\nnajdobiedzavejšími\nnajdobiedzavejšiu\nnajdobiedzavejšom\nnajdobiedzavejšou\nnajdobovejšej\nnajdobovejší\nnajdobovejšia\nnajdobovejšie\nnajdobovejšieho\nnajdobovejšiemu\nnajdobovejších\nnajdobovejším\nnajdobovejšími\nnajdobovejšiu\nnajdobovejšom\nnajdobovejšou\nnajdobráckejšej\nnajdobráckejší\nnajdobráckejšia\nnajdobráckejšie\nnajdobráckejšieho\nnajdobráckejšiemu\nnajdobráckejších\nnajdobráckejším\nnajdobráckejšími\nnajdobráckejšiu\nnajdobráckejšom\nnajdobráckejšou\nnajdobrodružnejšej\nnajdobrodružnejší\nnajdobrodružnejšia\nnajdobrodružnejšie\nnajdobrodružnejšieho\nnajdobrodružnejšiemu\nnajdobrodružnejších\nnajdobrodružnejším\nnajdobrodružnejšími\nnajdobrodružnejšiu\nnajdobrodružnejšom\nnajdobrodružnejšou\nnajdobrodušnejšej\nnajdobrodušnejší\nnajdobrodušnejšia\nnajdobrodušnejšie\nnajdobrodušnejšieho\nnajdobrodušnejšiemu\nnajdobrodušnejších\nnajdobrodušnejším\nnajdobrodušnejšími\nnajdobrodušnejšiu\nnajdobrodušnejšom\nnajdobrodušnejšou\nnajdobromyseľnejšej\nnajdobromyseľnejší\nnajdobromyseľnejšia\nnajdobromyseľnejšie\nnajdobromyseľnejšieho\nnajdobromyseľnejšiemu\nnajdobromyseľnejších\nnajdobromyseľnejším\nnajdobromyseľnejšími\nnajdobromyseľnejšiu\nnajdobromyseľnejšom\nnajdobromyseľnejšou\nnajdobroprajnejšej\nnajdobroprajnejší\nnajdobroprajnejšia\nnajdobroprajnejšie\nnajdobroprajnejšieho\nnajdobroprajnejšiemu\nnajdobroprajnejších\nnajdobroprajnejším\nnajdobroprajnejšími\nnajdobroprajnejšiu\nnajdobroprajnejšom\nnajdobroprajnejšou\nnajdobrosrdečnejšej\nnajdobrosrdečnejší\nnajdobrosrdečnejšia\nnajdobrosrdečnejšie\nnajdobrosrdečnejšieho\nnajdobrosrdečnejšiemu\nnajdobrosrdečnejších\nnajdobrosrdečnejším\nnajdobrosrdečnejšími\nnajdobrosrdečnejšiu\nnajdobrosrdečnejšom\nnajdobrosrdečnejšou\nnajdobrotivejšej\nnajdobrotivejší\nnajdobrotivejšia\nnajdobrotivejšie\nnajdobrotivejšieho\nnajdobrotivejšiemu\nnajdobrotivejších\nnajdobrotivejším\nnajdobrotivejšími\nnajdobrotivejšiu\nnajdobrotivejšom\nnajdobrotivejšou\nnajdobyvačnejšej\nnajdobyvačnejší\nnajdobyvačnejšia\nnajdobyvačnejšie\nnajdobyvačnejšieho\nnajdobyvačnejšiemu\nnajdobyvačnejších\nnajdobyvačnejším\nnajdobyvačnejšími\nnajdobyvačnejšiu\nnajdobyvačnejšom\nnajdobyvačnejšou\nnajdogmatickejšej\nnajdogmatickejší\nnajdogmatickejšia\nnajdogmatickejšie\nnajdogmatickejšieho\nnajdogmatickejšiemu\nnajdogmatickejších\nnajdogmatickejším\nnajdogmatickejšími\nnajdogmatickejšiu\nnajdogmatickejšom\nnajdogmatickejšou\nnajdochvíľnejšej\nnajdochvíľnejší\nnajdochvíľnejšia\nnajdochvíľnejšie\nnajdochvíľnejšieho\nnajdochvíľnejšiemu\nnajdochvíľnejších\nnajdochvíľnejším\nnajdochvíľnejšími\nnajdochvíľnejšiu\nnajdochvíľnejšom\nnajdochvíľnejšou\nnajdojatejšej\nnajdojatejší\nnajdojatejšia\nnajdojatejšie\nnajdojatejšieho\nnajdojatejšiemu\nnajdojatejších\nnajdojatejším\nnajdojatejšími\nnajdojatejšiu\nnajdojatejšom\nnajdojatejšou\nnajdojemnejšej\nnajdojemnejší\nnajdojemnejšia\nnajdojemnejšie\nnajdojemnejšieho\nnajdojemnejšiemu\nnajdojemnejších\nnajdojemnejším\nnajdojemnejšími\nnajdojemnejšiu\nnajdojemnejšom\nnajdojemnejšou\nnajdojímavejšej\nnajdojímavejší\nnajdojímavejšia\nnajdojímavejšie\nnajdojímavejšieho\nnajdojímavejšiemu\nnajdojímavejších\nnajdojímavejším\nnajdojímavejšími\nnajdojímavejšiu\nnajdojímavejšom\nnajdojímavejšou\nnajdokázateľnejšie\nnajdôkladnejšej\nnajdôkladnejší\nnajdôkladnejšia\nnajdôkladnejšie\nnajdôkladnejšieho\nnajdôkladnejšiemu\nnajdôkladnejších\nnajdôkladnejším\nnajdôkladnejšími\nnajdôkladnejšiu\nnajdôkladnejšom\nnajdôkladnejšou\nnajdokonalejší\nnajdokumentárnejšie\nnajdôležitejšej\nnajdôležitejší\nnajdôležitejšia\nnajdôležitejšie\nnajdôležitejšieho\nnajdôležitejšiemu\nnajdôležitejších\nnajdôležitejším\nnajdôležitejšími\nnajdôležitejšiu\nnajdôležitejšom\nnajdôležitejšou\nnajdolnejšej\nnajdolnejší\nnajdolnejšia\nnajdolnejšie\nnajdolnejšieho\nnajdolnejšiemu\nnajdolnejších\nnajdolnejším\nnajdolnejšími\nnajdolnejšiu\nnajdolnejšom\nnajdolnejšou\nnajdomáckejšej\nnajdomáckejší\nnajdomáckejšia\nnajdomáckejšie\nnajdomáckejšieho\nnajdomáckejšiemu\nnajdomáckejších\nnajdomáckejším\nnajdomáckejšími\nnajdomáckejšiu\nnajdomáckejšom\nnajdomáckejšou\nnajdominantnejšej\nnajdominantnejší\nnajdominantnejšia\nnajdominantnejšie\nnajdominantnejšieho\nnajdominantnejšiemu\nnajdominantnejších\nnajdominantnejším\nnajdominantnejšími\nnajdominantnejšiu\nnajdominantnejšom\nnajdominantnejšou\nNajdominantnejšou\nnajdomŕzavejšej\nnajdomŕzavejší\nnajdomŕzavejšia\nnajdomŕzavejšie\nnajdomŕzavejšieho\nnajdomŕzavejšiemu\nnajdomŕzavejších\nnajdomŕzavejším\nnajdomŕzavejšími\nnajdomŕzavejšiu\nnajdomŕzavejšom\nnajdomŕzavejšou\nnajdômyselnejšej\nnajdômyselnejší\nnajdômyselnejšia\nnajdômyselnejšie\nnajdômyselnejšieho\nnajdômyselnejšiemu\nnajdômyselnejších\nnajdômyselnejším\nnajdômyselnejšími\nnajdômyselnejšiu\nnajdômyselnejšom\nnajdômyselnejšou\nnajdomýšľavejšiemu\nnajdôraznejšej\nnajdôraznejší\nnajdôraznejšia\nnajdôraznejšie\nnajdôraznejšieho\nnajdôraznejšiemu\nnajdôraznejších\nnajdôraznejším\nnajdôraznejšími\nnajdôraznejšiu\nnajdôraznejšom\nnajdôraznejšou\nnajdosiahnuteľnejšej\nnajdosiahnuteľnejší\nnajdosiahnuteľnejšia\nnajdosiahnuteľnejšie\nnajdosiahnuteľnejšieho\nnajdosiahnuteľnejšiemu\nnajdosiahnuteľnejších\nnajdosiahnuteľnejším\nnajdosiahnuteľnejšími\nnajdosiahnuteľnejšiu\nnajdosiahnuteľnejšom\nnajdosiahnuteľnejšou\nnajdoskovitejšej\nnajdoskovitejší\nnajdoskovitejšia\nnajdoskovitejšie\nnajdoskovitejšieho\nnajdoskovitejšiemu\nnajdoskovitejších\nnajdoskovitejším\nnajdoskovitejšími\nnajdoskovitejšiu\nnajdoskovitejšom\nnajdoskovitejšou\nnajdôslednejšej\nnajdôslednejší\nnajdôslednejšia\nnajdôslednejšie\nnajdôslednejšieho\nnajdôslednejšiemu\nnajdôslednejších\nnajdôslednejším\nnajdôslednejšími\nnajdôslednejšiu\nnajdôslednejšom\nnajdôslednejšou\nnajdoslovnejšie\nnajdospelejšej\nnajdospelejší\nnajdospelejšia\nnajdospelejšie\nnajdospelejšieho\nnajdospelejšiemu\nnajdospelejších\nnajdospelejším\nnajdospelejšími\nnajdospelejšiu\nnajdospelejšom\nnajdospelejšou\nnajdôstojnejšej\nnajdôstojnejší\nnajdôstojnejšia\nnajdôstojnejšie\nnajdôstojnejšieho\nnajdôstojnejšiemu\nnajdôstojnejších\nnajdôstojnejším\nnajdôstojnejšími\nnajdôstojnejšiu\nnajdôstojnejšom\nnajdôstojnejšou\nnajdostredivejšie\nnajdostupnejšej\nnajdostupnejší\nnajdostupnejšia\nnajdostupnejšie\nnajdostupnejšieho\nnajdostupnejšiemu\nnajdostupnejších\nnajdostupnejším\nnajdostupnejšími\nnajdostupnejšiu\nnajdostupnejšom\nnajdostupnejšou\nnajdotieravejšej\nnajdotieravejší\nnajdotieravejšia\nnajdotieravejšie\nnajdotieravejšieho\nnajdotieravejšiemu\nnajdotieravejších\nnajdotieravejším\nnajdotieravejšími\nnajdotieravejšiu\nnajdotieravejšom\nnajdotieravejšou\nnajdotknutejšej\nnajdotknutejší\nnajdotknutejšia\nnajdotknutejšie\nnajdotknutejšieho\nnajdotknutejšiemu\nnajdotknutejších\nnajdotknutejším\nnajdotknutejšími\nnajdotknutejšiu\nnajdotknutejšom\nnajdotknutejšou\nnajdôverčivejšej\nnajdôverčivejší\nnajdôverčivejšia\nnajdôverčivejšie\nnajdôverčivejšieho\nnajdôverčivejšiemu\nnajdôverčivejších\nnajdôverčivejším\nnajdôverčivejšími\nnajdôverčivejšiu\nnajdôverčivejšom\nnajdôverčivejšou\nnajdôvernejšej\nnajdôvernejší\nnajdôvernejšia\nnajdôvernejšie\nnajdôvernejšieho\nnajdôvernejšiemu\nnajdôvernejších\nnajdôvernejším\nnajdôvernejšími\nnajdôvernejšiu\nnajdôvernejšom\nnajdôvernejšou\nnajdôvtipnejšej\nnajdôvtipnejší\nnajdôvtipnejšia\nnajdôvtipnejšie\nnajdôvtipnejšieho\nnajdôvtipnejšiemu\nnajdôvtipnejších\nnajdôvtipnejším\nnajdôvtipnejšími\nnajdôvtipnejšiu\nnajdôvtipnejšom\nnajdôvtipnejšou\nnajdrahocennejšej\nnajdrahocennejší\nnajdrahocennejšia\nnajdrahocennejšie\nnajdrahocennejšieho\nnajdrahocennejšiemu\nnajdrahocennejších\nnajdrahocennejším\nnajdrahocennejšími\nnajdrahocennejšiu\nnajdrahocennejšom\nnajdrahocennejšou\nnajdramatickejšej\nnajdramatickejší\nnajdramatickejšia\nNajdramatickejšia\nnajdramatickejšie\nnajdramatickejšieho\nnajdramatickejšiemu\nnajdramatickejších\nnajdramatickejším\nnajdramatickejšími\nnajdramatickejšiu\nnajdramatickejšom\nnajdramatickejšou\nnajdrapľavejšej\nnajdrapľavejší\nnajdrapľavejšia\nnajdrapľavejšie\nnajdrapľavejšieho\nnajdrapľavejšiemu\nnajdrapľavejších\nnajdrapľavejším\nnajdrapľavejšími\nnajdrapľavejšiu\nnajdrapľavejšom\nnajdrapľavejšou\nnajdrastickejšej\nnajdrastickejší\nnajdrastickejšia\nnajdrastickejšie\nnajdrastickejšieho\nnajdrastickejšiemu\nnajdrastickejších\nnajdrastickejším\nnajdrastickejšími\nnajdrastickejšiu\nnajdrastickejšom\nnajdrastickejšou\nnajdravejšej\nNajdravejší\nNajdravejšia\nnajdravejšie\nnajdravejších\nnajdravejším\nnajdravejšou\nnajdravšej\nnajdravší\nnajdravšia\nnajdravšie\nnajdravšieho\nnajdravšiemu\nnajdravších\nnajdravším\nnajdravšími\nnajdravšiu\nnajdravšom\nnajdravšou\nnajdráždivejšej\nnajdráždivejší\nnajdráždivejšia\nnajdráždivejšie\nnajdráždivejšieho\nnajdráždivejšiemu\nnajdráždivejších\nnajdráždivejším\nnajdráždivejšími\nnajdráždivejšiu\nnajdráždivejšom\nnajdráždivejšou\nnajdrbnutejšej\nnajdrbnutejší\nnajdrbnutejšia\nnajdrbnutejšie\nnajdrbnutejšieho\nnajdrbnutejšiemu\nnajdrbnutejších\nnajdrbnutejším\nnajdrbnutejšími\nnajdrbnutejšiu\nnajdrbnutejšom\nnajdrbnutejšou\nnajdrevenejšej\nnajdrevenejší\nnajdrevenejšia\nnajdrevenejšie\nnajdrevenejšieho\nnajdrevenejšiemu\nnajdrevenejších\nnajdrevenejším\nnajdrevenejšími\nnajdrevenejšiu\nnajdrevenejšom\nnajdrevenejšou\nnajdrevitejšej\nnajdrevitejší\nnajdrevitejšia\nnajdrevitejšie\nnajdrevitejšieho\nnajdrevitejšiemu\nnajdrevitejších\nnajdrevitejším\nnajdrevitejšími\nnajdrevitejšiu\nnajdrevitejšom\nnajdrevitejšou\nnajdrevnatejšej\nnajdrevnatejší\nnajdrevnatejšia\nnajdrevnatejšie\nnajdrevnatejšieho\nnajdrevnatejšiemu\nnajdrevnatejších\nnajdrevnatejším\nnajdrevnatejšími\nnajdrevnatejšiu\nnajdrevnatejšom\nnajdrevnatejšou\nnajdriečnejšej\nnajdriečnejší\nnajdriečnejšia\nnajdriečnejšie\nnajdriečnejšieho\nnajdriečnejšiemu\nnajdriečnejších\nnajdriečnejším\nnajdriečnejšími\nnajdriečnejšiu\nnajdriečnejšom\nnajdriečnejšou\nnajdrkotavejšej\nnajdrkotavejší\nnajdrkotavejšia\nnajdrkotavejšie\nnajdrkotavejšieho\nnajdrkotavejšiemu\nnajdrkotavejších\nnajdrkotavejším\nnajdrkotavejšími\nnajdrkotavejšiu\nnajdrkotavejšom\nnajdrkotavejšou\nnajdrnčivejšej\nnajdrnčivejší\nnajdrnčivejšia\nnajdrnčivejšie\nnajdrnčivejšieho\nnajdrnčivejšiemu\nnajdrnčivejších\nnajdrnčivejším\nnajdrnčivejšími\nnajdrnčivejšiu\nnajdrnčivejšom\nnajdrnčivejšou\nnajdrobivejšej\nnajdrobivejší\nnajdrobivejšia\nnajdrobivejšie\nnajdrobivejšieho\nnajdrobivejšiemu\nnajdrobivejších\nnajdrobivejším\nnajdrobivejšími\nnajdrobivejšiu\nnajdrobivejšom\nnajdrobivejšou\nnajdrsnejšej\nnajdrsnejší\nnajdrsnejšia\nnajdrsnejšie\nnajdrsnejšieho\nnajdrsnejšiemu\nnajdrsnejších\nnajdrsnejším\nNajdrsnejším\nnajdrsnejšími\nnajdrsnejšiu\nnajdrsnejšom\nnajdrsnejšou\nnajdružnejšej\nnajdružnejší\nnajdružnejšia\nnajdružnejšie\nnajdružnejšieho\nnajdružnejšiemu\nnajdružnejších\nnajdružnejším\nnajdružnejšími\nnajdružnejšiu\nnajdružnejšom\nnajdružnejšou\nnajdrvivejšej\nnajdrvivejší\nNajdrvivejší\nnajdrvivejšia\nnajdrvivejšie\nnajdrvivejšieho\nnajdrvivejšiemu\nnajdrvivejších\nnajdrvivejším\nnajdrvivejšími\nnajdrvivejšiu\nnajdrvivejšom\nnajdrvivejšou\nnajdrzejšej\nnajdrzejší\nnajdrzejšia\nnajdrzejšie\nnajdrzejšieho\nnajdrzejšiemu\nnajdrzejších\nnajdrzejším\nnajdrzejšími\nnajdrzejšiu\nnajdrzejšom\nnajdrzejšou\nnájduc\nnajdudravejšej\nnajdudravejší\nnajdudravejšia\nnajdudravejšie\nnajdudravejšieho\nnajdudravejšiemu\nnajdudravejších\nnajdudravejším\nnajdudravejšími\nnajdudravejšiu\nnajdudravejšom\nnajdudravejšou\nnajduchaplnejšej\nnajduchaplnejší\nnajduchaplnejšia\nnajduchaplnejšie\nnajduchaplnejšieho\nnajduchaplnejšiemu\nnajduchaplnejších\nnajduchaplnejším\nnajduchaplnejšími\nnajduchaplnejšiu\nnajduchaplnejšom\nnajduchaplnejšou\nnajduchaprítomnejšej\nnajduchaprítomnejší\nnajduchaprítomnejšia\nnajduchaprítomnejšie\nnajduchaprítomnejšieho\nnajduchaprítomnejšiemu\nnajduchaprítomnejších\nnajduchaprítomnejším\nnajduchaprítomnejšími\nnajduchaprítomnejšiu\nnajduchaprítomnejšom\nnajduchaprítomnejšou\nnajdúch\nnajduchovnejšej\nnajduchovnejší\nnajduchovnejšia\nnajduchovnejšie\nnajduchovnejšieho\nnajduchovnejšiemu\nnajduchovnejších\nnajduchovnejším\nnajduchovnejšími\nnajduchovnejšiu\nnajduchovnejšom\nnajduchovnejšou\nnajdunivejšej\nnajdunivejší\nnajdunivejšia\nnajdunivejšie\nnajdunivejšieho\nnajdunivejšiemu\nnajdunivejších\nnajdunivejším\nnajdunivejšími\nnajdunivejšiu\nnajdunivejšom\nnajdunivejšou\nnajdusivejšej\nnajdusivejší\nnajdusivejšia\nnajdusivejšie\nnajdusivejšieho\nnajdusivejšiemu\nnajdusivejších\nnajdusivejším\nnajdusivejšími\nnajdusivejšiu\nnajdusivejšom\nnajdusivejšou\nnajdusnejšej\nnajdusnejší\nnajdusnejšia\nnajdusnejšie\nnajdusnejšieho\nnajdusnejšiemu\nnajdusnejších\nnajdusnejším\nnajdusnejšími\nnajdusnejšiu\nnajdusnejšom\nnajdusnejšou\nnajdutejšie\nnajdúžejšej\nnajdúžejší\nnajdúžejšia\nnajdúžejšie\nnajdúžejšieho\nnajdúžejšiemu\nnajdúžejších\nnajdúžejším\nnajdúžejšími\nnajdúžejšiu\nnajdúžejšom\nnajdúžejšou\nnajdvornejšej\nnajdvornejší\nnajdvornejšia\nnajdvornejšie\nnajdvornejšieho\nnajdvornejšiemu\nnajdvornejších\nnajdvornejším\nnajdvornejšími\nnajdvornejšiu\nnajdvornejšom\nnajdvornejšou\nnajdýchavičnejšej\nnajdýchavičnejší\nnajdýchavičnejšia\nnajdýchavičnejšie\nnajdýchavičnejšieho\nnajdýchavičnejšiemu\nnajdýchavičnejších\nnajdýchavičnejším\nnajdýchavičnejšími\nnajdýchavičnejšiu\nnajdýchavičnejšom\nnajdýchavičnejšou\nnajdychtivejšej\nnajdychtivejší\nnajdychtivejšia\nnajdychtivejšie\nnajdychtivejšieho\nnajdychtivejšiemu\nnajdychtivejších\nnajdychtivejším\nnajdychtivejšími\nnajdychtivejšiu\nnajdychtivejšom\nnajdychtivejšou\nnajdynamickejšej\nnajdynamickejší\nnajdynamickejšia\nnajdynamickejšie\nnajdynamickejšieho\nnajdynamickejšiemu\nnajdynamickejších\nnajdynamickejším\nnajdynamickejšími\nnajdynamickejšiu\nnajdynamickejšom\nnajdynamickejšou\nnajdžavotavejšej\nnajdžavotavejší\nnajdžavotavejšia\nnajdžavotavejšie\nnajdžavotavejšieho\nnajdžavotavejšiemu\nnajdžavotavejších\nnajdžavotavejším\nnajdžavotavejšími\nnajdžavotavejšiu\nnajdžavotavejšom\nnajdžavotavejšou\nnajdžentlmenskejšej\nnajdžentlmenskejší\nnajdžentlmenskejšia\nnajdžentlmenskejšie\nnajdžentlmenskejšieho\nnajdžentlmenskejšiemu\nnajdžentlmenskejších\nnajdžentlmenskejším\nnajdžentlmenskejšími\nnajdžentlmenskejšiu\nnajdžentlmenskejšom\nnajdžentlmenskejšou\nnajdžezovejšej\nnajdžezovejší\nnajdžezovejšia\nnajdžezovejšie\nnajdžezovejšieho\nnajdžezovejšiemu\nnajdžezovejších\nnajdžezovejším\nnajdžezovejšími\nnajdžezovejšiu\nnajdžezovejšom\nnajdžezovejšou\nnajedený\nnajedno\nnajedovane\nnajedovano\nnajedovaný\nnajedovať\nnajefemérnejšej\nnajefemérnejší\nnajefemérnejšia\nnajefemérnejšie\nnajefemérnejšieho\nnajefemérnejšiemu\nnajefemérnejších\nnajefemérnejším\nnajefemérnejšími\nnajefemérnejšiu\nnajefemérnejšom\nnajefemérnejšou\nnajegocentrickejšej\nnajegocentrickejší\nnajegocentrickejšia\nnajegocentrickejšie\nnajegocentrickejšieho\nnajegocentrickejšiemu\nnajegocentrickejších\nnajegocentrickejším\nnajegocentrickejšími\nnajegocentrickejšiu\nnajegocentrickejšom\nnajegocentrickejšou\nnajegoistickejšej\nnajegoistickejší\nnajegoistickejšia\nnajegoistickejšie\nnajegoistickejšieho\nnajegoistickejšiemu\nnajegoistickejších\nnajegoistickejším\nnajegoistickejšími\nnajegoistickejšiu\nnajegoistickejšom\nnajegoistickejšou\nnajegyptskejšej\nnajegyptskejší\nnajegyptskejšia\nnajegyptskejšie\nnajegyptskejšieho\nnajegyptskejšiemu\nnajegyptskejších\nnajegyptskejším\nnajegyptskejšími\nnajegyptskejšiu\nnajegyptskejšom\nnajegyptskejšou\nnajeklektickejšej\nnajeklektickejší\nnajeklektickejšia\nnajeklektickejšie\nnajeklektickejšieho\nnajeklektickejšiemu\nnajeklektickejších\nnajeklektickejším\nnajeklektickejšími\nnajeklektickejšiu\nnajeklektickejšom\nnajeklektickejšou\nnajekonomickejšej\nnajekonomickejší\nnajekonomickejšia\nnajekonomickejšie\nnajekonomickejšieho\nnajekonomickejšiemu\nnajekonomickejších\nnajekonomickejším\nnajekonomickejšími\nnajekonomickejšiu\nnajekonomickejšom\nnajekonomickejšou\nnajekumenickejšej\nnajekumenickejší\nnajekumenickejšia\nnajekumenickejšie\nnajekumenickejšieho\nnajekumenickejšiemu\nnajekumenickejších\nnajekumenickejším\nnajekumenickejšími\nnajekumenickejšiu\nnajekumenickejšom\nnajekumenickejšou\nnajelastickejšej\nnajelastickejší\nnajelastickejšia\nnajelastickejšie\nnajelastickejšieho\nnajelastickejšiemu\nnajelastickejších\nnajelastickejším\nnajelastickejšími\nnajelastickejšiu\nnajelastickejšom\nnajelastickejšou\nnajelegantnejšej\nnajelegantnejší\nnajelegantnejšia\nnajelegantnejšie\nnajelegantnejšieho\nnajelegantnejšiemu\nnajelegantnejších\nnajelegantnejším\nnajelegantnejšími\nnajelegantnejšiu\nnajelegantnejšom\nnajelegantnejšou\nnajelegickejšej\nnajelegickejší\nnajelegickejšia\nnajelegickejšie\nnajelegickejšieho\nnajelegickejšiemu\nnajelegickejších\nnajelegickejším\nnajelegickejšími\nnajelegickejšiu\nnajelegickejšom\nnajelegickejšou\nnajelementárnejšej\nnajelementárnejší\nnajelementárnejšia\nnajelementárnejšie\nnajelementárnejšieho\nnajelementárnejšiemu\nnajelementárnejších\nnajelementárnejším\nnajelementárnejšími\nnajelementárnejšiu\nnajelementárnejšom\nnajelementárnejšou\nnajelipsovitejšej\nnajelipsovitejší\nnajelipsovitejšia\nnajelipsovitejšie\nnajelipsovitejšieho\nnajelipsovitejšiemu\nnajelipsovitejších\nnajelipsovitejším\nnajelipsovitejšími\nnajelipsovitejšiu\nnajelipsovitejšom\nnajelipsovitejšou\nnajeliptickejšej\nnajeliptickejší\nnajeliptickejšia\nnajeliptickejšie\nnajeliptickejšieho\nnajeliptickejšiemu\nnajeliptickejších\nnajeliptickejším\nnajeliptickejšími\nnajeliptickejšiu\nnajeliptickejšom\nnajeliptickejšou\nnajemancipovanejšej\nnajemancipovanejší\nnajemancipovanejšia\nnajemancipovanejšie\nnajemancipovanejšieho\nnajemancipovanejšiemu\nnajemancipovanejších\nnajemancipovanejším\nnajemancipovanejšími\nnajemancipovanejšiu\nnajemancipovanejšom\nnajemancipovanejšou\nnajemancipvanejších\nnajeminentnejšie\nnajemnejšie\nnajemno\nnajemocionálnejšej\nnajemocionálnejší\nnajemocionálnejšia\nnajemocionálnejšie\nnajemocionálnejšieho\nnajemocionálnejšiemu\nnajemocionálnejších\nnajemocionálnejším\nnajemocionálnejšími\nnajemocionálnejšiu\nnajemocionálnejšom\nnajemocionálnejšou\nnajemočnejšej\nnajemočnejší\nnajemočnejšia\nnajemočnejšie\nnajemočnejšieho\nnajemočnejšiemu\nnajemočnejších\nnajemočnejším\nnajemočnejšími\nnajemočnejšiu\nnajemočnejšom\nnajemočnejšou\nnajemotívnejšej\nnajemotívnejší\nnajemotívnejšia\nnajemotívnejšie\nnajemotívnejšieho\nnajemotívnejšiemu\nnajemotívnejších\nnajemotívnejším\nnajemotívnejšími\nnajemotívnejšiu\nnajemotívnejšom\nnajemotívnejšou\nnajempatickejšej\nnajempatickejší\nnajempatickejšia\nnajempatickejšie\nnajempatickejšieho\nnajempatickejšiemu\nnajempatickejších\nnajempatickejším\nnajempatickejšími\nnajempatickejšiu\nnajempatickejšom\nnajempatickejšou\nnajempirickejšej\nnajempirickejší\nnajempirickejšia\nnajempirickejšie\nnajempirickejšieho\nnajempirickejšiemu\nnajempirickejších\nnajempirickejším\nnajempirickejšími\nnajempirickejšiu\nnajempirickejšom\nnajempirickejšou\nnajenergickejšej\nnajenergickejší\nnajenergickejšia\nnajenergickejšie\nnajenergickejšieho\nnajenergickejšiemu\nnajenergickejších\nnajenergickejším\nnajenergickejšími\nnajenergickejšiu\nnajenergickejšom\nnajenergickejšou\nnajenormnejšej\nnajenormnejší\nnajenormnejšia\nnajenormnejšie\nnajenormnejšieho\nnajenormnejšiemu\nnajenormnejších\nnajenormnejším\nnajenormnejšími\nnajenormnejšiu\nnajenormnejšom\nnajenormnejšou\nnajentuziastickejšie\nnajenvironmentálnejšej\nnajenvironmentálnejší\nnajenvironmentálnejšia\nnajenvironmentálnejšie\nnajenvironmentálnejšieho\nnajenvironmentálnejšiemu\nnajenvironmentálnejších\nnajenvironmentálnejším\nnajenvironmentálnejšími\nnajenvironmentálnejšiu\nnajenvironmentálnejšom\nnajenvironmentálnejšou\nnajepickejšej\nnajepickejší\nnajepickejšia\nnajepickejšie\nnajepickejšieho\nnajepickejšiemu\nnajepickejších\nnajepickejším\nnajepickejšími\nnajepickejšiu\nnajepickejšom\nnajepickejšou\nnajepizodickejšej\nnajepizodickejší\nnajepizodickejšia\nnajepizodickejšie\nnajepizodickejšieho\nnajepizodickejšiemu\nnajepizodickejších\nnajepizodickejším\nnajepizodickejšími\nnajepizodickejšiu\nnajepizodickejšom\nnajepizodickejšou\nnajepochálnejšie\nnajerozívnejšej\nnajerozívnejší\nnajerozívnejšia\nnajerozívnejšie\nnajerozívnejšieho\nnajerozívnejšiemu\nnajerozívnejších\nnajerozívnejším\nnajerozívnejšími\nnajerozívnejšiu\nnajerozívnejšom\nnajerozívnejšou\nnajerudovanejší\nnajerudovanejšieho\nnajeruptívnejšej\nnajeruptívnejší\nnajeruptívnejšia\nnajeruptívnejšie\nnajeruptívnejšieho\nnajeruptívnejšiemu\nnajeruptívnejších\nnajeruptívnejším\nnajeruptívnejšími\nnajeruptívnejšiu\nnajeruptívnejšom\nnajeruptívnejšou\nnajesovitejšej\nnajesovitejší\nnajesovitejšia\nnajesovitejšie\nnajesovitejšieho\nnajesovitejšiemu\nnajesovitejších\nnajesovitejším\nnajesovitejšími\nnajesovitejšiu\nnajesovitejšom\nnajesovitejšou\nnajestétskejšej\nnajestétskejší\nnajestétskejšia\nnajestétskejšie\nnajestétskejšieho\nnajestétskejšiemu\nnajestétskejších\nnajestétskejším\nnajestétskejšími\nnajestétskejšiu\nnajestétskejšom\nnajestétskejšou\nnajesť\nnajetablovanejší\nnajetapovitejšej\nnajetapovitejší\nnajetapovitejšia\nnajetapovitejšie\nnajetapovitejšieho\nnajetapovitejšiemu\nnajetapovitejších\nnajetapovitejším\nnajetapovitejšími\nnajetapovitejšiu\nnajetapovitejšom\nnajetapovitejšou\nnajéterickejšej\nnajéterickejší\nnajéterickejšia\nnajéterickejšie\nnajéterickejšieho\nnajéterickejšiemu\nnajéterickejších\nnajéterickejším\nnajéterickejšími\nnajéterickejšiu\nnajéterickejšom\nnajéterickejšou\nnajetickejšej\nnajetickejší\nnajetickejšia\nnajetickejšie\nnajetickejšieho\nnajetickejšiemu\nnajetickejších\nnajetickejším\nnajetickejšími\nnajetickejšiu\nnajetickejšom\nnajetickejšou\nnajeufemistickejšie\nnajeuforickejšej\nnajeuforickejší\nnajeuforickejšia\nnajeuforickejšie\nnajeuforickejšieho\nnajeuforickejšiemu\nnajeuforickejších\nnajeuforickejším\nnajeuforickejšími\nnajeuforickejšiu\nnajeuforickejšom\nnajeuforickejšou\nnajeurópskejšej\nnajeurópskejší\nnajeurópskejšia\nnajeurópskejšie\nnajeurópskejšieho\nnajeurópskejšiemu\nnajeurópskejších\nnajeurópskejším\nnajeurópskejšími\nnajeurópskejšiu\nnajeurópskejšom\nnajeurópskejšou\nnajevanjelickejšej\nnajevanjelickejší\nnajevanjelickejšia\nnajevanjelickejšie\nnajevanjelickejšieho\nnajevanjelickejšiemu\nnajevanjelickejších\nnajevanjelickejším\nnajevanjelickejšími\nnajevanjelickejšiu\nnajevanjelickejšom\nnajevanjelickejšou\nnajevidentnejšej\nnajevidentnejší\nnajevidentnejšia\nnajevidentnejšie\nnajevidentnejšieho\nnajevidentnejšiemu\nnajevidentnejších\nnajevidentnejším\nNajevidentnejším\nnajevidentnejšími\nnajevidentnejšiu\nnajevidentnejšom\nnajevidentnejšou\nnajexaktnejšej\nnajexaktnejší\nnajexaktnejšia\nnajexaktnejšie\nnajexaktnejšieho\nnajexaktnejšiemu\nnajexaktnejších\nnajexaktnejším\nnajexaktnejšími\nnajexaktnejšiu\nnajexaktnejšom\nnajexaktnejšou\nnajexaltovanejšie\nnajexcentrickejšej\nnajexcentrickejší\nnajexcentrickejšia\nnajexcentrickejšie\nnajexcentrickejšieho\nnajexcentrickejšiemu\nnajexcentrickejších\nnajexcentrickejším\nnajexcentrickejšími\nnajexcentrickejšiu\nnajexcentrickejšom\nnajexcentrickejšou\nnajexemplárnejšej\nnajexemplárnejší\nnajexemplárnejšia\nnajexemplárnejšie\nnajexemplárnejšieho\nnajexemplárnejšiemu\nnajexemplárnejších\nnajexemplárnejším\nnajexemplárnejšími\nnajexemplárnejšiu\nnajexemplárnejšom\nnajexemplárnejšou\nnajexhibicionistickejšej\nnajexhibicionistickejší\nnajexhibicionistickejšia\nnajexhibicionistickejšie\nnajexhibicionistickejšieho\nnajexhibicionistickejšiemu\nnajexhibicionistickejších\nnajexhibicionistickejším\nnajexhibicionistickejšími\nnajexhibicionistickejšiu\nnajexhibicionistickejšom\nnajexhibicionistickejšou\nnajexistencialistickejšej\nnajexistencialistickejší\nnajexistencialistickejšia\nnajexistencialistickejšie\nnajexistencialistickejšieho\nnajexistencialistickejšiemu\nnajexistencialistickejších\nnajexistencialistickejším\nnajexistencialistickejšími\nnajexistencialistickejšiu\nnajexistencialistickejšom\nnajexistencialistickejšou\nnajexkluzívnejšej\nnajexkluzívnejší\nnajexkluzívnejšia\nnajexkluzívnejšie\nnajexkluzívnejšieho\nnajexkluzívnejšiemu\nnajexkluzívnejších\nnajexkluzívnejším\nnajexkluzívnejšími\nnajexkluzívnejšiu\nnajexkluzívnejšom\nnajexkluzívnejšou\nnajexotickejšej\nnajexotickejší\nnajexotickejšia\nnajexotickejšie\nnajexotickejšieho\nnajexotickejšiemu\nnajexotickejších\nnajexotickejším\nNajexotickejším\nnajexotickejšími\nnajexotickejšiu\nnajexotickejšom\nnajexotickejšou\nnajexpanzívnejšej\nnajexpanzívnejší\nnajexpanzívnejšia\nnajexpanzívnejšie\nnajexpanzívnejšieho\nnajexpanzívnejšiemu\nnajexpanzívnejších\nnajexpanzívnejším\nnajexpanzívnejšími\nnajexpanzívnejšiu\nnajexpanzívnejšom\nnajexpanzívnejšou\nnajexpanznejšej\nnajexpanznejší\nnajexpanznejšia\nnajexpanznejšie\nnajexpanznejšieho\nnajexpanznejšiemu\nnajexpanznejších\nnajexpanznejším\nnajexpanznejšími\nnajexpanznejšiu\nnajexpanznejšom\nnajexpanznejšou\nnajexperimentálnejšie\nnajexperimentátorskejšej\nnajexperimentátorskejší\nnajexperimentátorskejšia\nnajexperimentátorskejšie\nnajexperimentátorskejšieho\nnajexperimentátorskejšiemu\nnajexperimentátorskejších\nnajexperimentátorskejším\nnajexperimentátorskejšími\nnajexperimentátorskejšiu\nnajexperimentátorskejšom\nnajexperimentátorskejšou\nnajexplicitnejšej\nnajexplicitnejší\nnajexplicitnejšia\nnajexplicitnejšie\nnajexplicitnejšieho\nnajexplicitnejšiemu\nnajexplicitnejších\nnajexplicitnejším\nnajexplicitnejšími\nnajexplicitnejšiu\nnajexplicitnejšom\nnajexplicitnejšou\nnajexplozívnejšej\nnajexplozívnejší\nnajexplozívnejšia\nnajexplozívnejšie\nnajexplozívnejšieho\nnajexplozívnejšiemu\nnajexplozívnejších\nnajexplozívnejším\nnajexplozívnejšími\nnajexplozívnejšiu\nnajexplozívnejšom\nnajexplozívnejšou\nnajexponovanejšej\nnajexponovanejší\nnajexponovanejšia\nnajexponovanejšie\nnajexponovanejšiemu\nnajexponovanejších\nnajexponovanejšími\nnajexponovanejšom\nNajexponovanejšou\nnajexpresionistickejšej\nnajexpresionistickejší\nnajexpresionistickejšia\nnajexpresionistickejšie\nnajexpresionistickejšieho\nnajexpresionistickejšiemu\nnajexpresionistickejších\nnajexpresionistickejším\nnajexpresionistickejšími\nnajexpresionistickejšiu\nnajexpresionistickejšom\nnajexpresionistickejšou\nnajexpresívnejšej\nnajexpresívnejší\nnajexpresívnejšia\nnajexpresívnejšie\nnajexpresívnejšieho\nnajexpresívnejšiemu\nnajexpresívnejších\nnajexpresívnejším\nnajexpresívnejšími\nnajexpresívnejšiu\nnajexpresívnejšom\nnajexpresívnejšou\nnajexpresnejšej\nnajexpresnejší\nnajexpresnejšia\nnajexpresnejšie\nnajexpresnejšieho\nnajexpresnejšiemu\nnajexpresnejších\nnajexpresnejším\nnajexpresnejšími\nnajexpresnejšiu\nnajexpresnejšom\nnajexpresnejšou\nnajextenzívnejšej\nnajextenzívnejší\nnajextenzívnejšia\nnajextenzívnejšie\nnajextenzívnejšieho\nnajextenzívnejšiemu\nnajextenzívnejších\nnajextenzívnejším\nnajextenzívnejšími\nnajextenzívnejšiu\nnajextenzívnejšom\nnajextenzívnejšou\nnajextravagantnejšej\nnajextravagantnejší\nnajextravagantnejšia\nnajextravagantnejšie\nnajextravagantnejšieho\nnajextravagantnejšiemu\nnajextravagantnejších\nnajextravagantnejším\nnajextravagantnejšími\nnajextravagantnejšiu\nnajextravagantnejšom\nnajextravagantnejšou\nnajextrémistickejšej\nnajextrémistickejší\nnajextrémistickejšia\nnajextrémistickejšie\nnajextrémistickejšieho\nnajextrémistickejšiemu\nnajextrémistickejších\nnajextrémistickejším\nnajextrémistickejšími\nnajextrémistickejšiu\nnajextrémistickejšom\nnajextrémistickejšou\nnajextrémnejšej\nnajextrémnejšie\nnajextrémnejšími\nnajextrémnejšou\nnajextrovertnejšej\nnajextrovertnejší\nnajextrovertnejšia\nnajextrovertnejšie\nnajextrovertnejšieho\nnajextrovertnejšiemu\nnajextrovertnejších\nnajextrovertnejším\nnajextrovertnejšími\nnajextrovertnejšiu\nnajextrovertnejšom\nnajextrovertnejšou\nnaježený\nnaježiť\nnajfádnejšej\nnajfádnejší\nnajfádnejšia\nnajfádnejšie\nnajfádnejšieho\nnajfádnejšiemu\nnajfádnejších\nnajfádnejším\nnajfádnejšími\nnajfádnejšiu\nnajfádnejšom\nnajfádnejšou\nnajfajnejšej\nnajfajnejší\nnajfajnejšia\nnajfajnejšie\nnajfajnejšieho\nnajfajnejšiemu\nnajfajnejších\nnajfajnejším\nnajfajnejšími\nnajfajnejšiu\nnajfajnejšom\nnajfajnejšou\nnajfajnovejšej\nnajfajnovejší\nnajfajnovejšia\nnajfajnovejšie\nnajfajnovejšieho\nnajfajnovejšiemu\nnajfajnovejších\nnajfajnovejším\nnajfajnovejšími\nnajfajnovejšiu\nnajfajnovejšom\nnajfajnovejšou\nnajfaktickejšej\nnajfaktickejší\nnajfaktickejšia\nnajfaktickejšie\nnajfaktickejšieho\nnajfaktickejšiemu\nnajfaktickejších\nnajfaktickejším\nnajfaktickejšími\nnajfaktickejšiu\nnajfaktickejšom\nnajfaktickejšou\nnajfalošnejšej\nnajfalošnejší\nnajfalošnejšia\nnajfalošnejšie\nnajfalošnejšieho\nnajfalošnejšiemu\nnajfalošnejších\nnajfalošnejším\nnajfalošnejšími\nnajfalošnejšiu\nnajfalošnejšom\nnajfalošnejšou\nNajfalšovanejší\nnajfalšovanejšia\nNajfalšovanejšou\nnajfamiliárnejšej\nnajfamiliárnejší\nnajfamiliárnejšia\nnajfamiliárnejšie\nnajfamiliárnejšieho\nnajfamiliárnejšiemu\nnajfamiliárnejších\nnajfamiliárnejším\nnajfamiliárnejšími\nnajfamiliárnejšiu\nnajfamiliárnejšom\nnajfamiliárnejšou\nnajfantazijnejšej\nnajfantazijnejší\nnajfantazijnejšia\nnajfantazijnejšie\nnajfantazijnejšieho\nnajfantazijnejšiemu\nnajfantazijnejších\nnajfantazijnejším\nnajfantazijnejšími\nnajfantazijnejšiu\nnajfantazijnejšom\nnajfantazijnejšou\nnajfantazmagorickejšej\nnajfantazmagorickejší\nnajfantazmagorickejšia\nnajfantazmagorickejšie\nnajfantazmagorickejšieho\nnajfantazmagorickejšiemu\nnajfantazmagorickejších\nnajfantazmagorickejším\nnajfantazmagorickejšími\nnajfantazmagorickejšiu\nnajfantazmagorickejšom\nnajfantazmagorickejšou\nnajfarbistejšej\nnajfarbistejší\nnajfarbistejšia\nnajfarbistejšie\nnajfarbistejšieho\nnajfarbistejšiemu\nnajfarbistejších\nnajfarbistejším\nnajfarbistejšími\nnajfarbistejšiu\nnajfarbistejšom\nnajfarbistejšou\nnajfarebnejšej\nnajfarebnejší\nnajfarebnejšia\nnajfarebnejšie\nnajfarebnejšieho\nnajfarebnejšiemu\nnajfarebnejších\nnajfarebnejším\nnajfarebnejšími\nnajfarebnejšiu\nnajfarebnejšom\nnajfarebnejšou\nnajfarizejskejšej\nnajfarizejskejší\nnajfarizejskejšia\nnajfarizejskejšie\nnajfarizejskejšieho\nnajfarizejskejšiemu\nnajfarizejskejších\nnajfarizejskejším\nnajfarizejskejšími\nnajfarizejskejšiu\nnajfarizejskejšom\nnajfarizejskejšou\nnajfašistickejšej\nnajfašistickejší\nnajfašistickejšia\nnajfašistickejšie\nnajfašistickejšieho\nnajfašistickejšiemu\nnajfašistickejších\nnajfašistickejším\nnajfašistickejšími\nnajfašistickejšiu\nnajfašistickejšom\nnajfašistickejšou\nnajfatalistickejšej\nnajfatalistickejší\nnajfatalistickejšia\nnajfatalistickejšie\nnajfatalistickejšieho\nnajfatalistickejšiemu\nnajfatalistickejších\nnajfatalistickejším\nnajfatalistickejšími\nnajfatalistickejšiu\nnajfatalistickejšom\nnajfatalistickejšou\nnajfatálnejšie\nnajfatálnejšou\nnajfeministickejšej\nnajfeministickejší\nnajfeministickejšia\nnajfeministickejšie\nnajfeministickejšieho\nnajfeministickejšiemu\nnajfeministickejších\nnajfeministickejším\nnajfeministickejšími\nnajfeministickejšiu\nnajfeministickejšom\nnajfeministickejšou\nnajfenomenálnejšej\nnajfenomenálnejší\nnajfenomenálnejšia\nnajfenomenálnejšie\nnajfenomenálnejšieho\nnajfenomenálnejšiemu\nnajfenomenálnejších\nnajfenomenálnejším\nnajfenomenálnejšími\nnajfenomenálnejšiu\nnajfenomenálnejšom\nnajfenomenálnejšou\nnajférovejšej\nnajférovejší\nnajférovejšia\nnajférovejšie\nnajférovejšieho\nnajférovejšiemu\nnajférovejších\nnajférovejším\nnajférovejšími\nnajférovejšiu\nnajférovejšom\nnajférovejšou\nnajfešáckejšej\nnajfešáckejší\nnajfešáckejšia\nnajfešáckejšie\nnajfešáckejšieho\nnajfešáckejšiemu\nnajfešáckejších\nnajfešáckejším\nnajfešáckejšími\nnajfešáckejšiu\nnajfešáckejšom\nnajfešáckejšou\nnajfešnejšej\nnajfešnejší\nnajfešnejšia\nnajfešnejšie\nnajfešnejšieho\nnajfešnejšiemu\nnajfešnejších\nnajfešnejším\nnajfešnejšími\nnajfešnejšiu\nnajfešnejšom\nnajfešnejšou\nnajfialovejšej\nnajfialovejší\nnajfialovejšia\nnajfialovejšie\nnajfialovejšieho\nnajfialovejšiemu\nnajfialovejších\nnajfialovejším\nnajfialovejšími\nnajfialovejšiu\nnajfialovejšom\nnajfialovejšou\nnajfičúrskejšej\nnajfičúrskejší\nnajfičúrskejšia\nnajfičúrskejšie\nnajfičúrskejšieho\nnajfičúrskejšiemu\nnajfičúrskejších\nnajfičúrskejším\nnajfičúrskejšími\nnajfičúrskejšiu\nnajfičúrskejšom\nnajfičúrskejšou\nnajfigliarskejšej\nnajfigliarskejší\nnajfigliarskejšia\nnajfigliarskejšie\nnajfigliarskejšieho\nnajfigliarskejšiemu\nnajfigliarskejších\nnajfigliarskejším\nnajfigliarskejšími\nnajfigliarskejšiu\nnajfigliarskejšom\nnajfigliarskejšou\nnajfilantropickejšej\nnajfilantropickejší\nnajfilantropickejšia\nnajfilantropickejšie\nnajfilantropickejšieho\nnajfilantropickejšiemu\nnajfilantropickejších\nnajfilantropickejším\nnajfilantropickejšími\nnajfilantropickejšiu\nnajfilantropickejšom\nnajfilantropickejšou\nnajfiligránskejšej\nnajfiligránskejší\nnajfiligránskejšia\nnajfiligránskejšie\nnajfiligránskejšieho\nnajfiligránskejšiemu\nnajfiligránskejších\nnajfiligránskejším\nnajfiligránskejšími\nnajfiligránskejšiu\nnajfiligránskejšom\nnajfiligránskejšou\nnajfilozofickejšej\nnajfilozofickejší\nnajfilozofickejšia\nnajfilozofickejšie\nnajfilozofickejšieho\nnajfilozofickejšiemu\nnajfilozofickejších\nnajfilozofickejším\nnajfilozofickejšími\nnajfilozofickejšiu\nnajfilozofickejšom\nnajfilozofickejšou\nnajfistulovejšej\nnajfistulovejší\nnajfistulovejšia\nnajfistulovejšie\nnajfistulovejšieho\nnajfistulovejšiemu\nnajfistulovejších\nnajfistulovejším\nnajfistulovejšími\nnajfistulovejšiu\nnajfistulovejšom\nnajfistulovejšou\nnajfiškálskejšej\nnajfiškálskejší\nnajfiškálskejšia\nnajfiškálskejšie\nnajfiškálskejšieho\nnajfiškálskejšiemu\nnajfiškálskejších\nnajfiškálskejším\nnajfiškálskejšími\nnajfiškálskejšiu\nnajfiškálskejšom\nnajfiškálskejšou\nnajfixnejšej\nnajfixnejší\nnajfixnejšia\nnajfixnejšie\nnajfixnejšieho\nnajfixnejšiemu\nnajfixnejších\nnajfixnejším\nnajfixnejšími\nnajfixnejšiu\nnajfixnejšom\nnajfixnejšou\nnajfľakatejšej\nnajfľakatejší\nnajfľakatejšia\nnajfľakatejšie\nnajfľakatejšieho\nnajfľakatejšiemu\nnajfľakatejších\nnajfľakatejším\nnajfľakatejšími\nnajfľakatejšiu\nnajfľakatejšom\nnajfľakatejšou\nnajfľaškovitejšej\nnajfľaškovitejší\nnajfľaškovitejšia\nnajfľaškovitejšie\nnajfľaškovitejšieho\nnajfľaškovitejšiemu\nnajfľaškovitejších\nnajfľaškovitejším\nnajfľaškovitejšími\nnajfľaškovitejšiu\nnajfľaškovitejšom\nnajfľaškovitejšou\nnajflegmatickejšej\nnajflegmatickejší\nnajflegmatickejšia\nnajflegmatickejšie\nnajflegmatickejšieho\nnajflegmatickejšiemu\nnajflegmatickejších\nnajflegmatickejším\nnajflegmatickejšími\nnajflegmatickejšiu\nnajflegmatickejšom\nnajflegmatickejšou\nnajflektívnejšej\nnajflektívnejší\nnajflektívnejšia\nnajflektívnejšie\nnajflektívnejšieho\nnajflektívnejšiemu\nnajflektívnejších\nnajflektívnejším\nnajflektívnejšími\nnajflektívnejšiu\nnajflektívnejšom\nnajflektívnejšou\nnajflexibilnejšej\nnajflexibilnejší\nnajflexibilnejšia\nnajflexibilnejšie\nnajflexibilnejšieho\nnajflexibilnejšiemu\nnajflexibilnejších\nnajflexibilnejším\nnajflexibilnejšími\nnajflexibilnejšiu\nnajflexibilnejšom\nnajflexibilnejšou\nnajfolklórnejšej\nnajfolklórnejší\nnajfolklórnejšia\nnajfolklórnejšie\nnajfolklórnejšieho\nnajfolklórnejšiemu\nnajfolklórnejších\nnajfolklórnejším\nnajfolklórnejšími\nnajfolklórnejšiu\nnajfolklórnejšom\nnajfolklórnejšou\nnajfolkovejšej\nnajfolkovejší\nnajfolkovejšia\nnajfolkovejšie\nnajfolkovejšieho\nnajfolkovejšiemu\nnajfolkovejších\nnajfolkovejším\nnajfolkovejšími\nnajfolkovejšiu\nnajfolkovejšom\nnajfolkovejšou\nnajfonematickejšej\nnajfonematickejší\nnajfonematickejšia\nnajfonematickejšie\nnajfonematickejšieho\nnajfonematickejšiemu\nnajfonematickejších\nnajfonematickejším\nnajfonematickejšími\nnajfonematickejšiu\nnajfonematickejšom\nnajfonematickejšou\nnajformalistickejšej\nnajformalistickejší\nnajformalistickejšia\nnajformalistickejšie\nnajformalistickejšieho\nnajformalistickejšiemu\nnajformalistickejších\nnajformalistickejším\nnajformalistickejšími\nnajformalistickejšiu\nnajformalistickejšom\nnajformalistickejšou\nnajformálnejšej\nnajformálnejší\nnajformálnejšia\nnajformálnejšie\nnajformálnejšieho\nnajformálnejšiemu\nnajformálnejších\nnajformálnejším\nnajformálnejšími\nnajformálnejšiu\nnajformálnejšom\nnajformálnejšou\nnajformovanejšej\nnajformovanejší\nnajformovanejšia\nnajformovanejšie\nnajformovanejšieho\nnajformovanejšiemu\nnajformovanejších\nnajformovanejším\nnajformovanejšími\nnajformovanejšiu\nnajformovanejšom\nnajformovanejšou\nnajfotogenickejšej\nnajfotogenickejší\nnajfotogenickejšia\nnajfotogenickejšie\nnajfotogenickejšieho\nnajfotogenickejšiemu\nnajfotogenickejších\nnajfotogenickejším\nnajfotogenickejšími\nnajfotogenickejšiu\nnajfotogenickejšom\nnajfotogenickejšou\nnajfrapantnejšej\nnajfrapantnejší\nnajfrapantnejšia\nnajfrapantnejšie\nnajfrapantnejšieho\nnajfrapantnejšiemu\nnajfrapantnejších\nnajfrapantnejším\nnajfrapantnejšími\nnajfrapantnejšiu\nnajfrapantnejšom\nnajfrapantnejšou\nnajfrázovitejšej\nnajfrázovitejší\nnajfrázovitejšia\nnajfrázovitejšie\nnajfrázovitejšieho\nnajfrázovitejšiemu\nnajfrázovitejších\nnajfrázovitejším\nnajfrázovitejšími\nnajfrázovitejšiu\nnajfrázovitejšom\nnajfrázovitejšou\nnajfrenetickejšej\nnajfrenetickejší\nnajfrenetickejšia\nnajfrenetickejšie\nnajfrenetickejšieho\nnajfrenetickejšiemu\nnajfrenetickejších\nnajfrenetickejším\nnajfrenetickejšími\nnajfrenetickejšiu\nnajfrenetickejšom\nnajfrenetickejšou\nnajfrflavejšej\nnajfrflavejší\nnajfrflavejšia\nnajfrflavejšie\nnajfrflavejšieho\nnajfrflavejšiemu\nnajfrflavejších\nnajfrflavejším\nnajfrflavejšími\nnajfrflavejšiu\nnajfrflavejšom\nnajfrflavejšou\nnajfrigidnejšej\nnajfrigidnejší\nnajfrigidnejšia\nnajfrigidnejšie\nnajfrigidnejšieho\nnajfrigidnejšiemu\nnajfrigidnejších\nnajfrigidnejším\nnajfrigidnejšími\nnajfrigidnejšiu\nnajfrigidnejšom\nnajfrigidnejšou\nnajfrivolnejšej\nnajfrivolnejší\nnajfrivolnejšia\nnajfrivolnejšie\nnajfrivolnejšieho\nnajfrivolnejšiemu\nnajfrivolnejších\nnajfrivolnejším\nnajfrivolnejšími\nnajfrivolnejšiu\nnajfrivolnejšom\nnajfrivolnejšou\nnajfŕkanejšej\nnajfŕkanejší\nnajfŕkanejšia\nnajfŕkanejšie\nnajfŕkanejšieho\nnajfŕkanejšiemu\nnajfŕkanejších\nnajfŕkanejším\nnajfŕkanejšími\nnajfŕkanejšiu\nnajfŕkanejšom\nnajfŕkanejšou\nnajfrustrovanejšej\nnajfrustrovanejší\nnajfrustrovanejšia\nnajfrustrovanejšie\nnajfrustrovanejšieho\nnajfrustrovanejšiemu\nnajfrustrovanejších\nnajfrustrovanejším\nnajfrustrovanejšími\nnajfrustrovanejšiu\nnajfrustrovanejšom\nnajfrustrovanejšou\nnajfufnavejšej\nnajfufnavejší\nnajfufnavejšia\nnajfufnavejšie\nnajfufnavejšieho\nnajfufnavejšiemu\nnajfufnavejších\nnajfufnavejším\nnajfufnavejšími\nnajfufnavejšiu\nnajfufnavejšom\nnajfufnavejšou\nnajfundamentalistickejšej\nnajfundamentalistickejší\nnajfundamentalistickejšia\nnajfundamentalistickejšie\nnajfundamentalistickejšieho\nnajfundamentalistickejšiemu\nnajfundamentalistickejších\nnajfundamentalistickejším\nnajfundamentalistickejšími\nnajfundamentalistickejšiu\nnajfundamentalistickejšom\nnajfundamentalistickejšou\nnajfundamentálnejšie\nnajfundovanejšej\nnajfundovanejší\nnajfundovanejšia\nnajfundovanejšie\nnajfundovanejšieho\nnajfundovanejšiemu\nnajfundovanejších\nnajfundovanejším\nnajfundovanejšími\nnajfundovanejšiu\nnajfundovanejšom\nnajfundovanejšou\nnajfunkčnejšej\nnajfunkčnejší\nnajfunkčnejšia\nnajfunkčnejšie\nnajfunkčnejšieho\nnajfunkčnejšiemu\nnajfunkčnejších\nnajfunkčnejším\nnajfunkčnejšími\nnajfunkčnejšiu\nnajfunkčnejšom\nnajfunkčnejšou\nnajfurtáckejšej\nnajfurtáckejší\nnajfurtáckejšia\nnajfurtáckejšie\nnajfurtáckejšieho\nnajfurtáckejšiemu\nnajfurtáckejších\nnajfurtáckejším\nnajfurtáckejšími\nnajfurtáckejšiu\nnajfurtáckejšom\nnajfurtáckejšou\nnajfušerskejšej\nnajfušerskejší\nnajfušerskejšia\nnajfušerskejšie\nnajfušerskejšieho\nnajfušerskejšiemu\nnajfušerskejších\nnajfušerskejším\nnajfušerskejšími\nnajfušerskejšiu\nnajfušerskejšom\nnajfušerskejšou\nnajfutbalovejšej\nnajfutbalovejší\nnajfutbalovejšia\nnajfutbalovejšie\nnajfutbalovejšieho\nnajfutbalovejšiemu\nnajfutbalovejších\nnajfutbalovejším\nnajfutbalovejšími\nnajfutbalovejšiu\nnajfutbalovejšom\nnajfutbalovejšou\nnajfuturistickejšej\nnajfuturistickejší\nnajfuturistickejšia\nnajfuturistickejšie\nnajfuturistickejšieho\nnajfuturistickejšiemu\nnajfuturistickejších\nnajfuturistickejším\nnajfuturistickejšími\nnajfuturistickejšiu\nnajfuturistickejšom\nnajfuturistickejšou\nnajfúzatejšej\nnajfúzatejší\nnajfúzatejšia\nnajfúzatejšie\nnajfúzatejšieho\nnajfúzatejšiemu\nnajfúzatejších\nnajfúzatejším\nnajfúzatejšími\nnajfúzatejšiu\nnajfúzatejšom\nnajfúzatejšou\nnajgalantnejšej\nnajgalantnejší\nnajgalantnejšia\nnajgalantnejšie\nnajgalantnejšieho\nnajgalantnejšiemu\nnajgalantnejších\nnajgalantnejším\nnajgalantnejšími\nnajgalantnejšiu\nnajgalantnejšom\nnajgalantnejšou\nnajgalbavejšej\nnajgalbavejší\nnajgalbavejšia\nnajgalbavejšie\nnajgalbavejšieho\nnajgalbavejšiemu\nnajgalbavejších\nnajgalbavejším\nnajgalbavejšími\nnajgalbavejšiu\nnajgalbavejšom\nnajgalbavejšou\nnajgalganskejšej\nnajgalganskejší\nnajgalganskejšia\nnajgalganskejšie\nnajgalganskejšieho\nnajgalganskejšiemu\nnajgalganskejších\nnajgalganskejším\nnajgalganskejšími\nnajgalganskejšiu\nnajgalganskejšom\nnajgalganskejšou\nnajgambatejšej\nnajgambatejší\nnajgambatejšia\nnajgambatejšie\nnajgambatejšieho\nnajgambatejšiemu\nnajgambatejších\nnajgambatejším\nnajgambatejšími\nnajgambatejšiu\nnajgambatejšom\nnajgambatejšou\nnajgánivejšej\nnajgánivejší\nnajgánivejšia\nnajgánivejšie\nnajgánivejšieho\nnajgánivejšiemu\nnajgánivejších\nnajgánivejším\nnajgánivejšími\nnajgánivejšiu\nnajgánivejšom\nnajgánivejšou\nnajgavalierskejšej\nnajgavalierskejší\nnajgavalierskejšia\nnajgavalierskejšie\nnajgavalierskejšieho\nnajgavalierskejšiemu\nnajgavalierskejších\nnajgavalierskejším\nnajgavalierskejšími\nnajgavalierskejšiu\nnajgavalierskejšom\nnajgavalierskejšou\nnajgazdovlivejšej\nnajgazdovlivejší\nnajgazdovlivejšia\nnajgazdovlivejšie\nnajgazdovlivejšieho\nnajgazdovlivejšiemu\nnajgazdovlivejších\nnajgazdovlivejším\nnajgazdovlivejšími\nnajgazdovlivejšiu\nnajgazdovlivejšom\nnajgazdovlivejšou\nnajgenerálskejšej\nnajgenerálskejší\nnajgenerálskejšia\nnajgenerálskejšie\nnajgenerálskejšieho\nnajgenerálskejšiemu\nnajgenerálskejších\nnajgenerálskejším\nnajgenerálskejšími\nnajgenerálskejšiu\nnajgenerálskejšom\nnajgenerálskejšou\nnajgeniálnejšej\nnajgeniálnejší\nnajgeniálnejšia\nnajgeniálnejšie\nnajgeniálnejšieho\nnajgeniálnejšiemu\nnajgeniálnejších\nnajgeniálnejším\nnajgeniálnejšími\nnajgeniálnejšiu\nnajgeniálnejšom\nnajgeniálnejšou\nnajgermánskejšej\nnajgermánskejší\nnajgermánskejšia\nnajgermánskejšie\nnajgermánskejšieho\nnajgermánskejšiemu\nnajgermánskejších\nnajgermánskejším\nnajgermánskejšími\nnajgermánskejšiu\nnajgermánskejšom\nnajgermánskejšou\nnajgigantickejšej\nnajgigantickejší\nnajgigantickejšia\nnajgigantickejšie\nnajgigantickejšieho\nnajgigantickejšiemu\nnajgigantickejších\nnajgigantickejším\nnajgigantickejšími\nnajgigantickejšiu\nnajgigantickejšom\nnajgigantickejšou\nnajglejovitejšej\nnajglejovitejší\nnajglejovitejšia\nnajglejovitejšie\nnajglejovitejšieho\nnajglejovitejšiemu\nnajglejovitejších\nnajglejovitejším\nnajglejovitejšími\nnajglejovitejšiu\nnajglejovitejšom\nnajglejovitejšou\nnajglobálnejšej\nnajglobálnejšie\nnajglobálnejších\nnajglobálnejšou\nnajgotickejšej\nnajgotickejší\nnajgotickejšia\nnajgotickejšie\nnajgotickejšieho\nnajgotickejšiemu\nnajgotickejších\nnajgotickejším\nnajgotickejšími\nnajgotickejšiu\nnajgotickejšom\nnajgotickejšou\nnajgracióznejšej\nnajgracióznejší\nnajgracióznejšia\nnajgracióznejšie\nnajgracióznejšieho\nnajgracióznejšiemu\nnajgracióznejších\nnajgracióznejším\nnajgracióznejšími\nnajgracióznejšiu\nnajgracióznejšom\nnajgracióznejšou\nnajgrambľavejšej\nnajgrambľavejší\nnajgrambľavejšia\nnajgrambľavejšie\nnajgrambľavejšieho\nnajgrambľavejšiemu\nnajgrambľavejších\nnajgrambľavejším\nnajgrambľavejšími\nnajgrambľavejšiu\nnajgrambľavejšom\nnajgrambľavejšou\nnajgramotnejšej\nnajgramotnejší\nnajgramotnejšia\nnajgramotnejšie\nnajgramotnejšieho\nnajgramotnejšiemu\nnajgramotnejších\nnajgramotnejším\nnajgramotnejšími\nnajgramotnejšiu\nnajgramotnejšom\nnajgramotnejšou\nnajgrandióznejšej\nnajgrandióznejší\nnajgrandióznejšia\nnajgrandióznejšie\nnajgrandióznejšieho\nnajgrandióznejšiemu\nnajgrandióznejších\nnajgrandióznejším\nnajgrandióznejšími\nnajgrandióznejšiu\nnajgrandióznejšom\nnajgrandióznejšou\nnajgrobianskejšej\nnajgrobianskejší\nnajgrobianskejšia\nnajgrobianskejšie\nnajgrobianskejšieho\nnajgrobianskejšiemu\nnajgrobianskejších\nnajgrobianskejším\nnajgrobianskejšími\nnajgrobianskejšiu\nnajgrobianskejšom\nnajgrobianskejšou\nnajgrotesknejšej\nnajgrotesknejší\nnajgrotesknejšia\nnajgrotesknejšie\nnajgrotesknejšieho\nnajgrotesknejšiemu\nnajgrotesknejších\nnajgrotesknejším\nnajgrotesknejšími\nnajgrotesknejšiu\nnajgrotesknejšom\nnajgrotesknejšou\nnajguľatejšej\nnajguľatejší\nnajguľatejšia\nnajguľatejšie\nnajguľatejšieho\nnajguľatejšiemu\nnajguľatejších\nnajguľatejším\nnajguľatejšími\nnajguľatejšiu\nnajguľatejšom\nnajguľatejšou\nnajguľkovitejšej\nnajguľkovitejší\nnajguľkovitejšia\nnajguľkovitejšie\nnajguľkovitejšieho\nnajguľkovitejšiemu\nnajguľkovitejších\nnajguľkovitejším\nnajguľkovitejšími\nnajguľkovitejšiu\nnajguľkovitejšom\nnajguľkovitejšou\nnajguľovitejšej\nnajguľovitejší\nnajguľovitejšia\nnajguľovitejšie\nnajguľovitejšieho\nnajguľovitejšiemu\nnajguľovitejších\nnajguľovitejším\nnajguľovitejšími\nnajguľovitejšiu\nnajguľovitejšom\nnajguľovitejšou\nnajgumovitejšej\nnajgumovitejší\nnajgumovitejšia\nnajgumovitejšie\nnajgumovitejšieho\nnajgumovitejšiemu\nnajgumovitejších\nnajgumovitejším\nnajgumovitejšími\nnajgumovitejšiu\nnajgumovitejšom\nnajgumovitejšou\nnajgustióznejšej\nnajgustióznejší\nnajgustióznejšia\nnajgustióznejšie\nnajgustióznejšieho\nnajgustióznejšiemu\nnajgustióznejších\nnajgustióznejším\nnajgustióznejšími\nnajgustióznejšiu\nnajgustióznejšom\nnajgustióznejšou\nnajgýčovejšej\nnajgýčovejší\nnajgýčovejšia\nnajgýčovejšie\nnajgýčovejšieho\nnajgýčovejšiemu\nnajgýčovejších\nnajgýčovejším\nnajgýčovejšími\nnajgýčovejšiu\nnajgýčovejšom\nnajgýčovejšou\nnajgýčovitejšej\nnajgýčovitejší\nnajgýčovitejšia\nnajgýčovitejšie\nnajgýčovitejšieho\nnajgýčovitejšiemu\nnajgýčovitejších\nnajgýčovitejším\nnajgýčovitejšími\nnajgýčovitejšiu\nnajgýčovitejšom\nnajgýčovitejšou\nnajhabkavejšej\nnajhabkavejší\nnajhabkavejšia\nnajhabkavejšie\nnajhabkavejšieho\nnajhabkavejšiemu\nnajhabkavejších\nnajhabkavejším\nnajhabkavejšími\nnajhabkavejšiu\nnajhabkavejšom\nnajhabkavejšou\nnajhádavejšej\nnajhádavejší\nnajhádavejšia\nnajhádavejšie\nnajhádavejšieho\nnajhádavejšiemu\nnajhádavejších\nnajhádavejším\nnajhádavejšími\nnajhádavejšiu\nnajhádavejšom\nnajhádavejšou\nnajhadovitejšej\nnajhadovitejší\nnajhadovitejšia\nnajhadovitejšie\nnajhadovitejšieho\nnajhadovitejšiemu\nnajhadovitejších\nnajhadovitejším\nnajhadovitejšími\nnajhadovitejšiu\nnajhadovitejšom\nnajhadovitejšou\nnajháklivejšej\nnajháklivejší\nnajháklivejšia\nnajháklivejšie\nnajháklivejšieho\nnajháklivejšiemu\nnajháklivejších\nnajháklivejším\nnajháklivejšími\nnajháklivejšiu\nnajháklivejšom\nnajháklivejšou\nnajhákovitejšej\nnajhákovitejší\nnajhákovitejšia\nnajhákovitejšie\nnajhákovitejšieho\nnajhákovitejšiemu\nnajhákovitejších\nnajhákovitejším\nnajhákovitejšími\nnajhákovitejšiu\nnajhákovitejšom\nnajhákovitejšou\nnajhanblivejšej\nnajhanblivejší\nnajhanblivejšia\nnajhanblivejšie\nnajhanblivejšieho\nnajhanblivejšiemu\nnajhanblivejších\nnajhanblivejším\nnajhanblivejšími\nnajhanblivejšiu\nnajhanblivejšom\nnajhanblivejšou\nnajhandrovejšej\nnajhandrovejší\nnajhandrovejšia\nnajhandrovejšie\nnajhandrovejšieho\nnajhandrovejšiemu\nnajhandrovejších\nnajhandrovejším\nnajhandrovejšími\nnajhandrovejšiu\nnajhandrovejšom\nnajhandrovejšou\nnajhanebnejšej\nnajhanebnejší\nnajhanebnejšia\nnajhanebnejšie\nnajhanebnejšieho\nnajhanebnejšiemu\nnajhanebnejších\nnajhanebnejším\nnajhanebnejšími\nnajhanebnejšiu\nnajhanebnejšom\nnajhanebnejšou\nnajhanlivejšej\nnajhanlivejší\nnajhanlivejšia\nnajhanlivejšie\nnajhanlivejšieho\nnajhanlivejšiemu\nnajhanlivejších\nnajhanlivejším\nnajhanlivejšími\nnajhanlivejšiu\nnajhanlivejšom\nnajhanlivejšou\nnajhanoblivejšej\nnajhanoblivejší\nnajhanoblivejšia\nnajhanoblivejšie\nnajhanoblivejšieho\nnajhanoblivejšiemu\nnajhanoblivejších\nnajhanoblivejším\nnajhanoblivejšími\nnajhanoblivejšiu\nnajhanoblivejšom\nnajhanoblivejšou\nnajhanobnejšej\nnajhanobnejší\nnajhanobnejšia\nnajhanobnejšie\nnajhanobnejšieho\nnajhanobnejšiemu\nnajhanobnejších\nnajhanobnejším\nnajhanobnejšími\nnajhanobnejšiu\nnajhanobnejšom\nnajhanobnejšou\nnajharmonickejšej\nnajharmonickejší\nnajharmonickejšia\nnajharmonickejšie\nnajharmonickejšieho\nnajharmonickejšiemu\nnajharmonickejších\nnajharmonickejším\nnajharmonickejšími\nnajharmonickejšiu\nnajharmonickejšom\nnajharmonickejšou\nnajhašterivejšej\nnajhašterivejší\nnajhašterivejšia\nnajhašterivejšie\nnajhašterivejšieho\nnajhašterivejšiemu\nnajhašterivejších\nnajhašterivejším\nnajhašterivejšími\nnajhašterivejšiu\nnajhašterivejšom\nnajhašterivejšou\nnajhatlavejšej\nnajhatlavejší\nnajhatlavejšia\nnajhatlavejšie\nnajhatlavejšieho\nnajhatlavejšiemu\nnajhatlavejších\nnajhatlavejším\nnajhatlavejšími\nnajhatlavejšiu\nnajhatlavejšom\nnajhatlavejšou\nnajhazardérskejšej\nnajhazardérskejší\nnajhazardérskejšia\nnajhazardérskejšie\nnajhazardérskejšieho\nnajhazardérskejšiemu\nnajhazardérskejších\nnajhazardérskejším\nnajhazardérskejšími\nnajhazardérskejšiu\nnajhazardérskejšom\nnajhazardérskejšou\nnajhazardnejšej\nnajhazardnejší\nnajhazardnejšia\nnajhazardnejšie\nnajhazardnejšieho\nnajhazardnejšiemu\nnajhazardnejších\nnajhazardnejším\nnajhazardnejšími\nnajhazardnejšiu\nnajhazardnejšom\nnajhazardnejšou\nnajhebkejšej\nnajhebkejší\nnajhebkejšia\nnajhebkejšie\nnajhebkejšieho\nnajhebkejšiemu\nnajhebkejších\nnajhebkejším\nnajhebkejšími\nnajhebkejšiu\nnajhebkejšom\nnajhebkejšou\nnajhedonistickejšej\nnajhedonistickejší\nnajhedonistickejšia\nnajhedonistickejšie\nnajhedonistickejšieho\nnajhedonistickejšiemu\nnajhedonistickejších\nnajhedonistickejším\nnajhedonistickejšími\nnajhedonistickejšiu\nnajhedonistickejšom\nnajhedonistickejšou\nnajhektickejšej\nnajhektickejší\nnajhektickejšia\nnajhektickejšie\nnajhektickejšieho\nnajhektickejšiemu\nnajhektickejších\nnajhektickejším\nnajhektickejšími\nnajhektickejšiu\nnajhektickejšom\nnajhektickejšou\nnajhendikepovanejšej\nnajhendikepovanejší\nnajhendikepovanejšia\nnajhendikepovanejšie\nnajhendikepovanejšieho\nnajhendikepovanejšiemu\nnajhendikepovanejších\nnajhendikepovanejším\nnajhendikepovanejšími\nnajhendikepovanejšiu\nnajhendikepovanejšom\nnajhendikepovanejšou\nnajheroickejšej\nnajheroickejší\nnajheroickejšia\nnajheroickejšie\nnajheroickejšieho\nnajheroickejšiemu\nnajheroickejších\nnajheroickejším\nnajheroickejšími\nnajheroickejšiu\nnajheroickejšom\nnajheroickejšou\nnajheslovitejšej\nnajheslovitejší\nnajheslovitejšia\nnajheslovitejšie\nnajheslovitejšieho\nnajheslovitejšiemu\nnajheslovitejších\nnajheslovitejším\nnajheslovitejšími\nnajheslovitejšiu\nnajheslovitejšom\nnajheslovitejšou\nnajheterogénnejšie\nnajhistorickejšej\nnajhistorickejší\nnajhistorickejšia\nnajhistorickejšie\nnajhistorickejšieho\nnajhistorickejšiemu\nnajhistorickejších\nnajhistorickejším\nnajhistorickejšími\nnajhistorickejšiu\nnajhistorickejšom\nnajhistorickejšou\nnajhľadanejšej\nnajhľadanejší\nnajhľadanejšia\nnajhľadanejšie\nnajhľadanejšieho\nnajhľadanejšiemu\nnajhľadanejších\nnajhľadanejším\nnajhľadanejšími\nnajhľadanejšiu\nnajhľadanejšom\nnajhľadanejšou\nnajhladnejšej\nnajhladnejší\nnajhladnejšia\nnajhladnejšie\nNajhladnejšie\nnajhladnejšieho\nnajhladnejšiemu\nnajhladnejších\nnajhladnejším\nnajhladnejšími\nnajhladnejšiu\nnajhladnejšom\nnajhladnejšou\nnajhladšej\nnajhladší\nnajhladšia\nnajhladšie\nnajhladšieho\nnajhladšiemu\nnajhladších\nnajhladším\nnajhladšími\nnajhladšiu\nnajhladšom\nnajhladšou\nnajhlasitejšej\nnajhlasitejší\nnajhlasitejšia\nnajhlasitejšie\nnajhlasitejšieho\nnajhlasitejšiemu\nnajhlasitejších\nnajhlasitejším\nnajhlasitejšími\nnajhlasitejšiu\nnajhlasitejšom\nnajhlasitejšou\nnajhlasnejšie\nnajhlavatejšej\nnajhlavatejší\nnajhlavatejšia\nnajhlavatejšie\nnajhlavatejšieho\nnajhlavatejšiemu\nnajhlavatejších\nnajhlavatejším\nnajhlavatejšími\nnajhlavatejšiu\nnajhlavatejšom\nnajhlavatejšou\nnajhlavnejšej\nnajhlavnejší\nnajhlavnejšia\nnajhlavnejšieho\nnajhlavnejšiemu\nnajhlavnejších\nnajhlavnejším\nnajhlavnejšími\nnajhlavnejšiu\nnajhlavnejšom\nnajhlavnejšou\nnajhĺbavejšej\nnajhĺbavejší\nnajhĺbavejšia\nnajhĺbavejšie\nnajhĺbavejšieho\nnajhĺbavejšiemu\nnajhĺbavejších\nnajhĺbavejším\nnajhĺbavejšími\nnajhĺbavejšiu\nnajhĺbavejšom\nnajhĺbavejšou\nnajhlbokomyseľnejšej\nnajhlbokomyseľnejší\nnajhlbokomyseľnejšia\nnajhlbokomyseľnejšie\nnajhlbokomyseľnejšieho\nnajhlbokomyseľnejšiemu\nnajhlbokomyseľnejších\nnajhlbokomyseľnejším\nnajhlbokomyseľnejšími\nnajhlbokomyseľnejšiu\nnajhlbokomyseľnejšom\nnajhlbokomyseľnejšou\nnajhlinastejšej\nnajhlinastejší\nnajhlinastejšia\nnajhlinastejšie\nnajhlinastejšieho\nnajhlinastejšiemu\nnajhlinastejších\nnajhlinastejším\nnajhlinastejšími\nnajhlinastejšiu\nnajhlinastejšom\nnajhlinastejšou\nnajhlinistejšej\nnajhlinistejší\nnajhlinistejšia\nnajhlinistejšie\nnajhlinistejšieho\nnajhlinistejšiemu\nnajhlinistejších\nnajhlinistejším\nnajhlinistejšími\nnajhlinistejšiu\nnajhlinistejšom\nnajhlinistejšou\nnajhlinitejšej\nnajhlinitejší\nnajhlinitejšia\nnajhlinitejšie\nnajhlinitejšieho\nnajhlinitejšiemu\nnajhlinitejších\nnajhlinitejším\nnajhlinitejšími\nnajhlinitejšiu\nnajhlinitejšom\nnajhlinitejšou\nnajhlodavejšej\nnajhlodavejší\nnajhlodavejšia\nnajhlodavejšie\nnajhlodavejšieho\nnajhlodavejšiemu\nnajhlodavejších\nnajhlodavejším\nnajhlodavejšími\nnajhlodavejšiu\nnajhlodavejšom\nnajhlodavejšou\nnajhltavejšej\nnajhltavejší\nnajhltavejšia\nnajhltavejšie\nnajhltavejšieho\nnajhltavejšiemu\nnajhltavejších\nnajhltavejším\nnajhltavejšími\nnajhltavejšiu\nnajhltavejšom\nnajhltavejšou\nnajhlúbovitejšej\nnajhlúbovitejší\nnajhlúbovitejšia\nnajhlúbovitejšie\nnajhlúbovitejšieho\nnajhlúbovitejšiemu\nnajhlúbovitejších\nnajhlúbovitejším\nnajhlúbovitejšími\nnajhlúbovitejšiu\nnajhlúbovitejšom\nnajhlúbovitejšou\nnajhlučnejšej\nnajhlučnejší\nnajhlučnejšia\nnajhlučnejšie\nnajhlučnejšieho\nnajhlučnejšiemu\nnajhlučnejších\nnajhlučnejším\nnajhlučnejšími\nnajhlučnejšiu\nnajhlučnejšom\nnajhlučnejšou\nnajhluchejšej\nnajhluchejší\nnajhluchejšia\nnajhluchejšie\nnajhluchejšieho\nnajhluchejšiemu\nnajhluchejších\nnajhluchejším\nnajhluchejšími\nnajhluchejšiu\nnajhluchejšom\nnajhluchejšou\nnajhluchšej\nnajhluchší\nnajhluchšia\nnajhluchšie\nnajhluchšieho\nnajhluchšiemu\nnajhluchších\nnajhluchším\nnajhluchšími\nnajhluchšiu\nnajhluchšom\nnajhluchšou\nnajhlúpučkejšej\nnajhlúpučkejší\nnajhlúpučkejšia\nnajhlúpučkejšie\nnajhlúpučkejšieho\nnajhlúpučkejšiemu\nnajhlúpučkejších\nnajhlúpučkejším\nnajhlúpučkejšími\nnajhlúpučkejšiu\nnajhlúpučkejšom\nnajhlúpučkejšou\nnajhľuzovitejšej\nnajhľuzovitejší\nnajhľuzovitejšia\nnajhľuzovitejšie\nnajhľuzovitejšieho\nnajhľuzovitejšiemu\nnajhľuzovitejších\nnajhľuzovitejším\nnajhľuzovitejšími\nnajhľuzovitejšiu\nnajhľuzovitejšom\nnajhľuzovitejšou\nnajhmatateľnejšej\nnajhmatateľnejší\nnajhmatateľnejšia\nnajhmatateľnejšieho\nnajhmatateľnejšiemu\nnajhmatateľnejších\nnajhmatateľnejším\nnajhmatateľnejšími\nnajhmatateľnejšiu\nnajhmatateľnejšom\nnajhmatateľnejšou\nnajhmlistejšej\nnajhmlistejší\nnajhmlistejšia\nnajhmlistejšie\nnajhmlistejšieho\nnajhmlistejšiemu\nnajhmlistejších\nnajhmlistejším\nnajhmlistejšími\nnajhmlistejšiu\nnajhmlistejšom\nnajhmlistejšou\nnajhmlovitejšej\nnajhmlovitejší\nnajhmlovitejšia\nnajhmlovitejšie\nnajhmlovitejšieho\nnajhmlovitejšiemu\nnajhmlovitejších\nnajhmlovitejším\nnajhmlovitejšími\nnajhmlovitejšiu\nnajhmlovitejšom\nnajhmlovitejšou\nnajhmotnejšej\nnajhmotnejší\nnajhmotnejšia\nnajhmotnejšie\nnajhmotnejšieho\nnajhmotnejšiemu\nnajhmotnejších\nnajhmotnejším\nnajhmotnejšími\nnajhmotnejšiu\nnajhmotnejšom\nnajhmotnejšou\nnajhnedšej\nnajhnedší\nnajhnedšia\nnajhnedšie\nnajhnedšieho\nnajhnedšiemu\nnajhnedších\nnajhnedším\nnajhnedšími\nnajhnedšiu\nnajhnedšom\nnajhnedšou\nnajhnevlivejšej\nnajhnevlivejší\nnajhnevlivejšia\nnajhnevlivejšie\nnajhnevlivejšieho\nnajhnevlivejšiemu\nnajhnevlivejších\nnajhnevlivejším\nnajhnevlivejšími\nnajhnevlivejšiu\nnajhnevlivejšom\nnajhnevlivejšou\nnajhnilejšej\nnajhnilejší\nnajhnilejšia\nnajhnilejšie\nnajhnilejšieho\nnajhnilejšiemu\nnajhnilejších\nnajhnilejším\nnajhnilejšími\nnajhnilejšiu\nnajhnilejšom\nnajhnilejšou\nnajhnisavejšej\nnajhnisavejší\nnajhnisavejšia\nnajhnisavejšie\nnajhnisavejšieho\nnajhnisavejšiemu\nnajhnisavejších\nnajhnisavejším\nnajhnisavejšími\nnajhnisavejšiu\nnajhnisavejšom\nnajhnisavejšou\nnajhnusnejšej\nnajhnusnejší\nnajhnusnejšia\nnajhnusnejšieho\nnajhnusnejšiemu\nnajhnusnejších\nnajhnusnejším\nnajhnusnejšími\nnajhnusnejšiu\nnajhnusnejšom\nnajhnusnejšou\nnajhodnejšej\nnajhodnejší\nnajhodnejšia\nnajhodnejšie\nnajhodnejšieho\nnajhodnejšiemu\nnajhodnejších\nnajhodnejším\nnajhodnejšími\nnajhodnejšiu\nnajhodnejšom\nnajhodnejšou\nnajhodnotnejšej\nnajhodnotnejší\nnajhodnotnejšia\nnajhodnotnejšie\nnajhodnotnejšieho\nnajhodnotnejšiemu\nnajhodnotnejších\nnajhodnotnejším\nnajhodnotnejšími\nnajhodnotnejšiu\nnajhodnotnejšom\nnajhodnotnejšou\nnajhodnovernejšej\nnajhodnovernejší\nnajhodnovernejšia\nnajhodnovernejšie\nnajhodnovernejšieho\nnajhodnovernejšiemu\nnajhodnovernejších\nnajhodnovernejším\nnajhodnovernejšími\nnajhodnovernejšiu\nnajhodnovernejšom\nnajhodnovernejšou\nnajhojdavejšej\nnajhojdavejší\nnajhojdavejšia\nnajhojdavejšie\nnajhojdavejšieho\nnajhojdavejšiemu\nnajhojdavejších\nnajhojdavejším\nnajhojdavejšími\nnajhojdavejšiu\nnajhojdavejšom\nnajhojdavejšou\nnajhojivejšej\nnajhojivejší\nnajhojivejšia\nnajhojivejšie\nnajhojivejšieho\nnajhojivejšiemu\nnajhojivejších\nnajhojivejším\nnajhojivejšími\nnajhojivejšiu\nnajhojivejšom\nnajhojivejšou\nnajhokejovejšej\nnajhokejovejší\nnajhokejovejšia\nnajhokejovejšie\nnajhokejovejšieho\nnajhokejovejšiemu\nnajhokejovejších\nnajhokejovejším\nnajhokejovejšími\nnajhokejovejšiu\nnajhokejovejšom\nnajhokejovejšou\nnajholandskejšej\nnajholandskejší\nnajholandskejšia\nnajholandskejšie\nnajholandskejšieho\nnajholandskejšiemu\nnajholandskejších\nnajholandskejším\nnajholandskejšími\nnajholandskejšiu\nnajholandskejšom\nnajholandskejšou\nnajhomogénnejšej\nnajhomogénnejší\nnajhomogénnejšia\nnajhomogénnejšie\nnajhomogénnejšieho\nnajhomogénnejšiemu\nnajhomogénnejších\nnajhomogénnejším\nnajhomogénnejšími\nnajhomogénnejšiu\nnajhomogénnejšom\nnajhomogénnejšou\nnajhomoľovitejšej\nnajhomoľovitejší\nnajhomoľovitejšia\nnajhomoľovitejšie\nnajhomoľovitejšieho\nnajhomoľovitejšiemu\nnajhomoľovitejších\nnajhomoľovitejším\nnajhomoľovitejšími\nnajhomoľovitejšiu\nnajhomoľovitejšom\nnajhomoľovitejšou\nnajhonosnejšej\nnajhonosnejší\nnajhonosnejšia\nnajhonosnejšie\nnajhonosnejšieho\nnajhonosnejšiemu\nnajhonosnejších\nnajhonosnejším\nnajhonosnejšími\nnajhonosnejšiu\nnajhonosnejšom\nnajhonosnejšou\nnajhopkavejšej\nnajhopkavejší\nnajhopkavejšia\nnajhopkavejšie\nnajhopkavejšieho\nnajhopkavejšiemu\nnajhopkavejších\nnajhopkavejším\nnajhopkavejšími\nnajhopkavejšiu\nnajhopkavejšom\nnajhopkavejšou\nnajhorkejšej\nnajhorkejší\nnajhorkejšia\nnajhorkejšie\nnajhorkejšieho\nnajhorkejšiemu\nnajhorkejších\nnajhorkejším\nnajhorkejšími\nnajhorkejšiu\nnajhorkejšom\nnajhorkejšou\nnajhorkokrvnejšej\nnajhorkokrvnejší\nnajhorkokrvnejšia\nnajhorkokrvnejšie\nnajhorkokrvnejšieho\nnajhorkokrvnejšiemu\nnajhorkokrvnejších\nnajhorkokrvnejším\nnajhorkokrvnejšími\nnajhorkokrvnejšiu\nnajhorkokrvnejšom\nnajhorkokrvnejšou\nnajhorľavejšej\nnajhorľavejší\nnajhorľavejšia\nnajhorľavejšie\nnajhorľavejšieho\nnajhorľavejšiemu\nnajhorľavejších\nnajhorľavejším\nnajhorľavejšími\nnajhorľavejšiu\nnajhorľavejšom\nnajhorľavejšou\nnajhorlivejšej\nnajhorlivejší\nnajhorlivejšia\nnajhorlivejšie\nnajhorlivejšieho\nnajhorlivejšiemu\nnajhorlivejších\nnajhorlivejším\nNajhorlivejším\nnajhorlivejšími\nnajhorlivejšiu\nnajhorlivejšom\nnajhorlivejšou\nnajhornatejšej\nnajhornatejší\nnajhornatejšia\nnajhornatejšie\nnajhornatejšieho\nnajhornatejšiemu\nnajhornatejších\nnajhornatejším\nnajhornatejšími\nnajhornatejšiu\nnajhornatejšom\nnajhornatejšou\nnajhororovejšej\nnajhororovejší\nnajhororovejšia\nnajhororovejšie\nnajhororovejšieho\nnajhororovejšiemu\nnajhororovejších\nnajhororovejším\nnajhororovejšími\nnajhororovejšiu\nnajhororovejšom\nnajhororovejšou\nnajhorúčkovitejšej\nnajhorúčkovitejší\nnajhorúčkovitejšia\nnajhorúčkovitejšie\nnajhorúčkovitejšieho\nnajhorúčkovitejšiemu\nnajhorúčkovitejších\nnajhorúčkovitejším\nnajhorúčkovitejšími\nnajhorúčkovitejšiu\nnajhorúčkovitejšom\nnajhorúčkovitejšou\nnajhospodárnejšej\nnajhospodárnejší\nnajhospodárnejšia\nnajhospodárnejšie\nnajhospodárnejšieho\nnajhospodárnejšiemu\nnajhospodárnejších\nnajhospodárnejším\nnajhospodárnejšími\nnajhospodárnejšiu\nnajhospodárnejšom\nnajhospodárnejšou\nnajhovadskejšie\nnajhovädskejšie\nnajhrabivejšej\nnajhrabivejší\nnajhrabivejšia\nnajhrabivejšie\nnajhrabivejšieho\nnajhrabivejšiemu\nnajhrabivejších\nnajhrabivejším\nnajhrabivejšími\nnajhrabivejšiu\nnajhrabivejšom\nnajhrabivejšou\nnajhranatejšej\nnajhranatejší\nnajhranatejšia\nnajhranatejšie\nnajhranatejšieho\nnajhranatejšiemu\nnajhranatejších\nnajhranatejším\nnajhranatejšími\nnajhranatejšiu\nnajhranatejšom\nnajhranatejšou\nnajhravejšej\nnajhravejší\nnajhravejšia\nnajhravejšie\nnajhravejšieho\nnajhravejšiemu\nnajhravejších\nnajhravejším\nnajhravejšími\nnajhravejšiu\nnajhravejšom\nnajhravejšou\nnajhrbatejšej\nnajhrbatejší\nnajhrbatejšia\nnajhrbatejšie\nnajhrbatejšieho\nnajhrbatejšiemu\nnajhrbatejších\nnajhrbatejším\nnajhrbatejšími\nnajhrbatejšiu\nnajhrbatejšom\nnajhrbatejšou\nnajhrboľatejšej\nnajhrboľatejší\nnajhrboľatejšia\nnajhrboľatejšie\nnajhrboľatejšieho\nnajhrboľatejšiemu\nnajhrboľatejších\nnajhrboľatejším\nnajhrboľatejšími\nnajhrboľatejšiu\nnajhrboľatejšom\nnajhrboľatejšou\nnajhrčavejšej\nnajhrčavejší\nnajhrčavejšia\nnajhrčavejšie\nnajhrčavejšieho\nnajhrčavejšiemu\nnajhrčavejších\nnajhrčavejším\nnajhrčavejšími\nnajhrčavejšiu\nnajhrčavejšom\nnajhrčavejšou\nnajhrčivejšej\nnajhrčivejší\nnajhrčivejšia\nnajhrčivejšie\nnajhrčivejšieho\nnajhrčivejšiemu\nnajhrčivejších\nnajhrčivejším\nnajhrčivejšími\nnajhrčivejšiu\nnajhrčivejšom\nnajhrčivejšou\nnajhrčkavejšej\nnajhrčkavejší\nnajhrčkavejšia\nnajhrčkavejšie\nnajhrčkavejšieho\nnajhrčkavejšiemu\nnajhrčkavejších\nnajhrčkavejším\nnajhrčkavejšími\nnajhrčkavejšiu\nnajhrčkavejšom\nnajhrčkavejšou\nnajhrčkovitejšej\nnajhrčkovitejší\nnajhrčkovitejšia\nnajhrčkovitejšie\nnajhrčkovitejšieho\nnajhrčkovitejšiemu\nnajhrčkovitejších\nnajhrčkovitejším\nnajhrčkovitejšími\nnajhrčkovitejšiu\nnajhrčkovitejšom\nnajhrčkovitejšou\nnajhrčovitejšej\nnajhrčovitejší\nnajhrčovitejšia\nnajhrčovitejšie\nnajhrčovitejšieho\nnajhrčovitejšiemu\nnajhrčovitejších\nnajhrčovitejším\nnajhrčovitejšími\nnajhrčovitejšiu\nnajhrčovitejšom\nnajhrčovitejšou\nnajhrdejšej\nnajhrdejší\nnajhrdejšia\nnajhrdejšie\nnajhrdejšieho\nnajhrdejšiemu\nnajhrdejších\nnajhrdejším\nnajhrdejšími\nnajhrdejšiu\nnajhrdejšom\nnajhrdejšou\nnajhrdinskejšej\nnajhrdinskejší\nnajhrdinskejšia\nnajhrdinskejšie\nnajhrdinskejšieho\nnajhrdinskejšiemu\nnajhrdinskejších\nnajhrdinskejším\nnajhrdinskejšími\nnajhrdinskejšiu\nnajhrdinskejšom\nnajhrdinskejšou\nnajhrdšej\nnajhrdší\nnajhrdšia\nnajhrdšie\nnajhrdšieho\nnajhrdšiemu\nnajhrdších\nnajhrdším\nnajhrdšími\nnajhrdšiu\nnajhrdšom\nnajhrdšou\nnajhrdzavejšej\nnajhrdzavejší\nnajhrdzavejšia\nnajhrdzavejšie\nnajhrdzavejšieho\nnajhrdzavejšiemu\nnajhrdzavejších\nnajhrdzavejším\nnajhrdzavejšími\nnajhrdzavejšiu\nnajhrdzavejšom\nnajhrdzavejšou\nnajhrebeňovitejšej\nnajhrebeňovitejší\nnajhrebeňovitejšia\nnajhrebeňovitejšie\nnajhrebeňovitejšieho\nnajhrebeňovitejšiemu\nnajhrebeňovitejších\nnajhrebeňovitejším\nnajhrebeňovitejšími\nnajhrebeňovitejšiu\nnajhrebeňovitejšom\nnajhrebeňovitejšou\nnajhrejivejšej\nnajhrejivejší\nnajhrejivejšia\nnajhrejivejšie\nnajhrejivejšieho\nnajhrejivejšiemu\nnajhrejivejších\nnajhrejivejším\nnajhrejivejšími\nnajhrejivejšiu\nnajhrejivejšom\nnajhrejivejšou\nnajhriešnejšej\nnajhriešnejší\nnajhriešnejšia\nnajhriešnejšie\nnajhriešnejšieho\nnajhriešnejšiemu\nnajhriešnejších\nnajhriešnejším\nnajhriešnejšími\nnajhriešnejšiu\nnajhriešnejšom\nnajhriešnejšou\nnajhrkotavejšej\nnajhrkotavejší\nnajhrkotavejšia\nnajhrkotavejšie\nnajhrkotavejšieho\nnajhrkotavejšiemu\nnajhrkotavejších\nnajhrkotavejším\nnajhrkotavejšími\nnajhrkotavejšiu\nnajhrkotavejšom\nnajhrkotavejšou\nnajhrmotnejšej\nnajhrmotnejší\nnajhrmotnejšia\nnajhrmotnejšie\nnajhrmotnejšieho\nnajhrmotnejšiemu\nnajhrmotnejších\nnajhrmotnejším\nnajhrmotnejšími\nnajhrmotnejšiu\nnajhrmotnejšom\nnajhrmotnejšou\nnajhromadnejšej\nnajhromadnejší\nnajhromadnejšia\nnajhromadnejšie\nnajhromadnejšieho\nnajhromadnejšiemu\nnajhromadnejších\nnajhromadnejším\nnajhromadnejšími\nnajhromadnejšiu\nnajhromadnejšom\nnajhromadnejšou\nnajhrozivejší\nnajhroznejšie\nnajhrudkovitejší\nnajhruškovitejšej\nnajhruškovitejší\nnajhruškovitejšia\nnajhruškovitejšie\nnajhruškovitejšieho\nnajhruškovitejšiemu\nnajhruškovitejších\nnajhruškovitejším\nnajhruškovitejšími\nnajhruškovitejšiu\nnajhruškovitejšom\nnajhruškovitejšou\nnajhryzavejšej\nnajhryzavejší\nnajhryzavejšia\nnajhryzavejšie\nnajhryzavejšieho\nnajhryzavejšiemu\nnajhryzavejších\nnajhryzavejším\nnajhryzavejšími\nnajhryzavejšiu\nnajhryzavejšom\nnajhryzavejšou\nnajhubatejšej\nnajhubatejší\nnajhubatejšia\nnajhubatejšie\nnajhubatejšieho\nnajhubatejšiemu\nnajhubatejších\nnajhubatejším\nnajhubatejšími\nnajhubatejšiu\nnajhubatejšom\nnajhubatejšou\nnajhubovitejšej\nnajhubovitejší\nnajhubovitejšia\nnajhubovitejšie\nnajhubovitejšieho\nnajhubovitejšiemu\nnajhubovitejších\nnajhubovitejším\nnajhubovitejšími\nnajhubovitejšiu\nnajhubovitejšom\nnajhubovitejšou\nnajhudbymilovnejšej\nnajhudbymilovnejší\nnajhudbymilovnejšia\nnajhudbymilovnejšie\nnajhudbymilovnejšieho\nnajhudbymilovnejšiemu\nnajhudbymilovnejších\nnajhudbymilovnejším\nnajhudbymilovnejšími\nnajhudbymilovnejšiu\nnajhudbymilovnejšom\nnajhudbymilovnejšou\nnajhúfnejšej\nnajhúfnejší\nnajhúfnejšia\nnajhúfnejšie\nnajhúfnejšieho\nnajhúfnejšiemu\nnajhúfnejších\nnajhúfnejším\nnajhúfnejšími\nnajhúfnejšiu\nnajhúfnejšom\nnajhúfnejšou\nnajhuhňavejšej\nnajhuhňavejší\nnajhuhňavejšia\nnajhuhňavejšie\nnajhuhňavejšieho\nnajhuhňavejšiemu\nnajhuhňavejších\nnajhuhňavejším\nnajhuhňavejšími\nnajhuhňavejšiu\nnajhuhňavejšom\nnajhuhňavejšou\nnajhúkavejšej\nnajhúkavejší\nnajhúkavejšia\nnajhúkavejšie\nnajhúkavejšieho\nnajhúkavejšiemu\nnajhúkavejších\nnajhúkavejším\nnajhúkavejšími\nnajhúkavejšiu\nnajhúkavejšom\nnajhúkavejšou\nnajhukotavejšej\nnajhukotavejší\nnajhukotavejšia\nnajhukotavejšie\nnajhukotavejšieho\nnajhukotavejšiemu\nnajhukotavejších\nnajhukotavejším\nnajhukotavejšími\nnajhukotavejšiu\nnajhukotavejšom\nnajhukotavejšou\nnajhulvátskejšej\nnajhulvátskejší\nnajhulvátskejšia\nnajhulvátskejšie\nnajhulvátskejšieho\nnajhulvátskejšiemu\nnajhulvátskejších\nnajhulvátskejším\nnajhulvátskejšími\nnajhulvátskejšiu\nnajhulvátskejšom\nnajhulvátskejšou\nnajhumanistickejšej\nnajhumanistickejší\nnajhumanistickejšia\nnajhumanistickejšie\nnajhumanistickejšieho\nnajhumanistickejšiemu\nnajhumanistickejších\nnajhumanistickejším\nnajhumanistickejšími\nnajhumanistickejšiu\nnajhumanistickejšom\nnajhumanistickejšou\nnajhumánnejšej\nnajhumánnejší\nnajhumánnejšia\nnajhumánnejšie\nnajhumánnejšieho\nnajhumánnejšiemu\nnajhumánnejších\nnajhumánnejším\nnajhumánnejšími\nnajhumánnejšiu\nnajhumánnejšom\nnajhumánnejšou\nnajhumoristickejšej\nnajhumoristickejší\nnajhumoristickejšia\nnajhumoristickejšie\nnajhumoristickejšieho\nnajhumoristickejšiemu\nnajhumoristickejších\nnajhumoristickejším\nnajhumoristickejšími\nnajhumoristickejšiu\nnajhumoristickejšom\nnajhumoristickejšou\nnajhumornejšej\nnajhumornejší\nnajhumornejšia\nnajhumornejšie\nnajhumornejšieho\nnajhumornejšiemu\nnajhumornejších\nnajhumornejším\nnajhumornejšími\nnajhumornejšiu\nnajhumornejšom\nnajhumornejšou\nnajhuňatejšej\nnajhuňatejší\nnajhuňatejšia\nnajhuňatejšie\nnajhuňatejšieho\nnajhuňatejšiemu\nnajhuňatejších\nnajhuňatejším\nnajhuňatejšími\nnajhuňatejšiu\nnajhuňatejšom\nnajhuňatejšou\nnajhuncútskejšej\nnajhuncútskejší\nnajhuncútskejšia\nnajhuncútskejšie\nnajhuncútskejšieho\nnajhuncútskejšiemu\nnajhuncútskejších\nnajhuncútskejším\nnajhuncútskejšími\nnajhuncútskejšiu\nnajhuncútskejšom\nnajhuncútskejšou\nnajhundravejšej\nnajhundravejší\nnajhundravejšia\nnajhundravejšie\nnajhundravejšieho\nnajhundravejšiemu\nnajhundravejších\nnajhundravejším\nnajhundravejšími\nnajhundravejšiu\nnajhundravejšom\nnajhundravejšou\nnajhurtovnejšej\nnajhurtovnejší\nnajhurtovnejšia\nnajhurtovnejšie\nnajhurtovnejšieho\nnajhurtovnejšiemu\nnajhurtovnejších\nnajhurtovnejším\nnajhurtovnejšími\nnajhurtovnejšiu\nnajhurtovnejšom\nnajhurtovnejšou\nnajhusárskejšej\nnajhusárskejší\nnajhusárskejšia\nnajhusárskejšie\nnajhusárskejšieho\nnajhusárskejšiemu\nnajhusárskejších\nnajhusárskejším\nnajhusárskejšími\nnajhusárskejšiu\nnajhusárskejšom\nnajhusárskejšou\nnajhuspeninovitejšej\nnajhuspeninovitejší\nnajhuspeninovitejšia\nnajhuspeninovitejšie\nnajhuspeninovitejšieho\nnajhuspeninovitejšiemu\nnajhuspeninovitejších\nnajhuspeninovitejším\nnajhuspeninovitejšími\nnajhuspeninovitejšiu\nnajhuspeninovitejšom\nnajhuspeninovitejšou\nnajhutnejšej\nnajhutnejší\nnajhutnejšia\nnajhutnejšie\nnajhutnejšieho\nnajhutnejšiemu\nnajhutnejších\nnajhutnejším\nnajhutnejšími\nnajhutnejšiu\nnajhutnejšom\nnajhutnejšou\nnajhúževnatejšej\nnajhúževnatejší\nnajhúževnatejšia\nnajhúževnatejšie\nnajhúževnatejšieho\nnajhúževnatejšiemu\nnajhúževnatejších\nnajhúževnatejším\nnajhúževnatejšími\nnajhúževnatejšiu\nnajhúževnatejšom\nnajhúževnatejšou\nnajhviezdicovitejšej\nnajhviezdicovitejší\nnajhviezdicovitejšia\nnajhviezdicovitejšie\nnajhviezdicovitejšieho\nnajhviezdicovitejšiemu\nnajhviezdicovitejších\nnajhviezdicovitejším\nnajhviezdicovitejšími\nnajhviezdicovitejšiu\nnajhviezdicovitejšom\nnajhviezdicovitejšou\nnajhviezdnatejšej\nnajhviezdnatejší\nnajhviezdnatejšia\nnajhviezdnatejšie\nnajhviezdnatejšieho\nnajhviezdnatejšiemu\nnajhviezdnatejších\nnajhviezdnatejším\nnajhviezdnatejšími\nnajhviezdnatejšiu\nnajhviezdnatejšom\nnajhviezdnatejšou\nnajhviezdnejšie\nnajhviezdovitejšej\nnajhviezdovitejší\nnajhviezdovitejšia\nnajhviezdovitejšie\nnajhviezdovitejšieho\nnajhviezdovitejšiemu\nnajhviezdovitejších\nnajhviezdovitejším\nnajhviezdovitejšími\nnajhviezdovitejšiu\nnajhviezdovitejšom\nnajhviezdovitejšou\nnajhvízdavejšej\nnajhvízdavejší\nnajhvízdavejšia\nnajhvízdavejšie\nnajhvízdavejšieho\nnajhvízdavejšiemu\nnajhvízdavejších\nnajhvízdavejším\nnajhvízdavejšími\nnajhvízdavejšiu\nnajhvízdavejšom\nnajhvízdavejšou\nnajhybkejšej\nnajhybkejší\nnajhybkejšia\nnajhybkejšie\nnajhybkejšieho\nnajhybkejšiemu\nnajhybkejších\nnajhybkejším\nnajhybkejšími\nnajhybkejšiu\nnajhybkejšom\nnajhybkejšou\nnajhybridnejšej\nnajhybridnejší\nnajhybridnejšia\nnajhybridnejšie\nnajhybridnejšieho\nnajhybridnejšiemu\nnajhybridnejších\nnajhybridnejším\nnajhybridnejšími\nnajhybridnejšiu\nnajhybridnejšom\nnajhybridnejšou\nnajhydratačnejšej\nnajhydratačnejší\nnajhydratačnejšia\nnajhydratačnejšie\nnajhydratačnejšieho\nnajhydratačnejšiemu\nnajhydratačnejších\nnajhydratačnejším\nnajhydratačnejšími\nnajhydratačnejšiu\nnajhydratačnejšom\nnajhydratačnejšou\nnajhygienickejšej\nnajhygienickejší\nnajhygienickejšia\nnajhygienickejšie\nnajhygienickejšieho\nnajhygienickejšiemu\nnajhygienickejších\nnajhygienickejším\nnajhygienickejšími\nnajhygienickejšiu\nnajhygienickejšom\nnajhygienickejšou\nnajhygroskopickejšej\nnajhygroskopickejší\nnajhygroskopickejšia\nnajhygroskopickejšie\nnajhygroskopickejšieho\nnajhygroskopickejšiemu\nnajhygroskopickejších\nnajhygroskopickejším\nnajhygroskopickejšími\nnajhygroskopickejšiu\nnajhygroskopickejšom\nnajhygroskopickejšou\nnajhymnickejšej\nnajhymnickejší\nnajhymnickejšia\nnajhymnickejšie\nnajhymnickejšieho\nnajhymnickejšiemu\nnajhymnickejších\nnajhymnickejším\nnajhymnickejšími\nnajhymnickejšiu\nnajhymnickejšom\nnajhymnickejšou\nnajhypochondrickejšej\nnajhypochondrickejší\nnajhypochondrickejšia\nnajhypochondrickejšie\nnajhypochondrickejšieho\nnajhypochondrickejšiemu\nnajhypochondrickejších\nnajhypochondrickejším\nnajhypochondrickejšími\nnajhypochondrickejšiu\nnajhypochondrickejšom\nnajhypochondrickejšou\nnajhypotetickejšie\nnajhýrivejšej\nnajhýrivejší\nnajhýrivejšia\nnajhýrivejšie\nnajhýrivejšieho\nnajhýrivejšiemu\nnajhýrivejších\nnajhýrivejším\nnajhýrivejšími\nnajhýrivejšiu\nnajhýrivejšom\nnajhýrivejšou\nnajhysterickejšej\nnajhysterickejší\nnajhysterickejšia\nnajhysterickejšie\nnajhysterickejšieho\nnajhysterickejšiemu\nnajhysterickejších\nnajhysterickejším\nnajhysterickejšími\nnajhysterickejšiu\nnajhysterickejšom\nnajhysterickejšou\nnajchabejšej\nnajchabejší\nnajchabejšia\nnajchabejšie\nnajchabejšieho\nnajchabejšiemu\nnajchabejších\nnajchabejším\nnajchabejšími\nnajchabejšiu\nnajchabejšom\nnajchabejšou\nnajchamtivejšej\nnajchamtivejší\nnajchamtivejšia\nnajchamtivejšie\nnajchamtivejšieho\nnajchamtivejšiemu\nnajchamtivejších\nnajchamtivejším\nnajchamtivejšími\nnajchamtivejšiu\nnajchamtivejšom\nnajchamtivejšou\nnajchaotickejšej\nnajchaotickejší\nnajchaotickejšia\nnajchaotickejšie\nnajchaotickejšieho\nnajchaotickejšiemu\nnajchaotickejších\nnajchaotickejším\nnajchaotickejšími\nnajchaotickejšiu\nnajchaotickejšom\nnajchaotickejšou\nnajchápavejšej\nnajchápavejší\nnajchápavejšia\nnajchápavejšie\nnajchápavejšieho\nnajchápavejšiemu\nnajchápavejších\nnajchápavejším\nnajchápavejšími\nnajchápavejšiu\nnajchápavejšom\nnajchápavejšou\nnajcharakteristickejšej\nnajcharakteristickejší\nnajcharakteristickejšia\nnajcharakteristickejšie\nnajcharakteristickejšieho\nnajcharakteristickejšiemu\nnajcharakteristickejších\nnajcharakteristickejším\nnajcharakteristickejšími\nnajcharakteristickejšiu\nnajcharakteristickejšom\nnajcharakteristickejšou\nnajcharakternejšej\nnajcharakternejší\nnajcharakternejšia\nnajcharakternejšie\nnajcharakternejšieho\nnajcharakternejšiemu\nnajcharakternejších\nnajcharakternejším\nnajcharakternejšími\nnajcharakternejšiu\nnajcharakternejšom\nnajcharakternejšou\nnajcharakterovejšej\nnajcharakterovejší\nnajcharakterovejšia\nnajcharakterovejšie\nnajcharakterovejšieho\nnajcharakterovejšiemu\nnajcharakterovejších\nnajcharakterovejším\nnajcharakterovejšími\nnajcharakterovejšiu\nnajcharakterovejšom\nnajcharakterovejšou\nnajcharitatívnejšej\nnajcharitatívnejší\nnajcharitatívnejšia\nnajcharitatívnejšie\nnajcharitatívnejšieho\nnajcharitatívnejšiemu\nnajcharitatívnejších\nnajcharitatívnejším\nnajcharitatívnejšími\nnajcharitatívnejšiu\nnajcharitatívnejšom\nnajcharitatívnejšou\nnajcharizmatickejšej\nnajcharizmatickejší\nnajcharizmatickejšia\nnajcharizmatickejšie\nnajcharizmatickejšieho\nnajcharizmatickejšiemu\nnajcharizmatickejších\nnajcharizmatickejším\nnajcharizmatickejšími\nnajcharizmatickejšiu\nnajcharizmatickejšom\nnajcharizmatickejšou\nnajchatrnejšej\nnajchatrnejší\nnajchatrnejšia\nnajchatrnejšie\nnajchatrnejšieho\nnajchatrnejšiemu\nnajchatrnejších\nnajchatrnejším\nnajchatrnejšími\nnajchatrnejšiu\nnajchatrnejšom\nnajchatrnejšou\nnajchichotavejšej\nnajchichotavejší\nnajchichotavejšia\nnajchichotavejšie\nnajchichotavejšieho\nnajchichotavejšiemu\nnajchichotavejších\nnajchichotavejším\nnajchichotavejšími\nnajchichotavejšiu\nnajchichotavejšom\nnajchichotavejšou\nnajchladivejšej\nnajchladivejší\nnajchladivejšia\nnajchladivejšie\nnajchladivejšieho\nnajchladivejšiemu\nnajchladivejších\nnajchladivejším\nnajchladivejšími\nnajchladivejšiu\nnajchladivejšom\nnajchladivejšou\nnajchladnejšej\nnajchladnejší\nnajchladnejšia\nnajchladnejšie\nNAJCHLADNEJŠIE\nnajchladnejšieho\nnajchladnejšiemu\nnajchladnejších\nnajchladnejším\nnajchladnejšími\nnajchladnejšiu\nnajchladnejšom\nnajchladnejšou\nnajchladnokrvnejšej\nnajchladnokrvnejší\nnajchladnokrvnejšia\nnajchladnokrvnejšie\nnajchladnokrvnejšieho\nnajchladnokrvnejšiemu\nnajchladnokrvnejších\nnajchladnokrvnejším\nnajchladnokrvnejšími\nnajchladnokrvnejšiu\nnajchladnokrvnejšom\nnajchladnokrvnejšou\nnajchlácholivejšej\nnajchlácholivejší\nnajchlácholivejšia\nnajchlácholivejšie\nnajchlácholivejšieho\nnajchlácholivejšiemu\nnajchlácholivejších\nnajchlácholivejším\nnajchlácholivejšími\nnajchlácholivejšiu\nnajchlácholivejšom\nnajchlácholivejšou\nnajchlapčenskejšej\nnajchlapčenskejší\nnajchlapčenskejšia\nnajchlapčenskejšie\nnajchlapčenskejšieho\nnajchlapčenskejšiemu\nnajchlapčenskejších\nnajchlapčenskejším\nnajchlapčenskejšími\nnajchlapčenskejšiu\nnajchlapčenskejšom\nnajchlapčenskejšou\nnajchlapskejšej\nnajchlapskejší\nnajchlapskejšia\nnajchlapskejšie\nnajchlapskejšieho\nnajchlapskejšiemu\nnajchlapskejších\nnajchlapskejším\nnajchlapskejšími\nnajchlapskejšiu\nnajchlapskejšom\nnajchlapskejšou\nnajchlipnejšej\nnajchlipnejší\nnajchlipnejšia\nnajchlipnejšie\nnajchlipnejšieho\nnajchlipnejšiemu\nnajchlipnejších\nnajchlipnejším\nnajchlipnejšími\nnajchlipnejšiu\nnajchlipnejšom\nnajchlipnejšou\nnajchlórovejšej\nnajchlórovejší\nnajchlórovejšia\nnajchlórovejšie\nnajchlórovejšieho\nnajchlórovejšiemu\nnajchlórovejších\nnajchlórovejším\nnajchlórovejšími\nnajchlórovejšiu\nnajchlórovejšom\nnajchlórovejšou\nnajchlpatejšej\nnajchlpatejší\nnajchlpatejšia\nnajchlpatejšie\nnajchlpatejšieho\nnajchlpatejšiemu\nnajchlpatejších\nnajchlpatejším\nnajchlpatejšími\nnajchlpatejšiu\nnajchlpatejšom\nnajchlpatejšou\nnajchmúrnejšej\nnajchmúrnejší\nnajchmúrnejšia\nnajchmúrnejšie\nnajchmúrnejšieho\nnajchmúrnejšiemu\nnajchmúrnejších\nnajchmúrnejším\nnajchmúrnejšími\nnajchmúrnejšiu\nnajchmúrnejšom\nnajchmúrnejšou\nnajchobotnatejšej\nnajchobotnatejší\nnajchobotnatejšia\nnajchobotnatejšie\nnajchobotnatejšieho\nnajchobotnatejšiemu\nnajchobotnatejších\nnajchobotnatejším\nnajchobotnatejšími\nnajchobotnatejšiu\nnajchobotnatejšom\nnajchobotnatejšou\nnajcholerickejšej\nnajcholerickejší\nnajcholerickejšia\nnajcholerickejšie\nnajcholerickejšieho\nnajcholerickejšiemu\nnajcholerickejších\nnajcholerickejším\nnajcholerickejšími\nnajcholerickejšiu\nnajcholerickejšom\nnajcholerickejšou\nnajchorejšej\nnajchorejší\nnajchorejšia\nnajchorejšie\nnajchorejšieho\nnajchorejšiemu\nnajchorejších\nnajchorejším\nnajchorejšími\nnajchorejšiu\nnajchorejšom\nnajchorejšou\nnajchorľavejšej\nnajchorľavejší\nnajchorľavejšia\nnajchorľavejšie\nnajchorľavejšieho\nnajchorľavejšiemu\nnajchorľavejších\nnajchorľavejším\nnajchorľavejšími\nnajchorľavejšiu\nnajchorľavejšom\nnajchorľavejšou\nnajchorobnejšej\nnajchorobnejší\nnajchorobnejšia\nnajchorobnejšie\nnajchorobnejšieho\nnajchorobnejšiemu\nnajchorobnejších\nnajchorobnejším\nnajchorobnejšími\nnajchorobnejšiu\nnajchorobnejšom\nnajchorobnejšou\nnajchoromyseľnejšej\nnajchoromyseľnejší\nnajchoromyseľnejšia\nnajchoromyseľnejšie\nnajchoromyseľnejšieho\nnajchoromyseľnejšiemu\nnajchoromyseľnejších\nnajchoromyseľnejším\nnajchoromyseľnejšími\nnajchoromyseľnejšiu\nnajchoromyseľnejšom\nnajchoromyseľnejšou\nnajchrabrejšej\nnajchrabrejší\nnajchrabrejšia\nnajchrabrejšie\nnajchrabrejšieho\nnajchrabrejšiemu\nnajchrabrejších\nnajchrabrejším\nnajchrabrejšími\nnajchrabrejšiu\nnajchrabrejšom\nnajchrabrejšou\nnajchrapľavejšej\nnajchrapľavejší\nnajchrapľavejšia\nnajchrapľavejšie\nnajchrapľavejšieho\nnajchrapľavejšiemu\nnajchrapľavejších\nnajchrapľavejším\nnajchrapľavejšími\nnajchrapľavejšiu\nnajchrapľavejšom\nnajchrapľavejšou\nnajchraptivejšej\nnajchraptivejší\nnajchraptivejšia\nnajchraptivejšie\nnajchraptivejšieho\nnajchraptivejšiemu\nnajchraptivejších\nnajchraptivejším\nnajchraptivejšími\nnajchraptivejšiu\nnajchraptivejšom\nnajchraptivejšou\nnajchrapúnskejšej\nnajchrapúnskejší\nnajchrapúnskejšia\nnajchrapúnskejšie\nnajchrapúnskejšieho\nnajchrapúnskejšiemu\nnajchrapúnskejších\nnajchrapúnskejším\nnajchrapúnskejšími\nnajchrapúnskejšiu\nnajchrapúnskejšom\nnajchrapúnskejšou\nnajchrastavejšej\nnajchrastavejší\nnajchrastavejšia\nnajchrastavejšie\nnajchrastavejšieho\nnajchrastavejšiemu\nnajchrastavejších\nnajchrastavejším\nnajchrastavejšími\nnajchrastavejšiu\nnajchrastavejšom\nnajchrastavejšou\nnajchrastovitejšej\nnajchrastovitejší\nnajchrastovitejšia\nnajchrastovitejšie\nnajchrastovitejšieho\nnajchrastovitejšiemu\nnajchrastovitejších\nnajchrastovitejším\nnajchrastovitejšími\nnajchrastovitejšiu\nnajchrastovitejšom\nnajchrastovitejšou\nnajchrčivejšej\nnajchrčivejší\nnajchrčivejšia\nnajchrčivejšie\nnajchrčivejšieho\nnajchrčivejšiemu\nnajchrčivejších\nnajchrčivejším\nnajchrčivejšími\nnajchrčivejšiu\nnajchrčivejšom\nnajchrčivejšou\nnajchripľavejšej\nnajchripľavejší\nnajchripľavejšia\nnajchripľavejšie\nnajchripľavejšieho\nnajchripľavejšiemu\nnajchripľavejších\nnajchripľavejším\nnajchripľavejšími\nnajchripľavejšiu\nnajchripľavejšom\nnajchripľavejšou\nnajchrochtavejšej\nnajchrochtavejší\nnajchrochtavejšia\nnajchrochtavejšie\nnajchrochtavejšieho\nnajchrochtavejšiemu\nnajchrochtavejších\nnajchrochtavejším\nnajchrochtavejšími\nnajchrochtavejšiu\nnajchrochtavejšom\nnajchrochtavejšou\nnajchromejšej\nnajchromejší\nnajchromejšia\nnajchromejšie\nnajchromejšieho\nnajchromejšiemu\nnajchromejších\nnajchromejším\nnajchromejšími\nnajchromejšiu\nnajchromejšom\nnajchromejšou\nnajchronickejšej\nnajchronickejší\nnajchronickejšia\nnajchronickejšie\nnajchronickejšieho\nnajchronickejšiemu\nnajchronickejších\nnajchronickejším\nnajchronickejšími\nnajchronickejšiu\nnajchronickejšom\nnajchronickejšou\nnajchrumkavejšej\nnajchrumkavejší\nnajchrumkavejšia\nnajchrumkavejšie\nnajchrumkavejšieho\nnajchrumkavejšiemu\nnajchrumkavejších\nnajchrumkavejším\nnajchrumkavejšími\nnajchrumkavejšiu\nnajchrumkavejšom\nnajchrumkavejšou\nnajchrupkavejšej\nnajchrupkavejší\nnajchrupkavejšia\nnajchrupkavejšie\nnajchrupkavejšieho\nnajchrupkavejšiemu\nnajchrupkavejších\nnajchrupkavejším\nnajchrupkavejšími\nnajchrupkavejšiu\nnajchrupkavejšom\nnajchrupkavejšou\nnajchrupkovitejšej\nnajchrupkovitejší\nnajchrupkovitejšia\nnajchrupkovitejšie\nnajchrupkovitejšieho\nnajchrupkovitejšiemu\nnajchrupkovitejších\nnajchrupkovitejším\nnajchrupkovitejšími\nnajchrupkovitejšiu\nnajchrupkovitejšom\nnajchrupkovitejšou\nnajchtivejšej\nnajchtivejší\nnajchtivejšia\nnajchtivejšie\nnajchtivejšieho\nnajchtivejšiemu\nnajchtivejších\nnajchtivejším\nnajchtivejšími\nnajchtivejšiu\nnajchtivejšom\nnajchtivejšou\nnajchudorľavejšej\nnajchudorľavejší\nnajchudorľavejšia\nnajchudorľavejšie\nnajchudorľavejšieho\nnajchudorľavejšiemu\nnajchudorľavejších\nnajchudorľavejším\nnajchudorľavejšími\nnajchudorľavejšiu\nnajchudorľavejšom\nnajchudorľavejšou\nnajchudšej\nnajchudší\nnajchudšia\nnajchudšie\nnajchudšieho\nnajchudšiemu\nnajchudších\nnajchudším\nnajchudšími\nnajchudšiu\nnajchudšom\nnajchudšou\nnajchuligánskejšej\nnajchuligánskejší\nnajchuligánskejšia\nnajchuligánskejšie\nnajchuligánskejšieho\nnajchuligánskejšiemu\nnajchuligánskejších\nnajchuligánskejším\nnajchuligánskejšími\nnajchuligánskejšiu\nnajchuligánskejšom\nnajchuligánskejšou\nnajchúlostivejšej\nnajchúlostivejší\nnajchúlostivejšia\nnajchúlostivejšie\nnajchúlostivejšieho\nnajchúlostivejšiemu\nnajchúlostivejších\nnajchúlostivejším\nnajchúlostivejšími\nNajchúlostivejšími\nnajchúlostivejšiu\nnajchúlostivejšom\nnajchúlostivejšou\nnajchutnejšej\nnajchutnejší\nnajchutnejšia\nnajchutnejšie\nnajchutnejšieho\nnajchutnejšiemu\nnajchutnejších\nnajchutnejším\nnajchutnejšími\nnajchutnejšiu\nnajchutnejšom\nnajchutnejšou\nnajchválenkárskejšej\nnajchválenkárskejší\nnajchválenkárskejšia\nnajchválenkárskejšie\nnajchválenkárskejšieho\nnajchválenkárskejšiemu\nnajchválenkárskejších\nnajchválenkárskejším\nnajchválenkárskejšími\nnajchválenkárskejšiu\nnajchválenkárskejšom\nnajchválenkárskejšou\nnajchválitebnejšej\nnajchválitebnejší\nnajchválitebnejšia\nnajchválitebnejšie\nnajchválitebnejšieho\nnajchválitebnejšiemu\nnajchválitebnejších\nnajchválitebnejším\nnajchválitebnejšími\nnajchválitebnejšiu\nnajchválitebnejšom\nnajchválitebnejšou\nnajchvályhodnejšej\nnajchvályhodnejší\nnajchvályhodnejšia\nnajchvályhodnejšie\nnajchvályhodnejšieho\nnajchvályhodnejšiemu\nnajchvályhodnejších\nnajchvályhodnejším\nnajchvályhodnejšími\nnajchvályhodnejšiu\nnajchvályhodnejšom\nnajchvályhodnejšou\nnajchvastavejšej\nnajchvastavejší\nnajchvastavejšia\nnajchvastavejšie\nnajchvastavejšieho\nnajchvastavejšiemu\nnajchvastavejších\nnajchvastavejším\nnajchvastavejšími\nnajchvastavejšiu\nnajchvastavejšom\nnajchvastavejšou\nnajchvastúnskejšej\nnajchvastúnskejší\nnajchvastúnskejšia\nnajchvastúnskejšie\nnajchvastúnskejšieho\nnajchvastúnskejšiemu\nnajchvastúnskejších\nnajchvastúnskejším\nnajchvastúnskejšími\nnajchvastúnskejšiu\nnajchvastúnskejšom\nnajchvastúnskejšou\nnajchvatnejšej\nnajchvatnejší\nnajchvatnejšia\nnajchvatnejšie\nnajchvatnejšieho\nnajchvatnejšiemu\nnajchvatnejších\nnajchvatnejším\nnajchvatnejšími\nnajchvatnejšiu\nnajchvatnejšom\nnajchvatnejšou\nnajchvíľkovejšej\nnajchvíľkovejší\nnajchvíľkovejšia\nnajchvíľkovejšie\nnajchvíľkovejšieho\nnajchvíľkovejšiemu\nnajchvíľkovejších\nnajchvíľkovejším\nnajchvíľkovejšími\nnajchvíľkovejšiu\nnajchvíľkovejšom\nnajchvíľkovejšou\nnajchybnejšej\nnajchybnejší\nnajchybnejšia\nnajchybnejšie\nnajchybnejšieho\nnajchybnejšiemu\nnajchybnejších\nnajchybnejším\nnajchybnejšími\nnajchybnejšiu\nnajchybnejšom\nnajchybnejšou\nnajchýrečnejšej\nnajchýrečnejší\nnajchýrečnejšia\nnajchýrečnejšie\nnajchýrečnejšieho\nnajchýrečnejšiemu\nnajchýrečnejších\nnajchýrečnejším\nnajchýrečnejšími\nnajchýrečnejšiu\nnajchýrečnejšom\nnajchýrečnejšou\nnajchýrnejšej\nnajchýrnejší\nnajchýrnejšia\nnajchýrnejšie\nnajchýrnejšieho\nnajchýrnejšiemu\nnajchýrnejších\nnajchýrnejším\nnajchýrnejšími\nnajchýrnejšiu\nnajchýrnejšom\nnajchýrnejšou\nnajchytľavejšej\nnajchytľavejší\nnajchytľavejšia\nnajchytľavejšie\nnajchytľavejšieho\nnajchytľavejšiemu\nnajchytľavejších\nnajchytľavejším\nnajchytľavejšími\nnajchytľavejšiu\nnajchytľavejšom\nnajchytľavejšou\nnajchytráckejšej\nnajchytráckejší\nnajchytráckejšia\nnajchytráckejšie\nnajchytráckejšieho\nnajchytráckejšiemu\nnajchytráckejších\nnajchytráckejším\nnajchytráckejšími\nnajchytráckejšiu\nnajchytráckejšom\nnajchytráckejšou\nnajchytrejšej\nnajchytrejší\nnajchytrejšia\nnajchytrejšie\nnajchytrejšieho\nnajchytrejšiemu\nnajchytrejších\nnajchytrejším\nnajchytrejšími\nnajchytrejšiu\nnajchytrejšom\nnajchytrejšou\nnajideálnejšej\nnajideálnejší\nnajideálnejšia\nnajideálnejšie\nnajideálnejšieho\nnajideálnejšiemu\nnajideálnejších\nnajideálnejším\nnajideálnejšími\nnajideálnejšiu\nnajideálnejšom\nnajideálnejšou\nnajidentickejšej\nnajidentickejší\nnajidentickejšia\nnajidentickejšie\nnajidentickejšieho\nnajidentickejšiemu\nnajidentickejších\nnajidentickejším\nnajidentickejšími\nnajidentickejšiu\nnajidentickejšom\nnajidentickejšou\nnajideologickejšej\nnajideologickejší\nnajideologickejšia\nnajideologickejšie\nnajideologickejšieho\nnajideologickejšiemu\nnajideologickejších\nnajideologickejším\nnajideologickejšími\nnajideologickejšiu\nnajideologickejšom\nnajideologickejšou\nnajidylickejšej\nnajidylickejší\nnajidylickejšia\nnajidylickejšie\nnajidylickejšieho\nnajidylickejšiemu\nnajidylickejších\nnajidylickejším\nnajidylickejšími\nnajidylickejšiu\nnajidylickejšom\nnajidylickejšou\nnajignorantskejšej\nnajignorantskejší\nnajignorantskejšia\nnajignorantskejšie\nnajignorantskejšieho\nnajignorantskejšiemu\nnajignorantskejších\nnajignorantskejším\nnajignorantskejšími\nnajignorantskejšiu\nnajignorantskejšom\nnajignorantskejšou\nnajihlanovitejšej\nnajihlanovitejší\nnajihlanovitejšia\nnajihlanovitejšie\nnajihlanovitejšieho\nnajihlanovitejšiemu\nnajihlanovitejších\nnajihlanovitejším\nnajihlanovitejšími\nnajihlanovitejšiu\nnajihlanovitejšom\nnajihlanovitejšou\nnajihlicovitejšej\nnajihlicovitejší\nnajihlicovitejšia\nnajihlicovitejšie\nnajihlicovitejšieho\nnajihlicovitejšiemu\nnajihlicovitejších\nnajihlicovitejším\nnajihlicovitejšími\nnajihlicovitejšiu\nnajihlicovitejšom\nnajihlicovitejšou\nnajihličkovitejšej\nnajihličkovitejší\nnajihličkovitejšia\nnajihličkovitejšie\nnajihličkovitejšieho\nnajihličkovitejšiemu\nnajihličkovitejších\nnajihličkovitejším\nnajihličkovitejšími\nnajihličkovitejšiu\nnajihličkovitejšom\nnajihličkovitejšou\nnajihravejšej\nnajihravejší\nnajihravejšia\nnajihravejšie\nnajihravejšieho\nnajihravejšiemu\nnajihravejších\nnajihravejším\nnajihravejšími\nnajihravejšiu\nnajihravejšom\nnajihravejšou\nnajílovitejšej\nnajílovitejší\nnajílovitejšia\nnajílovitejšie\nnajílovitejšieho\nnajílovitejšiemu\nnajílovitejších\nnajílovitejším\nnajílovitejšími\nnajílovitejšiu\nnajílovitejšom\nnajílovitejšou\nnajilustratívnejšej\nnajilustratívnejší\nnajilustratívnejšia\nnajilustratívnejšie\nnajilustratívnejšieho\nnajilustratívnejšiemu\nnajilustratívnejších\nnajilustratívnejším\nnajilustratívnejšími\nnajilustratívnejšiu\nnajilustratívnejšom\nnajilustratívnejšou\nnajiluzívnejšie\nnajiluzórnejšej\nnajiluzórnejší\nnajiluzórnejšia\nnajiluzórnejšie\nnajiluzórnejšieho\nnajiluzórnejšiemu\nnajiluzórnejších\nnajiluzórnejším\nnajiluzórnejšími\nnajiluzórnejšiu\nnajiluzórnejšom\nnajiluzórnejšou\nnajimaginárnejšej\nnajimaginárnejší\nnajimaginárnejšia\nnajimaginárnejšie\nnajimaginárnejšieho\nnajimaginárnejšiemu\nnajimaginárnejších\nnajimaginárnejším\nnajimaginárnejšími\nnajimaginárnejšiu\nnajimaginárnejšom\nnajimaginárnejšou\nnajímania\nnajímanie\nnajímaním\nnajímaniu\nnajímaný\nnajímateľ\nnajímateľa\nNajímatelia\nnajímateľmi\nnajímateľom\nnajímateľov\nnajímať\nnajimperatívnejšej\nnajimperatívnejší\nnajimperatívnejšia\nnajimperatívnejšie\nnajimperatívnejšieho\nnajimperatívnejšiemu\nnajimperatívnejších\nnajimperatívnejším\nnajimperatívnejšími\nnajimperatívnejšiu\nnajimperatívnejšom\nnajimperatívnejšou\nnajimperialistickejšej\nnajimperialistickejší\nnajimperialistickejšia\nnajimperialistickejšie\nnajimperialistickejšieho\nnajimperialistickejšiemu\nnajimperialistickejších\nnajimperialistickejším\nnajimperialistickejšími\nnajimperialistickejšiu\nnajimperialistickejšom\nnajimperialistickejšou\nnajimpertinentnejšej\nnajimpertinentnejší\nnajimpertinentnejšia\nnajimpertinentnejšie\nnajimpertinentnejšieho\nnajimpertinentnejšiemu\nnajimpertinentnejších\nnajimpertinentnejším\nnajimpertinentnejšími\nnajimpertinentnejšiu\nnajimpertinentnejšom\nnajimpertinentnejšou\nnajimpozantnejšej\nnajimpozantnejší\nnajimpozantnejšia\nnajimpozantnejšie\nnajimpozantnejšieho\nnajimpozantnejšiemu\nnajimpozantnejších\nnajimpozantnejším\nnajimpozantnejšími\nnajimpozantnejšiu\nnajimpozantnejšom\nnajimpozantnejšou\nnajimpresionistickejšej\nnajimpresionistickejší\nnajimpresionistickejšia\nnajimpresionistickejšie\nnajimpresionistickejšieho\nnajimpresionistickejšiemu\nnajimpresionistickejších\nnajimpresionistickejším\nnajimpresionistickejšími\nnajimpresionistickejšiu\nnajimpresionistickejšom\nnajimpresionistickejšou\nNajimpresívnejší\nnajimpulzívnejšej\nnajimpulzívnejší\nnajimpulzívnejšia\nnajimpulzívnejšie\nnajimpulzívnejšieho\nnajimpulzívnejšiemu\nnajimpulzívnejších\nnajimpulzívnejším\nnajimpulzívnejšími\nnajimpulzívnejšiu\nnajimpulzívnejšom\nnajimpulzívnejšou\nnajimúnnejšie\nnajindickejšej\nnajindickejší\nnajindickejšia\nnajindickejšie\nnajindickejšieho\nnajindickejšiemu\nnajindickejších\nnajindickejším\nnajindickejšími\nnajindickejšiu\nnajindickejšom\nnajindickejšou\nnajindiferentnejšej\nnajindiferentnejší\nnajindiferentnejšia\nnajindiferentnejšie\nnajindiferentnejšieho\nnajindiferentnejšiemu\nnajindiferentnejších\nnajindiferentnejším\nnajindiferentnejšími\nnajindiferentnejšiu\nnajindiferentnejšom\nnajindiferentnejšou\nnajindiskrétnejšej\nnajindiskrétnejší\nnajindiskrétnejšia\nnajindiskrétnejšie\nnajindiskrétnejšieho\nnajindiskrétnejšiemu\nnajindiskrétnejších\nnajindiskrétnejším\nnajindiskrétnejšími\nnajindiskrétnejšiu\nnajindiskrétnejšom\nnajindiskrétnejšou\nnajindisponovanejšej\nnajindisponovanejší\nnajindisponovanejšia\nnajindisponovanejšie\nnajindisponovanejšieho\nnajindisponovanejšiemu\nnajindisponovanejších\nnajindisponovanejším\nnajindisponovanejšími\nnajindisponovanejšiu\nnajindisponovanejšom\nnajindisponovanejšou\nnajindividualistickejšej\nnajindividualistickejší\nnajindividualistickejšia\nnajindividualistickejšie\nnajindividualistickejšieho\nnajindividualistickejšiemu\nnajindividualistickejších\nnajindividualistickejším\nnajindividualistickejšími\nnajindividualistickejšiu\nnajindividualistickejšom\nnajindividualistickejšou\nnajindividuálnejšej\nnajindividuálnejší\nnajindividuálnejšia\nnajindividuálnejšie\nnajindividuálnejšieho\nnajindividuálnejšiemu\nnajindividuálnejších\nnajindividuálnejším\nnajindividuálnejšími\nnajindividuálnejšiu\nnajindividuálnejšom\nnajindividuálnejšou\nnajindustriálnejšej\nnajindustriálnejší\nnajindustriálnejšia\nnajindustriálnejšie\nnajindustriálnejšieho\nnajindustriálnejšiemu\nnajindustriálnejších\nnajindustriálnejším\nnajindustriálnejšími\nnajindustriálnejšiu\nnajindustriálnejšom\nnajindustriálnejšou\nnajinfantilnejšej\nnajinfantilnejší\nnajinfantilnejšia\nnajinfantilnejšie\nnajinfantilnejšieho\nnajinfantilnejšiemu\nnajinfantilnejších\nnajinfantilnejším\nnajinfantilnejšími\nnajinfantilnejšiu\nnajinfantilnejšom\nnajinfantilnejšou\nnajinfekčnejšej\nnajinfekčnejší\nnajinfekčnejšia\nnajinfekčnejšie\nnajinfekčnejšieho\nnajinfekčnejšiemu\nnajinfekčnejších\nnajinfekčnejším\nnajinfekčnejšími\nnajinfekčnejšiu\nnajinfekčnejšom\nnajinfekčnejšou\nnajinformovanejšej\nnajinformovanejší\nnajinformovanejšia\nnajinformovanejšie\nnajinformovanejšieho\nnajinformovanejšiemu\nnajinformovanejších\nnajinformovanejším\nnajinformovanejšími\nnajinformovanejšiu\nnajinformovanejšom\nnajinformovanejšou\nnajiniciatívnejšej\nnajiniciatívnejší\nnajiniciatívnejšia\nnajiniciatívnejšie\nnajiniciatívnejšieho\nnajiniciatívnejšiemu\nnajiniciatívnejších\nnajiniciatívnejším\nNajiniciatívnejším\nnajiniciatívnejšími\nnajiniciatívnejšiu\nnajiniciatívnejšom\nnajiniciatívnejšou\nnajinkvizítorskejšej\nnajinkvizítorskejší\nnajinkvizítorskejšia\nnajinkvizítorskejšie\nnajinkvizítorskejšieho\nnajinkvizítorskejšiemu\nnajinkvizítorskejších\nnajinkvizítorskejším\nnajinkvizítorskejšími\nnajinkvizítorskejšiu\nnajinkvizítorskejšom\nnajinkvizítorskejšou\nnajinovačnejšej\nnajinovačnejší\nnajinovačnejšia\nnajinovačnejšie\nnajinovačnejšieho\nnajinovačnejšiemu\nnajinovačnejších\nnajinovačnejším\nnajinovačnejšími\nnajinovačnejšiu\nnajinovačnejšom\nnajinovačnejšou\nnajinsitnejšej\nnajinsitnejší\nnajinsitnejšia\nnajinsitnejšie\nnajinsitnejšieho\nnajinsitnejšiemu\nnajinsitnejších\nnajinsitnejším\nnajinsitnejšími\nnajinsitnejšiu\nnajinsitnejšom\nnajinsitnejšou\nnajinsolventnejšej\nnajinsolventnejší\nnajinsolventnejšia\nnajinsolventnejšie\nnajinsolventnejšieho\nnajinsolventnejšiemu\nnajinsolventnejších\nnajinsolventnejším\nnajinsolventnejšími\nnajinsolventnejšiu\nnajinsolventnejšom\nnajinsolventnejšou\nnajinstantnejšej\nnajinstantnejší\nnajinstantnejšia\nnajinstantnejšie\nnajinstantnejšieho\nnajinstantnejšiemu\nnajinstantnejších\nnajinstantnejším\nnajinstantnejšími\nnajinstantnejšiu\nnajinstantnejšom\nnajinstantnejšou\nnajinšpiratívnejšej\nnajinšpiratívnejší\nnajinšpiratívnejšia\nnajinšpiratívnejšie\nnajinšpiratívnejšieho\nnajinšpiratívnejšiemu\nnajinšpiratívnejších\nnajinšpiratívnejším\nnajinšpiratívnejšími\nnajinšpiratívnejšiu\nnajinšpiratívnejšom\nnajinšpiratívnejšou\nnajinštinktívnejšie\nnajinštruktážnejšej\nnajinštruktážnejší\nnajinštruktážnejšia\nnajinštruktážnejšie\nnajinštruktážnejšieho\nnajinštruktážnejšiemu\nnajinštruktážnejších\nnajinštruktážnejším\nnajinštruktážnejšími\nnajinštruktážnejšiu\nnajinštruktážnejšom\nnajinštruktážnejšou\nnajinštruktívnejšej\nnajinštruktívnejší\nnajinštruktívnejšia\nnajinštruktívnejšie\nnajinštruktívnejšieho\nnajinštruktívnejšiemu\nnajinštruktívnejších\nnajinštruktívnejším\nnajinštruktívnejšími\nnajinštruktívnejšiu\nnajinštruktívnejšom\nnajinštruktívnejšou\nnajintegrálnejšej\nnajintegrálnejší\nnajintegrálnejšia\nnajintegrálnejšie\nnajintegrálnejšieho\nnajintegrálnejšiemu\nnajintegrálnejších\nnajintegrálnejším\nnajintegrálnejšími\nnajintegrálnejšiu\nnajintegrálnejšom\nnajintegrálnejšou\nnajintegrovanejšej\nnajintegrovanejší\nnajintegrovanejšia\nnajintegrovanejšie\nnajintegrovanejšieho\nnajintegrovanejšiemu\nnajintegrovanejších\nnajintegrovanejším\nnajintegrovanejšími\nnajintegrovanejšiu\nnajintegrovanejšom\nnajintegrovanejšou\nnajintelektuálnejšej\nnajintelektuálnejší\nnajintelektuálnejšia\nnajintelektuálnejšie\nnajintelektuálnejšieho\nnajintelektuálnejšiemu\nnajintelektuálnejších\nnajintelektuálnejším\nnajintelektuálnejšími\nnajintelektuálnejšiu\nnajintelektuálnejšom\nnajintelektuálnejšou\nnajintelektuálskejšej\nnajintelektuálskejší\nnajintelektuálskejšia\nnajintelektuálskejšie\nnajintelektuálskejšieho\nnajintelektuálskejšiemu\nnajintelektuálskejších\nnajintelektuálskejším\nnajintelektuálskejšími\nnajintelektuálskejšiu\nnajintelektuálskejšom\nnajintelektuálskejšou\nnajintencionálnejšej\nnajintencionálnejší\nnajintencionálnejšia\nnajintencionálnejšie\nnajintencionálnejšieho\nnajintencionálnejšiemu\nnajintencionálnejších\nnajintencionálnejším\nnajintencionálnejšími\nnajintencionálnejšiu\nnajintencionálnejšom\nnajintencionálnejšou\nnajintenzívnejšej\nnajintenzívnejší\nnajintenzívnejšia\nnajintenzívnejšie\nnajintenzívnejšieho\nnajintenzívnejšiemu\nnajintenzívnejších\nnajintenzívnejším\nnajintenzívnejšími\nnajintenzívnejšiu\nnajintenzívnejšom\nnajintenzívnejšou\nnajinteresantnejšej\nnajinteresantnejší\nnajinteresantnejšia\nnajinteresantnejšie\nnajinteresantnejšieho\nnajinteresantnejšiemu\nnajinteresantnejších\nnajinteresantnejším\nnajinteresantnejšími\nnajinteresantnejšiu\nnajinteresantnejšom\nnajinteresantnejšou\nnajinternacionalistickejšej\nnajinternacionalistickejší\nnajinternacionalistickejšia\nnajinternacionalistickejšie\nnajinternacionalistickejšieho\nnajinternacionalistickejšiemu\nnajinternacionalistickejších\nnajinternacionalistickejším\nnajinternacionalistickejšími\nnajinternacionalistickejšiu\nnajinternacionalistickejšom\nnajinternacionalistickejšou\nnajinternacionálnejšie\nnajintímnejšej\nnajintímnejší\nnajintímnejšia\nnajintímnejšie\nnajintímnejšieho\nnajintímnejšiemu\nnajintímnejších\nnajintímnejším\nnajintímnejšími\nnajintímnejšiu\nnajintímnejšom\nnajintímnejšou\nnajintrigánskejšej\nnajintrigánskejší\nnajintrigánskejšia\nnajintrigánskejšie\nnajintrigánskejšieho\nnajintrigánskejšiemu\nnajintrigánskejších\nnajintrigánskejším\nnajintrigánskejšími\nnajintrigánskejšiu\nnajintrigánskejšom\nnajintrigánskejšou\nnajintrovertnejšej\nnajintrovertnejší\nnajintrovertnejšia\nnajintrovertnejšie\nnajintrovertnejšieho\nnajintrovertnejšiemu\nnajintrovertnejších\nnajintrovertnejším\nnajintrovertnejšími\nnajintrovertnejšiu\nnajintrovertnejšom\nnajintrovertnejšou\nnajinváznejšej\nnajinváznejší\nnajinváznejšia\nnajinváznejšie\nnajinváznejšieho\nnajinváznejšiemu\nnajinváznejších\nnajinváznejším\nnajinváznejšími\nnajinváznejšiu\nnajinváznejšom\nnajinváznejšou\nnajinvektívnejšej\nnajinvektívnejší\nnajinvektívnejšia\nnajinvektívnejšie\nnajinvektívnejšieho\nnajinvektívnejšiemu\nnajinvektívnejších\nnajinvektívnejším\nnajinvektívnejšími\nnajinvektívnejšiu\nnajinvektívnejšom\nnajinvektívnejšou\nnajinvenčnejšej\nnajinvenčnejší\nnajinvenčnejšia\nnajinvenčnejšie\nnajinvenčnejšieho\nnajinvenčnejšiemu\nnajinvenčnejších\nnajinvenčnejším\nnajinvenčnejšími\nnajinvenčnejšiu\nnajinvenčnejšom\nnajinvenčnejšou\nnajiracionálnejšej\nnajiracionálnejší\nnajiracionálnejšia\nnajiracionálnejšie\nnajiracionálnejšieho\nnajiracionálnejšiemu\nnajiracionálnejších\nnajiracionálnejším\nnajiracionálnejšími\nnajiracionálnejšiu\nnajiracionálnejšom\nnajiracionálnejšou\nnajireálnejšej\nnajireálnejší\nnajireálnejšia\nnajireálnejšie\nnajireálnejšieho\nnajireálnejšiemu\nnajireálnejších\nnajireálnejším\nnajireálnejšími\nnajireálnejšiu\nnajireálnejšom\nnajireálnejšou\nnajírečitejšej\nnajírečitejší\nnajírečitejšia\nnajírečitejšie\nnajírečitejšieho\nnajírečitejšiemu\nnajírečitejších\nnajírečitejším\nnajírečitejšími\nnajírečitejšiu\nnajírečitejšom\nnajírečitejšou\nnajirelevantnejšej\nnajirelevantnejší\nnajirelevantnejšia\nnajirelevantnejšie\nnajirelevantnejšieho\nnajirelevantnejšiemu\nnajirelevantnejších\nnajirelevantnejším\nnajirelevantnejšími\nnajirelevantnejšiu\nnajirelevantnejšom\nnajirelevantnejšou\nnajírskejšej\nnajírskejší\nnajírskejšia\nnajírskejšie\nnajírskejšieho\nnajírskejšiemu\nnajírskejších\nnajírskejším\nnajírskejšími\nnajírskejšiu\nnajírskejšom\nnajírskejšou\nnajiskrennejšej\nnajiskrennejší\nnajiskrennejšia\nnajiskrennejšie\nnajiskrennejšieho\nnajiskrennejšiemu\nnajiskrennejších\nnajiskrennejším\nnajiskrennejšími\nnajiskrennejšiu\nnajiskrennejšom\nnajiskrennejšou\nnajiskrivejšej\nnajiskrivejší\nnajiskrivejšia\nnajiskrivejšie\nnajiskrivejšieho\nnajiskrivejšiemu\nnajiskrivejších\nnajiskrivejším\nnajiskrivejšími\nnajiskrivejšiu\nnajiskrivejšom\nnajiskrivejšou\nnajislamskejšej\nnajislamskejší\nnajislamskejšia\nnajislamskejšie\nnajislamskejšieho\nnajislamskejšiemu\nnajislamskejších\nnajislamskejším\nnajislamskejšími\nnajislamskejšiu\nnajislamskejšom\nnajislamskejšou\nnajislandskejšej\nnajislandskejší\nnajislandskejšia\nnajislandskejšie\nnajislandskejšieho\nnajislandskejšiemu\nnajislandskejších\nnajislandskejším\nnajislandskejšími\nnajislandskejšiu\nnajislandskejšom\nnajislandskejšou\nnajizolovanejšej\nnajizolovanejší\nnajizolovanejšia\nnajizolovanejšie\nnajizolovanejšieho\nnajizolovanejšiemu\nnajizolovanejších\nnajizolovanejším\nnajizolovanejšími\nnajizolovanejšiu\nnajizolovanejšom\nnajizolovanejšou\nnajjačavejšie\nnajjadrnejšej\nnajjadrnejší\nnajjadrnejšia\nnajjadrnejšie\nnajjadrnejšieho\nnajjadrnejšiemu\nnajjadrnejších\nnajjadrnejším\nnajjadrnejšími\nnajjadrnejšiu\nnajjadrnejšom\nnajjadrnejšou\nnajjadrovitejšej\nnajjadrovitejší\nnajjadrovitejšia\nnajjadrovitejšie\nnajjadrovitejšieho\nnajjadrovitejšiemu\nnajjadrovitejších\nnajjadrovitejším\nnajjadrovitejšími\nnajjadrovitejšiu\nnajjadrovitejšom\nnajjadrovitejšou\nnajjagavejšie\nnajjagotavejšej\nnajjagotavejší\nnajjagotavejšia\nnajjagotavejšie\nnajjagotavejšieho\nnajjagotavejšiemu\nnajjagotavejších\nnajjagotavejším\nnajjagotavejšími\nnajjagotavejšiu\nnajjagotavejšom\nnajjagotavejšou\nnajjachtárskejší\nnajjachtavejšej\nnajjachtavejší\nnajjachtavejšia\nnajjachtavejšie\nnajjachtavejšieho\nnajjachtavejšiemu\nnajjachtavejších\nnajjachtavejším\nnajjachtavejšími\nnajjachtavejšiu\nnajjachtavejšom\nnajjachtavejšou\nnajjalovejšej\nnajjalovejší\nnajjalovejšia\nnajjalovejšie\nnajjalovejšieho\nnajjalovejšiemu\nnajjalovejších\nnajjalovejším\nnajjalovejšími\nnajjalovejšiu\nnajjalovejšom\nnajjalovejšou\nnajjamkavejšej\nnajjamkavejší\nnajjamkavejšia\nnajjamkavejšie\nnajjamkavejšieho\nnajjamkavejšiemu\nnajjamkavejších\nnajjamkavejším\nnajjamkavejšími\nnajjamkavejšiu\nnajjamkavejšom\nnajjamkavejšou\nnajjamkovitejšej\nnajjamkovitejší\nnajjamkovitejšia\nnajjamkovitejšie\nnajjamkovitejšieho\nnajjamkovitejšiemu\nnajjamkovitejších\nnajjamkovitejším\nnajjamkovitejšími\nnajjamkovitejšiu\nnajjamkovitejšom\nnajjamkovitejšou\nnajjamovitejšej\nnajjamovitejší\nnajjamovitejšia\nnajjamovitejšie\nnajjamovitejšieho\nnajjamovitejšiemu\nnajjamovitejších\nnajjamovitejším\nnajjamovitejšími\nnajjamovitejšiu\nnajjamovitejšom\nnajjamovitejšou\nnajjaponskejšej\nnajjaponskejší\nnajjaponskejšia\nnajjaponskejšie\nnajjaponskejšieho\nnajjaponskejšiemu\nnajjaponskejších\nnajjaponskejším\nnajjaponskejšími\nnajjaponskejšiu\nnajjaponskejšom\nnajjaponskejšou\nnajjarabatejšej\nnajjarabatejší\nnajjarabatejšia\nnajjarabatejšie\nnajjarabatejšieho\nnajjarabatejšiemu\nnajjarabatejších\nnajjarabatejším\nnajjarabatejšími\nnajjarabatejšiu\nnajjarabatejšom\nnajjarabatejšou\nnajjarabejšej\nnajjarabejší\nnajjarabejšia\nnajjarabejšie\nnajjarabejšieho\nnajjarabejšiemu\nnajjarabejších\nnajjarabejším\nnajjarabejšími\nnajjarabejšiu\nnajjarabejšom\nnajjarabejšou\nnajjarejšej\nnajjarejší\nnajjarejšia\nnajjarejšie\nnajjarejšieho\nnajjarejšiemu\nnajjarejších\nnajjarejším\nnajjarejšími\nnajjarejšiu\nnajjarejšom\nnajjarejšou\nnajjarnejšej\nnajjarnejší\nnajjarnejšia\nnajjarnejšie\nnajjarnejšieho\nnajjarnejšiemu\nnajjarnejších\nnajjarnejším\nnajjarnejšími\nnajjarnejšiu\nnajjarnejšom\nnajjarnejšou\nnajjasavejšej\nnajjasavejší\nnajjasavejšia\nnajjasavejšie\nnajjasavejšieho\nnajjasavejšiemu\nnajjasavejších\nnajjasavejším\nnajjasavejšími\nnajjasavejšiu\nnajjasavejšom\nnajjasavejšou\nnajjasnejšej\nnajjasnejší\nnajjasnejšia\nNajjasnejšia\nnajjasnejšie\nnajjasnejšieho\nnajjasnejšiemu\nnajjasnejších\nnajjasnejším\nnajjasnejšími\nnajjasnejšiu\nNajjasnejšiu\nnajjasnejšom\nnajjasnejšou\nnajjasnozrakejšej\nnajjasnozrakejší\nnajjasnozrakejšia\nnajjasnozrakejšie\nnajjasnozrakejšieho\nnajjasnozrakejšiemu\nnajjasnozrakejších\nnajjasnozrakejším\nnajjasnozrakejšími\nnajjasnozrakejšiu\nnajjasnozrakejšom\nnajjasnozrakejšou\nnajjasnozrivejšej\nnajjasnozrivejší\nnajjasnozrivejšia\nnajjasnozrivejšie\nnajjasnozrivejšieho\nnajjasnozrivejšiemu\nnajjasnozrivejších\nnajjasnozrivejším\nnajjasnozrivejšími\nnajjasnozrivejšiu\nnajjasnozrivejšom\nnajjasnozrivejšou\nnajjastrivejšej\nnajjastrivejší\nnajjastrivejšia\nnajjastrivejšie\nnajjastrivejšieho\nnajjastrivejšiemu\nnajjastrivejších\nnajjastrivejším\nnajjastrivejšími\nnajjastrivejšiu\nnajjastrivejšom\nnajjastrivejšou\nnajjatrivejšej\nnajjatrivejší\nnajjatrivejšia\nnajjatrivejšie\nnajjatrivejšieho\nnajjatrivejšiemu\nnajjatrivejších\nnajjatrivejším\nnajjatrivejšími\nnajjatrivejšiu\nnajjatrivejšom\nnajjatrivejšou\nnajjazvovitejšej\nnajjazvovitejší\nnajjazvovitejšia\nnajjazvovitejšie\nnajjazvovitejšieho\nnajjazvovitejšiemu\nnajjazvovitejších\nnajjazvovitejším\nnajjazvovitejšími\nnajjazvovitejšiu\nnajjazvovitejšom\nnajjazvovitejšou\nnajjazýčkovitejšej\nnajjazýčkovitejší\nnajjazýčkovitejšia\nnajjazýčkovitejšie\nnajjazýčkovitejšieho\nnajjazýčkovitejšiemu\nnajjazýčkovitejších\nnajjazýčkovitejším\nnajjazýčkovitejšími\nnajjazýčkovitejšiu\nnajjazýčkovitejšom\nnajjazýčkovitejšou\nnajjazyčnatejšej\nnajjazyčnatejší\nnajjazyčnatejšia\nnajjazyčnatejšie\nnajjazyčnatejšieho\nnajjazyčnatejšiemu\nnajjazyčnatejších\nnajjazyčnatejším\nnajjazyčnatejšími\nnajjazyčnatejšiu\nnajjazyčnatejšom\nnajjazyčnatejšou\nnajjazykovitejšej\nnajjazykovitejší\nnajjazykovitejšia\nnajjazykovitejšie\nnajjazykovitejšieho\nnajjazykovitejšiemu\nnajjazykovitejších\nnajjazykovitejším\nnajjazykovitejšími\nnajjazykovitejšiu\nnajjazykovitejšom\nnajjazykovitejšou\nnajjebnutejšej\nnajjebnutejší\nnajjebnutejšia\nnajjebnutejšie\nnajjebnutejšieho\nnajjebnutejšiemu\nnajjebnutejších\nnajjebnutejším\nnajjebnutejšími\nnajjebnutejšiu\nnajjebnutejšom\nnajjebnutejšou\nnajjedinečnejšej\nnajjedinečnejší\nnajjedinečnejšia\nnajjedinečnejšie\nnajjedinečnejšieho\nnajjedinečnejšiemu\nnajjedinečnejších\nnajjedinečnejším\nnajjedinečnejšími\nnajjedinečnejšiu\nnajjedinečnejšom\nnajjedinečnejšou\nnajjedlejšej\nnajjedlejší\nnajjedlejšia\nnajjedlejšie\nnajjedlejšieho\nnajjedlejšiemu\nnajjedlejších\nnajjedlejším\nnajjedlejšími\nnajjedlejšiu\nnajjedlejšom\nnajjedlejšou\nnajjednoliatejšej\nnajjednoliatejší\nnajjednoliatejšia\nnajjednoliatejšie\nnajjednoliatejšieho\nnajjednoliatejšiemu\nnajjednoliatejších\nnajjednoliatejším\nnajjednoliatejšími\nnajjednoliatejšiu\nnajjednoliatejšom\nnajjednoliatejšou\nnajjednotlivejšej\nnajjednotlivejší\nnajjednotlivejšia\nnajjednotlivejšie\nnajjednotlivejšieho\nnajjednotlivejšiemu\nnajjednotlivejších\nnajjednotlivejším\nnajjednotlivejšími\nnajjednotlivejšiu\nnajjednotlivejšom\nnajjednotlivejšou\nnajjednotnejšej\nnajjednotnejší\nnajjednotnejšia\nnajjednotnejšie\nnajjednotnejšieho\nnajjednotnejšiemu\nnajjednotnejších\nnajjednotnejším\nnajjednotnejšími\nnajjednotnejšiu\nnajjednotnejšom\nnajjednotnejšou\nnajjednotriednejšej\nnajjednotriednejší\nnajjednotriednejšia\nnajjednotriednejšie\nnajjednotriednejšieho\nnajjednotriednejšiemu\nnajjednotriednejších\nnajjednotriednejším\nnajjednotriednejšími\nnajjednotriednejšiu\nnajjednotriednejšom\nnajjednotriednejšou\nnajjednotvárnejšej\nnajjednotvárnejší\nnajjednotvárnejšia\nnajjednotvárnejšie\nnajjednotvárnejšieho\nnajjednotvárnejšiemu\nnajjednotvárnejších\nnajjednotvárnejším\nnajjednotvárnejšími\nnajjednotvárnejšiu\nnajjednotvárnejšom\nnajjednotvárnejšou\nnajjednoznačnejšej\nnajjednoznačnejší\nnajjednoznačnejšia\nnajjednoznačnejšie\nnajjednoznačnejšieho\nnajjednoznačnejšiemu\nnajjednoznačnejších\nnajjednoznačnejším\nnajjednoznačnejšími\nnajjednoznačnejšiu\nnajjednoznačnejšom\nnajjednoznačnejšou\nnajjedovatejšej\nnajjedovatejší\nnajjedovatejšia\nnajjedovatejšie\nnajjedovatejšieho\nnajjedovatejšiemu\nnajjedovatejších\nnajjedovatejším\nnajjedovatejšími\nnajjedovatejšiu\nnajjedovatejšom\nnajjedovatejšou\nnajjemnocitnejšej\nnajjemnocitnejší\nnajjemnocitnejšia\nnajjemnocitnejšie\nnajjemnocitnejšieho\nnajjemnocitnejšiemu\nnajjemnocitnejších\nnajjemnocitnejším\nnajjemnocitnejšími\nnajjemnocitnejšiu\nnajjemnocitnejšom\nnajjemnocitnejšou\nnajjemnozrnnejšej\nnajjemnozrnnejší\nnajjemnozrnnejšia\nnajjemnozrnnejšie\nnajjemnozrnnejšieho\nnajjemnozrnnejšiemu\nnajjemnozrnnejších\nnajjemnozrnnejším\nnajjemnozrnnejšími\nnajjemnozrnnejšiu\nnajjemnozrnnejšom\nnajjemnozrnnejšou\nnajjesennejšej\nnajjesennejší\nnajjesennejšia\nnajjesennejšie\nnajjesennejšieho\nnajjesennejšiemu\nnajjesennejších\nnajjesennejším\nnajjesennejšími\nnajjesennejšiu\nnajjesennejšom\nnajjesennejšou\nnajježatejšej\nnajježatejší\nnajježatejšia\nnajježatejšie\nnajježatejšieho\nnajježatejšiemu\nnajježatejších\nnajježatejším\nnajježatejšími\nnajježatejšiu\nnajježatejšom\nnajježatejšou\nnajjudášskejšej\nnajjudášskejší\nnajjudášskejšia\nnajjudášskejšie\nnajjudášskejšieho\nnajjudášskejšiemu\nnajjudášskejších\nnajjudášskejším\nnajjudášskejšími\nnajjudášskejšiu\nnajjudášskejšom\nnajjudášskejšou\nnajjuhovýchodnejšej\nnajjuhovýchodnejší\nnajjuhovýchodnejšia\nnajjuhovýchodnejšie\nnajjuhovýchodnejšieho\nnajjuhovýchodnejšiemu\nnajjuhovýchodnejších\nnajjuhovýchodnejším\nnajjuhovýchodnejšími\nnajjuhovýchodnejšiu\nnajjuhovýchodnejšom\nnajjuhovýchodnejšou\nnajjuhozápadnejšej\nnajjuhozápadnejší\nnajjuhozápadnejšia\nnajjuhozápadnejšie\nnajjuhozápadnejšieho\nnajjuhozápadnejšiemu\nnajjuhozápadnejších\nnajjuhozápadnejším\nnajjuhozápadnejšími\nnajjuhozápadnejšiu\nnajjuhozápadnejšom\nnajjuhozápadnejšou\nnajjunáckejšej\nnajjunáckejší\nnajjunáckejšia\nnajjunáckejšie\nnajjunáckejšieho\nnajjunáckejšiemu\nnajjunáckejších\nnajjunáckejším\nnajjunáckejšími\nnajjunáckejšiu\nnajjunáckejšom\nnajjunáckejšou\nnajkabaretnejšej\nnajkabaretnejší\nnajkabaretnejšia\nnajkabaretnejšie\nnajkabaretnejšieho\nnajkabaretnejšiemu\nnajkabaretnejších\nnajkabaretnejším\nnajkabaretnejšími\nnajkabaretnejšiu\nnajkabaretnejšom\nnajkabaretnejšou\nnajkacírskejšej\nnajkacírskejší\nnajkacírskejšia\nnajkacírskejšie\nnajkacírskejšieho\nnajkacírskejšiemu\nnajkacírskejších\nnajkacírskejším\nnajkacírskejšími\nnajkacírskejšiu\nnajkacírskejšom\nnajkacírskejšou\nnajkajúcnejšej\nnajkajúcnejší\nnajkajúcnejšia\nnajkajúcnejšie\nnajkajúcnejšieho\nnajkajúcnejšiemu\nnajkajúcnejších\nnajkajúcnejším\nnajkajúcnejšími\nnajkajúcnejšiu\nnajkajúcnejšom\nnajkajúcnejšou\nnajkakaovejšej\nnajkakaovejší\nnajkakaovejšia\nnajkakaovejšie\nnajkakaovejšieho\nnajkakaovejšiemu\nnajkakaovejších\nnajkakaovejším\nnajkakaovejšími\nnajkakaovejšiu\nnajkakaovejšom\nnajkakaovejšou\nnajkakofonickejšej\nnajkakofonickejší\nnajkakofonickejšia\nnajkakofonickejšie\nnajkakofonickejšieho\nnajkakofonickejšiemu\nnajkakofonickejších\nnajkakofonickejším\nnajkakofonickejšími\nnajkakofonickejšiu\nnajkakofonickejšom\nnajkakofonickejšou\nnajkaľavnejšej\nnajkaľavnejší\nnajkaľavnejšia\nnajkaľavnejšie\nnajkaľavnejšieho\nnajkaľavnejšiemu\nnajkaľavnejších\nnajkaľavnejším\nnajkaľavnejšími\nnajkaľavnejšiu\nnajkaľavnejšom\nnajkaľavnejšou\nnajkalnejšej\nnajkalnejší\nnajkalnejšia\nnajkalnejšie\nnajkalnejšieho\nnajkalnejšiemu\nnajkalnejších\nnajkalnejším\nnajkalnejšími\nnajkalnejšiu\nnajkalnejšom\nnajkalnejšou\nnajkalorickejšej\nnajkalorickejší\nnajkalorickejšia\nnajkalorickejšie\nnajkalorickejšieho\nnajkalorickejšiemu\nnajkalorickejších\nnajkalorickejším\nnajkalorickejšími\nnajkalorickejšiu\nnajkalorickejšom\nnajkalorickejšou\nnajkalvínskejšej\nnajkalvínskejší\nnajkalvínskejšia\nnajkalvínskejšie\nnajkalvínskejšieho\nnajkalvínskejšiemu\nnajkalvínskejších\nnajkalvínskejším\nnajkalvínskejšími\nnajkalvínskejšiu\nnajkalvínskejšom\nnajkalvínskejšou\nnajkamarátskejšej\nnajkamarátskejší\nnajkamarátskejšia\nnajkamarátskejšie\nnajkamarátskejšieho\nnajkamarátskejšiemu\nnajkamarátskejších\nnajkamarátskejším\nnajkamarátskejšími\nnajkamarátskejšiu\nnajkamarátskejšom\nnajkamarátskejšou\nnajkamennejšej\nnajkamennejší\nnajkamennejšia\nnajkamennejšie\nnajkamennejšieho\nnajkamennejšiemu\nnajkamennejších\nnajkamennejším\nnajkamennejšími\nnajkamennejšiu\nnajkamennejšom\nnajkamennejšou\nnajkamošskejšej\nnajkamošskejší\nnajkamošskejšia\nnajkamošskejšie\nnajkamošskejšieho\nnajkamošskejšiemu\nnajkamošskejších\nnajkamošskejším\nnajkamošskejšími\nnajkamošskejšiu\nnajkamošskejšom\nnajkamošskejšou\nnajkanadskejšej\nnajkanadskejší\nnajkanadskejšia\nnajkanadskejšie\nnajkanadskejšieho\nnajkanadskejšiemu\nnajkanadskejších\nnajkanadskejším\nnajkanadskejšími\nnajkanadskejšiu\nnajkanadskejšom\nnajkanadskejšou\nnajkancerogénnejšej\nnajkancerogénnejší\nnajkancerogénnejšia\nnajkancerogénnejšie\nnajkancerogénnejšieho\nnajkancerogénnejšiemu\nnajkancerogénnejších\nnajkancerogénnejším\nnajkancerogénnejšími\nnajkancerogénnejšiu\nnajkancerogénnejšom\nnajkancerogénnejšou\nnajkantorskejšej\nnajkantorskejší\nnajkantorskejšia\nnajkantorskejšie\nnajkantorskejšieho\nnajkantorskejšiemu\nnajkantorskejších\nnajkantorskejším\nnajkantorskejšími\nnajkantorskejšiu\nnajkantorskejšom\nnajkantorskejšou\nnajkapitalistickejšej\nnajkapitalistickejší\nnajkapitalistickejšia\nnajkapitalistickejšie\nnajkapitalistickejšieho\nnajkapitalistickejšiemu\nnajkapitalistickejších\nnajkapitalistickejším\nnajkapitalistickejšími\nnajkapitalistickejšiu\nnajkapitalistickejšom\nnajkapitalistickejšou\nnajkapitálnejšej\nnajkapitálnejší\nnajkapitálnejšia\nnajkapitálnejšie\nnajkapitálnejšieho\nnajkapitálnejšiemu\nnajkapitálnejších\nnajkapitálnejším\nnajkapitálnejšími\nnajkapitálnejšiu\nnajkapitálnejšom\nnajkapitálnejšou\nnajkapitánskejšej\nnajkapitánskejší\nnajkapitánskejšia\nnajkapitánskejšie\nnajkapitánskejšieho\nnajkapitánskejšiemu\nnajkapitánskejších\nnajkapitánskejším\nnajkapitánskejšími\nnajkapitánskejšiu\nnajkapitánskejšom\nnajkapitánskejšou\nnajkapitulantskejšej\nnajkapitulantskejší\nnajkapitulantskejšia\nnajkapitulantskejšie\nnajkapitulantskejšieho\nnajkapitulantskejšiemu\nnajkapitulantskejších\nnajkapitulantskejším\nnajkapitulantskejšími\nnajkapitulantskejšiu\nnajkapitulantskejšom\nnajkapitulantskejšou\nnajkapustovejšej\nnajkapustovejší\nnajkapustovejšia\nnajkapustovejšie\nnajkapustovejšieho\nnajkapustovejšiemu\nnajkapustovejších\nnajkapustovejším\nnajkapustovejšími\nnajkapustovejšiu\nnajkapustovejšom\nnajkapustovejšou\nnajkapustovitejšej\nnajkapustovitejší\nnajkapustovitejšia\nnajkapustovitejšie\nnajkapustovitejšieho\nnajkapustovitejšiemu\nnajkapustovitejších\nnajkapustovitejším\nnajkapustovitejšími\nnajkapustovitejšiu\nnajkapustovitejšom\nnajkapustovitejšou\nnajkaramelovejšej\nnajkaramelovejší\nnajkaramelovejšia\nnajkaramelovejšie\nnajkaramelovejšieho\nnajkaramelovejšiemu\nnajkaramelovejších\nnajkaramelovejším\nnajkaramelovejšími\nnajkaramelovejšiu\nnajkaramelovejšom\nnajkaramelovejšou\nnajkarcinogénnejšej\nnajkarcinogénnejší\nnajkarcinogénnejšia\nnajkarcinogénnejšie\nnajkarcinogénnejšieho\nnajkarcinogénnejšiemu\nnajkarcinogénnejších\nnajkarcinogénnejším\nnajkarcinogénnejšími\nnajkarcinogénnejšiu\nnajkarcinogénnejšom\nnajkarcinogénnejšou\nnajkardinálnejšej\nnajkardinálnejší\nnajkardinálnejšia\nnajkardinálnejšie\nnajkardinálnejšieho\nnajkardinálnejšiemu\nnajkardinálnejších\nnajkardinálnejším\nnajkardinálnejšími\nnajkardinálnejšiu\nnajkardinálnejšom\nnajkardinálnejšou\nnajkarhavejšej\nnajkarhavejší\nnajkarhavejšia\nnajkarhavejšie\nnajkarhavejšieho\nnajkarhavejšiemu\nnajkarhavejších\nnajkarhavejším\nnajkarhavejšími\nnajkarhavejšiu\nnajkarhavejšom\nnajkarhavejšou\nnajkarieristickejšej\nnajkarieristickejší\nnajkarieristickejšia\nnajkarieristickejšie\nnajkarieristickejšieho\nnajkarieristickejšiemu\nnajkarieristickejších\nnajkarieristickejším\nnajkarieristickejšími\nnajkarieristickejšiu\nnajkarieristickejšom\nnajkarieristickejšou\nnajkarmínovejšej\nnajkarmínovejší\nnajkarmínovejšia\nnajkarmínovejšie\nnajkarmínovejšieho\nnajkarmínovejšiemu\nnajkarmínovejších\nnajkarmínovejším\nnajkarmínovejšími\nnajkarmínovejšiu\nnajkarmínovejšom\nnajkarmínovejšou\nnajkárovanejšej\nnajkárovanejší\nnajkárovanejšia\nnajkárovanejšie\nnajkárovanejšieho\nnajkárovanejšiemu\nnajkárovanejších\nnajkárovanejším\nnajkárovanejšími\nnajkárovanejšiu\nnajkárovanejšom\nnajkárovanejšou\nnajkarpavejšej\nnajkarpavejší\nnajkarpavejšia\nnajkarpavejšie\nnajkarpavejšieho\nnajkarpavejšiemu\nnajkarpavejších\nnajkarpavejším\nnajkarpavejšími\nnajkarpavejšiu\nnajkarpavejšom\nnajkarpavejšou\nnajkaskádovitejšej\nnajkaskádovitejší\nnajkaskádovitejšia\nnajkaskádovitejšie\nnajkaskádovitejšieho\nnajkaskádovitejšiemu\nnajkaskádovitejších\nnajkaskádovitejším\nnajkaskádovitejšími\nnajkaskádovitejšiu\nnajkaskádovitejšom\nnajkaskádovitejšou\nnajkasovejšej\nnajkasovejší\nnajkasovejšia\nnajkasovejšie\nnajkasovejšieho\nnajkasovejšiemu\nnajkasovejších\nnajkasovejším\nnajkasovejšími\nnajkasovejšiu\nnajkasovejšom\nnajkasovejšou\nnajkašovitejšej\nnajkašovitejší\nnajkašovitejšia\nnajkašovitejšie\nnajkašovitejšieho\nnajkašovitejšiemu\nnajkašovitejších\nnajkašovitejším\nnajkašovitejšími\nnajkašovitejšiu\nnajkašovitejšom\nnajkašovitejšou\nnajkatanskejšej\nnajkatanskejší\nnajkatanskejšia\nnajkatanskejšie\nnajkatanskejšieho\nnajkatanskejšiemu\nnajkatanskejších\nnajkatanskejším\nnajkatanskejšími\nnajkatanskejšiu\nnajkatanskejšom\nnajkatanskejšou\nnajkatastrofálnejšej\nnajkatastrofálnejší\nnajkatastrofálnejšia\nNajkatastrofálnejšia\nnajkatastrofálnejšie\nNajkatastrofálnejšie\nnajkatastrofálnejšieho\nnajkatastrofálnejšiemu\nnajkatastrofálnejších\nnajkatastrofálnejším\nnajkatastrofálnejšími\nnajkatastrofálnejšiu\nnajkatastrofálnejšom\nnajkatastrofálnejšou\nnajkatastrofickejšej\nnajkatastrofickejší\nnajkatastrofickejšia\nnajkatastrofickejšie\nnajkatastrofickejšieho\nnajkatastrofickejšiemu\nnajkatastrofickejších\nnajkatastrofickejším\nnajkatastrofickejšími\nnajkatastrofickejšiu\nnajkatastrofickejšom\nnajkatastrofickejšou\nnajkategorickejšej\nnajkategorickejší\nnajkategorickejšia\nnajkategorickejšie\nnajkategorickejšieho\nnajkategorickejšiemu\nnajkategorickejších\nnajkategorickejším\nnajkategorickejšími\nnajkategorickejšiu\nnajkategorickejšom\nnajkategorickejšou\nnajkatolíckejšej\nnajkatolíckejší\nnajkatolíckejšia\nnajkatolíckejšie\nnajkatolíckejšieho\nnajkatolíckejšiemu\nnajkatolíckejších\nnajkatolíckejším\nnajkatolíckejšími\nnajkatolíckejšiu\nnajkatolíckejšom\nnajkatolíckejšou\nnajkávovejšej\nnajkávovejší\nnajkávovejšia\nnajkávovejšie\nnajkávovejšieho\nnajkávovejšiemu\nnajkávovejších\nnajkávovejším\nnajkávovejšími\nnajkávovejšiu\nnajkávovejšom\nnajkávovejšou\nnajkazovejšej\nnajkazovejší\nnajkazovejšia\nnajkazovejšie\nnajkazovejšieho\nnajkazovejšiemu\nnajkazovejších\nnajkazovejším\nnajkazovejšími\nnajkazovejšiu\nnajkazovejšom\nnajkazovejšou\nnajkaždodennejšej\nnajkaždodennejší\nnajkaždodennejšia\nnajkaždodennejšie\nnajkaždodennejšieho\nnajkaždodennejšiemu\nnajkaždodennejších\nnajkaždodennejším\nnajkaždodennejšími\nnajkaždodennejšiu\nnajkaždodennejšom\nnajkaždodennejšou\nnajkladnejšej\nnajkladnejší\nnajkladnejšia\nnajkladnejšie\nnajkladnejšieho\nnajkladnejšiemu\nnajkladnejších\nnajkladnejším\nnajkladnejšími\nnajkladnejšiu\nnajkladnejšom\nnajkladnejšou\nnajklamlivejšej\nnajklamlivejší\nnajklamlivejšia\nnajklamlivejšie\nnajklamlivejšieho\nnajklamlivejšiemu\nnajklamlivejších\nnajklamlivejším\nnajklamlivejšími\nnajklamlivejšio\nnajklamlivejšiu\nnajklamlivejšom\nnajklamlivejšou\nnajklamnejšej\nnajklamnejší\nnajklamnejšia\nnajklamnejšie\nnajklamnejšieho\nnajklamnejšiemu\nnajklamnejších\nnajklamnejším\nnajklamnejšími\nnajklamnejšiu\nnajklamnejšom\nnajklamnejšou\nnajklasickejšej\nnajklasickejší\nnajklasickejšia\nnajklasickejšie\nnajklasickejšieho\nnajklasickejšiemu\nnajklasickejších\nnajklasickejším\nnajklasickejšími\nnajklasickejšiu\nnajklasickejšom\nnajklasickejšou\nnajklasovitejšej\nnajklasovitejší\nnajklasovitejšia\nnajklasovitejšie\nnajklasovitejšieho\nnajklasovitejšiemu\nnajklasovitejších\nnajklasovitejším\nnajklasovitejšími\nnajklasovitejšiu\nnajklasovitejšom\nnajklasovitejšou\nnajklátivejšej\nnajklátivejší\nnajklátivejšia\nnajklátivejšie\nnajklátivejšieho\nnajklátivejšiemu\nnajklátivejších\nnajklátivejším\nnajklátivejšími\nnajklátivejšiu\nnajklátivejšom\nnajklátivejšou\nnajkľavejšej\nnajkľavejší\nnajkľavejšia\nnajkľavejšie\nnajkľavejšieho\nnajkľavejšiemu\nnajkľavejších\nnajkľavejším\nnajkľavejšími\nnajkľavejšiu\nnajkľavejšom\nnajkľavejšou\nnajklebetnejšej\nnajklebetnejší\nnajklebetnejšia\nnajklebetnejšie\nnajklebetnejšieho\nnajklebetnejšiemu\nnajklebetnejších\nnajklebetnejším\nnajklebetnejšími\nnajklebetnejšiu\nnajklebetnejšom\nnajklebetnejšou\nnajklenutejšej\nnajklenutejší\nnajklenutejšia\nnajklenutejšie\nnajklenutejšieho\nnajklenutejšiemu\nnajklenutejších\nnajklenutejším\nnajklenutejšími\nnajklenutejšiu\nnajklenutejšom\nnajklenutejšou\nnajklerikálnejšie\nnajklesavejšej\nnajklesavejší\nnajklesavejšia\nnajklesavejšie\nnajklesavejšieho\nnajklesavejšiemu\nnajklesavejších\nnajklesavejším\nnajklesavejšími\nnajklesavejšiu\nnajklesavejšom\nnajklesavejšou\nnajklíčivejšej\nnajklíčivejší\nnajklíčivejšia\nnajklíčivejšie\nnajklíčivejšieho\nnajklíčivejšiemu\nnajklíčivejších\nnajklíčivejším\nnajklíčivejšími\nnajklíčivejšiu\nnajklíčivejšom\nnajklíčivejšou\nnajklinovitejšej\nnajklinovitejší\nnajklinovitejšia\nnajklinovitejšie\nnajklinovitejšieho\nnajklinovitejšiemu\nnajklinovitejších\nnajklinovitejším\nnajklinovitejšími\nnajklinovitejšiu\nnajklinovitejšom\nnajklinovitejšou\nnajklišéovitejšej\nnajklišéovitejší\nnajklišéovitejšia\nnajklišéovitejšie\nnajklišéovitejšieho\nnajklišéovitejšiemu\nnajklišéovitejších\nnajklišéovitejším\nnajklišéovitejšími\nnajklišéovitejšiu\nnajklišéovitejšom\nnajklišéovitejšou\nnajkľudnejšej\nnajkľudnejší\nnajkľudnejšia\nnajkľudnejšie\nnajkľudnejšieho\nnajkľudnejšiemu\nnajkľudnejších\nnajkľudnejším\nnajkľudnejšími\nnajkľudnejšiu\nnajkľudnejšom\nnajkľudnejšou\nnajkľukatejšej\nnajkľukatejší\nnajkľukatejšia\nnajkľukatejšie\nnajkľukatejšieho\nnajkľukatejšiemu\nnajkľukatejších\nnajkľukatejším\nnajkľukatejšími\nnajkľukatejšiu\nnajkľukatejšom\nnajkľukatejšou\nnajkĺzavejšej\nnajkĺzavejší\nnajkĺzavejšia\nnajkĺzavejšie\nnajkĺzavejšieho\nnajkĺzavejšiemu\nnajkĺzavejších\nnajkĺzavejším\nnajkĺzavejšími\nnajkĺzavejšiu\nnajkĺzavejšom\nnajkĺzavejšou\nnajklzkejšej\nnajklzkejší\nnajklzkejšia\nnajklzkejšie\nnajklzkejšieho\nnajklzkejšiemu\nnajklzkejších\nnajklzkejším\nnajklzkejšími\nnajklzkejšiu\nnajklzkejšom\nnajklzkejšou\nnajkmitavejšej\nnajkmitavejší\nnajkmitavejšia\nnajkmitavejšie\nnajkmitavejšieho\nnajkmitavejšiemu\nnajkmitavejších\nnajkmitavejším\nnajkmitavejšími\nnajkmitavejšiu\nnajkmitavejšom\nnajkmitavejšou\nnajkňazskejšej\nnajkňazskejší\nnajkňazskejšia\nnajkňazskejšie\nnajkňazskejšieho\nnajkňazskejšiemu\nnajkňazskejších\nnajkňazskejším\nnajkňazskejšími\nnajkňazskejšiu\nnajkňazskejšom\nnajkňazskejšou\nnajknísavejšej\nnajknísavejší\nnajknísavejšia\nnajknísavejšie\nnajknísavejšieho\nnajknísavejšiemu\nnajknísavejších\nnajknísavejším\nnajknísavejšími\nnajknísavejšiu\nnajknísavejšom\nnajknísavejšou\nnajknižnejšej\nnajknižnejší\nnajknižnejšia\nnajknižnejšie\nnajknižnejšieho\nnajknižnejšiemu\nnajknižnejších\nnajknižnejším\nnajknižnejšími\nnajknižnejšiu\nnajknižnejšom\nnajknižnejšou\nnajkockovanejšej\nnajkockovanejší\nnajkockovanejšia\nnajkockovanejšie\nnajkockovanejšieho\nnajkockovanejšiemu\nnajkockovanejších\nnajkockovanejším\nnajkockovanejšími\nnajkockovanejšiu\nnajkockovanejšom\nnajkockovanejšou\nnajkocúrkovskejšej\nnajkocúrkovskejší\nnajkocúrkovskejšia\nnajkocúrkovskejšie\nnajkocúrkovskejšieho\nnajkocúrkovskejšiemu\nnajkocúrkovskejších\nnajkocúrkovskejším\nnajkocúrkovskejšími\nnajkocúrkovskejšiu\nnajkocúrkovskejšom\nnajkocúrkovskejšou\nnajkofeínovejšej\nnajkofeínovejší\nnajkofeínovejšia\nnajkofeínovejšie\nnajkofeínovejšieho\nnajkofeínovejšiemu\nnajkofeínovejších\nnajkofeínovejším\nnajkofeínovejšími\nnajkofeínovejšiu\nnajkofeínovejšom\nnajkofeínovejšou\nnajkoketnejšej\nnajkoketnejší\nnajkoketnejšia\nnajkoketnejšie\nnajkoketnejšieho\nnajkoketnejšiemu\nnajkoketnejších\nnajkoketnejším\nnajkoketnejšími\nnajkoketnejšiu\nnajkoketnejšom\nnajkoketnejšou\nnajkokosovejšej\nnajkokosovejší\nnajkokosovejšia\nnajkokosovejšie\nnajkokosovejšieho\nnajkokosovejšiemu\nnajkokosovejších\nnajkokosovejším\nnajkokosovejšími\nnajkokosovejšiu\nnajkokosovejšom\nnajkokosovejšou\nnajkoktavejšej\nnajkoktavejší\nnajkoktavejšia\nnajkoktavejšie\nnajkoktavejšieho\nnajkoktavejšiemu\nnajkoktavejších\nnajkoktavejším\nnajkoktavejšími\nnajkoktavejšiu\nnajkoktavejšom\nnajkoktavejšou\nnajkolegiálnejšej\nnajkolegiálnejší\nnajkolegiálnejšia\nnajkolegiálnejšie\nnajkolegiálnejšieho\nnajkolegiálnejšiemu\nnajkolegiálnejších\nnajkolegiálnejším\nnajkolegiálnejšími\nnajkolegiálnejšiu\nnajkolegiálnejšom\nnajkolegiálnejšou\nnajkolektívnejšej\nnajkolektívnejší\nnajkolektívnejšia\nnajkolektívnejšie\nnajkolektívnejšieho\nnajkolektívnejšiemu\nnajkolektívnejších\nnajkolektívnejším\nnajkolektívnejšími\nnajkolektívnejšiu\nnajkolektívnejšom\nnajkolektívnejšou\nnajkolembavejšej\nnajkolembavejší\nnajkolembavejšia\nnajkolembavejšie\nnajkolembavejšieho\nnajkolembavejšiemu\nnajkolembavejších\nnajkolembavejším\nnajkolembavejšími\nnajkolembavejšiu\nnajkolembavejšom\nnajkolembavejšou\nnajkolísavejšej\nnajkolísavejší\nnajkolísavejšia\nnajkolísavejšie\nnajkolísavejšieho\nnajkolísavejšiemu\nnajkolísavejších\nnajkolísavejším\nnajkolísavejšími\nnajkolísavejšiu\nnajkolísavejšom\nnajkolísavejšou\nnajkolíznejšej\nnajkolíznejší\nnajkolíznejšia\nnajkolíznejšie\nnajkolíznejšieho\nnajkolíznejšiemu\nnajkolíznejších\nnajkolíznejším\nnajkolíznejšími\nnajkolíznejšiu\nnajkolíznejšom\nnajkolíznejšou\nnajkolmejšej\nnajkolmejší\nnajkolmejšia\nnajkolmejšie\nnajkolmejšieho\nnajkolmejšiemu\nnajkolmejších\nnajkolmejším\nnajkolmejšími\nnajkolmejšiu\nnajkolmejšom\nnajkolmejšou\nnajkolonialistickejšej\nnajkolonialistickejší\nnajkolonialistickejšia\nnajkolonialistickejšie\nnajkolonialistickejšieho\nnajkolonialistickejšiemu\nnajkolonialistickejších\nnajkolonialistickejším\nnajkolonialistickejšími\nnajkolonialistickejšiu\nnajkolonialistickejšom\nnajkolonialistickejšou\nnajkoloniálnejšej\nnajkoloniálnejší\nnajkoloniálnejšia\nnajkoloniálnejšie\nnajkoloniálnejšieho\nnajkoloniálnejšiemu\nnajkoloniálnejších\nnajkoloniálnejším\nnajkoloniálnejšími\nnajkoloniálnejšiu\nnajkoloniálnejšom\nnajkoloniálnejšou\nnajkolonizátorskejšej\nnajkolonizátorskejší\nnajkolonizátorskejšia\nnajkolonizátorskejšie\nnajkolonizátorskejšieho\nnajkolonizátorskejšiemu\nnajkolonizátorskejších\nnajkolonizátorskejším\nnajkolonizátorskejšími\nnajkolonizátorskejšiu\nnajkolonizátorskejšom\nnajkolonizátorskejšou\nnajkoloratúrnejšej\nnajkoloratúrnejší\nnajkoloratúrnejšia\nnajkoloratúrnejšie\nnajkoloratúrnejšieho\nnajkoloratúrnejšiemu\nnajkoloratúrnejších\nnajkoloratúrnejším\nnajkoloratúrnejšími\nnajkoloratúrnejšiu\nnajkoloratúrnejšom\nnajkoloratúrnejšou\nnajkolosálnejšej\nnajkolosálnejší\nnajkolosálnejšia\nnajkolosálnejšie\nnajkolosálnejšieho\nnajkolosálnejšiemu\nnajkolosálnejších\nnajkolosálnejším\nnajkolosálnejšími\nnajkolosálnejšiu\nnajkolosálnejšom\nnajkolosálnejšou\nnajkombinovanejšej\nnajkombinovanejší\nnajkombinovanejšia\nnajkombinovanejšie\nnajkombinovanejšieho\nnajkombinovanejšiemu\nnajkombinovanejších\nnajkombinovanejším\nnajkombinovanejšími\nnajkombinovanejšiu\nnajkombinovanejšom\nnajkombinovanejšou\nnajkomediálnejšej\nnajkomediálnejší\nnajkomediálnejšia\nnajkomediálnejšie\nnajkomediálnejšieho\nnajkomediálnejšiemu\nnajkomediálnejších\nnajkomediálnejším\nnajkomediálnejšími\nnajkomediálnejšiu\nnajkomediálnejšom\nnajkomediálnejšou\nnajkomediantskejšej\nnajkomediantskejší\nnajkomediantskejšia\nnajkomediantskejšie\nnajkomediantskejšieho\nnajkomediantskejšiemu\nnajkomediantskejších\nnajkomediantskejším\nnajkomediantskejšími\nnajkomediantskejšiu\nnajkomediantskejšom\nnajkomediantskejšou\nnajkomerčnejšej\nnajkomerčnejší\nnajkomerčnejšia\nnajkomerčnejšie\nnajkomerčnejšieho\nnajkomerčnejšiemu\nnajkomerčnejších\nnajkomerčnejším\nnajkomerčnejšími\nnajkomerčnejšiu\nnajkomerčnejšom\nnajkomerčnejšou\nnajkomfortnejšej\nnajkomfortnejší\nnajkomfortnejšia\nnajkomfortnejšie\nnajkomfortnejšieho\nnajkomfortnejšiemu\nnajkomfortnejších\nnajkomfortnejším\nnajkomfortnejšími\nnajkomfortnejšiu\nnajkomfortnejšom\nnajkomfortnejšou\nnajkomickejšej\nnajkomickejší\nnajkomickejšia\nnajkomickejšie\nnajkomickejšieho\nnajkomickejšiemu\nnajkomickejších\nnajkomickejším\nnajkomickejšími\nnajkomickejšiu\nnajkomickejšom\nnajkomickejšou\nnajkomisnejšej\nnajkomisnejší\nnajkomisnejšia\nnajkomisnejšie\nnajkomisnejšieho\nnajkomisnejšiemu\nnajkomisnejších\nnajkomisnejším\nnajkomisnejšími\nnajkomisnejšiu\nnajkomisnejšom\nnajkomisnejšou\nnajkomornejšej\nnajkomornejší\nnajkomornejšia\nnajkomornejšie\nnajkomornejšieho\nnajkomornejšiemu\nnajkomornejších\nnajkomornejším\nnajkomornejšími\nnajkomornejšiu\nnajkomornejšom\nnajkomornejšou\nnajkomótnejšej\nnajkomótnejší\nnajkomótnejšia\nnajkomótnejšie\nnajkomótnejšieho\nnajkomótnejšiemu\nnajkomótnejších\nnajkomótnejším\nnajkomótnejšími\nnajkomótnejšiu\nnajkomótnejšom\nnajkomótnejšou\nnajkompaktnejšej\nnajkompaktnejší\nnajkompaktnejšia\nnajkompaktnejšie\nnajkompaktnejšieho\nnajkompaktnejšiemu\nnajkompaktnejších\nnajkompaktnejším\nnajkompaktnejšími\nnajkompaktnejšiu\nnajkompaktnejšom\nnajkompaktnejšou\nnajkompatibilnejšej\nnajkompatibilnejší\nnajkompatibilnejšia\nnajkompatibilnejšie\nnajkompatibilnejšieho\nnajkompatibilnejšiemu\nnajkompatibilnejších\nnajkompatibilnejším\nnajkompatibilnejšími\nnajkompatibilnejšiu\nnajkompatibilnejšom\nnajkompatibilnejšou\nnajkompetentnejšej\nnajkompetentnejší\nnajkompetentnejšia\nnajkompetentnejšie\nnajkompetentnejšieho\nnajkompetentnejšiemu\nnajkompetentnejších\nnajkompetentnejším\nnajkompetentnejšími\nnajkompetentnejšiu\nnajkompetentnejšom\nnajkompetentnejšou\nnajkompletnejšej\nnajkompletnejší\nnajkompletnejšia\nnajkompletnejšie\nnajkompletnejšieho\nnajkompletnejšiemu\nnajkompletnejších\nnajkompletnejším\nnajkompletnejšími\nnajkompletnejšiu\nnajkompletnejšom\nnajkompletnejšou\nnajkomplexnejšej\nnajkomplexnejší\nnajkomplexnejšia\nnajkomplexnejšie\nnajkomplexnejšieho\nnajkomplexnejšiemu\nnajkomplexnejších\nnajkomplexnejším\nnajkomplexnejšími\nnajkomplexnejšiu\nnajkomplexnejšom\nnajkomplexnejšou\nnajkomplikovanejšej\nnajkomplikovanejší\nnajkomplikovanejšia\nNajkomplikovanejšia\nnajkomplikovanejšie\nnajkomplikovanejšieho\nnajkomplikovanejšiemu\nnajkomplikovanejších\nnajkomplikovanejším\nnajkomplikovanejšími\nnajkomplikovanejšiu\nnajkomplikovanejšom\nnajkomplikovanejšou\nnajkompromisnejšej\nnajkompromisnejší\nnajkompromisnejšia\nnajkompromisnejšie\nnajkompromisnejšieho\nnajkompromisnejšiemu\nnajkompromisnejších\nnajkompromisnejším\nnajkompromisnejšími\nnajkompromisnejšiu\nnajkompromisnejšom\nnajkompromisnejšou\nnajkomunikatívnejšej\nnajkomunikatívnejší\nnajkomunikatívnejšia\nnajkomunikatívnejšie\nnajkomunikatívnejšieho\nnajkomunikatívnejšiemu\nnajkomunikatívnejších\nnajkomunikatívnejším\nnajkomunikatívnejšími\nnajkomunikatívnejšiu\nnajkomunikatívnejšom\nnajkomunikatívnejšou\nnajkoncentrovanejšej\nnajkoncentrovanejší\nnajkoncentrovanejšia\nnajkoncentrovanejšie\nnajkoncentrovanejšieho\nnajkoncentrovanejšiemu\nnajkoncentrovanejších\nnajkoncentrovanejším\nNajkoncentrovanejším\nnajkoncentrovanejšími\nnajkoncentrovanejšiu\nnajkoncentrovanejšom\nnajkoncentrovanejšou\nnajkoncepčnejšej\nnajkoncepčnejší\nnajkoncepčnejšia\nnajkoncepčnejšie\nnajkoncepčnejšieho\nnajkoncepčnejšiemu\nnajkoncepčnejších\nnajkoncepčnejším\nnajkoncepčnejšími\nnajkoncepčnejšiu\nnajkoncepčnejšom\nnajkoncepčnejšou\nnajkoncíznejšej\nnajkoncíznejší\nnajkoncíznejšia\nnajkoncíznejšie\nnajkoncíznejšieho\nnajkoncíznejšiemu\nnajkoncíznejších\nnajkoncíznejším\nnajkoncíznejšími\nnajkoncíznejšiu\nnajkoncíznejšom\nnajkoncíznejšou\nnajkončistejšie\nnajkonfliktnejšej\nnajkonfliktnejší\nnajkonfliktnejšia\nnajkonfliktnejšie\nnajkonfliktnejšieho\nnajkonfliktnejšiemu\nnajkonfliktnejších\nnajkonfliktnejším\nNajkonfliktnejším\nnajkonfliktnejšími\nnajkonfliktnejšiu\nnajkonfliktnejšom\nnajkonfliktnejšou\nnajkonformistickejšej\nnajkonformistickejší\nnajkonformistickejšia\nnajkonformistickejšie\nnajkonformistickejšieho\nnajkonformistickejšiemu\nnajkonformistickejších\nnajkonformistickejším\nnajkonformistickejšími\nnajkonformistickejšiu\nnajkonformistickejšom\nnajkonformistickejšou\nnajkonformnejšej\nnajkonformnejší\nnajkonformnejšia\nnajkonformnejšie\nnajkonformnejšieho\nnajkonformnejšiemu\nnajkonformnejších\nnajkonformnejším\nnajkonformnejšími\nnajkonformnejšiu\nnajkonformnejšom\nnajkonformnejšou\nnajkonfrontačnejšej\nnajkonfrontačnejší\nnajkonfrontačnejšia\nnajkonfrontačnejšie\nnajkonfrontačnejšieho\nnajkonfrontačnejšiemu\nnajkonfrontačnejších\nnajkonfrontačnejším\nnajkonfrontačnejšími\nnajkonfrontačnejšiu\nnajkonfrontačnejšom\nnajkonfrontačnejšou\nnajkonfúznejšej\nnajkonfúznejší\nnajkonfúznejšia\nnajkonfúznejšie\nnajkonfúznejšieho\nnajkonfúznejšiemu\nnajkonfúznejších\nnajkonfúznejším\nnajkonfúznejšími\nnajkonfúznejšiu\nnajkonfúznejšom\nnajkonfúznejšou\nnajkonkrétnejšej\nnajkonkrétnejší\nnajkonkrétnejšia\nnajkonkrétnejšie\nnajkonkrétnejšieho\nnajkonkrétnejšiemu\nnajkonkrétnejších\nnajkonkrétnejším\nNajkonkrétnejším\nnajkonkrétnejšími\nnajkonkrétnejšiu\nnajkonkrétnejšom\nnajkonkrétnejšou\nnajkonkurencieschopnejšej\nnajkonkurencieschopnejší\nnajkonkurencieschopnejšia\nnajkonkurencieschopnejšie\nnajkonkurencieschopnejšieho\nnajkonkurencieschopnejšiemu\nnajkonkurencieschopnejších\nnajkonkurencieschopnejším\nnajkonkurencieschopnejšími\nnajkonkurencieschopnejšiu\nnajkonkurencieschopnejšom\nnajkonkurencieschopnejšou\nnajkonkurenčnejšej\nnajkonkurenčnejší\nnajkonkurenčnejšia\nnajkonkurenčnejšie\nnajkonkurenčnejšieho\nnajkonkurenčnejšiemu\nnajkonkurenčnejších\nnajkonkurenčnejším\nnajkonkurenčnejšími\nnajkonkurenčnejšiu\nnajkonkurenčnejšom\nnajkonkurenčnejšou\nnajkonšpiratívnejšej\nnajkonšpiratívnejší\nnajkonšpiratívnejšia\nnajkonšpiratívnejšie\nnajkonšpiratívnejšieho\nnajkonšpiratívnejšiemu\nnajkonšpiratívnejších\nnajkonšpiratívnejším\nnajkonšpiratívnejšími\nnajkonšpiratívnejšiu\nnajkonšpiratívnejšom\nnajkonšpiratívnejšou\nnajkonštruktívnejšej\nnajkonštruktívnejší\nnajkonštruktívnejšia\nnajkonštruktívnejšie\nnajkonštruktívnejšieho\nnajkonštruktívnejšiemu\nnajkonštruktívnejších\nnajkonštruktívnejším\nnajkonštruktívnejšími\nnajkonštruktívnejšiu\nnajkonštruktívnejšom\nnajkonštruktívnejšou\nnajkontinuálnejšie\nnajkontraproduktívnejšej\nnajkontraproduktívnejší\nnajkontraproduktívnejšia\nnajkontraproduktívnejšie\nnajkontraproduktívnejšieho\nnajkontraproduktívnejšiemu\nnajkontraproduktívnejších\nnajkontraproduktívnejším\nnajkontraproduktívnejšími\nnajkontraproduktívnejšiu\nnajkontraproduktívnejšom\nnajkontraproduktívnejšou\nnajkontrastnejšej\nnajkontrastnejší\nnajkontrastnejšia\nnajkontrastnejšie\nnajkontrastnejšieho\nnajkontrastnejšiemu\nnajkontrastnejších\nnajkontrastnejším\nnajkontrastnejšími\nnajkontrastnejšiu\nnajkontrastnejšom\nnajkontrastnejšou\nnajkontrolovanejšej\nnajkontrolovanejší\nnajkontrolovanejšia\nnajkontrolovanejšie\nnajkontrolovanejšieho\nnajkontrolovanejšiemu\nnajkontrolovanejších\nnajkontrolovanejším\nnajkontrolovanejšími\nnajkontrolovanejšiu\nnajkontrolovanejšom\nnajkontrolovanejšou\nnajkontroverznejšej\nnajkontroverznejší\nnajkontroverznejšia\nnajkontroverznejšie\nnajkontroverznejšieho\nnajkontroverznejšiemu\nnajkontroverznejších\nnajkontroverznejším\nnajkontroverznejšími\nnajkontroverznejšiu\nnajkontroverznejšom\nnajkontroverznejšou\nnajkonvenčnejšej\nnajkonvenčnejší\nnajkonvenčnejšia\nnajkonvenčnejšie\nnajkonvenčnejšieho\nnajkonvenčnejšiemu\nnajkonvenčnejších\nnajkonvenčnejším\nnajkonvenčnejšími\nnajkonvenčnejšiu\nnajkonvenčnejšom\nnajkonvenčnejšou\nnajkonzekventnejšej\nnajkonzekventnejší\nnajkonzekventnejšia\nnajkonzekventnejšie\nnajkonzekventnejšieho\nnajkonzekventnejšiemu\nnajkonzekventnejších\nnajkonzekventnejším\nnajkonzekventnejšími\nnajkonzekventnejšiu\nnajkonzekventnejšom\nnajkonzekventnejšou\nnajkonzervatívnejšej\nnajkonzervatívnejší\nnajkonzervatívnejšia\nnajkonzervatívnejšie\nnajkonzervatívnejšieho\nnajkonzervatívnejšiemu\nnajkonzervatívnejších\nnajkonzervatívnejším\nnajkonzervatívnejšími\nnajkonzervatívnejšiu\nnajkonzervatívnejšom\nnajkonzervatívnejšou\nnajkonzistentnejšej\nnajkonzistentnejší\nnajkonzistentnejšia\nnajkonzistentnejšie\nnajkonzistentnejšieho\nnajkonzistentnejšiemu\nnajkonzistentnejších\nnajkonzistentnejším\nnajkonzistentnejšími\nnajkonzistentnejšiu\nnajkonzistentnejšom\nnajkonzistentnejšou\nnajkonzumentskejšej\nnajkonzumentskejší\nnajkonzumentskejšia\nnajkonzumentskejšie\nnajkonzumentskejšieho\nnajkonzumentskejšiemu\nnajkonzumentskejších\nnajkonzumentskejším\nnajkonzumentskejšími\nnajkonzumentskejšiu\nnajkonzumentskejšom\nnajkonzumentskejšou\nnajkonzumnejšej\nnajkonzumnejší\nnajkonzumnejšia\nnajkonzumnejšie\nnajkonzumnejšieho\nnajkonzumnejšiemu\nnajkonzumnejších\nnajkonzumnejším\nnajkonzumnejšími\nnajkonzumnejšiu\nnajkonzumnejšom\nnajkonzumnejšou\nnajkoordinovanejšej\nnajkoordinovanejší\nnajkoordinovanejšia\nnajkoordinovanejšie\nnajkoordinovanejšieho\nnajkoordinovanejšiemu\nnajkoordinovanejších\nnajkoordinovanejším\nnajkoordinovanejšími\nnajkoordinovanejšiu\nnajkoordinovanejšom\nnajkoordinovanejšou\nnajkopcovitejšej\nnajkopcovitejší\nnajkopcovitejšia\nnajkopcovitejšie\nnajkopcovitejšieho\nnajkopcovitejšiemu\nnajkopcovitejších\nnajkopcovitejším\nnajkopcovitejšími\nnajkopcovitejšiu\nnajkopcovitejšom\nnajkopcovitejšou\nnajkopijovitejšej\nnajkopijovitejší\nnajkopijovitejšia\nnajkopijovitejšie\nnajkopijovitejšieho\nnajkopijovitejšiemu\nnajkopijovitejších\nnajkopijovitejším\nnajkopijovitejšími\nnajkopijovitejšiu\nnajkopijovitejšom\nnajkopijovitejšou\nnajkopovitejšej\nnajkopovitejší\nnajkopovitejšia\nnajkopovitejšie\nnajkopovitejšieho\nnajkopovitejšiemu\nnajkopovitejších\nnajkopovitejším\nnajkopovitejšími\nnajkopovitejšiu\nnajkopovitejšom\nnajkopovitejšou\nnajkórejskejšej\nnajkórejskejší\nnajkórejskejšia\nnajkórejskejšie\nnajkórejskejšieho\nnajkórejskejšiemu\nnajkórejskejších\nnajkórejskejším\nnajkórejskejšími\nnajkórejskejšiu\nnajkórejskejšom\nnajkórejskejšou\nnajkorektnejšej\nnajkorektnejší\nnajkorektnejšia\nnajkorektnejšie\nnajkorektnejšieho\nnajkorektnejšiemu\nnajkorektnejších\nnajkorektnejším\nnajkorektnejšími\nnajkorektnejšiu\nnajkorektnejšom\nnajkorektnejšou\nnajkorenenejšej\nnajkorenenejší\nnajkorenenejšia\nnajkorenenejšie\nnajkorenenejšieho\nnajkorenenejšiemu\nnajkorenenejších\nnajkorenenejším\nnajkorenenejšími\nnajkorenenejšiu\nnajkorenenejšom\nnajkorenenejšou\nnajkorenistejšie\nnajkorenitejšej\nnajkorenitejší\nnajkorenitejšia\nnajkorenitejšie\nnajkorenitejšieho\nnajkorenitejšiemu\nnajkorenitejších\nnajkorenitejším\nnajkorenitejšími\nnajkorenitejšiu\nnajkorenitejšom\nnajkorenitejšou\nnajkoristnejšie\nnajkoristníckejšej\nnajkoristníckejší\nnajkoristníckejšia\nnajkoristníckejšie\nnajkoristníckejšieho\nnajkoristníckejšiemu\nnajkoristníckejších\nnajkoristníckejším\nnajkoristníckejšími\nnajkoristníckejšiu\nnajkoristníckejšom\nnajkoristníckejšou\nnajkôrovitejšej\nnajkôrovitejší\nnajkôrovitejšia\nnajkôrovitejšie\nnajkôrovitejšieho\nnajkôrovitejšiemu\nnajkôrovitejších\nnajkôrovitejším\nnajkôrovitejšími\nnajkôrovitejšiu\nnajkôrovitejšom\nnajkôrovitejšou\nnajkoróznejšej\nnajkoróznejší\nnajkoróznejšia\nnajkoróznejšie\nnajkoróznejšieho\nnajkoróznejšiemu\nnajkoróznejších\nnajkoróznejším\nnajkoróznejšími\nnajkoróznejšiu\nnajkoróznejšom\nnajkoróznejšou\nnajkorpulentnejšej\nnajkorpulentnejší\nnajkorpulentnejšia\nnajkorpulentnejšie\nnajkorpulentnejšieho\nnajkorpulentnejšiemu\nnajkorpulentnejších\nnajkorpulentnejším\nnajkorpulentnejšími\nnajkorpulentnejšiu\nnajkorpulentnejšom\nnajkorpulentnejšou\nnajkôstkovitejšej\nnajkôstkovitejší\nnajkôstkovitejšia\nnajkôstkovitejšie\nnajkôstkovitejšieho\nnajkôstkovitejšiemu\nnajkôstkovitejších\nnajkôstkovitejším\nnajkôstkovitejšími\nnajkôstkovitejšiu\nnajkôstkovitejšom\nnajkôstkovitejšou\nnajkostnatejšej\nnajkostnatejší\nnajkostnatejšia\nnajkostnatejšie\nnajkostnatejšieho\nnajkostnatejšiemu\nnajkostnatejších\nnajkostnatejším\nnajkostnatejšími\nnajkostnatejšiu\nnajkostnatejšom\nnajkostnatejšou\nnajkostrbatejšej\nnajkostrbatejší\nnajkostrbatejšia\nnajkostrbatejšie\nnajkostrbatejšieho\nnajkostrbatejšiemu\nnajkostrbatejších\nnajkostrbatejším\nnajkostrbatejšími\nnajkostrbatejšiu\nnajkostrbatejšom\nnajkostrbatejšou\nnajkošatejšej\nnajkošatejší\nnajkošatejšia\nnajkošatejšie\nnajkošatejšieho\nnajkošatejšiemu\nnajkošatejších\nnajkošatejším\nnajkošatejšími\nnajkošatejšiu\nnajkošatejšom\nnajkošatejšou\nnajkovovejšie\nnajkožovitejšej\nnajkožovitejší\nnajkožovitejšia\nnajkožovitejšie\nnajkožovitejšieho\nnajkožovitejšiemu\nnajkožovitejších\nnajkožovitejším\nnajkožovitejšími\nnajkožovitejšiu\nnajkožovitejšom\nnajkožovitejšou\nnajkradmejšej\nnajkradmejší\nnajkradmejšia\nnajkradmejšie\nnajkradmejšieho\nnajkradmejšiemu\nnajkradmejších\nnajkradmejším\nnajkradmejšími\nnajkradmejšiu\nnajkradmejšom\nnajkradmejšou\nnajkrajnejšej\nnajkrajnejší\nnajkrajnejšia\nnajkrajnejšie\nnajkrajnejšieho\nnajkrajnejšiemu\nnajkrajnejších\nnajkrajnejším\nnajkrajnejšími\nnajkrajnejšiu\nnajkrajnejšom\nnajkrajnejšou\nnajkrajšie\nnajkráľovskejšej\nnajkráľovskejší\nnajkráľovskejšia\nnajkráľovskejšie\nnajkráľovskejšieho\nnajkráľovskejšiemu\nnajkráľovskejších\nnajkráľovskejším\nnajkráľovskejšími\nnajkráľovskejšiu\nnajkráľovskejšom\nnajkráľovskejšou\nnajkrásnejšej\nnajkrásnejší\nnajkrásnejšia\nnajkrásnejšie\nnajkrásnejšieho\nnajkrásnejšiemu\nnajkrásnejších\nnajkrásnejším\nnajkrásnejšími\nnajkrásnejšiu\nnajkrásnejšom\nnajkrásnejšou\nnajkrasopisnejšej\nnajkrasopisnejší\nnajkrasopisnejšia\nnajkrasopisnejšie\nnajkrasopisnejšieho\nnajkrasopisnejšiemu\nnajkrasopisnejších\nnajkrasopisnejším\nnajkrasopisnejšími\nnajkrasopisnejšiu\nnajkrasopisnejšom\nnajkrasopisnejšou\nnajkrátkodobejšej\nnajkrátkodobejší\nnajkrátkodobejšia\nnajkrátkodobejšie\nnajkrátkodobejšieho\nnajkrátkodobejšiemu\nnajkrátkodobejších\nnajkrátkodobejším\nnajkrátkodobejšími\nnajkrátkodobejšiu\nnajkrátkodobejšom\nnajkrátkodobejšou\nnajkrátkonohejšej\nnajkrátkonohejší\nnajkrátkonohejšia\nnajkrátkonohejšie\nnajkrátkonohejšieho\nnajkrátkonohejšiemu\nnajkrátkonohejších\nnajkrátkonohejším\nnajkrátkonohejšími\nnajkrátkonohejšiu\nnajkrátkonohejšom\nnajkrátkonohejšou\nnajkrátkozrakejšej\nnajkrátkozrakejší\nnajkrátkozrakejšia\nnajkrátkozrakejšie\nnajkrátkozrakejšieho\nnajkrátkozrakejšiemu\nnajkrátkozrakejších\nnajkrátkozrakejším\nnajkrátkozrakejšími\nnajkrátkozrakejšiu\nnajkrátkozrakejšom\nnajkrátkozrakejšou\nnajkrčivejšej\nnajkrčivejší\nnajkrčivejšia\nnajkrčivejšie\nnajkrčivejšieho\nnajkrčivejšiemu\nnajkrčivejších\nnajkrčivejším\nnajkrčivejšími\nnajkrčivejšiu\nnajkrčivejšom\nnajkrčivejšou\nnajkŕčovejšej\nnajkŕčovejší\nnajkŕčovejšia\nnajkŕčovejšie\nnajkŕčovejšieho\nnajkŕčovejšiemu\nnajkŕčovejších\nnajkŕčovejším\nnajkŕčovejšími\nnajkŕčovejšiu\nnajkŕčovejšom\nnajkŕčovejšou\nnajkŕčovitejšej\nnajkŕčovitejší\nnajkŕčovitejšia\nnajkŕčovitejšie\nnajkŕčovitejšieho\nnajkŕčovitejšiemu\nnajkŕčovitejších\nnajkŕčovitejším\nnajkŕčovitejšími\nnajkŕčovitejšiu\nnajkŕčovitejšom\nnajkŕčovitejšou\nnajkreatívnejšej\nnajkreatívnejší\nnajkreatívnejšia\nnajkreatívnejšie\nnajkreatívnejšieho\nnajkreatívnejšiemu\nnajkreatívnejších\nnajkreatívnejším\nnajkreatívnejšími\nnajkreatívnejšiu\nnajkreatívnejšom\nnajkreatívnejšou\nnajkrehkejšej\nnajkrehkejší\nnajkrehkejšia\nnajkrehkejšie\nnajkrehkejšieho\nnajkrehkejšiemu\nnajkrehkejších\nnajkrehkejším\nnajkrehkejšími\nnajkrehkejšiu\nnajkrehkejšom\nnajkrehkejšou\nnajkrémovejšej\nnajkrémovejší\nnajkrémovejšia\nnajkrémovejšie\nnajkrémovejšieho\nnajkrémovejšiemu\nnajkrémovejších\nnajkrémovejším\nnajkrémovejšími\nnajkrémovejšiu\nnajkrémovejšom\nnajkrémovejšou\nnajkresťanskejšej\nnajkresťanskejší\nnajkresťanskejšia\nnajkresťanskejšie\nnajkresťanskejšieho\nnajkresťanskejšiemu\nnajkresťanskejších\nnajkresťanskejším\nnajkresťanskejšími\nnajkresťanskejšiu\nnajkresťanskejšom\nnajkresťanskejšou\nnajkrídlatejšej\nnajkrídlatejší\nnajkrídlatejšia\nnajkrídlatejšie\nnajkrídlatejšieho\nnajkrídlatejšiemu\nnajkrídlatejších\nnajkrídlatejším\nnajkrídlatejšími\nnajkrídlatejšiu\nnajkrídlatejšom\nnajkrídlatejšou\nnajkrikľavejšej\nnajkrikľavejší\nnajkrikľavejšia\nnajkrikľavejšie\nnajkrikľavejšieho\nnajkrikľavejšiemu\nnajkrikľavejších\nnajkrikľavejším\nnajkrikľavejšími\nnajkrikľavejšiu\nnajkrikľavejšom\nnajkrikľavejšou\nnajkriklúnskejšej\nnajkrikľúnskejšej\nnajkriklúnskejší\nnajkrikľúnskejší\nnajkriklúnskejšia\nnajkrikľúnskejšia\nnajkriklúnskejšie\nnajkrikľúnskejšie\nnajkriklúnskejšieho\nnajkrikľúnskejšieho\nnajkriklúnskejšiemu\nnajkrikľúnskejšiemu\nnajkriklúnskejších\nnajkrikľúnskejších\nnajkriklúnskejším\nnajkrikľúnskejším\nnajkriklúnskejšími\nnajkrikľúnskejšími\nnajkriklúnskejšiu\nnajkrikľúnskejšiu\nnajkriklúnskejšom\nnajkrikľúnskejšom\nnajkriklúnskejšou\nnajkrikľúnskejšou\nnajkritickej\nnajkrivolakejšej\nnajkrivolakejší\nnajkrivolakejšia\nnajkrivolakejšie\nnajkrivolakejšieho\nnajkrivolakejšiemu\nnajkrivolakejších\nnajkrivolakejším\nnajkrivolakejšími\nnajkrivolakejšiu\nnajkrivolakejšom\nnajkrivolakejšou\nnajkrivoprísažnejšej\nnajkrivoprísažnejší\nnajkrivoprísažnejšia\nnajkrivoprísažnejšie\nnajkrivoprísažnejšieho\nnajkrivoprísažnejšiemu\nnajkrivoprísažnejších\nnajkrivoprísažnejším\nnajkrivoprísažnejšími\nnajkrivoprísažnejšiu\nnajkrivoprísažnejšom\nnajkrivoprísažnejšou\nnajkrivšej\nnajkrivší\nnajkrivšia\nnajkrivšie\nnajkrivšieho\nnajkrivšiemu\nnajkrivších\nnajkrivším\nnajkrivšími\nnajkrivšiu\nnajkrivšom\nnajkrivšou\nnajkrízovejšej\nnajkrízovejší\nNajkrízovejší\nnajkrízovejšia\nnajkrízovejšie\nnajkrízovejšieho\nnajkrízovejšiemu\nnajkrízovejších\nnajkrízovejším\nnajkrízovejšími\nnajkrízovejšiu\nnajkrízovejšom\nnajkrízovejšou\nnajkrkolomnejšej\nnajkrkolomnejší\nnajkrkolomnejšia\nnajkrkolomnejšie\nnajkrkolomnejšieho\nnajkrkolomnejšiemu\nnajkrkolomnejších\nnajkrkolomnejším\nnajkrkolomnejšími\nnajkrkolomnejšiu\nnajkrkolomnejšom\nnajkrkolomnejšou\nnajkrotkejšej\nnajkrotkejší\nnajkrotkejšia\nnajkrotkejšie\nnajkrotkejšieho\nnajkrotkejšiemu\nnajkrotkejších\nnajkrotkejším\nnajkrotkejšími\nnajkrotkejšiu\nnajkrotkejšom\nnajkrotkejšou\nnajkrotšej\nnajkrotší\nnajkrotšia\nnajkrotšie\nnajkrotšieho\nnajkrotšiemu\nnajkrotších\nnajkrotším\nnajkrotšími\nnajkrotšiu\nnajkrotšom\nnajkrotšou\nnajkrovinatejšej\nnajkrovinatejší\nnajkrovinatejšia\nnajkrovinatejšie\nnajkrovinatejšieho\nnajkrovinatejšiemu\nnajkrovinatejších\nnajkrovinatejším\nnajkrovinatejšími\nnajkrovinatejšiu\nnajkrovinatejšom\nnajkrovinatejšou\nnajkrpatejšej\nnajkrpatejší\nnajkrpatejšia\nnajkrpatejšie\nnajkrpatejšieho\nnajkrpatejšiemu\nnajkrpatejších\nnajkrpatejším\nnajkrpatejšími\nnajkrpatejšiu\nnajkrpatejšom\nnajkrpatejšou\nnajkruhovitejšej\nnajkruhovitejší\nnajkruhovitejšia\nnajkruhovitejšie\nnajkruhovitejšieho\nnajkruhovitejšiemu\nnajkruhovitejších\nnajkruhovitejším\nnajkruhovitejšími\nnajkruhovitejšiu\nnajkruhovitejšom\nnajkruhovitejšou\nnajkrušnejšej\nnajkrušnejší\nnajkrušnejšia\nnajkrušnejšie\nnajkrušnejšieho\nnajkrušnejšiemu\nnajkrušnejších\nnajkrušnejším\nnajkrušnejšími\nnajkrušnejšiu\nnajkrušnejšom\nnajkrušnejšou\nnajkrúživejšej\nnajkrúživejší\nnajkrúživejšia\nnajkrúživejšie\nnajkrúživejšieho\nnajkrúživejšiemu\nnajkrúživejších\nnajkrúživejším\nnajkrúživejšími\nnajkrúživejšiu\nnajkrúživejšom\nnajkrúživejšou\nnajkrvavejšej\nnajkrvavejší\nnajkrvavejšia\nnajkrvavejšie\nNajkrvavejšie\nnajkrvavejšieho\nnajkrvavejšiemu\nnajkrvavejších\nnajkrvavejším\nnajkrvavejšími\nnajkrvavejšiu\nnajkrvavejšom\nnajkrvavejšou\nnajkrvilačnejšej\nnajkrvilačnejší\nnajkrvilačnejšia\nnajkrvilačnejšie\nnajkrvilačnejšieho\nnajkrvilačnejšiemu\nnajkrvilačnejších\nnajkrvilačnejším\nnajkrvilačnejšími\nnajkrvilačnejšiu\nnajkrvilačnejšom\nnajkrvilačnejšou\nnajkrvnatejšej\nnajkrvnatejší\nnajkrvnatejšia\nnajkrvnatejšie\nnajkrvnatejšieho\nnajkrvnatejšiemu\nnajkrvnatejších\nnajkrvnatejším\nnajkrvnatejšími\nnajkrvnatejšiu\nnajkrvnatejšom\nnajkrvnatejšou\nnajkrvopotnejšej\nnajkrvopotnejší\nnajkrvopotnejšia\nnajkrvopotnejšie\nnajkrvopotnejšieho\nnajkrvopotnejšiemu\nnajkrvopotnejších\nnajkrvopotnejším\nnajkrvopotnejšími\nnajkrvopotnejšiu\nnajkrvopotnejšom\nnajkrvopotnejšou\nnajkrytejšej\nnajkrytejší\nnajkrytejšia\nnajkrytejšie\nnajkrytejšieho\nnajkrytejšiemu\nnajkrytejších\nnajkrytejším\nnajkrytejšími\nnajkrytejšiu\nnajkrytejšom\nnajkrytejšou\nnajkučeravejšej\nnajkučeravejší\nnajkučeravejšia\nnajkučeravejšie\nnajkučeravejšieho\nnajkučeravejšiemu\nnajkučeravejších\nnajkučeravejším\nnajkučeravejšími\nnajkučeravejšiu\nnajkučeravejšom\nnajkučeravejšou\nnajkujnejšej\nnajkujnejší\nnajkujnejšia\nnajkujnejšie\nnajkujnejšieho\nnajkujnejšiemu\nnajkujnejších\nnajkujnejším\nnajkujnejšími\nnajkujnejšiu\nnajkujnejšom\nnajkujnejšou\nnajkuloárnejšej\nnajkuloárnejší\nnajkuloárnejšia\nnajkuloárnejšie\nnajkuloárnejšieho\nnajkuloárnejšiemu\nnajkuloárnejších\nnajkuloárnejším\nnajkuloárnejšími\nnajkuloárnejšiu\nnajkuloárnejšom\nnajkuloárnejšou\nnajkultivovanejšej\nnajkultivovanejší\nnajkultivovanejšia\nnajkultivovanejšie\nnajkultivovanejšieho\nnajkultivovanejšiemu\nnajkultivovanejších\nnajkultivovanejším\nnajkultivovanejšími\nnajkultivovanejšiu\nnajkultivovanejšom\nnajkultivovanejšou\nnajkultúrnejšej\nnajkultúrnejší\nnajkultúrnejšia\nnajkultúrnejšie\nnajkultúrnejšieho\nnajkultúrnejšiemu\nnajkultúrnejších\nnajkultúrnejším\nnajkultúrnejšími\nnajkultúrnejšiu\nnajkultúrnejšom\nnajkultúrnejšou\nnajkumulatívnejšej\nnajkumulatívnejší\nnajkumulatívnejšia\nnajkumulatívnejšie\nnajkumulatívnejšieho\nnajkumulatívnejšiemu\nnajkumulatívnejších\nnajkumulatívnejším\nnajkumulatívnejšími\nnajkumulatívnejšiu\nnajkumulatívnejšom\nnajkumulatívnejšou\nnajkúpyschopnejšej\nnajkúpyschopnejší\nnajkúpyschopnejšia\nnajkúpyschopnejšie\nnajkúpyschopnejšieho\nnajkúpyschopnejšiemu\nnajkúpyschopnejších\nnajkúpyschopnejším\nnajkúpyschopnejšími\nnajkúpyschopnejšiu\nnajkúpyschopnejšom\nnajkúpyschopnejšou\nnajkurióznejšej\nnajkurióznejší\nnajkurióznejšia\nnajkurióznejšie\nnajkurióznejšieho\nnajkurióznejšiemu\nnajkurióznejších\nnajkurióznejším\nnajkurióznejšími\nnajkurióznejšiu\nnajkurióznejšom\nnajkurióznejšou\nnajkusejšej\nnajkusejší\nnajkusejšia\nnajkusejšie\nnajkusejšieho\nnajkusejšiemu\nnajkusejších\nnajkusejším\nnajkusejšími\nnajkusejšiu\nnajkusejšom\nnajkusejšou\nnajkúzelnejšej\nnajkúzelnejší\nnajkúzelnejšia\nnajkúzelnejšie\nnajkúzelnejšieho\nnajkúzelnejšiemu\nnajkúzelnejších\nnajkúzelnejším\nnajkúzelnejšími\nnajkúzelnejšiu\nnajkúzelnejšom\nnajkúzelnejšou\nnajkužeľovitejšej\nnajkužeľovitejší\nnajkužeľovitejšia\nnajkužeľovitejšie\nnajkužeľovitejšieho\nnajkužeľovitejšiemu\nnajkužeľovitejších\nnajkužeľovitejším\nnajkužeľovitejšími\nnajkužeľovitejšiu\nnajkužeľovitejšom\nnajkužeľovitejšou\nnajkvalifikovanejšej\nnajkvalifikovanejší\nnajkvalifikovanejšia\nnajkvalifikovanejšie\nnajkvalifikovanejšieho\nnajkvalifikovanejšiemu\nnajkvalifikovanejších\nnajkvalifikovanejším\nnajkvalifikovanejšími\nnajkvalifikovanejšiu\nnajkvalifikovanejšom\nnajkvalifikovanejšou\nnajkvalitnej\nnajkvapalnejšej\nnajkvapalnejší\nnajkvapalnejšia\nnajkvapalnejšie\nnajkvapalnejšieho\nnajkvapalnejšiemu\nnajkvapalnejších\nnajkvapalnejším\nnajkvapalnejšími\nnajkvapalnejšiu\nnajkvapalnejšom\nnajkvapalnejšou\nnajkvetnatejšej\nnajkvetnatejší\nnajkvetnatejšia\nnajkvetnatejšie\nnajkvetnatejšieho\nnajkvetnatejšiemu\nnajkvetnatejších\nnajkvetnatejším\nnajkvetnatejšími\nnajkvetnatejšiu\nnajkvetnatejšom\nnajkvetnatejšou\nnajkvetovanejšej\nnajkvetovanejší\nnajkvetovanejšia\nnajkvetovanejšie\nnajkvetovanejšieho\nnajkvetovanejšiemu\nnajkvetovanejších\nnajkvetovanejším\nnajkvetovanejšími\nnajkvetovanejšiu\nnajkvetovanejšom\nnajkvetovanejšou\nnajkvietkovanejšej\nnajkvietkovanejší\nnajkvietkovanejšia\nnajkvietkovanejšie\nnajkvietkovanejšieho\nnajkvietkovanejšiemu\nnajkvietkovanejších\nnajkvietkovanejším\nnajkvietkovanejšími\nnajkvietkovanejšiu\nnajkvietkovanejšom\nnajkvietkovanejšou\nnajkvílivejšej\nnajkvílivejší\nnajkvílivejšia\nnajkvílivejšie\nnajkvílivejšieho\nnajkvílivejšiemu\nnajkvílivejších\nnajkvílivejším\nnajkvílivejšími\nnajkvílivejšiu\nnajkvílivejšom\nnajkvílivejšou\nnajkyprejšej\nnajkyprejší\nnajkyprejšia\nnajkyprejšie\nnajkyprejšieho\nnajkyprejšiemu\nnajkyprejších\nnajkyprejším\nnajkyprejšími\nnajkyprejšiu\nnajkyprejšom\nnajkyprejšou\nnajkyptavejšej\nnajkyptavejší\nnajkyptavejšia\nnajkyptavejšie\nnajkyptavejšieho\nnajkyptavejšiemu\nnajkyptavejších\nnajkyptavejším\nnajkyptavejšími\nnajkyptavejšiu\nnajkyptavejšom\nnajkyptavejšou\nnajkyselkavejšej\nnajkyselkavejší\nnajkyselkavejšia\nnajkyselkavejšie\nnajkyselkavejšieho\nnajkyselkavejšiemu\nnajkyselkavejších\nnajkyselkavejším\nnajkyselkavejšími\nnajkyselkavejšiu\nnajkyselkavejšom\nnajkyselkavejšou\nnajkyslastejšej\nnajkyslastejší\nnajkyslastejšia\nnajkyslastejšie\nnajkyslastejšieho\nnajkyslastejšiemu\nnajkyslastejších\nnajkyslastejším\nnajkyslastejšími\nnajkyslastejšiu\nnajkyslastejšom\nnajkyslastejšou\nnajkyslejšej\nnajkyslejší\nnajkyslejšia\nnajkyslejšie\nnajkyslejšieho\nnajkyslejšiemu\nnajkyslejších\nnajkyslejším\nnajkyslejšími\nnajkyslejšiu\nnajkyslejšom\nnajkyslejšou\nnajkývavejšej\nnajkývavejší\nnajkývavejšia\nnajkývavejšie\nnajkývavejšieho\nnajkývavejšiemu\nnajkývavejších\nnajkývavejším\nnajkývavejšími\nnajkývavejšiu\nnajkývavejšom\nnajkývavejšou\nnajlabilnejšej\nnajlabilnejší\nnajlabilnejšia\nnajlabilnejšie\nnajlabilnejšieho\nnajlabilnejšiemu\nnajlabilnejších\nnajlabilnejším\nnajlabilnejšími\nnajlabilnejšiu\nnajlabilnejšom\nnajlabilnejšou\nnajlabužníckejšej\nnajlabužníckejší\nnajlabužníckejšia\nnajlabužníckejšie\nnajlabužníckejšieho\nnajlabužníckejšiemu\nnajlabužníckejších\nnajlabužníckejším\nnajlabužníckejšími\nnajlabužníckejšiu\nnajlabužníckejšom\nnajlabužníckejšou\nnajlačnejšej\nnajlačnejší\nnajlačnejšia\nnajlačnejšie\nnajlačnejšieho\nnajlačnejšiemu\nnajlačnejších\nnajlačnejším\nnajlačnejšími\nnajlačnejšiu\nnajlačnejšom\nnajlačnejšou\nnajladnejšej\nnajladnejší\nnajladnejšia\nNajladnejšia\nnajladnejšie\nnajladnejšieho\nnajladnejšiemu\nnajladnejších\nnajladnejším\nnajladnejšími\nnajladnejšiu\nnajladnejšom\nnajladnejšou\nnajľadovejšej\nnajľadovejší\nnajľadovejšia\nnajľadovejšie\nnajľadovejšieho\nnajľadovejšiemu\nnajľadovejších\nnajľadovejším\nnajľadovejšími\nnajľadovejšiu\nnajľadovejšom\nnajľadovejšou\nnajľahkomyseľnejšej\nnajľahkomyseľnejší\nnajľahkomyseľnejšia\nnajľahkomyseľnejšie\nnajľahkomyseľnejšieho\nnajľahkomyseľnejšiemu\nnajľahkomyseľnejších\nnajľahkomyseľnejším\nnajľahkomyseľnejšími\nnajľahkomyseľnejšiu\nnajľahkomyseľnejšom\nnajľahkomyseľnejšou\nnajľahkonohejšej\nnajľahkonohejší\nnajľahkonohejšia\nnajľahkonohejšie\nnajľahkonohejšieho\nnajľahkonohejšiemu\nnajľahkonohejších\nnajľahkonohejším\nnajľahkonohejšími\nnajľahkonohejšiu\nnajľahkonohejšom\nnajľahkonohejšou\nnajľahkovážnejšej\nnajľahkovážnejší\nnajľahkovážnejšia\nnajľahkovážnejšie\nnajľahkovážnejšieho\nnajľahkovážnejšiemu\nnajľahkovážnejších\nnajľahkovážnejším\nnajľahkovážnejšími\nnajľahkovážnejšiu\nnajľahkovážnejšom\nnajľahkovážnejšou\nnajľahkovernejšej\nnajľahkovernejší\nnajľahkovernejšia\nnajľahkovernejšie\nnajľahkovernejšieho\nnajľahkovernejšiemu\nnajľahkovernejších\nnajľahkovernejším\nnajľahkovernejšími\nNajľahkovernejšími\nnajľahkovernejšiu\nnajľahkovernejšom\nnajľahkovernejšou\nnajlahôdkovejšej\nnajlahôdkovejší\nnajlahôdkovejšia\nnajlahôdkovejšie\nnajlahôdkovejšieho\nnajlahôdkovejšiemu\nnajlahôdkovejších\nnajlahôdkovejším\nnajlahôdkovejšími\nnajlahôdkovejšiu\nnajlahôdkovejšom\nnajlahôdkovejšou\nnajlahodnejšej\nnajlahodnejší\nnajlahodnejšia\nnajlahodnejšie\nnajlahodnejšieho\nnajlahodnejšiemu\nnajlahodnejších\nnajlahodnejším\nnajlahodnejšími\nnajlahodnejšiu\nnajlahodnejšom\nnajlahodnejšou\nnajľahostajnejšej\nnajľahostajnejší\nnajľahostajnejšia\nnajľahostajnejšieho\nnajľahostajnejšiemu\nnajľahostajnejších\nnajľahostajnejším\nnajľahostajnejšími\nnajľahostajnejšiu\nnajľahostajnejšom\nnajľahostajnejšou\nnajľahtikárskejšej\nnajľahtikárskejší\nnajľahtikárskejšia\nnajľahtikárskejšie\nnajľahtikárskejšieho\nnajľahtikárskejšiemu\nnajľahtikárskejších\nnajľahtikárskejším\nnajľahtikárskejšími\nnajľahtikárskejšiu\nnajľahtikárskejšom\nnajľahtikárskejšou\nnajlaickejšej\nnajlaickejší\nnajlaickejšia\nnajlaickejšie\nnajlaickejšieho\nnajlaickejšiemu\nnajlaickejších\nnajlaickejším\nnajlaickejšími\nnajlaickejšiu\nnajlaickejšom\nnajlaickejšou\nnajlajdáckejšej\nnajlajdáckejší\nnajlajdáckejšia\nnajlajdáckejšie\nnajlajdáckejšieho\nnajlajdáckejšiemu\nnajlajdáckejších\nnajlajdáckejším\nnajlajdáckejšími\nnajlajdáckejšiu\nnajlajdáckejšom\nnajlajdáckejšou\nnajlákavejšej\nnajľakavejšej\nnajlákavejší\nnajľakavejší\nnajlákavejšia\nnajľakavejšia\nnajlákavejšie\nnajľakavejšie\nnajlákavejšieho\nnajľakavejšieho\nnajlákavejšiemu\nnajľakavejšiemu\nnajlákavejších\nnajľakavejších\nnajlákavejším\nnajľakavejším\nnajlákavejšími\nnajľakavejšími\nnajlákavejšiu\nnajľakavejšiu\nnajlákavejšom\nnajľakavejšom\nnajlákavejšou\nnajľakavejšou\nnajlakomejšej\nnajlakomejší\nnajlakomejšia\nnajlakomejšie\nnajlakomejšieho\nnajlakomejšiemu\nnajlakomejších\nnajlakomejším\nnajlakomejšími\nnajlakomejšiu\nnajlakomejšom\nnajlakomejšou\nnajlakonickejšej\nnajlakonickejší\nnajlakonickejšia\nnajlakonickejšie\nnajlakonickejšieho\nnajlakonickejšiemu\nnajlakonickejších\nnajlakonickejším\nnajlakonickejšími\nnajlakonickejšiu\nnajlakonickejšom\nnajlakonickejšou\nnajlakotnejšej\nnajlakotnejší\nnajlakotnejšia\nnajlakotnejšie\nnajlakotnejšieho\nnajlakotnejšiemu\nnajlakotnejších\nnajlakotnejším\nnajlakotnejšími\nnajlakotnejšiu\nnajlakotnejšom\nnajlakotnejšou\nnajlaločnatejšej\nnajlaločnatejší\nnajlaločnatejšia\nnajlaločnatejšie\nnajlaločnatejšieho\nnajlaločnatejšiemu\nnajlaločnatejších\nnajlaločnatejším\nnajlaločnatejšími\nnajlaločnatejšiu\nnajlaločnatejšom\nnajlaločnatejšou\nnajlámanejšej\nnajlámanejší\nnajlámanejšia\nnajlámanejšie\nnajlámanejšieho\nnajlámanejšiemu\nnajlámanejších\nnajlámanejším\nnajlámanejšími\nnajlámanejšiu\nnajlámanejšom\nnajlámanejšou\nnajlámavejšej\nnajlámavejší\nnajlámavejšia\nnajlámavejšie\nnajlámavejšieho\nnajlámavejšiemu\nnajlámavejších\nnajlámavejším\nnajlámavejšími\nnajlámavejšiu\nnajlámavejšom\nnajlámavejšou\nnajľanovejšie\nnajlapajskejšej\nnajlapajskejší\nnajlapajskejšia\nnajlapajskejšie\nnajlapajskejšieho\nnajlapajskejšiemu\nnajlapajskejších\nnajlapajskejším\nnajlapajskejšími\nnajlapajskejšiu\nnajlapajskejšom\nnajlapajskejšou\nnajlapidárnejšej\nnajlapidárnejší\nnajlapidárnejšia\nnajlapidárnejšie\nNajlapidárnejšie\nnajlapidárnejšieho\nnajlapidárnejšiemu\nnajlapidárnejších\nnajlapidárnejším\nNajlapidárnejším\nnajlapidárnejšími\nnajlapidárnejšiu\nnajlapidárnejšom\nnajlapidárnejšou\nnajlaponskejšej\nnajlaponskejší\nnajlaponskejšia\nnajlaponskejšie\nnajlaponskejšieho\nnajlaponskejšiemu\nnajlaponskejších\nnajlaponskejším\nnajlaponskejšími\nnajlaponskejšiu\nnajlaponskejšom\nnajlaponskejšou\nnajlascívnejšej\nnajlascívnejší\nnajlascívnejšia\nnajlascívnejšie\nnajlascívnejšieho\nnajlascívnejšiemu\nnajlascívnejších\nnajlascívnejším\nnajlascívnejšími\nnajlascívnejšiu\nnajlascívnejšom\nnajlascívnejšou\nnajláskavejšej\nnajláskavejší\nnajláskavejšia\nnajláskavejšie\nnajláskavejšieho\nnajláskavejšiemu\nnajláskavejších\nnajláskavejším\nnajláskavejšími\nnajláskavejšiu\nnajláskavejšom\nnajláskavejšou\nnajláskyplnejšej\nnajláskyplnejší\nnajláskyplnejšia\nnajláskyplnejšie\nnajláskyplnejšieho\nnajláskyplnejšiemu\nnajláskyplnejších\nnajláskyplnejším\nnajláskyplnejšími\nnajláskyplnejšiu\nnajláskyplnejšom\nnajláskyplnejšou\nnajlastúrovitejšej\nnajlastúrovitejší\nnajlastúrovitejšia\nnajlastúrovitejšie\nnajlastúrovitejšieho\nnajlastúrovitejšiemu\nnajlastúrovitejších\nnajlastúrovitejším\nnajlastúrovitejšími\nnajlastúrovitejšiu\nnajlastúrovitejšom\nnajlastúrovitejšou\nnajlatentnejšej\nnajlatentnejší\nnajlatentnejšia\nnajlatentnejšie\nnajlatentnejšieho\nnajlatentnejšiemu\nnajlatentnejších\nnajlatentnejším\nnajlatentnejšími\nnajlatentnejšiu\nnajlatentnejšom\nnajlatentnejšou\nnajľavejšej\nnajľavejší\nnajľavejšia\nnajľavejšie\nnajľavejšieho\nnajľavejšiemu\nnajľavejších\nnajľavejším\nnajľavejšími\nnajľavejšiu\nnajľavejšom\nnajľavejšou\nnajľavicovejšej\nnajľavicovejší\nnajľavicovejšia\nnajľavicovejšie\nnajľavicovejšieho\nnajľavicovejšiemu\nnajľavicovejších\nnajľavicovejším\nnajľavicovejšími\nnajľavicovejšiu\nnajľavicovejšom\nnajľavicovejšou\nnajľavičiarskejšej\nnajľavičiarskejší\nnajľavičiarskejšia\nnajľavičiarskejšie\nnajľavičiarskejšieho\nnajľavičiarskejšiemu\nnajľavičiarskejších\nnajľavičiarskejším\nnajľavičiarskejšími\nnajľavičiarskejšiu\nnajľavičiarskejšom\nnajľavičiarskejšou\nnajlavínovitejšej\nnajlavínovitejší\nnajlavínovitejšia\nnajlavínovitejšie\nnajlavínovitejšieho\nnajlavínovitejšiemu\nnajlavínovitejších\nnajlavínovitejším\nnajlavínovitejšími\nnajlavínovitejšiu\nnajlavínovitejšom\nnajlavínovitejšou\nnajlaxnejšej\nnajlaxnejší\nnajlaxnejšia\nnajlaxnejšie\nnajlaxnejšieho\nnajlaxnejšiemu\nnajlaxnejších\nnajlaxnejším\nnajlaxnejšími\nnajlaxnejšiu\nnajlaxnejšom\nnajlaxnejšou\nnajlegálnejšej\nnajlegálnejší\nnajlegálnejšia\nnajlegálnejšie\nnajlegálnejšieho\nnajlegálnejšiemu\nnajlegálnejších\nnajlegálnejším\nnajlegálnejšími\nnajlegálnejšiu\nnajlegálnejšom\nnajlegálnejšou\nnajlegendárnejšej\nnajlegendárnejších\nNajlegendárnejším\nnajlegitímnejšej\nnajlegitímnejší\nnajlegitímnejšia\nnajlegitímnejšie\nnajlegitímnejšieho\nnajlegitímnejšiemu\nnajlegitímnejších\nnajlegitímnejším\nnajlegitímnejšími\nnajlegitímnejšiu\nnajlegitímnejšom\nnajlegitímnejšou\nnajlekvárovejšej\nnajlekvárovejší\nnajlekvárovejšia\nnajlekvárovejšie\nnajlekvárovejšieho\nnajlekvárovejšiemu\nnajlekvárovejších\nnajlekvárovejším\nnajlekvárovejšími\nnajlekvárovejšiu\nnajlekvárovejšom\nnajlekvárovejšou\nnajlenivejšej\nnajlenivejší\nnajlenivejšia\nnajlenivejšie\nnajlenivejšieho\nnajlenivejšiemu\nnajlenivejších\nnajlenivejším\nnajlenivejšími\nnajlenivejšiu\nnajlenivejšom\nnajlenivejšou\nnajleňošskejšej\nnajleňošskejší\nnajleňošskejšia\nnajleňošskejšie\nnajleňošskejšieho\nnajleňošskejšiemu\nnajleňošskejších\nnajleňošskejším\nnajleňošskejšími\nnajleňošskejšiu\nnajleňošskejšom\nnajleňošskejšou\nnajlepkavejšej\nnajlepkavejší\nnajlepkavejšia\nnajlepkavejšie\nnajlepkavejšieho\nnajlepkavejšiemu\nnajlepkavejších\nnajlepkavejším\nnajlepkavejšími\nnajlepkavejšiu\nnajlepkavejšom\nnajlepkavejšou\nnajlepšejšej\nnajlepšejší\nnajlepšejšia\nnajlepšejšie\nnajlepšejšieho\nnajlepšejšiemu\nnajlepšejších\nnajlepšejším\nnajlepšejšími\nnajlepšejšiu\nnajlepšejšom\nnajlepšejšou\nnajlepšie\nnajleptavejšej\nnajleptavejší\nnajleptavejšia\nnajleptavejšie\nnajleptavejšieho\nnajleptavejšiemu\nnajleptavejších\nnajleptavejším\nnajleptavejšími\nnajleptavejšiu\nnajleptavejšom\nnajleptavejšou\nnajlesklejšej\nnajlesklejší\nnajlesklejšia\nnajlesklejšie\nnajlesklejšieho\nnajlesklejšiemu\nnajlesklejších\nnajlesklejším\nnajlesklejšími\nnajlesklejšiu\nnajlesklejšom\nnajlesklejšou\nnajlesnatejšej\nnajlesnatejší\nnajlesnatejšia\nnajlesnatejšie\nnajlesnatejšieho\nnajlesnatejšiemu\nnajlesnatejších\nnajlesnatejším\nnajlesnatejšími\nnajlesnatejšiu\nnajlesnatejšom\nnajlesnatejšou\nnajletargickejšej\nnajletargickejší\nnajletargickejšia\nnajletargickejšie\nnajletargickejšieho\nnajletargickejšiemu\nnajletargickejších\nnajletargickejším\nnajletargickejšími\nnajletargickejšiu\nnajletargickejšom\nnajletargickejšou\nnajletmejšej\nnajletmejší\nnajletmejšia\nnajletmejšie\nnajletmejšieho\nnajletmejšiemu\nnajletmejších\nnajletmejším\nnajletmejšími\nnajletmejšiu\nnajletmejšom\nnajletmejšou\nnajletnejšej\nnajletnejší\nnajletnejšia\nnajletnejšie\nnajletnejšieho\nnajletnejšiemu\nnajletnejších\nnajletnejším\nnajletnejšími\nnajletnejšiu\nnajletnejšom\nnajletnejšou\nnajležatejšej\nnajležatejší\nnajležatejšia\nnajležatejšie\nnajležatejšieho\nnajležatejšiemu\nnajležatejších\nnajležatejším\nnajležatejšími\nnajležatejšiu\nnajležatejšom\nnajležatejšou\nnajležérnejšej\nnajležérnejší\nnajležérnejšia\nnajležérnejšie\nnajležérnejšieho\nnajležérnejšiemu\nnajležérnejších\nnajležérnejším\nnajležérnejšími\nnajležérnejšiu\nnajležérnejšom\nnajležérnejšou\nnajlí\nnajliberálnejšej\nnajliberálnejší\nnajliberálnejšia\nnajliberálnejšie\nnajliberálnejšieho\nnajliberálnejšiemu\nnajliberálnejších\nnajliberálnejším\nnajliberálnejšími\nnajliberálnejšiu\nnajliberálnejšom\nnajliberálnejšou\nnajliečiteľnejšej\nnajliečiteľnejší\nnajliečiteľnejšia\nnajliečiteľnejšie\nnajliečiteľnejšieho\nnajliečiteľnejšiemu\nnajliečiteľnejších\nnajliečiteľnejším\nnajliečiteľnejšími\nnajliečiteľnejšiu\nnajliečiteľnejšom\nnajliečiteľnejšou\nnajliečivejšej\nnajliečivejší\nnajliečivejšia\nnajliečivejšie\nnajliečivejšieho\nnajliečivejšiemu\nnajliečivejších\nnajliečivejším\nnajliečivejšími\nnajliečivejšiu\nnajliečivejšom\nnajliečivejšou\nnajlietavejšej\nnajlietavejší\nnajlietavejšia\nnajlietavejšie\nnajlietavejšieho\nnajlietavejšiemu\nnajlietavejších\nnajlietavejším\nnajlietavejšími\nnajlietavejšiu\nnajlietavejšom\nnajlietavejšou\nnajlievikovejšej\nnajlievikovejší\nnajlievikovejšia\nnajlievikovejšie\nnajlievikovejšieho\nnajlievikovejšiemu\nnajlievikovejších\nnajlievikovejším\nnajlievikovejšími\nnajlievikovejšiu\nnajlievikovejšom\nnajlievikovejšou\nnajlievikovitejšej\nnajlievikovitejší\nnajlievikovitejšia\nnajlievikovitejšie\nnajlievikovitejšieho\nnajlievikovitejšiemu\nnajlievikovitejších\nnajlievikovitejším\nnajlievikovitejšími\nnajlievikovitejšiu\nnajlievikovitejšom\nnajlievikovitejšou\nnajligotavejšej\nnajligotavejší\nnajligotavejšia\nnajligotavejšie\nnajligotavejšieho\nnajligotavejšiemu\nnajligotavejších\nnajligotavejším\nnajligotavejšími\nnajligotavejšiu\nnajligotavejšom\nnajligotavejšou\nnajlichejšej\nnajlichejší\nnajlichejšia\nnajlichejšie\nnajlichejšieho\nnajlichejšiemu\nnajlichejších\nnajlichejším\nnajlichejšími\nnajlichejšiu\nnajlichejšom\nnajlichejšou\nnajlichotivejšej\nnajlichotivejší\nnajlichotivejšia\nnajlichotivejšie\nnajlichotivejšieho\nnajlichotivejšiemu\nnajlichotivejších\nnajlichotivejším\nnajlichotivejšími\nnajlichotivejšiu\nnajlichotivejšom\nnajlichotivejšou\nnajlichotníckejšej\nnajlichotníckejší\nnajlichotníckejšia\nnajlichotníckejšie\nnajlichotníckejšieho\nnajlichotníckejšiemu\nnajlichotníckejších\nnajlichotníckejším\nnajlichotníckejšími\nnajlichotníckejšiu\nnajlichotníckejšom\nnajlichotníckejšou\nnajlichšej\nnajlichší\nnajlichšia\nnajlichšie\nnajlichšieho\nnajlichšiemu\nnajlichších\nnajlichším\nnajlichšími\nnajlichšiu\nnajlichšom\nnajlichšou\nnajlilavejšej\nnajlilavejší\nnajlilavejšia\nnajlilavejšie\nnajlilavejšieho\nnajlilavejšiemu\nnajlilavejších\nnajlilavejším\nnajlilavejšími\nnajlilavejšiu\nnajlilavejšom\nnajlilavejšou\nnajliliputánskejšej\nnajliliputánskejší\nnajliliputánskejšia\nnajliliputánskejšie\nnajliliputánskejšieho\nnajliliputánskejšiemu\nnajliliputánskejších\nnajliliputánskejším\nnajliliputánskejšími\nnajliliputánskejšiu\nnajliliputánskejšom\nnajliliputánskejšou\nnajlimitovanejšej\nnajlimitovanejší\nnajlimitovanejšia\nnajlimitovanejšie\nnajlimitovanejšieho\nnajlimitovanejšiemu\nnajlimitovanejších\nnajlimitovanejším\nnajlimitovanejšími\nnajlimitovanejšiu\nnajlimitovanejšom\nnajlimitovanejšou\nnajlipkavejšej\nnajlipkavejší\nnajlipkavejšia\nnajlipkavejšie\nnajlipkavejšieho\nnajlipkavejšiemu\nnajlipkavejších\nnajlipkavejším\nnajlipkavejšími\nnajlipkavejšiu\nnajlipkavejšom\nnajlipkavejšou\nnajliskavejšej\nnajliskavejší\nnajliskavejšia\nnajliskavejšie\nnajliskavejšieho\nnajliskavejšiemu\nnajliskavejších\nnajliskavejším\nnajliskavejšími\nnajliskavejšiu\nnajliskavejšom\nnajliskavejšou\nnajlistnatejšej\nnajlistnatejší\nnajlistnatejšia\nnajlistnatejšie\nnajlistnatejšieho\nnajlistnatejšiemu\nnajlistnatejších\nnajlistnatejším\nnajlistnatejšími\nnajlistnatejšiu\nnajlistnatejšom\nnajlistnatejšou\nnajlišiackejšej\nnajlišiackejší\nnajlišiackejšia\nnajlišiackejšie\nnajlišiackejšieho\nnajlišiackejšiemu\nnajlišiackejších\nnajlišiackejším\nnajlišiackejšími\nnajlišiackejšiu\nnajlišiackejšom\nnajlišiackejšou\nnajlíškavejšej\nnajlíškavejší\nnajlíškavejšia\nnajlíškavejšie\nnajlíškavejšieho\nnajlíškavejšiemu\nnajlíškavejších\nnajlíškavejším\nnajlíškavejšími\nnajlíškavejšom\nnajlíškavejšou\nnajliterárnejšej\nnajliterárnejší\nnajliterárnejšia\nnajliterárnejšie\nnajliterárnejšieho\nnajliterárnejšiemu\nnajliterárnejších\nnajliterárnejším\nnajliterárnejšími\nnajliterárnejšiu\nnajliterárnejšom\nnajliterárnejšou\nnajlitovskejšej\nnajlitovskejší\nnajlitovskejšia\nnajlitovskejšie\nnajlitovskejšieho\nnajlitovskejšiemu\nnajlitovskejších\nnajlitovskejším\nnajlitovskejšími\nnajlitovskejšiu\nnajlitovskejšom\nnajlitovskejšou\nnajločkavejšej\nnajločkavejší\nnajločkavejšia\nnajločkavejšie\nnajločkavejšieho\nnajločkavejšiemu\nnajločkavejších\nnajločkavejším\nnajločkavejšími\nnajločkavejšiu\nnajločkavejšom\nnajločkavejšou\nnajlogickejšej\nnajlogickejší\nnajlogickejšia\nnajlogickejšie\nnajlogickejšieho\nnajlogickejšiemu\nnajlogickejších\nnajlogickejším\nnajlogickejšími\nnajlogickejšiu\nnajlogickejšom\nnajlogickejšou\nnajlojálnejšej\nnajlojálnejší\nnajlojálnejšia\nnajlojálnejšie\nnajlojálnejšieho\nnajlojálnejšiemu\nnajlojálnejších\nnajlojálnejším\nnajlojálnejšími\nnajlojálnejšiu\nnajlojálnejšom\nnajlojálnejšou\nnajlojovitejšej\nnajlojovitejší\nnajlojovitejšia\nnajlojovitejšie\nnajlojovitejšieho\nnajlojovitejšiemu\nnajlojovitejších\nnajlojovitejším\nnajlojovitejšími\nnajlojovitejšiu\nnajlojovitejšom\nnajlojovitejšou\nnajlokajskejšej\nnajlokajskejší\nnajlokajskejšia\nnajlokajskejšie\nnajlokajskejšieho\nnajlokajskejšiemu\nnajlokajskejších\nnajlokajskejším\nnajlokajskejšími\nnajlokajskejšiu\nnajlokajskejšom\nnajlokajskejšou\nnajlokálnejšej\nnajlokálnejší\nnajlokálnejšia\nnajlokálnejšie\nnajlokálnejšieho\nnajlokálnejšiemu\nnajlokálnejších\nnajlokálnejším\nnajlokálnejšími\nnajlokálnejšiu\nnajlokálnejšom\nnajlokálnejšou\nnajlokálpatriotickejšej\nnajlokálpatriotickejší\nnajlokálpatriotickejšia\nnajlokálpatriotickejšie\nnajlokálpatriotickejšieho\nnajlokálpatriotickejšiemu\nnajlokálpatriotickejších\nnajlokálpatriotickejším\nnajlokálpatriotickejšími\nnajlokálpatriotickejšiu\nnajlokálpatriotickejšom\nnajlokálpatriotickejšou\nnajlomenejšej\nnajlomenejší\nnajlomenejšia\nnajlomenejšie\nnajlomenejšieho\nnajlomenejšiemu\nnajlomenejších\nnajlomenejším\nnajlomenejšími\nnajlomenejšiu\nnajlomenejšom\nnajlomenejšou\nnajlopotnejšej\nnajlopotnejší\nnajlopotnejšia\nnajlopotnejšie\nnajlopotnejšieho\nnajlopotnejšiemu\nnajlopotnejších\nnajlopotnejším\nnajlopotnejšími\nnajlopotnejšiu\nnajlopotnejšom\nnajlopotnejšou\nnajlotyšskejšej\nnajlotyšskejší\nnajlotyšskejšia\nnajlotyšskejšie\nnajlotyšskejšieho\nnajlotyšskejšiemu\nnajlotyšskejších\nnajlotyšskejším\nnajlotyšskejšími\nnajlotyšskejšiu\nnajlotyšskejšom\nnajlotyšskejšou\nnajľstivejšej\nnajľstivejší\nnajľstivejšia\nnajľstivejšie\nnajľstivejšieho\nnajľstivejšiemu\nnajľstivejších\nnajľstivejším\nnajľstivejšími\nnajľstivejšiu\nnajľstivejšom\nnajľstivejšou\nnajľúbeznejšej\nnajľúbeznejší\nnajľúbeznejšia\nnajľúbeznejšie\nnajľúbeznejšieho\nnajľúbeznejšiemu\nnajľúbeznejších\nnajľúbeznejším\nnajľúbeznejšími\nnajľúbeznejšiu\nnajľúbeznejšom\nnajľúbeznejšou\nnajľúbostnejšie\nnajľubozvučnejšej\nnajľubozvučnejší\nnajľubozvučnejšia\nnajľubozvučnejšie\nnajľubozvučnejšieho\nnajľubozvučnejšiemu\nnajľubozvučnejších\nnajľubozvučnejším\nnajľubozvučnejšími\nnajľubozvučnejšiu\nnajľubozvučnejšom\nnajľubozvučnejšou\nnajlúčovitejšej\nnajlúčovitejší\nnajlúčovitejšia\nnajlúčovitejšie\nnajlúčovitejšieho\nnajlúčovitejšiemu\nnajlúčovitejších\nnajlúčovitejším\nnajlúčovitejšími\nnajlúčovitejšiu\nnajlúčovitejšom\nnajlúčovitejšou\nnajľudnatejšej\nnajľudnatejší\nnajľudnatejšia\nnajľudnatejšie\nnajľudnatejšieho\nnajľudnatejšiemu\nnajľudnatejších\nnajľudnatejším\nnajľudnatejšími\nnajľudnatejšiu\nnajľudnatejšom\nnajľudnatejšou\nnajľudomilnejšej\nnajľudomilnejší\nnajľudomilnejšia\nnajľudomilnejšie\nnajľudomilnejšieho\nnajľudomilnejšiemu\nnajľudomilnejších\nnajľudomilnejším\nnajľudomilnejšími\nnajľudomilnejšiu\nnajľudomilnejšom\nnajľudomilnejšou\nnajľudomilskejšej\nnajľudomilskejší\nnajľudomilskejšia\nnajľudomilskejšie\nnajľudomilskejšieho\nnajľudomilskejšiemu\nnajľudomilskejších\nnajľudomilskejším\nnajľudomilskejšími\nnajľudomilskejšiu\nnajľudomilskejšom\nnajľudomilskejšou\nnajľudovejšie\nnajľudskejšej\nnajľudskejší\nnajľudskejšia\nnajľudskejšie\nnajľudskejšieho\nnajľudskejšiemu\nnajľudskejších\nnajľudskejším\nnajľudskejšími\nnajľudskejšiu\nnajľudskejšom\nnajľudskejšou\nnajlumpáckejšej\nnajlumpáckejší\nnajlumpáckejšia\nnajlumpáckejšie\nnajlumpáckejšieho\nnajlumpáckejšiemu\nnajlumpáckejších\nnajlumpáckejším\nnajlumpáckejšími\nnajlumpáckejšiu\nnajlumpáckejšom\nnajlumpáckejšou\nnajlupeňovitejšej\nnajlupeňovitejší\nnajlupeňovitejšia\nnajlupeňovitejšie\nnajlupeňovitejšieho\nnajlupeňovitejšiemu\nnajlupeňovitejších\nnajlupeňovitejším\nnajlupeňovitejšími\nnajlupeňovitejšiu\nnajlupeňovitejšom\nnajlupeňovitejšou\nnajľútejšej\nnajľútejší\nnajľútejšia\nnajľútejšie\nnajľútejšieho\nnajľútejšiemu\nnajľútejších\nnajľútejším\nnajľútejšími\nnajľútejšiu\nnajľútejšom\nnajľútejšou\nnajluteránskejšej\nnajluteránskejší\nnajluteránskejšia\nnajluteránskejšie\nnajluteránskejšieho\nnajluteránskejšiemu\nnajluteránskejších\nnajluteránskejším\nnajluteránskejšími\nnajluteránskejšiu\nnajluteránskejšom\nnajluteránskejšou\nnajľútostivejšej\nnajľútostivejší\nnajľútostivejšia\nnajľútostivejšie\nnajľútostivejšieho\nnajľútostivejšiemu\nnajľútostivejších\nnajľútostivejším\nnajľútostivejšími\nnajľútostivejšiu\nnajľútostivejšom\nnajľútostivejšou\nnajluxusnejšej\nnajluxusnejší\nnajluxusnejšia\nnajluxusnejšie\nnajluxusnejšieho\nnajluxusnejšiemu\nnajluxusnejších\nnajluxusnejším\nnajluxusnejšími\nNajluxusnejšími\nnajluxusnejšiu\nnajluxusnejšom\nnajluxusnejšou\nnajlyrickejšej\nnajlyrickejší\nnajlyrickejšia\nnajlyrickejšie\nnajlyrickejšieho\nnajlyrickejšiemu\nnajlyrickejších\nnajlyrickejším\nnajlyrickejšími\nnajlyrickejšiu\nnajlyrickejšom\nnajlyrickejšou\nnajlysejšej\nnajlysejší\nnajlysejšia\nnajlysejšie\nnajlysejšieho\nnajlysejšiemu\nnajlysejších\nnajlysejším\nnajlysejšími\nnajlysejšiu\nnajlysejšom\nnajlysejšou\nnajlživejšej\nnajlživejší\nnajlživejšia\nnajlživejšie\nnajlživejšieho\nnajlživejšiemu\nnajlživejších\nnajlživejším\nnajlživejšími\nnajlživejšiu\nnajlživejšom\nnajlživejšou\nnajmä\nnajmacedónskejšej\nnajmacedónskejší\nnajmacedónskejšia\nnajmacedónskejšie\nnajmacedónskejšieho\nnajmacedónskejšiemu\nnajmacedónskejších\nnajmacedónskejším\nnajmacedónskejšími\nnajmacedónskejšiu\nnajmacedónskejšom\nnajmacedónskejšou\nnajmacošskejšej\nnajmacošskejší\nnajmacošskejšia\nnajmacošskejšie\nnajmacošskejšieho\nnajmacošskejšiemu\nnajmacošskejších\nnajmacošskejším\nnajmacošskejšími\nnajmacošskejšiu\nnajmacošskejšom\nnajmacošskejšou\nnajmačkovitejšej\nnajmačkovitejší\nnajmačkovitejšia\nnajmačkovitejšie\nnajmačkovitejšieho\nnajmačkovitejšiemu\nnajmačkovitejších\nnajmačkovitejším\nnajmačkovitejšími\nnajmačkovitejšiu\nnajmačkovitejšom\nnajmačkovitejšou\nnajmaďarónskejšej\nnajmaďarónskejší\nnajmaďarónskejšia\nnajmaďarónskejšie\nnajmaďarónskejšieho\nnajmaďarónskejšiemu\nnajmaďarónskejších\nnajmaďarónskejším\nnajmaďarónskejšími\nnajmaďarónskejšiu\nnajmaďarónskejšom\nnajmaďarónskejšou\nnajmaďarskejšej\nnajmaďarskejší\nnajmaďarskejšia\nnajmaďarskejšie\nnajmaďarskejšieho\nnajmaďarskejšiemu\nnajmaďarskejších\nnajmaďarskejším\nnajmaďarskejšími\nnajmaďarskejšiu\nnajmaďarskejšom\nnajmaďarskejšou\nnajmagickejšej\nnajmagickejší\nnajmagickejšia\nnajmagickejšie\nnajmagickejšieho\nnajmagickejšiemu\nnajmagickejších\nnajmagickejším\nnajmagickejšími\nnajmagickejšiu\nnajmagickejšom\nnajmagickejšou\nnajmachnatejšej\nnajmachnatejší\nnajmachnatejšia\nnajmachnatejšie\nnajmachnatejšieho\nnajmachnatejšiemu\nnajmachnatejších\nnajmachnatejším\nnajmachnatejšími\nnajmachnatejšiu\nnajmachnatejšom\nnajmachnatejšou\nnajmachovitejšej\nnajmachovitejší\nnajmachovitejšia\nnajmachovitejšie\nnajmachovitejšieho\nnajmachovitejšiemu\nnajmachovitejších\nnajmachovitejším\nnajmachovitejšími\nnajmachovitejšiu\nnajmachovitejšom\nnajmachovitejšou\nnajmajestátnejšej\nnajmajestátnejší\nnajmajestátnejšia\nnajmajestátnejšieho\nnajmajestátnejšiemu\nnajmajestátnejších\nnajmajestátnejším\nnajmajestátnejšími\nnajmajestátnejšiu\nnajmajestátnejšom\nnajmajestátnejšou\nnajmajetnejšej\nnajmajetnejší\nnajmajetnejšia\nNajmajetnejšia\nnajmajetnejšie\nnajmajetnejšieho\nnajmajetnejšiemu\nnajmajetnejších\nnajmajetnejším\nnajmajetnejšími\nnajmajetnejšiu\nnajmajetnejšom\nnajmajetnejšou\nnajmajstrovskejšie\nnajmäkšej\nnajmäkší\nnajmäkšia\nnajmäkšie\nnajmäkšieho\nnajmäkšiemu\nnajmäkších\nnajmäkším\nnajmäkšími\nnajmäkšiu\nnajmäkšom\nnajmäkšou\nnajmalátnejšej\nnajmalátnejší\nnajmalátnejšia\nnajmalátnejšie\nnajmalátnejšieho\nnajmalátnejšiemu\nnajmalátnejších\nnajmalátnejším\nnajmalátnejšími\nnajmalátnejšiu\nnajmalátnejšom\nnajmalátnejšou\nnajmalichernejšej\nnajmalichernejší\nnajmalichernejšia\nnajmalichernejšie\nnajmalichernejšieho\nnajmalichernejšiemu\nnajmalichernejších\nnajmalichernejším\nnajmalichernejšími\nnajmalichernejšiu\nnajmalichernejšom\nnajmalichernejšou\nnajmalodušnejšej\nnajmalodušnejší\nnajmalodušnejšia\nnajmalodušnejšie\nnajmalodušnejšieho\nnajmalodušnejšiemu\nnajmalodušnejších\nnajmalodušnejším\nnajmalodušnejšími\nnajmalodušnejšiu\nnajmalodušnejšom\nnajmalodušnejšou\nnajmálokrvnejšej\nnajmálokrvnejší\nnajmálokrvnejšia\nnajmálokrvnejšie\nnajmálokrvnejšieho\nnajmálokrvnejšiemu\nnajmálokrvnejších\nnajmálokrvnejším\nnajmálokrvnejšími\nnajmálokrvnejšiu\nnajmálokrvnejšom\nnajmálokrvnejšou\nnajmalomeštiackejšej\nnajmalomeštiackejší\nnajmalomeštiackejšia\nnajmalomeštiackejšie\nnajmalomeštiackejšieho\nnajmalomeštiackejšiemu\nnajmalomeštiackejších\nnajmalomeštiackejším\nnajmalomeštiackejšími\nnajmalomeštiackejšiu\nnajmalomeštiackejšom\nnajmalomeštiackejšou\nnajmalomyseľnejšej\nnajmalomyseľnejší\nnajmalomyseľnejšia\nnajmalomyseľnejšie\nnajmalomyseľnejšieho\nnajmalomyseľnejšiemu\nnajmalomyseľnejších\nnajmalomyseľnejším\nnajmalomyseľnejšími\nnajmalomyseľnejšiu\nnajmalomyseľnejšom\nnajmalomyseľnejšou\nnajmaľovanejšej\nnajmaľovanejší\nnajmaľovanejšia\nnajmaľovanejšie\nnajmaľovanejšieho\nnajmaľovanejšiemu\nnajmaľovanejších\nnajmaľovanejším\nnajmaľovanejšími\nnajmaľovanejšiu\nnajmaľovanejšom\nnajmaľovanejšou\nnajmalovernejšej\nnajmalovernejší\nnajmalovernejšia\nnajmalovernejšie\nnajmalovernejšieho\nnajmalovernejšiemu\nnajmalovernejších\nnajmalovernejším\nnajmalovernejšími\nnajmalovernejšiu\nnajmalovernejšom\nnajmalovernejšou\nnajmálovravnejšej\nnajmálovravnejší\nnajmálovravnejšia\nnajmálovravnejšie\nnajmálovravnejšieho\nnajmálovravnejšiemu\nnajmálovravnejších\nnajmálovravnejším\nnajmálovravnejšími\nnajmálovravnejšiu\nnajmálovravnejšom\nnajmálovravnejšou\nnájmami\nnajmámivejšej\nnajmámivejší\nnajmámivejšia\nnajmámivejšie\nnajmámivejšieho\nnajmámivejšiemu\nnajmámivejších\nnajmámivejším\nnajmámivejšími\nnajmámivejšiu\nnajmámivejšom\nnajmámivejšou\nnajmamonárskejšej\nnajmamonárskejší\nnajmamonárskejšia\nnajmamonárskejšie\nnajmamonárskejšieho\nnajmamonárskejšiemu\nnajmamonárskejších\nnajmamonárskejším\nnajmamonárskejšími\nnajmamonárskejšiu\nnajmamonárskejšom\nnajmamonárskejšou\nnajmanieristickejšej\nnajmanieristickejší\nnajmanieristickejšia\nnajmanieristickejšie\nnajmanieristickejšieho\nnajmanieristickejšiemu\nnajmanieristickejších\nnajmanieristickejším\nnajmanieristickejšími\nnajmanieristickejšiu\nnajmanieristickejšom\nnajmanieristickejšou\nnajmarginálnejšie\nnajmarkantnejšej\nnajmarkantnejší\nnajmarkantnejšia\nnajmarkantnejšie\nNajmarkantnejšie\nnajmarkantnejšieho\nnajmarkantnejšiemu\nnajmarkantnejších\nnajmarkantnejším\nNajmarkantnejším\nnajmarkantnejšími\nnajmarkantnejšiu\nnajmarkantnejšom\nnajmarkantnejšou\nNajmarkantnejšou\nnajmárnejšej\nnajmárnejší\nnajmárnejšia\nnajmárnejšie\nnajmárnejšieho\nnajmárnejšiemu\nnajmárnejších\nnajmárnejším\nnajmárnejšími\nnajmárnejšiu\nnajmárnejšom\nnajmárnejšou\nnajmárnivejšej\nnajmárnivejší\nnajmárnivejšia\nnajmárnivejšie\nnajmárnivejšieho\nnajmárnivejšiemu\nnajmárnivejších\nnajmárnivejším\nnajmárnivejšími\nnajmárnivejšiu\nnajmárnivejšom\nnajmárnivejšou\nnajmárnomyseľnejšej\nnajmárnomyseľnejší\nnajmárnomyseľnejšia\nnajmárnomyseľnejšie\nnajmárnomyseľnejšieho\nnajmárnomyseľnejšiemu\nnajmárnomyseľnejších\nnajmárnomyseľnejším\nnajmárnomyseľnejšími\nnajmárnomyseľnejšiu\nnajmárnomyseľnejšom\nnajmárnomyseľnejšou\nnajmárnotratnejšej\nnajmárnotratnejší\nnajmárnotratnejšia\nnajmárnotratnejšie\nnajmárnotratnejšieho\nnajmárnotratnejšiemu\nnajmárnotratnejších\nnajmárnotratnejším\nnajmárnotratnejšími\nnajmárnotratnejšiu\nnajmárnotratnejšom\nnajmárnotratnejšou\nnajmäsitejšej\nnajmäsitejší\nnajmäsitejšia\nnajmäsitejšie\nnajmäsitejšieho\nnajmäsitejšiemu\nnajmäsitejších\nnajmäsitejším\nnajmäsitejšími\nnajmäsitejšiu\nnajmäsitejšom\nnajmäsitejšou\nnajmasívnejšej\nnajmasívnejší\nnajmasívnejšia\nnajmasívnejšie\nnajmasívnejšieho\nnajmasívnejšiemu\nnajmasívnejších\nnajmasívnejším\nnajmasívnejšími\nnajmasívnejšiu\nnajmasívnejšom\nnajmasívnejšou\nnajmäsnatejšej\nnajmäsnatejší\nnajmäsnatejšia\nnajmäsnatejšie\nnajmäsnatejšieho\nnajmäsnatejšiemu\nnajmäsnatejších\nnajmäsnatejším\nnajmäsnatejšími\nnajmäsnatejšiu\nnajmäsnatejšom\nnajmäsnatejšou\nnajmasochistickejšej\nnajmasochistickejší\nnajmasochistickejšia\nnajmasochistickejšie\nnajmasochistickejšieho\nnajmasochistickejšiemu\nnajmasochistickejších\nnajmasochistickejším\nnajmasochistickejšími\nnajmasochistickejšiu\nnajmasochistickejšom\nnajmasochistickejšou\nnajmasovejšej\nnajmasovejší\nnajmasovejšia\nnajmasovejšie\nnajmasovejšieho\nnajmasovejšiemu\nnajmasovejších\nnajmasovejším\nnajmasovejšími\nnajmasovejšiu\nnajmasovejšom\nnajmasovejšou\nnajmastnejšej\nnajmastnejší\nnajmastnejšia\nnajmastnejšie\nnajmastnejšieho\nnajmastnejšiemu\nnajmastnejších\nnajmastnejším\nnajmastnejšími\nnajmastnejšiu\nnajmastnejšom\nnajmastnejšou\nnajmaškrtnejšej\nnajmaškrtnejší\nnajmaškrtnejšia\nnajmaškrtnejšie\nnajmaškrtnejšieho\nnajmaškrtnejšiemu\nnajmaškrtnejších\nnajmaškrtnejším\nnajmaškrtnejšími\nnajmaškrtnejšiu\nnajmaškrtnejšom\nnajmaškrtnejšou\nnajmaterialistickejšej\nnajmaterialistickejší\nnajmaterialistickejšia\nnajmaterialistickejšie\nnajmaterialistickejšieho\nnajmaterialistickejšiemu\nnajmaterialistickejších\nnajmaterialistickejším\nnajmaterialistickejšími\nnajmaterialistickejšiu\nnajmaterialistickejšom\nnajmaterialistickejšou\nnajmaterinskejšej\nnajmaterinskejší\nnajmaterinskejšia\nnajmaterinskejšie\nnajmaterinskejšieho\nnajmaterinskejšiemu\nnajmaterinskejších\nnajmaterinskejším\nnajmaterinskejšími\nnajmaterinskejšiu\nnajmaterinskejšom\nnajmaterinskejšou\nnajmaterskejšie\nnajmatnejšej\nnajmatnejší\nnajmatnejšia\nnajmatnejšie\nnajmatnejšieho\nnajmatnejšiemu\nnajmatnejších\nnajmatnejším\nnajmatnejšími\nnajmatnejšiu\nnajmatnejšom\nnajmatnejšou\nnajmátožnejšej\nnajmátožnejší\nnajmátožnejšia\nnajmátožnejšie\nnajmátožnejšieho\nnajmátožnejšiemu\nnajmátožnejších\nnajmátožnejším\nnajmátožnejšími\nnajmátožnejšiu\nnajmátožnejšom\nnajmátožnejšou\nnajmaximálnejšia\nnajmazanejšej\nnajmazanejší\nnajmazanejšia\nnajmazanejšie\nnajmazanejšieho\nnajmazanejšiemu\nnajmazanejších\nnajmazanejším\nnajmazanejšími\nnajmazanejšiu\nnajmazanejšom\nnajmazanejšou\nnajmazľavejšej\nnajmazľavejší\nnajmazľavejšia\nnajmazľavejšie\nnajmazľavejšieho\nnajmazľavejšiemu\nnajmazľavejších\nnajmazľavejším\nnajmazľavejšími\nnajmazľavejšiu\nnajmazľavejšom\nnajmazľavejšou\nnajmaznáckejšej\nnajmaznáckejší\nnajmaznáckejšia\nnajmaznáckejšie\nnajmaznáckejšieho\nnajmaznáckejšiemu\nnajmaznáckejších\nnajmaznáckejším\nnajmaznáckejšími\nnajmaznáckejšiu\nnajmaznáckejšom\nnajmaznáckejšou\nnajmaznavejšej\nnajmaznavejší\nnajmaznavejšia\nnajmaznavejšie\nnajmaznavejšieho\nnajmaznavejšiemu\nnajmaznavejších\nnajmaznavejším\nnajmaznavejšími\nnajmaznavejšiu\nnajmaznavejšom\nnajmaznavejšou\nnajmdlejšej\nnajmdlejší\nnajmdlejšia\nnajmdlejšie\nnajmdlejšieho\nnajmdlejšiemu\nnajmdlejších\nnajmdlejším\nnajmdlejšími\nnajmdlejšiu\nnajmdlejšom\nnajmdlejšou\nnájme\nnajmeditatívnejšej\nnajmeditatívnejší\nnajmeditatívnejšia\nnajmeditatívnejšie\nnajmeditatívnejšieho\nnajmeditatívnejšiemu\nnajmeditatívnejších\nnajmeditatívnejším\nnajmeditatívnejšími\nnajmeditatívnejšiu\nnajmeditatívnejšom\nnajmeditatívnejšou\nnajmedzitriednejšej\nnajmedzitriednejší\nnajmedzitriednejšia\nnajmedzitriednejšie\nnajmedzitriednejšieho\nnajmedzitriednejšiemu\nnajmedzitriednejších\nnajmedzitriednejším\nnajmedzitriednejšími\nnajmedzitriednejšiu\nnajmedzitriednejšom\nnajmedzitriednejšou\nnajmegalomanskejšej\nnajmegalomanskejší\nnajmegalomanskejšia\nnajmegalomanskejšie\nnajmegalomanskejšieho\nnajmegalomanskejšiemu\nnajmegalomanskejších\nnajmegalomanskejším\nnajmegalomanskejšími\nnajmegalomanskejšiu\nnajmegalomanskejšom\nnajmegalomanskejšou\nnajmechanickejšej\nnajmechanickejší\nnajmechanickejšia\nnajmechanickejšie\nnajmechanickejšieho\nnajmechanickejšiemu\nnajmechanickejších\nnajmechanickejším\nnajmechanickejšími\nnajmechanickejšiu\nnajmechanickejšom\nnajmechanickejšou\nnajmelancholickejšej\nnajmelancholickejší\nnajmelancholickejšia\nnajmelancholickejšie\nnajmelancholickejšieho\nnajmelancholickejšiemu\nnajmelancholickejších\nnajmelancholickejším\nnajmelancholickejšími\nnajmelancholickejšiu\nnajmelancholickejšom\nnajmelancholickejšou\nnajmelírovanejšej\nnajmelírovanejší\nnajmelírovanejšia\nnajmelírovanejšie\nnajmelírovanejšieho\nnajmelírovanejšiemu\nnajmelírovanejších\nnajmelírovanejším\nnajmelírovanejšími\nnajmelírovanejšiu\nnajmelírovanejšom\nnajmelírovanejšou\nnajmelodickejšej\nnajmelodickejší\nnajmelodickejšia\nnajmelodickejšie\nnajmelodickejšieho\nnajmelodickejšiemu\nnajmelodickejších\nnajmelodickejším\nnajmelodickejšími\nnajmelodickejšiu\nnajmelodickejšom\nnajmelodickejšou\nnajmelodramatickejšej\nnajmelodramatickejší\nnajmelodramatickejšia\nnajmelodramatickejšie\nnajmelodramatickejšieho\nnajmelodramatickejšiemu\nnajmelodramatickejších\nnajmelodramatickejším\nnajmelodramatickejšími\nnajmelodramatickejšiu\nnajmelodramatickejšom\nnajmelodramatickejšou\nnajmeňavejšej\nnajmeňavejší\nnajmeňavejšia\nnajmeňavejšie\nnajmeňavejšieho\nnajmeňavejšiemu\nnajmeňavejších\nnajmeňavejším\nnajmeňavejšími\nnajmeňavejšiu\nnajmeňavejšom\nnajmeňavejšou\nnajmenejcennejšej\nnajmenejcennejší\nnajmenejcennejšia\nnajmenejcennejšie\nnajmenejcennejšieho\nnajmenejcennejšiemu\nnajmenejcennejších\nnajmenejcennejším\nnajmenejcennejšími\nnajmenejcennejšiu\nnajmenejcennejšom\nnajmenejcennejšou\nnajmenistejšej\nnajmenistejší\nnajmenistejšia\nnajmenistejšie\nnajmenistejšieho\nnajmenistejšiemu\nnajmenistejších\nnajmenistejším\nnajmenistejšími\nnajmenistejšiu\nnajmenistejšom\nnajmenistejšou\nnajmenlivejšej\nnajmenlivejší\nnajmenlivejšia\nnajmenlivejšie\nnajmenlivejšieho\nnajmenlivejšiemu\nnajmenlivejších\nnajmenlivejším\nnajmenlivejšími\nnajmenlivejšiu\nnajmenlivejšom\nnajmenlivejšou\nnajmenovitejšej\nnajmenovitejší\nnajmenovitejšia\nnajmenovitejšie\nnajmenovitejšieho\nnajmenovitejšiemu\nnajmenovitejších\nnajmenovitejším\nnajmenovitejšími\nnajmenovitejšiu\nnajmenovitejšom\nnajmenovitejšou\nnajmentorskejšej\nnajmentorskejší\nnajmentorskejšia\nnajmentorskejšie\nnajmentorskejšieho\nnajmentorskejšiemu\nnajmentorskejších\nnajmentorskejším\nnajmentorskejšími\nnajmentorskejšiu\nnajmentorskejšom\nnajmentorskejšou\nnajmeravejšej\nnajmeravejší\nnajmeravejšia\nnajmeravejšie\nnajmeravejšieho\nnajmeravejšiemu\nnajmeravejších\nnajmeravejším\nnajmeravejšími\nnajmeravejšiu\nnajmeravejšom\nnajmeravejšou\nnajmeštiackejšej\nnajmeštiackejší\nnajmeštiackejšia\nnajmeštiackejšie\nnajmeštiackejšieho\nnajmeštiackejšiemu\nnajmeštiackejších\nnajmeštiackejším\nnajmeštiackejšími\nnajmeštiackejšiu\nnajmeštiackejšom\nnajmeštiackejšou\nnajmešťianskejšej\nnajmešťianskejší\nnajmešťianskejšia\nnajmešťianskejšie\nnajmešťianskejšieho\nnajmešťianskejšiemu\nnajmešťianskejších\nnajmešťianskejším\nnajmešťianskejšími\nnajmešťianskejšiu\nnajmešťianskejšom\nnajmešťianskejšou\nnajmetaforickejšej\nnajmetaforickejší\nnajmetaforickejšia\nnajmetaforickejšie\nnajmetaforickejšieho\nnajmetaforickejšiemu\nnajmetaforickejších\nnajmetaforickejším\nnajmetaforickejšími\nnajmetaforickejšiu\nnajmetaforickejšom\nnajmetaforickejšou\nnajmetalovejšej\nnajmetalovejší\nnajmetalovejšia\nnajmetalovejšie\nnajmetalovejšieho\nnajmetalovejšiemu\nnajmetalovejších\nnajmetalovejším\nnajmetalovejšími\nnajmetalovejšiu\nnajmetalovejšom\nnajmetalovejšou\nnajmetlovitejšej\nnajmetlovitejší\nnajmetlovitejšia\nnajmetlovitejšie\nnajmetlovitejšieho\nnajmetlovitejšiemu\nnajmetlovitejších\nnajmetlovitejším\nnajmetlovitejšími\nnajmetlovitejšiu\nnajmetlovitejšom\nnajmetlovitejšou\nnajmetodickejšej\nnajmetodickejší\nnajmetodickejšia\nnajmetodickejšie\nnajmetodickejšieho\nnajmetodickejšiemu\nnajmetodickejších\nnajmetodickejším\nnajmetodickejšími\nnajmetodickejšiu\nnajmetodickejšom\nnajmetodickejšou\nnajmiernejšej\nnajmiernejší\nnajmiernejšia\nnajmiernejšie\nnajmiernejšieho\nnajmiernejšiemu\nnajmiernejších\nnajmiernejším\nnajmiernejšími\nnajmiernejšiu\nnajmiernejšom\nnajmiernejšou\nnajmihotavejšej\nnajmihotavejší\nnajmihotavejšia\nnajmihotavejšie\nnajmihotavejšieho\nnajmihotavejšiemu\nnajmihotavejších\nnajmihotavejším\nnajmihotavejšími\nnajmihotavejšiu\nnajmihotavejšom\nnajmihotavejšou\nnajmilitantnejšej\nnajmilitantnejší\nnajmilitantnejšia\nnajmilitantnejšie\nnajmilitantnejšieho\nnajmilitantnejšiemu\nnajmilitantnejších\nnajmilitantnejším\nnajmilitantnejšími\nnajmilitantnejšiu\nnajmilitantnejšom\nnajmilitantnejšou\nnajmilosrdnejšej\nnajmilosrdnejší\nnajmilosrdnejšia\nnajmilosrdnejšie\nnajmilosrdnejšieho\nnajmilosrdnejšiemu\nnajmilosrdnejších\nnajmilosrdnejším\nnajmilosrdnejšími\nnajmilosrdnejšiu\nnajmilosrdnejšom\nnajmilosrdnejšou\nnajmilostivejšej\nnajmilostivejší\nnajmilostivejšia\nnajmilostivejšie\nnajmilostivejšieho\nnajmilostivejšiemu\nnajmilostivejších\nnajmilostivejším\nnajmilostivejšími\nnajmilostivejšiu\nnajmilostivejšom\nnajmilostivejšou\nnajmilovanejšej\nnajmilovanejší\nnajmilovanejšia\nnajmilovanejšie\nnajmilovanejšieho\nnajmilovanejšiemu\nnajmilovanejších\nnajmilovanejším\nnajmilovanejšími\nnajmilovanejšiu\nnajmilovanejšom\nnajmilovanejšou\nnajminiatúrnejšej\nnajminiatúrnejší\nnajminiatúrnejšia\nnajminiatúrnejšie\nnajminiatúrnejšieho\nnajminiatúrnejšiemu\nnajminiatúrnejších\nnajminiatúrnejším\nnajminiatúrnejšími\nnajminiatúrnejšiu\nnajminiatúrnejšom\nnajminiatúrnejšou\nnajminimálnejšie\nnajminimálnejším\nnajminucióznejšej\nnajminucióznejší\nnajminucióznejšia\nnajminucióznejšie\nnajminucióznejšieho\nnajminucióznejšiemu\nnajminucióznejších\nnajminucióznejším\nnajminucióznejšími\nnajminucióznejšiu\nnajminucióznejšom\nnajminucióznejšou\nnajmizantropickejšej\nnajmizantropickejší\nnajmizantropickejšia\nnajmizantropickejšie\nnajmizantropickejšieho\nnajmizantropickejšiemu\nnajmizantropickejších\nnajmizantropickejším\nnajmizantropickejšími\nnajmizantropickejšiu\nnajmizantropickejšom\nnajmizantropickejšou\nnajmizernejšej\nnajmizernejší\nnajmizernejšia\nnajmizernejšie\nnajmizernejšieho\nnajmizernejšiemu\nnajmizernejších\nnajmizernejším\nnajmizernejšími\nnajmizernejšiu\nnajmizernejšom\nnajmizernejšou\nnajmizivejšej\nnajmizivejší\nnajmizivejšia\nnajmizivejšie\nnajmizivejšieho\nnajmizivejšiemu\nnajmizivejších\nnajmizivejším\nnajmizivejšími\nnajmizivejšiu\nnajmizivejšom\nnajmizivejšou\nnajmladíckejšej\nnajmladíckejší\nnajmladíckejšia\nnajmladíckejšie\nnajmladíckejšieho\nnajmladíckejšiemu\nnajmladíckejších\nnajmladíckejším\nnajmladíckejšími\nnajmladíckejšiu\nnajmladíckejšom\nnajmladíckejšou\nnajmladistvejšej\nnajmladistvejší\nnajmladistvejšia\nnajmladistvejšie\nnajmladistvejšieho\nnajmladistvejšiemu\nnajmladistvejších\nnajmladistvejším\nnajmladistvejšími\nnajmladistvejšiu\nnajmladistvejšom\nnajmladistvejšou\nnajmľandravejšej\nnajmľandravejší\nnajmľandravejšia\nnajmľandravejšie\nnajmľandravejšieho\nnajmľandravejšiemu\nnajmľandravejších\nnajmľandravejším\nnajmľandravejšími\nnajmľandravejšiu\nnajmľandravejšom\nnajmľandravejšou\nnajmlčanlivejšej\nnajmlčanlivejší\nnajmlčanlivejšia\nnajmlčanlivejšie\nnajmlčanlivejšieho\nnajmlčanlivejšiemu\nnajmlčanlivejších\nnajmlčanlivejším\nnajmlčanlivejšími\nnajmlčanlivejšiu\nnajmlčanlivejšom\nnajmlčanlivejšou\nnajmĺkvejšej\nnajmĺkvejší\nnajmĺkvejšia\nnajmĺkvejšie\nnajmĺkvejšieho\nnajmĺkvejšiemu\nnajmĺkvejších\nnajmĺkvejším\nnajmĺkvejšími\nnajmĺkvejšiu\nnajmĺkvejšom\nnajmĺkvejšou\nnajmnohostrannejšie\nnajmnohotvárnejšej\nnajmnohotvárnejší\nnajmnohotvárnejšia\nnajmnohotvárnejšie\nnajmnohotvárnejšieho\nnajmnohotvárnejšiemu\nnajmnohotvárnejších\nnajmnohotvárnejším\nnajmnohotvárnejšími\nnajmnohotvárnejšiu\nnajmnohotvárnejšom\nnajmnohotvárnejšou\nnajmnohovravnejšej\nnajmnohovravnejší\nnajmnohovravnejšia\nnajmnohovravnejšie\nnajmnohovravnejšieho\nnajmnohovravnejšiemu\nnajmnohovravnejších\nnajmnohovravnejším\nnajmnohovravnejšími\nnajmnohovravnejšiu\nnajmnohovravnejšom\nnajmnohovravnejšou\nnajmnohovýznamovejšej\nnajmnohovýznamovejší\nnajmnohovýznamovejšia\nnajmnohovýznamovejšie\nnajmnohovýznamovejšieho\nnajmnohovýznamovejšiemu\nnajmnohovýznamovejších\nnajmnohovýznamovejším\nnajmnohovýznamovejšími\nnajmnohovýznamovejšiu\nnajmnohovýznamovejšom\nnajmnohovýznamovejšou\nnajmnohoznačnejšej\nnajmnohoznačnejší\nnajmnohoznačnejšia\nnajmnohoznačnejšie\nnajmnohoznačnejšieho\nnajmnohoznačnejšiemu\nnajmnohoznačnejších\nnajmnohoznačnejším\nnajmnohoznačnejšími\nnajmnohoznačnejšiu\nnajmnohoznačnejšom\nnajmnohoznačnejšou\nnajmobilnejšej\nnajmobilnejší\nNajmobilnejší\nnajmobilnejšia\nnajmobilnejšie\nnajmobilnejšieho\nnajmobilnejšiemu\nnajmobilnejších\nnajmobilnejším\nnajmobilnejšími\nnajmobilnejšiu\nnajmobilnejšom\nnajmobilnejšou\nnajmocnejšej\nnajmocnejší\nnajmocnejšia\nnajmocnejšieho\nnajmocnejšiemu\nnajmocnejších\nnajmocnejším\nnajmocnejšími\nnajmocnejšiu\nnajmocnejšom\nnajmocnejšou\nnajmočaristejšej\nnajmočaristejší\nnajmočaristejšia\nnajmočaristejšie\nnajmočaristejšieho\nnajmočaristejšiemu\nnajmočaristejších\nnajmočaristejším\nnajmočaristejšími\nnajmočaristejšiu\nnajmočaristejšom\nnajmočaristejšou\nnajmódnejšej\nnajmódnejší\nnajmódnejšia\nnajmódnejšie\nnajmódnejšieho\nnajmódnejšiemu\nnajmódnejších\nnajmódnejším\nnajmódnejšími\nnajmódnejšiu\nnajmódnejšom\nnajmódnejšou\nnajmodrastejšej\nnajmodrastejší\nnajmodrastejšia\nnajmodrastejšie\nnajmodrastejšieho\nnajmodrastejšiemu\nnajmodrastejších\nnajmodrastejším\nnajmodrastejšími\nnajmodrastejšiu\nnajmodrastejšom\nnajmodrastejšou\nnajmodravejšej\nnajmodravejší\nnajmodravejšia\nnajmodravejšie\nnajmodravejšieho\nnajmodravejšiemu\nnajmodravejších\nnajmodravejším\nnajmodravejšími\nnajmodravejšiu\nnajmodravejšom\nnajmodravejšou\nnajmodrejšej\nnajmodrejší\nnajmodrejšia\nnajmodrejšie\nnajmodrejšieho\nnajmodrejšiemu\nnajmodrejších\nnajmodrejším\nnajmodrejšími\nnajmodrejšiu\nnajmodrejšom\nnajmodrejšou\nnajmohamedánskejšej\nnajmohamedánskejší\nnajmohamedánskejšia\nnajmohamedánskejšie\nnajmohamedánskejšieho\nnajmohamedánskejšiemu\nnajmohamedánskejších\nnajmohamedánskejším\nnajmohamedánskejšími\nnajmohamedánskejšiu\nnajmohamedánskejšom\nnajmohamedánskejšou\nnajmohutnejšej\nnajmohutnejší\nnajmohutnejšia\nnajmohutnejšie\nnajmohutnejšieho\nnajmohutnejšiemu\nnajmohutnejších\nnajmohutnejším\nnajmohutnejšími\nnajmohutnejšiu\nnajmohutnejšom\nnajmohutnejšou\nnájmoch\nnajmokrejšej\nnajmokrejší\nnajmokrejšia\nnajmokrejšie\nnajmokrejšieho\nnajmokrejšiemu\nnajmokrejších\nnajmokrejším\nnajmokrejšími\nnajmokrejšiu\nnajmokrejšom\nnajmokrejšou\nnajmokvavejšej\nnajmokvavejší\nnajmokvavejšia\nnajmokvavejšie\nnajmokvavejšieho\nnajmokvavejšiemu\nnajmokvavejších\nnajmokvavejším\nnajmokvavejšími\nnajmokvavejšiu\nnajmokvavejšom\nnajmokvavejšou\nnajmoletnejšej\nnajmoletnejší\nnajmoletnejšia\nnajmoletnejšie\nnajmoletnejšieho\nnajmoletnejšiemu\nnajmoletnejších\nnajmoletnejším\nnajmoletnejšími\nnajmoletnejšiu\nnajmoletnejšom\nnajmoletnejšou\nnájmom\nnajmondénnejšej\nnajmondénnejší\nnajmondénnejšia\nnajmondénnejšie\nnajmondénnejšieho\nnajmondénnejšiemu\nnajmondénnejších\nnajmondénnejším\nnajmondénnejšími\nnajmondénnejšiu\nnajmondénnejšom\nnajmondénnejšou\nnajmongolskejšej\nnajmongolskejší\nnajmongolskejšia\nnajmongolskejšie\nnajmongolskejšieho\nnajmongolskejšiemu\nnajmongolskejších\nnajmongolskejším\nnajmongolskejšími\nnajmongolskejšiu\nnajmongolskejšom\nnajmongolskejšou\nnajmonolitnejšie\nnajmonotónnejšej\nnajmonotónnejší\nnajmonotónnejšia\nnajmonotónnejšie\nnajmonotónnejšieho\nnajmonotónnejšiemu\nnajmonotónnejších\nnajmonotónnejším\nnajmonotónnejšími\nnajmonotónnejšiu\nnajmonotónnejšom\nnajmonotónnejšou\nnajmonštruóznejšej\nnajmonštruóznejší\nnajmonštruóznejšia\nnajmonštruóznejšie\nnajmonštruóznejšieho\nnajmonštruóznejšiemu\nnajmonštruóznejších\nnajmonštruóznejším\nnajmonštruóznejšími\nnajmonštruóznejšiu\nnajmonštruóznejšom\nnajmonštruóznejšou\nnajmonumentálnejšej\nnajmonumentálnejší\nnajmonumentálnejšia\nnajmonumentálnejšie\nnajmonumentálnejšieho\nnajmonumentálnejšiemu\nnajmonumentálnejších\nnajmonumentálnejším\nnajmonumentálnejšími\nnajmonumentálnejšiu\nnajmonumentálnejšom\nnajmonumentálnejšou\nnajmoralistickejšej\nnajmoralistickejší\nnajmoralistickejšia\nnajmoralistickejšie\nnajmoralistickejšieho\nnajmoralistickejšiemu\nnajmoralistickejších\nnajmoralistickejším\nnajmoralistickejšími\nnajmoralistickejšiu\nnajmoralistickejšom\nnajmoralistickejšou\nnajmoralizátorskejšej\nnajmoralizátorskejší\nnajmoralizátorskejšia\nnajmoralizátorskejšie\nnajmoralizátorskejšieho\nnajmoralizátorskejšiemu\nnajmoralizátorskejších\nnajmoralizátorskejším\nnajmoralizátorskejšími\nnajmoralizátorskejšiu\nnajmoralizátorskejšom\nnajmoralizátorskejšou\nnajmorálnejšej\nnajmorálnejší\nnajmorálnejšia\nnajmorálnejšie\nnajmorálnejšieho\nnajmorálnejšiemu\nnajmorálnejších\nnajmorálnejším\nnajmorálnejšími\nnajmorálnejšiu\nnajmorálnejšom\nnajmorálnejšou\nnajmorbídnejšej\nnajmorbídnejší\nnajmorbídnejšia\nnajmorbídnejšie\nnajmorbídnejšieho\nnajmorbídnejšiemu\nnajmorbídnejších\nnajmorbídnejším\nnajmorbídnejšími\nnajmorbídnejšiu\nnajmorbídnejšom\nnajmorbídnejšou\nnajmorenejšej\nnajmorenejší\nnajmorenejšia\nnajmorenejšie\nnajmorenejšieho\nnajmorenejšiemu\nnajmorenejších\nnajmorenejším\nnajmorenejšími\nnajmorenejšiu\nnajmorenejšom\nnajmorenejšou\nnajmoróznejšej\nnajmoróznejší\nnajmoróznejšia\nnajmoróznejšie\nnajmoróznejšieho\nnajmoróznejšiemu\nnajmoróznejších\nnajmoróznejším\nnajmoróznejšími\nnajmoróznejšiu\nnajmoróznejšom\nnajmoróznejšou\nnajmotorizovanejšej\nnájmov\nnajmozaikovitejšej\nnajmozaikovitejší\nnajmozaikovitejšia\nnajmozaikovitejšie\nnajmozaikovitejšieho\nnajmozaikovitejšiemu\nnajmozaikovitejších\nnajmozaikovitejším\nnajmozaikovitejšími\nnajmozaikovitejšiu\nnajmozaikovitejšom\nnajmozaikovitejšou\nnajmozoľnatejšej\nnajmozoľnatejší\nnajmozoľnatejšia\nnajmozoľnatejšie\nnajmozoľnatejšieho\nnajmozoľnatejšiemu\nnajmozoľnatejších\nnajmozoľnatejším\nnajmozoľnatejšími\nnajmozoľnatejšiu\nnajmozoľnatejšom\nnajmozoľnatejšou\nnajmožnejšej\nnajmožnejší\nnajmožnejšia\nnajmožnejšie\nnajmožnejšieho\nnajmožnejšiemu\nnajmožnejších\nnajmožnejším\nnajmožnejšími\nnajmožnejšiu\nnajmožnejšom\nnajmožnejšou\nnajmračnejšej\nnajmračnejší\nnajmračnejšia\nnajmračnejšie\nnajmračnejšieho\nnajmračnejšiemu\nnajmračnejších\nnajmračnejším\nnajmračnejšími\nnajmračnejšiu\nnajmračnejšom\nnajmračnejšou\nnajmravnejšej\nnajmravnejší\nnajmravnejšia\nnajmravnejšie\nnajmravnejšieho\nnajmravnejšiemu\nnajmravnejších\nnajmravnejším\nnajmravnejšími\nnajmravnejšiu\nnajmravnejšom\nnajmravnejšou\nnajmravopočestnejšej\nnajmravopočestnejší\nnajmravopočestnejšia\nnajmravopočestnejšie\nnajmravopočestnejšieho\nnajmravopočestnejšiemu\nnajmravopočestnejších\nnajmravopočestnejším\nnajmravopočestnejšími\nnajmravopočestnejšiu\nnajmravopočestnejšom\nnajmravopočestnejšou\nnajmravoučnejšej\nnajmravoučnejší\nnajmravoučnejšia\nnajmravoučnejšie\nnajmravoučnejšieho\nnajmravoučnejšiemu\nnajmravoučnejších\nnajmravoučnejším\nnajmravoučnejšími\nnajmravoučnejšiu\nnajmravoučnejšom\nnajmravoučnejšou\nnajmrazivejšej\nnajmrazivejší\nnajmrazivejšia\nnajmrazivejšie\nnajmrazivejšieho\nnajmrazivejšiemu\nnajmrazivejších\nnajmrazivejším\nnajmrazivejšími\nnajmrazivejšiu\nnajmrazivejšom\nnajmrazivejšou\nnajmrazuvzdornejšej\nnajmrazuvzdornejší\nnajmrazuvzdornejšia\nnajmrazuvzdornejšie\nnajmrazuvzdornejšieho\nnajmrazuvzdornejšiemu\nnajmrazuvzdornejších\nnajmrazuvzdornejším\nnajmrazuvzdornejšími\nnajmrazuvzdornejšiu\nnajmrazuvzdornejšom\nnajmrazuvzdornejšou\nnajmrežovanejšej\nnajmrežovanejší\nnajmrežovanejšia\nnajmrežovanejšie\nnajmrežovanejšieho\nnajmrežovanejšiemu\nnajmrežovanejších\nnajmrežovanejším\nnajmrežovanejšími\nnajmrežovanejšiu\nnajmrežovanejšom\nnajmrežovanejšou\nnajmrchavejšej\nnajmrchavejší\nnajmrchavejšia\nnajmrchavejšie\nnajmrchavejšieho\nnajmrchavejšiemu\nnajmrchavejších\nnajmrchavejším\nnajmrchavejšími\nnajmrchavejšiu\nnajmrchavejšom\nnajmrchavejšou\nnajmriežkovanejšej\nnajmriežkovanejší\nnajmriežkovanejšia\nnajmriežkovanejšie\nnajmriežkovanejšieho\nnajmriežkovanejšiemu\nnajmriežkovanejších\nnajmriežkovanejším\nnajmriežkovanejšími\nnajmriežkovanejšiu\nnajmriežkovanejšom\nnajmriežkovanejšou\nnajmŕtvejšej\nnajmŕtvejší\nnajmŕtvejšia\nnajmŕtvejšie\nnajmŕtvejšieho\nnajmŕtvejšiemu\nnajmŕtvejších\nnajmŕtvejším\nnajmŕtvejšími\nnajmŕtvejšiu\nnajmŕtvejšom\nnajmŕtvejšou\nnajmŕtvolnejšej\nnajmŕtvolnejší\nnajmŕtvolnejšia\nnajmŕtvolnejšie\nnajmŕtvolnejšieho\nnajmŕtvolnejšiemu\nnajmŕtvolnejších\nnajmŕtvolnejším\nnajmŕtvolnejšími\nnajmŕtvolnejšiu\nnajmŕtvolnejšom\nnajmŕtvolnejšou\nnajmrzutejšej\nnajmrzutejší\nnajmrzutejšia\nnajmrzutejšie\nnajmrzutejšieho\nnajmrzutejšiemu\nnajmrzutejších\nnajmrzutejším\nnajmrzutejšími\nnajmrzutejšiu\nnajmrzutejšom\nnajmrzutejšou\nnájmu\nnajmúci\nnajmučivejšej\nnajmučivejší\nnajmučivejšia\nnajmučivejšie\nnajmučivejšieho\nnajmučivejšiemu\nnajmučivejších\nnajmučivejším\nnajmučivejšími\nnajmučivejšiu\nnajmučivejšom\nnajmučivejšou\nnajmúčnatejšej\nnajmúčnatejší\nnajmúčnatejšia\nnajmúčnatejšie\nnajmúčnatejšieho\nnajmúčnatejšiemu\nnajmúčnatejších\nnajmúčnatejším\nnajmúčnatejšími\nnajmúčnatejšiu\nnajmúčnatejšom\nnajmúčnatejšou\nnajmudráckejšej\nnajmudráckejší\nnajmudráckejšia\nnajmudráckejšie\nnajmudráckejšieho\nnajmudráckejšiemu\nnajmudráckejších\nnajmudráckejším\nnajmudráckejšími\nnajmudráckejšiu\nnajmudráckejšom\nnajmudráckejšou\nnajmudrlantskejšej\nnajmudrlantskejší\nnajmudrlantskejšia\nnajmudrlantskejšie\nnajmudrlantskejšieho\nnajmudrlantskejšiemu\nnajmudrlantskejších\nnajmudrlantskejším\nnajmudrlantskejšími\nnajmudrlantskejšiu\nnajmudrlantskejšom\nnajmudrlantskejšou\nnajmultikultúrnejšej\nnajmultikultúrnejší\nnajmultikultúrnejšia\nnajmultikultúrnejšie\nnajmultikultúrnejšieho\nnajmultikultúrnejšiemu\nnajmultikultúrnejších\nnajmultikultúrnejším\nnajmultikultúrnejšími\nnajmultikultúrnejšiu\nnajmultikultúrnejšom\nnajmultikultúrnejšou\nnajmušľovitejšej\nnajmušľovitejší\nnajmušľovitejšia\nnajmušľovitejšie\nnajmušľovitejšieho\nnajmušľovitejšiemu\nnajmušľovitejších\nnajmušľovitejším\nnajmušľovitejšími\nnajmušľovitejšiu\nnajmušľovitejšom\nnajmušľovitejšou\nnajmútnejšej\nnajmútnejší\nnajmútnejšia\nnajmútnejšie\nnajmútnejšieho\nnajmútnejšiemu\nnajmútnejších\nnajmútnejším\nnajmútnejšími\nnajmútnejšiu\nnajmútnejšom\nnajmútnejšou\nnajmuzikálnejšej\nnajmuzikálnejší\nnajmuzikálnejšia\nnajmuzikálnejšie\nnajmuzikálnejšieho\nnajmuzikálnejšiemu\nnajmuzikálnejších\nnajmuzikálnejším\nnajmuzikálnejšími\nnajmuzikálnejšiu\nnajmuzikálnejšom\nnajmuzikálnejšou\nnajmužnejšej\nnajmužnejší\nnajmužnejšia\nnajmužnejšie\nnajmužnejšieho\nnajmužnejšiemu\nnajmužnejších\nnajmužnejším\nnajmužnejšími\nnajmužnejšiu\nnajmužnejšom\nnajmužnejšou\nnajmužskejšej\nnajmužskejší\nnajmužskejšia\nnajmužskejšie\nnajmužskejšieho\nnajmužskejšiemu\nnajmužskejších\nnajmužskejším\nnajmužskejšími\nnajmužskejšiu\nnajmužskejšom\nnajmužskejšou\nnájmy\nnajmykanejšej\nnajmykanejší\nnajmykanejšia\nnajmykanejšie\nnajmykanejšieho\nnajmykanejšiemu\nnajmykanejších\nnajmykanejším\nnajmykanejšími\nnajmykanejšiu\nnajmykanejšom\nnajmykanejšou\nnajmylnejšej\nnajmylnejší\nnajmylnejšia\nnajmylnejšie\nnajmylnejšieho\nnajmylnejšiemu\nnajmylnejších\nnajmylnejším\nnajmylnejšími\nnajmylnejšiu\nnajmylnejšom\nnajmylnejšou\nnajmysterióznejšej\nnajmysterióznejší\nnajmysterióznejšia\nnajmysterióznejšie\nnajmysterióznejšieho\nnajmysterióznejšiemu\nnajmysterióznejších\nnajmysterióznejším\nnajmysterióznejšími\nnajmysterióznejšiu\nnajmysterióznejšom\nnajmysterióznejšou\nnajmystickejšej\nnajmystickejší\nnajmystickejšia\nnajmystickejšie\nnajmystickejšieho\nnajmystickejšiemu\nnajmystickejších\nnajmystickejším\nnajmystickejšími\nnajmystickejšiu\nnajmystickejšom\nnajmystickejšou\nnajnabádavejšej\nnajnabádavejší\nnajnabádavejšia\nnajnabádavejšie\nnajnabádavejšieho\nnajnabádavejšiemu\nnajnabádavejších\nnajnabádavejším\nnajnabádavejšími\nnajnabádavejšiu\nnajnabádavejšom\nnajnabádavejšou\nnajnaberanejšej\nnajnaberanejší\nnajnaberanejšia\nnajnaberanejšie\nnajnaberanejšieho\nnajnaberanejšiemu\nnajnaberanejších\nnajnaberanejším\nnajnaberanejšími\nnajnaberanejšiu\nnajnaberanejšom\nnajnaberanejšou\nnajnábožnejšej\nnajnábožnejší\nnajnábožnejšia\nnajnábožnejšie\nnajnábožnejšieho\nnajnábožnejšiemu\nnajnábožnejších\nnajnábožnejším\nnajnábožnejšími\nnajnábožnejšiu\nnajnábožnejšom\nnajnábožnejšou\nnajnacionalistickejšej\nnajnacionalistickejší\nnajnacionalistickejšia\nnajnacionalistickejšie\nnajnacionalistickejšieho\nnajnacionalistickejšiemu\nnajnacionalistickejších\nnajnacionalistickejším\nnajnacionalistickejšími\nnajnacionalistickejšiu\nnajnacionalistickejšom\nnajnacionalistickejšou\nnajnacionálnejšej\nnajnacionálnejší\nnajnacionálnejšia\nnajnacionálnejšie\nnajnacionálnejšieho\nnajnacionálnejšiemu\nnajnacionálnejších\nnajnacionálnejším\nnajnacionálnejšími\nnajnacionálnejšiu\nnajnacionálnejšom\nnajnacionálnejšou\nnajnadanejšej\nnajnadanejší\nnajnadanejšia\nnajnadanejšie\nnajnadanejšieho\nnajnadanejšiemu\nnajnadanejších\nnajnadanejším\nnajnadanejšími\nnajnadanejšiu\nnajnadanejšom\nnajnadanejšou\nnajnadčasovejšie\nnajnádejnejšej\nnajnádejnejší\nnajnádejnejšia\nnajnádejnejšie\nnajnádejnejšieho\nnajnádejnejšiemu\nnajnádejnejších\nnajnádejnejším\nNajnádejnejším\nnajnádejnejšími\nnajnádejnejšiu\nnajnádejnejšom\nnajnádejnejšou\nnajnádhernejšej\nnajnádhernejší\nnajnádhernejšia\nnajnádhernejšie\nnajnádhernejšieho\nnajnádhernejšiemu\nnajnádhernejších\nnajnádhernejším\nnajnádhernejšími\nnajnádhernejšiu\nnajnádhernejšom\nnajnádhernejšou\nnajnadlhšie\nnajnadnesenejšej\nnajnadnesenejší\nnajnadnesenejšia\nnajnadnesenejšie\nnajnadnesenejšieho\nnajnadnesenejšiemu\nnajnadnesenejších\nnajnadnesenejším\nnajnadnesenejšími\nnajnadnesenejšiu\nnajnadnesenejšom\nnajnadnesenejšou\nnajnádorovitejšej\nnajnádorovitejší\nnajnádorovitejšia\nnajnádorovitejšie\nnajnádorovitejšieho\nnajnádorovitejšiemu\nnajnádorovitejších\nnajnádorovitejším\nnajnádorovitejšími\nnajnádorovitejšiu\nnajnádorovitejšom\nnajnádorovitejšou\nnajnadpriemernejšej\nnajnadpriemernejší\nnajnadpriemernejšia\nnajnadpriemernejšie\nnajnadpriemernejšieho\nnajnadpriemernejšiemu\nnajnadpriemernejších\nnajnadpriemernejším\nnajnadpriemernejšími\nnajnadpriemernejšiu\nnajnadpriemernejšom\nnajnadpriemernejšou\nnajnadradenejšej\nnajnadradenejší\nnajnadradenejšia\nnajnadradenejšie\nnajnadradenejšieho\nnajnadradenejšiemu\nnajnadradenejších\nnajnadradenejším\nnajnadradenejšími\nnajnadradenejšiu\nnajnadradenejšom\nnajnadradenejšou\nnajnadšenejšej\nnajnadšenejší\nnajnadšenejšia\nnajnadšenejšie\nnajnadšenejšieho\nnajnadšenejšiemu\nnajnadšenejších\nnajnadšenejším\nnajnadšenejšími\nnajnadšenejšiu\nnajnadšenejšom\nnajnadšenejšou\nnajnadtriednejšej\nnajnadtriednejší\nnajnadtriednejšia\nnajnadtriednejšie\nnajnadtriednejšieho\nnajnadtriednejšiemu\nnajnadtriednejších\nnajnadtriednejším\nnajnadtriednejšími\nnajnadtriednejšiu\nnajnadtriednejšom\nnajnadtriednejšou\nnajnadudranejšej\nnajnadudranejší\nnajnadudranejšia\nnajnadudranejšie\nnajnadudranejšieho\nnajnadudranejšiemu\nnajnadudranejších\nnajnadudranejším\nnajnadudranejšími\nnajnadudranejšiu\nnajnadudranejšom\nnajnadudranejšou\nnajnadurdenejšej\nnajnadurdenejší\nnajnadurdenejšia\nnajnadurdenejšie\nnajnadurdenejšieho\nnajnadurdenejšiemu\nnajnadurdenejších\nnajnadurdenejším\nnajnadurdenejšími\nnajnadurdenejšiu\nnajnadurdenejšom\nnajnadurdenejšou\nnajnadutejšej\nnajnadutejší\nnajnadutejšia\nnajnadutejšie\nnajnadutejšieho\nnajnadutejšiemu\nnajnadutejších\nnajnadutejším\nnajnadutejšími\nnajnadutejšiu\nnajnadutejšom\nnajnadutejšou\nnajnadväznejšie\nnajnadýchnutejšej\nnajnadýchnutejší\nnajnadýchnutejšia\nnajnadýchnutejšie\nnajnadýchnutejšieho\nnajnadýchnutejšiemu\nnajnadýchnutejších\nnajnadýchnutejším\nnajnadýchnutejšími\nnajnadýchnutejšiu\nnajnadýchnutejšom\nnajnadýchnutejšou\nnajnafúkanejšej\nnajnafúkanejší\nnajnafúkanejšia\nnajnafúkanejšie\nnajnafúkanejšieho\nnajnafúkanejšiemu\nnajnafúkanejších\nnajnafúkanejším\nnajnafúkanejšími\nnajnafúkanejšiu\nnajnafúkanejšom\nnajnafúkanejšou\nnajnahatejšej\nnajnahatejší\nnajnahatejšia\nnajnahatejšie\nnajnahatejšieho\nnajnahatejšiemu\nnajnahatejších\nnajnahatejším\nnajnahatejšími\nnajnahatejšiu\nnajnahatejšom\nnajnahatejšou\nnajnáhlejšej\nnajnáhlejší\nnajnáhlejšia\nnajnáhlejšieho\nnajnáhlejšiemu\nnajnáhlejších\nnajnáhlejším\nnajnáhlejšími\nnajnáhlejšiu\nnajnáhlejšom\nnajnáhlejšou\nnajnáhlivejšej\nnajnáhlivejší\nnajnáhlivejšia\nnajnáhlivejšie\nnajnáhlivejšieho\nnajnáhlivejšiemu\nnajnáhlivejších\nnajnáhlivejším\nnajnáhlivejšími\nnajnáhlivejšiu\nnajnáhlivejšom\nnajnáhlivejšou\nnajnahluchlejšej\nnajnahluchlejší\nnajnahluchlejšia\nnajnahluchlejšie\nnajnahluchlejšieho\nnajnahluchlejšiemu\nnajnahluchlejších\nnajnahluchlejším\nnajnahluchlejšími\nnajnahluchlejšiu\nnajnahluchlejšom\nnajnahluchlejšou\nnajnahnevanejšej\nnajnahnevanejší\nnajnahnevanejšia\nnajnahnevanejšie\nnajnahnevanejšieho\nnajnahnevanejšiemu\nnajnahnevanejších\nnajnahnevanejším\nnajnahnevanejšími\nnajnahnevanejšiu\nnajnahnevanejšom\nnajnahnevanejšou\nnajnahnitejšej\nnajnahnitejší\nnajnahnitejšia\nnajnahnitejšie\nnajnahnitejšieho\nnajnahnitejšiemu\nnajnahnitejších\nnajnahnitejším\nnajnahnitejšími\nnajnahnitejšiu\nnajnahnitejšom\nnajnahnitejšou\nnajnahrubšie\nnajnáchylnejšej\nnajnáchylnejší\nnajnáchylnejšia\nnajnáchylnejšie\nnajnáchylnejšieho\nnajnáchylnejšiemu\nnajnáchylnejších\nnajnáchylnejším\nnajnáchylnejšími\nnajnáchylnejšiu\nnajnáchylnejšom\nnajnáchylnejšou\nnajnaivnejšej\nnajnaivnejší\nnajnaivnejšia\nnajnaivnejšie\nnajnaivnejšieho\nnajnaivnejšiemu\nnajnaivnejších\nnajnaivnejším\nnajnaivnejšími\nnajnaivnejšiu\nnajnaivnejšom\nnajnaivnejšou\nnajnajedovanejšej\nnajnajedovanejší\nnajnajedovanejšia\nnajnajedovanejšie\nnajnajedovanejšieho\nnajnajedovanejšiemu\nnajnajedovanejších\nnajnajedovanejším\nnajnajedovanejšími\nnajnajedovanejšiu\nnajnajedovanejšom\nnajnajedovanejšou\nnajnajemnejšie\nnajnákazlivejšej\nnajnákazlivejší\nnajnákazlivejšia\nnajnákazlivejšie\nnajnákazlivejšieho\nnajnákazlivejšiemu\nnajnákazlivejších\nnajnákazlivejším\nnajnákazlivejšími\nnajnákazlivejšiu\nnajnákazlivejšom\nnajnákazlivejšou\nnajnákladnejšej\nnajnákladnejší\nnajnákladnejšia\nnajnákladnejšie\nnajnákladnejšieho\nnajnákladnejšiemu\nnajnákladnejších\nnajnákladnejším\nnajnákladnejšími\nnajnákladnejšiu\nnajnákladnejšom\nnajnákladnejšou\nnajnaklonenejšej\nnajnaklonenejší\nnajnaklonenejšia\nnajnaklonenejšie\nnajnaklonenejšieho\nnajnaklonenejšiemu\nnajnaklonenejších\nnajnaklonenejším\nnajnaklonenejšími\nnajnaklonenejšiu\nnajnaklonenejšom\nnajnaklonenejšou\nnajnáklonnejšej\nnajnáklonnejší\nnajnáklonnejšia\nnajnáklonnejšie\nnajnáklonnejšieho\nnajnáklonnejšiemu\nnajnáklonnejších\nnajnáklonnejším\nnajnáklonnejšími\nnajnáklonnejšiu\nnajnáklonnejšom\nnajnáklonnejšou\nnajnáladovejšej\nnajnáladovejší\nnajnáladovejšia\nnajnáladovejšie\nnajnáladovejšieho\nnajnáladovejšiemu\nnajnáladovejších\nnajnáladovejším\nnajnáladovejšími\nnajnáladovejšiu\nnajnáladovejšom\nnajnáladovejšou\nnajnaľakanejšej\nnajnaľakanejší\nnajnaľakanejšia\nnajnaľakanejšie\nnajnaľakanejšieho\nnajnaľakanejšiemu\nnajnaľakanejších\nnajnaľakanejším\nnajnaľakanejšími\nnajnaľakanejšiu\nnajnaľakanejšom\nnajnaľakanejšou\nnajnáležitejšej\nnajnáležitejší\nnajnáležitejšia\nnajnáležitejšie\nnajnáležitejšieho\nnajnáležitejšiemu\nnajnáležitejších\nnajnáležitejším\nnajnáležitejšími\nnajnáležitejšiu\nnajnáležitejšom\nnajnáležitejšou\nnajnaliehavejšej\nnajnaliehavejší\nnajnaliehavejšia\nnajnaliehavejšie\nnajnaliehavejšieho\nnajnaliehavejšiemu\nnajnaliehavejších\nnajnaliehavejším\nnajnaliehavejšími\nnajnaliehavejšiu\nnajnaliehavejšom\nnajnaliehavejšou\nnajnamosúrenejšej\nnajnamosúrenejší\nnajnamosúrenejšia\nnajnamosúrenejšie\nnajnamosúrenejšieho\nnajnamosúrenejšiemu\nnajnamosúrenejších\nnajnamosúrenejším\nnajnamosúrenejšími\nnajnamosúrenejšiu\nnajnamosúrenejšom\nnajnamosúrenejšou\nnajnamrzenejšej\nnajnamrzenejší\nnajnamrzenejšia\nnajnamrzenejšie\nnajnamrzenejšieho\nnajnamrzenejšiemu\nnajnamrzenejších\nnajnamrzenejším\nnajnamrzenejšími\nnajnamrzenejšiu\nnajnamrzenejšom\nnajnamrzenejšou\nnajnamyslenejšej\nnajnamyslenejší\nnajnamyslenejšia\nnajnamyslenejšie\nnajnamyslenejšieho\nnajnamyslenejšiemu\nnajnamyslenejších\nnajnamyslenejším\nnajnamyslenejšími\nnajnamyslenejšiu\nnajnamyslenejšom\nnajnamyslenejšou\nnajnaničhodnejšej\nnajnaničhodnejší\nnajnaničhodnejšia\nnajnaničhodnejšie\nnajnaničhodnejšieho\nnajnaničhodnejšiemu\nnajnaničhodnejších\nnajnaničhodnejším\nnajnaničhodnejšími\nnajnaničhodnejšiu\nnajnaničhodnejšom\nnajnaničhodnejšou\nnajnaozajstnejšej\nnajnaozajstnejší\nnajnaozajstnejšia\nnajnaozajstnejšie\nnajnaozajstnejšieho\nnajnaozajstnejšiemu\nnajnaozajstnejších\nnajnaozajstnejším\nnajnaozajstnejšími\nnajnaozajstnejšiu\nnajnaozajstnejšom\nnajnaozajstnejšou\nnajnápaditejšej\nnajnápaditejší\nnajnápaditejšia\nnajnápaditejšie\nnajnápaditejšieho\nnajnápaditejšiemu\nnajnápaditejších\nnajnápaditejším\nnajnápaditejšími\nnajnápaditejšiu\nnajnápaditejšom\nnajnápaditejšou\nnajnápadnejšej\nnajnápadnejší\nnajnápadnejšia\nnajnápadnejšie\nnajnápadnejšieho\nnajnápadnejšiemu\nnajnápadnejších\nnajnápadnejším\nNajnápadnejším\nnajnápadnejšími\nnajnápadnejšiu\nnajnápadnejšom\nnajnápadnejšou\nnajnapajedenejšej\nnajnapajedenejší\nnajnapajedenejšia\nnajnapajedenejšie\nnajnapajedenejšieho\nnajnapajedenejšiemu\nnajnapajedenejších\nnajnapajedenejším\nnajnapajedenejšími\nnajnapajedenejšiu\nnajnapajedenejšom\nnajnapajedenejšou\nnajnapálenejšej\nnajnapálenejší\nnajnapálenejšia\nnajnapálenejšie\nnajnapálenejšieho\nnajnapálenejšiemu\nnajnapálenejších\nnajnapálenejším\nnajnapálenejšími\nnajnapálenejšiu\nnajnapálenejšom\nnajnapálenejšou\nnajnapaprčenejšej\nnajnapaprčenejší\nnajnapaprčenejšia\nnajnapaprčenejšie\nnajnapaprčenejšieho\nnajnapaprčenejšiemu\nnajnapaprčenejších\nnajnapaprčenejším\nnajnapaprčenejšími\nnajnapaprčenejšiu\nnajnapaprčenejšom\nnajnapaprčenejšou\nnajnapätejšia\nnajnapätejšie\nnajnapätejším\nnajnapínavejšej\nnajnapínavejší\nnajnapínavejšia\nnajnapínavejšie\nnajnapínavejšieho\nnajnapínavejšiemu\nnajnapínavejších\nnajnapínavejším\nnajnapínavejšími\nnajnapínavejšiu\nnajnapínavejšom\nnajnapínavejšou\nnajnaplašenejšej\nnajnaplašenejší\nnajnaplašenejšia\nnajnaplašenejšie\nnajnaplašenejšieho\nnajnaplašenejšiemu\nnajnaplašenejších\nnajnaplašenejším\nnajnaplašenejšími\nnajnaplašenejšiu\nnajnaplašenejšom\nnajnaplašenejšou\nnajnapnutejšej\nnajnapnutejší\nnajnapnutejšia\nnajnapnutejšie\nnajnapnutejšieho\nnajnapnutejšiemu\nnajnapnutejších\nnajnapnutejším\nnajnapnutejšími\nnajnapnutejšiu\nnajnapnutejšom\nnajnapnutejšou\nnajnápomocnejšej\nnajnápomocnejší\nnajnápomocnejšia\nnajnápomocnejšie\nnajnápomocnejšieho\nnajnápomocnejšiemu\nnajnápomocnejších\nnajnápomocnejším\nnajnápomocnejšími\nnajnápomocnejšiu\nnajnápomocnejšom\nnajnápomocnejšou\nnajnaradostenejšej\nnajnaradostenejší\nnajnaradostenejšia\nnajnaradostenejšie\nnajnaradostenejšieho\nnajnaradostenejšiemu\nnajnaradostenejších\nnajnaradostenejším\nnajnaradostenejšími\nnajnaradostenejšiu\nnajnaradostenejšom\nnajnaradostenejšou\nnajnaradovanejšej\nnajnaradovanejší\nnajnaradovanejšia\nnajnaradovanejšie\nnajnaradovanejšieho\nnajnaradovanejšiemu\nnajnaradovanejších\nnajnaradovanejším\nnajnaradovanejšími\nnajnaradovanejšiu\nnajnaradovanejšom\nnajnaradovanejšou\nnajnárazovitejšej\nnajnárazovitejší\nnajnárazovitejšia\nnajnárazovitejšie\nnajnárazovitejšieho\nnajnárazovitejšiemu\nnajnárazovitejších\nnajnárazovitejším\nnajnárazovitejšími\nnajnárazovitejšiu\nnajnárazovitejšom\nnajnárazovitejšou\nnajnariekavejšej\nnajnariekavejší\nnajnariekavejšia\nnajnariekavejšie\nnajnariekavejšieho\nnajnariekavejšiemu\nnajnariekavejších\nnajnariekavejším\nnajnariekavejšími\nnajnariekavejšiu\nnajnariekavejšom\nnajnariekavejšou\nnajnárodnejšej\nnajnárodnejší\nnajnárodnejšia\nnajnárodnejšie\nnajnárodnejšieho\nnajnárodnejšiemu\nnajnárodnejších\nnajnárodnejším\nnajnárodnejšími\nnajnárodnejšiu\nnajnárodnejšom\nnajnárodnejšou\nnajnáruživejšej\nnajnáruživejší\nnajnáruživejšia\nnajnáruživejšie\nnajnáruživejšieho\nnajnáruživejšiemu\nnajnáruživejších\nnajnáruživejším\nnajnáruživejšími\nnajnáruživejšiu\nnajnáruživejšom\nnajnáruživejšou\nnajnásilnejšej\nnajnásilnejší\nnajnásilnejšia\nnajnásilnejšie\nnajnásilnejšieho\nnajnásilnejšiemu\nnajnásilnejších\nnajnásilnejším\nnajnásilnejšími\nnajnásilnejšiu\nnajnásilnejšom\nnajnásilnejšou\nnajnásilníckejšej\nnajnásilníckejší\nnajnásilníckejšia\nnajnásilníckejšie\nnajnásilníckejšieho\nnajnásilníckejšiemu\nnajnásilníckejších\nnajnásilníckejším\nnajnásilníckejšími\nnajnásilníckejšiu\nnajnásilníckejšom\nnajnásilníckejšou\nnajnaslovovzatejšej\nnajnaslovovzatejší\nnajnaslovovzatejšia\nnajnaslovovzatejšie\nnajnaslovovzatejšieho\nnajnaslovovzatejšiemu\nnajnaslovovzatejších\nnajnaslovovzatejším\nnajnaslovovzatejšími\nnajnaslovovzatejšiu\nnajnaslovovzatejšom\nnajnaslovovzatejšou\nnajnasprostastejšej\nnajnasprostastejší\nnajnasprostastejšia\nnajnasprostastejšie\nnajnasprostastejšieho\nnajnasprostastejšiemu\nnajnasprostastejších\nnajnasprostastejším\nnajnasprostastejšími\nnajnasprostastejšiu\nnajnasprostastejšom\nnajnasprostastejšou\nnajnasrdenejšej\nnajnasrdenejší\nnajnasrdenejšia\nnajnasrdenejšie\nnajnasrdenejšieho\nnajnasrdenejšiemu\nnajnasrdenejších\nnajnasrdenejším\nnajnasrdenejšími\nnajnasrdenejšiu\nnajnasrdenejšom\nnajnasrdenejšou\nnajnasršenejšej\nnajnasršenejší\nnajnasršenejšia\nnajnasršenejšie\nnajnasršenejšieho\nnajnasršenejšiemu\nnajnasršenejších\nnajnasršenejším\nnajnasršenejšími\nnajnasršenejšiu\nnajnasršenejšom\nnajnasršenejšou\nnajnastaviteľnejšej\nnajnastaviteľnejší\nnajnastaviteľnejšia\nnajnastaviteľnejšie\nnajnastaviteľnejšieho\nnajnastaviteľnejšiemu\nnajnastaviteľnejších\nnajnastaviteľnejším\nnajnastaviteľnejšími\nnajnastaviteľnejšiu\nnajnastaviteľnejšom\nnajnastaviteľnejšou\nnajnástojčivejšej\nnajnástojčivejší\nnajnástojčivejšia\nnajnástojčivejšie\nnajnástojčivejšieho\nnajnástojčivejšiemu\nnajnástojčivejších\nnajnástojčivejším\nnajnástojčivejšími\nnajnástojčivejšiu\nnajnástojčivejšom\nnajnástojčivejšou\nnajnastráchanejšej\nnajnastráchanejší\nnajnastráchanejšia\nnajnastráchanejšie\nnajnastráchanejšieho\nnajnastráchanejšiemu\nnajnastráchanejších\nnajnastráchanejším\nnajnastráchanejšími\nnajnastráchanejšiu\nnajnastráchanejšom\nnajnastráchanejšou\nnajnastrašenejšej\nnajnastrašenejší\nnajnastrašenejšia\nnajnastrašenejšie\nnajnastrašenejšieho\nnajnastrašenejšiemu\nnajnastrašenejších\nnajnastrašenejším\nnajnastrašenejšími\nnajnastrašenejšiu\nnajnastrašenejšom\nnajnastrašenejšou\nnajnasýtenejšej\nnajnasýtenejší\nnajnasýtenejšia\nnajnasýtenejšie\nnajnasýtenejšieho\nnajnasýtenejšiemu\nnajnasýtenejších\nnajnasýtenejším\nnajnasýtenejšími\nnajnasýtenejšiu\nnajnasýtenejšom\nnajnasýtenejšou\nnajnašskejšej\nnajnašskejší\nnajnašskejšia\nnajnašskejšie\nnajnašskejšieho\nnajnašskejšiemu\nnajnašskejších\nnajnašskejším\nnajnašskejšími\nnajnašskejšiu\nnajnašskejšom\nnajnašskejšou\nnajnatenšie\nnajnatešenejšej\nnajnatešenejší\nnajnatešenejšia\nnajnatešenejšie\nnajnatešenejšieho\nnajnatešenejšiemu\nnajnatešenejších\nnajnatešenejším\nnajnatešenejšími\nnajnatešenejšiu\nnajnatešenejšom\nnajnatešenejšou\nnajnatiahnutejšej\nnajnatiahnutejší\nnajnatiahnutejšia\nnajnatiahnutejšie\nnajnatiahnutejšieho\nnajnatiahnutejšiemu\nnajnatiahnutejších\nnajnatiahnutejším\nnajnatiahnutejšími\nnajnatiahnutejšiu\nnajnatiahnutejšom\nnajnatiahnutejšou\nnajnátlakovejšie\nnajnaturalistickejšej\nnajnaturalistickejší\nnajnaturalistickejšia\nnajnaturalistickejšie\nnajnaturalistickejšieho\nnajnaturalistickejšiemu\nnajnaturalistickejších\nnajnaturalistickejším\nnajnaturalistickejšími\nnajnaturalistickejšiu\nnajnaturalistickejšom\nnajnaturalistickejšou\nnajnaturálnejšej\nnajnaturálnejší\nnajnaturálnejšia\nnajnaturálnejšie\nnajnaturálnejšieho\nnajnaturálnejšiemu\nnajnaturálnejších\nnajnaturálnejším\nnajnaturálnejšími\nnajnaturálnejšiu\nnajnaturálnejšom\nnajnaturálnejšou\nnajnáučnejšej\nnajnáučnejší\nnajnáučnejšia\nnajnáučnejšie\nnajnáučnejšieho\nnajnáučnejšiemu\nnajnáučnejších\nnajnáučnejším\nnajnáučnejšími\nnajnáučnejšiu\nnajnáučnejšom\nnajnáučnejšou\nnajnavštevovanejší\nnajnávykovejšej\nnajnávykovejší\nnajnávykovejšia\nnajnávykovejšie\nnajnávykovejšieho\nnajnávykovejšiemu\nnajnávykovejších\nnajnávykovejším\nnajnávykovejšími\nnajnávykovejšiu\nnajnávykovejšom\nnajnávykovejšou\nnajnazlostenejšej\nnajnazlostenejší\nnajnazlostenejšia\nnajnazlostenejšie\nnajnazlostenejšieho\nnajnazlostenejšiemu\nnajnazlostenejších\nnajnazlostenejším\nnajnazlostenejšími\nnajnazlostenejšiu\nnajnazlostenejšom\nnajnazlostenejšou\nnajnáznakovitejšej\nnajnáznakovitejší\nnajnáznakovitejšia\nnajnáznakovitejšie\nnajnáznakovitejšieho\nnajnáznakovitejšiemu\nnajnáznakovitejších\nnajnáznakovitejším\nnajnáznakovitejšími\nnajnáznakovitejšiu\nnajnáznakovitejšom\nnajnáznakovitejšou\nnajnázornejšej\nnajnázornejší\nnajnázornejšia\nnajnázornejšie\nnajnázornejšieho\nnajnázornejšiemu\nnajnázornejších\nnajnázornejším\nnajnázornejšími\nnajnázornejšiu\nnajnázornejšom\nnajnázornejšou\nnajnebadanejšej\nnajnebadanejší\nnajnebadanejšia\nnajnebadanejšieho\nnajnebadanejšiemu\nnajnebadanejších\nnajnebadanejším\nnajnebadanejšími\nnajnebadanejšiu\nnajnebadanejšom\nnajnebadanejšou\nnajnebadateľnejšej\nnajnebadateľnejší\nnajnebadateľnejšia\nnajnebadateľnejšie\nnajnebadateľnejšieho\nnajnebadateľnejšiemu\nnajnebadateľnejších\nnajnebadateľnejším\nnajnebadateľnejšími\nnajnebadateľnejšiu\nnajnebadateľnejšom\nnajnebadateľnejšou\nnajnebezpečnejšej\nnajnebezpečnejší\nnajnebezpečnejšia\nnajnebezpečnejšie\nnajnebezpečnejšieho\nnajnebezpečnejšiemu\nnajnebezpečnejších\nnajnebezpečnejším\nnajnebezpečnejšími\nnajnebezpečnejšiu\nnajnebezpečnejšom\nnajnebezpečnejšou\nnajnebojácnejšej\nnajnebojácnejší\nnajnebojácnejšia\nnajnebojácnejšie\nnajnebojácnejšieho\nnajnebojácnejšiemu\nnajnebojácnejších\nnajnebojácnejším\nnajnebojácnejšími\nnajnebojácnejšiu\nnajnebojácnejšom\nnajnebojácnejšou\nnajneciteľnejšej\nnajneciteľnejší\nnajneciteľnejšia\nnajneciteľnejšie\nnajneciteľnejšieho\nnajneciteľnejšiemu\nnajneciteľnejších\nnajneciteľnejším\nnajneciteľnejšími\nnajneciteľnejšiu\nnajneciteľnejšom\nnajneciteľnejšou\nnajnecitlivejšej\nnajnecitlivejší\nnajnecitlivejšia\nnajnecitlivejšie\nnajnecitlivejšieho\nnajnecitlivejšiemu\nnajnecitlivejších\nnajnecitlivejším\nnajnecitlivejšími\nnajnecitlivejšiu\nnajnecitlivejšom\nnajnecitlivejšou\nnajnecitnejšej\nnajnecitnejší\nnajnecitnejšia\nnajnecitnejšie\nnajnecitnejšieho\nnajnecitnejšiemu\nnajnecitnejších\nnajnecitnejším\nnajnecitnejšími\nnajnecitnejšiu\nnajnecitnejšom\nnajnecitnejšou\nnajnecudnejšej\nnajnecudnejší\nnajnecudnejšia\nnajnecudnejšie\nnajnecudnejšieho\nnajnecudnejšiemu\nnajnecudnejších\nnajnecudnejším\nnajnecudnejšími\nnajnecudnejšiu\nnajnecudnejšom\nnajnecudnejšou\nnajnečakanejšej\nnajnečakanejší\nnajnečakanejšia\nnajnečakanejšie\nnajnečakanejšieho\nnajnečakanejšiemu\nnajnečakanejších\nnajnečakanejším\nnajnečakanejšími\nnajnečakanejšiu\nnajnečakanejšom\nnajnečakanejšou\nnajnečestnejšej\nnajnečestnejší\nnajnečestnejšia\nnajnečestnejšie\nnajnečestnejšieho\nnajnečestnejšiemu\nnajnečestnejších\nnajnečestnejším\nnajnečestnejšími\nnajnečestnejšiu\nnajnečestnejšom\nnajnečestnejšou\nnajnečinnejšej\nnajnečinnejší\nnajnečinnejšia\nnajnečinnejšie\nnajnečinnejšieho\nnajnečinnejšiemu\nnajnečinnejších\nnajnečinnejším\nnajnečinnejšími\nnajnečinnejšiu\nnajnečinnejšom\nnajnečinnejšou\nnajnečistejšej\nnajnečistejší\nnajnečistejšia\nnajnečistejšie\nnajnečistejšieho\nnajnečistejšiemu\nnajnečistejších\nnajnečistejším\nnajnečistejšími\nnajnečistejšiu\nnajnečistejšom\nnajnečistejšou\nnajnečitateľnejšej\nnajnečitateľnejší\nnajnečitateľnejšia\nnajnečitateľnejšie\nnajnečitateľnejšieho\nnajnečitateľnejšiemu\nnajnečitateľnejších\nnajnečitateľnejším\nnajnečitateľnejšími\nnajnečitateľnejšiu\nnajnečitateľnejšom\nnajnečitateľnejšou\nnajnečujnejšej\nnajnečujnejší\nnajnečujnejšia\nnajnečujnejšie\nnajnečujnejšieho\nnajnečujnejšiemu\nnajnečujnejších\nnajnečujnejším\nnajnečujnejšími\nnajnečujnejšiu\nnajnečujnejšom\nnajnečujnejšou\nnajnedávnejšej\nnajnedávnejší\nnajnedávnejšia\nnajnedávnejšie\nnajnedávnejšieho\nnajnedávnejšiemu\nnajnedávnejších\nnajnedávnejším\nnajnedávnejšími\nnajnedávnejšiu\nnajnedávnejšom\nnajnedávnejšou\nnajnedbalejšej\nnajnedbalejší\nnajnedbalejšia\nnajnedbalejšie\nnajnedbalejšieho\nnajnedbalejšiemu\nnajnedbalejších\nnajnedbalejším\nnajnedbalejšími\nnajnedbalejšiu\nnajnedbalejšom\nnajnedbalejšou\nnajnedbanlivejšej\nnajnedbanlivejší\nnajnedbanlivejšia\nnajnedbanlivejšie\nnajnedbanlivejšieho\nnajnedbanlivejšiemu\nnajnedbanlivejších\nnajnedbanlivejším\nnajnedbanlivejšími\nnajnedbanlivejšiu\nnajnedbanlivejšom\nnajnedbanlivejšou\nnajnedefinovateľnejšej\nnajnedefinovateľnejší\nnajnedefinovateľnejšia\nnajnedefinovateľnejšie\nnajnedefinovateľnejšieho\nnajnedefinovateľnejšiemu\nnajnedefinovateľnejších\nnajnedefinovateľnejším\nnajnedefinovateľnejšími\nnajnedefinovateľnejšiu\nnajnedefinovateľnejšom\nnajnedefinovateľnejšou\nnajnedisciplinovanejší\nnajnedisciplinovanejšieho\nnajnedisciplinovanejším\nNajnedisciplinovanejšími\nnajnedobytnejšej\nnajnedobytnejší\nnajnedobytnejšia\nnajnedobytnejšie\nnajnedobytnejšieho\nnajnedobytnejšiemu\nnajnedobytnejších\nnajnedobytnejším\nnajnedobytnejšími\nnajnedobytnejšiu\nnajnedobytnejšom\nnajnedobytnejšou\nnajnedočkavejšej\nnajnedočkavejší\nnajnedočkavejšia\nnajnedočkavejšie\nnajnedočkavejšieho\nnajnedočkavejšiemu\nnajnedočkavejších\nnajnedočkavejším\nnajnedočkavejšími\nnajnedočkavejšiu\nnajnedočkavejšom\nnajnedočkavejšou\nnajnedokonalejšej\nnajnedokonalejší\nnajnedokonalejšia\nnajnedokonalejšie\nnajnedokonalejšieho\nnajnedokonalejšiemu\nnajnedokonalejších\nnajnedokonalejším\nnajnedokonalejšími\nnajnedokonalejšiu\nnajnedokonalejšom\nnajnedokonalejšou\nnajnedokrvenejšej\nnajnedokrvenejší\nnajnedokrvenejšia\nnajnedokrvenejšie\nnajnedokrvenejšieho\nnajnedokrvenejšiemu\nnajnedokrvenejších\nnajnedokrvenejším\nnajnedokrvenejšími\nnajnedokrvenejšiu\nnajnedokrvenejšom\nnajnedokrvenejšou\nnajnedomyslenejšej\nnajnedomyslenejší\nnajnedomyslenejšia\nnajnedomyslenejšie\nnajnedomyslenejšieho\nnajnedomyslenejšiemu\nnajnedomyslenejších\nnajnedomyslenejším\nnajnedomyslenejšími\nnajnedomyslenejšiu\nnajnedomyslenejšom\nnajnedomyslenejšou\nnajnedonosenejšej\nnajnedonosenejší\nnajnedonosenejšia\nnajnedonosenejšie\nnajnedonosenejšieho\nnajnedonosenejšiemu\nnajnedonosenejších\nnajnedonosenejším\nnajnedonosenejšími\nnajnedonosenejšiu\nnajnedonosenejšom\nnajnedonosenejšou\nnajnedosiahnuteľnejšej\nnajnedosiahnuteľnejší\nnajnedosiahnuteľnejšia\nnajnedosiahnuteľnejšie\nnajnedosiahnuteľnejšieho\nnajnedosiahnuteľnejšiemu\nnajnedosiahnuteľnejších\nnajnedosiahnuteľnejším\nnajnedosiahnuteľnejšími\nnajnedosiahnuteľnejšiu\nnajnedosiahnuteľnejšom\nnajnedosiahnuteľnejšou\nnajnedostatkovejšej\nnajnedostatkovejší\nnajnedostatkovejšia\nnajnedostatkovejšie\nnajnedostatkovejšieho\nnajnedostatkovejšiemu\nnajnedostatkovejších\nnajnedostatkovejším\nnajnedostatkovejšími\nnajnedostatkovejšiu\nnajnedostatkovejšom\nnajnedostatkovejšou\nnajnedostatočnejšej\nnajnedostatočnejší\nnajnedostatočnejšia\nnajnedostatočnejšie\nnajnedostatočnejšieho\nnajnedostatočnejšiemu\nnajnedostatočnejších\nnajnedostatočnejším\nnajnedostatočnejšími\nnajnedostatočnejšiu\nnajnedostatočnejšom\nnajnedostatočnejšou\nnajnedostihnuteľnejšie\nnajnedostižnejšej\nnajnedostižnejší\nnajnedostižnejšia\nnajnedostižnejšie\nnajnedostižnejšieho\nnajnedostižnejšiemu\nnajnedostižnejších\nnajnedostižnejším\nnajnedostižnejšími\nnajnedostižnejšiu\nnajnedostižnejšom\nnajnedostižnejšou\nnajnedôstojnejšej\nnajnedôstojnejší\nnajnedôstojnejšia\nnajnedôstojnejšie\nnajnedôstojnejšieho\nnajnedôstojnejšiemu\nnajnedôstojnejších\nnajnedôstojnejším\nnajnedôstojnejšími\nnajnedôstojnejšiu\nnajnedôstojnejšom\nnajnedôstojnejšou\nnajnedostupnejšej\nnajnedostupnejší\nnajnedostupnejšia\nnajnedostupnejšie\nnajnedostupnejšieho\nnajnedostupnejšiemu\nnajnedostupnejších\nnajnedostupnejším\nnajnedostupnejšími\nnajnedostupnejšiu\nnajnedostupnejšom\nnajnedostupnejšou\nnajnedotklivejšej\nnajnedotklivejší\nnajnedotklivejšia\nnajnedotklivejšie\nnajnedotklivejšieho\nnajnedotklivejšiemu\nnajnedotklivejších\nnajnedotklivejším\nnajnedotklivejšími\nnajnedotklivejšiu\nnajnedotklivejšom\nnajnedotklivejšou\nnajnedôverčivejšej\nnajnedôverčivejší\nnajnedôverčivejšia\nnajnedôverčivejšie\nnajnedôverčivejšieho\nnajnedôverčivejšiemu\nnajnedôverčivejších\nnajnedôverčivejším\nnajnedôverčivejšími\nnajnedôverčivejšiu\nnajnedôverčivejšom\nnajnedôverčivejšou\nnajnedôveryhodnejšej\nnajnedôveryhodnejší\nnajnedôveryhodnejšia\nnajnedôveryhodnejšie\nnajnedôveryhodnejšieho\nnajnedôveryhodnejšiemu\nnajnedôveryhodnejších\nnajnedôveryhodnejším\nnajnedôveryhodnejšími\nNajnedôveryhodnejšími\nnajnedôveryhodnejšiu\nnajnedôveryhodnejšom\nnajnedôveryhodnejšou\nNajnedôveryhodnejšou\nnajneduživejšej\nnajneduživejší\nnajneduživejšia\nnajneduživejšie\nnajneduživejšieho\nnajneduživejšiemu\nnajneduživejších\nnajneduživejším\nnajneduživejšími\nnajneduživejšiu\nnajneduživejšom\nnajneduživejšou\nnajnedýchateľnejšej\nnajnedýchateľnejší\nnajnedýchateľnejšia\nnajnedýchateľnejšie\nnajnedýchateľnejšieho\nnajnedýchateľnejšiemu\nnajnedýchateľnejších\nnajnedýchateľnejším\nnajnedýchateľnejšími\nnajnedýchateľnejšiu\nnajnedýchateľnejšom\nnajnedýchateľnejšou\nnajneefektívnejšej\nnajneefektívnejší\nnajneefektívnejšia\nnajneefektívnejšie\nnajneefektívnejšieho\nnajneefektívnejšiemu\nnajneefektívnejších\nnajneefektívnejším\nnajneefektívnejšími\nnajneefektívnejšiu\nnajneefektívnejšom\nnajneefektívnejšou\nnajneekonomickejšie\nnajnefalšovanejšej\nnajnefalšovanejší\nnajnefalšovanejšia\nnajnefalšovanejšie\nnajnefalšovanejšieho\nnajnefalšovanejšiemu\nnajnefalšovanejších\nnajnefalšovanejším\nnajnefalšovanejšími\nnajnefalšovanejšiu\nnajnefalšovanejšom\nnajnefalšovanejšou\nnajneférovejšej\nnajneférovejší\nnajneférovejšia\nnajneférovejšie\nnajneférovejšieho\nnajneférovejšiemu\nnajneférovejších\nnajneférovejším\nnajneférovejšími\nnajneférovejšiu\nnajneférovejšom\nnajneférovejšou\nnajneforemnejšej\nnajneforemnejší\nnajneforemnejšia\nnajneforemnejšie\nnajneforemnejšieho\nnajneforemnejšiemu\nnajneforemnejších\nnajneforemnejším\nnajneforemnejšími\nnajneforemnejšiu\nnajneforemnejšom\nnajneforemnejšou\nnajneformálnejšej\nnajneformálnejší\nnajneformálnejšia\nnajneformálnejšie\nnajneformálnejšieho\nnajneformálnejšiemu\nnajneformálnejších\nnajneformálnejším\nnajneformálnejšími\nnajneformálnejšiu\nnajneformálnejšom\nnajneformálnejšou\nnajnegativistickejšej\nnajnegativistickejší\nnajnegativistickejšia\nnajnegativistickejšie\nnajnegativistickejšieho\nnajnegativistickejšiemu\nnajnegativistickejších\nnajnegativistickejším\nnajnegativistickejšími\nnajnegativistickejšiu\nnajnegativistickejšom\nnajnegativistickejšou\nnajnegatívnejšej\nnajnegatívnejší\nnajnegatívnejšia\nnajnegatívnejšie\nnajnegatívnejšieho\nnajnegatívnejšiemu\nnajnegatívnejších\nnajnegatívnejším\nnajnegatívnejšími\nnajnegatívnejšiu\nnajnegatívnejšom\nnajnegatívnejšou\nnajnehanebnejšej\nnajnehanebnejší\nnajnehanebnejšia\nnajnehanebnejšie\nnajnehanebnejšieho\nnajnehanebnejšiemu\nnajnehanebnejších\nnajnehanebnejším\nnajnehanebnejšími\nnajnehanebnejšiu\nnajnehanebnejšom\nnajnehanebnejšou\nnajnehatenejšej\nnajnehatenejší\nnajnehatenejšia\nnajnehatenejšie\nnajnehatenejšieho\nnajnehatenejšiemu\nnajnehatenejších\nnajnehatenejším\nnajnehatenejšími\nnajnehatenejšiu\nnajnehatenejšom\nnajnehatenejšou\nnajnehlučnejšej\nnajnehlučnejší\nnajnehlučnejšia\nnajnehlučnejšieho\nnajnehlučnejšiemu\nnajnehlučnejších\nnajnehlučnejším\nnajnehlučnejšími\nnajnehlučnejšiu\nnajnehlučnejšom\nnajnehlučnejšou\nnajnehodnejšej\nnajnehodnejší\nnajnehodnejšia\nnajnehodnejšie\nnajnehodnejšieho\nnajnehodnejšiemu\nnajnehodnejších\nnajnehodnejším\nnajnehodnejšími\nnajnehodnejšiu\nnajnehodnejšom\nnajnehodnejšou\nnajnehoráznejšej\nnajnehoráznejší\nnajnehoráznejšia\nnajnehoráznejšie\nnajnehoráznejšieho\nnajnehoráznejšiemu\nnajnehoráznejších\nnajnehoráznejším\nnajnehoráznejšími\nnajnehoráznejšiu\nnajnehoráznejšom\nnajnehoráznejšou\nnajnehospodárnejšej\nnajnehospodárnejší\nnajnehospodárnejšia\nnajnehospodárnejšie\nnajnehospodárnejšieho\nnajnehospodárnejšiemu\nnajnehospodárnejších\nnajnehospodárnejším\nnajnehospodárnejšími\nnajnehospodárnejšiu\nnajnehospodárnejšom\nnajnehospodárnejšou\nnajnehostinnejšej\nnajnehostinnejší\nnajnehostinnejšia\nnajnehostinnejšie\nnajnehostinnejšieho\nnajnehostinnejšiemu\nnajnehostinnejších\nnajnehostinnejším\nnajnehostinnejšími\nnajnehostinnejšiu\nnajnehostinnejšom\nnajnehostinnejšou\nnajnehybnejšej\nnajnehybnejší\nnajnehybnejšia\nnajnehybnejšie\nnajnehybnejšieho\nnajnehybnejšiemu\nnajnehybnejších\nnajnehybnejším\nnajnehybnejšími\nnajnehybnejšiu\nnajnehybnejšom\nnajnehybnejšou\nnajnechápavejšej\nnajnechápavejší\nnajnechápavejšia\nnajnechápavejšie\nnajnechápavejšieho\nnajnechápavejšiemu\nnajnechápavejších\nnajnechápavejším\nnajnechápavejšími\nnajnechápavejšiu\nnajnechápavejšom\nnajnechápavejšou\nnajnechránenejšej\nnajnechránenejší\nnajnechránenejšia\nnajnechránenejšie\nnajnechránenejšieho\nnajnechránenejšiemu\nnajnechránenejších\nnajnechránenejším\nnajnechránenejšími\nnajnechránenejšiu\nnajnechránenejšom\nnajnechránenejšou\nnajnechutnejšej\nnajnechutnejší\nnajnechutnejšia\nnajnechutnejšie\nnajnechutnejšieho\nnajnechutnejšiemu\nnajnechutnejších\nnajnechutnejším\nnajnechutnejšími\nnajnechutnejšiu\nnajnechutnejšom\nnajnechutnejšou\nnajneistejšej\nnajneistejší\nnajneistejšia\nNajneistejšia\nnajneistejšie\nnajneistejšieho\nnajneistejšiemu\nnajneistejších\nnajneistejším\nnajneistejšími\nnajneistejšiu\nnajneistejšom\nnajneistejšou\nnajnejasnejšej\nnajnejasnejší\nnajnejasnejšia\nnajnejasnejšie\nnajnejasnejšieho\nnajnejasnejšiemu\nnajnejasnejších\nnajnejasnejším\nnajnejasnejšími\nnajnejasnejšiu\nnajnejasnejšom\nnajnejasnejšou\nnajnejednotnejšej\nnajnejednotnejší\nnajnejednotnejšia\nnajnejednotnejšie\nnajnejednotnejšieho\nnajnejednotnejšiemu\nnajnejednotnejších\nnajnejednotnejším\nnajnejednotnejšími\nnajnejednotnejšiu\nnajnejednotnejšom\nnajnejednotnejšou\nnajnekalejšej\nnajnekalejší\nnajnekalejšia\nnajnekalejšie\nnajnekalejšieho\nnajnekalejšiemu\nnajnekalejších\nnajnekalejším\nnajnekalejšími\nnajnekalejšiu\nnajnekalejšom\nnajnekalejšou\nnajneklamnejšej\nnajneklamnejší\nnajneklamnejšia\nnajneklamnejšie\nnajneklamnejšieho\nnajneklamnejšiemu\nnajneklamnejších\nnajneklamnejším\nnajneklamnejšími\nnajneklamnejšiu\nnajneklamnejšom\nnajneklamnejšou\nnajnekompetentnejšej\nnajnekompetentnejší\nnajnekompetentnejšia\nnajnekompetentnejšie\nnajnekompetentnejšieho\nnajnekompetentnejšiemu\nnajnekompetentnejších\nnajnekompetentnejším\nnajnekompetentnejšími\nnajnekompetentnejšiu\nnajnekompetentnejšom\nnajnekompetentnejšou\nnajnekompromisnejšej\nnajnekompromisnejší\nnajnekompromisnejšia\nnajnekompromisnejšie\nnajnekompromisnejšieho\nnajnekompromisnejšiemu\nnajnekompromisnejších\nnajnekompromisnejším\nnajnekompromisnejšími\nnajnekompromisnejšiu\nnajnekompromisnejšom\nnajnekompromisnejšou\nnajnekonformnejšej\nnajnekonformnejší\nnajnekonformnejšia\nnajnekonformnejšie\nnajnekonformnejšieho\nnajnekonformnejšiemu\nnajnekonformnejších\nnajnekonformnejším\nnajnekonformnejšími\nnajnekonformnejšiu\nnajnekonformnejšom\nnajnekonformnejšou\nnajnekonvenčnejšej\nnajnekonvenčnejší\nnajnekonvenčnejšia\nnajnekonvenčnejšie\nnajnekonvenčnejšieho\nnajnekonvenčnejšiemu\nnajnekonvenčnejších\nnajnekonvenčnejším\nnajnekonvenčnejšími\nnajnekonvenčnejšiu\nnajnekonvenčnejšom\nnajnekonvenčnejšou\nnajnekrčivejšej\nnajnekrčivejší\nnajnekrčivejšia\nnajnekrčivejšie\nnajnekrčivejšieho\nnajnekrčivejšiemu\nnajnekrčivejších\nnajnekrčivejším\nnajnekrčivejšími\nnajnekrčivejšiu\nnajnekrčivejšom\nnajnekrčivejšou\nnajnekritickejšej\nnajnekritickejší\nnajnekritickejšia\nnajnekritickejšie\nnajnekritickejšieho\nnajnekritickejšiemu\nnajnekritickejších\nnajnekritickejším\nnajnekritickejšími\nnajnekritickejšiu\nnajnekritickejšom\nnajnekritickejšou\nnajnekrvavejšej\nnajnekrvavejší\nnajnekrvavejšia\nnajnekrvavejšie\nnajnekrvavejšieho\nnajnekrvavejšiemu\nnajnekrvavejších\nnajnekrvavejším\nnajnekrvavejšími\nnajnekrvavejšiu\nnajnekrvavejšom\nnajnekrvavejšou\nnajnekultúrnejšej\nnajnekultúrnejší\nnajnekultúrnejšia\nnajnekultúrnejšie\nnajnekultúrnejšieho\nnajnekultúrnejšiemu\nnajnekultúrnejších\nnajnekultúrnejším\nnajnekultúrnejšími\nnajnekultúrnejšiu\nnajnekultúrnejšom\nnajnekultúrnejšou\nnajnekvalifikovanejšej\nnajnekvalifikovanejší\nnajnekvalifikovanejšia\nnajnekvalifikovanejšie\nnajnekvalifikovanejšieho\nnajnekvalifikovanejšiemu\nnajnekvalifikovanejších\nnajnekvalifikovanejším\nnajnekvalifikovanejšími\nnajnekvalifikovanejšiu\nnajnekvalifikovanejšom\nnajnekvalifikovanejšou\nnajnekvalitnejšej\nnajnekvalitnejší\nnajnekvalitnejšia\nnajnekvalitnejšie\nNajnekvalitnejšie\nnajnekvalitnejšieho\nnajnekvalitnejšiemu\nnajnekvalitnejších\nnajnekvalitnejším\nnajnekvalitnejšími\nnajnekvalitnejšiu\nnajnekvalitnejšom\nnajnekvalitnejšou\nnajnelegitímnejšej\nnajnelegitímnejší\nnajnelegitímnejšia\nnajnelegitímnejšie\nnajnelegitímnejšieho\nnajnelegitímnejšiemu\nnajnelegitímnejších\nnajnelegitímnejším\nnajnelegitímnejšími\nnajnelegitímnejšiu\nnajnelegitímnejšom\nnajnelegitímnejšou\nnajnelichotivejšej\nnajnelichotivejší\nnajnelichotivejšia\nnajnelichotivejšie\nnajnelichotivejšieho\nnajnelichotivejšiemu\nnajnelichotivejších\nnajnelichotivejším\nnajnelichotivejšími\nnajnelichotivejšiu\nnajnelichotivejšom\nnajnelichotivejšou\nnajnelogickejšej\nnajnelogickejší\nnajnelogickejšia\nnajnelogickejšie\nnajnelogickejšieho\nnajnelogickejšiemu\nnajnelogickejších\nnajnelogickejším\nnajnelogickejšími\nnajnelogickejšiu\nnajnelogickejšom\nnajnelogickejšou\nnajneľudskejšej\nnajneľudskejší\nnajneľudskejšia\nnajneľudskejšie\nnajneľudskejšieho\nnajneľudskejšiemu\nnajneľudskejších\nnajneľudskejším\nnajneľudskejšími\nnajneľudskejšiu\nnajneľudskejšom\nnajneľudskejšou\nnajneľútostnejšej\nnajneľútostnejší\nnajneľútostnejšia\nnajneľútostnejšie\nnajneľútostnejšieho\nnajneľútostnejšiemu\nnajneľútostnejších\nnajneľútostnejším\nnajneľútostnejšími\nnajneľútostnejšiu\nnajneľútostnejšom\nnajneľútostnejšou\nnajnemajetnejšej\nnajnemajetnejší\nnajnemajetnejšia\nnajnemajetnejšie\nnajnemajetnejšieho\nnajnemajetnejšiemu\nnajnemajetnejších\nnajnemajetnejším\nnajnemajetnejšími\nnajnemajetnejšiu\nnajnemajetnejšom\nnajnemajetnejšou\nnajnemastnejšej\nnajnemastnejší\nnajnemastnejšia\nnajnemastnejšie\nnajnemastnejšieho\nnajnemastnejšiemu\nnajnemastnejších\nnajnemastnejším\nnajnemastnejšími\nnajnemastnejšiu\nnajnemastnejšom\nnajnemastnejšou\nnajnemenlivejšej\nnajnemenlivejší\nnajnemenlivejšia\nnajnemenlivejšie\nnajnemenlivejšieho\nnajnemenlivejšiemu\nnajnemenlivejších\nnajnemenlivejším\nnajnemenlivejšími\nnajnemenlivejšiu\nnajnemenlivejšom\nnajnemenlivejšou\nnajnemiernejšej\nnajnemiernejší\nnajnemiernejšia\nnajnemiernejšie\nnajnemiernejšieho\nnajnemiernejšiemu\nnajnemiernejších\nnajnemiernejším\nnajnemiernejšími\nnajnemiernejšiu\nnajnemiernejšom\nnajnemiernejšou\nnajnemiestnejšej\nnajnemiestnejší\nnajnemiestnejšia\nnajnemiestnejšie\nnajnemiestnejšieho\nnajnemiestnejšiemu\nnajnemiestnejších\nnajnemiestnejším\nnajnemiestnejšími\nnajnemiestnejšiu\nnajnemiestnejšom\nnajnemiestnejšou\nnajnemilejšie\nnajnemilosrdnejšej\nnajnemilosrdnejší\nnajnemilosrdnejšia\nnajnemilosrdnejšie\nnajnemilosrdnejšieho\nnajnemilosrdnejšiemu\nnajnemilosrdnejších\nnajnemilosrdnejším\nnajnemilosrdnejšími\nnajnemilosrdnejšiu\nnajnemilosrdnejšom\nnajnemilosrdnejšou\nnajnemilšej\nnajnemilší\nnajnemilšia\nnajnemilšie\nnajnemilšieho\nnajnemilšiemu\nnajnemilších\nnajnemilším\nnajnemilšími\nnajnemilšiu\nnajnemilšom\nnajnemilšou\nnajnemocnejšej\nnajnemocnejší\nnajnemocnejšia\nnajnemocnejšie\nnajnemocnejšieho\nnajnemocnejšiemu\nnajnemocnejších\nnajnemocnejším\nnajnemocnejšími\nnajnemocnejšiu\nnajnemocnejšom\nnajnemocnejšou\nnajnemohúcejšej\nnajnemohúcejší\nnajnemohúcejšia\nnajnemohúcejšie\nnajnemohúcejšieho\nnajnemohúcejšiemu\nnajnemohúcejších\nnajnemohúcejším\nnajnemohúcejšími\nnajnemohúcejšiu\nnajnemohúcejšom\nnajnemohúcejšou\nnajnemorálnejšej\nnajnemorálnejší\nnajnemorálnejšia\nnajnemorálnejšie\nnajnemorálnejšieho\nnajnemorálnejšiemu\nnajnemorálnejších\nnajnemorálnejším\nnajnemorálnejšími\nnajnemorálnejšiu\nnajnemorálnejšom\nnajnemorálnejšou\nnajnemóresnejšej\nnajnemóresnejší\nnajnemóresnejšia\nnajnemóresnejšie\nnajnemóresnejšieho\nnajnemóresnejšiemu\nnajnemóresnejších\nnajnemóresnejším\nnajnemóresnejšími\nnajnemóresnejšiu\nnajnemóresnejšom\nnajnemóresnejšou\nnajnemotornejšej\nnajnemotornejší\nnajnemotornejšia\nnajnemotornejšie\nnajnemotornejšieho\nnajnemotornejšiemu\nnajnemotornejších\nnajnemotornejším\nnajnemotornejšími\nnajnemotornejšiu\nnajnemotornejšom\nnajnemotornejšou\nnajnemožnejšej\nnajnemožnejší\nnajnemožnejšia\nnajnemožnejšie\nnajnemožnejšieho\nnajnemožnejšiemu\nnajnemožnejších\nnajnemožnejším\nnajnemožnejšími\nnajnemožnejšiu\nnajnemožnejšom\nnajnemožnejšou\nnajnemravnejšej\nnajnemravnejší\nnajnemravnejšia\nnajnemravnejšie\nnajnemravnejšieho\nnajnemravnejšiemu\nnajnemravnejších\nnajnemravnejším\nnajnemravnejšími\nnajnemravnejšiu\nnajnemravnejšom\nnajnemravnejšou\nnajnenáhlivejšej\nnajnenáhlivejší\nnajnenáhlivejšia\nnajnenáhlivejšie\nnajnenáhlivejšieho\nnajnenáhlivejšiemu\nnajnenáhlivejších\nnajnenáhlivejším\nnajnenáhlivejšími\nnajnenáhlivejšiu\nnajnenáhlivejšom\nnajnenáhlivejšou\nnajnenahraditeľnejšej\nnajnenahraditeľnejší\nnajnenahraditeľnejšia\nnajnenahraditeľnejšie\nnajnenahraditeľnejšieho\nnajnenahraditeľnejšiemu\nnajnenahraditeľnejších\nnajnenahraditeľnejším\nnajnenahraditeľnejšími\nnajnenahraditeľnejšiu\nnajnenahraditeľnejšom\nnajnenahraditeľnejšou\nnajnenáležitejšej\nnajnenáležitejší\nnajnenáležitejšia\nnajnenáležitejšie\nnajnenáležitejšieho\nnajnenáležitejšiemu\nnajnenáležitejších\nnajnenáležitejším\nnajnenáležitejšími\nnajnenáležitejšiu\nnajnenáležitejšom\nnajnenáležitejšou\nnajnenápadnejšej\nnajnenápadnejší\nnajnenápadnejšia\nnajnenápadnejšieho\nnajnenápadnejšiemu\nnajnenápadnejších\nnajnenápadnejším\nnajnenápadnejšími\nnajnenápadnejšiu\nnajnenápadnejšom\nnajnenápadnejšou\nnajnenapodobiteľnejšie\nnajnenapodobniteľnejšie\nnajnenapraviteľnejšej\nnajnenapraviteľnejší\nnajnenapraviteľnejšia\nnajnenapraviteľnejšie\nnajnenapraviteľnejšieho\nnajnenapraviteľnejšiemu\nnajnenapraviteľnejších\nnajnenapraviteľnejším\nnajnenapraviteľnejšími\nnajnenapraviteľnejšiu\nnajnenapraviteľnejšom\nnajnenapraviteľnejšou\nnajnenáročnejšej\nnajnenáročnejší\nnajnenáročnejšia\nnajnenáročnejšie\nnajnenáročnejšieho\nnajnenáročnejšiemu\nnajnenáročnejších\nnajnenáročnejším\nnajnenáročnejšími\nnajnenáročnejšiu\nnajnenáročnejšom\nnajnenáročnejšou\nnajnenásilnejšej\nnajnenásilnejší\nnajnenásilnejšia\nnajnenásilnejšie\nnajnenásilnejšieho\nnajnenásilnejšiemu\nnajnenásilnejších\nnajnenásilnejším\nnajnenásilnejšími\nnajnenásilnejšiu\nnajnenásilnejšom\nnajnenásilnejšou\nnajnenasýtenejšej\nnajnenasýtenejší\nnajnenasýtenejšia\nnajnenasýtenejšie\nnajnenasýtenejšieho\nnajnenasýtenejšiemu\nnajnenasýtenejších\nnajnenasýtenejším\nnajnenasýtenejšími\nnajnenasýtenejšiu\nnajnenasýtenejšom\nnajnenasýtenejšou\nnajnenásytnejšej\nnajnenásytnejší\nnajnenásytnejšia\nnajnenásytnejšie\nnajnenásytnejšieho\nnajnenásytnejšiemu\nnajnenásytnejších\nnajnenásytnejším\nnajnenásytnejšími\nnajnenásytnejšiu\nnajnenásytnejšom\nnajnenásytnejšou\nnajnenávistnejšej\nnajnenávistnejší\nnajnenávistnejšia\nnajnenávistnejšie\nnajnenávistnejšieho\nnajnenávistnejšiemu\nnajnenávistnejších\nnajnenávistnejším\nnajnenávistnejšími\nnajnenávistnejšiu\nnajnenávistnejšom\nnajnenávistnejšou\nnajnenažratejšej\nnajnenažratejší\nnajnenažratejšia\nnajnenažratejšie\nnajnenažratejšieho\nnajnenažratejšiemu\nnajnenažratejších\nnajnenažratejším\nnajnenažratejšími\nnajnenažratejšiu\nnajnenažratejšom\nnajnenažratejšou\nnajnenormálnejšej\nnajnenormálnejší\nnajnenormálnejšia\nnajnenormálnejšie\nnajnenormálnejšieho\nnajnenormálnejšiemu\nnajnenormálnejších\nnajnenormálnejším\nnajnenormálnejšími\nnajnenormálnejšiu\nnajnenormálnejšom\nnajnenormálnejšou\nnajnenútenejšej\nnajnenútenejší\nnajnenútenejšia\nnajnenútenejšie\nnajnenútenejšieho\nnajnenútenejšiemu\nnajnenútenejších\nnajnenútenejším\nnajnenútenejšími\nnajnenútenejšiu\nnajnenútenejšom\nnajnenútenejšou\nnajneoblomnejšej\nnajneoblomnejší\nnajneoblomnejšia\nnajneoblomnejšie\nnajneoblomnejšieho\nnajneoblomnejšiemu\nnajneoblomnejších\nnajneoblomnejším\nnajneoblomnejšími\nnajneoblomnejšiu\nnajneoblomnejšom\nnajneoblomnejšou\nnajneobratnejšej\nnajneobratnejší\nnajneobratnejšia\nnajneobratnejšie\nnajneobratnejšieho\nnajneobratnejšiemu\nnajneobratnejších\nnajneobratnejším\nnajneobratnejšími\nnajneobratnejšiu\nnajneobratnejšom\nnajneobratnejšou\nnajneobvyklejšej\nnajneobvyklejší\nnajneobvyklejšia\nnajneobvyklejšie\nnajneobvyklejšieho\nnajneobvyklejšiemu\nnajneobvyklejších\nnajneobvyklejším\nnajneobvyklejšími\nnajneobvyklejšiu\nnajneobvyklejšom\nnajneobvyklejšou\nnajneobyčajnejšej\nnajneobyčajnejší\nnajneobyčajnejšia\nnajneobyčajnejšie\nnajneobyčajnejšieho\nnajneobyčajnejšiemu\nnajneobyčajnejších\nnajneobyčajnejším\nnajneobyčajnejšími\nnajneobyčajnejšiu\nnajneobyčajnejšom\nnajneobyčajnejšou\nnajneočakávanejšej\nnajneočakávanejší\nnajneočakávanejšia\nnajneočakávanejšie\nnajneočakávanejšieho\nnajneočakávanejšiemu\nnajneočakávanejších\nnajneočakávanejším\nnajneočakávanejšími\nnajneočakávanejšiu\nnajneočakávanejšom\nnajneočakávanejšou\nnajneodbornejšej\nnajneodbornejší\nnajneodbornejšia\nnajneodbornejšie\nnajneodbornejšieho\nnajneodbornejšiemu\nnajneodbornejších\nnajneodbornejším\nnajneodbornejšími\nnajneodbornejšiu\nnajneodbornejšom\nnajneodbornejšou\nnajneodbytnejšej\nnajneodbytnejší\nnajneodbytnejšia\nnajneodbytnejšie\nnajneodbytnejšieho\nnajneodbytnejšiemu\nnajneodbytnejších\nnajneodbytnejším\nnajneodbytnejšími\nnajneodbytnejšiu\nnajneodbytnejšom\nnajneodbytnejšou\nnajneodkladnejšej\nnajneodkladnejší\nnajneodkladnejšia\nnajneodkladnejšie\nNajneodkladnejšie\nnajneodkladnejšieho\nnajneodkladnejšiemu\nnajneodkladnejších\nnajneodkladnejším\nnajneodkladnejšími\nnajneodkladnejšiu\nnajneodkladnejšom\nnajneodkladnejšou\nnajneodolateľnejšej\nnajneodolateľnejší\nnajneodolateľnejšia\nnajneodolateľnejšie\nnajneodolateľnejšieho\nnajneodolateľnejšiemu\nnajneodolateľnejších\nnajneodolateľnejším\nnajneodolateľnejšími\nnajneodolateľnejšiu\nnajneodolateľnejšom\nnajneodolateľnejšou\nnajneodškriepiteľnejšej\nnajneodškriepiteľnejší\nnajneodškriepiteľnejšia\nnajneodškriepiteľnejšie\nnajneodškriepiteľnejšieho\nnajneodškriepiteľnejšiemu\nnajneodškriepiteľnejších\nnajneodškriepiteľnejším\nnajneodškriepiteľnejšími\nnajneodškriepiteľnejšiu\nnajneodškriepiteľnejšom\nnajneodškriepiteľnejšou\nnajneodvolateľnejšej\nnajneodvolateľnejší\nnajneodvolateľnejšia\nnajneodvolateľnejšie\nnajneodvolateľnejšieho\nnajneodvolateľnejšiemu\nnajneodvolateľnejších\nnajneodvolateľnejším\nnajneodvolateľnejšími\nnajneodvolateľnejšiu\nnajneodvolateľnejšom\nnajneodvolateľnejšou\nnajneoficiálnejšej\nnajneoficiálnejší\nnajneoficiálnejšia\nnajneoficiálnejšie\nnajneoficiálnejšieho\nnajneoficiálnejšiemu\nnajneoficiálnejších\nnajneoficiálnejším\nnajneoficiálnejšími\nnajneoficiálnejšiu\nnajneoficiálnejšom\nnajneoficiálnejšou\nnajneogabanejšej\nnajneogabanejší\nnajneogabanejšia\nnajneogabanejšie\nnajneogabanejšieho\nnajneogabanejšiemu\nnajneogabanejších\nnajneogabanejším\nnajneogabanejšími\nnajneogabanejšiu\nnajneogabanejšom\nnajneogabanejšou\nnajneohrabanejšej\nnajneohrabanejší\nnajneohrabanejšia\nnajneohrabanejšie\nnajneohrabanejšieho\nnajneohrabanejšiemu\nnajneohrabanejších\nnajneohrabanejším\nnajneohrabanejšími\nnajneohrabanejšiu\nnajneohrabanejšom\nnajneohrabanejšou\nnajneohrozenejšej\nnajneohrozenejší\nnajneohrozenejšia\nnajneohrozenejšie\nnajneohrozenejšieho\nnajneohrozenejšiemu\nnajneohrozenejších\nnajneohrozenejším\nnajneohrozenejšími\nnajneohrozenejšiu\nnajneohrozenejšom\nnajneohrozenejšou\nnajneohybnejšej\nnajneohybnejší\nnajneohybnejšia\nnajneohybnejšie\nnajneohybnejšieho\nnajneohybnejšiemu\nnajneohybnejších\nnajneohybnejším\nnajneohybnejšími\nnajneohybnejšiu\nnajneohybnejšom\nnajneohybnejšou\nnajneochotnejšie\nNajneochotnejšie\nnajneochvejnejšej\nnajneochvejnejší\nnajneochvejnejšia\nnajneochvejnejšie\nnajneochvejnejšieho\nnajneochvejnejšiemu\nnajneochvejnejších\nnajneochvejnejším\nnajneochvejnejšími\nnajneochvejnejšiu\nnajneochvejnejšom\nnajneochvejnejšou\nnajneokresanejšej\nnajneokresanejší\nnajneokresanejšia\nnajneokresanejšie\nnajneokresanejšieho\nnajneokresanejšiemu\nnajneokresanejších\nnajneokresanejším\nnajneokresanejšími\nnajneokresanejšiu\nnajneokresanejšom\nnajneokresanejšou\nnajneokrôchanejšej\nnajneokrôchanejší\nnajneokrôchanejšia\nnajneokrôchanejšie\nnajneokrôchanejšieho\nnajneokrôchanejšiemu\nnajneokrôchanejších\nnajneokrôchanejším\nnajneokrôchanejšími\nnajneokrôchanejšiu\nnajneokrôchanejšom\nnajneokrôchanejšou\nnajneomylnejšej\nnajneomylnejší\nnajneomylnejšia\nnajneomylnejšie\nnajneomylnejšieho\nnajneomylnejšiemu\nnajneomylnejších\nnajneomylnejším\nnajneomylnejšími\nnajneomylnejšiu\nnajneomylnejšom\nnajneomylnejšou\nnajneopakovateľnejšej\nnajneopakovateľnejší\nnajneopakovateľnejšia\nnajneopakovateľnejšie\nnajneopakovateľnejšieho\nnajneopakovateľnejšiemu\nnajneopakovateľnejších\nnajneopakovateľnejším\nnajneopakovateľnejšími\nnajneopakovateľnejšiu\nnajneopakovateľnejšom\nnajneopakovateľnejšou\nnajneopísateľnejšej\nnajneopísateľnejší\nnajneopísateľnejšia\nnajneopísateľnejšie\nnajneopísateľnejšieho\nnajneopísateľnejšiemu\nnajneopísateľnejších\nnajneopísateľnejším\nnajneopísateľnejšími\nnajneopísateľnejšiu\nnajneopísateľnejšom\nnajneopísateľnejšou\nnajneopodstatnenejšej\nnajneopodstatnenejší\nnajneopodstatnenejšia\nnajneopodstatnenejšie\nnajneopodstatnenejšieho\nnajneopodstatnenejšiemu\nnajneopodstatnenejších\nnajneopodstatnenejším\nnajneopodstatnenejšími\nnajneopodstatnenejšiu\nnajneopodstatnenejšom\nnajneopodstatnenejšou\nnajneoprávnenejšie\nnajneosobnejšej\nnajneosobnejší\nnajneosobnejšia\nnajneosobnejšie\nnajneosobnejšieho\nnajneosobnejšiemu\nnajneosobnejších\nnajneosobnejším\nnajneosobnejšími\nnajneosobnejšiu\nnajneosobnejšom\nnajneosobnejšou\nnajneotesanejšej\nnajneotesanejší\nnajneotesanejšia\nnajneotesanejšie\nnajneotesanejšieho\nnajneotesanejšiemu\nnajneotesanejších\nnajneotesanejším\nnajneotesanejšími\nnajneotesanejšiu\nnajneotesanejšom\nnajneotesanejšou\nnajneotrasiteľnejšej\nnajneotrasiteľnejší\nnajneotrasiteľnejšia\nnajneotrasiteľnejšie\nnajneotrasiteľnejšieho\nnajneotrasiteľnejšiemu\nnajneotrasiteľnejších\nnajneotrasiteľnejším\nnajneotrasiteľnejšími\nnajneotrasiteľnejšiu\nnajneotrasiteľnejšom\nnajneotrasiteľnejšou\nnajnepatrnejšej\nnajnepatrnejší\nnajnepatrnejšia\nnajnepatrnejšie\nnajnepatrnejšieho\nnajnepatrnejšiemu\nnajnepatrnejších\nnajnepatrnejším\nnajnepatrnejšími\nnajnepatrnejšiu\nnajnepatrnejšom\nnajnepatrnejšou\nnajnepeknejšej\nnajnepeknejší\nnajnepeknejšia\nnajnepeknejšie\nnajnepeknejšieho\nnajnepeknejšiemu\nnajnepeknejších\nnajnepeknejším\nnajnepeknejšími\nnajnepeknejšiu\nnajnepeknejšom\nnajnepeknejšou\nnajnepoctivejšej\nnajnepoctivejší\nnajnepoctivejšia\nnajnepoctivejšie\nnajnepoctivejšieho\nnajnepoctivejšiemu\nnajnepoctivejších\nnajnepoctivejším\nnajnepoctivejšími\nnajnepoctivejšiu\nnajnepoctivejšom\nnajnepoctivejšou\nnajnepočúvnejšej\nnajnepočúvnejší\nnajnepočúvnejšia\nnajnepočúvnejšie\nnajnepočúvnejšieho\nnajnepočúvnejšiemu\nnajnepočúvnejších\nnajnepočúvnejším\nnajnepočúvnejšími\nnajnepočúvnejšiu\nnajnepočúvnejšom\nnajnepočúvnejšou\nnajnepodarenejšej\nnajnepodarenejší\nnajnepodarenejšia\nnajnepodarenejšie\nnajnepodarenejšieho\nnajnepodarenejšiemu\nnajnepodarenejších\nnajnepodarenejším\nnajnepodarenejšími\nnajnepodarenejšiu\nnajnepodarenejšom\nnajnepodarenejšou\nnajnepoddajnejšej\nnajnepoddajnejší\nnajnepoddajnejšia\nnajnepoddajnejšie\nnajnepoddajnejšieho\nnajnepoddajnejšiemu\nnajnepoddajnejších\nnajnepoddajnejším\nnajnepoddajnejšími\nnajnepoddajnejšiu\nnajnepoddajnejšom\nnajnepoddajnejšou\nnajnepodkupnejšej\nnajnepodkupnejší\nnajnepodkupnejšia\nnajnepodkupnejšie\nnajnepodkupnejšieho\nnajnepodkupnejšiemu\nnajnepodkupnejších\nnajnepodkupnejším\nnajnepodkupnejšími\nnajnepodkupnejšiu\nnajnepodkupnejšom\nnajnepodkupnejšou\nnajnepodloženejšej\nnajnepodloženejší\nnajnepodloženejšia\nnajnepodloženejšie\nnajnepodloženejšieho\nnajnepodloženejšiemu\nnajnepodloženejších\nnajnepodloženejším\nnajnepodloženejšími\nnajnepodloženejšiu\nnajnepodloženejšom\nnajnepodloženejšou\nnajnepodmienenejšej\nnajnepodmienenejší\nnajnepodmienenejšia\nnajnepodmienenejšie\nnajnepodmienenejšieho\nnajnepodmienenejšiemu\nnajnepodmienenejších\nnajnepodmienenejším\nnajnepodmienenejšími\nnajnepodmienenejšiu\nnajnepodmienenejšom\nnajnepodmienenejšou\nnajnepodplatiteľnejšia\nnajnepodstatnejšej\nnajnepodstatnejší\nnajnepodstatnejšia\nnajnepodstatnejšie\nnajnepodstatnejšieho\nnajnepodstatnejšiemu\nnajnepodstatnejších\nnajnepodstatnejším\nnajnepodstatnejšími\nnajnepodstatnejšiu\nnajnepodstatnejšom\nnajnepodstatnejšou\nnajnepohodlnejšej\nnajnepohodlnejší\nnajnepohodlnejšia\nnajnepohodlnejšie\nnajnepohodlnejšieho\nnajnepohodlnejšiemu\nnajnepohodlnejších\nnajnepohodlnejším\nnajnepohodlnejšími\nnajnepohodlnejšiu\nnajnepohodlnejšom\nnajnepohodlnejšou\nnajnepochopiteľnejšej\nnajnepochopiteľnejší\nnajnepochopiteľnejšia\nnajnepochopiteľnejšie\nnajnepochopiteľnejšieho\nnajnepochopiteľnejšiemu\nnajnepochopiteľnejších\nnajnepochopiteľnejším\nnajnepochopiteľnejšími\nnajnepochopiteľnejšiu\nnajnepochopiteľnejšom\nnajnepochopiteľnejšou\nnajnepochybnejšej\nnajnepochybnejší\nnajnepochybnejšia\nnajnepochybnejšie\nnajnepochybnejšieho\nnajnepochybnejšiemu\nnajnepochybnejších\nnajnepochybnejším\nnajnepochybnejšími\nnajnepochybnejšiu\nnajnepochybnejšom\nnajnepochybnejšou\nnajnepokojnejšej\nnajnepokojnejší\nnajnepokojnejšia\nnajnepokojnejšie\nnajnepokojnejšieho\nnajnepokojnejšiemu\nnajnepokojnejších\nnajnepokojnejším\nnajnepokojnejšími\nnajnepokojnejšiu\nnajnepokojnejšom\nnajnepokojnejšou\nnajnepolepšiteľnejšej\nnajnepolepšiteľnejší\nnajnepolepšiteľnejšia\nnajnepolepšiteľnejšie\nnajnepolepšiteľnejšieho\nnajnepolepšiteľnejšiemu\nnajnepolepšiteľnejších\nnajnepolepšiteľnejším\nnajnepolepšiteľnejšími\nnajnepolepšiteľnejšiu\nnajnepolepšiteľnejšom\nnajnepolepšiteľnejšou\nnajnepopierateľnejšej\nnajnepopierateľnejší\nnajnepopierateľnejšia\nnajnepopierateľnejšie\nnajnepopierateľnejšieho\nnajnepopierateľnejšiemu\nnajnepopierateľnejších\nnajnepopierateľnejším\nnajnepopierateľnejšími\nnajnepopierateľnejšiu\nnajnepopierateľnejšom\nnajnepopierateľnejšou\nnajnepopulárnejšej\nnajnepopulárnejší\nnajnepopulárnejšia\nnajnepopulárnejšie\nnajnepopulárnejšieho\nnajnepopulárnejšiemu\nnajnepopulárnejších\nnajnepopulárnejším\nnajnepopulárnejšími\nnajnepopulárnejšiu\nnajnepopulárnejšom\nnajnepopulárnejšou\nnajneporaziteľnejšej\nnajneporaziteľnejší\nnajneporaziteľnejšia\nnajneporaziteľnejšie\nnajneporaziteľnejšieho\nnajneporaziteľnejšiemu\nnajneporaziteľnejších\nnajneporaziteľnejším\nnajneporaziteľnejšími\nnajneporaziteľnejšiu\nnajneporaziteľnejšom\nnajneporaziteľnejšou\nnajneporiadnejšej\nnajneporiadnejší\nnajneporiadnejšia\nnajneporiadnejšie\nnajneporiadnejšieho\nnajneporiadnejšiemu\nnajneporiadnejších\nnajneporiadnejším\nnajneporiadnejšími\nnajneporiadnejšiu\nnajneporiadnejšom\nnajneporiadnejšou\nnajneporovnateľnejšie\nnajneporušenejšej\nnajneporušenejší\nnajneporušenejšia\nnajneporušenejšie\nnajneporušenejšieho\nnajneporušenejšiemu\nnajneporušenejších\nnajneporušenejším\nnajneporušenejšími\nnajneporušenejšiu\nnajneporušenejšom\nnajneporušenejšou\nnajneposednejšej\nnajneposednejší\nnajneposednejšia\nnajneposednejšie\nnajneposednejšieho\nnajneposednejšiemu\nnajneposednejších\nnajneposednejším\nnajneposednejšími\nnajneposednejšiu\nnajneposednejšom\nnajneposednejšou\nnajneposlušnejšej\nnajneposlušnejší\nnajneposlušnejšia\nnajneposlušnejšie\nnajneposlušnejšieho\nnajneposlušnejšiemu\nnajneposlušnejších\nnajneposlušnejším\nnajneposlušnejšími\nnajneposlušnejšiu\nnajneposlušnejšom\nnajneposlušnejšou\nnajnepotrebnejšej\nnajnepotrebnejší\nnajnepotrebnejšia\nnajnepotrebnejšie\nnajnepotrebnejšieho\nnajnepotrebnejšiemu\nnajnepotrebnejších\nnajnepotrebnejším\nnajnepotrebnejšími\nnajnepotrebnejšiu\nnajnepotrebnejšom\nnajnepotrebnejšou\nnajnepovolanejšej\nnajnepovolanejší\nnajnepovolanejšia\nnajnepovolanejšie\nnajnepovolanejšieho\nnajnepovolanejšiemu\nnajnepovolanejších\nnajnepovolanejším\nnajnepovolanejšími\nnajnepovolanejšiu\nnajnepovolanejšom\nnajnepovolanejšou\nnajnepozornejšej\nnajnepozornejší\nnajnepozornejšia\nnajnepozornejšie\nnajnepozornejšieho\nnajnepozornejšiemu\nnajnepozornejších\nnajnepozornejším\nnajnepozornejšími\nnajnepozornejšiu\nnajnepozornejšom\nnajnepozornejšou\nnajnepozorovanejšej\nnajnepozorovanejší\nnajnepozorovanejšia\nnajnepozorovanejšie\nnajnepozorovanejšieho\nnajnepozorovanejšiemu\nnajnepozorovanejších\nnajnepozorovanejším\nnajnepozorovanejšími\nnajnepozorovanejšiu\nnajnepozorovanejšom\nnajnepozorovanejšou\nnajneprajnejšej\nnajneprajnejší\nnajneprajnejšia\nnajneprajnejšie\nnajneprajnejšieho\nnajneprajnejšiemu\nnajneprajnejších\nnajneprajnejším\nnajneprajnejšími\nnajneprajnejšiu\nnajneprajnejšom\nnajneprajnejšou\nnajneprajníckejšej\nnajneprajníckejší\nnajneprajníckejšia\nnajneprajníckejšie\nnajneprajníckejšieho\nnajneprajníckejšiemu\nnajneprajníckejších\nnajneprajníckejším\nnajneprajníckejšími\nnajneprajníckejšiu\nnajneprajníckejšom\nnajneprajníckejšou\nnajnepravdepodobnejšej\nnajnepravdepodobnejší\nnajnepravdepodobnejšia\nnajnepravdepodobnejšie\nnajnepravdepodobnejšieho\nnajnepravdepodobnejšiemu\nnajnepravdepodobnejších\nnajnepravdepodobnejším\nnajnepravdepodobnejšími\nnajnepravdepodobnejšiu\nnajnepravdepodobnejšom\nnajnepravdepodobnejšou\nnajnepravdivejšej\nnajnepravdivejší\nnajnepravdivejšia\nnajnepravdivejšie\nnajnepravdivejšieho\nnajnepravdivejšiemu\nnajnepravdivejších\nnajnepravdivejším\nnajnepravdivejšími\nnajnepravdivejšiu\nnajnepravdivejšom\nnajnepravdivejšou\nnajnepravidelnejšej\nnajnepravidelnejší\nnajnepravidelnejšia\nnajnepravidelnejšie\nnajnepravidelnejšieho\nnajnepravidelnejšiemu\nnajnepravidelnejších\nnajnepravidelnejším\nnajnepravidelnejšími\nnajnepravidelnejšiu\nnajnepravidelnejšom\nnajnepravidelnejšou\nnajnepredstaviteľnejšej\nnajnepredstaviteľnejší\nnajnepredstaviteľnejšia\nnajnepredstaviteľnejšie\nnajnepredstaviteľnejšieho\nnajnepredstaviteľnejšiemu\nnajnepredstaviteľnejších\nnajnepredstaviteľnejším\nnajnepredstaviteľnejšími\nnajnepredstaviteľnejšiu\nnajnepredstaviteľnejšom\nnajnepredstaviteľnejšou\nnajnepredvídanejšej\nnajnepredvídanejší\nnajnepredvídanejšia\nnajnepredvídanejšie\nnajnepredvídanejšieho\nnajnepredvídanejšiemu\nnajnepredvídanejších\nnajnepredvídanejším\nnajnepredvídanejšími\nnajnepredvídanejšiu\nnajnepredvídanejšom\nnajnepredvídanejšou\nnajneprehľadnejšej\nnajneprehľadnejší\nnajneprehľadnejšia\nNajneprehľadnejšia\nnajneprehľadnejšie\nnajneprehľadnejšieho\nnajneprehľadnejšiemu\nnajneprehľadnejších\nnajneprehľadnejším\nnajneprehľadnejšími\nnajneprehľadnejšiu\nnajneprehľadnejšom\nnajneprehľadnejšou\nnajnepremokavejšej\nnajnepremokavejší\nnajnepremokavejšia\nnajnepremokavejšie\nnajnepremokavejšieho\nnajnepremokavejšiemu\nnajnepremokavejších\nnajnepremokavejším\nnajnepremokavejšími\nnajnepremokavejšiu\nnajnepremokavejšom\nnajnepremokavejšou\nnajnepreniknuteľnejšej\nnajnepreniknuteľnejší\nnajnepreniknuteľnejšia\nnajnepreniknuteľnejšie\nnajnepreniknuteľnejšieho\nnajnepreniknuteľnejšiemu\nnajnepreniknuteľnejších\nnajnepreniknuteľnejším\nnajnepreniknuteľnejšími\nnajnepreniknuteľnejšiu\nnajnepreniknuteľnejšom\nnajnepreniknuteľnejšou\nnajnepresnejšej\nnajnepresnejší\nnajnepresnejšia\nnajnepresnejšie\nnajnepresnejšieho\nnajnepresnejšiemu\nnajnepresnejších\nnajnepresnejším\nnajnepresnejšími\nnajnepresnejšiu\nnajnepresnejšom\nnajnepresnejšou\nnajnepretržitejšej\nnajnepretržitejší\nnajnepretržitejšia\nnajnepretržitejšie\nnajnepretržitejšieho\nnajnepretržitejšiemu\nnajnepretržitejších\nnajnepretržitejším\nnajnepretržitejšími\nnajnepretržitejšiu\nnajnepretržitejšom\nnajnepretržitejšou\nnajnepriamejšej\nnajnepriamejší\nnajnepriamejšia\nnajnepriamejšie\nnajnepriamejšieho\nnajnepriamejšiemu\nnajnepriamejších\nnajnepriamejším\nnajnepriamejšími\nnajnepriamejšiu\nnajnepriamejšom\nnajnepriamejšou\nnajnepriateľskejšej\nnajnepriateľskejší\nnajnepriateľskejšia\nnajnepriateľskejšie\nnajnepriateľskejšieho\nnajnepriateľskejšiemu\nnajnepriateľskejších\nnajnepriateľskejším\nnajnepriateľskejšími\nnajnepriateľskejšiu\nnajnepriateľskejšom\nnajnepriateľskejšou\nnajnepriaznivejšej\nnajnepriaznivejší\nnajnepriaznivejšia\nNajnepriaznivejšia\nnajnepriaznivejšie\nnajnepriaznivejšieho\nnajnepriaznivejšiemu\nnajnepriaznivejších\nnajnepriaznivejším\nNajnepriaznivejším\nnajnepriaznivejšími\nnajnepriaznivejšiu\nnajnepriaznivejšom\nnajnepriaznivejšou\nnajnepríčetnejšej\nnajnepríčetnejší\nnajnepríčetnejšia\nnajnepríčetnejšie\nnajnepríčetnejšieho\nnajnepríčetnejšiemu\nnajnepríčetnejších\nnajnepríčetnejším\nnajnepríčetnejšími\nnajnepríčetnejšiu\nnajnepríčetnejšom\nnajnepríčetnejšou\nnajnepriedušnejšej\nnajnepriedušnejší\nnajnepriedušnejšia\nnajnepriedušnejšie\nnajnepriedušnejšieho\nnajnepriedušnejšiemu\nnajnepriedušnejších\nnajnepriedušnejším\nnajnepriedušnejšími\nnajnepriedušnejšiu\nnajnepriedušnejšom\nnajnepriedušnejšou\nnajnepriehľadnejšej\nnajnepriehľadnejší\nnajnepriehľadnejšia\nnajnepriehľadnejšie\nnajnepriehľadnejšieho\nnajnepriehľadnejšiemu\nnajnepriehľadnejších\nnajnepriehľadnejším\nnajnepriehľadnejšími\nnajnepriehľadnejšiu\nnajnepriehľadnejšom\nnajnepriehľadnejšou\nnajnepriechodnejšej\nnajnepriechodnejší\nnajnepriechodnejšia\nnajnepriechodnejšie\nnajnepriechodnejšieho\nnajnepriechodnejšiemu\nnajnepriechodnejších\nnajnepriechodnejším\nnajnepriechodnejšími\nnajnepriechodnejšiu\nnajnepriechodnejšom\nnajnepriechodnejšou\nnajnepriestrelnejšej\nnajnepriestrelnejší\nnajnepriestrelnejšia\nnajnepriestrelnejšie\nnajnepriestrelnejšieho\nnajnepriestrelnejšiemu\nnajnepriestrelnejších\nnajnepriestrelnejším\nnajnepriestrelnejšími\nnajnepriestrelnejšiu\nnajnepriestrelnejšom\nnajnepriestrelnejšou\nnajnepriezvučnejšie\nnajnepríhodnejšej\nnajnepríhodnejší\nnajnepríhodnejšia\nnajnepríhodnejšie\nnajnepríhodnejšieho\nnajnepríhodnejšiemu\nnajnepríhodnejších\nnajnepríhodnejším\nnajnepríhodnejšími\nnajnepríhodnejšiu\nnajnepríhodnejšom\nnajnepríhodnejšou\nnajneprijateľnejšej\nnajneprijateľnejší\nnajneprijateľnejšia\nNajneprijateľnejšia\nnajneprijateľnejšie\nnajneprijateľnejšieho\nnajneprijateľnejšiemu\nnajneprijateľnejších\nnajneprijateľnejším\nnajneprijateľnejšími\nnajneprijateľnejšiu\nnajneprijateľnejšom\nnajneprijateľnejšou\nnajnepríjemnejšej\nnajnepríjemnejší\nnajnepríjemnejšia\nnajnepríjemnejšie\nnajnepríjemnejšieho\nnajnepríjemnejšiemu\nnajnepríjemnejších\nnajnepríjemnejším\nnajnepríjemnejšími\nnajnepríjemnejšiu\nnajnepríjemnejšom\nnajnepríjemnejšou\nNajnepríjemnejšou\nnajneprimeranejšej\nnajneprimeranejší\nnajneprimeranejšia\nnajneprimeranejšie\nnajneprimeranejšieho\nnajneprimeranejšiemu\nnajneprimeranejších\nnajneprimeranejším\nnajneprimeranejšími\nnajneprimeranejšiu\nnajneprimeranejšom\nnajneprimeranejšou\nnajneprípustnejšej\nnajneprípustnejší\nnajneprípustnejšia\nnajneprípustnejšie\nnajneprípustnejšieho\nnajneprípustnejšiemu\nnajneprípustnejších\nnajneprípustnejším\nnajneprípustnejšími\nnajneprípustnejšiu\nnajneprípustnejšom\nnajneprípustnejšou\nnajneprirodzenejšej\nnajneprirodzenejší\nnajneprirodzenejšia\nnajneprirodzenejšie\nnajneprirodzenejšieho\nnajneprirodzenejšiemu\nnajneprirodzenejších\nnajneprirodzenejším\nnajneprirodzenejšími\nnajneprirodzenejšiu\nnajneprirodzenejšom\nnajneprirodzenejšou\nnajneprístojnejšej\nnajneprístojnejší\nnajneprístojnejšia\nnajneprístojnejšie\nnajneprístojnejšieho\nnajneprístojnejšiemu\nnajneprístojnejších\nnajneprístojnejším\nnajneprístojnejšími\nnajneprístojnejšiu\nnajneprístojnejšom\nnajneprístojnejšou\nnajneprístupnejšej\nnajneprístupnejší\nnajneprístupnejšia\nnajneprístupnejšie\nnajneprístupnejšieho\nnajneprístupnejšiemu\nnajneprístupnejších\nnajneprístupnejším\nnajneprístupnejšími\nnajneprístupnejšiu\nnajneprístupnejšom\nnajneprístupnejšou\nnajneprofesionálnejšej\nnajneprofesionálnejší\nnajneprofesionálnejšia\nnajneprofesionálnejšie\nnajneprofesionálnejšieho\nnajneprofesionálnejšiemu\nnajneprofesionálnejších\nnajneprofesionálnejším\nnajneprofesionálnejšími\nnajneprofesionálnejšiu\nnajneprofesionálnejšom\nnajneprofesionálnejšou\nnajneprozreteľnejšej\nnajneprozreteľnejší\nnajneprozreteľnejšia\nnajneprozreteľnejšie\nnajneprozreteľnejšieho\nnajneprozreteľnejšiemu\nnajneprozreteľnejších\nnajneprozreteľnejším\nnajneprozreteľnejšími\nnajneprozreteľnejšiu\nnajneprozreteľnejšom\nnajneprozreteľnejšou\nnajnereálnejšej\nnajnereálnejší\nnajnereálnejšia\nnajnereálnejšie\nnajnereálnejšieho\nnajnereálnejšiemu\nnajnereálnejších\nnajnereálnejším\nnajnereálnejšími\nnajnereálnejšiu\nnajnereálnejšom\nnajnereálnejšou\nnajnerentabilnejšie\nnajnerestnejšej\nnajnerestnejší\nnajnerestnejšia\nnajnerestnejšie\nnajnerestnejšieho\nnajnerestnejšiemu\nnajnerestnejších\nnajnerestnejším\nnajnerestnejšími\nnajnerestnejšiu\nnajnerestnejšom\nnajnerestnejšou\nnajneriešiteľnejšej\nnajneriešiteľnejší\nnajneriešiteľnejšia\nnajneriešiteľnejšie\nnajneriešiteľnejšieho\nnajneriešiteľnejšiemu\nnajneriešiteľnejších\nnajneriešiteľnejším\nnajneriešiteľnejšími\nnajneriešiteľnejšiu\nnajneriešiteľnejšom\nnajneriešiteľnejšou\nnajnerozhodnejšej\nnajnerozhodnejší\nnajnerozhodnejšia\nnajnerozhodnejšie\nnajnerozhodnejšieho\nnajnerozhodnejšiemu\nnajnerozhodnejších\nnajnerozhodnejším\nnajnerozhodnejšími\nnajnerozhodnejšiu\nnajnerozhodnejšom\nnajnerozhodnejšou\nnajnerozlučnejšej\nnajnerozlučnejší\nnajnerozlučnejšia\nnajnerozlučnejšie\nnajnerozlučnejšieho\nnajnerozlučnejšiemu\nnajnerozlučnejších\nnajnerozlučnejším\nnajnerozlučnejšími\nnajnerozlučnejšiu\nnajnerozlučnejšom\nnajnerozlučnejšou\nnajnerozmyslenejšej\nnajnerozmyslenejší\nnajnerozmyslenejšia\nnajnerozmyslenejšie\nnajnerozmyslenejšieho\nnajnerozmyslenejšiemu\nnajnerozmyslenejších\nnajnerozmyslenejším\nnajnerozmyslenejšími\nnajnerozmyslenejšiu\nnajnerozmyslenejšom\nnajnerozmyslenejšou\nnajnerozumnejšej\nnajnerozumnejší\nnajnerozumnejšia\nnajnerozumnejšie\nnajnerozumnejšieho\nnajnerozumnejšiemu\nnajnerozumnejších\nnajnerozumnejším\nnajnerozumnejšími\nnajnerozumnejšiu\nnajnerozumnejšom\nnajnerozumnejšou\nnajnerozvážnejšej\nnajnerozvážnejší\nnajnerozvážnejšia\nnajnerozvážnejšie\nnajnerozvážnejšieho\nnajnerozvážnejšiemu\nnajnerozvážnejších\nnajnerozvážnejším\nnajnerozvážnejšími\nnajnerozvážnejšiu\nnajnerozvážnejšom\nnajnerozvážnejšou\nnajnerušenejšej\nnajnerušenejší\nnajnerušenejšia\nnajnerušenejšie\nnajnerušenejšieho\nnajnerušenejšiemu\nnajnerušenejších\nnajnerušenejším\nnajnerušenejšími\nnajnerušenejšiu\nnajnerušenejšom\nnajnerušenejšou\nnajnervóznejšej\nnajnervóznejší\nnajnervóznejšia\nnajnervóznejšie\nnajnervóznejšieho\nnajnervóznejšiemu\nnajnervóznejších\nnajnervóznejším\nnajnervóznejšími\nnajnervóznejšiu\nnajnervóznejšom\nnajnervóznejšou\nnajnesebeckejšej\nnajnesebeckejší\nnajnesebeckejšia\nnajnesebeckejšie\nnajnesebeckejšieho\nnajnesebeckejšiemu\nnajnesebeckejších\nnajnesebeckejším\nnajnesebeckejšími\nnajnesebeckejšiu\nnajnesebeckejšom\nnajnesebeckejšou\nnajneschodnejšej\nnajneschodnejší\nnajneschodnejšia\nnajneschodnejšie\nnajneschodnejšieho\nnajneschodnejšiemu\nnajneschodnejších\nnajneschodnejším\nnajneschodnejšími\nnajneschodnejšiu\nnajneschodnejšom\nnajneschodnejšou\nnajneschopnejšej\nnajneschopnejší\nnajneschopnejšia\nnajneschopnejšie\nnajneschopnejšieho\nnajneschopnejšiemu\nnajneschopnejších\nnajneschopnejším\nnajneschopnejšími\nnajneschopnejšiu\nnajneschopnejšom\nnajneschopnejšou\nnajneskôr\nnajneskrotnejšej\nnajneskrotnejší\nnajneskrotnejšia\nnajneskrotnejšie\nnajneskrotnejšieho\nnajneskrotnejšiemu\nnajneskrotnejších\nnajneskrotnejším\nnajneskrotnejšími\nnajneskrotnejšiu\nnajneskrotnejšom\nnajneskrotnejšou\nnajneskúsenejšej\nnajneskúsenejší\nnajneskúsenejšia\nnajneskúsenejšie\nnajneskúsenejšieho\nnajneskúsenejšiemu\nnajneskúsenejších\nnajneskúsenejším\nnajneskúsenejšími\nnajneskúsenejšiu\nnajneskúsenejšom\nnajneskúsenejšou\nnajneskutočnejšej\nnajneskutočnejší\nnajneskutočnejšia\nnajneskutočnejšie\nnajneskutočnejšieho\nnajneskutočnejšiemu\nnajneskutočnejších\nnajneskutočnejším\nnajneskutočnejšími\nnajneskutočnejšiu\nnajneskutočnejšom\nnajneskutočnejšou\nnajneslávnejšej\nnajneslávnejší\nnajneslávnejšia\nnajneslávnejšie\nnajneslávnejšieho\nnajneslávnejšiemu\nnajneslávnejších\nnajneslávnejším\nnajneslávnejšími\nnajneslávnejšiu\nnajneslávnejšom\nnajneslávnejšou\nnajneslušnejšej\nnajneslušnejší\nnajneslušnejšia\nnajneslušnejšie\nnajneslušnejšieho\nnajneslušnejšiemu\nnajneslušnejších\nnajneslušnejším\nnajneslušnejšími\nnajneslušnejšiu\nnajneslušnejšom\nnajneslušnejšou\nnajneslýchanejšej\nnajneslýchanejší\nnajneslýchanejšia\nnajneslýchanejšie\nnajneslýchanejšieho\nnajneslýchanejšiemu\nnajneslýchanejších\nnajneslýchanejším\nnajneslýchanejšími\nnajneslýchanejšiu\nnajneslýchanejšom\nnajneslýchanejšou\nnajnesmelejšej\nnajnesmelejší\nnajnesmelejšia\nnajnesmelejšie\nnajnesmelejšieho\nnajnesmelejšiemu\nnajnesmelejších\nnajnesmelejším\nnajnesmelejšími\nnajnesmelejšiu\nnajnesmelejšom\nnajnesmelejšou\nnajnesolventnejšej\nnajnesolventnejší\nnajnesolventnejšia\nnajnesolventnejšie\nnajnesolventnejšieho\nnajnesolventnejšiemu\nnajnesolventnejších\nnajnesolventnejším\nnajnesolventnejšími\nnajnesolventnejšiu\nnajnesolventnejšom\nnajnesolventnejšou\nnajnespisovnejšej\nnajnespisovnejší\nnajnespisovnejšia\nnajnespisovnejšie\nnajnespisovnejšieho\nnajnespisovnejšiemu\nnajnespisovnejších\nnajnespisovnejším\nnajnespisovnejšími\nnajnespisovnejšiu\nnajnespisovnejšom\nnajnespisovnejšou\nnajnespočítateľnejšej\nnajnespočítateľnejší\nnajnespočítateľnejšia\nnajnespočítateľnejšie\nnajnespočítateľnejšieho\nnajnespočítateľnejšiemu\nnajnespočítateľnejších\nnajnespočítateľnejším\nnajnespočítateľnejšími\nnajnespočítateľnejšiu\nnajnespočítateľnejšom\nnajnespočítateľnejšou\nnajnespokojnejšej\nnajnespokojnejší\nNajnespokojnejší\nnajnespokojnejšia\nNajnespokojnejšia\nnajnespokojnejšie\nnajnespokojnejšieho\nnajnespokojnejšiemu\nnajnespokojnejších\nnajnespokojnejším\nnajnespokojnejšími\nnajnespokojnejšiu\nnajnespokojnejšom\nnajnespokojnejšou\nnajnespoľahlivejšej\nnajnespoľahlivejší\nnajnespoľahlivejšia\nnajnespoľahlivejšie\nnajnespoľahlivejšieho\nnajnespoľahlivejšiemu\nnajnespoľahlivejších\nnajnespoľahlivejším\nnajnespoľahlivejšími\nNajnespoľahlivejšími\nnajnespoľahlivejšiu\nnajnespoľahlivejšom\nnajnespoľahlivejšou\nnajnespratnejšej\nnajnespratnejší\nnajnespratnejšia\nnajnespratnejšie\nnajnespratnejšieho\nnajnespratnejšiemu\nnajnespratnejších\nnajnespratnejším\nnajnespratnejšími\nnajnespratnejšiu\nnajnespratnejšom\nnajnespratnejšou\nnajnesprávnejšej\nnajnesprávnejší\nnajnesprávnejšia\nnajnesprávnejšie\nnajnesprávnejšieho\nnajnesprávnejšiemu\nnajnesprávnejších\nnajnesprávnejším\nnajnesprávnejšími\nnajnesprávnejšiu\nnajnesprávnejšom\nnajnesprávnejšou\nnajnespravodlivejšej\nnajnespravodlivejší\nnajnespravodlivejšia\nnajnespravodlivejšie\nnajnespravodlivejšieho\nnajnespravodlivejšiemu\nnajnespravodlivejších\nnajnespravodlivejším\nnajnespravodlivejšími\nnajnespravodlivejšiu\nnajnespravodlivejšom\nnajnespravodlivejšou\nnajnespútanejšej\nnajnespútanejší\nnajnespútanejšia\nnajnespútanejšie\nnajnespútanejšieho\nnajnespútanejšiemu\nnajnespútanejších\nnajnespútanejším\nnajnespútanejšími\nnajnespútanejšiu\nnajnespútanejšom\nnajnespútanejšou\nnajnestabilnejší\nnajnestabilnejších\nnajnestabilnejším\nNajnestabilnejšou\nnajnestrannejšej\nnajnestrannejší\nnajnestrannejšia\nnajnestrannejšie\nnajnestrannejšieho\nnajnestrannejšiemu\nnajnestrannejších\nnajnestrannejším\nnajnestrannejšími\nnajnestrannejšiu\nnajnestrannejšom\nnajnestrannejšou\nnajnesúcejšej\nnajnesúcejší\nnajnesúcejšia\nnajnesúcejšie\nnajnesúcejšieho\nnajnesúcejšiemu\nnajnesúcejších\nnajnesúcejším\nnajnesúcejšími\nnajnesúcejšiu\nnajnesúcejšom\nnajnesúcejšou\nnajnesúladnejšej\nnajnesúladnejší\nnajnesúladnejšia\nnajnesúladnejšie\nnajnesúladnejšieho\nnajnesúladnejšiemu\nnajnesúladnejších\nnajnesúladnejším\nnajnesúladnejšími\nnajnesúladnejšiu\nnajnesúladnejšom\nnajnesúladnejšou\nnajnesúmernejšej\nnajnesúmernejší\nnajnesúmernejšia\nnajnesúmernejšie\nnajnesúmernejšieho\nnajnesúmernejšiemu\nnajnesúmernejších\nnajnesúmernejším\nnajnesúmernejšími\nnajnesúmernejšiu\nnajnesúmernejšom\nnajnesúmernejšou\nnajnesúrodejšej\nnajnesúrodejší\nnajnesúrodejšia\nnajnesúrodejšie\nnajnesúrodejšieho\nnajnesúrodejšiemu\nnajnesúrodejších\nnajnesúrodejším\nnajnesúrodejšími\nnajnesúrodejšiu\nnajnesúrodejšom\nnajnesúrodejšou\nnajnesúvislejšej\nnajnesúvislejší\nnajnesúvislejšia\nnajnesúvislejšie\nnajnesúvislejšieho\nnajnesúvislejšiemu\nnajnesúvislejších\nnajnesúvislejším\nnajnesúvislejšími\nnajnesúvislejšiu\nnajnesúvislejšom\nnajnesúvislejšou\nnajnešikovnejšej\nnajnešikovnejší\nnajnešikovnejšia\nnajnešikovnejšie\nnajnešikovnejšieho\nnajnešikovnejšiemu\nnajnešikovnejších\nnajnešikovnejším\nnajnešikovnejšími\nnajnešikovnejšiu\nnajnešikovnejšom\nnajnešikovnejšou\nnajneškodnejšej\nnajneškodnejší\nnajneškodnejšia\nnajneškodnejšie\nnajneškodnejšieho\nnajneškodnejšiemu\nnajneškodnejších\nnajneškodnejším\nnajneškodnejšími\nnajneškodnejšiu\nnajneškodnejšom\nnajneškodnejšou\nnajnešportovejšie\nnajneštandardnejšej\nnajneštandardnejší\nnajneštandardnejšia\nnajneštandardnejšie\nnajneštandardnejšieho\nnajneštandardnejšiemu\nnajneštandardnejších\nnajneštandardnejším\nnajneštandardnejšími\nnajneštandardnejšiu\nnajneštandardnejšom\nnajneštandardnejšou\nnajnešťastnejšej\nnajnešťastnejší\nNajnešťastnejší\nnajnešťastnejšia\nnajnešťastnejšie\nnajnešťastnejšieho\nnajnešťastnejšiemu\nnajnešťastnejších\nnajnešťastnejším\nnajnešťastnejšími\nnajnešťastnejšiu\nnajnešťastnejšom\nnajnešťastnejšou\nnajnetradičnejšej\nnajnetradičnejší\nnajnetradičnejšia\nnajnetradičnejšie\nnajnetradičnejšieho\nnajnetradičnejšiemu\nnajnetradičnejších\nnajnetradičnejším\nnajnetradičnejšími\nnajnetradičnejšiu\nnajnetradičnejšom\nnajnetradičnejšou\nnajnetrebnejšej\nnajnetrebnejší\nnajnetrebnejšia\nnajnetrebnejšie\nnajnetrebnejšieho\nnajnetrebnejšiemu\nnajnetrebnejších\nnajnetrebnejším\nnajnetrebnejšími\nnajnetrebnejšiu\nnajnetrebnejšom\nnajnetrebnejšou\nnajneúčinnejších\nnajneudržateľnejšej\nnajneudržateľnejší\nnajneudržateľnejšia\nnajneudržateľnejšie\nnajneudržateľnejšieho\nnajneudržateľnejšiemu\nnajneudržateľnejších\nnajneudržateľnejším\nnajneudržateľnejšími\nnajneudržateľnejšiu\nnajneudržateľnejšom\nnajneudržateľnejšou\nnajneúnavnejšej\nnajneúnavnejší\nnajneúnavnejšia\nnajneúnavnejšie\nnajneúnavnejšieho\nnajneúnavnejšiemu\nnajneúnavnejších\nnajneúnavnejším\nnajneúnavnejšími\nnajneúnavnejšiu\nnajneúnavnejšom\nnajneúnavnejšou\nnajneúnosnejšej\nnajneúnosnejší\nnajneúnosnejšia\nnajneúnosnejšie\nnajneúnosnejšieho\nnajneúnosnejšiemu\nnajneúnosnejších\nnajneúnosnejším\nnajneúnosnejšími\nnajneúnosnejšiu\nnajneúnosnejšom\nnajneúnosnejšou\nnajneúplnejšej\nnajneúplnejší\nnajneúplnejšia\nnajneúplnejšie\nnajneúplnejšieho\nnajneúplnejšiemu\nnajneúplnejších\nnajneúplnejším\nnajneúplnejšími\nnajneúplnejšiu\nnajneúplnejšom\nnajneúplnejšou\nnajneúprosnejšej\nnajneúprosnejší\nnajneúprosnejšia\nnajneúprosnejšie\nnajneúprosnejšieho\nnajneúprosnejšiemu\nnajneúprosnejších\nnajneúprosnejším\nnajneúprosnejšími\nnajneúprosnejšiu\nnajneúprosnejšom\nnajneúprosnejšou\nnajneuralgickejšej\nnajneuralgickejší\nnajneuralgickejšia\nnajneuralgickejšie\nnajneuralgickejšieho\nnajneuralgickejšiemu\nnajneuralgickejších\nnajneuralgickejším\nnajneuralgickejšími\nnajneuralgickejšiu\nnajneuralgickejšom\nnajneuralgickejšou\nnajneurčitejšej\nnajneurčitejší\nnajneurčitejšia\nnajneurčitejšie\nnajneurčitejšieho\nnajneurčitejšiemu\nnajneurčitejších\nnajneurčitejším\nnajneurčitejšími\nnajneurčitejšiu\nnajneurčitejšom\nnajneurčitejšou\nnajneurotickejšej\nnajneurotickejší\nnajneurotickejšia\nnajneurotickejšie\nnajneurotickejšieho\nnajneurotickejšiemu\nnajneurotickejších\nnajneurotickejším\nnajneurotickejšími\nnajneurotickejšiu\nnajneurotickejšom\nnajneurotickejšou\nnajneuspokojivejší\nNajneústupčivejší\nnajneústupnejšej\nnajneústupnejší\nnajneústupnejšia\nnajneústupnejšie\nnajneústupnejšieho\nnajneústupnejšiemu\nnajneústupnejších\nnajneústupnejším\nnajneústupnejšími\nnajneústupnejšiu\nnajneústupnejšom\nnajneústupnejšou\nnajneutešenejšej\nnajneutešenejší\nnajneutešenejšia\nnajneutešenejšie\nnajneutešenejšieho\nnajneutešenejšiemu\nnajneutešenejších\nnajneutešenejším\nnajneutešenejšími\nnajneutešenejšiu\nnajneutešenejšom\nnajneutešenejšou\nnajneutrálnejšej\nnajneutrálnejší\nnajneutrálnejšia\nnajneutrálnejšie\nnajneutrálnejšieho\nnajneutrálnejšiemu\nnajneutrálnejších\nnajneutrálnejším\nnajneutrálnejšími\nnajneutrálnejšiu\nnajneutrálnejšom\nnajneutrálnejšou\nnajneuváženejšej\nnajneuváženejší\nnajneuváženejšia\nnajneuváženejšieho\nnajneuváženejšiemu\nnajneuváženejších\nnajneuváženejším\nnajneuváženejšími\nnajneuváženejšiu\nnajneuváženejšom\nnajneuváženejšou\nnajnevďačnejšej\nnajnevďačnejší\nnajnevďačnejšia\nnajnevďačnejšie\nnajnevďačnejšieho\nnajnevďačnejšiemu\nnajnevďačnejších\nnajnevďačnejším\nnajnevďačnejšími\nnajnevďačnejšiu\nnajnevďačnejšom\nnajnevďačnejšou\nnajnevedomejšej\nnajnevedomejší\nnajnevedomejšia\nnajnevedomejšie\nnajnevedomejšieho\nnajnevedomejšiemu\nnajnevedomejších\nnajnevedomejším\nnajnevedomejšími\nnajnevedomejšiu\nnajnevedomejšom\nnajnevedomejšou\nnajnevereckejšej\nnajnevereckejší\nnajnevereckejšia\nnajnevereckejšie\nnajnevereckejšieho\nnajnevereckejšiemu\nnajnevereckejších\nnajnevereckejším\nnajnevereckejšími\nnajnevereckejšiu\nnajnevereckejšom\nnajnevereckejšou\nnajnevhodnejšej\nnajnevhodnejší\nnajnevhodnejšia\nnajnevhodnejšie\nnajnevhodnejšieho\nnajnevhodnejšiemu\nnajnevhodnejších\nnajnevhodnejším\nnajnevhodnejšími\nnajnevhodnejšiu\nnajnevhodnejšom\nnajnevhodnejšou\nnajneviazanejšej\nnajneviazanejší\nnajneviazanejšia\nnajneviazanejšie\nnajneviazanejšieho\nnajneviazanejšiemu\nnajneviazanejších\nnajneviazanejším\nnajneviazanejšími\nnajneviazanejšiu\nnajneviazanejšom\nnajneviazanejšou\nnajnevídanejšej\nnajnevídanejší\nnajnevídanejšia\nnajnevídanejšie\nnajnevídanejšieho\nnajnevídanejšiemu\nnajnevídanejších\nnajnevídanejším\nnajnevídanejšími\nnajnevídanejšiu\nnajnevídanejšom\nnajnevídanejšou\nnajnevkusnejšej\nnajnevkusnejší\nnajnevkusnejšia\nnajnevkusnejšie\nnajnevkusnejšieho\nnajnevkusnejšiemu\nnajnevkusnejších\nnajnevkusnejším\nnajnevkusnejšími\nnajnevkusnejšiu\nnajnevkusnejšom\nnajnevkusnejšou\nnajnevládnejšej\nnajnevládnejší\nnajnevládnejšia\nnajnevládnejšie\nnajnevládnejšieho\nnajnevládnejšiemu\nnajnevládnejších\nnajnevládnejším\nnajnevládnejšími\nnajnevládnejšiu\nnajnevládnejšom\nnajnevládnejšou\nnajnevraživejšej\nnajnevraživejší\nnajnevraživejšia\nnajnevraživejšie\nnajnevraživejšieho\nnajnevraživejšiemu\nnajnevraživejších\nnajnevraživejším\nnajnevraživejšími\nnajnevraživejšiu\nnajnevraživejšom\nnajnevraživejšou\nnajnevrlejšej\nnajnevrlejší\nnajnevrlejšia\nnajnevrlejšie\nnajnevrlejšieho\nnajnevrlejšiemu\nnajnevrlejších\nnajnevrlejším\nnajnevrlejšími\nnajnevrlejšiu\nnajnevrlejšom\nnajnevrlejšou\nnajnevšednejšej\nnajnevšednejší\nnajnevšednejšia\nnajnevšednejšie\nnajnevšednejšieho\nnajnevšednejšiemu\nnajnevšednejších\nnajnevšednejším\nnajnevšednejšími\nnajnevšednejšiu\nnajnevšednejšom\nnajnevšednejšou\nnajnevšímavejšej\nnajnevšímavejší\nnajnevšímavejšia\nnajnevšímavejšie\nnajnevšímavejšieho\nnajnevšímavejšiemu\nnajnevšímavejších\nnajnevšímavejším\nnajnevšímavejšími\nnajnevšímavejšiu\nnajnevšímavejšom\nnajnevšímavejšou\nnajnevtieravejšej\nnajnevtieravejší\nnajnevtieravejšia\nnajnevtieravejšie\nnajnevtieravejšieho\nnajnevtieravejšiemu\nnajnevtieravejších\nnajnevtieravejším\nnajnevtieravejšími\nnajnevtieravejšiu\nnajnevtieravejšom\nnajnevtieravejšou\nnajnevyberanejšej\nnajnevyberanejší\nnajnevyberanejšia\nnajnevyberanejšie\nnajnevyberanejšieho\nnajnevyberanejšiemu\nnajnevyberanejších\nnajnevyberanejším\nnajnevyberanejšími\nnajnevyberanejšiu\nnajnevyberanejšom\nnajnevyberanejšou\nnajnevýbojnejšej\nnajnevýbojnejší\nnajnevýbojnejšia\nnajnevýbojnejšie\nnajnevýbojnejšieho\nnajnevýbojnejšiemu\nnajnevýbojnejších\nnajnevýbojnejším\nnajnevýbojnejšími\nnajnevýbojnejšiu\nnajnevýbojnejšom\nnajnevýbojnejšou\nnajnevyhnutejších\nnajnevyhnutnejšej\nnajnevyhnutnejší\nnajnevyhnutnejšia\nnajnevyhnutnejšie\nnajnevyhnutnejšieho\nnajnevyhnutnejšiemu\nnajnevyhnutnejších\nnajnevyhnutnejším\nnajnevyhnutnejšími\nnajnevyhnutnejšiu\nnajnevyhnutnejšom\nnajnevyhnutnejšou\nnajnevýhodnejšej\nnajnevýhodnejší\nnajnevýhodnejšia\nnajnevýhodnejšie\nnajnevýhodnejšieho\nnajnevýhodnejšiemu\nnajnevýhodnejších\nnajnevýhodnejším\nnajnevýhodnejšími\nNajnevýhodnejšími\nnajnevýhodnejšiu\nnajnevýhodnejšom\nnajnevýhodnejšou\nnajnevychovanejšej\nnajnevychovanejší\nnajnevychovanejšia\nnajnevychovanejšie\nnajnevychovanejšieho\nnajnevychovanejšiemu\nnajnevychovanejších\nnajnevychovanejším\nnajnevychovanejšími\nnajnevychovanejšiu\nnajnevychovanejšom\nnajnevychovanejšou\nnajnevypočítateľnejšej\nnajnevypočítateľnejší\nnajnevypočítateľnejšia\nnajnevypočítateľnejšie\nnajnevypočítateľnejšieho\nnajnevypočítateľnejšiemu\nnajnevypočítateľnejších\nnajnevypočítateľnejším\nnajnevypočítateľnejšími\nnajnevypočítateľnejšiu\nnajnevypočítateľnejšom\nnajnevypočítateľnejšou\nnajnevýraznejšej\nnajnevýraznejší\nnajnevýraznejšia\nnajnevýraznejšie\nnajnevýraznejšieho\nnajnevýraznejšiemu\nnajnevýraznejších\nnajnevýraznejším\nnajnevýraznejšími\nnajnevýraznejšiu\nnajnevýraznejšom\nnajnevýraznejšou\nnajnevysloviteľnejšej\nnajnevysloviteľnejší\nnajnevysloviteľnejšia\nnajnevysloviteľnejšie\nnajnevysloviteľnejšieho\nnajnevysloviteľnejšiemu\nnajnevysloviteľnejších\nnajnevysloviteľnejším\nnajnevysloviteľnejšími\nnajnevysloviteľnejšiu\nnajnevysloviteľnejšom\nnajnevysloviteľnejšou\nnajnevyspytateľnejšej\nnajnevyspytateľnejší\nnajnevyspytateľnejšia\nnajnevyspytateľnejšie\nnajnevyspytateľnejšieho\nnajnevyspytateľnejšiemu\nnajnevyspytateľnejších\nnajnevyspytateľnejším\nnajnevyspytateľnejšími\nnajnevyspytateľnejšiu\nnajnevyspytateľnejšom\nnajnevyspytateľnejšou\nnajnevyváženejšiu\nnajnevzdelanejšej\nnajnevzdelanejší\nnajnevzdelanejšia\nnajnevzdelanejšie\nnajnevzdelanejšieho\nnajnevzdelanejšiemu\nnajnevzdelanejších\nnajnevzdelanejším\nnajnevzdelanejšími\nnajnevzdelanejšiu\nnajnevzdelanejšom\nnajnevzdelanejšou\nnajnevzhľadnejšej\nnajnevzhľadnejší\nnajnevzhľadnejšia\nnajnevzhľadnejšie\nnajnevzhľadnejšieho\nnajnevzhľadnejšiemu\nnajnevzhľadnejších\nnajnevzhľadnejším\nnajnevzhľadnejšími\nnajnevzhľadnejšiu\nnajnevzhľadnejšom\nnajnevzhľadnejšou\nnajnezabudnuteľnejšej\nnajnezabudnuteľnejší\nnajnezabudnuteľnejšia\nnajnezabudnuteľnejšie\nnajnezabudnuteľnejšieho\nnajnezabudnuteľnejšiemu\nnajnezabudnuteľnejších\nnajnezabudnuteľnejším\nnajnezabudnuteľnejšími\nnajnezabudnuteľnejšiu\nnajnezabudnuteľnejšom\nnajnezabudnuteľnejšou\nnajnezadržateľnejšej\nnajnezadržateľnejší\nnajnezadržateľnejšia\nnajnezadržateľnejšie\nnajnezadržateľnejšieho\nnajnezadržateľnejšiemu\nnajnezadržateľnejších\nnajnezadržateľnejším\nnajnezadržateľnejšími\nnajnezadržateľnejšiu\nnajnezadržateľnejšom\nnajnezadržateľnejšou\nnajnezaobalenejšej\nnajnezaobalenejší\nnajnezaobalenejšia\nnajnezaobalenejšie\nnajnezaobalenejšieho\nnajnezaobalenejšiemu\nnajnezaobalenejších\nnajnezaobalenejším\nnajnezaobalenejšími\nnajnezaobalenejšiu\nnajnezaobalenejšom\nnajnezaobalenejšou\nnajnezaujatejšej\nnajnezaujatejší\nnajnezaujatejšia\nnajnezaujatejšie\nnajnezaujatejšieho\nnajnezaujatejšiemu\nnajnezaujatejších\nnajnezaujatejším\nnajnezaujatejšími\nnajnezaujatejšiu\nnajnezaujatejšom\nnajnezaujatejšou\nnajnezávideniahodnejšej\nnajnezávislejšej\nnajnezávislejší\nNajnezávislejší\nnajnezávislejšia\nnajnezávislejšie\nnajnezávislejšieho\nnajnezávislejšiemu\nnajnezávislejších\nnajnezávislejším\nnajnezávislejšími\nnajnezávislejšiu\nnajnezávislejšom\nnajnezávislejšou\nnajnezáživnejšej\nnajnezáživnejší\nnajnezáživnejšia\nnajnezáživnejšie\nnajnezáživnejšieho\nnajnezáživnejšiemu\nnajnezáživnejších\nnajnezáživnejším\nnajnezáživnejšími\nnajnezáživnejšiu\nnajnezáživnejšom\nnajnezáživnejšou\nnajnezbednejšej\nnajnezbednejší\nnajnezbednejšia\nnajnezbednejšie\nnajnezbednejšieho\nnajnezbednejšiemu\nnajnezbednejších\nnajnezbednejším\nnajnezbednejšími\nnajnezbednejšiu\nnajnezbednejšom\nnajnezbednejšou\nnajnezdolateľnejšej\nnajnezdolateľnejší\nnajnezdolateľnejšia\nnajnezdolateľnejšie\nnajnezdolateľnejšieho\nnajnezdolateľnejšiemu\nnajnezdolateľnejších\nnajnezdolateľnejším\nnajnezdolateľnejšími\nnajnezdolateľnejšiu\nnajnezdolateľnejšom\nnajnezdolateľnejšou\nnajnezdolnejšej\nnajnezdolnejší\nnajnezdolnejšia\nnajnezdolnejšie\nnajnezdolnejšieho\nnajnezdolnejšiemu\nnajnezdolnejších\nnajnezdolnejším\nnajnezdolnejšími\nnajnezdolnejšiu\nnajnezdolnejšom\nnajnezdolnejšou\nnajnezdravejšej\nnajnezdravejší\nnajnezdravejšia\nnajnezdravejšie\nnajnezdravejšieho\nnajnezdravejšiemu\nnajnezdravejších\nnajnezdravejším\nnajnezdravejšími\nnajnezdravejšiu\nnajnezdravejšom\nnajnezdravejšou\nnajnezdravším\nnajnezdvorilejšej\nnajnezdvorilejší\nnajnezdvorilejšia\nnajnezdvorilejšie\nnajnezdvorilejšieho\nnajnezdvorilejšiemu\nnajnezdvorilejších\nnajnezdvorilejším\nnajnezdvorilejšími\nnajnezdvorilejšiu\nnajnezdvorilejšom\nnajnezdvorilejšou\nnajnezištnejšie\nnajnezlomnejšie\nnajnezlučiteľnejšej\nnajnezlučiteľnejší\nnajnezlučiteľnejšia\nnajnezlučiteľnejšie\nnajnezlučiteľnejšieho\nnajnezlučiteľnejšiemu\nnajnezlučiteľnejších\nnajnezlučiteľnejším\nnajnezlučiteľnejšími\nnajnezlučiteľnejšiu\nnajnezlučiteľnejšom\nnajnezlučiteľnejšou\nnajnezmieriteľnejšej\nnajnezmieriteľnejší\nnajnezmieriteľnejšia\nnajnezmieriteľnejšie\nnajnezmieriteľnejšieho\nnajnezmieriteľnejšiemu\nnajnezmieriteľnejších\nnajnezmieriteľnejším\nnajnezmieriteľnejšími\nnajnezmieriteľnejšiu\nnajnezmieriteľnejšom\nnajnezmieriteľnejšou\nnajnezmyselnejšej\nnajnezmyselnejší\nnajnezmyselnejšia\nnajnezmyselnejšieho\nnajnezmyselnejšiemu\nnajnezmyselnejších\nnajnezmyselnejším\nnajnezmyselnejšími\nnajnezmyselnejšiu\nnajnezmyselnejšom\nnajnezmyselnejšou\nnajneznámejšej\nnajneznámejší\nnajneznámejšia\nnajneznámejšie\nnajneznámejšieho\nnajneznámejšiemu\nnajneznámejších\nnajneznámejším\nnajneznámejšími\nnajneznámejšiu\nnajneznámejšom\nnajneznámejšou\nnajneznášanlivejšej\nnajneznášanlivejší\nnajneznášanlivejšia\nnajneznášanlivejšie\nnajneznášanlivejšieho\nnajneznášanlivejšiemu\nnajneznášanlivejších\nnajneznášanlivejším\nnajneznášanlivejšími\nnajneznášanlivejšiu\nnajneznášanlivejšom\nnajneznášanlivejšou\nnajneznesiteľnejšej\nnajneznesiteľnejší\nnajneznesiteľnejšia\nnajneznesiteľnejšie\nnajneznesiteľnejšieho\nnajneznesiteľnejšiemu\nnajneznesiteľnejších\nnajneznesiteľnejším\nnajneznesiteľnejšími\nnajneznesiteľnejšiu\nnajneznesiteľnejšom\nnajneznesiteľnejšou\nnajnezodpovednejšej\nnajnezodpovednejší\nnajnezodpovednejšia\nnajnezodpovednejšie\nnajnezodpovednejšieho\nnajnezodpovednejšiemu\nnajnezodpovednejších\nnajnezodpovednejším\nnajnezodpovednejšími\nnajnezodpovednejšiu\nnajnezodpovednejšom\nnajnezodpovednejšou\nnajnezrelšej\nnajnezrelší\nnajnezrelšia\nnajnezrelšie\nnajnezrelšieho\nnajnezrelšiemu\nnajnezrelších\nnajnezrelším\nnajnezrelšími\nnajnezrelšiu\nnajnezrelšom\nnajnezrelšou\nnajnezvratnejšej\nnajnezvratnejší\nnajnezvratnejšia\nnajnezvratnejšie\nnajnezvratnejšieho\nnajnezvratnejšiemu\nnajnezvratnejších\nnajnezvratnejším\nnajnezvratnejšími\nnajnezvratnejšiu\nnajnezvratnejšom\nnajnezvratnejšou\nnajnezvyčajnejšej\nnajnezvyčajnejší\nnajnezvyčajnejšia\nnajnezvyčajnejšie\nnajnezvyčajnejšieho\nnajnezvyčajnejšiemu\nnajnezvyčajnejších\nnajnezvyčajnejším\nnajnezvyčajnejšími\nnajnezvyčajnejšiu\nnajnezvyčajnejšom\nnajnezvyčajnejšou\nnajnezvyklejšej\nnajnezvyklejší\nnajnezvyklejšia\nnajnezvyklejšie\nnajnezvyklejšieho\nnajnezvyklejšiemu\nnajnezvyklejších\nnajnezvyklejším\nnajnezvyklejšími\nnajnezvyklejšiu\nnajnezvyklejšom\nnajnezvyklejšou\nnajnežičlivejšej\nnajnežičlivejší\nnajnežičlivejšia\nnajnežičlivejšie\nnajnežičlivejšieho\nnajnežičlivejšiemu\nnajnežičlivejších\nnajnežičlivejším\nnajnežičlivejšími\nnajnežičlivejšiu\nnajnežičlivejšom\nnajnežičlivejšou\nnajnežnejšej\nnajnežnejší\nnajnežnejšia\nnajnežnejšie\nnajnežnejšieho\nnajnežnejšiemu\nnajnežnejších\nnajnežnejším\nnajnežnejšími\nnajnežnejšiu\nnajnežnejšom\nnajnežnejšou\nnajničivejšej\nnajničivejší\nnajničivejšia\nnajničivejšie\nnajničivejšieho\nnajničivejšiemu\nnajničivejších\nnajničivejším\nnajničivejšími\nnajničivejšiu\nnajničivejšom\nnajničivejšou\nnajničomnejšej\nnajničomnejší\nnajničomnejšia\nnajničomnejšie\nnajničomnejšieho\nnajničomnejšiemu\nnajničomnejších\nnajničomnejším\nnajničomnejšími\nnajničomnejšiu\nnajničomnejšom\nnajničomnejšou\nnajničotnejšej\nnajničotnejší\nnajničotnejšia\nnajničotnejšie\nnajničotnejšieho\nnajničotnejšiemu\nnajničotnejších\nnajničotnejším\nnajničotnejšími\nnajničotnejšiu\nnajničotnejšom\nnajničotnejšou\nnajnihilistickejšej\nnajnihilistickejší\nnajnihilistickejšia\nnajnihilistickejšie\nnajnihilistickejšieho\nnajnihilistickejšiemu\nnajnihilistickejších\nnajnihilistickejším\nnajnihilistickejšími\nnajnihilistickejšiu\nnajnihilistickejšom\nnajnihilistickejšou\nnajnitkovitejšej\nnajnitkovitejší\nnajnitkovitejšia\nnajnitkovitejšie\nnajnitkovitejšieho\nnajnitkovitejšiemu\nnajnitkovitejších\nnajnitkovitejším\nnajnitkovitejšími\nnajnitkovitejšiu\nnajnitkovitejšom\nnajnitkovitejšou\nnajnižie\nnajnížinatejšej\nnajnížinatejší\nnajnížinatejšia\nnajnížinatejšie\nnajnížinatejšieho\nnajnížinatejšiemu\nnajnížinatejších\nnajnížinatejším\nnajnížinatejšími\nnajnížinatejšiu\nnajnížinatejšom\nnajnížinatejšou\nnajnoblesnejšej\nnajnoblesnejší\nnajnoblesnejšia\nnajnoblesnejšie\nnajnoblesnejšieho\nnajnoblesnejšiemu\nnajnoblesnejších\nnajnoblesnejším\nnajnoblesnejšími\nnajnoblesnejšiu\nnajnoblesnejšom\nnajnoblesnejšou\nnajnohatejšej\nnajnohatejší\nnajnohatejšia\nnajnohatejšie\nnajnohatejšieho\nnajnohatejšiemu\nnajnohatejších\nnajnohatejším\nnajnohatejšími\nnajnohatejšiu\nnajnohatejšom\nnajnohatejšou\nnajnonkonformnejšej\nnajnonkonformnejší\nnajnonkonformnejšia\nnajnonkonformnejšie\nnajnonkonformnejšieho\nnajnonkonformnejšiemu\nnajnonkonformnejších\nnajnonkonformnejším\nnajnonkonformnejšími\nnajnonkonformnejšiu\nnajnonkonformnejšom\nnajnonkonformnejšou\nnajnonšalantnejšej\nnajnonšalantnejší\nnajnonšalantnejšia\nnajnonšalantnejšie\nnajnonšalantnejšieho\nnajnonšalantnejšiemu\nnajnonšalantnejších\nnajnonšalantnejším\nnajnonšalantnejšími\nnajnonšalantnejšiu\nnajnonšalantnejšom\nnajnonšalantnejšou\nnajnormálnejšej\nnajnormálnejší\nnajnormálnejšia\nnajnormálnejšie\nnajnormálnejšieho\nnajnormálnejšiemu\nnajnormálnejších\nnajnormálnejším\nnajnormálnejšími\nnajnormálnejšiu\nnajnormálnejšom\nnajnormálnejšou\nnajnórskejšej\nnajnórskejší\nnajnórskejšia\nnajnórskejšie\nnajnórskejšieho\nnajnórskejšiemu\nnajnórskejších\nnajnórskejším\nnajnórskejšími\nnajnórskejšiu\nnajnórskejšom\nnajnórskejšou\nnajnosatejšej\nnajnosatejší\nnajnosatejšia\nnajnosatejšie\nnajnosatejšieho\nnajnosatejšiemu\nnajnosatejších\nnajnosatejším\nnajnosatejšími\nnajnosatejšiu\nnajnosatejšom\nnajnosatejšou\nnajnosnejšieho\nnajnosnejších\nnajnostalgickejšej\nnajnostalgickejší\nnajnostalgickejšia\nnajnostalgickejšie\nnajnostalgickejšieho\nnajnostalgickejšiemu\nnajnostalgickejších\nnajnostalgickejším\nnajnostalgickejšími\nnajnostalgickejšiu\nnajnostalgickejšom\nnajnostalgickejšou\nnajnovátorskejšej\nnajnovátorskejší\nnajnovátorskejšia\nnajnovátorskejšie\nnajnovátorskejšieho\nnajnovátorskejšiemu\nnajnovátorskejších\nnajnovátorskejším\nnajnovátorskejšími\nnajnovátorskejšiu\nnajnovátorskejšom\nnajnovátorskejšou\nnajnovodobejšej\nnajnovodobejší\nnajnovodobejšia\nnajnovodobejšie\nnajnovodobejšieho\nnajnovodobejšiemu\nnajnovodobejších\nnajnovodobejším\nnajnovodobejšími\nnajnovodobejšiu\nnajnovodobejšom\nnajnovodobejšou\nnajnutkavejšej\nnajnutkavejší\nnajnutkavejšia\nnajnutkavejšie\nnajnutkavejšieho\nnajnutkavejšiemu\nnajnutkavejších\nnajnutkavejším\nnajnutkavejšími\nnajnutkavejšiu\nnajnutkavejšom\nnajnutkavejšou\nnajobávanejšej\nnajobávanejší\nNajobávanejší\nnajobávanejšia\nnajobávanejšie\nNajobávanejšie\nnajobávanejšieho\nnajobávanejšiemu\nnajobávanejších\nnajobávanejším\nNajobávanejším\nnajobávanejšími\nnajobávanejšiu\nnajobávanejšom\nnajobávanejšou\nnajobdivnejšej\nnajobdivnejší\nnajobdivnejšia\nnajobdivnejšie\nnajobdivnejšieho\nnajobdivnejšiemu\nnajobdivnejších\nnajobdivnejším\nnajobdivnejšími\nnajobdivnejšiu\nnajobdivnejšom\nnajobdivnejšou\nnajobdivuhodnejšej\nnajobdivuhodnejší\nnajobdivuhodnejšia\nnajobdivuhodnejšie\nnajobdivuhodnejšieho\nnajobdivuhodnejšiemu\nnajobdivuhodnejších\nnajobdivuhodnejším\nnajobdivuhodnejšími\nnajobdivuhodnejšiu\nnajobdivuhodnejšom\nnajobdivuhodnejšou\nnajobdĺžnikovitejšej\nnajobdĺžnikovitejší\nnajobdĺžnikovitejšia\nnajobdĺžnikovitejšie\nnajobdĺžnikovitejšieho\nnajobdĺžnikovitejšiemu\nnajobdĺžnikovitejších\nnajobdĺžnikovitejším\nnajobdĺžnikovitejšími\nnajobdĺžnikovitejšiu\nnajobdĺžnikovitejšom\nnajobdĺžnikovitejšou\nnajobetavejšej\nnajobetavejší\nnajobetavejšia\nnajobetavejšie\nnajobetavejšieho\nnajobetavejšiemu\nnajobetavejších\nnajobetavejším\nnajobetavejšími\nnajobetavejšiu\nnajobetavejšom\nnajobetavejšou\nnajobéznejšej\nnajobéznejší\nnajobéznejšia\nnajobéznejšie\nnajobéznejšieho\nnajobéznejšiemu\nnajobéznejších\nnajobéznejším\nnajobéznejšími\nnajobéznejšiu\nnajobéznejšom\nnajobéznejšou\nnajobhnanie\nnajobchodníckejšej\nnajobchodníckejší\nnajobchodníckejšia\nnajobchodníckejšie\nnajobchodníckejšieho\nnajobchodníckejšiemu\nnajobchodníckejších\nnajobchodníckejším\nnajobchodníckejšími\nnajobchodníckejšiu\nnajobchodníckejšom\nnajobchodníckejšou\nnajobjavnejšej\nnajobjavnejší\nnajobjavnejšia\nnajobjavnejšie\nnajobjavnejšieho\nnajobjavnejšiemu\nnajobjavnejších\nnajobjavnejším\nnajobjavnejšími\nnajobjavnejšiu\nnajobjavnejšom\nnajobjavnejšou\nnajobjektívnejšej\nnajobjektívnejší\nnajobjektívnejšia\nnajobjektívnejšie\nnajobjektívnejšieho\nnajobjektívnejšiemu\nnajobjektívnejších\nnajobjektívnejším\nnajobjektívnejšími\nnajobjektívnejšiu\nnajobjektívnejšom\nnajobjektívnejšou\nnajobjemnejšej\nnajobjemnejší\nnajobjemnejšia\nnajobjemnejšie\nnajobjemnejšieho\nnajobjemnejšiemu\nnajobjemnejších\nnajobjemnejším\nNajobjemnejším\nnajobjemnejšími\nnajobjemnejšiu\nnajobjemnejšom\nnajobjemnejšou\nnajoblačnejšej\nnajoblačnejší\nnajoblačnejšia\nnajoblačnejšie\nnajoblačnejšieho\nnajoblačnejšiemu\nnajoblačnejších\nnajoblačnejším\nnajoblačnejšími\nnajoblačnejšiu\nnajoblačnejšom\nnajoblačnejšou\nnajoblejšej\nnajoblejší\nnajoblejšia\nnajoblejšie\nnajoblejšieho\nnajoblejšiemu\nnajoblejších\nnajoblejším\nnajoblejšími\nnajoblejšiu\nnajoblejšom\nnajoblejšou\nnajobličkovitejšej\nnajobličkovitejší\nnajobličkovitejšia\nnajobličkovitejšie\nnajobličkovitejšieho\nnajobličkovitejšiemu\nnajobličkovitejších\nnajobličkovitejším\nnajobličkovitejšími\nnajobličkovitejšiu\nnajobličkovitejšom\nnajobličkovitejšou\nnajobligátnejšej\nnajobligátnejší\nnajobligátnejšia\nnajobligátnejšie\nnajobligátnejšieho\nnajobligátnejšiemu\nnajobligátnejších\nnajobligátnejším\nnajobligátnejšími\nnajobligátnejšiu\nnajobligátnejšom\nnajobligátnejšou\nnajobludnejšej\nnajobludnejší\nnajobludnejšia\nnajobludnejšie\nnajobludnejšieho\nnajobludnejšiemu\nnajobludnejších\nnajobludnejším\nnajobludnejšími\nnajobludnejšiu\nnajobludnejšom\nnajobludnejšou\nnajoblúkovitejšej\nnajoblúkovitejší\nnajoblúkovitejšia\nnajoblúkovitejšie\nnajoblúkovitejšieho\nnajoblúkovitejšiemu\nnajoblúkovitejších\nnajoblúkovitejším\nnajoblúkovitejšími\nnajoblúkovitejšiu\nnajoblúkovitejšom\nnajoblúkovitejšou\nnajobmedzenejšej\nnajobmedzenejší\nnajobmedzenejšia\nnajobmedzenejšie\nnajobmedzenejšieho\nnajobmedzenejšiemu\nnajobmedzenejších\nnajobmedzenejším\nnajobmedzenejšími\nnajobmedzenejšiu\nnajobmedzenejšom\nnajobmedzenejšou\nnajobozretnejšej\nnajobozretnejší\nnajobozretnejšia\nnajobozretnejšie\nnajobozretnejšieho\nnajobozretnejšiemu\nnajobozretnejších\nnajobozretnejším\nnajobozretnejšími\nnajobozretnejšiu\nnajobozretnejšom\nnajobozretnejšou\nnajobradnejšej\nnajobradnejší\nnajobradnejšia\nnajobradnejšie\nnajobradnejšieho\nnajobradnejšiemu\nnajobradnejších\nnajobradnejším\nnajobradnejšími\nnajobradnejšiu\nnajobradnejšom\nnajobradnejšou\nnajobranyschopnejšej\nnajobranyschopnejší\nnajobranyschopnejšia\nnajobranyschopnejšie\nnajobranyschopnejšieho\nnajobranyschopnejšiemu\nnajobranyschopnejších\nnajobranyschopnejším\nnajobranyschopnejšími\nnajobranyschopnejšiu\nnajobranyschopnejšom\nnajobranyschopnejšou\nnajobratnejšej\nnajobratnejší\nnajobratnejšia\nnajobratnejšie\nnajobratnejšieho\nnajobratnejšiemu\nnajobratnejších\nnajobratnejším\nnajobratnejšími\nnajobratnejšiu\nnajobratnejšom\nnajobratnejšou\nnajobraznejšej\nnajobraznejší\nnajobraznejšia\nnajobraznejšie\nnajobraznejšieho\nnajobraznejšiemu\nnajobraznejších\nnajobraznejším\nnajobraznejšími\nnajobraznejšiu\nnajobraznejšom\nnajobraznejšou\nnajobrnenejšej\nnajobrnenejší\nnajobrnenejšia\nnajobrnenejšie\nnajobrnenejšieho\nnajobrnenejšiemu\nnajobrnenejších\nnajobrnenejším\nnajobrnenejšími\nnajobrnenejšiu\nnajobrnenejšom\nnajobrnenejšou\nnajobrovitejšej\nnajobrovitejší\nnajobrovitejšia\nnajobrovitejšie\nnajobrovitejšieho\nnajobrovitejšiemu\nnajobrovitejších\nnajobrovitejším\nnajobrovitejšími\nnajobrovitejšiu\nnajobrovitejšom\nnajobrovitejšou\nnajobsažnejšej\nnajobsažnejší\nnajobsažnejšia\nnajobsažnejšie\nnajobsažnejšieho\nnajobsažnejšiemu\nnajobsažnejších\nnajobsažnejším\nnajobsažnejšími\nnajobsažnejšiu\nnajobsažnejšom\nnajobsažnejšou\nnajobscénnejšej\nnajobscénnejší\nnajobscénnejšia\nnajobscénnejšie\nnajobscénnejšieho\nnajobscénnejšiemu\nnajobscénnejších\nnajobscénnejším\nnajobscénnejšími\nnajobscénnejšiu\nnajobscénnejšom\nnajobscénnejšou\nnajobsiahlejšej\nnajobsiahlejší\nnajobsiahlejšia\nnajobsiahlejšie\nnajobsiahlejšieho\nnajobsiahlejšiemu\nnajobsiahlejších\nnajobsiahlejším\nnajobsiahlejšími\nnajobsiahlejšiu\nnajobsiahlejšom\nnajobsiahlejšou\nnajobskúrnejšej\nnajobskúrnejší\nnajobskúrnejšia\nnajobskúrnejšie\nnajobskúrnejšieho\nnajobskúrnejšiemu\nnajobskúrnejších\nnajobskúrnejším\nnajobskúrnejšími\nnajobskúrnejšiu\nnajobskúrnejšom\nnajobskúrnejšou\nnajobstarožnejšej\nnajobstarožnejší\nnajobstarožnejšia\nnajobstarožnejšie\nnajobstarožnejšieho\nnajobstarožnejšiemu\nnajobstarožnejších\nnajobstarožnejším\nnajobstarožnejšími\nnajobstarožnejšiu\nnajobstarožnejšom\nnajobstarožnejšou\nnajobstojnejšej\nnajobstojnejší\nnajobstojnejšia\nnajobstojnejšie\nnajobstojnejšieho\nnajobstojnejšiemu\nnajobstojnejších\nnajobstojnejším\nnajobstojnejšími\nnajobstojnejšiu\nnajobstojnejšom\nnajobstojnejšou\nnajobšírnejšej\nnajobšírnejší\nnajobšírnejšia\nnajobšírnejšie\nnajobšírnejšieho\nnajobšírnejšiemu\nnajobšírnejších\nnajobšírnejším\nnajobšírnejšími\nnajobšírnejšiu\nNajobšírnejšiu\nnajobšírnejšom\nnajobšírnejšou\nnajobštrukčnejšej\nnajobštrukčnejší\nnajobštrukčnejšia\nnajobštrukčnejšie\nnajobštrukčnejšieho\nnajobštrukčnejšiemu\nnajobštrukčnejších\nnajobštrukčnejším\nnajobštrukčnejšími\nnajobštrukčnejšiu\nnajobštrukčnejšom\nnajobštrukčnejšou\nnajobťažnejšej\nnajobťažnejší\nnajobťažnejšia\nnajobťažnejšie\nnajobťažnejšieho\nnajobťažnejšiemu\nnajobťažnejších\nnajobťažnejším\nnajobťažnejšími\nnajobťažnejšiu\nnajobťažnejšom\nnajobťažnejšou\nnajobtiažnejšej\nnajobtiažnejší\nnajobtiažnejšia\nnajobtiažnejšie\nnajobtiažnejšieho\nnajobtiažnejšiemu\nnajobtiažnejších\nnajobtiažnejším\nnajobtiažnejšími\nnajobtiažnejšiu\nnajobtiažnejšom\nnajobtiažnejšou\nnajobtínanie\nnajobvyklejšej\nnajobvyklejší\nnajobvyklejšia\nnajobvyklejšie\nnajobvyklejšieho\nnajobvyklejšiemu\nnajobvyklejších\nnajobvyklejším\nnajobvyklejšími\nnajobvyklejšiu\nnajobvyklejšom\nnajobvyklejšou\nnajobyčajnejšej\nnajobyčajnejší\nnajobyčajnejšia\nnajobyčajnejšieho\nnajobyčajnejšiemu\nnajobyčajnejších\nnajobyčajnejším\nnajobyčajnejšími\nnajobyčajnejšiu\nnajobyčajnejšom\nnajobyčajnejšou\nnajobývanejšej\nnajobývanejší\nnajobývanejšia\nnajobývanejšie\nnajobývanejšieho\nnajobývanejšiemu\nnajobývanejších\nnajobývanejším\nnajobývanejšími\nnajobývanejšiu\nnajobývanejšom\nnajobývanejšou\nnajobývateľnejšej\nnajobývateľnejší\nnajobývateľnejšia\nnajobývateľnejšie\nnajobývateľnejšieho\nnajobývateľnejšiemu\nnajobývateľnejších\nnajobývateľnejším\nnajobývateľnejšími\nnajobývateľnejšiu\nnajobývateľnejšom\nnajobývateľnejšou\nnajoctovitejšej\nnajoctovitejší\nnajoctovitejšia\nnajoctovitejšie\nnajoctovitejšieho\nnajoctovitejšiemu\nnajoctovitejších\nnajoctovitejším\nnajoctovitejšími\nnajoctovitejšiu\nnajoctovitejšom\nnajoctovitejšou\nnajočarenejšej\nnajočarenejší\nnajočarenejšia\nnajočarenejšie\nnajočarenejšieho\nnajočarenejšiemu\nnajočarenejších\nnajočarenejším\nnajočarenejšími\nnajočarenejšiu\nnajočarenejšom\nnajočarenejšou\nnajočarovanejšie\nnajočarujúcejšej\nnajočarujúcejší\nnajočarujúcejšia\nnajočarujúcejšie\nnajočarujúcejšieho\nnajočarujúcejšiemu\nnajočarujúcejších\nnajočarujúcejším\nnajočarujúcejšími\nnajočarujúcejšiu\nnajočarujúcejšom\nnajočarujúcejšou\nnajočistnejšej\nnajočistnejší\nnajočistnejšia\nnajočistnejšie\nnajočistnejšieho\nnajočistnejšiemu\nnajočistnejších\nnajočistnejším\nnajočistnejšími\nnajočistnejšiu\nnajočistnejšom\nnajočistnejšou\nnajočividnejšej\nnajočividnejší\nnajočividnejšia\nnajočividnejšie\nnajočividnejšieho\nnajočividnejšiemu\nnajočividnejších\nnajočividnejším\nnajočividnejšími\nnajočividnejšiu\nnajočividnejšom\nnajočividnejšou\nnajodbojnejšej\nnajodbojnejší\nnajodbojnejšia\nnajodbojnejšie\nnajodbojnejšieho\nnajodbojnejšiemu\nnajodbojnejších\nnajodbojnejším\nnajodbojnejšími\nnajodbojnejšiu\nnajodbojnejšom\nnajodbojnejšou\nnajodbornejšej\nnajodbornejší\nnajodbornejšia\nnajodbornejšie\nNajodbornejšie\nnajodbornejšieho\nnajodbornejšiemu\nnajodbornejších\nnajodbornejším\nnajodbornejšími\nnajodbornejšiu\nnajodbornejšom\nnajodbornejšou\nnajoddanejšej\nnajoddanejší\nnajoddanejšia\nnajoddanejšie\nnajoddanejšieho\nnajoddanejšiemu\nnajoddanejších\nnajoddanejším\nnajoddanejšími\nnajoddanejšiu\nnajoddanejšom\nnajoddanejšou\nnajoddelenejšej\nnajoddelenejší\nnajoddelenejšia\nnajoddelenejšie\nnajoddelenejšieho\nnajoddelenejšiemu\nnajoddelenejších\nnajoddelenejším\nnajoddelenejšími\nnajoddelenejšiu\nnajoddelenejšom\nnajoddelenejšou\nnajoddychovejšej\nnajoddychovejší\nnajoddychovejšia\nnajoddychovejšie\nnajoddychovejšieho\nnajoddychovejšiemu\nnajoddychovejších\nnajoddychovejším\nnajoddychovejšími\nnajoddychovejšiu\nnajoddychovejšom\nnajoddychovejšou\nnajodhodlanejšej\nnajodhodlanejší\nnajodhodlanejšia\nnajodhodlanejšie\nnajodhodlanejšieho\nnajodhodlanejšiemu\nnajodhodlanejších\nnajodhodlanejším\nnajodhodlanejšími\nnajodhodlanejšiu\nnajodhodlanejšom\nnajodhodlanejšou\nnajodióznejšej\nnajodióznejší\nnajodióznejšia\nnajodióznejšie\nnajodióznejšieho\nnajodióznejšiemu\nnajodióznejších\nnajodióznejším\nnajodióznejšími\nnajodióznejšiu\nnajodióznejšom\nnajodióznejšou\nnajodlišnejšej\nnajodlišnejší\nnajodlišnejšia\nnajodlišnejšie\nnajodlišnejšieho\nnajodlišnejšiemu\nnajodlišnejších\nnajodlišnejším\nnajodlišnejšími\nnajodlišnejšiu\nnajodlišnejšom\nnajodlišnejšou\nNajodlišnejšou\nnajodlúčenejšej\nnajodlúčenejší\nnajodlúčenejšia\nnajodlúčenejšie\nnajodlúčenejšieho\nnajodlúčenejšiemu\nnajodlúčenejších\nnajodlúčenejším\nnajodlúčenejšími\nnajodlúčenejšiu\nnajodlúčenejšom\nnajodlúčenejšou\nnajodmeranejšej\nnajodmeranejší\nnajodmeranejšia\nnajodmeranejšie\nnajodmeranejšieho\nnajodmeranejšiemu\nnajodmeranejších\nnajodmeranejším\nnajodmeranejšími\nnajodmeranejšiu\nnajodmeranejšom\nnajodmeranejšou\nnajodmietavejšej\nnajodmietavejší\nnajodmietavejšia\nnajodmietavejšie\nnajodmietavejšieho\nnajodmietavejšiemu\nnajodmietavejších\nnajodmietavejším\nnajodmietavejšími\nnajodmietavejšiu\nnajodmietavejšom\nnajodmietavejšou\nnajodolnejšej\nnajodolnejší\nnajodolnejšia\nnajodolnejšie\nnajodolnejšieho\nnajodolnejšiemu\nnajodolnejších\nnajodolnejším\nnajodolnejšími\nnajodolnejšiu\nnajodolnejšom\nnajodolnejšou\nnajodôvodnenejšej\nnajodôvodnenejší\nnajodôvodnenejšia\nnajodôvodnenejšie\nnajodôvodnenejšieho\nnajodôvodnenejšiemu\nnajodôvodnenejších\nnajodôvodnenejším\nnajodôvodnenejšími\nnajodôvodnenejšiu\nnajodôvodnenejšom\nnajodôvodnenejšou\nnajodovzdanejšej\nnajodovzdanejší\nnajodovzdanejšia\nnajodovzdanejšie\nnajodovzdanejšieho\nnajodovzdanejšiemu\nnajodovzdanejších\nnajodovzdanejším\nnajodovzdanejšími\nnajodovzdanejšiu\nnajodovzdanejšom\nnajodovzdanejšou\nnajodpornejšíF\nnajodpudivejšej\nnajodpudivejší\nnajodpudivejšia\nnajodpudivejšie\nnajodpudivejšieho\nnajodpudivejšiemu\nnajodpudivejších\nnajodpudivejším\nnajodpudivejšími\nnajodpudivejšiu\nnajodpudivejšom\nnajodpudivejšou\nnajodpudzujúcejšej\nnajodpudzujúcejší\nnajodpudzujúcejšia\nnajodpudzujúcejšie\nnajodpudzujúcejšieho\nnajodpudzujúcejšiemu\nnajodpudzujúcejších\nnajodpudzujúcejším\nnajodpudzujúcejšími\nnajodpudzujúcejšiu\nnajodpudzujúcejšom\nnajodpudzujúcejšou\nnajodrodilejšej\nnajodrodilejší\nnajodrodilejšia\nnajodrodilejšie\nnajodrodilejšieho\nnajodrodilejšiemu\nnajodrodilejších\nnajodrodilejším\nnajodrodilejšími\nnajodrodilejšiu\nnajodrodilejšom\nnajodrodilejšou\nnajodstrašujúcejšej\nnajodstrašujúcejší\nnajodstrašujúcejšia\nnajodstrašujúcejšie\nnajodstrašujúcejšieho\nnajodstrašujúcejšiemu\nnajodstrašujúcejších\nnajodstrašujúcejším\nnajodstrašujúcejšími\nnajodstrašujúcejšiu\nnajodstrašujúcejšom\nnajodstrašujúcejšou\nnajodstredivejšej\nnajodstredivejší\nnajodstredivejšia\nnajodstredivejšie\nnajodstredivejšieho\nnajodstredivejšiemu\nnajodstredivejších\nnajodstredivejším\nnajodstredivejšími\nnajodstredivejšiu\nnajodstredivejšom\nnajodstredivejšou\nnajodsúdeniahodnejšie\nnajodťažitejšej\nnajodťažitejší\nnajodťažitejšia\nnajodťažitejšie\nnajodťažitejšieho\nnajodťažitejšiemu\nnajodťažitejších\nnajodťažitejším\nnajodťažitejšími\nnajodťažitejšiu\nnajodťažitejšom\nnajodťažitejšou\nnajoduševnenejšej\nnajoduševnenejší\nnajoduševnenejšia\nnajoduševnenejšie\nnajoduševnenejšieho\nnajoduševnenejšiemu\nnajoduševnenejších\nnajoduševnenejším\nnajoduševnenejšími\nnajoduševnenejšiu\nnajoduševnenejšom\nnajoduševnenejšou\nnajodvážnejšej\nnajodvážnejší\nnajodvážnejšia\nNajodvážnejšia\nnajodvážnejšie\nnajodvážnejšieho\nnajodvážnejšiemu\nnajodvážnejších\nnajodvážnejším\nnajodvážnejšími\nnajodvážnejšiu\nnajodvážnejšom\nnajodvážnejšou\nnajodzbrojujúcejšej\nnajodzbrojujúcejší\nnajodzbrojujúcejšia\nnajodzbrojujúcejšie\nnajodzbrojujúcejšieho\nnajodzbrojujúcejšiemu\nnajodzbrojujúcejších\nnajodzbrojujúcejším\nnajodzbrojujúcejšími\nnajodzbrojujúcejšiu\nnajodzbrojujúcejšom\nnajodzbrojujúcejšou\nnajofenzívnejšej\nnajofenzívnejší\nnajofenzívnejšia\nnajofenzívnejšie\nnajofenzívnejšieho\nnajofenzívnejšiemu\nnajofenzívnejších\nnajofenzívnejším\nnajofenzívnejšími\nnajofenzívnejšiu\nnajofenzívnejšom\nnajofenzívnejšou\nnajoficiálnejšej\nnajoficiálnejší\nnajoficiálnejšia\nnajoficiálnejšie\nnajoficiálnejšieho\nnajoficiálnejšiemu\nnajoficiálnejších\nnajoficiálnejším\nnajoficiálnejšími\nnajoficiálnejšiu\nnajoficiálnejšom\nnajoficiálnejšou\nnajohavnejšej\nnajohavnejší\nnajohavnejšia\nnajohavnejšie\nnajohavnejšieho\nnajohavnejšiemu\nnajohavnejších\nnajohavnejším\nnajohavnejšími\nnajohavnejšiu\nnajohavnejšom\nnajohavnejšou\nnajohľaduplnejšej\nnajohľaduplnejší\nnajohľaduplnejšia\nnajohľaduplnejšie\nnajohľaduplnejšieho\nnajohľaduplnejšiemu\nnajohľaduplnejších\nnajohľaduplnejším\nnajohľaduplnejšími\nnajohľaduplnejšiu\nnajohľaduplnejšom\nnajohľaduplnejšou\nnajohlušujúcejšej\nnajohlušujúcejší\nnajohlušujúcejšia\nnajohlušujúcejšie\nnajohlušujúcejšieho\nnajohlušujúcejšiemu\nnajohlušujúcejších\nnajohlušujúcejším\nnajohlušujúcejšími\nnajohlušujúcejšiu\nnajohlušujúcejšom\nnajohlušujúcejšou\nnajohnanie\nnajohňovzdornejšej\nnajohňovzdornejší\nnajohňovzdornejšia\nnajohňovzdornejšie\nnajohňovzdornejšieho\nnajohňovzdornejšiemu\nnajohňovzdornejších\nnajohňovzdornejším\nnajohňovzdornejšími\nnajohňovzdornejšiu\nnajohňovzdornejšom\nnajohňovzdornejšou\nnajohromnejšej\nnajohromnejší\nnajohromnejšia\nnajohromnejšie\nnajohromnejšieho\nnajohromnejšiemu\nnajohromnejších\nnajohromnejším\nnajohromnejšími\nnajohromnejšiu\nnajohromnejšom\nnajohromnejšou\nnajohromujúcejšej\nnajohromujúcejší\nnajohromujúcejšia\nnajohromujúcejšie\nnajohromujúcejšieho\nnajohromujúcejšiemu\nnajohromujúcejších\nnajohromujúcejším\nnajohromujúcejšími\nnajohromujúcejšiu\nnajohromujúcejšom\nnajohromujúcejšou\nnajohrozenejšej\nnajohrozenejší\nnajohrozenejšia\nnajohrozenejšie\nnajohrozenejšieho\nnajohrozenejšiemu\nnajohrozenejších\nnajohrozenejším\nnajohrozenejšími\nnajohrozenejšiu\nnajohrozenejšom\nnajohrozenejšou\nnajohybnejšej\nnajohybnejší\nnajohybnejšia\nnajohybnejšie\nnajohybnejšieho\nnajohybnejšiemu\nnajohybnejších\nnajohybnejším\nnajohybnejšími\nnajohybnejšiu\nnajohybnejšom\nnajohybnejšou\nnajohyzdnejšej\nnajohyzdnejší\nnajohyzdnejšia\nnajohyzdnejšie\nnajohyzdnejšieho\nnajohyzdnejšiemu\nnajohyzdnejších\nnajohyzdnejším\nnajohyzdnejšími\nnajohyzdnejšiu\nnajohyzdnejšom\nnajohyzdnejšou\nnajochabnutejšej\nnajochabnutejší\nnajochabnutejšia\nnajochabnutejšie\nnajochabnutejšieho\nnajochabnutejšiemu\nnajochabnutejších\nnajochabnutejším\nnajochabnutejšími\nnajochabnutejšiu\nnajochabnutejšom\nnajochabnutejšou\nnajochlpenejšej\nnajochlpenejší\nnajochlpenejšia\nnajochlpenejšie\nnajochlpenejšieho\nnajochlpenejšiemu\nnajochlpenejších\nnajochlpenejším\nnajochlpenejšími\nnajochlpenejšiu\nnajochlpenejšom\nnajochlpenejšou\nnajochotnejšej\nnajochotnejší\nnajochotnejšia\nnajochotnejšie\nnajochotnejšieho\nnajochotnejšiemu\nnajochotnejších\nnajochotnejším\nnajochotnejšími\nNajochotnejšími\nnajochotnejšiu\nnajochotnejšom\nnajochotnejšou\nnajojedinelejšej\nnajojedinelejší\nnajojedinelejšia\nnajojedinelejšie\nnajojedinelejšieho\nnajojedinelejšiemu\nnajojedinelejších\nnajojedinelejším\nnajojedinelejšími\nnajojedinelejšiu\nnajojedinelejšom\nnajojedinelejšou\nnajokatejšej\nnajokatejší\nnajokatejšia\nnajokatejšie\nnajokatejšieho\nnajokatejšiemu\nnajokatejších\nnajokatejším\nnajokatejšími\nnajokatejšiu\nnajokatejšom\nnajokatejšou\nnajokrajovejší\nnajokrajovejšie\nnajokrasnejšej\nnajokrasnejší\nnajokrasnejšia\nnajokrasnejšie\nnajokrasnejšieho\nnajokrasnejšiemu\nnajokrasnejších\nnajokrasnejším\nnajokrasnejšími\nnajokrasnejšiu\nnajokrasnejšom\nnajokrasnejšou\nnajokrídlenejšej\nnajokrídlenejší\nnajokrídlenejšia\nnajokrídlenejšie\nnajokrídlenejšieho\nnajokrídlenejšiemu\nnajokrídlenejších\nnajokrídlenejším\nnajokrídlenejšími\nnajokrídlenejšiu\nnajokrídlenejšom\nnajokrídlenejšou\nnajokrúhlastejšej\nnajokrúhlastejší\nnajokrúhlastejšia\nnajokrúhlastejšie\nnajokrúhlastejšieho\nnajokrúhlastejšiemu\nnajokrúhlastejších\nnajokrúhlastejším\nnajokrúhlastejšími\nnajokrúhlastejšiu\nnajokrúhlastejšom\nnajokrúhlastejšou\nnajokrúhlejšej\nnajokrúhlejší\nnajokrúhlejšia\nnajokrúhlejšie\nnajokrúhlejšieho\nnajokrúhlejšiemu\nnajokrúhlejších\nnajokrúhlejším\nnajokrúhlejšími\nnajokrúhlejšiu\nnajokrúhlejšom\nnajokrúhlejšou\nnajokuliarnatejšej\nnajokuliarnatejší\nnajokuliarnatejšia\nnajokuliarnatejšie\nnajokuliarnatejšieho\nnajokuliarnatejšiemu\nnajokuliarnatejších\nnajokuliarnatejším\nnajokuliarnatejšími\nnajokuliarnatejšiu\nnajokuliarnatejšom\nnajokuliarnatejšou\nnajokúňavejšej\nnajokúňavejší\nnajokúňavejšia\nnajokúňavejšie\nnajokúňavejšieho\nnajokúňavejšiemu\nnajokúňavejších\nnajokúňavejším\nnajokúňavejšími\nnajokúňavejšiu\nnajokúňavejšom\nnajokúňavejšou\nnajolejnatejšej\nnajolejnatejší\nnajolejnatejšia\nnajolejnatejšie\nnajolejnatejšieho\nnajolejnatejšiemu\nnajolejnatejších\nnajolejnatejším\nnajolejnatejšími\nnajolejnatejšiu\nnajolejnatejšom\nnajolejnatejšou\nnajolejovitejšej\nnajolejovitejší\nnajolejovitejšia\nnajolejovitejšie\nnajolejovitejšieho\nnajolejovitejšiemu\nnajolejovitejších\nnajolejovitejším\nnajolejovitejšími\nnajolejovitejšiu\nnajolejovitejšom\nnajolejovitejšou\nnajolistenejšej\nnajolistenejší\nnajolistenejšia\nnajolistenejšie\nnajolistenejšieho\nnajolistenejšiemu\nnajolistenejších\nnajolistenejším\nnajolistenejšími\nnajolistenejšiu\nnajolistenejšom\nnajolistenejšou\nnajolovnatejšej\nnajolovnatejší\nnajolovnatejšia\nnajolovnatejšie\nnajolovnatejšieho\nnajolovnatejšiemu\nnajolovnatejších\nnajolovnatejším\nnajolovnatejšími\nnajolovnatejšiu\nnajolovnatejšom\nnajolovnatejšou\nnajomamnejšej\nnajomamnejší\nnajomamnejšia\nnajomamnejšie\nnajomamnejšieho\nnajomamnejšiemu\nnajomamnejších\nnajomamnejším\nnajomamnejšími\nnajomamnejšiu\nnajomamnejšom\nnajomamnejšou\nnajomamujúcejšej\nnajomamujúcejší\nnajomamujúcejšia\nnajomamujúcejšie\nnajomamujúcejšieho\nnajomamujúcejšiemu\nnajomamujúcejších\nnajomamujúcejším\nnajomamujúcejšími\nnajomamujúcejšiu\nnajomamujúcejšom\nnajomamujúcejšou\nnájom\nnájomca\nnájomci\nnájomcova\nnájomne\nnájomné\nnájomnica\nnájomnícky\nnájomníctvo\nnájomníčka\nnájomník\nnájomníkove\nnájomno\nnájomný\nnajomylnejšej\nnajomylnejší\nnajomylnejšia\nnajomylnejšie\nnajomylnejšieho\nnajomylnejšiemu\nnajomylnejších\nnajomylnejším\nnajomylnejšími\nnajomylnejšiu\nnajomylnejšom\nnajomylnejšou\nnajonakvejšej\nnajonakvejší\nnajonakvejšia\nnajonakvejšie\nnajonakvejšieho\nnajonakvejšiemu\nnajonakvejších\nnajonakvejším\nnajonakvejšími\nnajonakvejšiu\nnajonakvejšom\nnajonakvejšou\nnajoneskorenejšej\nnajoneskorenejší\nnajoneskorenejšia\nnajoneskorenejšie\nnajoneskorenejšieho\nnajoneskorenejšiemu\nnajoneskorenejších\nnajoneskorenejším\nnajoneskorenejšími\nnajoneskorenejšiu\nnajoneskorenejšom\nnajoneskorenejšou\nnajopadavejšej\nnajopadavejší\nnajopadavejšia\nnajopadavejšie\nnajopadavejšieho\nnajopadavejšiemu\nnajopadavejších\nnajopadavejším\nnajopadavejšími\nnajopadavejšiu\nnajopadavejšom\nnajopadavejšou\nnajopatrnejšej\nnajopatrnejší\nnajopatrnejšia\nNajopatrnejšia\nnajopatrnejšieho\nnajopatrnejšiemu\nnajopatrnejších\nnajopatrnejším\nnajopatrnejšími\nnajopatrnejšiu\nNajopatrnejšiu\nnajopatrnejšom\nnajopatrnejšou\nnajopatrníckejšej\nnajopatrníckejší\nnajopatrníckejšia\nnajopatrníckejšie\nnajopatrníckejšieho\nnajopatrníckejšiemu\nnajopatrníckejších\nnajopatrníckejším\nnajopatrníckejšími\nnajopatrníckejšiu\nnajopatrníckejšom\nnajopatrníckejšou\nnajoperatívnejšej\nnajoperatívnejší\nnajoperatívnejšia\nnajoperatívnejšie\nnajoperatívnejšieho\nnajoperatívnejšiemu\nnajoperatívnejších\nnajoperatívnejším\nnajoperatívnejšími\nnajoperatívnejšiu\nnajoperatívnejšom\nnajoperatívnejšou\nnajoperetnejšej\nnajoperetnejší\nnajoperetnejšia\nnajoperetnejšie\nnajoperetnejšieho\nnajoperetnejšiemu\nnajoperetnejších\nnajoperetnejším\nnajoperetnejšími\nnajoperetnejšiu\nnajoperetnejšom\nnajoperetnejšou\nnajopernejšej\nnajopernejší\nnajopernejšia\nnajopernejšie\nnajopernejšieho\nnajopernejšiemu\nnajopernejších\nnajopernejším\nnajopernejšími\nnajopernejšiu\nnajopernejšom\nnajopernejšou\nnajopisnejšej\nnajopisnejší\nnajopisnejšia\nnajopisnejšie\nnajopisnejšieho\nnajopisnejšiemu\nnajopisnejších\nnajopisnejším\nnajopisnejšími\nnajopisnejšiu\nnajopisnejšom\nnajopisnejšou\nnajopitejšej\nnajopitejší\nnajopitejšia\nnajopitejšie\nnajopitejšieho\nnajopitejšiemu\nnajopitejších\nnajopitejším\nnajopitejšími\nnajopitejšiu\nnajopitejšom\nnajopitejšou\nnajoplzlejšej\nnajoplzlejší\nnajoplzlejšia\nnajoplzlejšie\nnajoplzlejšieho\nnajoplzlejšiemu\nnajoplzlejších\nnajoplzlejším\nnajoplzlejšími\nnajoplzlejšiu\nnajoplzlejšom\nnajoplzlejšou\nnajopodstatnenejšej\nnajopodstatnenejší\nnajopodstatnenejšia\nnajopodstatnenejšie\nnajopodstatnenejšieho\nnajopodstatnenejšiemu\nnajopodstatnenejších\nnajopodstatnenejším\nnajopodstatnenejšími\nnajopodstatnenejšiu\nnajopodstatnenejšom\nnajopodstatnenejšou\nnajopojnejšej\nnajopojnejší\nnajopojnejšia\nnajopojnejšie\nnajopojnejšieho\nnajopojnejšiemu\nnajopojnejších\nnajopojnejším\nnajopojnejšími\nnajopojnejšiu\nnajopojnejšom\nnajopojnejšou\nnajoportunistickejšej\nnajoportunistickejší\nnajoportunistickejšia\nnajoportunistickejšie\nnajoportunistickejšieho\nnajoportunistickejšiemu\nnajoportunistickejších\nnajoportunistickejším\nnajoportunistickejšími\nnajoportunistickejšiu\nnajoportunistickejšom\nnajoportunistickejšou\nnajopovážlivejšej\nnajopovážlivejší\nnajopovážlivejšia\nnajopovážlivejšie\nnajopovážlivejšieho\nnajopovážlivejšiemu\nnajopovážlivejších\nnajopovážlivejším\nnajopovážlivejšími\nnajopovážlivejšiu\nnajopovážlivejšom\nnajopovážlivejšou\nnajopovrhovanejší\nnajopovržlivejšej\nnajopovržlivejší\nnajopovržlivejšia\nnajopovržlivejšie\nnajopovržlivejšieho\nnajopovržlivejšiemu\nnajopovržlivejších\nnajopovržlivejším\nnajopovržlivejšími\nnajopovržlivejšiu\nnajopovržlivejšom\nnajopovržlivejšou\nnajopravdivejšej\nnajopravdivejší\nnajopravdivejšia\nnajopravdivejšie\nnajopravdivejšieho\nnajopravdivejšiemu\nnajopravdivejších\nnajopravdivejším\nnajopravdivejšími\nnajopravdivejšiu\nnajopravdivejšom\nnajopravdivejšou\nnajoprávnenejšie\nnajoptimálnej\nnajoptimálnejšej\nnajoptimálnejší\nnajoptimálnejšia\nnajoptimálnejšie\nnajoptimálnejšieho\nnajoptimálnejšiemu\nnajoptimálnejších\nnajoptimálnejším\nnajoptimálnejšími\nnajoptimálnejšiu\nnajoptimálnejšom\nnajoptimálnejšou\nnajoptimistickejšej\nnajoptimistickejší\nnajoptimistickejšia\nnajoptimistickejšie\nnajoptimistickejšieho\nnajoptimistickejšiemu\nnajoptimistickejších\nnajoptimistickejším\nnajoptimistickejšími\nnajoptimistickejšiu\nnajoptimistickejšom\nnajoptimistickejšou\nnajoranžovejšej\nnajoranžovejší\nnajoranžovejšia\nnajoranžovejšie\nnajoranžovejšieho\nnajoranžovejšiemu\nnajoranžovejších\nnajoranžovejším\nnajoranžovejšími\nnajoranžovejšiu\nnajoranžovejšom\nnajoranžovejšou\nnajordinárnejšie\nnajorganickejšej\nnajorganickejší\nnajorganickejšia\nnajorganickejšie\nnajorganickejšieho\nnajorganickejšiemu\nnajorganickejších\nnajorganickejším\nnajorganickejšími\nnajorganickejšiu\nnajorganickejšom\nnajorganickejšou\nnajorganizovanejšej\nnajorganizovanejší\nnajorganizovanejšia\nnajorganizovanejšie\nnajorganizovanejšieho\nnajorganizovanejšiemu\nnajorganizovanejších\nnajorganizovanejším\nnajorganizovanejšími\nnajorganizovanejšiu\nnajorganizovanejšom\nnajorganizovanejšou\nnajorientálnejšej\nnajorientálnejší\nnajorientálnejšia\nnajorientálnejšie\nnajorientálnejšieho\nnajorientálnejšiemu\nnajorientálnejších\nnajorientálnejším\nnajorientálnejšími\nnajorientálnejšiu\nnajorientálnejšom\nnajorientálnejšou\nnajoriginálnejšej\nnajoriginálnejší\nnajoriginálnejšia\nnajoriginálnejšie\nNajoriginálnejšie\nnajoriginálnejšieho\nnajoriginálnejšiemu\nnajoriginálnejších\nnajoriginálnejším\nnajoriginálnejšími\nnajoriginálnejšiu\nnajoriginálnejšom\nnajoriginálnejšou\nnajornamentálnejšej\nnajornamentálnejší\nnajornamentálnejšia\nnajornamentálnejšie\nnajornamentálnejšieho\nnajornamentálnejšiemu\nnajornamentálnejších\nnajornamentálnejším\nnajornamentálnejšími\nnajornamentálnejšiu\nnajornamentálnejšom\nnajornamentálnejšou\nnajortodoxnejšej\nnajortodoxnejší\nnajortodoxnejšia\nnajortodoxnejšie\nnajortodoxnejšieho\nnajortodoxnejšiemu\nnajortodoxnejších\nnajortodoxnejším\nnajortodoxnejšími\nnajortodoxnejšiu\nnajortodoxnejšom\nnajortodoxnejšou\nnajortutnatejšej\nnajortutnatejší\nnajortutnatejšia\nnajortutnatejšie\nnajortutnatejšieho\nnajortutnatejšiemu\nnajortutnatejších\nnajortutnatejším\nnajortutnatejšími\nnajortutnatejšiu\nnajortutnatejšom\nnajortutnatejšou\nnajosamelejšej\nnajosamelejší\nnajosamelejšia\nnajosamelejšie\nnajosamelejšieho\nnajosamelejšiemu\nnajosamelejších\nnajosamelejším\nnajosamelejšími\nnajosamelejšiu\nnajosamelejšom\nnajosamelejšou\nnajosamotenejšej\nnajosamotenejší\nnajosamotenejšia\nnajosamotenejšie\nnajosamotenejšieho\nnajosamotenejšiemu\nnajosamotenejších\nnajosamotenejším\nnajosamotenejšími\nnajosamotenejšiu\nnajosamotenejšom\nnajosamotenejšou\nnajosihotenejšej\nnajosihotenejší\nnajosihotenejšia\nnajosihotenejšie\nnajosihotenejšieho\nnajosihotenejšiemu\nnajosihotenejších\nnajosihotenejším\nnajosihotenejšími\nnajosihotenejšiu\nnajosihotenejšom\nnajosihotenejšou\nnajosirelejšej\nnajosirelejší\nnajosirelejšia\nnajosirelejšie\nnajosirelejšieho\nnajosirelejšiemu\nnajosirelejších\nnajosirelejším\nnajosirelejšími\nnajosirelejšiu\nnajosirelejšom\nnajosirelejšou\nnajosirenejšej\nnajosirenejší\nnajosirenejšia\nnajosirenejšie\nnajosirenejšieho\nnajosirenejšiemu\nnajosirenejších\nnajosirenejším\nnajosirenejšími\nnajosirenejšiu\nnajosirenejšom\nnajosirenejšou\nnajoslavnejšej\nnajoslavnejší\nnajoslavnejšia\nnajoslavnejšie\nnajoslavnejšieho\nnajoslavnejšiemu\nnajoslavnejších\nnajoslavnejším\nnajoslavnejšími\nnajoslavnejšiu\nnajoslavnejšom\nnajoslavnejšou\nnajoslepujúcejšej\nnajoslepujúcejší\nnajoslepujúcejšia\nnajoslepujúcejšie\nnajoslepujúcejšieho\nnajoslepujúcejšiemu\nnajoslepujúcejších\nnajoslepujúcejším\nnajoslepujúcejšími\nnajoslepujúcejšiu\nnajoslepujúcejšom\nnajoslepujúcejšou\nnajoslnivejšej\nnajoslnivejší\nnajoslnivejšia\nnajoslnivejšie\nnajoslnivejšieho\nnajoslnivejšiemu\nnajoslnivejších\nnajoslnivejším\nnajoslnivejšími\nnajoslnivejšiu\nnajoslnivejšom\nnajoslnivejšou\nnajoslňujúcejšej\nnajoslňujúcejší\nnajoslňujúcejšia\nnajoslňujúcejšie\nnajoslňujúcejšieho\nnajoslňujúcejšiemu\nnajoslňujúcejších\nnajoslňujúcejším\nnajoslňujúcejšími\nnajoslňujúcejšiu\nnajoslňujúcejšom\nnajoslňujúcejšou\nnajoslobodzujúcejšej\nnajoslobodzujúcejší\nnajoslobodzujúcejšia\nnajoslobodzujúcejšie\nnajoslobodzujúcejšieho\nnajoslobodzujúcejšiemu\nnajoslobodzujúcejších\nnajoslobodzujúcejším\nnajoslobodzujúcejšími\nnajoslobodzujúcejšiu\nnajoslobodzujúcejšom\nnajoslobodzujúcejšou\nnajosobitejšej\nnajosobitejší\nnajosobitejšia\nnajosobitejšie\nnajosobitejšieho\nnajosobitejšiemu\nnajosobitejších\nnajosobitejším\nnajosobitejšími\nnajosobitejšiu\nnajosobitejšom\nnajosobitejšou\nnajosobitnejšej\nnajosobitnejší\nnajosobitnejšia\nnajosobitnejšie\nnajosobitnejšieho\nnajosobitnejšiemu\nnajosobitnejších\nnajosobitnejším\nnajosobitnejšími\nnajosobitnejšiu\nnajosobitnejšom\nnajosobitnejšou\nnajosobnejšej\nnajosobnejší\nnajosobnejšia\nnajosobnejšie\nnajosobnejšieho\nnajosobnejšiemu\nnajosobnejších\nnajosobnejším\nnajosobnejšími\nnajosobnejšiu\nnajosobnejšom\nnajosobnejšou\nnajosožnejšej\nnajosožnejší\nnajosožnejšia\nnajosožnejšie\nnajosožnejšieho\nnajosožnejšiemu\nnajosožnejších\nnajosožnejším\nnajosožnejšími\nnajosožnejšiu\nnajosožnejšom\nnajosožnejšou\nnajospalejšej\nnajospalejší\nnajospalejšia\nnajospalejšie\nnajospalejšieho\nnajospalejšiemu\nnajospalejších\nnajospalejším\nnajospalejšími\nnajospalejšiu\nnajospalejšom\nnajospalejšou\nnajospanlivejšej\nnajospanlivejší\nnajospanlivejšia\nnajospanlivejšie\nnajospanlivejšieho\nnajospanlivejšiemu\nnajospanlivejších\nnajospanlivejším\nnajospanlivejšími\nnajospanlivejšiu\nnajospanlivejšom\nnajospanlivejšou\nnajospravedlniteľnejšej\nnajospravedlniteľnejší\nnajospravedlniteľnejšia\nnajospravedlniteľnejšie\nnajospravedlniteľnejšieho\nnajospravedlniteľnejšiemu\nnajospravedlniteľnejších\nnajospravedlniteľnejším\nnajospravedlniteľnejšími\nnajospravedlniteľnejšiu\nnajospravedlniteľnejšom\nnajospravedlniteľnejšou\nnajosrienenejšej\nnajosrienenejší\nnajosrienenejšia\nnajosrienenejšie\nnajosrienenejšieho\nnajosrienenejšiemu\nnajosrienenejších\nnajosrienenejším\nnajosrienenejšími\nnajosrienenejšiu\nnajosrienenejšom\nnajosrienenejšou\nnajostenejšej\nnajostenejší\nnajostenejšia\nnajostenejšie\nnajostenejšieho\nnajostenejšiemu\nnajostenejších\nnajostenejším\nnajostenejšími\nnajostenejšiu\nnajostenejšom\nnajostenejšou\nnajostentatívnejšej\nnajostentatívnejší\nnajostentatívnejšia\nnajostentatívnejšie\nnajostentatívnejšieho\nnajostentatívnejšiemu\nnajostentatívnejších\nnajostentatívnejším\nnajostentatívnejšími\nnajostentatívnejšiu\nnajostentatívnejšom\nnajostentatívnejšou\nnajostnatejšej\nnajostnatejší\nnajostnatejšia\nnajostnatejšie\nnajostnatejšieho\nnajostnatejšiemu\nnajostnatejších\nnajostnatejším\nnajostnatejšími\nnajostnatejšiu\nnajostnatejšom\nnajostnatejšou\nnajostražitejšej\nnajostražitejší\nnajostražitejšia\nnajostražitejšie\nnajostražitejšieho\nnajostražitejšiemu\nnajostražitejších\nnajostražitejším\nnajostražitejšími\nnajostražitejšiu\nnajostražitejšom\nnajostražitejšou\nnajostrejšej\nnajostrejší\nnajostrejšia\nnajostrejšie\nnajostrejšieho\nnajostrejšiemu\nnajostrejších\nnajostrejším\nnajostrejšími\nnajostrejšiu\nnajostrejšom\nnajostrejšou\nnajostrouhlejšej\nnajostrouhlejší\nnajostrouhlejšia\nnajostrouhlejšie\nnajostrouhlejšieho\nnajostrouhlejšiemu\nnajostrouhlejších\nnajostrouhlejším\nnajostrouhlejšími\nnajostrouhlejšiu\nnajostrouhlejšom\nnajostrouhlejšou\nnajostroumnejšej\nnajostroumnejší\nnajostroumnejšia\nnajostroumnejšie\nnajostroumnejšieho\nnajostroumnejšiemu\nnajostroumnejších\nnajostroumnejším\nnajostroumnejšími\nnajostroumnejšiu\nnajostroumnejšom\nnajostroumnejšou\nnajostrovtipnejšej\nnajostrovtipnejší\nnajostrovtipnejšia\nnajostrovtipnejšie\nnajostrovtipnejšieho\nnajostrovtipnejšiemu\nnajostrovtipnejších\nnajostrovtipnejším\nnajostrovtipnejšími\nnajostrovtipnejšiu\nnajostrovtipnejšom\nnajostrovtipnejšou\nnajostýchavejšej\nnajostýchavejší\nnajostýchavejšia\nnajostýchavejšie\nnajostýchavejšieho\nnajostýchavejšiemu\nnajostýchavejších\nnajostýchavejším\nnajostýchavejšími\nnajostýchavejšiu\nnajostýchavejšom\nnajostýchavejšou\nnajosudnejšej\nnajosudnejší\nnajosudnejšia\nnajosudnejšie\nnajosudnejšieho\nnajosudnejšiemu\nnajosudnejších\nnajosudnejším\nnajosudnejšími\nnajosudnejšiu\nnajosudnejšom\nnajosudnejšou\nnajosvedčenejšej\nnajosvedčenejší\nnajosvedčenejšia\nnajosvedčenejšie\nnajosvedčenejšieho\nnajosvedčenejšiemu\nnajosvedčenejších\nnajosvedčenejším\nnajosvedčenejšími\nnajosvedčenejšiu\nnajosvedčenejšom\nnajosvedčenejšou\nnajosvietenejšej\nnajosvietenejší\nnajosvietenejšia\nnajosvietenejšie\nnajosvietenejšieho\nnajosvietenejšiemu\nnajosvietenejších\nnajosvietenejším\nnajosvietenejšími\nnajosvietenejšiu\nnajosvietenejšom\nnajosvietenejšou\nnajosvietenskejšej\nnajosvietenskejší\nnajosvietenskejšia\nnajosvietenskejšie\nnajosvietenskejšieho\nnajosvietenskejšiemu\nnajosvietenskejších\nnajosvietenskejším\nnajosvietenskejšími\nnajosvietenskejšiu\nnajosvietenskejšom\nnajosvietenskejšou\nnajosviežujúcejšej\nnajosviežujúcejší\nnajosviežujúcejšia\nnajosviežujúcejšie\nnajosviežujúcejšieho\nnajosviežujúcejšiemu\nnajosviežujúcejších\nnajosviežujúcejším\nnajosviežujúcejšími\nnajosviežujúcejšiu\nnajosviežujúcejšom\nnajosviežujúcejšou\nnajošarpanejšej\nnajošarpanejší\nnajošarpanejšia\nnajošarpanejšie\nnajošarpanejšieho\nnajošarpanejšiemu\nnajošarpanejších\nnajošarpanejším\nnajošarpanejšími\nnajošarpanejšiu\nnajošarpanejšom\nnajošarpanejšou\nnajošemetnejšej\nnajošemetnejší\nnajošemetnejšia\nnajošemetnejšie\nnajošemetnejšieho\nnajošemetnejšiemu\nnajošemetnejších\nnajošemetnejším\nnajošemetnejšími\nnajošemetnejšiu\nnajošemetnejšom\nnajošemetnejšou\nnajošklbanejšej\nnajošklbanejší\nnajošklbanejšia\nnajošklbanejšie\nnajošklbanejšieho\nnajošklbanejšiemu\nnajošklbanejších\nnajošklbanejším\nnajošklbanejšími\nnajošklbanejšiu\nnajošklbanejšom\nnajošklbanejšou\nnajošklivejšej\nnajošklivejší\nnajošklivejšia\nnajošklivejšie\nnajošklivejšieho\nnajošklivejšiemu\nnajošklivejších\nnajošklivejším\nnajošklivejšími\nnajošklivejšiu\nnajošklivejšom\nnajošklivejšou\nnajošúchanejšej\nnajošúchanejší\nnajošúchanejšia\nnajošúchanejšie\nnajošúchanejšieho\nnajošúchanejšiemu\nnajošúchanejších\nnajošúchanejším\nnajošúchanejšími\nnajošúchanejšiu\nnajošúchanejšom\nnajošúchanejšou\nnajošumelejšej\nnajošumelejší\nnajošumelejšia\nnajošumelejšie\nnajošumelejšieho\nnajošumelejšiemu\nnajošumelejších\nnajošumelejším\nnajošumelejšími\nnajošumelejšiu\nnajošumelejšom\nnajošumelejšou\nnajotáčavejšej\nnajotáčavejší\nnajotáčavejšia\nnajotáčavejšie\nnajotáčavejšieho\nnajotáčavejšiemu\nnajotáčavejších\nnajotáčavejším\nnajotáčavejšími\nnajotáčavejšiu\nnajotáčavejšom\nnajotáčavejšou\nnajotáznejšej\nnajotáznejší\nnajotáznejšia\nnajotáznejšie\nnajotáznejšieho\nnajotáznejšiemu\nnajotáznejších\nnajotáznejším\nnajotáznejšími\nnajotáznejšiu\nnajotáznejšom\nnajotáznejšou\nnajotcovskejšej\nnajotcovskejší\nnajotcovskejšia\nnajotcovskejšie\nnajotcovskejšieho\nnajotcovskejšiemu\nnajotcovskejších\nnajotcovskejším\nnajotcovskejšími\nnajotcovskejšiu\nnajotcovskejšom\nnajotcovskejšou\nnajotrasnejšej\nnajotrasnejší\nnajotrasnejšia\nnajotrasnejšie\nnajotrasnejšieho\nnajotrasnejšiemu\nnajotrasnejších\nnajotrasnejším\nnajotrasnejšími\nnajotrasnejšiu\nnajotrasnejšom\nnajotrasnejšou\nnajotrávenejšej\nnajotrávenejší\nnajotrávenejšia\nnajotrávenejšie\nnajotrávenejšieho\nnajotrávenejšiemu\nnajotrávenejších\nnajotrávenejším\nnajotrávenejšími\nnajotrávenejšiu\nnajotrávenejšom\nnajotrávenejšou\nnajotravnejšej\nnajotravnejší\nnajotravnejšia\nnajotravnejšie\nnajotravnejšieho\nnajotravnejšiemu\nnajotravnejších\nnajotravnejším\nnajotravnejšími\nnajotravnejšiu\nnajotravnejšom\nnajotravnejšou\nnajotrepanejšej\nnajotrepanejší\nnajotrepanejšia\nnajotrepanejšie\nnajotrepanejšieho\nnajotrepanejšiemu\nnajotrepanejších\nnajotrepanejším\nnajotrepanejšími\nnajotrepanejšiu\nnajotrepanejšom\nnajotrepanejšou\nnajotrhanejšej\nnajotrhanejší\nnajotrhanejšia\nnajotrhanejšie\nnajotrhanejšieho\nnajotrhanejšiemu\nnajotrhanejších\nnajotrhanejším\nnajotrhanejšími\nnajotrhanejšiu\nnajotrhanejšom\nnajotrhanejšou\nnajotrlejším\nnajotrockejšej\nnajotrockejší\nnajotrockejšia\nnajotrockejšie\nnajotrockejšieho\nnajotrockejšiemu\nnajotrockejších\nnajotrockejším\nnajotrockejšími\nnajotrockejšiu\nnajotrockejšom\nnajotrockejšou\nnajotupenejšej\nnajotupenejší\nnajotupenejšia\nnajotupenejšie\nnajotupenejšieho\nnajotupenejšiemu\nnajotupenejších\nnajotupenejším\nnajotupenejšími\nnajotupenejšiu\nnajotupenejšom\nnajotupenejšou\nnajotupnejšej\nnajotupnejší\nnajotupnejšia\nnajotupnejšie\nnajotupnejšieho\nnajotupnejšiemu\nnajotupnejších\nnajotupnejším\nnajotupnejšími\nnajotupnejšiu\nnajotupnejšom\nnajotupnejšou\nnajotužilejšej\nnajotužilejší\nnajotužilejšia\nnajotužilejšie\nnajotužilejšieho\nnajotužilejšiemu\nnajotužilejších\nnajotužilejším\nnajotužilejšími\nnajotužilejšiu\nnajotužilejšom\nnajotužilejšou\nnajotvorenejšej\nnajotvorenejší\nnajotvorenejšia\nnajotvorenejšieho\nnajotvorenejšiemu\nnajotvorenejších\nnajotvorenejším\nnajotvorenejšími\nnajotvorenejšiu\nnajotvorenejšom\nnajotvorenejšou\nnajoválnejšej\nnajoválnejší\nnajoválnejšia\nnajoválnejšie\nnajoválnejšieho\nnajoválnejšiemu\nnajoválnejších\nnajoválnejším\nnajoválnejšími\nnajoválnejšiu\nnajoválnejšom\nnajoválnejšou\nnajovíjavejšej\nnajovíjavejší\nnajovíjavejšia\nnajovíjavejšie\nnajovíjavejšieho\nnajovíjavejšiemu\nnajovíjavejších\nnajovíjavejším\nnajovíjavejšími\nnajovíjavejšiu\nnajovíjavejšom\nnajovíjavejšou\nnajovládateľnejšej\nnajovládateľnejší\nnajovládateľnejšia\nnajovládateľnejšie\nnajovládateľnejšieho\nnajovládateľnejšiemu\nnajovládateľnejších\nnajovládateľnejším\nnajovládateľnejšími\nnajovládateľnejšiu\nnajovládateľnejšom\nnajovládateľnejšou\nnajozajstnejšej\nnajozajstnejší\nnajozajstnejšia\nnajozajstnejšie\nnajozajstnejšieho\nnajozajstnejšiemu\nnajozajstnejších\nnajozajstnejším\nnajozajstnejšími\nnajozajstnejšiu\nnajozajstnejšom\nnajozajstnejšou\nnajozbrojenejšej\nnajozbrojenejší\nnajozbrojenejšia\nnajozbrojenejšie\nnajozbrojenejšieho\nnajozbrojenejšiemu\nnajozbrojenejších\nnajozbrojenejším\nnajozbrojenejšími\nnajozbrojenejšiu\nnajozbrojenejšom\nnajozbrojenejšou\nnajozdobnejšej\nnajozdobnejší\nnajozdobnejšia\nnajozdobnejšie\nnajozdobnejšieho\nnajozdobnejšiemu\nnajozdobnejších\nnajozdobnejším\nnajozdobnejšími\nnajozdobnejšiu\nnajozdobnejšom\nnajozdobnejšou\nnajoznanie\nnajozrutnejšej\nnajozrutnejší\nnajozrutnejšia\nnajozrutnejšie\nnajozrutnejšieho\nnajozrutnejšiemu\nnajozrutnejších\nnajozrutnejším\nnajozrutnejšími\nnajozrutnejšiu\nnajozrutnejšom\nnajozrutnejšou\nnajozubenejšej\nnajozubenejší\nnajozubenejšia\nnajozubenejšie\nnajozubenejšieho\nnajozubenejšiemu\nnajozubenejších\nnajozubenejším\nnajozubenejšími\nnajozubenejšiu\nnajozubenejšom\nnajozubenejšou\nnajpáčivejšej\nnajpáčivejší\nnajpáčivejšia\nnajpáčivejšie\nnajpáčivejšieho\nnajpáčivejšiemu\nnajpáčivejších\nnajpáčivejším\nnajpáčivejšími\nnajpáčivejšiu\nnajpáčivejšom\nnajpáčivejšou\nnajpádnejšej\nnajpádnejší\nnajpádnejšia\nnajpádnejšie\nnajpádnejšieho\nnajpádnejšiemu\nnajpádnejších\nnajpádnejším\nnajpádnejšími\nnajpádnejšiu\nnajpádnejšom\nnajpádnejšou\nnajpahltnejšej\nnajpahltnejší\nnajpahltnejšia\nnajpahltnejšie\nnajpahltnejšieho\nnajpahltnejšiemu\nnajpahltnejších\nnajpahltnejším\nnajpahltnejšími\nnajpahltnejšiu\nnajpahltnejšom\nnajpahltnejšou\nnajpahorkatejšej\nnajpahorkatejší\nnajpahorkatejšia\nnajpahorkatejšie\nnajpahorkatejšieho\nnajpahorkatejšiemu\nnajpahorkatejších\nnajpahorkatejším\nnajpahorkatejšími\nnajpahorkatejšiu\nnajpahorkatejšom\nnajpahorkatejšou\nnajpahorkovitejšej\nnajpahorkovitejší\nnajpahorkovitejšia\nnajpahorkovitejšie\nnajpahorkovitejšieho\nnajpahorkovitejšiemu\nnajpahorkovitejších\nnajpahorkovitejším\nnajpahorkovitejšími\nnajpahorkovitejšiu\nnajpahorkovitejšom\nnajpahorkovitejšou\nnajpálčivejšej\nnajpálčivejší\nnajpálčivejšia\nnajpálčivejšie\nnajpálčivejšieho\nnajpálčivejšiemu\nnajpálčivejších\nnajpálčivejším\nNajpálčivejším\nnajpálčivejšími\nnajpálčivejšiu\nnajpálčivejšom\nnajpálčivejšou\nnajpaličkovitejšej\nnajpaličkovitejší\nnajpaličkovitejšia\nnajpaličkovitejšie\nnajpaličkovitejšieho\nnajpaličkovitejšiemu\nnajpaličkovitejších\nnajpaličkovitejším\nnajpaličkovitejšími\nnajpaličkovitejšiu\nnajpaličkovitejšom\nnajpaličkovitejšou\nnajpamätihodnejšej\nnajpamätihodnejší\nnajpamätihodnejšia\nnajpamätihodnejšie\nnajpamätihodnejšieho\nnajpamätihodnejšiemu\nnajpamätihodnejších\nnajpamätihodnejším\nnajpamätihodnejšími\nnajpamätihodnejšiu\nnajpamätihodnejšom\nnajpamätihodnejšou\nnajpamätlivejšej\nnajpamätlivejší\nnajpamätlivejšia\nnajpamätlivejšie\nnajpamätlivejšieho\nnajpamätlivejšiemu\nnajpamätlivejších\nnajpamätlivejším\nnajpamätlivejšími\nnajpamätlivejšiu\nnajpamätlivejšom\nnajpamätlivejšou\nnajpanenskejšej\nnajpanenskejší\nnajpanenskejšia\nnajpanenskejšie\nnajpanenskejšieho\nnajpanenskejšiemu\nnajpanenskejších\nnajpanenskejším\nnajpanenskejšími\nnajpanenskejšiu\nnajpanenskejšom\nnajpanenskejšou\nnajpanickejšej\nnajpanickejší\nnajpanickejšia\nnajpanickejšie\nnajpanickejšieho\nnajpanickejšiemu\nnajpanickejších\nnajpanickejším\nnajpanickejšími\nnajpanickejšiu\nnajpanickejšom\nnajpanickejšou\nnajpanovačnejšej\nnajpanovačnejší\nnajpanovačnejšia\nnajpanovačnejšie\nnajpanovačnejšieho\nnajpanovačnejšiemu\nnajpanovačnejších\nnajpanovačnejším\nnajpanovačnejšími\nnajpanovačnejšiu\nnajpanovačnejšom\nnajpanovačnejšou\nnajpánovitejšej\nnajpánovitejší\nnajpánovitejšia\nnajpánovitejšie\nnajpánovitejšieho\nnajpánovitejšiemu\nnajpánovitejších\nnajpánovitejším\nnajpánovitejšími\nnajpánovitejšiu\nnajpánovitejšom\nnajpánovitejšou\nnajpanskejšej\nnajpánskejšej\nnajpanskejší\nnajpánskejší\nnajpanskejšia\nnajpánskejšia\nnajpanskejšie\nnajpánskejšie\nnajpanskejšieho\nnajpánskejšieho\nnajpanskejšiemu\nnajpánskejšiemu\nnajpanskejších\nnajpánskejších\nnajpanskejším\nnajpánskejším\nnajpanskejšími\nnajpánskejšími\nnajpanskejšiu\nnajpánskejšiu\nnajpanskejšom\nnajpánskejšom\nnajpanskejšou\nnajpánskejšou\nnajpanslavistickejšej\nnajpanslavistickejší\nnajpanslavistickejšia\nnajpanslavistickejšie\nnajpanslavistickejšieho\nnajpanslavistickejšiemu\nnajpanslavistickejších\nnajpanslavistickejším\nnajpanslavistickejšími\nnajpanslavistickejšiu\nnajpanslavistickejšom\nnajpanslavistickejšou\nnajpápežskejšej\nnajpápežskejší\nnajpápežskejšia\nnajpápežskejšie\nnajpápežskejšieho\nnajpápežskejšiemu\nnajpápežskejších\nnajpápežskejším\nnajpápežskejšími\nnajpápežskejšiu\nnajpápežskejšom\nnajpápežskejšou\nnajpapierovejšie\nnajpaprikovejšej\nnajpaprikovejší\nnajpaprikovejšia\nnajpaprikovejšie\nnajpaprikovejšieho\nnajpaprikovejšiemu\nnajpaprikovejších\nnajpaprikovejším\nnajpaprikovejšími\nnajpaprikovejšiu\nnajpaprikovejšom\nnajpaprikovejšou\nnajpapuľnatejšej\nnajpapuľnatejší\nnajpapuľnatejšia\nnajpapuľnatejšie\nnajpapuľnatejšieho\nnajpapuľnatejšiemu\nnajpapuľnatejších\nnajpapuľnatejším\nnajpapuľnatejšími\nnajpapuľnatejšiu\nnajpapuľnatejšom\nnajpapuľnatejšou\nnajparabolickejšej\nnajparabolickejší\nnajparabolickejšia\nnajparabolickejšie\nnajparabolickejšieho\nnajparabolickejšiemu\nnajparabolickejších\nnajparabolickejším\nnajparabolickejšími\nnajparabolickejšiu\nnajparabolickejšom\nnajparabolickejšou\nnajparádnejšej\nnajparádnejší\nnajparádnejšia\nnajparádnejšie\nnajparádnejšieho\nnajparádnejšiemu\nnajparádnejších\nnajparádnejším\nnajparádnejšími\nnajparádnejšiu\nnajparádnejšom\nnajparádnejšou\nnajparadoxnejšej\nnajparadoxnejší\nnajparadoxnejšia\nnajparadoxnejšie\nnajparadoxnejšieho\nnajparadoxnejšiemu\nnajparadoxnejších\nnajparadoxnejším\nnajparadoxnejšími\nnajparadoxnejšiu\nnajparadoxnejšom\nnajparadoxnejšou\nnajparciálnejšej\nnajparciálnejší\nnajparciálnejšia\nnajparciálnejšie\nnajparciálnejšieho\nnajparciálnejšiemu\nnajparciálnejších\nnajparciálnejším\nnajparciálnejšími\nnajparciálnejšiu\nnajparciálnejšom\nnajparciálnejšou\nnajparížskejšej\nnajparížskejší\nnajparížskejšia\nnajparížskejšie\nnajparížskejšieho\nnajparížskejšiemu\nnajparížskejších\nnajparížskejším\nnajparížskejšími\nnajparížskejšiu\nnajparížskejšom\nnajparížskejšou\nnajparnejších\nnajparohatejšej\nnajparohatejší\nnajparohatejšia\nnajparohatejšie\nnajparohatejšieho\nnajparohatejšiemu\nnajparohatejších\nnajparohatejším\nnajparohatejšími\nnajparohatejšiu\nnajparohatejšom\nnajparohatejšou\nnajparomskejšej\nnajparomskejší\nnajparomskejšia\nnajparomskejšie\nnajparomskejšieho\nnajparomskejšiemu\nnajparomskejších\nnajparomskejším\nnajparomskejšími\nnajparomskejšiu\nnajparomskejšom\nnajparomskejšou\nnajpartiovejšej\nnajpartiovejší\nnajpartiovejšia\nnajpartiovejšie\nnajpartiovejšieho\nnajpartiovejšiemu\nnajpartiovejších\nnajpartiovejším\nnajpartiovejšími\nnajpartiovejšiu\nnajpartiovejšom\nnajpartiovejšou\nnajpasívnejšej\nnajpasívnejší\nnajpasívnejšia\nnajpasívnejšie\nnajpasívnejšieho\nnajpasívnejšiemu\nnajpasívnejších\nnajpasívnejším\nnajpasívnejšími\nnajpasívnejšiu\nnajpasívnejšom\nnajpasívnejšou\nnajpaskudnejšej\nnajpaskudnejší\nnajpaskudnejšia\nnajpaskudnejšie\nnajpaskudnejšieho\nnajpaskudnejšiemu\nnajpaskudnejších\nnajpaskudnejším\nnajpaskudnejšími\nnajpaskudnejšiu\nnajpaskudnejšom\nnajpaskudnejšou\nnajpašeráckejšej\nnajpašeráckejší\nnajpašeráckejšia\nnajpašeráckejšie\nnajpašeráckejšieho\nnajpašeráckejšiemu\nnajpašeráckejších\nnajpašeráckejším\nnajpašeráckejšími\nnajpašeráckejšiu\nnajpašeráckejšom\nnajpašeráckejšou\nnajpatetickejšej\nnajpatetickejší\nnajpatetickejšia\nnajpatetickejšie\nnajpatetickejšieho\nnajpatetickejšiemu\nnajpatetickejších\nnajpatetickejším\nnajpatetickejšími\nnajpatetickejšiu\nnajpatetickejšom\nnajpatetickejšou\nnajpatogénnejšej\nnajpatogénnejší\nnajpatogénnejšia\nnajpatogénnejšie\nnajpatogénnejšieho\nnajpatogénnejšiemu\nnajpatogénnejších\nnajpatogénnejším\nnajpatogénnejšími\nnajpatogénnejšiu\nnajpatogénnejšom\nnajpatogénnejšou\nnajpätolizačskejšej\nnajpätolizačskejší\nnajpätolizačskejšia\nnajpätolizačskejšie\nnajpätolizačskejšieho\nnajpätolizačskejšiemu\nnajpätolizačskejších\nnajpätolizačskejším\nnajpätolizačskejšími\nnajpätolizačskejšiu\nnajpätolizačskejšom\nnajpätolizačskejšou\nnajpatologickejšej\nnajpatologickejší\nnajpatologickejšia\nnajpatologickejšie\nnajpatologickejšieho\nnajpatologickejšiemu\nnajpatologickejších\nnajpatologickejším\nnajpatologickejšími\nnajpatologickejšiu\nnajpatologickejšom\nnajpatologickejšou\nnajpátravejšej\nnajpátravejší\nnajpátravejšia\nnajpátravejšie\nnajpátravejšieho\nnajpátravejšiemu\nnajpátravejších\nnajpátravejším\nnajpátravejšími\nnajpátravejšiu\nnajpátravejšom\nnajpátravejšou\nnajpatriarchálnejšej\nnajpatriarchálnejší\nnajpatriarchálnejšia\nnajpatriarchálnejšie\nnajpatriarchálnejšieho\nnajpatriarchálnejšiemu\nnajpatriarchálnejších\nnajpatriarchálnejším\nnajpatriarchálnejšími\nnajpatriarchálnejšiu\nnajpatriarchálnejšom\nnajpatriarchálnejšou\nnajpatričnejšie\nnajpatriotickejšej\nnajpatriotickejší\nnajpatriotickejšia\nnajpatriotickejšie\nnajpatriotickejšieho\nnajpatriotickejšiemu\nnajpatriotickejších\nnajpatriotickejším\nnajpatriotickejšími\nnajpatriotickejšiu\nnajpatriotickejšom\nnajpatriotickejšou\nnajpažravejšej\nnajpažravejší\nnajpažravejšia\nnajpažravejšie\nnajpažravejšieho\nnajpažravejšiemu\nnajpažravejších\nnajpažravejším\nnajpažravejšími\nnajpažravejšiu\nnajpažravejšom\nnajpažravejšou\nnajpedagogickejšej\nnajpedagogickejší\nnajpedagogickejšia\nnajpedagogickejšie\nnajpedagogickejšieho\nnajpedagogickejšiemu\nnajpedagogickejších\nnajpedagogickejším\nnajpedagogickejšími\nnajpedagogickejšiu\nnajpedagogickejšom\nnajpedagogickejšou\nnajpedantnejšej\nnajpedantnejší\nnajpedantnejšia\nnajpedantnejšie\nnajpedantnejšieho\nnajpedantnejšiemu\nnajpedantnejších\nnajpedantnejším\nnajpedantnejšími\nnajpedantnejšiu\nnajpedantnejšom\nnajpedantnejšou\nnajpedantskejšie\nnajpehavejšej\nnajpehavejší\nnajpehavejšia\nnajpehavejšie\nnajpehavejšieho\nnajpehavejšiemu\nnajpehavejších\nnajpehavejším\nnajpehavejšími\nnajpehavejšiu\nnajpehavejšom\nnajpehavejšou\nnajpejoratívnejšej\nnajpejoratívnejší\nnajpejoratívnejšia\nnajpejoratívnejšie\nnajpejoratívnejšieho\nnajpejoratívnejšiemu\nnajpejoratívnejších\nnajpejoratívnejším\nnajpejoratívnejšími\nnajpejoratívnejšiu\nnajpejoratívnejšom\nnajpejoratívnejšou\nnajpekelnejšej\nnajpekelnejší\nnajpekelnejšia\nnajpekelnejšie\nnajpekelnejšieho\nnajpekelnejšiemu\nnajpekelnejších\nnajpekelnejším\nnajpekelnejšími\nnajpekelnejšiu\nnajpekelnejšom\nnajpekelnejšou\nnajpeňažitejšej\nnajpeňažitejší\nnajpeňažitejšia\nnajpeňažitejšie\nnajpeňažitejšieho\nnajpeňažitejšiemu\nnajpeňažitejších\nnajpeňažitejším\nnajpeňažitejšími\nnajpeňažitejšiu\nnajpeňažitejšom\nnajpeňažitejšou\nnajpenivejšej\nnajpenivejší\nnajpenivejšia\nnajpenivejšie\nnajpenivejšieho\nnajpenivejšiemu\nnajpenivejších\nnajpenivejším\nnajpenivejšími\nnajpenivejšiu\nnajpenivejšom\nnajpenivejšou\nnajperfekcionistickejšej\nnajperfekcionistickejší\nnajperfekcionistickejšia\nnajperfekcionistickejšie\nnajperfekcionistickejšieho\nnajperfekcionistickejšiemu\nnajperfekcionistickejších\nnajperfekcionistickejším\nnajperfekcionistickejšími\nnajperfekcionistickejšiu\nnajperfekcionistickejšom\nnajperfekcionistickejšou\nnajperfektnejšej\nnajperfektnejší\nnajperfektnejšia\nnajperfektnejšie\nnajperfektnejšieho\nnajperfektnejšiemu\nnajperfektnejších\nnajperfektnejším\nnajperfektnejšími\nnajperfektnejšiu\nnajperfektnejšom\nnajperfektnejšou\nnajperfídnejšej\nnajperfídnejší\nnajperfídnejšia\nnajperfídnejšie\nnajperfídnejšieho\nnajperfídnejšiemu\nnajperfídnejších\nnajperfídnejším\nnajperfídnejšími\nnajperfídnejšiu\nnajperfídnejšom\nnajperfídnejšou\nnajperlivejšej\nnajperlivejší\nnajperlivejšia\nnajperlivejšie\nnajperlivejšieho\nnajperlivejšiemu\nnajperlivejších\nnajperlivejším\nnajperlivejšími\nnajperlivejšiu\nnajperlivejšom\nnajperlivejšou\nnajpernatejšej\nnajpernatejší\nnajpernatejšia\nnajpernatejšie\nnajpernatejšieho\nnajpernatejšiemu\nnajpernatejších\nnajpernatejším\nnajpernatejšími\nnajpernatejšiu\nnajpernatejšom\nnajpernatejšou\nnajperovanejšej\nnajperovanejší\nnajperovanejšia\nnajperovanejšie\nnajperovanejšieho\nnajperovanejšiemu\nnajperovanejších\nnajperovanejším\nnajperovanejšími\nnajperovanejšiu\nnajperovanejšom\nnajperovanejšou\nnajperspektívnejšej\nnajperspektívnejší\nnajperspektívnejšia\nnajperspektívnejšie\nnajperspektívnejšieho\nnajperspektívnejšiemu\nnajperspektívnejších\nnajperspektívnejším\nnajperspektívnejšími\nNajperspektívnejšími\nnajperspektívnejšiu\nnajperspektívnejšom\nnajperspektívnejšou\nnajperverznejšej\nnajperverznejší\nnajperverznejšia\nnajperverznejšie\nnajperverznejšieho\nnajperverznejšiemu\nnajperverznejších\nnajperverznejším\nnajperverznejšími\nnajperverznejšiu\nnajperverznejšom\nnajperverznejšou\nnajpesimistickejšej\nnajpesimistickejší\nnajpesimistickejšia\nnajpesimistickejšie\nnajpesimistickejšieho\nnajpesimistickejšiemu\nnajpesimistickejších\nnajpesimistickejším\nnajpesimistickejšími\nnajpesimistickejšiu\nnajpesimistickejšom\nnajpesimistickejšou\nnajpestovanejšej\nnajpestovanejší\nnajpestovanejšia\nnajpestovanejšie\nnajpestovanejšieho\nnajpestovanejšiemu\nnajpestovanejších\nnajpestovanejším\nnajpestovanejšími\nnajpestovanejšiu\nnajpestovanejšom\nnajpestovanejšou\nnajpestrejšej\nnajpestrejší\nnajpestrejšia\nnajpestrejšie\nnajpestrejšieho\nnajpestrejšiemu\nnajpestrejších\nnajpestrejším\nnajpestrejšími\nnajpestrejšiu\nnajpestrejšom\nnajpestrejšou\nnajpestrofarebnejšej\nnajpestrofarebnejší\nnajpestrofarebnejšia\nnajpestrofarebnejšie\nnajpestrofarebnejšieho\nnajpestrofarebnejšiemu\nnajpestrofarebnejších\nnajpestrofarebnejším\nnajpestrofarebnejšími\nnajpestrofarebnejšiu\nnajpestrofarebnejšom\nnajpestrofarebnejšou\nnajpevnejšej\nnajpevnejší\nnajpevnejšia\nnajpevnejšieho\nnajpevnejšiemu\nnajpevnejších\nnajpevnejším\nnajpevnejšími\nnajpevnejšiu\nnajpevnejšom\nnajpevnejšou\nnajpiesčitejšej\nnajpiesčitejší\nnajpiesčitejšia\nnajpiesčitejšie\nnajpiesčitejšieho\nnajpiesčitejšiemu\nnajpiesčitejších\nnajpiesčitejším\nnajpiesčitejšími\nnajpiesčitejšiu\nnajpiesčitejšom\nnajpiesčitejšou\nnajpieskovitejšej\nnajpieskovitejší\nnajpieskovitejšia\nnajpieskovitejšie\nnajpieskovitejšieho\nnajpieskovitejšiemu\nnajpieskovitejších\nnajpieskovitejším\nnajpieskovitejšími\nnajpieskovitejšiu\nnajpieskovitejšom\nnajpieskovitejšou\nnajpiesočnatejšej\nnajpiesočnatejší\nnajpiesočnatejšia\nnajpiesočnatejšie\nnajpiesočnatejšieho\nnajpiesočnatejšiemu\nnajpiesočnatejších\nnajpiesočnatejším\nnajpiesočnatejšími\nnajpiesočnatejšiu\nnajpiesočnatejšom\nnajpiesočnatejšou\nnajpichavejšej\nnajpichavejší\nnajpichavejšia\nnajpichavejšie\nnajpichavejšieho\nnajpichavejšiemu\nnajpichavejších\nnajpichavejším\nnajpichavejšími\nnajpichavejšiu\nnajpichavejšom\nnajpichavejšou\nnajpichľavejšej\nnajpichľavejší\nnajpichľavejšia\nnajpichľavejšie\nnajpichľavejšieho\nnajpichľavejšiemu\nnajpichľavejších\nnajpichľavejším\nnajpichľavejšími\nnajpichľavejšiu\nnajpichľavejšom\nnajpichľavejšou\nnajpijavejšej\nnajpijavejší\nnajpijavejšia\nnajpijavejšie\nnajpijavejšieho\nnajpijavejšiemu\nnajpijavejších\nnajpijavejším\nnajpijavejšími\nnajpijavejšiu\nnajpijavejšom\nnajpijavejšou\nnajpikantnejšej\nnajpikantnejší\nNajpikantnejší\nnajpikantnejšia\nNajpikantnejšia\nnajpikantnejšie\nnajpikantnejšieho\nnajpikantnejšiemu\nnajpikantnejších\nnajpikantnejším\nnajpikantnejšími\nnajpikantnejšiu\nnajpikantnejšom\nnajpikantnejšou\nnajpílkovitejšej\nnajpílkovitejší\nnajpílkovitejšia\nnajpílkovitejšie\nnajpílkovitejšieho\nnajpílkovitejšiemu\nnajpílkovitejších\nnajpílkovitejším\nnajpílkovitejšími\nnajpílkovitejšiu\nnajpílkovitejšom\nnajpílkovitejšou\nnajpílovitejšej\nnajpílovitejší\nnajpílovitejšia\nnajpílovitejšie\nnajpílovitejšieho\nnajpílovitejšiemu\nnajpílovitejších\nnajpílovitejším\nnajpílovitejšími\nnajpílovitejšiu\nnajpílovitejšom\nnajpílovitejšou\nnajpiplavejšej\nnajpiplavejší\nnajpiplavejšia\nnajpiplavejšie\nnajpiplavejšieho\nnajpiplavejšiemu\nnajpiplavejších\nnajpiplavejším\nnajpiplavejšími\nnajpiplavejšiu\nnajpiplavejšom\nnajpiplavejšou\nnajpirátskejšej\nnajpirátskejší\nnajpirátskejšia\nnajpirátskejšie\nnajpirátskejšieho\nnajpirátskejšiemu\nnajpirátskejších\nnajpirátskejším\nnajpirátskejšími\nnajpirátskejšiu\nnajpirátskejšom\nnajpirátskejšou\nnajpiskľavejšej\nnajpiskľavejší\nnajpiskľavejšia\nnajpiskľavejšie\nnajpiskľavejšieho\nnajpiskľavejšiemu\nnajpiskľavejších\nnajpiskľavejším\nnajpiskľavejšími\nnajpiskľavejšiu\nnajpiskľavejšom\nnajpiskľavejšou\nnajpitoresknejšej\nnajpitoresknejší\nnajpitoresknejšia\nnajpitoresknejšie\nnajpitoresknejšieho\nnajpitoresknejšiemu\nnajpitoresknejších\nnajpitoresknejším\nnajpitoresknejšími\nnajpitoresknejšiu\nnajpitoresknejšom\nnajpitoresknejšou\nnajplačlivejšej\nnajplačlivejší\nnajplačlivejšia\nnajplačlivejšie\nnajplačlivejšieho\nnajplačlivejšiemu\nnajplačlivejších\nnajplačlivejším\nnajplačlivejšími\nnajplačlivejšiu\nnajplačlivejšom\nnajplačlivejšou\nnajplachejšej\nnajplachejší\nnajplachejšia\nnajplachejšie\nnajplachejšieho\nnajplachejšiemu\nnajplachejších\nnajplachejším\nnajplachejšími\nnajplachejšiu\nnajplachejšom\nnajplachejšou\nnajplachšej\nnajplachší\nnajplachšia\nnajplachšie\nnajplachšieho\nnajplachšiemu\nnajplachších\nnajplachším\nnajplachšími\nnajplachšiu\nnajplachšom\nnajplachšou\nnajplamennejšej\nnajplamennejší\nnajplamennejšia\nnajplamennejšie\nnajplamennejšieho\nnajplamennejšiemu\nnajplamennejších\nnajplamennejším\nnajplamennejšími\nnajplamennejšiu\nnajplamennejšom\nnajplamennejšou\nnajplánovanejšej\nnajplánovanejší\nnajplánovanejšia\nnajplánovanejšie\nnajplánovanejšieho\nnajplánovanejšiemu\nnajplánovanejších\nnajplánovanejším\nnajplánovanejšími\nnajplánovanejšiu\nnajplánovanejšom\nnajplánovanejšou\nnajplánovitejšej\nnajplánovitejší\nnajplánovitejšia\nnajplánovitejšie\nnajplánovitejšieho\nnajplánovitejšiemu\nnajplánovitejších\nnajplánovitejším\nnajplánovitejšími\nnajplánovitejšiu\nnajplánovitejšom\nnajplánovitejšou\nnajplanšej\nnajplanší\nnajplanšia\nnajplanšie\nnajplanšieho\nnajplanšiemu\nnajplanších\nnajplanším\nnajplanšími\nnajplanšiu\nnajplanšom\nnajplanšou\nnajplastickejšej\nnajplastickejší\nnajplastickejšia\nnajplastickejšie\nnajplastickejšieho\nnajplastickejšiemu\nnajplastickejších\nnajplastickejším\nnajplastickejšími\nnajplastickejšiu\nnajplastickejšom\nnajplastickejšou\nnajplavejšej\nnajplavejší\nnajplavejšia\nnajplavejšie\nnajplavejšieho\nnajplavejšiemu\nnajplavejších\nnajplavejším\nnajplavejšími\nnajplavejšiu\nnajplavejšom\nnajplavejšou\nnajplavnejšie\nnajplazivejšej\nnajplazivejší\nnajplazivejšia\nnajplazivejšie\nnajplazivejšieho\nnajplazivejšiemu\nnajplazivejších\nnajplazivejším\nnajplazivejšími\nnajplazivejšiu\nnajplazivejšom\nnajplazivejšou\nnajplebejskejšej\nnajplebejskejší\nnajplebejskejšia\nnajplebejskejšie\nnajplebejskejšieho\nnajplebejskejšiemu\nnajplebejskejších\nnajplebejskejším\nnajplebejskejšími\nnajplebejskejšiu\nnajplebejskejšom\nnajplebejskejšou\nnajplecitejšej\nnajplecitejší\nnajplecitejšia\nnajplecitejšie\nnajplecitejšieho\nnajplecitejšiemu\nnajplecitejších\nnajplecitejším\nnajplecitejšími\nnajplecitejšiu\nnajplecitejšom\nnajplecitejšou\nnajplecnatejšej\nnajplecnatejší\nnajplecnatejšia\nnajplecnatejšie\nnajplecnatejšieho\nnajplecnatejšiemu\nnajplecnatejších\nnajplecnatejším\nnajplecnatejšími\nnajplecnatejšiu\nnajplecnatejšom\nnajplecnatejšou\nnajplechovejšie\nnajplesnivejšej\nnajplesnivejší\nnajplesnivejšia\nnajplesnivejšie\nnajplesnivejšieho\nnajplesnivejšiemu\nnajplesnivejších\nnajplesnivejším\nnajplesnivejšími\nnajplesnivejšiu\nnajplesnivejšom\nnajplesnivejšou\nnajplešatejšej\nnajplešatejší\nnajplešatejšia\nnajplešatejšie\nnajplešatejšieho\nnajplešatejšiemu\nnajplešatejších\nnajplešatejším\nnajplešatejšími\nnajplešatejšiu\nnajplešatejšom\nnajplešatejšou\nnajplešivejšej\nnajplešivejší\nnajplešivejšia\nnajplešivejšie\nnajplešivejšieho\nnajplešivejšiemu\nnajplešivejších\nnajplešivejším\nnajplešivejšími\nnajplešivejšiu\nnajplešivejšom\nnajplešivejšou\nnajplisovanejšej\nnajplisovanejší\nnajplisovanejšia\nnajplisovanejšie\nnajplisovanejšieho\nnajplisovanejšiemu\nnajplisovanejších\nnajplisovanejším\nnajplisovanejšími\nnajplisovanejšiu\nnajplisovanejšom\nnajplisovanejšou\nnajplnejšej\nnajplnejší\nnajplnejšia\nnajplnejšie\nnajplnejšieho\nnajplnejšiemu\nnajplnejších\nnajplnejším\nnajplnejšími\nnajplnejšiu\nnajplnejšom\nnajplnejšou\nnajplnenejšej\nnajplnenejší\nnajplnenejšia\nnajplnenejšie\nnajplnenejšieho\nnajplnenejšiemu\nnajplnenejších\nnajplnenejším\nnajplnenejšími\nnajplnenejšiu\nnajplnenejšom\nnajplnenejšou\nnajplnohodnotnejšej\nnajplnohodnotnejší\nnajplnohodnotnejšia\nnajplnohodnotnejšie\nnajplnohodnotnejšieho\nnajplnohodnotnejšiemu\nnajplnohodnotnejších\nnajplnohodnotnejším\nnajplnohodnotnejšími\nnajplnohodnotnejšiu\nnajplnohodnotnejšom\nnajplnohodnotnejšou\nnajplnokrvnejšie\nnajplnoprávnejšej\nnajplnoprávnejší\nnajplnoprávnejšia\nnajplnoprávnejšie\nnajplnoprávnejšieho\nnajplnoprávnejšiemu\nnajplnoprávnejších\nnajplnoprávnejším\nnajplnoprávnejšími\nnajplnoprávnejšiu\nnajplnoprávnejšom\nnajplnoprávnejšou\nnajplnoštíhlejšej\nnajplnoštíhlejší\nnajplnoštíhlejšia\nnajplnoštíhlejšie\nnajplnoštíhlejšieho\nnajplnoštíhlejšiemu\nnajplnoštíhlejších\nnajplnoštíhlejším\nnajplnoštíhlejšími\nnajplnoštíhlejšiu\nnajplnoštíhlejšom\nnajplnoštíhlejšou\nnajplnšej\nnajplnší\nnajplnšia\nnajplnšie\nnajplnšieho\nnajplnšiemu\nnajplnších\nnajplnším\nnajplnšími\nnajplnšiu\nnajplnšom\nnajplnšou\nnajplodivejšej\nnajplodivejší\nnajplodivejšia\nnajplodivejšie\nnajplodivejšieho\nnajplodivejšiemu\nnajplodivejších\nnajplodivejším\nnajplodivejšími\nnajplodivejšiu\nnajplodivejšom\nnajplodivejšou\nnajplodnejšej\nnajplodnejší\nnajplodnejšia\nnajplodnejšie\nnajplodnejšieho\nnajplodnejšiemu\nnajplodnejších\nnajplodnejším\nnajplodnejšími\nnajplodnejšiu\nnajplodnejšom\nnajplodnejšou\nnajplochejšej\nnajplochejší\nnajplochejšia\nnajplochejšie\nnajplochejšieho\nnajplochejšiemu\nnajplochejších\nnajplochejším\nnajplochejšími\nnajplochejšiu\nnajplochejšom\nnajplochejšou\nnajplochšej\nnajplochší\nnajplochšia\nnajplochšie\nnajplochšieho\nnajplochšiemu\nnajplochších\nnajplochším\nnajplochšími\nnajplochšiu\nnajplochšom\nnajplochšou\nnajploskejšej\nnajploskejší\nnajploskejšia\nnajploskejšie\nnajploskejšieho\nnajploskejšiemu\nnajploskejších\nnajploskejším\nnajploskejšími\nnajploskejšiu\nnajploskejšom\nnajploskejšou\nnajplošnejšej\nnajplošnejší\nnajplošnejšia\nnajplošnejšie\nnajplošnejšieho\nnajplošnejšiemu\nnajplošnejších\nnajplošnejším\nnajplošnejšími\nnajplošnejšiu\nnajplošnejšom\nnajplošnejšou\nnajplstnatejšej\nnajplstnatejší\nnajplstnatejšia\nnajplstnatejšie\nnajplstnatejšieho\nnajplstnatejšiemu\nnajplstnatejších\nnajplstnatejším\nnajplstnatejšími\nnajplstnatejšiu\nnajplstnatejšom\nnajplstnatejšou\nnajpľuhavejšej\nnajpľuhavejší\nnajpľuhavejšia\nnajpľuhavejšie\nnajpľuhavejšieho\nnajpľuhavejšiemu\nnajpľuhavejších\nnajpľuhavejším\nnajpľuhavejšími\nnajpľuhavejšiu\nnajpľuhavejšom\nnajpľuhavejšou\nnajpluralistickejšej\nnajpluralistickejší\nnajpluralistickejšia\nnajpluralistickejšie\nnajpluralistickejšieho\nnajpluralistickejšiemu\nnajpluralistickejších\nnajpluralistickejším\nnajpluralistickejšími\nnajpluralistickejšiu\nnajpluralistickejšom\nnajpluralistickejšou\nnajplynnejšej\nnajplynnejší\nnajplynnejšia\nnajplynnejšie\nnajplynnejšieho\nnajplynnejšiemu\nnajplynnejších\nnajplynnejším\nnajplynnejšími\nnajplynnejšiu\nnajplynnejšom\nnajplynnejšou\nnajplynulejšej\nnajplynulejší\nnajplynulejšia\nnajplynulejšie\nnajplynulejšieho\nnajplynulejšiemu\nnajplynulejších\nnajplynulejším\nnajplynulejšími\nnajplynulejšiu\nnajplynulejšom\nnajplynulejšou\nnajplytkejšej\nnajplytkejší\nnajplytkejšia\nnajplytkejšie\nnajplytkejšieho\nnajplytkejšiemu\nnajplytkejších\nnajplytkejším\nnajplytkejšími\nnajplytkejšiu\nnajplytkejšom\nnajplytkejšou\nnajpobavenejšej\nnajpobavenejší\nnajpobavenejšia\nnajpobavenejšie\nnajpobavenejšieho\nnajpobavenejšiemu\nnajpobavenejších\nnajpobavenejším\nnajpobavenejšími\nnajpobavenejšiu\nnajpobavenejšom\nnajpobavenejšou\nnajpobožnejšej\nnajpobožnejší\nnajpobožnejšia\nnajpobožnejšie\nnajpobožnejšieho\nnajpobožnejšiemu\nnajpobožnejších\nnajpobožnejším\nnajpobožnejšími\nnajpobožnejšiu\nnajpobožnejšom\nnajpobožnejšou\nnajpobúrenejšej\nnajpobúrenejší\nnajpobúrenejšia\nnajpobúrenejšie\nnajpobúrenejšieho\nnajpobúrenejšiemu\nnajpobúrenejších\nnajpobúrenejším\nnajpobúrenejšími\nnajpobúrenejšiu\nnajpobúrenejšom\nnajpobúrenejšou\nnajpoburujúcejšej\nnajpoburujúcejší\nnajpoburujúcejšia\nnajpoburujúcejšie\nnajpoburujúcejšieho\nnajpoburujúcejšiemu\nnajpoburujúcejších\nnajpoburujúcejším\nnajpoburujúcejšími\nnajpoburujúcejšiu\nnajpoburujúcejšom\nnajpoburujúcejšou\nnajpoctivejšej\nnajpoctivejší\nnajpoctivejšia\nnajpoctivejšie\nnajpoctivejšieho\nnajpoctivejšiemu\nnajpoctivejších\nnajpoctivejším\nnajpoctivejšími\nnajpoctivejšiu\nnajpoctivejšom\nnajpoctivejšou\nnajpočernejšej\nnajpočernejší\nnajpočernejšia\nnajpočernejšie\nnajpočernejšieho\nnajpočernejšiemu\nnajpočernejších\nnajpočernejším\nnajpočernejšími\nnajpočernejšiu\nnajpočernejšom\nnajpočernejšou\nnajpočestnejšej\nnajpočestnejší\nnajpočestnejšia\nnajpočestnejšie\nnajpočestnejšieho\nnajpočestnejšiemu\nnajpočestnejších\nnajpočestnejším\nnajpočestnejšími\nnajpočestnejšiu\nnajpočestnejšom\nnajpočestnejšou\nnajpočetnejšej\nnajpočetnejší\nnajpočetnejšia\nnajpočetnejšie\nnajpočetnejšieho\nnajpočetnejšiemu\nnajpočetnejších\nnajpočetnejším\nnajpočetnejšími\nnajpočetnejšiu\nnajpočetnejšom\nnajpočetnejšou\nnajpočuteľnejšej\nnajpočuteľnejší\nnajpočuteľnejšia\nnajpočuteľnejšie\nnajpočuteľnejšieho\nnajpočuteľnejšiemu\nnajpočuteľnejších\nnajpočuteľnejším\nnajpočuteľnejšími\nnajpočuteľnejšiu\nnajpočuteľnejšom\nnajpočuteľnejšou\nnajpočúvnejšej\nnajpočúvnejší\nnajpočúvnejšia\nnajpočúvnejšie\nnajpočúvnejšieho\nnajpočúvnejšiemu\nnajpočúvnejších\nnajpočúvnejším\nnajpočúvnejšími\nnajpočúvnejšiu\nnajpočúvnejšom\nnajpočúvnejšou\nnajpodarenejšej\nnajpodarenejší\nnajpodarenejšia\nnajpodarenejšie\nnajpodarenejšieho\nnajpodarenejšiemu\nnajpodarenejších\nnajpodarenejším\nnajpodarenejšími\nnajpodarenejšiu\nnajpodarenejšom\nnajpodarenejšou\nnajpoddajnejšej\nnajpoddajnejší\nnajpoddajnejšia\nnajpoddajnejšie\nnajpoddajnejšieho\nnajpoddajnejšiemu\nnajpoddajnejších\nnajpoddajnejším\nnajpoddajnejšími\nnajpoddajnejšiu\nnajpoddajnejšom\nnajpoddajnejšou\nnajpoddanejšej\nnajpoddanejší\nnajpoddanejšia\nnajpoddanejšie\nnajpoddanejšieho\nnajpoddanejšiemu\nnajpoddanejších\nnajpoddanejším\nnajpoddanejšími\nnajpoddanejšiu\nnajpoddanejšom\nnajpoddanejšou\nnajpodivnejšej\nnajpodivnejší\nnajpodivnejšia\nnajpodivnejšie\nnajpodivnejšieho\nnajpodivnejšiemu\nnajpodivnejších\nnajpodivnejším\nnajpodivnejšími\nnajpodivnejšiu\nnajpodivnejšom\nnajpodivnejšou\nnajpodivuhodnejšej\nnajpodivuhodnejší\nnajpodivuhodnejšia\nnajpodivuhodnejšie\nnajpodivuhodnejšieho\nnajpodivuhodnejšiemu\nnajpodivuhodnejších\nnajpodivuhodnejším\nnajpodivuhodnejšími\nnajpodivuhodnejšiu\nnajpodivuhodnejšom\nnajpodivuhodnejšou\nnajpodkovovitejšej\nnajpodkovovitejší\nnajpodkovovitejšia\nnajpodkovovitejšie\nnajpodkovovitejšieho\nnajpodkovovitejšiemu\nnajpodkovovitejších\nnajpodkovovitejším\nnajpodkovovitejšími\nnajpodkovovitejšiu\nnajpodkovovitejšom\nnajpodkovovitejšou\nnajpodkupnejšej\nnajpodkupnejší\nnajpodkupnejšia\nnajpodkupnejšie\nnajpodkupnejšieho\nnajpodkupnejšiemu\nnajpodkupnejších\nnajpodkupnejším\nnajpodkupnejšími\nnajpodkupnejšiu\nnajpodkupnejšom\nnajpodkupnejšou\nnajpodlejšej\nnajpodlejší\nnajpodlejšia\nnajpodlejšie\nnajpodlejšieho\nnajpodlejšiemu\nnajpodlejších\nnajpodlejším\nnajpodlejšími\nnajpodlejšiu\nnajpodlejšom\nnajpodlejšou\nnajpodlhovastejšej\nnajpodlhovastejší\nnajpodlhovastejšia\nnajpodlhovastejšie\nnajpodlhovastejšieho\nnajpodlhovastejšiemu\nnajpodlhovastejších\nnajpodlhovastejším\nnajpodlhovastejšími\nnajpodlhovastejšiu\nnajpodlhovastejšom\nnajpodlhovastejšou\nnajpodlízavejšej\nnajpodlízavejší\nnajpodlízavejšia\nnajpodlízavejšie\nnajpodlízavejšieho\nnajpodlízavejšiemu\nnajpodlízavejších\nnajpodlízavejším\nnajpodlízavejšími\nnajpodlízavejšiu\nnajpodlízavejšom\nnajpodlízavejšou\nnajpodmanivejšej\nnajpodmanivejší\nnajpodmanivejšia\nnajpodmanivejšie\nnajpodmanivejšieho\nnajpodmanivejšiemu\nnajpodmanivejších\nnajpodmanivejším\nnajpodmanivejšími\nnajpodmanivejšiu\nnajpodmanivejšom\nnajpodmanivejšou\nnajpodmaňujúcejšej\nnajpodmaňujúcejší\nnajpodmaňujúcejšia\nnajpodmaňujúcejšie\nnajpodmaňujúcejšieho\nnajpodmaňujúcejšiemu\nnajpodmaňujúcejších\nnajpodmaňujúcejším\nnajpodmaňujúcejšími\nnajpodmaňujúcejšiu\nnajpodmaňujúcejšom\nnajpodmaňujúcejšou\nnajpodmienenejšej\nnajpodmienenejší\nnajpodmienenejšia\nnajpodmienenejšie\nnajpodmienenejšieho\nnajpodmienenejšiemu\nnajpodmienenejších\nnajpodmienenejším\nnajpodmienenejšími\nnajpodmienenejšiu\nnajpodmienenejšom\nnajpodmienenejšou\nnajpodnapitejšej\nnajpodnapitejší\nnajpodnapitejšia\nnajpodnapitejšie\nnajpodnapitejšieho\nnajpodnapitejšiemu\nnajpodnapitejších\nnajpodnapitejším\nnajpodnapitejšími\nnajpodnapitejšiu\nnajpodnapitejšom\nnajpodnapitejšou\nnajpodnetnejšej\nnajpodnetnejší\nnajpodnetnejšia\nnajpodnetnejšie\nnajpodnetnejšieho\nnajpodnetnejšiemu\nnajpodnetnejších\nnajpodnetnejším\nnajpodnetnejšími\nnajpodnetnejšiu\nnajpodnetnejšom\nnajpodnetnejšou\nnajpodnikavejšej\nnajpodnikavejší\nnajpodnikavejšia\nnajpodnikavejšie\nnajpodnikavejšieho\nnajpodnikavejšiemu\nnajpodnikavejších\nnajpodnikavejším\nnajpodnikavejšími\nnajpodnikavejšiu\nnajpodnikavejšom\nnajpodnikavejšou\nnajpoďobanejšej\nnajpoďobanejší\nnajpoďobanejšia\nnajpoďobanejšie\nnajpoďobanejšieho\nnajpoďobanejšiemu\nnajpoďobanejších\nnajpoďobanejším\nnajpoďobanejšími\nnajpoďobanejšiu\nnajpoďobanejšom\nnajpoďobanejšou\nnajpodobnej\nnajpodobnejšej\nnajpodobnejší\nnajpodobnejšia\nnajpodobnejšie\nnajpodobnejšieho\nnajpodobnejšiemu\nnajpodobnejších\nnajpodobnejším\nnajpodobnejšími\nnajpodobnejšiu\nnajpodobnejšom\nnajpodobnejšou\nnajpodozrievavejšej\nnajpodozrievavejší\nnajpodozrievavejšia\nnajpodozrievavejšie\nnajpodozrievavejšieho\nnajpodozrievavejšiemu\nnajpodozrievavejších\nnajpodozrievavejším\nnajpodozrievavejšími\nnajpodozrievavejšiu\nnajpodozrievavejšom\nnajpodozrievavejšou\nnajpodozrivejšej\nnajpodozrivejší\nnajpodozrivejšia\nnajpodozrivejšie\nnajpodozrivejšieho\nnajpodozrivejšiemu\nnajpodozrivejších\nnajpodozrivejším\nnajpodozrivejšími\nnajpodozrivejšiu\nnajpodozrivejšom\nnajpodozrivejšou\nnajpodpitejšej\nnajpodpitejší\nnajpodpitejšia\nnajpodpitejšie\nnajpodpitejšieho\nnajpodpitejšiemu\nnajpodpitejších\nnajpodpitejším\nnajpodpitejšími\nnajpodpitejšiu\nnajpodpitejšom\nnajpodpitejšou\nnajpodplatnejšej\nnajpodplatnejší\nnajpodplatnejšia\nnajpodplatnejšie\nnajpodplatnejšieho\nnajpodplatnejšiemu\nnajpodplatnejších\nnajpodplatnejším\nnajpodplatnejšími\nnajpodplatnejšiu\nnajpodplatnejšom\nnajpodplatnejšou\nnajpodradenejšej\nnajpodradenejší\nnajpodradenejšia\nnajpodradenejšie\nnajpodradenejšieho\nnajpodradenejšiemu\nnajpodradenejších\nnajpodradenejším\nnajpodradenejšími\nnajpodradenejšiu\nnajpodradenejšom\nnajpodradenejšou\nnajpodradnejšej\nnajpodradnejší\nnajpodradnejšia\nnajpodradnejšie\nnajpodradnejšieho\nnajpodradnejšiemu\nnajpodradnejších\nnajpodradnejším\nnajpodradnejšími\nnajpodradnejšiu\nnajpodradnejšom\nnajpodradnejšou\nnajpodráždenejšej\nnajpodráždenejší\nnajpodráždenejšia\nnajpodráždenejšie\nnajpodráždenejšieho\nnajpodráždenejšiemu\nnajpodráždenejších\nnajpodráždenejším\nnajpodráždenejšími\nnajpodráždenejšiu\nnajpodráždenejšom\nnajpodráždenejšou\nnajpodrobnej\nnajpodružnejšej\nnajpodružnejší\nnajpodružnejšia\nnajpodružnejšie\nnajpodružnejšieho\nnajpodružnejšiemu\nnajpodružnejších\nnajpodružnejším\nnajpodružnejšími\nnajpodružnejšiu\nnajpodružnejšom\nnajpodružnejšou\nnajpodrývačskejšej\nnajpodrývačskejší\nnajpodrývačskejšia\nnajpodrývačskejšie\nnajpodrývačskejšieho\nnajpodrývačskejšiemu\nnajpodrývačskejších\nnajpodrývačskejším\nnajpodrývačskejšími\nnajpodrývačskejšiu\nnajpodrývačskejšom\nnajpodrývačskejšou\nnajpodvodnejšej\nnajpodvodnejší\nnajpodvodnejšia\nnajpodvodnejšie\nnajpodvodnejšieho\nnajpodvodnejšiemu\nnajpodvodnejších\nnajpodvodnejším\nnajpodvodnejšími\nnajpodvodnejšiu\nnajpodvodnejšom\nnajpodvodnejšou\nnajpodvratnejšej\nnajpodvratnejší\nnajpodvratnejšia\nnajpodvratnejšie\nnajpodvratnejšieho\nnajpodvratnejšiemu\nnajpodvratnejších\nnajpodvratnejším\nnajpodvratnejšími\nnajpodvratnejšiu\nnajpodvratnejšom\nnajpodvratnejšou\nnajpodvyživenejšej\nnajpodvyživenejší\nnajpodvyživenejšia\nnajpodvyživenejšie\nnajpodvyživenejšieho\nnajpodvyživenejšiemu\nnajpodvyživenejších\nnajpodvyživenejším\nnajpodvyživenejšími\nnajpodvyživenejšiu\nnajpodvyživenejšom\nnajpodvyživenejšou\nnajpoetickejšej\nnajpoetickejší\nnajpoetickejšia\nnajpoetickejšie\nnajpoetickejšieho\nnajpoetickejšiemu\nnajpoetickejších\nnajpoetickejším\nnajpoetickejšími\nnajpoetickejšiu\nnajpoetickejšom\nnajpoetickejšou\nnajpohnutejšej\nnajpohnutejší\nnajpohnutejšia\nnajpohnutejšie\nnajpohnutejšieho\nnajpohnutejšiemu\nnajpohnutejších\nnajpohnutejším\nnajpohnutejšími\nnajpohnutejšiu\nnajpohnutejšom\nnajpohnutejšou\nnajpohodlnejšej\nnajpohodlnejší\nnajpohodlnejšia\nnajpohodlnejšie\nnajpohodlnejšieho\nnajpohodlnejšiemu\nnajpohodlnejších\nnajpohodlnejším\nnajpohodlnejšími\nnajpohodlnejšiu\nnajpohodlnejšom\nnajpohodlnejšou\nnajpohoršenejšej\nnajpohoršenejší\nnajpohoršenejšia\nnajpohoršenejšie\nnajpohoršenejšieho\nnajpohoršenejšiemu\nnajpohoršenejších\nnajpohoršenejším\nnajpohoršenejšími\nnajpohoršenejšiu\nnajpohoršenejšom\nnajpohoršenejšou\nnajpohoršlivejšej\nnajpohoršlivejší\nnajpohoršlivejšia\nnajpohoršlivejšie\nnajpohoršlivejšieho\nnajpohoršlivejšiemu\nnajpohoršlivejších\nnajpohoršlivejším\nnajpohoršlivejšími\nnajpohoršlivejšiu\nnajpohoršlivejšom\nnajpohoršlivejšou\nnajpohostinnejšej\nnajpohostinnejší\nnajpohostinnejšia\nnajpohostinnejšie\nnajpohostinnejšieho\nnajpohostinnejšiemu\nnajpohostinnejších\nnajpohostinnejším\nnajpohostinnejšími\nnajpohostinnejšiu\nnajpohostinnejšom\nnajpohostinnejšou\nnajpohotovejšej\nnajpohotovejší\nnajpohotovejšia\nnajpohotovejšie\nnajpohotovejšieho\nnajpohotovejšiemu\nnajpohotovejších\nnajpohotovejším\nnajpohotovejšími\nnajpohotovejšiu\nnajpohotovejšom\nnajpohotovejšou\nnajpohŕdavejšej\nnajpohŕdavejší\nnajpohŕdavejšia\nnajpohŕdavejšie\nnajpohŕdavejšieho\nnajpohŕdavejšiemu\nnajpohŕdavejších\nnajpohŕdavejším\nnajpohŕdavejšími\nnajpohŕdavejšiu\nnajpohŕdavejšom\nnajpohŕdavejšou\nnajpohrdlivejšej\nnajpohrdlivejší\nnajpohrdlivejšia\nnajpohrdlivejšie\nnajpohrdlivejšieho\nnajpohrdlivejšiemu\nnajpohrdlivejších\nnajpohrdlivejším\nnajpohrdlivejšími\nnajpohrdlivejšiu\nnajpohrdlivejšom\nnajpohrdlivejšou\nnajpohyblivejšej\nnajpohyblivejší\nnajpohyblivejšia\nnajpohyblivejšie\nnajpohyblivejšieho\nnajpohyblivejšiemu\nnajpohyblivejších\nnajpohyblivejším\nnajpohyblivejšími\nnajpohyblivejšiu\nnajpohyblivejšom\nnajpohyblivejšou\nnajpochabejšej\nnajpochabejší\nnajpochabejšia\nnajpochabejšie\nnajpochabejšieho\nnajpochabejšiemu\nnajpochabejších\nnajpochabejším\nnajpochabejšími\nnajpochabejšiu\nnajpochabejšom\nnajpochabejšou\nnajpochlebovačnejšej\nnajpochlebovačnejší\nnajpochlebovačnejšia\nnajpochlebovačnejšie\nnajpochlebovačnejšieho\nnajpochlebovačnejšiemu\nnajpochlebovačnejších\nnajpochlebovačnejším\nnajpochlebovačnejšími\nnajpochlebovačnejšiu\nnajpochlebovačnejšom\nnajpochlebovačnejšou\nnajpochmúrnejšej\nnajpochmúrnejší\nnajpochmúrnejšia\nnajpochmúrnejšie\nnajpochmúrnejšieho\nnajpochmúrnejšiemu\nnajpochmúrnejších\nnajpochmúrnejším\nnajpochmúrnejšími\nnajpochmúrnejšiu\nnajpochmúrnejšom\nnajpochmúrnejšou\nnajpochopiteľnejšej\nnajpochopiteľnejší\nnajpochopiteľnejšia\nnajpochopiteľnejšie\nnajpochopiteľnejšieho\nnajpochopiteľnejšiemu\nnajpochopiteľnejších\nnajpochopiteľnejším\nnajpochopiteľnejšími\nnajpochopiteľnejšiu\nnajpochopiteľnejšom\nnajpochopiteľnejšou\nnajpochvalnejšej\nnajpochvalnejší\nnajpochvalnejšia\nnajpochvalnejšie\nnajpochvalnejšieho\nnajpochvalnejšiemu\nnajpochvalnejších\nnajpochvalnejším\nnajpochvalnejšími\nnajpochvalnejšiu\nnajpochvalnejšom\nnajpochvalnejšou\nnajpochybnejšej\nnajpochybnejší\nnajpochybnejšia\nnajpochybnejšie\nnajpochybnejšieho\nnajpochybnejšiemu\nnajpochybnejších\nnajpochybnejším\nnajpochybnejšími\nnajpochybnejšiu\nnajpochybnejšom\nnajpochybnejšou\nnajpochybovačnejšej\nnajpochybovačnejší\nnajpochybovačnejšia\nnajpochybovačnejšie\nnajpochybovačnejšieho\nnajpochybovačnejšiemu\nnajpochybovačnejších\nnajpochybovačnejším\nnajpochybovačnejšími\nnajpochybovačnejšiu\nnajpochybovačnejšom\nnajpochybovačnejšou\nnajpojašenejšej\nnajpojašenejší\nnajpojašenejšia\nnajpojašenejšie\nnajpojašenejšieho\nnajpojašenejšiemu\nnajpojašenejších\nnajpojašenejším\nnajpojašenejšími\nnajpojašenejšiu\nnajpojašenejšom\nnajpojašenejšou\nnajpojebanejšej\nnajpojebanejší\nnajpojebanejšia\nnajpojebanejšie\nnajpojebanejšieho\nnajpojebanejšiemu\nnajpojebanejších\nnajpojebanejším\nnajpojebanejšími\nnajpojebanejšiu\nnajpojebanejšom\nnajpojebanejšou\nnajpokojamilovnejšej\nnajpokojamilovnejší\nnajpokojamilovnejšia\nnajpokojamilovnejšie\nnajpokojamilovnejšieho\nnajpokojamilovnejšiemu\nnajpokojamilovnejších\nnajpokojamilovnejším\nnajpokojamilovnejšími\nnajpokojamilovnejšiu\nnajpokojamilovnejšom\nnajpokojamilovnejšou\nnajpokojnejšej\nnajpokojnejší\nNajpokojnejší\nnajpokojnejšia\nnajpokojnejšie\nnajpokojnejšieho\nnajpokojnejšiemu\nnajpokojnejších\nnajpokojnejším\nnajpokojnejšími\nnajpokojnejšiu\nnajpokojnejšom\nnajpokojnejšou\nnajpokornejšej\nnajpokornejší\nnajpokornejšia\nnajpokornejšie\nnajpokornejšieho\nnajpokornejšiemu\nnajpokornejších\nnajpokornejším\nnajpokornejšími\nnajpokornejšiu\nnajpokornejšom\nnajpokornejšou\nnajpokrivenejšej\nnajpokrivenejší\nnajpokrivenejšia\nnajpokrivenejšie\nnajpokrivenejšieho\nnajpokrivenejšiemu\nnajpokrivenejších\nnajpokrivenejším\nnajpokrivenejšími\nnajpokrivenejšiu\nnajpokrivenejšom\nnajpokrivenejšou\nnajpokrokovejšej\nnajpokrokovejší\nnajpokrokovejšia\nnajpokrokovejšie\nnajpokrokovejšieho\nnajpokrokovejšiemu\nnajpokrokovejších\nnajpokrokovejším\nnajpokrokovejšími\nnajpokrokovejšiu\nnajpokrokovejšom\nnajpokrokovejšou\nnajpokryteckejšej\nnajpokryteckejší\nnajpokryteckejšia\nnajpokryteckejšie\nnajpokryteckejšieho\nnajpokryteckejšiemu\nnajpokryteckejších\nnajpokryteckejším\nnajpokryteckejšími\nnajpokryteckejšiu\nnajpokryteckejšom\nnajpokryteckejšou\nnajpokútnejšej\nnajpokútnejší\nnajpokútnejšia\nnajpokútnejšie\nnajpokútnejšieho\nnajpokútnejšiemu\nnajpokútnejších\nnajpokútnejším\nnajpokútnejšími\nnajpokútnejšiu\nnajpokútnejšom\nnajpokútnejšou\nnajpoľahčujúcejšej\nnajpoľahčujúcejší\nnajpoľahčujúcejšia\nnajpoľahčujúcejšie\nnajpoľahčujúcejšieho\nnajpoľahčujúcejšiemu\nnajpoľahčujúcejších\nnajpoľahčujúcejším\nnajpoľahčujúcejšími\nnajpoľahčujúcejšiu\nnajpoľahčujúcejšom\nnajpoľahčujúcejšou\nnajpoľakanejšej\nnajpoľakanejší\nnajpoľakanejšia\nnajpoľakanejšie\nnajpoľakanejšieho\nnajpoľakanejšiemu\nnajpoľakanejších\nnajpoľakanejším\nnajpoľakanejšími\nnajpoľakanejšiu\nnajpoľakanejšom\nnajpoľakanejšou\nnajpolarizovanejšej\nnajpolarizovanejší\nnajpolarizovanejšia\nnajpolarizovanejšie\nnajpolarizovanejšieho\nnajpolarizovanejšiemu\nnajpolarizovanejších\nnajpolarizovanejším\nnajpolarizovanejšími\nnajpolarizovanejšiu\nnajpolarizovanejšom\nnajpolarizovanejšou\nnajpolitickejšieho\nnajpolitickejšou\nnajpolovičatejšej\nnajpolovičatejší\nnajpolovičatejšia\nnajpolovičatejšie\nnajpolovičatejšieho\nnajpolovičatejšiemu\nnajpolovičatejších\nnajpolovičatejším\nnajpolovičatejšími\nnajpolovičatejšiu\nnajpolovičatejšom\nnajpolovičatejšou\nnajpoľskejšej\nnajpoľskejší\nnajpoľskejšia\nnajpoľskejšie\nnajpoľskejšieho\nnajpoľskejšiemu\nnajpoľskejších\nnajpoľskejším\nnajpoľskejšími\nnajpoľskejšiu\nnajpoľskejšom\nnajpoľskejšou\nnajpoľutovaniahodnejšej\nnajpoľutovaniahodnejší\nnajpoľutovaniahodnejšia\nnajpoľutovaniahodnejšie\nnajpoľutovaniahodnejšieho\nnajpoľutovaniahodnejšiemu\nnajpoľutovaniahodnejších\nnajpoľutovaniahodnejším\nnajpoľutovaniahodnejšími\nnajpoľutovaniahodnejšiu\nnajpoľutovaniahodnejšom\nnajpoľutovaniahodnejšou\nnajpomalejšej\nnajpomalejší\nnajpomalejšia\nnajpomalejšie\nnajpomalejšieho\nnajpomalejšiemu\nnajpomalejších\nnajpomalejším\nnajpomalejšími\nnajpomalejšiu\nnajpomalejšom\nnajpomalejšou\nnajpomátanejšie\nnajpomätenejšej\nnajpomätenejší\nnajpomätenejšia\nnajpomätenejšie\nnajpomätenejšieho\nnajpomätenejšiemu\nnajpomätenejších\nnajpomätenejším\nnajpomätenejšími\nnajpomätenejšiu\nnajpomätenejšom\nnajpomätenejšou\nnajpomotanejšej\nnajpomotanejší\nnajpomotanejšia\nnajpomotanejšie\nnajpomotanejšieho\nnajpomotanejšiemu\nnajpomotanejších\nnajpomotanejším\nnajpomotanejšími\nnajpomotanejšiu\nnajpomotanejšom\nnajpomotanejšou\nnajpompéznejšej\nnajpompéznejší\nnajpompéznejšia\nnajpompéznejšie\nnajpompéznejšieho\nnajpompéznejšiemu\nnajpompéznejších\nnajpompéznejším\nnajpompéznejšími\nnajpompéznejšiu\nnajpompéznejšom\nnajpompéznejšou\nnajpomstivejšej\nnajpomstivejší\nnajpomstivejšia\nnajpomstivejšie\nnajpomstivejšieho\nnajpomstivejšiemu\nnajpomstivejších\nnajpomstivejším\nnajpomstivejšími\nnajpomstivejšiu\nnajpomstivejšom\nnajpomstivejšou\nnajpomstychtivejšej\nnajpomstychtivejší\nnajpomstychtivejšia\nnajpomstychtivejšie\nnajpomstychtivejšieho\nnajpomstychtivejšiemu\nnajpomstychtivejších\nnajpomstychtivejším\nnajpomstychtivejšími\nnajpomstychtivejšiu\nnajpomstychtivejšom\nnajpomstychtivejšou\nnajpomútenejšej\nnajpomútenejší\nnajpomútenejšia\nnajpomútenejšie\nnajpomútenejšieho\nnajpomútenejšiemu\nnajpomútenejších\nnajpomútenejším\nnajpomútenejšími\nnajpomútenejšiu\nnajpomútenejšom\nnajpomútenejšou\nnajpomýlenejšej\nnajpomýlenejší\nnajpomýlenejšia\nnajpomýlenejšie\nnajpomýlenejšieho\nnajpomýlenejšiemu\nnajpomýlenejších\nnajpomýlenejším\nnajpomýlenejšími\nnajpomýlenejšiu\nnajpomýlenejšom\nnajpomýlenejšou\nnajponíženejšej\nnajponíženejší\nnajponíženejšia\nnajponíženejšie\nnajponíženejšieho\nnajponíženejšiemu\nnajponíženejších\nnajponíženejším\nnajponíženejšími\nnajponíženejšiu\nnajponíženejšom\nnajponíženejšou\nnajponižujúcejšej\nnajponižujúcejší\nnajponižujúcejšia\nnajponižujúcejšie\nnajponižujúcejšieho\nnajponižujúcejšiemu\nnajponižujúcejších\nnajponižujúcejším\nnajponižujúcejšími\nnajponižujúcejšiu\nnajponižujúcejšom\nnajponižujúcejšou\nnajponurejšej\nnajponurejší\nnajponurejšia\nnajponurejšie\nnajponurejšieho\nnajponurejšiemu\nnajponurejších\nnajponurejším\nnajponurejšími\nnajponurejšiu\nnajponurejšom\nnajponurejšou\nnajpootvorenejšej\nnajpootvorenejší\nnajpootvorenejšia\nnajpootvorenejšie\nnajpootvorenejšieho\nnajpootvorenejšiemu\nnajpootvorenejších\nnajpootvorenejším\nnajpootvorenejšími\nnajpootvorenejšiu\nnajpootvorenejšom\nnajpootvorenejšou\nnajpopínavejšej\nnajpopínavejší\nnajpopínavejšia\nnajpopínavejšie\nnajpopínavejšieho\nnajpopínavejšiemu\nnajpopínavejších\nnajpopínavejším\nnajpopínavejšími\nnajpopínavejšiu\nnajpopínavejšom\nnajpopínavejšou\nnajpopisnejšej\nnajpopisnejší\nnajpopisnejšia\nnajpopisnejšie\nnajpopisnejšieho\nnajpopisnejšiemu\nnajpopisnejších\nnajpopisnejším\nnajpopisnejšími\nnajpopisnejšiu\nnajpopisnejšom\nnajpopisnejšou\nnajpoplašenejšej\nnajpoplašenejší\nnajpoplašenejšia\nnajpoplašenejšie\nnajpoplašenejšieho\nnajpoplašenejšiemu\nnajpoplašenejších\nnajpoplašenejším\nnajpoplašenejšími\nnajpoplašenejšiu\nnajpoplašenejšom\nnajpoplašenejšou\nnajpoplatnejšej\nnajpoplatnejší\nnajpoplatnejšia\nnajpoplatnejšie\nnajpoplatnejšieho\nnajpoplatnejšiemu\nnajpoplatnejších\nnajpoplatnejším\nnajpoplatnejšími\nnajpoplatnejšiu\nnajpoplatnejšom\nnajpoplatnejšou\nnajpopletenejšej\nnajpopletenejší\nnajpopletenejšia\nnajpopletenejšie\nnajpopletenejšieho\nnajpopletenejšiemu\nnajpopletenejších\nnajpopletenejším\nnajpopletenejšími\nnajpopletenejšiu\nnajpopletenejšom\nnajpopletenejšou\nnajpopolavejšej\nnajpopolavejší\nnajpopolavejšia\nnajpopolavejšie\nnajpopolavejšieho\nnajpopolavejšiemu\nnajpopolavejších\nnajpopolavejším\nnajpopolavejšími\nnajpopolavejšiu\nnajpopolavejšom\nnajpopolavejšou\nnajpopudenejšej\nnajpopudenejší\nnajpopudenejšia\nnajpopudenejšie\nnajpopudenejšieho\nnajpopudenejšiemu\nnajpopudenejších\nnajpopudenejším\nnajpopudenejšími\nnajpopudenejšiu\nnajpopudenejšom\nnajpopudenejšou\nnajpopudlivejšej\nnajpopudlivejší\nnajpopudlivejšia\nnajpopudlivejšie\nnajpopudlivejšieho\nnajpopudlivejšiemu\nnajpopudlivejších\nnajpopudlivejším\nnajpopudlivejšími\nnajpopudlivejšiu\nnajpopudlivejšom\nnajpopudlivejšou\nnajpopulistickejšej\nnajpopulistickejší\nnajpopulistickejšia\nnajpopulistickejšie\nnajpopulistickejšieho\nnajpopulistickejšiemu\nnajpopulistickejších\nnajpopulistickejším\nnajpopulistickejšími\nnajpopulistickejšiu\nnajpopulistickejšom\nnajpopulistickejšou\nnajporazeneckejšej\nnajporazeneckejší\nnajporazeneckejšia\nnajporazeneckejšie\nnajporazeneckejšieho\nnajporazeneckejšiemu\nnajporazeneckejších\nnajporazeneckejším\nnajporazeneckejšími\nnajporazeneckejšiu\nnajporazeneckejšom\nnajporazeneckejšou\nnajporazenejšie\nnajporaziteľnejšej\nnajporaziteľnejší\nnajporaziteľnejšia\nnajporaziteľnejšie\nnajporaziteľnejšieho\nnajporaziteľnejšiemu\nnajporaziteľnejších\nnajporaziteľnejším\nnajporaziteľnejšími\nnajporaziteľnejšiu\nnajporaziteľnejšom\nnajporaziteľnejšou\nnajporedšie\nnajporiadkumilovnejšej\nnajporiadkumilovnejší\nnajporiadkumilovnejšia\nnajporiadkumilovnejšie\nnajporiadkumilovnejšieho\nnajporiadkumilovnejšiemu\nnajporiadkumilovnejších\nnajporiadkumilovnejším\nnajporiadkumilovnejšími\nnajporiadkumilovnejšiu\nnajporiadkumilovnejšom\nnajporiadkumilovnejšou\nnajporiadnejšej\nnajporiadnejší\nnajporiadnejšia\nnajporiadnejšie\nnajporiadnejšieho\nnajporiadnejšiemu\nnajporiadnejších\nnajporiadnejším\nnajporiadnejšími\nnajporiadnejšiu\nnajporiadnejšom\nnajporiadnejšou\nnajpórovitejšej\nnajpórovitejší\nnajpórovitejšia\nnajpórovitejšie\nnajpórovitejšieho\nnajpórovitejšiemu\nnajpórovitejších\nnajpórovitejším\nnajpórovitejšími\nnajpórovitejšiu\nnajpórovitejšom\nnajpórovitejšou\nnajporovnateľnejšej\nnajporovnateľnejší\nnajporovnateľnejšia\nnajporovnateľnejšie\nnajporovnateľnejšieho\nnajporovnateľnejšiemu\nnajporovnateľnejších\nnajporovnateľnejším\nnajporovnateľnejšími\nnajporovnateľnejšiu\nnajporovnateľnejšom\nnajporovnateľnejšou\nnajportugalskejšej\nnajportugalskejší\nnajportugalskejšia\nnajportugalskejšie\nnajportugalskejšieho\nnajportugalskejšiemu\nnajportugalskejších\nnajportugalskejším\nnajportugalskejšími\nnajportugalskejšiu\nnajportugalskejšom\nnajportugalskejšou\nnajporuchovejšej\nnajporuchovejší\nnajporuchovejšia\nnajporuchovejšie\nnajporuchovejšieho\nnajporuchovejšiemu\nnajporuchovejších\nnajporuchovejším\nnajporuchovejšími\nnajporuchovejšiu\nnajporuchovejšom\nnajporuchovejšou\nnajposadnutejšej\nnajposadnutejší\nnajposadnutejšia\nnajposadnutejšie\nnajposadnutejšieho\nnajposadnutejšiemu\nnajposadnutejších\nnajposadnutejším\nnajposadnutejšími\nnajposadnutejšiu\nnajposadnutejšom\nnajposadnutejšou\nnajposednejší\nnajposednejších\nnajposkromnejšie\nnajposlušnejší\nnajposmeľujúcejšej\nnajposmeľujúcejší\nnajposmeľujúcejšia\nnajposmeľujúcejšie\nnajposmeľujúcejšieho\nnajposmeľujúcejšiemu\nnajposmeľujúcejších\nnajposmeľujúcejším\nnajposmeľujúcejšími\nnajposmeľujúcejšiu\nnajposmeľujúcejšom\nnajposmeľujúcejšou\nnajposmešnejšej\nnajposmešnejší\nnajposmešnejšia\nnajposmešnejšie\nnajposmešnejšieho\nnajposmešnejšiemu\nnajposmešnejších\nnajposmešnejším\nnajposmešnejšími\nnajposmešnejšiu\nnajposmešnejšom\nnajposmešnejšou\nnajposmievačnejšej\nnajposmievačnejší\nnajposmievačnejšia\nnajposmievačnejšie\nnajposmievačnejšieho\nnajposmievačnejšiemu\nnajposmievačnejších\nnajposmievačnejším\nnajposmievačnejšími\nnajposmievačnejšiu\nnajposmievačnejšom\nnajposmievačnejšou\nnajpôsobivejšej\nnajpôsobivejší\nnajpôsobivejšia\nnajpôsobivejšie\nnajpôsobivejšieho\nnajpôsobivejšiemu\nnajpôsobivejších\nnajpôsobivejším\nnajpôsobivejšími\nnajpôsobivejšiu\nnajpôsobivejšom\nnajpôsobivejšou\nnajpostihnuteľnejšej\nnajpostihnuteľnejší\nnajpostihnuteľnejšia\nnajpostihnuteľnejšie\nnajpostihnuteľnejšieho\nnajpostihnuteľnejšiemu\nnajpostihnuteľnejších\nnajpostihnuteľnejším\nnajpostihnuteľnejšími\nnajpostihnuteľnejšiu\nnajpostihnuteľnejšom\nnajpostihnuteľnejšou\nnajpostrehnuteľnejšej\nnajpostrehnuteľnejší\nnajpostrehnuteľnejšia\nnajpostrehnuteľnejšie\nnajpostrehnuteľnejšieho\nnajpostrehnuteľnejšiemu\nnajpostrehnuteľnejších\nnajpostrehnuteľnejším\nnajpostrehnuteľnejšími\nnajpostrehnuteľnejšiu\nnajpostrehnuteľnejšom\nnajpostrehnuteľnejšou\nnajpostupnejšej\nnajpostupnejší\nnajpostupnejšia\nnajpostupnejšie\nnajpostupnejšieho\nnajpostupnejšiemu\nnajpostupnejších\nnajpostupnejším\nnajpostupnejšími\nnajpostupnejšiu\nnajpostupnejšom\nnajpostupnejšou\nnajposvätnejšie\nnajpošahanejšej\nnajpošahanejší\nnajpošahanejšia\nnajpošahanejšie\nnajpošahanejšieho\nnajpošahanejšiemu\nnajpošahanejších\nnajpošahanejším\nnajpošahanejšími\nnajpošahanejšiu\nnajpošahanejšom\nnajpošahanejšou\nnajpoškodenejšej\nnajpoškodenejší\nnajpoškodenejšia\nnajpoškodenejšie\nnajpoškodenejšieho\nnajpoškodenejšiemu\nnajpoškodenejších\nnajpoškodenejším\nnajpoškodenejšími\nnajpoškodenejšiu\nnajpoškodenejšom\nnajpoškodenejšou\nnajpošmúrnejšej\nnajpošmúrnejší\nnajpošmúrnejšia\nnajpošmúrnejšie\nnajpošmúrnejšieho\nnajpošmúrnejšiemu\nnajpošmúrnejších\nnajpošmúrnejším\nnajpošmúrnejšími\nnajpošmúrnejšiu\nnajpošmúrnejšom\nnajpošmúrnejšou\nnajpošvovitejšej\nnajpošvovitejší\nnajpošvovitejšia\nnajpošvovitejšie\nnajpošvovitejšieho\nnajpošvovitejšiemu\nnajpošvovitejších\nnajpošvovitejším\nnajpošvovitejšími\nnajpošvovitejšiu\nnajpošvovitejšom\nnajpošvovitejšou\nnajpotácavejšej\nnajpotácavejší\nnajpotácavejšia\nnajpotácavejšie\nnajpotácavejšieho\nnajpotácavejšiemu\nnajpotácavejších\nnajpotácavejším\nnajpotácavejšími\nnajpotácavejšiu\nnajpotácavejšom\nnajpotácavejšou\nnajpotenciálnejší\nnajpotenciálnejšiemu\nnajpotenciálnejších\nnajpotenciálnejším\nnajpotentnejšej\nnajpotentnejší\nnajpotentnejšia\nnajpotentnejšie\nnajpotentnejšieho\nnajpotentnejšiemu\nnajpotentnejších\nnajpotentnejším\nnajpotentnejšími\nnajpotentnejšiu\nnajpotentnejšom\nnajpotentnejšou\nnajpotešiteľnejšej\nnajpotešiteľnejší\nnajpotešiteľnejšia\nnajpotešiteľnejšie\nnajpotešiteľnejšieho\nnajpotešiteľnejšiemu\nnajpotešiteľnejších\nnajpotešiteľnejším\nnajpotešiteľnejšími\nnajpotešiteľnejšiu\nnajpotešiteľnejšom\nnajpotešiteľnejšou\nnajpotivejšej\nnajpotivejší\nnajpotivejšia\nnajpotivejšie\nnajpotivejšieho\nnajpotivejšiemu\nnajpotivejších\nnajpotivejším\nnajpotivejšími\nnajpotivejšiu\nnajpotivejšom\nnajpotivejšou\nnajpotmehúdskejšej\nnajpotmehúdskejší\nnajpotmehúdskejšia\nnajpotmehúdskejšie\nnajpotmehúdskejšieho\nnajpotmehúdskejšiemu\nnajpotmehúdskejších\nnajpotmehúdskejším\nnajpotmehúdskejšími\nnajpotmehúdskejšiu\nnajpotmehúdskejšom\nnajpotmehúdskejšou\nnajpotrebnejšej\nnajpotrebnejší\nnajpotrebnejšia\nnajpotrebnejšie\nnajpotrebnejšieho\nnajpotrebnejšiemu\nnajpotrebnejších\nnajpotrebnejším\nnajpotrebnejšími\nnajpotrebnejšiu\nnajpotrebnejšom\nnajpotrebnejšou\nnajpotupnejšej\nnajpotupnejší\nnajpotupnejšia\nnajpotupnejšie\nnajpotupnejšieho\nnajpotupnejšiemu\nnajpotupnejších\nnajpotupnejším\nnajpotupnejšími\nnajpotupnejšiu\nnajpotupnejšom\nnajpotupnejšou\nnajpotuteľnejšej\nnajpotuteľnejší\nnajpotuteľnejšia\nnajpotuteľnejšie\nnajpotuteľnejšieho\nnajpotuteľnejšiemu\nnajpotuteľnejších\nnajpotuteľnejším\nnajpotuteľnejšími\nnajpotuteľnejšiu\nnajpotuteľnejšom\nnajpotuteľnejšou\nnajpotvorskejšej\nnajpotvorskejší\nnajpotvorskejšia\nnajpotvorskejšie\nnajpotvorskejšieho\nnajpotvorskejšiemu\nnajpotvorskejších\nnajpotvorskejším\nnajpotvorskejšími\nnajpotvorskejšiu\nnajpotvorskejšom\nnajpotvorskejšou\nnajpoúčavejšej\nnajpoúčavejší\nnajpoúčavejšia\nnajpoúčavejšie\nnajpoúčavejšieho\nnajpoúčavejšiemu\nnajpoúčavejších\nnajpoúčavejším\nnajpoúčavejšími\nnajpoúčavejšiu\nnajpoúčavejšom\nnajpoúčavejšou\nnajpoučnejšej\nnajpoučnejší\nnajpoučnejšia\nnajpoučnejšie\nnajpoučnejšieho\nnajpoučnejšiemu\nnajpoučnejších\nnajpoučnejším\nnajpoučnejšími\nnajpoučnejšiu\nnajpoučnejšom\nnajpoučnejšou\nnajpoužívateľnejšej\nnajpoužívateľnejší\nnajpoužívateľnejšia\nnajpoužívateľnejšie\nnajpoužívateľnejšieho\nnajpoužívateľnejšiemu\nnajpoužívateľnejších\nnajpoužívateľnejším\nnajpoužívateľnejšími\nnajpoužívateľnejšiu\nnajpoužívateľnejšom\nnajpoužívateľnejšou\nnajpôvabnejšej\nnajpôvabnejší\nnajpôvabnejšia\nnajpôvabnejšie\nnajpôvabnejšieho\nnajpôvabnejšiemu\nnajpôvabnejších\nnajpôvabnejším\nnajpôvabnejšími\nnajpôvabnejšiu\nnajpôvabnejšom\nnajpôvabnejšou\nnajpovážlivejšej\nnajpovážlivejší\nnajpovážlivejšia\nnajpovážlivejšie\nNajpovážlivejšie\nnajpovážlivejšieho\nnajpovážlivejšiemu\nnajpovážlivejších\nnajpovážlivejším\nnajpovážlivejšími\nnajpovážlivejšiu\nnajpovážlivejšom\nnajpovážlivejšou\nnajpovďačnejšej\nnajpovďačnejší\nnajpovďačnejšia\nnajpovďačnejšie\nnajpovďačnejšieho\nnajpovďačnejšiemu\nnajpovďačnejších\nnajpovďačnejším\nnajpovďačnejšími\nnajpovďačnejšiu\nnajpovďačnejšom\nnajpovďačnejšou\nnajpovedomejšej\nnajpovedomejší\nnajpovedomejšia\nnajpovedomejšie\nnajpovedomejšieho\nnajpovedomejšiemu\nnajpovedomejších\nnajpovedomejším\nnajpovedomejšími\nnajpovedomejšiu\nnajpovedomejšom\nnajpovedomejšou\nnajpoverčivejšej\nnajpoverčivejší\nnajpoverčivejšia\nnajpoverčivejšie\nnajpoverčivejšieho\nnajpoverčivejšiemu\nnajpoverčivejších\nnajpoverčivejším\nnajpoverčivejšími\nnajpoverčivejšiu\nnajpoverčivejšom\nnajpoverčivejšou\nnajpôvodnejšie\nnajpôvodnejšom\nnajpôvodnejšou\nnajpovolanejšej\nnajpovolanejší\nnajpovolanejšia\nnajpovolanejšie\nnajpovolanejšieho\nnajpovolanejšiemu\nnajpovolanejších\nnajpovolanejším\nnajpovolanejšími\nnajpovolanejšiu\nnajpovolanejšom\nnajpovolanejšou\nnajpovoľnejšej\nnajpovoľnejší\nnajpovoľnejšia\nnajpovoľnejšie\nnajpovoľnejšieho\nnajpovoľnejšiemu\nnajpovoľnejších\nnajpovoľnejším\nnajpovoľnejšími\nnajpovoľnejšiu\nnajpovoľnejšom\nnajpovoľnejšou\nnajpovrázkovitejšej\nnajpovrázkovitejší\nnajpovrázkovitejšia\nnajpovrázkovitejšie\nnajpovrázkovitejšieho\nnajpovrázkovitejšiemu\nnajpovrázkovitejších\nnajpovrázkovitejším\nnajpovrázkovitejšími\nnajpovrázkovitejšiu\nnajpovrázkovitejšom\nnajpovrázkovitejšou\nnajpovrazovitejšej\nnajpovrazovitejší\nnajpovrazovitejšia\nnajpovrazovitejšie\nnajpovrazovitejšieho\nnajpovrazovitejšiemu\nnajpovrazovitejších\nnajpovrazovitejším\nnajpovrazovitejšími\nnajpovrazovitejšiu\nnajpovrazovitejšom\nnajpovrazovitejšou\nnajpovrchnejšej\nnajpovrchnejší\nnajpovrchnejšia\nnajpovrchnejšie\nnajpovrchnejšieho\nnajpovrchnejšiemu\nnajpovrchnejších\nnajpovrchnejším\nnajpovrchnejšími\nnajpovrchnejšiu\nnajpovrchnejšom\nnajpovrchnejšou\nnajpovýšeneckejšej\nnajpovýšeneckejší\nnajpovýšeneckejšia\nnajpovýšeneckejšie\nnajpovýšeneckejšieho\nnajpovýšeneckejšiemu\nnajpovýšeneckejších\nnajpovýšeneckejším\nnajpovýšeneckejšími\nnajpovýšeneckejšiu\nnajpovýšeneckejšom\nnajpovýšeneckejšou\nnajpovýšenejšej\nnajpovýšenejší\nnajpovýšenejšia\nnajpovýšenejšie\nnajpovýšenejšieho\nnajpovýšenejšiemu\nnajpovýšenejších\nnajpovýšenejším\nnajpovýšenejšími\nnajpovýšenejšiu\nnajpovýšenejšom\nnajpovýšenejšou\nnajpovzbudivejšej\nnajpovzbudivejší\nnajpovzbudivejšia\nnajpovzbudivejšie\nnajpovzbudivejšieho\nnajpovzbudivejšiemu\nnajpovzbudivejších\nnajpovzbudivejším\nNajpovzbudivejším\nnajpovzbudivejšími\nnajpovzbudivejšiu\nnajpovzbudivejšom\nnajpovzbudivejšou\nnajpovzbudzujúcejšej\nnajpovzbudzujúcejší\nnajpovzbudzujúcejšia\nnajpovzbudzujúcejšie\nnajpovzbudzujúcejšieho\nnajpovzbudzujúcejšiemu\nnajpovzbudzujúcejších\nnajpovzbudzujúcejším\nnajpovzbudzujúcejšími\nnajpovzbudzujúcejšiu\nnajpovzbudzujúcejšom\nnajpovzbudzujúcejšou\nnajpovznášajúcejšej\nnajpovznášajúcejší\nnajpovznášajúcejšia\nnajpovznášajúcejšie\nnajpovznášajúcejšieho\nnajpovznášajúcejšiemu\nnajpovznášajúcejších\nnajpovznášajúcejším\nnajpovznášajúcejšími\nnajpovznášajúcejšiu\nnajpovznášajúcejšom\nnajpovznášajúcejšou\nnajpovznesenejšej\nnajpovznesenejší\nnajpovznesenejšia\nnajpovznesenejšie\nnajpovznesenejšieho\nnajpovznesenejšiemu\nnajpovznesenejších\nnajpovznesenejším\nnajpovznesenejšími\nnajpovznesenejšiu\nnajpovznesenejšom\nnajpovznesenejšou\nnajpozdnejšej\nnajpozdnejší\nnajpozdnejšia\nnajpozdnejšie\nnajpozdnejšieho\nnajpozdnejšiemu\nnajpozdnejších\nnajpozdnejším\nnajpozdnejšími\nnajpozdnejšiu\nnajpozdnejšom\nnajpozdnejšou\nnajpozemskejšej\nnajpozemskejší\nnajpozemskejšia\nnajpozemskejšie\nnajpozemskejšieho\nnajpozemskejšiemu\nnajpozemskejších\nnajpozemskejším\nnajpozemskejšími\nnajpozemskejšiu\nnajpozemskejšom\nnajpozemskejšou\nnajpozérskejšej\nnajpozérskejší\nnajpozérskejšia\nnajpozérskejšie\nnajpozérskejšieho\nnajpozérskejšiemu\nnajpozérskejších\nnajpozérskejším\nnajpozérskejšími\nnajpozérskejšiu\nnajpozérskejšom\nnajpozérskejšou\nnajpozitivistickejšej\nnajpozitivistickejší\nnajpozitivistickejšia\nnajpozitivistickejšie\nnajpozitivistickejšieho\nnajpozitivistickejšiemu\nnajpozitivistickejších\nnajpozitivistickejším\nnajpozitivistickejšími\nnajpozitivistickejšiu\nnajpozitivistickejšom\nnajpozitivistickejšou\nnajpozitívnejšej\nnajpozitívnejší\nnajpozitívnejšia\nnajpozitívnejšie\nnajpozitívnejšieho\nnajpozitívnejšiemu\nnajpozitívnejších\nnajpozitívnejším\nnajpozitívnejšími\nnajpozitívnejšiu\nnajpozitívnejšom\nnajpozitívnejšou\nnajpoznateľnejšej\nnajpoznateľnejší\nnajpoznateľnejšia\nnajpoznateľnejšie\nnajpoznateľnejšieho\nnajpoznateľnejšiemu\nnajpoznateľnejších\nnajpoznateľnejším\nnajpoznateľnejšími\nnajpoznateľnejšiu\nnajpoznateľnejšom\nnajpoznateľnejšou\nnajpozornejšej\nnajpozornejší\nnajpozornejšia\nnajpozornejšie\nnajpozornejšieho\nnajpozornejšiemu\nnajpozornejších\nnajpozornejším\nNajpozornejším\nnajpozornejšími\nnajpozornejšiu\nnajpozornejšom\nnajpozornejšou\nnajpozorovateľnejšej\nnajpozorovateľnejší\nnajpozorovateľnejšia\nnajpozorovateľnejšie\nnajpozorovateľnejšieho\nnajpozorovateľnejšiemu\nnajpozorovateľnejších\nnajpozorovateľnejším\nnajpozorovateľnejšími\nnajpozorovateľnejšiu\nnajpozorovateľnejšom\nnajpozorovateľnejšou\nnajpozoruhodnejšej\nnajpozoruhodnejší\nnajpozoruhodnejšia\nnajpozoruhodnejšie\nnajpozoruhodnejšieho\nnajpozoruhodnejšiemu\nnajpozoruhodnejších\nnajpozoruhodnejším\nnajpozoruhodnejšími\nnajpozoruhodnejšiu\nnajpozoruhodnejšom\nnajpozoruhodnejšou\nNajpozoruhodnejšou\nnajpozvoľnejšej\nnajpozvoľnejší\nnajpozvoľnejšia\nnajpozvoľnejšie\nnajpozvoľnejšieho\nnajpozvoľnejšiemu\nnajpozvoľnejších\nnajpozvoľnejším\nnajpozvoľnejšími\nnajpozvoľnejšiu\nnajpozvoľnejšom\nnajpozvoľnejšou\nnajpožadovačnejšej\nnajpožadovačnejší\nnajpožadovačnejšia\nnajpožadovačnejšie\nnajpožadovačnejšieho\nnajpožadovačnejšiemu\nnajpožadovačnejších\nnajpožadovačnejším\nnajpožadovačnejšími\nnajpožadovačnejšiu\nnajpožadovačnejšom\nnajpožadovačnejšou\nnajpožívačnejšej\nnajpožívačnejší\nnajpožívačnejšia\nnajpožívačnejšie\nnajpožívačnejšieho\nnajpožívačnejšiemu\nnajpožívačnejších\nnajpožívačnejším\nnajpožívačnejšími\nnajpožívačnejšiu\nnajpožívačnejšom\nnajpožívačnejšou\nnajpožívateľnejšej\nnajpožívateľnejší\nnajpožívateľnejšia\nnajpožívateľnejšie\nnajpožívateľnejšieho\nnajpožívateľnejšiemu\nnajpožívateľnejších\nnajpožívateľnejším\nnajpožívateľnejšími\nnajpožívateľnejšiu\nnajpožívateľnejšom\nnajpožívateľnejšou\nnajprácnejšej\nnajprácnejší\nnajprácnejšia\nnajprácnejšie\nnajprácnejšieho\nnajprácnejšiemu\nnajprácnejších\nnajprácnejším\nnajprácnejšími\nnajprácnejšiu\nnajprácnejšom\nnajprácnejšou\nnajpracovitejšej\nnajpracovitejší\nnajpracovitejšia\nnajpracovitejšie\nnajpracovitejšieho\nnajpracovitejšiemu\nnajpracovitejších\nnajpracovitejším\nnajpracovitejšími\nnajpracovitejšiu\nnajpracovitejšom\nnajpracovitejšou\nnajpragmatickejšej\nnajpragmatickejší\nnajpragmatickejšia\nnajpragmatickejšie\nnajpragmatickejšieho\nnajpragmatickejšiemu\nnajpragmatickejších\nnajpragmatickejším\nnajpragmatickejšími\nnajpragmatickejšiu\nnajpragmatickejšom\nnajpragmatickejšou\nnajpráchnivejšej\nnajpráchnivejší\nnajpráchnivejšia\nnajpráchnivejšie\nnajpráchnivejšieho\nnajpráchnivejšiemu\nnajpráchnivejších\nnajpráchnivejším\nnajpráchnivejšími\nnajpráchnivejšiu\nnajpráchnivejšom\nnajpráchnivejšou\nnajprachovitejšej\nnajprachovitejší\nnajprachovitejšia\nnajprachovitejšie\nnajprachovitejšieho\nnajprachovitejšiemu\nnajprachovitejších\nnajprachovitejším\nnajprachovitejšími\nnajprachovitejšiu\nnajprachovitejšom\nnajprachovitejšou\nnajprajnejšej\nnajprajnejší\nnajprajnejšia\nnajprajnejšie\nnajprajnejšieho\nnajprajnejšiemu\nnajprajnejších\nnajprajnejším\nnajprajnejšími\nnajprajnejšiu\nnajprajnejšom\nnajprajnejšou\nnajpraktickejšej\nnajpraktickejší\nnajpraktickejšia\nnajpraktickejšie\nnajpraktickejšieho\nnajpraktickejšiemu\nnajpraktickejších\nnajpraktickejším\nnajpraktickejšími\nnajpraktickejšiu\nnajpraktickejšom\nnajpraktickejšou\nnajpraobyčajnejšie\nnajprašivejšej\nnajprašivejší\nnajprašivejšia\nnajprašivejšie\nnajprašivejšieho\nnajprašivejšiemu\nnajprašivejších\nnajprašivejším\nnajprašivejšími\nnajprašivejšiu\nnajprašivejšom\nnajprašivejšou\nnajpráškovitejšej\nnajpráškovitejší\nnajpráškovitejšia\nnajpráškovitejšie\nnajpráškovitejšieho\nnajpráškovitejšiemu\nnajpráškovitejších\nnajpráškovitejším\nnajpráškovitejšími\nnajpráškovitejšiu\nnajpráškovitejšom\nnajpráškovitejšou\nnajprašnejšej\nnajprašnejší\nnajprašnejšia\nnajprašnejšie\nnajprašnejšieho\nnajprašnejšiemu\nnajprašnejších\nnajprašnejším\nnajprašnejšími\nnajprašnejšiu\nnajprašnejšom\nnajprašnejšou\nnajpravdepodobnejšej\nnajpravdepodobnejší\nnajpravdepodobnejšia\nnajpravdepodobnejšie\nnajpravdepodobnejšieho\nnajpravdepodobnejšiemu\nnajpravdepodobnejších\nnajpravdepodobnejším\nnajpravdepodobnejšími\nnajpravdepodobnejšiu\nnajpravdepodobnejšom\nnajpravdepodobnejšou\nNajpravdepodobnejšou\nnajpravdovravnejšej\nnajpravdovravnejší\nnajpravdovravnejšia\nnajpravdovravnejšie\nnajpravdovravnejšieho\nnajpravdovravnejšiemu\nnajpravdovravnejších\nnajpravdovravnejším\nnajpravdovravnejšími\nnajpravdovravnejšiu\nnajpravdovravnejšom\nnajpravdovravnejšou\nnajpravdymilovnejšej\nnajpravdymilovnejší\nnajpravdymilovnejšia\nnajpravdymilovnejšie\nnajpravdymilovnejšieho\nnajpravdymilovnejšiemu\nnajpravdymilovnejších\nnajpravdymilovnejším\nnajpravdymilovnejšími\nnajpravdymilovnejšiu\nnajpravdymilovnejšom\nnajpravdymilovnejšou\nnajpravejšej\nnajpravejší\nnajpravejšia\nnajpravejšie\nnajpravejšieho\nnajpravejšiemu\nnajpravejších\nnajpravejším\nnajpravejšími\nnajpravejšiu\nnajpravejšom\nnajpravejšou\nnajpravicovejšej\nnajpravicovejší\nnajpravicovejšia\nnajpravicovejšie\nnajpravicovejšieho\nnajpravicovejšiemu\nnajpravicovejších\nnajpravicovejším\nnajpravicovejšími\nnajpravicovejšiu\nnajpravicovejšom\nnajpravicovejšou\nnajpravičiarskejšej\nnajpravičiarskejší\nnajpravičiarskejšia\nnajpravičiarskejšie\nnajpravičiarskejšieho\nnajpravičiarskejšiemu\nnajpravičiarskejších\nnajpravičiarskejším\nnajpravičiarskejšími\nnajpravičiarskejšiu\nnajpravičiarskejšom\nnajpravičiarskejšou\nnajpravidelnejšej\nnajpravidelnejší\nnajpravidelnejšia\nnajpravidelnejšie\nnajpravidelnejšieho\nnajpravidelnejšiemu\nnajpravidelnejších\nnajpravidelnejším\nnajpravidelnejšími\nNajpravidelnejšími\nnajpravidelnejšiu\nnajpravidelnejšom\nnajpravidelnejšou\nnajpravovernejší\nnajprázdnejšej\nnajprázdnejší\nnajprázdnejšia\nnajprázdnejšie\nnajprázdnejšieho\nnajprázdnejšiemu\nnajprázdnejších\nnajprázdnejším\nnajprázdnejšími\nnajprázdnejšiu\nnajprázdnejšom\nnajprázdnejšou\nnajprebitejšej\nnajprebitejší\nnajprebitejšia\nnajprebitejšie\nnajprebitejšieho\nnajprebitejšiemu\nnajprebitejších\nnajprebitejším\nnajprebitejšími\nnajprebitejšiu\nnajprebitejšom\nnajprebitejšou\nnajprecítenejšej\nnajprecítenejší\nnajprecítenejšia\nnajprecítenejšie\nnajprecítenejšieho\nnajprecítenejšiemu\nnajprecítenejších\nnajprecítenejším\nnajprecítenejšími\nnajprecítenejšiu\nnajprecítenejšom\nnajprecítenejšou\nnajprecitlivenejšej\nnajprecitlivenejší\nnajprecitlivenejšia\nnajprecitlivenejšie\nnajprecitlivenejšieho\nnajprecitlivenejšiemu\nnajprecitlivenejších\nnajprecitlivenejším\nnajprecitlivenejšími\nnajprecitlivenejšiu\nnajprecitlivenejšom\nnajprecitlivenejšou\nnajprecíznejšej\nnajprecíznejší\nnajprecíznejšia\nnajprecíznejšie\nnajprecíznejšieho\nnajprecíznejšiemu\nnajprecíznejších\nnajprecíznejším\nnajprecíznejšími\nnajprecíznejšiu\nnajprecíznejšom\nnajprecíznejšou\nnajpredajnejšej\nnajpredajnejší\nnajpredajnejšia\nnajpredajnejšie\nnajpredajnejšieho\nnajpredajnejšiemu\nnajpredajnejších\nnajpredajnejším\nnajpredajnejšími\nnajpredajnejšiu\nnajpredajnejšom\nnajpredajnejšou\nnajpredbežnejšej\nnajpredbežnejší\nnajpredbežnejšia\nnajpredbežnejšie\nnajpredbežnejšieho\nnajpredbežnejšiemu\nnajpredbežnejších\nnajpredbežnejším\nnajpredbežnejšími\nnajpredbežnejšiu\nnajpredbežnejšom\nnajpredbežnejšou\nnajprednejšej\nnajprednejší\nnajprednejšia\nnajprednejšie\nnajprednejšieho\nnajprednejšiemu\nnajprednejších\nnajprednejším\nnajprednejšími\nnajprednejšiu\nnajprednejšom\nnajprednejšou\nnajpredpojatejšej\nnajpredpojatejší\nnajpredpojatejšia\nnajpredpojatejšie\nnajpredpojatejšieho\nnajpredpojatejšiemu\nnajpredpojatejších\nnajpredpojatejším\nnajpredpojatejšími\nnajpredpojatejšiu\nnajpredpojatejšom\nnajpredpojatejšou\nnajpreduchovnenejšej\nnajpreduchovnenejší\nnajpreduchovnenejšia\nnajpreduchovnenejšie\nnajpreduchovnenejšieho\nnajpreduchovnenejšiemu\nnajpreduchovnenejších\nnajpreduchovnenejším\nnajpreduchovnenejšími\nnajpreduchovnenejšiu\nnajpreduchovnenejšom\nnajpreduchovnenejšou\nnajpredvídavejšej\nnajpredvídavejší\nnajpredvídavejšia\nnajpredvídavejšie\nnajpredvídavejšieho\nnajpredvídavejšiemu\nnajpredvídavejších\nnajpredvídavejším\nnajpredvídavejšími\nnajpredvídavejšiu\nnajpredvídavejšom\nnajpredvídavejšou\nnajprehľadnejšej\nnajprehľadnejší\nnajprehľadnejšia\nnajprehľadnejšie\nnajprehľadnejšieho\nnajprehľadnejšiemu\nnajprehľadnejších\nnajprehľadnejším\nnajprehľadnejšími\nnajprehľadnejšiu\nnajprehľadnejšom\nnajprehľadnejšou\nnajprehnanejšej\nnajprehnanejší\nnajprehnanejšia\nnajprehnanejšie\nnajprehnanejšieho\nnajprehnanejšiemu\nnajprehnanejších\nnajprehnanejším\nnajprehnanejšími\nnajprehnanejšiu\nnajprehnanejšom\nnajprehnanejšou\nnajprehnitejšej\nnajprehnitejší\nnajprehnitejšia\nnajprehnitejšie\nnajprehnitejšieho\nnajprehnitejšiemu\nnajprehnitejších\nnajprehnitejším\nnajprehnitejšími\nnajprehnitejšiu\nnajprehnitejšom\nnajprehnitejšou\nnajprekáravejšej\nnajprekáravejší\nnajprekáravejšia\nnajprekáravejšie\nnajprekáravejšieho\nnajprekáravejšiemu\nnajprekáravejších\nnajprekáravejším\nnajprekáravejšími\nnajprekáravejšiu\nnajprekáravejšom\nnajprekáravejšou\nnajprekvapenejšej\nnajprekvapenejší\nnajprekvapenejšia\nnajprekvapenejšieho\nnajprekvapenejšiemu\nnajprekvapenejších\nnajprekvapenejším\nnajprekvapenejšími\nnajprekvapenejšiu\nnajprekvapenejšom\nnajprekvapenejšou\nnajprekvapivejšej\nnajprekvapivejší\nnajprekvapivejšia\nnajprekvapivejšie\nNajprekvapivejšie\nnajprekvapivejšieho\nnajprekvapivejšiemu\nnajprekvapivejších\nnajprekvapivejším\nnajprekvapivejšími\nnajprekvapivejšiu\nnajprekvapivejšom\nnajprekvapivejšou\nnajprekvapujúcejšej\nnajprekvapujúcejší\nnajprekvapujúcejšia\nnajprekvapujúcejšie\nnajprekvapujúcejšieho\nnajprekvapujúcejšiemu\nnajprekvapujúcejších\nnajprekvapujúcejším\nnajprekvapujúcejšími\nnajprekvapujúcejšiu\nnajprekvapujúcejšom\nnajprekvapujúcejšou\nnajpreľaknutejšej\nnajpreľaknutejší\nnajpreľaknutejšia\nnajpreľaknutejšie\nnajpreľaknutejšieho\nnajpreľaknutejšiemu\nnajpreľaknutejších\nnajpreľaknutejším\nnajpreľaknutejšími\nnajpreľaknutejšiu\nnajpreľaknutejšom\nnajpreľaknutejšou\nnajprelietavejšej\nnajprelietavejší\nnajprelietavejšia\nnajprelietavejšie\nnajprelietavejšieho\nnajprelietavejšiemu\nnajprelietavejších\nnajprelietavejším\nnajprelietavejšími\nnajprelietavejšiu\nnajprelietavejšom\nnajprelietavejšou\nnajpremenlivejšej\nnajpremenlivejší\nnajpremenlivejšia\nnajpremenlivejšie\nnajpremenlivejšieho\nnajpremenlivejšiemu\nnajpremenlivejších\nnajpremenlivejším\nnajpremenlivejšími\nnajpremenlivejšiu\nnajpremenlivejšom\nnajpremenlivejšou\nnajpremokavejšej\nnajpremokavejší\nnajpremokavejšia\nnajpremokavejšie\nnajpremokavejšieho\nnajpremokavejšiemu\nnajpremokavejších\nnajpremokavejším\nnajpremokavejšími\nnajpremokavejšiu\nnajpremokavejšom\nnajpremokavejšou\nnajpremrštenejšej\nnajpremrštenejší\nnajpremrštenejšia\nnajpremrštenejšie\nnajpremrštenejšieho\nnajpremrštenejšiemu\nnajpremrštenejších\nnajpremrštenejším\nnajpremrštenejšími\nnajpremrštenejšiu\nnajpremrštenejšom\nnajpremrštenejšou\nnajpremyslenejšej\nnajpremyslenejší\nnajpremyslenejšia\nnajpremyslenejšie\nnajpremyslenejšieho\nnajpremyslenejšiemu\nnajpremyslenejších\nnajpremyslenejším\nnajpremyslenejšími\nnajpremyslenejšiu\nnajpremyslenejšom\nnajpremyslenejšou\nnajprenesenejšej\nnajprenesenejší\nnajprenesenejšia\nnajprenesenejšie\nnajprenesenejšieho\nnajprenesenejšiemu\nnajprenesenejších\nnajprenesenejším\nnajprenesenejšími\nnajprenesenejšiu\nnajprenesenejšom\nnajprenesenejšou\nnajprenikavejšej\nnajprenikavejší\nnajprenikavejšia\nnajprenikavejšie\nnajprenikavejšieho\nnajprenikavejšiemu\nnajprenikavejších\nnajprenikavejším\nnajprenikavejšími\nnajprenikavejšiu\nnajprenikavejšom\nnajprenikavejšou\nnajprepiatejšej\nnajprepiatejší\nnajprepiatejšia\nnajprepiatejšie\nnajprepiatejšieho\nnajprepiatejšiemu\nnajprepiatejších\nnajprepiatejším\nnajprepiatejšími\nnajprepiatejšiu\nnajprepiatejšom\nnajprepiatejšou\nnajprepitejšej\nnajprepitejší\nnajprepitejšia\nnajprepitejšie\nnajprepitejšieho\nnajprepitejšiemu\nnajprepitejších\nnajprepitejším\nnajprepitejšími\nnajprepitejšiu\nnajprepitejšom\nnajprepitejšou\nnajprepychovejšej\nnajprepychovejší\nnajprepychovejšia\nnajprepychovejšie\nnajprepychovejšieho\nnajprepychovejšiemu\nnajprepychovejších\nnajprepychovejším\nnajprepychovejšími\nnajprepychovejšiu\nnajprepychovejšom\nnajprepychovejšou\nnajprerušovanejšej\nnajprerušovanejší\nnajprerušovanejšia\nnajprerušovanejšie\nnajprerušovanejšieho\nnajprerušovanejšiemu\nnajprerušovanejších\nnajprerušovanejším\nnajprerušovanejšími\nnajprerušovanejšiu\nnajprerušovanejšom\nnajprerušovanejšou\nnajprerývanejšej\nnajprerývanejší\nnajprerývanejšia\nnajprerývanejšie\nnajprerývanejšieho\nnajprerývanejšiemu\nnajprerývanejších\nnajprerývanejším\nnajprerývanejšími\nnajprerývanejšiu\nnajprerývanejšom\nnajprerývanejšou\nnajpresnejšej\nnajpresnejší\nnajpresnejšia\nnajpresnejšieho\nnajpresnejšiemu\nnajpresnejších\nnajpresnejším\nnajpresnejšími\nnajpresnejšiu\nnajpresnejšom\nnajpresnejšou\nnajprestaviteľnejšej\nnajprestaviteľnejší\nnajprestaviteľnejšia\nnajprestaviteľnejšie\nnajprestaviteľnejšieho\nnajprestaviteľnejšiemu\nnajprestaviteľnejších\nnajprestaviteľnejším\nnajprestaviteľnejšími\nnajprestaviteľnejšiu\nnajprestaviteľnejšom\nnajprestaviteľnejšou\nnajprestížnejšej\nnajprestížnejší\nnajprestížnejšia\nnajprestížnejšie\nnajprestížnejšieho\nnajprestížnejšiemu\nnajprestížnejších\nnajprestížnejším\nnajprestížnejšími\nnajprestížnejšiu\nnajprestížnejšom\nnajprestížnejšou\nnajpresvedčenejšej\nnajpresvedčenejší\nnajpresvedčenejšia\nnajpresvedčenejšie\nnajpresvedčenejšieho\nnajpresvedčenejšiemu\nnajpresvedčenejších\nnajpresvedčenejším\nnajpresvedčenejšími\nnajpresvedčenejšiu\nnajpresvedčenejšom\nnajpresvedčenejšou\nnajpresvedčivejšej\nnajpresvedčivejší\nnajpresvedčivejšia\nnajpresvedčivejšie\nnajpresvedčivejšieho\nnajpresvedčivejšiemu\nnajpresvedčivejších\nnajpresvedčivejším\nnajpresvedčivejšími\nnajpresvedčivejšiu\nnajpresvedčivejšom\nnajpresvedčivejšou\nnajprešibanejšej\nnajprešibanejší\nnajprešibanejšia\nnajprešibanejšie\nnajprešibanejšieho\nnajprešibanejšiemu\nnajprešibanejších\nnajprešibanejším\nnajprešibanejšími\nnajprešibanejšiu\nnajprešibanejšom\nnajprešibanejšou\nnajpreťaženejšej\nnajpreťaženejší\nnajpreťaženejšia\nnajpreťaženejšie\nnajpreťaženejšieho\nnajpreťaženejšiemu\nnajpreťaženejších\nnajpreťaženejším\nnajpreťaženejšími\nnajpreťaženejšiu\nnajpreťaženejšom\nnajpreťaženejšou\nnajpretiahnutejšej\nnajpretiahnutejší\nnajpretiahnutejšia\nnajpretiahnutejšie\nnajpretiahnutejšieho\nnajpretiahnutejšiemu\nnajpretiahnutejších\nnajpretiahnutejším\nnajpretiahnutejšími\nnajpretiahnutejšiu\nnajpretiahnutejšom\nnajpretiahnutejšou\nnajpretučnenejšej\nnajpretučnenejší\nnajpretučnenejšia\nnajpretučnenejšie\nnajpretučnenejšieho\nnajpretučnenejšiemu\nnajpretučnenejších\nnajpretučnenejším\nnajpretučnenejšími\nnajpretučnenejšiu\nnajpretučnenejšom\nnajpretučnenejšou\nnajpreukázateľnejšej\nnajpreukázateľnejší\nnajpreukázateľnejšia\nnajpreukázateľnejšie\nnajpreukázateľnejšieho\nnajpreukázateľnejšiemu\nnajpreukázateľnejších\nnajpreukázateľnejším\nnajpreukázateľnejšími\nnajpreukázateľnejšiu\nnajpreukázateľnejšom\nnajpreukázateľnejšou\nnajprevádzkyschopnejšej\nnajprevádzkyschopnejší\nnajprevádzkyschopnejšia\nnajprevádzkyschopnejšie\nnajprevádzkyschopnejšieho\nnajprevádzkyschopnejšiemu\nnajprevádzkyschopnejších\nnajprevádzkyschopnejším\nnajprevádzkyschopnejšími\nnajprevádzkyschopnejšiu\nnajprevádzkyschopnejšom\nnajprevádzkyschopnejšou\nnajprevažujúcejšej\nnajprevažujúcejší\nnajprevažujúcejšia\nnajprevažujúcejšie\nnajprevažujúcejšieho\nnajprevažujúcejšiemu\nnajprevažujúcejších\nnajprevažujúcejším\nnajprevažujúcejšími\nnajprevažujúcejšiu\nnajprevažujúcejšom\nnajprevažujúcejšou\nnajpreventívnejšej\nnajpreventívnejší\nnajpreventívnejšia\nnajpreventívnejšie\nnajpreventívnejšieho\nnajpreventívnejšiemu\nnajpreventívnejších\nnajpreventívnejším\nnajpreventívnejšími\nnajpreventívnejšiu\nnajpreventívnejšom\nnajpreventívnejšou\nnajpreviazanejšej\nnajpreviazanejší\nnajpreviazanejšia\nnajpreviazanejšie\nnajpreviazanejšieho\nnajpreviazanejšiemu\nnajpreviazanejších\nnajpreviazanejším\nnajpreviazanejšími\nnajpreviazanejšiu\nnajpreviazanejšom\nnajpreviazanejšou\nnajprevinilejšej\nnajprevinilejší\nnajprevinilejšia\nnajprevinilejšie\nnajprevinilejšieho\nnajprevinilejšiemu\nnajprevinilejších\nnajprevinilejším\nnajprevinilejšími\nnajprevinilejšiu\nnajprevinilejšom\nnajprevinilejšou\nnajprevratnejšej\nnajprevratnejší\nnajprevratnejšia\nnajprevratnejšie\nNajprevratnejšie\nnajprevratnejšieho\nnajprevratnejšiemu\nnajprevratnejších\nnajprevratnejším\nnajprevratnejšími\nnajprevratnejšiu\nnajprevratnejšom\nnajprevratnejšou\nnajprezieravejšej\nnajprezieravejší\nnajprezieravejšia\nnajprezieravejšie\nnajprezieravejšieho\nnajprezieravejšiemu\nnajprezieravejších\nnajprezieravejším\nnajprezieravejšími\nnajprezieravejšiu\nnajprezieravejšom\nnajprezieravejšou\nnajprežitejšej\nnajprežitejší\nnajprežitejšia\nnajprežitejšie\nnajprežitejšieho\nnajprežitejšiemu\nnajprežitejších\nnajprežitejším\nnajprežitejšími\nnajprežitejšiu\nnajprežitejšom\nnajprežitejšou\nnajpŕhlivejšej\nnajpŕhlivejší\nnajpŕhlivejšia\nnajpŕhlivejšie\nnajpŕhlivejšieho\nnajpŕhlivejšiemu\nnajpŕhlivejších\nnajpŕhlivejším\nnajpŕhlivejšími\nnajpŕhlivejšiu\nnajpŕhlivejšom\nnajpŕhlivejšou\nnajprchavejšej\nnajprchavejší\nnajprchavejšia\nnajprchavejšie\nnajprchavejšieho\nnajprchavejšiemu\nnajprchavejších\nnajprchavejším\nnajprchavejšími\nnajprchavejšiu\nnajprchavejšom\nnajprchavejšou\nnajprchkejšej\nnajprchkejší\nnajprchkejšia\nnajprchkejšie\nnajprchkejšieho\nnajprchkejšiemu\nnajprchkejších\nnajprchkejším\nnajprchkejšími\nnajprchkejšiu\nnajprchkejšom\nnajprchkejšou\nnajpriamejšej\nnajpriamejší\nnajpriamejšia\nnajpriamejšie\nnajpriamejšieho\nnajpriamejšiemu\nnajpriamejších\nnajpriamejším\nNajpriamejším\nnajpriamejšími\nnajpriamejšiu\nnajpriamejšom\nnajpriamejšou\nNajpriamejšou\nnajpriamočiarejšej\nnajpriamočiarejší\nnajpriamočiarejšia\nnajpriamočiarejšie\nnajpriamočiarejšieho\nnajpriamočiarejšiemu\nnajpriamočiarejších\nnajpriamočiarejším\nnajpriamočiarejšími\nnajpriamočiarejšiu\nnajpriamočiarejšom\nnajpriamočiarejšou\nnajpriateľskejšej\nnajpriateľskejší\nnajpriateľskejšia\nnajpriateľskejšie\nnajpriateľskejšieho\nnajpriateľskejšiemu\nnajpriateľskejších\nnajpriateľskejším\nnajpriateľskejšími\nnajpriateľskejšiu\nnajpriateľskejšom\nnajpriateľskejšou\nnajpriaznivejšej\nnajpriaznivejší\nnajpriaznivejšia\nnajpriaznivejšie\nnajpriaznivejšieho\nnajpriaznivejšiemu\nnajpriaznivejších\nnajpriaznivejším\nnajpriaznivejšími\nnajpriaznivejšiu\nnajpriaznivejšom\nnajpriaznivejšou\nnajpribližnejšej\nnajpribližnejší\nnajpribližnejšia\nnajpribližnejšieho\nnajpribližnejšiemu\nnajpribližnejších\nnajpribližnejším\nnajpribližnejšími\nnajpribližnejšiu\nnajpribližnejšom\nnajpribližnejšou\nnajpríbuznejšej\nnajpríbuznejší\nnajpríbuznejšia\nnajpríbuznejšie\nnajpríbuznejšieho\nnajpríbuznejšiemu\nnajpríbuznejších\nnajpríbuznejším\nnajpríbuznejšími\nnajpríbuznejšiu\nnajpríbuznejšom\nnajpríbuznejšou\nnajpríčinlivejšej\nnajpríčinlivejší\nnajpríčinlivejšia\nnajpríčinlivejšie\nnajpríčinlivejšieho\nnajpríčinlivejšiemu\nnajpríčinlivejších\nnajpríčinlivejším\nnajpríčinlivejšími\nnajpríčinlivejšiu\nnajpríčinlivejšom\nnajpríčinlivejšou\nnajpridusenejšej\nnajpridusenejší\nnajpridusenejšia\nnajpridusenejšie\nnajpridusenejšieho\nnajpridusenejšiemu\nnajpridusenejších\nnajpridusenejším\nnajpridusenejšími\nnajpridusenejšiu\nnajpridusenejšom\nnajpridusenejšou\nnajprieberčivejšej\nnajprieberčivejší\nnajprieberčivejšia\nnajprieberčivejšie\nnajprieberčivejšieho\nnajprieberčivejšiemu\nnajprieberčivejších\nnajprieberčivejším\nnajprieberčivejšími\nnajprieberčivejšiu\nnajprieberčivejšom\nnajprieberčivejšou\nnajpriebežnejšej\nnajpriebežnejší\nnajpriebežnejšia\nnajpriebežnejšie\nnajpriebežnejšieho\nnajpriebežnejšiemu\nnajpriebežnejších\nnajpriebežnejším\nnajpriebežnejšími\nnajpriebežnejšiu\nnajpriebežnejšom\nnajpriebežnejšou\nnajpriebojnejšej\nnajpriebojnejší\nnajpriebojnejšia\nnajpriebojnejšie\nnajpriebojnejšieho\nnajpriebojnejšiemu\nnajpriebojnejších\nnajpriebojnejším\nnajpriebojnejšími\nnajpriebojnejšiu\nnajpriebojnejšom\nnajpriebojnejšou\nnajpriečnejšej\nnajpriečnejší\nnajpriečnejšia\nnajpriečnejšie\nnajpriečnejšieho\nnajpriečnejšiemu\nnajpriečnejších\nnajpriečnejším\nnajpriečnejšími\nnajpriečnejšiu\nnajpriečnejšom\nnajpriečnejšou\nnajpriedušnejšej\nnajpriedušnejší\nnajpriedušnejšia\nnajpriedušnejšie\nnajpriedušnejšieho\nnajpriedušnejšiemu\nnajpriedušnejších\nnajpriedušnejším\nnajpriedušnejšími\nnajpriedušnejšiu\nnajpriedušnejšom\nnajpriedušnejšou\nnajpriehľadnejšej\nnajpriehľadnejší\nnajpriehľadnejšia\nnajpriehľadnejšie\nnajpriehľadnejšieho\nnajpriehľadnejšiemu\nnajpriehľadnejších\nnajpriehľadnejším\nnajpriehľadnejšími\nnajpriehľadnejšiu\nnajpriehľadnejšom\nnajpriehľadnejšou\nnajpriechodnejšej\nnajpriechodnejší\nnajpriechodnejšia\nnajpriechodnejšie\nnajpriechodnejšieho\nnajpriechodnejšiemu\nnajpriechodnejších\nnajpriechodnejším\nnajpriechodnejšími\nnajpriechodnejšiu\nnajpriechodnejšom\nnajpriechodnejšou\nnajpriekopníckejšej\nnajpriekopníckejší\nnajpriekopníckejšia\nnajpriekopníckejšie\nnajpriekopníckejšieho\nnajpriekopníckejšiemu\nnajpriekopníckejších\nnajpriekopníckejším\nnajpriekopníckejšími\nnajpriekopníckejšiu\nnajpriekopníckejšom\nnajpriekopníckejšou\nnajpriemernejšej\nnajpriemernejší\nnajpriemernejšia\nnajpriemernejšie\nnajpriemernejšieho\nnajpriemernejšiemu\nnajpriemernejších\nnajpriemernejším\nnajpriemernejšími\nnajpriemernejšiu\nnajpriemernejšom\nnajpriemernejšou\nnajpriemyselnejšej\nnajpriemyselnejší\nnajpriemyselnejšia\nnajpriemyselnejšie\nnajpriemyselnejšieho\nnajpriemyselnejšiemu\nnajpriemyselnejších\nnajpriemyselnejším\nnajpriemyselnejšími\nnajpriemyselnejšiu\nnajpriemyselnejšom\nnajpriemyselnejšou\nnajpriepustnejšej\nnajpriepustnejší\nnajpriepustnejšia\nnajpriepustnejšie\nnajpriepustnejšieho\nnajpriepustnejšiemu\nnajpriepustnejších\nnajpriepustnejším\nnajpriepustnejšími\nnajpriepustnejšiu\nnajpriepustnejšom\nnajpriepustnejšou\nnajpriestorovejšie\nnajpriestrannejšej\nnajpriestrannejší\nnajpriestrannejšia\nnajpriestrannejšie\nnajpriestrannejšieho\nnajpriestrannejšiemu\nnajpriestrannejších\nnajpriestrannejším\nnajpriestrannejšími\nnajpriestrannejšiu\nnajpriestrannejšom\nnajpriestrannejšou\nnajpriesvitnejšej\nnajpriesvitnejší\nnajpriesvitnejšia\nnajpriesvitnejšie\nnajpriesvitnejšieho\nnajpriesvitnejšiemu\nnajpriesvitnejších\nnajpriesvitnejším\nnajpriesvitnejšími\nnajpriesvitnejšiu\nnajpriesvitnejšom\nnajpriesvitnejšou\nnajpriezračnejšej\nnajpriezračnejší\nnajpriezračnejšia\nnajpriezračnejšie\nnajpriezračnejšieho\nnajpriezračnejšiemu\nnajpriezračnejších\nnajpriezračnejším\nnajpriezračnejšími\nnajpriezračnejšiu\nnajpriezračnejšom\nnajpriezračnejšou\nnajpríhodnejšej\nnajpríhodnejší\nnajpríhodnejšia\nnajpríhodnejšie\nnajpríhodnejšieho\nnajpríhodnejšiemu\nnajpríhodnejších\nnajpríhodnejším\nnajpríhodnejšími\nnajpríhodnejšiu\nnajpríhodnejšom\nnajpríhodnejšou\nnajprijateľnejšej\nnajprijateľnejší\nnajprijateľnejšia\nnajprijateľnejšie\nnajprijateľnejšieho\nnajprijateľnejšiemu\nnajprijateľnejších\nnajprijateľnejším\nnajprijateľnejšími\nnajprijateľnejšiu\nnajprijateľnejšom\nnajprijateľnejšou\nnajpríkladnejšej\nnajpríkladnejší\nnajpríkladnejšia\nnajpríkladnejšie\nnajpríkladnejšieho\nnajpríkladnejšiemu\nnajpríkladnejších\nnajpríkladnejším\nnajpríkladnejšími\nnajpríkladnejšiu\nnajpríkladnejšom\nnajpríkladnejšou\nnajpríkrejšej\nnajpríkrejší\nnajpríkrejšia\nnajpríkrejšie\nnajpríkrejšieho\nnajpríkrejšiemu\nnajpríkrejších\nnajpríkrejším\nnajpríkrejšími\nnajpríkrejšiu\nnajpríkrejšom\nnajpríkrejšou\nnajpriliehavejšej\nnajpriliehavejší\nnajpriliehavejšia\nnajpriliehavejšie\nnajpriliehavejšieho\nnajpriliehavejšiemu\nnajpriliehavejších\nnajpriliehavejším\nnajpriliehavejšími\nnajpriliehavejšiu\nnajpriliehavejšom\nnajpriliehavejšou\nnajprimeranejšej\nnajprimeranejší\nnajprimeranejšia\nnajprimeranejšie\nnajprimeranejšieho\nnajprimeranejšiemu\nnajprimeranejších\nnajprimeranejším\nnajprimeranejšími\nnajprimeranejšiu\nnajprimeranejšom\nnajprimeranejšou\nnajprincipiálnejšej\nnajprincipiálnejší\nnajprincipiálnejšia\nnajprincipiálnejšie\nnajprincipiálnejšieho\nnajprincipiálnejšiemu\nnajprincipiálnejších\nnajprincipiálnejším\nnajprincipiálnejšími\nnajprincipiálnejšiu\nnajprincipiálnejšom\nnajprincipiálnejšou\nnajprioritnejšej\nnajprioritnejší\nnajprioritnejšia\nnajprioritnejšie\nnajprioritnejšieho\nnajprioritnejšiemu\nnajprioritnejších\nnajprioritnejším\nnajprioritnejšími\nnajprioritnejšiu\nnajprioritnejšom\nnajprioritnejšou\nnajpripravenejšej\nnajpripravenejší\nnajpripravenejšia\nnajpripravenejšie\nnajpripravenejšieho\nnajpripravenejšiemu\nnajpripravenejších\nnajpripravenejším\nnajpripravenejšími\nnajpripravenejšiu\nnajpripravenejšom\nnajpripravenejšou\nnajprípustnejšej\nnajprípustnejší\nnajprípustnejšia\nnajprípustnejšie\nnajprípustnejšieho\nnajprípustnejšiemu\nnajprípustnejších\nnajprípustnejším\nnajprípustnejšími\nnajprípustnejšiu\nnajprípustnejšom\nnajprípustnejšou\nnajprírodnejšej\nnajprírodnejší\nnajprírodnejšia\nnajprírodnejšie\nnajprírodnejšieho\nnajprírodnejšiemu\nnajprírodnejších\nnajprírodnejším\nnajprírodnejšími\nnajprírodnejšiu\nnajprírodnejšom\nnajprírodnejšou\nnajprirodzenejšej\nnajprirodzenejší\nnajprirodzenejšia\nnajprirodzenejšie\nnajprirodzenejšieho\nnajprirodzenejšiemu\nnajprirodzenejších\nnajprirodzenejším\nnajprirodzenejšími\nnajprirodzenejšiu\nnajprirodzenejšom\nnajprirodzenejšou\nnajprísažnejšej\nnajprísažnejší\nnajprísažnejšia\nnajprísažnejšie\nnajprísažnejšieho\nnajprísažnejšiemu\nnajprísažnejších\nnajprísažnejším\nnajprísažnejšími\nnajprísažnejšiu\nnajprísažnejšom\nnajprísažnejšou\nnajprísnej\nnajprístupnejšej\nnajprístupnejší\nnajprístupnejšia\nnajprístupnejšie\nnajprístupnejšieho\nnajprístupnejšiemu\nnajprístupnejších\nnajprístupnejším\nnajprístupnejšími\nnajprístupnejšiu\nnajprístupnejšom\nnajprístupnejšou\nnajpríšernejšej\nnajpríšernejší\nnajpríšernejšia\nnajpríšernejšie\nnajpríšernejšieho\nnajpríšernejšiemu\nnajpríšernejších\nnajpríšernejším\nnajpríšernejšími\nnajpríšernejšiu\nnajpríšernejšom\nnajpríšernejšou\nnajpriťažujúcejšej\nnajpriťažujúcejší\nnajpriťažujúcejšia\nnajpriťažujúcejšie\nnajpriťažujúcejšieho\nnajpriťažujúcejšiemu\nnajpriťažujúcejších\nnajpriťažujúcejším\nnajpriťažujúcejšími\nnajpriťažujúcejšiu\nnajpriťažujúcejšom\nnajpriťažujúcejšou\nnajprítulnejšej\nnajprítulnejší\nnajprítulnejšia\nnajprítulnejšie\nnajprítulnejšieho\nnajprítulnejšiemu\nnajprítulnejších\nnajprítulnejším\nnajprítulnejšími\nnajprítulnejšiu\nnajprítulnejšom\nnajprítulnejšou\nnajprívetivejšej\nnajprívetivejší\nnajprívetivejšia\nnajprívetivejšie\nnajprívetivejšieho\nnajprívetivejšiemu\nnajprívetivejších\nnajprívetivejším\nnajprívetivejšími\nnajprívetivejšiu\nnajprívetivejšom\nnajprívetivejšou\nnajprivilegovanejšej\nnajprivilegovanejší\nnajprivilegovanejšia\nnajprivilegovanejšie\nnajprivilegovanejšieho\nnajprivilegovanejšiemu\nnajprivilegovanejších\nnajprivilegovanejším\nnajprivilegovanejšími\nnajprivilegovanejšiu\nnajprivilegovanejšom\nnajprivilegovanejšou\nnajprízemnejšej\nnajprízemnejší\nnajprízemnejšia\nnajprízemnejšie\nnajprízemnejšieho\nnajprízemnejšiemu\nnajprízemnejších\nnajprízemnejším\nnajprízemnejšími\nnajprízemnejšiu\nnajprízemnejšom\nnajprízemnejšou\nnajpríznačnejšie\nnajpríznačnejším\nNajpríznačnejšou\nnajpríznakovejšie\nnajproblematickejšej\nnajproblematickejší\nnajproblematickejšia\nnajproblematickejšie\nnajproblematickejšieho\nnajproblematickejšiemu\nnajproblematickejších\nnajproblematickejším\nnajproblematickejšími\nnajproblematickejšiu\nnajproblematickejšom\nnajproblematickejšou\nnajprocedurálnejšie\nnajprodemokratickejšej\nnajprodemokratickejší\nnajprodemokratickejšia\nnajprodemokratickejšie\nnajprodemokratickejšieho\nnajprodemokratickejšiemu\nnajprodemokratickejších\nnajprodemokratickejším\nnajprodemokratickejšími\nnajprodemokratickejšiu\nnajprodemokratickejšom\nnajprodemokratickejšou\nnajproduktívnejšej\nnajproduktívnejší\nnajproduktívnejšia\nnajproduktívnejšie\nnajproduktívnejšieho\nnajproduktívnejšiemu\nnajproduktívnejších\nnajproduktívnejším\nnajproduktívnejšími\nnajproduktívnejšiu\nnajproduktívnejšom\nnajproduktívnejšou\nnajprofánnejšej\nnajprofánnejší\nnajprofánnejšia\nnajprofánnejšie\nnajprofánnejšieho\nnajprofánnejšiemu\nnajprofánnejších\nnajprofánnejším\nnajprofánnejšími\nnajprofánnejšiu\nnajprofánnejšom\nnajprofánnejšou\nnajprofesionálnejšej\nnajprofesionálnejší\nnajprofesionálnejšia\nnajprofesionálnejšie\nnajprofesionálnejšieho\nnajprofesionálnejšiemu\nnajprofesionálnejších\nnajprofesionálnejším\nnajprofesionálnejšími\nnajprofesionálnejšiu\nnajprofesionálnejšom\nnajprofesionálnejšou\nnajprogramovejšie\nnajprogresívnejšej\nnajprogresívnejší\nnajprogresívnejšia\nnajprogresívnejšie\nnajprogresívnejšieho\nnajprogresívnejšiemu\nnajprogresívnejších\nnajprogresívnejším\nnajprogresívnejšími\nnajprogresívnejšiu\nnajprogresívnejšom\nnajprogresívnejšou\nnajproklamatívnejšie\nnajproletárskejšie\nnajprominentnejšej\nnajprominentnejší\nnajprominentnejšia\nnajprominentnejšie\nnajprominentnejšieho\nnajprominentnejšiemu\nnajprominentnejších\nnajprominentnejším\nnajprominentnejšími\nnajprominentnejšiu\nnajprominentnejšom\nnajprominentnejšou\nnajpromptnejšej\nnajpromptnejší\nnajpromptnejšia\nnajpromptnejšie\nnajpromptnejšieho\nnajpromptnejšiemu\nnajpromptnejších\nnajpromptnejším\nnajpromptnejšími\nnajpromptnejšiu\nnajpromptnejšom\nnajpromptnejšou\nnajpronárodnejšej\nnajpronárodnejší\nnajpronárodnejšia\nnajpronárodnejšie\nnajpronárodnejšieho\nnajpronárodnejšiemu\nnajpronárodnejších\nnajpronárodnejším\nnajpronárodnejšími\nnajpronárodnejšiu\nnajpronárodnejšom\nnajpronárodnejšou\nnajpropagandistickejšej\nnajpropagandistickejší\nnajpropagandistickejšia\nnajpropagandistickejšie\nnajpropagandistickejšieho\nnajpropagandistickejšiemu\nnajpropagandistickejších\nnajpropagandistickejším\nnajpropagandistickejšími\nnajpropagandistickejšiu\nnajpropagandistickejšom\nnajpropagandistickejšou\nnajpropagátorskejšej\nnajpropagátorskejší\nnajpropagátorskejšia\nnajpropagátorskejšie\nnajpropagátorskejšieho\nnajpropagátorskejšiemu\nnajpropagátorskejších\nnajpropagátorskejším\nnajpropagátorskejšími\nnajpropagátorskejšiu\nnajpropagátorskejšom\nnajpropagátorskejšou\nnajproporcionálnejšej\nnajproporcionálnejší\nnajproporcionálnejšia\nnajproporcionálnejšie\nnajproporcionálnejšieho\nnajproporcionálnejšiemu\nnajproporcionálnejších\nnajproporcionálnejším\nnajproporcionálnejšími\nnajproporcionálnejšiu\nnajproporcionálnejšom\nnajproporcionálnejšou\nnajproporčnejšej\nnajproporčnejší\nnajproporčnejšia\nnajproporčnejšie\nnajproporčnejšieho\nnajproporčnejšiemu\nnajproporčnejších\nnajproporčnejším\nnajproporčnejšími\nnajproporčnejšiu\nnajproporčnejšom\nnajproporčnejšou\nnajproreformnejšej\nnajproreformnejší\nnajproreformnejšia\nnajproreformnejšie\nnajproreformnejšieho\nnajproreformnejšiemu\nnajproreformnejších\nnajproreformnejším\nnajproreformnejšími\nnajproreformnejšiu\nnajproreformnejšom\nnajproreformnejšou\nnajprosebnejšej\nnajprosebnejší\nnajprosebnejšia\nnajprosebnejšie\nnajprosebnejšieho\nnajprosebnejšiemu\nnajprosebnejších\nnajprosebnejším\nnajprosebnejšími\nnajprosebnejšiu\nnajprosebnejšom\nnajprosebnejšou\nnajprospešnejšej\nnajprospešnejší\nnajprospešnejšia\nnajprospešnejšie\nnajprospešnejšieho\nnajprospešnejšiemu\nnajprospešnejších\nnajprospešnejším\nnajprospešnejšími\nnajprospešnejšiu\nnajprospešnejšom\nnajprospešnejšou\nnajprostejšej\nnajprostejší\nnajprostejšia\nnajprostejšie\nnajprostejšieho\nnajprostejšiemu\nnajprostejších\nnajprostejším\nnajprostejšími\nnajprostejšiu\nnajprostejšom\nnajprostejšou\nnajprostoduchejšej\nnajprostoduchejší\nnajprostoduchejšia\nnajprostoduchejšie\nnajprostoduchejšieho\nnajprostoduchejšiemu\nnajprostoduchejších\nnajprostoduchejším\nnajprostoduchejšími\nnajprostoduchejšiu\nnajprostoduchejšom\nnajprostoduchejšou\nnajprostoduchšej\nnajprostoduchší\nnajprostoduchšia\nnajprostoduchšie\nnajprostoduchšieho\nnajprostoduchšiemu\nnajprostoduchších\nnajprostoduchším\nnajprostoduchšími\nnajprostoduchšiu\nnajprostoduchšom\nnajprostoduchšou\nnajprostodušnejšie\nnajprostomyseľnejšej\nnajprostomyseľnejší\nnajprostomyseľnejšia\nnajprostomyseľnejšie\nnajprostomyseľnejšieho\nnajprostomyseľnejšiemu\nnajprostomyseľnejších\nnajprostomyseľnejším\nnajprostomyseľnejšími\nnajprostomyseľnejšiu\nnajprostomyseľnejšom\nnajprostomyseľnejšou\nnajprostorekejšej\nnajprostorekejší\nnajprostorekejšia\nnajprostorekejšie\nnajprostorekejšieho\nnajprostorekejšiemu\nnajprostorekejších\nnajprostorekejším\nnajprostorekejšími\nnajprostorekejšiu\nnajprostorekejšom\nnajprostorekejšou\nnajprotekcionistickejšej\nnajprotekcionistickejší\nnajprotekcionistickejšia\nnajprotekcionistickejšie\nnajprotekcionistickejšieho\nnajprotekcionistickejšiemu\nnajprotekcionistickejších\nnajprotekcionistickejším\nnajprotekcionistickejšími\nnajprotekcionistickejšiu\nnajprotekcionistickejšom\nnajprotekcionistickejšou\nnajprotichodnejšej\nnajprotichodnejší\nnajprotichodnejšia\nnajprotichodnejšie\nnajprotichodnejšieho\nnajprotichodnejšiemu\nnajprotichodnejších\nnajprotichodnejším\nnajprotichodnejšími\nnajprotichodnejšiu\nnajprotichodnejšom\nnajprotichodnejšou\nnajprotikladnejšie\nnajprotinárodnejšej\nnajprotinárodnejší\nnajprotinárodnejšia\nnajprotinárodnejšie\nnajprotinárodnejšieho\nnajprotinárodnejšiemu\nnajprotinárodnejších\nnajprotinárodnejším\nnajprotinárodnejšími\nnajprotinárodnejšiu\nnajprotinárodnejšom\nnajprotinárodnejšou\nnajprotiprávnejšej\nnajprotiprávnejší\nnajprotiprávnejšia\nnajprotiprávnejšie\nnajprotiprávnejšieho\nnajprotiprávnejšiemu\nnajprotiprávnejších\nnajprotiprávnejším\nnajprotiprávnejšími\nnajprotiprávnejšiu\nnajprotiprávnejšom\nnajprotiprávnejšou\nnajprotirečivejšej\nnajprotirečivejší\nnajprotirečivejšia\nnajprotirečivejšie\nnajprotirečivejšieho\nnajprotirečivejšiemu\nnajprotirečivejších\nnajprotirečivejším\nnajprotirečivejšími\nnajprotirečivejšiu\nnajprotirečivejšom\nnajprotirečivejšou\nnajprotireformnejšej\nnajprotireformnejší\nnajprotireformnejšia\nnajprotireformnejšie\nnajprotireformnejšieho\nnajprotireformnejšiemu\nnajprotireformnejších\nnajprotireformnejším\nnajprotireformnejšími\nnajprotireformnejšiu\nnajprotireformnejšom\nnajprotireformnejšou\nnajprotislovenskejšie\nnajprotivnejšej\nnajprotivnejší\nnajprotivnejšia\nnajprotivnejšie\nnajprotivnejšieho\nnajprotivnejšiemu\nnajprotivnejších\nnajprotivnejším\nnajprotivnejšími\nnajprotivnejšiu\nnajprotivnejšom\nnajprotivnejšou\nnajprovizórnejšej\nnajprovizórnejší\nnajprovizórnejšia\nnajprovizórnejšie\nnajprovizórnejšieho\nnajprovizórnejšiemu\nnajprovizórnejších\nnajprovizórnejším\nnajprovizórnejšími\nnajprovizórnejšiu\nnajprovizórnejšom\nnajprovizórnejšou\nnajprovokačnejšej\nnajprovokačnejší\nnajprovokačnejšia\nnajprovokačnejšie\nnajprovokačnejšieho\nnajprovokačnejšiemu\nnajprovokačnejších\nnajprovokačnejším\nnajprovokačnejšími\nnajprovokačnejšiu\nnajprovokačnejšom\nnajprovokačnejšou\nnajprovokatívnejšej\nnajprovokatívnejší\nnajprovokatívnejšia\nnajprovokatívnejšie\nnajprovokatívnejšieho\nnajprovokatívnejšiemu\nnajprovokatívnejších\nnajprovokatívnejším\nnajprovokatívnejšími\nnajprovokatívnejšiu\nnajprovokatívnejšom\nnajprovokatívnejšou\nnajprozaickejšej\nnajprozaickejší\nnajprozaickejšia\nnajprozaickejšie\nnajprozaickejšieho\nnajprozaickejšiemu\nnajprozaickejších\nnajprozaickejším\nnajprozaickejšími\nnajprozaickejšiu\nnajprozaickejšom\nnajprozaickejšou\nnajprozápadnejšie\nnajprozreteľnejšej\nnajprozreteľnejší\nnajprozreteľnejšia\nnajprozreteľnejšie\nnajprozreteľnejšieho\nnajprozreteľnejšiemu\nnajprozreteľnejších\nnajprozreteľnejším\nnajprozreteľnejšími\nnajprozreteľnejšiu\nnajprozreteľnejšom\nnajprozreteľnejšou\nnajprplavejšej\nnajprplavejší\nnajprplavejšia\nnajprplavejšie\nnajprplavejšieho\nnajprplavejšiemu\nnajprplavejších\nnajprplavejším\nnajprplavejšími\nnajprplavejšiu\nnajprplavejšom\nnajprplavejšou\nnajprsnatejšej\nnajprsnatejší\nnajprsnatejšia\nnajprsnatejšie\nnajprsnatejšieho\nnajprsnatejšiemu\nnajprsnatejších\nnajprsnatejším\nnajprsnatejšími\nnajprsnatejšiu\nnajprsnatejšom\nnajprsnatejšou\nnajprudkejšej\nnajprudkejší\nnajprudkejšia\nnajprudkejšie\nnajprudkejšieho\nnajprudkejšiemu\nnajprudkejších\nnajprudkejším\nnajprudkejšími\nnajprudkejšiu\nnajprudkejšom\nnajprudkejšou\nnajprudšej\nnajprudší\nnajprudšia\nnajprudšie\nnajprudšieho\nnajprudšiemu\nnajprudších\nnajprudším\nnajprudšími\nnajprudšiu\nnajprudšom\nnajprudšou\nnajpruhovanejšej\nnajpruhovanejší\nnajpruhovanejšia\nnajpruhovanejšie\nnajpruhovanejšieho\nnajpruhovanejšiemu\nnajpruhovanejších\nnajpruhovanejším\nnajpruhovanejšími\nnajpruhovanejšiu\nnajpruhovanejšom\nnajpruhovanejšou\nnajprúžkovanejšej\nnajprúžkovanejší\nnajprúžkovanejšia\nnajprúžkovanejšie\nnajprúžkovanejšieho\nnajprúžkovanejšiemu\nnajprúžkovanejších\nnajprúžkovanejším\nnajprúžkovanejšími\nnajprúžkovanejšiu\nnajprúžkovanejšom\nnajprúžkovanejšou\nnajpružnejšej\nnajpružnejší\nnajpružnejšia\nnajpružnejšie\nnajpružnejšieho\nnajpružnejšiemu\nnajpružnejších\nnajpružnejším\nnajpružnejšími\nnajpružnejšiu\nnajpružnejšom\nnajpružnejšou\nnajprv\nnajprvoplánovejšej\nnajprvoplánovejší\nnajprvoplánovejšia\nnajprvoplánovejšie\nnajprvoplánovejšieho\nnajprvoplánovejšiemu\nnajprvoplánovejších\nnajprvoplánovejším\nnajprvoplánovejšími\nnajprvoplánovejšiu\nnajprvoplánovejšom\nnajprvoplánovejšou\nnajprvotriednejšej\nnajprvotriednejší\nnajprvotriednejšia\nnajprvotriednejšie\nnajprvotriednejšieho\nnajprvotriednejšiemu\nnajprvotriednejších\nnajprvotriednejším\nnajprvotriednejšími\nnajprvotriednejšiu\nnajprvotriednejšom\nnajprvotriednejšou\nnajpsovitejšej\nnajpsovitejší\nnajpsovitejšia\nnajpsovitejšie\nnajpsovitejšieho\nnajpsovitejšiemu\nnajpsovitejších\nnajpsovitejším\nnajpsovitejšími\nnajpsovitejšiu\nnajpsovitejšom\nnajpsovitejšou\nnajpsychoanalytickejšej\nnajpsychoanalytickejší\nnajpsychoanalytickejšia\nnajpsychoanalytickejšie\nnajpsychoanalytickejšieho\nnajpsychoanalytickejšiemu\nnajpsychoanalytickejších\nnajpsychoanalytickejším\nnajpsychoanalytickejšími\nnajpsychoanalytickejšiu\nnajpsychoanalytickejšom\nnajpsychoanalytickejšou\nnajpsychologickejšie\nnajpsychotropnejšie\nnajpupkatejšej\nnajpupkatejší\nnajpupkatejšia\nnajpupkatejšie\nnajpupkatejšieho\nnajpupkatejšiemu\nnajpupkatejších\nnajpupkatejším\nnajpupkatejšími\nnajpupkatejšiu\nnajpupkatejšom\nnajpupkatejšou\nnajpuritánskejšej\nnajpuritánskejší\nnajpuritánskejšia\nnajpuritánskejšie\nnajpuritánskejšieho\nnajpuritánskejšiemu\nnajpuritánskejších\nnajpuritánskejším\nnajpuritánskejšími\nnajpuritánskejšiu\nnajpuritánskejšom\nnajpuritánskejšou\nnajpustejšej\nnajpustejší\nnajpustejšia\nnajpustejšie\nnajpustejšieho\nnajpustejšiemu\nnajpustejších\nnajpustejším\nnajpustejšími\nnajpustejšiu\nnajpustejšom\nnajpustejšou\nnajpustošivejšej\nnajpustošivejší\nnajpustošivejšia\nnajpustošivejšie\nnajpustošivejšieho\nnajpustošivejšiemu\nnajpustošivejších\nnajpustošivejším\nnajpustošivejšími\nnajpustošivejšiu\nnajpustošivejšom\nnajpustošivejšou\nnajpútavejšej\nnajpútavejší\nnajpútavejšia\nnajpútavejšie\nnajpútavejšieho\nnajpútavejšiemu\nnajpútavejších\nnajpútavejším\nnajpútavejšími\nnajpútavejšiu\nnajpútavejšom\nnajpútavejšou\nnajpyskatejšej\nnajpyskatejší\nnajpyskatejšia\nnajpyskatejšie\nnajpyskatejšieho\nnajpyskatejšiemu\nnajpyskatejších\nnajpyskatejším\nnajpyskatejšími\nnajpyskatejšiu\nnajpyskatejšom\nnajpyskatejšou\nnajpyšnejšej\nnajpyšnejší\nnajpyšnejšia\nnajpyšnejšie\nnajpyšnejšieho\nnajpyšnejšiemu\nnajpyšnejších\nnajpyšnejším\nnajpyšnejšími\nnajpyšnejšiu\nnajpyšnejšom\nnajpyšnejšou\nnajracionalistickejšej\nnajracionalistickejší\nnajracionalistickejšia\nnajracionalistickejšie\nnajracionalistickejšieho\nnajracionalistickejšiemu\nnajracionalistickejších\nnajracionalistickejším\nnajracionalistickejšími\nnajracionalistickejšiu\nnajracionalistickejšom\nnajracionalistickejšou\nnajracionálnejšej\nnajracionálnejší\nnajracionálnejšia\nnajracionálnejšie\nnajracionálnejšieho\nnajracionálnejšiemu\nnajracionálnejších\nnajracionálnejším\nnajracionálnejšími\nnajracionálnejšiu\nnajracionálnejšom\nnajracionálnejšou\nnajradikálnejšej\nnajradikálnejší\nnajradikálnejšia\nnajradikálnejšie\nnajradikálnejšieho\nnajradikálnejšiemu\nnajradikálnejších\nnajradikálnejším\nnajradikálnejšími\nnajradikálnejšiu\nnajradikálnejšom\nnajradikálnejšou\nnajrádioaktívnejšej\nnajrádioaktívnejší\nnajrádioaktívnejšia\nnajrádioaktívnejšie\nnajrádioaktívnejšieho\nnajrádioaktívnejšiemu\nnajrádioaktívnejších\nnajrádioaktívnejším\nnajrádioaktívnejšími\nnajrádioaktívnejšiu\nnajrádioaktívnejšom\nnajrádioaktívnejšou\nnajradodajnejšej\nnajradodajnejší\nnajradodajnejšia\nnajradodajnejšie\nnajradodajnejšieho\nnajradodajnejšiemu\nnajradodajnejších\nnajradodajnejším\nnajradodajnejšími\nnajradodajnejšiu\nnajradodajnejšom\nnajradodajnejšou\nnajradostnejšej\nnajradostnejší\nnajradostnejšia\nnajradostnejšie\nnajradostnejšieho\nnajradostnejšiemu\nnajradostnejších\nnajradostnejším\nnajradostnejšími\nnajradostnejšiu\nnajradostnejšom\nnajradostnejšou\nnajradšej\nnajrafinovanejšej\nnajrafinovanejší\nnajrafinovanejšia\nnajrafinovanejšie\nnajrafinovanejšieho\nnajrafinovanejšiemu\nnajrafinovanejších\nnajrafinovanejším\nnajrafinovanejšími\nnajrafinovanejšiu\nnajrafinovanejšom\nnajrafinovanejšou\nnajranenejšej\nnajranenejší\nnajranenejšia\nnajranenejšie\nnajranenejšieho\nnajranenejšiemu\nnajranenejších\nnajranenejším\nnajranenejšími\nnajranenejšiu\nnajranenejšom\nnajranenejšou\nnajrannejšie\nnajrannejších\nnajrapavejšej\nnajrapavejší\nnajrapavejšia\nnajrapavejšie\nnajrapavejšieho\nnajrapavejšiemu\nnajrapavejších\nnajrapavejším\nnajrapavejšími\nnajrapavejšiu\nnajrapavejšom\nnajrapavejšou\nnajrapídnejšej\nnajrapídnejší\nnajrapídnejšia\nnajrapídnejšie\nnajrapídnejšieho\nnajrapídnejšiemu\nnajrapídnejších\nnajrapídnejším\nnajrapídnejšími\nnajrapídnejšiu\nnajrapídnejšom\nnajrapídnejšou\nnajrapotavejšej\nnajrapotavejší\nnajrapotavejšia\nnajrapotavejšie\nnajrapotavejšieho\nnajrapotavejšiemu\nnajrapotavejších\nnajrapotavejším\nnajrapotavejšími\nnajrapotavejšiu\nnajrapotavejšom\nnajrapotavejšou\nnajrapovejšej\nnajrapovejší\nnajrapovejšia\nnajrapovejšie\nnajrapovejšieho\nnajrapovejšiemu\nnajrapovejších\nnajrapovejším\nnajrapovejšími\nnajrapovejšiu\nnajrapovejšom\nnajrapovejšou\nnajrazantnejšej\nnajrazantnejší\nnajrazantnejšia\nnajrazantnejšie\nnajrazantnejšieho\nnajrazantnejšiemu\nnajrazantnejších\nnajrazantnejším\nnajrazantnejšími\nnajrazantnejšiu\nnajrazantnejšom\nnajrazantnejšou\nnajrázovitejšej\nnajrázovitejší\nnajrázovitejšia\nnajrázovitejšie\nnajrázovitejšieho\nnajrázovitejšiemu\nnajrázovitejších\nnajrázovitejším\nnajrázovitejšími\nnajrázovitejšiu\nnajrázovitejšom\nnajrázovitejšou\nnajreakčnejšie\nnajrealistickejšej\nnajrealistickejší\nnajrealistickejšia\nnajrealistickejšie\nnajrealistickejšieho\nnajrealistickejšiemu\nnajrealistickejších\nnajrealistickejším\nnajrealistickejšími\nnajrealistickejšiu\nnajrealistickejšom\nnajrealistickejšou\nnajreálnejšej\nnajreálnejší\nnajreálnejšia\nnajreálnejšie\nnajreálnejšieho\nnajreálnejšiemu\nnajreálnejších\nnajreálnejším\nNajreálnejším\nnajreálnejšími\nnajreálnejšiu\nnajreálnejšom\nnajreálnejšou\nnajrebrovitejšej\nnajrebrovitejší\nnajrebrovitejšia\nnajrebrovitejšie\nnajrebrovitejšieho\nnajrebrovitejšiemu\nnajrebrovitejších\nnajrebrovitejším\nnajrebrovitejšími\nnajrebrovitejšiu\nnajrebrovitejšom\nnajrebrovitejšou\nnajrecesijnejšej\nnajrecesijnejší\nnajrecesijnejšia\nnajrecesijnejšie\nnajrecesijnejšieho\nnajrecesijnejšiemu\nnajrecesijnejších\nnajrecesijnejším\nnajrecesijnejšími\nnajrecesijnejšiu\nnajrecesijnejšom\nnajrecesijnejšou\nnajredšej\nnajredší\nnajredšia\nnajredšie\nnajredšieho\nnajredšiemu\nnajredších\nnajredším\nnajredšími\nnajredšiu\nnajredšom\nnajredšou\nnajredukovateľnejšej\nnajredukovateľnejší\nnajredukovateľnejšia\nnajredukovateľnejšie\nnajredukovateľnejšieho\nnajredukovateľnejšiemu\nnajredukovateľnejších\nnajredukovateľnejším\nnajredukovateľnejšími\nnajredukovateľnejšiu\nnajredukovateľnejšom\nnajredukovateľnejšou\nnajredundantnejšej\nnajredundantnejší\nnajredundantnejšia\nnajredundantnejšie\nnajredundantnejšieho\nnajredundantnejšiemu\nnajredundantnejších\nnajredundantnejším\nnajredundantnejšími\nnajredundantnejšiu\nnajredundantnejšom\nnajredundantnejšou\nnajreflexívnejšej\nnajreflexívnejší\nnajreflexívnejšia\nnajreflexívnejšie\nnajreflexívnejšieho\nnajreflexívnejšiemu\nnajreflexívnejších\nnajreflexívnejším\nnajreflexívnejšími\nnajreflexívnejšiu\nnajreflexívnejšom\nnajreflexívnejšou\nnajreformnejší\nnajreformnejšia\nnajreformnejšie\nnajreformnejších\nnajreformnejšiu\nnajreformnejšou\nnajrefrénovitejšej\nnajrefrénovitejší\nnajrefrénovitejšia\nnajrefrénovitejšie\nnajrefrénovitejšieho\nnajrefrénovitejšiemu\nnajrefrénovitejších\nnajrefrénovitejším\nnajrefrénovitejšími\nnajrefrénovitejšiu\nnajrefrénovitejšom\nnajrefrénovitejšou\nnajregresívnejšej\nnajregresívnejší\nnajregresívnejšia\nnajregresívnejšie\nnajregresívnejšieho\nnajregresívnejšiemu\nnajregresívnejších\nnajregresívnejším\nnajregresívnejšími\nnajregresívnejšiu\nnajregresívnejšom\nnajregresívnejšou\nnajregulárnejšej\nnajregulárnejší\nnajregulárnejšia\nnajregulárnejšie\nnajregulárnejšieho\nnajregulárnejšiemu\nnajregulárnejších\nnajregulárnejším\nnajregulárnejšími\nnajregulárnejšiu\nnajregulárnejšom\nnajregulárnejšou\nnajregulovanejších\nnajregulovanejším\nnajrelatívnejšej\nnajrelatívnejší\nnajrelatívnejšia\nnajrelatívnejšie\nnajrelatívnejšieho\nnajrelatívnejšiemu\nnajrelatívnejších\nnajrelatívnejším\nnajrelatívnejšími\nnajrelatívnejšiu\nnajrelatívnejšom\nnajrelatívnejšou\nnajrelevantnejšej\nnajrelevantnejší\nnajrelevantnejšia\nnajrelevantnejšie\nnajrelevantnejšieho\nnajrelevantnejšiemu\nnajrelevantnejších\nnajrelevantnejším\nnajrelevantnejšími\nnajrelevantnejšiu\nnajrelevantnejšom\nnajrelevantnejšou\nnajreligióznejšej\nnajreligióznejší\nnajreligióznejšia\nnajreligióznejšie\nnajreligióznejšieho\nnajreligióznejšiemu\nnajreligióznejších\nnajreligióznejším\nnajreligióznejšími\nnajreligióznejšiu\nnajreligióznejšom\nnajreligióznejšou\nnajrenomovanejšej\nnajrenomovanejší\nnajrenomovanejšia\nnajrenomovanejšie\nnajrenomovanejšieho\nnajrenomovanejšiemu\nnajrenomovanejších\nnajrenomovanejším\nnajrenomovanejšími\nnajrenomovanejšiu\nnajrenomovanejšom\nnajrenomovanejšou\nnajrentabilnejšej\nnajrentabilnejší\nnajrentabilnejšia\nnajrentabilnejšie\nnajrentabilnejšieho\nnajrentabilnejšiemu\nnajrentabilnejších\nnajrentabilnejším\nNajrentabilnejším\nnajrentabilnejšími\nnajrentabilnejšiu\nnajrentabilnejšom\nnajrentabilnejšou\nnajrepresívnejšej\nnajrepresívnejší\nnajrepresívnejšia\nnajrepresívnejšie\nnajrepresívnejšieho\nnajrepresívnejšiemu\nnajrepresívnejších\nnajrepresívnejším\nnajrepresívnejšími\nnajrepresívnejšiu\nnajrepresívnejšom\nnajrepresívnejšou\nnajreprezentačnejšie\nnajreprezentatívnejšej\nnajreprezentatívnejší\nnajreprezentatívnejšia\nnajreprezentatívnejšie\nnajreprezentatívnejšieho\nnajreprezentatívnejšiemu\nnajreprezentatívnejších\nnajreprezentatívnejším\nnajreprezentatívnejšími\nnajreprezentatívnejšiu\nnajreprezentatívnejšom\nnajreprezentatívnejšou\nnajreprodukovateľnejšej\nnajreprodukovateľnejší\nnajreprodukovateľnejšia\nnajreprodukovateľnejšie\nnajreprodukovateľnejšieho\nnajreprodukovateľnejšiemu\nnajreprodukovateľnejších\nnajreprodukovateľnejším\nnajreprodukovateľnejšími\nnajreprodukovateľnejšiu\nnajreprodukovateľnejšom\nnajreprodukovateľnejšou\nnajrepublikánskejšej\nnajrepublikánskejší\nnajrepublikánskejšia\nnajrepublikánskejšie\nnajrepublikánskejšieho\nnajrepublikánskejšiemu\nnajrepublikánskejších\nnajrepublikánskejším\nnajrepublikánskejšími\nnajrepublikánskejšiu\nnajrepublikánskejšom\nnajrepublikánskejšou\nnajreštriktívnejšej\nnajreštriktívnejší\nnajreštriktívnejšia\nnajreštriktívnejšie\nnajreštriktívnejšieho\nnajreštriktívnejšiemu\nnajreštriktívnejších\nnajreštriktívnejším\nnajreštriktívnejšími\nnajreštriktívnejšiu\nnajreštriktívnejšom\nnajreštriktívnejšou\nnajretardovanejšie\nnajreťazovitejšej\nnajreťazovitejší\nnajreťazovitejšia\nnajreťazovitejšie\nnajreťazovitejšieho\nnajreťazovitejšiemu\nnajreťazovitejších\nnajreťazovitejším\nnajreťazovitejšími\nnajreťazovitejšiu\nnajreťazovitejšom\nnajreťazovitejšou\nnajrétorickejšej\nnajrétorickejší\nnajrétorickejšia\nnajrétorickejšie\nnajrétorickejšieho\nnajrétorickejšiemu\nnajrétorickejších\nnajrétorickejším\nnajrétorickejšími\nnajrétorickejšiu\nnajrétorickejšom\nnajrétorickejšou\nnajretroaktívnejšie\nnajrevolučnejšej\nnajrevolučnejší\nnajrevolučnejšia\nnajrevolučnejšie\nnajrevolučnejšieho\nnajrevolučnejšiemu\nnajrevolučnejších\nnajrevolučnejším\nnajrevolučnejšími\nnajrevolučnejšiu\nnajrevolučnejšom\nnajrevolučnejšou\nnajrezervovanejšej\nnajrezervovanejší\nnajrezervovanejšia\nnajrezervovanejšie\nnajrezervovanejšieho\nnajrezervovanejšiemu\nnajrezervovanejších\nnajrezervovanejším\nnajrezervovanejšími\nnajrezervovanejšiu\nnajrezervovanejšom\nnajrezervovanejšou\nnajrezignovanejšej\nnajrezignovanejší\nnajrezignovanejšia\nnajrezignovanejšie\nnajrezignovanejšieho\nnajrezignovanejšiemu\nnajrezignovanejších\nnajrezignovanejším\nnajrezignovanejšími\nnajrezignovanejšiu\nnajrezignovanejšom\nnajrezignovanejšou\nnajrezkejšej\nnajrezkejší\nnajrezkejšia\nnajrezkejšie\nnajrezkejšieho\nnajrezkejšiemu\nnajrezkejších\nnajrezkejším\nnajrezkejšími\nnajrezkejšiu\nnajrezkejšom\nnajrezkejšou\nnajrezolútnejšej\nnajrezolútnejší\nnajrezolútnejšia\nnajrezolútnejšie\nnajrezolútnejšieho\nnajrezolútnejšiemu\nnajrezolútnejších\nnajrezolútnejším\nnajrezolútnejšími\nnajrezolútnejšiu\nnajrezolútnejšom\nnajrezolútnejšou\nnajriadnejšej\nnajriadnejší\nnajriadnejšia\nnajriadnejšie\nnajriadnejšieho\nnajriadnejšiemu\nnajriadnejších\nnajriadnejším\nnajriadnejšími\nnajriadnejšiu\nnajriadnejšom\nnajriadnejšou\nnajriedenejšej\nnajriedenejší\nnajriedenejšia\nnajriedenejšie\nnajriedenejšieho\nnajriedenejšiemu\nnajriedenejších\nnajriedenejším\nnajriedenejšími\nnajriedenejšiu\nnajriedenejšom\nnajriedenejšou\nnajriešiteľnejšej\nnajriešiteľnejší\nnajriešiteľnejšia\nnajriešiteľnejšie\nnajriešiteľnejšieho\nnajriešiteľnejšiemu\nnajriešiteľnejších\nnajriešiteľnejším\nnajriešiteľnejšími\nnajriešiteľnejšiu\nnajriešiteľnejšom\nnajriešiteľnejšou\nnajrigoróznejšej\nnajrigoróznejší\nnajrigoróznejšia\nnajrigoróznejšie\nnajrigoróznejšieho\nnajrigoróznejšiemu\nnajrigoróznejších\nnajrigoróznejším\nnajrigoróznejšími\nnajrigoróznejšiu\nnajrigoróznejšom\nnajrigoróznejšou\nnajrímskejšie\nnajriskantnejšej\nnajriskantnejší\nnajriskantnejšia\nnajriskantnejšie\nnajriskantnejšieho\nnajriskantnejšiemu\nnajriskantnejších\nnajriskantnejším\nnajriskantnejšími\nnajriskantnejšiu\nnajriskantnejšom\nnajriskantnejšou\nnajrizikovejšie\nnajrobustnejšej\nnajrobustnejší\nnajrobustnejšia\nnajrobustnejšie\nnajrobustnejšieho\nnajrobustnejšiemu\nnajrobustnejších\nnajrobustnejším\nnajrobustnejšími\nnajrobustnejšiu\nnajrobustnejšom\nnajrobustnejšou\nnajrockovejšej\nnajrockovejší\nnajrockovejšia\nnajrockovejšie\nnajrockovejšieho\nnajrockovejšiemu\nnajrockovejších\nnajrockovejším\nnajrockovejšími\nnajrockovejšiu\nnajrockovejšom\nnajrockovejšou\nnajrodinnejšie\nnajrohatejšej\nnajrohatejší\nnajrohatejšia\nnajrohatejšie\nnajrohatejšieho\nnajrohatejšiemu\nnajrohatejších\nnajrohatejším\nnajrohatejšími\nnajrohatejšiu\nnajrohatejšom\nnajrohatejšou\nnajrohovitejšej\nnajrohovitejší\nnajrohovitejšia\nnajrohovitejšie\nnajrohovitejšieho\nnajrohovitejšiemu\nnajrohovitejších\nnajrohovitejším\nnajrohovitejšími\nnajrohovitejšiu\nnajrohovitejšom\nnajrohovitejšou\nnajrojčivejšej\nnajrojčivejší\nnajrojčivejšia\nnajrojčivejšie\nnajrojčivejšieho\nnajrojčivejšiemu\nnajrojčivejších\nnajrojčivejším\nnajrojčivejšími\nnajrojčivejšiu\nnajrojčivejšom\nnajrojčivejšou\nnajrokovejšej\nnajrokovejší\nnajrokovejšia\nnajrokovejšie\nnajrokovejšieho\nnajrokovejšiemu\nnajrokovejších\nnajrokovejším\nnajrokovejšími\nnajrokovejšiu\nnajrokovejšom\nnajrokovejšou\nnajromanistickejšej\nnajromanistickejší\nnajromanistickejšia\nnajromanistickejšie\nnajromanistickejšieho\nnajromanistickejšiemu\nnajromanistickejších\nnajromanistickejším\nnajromanistickejšími\nnajromanistickejšiu\nnajromanistickejšom\nnajromanistickejšou\nnajrománskejšej\nnajrománskejší\nnajrománskejšia\nnajrománskejšie\nnajrománskejšieho\nnajrománskejšiemu\nnajrománskejších\nnajrománskejším\nnajrománskejšími\nnajrománskejšiu\nnajrománskejšom\nnajrománskejšou\nnajromantickejšej\nnajromantickejší\nnajromantickejšia\nnajromantickejšie\nnajromantickejšieho\nnajromantickejšiemu\nnajromantickejších\nnajromantickejším\nnajromantickejšími\nnajromantickejšiu\nnajromantickejšom\nnajromantickejšou\nnajrôsolovitejšej\nnajrôsolovitejší\nnajrôsolovitejšia\nnajrôsolovitejšie\nnajrôsolovitejšieho\nnajrôsolovitejšiemu\nnajrôsolovitejších\nnajrôsolovitejším\nnajrôsolovitejšími\nnajrôsolovitejšiu\nnajrôsolovitejšom\nnajrôsolovitejšou\nnajrovinatejšej\nnajrovinatejší\nnajrovinatejšia\nnajrovinatejšie\nnajrovinatejšieho\nnajrovinatejšiemu\nnajrovinatejších\nnajrovinatejším\nnajrovinatejšími\nnajrovinatejšiu\nnajrovinatejšom\nnajrovinatejšou\nnajrovnejšej\nnajrovnejší\nnajrovnejšia\nnajrovnejšie\nnajrovnejšieho\nnajrovnejšiemu\nnajrovnejších\nnajrovnejším\nnajrovnejšími\nnajrovnejšiu\nnajrovnejšom\nnajrovnejšou\nnajrovnocennejšej\nnajrovnocennejší\nnajrovnocennejšia\nnajrovnocennejšie\nnajrovnocennejšieho\nnajrovnocennejšiemu\nnajrovnocennejších\nnajrovnocennejším\nnajrovnocennejšími\nnajrovnocennejšiu\nnajrovnocennejšom\nnajrovnocennejšou\nnajrovnomernejšej\nnajrovnomernejší\nnajrovnomernejšia\nnajrovnomernejšie\nnajrovnomernejšieho\nnajrovnomernejšiemu\nnajrovnomernejších\nnajrovnomernejším\nnajrovnomernejšími\nnajrovnomernejšiu\nnajrovnomernejšom\nnajrovnomernejšou\nnajrovnoprávnejšej\nnajrovnoprávnejší\nnajrovnoprávnejšia\nnajrovnoprávnejšie\nnajrovnoprávnejšieho\nnajrovnoprávnejšiemu\nnajrovnoprávnejších\nnajrovnoprávnejším\nnajrovnoprávnejšími\nnajrovnoprávnejšiu\nnajrovnoprávnejšom\nnajrovnoprávnejšou\nnajrovnorodejšie\nnajrovnozvučnejšie\nnajrozbehanejšej\nnajrozbehanejší\nnajrozbehanejšia\nnajrozbehanejšie\nnajrozbehanejšieho\nnajrozbehanejšiemu\nnajrozbehanejších\nnajrozbehanejším\nnajrozbehanejšími\nnajrozbehanejšiu\nnajrozbehanejšom\nnajrozbehanejšou\nnajrozcítenejšej\nnajrozcítenejší\nnajrozcítenejšia\nnajrozcítenejšie\nnajrozcítenejšieho\nnajrozcítenejšiemu\nnajrozcítenejších\nnajrozcítenejším\nnajrozcítenejšími\nnajrozcítenejšiu\nnajrozcítenejšom\nnajrozcítenejšou\nnajrozcitlivenejšej\nnajrozcitlivenejší\nnajrozcitlivenejšia\nnajrozcitlivenejšie\nnajrozcitlivenejšieho\nnajrozcitlivenejšiemu\nnajrozcitlivenejších\nnajrozcitlivenejším\nnajrozcitlivenejšími\nnajrozcitlivenejšiu\nnajrozcitlivenejšom\nnajrozcitlivenejšou\nnajrozčarovanejšej\nnajrozčarovanejší\nnajrozčarovanejšia\nnajrozčarovanejšie\nnajrozčarovanejšieho\nnajrozčarovanejšiemu\nnajrozčarovanejších\nnajrozčarovanejším\nnajrozčarovanejšími\nnajrozčarovanejšiu\nnajrozčarovanejšom\nnajrozčarovanejšou\nnajrozčúlenejšej\nnajrozčúlenejší\nnajrozčúlenejšia\nnajrozčúlenejšie\nnajrozčúlenejšieho\nnajrozčúlenejšiemu\nnajrozčúlenejších\nnajrozčúlenejším\nnajrozčúlenejšími\nnajrozčúlenejšiu\nnajrozčúlenejšom\nnajrozčúlenejšou\nnajrozdielnejšej\nnajrozdielnejší\nnajrozdielnejšia\nnajrozdielnejšie\nnajrozdielnejšieho\nnajrozdielnejšiemu\nnajrozdielnejších\nnajrozdielnejším\nnajrozdielnejšími\nnajrozdielnejšiu\nnajrozdielnejšom\nnajrozdielnejšou\nnajrozgajdanejšej\nnajrozgajdanejší\nnajrozgajdanejšia\nnajrozgajdanejšie\nnajrozgajdanejšieho\nnajrozgajdanejšiemu\nnajrozgajdanejších\nnajrozgajdanejším\nnajrozgajdanejšími\nnajrozgajdanejšiu\nnajrozgajdanejšom\nnajrozgajdanejšou\nnajrozhadzovačnejšej\nnajrozhadzovačnejší\nnajrozhadzovačnejšia\nnajrozhadzovačnejšie\nnajrozhadzovačnejšieho\nnajrozhadzovačnejšiemu\nnajrozhadzovačnejších\nnajrozhadzovačnejším\nnajrozhadzovačnejšími\nnajrozhadzovačnejšiu\nnajrozhadzovačnejšom\nnajrozhadzovačnejšou\nnajrozháranejšej\nnajrozháranejší\nnajrozháranejšia\nnajrozháranejšie\nnajrozháranejšieho\nnajrozháranejšiemu\nnajrozháranejších\nnajrozháranejším\nnajrozháranejšími\nnajrozháranejšiu\nnajrozháranejšom\nnajrozháranejšou\nnajrozhľadenejšej\nnajrozhľadenejší\nnajrozhľadenejšia\nnajrozhľadenejšie\nnajrozhľadenejšieho\nnajrozhľadenejšiemu\nnajrozhľadenejších\nnajrozhľadenejším\nnajrozhľadenejšími\nnajrozhľadenejšiu\nnajrozhľadenejšom\nnajrozhľadenejšou\nnajrozhnevanejšej\nnajrozhnevanejší\nnajrozhnevanejšia\nnajrozhnevanejšie\nnajrozhnevanejšieho\nnajrozhnevanejšiemu\nnajrozhnevanejších\nnajrozhnevanejším\nnajrozhnevanejšími\nnajrozhnevanejšiu\nnajrozhnevanejšom\nnajrozhnevanejšou\nnajrozhodnejšej\nnajrozhodnejší\nnajrozhodnejšia\nnajrozhodnejšie\nnajrozhodnejšieho\nnajrozhodnejšiemu\nnajrozhodnejších\nnajrozhodnejším\nnajrozhodnejšími\nnajrozhodnejšiu\nnajrozhodnejšom\nnajrozhodnejšou\nnajrozhodujúcejšej\nnajrozhodujúcejší\nnajrozhodujúcejšia\nnajrozhodujúcejšie\nnajrozhodujúcejšieho\nnajrozhodujúcejšiemu\nnajrozhodujúcejších\nnajrozhodujúcejším\nnajrozhodujúcejšími\nnajrozhodujúcejšiu\nnajrozhodujúcejšom\nnajrozhodujúcejšou\nnajrozhorčenejšej\nnajrozhorčenejší\nnajrozhorčenejšia\nnajrozhorčenejšie\nnajrozhorčenejšieho\nnajrozhorčenejšiemu\nnajrozhorčenejších\nnajrozhorčenejším\nnajrozhorčenejšími\nnajrozhorčenejšiu\nnajrozhorčenejšom\nnajrozhorčenejšou\nnajrozihranejšej\nnajrozihranejší\nnajrozihranejšia\nnajrozihranejšie\nnajrozihranejšieho\nnajrozihranejšiemu\nnajrozihranejších\nnajrozihranejším\nnajrozihranejšími\nnajrozihranejšiu\nnajrozihranejšom\nnajrozihranejšou\nnajrozjarenejšej\nnajrozjarenejší\nnajrozjarenejšia\nnajrozjarenejšie\nnajrozjarenejšieho\nnajrozjarenejšiemu\nnajrozjarenejších\nnajrozjarenejším\nnajrozjarenejšími\nnajrozjarenejšiu\nnajrozjarenejšom\nnajrozjarenejšou\nnajrozjedovanejšej\nnajrozjedovanejší\nnajrozjedovanejšia\nnajrozjedovanejšie\nnajrozjedovanejšieho\nnajrozjedovanejšiemu\nnajrozjedovanejších\nnajrozjedovanejším\nnajrozjedovanejšími\nnajrozjedovanejšiu\nnajrozjedovanejšom\nnajrozjedovanejšou\nnajrozjímavejšej\nnajrozjímavejší\nnajrozjímavejšia\nnajrozjímavejšie\nnajrozjímavejšieho\nnajrozjímavejšiemu\nnajrozjímavejších\nnajrozjímavejším\nnajrozjímavejšími\nnajrozjímavejšiu\nnajrozjímavejšom\nnajrozjímavejšou\nnajrozkazovačnejšej\nnajrozkazovačnejší\nnajrozkazovačnejšia\nnajrozkazovačnejšie\nnajrozkazovačnejšieho\nnajrozkazovačnejšiemu\nnajrozkazovačnejších\nnajrozkazovačnejším\nnajrozkazovačnejšími\nnajrozkazovačnejšiu\nnajrozkazovačnejšom\nnajrozkazovačnejšou\nnajrozkladnejšej\nnajrozkladnejší\nnajrozkladnejšia\nnajrozkladnejšie\nnajrozkladnejšieho\nnajrozkladnejšiemu\nnajrozkladnejších\nnajrozkladnejším\nnajrozkladnejšími\nnajrozkladnejšiu\nnajrozkladnejšom\nnajrozkladnejšou\nnajrozkolísanejšie\nnajrozkolísanejších\nnajrozkolísanejším\nNajrozkolísanejšiu\nnajrozkošnejšej\nnajrozkošnejší\nnajrozkošnejšia\nnajrozkošnejšie\nnajrozkošnejšieho\nnajrozkošnejšiemu\nnajrozkošnejších\nnajrozkošnejším\nnajrozkošnejšími\nnajrozkošnejšiu\nnajrozkošnejšom\nnajrozkošnejšou\nnajrozkročenejšej\nnajrozkročenejší\nnajrozkročenejšia\nnajrozkročenejšie\nnajrozkročenejšieho\nnajrozkročenejšiemu\nnajrozkročenejších\nnajrozkročenejším\nnajrozkročenejšími\nnajrozkročenejšiu\nnajrozkročenejšom\nnajrozkročenejšou\nnajrozladenejšej\nnajrozladenejší\nnajrozladenejšia\nnajrozladenejšie\nnajrozladenejšieho\nnajrozladenejšiemu\nnajrozladenejších\nnajrozladenejším\nnajrozladenejšími\nnajrozladenejšiu\nnajrozladenejšom\nnajrozladenejšou\nnajrozľahlejšej\nnajrozľahlejší\nnajrozľahlejšia\nnajrozľahlejšie\nnajrozľahlejšieho\nnajrozľahlejšiemu\nnajrozľahlejších\nnajrozľahlejším\nnajrozľahlejšími\nnajrozľahlejšiu\nnajrozľahlejšom\nnajrozľahlejšou\nnajrozlíšiteľnejšej\nnajrozlíšiteľnejší\nnajrozlíšiteľnejšia\nnajrozlíšiteľnejšie\nnajrozlíšiteľnejšieho\nnajrozlíšiteľnejšiemu\nnajrozlíšiteľnejších\nnajrozlíšiteľnejším\nnajrozlíšiteľnejšími\nnajrozlíšiteľnejšiu\nnajrozlíšiteľnejšom\nnajrozlíšiteľnejšou\nnajrozložitejšej\nnajrozložitejší\nnajrozložitejšia\nnajrozložitejšie\nnajrozložitejšieho\nnajrozložitejšiemu\nnajrozložitejších\nnajrozložitejším\nnajrozložitejšími\nnajrozložitejšiu\nnajrozložitejšom\nnajrozložitejšou\nnajrozlúštiteľnejšej\nnajrozlúštiteľnejší\nnajrozlúštiteľnejšia\nnajrozlúštiteľnejšie\nnajrozlúštiteľnejšieho\nnajrozlúštiteľnejšiemu\nnajrozlúštiteľnejších\nnajrozlúštiteľnejším\nnajrozlúštiteľnejšími\nnajrozlúštiteľnejšiu\nnajrozlúštiteľnejšom\nnajrozlúštiteľnejšou\nnajrozmanitejšej\nnajrozmanitejší\nnajrozmanitejšia\nnajrozmanitejšie\nnajrozmanitejšieho\nnajrozmanitejšiemu\nnajrozmanitejších\nnajrozmanitejším\nnajrozmanitejšími\nnajrozmanitejšiu\nnajrozmanitejšom\nnajrozmanitejšou\nnajrozmarnejšej\nnajrozmarnejší\nnajrozmarnejšia\nnajrozmarnejšie\nnajrozmarnejšieho\nnajrozmarnejšiemu\nnajrozmarnejších\nnajrozmarnejším\nnajrozmarnejšími\nnajrozmarnejšiu\nnajrozmarnejšom\nnajrozmarnejšou\nnajrozmazanejšej\nnajrozmazanejší\nnajrozmazanejšia\nnajrozmazanejšie\nnajrozmazanejšieho\nnajrozmazanejšiemu\nnajrozmazanejších\nnajrozmazanejším\nnajrozmazanejšími\nnajrozmazanejšiu\nnajrozmazanejšom\nnajrozmazanejšou\nnajrozmaznanejšej\nnajrozmaznanejší\nnajrozmaznanejšia\nnajrozmaznanejšie\nnajrozmaznanejšieho\nnajrozmaznanejšiemu\nnajrozmaznanejších\nnajrozmaznanejším\nnajrozmaznanejšími\nnajrozmaznanejšiu\nnajrozmaznanejšom\nnajrozmaznanejšou\nnajrozmernejšej\nnajrozmernejší\nnajrozmernejšia\nnajrozmernejšie\nnajrozmernejšieho\nnajrozmernejšiemu\nnajrozmernejších\nnajrozmernejším\nnajrozmernejšími\nnajrozmernejšiu\nnajrozmernejšom\nnajrozmernejšou\nnajrozmrzenejšej\nnajrozmrzenejší\nnajrozmrzenejšia\nnajrozmrzenejšie\nnajrozmrzenejšieho\nnajrozmrzenejšiemu\nnajrozmrzenejších\nnajrozmrzenejším\nnajrozmrzenejšími\nnajrozmrzenejšiu\nnajrozmrzenejšom\nnajrozmrzenejšou\nnajrozmyslenejšej\nnajrozmyslenejší\nnajrozmyslenejšia\nnajrozmyslenejšie\nnajrozmyslenejšieho\nnajrozmyslenejšiemu\nnajrozmyslenejších\nnajrozmyslenejším\nnajrozmyslenejšími\nnajrozmyslenejšiu\nnajrozmyslenejšom\nnajrozmyslenejšou\nnajrôznejší\nnajrôznofarebnejšej\nnajrôznofarebnejší\nnajrôznofarebnejšia\nnajrôznofarebnejšie\nnajrôznofarebnejšieho\nnajrôznofarebnejšiemu\nnajrôznofarebnejších\nnajrôznofarebnejším\nnajrôznofarebnejšími\nnajrôznofarebnejšiu\nnajrôznofarebnejšom\nnajrôznofarebnejšou\nnajrôznorodejšej\nnajrôznorodejší\nnajrôznorodejšia\nnajrôznorodejšie\nnajrôznorodejšieho\nnajrôznorodejšiemu\nnajrôznorodejších\nnajrôznorodejším\nnajrôznorodejšími\nnajrôznorodejšiu\nnajrôznorodejšom\nnajrôznorodejšou\nnajrozoberateľnejšej\nnajrozoberateľnejší\nnajrozoberateľnejšia\nnajrozoberateľnejšie\nnajrozoberateľnejšieho\nnajrozoberateľnejšiemu\nnajrozoberateľnejších\nnajrozoberateľnejším\nnajrozoberateľnejšími\nnajrozoberateľnejšiu\nnajrozoberateľnejšom\nnajrozoberateľnejšou\nnajrozochvenejšej\nnajrozochvenejší\nnajrozochvenejšia\nnajrozochvenejšie\nnajrozochvenejšieho\nnajrozochvenejšiemu\nnajrozochvenejších\nnajrozochvenejším\nnajrozochvenejšími\nnajrozochvenejšiu\nnajrozochvenejšom\nnajrozochvenejšou\nnajrozoklanejšej\nnajrozoklanejší\nnajrozoklanejšia\nnajrozoklanejšie\nnajrozoklanejšieho\nnajrozoklanejšiemu\nnajrozoklanejších\nnajrozoklanejším\nnajrozoklanejšími\nnajrozoklanejšiu\nnajrozoklanejšom\nnajrozoklanejšou\nnajrozorvanejšej\nnajrozorvanejší\nnajrozorvanejšia\nnajrozorvanejšie\nnajrozorvanejšieho\nnajrozorvanejšiemu\nnajrozorvanejších\nnajrozorvanejším\nnajrozorvanejšími\nnajrozorvanejšiu\nnajrozorvanejšom\nnajrozorvanejšou\nnajrozospatejšej\nnajrozospatejší\nnajrozospatejšia\nnajrozospatejšie\nnajrozospatejšieho\nnajrozospatejšiemu\nnajrozospatejších\nnajrozospatejším\nnajrozospatejšími\nnajrozospatejšiu\nnajrozospatejšom\nnajrozospatejšou\nnajrozoznateľnejšej\nnajrozoznateľnejší\nnajrozoznateľnejšia\nnajrozoznateľnejšie\nnajrozoznateľnejšieho\nnajrozoznateľnejšiemu\nnajrozoznateľnejších\nnajrozoznateľnejším\nnajrozoznateľnejšími\nnajrozoznateľnejšiu\nnajrozoznateľnejšom\nnajrozoznateľnejšou\nnajrozpačitejšej\nnajrozpačitejší\nnajrozpačitejšia\nnajrozpačitejšie\nnajrozpačitejšieho\nnajrozpačitejšiemu\nnajrozpačitejších\nnajrozpačitejším\nnajrozpačitejšími\nnajrozpačitejšiu\nnajrozpačitejšom\nnajrozpačitejšou\nnajrozpínavejšej\nnajrozpínavejší\nnajrozpínavejšia\nnajrozpínavejšie\nnajrozpínavejšieho\nnajrozpínavejšiemu\nnajrozpínavejších\nnajrozpínavejším\nnajrozpínavejšími\nnajrozpínavejšiu\nnajrozpínavejšom\nnajrozpínavejšou\nnajrozplývavejšej\nnajrozplývavejší\nnajrozplývavejšia\nnajrozplývavejšie\nnajrozplývavejšieho\nnajrozplývavejšiemu\nnajrozplývavejších\nnajrozplývavejším\nnajrozplývavejšími\nnajrozplývavejšiu\nnajrozplývavejšom\nnajrozplývavejšou\nnajrozpoltenejšej\nnajrozpoltenejší\nnajrozpoltenejšia\nnajrozpoltenejšie\nnajrozpoltenejšieho\nnajrozpoltenejšiemu\nnajrozpoltenejších\nnajrozpoltenejším\nnajrozpoltenejšími\nnajrozpoltenejšiu\nnajrozpoltenejšom\nnajrozpoltenejšou\nnajrozpornejšej\nnajrozpornejší\nnajrozpornejšia\nnajrozpornejšie\nnajrozpornejšieho\nnajrozpornejšiemu\nnajrozpornejších\nnajrozpornejším\nnajrozpornejšími\nnajrozpornejšiu\nnajrozpornejšom\nnajrozpornejšou\nnajrozpoznateľnejšej\nnajrozpoznateľnejší\nnajrozpoznateľnejšia\nnajrozpoznateľnejšie\nnajrozpoznateľnejšieho\nnajrozpoznateľnejšiemu\nnajrozpoznateľnejších\nnajrozpoznateľnejším\nnajrozpoznateľnejšími\nnajrozpoznateľnejšiu\nnajrozpoznateľnejšom\nnajrozpoznateľnejšou\nnajrozpracovanejšie\nnajrozpracovanejších\nNajrozpracovanejším\nnajrozpracovanejšom\nnajrozprávkovejšie\nnajrozpustenejšej\nnajrozpustenejší\nnajrozpustenejšia\nnajrozpustenejšie\nnajrozpustenejšieho\nnajrozpustenejšiemu\nnajrozpustenejších\nnajrozpustenejším\nnajrozpustenejšími\nnajrozpustenejšiu\nnajrozpustenejšom\nnajrozpustenejšou\nnajrozpustnejšej\nnajrozpustnejší\nnajrozpustnejšia\nnajrozpustnejšie\nnajrozpustnejšieho\nnajrozpustnejšiemu\nnajrozpustnejších\nnajrozpustnejším\nnajrozpustnejšími\nnajrozpustnejšiu\nnajrozpustnejšom\nnajrozpustnejšou\nnajrozrušenejšej\nnajrozrušenejší\nnajrozrušenejšia\nnajrozrušenejšie\nnajrozrušenejšieho\nnajrozrušenejšiemu\nnajrozrušenejších\nnajrozrušenejším\nnajrozrušenejšími\nnajrozrušenejšiu\nnajrozrušenejšom\nnajrozrušenejšou\nnajrozsiahlej\nnajrozšafnejšej\nnajrozšafnejší\nnajrozšafnejšia\nnajrozšafnejšie\nnajrozšafnejšieho\nnajrozšafnejšiemu\nnajrozšafnejších\nnajrozšafnejším\nnajrozšafnejšími\nnajrozšafnejšiu\nnajrozšafnejšom\nnajrozšafnejšou\nnajrozťahanejšej\nnajrozťahanejší\nnajrozťahanejšia\nnajrozťahanejšie\nnajrozťahanejšieho\nnajrozťahanejšiemu\nnajrozťahanejších\nnajrozťahanejším\nnajrozťahanejšími\nnajrozťahanejšiu\nnajrozťahanejšom\nnajrozťahanejšou\nnajrozťažnejšej\nnajrozťažnejší\nnajrozťažnejšia\nnajrozťažnejšie\nnajrozťažnejšieho\nnajrozťažnejšiemu\nnajrozťažnejších\nnajrozťažnejším\nnajrozťažnejšími\nnajrozťažnejšiu\nnajrozťažnejšom\nnajrozťažnejšou\nnajroztekavejšej\nnajroztekavejší\nnajroztekavejšia\nnajroztekavejšie\nnajroztekavejšieho\nnajroztekavejšiemu\nnajroztekavejších\nnajroztekavejším\nnajroztekavejšími\nnajroztekavejšiu\nnajroztekavejšom\nnajroztekavejšou\nnajroztierateľnejšej\nnajroztierateľnejší\nnajroztierateľnejšia\nnajroztierateľnejšie\nnajroztierateľnejšieho\nnajroztierateľnejšiemu\nnajroztierateľnejších\nnajroztierateľnejším\nnajroztierateľnejšími\nnajroztierateľnejšiu\nnajroztierateľnejšom\nnajroztierateľnejšou\nnajroztomilejšej\nnajroztomilejší\nnajroztomilejšia\nnajroztomilejšie\nnajroztomilejšieho\nnajroztomilejšiemu\nnajroztomilejších\nnajroztomilejším\nnajroztomilejšími\nnajroztomilejšiu\nnajroztomilejšom\nnajroztomilejšou\nnajroztopašnejšej\nnajroztopašnejší\nnajroztopašnejšia\nnajroztopašnejšie\nnajroztopašnejšieho\nnajroztopašnejšiemu\nnajroztopašnejších\nnajroztopašnejším\nnajroztopašnejšími\nnajroztopašnejšiu\nnajroztopašnejšom\nnajroztopašnejšou\nnajroztrasenejšej\nnajroztrasenejší\nnajroztrasenejšia\nnajroztrasenejšie\nnajroztrasenejšieho\nnajroztrasenejšiemu\nnajroztrasenejších\nnajroztrasenejším\nnajroztrasenejšími\nnajroztrasenejšiu\nnajroztrasenejšom\nnajroztrasenejšou\nnajroztratenejšej\nnajroztratenejší\nnajroztratenejšia\nnajroztratenejšie\nnajroztratenejšieho\nnajroztratenejšiemu\nnajroztratenejších\nnajroztratenejším\nnajroztratenejšími\nnajroztratenejšiu\nnajroztratenejšom\nnajroztratenejšou\nnajroztrieštenejšej\nnajroztrieštenejší\nnajroztrieštenejšia\nnajroztrieštenejšie\nnajroztrieštenejšieho\nnajroztrieštenejšiemu\nnajroztrieštenejších\nnajroztrieštenejším\nnajroztrieštenejšími\nnajroztrieštenejšiu\nnajroztrieštenejšom\nnajroztrieštenejšou\nnajroztrpčenejšej\nnajroztrpčenejší\nnajroztrpčenejšia\nnajroztrpčenejšie\nnajroztrpčenejšieho\nnajroztrpčenejšiemu\nnajroztrpčenejších\nnajroztrpčenejším\nnajroztrpčenejšími\nnajroztrpčenejšiu\nnajroztrpčenejšom\nnajroztrpčenejšou\nnajroztrúsenejšej\nnajroztrúsenejší\nnajroztrúsenejšia\nnajroztrúsenejšie\nnajroztrúsenejšieho\nnajroztrúsenejšiemu\nnajroztrúsenejších\nnajroztrúsenejším\nnajroztrúsenejšími\nnajroztrúsenejšiu\nnajroztrúsenejšom\nnajroztrúsenejšou\nnajroztržitejšej\nnajroztržitejší\nnajroztržitejšia\nnajroztržitejšie\nnajroztržitejšieho\nnajroztržitejšiemu\nnajroztržitejších\nnajroztržitejším\nnajroztržitejšími\nnajroztržitejšiu\nnajroztržitejšom\nnajroztržitejšou\nnajroztúženejšej\nnajroztúženejší\nnajroztúženejšia\nnajroztúženejšie\nnajroztúženejšieho\nnajroztúženejšiemu\nnajroztúženejších\nnajroztúženejším\nnajroztúženejšími\nnajroztúženejšiu\nnajroztúženejšom\nnajroztúženejšou\nnajrozumnejšej\nnajrozumnejší\nnajrozumnejšia\nnajrozumnejšie\nnajrozumnejšieho\nnajrozumnejšiemu\nnajrozumnejších\nnajrozumnejším\nnajrozumnejšími\nnajrozumnejšiu\nnajrozumnejšom\nnajrozumnejšou\nnajrozvadenejšej\nnajrozvadenejší\nnajrozvadenejšia\nnajrozvadenejšie\nnajrozvadenejšieho\nnajrozvadenejšiemu\nnajrozvadenejších\nnajrozvadenejším\nnajrozvadenejšími\nnajrozvadenejšiu\nnajrozvadenejšom\nnajrozvadenejšou\nnajrozvážnejšej\nnajrozvážnejší\nnajrozvážnejšia\nnajrozvážnejšie\nnajrozvážnejšieho\nnajrozvážnejšiemu\nnajrozvážnejších\nnajrozvážnejším\nnajrozvážnejšími\nnajrozvážnejšiu\nnajrozvážnejšom\nnajrozvážnejšou\nnajrozvetvenejšej\nnajrozvetvenejší\nnajrozvetvenejšia\nnajrozvetvenejšie\nnajrozvetvenejšieho\nnajrozvetvenejšiemu\nnajrozvetvenejších\nnajrozvetvenejším\nnajrozvetvenejšími\nnajrozvetvenejšiu\nnajrozvetvenejšom\nnajrozvetvenejšou\nnajrozvinutejší\nnajrozvitejšej\nnajrozvitejší\nnajrozvitejšia\nnajrozvitejšie\nnajrozvitejšieho\nnajrozvitejšiemu\nnajrozvitejších\nnajrozvitejším\nnajrozvitejšími\nnajrozvitejšiu\nnajrozvitejšom\nnajrozvitejšou\nnajrozvláčnejšej\nnajrozvláčnejší\nnajrozvláčnejšia\nnajrozvláčnejšie\nnajrozvláčnejšieho\nnajrozvláčnejšiemu\nnajrozvláčnejších\nnajrozvláčnejším\nnajrozvláčnejšími\nnajrozvláčnejšiu\nnajrozvláčnejšom\nnajrozvláčnejšou\nnajrozvratnejšie\nnajrozvratníckejšej\nnajrozvratníckejší\nnajrozvratníckejšia\nnajrozvratníckejšie\nnajrozvratníckejšieho\nnajrozvratníckejšiemu\nnajrozvratníckejších\nnajrozvratníckejším\nnajrozvratníckejšími\nnajrozvratníckejšiu\nnajrozvratníckejšom\nnajrozvratníckejšou\nnajrozvravenejšej\nnajrozvravenejší\nnajrozvravenejšia\nnajrozvravenejšie\nnajrozvravenejšieho\nnajrozvravenejšiemu\nnajrozvravenejších\nnajrozvravenejším\nnajrozvravenejšími\nnajrozvravenejšiu\nnajrozvravenejšom\nnajrozvravenejšou\nnajrozzúrenejšej\nnajrozzúrenejší\nnajrozzúrenejšia\nnajrozzúrenejšie\nnajrozzúrenejšieho\nnajrozzúrenejšiemu\nnajrozzúrenejších\nnajrozzúrenejším\nnajrozzúrenejšími\nnajrozzúrenejšiu\nnajrozzúrenejšom\nnajrozzúrenejšou\nnajrozžialenejšej\nnajrozžialenejší\nnajrozžialenejšia\nnajrozžialenejšie\nnajrozžialenejšieho\nnajrozžialenejšiemu\nnajrozžialenejších\nnajrozžialenejším\nnajrozžialenejšími\nnajrozžialenejšiu\nnajrozžialenejšom\nnajrozžialenejšou\nnajrožkatejšej\nnajrožkatejší\nnajrožkatejšia\nnajrožkatejšie\nnajrožkatejšieho\nnajrožkatejšiemu\nnajrožkatejších\nnajrožkatejším\nnajrožkatejšími\nnajrožkatejšiu\nnajrožkatejšom\nnajrožkatejšou\nnajrožkovitejšej\nnajrožkovitejší\nnajrožkovitejšia\nnajrožkovitejšie\nnajrožkovitejšieho\nnajrožkovitejšiemu\nnajrožkovitejších\nnajrožkovitejším\nnajrožkovitejšími\nnajrožkovitejšiu\nnajrožkovitejšom\nnajrožkovitejšou\nnajrúčejšej\nnajrúčejší\nnajrúčejšia\nnajrúčejšie\nnajrúčejšieho\nnajrúčejšiemu\nnajrúčejších\nnajrúčejším\nnajrúčejšími\nnajrúčejšiu\nnajrúčejšom\nnajrúčejšou\nnajrudimentárnejšie\nnajrudnatejšej\nnajrudnatejší\nnajrudnatejšia\nnajrudnatejšie\nnajrudnatejšieho\nnajrudnatejšiemu\nnajrudnatejších\nnajrudnatejším\nnajrudnatejšími\nnajrudnatejšiu\nnajrudnatejšom\nnajrudnatejšou\nnajrúhavejšej\nnajrúhavejší\nnajrúhavejšia\nnajrúhavejšie\nnajrúhavejšieho\nnajrúhavejšiemu\nnajrúhavejších\nnajrúhavejším\nnajrúhavejšími\nnajrúhavejšiu\nnajrúhavejšom\nnajrúhavejšou\nnajrukolapnejšej\nnajrukolapnejší\nnajrukolapnejšia\nnajrukolapnejšie\nnajrukolapnejšieho\nnajrukolapnejšiemu\nnajrukolapnejších\nnajrukolapnejším\nnajrukolapnejšími\nnajrukolapnejšiu\nnajrukolapnejšom\nnajrukolapnejšou\nnajrumunskejšej\nnajrumunskejší\nnajrumunskejšia\nnajrumunskejšie\nnajrumunskejšieho\nnajrumunskejšiemu\nnajrumunskejších\nnajrumunskejším\nnajrumunskejšími\nnajrumunskejšiu\nnajrumunskejšom\nnajrumunskejšou\nnajrúrkovitejšej\nnajrúrkovitejší\nnajrúrkovitejšia\nnajrúrkovitejšie\nnajrúrkovitejšieho\nnajrúrkovitejšiemu\nnajrúrkovitejších\nnajrúrkovitejším\nnajrúrkovitejšími\nnajrúrkovitejšiu\nnajrúrkovitejšom\nnajrúrkovitejšou\nnajrúrovitejšej\nnajrúrovitejší\nnajrúrovitejšia\nnajrúrovitejšie\nnajrúrovitejšieho\nnajrúrovitejšiemu\nnajrúrovitejších\nnajrúrovitejším\nnajrúrovitejšími\nnajrúrovitejšiu\nnajrúrovitejšom\nnajrúrovitejšou\nnajruskejšej\nnajruskejší\nnajruskejšia\nnajruskejšie\nnajruskejšieho\nnajruskejšiemu\nnajruskejších\nnajruskejším\nnajruskejšími\nnajruskejšiu\nnajruskejšom\nnajruskejšou\nnajrustikálnejšej\nnajrustikálnejší\nnajrustikálnejšia\nnajrustikálnejšie\nnajrustikálnejšieho\nnajrustikálnejšiemu\nnajrustikálnejších\nnajrustikálnejším\nnajrustikálnejšími\nnajrustikálnejšiu\nnajrustikálnejšom\nnajrustikálnejšou\nnajrušivejšej\nnajrušivejší\nnajrušivejšia\nnajrušivejšie\nnajrušivejšieho\nnajrušivejšiemu\nnajrušivejších\nnajrušivejším\nnajrušivejšími\nnajrušivejšiu\nnajrušivejšom\nnajrušivejšou\nnajrušnejšej\nnajrušnejší\nnajrušnejšia\nnajrušnejšie\nnajrušnejšieho\nnajrušnejšiemu\nnajrušnejších\nnajrušnejším\nnajrušnejšími\nNajrušnejšími\nnajrušnejšiu\nnajrušnejšom\nnajrušnejšou\nnajrutinovanejšie\nnajružovejšie\nnajružovkavejšie\nnajrybinovitejšej\nnajrybinovitejší\nnajrybinovitejšia\nnajrybinovitejšie\nnajrybinovitejšieho\nnajrybinovitejšiemu\nnajrybinovitejších\nnajrybinovitejším\nnajrybinovitejšími\nnajrybinovitejšiu\nnajrybinovitejšom\nnajrybinovitejšou\nnajrybnatejšej\nnajrybnatejší\nnajrybnatejšia\nnajrybnatejšie\nnajrybnatejšieho\nnajrybnatejšiemu\nnajrybnatejších\nnajrybnatejším\nnajrybnatejšími\nnajrybnatejšiu\nnajrybnatejšom\nnajrybnatejšou\nnajrýchlonohejšej\nnajrýchlonohejší\nnajrýchlonohejšia\nnajrýchlonohejšie\nnajrýchlonohejšieho\nnajrýchlonohejšiemu\nnajrýchlonohejších\nnajrýchlonohejším\nnajrýchlonohejšími\nnajrýchlonohejšiu\nnajrýchlonohejšom\nnajrýchlonohejšou\nnajrýchlorastúcejšej\nnajrýchlorastúcejší\nnajrýchlorastúcejšia\nnajrýchlorastúcejšie\nnajrýchlorastúcejšieho\nnajrýchlorastúcejšiemu\nnajrýchlorastúcejších\nnajrýchlorastúcejším\nnajrýchlorastúcejšími\nnajrýchlorastúcejšiu\nnajrýchlorastúcejšom\nnajrýchlorastúcejšou\nnajrysavejšej\nnajrysavejší\nnajrysavejšia\nnajrysavejšie\nnajrysavejšieho\nnajrysavejšiemu\nnajrysavejších\nnajrysavejším\nnajrysavejšími\nnajrysavejšiu\nnajrysavejšom\nnajrysavejšou\nnajryšavejšej\nnajryšavejší\nnajryšavejšia\nnajryšavejšie\nnajryšavejšieho\nnajryšavejšiemu\nnajryšavejších\nnajryšavejším\nnajryšavejšími\nnajryšavejšiu\nnajryšavejšom\nnajryšavejšou\nnajrytierskejšej\nnajrytierskejší\nnajrytierskejšia\nnajrytierskejšie\nnajrytierskejšieho\nnajrytierskejšiemu\nnajrytierskejších\nnajrytierskejším\nnajrytierskejšími\nnajrytierskejšiu\nnajrytierskejšom\nnajrytierskejšou\nnajrytmickejšej\nnajrytmickejší\nnajrytmickejšia\nnajrytmickejšie\nnajrytmickejšieho\nnajrytmickejšiemu\nnajrytmickejších\nnajrytmickejším\nnajrytmickejšími\nnajrytmickejšiu\nnajrytmickejšom\nnajrytmickejšou\nnajsadistickejšej\nnajsadistickejší\nnajsadistickejšia\nnajsadistickejšie\nnajsadistickejšieho\nnajsadistickejšiemu\nnajsadistickejších\nnajsadistickejším\nnajsadistickejšími\nnajsadistickejšiu\nnajsadistickejšom\nnajsadistickejšou\nnajsálavejšej\nnajsálavejší\nnajsálavejšia\nnajsálavejšie\nnajsálavejšieho\nnajsálavejšiemu\nnajsálavejších\nnajsálavejším\nnajsálavejšími\nnajsálavejšiu\nnajsálavejšom\nnajsálavejšou\nnajsalónnejšej\nnajsalónnejší\nnajsalónnejšia\nnajsalónnejšie\nnajsalónnejšieho\nnajsalónnejšiemu\nnajsalónnejších\nnajsalónnejším\nnajsalónnejšími\nnajsalónnejšiu\nnajsalónnejšom\nnajsalónnejšou\nnajsamaritánskejšej\nnajsamaritánskejší\nnajsamaritánskejšia\nnajsamaritánskejšie\nnajsamaritánskejšieho\nnajsamaritánskejšiemu\nnajsamaritánskejších\nnajsamaritánskejším\nnajsamaritánskejšími\nnajsamaritánskejšiu\nnajsamaritánskejšom\nnajsamaritánskejšou\nnajsamnajprv\nnajsamobytnejšie\nnajsamoľúbejšej\nnajsamoľúbejší\nnajsamoľúbejšia\nnajsamoľúbejšie\nnajsamoľúbejšieho\nnajsamoľúbejšiemu\nnajsamoľúbejších\nnajsamoľúbejším\nnajsamoľúbejšími\nnajsamoľúbejšiu\nnajsamoľúbejšom\nnajsamoľúbejšou\nnajsamoopelivejšej\nnajsamoopelivejší\nnajsamoopelivejšia\nnajsamoopelivejšie\nnajsamoopelivejšieho\nnajsamoopelivejšiemu\nnajsamoopelivejších\nnajsamoopelivejším\nnajsamoopelivejšími\nnajsamoopelivejšiu\nnajsamoopelivejšom\nnajsamoopelivejšou\nnajsamopašnejšej\nnajsamopašnejší\nnajsamopašnejšia\nnajsamopašnejšie\nnajsamopašnejšieho\nnajsamopašnejšiemu\nnajsamopašnejších\nnajsamopašnejším\nnajsamopašnejšími\nnajsamopašnejšiu\nnajsamopašnejšom\nnajsamopašnejšou\nnajsamostatnejšie\nnajsamotárskejšej\nnajsamotárskejší\nnajsamotárskejšia\nnajsamotárskejšie\nnajsamotárskejšieho\nnajsamotárskejšiemu\nnajsamotárskejších\nnajsamotárskejším\nnajsamotárskejšími\nnajsamotárskejšiu\nnajsamotárskejšom\nnajsamotárskejšou\nnajsamovznietivejšej\nnajsamovznietivejší\nnajsamovznietivejšia\nnajsamovznietivejšie\nnajsamovznietivejšieho\nnajsamovznietivejšiemu\nnajsamovznietivejších\nnajsamovznietivejším\nnajsamovznietivejšími\nnajsamovznietivejšiu\nnajsamovznietivejšom\nnajsamovznietivejšou\nnajsamozrejmejšej\nnajsamozrejmejší\nnajsamozrejmejšia\nnajsamozrejmejšie\nnajsamozrejmejšieho\nnajsamozrejmejšiemu\nnajsamozrejmejších\nnajsamozrejmejším\nnajsamozrejmejšími\nnajsamozrejmejšiu\nnajsamozrejmejšom\nnajsamozrejmejšou\nnajsamprv\nnajsangvinickejšej\nnajsangvinickejší\nnajsangvinickejšia\nnajsangvinickejšie\nnajsangvinickejšieho\nnajsangvinickejšiemu\nnajsangvinickejších\nnajsangvinickejším\nnajsangvinickejšími\nnajsangvinickejšiu\nnajsangvinickejšom\nnajsangvinickejšou\nnajsarkastickejšej\nnajsarkastickejší\nnajsarkastickejšia\nnajsarkastickejšie\nnajsarkastickejšieho\nnajsarkastickejšiemu\nnajsarkastickejších\nnajsarkastickejším\nnajsarkastickejšími\nnajsarkastickejšiu\nnajsarkastickejšom\nnajsarkastickejšou\nnajsatanskejšej\nnajsatanskejší\nnajsatanskejšia\nnajsatanskejšie\nnajsatanskejšieho\nnajsatanskejšiemu\nnajsatanskejších\nnajsatanskejším\nnajsatanskejšími\nnajsatanskejšiu\nnajsatanskejšom\nnajsatanskejšou\nnajsatirickejšej\nnajsatirickejší\nnajsatirickejšia\nnajsatirickejšie\nnajsatirickejšieho\nnajsatirickejšiemu\nnajsatirickejších\nnajsatirickejším\nnajsatirickejšími\nnajsatirickejšiu\nnajsatirickejšom\nnajsatirickejšou\nnajscestnejšie\nnajscestovanejšej\nnajscestovanejší\nnajscestovanejšia\nnajscestovanejšie\nnajscestovanejšieho\nnajscestovanejšiemu\nnajscestovanejších\nnajscestovanejším\nnajscestovanejšími\nnajscestovanejšiu\nnajscestovanejšom\nnajscestovanejšou\nnajsčítanejšej\nnajsčítanejší\nnajsčítanejšia\nnajsčítanejšie\nnajsčítanejšieho\nnajsčítanejšiemu\nnajsčítanejších\nnajsčítanejším\nnajsčítanejšími\nnajsčítanejšiu\nnajsčítanejšom\nnajsčítanejšou\nnajsebaironickejšej\nnajsebaironickejší\nnajsebaironickejšia\nnajsebaironickejšie\nnajsebaironickejšieho\nnajsebaironickejšiemu\nnajsebaironickejších\nnajsebaironickejším\nnajsebaironickejšími\nnajsebaironickejšiu\nnajsebaironickejšom\nnajsebaironickejšou\nnajsebaistejšej\nnajsebaistejší\nnajsebaistejšia\nnajsebaistejšie\nnajsebaistejšieho\nnajsebaistejšiemu\nnajsebaistejších\nnajsebaistejším\nnajsebaistejšími\nnajsebaistejšiu\nnajsebaistejšom\nnajsebaistejšou\nnajsebakritickejšej\nnajsebakritickejší\nnajsebakritickejšia\nnajsebakritickejšie\nnajsebakritickejšieho\nnajsebakritickejšiemu\nnajsebakritickejších\nnajsebakritickejším\nnajsebakritickejšími\nnajsebakritickejšiu\nnajsebakritickejšom\nnajsebakritickejšou\nnajsebavedomejšej\nnajsebavedomejší\nnajsebavedomejšia\nnajsebavedomejšie\nnajsebavedomejšieho\nnajsebavedomejšiemu\nnajsebavedomejších\nnajsebavedomejším\nnajsebavedomejšími\nnajsebavedomejšiu\nnajsebavedomejšom\nnajsebavedomejšou\nnajsebeckejšej\nnajsebeckejší\nnajsebeckejšia\nnajsebeckejšie\nnajsebeckejšieho\nnajsebeckejšiemu\nnajsebeckejších\nnajsebeckejším\nnajsebeckejšími\nnajsebeckejšiu\nnajsebeckejšom\nnajsebeckejšou\nnajsebestačnejšej\nnajsebestačnejší\nnajsebestačnejšia\nnajsebestačnejšie\nnajsebestačnejšieho\nnajsebestačnejšiemu\nnajsebestačnejších\nnajsebestačnejším\nnajsebestačnejšími\nnajsebestačnejšiu\nnajsebestačnejšom\nnajsebestačnejšou\nnajsecesnejšej\nnajsecesnejší\nnajsecesnejšia\nnajsecesnejšie\nnajsecesnejšieho\nnajsecesnejšiemu\nnajsecesnejších\nnajsecesnejším\nnajsecesnejšími\nnajsecesnejšiu\nnajsecesnejšom\nnajsecesnejšou\nnajsedavejšej\nnajsedavejší\nnajsedavejšia\nnajsedavejšie\nnajsedavejšieho\nnajsedavejšiemu\nnajsedavejších\nnajsedavejším\nnajsedavejšími\nnajsedavejšiu\nnajsedavejšom\nnajsedavejšou\nnajsegregačnejšie\nnajsekulárnejšej\nnajsekulárnejší\nnajsekulárnejšia\nnajsekulárnejšie\nnajsekulárnejšieho\nnajsekulárnejšiemu\nnajsekulárnejších\nnajsekulárnejším\nnajsekulárnejšími\nnajsekulárnejšiu\nnajsekulárnejšom\nnajsekulárnejšou\nnajselekčnejšie\nnajselektívnejšej\nnajselektívnejší\nnajselektívnejšia\nnajselektívnejšie\nnajselektívnejšieho\nnajselektívnejšiemu\nnajselektívnejších\nnajselektívnejším\nnajselektívnejšími\nnajselektívnejšiu\nnajselektívnejšom\nnajselektívnejšou\nnajsenilnejšej\nnajsenilnejší\nnajsenilnejšia\nnajsenilnejšie\nnajsenilnejšieho\nnajsenilnejšiemu\nnajsenilnejších\nnajsenilnejším\nnajsenilnejšími\nnajsenilnejšiu\nnajsenilnejšom\nnajsenilnejšou\nnajsentimentálnejšej\nnajsentimentálnejší\nnajsentimentálnejšia\nnajsentimentálnejšie\nnajsentimentálnejšieho\nnajsentimentálnejšiemu\nnajsentimentálnejších\nnajsentimentálnejším\nnajsentimentálnejšími\nnajsentimentálnejšiu\nnajsentimentálnejšom\nnajsentimentálnejšou\nnajsenzačnejšej\nnajsenzačnejší\nnajsenzačnejšia\nnajsenzačnejšie\nnajsenzačnejšieho\nnajsenzačnejšiemu\nnajsenzačnejších\nnajsenzačnejším\nnajsenzačnejšími\nnajsenzačnejšiu\nnajsenzačnejšom\nnajsenzačnejšou\nnajsenzibilnejšej\nnajsenzibilnejší\nnajsenzibilnejšia\nnajsenzibilnejšie\nnajsenzibilnejšieho\nnajsenzibilnejšiemu\nnajsenzibilnejších\nnajsenzibilnejším\nnajsenzibilnejšími\nnajsenzibilnejšiu\nnajsenzibilnejšom\nnajsenzibilnejšou\nnajsenzitívnejšej\nnajsenzitívnejší\nnajsenzitívnejšia\nnajsenzitívnejšie\nnajsenzitívnejšieho\nnajsenzitívnejšiemu\nnajsenzitívnejších\nnajsenzitívnejším\nnajsenzitívnejšími\nnajsenzitívnejšiu\nnajsenzitívnejšom\nnajsenzitívnejšou\nnajseparatistickejšie\nnajseparátnejšej\nnajseparátnejší\nnajseparátnejšia\nnajseparátnejšie\nnajseparátnejšieho\nnajseparátnejšiemu\nnajseparátnejších\nnajseparátnejším\nnajseparátnejšími\nnajseparátnejšiu\nnajseparátnejšom\nnajseparátnejšou\nnajseparovanejšie\nnajserióznejšej\nnajserióznejší\nnajserióznejšia\nnajserióznejšie\nnajserióznejšieho\nnajserióznejšiemu\nnajserióznejších\nnajserióznejším\nnajserióznejšími\nnajserióznejšiu\nnajserióznejšom\nnajserióznejšou\nnajservilnejšej\nnajservilnejší\nnajservilnejšia\nnajservilnejšie\nnajservilnejšieho\nnajservilnejšiemu\nnajservilnejších\nnajservilnejším\nnajservilnejšími\nnajservilnejšiu\nnajservilnejšom\nnajservilnejšou\nnajsevernejšej\nnajsevernejší\nnajsevernejšia\nnajsevernejšie\nnajsevernejšieho\nnajsevernejšiemu\nnajsevernejších\nnajsevernejším\nnajsevernejšími\nnajsevernejšiu\nnajsevernejšom\nnajsevernejšou\nnajseverovýchodnejšej\nnajseverovýchodnejší\nnajseverovýchodnejšia\nnajseverovýchodnejšie\nnajseverovýchodnejšieho\nnajseverovýchodnejšiemu\nnajseverovýchodnejších\nnajseverovýchodnejším\nnajseverovýchodnejšími\nnajseverovýchodnejšiu\nnajseverovýchodnejšom\nnajseverovýchodnejšou\nnajseverozápadnejšej\nnajseverozápadnejší\nnajseverozápadnejšia\nnajseverozápadnejšie\nnajseverozápadnejšieho\nnajseverozápadnejšiemu\nnajseverozápadnejších\nnajseverozápadnejším\nnajseverozápadnejšími\nnajseverozápadnejšiu\nnajseverozápadnejšom\nnajseverozápadnejšou\nnajsexuálnejšie\nnajschátranejšej\nnajschátranejší\nnajschátranejšia\nnajschátranejšie\nnajschátranejšieho\nnajschátranejšiemu\nnajschátranejších\nnajschátranejším\nnajschátranejšími\nnajschátranejšiu\nnajschátranejšom\nnajschátranejšou\nnajschematickejšej\nnajschematickejší\nnajschematickejšia\nnajschematickejšie\nnajschematickejšieho\nnajschematickejšiemu\nnajschematickejších\nnajschematickejším\nnajschematickejšími\nnajschematickejšiu\nnajschematickejšom\nnajschematickejšou\nnajschizmatickejšej\nnajschizmatickejší\nnajschizmatickejšia\nnajschizmatickejšie\nnajschizmatickejšieho\nnajschizmatickejšiemu\nnajschizmatickejších\nnajschizmatickejším\nnajschizmatickejšími\nnajschizmatickejšiu\nnajschizmatickejšom\nnajschizmatickejšou\nnajschizofrenickejšie\nnajschodnejšej\nnajschodnejší\nnajschodnejšia\nnajschodnejšie\nnajschodnejšieho\nnajschodnejšiemu\nnajschodnejších\nnajschodnejším\nnajschodnejšími\nnajschodnejšiu\nnajschodnejšom\nnajschodnejšou\nnajschodovitejšej\nnajschodovitejší\nnajschodovitejšia\nnajschodovitejšie\nnajschodovitejšieho\nnajschodovitejšiemu\nnajschodovitejších\nnajschodovitejším\nnajschodovitejšími\nnajschodovitejšiu\nnajschodovitejšom\nnajschodovitejšou\nnajscholastickejšej\nnajscholastickejší\nnajscholastickejšia\nnajscholastickejšie\nnajscholastickejšieho\nnajscholastickejšiemu\nnajscholastickejších\nnajscholastickejším\nnajscholastickejšími\nnajscholastickejšiu\nnajscholastickejšom\nnajscholastickejšou\nnajschválnejšej\nnajschválnejší\nnajschválnejšia\nnajschválnejšie\nnajschválnejšieho\nnajschválnejšiemu\nnajschválnejších\nnajschválnejším\nnajschválnejšími\nnajschválnejšiu\nnajschválnejšom\nnajschválnejšou\nnajsieťovitejšej\nnajsieťovitejší\nnajsieťovitejšia\nnajsieťovitejšie\nnajsieťovitejšieho\nnajsieťovitejšiemu\nnajsieťovitejších\nnajsieťovitejším\nnajsieťovitejšími\nnajsieťovitejšiu\nnajsieťovitejšom\nnajsieťovitejšou\nnajsiláckejšej\nnajsiláckejší\nnajsiláckejšia\nnajsiláckejšie\nnajsiláckejšieho\nnajsiláckejšiemu\nnajsiláckejších\nnajsiláckejším\nnajsiláckejšími\nnajsiláckejšiu\nnajsiláckejšom\nnajsiláckejšou\nnajsilenejšej\nnajsilenejší\nnajsilenejšia\nnajsilenejšie\nnajsilenejšieho\nnajsilenejšiemu\nnajsilenejších\nnajsilenejším\nnajsilenejšími\nnajsilenejšiu\nnajsilenejšom\nnajsilenejšou\nnajsinavejšej\nnajsinavejší\nnajsinavejšia\nnajsinavejšie\nnajsinavejšieho\nnajsinavejšiemu\nnajsinavejších\nnajsinavejším\nnajsinavejšími\nnajsinavejšiu\nnajsinavejšom\nnajsinavejšou\nnajsinejšej\nnajsinejší\nnajsinejšia\nnajsinejšie\nnajsinejšieho\nnajsinejšiemu\nnajsinejších\nnajsinejším\nnajsinejšími\nnajsinejšiu\nnajsinejšom\nnajsinejšou\nnajsionistickejšej\nnajsionistickejší\nnajsionistickejšia\nnajsionistickejšie\nnajsionistickejšieho\nnajsionistickejšiemu\nnajsionistickejších\nnajsionistickejším\nnajsionistickejšími\nnajsionistickejšiu\nnajsionistickejšom\nnajsionistickejšou\nnajsipivejšej\nnajsipivejší\nnajsipivejšia\nnajsipivejšie\nnajsipivejšieho\nnajsipivejšiemu\nnajsipivejších\nnajsipivejším\nnajsipivejšími\nnajsipivejšiu\nnajsipivejšom\nnajsipivejšou\nnajsipľavejšej\nnajsipľavejší\nnajsipľavejšia\nnajsipľavejšie\nnajsipľavejšieho\nnajsipľavejšiemu\nnajsipľavejších\nnajsipľavejším\nnajsipľavejšími\nnajsipľavejšiu\nnajsipľavejšom\nnajsipľavejšou\nnajsírnatejšej\nnajsírnatejší\nnajsírnatejšia\nnajsírnatejšie\nnajsírnatejšieho\nnajsírnatejšiemu\nnajsírnatejších\nnajsírnatejším\nnajsírnatejšími\nnajsírnatejšiu\nnajsírnatejšom\nnajsírnatejšou\nnajsivejšej\nnajsivejší\nnajsivejšia\nnajsivejšie\nnajsivejšieho\nnajsivejšiemu\nnajsivejších\nnajsivejším\nnajsivejšími\nnajsivejšiu\nnajsivejšom\nnajsivejšou\nnajskackavejšej\nnajskackavejší\nnajskackavejšia\nnajskackavejšie\nnajskackavejšieho\nnajskackavejšiemu\nnajskackavejších\nnajskackavejším\nnajskackavejšími\nnajskackavejšiu\nnajskackavejšom\nnajskackavejšou\nnajskákavejšej\nnajskákavejší\nnajskákavejšia\nnajskákavejšie\nnajskákavejšieho\nnajskákavejšiemu\nnajskákavejších\nnajskákavejším\nnajskákavejšími\nnajskákavejšiu\nnajskákavejšom\nnajskákavejšou\nnajskalnatejšej\nnajskalnatejší\nnajskalnatejšia\nnajskalnatejšie\nnajskalnatejšieho\nnajskalnatejšiemu\nnajskalnatejších\nnajskalnatejším\nnajskalnatejšími\nnajskalnatejšiu\nnajskalnatejšom\nnajskalnatejšou\nnajskalnejší\nnajskazonosnejšej\nnajskazonosnejší\nnajskazonosnejšia\nnajskazonosnejšie\nnajskazonosnejšieho\nnajskazonosnejšiemu\nnajskazonosnejších\nnajskazonosnejším\nnajskazonosnejšími\nnajskazonosnejšiu\nnajskazonosnejšom\nnajskazonosnejšou\nnajskeptickejšej\nnajskeptickejší\nNajskeptickejší\nnajskeptickejšia\nnajskeptickejšie\nnajskeptickejšieho\nnajskeptickejšiemu\nnajskeptickejších\nnajskeptickejším\nnajskeptickejšími\nnajskeptickejšiu\nnajskeptickejšom\nnajskeptickejšou\nnajskladanejšej\nnajskladanejší\nnajskladanejšia\nnajskladanejšie\nnajskladanejšieho\nnajskladanejšiemu\nnajskladanejších\nnajskladanejším\nnajskladanejšími\nnajskladanejšiu\nnajskladanejšom\nnajskladanejšou\nnajskladnejšej\nnajskladnejší\nnajskladnejšia\nnajskladnejšie\nnajskladnejšieho\nnajskladnejšiemu\nnajskladnejších\nnajskladnejším\nnajskladnejšími\nnajskladnejšiu\nnajskladnejšom\nnajskladnejšou\nnajsklamanejšej\nnajsklamanejší\nnajsklamanejšia\nnajsklamanejšie\nnajsklamanejšieho\nnajsklamanejšiemu\nnajsklamanejších\nnajsklamanejším\nnajsklamanejšími\nnajsklamanejšiu\nnajsklamanejšom\nnajsklamanejšou\nnajsklerotickejšej\nnajsklerotickejší\nnajsklerotickejšia\nnajsklerotickejšie\nnajsklerotickejšieho\nnajsklerotickejšiemu\nnajsklerotickejších\nnajsklerotickejším\nnajsklerotickejšími\nnajsklerotickejšiu\nnajsklerotickejšom\nnajsklerotickejšou\nnajskleslejšej\nnajskleslejší\nnajskleslejšia\nnajskleslejšie\nnajskleslejšieho\nnajskleslejšiemu\nnajskleslejších\nnajskleslejším\nnajskleslejšími\nnajskleslejšiu\nnajskleslejšom\nnajskleslejšou\nnajsklesnutejšej\nnajsklesnutejší\nnajsklesnutejšia\nnajsklesnutejšie\nnajsklesnutejšieho\nnajsklesnutejšiemu\nnajsklesnutejších\nnajsklesnutejším\nnajsklesnutejšími\nnajsklesnutejšiu\nnajsklesnutejšom\nnajsklesnutejšou\nnajsklovitejšej\nnajsklovitejší\nnajsklovitejšia\nnajsklovitejšie\nnajsklovitejšieho\nnajsklovitejšiemu\nnajsklovitejších\nnajsklovitejším\nnajsklovitejšími\nnajsklovitejšiu\nnajsklovitejšom\nnajsklovitejšou\nnajskľúčenejšej\nnajskľúčenejší\nnajskľúčenejšia\nnajskľúčenejšie\nnajskľúčenejšieho\nnajskľúčenejšiemu\nnajskľúčenejších\nnajskľúčenejším\nnajskľúčenejšími\nnajskľúčenejšiu\nnajskľúčenejšom\nnajskľúčenejšou\nnajskorej\nnajskormútenejšej\nnajskormútenejší\nnajskormútenejšia\nnajskormútenejšie\nnajskormútenejšieho\nnajskormútenejšiemu\nnajskormútenejších\nnajskormútenejším\nnajskormútenejšími\nnajskormútenejšiu\nnajskormútenejšom\nnajskormútenejšou\nnajskorumpovanejšej\nnajskorumpovanejší\nnajskorumpovanejšie\nnajskorumpovanejšieho\nnajskorumpovanejších\nnajskorumpovanejším\nnajskorumpovanejšiu\nnajskratkovitejšej\nnajskratkovitejší\nnajskratkovitejšia\nnajskratkovitejšie\nnajskratkovitejšieho\nnajskratkovitejšiemu\nnajskratkovitejších\nnajskratkovitejším\nnajskratkovitejšími\nnajskratkovitejšiu\nnajskratkovitejšom\nnajskratkovitejšou\nnajskrehnutejšej\nnajskrehnutejší\nnajskrehnutejšia\nnajskrehnutejšie\nnajskrehnutejšieho\nnajskrehnutejšiemu\nnajskrehnutejších\nnajskrehnutejším\nnajskrehnutejšími\nnajskrehnutejšiu\nnajskrehnutejšom\nnajskrehnutejšou\nnajskreslenejšej\nnajskreslenejší\nnajskreslenejšia\nnajskreslenejšie\nnajskreslenejšieho\nnajskreslenejšiemu\nnajskreslenejších\nnajskreslenejším\nnajskreslenejšími\nnajskreslenejšiu\nnajskreslenejšom\nnajskreslenejšou\nnajskrivodlivejšej\nnajskrivodlivejší\nnajskrivodlivejšia\nnajskrivodlivejšie\nnajskrivodlivejšieho\nnajskrivodlivejšiemu\nnajskrivodlivejších\nnajskrivodlivejším\nnajskrivodlivejšími\nnajskrivodlivejšiu\nnajskrivodlivejšom\nnajskrivodlivejšou\nnajskromnejšej\nnajskromnejší\nnajskromnejšia\nnajskromnejšie\nNajskromnejšie\nnajskromnejšieho\nnajskromnejšiemu\nnajskromnejších\nnajskromnejším\nnajskromnejšími\nnajskromnejšiu\nnajskromnejšom\nnajskromnejšou\nnajskrúšenejšej\nnajskrúšenejší\nnajskrúšenejšia\nnajskrúšenejšie\nnajskrúšenejšieho\nnajskrúšenejšiemu\nnajskrúšenejších\nnajskrúšenejším\nnajskrúšenejšími\nnajskrúšenejšiu\nnajskrúšenejšom\nnajskrúšenejšou\nnajskrutkovitejšej\nnajskrutkovitejší\nnajskrutkovitejšia\nnajskrutkovitejšie\nnajskrutkovitejšieho\nnajskrutkovitejšiemu\nnajskrutkovitejších\nnajskrutkovitejším\nnajskrutkovitejšími\nnajskrutkovitejšiu\nnajskrutkovitejšom\nnajskrutkovitejšou\nnajskrytejšej\nnajskrytejší\nnajskrytejšia\nnajskrytejšie\nnajskrytejšieho\nnajskrytejšiemu\nnajskrytejších\nnajskrytejším\nnajskrytejšími\nnajskrytejšiu\nnajskrytejšom\nnajskrytejšou\nnajskúmavejšej\nnajskúmavejší\nnajskúmavejšia\nnajskúmavejšie\nnajskúmavejšieho\nnajskúmavejšiemu\nnajskúmavejších\nnajskúmavejším\nnajskúmavejšími\nnajskúmavejšiu\nnajskúmavejšom\nnajskúmavejšou\nnajskupánskejšej\nnajskupánskejší\nnajskupánskejšia\nnajskupánskejšie\nnajskupánskejšieho\nnajskupánskejšiemu\nnajskupánskejších\nnajskupánskejším\nnajskupánskejšími\nnajskupánskejšiu\nnajskupánskejšom\nnajskupánskejšou\nnajskúpejšej\nnajskúpejší\nnajskúpejšia\nnajskúpejšie\nnajskúpejšieho\nnajskúpejšiemu\nnajskúpejších\nnajskúpejším\nnajskúpejšími\nnajskúpejšiu\nnajskúpejšom\nnajskúpejšou\nnajskúsenejšej\nnajskúsenejší\nnajskúsenejšia\nnajskúsenejšie\nnajskúsenejšieho\nnajskúsenejšiemu\nnajskúsenejších\nnajskúsenejším\nnajskúsenejšími\nnajskúsenejšiu\nnajskúsenejšom\nnajskúsenejšou\nnajskusmejšej\nnajskusmejší\nnajskusmejšia\nnajskusmejšie\nnajskusmejšieho\nnajskusmejšiemu\nnajskusmejších\nnajskusmejším\nnajskusmejšími\nnajskusmejšiu\nnajskusmejšom\nnajskusmejšou\nnajslabomyseľnejšej\nnajslabomyseľnejší\nnajslabomyseľnejšia\nnajslabomyseľnejšie\nnajslabomyseľnejšieho\nnajslabomyseľnejšiemu\nnajslabomyseľnejších\nnajslabomyseľnejším\nnajslabomyseľnejšími\nnajslabomyseľnejšiu\nnajslabomyseľnejšom\nnajslabomyseľnejšou\nnajslabozrakejšej\nnajslabozrakejší\nnajslabozrakejšia\nnajslabozrakejšie\nnajslabozrakejšieho\nnajslabozrakejšiemu\nnajslabozrakejších\nnajslabozrakejším\nnajslabozrakejšími\nnajslabozrakejšiu\nnajslabozrakejšom\nnajslabozrakejšou\nnajslanšej\nnajslanší\nnajslanšia\nnajslanšie\nnajslanšieho\nnajslanšiemu\nnajslanších\nnajslanším\nnajslanšími\nnajslanšiu\nnajslanšom\nnajslanšou\nnajslastnejšej\nnajslastnejší\nnajslastnejšia\nnajslastnejšie\nnajslastnejšieho\nnajslastnejšiemu\nnajslastnejších\nnajslastnejším\nnajslastnejšími\nnajslastnejšiu\nnajslastnejšom\nnajslastnejšou\nnajslávnostnejšej\nnajslávnostnejší\nnajslávnostnejšia\nnajslávnostnejšie\nnajslávnostnejšieho\nnajslávnostnejšiemu\nnajslávnostnejších\nnajslávnostnejším\nnajslávnostnejšími\nnajslávnostnejšiu\nnajslávnostnejšom\nnajslávnostnejšou\nnajslávybažnejšej\nnajslávybažnejší\nnajslávybažnejšia\nnajslávybažnejšie\nnajslávybažnejšieho\nnajslávybažnejšiemu\nnajslávybažnejších\nnajslávybažnejším\nnajslávybažnejšími\nnajslávybažnejšiu\nnajslávybažnejšom\nnajslávybažnejšou\nnajsledovanejšej\nnajsledovanejší\nnajsledovanejšia\nnajsledovanejšie\nnajsledovanejšieho\nnajsledovanejšiemu\nnajsledovanejších\nnajsledovanejším\nNajsledovanejšími\nnajsledovanejšiu\nnajsledovanejšom\nnajsledovanejšou\nnajsliedivejšej\nnajsliedivejší\nnajsliedivejšia\nnajsliedivejšie\nnajsliedivejšieho\nnajsliedivejšiemu\nnajsliedivejších\nnajsliedivejším\nnajsliedivejšími\nnajsliedivejšiu\nnajsliedivejšom\nnajsliedivejšou\nnajslizkejšej\nnajslizkejší\nnajslizkejšia\nnajslizkejšie\nnajslizkejšieho\nnajslizkejšiemu\nnajslizkejších\nnajslizkejším\nnajslizkejšími\nnajslizkejšiu\nnajslizkejšom\nnajslizkejšou\nnajslizovitejšej\nnajslizovitejší\nnajslizovitejšia\nnajslizovitejšie\nnajslizovitejšieho\nnajslizovitejšiemu\nnajslizovitejších\nnajslizovitejším\nnajslizovitejšími\nnajslizovitejšiu\nnajslizovitejšom\nnajslizovitejšou\nnajslnečnejšej\nnajslnečnejší\nnajslnečnejšia\nnajslnečnejšie\nnajslnečnejšieho\nnajslnečnejšiemu\nnajslnečnejších\nnajslnečnejším\nnajslnečnejšími\nnajslnečnejšiu\nnajslnečnejšom\nnajslnečnejšou\nnajslobodnejšej\nnajslobodnejší\nnajslobodnejšia\nnajslobodnejšie\nnajslobodnejšieho\nnajslobodnejšiemu\nnajslobodnejších\nnajslobodnejším\nnajslobodnejšími\nnajslobodnejšiu\nnajslobodnejšom\nnajslobodnejšou\nnajslobodomyseľnejšej\nnajslobodomyseľnejší\nnajslobodomyseľnejšia\nnajslobodomyseľnejšie\nnajslobodomyseľnejšieho\nnajslobodomyseľnejšiemu\nnajslobodomyseľnejších\nnajslobodomyseľnejším\nnajslobodomyseľnejšími\nnajslobodomyseľnejšiu\nnajslobodomyseľnejšom\nnajslobodomyseľnejšou\nnajslobodymilovnejšej\nnajslobodymilovnejší\nnajslobodymilovnejšia\nnajslobodymilovnejšie\nnajslobodymilovnejšieho\nnajslobodymilovnejšiemu\nnajslobodymilovnejších\nnajslobodymilovnejším\nnajslobodymilovnejšími\nnajslobodymilovnejšiu\nnajslobodymilovnejšom\nnajslobodymilovnejšou\nnajslovanskejšej\nnajslovanskejší\nnajslovanskejšia\nnajslovanskejšie\nnajslovanskejšieho\nnajslovanskejšiemu\nnajslovanskejších\nnajslovanskejším\nnajslovanskejšími\nnajslovanskejšiu\nnajslovanskejšom\nnajslovanskejšou\nnajslovenskejšej\nnajslovenskejší\nnajslovenskejšia\nnajslovenskejšie\nnajslovenskejšieho\nnajslovenskejšiemu\nnajslovenskejších\nnajslovenskejším\nnajslovenskejšími\nnajslovenskejšiu\nnajslovenskejšom\nnajslovenskejšou\nnajslovinskejšej\nnajslovinskejší\nnajslovinskejšia\nnajslovinskejšie\nnajslovinskejšieho\nnajslovinskejšiemu\nnajslovinskejších\nnajslovinskejším\nnajslovinskejšími\nnajslovinskejšiu\nnajslovinskejšom\nnajslovinskejšou\nnajsľubnejšej\nnajsľubnejší\nnajsľubnejšia\nnajsľubnejšie\nnajsľubnejšieho\nnajsľubnejšiemu\nnajsľubnejších\nnajsľubnejším\nnajsľubnejšími\nnajsľubnejšiu\nnajsľubnejšom\nnajsľubnejšou\nnajslušivejšej\nnajslušivejší\nnajslušivejšia\nnajslušivejšie\nnajslušivejšieho\nnajslušivejšiemu\nnajslušivejších\nnajslušivejším\nnajslušivejšími\nnajslušivejšiu\nnajslušivejšom\nnajslušivejšou\nnajslušnejšej\nnajslušnejší\nnajslušnejšia\nnajslušnejšie\nnajslušnejšieho\nnajslušnejšiemu\nnajslušnejších\nnajslušnejším\nnajslušnejšími\nnajslušnejšiu\nnajslušnejšom\nnajslušnejšou\nnajslzavejšej\nnajslzavejší\nnajslzavejšia\nnajslzavejšie\nnajslzavejšieho\nnajslzavejšiemu\nnajslzavejších\nnajslzavejším\nnajslzavejšími\nnajslzavejšiu\nnajslzavejšom\nnajslzavejšou\nnajsmädnejšej\nnajsmädnejší\nnajsmädnejšia\nnajsmädnejšie\nnajsmädnejšieho\nnajsmädnejšiemu\nnajsmädnejších\nnajsmädnejším\nnajsmädnejšími\nnajsmädnejšiu\nnajsmädnejšom\nnajsmädnejšou\nnajsmelšej\nnajsmelší\nnajsmelšia\nnajsmelšie\nnajsmelšieho\nnajsmelšiemu\nnajsmelších\nnajsmelším\nnajsmelšími\nnajsmelšiu\nnajsmelšom\nnajsmelšou\nnajsmerodajnejšej\nnajsmerodajnejší\nnajsmerodajnejšia\nnajsmerodajnejšie\nnajsmerodajnejšieho\nnajsmerodajnejšiemu\nnajsmerodajnejších\nnajsmerodajnejším\nnajsmerodajnejšími\nnajsmerodajnejšiu\nnajsmerodajnejšom\nnajsmerodajnejšou\nnajsmiešnejšej\nnajsmiešnejší\nnajsmiešnejšia\nNajsmiešnejšia\nnajsmiešnejšie\nnajsmiešnejšieho\nnajsmiešnejšiemu\nnajsmiešnejších\nnajsmiešnejším\nnajsmiešnejšími\nnajsmiešnejšiu\nnajsmiešnejšom\nnajsmiešnejšou\nNajsmiešnejšou\nnajsmilnejšej\nnajsmilnejší\nnajsmilnejšia\nnajsmilnejšie\nnajsmilnejšieho\nnajsmilnejšiemu\nnajsmilnejších\nnajsmilnejším\nnajsmilnejšími\nnajsmilnejšiu\nnajsmilnejšom\nnajsmilnejšou\nnajsmradľavejšej\nnajsmradľavejší\nnajsmradľavejšia\nnajsmradľavejšie\nnajsmradľavejšieho\nnajsmradľavejšiemu\nnajsmradľavejších\nnajsmradľavejším\nnajsmradľavejšími\nnajsmradľavejšiu\nnajsmradľavejšom\nnajsmradľavejšou\nnajsmrtonosnejšej\nnajsmrtonosnejší\nnajsmrtonosnejšia\nnajsmrtonosnejšie\nnajsmrtonosnejšieho\nnajsmrtonosnejšiemu\nnajsmrtonosnejších\nnajsmrtonosnejším\nnajsmrtonosnejšími\nnajsmrtonosnejšiu\nnajsmrtonosnejšom\nnajsmrtonosnejšou\nnajsmutnejšej\nnajsmutnejší\nnajsmutnejšia\nnajsmutnejšie\nNajsmutnejšie\nnajsmutnejšieho\nnajsmutnejšiemu\nnajsmutnejších\nnajsmutnejším\nnajsmutnejšími\nnajsmutnejšiu\nnajsmutnejšom\nnajsmutnejšou\nnajsmútočnejšej\nnajsmútočnejší\nnajsmútočnejšia\nnajsmútočnejšie\nnajsmútočnejšieho\nnajsmútočnejšiemu\nnajsmútočnejších\nnajsmútočnejším\nnajsmútočnejšími\nnajsmútočnejšiu\nnajsmútočnejšom\nnajsmútočnejšou\nnajsnaživejšej\nnajsnaživejší\nnajsnaživejšia\nnajsnaživejšie\nnajsnaživejšieho\nnajsnaživejšiemu\nnajsnaživejších\nnajsnaživejším\nnajsnaživejšími\nnajsnaživejšiu\nnajsnaživejšom\nnajsnaživejšou\nnajsnivejšej\nnajsnivejší\nnajsnivejšia\nnajsnivejšie\nnajsnivejšieho\nnajsnivejšiemu\nnajsnivejších\nnajsnivejším\nnajsnivejšími\nnajsnivejšiu\nnajsnivejšom\nnajsnivejšou\nnajsnobskejšej\nnajsnobskejší\nnajsnobskejšia\nnajsnobskejšie\nnajsnobskejšieho\nnajsnobskejšiemu\nnajsnobskejších\nnajsnobskejším\nnajsnobskejšími\nnajsnobskejšiu\nnajsnobskejšom\nnajsnobskejšou\nnajsociálnejší\nnajsociálnejšia\nnajsociálnejšie\nnajsociálnejších\nnajsociálnejším\nnajsofistickejšej\nnajsofistickejší\nnajsofistickejšia\nnajsofistickejšie\nnajsofistickejšieho\nnajsofistickejšiemu\nnajsofistickejších\nnajsofistickejším\nnajsofistickejšími\nnajsofistickejšiu\nnajsofistickejšom\nnajsofistickejšou\nnajsolenejšej\nnajsolenejší\nnajsolenejšia\nnajsolenejšie\nnajsolenejšieho\nnajsolenejšiemu\nnajsolenejších\nnajsolenejším\nnajsolenejšími\nnajsolenejšiu\nnajsolenejšom\nnajsolenejšou\nnajsolidárnejšej\nnajsolidárnejší\nnajsolidárnejšia\nnajsolidárnejšie\nnajsolidárnejšieho\nnajsolidárnejšiemu\nnajsolidárnejších\nnajsolidárnejším\nnajsolidárnejšími\nnajsolidárnejšiu\nnajsolidárnejšom\nnajsolidárnejšou\nnajsolídnejšej\nnajsolídnejší\nnajsolídnejšia\nnajsolídnejšie\nnajsolídnejšieho\nnajsolídnejšiemu\nnajsolídnejších\nnajsolídnejším\nnajsolídnejšími\nNajsolídnejšími\nnajsolídnejšiu\nnajsolídnejšom\nnajsolídnejšou\nnajsolventnejšej\nnajsolventnejší\nnajsolventnejšia\nnajsolventnejšie\nnajsolventnejšieho\nnajsolventnejšiemu\nnajsolventnejších\nnajsolventnejším\nnajsolventnejšími\nnajsolventnejšiu\nnajsolventnejšom\nnajsolventnejšou\nnajsonórnejšej\nnajsonórnejší\nnajsonórnejšia\nnajsonórnejšie\nnajsonórnejšieho\nnajsonórnejšiemu\nnajsonórnejších\nnajsonórnejším\nnajsonórnejšími\nnajsonórnejšiu\nnajsonórnejšom\nnajsonórnejšou\nnajsopečnatejšej\nnajsopečnatejší\nnajsopečnatejšia\nnajsopečnatejšie\nnajsopečnatejšieho\nnajsopečnatejšiemu\nnajsopečnatejších\nnajsopečnatejším\nnajsopečnatejšími\nnajsopečnatejšiu\nnajsopečnatejšom\nnajsopečnatejšou\nnajsopľavejšej\nnajsopľavejší\nnajsopľavejšia\nnajsopľavejšie\nnajsopľavejšieho\nnajsopľavejšiemu\nnajsopľavejších\nnajsopľavejším\nnajsopľavejšími\nnajsopľavejšiu\nnajsopľavejšom\nnajsopľavejšou\nnajsošnejšej\nnajsošnejší\nnajsošnejšia\nnajsošnejšie\nnajsošnejšieho\nnajsošnejšiemu\nnajsošnejších\nnajsošnejším\nnajsošnejšími\nnajsošnejšiu\nnajsošnejšom\nnajsošnejšou\nnajspanilejšej\nnajspanilejší\nnajspanilejšia\nnajspanilejšie\nnajspanilejšieho\nnajspanilejšiemu\nnajspanilejších\nnajspanilejším\nnajspanilejšími\nnajspanilejšiu\nnajspanilejšom\nnajspanilejšou\nnajsparnejšej\nnajsparnejší\nnajsparnejšia\nnajsparnejšie\nnajsparnejšieho\nnajsparnejšiemu\nnajsparnejších\nnajsparnejším\nnajsparnejšími\nnajsparnejšiu\nnajsparnejšom\nnajsparnejšou\nnajsparťanskejšej\nnajsparťanskejší\nnajsparťanskejšia\nnajsparťanskejšie\nnajsparťanskejšieho\nnajsparťanskejšiemu\nnajsparťanskejších\nnajsparťanskejším\nnajsparťanskejšími\nnajsparťanskejšiu\nnajsparťanskejšom\nnajsparťanskejšou\nnajspasiteľnejšej\nnajspasiteľnejší\nnajspasiteľnejšia\nnajspasiteľnejšie\nnajspasiteľnejšieho\nnajspasiteľnejšiemu\nnajspasiteľnejších\nnajspasiteľnejším\nnajspasiteľnejšími\nnajspasiteľnejšiu\nnajspasiteľnejšom\nnajspasiteľnejšou\nnajspásnejšej\nnajspásnejší\nnajspásnejšia\nnajspásnejšie\nnajspásnejšieho\nnajspásnejšiemu\nnajspásnejších\nnajspásnejším\nnajspásnejšími\nnajspásnejšiu\nnajspásnejšom\nnajspásnejšou\nnajspätejšej\nnajspätejší\nnajspätejšia\nnajspätejšie\nnajspätejšieho\nnajspätejšiemu\nnajspätejších\nnajspätejším\nnajspätejšími\nnajspätejšiu\nnajspätejšom\nnajspätejšou\nnajspavejšej\nnajspavejší\nnajspavejšia\nnajspavejšie\nnajspavejšieho\nnajspavejšiemu\nnajspavejších\nnajspavejším\nnajspavejšími\nnajspavejšiu\nnajspavejšom\nnajspavejšou\nnajspeváckejšie\nnajspevavejšej\nnajspevavejší\nnajspevavejšia\nnajspevavejšie\nnajspevavejšieho\nnajspevavejšiemu\nnajspevavejších\nnajspevavejším\nnajspevavejšími\nnajspevavejšiu\nnajspevavejšom\nnajspevavejšou\nnajspevnejšej\nnajspevnejší\nnajspevnejšia\nnajspevnejšie\nnajspevnejšieho\nnajspevnejšiemu\nnajspevnejších\nnajspevnejším\nnajspevnejšími\nnajspevnejšiu\nnajspevnejšom\nnajspevnejšou\nnajspiatočníckejšej\nnajspiatočníckejší\nnajspiatočníckejšia\nnajspiatočníckejšie\nnajspiatočníckejšieho\nnajspiatočníckejšiemu\nnajspiatočníckejších\nnajspiatočníckejším\nnajspiatočníckejšími\nnajspiatočníckejšiu\nnajspiatočníckejšom\nnajspiatočníckejšou\nnajspisovnejšej\nnajspisovnejší\nnajspisovnejšia\nnajspisovnejšie\nnajspisovnejšieho\nnajspisovnejšiemu\nnajspisovnejších\nnajspisovnejším\nnajspisovnejšími\nnajspisovnejšiu\nnajspisovnejšom\nnajspisovnejšou\nnajsplašenejšej\nnajsplašenejší\nnajsplašenejšia\nnajsplašenejšie\nnajsplašenejšieho\nnajsplašenejšiemu\nnajsplašenejších\nnajsplašenejším\nnajsplašenejšími\nnajsplašenejšiu\nnajsplašenejšom\nnajsplašenejšou\nnajsplavnejšej\nnajsplavnejší\nnajsplavnejšia\nnajsplavnejšie\nnajsplavnejšieho\nnajsplavnejšiemu\nnajsplavnejších\nnajsplavnejším\nnajsplavnejšími\nnajsplavnejšiu\nnajsplavnejšom\nnajsplavnejšou\nnajspletitejšej\nnajspletitejší\nnajspletitejšia\nnajspletitejšie\nnajspletitejšieho\nnajspletitejšiemu\nnajspletitejších\nnajspletitejším\nnajspletitejšími\nnajspletitejšiu\nnajspletitejšom\nnajspletitejšou\nnajsplniteľnejšej\nnajsplniteľnejší\nnajsplniteľnejšia\nnajsplniteľnejšie\nnajsplniteľnejšieho\nnajsplniteľnejšiemu\nnajsplniteľnejších\nnajsplniteľnejším\nnajsplniteľnejšími\nnajsplniteľnejšiu\nnajsplniteľnejšom\nnajsplniteľnejšou\nnajsploštenejšej\nnajsploštenejší\nnajsploštenejšia\nnajsploštenejšie\nnajsploštenejšieho\nnajsploštenejšiemu\nnajsploštenejších\nnajsploštenejším\nnajsploštenejšími\nnajsploštenejšiu\nnajsploštenejšom\nnajsploštenejšou\nnajsplývavejšej\nnajsplývavejší\nnajsplývavejšia\nnajsplývavejšie\nnajsplývavejšieho\nnajsplývavejšiemu\nnajsplývavejších\nnajsplývavejším\nnajsplývavejšími\nnajsplývavejšiu\nnajsplývavejšom\nnajsplývavejšou\nnajspodnejšej\nnajspodnejší\nnajspodnejšia\nnajspodnejšie\nnajspodnejšieho\nnajspodnejšiemu\nnajspodnejších\nnajspodnejším\nnajspodnejšími\nnajspodnejšiu\nnajspodnejšom\nnajspodnejšou\nnajspojitejšej\nnajspojitejší\nnajspojitejšia\nnajspojitejšie\nnajspojitejšieho\nnajspojitejšiemu\nnajspojitejších\nnajspojitejším\nnajspojitejšími\nnajspojitejšiu\nnajspojitejšom\nnajspojitejšou\nnajspokojnejšej\nnajspokojnejší\nnajspokojnejšia\nnajspokojnejšie\nnajspokojnejšieho\nnajspokojnejšiemu\nnajspokojnejších\nnajspokojnejším\nnajspokojnejšími\nnajspokojnejšiu\nnajspokojnejšom\nnajspokojnejšou\nnajspomalenejšej\nnajspomalenejší\nnajspomalenejšia\nnajspomalenejšie\nnajspomalenejšieho\nnajspomalenejšiemu\nnajspomalenejších\nnajspomalenejším\nnajspomalenejšími\nnajspomalenejšiu\nnajspomalenejšom\nnajspomalenejšou\nnajspontánnejšej\nnajspontánnejší\nnajspontánnejšia\nnajspontánnejšie\nnajspontánnejšieho\nnajspontánnejšiemu\nnajspontánnejších\nnajspontánnejším\nnajspontánnejšími\nnajspontánnejšiu\nnajspontánnejšom\nnajspontánnejšou\nnajsporadickejšej\nnajsporadickejší\nnajsporadickejšia\nnajsporadickejšie\nnajsporadickejšieho\nnajsporadickejšiemu\nnajsporadickejších\nnajsporadickejším\nnajsporadickejšími\nnajsporadickejšiu\nnajsporadickejšom\nnajsporadickejšou\nnajsporejšej\nnajsporejší\nnajsporejšia\nnajsporejšie\nnajsporejšieho\nnajsporejšiemu\nnajsporejších\nnajsporejším\nnajsporejšími\nnajsporejšiu\nnajsporejšom\nnajsporejšou\nnajsporivejšej\nnajsporivejší\nnajsporivejšia\nnajsporivejšie\nnajsporivejšieho\nnajsporivejšiemu\nnajsporivejších\nnajsporivejším\nnajsporivejšími\nnajsporivejšiu\nnajsporivejšom\nnajsporivejšou\nnajspornejšej\nnajspornejší\nnajspornejšia\nnajspornejšie\nnajspornejšieho\nnajspornejšiemu\nnajspornejších\nnajspornejším\nNajspornejším\nnajspornejšími\nnajspornejšiu\nnajspornejšom\nnajspornejšou\nnajspôsobilejšej\nnajspôsobilejší\nnajspôsobilejšia\nnajspôsobilejšie\nnajspôsobilejšieho\nnajspôsobilejšiemu\nnajspôsobilejších\nnajspôsobilejším\nnajspôsobilejšími\nnajspôsobilejšiu\nnajspôsobilejšom\nnajspôsobilejšou\nnajspôsobnejšej\nnajspôsobnejší\nnajspôsobnejšia\nnajspôsobnejšie\nnajspôsobnejšieho\nnajspôsobnejšiemu\nnajspôsobnejších\nnajspôsobnejším\nnajspôsobnejšími\nnajspôsobnejšiu\nnajspôsobnejšom\nnajspôsobnejšou\nnajspracovateľnejšej\nnajspracovateľnejší\nnajspracovateľnejšia\nnajspracovateľnejšie\nnajspracovateľnejšieho\nnajspracovateľnejšiemu\nnajspracovateľnejších\nnajspracovateľnejším\nnajspracovateľnejšími\nnajspracovateľnejšiu\nnajspracovateľnejšom\nnajspracovateľnejšou\nnajspratnejšej\nnajspratnejší\nnajspratnejšia\nnajspratnejšie\nnajspratnejšieho\nnajspratnejšiemu\nnajspratnejších\nnajspratnejším\nnajspratnejšími\nnajspratnejšiu\nnajspratnejšom\nnajspratnejšou\nnajspriaznenejšej\nnajspriaznenejší\nnajspriaznenejšia\nnajspriaznenejšie\nnajspriaznenejšieho\nnajspriaznenejšiemu\nnajspriaznenejších\nnajspriaznenejším\nnajspriaznenejšími\nnajspriaznenejšiu\nnajspriaznenejšom\nnajspriaznenejšou\nnajspríbuznenejšej\nnajspríbuznenejší\nnajspríbuznenejšia\nnajspríbuznenejšie\nnajspríbuznenejšieho\nnajspríbuznenejšiemu\nnajspríbuznenejších\nnajspríbuznenejším\nnajspríbuznenejšími\nnajspríbuznenejšiu\nnajspríbuznenejšom\nnajspríbuznenejšou\nnajsprisahaneckejšej\nnajsprisahaneckejší\nnajsprisahaneckejšia\nnajsprisahaneckejšie\nnajsprisahaneckejšieho\nnajsprisahaneckejšiemu\nnajsprisahaneckejších\nnajsprisahaneckejším\nnajsprisahaneckejšími\nnajsprisahaneckejšiu\nnajsprisahaneckejšom\nnajsprisahaneckejšou\nnajsprostáckejšej\nnajsprostáckejší\nnajsprostáckejšia\nnajsprostáckejšie\nnajsprostáckejšieho\nnajsprostáckejšiemu\nnajsprostáckejších\nnajsprostáckejším\nnajsprostáckejšími\nnajsprostáckejšiu\nnajsprostáckejšom\nnajsprostáckejšou\nnajsprostejšej\nnajsprostejší\nnajsprostejšia\nnajsprostejšie\nnajsprostejšieho\nnajsprostejšiemu\nnajsprostejších\nnajsprostejším\nnajsprostejšími\nnajsprostejšiu\nnajsprostejšom\nnajsprostejšou\nnajsprostredkovanejšej\nnajsprostredkovanejší\nnajsprostredkovanejšia\nnajsprostredkovanejšie\nnajsprostredkovanejšieho\nnajsprostredkovanejšiemu\nnajsprostredkovanejších\nnajsprostredkovanejším\nnajsprostredkovanejšími\nnajsprostredkovanejšiu\nnajsprostredkovanejšom\nnajsprostredkovanejšou\nnajspupnejšej\nnajspupnejší\nnajspupnejšia\nnajspupnejšie\nnajspupnejšieho\nnajspupnejšiemu\nnajspupnejších\nnajspupnejším\nnajspupnejšími\nnajspupnejšiu\nnajspupnejšom\nnajspupnejšou\nnajspurnejšej\nnajspurnejší\nnajspurnejšia\nnajspurnejšie\nnajspurnejšieho\nnajspurnejšiemu\nnajspurnejších\nnajspurnejším\nnajspurnejšími\nnajspurnejšiu\nnajspurnejšom\nnajspurnejšou\nnajspustnutejšej\nnajspustnutejší\nnajspustnutejšia\nnajspustnutejšie\nnajspustnutejšieho\nnajspustnutejšiemu\nnajspustnutejších\nnajspustnutejším\nnajspustnutejšími\nnajspustnutejšiu\nnajspustnutejšom\nnajspustnutejšou\nnajspýtavejšej\nnajspýtavejší\nnajspýtavejšia\nnajspýtavejšie\nnajspýtavejšieho\nnajspýtavejšiemu\nnajspýtavejších\nnajspýtavejším\nnajspýtavejšími\nnajspýtavejšiu\nnajspýtavejšom\nnajspýtavejšou\nnajsrandovnejšej\nnajsrandovnejší\nnajsrandovnejšia\nnajsrandovnejšie\nnajsrandovnejšieho\nnajsrandovnejšiemu\nnajsrandovnejších\nnajsrandovnejším\nnajsrandovnejšími\nnajsrandovnejšiu\nnajsrandovnejšom\nnajsrandovnejšou\nnajsrbskejšej\nnajsrbskejší\nnajsrbskejšia\nnajsrbskejšie\nnajsrbskejšieho\nnajsrbskejšiemu\nnajsrbskejších\nnajsrbskejším\nnajsrbskejšími\nnajsrbskejšiu\nnajsrbskejšom\nnajsrbskejšou\nnajsrdcelomnejšej\nnajsrdcelomnejší\nnajsrdcelomnejšia\nnajsrdcelomnejšie\nnajsrdcelomnejšieho\nnajsrdcelomnejšiemu\nnajsrdcelomnejších\nnajsrdcelomnejším\nnajsrdcelomnejšími\nnajsrdcelomnejšiu\nnajsrdcelomnejšom\nnajsrdcelomnejšou\nnajsrdcervúcejšej\nnajsrdcervúcejší\nnajsrdcervúcejšia\nnajsrdcervúcejšie\nnajsrdcervúcejšieho\nnajsrdcervúcejšiemu\nnajsrdcervúcejších\nnajsrdcervúcejším\nnajsrdcervúcejšími\nnajsrdcervúcejšiu\nnajsrdcervúcejšom\nnajsrdcervúcejšou\nnajsrdcovitejšej\nnajsrdcovitejší\nnajsrdcovitejšia\nnajsrdcovitejšie\nnajsrdcovitejšieho\nnajsrdcovitejšiemu\nnajsrdcovitejších\nnajsrdcovitejším\nnajsrdcovitejšími\nnajsrdcovitejšiu\nnajsrdcovitejšom\nnajsrdcovitejšou\nnajsrdečnejší\nnajsrditejšej\nnajsrditejší\nnajsrditejšia\nnajsrditejšie\nnajsrditejšieho\nnajsrditejšiemu\nnajsrditejších\nnajsrditejším\nnajsrditejšími\nnajsrditejšiu\nnajsrditejšom\nnajsrditejšou\nnajsrdnatejšej\nnajsrdnatejší\nnajsrdnatejšia\nnajsrdnatejšie\nnajsrdnatejšieho\nnajsrdnatejšiemu\nnajsrdnatejších\nnajsrdnatejším\nnajsrdnatejšími\nnajsrdnatejšiu\nnajsrdnatejšom\nnajsrdnatejšou\nnajsrstnatejšej\nnajsrstnatejší\nnajsrstnatejšia\nnajsrstnatejšie\nnajsrstnatejšieho\nnajsrstnatejšiemu\nnajsrstnatejších\nnajsrstnatejším\nnajsrstnatejšími\nnajsrstnatejšiu\nnajsrstnatejšom\nnajsrstnatejšou\nnajstabilizovanejší\nnajstabilizovanejšie\nnajstabilizovanejších\nnajstabilizovanejším\nnajstabilnejšej\nnajstabilnejší\nnajstabilnejšia\nnajstabilnejšie\nnajstabilnejšieho\nnajstabilnejšiemu\nnajstabilnejších\nnajstabilnejším\nnajstabilnejšími\nnajstabilnejšiu\nnajstabilnejšom\nnajstabilnejšou\nnajstádovitejšej\nnajstádovitejší\nnajstádovitejšia\nnajstádovitejšie\nnajstádovitejšieho\nnajstádovitejšiemu\nnajstádovitejších\nnajstádovitejším\nnajstádovitejšími\nnajstádovitejšiu\nnajstádovitejšom\nnajstádovitejšou\nnajsťahanejšej\nnajsťahanejší\nnajsťahanejšia\nnajsťahanejšie\nnajsťahanejšieho\nnajsťahanejšiemu\nnajsťahanejších\nnajsťahanejším\nnajsťahanejšími\nnajsťahanejšiu\nnajsťahanejšom\nnajsťahanejšou\nnajstálejšej\nnajstálejší\nnajstálejšia\nnajstálejšie\nnajstálejšieho\nnajstálejšiemu\nnajstálejších\nnajstálejším\nnajstálejšími\nnajstálejšiu\nnajstálejšom\nnajstálejšou\nnajstareckejšej\nnajstareckejší\nnajstareckejšia\nnajstareckejšie\nnajstareckejšieho\nnajstareckejšiemu\nnajstareckejších\nnajstareckejším\nnajstareckejšími\nnajstareckejšiu\nnajstareckejšom\nnajstareckejšou\nnajstarobylejšej\nnajstarobylejší\nnajstarobylejšia\nnajstarobylejšie\nnajstarobylejšieho\nnajstarobylejšiemu\nnajstarobylejších\nnajstarobylejším\nnajstarobylejšími\nnajstarobylejšiu\nnajstarobylejšom\nnajstarobylejšou\nnajstarodávnejšej\nnajstarodávnejší\nnajstarodávnejšia\nnajstarodávnejšie\nnajstarodávnejšieho\nnajstarodávnejšiemu\nnajstarodávnejších\nnajstarodávnejším\nnajstarodávnejšími\nnajstarodávnejšiu\nnajstarodávnejšom\nnajstarodávnejšou\nnajstaromilskejšej\nnajstaromilskejší\nnajstaromilskejšia\nnajstaromilskejšie\nnajstaromilskejšieho\nnajstaromilskejšiemu\nnajstaromilskejších\nnajstaromilskejším\nnajstaromilskejšími\nnajstaromilskejšiu\nnajstaromilskejšom\nnajstaromilskejšou\nnajstaromódnejšej\nnajstaromódnejší\nnajstaromódnejšia\nnajstaromódnejšie\nnajstaromódnejšieho\nnajstaromódnejšiemu\nnajstaromódnejších\nnajstaromódnejším\nnajstaromódnejšími\nnajstaromódnejšiu\nnajstaromódnejšom\nnajstaromódnejšou\nnajstarostlivejšej\nnajstarostlivejší\nnajstarostlivejšia\nnajstarostlivejšie\nnajstarostlivejšieho\nnajstarostlivejšiemu\nnajstarostlivejších\nnajstarostlivejším\nnajstarostlivejšími\nnajstarostlivejšiu\nnajstarostlivejšom\nnajstarostlivejšou\nnajstatickejšie\nnajstatnejšej\nnajstatnejší\nnajstatnejšia\nnajstatnejšie\nnajstatnejšieho\nnajstatnejšiemu\nnajstatnejších\nnajstatnejším\nnajstatnejšími\nnajstatnejšiu\nnajstatnejšom\nnajstatnejšou\nnajstatočnejšej\nnajstatočnejší\nnajstatočnejšia\nnajstatočnejšie\nnajstatočnejšieho\nnajstatočnejšiemu\nnajstatočnejších\nnajstatočnejším\nnajstatočnejšími\nnajstatočnejšiu\nnajstatočnejšom\nnajstatočnejšou\nnajsťaženejšej\nnajsťaženejší\nnajsťaženejšia\nnajsťaženejšie\nnajsťaženejšieho\nnajsťaženejšiemu\nnajsťaženejších\nnajsťaženejším\nnajsťaženejšími\nnajsťaženejšiu\nnajsťaženejšom\nnajsťaženejšou\nnajsteblovitejšej\nnajsteblovitejší\nnajsteblovitejšia\nnajsteblovitejšie\nnajsteblovitejšieho\nnajsteblovitejšiemu\nnajsteblovitejších\nnajsteblovitejším\nnajsteblovitejšími\nnajsteblovitejšiu\nnajsteblovitejšom\nnajsteblovitejšou\nnajstepnatejšej\nnajstepnatejší\nnajstepnatejšia\nnajstepnatejšie\nnajstepnatejšieho\nnajstepnatejšiemu\nnajstepnatejších\nnajstepnatejším\nnajstepnatejšími\nnajstepnatejšiu\nnajstepnatejšom\nnajstepnatejšou\nnajstereotypnejšej\nnajstereotypnejší\nnajstereotypnejšia\nnajstereotypnejšie\nnajstereotypnejšieho\nnajstereotypnejšiemu\nnajstereotypnejších\nnajstereotypnejším\nnajstereotypnejšími\nnajstereotypnejšiu\nnajstereotypnejšom\nnajstereotypnejšou\nnajsterilnejšej\nnajsterilnejší\nnajsterilnejšia\nnajsterilnejšie\nnajsterilnejšieho\nnajsterilnejšiemu\nnajsterilnejších\nnajsterilnejším\nnajsterilnejšími\nnajsterilnejšiu\nnajsterilnejšom\nnajsterilnejšou\nnajstiesnenejšej\nnajstiesnenejší\nnajstiesnenejšia\nnajstiesnenejšie\nnajstiesnenejšieho\nnajstiesnenejšiemu\nnajstiesnenejších\nnajstiesnenejším\nnajstiesnenejšími\nnajstiesnenejšiu\nnajstiesnenejšom\nnajstiesnenejšou\nnajstiesňujúcejšej\nnajstiesňujúcejší\nnajstiesňujúcejšia\nnajstiesňujúcejšie\nnajstiesňujúcejšieho\nnajstiesňujúcejšiemu\nnajstiesňujúcejších\nnajstiesňujúcejším\nnajstiesňujúcejšími\nnajstiesňujúcejšiu\nnajstiesňujúcejšom\nnajstiesňujúcejšou\nnajstĺpovitejšej\nnajstĺpovitejší\nnajstĺpovitejšia\nnajstĺpovitejšie\nnajstĺpovitejšieho\nnajstĺpovitejšiemu\nnajstĺpovitejších\nnajstĺpovitejším\nnajstĺpovitejšími\nnajstĺpovitejšiu\nnajstĺpovitejšom\nnajstĺpovitejšou\nnajstmelenejšej\nnajstmelenejší\nnajstmelenejšia\nnajstmelenejšie\nnajstmelenejšieho\nnajstmelenejšiemu\nnajstmelenejších\nnajstmelenejším\nnajstmelenejšími\nnajstmelenejšiu\nnajstmelenejšom\nnajstmelenejšou\nnajstrakatejšej\nnajstrakatejší\nnajstrakatejšia\nnajstrakatejšie\nnajstrakatejšieho\nnajstrakatejšiemu\nnajstrakatejších\nnajstrakatejším\nnajstrakatejšími\nnajstrakatejšiu\nnajstrakatejšom\nnajstrakatejšou\nnajstraníckejšej\nnajstraníckejší\nnajstraníckejšia\nnajstraníckejšie\nnajstraníckejšieho\nnajstraníckejšiemu\nnajstraníckejších\nnajstraníckejším\nnajstraníckejšími\nnajstraníckejšiu\nnajstraníckejšom\nnajstraníckejšou\nnajstrapatejšej\nnajstrapatejší\nnajstrapatejšia\nnajstrapatejšie\nnajstrapatejšieho\nnajstrapatejšiemu\nnajstrapatejších\nnajstrapatejším\nnajstrapatejšími\nnajstrapatejšiu\nnajstrapatejšom\nnajstrapatejšou\nnajstrapcovitejšej\nnajstrapcovitejší\nnajstrapcovitejšia\nnajstrapcovitejšie\nnajstrapcovitejšieho\nnajstrapcovitejšiemu\nnajstrapcovitejších\nnajstrapcovitejším\nnajstrapcovitejšími\nnajstrapcovitejšiu\nnajstrapcovitejšom\nnajstrapcovitejšou\nnajstrápenejšej\nnajstrápenejší\nnajstrápenejšia\nnajstrápenejšie\nnajstrápenejšieho\nnajstrápenejšiemu\nnajstrápenejších\nnajstrápenejším\nnajstrápenejšími\nnajstrápenejšiu\nnajstrápenejšom\nnajstrápenejšou\nnajstrastiplnejšej\nnajstrastiplnejší\nnajstrastiplnejšia\nnajstrastiplnejšie\nnajstrastiplnejšieho\nnajstrastiplnejšiemu\nnajstrastiplnejších\nnajstrastiplnejším\nnajstrastiplnejšími\nnajstrastiplnejšiu\nnajstrastiplnejšom\nnajstrastiplnejšou\nnajstrastnejšej\nnajstrastnejší\nnajstrastnejšia\nnajstrastnejšie\nnajstrastnejšieho\nnajstrastnejšiemu\nnajstrastnejších\nnajstrastnejším\nnajstrastnejšími\nnajstrastnejšiu\nnajstrastnejšom\nnajstrastnejšou\nnajstrašidelnejšej\nnajstrašidelnejší\nnajstrašidelnejšia\nnajstrašidelnejšie\nnajstrašidelnejšieho\nnajstrašidelnejšiemu\nnajstrašidelnejších\nnajstrašidelnejším\nnajstrašidelnejšími\nnajstrašidelnejšiu\nnajstrašidelnejšom\nnajstrašidelnejšou\nnajstrašlivejšej\nnajstrašlivejší\nnajstrašlivejšia\nnajstrašlivejšie\nnajstrašlivejšieho\nnajstrašlivejšiemu\nnajstrašlivejších\nnajstrašlivejším\nnajstrašlivejšími\nnajstrašlivejšiu\nnajstrašlivejšom\nnajstrašlivejšou\nnajstrategickejšej\nnajstrategickejší\nnajstrategickejšia\nnajstrategickejšie\nnajstrategickejšieho\nnajstrategickejšiemu\nnajstrategickejších\nnajstrategickejším\nnajstrategickejšími\nnajstrategickejšiu\nnajstrategickejšom\nnajstrategickejšou\nnajstratenejšej\nnajstratenejší\nnajstratenejšia\nnajstratenejšie\nnajstratenejšieho\nnajstratenejšiemu\nnajstratenejších\nnajstratenejším\nnajstratenejšími\nnajstratenejšiu\nnajstratenejšom\nnajstratenejšou\nnajstratovejšej\nnajstratovejší\nnajstratovejšia\nnajstratovejšie\nnajstratovejšieho\nnajstratovejšiemu\nnajstratovejších\nnajstratovejším\nnajstratovejšími\nnajstratovejšiu\nnajstratovejšom\nnajstratovejšou\nnajstráviteľnejšej\nnajstráviteľnejší\nnajstráviteľnejšia\nnajstráviteľnejšie\nnajstráviteľnejšieho\nnajstráviteľnejšiemu\nnajstráviteľnejších\nnajstráviteľnejším\nnajstráviteľnejšími\nnajstráviteľnejšiu\nnajstráviteľnejšom\nnajstráviteľnejšou\nnajstredovejšie\nnajstrelenejšej\nnajstrelenejší\nnajstrelenejšia\nnajstrelenejšie\nnajstrelenejšieho\nnajstrelenejšiemu\nnajstrelenejších\nnajstrelenejším\nnajstrelenejšími\nnajstrelenejšiu\nnajstrelenejšom\nnajstrelenejšou\nnajstresovejšej\nnajstresovejší\nnajstresovejšia\nnajstresovejšie\nnajstresovejšieho\nnajstresovejšiemu\nnajstresovejších\nnajstresovejším\nnajstresovejšími\nnajstresovejšiu\nnajstresovejšom\nnajstresovejšou\nnajstrhanejšej\nnajstrhanejší\nnajstrhanejšia\nnajstrhanejšie\nnajstrhanejšieho\nnajstrhanejšiemu\nnajstrhanejších\nnajstrhanejším\nnajstrhanejšími\nnajstrhanejšiu\nnajstrhanejšom\nnajstrhanejšou\nnajstrhujúcejšej\nnajstrhujúcejší\nnajstrhujúcejšia\nnajstrhujúcejšie\nnajstrhujúcejšieho\nnajstrhujúcejšiemu\nnajstrhujúcejších\nnajstrhujúcejším\nnajstrhujúcejšími\nnajstrhujúcejšiu\nnajstrhujúcejšom\nnajstrhujúcejšou\nnajstriebornejšej\nnajstriebornejší\nnajstriebornejšia\nnajstriebornejšie\nnajstriebornejšieho\nnajstriebornejšiemu\nnajstriebornejších\nnajstriebornejším\nnajstriebornejšími\nnajstriebornejšiu\nnajstriebornejšom\nnajstriebornejšou\nnajstriebristejšej\nnajstriebristejší\nnajstriebristejšia\nnajstriebristejšie\nnajstriebristejšieho\nnajstriebristejšiemu\nnajstriebristejších\nnajstriebristejším\nnajstriebristejšími\nnajstriebristejšiu\nnajstriebristejšom\nnajstriebristejšou\nnajstriedmejšej\nnajstriedmejší\nnajstriedmejšia\nnajstriedmejšie\nnajstriedmejšieho\nnajstriedmejšiemu\nnajstriedmejších\nnajstriedmejším\nnajstriedmejšími\nnajstriedmejšiu\nnajstriedmejšom\nnajstriedmejšou\nnajstriekanejšej\nnajstriekanejší\nnajstriekanejšia\nnajstriekanejšie\nnajstriekanejšieho\nnajstriekanejšiemu\nnajstriekanejších\nnajstriekanejším\nnajstriekanejšími\nnajstriekanejšiu\nnajstriekanejšom\nnajstriekanejšou\nnajstriezlivejšej\nnajstriezlivejší\nnajstriezlivejšia\nnajstriezlivejšie\nnajstriezlivejšieho\nnajstriezlivejšiemu\nnajstriezlivejších\nnajstriezlivejším\nnajstriezlivejšími\nnajstriezlivejšiu\nnajstriezlivejšom\nnajstriezlivejšou\nnajstrigônskejšej\nnajstrigônskejší\nnajstrigônskejšia\nnajstrigônskejšie\nnajstrigônskejšieho\nnajstrigônskejšiemu\nnajstrigônskejších\nnajstrigônskejším\nnajstrigônskejšími\nnajstrigônskejšiu\nnajstrigônskejšom\nnajstrigônskejšou\nnajstriktnejšej\nnajstriktnejší\nnajstriktnejšia\nnajstriktnejšie\nnajstriktnejšieho\nnajstriktnejšiemu\nnajstriktnejších\nnajstriktnejším\nnajstriktnejšími\nnajstriktnejšiu\nnajstriktnejšom\nnajstriktnejšou\nnajstrmejšej\nnajstrmejší\nnajstrmejšia\nnajstrmejšie\nnajstrmejšieho\nnajstrmejšiemu\nnajstrmejších\nnajstrmejším\nnajstrmejšími\nnajstrmejšiu\nnajstrmejšom\nnajstrmejšou\nnajstrmhlavejšej\nnajstrmhlavejší\nnajstrmhlavejšia\nnajstrmhlavejšie\nnajstrmhlavejšieho\nnajstrmhlavejšiemu\nnajstrmhlavejších\nnajstrmhlavejším\nnajstrmhlavejšími\nnajstrmhlavejšiu\nnajstrmhlavejšom\nnajstrmhlavejšou\nnajstrmší\nnájsť\nnajstrnulejšej\nnajstrnulejší\nnajstrnulejšia\nnajstrnulejšie\nnajstrnulejšieho\nnajstrnulejšiemu\nnajstrnulejších\nnajstrnulejším\nnajstrnulejšími\nnajstrnulejšiu\nnajstrnulejšom\nnajstrnulejšou\nnajstrohejšej\nnajstrohejší\nnajstrohejšia\nnajstrohejšie\nnajstrohejšieho\nnajstrohejšiemu\nnajstrohejších\nnajstrohejším\nnajstrohejšími\nnajstrohejšiu\nnajstrohejšom\nnajstrohejšou\nnajstrojenejšej\nnajstrojenejší\nnajstrojenejšia\nnajstrojenejšie\nnajstrojenejšieho\nnajstrojenejšiemu\nnajstrojenejších\nnajstrojenejším\nnajstrojenejšími\nnajstrojenejšiu\nnajstrojenejšom\nnajstrojenejšou\nnajstrojnejšej\nnajstrojnejší\nnajstrojnejšia\nnajstrojnejšie\nnajstrojnejšieho\nnajstrojnejšiemu\nnajstrojnejších\nnajstrojnejším\nnajstrojnejšími\nnajstrojnejšiu\nnajstrojnejšom\nnajstrojnejšou\nnajstromčekovitejšej\nnajstromčekovitejší\nnajstromčekovitejšia\nnajstromčekovitejšie\nnajstromčekovitejšieho\nnajstromčekovitejšiemu\nnajstromčekovitejších\nnajstromčekovitejším\nnajstromčekovitejšími\nnajstromčekovitejšiu\nnajstromčekovitejšom\nnajstromčekovitejšou\nnajstromovitejšej\nnajstromovitejší\nnajstromovitejšia\nnajstromovitejšie\nnajstromovitejšieho\nnajstromovitejšiemu\nnajstromovitejších\nnajstromovitejším\nnajstromovitejšími\nnajstromovitejšiu\nnajstromovitejšom\nnajstromovitejšou\nnajstŕpnutejšej\nnajstŕpnutejší\nnajstŕpnutejšia\nnajstŕpnutejšie\nnajstŕpnutejšieho\nnajstŕpnutejšiemu\nnajstŕpnutejších\nnajstŕpnutejším\nnajstŕpnutejšími\nnajstŕpnutejšiu\nnajstŕpnutejšom\nnajstŕpnutejšou\nnajstručnejšej\nnajstručnejší\nnajstručnejšia\nnajstručnejšie\nnajstručnejšieho\nnajstručnejšiemu\nnajstručnejších\nnajstručnejším\nnajstručnejšími\nnajstručnejšiu\nnajstručnejšom\nnajstručnejšou\nnajstrunistejšej\nnajstrunistejší\nnajstrunistejšia\nnajstrunistejšie\nnajstrunistejšieho\nnajstrunistejšiemu\nnajstrunistejších\nnajstrunistejším\nnajstrunistejšími\nnajstrunistejšiu\nnajstrunistejšom\nnajstrunistejšou\nnajstudenejšej\nnajstudenejší\nnajstudenejšia\nnajstudenejšie\nnajstudenejšieho\nnajstudenejšiemu\nnajstudenejších\nnajstudenejším\nnajstudenejšími\nnajstudenejšiu\nnajstudenejšom\nnajstudenejšou\nnajstudenomilnejšej\nnajstudenomilnejší\nnajstudenomilnejšia\nnajstudenomilnejšie\nnajstudenomilnejšieho\nnajstudenomilnejšiemu\nnajstudenomilnejších\nnajstudenomilnejším\nnajstudenomilnejšími\nnajstudenomilnejšiu\nnajstudenomilnejšom\nnajstudenomilnejšou\nnajstúpavejšej\nnajstúpavejší\nnajstúpavejšia\nnajstúpavejšie\nnajstúpavejšieho\nnajstúpavejšiemu\nnajstúpavejších\nnajstúpavejším\nnajstúpavejšími\nnajstúpavejšiu\nnajstúpavejšom\nnajstúpavejšou\nnajstupídnejšej\nnajstupídnejší\nnajstupídnejšia\nnajstupídnejšie\nnajstupídnejšieho\nnajstupídnejšiemu\nnajstupídnejších\nnajstupídnejším\nnajstupídnejšími\nnajstupídnejšiu\nnajstupídnejšom\nnajstupídnejšou\nnajstupňovitejšej\nnajstupňovitejší\nnajstupňovitejšia\nnajstupňovitejšie\nnajstupňovitejšieho\nnajstupňovitejšiemu\nnajstupňovitejších\nnajstupňovitejším\nnajstupňovitejšími\nnajstupňovitejšiu\nnajstupňovitejšom\nnajstupňovitejšou\nnajsubjektivistickejšej\nnajsubjektivistickejší\nnajsubjektivistickejšia\nnajsubjektivistickejšie\nnajsubjektivistickejšieho\nnajsubjektivistickejšiemu\nnajsubjektivistickejších\nnajsubjektivistickejším\nnajsubjektivistickejšími\nnajsubjektivistickejšiu\nnajsubjektivistickejšom\nnajsubjektivistickejšou\nnajsubjektívnejšej\nnajsubjektívnejší\nnajsubjektívnejšia\nnajsubjektívnejšie\nnajsubjektívnejšieho\nnajsubjektívnejšiemu\nnajsubjektívnejších\nnajsubjektívnejším\nnajsubjektívnejšími\nnajsubjektívnejšiu\nnajsubjektívnejšom\nnajsubjektívnejšou\nnajsubtílnejšej\nnajsubtílnejší\nnajsubtílnejšia\nnajsubtílnejšie\nnajsubtílnejšieho\nnajsubtílnejšiemu\nnajsubtílnejších\nnajsubtílnejším\nnajsubtílnejšími\nnajsubtílnejšiu\nnajsubtílnejšom\nnajsubtílnejšou\nnajsúcejšej\nnajsúcejší\nnajsúcejšia\nnajsúcejšie\nnajsúcejšieho\nnajsúcejšiemu\nnajsúcejších\nnajsúcejším\nnajsúcejšími\nnajsúcejšiu\nnajsúcejšom\nnajsúcejšou\nnajsúcitnejšej\nnajsúcitnejší\nnajsúcitnejšia\nnajsúcitnejšie\nnajsúcitnejšieho\nnajsúcitnejšiemu\nnajsúcitnejších\nnajsúcitnejším\nnajsúcitnejšími\nnajsúcitnejšiu\nnajsúcitnejšom\nnajsúcitnejšou\nnajsúčasnejšej\nnajsúčasnejší\nnajsúčasnejšia\nnajsúčasnejšie\nnajsúčasnejšieho\nnajsúčasnejšiemu\nnajsúčasnejších\nnajsúčasnejším\nnajsúčasnejšími\nnajsúčasnejšiu\nnajsúčasnejšom\nnajsúčasnejšou\nnajsúdkovitejšej\nnajsúdkovitejší\nnajsúdkovitejšia\nnajsúdkovitejšie\nnajsúdkovitejšieho\nnajsúdkovitejšiemu\nnajsúdkovitejších\nnajsúdkovitejším\nnajsúdkovitejšími\nnajsúdkovitejšiu\nnajsúdkovitejšom\nnajsúdkovitejšou\nnajsúdnejšej\nnajsúdnejší\nnajsúdnejšia\nnajsúdnejšie\nnajsúdnejšieho\nnajsúdnejšiemu\nnajsúdnejších\nnajsúdnejším\nnajsúdnejšími\nnajsúdnejšiu\nnajsúdnejšom\nnajsúdnejšou\nnajsudovitejšej\nnajsudovitejší\nnajsudovitejšia\nnajsudovitejšie\nnajsudovitejšieho\nnajsudovitejšiemu\nnajsudovitejších\nnajsudovitejším\nnajsudovitejšími\nnajsudovitejšiu\nnajsudovitejšom\nnajsudovitejšou\nnajsúdržnejšej\nnajsúdržnejší\nnajsúdržnejšia\nnajsúdržnejšie\nnajsúdržnejšieho\nnajsúdržnejšiemu\nnajsúdržnejších\nnajsúdržnejším\nnajsúdržnejšími\nnajsúdržnejšiu\nnajsúdržnejšom\nnajsúdržnejšou\nnajsugestívnejšej\nnajsugestívnejší\nnajsugestívnejšia\nnajsugestívnejšie\nnajsugestívnejšieho\nnajsugestívnejšiemu\nnajsugestívnejších\nnajsugestívnejším\nnajsugestívnejšími\nnajsugestívnejšiu\nnajsugestívnejšom\nnajsugestívnejšou\nnajsúhrnnejší\nnajsúhrnnejších\nnajsuchárskejšej\nnajsuchárskejší\nnajsuchárskejšia\nnajsuchárskejšie\nnajsuchárskejšieho\nnajsuchárskejšiemu\nnajsuchárskejších\nnajsuchárskejším\nnajsuchárskejšími\nnajsuchárskejšiu\nnajsuchárskejšom\nnajsuchárskejšou\nnajsuchomilnejšej\nnajsuchomilnejší\nnajsuchomilnejšia\nnajsuchomilnejšie\nnajsuchomilnejšieho\nnajsuchomilnejšiemu\nnajsuchomilnejších\nnajsuchomilnejším\nnajsuchomilnejšími\nnajsuchomilnejšiu\nnajsuchomilnejšom\nnajsuchomilnejšou\nnajsuchopárnejšej\nnajsuchopárnejší\nnajsuchopárnejšia\nnajsuchopárnejšie\nnajsuchopárnejšieho\nnajsuchopárnejšiemu\nnajsuchopárnejších\nnajsuchopárnejším\nnajsuchopárnejšími\nnajsuchopárnejšiu\nnajsuchopárnejšom\nnajsuchopárnejšou\nnajsuchšej\nnajsuchší\nnajsuchšia\nnajsuchšie\nnajsuchšieho\nnajsuchšiemu\nnajsuchších\nnajsuchším\nnajsuchšími\nnajsuchšiu\nnajsuchšom\nnajsuchšou\nnajsukcesívnejšie\nnajsúladnejšej\nnajsúladnejší\nnajsúladnejšia\nnajsúladnejšie\nnajsúladnejšieho\nnajsúladnejšiemu\nnajsúladnejších\nnajsúladnejším\nnajsúladnejšími\nnajsúladnejšiu\nnajsúladnejšom\nnajsúladnejšou\nnajsúmernejšie\nnajsúrnejšej\nnajsúrnejší\nnajsúrnejšia\nnajsúrnejšie\nnajsúrnejšieho\nnajsúrnejšiemu\nnajsúrnejších\nnajsúrnejším\nnajsúrnejšími\nnajsúrnejšiu\nnajsúrnejšom\nnajsúrnejšou\nnajsúrodejšej\nnajsúrodejší\nnajsúrodejšia\nnajsúrodejšie\nnajsúrodejšieho\nnajsúrodejšiemu\nnajsúrodejších\nnajsúrodejším\nnajsúrodejšími\nnajsúrodejšiu\nnajsúrodejšom\nnajsúrodejšou\nnajsurovšej\nnajsurovší\nnajsurovšia\nnajsurovšie\nnajsurovšieho\nnajsurovšiemu\nnajsurovších\nnajsurovším\nnajsurovšími\nnajsurovšiu\nnajsurovšom\nnajsurovšou\nnajsurrealistickejšej\nnajsurrealistickejší\nnajsurrealistickejšia\nnajsurrealistickejšie\nnajsurrealistickejšieho\nnajsurrealistickejšiemu\nnajsurrealistickejších\nnajsurrealistickejším\nnajsurrealistickejšími\nnajsurrealistickejšiu\nnajsurrealistickejšom\nnajsurrealistickejšou\nnajsusedskejšie\nnajsústavnejšej\nnajsústavnejší\nnajsústavnejšia\nnajsústavnejšie\nnajsústavnejšieho\nnajsústavnejšiemu\nnajsústavnejších\nnajsústavnejším\nnajsústavnejšími\nnajsústavnejšiu\nnajsústavnejšom\nnajsústavnejšou\nnajsústredenejšej\nnajsústredenejší\nnajsústredenejšia\nnajsústredenejšie\nnajsústredenejšieho\nnajsústredenejšiemu\nnajsústredenejších\nnajsústredenejším\nnajsústredenejšími\nnajsústredenejšiu\nnajsústredenejšom\nnajsústredenejšou\nnajsuverénnejšej\nnajsuverénnejší\nnajsuverénnejšia\nnajsuverénnejšie\nnajsuverénnejšieho\nnajsuverénnejšiemu\nnajsuverénnejších\nnajsuverénnejším\nnajsuverénnejšími\nnajsuverénnejšiu\nnajsuverénnejšom\nnajsuverénnejšou\nnajsúvislejšej\nnajsúvislejší\nnajsúvislejšia\nnajsúvislejšie\nnajsúvislejšieho\nnajsúvislejšiemu\nnajsúvislejších\nnajsúvislejším\nnajsúvislejšími\nnajsúvislejšiu\nnajsúvislejšom\nnajsúvislejšou\nnajsúzvučnejšej\nnajsúzvučnejší\nnajsúzvučnejšia\nnajsúzvučnejšie\nnajsúzvučnejšieho\nnajsúzvučnejšiemu\nnajsúzvučnejších\nnajsúzvučnejším\nnajsúzvučnejšími\nnajsúzvučnejšiu\nnajsúzvučnejšom\nnajsúzvučnejšou\nnajsvahovitejšej\nnajsvahovitejší\nnajsvahovitejšia\nnajsvahovitejšie\nnajsvahovitejšieho\nnajsvahovitejšiemu\nnajsvahovitejších\nnajsvahovitejším\nnajsvahovitejšími\nnajsvahovitejšiu\nnajsvahovitejšom\nnajsvahovitejšou\nnajsvalnatejšej\nnajsvalnatejší\nnajsvalnatejšia\nnajsvalnatejšie\nnajsvalnatejšieho\nnajsvalnatejšiemu\nnajsvalnatejších\nnajsvalnatejším\nnajsvalnatejšími\nnajsvalnatejšiu\nnajsvalnatejšom\nnajsvalnatejšou\nnajsvárlivejšej\nnajsvárlivejší\nnajsvárlivejšia\nnajsvárlivejšie\nnajsvárlivejšieho\nnajsvárlivejšiemu\nnajsvárlivejších\nnajsvárlivejším\nnajsvárlivejšími\nnajsvárlivejšiu\nnajsvárlivejšom\nnajsvárlivejšou\nnajsvätejšej\nnajsvätejší\nnajsvätejšia\nnajsvätejšie\nnajsvätejšieho\nnajsvätejšiemu\nnajsvätejších\nnajsvätejším\nnajsvätejšími\nnajsvätejšiu\nnajsvätejšom\nnajsvätejšou\nnajsvätuškárskejšej\nnajsvätuškárskejší\nnajsvätuškárskejšia\nnajsvätuškárskejšie\nnajsvätuškárskejšieho\nnajsvätuškárskejšiemu\nnajsvätuškárskejších\nnajsvätuškárskejším\nnajsvätuškárskejšími\nnajsvätuškárskejšiu\nnajsvätuškárskejšom\nnajsvätuškárskejšou\nnajsvedčnejšej\nnajsvedčnejší\nnajsvedčnejšia\nnajsvedčnejšie\nnajsvedčnejšieho\nnajsvedčnejšiemu\nnajsvedčnejších\nnajsvedčnejším\nnajsvedčnejšími\nnajsvedčnejšiu\nnajsvedčnejšom\nnajsvedčnejšou\nnajsvedomitejšej\nnajsvedomitejší\nnajsvedomitejšia\nnajsvedomitejšie\nnajsvedomitejšieho\nnajsvedomitejšiemu\nnajsvedomitejších\nnajsvedomitejším\nnajsvedomitejšími\nnajsvedomitejšiu\nnajsvedomitejšom\nnajsvedomitejšou\nnajsverepejšej\nnajsverepejší\nnajsverepejšia\nnajsverepejšie\nnajsverepejšieho\nnajsverepejšiemu\nnajsverepejších\nnajsverepejším\nnajsverepejšími\nnajsverepejšiu\nnajsverepejšom\nnajsverepejšou\nnajsvetáckejšej\nnajsvetáckejší\nnajsvetáckejšia\nnajsvetáckejšie\nnajsvetáckejšieho\nnajsvetáckejšiemu\nnajsvetáckejších\nnajsvetáckejším\nnajsvetáckejšími\nnajsvetáckejšiu\nnajsvetáckejšom\nnajsvetáckejšou\nnajsvetaskúsenejšej\nnajsvetaskúsenejší\nnajsvetaskúsenejšia\nnajsvetaskúsenejšie\nnajsvetaskúsenejšieho\nnajsvetaskúsenejšiemu\nnajsvetaskúsenejších\nnajsvetaskúsenejším\nnajsvetaskúsenejšími\nnajsvetaskúsenejšiu\nnajsvetaskúsenejšom\nnajsvetaskúsenejšou\nnajsvetlejšej\nnajsvetlejší\nnajsvetlejšia\nnajsvetlejšie\nNajsvetlejšie\nnajsvetlejšieho\nnajsvetlejšiemu\nnajsvetlejších\nnajsvetlejším\nNajsvetlejším\nnajsvetlejšími\nnajsvetlejšiu\nnajsvetlejšom\nnajsvetlejšou\nnajsvetlomilnejšej\nnajsvetlomilnejší\nnajsvetlomilnejšia\nnajsvetlomilnejšie\nnajsvetlomilnejšieho\nnajsvetlomilnejšiemu\nnajsvetlomilnejších\nnajsvetlomilnejším\nnajsvetlomilnejšími\nnajsvetlomilnejšiu\nnajsvetlomilnejšom\nnajsvetlomilnejšou\nnajsvetloplachejšej\nnajsvetloplachejší\nnajsvetloplachejšia\nnajsvetloplachejšie\nnajsvetloplachejšieho\nnajsvetloplachejšiemu\nnajsvetloplachejších\nnajsvetloplachejším\nnajsvetloplachejšími\nnajsvetloplachejšiu\nnajsvetloplachejšom\nnajsvetloplachejšou\nnajsvetloplachšej\nnajsvetloplachší\nnajsvetloplachšia\nnajsvetloplachšie\nnajsvetloplachšieho\nnajsvetloplachšiemu\nnajsvetloplachších\nnajsvetloplachším\nnajsvetloplachšími\nnajsvetloplachšiu\nnajsvetloplachšom\nnajsvetloplachšou\nnajsvetobornejšej\nnajsvetobornejší\nnajsvetobornejšia\nnajsvetobornejšie\nnajsvetobornejšieho\nnajsvetobornejšiemu\nnajsvetobornejších\nnajsvetobornejším\nnajsvetobornejšími\nnajsvetobornejšiu\nnajsvetobornejšom\nnajsvetobornejšou\nnajsvetovejšej\nnajsvetovejší\nnajsvetovejšia\nnajsvetovejšie\nnajsvetovejšieho\nnajsvetovejšiemu\nnajsvetovejších\nnajsvetovejším\nnajsvetovejšími\nnajsvetovejšiu\nnajsvetovejšom\nnajsvetovejšou\nnajsvetoznámejšej\nnajsvetoznámejší\nnajsvetoznámejšia\nnajsvetoznámejšie\nnajsvetoznámejšieho\nnajsvetoznámejšiemu\nnajsvetoznámejších\nnajsvetoznámejším\nnajsvetoznámejšími\nnajsvetoznámejšiu\nnajsvetoznámejšom\nnajsvetoznámejšou\nnajsvetskejšej\nnajsvetskejší\nnajsvetskejšia\nnajsvetskejšie\nnajsvetskejšieho\nnajsvetskejšiemu\nnajsvetskejších\nnajsvetskejším\nnajsvetskejšími\nnajsvetskejšiu\nnajsvetskejšom\nnajsvetskejšou\nnajsviatočnejšej\nnajsviatočnejší\nnajsviatočnejšia\nnajsviatočnejšie\nnajsviatočnejšieho\nnajsviatočnejšiemu\nnajsviatočnejších\nnajsviatočnejším\nnajsviatočnejšími\nnajsviatočnejšiu\nnajsviatočnejšom\nnajsviatočnejšou\nnajsvietivejšej\nnajsvietivejší\nnajsvietivejšia\nnajsvietivejšie\nnajsvietivejšieho\nnajsvietivejšiemu\nnajsvietivejších\nnajsvietivejším\nnajsvietivejšími\nnajsvietivejšiu\nnajsvietivejšom\nnajsvietivejšou\nnajsviežejšej\nnajsviežejší\nnajsviežejšia\nnajsviežejšie\nnajsviežejšieho\nnajsviežejšiemu\nnajsviežejších\nnajsviežejším\nnajsviežejšími\nnajsviežejšiu\nnajsviežejšom\nnajsviežejšou\nnajsviniarskejšej\nnajsviniarskejší\nnajsviniarskejšia\nnajsviniarskejšie\nnajsviniarskejšieho\nnajsviniarskejšiemu\nnajsviniarskejších\nnajsviniarskejším\nnajsviniarskejšími\nnajsviniarskejšiu\nnajsviniarskejšom\nnajsviniarskejšou\nnajsvižkejšej\nnajsvižkejší\nnajsvižkejšia\nnajsvižkejšie\nnajsvižkejšieho\nnajsvižkejšiemu\nnajsvižkejších\nnajsvižkejším\nnajsvižkejšími\nnajsvižkejšiu\nnajsvižkejšom\nnajsvižkejšou\nnajsvižnejšej\nnajsvižnejší\nnajsvižnejšia\nnajsvižnejšie\nnajsvižnejšieho\nnajsvižnejšiemu\nnajsvižnejších\nnajsvižnejším\nnajsvižnejšími\nnajsvižnejšiu\nnajsvižnejšom\nnajsvižnejšou\nnajsvojbytnejšej\nnajsvojbytnejší\nnajsvojbytnejšia\nnajsvojbytnejšie\nnajsvojbytnejšieho\nnajsvojbytnejšiemu\nnajsvojbytnejších\nnajsvojbytnejším\nnajsvojbytnejšími\nnajsvojbytnejšiu\nnajsvojbytnejšom\nnajsvojbytnejšou\nnajsvojhlavejšej\nnajsvojhlavejší\nnajsvojhlavejšia\nnajsvojhlavejšie\nnajsvojhlavejšieho\nnajsvojhlavejšiemu\nnajsvojhlavejších\nnajsvojhlavejším\nnajsvojhlavejšími\nnajsvojhlavejšiu\nnajsvojhlavejšom\nnajsvojhlavejšou\nnajsvojprávnejšej\nnajsvojprávnejší\nnajsvojprávnejšia\nnajsvojprávnejšie\nnajsvojprávnejšieho\nnajsvojprávnejšiemu\nnajsvojprávnejších\nnajsvojprávnejším\nnajsvojprávnejšími\nnajsvojprávnejšiu\nnajsvojprávnejšom\nnajsvojprávnejšou\nnajsvojráznejšej\nnajsvojráznejší\nnajsvojráznejšia\nnajsvojráznejšie\nnajsvojráznejšieho\nnajsvojráznejšiemu\nnajsvojráznejších\nnajsvojráznejším\nnajsvojráznejšími\nnajsvojráznejšiu\nnajsvojráznejšom\nnajsvojráznejšou\nnajsvojskejšej\nnajsvojskejší\nnajsvojskejšia\nnajsvojskejšie\nnajsvojskejšieho\nnajsvojskejšiemu\nnajsvojskejších\nnajsvojskejším\nnajsvojskejšími\nnajsvojskejšiu\nnajsvojskejšom\nnajsvojskejšou\nnajsvojvoľnejšej\nnajsvojvoľnejší\nnajsvojvoľnejšia\nnajsvojvoľnejšie\nnajsvojvoľnejšieho\nnajsvojvoľnejšiemu\nnajsvojvoľnejších\nnajsvojvoľnejším\nnajsvojvoľnejšími\nnajsvojvoľnejšiu\nnajsvojvoľnejšom\nnajsvojvoľnejšou\nnajsvornejšej\nnajsvornejší\nnajsvornejšia\nnajsvornejšie\nnajsvornejšieho\nnajsvornejšiemu\nnajsvornejších\nnajsvornejším\nnajsvornejšími\nnajsvornejšiu\nnajsvornejšom\nnajsvornejšou\nnajsvrbľavejšej\nnajsvrbľavejší\nnajsvrbľavejšia\nnajsvrbľavejšie\nnajsvrbľavejšieho\nnajsvrbľavejšiemu\nnajsvrbľavejších\nnajsvrbľavejším\nnajsvrbľavejšími\nnajsvrbľavejšiu\nnajsvrbľavejšom\nnajsvrbľavejšou\nnajsyčivejšej\nnajsyčivejší\nnajsyčivejšia\nnajsyčivejšie\nnajsyčivejšieho\nnajsyčivejšiemu\nnajsyčivejších\nnajsyčivejším\nnajsyčivejšími\nnajsyčivejšiu\nnajsyčivejšom\nnajsyčivejšou\nnajsychravejšej\nnajsychravejší\nnajsychravejšia\nnajsychravejšie\nnajsychravejšieho\nnajsychravejšiemu\nnajsychravejších\nnajsychravejším\nnajsychravejšími\nnajsychravejšiu\nnajsychravejšom\nnajsychravejšou\nnajsykavejšej\nnajsykavejší\nnajsykavejšia\nnajsykavejšie\nnajsykavejšieho\nnajsykavejšiemu\nnajsykavejších\nnajsykavejším\nnajsykavejšími\nnajsykavejšiu\nnajsykavejšom\nnajsykavejšou\nnajsymbolickejšej\nnajsymbolickejší\nnajsymbolickejšia\nnajsymbolickejšie\nnajsymbolickejšieho\nnajsymbolickejšiemu\nnajsymbolickejších\nnajsymbolickejším\nnajsymbolickejšími\nnajsymbolickejšiu\nnajsymbolickejšom\nnajsymbolickejšou\nnajsymbolistickejšej\nnajsymbolistickejší\nnajsymbolistickejšia\nnajsymbolistickejšie\nnajsymbolistickejšieho\nnajsymbolistickejšiemu\nnajsymbolistickejších\nnajsymbolistickejším\nnajsymbolistickejšími\nnajsymbolistickejšiu\nnajsymbolistickejšom\nnajsymbolistickejšou\nnajsymetrickejšej\nnajsymetrickejší\nnajsymetrickejšia\nnajsymetrickejšie\nnajsymetrickejšieho\nnajsymetrickejšiemu\nnajsymetrickejších\nnajsymetrickejším\nnajsymetrickejšími\nnajsymetrickejšiu\nnajsymetrickejšom\nnajsymetrickejšou\nnajsympatickejšej\nnajsympatickejší\nnajsympatickejšia\nnajsympatickejšie\nnajsympatickejšieho\nnajsympatickejšiemu\nnajsympatickejších\nnajsympatickejším\nnajsympatickejšími\nnajsympatickejšiu\nnajsympatickejšom\nnajsympatickejšou\nnajsymptomatickejšie\nnajsynchronizovanejšej\nnajsynchronizovanejší\nnajsynchronizovanejšia\nnajsynchronizovanejšie\nnajsynchronizovanejšieho\nnajsynchronizovanejšiemu\nnajsynchronizovanejších\nnajsynchronizovanejším\nnajsynchronizovanejšími\nnajsynchronizovanejšiu\nnajsynchronizovanejšom\nnajsynchronizovanejšou\nnajsyntetickejších\nnajsypkejšej\nnajsypkejší\nnajsypkejšia\nnajsypkejšie\nnajsypkejšieho\nnajsypkejšiemu\nnajsypkejších\nnajsypkejším\nnajsypkejšími\nnajsypkejšiu\nnajsypkejšom\nnajsypkejšou\nnajsýrskejšej\nnajsýrskejší\nnajsýrskejšia\nnajsýrskejšie\nnajsýrskejšieho\nnajsýrskejšiemu\nnajsýrskejších\nnajsýrskejším\nnajsýrskejšími\nnajsýrskejšiu\nnajsýrskejšom\nnajsýrskejšou\nnajsystematickejšej\nnajsystematickejší\nnajsystematickejšia\nnajsystematickejšie\nnajsystematickejšieho\nnajsystematickejšiemu\nnajsystematickejších\nnajsystematickejším\nnajsystematickejšími\nnajsystematickejšiu\nnajsystematickejšom\nnajsystematickejšou\nnajsystémovejšej\nnajsystémovejší\nnajsystémovejšia\nnajsystémovejšie\nnajsystémovejšieho\nnajsystémovejšiemu\nnajsystémovejších\nnajsystémovejším\nnajsystémovejšími\nnajsystémovejšiu\nnajsystémovejšom\nnajsystémovejšou\nnajsýtejšej\nnajsýtejší\nnajsýtejšia\nnajsýtejšie\nnajsýtejšieho\nnajsýtejšiemu\nnajsýtejších\nnajsýtejším\nnajsýtejšími\nnajsýtejšiu\nnajsýtejšom\nnajsýtejšou\nnajšablónovitejšej\nnajšablónovitejší\nnajšablónovitejšia\nnajšablónovitejšie\nnajšablónovitejšieho\nnajšablónovitejšiemu\nnajšablónovitejších\nnajšablónovitejším\nnajšablónovitejšími\nnajšablónovitejšiu\nnajšablónovitejšom\nnajšablónovitejšou\nnajšalamúnskejšej\nnajšalamúnskejší\nnajšalamúnskejšia\nnajšalamúnskejšie\nnajšalamúnskejšieho\nnajšalamúnskejšiemu\nnajšalamúnskejších\nnajšalamúnskejším\nnajšalamúnskejšími\nnajšalamúnskejšiu\nnajšalamúnskejšom\nnajšalamúnskejšou\nnajšaľbiarskejšej\nnajšaľbiarskejší\nnajšaľbiarskejšia\nnajšaľbiarskejšie\nnajšaľbiarskejšieho\nnajšaľbiarskejšiemu\nnajšaľbiarskejších\nnajšaľbiarskejším\nnajšaľbiarskejšími\nnajšaľbiarskejšiu\nnajšaľbiarskejšom\nnajšaľbiarskejšou\nnajšanovlivejšej\nnajšanovlivejší\nnajšanovlivejšia\nnajšanovlivejšie\nnajšanovlivejšieho\nnajšanovlivejšiemu\nnajšanovlivejších\nnajšanovlivejším\nnajšanovlivejšími\nnajšanovlivejšiu\nnajšanovlivejšom\nnajšanovlivejšou\nnajšantivejšej\nnajšantivejší\nnajšantivejšia\nnajšantivejšie\nnajšantivejšieho\nnajšantivejšiemu\nnajšantivejších\nnajšantivejším\nnajšantivejšími\nnajšantivejšiu\nnajšantivejšom\nnajšantivejšou\nnajšarlatánskejšej\nnajšarlatánskejší\nnajšarlatánskejšia\nnajšarlatánskejšie\nnajšarlatánskejšieho\nnajšarlatánskejšiemu\nnajšarlatánskejších\nnajšarlatánskejším\nnajšarlatánskejšími\nnajšarlatánskejšiu\nnajšarlatánskejšom\nnajšarlatánskejšou\nnajšarlátovejšej\nnajšarlátovejší\nnajšarlátovejšia\nnajšarlátovejšie\nnajšarlátovejšieho\nnajšarlátovejšiemu\nnajšarlátovejších\nnajšarlátovejším\nnajšarlátovejšími\nnajšarlátovejšiu\nnajšarlátovejšom\nnajšarlátovejšou\nnajšarmantnejšej\nnajšarmantnejší\nnajšarmantnejšia\nnajšarmantnejšie\nnajšarmantnejšieho\nnajšarmantnejšiemu\nnajšarmantnejších\nnajšarmantnejším\nnajšarmantnejšími\nnajšarmantnejšiu\nnajšarmantnejšom\nnajšarmantnejšou\nnajšedivejšej\nnajšedivejší\nnajšedivejšia\nnajšedivejšie\nnajšedivejšieho\nnajšedivejšiemu\nnajšedivejších\nnajšedivejším\nnajšedivejšími\nnajšedivejšiu\nnajšedivejšom\nnajšedivejšou\nnajšedšej\nnajšedší\nnajšedšia\nnajšedšie\nnajšedšieho\nnajšedšiemu\nnajšedších\nnajšedším\nnajšedšími\nnajšedšiu\nnajšedšom\nnajšedšou\nnajšelestivejšej\nnajšelestivejší\nnajšelestivejšia\nnajšelestivejšie\nnajšelestivejšieho\nnajšelestivejšiemu\nnajšelestivejších\nnajšelestivejším\nnajšelestivejšími\nnajšelestivejšiu\nnajšelestivejšom\nnajšelestivejšou\nnajšelmovitejšej\nnajšelmovitejší\nnajšelmovitejšia\nnajšelmovitejšie\nnajšelmovitejšieho\nnajšelmovitejšiemu\nnajšelmovitejších\nnajšelmovitejším\nnajšelmovitejšími\nnajšelmovitejšiu\nnajšelmovitejšom\nnajšelmovitejšou\nnajšelmovskejšej\nnajšelmovskejší\nnajšelmovskejšia\nnajšelmovskejšie\nnajšelmovskejšieho\nnajšelmovskejšiemu\nnajšelmovskejších\nnajšelmovskejším\nnajšelmovskejšími\nnajšelmovskejšiu\nnajšelmovskejšom\nnajšelmovskejšou\nnajšerednejšej\nnajšerednejší\nnajšerednejšia\nnajšerednejšie\nnajšerednejšieho\nnajšerednejšiemu\nnajšerednejších\nnajšerednejším\nnajšerednejšími\nnajšerednejšiu\nnajšerednejšom\nnajšerednejšou\nnajšerejšej\nnajšerejší\nnajšerejšia\nnajšerejšie\nnajšerejšieho\nnajšerejšiemu\nnajšerejších\nnajšerejším\nnajšerejšími\nnajšerejšiu\nnajšerejšom\nnajšerejšou\nnajšialenejšej\nnajšialenejší\nnajšialenejšia\nnajšialenejšie\nnajšialenejšieho\nnajšialenejšiemu\nnajšialenejších\nnajšialenejším\nnajšialenejšími\nnajšialenejšiu\nnajšialenejšom\nnajšialenejšou\nnajšibalskejšej\nnajšibalskejší\nnajšibalskejšia\nnajšibalskejšie\nnajšibalskejšieho\nnajšibalskejšiemu\nnajšibalskejších\nnajšibalskejším\nnajšibalskejšími\nnajšibalskejšiu\nnajšibalskejšom\nnajšibalskejšou\nnajšibeničnejšej\nnajšibeničnejší\nnajšibeničnejšia\nnajšibeničnejšie\nnajšibeničnejšieho\nnajšibeničnejšiemu\nnajšibeničnejších\nnajšibeničnejším\nnajšibeničnejšími\nnajšibeničnejšiu\nnajšibeničnejšom\nnajšibeničnejšou\nnajšibkejšej\nnajšibkejší\nnajšibkejšia\nnajšibkejšie\nnajšibkejšieho\nnajšibkejšiemu\nnajšibkejších\nnajšibkejším\nnajšibkejšími\nnajšibkejšiu\nnajšibkejšom\nnajšibkejšou\nnajšibnutejšej\nnajšibnutejší\nnajšibnutejšia\nnajšibnutejšie\nnajšibnutejšieho\nnajšibnutejšiemu\nnajšibnutejších\nnajšibnutejším\nnajšibnutejšími\nnajšibnutejšiu\nnajšibnutejšom\nnajšibnutejšou\nnajšifrovanejšej\nnajšifrovanejší\nnajšifrovanejšia\nnajšifrovanejšie\nnajšifrovanejšieho\nnajšifrovanejšiemu\nnajšifrovanejších\nnajšifrovanejším\nnajšifrovanejšími\nnajšifrovanejšiu\nnajšifrovanejšom\nnajšifrovanejšou\nnajšikmejšej\nnajšikmejší\nnajšikmejšia\nnajšikmejšie\nnajšikmejšieho\nnajšikmejšiemu\nnajšikmejších\nnajšikmejším\nnajšikmejšími\nnajšikmejšiu\nnajšikmejšom\nnajšikmejšou\nnajšikmookejšej\nnajšikmookejší\nnajšikmookejšia\nnajšikmookejšie\nnajšikmookejšieho\nnajšikmookejšiemu\nnajšikmookejších\nnajšikmookejším\nnajšikmookejšími\nnajšikmookejšiu\nnajšikmookejšom\nnajšikmookejšou\nnajšikovnejšej\nnajšikovnejší\nnajšikovnejšia\nnajšikovnejšie\nnajšikovnejšieho\nnajšikovnejšiemu\nnajšikovnejších\nnajšikovnejším\nnajšikovnejšími\nnajšikovnejšiu\nnajšikovnejšom\nnajšikovnejšou\nnajšiplavejšej\nnajšiplavejší\nnajšiplavejšia\nnajšiplavejšie\nnajšiplavejšieho\nnajšiplavejšiemu\nnajšiplavejších\nnajšiplavejším\nnajšiplavejšími\nnajšiplavejšiu\nnajšiplavejšom\nnajšiplavejšou\nnajšírejšej\nnajšírejší\nnajšírejšia\nnajšírejšie\nnajšírejšieho\nnajšírejšiemu\nnajšírejších\nnajšírejším\nnajšírejšími\nnajšírejšiu\nnajšírejšom\nnajšírejšou\nnajširokospektrálnejšej\nnajširokospektrálnejší\nnajširokospektrálnejšia\nnajširokospektrálnejšie\nnajširokospektrálnejšieho\nnajširokospektrálnejšiemu\nnajširokospektrálnejších\nnajširokospektrálnejším\nnajširokospektrálnejšími\nnajširokospektrálnejšiu\nnajširokospektrálnejšom\nnajširokospektrálnejšou\nnajšišatejšej\nnajšišatejší\nnajšišatejšia\nnajšišatejšie\nnajšišatejšieho\nnajšišatejšiemu\nnajšišatejších\nnajšišatejším\nnajšišatejšími\nnajšišatejšiu\nnajšišatejšom\nnajšišatejšou\nnajškamravejšej\nnajškamravejší\nnajškamravejšia\nnajškamravejšie\nnajškamravejšieho\nnajškamravejšiemu\nnajškamravejších\nnajškamravejším\nnajškamravejšími\nnajškamravejšiu\nnajškamravejšom\nnajškamravejšou\nnajškandálnejšej\nnajškandálnejší\nnajškandálnejšia\nnajškandálnejšie\nnajškandálnejšieho\nnajškandálnejšiemu\nnajškandálnejších\nnajškandálnejším\nnajškandálnejšími\nnajškandálnejšiu\nnajškandálnejšom\nnajškandálnejšou\nnajškandalóznejšej\nnajškandalóznejší\nnajškandalóznejšia\nnajškandalóznejšie\nnajškandalóznejšieho\nnajškandalóznejšiemu\nnajškandalóznejších\nnajškandalóznejším\nnajškandalóznejšími\nnajškandalóznejšiu\nnajškandalóznejšom\nnajškandalóznejšou\nnajškaredejšej\nnajškaredejší\nnajškaredejšia\nnajškaredejšie\nnajškaredejšieho\nnajškaredejšiemu\nnajškaredejších\nnajškaredejším\nnajškaredejšími\nnajškaredejšiu\nnajškaredejšom\nnajškaredejšou\nnajškatuľkovitejšej\nnajškatuľkovitejší\nnajškatuľkovitejšia\nnajškatuľkovitejšie\nnajškatuľkovitejšieho\nnajškatuľkovitejšiemu\nnajškatuľkovitejších\nnajškatuľkovitejším\nnajškatuľkovitejšími\nnajškatuľkovitejšiu\nnajškatuľkovitejšom\nnajškatuľkovitejšou\nnajškľabivejšej\nnajškľabivejší\nnajškľabivejšia\nnajškľabivejšie\nnajškľabivejšieho\nnajškľabivejšiemu\nnajškľabivejších\nnajškľabivejším\nnajškľabivejšími\nnajškľabivejšiu\nnajškľabivejšom\nnajškľabivejšou\nnajšklbavejšej\nnajšklbavejší\nnajšklbavejšia\nnajšklbavejšie\nnajšklbavejšieho\nnajšklbavejšiemu\nnajšklbavejších\nnajšklbavejším\nnajšklbavejšími\nnajšklbavejšiu\nnajšklbavejšom\nnajšklbavejšou\nnajškodlivejšej\nnajškodlivejší\nnajškodlivejšia\nnajškodlivejšie\nnajškodlivejšieho\nnajškodlivejšiemu\nnajškodlivejších\nnajškodlivejším\nnajškodlivejšími\nnajškodlivejšiu\nnajškodlivejšom\nnajškodlivejšou\nnajškodnejšej\nnajškodnejší\nnajškodnejšia\nnajškodnejšie\nnajškodnejšieho\nnajškodnejšiemu\nnajškodnejších\nnajškodnejším\nnajškodnejšími\nnajškodnejšiu\nnajškodnejšom\nnajškodnejšou\nnajškodoradostnejšej\nnajškodoradostnejší\nnajškodoradostnejšia\nnajškodoradostnejšie\nnajškodoradostnejšieho\nnajškodoradostnejšiemu\nnajškodoradostnejších\nnajškodoradostnejším\nnajškodoradostnejšími\nnajškodoradostnejšiu\nnajškodoradostnejšom\nnajškodoradostnejšou\nnajškoláckejšej\nnajškoláckejší\nnajškoláckejšia\nnajškoláckejšie\nnajškoláckejšieho\nnajškoláckejšiemu\nnajškoláckejších\nnajškoláckejším\nnajškoláckejšími\nnajškoláckejšiu\nnajškoláckejšom\nnajškoláckejšou\nnajškolenejšej\nnajškolenejší\nnajškolenejšia\nnajškolenejšie\nnajškolenejšieho\nnajškolenejšiemu\nnajškolenejších\nnajškolenejším\nnajškolenejšími\nnajškolenejšiu\nnajškolenejšom\nnajškolenejšou\nnajškolovanejšej\nnajškolovanejší\nnajškolovanejšia\nnajškolovanejšie\nnajškolovanejšieho\nnajškolovanejšiemu\nnajškolovanejších\nnajškolovanejším\nnajškolovanejšími\nnajškolovanejšiu\nnajškolovanejšom\nnajškolovanejšou\nnajškrabľavejšej\nnajškrabľavejší\nnajškrabľavejšia\nnajškrabľavejšie\nnajškrabľavejšieho\nnajškrabľavejšiemu\nnajškrabľavejších\nnajškrabľavejším\nnajškrabľavejšími\nnajškrabľavejšiu\nnajškrabľavejšom\nnajškrabľavejšou\nnajškrekľavejšej\nnajškrekľavejší\nnajškrekľavejšia\nnajškrekľavejšie\nnajškrekľavejšieho\nnajškrekľavejšiemu\nnajškrekľavejších\nnajškrekľavejším\nnajškrekľavejšími\nnajškrekľavejšiu\nnajškrekľavejšom\nnajškrekľavejšou\nnajškrekotavejšej\nnajškrekotavejší\nnajškrekotavejšia\nnajškrekotavejšie\nnajškrekotavejšieho\nnajškrekotavejšiemu\nnajškrekotavejších\nnajškrekotavejším\nnajškrekotavejšími\nnajškrekotavejšiu\nnajškrekotavejšom\nnajškrekotavejšou\nnajškriekavejšej\nnajškriekavejší\nnajškriekavejšia\nnajškriekavejšie\nnajškriekavejšieho\nnajškriekavejšiemu\nnajškriekavejších\nnajškriekavejším\nnajškriekavejšími\nnajškriekavejšiu\nnajškriekavejšom\nnajškriekavejšou\nnajškriepivejšej\nnajškriepivejší\nnajškriepivejšia\nnajškriepivejšie\nnajškriepivejšieho\nnajškriepivejšiemu\nnajškriepivejších\nnajškriepivejším\nnajškriepivejšími\nnajškriepivejšiu\nnajškriepivejšom\nnajškriepivejšou\nnajškrieplivejšej\nnajškrieplivejší\nnajškrieplivejšia\nnajškrieplivejšie\nnajškrieplivejšieho\nnajškrieplivejšiemu\nnajškrieplivejších\nnajškrieplivejším\nnajškrieplivejšími\nnajškrieplivejšiu\nnajškrieplivejšom\nnajškrieplivejšou\nnajškriepnejšej\nnajškriepnejší\nnajškriepnejšia\nnajškriepnejšie\nnajškriepnejšieho\nnajškriepnejšiemu\nnajškriepnejších\nnajškriepnejším\nnajškriepnejšími\nnajškriepnejšiu\nnajškriepnejšom\nnajškriepnejšou\nnajškripľavejšej\nnajškripľavejší\nnajškripľavejšia\nnajškripľavejšie\nnajškripľavejšieho\nnajškripľavejšiemu\nnajškripľavejších\nnajškripľavejším\nnajškripľavejšími\nnajškripľavejšiu\nnajškripľavejšom\nnajškripľavejšou\nnajškripotavejšej\nnajškripotavejší\nnajškripotavejšia\nnajškripotavejšie\nnajškripotavejšieho\nnajškripotavejšiemu\nnajškripotavejších\nnajškripotavejším\nnajškripotavejšími\nnajškripotavejšiu\nnajškripotavejšom\nnajškripotavejšou\nnajškŕkavejšej\nnajškŕkavejší\nnajškŕkavejšia\nnajškŕkavejšie\nnajškŕkavejšieho\nnajškŕkavejšiemu\nnajškŕkavejších\nnajškŕkavejším\nnajškŕkavejšími\nnajškŕkavejšiu\nnajškŕkavejšom\nnajškŕkavejšou\nnajškrobenejšej\nnajškrobenejší\nnajškrobenejšia\nnajškrobenejšie\nnajškrobenejšieho\nnajškrobenejšiemu\nnajškrobenejších\nnajškrobenejším\nnajškrobenejšími\nnajškrobenejšiu\nnajškrobenejšom\nnajškrobenejšou\nnajškrobnatejšej\nnajškrobnatejší\nnajškrobnatejšia\nnajškrobnatejšie\nnajškrobnatejšieho\nnajškrobnatejšiemu\nnajškrobnatejších\nnajškrobnatejším\nnajškrobnatejšími\nnajškrobnatejšiu\nnajškrobnatejšom\nnajškrobnatejšou\nnajškrtivejšej\nnajškrtivejší\nnajškrtivejšia\nnajškrtivejšie\nnajškrtivejšieho\nnajškrtivejšiemu\nnajškrtivejších\nnajškrtivejším\nnajškrtivejšími\nnajškrtivejšiu\nnajškrtivejšom\nnajškrtivejšou\nnajškrupulóznejšej\nnajškrupulóznejší\nnajškrupulóznejšia\nnajškrupulóznejšie\nnajškrupulóznejšieho\nnajškrupulóznejšiemu\nnajškrupulóznejších\nnajškrupulóznejším\nnajškrupulóznejšími\nnajškrupulóznejšiu\nnajškrupulóznejšom\nnajškrupulóznejšou\nnajškuľavejšej\nnajškuľavejší\nnajškuľavejšia\nnajškuľavejšie\nnajškuľavejšieho\nnajškuľavejšiemu\nnajškuľavejších\nnajškuľavejším\nnajškuľavejšími\nnajškuľavejšiu\nnajškuľavejšom\nnajškuľavejšou\nnajškutinatejšej\nnajškutinatejší\nnajškutinatejšia\nnajškutinatejšie\nnajškutinatejšieho\nnajškutinatejšiemu\nnajškutinatejších\nnajškutinatejším\nnajškutinatejšími\nnajškutinatejšiu\nnajškutinatejšom\nnajškutinatejšou\nnajškvrnitejšej\nnajškvrnitejší\nnajškvrnitejšia\nnajškvrnitejšie\nnajškvrnitejšieho\nnajškvrnitejšiemu\nnajškvrnitejších\nnajškvrnitejším\nnajškvrnitejšími\nnajškvrnitejšiu\nnajškvrnitejšom\nnajškvrnitejšou\nnajšľachetnejšej\nnajšľachetnejší\nnajšľachetnejšia\nnajšľachetnejšie\nnajšľachetnejšieho\nnajšľachetnejšiemu\nnajšľachetnejších\nnajšľachetnejším\nnajšľachetnejšími\nnajšľachetnejšiu\nnajšľachetnejšom\nnajšľachetnejšou\nnajšľachovitejšej\nnajšľachovitejší\nnajšľachovitejšia\nnajšľachovitejšie\nnajšľachovitejšieho\nnajšľachovitejšiemu\nnajšľachovitejších\nnajšľachovitejším\nnajšľachovitejšími\nnajšľachovitejšiu\nnajšľachovitejšom\nnajšľachovitejšou\nnajšľachtickejšej\nnajšľachtickejší\nnajšľachtickejšia\nnajšľachtickejšie\nnajšľachtickejšieho\nnajšľachtickejšiemu\nnajšľachtickejších\nnajšľachtickejším\nnajšľachtickejšími\nnajšľachtickejšiu\nnajšľachtickejšom\nnajšľachtickejšou\nnajšlendriánskejšej\nnajšlendriánskejší\nnajšlendriánskejšia\nnajšlendriánskejšie\nnajšlendriánskejšieho\nnajšlendriánskejšiemu\nnajšlendriánskejších\nnajšlendriánskejším\nnajšlendriánskejšími\nnajšlendriánskejšiu\nnajšlendriánskejšom\nnajšlendriánskejšou\nnajšmatlavejšej\nnajšmatlavejší\nnajšmatlavejšia\nnajšmatlavejšie\nnajšmatlavejšieho\nnajšmatlavejšiemu\nnajšmatlavejších\nnajšmatlavejším\nnajšmatlavejšími\nnajšmatlavejšiu\nnajšmatlavejšom\nnajšmatlavejšou\nnajšmuhavejšej\nnajšmuhavejší\nnajšmuhavejšia\nnajšmuhavejšie\nnajšmuhavejšieho\nnajšmuhavejšiemu\nnajšmuhavejších\nnajšmuhavejším\nnajšmuhavejšími\nnajšmuhavejšiu\nnajšmuhavejšom\nnajšmuhavejšou\nnajšmykľavejšej\nnajšmykľavejší\nnajšmykľavejšia\nnajšmykľavejšie\nnajšmykľavejšieho\nnajšmykľavejšiemu\nnajšmykľavejších\nnajšmykľavejším\nnajšmykľavejšími\nnajšmykľavejšiu\nnajšmykľavejšom\nnajšmykľavejšou\nnajšnupavejšej\nnajšnupavejší\nnajšnupavejšia\nnajšnupavejšie\nnajšnupavejšieho\nnajšnupavejšiemu\nnajšnupavejších\nnajšnupavejším\nnajšnupavejšími\nnajšnupavejšiu\nnajšnupavejšom\nnajšnupavejšou\nnajšnurovanejšej\nnajšnurovanejší\nnajšnurovanejšia\nnajšnurovanejšie\nnajšnurovanejšieho\nnajšnurovanejšiemu\nnajšnurovanejších\nnajšnurovanejším\nnajšnurovanejšími\nnajšnurovanejšiu\nnajšnurovanejšom\nnajšnurovanejšou\nnajšokujúcejšej\nnajšokujúcejší\nnajšokujúcejšia\nnajšokujúcejšie\nnajšokujúcejšieho\nnajšokujúcejšiemu\nnajšokujúcejších\nnajšokujúcejším\nnajšokujúcejšími\nnajšokujúcejšiu\nnajšokujúcejšom\nnajšokujúcejšou\nnajšomravejšej\nnajšomravejší\nnajšomravejšia\nnajšomravejšie\nnajšomravejšieho\nnajšomravejšiemu\nnajšomravejších\nnajšomravejším\nnajšomravejšími\nnajšomravejšiu\nnajšomravejšom\nnajšomravejšou\nnajšovinistickejšej\nnajšovinistickejší\nnajšovinistickejšia\nnajšovinistickejšie\nnajšovinistickejšieho\nnajšovinistickejšiemu\nnajšovinistickejších\nnajšovinistickejším\nnajšovinistickejšími\nnajšovinistickejšiu\nnajšovinistickejšom\nnajšovinistickejšou\nnajšpanielskejšej\nnajšpanielskejší\nnajšpanielskejšia\nnajšpanielskejšie\nnajšpanielskejšieho\nnajšpanielskejšiemu\nnajšpanielskejších\nnajšpanielskejším\nnajšpanielskejšími\nnajšpanielskejšiu\nnajšpanielskejšom\nnajšpanielskejšou\nnajšpásovnejšej\nnajšpásovnejší\nnajšpásovnejšia\nnajšpásovnejšie\nnajšpásovnejšieho\nnajšpásovnejšiemu\nnajšpásovnejších\nnajšpásovnejším\nnajšpásovnejšími\nnajšpásovnejšiu\nnajšpásovnejšom\nnajšpásovnejšou\nnajšpatnejšej\nnajšpatnejší\nnajšpatnejšia\nnajšpatnejšie\nnajšpatnejšieho\nnajšpatnejšiemu\nnajšpatnejších\nnajšpatnejším\nnajšpatnejšími\nnajšpatnejšiu\nnajšpatnejšom\nnajšpatnejšou\nnajšpeciálnejšej\nnajšpeciálnejší\nnajšpeciálnejšia\nnajšpeciálnejšie\nnajšpeciálnejšieho\nnajšpeciálnejšiemu\nnajšpeciálnejších\nnajšpeciálnejším\nnajšpeciálnejšími\nnajšpeciálnejšiu\nnajšpeciálnejšom\nnajšpeciálnejšou\nnajšpecifickejšej\nnajšpecifickejší\nnajšpecifickejšia\nnajšpecifickejšie\nnajšpecifickejšieho\nnajšpecifickejšiemu\nnajšpecifickejších\nnajšpecifickejším\nnajšpecifickejšími\nnajšpecifickejšiu\nnajšpecifickejšom\nnajšpecifickejšou\nnajšpehúnskejšej\nnajšpehúnskejší\nnajšpehúnskejšia\nnajšpehúnskejšie\nnajšpehúnskejšieho\nnajšpehúnskejšiemu\nnajšpehúnskejších\nnajšpehúnskejším\nnajšpehúnskejšími\nnajšpehúnskejšiu\nnajšpehúnskejšom\nnajšpehúnskejšou\nnajšpekulačnejšie\nnajšpekulantskejšej\nnajšpekulantskejší\nnajšpekulantskejšia\nnajšpekulantskejšie\nnajšpekulantskejšieho\nnajšpekulantskejšiemu\nnajšpekulantskejších\nnajšpekulantskejším\nnajšpekulantskejšími\nnajšpekulantskejšiu\nnajšpekulantskejšom\nnajšpekulantskejšou\nnajšpekulatívnejšej\nnajšpekulatívnejší\nnajšpekulatívnejšia\nnajšpekulatívnejšie\nnajšpekulatívnejšieho\nnajšpekulatívnejšiemu\nnajšpekulatívnejších\nnajšpekulatívnejším\nnajšpekulatívnejšími\nnajšpekulatívnejšiu\nnajšpekulatívnejšom\nnajšpekulatívnejšou\nnajšpicatejšej\nnajšpicatejší\nnajšpicatejšia\nnajšpicatejšie\nnajšpicatejšieho\nnajšpicatejšiemu\nnajšpicatejších\nnajšpicatejším\nnajšpicatejšími\nnajšpicatejšiu\nnajšpicatejšom\nnajšpicatejšou\nnajšpičkovejšej\nnajšpičkovejší\nnajšpičkovejšia\nnajšpičkovejšie\nnajšpičkovejšieho\nnajšpičkovejšiemu\nnajšpičkovejších\nnajšpičkovejším\nnajšpičkovejšími\nnajšpičkovejšiu\nnajšpičkovejšom\nnajšpičkovejšou\nnajšpinavejšej\nnajšpinavejší\nnajšpinavejšia\nnajšpinavejšie\nnajšpinavejšieho\nnajšpinavejšiemu\nnajšpinavejších\nnajšpinavejším\nnajšpinavejšími\nnajšpinavejšiu\nnajšpinavejšom\nnajšpinavejšou\nnajšpirálovitejšej\nnajšpirálovitejší\nnajšpirálovitejšia\nnajšpirálovitejšie\nnajšpirálovitejšieho\nnajšpirálovitejšiemu\nnajšpirálovitejších\nnajšpirálovitejším\nnajšpirálovitejšími\nnajšpirálovitejšiu\nnajšpirálovitejšom\nnajšpirálovitejšou\nnajšplhúnskejšej\nnajšplhúnskejší\nnajšplhúnskejšia\nnajšplhúnskejšie\nnajšplhúnskejšieho\nnajšplhúnskejšiemu\nnajšplhúnskejších\nnajšplhúnskejším\nnajšplhúnskejšími\nnajšplhúnskejšiu\nnajšplhúnskejšom\nnajšplhúnskejšou\nnajšporovlivejšej\nnajšporovlivejší\nnajšporovlivejšia\nnajšporovlivejšie\nnajšporovlivejšieho\nnajšporovlivejšiemu\nnajšporovlivejších\nnajšporovlivejším\nnajšporovlivejšími\nnajšporovlivejšiu\nnajšporovlivejšom\nnajšporovlivejšou\nnajšportovejšej\nnajšportovejší\nnajšportovejšia\nnajšportovejšie\nnajšportovejšieho\nnajšportovejšiemu\nnajšportovejších\nnajšportovejším\nnajšportovejšími\nnajšportovejšiu\nnajšportovejšom\nnajšportovejšou\nnajštandardnejšej\nnajštandardnejší\nnajštandardnejšia\nnajštandardnejšie\nnajštandardnejšieho\nnajštandardnejšiemu\nnajštandardnejších\nnajštandardnejším\nnajštandardnejšími\nnajštandardnejšiu\nnajštandardnejšom\nnajštandardnejšou\nnajšťastlivejšej\nnajšťastlivejší\nnajšťastlivejšia\nnajšťastlivejšie\nnajšťastlivejšieho\nnajšťastlivejšiemu\nnajšťastlivejších\nnajšťastlivejším\nnajšťastlivejšími\nnajšťastlivejšiu\nnajšťastlivejšom\nnajšťastlivejšou\nnajštátotvornejšie\nnajšťavnatejšej\nnajšťavnatejší\nnajšťavnatejšia\nnajšťavnatejšie\nnajšťavnatejšieho\nnajšťavnatejšiemu\nnajšťavnatejších\nnajšťavnatejším\nnajšťavnatejšími\nnajšťavnatejšiu\nnajšťavnatejšom\nnajšťavnatejšou\nnajštebotavejšej\nnajštebotavejší\nnajštebotavejšia\nnajštebotavejšie\nnajštebotavejšieho\nnajštebotavejšiemu\nnajštebotavejších\nnajštebotavejším\nnajštebotavejšími\nnajštebotavejšiu\nnajštebotavejšom\nnajštebotavejšou\nnajštedrejšej\nnajštedrejší\nNajštedrejší\nnajštedrejšia\nNajštedrejšia\nnajštedrejšie\nnajštedrejšieho\nnajštedrejšiemu\nnajštedrejších\nnajštedrejším\nnajštedrejšími\nNajštedrejšími\nnajštedrejšiu\nNajštedrejšiu\nnajštedrejšom\nnajštedrejšou\nnajštekavejšej\nnajštekavejší\nnajštekavejšia\nnajštekavejšie\nnajštekavejšieho\nnajštekavejšiemu\nnajštekavejších\nnajštekavejším\nnajštekavejšími\nnajštekavejšiu\nnajštekavejšom\nnajštekavejšou\nnajšteklivejšej\nnajšteklivejší\nnajšteklivejšia\nnajšteklivejšie\nnajšteklivejšieho\nnajšteklivejšiemu\nnajšteklivejších\nnajšteklivejším\nnajšteklivejšími\nnajšteklivejšiu\nnajšteklivejšom\nnajšteklivejšou\nnajštetinatejšej\nnajštetinatejší\nnajštetinatejšia\nnajštetinatejšie\nnajštetinatejšieho\nnajštetinatejšiemu\nnajštetinatejších\nnajštetinatejším\nnajštetinatejšími\nnajštetinatejšiu\nnajštetinatejšom\nnajštetinatejšou\nnajštiepateľnejšej\nnajštiepateľnejší\nnajštiepateľnejšia\nnajštiepateľnejšie\nnajštiepateľnejšieho\nnajštiepateľnejšiemu\nnajštiepateľnejších\nnajštiepateľnejším\nnajštiepateľnejšími\nnajštiepateľnejšiu\nnajštiepateľnejšom\nnajštiepateľnejšou\nnajštiepavejšej\nnajštiepavejší\nnajštiepavejšia\nnajštiepavejšie\nnajštiepavejšieho\nnajštiepavejšiemu\nnajštiepavejších\nnajštiepavejším\nnajštiepavejšími\nnajštiepavejšiu\nnajštiepavejšom\nnajštiepavejšou\nnajštiepnejšej\nnajštiepnejší\nnajštiepnejšia\nnajštiepnejšie\nnajštiepnejšieho\nnajštiepnejšiemu\nnajštiepnejších\nnajštiepnejším\nnajštiepnejšími\nnajštiepnejšiu\nnajštiepnejšom\nnajštiepnejšou\nnajštikútavejšej\nnajštikútavejší\nnajštikútavejšia\nnajštikútavejšie\nnajštikútavejšieho\nnajštikútavejšiemu\nnajštikútavejších\nnajštikútavejším\nnajštikútavejšími\nnajštikútavejšiu\nnajštikútavejšom\nnajštikútavejšou\nnajštipľavejšej\nnajštipľavejší\nnajštipľavejšia\nnajštipľavejšie\nnajštipľavejšieho\nnajštipľavejšiemu\nnajštipľavejších\nnajštipľavejším\nnajštipľavejšími\nnajštipľavejšiu\nnajštipľavejšom\nnajštipľavejšou\nnajštítivejšej\nnajštítivejší\nnajštítivejšia\nnajštítivejšie\nnajštítivejšieho\nnajštítivejšiemu\nnajštítivejších\nnajštítivejším\nnajštítivejšími\nnajštítivejšiu\nnajštítivejšom\nnajštítivejšou\nnajštrbavejšej\nnajštrbavejší\nnajštrbavejšia\nnajštrbavejšie\nnajštrbavejšieho\nnajštrbavejšiemu\nnajštrbavejších\nnajštrbavejším\nnajštrbavejšími\nnajštrbavejšiu\nnajštrbavejšom\nnajštrbavejšou\nnajštréberskejšej\nnajštréberskejší\nnajštréberskejšia\nnajštréberskejšie\nnajštréberskejšieho\nnajštréberskejšiemu\nnajštréberskejších\nnajštréberskejším\nnajštréberskejšími\nnajštréberskejšiu\nnajštréberskejšom\nnajštréberskejšou\nnajštricáckejšej\nnajštricáckejší\nnajštricáckejšia\nnajštricáckejšie\nnajštricáckejšieho\nnajštricáckejšiemu\nnajštricáckejších\nnajštricáckejším\nnajštricáckejšími\nnajštricáckejšiu\nnajštricáckejšom\nnajštricáckejšou\nnajštrkovitejšej\nnajštrkovitejší\nnajštrkovitejšia\nnajštrkovitejšie\nnajštrkovitejšieho\nnajštrkovitejšiemu\nnajštrkovitejších\nnajštrkovitejším\nnajštrkovitejšími\nnajštrkovitejšiu\nnajštrkovitejšom\nnajštrkovitejšou\nnajštrukturálnejšej\nnajštrukturálnejší\nnajštrukturálnejšia\nnajštrukturálnejšie\nnajštrukturálnejšieho\nnajštrukturálnejšiemu\nnajštrukturálnejších\nnajštrukturálnejším\nnajštrukturálnejšími\nnajštrukturálnejšiu\nnajštrukturálnejšom\nnajštrukturálnejšou\nnajštruktúrnejšej\nnajštruktúrnejší\nnajštruktúrnejšia\nnajštruktúrnejšie\nnajštruktúrnejšieho\nnajštruktúrnejšiemu\nnajštruktúrnejších\nnajštruktúrnejším\nnajštruktúrnejšími\nnajštruktúrnejšiu\nnajštruktúrnejšom\nnajštruktúrnejšou\nnajštruktúrovanejšej\nnajštruktúrovanejší\nnajštruktúrovanejšia\nnajštruktúrovanejšie\nnajštruktúrovanejšieho\nnajštruktúrovanejšiemu\nnajštruktúrovanejších\nnajštruktúrovanejším\nnajštruktúrovanejšími\nnajštruktúrovanejšiu\nnajštruktúrovanejšom\nnajštruktúrovanejšou\nnajštudovanejšej\nnajštudovanejší\nnajštudovanejšia\nnajštudovanejšie\nnajštudovanejšieho\nnajštudovanejšiemu\nnajštudovanejších\nnajštudovanejším\nnajštudovanejšími\nnajštudovanejšiu\nnajštudovanejšom\nnajštudovanejšou\nnajšťúplejšej\nnajšťúplejší\nnajšťúplejšia\nnajšťúplejšie\nnajšťúplejšieho\nnajšťúplejšiemu\nnajšťúplejších\nnajšťúplejším\nnajšťúplejšími\nnajšťúplejšiu\nnajšťúplejšom\nnajšťúplejšou\nnajštvavejšej\nnajštvavejší\nnajštvavejšia\nnajštvavejšie\nnajštvavejšieho\nnajštvavejšiemu\nnajštvavejších\nnajštvavejším\nnajštvavejšími\nnajštvavejšiu\nnajštvavejšom\nnajštvavejšou\nnajštvoruhlastejšej\nnajštvoruhlastejší\nnajštvoruhlastejšia\nnajštvoruhlastejšie\nnajštvoruhlastejšieho\nnajštvoruhlastejšiemu\nnajštvoruhlastejších\nnajštvoruhlastejším\nnajštvoruhlastejšími\nnajštvoruhlastejšiu\nnajštvoruhlastejšom\nnajštvoruhlastejšou\nnajštylizovanejšej\nnajštylizovanejší\nnajštylizovanejšia\nnajštylizovanejšie\nnajštylizovanejšieho\nnajštylizovanejšiemu\nnajštylizovanejších\nnajštylizovanejším\nnajštylizovanejšími\nnajštylizovanejšiu\nnajštylizovanejšom\nnajštylizovanejšou\nnajštýlotvornejšej\nnajštýlotvornejší\nnajštýlotvornejšia\nnajštýlotvornejšie\nnajštýlotvornejšieho\nnajštýlotvornejšiemu\nnajštýlotvornejších\nnajštýlotvornejším\nnajštýlotvornejšími\nnajštýlotvornejšiu\nnajštýlotvornejšom\nnajštýlotvornejšou\nnajštýlovejšej\nnajštýlovejší\nnajštýlovejšia\nnajštýlovejšie\nnajštýlovejšieho\nnajštýlovejšiemu\nnajštýlovejších\nnajštýlovejším\nnajštýlovejšími\nnajštýlovejšiu\nnajštýlovejšom\nnajštýlovejšou\nnajšúchavejšej\nnajšúchavejší\nnajšúchavejšia\nnajšúchavejšie\nnajšúchavejšieho\nnajšúchavejšiemu\nnajšúchavejších\nnajšúchavejším\nnajšúchavejšími\nnajšúchavejšiu\nnajšúchavejšom\nnajšúchavejšou\nnajšuchotavejšej\nnajšuchotavejší\nnajšuchotavejšia\nnajšuchotavejšie\nnajšuchotavejšieho\nnajšuchotavejšiemu\nnajšuchotavejších\nnajšuchotavejším\nnajšuchotavejšími\nnajšuchotavejšiu\nnajšuchotavejšom\nnajšuchotavejšou\nnajšuchtavejšej\nnajšuchtavejší\nnajšuchtavejšia\nnajšuchtavejšie\nnajšuchtavejšieho\nnajšuchtavejšiemu\nnajšuchtavejších\nnajšuchtavejším\nnajšuchtavejšími\nnajšuchtavejšiu\nnajšuchtavejšom\nnajšuchtavejšou\nnajšumivejšej\nnajšumivejší\nnajšumivejšia\nnajšumivejšie\nnajšumivejšieho\nnajšumivejšiemu\nnajšumivejších\nnajšumivejším\nnajšumivejšími\nnajšumivejšiu\nnajšumivejšom\nnajšumivejšou\nnajšumnejšej\nnajšumnejší\nnajšumnejšia\nnajšumnejšie\nnajšumnejšieho\nnajšumnejšiemu\nnajšumnejších\nnajšumnejším\nnajšumnejšími\nnajšumnejšiu\nnajšumnejšom\nnajšumnejšou\nnajšupinatejšej\nnajšupinatejší\nnajšupinatejšia\nnajšupinatejšie\nnajšupinatejšieho\nnajšupinatejšiemu\nnajšupinatejších\nnajšupinatejším\nnajšupinatejšími\nnajšupinatejšiu\nnajšupinatejšom\nnajšupinatejšou\nnajšupinovitejšej\nnajšupinovitejší\nnajšupinovitejšia\nnajšupinovitejšie\nnajšupinovitejšieho\nnajšupinovitejšiemu\nnajšupinovitejších\nnajšupinovitejším\nnajšupinovitejšími\nnajšupinovitejšiu\nnajšupinovitejšom\nnajšupinovitejšou\nnajšušlavejšej\nnajšušlavejší\nnajšušlavejšia\nnajšušlavejšie\nnajšušlavejšieho\nnajšušlavejšiemu\nnajšušlavejších\nnajšušlavejším\nnajšušlavejšími\nnajšušlavejšiu\nnajšušlavejšom\nnajšušlavejšou\nnajšušťavejšej\nnajšušťavejší\nnajšušťavejšia\nnajšušťavejšie\nnajšušťavejšieho\nnajšušťavejšiemu\nnajšušťavejších\nnajšušťavejším\nnajšušťavejšími\nnajšušťavejšiu\nnajšušťavejšom\nnajšušťavejšou\nnajšuštivejšej\nnajšuštivejší\nnajšuštivejšia\nnajšuštivejšie\nnajšuštivejšieho\nnajšuštivejšiemu\nnajšuštivejších\nnajšuštivejším\nnajšuštivejšími\nnajšuštivejšiu\nnajšuštivejšom\nnajšuštivejšou\nnajšvandovnejšej\nnajšvandovnejší\nnajšvandovnejšia\nnajšvandovnejšie\nnajšvandovnejšieho\nnajšvandovnejšiemu\nnajšvandovnejších\nnajšvandovnejším\nnajšvandovnejšími\nnajšvandovnejšiu\nnajšvandovnejšom\nnajšvandovnejšou\nnajšvárnejšej\nnajšvárnejší\nnajšvárnejšia\nnajšvárnejšie\nnajšvárnejšieho\nnajšvárnejšiemu\nnajšvárnejších\nnajšvárnejším\nnajšvárnejšími\nnajšvárnejšiu\nnajšvárnejšom\nnajšvárnejšou\nnajšvédskejšej\nnajšvédskejší\nnajšvédskejšia\nnajšvédskejšie\nnajšvédskejšieho\nnajšvédskejšiemu\nnajšvédskejších\nnajšvédskejším\nnajšvédskejšími\nnajšvédskejšiu\nnajšvédskejšom\nnajšvédskejšou\nnajšviháckejšej\nnajšviháckejší\nnajšviháckejšia\nnajšviháckejšie\nnajšviháckejšieho\nnajšviháckejšiemu\nnajšviháckejších\nnajšviháckejším\nnajšviháckejšími\nnajšviháckejšiu\nnajšviháckejšom\nnajšviháckejšou\nnajšvitorivejšej\nnajšvitorivejší\nnajšvitorivejšia\nnajšvitorivejšie\nnajšvitorivejšieho\nnajšvitorivejšiemu\nnajšvitorivejších\nnajšvitorivejším\nnajšvitorivejšími\nnajšvitorivejšiu\nnajšvitorivejšom\nnajšvitorivejšou\nnajtackavejšej\nnajtackavejší\nnajtackavejšia\nnajtackavejšie\nnajtackavejšieho\nnajtackavejšiemu\nnajtackavejších\nnajtackavejším\nnajtackavejšími\nnajtackavejšiu\nnajtackavejšom\nnajtackavejšou\nnajťahanejšej\nnajťahanejší\nnajťahanejšia\nnajťahanejšie\nnajťahanejšieho\nnajťahanejšiemu\nnajťahanejších\nnajťahanejším\nnajťahanejšími\nnajťahanejšiu\nnajťahanejšom\nnajťahanejšou\nnajťahavejšej\nnajťahavejší\nnajťahavejšia\nnajťahavejšie\nnajťahavejšieho\nnajťahavejšiemu\nnajťahavejších\nnajťahavejším\nnajťahavejšími\nnajťahavejšiu\nnajťahavejšom\nnajťahavejšou\nnajtajnejšej\nnajtajnejší\nnajtajnejšia\nnajtajnejšie\nnajtajnejšieho\nnajtajnejšiemu\nnajtajnejších\nnajtajnejším\nnajtajnejšími\nnajtajnejšiu\nnajtajnejšom\nnajtajnejšou\nnajtajnostkárskejšej\nnajtajnostkárskejší\nnajtajnostkárskejšia\nnajtajnostkárskejšie\nnajtajnostkárskejšieho\nnajtajnostkárskejšiemu\nnajtajnostkárskejších\nnajtajnostkárskejším\nnajtajnostkárskejšími\nnajtajnostkárskejšiu\nnajtajnostkárskejšom\nnajtajnostkárskejšou\nnajtajomnejšej\nnajtajomnejší\nnajtajomnejšia\nnajtajomnejšie\nnajtajomnejšieho\nnajtajomnejšiemu\nnajtajomnejších\nnajtajomnejším\nnajtajomnejšími\nnajtajomnejšiu\nnajtajomnejšom\nnajtajomnejšou\nnajtajuplnejšej\nnajtajuplnejší\nnajtajuplnejšia\nnajtajuplnejšie\nnajtajuplnejšieho\nnajtajuplnejšiemu\nnajtajuplnejších\nnajtajuplnejším\nnajtajuplnejšími\nnajtajuplnejšiu\nnajtajuplnejšom\nnajtajuplnejšou\nnajtaktickejšej\nnajtaktickejší\nnajtaktickejšia\nnajtaktickejšie\nnajtaktickejšieho\nnajtaktickejšiemu\nnajtaktickejších\nnajtaktickejším\nnajtaktickejšími\nnajtaktickejšiu\nnajtaktickejšom\nnajtaktickejšou\nnajtaktnejšej\nnajtaktnejší\nnajtaktnejšia\nnajtaktnejšie\nnajtaktnejšieho\nnajtaktnejšiemu\nnajtaktnejších\nnajtaktnejším\nnajtaktnejšími\nnajtaktnejšiu\nnajtaktnejšom\nnajtaktnejšou\nnajtalentovanejšej\nnajtalentovanejší\nnajtalentovanejšia\nnajtalentovanejšie\nnajtalentovanejšieho\nnajtalentovanejšiemu\nnajtalentovanejších\nnajtalentovanejším\nnajtalentovanejšími\nnajtalentovanejšiu\nnajtalentovanejšom\nnajtalentovanejšou\nnajtalianskejšej\nnajtalianskejší\nnajtalianskejšia\nnajtalianskejšie\nnajtalianskejšieho\nnajtalianskejšiemu\nnajtalianskejších\nnajtalianskejším\nnajtalianskejšími\nnajtalianskejšiu\nnajtalianskejšom\nnajtalianskejšou\nnajtancachtivejšej\nnajtancachtivejší\nnajtancachtivejšia\nnajtancachtivejšie\nnajtancachtivejšieho\nnajtancachtivejšiemu\nnajtancachtivejších\nnajtancachtivejším\nnajtancachtivejšími\nnajtancachtivejšiu\nnajtancachtivejšom\nnajtancachtivejšou\nnajtanečnejšej\nnajtanečnejší\nnajtanečnejšia\nnajtanečnejšie\nnajtanečnejšieho\nnajtanečnejšiemu\nnajtanečnejších\nnajtanečnejším\nnajtanečnejšími\nnajtanečnejšiu\nnajtanečnejšom\nnajtanečnejšou\nnajtanierovitejšej\nnajtanierovitejší\nnajtanierovitejšia\nnajtanierovitejšie\nnajtanierovitejšieho\nnajtanierovitejšiemu\nnajtanierovitejších\nnajtanierovitejším\nnajtanierovitejšími\nnajtanierovitejšiu\nnajtanierovitejšom\nnajtanierovitejšou\nnajtápavejšej\nnajtápavejší\nnajtápavejšia\nnajtápavejšie\nnajtápavejšieho\nnajtápavejšiemu\nnajtápavejších\nnajtápavejším\nnajtápavejšími\nnajtápavejšiu\nnajtápavejšom\nnajtápavejšou\nnajtáravejšej\nnajtáravejší\nnajtáravejšia\nnajtáravejšie\nnajtáravejšieho\nnajtáravejšiemu\nnajtáravejších\nnajtáravejším\nnajtáravejšími\nnajtáravejšiu\nnajtáravejšom\nnajtáravejšou\nnajťarbáckejšej\nnajťarbáckejší\nnajťarbáckejšia\nnajťarbáckejšie\nnajťarbáckejšieho\nnajťarbáckejšiemu\nnajťarbáckejších\nnajťarbáckejším\nnajťarbáckejšími\nnajťarbáckejšiu\nnajťarbáckejšom\nnajťarbáckejšou\nnajťarbavejšej\nnajťarbavejší\nnajťarbavejšia\nnajťarbavejšie\nnajťarbavejšieho\nnajťarbavejšiemu\nnajťarbavejších\nnajťarbavejším\nnajťarbavejšími\nnajťarbavejšiu\nnajťarbavejšom\nnajťarbavejšou\nnajtarkavejšej\nnajtarkavejší\nnajtarkavejšia\nnajtarkavejšie\nnajtarkavejšieho\nnajtarkavejšiemu\nnajtarkavejších\nnajtarkavejším\nnajtarkavejšími\nnajtarkavejšiu\nnajtarkavejšom\nnajtarkavejšou\nnajtatárskejšej\nnajtatárskejší\nnajtatárskejšia\nnajtatárskejšie\nnajtatárskejšieho\nnajtatárskejšiemu\nnajtatárskejších\nnajtatárskejším\nnajtatárskejšími\nnajtatárskejšiu\nnajtatárskejšom\nnajtatárskejšou\nnajťaživejšej\nnajťaživejší\nnajťaživejšia\nnajťaživejšie\nnajťaživejšieho\nnajťaživejšiemu\nnajťaživejších\nnajťaživejším\nnajťaživejšími\nnajťaživejšiu\nnajťaživejšom\nnajťaživejšou\nnajťažkomyseľnejšej\nnajťažkomyseľnejší\nnajťažkomyseľnejšia\nnajťažkomyseľnejšie\nnajťažkomyseľnejšieho\nnajťažkomyseľnejšiemu\nnajťažkomyseľnejších\nnajťažkomyseľnejším\nnajťažkomyseľnejšími\nnajťažkomyseľnejšiu\nnajťažkomyseľnejšom\nnajťažkomyseľnejšou\nnajťažkopádnejšej\nnajťažkopádnejší\nnajťažkopádnejšia\nnajťažkopádnejšie\nnajťažkopádnejšieho\nnajťažkopádnejšiemu\nnajťažkopádnejších\nnajťažkopádnejším\nnajťažkopádnejšími\nnajťažkopádnejšiu\nnajťažkopádnejšom\nnajťažkopádnejšou\nnajťažnejšej\nnajťažnejší\nnajťažnejšia\nnajťažnejšie\nnajťažnejšieho\nnajťažnejšiemu\nnajťažnejších\nnajťažnejším\nnajťažnejšími\nnajťažnejšiu\nnajťažnejšom\nnajťažnejšou\nnajteatrálnejšej\nnajteatrálnejší\nnajteatrálnejšia\nnajteatrálnejšie\nnajteatrálnejšieho\nnajteatrálnejšiemu\nnajteatrálnejších\nnajteatrálnejším\nnajteatrálnejšími\nnajteatrálnejšiu\nnajteatrálnejšom\nnajteatrálnejšou\nnajtechnickejšej\nnajtechnickejší\nnajtechnickejšia\nnajtechnickejšie\nnajtechnickejšieho\nnajtechnickejšiemu\nnajtechnickejších\nnajtechnickejším\nnajtechnickejšími\nnajtechnickejšiu\nnajtechnickejšom\nnajtechnickejšou\nnajtekutejšej\nnajtekutejší\nnajtekutejšia\nnajtekutejšie\nnajtekutejšieho\nnajtekutejšiemu\nnajtekutejších\nnajtekutejším\nnajtekutejšími\nnajtekutejšiu\nnajtekutejšom\nnajtekutejšou\nnajtelesnejšie\nnajtelnatejšej\nnajtelnatejší\nnajtelnatejšia\nnajtelnatejšie\nnajtelnatejšieho\nnajtelnatejšiemu\nnajtelnatejších\nnajtelnatejším\nnajtelnatejšími\nnajtelnatejšiu\nnajtelnatejšom\nnajtelnatejšou\nnajtematickejšej\nnajtematickejší\nnajtematickejšia\nnajtematickejšie\nnajtematickejšieho\nnajtematickejšiemu\nnajtematickejších\nnajtematickejším\nnajtematickejšími\nnajtematickejšiu\nnajtematickejšom\nnajtematickejšou\nnajtemnejšej\nnajtemnejší\nnajtemnejšia\nnajtemnejšie\nnajtemnejšieho\nnajtemnejšiemu\nnajtemnejších\nnajtemnejším\nnajtemnejšími\nnajtemnejšiu\nnajtemnejšom\nnajtemnejšou\nnajtemperamentnejšej\nnajtemperamentnejší\nnajtemperamentnejšia\nnajtemperamentnejšie\nnajtemperamentnejšieho\nnajtemperamentnejšiemu\nnajtemperamentnejších\nnajtemperamentnejším\nnajtemperamentnejšími\nnajtemperamentnejšiu\nnajtemperamentnejšom\nnajtemperamentnejšou\nnajtemravejšej\nnajtemravejší\nnajtemravejšia\nnajtemravejšie\nnajtemravejšieho\nnajtemravejšiemu\nnajtemravejších\nnajtemravejším\nnajtemravejšími\nnajtemravejšiu\nnajtemravejšom\nnajtemravejšou\nnajtendenčnejšej\nnajtendenčnejší\nnajtendenčnejšia\nnajtendenčnejšie\nnajtendenčnejšieho\nnajtendenčnejšiemu\nnajtendenčnejších\nnajtendenčnejším\nnajtendenčnejšími\nnajtendenčnejšiu\nnajtendenčnejšom\nnajtendenčnejšou\nnajtenkonohejšej\nnajtenkonohejší\nnajtenkonohejšia\nnajtenkonohejšie\nnajtenkonohejšieho\nnajtenkonohejšiemu\nnajtenkonohejších\nnajtenkonohejším\nnajtenkonohejšími\nnajtenkonohejšiu\nnajtenkonohejšom\nnajtenkonohejšou\nnajteplejšej\nnajteplejší\nnajteplejšia\nnajteplejšie\nnajteplejšieho\nnajteplejšiemu\nnajteplejších\nnajteplejším\nnajteplejšími\nnajteplejšiu\nnajteplejšom\nnajteplejšou\nnajteplomilnejšej\nnajteplomilnejší\nnajteplomilnejšia\nnajteplomilnejšie\nnajteplomilnejšieho\nnajteplomilnejšiemu\nnajteplomilnejších\nnajteplomilnejším\nnajteplomilnejšími\nnajteplomilnejšiu\nnajteplomilnejšom\nnajteplomilnejšou\nnajterasovitejšej\nnajterasovitejší\nnajterasovitejšia\nnajterasovitejšie\nnajterasovitejšieho\nnajterasovitejšiemu\nnajterasovitejších\nnajterasovitejším\nnajterasovitejšími\nnajterasovitejšiu\nnajterasovitejšom\nnajterasovitejšou\nnajteroristickejšie\nnajtesnejšej\nnajtesnejší\nnajtesnejšia\nnajtesnejšie\nnajtesnejšieho\nnajtesnejšiemu\nnajtesnejších\nnajtesnejším\nnajtesnejšími\nnajtesnejšiu\nnajtesnejšom\nnajtesnejšou\nnajtézovitejšej\nnajtézovitejší\nnajtézovitejšia\nnajtézovitejšie\nnajtézovitejšieho\nnajtézovitejšiemu\nnajtézovitejších\nnajtézovitejším\nnajtézovitejšími\nnajtézovitejšiu\nnajtézovitejšom\nnajtézovitejšou\nnajtiahlejšej\nnajtiahlejší\nnajtiahlejšia\nnajtiahlejšie\nnajtiahlejšieho\nnajtiahlejšiemu\nnajtiahlejších\nnajtiahlejším\nnajtiahlejšími\nnajtiahlejšiu\nnajtiahlejšom\nnajtiahlejšou\nnajtiaž\nnajtienistejšej\nnajtienistejší\nnajtienistejšia\nnajtienistejšie\nnajtienistejšieho\nnajtienistejšiemu\nnajtienistejších\nnajtienistejším\nnajtienistejšími\nnajtienistejšiu\nnajtienistejšom\nnajtienistejšou\nnajtiesnivejšej\nnajtiesnivejší\nnajtiesnivejšia\nnajtiesnivejšie\nnajtiesnivejšieho\nnajtiesnivejšiemu\nnajtiesnivejších\nnajtiesnivejším\nnajtiesnivejšími\nnajtiesnivejšiu\nnajtiesnivejšom\nnajtiesnivejšou\nnajtichšej\nnajtichší\nnajtichšia\nnajtichšie\nnajtichšieho\nnajtichšiemu\nnajtichších\nnajtichším\nnajtichšími\nnajtichšiu\nnajtichšom\nnajtichšou\nnajtklivejšej\nnajtklivejší\nnajtklivejšia\nnajtklivejšie\nnajtklivejšieho\nnajtklivejšiemu\nnajtklivejších\nnajtklivejším\nnajtklivejšími\nnajtklivejšiu\nnajtklivejšom\nnajtklivejšou\nnajtlačenejšej\nnajtlačenejší\nnajtlačenejšia\nnajtlačenejšie\nnajtlačenejšieho\nnajtlačenejšiemu\nnajtlačenejších\nnajtlačenejším\nnajtlačenejšími\nnajtlačenejšiu\nnajtlačenejšom\nnajtlačenejšou\nnajtľapkavejšej\nnajtľapkavejší\nnajtľapkavejšia\nnajtľapkavejšie\nnajtľapkavejšieho\nnajtľapkavejšiemu\nnajtľapkavejších\nnajtľapkavejším\nnajtľapkavejšími\nnajtľapkavejšiu\nnajtľapkavejšom\nnajtľapkavejšou\nnajtlmenejšej\nnajtlmenejší\nnajtlmenejšia\nnajtlmenejšie\nnajtlmenejšieho\nnajtlmenejšiemu\nnajtlmenejších\nnajtlmenejším\nnajtlmenejšími\nnajtlmenejšiu\nnajtlmenejšom\nnajtlmenejšou\nnajtlmivejšej\nnajtlmivejší\nnajtlmivejšia\nnajtlmivejšie\nnajtlmivejšieho\nnajtlmivejšiemu\nnajtlmivejších\nnajtlmivejším\nnajtlmivejšími\nnajtlmivejšiu\nnajtlmivejšom\nnajtlmivejšou\nnajtlstejšej\nnajtlstejší\nnajtlstejšia\nnajtlstejšie\nnajtlstejšieho\nnajtlstejšiemu\nnajtlstejších\nnajtlstejším\nnajtlstejšími\nnajtlstejšiu\nnajtlstejšom\nnajtlstejšou\nnajtmárskejšej\nnajtmárskejší\nnajtmárskejšia\nnajtmárskejšie\nnajtmárskejšieho\nnajtmárskejšiemu\nnajtmárskejších\nnajtmárskejším\nnajtmárskejšími\nnajtmárskejšiu\nnajtmárskejšom\nnajtmárskejšou\nnajtočenejšej\nnajtočenejší\nnajtočenejšia\nnajtočenejšie\nnajtočenejšieho\nnajtočenejšiemu\nnajtočenejších\nnajtočenejším\nnajtočenejšími\nnajtočenejšiu\nnajtočenejšom\nnajtočenejšou\nnajtolerantnejšej\nnajtolerantnejší\nnajtolerantnejšia\nnajtolerantnejšie\nnajtolerantnejšieho\nnajtolerantnejšiemu\nnajtolerantnejších\nnajtolerantnejším\nnajtolerantnejšími\nnajtolerantnejšiu\nnajtolerantnejšom\nnajtolerantnejšou\nnajtônistejšej\nnajtônistejší\nnajtônistejšia\nnajtônistejšie\nnajtônistejšieho\nnajtônistejšiemu\nnajtônistejších\nnajtônistejším\nnajtônistejšími\nnajtônistejšiu\nnajtônistejšom\nnajtônistejšou\nnajtopornejšej\nnajtopornejší\nnajtopornejšia\nnajtopornejšie\nnajtopornejšieho\nnajtopornejšiemu\nnajtopornejších\nnajtopornejším\nnajtopornejšími\nnajtopornejšiu\nnajtopornejšom\nnajtopornejšou\nnajtorzovitejšej\nnajtorzovitejší\nnajtorzovitejšia\nnajtorzovitejšie\nnajtorzovitejšieho\nnajtorzovitejšiemu\nnajtorzovitejších\nnajtorzovitejším\nnajtorzovitejšími\nnajtorzovitejšiu\nnajtorzovitejšom\nnajtorzovitejšou\nnajtotalitnejšie\nnajtoxickejšej\nnajtoxickejší\nnajtoxickejšia\nnajtoxickejšie\nnajtoxickejšieho\nnajtoxickejšiemu\nnajtoxickejších\nnajtoxickejším\nnajtoxickejšími\nnajtoxickejšiu\nnajtoxickejšom\nnajtoxickejšou\nnajtradicionalistickejšej\nnajtradicionalistickejší\nnajtradicionalistickejšia\nnajtradicionalistickejšie\nnajtradicionalistickejšieho\nnajtradicionalistickejšiemu\nnajtradicionalistickejších\nnajtradicionalistickejším\nnajtradicionalistickejšími\nnajtradicionalistickejšiu\nnajtradicionalistickejšom\nnajtradicionalistickejšou\nnajtradičnejšej\nnajtradičnejší\nnajtradičnejšia\nnajtradičnejšie\nnajtradičnejšieho\nnajtradičnejšiemu\nnajtradičnejších\nnajtradičnejším\nnajtradičnejšími\nnajtradičnejšiu\nnajtradičnejšom\nnajtradičnejšou\nnajtrafenejšej\nnajtrafenejší\nnajtrafenejšia\nnajtrafenejšie\nnajtrafenejšieho\nnajtrafenejšiemu\nnajtrafenejších\nnajtrafenejším\nnajtrafenejšími\nnajtrafenejšiu\nnajtrafenejšom\nnajtrafenejšou\nnajtragickejšej\nnajtragickejší\nnajtragickejšia\nnajtragickejšie\nnajtragickejšieho\nnajtragickejšiemu\nnajtragickejších\nnajtragickejším\nnajtragickejšími\nnajtragickejšiu\nnajtragickejšom\nnajtragickejšou\nnajtragikomickejšie\nnajtranscendentálnejšie\nnajtranscendentnejšie\nnajtransparentnejšej\nnajtransparentnejší\nnajtransparentnejšia\nnajtransparentnejšie\nnajtransparentnejšieho\nnajtransparentnejšiemu\nnajtransparentnejších\nnajtransparentnejším\nnajtransparentnejšími\nnajtransparentnejšiu\nnajtransparentnejšom\nnajtransparentnejšou\nnajtrápnejšej\nnajtrápnejší\nnajtrápnejšia\nnajtrápnejšie\nNajtrápnejšie\nnajtrápnejšieho\nnajtrápnejšiemu\nnajtrápnejších\nnajtrápnejším\nnajtrápnejšími\nnajtrápnejšiu\nnajtrápnejšom\nnajtrápnejšou\nnajtraskavejšej\nnajtraskavejší\nnajtraskavejšia\nnajtraskavejšie\nnajtraskavejšieho\nnajtraskavejšiemu\nnajtraskavejších\nnajtraskavejším\nnajtraskavejšími\nnajtraskavejšiu\nnajtraskavejšom\nnajtraskavejšou\nnajtrasľavejšej\nnajtrasľavejší\nnajtrasľavejšia\nnajtrasľavejšie\nnajtrasľavejšieho\nnajtrasľavejšiemu\nnajtrasľavejších\nnajtrasľavejším\nnajtrasľavejšími\nnajtrasľavejšiu\nnajtrasľavejšom\nnajtrasľavejšou\nnajtraumatickejšej\nnajtraumatickejší\nnajtraumatickejšia\nnajtraumatickejšie\nnajtraumatickejšieho\nnajtraumatickejšiemu\nnajtraumatickejších\nnajtraumatickejším\nnajtraumatickejšími\nnajtraumatickejšiu\nnajtraumatickejšom\nnajtraumatickejšou\nnajtrávnatejšej\nnajtrávnatejší\nnajtrávnatejšia\nnajtrávnatejšie\nnajtrávnatejšieho\nnajtrávnatejšiemu\nnajtrávnatejších\nnajtrávnatejším\nnajtrávnatejšími\nnajtrávnatejšiu\nnajtrávnatejšom\nnajtrávnatejšou\nnajtrblietavejšej\nnajtrblietavejší\nnajtrblietavejšia\nnajtrblietavejšie\nnajtrblietavejšieho\nnajtrblietavejšiemu\nnajtrblietavejších\nnajtrblietavejším\nnajtrblietavejšími\nnajtrblietavejšiu\nnajtrblietavejšom\nnajtrblietavejšou\nnajtrefnejšej\nnajtrefnejší\nnajtrefnejšia\nnajtrefnejšie\nnajtrefnejšieho\nnajtrefnejšiemu\nnajtrefnejších\nnajtrefnejším\nnajtrefnejšími\nnajtrefnejšiu\nnajtrefnejšom\nnajtrefnejšou\nnajtrendovejšej\nnajtrendovejší\nnajtrendovejšia\nnajtrendovejšie\nnajtrendovejšieho\nnajtrendovejšiemu\nnajtrendovejších\nnajtrendovejším\nnajtrendovejšími\nnajtrendovejšiu\nnajtrendovejšom\nnajtrendovejšou\nnajtrénovanejším\nnajtreskúcejšej\nnajtreskúcejší\nnajtreskúcejšia\nnajtreskúcejšie\nnajtreskúcejšieho\nnajtreskúcejšiemu\nnajtreskúcejších\nnajtreskúcejším\nnajtreskúcejšími\nnajtreskúcejšiu\nnajtreskúcejšom\nnajtreskúcejšou\nnajtrestnejšej\nnajtrestnejší\nnajtrestnejšia\nnajtrestnejšie\nnajtrestnejšieho\nnajtrestnejšiemu\nnajtrestnejších\nnajtrestnejším\nnajtrestnejšími\nnajtrestnejšiu\nnajtrestnejšom\nnajtrestnejšou\nnajtrestuhodnejšej\nnajtrestuhodnejší\nnajtrestuhodnejšia\nnajtrestuhodnejšie\nnajtrestuhodnejšieho\nnajtrestuhodnejšiemu\nnajtrestuhodnejších\nnajtrestuhodnejším\nnajtrestuhodnejšími\nnajtrestuhodnejšiu\nnajtrestuhodnejšom\nnajtrestuhodnejšou\nnajtrhanejšej\nnajtrhanejší\nnajtrhanejšia\nnajtrhanejšie\nnajtrhanejšieho\nnajtrhanejšiemu\nnajtrhanejších\nnajtrhanejším\nnajtrhanejšími\nnajtrhanejšiu\nnajtrhanejšom\nnajtrhanejšou\nnajtrhanskejšej\nnajtrhanskejší\nnajtrhanskejšia\nnajtrhanskejšie\nnajtrhanskejšieho\nnajtrhanskejšiemu\nnajtrhanskejších\nnajtrhanskejším\nnajtrhanskejšími\nnajtrhanskejšiu\nnajtrhanskejšom\nnajtrhanskejšou\nnajtrhavejšej\nnajtrhavejší\nnajtrhavejšia\nnajtrhavejšie\nnajtrhavejšieho\nnajtrhavejšiemu\nnajtrhavejších\nnajtrhavejším\nnajtrhavejšími\nnajtrhavejšiu\nnajtrhavejšom\nnajtrhavejšou\nnajtrhovejšie\nnajtriezvejšej\nnajtriezvejší\nnajtriezvejšia\nnajtriezvejšie\nnajtriezvejšieho\nnajtriezvejšiemu\nnajtriezvejších\nnajtriezvejším\nnajtriezvejšími\nnajtriezvejšiu\nnajtriezvejšom\nnajtriezvejšou\nnajtristnejšej\nnajtristnejší\nnajtristnejšia\nnajtristnejšie\nnajtristnejšieho\nnajtristnejšiemu\nnajtristnejších\nnajtristnejším\nnajtristnejšími\nnajtristnejšiu\nnajtristnejšom\nnajtristnejšou\nnajtriumfálnejšie\nnajtriviálnejšej\nnajtriviálnejší\nnajtriviálnejšia\nnajtriviálnejšie\nnajtriviálnejšieho\nnajtriviálnejšiemu\nnajtriviálnejších\nnajtriviálnejším\nnajtriviálnejšími\nnajtriviálnejšiu\nnajtriviálnejšom\nnajtriviálnejšou\nnajtrochárskejšej\nnajtrochárskejší\nnajtrochárskejšia\nnajtrochárskejšie\nnajtrochárskejšieho\nnajtrochárskejšiemu\nnajtrochárskejších\nnajtrochárskejším\nnajtrochárskejšími\nnajtrochárskejšiu\nnajtrochárskejšom\nnajtrochárskejšou\nnajtropickejšej\nnajtropickejší\nnajtropickejšia\nnajtropickejšie\nnajtropickejšieho\nnajtropickejšiemu\nnajtropickejších\nnajtropickejším\nnajtropickejšími\nnajtropickejšiu\nnajtropickejšom\nnajtropickejšou\nnajtrpezlivejšej\nnajtrpezlivejší\nnajtrpezlivejšia\nnajtrpezlivejšie\nnajtrpezlivejšieho\nnajtrpezlivejšiemu\nnajtrpezlivejších\nnajtrpezlivejším\nnajtrpezlivejšími\nnajtrpezlivejšiu\nnajtrpezlivejšom\nnajtrpezlivejšou\nnajtrpiteľskejšej\nnajtrpiteľskejší\nnajtrpiteľskejšia\nnajtrpiteľskejšie\nnajtrpiteľskejšieho\nnajtrpiteľskejšiemu\nnajtrpiteľskejších\nnajtrpiteľskejším\nnajtrpiteľskejšími\nnajtrpiteľskejšiu\nnajtrpiteľskejšom\nnajtrpiteľskejšou\nnajtrucovitejšej\nnajtrucovitejší\nnajtrucovitejšia\nnajtrucovitejšie\nnajtrucovitejšieho\nnajtrucovitejšiemu\nnajtrucovitejších\nnajtrucovitejším\nnajtrucovitejšími\nnajtrucovitejšiu\nnajtrucovitejšom\nnajtrucovitejšou\nnajtrudnejšej\nnajtrudnejší\nnajtrudnejšia\nnajtrudnejšie\nnajtrudnejšieho\nnajtrudnejšiemu\nnajtrudnejších\nnajtrudnejším\nnajtrudnejšími\nnajtrudnejšiu\nnajtrudnejšom\nnajtrudnejšou\nnajtrudnomyseľnejšej\nnajtrudnomyseľnejší\nnajtrudnomyseľnejšia\nnajtrudnomyseľnejšie\nnajtrudnomyseľnejšieho\nnajtrudnomyseľnejšiemu\nnajtrudnomyseľnejších\nnajtrudnomyseľnejším\nnajtrudnomyseľnejšími\nnajtrudnomyseľnejšiu\nnajtrudnomyseľnejšom\nnajtrudnomyseľnejšou\nnajtrúfanlivejšej\nnajtrúfanlivejší\nnajtrúfanlivejšia\nnajtrúfanlivejšie\nnajtrúfanlivejšieho\nnajtrúfanlivejšiemu\nnajtrúfanlivejších\nnajtrúfanlivejším\nnajtrúfanlivejšími\nnajtrúfanlivejšiu\nnajtrúfanlivejšom\nnajtrúfanlivejšou\nnajtrúchlivejšej\nnajtrúchlivejší\nnajtrúchlivejšia\nnajtrúchlivejšie\nnajtrúchlivejšieho\nnajtrúchlivejšiemu\nnajtrúchlivejších\nnajtrúchlivejším\nnajtrúchlivejšími\nnajtrúchlivejšiu\nnajtrúchlivejšom\nnajtrúchlivejšou\nnajtrvácejšej\nnajtrvácejší\nnajtrvácejšia\nnajtrvácejšie\nnajtrvácejšieho\nnajtrvácejšiemu\nnajtrvácejších\nnajtrvácejším\nnajtrvácejšími\nnajtrvácejšiu\nnajtrvácejšom\nnajtrvácejšou\nnajtrvalejšej\nnajtrvalejší\nnajtrvalejšia\nnajtrvalejšie\nnajtrvalejšieho\nnajtrvalejšiemu\nnajtrvalejších\nnajtrvalejším\nnajtrvalejšími\nnajtrvalejšiu\nnajtrvalejšom\nnajtrvalejšou\nnajtrvanlivejšej\nnajtrvanlivejší\nnajtrvanlivejšia\nnajtrvanlivejšie\nnajtrvanlivejšieho\nnajtrvanlivejšiemu\nnajtrvanlivejších\nnajtrvanlivejším\nnajtrvanlivejšími\nnajtrvanlivejšiu\nnajtrvanlivejšom\nnajtrvanlivejšou\nnajtrýznivejšej\nnajtrýznivejší\nnajtrýznivejšia\nnajtrýznivejšie\nnajtrýznivejšieho\nnajtrýznivejšiemu\nnajtrýznivejších\nnajtrýznivejším\nnajtrýznivejšími\nnajtrýznivejšiu\nnajtrýznivejšom\nnajtrýznivejšou\nnajtuctovejšej\nnajtuctovejší\nnajtuctovejšia\nnajtuctovejšie\nnajtuctovejšieho\nnajtuctovejšiemu\nnajtuctovejších\nnajtuctovejším\nnajtuctovejšími\nnajtuctovejšiu\nnajtuctovejšom\nnajtuctovejšou\nnajtuhšej\nnajtuhší\nnajtuhšia\nnajtuhšie\nnajtuhšieho\nnajtuhšiemu\nnajtuhších\nnajtuhším\nnajtuhšími\nnajtuhšiu\nnajtuhšom\nnajtuhšou\nnajťuknutie\nnajtúlavejšej\nnajtúlavejší\nnajtúlavejšia\nnajtúlavejšie\nnajtúlavejšieho\nnajtúlavejšiemu\nnajtúlavejších\nnajtúlavejším\nnajtúlavejšími\nnajtúlavejšiu\nnajtúlavejšom\nnajtúlavejšou\nnajtupejšej\nnajtupejší\nnajtupejšia\nnajtupejšie\nnajtupejšieho\nnajtupejšiemu\nnajtupejších\nnajtupejším\nnajtupejšími\nnajtupejšiu\nnajtupejšom\nnajtupejšou\nnajturbulentnejšie\nnajtureckejšej\nnajtureckejší\nnajtureckejšia\nnajtureckejšie\nnajtureckejšieho\nnajtureckejšiemu\nnajtureckejších\nnajtureckejším\nnajtureckejšími\nnajtureckejšiu\nnajtureckejšom\nnajtureckejšou\nnajťuťmáckejšej\nnajťuťmáckejší\nnajťuťmáckejšia\nnajťuťmáckejšie\nnajťuťmáckejšieho\nnajťuťmáckejšiemu\nnajťuťmáckejších\nnajťuťmáckejším\nnajťuťmáckejšími\nnajťuťmáckejšiu\nnajťuťmáckejšom\nnajťuťmáckejšou\nnajtúžobnejšej\nnajtúžobnejší\nnajtúžobnejšia\nnajtúžobnejšie\nnajtúžobnejšieho\nnajtúžobnejšiemu\nnajtúžobnejších\nnajtúžobnejším\nnajtúžobnejšími\nnajtúžobnejšiu\nnajtúžobnejšom\nnajtúžobnejšou\nnajtvárnejšej\nnajtvárnejší\nnajtvárnejšia\nnajtvárnejšie\nnajtvárnejšieho\nnajtvárnejšiemu\nnajtvárnejších\nnajtvárnejším\nnajtvárnejšími\nnajtvárnejšiu\nnajtvárnejšom\nnajtvárnejšou\nnajtvarohovejšej\nnajtvarohovejší\nnajtvarohovejšia\nnajtvarohovejšie\nnajtvarohovejšieho\nnajtvarohovejšiemu\nnajtvarohovejších\nnajtvarohovejším\nnajtvarohovejšími\nnajtvarohovejšiu\nnajtvarohovejšom\nnajtvarohovejšou\nnajtvorivejšej\nnajtvorivejší\nnajtvorivejšia\nnajtvorivejšie\nnajtvorivejšieho\nnajtvorivejšiemu\nnajtvorivejších\nnajtvorivejším\nnajtvorivejšími\nnajtvorivejšiu\nnajtvorivejšom\nnajtvorivejšou\nnajtvrdohlavejšej\nnajtvrdohlavejší\nnajtvrdohlavejšia\nnajtvrdohlavejšie\nnajtvrdohlavejšieho\nnajtvrdohlavejšiemu\nnajtvrdohlavejších\nnajtvrdohlavejším\nnajtvrdohlavejšími\nnajtvrdohlavejšiu\nnajtvrdohlavejšom\nnajtvrdohlavejšou\nnajtvrdošijnejšej\nnajtvrdošijnejší\nnajtvrdošijnejšia\nnajtvrdošijnejšie\nnajtvrdošijnejšieho\nnajtvrdošijnejšiemu\nnajtvrdošijnejších\nnajtvrdošijnejším\nnajtvrdošijnejšími\nnajtvrdošijnejšiu\nnajtvrdošijnejšom\nnajtvrdošijnejšou\nnajtypickejšej\nnajtypickejší\nnajtypickejšia\nnajtypickejšie\nnajtypickejšieho\nnajtypickejšiemu\nnajtypickejších\nnajtypickejším\nnajtypickejšími\nnajtypickejšiu\nnajtypickejšom\nnajtypickejšou\nNajtypickejšou\nnajtyranskejšej\nnajtyranskejší\nnajtyranskejšia\nnajtyranskejšie\nnajtyranskejšieho\nnajtyranskejšiemu\nnajtyranskejších\nnajtyranskejším\nnajtyranskejšími\nnajtyranskejšiu\nnajtyranskejšom\nnajtyranskejšou\nnajtyrkysovejšej\nnajtyrkysovejší\nnajtyrkysovejšia\nnajtyrkysovejšie\nnajtyrkysovejšieho\nnajtyrkysovejšiemu\nnajtyrkysovejších\nnajtyrkysovejším\nnajtyrkysovejšími\nnajtyrkysovejšiu\nnajtyrkysovejšom\nnajtyrkysovejšou\nnajubiedenejšej\nnajubiedenejší\nnajubiedenejšia\nnajubiedenejšie\nnajubiedenejšieho\nnajubiedenejšiemu\nnajubiedenejších\nnajubiedenejším\nnajubiedenejšími\nnajubiedenejšiu\nnajubiedenejšom\nnajubiedenejšou\nnajubolenejšej\nnajubolenejší\nnajubolenejšia\nnajubolenejšie\nnajubolenejšieho\nnajubolenejšiemu\nnajubolenejších\nnajubolenejším\nnajubolenejšími\nnajubolenejšiu\nnajubolenejšom\nnajubolenejšou\nnajubranie\nnajucelenejšej\nnajucelenejší\nnajucelenejšia\nnajucelenejšie\nnajucelenejšieho\nnajucelenejšiemu\nnajucelenejších\nnajucelenejším\nnajucelenejšími\nnajucelenejšiu\nnajucelenejšom\nnajucelenejšou\nnajúctivejšej\nnajúctivejší\nnajúctivejšia\nnajúctivejšie\nnajúctivejšieho\nnajúctivejšiemu\nnajúctivejších\nnajúctivejším\nnajúctivejšími\nnajúctivejšiu\nnajúctivejšom\nnajúctivejšou\nnajúctyhodnejšej\nnajúctyhodnejší\nnajúctyhodnejšia\nnajúctyhodnejšie\nnajúctyhodnejšieho\nnajúctyhodnejšiemu\nnajúctyhodnejších\nnajúctyhodnejším\nnajúctyhodnejšími\nnajúctyhodnejšiu\nnajúctyhodnejšom\nnajúctyhodnejšou\nnajúčelnejšej\nnajúčelnejší\nnajúčelnejšia\nnajúčelnejšie\nnajúčelnejšieho\nnajúčelnejšiemu\nnajúčelnejších\nnajúčelnejším\nnajúčelnejšími\nnajúčelnejšiu\nnajúčelnejšom\nnajúčelnejšou\nnajučenejšej\nnajučenejší\nnajučenejšia\nnajučenejšie\nnajučenejšieho\nnajučenejšiemu\nnajučenejších\nnajučenejším\nnajučenejšími\nnajučenejšiu\nnajučenejšom\nnajučenejšou\nnajučenlivejšej\nnajučenlivejší\nnajučenlivejšia\nnajučenlivejšie\nnajučenlivejšieho\nnajučenlivejšiemu\nnajučenlivejších\nnajučenlivejším\nnajučenlivejšími\nnajučenlivejšiu\nnajučenlivejšom\nnajučenlivejšou\nnajúčinnejšej\nnajúčinnejší\nnajúčinnejšia\nnajúčinnejšie\nnajúčinnejšieho\nnajúčinnejšiemu\nnajúčinnejších\nnajúčinnejším\nnajúčinnejšími\nnajúčinnejšiu\nnajúčinnejšom\nnajúčinnejšou\nnajúdernejšej\nnajúdernejší\nnajúdernejšia\nnajúdernejšie\nnajúdernejšieho\nnajúdernejšiemu\nnajúdernejších\nnajúdernejším\nnajúdernejšími\nnajúdernejšiu\nnajúdernejšom\nnajúdernejšou\nnajudivenejšej\nnajudivenejší\nnajudivenejšia\nnajudivenejšieho\nnajudivenejšiemu\nnajudivenejších\nnajudivenejším\nnajudivenejšími\nnajudivenejšiu\nnajudivenejšom\nnajudivenejšou\nnajudržateľnejšej\nnajudržateľnejší\nnajudržateľnejšia\nnajudržateľnejšie\nnajudržateľnejšieho\nnajudržateľnejšiemu\nnajudržateľnejších\nnajudržateľnejším\nnajudržateľnejšími\nnajudržateľnejšiu\nnajudržateľnejšom\nnajudržateľnejšou\nnajufňukanejšej\nnajufňukanejší\nnajufňukanejšia\nnajufňukanejšie\nnajufňukanejšieho\nnajufňukanejšiemu\nnajufňukanejších\nnajufňukanejším\nnajufňukanejšími\nnajufňukanejšiu\nnajufňukanejšom\nnajufňukanejšou\nnajuhladenejšej\nnajuhladenejší\nnajuhladenejšia\nnajuhladenejšie\nnajuhladenejšieho\nnajuhladenejšiemu\nnajuhladenejších\nnajuhladenejším\nnajuhladenejšími\nnajuhladenejšiu\nnajuhladenejšom\nnajuhladenejšou\nnajúhľadnejšej\nnajúhľadnejší\nnajúhľadnejšia\nnajúhľadnejšie\nnajúhľadnejšieho\nnajúhľadnejšiemu\nnajúhľadnejších\nnajúhľadnejším\nnajúhľadnejšími\nnajúhľadnejšiu\nnajúhľadnejšom\nnajúhľadnejšou\nnajúhlavnejšej\nnajúhlavnejší\nnajúhlavnejšia\nnajúhlavnejšie\nnajúhlavnejšieho\nnajúhlavnejšiemu\nnajúhlavnejších\nnajúhlavnejším\nnajúhlavnejšími\nnajúhlavnejšiu\nnajúhlavnejšom\nnajúhlavnejšou\nnajuhnutie\nnajuhoľnatejšej\nnajuhoľnatejší\nnajuhoľnatejšia\nnajuhoľnatejšie\nnajuhoľnatejšieho\nnajuhoľnatejšiemu\nnajuhoľnatejších\nnajuhoľnatejším\nnajuhoľnatejšími\nnajuhoľnatejšiu\nnajuhoľnatejšom\nnajuhoľnatejšou\nnajuhrančivejšej\nnajuhrančivejší\nnajuhrančivejšia\nnajuhrančivejšie\nnajuhrančivejšieho\nnajuhrančivejšiemu\nnajuhrančivejších\nnajuhrančivejším\nnajuhrančivejšími\nnajuhrančivejšiu\nnajuhrančivejšom\nnajuhrančivejšou\nnajuhrovitejšej\nnajuhrovitejší\nnajuhrovitejšia\nnajuhrovitejšie\nnajuhrovitejšieho\nnajuhrovitejšiemu\nnajuhrovitejších\nnajuhrovitejším\nnajuhrovitejšími\nnajuhrovitejšiu\nnajuhrovitejšom\nnajuhrovitejšou\nnajúchylnejšej\nnajúchylnejší\nnajúchylnejšia\nnajúchylnejšie\nnajúchylnejšieho\nnajúchylnejšiemu\nnajúchylnejších\nnajúchylnejším\nnajúchylnejšími\nnajúchylnejšiu\nnajúchylnejšom\nnajúchylnejšou\nnajukážkovejšej\nnajukážkovejší\nnajukážkovejšia\nnajukážkovejšie\nnajukážkovejšieho\nnajukážkovejšiemu\nnajukážkovejších\nnajukážkovejším\nnajukážkovejšími\nnajukážkovejšiu\nnajukážkovejšom\nnajukážkovejšou\nnajúkladnejšej\nnajúkladnejší\nnajúkladnejšia\nnajúkladnejšie\nnajúkladnejšieho\nnajúkladnejšiemu\nnajúkladnejších\nnajúkladnejším\nnajúkladnejšími\nnajúkladnejšiu\nnajúkladnejšom\nnajúkladnejšou\nnajukonanejšej\nnajukonanejší\nnajukonanejšia\nnajukonanejšie\nnajukonanejšieho\nnajukonanejšiemu\nnajukonanejších\nnajukonanejším\nnajukonanejšími\nnajukonanejšiu\nnajukonanejšom\nnajukonanejšou\nnajukrutnejšej\nnajukrutnejší\nnajukrutnejšia\nnajukrutnejšie\nnajukrutnejšieho\nnajukrutnejšiemu\nnajukrutnejších\nnajukrutnejším\nnajukrutnejšími\nnajukrutnejšiu\nnajukrutnejšom\nnajukrutnejšou\nnajukutie\nnajuličníckejšej\nnajuličníckejší\nnajuličníckejšia\nnajuličníckejšie\nnajuličníckejšieho\nnajuličníckejšiemu\nnajuličníckejších\nnajuličníckejším\nnajuličníckejšími\nnajuličníckejšiu\nnajuličníckejšom\nnajuličníckejšou\nnajulievačskejšej\nnajulievačskejší\nnajulievačskejšia\nnajulievačskejšie\nnajulievačskejšieho\nnajulievačskejšiemu\nnajulievačskejších\nnajulievačskejším\nnajulievačskejšími\nnajulievačskejšiu\nnajulievačskejšom\nnajulievačskejšou\nnajúlisnejšej\nnajúlisnejší\nnajúlisnejšia\nnajúlisnejšie\nnajúlisnejšieho\nnajúlisnejšiemu\nnajúlisnejších\nnajúlisnejším\nnajúlisnejšími\nnajúlisnejšiu\nnajúlisnejšom\nnajúlisnejšou\nnajulízanejšej\nnajulízanejší\nnajulízanejšia\nnajulízanejšie\nnajulízanejšieho\nnajulízanejšiemu\nnajulízanejších\nnajulízanejším\nnajulízanejšími\nnajulízanejšiu\nnajulízanejšom\nnajulízanejšou\nnajumeleckejšej\nnajumeleckejší\nnajumeleckejšia\nnajumeleckejšie\nnajumeleckejšieho\nnajumeleckejšiemu\nnajumeleckejších\nnajumeleckejším\nnajumeleckejšími\nnajumeleckejšiu\nnajumeleckejšom\nnajumeleckejšou\nnajumelejšej\nnajumelejší\nnajumelejšia\nnajumelejšie\nnajumelejšieho\nnajumelejšiemu\nnajumelejších\nnajumelejším\nnajumelejšími\nnajumelejšiu\nnajumelejšom\nnajumelejšou\nnajúmernejšej\nnajúmernejší\nnajúmernejšia\nnajúmernejšie\nnajúmernejšieho\nnajúmernejšiemu\nnajúmernejších\nnajúmernejším\nnajúmernejšími\nnajúmernejšiu\nnajúmernejšom\nnajúmernejšou\nnajumiernenejšej\nnajumiernenejší\nnajumiernenejšia\nnajumiernenejšie\nnajumiernenejšieho\nnajumiernenejšiemu\nnajumiernenejších\nnajumiernenejším\nnajumiernenejšími\nnajumiernenejšiu\nnajumiernenejšom\nnajumiernenejšou\nnajumnejšej\nnajumnejší\nnajumnejšia\nnajumnejšie\nnajumnejšieho\nnajumnejšiemu\nnajumnejších\nnajumnejším\nnajumnejšími\nnajumnejšiu\nnajumnejšom\nnajumnejšou\nnajúmornejšej\nnajúmornejší\nnajúmornejšia\nnajúmornejšie\nnajúmornejšieho\nnajúmornejšiemu\nnajúmornejších\nnajúmornejším\nnajúmornejšími\nnajúmornejšiu\nnajúmornejšom\nnajúmornejšou\nnajunáhlenejšej\nnajunáhlenejší\nnajunáhlenejšia\nnajunáhlenejšie\nnajunáhlenejšieho\nnajunáhlenejšiemu\nnajunáhlenejších\nnajunáhlenejším\nnajunáhlenejšími\nnajunáhlenejšiu\nnajunáhlenejšom\nnajunáhlenejšou\nnajunavenejšej\nnajunavenejší\nnajunavenejšia\nnajunavenejšie\nnajunavenejšieho\nnajunavenejšiemu\nnajunavenejších\nnajunavenejším\nnajunavenejšími\nnajunavenejšiu\nnajunavenejšom\nnajunavenejšou\nnajúnavnejšej\nnajúnavnejší\nnajúnavnejšia\nnajúnavnejšie\nnajúnavnejšieho\nnajúnavnejšiemu\nnajúnavnejších\nnajúnavnejším\nnajúnavnejšími\nnajúnavnejšiu\nnajúnavnejšom\nnajúnavnejšou\nnajunavujúcejšej\nnajunavujúcejší\nnajunavujúcejšia\nnajunavujúcejšie\nnajunavujúcejšieho\nnajunavujúcejšiemu\nnajunavujúcejších\nnajunavujúcejším\nnajunavujúcejšími\nnajunavujúcejšiu\nnajunavujúcejšom\nnajunavujúcejšou\nnajuniformnejšej\nnajuniformnejší\nnajuniformnejšia\nnajuniformnejšie\nnajuniformnejšieho\nnajuniformnejšiemu\nnajuniformnejších\nnajuniformnejším\nnajuniformnejšími\nnajuniformnejšiu\nnajuniformnejšom\nnajuniformnejšou\nnajunikátnejšej\nnajunikátnejší\nnajunikátnejšia\nnajunikátnejšie\nnajunikátnejšieho\nnajunikátnejšiemu\nnajunikátnejších\nnajunikátnejším\nnajunikátnejšími\nnajunikátnejšiu\nnajunikátnejšom\nnajunikátnejšou\nnajuniverzálnejšej\nnajuniverzálnejší\nnajuniverzálnejšia\nnajuniverzálnejšie\nnajuniverzálnejšieho\nnajuniverzálnejšiemu\nnajuniverzálnejších\nnajuniverzálnejším\nnajuniverzálnejšími\nnajuniverzálnejšiu\nnajuniverzálnejšom\nnajuniverzálnejšou\nnajúnosnejšej\nnajúnosnejší\nnajúnosnejšia\nnajúnosnejšie\nnajúnosnejšieho\nnajúnosnejšiemu\nnajúnosnejších\nnajúnosnejším\nnajúnosnejšími\nnajúnosnejšiu\nnajúnosnejšom\nnajúnosnejšou\nnajunudenejšej\nnajunudenejší\nnajunudenejšia\nnajunudenejšie\nnajunudenejšieho\nnajunudenejšiemu\nnajunudenejších\nnajunudenejším\nnajunudenejšími\nnajunudenejšiu\nnajunudenejšom\nnajunudenejšou\nnajúpadkovejšej\nnajúpadkovejší\nnajúpadkovejšia\nnajúpadkovejšie\nnajúpadkovejšieho\nnajúpadkovejšiemu\nnajúpadkovejších\nnajúpadkovejším\nnajúpadkovejšími\nnajúpadkovejšiu\nnajúpadkovejšom\nnajúpadkovejšou\nnajupätejšej\nnajupätejší\nnajupätejšia\nnajupätejšie\nnajupätejšieho\nnajupätejšiemu\nnajupätejších\nnajupätejším\nnajupätejšími\nnajupätejšiu\nnajupätejšom\nnajupätejšou\nnajúpenlivejšej\nnajúpenlivejší\nnajúpenlivejšia\nnajúpenlivejšie\nnajúpenlivejšieho\nnajúpenlivejšiemu\nnajúpenlivejších\nnajúpenlivejším\nnajúpenlivejšími\nnajúpenlivejšiu\nnajúpenlivejšom\nnajúpenlivejšou\nnajupískanejšej\nnajupískanejší\nnajupískanejšia\nnajupískanejšie\nnajupískanejšieho\nnajupískanejšiemu\nnajupískanejších\nnajupískanejším\nnajupískanejšími\nnajupískanejšiu\nnajupískanejšom\nnajupískanejšou\nnajuplakanejšej\nnajuplakanejší\nnajuplakanejšia\nnajuplakanejšie\nnajuplakanejšieho\nnajuplakanejšiemu\nnajuplakanejších\nnajuplakanejším\nnajuplakanejšími\nnajuplakanejšiu\nnajuplakanejšom\nnajuplakanejšou\nnajúplnejšej\nnajúplnejší\nnajúplnejšia\nnajúplnejšie\nnajúplnejšieho\nnajúplnejšiemu\nnajúplnejších\nnajúplnejším\nnajúplnejšími\nnajúplnejšiu\nnajúplnejšom\nnajúplnejšou\nnajupnutie\nnajupodozrievavejšej\nnajupodozrievavejší\nnajupodozrievavejšia\nnajupodozrievavejšie\nnajupodozrievavejšieho\nnajupodozrievavejšiemu\nnajupodozrievavejších\nnajupodozrievavejším\nnajupodozrievavejšími\nnajupodozrievavejšiu\nnajupodozrievavejšom\nnajupodozrievavejšou\nnajupokojujúcejšej\nnajupokojujúcejší\nnajupokojujúcejšia\nnajupokojujúcejšie\nnajupokojujúcejšieho\nnajupokojujúcejšiemu\nnajupokojujúcejších\nnajupokojujúcejším\nnajupokojujúcejšími\nnajupokojujúcejšiu\nnajupokojujúcejšom\nnajupokojujúcejšou\nnajuponáhľanejšie\nnajúpornejšej\nnajúpornejší\nnajúpornejšia\nnajúpornejšie\nnajúpornejšieho\nnajúpornejšiemu\nnajúpornejších\nnajúpornejším\nnajúpornejšími\nnajúpornejšiu\nnajúpornejšom\nnajúpornejšou\nnajupotrebiteľnejšej\nnajupotrebiteľnejší\nnajupotrebiteľnejšia\nnajupotrebiteľnejšie\nnajupotrebiteľnejšieho\nnajupotrebiteľnejšiemu\nnajupotrebiteľnejších\nnajupotrebiteľnejším\nnajupotrebiteľnejšími\nnajupotrebiteľnejšiu\nnajupotrebiteľnejšom\nnajupotrebiteľnejšou\nnajupracovanejšej\nnajupracovanejší\nnajupracovanejšia\nnajupracovanejšie\nnajupracovanejšieho\nnajupracovanejšiemu\nnajupracovanejších\nnajupracovanejším\nnajupracovanejšími\nnajupracovanejšiu\nnajupracovanejšom\nnajupracovanejšou\nnajuprenejšie\nnajúprimnejší\nnajúradnejšie\nnajúradníckejšej\nnajúradníckejší\nnajúradníckejšia\nnajúradníckejšie\nnajúradníckejšieho\nnajúradníckejšiemu\nnajúradníckejších\nnajúradníckejším\nnajúradníckejšími\nnajúradníckejšiu\nnajúradníckejšom\nnajúradníckejšou\nnajurastenejšej\nnajurastenejší\nnajurastenejšia\nnajurastenejšie\nnajurastenejšieho\nnajurastenejšiemu\nnajurastenejších\nnajurastenejším\nnajurastenejšími\nnajurastenejšiu\nnajurastenejšom\nnajurastenejšou\nnajurazenejšej\nnajurazenejší\nnajurazenejšia\nnajurazenejšieho\nnajurazenejšiemu\nnajurazenejších\nnajurazenejším\nnajurazenejšími\nnajurazenejšiu\nnajurazenejšom\nnajurazenejšou\nnajurážlivejšej\nnajurážlivejší\nnajurážlivejšia\nnajurážlivejšie\nnajurážlivejšieho\nnajurážlivejšiemu\nnajurážlivejších\nnajurážlivejším\nnajurážlivejšími\nnajurážlivejšiu\nnajurážlivejšom\nnajurážlivejšou\nnajurčitejšej\nnajurčitejší\nnajurčitejšia\nnajurčitejšie\nnajurčitejšieho\nnajurčitejšiemu\nnajurčitejších\nnajurčitejším\nnajurčitejšími\nnajurčitejšiu\nnajurčitejšom\nnajurčitejšou\nnajurgentnejšej\nnajurgentnejší\nnajurgentnejšia\nnajurgentnejšie\nnajurgentnejšieho\nnajurgentnejšiemu\nnajurgentnejších\nnajurgentnejším\nnajurgentnejšími\nnajurgentnejšiu\nnajurgentnejšom\nnajurgentnejšou\nnajúrodnejšej\nnajúrodnejší\nnajúrodnejšia\nnajúrodnejšie\nnajúrodnejšieho\nnajúrodnejšiemu\nnajúrodnejších\nnajúrodnejším\nnajúrodnejšími\nnajúrodnejšiu\nnajúrodnejšom\nnajúrodnejšou\nnajurodzenejšej\nnajurodzenejší\nnajurodzenejšia\nnajurodzenejšie\nnajurodzenejšieho\nnajurodzenejšiemu\nnajurodzenejších\nnajurodzenejším\nnajurodzenejšími\nnajurodzenejšiu\nnajurodzenejšom\nnajurodzenejšou\nnajurputnejšej\nnajurputnejší\nnajurputnejšia\nnajurputnejšie\nnajurputnejšieho\nnajurputnejšiemu\nnajurputnejších\nnajurputnejším\nnajurputnejšími\nnajurputnejšiu\nnajurputnejšom\nnajurputnejšou\nnajúryvkovitejšej\nnajúryvkovitejší\nnajúryvkovitejšia\nnajúryvkovitejšie\nnajúryvkovitejšieho\nnajúryvkovitejšiemu\nnajúryvkovitejších\nnajúryvkovitejším\nnajúryvkovitejšími\nnajúryvkovitejšiu\nnajúryvkovitejšom\nnajúryvkovitejšou\nnajusadlejšej\nnajusadlejší\nnajusadlejšia\nnajusadlejšie\nnajusadlejšieho\nnajusadlejšiemu\nnajusadlejších\nnajusadlejším\nnajusadlejšími\nnajusadlejšiu\nnajusadlejšom\nnajusadlejšou\nnajúsečnejšie\nnajusedavejšej\nnajusedavejší\nnajusedavejšia\nnajusedavejšie\nnajusedavejšieho\nnajusedavejšiemu\nnajusedavejších\nnajusedavejším\nnajusedavejšími\nnajusedavejšiu\nnajusedavejšom\nnajusedavejšou\nnajusedenejšej\nnajusedenejší\nnajusedenejšia\nnajusedenejšie\nnajusedenejšieho\nnajusedenejšiemu\nnajusedenejších\nnajusedenejším\nnajusedenejšími\nnajusedenejšiu\nnajusedenejšom\nnajusedenejšou\nnajusilovnejšej\nnajusilovnejší\nnajusilovnejšia\nnajusilovnejšie\nnajusilovnejšieho\nnajusilovnejšiemu\nnajusilovnejších\nnajusilovnejším\nnajusilovnejšími\nnajusilovnejšiu\nnajusilovnejšom\nnajusilovnejšou\nnajúskočnejšej\nnajúskočnejší\nnajúskočnejšia\nnajúskočnejšie\nnajúskočnejšieho\nnajúskočnejšiemu\nnajúskočnejších\nnajúskočnejším\nnajúskočnejšími\nnajúskočnejšiu\nnajúskočnejšom\nnajúskočnejšou\nnajuskutočniteľnejšej\nnajuskutočniteľnejší\nnajuskutočniteľnejšia\nnajuskutočniteľnejšie\nnajuskutočniteľnejšieho\nnajuskutočniteľnejšiemu\nnajuskutočniteľnejších\nnajuskutočniteľnejším\nnajuskutočniteľnejšími\nnajuskutočniteľnejšiu\nnajuskutočniteľnejšom\nnajuskutočniteľnejšou\nnajúslužnejšej\nnajúslužnejší\nnajúslužnejšia\nnajúslužnejšie\nnajúslužnejšieho\nnajúslužnejšiemu\nnajúslužnejších\nnajúslužnejším\nnajúslužnejšími\nnajúslužnejšiu\nnajúslužnejšom\nnajúslužnejšou\nnajuslzenejšej\nnajuslzenejší\nnajuslzenejšia\nnajuslzenejšie\nnajuslzenejšieho\nnajuslzenejšiemu\nnajuslzenejších\nnajuslzenejším\nnajuslzenejšími\nnajuslzenejšiu\nnajuslzenejšom\nnajuslzenejšou\nnajúsmevnejšej\nnajúsmevnejší\nnajúsmevnejšia\nnajúsmevnejšie\nnajúsmevnejšieho\nnajúsmevnejšiemu\nnajúsmevnejších\nnajúsmevnejším\nnajúsmevnejšími\nnajúsmevnejšiu\nnajúsmevnejšom\nnajúsmevnejšou\nnajusmiatejšej\nnajusmiatejší\nnajusmiatejšia\nnajusmiatejšie\nnajusmiatejšieho\nnajusmiatejšiemu\nnajusmiatejších\nnajusmiatejším\nnajusmiatejšími\nnajusmiatejšiu\nnajusmiatejšom\nnajusmiatejšou\nnajusmievavejšej\nnajusmievavejší\nnajusmievavejšia\nnajusmievavejšie\nnajusmievavejšieho\nnajusmievavejšiemu\nnajusmievavejších\nnajusmievavejším\nnajusmievavejšími\nnajusmievavejšiu\nnajusmievavejšom\nnajusmievavejšou\nnajusmoklenejšej\nnajusmoklenejší\nnajusmoklenejšia\nnajusmoklenejšie\nnajusmoklenejšieho\nnajusmoklenejšiemu\nnajusmoklenejších\nnajusmoklenejším\nnajusmoklenejšími\nnajusmoklenejšiu\nnajusmoklenejšom\nnajusmoklenejšou\nnajusmrkanejšej\nnajusmrkanejší\nnajusmrkanejšia\nnajusmrkanejšie\nnajusmrkanejšieho\nnajusmrkanejšiemu\nnajusmrkanejších\nnajusmrkanejším\nnajusmrkanejšími\nnajusmrkanejšiu\nnajusmrkanejšom\nnajusmrkanejšou\nnajusnutie\nnajusoplenejšej\nnajusoplenejší\nnajusoplenejšia\nnajusoplenejšie\nnajusoplenejšieho\nnajusoplenejšiemu\nnajusoplenejších\nnajusoplenejším\nnajusoplenejšími\nnajusoplenejšiu\nnajusoplenejšom\nnajusoplenejšou\nnajúspešnejšej\nnajúspešnejší\nnajúspešnejšia\nnajúspešnejšie\nnajúspešnejšieho\nnajúspešnejšiemu\nnajúspešnejších\nnajúspešnejším\nnajúspešnejšími\nnajúspešnejšiu\nnajúspešnejšom\nnajúspešnejšou\nnajuspokojivejšej\nnajuspokojivejší\nnajuspokojivejšia\nnajuspokojivejšie\nnajuspokojivejšieho\nnajuspokojivejšiemu\nnajuspokojivejších\nnajuspokojivejším\nnajuspokojivejšími\nnajuspokojivejšiu\nnajuspokojivejšom\nnajuspokojivejšou\nnajuspokojujúcejšej\nnajuspokojujúcejší\nnajuspokojujúcejšia\nnajuspokojujúcejšie\nnajuspokojujúcejšieho\nnajuspokojujúcejšiemu\nnajuspokojujúcejších\nnajuspokojujúcejším\nnajuspokojujúcejšími\nnajuspokojujúcejšiu\nnajuspokojujúcejšom\nnajuspokojujúcejšou\nnajusporiadanejšej\nnajusporiadanejší\nnajusporiadanejšia\nnajusporiadanejšie\nnajusporiadanejšieho\nnajusporiadanejšiemu\nnajusporiadanejších\nnajusporiadanejším\nnajusporiadanejšími\nnajusporiadanejšiu\nnajusporiadanejšom\nnajusporiadanejšou\nnajúspornejšej\nnajúspornejší\nnajúspornejšia\nNajúspornejšia\nnajúspornejšie\nnajúspornejšieho\nnajúspornejšiemu\nnajúspornejších\nnajúspornejším\nnajúspornejšími\nnajúspornejšiu\nnajúspornejšom\nnajúspornejšou\nnajustálenejšej\nnajustálenejší\nnajustálenejšia\nnajustálenejšie\nnajustálenejšieho\nnajustálenejšiemu\nnajustálenejších\nnajustálenejším\nnajustálenejšími\nnajustálenejšiu\nnajustálenejšom\nnajustálenejšou\nnajustanovujúcejšej\nnajustanovujúcejší\nnajustanovujúcejšia\nnajustanovujúcejšie\nnajustanovujúcejšieho\nnajustanovujúcejšiemu\nnajustanovujúcejších\nnajustanovujúcejším\nnajustanovujúcejšími\nnajustanovujúcejšiu\nnajustanovujúcejšom\nnajustanovujúcejšou\nnajustaranejšej\nnajustaranejší\nnajustaranejšia\nnajustaranejšie\nnajustaranejšieho\nnajustaranejšiemu\nnajustaranejších\nnajustaranejším\nnajustaranejšími\nnajustaranejšiu\nnajustaranejšom\nnajustaranejšou\nnajustarostenejšej\nnajustarostenejší\nnajustarostenejšia\nnajustarostenejšie\nnajustarostenejšieho\nnajustarostenejšiemu\nnajustarostenejších\nnajustarostenejším\nnajustarostenejšími\nnajustarostenejšiu\nnajustarostenejšom\nnajustarostenejšou\nnajustatejšej\nnajustatejší\nnajustatejšia\nnajustatejšie\nnajustatejšieho\nnajustatejšiemu\nnajustatejších\nnajustatejším\nnajustatejšími\nnajustatejšiu\nnajustatejšom\nnajustatejšou\nnajustiť\nnajustráchanejšej\nnajustráchanejší\nnajustráchanejšia\nnajustráchanejšie\nnajustráchanejšieho\nnajustráchanejšiemu\nnajustráchanejších\nnajustráchanejším\nnajustráchanejšími\nnajustráchanejšiu\nnajustráchanejšom\nnajustráchanejšou\nnajustrachovanejšie\nnajustrašenejšej\nnajustrašenejší\nnajustrašenejšia\nnajustrašenejšie\nnajustrašenejšieho\nnajustrašenejšiemu\nnajustrašenejších\nnajustrašenejším\nnajustrašenejšími\nnajustrašenejšiu\nnajustrašenejšom\nnajustrašenejšou\nnajústretovejšej\nnajústretovejší\nnajústretovejšia\nnajústretovejšie\nnajústretovejšieho\nnajústretovejšiemu\nnajústretovejších\nnajústretovejším\nnajústretovejšími\nnajústretovejšiu\nnajústretovejšom\nnajústretovejšou\nnajustrnutejšej\nnajustrnutejší\nnajustrnutejšia\nnajustrnutejšie\nnajustrnutejšieho\nnajustrnutejšiemu\nnajustrnutejších\nnajustrnutejším\nnajustrnutejšími\nnajustrnutejšiu\nnajustrnutejšom\nnajustrnutejšou\nnajústupčivejšej\nnajústupčivejší\nnajústupčivejšia\nnajústupčivejšie\nnajústupčivejšieho\nnajústupčivejšiemu\nnajústupčivejších\nnajústupčivejším\nnajústupčivejšími\nnajústupčivejšiu\nnajústupčivejšom\nnajústupčivejšou\nnajusvedčujúcejšej\nnajusvedčujúcejší\nnajusvedčujúcejšia\nnajusvedčujúcejšie\nnajusvedčujúcejšieho\nnajusvedčujúcejšiemu\nnajusvedčujúcejších\nnajusvedčujúcejším\nnajusvedčujúcejšími\nnajusvedčujúcejšiu\nnajusvedčujúcejšom\nnajusvedčujúcejšou\nnajušatejšej\nnajušatejší\nnajušatejšia\nnajušatejšie\nnajušatejšieho\nnajušatejšiemu\nnajušatejších\nnajušatejším\nnajušatejšími\nnajušatejšiu\nnajušatejšom\nnajušatejšou\nnajušití\nnajušľachtilejšej\nnajušľachtilejší\nnajušľachtilejšia\nnajušľachtilejšie\nnajušľachtilejšieho\nnajušľachtilejšiemu\nnajušľachtilejších\nnajušľachtilejším\nnajušľachtilejšími\nnajušľachtilejšiu\nNajušľachtilejšiu\nnajušľachtilejšom\nnajušľachtilejšou\nnajuštipačnejšej\nnajuštipačnejší\nnajuštipačnejšia\nnajuštipačnejšie\nnajuštipačnejšieho\nnajuštipačnejšiemu\nnajuštipačnejších\nnajuštipačnejším\nnajuštipačnejšími\nnajuštipačnejšiu\nnajuštipačnejšom\nnajuštipačnejšou\nnajuťahanejšej\nnajuťahanejší\nnajuťahanejšia\nnajuťahanejšie\nnajuťahanejšieho\nnajuťahanejšiemu\nnajuťahanejších\nnajuťahanejším\nnajuťahanejšími\nnajuťahanejšiu\nnajuťahanejšom\nnajuťahanejšou\nnajutajenejšej\nnajutajenejší\nnajutajenejšia\nnajutajenejšie\nnajutajenejšieho\nnajutajenejšiemu\nnajutajenejších\nnajutajenejším\nnajutajenejšími\nnajutajenejšiu\nnajutajenejšom\nnajutajenejšou\nnajutajovanejšej\nnajutajovanejší\nnajutajovanejšia\nnajutajovanejšie\nnajutajovanejšieho\nnajutajovanejšiemu\nnajutajovanejších\nnajutajovanejším\nnajutajovanejšími\nnajutajovanejšiu\nnajutajovanejšom\nnajutajovanejšou\nnajutešenejšej\nnajutešenejší\nnajutešenejšia\nnajutešenejšie\nnajutešenejšieho\nnajutešenejšiemu\nnajutešenejších\nnajutešenejším\nnajutešenejšími\nnajutešenejšiu\nnajutešenejšom\nnajutešenejšou\nnajutiahnutejšej\nnajutiahnutejší\nnajutiahnutejšia\nnajutiahnutejšie\nnajutiahnutejšieho\nnajutiahnutejšiemu\nnajutiahnutejších\nnajutiahnutejším\nnajutiahnutejšími\nnajutiahnutejšiu\nnajutiahnutejšom\nnajutiahnutejšou\nnajutilitaristickejšej\nnajutilitaristickejší\nnajutilitaristickejšia\nnajutilitaristickejšie\nnajutilitaristickejšieho\nnajutilitaristickejšiemu\nnajutilitaristickejších\nnajutilitaristickejším\nnajutilitaristickejšími\nnajutilitaristickejšiu\nnajutilitaristickejšom\nnajutilitaristickejšou\nnajutilitárnejšej\nnajutilitárnejší\nnajutilitárnejšia\nnajutilitárnejšie\nnajutilitárnejšieho\nnajutilitárnejšiemu\nnajutilitárnejších\nnajutilitárnejším\nnajutilitárnejšími\nnajutilitárnejšiu\nnajutilitárnejšom\nnajutilitárnejšou\nnajutisnutejšej\nnajutisnutejší\nnajutisnutejšia\nnajutisnutejšie\nnajutisnutejšieho\nnajutisnutejšiemu\nnajutisnutejších\nnajutisnutejším\nnajutisnutejšími\nnajutisnutejšiu\nnajutisnutejšom\nnajutisnutejšou\nnajutišujúcejšej\nnajutišujúcejší\nnajutišujúcejšia\nnajutišujúcejšie\nnajutišujúcejšieho\nnajutišujúcejšiemu\nnajutišujúcejších\nnajutišujúcejším\nnajutišujúcejšími\nnajutišujúcejšiu\nnajutišujúcejšom\nnajutišujúcejšou\nnajutkvenejšej\nnajutkvenejší\nnajutkvenejšia\nnajutkvenejšie\nnajutkvenejšieho\nnajutkvenejšiemu\nnajutkvenejších\nnajutkvenejším\nnajutkvenejšími\nnajutkvenejšiu\nnajutkvenejšom\nnajutkvenejšou\nnajútlejšej\nnajútlejší\nnajútlejšia\nnajútlejšie\nnajútlejšieho\nnajútlejšiemu\nnajútlejších\nnajútlejším\nnajútlejšími\nnajútlejšiu\nnajútlejšom\nnajútlejšou\nnajútlocitnejšej\nnajútlocitnejší\nnajútlocitnejšia\nnajútlocitnejšie\nnajútlocitnejšieho\nnajútlocitnejšiemu\nnajútlocitnejších\nnajútlocitnejším\nnajútlocitnejšími\nnajútlocitnejšiu\nnajútlocitnejšom\nnajútlocitnejšou\nnajútočnejšej\nnajútočnejší\nnajútočnejšia\nnajútočnejšie\nnajútočnejšieho\nnajútočnejšiemu\nnajútočnejších\nnajútočnejším\nnajútočnejšími\nnajútočnejšiu\nnajútočnejšom\nnajútočnejšou\nnajutopickejšej\nnajutopickejší\nnajutopickejšia\nnajutopickejšie\nnajutopickejšieho\nnajutopickejšiemu\nnajutopickejších\nnajutopickejším\nnajutopickejšími\nnajutopickejšiu\nnajutopickejšom\nnajutopickejšou\nnajutopistickejšej\nnajutopistickejší\nnajutopistickejšia\nnajutopistickejšie\nnajutopistickejšieho\nnajutopistickejšiemu\nnajutopistickejších\nnajutopistickejším\nnajutopistickejšími\nnajutopistickejšiu\nnajutopistickejšom\nnajutopistickejšou\nnajutrápenejšej\nnajutrápenejší\nnajutrápenejšia\nnajutrápenejšie\nnajutrápenejšieho\nnajutrápenejšiemu\nnajutrápenejších\nnajutrápenejším\nnajutrápenejšími\nnajutrápenejšiu\nnajutrápenejšom\nnajutrápenejšou\nnajútrpnejšej\nnajútrpnejší\nnajútrpnejšia\nnajútrpnejšie\nnajútrpnejšieho\nnajútrpnejšiemu\nnajútrpnejších\nnajútrpnejším\nnajútrpnejšími\nnajútrpnejšiu\nnajútrpnejšom\nnajútrpnejšou\nnajútržkovitejšej\nnajútržkovitejší\nnajútržkovitejšia\nnajútržkovitejšie\nnajútržkovitejšieho\nnajútržkovitejšiemu\nnajútržkovitejších\nnajútržkovitejším\nnajútržkovitejšími\nnajútržkovitejšiu\nnajútržkovitejšom\nnajútržkovitejšou\nnajútulnejšej\nnajútulnejší\nnajútulnejšia\nnajútulnejšie\nnajútulnejšieho\nnajútulnejšiemu\nnajútulnejších\nnajútulnejším\nnajútulnejšími\nnajútulnejšiu\nnajútulnejšom\nnajútulnejšou\nnajúvahovejšej\nnajúvahovejší\nnajúvahovejšia\nnajúvahovejšie\nnajúvahovejšieho\nnajúvahovejšiemu\nnajúvahovejších\nnajúvahovejším\nnajúvahovejšími\nnajúvahovejšiu\nnajúvahovejšom\nnajúvahovejšou\nnajuvážlivejšej\nnajuvážlivejší\nnajuvážlivejšia\nnajuvážlivejšie\nnajuvážlivejšieho\nnajuvážlivejšiemu\nnajuvážlivejších\nnajuvážlivejším\nnajuvážlivejšími\nnajuvážlivejšiu\nnajuvážlivejšom\nnajuvážlivejšou\nnajuvedomelejšej\nnajuvedomelejší\nnajuvedomelejšia\nnajuvedomelejšie\nnajuvedomelejšieho\nnajuvedomelejšiemu\nnajuvedomelejších\nnajuvedomelejším\nnajuvedomelejšími\nnajuvedomelejšiu\nnajuvedomelejšom\nnajuvedomelejšou\nnajuvedomenejšej\nnajuvedomenejší\nnajuvedomenejšia\nnajuvedomenejšie\nnajuvedomenejšieho\nnajuvedomenejšiemu\nnajuvedomenejších\nnajuvedomenejším\nnajuvedomenejšími\nnajuvedomenejšiu\nnajuvedomenejšom\nnajuvedomenejšou\nnajuveličenejšej\nnajuveličenejší\nnajuveličenejšia\nnajuveličenejšie\nnajuveličenejšieho\nnajuveličenejšiemu\nnajuveličenejších\nnajuveličenejším\nnajuveličenejšími\nnajuveličenejšiu\nnajuveličenejšom\nnajuveličenejšou\nnajuvoľnenejšej\nnajuvoľnenejší\nnajuvoľnenejšia\nnajuvoľnenejšie\nnajuvoľnenejšieho\nnajuvoľnenejšiemu\nnajuvoľnenejších\nnajuvoľnenejším\nnajuvoľnenejšími\nnajuvoľnenejšiu\nnajuvoľnenejšom\nnajuvoľnenejšou\nnajuvzatejšej\nnajuvzatejší\nnajuvzatejšia\nnajuvzatejšie\nnajuvzatejšieho\nnajuvzatejšiemu\nnajuvzatejších\nnajuvzatejším\nnajuvzatejšími\nnajuvzatejšiu\nnajuvzatejšom\nnajuvzatejšou\nnajuzavretejšej\nnajuzavretejší\nnajuzavretejšia\nnajuzavretejšie\nnajuzavretejšieho\nnajuzavretejšiemu\nnajuzavretejších\nnajuzavretejším\nnajuzavretejšími\nnajuzavretejšiu\nnajuzavretejšom\nnajuzavretejšou\nnajuzdravujúcejšej\nnajuzdravujúcejší\nnajuzdravujúcejšia\nnajuzdravujúcejšie\nnajuzdravujúcejšieho\nnajuzdravujúcejšiemu\nnajuzdravujúcejších\nnajuzdravujúcejším\nnajuzdravujúcejšími\nnajuzdravujúcejšiu\nnajuzdravujúcejšom\nnajuzdravujúcejšou\nnajúzemčistejšej\nnajúzemčistejší\nnajúzemčistejšia\nnajúzemčistejšie\nnajúzemčistejšieho\nnajúzemčistejšiemu\nnajúzemčistejších\nnajúzemčistejším\nnajúzemčistejšími\nnajúzemčistejšiu\nnajúzemčistejšom\nnajúzemčistejšou\nnajuzimenejšej\nnajuzimenejší\nnajuzimenejšia\nnajuzimenejšie\nnajuzimenejšieho\nnajuzimenejšiemu\nnajuzimenejších\nnajuzimenejším\nnajuzimenejšími\nnajuzimenejšiu\nnajuzimenejšom\nnajuzimenejšou\nnajúzkoprofilovejšej\nnajúzkoprofilovejší\nnajúzkoprofilovejšia\nnajúzkoprofilovejšie\nnajúzkoprofilovejšieho\nnajúzkoprofilovejšiemu\nnajúzkoprofilovejších\nnajúzkoprofilovejším\nnajúzkoprofilovejšími\nnajúzkoprofilovejšiu\nnajúzkoprofilovejšom\nnajúzkoprofilovejšou\nnajúzkoprsejšej\nnajúzkoprsejší\nnajúzkoprsejšia\nnajúzkoprsejšie\nnajúzkoprsejšieho\nnajúzkoprsejšiemu\nnajúzkoprsejších\nnajúzkoprsejším\nnajúzkoprsejšími\nnajúzkoprsejšiu\nnajúzkoprsejšom\nnajúzkoprsejšou\nnajúzkostlivejšej\nnajúzkostlivejší\nnajúzkostlivejšia\nnajúzkostlivejšie\nnajúzkostlivejšieho\nnajúzkostlivejšiemu\nnajúzkostlivejších\nnajúzkostlivejším\nnajúzkostlivejšími\nnajúzkostlivejšiu\nnajúzkostlivejšom\nnajúzkostlivejšou\nnajúzkostnejšej\nnajúzkostnejší\nnajúzkostnejšia\nnajúzkostnejšie\nnajúzkostnejšieho\nnajúzkostnejšiemu\nnajúzkostnejších\nnajúzkostnejším\nnajúzkostnejšími\nnajúzkostnejšiu\nnajúzkostnejšom\nnajúzkostnejšou\nnajuzlovitejšej\nnajuzlovitejší\nnajuzlovitejšia\nnajuzlovitejšie\nnajuzlovitejšieho\nnajuzlovitejšiemu\nnajuzlovitejších\nnajuzlovitejším\nnajuzlovitejšími\nnajuzlovitejšiu\nnajuzlovitejšom\nnajuzlovitejšou\nnajuznanlivejšej\nnajuznanlivejší\nnajuznanlivejšia\nnajuznanlivejšie\nnajuznanlivejšieho\nnajuznanlivejšiemu\nnajuznanlivejších\nnajuznanlivejším\nnajuznanlivejšími\nnajuznanlivejšiu\nnajuznanlivejšom\nnajuznanlivejšou\nnajuzurpátorskejšej\nnajuzurpátorskejší\nnajuzurpátorskejšia\nnajuzurpátorskejšie\nnajuzurpátorskejšieho\nnajuzurpátorskejšiemu\nnajuzurpátorskejších\nnajuzurpátorskejším\nnajuzurpátorskejšími\nnajuzurpátorskejšiu\nnajuzurpátorskejšom\nnajuzurpátorskejšou\nnajužasnutejšej\nnajužasnutejší\nnajužasnutejšia\nnajužasnutejšie\nnajužasnutejšieho\nnajužasnutejšiemu\nnajužasnutejších\nnajužasnutejším\nnajužasnutejšími\nnajužasnutejšiu\nnajužasnutejšom\nnajužasnutejšou\nnajúžerníckejšej\nnajúžerníckejší\nnajúžerníckejšia\nnajúžerníckejšie\nnajúžerníckejšieho\nnajúžerníckejšiemu\nnajúžerníckejších\nnajúžerníckejším\nnajúžerníckejšími\nnajúžerníckejšiu\nnajúžerníckejšom\nnajúžerníckejšou\nnajužialenejšej\nnajúžialenejšej\nnajužialenejší\nnajúžialenejší\nnajužialenejšia\nnajúžialenejšia\nnajužialenejšie\nnajúžialenejšie\nnajužialenejšieho\nnajúžialenejšieho\nnajužialenejšiemu\nnajúžialenejšiemu\nnajužialenejších\nnajúžialenejších\nnajužialenejším\nnajúžialenejším\nnajužialenejšími\nnajúžialenejšími\nnajužialenejšiu\nnajúžialenejšiu\nnajužialenejšom\nnajúžialenejšom\nnajužialenejšou\nnajúžialenejšou\nnajužitočnejšej\nnajužitočnejší\nnajužitočnejšia\nnajužitočnejšie\nnajužitočnejšieho\nnajužitočnejšiemu\nnajužitočnejších\nnajužitočnejším\nnajužitočnejšími\nnajužitočnejšiu\nnajužitočnejšom\nnajužitočnejšou\nnajužívanejšej\nnajužívanejší\nnajužívanejšie\nnajužívanejšieho\nnajužšej\nnajužší\nnajužšia\nnajužšie\nnajužšieho\nnajužšiemu\nnajužších\nnajužším\nnajužšími\nnajužšiu\nnajužšom\nnajužšou\nnajvábivejšej\nnajvábivejší\nnajvábivejšia\nnajvábivejšie\nnajvábivejšieho\nnajvábivejšiemu\nnajvábivejších\nnajvábivejším\nnajvábivejšími\nnajvábivejšiu\nnajvábivejšom\nnajvábivejšou\nnajvábnejšej\nnajvábnejší\nnajvábnejšia\nnajvábnejšie\nnajvábnejšieho\nnajvábnejšiemu\nnajvábnejších\nnajvábnejším\nnajvábnejšími\nnajvábnejšiu\nnajvábnejšom\nnajvábnejšou\nnajväčšmi\nnajvadnejšej\nnajvadnejší\nnajvadnejšia\nnajvadnejšie\nnajvadnejšieho\nnajvadnejšiemu\nnajvadnejších\nnajvadnejším\nnajvadnejšími\nnajvadnejšiu\nnajvadnejšom\nnajvadnejšou\nnajvágnejšej\nnajvágnejší\nnajvágnejšia\nnajvágnejšie\nnajvágnejšieho\nnajvágnejšiemu\nnajvágnejších\nnajvágnejším\nnajvágnejšími\nnajvágnejšiu\nnajvágnejšom\nnajvágnejšou\nnajváhavejšej\nnajváhavejší\nnajváhavejšia\nnajváhavejšie\nnajváhavejšieho\nnajváhavejšiemu\nnajváhavejších\nnajváhavejším\nnajváhavejšími\nnajváhavejšiu\nnajváhavejšom\nnajváhavejšou\nnajvajcovitejšej\nnajvajcovitejší\nnajvajcovitejšia\nnajvajcovitejšie\nnajvajcovitejšieho\nnajvajcovitejšiemu\nnajvajcovitejších\nnajvajcovitejším\nnajvajcovitejšími\nnajvajcovitejšiu\nnajvajcovitejšom\nnajvajcovitejšou\nnajvalcovitejšej\nnajvalcovitejší\nnajvalcovitejšia\nnajvalcovitejšie\nnajvalcovitejšieho\nnajvalcovitejšiemu\nnajvalcovitejších\nnajvalcovitejším\nnajvalcovitejšími\nnajvalcovitejšiu\nnajvalcovitejšom\nnajvalcovitejšou\nnajvalidnej\nnajvápenatejšej\nnajvápenatejší\nnajvápenatejšia\nnajvápenatejšie\nnajvápenatejšieho\nnajvápenatejšiemu\nnajvápenatejších\nnajvápenatejším\nnajvápenatejšími\nnajvápenatejšiu\nnajvápenatejšom\nnajvápenatejšou\nnajvariabilnejšej\nnajvariabilnejší\nnajvariabilnejšia\nnajvariabilnejšie\nnajvariabilnejšieho\nnajvariabilnejšiemu\nnajvariabilnejších\nnajvariabilnejším\nnajvariabilnejšími\nnajvariabilnejšiu\nnajvariabilnejšom\nnajvariabilnejšou\nnajvariantnejšej\nnajvariantnejší\nnajvariantnejšia\nnajvariantnejšie\nnajvariantnejšieho\nnajvariantnejšiemu\nnajvariantnejších\nnajvariantnejším\nnajvariantnejšími\nnajvariantnejšiu\nnajvariantnejšom\nnajvariantnejšou\nnajvarovnejšej\nnajvarovnejší\nnajvarovnejšia\nnajvarovnejšie\nnajvarovnejšieho\nnajvarovnejšiemu\nnajvarovnejších\nnajvarovnejším\nnajvarovnejšími\nnajvarovnejšiu\nnajvarovnejšom\nnajvarovnejšou\nnajvášnivejšej\nnajvášnivejší\nnajvášnivejšia\nnajvášnivejšie\nnajvášnivejšieho\nnajvášnivejšiemu\nnajvášnivejších\nnajvášnivejším\nnajvášnivejšími\nnajvášnivejšiu\nNajvášnivejšiu\nnajvášnivejšom\nnajvášnivejšou\nnajvatovanejšej\nnajvatovanejší\nnajvatovanejšia\nnajvatovanejšie\nnajvatovanejšieho\nnajvatovanejšiemu\nnajvatovanejších\nnajvatovanejším\nnajvatovanejšími\nnajvatovanejšiu\nnajvatovanejšom\nnajvatovanejšou\nnajväzkejšej\nnajväzkejší\nnajväzkejšia\nnajväzkejšie\nnajväzkejšieho\nnajväzkejšiemu\nnajväzkejších\nnajväzkejším\nnajväzkejšími\nnajväzkejšiu\nnajväzkejšom\nnajväzkejšou\nnajvážnejšie\nnajvčasnejšej\nnajvčasnejší\nnajvčasnejšia\nnajvčasnejšie\nnajvčasnejšieho\nnajvčasnejšiemu\nnajvčasnejších\nnajvčasnejším\nnajvčasnejšími\nnajvčasnejšiu\nnajvčasnejšom\nnajvčasnejšou\nnajvčaššie\nnajvďačnejšie\nnajvecnejšej\nnajvecnejší\nnajvecnejšia\nnajvecnejšie\nnajvecnejšieho\nnajvecnejšiemu\nnajvecnejších\nnajvecnejším\nnajvecnejšími\nnajvecnejšiu\nnajvecnejšom\nnajvecnejšou\nnajvedeckejšej\nnajvedeckejší\nnajvedeckejšia\nnajvedeckejšie\nnajvedeckejšieho\nnajvedeckejšiemu\nnajvedeckejších\nnajvedeckejším\nnajvedeckejšími\nnajvedeckejšiu\nnajvedeckejšom\nnajvedeckejšou\nnajvedomejšej\nnajvedomejší\nnajvedomejšia\nnajvedomejšieho\nnajvedomejšiemu\nnajvedomejších\nnajvedomejším\nnajvedomejšími\nnajvedomejšiu\nnajvedomejšom\nnajvedomejšou\nnajvedychtivejšej\nnajvedychtivejší\nnajvedychtivejšia\nnajvedychtivejšie\nnajvedychtivejšieho\nnajvedychtivejšiemu\nnajvedychtivejších\nnajvedychtivejším\nnajvedychtivejšími\nnajvedychtivejšiu\nnajvedychtivejšom\nnajvedychtivejšou\nnajvegetariánskejšej\nnajvegetariánskejší\nnajvegetariánskejšia\nnajvegetariánskejšie\nnajvegetariánskejšieho\nnajvegetariánskejšiemu\nnajvegetariánskejších\nnajvegetariánskejším\nnajvegetariánskejšími\nnajvegetariánskejšiu\nnajvegetariánskejšom\nnajvegetariánskejšou\nnajvehementnejšej\nnajvehementnejší\nNajvehementnejší\nnajvehementnejšia\nnajvehementnejšie\nnajvehementnejšieho\nnajvehementnejšiemu\nnajvehementnejších\nnajvehementnejším\nnajvehementnejšími\nnajvehementnejšiu\nnajvehementnejšom\nnajvehementnejšou\nnajvejárovitejšej\nnajvejárovitejší\nnajvejárovitejšia\nnajvejárovitejšie\nnajvejárovitejšieho\nnajvejárovitejšiemu\nnajvejárovitejších\nnajvejárovitejším\nnajvejárovitejšími\nnajvejárovitejšiu\nnajvejárovitejšom\nnajvejárovitejšou\nnajveľavravnejšej\nnajveľavravnejší\nnajveľavravnejšia\nnajveľavravnejšie\nnajveľavravnejšieho\nnajveľavravnejšiemu\nnajveľavravnejších\nnajveľavravnejším\nnajveľavravnejšími\nnajveľavravnejšiu\nnajveľavravnejšom\nnajveľavravnejšou\nnajveľavýznamnejšej\nnajveľavýznamnejší\nnajveľavýznamnejšia\nnajveľavýznamnejšie\nnajveľavýznamnejšieho\nnajveľavýznamnejšiemu\nnajveľavýznamnejších\nnajveľavýznamnejším\nnajveľavýznamnejšími\nnajveľavýznamnejšiu\nnajveľavýznamnejšom\nnajveľavýznamnejšou\nnajvelebnejšej\nnajvelebnejší\nnajvelebnejšia\nnajvelebnejšie\nnajvelebnejšieho\nnajvelebnejšiemu\nnajvelebnejších\nnajvelebnejším\nnajvelebnejšími\nnajvelebnejšiu\nnajvelebnejšom\nnajvelebnejšou\nnajveľkodušnejšej\nnajveľkodušnejší\nnajveľkodušnejšia\nnajveľkodušnejšie\nnajveľkodušnejšieho\nnajveľkodušnejšiemu\nnajveľkodušnejších\nnajveľkodušnejším\nnajveľkodušnejšími\nnajveľkodušnejšiu\nnajveľkodušnejšom\nnajveľkodušnejšou\nnajveľkohubejšej\nnajveľkohubejší\nnajveľkohubejšia\nnajveľkohubejšie\nnajveľkohubejšieho\nnajveľkohubejšiemu\nnajveľkohubejších\nnajveľkohubejším\nnajveľkohubejšími\nnajveľkohubejšiu\nnajveľkohubejšom\nnajveľkohubejšou\nnajveľkomestskejšie\nnajveľkopanskejšej\nnajveľkopanskejší\nnajveľkopanskejšia\nnajveľkopanskejšie\nnajveľkopanskejšieho\nnajveľkopanskejšiemu\nnajveľkopanskejších\nnajveľkopanskejším\nnajveľkopanskejšími\nnajveľkopanskejšiu\nnajveľkopanskejšom\nnajveľkopanskejšou\nnajveľkorysejšej\nnajveľkorysejší\nnajveľkorysejšia\nnajveľkorysejšie\nnajveľkorysejšieho\nnajveľkorysejšiemu\nnajveľkorysejších\nnajveľkorysejším\nnajveľkorysejšími\nnajveľkorysejšiu\nnajveľkorysejšom\nnajveľkorysejšou\nnajvernej\nnajveselšej\nnajveselší\nnajveselšia\nnajveselšie\nnajveselšieho\nnajveselšiemu\nnajveselších\nnajveselším\nnajveselšími\nnajveselšiu\nnajveselšom\nnajveselšou\nnajveternejšej\nnajveternejší\nnajveternejšia\nnajveternejšie\nnajveternejšieho\nnajveternejšiemu\nnajveternejších\nnajveternejším\nnajveternejšími\nnajveternejšiu\nnajveternejšom\nnajveternejšou\nnajvetchejšej\nnajvetchejší\nnajvetchejšia\nnajvetchejšie\nnajvetchejšieho\nnajvetchejšiemu\nnajvetchejších\nnajvetchejším\nnajvetchejšími\nnajvetchejšiu\nnajvetchejšom\nnajvetchejšou\nnajvetristejšej\nnajvetristejší\nnajvetristejšia\nnajvetristejšie\nnajvetristejšieho\nnajvetristejšiemu\nnajvetristejších\nnajvetristejším\nnajvetristejšími\nnajvetristejšiu\nnajvetristejšom\nnajvetristejšou\nnajvetromilnejšej\nnajvetromilnejší\nnajvetromilnejšia\nnajvetromilnejšie\nnajvetromilnejšieho\nnajvetromilnejšiemu\nnajvetromilnejších\nnajvetromilnejším\nnajvetromilnejšími\nnajvetromilnejšiu\nnajvetromilnejšom\nnajvetromilnejšou\nnajvežovitejšej\nnajvežovitejší\nnajvežovitejšia\nnajvežovitejšie\nnajvežovitejšieho\nnajvežovitejšiemu\nnajvežovitejších\nnajvežovitejším\nnajvežovitejšími\nnajvežovitejšiu\nnajvežovitejšom\nnajvežovitejšou\nnajvhodnej\nnajviac\nnajviacej\nnajviacúčelovejšej\nnajviacúčelovejší\nnajviacúčelovejšia\nnajviacúčelovejšie\nnajviacúčelovejšieho\nnajviacúčelovejšiemu\nnajviacúčelovejších\nnajviacúčelovejším\nnajviacúčelovejšími\nnajviacúčelovejšiu\nnajviacúčelovejšom\nnajviacúčelovejšou\nnajviacvýznamovejšej\nnajviacvýznamovejší\nnajviacvýznamovejšia\nnajviacvýznamovejšie\nnajviacvýznamovejšieho\nnajviacvýznamovejšiemu\nnajviacvýznamovejších\nnajviacvýznamovejším\nnajviacvýznamovejšími\nnajviacvýznamovejšiu\nnajviacvýznamovejšom\nnajviacvýznamovejšou\nnajvidieckejšej\nnajvidieckejší\nnajvidieckejšia\nnajvidieckejšie\nnajvidieckejšieho\nnajvidieckejšiemu\nnajvidieckejších\nnajvidieckejším\nnajvidieckejšími\nnajvidieckejšiu\nnajvidieckejšom\nnajvidieckejšou\nnajviditeľnejšej\nnajviditeľnejší\nnajviditeľnejšia\nnajviditeľnejšie\nnajviditeľnejšieho\nnajviditeľnejšiemu\nnajviditeľnejších\nnajviditeľnejším\nnajviditeľnejšími\nnajviditeľnejšiu\nnajviditeľnejšom\nnajviditeľnejšou\nnajvidlicovitejšej\nnajvidlicovitejší\nnajvidlicovitejšia\nnajvidlicovitejšie\nnajvidlicovitejšieho\nnajvidlicovitejšiemu\nnajvidlicovitejších\nnajvidlicovitejším\nnajvidlicovitejšími\nnajvidlicovitejšiu\nnajvidlicovitejšom\nnajvidlicovitejšou\nnajvierohodnejšej\nnajvierohodnejší\nnajvierohodnejšia\nnajvierohodnejšie\nnajvierohodnejšieho\nnajvierohodnejšiemu\nnajvierohodnejších\nnajvierohodnejším\nnajvierohodnejšími\nnajvierohodnejšiu\nnajvierohodnejšom\nnajvierohodnejšou\nnajvierolomnejšej\nnajvierolomnejší\nnajvierolomnejšia\nnajvierolomnejšie\nnajvierolomnejšieho\nnajvierolomnejšiemu\nnajvierolomnejších\nnajvierolomnejším\nnajvierolomnejšími\nnajvierolomnejšiu\nnajvierolomnejšom\nnajvierolomnejšou\nnajvinovatejšej\nnajvinovatejší\nnajvinovatejšia\nnajvinovatejšie\nnajvinovatejšieho\nnajvinovatejšiemu\nnajvinovatejších\nnajvinovatejším\nnajvinovatejšími\nnajvinovatejšiu\nnajvinovatejšom\nnajvinovatejšou\nnajvírivejšej\nnajvírivejší\nnajvírivejšia\nnajvírivejšie\nnajvírivejšieho\nnajvírivejšiemu\nnajvírivejších\nnajvírivejším\nnajvírivejšími\nnajvírivejšiu\nnajvírivejšom\nnajvírivejšou\nnajvirtuóznejšej\nnajvirtuóznejší\nnajvirtuóznejšia\nnajvirtuóznejšie\nnajvirtuóznejšieho\nnajvirtuóznejšiemu\nnajvirtuóznejších\nnajvirtuóznejším\nnajvirtuóznejšími\nnajvirtuóznejšiu\nnajvirtuóznejšom\nnajvirtuóznejšou\nnajviskóznejšej\nnajviskóznejší\nnajviskóznejšia\nnajviskóznejšie\nnajviskóznejšieho\nnajviskóznejšiemu\nnajviskóznejších\nnajviskóznejším\nnajviskóznejšími\nnajviskóznejšiu\nnajviskóznejšom\nnajviskóznejšou\nnajvisutejšej\nnajvisutejší\nnajvisutejšia\nnajvisutejšie\nnajvisutejšieho\nnajvisutejšiemu\nnajvisutejších\nnajvisutejším\nnajvisutejšími\nnajvisutejšiu\nnajvisutejšom\nnajvisutejšou\nnajvitálnejšia\nnajvitálnejšie\nnajvitálnejšou\nnajvítanejšej\nnajvítanejší\nnajvítanejšia\nnajvítanejšie\nnajvítanejšieho\nnajvítanejšiemu\nnajvítanejších\nnajvítanejším\nnajvítanejšími\nnajvítanejšiu\nnajvítanejšom\nnajvítanejšou\nnajvíťaznejšie\nnajvíťazoslávnejšej\nnajvíťazoslávnejší\nnajvíťazoslávnejšia\nnajvíťazoslávnejšie\nnajvíťazoslávnejšieho\nnajvíťazoslávnejšiemu\nnajvíťazoslávnejších\nnajvíťazoslávnejším\nnajvíťazoslávnejšími\nnajvíťazoslávnejšiu\nnajvíťazoslávnejšom\nnajvíťazoslávnejšou\nnajvizionárskejšej\nnajvizionárskejší\nnajvizionárskejšia\nnajvizionárskejšie\nnajvizionárskejšieho\nnajvizionárskejšiemu\nnajvizionárskejších\nnajvizionárskejším\nnajvizionárskejšími\nnajvizionárskejšiu\nnajvizionárskejšom\nnajvizionárskejšou\nnajvizuálnejšie\nnajvkusnejšej\nnajvkusnejší\nnajvkusnejšia\nnajvkusnejšie\nnajvkusnejšieho\nnajvkusnejšiemu\nnajvkusnejších\nnajvkusnejším\nnajvkusnejšími\nnajvkusnejšiu\nnajvkusnejšom\nnajvkusnejšou\nnajvláčnejšej\nnajvláčnejší\nnajvláčnejšia\nnajvláčnejšie\nnajvláčnejšieho\nnajvláčnejšiemu\nnajvláčnejších\nnajvláčnejším\nnajvláčnejšími\nnajvláčnejšiu\nnajvláčnejšom\nnajvláčnejšou\nnajvládychtivejšej\nnajvládychtivejší\nnajvládychtivejšia\nnajvládychtivejšie\nnajvládychtivejšieho\nnajvládychtivejšiemu\nnajvládychtivejších\nnajvládychtivejším\nnajvládychtivejšími\nnajvládychtivejšiu\nnajvládychtivejšom\nnajvládychtivejšou\nnajvlahejšej\nnajvlahejší\nnajvlahejšia\nnajvlahejšie\nnajvlahejšieho\nnajvlahejšiemu\nnajvlahejších\nnajvlahejším\nnajvlahejšími\nnajvlahejšiu\nnajvlahejšom\nnajvlahejšou\nnajvláknitejšej\nnajvláknitejší\nnajvláknitejšia\nnajvláknitejšie\nnajvláknitejšieho\nnajvláknitejšiemu\nnajvláknitejších\nnajvláknitejším\nnajvláknitejšími\nnajvláknitejšiu\nnajvláknitejšom\nnajvláknitejšou\nnajvlasatejšej\nnajvlasatejší\nnajvlasatejšia\nnajvlasatejšie\nnajvlasatejšieho\nnajvlasatejšiemu\nnajvlasatejších\nnajvlasatejším\nnajvlasatejšími\nnajvlasatejšiu\nnajvlasatejšom\nnajvlasatejšou\nnajvlasteneckejšej\nnajvlasteneckejší\nnajvlasteneckejšia\nnajvlasteneckejšie\nnajvlasteneckejšieho\nnajvlasteneckejšiemu\nnajvlasteneckejších\nnajvlasteneckejším\nnajvlasteneckejšími\nnajvlasteneckejšiu\nnajvlasteneckejšom\nnajvlasteneckejšou\nnajvlastizradnejšej\nnajvlastizradnejší\nnajvlastizradnejšia\nnajvlastizradnejšie\nnajvlastizradnejšieho\nnajvlastizradnejšiemu\nnajvlastizradnejších\nnajvlastizradnejším\nnajvlastizradnejšími\nnajvlastizradnejšiu\nnajvlastizradnejšom\nnajvlastizradnejšou\nnajvlastnejšej\nnajvlastnejší\nnajvlastnejšia\nnajvlastnejšiemu\nnajvlastnejším\nnajvlastnejšiu\nnajvlastnejšom\nNajvlastnejšou\nnajvlastníckejšej\nnajvlastníckejší\nnajvlastníckejšia\nnajvlastníckejšie\nnajvlastníckejšieho\nnajvlastníckejšiemu\nnajvlastníckejších\nnajvlastníckejším\nnajvlastníckejšími\nnajvlastníckejšiu\nnajvlastníckejšom\nnajvlastníckejšou\nnajvlažnejšej\nnajvlažnejší\nnajvlažnejšia\nnajvlažnejšie\nnajvlažnejšieho\nnajvlažnejšiemu\nnajvlažnejších\nnajvlažnejším\nnajvlažnejšími\nnajvlažnejšiu\nnajvlažnejšom\nnajvlažnejšou\nnajvleklejšej\nnajvleklejší\nnajvleklejšia\nnajvleklejšie\nnajvleklejšieho\nnajvleklejšiemu\nnajvleklejších\nnajvleklejším\nnajvleklejšími\nnajvleklejšiu\nnajvleklejšom\nnajvleklejšou\nnajvlhkejšej\nnajvlhkejší\nnajvlhkejšia\nnajvlhkejšie\nnajvlhkejšieho\nnajvlhkejšiemu\nnajvlhkejších\nnajvlhkejším\nnajvlhkejšími\nnajvlhkejšiu\nnajvlhkejšom\nnajvlhkejšou\nnajvlhkomilnejšej\nnajvlhkomilnejší\nnajvlhkomilnejšia\nnajvlhkomilnejšie\nnajvlhkomilnejšieho\nnajvlhkomilnejšiemu\nnajvlhkomilnejších\nnajvlhkomilnejším\nnajvlhkomilnejšími\nnajvlhkomilnejšiu\nnajvlhkomilnejšom\nnajvlhkomilnejšou\nnajvlhšej\nnajvlhší\nnajvlhšia\nnajvlhšie\nnajvlhšieho\nnajvlhšiemu\nnajvlhších\nnajvlhším\nnajvlhšími\nnajvlhšiu\nnajvlhšom\nnajvlhšou\nnajvlnistejšej\nnajvlnistejší\nnajvlnistejšia\nnajvlnistejšie\nnajvlnistejšieho\nnajvlnistejšiemu\nnajvlnistejších\nnajvlnistejším\nnajvlnistejšími\nnajvlnistejšiu\nnajvlnistejšom\nnajvlnistejšou\nnajvlnitejšej\nnajvlnitejší\nnajvlnitejšia\nnajvlnitejšie\nnajvlnitejšieho\nnajvlnitejšiemu\nnajvlnitejších\nnajvlnitejším\nnajvlnitejšími\nnajvlnitejšiu\nnajvlnitejšom\nnajvlnitejšou\nnajvlnivejšej\nnajvlnivejší\nnajvlnivejšia\nnajvlnivejšie\nnajvlnivejšieho\nnajvlnivejšiemu\nnajvlnivejších\nnajvlnivejším\nnajvlnivejšími\nnajvlnivejšiu\nnajvlnivejšom\nnajvlnivejšou\nnajvlnovitejšej\nnajvlnovitejší\nnajvlnovitejšia\nnajvlnovitejšie\nnajvlnovitejšieho\nnajvlnovitejšiemu\nnajvlnovitejších\nnajvlnovitejším\nnajvlnovitejšími\nnajvlnovitejšiu\nnajvlnovitejšom\nnajvlnovitejšou\nnajvľúdnejšej\nnajvľúdnejší\nnajvľúdnejšia\nnajvľúdnejšie\nnajvľúdnejšieho\nnajvľúdnejšiemu\nnajvľúdnejších\nnajvľúdnejším\nnajvľúdnejšími\nnajvľúdnejšiu\nnajvľúdnejšom\nnajvľúdnejšou\nnajvnímavejšej\nnajvnímavejší\nnajvnímavejšia\nnajvnímavejšie\nnajvnímavejšieho\nnajvnímavejšiemu\nnajvnímavejších\nnajvnímavejším\nnajvnímavejšími\nnajvnímavejšiu\nnajvnímavejšom\nnajvnímavejšou\nnajvodavejšej\nnajvodavejší\nnajvodavejšia\nnajvodavejšie\nnajvodavejšieho\nnajvodavejšiemu\nnajvodavejších\nnajvodavejším\nnajvodavejšími\nnajvodavejšiu\nnajvodavejšom\nnajvodavejšou\nnajvodivejšej\nnajvodivejší\nnajvodivejšia\nnajvodivejšie\nnajvodivejšieho\nnajvodivejšiemu\nnajvodivejších\nnajvodivejším\nnajvodivejšími\nnajvodivejšiu\nnajvodivejšom\nnajvodivejšou\nnajvodnatejšej\nnajvodnatejší\nnajvodnatejšia\nnajvodnatejšie\nnajvodnatejšieho\nnajvodnatejšiemu\nnajvodnatejších\nnajvodnatejším\nnajvodnatejšími\nnajvodnatejšiu\nnajvodnatejšom\nnajvodnatejšou\nnajvodorovnejšej\nnajvodorovnejší\nnajvodorovnejšia\nnajvodorovnejšie\nnajvodorovnejšieho\nnajvodorovnejšiemu\nnajvodorovnejších\nnajvodorovnejším\nnajvodorovnejšími\nnajvodorovnejšiu\nnajvodorovnejšom\nnajvodorovnejšou\nnajvodovejšej\nnajvodovejší\nnajvodovejšia\nnajvodovejšie\nnajvodovejšieho\nnajvodovejšiemu\nnajvodovejších\nnajvodovejším\nnajvodovejšími\nnajvodovejšiu\nnajvodovejšom\nnajvodovejšou\nnajvodovzdornejšie\nnajvojenskejšej\nnajvojenskejší\nnajvojenskejšia\nnajvojenskejšie\nnajvojenskejšieho\nnajvojenskejšiemu\nnajvojenskejších\nnajvojenskejším\nnajvojenskejšími\nnajvojenskejšiu\nnajvojenskejšom\nnajvojenskejšou\nnajvoľnejšej\nnajvoľnejší\nnajvoľnejšia\nnajvoľnejšie\nnajvoľnejšieho\nnajvoľnejšiemu\nnajvoľnejších\nnajvoľnejším\nnajvoľnejšími\nnajvoľnejšiu\nnajvoľnejšom\nnajvoľnejšou\nnajvoluntaristickejšej\nnajvoluntaristickejší\nnajvoluntaristickejšia\nnajvoluntaristickejšie\nnajvoluntaristickejšieho\nnajvoluntaristickejšiemu\nnajvoluntaristickejších\nnajvoluntaristickejším\nnajvoluntaristickejšími\nnajvoluntaristickejšiu\nnajvoluntaristickejšom\nnajvoluntaristickejšou\nnajvoňavejšej\nnajvoňavejší\nnajvoňavejšia\nnajvoňavejšie\nnajvoňavejšieho\nnajvoňavejšiemu\nnajvoňavejších\nnajvoňavejším\nnajvoňavejšími\nnajvoňavejšiu\nnajvoňavejšom\nnajvoňavejšou\nnajvonnejšej\nnajvonnejší\nnajvonnejšia\nnajvonnejšie\nnajvonnejšieho\nnajvonnejšiemu\nnajvonnejších\nnajvonnejším\nnajvonnejšími\nnajvonnejšiu\nnajvonnejšom\nnajvonnejšou\nnajvplyvnejšej\nnajvplyvnejší\nnajvplyvnejšia\nnajvplyvnejšie\nnajvplyvnejšieho\nnajvplyvnejšiemu\nnajvplyvnejších\nnajvplyvnejším\nnajvplyvnejšími\nnajvplyvnejšiu\nnajvplyvnejšom\nnajvplyvnejšou\nnajvráskavejšej\nnajvráskavejší\nnajvráskavejšia\nnajvráskavejšie\nnajvráskavejšieho\nnajvráskavejšiemu\nnajvráskavejších\nnajvráskavejším\nnajvráskavejšími\nnajvráskavejšiu\nnajvráskavejšom\nnajvráskavejšou\nnajvratkejšej\nnajvratkejší\nnajvratkejšia\nnajvratkejšie\nNajvratkejšie\nnajvratkejšieho\nnajvratkejšiemu\nnajvratkejších\nnajvratkejším\nnajvratkejšími\nnajvratkejšiu\nnajvratkejšom\nnajvratkejšou\nnajvražednejšej\nnajvražednejší\nnajvražednejšia\nnajvražednejšie\nnajvražednejšieho\nnajvražednejšiemu\nnajvražednejších\nnajvražednejším\nnajvražednejšími\nnajvražednejšiu\nnajvražednejšom\nnajvražednejšou\nnajvrecovitejšej\nnajvrecovitejší\nnajvrecovitejšia\nnajvrecovitejšie\nnajvrecovitejšieho\nnajvrecovitejšiemu\nnajvrecovitejších\nnajvrecovitejším\nnajvrecovitejšími\nnajvrecovitejšiu\nnajvrecovitejšom\nnajvrecovitejšou\nnajvrelejšej\nnajvrelejší\nnajvrelejšia\nnajvrelejšie\nnajvrelejšieho\nnajvrelejšiemu\nnajvrelejších\nnajvrelejším\nnajvrelejšími\nnajvrelejšiu\nnajvrelejšom\nnajvrelejšou\nnajvretenovitejšej\nnajvretenovitejší\nnajvretenovitejšia\nnajvretenovitejšie\nnajvretenovitejšieho\nnajvretenovitejšiemu\nnajvretenovitejších\nnajvretenovitejším\nnajvretenovitejšími\nnajvretenovitejšiu\nnajvretenovitejšom\nnajvretenovitejšou\nnajvrchnejšej\nnajvrchnejší\nnajvrchnejšia\nnajvrchnejšie\nnajvrchnejšieho\nnajvrchnejšiemu\nnajvrchnejších\nnajvrchnejším\nnajvrchnejšími\nnajvrchnejšiu\nnajvrchnejšom\nnajvrchnejšou\nnajvrcholnejšej\nnajvrcholnejší\nnajvrcholnejšia\nnajvrcholnejšie\nnajvrcholnejšieho\nnajvrcholnejšiemu\nnajvrcholnejších\nnajvrcholnejším\nnajvrcholnejšími\nnajvrcholnejšiu\nnajvrcholnejšom\nnajvrcholnejšou\nnajvrchovatejšej\nnajvrchovatejší\nnajvrchovatejšia\nnajvrchovatejšie\nnajvrchovatejšieho\nnajvrchovatejšiemu\nnajvrchovatejších\nnajvrchovatejším\nnajvrchovatejšími\nnajvrchovatejšiu\nnajvrchovatejšom\nnajvrchovatejšou\nnajvrchovitejšej\nnajvrchovitejší\nnajvrchovitejšia\nnajvrchovitejšie\nnajvrchovitejšieho\nnajvrchovitejšiemu\nnajvrchovitejších\nnajvrchovitejším\nnajvrchovitejšími\nnajvrchovitejšiu\nnajvrchovitejšom\nnajvrchovitejšou\nnajvrstevnatejšej\nnajvrstevnatejší\nnajvrstevnatejšia\nnajvrstevnatejšie\nnajvrstevnatejšieho\nnajvrstevnatejšiemu\nnajvrstevnatejších\nnajvrstevnatejším\nnajvrstevnatejšími\nnajvrstevnatejšiu\nnajvrstevnatejšom\nnajvrstevnatejšou\nnajvrstvovitejšej\nnajvrstvovitejší\nnajvrstvovitejšia\nnajvrstvovitejšie\nnajvrstvovitejšieho\nnajvrstvovitejšiemu\nnajvrstvovitejších\nnajvrstvovitejším\nnajvrstvovitejšími\nnajvrstvovitejšiu\nnajvrstvovitejšom\nnajvrstvovitejšou\nnajvrtkavejšej\nnajvrtkavejší\nnajvrtkavejšia\nnajvrtkavejšie\nnajvrtkavejšieho\nnajvrtkavejšiemu\nnajvrtkavejších\nnajvrtkavejším\nnajvrtkavejšími\nnajvrtkavejšiu\nnajvrtkavejšom\nnajvrtkavejšou\nnajvrtkejšej\nnajvrtkejší\nnajvrtkejšia\nnajvrtkejšie\nnajvrtkejšieho\nnajvrtkejšiemu\nnajvrtkejších\nnajvrtkejším\nnajvrtkejšími\nnajvrtkejšiu\nnajvrtkejšom\nnajvrtkejšou\nnajvrtošivejšej\nnajvrtošivejší\nnajvrtošivejšia\nnajvrtošivejšie\nnajvrtošivejšieho\nnajvrtošivejšiemu\nnajvrtošivejších\nnajvrtošivejším\nnajvrtošivejšími\nnajvrtošivejšiu\nnajvrtošivejšom\nnajvrtošivejšou\nnajvrúcnejšej\nnajvrúcnejší\nnajvrúcnejšia\nnajvrúcnejšie\nnajvrúcnejšieho\nnajvrúcnejšiemu\nnajvrúcnejších\nnajvrúcnejším\nnajvrúcnejšími\nnajvrúcnejšiu\nnajvrúcnejšom\nnajvrúcnejšou\nnajvŕzgavejšej\nnajvŕzgavejší\nnajvŕzgavejšia\nnajvŕzgavejšie\nnajvŕzgavejšieho\nnajvŕzgavejšiemu\nnajvŕzgavejších\nnajvŕzgavejším\nnajvŕzgavejšími\nnajvŕzgavejšiu\nnajvŕzgavejšom\nnajvŕzgavejšou\nnajvšestrannejšej\nnajvšestrannejší\nnajvšestrannejšia\nnajvšestrannejšie\nnajvšestrannejšieho\nnajvšestrannejšiemu\nnajvšestrannejších\nnajvšestrannejším\nnajvšestrannejšími\nnajvšestrannejšiu\nnajvšestrannejšom\nnajvšestrannejšou\nnajvšetečnejšej\nnajvšetečnejší\nnajvšetečnejšia\nnajvšetečnejšie\nnajvšetečnejšieho\nnajvšetečnejšiemu\nnajvšetečnejších\nnajvšetečnejším\nnajvšetečnejšími\nnajvšetečnejšiu\nnajvšetečnejšom\nnajvšetečnejšou\nnajvšímavejšej\nnajvšímavejší\nnajvšímavejšia\nnajvšímavejšie\nnajvšímavejšieho\nnajvšímavejšiemu\nnajvšímavejších\nnajvšímavejším\nnajvšímavejšími\nnajvšímavejšiu\nnajvšímavejšom\nnajvšímavejšou\nnajvšiváckejšej\nnajvšiváckejší\nnajvšiváckejšia\nnajvšiváckejšie\nnajvšiváckejšieho\nnajvšiváckejšiemu\nnajvšiváckejších\nnajvšiváckejším\nnajvšiváckejšími\nnajvšiváckejšiu\nnajvšiváckejšom\nnajvšiváckejšou\nnajvšivavejšej\nnajvšivavejší\nnajvšivavejšia\nnajvšivavejšie\nnajvšivavejšieho\nnajvšivavejšiemu\nnajvšivavejších\nnajvšivavejším\nnajvšivavejšími\nnajvšivavejšiu\nnajvšivavejšom\nnajvšivavejšou\nnajvtieravejšej\nnajvtieravejší\nnajvtieravejšia\nnajvtieravejšie\nnajvtieravejšieho\nnajvtieravejšiemu\nnajvtieravejších\nnajvtieravejším\nnajvtieravejšími\nnajvtieravejšiu\nnajvtieravejšom\nnajvtieravejšou\nnajvtipnejšej\nnajvtipnejší\nnajvtipnejšia\nnajvtipnejšie\nnajvtipnejšieho\nnajvtipnejšiemu\nnajvtipnejších\nnajvtipnejším\nnajvtipnejšími\nnajvtipnejšiu\nnajvtipnejšom\nnajvtipnejšou\nnajvulgárnejšej\nnajvulgárnejší\nnajvulgárnejšia\nnajvulgárnejšie\nnajvulgárnejšieho\nnajvulgárnejšiemu\nnajvulgárnejších\nnajvulgárnejším\nnajvulgárnejšími\nnajvulgárnejšiu\nnajvulgárnejšom\nnajvulgárnejšou\nnajvybavenejší\nnajvybavenejších\nnajvyberavejší\nnajvybíjanejšej\nnajvybíjanejší\nnajvybíjanejšia\nnajvybíjanejšie\nnajvybíjanejšieho\nnajvybíjanejšiemu\nnajvybíjanejších\nnajvybíjanejším\nnajvybíjanejšími\nnajvybíjanejšiu\nnajvybíjanejšom\nnajvybíjanejšou\nnajvybitejšej\nnajvybitejší\nnajvybitejšia\nnajvybitejšie\nnajvybitejšieho\nnajvybitejšiemu\nnajvybitejších\nnajvybitejším\nnajvybitejšími\nnajvybitejšiu\nnajvybitejšom\nnajvybitejšou\nnajvýbojnejšej\nnajvýbojnejší\nnajvýbojnejšia\nnajvýbojnejšie\nnajvýbojnejšieho\nnajvýbojnejšiemu\nnajvýbojnejších\nnajvýbojnejším\nnajvýbojnejšími\nnajvýbojnejšiu\nnajvýbojnejšom\nnajvýbojnejšou\nnajvybračnejšej\nnajvybranejšie\nnajvybratejšej\nnajvybrúsenejšej\nnajvybrúsenejší\nnajvybrúsenejšia\nnajvybrúsenejšie\nnajvybrúsenejšieho\nnajvybrúsenejšiemu\nnajvybrúsenejších\nnajvybrúsenejším\nnajvybrúsenejšími\nnajvybrúsenejšiu\nnajvybrúsenejšom\nnajvybrúsenejšou\nnajvybúranejšej\nnajvýbušnejšej\nnajvýbušnejší\nnajvýbušnejšia\nnajvýbušnejšie\nnajvýbušnejšieho\nnajvýbušnejšiemu\nnajvýbušnejších\nnajvýbušnejším\nnajvýbušnejšími\nnajvýbušnejšiu\nnajvýbušnejšom\nnajvýbušnejšou\nnajvycivenejšej\nnajvycivenejší\nnajvycivenejšia\nnajvycivenejšie\nnajvycivenejšieho\nnajvycivenejšiemu\nnajvycivenejších\nnajvycivenejším\nnajvycivenejšími\nnajvycivenejšiu\nnajvycivenejšom\nnajvycivenejšou\nnajvycvičenejšej\nnajvycvičenejší\nnajvycvičenejšia\nnajvycvičenejšie\nnajvycvičenejšieho\nnajvycvičenejšiemu\nnajvycvičenejších\nnajvycvičenejším\nnajvycvičenejšími\nnajvycvičenejšiu\nnajvycvičenejšom\nnajvycvičenejšou\nnajvyčerpanejšej\nnajvyčerpanejší\nnajvyčerpanejšia\nnajvyčerpanejšie\nnajvyčerpanejšieho\nnajvyčerpanejšiemu\nnajvyčerpanejších\nnajvyčerpanejším\nnajvyčerpanejšími\nnajvyčerpanejšiu\nnajvyčerpanejšom\nnajvyčerpanejšou\nnajvyčerpávajúcejšej\nnajvyčerpávajúcejší\nnajvyčerpávajúcejšia\nnajvyčerpávajúcejšie\nnajvyčerpávajúcejšieho\nnajvyčerpávajúcejšiemu\nnajvyčerpávajúcejších\nnajvyčerpávajúcejším\nnajvyčerpávajúcejšími\nnajvyčerpávajúcejšiu\nnajvyčerpávajúcejšom\nnajvyčerpávajúcejšou\nnajvyčísliteľnejšej\nnajvyčísliteľnejší\nnajvyčísliteľnejšia\nnajvyčísliteľnejšie\nnajvyčísliteľnejšieho\nnajvyčísliteľnejšiemu\nnajvyčísliteľnejších\nnajvyčísliteľnejším\nnajvyčísliteľnejšími\nnajvyčísliteľnejšiu\nnajvyčísliteľnejšom\nnajvyčísliteľnejšou\nnajvyčítavejšej\nnajvyčítavejší\nnajvyčítavejšia\nnajvyčítavejšie\nnajvyčítavejšieho\nnajvyčítavejšiemu\nnajvyčítavejších\nnajvyčítavejším\nnajvyčítavejšími\nnajvyčítavejšiu\nnajvyčítavejšom\nnajvyčítavejšou\nnajvydarenejšej\nnajvydarenejší\nnajvydarenejšia\nnajvydarenejšie\nnajvydarenejšieho\nnajvydarenejšiemu\nnajvydarenejších\nnajvydarenejším\nnajvydarenejšími\nnajvydarenejšiu\nnajvydarenejšom\nnajvydarenejšou\nnajvýdatnejšej\nnajvýdatnejší\nnajvýdatnejšia\nnajvýdatnejšie\nnajvýdatnejšieho\nnajvýdatnejšiemu\nnajvýdatnejších\nnajvýdatnejším\nnajvýdatnejšími\nnajvýdatnejšiu\nnajvýdatnejšom\nnajvýdatnejšou\nnajvyhasnutejšej\nnajvyhasnutejší\nnajvyhasnutejšia\nnajvyhasnutejšie\nnajvyhasnutejšieho\nnajvyhasnutejšiemu\nnajvyhasnutejších\nnajvyhasnutejším\nnajvyhasnutejšími\nnajvyhasnutejšiu\nnajvyhasnutejšom\nnajvyhasnutejšou\nnajvyhovujúcejšej\nnajvyhovujúcejší\nnajvyhovujúcejšia\nnajvyhovujúcejšie\nnajvyhovujúcejšieho\nnajvyhovujúcejšiemu\nnajvyhovujúcejších\nnajvyhovujúcejším\nnajvyhovujúcejšími\nnajvyhovujúcejšiu\nnajvyhovujúcejšom\nnajvyhovujúcejšou\nnajvyhranejšej\nnajvyhranenejšej\nnajvyhranenejší\nnajvyhranenejšia\nnajvyhranenejšie\nnajvyhranenejšieho\nnajvyhranenejšiemu\nnajvyhranenejších\nnajvyhranenejším\nnajvyhranenejšími\nnajvyhranenejšiu\nnajvyhranenejšom\nnajvyhranenejšou\nnajvýhražnejšej\nnajvýhražnejší\nnajvýhražnejšia\nnajvýhražnejšie\nnajvýhražnejšieho\nnajvýhražnejšiemu\nnajvýhražnejších\nnajvýhražnejším\nnajvýhražnejšími\nnajvýhražnejšiu\nnajvýhražnejšom\nnajvýhražnejšou\nnajvýhrevnejšej\nnajvýhrevnejší\nnajvýhrevnejšia\nnajvýhrevnejšie\nnajvýhrevnejšieho\nnajvýhrevnejšiemu\nnajvýhrevnejších\nnajvýhrevnejším\nnajvýhrevnejšími\nnajvýhrevnejšiu\nnajvýhrevnejšom\nnajvýhrevnejšou\nnajvyhrotenejšia\nnajvyhrotenejšie\nnajvyhýbavejšej\nnajvyhýbavejší\nnajvyhýbavejšia\nnajvyhýbavejšie\nnajvyhýbavejšieho\nnajvyhýbavejšiemu\nnajvyhýbavejších\nnajvyhýbavejším\nnajvyhýbavejšími\nnajvyhýbavejšiu\nnajvyhýbavejšom\nnajvyhýbavejšou\nnajvýchodnejšej\nnajvýchodnejší\nnajvýchodnejšia\nnajvýchodnejšie\nnajvýchodnejšieho\nnajvýchodnejšiemu\nnajvýchodnejších\nnajvýchodnejším\nnajvýchodnejšími\nnajvýchodnejšiu\nnajvýchodnejšom\nnajvýchodnejšou\nnajvychovanejšej\nnajvychovanejší\nnajvychovanejšia\nnajvychovanejšie\nnajvychovanejšieho\nnajvychovanejšiemu\nnajvychovanejších\nnajvychovanejším\nnajvychovanejšími\nnajvychovanejšiu\nnajvychovanejšom\nnajvychovanejšou\nnajvýchovnejšej\nnajvýchovnejší\nnajvýchovnejšia\nnajvýchovnejšie\nnajvýchovnejšieho\nnajvýchovnejšiemu\nnajvýchovnejších\nnajvýchovnejším\nnajvýchovnejšími\nnajvýchovnejšiu\nnajvýchovnejšom\nnajvýchovnejšou\nnajvychýrenejšej\nnajvychýrenejší\nnajvychýrenejšia\nnajvychýrenejšie\nnajvychýrenejšieho\nnajvychýrenejšiemu\nnajvychýrenejších\nnajvychýrenejším\nnajvychýrenejšími\nnajvychýrenejšiu\nnajvychýrenejšom\nnajvychýrenejšou\nnajvychytenejšej\nnajvychytenejší\nnajvychytenejšia\nnajvychytenejšie\nnajvychytenejšieho\nnajvychytenejšiemu\nnajvychytenejších\nnajvychytenejším\nnajvychytenejšími\nNajvychytenejšími\nnajvychytenejšiu\nnajvychytenejšom\nnajvychytenejšou\nnajvyjavenejšej\nnajvyjavenejší\nnajvyjavenejšia\nnajvyjavenejšie\nnajvyjavenejšieho\nnajvyjavenejšiemu\nnajvyjavenejších\nnajvyjavenejším\nnajvyjavenejšími\nnajvyjavenejšiu\nnajvyjavenejšom\nnajvyjavenejšou\nnajvyjebanejšej\nnajvyjebanejší\nnajvyjebanejšia\nnajvyjebanejšie\nnajvyjebanejšieho\nnajvyjebanejšiemu\nnajvyjebanejších\nnajvyjebanejším\nnajvyjebanejšími\nnajvyjebanejšiu\nnajvyjebanejšom\nnajvyjebanejšou\nnajvýkonnejšej\nnajvýkonnejší\nnajvýkonnejšia\nnajvýkonnejšie\nnajvýkonnejšieho\nnajvýkonnejšiemu\nnajvýkonnejších\nnajvýkonnejším\nnajvýkonnejšími\nnajvýkonnejšiu\nnajvýkonnejšom\nnajvýkonnejšou\nnajvykorisťovanejšej\nnajvykorisťovanejší\nnajvykorisťovanejšia\nnajvykorisťovanejšie\nnajvykorisťovanejšieho\nnajvykorisťovanejšiemu\nnajvykorisťovanejších\nnajvykorisťovanejším\nnajvykorisťovanejšími\nnajvykorisťovanejšiu\nnajvykorisťovanejšom\nnajvykorisťovanejšou\nnajvykrajovanejšej\nnajvykrajovanejší\nnajvykrajovanejšia\nnajvykrajovanejšie\nnajvykrajovanejšieho\nnajvykrajovanejšiemu\nnajvykrajovanejších\nnajvykrajovanejším\nnajvykrajovanejšími\nnajvykrajovanejšiu\nnajvykrajovanejšom\nnajvykrajovanejšou\nnajvykričanejšej\nnajvykričanejší\nnajvykričanejšia\nnajvykričanejšie\nnajvykričanejšieho\nnajvykričanejšiemu\nnajvykričanejších\nnajvykričanejším\nnajvykričanejšími\nnajvykričanejšiu\nnajvykričanejšom\nnajvykričanejšou\nnajvyľakanejšej\nnajvyľakanejší\nnajvyľakanejšia\nnajvyľakanejšie\nnajvyľakanejšieho\nnajvyľakanejšiemu\nnajvyľakanejších\nnajvyľakanejším\nnajvyľakanejšími\nnajvyľakanejšiu\nnajvyľakanejšom\nnajvyľakanejšou\nnajvynachádzavejšej\nnajvynachádzavejší\nnajvynachádzavejšia\nnajvynachádzavejšie\nnajvynachádzavejšieho\nnajvynachádzavejšiemu\nnajvynachádzavejších\nnajvynachádzavejším\nnajvynachádzavejšími\nnajvynachádzavejšiu\nnajvynachádzavejšom\nnajvynachádzavejšou\nnajvynikajúcejšie\nnajvýnimočnejšej\nnajvýnimočnejší\nnajvýnimočnejšia\nnajvýnimočnejšie\nnajvýnimočnejšieho\nnajvýnimočnejšiemu\nnajvýnimočnejších\nnajvýnimočnejším\nnajvýnimočnejšími\nnajvýnimočnejšiu\nnajvýnimočnejšom\nnajvýnimočnejšou\nnajvýnosnejšej\nnajvýnosnejší\nnajvýnosnejšia\nnajvýnosnejšie\nnajvýnosnejšieho\nnajvýnosnejšiemu\nnajvýnosnejších\nnajvýnosnejším\nnajvýnosnejšími\nnajvýnosnejšiu\nnajvýnosnejšom\nnajvýnosnejšou\nnajvyoranejšej\nnajvypätejšej\nnajvypätejší\nnajvypätejšia\nnajvypätejšie\nnajvypätejšieho\nnajvypätejšiemu\nnajvypätejších\nnajvypätejším\nnajvypätejšími\nnajvypätejšiu\nnajvypätejšom\nnajvypätejšou\nnajvypínavejšej\nnajvypínavejší\nnajvypínavejšia\nnajvypínavejšie\nnajvypínavejšieho\nnajvypínavejšiemu\nnajvypínavejších\nnajvypínavejším\nnajvypínavejšími\nnajvypínavejšiu\nnajvypínavejšom\nnajvypínavejšou\nnajvypnutejšej\nnajvypnutejší\nnajvypnutejšia\nnajvypnutejšie\nnajvypnutejšieho\nnajvypnutejšiemu\nnajvypnutejších\nnajvypnutejším\nnajvypnutejšími\nnajvypnutejšiu\nnajvypnutejšom\nnajvypnutejšou\nnajvypočítavejšej\nnajvypočítavejší\nnajvypočítavejšia\nnajvypočítavejšie\nnajvypočítavejšieho\nnajvypočítavejšiemu\nnajvypočítavejších\nnajvypočítavejším\nnajvypočítavejšími\nnajvypočítavejšiu\nnajvypočítavejšom\nnajvypočítavejšou\nnajvypranejšej\nnajvýpravnejšej\nnajvýpravnejší\nnajvýpravnejšia\nnajvýpravnejšie\nnajvýpravnejšieho\nnajvýpravnejšiemu\nnajvýpravnejších\nnajvýpravnejším\nnajvýpravnejšími\nnajvýpravnejšiu\nnajvýpravnejšom\nnajvýpravnejšou\nnajvypuklejšej\nnajvypuklejší\nnajvypuklejšia\nnajvypuklejšie\nnajvypuklejšieho\nnajvypuklejšiemu\nnajvypuklejších\nnajvypuklejším\nnajvypuklejšími\nnajvypuklejšiu\nnajvypuklejšom\nnajvypuklejšou\nnajvýrečnejšej\nnajvýrečnejší\nnajvýrečnejšia\nnajvýrečnejšie\nnajvýrečnejšieho\nnajvýrečnejšiemu\nnajvýrečnejších\nnajvýrečnejším\nnajvýrečnejšími\nnajvýrečnejšiu\nnajvýrečnejšom\nnajvýrečnejšou\nnajvyrezávanejšej\nnajvyrezávanejší\nnajvyrezávanejšia\nnajvyrezávanejšie\nnajvyrezávanejšieho\nnajvyrezávanejšiemu\nnajvyrezávanejších\nnajvyrezávanejším\nnajvyrezávanejšími\nnajvyrezávanejšiu\nnajvyrezávanejšom\nnajvyrezávanejšou\nnajvyrovnanejšej\nnajvyrovnanejší\nnajvyrovnanejšia\nNajvyrovnanejšia\nnajvyrovnanejšie\nnajvyrovnanejšieho\nnajvyrovnanejšiemu\nnajvyrovnanejších\nnajvyrovnanejším\nnajvyrovnanejšími\nnajvyrovnanejšiu\nnajvyrovnanejšom\nnajvyrovnanejšou\nNajvyrovnanejšou\nnajvýsadnejšie\nnajvysilenejšej\nnajvysilenejší\nnajvysilenejšia\nnajvysilenejšie\nnajvysilenejšieho\nnajvysilenejšiemu\nnajvysilenejších\nnajvysilenejším\nnajvysilenejšími\nnajvysilenejšiu\nnajvysilenejšom\nnajvysilenejšou\nnajvysiľujúcejšej\nnajvysiľujúcejší\nnajvysiľujúcejšia\nnajvysiľujúcejšie\nnajvysiľujúcejšieho\nnajvysiľujúcejšiemu\nnajvysiľujúcejších\nnajvysiľujúcejším\nnajvysiľujúcejšími\nnajvysiľujúcejšiu\nnajvysiľujúcejšom\nnajvysiľujúcejšou\nnajvýslovnejšie\nnajvyslúženejšej\nnajvyslúženejší\nnajvyslúženejšia\nnajvyslúženejšie\nnajvyslúženejšieho\nnajvyslúženejšiemu\nnajvyslúženejších\nnajvyslúženejším\nnajvyslúženejšími\nnajvyslúženejšiu\nnajvyslúženejšom\nnajvyslúženejšou\nnajvýsmešnejšej\nnajvýsmešnejší\nnajvýsmešnejšia\nnajvýsmešnejšie\nnajvýsmešnejšieho\nnajvýsmešnejšiemu\nnajvýsmešnejších\nnajvýsmešnejším\nnajvýsmešnejšími\nnajvýsmešnejšiu\nnajvýsmešnejšom\nnajvýsmešnejšou\nnajvysmiatejšej\nnajvysmiatejší\nnajvysmiatejšia\nnajvysmiatejšie\nnajvysmiatejšieho\nnajvysmiatejšiemu\nnajvysmiatejších\nnajvysmiatejším\nnajvysmiatejšími\nnajvysmiatejšiu\nnajvysmiatejšom\nnajvysmiatejšou\nnajvýsostnejší\nnajvystatovačnejšej\nnajvystatovačnejší\nnajvystatovačnejšia\nnajvystatovačnejšie\nnajvystatovačnejšieho\nnajvystatovačnejšiemu\nnajvystatovačnejších\nnajvystatovačnejším\nnajvystatovačnejšími\nnajvystatovačnejšiu\nnajvystatovačnejšom\nnajvystatovačnejšou\nnajvýstavnejšej\nnajvýstavnejší\nnajvýstavnejšia\nnajvýstavnejšie\nnajvýstavnejšieho\nnajvýstavnejšiemu\nnajvýstavnejších\nnajvýstavnejším\nnajvýstavnejšími\nnajvýstavnejšiu\nnajvýstavnejšom\nnajvýstavnejšou\nnajvystrašenejšej\nnajvystrašenejší\nnajvystrašenejšia\nnajvystrašenejšie\nnajvystrašenejšieho\nnajvystrašenejšiemu\nnajvystrašenejších\nnajvystrašenejším\nnajvystrašenejšími\nnajvystrašenejšiu\nnajvystrašenejšom\nnajvystrašenejšou\nnajvýstražnejšej\nnajvýstražnejší\nnajvýstražnejšia\nnajvýstražnejšie\nnajvýstražnejšieho\nnajvýstražnejšiemu\nnajvýstražnejších\nnajvýstražnejším\nnajvýstražnejšími\nnajvýstražnejšiu\nnajvýstražnejšom\nnajvýstražnejšou\nnajvýstrednejšej\nnajvýstrednejší\nnajvýstrednejšia\nnajvýstrednejšie\nnajvýstrednejšieho\nnajvýstrednejšiemu\nnajvýstrednejších\nnajvýstrednejším\nnajvýstrednejšími\nnajvýstrednejšiu\nnajvýstrednejšom\nnajvýstrednejšou\nnajvystresovanejšej\nnajvystresovanejší\nnajvystresovanejšia\nnajvystresovanejšie\nnajvystresovanejšieho\nnajvystresovanejšiemu\nnajvystresovanejších\nnajvystresovanejším\nnajvystresovanejšími\nnajvystresovanejšiu\nnajvystresovanejšom\nnajvystresovanejšou\nnajvysvetliteľnejšej\nnajvysvetliteľnejší\nnajvysvetliteľnejšia\nnajvysvetliteľnejšie\nnajvysvetliteľnejšieho\nnajvysvetliteľnejšiemu\nnajvysvetliteľnejších\nnajvysvetliteľnejším\nnajvysvetliteľnejšími\nnajvysvetliteľnejšiu\nnajvysvetliteľnejšom\nnajvysvetliteľnejšou\nnajvýš\nnajvyťaženejšej\nnajvyťaženejší\nnajvyťaženejšia\nnajvyťaženejšie\nnajvyťaženejšieho\nnajvyťaženejšiemu\nnajvyťaženejších\nnajvyťaženejším\nnajvyťaženejšími\nnajvyťaženejšiu\nnajvyťaženejšom\nnajvyťaženejšou\nnajvytie\nnajvytrvalejšej\nnajvytrvalejší\nnajvytrvalejšia\nnajvytrvalejšie\nnajvytrvalejšieho\nnajvytrvalejšiemu\nnajvytrvalejších\nnajvytrvalejším\nnajvytrvalejšími\nNajvytrvalejšími\nnajvytrvalejšiu\nnajvytrvalejšom\nnajvytrvalejšou\nnajvytúženejšej\nnajvytúženejší\nnajvytúženejšia\nnajvytúženejšie\nnajvytúženejšieho\nnajvytúženejšiemu\nnajvytúženejších\nnajvytúženejším\nnajvytúženejšími\nnajvytúženejšiu\nnajvytúženejšom\nnajvytúženejšou\nnajvýtvarnejšej\nnajvýtvarnejší\nnajvýtvarnejšia\nnajvýtvarnejšie\nnajvýtvarnejšieho\nnajvýtvarnejšiemu\nnajvýtvarnejších\nnajvýtvarnejším\nnajvýtvarnejšími\nnajvýtvarnejšiu\nnajvýtvarnejšom\nnajvýtvarnejšou\nnajvyumelkovanejšej\nnajvyumelkovanejší\nnajvyumelkovanejšia\nnajvyumelkovanejšie\nnajvyumelkovanejšieho\nnajvyumelkovanejšiemu\nnajvyumelkovanejších\nnajvyumelkovanejším\nnajvyumelkovanejšími\nnajvyumelkovanejšiu\nnajvyumelkovanejšom\nnajvyumelkovanejšou\nNajvyužiteľnejšia\nnajvyváženejšej\nnajvyváženejší\nnajvyváženejšia\nnajvyváženejšie\nnajvyváženejšieho\nnajvyváženejšiemu\nnajvyváženejších\nnajvyváženejším\nnajvyváženejšími\nnajvyváženejšiu\nnajvyváženejšom\nnajvyváženejšou\nNajvyváženejšou\nnajvyvinutejšej\nnajvyvinutejší\nnajvyvinutejšia\nnajvyvinutejšie\nnajvyvinutejšieho\nnajvyvinutejšiemu\nnajvyvinutejších\nnajvyvinutejším\nnajvyvinutejšími\nnajvyvinutejšiu\nnajvyvinutejšom\nnajvyvinutejšou\nnajvývojaschopnejšej\nnajvývojaschopnejší\nnajvývojaschopnejšia\nnajvývojaschopnejšie\nnajvývojaschopnejšieho\nnajvývojaschopnejšiemu\nnajvývojaschopnejších\nnajvývojaschopnejším\nnajvývojaschopnejšími\nnajvývojaschopnejšiu\nnajvývojaschopnejšom\nnajvývojaschopnejšou\nnajvyvolenejších\nnajvýznačnejšej\nnajvýznačnejší\nnajvýznačnejšia\nnajvýznačnejšie\nnajvýznačnejšieho\nnajvýznačnejšiemu\nnajvýznačnejších\nnajvýznačnejším\nNajvýznačnejším\nnajvýznačnejšími\nnajvýznačnejšiu\nnajvýznačnejšom\nnajvýznačnejšou\nnajvýznamnej\nnajvyzretejšej\nnajvyzretejší\nnajvyzretejšia\nnajvyzretejšie\nnajvyzretejšieho\nnajvyzretejšiemu\nnajvyzretejších\nnajvyzretejším\nnajvyzretejšími\nnajvyzretejšiu\nnajvyzretejšom\nnajvyzretejšou\nnajvyzývavejšej\nnajvyzývavejší\nnajvyzývavejšia\nnajvyzývavejšie\nnajvyzývavejšieho\nnajvyzývavejšiemu\nnajvyzývavejších\nnajvyzývavejším\nnajvyzývavejšími\nnajvyzývavejšiu\nnajvyzývavejšom\nnajvyzývavejšou\nnajvýživnejšej\nnajvýživnejší\nnajvýživnejšia\nnajvýživnejšie\nnajvýživnejšieho\nnajvýživnejšiemu\nnajvýživnejších\nnajvýživnejším\nnajvýživnejšími\nnajvýživnejšiu\nnajvýživnejšom\nnajvýživnejšou\nnajvyžranejšej\nnajvzdelaneckejšej\nnajvzdelaneckejší\nnajvzdelaneckejšia\nnajvzdelaneckejšie\nnajvzdelaneckejšieho\nnajvzdelaneckejšiemu\nnajvzdelaneckejších\nnajvzdelaneckejším\nnajvzdelaneckejšími\nnajvzdelaneckejšiu\nnajvzdelaneckejšom\nnajvzdelaneckejšou\nnajvzdelanejšej\nnajvzdelanejší\nnajvzdelanejšia\nnajvzdelanejšie\nnajvzdelanejšieho\nnajvzdelanejšiemu\nnajvzdelanejších\nnajvzdelanejším\nnajvzdelanejšími\nnajvzdelanejšiu\nnajvzdelanejšom\nnajvzdelanejšou\nnajvzdornejšej\nnajvzdornejší\nnajvzdornejšia\nnajvzdornejšie\nnajvzdornejšieho\nnajvzdornejšiemu\nnajvzdornejších\nnajvzdornejším\nnajvzdornejšími\nnajvzdornejšiu\nnajvzdornejšom\nnajvzdornejšou\nnajvzdorovitejšej\nnajvzdorovitejší\nnajvzdorovitejšia\nnajvzdorovitejšie\nnajvzdorovitejšieho\nnajvzdorovitejšiemu\nnajvzdorovitejších\nnajvzdorovitejším\nnajvzdorovitejšími\nnajvzdorovitejšiu\nnajvzdorovitejšom\nnajvzdorovitejšou\nnajvzdušnejšej\nnajvzdušnejší\nnajvzdušnejšia\nnajvzdušnejšie\nnajvzdušnejšieho\nnajvzdušnejšiemu\nnajvzdušnejších\nnajvzdušnejším\nnajvzdušnejšími\nnajvzdušnejšiu\nnajvzdušnejšom\nnajvzdušnejšou\nnajvzhľadnejšej\nnajvzhľadnejší\nnajvzhľadnejšia\nnajvzhľadnejšie\nnajvzhľadnejšieho\nnajvzhľadnejšiemu\nnajvzhľadnejších\nnajvzhľadnejším\nnajvzhľadnejšími\nnajvzhľadnejšiu\nnajvzhľadnejšom\nnajvzhľadnejšou\nnajvzletnejšej\nnajvzletnejší\nnajvzletnejšia\nnajvzletnejšie\nnajvzletnejšieho\nnajvzletnejšiemu\nnajvzletnejších\nnajvzletnejším\nnajvzletnejšími\nnajvzletnejšiu\nnajvzletnejšom\nnajvzletnejšou\nnajvznešenejšej\nnajvznešenejší\nnajvznešenejšia\nnajvznešenejšie\nnajvznešenejšieho\nnajvznešenejšiemu\nnajvznešenejších\nnajvznešenejším\nnajvznešenejšími\nnajvznešenejšiu\nnajvznešenejšom\nnajvznešenejšou\nnajvzorkovanejšej\nnajvzorkovanejší\nnajvzorkovanejšia\nnajvzorkovanejšie\nnajvzorkovanejšieho\nnajvzorkovanejšiemu\nnajvzorkovanejších\nnajvzorkovanejším\nnajvzorkovanejšími\nnajvzorkovanejšiu\nnajvzorkovanejšom\nnajvzorkovanejšou\nnajvzornejšej\nnajvzornejší\nnajvzornejšia\nnajvzornejšie\nnajvzornejšieho\nnajvzornejšiemu\nnajvzornejších\nnajvzornejším\nnajvzornejšími\nNajvzornejšími\nnajvzornejšiu\nnajvzornejšom\nnajvzornejšou\nnajvzostupnejšej\nnajvzostupnejší\nnajvzostupnejšia\nnajvzostupnejšie\nnajvzostupnejšieho\nnajvzostupnejšiemu\nnajvzostupnejších\nnajvzostupnejším\nnajvzostupnejšími\nnajvzostupnejšiu\nnajvzostupnejšom\nnajvzostupnejšou\nnajvzpriamenejšej\nnajvzpriamenejší\nnajvzpriamenejšia\nnajvzpriamenejšie\nnajvzpriamenejšieho\nnajvzpriamenejšiemu\nnajvzpriamenejších\nnajvzpriamenejším\nnajvzpriamenejšími\nnajvzpriamenejšiu\nnajvzpriamenejšom\nnajvzpriamenejšou\nnajvzrušenejšej\nnajvzrušenejší\nnajvzrušenejšia\nnajvzrušenejšie\nnajvzrušenejšieho\nnajvzrušenejšiemu\nnajvzrušenejších\nnajvzrušenejším\nnajvzrušenejšími\nnajvzrušenejšiu\nnajvzrušenejšom\nnajvzrušenejšou\nnajvzrušujúcejšej\nnajvzrušujúcejší\nnajvzrušujúcejšia\nnajvzrušujúcejšie\nnajvzrušujúcejšieho\nnajvzrušujúcejšiemu\nnajvzrušujúcejších\nnajvzrušujúcejším\nnajvzrušujúcejšími\nnajvzrušujúcejšiu\nnajvzrušujúcejšom\nnajvzrušujúcejšou\nnajvžitejšej\nnajvžitejší\nnajvžitejšia\nnajvžitejšie\nnajvžitejšieho\nnajvžitejšiemu\nnajvžitejších\nnajvžitejším\nnajvžitejšími\nnajvžitejšiu\nnajvžitejšom\nnajvžitejšou\nnajxenofóbnejšie\nnajzábavnejšej\nnajzábavnejší\nnajzábavnejšia\nnajzábavnejšie\nnajzábavnejšieho\nnajzábavnejšiemu\nnajzábavnejších\nnajzábavnejším\nnajzábavnejšími\nnajzábavnejšiu\nnajzábavnejšom\nnajzábavnejšou\nnajzabehanejšej\nnajzabehanejší\nnajzabehanejšia\nnajzabehanejšie\nnajzabehanejšieho\nnajzabehanejšiemu\nnajzabehanejších\nnajzabehanejším\nnajzabehanejšími\nnajzabehanejšiu\nnajzabehanejšom\nnajzabehanejšou\nnajzábudlivejšej\nnajzábudlivejší\nnajzábudlivejšia\nnajzábudlivejšie\nnajzábudlivejšieho\nnajzábudlivejšiemu\nnajzábudlivejších\nnajzábudlivejším\nnajzábudlivejšími\nnajzábudlivejšiu\nnajzábudlivejšom\nnajzábudlivejšou\nnajzabudnutejšej\nnajzabudnutejší\nnajzabudnutejšia\nnajzabudnutejšie\nnajzabudnutejšieho\nnajzabudnutejšiemu\nnajzabudnutejších\nnajzabudnutejším\nnajzabudnutejšími\nnajzabudnutejšiu\nnajzabudnutejšom\nnajzabudnutejšou\nnajzačudovanejšej\nnajzačudovanejší\nnajzačudovanejšia\nnajzačudovanejšie\nnajzačudovanejšieho\nnajzačudovanejšiemu\nnajzačudovanejších\nnajzačudovanejším\nnajzačudovanejšími\nnajzačudovanejšiu\nnajzačudovanejšom\nnajzačudovanejšou\nnajzadebnenejšej\nnajzadebnenejší\nnajzadebnenejšia\nnajzadebnenejšie\nnajzadebnenejšieho\nnajzadebnenejšiemu\nnajzadebnenejších\nnajzadebnenejším\nnajzadebnenejšími\nnajzadebnenejšiu\nnajzadebnenejšom\nnajzadebnenejšou\nnajzáderčivejšej\nnajzáderčivejší\nnajzáderčivejšia\nnajzáderčivejšie\nnajzáderčivejšieho\nnajzáderčivejšiemu\nnajzáderčivejších\nnajzáderčivejším\nnajzáderčivejšími\nnajzáderčivejšiu\nnajzáderčivejšom\nnajzáderčivejšou\nnajzadlženejšej\nnajzadlženejší\nnajzadlženejšia\nnajzadlženejšie\nnajzadlženejšieho\nnajzadlženejšiemu\nnajzadlženejších\nnajzadlženejším\nnajzadlženejšími\nnajzadlženejšiu\nnajzadlženejšom\nnajzadlženejšou\nnajzadnejšej\nnajzadnejší\nnajzadnejšia\nnajzadnejšie\nnajzadnejšieho\nnajzadnejšiemu\nnajzadnejších\nnajzadnejším\nnajzadnejšími\nnajzadnejšiu\nnajzadnejšom\nnajzadnejšou\nnajzádrapčivejšej\nnajzádrapčivejší\nnajzádrapčivejšia\nnajzádrapčivejšie\nnajzádrapčivejšieho\nnajzádrapčivejšiemu\nnajzádrapčivejších\nnajzádrapčivejším\nnajzádrapčivejšími\nnajzádrapčivejšiu\nnajzádrapčivejšom\nnajzádrapčivejšou\nnajzadŕhavejšej\nnajzadŕhavejší\nnajzadŕhavejšia\nnajzadŕhavejšie\nnajzadŕhavejšieho\nnajzadŕhavejšiemu\nnajzadŕhavejších\nnajzadŕhavejším\nnajzadŕhavejšími\nnajzadŕhavejšiu\nnajzadŕhavejšom\nnajzadŕhavejšou\nnajzadubenejšej\nnajzadubenejší\nnajzadubenejšia\nnajzadubenejšie\nnajzadubenejšieho\nnajzadubenejšiemu\nnajzadubenejších\nnajzadubenejším\nnajzadubenejšími\nnajzadubenejšiu\nnajzadubenejšom\nnajzadubenejšou\nnajzádumčivejšej\nnajzádumčivejší\nnajzádumčivejšia\nnajzádumčivejšie\nnajzádumčivejšieho\nnajzádumčivejšiemu\nnajzádumčivejších\nnajzádumčivejším\nnajzádumčivejšími\nnajzádumčivejšiu\nnajzádumčivejšom\nnajzádumčivejšou\nnajzadúšavejšej\nnajzadúšavejší\nnajzadúšavejšia\nnajzadúšavejšie\nnajzadúšavejšieho\nnajzadúšavejšiemu\nnajzadúšavejších\nnajzadúšavejším\nnajzadúšavejšími\nnajzadúšavejšiu\nnajzadúšavejšom\nnajzadúšavejšou\nnajzáhadnejšej\nnajzáhadnejší\nnajzáhadnejšia\nnajzáhadnejšie\nnajzáhadnejšieho\nnajzáhadnejšiemu\nnajzáhadnejších\nnajzáhadnejším\nnajzáhadnejšími\nnajzáhadnejšiu\nnajzáhadnejšom\nnajzáhadnejšou\nnajzaháľačskejšej\nnajzaháľačskejší\nnajzaháľačskejšia\nnajzaháľačskejšie\nnajzaháľačskejšieho\nnajzaháľačskejšiemu\nnajzaháľačskejších\nnajzaháľačskejším\nnajzaháľačskejšími\nnajzaháľačskejšiu\nnajzaháľačskejšom\nnajzaháľačskejšou\nnajzáhaľčivejšej\nnajzáhaľčivejší\nnajzáhaľčivejšia\nnajzáhaľčivejšie\nnajzáhaľčivejšieho\nnajzáhaľčivejšiemu\nnajzáhaľčivejších\nnajzáhaľčivejším\nnajzáhaľčivejšími\nnajzáhaľčivejšiu\nnajzáhaľčivejšom\nnajzáhaľčivejšou\nnajzahanbujúcejšej\nnajzahanbujúcejší\nnajzahanbujúcejšia\nnajzahanbujúcejšie\nnajzahanbujúcejšieho\nnajzahanbujúcejšiemu\nnajzahanbujúcejších\nnajzahanbujúcejším\nnajzahanbujúcejšími\nnajzahanbujúcejšiu\nnajzahanbujúcejšom\nnajzahanbujúcejšou\nnajzahmlenejších\nnajzahnojenejšej\nnajzahnojenejší\nnajzahnojenejšia\nnajzahnojenejšie\nnajzahnojenejšieho\nnajzahnojenejšiemu\nnajzahnojenejších\nnajzahnojenejším\nnajzahnojenejšími\nnajzahnojenejšiu\nnajzahnojenejšom\nnajzahnojenejšou\nnajzahriaknutejšej\nnajzahriaknutejší\nnajzahriaknutejšia\nnajzahriaknutejšie\nnajzahriaknutejšieho\nnajzahriaknutejšiemu\nnajzahriaknutejších\nnajzahriaknutejším\nnajzahriaknutejšími\nnajzahriaknutejšiu\nnajzahriaknutejšom\nnajzahriaknutejšou\nnajzachmúrenejšej\nnajzachmúrenejší\nnajzachmúrenejšia\nnajzachmúrenejšie\nnajzachmúrenejšieho\nnajzachmúrenejšiemu\nnajzachmúrenejších\nnajzachmúrenejším\nnajzachmúrenejšími\nnajzachmúrenejšiu\nnajzachmúrenejšom\nnajzachmúrenejšou\nnajzachovalejšej\nnajzachovalejší\nnajzachovalejšia\nnajzachovalejšie\nnajzachovalejšieho\nnajzachovalejšiemu\nnajzachovalejších\nnajzachovalejším\nnajzachovalejšími\nnajzachovalejšiu\nnajzachovalejšom\nnajzachovalejšou\nnajzachovanejšej\nnajzachovanejší\nnajzachovanejšia\nnajzachovanejšie\nnajzachovanejšieho\nnajzachovanejšiemu\nnajzachovanejších\nnajzachovanejším\nnajzachovanejšími\nnajzachovanejšiu\nnajzachovanejšom\nnajzachovanejšou\nnajzainteresovanejšej\nnajzainteresovanejší\nnajzainteresovanejšia\nnajzainteresovanejšie\nnajzainteresovanejšieho\nnajzainteresovanejšiemu\nnajzainteresovanejších\nnajzainteresovanejším\nnajzainteresovanejšími\nnajzainteresovanejšiu\nnajzainteresovanejšom\nnajzainteresovanejšou\nnajzajakavejšej\nnajzajakavejší\nnajzajakavejšia\nnajzajakavejšie\nnajzajakavejšieho\nnajzajakavejšiemu\nnajzajakavejších\nnajzajakavejším\nnajzajakavejšími\nnajzajakavejšiu\nnajzajakavejšom\nnajzajakavejšou\nnajzakázanejšou\nnajzákernejšej\nnajzákernejší\nnajzákernejšia\nnajzákernejšie\nnajzákernejšieho\nnajzákernejšiemu\nnajzákernejších\nnajzákernejším\nnajzákernejšími\nnajzákernejšiu\nnajzákernejšom\nnajzákernejšou\nnajzákladnejšej\nnajzákladnejší\nnajzákladnejšia\nnajzákladnejšie\nnajzákladnejšieho\nnajzákladnejšiemu\nnajzákladnejších\nnajzákladnejším\nnajzákladnejšími\nnajzákladnejšiu\nnajzákladnejšom\nnajzákladnejšou\nNajzákladnejšou\nnajzakomplexovanejšej\nnajzakomplexovanejší\nnajzakomplexovanejšia\nnajzakomplexovanejšie\nnajzakomplexovanejšieho\nnajzakomplexovanejšiemu\nnajzakomplexovanejších\nnajzakomplexovanejším\nnajzakomplexovanejšími\nnajzakomplexovanejšiu\nnajzakomplexovanejšom\nnajzakomplexovanejšou\nnajzákonnejšej\nnajzákonnejší\nnajzákonnejšia\nnajzákonnejšie\nnajzákonnejšieho\nnajzákonnejšiemu\nnajzákonnejších\nnajzákonnejším\nnajzákonnejšími\nnajzákonnejšiu\nnajzákonnejšom\nnajzákonnejšou\nnajzakríknutejšej\nnajzakríknutejší\nnajzakríknutejšia\nnajzakríknutejšie\nnajzakríknutejšieho\nnajzakríknutejšiemu\nnajzakríknutejších\nnajzakríknutejším\nnajzakríknutejšími\nnajzakríknutejšiu\nnajzakríknutejšom\nnajzakríknutejšou\nnajzakuklenejšej\nnajzakuklenejší\nnajzakuklenejšia\nnajzakuklenejšie\nnajzakuklenejšieho\nnajzakuklenejšiemu\nnajzakuklenejších\nnajzakuklenejším\nnajzakuklenejšími\nnajzakuklenejšiu\nnajzakuklenejšom\nnajzakuklenejšou\nnajzálesáckejšej\nnajzálesáckejší\nnajzálesáckejšia\nnajzálesáckejšie\nnajzálesáckejšieho\nnajzálesáckejšiemu\nnajzálesáckejších\nnajzálesáckejším\nnajzálesáckejšími\nnajzálesáckejšiu\nnajzálesáckejšom\nnajzálesáckejšou\nnajzáletnejšej\nnajzáletnejší\nnajzáletnejšia\nnajzáletnejšie\nnajzáletnejšieho\nnajzáletnejšiemu\nnajzáletnejších\nnajzáletnejším\nnajzáletnejšími\nnajzáletnejšiu\nnajzáletnejšom\nnajzáletnejšou\nnajzaliečavejšej\nnajzaliečavejší\nnajzaliečavejšia\nnajzaliečavejšie\nnajzaliečavejšieho\nnajzaliečavejšiemu\nnajzaliečavejších\nnajzaliečavejším\nnajzaliečavejšími\nnajzaliečavejšiu\nnajzaliečavejšom\nnajzaliečavejšou\nnajzaľúbenejšej\nnajzaľúbenejší\nnajzaľúbenejšia\nnajzaľúbenejšie\nnajzaľúbenejšieho\nnajzaľúbenejšiemu\nnajzaľúbenejších\nnajzaľúbenejším\nnajzaľúbenejšími\nnajzaľúbenejšiu\nnajzaľúbenejšom\nnajzaľúbenejšou\nnajzamatovejšej\nnajzamatovejší\nnajzamatovejšia\nnajzamatovejšie\nnajzamatovejšieho\nnajzamatovejšiemu\nnajzamatovejších\nnajzamatovejším\nnajzamatovejšími\nnajzamatovejšiu\nnajzamatovejšom\nnajzamatovejšou\nnajzamestnanejšej\nnajzamestnanejší\nnajzamestnanejšia\nnajzamestnanejšie\nnajzamestnanejšieho\nnajzamestnanejšiemu\nnajzamestnanejších\nnajzamestnanejším\nnajzamestnanejšími\nnajzamestnanejšiu\nnajzamestnanejšom\nnajzamestnanejšou\nnajzamietavejšej\nnajzamietavejší\nnajzamietavejšia\nnajzamietavejšie\nnajzamietavejšieho\nnajzamietavejšiemu\nnajzamietavejších\nnajzamietavejším\nnajzamietavejšími\nnajzamietavejšiu\nnajzamietavejšom\nnajzamietavejšou\nnajzamilovanejšej\nnajzamilovanejší\nnajzamilovanejšia\nnajzamilovanejšie\nnajzamilovanejšieho\nnajzamilovanejšiemu\nnajzamilovanejších\nnajzamilovanejším\nnajzamilovanejšími\nnajzamilovanejšiu\nnajzamilovanejšom\nnajzamilovanejšou\nnajzamĺknutejšej\nnajzamĺknutejší\nnajzamĺknutejšia\nnajzamĺknutejšie\nnajzamĺknutejšieho\nnajzamĺknutejšiemu\nnajzamĺknutejších\nnajzamĺknutejším\nnajzamĺknutejšími\nnajzamĺknutejšiu\nnajzamĺknutejšom\nnajzamĺknutejšou\nnajzamokrenejšej\nnajzamokrenejší\nnajzamokrenejšia\nnajzamokrenejšie\nnajzamokrenejšieho\nnajzamokrenejšiemu\nnajzamokrenejších\nnajzamokrenejším\nnajzamokrenejšími\nnajzamokrenejšiu\nnajzamokrenejšom\nnajzamokrenejšou\nnajzamorenejšej\nnajzamorenejších\nnajzamorenejším\nnajzamosúrenejšej\nnajzamosúrenejší\nnajzamosúrenejšia\nnajzamosúrenejšie\nnajzamosúrenejšieho\nnajzamosúrenejšiemu\nnajzamosúrenejších\nnajzamosúrenejším\nnajzamosúrenejšími\nnajzamosúrenejšiu\nnajzamosúrenejšom\nnajzamosúrenejšou\nnajzámožnejšej\nnajzámožnejší\nnajzámožnejšia\nnajzámožnejšie\nnajzámožnejšieho\nnajzámožnejšiemu\nnajzámožnejších\nnajzámožnejším\nnajzámožnejšími\nnajzámožnejšiu\nnajzámožnejšom\nnajzámožnejšou\nnajzamračenejšej\nnajzamračenejší\nnajzamračenejšia\nnajzamračenejšie\nnajzamračenejšieho\nnajzamračenejšiemu\nnajzamračenejších\nnajzamračenejším\nnajzamračenejšími\nnajzamračenejšiu\nnajzamračenejšom\nnajzamračenejšou\nnajzamyslenejšej\nnajzamyslenejší\nnajzamyslenejšia\nnajzamyslenejšie\nnajzamyslenejšieho\nnajzamyslenejšiemu\nnajzamyslenejších\nnajzamyslenejším\nnajzamyslenejšími\nnajzamyslenejšiu\nnajzamyslenejšom\nnajzamyslenejšou\nnajzanedbanejšej\nnajzanedbanejší\nnajzanedbanejšia\nnajzanedbanejšie\nnajzanedbanejšieho\nnajzanedbanejšiemu\nnajzanedbanejších\nnajzanedbanejším\nnajzanedbanejšími\nnajzanedbanejšiu\nnajzanedbanejšom\nnajzanedbanejšou\nnajzanedbateľnejšej\nnajzanedbateľnejší\nnajzanedbateľnejšia\nnajzanedbateľnejšie\nnajzanedbateľnejšieho\nnajzanedbateľnejšiemu\nnajzanedbateľnejších\nnajzanedbateľnejším\nnajzanedbateľnejšími\nnajzanedbateľnejšiu\nnajzanedbateľnejšom\nnajzanedbateľnejšou\nnajzaneprázdnenejšej\nnajzaneprázdnenejší\nnajzaneprázdnenejšia\nnajzaneprázdnenejšie\nnajzaneprázdnenejšieho\nnajzaneprázdnenejšiemu\nnajzaneprázdnenejších\nnajzaneprázdnenejším\nnajzaneprázdnenejšími\nnajzaneprázdnenejšiu\nnajzaneprázdnenejšom\nnajzaneprázdnenejšou\nnajzanietenejšej\nnajzanietenejší\nnajzanietenejšia\nnajzanietenejšie\nnajzanietenejšieho\nnajzanietenejšiemu\nnajzanietenejších\nnajzanietenejším\nnajzanietenejšími\nnajzanietenejšiu\nnajzanietenejšom\nnajzanietenejšou\nnajzanovitejšej\nnajzanovitejší\nnajzanovitejšia\nnajzanovitejšie\nnajzanovitejšieho\nnajzanovitejšiemu\nnajzanovitejších\nnajzanovitejším\nnajzanovitejšími\nnajzanovitejšiu\nnajzanovitejšom\nnajzanovitejšou\nnajzánovnejšej\nnajzánovnejší\nnajzánovnejšia\nnajzánovnejšie\nnajzánovnejšieho\nnajzánovnejšiemu\nnajzánovnejších\nnajzánovnejším\nnajzánovnejšími\nnajzánovnejšiu\nnajzánovnejšom\nnajzánovnejšou\nnajzaobalenejšej\nnajzaobalenejší\nnajzaobalenejšia\nnajzaobalenejšie\nnajzaobalenejšieho\nnajzaobalenejšiemu\nnajzaobalenejších\nnajzaobalenejším\nnajzaobalenejšími\nnajzaobalenejšiu\nnajzaobalenejšom\nnajzaobalenejšou\nnajzaoblenejšej\nnajzaoblenejší\nnajzaoblenejšia\nnajzaoblenejšie\nnajzaoblenejšieho\nnajzaoblenejšiemu\nnajzaoblenejších\nnajzaoblenejším\nnajzaoblenejšími\nnajzaoblenejšiu\nnajzaoblenejšom\nnajzaoblenejšou\nnajzaostalejšej\nnajzaostalejší\nnajzaostalejšia\nnajzaostalejšie\nnajzaostalejšieho\nnajzaostalejšiemu\nnajzaostalejších\nnajzaostalejším\nnajzaostalejšími\nnajzaostalejšiu\nnajzaostalejšom\nnajzaostalejšou\nnajzapadlejšej\nnajzapadlejších\nnajzápadnejšej\nnajzápadnejší\nnajzápadnejšia\nnajzápadnejšie\nnajzápadnejšieho\nnajzápadnejšiemu\nnajzápadnejších\nnajzápadnejším\nnajzápadnejšími\nnajzápadnejšiu\nnajzápadnejšom\nnajzápadnejšou\nnajzápadniarskejšej\nnajzápadniarskejší\nnajzápadniarskejšia\nnajzápadniarskejšie\nnajzápadniarskejšieho\nnajzápadniarskejšiemu\nnajzápadniarskejších\nnajzápadniarskejším\nnajzápadniarskejšími\nnajzápadniarskejšiu\nnajzápadniarskejšom\nnajzápadniarskejšou\nnajzapadnutejšej\nnajzapadnutejší\nnajzapadnutejšia\nnajzapadnutejšie\nnajzapadnutejšieho\nnajzapadnutejšiemu\nnajzapadnutejších\nnajzapadnutejším\nnajzapadnutejšími\nnajzapadnutejšiu\nnajzapadnutejšom\nnajzapadnutejšou\nNajzapálenejšími\nnajzápalistejšej\nnajzápalistejší\nnajzápalistejšia\nnajzápalistejšie\nnajzápalistejšieho\nnajzápalistejšiemu\nnajzápalistejších\nnajzápalistejším\nnajzápalistejšími\nnajzápalistejšiu\nnajzápalistejšom\nnajzápalistejšou\nnajzápalnejšej\nnajzápalnejší\nnajzápalnejšia\nnajzápalnejšie\nnajzápalnejšieho\nnajzápalnejšiemu\nnajzápalnejších\nnajzápalnejším\nnajzápalnejšími\nnajzápalnejšiu\nnajzápalnejšom\nnajzápalnejšou\nnajzapamätateľnejšej\nnajzapamätateľnejší\nnajzapamätateľnejšia\nnajzapamätateľnejšie\nnajzapamätateľnejšieho\nnajzapamätateľnejšiemu\nnajzapamätateľnejších\nnajzapamätateľnejším\nnajzapamätateľnejšími\nnajzapamätateľnejšiu\nnajzapamätateľnejšom\nnajzapamätateľnejšou\nnajzápornejšej\nnajzápornejší\nnajzápornejšia\nnajzápornejšie\nnajzápornejšieho\nnajzápornejšiemu\nnajzápornejších\nnajzápornejším\nnajzápornejšími\nnajzápornejšiu\nnajzápornejšom\nnajzápornejšou\nnajzaprisahanejšej\nnajzaprisahanejší\nnajzaprisahanejšia\nnajzaprisahanejšie\nnajzaprisahanejšieho\nnajzaprisahanejšiemu\nnajzaprisahanejších\nnajzaprisahanejším\nnajzaprisahanejšími\nnajzaprisahanejšiu\nnajzaprisahanejšom\nnajzaprisahanejšou\nnajzarazenejšej\nnajzarazenejší\nnajzarazenejšia\nnajzarazenejšie\nnajzarazenejšieho\nnajzarazenejšiemu\nnajzarazenejších\nnajzarazenejším\nnajzarazenejšími\nnajzarazenejšiu\nnajzarazenejšom\nnajzarazenejšou\nnajzarmútenejšej\nnajzarmútenejší\nnajzarmútenejšia\nnajzarmútenejšie\nnajzarmútenejšieho\nnajzarmútenejšiemu\nnajzarmútenejších\nnajzarmútenejším\nnajzarmútenejšími\nnajzarmútenejšiu\nnajzarmútenejšom\nnajzarmútenejšou\nnajzaručenejším\nnajzarytejšej\nnajzarytejší\nnajzarytejšia\nnajzarytejšie\nnajzarytejšieho\nnajzarytejšiemu\nnajzarytejších\nnajzarytejším\nnajzarytejšími\nnajzarytejšiu\nnajzarytejšom\nnajzarytejšou\nnajzásaditejšej\nnajzásaditejší\nnajzásaditejšia\nnajzásaditejšie\nnajzásaditejšieho\nnajzásaditejšiemu\nnajzásaditejších\nnajzásaditejším\nnajzásaditejšími\nnajzásaditejšiu\nnajzásaditejšom\nnajzásaditejšou\nnajzásadnejšej\nnajzásadnejší\nnajzásadnejšia\nnajzásadnejšie\nnajzásadnejšieho\nnajzásadnejšiemu\nnajzásadnejších\nnajzásadnejším\nnajzásadnejšími\nnajzásadnejšiu\nnajzásadnejšom\nnajzásadnejšou\nnajzásadovejšie\nnajzaslúžilejšej\nnajzaslúžilejší\nnajzaslúžilejšia\nnajzaslúžilejšie\nnajzaslúžilejšieho\nnajzaslúžilejšiemu\nnajzaslúžilejších\nnajzaslúžilejším\nnajzaslúžilejšími\nnajzaslúžilejšiu\nnajzaslúžilejšom\nnajzaslúžilejšou\nnajzáslužnejšej\nnajzáslužnejší\nnajzáslužnejšia\nnajzáslužnejšieho\nnajzáslužnejšiemu\nnajzáslužnejších\nnajzáslužnejším\nnajzáslužnejšími\nnajzáslužnejšiu\nnajzáslužnejšom\nnajzáslužnejšou\nnajzasnenejšej\nnajzasnenejší\nnajzasnenejšia\nnajzasnenejšie\nnajzasnenejšieho\nnajzasnenejšiemu\nnajzasnenejších\nnajzasnenejším\nnajzasnenejšími\nnajzasnenejšiu\nnajzasnenejšom\nnajzasnenejšou\nnajzasnívanejšej\nnajzasnívanejší\nnajzasnívanejšia\nnajzasnívanejšie\nnajzasnívanejšieho\nnajzasnívanejšiemu\nnajzasnívanejších\nnajzasnívanejším\nnajzasnívanejšími\nnajzasnívanejšiu\nnajzasnívanejšom\nnajzasnívanejšou\nnajzastaralejšie\nnajzastaralejších\nnajzastaralejšou\nnajzastaranejšej\nnajzastaranejší\nnajzastaranejšia\nnajzastaranejšie\nnajzastaranejšieho\nnajzastaranejšiemu\nnajzastaranejších\nnajzastaranejším\nnajzastaranejšími\nnajzastaranejšiu\nnajzastaranejšom\nnajzastaranejšou\nnajzastrašenejšej\nnajzastrašenejší\nnajzastrašenejšia\nnajzastrašenejšie\nnajzastrašenejšieho\nnajzastrašenejšiemu\nnajzastrašenejších\nnajzastrašenejším\nnajzastrašenejšími\nnajzastrašenejšiu\nnajzastrašenejšom\nnajzastrašenejšou\nnajzastrčenejšej\nnajzastrčenejší\nnajzastrčenejšia\nnajzastrčenejšie\nnajzastrčenejšieho\nnajzastrčenejšiemu\nnajzastrčenejších\nnajzastrčenejším\nnajzastrčenejšími\nnajzastrčenejšiu\nnajzastrčenejšom\nnajzastrčenejšou\nnajzasvätenejší\nnajzasvätenejšie\nnajzasvätenejších\nnajzašlejšej\nnajzašlejší\nnajzašlejšia\nnajzašlejšie\nnajzašlejšieho\nnajzašlejšiemu\nnajzašlejších\nnajzašlejším\nnajzašlejšími\nnajzašlejšiu\nnajzašlejšom\nnajzašlejšou\nnajzaťatejšej\nnajzaťatejší\nnajzaťatejšia\nnajzaťatejšie\nnajzaťatejšieho\nnajzaťatejšiemu\nnajzaťatejších\nnajzaťatejším\nnajzaťatejšími\nnajzaťatejšiu\nnajzaťatejšom\nnajzaťatejšou\nnajzatrpknutejšej\nnajzatrpknutejší\nnajzatrpknutejšia\nnajzatrpknutejšie\nnajzatrpknutejšieho\nnajzatrpknutejšiemu\nnajzatrpknutejších\nnajzatrpknutejším\nnajzatrpknutejšími\nnajzatrpknutejšiu\nnajzatrpknutejšom\nnajzatrpknutejšou\nnajzaujatejšej\nnajzaujatejší\nnajzaujatejšia\nnajzaujatejšie\nnajzaujatejšieho\nnajzaujatejšiemu\nnajzaujatejších\nnajzaujatejším\nnajzaujatejšími\nnajzaujatejšiu\nnajzaujatejšom\nnajzaujatejšou\nnajzaužívanejšie\nnajzavalitejšej\nnajzavalitejší\nnajzavalitejšia\nnajzavalitejšie\nnajzavalitejšieho\nnajzavalitejšiemu\nnajzavalitejších\nnajzavalitejším\nnajzavalitejšími\nnajzavalitejšiu\nnajzavalitejšom\nnajzavalitejšou\nnajzáväznejšej\nnajzáväznejší\nnajzáväznejšia\nnajzáväznejšie\nnajzáväznejšieho\nnajzáväznejšiemu\nnajzáväznejších\nnajzáväznejším\nnajzáväznejšími\nnajzáväznejšiu\nnajzáväznejšom\nnajzáväznejšou\nnajzávideniahodnejšej\nnajzávideniahodnejší\nnajzávideniahodnejšia\nnajzávideniahodnejšie\nnajzávideniahodnejšieho\nnajzávideniahodnejšiemu\nnajzávideniahodnejších\nnajzávideniahodnejším\nnajzávideniahodnejšími\nnajzávideniahodnejšiu\nnajzávideniahodnejšom\nnajzávideniahodnejšou\nnajzávislejšej\nnajzávislejší\nnajzávislejšia\nnajzávislejšie\nnajzávislejšieho\nnajzávislejšiemu\nnajzávislejších\nnajzávislejším\nnajzávislejšími\nnajzávislejšiu\nnajzávislejšom\nnajzávislejšou\nnajzávistlivejšej\nnajzávistlivejší\nnajzávistlivejšia\nnajzávistlivejšie\nnajzávistlivejšieho\nnajzávistlivejšiemu\nnajzávistlivejších\nnajzávistlivejším\nnajzávistlivejšími\nnajzávistlivejšiu\nnajzávistlivejšom\nnajzávistlivejšou\nnajzávratnejšej\nnajzávratnejší\nnajzávratnejšia\nnajzávratnejšie\nnajzávratnejšieho\nnajzávratnejšiemu\nnajzávratnejších\nnajzávratnejším\nnajzávratnejšími\nnajzávratnejšiu\nnajzávratnejšom\nnajzávratnejšou\nnajzavrhovanejšou\nnajzavšivavenejšej\nnajzavšivavenejší\nnajzavšivavenejšia\nnajzavšivavenejšie\nnajzavšivavenejšieho\nnajzavšivavenejšiemu\nnajzavšivavenejších\nnajzavšivavenejším\nnajzavšivavenejšími\nnajzavšivavenejšiu\nnajzavšivavenejšom\nnajzavšivavenejšou\nnajzázračnejšej\nnajzázračnejší\nnajzázračnejšia\nnajzázračnejšie\nnajzázračnejšieho\nnajzázračnejšiemu\nnajzázračnejších\nnajzázračnejším\nnajzázračnejšími\nnajzázračnejšiu\nnajzázračnejšom\nnajzázračnejšou\nnajzažiadanejšej\nnajzažiadanejší\nnajzažiadanejšia\nnajzažiadanejšie\nnajzažiadanejšieho\nnajzažiadanejšiemu\nnajzažiadanejších\nnajzažiadanejším\nnajzažiadanejšími\nnajzažiadanejšiu\nnajzažiadanejšom\nnajzažiadanejšou\nnajzažitejšej\nnajzažitejší\nnajzažitejšia\nnajzažitejšie\nnajzažitejšieho\nnajzažitejšiemu\nnajzažitejších\nnajzažitejším\nnajzažitejšími\nnajzažitejšiu\nnajzažitejšom\nnajzažitejšou\nnajzážitkovejšie\nnajzáživnejšej\nnajzáživnejší\nnajzáživnejšia\nnajzáživnejšie\nnajzáživnejšieho\nnajzáživnejšiemu\nnajzáživnejších\nnajzáživnejším\nnajzáživnejšími\nnajzáživnejšiu\nnajzáživnejšom\nnajzáživnejšou\nnajzbabelejšej\nnajzbabelejší\nnajzbabelejšia\nnajzbabelejšie\nnajzbabelejšieho\nnajzbabelejšiemu\nnajzbabelejších\nnajzbabelejším\nnajzbabelejšími\nnajzbabelejšiu\nnajzbabelejšom\nnajzbabelejšou\nnajzbehlejšej\nnajzbehlejší\nnajzbehlejšia\nnajzbehlejšie\nnajzbehlejšieho\nnajzbehlejšiemu\nnajzbehlejších\nnajzbehlejším\nnajzbehlejšími\nnajzbehlejšiu\nnajzbehlejšom\nnajzbehlejšou\nnajzbesilejšou\nnajzbiehavejšej\nnajzbiehavejší\nnajzbiehavejšia\nnajzbiehavejšie\nnajzbiehavejšieho\nnajzbiehavejšiemu\nnajzbiehavejších\nnajzbiehavejším\nnajzbiehavejšími\nnajzbiehavejšiu\nnajzbiehavejšom\nnajzbiehavejšou\nnajzbohatlíckejšej\nnajzbohatlíckejší\nnajzbohatlíckejšia\nnajzbohatlíckejšie\nnajzbohatlíckejšieho\nnajzbohatlíckejšiemu\nnajzbohatlíckejších\nnajzbohatlíckejším\nnajzbohatlíckejšími\nnajzbohatlíckejšiu\nnajzbohatlíckejšom\nnajzbohatlíckejšou\nnajzbožnejšej\nnajzbožnejší\nnajzbožnejšia\nnajzbožnejšie\nnajzbožnejšieho\nnajzbožnejšiemu\nnajzbožnejších\nnajzbožnejším\nnajzbožnejšími\nnajzbožnejšiu\nnajzbožnejšom\nnajzbožnejšou\nnajzbytočnejšej\nnajzbytočnejší\nnajzbytočnejšia\nnajzbytočnejšie\nnajzbytočnejšieho\nnajzbytočnejšiemu\nnajzbytočnejších\nnajzbytočnejším\nnajzbytočnejšími\nnajzbytočnejšiu\nnajzbytočnejšom\nnajzbytočnejšou\nnajzdanlivejšej\nnajzdanlivejší\nnajzdanlivejšia\nnajzdanlivejšie\nnajzdanlivejšieho\nnajzdanlivejšiemu\nnajzdanlivejších\nnajzdanlivejším\nnajzdanlivejšími\nnajzdanlivejšiu\nnajzdanlivejšom\nnajzdanlivejšou\nnajzdarnejšej\nnajzdarnejší\nnajzdarnejšia\nnajzdarnejšie\nnajzdarnejšieho\nnajzdarnejšiemu\nnajzdarnejších\nnajzdarnejším\nnajzdarnejšími\nnajzdarnejšiu\nnajzdarnejšom\nnajzdarnejšou\nnajzdatnejšej\nnajzdatnejší\nnajzdatnejšia\nnajzdatnejšie\nnajzdatnejšieho\nnajzdatnejšiemu\nnajzdatnejších\nnajzdatnejším\nnajzdatnejšími\nnajzdatnejšiu\nnajzdatnejšom\nnajzdatnejšou\nnajzdesenejšej\nnajzdesenejší\nnajzdesenejšia\nnajzdesenejšie\nnajzdesenejšieho\nnajzdesenejšiemu\nnajzdesenejších\nnajzdesenejším\nnajzdesenejšími\nnajzdesenejšiu\nnajzdesenejšom\nnajzdesenejšou\nnajzdĺhavejšej\nnajzdĺhavejší\nnajzdĺhavejšia\nnajzdĺhavejšie\nnajzdĺhavejšieho\nnajzdĺhavejšiemu\nnajzdĺhavejších\nnajzdĺhavejším\nnajzdĺhavejšími\nnajzdĺhavejšiu\nnajzdĺhavejšom\nnajzdĺhavejšou\nnajzdravšie\nnajzdrvujúcejšej\nnajzdrvujúcejší\nnajzdrvujúcejšia\nnajzdrvujúcejšie\nnajzdrvujúcejšieho\nnajzdrvujúcejšiemu\nnajzdrvujúcejších\nnajzdrvujúcejším\nnajzdrvujúcejšími\nnajzdrvujúcejšiu\nnajzdrvujúcejšom\nnajzdrvujúcejšou\nnajzdržanlivejšej\nnajzdržanlivejší\nNajzdržanlivejší\nnajzdržanlivejšia\nnajzdržanlivejšie\nNajzdržanlivejšie\nnajzdržanlivejšieho\nnajzdržanlivejšiemu\nnajzdržanlivejších\nnajzdržanlivejším\nnajzdržanlivejšími\nnajzdržanlivejšiu\nnajzdržanlivejšom\nnajzdržanlivejšou\nnajzdvihnutí\nnajzdvorilejšej\nnajzdvorilejší\nnajzdvorilejšia\nnajzdvorilejšie\nnajzdvorilejšieho\nnajzdvorilejšiemu\nnajzdvorilejších\nnajzdvorilejším\nnajzdvorilejšími\nnajzdvorilejšiu\nnajzdvorilejšom\nnajzdvorilejšou\nnajzelenejšieho\nnajzelenkavejšie\nnajzelenšej\nnajzelenší\nnajzelenšia\nnajzelenšie\nnajzelenšieho\nnajzelenšiemu\nnajzelenších\nnajzelenším\nnajzelenšími\nnajzelenšiu\nnajzelenšom\nnajzelenšou\nnajzemitejšej\nnajzemitejší\nnajzemitejšia\nnajzemitejšie\nnajzemitejšieho\nnajzemitejšiemu\nnajzemitejších\nnajzemitejším\nnajzemitejšími\nnajzemitejšiu\nnajzemitejšom\nnajzemitejšou\nnajzhnusenejšej\nnajzhnusenejší\nnajzhnusenejšia\nnajzhnusenejšie\nnajzhnusenejšieho\nnajzhnusenejšiemu\nnajzhnusenejších\nnajzhnusenejším\nnajzhnusenejšími\nnajzhnusenejšiu\nnajzhnusenejšom\nnajzhnusenejšou\nnajzhodnejšie\nnajzhovädilejšej\nnajzhovädilejší\nnajzhovädilejšia\nnajzhovädilejšie\nnajzhovädilejšieho\nnajzhovädilejšiemu\nnajzhovädilejších\nnajzhovädilejším\nnajzhovädilejšími\nnajzhovädilejšiu\nnajzhovädilejšom\nnajzhovädilejšou\nnajzhovievavejšej\nnajzhovievavejší\nnajzhovievavejšia\nnajzhovievavejšie\nnajzhovievavejšieho\nnajzhovievavejšiemu\nnajzhovievavejších\nnajzhovievavejším\nnajzhovievavejšími\nnajzhovievavejšiu\nnajzhovievavejšom\nnajzhovievavejšou\nnajzhovorčivejšej\nnajzhovorčivejší\nnajzhovorčivejšia\nnajzhovorčivejšie\nnajzhovorčivejšieho\nnajzhovorčivejšiemu\nnajzhovorčivejších\nnajzhovorčivejším\nnajzhovorčivejšími\nnajzhovorčivejšiu\nnajzhovorčivejšom\nnajzhovorčivejšou\nnajzhrbenejšej\nnajzhrbenejší\nnajzhrbenejšia\nnajzhrbenejšie\nnajzhrbenejšieho\nnajzhrbenejšiemu\nnajzhrbenejších\nnajzhrbenejším\nnajzhrbenejšími\nnajzhrbenejšiu\nnajzhrbenejšom\nnajzhrbenejšou\nnajzhrozenejšej\nnajzhrozenejší\nnajzhrozenejšia\nnajzhrozenejšie\nnajzhrozenejšieho\nnajzhrozenejšiemu\nnajzhrozenejších\nnajzhrozenejším\nnajzhrozenejšími\nnajzhrozenejšiu\nnajzhrozenejšom\nnajzhrozenejšou\nnajzhubnejšej\nnajzhubnejší\nnajzhubnejšia\nnajzhubnejšie\nnajzhubnejšieho\nnajzhubnejšiemu\nnajzhubnejších\nnajzhubnejším\nnajzhubnejšími\nnajzhubnejšiu\nnajzhubnejšom\nnajzhubnejšou\nnajzhustenejšej\nnajzhustenejší\nnajzhustenejšia\nnajzhustenejšie\nnajzhustenejšieho\nnajzhustenejšiemu\nnajzhustenejších\nnajzhustenejším\nnajzhustenejšími\nnajzhustenejšiu\nnajzhustenejšom\nnajzhustenejšou\nnajzhýralejšej\nnajzhýralejší\nnajzhýralejšia\nnajzhýralejšie\nnajzhýralejšieho\nnajzhýralejšiemu\nnajzhýralejších\nnajzhýralejším\nnajzhýralejšími\nnajzhýralejšiu\nnajzhýralejšom\nnajzhýralejšou\nnajzimnejšej\nnajzimnejší\nnajzimnejšia\nnajzimnejšie\nnajzimnejšieho\nnajzimnejšiemu\nnajzimnejších\nnajzimnejším\nnajzimnejšími\nnajzimnejšiu\nnajzimnejšom\nnajzimnejšou\nnajzimomravejšej\nnajzimomravejší\nnajzimomravejšia\nnajzimomravejšie\nnajzimomravejšieho\nnajzimomravejšiemu\nnajzimomravejších\nnajzimomravejším\nnajzimomravejšími\nnajzimomravejšiu\nnajzimomravejšom\nnajzimomravejšou\nnajziskovejšej\nnajziskovejší\nnajziskovejšia\nnajziskovejšie\nnajziskovejšieho\nnajziskovejšiemu\nnajziskovejších\nnajziskovejším\nnajziskovejšími\nnajziskovejšiu\nnajziskovejšom\nnajziskovejšou\nnajziskuchtivejšej\nnajziskuchtivejší\nnajziskuchtivejšia\nnajziskuchtivejšie\nnajziskuchtivejšieho\nnajziskuchtivejšiemu\nnajziskuchtivejších\nnajziskuchtivejším\nnajziskuchtivejšími\nnajziskuchtivejšiu\nnajziskuchtivejšom\nnajziskuchtivejšou\nnajzistiteľnejšej\nnajzistiteľnejší\nnajzistiteľnejšia\nnajzistiteľnejšie\nnajzistiteľnejšieho\nnajzistiteľnejšiemu\nnajzistiteľnejších\nnajzistiteľnejším\nnajzistiteľnejšími\nnajzistiteľnejšiu\nnajzistiteľnejšom\nnajzistiteľnejšou\nnajzištnejšej\nnajzištnejší\nnajzištnejšia\nnajzištnejšie\nnajzištnejšieho\nnajzištnejšiemu\nnajzištnejších\nnajzištnejším\nnajzištnejšími\nnajzištnejšiu\nnajzištnejšom\nnajzištnejšou\nnajzjašenejšie\nnajzjavnejšie\nnajzjazdnejšej\nnajzjazdnejší\nnajzjazdnejšia\nnajzjazdnejšie\nnajzjazdnejšieho\nnajzjazdnejšiemu\nnajzjazdnejších\nnajzjazdnejším\nnajzjazdnejšími\nnajzjazdnejšiu\nnajzjazdnejšom\nnajzjazdnejšou\nnajzjednodušenejšie\nnajzjednotenejšej\nnajzjednotenejší\nnajzjednotenejšia\nnajzjednotenejšie\nnajzjednotenejšieho\nnajzjednotenejšiemu\nnajzjednotenejších\nnajzjednotenejším\nnajzjednotenejšími\nnajzjednotenejšiu\nnajzjednotenejšom\nnajzjednotenejšou\nnajzjemnenejšej\nnajzjemnenejší\nnajzjemnenejšia\nnajzjemnenejšie\nnajzjemnenejšieho\nnajzjemnenejšiemu\nnajzjemnenejších\nnajzjemnenejším\nnajzjemnenejšími\nnajzjemnenejšiu\nnajzjemnenejšom\nnajzjemnenejšou\nnajzladenejšej\nnajzladenejší\nnajzladenejšia\nnajzladenejšie\nnajzladenejšieho\nnajzladenejšiemu\nnajzladenejších\nnajzladenejším\nnajzladenejšími\nnajzladenejšiu\nnajzladenejšom\nnajzladenejšou\nnajzľahčujúcejšej\nnajzľahčujúcejší\nnajzľahčujúcejšia\nnajzľahčujúcejšie\nnajzľahčujúcejšieho\nnajzľahčujúcejšiemu\nnajzľahčujúcejších\nnajzľahčujúcejším\nnajzľahčujúcejšími\nnajzľahčujúcejšiu\nnajzľahčujúcejšom\nnajzľahčujúcejšou\nnajzľaknutejšej\nnajzľaknutejší\nnajzľaknutejšia\nnajzľaknutejšie\nnajzľaknutejšieho\nnajzľaknutejšiemu\nnajzľaknutejších\nnajzľaknutejším\nnajzľaknutejšími\nnajzľaknutejšiu\nnajzľaknutejšom\nnajzľaknutejšou\nnajzlatistejšej\nnajzlatistejší\nnajzlatistejšia\nnajzlatistejšie\nnajzlatistejšieho\nnajzlatistejšiemu\nnajzlatistejších\nnajzlatistejším\nnajzlatistejšími\nnajzlatistejšiu\nnajzlatistejšom\nnajzlatistejšou\nnajzlatokopeckejšej\nnajzlatokopeckejší\nnajzlatokopeckejšia\nnajzlatokopeckejšie\nnajzlatokopeckejšieho\nnajzlatokopeckejšiemu\nnajzlatokopeckejších\nnajzlatokopeckejším\nnajzlatokopeckejšími\nnajzlatokopeckejšiu\nnajzlatokopeckejšom\nnajzlatokopeckejšou\nnajzlatonosnejšej\nnajzlatonosnejší\nnajzlatonosnejšia\nnajzlatonosnejšie\nnajzlatonosnejšieho\nnajzlatonosnejšiemu\nnajzlatonosnejších\nnajzlatonosnejším\nnajzlatonosnejšími\nnajzlatonosnejšiu\nnajzlatonosnejšom\nnajzlatonosnejšou\nnajzlatšej\nnajzlatší\nnajzlatšia\nnajzlatšie\nnajzlatšieho\nnajzlatšiemu\nnajzlatších\nnajzlatším\nnajzlatšími\nnajzlatšiu\nnajzlatšom\nnajzlatšou\nnajzločineckejšej\nnajzločineckejší\nnajzločineckejšia\nnajzločineckejšie\nnajzločineckejšieho\nnajzločineckejšiemu\nnajzločineckejších\nnajzločineckejším\nnajzločineckejšími\nnajzločineckejšiu\nnajzločineckejšom\nnajzločineckejšou\nnajzločinnejšej\nnajzločinnejší\nnajzločinnejšia\nnajzločinnejšie\nnajzločinnejšieho\nnajzločinnejšiemu\nnajzločinnejších\nnajzločinnejším\nnajzločinnejšími\nnajzločinnejšiu\nnajzločinnejšom\nnajzločinnejšou\nnajzlomenejšie\nnajzlomkovitejšej\nnajzlomkovitejší\nnajzlomkovitejšia\nnajzlomkovitejšie\nnajzlomkovitejšieho\nnajzlomkovitejšiemu\nnajzlomkovitejších\nnajzlomkovitejším\nnajzlomkovitejšími\nnajzlomkovitejšiu\nnajzlomkovitejšom\nnajzlomkovitejšou\nnajzlomyseľnejšie\nnajzlopovestnejšie\nnajzlostnejšie\nnajzlovestnejšie\nnajzlovoľnejšie\nnajzloženejšej\nnajzloženejší\nnajzloženejšia\nnajzloženejšie\nnajzloženejšieho\nnajzloženejšiemu\nnajzloženejších\nnajzloženejším\nnajzloženejšími\nnajzloženejšiu\nnajzloženejšom\nnajzloženejšou\nnajzložitejšie\nnajzlučiteľnejšej\nnajzlučiteľnejší\nnajzlučiteľnejšia\nnajzlučiteľnejšie\nnajzlučiteľnejšieho\nnajzlučiteľnejšiemu\nnajzlučiteľnejších\nnajzlučiteľnejším\nnajzlučiteľnejšími\nnajzlučiteľnejšiu\nnajzlučiteľnejšom\nnajzlučiteľnejšou\nnajzmätenejšie\nnajzmätočnejšie\nnajzmerateľnejšej\nnajzmerateľnejší\nnajzmerateľnejšia\nnajzmerateľnejšie\nnajzmerateľnejšieho\nnajzmerateľnejšiemu\nnajzmerateľnejších\nnajzmerateľnejším\nnajzmerateľnejšími\nnajzmerateľnejšiu\nnajzmerateľnejšom\nnajzmerateľnejšou\nnajzmeravenejšej\nnajzmeravenejší\nnajzmeravenejšia\nnajzmeravenejšie\nnajzmeravenejšieho\nnajzmeravenejšiemu\nnajzmeravenejších\nnajzmeravenejším\nnajzmeravenejšími\nnajzmeravenejšiu\nnajzmeravenejšom\nnajzmeravenejšou\nnajzmierenejšej\nnajzmierenejší\nnajzmierenejšia\nnajzmierenejšie\nnajzmierenejšieho\nnajzmierenejšiemu\nnajzmierenejších\nnajzmierenejším\nnajzmierenejšími\nnajzmierenejšiu\nnajzmierenejšom\nnajzmierenejšou\nnajzmierlivejšej\nnajzmierlivejší\nnajzmierlivejšia\nnajzmierlivejšie\nnajzmierlivejšieho\nnajzmierlivejšiemu\nnajzmierlivejších\nnajzmierlivejším\nnajzmierlivejšími\nnajzmierlivejšiu\nnajzmierlivejšom\nnajzmierlivejšou\nnajzmučenejšej\nnajzmučenejší\nnajzmučenejšia\nnajzmučenejšie\nnajzmučenejšieho\nnajzmučenejšiemu\nnajzmučenejších\nnajzmučenejším\nnajzmučenejšími\nnajzmučenejšiu\nnajzmučenejšom\nnajzmučenejšou\nnajzmyslovejšie\nnajzmysluplnšej\nnajzmysluplnší\nnajzmysluplnšia\nnajzmysluplnšie\nnajzmysluplnšieho\nnajzmysluplnšiemu\nnajzmysluplnších\nnajzmysluplnším\nnajzmysluplnšími\nnajzmysluplnšiu\nnajzmysluplnšom\nnajzmysluplnšou\nnajznačnejšie\nnajznaleckejšej\nnajznaleckejší\nnajznaleckejšia\nnajznaleckejšie\nnajznaleckejšieho\nnajznaleckejšiemu\nnajznaleckejších\nnajznaleckejším\nnajznaleckejšími\nnajznaleckejšiu\nnajznaleckejšom\nnajznaleckejšou\nnajznášanlivejšej\nnajznášanlivejší\nnajznášanlivejšia\nnajznášanlivejšie\nnajznášanlivejšieho\nnajznášanlivejšiemu\nnajznášanlivejších\nnajznášanlivejším\nnajznášanlivejšími\nnajznášanlivejšiu\nnajznášanlivejšom\nnajznášanlivejšou\nnajznateľnejšej\nnajznateľnejší\nnajznateľnejšia\nnajznateľnejšie\nnajznateľnejšieho\nnajznateľnejšiemu\nnajznateľnejších\nnajznateľnejším\nnajznateľnejšími\nnajznateľnejšiu\nnajznateľnejšom\nnajznateľnejšou\nnajznečistenejší\nnajznečistenejšie\nnajznečistenejších\nnajznechutenejšej\nnajznechutenejší\nnajznechutenejšia\nnajznechutenejšie\nnajznechutenejšieho\nnajznechutenejšiemu\nnajznechutenejších\nnajznechutenejším\nnajznechutenejšími\nnajznechutenejšiu\nnajznechutenejšom\nnajznechutenejšou\nnajznepokojenejšej\nnajznepokojenejší\nnajznepokojenejšia\nnajznepokojenejšie\nnajznepokojenejšieho\nnajznepokojenejšiemu\nnajznepokojenejších\nnajznepokojenejším\nnajznepokojenejšími\nnajznepokojenejšiu\nnajznepokojenejšom\nnajznepokojenejšou\nnajznepokojivejšej\nnajznepokojivejší\nnajznepokojivejšia\nnajznepokojivejšie\nnajznepokojivejšieho\nnajznepokojivejšiemu\nnajznepokojivejších\nnajznepokojivejším\nnajznepokojivejšími\nnajznepokojivejšiu\nnajznepokojivejšom\nnajznepokojivejšou\nnajznepokojujúcejšej\nnajznepokojujúcejší\nnajznepokojujúcejšia\nnajznepokojujúcejšie\nnajznepokojujúcejšieho\nnajznepokojujúcejšiemu\nnajznepokojujúcejších\nnajznepokojujúcejším\nnajznepokojujúcejšími\nnajznepokojujúcejšiu\nnajznepokojujúcejšom\nnajznepokojujúcejšou\nnajznesiteľnejšej\nnajznesiteľnejší\nnajznesiteľnejšia\nnajznesiteľnejšie\nnajznesiteľnejšieho\nnajznesiteľnejšiemu\nnajznesiteľnejších\nnajznesiteľnejším\nnajznesiteľnejšími\nnajznesiteľnejšiu\nnajznesiteľnejšom\nnajznesiteľnejšou\nnajznetvorenejšej\nnajznetvorenejší\nnajznetvorenejšia\nnajznetvorenejšie\nnajznetvorenejšieho\nnajznetvorenejšiemu\nnajznetvorenejších\nnajznetvorenejším\nnajznetvorenejšími\nnajznetvorenejšiu\nnajznetvorenejšom\nnajznetvorenejšou\nnajzničenejšej\nnajzničenejší\nnajzničenejšia\nnajzničenejšie\nnajzničenejšieho\nnajzničenejšiemu\nnajzničenejších\nnajzničenejším\nnajzničenejšími\nnajzničenejšiu\nnajzničenejšom\nnajzničenejšou\nnajzničujúcejšej\nnajzničujúcejší\nnajzničujúcejšia\nnajzničujúcejšie\nnajzničujúcejšieho\nnajzničujúcejšiemu\nnajzničujúcejších\nnajzničujúcejším\nnajzničujúcejšími\nnajzničujúcejšiu\nnajzničujúcejšom\nnajzničujúcejšou\nnajzníženejšej\nnajzníženejší\nnajzníženejšia\nnajzníženejšie\nnajzníženejšieho\nnajzníženejšiemu\nnajzníženejších\nnajzníženejším\nnajzníženejšími\nnajzníženejšiu\nnajzníženejšom\nnajzníženejšou\nnajznudenejšej\nnajznudenejší\nnajznudenejšia\nnajznudenejšie\nnajznudenejšieho\nnajznudenejšiemu\nnajznudenejších\nnajznudenejším\nnajznudenejšími\nnajznudenejšiu\nnajznudenejšom\nnajznudenejšou\nnajzodpovedajúcejšej\nnajzodpovedajúcejší\nnajzodpovedajúcejšia\nnajzodpovedajúcejšie\nnajzodpovedajúcejšieho\nnajzodpovedajúcejšiemu\nnajzodpovedajúcejších\nnajzodpovedajúcejším\nnajzodpovedajúcejšími\nnajzodpovedajúcejšiu\nnajzodpovedajúcejšom\nnajzodpovedajúcejšou\nnajzodpovednejšej\nnajzodpovednejší\nnajzodpovednejšia\nnajzodpovednejšie\nnajzodpovednejšieho\nnajzodpovednejšiemu\nnajzodpovednejších\nnajzodpovednejším\nnajzodpovednejšími\nnajzodpovednejšiu\nnajzodpovednejšom\nnajzodpovednejšou\nnajzomknutejšej\nnajzomknutejší\nnajzomknutejšia\nnajzomknutejšie\nnajzomknutejšieho\nnajzomknutejšiemu\nnajzomknutejších\nnajzomknutejším\nnajzomknutejšími\nnajzomknutejšiu\nnajzomknutejšom\nnajzomknutejšou\nnajzostupnejšej\nnajzostupnejší\nnajzostupnejšia\nnajzostupnejšie\nnajzostupnejšieho\nnajzostupnejšiemu\nnajzostupnejších\nnajzostupnejším\nnajzostupnejšími\nnajzostupnejšiu\nnajzostupnejšom\nnajzostupnejšou\nnajzovretejšej\nnajzovretejší\nnajzovretejšia\nnajzovretejšie\nnajzovretejšieho\nnajzovretejšiemu\nnajzovretejších\nnajzovretejším\nnajzovretejšími\nnajzovretejšiu\nnajzovretejšom\nnajzovretejšou\nnajzoženštenejšej\nnajzoženštenejší\nnajzoženštenejšia\nnajzoženštenejšie\nnajzoženštenejšieho\nnajzoženštenejšiemu\nnajzoženštenejších\nnajzoženštenejším\nnajzoženštenejšími\nnajzoženštenejšiu\nnajzoženštenejšom\nnajzoženštenejšou\nnajzradnejšej\nnajzradnejší\nnajzradnejšia\nnajzradnejšie\nnajzradnejšieho\nnajzradnejšiemu\nnajzradnejších\nnajzradnejším\nnajzradnejšími\nnajzradnejšiu\nnajzradnejšom\nnajzradnejšou\nnajzraniteľnejšej\nnajzraniteľnejší\nnajzraniteľnejšia\nNajzraniteľnejšia\nnajzraniteľnejšie\nnajzraniteľnejšieho\nnajzraniteľnejšiemu\nnajzraniteľnejších\nnajzraniteľnejším\nnajzraniteľnejšími\nnajzraniteľnejšiu\nnajzraniteľnejšom\nnajzraniteľnejšou\nnajzrastenejšej\nnajzrastenejší\nnajzrastenejšia\nnajzrastenejšie\nnajzrastenejšieho\nnajzrastenejšiemu\nnajzrastenejších\nnajzrastenejším\nnajzrastenejšími\nnajzrastenejšiu\nnajzrastenejšom\nnajzrastenejšou\nnajzrážavejšej\nnajzrážavejší\nnajzrážavejšia\nnajzrážavejšie\nnajzrážavejšieho\nnajzrážavejšiemu\nnajzrážavejších\nnajzrážavejším\nnajzrážavejšími\nnajzrážavejšiu\nnajzrážavejšom\nnajzrážavejšou\nnajzrejmejšej\nnajzrejmejší\nnajzrejmejšia\nnajzrejmejšie\nnajzrejmejšieho\nnajzrejmejšiemu\nnajzrejmejších\nnajzrejmejším\nnajzrejmejšími\nnajzrejmejšiu\nnajzrejmejšom\nnajzrejmejšou\nnajzrelšej\nnajzrelší\nnajzrelšia\nnajzrelšie\nnajzrelšieho\nnajzrelšiemu\nnajzrelších\nnajzrelším\nnajzrelšími\nnajzrelšiu\nnajzrelšom\nnajzrelšou\nnajzriedenejšej\nnajzriedenejší\nnajzriedenejšia\nnajzriedenejšie\nnajzriedenejšieho\nnajzriedenejšiemu\nnajzriedenejších\nnajzriedenejším\nnajzriedenejšími\nnajzriedenejšiu\nnajzriedenejšom\nnajzriedenejšou\nnajzriedkavejšej\nnajzriedkavejší\nnajzriedkavejšia\nnajzriedkavejšie\nnajzriedkavejšieho\nnajzriedkavejšiemu\nnajzriedkavejších\nnajzriedkavejším\nnajzriedkavejšími\nnajzriedkavejšiu\nnajzriedkavejšom\nnajzriedkavejšou\nnajzrkadlovitejšej\nnajzrkadlovitejší\nnajzrkadlovitejšia\nnajzrkadlovitejšie\nnajzrkadlovitejšieho\nnajzrkadlovitejšiemu\nnajzrkadlovitejších\nnajzrkadlovitejším\nnajzrkadlovitejšími\nnajzrkadlovitejšiu\nnajzrkadlovitejšom\nnajzrkadlovitejšou\nnajzrnitejšej\nnajzrnitejší\nnajzrnitejšia\nnajzrnitejšie\nnajzrnitejšieho\nnajzrnitejšiemu\nnajzrnitejších\nnajzrnitejším\nnajzrnitejšími\nnajzrnitejšiu\nnajzrnitejšom\nnajzrnitejšou\nnajzrnovitejšej\nnajzrnovitejší\nnajzrnovitejšia\nnajzrnovitejšie\nnajzrnovitejšieho\nnajzrnovitejšiemu\nnajzrnovitejších\nnajzrnovitejším\nnajzrnovitejšími\nnajzrnovitejšiu\nnajzrnovitejšom\nnajzrnovitejšou\nnajzrobenejšej\nnajzrobenejší\nnajzrobenejšia\nnajzrobenejšie\nnajzrobenejšieho\nnajzrobenejšiemu\nnajzrobenejších\nnajzrobenejším\nnajzrobenejšími\nnajzrobenejšiu\nnajzrobenejšom\nnajzrobenejšou\nnajzrohovatenejšej\nnajzrohovatenejší\nnajzrohovatenejšia\nnajzrohovatenejšie\nnajzrohovatenejšieho\nnajzrohovatenejšiemu\nnajzrohovatenejších\nnajzrohovatenejším\nnajzrohovatenejšími\nnajzrohovatenejšiu\nnajzrohovatenejšom\nnajzrohovatenejšou\nnajzronenejšej\nnajzronenejší\nnajzronenejšia\nnajzronenejšie\nnajzronenejšieho\nnajzronenejšiemu\nnajzronenejších\nnajzronenejším\nnajzronenejšími\nnajzronenejšiu\nnajzronenejšom\nnajzronenejšou\nnajzručnejšej\nnajzručnejší\nnajzručnejšia\nnajzručnejšie\nnajzručnejšieho\nnajzručnejšiemu\nnajzručnejších\nnajzručnejším\nnajzručnejšími\nnajzručnejšiu\nnajzručnejšom\nnajzručnejšou\nnajzrýchlenejšej\nnajzrýchlenejší\nnajzrýchlenejšia\nnajzrýchlenejšie\nnajzrýchlenejšieho\nnajzrýchlenejšiemu\nnajzrýchlenejších\nnajzrýchlenejším\nnajzrýchlenejšími\nnajzrýchlenejšiu\nnajzrýchlenejšom\nnajzrýchlenejšou\nnajzubatejšej\nnajzubatejší\nnajzubatejšia\nnajzubatejšie\nnajzubatejšieho\nnajzubatejšiemu\nnajzubatejších\nnajzubatejším\nnajzubatejšími\nnajzubatejšiu\nnajzubatejšom\nnajzubatejšou\nnajzúbkatejšej\nnajzúbkatejší\nnajzúbkatejšia\nnajzúbkatejšie\nnajzúbkatejšieho\nnajzúbkatejšiemu\nnajzúbkatejších\nnajzúbkatejším\nnajzúbkatejšími\nnajzúbkatejšiu\nnajzúbkatejšom\nnajzúbkatejšou\nnajzúbkovitejšej\nnajzúbkovitejší\nnajzúbkovitejšia\nnajzúbkovitejšie\nnajzúbkovitejšieho\nnajzúbkovitejšiemu\nnajzúbkovitejších\nnajzúbkovitejším\nnajzúbkovitejšími\nnajzúbkovitejšiu\nnajzúbkovitejšom\nnajzúbkovitejšou\nnajzúboženejšej\nnajzúboženejší\nnajzúboženejšia\nnajzúboženejšie\nnajzúboženejšieho\nnajzúboženejšiemu\nnajzúboženejších\nnajzúboženejším\nnajzúboženejšími\nnajzúboženejšiu\nnajzúboženejšom\nnajzúboženejšou\nnajzúčtovateľnejšej\nnajzúčtovateľnejší\nnajzúčtovateľnejšia\nnajzúčtovateľnejšie\nnajzúčtovateľnejšieho\nnajzúčtovateľnejšiemu\nnajzúčtovateľnejších\nnajzúčtovateľnejším\nnajzúčtovateľnejšími\nnajzúčtovateľnejšiu\nnajzúčtovateľnejšom\nnajzúčtovateľnejšou\nnajzúfalejšej\nnajzúfalejší\nnajzúfalejšia\nnajzúfalejšie\nNajzúfalejšie\nnajzúfalejšieho\nnajzúfalejšiemu\nnajzúfalejších\nnajzúfalejším\nnajzúfalejšími\nnajzúfalejšiu\nnajzúfalejšom\nnajzúfalejšou\nnajzunivejšej\nnajzunivejší\nnajzunivejšia\nnajzunivejšie\nnajzunivejšieho\nnajzunivejšiemu\nnajzunivejších\nnajzunivejším\nnajzunivejšími\nnajzunivejšiu\nnajzunivejšom\nnajzunivejšou\nnajzunovanejšej\nnajzunovanejší\nnajzunovanejšia\nnajzunovanejšie\nnajzunovanejšieho\nnajzunovanejšiemu\nnajzunovanejších\nnajzunovanejším\nnajzunovanejšími\nnajzunovanejšiu\nnajzunovanejšom\nnajzunovanejšou\nnajzurčivejšej\nnajzurčivejší\nnajzurčivejšia\nnajzurčivejšie\nnajzurčivejšieho\nnajzurčivejšiemu\nnajzurčivejších\nnajzurčivejším\nnajzurčivejšími\nnajzurčivejšiu\nnajzurčivejšom\nnajzurčivejšou\nnajzúrivejší\nnajzurkotavejšej\nnajzurkotavejší\nnajzurkotavejšia\nnajzurkotavejšie\nnajzurkotavejšieho\nnajzurkotavejšiemu\nnajzurkotavejších\nnajzurkotavejším\nnajzurkotavejšími\nnajzurkotavejšiu\nnajzurkotavejšom\nnajzurkotavejšou\nnajzúženejšej\nnajzúženejší\nnajzúženejšia\nnajzúženejšie\nnajzúženejšieho\nnajzúženejšiemu\nnajzúženejších\nnajzúženejším\nnajzúženejšími\nnajzúženejšiu\nnajzúženejšom\nnajzúženejšou\nnajzužitkovateľnejšej\nnajzužitkovateľnejší\nnajzužitkovateľnejšia\nnajzužitkovateľnejšie\nnajzužitkovateľnejšieho\nnajzužitkovateľnejšiemu\nnajzužitkovateľnejších\nnajzužitkovateľnejším\nnajzužitkovateľnejšími\nnajzužitkovateľnejšiu\nnajzužitkovateľnejšom\nnajzužitkovateľnejšou\nnajzvädnutejšej\nnajzvädnutejší\nnajzvädnutejšia\nnajzvädnutejšie\nnajzvädnutejšieho\nnajzvädnutejšiemu\nnajzvädnutejších\nnajzvädnutejším\nnajzvädnutejšími\nnajzvädnutejšiu\nnajzvädnutejšom\nnajzvädnutejšou\nnajzvedavejšej\nnajzvedavejší\nnajzvedavejšia\nnajzvedavejšie\nnajzvedavejšieho\nnajzvedavejšiemu\nnajzvedavejších\nnajzvedavejším\nnajzvedavejšími\nnajzvedavejšiu\nnajzvedavejšom\nnajzvedavejšou\nnajzverskejšej\nnajzverskejší\nnajzverskejšia\nnajzverskejšie\nnajzverskejšieho\nnajzverskejšiemu\nnajzverskejších\nnajzverskejším\nnajzverskejšími\nnajzverskejšiu\nnajzverskejšom\nnajzverskejšou\nnajzvieravejšej\nnajzvieravejší\nnajzvieravejšia\nnajzvieravejšie\nnajzvieravejšieho\nnajzvieravejšiemu\nnajzvieravejších\nnajzvieravejším\nnajzvieravejšími\nnajzvieravejšiu\nnajzvieravejšom\nnajzvieravejšou\nnajzvinuteľnejšej\nnajzvinuteľnejší\nnajzvinuteľnejšia\nnajzvinuteľnejšie\nnajzvinuteľnejšieho\nnajzvinuteľnejšiemu\nnajzvinuteľnejších\nnajzvinuteľnejším\nnajzvinuteľnejšími\nnajzvinuteľnejšiu\nnajzvinuteľnejšom\nnajzvinuteľnejšou\nnajzvislejšej\nnajzvislejší\nnajzvislejšia\nnajzvislejšie\nnajzvislejšieho\nnajzvislejšiemu\nnajzvislejších\nnajzvislejším\nnajzvislejšími\nnajzvislejšiu\nnajzvislejšom\nnajzvislejšou\nnajzvládnuteľnejšej\nnajzvládnuteľnejší\nnajzvládnuteľnejšia\nnajzvládnuteľnejšie\nnajzvládnuteľnejšieho\nnajzvládnuteľnejšiemu\nnajzvládnuteľnejších\nnajzvládnuteľnejším\nnajzvládnuteľnejšími\nnajzvládnuteľnejšiu\nnajzvládnuteľnejšom\nnajzvládnuteľnejšou\nnajzvláštnejšej\nnajzvláštnejší\nnajzvláštnejšia\nnajzvláštnejšie\nnajzvláštnejšieho\nnajzvláštnejšiemu\nnajzvláštnejších\nnajzvláštnejším\nnajzvláštnejšími\nnajzvláštnejšiu\nnajzvláštnejšom\nnajzvláštnejšou\nnajzvlčenejšej\nnajzvlčenejší\nnajzvlčenejšia\nnajzvlčenejšie\nnajzvlčenejšieho\nnajzvlčenejšiemu\nnajzvlčenejších\nnajzvlčenejším\nnajzvlčenejšími\nnajzvlčenejšiu\nnajzvlčenejšom\nnajzvlčenejšou\nnajzvlčilejšej\nnajzvlčilejší\nnajzvlčilejšia\nnajzvlčilejšie\nnajzvlčilejšieho\nnajzvlčilejšiemu\nnajzvlčilejších\nnajzvlčilejším\nnajzvlčilejšími\nnajzvlčilejšiu\nnajzvlčilejšom\nnajzvlčilejšou\nnajzvlnenejšej\nnajzvlnenejší\nnajzvlnenejšia\nnajzvlnenejšie\nnajzvlnenejšieho\nnajzvlnenejšiemu\nnajzvlnenejších\nnajzvlnenejším\nnajzvlnenejšími\nnajzvlnenejšiu\nnajzvlnenejšom\nnajzvlnenejšou\nnajzvodnejšej\nnajzvodnejší\nnajzvodnejšia\nnajzvodnejšie\nnajzvodnejšieho\nnajzvodnejšiemu\nnajzvodnejších\nnajzvodnejším\nnajzvodnejšími\nnajzvodnejšiu\nnajzvodnejšom\nnajzvodnejšou\nnajzvoncovitejšej\nnajzvoncovitejší\nnajzvoncovitejšia\nnajzvoncovitejšie\nnajzvoncovitejšieho\nnajzvoncovitejšiemu\nnajzvoncovitejších\nnajzvoncovitejším\nnajzvoncovitejšími\nnajzvoncovitejšiu\nnajzvoncovitejšom\nnajzvoncovitejšou\nnajzvončekovitejšej\nnajzvončekovitejší\nnajzvončekovitejšia\nnajzvončekovitejšie\nnajzvončekovitejšieho\nnajzvončekovitejšiemu\nnajzvončekovitejších\nnajzvončekovitejším\nnajzvončekovitejšími\nnajzvončekovitejšiu\nnajzvončekovitejšom\nnajzvončekovitejšou\nnajzvonivejšej\nnajzvonivejší\nnajzvonivejšia\nnajzvonivejšie\nnajzvonivejšieho\nnajzvonivejšiemu\nnajzvonivejších\nnajzvonivejším\nnajzvonivejšími\nnajzvonivejšiu\nnajzvonivejšom\nnajzvonivejšou\nnajzvonovitejšej\nnajzvonovitejší\nnajzvonovitejšia\nnajzvonovitejšie\nnajzvonovitejšieho\nnajzvonovitejšiemu\nnajzvonovitejších\nnajzvonovitejším\nnajzvonovitejšími\nnajzvonovitejšiu\nnajzvonovitejšom\nnajzvonovitejšou\nnajzvrátenejšej\nnajzvrátenejší\nnajzvrátenejšia\nnajzvrátenejšie\nnajzvrátenejšieho\nnajzvrátenejšiemu\nnajzvrátenejších\nnajzvrátenejším\nnajzvrátenejšími\nnajzvrátenejšiu\nnajzvrátenejšom\nnajzvrátenejšou\nnajzvrhlejšej\nnajzvrhlejší\nnajzvrhlejšia\nnajzvrhlejšie\nnajzvrhlejšieho\nnajzvrhlejšiemu\nnajzvrhlejších\nnajzvrhlejším\nnajzvrhlejšími\nnajzvrhlejšiu\nnajzvrhlejšom\nnajzvrhlejšou\nnajzvrchovanejšie\nnajzvučnejšej\nnajzvučnejší\nnajzvučnejšia\nnajzvučnejšie\nnajzvučnejšieho\nnajzvučnejšiemu\nnajzvučnejších\nnajzvučnejším\nnajzvučnejšími\nnajzvučnejšiu\nnajzvučnejšom\nnajzvučnejšou\nnajzvukomalebnejšej\nnajzvukomalebnejší\nnajzvukomalebnejšia\nnajzvukomalebnejšie\nnajzvukomalebnejšieho\nnajzvukomalebnejšiemu\nnajzvukomalebnejších\nnajzvukomalebnejším\nnajzvukomalebnejšími\nnajzvukomalebnejšiu\nnajzvukomalebnejšom\nnajzvukomalebnejšou\nnajzvyčajnejšej\nnajzvyčajnejší\nnajzvyčajnejšia\nnajzvyčajnejšie\nnajzvyčajnejšieho\nnajzvyčajnejšiemu\nnajzvyčajnejších\nnajzvyčajnejším\nnajzvyčajnejšími\nnajzvyčajnejšiu\nnajzvyčajnejšom\nnajzvyčajnejšou\nnajzvýšenejšej\nnajzvýšenejší\nnajzvýšenejšia\nnajzvýšenejšie\nnajzvýšenejšieho\nnajzvýšenejšiemu\nnajzvýšenejších\nnajzvýšenejším\nnajzvýšenejšími\nnajzvýšenejšiu\nnajzvýšenejšom\nnajzvýšenejšou\nnajzženštilejšej\nnajzženštilejší\nnajzženštilejšia\nnajzženštilejšie\nnajzženštilejšieho\nnajzženštilejšiemu\nnajzženštilejších\nnajzženštilejším\nnajzženštilejšími\nnajzženštilejšiu\nnajzženštilejšom\nnajzženštilejšou\nnajzžieravejšej\nnajzžieravejší\nnajzžieravejšia\nnajzžieravejšie\nnajzžieravejšieho\nnajzžieravejšiemu\nnajzžieravejších\nnajzžieravejším\nnajzžieravejšími\nnajzžieravejšiu\nnajzžieravejšom\nnajzžieravejšou\nnajžalostivejšej\nnajžalostivejší\nnajžalostivejšia\nnajžalostivejšie\nnajžalostivejšieho\nnajžalostivejšiemu\nnajžalostivejších\nnajžalostivejším\nnajžalostivejšími\nnajžalostivejšiu\nnajžalostivejšom\nnajžalostivejšou\nnajžalostnejšej\nnajžalostnejší\nnajžalostnejšia\nnajžalostnejšie\nnajžalostnejšieho\nnajžalostnejšiemu\nnajžalostnejších\nnajžalostnejším\nNajžalostnejším\nnajžalostnejšími\nnajžalostnejšiu\nnajžalostnejšom\nnajžalostnejšou\nnajžartovnejšej\nnajžartovnejší\nnajžartovnejšia\nnajžartovnejšie\nnajžartovnejšieho\nnajžartovnejšiemu\nnajžartovnejších\nnajžartovnejším\nnajžartovnejšími\nnajžartovnejšiu\nnajžartovnejšom\nnajžartovnejšou\nnajžblnkotavejšej\nnajžblnkotavejší\nnajžblnkotavejšia\nnajžblnkotavejšie\nnajžblnkotavejšieho\nnajžblnkotavejšiemu\nnajžblnkotavejších\nnajžblnkotavejším\nnajžblnkotavejšími\nnajžblnkotavejšiu\nnajžblnkotavejšom\nnajžblnkotavejšou\nnajželateľnejšej\nnajželateľnejší\nnajželateľnejšia\nnajželateľnejšie\nnajželateľnejšieho\nnajželateľnejšiemu\nnajželateľnejších\nnajželateľnejším\nnajželateľnejšími\nnajželateľnejšiu\nnajželateľnejšom\nnajželateľnejšou\nnajželéovitejšej\nnajželéovitejší\nnajželéovitejšia\nnajželéovitejšie\nnajželéovitejšieho\nnajželéovitejšiemu\nnajželéovitejších\nnajželéovitejším\nnajželéovitejšími\nnajželéovitejšiu\nnajželéovitejšom\nnajželéovitejšou\nnajželezitejšej\nnajželezitejší\nnajželezitejšia\nnajželezitejšie\nnajželezitejšieho\nnajželezitejšiemu\nnajželezitejších\nnajželezitejším\nnajželezitejšími\nnajželezitejšiu\nnajželezitejšom\nnajželezitejšou\nnajženskejšej\nnajženskejší\nnajženskejšia\nnajženskejšie\nnajženskejšieho\nnajženskejšiemu\nnajženskejších\nnajženskejším\nnajženskejšími\nnajženskejšiu\nnajženskejšom\nnajženskejšou\nnajžeravejšej\nnajžeravejší\nnajžeravejšia\nnajžeravejšie\nnajžeravejšieho\nnajžeravejšiemu\nnajžeravejších\nnajžeravejším\nnajžeravejšími\nnajžeravejšiu\nnajžeravejšom\nnajžeravejšou\nnajžiadostivejšej\nnajžiadostivejší\nnajžiadostivejšia\nnajžiadostivejšie\nnajžiadostivejšieho\nnajžiadostivejšiemu\nnajžiadostivejších\nnajžiadostivejším\nnajžiadostivejšími\nnajžiadostivejšiu\nnajžiadostivejšom\nnajžiadostivejšou\nnajžiadúcejšej\nnajžiadúcejší\nnajžiadúcejšia\nnajžiadúcejšie\nnajžiadúcejšieho\nnajžiadúcejšiemu\nnajžiadúcejších\nnajžiadúcejším\nnajžiadúcejšími\nnajžiadúcejšiu\nnajžiadúcejšom\nnajžiadúcejšou\nnajžiaľnejšej\nnajžiaľnejší\nnajžiaľnejšia\nnajžiaľnejšie\nnajžiaľnejšieho\nnajžiaľnejšiemu\nnajžiaľnejších\nnajžiaľnejším\nnajžiaľnejšími\nnajžiaľnejšiu\nnajžiaľnejšom\nnajžiaľnejšou\nnajžiarivejšej\nnajžiarivejší\nnajžiarivejšia\nnajžiarivejšie\nnajžiarivejšieho\nnajžiarivejšiemu\nnajžiarivejších\nnajžiarivejším\nnajžiarivejšími\nnajžiarivejšiu\nnajžiarivejšom\nnajžiarivejšou\nnajžiarlivejšej\nnajžiarlivejší\nnajžiarlivejšia\nnajžiarlivejšie\nnajžiarlivejšieho\nnajžiarlivejšiemu\nnajžiarlivejších\nnajžiarlivejším\nnajžiarlivejšími\nnajžiarlivejšiu\nnajžiarlivejšom\nnajžiarlivejšou\nnajžiaruvzdornejšej\nnajžiaruvzdornejší\nnajžiaruvzdornejšia\nnajžiaruvzdornejšie\nnajžiaruvzdornejšieho\nnajžiaruvzdornejšiemu\nnajžiaruvzdornejších\nnajžiaruvzdornejším\nnajžiaruvzdornejšími\nnajžiaruvzdornejšiu\nnajžiaruvzdornejšom\nnajžiaruvzdornejšou\nnajžičlivejšej\nnajžičlivejší\nnajžičlivejšia\nnajžičlivejšie\nnajžičlivejšieho\nnajžičlivejšiemu\nnajžičlivejších\nnajžičlivejším\nnajžičlivejšími\nnajžičlivejšiu\nnajžičlivejšom\nnajžičlivejšou\nnajžidovskejšej\nnajžidovskejší\nnajžidovskejšia\nnajžidovskejšie\nnajžidovskejšieho\nnajžidovskejšiemu\nnajžidovskejších\nnajžidovskejším\nnajžidovskejšími\nnajžidovskejšiu\nnajžidovskejšom\nnajžidovskejšou\nnajžieravejšej\nnajžieravejší\nnajžieravejšia\nnajžieravejšie\nnajžieravejšieho\nnajžieravejšiemu\nnajžieravejších\nnajžieravejším\nnajžieravejšími\nnajžieravejšiu\nnajžieravejšom\nnajžieravejšou\nnajžilkovanejšej\nnajžilkovanejší\nnajžilkovanejšia\nnajžilkovanejšie\nnajžilkovanejšieho\nnajžilkovanejšiemu\nnajžilkovanejších\nnajžilkovanejším\nnajžilkovanejšími\nnajžilkovanejšiu\nnajžilkovanejšom\nnajžilkovanejšou\nnajžilkovatejšej\nnajžilkovatejší\nnajžilkovatejšia\nnajžilkovatejšie\nnajžilkovatejšieho\nnajžilkovatejšiemu\nnajžilkovatejších\nnajžilkovatejším\nnajžilkovatejšími\nnajžilkovatejšiu\nnajžilkovatejšom\nnajžilkovatejšou\nnajžilkovitejšej\nnajžilkovitejší\nnajžilkovitejšia\nnajžilkovitejšie\nnajžilkovitejšieho\nnajžilkovitejšiemu\nnajžilkovitejších\nnajžilkovitejším\nnajžilkovitejšími\nnajžilkovitejšiu\nnajžilkovitejšom\nnajžilkovitejšou\nnajžilnatejšej\nnajžilnatejší\nnajžilnatejšia\nnajžilnatejšie\nnajžilnatejšieho\nnajžilnatejšiemu\nnajžilnatejších\nnajžilnatejším\nnajžilnatejšími\nnajžilnatejšiu\nnajžilnatejšom\nnajžilnatejšou\nnajžírnejšej\nnajžírnejší\nnajžírnejšia\nnajžírnejšie\nnajžírnejšieho\nnajžírnejšiemu\nnajžírnejších\nnajžírnejším\nnajžírnejšími\nnajžírnejšiu\nnajžírnejšom\nnajžírnejšou\nnajživelnejšej\nnajživelnejší\nnajživelnejšia\nnajživelnejšie\nnajživelnejšieho\nnajživelnejšiemu\nnajživelnejších\nnajživelnejším\nnajživelnejšími\nnajživelnejšiu\nnajživelnejšom\nnajživelnejšou\nnajživičnatejšej\nnajživičnatejší\nnajživičnatejšia\nnajživičnatejšie\nnajživičnatejšieho\nnajživičnatejšiemu\nnajživičnatejších\nnajživičnatejším\nnajživičnatejšími\nnajživičnatejšiu\nnajživičnatejšom\nnajživičnatejšou\nnajživočíšnejšej\nnajživočíšnejší\nnajživočíšnejšia\nnajživočíšnejšie\nnajživočíšnejšieho\nnajživočíšnejšiemu\nnajživočíšnejších\nnajživočíšnejším\nnajživočíšnejšími\nnajživočíšnejšiu\nnajživočíšnejšom\nnajživočíšnejšou\nnajživotaschopnejšej\nnajživotaschopnejší\nnajživotaschopnejšia\nnajživotaschopnejšie\nnajživotaschopnejšieho\nnajživotaschopnejšiemu\nnajživotaschopnejších\nnajživotaschopnejším\nnajživotaschopnejšími\nnajživotaschopnejšiu\nnajživotaschopnejšom\nnajživotaschopnejšou\nnajživotnejšej\nnajživotnejší\nnajživotnejšia\nnajživotnejšie\nnajživotnejšieho\nnajživotnejšiemu\nnajživotnejších\nnajživotnejším\nnajživotnejšími\nnajživotnejšiu\nnajživotnejšom\nnajživotnejšou\nnajživotodarnejšej\nnajživotodarnejší\nnajživotodarnejšia\nnajživotodarnejšie\nnajživotodarnejšieho\nnajživotodarnejšiemu\nnajživotodarnejších\nnajživotodarnejším\nnajživotodarnejšími\nnajživotodarnejšiu\nnajživotodarnejšom\nnajživotodarnejšou\nnajživotunebezpečnejšej\nnajživotunebezpečnejší\nnajživotunebezpečnejšia\nnajživotunebezpečnejšie\nnajživotunebezpečnejšieho\nnajživotunebezpečnejšiemu\nnajživotunebezpečnejších\nnajživotunebezpečnejším\nnajživotunebezpečnejšími\nnajživotunebezpečnejšiu\nnajživotunebezpečnejšom\nnajživotunebezpečnejšou\nnajžľaznatejšej\nnajžľaznatejší\nnajžľaznatejšia\nnajžľaznatejšie\nnajžľaznatejšieho\nnajžľaznatejšiemu\nnajžľaznatejších\nnajžľaznatejším\nnajžľaznatejšími\nnajžľaznatejšiu\nnajžľaznatejšom\nnajžľaznatejšou\nnajžľazovitejšej\nnajžľazovitejší\nnajžľazovitejšia\nnajžľazovitejšie\nnajžľazovitejšieho\nnajžľazovitejšiemu\nnajžľazovitejších\nnajžľazovitejším\nnajžľazovitejšími\nnajžľazovitejšiu\nnajžľazovitejšom\nnajžľazovitejšou\nnajžlčovitejšej\nnajžlčovitejší\nnajžlčovitejšia\nnajžlčovitejšie\nnajžlčovitejšieho\nnajžlčovitejšiemu\nnajžlčovitejších\nnajžlčovitejším\nnajžlčovitejšími\nnajžlčovitejšiu\nnajžlčovitejšom\nnajžlčovitejšou\nnajžltkavejšie\nnajžltšej\nnajžltší\nnajžltšia\nnajžltšie\nnajžltšieho\nnajžltšiemu\nnajžltších\nnajžltším\nnajžltšími\nnajžltšiu\nnajžltšom\nnajžltšou\nnajžmurkavejšej\nnajžmurkavejší\nnajžmurkavejšia\nnajžmurkavejšie\nnajžmurkavejšieho\nnajžmurkavejšiemu\nnajžmurkavejších\nnajžmurkavejším\nnajžmurkavejšími\nnajžmurkavejšiu\nnajžmurkavejšom\nnajžmurkavejšou\nnajžobráckejšej\nnajžobráckejší\nnajžobráckejšia\nnajžobráckejšie\nnajžobráckejšieho\nnajžobráckejšiemu\nnajžobráckejších\nnajžobráckejším\nnajžobráckejšími\nnajžobráckejšiu\nnajžobráckejšom\nnajžobráckejšou\nnajžobravejšej\nnajžobravejší\nnajžobravejšia\nnajžobravejšie\nnajžobravejšieho\nnajžobravejšiemu\nnajžobravejších\nnajžobravejším\nnajžobravejšími\nnajžobravejšiu\nnajžobravejšom\nnajžobravejšou\nnajžoviálnejšej\nnajžoviálnejší\nnajžoviálnejšia\nnajžoviálnejšie\nnajžoviálnejšieho\nnajžoviálnejšiemu\nnajžoviálnejších\nnajžoviálnejším\nnajžoviálnejšími\nnajžoviálnejšiu\nnajžoviálnejšom\nnajžoviálnejšou\nnajžravejšej\nnajžravejší\nnajžravejšia\nnajžravejšie\nnajžravejšieho\nnajžravejšiemu\nnajžravejších\nnajžravejším\nnajžravejšími\nnajžravejšiu\nnajžravejšom\nnajžravejšou\nnajžulovitejšej\nnajžulovitejší\nnajžulovitejšia\nnajžulovitejšie\nnajžulovitejšieho\nnajžulovitejšiemu\nnajžulovitejších\nnajžulovitejším\nnajžulovitejšími\nnajžulovitejšiu\nnajžulovitejšom\nnajžulovitejšou\nnakašlať\nnakašľať\nnakatovať\nnákaz\nnakázať\nnákaza\nnakazenie\nnakazený\nnakaziť\nnákazlivo\nnákazlivosť\nnákazlivý\nnakazovať\nnákazovo\nnákazový\nnakáž\nnakáže\nnakážem\nnakážeme\nnakážeš\nnakážete\nnakážme\nnakážte\nnakážu\nnakážuc\nnakedy\nnakír\nnákl\nnakláčovať\nnaklaď\nnakladací\nnakladač\nnakladače\nnakladačka\nnakladaču\nnáklaďák\nnakladanie\nnakladaný\nnakladateľ\nnakladateľka\nnakladateľský\nnakladateľstvo\nnakladať\nnáklad\nnakladenie\nnákladiak\nnákladísk\nnákladisko\nnákladíšť\nnákladišťa\nnákladišťami\nnákladište\nnákladišti\nnákladišťom\nnákladišťu\nNákladka\nnakládka\nnákladkové\nnákladkovej\nnákladku\nnákladky\nnákladne\nnákladniak\nnákladnosť\nnákladný\nnákladove\nnákladovo\nnákladový\nnákladový\nnakláňacieho\nnakláňacími\nnakláňaní\nnakláňanie\nnakláňaniu\nnakláňať\nnaklápali\nnaklápaní\nnaklápať\nnaklásť\nnaklebetiť\nnaklepaný\nnaklepať\nnaklepávanie\nnaklepávať\nnaklepká\nnaklepkaj\nnaklepkajme\nnaklepkajte\nnaklepkajú\nnaklepkajúc\nnaklepkal\nnaklepkala\nnaklepkali\nnaklepkalo\nnaklepkám\nnaklepkáme\nnaklepkáš\nnaklepkať\nnaklepkáte\nnakliať\nnaklíčeniu\nnaklíčený\nnaklíčiť\nnakličovať\nnaklíčovať\nnaklochniť\nnaklochtiť\nnaklonene\nnaklonenia\nnaklonenie\nnaklonením\nnaklonenosť\nnaklonený\nnakloniť\nnáklonnosť\nnáklonný\nnaklonovať\nnaklop\nnakmíniť\nnakojiť\nnákolennica\nnákolenník\nnákolenníku\nnákolenníky\nnakolíkovať\nnakoľko\nnakomandované\nnakomandovanú\nnákončie\nnakonfigurovaný\nnakonfigurovať\nnakoniec\nnakonzervovať\nnakopať\nnakopcovať\nnakopči\nnakopčime\nnakopčite\nnakopčiť\nnakopenia\nnakopenie\nnakopením\nnakopeniu\nnakopený\nnakopírovať\nnakopiť\nnakopnúť\nnakopol\nnakosiť\nnakotiť\nnakovať\nnákova\nnákovka\nnákovový\nnakradnúť\nnakradnutý\nnakraj\nnakrájaný\nnakrájať\nnakrajovať\nnakrámiť\nnakrátko\nnakrč\nnakrčiť\nnakrémovať\nnakrémovo\nnákres\nnakreslenie\nnakreslený\nnakresliť\nnákresný\nnákresový\nnakriatnutie\nnakriatnuť\nnakrič\nnakričať\nnakrit\nnakriviť\nnakrivo\nnakríž\nnakŕmená\nnakŕmenie\nnakŕmiť\nnakrojiť\nnakrojovať\nnakropiť\nnakróza\nnakrúcanie\nnakrúcaný\nnakrúcať\nnakrucovanie\nnakrútenia\nnakrútenie\nnakrútením\nnakrúteniu\nnakrútený\nnakrútený\nnakrútiť\nnakučeriť\nnakuchtiť\nnakukalo\nnakúkať\nnakukávať\nnakuknutie\nnakuknúť\nnakukovať\nnakulmovať\nnákup\nnákupca\nnakúpenia\nnakúpenie\nnakúpením\nnakúpený\nnakúpiť\nnákupňa\nnákupne\nnákupno\nnákupný\nnakupovač\nnakupovačka\nnakupovanie\nnakupovaný\nnakupovať\nnakupujúci\nnakúsli\nnakustriť\nnakuť\nnakúvať\nnakvapkať\nnakváriť\nnakvasený\nnakvasiť\nnakydať\nnákyp\nnákypový\nnakypriť\nnakyprovať\nnakyslý\nnakysnúť\nnakysnutý\nnalačno\nnálad\nnálada\nnaladenie\nnaladený\nnáladička\nnáľadie\nnaladiteľný\nnaladiť\nnaládoval\nnaládovala\nnaládovali\nnaládovalo\nnaládovať\nnalaďovať\nnáladove\nnáladovo\nnáladovosť\nnáladový\nnaláduj\nnaláduje\nnaládujem\nnaládujeme\nnaláduješ\nnaládujete\nnaládujme\nnaládujte\nnaládujú\nnaládujúc\nnaľahko\nnaľahne\nnaľahnúť\nnaľakane\nnalákanie\nnaľakano\nnalákaný\nnaľakaný\nnaľakať\nnalákať\nnalakomiť\nnalakovanie\nnalakovaný\nnalakovať\nnalám\nnalámané\nnalámať\nnaláme\nnalámem\nnalámeme\nnalámeš\nnalámete\nnalámme\nnalamovať\nnalámte\nnalámu\nnalámuc\nnalapať\nnalátať\nnaľavo\nnalepenie\nnalepením\nnalepený\nnalepiť\nnálepka\nNálepkov\nNálepkova\nnálepkoval\nnálepkovala\nnálepkovali\nnálepkovalo\nnálepkovať\nNálepkove\nNálepkovi\nNálepkovo\nnálepkovský\nNálepkovu\nNálepkovým\nnálepkuj\nnálepkuje\nnálepkujem\nnálepkujeme\nnálepkuješ\nnálepkujete\nnálepkujme\nnálepkujte\nnálepkujú\nnálepkujúc\nnálepok\nnalepovaná\nnalepovanými\nnalepovať\nnálepy\nnaleštený\nnaleštil\nnaleštiť\nnaleť\nnálet\nnaletieť\nnáletový\nnaletúvať\nnálev\nnáleve\nnález\nnálezca\nnálezcovský\nnálezenec\nnalezení\nnálezísk\nnálezisko\nnálezištie\nnálezkyňa\nnálezné\nnálezného\nnáleznému\nnáleznom\nnálezným\nnálezových\nnaležato\nnaležať\nnáležať\nnáležiaci\nnáležite\nnáležito\nnáležitosť\nnáležitý\nnaliate\nnaliateho\nnaliatemu\nnaliatí\nnaliatia\nnaliatie\nnaliatiu\nnaliať\nnaliaty\nnaliatych\nnalíčenie\nnalíčený\nnalíčiť\nnaliehajúci\nnaliehanie\nnaliehať\nnaliehavo\nnaliehavosť\nnaliehavý\nnaliepať\nnalietania\nnalietanie\nnalietaný\nnalietať\nnalietavané\nnalietavaní\nnalietavanie\nnalietavaných\nnalietavať\nnalievacie\nnalievajúci\nnalievané\nnalievaného\nnalievaní\nnalievania\nnalievanie\nnalievaním\nnalievaniu\nnalievanými\nnalievať\nnaliezť\nnalinajkovaný\nnalinajkovať\nnalinkovaný\nnalinkovať\nnalisoval\nnalisovaný\nnalistovať\nnalodene\nnalodenia\nnalodenie\nnalodením\nnalodený\nnalodiť\nnaloďovania\nnaloďovanie\nnaloďovaním\nnaloďovať\nnalogať\nnalomenie\nnalomený\nnalomiť\nnalopotiť\nnaloviť\nnálož\nnaloženia\nnaloženie\nnaložením\nnaloženiu\nnaložený\nnaložiť\nnáložne\nnaluhať\nNam\nnám\nnamacať\nnamaciavať\nnamáčací\nnamáčania\nnamáčanie\nnamáčaný\nnamáčať\nnamačknutý\nnámah\nnamáhane\nnamáhania\nnamáhanie\nnamáhaním\nnamáhaniu\nnamáhaný\nnamáhať\nnamáhavejší\nnamáhavo\nnamáhavosť\nnamáhavý\nnámaha\nnamakám\nnamakaní\nnamakať\nnamäkko\nnamal\nnamala\nnamále\nnamalo\nnamaľovanie\nnamaľovaním\nnamaľovaný\nnamaľovať\nnamasírovať\nnamaskovať\nnamastený\nnamasti\nnamastime\nnamastite\nnamastiť\nnamaškrtení\nnamaškrtených\nnamaškrtiť\nnamátať\nnámatkovo\nnámatkový\nnamáz\nnamazanie\nnamazaný\nnamazať\nname\nnámedzne\nnámedzný\nnámel\nnamemorovať\nnamerania\nnameranie\nnameraný\nnamerať\nnameriavať\nnameriť\nNámerová\nnámeru\nnámesačne\nnámesačnica\nnámesačnícky\nnámesačníctvach\nnámesačníctvam\nnámesačníctvo\nnámesačníčka\nnámesačník\nnámesačnosť\nnámesačný\nnámest\nnámestíčko\nnámestie\nNámestní\nnámestnícky\nnámestníctvach\nnámestníctvam\nnámestníctvo\nnámestníčka\nnámestník\nnámestníkovho\nnámestníkových\nNámestovo\nnámestovská\nnámestovského\nnámestovskej\nnámestovskom\nnámestovskú\nnámestovských\nNámestovský\nnámet\nnámetovo\nnámetový\nnámezdne\nnámezdný\nnami\nNamíbia\nNamíbijčan\nNamíbijčanka\nnamíbijský\nnamierenie\nnamierený\nnamieriť\nnamies\nnamiesiť\nnamieste\nnamiesto\nnamiešanie\nnamiešaním\nnamiešaný\nnamiešať\nnamietania\nnamietaním\nnamietaniu\nnamietaný\nnamietaťnamlieť\nnamietať\nnámietka\nnamietnutia\nnamietnutie\nnamietnuto\nnamietnuť\nnamietnutý\nnamiloval\nnamíňať\nnamkli\nnamkol\nnamlátiť\nnamletá\nnamleto\nnamlieť\nnamnožený\nnamnožiť\nnamočenie\nnamočený\nnamočiť\nnamodelovať\nnamodrastý\nnamodravý\nnamodro\nnamojdušu\nnamojpravdu\nnamojveru\nnamokať\nnamoknutie\nnamoknúť\nnamokro\nnamontovania\nnamontovanie\nnamontovaním\nnamontovaný\nnamontovateľný\nnamontovať\nnamontovávať\nnamontúvať\nnamor\nnámor\nnamordovať\nnamorenie\nnamoriť\nnámorne\nnámornícky\nnámorníctvach\nnámorníctvam\nnámorníctvo\nnámorníčka\nnámorník\nnámorno\nnámorný\nnamosúrene\nnamosúrenosť\nnamosúrený\nnamosúriť\nnamotať\nnamotávaní\nnamotávanie\nnamotávať\nnámraz\nnámraza\nnámrazový\nnamrv\nnamrvili\nnamrz\nnamŕzať\nnamrzel\nnamrzela\nnamrzeli\nnamrzelo\nnamrzene\nnamrzenosť\nnamrzený\nnamrzí\nnamrzia\nnamrziac\nnamrzieť\nnamrzím\nnamrzíme\nnamrzíš\nnamrzíte\nnamrzme\nnamrznúť\nnamrznutých\nnamrzte\nnamur\nNamur\nNamure\nnamútil\nnamútiť\nnamydlený\nnamydliť\nnamykávať\nnamýli\nnamýlia\nnamyslenec\nnamyslene\nnamysleno\nnamyslenosť\nnamyslený\nnamyslieť\nNamýšľanie\nnamýšľaniu\nnamýšľať\nnamýšľavosť\nnamýšľavý\nnaň\nNana\nNána\nňaňa\nnanajvýš\nnanášanie\nnanášaný\nnanášať\nNandraž\nnandu\nnanebovstúpenie\nnanebovzatie\nnanečisto\nnanesenia\nnanesenie\nnanesením\nnanesený\nnaneštastie\nnanešťastie\nnaňho\nnanič\nnaničhodne\nnaničhodnica\nnaničhodníctvo\nnaničhodník\nnaničhodnosť\nnaničhodný\nnaniesť\nnanivoč\nnanizmus\nňaňo\nnanocefália\nnanomélia\nnanominoval\nnanominovala\nnanominovali\nnanominovalo\nnanominovať\nnanominuj\nnanominuje\nnanominujem\nnanominujeme\nnanominuješ\nnanominujete\nnanominujme\nnanominujte\nnanominujú\nnanominujúc\nnános\nnanosené\nnanosiť\nnánosový\nnanovo\nnánožník\nnánožníky\nNantes\nNantesan\nNantesanka\nnanteský\nnantský\nnanucovaná\nnanucované\nnanucovania\nnanucovanie\nnanucovaním\nnanucovaniu\nnanucovať\nnanuk\nnanukový\nnanútený\nnanútiť\nNany\nNány\nnao\nnaobedovať\nnaoberať\nnaobchádza\nnaobliekané\nnaobliekať\nnaobročiť\nnaoceľovo\nnaočkované\nnaočkovanej\nnaočkovanie\nnaočkovať\nnaočkovávať\nnaočkúvať\nnaoko\nnaokolo\nnaoktrojovať\nnaolejovaný\nnaolejovať\nnaolovrantovať\nnaondi\nnaondiať\nnaondie\nnaondiel\nnaondiem\nnaondieme\nnaondieš\nnaondiete\nnaondieť\nnaondil\nnaondila\nnaondili\nnaondilo\nnaondime\nnaondiť\nnaondite\nnaondulovať\nnaopak\nnaor\nnaordinovania\nnaordinovanie\nnaordinovaný\nnaordinovať\nnáos\nnaosený\nnaostatok\nnaostrenie\nnaostrený\nnaostriť\nnaostro\nnaozaj\nnaozajsky\nnaozajský\nnaozajstne\nnaozajstný\nnap\nNapa\nnapáckať\nnapačmá\nnapačmaj\nnapačmajme\nnapačmajte\nnapačmajú\nnapačmajúc\nnapačmám\nnapačmáme\nnapačmáš\nnapačmáte\nnapačmať\nnapádania\nnapádaniam\nnapádanie\nnapádaním\nnapadaniu\nnapádaniu\nnapadaný\nnapádaný\nnapadať\nnapádať\nnápad\nnápadito\nnápaditosť\nnápaditý\nnápadne\nnápadnícky\nnápadníčka\nnápadník\nnápadnosť\nnapadnuteľnosť\nnapadnuteľnosti\nnapadnuteľný\nnapadnutie\nnapadnúť\nnapadnutý\nnapadnutý\nnápadný\nnapadúvať\nnapáchaný\nnapáchať\nnapáchnuť\nnapáchnutý\nnapájacíN\nnapájač\nnapájačka\nnapájadlo\nnapájane\nnapájanie\nnapájaný\nnapájať\nnapajedene\nnapajedený\nnapajediť\nnapálene\nnapálenie\nnapálený\nnapáliť\nnapalm\nnapalmový\nnapaľovacia\nnapaľovacie\nnapaľovacieho\nnapaľovacích\nnapaľovacími\nnapaľovacou\nnapaľoval\nnapaľovali\nnapaľovania\nnapaľovanie\nnapaľovaním\nnapaľovaniu\nnapaľovaný\nnapaľovať\nnapaľuje\nnapaľujete\nnapaľujú\nnapapaný\nnapapať\nnapapkaný\nnapapkať\nnapaprčene\nnapaprčený\nnapaprčiť\nnapaprikovať\nnapar\nnaparádiť\nnapárať\nnaparená\nnaparenej\nnaparfumovať\nnapariť\nnaparovací\nnaparovane\nnaparovania\nnaparovanie\nnaparovaním\nnaparovaniu\nnaparovaný\nnaparovať\nnaparte\nnapas\nnapasenie\nnapasovaná\nnapasované\nnapasovanie\nnapasovať\nnapastovať\nnapásť\nnapáš\nnapáše\nnapášem\nnapášeme\nnapášeš\nnapášete\nnapašmá\nnapašmaj\nnapašmajme\nnapašmajte\nnapašmajú\nnapašmajúc\nnapašmám\nnapašmáme\nnapašmáš\nnapašmáte\nnapašmať\nnapášme\nnapášte\nnapášu\nnapášuc\nnapätie\nnapäto\nnapätosť\nnapäťovo\nnapäťový\nnapäť\nnapätý\nNape\nnapečené\nnapečeného\nnapečenú\nnapekať\nnapenený\nnapeniť\nnápev\nnápeve\nnapevno\nnapchanie\nnapchať\nnapchatý\nnapchávanie\nnapchávať\nnapí\nnapiecť\nNapiera\nnapichaný\nnapichať\nnapichávať\nnapichnutia\nnapichnutie\nnapichnúť\nnapichnutý\nnapichovanie\nnapichovať\nnapíjať\nnapíliť\nnapiľovať\nnapínací\nnapínač\nnapínačovi\nnapínadlo\nnapinák\nnapínanej\nnapínania\nnapínanie\nnapínaním\nnapínaniu\nnapínaných\nnapínať\nnapínavo\nnapínavosť\nnapínavý\nnapísane\nnapísanieN\nnapísaný\nnapísať\nnápis\nnapískať\nnápisová\nnápisovú\nnapíšu\nnapíšuc\nnapitie\nnapiť\nnapitý\nnapizmus\nnaplačú\nnaplačúc\nnaplakať\nnaplano\nnaplánovanie\nnaplánovaný\nnaplánovať\nnáplasť\nnaplašene\nnaplašeno\nnaplašený\nnaplašiť\nnaplatí\nnaplatia\nnaplatil\nnáplava\nnáplav\nnaplavenie\nnaplavením\nnaplavenina\nnaplavený\nnaplaviť\nnaplavovane\nnaplavovania\nnaplavovanie\nnaplavovaním\nnaplavovaný\nnaplavovať\nnáplavový\nnáplecník\nnapleť\nnapletie\nnapletiem\nnapletieme\nnapletieš\nnapletiete\nnapleťme\nnapleťte\nnapletú\nnapletúc\nnapliesť\nnaplietla\nnaplietli\nnaplietlo\nnaplietol\nnapĺňajúci\nnapĺňanie\nnapĺňaný\nnapĺňať\nnáplň\nnaplnenie\nnaplnenieN\nnaplnený\nnaplniť\nnaplno\nnaplňovania\nnaplňovanie\nnaplňovaním\nnaplňovaniu\nnaplňovaný\nnaplňovať\nnáplňový\nnaplňujúci\nnaplodiť\nnaplocho\nnapľuté\nnapľutie\nnapľuť\nnapľúvať\nnapľuvať\nnapnute\nnapnutia\nnapnutie\nnapnutím\nnapnuto\nnapnutosť\nnapnúť\nnapnutý\nnapočítania\nnapočítaný\nnapočítať\nnapočudovanie\nnapočúval\nnapočúvali\nnapočúvame\nnapodiv\nnapodnobniť\nnápodoba\nnapodobenia\nnapodobenie\nnapodobením\nnapodobenina\nnapodobeniu\nnapodobený\nnapodobiteľ\nnapodobiteľný\nnapodobiteľný\nnapodobiť\nnapodobnenia\nnapodobnenie\nnapodobnením\nnapodobnenina\nnapodobnený\nnapodobni\nnapodobnime\nnapodobnite\nnapodobniteľ\nnapodobniteľný\nnapodobniť\nnapodobňovania\nnapodobňovanie\nnapodobňovaním\nnapodobňovaniu\nnapodobňovaný\nnapodobňovateľ\nnapodobňovateľka\nnapodobňovať\nnapodobňujúci\nnapodobovanie\nnapodobovaniu\nnapodobovateľ\nnapodobovateľka\nnapodobovať\nnápodobu\nnápodoby\nnapohľad\nnapochytre\nnapochytro\nnapojacej\nnapojenie\nnapojený\nnapojiť\nnápoj\nnapojovať\nnápojový\nnapokon\nNapoleon\nnapoleonský\nnapolitánka\nnapolitánkový\nnapolo\nnapoludnie\nnapoly\nnapomádovaný\nnapomáhajúce\nnapomáhajúci\nnapomáhanie\nnapomáhaný\nnapomáhaný\nnapomáhateľ\nnapomáhať\nnapomenutie\nnapomenúť\nnapomenutý\nnapomínajúca\nnapomínajúcu\nnapomínané\nnapomínanie\nNapomínaný\nnapomínať\nnapomínavý\nnápomocne\nnápomocný\nnapomôcť\nnapomôž\nnapomoženie\nnapomôžuc\nnaponáhle\nnaponáhlo\nnapopolavo\nnaporad\nnápor\nnáporový\nnaporúdzi\nnaposled\nnaposledok\nnaposledy\nnaposol\nnapospas\nnapospol\nnapotom\nnápoveď\nnapovedá\nnapovedaj\nnapovedajme\nnapovedajte\nnapovedajú\nnapovedajúc\nnapovedajúca\nnapovedám\nnapovedáme\nnapovedáš\nnapovedáte\nnapovedať\nnápovede\nnapozajtra\nnapozajtre\nnapozerať\nnapožičiaval\nnapožičiavala\nnapožičiavali\nnapožičiavané\nnapožičiavaných\nnapr\nnapracovať\nnaprasiť\nnapráskať\nnaprášiť\nnaprať\nNapratanie\nnaprataný\nnapratať\nnáprav\nnaprávané\nnaprávaní\nnaprávania\nnaprávanie\nnaprávaním\nnaprávaniu\nnaprávať\nnáprava\nnapravenia\nnapravenie\nnapravením\nnapraveniu\nnapravený\nnapraviteľný\nnapraviť\nnápravne\nnápravno\nnápravnovýchovný\nnápravný\nnapravo\nnapravovaní\nnapravovanie\nnapravovať\nnápravový\nnaprázdno\nnaprd\nnapreberať\nnapred\nnapredku\nnapredok\nnapredovanie\nnapredovať\nnapredujúci\nnapredujúcich\nnapremýšľal\nnapreteky\nnapri\nnapriadli\nnapriahlo\nnapriahnuť\nnapriahnutý\nnapriamenie\nnapriamením\nnapriameniu\nnapriamený\nnapriamiť\nnapriamovať\nnapriasť\nnaprie\nnaprieč\nnapriek\nnapriekor\nnapriekory\nnaprieky\nNapriem\nnaprikazovať\nnapríklad\nnaprogramovania\nnaprogramovanie\nnaprogramovaním\nnaprogramovaný\nnaprogramovať\nnaprojektovali\nnaprojektovaný\nnaprosiť\nnaprosto\nnaprostred\nnaprostriedku\nnaprostriedok\nnaprostý\nnaproti\nnaprotiveň\nnáprotivne\nnáprotivníka\nnáprotivný\nnáprotivok\nnáprovitný\nnáprsenka\nnáprsenkový\nnáprsník\nnáprsníka\nnáprsníku\nnáprsný\nnáprstník\nnáprstný\nnáprstok\nnaprš\nnapršať\nnapružený\nnapružiť\nnapsotiť\nnápstrník\nnapuč\nnapučané\nnapučanie\nnapúčanie\nnapučať\nnapúčať\nnapučiavaní\nnapučiavanie\nnapučiavaniu\nnapučiavať\nnapučil\nnapučiť\nnapudrovať\nnapuchaný\nnapúchaný\nnapúchať\nnapuchlina\nnapuchnutie\nnapuchnúť\nnapuchnutý\nnapuchrený\nnapukaný\nnapukať\nnapumpované\nnapumpovania\nnapumpovanie\nnapumpovaním\nnapumpovaniu\nnapumpovaných\nnapumpovať\nnapustenia\nnapustenie\nnapustením\nnapusteniu\nnapustený\nnapusti\nnapustime\nnapustite\nnapustiť\nnapúšťané\nnapúšťaní\nnapúšťania\nnapúšťanie\nnapúšťaním\nnapúšťaniu\nnapúšťanou\nnapúšťať\nnapýšia\nnar\nnár\nnarábané\nnarábanie\nnarábať\nnarác\nnaráce\nnarácem\nnaráceme\nnaráceš\nnarácete\nnarácia\nnarácme\nnarácte\nnarácu\nnarácuc\nnaračný\nnaradené\nnaradenia\nnaradenie\nnáradie\nnaradiť\nnaradostene\nnaradostený\nnaradovane\nnaradovaný\nnaradovať\nnáraďovňa\nnáraďový\nnarádzať\nnarafičené\nnarafičiť\nnáramkový\nnáramne\nnáramnica\nnáramnosť\nnáramný\nnáramok\nnaraňajkovať\nnaráno\nnarárožiť\nnarastajúci\nnarastania\nnarastanie\nnarastaním\nnarastaniu\nnarastaný\nnarastať\nnárast\nnarastenie\nnarastený\nnarasti\nnarastime\nnarastite\nnárastmi\nnarásť\nnarátaný\nnarátať\nnaratívny\nnarátor\nnáraz\nnarazenia\nnarazenie\nNarazením\nnarazeniu\nnarazený\nnárazisko\nnárazištie\nnaraziť\nnárazník\nnárazníkový\nnárazovite\nnárazovito\nnárazovitosť\nnárazovitý\nnárazovo\nnárazovosť\nnárazový\nnarážacej\nNarážacia\nnarážacích\nnarážaciu\nnarážajúci\nnarážania\nnarážanie\nnarážaný\nnarážať\nnarážka\nnarceín\nnarcis\nnarcisový\nnarcistická\nnarcistické\nnarcizmus\nnárečie\nnarečniť\nnárečove\nnárečovo\nnárečový\nnaregulovať\nnárek\nnarezanie\nnarezaný\nnarezať\nnarezávaní\nnarezávať\nnárez\nnárezový\nnarežírovalo\nnarežírovaný\nnargilé\nnarhomaďovať\nnariadene\nnariadenie\nnariadený\nnariadiť\nnariaďovací\nnariaďovaciu\nnariaďované\nnariaďovaní\nnariaďovania\nnariaďovanie\nnariaďovať\nnariasenie\nnariasený\nnariasiť\nnariedko\nnariekačka\nnariekačky\nnariekajúce\nnariekajúcim\nnariekanie\nnariekať\nnariekavo\nnariekavý\nnariešiteľný\nnarichtovať\nnarkoanalýza\nnárkoch\nnarkolepsia\nnarkomafia\nnarkoman\nnarkománia\nnarkomanka\nnarkomanský\nnarkoticky\nnarkotický\nnarkotík\nnarkotik\nnarkotikum\nnarkotizácia\nnarkotizmus\nnarkotizovať\nnarkóz\nnarkózach\nnarkózam\nnarkóza\nnarobená\nnarobené\nnarobení\nnarobených\nnarobiť\nnáročky\nnáročne\nnáročnejší\nnáročnosťN\nnáročný\nnárod\nnarodene\nnarodenie\nnarodeninový\nnarodeniny\nnarodený\nnárodík\nnarodiť\nnárodne\nnárodniar\nnárodniarska\nnárodniarskeho\nnárodniarskej\nnárodniarski\nnárodniarsku\nnárodniarsky\nnárodniarskych\nnárodniarskymi\nnárodno\nnárodnobuditeľské\nnárodnodemokratický\nnárodnooslobodzovací\nnárodnopolitickým\nnárodnoreprezentatívny\nnárodnosť\nnárodnostne\nnárodnostno\nnárodnostný\nnárodnoštátny\nnárodný\nnárodohospodár\nnárodohospodársky\nnárodohospodárstva\nnárodohospodárstvo\nnárodopis\nnárodopisec\nnárodopisný\nnárodovec\nnárodovecky\nnárodovecký\nnárodovectvo\nnárodovkyňa\nnárok\nnárokovania\nnárokovanie\nnárokovaním\nnárokovaný\nnárokovateľ\nnárokovateľa\nnárokovateľom\nnárokovateľov\nnárokovať\nnárokovo\nnárokový\nnárokujúca\nnarovnako\nnarovnania\nnarovnaniach\nnarovnanie\nnarovnaním\nnarovnaniu\nnarovnaný\nnarovnať\nnarovnávaní\nnarovnávania\nnarovnávanie\nnarovnávaním\nnarovnávaniu\nnarovnávať\nnarovno\nnarozdávanie\nnarozdiel\nnarozhadzovať\nnarozkazovať\nnarozkladať\nnarozlievať\nnarozmýšľa\nnarozmýšľaj\nnarozmýšľajme\nnarozmýšľajte\nnarozmýšľajú\nnarozmýšľajúc\nnarozmýšľal\nnarozmýšľala\nnarozmýšľali\nnarozmýšľalo\nnarozmýšľam\nnarozmýšľame\nnarozmýšľaš\nnarozmýšľať\nnarozmýšľate\nnarozprávať\nnarozsýpať\nnárožie\nnárožný\nnartex\nnarúb\nNarúbané\nnarúbaného\nnarúbať\nnarúbe\nnarúbem\nnarúbeme\nnarúbeš\nnarúbete\nnarúbme\nnarúbte\nnarúbu\nnarúbuc\nnaruby\nnarúčať\nnáruč\nnáručie\nnaručiť\nnáručný\nnarukovať\nnarúšaná\nnarúšané\nnarúšaní\nnarúšania\nnarúšanie\nnarúšaním\nnarúšaniu\nnarúšateľ\nnarúšateľka\nnarúšať\nnarušenie\nnarušený\nnarušiteľ\nnarušiteľka\nnarušiť\nnarušovania\nnarušovanie\nnarušovaním\nnarušovaniu\nnarušovaný\nnarušovateľ\nnarušovateľka\nnarušovať\nnarušujúci\nnarútiť\nnáruživec\nnáruživo\nnáruživosť\nnáruživý\nnaružovo\nNarva\nnarval\nNarve\nNarvik\nNarvou\nNarvy\nnary\nnarýchlo\nnárys\nnarysovaný\nnarysovať\nnás\nNASA\nnásad\nnasadaní\nnasadanie\nnasadať\nnásada\nnásadce\nnásadec\nnasadene\nnasadenie\nnasadený\nnasadiť\nnásadka\nnasadnutie\nnasadnúť\nnásadový\nnasádzať\nnasadzovacím\nnasadzovania\nnasadzovanie\nnasadzovaním\nnasadzovaniu\nnasadzovaný\nnasadzovať\nnasakovanie\nnasakovať\nnasáľaniu\nnasáľať\nnasať\nnasatý\nnasávací\nnasávania\nnasávanie\nnasávaný\nnasávať\nnasciturus\nnasedením\nnasedeniu\nnasedieť\nnasekané\nnasekanými\nnasekať\nnasekávane\nnasekávanie\nnasekávať\nnaseknutie\nnaseknúť\nnaservírovania\nnaservírovanú\nnaservírovaným\nnaservírovať\nnaschádzať\nnaschodiť\nnaschvál\nnaschválov\nnaschvály\nnasiakava\nnasiakavaj\nnasiakavajme\nnasiakavajte\nnasiakavajú\nnasiakavajúc\nnasiakaval\nnasiakavala\nnasiakavali\nnasiakavalo\nnasiakavam\nnasiakavame\nnasiakavaš\nnasiakavať\nnasiakavate\nnasiakavosť\nnasiakavý\nnasiaknutia\nnasiaknutie\nnasiaknutiu\nnasiaknuť\nnasiaknutý\nnasiate\nnasiatej\nnasiať\nnásilenstvo\nnásilie\nnásilne\nnásilnícky\nnásilníctvach\nnásilníctvam\nnásilníctvo\nnásilníčka\nnásilník\nnásilno\nnásilnosť\nnásilný\nnasilu\nnasion\nnasivasto\nnasivo\nnaskáče\nnaskákala\nnaskákalo\nnaskákať\nnaskakovaním\nnaskakovať\nnaskenovať\nnaskicované\nnaskicovaním\nnaskicovať\nnaskladania\nnaskladanie\nNaskladaním\nnaskladaný\nnaskladať\nnaskočení\nnaskočenie\nnaskočiť\nnáskok\nnaskrutkovaný\nnaskrutkovať\nnaskrz\nnaskrze\nnaskusovať\nnaskutku\nnaskytajúca\nnaskytať\nnaskytnúť\nnaskytovať\nnasl\nnasladnutý\nnásledkom\nnásledne\nnáslednícky\nnásledníctvach\nnásledníctvam\nnásledníctvo\nnásledníčka\nnásledník\nnáslednosť\nnásledný\nnásledok\nnasledovaniahodný\nnasledovanie\nnasledovaný\nnasledovateľ\nnasledovateľka\nnasledovateľský\nnasledovať\nnasledovne\nnásledovne\nnasledovnícke\nnasledovníčka\nnasledovník\nnasledovný\nnásledovný\nnásledujúci\nnasledujúci\nnaslepo\nnaslinený\nnasliniť\nnaslopaný\nnaslopať\nnaslovovzatý\nnasľubovať\nnaslúchalo\nnasmerovania\nnasmerovanie\nnasmerovaním\nnasmerovaniu\nnasmerovaný\nnasmerovať\nnasmerúvame\nnasmetiť\nnasmiať\nnasmradnúť\nnasneží\nnasnežilo\nnasnežiť\nnasníma\nnasnímaj\nnasnímajme\nnasnímajte\nnasnímajú\nnasnímajúc\nnasnímal\nnasnímala\nnasnímali\nnasnímalo\nnasnímam\nnasnímame\nnasnímaš\nnasnímať\nnasnímate\nnasníval\nnasnovať\nnasnul\nnasnula\nnasnuli\nnasnulo\nnasnuť\nnásobenec\nnásobenie\nnásobený\nnásobiaca\nnásobiaci\nnásobič\nnásobiča\nnásobičom\nnásobilka\nnásobiteľ\nnásobitele\nnásobiteli\nnásobiteľu\nnásobiť\nnásobne\nnasobnosť\nnásobnosť\nnásobný\nnásobok\nnasolenie\nnasolený\nnasoliť\nnasoľovaní\nnasoľovať\nnásoska\nnasotriť\nnaspal\nnaspamäť\nnaspať\nnaspäť\nnaspi\nnaspí\nnaspievané\nnaspievanie\nnaspievať\nnaspodku\nnaspodok\nnaspoly\nnaspor\nnasporenia\nnasporenie\nnasporením\nnasporeniu\nnasporený\nnasporiť\nnasporte\nnasprostasto\nnasprostastý\nnasraný\nnasrať\nnasrdene\nnasrdenosť\nnasrdený\nnasrdiť\nnasršene\nnasršený\nnasršiť\nnasťahovania\nnasťahovanie\nnasťahovaním\nnasťahovaniu\nnasťahovaný\nnasťahovať\nnastato\nnastať\nnastáť\nnastatý\nnastávajúci\nnastavaného\nnastavať\nnastávať\nnástavba\nnástavbách\nnástavbami\nnástavbou\nnástavbu\nnástavby\nnástavca\nnástavcov\nnástavcová\nnástavec\nnastavene\nnastavenie\nnastavený\nnástavieb\nnastaviteľný\nnastaviť\nnastavovací\nnastavovač\nnastavovača\nnastavovači\nnastavovačov\nnastavovane\nnastavovanie\nnastavovaný\nnastavovať\nnasteľ\nnástenka\nnástenný\nnastia\nnastieľa\nnastieľaj\nnastieľajme\nnastieľajte\nnastieľajú\nnastieľajúc\nnastieľal\nnastieľala\nnastieľali\nnastieľalo\nnastieľam\nnastieľame\nnastieľaš\nnastieľať\nnastieľate\nnastielať\nnastískať\nnastlať\nnastohovať\nnastojato\nnástojčivo\nnástojčivosť\nnástojčivý\nnástojenie\nnástojením\nnástojiť\nnastokávať\nnastoknúť\nnastokrát\nnastokýnať\nnastolenie\nnastolený\nnastoliť\nnastoľovania\nnastoľovanie\nnastoľovaním\nnastoľovaniu\nnastoľovaný\nnastoľovať\nnastrádať\nnástraha\nnastráchane\nnastráchano\nnastráchaný\nnastráchať\nnastrachovať\nnastrájať\nnastránkovať\nnastrašene\nnastrašeno\nnastrašený\nnastrašiť\nnastraženia\nnastraženie\nnastražený\nnastražiť\nnastrážiť\nnastrčením\nnastrčený\nnastrčiť\nnástrčkový\nnastrebať\nnastrekoval\nnastrekovanou\nnastrekovať\nnástrel\nnastrelené\nnastreliť\nnástrelná\nnastreľovač\nnastreľovať\nnastriekanie\nnastriekaný\nnastriekať\nnastrieľať\nnástrih\nnastrihá\nnastrihaj\nnastrihajme\nnastrihajte\nnastrihajú\nnastrihajúc\nnastrihal\nnastrihala\nnastrihali\nnastrihalo\nnastrihám\nnastriháme\nnastrihaná\nnastrihané\nnastrihanej\nNastrihaný\nnastriháš\nnastriháte\nnastrihať\nnastrihávať\nnastrihla\nnastrihli\nnastrihlo\nnastrihne\nnastrihnem\nnastrihneme\nnastrihneš\nnastrihnete\nnastrihni\nnastrihnime\nnastrihnite\nnastrihnú\nnastrihnúc\nnastrihnúť\nnastrihol\nnastrihovať\nnastrkať\nnastrkávať\nnastrkol\nnastrkovať\nnastrmiť\nnásťročný\nnástrojár\nnástrojáreň\nnástrojárenský\nnástrojárka\nnástrojárňach\nnástrojárňam\nnástrojársky\nnastrojený\nnastrojiť\nnástroj\nnástrojovne\nnástrojovo\nnástrojový\nnastrúhať\nnástup\nnástupca\nnástupcovu\nnastúpenie\nnastúpený\nnástupicko\nnástupísk\nnástupiska\nnástupiská\nnástupiskách\nnástupiskám\nnástupiskami\nnástupisko\nnástupiskom\nnástupisku\nnástupíšť\nnástupišťa\nnástupišťami\nnástupište\nnástupišti\nnástupišťom\nnástupišťu\nnastúpiť\nnástupkyňa\nnástupne\nnástupnícky\nnástupníctvach\nnástupníctvam\nnástupníctvo\nnástupníčka\nnástupník\nnástupný\nnastupovaní\nnastupovania\nnastupovanie\nnastupovaním\nnastupovať\nnástupový\nnastupujúci\nnastvárať\nnastýkať\nnasugerovať\nnasucho\nnasúkať\nnasuň\nnasunie\nnasuniem\nnasunieme\nnasunieš\nnasuniete\nnasuňme\nnasuňte\nnasunul\nnasunula\nnasunuli\nnasunulo\nnasunutá\nnasunuté\nnasunutia\nnasunutie\nnasunúť\nnasušení\nnasušiť\nnasúvať\nnasvedčovať\nnasviedčať\nnasvietenej\nnasvietení\nnasvietenia\nnasvietenie\nNasvietili\nnasvietiť\nnasycovač\nnasycovaní\nnasycovania\nnasycovanie\nnasycovaním\nnasycovaniu\nnasycovať\nnasypací\nnasýpací\nnasypaná\nnasypané\nnasypaného\nnasypanie\nnasypať\nnasýpať\nnasypávať\nnásyp\nnásypka\nnásypník\nnásypný\nnásypový\nnasypú\nnasypúc\nnasýtene\nnasýtenie\nnasýtenosť\nnasýtený\nnasýtiť\nnásytný\nNaš\nnáš\nnaša\nnaše\nnašedivastý\nnašedivelý\nnašej\nnašepkaní\nnašepkať\nnašepkávač\nnašepkávania\nnašepkávanie\nnašepkávaním\nnašepkávať\nnašepnúť\nnašetrenie\nnašetrením\nnašetrený\nnašetriť\nnášho\nnaši\nnaší\nnašich\nnašije\nnašijem\nnašijeme\nnašiješ\nnašijete\nnašijú\nnašijúc\nnašil\nnašila\nnašili\nnašilo\nnašim\nnaším\nnašime\nnašimi\nnašinec\nnaširoko\nnašite\nnašité\nnašiť\nnašitými\nnašívať\nnášivka\nnaškierať\nnaškrab\nnaškrabaný\nnaškrabať\nnaškriab\nnaškriabať\nnaškrknúť\nnaškrobenej\nnaškrobených\nnaškrobeným\nnaškrobiť\nnaškrtnúť\nnášľap\nnášľapný\nnašľapovať\nnášľapový\nnašliapaná\nnašliapať\nnašliapnuté\nnašliapnuť\nnašmátrať\nnašminkovať\nnášmu\nnašom\nnašou\nnašpintať\nnašponovali\nnašponovaný\nnašponovať\nnašpor\nnašporiť\nnašporovať\nnašporte\nnašprihať\nnašpúliť\nnašpuľovať\nnašraubovať\nnašskosť\nnašsky\nnašský\nnaštartovania\nnaštartovanie\nnaštartovaním\nnaštartovaniu\nnaštartovaný\nnaštartovať\nnašťastie\nnašťať\nnaštekať\nnaštelovaný\nnaštepený\nnaštepiť\nNaštický\nnaštiepa\nnaštiepaj\nnaštiepajme\nnaštiepajte\nnaštiepajú\nnaštiepajúc\nnaštiepam\nnaštiepame\nnaštiepaš\nnaštiepate\nnaštiepať\nnaštiepení\nnaštiepiť\nnaštimovať\nnaštipnutie\nnaštrbenia\nnaštrbenie\nnaštrbením\nnaštrbeniu\nnaštrbený\nnaštrbiť\nnaštrbovať\nnaštrkla\nnaštrkli\nnaštrklo\nnaštrkne\nnaštrknem\nnaštrkneme\nnaštrkneš\nnaštrknete\nnaštrkni\nnaštrknime\nnaštrknite\nnaštrknú\nnaštrknúc\nnaštrknúť\nnaštrkol\nnaštrkoval\nnaštrkovala\nnaštrkovali\nnaštrkovalo\nnaštrkovať\nnaštrkuj\nnaštrkuje\nnaštrkujem\nnaštrkujeme\nnaštrkuješ\nnaštrkujete\nnaštrkujme\nnaštrkujte\nnaštrkujú\nnaštrkujúc\nnaštudovania\nnaštudovanie\nnaštudovaný\nnaštudovať\nnaštvanie\nnaštvaný\nnaštvať\nnaštvi\nnaštvime\nnaštvite\nnaštylizovať\nnaštylizuje\nnašu\nnašuchor\nnašuchorený\nnašuchoriť\nnašuchorte\nnašuchovacie\nnašuškať\nnašuškávať\nnašušor\nnašušoriť\nnašušorte\nnatáčania\nnatáčanie\nnatáčaním\nnatáčaný\nnatáčať\nnatáčka\nnaťahaný\nnaťahať\nnaťahovací\nnaťahovačka\nnaťahovaná\nnaťahované\nnaťahovanie\nnaťahovanom\nnaťahovanú\nnaťahovaných\nnaťahovanými\nnaťahovať\nnaťahujúci\nnaťali\nNatália\nnatalita\nnatalitná\nnatalitnú\nNatálka\nnatálny\nnatankovania\nnatankovanie\nnatankovaniu\nnatankovaný\nnatankovať\nnaťapiť\nnatárané\nnatárať\nNatáš\nNataša\nnaťať\nnatavenie\nnatavený\nnatavovanie\nnatavujú\nnate\nnatehlovo\nnatekať\nnatenko\nnatenšie\nnateraz\nnáter\nnáterivo\nnáterový\nnatesno\nnatešene\nnatešeno\nnatešený\nnatiahnú\nnatiahnúc\nnatiahnutia\nnatiahnutie\nnatiahnutím\nnatiahnuť\nnatiahnutý\nnatiecť\nnatieracie\nnatieracím\nnatieracom\nnatierač\nnatieračka\nnatieračský\nnatieračstvo\nnatierania\nnatieranie\nnatieraním\nnatieraniu\nnatieraný\nnatierať\nnátierka\nnatískať\nnatisnuté\nnatisnúť\nnativita\nnativizmus\nnatívny\nnatláčania\nnatláčanie\nnatláčaním\nnatláčať\nnatlačenia\nnatlačenie\nnatlačený\nnatlačiť\nnátlačkovým\nnátlačku\nnátlačky\nnátlak\nnátlakovo\nnátlakový\nnatĺcť\nnatĺkať\nnatmavo\nnatni\nnato\nNATO\nnatočene\nnatočenia\nnatočenie\nnatočeniu\nnatočený\nnatočiť\nnatoľko\nnátoňa\nnátone\nnátoni\nnátoň\nnátoňmi\nnátoňoch\nnátoňom\nnátoňov\nnatónovaná\nnatónovať\nnátoňu\nnatrafiť\nnatrápiť\nnatrasenú\nnatŕčania\nnatŕčaním\nnatŕčať\nnatrčená\nnatrčené\nnatrčenej\nnatrčenou\nnatrčenú\nnatrčených\nnatrčenými\nnatrčiť\nnatrémia\nnatrené\nnatrénovanie\nnatrénovaný\nnatrénovať\nnatrepať\nnatretie\nnatretý\nnatrhať\nnatrhávať\nnatrhnuté\nnatrhnutou\nnatrhnúť\nnatriasačka\nnatriasanie\nnatriasaním\nnatriasaný\nnatriasať\nnatriasť\nnatrieskané\nnatrieskaných\nnatrieskať\nnatrieť\nnátriový\nnátriumbikarbonát\nnátrium\nnatrolit\nnátron\nnatrúbiť\nnátrubkový\nnátrubok\nnatruc\nnatrúc\nnatrúsiť\nnatrvalo\nnátryl\nnátržník\nnátržníku\nnátržníky\nnatuho\nnaťukalo\nnatúkať\nnatupírovať\nnátur\nnaturáliách\nnaturáliám\nnaturáliami\nnaturálie\nnaturálií\nnaturalista\nnaturalisticky\nnaturalistický\nnaturalistka\nnaturalizácia\nnaturalizačný\nnaturalizmus\nnaturalizovaný\nnaturalizovať\nnaturálny\nnátura\nnaturel\nnaturele\nnaturelmi\nnáturista\nnaturizmus\nNatúžil\nnatvrdnutý\nnatvrdo\nnaubližovať\nnaúčať\nnaučene\nnaučenie\nnaučený\nnaučiť\nnáučno\nnáučný\nnaúčtovanie\nnaúčtovaný\nnaúčtovať\nnaufragium\nnaúchytky\nnáukach\nnáukam\nnáuka\nnaukladaný\nnaukladať\nnáukobeh\nnáukovo\nnáukový\nnaupatia\nnauplius\nNauru\nnauruský\nnausadzovať\nnáustok\nnáušnica\nnáušnička\nnautický\nnautika\nNautile\nnautilu\nnautilus\nNautilus\nnauvažovať\nnauzea\nnaúzko\nnav\nnáv\nnáva\nnaváb\nnavábiť\nnavaď\nnavadiť\nnavádzací\nnavádzač\nnavádzačoch\nnavádzane\nnavádzanie\nnavádzaný\nnavádzať\nnaváľať\nnával\nnavalení\nnavaliť\nnávalmi\nnavaľovať\nnavanie\nnavar\nNávar\nnaváranie\nnaváraním\nnavárať\nnavareného\nnavarenie\nnavarením\nnavariť\nnavarovanie\nnavarovať\nNavarrčan\nNavarrsko\nnavarrský\nnavarte\nnáväznosť\nnáväznosti\nnáväzností\nnaväzovali\nnaväzovania\nnaväzovanie\nnaväzovať\nnaväzuje\nnaväzujem\nnaväzujeme\nnaväzujú\nnaväzujúcej\nnavážané\nnavážaní\nnavážania\nnavážanie\nnavážaním\nnavážať\nnavážené\nnavážení\nnaváženie\nnavážených\nnavážiť\nnavážka\nnávažok\nnavažovaní\nnavažovanie\nnavažovaním\nnavažovaniu\nnavažovať\nnavčera\nnavdá\nnavdalo\nnavdať\nnavečer\nnavečerať\nnavedenia\nnavedenie\nnavedeniu\nnavedený\nnávej\nnaveky\nnaveľa\nnaverbovanie\nnaverbovaný\nnaverbovať\nnaverímboha\nnáves\nnavesená\nnavesené\nnavesených\nnáveska\nnávesný\nnávesový\nnávestidlo\nnávestie\nnávestím\nnávesť\nnávestne\nnávestný\nnavešané\nnavešanú\nnavešaných\nnavešať\nnaveta\nnáveterný\nnávetrie\nnavezenie\nnavezením\nnavezený\nnavi\nnaviac\nnaviať\nnaviaty\nnaviazanie\nnaviazanosť\nnaviazanosti\nnaviazanosťou\nnaviazaný\nnaviazať\nnaviaž\nnaviaže\nnaviažem\nnaviažeme\nnaviažeš\nnaviažete\nnaviažme\nnaviažte\nnaviažu\nnaviažuc\nnávidieť\nnavidomoči\nnavierať\nnaviesť\nnavievať\nnaviezť\nnavig\nnavigácia\nnavigačný\nnavigačný\nnavigátor\nnavigátore\nnavigátorka\nnavigátormi\nnavigátorský\nnavíjací\nnavíjač\nnavíjačka\nnavíjačovi\nnavíjadlo\nnavijak\nnavíjania\nnavíjanie\nnavíjaním\nnavíjaný\nnavijáreň\nnavijárne\nnavíjať\nnavije\nnavijem\nnavijeme\nnaviješ\nnavijete\nnavijú\nnavijúc\nnavil\nnavila\nnavili\nnavilo\nnavime\nnavinovať\nnavinúť\nnavinutý\nnavite\nnaviť\nnavláčiť\nnavlas\nnavlažiť\nnavlečenú\nnávlečka\nnavlek\nnávlek\nnavlhavý\nnavlhčenie\nnavlhčený\nnavlhči\nnavlhčime\nnavlhčite\nnavlhčiť\nnavlhčovací\nnavlhčovanie\nnavlhčovať\nnavlhko\nnavlhnutiu\nnavlhnúť\nnavlhnutý\nnavliecť\nnávliečka\nnávliečky\nnavliekacej\nnavliekacieho\nnavliekaní\nnavliekania\nnavliekanie\nnavliekaním\nnavliekať\nnavlni\nnávnad\nnávnada\nnavnadený\nnavnadiť\nnavnaďovať\nnavnádzať\nnavnivoč\nnávod\nnávodca\nnávodcovia\nnavodenia\nnavodenie\nnavodením\nnavodeniu\nnavodený\nnavodiť\nnávodná\nnávodného\nnávodnej\nnavodzovanie\nnavodzovaním\nnavodzovať\nnavôkol\nnavolať\nnavon\nnavoňaný\nnavoňať\nnavoňavkovať\nnavonok\nnavoskovaná\nnávoz\nnavozenom\nNavozený\nnavoziť\nnávozu\nnavracaného\nnavracaní\nnavracania\nnavracanie\nnavracaním\nnavracaniu\nnavracať\nnávrat\nnavrátenec\nnavrátenecký\nnavrátenia\nnavrátenie\nnavrátením\nnavráteniu\nnavrátenkyňa\nnavrátený\nnavrátilec\nnavrátiť\nnavrátivšieho\nnávratka\nnávratmi\nnávratne\nnávratnosť\nnávratný\nnávratový\nnavrav\nnavrávať\nnavravieť\nnavrč\nnavrelina\nnávrha\nnávrhár\nnávrhárka\nnávrhársky\nnávrhárstvach\nnávrhárstvam\nnávrhárstvo\nnávrh\nnavrhnutia\nnavrhnutie\nnavrhnutím\nnavrhnutiu\nnavrhnúť\nnavrhnutý\nnavrhovanie\nnavrhovaný\nnavrhovateľ\nnavrhovateľka\nnavrhovateľovho\nnavrhovateľský\nnavrhovať\nnávrhový\nnavrch\nNavrchol\nnavrchu\nnavrieť\nnavrstvenia\nnavrstvenie\nnavrstvenina\nnavrstvených\nnavrstvi\nnavrstvime\nnavrstvite\nnavrstviť\nnavrstvovať\nnavŕšenia\nnavŕšeniam\nnavŕšenie\nnavŕšením\nnavŕšeniu\nnavŕšený\nnávršie\nnavŕšiť\nnavršovaného\nnavršovaní\nnavršovania\nnavršovanie\nnavršovaním\nnavršovaniu\nnavršovať\nnávrt\nnavŕtaná\nnavŕtané\nnavŕtaní\nnavŕtania\nnavŕtanie\nnavŕtaných\nnavŕtaným\nnavŕtať\nnavrtávač\nnavrtávaním\nnavrtávať\nnávrte\nnávrtu\nnavrúbľovať\nnavrúc\nnávštev\nnávšteva\nnávštevne\nnávštevnici\nnávštevníckeho\nnávštevníckej\nnávštevníckou\nnávštevnícku\nnávštevnícky\nnávštevníckym\nnávštevníčka\nnávštevník\nnávštevnosť\nnávštevný\nnavštevovania\nnavštevovanie\nnavštevovaný\nnavštevovateľ\nnavštevovateľka\nnavštevovať\nnavštevujúci\nnavštívenie\nnavštívenka\nnavštívený\nnavštíviť\nnavyberať\nnavykanie\nnavykať\nnávyk\nnavykladať\nnavyknúť\nnavyknutý\nnávykový\nnavymýšľať\nnavyprávať\nnavysoko\nnavystrájať\nnavyše\nnavýšenie\nnavýšiť\nnavyšovanie\nnavyšovať\nnavyvádzať\nnavyžadoval\nnavzájom\nnavzdor\nnavzdory\nnavždy\nnavždycky\nnazačiatku\nnazad\nnazadku\nnazadok\nnazaháľal\nNazaháľali\nnazajtra\nnazákonný\nnazála\nnazalizácia\nnazálny\nnazarejskí\nnazarén\nnazarenizmus\nnazarénstvo\nnazaretský\nnazáujem\nnazberaný\nnazberať\nnazberká\nnazberkaj\nnazberkajme\nnazberkajte\nnazberkajú\nnazberkajúc\nnazberkal\nnazberkala\nnazberkali\nnazberkalo\nnazberkám\nnazberkáme\nnazberkaný\nnazberkáš\nnazberkať\nnazberkáte\nnazbieranie\nnazbieraný\nnazbierať\nnazbíjať\nnazbyt\nnazdar\nnazdarboh\nnazdarte\nnazdať\nnazdávať\nnazelenasto\nnazelenastý\nnazelenkasto\nnazelenkastý\nnazeleno\nnazerané\nnazeranie\nnazerať\nnazháňať\nnazhŕňať\nnazhromaždenia\nnazhromaždenie\nnazhromaždený\nnazhromaždi\nnazhromaždime\nnazhromaždite\nnazhromaždiť\nnazhromažďovať\nnazhromažďujú\nnazízať\nnaziznúť\nnazlostene\nnazlosteno\nnazlostený\nnazlosti\nnazlostime\nnazlostite\nnazlostiť\nnazmar\nnaznačenia\nnaznačenie\nnaznačeniu\nnaznačený\nnaznačiť\nnaznačovanieN\nnaznačovaný\nnaznačovať\nnaznačujúceho\nnaznačujúci\nnaznak\nnáznak\nnáznakovite\nnáznakovito\nnáznakovitosť\nnáznakovitý\nnáznakovo\nnáznakovosť\nnáznakový\nnaznalosť\nnaznášať\nnazofaryngitída\nnázor\nnázorne\nnázornosť\nnázorný\nnázorovo\nnázorový\nnázov\nnazrážaný\nnazreté\nnazretia\nnazretie\nnazretím\nnazrieť\nnazrúc\nnazuli\nnazúrených\nnazúriť\nnazúva\nnazvane\nnazvanie\nnazvaný\nnazvať\nnazvi\nnazvime\nnazvite\nnazvláčať\nnazvolávať\nnázvoslovie\nnázvoslovný\nnázvový\nnázvuk\nnazvyš\nnazvyšok\nnazývajúci\nnazývanie\nnazývaniu\nnazývaný\nnazývaný\nnazývať\nnažalostia\nnažať\nnažehlenie\nnažehlený\nnažehlia\nnažehliť\nnažehľovania\nnažeravene\nnažeravenia\nnažeravenie\nnažeraveniu\nnažeravený\nnažhavenia\nnaži\nNaži\nnažije\nnažijem\nnažijeme\nnažiješ\nnažijete\nnažijú\nnažijúc\nnažil\nnažila\nnažili\nnažilo\nnažime\nnažiť\nnažite\nnažívanie\nnažívať\nnažive\nnaživo\nnažka\nnažltasto\nnažltastý\nnažltkasto\nnažltkastý\nnažltkavo\nnažltkavý\nnažltla\nnažltli\nnažltlo\nnažltnú\nnažltnutý\nnažlto\nnažmolený\nnažoba\nnažrať\nnažratý\nNdrangheta\nne\nneabsorbujúci\nneadekvátnosť\nneadekvátnosti\nneadekvátnosťou\nneadministrujú\nneadresne\nneakceptovania\nneakceptovanie\nneakceptovaním\nneakceptovaniu\nneaklimatizoval\nneaklimatizovala\nneaklimatizovali\nneaklimatizovalo\nneaklimatizovať\nneaklimatizuj\nneaklimatizuje\nneaklimatizujem\nneaklimatizujeme\nneaklimatizuješ\nneaklimatizujete\nneaklimatizujme\nneaklimatizujte\nneaklimatizujú\nneaklimatizujúc\nneaktívnosti\nneaktivovanie\nneaktivovaný\nneaktuálnosť\nneaktuálnosti\nneaktuálností\nneaktuálnosťou\nneakumuloval\nneakumulovala\nneakumulovali\nneakumulovalo\nneakumulovaný\nneakumulovať\nneakumuluj\nneakumuluje\nneakumulujem\nneakumulujeme\nneakumuluješ\nneakumulujete\nneakumulujme\nneakumulujte\nneakumulujú\nneakumulujúc\nneálk\nnealkoholicky\nnealko\nneamer\nneamerikanizoval\nneamerikanizovala\nneamerikanizovali\nneamerikanizovalo\nneamerikanizovať\nneamerikanizuj\nneamerikanizuje\nneamerikanizujem\nneamerikanizujeme\nneamerikanizuješ\nneamerikanizujete\nneamerikanizujme\nneamerikanizujte\nneamerikanizujú\nneamerikanizujúc\nneandertálec\nneandertálsky\nneandertálsky\nneandrtálec\nneandrtálsky\nneandrtálsky\nneanektoval\nneanektovala\nneanektovali\nneanektovalo\nneanektovať\nneanektuj\nneanektuje\nneanektujem\nneanektujeme\nneanektuješ\nneanektujete\nneanektujme\nneanektujte\nneanektujú\nneanektujúc\nneangažovanosť\nneangažovaný\nneanglicky\nneanketoval\nneanketovala\nneanketovali\nneanketovalo\nneanketovať\nneanketuj\nneanketuje\nneanketujem\nneanketujeme\nneanketuješ\nneanketujete\nneanketujme\nneanketujte\nneanketujú\nneanketujúc\nneanonymizoval\nneanonymizovala\nneanonymizovali\nneanonymizovalo\nneanonymizovať\nneanonymizuj\nneanonymizuje\nneanonymizujem\nneanonymizujeme\nneanonymizuješ\nneanonymizujete\nneanonymizujme\nneanonymizujte\nneanonymizujú\nneanonymizujúc\nNeapol\nNeapolčan\nNeapoli\nneapolský\nneaproboval\nneaprobovala\nneaprobovali\nneaprobovalo\nneaprobovať\nneaprobuj\nneaprobuje\nneaprobujem\nneaprobujeme\nneaprobuješ\nneaprobujete\nneaprobujme\nneaprobujte\nneaprobujú\nneaprobujúc\nnearchivovanie\nnearktis\nnearmovaného\nnearomatizovaný\nneartikuloval\nneartikulovala\nneartikulovali\nneartikulovalo\nneartikulovane\nneartikulovať\nneartikuluj\nneartikuluje\nneartikulujem\nneartikulujeme\nneartikuluješ\nneartikulujete\nneartikulujme\nneartikulujte\nneartikulujú\nneartikulujúc\nneasistoval\nneasistovala\nneasistovali\nneasistovalo\nneasistovať\nneasistuj\nneasistuje\nneasistujem\nneasistujeme\nneasistuješ\nneasistujete\nneasistujme\nneasistujte\nneasistujú\nneasistujúc\nneatakovanom\nneatomizoval\nneatomizovala\nneatomizovali\nneatomizovalo\nneatomizovanie\nneatomizovať\nneatomizuj\nneatomizuje\nneatomizujem\nneatomizujeme\nneatomizuješ\nneatomizujete\nneatomizujme\nneatomizujte\nneatomizujú\nneatomizujúc\nnebabre\nnebabrem\nnebabreme\nnebabreš\nnebabrete\nnebabri\nnebabrime\nnebabrite\nnebabrú\nnebabrúc\nnebadane\nnebadaný\nnebadateľne\nnebadká\nnebadkaj\nnebadkajme\nnebadkajte\nnebadkajú\nnebadkajúc\nnebadkal\nnebadkala\nnebadkali\nnebadkalo\nnebadkám\nnebadkáme\nnebadkáš\nnebadkať\nnebadkáte\nnebadurká\nnebadurkaj\nnebadurkajme\nnebadurkajte\nnebadurkajú\nnebadurkajúc\nnebadurkal\nnebadurkala\nnebadurkali\nnebadurkalo\nnebadurkám\nnebadurkáme\nnebadurkáš\nnebadurkať\nnebadurkáte\nnebahni\nnebahnime\nnebahnite\nnebalený\nNebalkanizujme\nnebárs\nnebasklon\nnebeč\nnebeľám\nnebelanský\nnebelej\nnebelejme\nnebelejte\nnebelejú\nnebelejúc\nnebes\nNebesa\nnebesách\nnebesám\nnebesami\nnebesá\nnebesiách\nnebesiám\nnebesia\nnebesky\nnebeský\nnebesni\nnebesnime\nnebesnite\nnebešťan\nnebešťania\nnebešťanka\nnebezpeč\nnebezpečenstvo\nnebezpečne\nnebežkoval\nnebežkovala\nnebežkovali\nnebežkovalo\nnebežkovať\nnebežkuj\nnebežkuje\nnebežkujem\nnebežkujeme\nnebežkuješ\nnebežkujete\nnebežkujme\nnebežkujte\nnebežkujú\nnebežkujúc\nnebíčko\nnebielený\nnebitý\nNebiže\nnebľabotajúc\nnebľač\nneblafujem\nnebláha\nnebláhaj\nnebláhajme\nnebláhajte\nnebláhajú\nnebláhajúc\nnebláham\nnebláhame\nnebláhaš\nnebláhate\nneblaho\nneblbla\nneblbli\nneblblo\nneblbne\nneblbnem\nneblbneme\nneblbneš\nneblbnete\nneblbni\nneblbnime\nneblbnite\nneblbnú\nneblbnúc\nneblbnúť\nneblbol\nneblbotajúc\nneblč\nneblednúci\nneblesla\nneblesli\nnebleslo\nneblesne\nneblesnem\nneblesneme\nneblesneš\nneblesnete\nneblesni\nneblesnime\nneblesnite\nneblesnú\nneblesnúc\nneblesnúť\nneblesol\nneblikotajúc\nneblkoť\nneblkoťe\nneblkoťem\nneblkoťeme\nneblkoťeš\nneblkoťete\nneblkoťme\nneblkoťte\nneblkoťú\nneblkoťúc\nneblokovania\nneblokovanie\nneblokovaný\nneblokujúci\nnebľusla\nnebľusli\nnebľuslo\nnebľusne\nnebľusnem\nnebľusneme\nnebľusneš\nnebľusnete\nnebľusni\nnebľusnime\nnebľusnite\nnebľusnú\nnebľusnúc\nnebľusnúť\nnebľusol\nneblysla\nneblysli\nneblyslo\nneblysne\nneblysnem\nneblysneme\nneblysneš\nneblysnete\nneblysni\nneblysnime\nneblysnite\nneblysnú\nneblysnúc\nneblysnúť\nneblysol\nneblyšť\nneblyšťme\nneblyšťte\nnebohý\nnebojácnosť\nnebojácny\nnebojazlivo\nnebojazlivosť\nnebojsa\nnebol\nneboľ\nnebola\nneboľme\nnebolo\nneboľte\nnebo\nnebonzoval\nnebonzovala\nnebonzovali\nnebonzovalo\nnebonzovať\nnebonzuj\nnebonzuje\nnebonzujem\nnebonzujeme\nnebonzuješ\nnebonzujete\nnebonzujme\nnebonzujte\nnebonzujú\nnebonzujúc\nnebor\nneboráčik\nneboráčka\nneborák\nneborka\nneborký\nneborte\nnebosklon\nnebotyčný\nnebovo\nnebovobelasý\nnebovomodrý\nnebový\nneboža\nnebože\nnebožeká\nnebožekaj\nnebožekajme\nnebožekajte\nnebožekajú\nnebožekajúc\nnebožekal\nnebožekala\nnebožekali\nnebožekalo\nnebožekám\nnebožekáme\nnebožekáš\nnebožekať\nnebožekáte\nnebožiatko\nnebožiatok\nnebožieca\nnebožiece\nnebožieci\nnebožiec\nnebožiecmi\nnebožiecoch\nnebožiecom\nnebožiecov\nnebožiecu\nnebožký\nnebožtík\nnebožtíkovej\nnebráneniu\nnebrania\nnebranie\nNebraska\nNebraske\nnebratie\nNebratie\nnebrbce\nnebrbcem\nnebrbceme\nnebrbceš\nnebrbcete\nnebrbci\nnebrbcime\nnebrbcite\nnebrbcú\nnebrbcúc\nnebrboc\nnebrboce\nnebrbocem\nnebrboceme\nnebrboceš\nnebrbocete\nnebrbocme\nnebrbocte\nnebrbocú\nnebrbocúc\nnebrbotajúc\nnebrbotal\nnebrbotala\nnebrbotali\nnebrbotalo\nnebrbotať\nnebrbtal\nnebrbtala\nnebrbtali\nnebrbtalo\nnebrbtať\nnebrechaj\nnebrechajme\nnebrechajte\nnebrechajúc\nnebreš\nnebreše\nnebrešem\nnebrešeme\nnebrešeš\nnebrešete\nnebrešme\nnebrešte\nnebrešú\nnebrešúc\nnebrň\nnebrnč\nnebrnči\nnebrnčime\nnebrnčite\nnebrnej\nnebrnejme\nnebrnejte\nnebrnejú\nnebrnejúc\nnebrnie\nnebrniem\nnebrnieme\nnebrnieš\nnebrniete\nnebruč\nnebručal\nnebručala\nnebručali\nnebručalo\nnebručať\nnebručí\nnebručia\nnebručiac\nnebručím\nnebručíme\nnebručíš\nnebručíte\nnebručme\nnebručte\nnebrúsený\nnebrzdený\nnebrzdi\nnebrzdime\nnebrzdite\nNebrzdite\nnebublajúc\nnebublal\nnebublala\nnebublali\nnebublalo\nnebublať\nnebuble\nnebublem\nnebubleme\nnebubleš\nnebublete\nnebubli\nnebublime\nnebublite\nnebublú\nnebublúc\nnebuč\nnebude\nnebudem\nnebudeme\nnebudeš\nnebudete\nnebudovania\nnebudovaním\nnebudovaný\nnebudú\nnebuchotajúc\nnebula\nnebulant\nnebulárny\nnebulizátor\nnebulózny\nnebulvárnosť\nnebútor\nnebútorte\nnebuzeroval\nnebuzerovala\nnebuzerovali\nnebuzerovalo\nnebuzerovať\nnebuzeruj\nnebuzeruje\nnebuzerujem\nnebuzerujeme\nnebuzeruješ\nnebuzerujete\nnebuzerujme\nnebuzerujte\nnebuzerujú\nnebuzerujúc\nnebyrokratizovania\nnebytí\nnebytia\nnebytie\nnebytím\nnebývalo\nnebývanie\nnebzuč\nnebzukotajúc\nnecáloval\nnecálovala\nnecálovali\nnecálovalo\nnecálovať\nnecáluj\nnecáluje\nnecálujem\nnecálujeme\nnecáluješ\nnecálujete\nnecálujme\nnecálujte\nnecálujú\nnecálujúc\nnecápajúc\nnecapla\nnecapli\nnecaplo\nnecapne\nnecapnem\nnecapneme\nnecapneš\nnecapnete\nnecapni\nnecapnime\nnecapnite\nnecapnú\nnecapnúc\nnecapnúť\nnecapol\nnecelejme\nnecelejte\nnecelejú\nnecelejúc\nnecenený\nnecenová\nnecenzurovaný\nnecer\nnecerte\nnecertifikovaný\nneceséra\nnecesér\nneceséri\nnecesérmi\nneceséroch\nnecesérom\nnecesérov\nneceséru\nneceséry\nnecesta\nnecibrí\nnecibrím\nnecibríme\nnecibríš\nnecibríte\nnecielené\nnecielenú\nnecielených\nnecirkevný\nnecirkulovaný\nnecit\nneciteľne\nneciteľnosť\nnecítiaci\nnecitlivo\nnecitlivosť\nnecitne\nnecitnosť\nnecitný\nnecivej\nnecivejme\nnecivejte\nnecivejú\nnecivejúc\nnecivie\nneciviem\nnecivieme\nnecivieš\nneciviete\nnecivilizovane\nnecking\nnecmukla\nnecmukli\nnecmuklo\nnecmukne\nnecmuknem\nnecmukneme\nnecmukneš\nnecmuknete\nnecmukni\nnecmuknime\nnecmuknite\nnecmuknú\nnecmuknúc\nnecmuknúť\nnecmukol\nnecnej\nnecnejme\nnecnejte\nnecnejú\nnecnejúc\nnecnel\nnecnela\nnecneli\nnecnelo\nnecnie\nnecniem\nnecnieme\nnecnieš\nnecnieť\nnecniete\nnecnosť\nnecnota\nnecombáľa\nnecombáľaj\nnecombáľajme\nnecombáľajte\nnecombáľajú\nnecombáľajúc\nnecombáľal\nnecombáľala\nnecombáľali\nnecombáľalo\nnecombáľam\nnecombáľame\nnecombáľaš\nnecombáľať\nnecombáľate\nNecpál\nNecpaloch\nNecpalom\nNecpaly\nnecrč\nnecrči\nnecrčime\nnecrčite\nnecŕka\nnecŕkam\nnecŕkame\nnecŕkaš\nnecŕkate\nnecti\nnectime\nnectite\nnecucká\nnecuckaj\nnecuckajme\nnecuckajte\nnecuckajú\nnecuckajúc\nnecuckal\nnecuckala\nnecuckali\nnecuckalo\nnecuckám\nnecuckáme\nnecuckáš\nnecuckať\nnecuckáte\nnecudne\nnecudnica\nnecudník\nnecudnosť\nnecurgla\nnecurgli\nnecurglo\nnecurgne\nnecurgnem\nnecurgneme\nnecurgneš\nnecurgnete\nnecurgni\nnecurgnime\nnecurgnite\nnecurgnú\nnecurgnúc\nnecurgnúť\nnecurgol\nnecurigá\nnecurigaj\nnecurigajme\nnecurigajte\nnecurigajú\nnecurigajúc\nnecurigal\nnecurigala\nnecurigali\nnecurigalo\nnecurigám\nnecurigáme\nnecurigáš\nnecurigať\nnecurigáte\nnecurigla\nnecurigli\nnecuriglo\nnecurigne\nnecurignem\nnecurigneme\nnecurigneš\nnecurignete\nnecurigni\nnecurignime\nnecurignite\nnecurignú\nnecurignúc\nnecurignúť\nnecurigol\nnecvendži\nnecvendžime\nnecvendžite\nnecviká\nnecvikaj\nnecvikajme\nnecvikajte\nnecvikajú\nnecvikajúc\nnecvikal\nnecvikala\nnecvikali\nnecvikalo\nnecvikám\nnecvikáme\nnecvikáš\nnecvikať\nnecvikáte\nnecvikla\nnecvikli\nnecviklo\nnecvikne\nnecviknem\nnecvikneme\nnecvikneš\nnecviknete\nnecvikni\nnecviknime\nnecviknite\nnecviknú\nnecviknúc\nnecviknúť\nnecvikol\nnečačká\nnečačkaj\nnečačkajme\nnečačkajte\nnečačkajú\nnečačkajúc\nnečačkal\nnečačkala\nnečačkali\nnečačkalo\nnečačkám\nnečačkáme\nnečačkáš\nnečačkať\nnečačkáte\nnečakane\nnečakanie\nnečakáva\nnečakávaj\nnečakávajme\nnečakávajte\nnečakávajú\nnečakávajúc\nnečakával\nnečakávala\nnečakávali\nnečakávalo\nnečakávam\nnečakávame\nnečakávaš\nnečakávať\nnečakávate\nnečapci\nnečapcime\nnečapcite\nnečar\nnečarbal\nnečarbala\nnečarbali\nnečarbalo\nnečarbať\nnečarbe\nnečarbem\nnečarbeme\nnečarbeš\nnečarbete\nnečarbi\nnečarbime\nnečarbite\nnečarbú\nnečarbúc\nnečarte\nNečasa\nnečas\nnečasovo\nnečasovosť\nnečepči\nnečepčime\nnečepčite\nnečeper\nnečeperte\nnečer\nnečerpania\nnečerpanie\nnečerpaním\nnečerpaniu\nnečerpaný\nnečerte\nnečerti\nnečertime\nnečertite\nnečervavejme\nnečervavejte\nnečervavejú\nnečervavejúc\nnečervavel\nnečervavela\nnečervaveli\nnečervavelo\nnečervavie\nnečervaviem\nnečervavieme\nnečervavieš\nnečervavieť\nnečervaviete\nnečestne\nnečestnosť\nnečičre\nnečičrem\nnečičreme\nnečičreš\nnečičrete\nnečičri\nnečičrime\nnečičrite\nnečičrú\nnečičrúc\nnečin\nnečinne\nnečipči\nnečipčime\nnečipčite\nnečistený\nnečisti\nnečistime\nnečistite\nnečisto\nnečistosť\nnečistôt\nnečistotách\nnečistotám\nnečistotami\nnečistotnosť\nnečítanie\nnečitateľne\nnečitateľnosť\nnečľapoc\nnečľapoce\nnečľapocem\nnečľapoceme\nnečľapoceš\nnečľapocete\nnečľapocme\nnečľapocte\nnečľapocú\nnečľapocúc\nnečlen\nnečliapka\nnečliapkaj\nnečliapkajme\nnečliapkajte\nnečliapkajú\nnečliapkajúc\nnečliapkal\nnečliapkala\nnečliapkali\nnečliapkalo\nnečliapkam\nnečliapkame\nnečliapkaš\nnečliapkať\nnečliapkate\nnečloveče\nnečlovek\nnečloveku\nnečrpania\nnečuč\nnečučal\nnečučala\nnečučali\nnečučalo\nnečučať\nnečučí\nnečučia\nnečučiac\nnečučím\nnečučíme\nnečučíš\nnečučíte\nnečučme\nnečučte\nnečudo\nnečuchre\nnečuchrem\nnečuchreme\nnečuchreš\nnečuchrete\nnečuchri\nnečuchrime\nnečuchrite\nnečuchrú\nnečuchrúc\nnečujne\nnečujnosť\nnečum\nnečumel\nnečumela\nnečumeli\nnečumelo\nnečumí\nnečumia\nnečumiac\nnečumieť\nnečumím\nnečumíme\nnečumíš\nnečumíte\nnečumme\nnečumte\nnečurč\nnečurči\nnečurčime\nnečurčite\nnečurkotá\nnečurkotaj\nnečurkotajme\nnečurkotajte\nnečurkotajú\nnečurkotajúc\nnečurkotám\nnečurkotáme\nnečurkotáš\nnečurkotáte\nnečuš\nnečuteľný\nnečvachci\nnečvachcime\nnečvachcite\nnečvŕka\nnečvŕkaj\nnečvŕkajme\nnečvŕkajte\nnečvŕkajú\nnečvŕkajúc\nnečvŕkal\nnečvŕkala\nnečvŕkali\nnečvŕkalo\nnečvŕkam\nnečvŕkame\nnečvŕkaš\nnečvŕkať\nnečvŕkate\nned\nnedajboh\nnedajbože\nneďaleko\nnedania\nnedanie\nnedar\nnedarte\nNedašovská\nnedašovské\nnedávajúci\nneďavká\nneďavkaj\nneďavkajme\nneďavkajte\nneďavkajú\nneďavkajúc\nneďavkal\nneďavkala\nneďavkali\nneďavkalo\nneďavkám\nneďavkáme\nneďavkáš\nneďavkať\nneďavkáte\nnedávno\nnedbaj\nnedbajka\nnedbajník\nnedbajsky\nnedbajský\nnedbajstvo\nnedbajúca\nnedbajúci\nnedbák\nnedbalec\nnedbalejšej\nnedbalejší\nnedbalejšia\nnedbalejšie\nnedbalejšieho\nnedbalejšiemu\nnedbalejších\nnedbalejším\nnedbalejšími\nnedbalejšiu\nnedbalejšom\nnedbalejšou\nnedbalosť\nnedbalostný\nnedbalý\nnedbaním\nnedbanlivec\nnedbanlivo\nnedbanlivosť\nnedbanlivý\nnedeblokované\nnedeblokovanie\nnedebni\nnedebnime\nnedebnite\nnededikoval\nnededikovala\nnededikovali\nnededikovalo\nnededikovať\nnededikuj\nnededikuje\nnededikujem\nnededikujeme\nnededikuješ\nnededikujete\nnededikujme\nnededikujte\nnededikujú\nnededikujúc\nnededský\nNededza\nNededzi\nnedefinovanie\nnedefinovaním\nnedefinovateľne\nnedefinovateľnosť\nnedefinovateľný\nnedeformovaný\nnedeformujúci\nnedegenerovaný\nnedeklarovanie\nnedeklarovaním\nnedekorovaný\nnedeľa\nnedelenia\nnedeleniu\nnedelený\nnedeliteľne\nnedeliteľnosť\nnedeľňajší\nnedeľne\nnedeľný\nnedementovaná\nnedementované\nnedemokratickosť\nnedemokratickosti\nnedemokraticky\nnedémonizoval\nnedémonizovala\nnedémonizovali\nnedémonizovalo\nnedémonizovať\nnedémonizuj\nnedémonizuje\nnedémonizujem\nnedémonizujeme\nnedémonizuješ\nnedémonizujete\nnedémonizujme\nnedémonizujte\nnedémonizujú\nnedémonizujúc\nnedemontovaniu\nnedepce\nnedepcem\nnedepceme\nnedepceš\nnedepcete\nnedepci\nnedepcime\nnedepcite\nnedepcú\nnedepcúc\nnediel\nnedieľ\nnedieľka\nnedielne\nnedielu\nnedierovaný\nnediétne\nnediferencovanosti\nnedisciplinovanosť\nnedisciplinovanosti\nnedisciplinovanosťou\nnediskontovať\nNediskrétnosťou\nnediskriminovaný\nnediskutovaný\nnedisociovaný\nnedisonujú\nnedisponovania\nnedistribuovanej\nnedistribuovaní\nnedistribuovaním\nnedlab\nnedlabči\nnedlabčime\nnedlabčite\nnedlapči\nnedlapčime\nnedlapčite\nnedlb\nnedlbla\nnedlbli\nnedlblo\nnedlbne\nnedlbnem\nnedlbneme\nnedlbneš\nnedlbnete\nnedlbni\nnedlbnime\nnedlbnite\nnedlbnú\nnedlbnúc\nnedlbnúť\nnedlbol\nnedlbú\nnedlbúc\nnedlený\nnedlho\nnedlženie\nnedĺženie\nnedlží\nnedlžia\nnedlžím\nnedlžíme\nnedlžiť\nnedmul\nnedmula\nnedmuli\nnedmulo\nneďob\nnedobabre\nnedobabrem\nnedobabreme\nnedobabreš\nnedobabrete\nnedobabri\nnedobabrime\nnedobabrite\nnedobabrú\nnedobabrúc\nnedobdela\nnedobeháva\nnedobehávaj\nnedobehávajme\nnedobehávajte\nnedobehávajú\nnedobehávajúc\nnedobehával\nnedobehávala\nnedobehávali\nnedobehávalo\nnedobehávam\nnedobehávame\nnedobehávaš\nnedobehávať\nnedobehávate\nnedobehoval\nnedobehovala\nnedobehovali\nnedobehovalo\nnedobehovať\nnedobehuj\nnedobehuje\nnedobehujem\nnedobehujeme\nnedobehuješ\nnedobehujete\nnedobehujme\nnedobehujte\nnedobehujú\nnedobehujúc\nnedobehúva\nnedobehúvaj\nnedobehúvajme\nnedobehúvajte\nnedobehúvajú\nnedobehúvajúc\nnedobehúval\nnedobehúvala\nnedobehúvali\nnedobehúvalo\nnedobehúvam\nnedobehúvame\nnedobehúvaš\nnedobehúvať\nnedobehúvate\nnedobizeň\nnedobre\nnedobrovoľne\nnedobrovoľnosť\nnedobudovania\nnedobudovanie\nnedobudovaním\nnedobudovaný\nnedobytne\nnedobytnosť\nnedocenenia\nnedocenenie\nnedocenením\nnedoceneniu\nnedocenený\nnedoceňovania\nnedoceňovanie\nnedocvičené\nnedočistené\nnedočkavec\nnedočkavo\nnedočkavosť\nnedočkavý\nnedočujný\nnedodania\nnedodanie\nnedodaním\nnedodaniu\nnedodávané\nnedodávania\nnedodávanie\nnedodávaním\nnedodelená\nnedodieva\nnedodievaj\nnedodievajme\nnedodievajte\nnedodievajú\nnedodievajúc\nnedodieval\nnedodievala\nnedodievali\nnedodievalo\nnedodievam\nnedodievame\nnedodievaš\nnedodievať\nnedodievate\nnedodrtenie\nnedodrvenie\nnedodržanie\nnedodržaný\nnedodržateľný\nnedodržiavania\nnedodržiavaniach\nnedodržiavaniami\nnedodržiavanie\nnedodržiavaním\nnedodržiavaniu\nnedodýchava\nnedodýchavaj\nnedodýchavajme\nnedodýchavajte\nnedodýchavajú\nnedodýchavajúc\nnedodýchaval\nnedodýchavala\nnedodýchavali\nnedodýchavalo\nnedodýchavam\nnedodýchavame\nnedodýchavaš\nnedodýchavať\nnedodýchavate\nnedofajčená\nnedofajči\nnedofajčime\nnedofajčite\nnedofarbený\nnedofinancoval\nnedofinancovala\nnedofinancovali\nnedofinancovalo\nnedofinancovať\nnedofinancuj\nnedofinancuje\nnedofinancujem\nnedofinancujeme\nnedofinancuješ\nnedofinancujete\nnedofinancujme\nnedofinancujte\nnedofinancujú\nnedofinancujúc\nnedogmaticky\nnedohľadá\nnedohľadien\nnedohľadno\nnedohliadnej\nnedohliadnutý\nnedohodnutia\nnedohodnutie\nnedohodnutiu\nnedohor\nnedohovor\nnedohovorte\nnedohrab\nnedohrč\nnedohrkotajúc\nnedohrm\nnedohúžve\nnedohúžvem\nnedohúžveme\nnedohúžveš\nnedohúžvete\nnedohúžvi\nnedohúžvime\nnedohúžvite\nnedohúžvu\nnedohúžvuc\nnedochôdča\nnedochôdčat\nnedochôdčatá\nnedochôdčaťa\nnedochôdčatách\nnedochôdčatám\nnedochôdčatami\nnedochôdčati\nnedochôdčaťom\nnedochôdčaťu\nnedochôdčencami\nnedochôdčence\nnedochôdčencoch\nnedochôdčencom\nnedochôdčeniec\nnedochovaného\nnedochrám\nnedochráma\nnedochrámaj\nnedochrámajme\nnedochrámajte\nnedochrámajú\nnedochrámajúc\nnedochrámam\nnedochrámame\nnedochrámaš\nnedochrámate\nnedochrámme\nnedochrámte\nnedochuj\nnedochuje\nnedochujem\nnedochujeme\nnedochuješ\nnedochujete\nnedochujme\nnedochujte\nnedochujú\nnedochujúc\nnedojacia\nnedojči\nnedojčime\nnedojčite\nnedôjdi\nnedôjdime\nnedôjdite\nnedôjduc\nnedojednanej\nnedojenie\nnedok\nnedokázanie\nnedokázaniu\nnedokladoval\nnedokladovala\nnedokladovali\nnedokladovalo\nnedokladovať\nnedokladuj\nnedokladuje\nnedokladujem\nnedokladujeme\nnedokladuješ\nnedokladujete\nnedokladujme\nnedokladujte\nnedokladujú\nnedokladujúc\nnedokmášu\nnedokmášuc\nnedokníšu\nnedokníšuc\nnedoknuteľne\nnedoknuteľný\nnedokonale\nnedokonalejšej\nnedokonalejší\nnedokonalejšia\nnedokonalejšie\nnedokonalejšieho\nnedokonalejšiemu\nnedokonalejších\nnedokonalejším\nnedokonalejšími\nnedokonalejšiu\nnedokonalejšom\nnedokonalejšou\nnedokonavosť\nnedokončene\nnedokončenia\nnedokončenie\nnedokončením\nnedokončeniu\nnedokončenosť\nnedokončenosti\nnedokonči\nnedokončime\nnedokončite\nnedokončovania\nnedokos\nnedokrkvi\nnedokrkvime\nnedokrkvite\nnedokŕmené\nnedokrúca\nnedokrúcaj\nnedokrúcajme\nnedokrúcajte\nnedokrúcajú\nnedokrúcajúc\nnedokrúcam\nnedokrúcame\nnedokrúcaš\nnedokrúcate\nnedokrvenosť\nnedokrvnosť\nnedokrvný\nnedokúrené\nnedolám\nnedolámme\nnedolámte\nnedolel\nnedolela\nnedoleli\nnedolelo\nnedoleť\nnedôležitosť\nnedoliatom\nnedoliatou\nnedoliatu\nnedoliaty\nnedolie\nnedoliečených\nnedoliem\nnedolieme\nnedolieš\nnedolieť\nnedoliete\nNedolievaním\nnedoloví\nnedolovil\nnedoložený\nnedomoč\nnedomôž\nnedomôžuc\nnedomrz\nnedomy\nnedomykavosť\nnedomykavý\nnedomyslene\nnedomyslenie\nnedomyslenosť\nnedonosenec\nnedonosenosť\nnedopálený\nnedopalky\nnedopatrenie\nnedopečený\nnedoper\nnedoperie\nnedoperiem\nnedoperieme\nnedoperieš\nnedoperiete\nnedoperme\nnedoperte\nnedoperú\nnedoperúc\nNedopísaný\nnedopíšu\nnedopíšuc\nnedopitého\nnedoplácania\nnedoplácanú\nnedoplač\nnedoplatenie\nnedoplatením\nnedoplatok\nnedoplnenia\nnedoplnenie\nnedopomôž\nnedopomôžuc\nnedoporučoval\nnedoporučovala\nnedoporučovali\nnedoporučovalo\nnedoporučovať\nnedoporučuj\nnedoporučuje\nnedoporučujem\nnedoporučujeme\nnedoporučuješ\nnedoporučujete\nnedoporučujme\nnedoporučujte\nnedoporučujú\nnedoporučujúc\nnedoposielať\nnedopovedá\nnedopovedaný\nnedopracovanosť\nnedopracovanosti\nnedopracovanosťou\nnedopracovaný\nnedopratajúc\nnedoprevádza\nnedoprevádzaj\nnedoprevádzajme\nnedoprevádzajte\nnedoprevádzajú\nnedoprevádzajúc\nnedoprevádzal\nnedoprevádzala\nnedoprevádzali\nnedoprevádzalo\nnedoprevádzam\nnedoprevádzame\nnedoprevádzaš\nnedoprevádzať\nnedoprevádzate\nnedopriava\nnedopriavaj\nnedopriavajme\nnedopriavajte\nnedopriavajú\nnedopriavajúc\nnedopriaval\nnedopriavala\nnedopriavali\nnedopriavalo\nnedopriavam\nnedopriavame\nnedopriavaš\nnedopriavať\nnedopriavate\nnedopustenie\nnedopusti\nnedopustime\nnedopustite\nnedoputovala\nnedorác\nnedoráce\nnedorácem\nnedoráceme\nnedoráceš\nnedorácete\nnedorácme\nnedorácte\nnedorácu\nnedorácuc\nnedorasti\nnedorastime\nnedorastite\nnedorastkovi\nnedorastkovia\nnedorastok\nnedôrazne\nnedorediká\nnedoredikaj\nnedoredikajme\nnedoredikajte\nnedoredikajú\nnedoredikajúc\nnedoredikal\nnedoredikala\nnedoredikali\nnedoredikalo\nnedoredikám\nnedoredikáme\nnedoredikáš\nnedoredikať\nnedoredikáte\nnedorev\nnedoriešenia\nnedoriešenie\nnedoriešením\nnedoriešeniu\nnedoriešený\nnedorobený\nnedorobkovi\nnedorobkovia\nnedorobok\nnedorodeným\nnedorozumej\nnedorozumejme\nnedorozumejte\nnedorozumejú\nnedorozumejúc\nnedorozumel\nnedorozumela\nnedorozumeli\nnedorozumelo\nnedorozumene\nnedorozumenie\nnedorozumený\nnedorozumie\nnedorozumiem\nnedorozumieme\nnedorozumieš\nnedorozumieť\nnedorozumiete\nnedorúbaj\nnedorúbajme\nnedorúbajte\nnedorúbajúc\nnedoručenia\nnedoručenie\nnedoručením\nnedoručiteľnosť\nnedoručovanie\nnedosadenie\nnedosadzoval\nnedosadzovala\nnedosadzovali\nnedosadzovalo\nnedosadzovať\nnedosadzuj\nnedosadzuje\nnedosadzujem\nnedosadzujeme\nnedosadzuješ\nnedosadzujete\nnedosadzujme\nnedosadzujte\nnedosadzujú\nnedosadzujúc\nnedosádž\nnedosádže\nnedosádžem\nnedosádžeme\nnedosádžeš\nnedosádžete\nnedosádžme\nnedosádžte\nnedosádžu\nnedosádžuc\nnedosahovania\nnedosahovanie\nnedosahovaním\nnedosahovaniu\nnedosať\nnedoschýna\nnedoschýnaj\nnedoschýnajme\nnedoschýnajte\nnedoschýnajú\nnedoschýnajúc\nnedoschýnal\nnedoschýnala\nnedoschýnali\nnedoschýnalo\nnedoschýnam\nnedoschýname\nnedoschýnaš\nnedoschýnať\nnedoschýnate\nnedosiahnuteľne\nnedosiahnuteľnosť\nnedosiali\nnedôslednosť\nnedôslednosťami\nnedôslednosti\nnedôsledností\nnedôslednostiach\nnedôslednostiam\nnedôslednosťou\nNedoslýchavosť\nnedoslýchavý\nnedospelosť\nnedospi\nnedospime\nnedospite\nnedosť\nnedostačujúci\nnedostato\nnedostatočne\nnedostatok\nnedostatý\nnedostávajúci\nnedostavania\nnedostavanie\nnedostavaním\nnedostavaniu\nnedostavenie\nnedostavením\nnedostihnuteľne\nnedostihnuteľnosť\nnedostižne\nnedostižnosť\nnedostižný\nnedôstojne\nnedôstojnosť\nnedostreľovať\nnedostúpa\nnedostúpaj\nnedostúpajme\nnedostúpajte\nnedostúpajú\nnedostúpajúc\nnedostúpal\nnedostúpala\nnedostúpali\nnedostúpalo\nnedostúpam\nnedostúpame\nnedostúpaš\nnedostúpať\nnedostúpate\nnedostupne\nnedostupnosť\nnedosušený\nnedosvedčený\nnedosviedča\nnedosviedčaj\nnedosviedčajme\nnedosviedčajte\nnedosviedčajú\nnedosviedčajúc\nnedosviedčam\nnedosviedčame\nnedosviedčaš\nnedosviedčate\nnedosypú\nnedosypúc\nnedoši\nnedošije\nnedošijem\nnedošijeme\nnedošiješ\nnedošijete\nnedošijú\nnedošijúc\nnedošil\nnedošila\nnedošili\nnedošilo\nnedošime\nnedošite\nnedošitý\nnedošklb\nnedošklbú\nnedošklbúc\nnedoškrab\nnedoškriab\nnedoškriabal\nnedoškriabala\nnedoškriabali\nnedoškriabalo\nnedoškriabať\nnedoškriabe\nnedoškriabem\nnedoškriabeme\nnedoškriabeš\nnedoškriabete\nnedoškriabme\nnedoškriabte\nnedoškriabu\nnedoškriabuc\nnedoštiep\nnedoštiepe\nnedoštiepem\nnedoštiepeme\nnedoštiepeš\nnedoštiepete\nnedoštiepme\nnedoštiepte\nnedoštiepu\nnedoštiepuc\nnedoštudovaný\nnedoteper\nnedoteperte\nnedotiahnutia\nnedotiahnutie\nnedotiahnutím\nnedotiahnutosť\nnedotiahnutosti\nnedotiahnutostí\nnedotiahnutosťou\nnedotiahnutý\nnedotklivec\nnedotklivo\nnedotklivosť\nnedotklivý\nnedotknute\nnedotknuteľne\nnedotknuto\nnedotknutosť\nnedotlej\nnedotlejme\nnedotlejte\nnedotlejú\nnedotlejúc\nnedotnuteľné\nnedotovanie\nnedotrp\nnedotvor\nnedotvorenia\nnedotvorte\nnedotvrdený\nnedoučene\nnedoučenej\nnedouk\nnedovaď\nnedovar\nnedovarte\nnedovedenie\nnedovelená\nnedôver\nnedôverách\nnedôverám\nnedôverami\nnedôverčivec\nnedôverčivo\nnedôverčivosť\nnedôverivec\nnedôverivo\nnedôverovanie\nnedôverujúci\nnedôveryhodne\nnedôveryhodnosť\nnedovi\nnedoviď\nnedovidný\nnedoviera\nnedovieraj\nnedovierajme\nnedovierajte\nnedovierajú\nnedovierajúc\nnedovieral\nnedovierala\nnedovierali\nnedovieralo\nnedovieram\nnedovierame\nnedovieraš\nnedovierať\nnedovierate\nnedovieravosť\nnedovieravý\nnedoviť\nnedovitý\nNedovolanie\nnedovolene\nnedovolenie\nnedovrav\nnedovrúc\nnedovyť\nnedozerne\nnedozerný\nnedozoroval\nnedozorovala\nnedozorovali\nnedozorovalo\nnedozorovať\nnedozoruj\nnedozoruje\nnedozorujem\nnedozorujeme\nnedozoruješ\nnedozorujete\nnedozorujme\nnedozorujte\nnedozorujú\nnedozorujúc\nnedozrúc\nnedozveď\nnedožatý\nnedoženia\nnedoženil\nnedoženiť\nNedožerská\nNedožerského\nNedožery\nnedožitia\nnedožitý\nnedoživený\nnedoživiť\nnedožutý\nnedraftoval\nnedraftovala\nnedraftovali\nnedraftovalo\nnedraftovať\nnedraftuj\nnedraftuje\nnedraftujem\nnedraftujeme\nnedraftuješ\nnedraftujete\nnedraftujme\nnedraftujte\nnedraftujú\nnedraftujúc\nnedramatizovanie\nnedrása\nnedrásaj\nnedrásajme\nnedrásajte\nnedrásajú\nnedrásajúc\nnedrásal\nnedrásala\nnedrásali\nnedrásalo\nnedrásam\nnedrásame\nnedrásaš\nnedrásať\nnedrásate\nnedrb\nnedrbal\nnedrbala\nnedrbali\nnedrbalo\nnedrbať\nnedrbe\nnedrbem\nnedrbeme\nnedrbeš\nnedrbete\nnedrbme\nnedrbte\nnedrbú\nnedrbúc\nnedrepči\nnedrepčime\nnedrepčite\nnedrezúrovaný\nnedrhla\nnedrhli\nnedrhlo\nnedrhne\nnedrhnem\nnedrhneme\nnedrhneš\nnedrhnete\nnedrhni\nnedrhnime\nnedrhnite\nnedrhnú\nnedrhnúc\nnedrhol\nnedriapaj\nnedriapajme\nnedriapajte\nnedriapajúc\nnedriemaj\nnedriemajme\nnedriemajte\nnedriemajúc\nnedriemme\nnedriemte\nnedrichmú\nnedrichmúc\nnedrkotajúc\nnedrm\nnedrmme\nnedrmte\nnedrmú\nnedrmúc\nnedrnč\nnedrobči\nnedrobčime\nnedrobčite\nnedrobení\nnedrotoval\nnedrotovala\nnedrotovali\nnedrotovalo\nnedrotovať\nnedrotuj\nnedrotuje\nnedrotujem\nnedrotujeme\nnedrotuješ\nnedrotujete\nnedrotujme\nnedrotujte\nnedrotujú\nnedrotujúc\nnedrť\nnedrtí\nnedrtia\nnedrtiac\nnedrtil\nnedrtila\nnedrtili\nnedrtilo\nnedrtím\nnedrtíme\nnedrtíš\nnedrtiť\nnedrtíte\nnedrťme\nnedrťte\nnedrúc\nnedružď\nnedružďal\nnedružďala\nnedružďali\nnedružďalo\nnedružďať\nnedruždi\nnedruždí\nnedruždia\nnedruždiac\nnedruždím\nnedruždime\nnedruždíme\nnedruždíš\nnedruždite\nnedruždíte\nnedružďme\nnedružďte\nnedržiava\nnedržiavajú\nnedržiaval\nNedržiavanie\nneďub\nneduč\nnedudre\nnedudrem\nnedudreme\nnedudreš\nnedudrete\nnedudri\nnedudrime\nnedudrite\nnedudrú\nnedudrúc\nneduh\nneduň\nnedupá\nnedupaj\nnedupajme\nnedupajte\nnedupajú\nnedupajúc\nnedupám\nnedupáme\nnedupáš\nnedupáte\nnedupči\nnedupčime\nnedupčite\nnedupotaj\nnedupotajme\nnedupotajte\nnedupotajúc\nnedur\nnedurdi\nnedurdime\nnedurdite\nnedurte\nneduženie\nneduživec\nneduživo\nneduživosť\nneduživý\nnedvižne\nnedvižnosť\nnedvižný\nnedvojzmyselne\nnedvojzmyselnosť\nnedvor\nnedvorte\nnedychč\nnedychči\nnedychčime\nnedychčite\nnedychti\nnedychtime\nnedychtite\nnedžavotajúc\nneekonomickosť\nneekonomicky\nneemitované\nneemitovanú\nneemitovaných\nneemulgovať\nneenzymatický\nneeskontujú\nneevidovanie\nneevidovaním\nneevidovaný\nneexitoval\nneexitovala\nneexituje\nneexitujú\nneexpandovala\nneexpandovali\nneexpandovať\nneexpanduje\nneexpandujú\nneexpedovanie\nnefačoval\nnefačovala\nnefačovali\nnefačovalo\nnefačovať\nnefačuj\nnefačuje\nnefačujem\nnefačujeme\nnefačuješ\nnefačujete\nnefačujme\nnefačujte\nnefačujú\nnefačujúc\nnefajčenia\nnefajčenie\nnefajčeniu\nnefajči\nnefajčiarka\nnefajčiarsky\nnefajčime\nnefajčite\nnefaktúrovanej\nnefalšovane\nnefalšovanosť\nnefandi\nnefandí\nnefandia\nnefandiac\nnefandil\nnefandila\nnefandili\nnefandilo\nnefandím\nnefandime\nnefandíme\nnefandíš\nnefandiť\nnefandite\nnefandíte\nnefarbi\nnefarbime\nnefarbite\nnefasoval\nnefasovala\nnefasovali\nnefasovalo\nnefasovať\nnefasuj\nnefasuje\nnefasujem\nnefasujeme\nnefasuješ\nnefasujete\nnefasujme\nnefasujte\nnefasujú\nnefasujúc\nnefavorizovaných\nnefelín\nnefelometer\nnefelometria\nnefercoval\nnefercovala\nnefercovali\nnefercovalo\nnefercovať\nnefercuj\nnefercuje\nnefercujem\nnefercujeme\nnefercuješ\nnefercujete\nnefercujme\nnefercujte\nnefercujú\nnefercujúc\nneférovo\nneférovosť\nneférový\nnefič\nnefiltrované\nnefiltrovaným\nnefinancované\nnefinancovaní\nnefinancovania\nnefinancovanie\nnefinancovaných\nnefinitný\nnefinti\nnefintime\nnefintite\nnefláka\nneflákaj\nneflákajme\nneflákajte\nneflákajú\nneflákajúc\nneflákal\nneflákala\nneflákali\nneflákalo\nneflákam\nneflákame\nneflákaš\nneflákať\nneflákate\nnefönoval\nnefönovala\nnefönovali\nnefönovalo\nnefönovať\nnefönuj\nnefönuje\nnefönujem\nnefönujeme\nnefönuješ\nnefönujete\nnefönujme\nnefönujte\nnefönujú\nnefönujúc\nneforemne\nneforemnosť\nneformalizované\nneformálnosť\nneformovací\nnefoskop\nnefrajerči\nnefrajerčime\nnefrajerčite\nnefralgia\nnefrč\nnefrektómia\nnefrfotajúc\nnefrídia\nnefrídium\nnefrit\nnefritída\nnefritmi\nnefritový\nnefrndi\nnefrndime\nnefrndite\nnefrndž\nnefrndží\nnefrndžia\nnefrndžiac\nnefrndžím\nnefrndžíme\nnefrndžíš\nnefrndžíte\nnefrndžme\nnefrndžte\nnefrocystitída\nnefrocyt\nnefrogénny\nnefrografia\nnefrogram\nnefrolit\nnefrolitiáza\nnefrológia\nnefromegália\nnefrón\nnefroptóza\nnefropyelitída\nnefrorária\nnefros\nnefróza\nnefuč\nnefufnú\nnefufnúc\nnefujazdi\nnefujazdime\nnefujazdite\nnefungovaní\nnefungovania\nnefungovanie\nnefungovaním\nnefungovaniu\nnefurmanči\nnefurmančime\nnefurmančite\nnefyziologickou\nneg\nnegácia\nnegačný\nnegagotajúc\nnegalantný\nNegarantovanie\nnegarantovaný\nnegarníroval\nnegarnírovala\nnegarnírovali\nnegarnírovalo\nnegarnírovať\nnegarníruj\nnegarníruje\nnegarnírujem\nnegarnírujeme\nnegarníruješ\nnegarnírujete\nnegarnírujme\nnegarnírujte\nnegarnírujú\nnegarnírujúc\nnegat\nnegatívach\nnegatívam\nnegatív\nnegativista\nnegativisticky\nnegativistický\nnegativistov\nnegativity\nnegativizmus\nnegatívnosť\nnegatívny\nnegatívum\nnegaudž\nnegaudži\nnegaudží\nnegaudžia\nnegaudžiac\nnegaudžím\nnegaudžime\nnegaudžíme\nnegaudžíš\nnegaudžite\nnegaudžíte\nnegaudžme\nnegaudžte\nnegavaliersky\nnegavdž\nnegavdži\nnegavdží\nnegavdžia\nnegavdžiac\nnegavdžím\nnegavdžime\nnegavdžíme\nnegavdžíš\nnegavdžite\nnegavdžíte\nnegavdžme\nnegavdžte\nneger\nnegerský\nneglazovaný\nneglejený\nnegližé\nnegociácia\nnegociáciách\nnegociáciám\nnegociáciami\nnegociácie\nnegociácii\nnegociácií\nnegociáciou\nnegociáciu\nnegociačný\nnegovania\nnegovanie\nnegovaním\nnegovaniu\nnegovaný\nnegovať\nnegradovanie\nnegramotne\nnegramotnosť\nnégritude\nnegrizmus\nnegrobianí\nnegrobianím\nnegrobianíme\nnegrobianíš\nnegrobianíte\nnegroidný\nnegustiózne\nneguš\nnehab\nnehádžu\nnehádžuc\nnehách\nnehám\nnehami\nnehanba\nnehanbenia\nnehanbi\nnehanbime\nnehanbite\nnehanblivec\nnehanblivica\nnehandloval\nnehanebne\nnehanebnica\nnehanebník\nnehanebnosť\nnehaproval\nnehaprovala\nnehaprovali\nnehaprovalo\nnehaprovať\nnehapruj\nnehapruje\nnehaprujem\nnehaprujeme\nnehapruješ\nnehaprujete\nnehaprujme\nnehaprujte\nnehaprujú\nnehaprujúc\nnehasnúca\nnehašter\nnehašterte\nnehatene\nNehavarovaný\nneha\nnehecoval\nnehecovala\nnehecovali\nnehecovalo\nnehecovať\nnehecuj\nnehecuje\nnehecujem\nnehecujeme\nnehecuješ\nnehecujete\nnehecujme\nnehecujte\nnehecujú\nnehecujúc\nnehemži\nnehemžime\nnehemžite\nnehľaď\nnehľadanie\nnehladený\nnehľadený\nnehlásenie\nnehlasne\nnehlasovaní\nnehlasovania\nnehlasovanie\nnehlasovaním\nnehlasovaniu\nnehlava\nnehlavo\nnehlboko\nnehliadkoval\nnehliadkovala\nnehliadkovali\nnehliadkovalo\nnehliadkovať\nnehliadkuj\nnehliadkuje\nnehliadkujem\nnehliadkujeme\nnehliadkuješ\nnehliadkujete\nnehliadkujme\nnehliadkujte\nnehliadkujú\nnehliadkujúc\nnehlučne\nnehlučnosť\nnehlučnosťou\nnehmotne\nnehnetúc\nnehnietla\nnehnietli\nnehnietlo\nnehnietol\nnehnojená\nnehnojené\nnehnojenej\nnehnojených\nnehnul\nnehnula\nnehnuli\nnehnulo\nnehnute\nnehnutý\nnehobľované\nnehoda\nnehoden\nnehodna\nnehodnica\nnehodník\nnehodno\nnehodnotenie\nnehodnotne\nnehodnoverné\nnehodnovernosť\nnehodnovernosťou\nnehodnovernú\nnehodnoverných\nnehodnoverným\nnehodnovernými\nnehodovosť\nnehôľ\nnehôľme\nnehôľte\nnehomogénnosť\nnehor\nnehoráznosť\nnehorázny\nnehorľavosť\nnehorši\nnehoršime\nnehoršite\nnehospodárenia\nnehospodárenie\nnehospodárnosť\nnehosti\nnehostime\nnehostinne\nnehostinnosť\nnehostinný\nnehostite\nnehovor\nnehovorenie\nnehovorte\nnehrab\nnehračkár\nnehračkári\nnehračkária\nnehračkáriac\nnehračkáril\nnehračkárila\nnehračkárili\nnehračkárilo\nnehračkárim\nnehračkárime\nnehračkáriš\nnehračkáriť\nnehračkárite\nnehračkárme\nnehračkárte\nnehradenia\nnehradením\nnehreb\nnehrebie\nnehrebiem\nnehrebieme\nnehrebieš\nnehrebiete\nnehrebme\nnehrebte\nnehrebú\nnehrebúc\nnehrej\nnehrejem\nnehrejeme\nnehreješ\nnehrejete\nnehrejme\nnehrejte\nnehrejú\nnehrejúc\nnehriebla\nnehriebli\nnehrieblo\nnehriebol\nnehrkľoval\nnehrkľovala\nnehrkľovali\nnehrkľovalo\nnehrkľovať\nnehrkľuj\nnehrkľuje\nnehrkľujem\nnehrkľujeme\nnehrkľuješ\nnehrkľujete\nnehrkľujme\nnehrkľujte\nnehrkľujú\nnehrkľujúc\nnehrkotajúc\nnehrm\nnehrmotajúc\nnehrň\nnehrnie\nnehrniem\nnehrnieme\nnehrnieš\nnehrniete\nnehrňme\nnehrňte\nnehromži\nnehromžime\nnehromžite\nnehuč\nnehučí\nnehučia\nnehučiac\nnehučím\nnehučíme\nnehučíš\nnehučíte\nnehučme\nnehučte\nnehudlikoval\nnehudlikovala\nnehudlikovali\nnehudlikovalo\nnehudlikovať\nnehudlikuj\nnehudlikuje\nnehudlikujem\nnehudlikujeme\nnehudlikuješ\nnehudlikujete\nnehudlikujme\nnehudlikujte\nnehudlikujú\nnehudlikujúc\nnehudobno\nnehuhle\nnehuhlem\nnehuhleme\nnehuhleš\nnehuhlete\nnehuhli\nnehuhlime\nnehuhlite\nnehuhlú\nnehuhlúc\nnehuhne\nnehuhnem\nnehuhneme\nnehuhneš\nnehuhnete\nnehuhni\nnehuhnime\nnehuhnite\nnehuhňú\nnehuhňúc\nnehukotajúc\nnehundre\nnehundrem\nnehundreme\nnehundreš\nnehundrete\nnehundri\nnehundrime\nnehundrite\nnehundrú\nnehundrúc\nnehúpa\nnehúpaj\nnehúpajme\nnehúpajte\nnehúpajú\nnehúpajúc\nnehúpam\nnehúpame\nnehúpaš\nnehúpate\nNehustené\nnehusti\nnehustime\nnehustite\nnehúžve\nnehúžvem\nnehúžveme\nnehúžveš\nnehúžvete\nnehúžvi\nnehúžvia\nnehúžviac\nnehúžvil\nnehúžvila\nnehúžvili\nnehúžvilo\nnehúžvim\nnehúžvime\nnehúžviš\nnehúžviť\nnehúžvite\nnehúžvu\nnehúžvuc\nnehvižď\nnehvižďme\nnehvižďte\nnehýb\nnehýbajúc\nnehýbaním\nnehybne\nnehybnosť\nnehygienicky\nnehyň\nnehynie\nnehyniem\nnehynieme\nnehynieš\nnehyniete\nnehyňme\nnehyňte\nnehyzdi\nnehyzdime\nnehyzdite\nnech\nnechabre\nnechabrem\nnechabreme\nnechabreš\nnechabrete\nnechabri\nnechabrime\nnechabrite\nnechabrú\nnechabrúc\nnechalupár\nnechalupári\nnechalupária\nnechalupáriac\nnechalupáril\nnechalupárila\nnechalupárili\nnechalupárilo\nnechalupárim\nnechalupárime\nnechalupáriš\nnechalupáriť\nnechalupárite\nnechalupárme\nnechalupárte\nnechamti\nnechamtime\nnechamtite\nnechanie\nnechaný\nnechápajúc\nnechápajúca\nnechápajúce\nnechápajúci\nnechápajúco\nnechápajúcu\nnechápavo\nnechatár\nnechatári\nnechatária\nnechatáriac\nnechatáril\nnechatárila\nnechatárili\nnechatárilo\nnechatárim\nnechatárime\nnechatáriš\nnechatáriť\nnechatárite\nnechatárme\nnechatárte\nnechať\nnechávajúci\nnechávať\nnechcejúc\nnechcene\nnechcenia\nnechechce\nnechechcem\nnechechceme\nnechechceš\nnechechcete\nnechechci\nnechechcime\nnechechcite\nnechechcú\nnechechcúc\nnechechotajúc\nnechechtajúc\nnechechtal\nnechechtala\nnechechtali\nnechechtalo\nnechechtať\nnechichotajúc\nnechichúta\nnechichútaj\nnechichútajme\nnechichútajte\nnechichútajú\nnechichútajúc\nnechichútal\nnechichútala\nnechichútali\nnechichútalo\nnechichútam\nnechichútame\nnechichútaš\nnechichútať\nnechichútate\nnechlasce\nnechlascem\nnechlasceme\nnechlasceš\nnechlascete\nnechlasci\nnechľasci\nnechlascime\nnechľascime\nnechlascite\nnechľascite\nnechlascú\nnechlascúc\nnechlastá\nnechlastaj\nnechlastajme\nnechlastajte\nnechlastajú\nnechlastajúc\nnechlastal\nnechlastala\nnechlastali\nnechlastalo\nnechlastám\nnechlastáme\nnechlastáš\nnechlastať\nnechlastáte\nnechlepci\nnechlepcime\nnechlepcite\nnechleptajúc\nnechmácu\nnechmácuc\nnechmatká\nnechmatkaj\nnechmatkajme\nnechmatkajte\nnechmatkajú\nnechmatkajúc\nnechmatkal\nnechmatkala\nnechmatkali\nnechmatkalo\nnechmatkám\nnechmatkáme\nnechmatkáš\nnechmatkať\nnechmatkáte\nnechopení\nnechorejme\nnechorejte\nnechorejú\nnechorejúc\nnechránením\nnechrápajúc\nnechrapč\nnechrapči\nnechrapčime\nnechrapčite\nnechrápka\nnechrápkaj\nnechrápkajme\nnechrápkajte\nnechrápkajú\nnechrápkajúc\nnechrápkal\nnechrápkala\nnechrápkali\nnechrápkalo\nnechrápkam\nnechrápkame\nnechrápkaš\nnechrápkať\nnechrápkate\nnechrapotaj\nnechrapotajme\nnechrapotajte\nnechrapotajúc\nnechrapšť\nnechrapšťme\nnechrapšťte\nnechrč\nnechrchľal\nnechrchľala\nnechrchľali\nnechrchľalo\nnechrchľať\nnechrchľú\nnechrchľúc\nnechrip\nnechripí\nnechripia\nnechripiac\nnechripím\nnechripíme\nnechripíš\nnechripíte\nnechripme\nnechripte\nnechrochce\nnechrochcem\nnechrochceme\nnechrochceš\nnechrochcete\nnechrochci\nnechrochcime\nnechrochcite\nnechrochcú\nnechrochcúc\nnechrochtá\nnechrochtaj\nnechrochtajme\nnechrochtajte\nnechrochtajú\nnechrochtajúc\nnechrochtal\nnechrochtala\nnechrochtali\nnechrochtalo\nnechrochtám\nnechrochtáme\nnechrochtáš\nnechrochtať\nnechrochtáte\nnechrúm\nnechrúmme\nnechrúmte\nnechrúpajúc\nnechrupč\nnechrupči\nnechrupčime\nnechrupčite\nnechrupšť\nnechrupšťal\nnechrupšťala\nnechrupšťali\nnechrupšťalo\nnechrupšťať\nnechrupšti\nnechrupští\nnechrupštia\nnechrupštiac\nnechrupštím\nnechrupštime\nnechrupštíme\nnechrupštíš\nnechrupštite\nnechrupštíte\nnechrupšťme\nnechrupšťte\nnechta\nnecht\nnechtiačky\nnechtíček\nnechtíčka\nnechtíčkami\nnechtíčkoch\nnechtíčkom\nnechtíčkov\nnechtíčku\nnechtíčky\nnechtík\nnechtísk\nnechtisko\nnechtmi\nnechtový\nnechutení\nnechutenstvo\nnechutieva\nnechutievaj\nnechutievajme\nnechutievajte\nnechutievajú\nnechutievajúc\nnechutieval\nnechutievala\nnechutievali\nnechutievalo\nnechutievam\nnechutievame\nnechutievaš\nnechutievať\nnechutievate\nnechutnosť\nnechvácu\nnechvácuc\nNechválenie\nnechválne\nnechvasci\nnechvascime\nnechvascite\nnechveje\nnechvejem\nnechvejeme\nnechveješ\nnechvejete\nnechybne\nnechytenie\nnechže\nneiď\nneide\nneidem\nneideme\nneidentifikovania\nneideš\nneidete\nneiďme\nneiďte\nneidú\nneidúc\nneimplemetované\nneináč\nneinak\nneindexová\nneindukčný\nneinerčný\nneinformovania\nneinformovanie\nneinformovaním\nneinformovaniu\nneinformovanosť\nneinformovanosti\nneinformovanosťou\nneinštitucionalizovaný\nneinterakčný\nneinteraktívne\nneinteraktívnu\nneintervencie\nneinventarizovanie\nneinvestovania\nneinvestovanie\nneinvestovaním\nneionizačný\nneionizovaný\nneionizujúceho\nneistený\nneisto\nneistôt\nneišiel\nneišla\nneišli\nneišlo\nnejač\nnejahni\nnejahnime\nnejahnite\nnejachci\nnejachcime\nnejachcite\nnejajč\nnejajči\nnejajčí\nnejajčia\nnejajčiac\nnejajčím\nnejajčime\nnejajčíme\nnejajčíš\nnejajčite\nnejajčíte\nnejajčme\nnejajčte\nnejak\nnejako\nnejaký\nnejapne\nnejapné\nnejapnosti\nnejapnou\nnejapným\nnejar\nnejarte\nnejasni\nnejasnime\nnejasnite\nnejazdený\nnejazdi\nnejazdime\nnejazdite\nnejdi\nnejdime\nnejdite\nnejdú\nnejeb\nnejebal\nnejebala\nnejebali\nnejebalo\nnejebať\nnejebe\nnejebem\nnejebeme\nnejebeš\nnejebete\nnejebme\nnejebte\nnejebú\nnejebúc\nnejednaniami\nnejedného\nnejednej\nnejednému\nnejedni\nnejednotne\nnejednotnosť\nnejednou\nnejednoznačne\nnejedných\nnejedným\nnejednými\nnejedny\nnejemne\nnejestvovanie\nnejme\nnejmem\nnejmeme\nnejmeš\nnejmete\nnejmi\nnejmime\nnejmite\nnejmú\nnejmúc\nnejojč\nnejojči\nnejojčime\nnejojčite\nnejojká\nnejojkaj\nnejojkajme\nnejojkajte\nnejojkajú\nnejojkajúc\nnejojkal\nnejojkala\nnejojkali\nnejojkalo\nnejojkám\nnejojkáme\nnejojkáš\nnejojkať\nnejojkáte\nnejsť\nnekaja\nnekajam\nnekajame\nnekajaš\nnekajate\nnekale\nnekalejšej\nnekalejší\nnekalejšia\nnekalejšie\nnekalejšieho\nnekalejšiemu\nnekalejších\nnekalejším\nnekalejšími\nnekalejšiu\nnekalejšom\nnekalejšou\nnekalo\nnekalý\nnekaň\nnekanie\nnekaniem\nnekanieme\nnekanieš\nnekaniete\nnekaňme\nnekaňte\nnekára\nnekáraj\nnekárajme\nnekárajte\nnekárajú\nnekárajúc\nnekáral\nnekárala\nnekárali\nnekáralo\nnekáram\nnekárame\nnekáraš\nnekárať\nnekárate\nnekaravanoval\nnekaravanovala\nnekaravanovali\nnekaravanovalo\nnekaravanovať\nnekaravanuj\nnekaravanuje\nnekaravanujem\nnekaravanujeme\nnekaravanuješ\nnekaravanujete\nnekaravanujme\nnekaravanujte\nnekaravanujú\nnekaravanujúc\nnekasá\nnekasaj\nnekasajme\nnekasajte\nnekasajú\nnekasajúc\nnekasal\nnekasala\nnekasali\nnekasalo\nnekasám\nnekasáme\nnekasáš\nnekasať\nnekasáte\nnekastrované\nnekaš\nnekaše\nnekašem\nnekašeme\nnekašeš\nnekašete\nnekašliava\nnekašliavaj\nnekašliavajme\nnekašliavajte\nnekašliavajú\nnekašliavajúc\nnekašliaval\nnekašliavala\nnekašliavali\nnekašliavalo\nnekašliavam\nnekašliavame\nnekašliavaš\nnekašliavať\nnekašliavate\nnekašme\nnekašte\nnekašú\nnekašúc\nNekategorizované\nnekatovanie\nnekázeň\nnekecia\nnekeciam\nnekeciame\nnekeciaš\nnekeciate\nnekiksla\nnekiksli\nnekikslo\nnekiksne\nnekiksnem\nnekiksneme\nnekiksneš\nnekiksnete\nnekiksni\nnekiksnime\nnekiksnite\nnekiksnú\nnekiksnúc\nnekiksnúť\nnekiksol\nnekiksoval\nnekiksovala\nnekiksovali\nnekiksovalo\nnekiksovať\nnekiksuj\nnekiksuje\nnekiksujem\nnekiksujeme\nnekiksuješ\nnekiksujete\nnekiksujme\nnekiksujte\nnekiksujú\nnekiksujúc\nnekľač\nnekľačí\nnekľačia\nnekľačiac\nnekľačím\nnekľačíme\nnekľačíš\nnekľačíte\nnekľačme\nnekľačte\nneklaď\nneklam\nneklamme\nNeklamme\nneklamne\nneklamte\nneklapla\nneklapli\nneklaplo\nneklapne\nneklapnem\nneklapneme\nneklapneš\nneklapnete\nneklapni\nneklapnime\nneklapnite\nneklapnú\nneklapnúc\nneklapnúť\nneklapol\nneklbči\nneklbčime\nneklbčite\nnekleň\nneklenie\nnekleniem\nneklenieme\nneklenieš\nnekleniete\nnekleňme\nnekleňte\nneklepotajúc\nNeklesanie\nneklochni\nneklochní\nneklochnia\nneklochniac\nneklochnil\nneklochnila\nneklochnili\nneklochnilo\nneklochním\nneklochnime\nneklochníme\nneklochníš\nneklochniť\nneklochnite\nneklochníte\nneklochti\nneklochtí\nneklochtia\nneklochtiac\nneklochtil\nneklochtila\nneklochtili\nneklochtilo\nneklochtím\nneklochtime\nneklochtíme\nneklochtíš\nneklochtiť\nneklochtite\nneklochtíte\nneklokotajúc\nneklopotajúc\nnekľuč\nnekľud\nneklusá\nneklusaj\nneklusajme\nneklusajte\nneklusajú\nneklusajúc\nneklusám\nneklusáme\nneklusáš\nneklusáte\nnekmáš\nnekmáše\nnekmášem\nnekmášeme\nnekmášeš\nnekmášete\nnekmášme\nnekmášte\nnekmášu\nnekmášuc\nnekmitla\nnekmitli\nnekmitlo\nnekmitne\nnekmitnem\nnekmitneme\nnekmitneš\nnekmitnete\nnekmitni\nnekmitnime\nnekmitnite\nnekmitnú\nnekmitnúc\nnekmitnúť\nnekmitol\nnekňaz\nneknihovaná\nneknihovanej\nneknihovanú\nneknihovaných\nnekníš\nnekníše\nnekníšem\nnekníšeme\nnekníšeš\nnekníšete\nnekníšme\nnekníšte\nnekníšu\nnekníšuc\nnekňuč\nnekodifikovaný\nnekohézny\nnekokci\nnekokcime\nnekokcite\nnekoktá\nnekoktaj\nnekoktajme\nnekoktajte\nnekoktajú\nnekoktajúc\nnekoktám\nnekoktáme\nnekoktáš\nnekoktáte\nnekolaboval\nnekolabovala\nnekolabovali\nnekolabovalo\nnekolabovať\nnekolabuj\nnekolabuje\nnekolabujem\nnekolabujeme\nnekolabuješ\nnekolabujete\nnekolabujme\nnekolabujte\nnekolabujú\nnekolabujúc\nnekolísajúc\nnekolísal\nnekolísala\nnekolísali\nnekolísalo\nnekolísať\nnekolíš\nnekolíše\nnekolíšem\nnekolíšeme\nnekolíšeš\nnekolíšete\nnekolíšme\nnekolíšte\nnekolíšu\nnekolíšuc\nnekomentovanie\nnekomentovaniu\nnekomentovaný\nnekompenzovanie\nnekompenzovaný\nnekompetentne\nnekompletne\nnekompletnosť\nnekompletnosti\nnekompletnosťou\nnekompletovali\nnekompletuje\nnekompresný\nnekomprimovanie\nnekompromisne\nnekompromisnosť\nnekomunikovanie\nnekomunikovaním\nnekonaného\nnekonaní\nnekonania\nnekonanie\nnekonaním\nnekoncelebroval\nnekoncelebrovala\nnekoncelebrovali\nnekoncelebrovalo\nnekoncelebrovať\nnekoncelebruj\nnekoncelebruje\nnekoncelebrujem\nnekoncelebrujeme\nnekoncelebruješ\nnekoncelebrujete\nnekoncelebrujme\nnekoncelebrujte\nnekoncelebrujú\nnekoncelebrujúc\nnekonči\nnekončime\nnekončite\nnekondenzujúci\nnekonečien\nnekonečne\nnekonečno\nnekonečnosť\nnekonkretizovaný\nnekonkrétnosť\nnekonkrétnosti\nnekonkrétností\nnekonkurovaní\nnekonkurujúce\nnekonsolidovaný\nnekontrasignovala\nnekontrolovanie\nnekontrolovateľne\nnekontrovaného\nnekonvenčne\nnekonvenčnosť\nnekonvergovali\nnekonvertovaný\nnekonzekventne\nnekonzervovaný\nnekonzultovaný\nnekonzumovaniu\nnekor\nnekorektne\nnekorektnosť\nnekorektnosti\nnekorektnostiach\nnekorektnosťou\nnekorigovaný\nnekoristi\nnekoristime\nnekoristite\nnekorte\nnekorunovaný\nnekótovania\nnekótovaním\nnekótovaný\nnekotvi\nnekotvime\nnekotvite\nnekov\nnekrágľoval\nnekrágľovala\nnekrágľovali\nnekrágľovalo\nnekrágľovať\nnekrágľuj\nnekrágľuje\nnekrágľujem\nnekrágľujeme\nnekrágľuješ\nnekrágľujete\nnekrágľujme\nnekrágľujte\nnekrágľujú\nnekrágľujúc\nnekrákor\nnekrákorte\nnekrátenie\nnekrátený\nnekrčené\nnekrčivosť\nnekreoval\nnekreovala\nnekreovali\nnekreovalo\nnekreovať\nnekrepči\nnekrepčime\nnekrepčite\nnekresťania\nnekresťansky\nnekreuj\nnekreuje\nnekreujem\nnekreujeme\nnekreuješ\nnekreujete\nnekreujme\nnekreujte\nnekreujú\nnekreujúc\nnekrič\nnekriminalizoval\nnekriminalizovala\nnekriminalizovali\nnekriminalizovalo\nnekriminalizovať\nnekriminalizuj\nnekriminalizuje\nnekriminalizujem\nnekriminalizujeme\nnekriminalizuješ\nnekriminalizujete\nnekriminalizujme\nnekriminalizujte\nnekriminalizujú\nnekriminalizujúc\nnekristov\nnekristova\nnekristove\nnekristovej\nnekristovho\nnekristoví\nnekristovmu\nnekristovo\nnekristovom\nnekristovou\nnekristovu\nnekristových\nnekristovým\nnekristovými\nnekritickosť\nnekriticky\nnekritizovanie\nnekrivdi\nnekrivdime\nNekrivdime\nnekrivdite\nnekrivenia\nnekrivo\nnekrkvi\nnekrkvime\nnekrkvite\nnekrmné\nnekrobióza\nnekrofág\nnekrofília\nnekrofyt\nnekrôchanec\nnekrológ\nnekrológmi\nnekrológoch\nnekrológom\nnekrológov\nnekrológu\nnekrológy\nnekromancia\nnekropola\nnekropsia\nnekrotický\nnekróza\nnekrsti\nnekrstime\nnekrstite\nnekrtkoval\nnekrtkovala\nnekrtkovali\nnekrtkovalo\nnekrtkovať\nnekrtkuj\nnekrtkuje\nnekrtkujem\nnekrtkujeme\nnekrtkuješ\nnekrtkujete\nnekrtkujme\nnekrtkujte\nnekrtkujú\nnekrtkujúc\nnekrvavo\nnekryštalizujúci\nnekrytia\nnekrytie\nneksichti\nneksichtí\nneksichtia\nneksichtiac\nneksichtil\nneksichtila\nneksichtili\nneksichtilo\nneksichtím\nneksichtime\nneksichtíme\nneksichtíš\nneksichtiť\nneksichtite\nneksichtíte\nnektár\nnektáre\nnektárinka\nnektármi\nnektároch\nnektárom\nnektárov\nnektárový\nnektáru\nnektáry\nnektón\nnekuchti\nnekuchtime\nnekuchtite\nnekuľhá\nnekuľhaj\nnekuľhajme\nnekuľhajte\nnekuľhajú\nnekuľhajúc\nnekuľhal\nnekuľhala\nnekuľhali\nnekuľhalo\nnekuľhám\nnekuľháme\nnekuľháš\nnekuľhať\nnekuľháte\nnekultivovanosť\nnekultivovanosťou\nnekultúra\nnekultúry\nnekúpaj\nnekúpajme\nnekúpajte\nnekúpajúc\nnekupči\nnekupčime\nnekupčite\nnekúrenie\nnekúrením\nnekutre\nnekutrem\nnekutreme\nnekutreš\nnekutrete\nnekutri\nnekutrime\nnekutrite\nnekutrú\nnekutrúc\nnekváč\nnekváče\nnekváčem\nnekváčeme\nnekváčeš\nnekváčete\nnekváčme\nnekváčte\nnekváču\nnekváčuc\nnekvalifikovane\nnekvalifikovanosť\nnekvalita\nnekvalitne\nnekvalitnosť\nnekvantifikovaný\nnekvič\nnekvoč\nnekyp\nnekysla\nnekyslo\nnekysne\nnekysnem\nnekysneme\nnekysneš\nnekysnete\nnekysni\nnekysnime\nnekysnite\nnekysnú\nnekysnúc\nnekysnúť\nnekysol\nnekýv\nnekýve\nnekývem\nnekýveme\nnekýveš\nnekývete\nnekývme\nnekyvotajúc\nnekývte\nnekývu\nnekývuc\nNela\nnelác\nneláce\nnelácem\nneláceme\nneláceš\nnelácete\nnelácme\nnelácte\nnelácu\nnelácuc\nneladený\nneládoval\nneládovala\nneládovali\nneládovalo\nneládovať\nneláduj\nneláduje\nneládujem\nneládujeme\nneláduješ\nneládujete\nneládujme\nneládujte\nneládujú\nneládujúc\nneľahko\nneľahšia\nnelákavo\nnelakoval\nnelakovala\nnelakovali\nnelakovalo\nnelakovať\nnelakuj\nnelakuje\nnelakujem\nnelakujeme\nnelakuješ\nnelakujete\nnelakujme\nnelakujte\nnelakujú\nnelakujúc\nnelám\nneláme\nnelámem\nnelámeme\nnelámeš\nnelámete\nnelámme\nnelámte\nnelámu\nnelámuc\nneľapci\nneľapcime\nneľapcite\nneláska\nnelebeď\nnelebedí\nnelebedia\nnelebediac\nnelebedil\nnelebedila\nnelebedili\nnelebedilo\nnelebedím\nnelebedíme\nnelebedíš\nnelebediť\nnelebedíte\nnelebeďme\nnelebeďte\nnelegalizovaný\nnelegálnosť\nnelegitimizovali\nnelegitimizuje\nnelegovaný\nnelej\nneleje\nnelejem\nnelejeme\nneleješ\nnelejete\nnelejme\nnelejte\nnelejú\nnelejúc\nnelepši\nnelepšime\nnelepšite\nnelešti\nneleštime\nneleštite\nneleť\nnelevou\nneležiava\nneležiavaj\nneležiavajme\nneležiavajte\nneležiavajú\nneležiavajúc\nneležiaval\nneležiavala\nneležiavali\nneležiavalo\nneležiavam\nneležiavame\nneležiavaš\nneležiavať\nneležiavate\nneliberalizoval\nneliberalizovala\nneliberalizovali\nneliberalizovalo\nneliberalizovaný\nneliberalizuje\nneliberalizujeme\nneliberalizujú\nnelicencioval\nnelicenciovala\nnelicenciovali\nnelicenciovalo\nnelicenciovať\nnelicenciuj\nnelicenciuje\nnelicenciujem\nnelicenciujeme\nnelicenciuješ\nnelicenciujete\nnelicenciujme\nnelicenciujte\nnelicenciujú\nnelicenciujúc\nnelietania\nnelichotivo\nnelisovaný\nneliturgoval\nneliturgovala\nneliturgovali\nneliturgovalo\nneliturgovať\nneliturguj\nneliturguje\nneliturgujem\nneliturgujeme\nneliturguješ\nneliturgujete\nneliturgujme\nneliturgujte\nneliturgujú\nneliturgujúc\nnelíž\nnelíže\nnelížem\nnelížeme\nnelížeš\nnelížete\nnelížme\nnelížte\nnelížu\nnelížuc\nnelogickosť\nnelogicky\nnelogičnosť\nnelogičnosti\nnelojálnosť\nnelojálnosti\nnelson\nNelson\nNelsona\nNelsonom\nnelsonov\nNelu\nneľúbenú\nneľúbezne\nneľúbosť\nneľubozvučnosť\nneľubozvuk\nneľudí\nneľudia\nneľuďmi\nneľuďoch\nneľuďom\nneľudskosť\nneľudsky\nnelúpaj\nnelúpajme\nnelúpajte\nnelúpajúc\nneľútosti\nneľútostime\nneľútostite\nneľútostne\nneľútostný\nneluž\nneluže\nnelužem\nnelužeme\nnelužeš\nnelužete\nnelužme\nnelužte\nnelužú\nnelužúc\nNely\nNelyžiari\nnem\nnemác\nnemáce\nnemácem\nnemáceme\nnemáceš\nnemácete\nnemácme\nnemácte\nnemácu\nnemácuc\nnemachroval\nnemachrovala\nnemachrovali\nnemachrovalo\nnemachrovať\nnemachruj\nnemachruje\nnemachrujem\nnemachrujeme\nnemachruješ\nnemachrujete\nnemachrujme\nnemachrujte\nnemachrujú\nnemachrujúc\nnemailoval\nnemailovala\nnemailovali\nnemailovalo\nnemailovať\nnemailuj\nnemailuje\nnemailujem\nnemailujeme\nnemailuješ\nnemailujete\nnemailujme\nnemailujte\nnemailujú\nnemailujúc\nnemajetnosť\nnemäkčené\nnemäkčeného\nnemäkčených\nnemäkči\nnemäkčime\nnemäkčite\nnemála\nnemálo\nnemanický\nnemanipulovaný\nnemanželov\nnemar\nnemaródil\nnemarte\nnemasti\nnemastime\nnemastite\nnemastne\nnemastno\nnematerializovala\nnematóda\nnemazlí\nnemazne\nnemaznem\nnemazneme\nnemazneš\nnemaznete\nnemaznú\nNemce\nNemciach\nNemcova\nNemcovej\nNemcovom\nNemcových\nNemčí\nnemčického\nNemčický\nnemčime\nnemčín\nnemčinách\nnemčinám\nnemčinami\nNemčiňanoch\nNemčiňany\nnemčinár\nnemčinárka\nnemčinársky\nnemčina\nnemčiť\nneme\nnemec\nNemec\nnemece\nnemecem\nnemeceme\nnemeceš\nnemecete\nNemecko\nnemeckosť\nnemecky\nnemecký\nnemecme\nnemecte\nnemectva\nnemecú\nnemecúc\nnemeč\nNemečky\nnemedializoval\nnemedializovala\nnemedializovali\nnemedializovalo\nnemedializovať\nnemedializuj\nnemedializuje\nnemedializujem\nnemedializujeme\nnemedializuješ\nnemedializujete\nnemedializujme\nnemedializujte\nnemedializujú\nnemedializujúc\nnemehiel\nnemehlo\nnemejloval\nnemejlovala\nnemejlovali\nnemejlovalo\nnemejlovať\nnemejluj\nnemejluje\nnemejlujem\nnemejlujeme\nnemejluješ\nnemejlujete\nnemejlujme\nnemejlujte\nnemejlujú\nnemejlujúc\nnemekotajúc\nnemel\nNemeli\nnemenej\nnemenenie\nnemeneniu\nnemenený\nnemenie\nnemeniteľne\nnemeniteľný\nnemenlivo\nnemenlivosť\nnemenne\nnemennosť\nnemenovanie\nNemenší\nnemenším\nNemer\nnemeranie\nnemerateľne\nnemesis\nNemesis\nNemešanoch\nNemešany\nnemeškaním\nnemie\nNemiec\nnemiernosť\nnemieru\nnemiestnosť\nnemiešateľný\nnemihotá\nnemihotaj\nnemihotajme\nnemihotajte\nnemihotajú\nnemihotajúc\nnemihotám\nnemihotáme\nnemihotáš\nnemihotáte\nnemilejšie\nnemilo\nnemilobohu\nnemilosrdne\nnemilosrdnosť\nnemilšej\nnemilší\nnemilšia\nnemilšie\nnemilšieho\nnemilšiemu\nnemilších\nnemilším\nnemilšími\nnemilšiu\nnemilšom\nnemilšou\nnemineralizovanej\nnemineralizovaných\nNemka\nNemkino\nnemládenči\nnemládenčime\nnemládenčite\nnemlado\nnemliaga\nnemliagaj\nnemliagajme\nnemliagajte\nnemliagajú\nnemliagajúc\nnemliagal\nnemliagala\nnemliagali\nnemliagalo\nnemliagam\nnemliagame\nnemliagaš\nnemliagať\nnemliagate\nnemĺkla\nnemĺkli\nnemĺklo\nnemĺkne\nnemĺknem\nnemĺkneme\nnemĺkneš\nnemĺknete\nnemĺkni\nnemĺknime\nnemĺknite\nnemĺknu\nnemĺknuc\nnemĺknuť\nnemĺkol\nnemluvňa\nnemluvniam\nnemluvniatko\nnemluvniatok\nnemňauč\nnemňauči\nnemňaučime\nnemňaučite\nnemnoho\nnemo\nnemocensky\nnemoc\nnemocne\nnemocnica\nnemocnička\nnemocničný\nnemocno\nnemocnosť\nnemocnosti\nnemočení\nnemočovkoval\nnemočovkovala\nnemočovkovali\nnemočovkovalo\nnemočovkovať\nnemočovkuj\nnemočovkuje\nnemočovkujem\nnemočovkujeme\nnemočovkuješ\nnemočovkujete\nnemočovkujme\nnemočovkujte\nnemočovkujú\nnemočovkujúc\nnemodemoval\nnemodemovala\nnemodemovali\nnemodemovalo\nnemodemovať\nnemodemuj\nnemodemuje\nnemodemujem\nnemodemujeme\nnemodemuješ\nnemodemujete\nnemodemujme\nnemodemujte\nnemodemujú\nnemodemujúc\nnemoderne\nnemodernosť\nnemoderoval\nnemoderovala\nnemoderovali\nnemoderovalo\nnemoderovaný\nnemoderovať\nnemoderuj\nnemoderuje\nnemoderujem\nnemoderujeme\nnemoderuješ\nnemoderujete\nnemoderujme\nnemoderujte\nnemoderujú\nnemoderujúc\nnemodrejme\nnemodrejte\nnemodrejú\nnemodrejúc\nnemodulovaný\nnemodulovať\nnemoherný\nnemohra\nnemohúc\nnemohúcejšej\nnemohúcejší\nnemohúcejšia\nnemohúcejšie\nnemohúcejšieho\nnemohúcejšiemu\nnemohúcejších\nnemohúcejším\nnemohúcejšími\nnemohúcejšiu\nnemohúcejšom\nnemohúcejšou\nnemohúci\nnemohúcne\nnemohúcnosť\nnemohúcnych\nnemohúco\nnemohúcosť\nnemojká\nnemojkaj\nnemojkajme\nnemojkajte\nnemojkajú\nnemojkajúc\nnemojkal\nnemojkala\nnemojkali\nnemojkalo\nnemojkám\nnemojkáme\nnemojkáš\nnemojkať\nnemojkáte\nnemonopolnej\nnemonopolnom\nnemonopolnou\nnemonopolnú\nnemonopolných\nNemonopolný\nnemontovanie\nnemor\nnemorálnosť\nnemóresne\nnemóresník\nnemóresnosť\nnemóresný\nnemorte\nnemosť\nnemota\nnemotivovaný\nnemotorne\nnemotorník\nnemotornosť\nnemotorný\nnemovitosť\nnemovitý\nnemôž\nnemožne\nnemožnila\nnemôžuc\nnemrašti\nnemraštime\nnemraštite\nnemrauč\nnemrauči\nnemraučime\nnemraučite\nnemrav\nnemravne\nnemravnica\nnemravnícky\nnemravník\nnemrnč\nnemrnči\nnemrnčime\nnemrnčite\nnemrúc\nnemruč\nnemručal\nnemručala\nnemručali\nnemručalo\nnemručať\nnemručí\nnemručia\nnemručiac\nnemručím\nnemručíme\nnemručíš\nnemručíte\nnemručme\nnemručte\nnemrz\nnemstím\nNemšová\nNemšové\nNemšovej\nNemšovou\nnemšovského\nnemšovskej\nnemšovskom\nnemšovských\nnemšovským\nNemšovský\nNemšovú\nnemúdrejme\nnemúdrejte\nnemúdrejú\nnemúdrejúc\nnemyslením\nnemysliaci\nnemysliacim\nnemystifikoval\nnemýtický\nnemý\nnenaakumuloval\nnenaakumulovala\nnenaakumulovali\nnenaakumulovalo\nnenaakumulovať\nnenaakumuluj\nnenaakumuluje\nnenaakumulujem\nnenaakumulujeme\nnenaakumuluješ\nnenaakumulujete\nnenaakumulujme\nnenaakumulujte\nnenaakumulujú\nnenaakumulujúc\nnenabaľoval\nnenabaľovala\nnenabaľovali\nnenabaľovalo\nnenabaľovať\nnenabaľuj\nnenabaľuje\nnenabaľujem\nnenabaľujeme\nnenabaľuješ\nnenabaľujete\nnenabaľujme\nnenabaľujte\nnenabaľujú\nnenabaľujúc\nnenabehnutia\nnenabiehaný\nnenabieľ\nnenabieli\nnenabielia\nnenabieliac\nnenabielil\nnenabielila\nnenabielili\nnenabielilo\nnenabielim\nnenabielime\nnenabieliš\nnenabieliť\nnenabielite\nnenabieľme\nnenabieľte\nnenabitý\nnenabúra\nNenabúra\nnenabúraj\nnenabúrajme\nnenabúrajte\nnenabúrajú\nnenabúrajúc\nnenabúral\nnenabúrala\nnenabúrali\nnenabúralo\nnenabúram\nnenabúrame\nnenabúraš\nnenabúrať\nnenabúrate\nnenacáp\nnenacápal\nnenacápala\nnenacápali\nnenacápalo\nnenacápať\nnenacápe\nnenacápem\nnenacápeme\nnenacápeš\nnenacápete\nnenacápme\nnenacápte\nnenacápu\nnenacápuc\nnenačarbi\nnenačarbime\nnenačarbite\nnenačarbú\nnenačarbúc\nnenačaté\nnenačatú\nnenačerti\nnenačertime\nnenačertite\nnenačim\nnenačisti\nnenačistime\nnenačistite\nnenačrúc\nnenačuchre\nnenačuchrem\nnenačuchreme\nnenačuchreš\nnenačuchrete\nnenačuchri\nnenačuchrime\nnenačuchrite\nnenačuchrú\nnenačuchrúc\nnenadále\nnenaďap\nnenaďapí\nnenaďapia\nnenaďapiac\nnenaďapil\nnenaďapila\nnenaďapili\nnenaďapilo\nnenaďapím\nnenaďapíme\nnenaďapíš\nnenaďapiť\nnenaďapíte\nnenaďapme\nnenaďapte\nnenadarmo\nnenádeja\nnenádejam\nnenádejame\nnenádejaš\nnenádejate\nnenadíduc\nnenadľahči\nnenadľahčime\nnenadľahčite\nnenadleť\nnenadmul\nnenadmula\nnenadmuli\nnenadmulo\nnenadobudnutia\nnenadobudnutie\nnenadpíšu\nnenadpíšuc\nnenadpleť\nnenadpletie\nnenadpletiem\nnenadpletieme\nnenadpletieš\nnenadpletiete\nnenadpleťme\nnenadpleťte\nnenadpletú\nnenadpletúc\nnenadplietla\nnenadplietli\nnenadplietlo\nnenadplietol\nnenadrogoval\nnenadrogovala\nnenadrogovali\nnenadrogovalo\nnenadrogovať\nnenadroguj\nnenadroguje\nnenadrogujem\nnenadrogujeme\nnenadroguješ\nnenadrogujete\nnenadrogujme\nnenadrogujte\nnenadrogujú\nnenadrogujúc\nnenadrúc\nnenadsadí\nnenadsadil\nnenadsadila\nNenadsadíme\nnenadsadzovali\nNenadsadzujú\nnenadši\nnenadšije\nnenadšijem\nnenadšijeme\nnenadšiješ\nnenadšijete\nnenadšijú\nnenadšijúc\nnenadšil\nnenadšila\nnenadšili\nnenadšilo\nnenadšime\nnenadšite\nnenadštrkla\nnenadštrkli\nnenadštrklo\nnenadštrkne\nnenadštrknem\nnenadštrkneme\nnenadštrkneš\nnenadštrknete\nnenadštrkni\nnenadštrknime\nnenadštrknite\nnenadštrknú\nnenadštrknúc\nnenadštrknúť\nnenadštrkol\nnenadurdi\nnenadurdime\nnenadurdite\nnenaduži\nnenadužije\nnenadužijem\nnenadužijeme\nnenadužiješ\nnenadužijete\nnenadužijú\nnenadužijúc\nnenadužime\nnenadužite\nnenadviazanie\nnenadviažuc\nnenadýma\nnenadýmaj\nnenadýmajme\nnenadýmajte\nnenadýmajú\nnenadýmajúc\nnenadýmal\nnenadýmala\nnenadýmali\nnenadýmalo\nnenadýmam\nnenadýmame\nnenadýmaš\nnenadýmať\nnenadýmate\nnenadžganec\nnenafajči\nnenafajčime\nnenafajčite\nnenafarbi\nnenafarbime\nnenafarbite\nnenafetoval\nnenafetovala\nnenafetovali\nnenafetovalo\nnenafetovať\nnenafetuj\nnenafetuje\nnenafetujem\nnenafetujeme\nnenafetuješ\nnenafetujete\nnenafetujme\nnenafetujte\nnenafetujú\nnenafetujúc\nnenahab\nnenahádž\nnenahádže\nnenahádžem\nnenahádžeme\nnenahádžeš\nnenahádžete\nnenahádžme\nnenahádžte\nnenahádžu\nnenahádžuc\nnenahlásenie\nnenahlásením\nnenáhlivo\nnenahovor\nnenahovorte\nnenahrab\nnenahradením\nnenahraditeľne\nnenahraditeľnosť\nnenahrádzaním\nnenahradzovaním\nnenahrej\nnenahreje\nnenahrejem\nnenahrejeme\nnenahreješ\nnenahrejete\nnenahrejme\nnenahrejte\nnenahrejú\nnenahrejúc\nnenahrň\nnenahrnie\nnenahrniem\nnenahrnieme\nnenahrnieš\nnenahrniete\nnenahrňme\nnenahrňte\nnenahryznutých\nnenahusti\nnenahustime\nnenahustite\nnenachádzanie\nnenachuj\nnenachuje\nnenachujem\nnenachujeme\nnenachuješ\nnenachujete\nnenachujme\nnenachujte\nnenachujú\nnenachujúc\nnenainštalovanie\nnenajazdi\nnenajazdime\nnenajazdite\nnenájdime\nnenájduc\nnenajedený\nnenakakať\nnenakáž\nnenakáže\nnenakážem\nnenakážeme\nnenakážeš\nnenakážete\nnenakážme\nnenakážte\nnenakážu\nnenakážuc\nnenaklaď\nnenakladanie\nnenakladaním\nnenákladne\nnenaklepká\nnenaklepkaj\nnenaklepkajme\nnenaklepkajte\nnenaklepkajú\nnenaklepkajúc\nnenaklepkal\nnenaklepkala\nnenaklepkali\nnenaklepkalo\nnenaklepkám\nnenaklepkáme\nnenaklepkáš\nnenaklepkať\nnenaklepkáte\nnenaklíčený\nnenakopči\nnenakopčime\nnenakopčite\nnenakrič\nnenakupovaním\nnenaládoval\nnenaládovala\nnenaládovali\nnenaládovalo\nnenaládovať\nnenaláduj\nnenaláduje\nnenaládujem\nnenaládujeme\nnenaláduješ\nnenaládujete\nnenaládujme\nnenaládujte\nnenaládujú\nnenaládujúc\nnenalám\nnenaláme\nnenalámem\nnenalámeme\nnenalámeš\nnenalámete\nnenalámme\nnenalámte\nnenalámu\nnenalámuc\nnenalapali\nnenálepkoval\nnenálepkovala\nnenálepkovali\nnenálepkovalo\nnenálepkovať\nnenálepkuj\nnenálepkuje\nnenálepkujem\nnenálepkujeme\nnenálepkuješ\nnenálepkujete\nnenálepkujme\nnenálepkujte\nnenálepkujú\nnenálepkujúc\nnenaleť\nnenáležite\nnenáležito\nnenáležitosť\nnenaliate\nnenamasti\nnenamastime\nnenamastite\nnenamontovanie\nnenamrz\nnenamrzel\nnenamrzela\nnenamrzeli\nnenamrzelo\nnenamrzí\nnenamrzia\nnenamrziac\nnenamrzieť\nnenamrzím\nnenamrzíme\nnenamrzíš\nnenamrzíte\nnenamrzme\nnenamrzte\nnenamurovanie\nnenamúti\nnenamútil\nnenamútila\nnenamútili\nnenanominoval\nnenanominovala\nnenanominovali\nnenanominovalo\nnenanominovať\nnenanominuj\nnenanominuje\nnenanominujem\nnenanominujeme\nnenanominuješ\nnenanominujete\nnenanominujme\nnenanominujte\nnenanominujú\nnenanominujúc\nnenaondi\nnenaondie\nnenaondiem\nnenaondieme\nnenaondieš\nnenaondiete\nnenaondil\nnenaondila\nnenaondili\nnenaondilo\nnenaondime\nnenaondiť\nnenaondite\nnenaor\nnenap\nnenapačmá\nnenapačmaj\nnenapačmajme\nnenapačmajte\nnenapačmajú\nnenapačmajúc\nnenapačmám\nnenapačmáme\nnenapačmáš\nnenapačmáte\nnenápadne\nnenápadnosť\nnenapar\nnenaparte\nnenapas\nnenapasovaná\nnenapáš\nnenapáše\nnenapášem\nnenapášeme\nnenapášeš\nnenapášete\nnenapašmá\nnenapašmaj\nnenapašmajme\nnenapašmajte\nnenapašmajú\nnenapašmajúc\nnenapašmám\nnenapašmáme\nnenapašmáš\nnenapašmáte\nnenapášme\nnenapášte\nnenapášu\nnenapášuc\nnenapíšu\nnenapíšuc\nnenaplačú\nnenaplačúc\nnenapleť\nnenapletie\nnenapletiem\nnenapletieme\nnenapletieš\nnenapletiete\nnenapleťme\nnenapleťte\nnenapletú\nnenapletúc\nnenaplietla\nnenaplietli\nnenaplietlo\nnenaplietol\nnenapĺňania\nnenapĺňanie\nnenapĺňaním\nnenapĺňaniu\nnenaplňovania\nnenapočúval\nnenapodobiteľne\nnenapodobiteľnosť\nnenapodobnený\nnenapodobni\nnenapodobnime\nnenapodobnite\nnenapodobniteľne\nnenapodobniteľnosť\nnenapodobniteľný\nnenapomôž\nnenapomôžuc\nnenapovedá\nnenapovedaj\nnenapovedajme\nnenapovedajte\nnenapovedajú\nnenapovedajúc\nnenapovedám\nnenapovedáme\nnenapovedáš\nnenapovedáte\nnenaprávanie\nnenapraviteľne\nnenapraviteľnosť\nnenaprš\nnenapuč\nnenapusti\nnenapustime\nnenapustite\nnenarác\nnenaráce\nnenarácem\nnenaráceme\nnenaráceš\nnenarácete\nnenarácme\nnenarácte\nnenarácu\nnenarácuc\nnenarasti\nnenarastime\nnenarastite\nnenarežírovaný\nnenariadenie\nnenáročky\nnenáročne\nnenárokovaný\nnenarozmýšľa\nnenarozmýšľaj\nnenarozmýšľajme\nnenarozmýšľajte\nnenarozmýšľajú\nnenarozmýšľajúc\nnenarozmýšľal\nnenarozmýšľala\nnenarozmýšľali\nnenarozmýšľalo\nnenarozmýšľam\nnenarozmýšľame\nnenarozmýšľaš\nnenarozmýšľať\nnenarozmýšľate\nnenarúb\nnenarúbe\nnenarúbem\nnenarúbeme\nnenarúbeš\nnenarúbete\nnenarúbme\nnenarúbte\nnenarúbu\nnenarúbuc\nnenarúšanie\nnenarušenia\nnenarušenie\nnenarušiteľnosť\nnenarušiteľnosti\nnenarušiteľný\nnenarušovaný\nnenary\nnenaryl\nnenasávajúci\nnenasiakava\nnenasiakavaj\nnenasiakavajme\nnenasiakavajte\nnenasiakavajú\nnenasiakavajúc\nnenasiakaval\nnenasiakavala\nnenasiakavali\nnenasiakavalo\nnenasiakavam\nnenasiakavame\nnenasiakavaš\nnenasiakavať\nnenasiakavate\nnenásilne\nnenásilnosť\nnenasníma\nnenasnímaj\nnenasnímajme\nnenasnímajte\nnenasnímajú\nnenasnímajúc\nnenasnímal\nnenasnímala\nnenasnímali\nnenasnímalo\nnenasnímam\nnenasnímame\nnenasnímaš\nnenasnímať\nnenasnímate\nnenasnul\nnenasnula\nnenasnuli\nnenasnulo\nnenásobenie\nnenaspia\nnenaspor\nnenasporte\nnenasteľ\nnenastieľa\nnenastieľaj\nnenastieľajme\nnenastieľajte\nnenastieľajú\nnenastieľajúc\nnenastieľal\nnenastieľala\nnenastieľali\nnenastieľalo\nnenastieľam\nnenastieľame\nnenastieľaš\nnenastieľať\nnenastieľate\nnenastrihá\nnenastrihaj\nnenastrihajme\nnenastrihajte\nnenastrihajú\nnenastrihajúc\nnenastrihal\nnenastrihala\nnenastrihali\nnenastrihalo\nnenastrihám\nnenastriháme\nnenastriháš\nnenastriháte\nnenastrihla\nnenastrihli\nnenastrihlo\nnenastrihne\nnenastrihnem\nnenastrihneme\nnenastrihneš\nnenastrihnete\nnenastrihni\nnenastrihnime\nnenastrihnite\nnenastrihnú\nnenastrihnúc\nnenastrihnúť\nnenastrihol\nnenastúpenie\nnenastúpením\nnenasuň\nnenasunie\nnenasuniem\nnenasunieme\nnenasunieš\nnenasuniete\nnenasuňme\nnenasuňte\nnenasunul\nnenasunula\nnenasunuli\nnenasunulo\nnenasvietených\nnenasypú\nnenasypúc\nnenasýtenosť\nnenásytne\nnenásytník\nnenásytnosť\nnenaši\nnenašije\nnenašijem\nnenašijeme\nnenašiješ\nnenašijete\nnenašijú\nnenašijúc\nnenašil\nnenašila\nnenašili\nnenašilo\nnenašime\nnenašite\nnenaškrab\nnenaškriab\nnenašpor\nnenašporte\nnenašskosť\nnenašsky\nnenaštartovania\nnenaštartovanie\nnenaštartovaním\nnenaštiepa\nnenaštiepaj\nnenaštiepajme\nnenaštiepajte\nnenaštiepajú\nnenaštiepajúc\nnenaštiepam\nnenaštiepame\nnenaštiepaš\nnenaštiepate\nnenaštrkla\nnenaštrkli\nnenaštrklo\nnenaštrkne\nnenaštrknem\nnenaštrkneme\nnenaštrkneš\nnenaštrknete\nnenaštrkni\nnenaštrknime\nnenaštrknite\nnenaštrknú\nnenaštrknúc\nnenaštrknúť\nnenaštrkol\nnenaštrkoval\nnenaštrkovala\nnenaštrkovali\nnenaštrkovalo\nnenaštrkovať\nnenaštrkuj\nnenaštrkuje\nnenaštrkujem\nnenaštrkujeme\nnenaštrkuješ\nnenaštrkujete\nnenaštrkujme\nnenaštrkujte\nnenaštrkujú\nnenaštrkujúc\nnenaštvi\nnenaštvime\nnenaštvite\nnenašuchor\nnenašuchorte\nnenašušor\nnenašušorte\nnenatočením\nnenatrúc\nnenaúčtovaním\nnenavar\nnenavarte\nnenaväzujú\nnenavesí\nnenavi\nnenaviaž\nnenaviaže\nnenaviažem\nnenaviažeme\nnenaviažeš\nnenaviažete\nnenaviažme\nnenaviažte\nnenaviažu\nnenaviažuc\nnenáviď\nnenávidený\nnenávidiaceho\nnenávidiaci\nnenávidieť\nnenavije\nnenavijem\nnenavijeme\nnenaviješ\nnenavijete\nnenavijú\nnenavijúc\nnenavil\nnenavila\nnenavili\nnenavilo\nnenavime\nnenávisť\nnenávistne\nnenávistníci\nnenávistník\nnenávistníkov\nnenávistnosť\nnenávistný\nnenavite\nnenavlečené\nnenavlhči\nnenavlhčime\nnenavlhčite\nnenavrátenia\nnenavrátenie\nnenavrátiteľná\nnenavrátiteľné\nnenávratna\nnenávratne\nnenávratnosť\nnenavrav\nnenavrhnutím\nnenavrstvi\nnenavrstvime\nnenavrstvite\nnenavrúc\nnenavštevovaný\nnenavyčíňala\nnenazberká\nnenazberkaj\nnenazberkajme\nnenazberkajte\nnenazberkajú\nnenazberkajúc\nnenazberkal\nnenazberkala\nnenazberkali\nnenazberkalo\nnenazberkám\nnenazberkáme\nnenazberkáš\nnenazberkať\nnenazberkáte\nnenazdajky\nnenazhromaždi\nnenazhromaždime\nnenazhromaždite\nnenazlosti\nnenazlostime\nnenazlostite\nnenazrúc\nnenazvážal\nnenazvi\nnenazvime\nnenazvite\nnenaži\nnenažije\nnenažijem\nnenažijeme\nnenažiješ\nnenažijete\nnenažijú\nnenažijúc\nnenažil\nnenažila\nnenažili\nnenažilo\nnenažime\nnenažiť\nnenažite\nnenažranec\nnenažraný\nneneleň\nnenelení\nnenelenia\nneneleniac\nnenelenil\nnenelenila\nnenelenili\nnenelenilo\nnenelením\nneneleníme\nneneleníš\nneneleniť\nneneleníte\nneneleňme\nneneleňte\nnenenáviď\nnenenávidel\nnenenávidela\nnenenávideli\nnenenávidelo\nnenenávidí\nnenenávidia\nnenenávidiac\nnenenávidieť\nnenenávidím\nnenenávidíme\nnenenávidíš\nnenenávidíte\nnenenáviďme\nnenenáviďte\nneneobrezaný\nnengó\nnénia\nnenie\nNenince\nNeninciach\nNeniniec\nnenominovanie\nNenominovaním\nnenominovaniu\nnenor\nnenormálnosť\nnenorte\nnenotifikovala\nnenovelizovania\nnenútene\nnenútenosť\nneobar\nneobarokového\nneobarte\nneobčerstvi\nneobčerstvime\nneobčerstvite\nneobdar\nneobdarte\nneobdržanie\nneobelej\nneobelejme\nneobelejte\nneobelejú\nneobelejúc\nneobhádž\nneobhádže\nneobhádžem\nneobhádžeme\nneobhádžeš\nneobhádžete\nneobhádžme\nneobhádžte\nneobhádžu\nneobhádžuc\nneobhajovanie\nneobhor\nneobhospodarovanie\nneobhrň\nneobhrnie\nneobhrniem\nneobhrnieme\nneobhrnieš\nneobhrniete\nneobhrňme\nneobhrňte\nneobhryz\nneobhryzie\nneobhryziem\nneobhryzieme\nneobhryzieš\nneobhryziete\nneobhrýzla\nneobhrýzli\nneobhrýzlo\nneobhryzme\nneobhrýzol\nneobhryzte\nneobhryzú\nneobhryzúc\nneobchodovania\nneobchodovanie\nneobchodovaniu\nneobchodovaný\nneobíduc\nneobiogenéza\nneobjasnenie\nneobjasneniu\nneobjasnený\nneobjasni\nneobjasnime\nneobjasnite\nneobjavné\nneobjedá\nneobjedaj\nneobjedajme\nneobjedajte\nneobjedajú\nneobjedajúc\nneobjedám\nneobjedáme\nneobjedáš\nneobjedáte\nneobjednanie\nneobjednaniu\nneobjednáva\nneobjednávaj\nneobjednávajme\nneobjednávajte\nNeobjednávajte\nneobjednávajú\nneobjednávajúc\nneobjednával\nneobjednávala\nneobjednávali\nneobjednávalo\nneobjednávam\nneobjednávame\nneobjednávaš\nneobjednávať\nneobjednávate\nneobjektivitu\nneobjektívnosť\nneobjektívnosti\nneobjektívnosťou\nneobjím\nneobjíme\nneobjímem\nneobjímeme\nneobjímeš\nneobjímete\nneobjímme\nneobjímte\nneobjímu\nneobjímuc\nneobkĺď\nneobkĺdie\nneobkĺdú\nneobkledáme\nneobkledáš\nneobkledáte\nneobklediem\nneobkleďme\nneobkleďte\nneobkledúc\nneobkračoval\nneobkračovala\nneobkračovali\nneobkračovalo\nneobkračovať\nneobkračuj\nneobkračuje\nneobkračujem\nneobkračujeme\nneobkračuješ\nneobkračujete\nneobkračujme\nneobkračujte\nneobkračujú\nneobkračujúc\nneobkráda\nneobkrádaj\nneobkrádajme\nneobkrádajte\nneobkrádajú\nneobkrádajúc\nneobkrádal\nneobkrádala\nneobkrádali\nneobkrádalo\nneobkrádam\nneobkrádame\nneobkrádaš\nneobkrádať\nneobkrádate\nneobkradla\nneobkradli\nneobkradlo\nneobkradne\nneobkradnem\nneobkradneme\nneobkradneš\nneobkradnete\nneobkradni\nneobkradnime\nneobkradnite\nneobkradnú\nneobkradnúc\nneobkradnúť\nneobkradol\nneobkresli\nneobkreslí\nneobkreslia\nneobkresliac\nneobkreslil\nneobkreslila\nneobkreslili\nneobkreslilo\nneobkreslím\nneobkreslime\nneobkreslíme\nneobkreslíš\nneobkresliť\nneobkreslite\nneobkreslíte\nneobkresľoval\nneobkresľovala\nneobkresľovali\nneobkresľovalo\nneobkresľovať\nneobkresľuj\nneobkresľuje\nneobkresľujem\nneobkresľujeme\nneobkresľuješ\nneobkresľujete\nneobkresľujme\nneobkresľujte\nneobkresľujú\nneobkresľujúc\nneobľahči\nneobľahčime\nneobľahčite\nneoblám\nneobláme\nneoblámem\nneoblámeme\nneoblámeš\nneoblámete\nneoblámme\nneoblámte\nneoblámu\nneoblámuc\nneobleť\nneoblezene\nneoblíž\nneoblíže\nneoblížem\nneoblížeme\nneoblížeš\nneoblížete\nneoblížme\nneoblížte\nneoblížu\nneoblížuc\nneoblomne\nneoblomnosť\nneobľúbenosť\nneobľúbenosti\nneobľúbenosťou\nneobmäkčený\nneobmäkči\nneobmäkčime\nneobmäkčite\nneobmedzene\nneobmedzenia\nneobmedzenie\nneobmedzením\nneobmedzenosť\nneobmedzi\nneobmedzovania\nneobmedzovanie\nneobmedzovaním\nneobmedzovaný\nneobmenene\nneobmieňa\nneobmieňaj\nneobmieňajme\nneobmieňajte\nneobmieňajú\nneobmieňajúc\nneobmieňal\nneobmieňala\nneobmieňali\nneobmieňalo\nneobmieňam\nneobmieňame\nneobmieňaš\nneobmieňať\nneobmieňate\nneobnovenia\nneobnovenie\nneobnovením\nneobnoveniu\nneobodrej\nneobodrejme\nneobodrejte\nneobodrejú\nneobodrejúc\nneoboslal\nneoboslala\nneoboslali\nneoboslalo\nneoboslať\nneobostrúc\nneobošle\nneobošlem\nneobošleme\nneobošleš\nneobošlete\nneobošli\nneobošlime\nneobošlite\nneobošlú\nneobošlúc\nneoboznámenie\nneobozretne\nneobrába\nneobrábaj\nneobrábajme\nneobrábajte\nneobrábajú\nneobrábajúc\nneobrábal\nneobrábala\nneobrábali\nneobrábalo\nneobrábam\nneobrábame\nneobrábanie\nneobrábaný\nneobrábaš\nneobrábať\nneobrábate\nneobrasti\nneobrastime\nneobrastite\nneobratnosť\nneobriadený\nneobrobený\nneobrúbava\nneobrúbavaj\nneobrúbavajme\nneobrúbavajte\nneobrúbavajú\nneobrúbavajúc\nneobrúbaval\nneobrúbavala\nneobrúbavali\nneobrúbavalo\nneobrúbavam\nneobrúbavame\nneobrúbavaš\nneobrúbavať\nneobrúbavate\nneobrúbe\nneobrúbem\nneobrúbeme\nneobrúbeš\nneobrúbete\nneobrúbu\nneobrúbuc\nneobsadenia\nneobsadenie\nneobseď\nneobsiahnuteľnú\nneobsiatych\nneobslúžený\nneobstaranie\nneobstavaný\nneobstriháva\nneobstrihávaj\nneobstrihávajme\nneobstrihávajte\nneobstrihávajú\nneobstrihávajúc\nneobstrihával\nneobstrihávala\nneobstrihávali\nneobstrihávalo\nneobstrihávam\nneobstrihávame\nneobstrihávaš\nneobstrihávať\nneobstrihávate\nneobsypú\nneobsypúc\nneobši\nneobšije\nneobšijem\nneobšijeme\nneobšiješ\nneobšijete\nneobšijú\nneobšijúc\nneobšil\nneobšila\nneobšili\nneobšilo\nneobšime\nneobšite\nneobšťastni\nneobšťastnime\nneobšťastnite\nNeobťažovaný\nneobtrúc\nneobvi\nneobviaž\nneobviaže\nneobviažem\nneobviažeme\nneobviažeš\nneobviažete\nneobviažme\nneobviažte\nneobviažu\nneobviažuc\nneobvije\nneobvijem\nneobvijeme\nneobviješ\nneobvijete\nneobvijú\nneobvijúc\nneobvil\nneobvila\nneobvili\nneobvilo\nneobvime\nneobvite\nneobvykle\nneobvyklejšej\nneobvyklejší\nneobvyklejšia\nNeobvyklejšia\nneobvyklejšie\nneobvyklejšieho\nneobvyklejšiemu\nneobvyklejších\nneobvyklejším\nneobvyklejšími\nneobvyklejšiu\nneobvyklejšom\nneobvyklejšou\nneobvyklo\nneobyčajnosť\nneobýva\nneobývaj\nneobývajme\nneobývajte\nneobývajú\nneobývajúc\nneobýval\nneobývala\nneobývali\nneobývalo\nneobývam\nneobývame\nneobývane\nneobývaš\nneobývať\nneobývate\nneobzrúc\nneocajchoval\nneocajchovala\nneocajchovali\nneocajchovalo\nneocajchovať\nneocajchuj\nneocajchuje\nneocajchujem\nneocajchujeme\nneocajchuješ\nneocajchujete\nneocajchujme\nneocajchujte\nneocajchujú\nneocajchujúc\nneocenenie\nneoceniteľne\nneoceniteľnosť\nneoceňovanie\nneocitá\nneocitaj\nneocitajme\nneocitajte\nneocitajú\nneocitajúc\nneocital\nneocitala\nneocitali\nneocitalo\nneocitám\nneocitáme\nNeocitáme\nneocitáš\nneocitať\nneocitáte\nneocytóza\nneočakávane\nNeočakávanie\nneočakávanosť\nneočar\nneočarte\nneočierni\nneočiernia\nneočierniac\nneočiernil\nneočiernila\nneočiernili\nneočiernilo\nneočiernim\nneočiernime\nneočierniš\nneočierniť\nneočiernite\nneočisti\nneočistime\nneočistite\nneočkúva\nneodarvinizmus\nneodb\nneodbavený\nneodbočujúci\nneodborne\nneodbrzdi\nneodbrzdime\nneodbrzdite\nneodbytne\nneodbytnosť\nneodbytný\nneodcudziteľnosť\nneodcudziteľný\nneodčerpanie\nneodčerpaný\nneoddelenie\nneoddeliteľne\nneoddeliteľnosť\nneoddeľovanie\nneoddeľovaním\nneoddiskutovaný\nneoddlž\nneoddlženia\nneoddlženie\nneoddlžený\nneoddlží\nneoddlžia\nneoddlžiac\nneoddlžil\nneoddlžila\nneoddlžili\nneoddlžilo\nneoddlžím\nneoddlžíme\nneoddlžíš\nneoddlžiť\nneoddlžíte\nneoddlžme\nneoddlžte\nneoddojči\nneoddojčime\nneoddojčite\nneodfarbi\nneodfarbime\nneodfarbite\nneodfiltrovaným\nneodfláka\nneodflákaj\nneodflákajme\nneodflákajte\nneodflákajú\nneodflákajúc\nneodflákal\nneodflákala\nneodflákali\nneodflákalo\nneodflákam\nneodflákame\nneodflákaš\nneodflákať\nneodflákate\nneodfúkava\nneodfúkavaj\nneodfúkavajme\nneodfúkavajte\nneodfúkavajú\nneodfúkavajúc\nneodfúkaval\nneodfúkavala\nneodfúkavali\nneodfúkavalo\nneodfúkavam\nneodfúkavame\nneodfúkavaš\nneodfúkavať\nneodfúkavate\nneodfukoval\nneodfukovala\nneodfukovali\nneodfukovalo\nneodfukovať\nneodfukuj\nneodfukuje\nneodfukujem\nneodfukujeme\nneodfukuješ\nneodfukujete\nneodfukujme\nneodfukujte\nneodfukujú\nneodfukujúc\nneodhadnuté\nneodhadnuteľne\nneodhadnuteľný\nneodhádzané\nneodhádž\nneodhádže\nneodhádžem\nneodhádžeme\nneodhádžeš\nneodhádžete\nneodhádžme\nneodhádžte\nneodhádžu\nneodhádžuc\nneodhalenie\nneodhlasúva\nneodhlasúvaj\nneodhlasúvajme\nneodhlasúvajte\nneodhlasúvajú\nneodhlasúvajúc\nneodhlasúval\nneodhlasúvala\nneodhlasúvali\nneodhlasúvalo\nneodhlasúvam\nneodhlasúvame\nneodhlasúvaš\nneodhlasúvať\nneodhlasúvate\nneodhliada\nneodhliadaj\nneodhliadajme\nneodhliadajte\nneodhliadajú\nneodhliadajúc\nneodhliadal\nneodhliadala\nneodhliadali\nneodhliadalo\nneodhliadam\nneodhliadame\nneodhliadaš\nneodhliadať\nneodhliadate\nneodhlučni\nneodhlučnime\nneodhlučnite\nneodhmotni\nneodhmotnime\nneodhmotnite\nneodhovor\nneodhovorte\nneodhrab\nneodhrabané\nneodhrdzi\nneodhrdzí\nneodhrdzia\nneodhrdziac\nneodhrdzil\nneodhrdzila\nneodhrdzili\nneodhrdzilo\nneodhrdzím\nneodhrdzime\nneodhrdzíme\nneodhrdzíš\nneodhrdziť\nneodhrdzite\nneodhrdzíte\nneodhrdzoval\nneodhrdzovala\nneodhrdzovali\nneodhrdzovalo\nneodhrdzovať\nneodhrdzuj\nneodhrdzuje\nneodhrdzujem\nneodhrdzujeme\nneodhrdzuješ\nneodhrdzujete\nneodhrdzujme\nneodhrdzujte\nneodhrdzujú\nneodhrdzujúc\nneodhrm\nneodhrň\nneodhrnie\nneodhrniem\nneodhrnieme\nneodhrnieš\nneodhrniete\nneodhrňme\nneodhrňte\nneodhrnutý\nneodchytáva\nneodchytávaj\nneodchytávajme\nneodchytávajte\nneodchytávajú\nneodchytávajúc\nneodchytával\nneodchytávala\nneodchytávali\nneodchytávalo\nneodchytávam\nneodchytávame\nneodchytávaš\nneodchytávať\nneodchytávate\nneodíduc\nneodisti\nneodistime\nneodistite\nneodjazdi\nneodjazdime\nneodjazdite\nneodjedá\nneodjedaj\nneodjedajme\nneodjedajte\nneodjedajú\nNeodjedajú\nneodjedajúc\nneodjedám\nneodjedáme\nneodjedáš\nneodjedáte\nneodkalená\nneodkáž\nneodkáže\nneodkážem\nneodkážeme\nneodkážeš\nneodkážete\nneodkážme\nneodkážte\nneodkážu\nneodkážuc\nneodkladne\nneodkladnosť\nneodklepnutím\nNeodklonenie\nneodkolíš\nneodkolíše\nneodkolíšem\nneodkolíšeme\nneodkolíšeš\nneodkolíšete\nneodkolíšme\nneodkolíšte\nneodkolíšu\nneodkopáva\nneodkopávaj\nneodkopávajme\nneodkopávajte\nneodkopávajú\nneodkopávajúc\nneodkopával\nneodkopávala\nneodkopávali\nneodkopávalo\nneodkopávam\nneodkopávame\nneodkopávaš\nneodkopávať\nneodkopávate\nneodkotúľa\nneodkotúľaj\nneodkotúľajme\nneodkotúľajte\nneodkotúľajú\nneodkotúľajúc\nneodkotúľal\nneodkotúľala\nneodkotúľali\nneodkotúľalo\nneodkotúľam\nneodkotúľame\nneodkotúľaš\nneodkotúľate\nneodkrágľoval\nneodkrágľovala\nneodkrágľovali\nneodkrágľovalo\nneodkrágľovať\nneodkrágľuj\nneodkrágľuje\nneodkrágľujem\nneodkrágľujeme\nneodkrágľuješ\nneodkrágľujete\nneodkrágľujme\nneodkrágľujte\nneodkrágľujú\nneodkrágľujúc\nneodkrýva\nneodkrývaj\nneodkrývajme\nneodkrývajte\nneodkrývajú\nneodkrývajúc\nneodkrýval\nneodkrývala\nneodkrývali\nneodkrývalo\nneodkrývam\nneodkrývame\nneodkrývaš\nneodkrývať\nneodkrývate\nneodkúpenia\nneodlaď\nneodladí\nneodladia\nneodladiac\nneodladil\nneodladila\nneodladili\nneodladilo\nneodladím\nneodladíme\nneodladíš\nneodladiť\nneodladíte\nneodlaďme\nneodlaďoval\nneodlaďovala\nneodlaďovali\nneodlaďovalo\nneodlaďovať\nneodlaďte\nneodlaďuj\nneodlaďuje\nneodlaďujem\nneodlaďujeme\nneodlaďuješ\nneodlaďujete\nneodlaďujme\nneodlaďujte\nneodlaďujú\nneodlaďujúc\nneodľahči\nneodľahčime\nneodľahčite\nneodleť\nneodlišovanie\nneodložené\nneodlučiteľne\nneodlučiteľnosť\nneodľudšti\nneodľudštime\nneodľudštite\nneodlúpe\nneodlúpem\nneodlúpeme\nneodlúpeš\nneodlúpete\nneodlúpu\nneodlúpuc\nneodmasti\nneodmastime\nneodmastite\nneodmeť\nneodmetie\nneodmetiem\nneodmetieme\nneodmetieš\nneodmetiete\nneodmeťme\nneodmeťte\nneodmetú\nneodmetúc\nNeodmietnutie\nneodmlč\nneodmocni\nneodmocnime\nneodmocnite\nneodmor\nneodmorte\nneodmrazované\nneodmysliteľne\nneodmysliteľný\nneodnárodni\nneodnárodnime\nneodnárodnite\nneodňateľne\nneodňateľný\nneodnechcejúc\nneodním\nneodníme\nneodnímem\nneodnímeme\nneodnímeš\nneodnímete\nneodnímme\nneodnímte\nneodnímu\nneodnímuc\nneodoberania\nneodobratia\nneodobratie\nneodobratím\nneodoháňa\nneodoháňaj\nneodoháňajme\nneodoháňajte\nneodoháňajú\nneodoháňajúc\nneodoháňal\nneodoháňala\nneodoháňali\nneodoháňalo\nneodoháňam\nneodoháňame\nneodoháňaš\nneodoháňať\nneodoháňate\nneodohraný\nneodokrýva\nneodokrývaj\nneodokrývajme\nneodokrývajte\nneodokrývajú\nneodokrývajúc\nneodokrýval\nneodokrývala\nneodokrývali\nneodokrývalo\nneodokrývam\nneodokrývame\nneodokrývaš\nneodokrývať\nneodokrývate\nneodolateľne\nneodolateľnosť\nneodoprúc\nneodor\nneodoral\nneodorala\nneodorali\nneodoralo\nneodorane\nneodoraný\nneodorať\nneodorie\nneodoriem\nneodorieme\nneodorieš\nneodoriete\nneodorme\nneodorte\nneodorú\nneodorúc\nneodoslanie\nneodosobni\nneodosobnime\nneodosobnite\nneodospi\nneodospime\nneodospite\nneodosteľ\nneodôvodnene\nneodôvodnenia\nneodôvodnením\nneodôvodnenosť\nneodôvodnenosti\nneodôvodni\nneodôvodnime\nneodôvodnite\nneodôvodniteľne\nneodôvodniteľný\nneodovzdania\nneodovzdanie\nneodovzdaním\nneodovzdaniu\nneodovzdávania\nneodp\nneodpájaní\nneodpar\nneodparentoval\nneodparentovala\nneodparentovali\nneodparentovalo\nneodparentovať\nneodparentuj\nneodparentuje\nneodparentujem\nneodparentujeme\nneodparentuješ\nneodparentujete\nneodparentujme\nneodparentujte\nneodparentujú\nneodparentujúc\nneodparte\nneodpas\nneodpasie\nneodpasiem\nneodpasieme\nneodpasieš\nneodpasiete\nneodpásla\nneodpásli\nneodpáslo\nneodpasme\nneodpásol\nneodpásť\nneodpaste\nneodpasú\nneodpasúc\nneodpášu\nneodpášuc\nneodpelia\nneodpeliam\nneodpeliame\nneodpeliaš\nneodpeliate\nneodpískaný\nneodpíšu\nneodpíšuc\nneodplácanie\nneodplatený\nneodpľúva\nneodpľúvaj\nneodpľúvajme\nneodpľúvajte\nneodpľúvajú\nneodpľúvajúc\nneodpľúval\nneodpľúvala\nneodpľúvali\nneodpľúvalo\nneodpľúvam\nneodpľúvame\nneodpľúvaš\nneodpľúvať\nneodpľúvate\nneodplynul\nneodplynuli\nneodpočítania\nneodpočúvania\nneodpočúvaný\nneodpojiteľný\nneodpomôž\nneodpomôžuc\nneodporučenie\nneodporučeniu\nneodpovedanie\nneodpovedia\nneodpovediac\nneodpovedz\nneodpovedzme\nneodpovedzte\nneodpovie\nneodpoviem\nneodpovieme\nneodpovieš\nneodpoviete\nneodpratajúc\nneodpredaním\nneodprírodni\nneodprírodnime\nneodprírodnite\nneodpusti\nneodpustime\nneodpustite\nneodpustiteľne\nneodpustiteľný\nneodpúšťaní\nneodrác\nneodráce\nneodrácem\nneodráceme\nneodráceš\nneodrácete\nneodrácme\nneodrácte\nneodrácu\nneodrácuc\nneodrapotaj\nneodrapotajme\nneodrapotajte\nneodrapotajúc\nneodrasti\nneodrastime\nneodrastite\nneodrátava\nneodrátavaj\nneodrátavajme\nneodrátavajte\nneodrátavajú\nneodrátavajúc\nneodrátaval\nneodrátavala\nneodrátavali\nneodrátavalo\nneodrátavam\nneodrátavame\nneodrátavaš\nneodrátavať\nneodrátavate\nneodrazene\nneodrážajúci\nneodrec\nneodrecme\nneodrecte\nneodrezáva\nneodrezávaj\nneodrezávajme\nneodrezávajte\nneodrezávajú\nneodrezávajúc\nneodrezával\nneodrezávala\nneodrezávali\nneodrezávalo\nneodrezávam\nneodrezávame\nneodrezávaš\nneodrezávať\nneodrezávate\nneodrúc\nneodsadzovať\nneodseď\nneodsedených\nneodsírený\nneodsíril\nneodslúženú\nneodspal\nneodspala\nneodspali\nneodspalo\nneodspať\nneodspi\nneodspí\nneodspia\nneodspiac\nneodspím\nneodspime\nneodspíme\nneodspíš\nneodspite\nneodspíte\nneodstatom\nneodstavenia\nneodstavenie\nneodstavovania\nneodstránenia\nneodstránenie\nNeodstránením\nneodstrániteľne\nneodstrániteľnosť\nneodstraňovanie\nneodstŕča\nneodstŕčaj\nneodstŕčajme\nneodstŕčajte\nneodstŕčajú\nneodstŕčajúc\nneodstŕčal\nneodstŕčala\nneodstŕčali\nneodstŕčalo\nneodstŕčam\nneodstŕčame\nneodstŕčaš\nneodstŕčať\nneodstŕčate\nneodstupovaní\nneodstupovanie\nneodsudzovanie\nneodsúhlasenia\nneodsúhlasenie\nneodsúhlasením\nneodsúhlasuje\nneodsúhlasujú\nneodsuň\nneodsunie\nneodsuniem\nneodsunieme\nneodsunieš\nneodsuniete\nneodsuňme\nneodsuňte\nneodsunul\nneodsunula\nneodsunuli\nneodsunulo\nneodsypú\nneodsypúc\nneodšker\nneodškerte\nneodškodni\nneodškodnime\nneodškodnite\nneodškrab\nneodškraboval\nneodškrabovala\nneodškrabovali\nneodškrabovalo\nneodškrabovať\nneodškrabuj\nneodškrabuje\nneodškrabujem\nneodškrabujeme\nneodškrabuješ\nneodškrabujete\nneodškrabujme\nneodškrabujte\nneodškrabujú\nneodškrabujúc\nneodškriab\nneodškriabe\nneodškriabem\nneodškriabeme\nneodškriabeš\nneodškriabete\nneodškriabme\nneodškriabte\nneodškriabu\nneodškriabuc\nneodškriepiteľne\nneodštátňoval\nneodštátňovala\nneodštátňovali\nneodštátňovalo\nneodštátňovať\nneodštátňuj\nneodštátňuje\nneodštátňujem\nneodštátňujeme\nneodštátňuješ\nneodštátňujete\nneodštátňujme\nneodštátňujte\nneodštátňujú\nneodštátňujúc\nneodtajiteľný\nneodtajni\nneodtajnime\nneodtajnite\nneodtajňoval\nneodtajňovala\nneodtajňovali\nneodtajňovalo\nneodtajňovať\nneodtajňuj\nneodtajňuje\nneodtajňujem\nneodtajňujeme\nneodtajňuješ\nneodtajňujete\nneodtajňujme\nneodtajňujte\nneodtajňujú\nneodtajňujúc\nneodtiahnú\nneodtienený\nneodtrp\nneodtrpí\nneodtrpia\nneodtrpiac\nneodtrpím\nneodtrpíme\nneodtrpíš\nneodtrpíte\nneodtrpme\nneodtrpte\nneodtučni\nneodtučnime\nneodtučnite\nneodučením\nneodumrúc\nneodur\nneoduševni\nneoduševnime\nneoduševnite\nneodvádzania\nneodvádzanie\nneodvádzaním\nneodvádzaniu\nneodvar\nneodvarte\nneodvedene\nneodvedenia\nneodvedenie\nneodvedením\nneodvedeniu\nneodvezený\nneodvi\nneodviaž\nneodviaže\nneodviažem\nneodviažeme\nneodviažeš\nneodviažete\nneodviažme\nneodviažte\nneodviažu\nneodviažuc\nneodvije\nneodvijem\nneodvijeme\nneodviješ\nneodvijete\nneodvijú\nneodvijúc\nneodvil\nneodvila\nneodvili\nneodvilo\nneodvime\nneodvírusoval\nneodvírusovala\nneodvírusovali\nneodvírusovalo\nneodvírusovať\nneodvírusuj\nneodvírusuje\nneodvírusujem\nneodvírusujeme\nneodvírusuješ\nneodvírusujete\nneodvírusujme\nneodvírusujte\nneodvírusujú\nneodvírusujúc\nneodviť\nneodvite\nneodvláč\nneodvláči\nneodvláčia\nneodvláčiac\nneodvláčil\nneodvláčila\nneodvláčili\nneodvláčilo\nneodvláčim\nneodvláčime\nneodvláčiš\nneodvláčiť\nneodvláčite\nneodvláčme\nneodvláčte\nneodvodený\nneodvodni\nneodvodnime\nneodvodnite\nneodvolania\nneodvolanie\nneodvolaním\nneodvolateľne\nneodvolateľnosť\nneodvrátiteľný\nneodvratne\nneodvratnosť\nneodvratný\nneodvrav\nneodvysielania\nneodvysielanie\nneodvysielaním\nneodvzdušni\nneodvzdušnime\nneodvzdušnite\nneodym\nneofačoval\nneofačovala\nneofačovali\nneofačovalo\nneofačovať\nneofačuj\nneofačuje\nneofačujem\nneofačujeme\nneofačuješ\nneofačujete\nneofačujme\nneofačujte\nneofačujú\nneofačujúc\nneofajkoval\nneofajkovala\nneofajkovali\nneofajkovalo\nneofajkovať\nneofajkuj\nneofajkuje\nneofajkujem\nneofajkujeme\nneofajkuješ\nneofajkujete\nneofajkujme\nneofajkujte\nneofajkujú\nneofajkujúc\nneofarbený\nneofašista\nneofašisticky\nneofašistický\nneofašizmus\nneofic\nneoficiálnosť\nneofunkcionalista\nneofyt\nneogab\nneogabane\nneogabanec\nneogabanosť\nneogén\nneogéne\nneogénna\nneogénne\nneogénnej\nneogénnych\nneogénu\nneogotikou\nneohlásene\nneohlásenia\nneohlásenie\nneohlásením\nneohobľovaný\nneohodnotenia\nneohodnotenie\nneohor\nneohoršoval\nneohoršovala\nneohoršovali\nneohoršovalo\nneohoršovať\nneohoršuj\nneohoršuje\nneohoršujem\nneohoršujeme\nneohoršuješ\nneohoršujete\nneohoršujme\nneohoršujte\nneohoršujú\nneohoršujúc\nneohovor\nneohovorte\nneohrabane\nneohrabanec\nneohrabanosť\nneohraničene\nneohraničenosť\nneohrej\nneohreje\nneohrejem\nneohrejeme\nneohreješ\nneohrejete\nneohrejme\nneohrejte\nneohrejú\nneohrejúc\nneohrievaný\nneohrň\nneohrnie\nneohrniem\nneohrnieme\nneohrnieš\nneohrniete\nneohrňme\nneohrňte\nneohryz\nneohryzie\nneohryziem\nneohryzieme\nneohryzieš\nneohryziete\nneohrýzla\nneohrýzli\nneohrýzlo\nneohryzme\nneohrýzol\nneohryzte\nneohryzú\nneohryzúc\nneohundre\nneohundrem\nneohundreme\nneohundreš\nneohundrete\nneohundri\nneohundrime\nneohundrite\nneohundrú\nneohundrúc\nneohybne\nneohybnosť\nneochladený\nneochorej\nneochorejme\nneochorejte\nneochorejú\nneochorejúc\nneochôt\nneochotách\nneochotám\nneochotami\nneochotne\nneochránenie\nneochrip\nneochripí\nneochripia\nneochripiac\nneochripím\nneochripíme\nneochripíš\nneochripíte\nneochripme\nneochripte\nneochrň\nneochrnie\nneochrniem\nneochrnieme\nneochrnieš\nneochrniete\nneochrňme\nneochrňte\nneochromoval\nneochromovala\nneochromovali\nneochromovalo\nneochromovať\nneochromuj\nneochromuje\nneochromujem\nneochromujeme\nneochromuješ\nneochromujete\nneochromujme\nneochromujte\nneochromujú\nneochromujúc\nneochudobni\nneochudobnime\nneochudobnite\nneochutený\nneochvejne\nneochvejnosť\nneochvejný\nneojazdi\nneojazdime\nneojazdite\nneoklam\nneoklamme\nneoklamte\nneoklasicisticky\nneoklasicistický\nneoklasicizmus\nneoklepáva\nneoklepávaj\nneoklepávajme\nneoklepávajte\nneoklepávajú\nneoklepávajúc\nneoklepával\nneoklepávala\nneoklepávali\nneoklepávalo\nneoklepávam\nneoklepávame\nneoklepávaš\nneoklepávať\nneoklepávate\nneokmáš\nneokmáše\nneokmášem\nneokmášeme\nneokmášeš\nneokmášete\nneokmášme\nneokmášte\nneokmášu\nneokmášuc\nneoknová\nneokolkované\nneokolkovanou\nneokolkovanú\nneokolkovaných\nneokolkovanými\nneokolonialista\nneokolonialistický\nneokolonializmus\nneokomentoval\nneokomentovala\nneokomentovali\nneokomentovalo\nneokomentovať\nneokomentuj\nneokomentuje\nneokomentujem\nneokomentujeme\nneokomentuješ\nneokomentujete\nneokomentujme\nneokomentujte\nneokomentujú\nneokomentujúc\nneokopíroval\nneokopírovala\nneokopírovali\nneokopírovalo\nneokopírovať\nneokopíruj\nneokopíruje\nneokopírujem\nneokopírujeme\nneokopíruješ\nneokopírujete\nneokopírujme\nneokopírujte\nneokopírujú\nneokopírujúc\nneokrej\nneokreje\nneokrejem\nneokrejeme\nneokreješ\nneokrejete\nneokrejme\nneokrejte\nneokrejú\nneokrejúc\nneokresane\nneokresanec\nneokresanosť\nneokrôchane\nneokrôchanec\nneokrôchanosť\nneokypti\nneokyptime\nneokyptite\nneokysličujúci\nneolám\nneoláme\nneolámem\nneolámeme\nneolámeš\nneolámete\nneolámme\nneolámte\nneolámu\nneolámuc\nneoliberalizmus\nneolit\nneolitický\nneolitmi\nneolíž\nneolíže\nneolížem\nneolížeme\nneolížeš\nneolížete\nneolížme\nneolížte\nneolížu\nneolížuc\nneologizmus\nneomalene\nneomalené\nneomar\nneomarený\nneomarte\nneomastený\nneomasti\nneomastime\nneomastite\nneomdlejú\nneomdlejúc\nneomeškaním\nneomilosti\nneomilostime\nneomilostite\nneomluvil\nneomorbidita\nneomortalita\nneomrz\nneomycín\nneomylne\nneomylnosť\nneomysta\nneonacista\nneonacistický\nneonacistka\nneonacizmus\nneonatálny\nneonatológ\nneonatológia\nneón\nneondi\nneondiac\nneondime\nneondite\nneoneskor\nneoneskorte\nneónka\nneónkou\nneónový\nneoným\nneopakovania\nneopakovanie\nneopakovateľne\nneopakovateľnosť\nneopanci\nneopancime\nneopancite\nneopar\nneoparte\nneopášu\nneopášuc\nneopätovaný\nneopatrne\nneopevni\nneopevnime\nneopevnite\nneopísateľne\nneopíšu\nneopíšuc\nneoplačú\nneoplačúc\nneoplasticizmus\nneoplazma\nneoplej\nneoplejme\nneoplejte\nneoplejú\nneoplejúc\nneopleť\nneopletie\nneopletiem\nneopletieme\nneopletieš\nneopletiete\nneopleťme\nneopleťte\nneopletú\nneopletúc\nneoplietla\nneoplietli\nneoplietlo\nneoplietol\nneoplodnený\nneoplodni\nneoplodnime\nneoplodnite\nneopodstatnenosť\nneopodstatnenosti\nneopodstatnenosťou\nneopodstatni\nneopodstatnime\nneopodstatnite\nneopomeň\nneopomenie\nneopomeniem\nneopomenieme\nneopomenieš\nneopomeniete\nneopomeňme\nneopomeňte\nneopomenú\nneopomenúc\nneopomenul\nneopomenula\nneopomenuli\nneopomenulo\nneopomenúť\nneopomenuteľný\nneopotrebováva\nneopotrebovávali\nneopozdí\nneopracovaný\nneopracovateľný\nneopráva\nneoprávnene\nneoprávnenie\nneoprávnenosť\nneoprávnenosti\nneopraž\nneopraží\nneopražia\nneopražiac\nneopražil\nneopražila\nneopražili\nneopražilo\nneopražím\nneopražíme\nneopražíš\nneopražiť\nneopražíte\nneopražme\nneopražte\nneoprén\nneoprénový\nneopŕchava\nneopŕchavaj\nneopŕchavajme\nneopŕchavajte\nneopŕchavajú\nneopŕchavajúc\nneopŕchaval\nneopŕchavala\nneopŕchavali\nneopŕchavalo\nneopŕchavam\nneopŕchavame\nneopŕchavaš\nneopŕchavať\nneopŕchavate\nneoprosti\nneoprostí\nneoprostia\nneoprostiac\nneoprostil\nneoprostila\nneoprostili\nneoprostilo\nneoprostím\nneoprostime\nneoprostíme\nneoprostíš\nneoprostiť\nneoprostite\nneoprostíte\nneoprš\nneoprúc\nneopuchá\nneopuchaj\nneopuchajme\nneopuchajte\nneopuchajú\nneopuchajúc\nneopuchal\nneopuchala\nneopuchali\nneopuchalo\nneopuchám\nneopucháme\nneopucháš\nneopuchať\nneopucháte\nneopuncovaný\nneopusti\nneopustime\nneopustite\nneorazítkovaný\nneorealisti\nneorealizmus\nneorganickosť\nneorganicky\nneorganizovane\nneorganizovania\nneorganizovaním\nneorganizovanosť\nneorganizovanosťou\nneoriadený\nneortodoxne\nneos\nneosamostatni\nneosamostatnime\nneosamostatnite\nneosiate\nneosiatej\nneosiatu\nneosirej\nneosirejme\nneosirejte\nneosirejú\nneosirejúc\nneoslepla\nneoslepli\nneosleplo\nneoslepne\nneoslepnem\nneoslepneme\nneoslepneš\nneoslepnete\nneoslepni\nneoslepnime\nneoslepnite\nneoslepnú\nneoslepnúc\nneoslepol\nneoslň\nneoslní\nneoslnia\nneoslniac\nneoslnil\nneoslnila\nneoslnili\nneoslnilo\nneoslním\nneoslníme\nneoslníš\nneoslniť\nneoslníte\nneoslňme\nneoslňoval\nneoslňovala\nneoslňovali\nneoslňovalo\nneoslňovať\nneoslňte\nneoslňuj\nneoslňuje\nneoslňujem\nneoslňujeme\nneoslňuješ\nneoslňujete\nneoslňujme\nneoslňujte\nneoslňujú\nneoslňujúc\nneosob\nneosobne\nneosobnosť\nneosopoval\nneosopovala\nneosopovali\nneosopovalo\nneosopovať\nneosopuj\nneosopuje\nneosopujem\nneosopujeme\nneosopuješ\nneosopujete\nneosopujme\nneosopujte\nneosopujú\nneosopujúc\nneosožník\nneospravedlnene\nneospravedlniteľne\nneospravodliv\nneospravodliví\nneospravodlivia\nneospravodliviac\nneospravodlivil\nneospravodlivila\nneospravodlivili\nneospravodlivilo\nneospravodlivím\nneospravodlivíme\nneospravodlivíš\nneospravodliviť\nneospravodlivíte\nneospravodlivme\nneospravodlivte\nneosprostieva\nneosprostievaj\nneosprostievajme\nneosprostievajte\nneosprostievajú\nneosprostievajúc\nneosprostieval\nneosprostievala\nneosprostievali\nneosprostievalo\nneosprostievam\nneosprostievame\nneosprostievaš\nneosprostievať\nneosprostievate\nneostarej\nneostarejme\nneostarejte\nneostarejú\nneostarejúc\nneostarla\nneostarli\nneostarlo\nneostarol\nneostražitosti\nneostrieľaný\nneošetrený\nneošetrovania\nneošetrovanie\nneošklb\nneošklbú\nneošklbúc\nneoškrab\nneoškriab\nneoškriabe\nneoškriabem\nneoškriabeme\nneoškriabeš\nneoškriabete\nneoškriabme\nneoškriabte\nneoškriabu\nneoškriabuc\nneoškrúc\nneoškvar\nneoškvarte\nneošľahla\nneošľahli\nneošľahlo\nneošľahne\nneošľahnem\nneošľahneme\nneošľahneš\nneošľahnete\nneošľahni\nneošľahnime\nneošľahnite\nneošľahnú\nneošľahnúc\nneošľahnúť\nneošľahol\nneošmekla\nneošmekli\nneošmeklo\nneošmekne\nneošmeknem\nneošmekneme\nneošmekneš\nneošmeknete\nneošmekni\nneošmeknime\nneošmeknite\nneošmeknú\nneošmeknúc\nneošmekol\nneošomre\nneošomrem\nneošomreme\nneošomreš\nneošomrete\nneošomri\nneošomrime\nneošomrite\nneošomrú\nneošomrúc\nneošúchanosť\nneotáľanie\nneoténia\nneotenín\nneoteplej\nneoteplejme\nneoteplejte\nneoteplejú\nneoteplejúc\nneoteplel\nneoteplela\nneotepleli\nneoteplelo\nneoteplie\nneotepliem\nneoteplieme\nneoteplieš\nneoteplieť\nneotepliete\nneotesane\nneotesanec\nneotesanosť\nneoteš\nneoteše\nneotešem\nneotešeme\nneotešeš\nneotešete\nneotešme\nneotešte\nneotešú\nneotešúc\nneotiahla\nneotiahli\nneotiahlo\nneotiahne\nneotiahnem\nneotiahneme\nneotiahneš\nneotiahnete\nneotiahni\nneotiahnime\nneotiahnite\nneotiahnu\nneotiahnuc\nneotiahnuť\nneotiahol\nneotĺkava\nneotĺkavaj\nneotĺkavajme\nneotĺkavajte\nneotĺkavajú\nneotĺkavajúc\nneotĺkaval\nneotĺkavala\nneotĺkavali\nneotĺkavalo\nneotĺkavam\nneotĺkavame\nneotĺkavaš\nneotĺkavať\nneotĺkavate\nneotrasený\nneotrasiteľne\nneotrasiteľnosť\nneotrháva\nneotrhávaj\nneotrhávajme\nneotrhávajte\nneotrhávajú\nneotrhávajúc\nneotrhával\nneotrhávala\nneotrhávali\nneotrhávalo\nneotrhávam\nneotrhávame\nneotrhávaš\nneotrhávať\nneotrhávate\nneotrúc\nneotužoval\nneotužovala\nneotužovali\nneotužovalo\nneotužovať\nneotužuj\nneotužuje\nneotužujem\nneotužujeme\nneotužuješ\nneotužujete\nneotužujme\nneotužujte\nneotužujú\nneotužujúc\nneotvor\nneotvorte\nneotyp\nneovalený\nneovaň\nneovanie\nneovaniem\nneovanieme\nneovanieš\nneovaniete\nneovaňme\nneovaňte\nneovenči\nneovenčime\nneovenčite\nneoverenie\nNeoverením\nneovereniu\nneoverí\nneoverím\nneoveríme\nneoveríš\nneoveríte\nneoverovaním\nneovi\nneoviaž\nneoviaže\nneoviažem\nneoviažeme\nneoviažeš\nneoviažete\nneoviažme\nneoviažte\nneoviažu\nneoviažuc\nneovije\nneovijem\nneovijeme\nneoviješ\nneovijete\nneovijú\nneovijúc\nneovime\nneovisá\nneovisaj\nneovisajme\nneovisajte\nneovisajú\nneovisajúc\nneovisal\nneovisala\nneovisali\nneovisalo\nneovisám\nneovisáme\nneovisáš\nneovisať\nneovisáte\nneovite\nneovládajúci\nneovládane\nneovládnutia\nneovládnutie\nneovplyvni\nneovplyvnime\nneovplyvnite\nneovplyvniteľný\nneovplyvňovania\nneovrabči\nneovrabčime\nneovrabčite\nneovulkanit\nneoxeroxoval\nneoxeroxovala\nneoxeroxovali\nneoxeroxovalo\nneoxeroxovať\nneoxeroxuj\nneoxeroxuje\nneoxeroxujem\nneoxeroxujeme\nneoxeroxuješ\nneoxeroxujete\nneoxeroxujme\nneoxeroxujte\nneoxeroxujú\nneoxeroxujúc\nneoxidovanie\nneoxidovať\nneoziab\nneoziabe\nneoziabem\nneoziabeme\nneoziabeš\nneoziabete\nneoziabme\nneoziabte\nneoziabu\nneoziabuc\nneoznačenia\nneoznačenie\nneoznačkovaný\nneoznačovanie\nneoznámenia\nneoznámenie\nneoznámením\nneoznámeniu\nneoznamovanie\nneozobať\nneozoikum\nneozrejmi\nneozrejmime\nneozrejmite\nneozvi\nneozvime\nneozvite\nneozvučený\nneoželej\nneoželejme\nneoželejte\nneoželejú\nneoželejúc\nneoživenie\nneoživotvor\nneoživotvorí\nneoživotvoria\nneoživotvoriac\nneoživotvoril\nneoživotvorila\nneoživotvorili\nneoživotvorilo\nneoživotvorím\nneoživotvoríme\nneoživotvoríš\nneoživotvoriť\nneoživotvoríte\nneoživotvorme\nneoživotvorte\nneožobračoval\nneožobračovala\nneožobračovali\nneožobračovalo\nneožobračovať\nneožobračuj\nneožobračuje\nneožobračujem\nneožobračujeme\nneožobračuješ\nneožobračujete\nneožobračujme\nneožobračujte\nneožobračujú\nneožobračujúc\nnepacoval\nnepacovala\nnepacovali\nnepacovalo\nnepacovať\nnepacuj\nnepacuje\nnepacujem\nnepacujeme\nnepacuješ\nnepacujete\nnepacujme\nnepacujte\nnepacujú\nnepacujúc\nnepáčenia\nnepáchanie\nnepachtenie\nnepachti\nnepachtime\nnepachtite\nnepaketujú\nnepál\nnepalatalizovaný\nNepál\nNepálčan\nNepálčanka\nNepálec\nNepálka\nnepálsky\nnepálsky\nnepamätajúci\nnepanci\nnepancime\nnepancite\nnepanikár\nnepanikárči\nnepanikárčia\nnepanikárčiac\nnepanikárčil\nnepanikárčila\nnepanikárčili\nnepanikárčilo\nnepanikárčim\nnepanikárčime\nnepanikárčiš\nnepanikárčiť\nnepanikárčite\nnepanikári\nnepanikária\nnepanikáriac\nnepanikáril\nnepanikárila\nnepanikárili\nnepanikárilo\nnepanikárim\nnepanikárime\nnepanikáriš\nnepanikáriť\nnepanikárite\nnepanikárme\nnepanikárte\nnepapre\nnepaprem\nnepapreme\nnepapreš\nnepaprete\nnepapri\nnepaprime\nnepaprite\nnepaprú\nnepaprúc\nnepapuľoval\nnepapuľovala\nnepapuľovali\nnepapuľovalo\nnepapuľovať\nnepapuľuj\nnepapuľuje\nnepapuľujem\nnepapuľujeme\nnepapuľuješ\nnepapuľujete\nnepapuľujme\nnepapuľujte\nnepapuľujú\nnepapuľujúc\nnepar\nneparalizuje\nneparno\nnepárnokopytník\nnepárnokopytníky\nneparodizoval\nneparodizovala\nneparodizovali\nneparodizovalo\nneparodizovať\nneparodizuj\nneparodizuje\nneparodizujem\nneparodizujeme\nneparodizuješ\nneparodizujete\nneparodizujme\nneparodizujte\nneparodizujú\nneparodizujúc\nnepárované\nneparte\nnepartizánč\nnepartizánči\nnepartizánčia\nnepartizánčiac\nnepartizánčil\nnepartizánčila\nnepartizánčili\nnepartizánčilo\nnepartizánčim\nnepartizánčime\nnepartizánčiš\nnepartizánčiť\nnepartizánčite\nnepartizánčme\nnepartizánčte\nnepas\nnepása\nnepásaj\nnepásajme\nnepásajte\nnepásajú\nnepásajúc\nnepásal\nnepásala\nnepásali\nnepásalo\nnepásam\nnepásame\nnepásaš\nnepásať\nnepásate\nnepáš\nnepáše\nnepášem\nnepášeme\nnepášeš\nnepášete\nnepášme\nnepášte\nnepášu\nnepášuc\nnepäť\nnepatentoval\nnepatentovala\nnepatentovali\nnepatentovalo\nnepatentovať\nnepatentuj\nnepatentuje\nnepatentujem\nnepatentujeme\nnepatentuješ\nnepatentujete\nnepatentujme\nnepatentujte\nnepatentujú\nnepatentujúc\nnepätia\nnepätiac\nnepätil\nnepätila\nnepätili\nnepätilo\nnepätím\nnepätíme\nnepätíš\nnepätiť\nnepätíte\nnepäťme\nnepatogénny\nnepátranie\nnepatrne\nnepatrnosť\nnepatrný\nnepäťte\nnepaušalizoval\nnepaušalizovala\nnepaušalizovali\nnepaušalizovalo\nnepaušalizovať\nnepaušalizuj\nnepaušalizuje\nnepaušalizujem\nnepaušalizujeme\nnepaušalizuješ\nnepaušalizujete\nnepaušalizujme\nNepaušalizujme\nnepaušalizujte\nnepaušalizujú\nnepaušalizujúc\nnepechor\nnepechorte\nnepekne\nnepeknosť\nnepeňažne\nneperforovaný\nNepersonifikujem\nnepersonifikujme\nnepestovanie\nnepestrejme\nnepestrejte\nnepestrejú\nnepestrejúc\nnepestria\nnepestril\nnepestrila\nnepestrili\nnepestrilo\nnepestrím\nnepestríme\nnepestríš\nnepestriť\nnepestríte\nnepevnosť\nnepevnosti\nnepískava\nnepískavaj\nnepískavajme\nnepískavajte\nnepískavajú\nnepískavajúc\nnepískaval\nnepískavala\nnepískavali\nnepískavalo\nnepískavam\nnepískavame\nnepískavaš\nnepískavať\nnepískavate\nnepiskotajúc\nnepišť\nnepišťme\nnepišťte\nnepíšu\nnepíšuc\nnepitvi\nnepitvime\nnepitvite\nneplačú\nneplačúc\nneplachti\nneplachtime\nneplachtite\nneplaň\nneplanci\nnepľanci\nneplancime\nnepľancime\nneplancite\nnepľancite\nneplaňme\nneplánovane\nneplánovite\nneplánovitosť\nneplantá\nneplantaj\nneplantajme\nneplantajte\nneplantajú\nneplantajúc\nneplantám\nneplantáme\nneplantáš\nneplantáte\nneplaňte\nnepľašti\nnepľaštime\nnepľaštite\nneplatene\nneplatieva\nneplatiteľ\nneplatiteľka\nneplatne\nneplávaný\nneplavec\nneplecha\nneplej\nnepleje\nneplejem\nneplejeme\nnepleješ\nneplejete\nneplejme\nneplejte\nneplejú\nneplejúc\nneplešti\nnepleštime\nnepleštite\nnepliech\nneplienenie\nneplnenie\nneplnič\nneplnieva\nneplnievaj\nneplnievajme\nneplnievajte\nneplnievajú\nneplnievajúc\nneplnieval\nneplnievala\nneplnievali\nneplnievalo\nneplnievam\nneplnievame\nneplnievaš\nneplnievať\nneplnievate\nnepľušť\nnepľušťme\nnepľušťte\nneplyň\nneplynie\nneplyniem\nneplynieme\nneplynieš\nneplyniete\nneplyňme\nneplyňte\nneplynulosť\nneplytvania\nnepobabre\nnepobabrem\nnepobabreme\nnepobabreš\nnepobabrete\nnepobabri\nnepobabrime\nnepobabrite\nnepobabrú\nnepobabrúc\nnepobelej\nnepobelejme\nnepobelejte\nnepobelejú\nnepobelejúc\nnepoberania\nnepobi\nnepobije\nnepobijem\nnepobijeme\nnepobiješ\nnepobijete\nnepobijú\nnepobijúc\nnepobime\nnepobite\nnepobozkaná\nnepocestuje\nnepocestujem\nnepocestujeme\nnepocestuješ\nnepocestujete\nnepocestujú\nnepocti\nnepoctí\nnepoctia\nnepoctiac\nnepoctil\nnepoctila\nnepoctili\nnepoctilo\nnepoctím\nnepoctime\nnepoctíme\nnepoctíš\nnepoctiť\nnepoctite\nnepoctíte\nnepoctivo\nnepoctivosť\nnepočar\nnepočarbi\nnepočarbime\nnepočarbite\nnepočarbú\nnepočarbúc\nnepočarte\nnepočatej\nnepočesaného\nnepočešti\nnepočeštime\nnepočeštite\nnepočetnosť\nnepočkania\nnepočum\nnepočuteľne\nnepočuteľnosť\nnepočuto\nnepočúvnik\nnepočúvnosť\nnepočúvnutie\nnepoď\nnepodaco\nnepodano\nnepodar\nnepodarene\nnepodarenec\nnepodarkovi\nnepodarkovia\nnepodarkovosť\nnepodarkový\nnepodarok\nnepodarte\nnepodato\nnepodbi\nnepodbije\nnepodbijem\nnepodbijeme\nnepodbiješ\nnepodbijete\nnepodbijú\nnepodbijúc\nnepodbime\nnepodbite\nnepodceneniu\nnepoddajne\nnepoddajnosť\nnepodeje\nnepodejem\nnepodejeme\nnepodeješ\nnepodejete\nnepodfarbi\nnepodfarbime\nnepodfarbite\nnepodhrab\nnepodchytením\nnepodchytený\nnepodialo\nnepodíduc\nnepodkasá\nnepodkasaj\nnepodkasajme\nnepodkasajte\nnepodkasajú\nnepodkasajúc\nnepodkasám\nnepodkasáme\nnepodkasáš\nnepodkasáte\nnepodkladaný\nnepodkupne\nnepodkupnosť\nnepodkúva\nnepodkúvaj\nnepodkúvajme\nnepodkúvajte\nnepodkúvajú\nnepodkúvajúc\nnepodkúval\nnepodkúvala\nnepodkúvali\nnepodkúvalo\nnepodkúvam\nnepodkúvame\nnepodkúvaš\nnepodkúvať\nnepodkúvate\nnepodleť\nnepodložene\nnepodloženosť\nnepodmasti\nnepodmastí\nnepodmastia\nnepodmastiac\nnepodmastil\nnepodmastila\nnepodmastili\nnepodmastilo\nnepodmastím\nnepodmastime\nnepodmastíme\nnepodmastíš\nnepodmastiť\nnepodmastite\nnepodmastíte\nnepodmasťoval\nnepodmasťovala\nnepodmasťovali\nnepodmasťovalo\nnepodmasťovať\nnepodmasťuj\nnepodmasťuje\nnepodmasťujem\nnepodmasťujeme\nnepodmasťuješ\nnepodmasťujete\nnepodmasťujme\nnepodmasťujte\nnepodmasťujú\nnepodmasťujúc\nnepodmášťa\nnepodmášťaj\nnepodmášťajme\nnepodmášťajte\nnepodmášťajú\nnepodmášťajúc\nnepodmášťal\nnepodmášťala\nnepodmášťali\nnepodmášťalo\nnepodmášťam\nnepodmášťame\nnepodmášťaš\nnepodmášťať\nnepodmášťate\nnepoďme\nnepodmienečne\nnepodmienene\nnepodmienenosť\nnepodmúra\nnepodmúraj\nnepodmúrajme\nnepodmúrajte\nnepodmúrajú\nnepodmúrajúc\nnepodmúral\nnepodmúrala\nnepodmúrali\nnepodmúralo\nnepodmúram\nnepodmúrame\nnepodmúraš\nnepodmúrať\nnepodmúrate\nnepôdni\nnepodnikania\nnepodnikanie\nnepodnikaniu\nnepodobne\nnepodomieľa\nnepodomieľaj\nnepodomieľajme\nnepodomieľajte\nnepodomieľajú\nnepodomieľajúc\nnepodomieľal\nnepodomieľala\nnepodomieľali\nnepodomieľalo\nnepodomieľam\nnepodomieľame\nnepodomieľaš\nnepodomieľať\nnepodomieľate\nnepodoprúc\nnepodpáľ\nnepodpálený\nnepodpáli\nnepodpália\nnepodpáliac\nnepodpálil\nnepodpálila\nnepodpálili\nnepodpálilo\nnepodpálim\nnepodpálime\nnepodpáliš\nnepodpáliť\nnepodpálite\nnepodpáľme\nnepodpáľte\nnepodpáš\nnepodpáše\nnepodpášem\nnepodpášeme\nnepodpášeš\nnepodpášete\nnepodpášme\nnepodpášte\nnepodpášu\nnepodpášuc\nnepodper\nnepodperte\nnepodpísania\nnepodpísanie\nnepodpísaním\nnepodpísaniu\nnepodpisovaním\nnepodpíšu\nnepodpíšuc\nnepodplatiteľne\nnepodplatiteľný\nnepodplatne\nnepodpleť\nnepodpletie\nnepodpletiem\nnepodpletieme\nnepodpletieš\nnepodpletiete\nnepodpleťme\nnepodpleťte\nnepodpletú\nnepodpletúc\nnepodplietla\nnepodplietli\nnepodplietlo\nnepodplietol\nnepodpor\nnepodporenia\nnepodporenie\nnepodporením\nnepodporeniu\nnepodporený\nnepodporovanie\nnepodporte\nnepodprel\nnepodprela\nnepodpreli\nnepodprelo\nnepodpri\nnepodprie\nnepodpriem\nnepodprieme\nnepodprieš\nnepodprieť\nnepodpriete\nnepodprime\nnepodprite\nnepodprú\nnepodprúc\nnepodrasti\nnepodrastime\nnepodrastite\nnepodrec\nnepodrecme\nnepodrecte\nnepodrezaný\nnepodri\nnepodriadenie\nnepodriem\nnepodrieme\nnepodriemem\nnepodriememe\nnepodriemeš\nnepodriemete\nnepodriemme\nnepodriemte\nnepodriemu\nnepodriemuc\nnepodrkoc\nnepodrkoce\nnepodrkocem\nnepodrkoceme\nnepodrkoceš\nnepodrkocete\nnepodrkocme\nnepodrkocte\nnepodrkocú\nnepodrkocúc\nnepodrkotajúc\nnepodrkotal\nnepodrkotala\nnepodrkotali\nnepodrkotalo\nnepodrkotať\nnepodrm\nnepodrmme\nnepodrmte\nnepodrmú\nnepodrmúc\nnepodrobenie\nnepodsadením\nnepodstatne\nnepodsteľ\nnepodsuň\nnepodsunie\nnepodsuniem\nnepodsunieme\nnepodsunieš\nnepodsuniete\nnepodsuňme\nnepodsuňte\nnepodsunul\nnepodsunula\nnepodsunuli\nnepodsunulo\nnepodsypú\nnepodsypúc\nnepodši\nnepodšije\nnepodšijem\nnepodšijeme\nnepodšiješ\nnepodšijete\nnepodšijú\nnepodšijúc\nnepodšil\nnepodšila\nnepodšili\nnepodšilo\nnepodšime\nnepodšite\nnepoďte\nnepodtiahlo\nnepodtrhla\nnepodtrhli\nnepodtrhlo\nnepodtrhne\nnepodtrhnem\nnepodtrhneme\nnepodtrhneš\nnepodtrhnete\nnepodtrhni\nnepodtrhnime\nnepodtrhnite\nnepodtrhnú\nnepodtrhnúc\nnepodtrhnúť\nnepodtrhol\nnepodumá\nnepodumaj\nnepodumajme\nnepodumajte\nnepodumajú\nnepodumajúc\nnepodumám\nnepodumáme\nnepodumáš\nnepodumáte\nnepodupá\nnepodupaj\nnepodupajme\nnepodupajte\nnepodupajú\nnepodupajúc\nnepodupám\nnepodupáme\nnepodupáš\nnepodupáte\nnepodur\nnepodurte\nnepodviaž\nnepodviaže\nnepodviažem\nnepodviažeme\nnepodviažeš\nnepodviažete\nnepodviažme\nnepodviažte\nnepodviažu\nnepodviažuc\nnepodvratne\nnepodvratnosť\nnepofajč\nnepofajči\nnepofajčí\nnepofajčia\nnepofajčiac\nnepofajčil\nnepofajčila\nnepofajčili\nnepofajčilo\nnepofajčím\nnepofajčime\nnepofajčíme\nnepofajčíš\nnepofajčiť\nnepofajčite\nnepofajčíte\nnepofajčme\nnepofajčte\nnepofrancúzšť\nnepofrancúzšti\nnepofrancúzštia\nnepofrancúzštiac\nnepofrancúzštil\nnepofrancúzštila\nnepofrancúzštili\nnepofrancúzštilo\nnepofrancúzštim\nnepofrancúzštime\nnepofrancúzštiš\nnepofrancúzštiť\nnepofrancúzštite\nnepofrancúzšťme\nnepofrancúzšťte\nnepohádž\nnepohádže\nnepohádžem\nnepohádžeme\nnepohádžeš\nnepohádžete\nnepohádžme\nnepohádžte\nnepohádžu\nnepohádžuc\nnepoháňaný\nnepohašter\nnepohašterte\nnepohlavne\nnepohlcujúci\nnepohmožď\nnepohmoždi\nnepohmoždí\nnepohmoždia\nnepohmoždiac\nnepohmoždil\nnepohmoždila\nnepohmoždili\nnepohmoždilo\nnepohmoždím\nnepohmoždime\nnepohmoždíme\nnepohmoždíš\nnepohmoždiť\nnepohmoždite\nnepohmoždíte\nnepohmožďme\nnepohmožďte\nnepohnute\nnepohnuto\nnepohodla\nnepohodli\nnepohodlí\nnepohodlia\nnepohodlie\nnepohodlím\nnepohodlne\nnepohodlnosť\nnepohodnú\nnepohodol\nnepohor\nnepohorši\nnepohoršime\nnepohoršite\nnepohosti\nnepohostime\nnepohostite\nnepohovor\nnepohovorte\nnepohrab\nnepohrnie\nnepohrniem\nnepohrnieme\nnepohrnieš\nnepohrniete\nnepohrnú\nnepohryz\nnepohryzie\nnepohryziem\nnepohryzieme\nnepohryzieš\nnepohryziete\nnepohrýzla\nnepohrýzli\nnepohrýzlo\nnepohryzme\nnepohrýzol\nnepohryzte\nnepohryzú\nnepohryzúc\nnepohundre\nnepohundrem\nnepohundreme\nnepohundreš\nnepohundrete\nnepohundri\nnepohundrime\nnepohundrite\nnepohundrú\nnepohundrúc\nnepohúžve\nnepohúžvem\nnepohúžveme\nnepohúžveš\nnepohúžvete\nnepohúžvi\nnepohúžvime\nnepohúžvite\nnepohúžvu\nnepohúžvuc\nnepohýb\nnepohyň\nnepohynie\nnepohyniem\nnepohynieme\nnepohynieš\nnepohyniete\nnepohyňme\nnepohyňte\nnepohynú\nnepohynúc\nnepohynul\nnepohynula\nnepohynuli\nnepohynulo\nnepohynúť\nnepochopiteľne\nnepochopiteľnosť\nnepochrám\nnepochráme\nnepochrámem\nnepochrámeme\nnepochrámeš\nnepochrámete\nnepochrámme\nnepochrámte\nnepochrámu\nnepochrámuc\nnepochrúm\nnepochrúmme\nnepochrúmte\nnepochuj\nnepochuje\nnepochujem\nnepochujeme\nnepochuješ\nnepochujete\nnepochujme\nnepochujte\nnepochujú\nnepochujúc\nnepochutnáva\nnepochutnávaj\nnepochutnávajme\nnepochutnávajte\nnepochutnávajú\nnepochutnávajúc\nnepochutnával\nnepochutnávala\nnepochutnávali\nnepochutnávalo\nnepochutnávam\nnepochutnávame\nnepochutnávaš\nnepochutnávať\nnepochutnávate\nnepochvasci\nnepochvascime\nnepochvascite\nnepochybnosť\nnepochybujúca\nnepoihráva\nnepoihrávaj\nnepoihrávajme\nnepoihrávajte\nnepoihrávajú\nnepoihrávajúc\nnepoihrával\nnepoihrávala\nnepoihrávali\nnepoihrávalo\nnepoihrávam\nnepoihrávame\nnepoihrávaš\nnepoihrávať\nnepoihrávate\nnepoistenia\nnepoistenie\nnepoistením\nnepoisteniu\nnepoisti\nnepoistime\nnepoistite\nnepoj\nnepoja\nnepojazdnosť\nnepôjdi\nnepôjdime\nnepôjdite\nnepôjduc\nnepojedajú\nnepojedali\nnepojí\nnepoklaď\nnepokmáš\nnepokmáše\nnepokmášem\nnepokmášeme\nnepokmášeš\nnepokmášete\nnepokmášme\nnepokmášte\nnepokmášu\nnepokmášuc\nnepokníš\nnepokníše\nnepokníšem\nnepokníšeme\nnepokníšeš\nnepokníšete\nnepokníšme\nnepokníšte\nnepokníšu\nnepokníšuc\nnepokojne\nnepokojnosť\nnepokolíš\nnepokolíše\nnepokolíšem\nnepokolíšeme\nnepokolíšeš\nnepokolíšete\nnepokolíšme\nnepokolíšte\nnepokolíšu\nnepokolíšuc\nnepokonáva\nnepokonávaj\nnepokonávajme\nnepokonávajte\nnepokonávajú\nnepokonávajúc\nnepokonával\nnepokonávala\nnepokonávali\nnepokonávalo\nnepokonávam\nnepokonávame\nnepokonávaš\nnepokonávať\nnepokonávate\nnepokor\nnepokorte\nnepokračovania\nnepokračovanie\nnepokračovaním\nnepokrkvi\nnepokrkvime\nnepokrkvite\nnepokrsti\nnepokrstime\nnepokrstite\nnepokrytia\nnepokrytie\nnepokrytiu\nnepokryto\nnepokrývanie\nnepokuľháva\nnepokuľhávaj\nnepokuľhávajme\nnepokuľhávajte\nnepokuľhávajú\nnepokuľhávajúc\nnepokuľhával\nnepokuľhávala\nnepokuľhávali\nnepokuľhávalo\nnepokuľhávam\nnepokuľhávame\nnepokuľhávaš\nnepokuľhávať\nnepokuľhávate\nnepokvitne\nnepokvitnem\nnepokvitneme\nnepokvitneš\nnepokvitnete\nnepokvitnú\nnepokýv\nnepokýve\nnepokývem\nnepokýveme\nnepokýveš\nnepokývete\nnepokývme\nnepokývte\nnepokývu\nnepokývuc\nnepoľahči\nnepoľahčime\nnepoľahčite\nnepolám\nnepolámme\nnepolámte\nnepolapiteľní\nNepolapiteľný\nnepolarizoval\nNepolarizovať\nnepolatinči\nnepolatinčime\nnepolatinčite\nnepolepši\nnepolepšime\nnepolepšite\nnepolepšiteľnosť\nnepoletí\nnepoletia\nnepoletím\nnepoletíme\nnepoletíš\nnepoletíte\nnepolezie\nnepoleziem\nnepolezieme\nnepolezieš\nnepoleziete\nnepolezú\nnepolievaný\nnepolitickosti\nnepoliticky\nnepolitikárčilo\nNepolitikárčime\nnepolti\nnepoltime\nnepoltite\nnepoľudšti\nnepoľudštime\nnepoľudštite\nnepomaďarči\nnepomaďarčime\nnepomaďarčite\nnepomasti\nnepomastime\nnepomastite\nnepomernosť\nnepomerte\nnepomesť\nnepomesti\nnepomestí\nnepomestia\nnepomestiac\nnepomestil\nnepomestila\nnepomestili\nnepomestilo\nnepomestím\nnepomestime\nnepomestíme\nnepomestíš\nnepomestiť\nnepomestite\nnepomestíte\nnepomesťme\nnepomesťte\nnepomešti\nnepomeštime\nnepomeštite\nnepomlč\nnepomletú\nnepomočený\nnepomotká\nnepomotkaj\nnepomotkajme\nnepomotkajte\nnepomotkajú\nnepomotkajúc\nnepomotkal\nnepomotkala\nnepomotkali\nnepomotkalo\nnepomotkám\nnepomotkáme\nnepomotkáš\nnepomotkať\nnepomotkáte\nnepomôž\nnepomôžuc\nnepomrúc\nneponadhadzoval\nneponadhadzovala\nneponadhadzovali\nneponadhadzovalo\nneponadhadzovať\nneponadhadzuj\nneponadhadzuje\nneponadhadzujem\nneponadhadzujeme\nneponadhadzuješ\nneponadhadzujete\nneponadhadzujme\nneponadhadzujte\nneponadhadzujú\nneponadhadzujúc\nneponemči\nneponemčime\nneponemčite\nneponesie\nneponesiem\nNeponesiem\nneponesieme\nneponesieš\nneponesiete\nneponesú\nneponor\nneponorte\nnepoodhadzovali\nnepoodhalilo\nnepookrej\nnepookreje\nnepookrejem\nnepookrejeme\nnepookreješ\nnepookrejete\nnepookrejme\nnepookrejte\nnepookrejú\nnepookrejúc\nnepoomdlievali\nnepoondi\nnepoondiac\nnepoondime\nnepoondite\nnepoostri\nnepoostrí\nnepoostria\nnepoostriac\nnepoostril\nnepoostrila\nnepoostrili\nnepoostrilo\nnepoostrím\nnepoostrime\nnepoostríme\nnepoostríš\nnepoostriť\nnepoostrite\nnepoostríte\nnepop\nnepopanšti\nnepopanštime\nnepopanštite\nnepopapre\nnepopaprem\nnepopapreme\nnepopapreš\nnepopaprete\nnepopapri\nnepopaprime\nnepopaprite\nnepopaprú\nnepopaprúc\nnepopas\nnepopása\nnepopásaj\nnepopásajme\nnepopásajte\nnepopásajú\nnepopásajúc\nnepopásal\nnepopásala\nnepopásali\nnepopásalo\nnepopásam\nnepopásame\nnepopásaš\nnepopásať\nnepopásate\nnepopierateľne\nnepopierateľnosť\nnepopisoval\nNepopisoval\nnepopisovala\nnepopisovali\nnepopisovalo\nnepopisovať\nnepopisuj\nnepopisuje\nnepopisujem\nnepopisujeme\nnepopisuješ\nnepopisujete\nnepopisujme\nnepopisujte\nnepopisujú\nnepopisujúc\nnepopíšu\nnepopíšuc\nnepoplačú\nnepoplačúc\nnepopleť\nnepopletie\nnepopletiem\nnepopletieme\nnepopletieš\nnepopletiete\nnepopleťme\nnepopleťte\nnepopletú\nnepopletúc\nnepoplietla\nnepoplietli\nnepoplietlo\nnepoplietol\nnepoplneným\nnepopoháňaný\nnepopoľšti\nnepopoľštime\nnepopoľštite\nnepopracoval\nnepopracovala\nnepopracovali\nnepopracovalo\nnepopracovať\nnepopracuj\nnepopracuje\nnepopracujem\nnepopracujeme\nnepopracuješ\nnepopracujete\nnepopracujme\nnepopracujte\nnepopracujú\nnepopracujúc\nnepopratajúc\nnepoprené\nnepoprezvedá\nnepoprezvedaj\nnepoprezvedajme\nnepoprezvedajte\nnepoprezvedajú\nnepoprezvedajúc\nnepoprezvedám\nnepoprezvedáme\nnepoprezvedáš\nnepoprezvedáte\nnepoprš\nnepoprúc\nnepopúdza\nnepopúdzaj\nnepopúdzajme\nnepopúdzajte\nnepopúdzajú\nnepopúdzajúc\nnepopúdzal\nnepopúdzala\nnepopúdzali\nnepopúdzalo\nnepopúdzam\nnepopúdzame\nnepopúdzaš\nnepopúdzať\nnepopúdzate\nnepopulárnosť\nnepopulárnosti\nnepopulárnosťou\nnepopustený\nnepopusti\nnepopustime\nnepopustite\nnepoputoval\nnepoputovala\nnepoputovali\nnepoputovalo\nnepoputovať\nnepoputuj\nnepoputuje\nnepoputujem\nnepoputujeme\nnepoputuješ\nnepoputujete\nnepoputujme\nnepoputujte\nnepoputujú\nnepoputujúc\nneporác\nneporáce\nneporácem\nneporáceme\nneporáceš\nneporácete\nneporácme\nneporácte\nneporácu\nneporácuc\nNeporadza\nNeporadzou\nneporanci\nneporancime\nneporancite\nneporantá\nneporantaj\nneporantajme\nneporantajte\nneporantajú\nneporantajúc\nneporantám\nneporantáme\nneporantáš\nneporantáte\nneporasti\nneporastime\nneporastite\nneporaziteľnosť\nneporecitujú\nneporezaný\nneporiadnica\nneporiadnik\nneporiadnosť\nneporúb\nneporúbe\nneporúbem\nneporúbeme\nneporúbeš\nneporúbete\nneporúbme\nneporúbte\nneporúbu\nneporúbuc\nneporušovania\nneporušovanie\nneporušti\nneporuštime\nneporuštite\nneporúti\nneporútia\nneporútim\nneporútime\nneporútiš\nneporútite\nneporuve\nneporuvem\nneporuveme\nneporuveš\nneporuvete\nneporuvú\nneporuvúc\nnepory\nneposádž\nneposádže\nneposádžem\nneposádžeme\nneposádžeš\nneposádžete\nneposádžme\nneposádžte\nneposádžu\nneposádžuc\nneposeď\nneposedne\nneposednica\nneposedník\nneposednosť\nneposedný\nneposekaný\nneposchováva\nneposchovávaj\nneposchovávajme\nneposchovávajte\nneposchovávajú\nneposchovávajúc\nneposchovával\nneposchovávala\nneposchovávali\nneposchovávalo\nneposchovávam\nneposchovávame\nneposchovávaš\nneposchovávať\nneposchovávate\nneposchytáva\nneposchytávaj\nneposchytávajme\nneposchytávajte\nneposchytávajú\nneposchytávajúc\nneposchytával\nneposchytávala\nneposchytávali\nneposchytávalo\nneposchytávam\nneposchytávame\nneposchytávaš\nneposchytávať\nneposchytávate\nneposilni\nneposilnime\nneposilnite\nneposilňovania\nneposkladaných\nneposkytnutia\nneposkytnutie\nneposkytnutím\nneposkytnutiu\nneposliň\nneposliní\nneposlinia\nneposliniac\nneposlinil\nneposlinila\nneposlinili\nneposlinilo\nneposliním\nneposliníme\nneposliníš\nneposliniť\nneposliníte\nneposliňme\nneposliňte\nneposlovenči\nneposlovenčime\nneposlovenčite\nneposlúchania\nneposlúchnutí\nneposlúchnutia\nneposlúchnutie\nneposlušne\nneposlušnica\nneposlušník\nneposoľ\nneposolí\nneposolia\nneposoliac\nneposolil\nneposolila\nneposolili\nneposolilo\nneposolím\nneposolíme\nneposolíš\nneposoliť\nneposolíte\nneposoľme\nneposoľte\nnepospávali\nnepospi\nnepospime\nnepospite\nnepospratáva\nnepospratávaj\nnepospratávajme\nnepospratávajte\nnepospratávajú\nnepospratávajúc\nnepospratával\nnepospratávala\nnepospratávali\nnepospratávalo\nnepospratávam\nnepospratávame\nnepospratávaš\nnepospratávať\nnepospratávate\nnepostavenie\nnepostavením\nneposteľ\nneposteň\nnepostene\nnepostenem\nneposteneme\nneposteneš\nnepostenete\nneposteňme\nneposteňte\nnepostenú\nnepostenúc\nneposti\nnepostiela\nnepostielaj\nnepostielajme\nnepostielajte\nnepostielajú\nnepostielajúc\nnepostielal\nnepostielala\nnepostielali\nnepostielalo\nnepostielam\nnepostielame\nnepostielaš\nnepostielať\nnepostielate\nnepostihnuteľne\nNepostihnutie\nnepostime\nnepostite\nnepostráda\nnepostrádaj\nnepostrádajme\nnepostrádajte\nnepostrádajú\nnepostrádajúc\nnepostrádal\nnepostrádala\nnepostrádali\nnepostrádalo\nnepostrádam\nnepostrádame\nnepostrádaš\nnepostrádať\nnepostrádate\nnepostrádateľne\nnepostrádateľný\nnepostriekaný\nnepostupovania\nneposunutie\nneposunutím\nneposyp\nneposypal\nneposypala\nneposypali\nneposypalo\nneposypať\nneposype\nneposypem\nneposypeme\nneposypeš\nneposypete\nneposypme\nneposypte\nneposypú\nNeposypú\nneposypúc\nnepošepci\nnepošepcime\nnepošepcite\nnepoši\nnepošib\nnepošibaj\nnepošibajme\nnepošibajte\nnepošibajúc\nnepošibú\nnepošibúc\nnepošije\nnepošijem\nnepošijeme\nnepošiješ\nnepošijete\nnepošijú\nnepošijúc\nnepošil\nnepošila\nnepošili\nnepošilo\nnepošime\nnepošite\nnepošklb\nnepošklbú\nnepošklbúc\nnepoškodenia\nnepoškodenie\nnepoškodzovanie\nnepoškrab\nnepoškriab\nnepoškriabe\nnepoškriabem\nnepoškriabeme\nnepoškriabeš\nnepoškriabete\nnepoškriabme\nnepoškriabte\nnepoškriabu\nnepoškriabuc\nnepoškvrčte\nnepoškvrnene\nnepoškvrnenosť\nnepošomre\nnepošomrem\nnepošomreme\nnepošomreš\nnepošomrete\nnepošomri\nnepošomrime\nnepošomrite\nnepošomrú\nnepošomrúc\nnepošťasti\nnepošťastime\nnepošťastite\nnepoštiepa\nnepoštiepaj\nnepoštiepajme\nnepoštiepajte\nnepoštiepajú\nnepoštiepajúc\nnepoštiepam\nnepoštiepame\nnepoštiepaš\nnepoštiepate\nnepoštípaj\nnepoštípajme\nnepoštípajte\nnepoštípajúc\nnepoštvi\nnepoštvime\nnepoštvite\nnepošuchá\nnepošuchaj\nnepošuchajme\nnepošuchajte\nnepošuchajú\nnepošuchajúc\nnepošuchal\nnepošuchala\nnepošuchali\nnepošuchalo\nnepošuchám\nnepošucháme\nnepošucháš\nnepošuchať\nnepošucháte\nnepotečie\nnepotečú\nnepotizmu\nnepotizmus\nnepotká\nnepotlačeného\nnepotlačenej\nnepotlačenom\nnepotlačenú\nnepotlačených\nnepotlačenými\nnepotrať\nnepotratí\nnepotratia\nnepotratiac\nnepotratil\nnepotratila\nnepotratili\nnepotratilo\nnepotratím\nnepotratíme\nnepotratíš\nnepotratiť\nnepotratíte\nnepotraťme\nnepotraťte\nnepotrebne\nnepotrebujúci\nnepotrel\nnepotrela\nnepotreli\nnepotrelo\nnepotresci\nnepotrescime\nnepotrescite\nnepotrestanie\nnepotri\nnepotrie\nnepotriem\nnepotrieme\nnepotrieš\nnepotrieť\nnepotriete\nnepotrime\nnepotrite\nnepotrkoc\nnepotrkoce\nnepotrkocem\nnepotrkoceme\nnepotrkoceš\nnepotrkocete\nnepotrkocme\nnepotrkocte\nnepotrkocú\nnepotrkocúc\nnepotrkotajúc\nnepotrp\nnepotrtká\nnepotrtkaj\nnepotrtkajme\nnepotrtkajte\nnepotrtkajú\nnepotrtkajúc\nnepotrtkal\nnepotrtkala\nnepotrtkali\nnepotrtkalo\nnepotrtkám\nnepotrtkáme\nnepotrtkáš\nnepotrtkať\nnepotrtkáte\nnepotrú\nnepotrúc\nnepotrundži\nnepotrundžime\nnepotrundžite\nnepoturči\nnepoturčime\nnepoturčite\nnepotvor\nnepotvorte\nnepotvrdenia\nnepotvrdenie\nnepotvrdením\nnepotvrdeniu\nnepotvrdzovania\nnepotýkal\nnepoučiteľný\nnepoukáž\nnepoukáže\nnepoukážem\nnepoukážeme\nnepoukážeš\nnepoukážete\nnepoukážme\nnepoukážte\nnepoukážu\nnepoukážuc\nnepousmej\nnepousmeje\nnepousmejem\nnepousmejeme\nnepousmeješ\nnepousmejete\nnepousmejme\nnepousmejte\nnepousmejú\nnepousmejúc\nnepousmial\nnepousmiala\nnepousmiali\nnepousmialo\nnepousmiať\nnepoužitia\nnepoužitie\nnepoužitím\nnepoužívajúci\nnepouživaný\nnepovar\nnepovarte\nnepovedajú\nnepovedené\nNepovedený\nnepovedie\nnepovediem\nnepovedieme\nnepovedieš\nnepovediete\nnepovedome\nnepovedomie\nnepovedú\nnepover\nnepoverenia\nnepoverte\nnepovezie\nnepoveziem\nnepovezieme\nnepovezieš\nnepoveziete\nnepovezú\nnepovi\nnepoviazal\nnepoviazala\nnepoviazali\nnepoviazalo\nnepoviazať\nnepoviaž\nnepoviaže\nnepoviažem\nnepoviažeme\nnepoviažeš\nnepoviažete\nnepoviažme\nnepoviažte\nnepoviažu\nnepoviažuc\nnepovije\nnepovijem\nnepovijeme\nnepoviješ\nnepovijete\nnepovijú\nnepovijúc\nnepovime\nnepovinne\nnepovite\nnepôvodnosť\nnepovolanie\nnepovolávanie\nnepovolenia\nnepovolenie\nnepovolením\nnepovoľovanie\nnepovoľovaním\nnepovrav\nnepovraždi\nnepovraždime\nnepovraždite\nnepovrť\nnepovrúc\nnepovšimnute\nnepovšimnuto\nnepovybíja\nnepovybíjaj\nnepovybíjajme\nnepovybíjajte\nnepovybíjajú\nnepovybíjajúc\nnepovybíjal\nnepovybíjala\nnepovybíjali\nnepovybíjalo\nnepovybíjam\nnepovybíjame\nnepovybíjaš\nnepovybíjať\nnepovybíjate\nnepovyvlieka\nnepovyvliekaj\nnepovyvliekajme\nnepovyvliekajte\nnepovyvliekajú\nnepovyvliekajúc\nnepovyvliekal\nnepovyvliekala\nnepovyvliekali\nnepovyvliekalo\nnepovyvliekam\nnepovyvliekame\nnepovyvliekaš\nnepovyvliekať\nnepovyvliekate\nnepozachytáva\nnepozachytávaj\nnepozachytávajme\nnepozachytávajte\nnepozachytávajú\nnepozachytávajúc\nnepozachytával\nnepozachytávala\nnepozachytávali\nnepozachytávalo\nnepozachytávam\nnepozachytávame\nnepozachytávaš\nnepozachytávať\nnepozachytávate\nnepozalieza\nnepozaliezaj\nnepozaliezajme\nnepozaliezajte\nnepozaliezajú\nnepozaliezajúc\nnepozaliezal\nnepozaliezala\nnepozaliezali\nnepozaliezalo\nnepozaliezam\nnepozaliezame\nnepozaliezaš\nnepozaliezať\nnepozaliezate\nnepozametaný\nnepozapicháva\nnepozapichávaj\nnepozapichávajme\nnepozapichávajte\nnepozapichávajú\nnepozapichávajúc\nnepozapichával\nnepozapichávala\nnepozapichávali\nnepozapichávalo\nnepozapichávam\nnepozapichávame\nnepozapichávaš\nnepozapichávať\nnepozapichávate\nnepozastavenie\nnepozdáva\nnepozdávaj\nnepozdávajme\nnepozdávajte\nnepozdávajú\nnepozdávajúc\nnepozdával\nnepozdávala\nnepozdávali\nnepozdávalo\nnepozdávam\nnepozdávame\nnepozdávaš\nnepozdávať\nnepozdávate\nnepozdržala\nnepozhadzoval\nnepozhadzovala\nnepozhadzovali\nnepozhadzovalo\nnepozhadzovať\nnepozhadzuj\nnepozhadzuje\nnepozhadzujem\nnepozhadzujeme\nnepozhadzuješ\nnepozhadzujete\nnepozhadzujme\nnepozhadzujte\nnepozhadzujú\nnepozhadzujúc\nnepoznajúca\nnepoznajúci\nnepoznamenaný\nnepoznane\nnepoznania\nnepoznanie\nnepoznaním\nnepoznaniu\nnepoznavší\nnepozob\nnepozorne\nnepozornosť\nnepozorovane\nnepozorovateľne\nnepozrúc\nnepozvania\nnepozvanie\nnepozvaním\nnepozvaniu\nnepozvi\nnepozvime\nnepozvite\nnepožadovanie\nnepožiadanie\nnepožívanie\nnepradenie\nneprajne\nneprajnícky\nneprajníctvach\nneprajníctvam\nneprajníctvo\nneprajníčka\nneprajník\nneprajnosť\nneprajúci\nnepraktickosť\nnepraktikovaný\nnepraktikuje\nnepranie\nnepraslo\nneprášieva\nneprášievaj\nneprášievajme\nneprášievajte\nneprášievajú\nneprášievajúc\nneprášieval\nneprášievala\nneprášievali\nneprášievalo\nneprášievam\nneprášievame\nneprášievaš\nneprášievať\nneprášievate\nnepratajúc\nnepráv\nneprávach\nnepravdepodobne\nnepravdivosť\nnepravdivosti\nnepravidelne\nneprávo\nneprávoplatne\nnepravosť\nnepražený\nneprď\nneprdenie\nneprebádaný\nnepreberný\nneprebi\nneprebije\nneprebijem\nneprebijeme\nneprebiješ\nneprebijete\nneprebijú\nneprebijúc\nneprebime\nneprebite\nnepreblyskúva\nnepreblyskúvaj\nnepreblyskúvajme\nnepreblyskúvajte\nnepreblyskúvajú\nnepreblyskúvajúc\nnepreblyskúval\nnepreblyskúvala\nnepreblyskúvali\nnepreblyskúvalo\nnepreblyskúvam\nnepreblyskúvame\nnepreblyskúvaš\nnepreblyskúvať\nnepreblyskúvate\nnepreboľ\nnepreboľme\nnepreboľte\nneprebor\nnepreborte\nneprebranie\nneprebraním\nneprebudenosť\nneprecenené\nneprecenením\nnepreclený\nneprečísli\nneprečíslia\nneprečísliac\nneprečíslil\nneprečíslila\nneprečíslili\nneprečíslilo\nneprečíslim\nneprečíslime\nneprečísliš\nneprečísliť\nneprečíslite\nneprečíslováva\nneprečíslovávaj\nneprečíslovávajme\nneprečíslovávajte\nneprečíslovávajú\nneprečíslovávajúc\nneprečíslovával\nneprečíslovávala\nneprečíslovávali\nneprečíslovávalo\nneprečíslovávam\nneprečíslovávame\nneprečíslovávaš\nneprečíslovávať\nneprečíslovávate\nneprečisti\nneprečistia\nneprečistiac\nneprečistil\nneprečistila\nneprečistili\nneprečistilo\nneprečistím\nneprečistime\nneprečistíme\nneprečistíš\nneprečistiť\nneprečistite\nneprečistíte\nneprečíšťa\nneprečíšťaj\nneprečíšťajme\nneprečíšťajte\nneprečíšťajú\nneprečíšťajúc\nneprečíšťal\nneprečíšťala\nneprečíšťali\nneprečíšťalo\nneprečíšťam\nneprečíšťame\nneprečíšťaš\nneprečíšťať\nneprečíšťate\nneprečitujú\nnepredajnosť\nnepredaním\nnepredarmo\nnepredávanie\nnepredbieha\nnepredbieham\nnepredbiehame\nnepredbiehaš\nnepredbiehate\nnepredči\nnepredčime\nnepredčite\nnepredestiloval\nnepredestilovala\nnepredestilovali\nnepredestilovalo\nnepredestilovať\nnepredestiluj\nnepredestiluje\nnepredestilujem\nnepredestilujeme\nnepredestiluješ\nnepredestilujete\nnepredestilujme\nnepredestilujte\nnepredestilujú\nnepredestilujúc\nnepredhrej\nnepredhreje\nnepredhrejem\nnepredhrejeme\nnepredhreješ\nnepredhrejete\nnepredhrejme\nnepredhrejte\nnepredhrejú\nnepredhrejúc\nnepredchádza\nnepredchádzaj\nnepredchádzajme\nnepredchádzajte\nnepredchádzajú\nnepredchádzajúc\nnepredchádzal\nnepredchádzala\nnepredchádzali\nnepredchádzalo\nnepredchádzam\nnepredchádzame\nnepredchádzaš\nnepredchádzať\nnepredchádzate\nnepredíduc\nnepredimenzovávaní\nnepredkladaním\nnepredloženia\nnepredloženie\nnepredložením\nnepredloženiu\nnepredlžovania\nnepredlžovanie\nnepredlžovaním\nnepredostrúc\nnepredpeč\nnepredpečie\nnepredpečiem\nnepredpečieme\nnepredpečieš\nnepredpečiete\nnepredpečme\nnepredpečte\nnepredpečú\nnepredpečúc\nnepredpiecť\nnepredpiekla\nnepredpiekli\nnepredpieklo\nnepredpiekol\nnepredpíšu\nnepredpíšuc\nnepredpojato\nnepredpojatosť\nnepredpojatosti\nnepredpovedá\nnepredpovedaj\nnepredpovedajme\nnepredpovedajte\nnepredpovedajú\nnepredpovedajúc\nnepredpovedám\nnepredpovedáme\nnepredpovedáš\nnepredpovedáte\nnepredramatizovali\nnepredraženie\nnepredriapaj\nnepredriapajme\nnepredriapajte\nnepredriapajúc\nnepredriem\nnepredrieme\nnepredriemem\nnepredriememe\nnepredriemeš\nnepredriemete\nnepredriemme\nnepredriemte\nnepredriemu\nnepredriemuc\nnepredrogoval\nnepredrogovala\nnepredrogovali\nnepredrogovalo\nnepredrogovať\nnepredroguj\nnepredroguje\nnepredrogujem\nnepredrogujeme\nnepredroguješ\nnepredrogujete\nnepredrogujme\nnepredrogujte\nnepredrogujú\nnepredrogujúc\nnepredrokoval\nnepredrokovala\nnepredrokovali\nnepredrokovalo\nnepredrokovať\nnepredrokuj\nnepredrokuje\nnepredrokujem\nnepredrokujeme\nnepredrokuješ\nnepredrokujete\nnepredrokujme\nnepredrokujte\nnepredrokujú\nnepredrokujúc\nnepredspevoval\nnepredspevovala\nnepredspevovali\nnepredspevovalo\nnepredspevovať\nnepredspevuj\nnepredspevuje\nnepredspevujem\nnepredspevujeme\nnepredspevuješ\nnepredspevujete\nnepredspevujme\nnepredspevujte\nnepredspevujú\nnepredspevujúc\nnepredstaviteľne\nnepredstaviteľno\nnepredstieranie\nnepredstihnutý\nnepredsuň\nnepredsunie\nnepredsuniem\nnepredsunieme\nnepredsunieš\nnepredsuniete\nnepredsuňme\nnepredsuňte\nnepredsunul\nnepredsunula\nnepredsunuli\nnepredsunulo\nnepredurči\nnepredurčime\nnepredurčite\nnepredvar\nnepredvarte\nnepredvídane\nnepredvídanosť\nnepredvídateľne\nnepredvídavosť\nnepredzásobil\nnepredzásobili\nnepredznamená\nnepredznamenaj\nnepredznamenajme\nnepredznamenajte\nnepredznamenajú\nnepredznamenajúc\nnepredznamenal\nnepredznamenala\nnepredznamenali\nnepredznamenalo\nnepredznamenám\nnepredznamenáme\nnepredznamenáš\nnepredznamenať\nnepredznamenáte\nnepredznamenáva\nnepredznamenávaj\nnepredznamenávajme\nnepredznamenávajte\nnepredznamenávajú\nnepredznamenávajúc\nnepredznamenával\nnepredznamenávala\nnepredznamenávali\nnepredznamenávalo\nnepredznamenávam\nnepredznamenávame\nnepredznamenávaš\nnepredznamenávať\nnepredznamenávate\nneprefajči\nneprefajčime\nneprefajčite\nneprefarbi\nneprefarbime\nneprefarbite\nnepreferovanie\nneprefrč\nnepregitujú\nneprehádž\nneprehádže\nneprehádžem\nneprehádžeme\nneprehádžeš\nneprehádžete\nneprehádžme\nneprehádžte\nneprehádžu\nneprehádžuc\nneprehladených\nneprehľadne\nneprehľadnosť\nneprehĺbenia\nneprehlbovania\nneprehlbovanie\nneprehlbovaniu\nneprehnojujú\nneprehodnotenia\nneprehodnotenie\nneprehor\nneprehovor\nneprehovorte\nneprehrab\nneprehrej\nneprehreje\nneprehrejem\nneprehrejeme\nneprehreješ\nneprehrejete\nneprehrejme\nneprehrejte\nneprehrejú\nneprehrejúc\nneprehriatia\nneprehrm\nneprehrň\nneprehrnie\nneprehrniem\nneprehrnieme\nneprehrnieš\nneprehrniete\nneprehrňme\nneprehrňte\nneprehryz\nneprehryzie\nneprehryziem\nneprehryzieme\nneprehryzieš\nneprehryziete\nneprehrýzla\nneprehrýzli\nneprehrýzlo\nneprehryzme\nneprehrýzol\nneprehryzte\nneprehryzú\nneprehryzúc\nneprehusti\nneprehustime\nneprehustite\nneprechládza\nneprechládzaj\nneprechládzajme\nneprechládzajte\nneprechládzajú\nneprechládzajúc\nneprechládzal\nneprechládzala\nneprechládzali\nneprechládzalo\nneprechládzam\nneprechládzame\nneprechládzaš\nneprechládzať\nneprechládzate\nneprechodenou\nneprechorej\nneprechorejme\nneprechorejte\nneprechorejú\nneprechorejúc\nnepreinvestovanie\nneprejdi\nneprejdime\nneprejdite\nneprejdú\nneprejedá\nneprejedaj\nneprejedajme\nNeprejedajme\nneprejedajte\nneprejedajú\nneprejedajúc\nneprejedám\nneprejedáme\nneprejedaním\nneprejedáš\nneprejedáte\nneprejedenie\nneprejednáva\nneprejednávaj\nneprejednávajme\nneprejednávajte\nneprejednávajú\nneprejednávajúc\nneprejednával\nneprejednávala\nneprejednávali\nneprejednávalo\nneprejednávam\nneprejednávame\nneprejednávaš\nneprejednávať\nneprejednávate\nneprejudikoval\nneprejudikovali\nneprejudikovalo\nneprejudikovanie\nneprejudikuje\nNeprejudikujte\nneprekalkulovali\nneprekazenia\nneprekleň\nnepreklenie\nneprekleniem\nnepreklenieme\nnepreklenieš\nneprekleniete\nneprekleňme\nneprekleňte\nnepreklenuteľný\nneprekĺzla\nneprekĺzli\nneprekĺzlo\nneprekĺzne\nneprekĺznem\nneprekĺzneme\nneprekĺzneš\nneprekĺznete\nneprekĺzni\nneprekĺznime\nneprekĺznite\nneprekĺznu\nneprekĺznuc\nneprekĺzol\nneprekonanie\nneprekonateľne\nneprekonateľnosť\nneprekonzultoval\nneprekonzultovala\nneprekonzultovali\nneprekonzultovalo\nneprekonzultovať\nneprekonzultuj\nneprekonzultuje\nneprekonzultujem\nneprekonzultujeme\nneprekonzultuješ\nneprekonzultujete\nneprekonzultujme\nneprekonzultujte\nneprekonzultujú\nneprekonzultujúc\nneprekračovanie\nneprekrič\nneprekročenia\nneprekročenie\nneprekročením\nneprekrsti\nneprekrstime\nneprekrstite\nneprekurovania\nneprekurovaním\nneprekyp\nneprelesieme\nneprelesiete\nneprelesiež\nneprelešti\nnepreleštime\nnepreleštite\nnepreleť\nnepreletáva\nnepreletávaj\nnepreletávajme\nnepreletávajte\nnepreletávajú\nnepreletávajúc\nnepreletával\nnepreletávala\nnepreletávali\nnepreletávalo\nnepreletávam\nnepreletávame\nnepreletávaš\nnepreletávať\nnepreletávate\nneprelezenou\nneprelievaný\nneprelov\nnepreloz\nnepreložiteľný\nnepreľudni\nnepreľudnime\nnepreľudnite\nneprelustroval\nneprelustrovala\nneprelustrovali\nneprelustrovalo\nneprelustrovať\nneprelustruj\nneprelustruje\nneprelustrujem\nneprelustrujeme\nneprelustruješ\nneprelustrujete\nneprelustrujme\nneprelustrujte\nneprelustrujú\nneprelustrujúc\nnepremaľoval\nnepremaľovala\nnepremaľovali\nnepremaľovalo\nnepremaľovaných\nnepremaľovať\nnepremaľuj\nnepremaľuje\nnepremaľujem\nnepremaľujeme\nnepremaľuješ\nnepremaľujete\nnepremaľujme\nnepremaľujte\nnepremaľujú\nnepremaľujúc\nnepremaľúva\nnepremaľúvaj\nnepremaľúvajme\nnepremaľúvajte\nnepremaľúvajú\nnepremaľúvajúc\nnepremaľúval\nnepremaľúvala\nnepremaľúvali\nnepremaľúvalo\nnepremaľúvam\nnepremaľúvame\nnepremaľúvaš\nnepremaľúvať\nnepremaľúvate\nnepremárnenie\nnepremárňoval\nnepremárňovala\nnepremárňovali\nnepremárňovalo\nnepremárňovať\nnepremárňuj\nnepremárňuje\nnepremárňujem\nnepremárňujeme\nnepremárňuješ\nnepremárňujete\nnepremárňujme\nnepremárňujte\nnepremárňujú\nnepremárňujúc\nnepremasti\nnepremastime\nnepremastite\nnepremenne\nnepremennosť\nnepremenovaná\nnepremieľa\nnepremieľaj\nnepremieľajme\nnepremieľajte\nnepremieľajú\nnepremieľajúc\nnepremieľal\nnepremieľala\nnepremieľali\nnepremieľalo\nnepremieľam\nnepremieľame\nnepremieľaš\nnepremieľať\nnepremieľate\nnepremies\nnepremiesi\nnepremiesia\nnepremiesiac\nnepremiesil\nnepremiesila\nnepremiesili\nnepremiesilo\nnepremiesim\nnepremiesime\nnepremiesiš\nnepremiesiť\nnepremiesite\nnepremiesme\nnepremieste\nnepremiestní\nnepremiestním\nnepremiestníme\nnepremiestníš\nnepremiestníte\nnepremietnutia\nnepremlč\nnepremlčania\nnepremlčateľné\nnepremlčateľnými\nnepremnož\nnepremnoží\nnepremnožia\nnepremnožiac\nnepremnožil\nnepremnožila\nnepremnožili\nnepremnožilo\nnepremnožím\nnepremnožíme\nnepremnožíš\nnepremnožiť\nnepremnožíte\nnepremnožme\nnepremnožte\nnepremokavosť\nnepremosti\nnepremostí\nnepremostia\nnepremostiac\nnepremostil\nnepremostila\nnepremostili\nnepremostilo\nnepremostím\nnepremostime\nnepremostíme\nnepremostíš\nnepremostiť\nnepremostite\nnepremostíte\nnepremosťoval\nnepremosťovala\nnepremosťovali\nnepremosťovalo\nnepremosťovať\nnepremosťuj\nnepremosťuje\nnepremosťujem\nnepremosťujeme\nnepremosťuješ\nnepremosťujete\nnepremosťujme\nnepremosťujte\nnepremosťujú\nnepremosťujúc\nnepremôž\nnepremožený\nnepremožiteľne\nnepremožiteľnosť\nnepremôžuc\nnepremyslene\nnepremyslenosť\nneprená\nneprenáhľoval\nneprenáhľovala\nneprenáhľovali\nneprenáhľovalo\nneprenáhľovať\nneprenáhľuj\nneprenáhľuje\nneprenáhľujem\nneprenáhľujeme\nneprenáhľuješ\nneprenáhľujete\nneprenáhľujme\nneprenáhľujte\nneprenáhľujú\nneprenáhľujúc\nneprenášania\nneprenesenia\nneprenesenie\nneprenesením\nnepreniknuteľne\nnepreniknuteľnosť\nnepreniknutia\nneprenitujú\nnepreondi\nnepreondiac\nnepreondiel\nnepreondiela\nnepreondieli\nnepreondielo\nnepreondime\nnepreondite\nneprepäl\nneprepäla\nneprepäli\nneprepälo\nneprepas\nneprepáš\nneprepáše\nneprepášem\nneprepášeme\nneprepášeš\nneprepášete\nneprepášme\nneprepášte\nneprepášu\nneprepášuc\nneprepečený\nneprepíšu\nneprepíšuc\nnepreplácania\nnepreplácanie\nnepreplácaním\nnepreplačú\nnepreplačúc\nnepreplachoval\nnepreplachovala\nnepreplachovali\nnepreplachovalo\nnepreplachovať\nnepreplachuj\nnepreplachuje\nnepreplachujem\nnepreplachujeme\nnepreplachuješ\nnepreplachujete\nnepreplachujme\nnepreplachujte\nnepreplachujú\nnepreplachujúc\nnepreplakoval\nnepreplakovala\nnepreplakovali\nnepreplakovalo\nnepreplakovať\nnepreplakuj\nnepreplakuje\nnepreplakujem\nnepreplakujeme\nnepreplakuješ\nnepreplakujete\nnepreplakujme\nnepreplakujte\nnepreplakujú\nnepreplakujúc\nnepreplatenie\nnepreplatením\nnepreplateniu\nneprepleť\nneprepletie\nneprepletiem\nneprepletieme\nneprepletieš\nneprepletiete\nneprepleťme\nneprepleťte\nneprepletú\nneprepletúc\nnepreplietla\nnepreplietli\nnepreplietlo\nnepreplietol\nneprepluhoval\nneprepluhovala\nneprepluhovali\nneprepluhovalo\nneprepluhovať\nneprepluhuj\nneprepluhuje\nneprepluhujem\nneprepluhujeme\nneprepluhuješ\nneprepluhujete\nneprepluhujme\nneprepluhujte\nneprepluhujú\nneprepluhujúc\nneprepojenia\nneprepojenie\nneprepolitizovalo\nneprepolitizuje\nneprepracovanosť\nneprepuká\nneprepustenia\nneprepustenie\nneprepusti\nneprepustime\nneprepustite\nneprepúšťajúca\nneprepúšťania\nneprepúšťanie\nneprerába\nneprerábaj\nneprerábajme\nneprerábajte\nneprerábajú\nneprerábajúc\nneprerábam\nneprerábame\nneprerábaš\nneprerábate\nneprerác\nnepreráce\nneprerácem\nnepreráceme\nnepreráceš\nneprerácete\nneprerácme\nneprerácte\nneprerácu\nneprerácuc\nnepreradenia\nnepreradenie\nnepreradením\nneprerasti\nneprerastime\nneprerastite\nneprerazenia\nneprerec\nneprerecme\nneprerecte\nneprerezaný\nnepreriednu\nneprerokovania\nneprerokovanie\nneprerokovaním\nneprerokovaniu\nneprerozdeľ\nneprerozdelí\nneprerozdelia\nneprerozdeliac\nneprerozdelil\nneprerozdelila\nneprerozdelili\nneprerozdelilo\nneprerozdelím\nneprerozdelíme\nneprerozdelíš\nneprerozdeliť\nneprerozdelíte\nneprerozdeľme\nneprerozdeľoval\nneprerozdeľovala\nneprerozdeľovali\nneprerozdeľovalo\nneprerozdeľovať\nneprerozdeľte\nneprerozdeľuj\nneprerozdeľuje\nneprerozdeľujem\nneprerozdeľujeme\nneprerozdeľuješ\nneprerozdeľujete\nneprerozdeľujme\nneprerozdeľujte\nneprerozdeľujú\nneprerozdeľujúc\nneprerúb\nneprerúba\nneprerúbaj\nneprerúbajme\nneprerúbajte\nneprerúbajú\nneprerúbajúc\nneprerúbam\nneprerúbame\nneprerúbaš\nneprerúbate\nneprerušene\nneprerušenia\nneprerušením\nneprerušenosť\nneprerušovane\nnepresadenia\nnepresaditeľné\nnepresaditeľných\nnepresádž\nnepresádže\nnepresádžem\nnepresádžeme\nnepresádžeš\nnepresádžete\nnepresádžme\nnepresádžte\nnepresádžu\nnepresádžuc\nnepreseď\nnepresiahnutie\nnepresídleniu\nnepreskli\nnepresklí\nnepresklia\nnepreskliac\nnepresklieva\nnepresklievaj\nnepresklievajme\nnepresklievajte\nnepresklievajú\nnepresklievajúc\nnepresklieval\nnepresklievala\nnepresklievali\nnepresklievalo\nnepresklievam\nnepresklievame\nnepresklievaš\nnepresklievať\nnepresklievate\nnepresklil\nnepresklila\nnepresklili\nnepresklilo\nnepresklím\nnepresklime\nnepresklíme\nnepresklíš\nnepreskliť\nnepresklite\nnepresklíte\nnepreskúmania\nnepresne\nnepresnených\nnepresnil\nnepresnor\nnepresnorte\nneprespi\nneprespime\nneprespite\nnepresťahovaniu\nneprestajne\nneprestajný\nneprestarla\nneprestarli\nneprestarlo\nneprestarol\nneprestávajúci\nneprestrihla\nneprestrihli\nneprestrihlo\nneprestrihne\nneprestrihnem\nneprestrihneme\nneprestrihneš\nneprestrihnete\nneprestrihni\nneprestrihnime\nneprestrihnite\nneprestrihnú\nneprestrihnúc\nneprestrihnúť\nneprestrihol\nneprestrúc\nneprestupiteľný\nnepresuň\nnepresunie\nnepresuniem\nnepresunieme\nnepresunieš\nnepresuniete\nnepresuňme\nnepresuňte\nnepresunul\nnepresunula\nnepresunuli\nnepresunulo\nnepresychá\nnepresychám\nnepresycháme\nnepresycháš\nnepresycháte\nnepresýpa\nnepresýpaj\nnepresýpajme\nnepresýpajte\nnepresýpajú\nnepresýpajúc\nnepresýpal\nnepresýpala\nnepresýpali\nnepresýpalo\nnepresýpam\nnepresýpame\nnepresýpaš\nnepresýpať\nnepresýpate\nnepresypú\nnepresypúc\nneprešaltoval\nneprešaltovala\nneprešaltovali\nneprešaltovalo\nneprešaltovať\nneprešaltuj\nneprešaltuje\nneprešaltujem\nneprešaltujeme\nneprešaltuješ\nneprešaltujete\nneprešaltujme\nneprešaltujte\nneprešaltujú\nneprešaltujúc\nnepreši\nneprešije\nneprešijem\nneprešijeme\nneprešiješ\nneprešijete\nneprešijú\nneprešijúc\nneprešil\nneprešila\nneprešili\nneprešilo\nneprešime\nneprešite\nnepreškrab\nnepreškriab\nnepreškvar\nnepreškvarte\nnepreťažovaním\nnepretelefonoval\nnepretelefonovali\nnepretelefonuje\nnepretelefonujete\nnepretelefonujú\nnepretla\nnepretli\nnepretlo\nnepretnúť\nnepretol\nnepretrp\nnepretrúc\nnepretrvávanie\nnepretržite\nnepretržito\nnepretržitosť\nnepretržitý\nnepretvor\nnepretvorte\nnepreúčtovaných\nnepreúčtovávajú\nnepreukázania\nnepreukázanie\nnepreukazovania\nnepreukazovanie\nnepreukáž\nnepreukáže\nnepreukážem\nnepreukážeme\nnepreukážeš\nnepreukážete\nnepreukážme\nnepreukážte\nnepreukážu\nnepreukážuc\nneprevádzkovaním\nneprevalcoval\nneprevalcovala\nneprevalcovali\nneprevalcovalo\nneprevalcovať\nneprevalcuj\nneprevalcuje\nneprevalcujem\nneprevalcujeme\nneprevalcuješ\nneprevalcujete\nneprevalcujme\nneprevalcujte\nneprevalcujú\nneprevalcujúc\nneprevar\nneprevarovala\nneprevarte\nneprevedenie\nneprevedením\nneprevedeniu\nneprever\nnepreverená\nnepreverené\nnepreverenej\nnepreverenému\nnepreverenie\nnepreverených\nNeprevereným\nnepreverenými\nnepreverovaním\nnepreverte\nneprevi\nnepreviaž\nnepreviaže\nnepreviažem\nnepreviažeme\nnepreviažeš\nnepreviažete\nnepreviažme\nnepreviažte\nnepreviažu\nnepreviažuc\nneprevije\nneprevijem\nneprevijeme\nnepreviješ\nneprevijete\nneprevijú\nneprevijúc\nneprevime\nneprevinený\nneprevite\nneprevládze\nneprevolá\nneprevrav\nneprevychuj\nneprevychuje\nneprevychujem\nneprevychujeme\nneprevychuješ\nneprevychujete\nneprevychujme\nneprevychujte\nneprevychujú\nneprevychujúc\nneprevzdušni\nneprevzdušnime\nneprevzdušnite\nneprezentovanie\nneprezentovaním\nneprezieravosť\nneprezieravosti\nneprezradenie\nneprezrádzajúci\nneprezrúc\nneprezveď\nneprezvedá\nneprezvedaj\nneprezvedajme\nneprezvedajte\nneprezvedajú\nneprezvedajúc\nneprezvedám\nneprezvedáme\nneprezvedáš\nneprezvedáte\nneprezvi\nneprezvime\nneprezvite\nneprežitia\nneprežitie\nneprežrúc\nnepŕchla\nnepŕchli\nnepŕchlo\nnepŕchne\nnepŕchnem\nnepŕchneme\nnepŕchneš\nnepŕchnete\nnepŕchni\nnepŕchnime\nnepŕchnite\nnepŕchnu\nnepŕchnuc\nnepŕchnuť\nnepŕchol\nnepriamejšej\nnepriamejší\nnepriamejšia\nnepriamejšie\nnepriamejšieho\nnepriamejšiemu\nnepriamejších\nnepriamejším\nnepriamejšími\nnepriamejšiu\nnepriamejšom\nnepriamejšou\nnepriamosť\nnepriate\nnepriatej\nnepriateľovo\nnepriateľsky\nnepriati\nnepriatia\nnepriatie\nnepriazňach\nnepriazňam\nnepriaznivosť\nnepribi\nnepribije\nnepribijem\nnepribijeme\nnepribiješ\nnepribijete\nnepribijú\nnepribijúc\nnepribime\nnepribite\nnepribodol\nnepribrzdi\nnepribrzdime\nnepribrzdite\nnepríčetne\nnepríčetnosť\nnepričinený\nnepričuchla\nnepričuchol\nnepridelenia\nnepridelenie\nnepridelením\nneprideľovanie\nnepridrobči\nnepridrobčime\nnepridrobčite\nnepridržá\nnepridržaj\nnepridržajme\nnepridržajte\nnepridržajú\nnepridržajúc\nnepridržám\nnepridržáme\nnepridržáš\nnepridržáte\nnepríduc\nnepriedušne\nnepriedušnosť\nnepriehľadne\nnepriehľadnosť\nnepriechodne\nnepriechodnosť\nnepriepustne\nnepriepustnosť\nnepriepustnosti\nnepriepustnosťou\nnepriestrelnosť\nnepriestupnosť\nnepriestupnosti\nnepriesvitnosť\nnepriezračnosť\nnepriezvučne\nnepriezvučnosť\nnepriezvučný\nneprifar\nneprifarbi\nneprifarbime\nneprifarbite\nneprifarte\nneprihadzoval\nneprihadzovala\nneprihadzovali\nneprihadzovalo\nneprihadzovať\nneprihadzuj\nneprihadzuje\nneprihadzujem\nneprihadzujeme\nneprihadzuješ\nneprihadzujete\nneprihadzujme\nneprihadzujte\nneprihadzujú\nneprihadzujúc\nneprihlásenia\nneprihlásenie\nneprihliadanie\nneprihlob\nneprihlobí\nneprihlobia\nneprihlobiac\nneprihlobil\nneprihlobila\nneprihlobili\nneprihlobilo\nneprihlobím\nneprihlobíme\nneprihlobíš\nneprihlobiť\nneprihlobíte\nneprihlobme\nneprihlobte\nnepríhodne\nneprihor\nneprihovor\nneprihovorte\nneprihrab\nneprihrej\nneprihreje\nneprihrejem\nneprihrejeme\nneprihreješ\nneprihrejete\nneprihrejme\nneprihrejte\nneprihrejú\nneprihrejúc\nneprihrň\nneprihrnie\nneprihrniem\nneprihrnieme\nneprihrnieš\nneprihrniete\nneprihrňme\nneprihrňte\nneprichýľ\nneprichýli\nneprichýlia\nneprichýliac\nneprichýlil\nneprichýlila\nneprichýlili\nneprichýlilo\nneprichýlim\nneprichýlime\nneprichýliš\nneprichýliť\nneprichýlite\nneprichýľme\nneprichýľte\nneprijateľne\nneprijato\nnepríjazdný\nneprijemne\nnepríjemnosť\nneprijímania\nneprijímanie\nneprijímaním\nnepríjme\nnepríjmem\nnepríjmeme\nnepríjmeš\nnepríjmete\nnepríjmi\nnepríjmime\nnepríjmite\nnepríjmu\nnepríjmuc\nneprikáž\nneprikáže\nneprikážem\nneprikážeme\nneprikážeš\nneprikážete\nneprikážme\nneprikážte\nneprikážu\nneprikážuc\nneprikladanie\nnepriklincúva\nnepriklincúvaj\nnepriklincúvajme\nnepriklincúvajte\nnepriklincúvajú\nnepriklincúvajúc\nnepriklincúval\nnepriklincúvala\nnepriklincúvali\nnepriklincúvalo\nnepriklincúvam\nnepriklincúvame\nnepriklincúvaš\nnepriklincúvať\nnepriklincúvate\nnepriklusá\nnepriklusaj\nnepriklusajme\nnepriklusajte\nnepriklusajú\nnepriklusajúc\nnepriklusám\nnepriklusáme\nnepriklusáš\nnepriklusáte\nnepríkrim\nnepríkriš\nneprilepši\nneprilepšime\nneprilepšite\nneprileť\nnepriletúva\nnepriletúvaj\nnepriletúvajme\nnepriletúvajte\nnepriletúvajú\nnepriletúvajúc\nnepriletúval\nnepriletúvala\nnepriletúvali\nnepriletúvalo\nnepriletúvam\nnepriletúvame\nnepriletúvaš\nnepriletúvať\nnepriletúvate\nnepríležite\nnepríležitý\nnepríliš\nneprimäjú\nneprimal\nneprimäl\nneprimäla\nneprimälo\nneprimastený\nneprimasti\nneprimastime\nneprimastite\nneprimerane\nneprimeranie\nneprimeranosť\nneprimeť\nneprimetá\nneprimetaj\nneprimetajme\nneprimetajte\nneprimetajú\nneprimetajúc\nneprimetal\nneprimetala\nneprimetali\nneprimetalo\nneprimetám\nneprimetáme\nneprimetáš\nneprimetať\nneprimetáte\nneprimetie\nneprimetiem\nneprimetieme\nneprimetieš\nneprimetiete\nneprimeťme\nneprimeťte\nneprimetú\nneprimetúc\nneprimietla\nneprimietli\nneprimietlo\nneprimietol\nneprimus\nnepriorizoval\nnepriorizovala\nnepriorizovali\nnepriorizovalo\nnepriorizovať\nnepriorizuj\nnepriorizuje\nnepriorizujem\nnepriorizujeme\nnepriorizuješ\nnepriorizujete\nnepriorizujme\nnepriorizujte\nnepriorizujú\nnepriorizujúc\nnepripäl\nnepripäla\nnepripäli\nnepripälo\nnepripáš\nnepripáše\nnepripášem\nnepripášeme\nnepripášeš\nnepripášete\nnepripášme\nnepripášte\nnepripášu\nnepripášuc\nnepripevni\nnepripevnime\nnepripevnite\nnepripíšu\nnepripíšuc\nnepripleť\nnepripletie\nnepripletiem\nnepripletieme\nnepripletieš\nnepripletiete\nnepripleťme\nnepripleťte\nnepripletú\nnepripletúc\nnepriplietla\nnepriplietli\nnepriplietlo\nnepriplietol\nnepriplichti\nnepriplichtime\nnepriplichtite\nnepripodobni\nnepripodobnime\nnepripodobnite\nnepripoisť\nnepripoisti\nnepripoistí\nnepripoistia\nnepripoistiac\nnepripoistil\nnepripoistila\nnepripoistili\nnepripoistilo\nnepripoistím\nnepripoistime\nnepripoistíme\nnepripoistíš\nnepripoistiť\nnepripoistite\nnepripoistíte\nnepripoisťme\nnepripoisťte\nnepripojenia\nnepripojenie\nnepripravene\nnepripravenosť\nnepripravenosti\nnepripravenosťou\nnepriprúc\nneprípusté\nnepripustenia\nnepripustenie\nnepripustením\nnepripusti\nnepripustime\nnepripustite\nneprípustne\nneprípustnosť\nnepripúšťajúci\nnepripúšťanie\nnepripúšťanými\nneprirác\nnepriráce\nneprirácem\nnepriráceme\nnepriráceš\nneprirácete\nneprirácme\nneprirácte\nneprirácu\nneprirácuc\nneprirastaný\nneprirasti\nneprirastime\nneprirastite\nneprirodzenosť\nneprísluší\nnepríslušia\nneprisni\nneprisnime\nneprisnite\nneprispať\nneprispievaním\nneprispôsobenie\nneprispôsobením\nneprispôsobený\nneprispôsobovanie\nneprispôsobovaniu\nneprisťahúvanejšej\nneprisťahúvanejší\nneprisťahúvanejšia\nneprisťahúvanejšie\nneprisťahúvanejšieho\nneprisťahúvanejšiemu\nneprisťahúvanejších\nneprisťahúvanejším\nneprisťahúvanejšími\nneprisťahúvanejšiu\nneprisťahúvanejšom\nneprisťahúvanejšou\nnepristavenia\nnepristehoval\nnepristehovala\nnepristehovali\nnepristehovalo\nnepristehovať\nnepristehuj\nnepristehuje\nnepristehujem\nnepristehujeme\nnepristehuješ\nnepristehujete\nnepristehujme\nnepristehujte\nnepristehujú\nnepristehujúc\nneprístojne\nneprístojnosť\nneprístojný\nnepristúpení\nnepristúpenia\nnepristúpenie\nnepristúpením\nneprístupne\nneprístupnosť\nneprisuň\nneprisunie\nneprisuniem\nneprisunieme\nneprisunieš\nneprisuniete\nneprisuňme\nneprisuňte\nneprisunul\nneprisunula\nneprisunuli\nneprisunulo\nneprisviedča\nneprisviedčaj\nneprisviedčajme\nneprisviedčajte\nneprisviedčajú\nneprisviedčajúc\nneprisviedčal\nneprisviedčala\nneprisviedčali\nneprisviedčalo\nneprisviedčam\nneprisviedčame\nneprisviedčaš\nneprisviedčate\nneprisvoj\nneprisvoja\nneprisvojac\nneprisvojí\nneprisvojil\nneprisvojila\nneprisvojili\nneprisvojilo\nneprisvojím\nneprisvojíme\nneprisvojíš\nneprisvojiť\nneprisvojíte\nneprisvojme\nneprisvojte\nneprisypú\nneprisypúc\nnepriši\nneprišije\nneprišijem\nneprišijeme\nneprišiješ\nneprišijete\nneprišijú\nneprišijúc\nneprišil\nneprišila\nneprišili\nneprišilo\nneprišime\nneprišite\nnepriškvar\nnepriškvarte\nnepritečenej\nneprítomne\nneprítomnym\nnepritrúc\nnepritvor\nnepritvorte\nnepritvrdia\nnepritvrdiť\nnepritvrdíte\nnepriučí\nnepriučím\nnepriučíme\nnepriučíš\nnepriučíte\nneprivar\nneprivarte\nneprivatizovania\nneprivatizovanie\nneprivatizovaním\nneprivatizovaný\nneprívetivo\nneprívetivosť\nnepriviaž\nnepriviaže\nnepriviažem\nnepriviažeme\nnepriviažeš\nnepriviažete\nnepriviažme\nnepriviažte\nnepriviažu\nnepriviažuc\nneprivlastni\nneprivlastnime\nneprivlastnite\nneprivlastňoval\nneprivlastňovala\nneprivlastňovali\nneprivlastňovalo\nneprivlastňovať\nneprivlastňuj\nneprivlastňuje\nneprivlastňujem\nneprivlastňujeme\nneprivlastňuješ\nneprivlastňujete\nneprivlastňujme\nneprivlastňujte\nneprivlastňujú\nneprivlastňujúc\nneprivrav\nneprivrúc\nneprivtel\nneprivyrába\nneprivyrábal\nNeprizarobia\nnepriznávania\nnepriznávanie\nnepriznávaním\nnepriznávaniu\nneprizrúc\nneprizvania\nneprizvanie\nneprizvaním\nneprizvaniu\nneprizvi\nneprizvime\nneprizvite\nneprízvučne\nneprízvučnosť\nneproblematizoval\nneproblematizovala\nneproblematizovali\nneproblematizovalo\nneproblematizovať\nNeproblematizovať\nneproblematizuj\nneproblematizuje\nneproblematizujem\nneproblematizujeme\nneproblematizuješ\nneproblematizujete\nneproblematizujme\nneproblematizujte\nneproblematizujú\nneproblematizujúc\nneprodukované\nneproduktívnosti\nneprofesionalizoval\nneprofesionalizovala\nneprofesionalizovali\nneprofesionalizovalo\nneprofesionalizovať\nneprofesionalizuj\nneprofesionalizuje\nneprofesionalizujem\nneprofesionalizujeme\nneprofesionalizuješ\nneprofesionalizujete\nneprofesionalizujme\nneprofesionalizujte\nneprofesionalizujú\nneprofesionalizujúc\nneprofiloval\nneprofilovala\nneprofilovali\nneprofilovalo\nneprofilovať\nneprofiluj\nneprofiluje\nneprofilujem\nneprofilujeme\nneprofiluješ\nneprofilujete\nneprofilujme\nneprofilujte\nneprofilujú\nneprofilujúc\nneprohibitívne\nneprolongovali\nneproporciálne\nneproporcionalitu\nneprosíkali\nneprosne\nneprospech\nneprosperovania\nneprotežoval\nneprotežovala\nneprotežovali\nneprotežovalo\nneprotežovať\nneprotežuj\nneprotežuje\nneprotežujem\nneprotežujeme\nneprotežuješ\nneprotežujete\nneprotežujme\nneprotežujte\nneprotežujú\nneprotežujúc\nneprovokovania\nneprozreteľne\nneprozreteľnosť\nneprš\nneprúc\nneprúdenie\nnepružne\nnepružnosť\nnepružnosti\nnepružnostiach\nnepružnosťou\nneprzni\nneprznime\nneprznite\nNeptún\nneptúnium\nneptunizmus\nNeptúnovým\nnepublikovanie\nnepublikovateľné\nnepucoval\nnepucovala\nnepucovali\nnepucovalo\nnepucovať\nnepucuj\nnepucuje\nnepucujem\nnepucujeme\nnepucuješ\nnepucujete\nnepucujme\nnepucujte\nnepucujú\nnepucujúc\nnepuchnuté\nnepuncovaných\nnepusti\nnepustime\nnepustite\nnera\nnerác\nneráce\nnerácem\nneráceme\nneráceš\nnerácete\nneracionalizovaný\nnerácme\nnerácte\nnerácu\nnerácuc\nneradi\nneradno\nnerado\nneradosť\nneradostne\nneradý\nneraf\nnerafe\nnerafem\nnerafeme\nnerafeš\nnerafete\nnerafme\nnerafte\nnerafú\nnerafúc\nnerajbi\nnerajbime\nnerajbite\nnerajbú\nnerajbúc\nnerajcoval\nnerajcovala\nnerajcovali\nnerajcovalo\nnerajcovať\nnerajcuj\nnerajcuje\nnerajcujem\nnerajcujeme\nnerajcuješ\nnerajcujete\nnerajcujme\nnerajcujte\nnerajcujú\nnerajcujúc\nnerapči\nnerapčime\nnerapčite\nnerapotaj\nnerapotajme\nnerapotajte\nnerapotajúc\nnerast\nnerasti\nnerastime\nnerastite\nnerastmi\nnerastný\nnerazený\nnereagovaní\nnereagovanie\nnereagovaním\nnerealisticky\nnerealizovania\nnerealizovanie\nnerealizovaním\nnerealizovaniu\nnerealizovateľne\nnereálnosť\nnerec\nnerecipoval\nnerecipovala\nnerecipovali\nnerecipovalo\nnerecipovať\nnerecipuj\nnerecipuje\nnerecipujem\nnerecipujeme\nnerecipuješ\nnerecipujete\nnerecipujme\nnerecipujte\nnerecipujú\nnerecipujúc\nnerecme\nnerecte\nnerečním\nnerečníme\nnerečníš\nnerečníte\nneredaktorči\nneredaktorčime\nneredaktorčite\nneredigovaných\nnereflektovanie\nnereformovanie\nnereformovaný\nneregistrovanie\nneregulovania\nneregulovanie\nneregulovaný\nnerekonštruovaný\nnerelativizoval\nnerelativizovala\nnerelativizovali\nnerelativizovalo\nnerelativizovať\nnerelativizuj\nnerelativizuje\nnerelativizujem\nnerelativizujeme\nnerelativizuješ\nnerelativizujete\nnerelativizujme\nnerelativizujte\nnerelativizujú\nnerelativizujúc\nnerentabilnosť\nnerentabilnosti\nnerentabilnosťou\nnereparoval\nnereparovala\nnereparovali\nnereparovalo\nnereparovať\nnereparuj\nnereparuje\nnereparujem\nnereparujeme\nnereparuješ\nnereparujete\nnereparujme\nnereparujte\nnereparujú\nnereparujúc\nnerepci\nnerepcime\nnerepcite\nnereproduktívne\nnerese\nneresenia\nneresenie\nneresiť\nNeresnica\nNeresnici\nneresť\nnerestne\nnerestnica\nnerestnícky\nnerestník\nnerestný\nneresu\nneresy\nnerešpektujúci\nnereštituoval\nnereštituovala\nnereštituovali\nnereštituovalo\nnereštituovať\nnereštituuj\nnereštituuje\nnereštituujem\nnereštituujeme\nnereštituuješ\nnereštituujete\nnereštituujme\nnereštituujte\nnereštituujú\nnereštituujúc\nnereštrukturalizoval\nnereštrukturalizovala\nnereštrukturalizovali\nnereštrukturalizovalo\nnereštrukturalizovať\nnereštrukturalizuj\nnereštrukturalizuje\nnereštrukturalizujem\nnereštrukturalizujeme\nnereštrukturalizuješ\nnereštrukturalizujete\nnereštrukturalizujme\nnereštrukturalizujte\nnereštrukturalizujú\nnereštrukturalizujúc\nnereťazia\nneretušovaný\nnerev\nnerevidovaný\nnerevitalizoval\nnerevitalizovala\nnerevitalizovali\nnerevitalizovalo\nnerevitalizovať\nnerevitalizuj\nnerevitalizuje\nnerevitalizujem\nnerevitalizujeme\nnerevitalizuješ\nnerevitalizujete\nnerevitalizujme\nnerevitalizujte\nnerevitalizujú\nnerevitalizujúc\nnerevme\nnerevte\nnerezaný\nnerez\nnerezidenčný\nnerezidentov\nnerezový\nneriadenia\nneriadieva\nneriadievaj\nneriadievajme\nneriadievajte\nneriadievajú\nneriadievajúc\nneriadieval\nneriadievala\nneriadievali\nneriadievalo\nneriadievam\nneriadievame\nneriadievaš\nneriadievať\nneriadievate\nneriešenia\nneriešenie\nneriešením\nneriešeniu\nneriešiteľnosť\nnerinč\nnerinči\nnerinčime\nnerinčite\nneriskujúci\nneritický\nnerka\nNero\nnerobenia\nnerobenie\nnerobením\nnerobiaci\nnerodne\nneroho\nnerojči\nnerojčime\nnerojčite\nnerokovaní\nnerokovania\nnerokovanie\nnerokúva\nnerokúvaj\nnerokúvajme\nnerokúvajte\nnerokúvajú\nnerokúvajúc\nnerokúval\nnerokúvala\nnerokúvali\nnerokúvalo\nnerokúvam\nnerokúvame\nnerokúvaš\nnerokúvať\nnerokúvate\nneroľne\nnerom\nnerónsky\nnerónsky\nneropne\nnerosne\nnerotne\nnerova\nnerovi\nnerovnakosť\nnerovno\nnerovnomernosť\nnerovnomernosti\nnerovnomernosťou\nnerovnorodosť\nnerovnorodosti\nnerovnorodosťou\nnerovnosť\nnerovnováh\nnerovnováhach\nnerovnováham\nnerovým\nneroz\nnerozanalyzoval\nnerozanalyzuje\nnerozbabre\nnerozbabrem\nnerozbabreme\nnerozbabreš\nnerozbabrete\nnerozbabri\nnerozbabrime\nnerozbabrite\nnerozbabrú\nnerozbabrúc\nnerozbahni\nnerozbahnime\nnerozbahnite\nnerozbehá\nnerozbehaj\nnerozbehajme\nnerozbehajte\nnerozbehajú\nnerozbehajúc\nnerozbehal\nnerozbehala\nnerozbehali\nnerozbehalo\nnerozbehám\nnerozbeháme\nnerozbeháš\nnerozbehať\nnerozbeháte\nnerozbehnutie\nnerozbesni\nnerozbesnime\nnerozbesnite\nnerozbi\nnerozbije\nnerozbijem\nnerozbijeme\nnerozbiješ\nnerozbijete\nnerozbijú\nnerozbijúc\nnerozbime\nnerozbite\nnerozbitnosť\nnerozboľ\nnerozbolel\nnerozbolela\nnerozboleli\nnerozbolelo\nnerozbolí\nnerozbolia\nnerozboliac\nnerozbolieť\nnerozbolím\nnerozbolíme\nnerozbolíš\nnerozbolíte\nnerozboľme\nnerozboľte\nnerozbor\nnerozborne\nnerozbornosť\nnerozborný\nnerozborte\nnerozbreš\nnerozbreše\nnerozbrešem\nnerozbrešeme\nnerozbrešeš\nnerozbrešete\nnerozbrešme\nnerozbrešte\nnerozbrešú\nnerozbrešúc\nnerozbuchoc\nnerozbuchoce\nnerozbuchocem\nnerozbuchoceme\nnerozbuchoceš\nnerozbuchocete\nnerozbuchocme\nnerozbuchocte\nnerozbuchocú\nnerozbuchocúc\nnerozbuchotal\nnerozbuchotala\nnerozbuchotali\nnerozbuchotalo\nnerozbuchotať\nnerozbúrený\nnerozcvičenie\nnerozčer\nnerozčerte\nnerozčerti\nnerozčertime\nnerozčertite\nnerozčlenený\nnerozdeliteľný\nnerozdeľovania\nnerozdeľovaný\nnerozdistribuované\nnerozďob\nnerozdrážďoval\nnerozdrážďovala\nnerozdrážďovali\nnerozdrážďovalo\nnerozdrážďovať\nnerozdrážďuj\nnerozdrážďuje\nnerozdrážďujem\nnerozdrážďujeme\nnerozdrážďuješ\nnerozdrážďujete\nnerozdrážďujme\nnerozdrážďujte\nnerozdrážďujú\nnerozdrážďujúc\nnerozdrobovaniu\nnerozdrúc\nnerozdrúzgava\nnerozdrúzgavaj\nnerozdrúzgavajme\nnerozdrúzgavajte\nnerozdrúzgavajú\nnerozdrúzgavajúc\nnerozdrúzgaval\nnerozdrúzgavala\nnerozdrúzgavali\nnerozdrúzgavalo\nnerozdrúzgavam\nnerozdrúzgavame\nnerozdrúzgavaš\nnerozdrúzgavať\nnerozdrúzgavate\nnerozďub\nnerozdupá\nnerozdupaj\nnerozdupajme\nnerozdupajte\nnerozdupajú\nnerozdupajúc\nnerozdupám\nnerozdupáme\nnerozdupáš\nnerozdupáte\nnerozdur\nnerozdurte\nnerozfázovali\nnerozhádžu\nnerozhádžuc\nnerozhasí\nnerozhľaď\nnerozhodnutia\nnerozhodnutie\nnerozhodnutím\nnerozhodovania\nnerozhojni\nnerozhojnime\nnerozhojnite\nnerozhor\nnerozhorči\nnerozhorčime\nnerozhorčite\nnerozhorúčoval\nnerozhorúčovala\nnerozhorúčovali\nnerozhorúčovalo\nnerozhorúčovať\nnerozhorúčuj\nnerozhorúčuje\nnerozhorúčujem\nnerozhorúčujeme\nnerozhorúčuješ\nnerozhorúčujete\nnerozhorúčujme\nnerozhorúčujte\nnerozhorúčujú\nnerozhorúčujúc\nnerozhosti\nnerozhostime\nnerozhostite\nnerozhovor\nnerozhovorte\nnerozhrab\nnerozhrm\nnerozhrň\nnerozhrnie\nnerozhrniem\nnerozhrnieme\nnerozhrnieš\nnerozhrniete\nnerozhrňme\nnerozhrňte\nnerozhryzla\nnerozhryzli\nnerozhryzlo\nnerozhryzne\nnerozhryznem\nnerozhryzneme\nnerozhryzneš\nnerozhryznete\nnerozhryzni\nnerozhryznime\nnerozhryznite\nnerozhryznú\nnerozhryznúc\nnerozhryznúť\nnerozhryzol\nnerozhuč\nnerozhýb\nnerozchechce\nnerozchechcem\nnerozchechceme\nnerozchechceš\nnerozchechcete\nnerozchechci\nnerozchechcime\nnerozchechcite\nnerozchechcú\nnerozchechcúc\nnerozchechtajúc\nnerozchechtal\nnerozchechtala\nnerozchechtali\nnerozchechtalo\nnerozchechtať\nnerozchvátali\nnerozíduc\nnerozjar\nnerozjarte\nnerozjasni\nnerozjasnime\nnerozjasnite\nnerozjež\nnerozježí\nnerozježia\nnerozježiac\nnerozježil\nnerozježila\nnerozježili\nnerozježilo\nnerozježím\nnerozježíme\nnerozježíš\nnerozježiť\nnerozježíte\nnerozježme\nnerozježte\nnerozkmášu\nnerozkmášuc\nnerozkníšu\nnerozkníšuc\nnerozkolíšu\nnerozkolíšuc\nnerozkráda\nnerozkrádaj\nnerozkrádajme\nnerozkrádajte\nnerozkrádajú\nnerozkrádajúc\nnerozkrádal\nnerozkrádala\nnerozkrádali\nnerozkrádalo\nnerozkrádam\nnerozkrádame\nnerozkrádaš\nnerozkrádať\nnerozkrádate\nnerozkrič\nnerozkúpia\nnerozkutre\nnerozkutrem\nnerozkutreme\nnerozkutreš\nnerozkutrete\nnerozkutri\nnerozkutrime\nnerozkutrite\nnerozkutrú\nnerozkutrúc\nnerozkvitania\nnerozkýv\nnerozkýve\nnerozkývem\nnerozkýveme\nnerozkýveš\nnerozkývete\nnerozkývme\nnerozkývte\nnerozkývu\nnerozkývuc\nnerozlám\nnerozlámaný\nnerozlámme\nnerozlámte\nnerozleť\nnerozlične\nnerozlíšenie\nnerozlišovanie\nnerozlišovaniu\nnerozlučiteľnosť\nnerozlučne\nnerozlučnosť\nnerozlučný\nnerozlúsknutým\nnerozľútosti\nnerozľútostime\nnerozľútostite\nnerozľútosťoval\nnerozľútosťovala\nnerozľútosťovali\nnerozľútosťovalo\nnerozľútosťovať\nnerozľútosťuj\nnerozľútosťuje\nnerozľútosťujem\nnerozľútosťujeme\nnerozľútosťuješ\nnerozľútosťujete\nnerozľútosťujme\nnerozľútosťujte\nnerozľútosťujú\nnerozľútosťujúc\nnerozmazne\nnerozmaznem\nnerozmazneme\nnerozmazneš\nnerozmaznete\nnerozmaznú\nnerozmec\nnerozmece\nnerozmecem\nnerozmeceme\nnerozmeceš\nnerozmecete\nnerozmecme\nnerozmecte\nnerozmecú\nnerozmecúc\nnerozmetá\nnerozmetaj\nnerozmetajme\nnerozmetajte\nnerozmetajú\nnerozmetajúc\nnerozmetal\nnerozmetala\nnerozmetali\nnerozmetalo\nnerozmetám\nnerozmetáme\nnerozmetáš\nnerozmetať\nnerozmetáte\nnerozmiestní\nnerozmiestním\nnerozmiestníme\nnerozmiestníš\nnerozmiestníte\nnerozmiestňovanie\nnerozmotaný\nnerozmôž\nnerozmôžuc\nNerozmrazený\nnerozmyslenosť\nneroznežni\nneroznežnime\nneroznežnite\nnerozodni\nnerozodnime\nnerozodnite\nnerozodrúc\nnerozohni\nnerozohnime\nnerozohnite\nnerozohrej\nnerozohreje\nnerozohrejem\nnerozohrejeme\nnerozohreješ\nnerozohrejete\nnerozohrejme\nnerozohrejte\nnerozohrejú\nnerozohrejúc\nnerozochveje\nnerozochvejem\nnerozochvejeme\nnerozochveješ\nnerozochvejete\nnerozopäl\nnerozopäla\nnerozopäli\nnerozopälo\nnerozorvi\nnerozorvime\nnerozorvite\nnerozosteľ\nnerozostrúc\nnerozoši\nnerozošije\nnerozošijem\nnerozošijeme\nnerozošiješ\nnerozošijete\nnerozošijú\nnerozošijúc\nnerozošil\nnerozošila\nnerozošili\nnerozošilo\nnerozošime\nnerozošite\nnerozoštvi\nnerozoštvime\nnerozoštvite\nnerozotne\nnerozotnem\nnerozotneme\nnerozotneš\nnerozotnete\nnerozotni\nnerozotnime\nnerozotnite\nnerozotnú\nnerozotnúc\nnerozotrúc\nnerozovrúc\nnerozozvuč\nnerozpäl\nnerozpäla\nnerozpäli\nnerozpälo\nnerozpar\nnerozparte\nnerozpášu\nnerozpášuc\nnerozpäť\nnerozpísania\nnerozpíšu\nnerozpíšuc\nnerozpitve\nnerozpitvem\nnerozpitveme\nnerozpitveš\nnerozpitvete\nnerozpitvi\nnerozpitvime\nnerozpitvite\nnerozpitvú\nnerozpitvúc\nnerozplačú\nnerozplačúc\nnerozpľašti\nnerozpľaštime\nnerozpľaštite\nnerozplešti\nnerozpleštime\nnerozpleštite\nnerozpletá\nnerozpletaj\nnerozpletajme\nnerozpletajte\nnerozpletajú\nnerozpletajúc\nnerozpletal\nnerozpletala\nnerozpletali\nnerozpletalo\nnerozpletám\nnerozpletáme\nnerozpletáš\nnerozpletať\nnerozpletáte\nnerozplieň\nnerozplieni\nnerozplienia\nnerozplieniac\nnerozplienil\nnerozplienila\nnerozplienili\nnerozplienilo\nnerozplienim\nnerozplienime\nnerozplieniš\nnerozplieniť\nnerozplienite\nnerozplieňme\nnerozplieňoval\nnerozplieňovala\nnerozplieňovali\nnerozplieňovalo\nnerozplieňovať\nnerozplieňte\nnerozplieňuj\nnerozplieňuje\nnerozplieňujem\nnerozplieňujeme\nnerozplieňuješ\nnerozplieňujete\nnerozplieňujme\nnerozplieňujte\nnerozplieňujú\nnerozplieňujúc\nnerozplyň\nnerozplynie\nnerozplyniem\nnerozplynieme\nnerozplynieš\nnerozplyniete\nnerozplyňme\nnerozplyňte\nnerozpočtovaný\nnerozpoľ\nnerozpolí\nnerozpolia\nnerozpoliac\nnerozpolil\nnerozpolila\nnerozpolili\nnerozpolilo\nnerozpolím\nnerozpolíme\nnerozpolíš\nnerozpoliť\nnerozpolíte\nnerozpoľme\nnerozpoľte\nnerozpolti\nnerozpoltime\nnerozpoltite\nnerozpoznanie\nnerozpredávanie\nnerozprestrúc\nnerozprš\nnerozpusti\nnerozpustime\nnerozpustite\nnerozpustne\nnerozpustnosť\nnerozrác\nnerozráce\nnerozrácem\nnerozráceme\nnerozráceš\nnerozrácete\nnerozrácme\nnerozrácte\nnerozrácu\nnerozrácuc\nnerozradosti\nnerozradostime\nnerozradostite\nnerozradostni\nnerozradostnime\nnerozradostnite\nnerozradosťoval\nnerozradosťovala\nnerozradosťovali\nnerozradosťovalo\nnerozradosťovať\nnerozradosťuj\nnerozradosťuje\nnerozradosťujem\nnerozradosťujeme\nnerozradosťuješ\nnerozradosťujete\nnerozradosťujme\nnerozradosťujte\nnerozradosťujú\nnerozradosťujúc\nnerozrasti\nnerozrastime\nnerozrastite\nnerozreční\nnerozrečním\nnerozrečníme\nnerozrečníš\nnerozrečníte\nnerozrev\nnerozrevme\nnerozrevte\nnerozrezaný\nnerozriedený\nnerozriešený\nnerozrúb\nnerozseď\nnerozstrúc\nnerozsypú\nnerozsypúc\nnerozši\nnerozšifrovanom\nnerozšije\nnerozšijem\nnerozšijeme\nnerozšiješ\nnerozšijete\nnerozšijú\nnerozšijúc\nnerozšil\nnerozšila\nnerozšili\nnerozšilo\nnerozšime\nnerozšírenie\nnerozširovaní\nnerozširovania\nnerozširovanie\nnerozširovaniu\nnerozšite\nnerozšker\nnerozškerte\nnerozšklb\nnerozšklbú\nnerozšklbúc\nnerozškrab\nnerozškriab\nnerozškvar\nnerozškvarte\nnerozštiepa\nnerozštiepaj\nnerozštiepajme\nnerozštiepajte\nnerozštiepajú\nnerozštiepajúc\nnerozštiepam\nnerozštiepame\nnerozštiepaš\nnerozštiepate\nnerozšum\nnerozšvitor\nnerozšvitorte\nnerozťatý\nneroztlieska\nneroztlieskaj\nneroztlieskajme\nneroztlieskajte\nneroztlieskajú\nneroztlieskajúc\nneroztlieskal\nneroztlieskala\nneroztlieskali\nneroztlieskalo\nneroztlieskam\nneroztlieskame\nneroztlieskaš\nneroztlieskať\nneroztlieskate\nneroztlieskava\nneroztlieskavaj\nneroztlieskavajme\nneroztlieskavajte\nneroztlieskavajú\nneroztlieskavajúc\nneroztlieskaval\nneroztlieskavala\nneroztlieskavali\nneroztlieskavalo\nneroztlieskavam\nneroztlieskavame\nneroztlieskavaš\nneroztlieskavať\nneroztlieskavate\nneroztŕhajte\nneroztrpči\nneroztrpčime\nneroztrpčite\nneroztrúc\nneroztvor\nneroztvorte\nnerozvar\nnerozvarte\nnerozvažitý\nnerozvetvi\nnerozvetvime\nnerozvetvite\nnerozvi\nnerozviažuc\nnerozvidni\nnerozvidnime\nnerozvidnite\nnerozvíjanie\nnerozvije\nnerozvijem\nnerozvijeme\nnerozviješ\nnerozvijete\nnerozvijú\nnerozvijúc\nnerozvime\nnerozvinutie\nnerozvite\nnerozvlni\nnerozvlnime\nnerozvlnite\nnerozvodni\nnerozvodnime\nnerozvodnite\nnerozvoľni\nnerozvoľnime\nnerozvoľnite\nnerozvrav\nnerozvrstvi\nnerozvrstvime\nnerozvrstvite\nnerozvrť\nnerozzlosti\nnerozzlostime\nnerozzlostite\nnerozzvuč\nnerozžalosti\nnerozžalostime\nnerozžalostite\nnerožne\nnerúb\nneručiaci\nNeruda\nnerušene\nnerušenia\nnerušenie\nnerušiam\nnerušiame\nnerušiaš\nnerušiate\nneruve\nneruvem\nneruveme\nneruveš\nneruvete\nneruvú\nneruvúc\nnervák\nnerváku\nnerváky\nnervami\nnerv\nnerve\nnervný\nnervosvalový\nnervove\nnervovo\nnervový\nnervóz\nnervózach\nnervózam\nnervóza\nnervozita\nnervóznosť\nnervózny\nnervstvo\nneryč\nnesabotoval\nnesabotovala\nnesabotovali\nnesabotovalo\nnesabotovať\nnesabotuj\nnesabotuje\nnesabotujem\nnesabotujeme\nnesabotuješ\nnesabotujete\nnesabotujme\nnesabotujte\nnesabotujú\nnesabotujúc\nnesáč\nnesáče\nnesáčem\nnesáčeme\nnesáčeš\nnesáčete\nnesáčkoval\nnesáčkovala\nnesáčkovali\nnesáčkovalo\nnesáčkovať\nnesáčkuj\nnesáčkuje\nnesáčkujem\nnesáčkujeme\nnesáčkuješ\nnesáčkujete\nnesáčkujme\nnesáčkujte\nnesáčkujú\nnesáčkujúc\nnesáčme\nnesáčte\nnesáču\nnesáčuc\nnesadz\nnesadzí\nnesadzia\nnesadziac\nnesadzil\nnesadzila\nnesadzili\nnesadzilo\nnesadzím\nnesadzíme\nnesadzíš\nnesadziť\nnesadzíte\nnesadzme\nnesadzte\nnesádžu\nnesádžuc\nnesaldovaná\nnesamostatnosť\nnesamostatnosti\nnesankcionovaný\nnesanoval\nnesanovala\nnesanovať\nnesanuje\nnesato\nnesaturovaný\nnesaunoval\nnesaunovala\nnesaunovali\nnesaunovalo\nnesaunovať\nnesaunuj\nnesaunuje\nnesaunujem\nnesaunujeme\nnesaunuješ\nnesaunujete\nnesaunujme\nnesaunujte\nnesaunujú\nnesaunujúc\nnescafé\nnescivilni\nnescivilnime\nnescivilnite\nnescudz\nnescudzí\nnescudzia\nnescudziac\nnescudzil\nnescudzila\nnescudzili\nnescudzilo\nnescudzím\nnescudzíme\nnescudzíš\nnescudziť\nnescudzíte\nnescudziteľné\nnescudziteľnej\nnescudzme\nnescudzte\nnescupotajúc\nnesčer\nnesčerený\nnesčerí\nnesčeria\nnesčeriac\nnesčeril\nnesčerila\nnesčerili\nnesčerilo\nnesčerím\nnesčeríme\nnesčeríš\nnesčeriť\nnesčeríte\nnesčerme\nnesčerte\nnesčíselne\nnesčíselnekrát\nnesčíselný\nnesčítateľný\nnesebeckosť\nnesebecky\nneseď\nneselektujeme\nnesenážoval\nnesenážovala\nnesenážovali\nnesenážovalo\nnesenážovať\nnesenážuj\nnesenážuje\nnesenážujem\nnesenážujeme\nnesenážuješ\nnesenážujete\nnesenážujme\nnesenážujte\nnesenážujú\nnesenážujúc\nnesenia\nnesenie\nnesením\nnesený\nneserióznosť\nneserióznosti\nneserióznosťou\nnesexoval\nnesexovala\nnesexovali\nnesexovalo\nnesexovať\nnesexuj\nnesexuje\nnesexujem\nnesexujeme\nnesexuješ\nnesexujete\nnesexujme\nnesexujte\nnesexujú\nnesexujúc\nnesfakli\nnesfaklí\nnesfaklia\nnesfakliac\nnesfaklil\nnesfaklila\nnesfaklili\nnesfaklilo\nnesfaklím\nnesfaklime\nnesfaklíme\nnesfaklíš\nnesfakliť\nnesfaklite\nnesfaklíte\nnesfarbi\nnesfarbime\nnesfarbite\nnesfič\nnesformalizoval\nnesformalizovala\nnesformalizovali\nnesformalizovalo\nnesformalizovať\nnesformalizuj\nnesformalizuje\nnesformalizujem\nnesformalizujeme\nnesformalizuješ\nnesformalizujete\nnesformalizujme\nnesformalizujte\nnesformalizujú\nnesformalizujúc\nnesfunkčni\nnesfunkční\nnesfunkčnia\nnesfunkčniac\nnesfunkčnil\nnesfunkčnila\nnesfunkčnili\nnesfunkčnilo\nnesfunkčním\nnesfunkčnime\nnesfunkčníme\nnesfunkčníš\nnesfunkčniť\nnesfunkčnite\nnesfunkčníte\nnesfunkčňoval\nnesfunkčňovala\nnesfunkčňovali\nnesfunkčňovalo\nnesfunkčňovať\nnesfunkčňuj\nnesfunkčňuje\nnesfunkčňujem\nnesfunkčňujeme\nnesfunkčňuješ\nnesfunkčňujete\nnesfunkčňujme\nnesfunkčňujte\nnesfunkčňujú\nnesfunkčňujúc\nnesfušoval\nnesfušovala\nnesfušovali\nnesfušovalo\nnesfušovať\nnesfušuj\nnesfušuje\nnesfušujem\nnesfušujeme\nnesfušuješ\nnesfušujete\nnesfušujme\nnesfušujte\nnesfušujú\nnesfušujúc\nneschabre\nneschabrem\nneschabreme\nneschabreš\nneschabrete\nneschabri\nneschabrime\nneschabrite\nneschabrú\nneschabrúc\nneschátrala\nneschnúci\nneschodnosť\nneschopne\nneschrapč\nneschrapči\nneschrapčime\nneschrapčite\nneschrapšť\nneschrapšťme\nneschrapšťte\nneschrúm\nneschrúmme\nneschrúmte\nneschuj\nneschuje\nneschujem\nneschujeme\nneschuješ\nneschujete\nneschujme\nneschujte\nneschujú\nneschujúc\nneschválenia\nneschválenie\nneschválením\nneschváleniu\nneschvaľovania\nneschvaľovanie\nnesídl\nnesídlme\nnesídlte\nnesilvestroval\nnesilvestrovala\nnesilvestrovali\nnesilvestrovalo\nnesilvestrovať\nnesilvestruj\nnesilvestruje\nnesilvestrujem\nnesilvestrujeme\nnesilvestruješ\nnesilvestrujete\nnesilvestrujme\nnesilvestrujte\nnesilvestrujú\nnesilvestrujúc\nnesip\nnesipotajúc\nneskafé\nneskalene\nneskalpoval\nneskalpovala\nneskalpovali\nneskalpovalo\nneskalpovať\nneskalpuj\nneskalpuje\nneskalpujem\nneskalpujeme\nneskalpuješ\nneskalpujete\nneskalpujme\nneskalpujte\nneskalpujú\nneskalpujúc\nneskazenosť\nneska\nneskl\nneskládkoval\nneskládkovala\nneskládkovali\nneskládkovalo\nneskládkovať\nneskládkuj\nneskládkuje\nneskládkujem\nneskládkujeme\nneskládkuješ\nneskládkujete\nneskládkujme\nneskládkujte\nneskládkujú\nneskládkujúc\nneskladne\nneskladnosť\nnesklam\nNesklamaním\nnesklamme\nnesklamte\nnesklon\nnesklonnosť\nneskĺza\nneskĺzam\nneskĺzame\nneskĺzaš\nneskĺzate\nneskĺzavame\nneskmášu\nneskmášuc\nneskolaboval\nneskolabovala\nneskolabovali\nneskolabovalo\nneskolabovať\nneskolabuj\nneskolabuje\nneskolabujem\nneskolabujeme\nneskolabuješ\nneskolabujete\nneskolabujme\nneskolabujte\nneskolabujú\nneskolabujúc\nneskolaudovaný\nneskonale\nneskonalý\nneskonaná\nneskonane\nneskonané\nneskončený\nneskonči\nneskončime\nneskončite\nneskonštatoval\nneskonštatovala\nNeskonštatovala\nneskonštatovali\nneskonštatovalo\nneskonštatovať\nneskonštatuj\nneskonštatuje\nneskonštatujem\nneskonštatujeme\nneskonštatuješ\nneskonštatujete\nneskonštatujme\nneskonštatujte\nneskonštatujú\nneskonštatujúc\nneskor\nneskoreným\nneskorogotický\nneskororím\nneskororománsky\nneskorší\nneskorší\nneskórujúci\nneskorumpovaný\nneskrápa\nneskrápaj\nneskrápajme\nneskrápajte\nneskrápajú\nneskrápajúc\nneskrápam\nneskrápame\nneskrápaš\nneskrápate\nneskrátenia\nneskratoval\nneskratovala\nneskratovali\nneskratovalo\nneskratovať\nneskratuj\nneskratuje\nneskratujem\nneskratujeme\nneskratuješ\nneskratujete\nneskratujme\nneskratujte\nneskratujú\nneskratujúc\nneskrblí\nneskrivene\nneskrkvi\nneskrkvime\nneskrkvite\nneskromnosť\nneskrotiteľnosť\nneskrotiteľný\nneskrotník\nneskrotnosť\nneskrútený\nneskrútla\nneskrútli\nneskrútlo\nneskrútne\nneskrútnem\nneskrútneme\nneskrútneš\nneskrútnete\nneskrútni\nneskrútnime\nneskrútnite\nneskrútnu\nneskrútnuc\nneskrútnuť\nneskrútol\nneskrvavej\nneskrvavejme\nneskrvavejte\nneskrvavejú\nneskrvavejúc\nneskrvavie\nneskrvaviem\nneskrvavieme\nneskrvavieš\nneskrvaviete\nneskrývajúci\nneskrývane\nneskuč\nneskúdoli\nneskúdolim\nneskúdolime\nneskúdoliš\nneskúdolite\nneskuhre\nneskuhrem\nneskuhreme\nneskuhreš\nneskuhrete\nneskuhri\nneskuhrime\nneskuhrite\nneskuhrú\nneskuhrúc\nneskujni\nneskujnime\nneskujnite\nneskúmanie\nneskupujúci\nneskupúva\nneskupúvaj\nneskupúvajme\nneskupúvajte\nneskupúvajú\nneskupúvajúc\nneskupúval\nneskupúvala\nneskupúvali\nneskupúvalo\nneskupúvam\nneskupúvame\nneskupúvaš\nneskupúvať\nneskupúvate\nneskúsenosť\nneskusujúci\nneskvalitni\nneskvalitnime\nneskvalitnite\nneskvapalni\nneskvapalnime\nneskvapalnite\nneskysnutý\nneskýva\nneslabnúcou\nnesladovaného\nneslane\nneslano\nnesledovania\nnesledovanie\nnesledovaný\nnesloboda\nneslobodno\nneslohoval\nneslohovala\nneslohovali\nneslohovalo\nneslohovať\nneslohuj\nneslohuje\nneslohujem\nneslohujeme\nneslohuješ\nneslohujete\nneslohujme\nneslohujte\nneslohujú\nneslohujúc\nneslovensky\nnesľubujúci\nnesluš\nNesluša\nneslušne\nneslušník\nneslušnosť\nneslýchane\nneslýchanosť\nneslýchaný\nnesmelejšej\nnesmelejší\nnesmelejšia\nnesmelejšie\nnesmelejšieho\nnesmelejšiemu\nnesmelejších\nnesmelejším\nnesmelejšími\nnesmelejšiu\nnesmelejšom\nnesmelejšou\nnesmelosť\nnesmerovaný\nnesmerový\nnesmiernosť\nnesmierny\nnesmilni\nnesmilnime\nnesmilnite\nnesmrď\nnesmúc\nnesňal\nnesňala\nnesňali\nnesňalo\nnesňať\nnesnaženia\nnesni\nnesnime\nnesnímem\nnesnímeme\nnesnímeš\nnesnímete\nnesnímme\nnesnímte\nnesnímu\nnesnímuc\nnesnite\nnesnivo\nnesnor\nnesnorte\nnesnul\nnesnula\nnesnuli\nnesnulo\nnesnuť\nnesocia\nnesocialisticky\nnesociam\nnesociame\nnesociaš\nnesociate\nnesolidarizujú\nnesolídnosť\nnesolídnosti\nnesolventnosť\nnesopti\nnesoptí\nnesoptia\nnesoptiac\nnesoptil\nnesoptila\nnesoptili\nnesoptilo\nnesoptím\nnesoptime\nnesoptíme\nnesoptíš\nnesoptiť\nnesoptite\nnesoptíte\nnesp\nnespáchaný\nnespájkovaný\nnespálením\nnespanštej\nnespanštejme\nnespanštejte\nnespanštejú\nnespanštejúc\nnespanštel\nnespanštela\nnespanšteli\nnespanštelo\nnespanštie\nnespanštiem\nnespanštieme\nnespanštieš\nnespanštieť\nnespanštiete\nnespar\nnespárovali\nnespárovaním\nnesparte\nnespáruje\nnesparujúci\nnespárujúci\nnespásaná\nnespásané\nnespasie\nnespasiem\nnespasieme\nnespasieš\nnespasiete\nnespásla\nnespásli\nnespáslo\nnespásol\nnespásť\nnespasú\nnespasúc\nnespávaní\nnespeč\nnespečie\nnespečiem\nnespečieme\nnespečieš\nnespečiete\nnespečme\nnespečte\nnespečú\nnespečúc\nNespeňažením\nnespeňažovaniu\nnespersonifikovanej\nnespersonifikovanú\nnesperujúci\nnespevnený\nnespevni\nnespevnime\nnespevnite\nnespiecť\nnespiekla\nnespiekli\nnespieklo\nnespiekol\nnespiľoval\nnespiľovala\nnespiľovali\nnespiľovalo\nnespiľovať\nnespiľuj\nnespiľuje\nnespiľujem\nnespiľujeme\nnespiľuješ\nnespiľujete\nnespiľujme\nnespiľujte\nnespiľujú\nnespiľujúc\nnespinká\nnespinkaj\nnespinkajme\nnespinkajte\nnespinkajú\nnespinkajúc\nnespinkal\nnespinkala\nnespinkali\nnespinkalo\nnespinkám\nnespinkáme\nnespinkáš\nnespinkať\nnespinkáte\nnespis\nnespisovnosť\nnespiš\nnespišť\nnespišťí\nnespišťia\nnespišťiac\nnespišťím\nnespišťíme\nnespišťíš\nnespišťíte\nnespišťme\nnespišťte\nnespíšu\nnespíšuc\nnespito\nnesplácania\nnesplácanie\nnesplácaním\nnesplácaniu\nnesplácaný\nnesplatenia\nnesplatenie\nnesplatením\nnesplateniu\nnesplatiteľne\nnesplatiteľný\nnesplavnenie\nnesplavni\nnesplavnime\nnesplavnite\nnespĺňania\nnespĺňanie\nnespĺňanú\nnesplniteľne\nnesplnomocni\nnesplnomocnime\nnesplnomocnite\nnesplošti\nnesploštime\nnesploštite\nnesplynie\nnesplyniem\nnesplynieme\nnesplynieš\nnesplyniete\nnespočetne\nnespočetnekrát\nnespočítateľne\nnespočítateľnosť\nnespodobni\nnespodobnime\nnespodobnite\nnespochybnenie\nnespochybnený\nnespochybni\nnespochybnime\nnespochybnite\nnespochybňovania\nnespochybňovaný\nnespojazdnenia\nnespojazdni\nnespojazdnime\nnespojazdnite\nnespojenia\nnespojenie\nnespokoja\nnespokojenec\nnespokojený\nnespokojovalo\nnespokojuje\nnespoľahlivo\nnespolči\nnespolčime\nnespolčite\nnespolitizoval\nnespolitizovala\nnespolitizovali\nnespolitizovalo\nnespolitizovaný\nnespolitizovať\nNespolitizovať\nnespolitizuj\nnespolitizuje\nnespolitizujem\nnespolitizujeme\nnespolitizuješ\nnespolitizujete\nnespolitizujme\nnespolitizujte\nnespolitizujú\nnespolitizujúc\nnespoločenskosť\nnespoločensky\nnespolufinancoval\nnespolufinancovala\nnespolufinancovali\nnespolufinancovalo\nnespolufinancovať\nnespolufinancuj\nnespolufinancuje\nnespolufinancujem\nnespolufinancujeme\nnespolufinancuješ\nnespolufinancujete\nnespolufinancujme\nnespolufinancujte\nnespolufinancujú\nnespolufinancujúc\nnespoluorganizoval\nnespoluorganizovala\nnespoluorganizovali\nnespoluorganizovalo\nnespoluorganizovať\nnespoluorganizuj\nnespoluorganizuje\nnespoluorganizujem\nnespoluorganizujeme\nnespoluorganizuješ\nnespoluorganizujete\nnespoluorganizujme\nnespoluorganizujte\nnespoluorganizujú\nnespoluorganizujúc\nnespolupodniká\nnespolupodnikaj\nnespolupodnikajme\nnespolupodnikajte\nnespolupodnikajú\nnespolupodnikajúc\nnespolupodnikal\nnespolupodnikala\nnespolupodnikali\nnespolupodnikalo\nnespolupodnikám\nnespolupodnikáme\nnespolupodnikáš\nnespolupodnikať\nnespolupodnikáte\nnespolupodpisovala\nnespolupôsobení\nnespolupôsobenia\nnespolupôsobenie\nnespolupracovaní\nnespolupracujúcich\nnespolupracujúcim\nnespoluúčinkoval\nnespoluúčinkovala\nnespoluúčinkovali\nnespoluúčinkovalo\nnespoluúčinkovať\nnespoluúčinkuj\nnespoluúčinkuje\nnespoluúčinkujem\nnespoluúčinkujeme\nnespoluúčinkuješ\nnespoluúčinkujete\nnespoluúčinkujme\nnespoluúčinkujte\nnespoluúčinkujú\nnespoluúčinkujúc\nnespomenutím\nnespomínaním\nnespomôž\nnespomôžuc\nnespoplatnenia\nnespoplatní\nnespoplatnia\nnespoplatnila\nnespoplatňovanie\nnespopolni\nnespopolnime\nnespopolnite\nnespor\nnesporené\nnespornosť\nnesporte\nnespôsobilosť\nnespôsobilosti\nnespôsobilosťou\nnespôsobnosť\nnespôsobnosti\nnespotrebovaním\nnespotvor\nnespotvorte\nnespozdí\nnespoznanej\nnespoznaným\nnespozorovaný\nnespozorovateľne\nnespozorovateľný\nnespr\nnespracovania\nnespracovanie\nnespracovávanie\nnespradený\nnesprašť\nnesprašťme\nnesprašťte\nnespratník\nnespratnosť\nnespráv\nnesprávnosť\nnespredmetni\nnespredmetnime\nnespredmetnite\nnesprehľadni\nnesprehľadnime\nnesprehľadnite\nnesprehľadňoval\nnesprehľadňovala\nnesprehľadňovali\nnesprehľadňovalo\nnesprehľadňovať\nnesprehľadňuj\nnesprehľadňuje\nnesprehľadňujem\nnesprehľadňujeme\nnesprehľadňuješ\nnesprehľadňujete\nnesprehľadňujme\nnesprehľadňujte\nnesprehľadňujú\nnesprehľadňujúc\nnesprejazdni\nnesprejazdní\nnesprejazdnia\nnesprejazdniac\nnesprejazdnil\nnesprejazdnila\nnesprejazdnili\nnesprejazdnilo\nnesprejazdním\nnesprejazdnime\nnesprejazdníme\nnesprejazdníš\nnesprejazdniť\nnesprejazdnite\nnesprejazdníte\nnesprejazdňoval\nnesprejazdňovala\nnesprejazdňovali\nnesprejazdňovalo\nnesprejazdňovať\nnesprejazdňuj\nnesprejazdňuje\nnesprejazdňujem\nnesprejazdňujeme\nnesprejazdňuješ\nnesprejazdňujete\nnesprejazdňujme\nnesprejazdňujte\nnesprejazdňujú\nnesprejazdňujúc\nnesprenever\nnespreneverte\nnespresnený\nnespresni\nnespresnime\nnespresnite\nnesprevádzkoval\nnesprevádzkovala\nnesprevádzkovali\nnesprevádzkovalo\nnesprevádzkovať\nnesprevádzkuj\nnesprevádzkuje\nnesprevádzkujem\nnesprevádzkujeme\nnesprevádzkuješ\nnesprevádzkujete\nnesprevádzkujme\nnesprevádzkujte\nnesprevádzkujú\nnesprevádzkujúc\nnespriahnutý\nnespriehľadni\nnespriehľadní\nnespriehľadnia\nnespriehľadniac\nnespriehľadnil\nnespriehľadnila\nnespriehľadnili\nnespriehľadnilo\nnespriehľadním\nnespriehľadnime\nnespriehľadníme\nnespriehľadníš\nnespriehľadniť\nnespriehľadnite\nnespriehľadníte\nnespriehľadňoval\nnespriehľadňovala\nnespriehľadňovali\nnespriehľadňovalo\nnespriehľadňovať\nnespriehľadňuj\nnespriehľadňuje\nnespriehľadňujem\nnespriehľadňujeme\nnespriehľadňuješ\nnespriehľadňujete\nnespriehľadňujme\nnespriehľadňujte\nnespriehľadňujú\nnespriehľadňujúc\nnespriechodni\nnespriechodní\nnespriechodnia\nnespriechodniac\nnespriechodnil\nnespriechodnila\nnespriechodnili\nnespriechodnilo\nnespriechodním\nnespriechodnime\nnespriechodníme\nnespriechodníš\nnespriechodniť\nnespriechodnite\nnespriechodníte\nnespriechodňoval\nnespriechodňovala\nnespriechodňovali\nnespriechodňovalo\nnespriechodňovať\nnespriechodňuj\nnespriechodňuje\nnespriechodňujem\nnespriechodňujeme\nnespriechodňuješ\nnespriechodňujete\nnespriechodňujme\nnespriechodňujte\nnespriechodňujú\nnespriechodňujúc\nnespriemeroval\nnespriemerovala\nnespriemerovali\nnespriemerovalo\nnespriemerovať\nnespriemeruj\nnespriemeruje\nnespriemerujem\nnespriemerujeme\nnespriemeruješ\nnespriemerujete\nnespriemerujme\nnespriemerujte\nnespriemerujú\nnespriemerujúc\nnespriemyselni\nnespriemyselnime\nnespriemyselnite\nnespríjemni\nnespríjemnime\nnespríjemnite\nnespríkrej\nnespríkrejme\nnespríkrejte\nnespríkrejú\nnespríkrejúc\nnespríslušnosť\nnesprísnenie\nnesprístupni\nnesprístupnime\nnesprístupnite\nnesprítomni\nnesprítomnime\nnesprítomnite\nnesprivatizoval\nnesprivatizovala\nnesprivatizovali\nnesprivatizovalo\nnesprivatizovať\nnesprivatizuj\nnesprivatizuje\nnesprivatizujem\nnesprivatizujeme\nnesprivatizuješ\nnesprivatizujete\nnesprivatizujme\nnesprivatizujte\nnesprivatizujú\nnesprivatizujúc\nnesproblematizoval\nnesproblematizovala\nnesproblematizovali\nnesproblematizovalo\nnesproblematizovať\nnesproblematizuj\nnesproblematizuje\nnesproblematizujem\nnesproblematizujeme\nnesproblematizuješ\nnesproblematizujete\nnesproblematizujme\nnesproblematizujte\nnesproblematizujú\nnesproblematizujúc\nnesprš\nnespružni\nnespružnime\nnespružnite\nnesprzni\nnesprznime\nnesprznite\nnespucoval\nnespucovala\nnespucovali\nnespucovalo\nnespucovať\nnespucuj\nnespucuje\nnespucujem\nnespucujeme\nnespucuješ\nnespucujete\nnespucujme\nnespucujte\nnespucujú\nnespucujúc\nnespustenia\nnespustenie\nnespustením\nnespusti\nnespustime\nnespustite\nnespúštali\nnespútane\nnespútanosť\nnesrkla\nnesrkli\nnesrklo\nnesrkne\nnesrknem\nnesrkneme\nnesrkneš\nnesrknete\nnesrkni\nnesrknime\nnesrknite\nnesrknú\nnesrknúc\nnesrknúť\nnesrkol\nnesrš\nnestabilita\nnestabilnosť\nnestabilnosti\nnestabilnosťou\nnestačiaci\nnestaj\nnestajili\nnestálosť\nnestálosti\nnestálosťou\nnestanovenia\nnestanovenie\nnestanovením\nnestarajúci\nnestarejme\nnestarejte\nnestarejú\nnestarejúc\nnestarla\nnestarli\nnestarlo\nnestarol\nnestarosti\nnestarostime\nnestarostite\nnestarostoval\nnestarostovala\nnestarostovali\nnestarostovalo\nnestarostovať\nnestarostuj\nnestarostuje\nnestarostujem\nnestarostujeme\nnestarostuješ\nnestarostujete\nnestarostujme\nnestarostujte\nnestarostujú\nnestarostujúc\nnestatočnosť\nnestava\nnestavbová\nnestávkuje\nnestávkujú\nnestavoval\nnestavovať\nnestážoval\nnestážovala\nnestážovali\nnestážovalo\nnestážovať\nnestážuj\nnestážuje\nnestážujem\nnestážujeme\nnestážuješ\nnestážujete\nnestážujme\nnestážujte\nnestážujú\nnestážujúc\nnesteľ\nnestelesni\nnestelesní\nnestelesnia\nnestelesniac\nnestelesnil\nnestelesnila\nnestelesnili\nnestelesnilo\nnestelesním\nnestelesnime\nnestelesníme\nnestelesníš\nnestelesniť\nnestelesnite\nnestelesníte\nnestemni\nnestemnime\nnestemnite\nnesteň\nnestenči\nnestenčime\nnestenčite\nnestenčovanej\nnestene\nnestenem\nnesteneme\nnesteneš\nnestenete\nnesteňme\nnesteňte\nnestenú\nnestenúc\nnesteper\nnesteperte\nnesteplej\nnesteplejme\nnesteplejte\nnesteplejú\nnesteplejúc\nnestiahnutie\nnestíhania\nnestíhanie\nnestihnuté\nnestihnutie\nnestícha\nnestíchaj\nnestíchajme\nnestíchajte\nnestíchajú\nnestíchajúc\nnestíchal\nnestíchala\nnestíchali\nnestíchalo\nnestícham\nnestíchame\nnestíchaš\nnestíchať\nnestíchate\nnestlačenia\nnestlačenie\nnestlačiteľný\nnestľapči\nnestľapčime\nnestľapčite\nnestlej\nnestlejme\nnestlejte\nnestlejú\nnestlejúc\nnestmi\nnestmime\nnestmite\nnesťne\nnesťnem\nnesťneme\nnesťneš\nnesťnete\nnesťni\nnesťnime\nnesťnite\nnesťnú\nnesťnúc\nnestoň\nnestone\nnestonem\nnestoneme\nnestoneš\nnestonete\nnestoňme\nnestoňte\nnestonú\nnestonúc\nnestor\nnestori\nnestorián\nnestormi\nnestotožni\nnestotožnime\nnestotožnite\nnestraf\nnestraníckosť\nnestraníckosti\nnestraníckosťou\nnestraníčka\nnestraník\nnestranne\nnestrannosť\nnestrapká\nnestrapkaj\nnestrapkajme\nnestrapkajte\nnestrapkajú\nnestrapkajúc\nnestrapkal\nnestrapkala\nnestrapkali\nnestrapkalo\nnestrapkám\nnestrapkáme\nnestrapkáš\nnestrapkať\nnestrapkáte\nnestratenie\nnestráviteľnosť\nnestráženia\nnestrážením\nnestrážený\nnestreb\nnestrebká\nnestrebkaj\nnestrebkajme\nnestrebkajte\nnestrebkajú\nnestrebkajúc\nnestrebkal\nnestrebkala\nnestrebkali\nnestrebkalo\nnestrebkám\nnestrebkáme\nnestrebkáš\nnestrebkať\nnestrebkáte\nnestredový\nnestrený\nnestresoval\nnestresovala\nnestresovali\nnestresovalo\nnestresovať\nnestresuj\nnestresuje\nnestresujem\nnestresujeme\nnestresuješ\nnestresujete\nnestresujme\nnestresujte\nnestresujú\nnestresujúc\nnestretnutiu\nnestriedmosť\nnestriedmosti\nnestriedmostí\nnestrň\nnestrnie\nnestrniem\nnestrnieme\nnestrnieš\nnestrniete\nnestrňme\nnestrňte\nnestroskoc\nnestroskoce\nnestroskocem\nnestroskoceme\nnestroskoceš\nnestroskocete\nnestroskocme\nnestroskocte\nnestroskocú\nnestroskocúc\nnestrp\nnestrpči\nnestrpčime\nnestrpčite\nnestrúc\nnestrúhava\nnestrúhavam\nnestrúhavame\nnestrúhavaš\nnestrúhavate\nnestúpa\nnestúpaj\nnestúpajme\nnestúpajte\nnestúpajú\nnestúpajúc\nnestúpal\nnestúpala\nnestúpali\nnestúpalo\nnestúpam\nnestúpame\nnestúpaš\nnestúpať\nnestúpate\nnestuži\nnestužime\nnestužite\nnestvor\nnestvora\nnestvorte\nnestýkava\nnestýkavaj\nnestýkavajme\nnestýkavajte\nnestýkavajú\nnestýkavajúc\nnestýkaval\nnestýkavala\nnestýkavali\nnestýkavalo\nnestýkavam\nnestýkavame\nnestýkavaš\nnestýkavať\nnestýkavate\nnesubvencovaný\nnesúcejšej\nnesúcejší\nnesúcejšia\nnesúcejšie\nnesúcejšieho\nnesúcejšiemu\nnesúcejších\nnesúcejším\nnesúcejšími\nnesúcejšiu\nnesúcejšom\nnesúcejšou\nnesúcití\nnesúcitím\nnesúcitíme\nnesúcitíš\nnesúcitíte\nnesúco\nnesúcosť\nnesúhlas\nnesumarizoval\nnesumarizovala\nnesumarizovali\nnesumarizovalo\nnesumarizovať\nnesumarizuj\nnesumarizuje\nnesumarizujem\nnesumarizujeme\nnesumarizuješ\nnesumarizujete\nnesumarizujme\nnesumarizujte\nnesumarizujú\nnesumarizujúc\nnesúmerne\nnesúmernosť\nnesuň\nnesunie\nnesuniem\nnesunieme\nnesunieš\nnesuniete\nnesuňme\nnesuňte\nnesunul\nnesunula\nnesunuli\nnesunulo\nnesup\nnesupela\nnesupelo\nnesúper\nnesúperte\nnesúrodejšej\nnesúrodejší\nnesúrodejšia\nnesúrodejšie\nnesúrodejšieho\nnesúrodejšiemu\nnesúrodejších\nnesúrodejším\nnesúrodejšími\nnesúrodejšiu\nnesúrodejšom\nnesúrodejšou\nnesúrodo\nnesúrodosť\nnesuspendoval\nnesuspendovala\nnesuspendovali\nnesuspendovalo\nnesuspendovať\nnesuspenduj\nnesuspenduje\nnesuspendujem\nnesuspendujeme\nnesuspenduješ\nnesuspendujete\nnesuspendujme\nnesuspendujte\nnesuspendujú\nnesuspendujúc\nnesústredenie\nnesústredením\nnesústredenosť\nnesúvis\nnesúvisle\nnesúvislejšej\nnesúvislejší\nnesúvislejšia\nnesúvislejšie\nnesúvislejšieho\nnesúvislejšiemu\nnesúvislejších\nnesúvislejším\nnesúvislejšími\nnesúvislejšiu\nnesúvislejšom\nnesúvislejšou\nnesúvislo\nnesúvislosť\nnesúzvuk\nnesúzvukom\nnesužovaný\nNesvád\nNesvadoch\nNesvady\nnesvár\nnesvármi\nnesváry\nnesvedči\nnesvedčiaci\nnesvedčime\nnesvedčite\nnesvedomitosťou\nnesvietiace\nnesviní\nnesviním\nnesviníme\nnesviníš\nnesviníte\nnesvišť\nnesvišťme\nnesvišťte\nnesvojej\nnesvojho\nnesvoji\nnesvojich\nnesvojim\nnesvojím\nnesvojimi\nnesvojmu\nnesvojom\nnesvojou\nnesvojprávnosť\nnesvojprávnosti\nnesvoju\nnesvornosť\nnesvornosti\nnesvrb\nnesyč\nnesymetrickosť\nnesymetricky\nnesympatickosť\nnesympatickosti\nnesympaticky\nnesympatie\nnesypú\nnesypúc\nnesyr\nnesystematickosť\nnesystematickosti\nnesystematicky\nnesystematičnosť\nnesystémovosť\nnesystémovosti\nnesystémovosťou\nnesýtený\nnešalej\nnešalejme\nnešalejte\nnešalejú\nnešalejúc\nnešaloval\nnešalovala\nnešalovali\nnešalovalo\nnešalovať\nnešaluj\nnešaluje\nnešalujem\nnešalujeme\nnešaluješ\nnešalujete\nnešalujme\nnešalujte\nnešalujú\nnešalujúc\nnešanti\nnešantieva\nnešantievaj\nnešantievajme\nnešantievajte\nnešantievajú\nnešantievajúc\nnešantieval\nnešantievala\nnešantievali\nnešantievalo\nnešantievam\nnešantievame\nnešantievaš\nnešantievať\nnešantievate\nnešantime\nnešantite\nnešelesti\nnešelestime\nnešelestite\nnešemoň\nnešemoní\nnešemonia\nnešemoniac\nnešemonil\nnešemonila\nnešemonili\nnešemonilo\nnešemoním\nnešemoníme\nnešemoníš\nnešemoniť\nnešemoníte\nnešemoňme\nnešemoňte\nnešenkoval\nnešenkovala\nnešenkovali\nnešenkovalo\nnešenkovať\nnešenkuj\nnešenkuje\nnešenkujem\nnešenkujeme\nnešenkuješ\nnešenkujete\nnešenkujme\nnešenkujte\nnešenkujú\nnešenkujúc\nnešepci\nnešepcime\nnešepcite\nnešepotaj\nnešepotajme\nnešepotajte\nnešepotajúc\nnešer\nnešerte\nnešetrení\nnešetriaci\nnešetrnosť\nnešetrnosti\nneši\nnešiana\nnešianaj\nnešianajme\nnešianajte\nnešianajú\nnešianajúc\nnešianal\nnešianala\nnešianali\nnešianalo\nnešianam\nnešianame\nnešianaš\nnešianať\nnešianate\nnešib\nnešibaj\nnešibajme\nnešibajte\nnešibajúc\nnešiboval\nnešibovala\nnešibovali\nnešibovalo\nnešibovať\nnešibú\nnešibúc\nnešibuj\nnešibuje\nnešibujem\nnešibujeme\nnešibuješ\nnešibujete\nnešibujme\nnešibujte\nnešibujú\nnešibujúc\nnešifrovací\nnešíja\nnešíjaj\nnešíjajme\nnešíjajte\nnešíjajú\nnešíjajúc\nnešíjam\nnešíjame\nnešíjaš\nnešíjate\nnešije\nnešijem\nnešijeme\nNešijeme\nnešiješ\nnešijete\nnešijú\nnešijúc\nnešikovnica\nnešikovník\nnešil\nnešila\nnešili\nnešilo\nnešime\nNešime\nnešimre\nnešimrem\nnešimreme\nnešimreš\nnešimrete\nnešimri\nnešimrime\nnešimrite\nnešimrú\nnešimrúc\nnešípiaci\nnešiplajúc\nnešírenia\nnešírenie\nnešíreniu\nnešite\nneškamre\nneškamrem\nneškamreme\nneškamreš\nneškamrete\nneškamrú\nneškamrúc\nnešker\nneškerte\nnešklb\nnešklbú\nnešklbúc\nneškodenie\nneškodne\nneškodnosť\nneškoľ\nneškolenosť\nneškolí\nneškolia\nneškoliac\nneškolil\nneškolila\nneškolili\nneškolilo\nneškolím\nneškolíme\nneškolíš\nneškoliť\nneškolíte\nneškoľme\nneškoľte\nneškrab\nneškrabotajúc\nneškrč\nneškreč\nneškrekotajúc\nneškriab\nneškrip\nneškrípaj\nneškrípajme\nneškrípajte\nneškrípajúc\nneškripí\nneškripia\nneškripiac\nneškripím\nneškripíme\nneškripíš\nneškripíte\nneškripme\nneškripotajúc\nneškripte\nneškrúc\nneškrupuľoval\nneškrupuľovala\nneškrupuľovali\nneškrupuľovalo\nneškrupuľovať\nneškrupuľuj\nneškrupuľuje\nneškrupuľujem\nneškrupuľujeme\nneškrupuľuješ\nneškrupuľujete\nneškrupuľujme\nneškrupuľujte\nneškrupuľujú\nneškrupuľujúc\nneškvar\nneškvarte\nneškvrč\nnešľahaný\nnešľachti\nnešľachtime\nnešľachtite\nnešlohla\nnešlohli\nnešlohlo\nnešlohne\nnešlohnem\nnešlohneme\nnešlohneš\nnešlohnete\nnešlohni\nnešlohnime\nnešlohnite\nnešlohnú\nnešlohnúc\nnešlohnúť\nnešlohol\nnešmar\nnešmarte\nnešmatlá\nnešmatlaj\nnešmatlajme\nnešmatlajte\nnešmatlajú\nnešmatlajúc\nnešmatlám\nnešmatláme\nnešmatláš\nnešmatláte\nnešomre\nnešomrem\nnešomreme\nnešomreš\nnešomrete\nnešomri\nnešomrime\nnešomrite\nnešomrú\nnešomrúc\nnešpároval\nnešpárovala\nnešpárovali\nnešpárovalo\nnešpárovať\nnešpáruj\nnešpáruje\nnešpárujem\nnešpárujeme\nnešpáruješ\nnešpárujete\nnešpárujme\nnešpárujte\nnešpárujú\nnešpárujúc\nnešpecifikovanie\nnešpinci\nnešpincime\nnešpincite\nnešpintá\nnešpintaj\nnešpintajme\nnešpintajte\nnešpintajú\nnešpintajúc\nnešpintám\nnešpintáme\nnešpintáš\nnešpintáte\nnešpľachci\nnešpľachcime\nnešpľachcite\nnešpľachotajúc\nnešplechci\nnešplechcime\nnešplechcite\nnešplechotajúc\nnešpor\nNešporom\nNešporová\nNešporovej\nnešporte\nnešportove\nnešportovo\nnešporujúci\nnešpory\nnešprajcoval\nnešprajcovala\nnešprajcovali\nnešprajcovalo\nnešprajcovať\nnešprajcuj\nnešprajcuje\nnešprajcujem\nnešprajcujeme\nnešprajcuješ\nnešprajcujete\nnešprajcujme\nnešprajcujte\nnešprajcujú\nnešprajcujúc\nnešramotajúc\nneštartovanie\nnešťastnica\nnešťastník\nnešťatie\nnešťatím\nneštebotá\nneštebotaj\nneštebotajme\nneštebotajte\nneštebotajú\nneštebotajúc\nneštebotám\nneštebotáme\nneštebotáš\nneštebotáte\nnešteloval\nneštelovala\nneštelovali\nneštelovalo\nneštelovať\nnešteluj\nnešteluje\nneštelujem\nneštelujeme\nnešteluješ\nneštelujete\nneštelujme\nneštelujte\nneštelujú\nneštelujúc\nneštempľoval\nneštempľovala\nneštempľovali\nneštempľovalo\nneštempľovať\nneštempľuj\nneštempľuje\nneštempľujem\nneštempľujeme\nneštempľuješ\nneštempľujete\nneštempľujme\nneštempľujte\nneštempľujú\nneštempľujúc\nneštibre\nneštibrem\nneštibreme\nneštibreš\nneštibrete\nneštibri\nneštibrime\nneštibrite\nneštibrú\nneštibrúc\nneštiepa\nneštiepaj\nneštiepajme\nneštiepajte\nneštiepajú\nneštiepajúc\nneštiepam\nneštiepame\nneštiepaš\nneštiepate\nneštípaj\nneštípajme\nneštípajte\nneštípajúc\nneštorcoval\nneštorcovala\nneštorcovali\nneštorcovalo\nneštorcovať\nneštorcuj\nneštorcuje\nneštorcujem\nneštorcujeme\nneštorcuješ\nneštorcujete\nneštorcujme\nneštorcujte\nneštorcujú\nneštorcujúc\nneštrajchla\nneštrajchli\nneštrajchlo\nneštrajchne\nneštrajchnem\nneštrajchneme\nneštrajchneš\nneštrajchnete\nneštrajchni\nneštrajchnime\nneštrajchnite\nneštrajchnú\nneštrajchnúc\nneštrajchnúť\nneštrajchol\nneštrajkovaní\nneštrajkovanie\nneštrkotajúc\nneštrukturalizoval\nneštrukturalizovala\nneštrukturalizovali\nneštrukturalizovalo\nneštrukturalizovať\nneštrukturalizuj\nneštrukturalizuje\nneštrukturalizujem\nneštrukturalizujeme\nneštrukturalizuješ\nneštrukturalizujete\nneštrukturalizujme\nneštrukturalizujte\nneštrukturalizujú\nneštrukturalizujúc\nnešťukla\nnešťukli\nnešťuklo\nnešťukne\nnešťuknem\nnešťukneme\nnešťukneš\nnešťuknete\nnešťukni\nnešťuknime\nnešťuknite\nnešťuknú\nnešťuknúc\nnešťuknúť\nnešťukol\nneštúra\nneštúraj\nneštúrajme\nneštúrajte\nneštúrajú\nneštúrajúc\nneštúral\nneštúrala\nneštúrali\nneštúralo\nneštúram\nneštúrame\nneštúraš\nneštúrať\nneštúrate\nneštvi\nneštvime\nneštvite\nnešuchci\nnešuchcime\nnešuchcite\nnešuchor\nnešuchorte\nnešuká\nnešukaj\nnešukajme\nnešukajte\nnešukajú\nnešukajúc\nnešukal\nnešukala\nnešukali\nnešukalo\nnešukám\nnešukáme\nnešukáš\nnešukať\nnešukáte\nnešum\nnešup\nnešušť\nnešušťme\nnešušťte\nnešúver\nnešúverte\nnešvár\nnešvármi\nnešváry\nnešvitor\nnešvitorte\nnetábor\nnetáborte\nnetabuizoval\nnetabuizovala\nnetabuizovali\nnetabuizovalo\nnetabuizovať\nnetabuizuj\nnetabuizuje\nnetabuizujem\nnetabuizujeme\nnetabuizuješ\nnetabuizujete\nnetabuizujme\nnetabuizujte\nnetabuizujú\nnetabuizujúc\nnetajene\nnetajený\nnetajomníč\nnetajomníči\nnetajomníčia\nnetajomníčiac\nnetajomníčil\nnetajomníčila\nnetajomníčili\nnetajomníčilo\nnetajomníčim\nnetajomníčime\nnetajomníčiš\nnetajomníčiť\nnetajomníčite\nnetajomníčme\nnetajomníčte\nnetakticky\nnetaktnosť\nnetaktnosťou\nnetaň\nnetanie\nnetaniem\nnetanieme\nnetanieš\nnetaniete\nnetaňme\nnetaňte\nnetápajúc\nnetárava\nnetáravaj\nnetáravajme\nnetáravajte\nnetáravajú\nnetáravajúc\nnetáraval\nnetáravala\nnetáravali\nnetáravalo\nnetáravam\nnetáravame\nnetáravaš\nnetáravať\nnetáravate\nneťarbi\nneťarbime\nneťarbite\nneťarbú\nneťarbúc\nnetarifovaný\nneťaženia\nnet\nnetečne\nnetečnosti\nnetečný\nneteň\nnetenči\nnetenčime\nnetenčite\nnetenie\nneteniem\nnetenieme\nnetenieš\nneteniete\nneteňme\nneteňte\nneteper\nneteperte\nneter\nneterka\nnetesni\nnetesnime\nnetesnite\nnetesnosť\nnetesnosti\nnetesnosťou\nneteše\nnetešem\nnetešeme\nnetešeš\nnetešete\nnetešú\nnetešúc\nnetienený\nnetiketa\nnetiquette\nnetknutý\nnetlej\nnetlejme\nnetlejte\nnetlejú\nnetlejúc\nnetliap\nnetliapal\nnetliapala\nnetliapali\nnetliapalo\nnetliapať\nnetliape\nnetliapem\nnetliapeme\nnetliapeš\nnetliapete\nnetliapme\nnetliapte\nnetliapu\nnetliapuc\nnetlkotaj\nnetlkotajme\nnetlkotajte\nnetlkotajúc\nnetmej\nnetmejme\nnetmejte\nnetmejú\nnetmejúc\nnetmel\nnetmela\nnetmelený\nnetmeli\nnetmelo\nnetmie\nnetmiem\nnetmieme\nnetmieš\nnetmieť\nnetmiete\nnetmime\nnetmite\nnetne\nnetnem\nnetneme\nnetneš\nnetnete\nnetni\nnetnime\nnetnite\nnetnú\nnetnúc\nnetočiaci\nnetočovkoval\nnetočovkovala\nnetočovkovali\nnetočovkovalo\nnetočovkovať\nnetočovkuj\nnetočovkuje\nnetočovkujem\nnetočovkujeme\nnetočovkuješ\nnetočovkujete\nnetočovkujme\nnetočovkujte\nnetočovkujú\nnetočovkujúc\nnetolerancia\nnetolerantne\nnetolerantnosť\nnetolerantnosti\nnetolerantnosťou\nnetoň\nnetonie\nnetoniem\nnetonieme\nnetonieš\nnetoniete\nnetoňme\nnetónovaný\nnetoňte\nnetopiera\nnetopier\nnetopiere\nnetopierí\nnetradičnosť\nnetrafenie\nnetranscendoval\nnetransferovala\nnetransferovali\nnetransferuje\nnetransformovania\nnetransparentnosť\nnetransplantoval\nnetransplantovala\nnetransplantovali\nnetransplantovalo\nnetransplantovať\nnetransplantuj\nnetransplantuje\nnetransplantujem\nnetransplantujeme\nnetransplantuješ\nnetransplantujete\nnetransplantujme\nnetransplantujte\nnetransplantujú\nnetransplantujúc\nnetrapasila\nnetrápený\nnetrbliecu\nnetrbliecuc\nnetrč\nnetrebne\nnetrebnosť\nnetrebný\nnetresci\nnetrescime\nnetrescite\nnetrestania\nnetrestanie\nnetrešť\nnetrešťme\nnetrešťte\nnetríb\nnetríbi\nnetríbia\nnetríbiac\nnetríbil\nnetríbila\nnetríbili\nnetríbilo\nnetríbim\nnetríbime\nnetríbiš\nnetríbiť\nnetríbite\nnetríbme\nnetríbte\nnetrím\nnetríme\nnetrímem\nnetrímeme\nnetrímeš\nnetrímete\nnetrímme\nnetrímte\nnetrímu\nnetrímuc\nnetrkotajúc\nnetrm\nnetrmme\nnetrmte\nnetrmú\nnetrmúc\nnetrň\nnetrnie\nnetrniem\nnetrnieme\nnetrnieš\nnetrniete\nnetrňme\nnetrňte\nnetrochár\nnetrochári\nnetrochária\nnetrocháriac\nnetrocháril\nnetrochárila\nnetrochárili\nnetrochárilo\nnetrochárim\nnetrochárime\nnetrocháriš\nnetrocháriť\nnetrochárite\nnetrochárme\nnetrochárte\nnetromfovali\nnetrp\nNetrp\nNetrpezlivci\nnetrpezlive\nnetrpezlivec\nnetrpezlivejší\nnetrpezlivo\nnetrpezlivosť\nnetrúc\nnetrvávame\nnetto\nnetuhnúci\nnetuneloval\nnetunelovala\nnetunelovali\nnetunelovalo\nnetunelovať\nnetuneluj\nnetuneluje\nnetunelujem\nnetunelujeme\nnetuneluješ\nnetunelujete\nnetunelujme\nnetunelujte\nnetunelujú\nnetunelujúc\nnetušene\nnetušenie\nnetušiace\nnetušiaci\nnetúžieva\nnetúžievaj\nnetúžievajme\nnetúžievajte\nnetúžievajú\nnetúžievajúc\nnetúžieval\nnetúžievala\nnetúžievali\nnetúžievalo\nnetúžievam\nnetúžievame\nnetúžievaš\nnetúžievať\nnetúžievate\nnetvárnený\nnetvarované\nnetvarovaných\nnetvor\nnetvorovi\nnetvorte\nnetýkavka\nnetýkavý\nnetypicky\nneubabre\nneubabrem\nneubabreme\nneubabreš\nneubabrete\nneubabri\nneubabrime\nneubabrite\nneubabrú\nneubabrúc\nneuber\nNeuber\nneuberie\nneuberiem\nneuberieme\nNeuberieme\nneuberieš\nneuberiete\nneuberme\nneuberte\nneuberú\nneuberúc\nneubi\nneubije\nneubijem\nneubijeme\nneubiješ\nneubijete\nneubijú\nneubijúc\nneubime\nneubite\nneubral\nneubrala\nneubrali\nneubralo\nneubrať\nneubytovane\nneucelenosti\nneúct\nneúctach\nneúctam\nneúctami\nneucti\nneuctime\nneuctite\nneúctivec\nneúctivosť\nneúčasť\nneúčastne\nneúčelnosť\nneúčelnosti\nneučesaný\nneučinením\nneúčinkovaním\nneúčinnosť\nneúčinnosti\nneučiteľoval\nneučiteľovala\nneučiteľovali\nneučiteľovalo\nneučiteľovať\nneučiteľuj\nneučiteľuje\nneučiteľujem\nneučiteľujeme\nneučiteľuješ\nneučiteľujete\nneučiteľujme\nneučiteľujte\nneučiteľujú\nneučiteľujúc\nneúčtovania\nneúčtovanie\nneúčtovaním\nNeudanie\nneudelenia\nneudelenie\nneudelením\nneudeleniu\nneudeľovanie\nneuder\nneuderte\nneudlabči\nneudlabčime\nneudlabčite\nneudlapči\nneudlapčime\nneudlapčite\nneudreto\nneudrúc\nneudržania\nneudržanie\nneudržaním\nneudržateľne\nneudržateľnosť\nneudržiavania\nneudržiavanie\nneudržovaný\nneudup\nneudupá\nneudupaj\nneudupajme\nneudupajte\nneudupajú\nneudupajúc\nneudupal\nneudupala\nneudupali\nneudupalo\nneudupám\nneudupáme\nneudupáš\nneudupať\nneudupáte\nneudupáva\nneudupávaj\nneudupávajme\nneudupávajte\nneudupávajú\nneudupávajúc\nneudupával\nneudupávala\nneudupávali\nneudupávalo\nneudupávam\nneudupávame\nneudupávaš\nneudupávať\nneudupávate\nneudupe\nneudupem\nneudupeme\nneudupeš\nneudupete\nneudupme\nneudupte\nneudupú\nneudupúc\nneudychč\nneudychči\nneudychčime\nneudychčite\nneufujazdi\nneufujazdime\nneufujazdite\nneugriloval\nneugrilovala\nneugrilovali\nneugrilovalo\nneugrilovať\nneugriluj\nneugriluje\nneugrilujem\nneugrilujeme\nneugriluješ\nneugrilujete\nneugrilujme\nneugrilujte\nneugrilujú\nneugrilujúc\nneuhasiteľne\nneúhor\nneúhorte\nneuhosti\nneuhostime\nneuhostite\nneuhovor\nneuhovorte\nneuhrá\nneuhrádzania\nneuhrádzanie\nneuhrádzaním\nneuhrádzaniu\nNeuhradzovanie\nneuhraj\nneuhrajme\nneuhrajte\nneuhrajú\nneuhrajúc\nneuhral\nneuhrala\nneuhrali\nneuhralo\nneuhrám\nneuhráme\nneuhraň\nneuhranie\nneuhraniem\nneuhranieme\nneuhranieš\nneuhraniete\nneuhraňme\nneuhraňte\nneuhráš\nneuhrať\nneuhráte\nneuhyň\nneuhynie\nneuhyniem\nneuhynieme\nneuhynieš\nneuhyniete\nneuhyňme\nneuhyňte\nneuchopiteľný\nneuisti\nneuistime\nneuistite\nneujarmi\nneujarmime\nneujarmite\nneujasnenia\nneujasnením\nneujasnenosť\nneujasnenosťami\nneujasnenosti\nneujasnenosťou\nneujasnený\nneujasni\nneujasnime\nneujasnite\nneujazdi\nneujazdime\nneujazdite\nneujdi\nneujdime\nneujdite\nneujdú\nneujedajúce\nneukázneným\nneukladanie\nneukojiteľný\nneukolíšu\nneukolíšuc\nneukoná\nneukončenia\nneukončenie\nneukončením\nneukončeniu\nneukončenosť\nneukončenosti\nneukonči\nneukončime\nneukončite\nneukoristi\nneukoristime\nneukoristite\nneukotvi\nneukotví\nneukotvia\nneukotviac\nneukotvil\nneukotvila\nneukotvili\nneukotvilo\nneukotvím\nneukotvime\nneukotvíme\nneukotvíš\nneukotviť\nneukotvite\nneukotvíte\nneukrivdi\nneukrivdime\nneukrivdite\nneukutú\nneuľahči\nneuľahčime\nneuľahčite\nneulamoval\nneulamovala\nneulamovali\nneulamovalo\nneulamovať\nneulamuj\nneulamuje\nneulamujem\nneulamujeme\nneulamuješ\nneulamujete\nneulamujme\nneulamujte\nneulamujú\nneulamujúc\nneulap\nneulapí\nneulapia\nneulapiac\nneulapil\nneulapila\nneulapili\nneulapilo\nneulapím\nneulapíme\nneulapíš\nneulapiť\nneulapíte\nneulapme\nneulapte\nneuleť\nneuľútosti\nneuľútostime\nneuľútostite\nneuľútostni\nneuľútostnime\nneuľútostnite\nneúm\nneuma\nneumália\nneumasti\nneumastime\nneumastite\nNeume\nneumele\nneumelo\nneumelosť\nneumenšia\nneumenšili\nneúmernosť\nneumiesti\nneumiestim\nneumiestime\nneumiestiš\nneumiestite\nneumiestnenia\nneumiestni\nneumiestnim\nneumiestnime\nneumiestniš\nneumiestnite\nneumlč\nneumocni\nneumocnime\nneumocnite\nneumor\nneúmornosť\nneumorte\nneumožnenia\nneumožnenie\nneumožni\nneumožnime\nneumožnite\nneumožňovania\nneumreto\nneumrúc\nneunáhlenosť\nneunáhlila\nneunáhlili\nNeunáhlilo\nneunáhlim\nneunáhliť\nneunáhľoval\nneúnavnosť\nneuneseniu\nneúnosnosť\nneupachti\nneupachtime\nneupachtite\nneupäl\nneupäla\nneupäli\nneupälo\nneupevni\nneupevnime\nneupevnite\nneupchatý\nneupichnúť\nneupísania\nneupísanie\nneupíšu\nneupíšuc\nneuplácal\nneuplatené\nneuplatených\nneuplatnenia\nneuplatnenie\nNeuplatnením\nneuplatneniu\nneuplatnený\nneuplatni\nneuplatnime\nneuplatnite\nneuplatňovania\nneuplatňovanie\nneuplatňovaním\nneuplatňovaniu\nneúplatný\nneupleť\nneupletie\nneupletiem\nneupletieme\nneupletieš\nneupletiete\nneupleťme\nneupleťte\nneupletú\nneupletúc\nneupliesť\nneuplietla\nneuplietli\nneuplietlo\nneuplietol\nneúplnosť\nneuplyň\nneuplynie\nneuplyniem\nneuplynieme\nneuplynieš\nneuplyniete\nneuplyňme\nneuplyňte\nneuplynutia\nneupokojený\nNeupokojiteľný\nneuposlúchnutí\nneuposlúchnutia\nneuposlúchnutie\nNeuposlúchnutím\nneupotrebený\nneupotrebiteľnosť\nneupotrebiteľnosti\nneupozorni\nneupozornime\nneupozornite\nneupratajúc\nneuprataný\nneupravovaním\nneuprednostni\nneuprednostnime\nneuprednostnite\nneuprednostňovania\nneuprednostňovanie\nneuprednostňovaním\nneupresnený\nneupresni\nneupresní\nneupresnia\nneupresniac\nneupresnil\nneupresnila\nneupresnili\nneupresnilo\nneupresním\nneupresnime\nneupresníme\nneupresníš\nneupresniť\nneupresnite\nneupresníte\nneupresňoval\nneupresňuje\nneupresňujú\nneúprimnosť\nneúprosne\nneúprosnosť\nneúprosný\nneuprúc\nneupustení\nneupusti\nneupustime\nneupustite\nneuradenú\nneuralgia\nneuralgicky\nneuralgický\nneurálny\nneurasténia\nneurastenický\nneurasténický\nneurastenička\nneurastenik\nneurčenia\nneurčenie\nneurči\nneurčime\nneurčite\nneurčitkový\nneurčito\nneurčitok\nneurčitosť\nneurčovania\nneúrečne\nneúrečný\nneúrekom\nneurín\nneurit\nneuritída\nneurobenie\nneurobený\nneurobiológia\nneuroblast\nneuroblastóm\nneurocyt\nneúročenie\nneúročený\nneúrod\nneurodermatitída\nneurodermitída\nneuroendokrinológia\nneurofibróm\nneurofyziológ\nneurofyziológia\nneurohormón\nneurochémia\nneurochirurg\nneurochirurgia\nneurochirurgie\nneurochirurgii\nneurochirurgiou\nneurochirurgiu\nneurokrínia\nneuroleptikum\nneurológ\nneurológia\nneurologička\nneuróm\nneuromuskulárne\nneurón\nneurónmi\nneurónov\nneuronové\nneurónový\nneuróny\nneuropat\nneuropatia\nneuropatológia\nneuroplazma\nneuropsychiatria\nneuropsychiatrickými\nneurosekrécia\nneurosekrét\nneurospazmus\nneuroticizmus\nneuroticky\nneurotický\nneurotička\nneurotik\nneurotómia\nneurotoxín\nneurovaskulárny\nneurovnaný\nneuróz\nneurózach\nneurózam\nneuróza\nneurulácia\nneurvale\nneusadený\nneuschnutý\nneuschoval\nneuschovala\nneuschovali\nneuschovalo\nneuschovať\nneuschuj\nneuschuje\nneuschujem\nneuschujeme\nneuschuješ\nneuschujete\nneuschujme\nneuschujte\nneuschujú\nneuschujúc\nneuskladni\nneuskladnime\nneuskladnite\nneuskor\nneuskorte\nneuskromni\nneuskromnime\nneuskromnite\nneuskutočnenia\nneuskutočnenie\nneuskutočnením\nneuskutočneniu\nneuskutočni\nneuskutočnime\nneuskutočnite\nneuskutočniteľnosť\nneuskutočniteľnosti\nneuskutočniteľnosťou\nneuskutočňovania\nneuskutočňovanie\nneusmernený\nneusmerni\nneusmernime\nneusmernite\nneusnadní\nneusnul\nneusnula\nneusnuli\nneusnulo\nneusp\nneúspešnejší\nneuspi\nneuspievajú\nneuspime\nneuspite\nneuspokojenia\nneuspokojenie\nneuspokojením\nneuspokojeniu\nneuspokojenosti\nneuspokojovanie\nneuspokojovaný\nneuspor\nneusporiadanie\nneusporiadanosť\nneusporiadanosti\nneusporte\nneuspôsob\nneuspôsobí\nneuspôsobia\nneuspôsobiac\nneuspôsobil\nneuspôsobila\nneuspôsobili\nneuspôsobilo\nneuspôsobím\nneuspôsobíme\nneuspôsobíš\nneuspôsobiť\nneuspôsobíte\nneuspôsobme\nneuspôsobte\nneustajne\nneustajni\nneustajní\nneustajnia\nneustajniac\nneustajnil\nneustajnila\nneustajnili\nneustajnilo\nneustajním\nneustajnime\nneustajníme\nneustajníš\nneustajniť\nneustajnite\nneustajníte\nneustajňoval\nneustajňovala\nneustajňovali\nneustajňovalo\nneustajňovať\nneustajňuj\nneustajňuje\nneustajňujem\nneustajňujeme\nneustajňuješ\nneustajňujete\nneustajňujme\nneustajňujte\nneustajňujú\nneustajňujúc\nneustál\nneustálenosť\nneustálenosti\nneustály\nneustáť\nneustávajúci\nneusteľ\nneústi\nneústia\nneústiac\nneustiela\nneustielaj\nneustielajme\nneustielajte\nneustielajú\nneustielajúc\nneustielal\nneustielala\nneustielali\nneustielalo\nneustielam\nneustielame\nneustielaš\nneustielať\nneustielate\nneústil\nneústila\nneústili\nneústilo\nneústim\nneústime\nneústiš\nneústiť\nneústite\nneustoj\nneustoja\nneustojac\nneustojí\nneustojím\nneustojíme\nneustojíš\nneustojíte\nneustojme\nneustojte\nneustón\nneustrň\nneustrnie\nneustrniem\nneustrnieme\nneustrnieš\nneustrniete\nneustrňme\nneustrňte\nneustrojený\nneústrojnosť\nneústupčivosť\nneústupčivosti\nneústupčivosťou\nneústupne\nneústupnosť\nneustupovaní\nneusústavni\nneusústavní\nneusústavnia\nneusústavniac\nneusústavnil\nneusústavnila\nneusústavnili\nneusústavnilo\nneusústavním\nneusústavnime\nneusústavníme\nneusústavníš\nneusústavniť\nneusústavnite\nneusústavníte\nneusúvzťažni\nneusúvzťažnime\nneusúvzťažnite\nneusužoval\nneusužovala\nneusužovali\nneusužovalo\nneusužovať\nneusužuj\nneusužuje\nneusužujem\nneusužujeme\nneusužuješ\nneusužujete\nneusužujme\nneusužujte\nneusužujú\nneusužujúc\nneusvedči\nneusvedčime\nneusvedčite\nneusviedča\nneusviedčaj\nneusviedčajme\nneusviedčajte\nneusviedčajú\nneusviedčajúc\nneusviedčam\nneusviedčame\nneusviedčaš\nneusviedčate\nneuši\nneušije\nneušijem\nneušijeme\nneušiješ\nneušijete\nneušijú\nneušijúc\nneušil\nneušila\nneušili\nneušilo\nneušime\nneušite\nneuškrň\nneuškrnie\nneuškrniem\nneuškrnieme\nneuškrnieš\nneuškrniete\nneuškrňme\nneuškrňte\nneuškvar\nneuškvarí\nneuškvaria\nneuškvariac\nneuškvaril\nneuškvarila\nneuškvarili\nneuškvarilo\nneuškvarím\nneuškvaríme\nneuškvaríš\nneuškvariť\nneuškvaríte\nneuškvarme\nneuškvarte\nneušľahaný\nneuštvi\nneuštvime\nneuštvite\nneutábor\nneutáborte\nneutajenie\nneutajoval\nneutajovala\nneutajovali\nneutajovalo\nneutajovať\nneutajuj\nneutajuje\nneutajujem\nneutajujeme\nneutajuješ\nneutajujete\nneutajujme\nneutajujte\nneutajujú\nneutajujúc\nneutancujú\nneutesni\nneutesnime\nneutesnite\nneutešene\nneutešenosti\nneutier\nneutíšiteľný\nneutleto\nneutlmovali\nneutlmovať\nneutlmuje\nneútočení\nneútočenia\nneútočenie\nneutoň\nneutonie\nneutoniem\nneutonieme\nneutonieš\nneutoniete\nneutoňme\nneutoňte\nneutrála\nneutrál\nneutráli\nNeutráli\nneutralíno\nneutralita\nneutralizácia\nneutralizačno\nneutralizačný\nneutralizovanie\nneutralizovaný\nneutralizovať\nneutrálmi\nneutrálnosť\nneutrálny\nneutrálovi\nneutrete\nneutretý\nneutríno\nneutrón\nneutrónovo\nneutrónový\nneutrp\nneutrúc\nneutrum\nneutuchá\nneutváraný\nneutvor\nneutvorený\nneutvorte\nneutvrdení\nneutýra\nneutýraj\nneutýrajme\nneutýrajte\nneutýrajú\nneutýrajúc\nneutýral\nneutýrala\nneutýrali\nneutýralo\nneutýram\nneutýrame\nneutýraš\nneutýrať\nneutýrate\nneuvádzania\nneuvádzanie\nneuvádzaním\nneuvalenie\nneuvalením\nneuvar\nneuvarte\nneuvaruje\nneuväzni\nneuväznime\nneuväznite\nneuväzňoval\nneuväzňovala\nneuväzňovali\nneuväzňovalo\nneuväzňovať\nneuväzňuj\nneuväzňuje\nneuväzňujem\nneuväzňujeme\nneuväzňuješ\nneuväzňujete\nneuväzňujme\nneuväzňujte\nneuväzňujú\nneuväzňujúc\nneuvážaná\nneuvážané\nneuvážene\nneuváženosť\nneuvažujúci\nneuvedomele\nneuvedomelosti\nneuvedomenia\nneuvedomenie\nneuvedomovania\nneuvedomovanie\nneuvedomujúci\nneuver\nneuverejnenia\nneuverejnenie\nneuverejni\nneuverejnime\nneuverejnite\nneuverejňovania\nneuverejňovanie\nneuverejňovaním\nneuverenie\nneuveriteľne\nneuveriteľnejšíF\nneuveriteľnosť\nneúverovanie\nneuverte\nneuvi\nneuviazaný\nneuviažuc\nneuviď\nneuvije\nneuvijem\nneuvijeme\nneuviješ\nneuvijete\nneuvijú\nneuvijúc\nneuvime\nneuvite\nneuvoľnenia\nneuvoľnenie\nneuvoľni\nneuvoľnime\nneuvoľnite\nneuzatvárania\nneuzatváranie\nneuzatváraním\nneuzatvor\nneuzatvorenia\nneuzatvorenie\nneuzatvorením\nneuzatvorte\nneuzavretia\nneuzavretie\nneuzavretím\nneuzavretiu\nneuzavrúc\nneuzemnený\nneuzemni\nneuzemnime\nneuzemnite\nneuzemňoval\nneuzemňovala\nneuzemňovali\nneuzemňovalo\nneuzemňovať\nneuzemňuj\nneuzemňuje\nneuzemňujem\nneuzemňujeme\nneuzemňuješ\nneuzemňujete\nneuzemňujme\nneuzemňujte\nneuzemňujú\nneuzemňujúc\nneuzhovor\nneuzhovorte\nneuznania\nneuznanie\nNeuznaním\nneuznaniu\nneuznášania\nneuznávania\nneuznávanie\nneuznávaním\nneuznávaniu\nneuzreto\nneuzrúc\nneužívania\nNeva\nNevád\nNevada\nNevade\nnevadiaci\nnevädnúce\nnevädnúci\nnevädnúcu\nNevadou\nnevadský\nNevadu\nNevady\nnevädza\nnevädzí\nnevädzovo\nnevädzovobelasý\nnevädzovomodrý\nnevädzový\nnevakcinovala\nnevakcinovania\nnevakcinovať\nnevakcinuje\nnevakcinujú\nnevalne\nnevalorizoval\nnevalorizovala\nnevalorizovali\nnevalorizovalo\nnevalorizovania\nnevalorizovanie\nnevalorizovaním\nnevalorizovať\nnevalorizuj\nnevalorizuje\nnevalorizujem\nnevalorizujeme\nnevalorizuješ\nnevalorizujete\nnevalorizujme\nnevalorizujte\nnevalorizujú\nnevalorizujúc\nnevaň\nnevanie\nnevaniem\nnevanieme\nnevanieš\nnevaniete\nnevaňme\nnevaňte\nnevápni\nnevápnia\nnevápniac\nnevápnil\nnevápnila\nnevápnili\nnevápnilo\nnevápnim\nnevápnime\nnevápniš\nnevápniť\nnevápnite\nnevar\nnevarioval\nnevariovala\nnevariovali\nnevariovalo\nnevariovať\nnevariuj\nnevariuje\nnevariujem\nnevariujeme\nnevariuješ\nnevariujete\nnevariujme\nnevariujte\nnevariujú\nnevariujúc\nnevarte\nneväz\nneväzni\nneväznime\nneväznite\nneváženie\nnevďačnica\nnevďačník\nnevďačnosť\nnevďak\nnevdojak\nnevdojaký\nnevdrobči\nnevdrobčime\nnevdrobčite\nNeve\nnevečer\nnevečeriava\nnevečeriavaj\nnevečeriavajme\nnevečeriavajte\nnevečeriavajú\nnevečeriavajúc\nnevečeriaval\nnevečeriavala\nnevečeriavali\nnevečeriavalo\nnevečeriavam\nnevečeriavame\nnevečeriavaš\nnevečeriavať\nnevečeriavate\nnevečerte\nneved\nnevedenia\nnevedenie\nnevedeniu\nnevedeť\nnevedne\nnevedno\nnevedomec\nnevedomejšej\nnevedomejší\nnevedomejšia\nnevedomejšie\nnevedomejšieho\nnevedomejšiemu\nnevedomejších\nnevedomejším\nnevedomejšími\nnevedomejšiu\nnevedomejšom\nnevedomejšou\nnevedomie\nnevedomky\nneveksloval\nnevekslovala\nnevekslovali\nnevekslovalo\nnevekslovať\nneveksluj\nneveksluje\nnevekslujem\nnevekslujeme\nneveksluješ\nnevekslujete\nnevekslujme\nnevekslujte\nnevekslujú\nnevekslujúc\nnevenči\nnevenčime\nnevenčite\nnevenovaná\nnevenovania\nneventiloval\nneventilovala\nneventilovali\nneventilovalo\nneventilovať\nneventiluj\nneventiluje\nneventilujem\nneventilujeme\nneventiluješ\nneventilujete\nneventilujme\nneventilujte\nneventilujú\nneventilujúc\nnevenujúci\nnevenúva\nnevenúvaj\nnevenúvajme\nnevenúvajte\nnevenúvajú\nnevenúvajúc\nnevenúval\nnevenúvala\nnevenúvali\nnevenúvalo\nnevenúvam\nnevenúvame\nnevenúvaš\nnevenúvať\nnevenúvate\nnever\nnevera\nneverbalizoval\nneverbalizovala\nneverbalizovali\nneverbalizovalo\nneverbalizovať\nneverbalizuj\nneverbalizuje\nneverbalizujem\nneverbalizujeme\nneverbalizuješ\nneverbalizujete\nneverbalizujme\nneverbalizujte\nneverbalizujú\nneverbalizujúc\nneverec\nneverecký\nneverectvo\nneverejno\nneveriacky\nneveriaco\nnevernica\nneverník\nneverte\nneveselo\nnevesta\nnevestica\nnevesticami\nnevestice\nnevestici\nnevesticoch\nnevesticom\nnevesticov\nnevesticu\nnevestička\nnevestin\nnevestinec\nnevestino\nnevestiných\nnevešti\nneveštiaci\nneveštime\nneveštite\nnevetraný\nnevetvi\nnevetvime\nnevetvite\nnevežiaci\nnevhod\nnevhodnosť\nnevhrň\nnevhrnie\nnevhrniem\nnevhrnieme\nnevhrnieš\nnevhrniete\nnevhrňme\nnevhrňte\nnevhrnú\nnevhrnúc\nnevhrnul\nnevhrnula\nnevhrnuli\nnevhrnulo\nnevhrnúť\nnevi\nneviazania\nneviazanie\nneviazanosť\nneviažuc\nneviď\nnevídali\nnevídane\nnevídanosť\nnevidene\nneviditeľnosť\nnevidno\nnevidomo\nnevidomosť\nnevidomý\nneviemkoľko\nneviera\nneviestka\nnevíjala\nnevije\nnevijem\nnevijeme\nneviješ\nnevijete\nnevijú\nnevijúc\nnevil\nnevila\nnevili\nnevilo\nnevime\nnevín\nneviniatko\nneviniatok\nnevinnejšíI\nnevinnosť\nnevinnučký\nnevis\nNevis\nnevite\nnevkus\nnevkusnosť\nnevl\nnevládnosť\nnevlaj\nnevlaje\nnevlajem\nnevlajeme\nnevlaješ\nnevlajete\nnevlajme\nnevlajte\nnevlajú\nnevlajúc\nnevlal\nnevlala\nnevlali\nnevlalo\nnevlám\nnevlámme\nnevlámte\nnevlastnenia\nnevlastnenie\nnevlastni\nnevlastniaci\nnevlastnime\nnevlastnite\nnevlať\nnevleť\nnevlhči\nnevlhčime\nnevlhčite\nnevlhnúci\nnevlieva\nnevlievaj\nnevlievajme\nnevlievajte\nnevlievajú\nnevlievajúc\nnevlieval\nnevlievala\nnevlievali\nnevlievalo\nnevlievam\nnevlievame\nnevlievaš\nnevlievať\nnevlievate\nnevlúdil\nnevlúdilo\nnevľúdnosť\nnevľúdnosťou\nnevmanévroval\nnevmanévrovala\nnevmanévrovali\nnevmanévrovalo\nnevmanévrovať\nnevmanévruj\nnevmanévruje\nnevmanévrujem\nnevmanévrujeme\nnevmanévruješ\nnevmanévrujete\nnevmanévrujme\nnevmanévrujte\nnevmanévrujú\nnevmanévrujúc\nnevmesti\nnevmestime\nnevmestite\nnevmiešavane\nnevmiešavania\nnevmiešavanie\nnevnímanie\nnevnor\nnevnorte\nnevodič\nnevodiče\nnevodička\nnevodiču\nnevojak\nnevojdi\nnevojdime\nnevojdite\nnevojdú\nnevojenči\nnevojenčime\nnevojenčite\nnevôľach\nnevôľam\nnevoľami\nnevole\nnevoli\nnevôlí\nnevoliach\nnevoliam\nnevoľky\nnevoľnica\nnevoľnícky\nnevoľníctvach\nnevoľníctvam\nnevoľníctvo\nnevoľníčka\nnevoľník\nnevoľno\nnevoľnosť\nnevoľou\nnevoľu\nnevoňajúci\nnevor\nnevotrúc\nnevovádza\nnevovádzaj\nnevovádzajme\nnevovádzajte\nnevovádzajú\nnevovádzajúc\nnevovádzal\nnevovádzala\nnevovádzali\nnevovádzalo\nnevovádzam\nnevovádzame\nnevovádzaš\nnevovádzať\nnevovádzate\nnevpicháva\nnevpichávaj\nnevpichávajme\nnevpichávajte\nnevpichávajú\nnevpichávajúc\nnevpichával\nnevpichávala\nnevpichávali\nnevpichávalo\nnevpichávam\nnevpichávame\nnevpichávaš\nnevpichávať\nnevpichávate\nnevpichoval\nnevpichovala\nnevpichovali\nnevpichovalo\nnevpichovať\nnevpichuj\nnevpichuje\nnevpichujem\nnevpichujeme\nnevpichuješ\nnevpichujete\nnevpichujme\nnevpichujte\nnevpichujú\nnevpichujúc\nnevpíšu\nnevpíšuc\nnevplynú\nnevpustenie\nnevpustením\nnevpusteniu\nnevpusti\nnevpustime\nnevpustite\nnevpúšťaní\nnevracania\nnevracanie\nnevraď\nnevrasti\nnevrastime\nnevrastite\nnevrašti\nnevraštime\nnevraštite\nnevrátenia\nnevrátenie\nnevrátením\nnevrav\nnevraviaci\nnevravne\nnevravnosť\nnevraždi\nnevraždime\nnevraždite\nnevražiť\nnevraživca\nnevraživec\nnevraživo\nnevraživosť\nnevraživý\nnevrč\nnevrecovaný\nnevrešť\nnevrešťme\nnevrešťte\nnevrkol\nnevrlejšej\nnevrlejší\nnevrlejšia\nnevrlejšie\nnevrlejšieho\nnevrlejšiemu\nnevrlejších\nnevrlejším\nnevrlejšími\nnevrlejšiu\nnevrlejšom\nnevrlejšou\nnevrlo\nnevrlosť\nnevrlý\nnevrndži\nnevrndžime\nnevrndžite\nnevrstvený\nnevrstvi\nnevrstvime\nnevrstvite\nnevrť\nnevrúc\nnevržď\nnevržďme\nnevržďte\nNevská\nNevského\nNevskej\nnevstreb\nnevstreľ\nnevstrelí\nnevstrelia\nnevstreliac\nnevstrelil\nnevstrelila\nnevstrelili\nnevstrelilo\nnevstrelím\nnevstrelíme\nnevstrelíš\nnevstreliť\nnevstrelíte\nnevstreľme\nnevstreľte\nnevstúpení\nnevstúpenia\nnevstúpenie\nnevstúpením\nnevstupovania\nnevstupovanie\nnevsugerúva\nnevsugerúvaj\nnevsugerúvajme\nnevsugerúvajte\nnevsugerúvajú\nnevsugerúvajúc\nnevsugerúval\nnevsugerúvala\nnevsugerúvali\nnevsugerúvalo\nnevsugerúvam\nnevsugerúvame\nnevsugerúvaš\nnevsugerúvať\nnevsugerúvate\nnevsuň\nnevsunie\nnevsuniem\nnevsunieme\nnevsunieš\nnevsuniete\nnevsuňme\nnevsuňte\nnevsunul\nnevsunula\nnevsunuli\nnevsunulo\nnevsypú\nnevsypúc\nnevšedne\nnevšednosť\nnevši\nnevšije\nnevšijem\nnevšijeme\nnevšiješ\nnevšijete\nnevšijú\nnevšijúc\nnevšil\nnevšila\nnevšili\nnevšilo\nnevšímania\nnevšímanie\nnevšímaním\nnevšímavec\nnevšímavo\nnevšímavosť\nnevšime\nnevšite\nnevteper\nnevteperte\nnevtieravo\nnevtieravosť\nnevtrúc\nnevulkanizovaných\nnévus\nnevyargumentoval\nnevyargumentovala\nnevyargumentovali\nnevyargumentovalo\nnevyargumentovať\nnevyargumentuj\nnevyargumentuje\nnevyargumentujem\nnevyargumentujeme\nnevyargumentuješ\nnevyargumentujete\nnevyargumentujme\nnevyargumentujte\nnevyargumentujú\nnevyargumentujúc\nnevybabre\nnevybabrem\nnevybabreme\nnevybabreš\nnevybabrete\nnevybabri\nnevybabrime\nnevybabrite\nnevybabrú\nnevybabrúc\nnevybáča\nnevybáčaj\nnevybáčajme\nnevybáčajte\nnevybáčajú\nnevybáčajúc\nnevybáčal\nnevybáčala\nnevybáčali\nnevybáčalo\nnevybáčam\nnevybáčame\nnevybáčaš\nnevybáčať\nnevybáčate\nnevybavenie\nnevybavený\nnevybavovanie\nnevyberanie\nnevyberaním\nnevyberanosť\nnevyberavo\nnevyberavosť\nnevybi\nnevybije\nnevybijem\nnevybijeme\nnevybiješ\nnevybijete\nnevybijú\nnevybijúc\nnevybime\nnevybite\nnevybľakúva\nnevybľakúvaj\nnevybľakúvajme\nnevybľakúvajte\nnevybľakúvajú\nnevybľakúvajúc\nnevybľakúval\nnevybľakúvala\nnevybľakúvali\nnevybľakúvalo\nnevybľakúvam\nnevybľakúvame\nnevybľakúvaš\nnevybľakúvať\nnevybľakúvate\nnevýbojnosť\nnevybrakoval\nnevybranie\nnevybudovania\nnevybudovanie\nnevybudovaním\nnevybuchnutý\nnevycer\nnevycerte\nnevycestovaní\nnevycestovania\nnevycestovaných\nnevycestovaným\nnevyclený\nnevycválaný\nnevyčar\nnevyčarte\nnevyčerpateľne\nnevyčerpateľnosť\nnevyčinene\nnevyčísliteľne\nnevyčisti\nnevyčistime\nnevyčistite\nnevyčisťujúce\nnevyčlenené\nnevyčlenenie\nnevyčlenením\nnevyčleneniu\nnevydania\nnevydanie\nnevydaním\nnevydaniť\nnevydaniu\nnevydar\nnevydarene\nnevydarenie\nnevydarte\nnevydávaní\nnevydávania\nnevydávanie\nnevydávaním\nnevydiskutoval\nnevydiskutovala\nnevydiskutovali\nnevydiskutovalo\nnevydiskutovať\nnevydiskutuj\nnevydiskutuje\nnevydiskutujem\nnevydiskutujeme\nnevydiskutuješ\nnevydiskutujete\nnevydiskutujme\nnevydiskutujte\nnevydiskutujú\nnevydiskutujúc\nnevydlab\nnevydláždený\nnevyďob\nnevydobýva\nnevydobývaj\nnevydobývajme\nnevydobývajte\nnevydobývajú\nnevydobývajúc\nnevydobýval\nnevydobývala\nnevydobývali\nnevydobývalo\nnevydobývam\nnevydobývame\nnevydobývaš\nnevydobývať\nnevydobývate\nnevydrapoval\nnevydrapovala\nnevydrapovali\nnevydrapovalo\nnevydrapovať\nnevydrapuj\nnevydrapuje\nnevydrapujem\nnevydrapujeme\nnevydrapuješ\nnevydrapujete\nnevydrapujme\nnevydrapujte\nnevydrapujú\nnevydrapujúc\nnevydrapúva\nnevydrapúvaj\nnevydrapúvajme\nnevydrapúvajte\nnevydrapúvajú\nnevydrapúvajúc\nnevydrapúval\nnevydrapúvala\nnevydrapúvali\nnevydrapúvalo\nnevydrapúvam\nnevydrapúvame\nnevydrapúvaš\nnevydrapúvať\nnevydrapúvate\nnevydraž\nnevydraží\nnevydražia\nnevydražiac\nnevydražil\nnevydražila\nnevydražili\nnevydražilo\nnevydražím\nnevydražíme\nnevydražíš\nnevydražiť\nnevydražíte\nnevydražme\nnevydražte\nnevydreným\nnevydrúc\nnevydržanie\nnevydupá\nnevydupaj\nnevydupajme\nnevydupajte\nnevydupajú\nnevydupajúc\nnevydupám\nnevydupáme\nnevydupáš\nnevydupáte\nnevydur\nnevydurte\nnevydutý\nnevyexcerpoval\nnevyexcerpovala\nnevyexcerpovali\nnevyexcerpovalo\nnevyexcerpovať\nnevyexcerpuj\nnevyexcerpuje\nnevyexcerpujem\nnevyexcerpujeme\nnevyexcerpuješ\nnevyexcerpujete\nnevyexcerpujme\nnevyexcerpujte\nnevyexcerpujú\nnevyexcerpujúc\nnevyfajči\nnevyfajčime\nnevyfajčite\nnevyfáraní\nnevyfáranie\nnevyfáraním\nnevyfáraných\nnevyfarbený\nnevyfarbi\nnevyfarbime\nnevyfarbite\nnevyfrkla\nnevyfrkli\nnevyfrklo\nnevyfrkne\nnevyfrknem\nnevyfrkneme\nnevyfrkneš\nnevyfrknete\nnevyfrkni\nnevyfrknime\nnevyfrknite\nnevyfrknú\nnevyfrknúc\nnevyfrknúť\nnevyfrkol\nnevyfuč\nnevyfutroval\nnevyfutrovala\nnevyfutrovali\nnevyfutrovalo\nnevyfutrovať\nnevyfutruj\nnevyfutruje\nnevyfutrujem\nnevyfutrujeme\nnevyfutruješ\nnevyfutrujete\nnevyfutrujme\nnevyfutrujte\nnevyfutrujú\nnevyfutrujúc\nnevygúľa\nnevygúľaj\nnevygúľajme\nnevygúľajte\nnevygúľajú\nnevygúľajúc\nnevygúľal\nnevygúľala\nnevygúľali\nnevygúľalo\nnevygúľam\nnevygúľame\nnevygúľaš\nnevygúľať\nnevygúľate\nnevyhádžu\nnevyhádžuc\nnevyháša\nnevyhášaj\nnevyhášajme\nnevyhášajte\nnevyhášajú\nnevyhášajúc\nnevyhášal\nnevyhášala\nnevyhášali\nnevyhášalo\nnevyhášam\nnevyhášame\nnevyhášaš\nnevyhášať\nnevyhášate\nnevyhľadaný\nnevyhlásenia\nnevyhlásenie\nnevyhlásením\nnevyhláseniu\nnevyhlasovania\nnevyhnuteľnosť\nnevyhnuteľnosti\nnevyhnutne\nnevyhnutnosť\nnevyhnutný\nnevýhod\nnevýhodnosť\nnevyhodnotený\nnevyhor\nnevyhosti\nnevyhostime\nnevyhostite\nnevyhovení\nnevyhovor\nnevyhovorte\nnevyhrab\nnevyhradzoval\nnevyhradzovala\nnevyhradzovali\nnevyhradzovalo\nnevyhradzovať\nnevyhradzuj\nnevyhradzuje\nnevyhradzujem\nnevyhradzujeme\nnevyhradzuješ\nnevyhradzujete\nnevyhradzujme\nnevyhradzujte\nnevyhradzujú\nnevyhradzujúc\nnevyhraný\nnevyhrávajúci\nnevyhrej\nnevyhreje\nnevyhrejem\nnevyhrejeme\nnevyhreješ\nnevyhrejete\nnevyhrejme\nnevyhrejte\nnevyhrejú\nnevyhrejúc\nnevyhriatych\nnevyhŕkla\nnevyhŕkli\nnevyhŕklo\nnevyhŕkne\nnevyhŕknem\nnevyhŕkneme\nnevyhŕkneš\nnevyhŕknete\nnevyhŕkni\nnevyhŕknime\nnevyhŕknite\nnevyhŕknu\nnevyhŕknuc\nnevyhŕknuť\nnevyhŕkol\nnevyhrm\nnevyhrň\nnevyhrnie\nnevyhrniem\nnevyhrnieme\nnevyhrnieš\nnevyhrniete\nnevyhrňme\nnevyhrňte\nnevyhyň\nnevyhynie\nnevyhyniem\nnevyhynieme\nnevyhynieš\nnevyhyniete\nnevyhyňme\nnevyhyňte\nnevychádzaní\nnevychláda\nnevychládaj\nnevychládajme\nnevychládajte\nnevychládajú\nnevychládajúc\nnevychládal\nnevychládala\nnevychládali\nnevychládalo\nnevychládam\nnevychládame\nnevychládaš\nnevychládať\nnevychládate\nnevychovane\nnevychovanec\nnevychovanosť\nnevychrľ\nnevychrľme\nnevychrľte\nnevychýlený\nnevyjadriteľný\nnevyjasnenia\nnevyjasnenie\nnevyjasnením\nnevyjasneniu\nnevyjasnený\nnevyjasni\nnevyjasnime\nnevyjasnite\nnevyjdi\nnevyjdime\nnevyjdite\nnevyjdú\nnevyjednávanie\nnevyjme\nnevyjmem\nnevyjmeme\nnevyjmeš\nnevyjmete\nnevyjmi\nnevyjmime\nnevyjmite\nnevyjmú\nnevyjmúc\nnevykakalo\nnevykané\nnevykasá\nnevykasaj\nnevykasajme\nnevykasajte\nnevykasajú\nnevykasajúc\nnevykasám\nnevykasáme\nnevykasáš\nnevykasáte\nnevykázanie\nnevykazovania\nnevykazovanie\nnevykazovaný\nnevyklaď\nnevyklasí\nnevykokci\nnevykokcime\nnevykokcite\nnevykoledoval\nnevykoledovala\nNevykoledovali\nnevykoleduje\nnevykolíkoval\nnevykolíkovala\nnevykolíkovali\nnevykolíkovalo\nnevykolíkovať\nnevykolíkuj\nnevykolíkuje\nnevykolíkujem\nnevykolíkujeme\nnevykolíkuješ\nnevykolíkujete\nnevykolíkujme\nnevykolíkujte\nnevykolíkujú\nnevykolíkujúc\nnevykompenzoval\nnevykompenzovala\nnevykompenzovali\nnevykompenzovalo\nnevykompenzuje\nnevykompenzujú\nnevykonávania\nnevykonávanie\nnevykonávaním\nnevykorenené\nnevykoreniteľný\nnevykoreňoval\nnevykoreňovala\nnevykoreňovali\nnevykoreňovalo\nnevykoreňovať\nnevykoreňuj\nnevykoreňuje\nnevykoreňujem\nnevykoreňujeme\nnevykoreňuješ\nnevykoreňujete\nnevykoreňujme\nnevykoreňujte\nnevykoreňujú\nnevykoreňujúc\nnevykoristi\nnevykoristime\nnevykoristite\nnevykosti\nnevykostime\nnevykostite\nnevykosťoval\nnevykosťovala\nnevykosťovali\nnevykosťovalo\nnevykosťovať\nnevykosťuj\nnevykosťuje\nnevykosťujem\nnevykosťujeme\nnevykosťuješ\nnevykosťujete\nnevykosťujme\nnevykosťujte\nnevykosťujú\nnevykosťujúc\nnevyková\nnevykrápa\nnevykrápaj\nnevykrápajme\nnevykrápajte\nnevykrápajú\nnevykrápajúc\nnevykrápam\nnevykrápame\nnevykrápaš\nnevykrápate\nnevykresáva\nnevykresávaj\nnevykresávajme\nnevykresávajte\nnevykresávajú\nnevykresávajúc\nnevykresával\nnevykresávala\nnevykresávali\nnevykresávalo\nnevykresávam\nnevykresávame\nnevykresávaš\nnevykresávať\nnevykresávate\nnevykrič\nnevykropí\nnevykropím\nnevykropíme\nnevykropíš\nnevykropíte\nnevykryštalizovanie\nnevykrytie\nnevykrytím\nnevykrytý\nnevykukoval\nnevykukovala\nnevykukovali\nnevykukovalo\nnevykukovať\nnevykukuj\nnevykukuje\nnevykukujem\nnevykukujeme\nnevykukuješ\nnevykukujete\nnevykukujme\nnevykukujte\nnevykukujú\nnevykukujúc\nnevykúpaj\nnevykúpajme\nnevykúpajte\nnevykúpajúc\nnevykurovania\nnevykurovanie\nnevykurovaním\nnevykurovaniu\nnevykutráva\nnevykutrávaj\nnevykutrávajme\nnevykutrávajte\nnevykutrávajú\nnevykutrávajúc\nnevykutrával\nnevykutrávala\nnevykutrávali\nnevykutrávalo\nnevykutrávam\nnevykutrávame\nnevykutrávaš\nnevykutrávať\nnevykutrávate\nnevykutre\nnevykutrem\nnevykutreme\nnevykutreš\nnevykutrete\nnevykutri\nnevykutrime\nnevykutrite\nnevykutrú\nnevykutrúc\nnevykúva\nnevykúvaj\nnevykúvajme\nnevykúvajte\nnevykúvajú\nnevykúvajúc\nnevykúval\nnevykúvala\nnevykúvali\nnevykúvalo\nnevykúvam\nnevykúvame\nnevykúvaš\nnevykúvať\nnevykúvate\nnevykváč\nnevykváče\nnevykváčem\nnevykváčeme\nnevykváčeš\nnevykváčete\nnevykváčme\nnevykváčte\nnevykváču\nnevykváčuc\nnevykyp\nnevykýv\nnevykýve\nnevykývem\nnevykýveme\nnevykýveš\nnevykývete\nnevykývme\nnevykývte\nnevykývu\nnevykývuc\nnevylác\nnevyláce\nnevylácem\nnevyláceme\nnevyláceš\nnevylácete\nnevylácme\nnevylácte\nnevylácu\nnevylácuc\nnevyľahči\nnevyľahčime\nnevyľahčite\nnevylám\nnevylámme\nnevylámte\nnevylepši\nnevylepšime\nnevylepšite\nnevylepšoval\nnevylepšovala\nnevylepšovali\nnevylepšovalo\nnevylepšovať\nnevylepšuj\nnevylepšuje\nnevylepšujem\nnevylepšujeme\nnevylepšuješ\nnevylepšujete\nnevylepšujme\nnevylepšujte\nnevylepšujú\nnevylepšujúc\nnevylešti\nnevyleštime\nnevyleštite\nnevyleť\nnevyležanú\nnevyliečiteľne\nnevyliečiteľnosť\nnevylietla\nnevylietli\nnevylietlo\nnevylietne\nnevylietnem\nnevylietneme\nnevylietneš\nnevylietnete\nnevylietni\nnevylietnime\nnevylietnite\nnevylietnu\nnevylietnuc\nnevylietnuť\nnevylietol\nnevylúčenej\nnevylúčení\nnevyľudni\nnevyľudnime\nnevyľudnite\nnevyluskla\nnevyluskli\nnevylusklo\nnevyluskne\nnevylusknem\nnevyluskneme\nnevyluskneš\nnevylusknete\nnevyluskni\nnevylusknime\nnevylusknite\nnevylusknú\nnevylusknúc\nnevylusknúť\nnevyluskol\nnevymáhania\nnevymáhanie\nnevymáhaním\nnevymakalo\nnevymaňoval\nnevymaňovala\nnevymaňovali\nnevymaňovalo\nnevymaňovať\nnevymaňuj\nnevymaňuje\nnevymaňujem\nnevymaňujeme\nnevymaňuješ\nnevymaňujete\nnevymaňujme\nnevymaňujte\nnevymaňujú\nnevymaňujúc\nnevymasti\nnevymastime\nnevymastite\nnevymazateľné\nnevymenovania\nnevymenovanie\nnevymenovaním\nnevymenovaniu\nnevymerania\nnevymeškané\nnevymeškanie\nnevymeškávanie\nnevymôž\nnevymožiteľnosť\nnevymožiteľnosti\nnevymožiteľnosťou\nnevymôžuc\nnevymršti\nnevymrštime\nnevymrštite\nnevymrúc\nnevymŕza\nnevymŕzaj\nnevymŕzajme\nnevymŕzajte\nnevymŕzajú\nnevymŕzajúc\nnevymŕzal\nnevymŕzala\nnevymŕzali\nnevymŕzalo\nnevymŕzam\nnevymŕzame\nnevymŕzaš\nnevymŕzať\nnevymŕzate\nnevymurúva\nnevymurúvaj\nnevymurúvajme\nnevymurúvajte\nnevymurúvajú\nnevymurúvajúc\nnevymurúval\nnevymurúvala\nnevymurúvali\nnevymurúvalo\nnevymurúvam\nnevymurúvame\nnevymurúvaš\nnevymurúvať\nnevymurúvate\nnevynadá\nnevynadaj\nnevynadajme\nnevynadajte\nnevynadajú\nnevynadajúc\nnevynadal\nNevynadal\nnevynadala\nnevynadali\nnevynadalo\nnevynadám\nnevynadáme\nnevynadáš\nnevynadať\nnevynadáte\nnevynájdime\nnevynájduc\nnevyňal\nnevyňala\nnevyňali\nnevynaliezate\nnevyňalo\nnevyňať\nnevynechaním\nnevynor\nnevynorte\nnevynovoval\nnevynovovala\nnevynovovali\nnevynovovalo\nnevynovovať\nnevynovuj\nnevynovuje\nnevynovujem\nnevynovujeme\nnevynovuješ\nnevynovujete\nnevynovujme\nnevynovujte\nnevynovujú\nnevynovujúc\nnevynucovania\nnevynucovanie\nnevyondi\nnevyondiac\nnevyondime\nnevyondite\nnevyoranej\nnevyoraných\nnevyorský\nnevyostrovanie\nnevypäl\nnevypäla\nnevypäli\nnevypälo\nnevypar\nnevyparte\nnevypas\nnevypečený\nnevypínanie\nnevypísanie\nnevypísaním\nnevypíšu\nnevypíšuc\nnevypitvi\nnevypitvime\nnevypitvite\nnevyplácania\nnevyplácanie\nnevyplácaním\nnevyplácaniu\nnevyplačú\nnevyplačúc\nnevyplatene\nnevyplatenia\nnevyplatenie\nnevyplatením\nnevyplateniu\nnevyplej\nnevypleje\nnevyplejem\nnevyplejeme\nnevypleješ\nnevyplejete\nnevyplejme\nnevyplejte\nnevyplejú\nnevyplejúc\nnevyplešti\nnevypleštime\nnevypleštite\nnevypletá\nnevypletaj\nnevypletajme\nnevypletajte\nnevypletajú\nnevypletajúc\nnevypletal\nnevypletala\nnevypletali\nnevypletalo\nnevypletám\nnevypletáme\nnevypletáš\nnevypletať\nnevypletáte\nnevyplnenie\nnevyplyň\nnevyplynie\nnevyplyniem\nnevyplynieme\nnevyplynieš\nnevyplyniete\nnevyplyňme\nnevyplyňte\nNevypnutie\nnevypočitateľne\nnevypočítateľne\nnevypočítateľnosť\nnevypočitateľný\nnevypočítava\nnevypočítavaj\nnevypočítavajme\nnevypočítavajte\nnevypočítavajú\nnevypočítavajúc\nnevypočítaval\nnevypočítavala\nnevypočítavali\nnevypočítavalo\nnevypočítavam\nnevypočítavame\nnevypočítavaš\nnevypočítavať\nnevypočítavate\nnevypočutia\nNevypočutím\nnevypochoduje\nnevypomôž\nnevypomôžuc\nnevypomsti\nnevypomstime\nnevypomstite\nnevypoveda\nnevypovedá\nnevypovedaj\nnevypovedajme\nnevypovedajte\nnevypovedajú\nnevypovedajúc\nnevypovedám\nnevypovedáme\nnevypovedanie\nnevypovedaný\nnevypovedáš\nnevypovedáte\nnevypovedateľne\nnevypovedateľný\nnevypracovania\nnevypracovanie\nnevypratajúc\nnevypravoval\nnevypravovala\nnevypravovali\nnevypravovalo\nnevypravovať\nnevypravuj\nnevypravuje\nnevypravujem\nnevypravujeme\nnevypravuješ\nnevypravujete\nnevypravujme\nnevypravujte\nnevypravujú\nnevypravujúc\nnevyprázdnenie\nnevyprázdnieva\nNevyprodukovanie\nnevyprofiloval\nnevyprofilovala\nnevyprofilovali\nnevyprofilovalo\nnevyprofilovať\nnevyprofiluj\nnevyprofiluje\nnevyprofilujem\nnevyprofilujeme\nnevyprofiluješ\nnevyprofilujete\nnevyprofilujme\nnevyprofilujte\nnevyprofilujú\nnevyprofilujúc\nnevyprojektoval\nnevyprojektovala\nnevyprojektovali\nnevyprojektovalo\nnevyprojektovať\nnevyprojektuj\nnevyprojektuje\nnevyprojektujem\nnevyprojektujeme\nnevyprojektuješ\nnevyprojektujete\nnevyprojektujme\nnevyprojektujte\nnevyprojektujú\nnevyprojektujúc\nnevyprosť\nnevyprosti\nnevyprostí\nnevyprostia\nnevyprostiac\nnevyprostil\nnevyprostila\nnevyprostili\nnevyprostilo\nnevyprostím\nnevyprostime\nnevyprostíme\nnevyprostíš\nnevyprostiť\nnevyprostite\nnevyprostíte\nnevyprosťme\nnevyprosťoval\nnevyprosťovala\nnevyprosťovali\nnevyprosťovalo\nnevyprosťovať\nnevyprosťte\nnevyprosťuj\nnevyprosťuje\nnevyprosťujem\nnevyprosťujeme\nnevyprosťuješ\nnevyprosťujete\nnevyprosťujme\nnevyprosťujte\nnevyprosťujú\nnevyprosťujúc\nnevyprovokovaný\nnevyprš\nnevyprúc\nnevypusti\nnevypustime\nnevypustite\nNevypýtanie\nNevypýtanou\nnevyrábajúci\nnevyrác\nnevyráce\nnevyrácem\nnevyráceme\nnevyráceš\nnevyrácete\nnevyrácme\nnevyrácte\nnevyrácu\nnevyrácuc\nnevyrasti\nnevyrastime\nnevyrastite\nnevyrátava\nnevyrátavaj\nnevyrátavajme\nnevyrátavajte\nnevyrátavajú\nnevyrátavajúc\nnevyrátaval\nnevyrátavala\nnevyrátavali\nnevyrátavalo\nnevyrátavam\nnevyrátavame\nnevyrátavaš\nnevyrátavať\nnevyrátavate\nnevyrec\nnevyrecme\nnevyrecte\nnevyriadené\nnevyriešenia\nnevyriešenie\nnevyriešením\nnevyrobenie\nnevyrobením\nnevýrobno\nnevyrovnania\nnevyrovnanie\nnevyrovnaním\nnevyrovnaniu\nnevyrovnateľný\nnevyrovnávania\nnevyrovnávanie\nnevyrúb\nnevyrubenia\nnevyrubenie\nnevyrubovaní\nnevyrvi\nnevyrvime\nnevyrvite\nnevyrypla\nnevyrypli\nnevyryplo\nnevyrypne\nnevyrypnem\nnevyrypneme\nnevyrypneš\nnevyrypnete\nnevyrypni\nnevyrypnime\nnevyrypnite\nnevyrypnú\nnevyrypnúc\nnevyrypnúť\nnevyrypol\nnevyrypoval\nnevyrypovala\nnevyrypovali\nnevyrypovalo\nnevyrypovať\nnevyrypuj\nnevyrypuje\nnevyrypujem\nnevyrypujeme\nnevyrypuješ\nnevyrypujete\nnevyrypujme\nnevyrypujte\nnevyrypujú\nnevyrypujúc\nnevyryžoval\nnevyryžovala\nnevyryžovali\nnevyryžovalo\nnevyryžovať\nnevyryžuj\nnevyryžuje\nnevyryžujem\nnevyryžujeme\nnevyryžuješ\nnevyryžujete\nnevyryžujme\nnevyryžujte\nnevyryžujú\nnevyryžujúc\nnevysádž\nnevysádže\nnevysádžem\nnevysádžeme\nnevysádžeš\nnevysádžete\nnevysádžme\nnevysádžte\nnevysádžu\nnevysádžuc\nnevyseď\nnevýsevne\nnevysielania\nnevysielanie\nnevysielaním\nnevyskáka\nnevyskákaj\nnevyskákajme\nnevyskákajte\nnevyskákajú\nnevyskákajúc\nnevyskákam\nnevyskákame\nnevyskákaš\nnevyskákate\nnevyskladni\nnevyskladnime\nnevyskladnite\nnevyslabikoval\nnevyslabikovala\nnevyslabikovali\nnevyslabikovalo\nnevyslabikovať\nnevyslabikuj\nnevyslabikuje\nnevyslabikujem\nnevyslabikujeme\nnevyslabikuješ\nnevyslabikujete\nnevyslabikujme\nnevyslabikujte\nnevyslabikujú\nnevyslabikujúc\nnevysliedí\nnevysliedím\nnevysliedíme\nnevysliedíš\nnevysliedíte\nnevyslovenia\nnevyslovenie\nnevysloviteľne\nnevyslovovaný\nnevyslyš\nnevysoko\nnevyspatý\nnevyspelosť\nnevyspi\nnevyspime\nnevyspite\nnevysporiada\nnevysporiadaj\nnevysporiadajme\nnevysporiadajte\nnevysporiadajú\nnevysporiadajúc\nnevysporiadal\nnevysporiadala\nnevysporiadali\nnevysporiadalo\nnevysporiadam\nnevysporiadame\nnevysporiadania\nnevysporiadanie\nNevysporiadaním\nnevysporiadaš\nnevysporiadať\nnevysporiadate\nnevyspytateľne\nnevyspytateľnosť\nnevyspytateľný\nnevystavenie\nnevysteľ\nnevystrelenie\nnevystrelený\nnevystresoval\nnevystresovala\nnevystresovali\nnevystresovalo\nnevystresovať\nnevystresuj\nnevystresuje\nnevystresujem\nnevystresujeme\nnevystresuješ\nnevystresujete\nnevystresujme\nnevystresujte\nnevystresujú\nnevystresujúc\nnevystrežený\nnevystrúc\nnevystupňoval\nnevystupňovala\nnevystupňovali\nnevystupňovalo\nnevystupňovať\nnevystupňuj\nnevystupňuje\nnevystupňujem\nnevystupňujeme\nnevystupňuješ\nnevystupňujete\nnevystupňujme\nnevystupňujte\nnevystupňujú\nnevystupňujúc\nnevystužený\nnevystužoval\nnevystužovala\nnevystužovali\nnevystužovalo\nnevystužovať\nnevystužuj\nnevystužuje\nnevystužujem\nnevystužujeme\nnevystužuješ\nnevystužujete\nnevystužujme\nnevystužujte\nnevystužujú\nnevystužujúc\nnevysuň\nnevysunie\nnevysuniem\nnevysunieme\nnevysunieš\nnevysuniete\nnevysuňme\nnevysuňte\nnevysunul\nnevysunula\nnevysunuli\nnevysunulo\nnevysunutie\nnevýsuvne\nnevysväcoval\nnevysväcovala\nnevysväcovali\nnevysväcovalo\nnevysväcovať\nnevysväcuj\nnevysväcuje\nnevysväcujem\nnevysväcujeme\nnevysväcuješ\nnevysväcujete\nnevysväcujme\nnevysväcujte\nnevysväcujú\nnevysväcujúc\nnevysvetlenie\nnevysvetliteľne\nnevysvetluje\nnevysychajúceho\nnevysychajúcej\nnevysychajúci\nnevysychajúcim\nnevysypú\nnevysypúc\nnevyšanti\nnevyšantí\nnevyšantia\nnevyšantiac\nnevyšantil\nnevyšantila\nnevyšantili\nnevyšantilo\nnevyšantím\nnevyšantime\nnevyšantíme\nnevyšantíš\nnevyšantiť\nnevyšantite\nnevyšantíte\nnevyšetrený\nnevyšetrovaním\nnevyši\nnevyšib\nnevyšibaj\nnevyšibajme\nnevyšibajte\nnevyšibajúc\nnevyšibú\nnevyšibúc\nnevyšije\nnevyšijem\nnevyšijeme\nnevyšiješ\nnevyšijete\nnevyšijú\nnevyšijúc\nnevyšil\nnevyšila\nnevyšili\nnevyšilo\nnevyšime\nnevyšite\nnevyšker\nnevyškerte\nnevyšklb\nnevyšklbú\nnevyšklbúc\nnevyškrab\nnevyškrabáva\nnevyškrabávaj\nnevyškrabávajme\nnevyškrabávajte\nnevyškrabávajú\nnevyškrabávajúc\nnevyškrabával\nnevyškrabávala\nnevyškrabávali\nnevyškrabávalo\nnevyškrabávam\nnevyškrabávame\nnevyškrabávaš\nnevyškrabávať\nnevyškrabávate\nnevyškrabúva\nnevyškrabúvaj\nnevyškrabúvajme\nnevyškrabúvajte\nnevyškrabúvajú\nnevyškrabúvajúc\nnevyškrabúval\nnevyškrabúvala\nnevyškrabúvali\nnevyškrabúvalo\nnevyškrabúvam\nnevyškrabúvame\nnevyškrabúvaš\nnevyškrabúvať\nnevyškrabúvate\nnevyškriab\nnevyškriabal\nnevyškriabala\nnevyškriabali\nnevyškriabalo\nnevyškriabať\nnevyškriabe\nnevyškriabem\nnevyškriabeme\nnevyškriabeš\nnevyškriabete\nnevyškriabme\nnevyškriabte\nnevyškriabu\nnevyškriabuc\nnevyškvar\nnevyškvarte\nnevyšľahúva\nnevyšľahúvaj\nnevyšľahúvajme\nnevyšľahúvajte\nnevyšľahúvajú\nnevyšľahúvajúc\nnevyšľahúval\nnevyšľahúvala\nnevyšľahúvali\nnevyšľahúvalo\nnevyšľahúvam\nnevyšľahúvame\nnevyšľahúvaš\nnevyšľahúvať\nnevyšľahúvate\nnevyšľachti\nnevyšľachtime\nnevyšľachtite\nnevyšliapaný\nnevyšpľachoval\nnevyšpľachovala\nnevyšpľachovali\nnevyšpľachovalo\nnevyšpľachovať\nnevyšpľachuj\nnevyšpľachuje\nnevyšpľachujem\nnevyšpľachujeme\nnevyšpľachuješ\nnevyšpľachujete\nnevyšpľachujme\nnevyšpľachujte\nnevyšpľachujú\nnevyšpľachujúc\nnevyšplechoval\nnevyšplechovala\nnevyšplechovali\nnevyšplechovalo\nnevyšplechovať\nnevyšplechuj\nnevyšplechuje\nnevyšplechujem\nnevyšplechujeme\nnevyšplechuješ\nnevyšplechujete\nnevyšplechujme\nnevyšplechujte\nnevyšplechujú\nnevyšplechujúc\nnevyšponovali\nnevyštrajkovali\nnevyštrajkujú\nnevyštvi\nnevyštvime\nnevyštvite\nnevyšum\nnevyťaženia\nnevyťaženie\nnevytelefonované\nnevyteper\nnevyteperte\nnevyteš\nnevyteše\nnevytešem\nnevytešeme\nnevytešeš\nnevytešete\nnevytešme\nnevytešte\nnevytešú\nnevytešúc\nnevytiahnú\nnevytlačoval\nnevytĺcť\nnevytlč\nnevytlčie\nnevytlčiem\nnevytlčieme\nnevytlčieš\nnevytlčiete\nnevytlčme\nnevytlčte\nnevytlčú\nnevytlčúc\nnevytĺkava\nnevytĺkavaj\nnevytĺkavajme\nnevytĺkavajte\nnevytĺkavajú\nnevytĺkavajúc\nnevytĺkaval\nnevytĺkavala\nnevytĺkavali\nnevytĺkavalo\nnevytĺkavam\nnevytĺkavame\nnevytĺkavaš\nnevytĺkavať\nnevytĺkavate\nnevytĺkla\nnevytĺkli\nnevytĺklo\nnevytĺkol\nnevytresci\nnevytrescime\nnevytrescite\nnevytrešti\nnevytreštime\nnevytreštite\nnevytriedený\nnevytrp\nnevytrúc\nnevytuneloval\nnevytunelovala\nnevytunelovali\nnevytunelovalo\nnevytunelovať\nnevytuneluj\nnevytuneluje\nnevytunelujem\nnevytunelujeme\nnevytuneluješ\nnevytunelujete\nnevytunelujme\nnevytunelujte\nnevytunelujú\nnevytunelujúc\nnevytvor\nnevytvorenia\nnevytvorenie\nnevytvorením\nnevytvoreniu\nnevytvorte\nnevytvrď\nnevytvrdí\nnevytvrdia\nnevytvrdiac\nnevytvrdil\nnevytvrdila\nnevytvrdili\nnevytvrdilo\nnevytvrdím\nnevytvrdíme\nnevytvrdíš\nnevytvrdiť\nnevytvrdíte\nnevytvrďme\nnevytvrďte\nnevytvrdzoval\nnevytvrdzovala\nnevytvrdzovali\nnevytvrdzovalo\nnevytvrdzovať\nnevytvrdzuj\nnevytvrdzuje\nnevytvrdzujem\nnevytvrdzujeme\nnevytvrdzuješ\nnevytvrdzujete\nnevytvrdzujme\nnevytvrdzujte\nnevytvrdzujú\nnevytvrdzujúc\nnevyúčtovanie\nnevyúčtovávali\nnevyúdi\nnevyúdim\nnevyúdime\nnevyúdiš\nnevyúdite\nnevyužitia\nnevyužitie\nnevyužitím\nnevyužitiu\nnevyužívania\nnevyužívanie\nnevyužívaním\nnevyužívaniu\nnevyvádzanie\nnevyvar\nnevyvarte\nnevyvážanie\nnevyváženia\nnevyváženie\nnevyváženosť\nnevyváženosťami\nnevyváženosti\nnevyvážeností\nnevyváženosťou\nnevyvažoval\nnevyvažovala\nnevyvažovali\nnevyvažovalo\nnevyvažovať\nnevyvažuj\nnevyvažuje\nnevyvažujem\nnevyvažujeme\nnevyvažuješ\nnevyvažujete\nnevyvažujme\nnevyvažujte\nnevyvažujú\nnevyvažujúc\nnevyvenči\nnevyvenčime\nnevyvenčite\nnevyvešti\nnevyveštime\nnevyveštite\nnevyvezenie\nnevyviažuc\nnevyvíjanie\nnevyvinutosť\nnevyvlastni\nnevyvlastnime\nnevyvlastnite\nnevyvodenia\nnevyvodenie\nnevyvodením\nnevyvoľujem\nnevyvrátený\nnevyvrátiteľnosti\nnevyvrátiteľný\nnevyvrav\nnevyvraždi\nnevyvraždime\nnevyvraždite\nnevyvrtáva\nnevyvrtávaj\nnevyvrtávajme\nnevyvrtávajte\nnevyvrtávajú\nnevyvrtávajúc\nnevyvrtával\nnevyvrtávala\nnevyvrtávali\nnevyvrtávalo\nnevyvrtávam\nnevyvrtávame\nnevyvrtávaš\nnevyvrtávať\nnevyvrtávate\nnevyvrúc\nnevyvstáva\nnevyzdoboval\nnevyzdobovala\nnevyzdobovali\nnevyzdobovalo\nnevyzdobovať\nnevyzdobuj\nnevyzdobuje\nnevyzdobujem\nnevyzdobujeme\nnevyzdobuješ\nnevyzdobujete\nnevyzdobujme\nnevyzdobujte\nnevyzdobujú\nnevyzdobujúc\nnevyzdravej\nnevyzdravejme\nnevyzdravejte\nnevyzdravejú\nnevyzdravejúc\nnevyzdravel\nnevyzdravela\nnevyzdraveli\nnevyzdravelo\nnevyzdravie\nnevyzdraviem\nnevyzdravieme\nnevyzdravieš\nnevyzdravieť\nnevyzdraviete\nnevyzdvihnutia\nnevyzdvihnutie\nNevyznačením\nnevyznamenaný\nnevyzob\nnevyzradenia\nnevyzrúc\nnevyzvania\nnevyzveď\nnevyzvedá\nnevyzvedaj\nnevyzvedajme\nnevyzvedajte\nnevyzvedajú\nnevyzvedajúc\nnevyzvedám\nnevyzvedáme\nnevyzvedáš\nnevyzvedáte\nnevyzvi\nnevyzvime\nnevyzvite\nnevyžadovanie\nnevyžiadania\nnevyžiadanie\nnevyžitia\nnevyžitý\nnevyžobr\nnevyžobral\nnevyžobrala\nnevyžobrali\nnevyžobralo\nnevyžobre\nnevyžobrem\nnevyžobreme\nnevyžobreš\nnevyžobrete\nnevyžobrme\nnevyžobrte\nnevyžobrú\nnevyžobrúc\nnevzblčí\nnevzdelane\nnevzdelanec\nnevzdelanosť\nnevzdorujúci\nnevzíduc\nnevzkyp\nnevzmôž\nnevzmôžuc\nnevzňal\nnevzňala\nnevzňali\nnevzňalo\nnevzňať\nnevzním\nnevzníme\nnevznímem\nnevznímeme\nnevznímeš\nnevznímete\nnevznímme\nnevznímte\nnevznímu\nnevznímuc\nnevzopäl\nnevzopäla\nnevzopäli\nnevzopälo\nnevzoprúc\nnevzplaň\nnevzplanie\nnevzplaniem\nnevzplanieme\nnevzplanieš\nnevzplaniete\nnevzplaňme\nnevzplaňte\nnevzrasti\nnevzrastime\nnevzrastite\nnevženiete\nnew\nNew\nnewtona\nnewtonami\nnewton\nNewyorčan\nnewyorský\nnexus\nNexus\nnez\nnezaangažovaný\nnezababre\nnezababrem\nnezababreme\nnezababreš\nnezababrete\nnezababri\nnezababrime\nnezababrite\nnezababrú\nnezababrúc\nnezabáča\nnezabáčaj\nnezabáčajme\nnezabáčajte\nnezabáčajú\nnezabáčajúc\nnezabáčal\nnezabáčala\nnezabáčali\nnezabáčalo\nnezabáčam\nnezabáčame\nnezabáčaš\nnezabáčať\nnezabáčate\nnezabasla\nnezabasli\nnezabaslo\nnezabasne\nnezabasnem\nnezabasneme\nnezabasneš\nnezabasnete\nnezabasni\nnezabasnime\nnezabasnite\nnezabasnú\nnezabasnúc\nnezabasnúť\nnezabasol\nnezábavno\nnezabehnutá\nnezabehnutým\nnezabelej\nnezabelejme\nnezabelejte\nnezabelejú\nnezabelejúc\nnezaberajúci\nnezabezpečenia\nnezabezpečenie\nnezabezpečením\nnezabezpečeniu\nnezabezpečený\nnezabezpečovanie\nnezabľač\nnezabliká\nnezablikaj\nnezablikajme\nnezablikajte\nnezablikajú\nnezablikajúc\nnezablikal\nnezablikala\nnezablikali\nnezablikalo\nnezablikám\nnezablikáme\nnezablikáš\nnezablikať\nnezablikáte\nnezablyšť\nnezablyšťme\nnezablyšťte\nnezabodla\nnezabodli\nnezabodlo\nnezabodne\nnezabodnem\nnezabodneme\nnezabodneš\nnezabodnete\nnezabodni\nnezabodnime\nnezabodnite\nnezabodnú\nnezabodnúc\nnezabodnúť\nnezabodol\nnezabodoval\nnezabodovala\nnezabodovali\nnezabodovalo\nnezabodovať\nnezaboduj\nnezaboduje\nnezabodujem\nnezabodujeme\nnezaboduješ\nnezabodujete\nnezabodujme\nnezabodujte\nnezabodujú\nnezabodujúc\nnezabojoval\nnezabojovala\nnezabojovali\nnezabojovalo\nnezabojovať\nnezabojuj\nnezabojuje\nnezabojujem\nnezabojujeme\nnezabojuješ\nnezabojujete\nnezabojujme\nnezabojujte\nnezabojujú\nnezabojujúc\nnezaboľ\nnezaboľme\nnezaboľte\nnezabor\nnezaborte\nnezabrechaj\nnezabrechajme\nnezabrechajte\nnezabrechajúc\nnezabreš\nnezabreše\nnezabrešem\nnezabrešeme\nnezabrešeš\nnezabrešete\nnezabrešme\nnezabrešte\nnezabrešú\nnezabrešúc\nnezabrzdi\nnezabrzdime\nnezabrzdite\nnezabublajúc\nnezabuč\nnezabúdajúci\nnezabúdanie\nnezábudka\nnezábudkovo\nnezábudkový\nnezabudnuteľne\nnezabudnuteľnosť\nnezabuchnutý\nnezabzuč\nnezacáloval\nnezacálovala\nnezacálovali\nnezacálovalo\nnezacálovať\nnezacáluj\nnezacáluje\nnezacálujem\nnezacálujeme\nnezacáluješ\nnezacálujete\nnezacálujme\nnezacálujte\nnezacálujú\nnezacálujúc\nnezacelej\nnezacelejme\nnezacelejte\nnezacelejú\nnezacelejúc\nnezacelenie\nnezacer\nnezacerte\nnezacnej\nnezacnejme\nnezacnejte\nnezacnejú\nnezacnejúc\nnezacnel\nnezacnela\nnezacneli\nnezacnelo\nnezacnie\nnezacniem\nnezacnieme\nnezacnieš\nnezacnieť\nnezacniete\nnezacvendži\nnezacvendžime\nnezacvendžite\nnezačapovaný\nnezačatia\nnezačatie\nnezačatím\nnezačatiu\nnezačínania\nnezačínanie\nnezačistený\nnezačisti\nnezačistime\nnezačistite\nnezačlenená\nNezačlenené\nnezačleneného\nnezačlenenej\nnezačlenenia\nnezačlenenie\nnezačlenením\nnezačlenených\nnezačleňovania\nnezačrúc\nnezadanie\nnezadaptoval\nnezadaptovala\nnezadaptovali\nnezadaptovalo\nnezadaptovať\nnezadaptuj\nnezadaptuje\nnezadaptujem\nnezadaptujeme\nnezadaptuješ\nnezadaptujete\nnezadaptujme\nnezadaptujte\nnezadaptujú\nnezadaptujúc\nnezadateľný\nnezadaždi\nnezadaždime\nnezadaždite\nnezadebni\nnezadebnime\nnezadebnite\nnezadiera\nnezadieraj\nnezadierajme\nnezadierajte\nnezadierajú\nnezadierajúc\nnezadieral\nnezadierala\nnezadierali\nnezadieralo\nnezadieram\nnezadierame\nnezadieraš\nnezadierať\nnezadierate\nnezadlho\nnezadĺžia\nnezadĺžil\nnezadĺžila\nnezadĺžili\nnezadĺžime\nnezadlžovaní\nnezadlžovania\nnezadlžovanie\nnezadlžovaniu\nnezadokumentoval\nnezadokumentovala\nnezadokumentovali\nnezadokumentovalo\nnezadokumentovať\nnezadokumentuj\nnezadokumentuje\nnezadokumentujem\nnezadokumentujeme\nnezadokumentuješ\nnezadokumentujete\nnezadokumentujme\nnezadokumentujte\nnezadokumentujú\nnezadokumentujúc\nnezadrháva\nnezadrhávaj\nnezadrhávajme\nnezadrhávajte\nnezadrhávajú\nnezadrhávajúc\nnezadrhával\nnezadrhávala\nnezadrhávali\nnezadrhávalo\nnezadrhávam\nnezadrhávame\nnezadrhávaš\nnezadrhávať\nnezadrhávate\nnezadrhoval\nnezadrhovala\nnezadrhovali\nnezadrhovalo\nnezadrhovať\nnezadrhuj\nnezadrhuje\nnezadrhujem\nnezadrhujeme\nnezadrhuješ\nnezadrhujete\nnezadrhujme\nnezadrhujte\nnezadrhujú\nnezadrhujúc\nnezadriemaj\nnezadriemajme\nnezadriemajte\nnezadriemajúc\nnezadriemme\nnezadriemte\nnezadrichmú\nnezadrichmúc\nnezadrnč\nnezadrnči\nnezadrnčime\nnezadrnčite\nnezadrobči\nnezadrobčime\nnezadrobčite\nnezadrúc\nnezadržateľne\nnezadržateľnosť\nnezadudre\nnezadudrem\nnezadudreme\nnezadudreš\nnezadudrete\nnezadudri\nnezadudrime\nnezadudrite\nnezadudrú\nnezadudrúc\nnezaduň\nnezadupá\nnezadupaj\nnezadupajme\nnezadupajte\nnezadupajú\nnezadupajúc\nnezadupám\nnezadupáme\nnezadupáš\nnezadupáte\nnezadychč\nnezadychči\nnezadychčime\nnezadychčite\nnezaerdži\nnezaerdžime\nnezaerdžite\nnezafajči\nnezafajčime\nnezafajčite\nnezafarbi\nnezafarbime\nnezafarbite\nnezafič\nnezafňuká\nnezafňukaj\nnezafňukajme\nnezafňukajte\nnezafňukajú\nnezafňukajúc\nnezafňukal\nnezafňukala\nnezafňukali\nnezafňukalo\nnezafňukám\nnezafňukáme\nnezafňukáš\nnezafňukať\nnezafňukáte\nnezafuč\nnezafúľa\nnezafúľaj\nnezafúľajme\nnezafúľajte\nnezafúľajú\nnezafúľajúc\nnezafúľal\nnezafúľala\nnezafúľali\nnezafúľalo\nnezafúľam\nnezafúľame\nnezafúľaš\nnezafúľať\nnezafúľate\nnezafungoval\nnezafungovalo\nnezafunguje\nnezagombičkoval\nnezagombičkovala\nnezagombičkovali\nnezagombičkovalo\nnezagombičkovať\nnezagombičkuj\nnezagombičkuje\nnezagombičkujem\nnezagombičkujeme\nnezagombičkuješ\nnezagombičkujete\nnezagombičkujme\nnezagombičkujte\nnezagombičkujú\nnezagombičkujúc\nnezagombíkoval\nnezagombíkovala\nnezagombíkovali\nnezagombíkovalo\nnezagombíkovať\nnezagombíkuj\nnezagombíkuje\nnezagombíkujem\nnezagombíkujeme\nnezagombíkuješ\nnezagombíkujete\nnezagombíkujme\nnezagombíkujte\nnezagombíkujú\nnezagombíkujúc\nnezahádžu\nnezahádžuc\nnezahájenie\nnezahanbi\nnezahanbime\nnezahanbite\nnezahanboval\nnezahanbovala\nnezahanbovali\nnezahanbovalo\nnezahanbovať\nnezahanbuj\nnezahanbuje\nnezahanbujem\nnezahanbujeme\nnezahanbuješ\nnezahanbujete\nnezahanbujme\nnezahanbujte\nnezahanbujú\nnezahanbujúc\nnezahárajú\nnezahľaď\nnezahlasovali\nnezahlasovalo\nnezahlasuje\nnezahlasujem\nnezahlasujú\nnezahniezďoval\nnezahniezďovala\nnezahniezďovali\nnezahniezďovalo\nnezahniezďovať\nnezahniezďuj\nnezahniezďuje\nnezahniezďujem\nnezahniezďujeme\nnezahniezďuješ\nnezahniezďujete\nnezahniezďujme\nnezahniezďujte\nnezahniezďujú\nnezahniezďujúc\nnezahojiteľný\nnezahor\nnezahovor\nnezahovorte\nnezahrab\nnezahrč\nnezahrdús\nnezahrdúsi\nnezahrdúsia\nnezahrdúsiac\nnezahrdúsil\nnezahrdúsila\nnezahrdúsili\nnezahrdúsilo\nnezahrdúsim\nnezahrdúsime\nnezahrdúsiš\nnezahrdúsiť\nnezahrdúsite\nnezahrdúsme\nnezahrdúste\nnezahrej\nnezahreje\nnezahrejem\nnezahrejeme\nnezahreješ\nnezahrejete\nnezahrejme\nnezahrejte\nnezahrejú\nnezahrejúc\nnezahreš\nnezahreší\nnezahrešia\nnezahrešiac\nnezahrešil\nnezahrešila\nnezahrešili\nnezahrešilo\nnezahreším\nnezahrešíme\nnezahrešíš\nnezahrešiť\nnezahrešíte\nnezahrešme\nnezahrešte\nnezahrm\nnezahrmotajúc\nnezahrň\nnezahŕňanie\nnezahrnie\nnezahrniem\nnezahrnieme\nnezahrnieš\nnezahrniete\nnezahrňme\nnezahrňoval\nnezahrňovala\nnezahrňovali\nnezahrňovalo\nnezahrňovanie\nnezahrňovaním\nnezahrňovať\nnezahrňte\nnezahrňuj\nnezahrňuje\nnezahrňujem\nnezahrňujeme\nnezahrňuješ\nnezahrňujete\nnezahrňujme\nnezahrňujte\nnezahrňujú\nnezahrňujúc\nnezahrnutia\nnezahrnutie\nnezahrnutím\nnezahromži\nnezahromžime\nnezahromžite\nnezahuč\nnezahundre\nnezahundrem\nnezahundreme\nnezahundreš\nnezahundrete\nnezahundri\nnezahundrime\nnezahundrite\nnezahundrú\nnezahundrúc\nnezahusti\nnezahustime\nnezahustite\nnezahutoval\nnezahutovala\nnezahutovali\nnezahutovalo\nnezahutovať\nnezahutuj\nnezahutuje\nnezahutujem\nnezahutujeme\nnezahutuješ\nnezahutujete\nnezahutujme\nnezahutujte\nnezahutujú\nnezahutujúc\nnezahvižď\nnezahvižďme\nnezahvižďte\nnezahyň\nnezahynie\nnezahyniem\nnezahynieme\nnezahynieš\nnezahyniete\nnezahyňme\nnezahyňte\nnezachcejúc\nnezachechci\nnezachechcime\nnezachechcite\nnezachlošti\nnezachloštime\nnezachloštite\nnezachovania\nnezachovanie\nnezachrapč\nnezachrapči\nnezachrapčime\nnezachrapčite\nnezachrapšť\nnezachrapšťal\nnezachrapšťala\nnezachrapšťali\nnezachrapšťalo\nnezachrapšťať\nnezachrapšti\nnezachrapští\nnezachrapšťí\nnezachrapštia\nnezachrapšťia\nnezachrapštiac\nnezachrapšťiac\nnezachrapštím\nnezachrapšťím\nnezachrapštime\nnezachrapštíme\nnezachrapšťíme\nnezachrapštíš\nnezachrapšťíš\nnezachrapštite\nnezachrapštíte\nnezachrapšťíte\nnezachrapšťme\nnezachrapšťte\nnezachrč\nnezachrip\nnezachrochci\nnezachrochcime\nnezachrochcite\nnezachrupč\nnezachrupči\nnezachrupčime\nnezachrupčite\nnezachrupšť\nnezachrupšťme\nnezachrupšťte\nnezachveje\nnezachvejem\nnezachvejeme\nnezachveješ\nnezachvejete\nnezachytá\nnezachytaj\nnezachytajme\nnezachytajte\nnezachytajú\nnezachytajúc\nnezachytal\nnezachytala\nnezachytali\nnezachytalo\nnezachytám\nnezachytáme\nnezachytáš\nnezachytať\nnezachytáte\nNezachytenie\nnezachytiteľný\nnezaintegrovať\nnezainteresovanosť\nnezainteresovanosti\nnezaistenia\nnezaistenie\nNezaistením\nnezaistený\nnezaisti\nnezaistime\nnezaistite\nnezajač\nnezajachci\nnezajachcime\nnezajachcite\nnezajajč\nnezajajčal\nnezajajčala\nnezajajčali\nnezajajčalo\nnezajajčať\nnezajajči\nnezajajčí\nnezajajčia\nnezajajčiac\nnezajajčím\nnezajajčime\nnezajajčíme\nnezajajčíš\nnezajajčite\nnezajajčíte\nnezajajčme\nnezajajčte\nnezajazdi\nnezajazdime\nnezajazdite\nnezájdime\nnezajdú\nnezájduc\nnezajedá\nnezajedaj\nnezajedajme\nnezajedajte\nnezajedajú\nnezajedajúc\nnezajedám\nnezajedáme\nnezajedáš\nnezajedáte\nnezajojč\nnezajojči\nnezajojčime\nnezajojčite\nnezakasá\nnezakasaj\nnezakasajme\nnezakasajte\nnezakasajú\nnezakasajúc\nnezakasám\nnezakasáme\nnezakasáš\nnezakasáte\nnezakladajúce\nnezakladajúcou\nnezaklam\nnezaklamme\nnezaklamte\nnezaklokoc\nnezaklokoce\nnezaklokocem\nnezaklokoceme\nnezaklokoceš\nnezaklokocete\nnezaklokocme\nnezaklokocte\nnezaklokocú\nnezaklokocúc\nnezaklokotal\nnezaklokotala\nnezaklokotali\nnezaklokotalo\nnezaklokotať\nnezaknihovaný\nnezakníšu\nnezakníšuc\nnezakňuč\nnezakokci\nnezakokcime\nnezakokcite\nnezakolíšu\nnezakolíšuc\nnezakonč\nnezakončí\nnezakončia\nnezakončiac\nnezakončím\nnezakončíme\nnezakončíš\nnezakončíte\nnezakončme\nnezakončte\nnezákonnosť\nnezakotvi\nnezakotvime\nnezakotvite\nnezakrepči\nnezakrepčime\nnezakrepčite\nnezakrič\nnezakrivovaný\nnezakryto\nnezaktivovane\nnezaktivovaný\nnezakúpenie\nnezakúpeniu\nnezakutre\nnezakutrem\nnezakutreme\nnezakutreš\nnezakutrete\nnezakutri\nnezakutrime\nnezakutrite\nnezakutrú\nnezakutrúc\nnezakuviká\nnezakuvikaj\nnezakuvikajme\nnezakuvikajte\nnezakuvikajú\nnezakuvikajúc\nnezakuvikal\nnezakuvikala\nnezakuvikali\nnezakuvikalo\nnezakuvikám\nnezakuvikáme\nnezakuvikáš\nnezakuvikať\nnezakuvikáte\nnezakvič\nnezakýv\nnezakýve\nnezakývem\nnezakýveme\nnezakýveš\nnezakývete\nnezakývme\nnezakývte\nnezakývu\nnezakývuc\nnezalác\nnezaláce\nnezalácem\nnezaláceme\nnezaláceš\nnezalácete\nnezalácme\nnezalácte\nnezalácu\nnezalácuc\nnezaľadni\nnezaľadnime\nnezaľadnite\nnezalapá\nnezalapaj\nnezalapajme\nnezalapajte\nnezalapajú\nnezalapajúc\nnezalapal\nnezalapala\nnezalapali\nnezalapalo\nnezalapám\nnezalapáme\nnezalapáš\nnezalapať\nnezalapáte\nnezalesnený\nnezalesni\nnezalesnime\nnezalesnite\nnezaleť\nnezalomoz\nnezalomozí\nnezalomozia\nnezalomoziac\nnezalomozil\nnezalomozila\nnezalomozili\nnezalomozilo\nnezalomozím\nnezalomozíme\nnezalomozíš\nnezalomoziť\nnezalomozíte\nnezalomozme\nnezalomozte\nnezaloženia\nnezaloženie\nnezaloženiu\nnezaľudni\nnezaľudnime\nnezaľudnite\nnezaluhá\nnezaluhaj\nnezaluhajme\nnezaluhajte\nnezaluhajú\nnezaluhajúc\nnezaluhám\nnezaluháme\nnezaluháš\nnezaluháte\nnezaluž\nnezaluže\nnezalužem\nnezalužeme\nnezalužeš\nnezalužete\nnezalužme\nnezalužte\nnezalužú\nnezalužúc\nnezamaká\nnezamakaj\nnezamakajme\nnezamakajte\nnezamakajú\nnezamakajúc\nnezamakal\nnezamakala\nnezamakali\nnezamakalo\nnezamakám\nnezamakáme\nnezamakáš\nnezamakať\nnezamakáte\nnezamar\nnezamarte\nnezamaskuj\nnezamaskuje\nnezamaskujem\nnezamaskujeme\nnezamaskuješ\nnezamaskujete\nnezamaskujme\nnezamaskujte\nnezamaskujú\nnezamaskujúc\nnezamasti\nnezamastime\nnezamastite\nnezamazaný\nnezamdlejú\nnezamdlejúc\nnezameč\nnezámerne\nnezamestaným\nnezamestnane\nnezamestnávanie\nnezamínovať\nnezamixovať\nnezamknutého\nnezamknutú\nnezamlč\nnezamňauč\nnezamňauči\nnezamňaučime\nnezamňaučite\nnezamokri\nnezamokrí\nnezamokria\nnezamokriac\nnezamokril\nnezamokrila\nnezamokrili\nnezamokrilo\nnezamokrím\nnezamokrime\nnezamokríme\nnezamokríš\nnezamokriť\nnezamokrite\nnezamokríte\nnezamontovanie\nnezamor\nnezamorte\nnezamrauč\nnezamrauči\nnezamraučime\nnezamraučite\nnezamravč\nnezamravči\nnezamravčime\nnezamravčite\nnezamrnč\nnezamrnči\nnezamrnčime\nnezamrnčite\nnezamrúc\nnezamrz\nnezamŕzaním\nnezanalyzuje\nnezanalyzujeme\nnezanechávajúci\nnezanevrúc\nnezanor\nnezanorte\nnezaobaľujem\nnezaobíduc\nnezaoblač\nnezaoblačí\nnezaoblačia\nnezaoblačiac\nnezaoblačil\nnezaoblačila\nnezaoblačili\nnezaoblačilo\nnezaoblačím\nnezaoblačíme\nnezaoblačíš\nnezaoblačiť\nnezaoblačíte\nnezaoblačme\nnezaoblačte\nnezaobši\nnezaobšije\nnezaobšijem\nnezaobšijeme\nnezaobšiješ\nnezaobšijete\nnezaobšijú\nnezaobšijúc\nnezaobšil\nnezaobšila\nnezaobšili\nnezaobšilo\nnezaobšime\nnezaobšite\nnezaondi\nnezaondiac\nnezaondime\nnezaondite\nnezaopatrený\nnezapäl\nnezapäla\nnezapäli\nnezapälo\nnezapamätáva\nnezapamätávaj\nnezapamätávajme\nnezapamätávajte\nnezapamätávajú\nnezapamätávajúc\nnezapamätával\nnezapamätávala\nnezapamätávali\nnezapamätávalo\nnezapamätávam\nnezapamätávame\nnezapamätávaš\nnezapamätávať\nnezapamätávate\nnezapamätúva\nnezapamätúvaj\nnezapamätúvajme\nnezapamätúvajte\nnezapamätúvajú\nnezapamätúvajúc\nnezapamätúval\nnezapamätúvala\nnezapamätúvali\nnezapamätúvalo\nnezapamätúvam\nnezapamätúvame\nnezapamätúvaš\nnezapamätúvať\nnezapamätúvate\nnezapar\nnezapára\nnezapáraj\nnezapárajme\nnezapárajte\nnezapárajú\nnezapárajúc\nnezapáral\nnezapárala\nnezapárali\nnezapáralo\nnezapáram\nnezapárame\nnezapáraš\nnezapárať\nnezapárate\nnezaparte\nnezapažený\nnezapicháva\nnezapichávaj\nnezapichávajme\nnezapichávajte\nnezapichávajú\nnezapichávajúc\nnezapichával\nnezapichávala\nnezapichávali\nnezapichávalo\nnezapichávam\nnezapichávame\nnezapichávaš\nnezapichávať\nnezapichávate\nnezapínacie\nnezapiskla\nnezapiskli\nnezapisklo\nnezapiskne\nnezapisknem\nnezapiskneme\nnezapiskneš\nnezapisknete\nnezapiskni\nnezapisknime\nnezapisknite\nnezapisknú\nnezapisknúc\nnezapisknúť\nnezapiskol\nnezapisovaním\nnezapišť\nnezapišťme\nnezapišťte\nnezapíšu\nnezapíšuc\nnezaplačú\nnezaplačúc\nnezaplatene\nnezaplatiteľný\nnezaplavených\nnezaplešti\nnezapleštime\nnezapleštite\nnezapletanú\nnezapočína\nnezapočínaj\nnezapočínajme\nnezapočínajte\nnezapočínajú\nnezapočínajúc\nnezapočínal\nnezapočínala\nnezapočínali\nnezapočínalo\nnezapočínam\nnezapočíname\nnezapočínaš\nnezapočínať\nnezapočínate\nnezapočítania\nnezapočítanie\nnezapočítateľný\nnezapočítava\nnezapočítavam\nnezapočítavame\nnezapočítavanie\nnezapočítavaním\nnezapočítavaš\nnezapočítavate\nnezapojenia\nnezapojenie\nnezapoľoval\nnezapoľovala\nnezapoľovali\nnezapoľovalo\nnezapoľovať\nnezapoľuj\nnezapoľuje\nnezapoľujem\nnezapoľujeme\nnezapoľuješ\nnezapoľujete\nnezapoľujme\nnezapoľujte\nnezapoľujú\nnezapoľujúc\nnezapôsob\nnezapôsobí\nnezapôsobia\nnezapôsobiac\nnezapôsobil\nnezapôsobila\nnezapôsobili\nnezapôsobilo\nnezapôsobím\nnezapôsobíme\nnezapôsobíš\nnezapôsobiť\nnezapôsobíte\nnezapôsobme\nnezapôsobte\nnezapracovania\nnezaprašť\nnezaprašťme\nnezaprašťte\nnezapratajúc\nnezaprší\nnezaprúc\nnezapuč\nnezapustenie\nnezapusti\nnezapustime\nnezapustite\nnezarác\nnezaráce\nnezarácem\nnezaráceme\nnezaráceš\nnezarácete\nnezarácme\nnezarácte\nnezarácu\nnezarácuc\nnezaradenia\nnezaradenie\nnezaradením\nnezaradeniu\nnezaraďovanie\nnezarapči\nnezarapčime\nnezarapčite\nnezarasti\nnezarastime\nnezarastite\nnezarátania\nnezarátanie\nnezarátaním\nnezaregistrovania\nnezaregistrovanie\nnezaregistrovaním\nnezaregistrovaniu\nnezarehni\nnezarehnime\nnezarehnite\nnezaretušoval\nnezaretušovala\nnezaretušovali\nnezaretušovalo\nnezaretušovať\nnezaretušuj\nnezaretušuje\nnezaretušujem\nnezaretušujeme\nnezaretušuješ\nnezaretušujete\nnezaretušujme\nnezaretušujte\nnezaretušujú\nnezaretušujúc\nnezarev\nnezarevme\nnezarevte\nnezarezonoval\nnezarezonovala\nnezarezonovali\nnezarezonovalo\nnezarezonovať\nnezarezonuj\nnezarezonuje\nnezarezonujem\nnezarezonujeme\nnezarezonuješ\nnezarezonujete\nnezarezonujme\nnezarezonujte\nnezarezonujú\nnezarezonujúc\nnezariadený\nnezarinč\nnezarinči\nnezarinčime\nnezarinčite\nnezarúb\nnezarybni\nnezarybnime\nnezarybnite\nnezaryč\nnezasadanie\nnezasahovania\nnezasahovanie\nnezasahovaním\nnezaseď\nnezasiahnutie\nnezasiateho\nnezasiatej\nnezasip\nnezasipí\nnezasipia\nnezasipiac\nnezasipím\nnezasipíme\nnezasipíš\nnezasipíte\nnezasipme\nnezasipte\nnezaskuč\nnezasluhujúci\nnezaslúžene\nnezasmrď\nnezasnež\nnezasneží\nnezasnežia\nnezasnežiac\nnezasnežil\nnezasnežila\nnezasnežili\nnezasnežilo\nnezasnežím\nnezasnežíme\nnezasnežíš\nnezasnežiť\nnezasnežíte\nnezasnežme\nnezasnežoval\nnezasnežovala\nnezasnežovali\nnezasnežovalo\nnezasnežovať\nnezasnežte\nnezasnežuj\nnezasnežuje\nnezasnežujem\nnezasnežujeme\nnezasnežuješ\nnezasnežujete\nnezasnežujme\nnezasnežujte\nnezasnežujú\nnezasnežujúc\nnezasni\nnezasní\nnezasnia\nnezasniac\nnezasnil\nnezasnila\nnezasnili\nnezasnilo\nnezasním\nnezasnime\nnezasníme\nnezasníš\nnezasniť\nnezasnite\nnezasníte\nnezaspájkoval\nnezaspájkovala\nnezaspájkovali\nnezaspájkovalo\nnezaspájkovať\nnezaspájkuj\nnezaspájkuje\nnezaspájkujem\nnezaspájkujeme\nnezaspájkuješ\nnezaspájkujete\nnezaspájkujme\nnezaspájkujte\nnezaspájkujú\nnezaspájkujúc\nnezaspi\nnezaspime\nnezaspite\nnezastarej\nnezastarejme\nnezastarejte\nnezastarejú\nnezastarejúc\nnezastavaný\nnezastaviteľne\nnezastaviteľný\nnezastavovania\nnezasteľ\nnezasteň\nnezastene\nnezastenem\nnezasteneme\nnezasteneš\nnezastenete\nnezasteňme\nnezasteňte\nnezastenú\nnezastenúc\nnezastieraný\nnezastihnutý\nnezastoň\nnezastone\nnezastonem\nnezastoneme\nnezastoneš\nnezastonete\nnezastoňme\nnezastoňte\nnezastonú\nnezastonúc\nnezastrešený\nnezastrúc\nnezasuň\nnezasunie\nnezasuniem\nnezasunieme\nnezasunieš\nnezasuniete\nnezasuňme\nnezasuňte\nnezasunul\nnezasunula\nnezasunuli\nnezasunulo\nnezasunutie\nnezasvätene\nnezasvätenec\nnezasvišť\nnezasvišťme\nnezasvišťte\nnezasvrb\nnezasyč\nnezasyp\nnezasypal\nnezasypala\nnezasypali\nnezasypalo\nnezasypať\nnezasype\nnezasypem\nnezasypeme\nnezasypeš\nnezasypete\nnezasypme\nnezasypte\nnezasypú\nnezasypúc\nnezašelesti\nnezašelestime\nnezašelestite\nnezaši\nnezašifroval\nnezašifrovala\nnezašifrovali\nnezašifrovalo\nnezašifrovať\nnezašifruj\nnezašifruje\nnezašifrujem\nnezašifrujeme\nnezašifruješ\nnezašifrujete\nnezašifrujme\nnezašifrujte\nnezašifrujú\nnezašifrujúc\nnezašije\nnezašijem\nnezašijeme\nnezašiješ\nnezašijete\nnezašijú\nnezašijúc\nnezašil\nnezašila\nnezašili\nnezašilo\nnezašime\nnezašite\nnezašker\nnezaškerte\nnezašklb\nnezašklbú\nnezašklbúc\nnezaškrab\nnezaškreč\nnezaškriab\nnezaškrip\nnezaškrípaj\nnezaškrípajme\nnezaškrípajte\nnezaškrípajúc\nnezaškvrč\nnezaškvŕka\nnezaškvŕkaj\nnezaškvŕkajme\nnezaškvŕkajte\nnezaškvŕkajú\nnezaškvŕkajúc\nnezaškvŕkal\nnezaškvŕkala\nnezaškvŕkali\nnezaškvŕkalo\nnezaškvŕkam\nnezaškvŕkame\nnezaškvŕkaš\nnezaškvŕkať\nnezaškvŕkate\nnezašľapoval\nnezašľapovala\nnezašľapovali\nnezašľapovalo\nnezašľapovať\nnezašľapuj\nnezašľapuje\nnezašľapujem\nnezašľapujeme\nnezašľapuješ\nnezašľapujete\nnezašľapujme\nnezašľapujte\nnezašľapujú\nnezašľapujúc\nnezašliapava\nnezašliapavaj\nnezašliapavajme\nnezašliapavajte\nnezašliapavajú\nnezašliapavajúc\nnezašliapaval\nnezašliapavala\nnezašliapavali\nnezašliapavalo\nnezašliapavam\nnezašliapavame\nnezašliapavaš\nnezašliapavať\nnezašliapavate\nnezašomre\nnezašomrem\nnezašomreme\nnezašomreš\nnezašomrete\nnezašomri\nnezašomrime\nnezašomrite\nnezašomrú\nnezašomrúc\nnezašteboc\nnezašteboce\nnezaštebocem\nnezašteboceme\nnezašteboceš\nnezaštebocete\nnezaštebocme\nnezaštebocte\nnezaštebocú\nnezaštebocúc\nnezaštíti\nnezaštiťuje\nnezašuchor\nnezašuchorte\nnezašum\nnezašušť\nnezašušti\nnezašuští\nnezašuštia\nnezašuštiac\nnezašuštím\nnezašuštime\nnezašuštíme\nnezašuštíš\nnezašuštite\nnezašuštíte\nnezašušťme\nnezašušťte\nnezašvitor\nnezašvitorte\nnezatajený\nnezatápali\nnezatavený\nnezaťaženia\nnezaťaženie\nnezaťažený\nnezaťažovania\nnezatemni\nnezatemnime\nnezatemnite\nnezatepli\nnezateplí\nnezateplia\nnezatepliac\nnezateplil\nnezateplila\nnezateplili\nnezateplilo\nnezateplím\nnezateplime\nnezateplíme\nnezateplíš\nnezatepliť\nnezateplite\nnezateplíte\nnezatepľoval\nnezatepľovala\nnezatepľovali\nnezatepľovalo\nnezatepľovať\nnezatepľuj\nnezatepľuje\nnezatepľujem\nnezatepľujeme\nnezatepľuješ\nnezatepľujete\nnezatepľujme\nnezatepľujte\nnezatepľujú\nnezatepľujúc\nnezatieni\nnezatienim\nnezatienime\nnezatieniš\nnezatienite\nnezatícha\nnezatíchaj\nnezatíchajme\nnezatíchajte\nnezatíchajú\nnezatíchajúc\nnezatíchal\nnezatíchala\nnezatíchali\nnezatíchalo\nnezatícham\nnezatíchame\nnezatíchaš\nnezatíchať\nnezatíchate\nnezatĺkava\nnezatĺkavaj\nnezatĺkavajme\nnezatĺkavajte\nnezatĺkavajú\nnezatĺkavajúc\nnezatĺkaval\nnezatĺkavala\nnezatĺkavali\nnezatĺkavalo\nnezatĺkavam\nnezatĺkavame\nnezatĺkavaš\nnezatĺkavať\nnezatĺkavate\nnezatmej\nnezatmejme\nnezatmejte\nnezatmejú\nnezatmejúc\nnezatmi\nnezatmie\nnezatmiem\nnezatmieme\nnezatmieš\nnezatmiete\nnezatmime\nnezatmite\nnezatrbliec\nnezatrbliece\nnezatrbliecem\nnezatrblieceme\nnezatrblieceš\nnezatrbliecete\nnezatrbliecme\nnezatrbliecte\nnezatrbliecu\nnezatrbliecuc\nnezatrblieta\nnezatrblietaj\nnezatrblietajme\nnezatrblietajte\nnezatrblietajú\nnezatrblietajúc\nnezatrblietal\nnezatrblietala\nnezatrblietali\nnezatrblietalo\nnezatrblietam\nnezatrblietame\nnezatrblietaš\nnezatrblietať\nnezatrblietate\nnezatrénoval\nnezatrénovala\nnezatrénovali\nnezatrénovalo\nnezatrénovať\nnezatrénuj\nnezatrénuje\nnezatrénujem\nnezatrénujeme\nnezatrénuješ\nnezatrénujete\nnezatrénujme\nnezatrénujte\nnezatrénujú\nnezatrénujúc\nnezatrúc\nnezatúžený\nnezatváranie\nnezatvorenie\nnezatvorí\nnezatvorím\nnezatvoríme\nnezatvoríš\nnezatvoríte\nnezatvrdnutý\nnezaučený\nnezaúčtovania\nnezaúčtovanie\nnezaúčtovaním\nnezaúčtovaniu\nnezaúdi\nnezaúdim\nnezaúdime\nnezaúdiš\nnezaúdite\nnezaujate\nnezaujatie\nnezaujato\nnezaujatosť\nnezáujem\nnezaujímavosť\nnezaumieňoval\nnezaumieňovala\nnezaumieňovali\nnezaumieňovalo\nnezaumieňovať\nnezaumieňuj\nnezaumieňuje\nnezaumieňujem\nnezaumieňujeme\nnezaumieňuješ\nnezaumieňujete\nnezaumieňujme\nnezaumieňujte\nnezaumieňujú\nnezaumieňujúc\nnezávadne\nnezávadnosť\nnezávadný\nnezavádzanie\nnezavaň\nnezavanie\nnezavaniem\nnezavanieme\nnezavanieš\nnezavaniete\nnezavaňme\nnezavaňte\nnezavar\nnezavarte\nnezáväzne\nnezavdať\nnezavedenia\nnezavedenie\nnezavedením\nnezaveľa\nnezaver\nnezaverte\nnezaviažuc\nnezáviď\nNezavidím\nnezavije\nnezavijem\nnezavijeme\nnezaviješ\nnezavijete\nnezavijú\nnezavijúc\nnezavíňa\nnezavíňaj\nnezavíňajme\nnezavíňajte\nnezavíňajú\nnezavíňajúc\nnezavíňal\nnezavíňala\nnezavíňali\nnezavíňalo\nnezavíňam\nnezavíňame\nnezavíňaš\nnezavíňať\nnezavíňate\nnezavinene\nnezavírusoval\nnezavírusovala\nnezavírusovali\nnezavírusovalo\nnezavírusovať\nnezavírusuj\nnezavírusuje\nnezavírusujem\nnezavírusujeme\nnezavírusuješ\nnezavírusujete\nnezavírusujme\nnezavírusujte\nnezavírusujú\nnezavírusujúc\nnezávis\nnezávisle\nnezávislejšej\nnezávislejší\nnezávislejšia\nnezávislejšie\nnezávislejšieho\nnezávislejšiemu\nnezávislejších\nnezávislejším\nnezávislejšími\nnezávislejšiu\nnezávislejšom\nnezávislejšou\nnezávislo\nnezavlažený\nnezávoď\nnezávodí\nnezávodia\nnezávodiac\nnezávodil\nnezávodila\nnezávodili\nnezávodilo\nnezávodím\nnezávodíme\nnezávodíš\nnezávodiť\nnezávodíte\nnezávoďme\nnezavodnený\nnezavodni\nnezavodnime\nnezavodnite\nnezávoďte\nnezavráti\nnezavrátim\nnezavrátime\nnezavrátiš\nnezavrátite\nnezavrav\nnezavraždi\nnezavraždime\nnezavraždite\nnezavrč\nnezavrešť\nnezavrešťme\nnezavrešťte\nnezavŕšenie\nnezavrť\nnezavrúc\nnezavržď\nnezavržďme\nnezavržďte\nnezavzdušni\nnezavzdušní\nnezavzdušnia\nnezavzdušniac\nnezavzdušnil\nnezavzdušnila\nnezavzdušnili\nnezavzdušnilo\nnezavzdušním\nnezavzdušnime\nnezavzdušníme\nnezavzdušníš\nnezavzdušniť\nnezavzdušnite\nnezavzdušníte\nnezavzdušňoval\nnezavzdušňovala\nnezavzdušňovali\nnezavzdušňovalo\nnezavzdušňovať\nnezavzdušňuj\nnezavzdušňuje\nnezavzdušňujem\nnezavzdušňujeme\nnezavzdušňuješ\nnezavzdušňujete\nnezavzdušňujme\nnezavzdušňujte\nnezavzdušňujú\nnezavzdušňujúc\nnezavzdychá\nnezavzdychaj\nnezavzdychajme\nnezavzdychajte\nnezavzdychajú\nnezavzdychajúc\nnezavzdychal\nnezavzdychala\nnezavzdychali\nnezavzdychalo\nnezavzdychám\nnezavzdycháme\nnezavzdycháš\nnezavzdychať\nnezavzdycháte\nnezazátkoval\nnezazátkovala\nnezazátkovali\nnezazátkovalo\nnezazátkovaný\nnezazátkovať\nnezazátkuj\nnezazátkuje\nnezazátkujem\nnezazátkujeme\nnezazátkuješ\nnezazátkujete\nnezazátkujme\nnezazátkujte\nnezazátkujú\nnezazátkujúc\nnezazdá\nnezazdaj\nnezazdajme\nnezazdajte\nnezazdajú\nnezazdajúc\nnezazdal\nnezazdala\nnezazdali\nnezazdalo\nnezazdám\nnezazdáme\nnezazdáš\nnezazdať\nnezazdáte\nnezazob\nnezazrúc\nnezazver\nnezazverte\nnezazvuč\nnezazvučal\nnezazvučala\nnezazvučali\nnezazvučalo\nnezazvučať\nnezazvučí\nnezazvučia\nnezazvučiac\nnezazvučím\nnezazvučíme\nnezazvučíš\nnezazvučíte\nnezazvučme\nnezazvučte\nnezáživne\nnezáživnosť\nnezbabre\nnezbabrem\nnezbabreme\nnezbabreš\nnezbabrete\nnezbabri\nnezbabrime\nnezbabrite\nnezbabrú\nnezbabrúc\nnezbadane\nnezbadaný\nnezbadateľne\nnezbadateľný\nnezbavenia\nnezbavenie\nnezbeda\nnezbediť\nnezbedne\nnezbednica\nnezbednícky\nnezbedníctvach\nnezbedníctvam\nnezbedníctvo\nnezbedníčiť\nnezbedník\nnezbednosť\nnezbedný\nnezbelej\nnezbelejme\nnezbelejte\nnezbelejú\nnezbelejúc\nnezbilancuje\nnezbilancujeme\nnezblbneme\nnezblbnú\nnezblč\nnezbodla\nnezbodli\nnezbodlo\nnezbodne\nnezbodnem\nnezbodneme\nnezbodneš\nnezbodnete\nnezbodni\nnezbodnime\nnezbodnite\nnezbodnú\nnezbodnúc\nnezbodnúť\nnezbodol\nnezbor\nnezbožšti\nnezbožštime\nnezbožštite\nnezbrzdí\nnezbrzdil\nnezbrzdila\nnezbrzdili\nnezbrzdilo\nnezbystrej\nnezbystrejme\nnezbystrejte\nnezbystrejú\nnezbystrejúc\nnezbytne\nnezbytností\nnezbytný\nnezdanenia\nnezdanenie\nnezdaneniu\nnezdaňovania\nnezdaňovanie\nnezdaňovaniu\nnezdaňovaný\nnezdar\nnezdarene\nnezdarený\nnezdarí\nnezdarme\nnezdarník\nnezdarte\nnezdefrauduje\nnezdelil\nnezdemoloval\nnezdemolovala\nnezdemolovali\nnezdemolovalo\nnezdemolovať\nnezdemoluj\nnezdemoluje\nnezdemolujem\nnezdemolujeme\nnezdemoluješ\nnezdemolujete\nnezdemolujme\nnezdemolujte\nnezdemolujú\nnezdemolujúc\nnezdevalvuje\nnezdevastovaný\nnezdôb\nnezdoba\nnezdôd\nnezdolateľne\nnezdolne\nnezdolnosť\nnezdomácnieva\nnezdomácnievaj\nnezdomácnievajme\nnezdomácnievajte\nnezdomácnievajú\nnezdomácnievajúc\nnezdomácnieval\nnezdomácnievala\nnezdomácnievali\nnezdomácnievalo\nnezdomácnievam\nnezdomácnievame\nnezdomácnievaš\nnezdomácnievať\nnezdomácnievate\nnezdomácňuj\nnezdomácňuje\nnezdomácňujem\nnezdomácňujeme\nnezdomácňuješ\nnezdomácňujete\nnezdomácňujme\nnezdomácňujte\nnezdomácňujú\nnezdomácňujúc\nnezdôraznený\nnezdôver\nnezdôverte\nnezdôveryhodni\nnezdôveryhodní\nnezdôveryhodnia\nnezdôveryhodniac\nnezdôveryhodnil\nnezdôveryhodnila\nnezdôveryhodnili\nnezdôveryhodnilo\nnezdôveryhodním\nnezdôveryhodnime\nnezdôveryhodníme\nnezdôveryhodníš\nnezdôveryhodniť\nnezdôveryhodnite\nnezdôveryhodníte\nnezdôveryhodňoval\nnezdôveryhodňovala\nnezdôveryhodňovali\nnezdôveryhodňovalo\nnezdôveryhodňovať\nnezdôveryhodňuj\nnezdôveryhodňuje\nnezdôveryhodňujem\nnezdôveryhodňujeme\nnezdôveryhodňuješ\nnezdôveryhodňujete\nnezdôveryhodňujme\nnezdôveryhodňujte\nnezdôveryhodňujú\nnezdôveryhodňujúc\nnezdôvodnený\nnezdôvodni\nnezdôvodnime\nnezdôvodnite\nnezdravistý\nnezdravo\nnezdravším\nnezdraženie\nnezdražený\nnezdrsni\nnezdrsnime\nnezdrsnite\nnezdružstevni\nnezdružstevnime\nnezdružstevnite\nnezdrv\nnezdrví\nnezdrvia\nnezdrviac\nnezdrvil\nnezdrvila\nnezdrvili\nnezdrvilo\nnezdrvím\nnezdrvíme\nnezdrvíš\nnezdrviť\nnezdrvíte\nnezdrvme\nnezdrvte\nnezdržanlivosti\nnezdržiavanie\nnezduchaplni\nnezduchaplní\nnezduchaplnia\nnezduchaplniac\nnezduchaplnil\nnezduchaplnila\nnezduchaplnili\nnezduchaplnilo\nnezduchaplním\nnezduchaplnime\nnezduchaplníme\nnezduchaplníš\nnezduchaplniť\nnezduchaplnite\nnezduchaplníte\nnezdúchla\nnezdúchli\nnezdúchlo\nnezdúchne\nnezdúchnem\nnezdúchneme\nnezdúchneš\nnezdúchnete\nnezdúchni\nnezdúchnime\nnezdúchnite\nnezdúchnu\nnezdúchnuc\nnezdúchnuť\nnezdúchol\nnezduchovnej\nnezduchovnejme\nnezduchovnejte\nnezduchovnejú\nnezduchovnejúc\nnezduchovnel\nnezduchovnela\nnezduchovneli\nnezduchovnelo\nnezduchovnie\nnezduchovniem\nnezduchovnieme\nnezduchovnieš\nnezduchovnieť\nnezduchovniete\nnezdupotaj\nnezdupotajme\nnezdupotajte\nnezdupotajúc\nnezdur\nnezdurte\nnezdvorilec\nnezdvorilejšej\nnezdvorilejší\nnezdvorilejšia\nnezdvorilejšie\nnezdvorilejšieho\nnezdvorilejšiemu\nnezdvorilejších\nnezdvorilejším\nnezdvorilejšími\nnezdvorilejšiu\nnezdvorilejšom\nnezdvorilejšou\nnezdvorilo\nnezdvorilosť\nnezeditoval\nnezeditovala\nnezeditovali\nnezeditovalo\nnezeditovať\nnezedituj\nnezedituje\nnezeditujem\nnezeditujeme\nnezedituješ\nnezeditujete\nnezeditujme\nnezeditujte\nnezeditujú\nnezeditujúc\nnezelektrizoval\nnezelektrizovala\nnezelektrizovali\nnezelektrizovalo\nnezelektrizovať\nnezelektrizuj\nnezelektrizuje\nnezelektrizujem\nnezelektrizujeme\nnezelektrizuješ\nnezelektrizujete\nnezelektrizujme\nnezelektrizujte\nnezelektrizujú\nnezelektrizujúc\nnezev\nnezextenzívňoval\nnezextenzívňovala\nnezextenzívňovali\nnezextenzívňovalo\nnezextenzívňovať\nnezextenzívňuj\nnezextenzívňuje\nnezextenzívňujem\nnezextenzívňujeme\nnezextenzívňuješ\nnezextenzívňujete\nnezextenzívňujme\nnezextenzívňujte\nnezextenzívňujú\nnezextenzívňujúc\nnezgagotajúc\nnezhab\nnezhasiteľný\nnezhliadli\nnezhliadol\nnezhmotni\nnezhmotnime\nnezhmotnite\nnezhodnosť\nnezhodnotený\nnezhodnoverni\nnezhodnoverní\nnezhodnovernia\nnezhodnoverniac\nnezhodnovernil\nnezhodnovernila\nnezhodnovernili\nnezhodnovernilo\nnezhodnoverním\nnezhodnovernime\nnezhodnoverníme\nnezhodnoverníš\nnezhodnoverniť\nnezhodnovernite\nnezhodnoverníte\nnezhodnoverňoval\nnezhodnoverňovala\nnezhodnoverňovali\nnezhodnoverňovalo\nnezhodnoverňovať\nnezhodnoverňuj\nnezhodnoverňuje\nnezhodnoverňujem\nnezhodnoverňujeme\nnezhodnoverňuješ\nnezhodnoverňujete\nnezhodnoverňujme\nnezhodnoverňujte\nnezhodnoverňujú\nnezhodnoverňujúc\nnezhojený\nnezhojiteľný\nnezhor\nnezhoršenie\nnezhorši\nnezhoršime\nnezhoršite\nnezhoršovania\nnezhoršovanie\nnezhosti\nnezhostime\nnezhostite\nnezhosťoval\nnezhosťovala\nnezhosťovali\nnezhosťovalo\nnezhosťovať\nnezhosťuj\nnezhosťuje\nnezhosťujem\nnezhosťujeme\nnezhosťuješ\nnezhosťujete\nnezhosťujme\nnezhosťujte\nnezhosťujú\nnezhosťujúc\nnezhrá\nnezhrab\nnezhraj\nnezhrajme\nnezhrajte\nnezhrajú\nnezhrajúc\nnezhral\nnezhrala\nnezhrali\nnezhralo\nnezhrám\nnezhráme\nnezhráš\nnezhrať\nnezhráte\nnezhráva\nnezhrávaj\nnezhrávajme\nnezhrávajte\nnezhrávajú\nnezhrávajúc\nnezhrával\nnezhrávala\nnezhrávali\nnezhrávalo\nnezhrávam\nnezhrávame\nnezhrávaš\nnezhrávať\nnezhrávate\nnezhrkotaj\nnezhrkotajme\nnezhrkotajte\nnezhrkotajúc\nnezhrm\nnezhrmotaj\nnezhrmotajme\nnezhrmotajte\nnezhrmotajúc\nnezhrň\nnezhrnie\nnezhrniem\nnezhrnieme\nnezhrnieš\nnezhrniete\nnezhrňme\nnezhrňte\nnezhromaždi\nnezhromaždime\nnezhromaždite\nnezhudobni\nnezhudobnime\nnezhudobnite\nnezhustenie\nnezhusti\nnezhustime\nnezhustite\nnezhutni\nnezhutnime\nnezhutnite\nnezhúžve\nnezhúžvem\nnezhúžveme\nnezhúžveš\nnezhúžvete\nnezhúžvi\nnezhúžvime\nnezhúžvite\nnezhúžvu\nnezhúžvuc\nnezhýčka\nnezhýčkaj\nnezhýčkajme\nnezhýčkajte\nnezhýčkajú\nnezhýčkajúc\nnezhýčkal\nnezhýčkala\nnezhýčkali\nnezhýčkalo\nnezhýčkam\nnezhýčkame\nnezhýčkaš\nnezhýčkať\nnezhýčkate\nnezhyň\nnezhynie\nnezhyniem\nnezhynieme\nnezhynieš\nnezhyniete\nnezhyňme\nnezhyňte\nneziabli\nneziapli\nnezíduc\nnezintegroval\nnezintegrovať\nnezisk\nnezistenia\nnezisti\nnezistime\nnezistite\nnezištnosť\nnezjač\nnezjasni\nnezjasnieva\nnezjasnievaj\nnezjasnievajme\nnezjasnievajte\nnezjasnievajú\nnezjasnievajúc\nnezjasnieval\nnezjasnievala\nnezjasnievali\nnezjasnievalo\nnezjasnievam\nnezjasnievame\nnezjasnievaš\nnezjasnievať\nnezjasnievate\nnezjasnime\nnezjasnite\nnezjazdnosť\nnezjazvený\nnezjazvi\nnezjazvime\nnezjazvite\nnezjedá\nnezjedaj\nnezjedajme\nnezjedajte\nnezjedajú\nnezjedajúc\nnezjedám\nnezjedáme\nnezjedáš\nnezjedáte\nnezjednotením\nnezjemni\nnezjemnime\nnezjemnite\nnezjemnňoval\nnezjemnňovala\nnezjemnňovali\nnezjemnňovalo\nnezjemnňovať\nnezjemnňuj\nnezjemnňuje\nnezjemnňujem\nnezjemnňujeme\nnezjemnňuješ\nnezjemnňujete\nnezjemnňujme\nnezjemnňujte\nnezjemnňujú\nnezjemnňujúc\nnezjojč\nnezjojči\nnezjojčime\nnezjojčite\nnezlác\nnezláce\nnezlácem\nnezláceme\nnezláceš\nnezlácete\nnezlácme\nnezlacni\nnezlacnime\nnezlacnite\nnezlácte\nnezlácu\nnezlácuc\nnezladenia\nnezladenie\nnezľadovej\nnezľadovejme\nnezľadovejte\nnezľadovejú\nnezľadovejúc\nnezľadovel\nnezľadovela\nnezľadoveli\nnezľadovelo\nnezľadovie\nnezľadoviem\nnezľadovieme\nnezľadovieš\nnezľadovieť\nnezľadoviete\nnezľahči\nnezľahčime\nnezľahčite\nnezlám\nnezláma\nnezlámaj\nnezlámajme\nnezlámajte\nnezlámajú\nnezlámajúc\nnezlámam\nnezlámame\nnezlámaš\nnezlámate\nnezlámme\nnezlámte\nnezle\nnezlepšenie\nnezlepšením\nnezlepši\nnezlepšime\nnezlepšite\nnezlepšovania\nnezlepšovanie\nnezleť\nnezlietava\nnezlietavaj\nnezlietavajme\nnezlietavajte\nnezlietavajú\nnezlietavajúc\nnezlietaval\nnezlietavala\nnezlietavali\nnezlietavalo\nnezlietavam\nnezlietavame\nnezlietavaš\nnezlietavať\nnezlietavate\nnezlikvidovania\nnezlomne\nnezlomnosť\nnezlomný\nnezlosti\nnezlostime\nnezlostite\nnezloženia\nnezloženie\nNezlučiteľne\nnezlučiteľnosť\nnezlúčiteľný\nnezľudštej\nnezľudštejme\nnezľudštejte\nnezľudštejú\nnezľudštejúc\nnezľudštel\nnezľudštela\nnezľudšteli\nnezľudštelo\nnezľudšti\nnezľudštie\nnezľudštiem\nnezľudštieme\nnezľudštieš\nnezľudštieť\nnezľudštiete\nnezľudštime\nnezľudštite\nnezlyhajúcom\nnezlyhávajúci\nnezlyhávania\nnezmagnetizovaný\nnezmäkči\nnezmäkčime\nnezmäkčite\nnezmäkčovaní\nnezmäkčovanie\nnezmanipulovaný\nnezmara\nNezmara\nnezmar\nnezmarný\nNezmarova\nnezmarovi\nNezmarovi\nnezmarte\nnezmasti\nnezmastime\nnezmastite\nnezmazateľne\nnezmeč\nnezmedzinárodni\nnezmedzinárodnime\nnezmedzinárodnite\nnezmenene\nnezmenenia\nnezmenenie\nnezmeniteľne\nnezmeniteľnosť\nnezmenný\nnezmenši\nnezmenšime\nnezmenšite\nnezmerne\nnezmernosť\nnezmerný\nnezmesti\nnezmestime\nnezmestite\nnezmestný\nnezmieriteľne\nnezmieriteľnosť\nnezmierlivo\nnezmies\nnezmiesi\nnezmiesia\nnezmiesiac\nnezmiesil\nnezmiesila\nnezmiesili\nnezmiesilo\nnezmiesim\nnezmiesime\nnezmiesiš\nnezmiesiť\nnezmiesite\nnezmiesme\nnezmieste\nnezmnohonábňoval\nnezmnohonábňovala\nnezmnohonábňovali\nnezmnohonábňovalo\nnezmnohonábňovať\nnezmnohonábňuj\nnezmnohonábňuje\nnezmnohonábňujem\nnezmnohonábňujeme\nnezmnohonábňuješ\nnezmnohonábňujete\nnezmnohonábňujme\nnezmnohonábňujte\nnezmnohonábňujú\nnezmnohonábňujúc\nnezmnohonáboval\nnezmnohonábovala\nnezmnohonábovali\nnezmnohonábovalo\nnezmnohonábovať\nnezmnohonábuj\nnezmnohonábuje\nnezmnohonábujem\nnezmnohonábujeme\nnezmnohonábuješ\nnezmnohonábujete\nnezmnohonábujme\nnezmnohonábujte\nnezmnohonábujú\nnezmnohonábujúc\nnezmnohonásobni\nnezmnohonásobnime\nnezmnohonásobnite\nnezmocni\nnezmocnime\nnezmocnite\nnezmoč\nnezmočí\nnezmočia\nnezmočiac\nnezmočil\nnezmočila\nnezmočili\nnezmočilo\nnezmočím\nnezmočíme\nnezmočíš\nnezmočiť\nnezmočíte\nnezmočme\nnezmočte\nnezmodernizovaný\nnezmodrej\nnezmodrejme\nnezmodrejte\nnezmodrejú\nnezmodrejúc\nnezmonitoroval\nnezmonitorovala\nnezmonitorovali\nnezmonitorovalo\nnezmonitorovať\nnezmonitoruj\nnezmonitoruje\nnezmonitorujem\nnezmonitorujeme\nnezmonitoruješ\nnezmonitorujete\nnezmonitorujme\nnezmonitorujte\nnezmonitorujú\nnezmonitorujúc\nnezmontovaný\nnezmor\nnezmorte\nnezmôž\nnezmôžuc\nnezmrašti\nnezmraštime\nnezmraštite\nnezmravni\nnezmravnime\nnezmravnite\nnezmršti\nnezmrštime\nnezmrštite\nnezmršťujúci\nnezmúdrej\nnezmúdrejme\nnezmúdrejte\nnezmúdrejú\nnezmúdrejúc\nnezmyselne\nnezmyselnosť\nnezmyslený\nneznaboh\nneznabožský\nneznabožstvo\nneznačkovaný\nneznajboh\nneznajbožský\nneznajbožstvo\nneznalosť\nneznámach\nneznámam\nneznámejšej\nneznámejší\nneznámejšia\nneznámejšie\nneznámejšieho\nneznámejšiemu\nneznámejších\nneznámejším\nNeznámejším\nneznámejšími\nneznámejšiu\nneznámejšom\nneznámejšou\nneznámkoval\nneznámkovala\nneznámkovali\nneznámkovalo\nneznámkovať\nneznámkuj\nneznámkuje\nneznámkujem\nneznámkujeme\nneznámkuješ\nneznámkujete\nneznámkujme\nneznámkujte\nneznámkujú\nneznámkujúc\nneznámo\nneznámosť\nneznámosti\nneznane\nneznaný\nneznárodni\nneznárodnime\nneznárodnite\nneznásilni\nneznásilnime\nneznásilnite\nneznášajúci\nneznášanlivo\nneznášanlivosť\nneznavme\nneznázorni\nneznázornime\nneznázornite\nneznečisti\nneznečistime\nneznečistite\nneznedeľnieva\nneznedeľnievaj\nneznedeľnievajme\nneznedeľnievajte\nneznedeľnievajú\nneznedeľnievajúc\nneznedeľnieval\nneznedeľnievala\nneznedeľnievali\nneznedeľnievalo\nneznedeľnievam\nneznedeľnievame\nneznedeľnievaš\nneznedeľnievať\nneznedeľnievate\nneznefunkčni\nneznefunkční\nneznefunkčnia\nneznefunkčniac\nneznefunkčnil\nneznefunkčnila\nneznefunkčnili\nneznefunkčnilo\nneznefunkčním\nneznefunkčnime\nneznefunkčníme\nneznefunkčníš\nneznefunkčniť\nneznefunkčnite\nneznefunkčníte\nneznefunkčňoval\nneznefunkčňovala\nneznefunkčňovali\nneznefunkčňovalo\nneznefunkčňovať\nneznefunkčňuj\nneznefunkčňuje\nneznefunkčňujem\nneznefunkčňujeme\nneznefunkčňuješ\nneznefunkčňujete\nneznefunkčňujme\nneznefunkčňujte\nneznefunkčňujú\nneznefunkčňujúc\nneznehodnotený\nneznehybni\nneznehybnime\nneznehybnite\nneznechá\nneznechaj\nneznechajme\nneznechajte\nneznechajú\nneznechajúc\nneznechal\nneznechala\nneznechali\nneznechalo\nneznechám\nneznecháme\nneznecháš\nneznechať\nneznecháte\nnezneistej\nnezneistejme\nnezneistejte\nnezneistejú\nnezneistejúc\nnezneistel\nnezneistela\nnezneisteli\nnezneistelo\nnezneisti\nnezneistí\nnezneistia\nnezneistiac\nnezneistie\nnezneistiem\nnezneistieme\nnezneistieš\nnezneistieť\nnezneistiete\nnezneistil\nnezneistila\nnezneistili\nnezneistilo\nnezneistím\nnezneistime\nnezneistíme\nnezneistíš\nnezneistiť\nnezneistite\nnezneistíte\nneznejasni\nneznejasní\nneznejasnia\nneznejasniac\nneznejasnil\nneznejasnila\nneznejasnili\nneznejasnilo\nneznejasním\nneznejasnime\nneznejasníme\nneznejasníš\nneznejasniť\nneznejasnite\nneznejasníte\nneznejasňoval\nneznejasňovala\nneznejasňovali\nneznejasňovalo\nneznejasňovať\nneznejasňuj\nneznejasňuje\nneznejasňujem\nneznejasňujeme\nneznejasňuješ\nneznejasňujete\nneznejasňujme\nneznejasňujte\nneznejasňujú\nneznejasňujúc\nneznekvalitni\nneznekvalitní\nneznekvalitnia\nneznekvalitniac\nneznekvalitnil\nneznekvalitnila\nneznekvalitnili\nneznekvalitnilo\nneznekvalitním\nneznekvalitnime\nneznekvalitníme\nneznekvalitníš\nneznekvalitniť\nneznekvalitnite\nneznekvalitníte\nneznekvalitňoval\nneznekvalitňovala\nneznekvalitňovali\nneznekvalitňovalo\nneznekvalitňovať\nneznekvalitňuj\nneznekvalitňuje\nneznekvalitňujem\nneznekvalitňujeme\nneznekvalitňuješ\nneznekvalitňujete\nneznekvalitňujme\nneznekvalitňujte\nneznekvalitňujú\nneznekvalitňujúc\nneznelosť\nneznemožni\nneznemožnime\nneznemožnite\nneznemravni\nneznemravnime\nneznemravnite\nneznenáviď\nneznepriateľoval\nneznepriateľovala\nneznepriateľovali\nneznepriateľovalo\nneznepriateľovať\nneznepriateľuj\nneznepriateľuje\nneznepriateľujem\nneznepriateľujeme\nneznepriateľuješ\nneznepriateľujete\nneznepriateľujme\nneznepriateľujte\nneznepriateľujú\nneznepriateľujúc\nneznepríjemni\nneznepríjemnime\nneznepríjemnite\nneznerovnoprávni\nneznerovnoprávnia\nneznerovnoprávniac\nneznerovnoprávnil\nneznerovnoprávnila\nneznerovnoprávnili\nneznerovnoprávnilo\nneznerovnoprávnim\nneznerovnoprávnime\nneznerovnoprávniš\nneznerovnoprávniť\nneznerovnoprávnite\nneznerovnoprávňoval\nneznerovnoprávňovala\nneznerovnoprávňovali\nneznerovnoprávňovalo\nneznerovnoprávňovať\nneznerovnoprávňuj\nneznerovnoprávňuje\nneznerovnoprávňujem\nneznerovnoprávňujeme\nneznerovnoprávňuješ\nneznerovnoprávňujete\nneznerovnoprávňujme\nneznerovnoprávňujte\nneznerovnoprávňujú\nneznerovnoprávňujúc\nneznesiteľnosť\nnezneškodni\nnezneškodnime\nnezneškodnite\nneznetvor\nneznetvorte\nnezneucti\nnezneuctime\nnezneuctite\nnezneužívania\nnezneužívanie\nnezneviď\nneznevýhodni\nneznevýhodní\nneznevýhodnia\nneznevýhodniac\nneznevýhodnil\nneznevýhodnila\nneznevýhodnili\nneznevýhodnilo\nneznevýhodním\nneznevýhodnime\nneznevýhodníme\nneznevýhodníš\nneznevýhodniť\nneznevýhodnite\nneznevýhodníte\nneznevýhodňoval\nneznevýhodňovala\nneznevýhodňovali\nneznevýhodňovalo\nneznevýhodňovať\nneznevýhodňuj\nneznevýhodňuje\nneznevýhodňujem\nneznevýhodňujeme\nneznevýhodňuješ\nneznevýhodňujete\nneznevýhodňujme\nneznevýhodňujte\nneznevýhodňujú\nneznevýhodňujúc\nneznezreteľni\nneznezreteľní\nneznezreteľnia\nneznezreteľniac\nneznezreteľnil\nneznezreteľnila\nneznezreteľnili\nneznezreteľnilo\nneznezreteľním\nneznezreteľnime\nneznezreteľníme\nneznezreteľníš\nneznezreteľniť\nneznezreteľnite\nneznezreteľníte\nneznezreteľňoval\nneznezreteľňovala\nneznezreteľňovali\nneznezreteľňovalo\nneznezreteľňovať\nneznezreteľňuj\nneznezreteľňuje\nneznezreteľňujem\nneznezreteľňujeme\nneznezreteľňuješ\nneznezreteľňujete\nneznezreteľňujme\nneznezreteľňujte\nneznezreteľňujú\nneznezreteľňujúc\nnezničiteľne\nnezničiteľnosť\nnezníme\nnezníženia\nnezníženie\nneznížením\nnezníženiu\nneznormalizoval\nneznormalizovala\nneznormalizovali\nneznormalizovalo\nneznormalizovať\nneznormalizuj\nneznormalizuje\nneznormalizujem\nneznormalizujeme\nneznormalizuješ\nneznormalizujete\nneznormalizujme\nneznormalizujte\nneznormalizujú\nneznormalizujúc\nneznovunastav\nneznovunastaví\nneznovunastavia\nneznovunastaviac\nneznovunastavil\nneznovunastavila\nneznovunastavili\nneznovunastavilo\nneznovunastavím\nneznovunastavíme\nneznovunastavíš\nneznovunastaviť\nneznovunastavíte\nneznovunastavme\nneznovunastavoval\nneznovunastavovala\nneznovunastavovali\nneznovunastavovalo\nneznovunastavovať\nneznovunastavte\nneznovunastavuj\nneznovunastavuje\nneznovunastavujem\nneznovunastavujeme\nneznovunastavuješ\nneznovunastavujete\nneznovunastavujme\nneznovunastavujte\nneznovunastavujú\nneznovunastavujúc\nnezob\nnezobajúc\nnezobecnej\nnezobecnejme\nnezobecnejte\nnezobecnejú\nnezobecnejúc\nnezobecnel\nnezobecnela\nnezobecneli\nnezobecnelo\nnezobecni\nnezobecní\nnezobecnia\nnezobecniac\nnezobecnie\nnezobecniem\nnezobecnieme\nnezobecnieš\nnezobecnieť\nnezobecniete\nnezobecnil\nnezobecnila\nnezobecnili\nnezobecnilo\nnezobecním\nnezobecnime\nnezobecníme\nnezobecníš\nnezobecniť\nnezobecnite\nnezobecníte\nnezobrazovanie\nnezoceľoval\nnezoceľovala\nnezoceľovali\nnezoceľovalo\nnezoceľovať\nnezoceľuj\nnezoceľuje\nnezoceľujem\nnezoceľujeme\nnezoceľuješ\nnezoceľujete\nnezoceľujme\nnezoceľujte\nnezoceľujú\nnezoceľujúc\nnezodpovedanie\nnezodpovednosť\nnezodrúc\nnezohľadni\nnezohľadnime\nnezohľadnite\nnezohrej\nnezohreje\nnezohrejem\nnezohrejeme\nnezohreješ\nnezohrejete\nnezohrejme\nnezohrejte\nnezohrejú\nnezohrejúc\nnezohyzdi\nnezohyzdime\nnezohyzdite\nnezomkla\nnezomkli\nnezomklo\nnezomkne\nnezomknem\nnezomkneme\nnezomkneš\nnezomknete\nnezomkni\nnezomknime\nnezomknite\nnezomknú\nnezomknúc\nnezomknúť\nnezomknutím\nnezomkol\nnezomkýna\nnezomkýnaj\nnezomkýnajme\nnezomkýnajte\nnezomkýnajú\nnezomkýnajúc\nnezomkýnal\nnezomkýnala\nnezomkýnali\nnezomkýnalo\nnezomkýnam\nnezomkýname\nnezomkýnaš\nnezomkýnať\nnezomkýnate\nnezomrúc\nnezonačený\nnezondi\nnezondiac\nnezondiel\nnezondiela\nnezondieli\nnezondielo\nnezondime\nnezondite\nnezopäl\nnezopäla\nnezopäli\nnezopälo\nnezoradenia\nnezoraný\nNezorientovaný\nnezosaď\nnezosadí\nnezosadia\nnezosadiac\nnezosadil\nnezosadila\nnezosadili\nnezosadilo\nnezosadím\nnezosadíme\nnezosadíš\nnezosadiť\nnezosadíte\nnezosaďme\nnezosaďte\nnezosilni\nnezosilnime\nnezosilnite\nnezosmiešňovanie\nnezosmoľ\nnezosmolí\nnezosmolia\nnezosmoliac\nnezosmolil\nnezosmolila\nnezosmolili\nnezosmolilo\nnezosmolím\nnezosmolíme\nnezosmolíš\nnezosmoliť\nnezosmolíte\nnezosmoľme\nnezosmoľte\nnezosmrď\nnezosňalo\nnezosobni\nnezosobnime\nnezosobnite\nnezospoločenšti\nnezospoločenštime\nnezospoločenštite\nnezostarej\nnezostarejme\nnezostarejte\nnezostarejú\nnezostarejúc\nnezostarla\nnezostarli\nnezostarlo\nnezostarol\nnezostavenie\nnezostavením\nnezostavovania\nNezostrihaný\nnezostrihla\nnezostrihli\nnezostrihlo\nnezostrihne\nnezostrihnem\nnezostrihneme\nnezostrihneš\nnezostrihnete\nnezostrihni\nnezostrihnime\nnezostrihnite\nnezostrihnú\nnezostrihnúc\nnezostrihnúť\nnezostrihol\nnezostručni\nnezostručnime\nnezostručnite\nnezosúlaď\nnezosúladenie\nnezosúladením\nnezosúladeniu\nnezosúladí\nnezosúladia\nnezosúladiac\nnezosúladil\nnezosúladila\nnezosúladili\nnezosúladilo\nnezosúladím\nnezosúladíme\nnezosúladíš\nnezosúladiť\nnezosúladíte\nnezosúlaďme\nnezosúlaďte\nnezosumarizoval\nnezosumarizovala\nnezosumarizovali\nnezosumarizovalo\nnezosumarizovať\nnezosumarizuj\nnezosumarizuje\nnezosumarizujem\nnezosumarizujeme\nnezosumarizuješ\nnezosumarizujete\nnezosumarizujme\nnezosumarizujte\nnezosumarizujú\nnezosumarizujúc\nnezosuň\nnezosunie\nnezosuniem\nnezosunieme\nnezosunieš\nnezosuniete\nnezosuňme\nnezosuňte\nnezosunul\nnezosunula\nnezosunuli\nnezosunulo\nnezosúva\nnezosúvaj\nnezosúvajme\nnezosúvajte\nnezosúvajú\nnezosúvajúc\nnezosúval\nnezosúvala\nnezosúvali\nnezosúvalo\nnezosúvam\nnezosúvame\nnezosúvaš\nnezosúvať\nnezosúvate\nnezosvetšti\nnezosvetští\nnezosvetštia\nnezosvetštiac\nnezosvetštil\nnezosvetštila\nnezosvetštili\nnezosvetštilo\nnezosvetštím\nnezosvetštime\nnezosvetštíme\nnezosvetštíš\nnezosvetštiť\nnezosvetštite\nnezosvetštíte\nnezosvetšťoval\nnezosvetšťovala\nnezosvetšťovali\nnezosvetšťovalo\nnezosvetšťovať\nnezosvetšťuj\nnezosvetšťuje\nnezosvetšťujem\nnezosvetšťujeme\nnezosvetšťuješ\nnezosvetšťujete\nnezosvetšťujme\nnezosvetšťujte\nnezosvetšťujú\nnezosvetšťujúc\nnezosychá\nnezosychaj\nnezosychajme\nnezosychajte\nnezosychajú\nnezosychajúc\nnezosychal\nnezosychala\nnezosychali\nnezosychalo\nnezosychám\nnezosycháme\nnezosycháš\nnezosychať\nnezosycháte\nnezosyp\nnezosypal\nnezosypala\nnezosypali\nnezosypalo\nnezosypať\nnezosype\nnezosypem\nnezosypeme\nnezosypeš\nnezosypete\nnezosypme\nnezosypte\nnezosypú\nnezosypúc\nnezosystemizoval\nnezosystemizovala\nnezosystemizovali\nnezosystemizovalo\nnezosystemizovať\nnezosystemizuj\nnezosystemizuje\nnezosystemizujem\nnezosystemizujeme\nnezosystemizuješ\nnezosystemizujete\nnezosystemizujme\nnezosystemizujte\nnezosystemizujú\nnezosystemizujúc\nnezošalej\nnezošalejme\nnezošalejte\nnezošalejú\nnezošalejúc\nnezošer\nnezošerte\nnezoši\nnezošije\nnezošijem\nnezošijeme\nnezošiješ\nnezošijete\nnezošijú\nnezošijúc\nnezošil\nnezošila\nnezošili\nnezošilo\nnezošime\nnezošite\nnezošklb\nnezošklbú\nnezošklbúc\nnezoškrab\nnezoškriab\nnezoškvar\nnezoškvarte\nnezošľachti\nnezošľachtime\nnezošľachtite\nnezošmykla\nnezošmykli\nnezošmyklo\nnezošmykne\nnezošmyknem\nnezošmykneme\nnezošmykneš\nnezošmyknete\nnezošmykni\nnezošmyknime\nnezošmyknite\nnezošmyknú\nnezošmyknúc\nnezošmyknúť\nnezošmykol\nNezošnurovaný\nnezošpor\nnezošporte\nnezošrotoval\nnezošrotovala\nnezošrotovali\nnezošrotovalo\nnezošrotovať\nnezošrotuj\nnezošrotuje\nnezošrotujem\nnezošrotujeme\nnezošrotuješ\nnezošrotujete\nnezošrotujme\nnezošrotujte\nnezošrotujú\nnezošrotujúc\nnezošteloval\nnezoštelovala\nnezoštelovali\nnezoštelovalo\nnezoštelovať\nnezošteluj\nnezošteluje\nnezoštelujem\nnezoštelujeme\nnezošteluješ\nnezoštelujete\nnezoštelujme\nnezoštelujte\nnezoštelujú\nnezoštelujúc\nnezoštíhlej\nnezoštíhlejme\nnezoštíhlejte\nnezoštíhlejú\nnezoštíhlejúc\nnezoštíhlenie\nnezošúver\nnezošúverte\nnezotlú\nnezotlúc\nnezotmi\nnezotmime\nnezotmite\nnezotrúc\nnezotrvanie\nnezotrvaním\nnezovrúc\nnezovšeobecni\nnezovšeobecnime\nnezovšeobecnite\nnezozbieraná\nnezozbieraných\nnezrác\nnezráce\nnezrácem\nnezráceme\nnezráceš\nnezrácete\nnezrácme\nnezrácte\nnezrácu\nnezrácuc\nnezrajtoval\nnezrajtovala\nnezrajtovali\nnezrajtovalo\nnezrajtovať\nnezrajtuj\nnezrajtuje\nnezrajtujem\nnezrajtujeme\nnezrajtuješ\nnezrajtujete\nnezrajtujme\nnezrajtujte\nnezrajtujú\nnezrajtujúc\nnezrasti\nnezrastime\nnezrastite\nnezrážajúci\nnezrážaním\nnezreálnenie\nnezrec\nnezrecme\nnezrecte\nnezredigovanej\nnezredla\nnezredli\nnezredlo\nnezredne\nnezrednem\nnezredneme\nnezredneš\nnezrednete\nnezredni\nnezrednime\nnezrednite\nnezrednú\nnezrednúc\nnezrednúť\nnezredol\nnezreformoval\nnezreformovala\nnezreformovali\nnezreformovalo\nnezreformovať\nnezreformuj\nnezreformuje\nnezreformujem\nnezreformujeme\nnezreformuješ\nnezreformujete\nnezreformujme\nnezreformujte\nnezreformujú\nnezreformujúc\nnezrelaxoval\nnezrelaxovala\nnezrelaxovali\nnezrelaxovalo\nnezrelaxovať\nnezrelaxuj\nnezrelaxuje\nnezrelaxujem\nnezrelaxujeme\nnezrelaxuješ\nnezrelaxujete\nnezrelaxujme\nnezrelaxujte\nnezrelaxujú\nnezrelaxujúc\nnezrele\nnezrelosť\nnezrelšej\nnezrelší\nnezrelšia\nnezrelšie\nnezrelšieho\nnezrelšiemu\nnezrelších\nnezrelším\nnezrelšími\nnezrelšiu\nnezrelšom\nnezrelšou\nnezrev\nnezrevme\nnezrevte\nnezrezáva\nnezrezávaj\nnezrezávajme\nnezrezávajte\nnezrezávajú\nnezrezávajúc\nnezrezával\nnezrezávala\nnezrezávali\nnezrezávalo\nnezrezávam\nnezrezávame\nnezrezávaš\nnezrezávať\nnezrezávate\nnezriadene\nnezriadenia\nnezriadenie\nnezriadením\nnezrinč\nnezrinči\nnezrinčime\nnezrinčite\nnezrnoval\nnezrnovala\nnezrnovali\nnezrnovalo\nnezrnovať\nnezrnuj\nnezrnuje\nnezrnujem\nnezrnujeme\nnezrnuješ\nnezrnujete\nnezrnujme\nnezrnujte\nnezrnujú\nnezrnujúc\nnezröntgenoval\nnezröntgenovala\nnezröntgenovali\nnezröntgenovalo\nnezröntgenovať\nnezröntgenuj\nnezröntgenuje\nnezröntgenujem\nnezröntgenujeme\nnezröntgenuješ\nnezröntgenujete\nnezröntgenujme\nnezröntgenujte\nnezröntgenujú\nnezröntgenujúc\nnezrovnalosť\nnezrovnaností\nnezrovnateľne\nnezrozumiteľnosť\nnezrozumiteľnosti\nnezrúb\nnezrúba\nnezrúbaj\nnezrúbajme\nnezrúbajte\nnezrúbajú\nnezrúbajúc\nnezrúbam\nnezrúbame\nnezrúbaš\nnezrúbate\nnezrúc\nnezruč\nnezrušenia\nnezrušenie\nnezrušením\nnezrušeniu\nnezryč\nnezub\nnezubí\nnezubia\nnezubiac\nnezubil\nnezubila\nnezubili\nnezubilo\nnezubím\nnezubíme\nnezubíš\nnezubiť\nnezubíte\nnezubme\nnezubte\nnezúčastnene\nnezúčastni\nnezúčastnime\nnezúčastnite\nnezúčtovania\nnezúčtovaním\nnezúčtovaniu\nnezuň\nnezunel\nnezunela\nnezuneli\nnezunelo\nnezuní\nnezunia\nnezuniac\nnezunieť\nnezuním\nnezuníme\nnezuníš\nnezuníte\nnezuňme\nnezuňte\nnezurč\nnezurkotá\nnezurkotaj\nnezurkotajme\nnezurkotajte\nnezurkotajú\nnezurkotajúc\nnezurkotám\nnezurkotáme\nnezurkotáš\nnezurkotáte\nnezúročený\nnezúrodni\nnezúrodnime\nnezúrodnite\nnezušľachť\nnezušľachtený\nnezušľachti\nnezušľachtí\nnezušľachtia\nnezušľachtiac\nnezušľachtil\nnezušľachtila\nnezušľachtili\nnezušľachtilo\nnezušľachtím\nnezušľachtime\nnezušľachtíme\nnezušľachtíš\nnezušľachtiť\nnezušľachtite\nnezušľachtíte\nnezušľachťme\nnezušľachťte\nnezútulnej\nnezútulnejme\nnezútulnejte\nnezútulnejú\nnezútulnejúc\nnezútulnel\nnezútulnela\nnezútulneli\nnezútulnelo\nnezútulni\nnezútulnie\nnezútulniem\nnezútulnieme\nnezútulnieš\nnezútulnieť\nnezútulniete\nnezútulnime\nnezútulnite\nnezútulňoval\nnezútulňovala\nnezútulňovali\nnezútulňovalo\nnezútulňovať\nnezútulňuj\nnezútulňuje\nnezútulňujem\nnezútulňujeme\nnezútulňuješ\nnezútulňujete\nnezútulňujme\nnezútulňujte\nnezútulňujú\nnezútulňujúc\nnezväčši\nnezväčšime\nnezväčšite\nnezvar\nnezvarte\nnezvažovaný\nnezvecni\nnezvecnime\nnezvecnite\nnezvečer\nnezvečerte\nnezvečni\nnezvečnime\nnezvečnite\nnezvedečti\nnezvedečtime\nnezvedečtite\nnezver\nnezverejnenia\nnezverejnenie\nnezverejnením\nnezverejneniu\nnezverejnený\nnezverejni\nnezverejnime\nnezverejnite\nnezverejňovania\nnezverejňovanie\nnezverejňovaniu\nnezverejňovaný\nnezverte\nnezvestnosť\nnezvez\nnezvezie\nnezveziem\nnezvezieme\nnezvezieš\nnezveziete\nnezvezme\nnezvezte\nnezvezú\nnezvezúc\nnezvi\nnezviažuc\nnezviď\nnezviditeľnenia\nnezviditeľni\nnezviditeľnime\nnezviditeľnite\nnezviezla\nnezviezli\nnezviezlo\nnezviezol\nnezviezť\nnezviklalo\nnezvime\nnezvíňa\nnezvinil\nnezvinoval\nnezvinovala\nnezvinovali\nnezvinovalo\nnezvinovať\nnezvinuj\nnezvinuje\nnezvinujem\nnezvinujeme\nnezvinuješ\nnezvinujete\nnezvinujme\nnezvinujte\nnezvinujú\nnezvinujúc\nnezvírený\nnezvite\nnezvláčni\nnezvláčnia\nnezvláčniac\nnezvláčnil\nnezvláčnila\nnezvláčnili\nnezvláčnilo\nnezvláčnim\nnezvláčnime\nnezvláčniš\nnezvláčniť\nnezvláčnite\nnezvládania\nnezvládanie\nnezvládnuteľne\nnezvládnutia\nnezvládnutie\nnezvládnutím\nnezvládnutiu\nnezvládnutý\nnezvládz\nnezvládze\nnezvládzem\nnezvládzeme\nnezvládzeš\nnezvládzete\nnezvládzme\nnezvládzte\nnezvládzu\nnezvládzuc\nnezvlažená\nnezvlči\nnezvlčime\nnezvlčite\nnezvlhči\nnezvlhčime\nnezvlhčite\nnezvnútorni\nnezvnútornime\nnezvnútornite\nnezvolania\nnezvolanie\nnezvolebnieva\nnezvolebnievaj\nnezvolebnievajme\nnezvolebnievajte\nnezvolebnievajú\nnezvolebnievajúc\nnezvolebnieval\nnezvolebnievala\nnezvolebnievali\nnezvolebnievalo\nnezvolebnievam\nnezvolebnievame\nnezvolebnievaš\nnezvolebnievať\nnezvolebnievate\nnezvolenia\nnezvolením\nnezvoleniu\nnezvoľni\nnezvoľnime\nnezvoľnite\nnezvrašti\nnezvraštime\nnezvraštite\nnezvratne\nnezvratnosť\nnezvrešť\nnezvrešťme\nnezvrešťte\nnezvrúc\nnezvuč\nnezvy\nnezvyčajnosť\nnezvýhodnenie\nnezvýhodneniu\nnezvýhodnený\nnezvýhodni\nnezvýhodnime\nnezvýhodnite\nnezvýhodňovanie\nnezvykle\nnezvyklejšej\nnezvyklejší\nnezvyklejšia\nnezvyklejšie\nnezvyklejšieho\nnezvyklejšiemu\nnezvyklejších\nnezvyklejším\nnezvyklejšími\nnezvyklejšiu\nnezvyklejšom\nnezvyklejšou\nnezvyklosť\nnezvýrazni\nnezvýraznime\nnezvýraznite\nnezvýšenia\nnezvýšenie\nnezvýšením\nnezvyšovania\nnezvyšovanie\nnezvyšovaním\nnezvyšovaniu\nnezželej\nnezželejme\nnezželejte\nnezželejú\nnezželejúc\nnezželel\nnezželela\nnezželeli\nnezželelo\nnezželie\nnezželiem\nnezželieme\nnezželieš\nnezželieť\nnezželiete\nnež\nnežalosti\nnežalostime\nnežalostite\nnežblnkotajúc\nnežehlené\nneželateľne\nneželej\nneželejme\nneželejte\nneželejú\nneželejúc\nneženie\nneženiem\nneženieme\nneženieš\nneženiete\nneženskosť\nnežensky\nneženú\nneženúc\nnežiadanie\nnežiadúca\nnežiadúce\nnežiadúceho\nnežiadúcej\nnežiadúcemu\nnežiadúci\nnežiadúcich\nnežiadúcim\nnežiadúcimi\nnežiadúco\nnežiadúcom\nnežiadúcou\nnežiadúcu\nnežičieva\nnežičievaj\nnežičievajme\nnežičievajte\nnežičievajú\nnežičievajúc\nnežičieval\nnežičievala\nnežičievali\nnežičievalo\nnežičievam\nnežičievame\nnežičievaš\nnežičievať\nnežičievate\nnežičlivec\nnežičlivo\nnežičlivosť\nnežidia\nnežitia\nneživnostníčili\nneživo\nneživor\nneživorte\nneživotne\nneživotnosť\nnežízni\nnežíznia\nnežízniac\nnežíznil\nnežíznila\nnežíznili\nnežíznilo\nnežíznim\nnežíznime\nnežízniš\nnežízniť\nnežíznite\nnežne\nnežnem\nnežneme\nnežneš\nnežnete\nnežni\nnežnieť\nnežnieva\nnežnievaj\nnežnievajme\nnežnievajte\nnežnievajú\nnežnievajúc\nnežnieval\nnežnievala\nnežnievali\nnežnievalo\nnežnievam\nnežnievame\nnežnievaš\nnežnievať\nnežnievate\nnežnime\nnežnite\nnežnosť\nnežnôstka\nnežnúc\nnežný\nnežobral\nnežobrala\nnežobrali\nnežobralo\nnežobre\nnežobrem\nnežobreme\nNežobreme\nnežobreš\nnežobrete\nnežobri\nnežobrime\nnežobrite\nnežobrú\nnežobrúc\nngultrum\nni\nNiagara\nNiagarou\nniagarský\nničej\nničenie\nničený\nničený\nničí\nničiaca\nničiace\nničiaci\nničiacim\nničiacou\nničie\nničieho\nničiemu\nničích\nničími\nničiteľ\nničiteľka\nničiteľský\nničiť\nničiu\nničivo\nničivosť\nničivý\nničnerobenie\nničo\nničoho\nničom\nničomne\nničomnica\nničomnícky\nničomníctvo\nničomníčka\nničomník\nničomnosť\nničomný\nničomu\nničota\nničotne\nničotnosť\nničotný\nničou\nnidácia\nnie\nnieby\nniečiej\nniečí\nniečim\nniečoho\nniečomu\nnieh\nnieje\nniekade\nniekam\nniekdajší\nniekde\nniekdy\nniekedy\nniekoho\nniekoľkocentimetrový\nniekoľko\nniekoľkočlenný\nniekoľkodenný\nniekoľkodielny\nniekoľkodňový\nniekoľkofázový\nniekoľkohodinový\nniekoľkokilometrový\nniekoľkokrát\nniekoľkomesačný\nniekoľkomesačný\nniekoľkometrový\nniekoľkomiestnymi\nniekoľkomiliónový\nniekoľkominútový\nniekoľkonásobkami\nniekoľkonásobkoch\nniekoľkonásobkom\nniekoľkonásobkov\nniekoľkonásobku\nniekoľkonásobky\nniekoľkonásobný\nniekoľkonásobok\nniekoľkoposchodový\nniekoľkorako\nniekoľkorakosť\nniekoľkoraký\nniekoľkoráz\nniekoľkoriadkový\nniekoľkoročný\nniekoľkoslovný\nniekoľkostoročná\nniekoľkostoročnej\nniekoľkostoročnou\nniekoľkostoročnými\nniekoľkostránkový\nniekoľkostranový\nniekoľkostupňový\nniekoľkotisícový\nniekoľkotisícový\nniekoľkotisícročnú\nniekoľkotónový\nniekoľkotýždenný\nniekoľkotýždňový\nniekoľkozväzkový\nniekoľkýkrát\nniekoľký\nniekom\nniekomu\nniekt\nniekto\nniektorý\nniekym\nniekým\nnielen\nnielenže\nniello\nnielo\nniemenej\nnieste\nniesť\nniesu\nniet\nnieť\nnietiť\nnieto\nnietoby\nnietobyžeby\nnietožeby\nNIEV\nnieže\nniežeby\nnife\nNiger\nNigeri\nNigéria\nNigérijčan\nNigérijčanka\nNigérijec\nNigérijka\nnigérijský\nnigerský\nnigrín\nnigromantia\nnigrosín\nnihilista\nnihilisticky\nnihilistický\nnihilizmus\nnihilizovať\nnich\nnijak\nnijako\nnijakovsky\nnijakovský\nnijaký\nnik\nník\nnikade\nnikajovský\nnikam\nNikaragua\nNikarague\nNikaragujčan\nNikaragujčanka\nNikaragujec\nnikaragujský\nnika\nnikde\nnikdy\nnikefóbia\nnikel\nnikelín\nnikelnatý\nNikita\nNikitovi\nnikla\nniklami\nnikle\nnikli\nnikloch\nniklom\nniklov\nniklovanie\nniklovaním\nniklovanú\nniklovky\nniklovo\nniklovo-kadmiový\nniklový\nniklu\nnikly\nNikodém\nNikodémovej\nnikoho\nnikol\nNikolaj\nNikolaja\nNikolajom\nNikolajovi\nNikola\nNikolin\nnikoľkomesačný\nnikoľkotisícový\nNikolom\nNikolov\nnikom\nnikomu\nnikotín\nnikotinizmu\nnikotinizmus\nnikotínový\nNikózia\nNikózijčan\nnikózijský\nniktácia\nniktitácia\nnikto\nniktorý\nniktoš\nnikým\nNíl\nnili\nnílsky\nnílsky\nnim\nním\nnímand\nnimbe\nnimbmi\nnimboch\nnimbom\nnimbostratus\nnimbov\nnimbu\nnimbus\nnimby\nnimi\nNimnica\nNimnice\nNimnici\nNimnické\nnimnických\nnimród\nNín\nNina\nniób\nnirván\nnirvánach\nnirvánam\nnirvána\nNís\nNisa\nNise\nNisou\nNissan\nNissane\nNissanu\nNissany\nnistej\nNisu\nNisy\nnitár\nnit\nniť\nnitelnica\nnitený\nnitiarňam\nnitiarne\nnitiarske\nnitiarskych\nnitka\nnitkovitý\nnitkový\nnitmi\nnitôčka\nnitovací\nnitovacie\nnitovacieho\nnitovacích\nnitovač\nnitovačovi\nnitovane\nnitovania\nnitovanie\nnitovaním\nnitovaný\nnitovať\nniťovitý\nniťovka\nnitový\nniťový\nnitrácia\nnitračný\nNitrami\nNitran\nnitrát\nnitratín\nnitrátmi\nnitrátom\nnitrátov\nnitrátový\nnitrátu\nnitráty\nNitra\nNitrian\nNitrianska\nNitrianske\nnitrianskeho\nnitrianskej\nnitrianskemu\nnitrianski\nnitrianskom\nnitrianskou\nnitriansku\nnitriansky\nNitrianskych\nnitrianskym\nnitrianskymi\nNitrica\nNitrice\nNitrici\nNitricou\nnitrid\nnitridácie\nnitridáciu\nnitridov\nnitridovanie\nnitridu\nnitrifikácia\nnitrifikácie\nnitrifikáciou\nnitril\nnitrilových\nnitrit\nnitritácia\nnitrobenzén\nnitrocelulóz\nnitrocelulózach\nnitrocelulózam\nnitrocelulóza\nnitrocelulózový\nnitrofilný\nnitrofóbny\nnitrofyt\nnitrogén\nnitrogenium\nnitrogénový\nnitroglycerín\nnitroglycerínový\nnitrolak\nnitrometer\nnitronatrit\nnitrotoluénu\nnitrovanie\nnitujúci\nnív\nnivácia\nniválny\nniva\nniveau\nnivea\nnivea\nnivelácia\nnivelačný\nniveleta\nniveletu\nnivelety\nnivelizácia\nnivelizačne\nnivelizačný\nnivelizovaná\nnivelizované\nnivelizovaním\nnivelizovanom\nnivelizovanou\nnivelizovaných\nnivelizovať\nnivelovať\nnivó\nnivočeného\nnivočenia\nnivočenie\nnivočením\nnivočených\nnivočiteľ\nnivočiť\nnízkofrekvenčný\nnízkokalorický\nnízkokmenný\nnizkokmenný\nnízkokmenný\nnízkonapäťový\nnízkoobrátkové\nnízkoobrátkovom\nnízkoobrátkových\nnízkopodlažný\nnízkopríjmový\nnízkosť\nnízkošumový\nnízkotatranský\nnízkotepelné\nnízkotepelnom\nnízkotepelných\nnízkotlakový\nnízkotlaký\nnízkoúrovňové\nnízky\nnizučko\nnizučký\nnizulinko\nnizulinký\nnizunko\nnizunký\nniž\nnížach\nnížam\nníž\nniže\nNižedvorská\nníženie\nnížením\nnižie\nnížila\nnižinatý\nnížinatý\nnížina\nnížinný\nnížiť\nnižne\nNižnianska\nNižnoslanská\nnižný\nNižovec\nnižší\nNK\nNKÚ\nNLG\nnm\nNN\nnna\nnno\nno\nnó\nnobélium\nnobelový\nnobilita\nnóbl\nnobles\nnoblesa\nnoblesne\nnoblesnosť\nnoblesný\nnociceptor\nnocionálna\nnocionálny\nnoc\nnôcka\nnocľaháreň\nnocľahárňach\nnocľahárňam\nnocľah\nnocľažené\nnocľažné\nnocľažného\nnocľažnému\nnocľažnica\nnocľažníčka\nnocľažník\nnocľažnom\nnocľažným\nnocovaní\nnocovanie\nnocovaním\nnocovať\nnocovňa\nnocúva\nnocúvajú\nnočníček\nnočníčka\nnočníčkami\nnočníčkoch\nnočníčkom\nnočníčkov\nnočníčku\nnočníčky\nnočník\nnočný\nNode\nnodov\nnodus\nNoe\nNoema\nnoeticky\nnoetický\nnoetička\nnoetika\nnoetik\nnôh\nnohatý\nnohavica\nnohavice\nnohavicový\nnohavičiek\nnohavičky\nnoha\nnohejbal\nnohejbalista\nnohejbalistka\nnohejbalmi\nnohejbalový\nnoho\nnohsled\nnohsledi\nnohsledov\nnohý\nNOK\nNokia\nnoktambulizmus\nnoktur\nnoktúria\nnokturien\nnokturno\nNolčovo\nnolen\nňom\nnomáda\nnomád\nnomádi\nnomádovi\nnomádsky\nnomen\nnomenklatúr\nnomenklatúrach\nnomenklatúram\nnomenklatúra\nnomenklatúrny\nnomický\nnominácia\nnominačný\nnominál\nnominále\nnominalizmus\nnominálny\nnominant\nnominantka\nnominatim\nnominatív\nnominatíve\nnominatívny\nnominovania\nnominovanie\nnominovaním\nnominovaniu\nnominovaný\nnominovať\nnomogenéza\nnomografia\nnomogram\nnomokracia\nnomológia\nnomotetický\nnon\nnón\nnóna\nnonet\nNonet\nnoneto\nnonius\nnónius\nnonkonformista\nnonkonformita\nnonkonformný\nnono\nnonóda\nnonono\nnonpareilla\nnonpareillami\nnonpareille\nnonpareilloch\nnonpareillom\nnonpareillov\nnonpareillu\nnonpareilly\nnonparej\nnonplusultra\nnonsens\nnonstop\nnonšalancia\nnonšalania\nnonšalantne\nnonšalantnosť\nnonšalantný\nnontronit\nnónu\nnonvalér\nnonverbálny\nnóny\nnoosféra\nNOPA\nnopál\nNope\nnor\nnór\nnôr\nNôr\nnoradrenalín\nNora\nnora\nNorbert\nNór\nnorčí\nnórčin\nnórčinách\nnórčinám\nnórčinami\nnórčina\nnordický\nnorepinefrín\nNorfolk\nNorfolku\nnoriace\nnoriem\nnorik\nNorimberčan\nNorimberg\nnorimberský\nnoriť\nNórka\nNórkam\nnorka\nNórke\nnorkom\nnorkový\nNórku\nNórky\nnormálach\nnormálam\nnormála\nnormál\nnormáli\nnormalita\nnormality\nnormalizácia\nnormalizačne\nnormalizačný\nnormalizátor\nnormalizátormi\nnormalizátorský\nnormalizovanie\nnormalizovaniu\nnormalizovaný\nnormalizovať\nnormálmi\nnormálne\nnormálnosť\nnormálny\nnormálový\nNorman\nNormana\nNormandia\nNormandie\nNormandii\nnormandský\nnormanna\nNormanom\nNormanov\nNormanovi\nNormanské\nnormanskou\nNormanských\nnormatív\nnormatíve\nnormatívnosť\nnormatívny\nnorma\nnormlaizácia\nnormoblast\nnormocyt\nnormograf\nnormohodina\nnormotvorba\nnormotvorbe\nnormotvorbou\nnormotvorbu\nnormotvorby\nnormotvorca\nnormotvorcami\nnormotvorcom\nnormotvorný\nnormovač\nnormovania\nnormovanie\nnormovaním\nnormovaný\nnormovať\nnormový\nnorok\nNorovský\nNórsko\nnórsky\nnórsky\nnorte\nnosáč\nnosáči\nNosák\nnosáľ\nnosáň\nnosáni\nnosatec\nnosatý\nnos\nnosene\nnosenie\nnosený\nNosickým\nnosič\nnosiče\nnosička\nnosičova\nnosičový\nnosičský\nnosiču\nnosidlo\nnosievať\nnosík\nnosísk\nnosisko\nnositeľ\nnositeľka\nnosiť\nnosítka\nnosivo\nnoskyňa\nnosne\nnosnica\nnosník\nnosníkový\nnosnosť\nnosný\nnosofóbia\nnosohltan\nnosohltanový\nnosológia\nnosorožce\nnosorožec\nnosoroží\nnosovka\nnosovo\nnosový\nnostalgia\nNostalgici\nnostalgickosť\nnostalgicky\nnostalgický\nnostalgik\nnostalgikom\nnostalgikov\nNostra\nnostrách\nnostre\nnostrifikácia\nnostrifikačný\nnostrifikovaný\nnostrifikovať\nnostro\nnošak\nnoša\nnoší\nnôška\nnoštek\nnót\nnôt\nnotabene\nnotabilita\nnotácia\nnotácie\nnotačný\nnotafília\nnótach\nnôtach\nnotalgia\nnótam\nnôtam\nnotár\nnotariát\nnotárka\nnotárkin\nnotárov\nnotársky\nnotárstvach\nnotárstvam\nnotárstvo\nnota\nnóta\nnôta\nnotebook\nnôtení\nnotes\nnotesík\nnoteštek\nnotícia\nnoticka\nnôtievať\nnotifikácia\nnotifikácie\nnotifikácii\nnotifikácií\nnotifikáciou\nnotifikáciu\nnotifikačný\nnotifikoval\nnotifikovala\nnotifikovali\nnotifikovalo\nnotifikovaný\nnotifikovať\nnotifikuje\nnotifikujeme\nnôtiť\nnotodýnia\nnotochorda\nnotoricky\nnotorický\nnotorik\nnotorika\nnotovaných\nnotovať\nnotový\nNottinghamskej\nNottinghamskom\nňou\nnoumenon\nnoumeona\nnóv\nNováci\nnovácia\nnovácie\nnovácií\nnováciou\nnováciu\nnovácka\nNovácke\nnováckeho\nnováckej\nnováckemu\nNovácki\nnováckom\nnováckou\nnovácku\nnovácky\nNováckych\nNováckym\nNováckymi\nnováčik\nnováčikovský\nnováčikov\nnováčka\nnováčkami\nnováčkoch\nnováčkom\nnováčkov\nnováčkovi\nnováčkovia\nnóvach\nNovák\nNováka\nNovákmi\nNovákoch\nNovákom\nNovákov\nNovákova\nNovákove\nNovákovej\nNovákovho\nNovákovi\nNovákovo\nNovákovom\nNovákovou\nNovákovu\nNovákových\nNovákovým\nNovákovými\nNováky\nnóvam\nnovátor\nnovátorka\nnovátormi\nnovátorsky\nnovátorský\nnovátorstvo\nnov\nnovela\nnovelista\nnovelistka\nnovelizácia\nnovelizačný\nnovelizovania\nnovelizovanie\nnovelizovaním\nnovelizovaniu\nnovelizovaný\nnovelizovať\nnovelový\nnovem\nnovember\nnovembrový\nnovéna\nnovený\nNovi\nNovia\nnovial\nnovic\nnoviciát\nnoviciátmi\nnovicka\nNovický\nnovicovia\nnovielka\nnovím\nnovin\nnovinár\nnovinárčenia\nnovinárčiť\nnovinárka\nnovinársky\nnovinárstvach\nnovinárstvam\nnovinárstvo\nnovina\nnovinka\nnovinky\nnovinovo\nnovinový\nnoviných\nnoviny\nnovizeň\nnovo\nnovobarok\nnovobarokový\nnovoborský\nnovobulh\nnovobystrickej\nnovodedinský\nnovodobejšej\nnovodobejší\nnovodobejšia\nnovodobejšie\nnovodobejšieho\nnovodobejšiemu\nnovodobejších\nnovodobejším\nnovodobejšími\nnovodobejšiu\nnovodobejšom\nnovodobejšou\nnovodobo\nnovodobý\nNovodubnická\nnovodubnickej\nnovodubnickom\nnovodur\nnovodure\nnovodurmi\nnovoduroch\nnovodurom\nnovodurov\nnovodurový\nnovoduru\nnovodury\nNovodvorský\nnovogotický\nnovogotika\nnovogréc\nnovogréčtin\nnovogréčtinách\nnovogréčtinám\nnovogréčtinami\nnovogréčtina\nnovoind\nNovojičínska\nnovojičínske\nnovojičínskeho\nnovojičínskej\nnovojičínskemu\nnovojičínskom\nnovojičínskou\nNovojičínsku\nnovojičínsky\nnovojičínskych\nnovojičínskym\nnovokaín\nnovokaínový\nnovoklasicistický\nnovoklasicizmus\nnovokňaz\nnovokúpený\nnovomanžel\nnovomanželka\nnovomanželský\nnovomenovaný\nnovomestský\nnovonadobudnutý\nnovonapadnutý\nnovonarodenec\nnovonarodeniatko\nnovonarodeniatok\nnovonarodený\nnovonavrhovaný\nnovoobjavený\nnovoobrátený\nnovoodvodeného\nnovootvorený\nnovopečený\nnovoplast\nnovoplasty\nnovopohanstva\nnovopohanstvo\nnovopohanstvom\nnovopostavený\nnovopozitivista\nnovopozitivistický\nnovopozitivizmus\nnovopríchodzí\nnovopríchodzie\nnovopríchodzích\nnovopríchodzím\nnovopríchodzími\nnovoprijatý\nnovorenesančnej\nNovorenesančný\nnovoročný\nnovorodenec\nnovorodenecky\nnovorodenecký\nnovorodeniatko\nnovorodeniatok\nnovorodený\nnovoromantický\nnovoromantik\nnovoromantizmus\nNovosadčan\nnovosadský\nNovosibirská\nNovosibirskej\nNovosibirskom\nnovostavba\nnovosť\nnovosvetský\nNovoť\nnovotár\nnovotársky\nnovotárstvach\nnovotárstvam\nnovotárstvo\nnovota\nnovotekovská\nnovotekovskú\nNovoti\nnovotný\nnovotvar\nnovotvarmi\nnovotvary\nnovotvoreného\nnovotvorenej\nnovotvorenom\nnovoupravená\nnovoupravené\nnovoupravenej\nnovoupravených\nnovoupravenými\nnovousadlík\nnovoustanovená\nnovoustanovené\nnovoustanoveného\nnovoustanovenej\nnovoustanovenom\nnovoustanovenú\nnovoustanovených\nnovoustanoveným\nNovoustanovený\nnovoutvorený\nnovovek\nnovoveký\nnovoveské\nNovoveský\nnovovybudovaný\nnovovymenovaný\nnovovymenovaný\nnovovyrobený\nnovovysadené\nnovovysadených\nnovovysadenými\nnovovytvorený\nnovovzniknutý\nnovozakladaná\nnovozakladané\nnovozakladaného\nnovozakladanej\nnovozakladanom\nnovozakladanú\nnovozakladaných\nnovozakladaným\nnovozakladanými\nNovozakladaný\nnovozákonný\nnovozaložený\nnovozámocký\nnovozastavanej\nnovozavedený\nNovozélanďan\nnovozélandsky\nnovozélandský\nnovozískaný\nnovozriadený\nnovozrodený\nnovozvolený\nnovší\nnovší\nnovučičko\nnovučičký\nnovučko\nnovučký\nnovulinko\nnovulinký\nnovum\nnóvum\nnovunko\nnovunký\nnový\nnoxa\nnozdra\nNozdrin\nNozdrovický\nnozematóza\nnozofóbia\nnozografia\nnozológia\nnožiar\nnožiarske\nnožiarskeho\nnožiarskej\nnožiarsky\nnožiarskych\nnožiarstvo\nnožíček\nnožíčka\nnožíčkami\nnožička\nnožíčkoch\nnožíčkom\nnožíčkov\nnožíčku\nnožíčky\nnožík\nnožísk\nnožisko\nnôž\nnôžka\nnožne\nnožnice\nnožnicový\nnožničiek\nnožničky\nnožný\nnožový\nNP\nNQY\nNR\nNRSR\nNRT\nNRX\nNS\nnskrutkovať\nNsP\nNSR\nNT\nntgenovanie\nntgenovať\nntgenový\nntievať\nntto\nNTW\nNTX\nNU\nňu\nnuáns\nnuansa\nnuansí\nnubilita\nnubuk\nnúd\nnudách\nnudám\nnudami\nnuda\nnudiaci\nnudista\nnudistický\nnudistka\nnudita\nnudiť\nnudizmus\nnudne\nnudnejší\nnudno\nnudnosť\nnudný\nnúdzach\nnúdzam\nnúdza\nnúdzí\nnúdzny\nnúdzovo\nnúdzový\nňufáčik\nňufáčisko\nňufák\nnugat\nnugát\nnugatmi\nnugátmi\nnugatový\nnugátový\nnuget\nnugget\nNugget\nnuggetov\nnuggety\nňucháčik\nňucháč\nňuchať\nňuch\nňuchnúť\nňuchový\nňuchtiť\nnúkanie\nnúkaný\nnúkať\nnukleárny\nnukleofil\nnukleogenéza\nnukleol\nnukleolus\nnukleón\nNukleón\nNukleóne\nnukleónov\nnukleoplazma\nNukleové\nnukleového\nnukleových\nnukleus\nnuklid\nnuklidov\nnuklidy\nnula\nnulifikácia\nnulifikácie\nnulifikovať\nnulipara\nnulita\nnulitný\nnulovanie\nnulovať\nnulovo\nnulový\nnultý\nnúmen\nnumerácia\nnuméraire\nnumerál\nnumerale\nnumeratív\nnumeratívny\nnumericky\nnumerický\nnumero\nnumidia\nnumier\nnumiz\nnumizmatický\nnumizmatička\nnumizmatikanumizmatik\nnumizmatika\nnumizmatik\nnunatek\nnunciatúrach\nnuncius\nnuncius\nnunčak\nNÚP\nnupciálny\nnuraghi\nnúrať\nňúrať\nnúria\nnús\nNuselský\nnutácia\nnútene\nnútenia\nnútenie\nNútením\nnútenosť\nnútený\nnútiaci\nnútievať\nnútiť\nnutkajúceho\nnutkanie\nnutkať\nnutkavo\nnutkavosť\nnutkavý\nnutne\nnutnejší\nnutno\nnutnosť\nnutný\nnutria\nnutričný\nnutriet\nnutrieta\nnutrí\nnutriový\nnutritívny\nnuworld\nnuž\nNV\nnvovovymenovaný\nNVY\nNW\nNWX\nNX\nNXY\nny\nNY\nnyala\nnyktalgia\nnyktalopia\nnyktofóbia\nnyktúria\nnylon\nnyloniek\nnylón\nnylonový\nnylónový\nnylóny\nnymburský\nNYME\nnýmf\nnymfa\nnymfea\nnymfeum\nnymfický\nnymfitída\nnymfománia\nnymfomanka\nnymfotómia\nnymphaeum\nnynfomanka\nnystagmus\nný\no\nó\nÓ\nô\noa\nOA\noáz\noázach\noázam\noáza\noázový\nOB\noba\nObadal\nObadala\nobadali\nobadať\nobádať\nobahniť\nobáj\nobája\nobaja\nobájili\nobájiť\nobaláchať\nobalamutená\nobalamutiť\nobal\nobalenie\nobalený\nobaliť\nobálka\nobálkov\nobálkový\nobalky\nobalmi\nobáločka\nobaľovací\nobaľovač\nobaľovačovi\nobaľovanie\nobaľovaný\nobaľovať\nobalovina\nobalovo\nobalový\nobanovať\nobapolne\nobapolnosť\nobapolný\nobáranie\nobárať\nobar\nobarenia\nobarenie\nobarenina\nobarený\nobariť\nobarový\nobarte\nobásnenie\nobásnili\nobatzter\nobáv\nobávajúci\nobávaný\nobávať\nobava\nobcovaní\nobcovania\nobcovanie\nobcovať\nobč\nobčadiť\nobčakávajú\nobčakávať\nobčakúvať\nobčan\nobčanova\nobčanove\nobčanovej\nobčanovu\nobčanovým\nobčas\nobčasne\nobčasník\nobčasný\nobčerstvenie\nobčerstvený\nobčerstvi\nobčerstvime\nobčerstvite\nobčerstviť\nobčerstvovať\nobčerstvujúca\nobčerstvujúcej\nobčerstvujúci\nobčerstvujúcim\nobčerstvujúco\nobčerstvujúcom\nobčesať\nobčiahnutá\nobčiahnuť\nobčian\nobčianka\nobčianskoprávny\nobčiansky\nobčiansky\nobčianstvach\nobčianstvam\nobčianstvo\nobčín\nobčina\nobčuť\nobďaleč\nobdar\nobdarený\nobdarený\nobdariť\nobdarovane\nobdarovania\nobdarovanie\nobdarovaniu\nobdarovaný\nobdarovať\nobdarovával\nobdarovávať\nobdarte\nObdarúvanie\nobdarúvaním\nobdarúvať\nobdenník\nobdiaľ\nobdierať\nobdiv\nobdive\nobdivne\nobdivný\nobdivovanie\nobdivovaný\nobdivovateľ\nobdivovateľka\nobdivovať\nobdivuhodne\nobdivuhodnosť\nobdivuhodný\nobdivujúcimi\nobdĺžnik\nobdĺžnikovitý\nobdĺžnikový\nobdĺžnikový\nobdĺžny\nobdoba\nobdobie\nobdobne\nobdobnosť\nobdobný\nobdobný\nobdôd\nobdokovský\nobdraný\nobdrať\nobdratý\nobdriapať\nobdrieť\nobdržané\nobdržaného\nobdržanej\nobdržanie\nobdržanú\nobdržaných\nobdržať\nobdukcia\nobdukovať\nobecať\nobec\nobecenstvo\nObeckov\nObeckova\nObeckove\nobecne\nobecnejší\nobecný\nobe\nobeda\nobedár\nobedármi\nobed\nobediencia\nobedík\nobedňajší\nobedný\nobedovanie\nobedovať\nobedový\nobedúvať\nobehať\nobehávať\nobeh\nobehnúť\nobehový\nobelasieť\nobelej\nobelejme\nobelejte\nobelejú\nobelejúc\nobelenie\nobelieť\nobelievať\nobelisk\nobera\noberač\noberače\noberačka\noberačkový\noberaču\noberajúci\noberák\noberania\noberanie\noberaním\noberaný\noberať\noberavý\noberky\nOberon\noberuč\noberučne\noberučný\nobesencovom\nobesenec\nobesenie\nobesením\nobesený\nobesiť\nobetavci\nobetavcov\nobetavo\nobetavosť\nobetavý\nobeta\nobeť\nobetisko\nobetište\nobetný\nobetovania\nobetovanie\nobetovaním\nobetovaný\nobetovať\nobetujúci\nobetúvať\nobezita\nobezlička\nobézny\nobežív\nobeživo\nobežnica\nobežník\nobežníkový\nobežný\nObFZ\nobháčkovať\nobhádzať\nobhadzovaní\nobhadzovať\nobhádž\nobhádže\nobhádžem\nobhádžeme\nobhádžeš\nobhádžete\nobhádžme\nobhádžte\nobhádžu\nobhádžuc\nobhájaca\nobhájca\nobhajca\nobhájcov\nobhájcovia\nobhájenia\nobhájenie\nobhájením\nobhájeniu\nobhájený\nobhájiť\nobhajkyňa\nobhajob\nobhajôb\nobhajoba\nobhajobný\nobhajovací\nobhajovania\nobhajovanie\nobhajovaním\nobhajovaniu\nobhajovaný\nobhajovateľ\nobhajovateľka\nobhajovať\nobhajujúci\nobháňať\nobhárať\nobhliadač\nobhliadaným\nobhliadať\nobhliadka\nobhliadnutí\nobhliadnuť\nobhmatať\nobhniť\nobhnívať\nobhodiť\nobhohrávať\nobhor\nobhorené\nobhorenej\nobhorenú\nobhorených\nobhorenými\nObhorený\nobhorieť\nobhorky\nobhorok\nobhospodárenie\nobhospodárený\nobhospodári\nobhospodária\nobhospodáril\nobhospodárili\nobhospodárim\nobhospodáriť\nobhospodarovania\nobhospodarovanie\nobhospodarovaním\nobhospodarovaniu\nobhospodarovaný\nobhospodarovať\nobhradiť\nobhrázať\nobhŕknuť\nobhrň\nobhŕňať\nobhrnie\nobhrniem\nobhrnieme\nobhrnieš\nobhrniete\nobhrňme\nobhrňte\nobhrnúť\nobhryz\nobhrýzanie\nobhrýzať\nobhryzená\nobhryzené\nobhryzenie\nobhryzenou\nobhryzie\nobhryziem\nobhryzieme\nobhryzieš\nobhryziete\nobhrýzla\nobhrýzli\nobhrýzlo\nobhryzme\nobhryzok\nobhrýzol\nobhryzte\nobhrýzť\nobhryzú\nobhryzúc\nobch\nobchádzajúci\nobchádzanie\nobchádzaný\nobchádzať\nobchádzka\nobchádzkový\nobchendovať\nobchlopiť\nobchmatkávať\nobchod\nobchodené\nobchodenej\nobchodených\nobchodík\nobchodiť\nobchodne\nobchodnícky\nobchodníctvo\nobchodníctvom\nobchodníčka\nobchodník\nobchodníkovej\nobchodno\nobchodnopolitický\nobchodný\nobchodobateľnosť\nobchodovacieho\nobchodovanie\nobchodovaný\nobchodovateľnosť\nobchodovateľný\nobchodovať\nobchodujúci\nobchôdzka\nobchôdzok\nobchvacovať\nobchvat\nobchvátiť\nobchvatmi\nobchvatný\nObchytané\nobchytaných\nobchytať\nobchytávať\nobchytiť\nobchytkávať\nobídenie\nobidne\nobidný\nobíduc\nobidva\nobidvaja\nobidve\nobidvoch\nobidvoje\nobidvom\nobidvoma\nobidvomi\nobiehajúci\nobiehajúci\nobiehané\nobiehania\nobiehanie\nobiehaním\nobiehať\nobielenie\nobielený\nobieliť\nobielka\nobieňať\nobiet\nobíjanie\nobíjaný\nobíjať\nobiliek\nobilie\nobilka\nobilnica\nobilnín\nobilninár\nobilninársky\nobilninárstvach\nobilninárstvam\nobilninárstvo\nobilnina\nobilninový\nobilný\nobilovina\nobísť\nobitie\nobiť\nobitý\nobj\nobjala\nobjali\nobjal\nobjalo\nobjasnenie\nobjasnenosť\nobjasnený\nobjasni\nobjasnime\nobjasnite\nobjasniť\nobjasňovaného\nobjasňovaní\nobjasňovania\nobjasňovanie\nobjasňovaním\nobjasňovaniu\nobjasňovanú\nobjasňovať\nobjasňujúci\nobjatie\nobjať\nobjato\nobjatý\nobjav\nobjavenie\nobjavený\nobjaviteľ\nobjaviteľka\nobjaviteľsky\nobjaviteľský\nobjaviť\nobjavne\nobjavnosť\nobjavný\nobjavované\nobjavovaní\nobjavovania\nobjavovanie\nobjavovaním\nobjavovaniu\nobjavovať\nobjavujúci\nobjazdi\nobjazdí\nobjedá\nobjedaj\nobjedajme\nobjedajte\nobjedajú\nobjedajúc\nobjedám\nobjedáme\nobjedaná\nobjedanie\nobjedáš\nobjedáte\nobjedať\nobjedávať\nobjedená\nobjednane\nobjednania\nobjednanie\nobjednaním\nobjednaniu\nobjednaný\nobjednať\nobjednáva\nobjednávací\nobjednávaj\nobjednávajme\nobjednávajte\nobjednávajú\nobjednávajúc\nobjednával\nobjednávala\nobjednávali\nobjednávalo\nobjednávam\nobjednávame\nobjednávanie\nobjednávaný\nobjednávaš\nobjednávať\nobjednávate\nobjednávateľ\nobjednávateľka\nobjednávateľský\nobjednávka\nobjednávkový\nobjedza\nobjedze\nobjekcia\nobjekt\nobjektív\nobjektíve\nobjektivista\nobjektivisticky\nobjektivistický\nobjektivistka\nobjektivita\nobjektivizácia\nobjektivizačný\nobjektivizmus\nobjektivizovania\nobjektivizovanie\nobjektivizovaný\nobjektivizovať\nobjektívnosť\nobjektívny\nobjektívový\nobjektmi\nobjektovo\nobjektový\nobjem\nobjemnosť\nobjemný\nobjemove\nobjemovo\nobjemový\nobjesť\nobjím\nobjímajúca\nobjímajúce\nobjímajúci\nobjímajúco\nobjímajúcu\nobjímanie\nobjímať\nobjíme\nobjímem\nobjímeme\nobjímeš\nobjímete\nobjímka\nobjímkový\nobjímme\nobjímte\nobjímu\nobjímuc\nobjme\nobkášať\nobkiadzať\nobkladací\nobkladacie\nobkladacích\nobkladač\nobkladačka\nobkladačský\nobkladané\nobkladanie\nobkladať\nobklad\nobkladok\nobkladový\nobklásť\nobkĺď\nobkĺdie\nobkĺdú\nobkledáme\nobkledáš\nobkledáte\nobklediem\nobkleďme\nobkleďte\nobkledúc\nobkliesniť\nobkliesňovať\nobklopeniu\nobklopený\nobklopiť\nobklopovať\nobklopujúci\nobkľúčenia\nobkľúčenie\nobkľúčený\nobkľúčiť\nobkľučovania\nobkľučovať\nobkľučujúci\nobkmásať\nobkolesenie\nobkolesený\nobkolesiť\nobkolesovať\nobkónický\nobkopávať\nobkračoval\nobkračovala\nobkračovali\nobkračovalo\nobkračovať\nobkračuj\nobkračuje\nobkračujem\nobkračujeme\nobkračuješ\nobkračujete\nobkračujme\nobkračujte\nobkračujú\nobkračujúc\nobkráda\nobkrádaj\nobkrádajme\nobkrádajte\nobkrádajú\nobkrádajúc\nobkrádal\nobkrádala\nobkrádali\nobkrádalo\nobkrádam\nobkrádame\nobkrádaš\nobkrádať\nobkrádate\nobkradla\nobkradli\nobkradlo\nobkradne\nobkradnem\nobkradneme\nobkradneš\nobkradnete\nobkradni\nobkradnime\nobkradnite\nobkradnú\nobkradnúc\nobkradnúť\nobkradol\nobkratný\nobkreslené\nobkresli\nobkreslí\nobkreslia\nobkresliac\nobkreslil\nobkreslila\nobkreslili\nobkreslilo\nobkreslím\nobkreslime\nobkreslíme\nobkreslíš\nobkresliť\nobkreslite\nobkreslíte\nobkresľoval\nobkresľovala\nobkresľovali\nobkresľovalo\nobkresľovať\nobkresľuj\nobkresľuje\nobkresľujem\nobkresľujeme\nobkresľuješ\nobkresľujete\nobkresľujme\nobkresľujte\nobkresľujú\nobkresľujúc\nobkríknuť\nobkročenie\nobkročiť\nobkročmo\nobkročný\nobkročovať\nobkrúcať\nobkrútený\nobkrútiť\nobkrúžiť\nobkúkať\nobkukávať\nobkukovať\nobkydať\nobl\noblácia\nobláčik\noblačiť\nobláčka\nobláčkami\nobláčkoch\nobláčkom\nobláčkov\nobláčku\nobláčky\noblačno\noblačnosť\noblačný\nobláčok\noblafnúť\nobľahči\nobľahčime\nobľahčite\nobľahčiť\nobľahčovať\nobľahnutie\nobľahnúť\nobľahnutý\noblak\noblakové\noblám\noblámať\nobláme\noblámem\noblámeme\noblámeš\noblámete\noblámme\noblamovať\noblámte\noblámu\noblámuc\noblápať\noblapiť\noblapkávať\noblasť\noblastne\noblastný\noblát\noblátka\noblátkový\nobľaviť\noblázniť\noblažiť\noblažovať\noblažujúca\noblažujúce\noblažujúcou\noblažujúcu\noblbnúť\noblbol\noble\noblečene\noblečenie\noblečený\noblečok\noblednúť\noblejšej\noblejší\noblejšia\noblejšie\noblejšieho\noblejšiemu\noblejších\noblejším\noblejšími\noblejšiu\noblejšom\noblejšou\noblek\noblekový\noblemovať\noblepeniu\noblepený\noblepiť\noblepovaná\noblepovanie\noblepovať\noblesknúť\nobleť\noblet\nobletieť\nobletovať\nobletúvať\noblez\noblezený\nobležanie\nobležať\nobleženia\nobliačný\nobliak\nobliate\nobliatie\nobliať\nobličaj\nobličajový\noblička\nobličkovitý\nobličkový\nobliecť\nobliecť\nobliečik\nobliečka\nobliehajúci\nobliehanie\nobliehaný\nobliehať\nobliekaného\nobliekanie\nobliekareň\nobliekáreň\nobliekarňach\nobliekárňach\nobliekarňam\nobliekárňam\nobliekať\nobliekavate\nobliepať\nobliesť\noblietanie\noblietať\noblietnuť\noblievač\noblievačka\noblievané\noblievanie\noblievaním\noblievať\noblievka\nobliga\nobligácia\nobligačný\nobligátnosť\nobligátny\nobligatórnosť\nobligatórny\nobligo\noblina\nobliterácia\noblízať\nobliznúť\nobliznutý\noblizovaní\noblizovanie\noblizovať\noblíž\noblíže\noblížem\noblížeme\noblížeš\noblížete\noblížme\noblížte\noblížu\noblížuc\noblo\nobločiar\noblôčik\noblôčka\noblôčkami\noblôčkoch\noblôčkom\noblôčkov\noblôčku\noblôčky\nobločnica\nobločný\nobloh\nobloha\noblok\noblokový\noblomiť\noblomný\noblomok\noblomovský\noblomovština\noblosť\nobloženie\nobložený\nobložiť\nobľuba\nobľúbene\nobľúbenec\nobľúbenejší\nobľúbenkyňa\nobľúbenosť\nobľúbenosti\nobľúbenosťou\nobľúbený\nobľúbiť\nobľubovať\noblúčik\noblúčikovitý\noblúčikový\noblúčka\noblúčkami\noblúčkoch\noblúčkom\noblúčkov\noblúčkovitý\noblúčkový\noblúčku\noblúčky\nobluda\noblúdiť\nobludne\nobludnosť\nobludný\nobluhovač\noblúk\noblúkovite\noblúkovito\noblukovitý\noblúkovitý\noblúkový\noblúzniť\noblý\nobmäkčení\nobmäkči\nobmäkčime\nobmäkčite\nobmäkčiť\nobmäknúť\nobmastenie\nobmedzene\nobmedzenec\nobmedzenie\nobmedzenosť\nobmedzený\nobmedzi\nobmedziť\nobmedzovacej\nobmedzovacia\nobmedzovacie\nobmedzovacích\nobmedzovač\nobmedzovače\nobmedzovane\nobmedzovanie\nobmedzovaný\nobmedzovať\nobmedzujúci\nobmedzujúci\nobmena\nobmenenie\nobmenený\nobmeniť\nobmeňovaniu\nobmeňovaný\nobmeňovať\nobmeňujúci\nobmieňa\nobmieňaj\nobmieňajme\nobmieňajte\nobmieňajú\nobmieňajúc\nobmieňal\nobmieňala\nobmieňali\nobmieňalo\nobmieňam\nobmieňame\nobmieňania\nobmieňanie\nobmieňaním\nobmieňaniu\nobmieňaný\nobmieňaš\nobmieňať\nobmieňate\nobmotať\nobmotávať\nobmurovaný\nobmurovať\nobmuroviek\nobmurovka\nobmurovkami\nobmurovku\nobmurovky\nobmytím\nobmyť\nobmytých\nobmytým\nobmývať\nobnaženia\nobnaženie\nobnaženiu\nobnažený\nobnažiť\nobnažovane\nobnažovania\nobnažovanie\nobnažovať\nobnažujúcou\nobnôcka\nobnos\nobnosenia\nobnosený\nobnosiť\nobnovavanie\nobnova\nobnovene\nobnovenie\nobnoveno\nobnovený\nobnoviteľný\nobnoviteľov\nobnoviť\nobnovný\nobnovovací\nobnovovane\nobnovovanieN\nobnovovaný\nobnovovateľ\nobnovovateľka\nobnovovateľský\nobnovovať\nobnovujúci\nobnubilácia\nobočie\nobodované\nobodovaní\nobodovať\nobodrať\nobodrej\nobodrejme\nobodrejte\nobodrejú\nobodrejúc\nobodrieť\nobodriť\nobodrovať\nobohacovania\nobohacovaniach\nobohacovanie\nobohacovaním\nobohacovaniu\nobohacovaný\nobohacovať\nobohatene\nobohatenieN\nobohatený\nobohatiť\nobohnaný\nobohnať\nobohraný\nobohrať\nobohrávaná\nobohrávanie\nobohrávať\noboch\nobojako\nobojakosť\nobojaký\nobojček\noboje\nobojnož\nobojok\nobojperný\nobojpohlavný\nobojruč\nobojručne\nobojručný\nobojsmerne\nObojsmernosť\nobojsmerný\nobojstranne\nobojstrannosť\nobojstranný\nobojživelne\nobojživelníci\nobojživelnícky\nobojživelník\nobojživelníkovi\nobojživelnosť\nobojživelný\nobol\nobole\nobolus\nobom\noboma\nobomi\nobomknúť\nobomkýnať\nobopäť\nobopínať\noboplávanie\noboplávať\noboplaviť\nobopnúť\noboraním\noborať\noborávač\noborávaním\noborávať\noborB\nOborín\nOborína\nOboríne\noboriť\noborou\nobosiela\nobosielali\nobosielame\nobosielanie\nobosielaniu\nobosielať\noboslal\noboslala\nOboslala\noboslali\noboslalo\noboslaného\noboslaní\noboslanie\noboslaniu\noboslanom\noboslaných\noboslať\nobostierajúce\nobostierať\nobostlať\nobostrená\nobostretý\nobostrieť\nobostrúc\nobošle\nobošlem\nobošleme\nobošleš\nobošlete\nobošli\nobošlime\nobošlite\nobošlú\nobošlúc\nobotkali\nobotkaný\nobotkať\noboznámenia\noboznámenie\noboznámením\noboznámeniu\noboznámený\noboznámiť\noboznamovací\noboznamovacom\noboznamovacou\noboznamovania\noboznamovanie\noboznamovaním\noboznamovaniu\noboznamovaný\noboznamovať\noboznať\nobozretne\nobozretnosť\nobozretný\nobr\nobrába\nobrábací\nobrábač\nobrábačka\nobrábaj\nobrábajme\nobrábajte\nobrábajú\nobrábajúc\nobrábajúci\nobrábal\nobrábala\nobrábali\nobrábalo\nobrábam\nobrábame\nObrábame\nobrábane\nobrábanie\nobrábaný\nobrábaš\nobrábať\nobrábate\nobrábateľ\nobrábateľka\nobrábateľný\nobracač\nobracačka\nobracajúci\nobracaného\nobracanie\nobracať\nobrad\nobradne\nobradnícky\nobradníčka\nobradník\nobradnosť\nobradný\nobradoslovie\nobradový\nobrán\nobraná\nobranár\nobranársky\nobranárstvo\nobráňať\nobrana\nobranca\nobrané\nobraného\nobrániť\nobrankyňa\nobranno\nobranný\nobraňovanie\nobraňovať\nobranú\nobranyschopnosť\nobranyschopný\nobrast\nobrastanie\nobrastať\nobrastene\nobrastený\nobrasti\nobrastime\nobrastite\nobrásť\nobrat\nobrátenci\nobrátene\nobrátenec\nobrátenie\nobrátený\nobrátiť\nobrátka\nobrátkomera\nobrátkomer\nobrátkový\nobratmi\nobratne\nobratník\nobratnosť\nobratný\nobrato\nobratovo\nobratovosť\nobratovosti\nobratovosťou\nobratový\nobrať\nobratý\nobrazáreň\nobrazárňach\nobrazárňam\nobraz\nobrazec\nobraziť\nobrazivosť\nobrazivý\nobrázkový\nobrazne\nobraznosť\nobrazný\nobrázok\nobrazotvornosť\nobrazotvorný\nobrazovka\nobrazovkový\nobrazovo\nobrazový\nobrážtek\nobrepcia\nobrezaný\nobrezať\nobrezávať\nobrezok\nobrezovať\nobrezujúci\nobrhnúť\nobria\nobriadiť\nobrie\nobrieho\nobriezkaN\nobrích\nobrím\nobrími\nobriu\nobŕn\nobrna\nobrnenec\nobrnený\nobrniť\nobrobenia\nobrobenie\nobrobený\nobrobiť\nobrobkov\nobrobky\nobrobňa\nobrobne\nobrobni\nobrobniach\nobrobňou\nobrobňu\nobročia\nobročie\nobročil\nobročiť\nobročme\nobročte\nobroda\nobrodencov\nobrodenecký\nobrodenie\nobrodenský\nobrodenstvo\nobrodený\nobrodiť\nobrodne\nobrodný\nobrodzovací\nobrodzovať\nobrogácia\nobrok\nOBROVA\nobrovitánsky\nobrovitý\nobrovsky\nobrovský\nobrovu\nobrozdovať\nobrtlík\nobrúbať\nobrúbava\nobrúbavaj\nobrúbavajme\nobrúbavajte\nobrúbavajú\nobrúbavajúc\nobrúbaval\nobrúbavala\nobrúbavali\nobrúbavalo\nobrúbavam\nobrúbavame\nobrúbavaš\nobrúbavať\nobrúbavate\nobruba\nobrúbe\nobrúbem\nobrúbeme\nobrúbenie\nobrúbený\nobrúbeš\nobrúbete\nobrúbiť\nobrubník\nobrubný\nobrubovaní\nobrubovanie\nobrubovať\nobrubový\nobrúbu\nobrúbuc\nobruče\nobruč\nobrúčka\nObručné\nobrusa\nobrusaný\nobrus\nobrúsenie\nobrúsením\nobrúsený\nobrúsiť\nobrúskový\nobrusnosť\nobrúsok\nobrusovaní\nobrusovania\nobrusovanie\nobrusovaním\nobrusovať\nobrusovín\nobrusoviny\nobruštek\nobŕv\nobrva\nobrvách\nobrvám\nobrve\nobrvou\nobrvu\nobrvy\nobry\nobrýknuť\nobrykovanie\nobrykovať\nobryňa\nobrys\nobrysovitý\nobrysový\nobryte\nobrý\nobsadene\nobsadenie\nobsadený\nobsadiť\nobsadzovací\nobsadzovanieN\nobsadzovaný\nobsadzovať\nobsadzujúci\nobsah\nobsahovaný\nobsahovať\nobsahove\nobsahovo\nobsahovosť\nobsahový\nobsahujúci\nobsažne\nobsažnosť\nobsažný\nobscenita\nobscénnosť\nobscénny\nOBSE\nobseď\nobsedantný\nobsedieť\nobsekanými\nobsekať\nobsekávať\nobservácia\nobservancia\nobservatórium\nobsesia\nobsesný\nobschnúť\nobschýnať\nobsiahlosť\nobsiahly\nobsiahnú\nobsiahnutie\nobsiahnuť\nobsiahnutý\nobsiata\nobsiate\nobsiatej\nobsiatie\nobsiať\nobsiaty\nobsiatych\nobsiatym\nobsidián\nobsidiánový\nobsievať\nobsignácia\nobskakovaný\nobskakovať\nobskočiť\nobskurant\nobskurnosť\nobskúrnosť\nobskúrny\nobslúh\nobsluha\nobsluhovací\nobsluhovacích\nobsluhovacím\nobsluhovač\nobsluhovačka\nobsluhovania\nobsluhovanie\nobsluhovaniu\nobsluhovaný\nobsluhovateľ\nobsluhovateľov\nobsluhovať\nobsluhujúca\nobsluhujúci\nobsluhujúcich\nobsluhujúcim\nobslúženia\nobslúženie\nobslúženiu\nobslúžený\nobslúžiť\nobslužné\nobslužno\nobslužný\nobsmieva\nobsmievaná\nobsmievať\nobsmŕdač\nobsmŕdať\nobsnovať\nobsoletný\nobsrať\nobstaranie\nobstaraný\nobstarať\nobstarávacej\nobstarávací\nobstarávacia\nobstarávacie\nobstarávacieho\nobstarávacích\nobstarávacím\nobstarávacími\nobstarávaciu\nobstarávacom\nobstarávacou\nobstarávanie\nobstarávaný\nobstarávateľ\nobstarávateľa\nobstarávatelia\nobstarávateľmi\nobstarávateľoch\nobstarávateľom\nobstarávateľov\nobstarávateľovi\nobstarávateľský\nobstarávať\nobstarne\nobstarnúť\nobstarný\nobstarožne\nobstarožný\nobstáta\nobstáte\nobstátí\nobstátu\nobstať\nobstáť\nobstáty\nobstavaním\nobstavaný\nobstavať\nobstávať\nobstavenia\nobstavenie\nobstavením\nobstaveniu\nobstavený\nobstaviť\nobstávka\nobstávke\nobstávkou\nobstávky\nobstávok\nobstavovanie\nobstavovaniu\nobstavovať\nobstavujeme\nobstavujú\nobstinácia\nobstipácia\nobstojne\nobstojný\nobstrapkať\nobstrek\nobstriekať\nobstrihať\nobstriháva\nobstrihávaj\nobstrihávajme\nobstrihávajte\nobstrihávajú\nobstrihávajúc\nobstrihával\nobstrihávala\nobstrihávali\nobstrihávalo\nobstrihávam\nobstrihávame\nobstrihávaš\nobstrihávať\nobstrihávate\nobstrihnúť\nobstrihovať\nObstúpení\nobstúpiť\nobstupovať\nobsychať\nobsypaný\nobsypať\nobsýpať\nobsypávať\nobsypú\nobsypúc\nobši\nobšije\nobšijem\nobšijeme\nobšiješ\nobšijete\nobšijú\nobšijúc\nobšil\nObšil\nobšila\nobšili\nobšilo\nobšime\nobšírnosť\nobšírny\nobšite\nobšiť\nobšitý\nobšívané\nobšívanej\nobšívaní\nobšívanie\nObšívaný\nobšívať\nobšivkár\nobšívka\nobšklbať\nobškvŕknuť\nobšmierať\nobšmietač\nobšmietať\nobšmŕdač\nobšmŕdať\nobšniapať\nobšťasňujúce\nobšťastnenie\nobšťastnený\nobšťastni\nobšťastnime\nobšťastnite\nobšťastniť\nobšťastňovaný\nobšťastňovať\nobšťastňujúca\nobšťastňujúce\nobšťastňujúci\nobštipkať\nobštipkávať\nobštrukcia\nobštrukčne\nobštrukčnosť\nobštrukčný\nobštruovať\nobšúchaný\nobšúchať\nobšuchnúť\nobtáčanie\nobtáčať\nobťah\nobťahovanie\nobťahovať\nobťapkávať\nobťarchať\nobťať\nobťažené\nobťaženého\nobťažení\nobťažených\nobťažieť\nobťažiť\nobťažkaný\nobťažkať\nobťažkávať\nobťažne\nobťažnosť\nobťažný\nobťažovania\nobťažovanie\nobťažovaním\nobťažovaniu\nobťažovaný\nobťažovať\nobťažujúca\nobťažujúce\nobťažujúceho\nobťažujúci\nobťažujúcim\nobťažujúcou\nobťažujúcu\nobtekajúci\nobtekanieN\nobtekať\nobtelefonovať\nobtiahnú\nobtiahnutie\nobtiahnutím\nobtiahnuť\nobtiahnutý\nobtiažach\nobtiažam\nobtiaž\nobtiažnosť\nobtiažnosti\nobtiažny\nobtierať\nobtínania\nobtínať\nobtláčať\nobtlač\nobtlačiť\nobtlačok\nobtĺcť\nobtĺkať\nobtočiť\nobtok\nobtokový\nobtrhaný\nobtrhať\nobtrhávať\nobtriasť\nobtrieť\nobtrúc\nobtúliť\nobtuľkať\nobtúzny\nobucha\nobúchať\nobuch\nobúš\nobúšiť\nobušok\nobuštek\nobutia\nobutie\nobutím\nobuť\nobutý\nobuvák\nobúvaní\nobúvania\nobúvanie\nobúvať\nobuv\nobuvnícky\nobuvníctvach\nobuvníctvam\nobuvníctvo\nobuvníčka\nobuvník\nobuvníkov\nobv\nobvädnúť\nobväz\nobväzísk\nobväzisko\nobväzíšť\nobväzišťa\nobväzišťami\nobväzište\nobväzišti\nobväzišťom\nobväzišťu\nobväzok\nobväzovať\nobväzový\nobverzia\nobveselenie\nobveseliť\nobveseľovať\nobvesenie\nobvešaný\nobvešať\nobvešiavať\nobvi\nobviazaný\nobviazať\nobviaž\nobviaže\nobviažem\nobviažeme\nobviažeš\nobviažete\nobviažme\nobviažte\nobviažu\nobviažuc\nobvije\nobvijem\nobvijeme\nobviješ\nobvijete\nobvijú\nobvijúc\nobvil\nobvila\nobvili\nobvilo\nobvime\nobvínadlá\nobvínadlo\nobvinenie\nobvinený\nobviniť\nobviňovania\nobviňovaniam\nobviňovaniami\nobviňovanie\nobviňovaním\nobviňovaniu\nobviňovaný\nobviňovať\nobviňujúci\nobvinúť\nobvite\nobviť\nobvitý\nobvod\nobvodný\nobvodovo\nobvodový\nobvoniavať\nobvykle\nobvyklejšej\nobvyklejší\nobvyklejšia\nobvyklejšie\nobvyklejšieho\nobvyklejšiemu\nobvyklejších\nobvyklejším\nobvyklejšími\nobvyklejšiu\nobvyklejšom\nobvyklejšou\nobvyklosť\nobvyklosti\nobvyklý\nObýc\nObyce\nObyciach\nobyč\nobyčaj\nobyčaj\nobyčajne\nobyčajne\nobyčajnosť\nobyčajný\nobyčajový\nobydlené\nobydlenej\nobydlených\nobydlie\nobytno\nobytný\nobyv\nobýva\nobývacíN\nobývačka\nobývaj\nobývajme\nobývajte\nobývajú\nobývajúc\nobýval\nobývala\nobývali\nobývalo\nobývam\nobývame\nobývania\nobývanie\nobývaniu\nobývaný\nobývaš\nobývať\nobývate\nobývateľ\nobyvateľ\nobyvateľka\nobývateľnosť\nobývateľný\nobyvateľova\nobyvateľský\nobyvateľstvo\nobzeranie\nobzerať\nobzízať\nobznámení\nobznámiť\nobzor\nobzorový\nobzretí\nObzretie\nobzrieť\nobzrúc\nobzvlášť\nobzvláštne\nobžaloba\nobžalobca\nobžalobkyňa\nobžalobný\nobžalovací\nobžalovacieho\nobžalovacom\nobžalovanie\nobžalovaný\nobžalovateľ\nobžalovať\nobžalúvací\nobžalúvať\nobžerstvo\nobžierať\nobžína\nobžiniek\nobžinkky\nobžinkoch\nobžinkom\nobžinkov\nobžinky\nobžiť\nobžív\nobživa\nobživiť\nobživovať\nobžrať\nocajchoval\nocajchovala\nocajchovali\nocajchovalo\nocajchovať\nocajchuj\nocajchuje\nocajchujem\nocajchujeme\nocajchuješ\nocajchujete\nocajchujme\nocajchujte\nocajchujú\nocajchujúc\nOccidental\noceán\nOceánia\noceánida\noceánijský\noceánit\noceanita\noceánograf\noceánografia\noceánografický\noceánológ\noceánológia\noceánsky\nocecnenia\nocediť\noceľami\nocelenie\nocelí\noceliach\noceliam\noceliar\noceliareň\noceliarensky\noceliarenský\noceliarňach\noceliarňam\noceliarsky\noceliarsky\noceliarstva\noceliarstve\noceliarstvo\noceliarstvom\noceliarstvu\noceľ\nocella\noceľobetón\noceľobetónový\noceľoliatín\noceľoliatina\noceľoryt\noceľorytina\noceľorytmi\nocelota\nocelot\noceľotlač\noceľotlače\noceľotlačou\nocelotmi\nocelotovi\nocelotový\noceľou\noceľova\noceľovať\noceľove\noceľovo\noceľovobelasý\noceľovomodrý\noceľovosivý\noceľový\noceľový\nocenenie\nocenený\nocengať\noceniteľný\noceniť\noceňovacej\noceňovací\noceňovacia\noceňovacie\noceňovacieho\noceňovacích\noceňovacím\noceňovacími\noceňovaciu\noceňovacom\noceňovacou\noceňovanie\noceňovaný\noceňovať\nocer\noceriť\nociachovaný\nociachovať\nocicať\nociedzať\nocieľka\nocieľok\nocigániť\nocinko\nocino\nocintľavieť\nocitá\nocitaj\nocitajme\nocitajte\nocitajú\nocitajúc\nocital\nocitala\nocitali\nocitalo\nocitám\nocitáme\nocitáš\nocitať\nocitáte\nocitáva\nocitávali\nocitnutí\nocitnutie\nocitnúť\nocitujem\nOcitujeme\nocko\nockov\nockove\nockovej\nockovho\nockovmu\nockovo\nockovou\nockovu\nockových\nockovým\nockovými\nocľažník\nocliť\noco\nocot\nOCR\noctami\noctan\noctanový\nOctáreň\nOctári\noctárni\nocte\noctoch\noctom\noctov\noctovalo\noctovať\noctovatenie\noctovatieť\noctovito\noctovitý\noctový\noctu\nocty\nocukrenie\nocukrený\nocukriť\nocukrovať\nocukroviť\nOč\nočačká\nočadiť\nočakávajúci\nočakávane\nočakávanejší\nočakávanie\nočakávaný\nočakávať\nočami\nočap\nočapí\nočapia\nočapiac\nočapil\nočapila\nočapili\nočapilo\nočapím\nočapíme\nočapíš\nočapiť\nočapíte\nočapme\nočapte\nočar\nočarene\nočarenie\nočareno\nočarenosť\nočarený\nočariť\nočarovane\nočarovanie\nočarovano\nočarovanosť\nočarovaný\nočarovať\nočarte\nočarujúcejšej\nočarujúcejší\nočarujúcejšia\nočarujúcejšie\nočarujúcejšieho\nočarujúcejšiemu\nočarujúcejších\nočarujúcejším\nočarujúcejšími\nočarujúcejšiu\nočarujúcejšom\nočarujúcejšou\nočarujúci\nočarujúco\nočarúvať\nočemeriť\nočernenie\nočernieť\nočernievať\nočerniť\nočerňovanie\nočerstvieť\nočervavieť\nočervenať\nočervenieť\nočervivieť\nočesať\nočesávať\nočičiek\nočičko\nočiek\nočiernenie\nočiernený\nočierni\nočiernia\nočierniac\nočiernil\nočiernila\nočiernili\nočiernilo\nočiernim\nočiernime\nočierniš\nočierniť\nočiernite\nočierňovanie\nočierňovať\noči\nočísk\nočisko\nočíslovania\nočíslovanie\nočíslovaný\nočíslovať\nočíst\nočistách\nočistám\nočistami\nočista\nočistec\nočístenejší\nočistenejší\nočistenia\nočisteniach\nočistenie\nočistením\nočisteniu\nočistený\nočisti\nočistime\nočistite\nočistiť\nočistne\nočistný\nočistom\nočistov\nočisťovací\nočisťovacíN\nočisťovania\nočisťovanie\nočisťovaním\nočisťovaniu\nočisťovaný\nočisťovať\nočistovu\nočisťujúci\nočíšťať\nočiť\nočitý\nočividne\nočividnosť\nočividný\nočko\nOčkov\nOčková\nočkovací\nočkovanie\nočkovaný\nočkovať\nOčkove\nočmudiť\nočne\nočnica\nočnicový\nočný\nOčová\nOčovej\nočovskej\nočovskí\nočovskom\nočovských\nOčovský\nočú\nočuchať\nočuchávať\nočuť\nod\nód\nODA\nódach\nodaliska\nódam\nodaň\nodaní\nodania\nodaním\nodávna\nóda\nodb\nodbafnúť\nodbahnenia\nodbahnenie\nodbahniť\nodbachnúť\nodbaľ\nodbaliť\nodbalíte\nodbaľovanie\nodbaľovať\nodbavenia\nodbavenie\nodbavením\nodbaveniu\nodbavený\nodbaviť\nodbavného\nodbavovací\nodbavovacia\nodbavovacie\nodbavovaciu\nodbavovaco\nodbavovania\nodbavovanie\nodbavovaním\nodbavovaniu\nodbavovaný\nodbavovať\nODBC\nodbeh\nodbehávať\nodbehlík\nodbehnutie\nodbehnúť\nodbehovať\nodbehúvať\nodberačka\nodberaného\nodberaní\nodberanom\nodberaných\nodberateľ\nodberateľka\nodberateľsky\nodberateľský\nodberať\nodber\nodberný\nodberový\nodbiehanie\nodbiehať\nodbierka\nodbíjajúce\nodbíjanie\nodbíjať\nodbité\nodbitie\nodbiť\nodblaniť\nodblaňovať\nodbleskami\nodblesk\nodblesknúť\nodblokovacieho\nodblokovacím\nodblokovanieN\nodblokovaný\nodblokovať\nodblysnúť\nodbočenieN\nodbočený\nodbočiť\nodbočka\nodbočkový\nodbočná\nodbočné\nodbočnej\nodbočnou\nodbočnú\nodbočných\nodbočnými\nodbočovaní\nodbočovania\nodbočovanie\nodbočovať\nodbočujúci\nodbojár\nodbojársky\nodboj\nodbojne\nodbojnícky\nodbojníctvach\nodbojníctvam\nodbojníctvo\nodbojník\nodbojnosť\nodbojný\nodbojový\nodboku\nodborár\nodborárka\nodborársky\nodbor\nodborne\nodbornícky\nodborníctvach\nodborníctvam\nodborníctvo\nodborníčka\nodborníčkaN\nodborník\nodborníkN\nodborníkovo\nodborno\nodbornosťN\nodborný\nodborove\nodborovo\nodborový\nodbremenenie\nodbremenený\nodbremeniť\nodbremeňovania\nodbremeňovanou\nodbremeňovať\nodbrzdenia\nodbrzdenie\nodbrzdením\nodbrzdeniu\nodbrzdenú\nodbrzdi\nodbrzdime\nodbrzdite\nodbrzdiť\nodbrzďovať\nodbúdať\nodbudnutej\nodbudnutú\nodbudnúť\nodbúrania\nodbúranie\nodbúraním\nodbúraniu\nodbúraný\nodbúrať\nodbúravania\nodbúravanie\nodbúravaním\nodbúravaniu\nodbúravaný\nodbúravať\nodburinenie\nodburiniť\nodbyrokratizovania\nodbyrokratizovanie\nodbyrokratizovaniu\nodbyrokratizovaný\nodbyrokratizovať\nodbytár\nodbyt\nodbytísk\nodbytisko\nodbytíšť\nodbytišťa\nodbytišťami\nodbytište\nodbytišti\nodbytišťom\nodbytišťu\nodbytmi\nodbytné\nodbytného\nodbytných\nodbytným\nodbytovo\nodbytový\nodbývaný\nodbývať\nodcestovaný\nodcestovať\nodcitované\nodcitovaním\nodcitovaných\nodcitovať\nodclonenie\nodcloniť\nodcrknúť\nodcudzene\nodcudzenia\nodcudzenie\nodcudzením\nodcudzeniu\nodcudzenosť\nodcudzený\nodcudzi\nodcudziteľný\nodcudziť\nodcudzovaní\nodcudzovania\nodcudzovanie\nodcudzovaniu\nodcudzovať\nodcupkať\nodcválať\nodcvičili\nodcvičiť\nodčapiť\nodčaptať\nodčerpania\nodčerpanie\nodčerpaním\nodčerpaniu\nodčerpaný\nodčerpať\nodčerpávania\nodčerpávanie\nodčerpávaním\nodčerpávaniu\nodčerpávaný\nodčerpávať\nodčesnúť\nodčinenieN\nodčinený\nodčiniť\nodčítacie\nodčítacích\nodčítacom\nodčítania\nodčítanie\nodčítanieV\nodčítaním\nodčítaniu\nodčítaný\nodčítať\nodčítavania\nodčítavanie\nodčítavaním\nodčítavaný\nodčítavať\nodčitovať\nodčlenenia\nodčlenenie\nodčlenením\nodčleneniu\nodčlenený\nodčleniť\nodčleňovaní\nodčleňovania\nodčleňovanie\nodčleňovaním\nodčleňovaniu\nodčleňovaných\nodčleňovať\nodd\nodďaleka\noddaľovala\nodďaľovania\noddaľovanie\nodďaľovanie\noddaľovaním\nodďaľovaním\noddaľovaniu\nodďaľovaniu\noddaľovaný\nodďaľovaný\noddaľovať\nodďalovať\nodďaľovať\noddaľuje\noddaľujú\noddane\noddanec\noddanie\noddaniť\noddano\noddanosť\noddaný\noddať\noddávačky\noddávať\noddávna\noddelene\noddelenie\noddelenosť\noddelený\noddeliteľnosť\noddeliteľný\noddeliť\noddeľovania\noddeľovanie\noddeľovaním\noddeľovaniu\noddeľovaný\noddeľovať\noddeľujúca\noddeľujúce\noddeľujúceho\noddeľujúcej\noddeľujúcemu\noddeľujúci\noddeľujúcich\noddeľujúcou\noddeľujúcu\noddialenie\noddialený\noddialiť\noddiaľovanie\nOddiaľovaním\noddiel\noddiele\noddielik\noddielmi\noddielovo\noddielový\noddiskutovať\noddisponované\noddisponovať\noddlž\noddlženia\noddlženiam\noddlženie\noddlžením\noddlženiu\noddlžený\noddlží\noddlžia\noddlžiac\noddlžil\noddlžila\noddlžili\noddlžilo\noddlžím\noddlžíme\noddlžíš\noddlžiť\noddlžíte\noddlžme\noddlžte\noddnes\noddojčený\noddojči\noddojčime\noddojčite\noddojčiť\noddola\noddrapiť\noddrapovať\noddrel\noddreli\noddŕhať\noddri\noddrie\noddrieť\noddrú\nodduriť\noddych\noddýchnutie\noddýchnuto\noddýchnuť\noddýchnutý\noddychovanie\noddychovať\noddychový\nodebnenie\nodební\nodebniť\nodedza\nodedzí\nodeň\nodeného\nodeón\nodér\noder\noderský\nOdesan\nOdesa\nodeský\nOdeta\nOdete\nodetia\nodeto\nOdety\nodetý\nodetý\nodeváci\nOdevák\nOdeváka\nodevákom\nodevákov\nodev\nodeve\nodevnícky\nodevníctvach\nodevníctvam\nodevníctvo\nodevno\nodevný\nodexpedovať\nodfačovať\nodfajčovať\nodfajkovať\nodfajkúvať\nodfakliť\nodfáranú\nodfárať\nodfarbenie\nodfarbenú\nodfarbi\nodfarbime\nodfarbite\nodfarbiť\nodfarbovač\nodfarbovaní\nodfarbovanie\nodfarbovať\nodfiknúť\nodfiltrovanie\nodfiltrovaný\nodfiltrovať\nodfiltruje\nodfláka\nodflákaj\nodflákajme\nodflákajte\nodflákajú\nodflákajúc\nodflákal\nodflákala\nodflákali\nodflákalo\nodflákam\nodflákame\nodflákanými\nodflákaš\nodflákať\nodflákate\nodfláknuť\nodflinkať\nodflinkávať\nodfotografovaná\nodfotografované\nodfotografovaním\nodfotografovať\nodfrčať\nodfrflať\nodfrkávať\nodfrknúť\nodfrkovať\nodfučať\nodfujazdiť\nodfúkať\nodfúkava\nodfúkavaj\nodfúkavajme\nodfúkavajte\nodfúkavajú\nodfúkavajúc\nodfúkaval\nodfúkavala\nodfúkavali\nodfúkavalo\nodfúkavam\nodfúkavame\nodfúkavaš\nodfúkavať\nodfúkavate\nodfúknutie\nodfúknuť\nodfukoval\nodfukovala\nodfukovali\nodfukovalo\nodfukovaní\nodfukovanie\nodfukovať\nodfukuj\nodfukuje\nodfukujem\nodfukujeme\nodfukuješ\nodfukujete\nodfukujme\nodfukujte\nodfukujú\nodfukujúc\nodgalopovať\nodgrgávať\nodgrgnúť\nodhaď\nodhad\nodhadca\nodhadí\nodhadnuteľný\nodhadnutieN\nodhadnúť\nodhadnutý\nodhadný\nodhadovania\nodhadovanie\nodhadovaním\nodhadovaný\nodhadovať\nodhadovo\nodhadový\nodhádzať\nodhadzovania\nodhadzovanie\nodhadzovaním\nodhadzovaný\nodhadzovať\nodhádž\nodhádže\nodhádžem\nodhádžeme\nodhádžeš\nodhádžete\nodhádžme\nodhádžte\nodhádžu\nodhádžuc\nodhajduchovať\nodhaĺ\nodhalenie\nodhaleno\nodhalený\nodhaliť\nodhaľovanie\nodhaľovaných\nodhaľovaným\nodhaľovanými\nodhaľovať\nodhamovať\nodháňaní\nodháňanie\nodháňať\nodhlásenieN\nodhlásený\nodhlásiť\nodhlasovanieN\nodhlasovaný\nodhlasovať\nodhlasúva\nodhlasúvaj\nodhlasúvajme\nodhlasúvajte\nodhlasúvajú\nodhlasúvajúc\nodhlasúval\nodhlasúvala\nodhlasúvali\nodhlasúvalo\nodhlasúvam\nodhlasúvame\nodhlasúvaš\nodhlasúvať\nodhlasúvate\nodhláška\nodhliada\nodhliadaj\nodhliadajme\nodhliadajte\nodhliadajú\nodhliadajúc\nodhliadal\nodhliadala\nodhliadali\nodhliadalo\nOdhliadalo\nodhliadam\nodhliadame\nodhliadaš\nodhliadať\nodhliadate\nodhliadnutí\nOdhliadnutie\nodhliadnutím\nodhliadnuť\nodhlučnenia\nodhlučnenie\nodhlučnený\nodhlučni\nodhlučnime\nodhlučnite\nodhlučniť\nodhmotni\nodhmotnime\nodhmotnite\nodhmotniť\nodhmotňovať\nodhmyziť\nodhmyzovací\nodhmyzovať\nodhodenec\nodhodenie\nodhodením\nodhodeniu\nodhodený\nodhodiť\nodhodky\nodhodlane\nodhodlanec\nodhodlanie\nodhodlanosť\nodhodlaný\nodhodlať\nodhodlávať\nodhodok\nodhodu\nodhody\nodholíte\nodhoľte\nodhopkať\nodhora\nodhorok\nodhováranie\nodhovárať\nodhovor\nodhovoriť\nodhovorte\nodhrab\nodhrabať\nodhrabávať\nodhrabnúť\nodhrabovať\nodhrabúvať\nodhrčať\nodhrčkať\nodhrdzavenie\nodhrdzi\nodhrdzí\nodhrdzia\nodhrdziac\nodhrdzil\nodhrdzila\nodhrdzili\nodhrdzilo\nodhrdzím\nodhrdzime\nodhrdzíme\nodhrdzíš\nodhrdziť\nodhrdzite\nodhrdzíte\nodhrdzovač\nodhrdzoval\nodhrdzovala\nodhrdzovali\nodhrdzovalo\nodhrdzovať\nodhrdzuj\nodhrdzuje\nodhrdzujem\nodhrdzujeme\nodhrdzuješ\nodhrdzujete\nodhrdzujme\nodhrdzujte\nodhrdzujú\nodhrdzujúc\nodhrkotať\nodhrm\nodhrmieť\nodhrň\nodhŕňač\nodhŕňače\nodhŕňačka\nodhŕňaču\nodhŕňadlo\nodhŕňania\nodhŕňanie\nodhŕňaním\nodhŕňať\nodhrnie\nodhrniem\nodhrnieme\nodhrnieš\nodhrniete\nodhrňme\nodhrnovať\nodhrňovať\nodhrňte\nodhrnuté\nodhrnutí\nodhrnutie\nodhrnúť\nodhrnutých\nodhrýzať\nodhryznuté\nodhryznúť\nodhryznutým\nodhundrať\nodhynie\nodhynutý\nodchádzajúci\nodchádzanie\nodchádzaním\nodchádzať\nodchlipnúť\nodchlopiť\nodchlórovať\nodchlpené\nodchlpenie\nodchlpiť\nodchod\nodchodiť\nodchodne\nodchodnosť\nodchodný\nodchodový\nodchová\nodchovaj\nodchovajú\nodchováme\nodchovanec\nodchovankyňa\nodchovaný\nodchovať\nodchovávať\nodchov\nodchovňa\nodchovný\nodchrapiť\nodchrchlať\nodchrchľať\nodchriaknuť\nodchýl\nodchýlenie\nodchýlený\nodchýliť\nodchýlka\nodchylne\nodchylnosť\nodchýlny\nodchylný\nodchyľovanie\nodchyľovať\nodchyľujúci\nodchytanie\nodchytať\nodchytáva\nodchytávaj\nodchytávajme\nodchytávajte\nodchytávajú\nodchytávajúc\nodchytával\nodchytávala\nodchytávali\nodchytávalo\nodchytávam\nodchytávame\nodchytávanie\nodchytávaš\nodchytávať\nodchytávate\nodchyt\nodchytenia\nodchytenie\nodchytiť\nodchytmi\nodiať\nodiaty\nódický\nodídenec\nodídenkyňa\nodídený\nodideologizovanej\nodideologizovať\nodíduc\nodiedzka\nodierajúci\nodieraní\nodieranie\nodieraním\nodieraniu\nodierať\nodieť\nodievačka\nodievaní\nodievania\nodievanie\nodievaním\nodievaniu\nodievať\nodievka\nOdin\nodinakadiaľ\nodinakiaľ\nodinštalovanie\nodinštalovaný\nodinštalovať\nodióznosť\nodiózny\nodistenie\nodistený\nodisti\nodistime\nodistite\nodistiť\nodisťovať\nodísť\nódium\nodivný\nodizolovaná\nodizolovanej\nodizolovaní\nodizolovanie\nodizolovaním\nodizolovanom\nodizolovať\nodjachať\nodjakživa\nodjazd\nodjazde\nodjazdením\nodjazdený\nodjazdi\nodjazdime\nodjazdite\nodjazdiť\nodjazdom\nodjazdov\nOdjazdová\nodjazdové\nodjazdovú\nodjazdu\nodjazdy\nodjedá\nodjedaj\nodjedajme\nodjedajte\nodjedajú\nodjedajúc\nodjedám\nodjedáme\nodjedáš\nodjedáte\nodjedať\nodjesť\nodkade\nodkadesi\nodkadeže\nodkadiaľ\nodkaľ\nodkáľať\nodkalenie\nodkalísk\nodkaliska\nodkaliská\nodkaliskách\nodkalisko\nodkaliskom\nodkalisku\nodkaliť\nodkaľovač\nodkaľovači\nodkalovania\nodkalovanie\nodkapať\nodkášať\nodkašlať\nodkašľať\nodkašlávať\nodkašliavať\nodkázania\nodkázanie\nodkázaním\nodkázaniu\nodkázanosť\nodkázanosti\nodkázanosťou\nodkázaný\nodkázať\nodkaz\nodkazovacej\nodkazovacia\nodkazovač\nodkazovanie\nodkazovaný\nodkazovať\nodkazový\nodkazujúci\nodkáž\nodkáže\nodkážem\nodkážeme\nodkážeš\nodkážete\nodkážme\nodkážte\nodkážu\nodkážuc\nodkedy\nodkedyže\nodkiaľ\nodkiaľkoľvek\nodkiaľsi\nodkiaľže\nodkľačať\nodkladací\nodkladanieN\nodkladaný\nodkladať\nodklad\nodkladný\nodkláňajúci\nodkláňaní\nodkláňaniu\nodkláňať\nodklápa\nodklápaj\nodklápal\nodklápam\nodklápaní\nodklápania\nodklápaš\nodklápať\nodklepať\nodklepávaní\nodklepávať\nodklep\nodklepnutia\nodklepnutie\nodklepnutím\nodklepnutiu\nodklepnúť\nodklepnutý\nodkliatie\nodkliať\nodkliaty\nodklínanie\nodklínať\nodklon\nodklonenia\nodklonenie\nodklonením\nodkloneniu\nodklonený\nodkloniť\nodklonové\nodklonovej\nodklonovú\nodklonovým\nodklonovými\nodklopení\nodklopenie\nodklopením\nodklopiť\nodklopný\nodklusať\nodkmasnúť\nodknísať\nodkojení\nodkojených\nodkojila\nodkolísať\nodkolíš\nodkolíše\nodkolíšem\nodkolíšeme\nodkolíšeš\nodkolíšete\nodkolíšme\nodkolíšte\nodkolíšu\nodkontrolovanie\nodkontrolovať\nodkopať\nodkopáva\nodkopávaj\nodkopávajme\nodkopávajte\nodkopávajú\nOdkopávajú\nodkopávajúc\nodkopával\nodkopávala\nodkopávali\nodkopávalo\nodkopávam\nodkopávame\nodkopávaš\nodkopávať\nodkopávate\nodkop\nodkopírovanie\nodkopírovaním\nodkopírovaný\nodkopírovať\nodkopnutie\nodkopnúť\nodkopnutý\nodkôrnený\nodkôrniť\nodkôrňovač\nodkôrňovaní\nodkôrňovania\nodkôrňovanie\nodkôrňovať\nodkosíliť\nodkosiť\nodkôstkovať\nodkotúľa\nodkotúľaj\nodkotúľajme\nodkotúľajte\nodkotúľajú\nodkotúľajúc\nodkotúľal\nodkotúľala\nodkotúľali\nodkotúľalo\nodkotúľam\nodkotúľame\nodkotúľaš\nodkotúľate\nodkotúľať\nodkrádať\nodkradnúť\nodkrágľoval\nodkrágľovala\nodkrágľovali\nodkrágľovalo\nodkrágľovaní\nodkrágľovať\nodkrágľuj\nodkrágľuje\nodkrágľujem\nodkrágľujeme\nodkrágľuješ\nodkrágľujete\nodkrágľujme\nodkrágľujte\nodkrágľujú\nodkrágľujúc\nodkrajované\nodkrajovaní\nodkrajovania\nodkrajovanie\nodkrajovaniu\nodkrajovať\nodkresať\nodkresliť\nodkresľovať\nodkrivkať\nodkročiť\nodkrojená\nodkrojení\nodkrojenia\nodkrojenie\nodkrojiť\nodkrojok\nodkrúcať\nodkrútených\nodkrúťiť\nodkrútiť\nodkrvené\nodkrvenia\nodkrytia\nodkrytie\nodkrytím\nodkrytiu\nodkryť\nodkrytý\nodkrýva\nodkrývaj\nodkrývajme\nodkrývajte\nodkrývajú\nodkrývajúc\nodkrýval\nodkrývala\nodkrývali\nodkrývalo\nodkrývam\nodkrývame\nodkrývaní\nodkrývania\nodkrývanie\nodkrývaním\nodkrývaniu\nodkrývaš\nodkrývať\nodkrývate\nodkukaný\nodkukať\nodkúkať\nodkukávať\nodkula\nodkundes\nodkúpenie\nodkúpený\nodkúpiť\nodkupovania\nodkupovanie\nodkupovaním\nodkupovaniu\nodkupovaný\nodkupovať\nodkúriť\nodkusovali\nodkvacnúť\nodkväcnúť\nodkvačiť\nodkvap\nodkvapkať\nodkvapkávaní\nodkvapkávanie\nodkvapkávať\nodkvapnúca\nodkvapnutie\nodkvapnúť\nodkvapový\nodkvet\nodkvicnúť\nodkvitať\nodkvitnutí\nodkvitnutie\nodkvitnúť\nodkysličenie\nodkysličiť\nodkysličovanie\nodkysličovaním\nodkysličovať\nodkývať\nodkývnuť\nodl\nodla\nodlaď\nodladenie\nodladený\nodladí\nodladia\nodladiac\nodladil\nodladila\nodladili\nodladilo\nodladím\nodladíme\nodladíš\nodladiť\nodladíte\nodlaďme\nodlaďovač\nodlaďovači\nodlaďoval\nodlaďovala\nodlaďovali\nodlaďovalo\nodlaďovaní\nodlaďovanie\nodlaďovať\nodlaďte\nodlaďuj\nodlaďuje\nodlaďujem\nodlaďujeme\nodlaďuješ\nodlaďujete\nodlaďujme\nodlaďujte\nodlaďujú\nodlaďujúc\nodľahčene\nodľahčenia\nodľahčenie\nodľahčením\nodľahčeniu\nodľahčený\nodľahči\nodľahčieť\nodľahčime\nodľahčite\nodľahčiť\nodľahčovacej\nodľahčovací\nodľahčovacia\nodľahčovacie\nodľahčovacieho\nodľahčovacích\nodľahčovacím\nodľahčovacími\nodľahčované\nodľahčovaní\nodľahčovania\nodľahčovanie\nodľahčovať\nodľahčujúci\nodľahlejšíF\nodľahlosť\nodľahlý\nodľahnúť\nodlákania\nodlákanie\nodlákaných\nodlákať\nodlakovač\nodlamovaní\nodlamovaniu\nodlamovať\nodlepenia\nOdlepenie\nodlepený\nodlepiť\nodlepovaním\nodlepovať\nodleptať\nodleptávať\nodleskami\nodlesk\nodlesnenia\nodlesnenie\nodlesnený\nodlesnili\nodlesňovali\nodlesňovania\nodlesňovanie\nodlesňovaním\nodleť\nodlet\nodletenej\nodletením\nodletenú\nodletieť\nodletovať\nodletový\nodletúvať\nodlev\nodleve\nodlez\nodležaná\nodležaní\nodležanie\nodležať\nodli\nodliadať\nodliata\nodliate\nodliatej\nodliatie\nodliatím\nodliatok\nodliatu\nodliať\nodliaty\nodliatych\nodliatym\nodliepať\nodlietaním\nodlietaný\nodlietať\nodlietavať\nodlietne\nodlievacíN\nodlievač\nodlievačovi\nodlievanie\nodlievaný\nodlieváreň\nodlievárne\nodlievárni\nodlievárňou\nodlievať\nodlievky\nodlievok\nodliezť\nodlifrovali\nodlifrovaného\nodlifrovať\nodlifruje\nodlíšenia\nodlíšenie\nodlíšením\nodlíšeniu\nodlíšený\nodlíšiť\nodlišne\nodlišnosť\nodlišný\nodlišovací\nodlišovacích\nodlišovaní\nodlišovania\nodlišovanie\nodlišovaniu\nodlišovať\nodlišujúca\nodlišujúce\nodlišujúci\nodliv\nodlive\nodliznutý\nodlo\nodlomenie\nodlomeniu\nodlomený\nodlomiť\nodlomok\nodlov\nodloženie\nodloženo\nodložený\nodložiť\nodľúbiť\nodlúčene\nodlúčenie\nodlúčenosť\nodlúčený\nodlučiteľnosť\nodlučiteľný\nodlúčiť\nodlučné\nodlučného\nodlučnému\nodlučnom\nodlučným\nodlučovač\nodlučovaní\nodlučovania\nodlučovanie\nodlučovaním\nodlučovať\nodľud\nodlúdiť\nodľudný\nodľudštenia\nodľudštenie\nodľudšteniu\nodľudštený\nodľudšti\nodľudštime\nodľudštite\nodľudštiť\nodľudšťovať\nodlúk\nodluka\nodlukách\nodlukám\nodlúkať\nodluke\nodlukou\nodluku\nodluky\nodlúpať\nodlúpe\nodlúpem\nodlúpeme\nodlúpenej\nodlúpenie\nodlúpeš\nodlúpete\nodlúpiť\nodlupnúť\nodlúpnutie\nodlúpnuť\nodlupovania\nodlupovanie\nodlupovať\nodlúpu\nodlúpuc\nodlupujúci\nodlúštiť\nodľúvať\nodmagnetizovač\nodmáhať\nodmäk\nodmäkla\nodmala\nodmalička\nodmaľovaná\nodmaľovanie\nodmaľovať\nodmárniť\nodmaskovanie\nodmaskovať\nodmastenia\nodmastenie\nodmasteniu\nodmastený\nodmasti\nodmastime\nodmastite\nodmastiť\nodmasťovač\nodmasťovanie\nodmasťovať\nodmašírovať\nodmena\nodmenenia\nodmenenie\nodmenený\nodmeniť\nodmeňovanie\nodmeňovaný\nodmeňovať\nodmenový\nodmerane\nodmeranie\nodmeranosť\nodmeraný\nodmerať\nodmeriavaní\nodmeriavanie\nodmeriavať\nodmerka\nodmerný\nodmeť\nodmetať\nodmetie\nodmetiem\nodmetieme\nodmetieš\nodmetiete\nodmeťme\nodmetok\nodmeťte\nodmetú\nodmetúc\nodmieňania\nodmieňanie\nodmieňať\nodmienkach\nodmienky\nodmiesť\nodmietajúce\nodmietajúci\nodmietanie\nodmietaný\nodmietať\nodmietavo\nodmietavý\nodmietnutie\nodmietnuť\nodmietnutý\nodmínoval\nodmínovali\nodmínované\nodmínovanej\nodmínovaní\nodmínovania\nodmínovanie\nodmínovaniu\nodmínovanom\nodmínovať\nodmínovávajú\nodmínovávanie\nodmínovávaním\nodmínovávať\nodmínuje\nodmínujú\nodmlad\nodmlada\nodmladi\nodmlč\nodmlčaní\nodmlčanie\nodmlčať\nodmlčiavať\nodmlieť\nodmĺk\nodmlkách\nodmlkám\nodmlka\nodmocnenec\nodmocnenia\nodmocni\nodmocnime\nodmocnina\nodmocnite\nodmocnitelia\nodmocniteľ\nodmocniteľmi\nodmocniteľoch\nodmocniteľom\nodmocniteľov\nodmocniteľovi\nodmocniteľu\nodmocniť\nodmocňovania\nodmocňovanie\nodmocňovať\nodmočiť\nodmokla\nodmoknúť\nodmontovanie\nodmontovaním\nodmontovaný\nodmontovateľný\nodmontovať\nodmontovávanie\nodmontovávať\nodmontúvať\nodmor\nodmorenia\nodmorenie\nodmorených\nodmoriť\nodmorovacie\nodmorovaní\nodmorovanie\nodmorovať\nodmorte\nodmotať\nodmotávať\nodmrazenia\nodmrazenie\nodmrazeniu\nodmrazený\nodmraziť\nodmrazovanie\nodmrazovať\nodmrazujúci\nodmrmlať\nodmrštiť\nodmŕvať\nodmrvenia\nodmrviť\nodmrvovať\nodmŕzať\nodmrznúť\nodmumlať\nodmykanie\nodmykať\nodmyknúť\nodmyslení\nodmyslieť\nodnárodnený\nodnárodni\nodnárodnime\nodnárodnite\nodnárodniť\nodnárodňovania\nodnárodňovanie\nodnárodňovať\nodnášané\nodnášaní\nodnášanie\nodnášaním\nodnášaných\nodnášať\nodňatieN\nodňato\nodňať\nodňatý\nodnaučiť\nodnedávna\nodnechcejúc\nodnechcieť\nodnepamäti\nodnesená\nodnesené\nodnesenia\nodnesenie\nodnesením\nodnesenú\nodnesených\nodniekade\nodniekadiaľ\nodniekiaľ\nodniesť\nodnikade\nodnikadiaľ\nodnikiaľ\nodním\nodnímaní\nodnímania\nodnímanie\nodnímaním\nodnímaniu\nodnímateľný\nodnímať\nodníme\nodnímem\nodnímeme\nodnímeš\nodnímete\nodnímme\nodnímte\nodnímu\nodnímuc\nodnose\nodnosiť\nodnova\nodnož\nodnožené\nodo\nodoberanie\nodoberaný\nodoberateľný\nodoberať\nodobierka\nodobranec\nodobrania\nodobranie\nodobraním\nodobraniu\nodobraný\nodobratie\nodobrato\nodobrať\nodobratý\nodobrenie\nodobrený\nodobriť\nodobrovať\nodoháňa\nodoháňaj\nodoháňajme\nodoháňajte\nodoháňajú\nodoháňajúc\nodoháňal\nodoháňala\nodoháňali\nodoháňalo\nodoháňam\nodoháňame\nodoháňaš\nodoháňať\nodoháňate\nodohnané\nodohnanie\nodohnať\nodohranie\nodohraný\nodohrať\nodohrávajúci\nodohrávať\nodoka\nodokrytá\nodokrytí\nodokrytie\nodokryť\nodokrýva\nodokrývaj\nodokrývajme\nodokrývajte\nodokrývajú\nodokrývajúc\nodokrýval\nodokrývala\nodokrývali\nodokrývalo\nodokrývam\nodokrývame\nodokrývaš\nodokrývať\nodokrývate\nodolanie\nodolaný\nodolateľný\nodolať\nodolávajúci\nodolávaní\nodolávania\nodolávanie\nodolávaniu\nodolávať\nodolne\nodolnosť\nodolný\nodomknutie\nodomknúť\nodomknutý\nodomkýnať\nodomykaní\nodomykania\nodomykanie\nodomykať\nodontalgia\nodontoblast\nodontogenéza\nodontogénia\nodontogénny\nodontológia\nodontóm\nodontometria\nodopäť\nodopieranie\nodopieraním\nodopieraný\nodopierať\nodopínanou\nodopínať\nodopnutie\nodopnúť\nodoprenie\nodoprený\nodopretieN\nodopretý\nodoprieť\nodoprúc\nodor\nodoral\nodorala\nodorali\nodoralo\nodorane\nodoranie\nodorant\nodoraný\nodorať\nodorávať\nodorie\nodoriem\nodorieme\nodorieš\nodoriete\nOdorín\nOdoríne\nodorizácia\nodorizácie\nodorme\nodorte\nodorú\nodorúc\nodorvaný\nodorvať\nodosielací\nodosielanieN\nodosielaný\nodosielateľ\nodosielateľka\nodosielať\nodoslane\nodoslanie\nodoslaný\nodoslať\nodosobnene\nodosobnenie\nodosobneniu\nodosobnený\nodosobni\nodosobnime\nodosobnite\nodosobniť\nodosobňovať\nodospať\nodospi\nodospime\nodospite\nodosteľ\nodostielať\nodostierať\nodostlať\nodostrieť\nodôvodnene\nodôvodnenie\nodôvodnenosť\nodôvodnený\nodôvodni\nodôvodnime\nodôvodnite\nodôvodniteľný\nodôvodniť\nodôvodňovane\nodôvodňovania\nodôvodňovanie\nodôvodňovaním\nodôvodňovaný\nodôvodňovať\nodôvodňujúci\nodovzdane\nodovzdanie\nodovzdanosť\nodovzdaný\nodovzdať\nodovzdávacíN\nodovzdávajúce\nodovzdávajúceho\nodovzdávajúcej\nodovzdávajúci\nodovzdávajúcich\nodovzdávajúcim\nodovzdávajúcimi\nodovzdávajúcom\nodovzdávajúcou\nodovzdávajúcu\nodovzdávanie\nodovzdávaný\nodovzdávať\nodovzdávka\nodovzdávkach\nodovzdávke\nodovzdávku\nodovzdávky\nodoznievať\nodozretie\nodozretý\nodozva\nodp\nodpadaný\nodpadať\nodpadávaní\nodpadávanie\nodpadávaním\nodpadávať\nodpad\nodpadkoch\nodpadkom\nodpadkov\nodpadkový\nodpadkový\nodpadky\nodpadlíctvach\nodpadlíctvam\nodpadlíctvo\nodpadlíčka\nodpadlík\nodpadnuté\nodpadnutého\nodpadnutie\nodpadnúť\nodpadnutými\nodpadný\nodpadovo\nodpadový\nodpadúvať\nodpájané\nodpájaní\nodpájania\nodpájanie\nodpájaním\nodpájaniu\nodpájať\nodpal\nodpálenia\nodpálenie\nodpálením\nodpáleniu\nodpálený\nodpáliť\nodpálkoval\nodpaľovací\nodpaľovač\nodpaľované\nodpaľovanie\nodpaľovaním\nodpaľovať\nodpapuľovať\nodpar\nodpárať\nodparenie\nodparením\nodparentoval\nodparentovala\nodparentovali\nodparentovalo\nodparentovať\nodparentuj\nodparentuje\nodparentujem\nodparentujeme\nodparentuješ\nodparentujete\nodparentujme\nodparentujte\nodparentujú\nodparentujúc\nodparený\nodpariek\nodpariť\nodparivosť\nodparka\nodparkách\nodparkami\nodparkov\nodparkovať\nodparku\nodparky\nodparom\nodparovacej\nodparovací\nodparovacia\nodparovacieho\nodparovacími\nodparovaciu\nodparovač\nodparovaní\nodparovania\nodparovanie\nodparovaním\nodparovať\nodparte\nodpas\nodpásaný\nodpásať\nodpasie\nodpasiem\nodpasieme\nodpasieš\nodpasiete\nodpásla\nodpásli\nodpáslo\nodpasme\nodpásol\nodpásť\nodpaste\nodpasú\nodpasúc\nodpášu\nodpášuc\nodpať\nodpatetizovať\nodpečatená\nodpečatené\nodpečatení\nodpečatenia\nodpečateniu\nodpečatiť\nodpeľať\nodpeľhať\nodpelia\nodpeliam\nodpeliame\nodpeliaš\nodpeliate\nodperované\nodperovať\nodpidlikať\nodpierané\nodpierať\nodpich\nodpichnutej\nodpichnutie\nodpichnúť\nodpichovanie\nodpichovať\nodpichový\nodpíjať\nodpíliť\nodpiľovať\nodpínať\nodpísania\nodpísanie\nodpísaním\nodpísaniu\nodpísaný\nodpísaný\nodpísať\nodpis\nodpískanie\nodpískaný\nodpískať\nodpisovač\nodpisovane\nodpisovanie\nodpisovaný\nodpisovať\nodpisovo\nodpisový\nodpíšu\nodpíšuc\nodpiť\nodplácaní\nodplácať\nodplachtovanie\nodplašené\nodplašenia\nodplašenie\nodplašiť\nodplata\nodplatený\nodplatiteľ\nodplatiť\nodplatne\nodplatný\nOdplávanie\nodplávaním\nodplávať\nodplavenie\nodplavený\nodplaviť\nodplavovať\nodplaziť\nodplekať\nodplichti\nodplichtí\nodplichtia\nodplichtiac\nodplichtil\nodplichtila\nodplichtili\nodplichtilo\nodplichtím\nodplichtíme\nodplichtíš\nodplichtiť\nodplichtíte\nodplichťme\nodplichťte\nodpľuť\nodpľúva\nodpľúvaj\nodpľúvajme\nodpľúvajte\nodpľúvajú\nodpľúvajúc\nodpľúval\nodpľúvala\nodpľúvali\nodpľúvalo\nodpľúvam\nodpľúvame\nodpľúvaš\nodpľúvať\nodpľúvate\nodpľuvne\nodplúžiť\nodplynená\nodplynení\nodplynenia\nodplynenie\nodplynenou\nodplynie\nodplyniť\nodplynovačmi\nodplynovanie\nodplyňovanie\nodplynovaním\nodplyňovaním\nodplyňovať\nodplynú\nodplynul\nodplynula\nodplynuli\nodplynulo\nodplynúť\nodpočet\nodpočinkové\nodpočinok\nodpočinutia\nodpočinutie\nodpočinutiu\nodpočinuto\nodpočinúť\nodpočinutý\nodpočinutý\nodpočítanie\nodpočítaný\nodpočitateľná\nodpočitateľné\nodpočitateľnej\nodpočitateľnou\nodpočitateľnú\nodpočitateľných\nodpočítateľný\nodpočítať\nodpočítavané\nodpočítavanej\nodpočítavanie\nodpočítavanú\nodpočítavať\nodpočívadlo\nodpočívajúci\nodpočívanie\nodpočiváreň\nodpočivárňach\nodpočivárňam\nodpočívať\nodpočtový\nodpočúvací\nodpočúvanie\nodpočúvaný\nodpočúvať\nodpochodovať\nodpojenieN\nodpojený\nodpojiteľný\nodpojiť\nodpojovač\nodpojovače\nodpojovači\nodpojovačov\nodpojovaní\nodpojovania\nodpojovanie\nodpojovaniu\nodpojovať\nodpolitizovania\nodpolitizovanie\nodpolitizovaním\nodpolitizovaniu\nodpolitizovaný\nodpolitizovať\nodpoludňajší\nodpoludnia\nodpoludnie\nodpoly\nodpomáhať\nodpomôcť\nodpomôž\nodpomôžuc\nodpor\nodporca\nodporcova\nodporcove\nodporcovu\nodporkyňa\nodporne\nodporník\nodpornosť\nodporný\nodporovací\nodporovania\nodporovanie\nodporovaním\nodporovateľnosť\nodporovateľnosti\nodporovať\nodporovo\nodporový\nodporúčajúce\nodporúčajúci\nodporúčanie\nodporúčanieN\nodporučaný\nodporúčaný\nodporúčať\nodporučenia\nodporučeniach\nodporučeniam\nodporučeniami\nodporučenie\nodporučením\nodporučeniu\nodporučený\nodporučiť\nodporujúci\nodposluch\nodposluchmi\nodposluchoch\nodposluchom\nodposluchov\nodposluchu\nodposluchy\nodpovedač\nodpovedači\nodpovedajúci\nodpovedania\nodpovedanie\nodpovedaním\nodpovedaný\nodpovedať\nodpoveď\nodpovedel\nodpovedia\nodpovediac\nodpoveďový\nodpovedz\nodpovedzme\nodpovedzte\nodpovie\nodpoviem\nodpovieme\nodpovieš\nodpoviete\nodpozeraný\nodpozorovania\nodpozorovanie\nodpozorovaním\nodpozorovaniu\nodpozorovaný\nodpozorovať\nodpracovanieN\nodpracovaný\nodpracovať\nodpracúva\nodpracúvajú\nodpracúvame\nodpracúvaní\nOdpracúvanie\nodpradávna\nodpraný\nodpraskať\nodpraskávanie\nodpraskávať\nodprasknúť\nodprasovať\nodprášení\nodprášenia\nodprášenie\nodprášením\nodprášených\nodprášiť\nodprašovací\nodprašovač\nodprašovača\nodprašované\nodprašovania\nodprašovanie\nodprašovaním\nodprašovať\nodpratajúc\nodpratania\nodpratanie\nodprataním\nodprataniu\nodprataný\nodpratať\nodpratávaní\nodpratávania\nodpratávanie\nodpratávaním\nodpratávaniu\nodpratávať\nodpratovať\nodpratúvaní\nodpratúvať\nodprávať\nodpraviť\nodpravovať\nodpredaj\nodpredajný\nodpredania\nodpredanie\nodpredaním\nodpredaniu\nodpredaný\nodpredať\nodpredávať\nodpredku\nodpredu\nodprevadiť\nodprevádzajúci\nodprevádzať\nodprírodnených\nodprírodni\nodprírodnime\nodprírodnite\nodprírodniť\nodprisahanie\nodprisahať\nodprosiť\nodprosovať\nodprsknúť\nodprsknutím\nodpruženia\nodpruženie\nodpružením\nodpružený\nodpružiť\nodprvoti\nodprvu\nodpudenie\nodpudiť\nodpudivo\nodpudivosť\nodpudivý\nodpudzovač\nodpudzovače\nodpudzovačom\nodpudzovačov\nodpudzovanieN\nodpudzovať\nodpudzujúcejšej\nodpudzujúcejší\nodpudzujúcejšia\nodpudzujúcejšie\nodpudzujúcejšieho\nodpudzujúcejšiemu\nodpudzujúcejších\nodpudzujúcejším\nodpudzujúcejšími\nodpudzujúcejšiu\nodpudzujúcejšom\nodpudzujúcejšou\nodpudzujúci\nodpudzujúco\nodpúchať\nodpuchávať\nodpuchnúť\nodpust\nodpustenieN\nodpustený\nodpusti\nodpustime\nodpustite\nodpustiteľná\nodpustiť\nodpustk\nodpustkoch\nodpustkom\nodpustkov\nodpustky\nodpúšťajúcej\nodpúšťajúci\nodpúšťané\nodpúšťaní\nodpúšťania\nodpúšťanie\nodpúšťaním\nodpúšťaniu\nodpúšťať\nodpútajúcej\nodpútajúci\nodpútaná\nodpútané\nodpútaní\nodpútania\nodpútanie\nodpútaním\nodpútaniu\nodpútať\nodpútavaní\nodpútavania\nodpútavanie\nodpútavaním\nodpútavaniu\nodpútavať\nodpykané\nodpykaní\nodpykania\nodpykanie\nodpykaním\nodpykaniu\nodpykaným\nodpykať\nodpykávania\nodpykávanie\nodpykávať\nodpýtať\nodpytovať\nodrábaní\nOdrábanie\nodrábaním\nodrábať\nodrác\nodráce\nodrácem\nodráceme\nodráceš\nodrácete\nodrácme\nodrácte\nodrácu\nodrácuc\nodradenia\nodradenie\nodradením\nodradeniu\nodradený\nodradiť\nodrádzanie\nodrádzaním\nodrádzaný\nodrádzať\nodradzovať\nodradzujúci\nOdrách\nodraný\nodrapotaj\nodrapotajme\nodrapotajte\nodrapotajúc\nodrapotať\nodrastať\nodrastený\nodrasti\nodrastime\nodrastite\nodrásť\nodrátania\nodrátanie\nodrátaním\nodrátaný\nodrátať\nodrátava\nodrátavaj\nodrátavajme\nodrátavajte\nodrátavajú\nodrátavajúc\nodrátaval\nodrátavala\nodrátavali\nodrátavalo\nodrátavam\nodrátavame\nodrátavaš\nodrátavať\nodrátavate\nodrať\nodrať\nodratuje\nodratúvanie\nodratúvaním\nodratúvaný\nodratúvať\nodraz\nodrazenia\nodrazenie\nodrazením\nodrazeniu\nodrazený\nodrazísk\nodrazisko\nodraziť\nodrazka\nodrazovka\nodrazový\nOdra\nodrážače\nodrážačmi\nodrážačov\nodrážajúce\nodrážajúci\nodrážaná\nodrážaní\nodrážanie\nodrážaním\nodrážaniu\nodrážať\nodrážka\nodrážkach\nodrážkami\nOdrážkové\nodrážku\nodrážky\nodrážok\nodreagovaní\nodreagovania\nodreagovanie\nodreagovať\nodreagúvať\nodrec\nodrecitovať\nodrecme\nodrecte\nodredikať\nodrenina\nodretie\nodretiu\nodretý\nodrezania\nodrezanie\nodrezaním\nodrezaniu\nodrezaný\nodrezať\nodrezáva\nodrezávaj\nodrezávajme\nodrezávajte\nodrezávajú\nodrezávajúc\nodrezával\nodrezávala\nodrezávali\nodrezávalo\nodrezávam\nodrezávame\nodrezávanie\nodrezávaním\nodrezávaniu\nodrezávaš\nodrezávať\nodrezávate\nodrezok\nodŕhať\nodrhnúť\nodrhovačka\nodriansky\nodriansky\nodriapať\nodriecť\nOdriekajúci\nodriekanie\nodriekanka\nodriekaný\nodriekať\nodriekavanie\nodriekavať\nodrieknutia\nodrieknutie\nodrieknutím\nodrieknutiu\nodrieknuť\nodrieknutý\nodrieť\nodrobený\nodrobina\nodrobinka\nodrobiť\nodročenie\nodročený\nodročiť\nodroda\nodrodenosť\nodrodený\nodrodilec\nodrodilecký\nodrodilejšej\nodrodilejší\nodrodilejšia\nodrodilejšie\nodrodilejšieho\nodrodilejšiemu\nodrodilejších\nodrodilejším\nodrodilejšími\nodrodilejšiu\nodrodilejšom\nodrodilejšou\nodrodilský\nodrodilý\nodrodiť\nodrodovo\nodrodový\nodrolovať\nodroň\nodroni\nodronísk\nodroniská\nodroniskách\nodroniskám\nodronisko\nodronisku\nodroniť\nodrotovať\nodrôtovať\nodrúbať\nodrúbavať\nodrubovať\nodrúc\nodrušené\nodrušení\nodrušenie\nodrušiť\nodrušovacích\nodrušovacím\nodrušovač\nodrušovaní\nodrušovanie\nodrušovať\nodrýpať\nodrývať\nods\nODS\nodsabotoval\nodsabotovala\nodsabotovali\nodsabotovalo\nodsabotovanú\nodsabotovať\nodsabotuje\nodsácať\nodsacovať\nodsadať\nodsadenie\nodsadený\nodsadiť\nodsadnúť\nodsadzovanie\nodsatého\nodsatia\nodsatie\nodsatím\nodsať\nodsávacej\nodsávací\nodsávacie\nodsávacieho\nodsávacích\nodsávaciu\nodsávacom\nodsávač\nodsávania\nodsávanie\nodsávaním\nodsávaniu\nodsávaný\nodsávať\nodseď\nodsedené\nodsedenie\nodsedených\nodsedieť\nodsedlal\nodsekať\nodsekávania\nodsekávanie\nodsekávať\nodsek\nodseknutie\nodseknutím\nodseknúť\nodseknutý\nodsekovať\nodsekúvať\nodsemeňovaní\nodsírenia\nodsírenie\nodsírením\nodsíreniu\nodsírený\nodsíri\nodsíria\nodsíril\nodsírili\nodsíriť\nodsírovacíN\nodsírovala\nodsírovali\nodsírovanie\nodsírovať\nodsíruje\nodsírujú\nodskackať\nodskákať\nodskakovanie\nodskakovať\nodskočenia\nodskočenie\nodskočením\nodskočený\nodskočiť\nodskok\nodskrutkovať\nodskúšania\nodskúšanie\nodskúšaním\nodskúšaniu\nodskúšaný\nodskúšať\nodslnie\nodsluhovať\nodslúžené\nodslúženému\nodslúžení\nodslúženie\nodslúžených\nodslúženými\nodslúžiť\nodsnovať\nodsolenie\nodsoľovacíN\nodsoľoval\nodsoľovanie\nodsoľovať\nodsotiť\nodspal\nodspala\nodspali\nodspalo\nodspať\nodspávať\nodspi\nodspí\nodspia\nodspiac\nodspieval\nodspievanie\nodspievaných\nodspievať\nodspím\nodspime\nodspíme\nodspíš\nodspite\nodspíte\nodspodku\nodspodu\nodst\nodsťahovaní\nodsťahovania\nodsťahovanie\nodsťahovaním\nodsťahovaniu\nodsťahovať\nodstátie\nodstať\nodstáť\nodstávajúci\nodstávať\nodstav\nodstavča\nodstavčekom\nodstavčiat\nodstavenie\nodstaveno\nodstavený\nodstaviť\nodstávka\nodstavný\nodstavovania\nodstavovanie\nodstavovaním\nodstavovaniu\nodstavovaný\nodstavovať\nodstavujúcej\nodstierať\nodstlať\nodstopkovanie\nodstopkovať\nodstránenie\nodstránený\nodstrániteľný\nodstrániť\nodstraňovač\nodstraňovane\nodstraňovanie\nodstraňovaný\nodstraňovať\nodstraňujúci\nodstrašení\nodstrašenia\nodstrašenie\nodstrašením\nodstrašeniu\nodstrašiť\nodstrašovania\nodstrašovanie\nodstrašovať\nodstrašujúcejšej\nodstrašujúcejší\nodstrašujúcejšia\nodstrašujúcejšie\nodstrašujúcejšieho\nodstrašujúcejšiemu\nodstrašujúcejších\nodstrašujúcejším\nodstrašujúcejšími\nodstrašujúcejšiu\nodstrašujúcejšom\nodstrašujúcejšou\nodstrašujúci\nodstrašujúco\nodstŕča\nodstŕčaj\nodstŕčajme\nodstŕčajte\nodstŕčajú\nodstŕčajúc\nodstŕčal\nodstŕčala\nodstŕčali\nodstŕčalo\nodstŕčam\nodstŕčame\nodstŕčaš\nodstŕčať\nodstŕčate\nodstrčenia\nodstrčenie\nodstrčením\nodstrčený\nodstrčiť\nodstredenie\nodstredením\nodstredený\nodstrediť\nodstredivka\nodstredivkový\nodstredivo\nodstredivosť\nodstredivý\nodstreďovač\nodstreďovači\nodstreďovanie\nodstreďovať\nodstreknúť\nodstrekovač\nodstrekovať\nodstrel\nodstrele\nodstrelenie\nodstrelením\nodstrelený\nodstreliť\nodstrelmi\nodstreľovania\nodstreľovanie\nodstreľovaný\nodstreľovať\nodstresovanie\nodstrieľaných\nodstrieť\nodstrihal\nodstrihávať\nodstrihnutia\nodstrihnutie\nodstrihnutiu\nodstrihnúť\nodstrihnutý\nodstrihovanie\nodstrihovať\nodstrižok\nodstrkávať\nodstrkovanie\nodstrkovaný\nodstrkovať\nodstrojené\nodstrojí\nodstrojiť\nodstup\nodstúpenieN\nodstúpený\nodstúpiť\nodstupné\nodstupňovane\nodstupňovania\nodstupňovaniami\nodstupňovanie\nodstupňovaním\nodstupňovaný\nodstupňovať\nodstupný\nodstupovaní\nodstupovania\nodstupovanie\nodstupovaním\nodstupovaniu\nodstupovať\nodstupujúci\nodsúdenec\nodsúdenejší\nodsúdeniahodný\nodsúdenie\nodsúdený\nodsúdiť\nodsudky\nodsudok\nodsudzovania\nodsudzovanie\nodsudzovaním\nodsudzovaniu\nodsudzovaný\nodsudzovať\nodsudzujúce\nodsudzujúci\nodsúhlasenie\nodsúhlasený\nodsúhlasený\nodsúhlasiť\nodsúhlasoval\nodsúhlasovala\nodsúhlasovali\nodsúhlasovalo\nodsúhlasované\nodsúhlasovaní\nodsúhlasovania\nodsúhlasovanie\nodsúhlasovaním\nodsúhlasovaniu\nodsúhlasovať\nodsúhlasuje\nodsúhlasujeme\nodsúhlasujú\nodsuň\nodsun\nodsunie\nodsuniem\nodsunieme\nodsunieš\nodsuniete\nodsuňme\nOdsuňme\nodsunovanie\nodsunovaním\nodsunovaný\nodsunovať\nodsuňte\nodsunul\nodsunula\nodsunuli\nodsunulo\nodsunutia\nodsunutie\nodsunutím\nodsunutiu\nodsunúť\nodsunutý\nodsúvania\nodsúvanie\nodsúvaním\nodsúvaniu\nodsúvaný\nodsúvať\nodsuvník\nodsypané\nodsypať\nodsýpať\nodsypávať\nodsypú\nodsypúc\nodšacovať\nodšalovať\nodšantročiť\nodšifrovanie\nodšikovať\nodšker\nodškeriť\nodškerovať\nodškerte\nodškierať\nodšklbnúť\nodškodeného\nodškodení\nodškodenia\nodškodenie\nodškodeniu\nodškodeným\nodškodnenie\nodškodnený\nodškodné\nodškodni\nodškodnime\nodškodnite\nodškodniť\nodškodňovania\nodškodňovanie\nodškodňovaním\nodškodňovaniu\nodškodňovaný\nodškodňovať\nodškrab\nodškrabať\nodškrabávať\nodškrabnúť\nodškraboval\nodškrabovala\nodškrabovali\nodškrabovalo\nodškrabovať\nodškrabuj\nodškrabuje\nodškrabujem\nodškrabujeme\nodškrabuješ\nodškrabujete\nodškrabujme\nodškrabujte\nodškrabujú\nodškrabujúc\nodškriab\nodškriabať\nodškriabávať\nodškriabe\nodškriabem\nodškriabeme\nodškriabeš\nodškriabete\nodškriabme\nodškriabte\nodškriabu\nodškriabuc\nodškriepiteľný\nodškriepiť\nodškrtá\nodškrtám\nodškrtaný\nodškrtáš\nodškrtáva\nodškrtávajú\nodškrtávali\nodškrtávaním\nodškrtávať\nodškrtne\nodškrtnúť\nOdšktrnúť\nodšmariť\nodšmikol\nodšmyknúť\nodšomrať\nodšraubovaní\nodšraubovať\nodštartovania\nodštartovanie\nodštartovaním\nodštartovaniu\nodštartovaný\nodštartovať\nodštartúva\nodštátnenieN\nodštátniť\nodštátňoval\nodštátňovala\nodštátňovali\nodštátňovalo\nodštátňovať\nodštátňuj\nodštátňuje\nodštátňujem\nodštátňujeme\nodštátňuješ\nodštátňujete\nodštátňujme\nodštátňujte\nodštátňujú\nodštátňujúc\nodšťavovač\nodšteknúť\nodštep\nodštepný\nodštepovanie\nodštepuje\nodštepy\nodštibrať\nodštibrávať\nodštiepať\nodštiepená\nodštiepencovi\nodštiepenec\nodštiepenecký\nodštiepení\nodštiepenia\nodštiepenie\nodštiepením\nodštiepeniu\nodštiepeným\nodštiepiť\nOdštiepnuté\nodštiepok\nodštikávať\nodštiknúť\nodštikovať\nodštipnúť\nodštipnutý\nodštipovane\nodštipovať\nodštraubovať\nodšúchať\nodšumieť\nodšupnúť\nodšvacnúť\nodšvindľované\nodšvindľovať\nodť\nodtabuizovať\nodtackať\nodtáča\nodtade\nodtadiaľ\nodťah\nodťahá\nodťahmi\nodťahom\nodťahov\nodťahovací\nodťahovač\nodťahovaní\nodťahovanie\nodťahovaním\nodťahovanom\nodťahovať\nodťahový\nodťahy\nodtajená\nodtajené\nodtajenie\nodtajeniu\nodtajenými\nodtajiť\nodtajnenie\nodtajni\nodtajnime\nodtajnite\nodtajniť\nodtajňoval\nodtajňovala\nodtajňovali\nodtajňovalo\nodtajňovať\nodtajňuj\nodtajňuje\nodtajňujem\nodtajňujeme\nodtajňuješ\nodtajňujete\nodtajňujme\nodtajňujte\nodtajňujú\nodtajňujúc\nodtancovať\nodtatáriť\nodťať\nodťatý\nodťaž\nodťaženia\nodťaženie\nodťažením\nodťaženiu\nodťažený\nodťaží\nodťažili\nodťažiť\nodťažitý\nodtekajúci\nodtekanie\nodtekať\nodteraz\nodterigať\nodtiahnú\nodtiahnutá\nodtiahnuté\nodtiahnutého\nodtiahnutí\nodtiahnutia\nodtiahnutie\nodtiahnutím\nodtiahnutiu\nodtiahnuť\nodtiahnutých\nodtiaľ\nodtiaľto\nodtiecť\nodtienenie\nodtienený\nodtienil\nodtieniť\nodtieň\nodtienok\nodtieňová\nodtieňované\nodtieňovať\nodtikáva\nodtínanie\nodtínať\nodtískať\nodtisnúť\nodtláčať\nOdtlačenie\nodtlačený\nodtlačiť\nodtlačok\nodtlačovacie\nodtlmoval\nodtlmovať\nodtočenie\nodtočenú\nodtok\nodtokový\nodtransportované\nodtransportovať\nodtratiť\nodtŕhanie\nodtŕhať\nodtrhávacíN\nodtrhávať\nodtrhnute\nodtrhnutieN\nodtrhnuto\nodtrhnutosť\nodtrhnutosti\nodtrhnúť\nodtrhnutý\nodtrhovania\nodtrhovať\nodtrhúva\nodtriedeného\nodtriedenia\nodtriedili\nodtriediť\nodtrp\nodtrpenie\nodtrpí\nodtrpia\nodtrpiac\nodtrpieť\nodtrpím\nodtrpíme\nodtrpíš\nodtrpíte\nodtrpme\nodtrpte\nodtrúbený\nodtrúbiť\nodtrubuje\nodtučnený\nodtučni\nodtučnime\nodtučnite\nodtučniť\nodtučňovací\nodtučňovanie\nodtučňovať\nodtúlajú\nodtúlať\nodtušenie\nodtušiť\nodúčať\nodučených\nodučiť\nodúčtovňa\nOdúčtovne\nodúčtovni\nOdúčtovňu\nodúchať\nodujúce\nodumierajúceho\nodumierajúci\nodumieraní\nodumierania\nodumieranie\nodumieraním\nodumieraniu\nodumieranom\nodumieraným\nodumierať\nodumretie\nodumretím\nodumretiu\nodumretý\nodumrieť\nodúmrť\nodumrúc\nodurenie\noduriť\noduševnene\noduševnenie\noduševnenosť\noduševnený\noduševni\noduševnime\noduševnite\noduševniť\noduševňovať\nodušu\nodutia\noduto\noduť\nodutý\nodúvať\nodvábiť\nodvádzacieho\nodvádzačom\nodvádzačov\nodvádzajúca\nodvádzajúce\nodvádzajúceho\nodvádzajúci\nodvádzajúcich\nodvádzajúcim\nodvádzajúcom\nodvádzania\nodvádzanie\nodvádzaním\nodvádzaniu\nodvádzaný\nodvádzať\nodváh\nodvahách\nodvahám\nodvahami\nodvaha\nodval\nodvalenia\nodvalenie\nodvalený\nodvaliť\nodvalmi\nodvaľovania\nodvaľovanie\nodvaľovať\nodvandrovať\nodvanie\nodvápnenie\nodvápnený\nodvápniť\nodvápňovanie\nodvápňovať\nodvárať\nodvar\nodvarených\nodvariť\nodvarok\nodvarovať\nodvarte\nodväzovať\nodvážania\nodvážanie\nodvážaním\nodvážaniu\nodvážaný\nodvážať\nodváženie\nodvážením\nodvážený\nodvážiť\nodvážka\nodvážlivec\nodvážlivý\nodvážnosť\nodvážny\nodvažovaných\nodvažovať\nodvažujúci\nodvčera\nOdvďačenie\nodvďačiť\nodvďačovať\nodvedenec\nodvedenia\nodvedenie\nodvedením\nodvedeniu\nodvedený\nodveký\nodvelená\nodvelení\nodvelenie\nodveliť\nodventilovania\nodvesien\nodvesiť\nodvesna\nodvet\nodveta\nodvetené\nodvetiť\nodvetný\nodvetrané\nodvetranej\nodvetraní\nodvetrania\nodvetranie\nodvetrať\nodvetvenie\nodvetvený\nodvetvi\nodvetvie\nodvetviť\nodvetvovačov\nodvetvove\nodvetvovo\nodvetvový\nodvezenia\nodvezenie\nodvezením\nodvezeniu\nodvezený\nodvi\nodviati\nodviať\nodviazaný\nodviazať\nodviaž\nodviaže\nodviažem\nodviažeme\nodviažeš\nodviažete\nodviažme\nodviažte\nodviažu\nodviažuc\nodvidniť\nodviečkovať\nodviesť\nodvievať\nodviezť\nodvíjacej\nodvíjača\nodvíjaná\nodvíjané\nodvíjaní\nodvíjania\nodvíjanie\nodvíjať\nodvije\nodvijem\nodvijeme\nodviješ\nodvijete\nodvijú\nodvijúc\nodvil\nodvila\nodvili\nodvilo\nodvime\nodvinutá\nodvinúť\nodvinutých\nodvírených\nodvírusoval\nodvírusovala\nodvírusovali\nodvírusovalo\nodvírusovať\nodvírusuj\nodvírusuje\nodvírusujem\nodvírusujeme\nodvírusuješ\nodvírusujete\nodvírusujme\nodvírusujte\nodvírusujú\nodvírusujúc\nodvisá\nodvísať\nodvisnúť\nodviť\nodvite\nodvláč\nodvláčať\nodvláči\nodvláčia\nodvláčiac\nodvláčil\nodvláčila\nodvláčili\nodvláčilo\nodvláčim\nodvláčime\nodvláčiš\nodvláčiť\nodvláčite\nodvláčme\nodvláčte\nodvlečenia\nodvlečenie\nodvlečením\nodvlečený\nodvlhnúť\nodvliecť\nodvod\nodvodene\nodvodenia\nodvodenie\nodvodením\nodvodenina\nodvodeniu\nodvodený\nodvoditeľný\nodvodiť\nodvodnenia\nodvodnenie\nodvodnením\nodvodnený\nodvodni\nodvodnime\nodvodnite\nodvodniť\nodvodňovací\nodvodňovač\nodvodňovača\nodvodňovania\nodvodňovanie\nodvodňovaním\nodvodňovaný\nodvodňovať\nodvodný\nodvodový\nodvodzovacej\nodvodzovací\nodvodzovacie\nodvodzovacích\nodvodzovacím\nodvodzovacou\nodvodzovač\nodvodzovania\nodvodzovanie\nodvodzovaním\nodvodzovaný\nodvodzovať\nodvolací\nodvolacíN\nodvolane\nodvolanie\nodvolaný\nOdvolateľnosť\nodvolateľnosti\nodvolateľný\nodvolať\nodvolávacej\nodvolávací\nodvolávacia\nodvolávacie\nodvolávacieho\nodvolávaciemu\nodvolávacích\nodvolávacím\nodvolávacom\nodvolávajúca\nodvolávajúce\nodvolávajúceho\nodvolávajúcej\nodvolávajúcemu\nodvolávajúci\nodvolávajúcich\nodvolávajúcim\nodvolávajúcimi\nodvolávajúcu\nodvolávania\nodvolávaniam\nodvolávaniami\nodvolávanie\nodvolávaním\nodvolávaniu\nodvolávaný\nodvolávať\nodvolávka\nodvolené\nodvolenie\nodvolených\nodvoliť\nodvonku\nodvoz\nodvozca\nodvozcu\nodvozené\nodvozených\nodvoziť\nodvozný\nodvracanieN\nodvracať\nodvrat\nodvrátenie\nodvrátený\nodvrátiteľná\nodvrátiť\nodvrav\nodvrávanie\nodvrávaný\nodvrávať\nodvravieť\nodvrhnutie\nodvrhnúť\nodvrhnutý\nodvrhovanej\nodvrhuje\nodvrchu\nodvŕkať\nodvrkávať\nodvrknuté\nodvrknutie\nodvrknúť\nodvrkovať\nodvšade\nodvšadiaľ\nodvšivaviť\nodvšiviť\nodvtedy\nodvykania\nodvykanie\nodvykať\nodvyknutí\nodvyknúť\nodvysielania\nodvysielanie\nodvysielaním\nodvysielaniu\nodvysielaný\nodvysielať\nodvzdušnení\nodvzdušnenie\nodvzdušni\nodvzdušnime\nodvzdušnite\nodvzdušniť\nodvzdušňovač\nodvzdušňovači\nodvzdušňovaní\nodvzdušňovania\nodvzdušňovanie\nodvzdušňovaním\nodvzdušňovaniu\nodvzdušňovať\nodvždy\nodych\nodym\nOdysea\nodysea\nOdyseovo\nOdyseus\nodzadku\nodzadu\nodzálohujete\nodzátkovať\nodzbrojenie\nodzbrojený\nodzbrojiť\nodzbrojovací\nodzbrojovaní\nodzbrojovania\nodzbrojovaním\nodzbrojovať\nodzbrojujúcejšej\nodzbrojujúcejší\nodzbrojujúcejšia\nodzbrojujúcejšie\nodzbrojujúcejšieho\nodzbrojujúcejšiemu\nodzbrojujúcejších\nodzbrojujúcejším\nodzbrojujúcejšími\nodzbrojujúcejšiu\nodzbrojujúcejšom\nodzbrojujúcejšou\nodzbrojujúci\nodzbrojujúco\nodzdravenia\nodzdravenie\nodzdraviť\nodzemok\nodzerať\nodzgáň\nodzgoň\nodznačiť\nodznak\nodznení\nodznenie\nodznením\nodznených\nodznieť\nodznievanie\nodznievaním\nodznievať\nodznova\nodznovu\nodzrkadlenia\nodzrkadlenie\nodzrkadlením\nodzrkadlený\nodzrkadliť\nodzrkadľovania\nodzrkadľovať\nodzrkadľujúci\nodzrniť\nodzrňovač\nodzrňovanie\nodzrňovať\nodzunieť\nodzváňať\nodzvonené\nodzvonením\nodzvoniť\nodžať\nodžínať\nodžiť\nodžitými\nodžívať\nodžižlať\nOECD\noenománia\nof\nofačoval\nofačovala\nofačovali\nofačovalo\nofačovať\nofačuj\nofačuje\nofačujem\nofačujeme\nofačuješ\nofačujete\nofačujme\nofačujte\nofačujú\nofačujúc\nofajkoval\nofajkovala\nofajkovali\nofajkovalo\nofajkovať\nofajkuj\nofajkuje\nofajkujem\nofajkujeme\nofajkuješ\nofajkujete\nofajkujme\nofajkujte\nofajkujú\nofajkujúc\nofarbené\nofarbenie\nofarbiť\nOfélia\nofenzív\nofenzívach\nofenzívam\nofenzíva\nofenzívnosť\nofenzívny\nofera\noferovať\noferta\nofertórium\noff\noffo\nofialovieť\nofic\noficialít\noficialita\noficialitách\noficialitou\noficiality\noficiálnosť\noficiálny\noficiera\noficier\noficína\noficinálny\noficiózny\nofícium\nofier\nofín\nofina\nofinka\nofiografia\nofiolatria\nofiológia\nofiotoxín\nofliaskať\noflinkovať\noflinok\nofľuskať\noformovať\nofrankovanie\nofrankovaný\nofrankovať\nofrckať\nofrflaný\nofrfľať\nofrflať\nofŕkať\nofŕskať\nofsajd\nofsajdový\nofset\nofsetky\nofsetový\noftalmia\noftalmitída\noftalmodynamometer\noftalmochirurgia\noftalmológ\noftalmológia\noftalmologický\noftalmológom\noftalmológov\noftalmológovia\noftalmoplégia\noftalmoskop\noftalmoskopia\nOfúkaná\nofúkať\nofúknuť\nofukovanie\nofukovaný\nofukovať\nOFZ\nogab\nogabaný\nogabať\nogam\nogiva\nogival\noh\nOH\nóh\nóha\nohádzaní\nohádzať\nohadzovali\nohádžete\noháňania\noháňanie\noháňať\nohanbie\noháv\nohava\nohavec\nohaviť\nohavne\nohavník\nohavnosť\nohavný\noheň\nOhijské\nohijského\nohijskom\nohľadanieN\nohľad\nohľadne\nohľadný\nohľaduplne\nohľaduplnosťN\nohľaduplný\nohlas\nohlásene\nohlásenie\nohlásený\nohlásiť\nohlasovacej\nohlasovací\nohlasovacia\nohlasovacie\nohlasovaciu\nohlasovacom\nohlasovacou\nohlasovanie\nohlasovaný\nohlasovateľ\nohlasovateľka\nohlasovať\nohlasovňa\nohlasovní\nohlasujúce\nohlasujúceho\nohlasujúcej\nohlasujúci\nohlasujúcim\nohlasujúcimi\nohlasujúcu\nohlášať\nohláška\nohlávka\nohliadač\nohliadanie\nohliadať\nohliadka\nohliadnutí\nohliadnutiam\nohliadnutie\nohliadnuť\nohlodaná\nohlodané\nohlodanú\nohlodať\nohlodávaný\nohlodávať\nohlodok\nohltať\nohluchnúť\nohluchnutým\nohlúpený\nohlúpiť\nohlúpnutia\nohlúpnuť\nohlúpnutý\nohlupovať\nohlušený\nohlušiť\nohlušovanie\nohlušovať\nohlušujúcejšej\nohlušujúcejší\nohlušujúcejšia\nohlušujúcejšie\nohlušujúcejšieho\nohlušujúcejšiemu\nohlušujúcejších\nohlušujúcejším\nohlušujúcejšími\nohlušujúcejšiu\nohlušujúcejšom\nohlušujúcejšou\nohlušujúci\nohlušujúco\nohmataní\nohmatanie\nohmatať\nohmatávanie\nohmatávať\nohmat\nohmatkávať\nohmatmi\nohm\nohmmeter\nohmový\nohňa\nohňami\nohnať\nohnica\nohníček\nohníčka\nohníčkami\nohníčkoch\nohníčkom\nohníčkov\nohníčku\nohníčky\nohník\nohnísk\nohnisko\nohniskový\nohnív\nohnivák\nohnivákovi\nohnivejšíF\nohniviek\nohnivko\nohnivočervene\nohnivočervený\nohnivo\nohnivosť\nohnivový\nohnivý\nohňoch\nohňom\nohňomet\nohňostroj\nohňov\nohňový\nohňovzdorne\nohňovzdornosť\nohňovzdorný\nohňu\nohnutie\nohnutiu\nohnúť\nohnutý\nohňuvzdorná\noho\nohó\nohobľovanie\nohobľovaný\nohobľovať\nohodnocovací\nohodnocovacie\nohodnocovacieho\nohodnocovacích\nohodnocovania\nohodnocovaniach\nohodnocovanie\nohodnocovaním\nohodnocovaniu\nohodnocovaný\nohodnocovať\nohodnotenie\nohodnotený\nohodnotiť\nohodnoverniť\noholenie\noholený\noholiť\nohor\nohorenie\nohorený\nohorieť\nohorok\nohoršoval\nohoršovala\nohoršovali\nohoršovalo\nohoršovať\nohoršuj\nohoršuje\nohoršujem\nohoršujeme\nohoršuješ\nohoršujete\nohoršujme\nohoršujte\nohoršujú\nohoršujúc\nohovárač\nohováračka\nohováračný\nohováračovi\nohováračsky\nohováračský\nohovárajúci\nohováranie\nohováraný\nohovárať\nohovárka\nohovor\nohovorenia\nohovorenie\nohovorený\nohovoriť\nohovorte\nohrá\nohrabaný\nohrabky\nohrada\nohradenie\nohradený\nohradiť\nohrádka\nOhradní\nohradníkov\nohradový\nohrádzať\nohradzovanie\nohradzovaných\nohradzovať\nohral\nohraničene\nohraničenie\nohraničenosť\nohraničenosti\nohraničený\nohraničiteľný\nohraničiť\nohraničnení\nohraničovanie\nohraničovať\nohraničujúci\nohranou\nohráte\nohrčkovať\nohŕdať\nohrdiť\nohrdnutie\nohrdnúť\nohrdnutý\nohrebiel\nohreblo\nohrej\nohreje\nohrejem\nohrejeme\nohreješ\nohrejete\nohrejme\nohrejte\nohrejú\nohrejúc\nohrev\nohreve\nohrevný\nohriaknuť\nohriatej\nohriatie\nohriatím\nohriať\nohriaty\nohriešiť\nohrievací\nohrievač\nohrievadlo\nohrievania\nohrievanie\nohrievaním\nohrievaný\nohrieváreň\nohrievať\nohrň\nohŕňať\nohrnie\nohrniem\nohrnieme\nohrnieš\nohrniete\nohrňme\nohrnovači\nohrňovači\nohrňovaní\nohrňovať\nohrňte\nohrnutú\nohrnúť\nohromenie\nohromený\nohromitánsky\nohromiť\nohromne\nohromný\nohromovať\nohromujúcejšej\nohromujúcejší\nohromujúcejšia\nohromujúcejšie\nohromujúcejšieho\nohromujúcejšiemu\nohromujúcejších\nohromujúcejším\nohromujúcejšími\nohromujúcejšiu\nohromujúcejšom\nohromujúcejšou\nohromujúci\nohromujúco\nohrozene\nohrozenieN\nohrozenosťN\nohrozený\nohroziteľný\nohroziť\nohrozovanieN\nohrozovaný\nohrozovateľmi\nohrozovateľovi\nohrozovať\nohrozujúci\nohryz\nohrýzanie\nohrýzaním\nohrýzať\nohryzie\nohryziem\nohryzieme\nohryzieš\nohryziete\nohrýzla\nohrýzli\nohrýzlo\nohryzme\nohryzok\nohrýzol\nohryzovať\nohryzte\nohrýzť\nohryzú\nohryzúc\nohundrať\nohundrávať\nohundre\nohundrem\nohundreme\nohundreš\nohundrete\nohundri\nohundrime\nohundrite\nohundrú\nohundrúc\nohúrene\nohúrenie\nohúrený\nohúriť\nohurovania\nohurovať\nohviezdičkovaná\nohviezdičkovať\nohýbací\nohýbač\nohýbačiek\nohýbačka\nohýbačkami\nohýbačkou\nohýbačku\nohýbačky\nohýbačov\nohýbadlo\nohýbajúca\nohýbanie\nohýbaný\nohybáreň\nohybárne\nohýbať\nohyb\nohýbe\nohybne\nohybnosť\nohybný\nohybovať\nohybový\nohybuje\nohýnať\nohyzda\nohyzdách\nohyzdiť\nohyzdne\nohyzdnosť\nohyzdný\noch\nOchaba\nochablejšie\nochablosť\nochabnutia\nochabnutie\nochabnutím\nochabnutiu\nochabnuto\nochabnutosť\nochabnúť\nochabnutý\nochabovania\nochabovanie\nochabovaním\nochabovať\nochabujúca\nochabujúce\nochabujúceho\nochabujúcej\nochabujúcemu\nochabujúci\nochabujúcich\nochabujúco\nochabujúcom\nochabujúcu\nochkať\nochladenie\nochladený\nochladiť\nochladnutí\nochladnutia\nochladnutie\nochladnutím\nochladnutiu\nochladnúť\nochládzať\nochladzovací\nochladzovacie\nochladzovačov\nochladzovanie\nochladzovaný\nochladzovať\nochladzujúce\nochľastá\nochľastaj\nochľastal\nochľastaný\nochľastať\nochleptať\nochlisnúť\nochlokracia\nochlpenie\nochlpený\nochmelene\nochmelenec\nochmelený\nochmeliť\nochmúrnieť\nochodený\nochodiť\nOchodnica\nOchodnice\nOchodnická\nOchodnickej\nochodza\nochodzí\nochodzový\nochorej\nochorejme\nochorejte\nochorejú\nochorejúc\nochorené\nochorenie\nochorených\nochoreným\nochorieť\nochôt\nochotách\nochotám\nochotami\nochotaN\nochotne\nochotnícky\nochotníctvach\nochotníctvam\nochotníctvo\nochotníčiť\nochotníčka\nochotník\nochotno\nochotný\nochrabnúť\nochradnúť\nochrán\nochranár\nochranárka\nochranársky\nochranárstvach\nochranárstvam\nochranárstvo\nochrana\nochranca\nochránenie\nochráneniu\nochránený\nochrániť\nochrankár\nochranka\nochrankyňa\nochranný\nochraňovania\nochraňovanie\nochraňovaný\nochraňovať\nochraňujúca\nochraňujúce\nochraňujúcich\nochrchľať\nochriakať\nochrip\nochripí\nochripia\nochripiac\nochripieť\nochripím\nochripíme\nochripíš\nochripíte\nochripme\nochrípnuť\nochripte\nochrň\nochrnie\nochrniem\nochrnieme\nochrnieš\nochrniete\nochrňme\nochrnovať\nochrňte\nochrnutie\nochrnúť\nochrnutý\nochromenie\nochromeno\nochromený\nochromieť\nochromievať\nochromiť\nochromoval\nochromovala\nochromovali\nochromovalo\nochromovať\nochromuj\nochromuje\nochromujem\nochromujeme\nochromuješ\nochromujete\nochromujme\nochromujte\nochromujú\nochromujúc\nochromujúca\nochromujúcejšie\nochromujúci\nochronóza\nochucovať\nochudobnejú\nochudobnel\nochudobnela\nochudobnenie\nochudobnený\nochudobni\nochudobnie\nochudobnime\nochudobnite\nochudobniť\nochudobňovania\nochudobňovanie\nochudobňovaním\nochudobňovaniu\nochudobňovaný\nochudobňovať\nochutenia\nochuteniach\nochutenie\nochutený\nochutiť\nochutnaní\nochutnať\nochutnávač\nochutnávanieN\nochutnávať\nochutnávka\nochvat\nochvátiť\nochvatmi\nochyt\noidipovský\nOidipus\noikumena\noikunymum\noiomancia\nOIRT\noj\nojazdením\nojazdený\nojazdi\nojazdime\nojazdite\nojazdiť\nojce\nojec\nojed\nojedinej\nojedinele\nojedinelejšej\nojedinelejší\nojedinelejšia\nojedinelejšie\nojedinelejšieho\nojedinelejšiemu\nojedinelejších\nojedinelejším\nojedinelejšími\nojedinelejšiu\nojedinelejšom\nojedinelejšou\nojedinelo\nojedinelosť\nojedinelý\nojedinené\nojeéj\nojej\nojéj\nojem\noje\noji\nojí\nojko\nojnica\nojnicový\nojničné\nojoj\nojój\nojok\nojom\nojový\nOK\nôk\nokabátiť\nokáč\nOkáča\nokadiť\nokaká\nOkál\nokáľa\nokále\nokaličiť\nokálisko\nokáliť\nokáľ\nokáľmi\nokáloch\nokáľoch\nokáľom\nokáľov\nokáľovať\nokáľu\nokamih\nokamihnutie\nokamihový\nokamženie\nokamžik\nokamžite\nokamžitosti\nokamžitý\nokaňa\nokáň\nokáne\nokaní\nokáni\nokarín\nokarínach\nokarínam\nokarína\nokášanie\nokašlať\nokašľať\nokate\nokato\nokatosť\nokatý\nokázale\nokázalejší\nokázalo\nokázalosť\nokázalý\nokázia\nokazionalizmus\nokcident\nokcidentál\nokefovať\nokenica\nokenička\nokenit\nokenný\noker\nokerový\nOKI\nokiadzač\nokiadzaná\nokiadzanie\nokiadzať\nokience\nokienko\nokienkový\nokienok\nokieštiť\nOklahoma\nOklahome\nOklahomy\noklam\noklamania\noklamanie\noklamaniu\noklamaný\noklamať\noklamávanie\noklamme\noklamte\noklasifikovať\noklasok\nokľavieť\noklebetiť\noklepať\noklepáva\noklepávaj\noklepávajme\noklepávajte\noklepávajú\noklepávajúc\noklepával\noklepávala\noklepávali\noklepávalo\noklepávam\noklepávame\noklepávanie\noklepávaš\noklepávať\noklepávate\noklepkať\noklepnú\noklepy\nokliesniť\nokliesňovať\noklieštenie\noklieštením\nokliešteniu\noklieštený\noklieštiť\nokliešťovaná\nokliešťované\nokliešťovaní\nokliešťovania\nokliešťovanie\nokliešťovaním\nokliešťovaniu\nokliešťovať\nokľuka\noklúzia\nokluzíva\nokluzor\nokmásať\nokmáš\nokmáše\nokmášem\nokmášeme\nokmášeš\nokmášete\nokmášme\nokmášte\nokmášu\nokmášuc\nokmíniť\noknár\noknársky\nokno\nOkoč\nOkoči\nokolie\nokolík\nokolitý\nokolk\nokolkoch\nokolkom\nokolkov\nokolkovaná\nokolkované\nokolkovaného\nokolkovanej\nokolkovanie\nokolkovanú\nokolkovaných\nokolkovanými\nokolkovať\nokolkujúci\nokolky\nokolní\nokolnosť\nokolo\nokoloidúci\nokolostojaci\noko\nokomentoval\nokomentovala\nokomentovali\nokomentovalo\nokomentovaný\nokomentovať\nokomentuj\nokomentuje\nokomentujem\nokomentujeme\nokomentuješ\nokomentujete\nokomentujme\nokomentujte\nokomentujú\nokomentujúc\nokopanina\nokopať\nokopávačka\nokopávanie\nokopávať\nokopávka\nokop\nokopcovať\nokopčiť\nokopíroval\nokopírovala\nokopírovali\nokopírovalo\nokopírovanie\nokopírovaním\nokopírovaniu\nokopírovaný\nokopírovať\nokopíruj\nokopíruje\nokopírujem\nokopírujeme\nokopíruješ\nokopírujete\nokopírujme\nokopírujte\nokopírujú\nokopírujúc\nokopistý\nokopnieť\nokorenenie\nokorenený\nšialivýEN\nokos\nokosiť\nokostica \nokoštovať\nokotiť\nokótovať\nokov\noková\nokovách\nokovám\nokovami\nokovanie\nokovaný \nokovať\nokovina \nokoviny\nokovitka\nokovom\nokovov\nokovy\nokoovať\nokr\nokrádač\nokrádačský\nokrádanie\nokrádaný\nokrádať\nokradnutia\nokradnutie\nokradnutím\nokradnutiu\nokradnúť\nokradnutý\nokrájať\nokraj\nokrajok\nokrajovaní\nokrajovanie\nokrajovať\nokrajove\nokrajovo\nokrajovosť\nokrajový\nokrás\nokrasa\nokrásnieť\nokrasný\nokrášlený\nokrášliť\nokrašľovania\nokrášľovania\nokrášľovať\nokrašľujúco\nokrátko\nokrej\nokreje\nokrejem\nokrejeme\nokreješ\nokrejete\nokrejme\nokrejte\nokrejú\nokrejúc\nokrem\nokresania\nokresanie\nOkresaním\nokresaný\nokresať\nokresávania\nokresávanie\nokresávaniu\nokresávať\nokres\nokresne\nokresný\nokriať\nokrídlene\nokrídlený\nokrídliť\nokridľovať\nokrídľovať\nokrievať\nokríkať\nokríknuť\nokríknutý\nokrikovania\nokrikovať\nokrivieť\nokrôchaný\nokrový\nokrskový\nokrsok\nokrstiť\nokrúcačka\nokrúcať\nokruh\nokrúhlastý\nokrúhlia\nokrúhliac\nokruhliak\nokrúhlieť\nokrúhliť\nokrúhlolistá\nokrúhlolistej\nokrúhlosť\nokrúhlučký\nokrúhly\nokruhový\nokrucha\nokruch\nokrušok\nokruštek\nOkrut\nokrútiť\nokružie\nokrúžiť\nokrúžkovaný\nokrúžkovať\nokružliak\nOkružliaka\nokružne\nokružný\nokružovaní\nokružovať\nOKS\nokt\noktaéder\noktálny\noktán\noktánový\noktant\noktateuch\noktáv\noktávach\noktávam\noktaván\noktaváni\noktavánka\noktavánovi\noktavánsky\noktáva\noktávový\noktet\nokteto\noktetový\noktóber\noktóbrový\noktogón\noktogonálny\noktroj\noktrojovať\noktuštek\nokuba\nokují\nokúkanie\nokukaných\nokukaným\nokukať\nokúkať\nokukávaní\nokukávanie\nokukávať\nokuknúť\nokukovať\nokulácia\nokulár\nokulátor\nokuliare\nokuliarmi\nokuliarnatý\nokuliarnik\nokuliaroch\nokuliarom\nokuliarov\nokuliarový\nokulista\nokulistika\nokultista\nokultistický\nokultizmus\nokultný\nokúňajúci\nokúňanie\nokúňaním\nokúňať\nokúňavo\nokúňavosť\nokúňavý\nokupácia\nokupačný\nokúpanie\nokupant\nokupantský\nokúpaný\nokúpať\nokupovania\nokupovanie\nokupovaný\nokupovať\nokus\nokúsiť\nokusovanie\nokusovať\nokutá\nokutie\nokuť\nokutých\nokúvať\nokúzlenia\nokúzlenie\nokúzlený\nokúzliť\nokúzľovať\nokúzľujúci\nokväcnúť\nokvetie\nokvetný\nokvitnúť\nokyckať\nokydania\nokydať\nokydávanie\nokyptený\nokypti\nokyptime\nokyptite\nokyptiť\nokypťovanie\nokypťovať\nokyslenie\nokyslený\nokysličenie\nokysličený\nokysličiť\nokysličovacia\nokysličovacie\nokysličovač\nokysličovane\nokysličovania\nokysličovanie\nokysličovaný\nokysličovať\nokysliť\nokysľovania\nokysľovaniu\nokysľovať\noký\nOla\noľahčieť\nolám\nolámať\noláme\nolámem\nolámeme\nolámeš\nolámete\nolámme\nolamovať\nolámte\nolámu\nolámuc\nolatkovať\nolatovať\nolazáriť\nOlcnava\nOlcnave\nOlča\nOlči\nOlču\nOlda\noldomáša\noldomáše\noldomáši\noldomáš\noldomášmi\noldomášoch\noldomášom\noldomášov\noldomášu\nOldrich\nOľdza\nOle\noleander\noleandrový\noleáta\nolefín\nolefínoch\nolefínov\nOlefínová\nolefínovej\nolefíny\nOleg\nolegovanie\nolegovaný\nOlegovmu\nOlejár\nOlejára\nolejári\nolejárne\nOlejárom\nolejárov\nOlejárovej\nolejárska\nolejárske\nolejárskeho\nolejárskej\nolejárskemu\nolejárskom\nolejárskou\nolejársku\nolejársky\nolejárskych\nolejárskym\nolejárskymi\nolejem\nolej\nOlejka\nolejkár\nOlejkárska\nOlejkárskej\nolejkárskych\nolejku\nolejky\nolejnatosť\nolejnatosti\nolejnatosťou\nolejnatý\nolejnička\nOlejníkov\nolejnina\nolejný\nolejomaľba\nolejovač\nolejovať\nolejovitý\nolejovne\nolejovo\nolejový\nolemovanie\nolemovaný\nolemovať\noleodukt\noleomargarín\noleostearín\nolep\nolepiť\nolepovanie\nolepovaný\nOlešná\nOlešnej\nOlešnica\nOlešnice\nOlešnici\nOlešnou\noletnieť\noletovanie\noletovaný\nolfakcia\nolfaktológia\nolfaktometer\nOľgách\nOľgám\nOľga\nOli\noliať\nOlieg\nolieta\noligarcha\noligarchami\noligarchia\noligarchický\noligarchom\noligarchov\noligarchovi\noligarchovia\noligarchu\noligémia\noligocén\noligocénneho\noligodaktýlia\noligodoncia\noligodynamia\noligofág\noligofágia\noligofrénia\noligofrenik\noligochólia\noligochýlia\noligokardia\noligoklas\noligomenorea\noligopol\noligopson\noligosaprobia\noligosialia\noligospermia\noligotrichia\noligotrofia\noligotrofný\noligúria\nOlin\nOlina\nOlini\nOlinka\nolistenia\nolistený\nolív\noliva\nolivenit\nOlivera\nOliverami\nOliver\nOlivermi\nOliveroch\nOliverom\nOliverov\nOliverovi\nOliverovia\nOlívia\nOlívie\nolivín\nolivínovec\nolivovník\nolivovo\nolivovohnedý\nolivovozelený\nolivový\nolízať\noliznúť\nolizovať\nolíž\nolíže\nolížem\nolížeme\nolížeš\nolížete\nolížme\nolížte\nolížu\nolížuc\nOľka\nOľky\nolom\nolomáziť\nolomeno\nOlomouc\nolomoucky\nolomoucký\nOlomoučan\nolovárskej\nOlováry\nolovene\noloveno\nolovený\nOloví\nolovnato\nolovnatý\nolovnica\nolovo\nolovrant\nolovrantmi\nolovrantovať\nolovrantový\nOLPC\nOlsztyn\nOlsztyne\nOlša\nolšanský\nOlšava\nOľšavce\nOľšavica\nOľšavice\nOľšavka\nolšavského\nOlšavský\nOlše\nOlši\nOlší\nOlšiansku\nOlšina\nOľšinkov\nOlšinu\nOlšou\nOľšov\nOlšovany\nolšového\nOlšu\noltárik\noltár\noltármi\noltárny\noltárový\nolúpanie\nolúpaný\nolúpať\nolúpenie\nolúpený\nolúpiť\nolupovania\nolupovať\noľutovanie\noľutovať\nolymionička\nolymp\nOlymp\nolympiád\nolympiádach\nolympiádam\nolympiáda\nOlympia\nolympijský\nolympionička\nolympionik\nolympizmus\nolympský\nomacať\nomaciavať\nomackať\nomáčať\nomáčka\nomáčkový\nomagra\nomachnatieť\nomak\nomakanie\nomakať\nomakávať\nomäl\nomáľať\nomaľovať\nomam\nomámenia\nomámenie\nomámeniu\nomámený\nomámiť\nomamne\nomamnosť\nomamný\nomamovať\nomamujúcejšej\nomamujúcejší\nomamujúcejšia\nomamujúcejšie\nomamujúcejšieho\nomamujúcejšiemu\nomamujúcejších\nomamujúcejším\nomamujúcejšími\nomamujúcejšiu\nomamujúcejšom\nomamujúcejšou\nomamujúci\nomamujúco\nOman\nOmán\nOmane\nománska\nománskeho\nománsku\nománsky\nomar\nomárať\nomarený\nomariť\nomarte\nomartritída\nomartróza\nomást\nomasta\nomastený\nomasti\nomastime\nomastite\nomastiť\nomastok\nomazal\nomaž\nombré\nombrés\nombrofília\nombrofóbia\nombrografia\nombrometer\nombudsman\nombudsmanka\nombudsmanský\nomdlejú\nomdlejúc\nomdlený\nomdletý\nomdlieť\nomdlievať\nomedzenia\nomedzenie\nomedzením\nomedzeniu\nomedzený\nOmedzil\nOmedzíme\nomedzované\nomedzovanie\nomedzovaním\nOmedzovať\nomedzuje\nomedzujete\nomeg\nomegách\nomegám\nomegami\nomega\nomeleta\nomelinka\nomelo\nomen\nomerta\nomeškanie\nomeškaný\nomeškať\nomeškávaní\nomeškávania\nomeškávanie\nomeškávaním\nomeškávať\nometať\nometlo\nomfalitída\nomfalokéla\nomfalorexa\nomfalos\nomiel\nomieľania\nomieľanie\nomieľaním\nomieľaný\nomieľať\nomiesť\nomietací\nomietačí\nomietačka\nomietania\nomietanie\nomietaný\nomietať\nomietkačka\nomietkar\nomietkár\nomietkarský\nomietkársky\nomietka\nomietkový\nomietnutie\nomietnuť\nomietnutý\nomikron\nomilostenie\nomilostený\nomilosti\nomilostime\nomilostite\nomilostiť\nomilosťovať\nomínať\nomínavý\nominózny\nomisia\nomlad\nomladená\nomladené\nomladenie\nomladeným\nomladina\nomladiť\nomladnutie\nomladnutiu\nomladnúť\nomladzovací\nomladzovanie\nomladzovať\nomladzujúci\nomlátiť\nomletý\nomlieť\nomluvil\nomluvila\nomluvili\nOmnia\nOmnibus\nomnibusom\nomnibusu\nomnibusy\nomnipotencia\nomniprezencia\nomnisciencia\nOmniu\nomnium\nOmnium\nomnivor\nomnivoria\nomnoho\nomočiť\nomokanie\nomotaná\nomotané\nomotať\nomotávať\nomotka\nomráčenia\nomráčenie\nomráčenosť\nomráčený\nomráčiť\nomračovať\nomračujúca\nomračujúce\nomračujúci\nomraštiť\nomraziť\nomrdený\nomrštieť\nomrvina\nomrvinka\nomrz\nomŕzať\nomrzenie\nomrzenosť\nomrzený\nomrzieť\nomrzlina\nomrznúť\nomrznutý\nomša\nOmšení\nOmšenie\nomší\nomšový\nomyl\nomylmi\nomylný\nomyť\nomývanie\nomývaný\nomývať\non\noň\nona\noná\nonačenie\nonačením\nonačený\nonačiť\noňahdy\nonak\nonako\nonakvo\nonakvý\nonaký\nonam\nonania\nonánia\nonanista\nonanizmus\nonanovanie\nonanovať\nondatier\nondatra\nondatrí\nondatrový\nOndava\nOndavka\nOndavská\nOndavské\nOndavskej\nondení\nondi\nondia\nondiac\nondiať\nondieť\nondime\nondite\nOndráš\nOndráša\nOndrášov\nOndrašová\nOndrášova\nOndrášove\nOndrašovej\nOndrej\nOndrejova\nOndrík\nOndriš\nOndriša\nOndrišovej\nOndrišovi\nOndrišovou\nondulácia\nondulačný\nondulovačka\nondulovať\none\noné\nonedlho\nonehdajší\nonehdy\noného\noneiromancia\nonej\nonemený\nonemieť\nonemievať\nonemocnení\nonemocnenia\nonemocnenie\nonemocneniu\nonemocnieť\nonému\nonen\nonerozita\nonerózny\noneskor\noneskorene\noneskorenec\noneskorenie\noneskorenosť\noneskorený\noneskorievať\noneskoriť\noneskorovania\noneskorovanie\noneskorovaním\noneskorovaniu\noneskorovaný\noneskorovať\noneskorte\noneskorujúci\nonezdravieť\noňho\nonchocerkóza\noni\noní\nonikať\noniománia\nonkogenéza\nonkogénny\nonkológ\nonkológia\nonkologicky\nonkologický\nonkologička\nonline\nono\nonô\nonoho\nonom\nonomastický\nonomastika\nonomastikon\nonomatolália\nonomatománia\nonomatopoický\nonomatopojach\nonomatopojam\nonomatopoja\nonomatopojí\nonomaziológia\nonomu\nonou\nontário\nontogenetický\nontogenéza\nontogénia\nontológia\nontologicky\nontologický\nonú\nonúc\nonuca\nonucka\noňuchať\noňuchávanie\noňuchávať\nONV\nony\noný\noných\nonychalgia\nonychektómia\nonychia\nonychofágia\nonychomykóza\nonychóza\noným\nonými\nónyx\nónyxový\nOO\noocyt\nooforitída\noolemma\noológia\nôombardské\nôombardsky\noomycéta\noondel\nOOo\nOOP\noosféra\noošvindľovať\nop\nOP\nOPA\nopacita\nopackať\nopáčiť\nopáčka\nopáčky\nopačne\nopačný\nopačovať\nopadanejší\nopadanie\nopadaný\nopadať\nopadávajúci\nopadávaním\nopadávať\nopadavý\nopadnutia\nopadnutie\nopadnutím\nopadnúť\nopadnutý\nopadov\nopadu\nopadúvať\nopách\nopacha\nopájanie\nopájať\nopak\nopakovací\nopakovačka\nopakovačku\nopakovačky\nopakovane\nopakovanie\nopakovanosť\nopakovaný\nopakovateľne\nopakovateľnosť\nopakovateľnosti\nopakovateľnosťou\nopakovateľný\nopakovať\nopakovej\nopakovom\nopakovú\nopakových\nopakujúci\nopal\nopálať\nopál\nopale\nopálenie\nopálením\nopálený\nopalescencia\nopalescenciu\nopáliť\nopalizácia\nopalizovaný\nopalizovať\nopalizujúca\nopalizujúce\nopalizujúci\nopálka\nopálmi\nopalok\nopaľovací\nopaľovaní\nopaľovanie\nopaľovať\nopálovo\nopálový\nopaly\nopanci\nopancierovaním\nopancierovaný\nopancierovať\nopancime\nopancite\nopanovaný\nopanovať\nopanovávať\nopantaný\nopantať\nopantávať\nopanúvať\nopaprikovanej\nopaprikovať\nopárať\nopar\noparenia\nopareniach\nopareniami\noparenie\noparením\noparenina\noparený\nopariť\noparte\nopásania\nopásanie\nopásaný\nopásať\nopásať\nopáskovanými\nopáskovať\nopasky\nopasok\nopasovať\nopášu\nopášuc\nopäť\nopát\nopaterách\nopaterám\nopatera\nopatery\nopatier\nopátka\nopätkový\nopätok\nOpatová\nopätovane\nopätovanie\nopätovaním\nopätovaniu\nopätovaný\nopätovať\nOpatovej\nopätovne\nopätovný\nopatovského\nOpatovský\nopatrene\nopatrenie\nopatrený\nopatriť\nopatrne\nopatrníckosťou\nopatrnícky\nopatrníctvach\nopatrníctvam\nopatrníctvo\nopatrníčiť\nopatrník\nopatrnostkár\nopatrnosťN\nopatrný\nopatrovanec\nopatrovanie\nopatrovaný\nopatrovateľ\nopatrovateľka\nopatrovateľský\nopatrovať\nopatrovkyňa\nopatrovnica\nopatrovnícky\nopatrovníctvach\nopatrovníctvam\nopatrovníctvo\nopatrovníčka\nopatrovník\nopátsky\nopátstvach\nopátstvam\nopátstvo\nOpava\nOpave\nOpavou\nopavský\nOpavu\nOpavy\nOPBH\nopcia\nOPEC\nopečatenou\nopečenie\nopečený\nopečiatkovanie\nopečiatkovaním\nopečiatkovaný\nopečiatkovať\nopekač\nopekače\nopekaču\nopekanec\nopekanieN\nopekaný\nopekať\nopekávanie\nopekávať\nopeknieť\nopeknievať\nopekniť\nopelené\nopelenie\nopeliť\nopeľovaciu\nopeľovaní\nopeľovania\nopeľovanie\nopeľovať\nopen\nOpen\nOpenOffice\noperabilitu\noperabilný\noperáciach\noperácia\noperačka\noperačne\noperačno\noperačný\noperadlo\noperadlový\noperand\noperát\noperatér\noperatérka\noperatíva\noperatíve\noperatívnosť\noperatívny\noperatívou\noperatívu\noperatívy\noperátom\noperátor\noperátore\noperátorka\noperátormi\noperátorova\noperátorove\noperátorovej\noperátorovo\noperátorovu\noperátorovým\noperátorský\noperátoru\noperátory\noperátov\noperátu\noperáty\nopera\noperencovi\noperenec\noperenia\noperenie\noperením\noperený\nopereta\noperetkami\noperetný\noperiet\noperiť\noperný\noperovania\noperovanie\noperovaním\noperovaný\noperovať\noperúci\nopevnenie\nopevnený\nopevni\nopevnime\nopevnite\nopevniť\nopevňovací\nopevňovaní\nopevňovanie\nopevňovaním\nopevňovať\nopiát\nopiátmi\nopica\nopíča\nopičenia\nopičenie\nopičiacky\nopičiactvach\nopičiactvam\nopičiactvo\nopičiak\nopičiaky\nopičí\nopičiť\nopička\nopidum\nopiecť\nopier\nopierací\nopierajúca\nopierajúcu\nopierané\nopieranie\nopierať\nopierka\nopieskovanie\nopíjať\nopilec\nopilecký\nopílenie\nopíliť\nopilosť\nopilosti\nopilovať\nopiľovať\nopilstvo\nopilúvať\nopilý\nopinkať\nopinkávať\nópiový\nopísanie\nopísaný\nopísateľný\nopísať\nopis\nopisne\nopisnosť\nopisný\nopisovania\nopisovanie\nopisovaním\nopisovaný\nopisovať\nopistoma\nopistonefros\nopistotonus\nopisujúca\nopisujúce\nopisujúceho\nopisujúci\nopisujúcich\nopisujúcim\nopisujúcimi\nopisujúcu\nopíšu\nopíšuc\nopitie\nopito\nopitosť\nopiť\nopitý\nópium\nopkovateľný\noplácať\noplačú\noplačúc\nopláchnutí\nopláchnuť\noplachovacíN\noplachovanie\noplachovaný\noplachovať\noplachy\noplak\noplakať\noplakávačka\noplakávania\noplakávaný\noplakávať\nopláknutie\nopláknuť\noplakovať\noplaky\noplan\noplanísk\noplaniská\noplaniskách\noplaniskám\noplanisko\noplanisku\noplanský\noplanstvo\nopľasnúť\noplatiť\noplátka\noplátkový\nopleciek\noplecko\noplechované\noplechovanie\noplechovať\noplej\noplejme\noplejte\noplejú\noplejúc\noplenových\noplesnený\noplesnieť\noplesnivený\noplesnivieť\noplešivený\noplešivieť\nopleť\nopletačka\nopletaný\nopletať\nopletenie\nopletených\nopletie\nopletiem\nopletieme\nopletieš\nopletiete\nopleťme\nopleťte\nopletú\nopletúc\noplieskať\noplieskavate\nopliesť\noplietla\noplietli\noplietlo\noplietol\noplieť\noplocovanie\noplodie\noplodnenia\noplodnenie\noplodnením\noplodneniu\noplodnený\noplodni\noplodnime\noplodnite\noplodniť\noplodňovať\noplodňujúcej\noplotenieN\noplotený\noplotiť\noplôtka\noplôtkami\noplôtkoch\noplôtkového\noplôtkovú\noplôtky\noplôtok\nopľuto\nopľuť\noplúvať\nopľuvať\nopľúvať\nOplympia\noplývajúci\noplývajúcu\noplývať\noplzlejšej\noplzlejší\noplzlejšia\noplzlejšie\noplzlejšieho\noplzlejšiemu\noplzlejších\noplzlejším\noplzlejšími\noplzlejšiu\noplzlejšom\noplzlejšou\noplzlo\noplzlosť\noplzlý\nopĺznuť\nopočloveče\nopočlovek\nopočloveky\nopodiaľ\nopodstatnene\nopodstatnenie\nopodstatnenosť\nopodstatnený\nopodstatni\nopodstatnime\nopodstatnite\nopodstatniť\nopodstatňovať\nopojenie\nopojený\nopojiť\nopojivý\nopojne\nopojnosťN\nopojný\nopoľudí\nopoľudia\nopoľuďmi\nopoľuďoch\nopoľuďom\nopomeň\nopomenie\nopomeniem\nopomenieme\nopomenieš\nopomeniete\nopomeňme\nOpomeňme\nopomeňte\nopomenú\nopomenúc\nopomenul\nopomenula\nopomenuli\nopomenulo\nopomenúť\nopomenutia\nopomenutiam\nopomenutie\nopomenutím\nopomenutiu\nopomenutý\nopomínanie\nopomínať\nopôn\nopona\noponent\noponentka\noponentovu\noponentsky\noponentský\noponentúr\noponentúrach\noponentúram\noponentúra\noponovania\noponovanie\noponovaním\noponovaný\noponovať\nopora\noporný\noportunista\noportunisticky\noportunistický\noportunistka\noportunity\noportunizmus\noporunista\nopotrebene\nopotrebenia\nopotrebenie\nopotrebením\nopotrebeniu\nopotrebený\nopotrebiť\nopotrebovania\nopotrebovanie\nopotrebovaním\nopotrebovaniu\nopotrebovanosť\nopotrebovaný\nopotrebovať\nopotrebováva\nopotrebovávaj\nopotrebovávajme\nopotrebovávajte\nopotrebovávajú\nopotrebovávajúc\nopotrebovával\nopotrebovávala\nopotrebovávali\nopotrebovávalo\nopotrebovávam\nopotrebovávame\nopotrebovávanie\nopotrebovávaš\nopotrebovávať\nopotrebovávate\nopotrebúvanie\nopotrebúvaním\nopotrebúvaniu\nopotrebúvať\nopovážiť\nopovážlivec\nopovážlivo\nopovážlivosť\nopovážlivý\nopovažovať\nopovedal\nopovedali\nopovrhnutiahodné\nopovrhnutiahodnej\nopovrhnutiahodným\nopovrhnutie\nopovrhnúť\nopovrhnutý\nopovrhovanie\nopovrhovaný\nopovrhovatelia\nopovrhovať\nopovrhujúci\nopovržlivo\nopovržlivosť\nopovržlivý\nopozdene\nopozdenia\nopozdenie\nopozdený\nopozdí\nopozdila\nopozdiť\nopozícia\nopozicionár\nopozične\nopozičník\nopozičnosť\nopozičný\nopozit\nopozít\nopozitum\nopozničník\noppidum\nopracovania\nopracovanie\nopracovaním\nopracovaniu\nopracovaný\nopracovateľnosť\nopracovateľnosťou\nopracovateľný\nopracovať\nopracovávané\nopracovávaní\nopracovávania\nopracovávanie\nopracovávaním\nopracovávaných\nopracovávať\nopracúvaného\nopracúvanej\nopracúvaní\nopracúvania\nopracúvanie\nopracúvaním\nopracúvať\nopradený\nopraniach\nopraný\noprasený\noprasiť\nopraskať\noprášenie\noprášením\noprášeniu\noprášený\noprášiť\noprašovaní\noprašovania\noprašovanie\noprašovať\noprata\noprátka\noprátky\noprať\nopráv\nopráva\noprávam\noprávane\noprávanie\nopravár\nopraváreň\nOpravárensky\nopravárenský\nopravárenský\nopravárka\nopravárňach\nopravárňam\nopravársky\nopravárstva\nopravárstve\nopravárstvo\nopravárstvom\noprava\nopravdive\nopravdivo\nopravdivosť\nopravdivý\nopravdove\nopravdové\nopravdovo\nopravdu\nopravenie\nopravený\nopraviteľný\nopraviť\noprávka\nopravne\noprávnene\noprávnenie\noprávnenosť\noprávnený\noprávniť\noprávňovaní\noprávňovať\noprávňujúce\nopravný\nopravovanie\nopravovaný\nopravovať\nopravovňa\nopravovní\nopravujúci\nopravujúci\nopraž\noprážať\nopražený\nopraží\nopražia\nopražiac\nopražil\nopražila\nopražili\nopražilo\nopražím\nopražíme\nopražíš\nopražiť\nopražíte\nopražme\nopražte\noprekot\noprený\nopresia\nopreteky\nopretie\nopretý\nopŕchať\nopŕchava\nopŕchavaj\nopŕchavajme\nopŕchavajte\nopŕchavajú\nopŕchavajúc\nopŕchaval\nopŕchavala\nopŕchavali\nopŕchavalo\nopŕchavam\nopŕchavame\nopŕchavaš\nopŕchavať\nopŕchavate\noprchávať\nopŕchnuť\nopŕchnutý\nopriadať\nopriasť\noprieť\noprobovať\noprostená\noprosti\noprostí\noprostia\noprostiac\noprostil\noprostila\noprostili\noprostilo\noprostím\noprostime\noprostíme\noprostíš\noprostiť\noprostite\noprostíte\noproti\noprotiidúceho\noprotiidúci\noprskať\noprsky\noprš\nopršaný\nopršať\nopršiavať\noprúc\nopsonín\nopt\noptatív\nopticky\noptický\noptika\noptik\noptim\noptím\noptimalizácia\noptimalizačný\noptimalizačný\noptimalizovanie\noptimalizovaný\noptimalizovať\noptimálne\noptimálnosť\noptimálny\noptimát\noptimista\noptimisticky\noptimistický\noptimistka\noptimizmus\noptimum\noptoelektronický\noptoelektronika\noptoelektronik\noptofón\noptometria\noptotyp\noptotypy\noptovať\nopuchá\nopuchaj\nopuchajme\nopuchajte\nopuchajú\nopuchajúc\nopuchal\nopuchala\nopuchali\nopuchalo\nopuchám\nopucháme\nopucháš\nopuchať\nopucháte\nopúchať\nopuch\nopucheľ\nopuchle\nopuchlina\nopuchnutie\nopuchnúť\nopuchnutý\nopukať\nopuka\nopukový\nopulencia\nopulentný\nopuncia\nopuncovaný\nopuncovať\nopus\nopustene\nopustenejšíF\nopustenie\nopusteno\nopustenosť\nopustený\nopusti\nopustime\nopustite\nopustiť\nopustivší\nopúšťajúci\nopúšťaná\nopúšťané\nopúšťaní\nopúšťania\nopúšťanie\nopúšťaním\nopúšťaniu\nopúšťaných\nopúšťať\nopútam\nopútať\noputnať\nopyt\nopýtanie\nopýtaný\nopýtať\nopytovací\nopytovačka\nopytovaná\nopytovanému\nopytovaní\nopytovania\nopytovanie\nopytovaniu\nopytovanú\nopytovaných\nopytovanými\nopytovať\nopytujúceho\norabovať\norácia\noracieho\noracích\nOracle\noráč\noráčina\noračka\norafať\norákul\norákulský\norákulum\norálny\norámčekovať\norámovanieN\norámovaný\norámovať\nOran\noráňanie\noráňať\norane\norange\nOrange\nOrangeportal\norangutan\norangutany\noranie\noranísk\noranisko\noranský\norant\noraný\noranž\noranžád\noranžádach\noranžádam\noranžáda\noranžériou\noranžovo\noranžovočervený\noranžovožltý\noranžový\norašpľovať\norátor\noratórium\noratórny\noratovať\norať\norávanie\norávať\nOrava\nOravce\nOravčan\nOravec\nOrávka\nOravka\nOravkin\nOravkina\nOravkinom\nOrávky\noravský\norazítkované\norazítkovať\norbách\norbám\norba\norbis\nOrbis\nOrbisu\nOrbit\norbít\norbitál\norbitálny\norbita\norbitov\norbový\norcín\nordál\nordálie\nordinácia\nordinačka\nordinačný\nordinála\nordinár\nordinariát\nordinariátu\nordinárium\nordinárnosť\nordinárny\nordinárom\nordinárovi\nordinovanie\nordinovaný\nordinovať\nordo\nordonanc\nordonancia\nordovik\noreálny\norebiti\noregán\noregáno\noregano\noreganový\nOregon\nOregone\nOregonská\noregonské\noregonského\noregonskej\noregonskom\noregonských\nOregonu\norecha\norech\norechovina\norechovník\norechovohnedý\norechový\norelánsky\norelánsky\norenburskí\nOrenburský\nOrešanoch\nOrešany\nOrešian\norez\norezanie\norezaný\norezať\norezávacích\norezávač\norezávanie\norezávaný\norezávať\nORF\norfeum\nOrfeus\norfizmus\norg\norgan\norgán\norganela\norganicizmus\norganickosť\norganicky\norganický\norganika\norganiky\norganista\norganistka\norganizáciach\norganizácia\norganizačne\norganizačno\norganizačný\norganizátor\norganizátorka\norganizátormi\norganizátorský\norganizátorstiev\norganizátorstva\norganizátorstvá\norganizátorstvách\norganizátorstvám\norganizátorstvami\norganizátorstve\norganizátorstvo\norganizátorstvom\norganizátorstvu\norganizmus\norganizovane\norganizovanie\norganizovanosť\norganizovaný\norganizovať\norganizujúca\norganizujúce\norganizujúceho\norganizujúcej\norganizujúci\norganizujúcich\norganizujúcim\norganogenetický\norganogenéza\norganogénny\norganografia\norganohalogénový\norganochlórovaný\norganokovový\norganoleptické\norganoleptických\norganoleptika\norganolit\norganológia\norganon\norganopexa\norganopreparát\norganoterapeutikum\norganoterapia\norganotrof\norganotropizmus\norganovať\norganový\norgánový\norgantín\norgantínový\norganum\norgazmus\norgiastický\norgia\norgiazmus\norgie\norgován\norgovánovo\norgovánový\norchester\norchestrácia\norchestrálny\norchestrion\norchestrión\norchestrový\norchialgia\norchidea\norchidektómia\norchideovo\norchideový\norchis\norchitída\noriadiť\norienalistika\norientácia\norientačne\norientačno\norientačný\norientalista\norientalistický\norientalistika\norientalistka\norientalizmus\norientálny\norient\nOrient\norientmi\norientovane\norientovania\norientovanie\norientovaním\norientovaniu\norientovanosť\norientovanosti\norientovanosťou\norientovaný\norientovať\noriešik\norieškovo\norieškovohnedý\norieškový\noriešok\norieštek\noriezka\noriflama\nOriflame\nOriflamu\norig\norigami\noriginál\norigináli\noriginalita\noriginálmi\noriginálnosť\noriginálny\noriginárny\nOriol\nOrión\norkán\norku\norkus\norleánsky\norleánsky\norlica\norlickej\nOrlíckej\norlickom\nOrlický\norlíča\norlí\norlík\norlíkovi\norloj\norľom\norľou\nOrlova\nOrlove\norlovi\nOrlovom\norlovskú\nOrlovský\nornamentáciou\nornamentalistika\nornamentalizovať\nornamentálnosť\nornamentálny\nornament\nornamentika\nornamentmi\nornamentovať\nornamentový\nornát\nornátmi\norne\nornica\nornitín\nornitogamia\nornitochoria\nornitológ\nornitológa\nornitológia\nornitologický\nornitológov\nornitóza\norný\noročka\norodovanie\norodovať\norodovnica\norodovníčka\norodovník\norogén\norogenetický\norogenéza\norogénny\norografia\norol\norológia\norometria\norosenie\norosený\norosiť\nOrovnica\nortieľ\nortieľmi\nortieľoch\nortieľom\nortieľov\nortieľu\nortit\nortocentrum\nortodiagrafia\nortodoncia\nortodontický\nortodoxia\nortodoxne\nortodoxnosť\nortodoxný\nortodróma\nortoepia\nortoepicky\nortoepický\nortofónia\nortogamia\nortogenéza\nortognácia\nortogonalita\nortogonálny\nortografia\nortografický\nortoklas\nortomyxovírus\nortopéd\nortopédia\nortopedický\nortopédka\nortopnoe\nortoptika\nortorula\nortosilikát\nortoskopia\nortotropizmus\nortute\nortuť\nortutnatý\nortuťový\norúb\norúbať\norumenieť\norútiť\norýpať\noryx\noryzae\nós\nôs\nÓsackej\nósackom\nosád\nosada\nosadenia\nosadenie\nosadením\nosadeniu\nosadenstvo\nosadený\nosadiť\nosádka\nosadlosť\nosadlovieť\nosadnícky\nosadníčka\nosadník\nosadný\nosádzaní\nosádzania\nosádzanie\nosádzaním\nosádzať\nosadzované\nosadzovaní\nosadzovania\nosadzovanie\nosadzovaním\nOsadzovaniu\nosadzovanú\nosadzovaných\nosadzovať\nosahávať\nosách\nOsaka\nOsake\nÓsakou\nÓsaku\nÓsaky\nosám\nosamele\nosamelejšej\nosamelejší\nosamelejšia\nosamelejšie\nosamelejšieho\nosamelejšiemu\nosamelejších\nosamelejším\nosamelejšími\nosamelejšiu\nosamelejšom\nosamelejšou\nosamelosť\nosamelý\nosamenie\nosamieť\nosamievať\nosamostatnenia\nosamostatnenie\nosamostatnením\nosamostatneniu\nosamostatnený\nosamostatni\nosamostatnie\nosamostatnime\nosamostatnite\nosamostatniť\nosamostatňovacom\nosamostatňovať\nosamote\nosamotene\nosamotenie\nosamotenosť\nosamotený\nosamotnieť\nosárium\nosa\noscilácia\noscilačný\noscilátor\noscilátora\noscilátorov\noscilátory\noscilograf\noscilogram\nosciloskop\nosciloskopická\nosciloskopov\nosciloskopu\noscilovanie\noscilovaním\noscilovať\noscilujúca\noscilujúci\noscilujúcim\nosebe\nosedlanie\nosedlaný\nosedlať\nosedlávať\noseín\nosekaný\nosekať\nosekávania\nosekávanie\nosekávaním\nosekávať\noselník\noselníku\noselníky\nosembodový\nosembojár\nosemboj\nosemboký\nosemciferné\nosemcifernú\nosemcipý\nosem\nosemdenný\nosemdesiata\nosemdesiat\nosemdesiatdeväť\nosemdesiatdeväťtisíc\nosemdesiatdva\nosemdesiatdvatisíc\nosemdesiate\nosemdesiateho\nosemdesiatej\nosemdesiatemu\nosemdesiatín\nosemdesiatina\nosemdesiati\nosemdesiatjeden\nosemdesiatjedentisíc\nosemdesiatka\nosemdesiatkrát\nosemdesiatnička\nosemdesiatnik\nosemdesiatom\nosemdesiatosem\nosemdesiatosemtisíc\nosemdesiatou\nosemdesiatpäť\nosemdesiatpäťtisíc\nosemdesiatročný\nosemdesiatročný\nosemdesiatsedem\nosemdesiatsedemtisíc\nosemdesiatšesť\nosemdesiatšesťtisíc\nosemdesiatštyri\nosemdesiatštyritisíc\nosemdesiattisíc\nosemdesiattisícemu\nosemdesiattisícovej\nosemdesiattonovej\nosemdesiattri\nosemdesiattritisíc\nosemdesiatu\nosemdesiaty\nosemdesiatych\nosemdesiatym\nosemdesiatymi\nosemdielne\nosemdielneho\nosemdielnu\nosemdňový\nosemdsiatročný\nosemenie\nosemfinále\nosemfinálový\nosemhodinový\nosemhran\nosemhranný\nosemhranového\nOsemizbovú\nosemkilometrový\nosemkilových\nosemkorunový\nosemkrát\nosemmesačný\nosemmetrovú\nosemmiestna\nosemmiestne\nosemmiestneho\nosemmiestnej\nosemmiestnou\nosemmiestnu\nosemmiestny\nosemmiestnym\nosemmiliónový\nosemminútový\nosemmocný\nosemnásobkom\nosemnásobku\nosemnásobný\nosemnásobok\nosemnásť\nosemnástina\nosemnástinu\nosemnásti\nosemnástka\nosemnásťkrát\nosemnásťročná\nosemnásťročné\nosemnásťročného\nosemnásťroční\nosemnásťročnom\nosemnásťročnú\nosemnásťročných\nOsemnásťročný\nosemnásťtisíc\nosemnásty\nosempercentný\nosemposchodový\nosemriadkový\nosemročnici\nosemročný\nosemslabičný\nosemsten\nosemstenný\nosemsto\nosemstodesať\nosemstodesaťtisíc\nosemstodeväť\nosemstodeväťdesiat\nosemstodeväťdesiatdeväť\nosemstodeväťdesiatdeväťtisíc\nosemstodeväťdesiatdva\nosemstodeväťdesiatdvatisíc\nosemstodeväťdesiatjeden\nosemstodeväťdesiatjedentisíc\nosemstodeväťdesiatosem\nosemstodeväťdesiatosemtisíc\nosemstodeväťdesiatpäť\nosemstodeväťdesiatpäťtisíc\nosemstodeväťdesiatsedem\nosemstodeväťdesiatsedemtisíc\nosemstodeväťdesiatšesť\nosemstodeväťdesiatšesťtisíc\nosemstodeväťdesiatštyri\nosemstodeväťdesiatštyritisíc\nosemstodeväťdesiattisíc\nosemstodeväťdesiattri\nosemstodeväťdesiattritisíc\nosemstodevätnásť\nosemstodevätnásťtisíc\nosemstodeväťtisíc\nosemstodva\nosemstodvadsať\nosemstodvadsaťdeväť\nosemstodvadsaťdeväťtisíc\nosemstodvadsaťdva\nosemstodvadsaťdvatisíc\nosemstodvadsaťjeden\nosemstodvadsaťjedentisíc\nosemstodvadsaťosem\nosemstodvadsaťosemtisíc\nosemstodvadsaťpäť\nosemstodvadsaťpäťtisíc\nosemstodvadsaťsedem\nosemstodvadsaťsedemtisíc\nosemstodvadsaťšesť\nosemstodvadsaťšesťtisíc\nosemstodvadsaťštyri\nosemstodvadsaťštyritisíc\nosemstodvadsaťtisíc\nosemstodvadsaťtri\nosemstodvadsaťtritisíc\nosemstodvanásť\nosemstodvanásťtisíc\nosemstodvatisíc\nosemstojedenásť\nosemstojedenásťtisíc\nosemstojeden\nosemstojedentisíc\nosemstokorunový\nosemstoosem\nosemstoosemdesiat\nosemstoosemdesiatdeväť\nosemstoosemdesiatdeväťtisíc\nosemstoosemdesiatdva\nosemstoosemdesiatdvatisíc\nosemstoosemdesiatjeden\nosemstoosemdesiatjedentisíc\nosemstoosemdesiatosem\nosemstoosemdesiatosemtisíc\nosemstoosemdesiatpäť\nosemstoosemdesiatpäťtisíc\nosemstoosemdesiatsedem\nosemstoosemdesiatsedemtisíc\nosemstoosemdesiatšesť\nosemstoosemdesiatšesťtisíc\nosemstoosemdesiatštyri\nosemstoosemdesiatštyritisíc\nosemstoosemdesiattisíc\nosemstoosemdesiattri\nosemstoosemdesiattritisíc\nosemstoosemnásť\nosemstoosemnásťtisíc\nosemstoosemtisíc\nosemstopäť\nosemstopäťdesiat\nosemstopäťdesiatdeväť\nosemstopäťdesiatdeväťtisíc\nosemstopäťdesiatdva\nosemstopäťdesiatdvatisíc\nosemstopäťdesiatjeden\nosemstopäťdesiatjedentisíc\nosemstopäťdesiatosem\nosemstopäťdesiatosemtisíc\nosemstopäťdesiatpäť\nosemstopäťdesiatpäťtisíc\nosemstopäťdesiatsedem\nosemstopäťdesiatsedemtisíc\nosemstopäťdesiatšesť\nosemstopäťdesiatšesťtisíc\nosemstopäťdesiatštyri\nosemstopäťdesiatštyritisíc\nosemstopäťdesiattisíc\nosemstopäťdesiattri\nosemstopäťdesiattritisíc\nosemstopätnásť\nosemstopätnásťtisíc\nosemstopäťtisíc\nosemstopová\nosemstoročná\nosemstosedem\nosemstosedemdesiat\nosemstosedemdesiatdeväť\nosemstosedemdesiatdeväťtisíc\nosemstosedemdesiatdva\nosemstosedemdesiatdvatisíc\nosemstosedemdesiatjeden\nosemstosedemdesiatjedentisíc\nosemstosedemdesiatosem\nosemstosedemdesiatosemtisíc\nosemstosedemdesiatpäť\nosemstosedemdesiatpäťtisíc\nosemstosedemdesiatsedem\nosemstosedemdesiatsedemtisíc\nosemstosedemdesiatšesť\nosemstosedemdesiatšesťtisíc\nosemstosedemdesiatštyri\nosemstosedemdesiatštyritisíc\nosemstosedemdesiattisíc\nosemstosedemdesiattri\nosemstosedemdesiattritisíc\nosemstosedemnásť\nosemstosedemnásťtisíc\nosemstosedemtisíc\nosemstošesť\nosemstošesťdesiat\nosemstošesťdesiatdeväť\nosemstošesťdesiatdeväťtisíc\nosemstošesťdesiatdva\nosemstošesťdesiatdvatisíc\nosemstošesťdesiatjeden\nosemstošesťdesiatjedentisíc\nosemstošesťdesiatosem\nosemstošesťdesiatosemtisíc\nosemstošesťdesiatpäť\nosemstošesťdesiatpäťtisíc\nosemstošesťdesiatsedem\nosemstošesťdesiatsedemtisíc\nosemstošesťdesiatšesť\nosemstošesťdesiatšesťtisíc\nosemstošesťdesiatštyri\nosemstošesťdesiatštyritisíc\nosemstošesťdesiattisíc\nosemstošesťdesiattri\nosemstošesťdesiattritisíc\nosemstošestnásť\nosemstošestnásťtisíc\nosemstošesťtisíc\nosemstoštrnásť\nosemstoštrnásťtisíc\nosemstoštyri\nosemstoštyridsať\nosemstoštyridsaťdeväť\nosemstoštyridsaťdeväťtisíc\nosemstoštyridsaťdva\nosemstoštyridsaťdvatisíc\nosemstoštyridsaťjeden\nosemstoštyridsaťjedentisíc\nosemstoštyridsaťosem\nosemstoštyridsaťosemtisíc\nosemstoštyridsaťpäť\nosemstoštyridsaťpäťtisíc\nosemstoštyridsaťsedem\nosemstoštyridsaťsedemtisíc\nosemstoštyridsaťšesť\nosemstoštyridsaťšesťtisíc\nosemstoštyridsaťštyri\nosemstoštyridsaťštyritisíc\nosemstoštyridsaťtisíc\nosemstoštyridsaťtri\nosemstoštyridsaťtritisíc\nosemstoštyritisíc\nosemstotisíc\nosemstotri\nosemstotridsať\nosemstotridsaťdeväť\nosemstotridsaťdeväťtisíc\nosemstotridsaťdva\nosemstotridsaťdvatisíc\nosemstotridsaťjeden\nosemstotridsaťjedentisíc\nosemstotridsaťosem\nosemstotridsaťosemtisíc\nosemstotridsaťpäť\nosemstotridsaťpäťtisíc\nosemstotridsaťsedem\nosemstotridsaťsedemtisíc\nosemstotridsaťšesť\nosemstotridsaťšesťtisíc\nosemstotridsaťštyri\nosemstotridsaťštyritisíc\nosemstotridsaťtisíc\nosemstotridsaťtri\nosemstotridsaťtritisíc\nosemstotrinásť\nosemstotrinásťtisíc\nosemstotritisíc\nosemstovka\nosemstránkový\nosemstrunový\nosemstup\nosemstupňový\nosemtisíc\nosemtisíckrát\nosemtisícoviek\nosemtisícovkách\nosemtisícovku\nosemtisícovky\nosemtisícový\nosemtisícpäťstoosemdesiat\nosemtisícšesťsto\nosemtonový\nosemtriedny\nosemtýždňový\nosemuholník\nosemuholníka\nosemuholníkové\nosemvalcový\nosemvalec\nosemveslica\noser\nosev\noseve\nosevný\nosfreziológia\noschnúť\noschýnať\nosiata\nosiate\nosiatej\nosiatí\nosiatie\nosiatou\nosiatu\nosiať\nosiaty\nosiatych\nosiatym\nosičina\nosička\nosídel\nosídlach\nosídlam\nosídla\nosídlenec\nosídlenie\nosídlený\nosídliť\nosídlo\nosídľovaciu\nosídľovanie\nosídľovať\nosiel\nosiem\nosievač\nosievači\nosievačka\nosievanie\nosievaných\nosievať\nosifikácia\nosifikačný\nosifikovať\nosihotene\nosihotenosť\nosihotený\nosihotieť\nosihotiť\nosí\nosika\nOsikov\nosikový\nOSIN\nosina\nosinelý\nosinený\nosinieť\nosinievať\nosinúť\nosinutý\nosirej\nosirejme\nosirejte\nosirejú\nosirejúc\nosirelejšej\nosirelejší\nosirelejšia\nosirelejšie\nosirelejšieho\nosirelejšiemu\nosirelejších\nosirelejším\nosirelejšími\nosirelejšiu\nosirelejšom\nosirelejšou\nosirelý\nosirene\nosirenosť\nosirený\nosirieť\nosirotene\nosirotenie\nosirotenosť\nosirotený\nosív\nosivieť\nosivo\nosivový\nos\noskách\noskalpovať\noskám\nOskar\nOskár\nOskárovia\noska\noskenovaný\noskenovať\noskorúš\noskoruša\noskoruší\noskulant\nosľa\noslabenie\noslabený\noslabiť\noslabnutie\noslabnutím\noslabnúť\noslabnutý\noslabovania\noslabovanie\noslabovaním\noslabovaniu\noslabovaný\noslabovať\noslabujúceho\nosladenie\nosladením\nosladený\nosladiť\nosládzať\nosladzovať\noslách\noslám\noslava\noslávenec\noslávenie\noslávenkyňa\noslávený\nosláviť\noslavne\noslavnosť\noslavný\noslavovania\noslavovanie\noslavovaniu\noslavovaný\noslavovať\noslavujúca\noslavujúce\noslavujúceho\noslavujúcej\noslavujúci\noslavujúcich\noslavujúcim\noslavujúcimi\noslavujúcom\nosla\noslepenec\noslepenie\noslepený\noslepiť\noslepla\noslepli\nosleplo\noslepne\noslepnem\noslepneme\noslepneš\noslepnete\noslepni\noslepnime\noslepnite\noslepnú\noslepnúc\noslepnutí\noslepnutia\noslepnutie\noslepnúť\noslepol\noslepovať\noslepujúcejšej\noslepujúcejší\noslepujúcejšia\noslepujúcejšie\noslepujúcejšieho\noslepujúcejšiemu\noslepujúcejších\noslepujúcejším\noslepujúcejšími\noslepujúcejšiu\noslepujúcejšom\noslepujúcejšou\noslepujúci\noslepujúco\nosliatko\noslica\noslička\noslí\noslík\noslíka\noslíkom\noslíkovi\noslň\noslnenia\noslnenie\noslneniu\noslnený\noslní\noslnia\noslniac\noslnil\noslnila\noslnili\noslnilo\noslním\noslníme\noslníš\noslniť\noslníte\noslnivo\noslnivý\noslňme\noslňoval\noslňovala\noslňovali\noslňovalo\noslňovanie\noslňovať\noslňte\noslňuj\noslňuje\noslňujem\noslňujeme\noslňuješ\noslňujete\noslňujme\noslňujte\noslňujú\noslňujúc\noslňujúcejšej\noslňujúcejší\noslňujúcejšia\noslňujúcejšie\noslňujúcejšieho\noslňujúcejšiemu\noslňujúcejších\noslňujúcejším\noslňujúcejšími\noslňujúcejšiu\noslňujúcejšom\noslňujúcejšou\noslňujúci\noslňujúco\noslobodenecký\noslobodenie\noslobodený\nosloboditeľ\nosloboditeľka\nosloboditeľský\noslobodiť\noslobodzovací\noslobodzované\noslobodzovaní\noslobodzovania\noslobodzovanie\noslobodzovať\noslobodzujúcejšej\noslobodzujúcejší\noslobodzujúcejšia\noslobodzujúcejšie\noslobodzujúcejšieho\noslobodzujúcejšiemu\noslobodzujúcejších\noslobodzujúcejším\noslobodzujúcejšími\noslobodzujúcejšiu\noslobodzujúcejšom\noslobodzujúcejšou\noslobodzujúci\noslobodzujúco\nOsločan\nOslo\nosľom\noslopaný\noslopať\nosloský\nosľou\noslovenie\noslovený\noslovi\nosloviť\noslovovania\noslovovanie\noslovovaním\noslovovaniu\noslovovaný\noslovovať\noslznúť\nôsmacký\nôsmačka\nosmách\nôsmak\nosmám\nOsman\nosmanský\nosma\nosmažiť\nosmeliť\nosmeľovať\nosmi\nosmiať\nosmička\nosmičkový\nosmín\nosmina\nosminka\nosminový\nosmirídium\nosmit\nosmium\nôsmi\nOSMO\nosmológia\nosmonoh\nosmorák\nosmorako\nosmoráky\nosmoraký\nosmoreceptor\nosmoregulácia\nosmoro\nosmotropizmus\nosmóza\nosmŕdzať\nosmutnieť\nosmutnievať\nôsmykrát\nôsmy\nOSN\nosnovaný\nosnovateľ\nosnovateľka\nosnovať\nosnova\nosnovný\nosnúvať\nosob\nosobáčik\nosobák\nosobášiť\nosoba\nosobite\nosobitne\nosobitnosť\nosobitný\nosobito\nosobitosť\nosobitý\nosôbka\nosobne\nosobničkár\nosobničkársky\nosobničkárstvo\nosobno\nosobnoprávnymi\nosobnosť\nosobnostne\nosobnostný\nosobný\nosobovať\nosoč\nosočenie\nosočiť\nosočovačka\nosočovania\nosočovaniach\nosočovaniam\nosočovaniami\nosočovanie\nosočovaním\nosočovaniu\nosočovaný\nosočovateľ\nosočovatelia\nosočovateľský\nosočovať\nosočujúci\nosofikácia\nosoh\nosolený\nosoliť\nosol\nosolský\nosopiť\nosopoval\nosopovala\nosopovali\nosopovalo\nosopovať\nosopuj\nosopuje\nosopujem\nosopujeme\nosopuješ\nosopujete\nosopujme\nosopujte\nosopujú\nosopujúc\nosovo\nosový\nosožiť\nosožne\nosožnosť\nosožný\nOSP\nospalejšej\nospalejší\nospalejšia\nospalejšie\nospalejšieho\nospalejšiemu\nospalejších\nospalejším\nospalejšími\nospalejšiu\nospalejšom\nospalejšou\nospalo\nospalosť\nospalý\nospanlivo\nospanlivosť\nospanlivý\nospevovanie\nospevovaniu\nospevovaný\nospevovať\nospi\nospievanou\nospievanú\nospievať\nospovedal\nospravedlnenie\nospravedlnenka\nospravedlnený\nospravedlnený\nospravedlniteľný\nospravedlniť\nospravedlňovaná\nospravedlňované\nospravedlňovanieN\nospravedlňovať\nospravedlňujúca\nospravedlňujúce\nospravedlňujúceho\nospravedlňujúcej\nospravedlňujúcemu\nospravedlňujúci\nospravedlňujúcich\nospravedlňujúcim\nospravedlňujúcimi\nospravedlňujúco\nospravedlňujúcom\nospravodliv\nospravodliví\nospravodlivia\nospravodliviac\nospravodlivil\nospravodlivila\nospravodlivili\nospravodlivilo\nospravodlivím\nospravodlivíme\nospravodlivíš\nospravodliviť\nospravodlivíte\nospravodlivme\nospravodlivte\nosprchovanie\nosprchovať\nosprostený\nosprostieť\nosprostieva\nosprostievaj\nosprostievajme\nosprostievajte\nosprostievajú\nosprostievajúc\nosprostieval\nosprostievala\nosprostievali\nosprostievalo\nosprostievam\nosprostievame\nosprostievaš\nosprostievať\nosprostievate\nosprostiť\nosrblianskej\nosrienený\nosrk\nosŕkať\nosrstený\noss\nossarium\nostalgia\nostarej\nostarejme\nostarejte\nostarejú\nostarejúc\nostarený\nostarieť\nostarievať\nostarla\nostarli\nostarlo\nostarnúť\nostarnutý\nostarok\nostarol\nostatie\nostatne\nostatné\nostatný\nostato\nostatok\nostať\nostatý\nOstávajúca\nostávajúce\nostávajúceho\nostávajúcej\nostávajúcemu\nostávajúci\nostávajúcich\nostávajúcim\nostávajúcimi\nostávajúcom\nostávajúcu\nostávať\nOstavia\nostealgia\nosteitída\nOsten\nostenie\nosteň\nostentatívnosť\nostentatívny\nostený\nosteoartritída\nosteoartróza\nosteoartrózu\nosteoartrózy\nosteoblast\nosteoblastóm\nosteocyt\nosteodýnia\nosteoektómia\nosteofibróm\nosteofyt\nosteogenéza\nosteochondróm\nosteochondrosarkóm\nosteológia\nosteóm\nosteomalácia\nosteomyelitída\nosteonekróza\nosteoperiostitída\nosteoporóza\nosteoporóze\nosteoporózou\nosteoporózu\nosteoporózy\nosteosarkóm\nosteosyntéza\nosteotómia\nostéria\nôstie\nostina\nostinato\nostitída\nostium\nosť\nostňa\nostňami\nostnatý\nostne\nostni\nostňoch\nostňom\nostňov\nostňu\nostopäť\nostošesť\nostra\nostrakizmus\nostrakizovať\nostrakon\nostrapkať\nostrapkávať\nostrapkovanie\nostratických\nOstrava\nostravský\nostražite\nostražito\nostražitosť\nostražitý\nostredok\nostrejšej\nostrejší\nostrejšia\nostrejšie\nostrejšieho\nostrejšiemu\nostrejších\nostrejším\nostrejšími\nostrejšiu\nostrejšom\nostrejšou\nostreknúť\nostrekovač\nostrekovaní\nostrekovať\nostreľovač\nOstreľovačova\nostreľovania\nostreľovanie\nostreľovaniu\nostreľovaný\nostreľovať\nostrenie\nostrený\nostrešie\nostriaci\nostrica\nostricový\nostriekaný\nostriekať\nostrieľanosť\nostrieľaný\nostrieľať\nostrie\nostriež\nOstriežová\nostriežovi\nostrihanie\nostrihaný\nostrihať\nOstrihom\nOstrihomčan\nostrihomský\nostriť\nostrív\nostrivo\nostrižka\nostro\nostrôh\nostroha\nostroh\nostrohový\nostrohranná\nostrohrannú\nostrohrannými\nostrolistý\nOstrolúcka\nostrosť\nostrostrelci\nostrostrelcov\nostrostrelec\nostrota\nostrotou\nostrouhlejšej\nostrouhlejší\nostrouhlejšia\nostrouhlejšie\nostrouhlejšieho\nostrouhlejšiemu\nostrouhlejších\nostrouhlejším\nostrouhlejšími\nostrouhlejšiu\nostrouhlejšom\nostrouhlejšou\nostrouhlý\nostroum\nostroumný\nostrovan\nostrovania\nOstrovania\nostrovanka\nOstrovany\nostrov\nostrovček\nostrovida\nostrovid\nostrovidný\nostrovidovi\nostrovný\nostrovského\nostrovskej\nostrovskom\nostrovskú\nOstrovsky\nostrovských\nOstrovský\nostrovtip\nostrovtipne\nostrovtipnosť\nostrovtipný\nostrozelený\nostrozraký\nostrôžka\nostručký\nostrúhaný\nostrúhať\nostružina\nostružinový\nostružlina\nostrva\nostrý\nOsturňa\nOsturni\nostýchať\nostýchavo\nostýchavosť\nostýchavý\nostych\nosud\nosudie\nosudne\nosudnosť\nosudný\nosudove\nosudovejší\nosudovo\nosudovosť\nosudový\nosuheľ\nosuhľami\nosuhle\nosuhli\nosuhlí\nosuhliach\nosuhliam\nosuhľou\nosúcha\nosúch\nosumilit\nOsuský\nosúšať\nosušení\nosušenia\nosúšik\nosušiť\nosuška\nosúšky\nosušovač\nosušovať\nosve\nosvecovania\nosvecovať\nosvedčene\nosvedčenie\nosvedčený\nosvedči\nosvedčite\nosvedčiť\nosvedčovacej\nosvedčovací\nosvedčovacia\nosvedčovacieho\nosvedčovaciu\nosvedčovania\nosvedčovanie\nosvedčovaniu\nosvedčovaný\nosvedčovať\nosvedčujúci\nosvetách\nosvetám\nosvetami\nosvetár\nosvetársky\nosveta\nosvetlene\nosvetlenie\nosvetlený\nosvetliť\nosvetľovací\nosvetľovač\nosvetĺovači\nosvetľované\nosvetľovaní\nosvetľovania\nosvetľovanie\nosvetľovaných\nosvetľovanými\nosvetľovať\nosvetľujúci\nosvetove\nosvetovo\nosvetový\nosvetový\nOsvienčim\nOsvienčimčan\nosvienčimský\nosviet\nosvietene\nosvietenec\nosvietenie\nosvietenosť\nosvietenský\nosvietenský\nosvietenstvo\nosvietený\nosvietiť\nosvieženie\nosviežený\nosviežieť\nosviežiť\nosviežovač\nOsviežovanie\nosviežovať\nosviežujúcejšej\nosviežujúcejší\nosviežujúcejšia\nosviežujúcejšie\nosviežujúcejšieho\nosviežujúcejšiemu\nosviežujúcejších\nosviežujúcejším\nosviežujúcejšími\nosviežujúcejšiu\nosviežujúcejšom\nosviežujúcejšou\nosviežujúci\nosviežujúco\nosvit\nosvitmi\nosvitomera\nosvitomer\nosvitový\nosvojenec\nosvojenie\nosvojenka\nosvojenský\nosvojený\nosvojiteľ\nosvojiteľka\nosvojiť\nosvojované\nosvojovaného\nosvojovaní\nosvojovania\nosvojovanie\nosvojovaním\nosvojovaniu\nosvojovať\nosychať\nosýpkach\nosýpkam\nosýpkový\nosýpky\nošacovať\nošarpane\nošarpano\nošarpanosť\nošarpaný\nošarpať\nošatení\nošatenia\nošatenie\nošatením\nošatiť\nOščadnica\nOščadnice\nOščadnici\noščadnický\nOščadnicou\nOščadnicu\nošedivieť\nošemetník\nošemetnosť\nošemetný\nošemeto\nošetrenieN\nošetrený\nošetriť\nošetrovacej\nošetrovací\nošetrovacia\nošetrovacie\nošetrovacieho\nošetrovacích\nošetrovacím\nošetrovacími\nošetrovaciu\nošetrovacom\nošetrovanie\nošetrovaný\nošetrovateľ\nošetrovateľka\nOšetrovateľsky\nošetrovateľský\nošetrovateľstvo\nošetrovať\nošetrovňa\nošetrovní\nošetrujúcich\nošiale\nošialenie\nošialený\nošialiť\nošiaľ\nošiaľmi\nošiaľoch\nošiaľom\nošiaľov\nošiaľu\nošibať\nošifrovaný\nošifrovať\nošípaná\nošipáreň\nošipárňach\nošipárňam\nošírovať\nošítka\nošívanie\nošívať\nOŠK\noškaredieť\nOškerda\nOškerde\noškierať\nošklb\nošklbanec\nošklbaný\nošklbať\nošklbávať\nošklbú\nošklbúc\nošklivec\noškliviť\nošklivo\nošklivosť\nošklivý\noškobliť\noškodiť\noškodovať\noškrab\noškrabaný\noškrabať\noškrabávať\noškrabkať\noškrabkávať\noškrabovať\noškrabúvať\noškretý\noškriab\noškriabaný\noškriabať\noškriabe\noškriabem\noškriabeme\noškriabeš\noškriabete\noškriabme\noškriabte\noškriabu\noškriabuc\noškrieť\noškrúc\noškúliť\noškuľovať\noškvar\noškvarček\noškvariť\noškvarkový\noškvarok\noškvarte\noškvŕknuť\nošľahaný\nošľahať\nošľahávať\nošľahla\nošľahli\nošľahlo\nošľahne\nošľahnem\nošľahneme\nošľahneš\nošľahnete\nošľahni\nošľahnime\nošľahnite\nošľahnú\nošľahnúc\nošľahnúť\nošľahol\nošľahúvať\nošliechať\nošmek\nošmekár\nošmekla\nošmekli\nošmeklo\nošmekne\nošmeknem\nošmekneme\nošmekneš\nošmeknete\nošmekni\nošmeknime\nošmeknite\nošmeknú\nošmeknúc\nošmeknutie\nošmeknúť\nošmeknutý\nošmekol\nošmirgľovať\nošmŕdať\nošmrdok\nošmyknúť\nošomraný\nošomrať\nošomrávať\nošomre\nošomrem\nošomreme\nošomreš\nošomrete\nošomri\nošomrime\nošomrite\nošomrú\nošomrúc\nošpatnieť\nošperkovaných\nošperkovať\nošpľachnúť\nošplechnúť\nošpliechať\noštár\noštárať\noštara\noštarný\noštarovať\nošťať\noštepa\noštepár\noštepárka\noštepársky\noštep\nošti\noštia\noštiepok\noštítkovanie\noštítkovaný\noštítkovať\nošucnúť\nošudiť\nošúchane\nošúchanec\nošúchano\nošúchanosť\nošúchaný\nošúchať\nošúchavania\nošuchávať\nošúchavať\nošuchnúť\nošumelejšej\nošumelejší\nošumelejšia\nošumelejšie\nošumelejšieho\nošumelejšiemu\nošumelejších\nošumelejším\nošumelejšími\nošumelejšiu\nošumelejšom\nošumelejšou\nošumelo\nošumelosť\nošumelosťou\nošumelý\nošúpať\nošupovanie\nošustnúť\nošvindľovať\not\notáčací\notáčajúci\notáčane\notáčanieN\notáčaný\notáčať\notáčavosť\notáčavý\notáčka\notáčkomera\notáčkomer\notáčkové\notáľajúci\notáľanie\notáľať\notáľavo\notáľavý\notalgia\noťali\noťapený\noťapiť\noťapkať\noťarbavieť\noťarchavieť\notáv\notava\notávený\notavienka\nOtavské\nOtavských\nOtavským\notázka\notáznik\notaznikom\notázny\notázočka\noťaž\noťažená\noťažia\noťažieť\noťažievať\noťažkať\noťažkávať\noťažkavieť\notcovizeň\notcovizňami\notcovizne\notcovizni\notcovizní\notcovizniach\notcovizniam\notcovizňou\notcovrahov\notcovsky\notcovský\notcovstvo\notcov\notcuprisám\notčenáša\nOtčenáša\notčenáše\nOtčenáše\notčenáši\nOtčenáši\notčenášik\nOtčenášik\notčenáš\notčenášmi\nOtčenášmi\notčenášoch\nOtčenášoch\notčenášom\nOtčenášom\notčenášov\nOtčenášov\notčenášu\nOtčenášu\notčestvo\notčimami\notčim\notčín\notčina\nOTE\notec\notecko\noteckovom\noteč\notehnotnieť\notehotnenia\notehotnenie\notehotneniu\notehotnieť\notela\notelená\notelené\notelení\notelenie\noteliť\nOtelo\notemnieť\notentovať\notepami\notep\notepi\notepí\notepiach\notepiam\noteplej\noteplejme\noteplejte\noteplejú\noteplejúc\noteplel\noteplela\notepleli\noteplelo\noteplené\noteplenej\noteplenie\nOteplenú\noteplených\notepleným\noteplie\notepliem\noteplieme\noteplieš\noteplieť\notepliete\noteplievať\notepliť\notepľovací\notepľovačiek\notepľovačky\noteplovák\notepľovanie\notepľovať\notepľujúci\notepou\noter\notesanie\notesaný\notesať\notesávať\notestovania\notestovanie\notestovaním\notestovaniu\notestovaný\notestovať\noteš\noteše\notešem\notešeme\notešeš\notešete\notešme\notešte\notešú\notešúc\notetovanie\notetovať\notextovať\notexturované\nOTF\nOthello\notiahla\notiahli\notiahlo\notiahne\notiahnem\notiahneme\notiahneš\notiahnete\notiahni\notiahnime\notiahnite\notiahnu\notiahnuc\notiahnuť\notiahnutý\notiahol\notiater\notiatria\notienalista\notientovať\notiepka\notieraní\notieraním\notierať\nOtília\notitída\notitulkovanie\notitulkovaním\notitulkovaný\notitulkovať\notitulovali\notitulované\notitulovať\notitulujú\nOTK\nOTKA\notláčaných\notláčať\notlačenina\notlačený\notlačiť\notlačkami\notlačkoch\notlačkom\notlačkov\notlačku\notlačky\notlačok\notlak\notĺcť\notlčený\notĺkať\notĺkava\notĺkavaj\notĺkavajme\notĺkavajte\notĺkavajú\notĺkavajúc\notĺkaval\notĺkavala\notĺkavali\notĺkavalo\notĺkavam\notĺkavame\notĺkavaš\notĺkavať\notĺkavate\notmavieť\notmavievať\notne\notni\notnú\notoblenorea\nOto\notočenie\notočený\notočiť\notočka\notočne\notočný\notofón\notolaryngológ\notolaryngológia\notolit\notolitiáza\notológia\notoman\notomane\notomanskej\notomanu\notomany\notona\notonel\notoneuralgia\notopexia\notoragia\notorea\notorinolaryngológ\notorinolaryngológia\notoskleróza\notoskop\notoskopia\notras\notrasenia\notrasenie\notrasením\notraseniu\notrasený\notrasiteľný\notrasne\notrasnosti\notrasný\notrava\notrávene\notrávenie\notrávením\notrávenosť\notrávený\notráviť\notravne\notravnosť\notravný\notravovanie\notravovaním\notravovaniu\notravovať\notravujúci\notŕčania\notŕčať\notrčený\notrčiť\notrenie\notrený\notrepane\notrepanosť\notrepaný\notrepať\notrepávať\notresk\notreštenec\notretie\notretý\notrhane\notrhanec\notrhanie\nOtrhánky\notrhanosť\notrhaný\notrhať\notrháva\notrhávaj\notrhávajme\notrhávajte\notrhávajú\notrhávajúc\notrhával\notrhávala\notrhávali\notrhávalo\notrhávam\notrhávame\notrhávaš\notrhávať\notrhávate\notriasajúca\notriasajúce\notriasajúcej\notriasajúci\notriasajúcim\notriasajúcimi\notriasaná\notriasanej\notriasanom\notriasaných\notriasať\notriasť\notrieskať\notrieť\notriezvieť\notrlejší\notrlí\notrlo\notrlých\notrockosť\notrocky\notrocký\notroctvo\notročenie\notročením\notročina\notročiť\nOtročok\notrokár\notrokársky\notrokárstvach\notrokárstvam\notrokárstvo\notrok\notrokova\notrokyňa\notrúb\notrubách\notrubám\notrubami\notruby\notrúc\notrundžený\notrusinka\nottawský\nottocento\nOtu\noťukané\noťukanie\noťukať\noťukávaní\noťukávania\noťukávanie\noťukávať\notupa\notupene\notupenie\notupenosť\notupený\notupieť\notupievať\notupiť\notupne\notupno\notupnosť\notupný\notupovanie\notupovať\notupujúci\notužený\notužieť\notužilec\notužilejšej\notužilejší\notužilejšia\notužilejšie\notužilejšieho\notužilejšiemu\notužilejších\notužilejším\notužilejšími\notužilejšiu\notužilejšom\notužilejšou\notužilosť\notužilý\notužiť\notužovací\notužoval\notužovala\notužovali\notužovalo\notužovaní\notužovať\notužuj\notužuje\notužujem\notužujeme\notužuješ\notužujete\notužujme\notužujte\notužujú\notužujúc\notvárací\notvárač\notvárajúca\notvárajúce\notvárajúceho\notvárajúcej\notvárajúcemu\notvárajúci\notvárajúcich\notvárajúcim\notvárajúcom\notvárajúcou\notvárajúcu\notvárane\notváranieN\notváraný\notvárateľný\notvárať\notvárení\notvárenie\notvárka\notvárkach\notvárke\notvárkou\nOtvárkové\notvárkovej\notvárkových\notvárku\notvárky\notvor\notvorene\notvorenieN\notvorenosť\notvorený\notvoriť\notvorový\notvorte\nOty\nou\nOÚ\nouagadougouský\noúdi\nouguiya\nOÚNZ\nOÚP\nout\noutlet\noutor\noutput\noutsidera\noutsider\noutsideri\noutsidermi\noutsideroch\noutsiderom\noutsiderov\noutsiderovi\noutsourcing\nouvertúr\nouvertúrach\nouvertúram\nouvertúra\nováciách\nováciám\nováciami\novácie\novácií\novačná\novada\novad\novädnúť\novadovi\novádzať\novakovať\noval\novál\nováli\novaliť\novalmi\noválmi\noválny\noválový\novaň\novanie\novaniem\novanieme\novanieš\novaniete\novaňme\novaňte\novanúť\novar\novaria\novariálny\novariektómia\novariola\novaritída\novárium\noväzovať\novca\novčiak\novčiaky\novčiar\novčiareň\novčiarňach\novčiarňam\novčiarsky\novčiarstvach\novčiarstvam\novčiarstvo\novčiatko\novčí\novčín\novčina\novčíne\novčinec\novčínov\novčíny\novdovenia\novdovenie\novdovený\novdovieť\novečka\noveľa\novenčený\novenči\novenčime\novenčite\novenčiť\novenčovať\novenčuje\noveral\noveralmi\noverene\noverenie\noverený\noverený\noverí\noverím\noveríme\noveríš\noveríte\noveriteľný\noveriť\noverlock\noverovací\noverovane\noverovanie\noverovaný\noverovateľ\noverovateľka\noverovať\noverview\novesiť\novešaný\novešať\novešiavať\novi\noviať\noviazaný\noviazať\noviaž\noviaže\noviažem\noviažeme\noviažeš\noviažete\noviažme\noviažte\noviažu\noviažuc\novicíd\novidukt\noviec\nOviede\nOviedo\novievaná\novievaní\novievanie\novievať\novíjadlo\novíjanie\novíjaný\novíjať\novíjavý\novije\novijem\novijeme\noviješ\novijete\novijú\novijúc\novime\novínadlo\novíňať\novinka\novinovačka\novinovaní\novinovať\novinutie\novinúť\novinutý\noviparia\novipariá\novipozícia\novisá\novisaj\novisajme\novisajte\novisajú\novisajúc\novisal\novisala\novisali\novisalo\novisám\novisáme\novisáš\novisať\novisáte\novísať\novisnutie\novisnúť\novisnutý\novite\noviť\novium\novládací\novládač\novládajúci\novládane\novládanejší\novládanieN\novládaný\novládateľnosť\novládateľný\novládateľov\novládať\novládl\novládnuci\novládnutie\novládnuto\novládnuť\novládnutý\novládz\novlažený\novlažiť\novlažovať\novlažujúci\novlhčiť\novlhnúť\novoc\novocie\novocinár\novocinárka\novocinársky\novocinárstvach\novocinárstvam\novocinárstvo\novocne\novocnejší\novocno\novocný\novocyt\novogamia\novogenéza\novoglobulín\novoid\novoňanie\novoňať\novoniavať\novos\novplyvnenie\novplyvnený\novplyvni\novplyvnime\novplyvnite\novplyvniteľnosť\novplyvniteľnosti\novplyvniteľný\novplyvniť\novplyvňovane\novplyvňovanie\novplyvňovaný\novplyvňovateľ\novplyvňovateľa\novplyvňovateľov\novplyvňovať\novplyvňujúci\novrabči\novrabčime\novrabčite\novrabčiť\novracať\novrávať\novravieť\novrúbiť\novrubovať\novsa\novsami\novse\novsený\novsík\nOvsišťa\nOvsište\nOvsišti\nOvsišťom\novsoch\novsom\novsov\novsu\novsy\novšem\novula\novulácia\novulačný\novulum\novum\novzdušie\novzudšie\noxacilín\noxeroxoval\noxeroxovala\noxeroxovali\noxeroxovalo\noxeroxovať\noxeroxuj\noxeroxuje\noxeroxujem\noxeroxujeme\noxeroxuješ\noxeroxujete\noxeroxujme\noxeroxujte\noxeroxujú\noxeroxujúc\noxford\nOxford\nOxforde\noxfordský\nOxfordu\noxidácia\noxidačný\noxidant\noxid\noxidické\noxidickú\noxidických\noxidickými\noxidovanie\noxidovaný\noxidovať\noxidovej\noxidujúci\noxmoron\noxybióza\noxycefália\noxygenácia\noxygén\noxygenium\noxygénium\noxygenoterapia\noxymeter\noxymóron\noxymoron\noxyoron\noxytetracyklín\noxytocín\nOZ\nozaéna\nozaj\nozajsky\nozajstne\nozajstný\nozbíjanie\nozbíjaný\nozbíjať\nozborojený\nozbrojene\nozbrojenec\nozbrojenie\nozbrojený\nozbrojiť\nozbrojovanie\nozbrojovať\nozdarovňa\nOzdín\nozdôb\nozdoba\nozdobenie\nozdobený\nozdobiť\nozdôbka\nozdobne\nozdobnosť\nozdobný\nozdobovaní\nozdobovanie\nozdobovať\nozdravenie\nozdravený\nozdravieť\nozdraviť\nozdravovacej\nozdravovací\nozdravovacia\nozdravovacie\nozdravovacieho\nozdravovaciemu\nozdravovacích\nozdravovacím\nozdravovacími\nozdravovaciu\nozdravovacom\nozdravovacou\nozdravovanie\nozdravovať\nozdravovňa\nozdravovní\nozelenenie\nozelenených\nozelenieť\nozeleniť\nozembucha\nozembuch\nozembuchovi\nozembuchovia\noziab\noziabanie\noziabať\noziabe\noziabem\noziabeme\noziabeš\noziabete\noziablina\noziabme\noziabnuť\noziabte\noziabu\noziabuc\nozimina\noziminový\nozimný\nozimný\noziný\nozlomkrk\nozlomkrky\nozná\noznačenie\noznačený\noznačiť\noznačkovanie\noznačkovaný\noznačkovať\noznačovacej\noznačovacie\noznačovacieho\noznačovacích\noznačovaciu\noznačovane\noznačovanie\noznačovaný\noznačovať\noznačujúci\noznam\noznáme\noznámene\noznámenie\noznámený\noznámiť\noznámkovaná\noznámkované\noznámkovať\noznamovací\noznamovač\noznamovania\noznamovanie\noznamovaním\noznamovaniu\noznamovaný\noznamovateľ\noznamovatele\noznamovateli\noznamovateľka\noznamovateľu\noznamovať\noznamujúcich\noznane\noznojiť\nozobávať\nozobe\nozokerit\nozón\nozonizácia\nozonizáciu\nozonizátor\nozonolýza\nozónometer\nozonometria\nozonosféra\nozonosféry\nozónovo\nozónový\nozoriť\nozrejmená\nozrejmené\nozrejmení\nozrejmenia\nozrejmenie\nozrejmením\nozrejmi\nozrejmime\nozrejmite\nozrejmiť\nozrejmovanie\nozrejmovať\nozreli\nozrút\nozrutáň\nozrutánsky\nozrutánsky\nozruta\nozrutne\nozrutnosťou\nozrutný\noztrieštene\nozubadlili\nozubadliť\nozub\nozubce\nozubec\nozubenie\nozubený\nozubí\nozubiť\nozubme\nozubnica\nozubnice\nozubnicou\nozubnicový\nozubnicu\nozubová\nozubte\nozvách\nozvám\nozvať\nozva\nozvena\nozvi\nozvime\nozvite\nozvláštnená\nozvláštniť\nozvláštňovať\nozvučené\nozvučenia\nozvučenie\nozvučením\nozvučených\nOzvučený\nozvučiť\nozvučný\nozvučovanie\nozvučovať\nozvuk\nozvukom\nozyv\nozývať\nožali\nožarovane\nožarovania\nožarovanie\nožarovaním\nožarovaniu\nožarovaný\nožarovať\nožarujúca\nOžďany\nožehliť\nožehnúť\noželej\noželejme\noželejte\noželejú\noželejúc\noželenia\noželenie\noželieť\noženiť\nožialiť\nožiarenia\nožiarenie\nožiarením\nožiareniu\nožiarený\nožiariť\nožierať\nožiť\nožitý\nožívaní\nožívania\nOžívanie\nožívaním\nožívať\noživene\noživenie\noživeno\noživený\noživieť\noživiť\noživnúť\noživotniť\noživotvor\noživotvorenia\noživotvorenie\noživotvorí\noživotvoria\noživotvoriac\noživotvoril\noživotvorila\noživotvorili\noživotvorilo\noživotvorím\noživotvoríme\noživotvoríš\noživotvoriť\noživotvoríte\noživotvorme\noživotvorte\noživovacej\noživovací\noživovacia\noživovacie\noživovacieho\noživovacích\noživovacím\noživovacími\noživovaciu\noživovacou\noživovaná\noživované\noživovanej\noživovaní\noživovania\noživovanie\noživovaním\noživovaniu\noživovaných\noživovaným\noživovateľ\noživovateľka\noživovať\noživujúca\noživujúce\noživujúceho\noživujúcej\noživujúcemu\noživujúci\noživujúcich\noživujúcim\noživujúcimi\noživujúco\noživujúcom\noživujúcou\noživujúcu\nožltnúť\nožobráčenie\nožobráčením\nožobráčený\nožobráčiť\nožobračoval\nožobračovala\nožobračovali\nožobračovalo\nožobračovaná\nožobračovaní\nožobračovania\nožobračovanie\nožobračovaním\nožobračovaniu\nožobračovať\nožobračuj\nožobračuje\nožobračujem\nožobračujeme\nožobračuješ\nožobračujete\nožobračujme\nožobračujte\nožobračujú\nožobračujúc\nožran\nožranec\nožranský\nožranstvo\nožrať\nožratý\nožrebiť\nožuje\nOžvoldíkova\np\nP\nPa\nPA\npá\npaakt\npaberkoch\npaberkom\npaberkov\npaberkovania\npaberkovanie\npaberkovať\npaberky\npableskami\npablesk\npableskný\npableskovať\npac\npacatamente\npacato\npacemaker\npaci\npacient\npacientiek\npacientka\npacientov\npacientsky\npacifický\nPacifik\npacifikácia\npacifikačný\nPacifikom\npacifikovala\npacifikovali\npacifikovaní\npacifikovať\nPacifiku\npacifikuje\npacifista\npacifisticky\npacifistický\npacifistka\npacifizmus\npaciscent\npác\npácka\nPackard\npáckať\npackať\npacka\npacnúť\npacôčka\npacoval\npacovala\npacovali\npacovalo\npacovať\npácovať\npacuj\npacuje\npacujem\npacujeme\npacuješ\npacujete\npacujme\npacujte\npacujú\npacujúc\nPača\npáčení\npáčenia\npáčenie\npačesmi\npačesoch\npačesom\npačesov\npačesovať\npačesy\npáčiť\npačivár\npáčivo\npáčivý\npáčka\npáčkový\npačmág\npačmaga\npačok\npačrev\npačuli\npadací\npadáčik\npadáčkov\npadáčky\npadajúci\npadák\npadákový\nPadáň\npadaní\nPadáni\npadania\npadanie\npadaniu\npadaných\npadať\npadáva\npadávať\npadavka\npadavý\npád\npaddock\npádel\npadimužícky\npádlach\npádlam\npádlo\npádlovať\npadlý\npádnosť\npadnúca\npadnúce\npadnúci\npadnúco\npadnúcu\npadnutie\npadnúť\npadnutý\npádny\npadok\nPadov\nPadova\npadovana\nPadove\nPadovská\nPadovu\nPadovy\npádový\npadre\npadrone\npadúcnic\npadúcnica\nPaedDr\nPaeDr\npaella\npaf\npagáčik\npagáč\npagáčový\npaganizmus\npagaštan\npagát\npagina\npagína\npaginácia\npagínach\npaginovačka\npaginovať\npagod\npagoda\npagodovitý\npagodový\npahltne\npahltnica\npahltník\npahltno\npahltnosť\npahltný\npahoehoe\npaholci\npaholček\npaholčiť\npaholka\npaholkami\npaholkoch\npaholkom\npaholkov\npaholkovi\npaholok\npaholský\nPahor\npahorkatina\npahorkatý\npahorkovitý\npahorok\npahrbkom\npahrbok\npahreba\npahýľa\npahýle\npahýli\npahýľ\npahýľmi\npahýľoch\npahýľom\npahýľov\npahýľu\npáchania\npáchanie\npáchaním\npáchaniu\npáchaný\npáchateľ\npáchateľka\npáchateľova\nPáchateľovo\npáchať\npach\npáchnuci\npachnúť\npáchnutie\npáchnuť\npachoľa\npacholiat\npacholiatko\npacholiatok\npachová\npachové\npachových\npacht\npachti\npachtime\npachtite\npachtiť\npachtivý\npachuť\npachuťami\npachuti\npachutí\npachutiach\npachutiam\npachuťou\npachycefália\npachyderma\npachydermia\npachymeningitída\npachyonychia\npachypleuritída\npair\npajác\npajácovi\npajaseň\npajediť\npajedivý\npajedlivý\npajedný\npájka\npájkoval\npájkovania\npájkovať\npajšieľ\npajšľami\npajšle\npajšliach\npajšliam\nPajštún\npajta\npajtáš\npajzel\npajzla\npajzlami\npajzle\npajzli\npajzloch\npajzlom\npajzlov\npajzlu\npajznúť\npák\npákach\npákam\npáka\npaket\nPaket\npakete\npaketmi\npaketoch\npaketom\npaketov\npaketovacie\npaketovacích\npaketované\npaketovaného\npaketovania\npaketový\npaketu\npakety\npakfong\nPakistan\nPakistanec\nPakistanka\npakistanský\npakľúč\npako\npakoreň\npakost\npakostmi\npakostnica\npakovanie\npakovaný\npakovať\npákový\npakt\npaktmi\npaktovanie\npaktovaniu\npaktovať\npakultúru\nPAL\nPál\npáĺ\npäl\nPala\nPaľa\npalacinkáreň\npalacinkárňach\npalacinkárňam\npalacinka\npalacinkový\npalác\npalácový\npaladín\nPaladium\npaládium\npalaistra\npalamída\nPalárikov\nPalárikova\nPalárikove\nPalárikovo\npalárikovskom\nPalát\nPaláta\npalatála\npalatalizácia\npalatalizovať\npalatinálny\npalatín\nPalatínovej\npalatolália\npalátom\npalatoplastika\npalatoschíza\npalatum\npalátum\nPalau\npáľa\npáľava\npaľba\npalcát\npalcátmi\npalcový\npalček\npalčiak\npálčivo\npálčivosť\npálčivý\nPale\npalearktický\npalebný\npalec\npálenčiar\npálenica\npálenie\npáleník\nPáleníka\nPáleníkom\nPáleníkovi\nPáleniska\nPálenisko\nPálenisku\npálenkár\npálenka\npálenkový\npálený\npaleoantropológia\npaleoarktický\npaleobiológ\npaleobiológia\npaleobotanik\npaleobotanika\npaleocén\npaleofytológia\npaleogén\npaleogéne\npaleogénne\npaleogénnej\npaleogénnych\npaleogénu\npaleograf\npaleografia\npaleografický\npaleografka\npaleoklíma\npaleolit\npaleolitický\npaleolitmi\npaleont\npaleontológ\npaleontológia\npaleontologický\npaleontologička\npaleotyp\nPaleozoické\npaleozoickým\npaleozoikom\npaleozoikum\npaleozoológ\npaleozoológia\npalermského\npalermskej\npalermskou\npalermskú\npalermským\nPalestína\nPalestínčan\nPalestínčanka\nPalestínec\nPalestínka\npalestínsky\npalestínsky\npalestra\npaletá\npaleta\npaletizácia\npaletizačná\npaletizačné\npaletizačnej\npaletizačnou\npaletizačnú\npaletizačných\npaletizačnými\npaletka\npaleto\npaletovo\npaletový\npálí\npáliacemu\npáliaci\npáliacim\nPaliatívna\npaliatívne\npaliatívnej\npaliatívnu\npaliatívnych\npaliatívum\npalica\npalicovať\npalicový\npalič\nPaliča\npaliči\npalička\npaličkovaná\npaličkovanej\npaličkovanie\npaličkovať\npaličkovitý\npaličkový\nPaličom\npaličov\nPaličovi\npaličský\npaliem\npalier\npaliermi\npaliet\npálievať\npalilália\npalilógia\npalimpsest\npalina\npalindróm\nPalíne\npalingenéza\npalinový\npalínskom\npalisád\npalisádach\npalisádam\npalisáda\npalisádový\npalisády\npalisander\npalist\npáliť\npalium\npalív\npalivo\npalivovo\npalivovo-energetický\npalivový\npálivý\nPaľka\npálka\npálkam\npálkami\nPalkovičova\nPalkovičová\nPalkovičovo\nPalkovičovom\nPálku\npalla\npallium\npalmáre\npalma\npalmíra\npalmitín\npalmový\npalne\npalný\nPaľo\nPalom\npaloša\npaloš\npaloši\npalošík\npalota\nPaľova\npalpa\npalpabilný\npalpácia\npalpebra\npalpitácia\npalpovať\nPalu\npalúb\npaluba\npalubne\npalubný\npalubovka\npalubový\nPaludza\npalygorskit\npamajorán\npamätania\npamätanie\npamätať\npamäťN\npamätihodnosť\npamätihodný\npamäti\npamätlivosť\npamätlivý\npamätníček\npamätníčka\npamätníčkoch\npamätníčkom\npamätníčkov\npamätník\npamätníku\npamätníky\npamätný\npamäťovo\npamäťový\nPamela\nPamelu\nPamely\npamflet\npamfletický\npamfletista\npamfletový\npamiatkách\npamiatkám\npamiatkar\npamiatkár\npamiatkarka\npamiatkárka\npamiatkarský\npamiatkársky\npamiatkárstvach\npamiatkárstvam\npamiatkarstvo\npamiatkárstvo\npamiatka\npamiatkovo\npamiatkový\nPamír\nPamíre\nPamíru\nPamíry\npámp\npampa\npampero\nPamplona\nPamplone\nPamplonu\nPamplony\npampový\npampúcha\npampúch\npampúchový\npampúšik\npamuk\npamukový\npan\nPan\nPaňa\npáňa\npánabeka\npánaboha\npanacea\nPanacea\npanáčik\npanáčiku\npanáčiky\npanáčka\npanáčkami\npanáčkoch\npanáčkom\npanáčkov\npanáčkovať\npanáčku\npanáčky\npanafrický\npánajána\npanák\npanáku\npanáky\npanám\nPanám\npanama\nPanama\nPanamčan\npanamčanka\nPanamčanka\nPanamec\npanamerický\nPanamka\npanamový\npanamský\npanarícium\nPanasonic\npanašovanie\npáňat\npáňatiek\npáňatko\npanázijský\npánboh\npánbohhovie\npanbohchráň\npánbohchráň\npánboh\npánbohvie\npanbochráň\npánbochráň\npánbožko\nPánbožko\npán\npanci\npanciera\npancier\npancieri\npancierik\npancierniček\npanciernik\npancierovane\npancierovania\npancierovanie\npancierovaním\npancierovaný\nPancierovkou\npancierový\npancime\npancite\npancytopénia\npánča\npaňčašíla\npánčatiek\npánčatko\npančenláma\npančovania\npančovanie\npančovaním\npančovaniu\npančovaný\npančovať\npančucháče\npančucháčmi\npančucháčoch\npančucháčom\npančucháčov\nPančuchári\npančuchárom\npančuchárskeho\npančuchárskom\nPančuchársky\npančucha\npančuchový\npančuška\npančuškový\npanda\nPanda\npandán\npandántiv\nPande\npandémia\npandemicky\npandemický\npandémie\npandémii\npandémiou\npandémiu\npandemónium\npandermit\npandit\npandora\nPandora\nPandorina\nPandorinej\nPandorinou\nPandorinu\npandrava\nPandu\npandúr\npandúrsky\npandy\npandž\npane\npanebože\npanegyrický\npanegyrika\npanej\npanela\npanelák\npanelákový\npanelár\npaneláreň\npanelárňach\npanelárňam\npanel\npanelček\npanele\npanelmi\npanelovo\npanelový\npanendoskop\npanenka\npanenskosť\npanensky\npanenský\npanenstvo\npanenteizmus\nPaneurópa\npaneurópska\npaneurópske\npaneurópskeho\npaneurópskej\npaneurópski\npaneurópskom\nPaneurópskou\npaneurópsku\npaneurópsky\npaneurópskych\npaneurópskym\npanfóbia\npangenéza\npangermanizmus\npangermánsky\npanghart\npanghartský\npangharty\npanhelénsky\npanchart\npanchromatický\npani\npaní\npaniach\npaniam\npaniami\npanic\npanickosť\npanicky\npanický\npanictvo\npanička\npanie\npanien\npaniev\npánik\nPánika\npanikár\npanikárči\npanikárčia\npanikárčiac\npanikárčil\npanikárčila\npanikárčili\npanikárčilo\npanikárčim\npanikárčime\npanikárčiš\npanikárčiť\npanikárčite\npanikárenie\npanikária\npanikáriac\npanikáril\npanikárila\npanikárili\npanikárilo\npanikárim\npanikárime\npanikáriš\npanikáriť\npanikárite\npanikárka\npanikárme\npanikársky\npanikárstvach\npanikárstvam\npanikárstvo\npanikárte\npanika\nPánikom\nPánikove\npanikulitída\npaniu\npankáč\npankáčka\npankáčsky\npankarditída\npank\npankhart\npankhartský\npankharty\nPankin\npánko\npánkova\npánkove\nPánkovej\npánkovmu\npánkovo\npánkovou\nPánkových\npánkovým\nPankrác\npankreas\npankreasektómia\npankreatický\npankreatín\npankreatitída\npankreatolitiáza\npanmyelopatia\npanna\npannerone\nPannin\nPannom\npanó\npanoftalmia\npánombohom\npanón\nPanónia\npanónsky\npanónsky\npanoptický\npanoptík\npanoptikum\npanorám\npanorámach\npanorámam\npanoramatickosť\npanoramaticky\npanoramatický\npanoráma\npanorámovanie\npanoš\npanoši\npaňou\npanovačne\npanovačnosť\npanovačný\npanovanie\npanovať\npánovite\npánovito\npánovitosť\npánovitý\npanovnícky\npanovníčka\npanovník\npánov\npansky\npánsky\npanský\npánsky\npansláv\npanslávi\npanslavista\npanslavistický\npanslavistka\npanslávizmus\npanslavizmus\npanslávovi\npanslávsky\npansofia\npanspermia\npanspermizmus\npanstvo\npanštieť\npanštín\npanštinách\npanštinám\npanštinami\npanština\npánta\npantaleon\nPantalone\npantalóny\npantať\npánt\npanteista\npanteistický\npanteizmus\npantenol\npanteón\npanter\npantera\npanterom\npántik\npántmi\npantofág\npantograf\npantografe\npantografické\npantografickým\npantografom\npantografov\npantografu\npantografy\npantomím\npantomímach\npantomímam\npantomíma\npantomimici\npantomimicky\npantomimický\npantomimik\npantomimista\npánu\npánubohu\npanujúci\npanva\npanví\npanvica\npanvička\npanvový\npanychíd\npanychídach\npanychídam\npanychída\npanzootia\npap\npáp\npápá\npapáč\npapagájcovi\npapagajčí\npapagájčí\npapagájec\npapagájeho\npapagájemu\npapagájí\npapagáj\npapagájovi\npapagájsky\npapacha\npapaín\npapája\npapalá\npapaláš\npapalizmus\npapane\npapanie\npapaný\npapať\npapaverín\npapaya\npapa\npapek\npápera\npáper\npaperback\npaperbackový\npáperec\npáperie\npáperiový\npáperistý\npápernatý\npáperný\npáperovitý\npáperovo\npáperový\npápež\npápežov\npápežský\npápežstvo\npapiereň\npapierensky\npapierenský\npapierik\npapier\npapiermi\npapierňach\npapierňam\npapiernici\npapiernický\npapiernictvo\nPapiernikom\npapiernikov\npapierovaní\npapierovania\npapierovanie\npapierovaním\npapierovaniu\npapierovať\npapieroviny\npapierovo\npapierovosť\npapierový\npapila\npapilám\npapilárnych\npapile\npapilitída\npapilokarcinóm\npapilóm\npapilovitý\nPapín\nPapíne\nPapínske\npapiros\npapizmus\npapkáč\npapkať\npapka\npaplón\npaplónček\npaplónik\npaplónový\npapľuh\npapovavír\npappenheimskí\nPappom\nPappov\npapračka\npapraď\npapradie\npapradina\npapradinový\nPapradna\nPapradne\nPapradno\npapraďový\npaprať\npapŕč\npaprča\npaprčiť\npaprčka\npapre\npaprem\npapreme\npapreš\npaprete\npapri\npaprička\nPaprikáreň\npaprikáša\npaprikáše\npaprikáši\npaprikáš\npaprikášmi\npaprikášoch\npaprikášom\npaprikášov\npaprikášu\npaprika\npaprikovať\npaprikový\npaprime\npaprite\npaprskov\nPaprsku\npaprú\npaprúc\nPapuánka\npapuánsky\nPapua\npapúč\npapuča\npapučka\npapučový\nPapue\npapula\nPapula\npapuľa\npapuľka\npapuľnáč\npapuľnatý\npapuľoval\npapuľovala\npapuľovali\npapuľovalo\npapuľovať\npapuľový\nPapulu\npapuľuj\npapuľuje\npapuľujem\npapuľujeme\npapuľuješ\npapuľujete\npapuľujme\npapuľujte\npapuľujú\npapuľujúc\npapyrus\npapyrusový\npar\nparabellum\nParabellum\nparabelum\nparabióza\nparabola\nparabolicky\nparabolický\nparabúlia\nparacentéza\nparacirkevný\npáračka\npáračky\nparád\nparádach\nparadajka\nparadajkový\nparádam\nparáda\nparádenie\nparadentálny\nparadentóz\nparadentózach\nparadentózam\nparadentóza\nparadesant\nparadesantný\nparádička\nparadigiem\nparadigmatický\nparadigma\nparádiť\nparádnic\nparádnica\nparádnik\nparádnosť\nparádny\nparadontóz\nparadontózach\nparadontózam\nparadontóza\nparadox\nparadoxne\nparadoxnosť\nparadoxný\nparáf\nparafa\nparafernálny\nparafín\nparafínka\nParafínku\nparafínky\nparafínovanie\nparafínovo\nparafínový\nparafovania\nparafovanie\nparafovaním\nparafovaniu\nparafovaný\nparafovať\nparafráz\nparafrázach\nparafrázam\nparafráza\nparafrázia\nparafrázovanie\nParafrázovaním\nparafrázovaný\nparafrázovať\nparafrázujúce\nparafrázujúcim\nparafrénia\nparagán\nparaganglión\nparagenéza\nparageuzia\nparagliding\nparagnóza\nparagon\nparagón\nparagonit\nparagónmi\nparagónov\nparagóny\nparagraf\nparagrafia\nparagrafovaný\nparagrafový\nparagram\nParaguajčan\nParaguajčanka\nParaguajec\nParaguaj\nParaguajka\nparaguajský\nparachromatizmus\nparachronizmus\nparainfekcia\nparakaučuk\nparák\nparakinéza\nparakláza\nparalália\nparalaxa\nparalel\nparalela\nparalelizmu\nparalelizmus\nparalelka\nparalelne\nparalelnosť\nparalelný\nparalexia\nparalipomeon\nparalogizmus\nparalues\nparalytický\nparalytik\nparalýz\nparalýzach\nparalýzam\nparalyzátor\nparalýza\nparalyzovania\nparalyzovanie\nparalyzovaním\nparalyzovaniu\nparalyzovaný\nparalyzovať\nparamagnetizmus\nparameter\nparametricky\nparametrický\nparametrizácia\nparametrizovaný\nparametrizovateľný\nparamímia\nparamnézia\nparamorfóza\nparamos\nparamyxovírus\nparanefritída\nparangon\npáranie\nparanoický\nparanoidita\nparanoik\nparanoiou\nparanoja\nparanoje\nparanoji\nparanojou\nparanoju\nparanomia\nparanormálny\nparaolympiád\nparaolympiádach\nparaolympiádam\nparaolympiáda\nparaolympijský\nparaparéza\nparapet\nparapetný\nparapetový\nparaplégia\nparaplegik\nparapsychologickými\npararenálny\npararotacizmus\nparasigmatizmus\nparasyfilis\nparasymbióza\nparasympatikus\nparasystólia\nparašutista\nparašutistický\nparašutistka\nparašutizmus\nparataxia\nparathormón\nparatiť\nparátny\nparatónia\nparatrofia\npárať\nparatýfus\nparatyreoidea\nparaumbulikálny\nparaván\nparavenózny\nparazita\nparazitárny\nparazit\nparazitémia\nparaziti\nparazitickosť\nparaziticky\nparazitický\nparazitizmus\nparazitmi\nparazitne\nparazitnosť\nparazitný\nparazitocenóza\nparazitofauna\nparazitofóbia\nparazitológ\nparazitológia\nparazitologický\nparazitologička\nparazitovaní\nparazitovania\nparazitovanie\nparazitovaním\nparazitovaniu\nparazitovať\nparazitovi\nparazol\npara\npár\nparbleu\nparcelácia\nparcelačný\nparcela\nparcelné\nparcelného\nparcelných\nparcelným\nparcelnými\nparcelovala\nparcelovali\nparcelovaní\nparcelovanie\nparcelovať\nparcelový\nparciálny\nparčík\npardál\npardon\npardonovaná\npardonovaním\npardonovať\npardox\nPardubíc\nPardubicami\nPardubice\nPardubiciach\nPardubiciam\npardubická\npardubické\npardubického\npardubickej\npardubickému\npardubickí\npardubickom\npardubickou\npardubickú\npardubických\npardubickým\npardubickými\nPardubický\nparduna\npáre\npareidolia\npareja\nparekia\nparem\nparémia\nparene\nparenéza\nparenchým\nparenia\npárenia\nparenica\nparenicový\nparenička\nparenie\npárenie\nparením\npárením\nparenísk\nparenisko\npareniskový\nparenklíza\nparenklízia\nparentálny\nparentela\nparentetický\nparentéz\nparentézach\nparentézam\nparentéza\nparený\nparere\nparergický\nparergon\nparestézií\npareúnia\nparexcellence\nparéza\nparfém\nparfors\nparforse\nparfum\nparfuméria\nparfumovaný\nparfumovať\nparfumový\npargasit\npárhodinový\nparchant\nParchovanoch\nParchovany\nParchovian\npariaci\npariácia\npária\nparicídium\nparietálny\npárik\nParina\nParine\nparíp\nparipa\nparírovať\nparišad\nparita\npariť\nparitne\nparitný\npáriť\nparízera\nparízer\nparízeri\nParíža\nParížan\nParížania\nParížanka\nParíž\nParížom\nparížsky\nparížsky\nParížu\nparkan\nparkán\npark\nParker\nParkeru\nparketár\nparketáreň\nparketárňach\nparketárňam\nparketársky\nparketa\nparket\nparketovanie\nparketovať\nparketovo\nparketový\nparking\nparkinsonizmus\nparkovací\nparkovanie\nparkovať\nparkovísk\nparkovisko\nparkovo\nparkový\nparkrát\npárkrát\nparkúr\nparkúrový\nparlamentár\nparlamentarizmus\nparlamentárnej\nparlament\nparlamentmi\nparlamentne\nparlamentno\nparlamentný\nparlando\nparlér\nParma\nparmazán\nparmezán\nparmezánsky\npármi\nparmica\npárminútové\nParmou\nParmu\nParmy\nParna\nParnas\nparnasizmus\nparnaský\nParnasu\nparne\nPárnica\nPárnici\nPárnický\nparníček\nparníčka\nparníčkami\nparníčkoch\nparníčkom\nparníčkov\nparníčku\nparníčky\nparník\nparno\npárnokopytník\npárnokopytníky\nParnu\nparný\npárny\nparobci\nparobčiť\nparobka\nParobka\nparobkami\nparobkoch\nparobkom\nparobkov\nparobkovi\nparoblok\nparobok\nparódia\nparodickosť\nparodicky\nparodický\nparodizoval\nparodizovala\nparodizovali\nparodizovalo\nparodizovať\nparodizuj\nparodizuje\nparodizujem\nparodizujeme\nparodizuješ\nparodizujete\nparodizujme\nparodizujte\nparodizujú\nparodizujúc\nparodont\nparodontológia\nparodontóz\nparodontózach\nparodontózam\nparodontóza\nparodovať\nParoha\nparoháč\nparoháče\nparoháčik\nparohatý\nparoh\nparohový\npároch\nparochňa\nparochní\nparochniar\nparochniarsky\nparochnička\npárok\nparol\nparola\nparolou\npárom\nparoma\nparom\nparomovsky\nparomovský\nparomsky\nparomský\nparomvie\nparonomázia\nparonychia\nparonymon\nparonymum\nparoplavba\nparoplavebný\nparoplynový\nparorexia\nparosmia\nparotesná\nparotída\nparotis\nparotitída\npárov\npárovací\npárovacie\npárovacieho\npárovali\npárovalo\npárované\npárovanej\npárovaní\npárovania\npárovanie\npárovaniu\npárovaných\npárovať\npárovitý\nparovod\nparovodný\npárový\nparoxyzmus\nparozmia\nparožie\nparožka\nparožkami\nparožkoch\nparožkom\nparožkov\nparožku\nparožky\nparožok\nparožtek\npars\nparsec\nparsek\nparsonsit\npartaj\npartajach\npartajam\npartajami\npartaje\npartaji\npartají\npartajne\npartajníci\npartajník\npartajníkmi\npartajníkom\npartajníkov\npartajný\npartajou\nparta\npart\npartenogamia\npartenogenéza\npartenokarpia\nparter\nparteri\npartermi\nparterom\nparterov\nparteru\npartes\npartesy\npartia\nparticipácia\nparticipačný\nparticípiu\nparticípium\nparticipovania\nparticipovanie\nparticipovaním\nparticipovaniu\nparticipovať\npartička\npartieka\npartikularizmami\npartikularizmov\npartikularizmus\npartikularizmy\npartikulárny\npartikula\npartiový\npartite\npartitívny\npartitúr\npartitúrach\npartitúram\npartitúra\npartitúrový\npartizán\npartizánč\npartizánčenia\npartizánčenie\npartizánčeniu\npartizánči\npartizánčia\npartizánčiac\npartizánčil\npartizánčila\npartizánčili\npartizánčilo\npartizánčim\npartizánčime\npartizánčina\npartizánčiš\npartizánčiť\npartizánčite\npartizánčme\npartizánčte\npartizánka\npartizánsky\npartizánstvach\npartizánstvam\npartizánstvo\npartmi\npartnera\npartner\npartnerka\npartnerové\npartnerov\npartnersky\npartnerský\npartnerstvo\nparton\npartus\npárty\npáru\npárujeme\npárujú\nparvenu\nparvoviróza\nparvovírus\npáry\npasáčik\npasáčka\npasáčkich\npasáčkim\npasáčkiv\npasáčkivi\npasáčkivia\npásaj\npásajme\npásajte\npásajú\npásajúc\npásak\npasák\npásal\npásala\npásali\npásalo\npásam\npásame\npásanie\npasant\npasanti\npasantov\npásaš\npásať\npasát\npásate\npasátmi\npasátny\npasátový\npásavať\npásavka\npásavý\npasážach\npasážam\npasáž\npasažiera\npasažier\npasažierka\npas\npás\npascach\npascal\npascaly\npasca\npascí\npasé\npaseka\npásem\npasenia\npasenie\npasentný\npasený\nPasch\npascha\npasians\npasia\npasiek\npásiek\npásiem\npasienkar\npasienkár\npasienkarský\npasienkársky\npasienkárstvach\npasienkárstvam\npasienkarstvo\npasienkárstvo\npasienkový\npasienok\npasienokový\npásikavý\npásik\npásikovaný\npásikový\npasionála\npasionál\npasionáli\npasionálmi\npasírovanie\npasírovať\npasív\npasiváciu\npasívach\npasívam\npasivita\npasívnosť\npasívny\npasívum\npáskatý\npáskavý\npáska\npáskov\npáskovania\npáskovanie\npáskovaním\npáskovaný\npáskovať\npáskovo\npáskový\npaskuda\npaskudník\npaskudný\npásmach\npásmam\npásmo\npásmovo\npásmový\npásomnica\nPasova\npasovačka\npasovanie\npasovaním\npasovaný\npásovaný\npasovať\nPasove\npasovejší\npásovka\npasovo\npásovo\npasovské\npasovského\npasovskej\npasovskí\npasovských\npasovským\nPasovský\npásový\npasový\npasparta\npasport\npasportizácia\npasportizácie\npasportizácii\npasportizáciou\npasportizáciu\npasportoch\npasportom\npasportov\npasporty\npassim\nPassionara\npassionato\npást\npasta\npäsť\npastel\npastelka\npastelmi\npastelovo\npastelový\npastér\npasterizácia\npasterizácie\npasterizácii\npasterizáciou\npasterizáciu\npasterizačná\npasterizačné\npasterizačného\npasterizačnej\npasterizačnou\npasterizačnú\npasterizačných\npasterizačným\npasterizačnými\npasterizovanie\npasterizovaný\npasterizovať\npastérov\npastevný\npästiar\npästiarka\npästiarsky\npästiarstvach\npästiarstvam\npästiarstvo\npastička\npästička\npastiera\npastier\npastierici\npastierik\nPastierikovej\npastierka\npastierovo\npastiersky\npastiersky\npastierstvach\npastierstvam\npastierstvo\npastila\npastiliek\npastilka\npastilky\npastis\npastiš\npästný\npastofórium\npastorácia\npastoračný\npastorál\npastorálach\npastorálam\npastorála\npastorále\npastorálny\npastorály\npastor\npastorela\nPastorkovej\npastorkovi\npastorkovia\npastorkyňa\npastormi\npastorok\nPastorovej\nPastorovho\npastovať\npastový\npastozita\npásť\nPastrnák\nPastuchov\nPastuchovom\npastva\npastvinárstvom\npastvina\npastvinný\npastvinový\npastvísk\npastvisko\npastvový\npasus\npasy\npáš\npaša\npašák\npašalík\npašalíku\npašalíky\npaše\npáše\npášem\npášeme\npašerácky\npašeráctvach\npašeráctvam\npašeráctvo\npašeráčka\npašerák\npášeš\npášete\npaši\npaší\npašiach\npašiách\npašiam\npašiám\npašiami\npašie\npašií\npašiový\npaškál\npaškálmi\npaškvil\npaškvilmi\npaškvilovať\npášme\npašou\npašovania\npašovanie\npašovaním\npašovaniu\npašovaný\npašovateľmi\npašovateľom\npašovateľov\npašovať\npášte\npaštét\npaštétach\npaštétam\npaštéta\npaštétový\npaštrnák\npášu\npášuc\nPata\npäťadvadsať\npäťadvadsiati\npäťadvadsiatich\npäťadvadsiatim\npäťadvadsiatimi\npatafyzika\nPatagónčan\nPatagónčanka\nPatagónia\npatagónsky\npätách\npäták\npatália\npätám\npäťapolkrát\npäta\npat\npäťbodový\npäťbojár\npäťbojárka\npäťbojársky\npäťboj\npäťcentová\npäťciferný\nPäťcípa\npäťcípou\npäť\npäťčíselným\npäťčíslie\npäťčlenný\npäťdenný\npäťdesiat\npäťdesiatdeväť\npäťdesiatdeväťtisíc\npäťdesiatdva\npäťdesiatdvatisíc\npäťdesiatdvatisícsedemsto\npäťdesiathaliernik\npäťdesiathalierový\npäťdesiatinu\npäťdesiatiny\npäťdesiati\npäťdesiatjeden\npäťdesiatjedentisíc\npäťdesiatka\npäťdesiatkorunáčka\npäťdesiatkorunák\npäťdesiatkoruna\npäťdesiatkorunový\npäťdesiatkrát\npäťdesiatnásobku\npäťdesiatnásobným\npäťdesiatnásobok\npäťdesiatnička\npäťdesiatnik\npäťdesiatosem\npäťdesiatosemtisíc\npäťdesiatpäť\npäťdesiatpäťtisíc\npäťdesiatpercentná\npäťdesiatpercentnému\npäťdesiatpercentnú\nPäťdesiatpercentný\npäťdesiatročný\npäťdesiatsedem\npäťdesiatsedemtisíc\npäťdesiatšesť\npäťdesiatšesťtisíc\npäťdesiatštyri\npäťdesiatštyritisíc\npäťdesiattisíca\npäťdesiattisíc\npäťdesiattisíceho\npäťdesiattisíci\npäťdesiattisícim\npäťdesiattisícový\npäťdesiattri\npäťdesiattritisíc\npäťdesiaty\npäťdielna\npäťdielneho\npäťdielnej\npäťdielnom\npäťdielnu\npäťdielnych\npäťdňový\npatén\npatena\npaténach\npaténam\npaténa\npatent\npatentka\npatentmi\npatentný\npatentoval\npatentovala\npatentovali\npatentovalo\npatentovania\npatentovanie\npatentovaním\npatentovaný\npatentovať\npatentovo\npatentový\npatentový\npatentuj\npatentuje\npatentujem\npatentujeme\npatentuješ\npatentujete\npatentujme\npatentujte\npatentujú\npatentujúc\npáter\npáterko\npaternalistický\npaternalizmus\npaternálny\npaternita\npáternoster\npaternoster\npaternosterový\npaternostrový\npatetickosť\npateticky\npatetický\npatetika\npatetizovaný\npatetizovať\npäťhaliernik\npäťhalierový\npäťhektárový\npäťhodinový\npäťhran\npäťhranný\npatchwork\npätia\npätiac\npätica\npätička\npatiens\npätil\npätila\npätili\npätilo\npätím\npätíme\npätín\npatina\npätina\nPatince\nPatinciach\npatinovania\npatinovanie\npatinovaný\npatinovať\npätinový\npatio\npätíš\npätiť\npätíte\npatitul\npäťizbový\npatizón\npäťjadrový\npätka\npäťka\npäťkilometrový\npäťkilový\npäťkorún\npäťkoruna\npäťkorunáčka\npäťkorunách\npäťkorunák\npäťkorune\npäťkorunový\npäťkorunu\npäťkoruny\npäťkovo\npätkový\npäťkový\npäťkrát\npäťlitrový\npäťme\npäťmesačný\npäťmetrovej\npatmi\npäťmiestny\npäťmiliónový\npäťminútovka\npäťminútový\npäťmocný\npäťnásobný\npäťnásobok\npätnásť\npäťnásťdňová\npäťnásťdňovú\npätnásťdňový\npätnástinou\npätnástinu\npätnástiny\npätnásti\npätnástka\npätnásťkrát\npäťnásťročný\npätnásťročný\npätnásťtisíc\npätnásty\npätník\npätný\npäto\npätôčka\npatofóbia\npatofyziológ\npatofyziológia\npatofyziológiou\npatogén\npatogenetického\npatogenéza\npatogenéze\npatogénny\npatografia\npätolízač\npätolizač\npätolizačka\npätolizačsky\npätolizačský\npätolizačstvo\npatológ\npatológia\npatologicky\npatologický\npatologička\npatopsychológie\npätorako\npätoraký\npätorka\npätoro\npátos\npatovo\npätový\npatový\npäťpercentný\npäťposchodový\npátrací\npátrač\npátračka\npátračský\npäťradlicových\npátrajúci\npäťramenný\npátranie\npátrať\npátravo\npátravý\npátrčka\npatrenia\npatrenie\npatriaci\npäťriadkový\npatriarcha\npatriarchalizmu\npatriarchálnosť\npatriarchálny\npatriarchát\npatriarchátmi\npatriciát\npatriciátmi\nPatrícia\npatricij\npatricijka\npatricijovi\npatricijovia\npatricijsky\npatricijský\npátričiek\npátričky\npatrične\npatričný\nPatrie\nPatrii\nPatrií\nPatrik\npatrilineárny\npatrimoniálny\npatrimónium\npatriot\npatrioticky\npatriotický\npatriotizmus\npatriotka\nPatriou\npatristika\npatriť\npatriu\npatrne\npatrný\npäťročí\npäťročia\npäťročie\npäťročím\npäťročnica\npäťročnicové\npäťročný\npatroitizmus\npatroklinita\npatrola\npatrológia\npatrolovanie\npatrolovať\npatronácia\npatronácie\npatronáciou\npatrónach\npatrónam\npatronát\npatronátmi\npatronátny\npatróna\npatrón\npatrónka\npatrónový\npatrónstvach\npatrónstvam\npatrónstvo\npatronymický\npatronymikon\npatronymikum\npäťstenný\npäťsto\npäťstodesať\npäťstodesaťtisíc\npäťstodeväť\npäťstodeväťdesiat\npäťstodeväťdesiatdeväť\npäťstodeväťdesiatdeväťtisíc\npäťstodeväťdesiatdva\npäťstodeväťdesiatdvatisíc\npäťstodeväťdesiatjeden\npäťstodeväťdesiatjedentisíc\npäťstodeväťdesiatosem\npäťstodeväťdesiatosemtisíc\npäťstodeväťdesiatpäť\npäťstodeväťdesiatpäťtisíc\npäťstodeväťdesiatsedem\npäťstodeväťdesiatsedemtisíc\npäťstodeväťdesiatšesť\npäťstodeväťdesiatšesťtisíc\npäťstodeväťdesiatštyri\npäťstodeväťdesiatštyritisíc\npäťstodeväťdesiattisíc\npäťstodeväťdesiattri\npäťstodeväťdesiattritisíc\npäťstodevätnásť\npäťstodevätnásťtisíc\npäťstodeväťtisíc\npäťstodva\npäťstodvadsať\npäťstodvadsaťdeväť\npäťstodvadsaťdeväťtisíc\npäťstodvadsaťdva\npäťstodvadsaťdvatisíc\npäťstodvadsaťjeden\npäťstodvadsaťjedentisíc\npäťstodvadsaťosem\npäťstodvadsaťosemtisíc\npäťstodvadsaťpäť\npäťstodvadsaťpäťtisíc\npäťstodvadsaťsedem\npäťstodvadsaťsedemtisíc\npäťstodvadsaťšesť\npäťstodvadsaťšesťtisíc\npäťstodvadsaťštyri\npäťstodvadsaťštyritisíc\npäťstodvadsaťtisíc\npäťstodvadsaťtri\npäťstodvadsaťtritisíc\npäťstodvanásť\npäťstodvanásťtisíc\npäťstodvatisíc\npäťstojedenásť\npäťstojedenásťtisíc\npäťstojeden\npäťstojedentisíc\npäťstokorunáčka\npäťstokorunový\npäťstokrát\npäťstoosem\npäťstoosemdesiat\npäťstoosemdesiatdeväť\npäťstoosemdesiatdeväťtisíc\npäťstoosemdesiatdva\npäťstoosemdesiatdvatisíc\npäťstoosemdesiatjeden\npäťstoosemdesiatjedentisíc\npäťstoosemdesiatosem\npäťstoosemdesiatosemtisíc\npäťstoosemdesiatpäť\npäťstoosemdesiatpäťtisíc\npäťstoosemdesiatsedem\npäťstoosemdesiatsedemtisíc\npäťstoosemdesiatšesť\npäťstoosemdesiatšesťtisíc\npäťstoosemdesiatštyri\npäťstoosemdesiatštyritisíc\npäťstoosemdesiattisíc\npäťstoosemdesiattri\npäťstoosemdesiattritisíc\npäťstoosemnásť\npäťstoosemnásťtisíc\npäťstoosemtisíc\npäťstopäť\npäťstopäťdesiat\npäťstopäťdesiatdeväť\npäťstopäťdesiatdeväťtisíc\npäťstopäťdesiatdva\npäťstopäťdesiatdvatisíc\npäťstopäťdesiati\npäťstopäťdesiatjeden\npäťstopäťdesiatjedentisíc\npäťstopäťdesiatosem\npäťstopäťdesiatosemtisíc\npäťstopäťdesiatpäť\npäťstopäťdesiatpäťtisíc\npäťstopäťdesiatsedem\npäťstopäťdesiatsedemtisíc\npäťstopäťdesiatšesť\npäťstopäťdesiatšesťtisíc\npäťstopäťdesiatštyri\npäťstopäťdesiatštyritisíc\npäťstopäťdesiattisíc\npäťstopäťdesiattri\npäťstopäťdesiattritisíc\npäťstopätnásť\npäťstopätnásťtisíc\npäťstopäťtisíc\npäťstopový\npäťstopý\npäťstoročná\npäťstoročnú\npäťstosedem\npäťstosedemdesiat\npäťstosedemdesiatdeväť\npäťstosedemdesiatdeväťtisíc\npäťstosedemdesiatdva\npäťstosedemdesiatdvatisíc\npäťstosedemdesiatjeden\npäťstosedemdesiatjedentisíc\npäťstosedemdesiatosem\npäťstosedemdesiatosemtisíc\npäťstosedemdesiatpäť\npäťstosedemdesiatpäťtisíc\npäťstosedemdesiatsedem\npäťstosedemdesiatsedemtisíc\npäťstosedemdesiatšesť\npäťstosedemdesiatšesťtisíc\npäťstosedemdesiatštyri\npäťstosedemdesiatštyritisíc\npäťstosedemdesiattisíc\npäťstosedemdesiattri\npäťstosedemdesiattritisíc\npäťstosedemnásť\npäťstosedemnásťtisíc\npäťstosedemtisíc\npäťstošesť\npäťstošesťdesiat\npäťstošesťdesiatdeväť\npäťstošesťdesiatdeväťtisíc\npäťstošesťdesiatdva\npäťstošesťdesiatdvatisíc\npäťstošesťdesiatjeden\npäťstošesťdesiatjedentisíc\npäťstošesťdesiatosem\npäťstošesťdesiatosemtisíc\npäťstošesťdesiatpäť\npäťstošesťdesiatpäťtisíc\npäťstošesťdesiatsedem\npäťstošesťdesiatsedemtisíc\npäťstošesťdesiatšesť\npäťstošesťdesiatšesťtisíc\npäťstošesťdesiatštyri\npäťstošesťdesiatštyritisíc\npäťstošesťdesiattisíc\npäťstošesťdesiattri\npäťstošesťdesiattritisíc\npäťstošestnásť\npäťstošestnásťtisíc\npäťstošesťtisíc\npäťstoštrnásť\npäťstoštrnásťtisíc\npäťstoštyri\npäťstoštyridsať\npäťstoštyridsaťdeväť\npäťstoštyridsaťdeväťtisíc\npäťstoštyridsaťdva\npäťstoštyridsaťdvatisíc\npäťstoštyridsaťjeden\npäťstoštyridsaťjedentisíc\npäťstoštyridsaťosem\npäťstoštyridsaťosemtisíc\npäťstoštyridsaťpäť\npäťstoštyridsaťpäťtisíc\npäťstoštyridsaťsedem\npäťstoštyridsaťsedemtisíc\npäťstoštyridsaťšesť\npäťstoštyridsaťšesťtisíc\npäťstoštyridsaťštyri\npäťstoštyridsaťštyritisíc\npäťstoštyridsaťtisíc\npäťstoštyridsaťtri\npäťstoštyridsaťtritisíc\npäťstoštyritisíc\npäťstotisíc\nPäťstotisícová\npäťstotisícového\npäťstotisícovej\npäťstotisícovú\npäťstotri\npäťstotridsať\npäťstotridsaťdeväť\npäťstotridsaťdeväťtisíc\npäťstotridsaťdva\npäťstotridsaťdvatisíc\npäťstotridsaťjeden\npäťstotridsaťjedentisíc\npäťstotridsaťosem\npäťstotridsaťosemtisíc\npäťstotridsaťpäť\npäťstotridsaťpäťtisíc\npäťstotridsaťsedem\npäťstotridsaťsedemtisíc\npäťstotridsaťšesť\npäťstotridsaťšesťtisíc\npäťstotridsaťštyri\npäťstotridsaťštyritisíc\npäťstotridsaťtisíc\npäťstotridsaťtri\npäťstotridsaťtritisíc\npäťstotrinásť\npäťstotrinásťtisíc\npäťstotritisíc\npäťstovka\npäťstránkový\npäťstrannej\npäťstupňový\npäťstý\npäťte\npäťtisíc\nPäťtisíci\npäťtisícina\npäťtisíckorunáčka\npäťtisíckorunáčke\npäťtisíckorunáčku\npäťtisíckorunáčky\npäťtisíckorunáčok\npäťtisícoviek\npäťtisícovka\npäťtisícovke\npäťtisícovky\npäťtisícový\npäťtonový\npäťtýždňový\npäťuholník\npäťuholníkový\npäťvalcoch\npäťvalcový\npäťvalec\npatvarov\npätý\npäťzväzkový\nPaúl\nPaul\nPaule\nPaulin\nPaulín\nPaulina\nPaulínach\nPaulínam\nPaulína\nPauline\nPaulini\npaulínia\nPaulou\nPaulu\nPauly\npaumenie\npauperita\npauperizácia\npauperizovať\npaušál\npaušalizoval\npaušalizovala\npaušalizovali\npaušalizovalo\npaušalizovaná\npaušalizované\npaušalizovanej\npaušalizovaní\npaušalizovanie\npaušalizovaných\npaušalizovať\npaušalizuj\npaušalizuje\npaušalizujem\npaušalizujeme\npaušalizuješ\npaušalizujete\npaušalizujme\npaušalizujte\npaušalizujú\npaušalizujúc\npaušálmi\npaušálnosť\npaušálny\npáuz\npauzách\npauzák\npauzám\npauza\npauzovací\npauzovať\npauzy\nPava\npávach\npávam\npávanie\npáva\npáv\nPave\npaveda\npavedec\npavedecký\nPavel\npavéz\npavézach\npavézam\npavéza\npavián\npaviánovi\npávic\npávica\npáví\npávik\npávikovi\npavilón\npavilónik\npavilónový\nPavin\nPavla\npavlačami\npavlačí\npavlačiach\npavlačiam\npavlač\npavlačou\npavlačový\nPavlami\npavlán\nPavľanoch\nPavľany\nPavle\nPavlická\nPavlík\nPavlíka\nPavlíkom\nPavlíkovej\nPavlíkovi\nPavlín\nPavlina\nPavlína\nPavlínka\nPavlínkou\nPavlínou\nPavlíny\nPavloch\nPavlom\nPavlou\nPavlov\nPavlova\nPavlová\npavlove\nPavlovej\nPavlovi\nPavlovia\npavlovo\npavlovská\nPavlovský\npavlových\nPavlu\nPavly\nPavol\npávove\nPávovej\npávovi\npavučí\npavúčí\npavúčik\npavúčikovi\npavučina\npavučinka\npavučinkovitý\npavučinkový\npavučinový\npavúčka\npavúčkami\npavúčkoch\npavúčkom\npavúčkov\npavúčkovi\npavúčky\npavúk\npavúkovi\npavúza\npavúz\npax\nPax\npazderie\npazigrafia\npaznechta\npaznecht\npaznechtmi\npaznechtový\npazucha\npazuchový\npazúr\npazúrik\npazúrikový\npazuška\npazušný\npazvuk\npaža\npáža\npážací\npažami\npážatiek\npážatko\npažba\npažbách\npažbám\npažbe\npažbou\npažbu\npažby\npaže\npažerák\npažerákový\npaži\npaží\npažiach\npažiam\nPažica\nPažického\npažieb\npažiť\nPažitie\npažítka\npažítkový\npažitný\npažiťový\nPažiťská\npažníc\npažnice\npažou\npažravec\npažravo\npažravosť\npažravý\npažu\nPb\nPB\nPC\nPCB\nPCl\nPCL\nPCR\nPCRevue\nPČSP\nPD\nPDA\npeacemaker\npeán\npeáž\npeáže\npeážna\npeážnej\npecami\npec\npece\npeceň\npeci\npecí\npeciach\npeciam\npeciar\npeciarsky\npecivál\npecňa\npecňami\npecne\npecni\npecník\nPecníka\npecňoch\npecňom\npecňov\npecňu\npecný\npecorino\npecou\npecový\nPécsan\npécsky\npecúch\npečate\npečatene\npečatenia\npečatenie\npečatený\npečatidlo\npečatidlový\npečatiť\npečať\npečatne\npečatný\nPečeňady\npečeňach\npečeňam\nPečeňany\npečeň\npečenie\npečeňoviek\npečeňovku\npečeňovky\npečeňový\npečený\npečiarka\npečiarkový\npečiatka\npečiatkovaní\npečiatkovania\npečiatkovanie\npečiatkovaním\npečiatkovať\npečiatkový\npečienka\npečienkový\npečienočka\npečív\npečivár\npečiváreň\npečivárňach\nPečivárňach\npečivárňam\npečivo\npečivový\nPečora\npečorskej\npečorskú\nPečorský\nPečory\npečúci\nped\npedagóg\npedagogickosť\npedagogicky\npedagogický\npedagogička\npedagogika\npedála\npedál\npedáli\npedálik\npedálmi\npedálový\npedant\npedantéria\npedantka\npedantne\npedantnosť\npedantný\npedantsky\npedantský\npedantstvo\npedel\npederast\npederastia\npedestrián\npediater\npediatria\npediatrický\npediatrička\npedikér\npedikérka\npedikérsky\npedikulóza\npedikulus\npedikúr\npedikúrach\npedikúram\npedikúra\npediment\npedipalpy\npedkér\npedobiológ\npedobiológia\npedofil\npedofília\npedofilný\npedofilovia\npedogenéza\npedogeografia\npedol\npedológ\npedológia\npedologický\npedologička\npedometer\npedometria\npedopatológia\npedopsychológ\npedopsychológia\npedosféra\npedum\npeeling\npéenka\npeer\nPeer\nPeera\npegas\nPegasa\nPegas\nPegasus\npegmatit\npehaňa\npeháň\npehaní\npeháni\npehánik\npehavec\npehavosť\npehavý\npeha\npehlásiť\npehrabúvať\npech\npechor\npechoriť\npechorte\npechota\npechotný\npej\npeja\npejami\npejko\npejkova\npejky\npejo\npejoch\npejom\npejor\npejorácia\npejoratívnosť\npejoratívny\npejoratívum\npejov\npejovi\npejy\npekáčik\npekáč\npekan\npekár\npekárčina\npekáreň\npekárensky\npekárenský\npekárka\npekárňach\npekárňam\npekárnička\nPekárovej\npekársky\npekárstvach\npekárstvam\npekárstvo\npekávať\npekelne\npekelnícky\npekelníctvach\npekelníctvam\npekelníctvo\npekelníčka\npekelník\npekelný\npekiel\nPekinčan\nPeking\nPekingu\nPekingy\npekinský\npekladač\nPekľanoch\nPekľany\npeklo\npekne\npeknerúče\npeknota\npeknučko\npeknučký\npeknulinko\npeknulinký\npeknunko\npeknunký\npeknuško\npeknušký\npekný\npektáza\npektináza\npektín\npektinizácia\npektínový\npektorálny\npektóza\npekuliárny\npekuniárny\npel\nPel\nPela\npelagiál\npelagra\npelargónia\npeľasť\npeľasťami\npeľasti\npeľastí\npeľastiach\npeľastiam\npeľasťou\npelce\npelech\npelendrek\npelendrekový\npelerín\npelerínach\npelerínam\npelerína\npelerínka\npelerínový\npelešami\npelešiach\npelešiam\npelešiť\npeleš\npelešou\npeleštek\npeleta\npeletizácia\npeletizácie\npeletizácii\npeletizovanie\npeletón\nPelham\npeľhať\npelikán\npelikání\npelikáňom\npelikáňou\npelikánovi\nPelikánovi\npelit\npeľ\npelmeny\npeľmi\npeľnica\npeľnicový\npeľník\npelofilný\npeľoch\npeloid\npelom\npeľom\nPeloponéz\npeloponézsky\npeloponézsky\npelota\npelotáž\npelotón\npeľov\npeľový\nPelta\nPeltu\nPelu\npeľu\npelucidita\npelucídny\npelucitída\npelvilitotómia\npelvimeter\npelvis\npemfigus\npemz\npemza\npemze\npenále\npenalizácia\npenalizáciách\npenalizáciám\npenalizáciami\npenalizácie\npenalizácii\npenalizácií\npenalizáciou\npenalizáciu\npenalizovania\nPenalizovanie\npenalizovaním\npenalizovaniu\npenalizovaný\npenalizovať\npenálne\npenált\npenalta\npenát\npeňazokaz\npeňazokazec\npeňazokazecký\npeňazokazectvo\npeňazokazstvo\npeňazstvo\npena\npeňaž\npeňaženka\npeňažite\npeňažitý\npeňažne\npeňažnícky\npeňažníctvach\npeňažníctvam\npeňažníctvo\npeňažník\npeňažno\npeňažný\npendant\npendantmi\npendentív\npendentný\npendler\npendlovania\npendlovaním\npendlovať\npendlovky\npendlujúci\npendrek\npendrekový\npendulácia\nPenelopa\nPenelopy\npenenie\npeneplén\npenetrácia\npenetrácie\npenetrácii\npenetrácií\npenetráciou\npenetráciu\npenetračný\npenetrancia\npenetrantný\npeniace\npeniaci\npeniaze\npeniaz\npeniazstvach\npeniazstvam\npeniazstvo\npeniažkoch\npeniažkom\npeniažkov\npeniažky\npeniažtek\npenica\npenicilín\npenicilínka\npenicilínku\npenicilínky\npenicilínový\npenicílium\npeninsula\npenis\npenistý\npeniť\npenitencia\npenitenciár\npenitent\npenivo\npenivosť\npenivý\npeň\npenka\npennín\nPennsylvánia\npennsylvánsky\npennsylvánsky\npenny\npenobetón\npenobetónový\npenológia\npenotvorný\npenovka\npenový\nPensylvánia\nPensylvánie\nPensylvánii\npentaéder\npentafenol\npentagon\nPentagon\npentagón\npentachlórfenolu\npentalógia\npentameter\npentametrický\npentán\npentánu\nPentateuch\npentatlon\npentatonika\npentén\npentit\nPentium\npentlandit\npentľa\npentlí\npentlička\npentľový\npentóda\npentolit\npentóza\npentózan\npentrit\npenumbra\npenz\nPénz\npenzia\npenzijka\npenzijne\npenzijný\npenzionát\npenzionátmi\npenzión\npenzionovania\npenzionovanie\npenzionovaním\npenzionovaný\npenzionovať\npenzista\npenzistka\npenzum\nPenzy\npeón\npeoplemeter\npepermint\npeperómia\npepita\npepito\npepitový\npeplopauza\npepočítať\npepsikola\npepsín\npepsinogén\npeptáza\npeptický\npeptid\npeptidáza\npeptidoch\npeptidov\npeptidy\npeptón\npeptonizácia\nperacidita\nperačník\nperál\nperama\nperambulátor\nperas\nPerašínová\npera\nperboritan\nperbunan\npercentne\npercentný\npercento\npercentový\npercentuálny\npercepcia\npercepcionalizmus\npercepčný\nperceptibilita\nperceptor\npercipient\npercipovať\npercussion\nperdaktýlia\npereat\nperečiek\nperečko\nperečník\nperegrínny\nperegrinus\npereje\nperemptorický\nperena\nperenospóra\nperenospóry\nperepúťach\nperepúťam\nperepúte\nperepúť\nperestrojka\nPereš\nPereši\nPereus\nperex\nperfekcia\nperfekcie\nperfekcionalizmus\nperfekcionista\nperfekcionistický\nperfekcionistiský\nperfekcionistka\nperfekcionizmus\nperfekt\nPerfekt\nperfektívny\nperfektívum\nperfektne\nperfektnosť\nperfektný\nperfektum\nperfídia\nperfídne\nperfídnosť\nperfídny\nperforácia\nperforačný\nperforátor\nperformancia\nperforovač\nperforovačka\nperforovanie\nperforovaný\nperforovať\nperfundovať\nperfúzia\npergamen\npergamenovo\npergamenový\npergamin\npergelácia\npergelisol\npergol\npergola\npergoly\nperhoreskovať\nperhumídny\nperhydrol\nperiaapendicitída\nperiaci\nperianálny\nperiant\nperiaortitída\nperiarteriálny\nperiartikulárny\nperiaxiálny\nperibola\npericentrálny\npericentrum\npericystitída\nperička\nperiderm\nperiderma\nperidocký\nperidot\nperidrom\nperiek\nperiel\nPeriel\nperie\nperiféria\nperiferický\nperiférnosť\nperiférny\nperifokálny\nperifrastický\nperifrastika\nperifráz\nperifrázach\nperifrázam\nperifráza\nperigastritída\nperigeum\nperigón\nperigum\nperihélium\nperichondrium\nperikard\nperikarditída\nperikarp\nperiklas\nperiklinálny\nperikolitída\nperikopa\nperikranium\nperimentrium\nperimeter\nperimetri\nperimyelografia\nperimyokarditída\nPerin\nperinák\nperinatálny\nperina\nPeríne\nperinefritída\nperineum\nperineurálny\nPerini\nperiniak\nperinka\nperinôčka\nperinový\nperiód\nperiódach\nperiódam\nperióda\nperiodicita\nperiodickosť\nperiodicky\nperiodický\nperiodik\nperiodík\nperiodikum\nperiodizácia\nperiodizačný\nperioik\nperiost\nperiosteomyelitída\nperiostitída\nperipatetický\nperiperia\nperipetia\nperiporitída\nperipteros\nperirenálny\nperiskop\nperispermatitída\nperistaltické\nperistaltika\nPeristo\nperistola\nperistyl\nperiť\nperitoneálnej\nperitoneum\nperitonitída\nperivaskulárny\nperjurácia\nperkelt\nperkeltmi\nperkeltový\nperkolácia\nperkolát\nperko\nperkusia\nperl\nperla\nPerla\nperlenie\nperlete\nperleť\nperleťovo\nperleťový\nperlička\nperličkový\nPerlík\nPerlíka\nPerlíkom\nperlinková\nperlinkovej\nperlinkovou\nperlinkových\nperlistý\nperlit\nperliť\nperlitom\nperlitové\nperlitu\nperlivo\nperlivosť\nperlivý\nperlone\nperloočka\nperlorodka\nperlovec\nperlovina\nperlovo\nperlový\nperlustrácia\npermafrost\npermanencia\npermanentka\npermanentne\npermanentnosť\npermanentný\nperm\npermeabilita\npermeabilný\npermeancia\npermisia\npermit\npermoníci\nPermoníkom\npermský\npermutácia\npermutačný\npermutovanie\npermutovaný\npermutovať\npernatý\npernazálny\nperne\npernecký\nPernek\nPerneku\npernica\nPernice\nperniciózny\nPernicu\nperníček\nperníčkoch\nperníčkov\nperníčky\npernikár\npernikári\npernikársku\npernikárskych\nperník\nperníkový\nPerno\nperný\nperohryz\nperokresba\nperokresbový\npero\nperón\nperoneus\nperónizmu\nPerónka\nperónky\nperónny\nperonospór\nperonospórach\nperonospóram\nperonospóra\nperónový\nperorácia\nperorálny\npérovanie\nperovanie\nperovaný\nperovať\npérové\nperovka\nperový\nperoxid\nperoxidový\nperpendikulárny\nperpetuálny\nperpetuita\nperpetuum\nperplex\npers\nperseidy\nPerseus\nperseverácia\nperseverancia\npersifláž\npersiflážny\npersiflovať\nPerský\npersolvovať\npersón\npersona\npersóna\npersónach\npersonál\npersonáli\npersonáliách\npersonáliám\npersonáliami\npersonálie\npersonálií\npersonalista\npersonalistický\npersonalita\nPersonality\npersonalizmu\npersonalizmus\npersonalizovaný\npersonálmi\npersonálne\npersonálny\npersónam\npersonami\npersónami\npersóne\npersonifikácia\npersonifikačný\npersonifikoval\npersonifikovala\npersonifikovali\npersonifikovanie\npersonifikovaním\npersonifikovaný\npersonifikovať\npersonifikuje\npersonifikujete\npersonou\npersónou\npersonu\npersónu\npersony\npersóny\nperspektív\nperspektívach\nperspektívam\nperspektíva\nperspektivita\nperspektivitu\nperspektivity\nperspektívne\nperspektívnosť\nperspektívny\nperspirácia\npertinencia\npertraktovaný\npertraktovať\npertubácia\nperturbácia\npertusia\npertussis\nPeruánec\nPeruánka\nperuánsky\nperuánsky\nPerudžan\nperudžský\nPerugia\nPerún\nperute\nperuť\nperverzia\nperverzít\nperverzita\nperverzne\nperverznosť\nperverzný\npervitín\nperz\nperzekúcia\nperzekučný\nperzekvovanie\nperzekvovaniu\nperzekvovaný\nperzekvovať\nperzián\nperziáne\nperziánový\nperziánu\nperziány\nPerzia\nperzistencia\nperzistencie\nperzistenciu\nperzistentné\nperzistentnou\nperzistentných\nperzistovať\nperzský\nperzštín\nperzštinách\nperzštinám\nperzštinami\nperzština\nPeržana\nPeržania\nPeržanka\npesach\npesar\nPeseckou\npeseta\npesiet\npesimista\npesimisticky\npesimistický\npesimistka\npesimizmus\npesimum\npes\npesničkár\npesničkárka\npesničkársky\npesnička\npesničkový\npeso\npesos\npesticíd\npesticídny\npestilencia\npestis\npestovanie\npestovaný\npestovateľ\npestovateľka\npestovateľovu\npestovateľsky\npestovateľský\npestovať\npestrejme\npestrejšej\npestrejší\npestrejšia\npestrejšie\npestrejšieho\npestrejšiemu\npestrejších\npestrejším\npestrejšími\npestrejšiu\npestrejšom\npestrejšou\npestrejte\npestrejú\npestrejúc\npestria\npestrieť\npestril\npestrila\npestrili\npestrilo\npestrím\npestríme\npestríš\npestriť\npestríte\npestro\npestrofarebne\npestrofarebnosť\npestrofarebný\npestrosť\npestrý\npestujúci\npestún\npestúnka\npestúnsky\npestúnstvach\npestúnstvam\npestúnstvo\npestúvať\npestvo\nPešek\npeši\npešiacky\npešiak\npešiakový\npeší\nPešina\npešky\npešo\npešovať\nPešti\nPeštianska\nPeštianskej\nPET\nPeťa\npetala\npetarda\npetechií\npetent\npétepák\npeterburský\nPeter\npeterský\npetícia\npetičný\nPetier\nPetita\npetit\npetitmi\npetitový\nPeťka\nPeťom\nPeťovka\nPeťovský\nPetra\npetrefakt\npetrefaktmi\npetrence\npetrencu\npetrenec\nPetríček\npetrifikácia\npetrifikovaná\npetrifikovať\nPetrík\nPetríka\nPetríkom\nPetríkovej\nPetríkovi\nPetrin\nPetrini\npetrofyt\npetrofyzika\npetrogenéza\npetrograf\npetrografia\npetrografický\npetrografka\nPetrohrad\nPetrohrade\npetrohradský\nPetrohradu\npetrochémia\npetrochemický\nPetrol\nPetrole\npetrolejár\npetrolejársky\npetrolej\npetrolejka\npetrolejovo\npetrolejový\npetrológia\nPetrolom\nPetrolu\nPetronel\nPetronela\nPetronella\nPetrová\nPetrovanoch\nPetrovany\nPetrovca\nPetrovce\nPetrovci\nPetrové\nPetrovec\nPetrovický\npetrovský\nPetrovú\nPetrov\npetróza\nPetržalka\npetržalský\npetržlen\npetržlenový\npetting\npetúnia\npetúnie\npetúnka\npeukazovať\npeukážka\npevádzací\npevec\npevecký\npevkyňa\npevne\npevnieť\npevnina\npevninový\npevninský\npevno\npevnosť\npevnôstka\npevnostne\npevnostno\npevnostný\npevný\npezentácia\nPezinka\nPezinkom\nPezinku\nPezinok\npezinský\nPežerňa\npf\npF\nPF\nPFC\npfi\nPFN\nPFU\npfuj\npfund\npH\nPh\nPharmDr\nPhD\nPhDr\nPHDr\nPhilips\nPhMr\nphnompenský\nphp\npch\npchanie\npchaniu\npchať\npchávať\npchi\nPchjongjančan\nPchjongjang\npchjongjanský\npí\npia\nPia\npiaďach\npiaďam\npiaď\npiadel\npiadimužícky\npiadimužíček\npiadimužíčka\npiadimužíčkami\npiadimužíčkoch\npiadimužíčkom\npiadimužíčkov\npiadimužíčkovi\npiadimužíčkovia\npiadimužík\npiadlo\nPIAF\npian\npián\npianín\npianino\npianíno\npianissím\npianissimo\npianista\npianistka\npiano\npianové\npianových\npiarista\npiaristický\npiaster\npiatacký\npiatačka\npiatak\npiati\npiatich\npiati\npiatkový\npiatočný\npiatok\npiatykrát\npiaty\npic\npica\nPicasso\npicotit\npíč\npiča\npičí\npidlikať\npidlikovať\npiecka\npiecť\npiedestál\npiedestály\npieh\nPiel\nPiemont\nPiemonte\npiemontit\nPiemontský\npieninský\nPieniny\npier\npiercach\npiercam\npierce\npiercing\npierec\npierko\npierok\npierot\npies\npiesa\npiesčina\npiesčito\npiesčitý\npieseň\npiesenka\npieskovacíN\npieskovač\npieskovača\npieskovania\npieskovanie\npieskovaním\npieskovaný\npieskovať\npieskovcový\npieskovec\npieskovísk\npieskovisko\npieskovitý\npieskovňa\npieskovní\npieskovo\npieskový\npiesňach\npiesňam\npiesňový\nPiesocká\nPiesocké\npiesockého\npiesockej\nPiesockí\npiesockých\npiesockým\npiesoček\npiesočina\npiesočka\npiesočkami\npiesočkoch\npiesočkom\npiesočkov\npiesočku\npiesočky\npiesočnatý\npiesočný\npiesok\npiesta\npiest\npiestik\npiestikový\npiestny\npiestový\nPiešťan\nPiešťanmi\nPiešťanoch\nPiešťanom\npiešťanská\npiešťanské\npiešťanského\npiešťanskej\npiešťanskému\npiešťanskí\npiešťanskom\npiešťanskou\npiešťanskú\nPiešťansky\npiešťanských\npiešťanským\npiešťanskými\nPiešťanský\nPiešťany\npieta\npietista\npietistický\npietizmus\npietny\npietný\npiezoelektrický\npiezoelektrina\npiezometrických\npif\npíg\npigať\npiga\npigmentácia\npigment\npigmentmi\npigmentofág\npigmentované\npigmentový\nPíha\npicha\npichačiek\npichačky\npichadlo\npichanie\npichaním\npichať\npichávať\npichavý\npich\npichľavo\npichľavosť\npichľavý\npichliačik\npichliač\npichnúceho\npichnúcej\npichnúci\npichnúcich\npichnutie\npichnutiu\npichnúť\npichnutý\npijacký\npijačka\npijak\npijak\npijan\npijanka\npijansky\npijanský\npijanstvo\npijatika\npíjať\npíjavať\npijavica\npijavý\npik\npík\npikador\npikantéria\npikantne\npikantnosť\npikantný\npika\npiké\npiket\npiketovo\npiketový\npikilocyt\npikírovaní\npiklami\npikle\npikloch\npiklom\npiklov\npiknik\npiknikový\npikofarad\npikohertz\npikola\npikolík\npikolíkovi\npikolíkovia\npikolka\npikoloch\npikolo\npikolov\npikolovi\npikolovia\npikovanie\npikový\npikran\npiksieľ\npiksľa\npikslí\npikslička\npiktograf\npiktogram\npikulík\nPikulom\nPikulu\npíl\npilaf\npílach\npílam\npilaster\nPilát\nPiláti\nPilátmi\nPilátovej\nPilátovi\npilav\npíla\npílené\npíleného\npílenie\npiliara\npiliar\npiliari\nPiliari\npiliarka\npiliarovi\npiliarsky\npiliarstvach\npiliarstvam\npiliarstvo\npiliera\npilier\npilieri\npilierový\npílievať\npilina\npíling\npilinovo\npilinový\nPilinský\npíliť\npílkatý\npílka\npílkovitý\npílkový\npilne\npílnic\npílnica\npílnice\npílnici\npílniciach\npílnicu\npilníček\npilníčka\npilníčkami\npilníčkoch\npilníčkom\npilníčkov\npilníčku\npilníčky\npilnikáreň\npilnikárne\npilník\nPilníkove\npilníkový\npilný\npíločka\npilót\npilótach\npilótam\npilóta\npilotážach\npilotážam\npilotážami\npilotáže\npilotáži\npilotáží\npilotáž\npilotážou\npilot\npilotka\npilotne\npilotný\npilotova\npilotovania\npilotovanie\npilotovaný\npilotovať\npilotove\npilotovo\npilotovom\npilotovu\npilotovým\npilótový\npilotský\npilovaní\npilovanie\npilovaním\npilovať\npílovitý\npílový\npilóza\nPilská\nPilskej\npilula\npilulka\npimelitída\npimelóza\npiment\nPiment\npimentovník\npinakotéka\npinč\npinčlík\npinčlíkovi\npinet\npineta\npinetka\npingpong\npingpongista\npingpongistka\npingpongmi\npingpongoch\npingpongom\npingpongov\npingpongový\npingpongu\npingpongy\npinguin\npinguina\npinguinmi\npinguiny\npínia\npiniet\npiniola\npíniový\npinit\npinjin\npinkať\npinka\npinkeľ\npinkľa\npinkľami\npinkle\npinkli\npinklík\npinkľoch\npinkľom\npinkľov\npinkľu\npint\npínt\npinta\nPinta\nPinte\npintové\npinty\npinxit\npinzeta\npinzgauské\npinzgauského\npinzgauskej\npinzgauských\npión\nPioneer\npioniera\nPioniera\npionier\nPioniere\npionierka\npioniersky\npionierstvo\nPionieru\npíp\npipa\npípadlo\npípajúce\npípanie\npipasára\npipasár\npipasáre\npipasári\npipasármi\npipasároch\npipasárom\npipasárov\npipasáru\npípať\npípavý\nPipe\npiperazín\npiperín\npípeťami\npipeta\npípete\npípeti\npípetí\npípetiach\npípetiam\npípeť\npípeťou\npipetovanie\npipetovať\npipiet\npipíška\npipkať\npipka\npiplačka\npiplať\npiplavo\npiplavý\npípnutie\npípnuť\npiraňa\npirát\npiratívnejšieho\npirátsky\npirátstvach\npirátstvam\npirátstvo\npírodopised\npiroga\npiroha\nPiroha\npiroh\npiroplazmóza\npiros\npirôžok\npirôžtek\npírsingami\npírsing\npírsingmi\npírsingoch\npírsingom\npírsingov\npírsingu\npírsingy\npiruet\npirueta\npís\nPisa\npísací\npísačka\npísadlo\npísane\npísanie\npisanit\npísanka\npísaný\npisár\npisáreň\npisárik\npisárka\npisárne\npisárov\npisársky\npisateľ\npisateľka\npisateľský\npísať\npísavať\nPisces\nPise\npísecký\npísem\npísiem\npisk\nPískač\npískajúci\npískanie\npískať\npískava\npískavaj\npískavajme\npískavajte\npískavajú\npískavajúc\npískaval\npískavala\npískavali\npískavalo\npískavam\npískavame\npískavaš\npískavať\npískavate\npískavo\npískavý\npiskľavo\npiskľavý\npisknutie\npísknutie\npisknúť\nPiskom\npiskore\npiskor\nPiskorová\nPiskorovej\npiskoru\nPiskoru\npiskotajúc\npiskotať\npiskotavý\npiskot\npiskotmi\npísm\npísmach\npísmam\npísmen\npísmeniek\npísmenko\npísmenkový\npísmeno\npísmenovo\npísmenový\npísmo\npísmomaliarska\npísmomaliarsky\npísmový\npísmoznalectva\npisoár\npisoármi\npísomka\npísomne\npísomníctvach\npísomníctvam\npísomníctvo\npísomnosť\npísomný\npíst\npista\npistácia\npistáciový\npistacit\npistola\nPisy\npiškót\npiškótach\npiškótam\npiškóta\npiškótka\npiškótový\npišť\npíšťal\npíšťala\npíšťalenka\npíšťalka\npíšťalôčka\npíšťalový\npišťanie\npišťať\npišťavý\npišťím\npišťme\npištoľa\npištolí\npištoľ\npištoľkami\npištoľník\npištoľový\npišťte\npíšu\npíšuc\npíšuci\npít\npita\npitanga\npitaval\nPitcairnove\npitekantrop\nPitelová\npitevňa\npitevný\npitiatizmus\npitieN\npitka\npitnosťou\npitný\npito\npitoreskne\npitoreskný\nPittsburčan\npittsburský\npitvané\npitvaného\npitvanej\npitvaní\npitvanie\npitvanom\npitvaných\npitvať\npitva\npitvi\npitvime\npitvite\npitvor\npitvorček\npitvorčík\npitvorec\npitvorík\npitvorný\npitvorový\npiť\npityriáza\npitý\nPius\npiv\npív\npivár\npiváreň\npivárňach\npivárňam\npivce\npivci\npivcia\npivciach\npivciam\npivcom\nPivcom\npivečiek\npivečko\npiviec\npiviek\npivko\npivnica\npivnička\npivničný\npivno\npivný\npivo\npivónia\npivonka\npivonkový\npivot\npivotka\npivotman\npivotmanka\npivovar\npivovarmi\npivovarnícky\npivovarníctvach\npivovarníctvam\npivovarníctvo\npivovarník\npivovarský\npivovary\npivový\npix\npixel\npixlový\npiznúť\npízz\npizzách\npizzám\npizza\npizzeria\npizzicat\npizzicatach\npizzicatam\npizzicato\npizzy\npižiem\npižmo\npižmoň\npižmovka\npižmový\nPK\nPKB\nPKK\nPKO\npl\nPL\nplácach\nplácam\npláca\nplacebo\nplacent\nplacentácia\nplacentárny\nplacentárnych\nplacenta\nplacentový\nplacet\nPlacida\nplaciek\nplacietka\npľac\nplacka\nplackách\nplackám\nplacke\nplackou\nplacku\nplacky\nplač\npľačkanica\npľačkanina\nplačkaný\nplačkať\npľačkať\nplačka\nplačko\nPlačkovej\nplačkuľa\nplačky\nplačlivo\nplačlivosť\nplačlivý\nplačú\nplačúc\nplačúci\nplačúci\nplačúcky\nplafón\nplagálny\nplagát\nplagátik\nplagátmi\nplagátovacia\nplagátovacích\nplagátovaciu\nplagátovaní\nplagátovania\nplagátovať\nplagátový\nplagiát\nplagiátmi\nplagiátor\nplagiátorka\nplagiátormi\nplagiátorský\nplagiátorstvo\nplagizovať\nplahočiť\npláchania\nplachát\npláchať\nplachejšej\nplachejší\nplachejšia\nplachejšie\nplachejšieho\nplachejšiemu\nplachejších\nplachejším\nplachejšími\nplachejšiu\nplachejšom\nplachejšou\nPlachetka\nplachetnica\nplachetnička\nplachiet\nplachietka\nplacho\nplachosť\nplachtár\nplachtársky\nplachtárstvach\nplachtárstvam\nplachtárstvo\nplachta\nplachtení\nplachtenia\nplachtenie\nplachti\nplachtica\nplachtička\nplachtičkový\nplachtime\nPlachtince\nPlachtinciach\nPlachtiniec\nplachtite\nplachtiť\nplachtovina\nplachtovo\nplachtový\nplachučký\nplachý\nplaidoyer\nplak\nplakaní\nplakanie\nplákaný\nplakať\nplákať\nplakávať\nplaké\nplaketa\nplam\nplamencové\nplamencovú\nplamenček\nplameniak\nplameniakovi\nplameň\nplamenne\nplamenný\nplameňomer\nplameňomet\nplameňometný\nplameňový\nplamienok\nplaň\nplanácia\npláňach\nPláňach\npláňam\npláňava\nplán\nplanci\npľanci\nplancime\npľancime\nplancite\npľancite\npláň\nplanerit\nplanét\nplanétach\nplanétam\nplanetáriový\nplanetárium\nplanetárny\nplanéta\nplanétka\nplanétke\nplanetocentrický\nplanetoid\nplanetológia\nplanétový\nplania\nplanieť\nplanika\nplánik\nplanimeter\nplanimetria\nplanimetrický\nplanimetrovanie\nplanina\nplaninka\nplanírovanie\nplanírovať\nplánka\nplánkoch\nplánkový\nplanktológia\nplanktón\nplanktonický\nplanktónový\nplaňme\nplano\nplanocyt\nplánočka\nplanograf\nplánografia\nplanografia\nplanografický\nplanografka\nplánovací\nplánovač\nplánovačka\nplánovane\nplánovanieN\nplánovano\nplánovaný\nplánovateľný\nplánovať\nplánovite\nplánovito\nplánovitosť\nplánovitý\nplánovo\nplánový\nplanšej\nplanší\nplanšia\nplanšie\nplanšieho\nplanšiemu\nplanších\nplanším\nplanšími\nplanšiu\nplanšom\nplanšou\nplánt\nplantá\nplantaj\nplantajme\nplantajte\nplantajú\nplantajúc\nplantalgia\nplantáme\nplantárny\nplantáš\nplantáte\npľantať\nplantať\nplantavý\nplanta\nplantážach\nplantážam\nplantáž\nplantážnický\nplantážnictvo\nplantážnik\nplantážny\nplantážový\nplaňte\nplantofram\nplantogram\nplantýn\nplanúci\nplánujúca\nplánujúce\nplánujúceho\nplánujúci\nplánujúcich\nplanúť\nplaný\nplanž\nplanža\nplanžeta\nplápol\nplápolajúce\nplápolajúcemu\nplápolajúci\nplápolajúcimi\nplápolanie\nplápolať\nplápolavý\nplasika\npľask\npľasknúť\npľaskot\npľaskotmi\npľasnúť\nplásta\nplast\nplást\nplastelín\nplastelínach\nplastelínam\nplastelína\nplasticita\nplasticitou\nplasticitu\nplasticity\nplastickosť\nplasticky\nplastický\nplastičnosti\nplastid\nplastidóm\nplastifikácia\nplastifikátor\nplastifikátorov\nplastifikátory\nplastikárska\nplastikárske\nplastikárskeho\nplastikárskej\nplastikárskom\nplastikársku\nplastikársky\nplastikárskych\nplastika\nplástik\nplastik\nplastikový\nplastmi\nplástmi\nplastóm\nplastovo\nplastový\nplástový\nplastrón\nplašením\nplašený\nplašiaci\nplašidlo\nplašiť\nplašivý\nplášťa\nplášť\npláštenka\npľašti\npláštik\npľaštime\npľaštite\npľaštiť\nplášťoch\nplášťom\nplášťov\nPlášťovce\nplášťovín\nplášťovinách\nplášťoviny\nplášťový\nplášťu\npláť\nplata\nplatan\nplátania\nplátanie\nplátaním\nplátaniu\nplatanový\nplátaný\nplátať\nplátavanie\nplátavaný\nplátavať\nplat\nplát\nplatba\nplatbyschopnosť\nplatbyschopnosti\nplatbyschopnosťou\nplatbyschopný\nplatca\nplatcovho\npláten\nplátence\nplátenci\nplátencia\nplátenciach\nplátenciam\nplátencom\nplatene\npláteniec\nplatenieN\nplátenka\nplátenko\nplátenne\nplátennícky\nplátenníctvach\nplátenníctvam\nplátenníctvo\nplátenníčka\nplátenník\nplátenný\nplatený\nplátený\nplatesa\nplatforiem\nplatforma\nplatformovej\nplatiaci\nplatičN\nplatidlo\nplatík\nplatina\nplatinový\nplatiteľ\nplatiteľka\nplatiteľovu\nplatiť\nplátka\nplátkami\nplátkoch\nplátkom\nplátkov\nplátkovaniu\nplátku\nplátky\nplatmi\nplátmi\nplátnach\nplátnam\nplatňa\nplatnička\nplatničkový\nplátno\nplatnosť\nplatnosťN\nplatňový\nplátnový\nplatný\nplató\nplatobne\nplatobno\nplatobný\nplátok\nplatón\nplatonicky\nplatonický\nplatonik\nplatonizmus\nplatónsky\nplátované\nplátovanou\nplátovanú\nplátovaných\nplatove\nplatovo\nplatový\nplauzibilný\nplávací\nplaváčik\nplávajúci\nplávajúco\nplavák\nplavákový\nplávané\nplávanie\nplaváreň\nplavárenský\nplavárňach\nplavárňam\nplávať\nplavba\nplavčík\nplave\nplavebne\nplavebno\nplavebný\nplavec\nplavecký\nplavectvo\nPlaveč\nPlaveči\nPlavečom\nplavenia\nplavenie\nplavením\nplavenín\nplaveniny\nplavený\nplaviaci\nplaviareň\nplavidlo\nplavidlový\nplaviek\nplaviť\nplávka\nplavko\nplavkyňaN\nplavky\nplavne\nPlavnica\nPlavnice\nPlavnici\nplavnický\nPlavnicou\nPlavno\nplavnosť\nplavný\nplavo\nplávočka\nplavohlavý\nplavosť\nplavovláska\nplavovlasosť\nplavovlasý\nplavúňa\nplavúne\nplavúni\nplavúň\nplavúňmi\nplavúňoch\nplavúňom\nplavúňov\nplavúňu\nplavý\nplay\nplaya\nplayback\nplayboy\nplaymate\nplaystation\nplaza\nplaz\nplazení\nplazenie\nplaziačky\nplaziem\nplaziť\nplazivo\nplazivý\nplazmagén\nplazmalema\nplazmatický\nplazmatológia\nplazmatómia\nplazma\nplazmid\nplazmín\nplazmoblast\nplazmocyt\nplazmocytóm\nplazmódium\nplazmochémia\nplazmón\nplazmový\nplazovi\nplážach\nplážam\npláž\nplážo\nplážový\nplebejec\nplebej\nplebejka\nplebejovi\nplebejskosť\nplebejsky\nplebejský\nplebejstvo\nplebiscit\nplebiscitmi\nplebsami\nplebs\nplecatý\nplece\nplecitý\nplecnatý\nplecniačik\nplecniak\nplecnica\nplecný\nplecový\nplečka\nplečkovanie\nplečkovať\npléd\nplédovať\nplédový\nplégia\nplecháčik\nplecháč\nplecháň\nplechár\nplechárska\nplechárskeho\nplechárskej\nplechárstvo\nplechatý\nplechavieť\nplechavý\nplech\nplechovica\nplechovka\nplechovkový\nplechovo\nplechový\npleistocén\nplej\nplejád\nplejádach\nplejádam\nplejáda\nPlejády\nplejbek\nplejbekový\nplejboj\npleje\nplejem\nplejeme\npleješ\nplejete\nplejme\nplejte\nplejú\nplejúc\nplekať\nplemä\nplemenársky\nplemenárstvach\nplemenárstvam\nplemenárstvo\nplemenísk\nplemenisko\nplemeniť\nplemenitbách\nplemenitbám\nplemenitbami\nplemenitba\nplemenitieb\nplemennica\nplemenník\nplemenníkovi\nplemenný\nplemeno\nplemien\nplén\nplénach\nplénam\nplenárka\nplenárny\nplen\nplenér\nplenipotencia\nplent\nplenta\nplénum\npleomorfizmus\npleonasticky\npleonastický\npleonazmus\npleoptika\npleréza\nplerocerkoid\nplesajúci\nplesanie\nplesať\nplesavý\nples\npleseň\npleskáč\npleskáče\nplesk\nplesknutí\nplesknutie\nplesknutím\nplesknúť\npleskot\npleskotmi\nPlesná\nplesnieť\nplesnín\nplesnina\nplesninový\nplesnivec\nplesnivejúci\nplesnivieť\nplesnivina\nplesnivosť\nplesnivosti\nplesnivý\nplesňový\nplesnutie\nplesnúť\npleso\nplesový\nPleš\nplešatý\nPleši\nPleší\nplešina\nplešinka\nplešivastý\nplešivec\nplešivieť\nplešivkastý\nplešivosť\nplešivý\nPlešou\nplešti\npleštime\npleštite\npleštiť\nPleta\npletací\npletávať\npleť\npletenák\npletencový\npletenec\npletenica\npletenička\npleteniek\npletenie\npletenina\npleteninový\npletenka\npletenku\npletenky\npletený\npletiar\npletiareň\npletiarenský\npletiarka\npletiarňach\npletiarňam\npletiarsky\npletiarstvach\npletiarstvam\npletiarstvo\npletichám\npletichy\npletív\npletivo\npletivový\npletkár\npletkáriť\npletkárka\npletkársky\npletkárstvach\npletkárstvam\npletkárstvo\npletkátriť\npletka\npleto\npletora\npleťový\nPletu\npletúvať\nPlety\npletý\npleura\npleuralgia\npleuritída\npleurodel\npleurodýnia\npleuropneumónia\npleuropulmonálny\npleuroskopia\npleurotómia\npleustón\npleva\npleveľ\nplevel\nplevele\nplevelmi\nplevelovými\nPleven\nplevica\nplevicami\nplevice\nplevici\nplevicoch\nplevicom\nplevicov\nplevicu\nplevín\nplevinec\nPlevňan\nPlevnianka\nplevniansky\nplevniansky\nplevník\nPlevno\nplevný\nplevový\nplexiformný\nplexiskiel\nplexisklo\nplexisklový\nplexitída\nplexus\npleyback\nplezír\nplezíru\nplcha\nplch\nplchovi\npliagať\npliaga\npliecko\npliecok\nplienení\nplienenia\nplienenie\nplieneniu\nplienených\nplieniteľov\nplieniť\nplienka\nplienkový\nplienočka\npliensbach\nplient\nplieseň\nplieskanica\nplieskanie\nplieskať\nplieskavá\npliesko\npliesňam\npliesok\npliesť\npliesť\npliešok\nplieštek\nplieť\npliev\nplichtiť\nplinta\nPlinta\nplintus\npliocén\nplisé\nplisovanie\nplisovaný\nplisovať\nplížením\nplížia\npljeskavica\nplk\nplm\nplne\nplnenie\nplnený\nplni\nplniaci\nplniach\nplniareň\nplniarenský\nplniarňach\nplniarňam\nplnič\nplnička\nplnidiel\nplnidla\nplnidlá\nplnidlami\nplnidlo\nplnieva\nplnievaj\nplnievajme\nplnievajte\nplnievajú\nplnievajúc\nplnieval\nplnievala\nplnievali\nplnievalo\nplnievam\nplnievame\nplnievaš\nplnievať\nplnievate\nplniteľ\nplniteľa\nplniteľov\nplniť\nplnív\nplnivo\nplnka\nplno\nplnoautomaticky\nplnoautomatický\nplnoautomatizovaný\nplnoautomatov\nplnoautomatu\nplnocenný\nplnofarebný\nplnohodnotne\nplnohodnotnosť\nplnohodnotný\nplnokrvne\nplnokrvník\nplnokrvníkovi\nplnokrvnosť\nplnokrvný\nplnoletosťN\nplnoletý\nplnometer\nplnomocenstiev\nplnomocenstva\nplnomocenstvá\nplnomocenstve\nplnomocenstvo\nplnomocenstvom\nplnomocník\nplnoprávnosť\nplnoprávny\nplnosť\nplnoštíhly\nplnotlakový\nplnotučný\nplnotvárny\nplnovýznamový\nplnšej\nplnší\nplnšia\nplnšie\nplnšieho\nplnšiemu\nplnších\nplnším\nplnšími\nplnšiu\nplnšom\nplnšou\nplnučký\nplnunký\nplný\nplod\nplodení\nplodenia\nplodenie\nplodením\nplodeniu\nplodiaci\nplôdik\nplôdikov\nplodina\nplodinový\nplodiť\nplodivosť\nplodivý\nplodne\nplodnica\nplodnička\nplodnosťN\nplodný\nplodonosný\nplodový\nplôch\nplochastý\nplochatý\nplocha\nplochejšej\nplochejší\nplochejšia\nplochejšie\nplochejšieho\nplochejšiemu\nplochejších\nplochejším\nplochejšími\nplochejšiu\nplochejšom\nplochejšou\nplocho\nplochodrážna\nplochodrážne\nplochodrážneho\nplochodrážnej\nplochodrážnici\nplochodrážnik\nplochodrážnikovi\nplochodrážnom\nplochodrážny\nplochodrážnych\nplochosť\nplochý\nPloješťan\nPloješt\nploještský\nplomb\nplômb\nplomba\nplombička\nplombovacie\nplombovaní\nplombovania\nplombovanie\nplombovaním\nplombovateľnými\nplombovať\nploskatý\nplosko\nploskonosý\nploský\nplošinár\nplošinársky\nplošina\nplošinka\nplošinový\nplôška\nplošne\nplošnosť\nplošný\nploštica\nploť\nplota\nplot\nplotí\nplotiaci\nplotica\nplôtik\nplotiť\nplotmi\nplotový\nplotter\nPlovdiv\nPlovdive\nplovdivská\nPlovdivu\nplpf\nPĽR\nplstene\nplstený\nplsť\nplstnato\nplstnatosť\nplstnatý\nplsťový\nplť\nplťkách\nplťkám\nplťka\npltnica\npltnícky\npltníctvach\npltníctvam\npltníctvo\npltník\nplťový\npľúc\npľúcach\npľúcam\npľúcami\npľúca\npľúci\npľúcka\npľúckach\npľúckam\npľúckami\npľúcku\npľúcnik\npľúcny\npľúcok\npľúcom\npľúcu\npľúh\nPluha\npľuhák\npľuháky\npľuhavec\npľuhaviť\npľuhavo\npľuhavsky\npľuhavský\npľuhavstvo\npľuhavý\npľuha\npluh\npluhovania\npluhovanie\npluhovaním\npluhovať\npluhový\npluje\npluk\nplukovnícky\nplukovníčka\nplukovník\nplukovný\nplukový\nplumeau\nplumula\npľundra\npľundrovaní\npľundrovaniu\npľundrovať\npľundry\npluralista\npluralistický\npluralita\npluralitný\npluralizmus\nplurál\nplurálnom\nplurálový\nplurály\nplurifokálny\nplurilaterálny\npluripara\nplus\npluskvamperfekt\npluskvamperfektum\nplus-mínus\nplusovo\nplusový\nplusquamperfektum\npľušťať\npľušťavý\npľušť\npľuštenie\npľuštivý\npľušťme\npľušťový\npľušťte\npluť\npľutie\nplutokracia\nplutokrat\nplutokratický\nPluto\nplutón\nplutonit\nplutónium\nplutonizmus\nplutva\nplutvička\nplutvový\npľuť\npľuvadlo\npľuvanec\npľuvanie\npľuvať\npluviál\npluvioskop\npľuvnúť\npľuzgierik\npľuzgier\npľuzgiermi\npľuzgierník\npľuzgiernik\npľuzgierový\nplúžik\nplúžiť\nplúžok\nplymó\nplymutka\nplyň\nplynár\nplynáreň\nplynárensky\nplynárenský\nplynárenstvo\nplynárňach\nplynárňam\nplynársky\nplynárstvach\nplynárstvam\nplynárstvo\nplynatosť\nplyn\nplynie\nplyniem\nplynieme\nplynieš\nplyniete\nplyňme\nplynne\nplynnosť\nplynný\nplynofikácia\nplynofikačný\nplynojem\nplynomera\nplynomer\nplynonosných\nplynotesne\nplynotesnosť\nplynotesný\nplynovo\nplynovod\nplynovodný\nplynový\nplyňte\nplynúci\nplynule\nplynulejšej\nplynulejší\nplynulejšia\nplynulejšie\nplynulejšieho\nplynulejšiemu\nplynulejších\nplynulejším\nplynulejšími\nplynulejšiu\nplynulejšom\nplynulejšou\nplynulo\nplynulosť\nplynulý\nplynuté\nplynutí\nplynutia\nplynutie\nplynutím\nplynutiu\nplynúť\nPlynutý\nplypropylén\nplyše\nplyši\nplyš\nplyšmi\nplyšoch\nplyšom\nplyšov\nplyšový\nplyšu\nplytči\nplytčina\nplytko\nplytkosť\nplytký\nplytvanie\nplýtvaniu\nplytvaný\nplytvať\nplytvavej\nPlzenčan\nPlzeň\nplzenský\nPlzne\nPlzni\nPlzní\nPlzňou\npĺznuť\npĺža\npĺže\npĺži\npĺžik\npĺž\npĺžmi\npĺžoch\npĺžom\npĺžov\npĺžovi\npm\npmernosť\npmrtnosť\nPN\npňa\npňami\npneuma\npneumatachograf\npneumaticky\npneumatický\npneumatikáreň\npneumatikári\npneumatikármi\npneumatikárňach\npneumatikárňam\npneumatikárne\npneumatikárni\npneumatikární\npneumatikárňou\npneumatikárov\npneumatika\npneumatóza\npneumatúria\npneumocystóza\npneumocyt\npneumograf\npneumochirurgia\npneumokok\npneumokokové\npneumokokovým\npneumokonióza\npneumolitiáza\npneumológ\npneumológia\npneumónia\npneumonitída\npneumorágia\npneumotómia\npneumotorax\npniak\npníček\npníčka\npníčkami\npníčkoch\npníčkom\npníčkov\npníčku\npníčky\npnieť\npník\npňoch\npňom\npňov\npňový\nPNS\npňu\npnutí\npnutia\npnutiami\npnutie\npnutím\npnutiu\npnúť\npo\npoameričtený\npoameričtiť\npoamerikánčiť\nPobabraná\npobabranej\npobabrať\npobabre\npobabrem\npobabreme\npobabreš\npobabrete\npobabri\npobabrime\npobabrite\npobabrú\npobabrúc\npobádacej\npobádací\npobádacie\npobádanie\npobádateľa\npobadať\npobádať\npobádavý\npobafkať\npobaláchať\npobalamutiť\npobalené\npobalení\npobaliť\npobaltský\npobavene\npobavenia\npobavenie\npobavením\npobaveniu\npobavený\npobaviť\npobavkať\npobehaj\npobehajka\npobehajský\npobehať\npobehávať\npobehlica\npobehnúť\npobehovanie\npobehovaním\npobehovať\npobehúvať\npobelavý\npobelej\npobelejme\npobelejte\npobelejú\npobelejúc\npobelieť\npobelievať\npoberanie\npoberaný\npoberateľ\npoberateľka\npoberať\npobesedovať\npobesnený\npobežať\npobi\npobiede\npobiehaním\npobiehať\npobíjanie\npobíjať\npobije\npobijem\npobijeme\npobiješ\npobijete\npobijú\npobijúc\npobime\nPôbišová\npobite\npobiť\npobití\npobitie\npobitých\npobláznenie\npobláznením\npobláznený\npoblázniť\npoblč\npobledlý\npoblednúť\npoblednutý\npoblikávať\npoblíž\npoblúdene\npoblúdenec\npoblúdenej\npoblúdení\npoblúdenia\npoblúdeniach\npoblúdenie\npoblúdiť\npoblúznení\npoblúznenia\npoblúznenie\npoblúznením\npoblyskávať\npoblyskovať\npoblyskúvať\npobočka\npobočkov\npobočkový\npobočnica\npobočník\npobočný\npobočok\npobodať\npobodkovať\npoboľ\npobolievať\npobor\npoborenia\npoboriť\npobosoráčiť\npobosorované\npobosorovať\npobozkať\npobožne\npobožnosť\npobožnostkár\npobožnôstkársky\npobožnostkársky\npobožnostkárstvach\npobožnostkárstvam\npobožnostkárstvo\npobožný\npobranie\npobratať\npobrať\npobrázdiť\npobrechávať\npobrežie\npobrežný\npobrúsiť\npobrušnica\npobubnujú\npobuč\npobudiť\npobudnúť\npobúchať\npobúrala\npobúraný\npobúrať\npobúrene\npobúrenie\npobúreno\npobúrenosť\npobúrený\npobúriť\npoburovač\npoburovačov\npoburovania\npoburovanie\npoburovateľ\npoburovateľka\npoburovať\npoburujúcejšej\npoburujúcejší\npoburujúcejšia\npoburujúcejšie\npoburujúcejšieho\npoburujúcejšiemu\npoburujúcejších\npoburujúcejším\npoburujúcejšími\npoburujúcejšiu\npoburujúcejšom\npoburujúcejšou\npoburujúci\npoburujúco\npobyt\npobytmi\npobytové\npobývajú\npobýval\npobývala\npobývali\npobývam\npobývať\npocápať\npocel\npocelovať\npocestný\npocestoval\npocestuje\npocestujem\npocestujeme\npocestuješ\npocestujete\npocestujú\npocifrovať\npocikať\npocínovania\npocínovanie\npocínovaný\npocínovať\npocit\npocítený\npocítiť\npocitmi\npociťovanie\npociťovaný\npociťovať\npocitovo\npocitový\npociťujúci\npociťujúcu\npoco\npôct\npocta\npoctený\npocti\npoctí\npoctia\npoctiac\npoctil\npoctila\npoctili\npoctilo\npoctím\npoctime\npoctíme\npoctíš\npoctiť\npoctite\npoctíte\npoctivec\npoctivo\npoctivosť\npoctivý\npocuckať\npocukriť\npocukrovanie\npocukrovanou\npocukrovať\npocvákať\npocvičili\npoč\npočakať\npočar\npočarbaní\npočarbaných\npočarbať\npočarbi\npočarbime\npočarbite\npočarbú\npočarbúc\npočariť\nPočarová\npočarovať\nPočarovský\npočarte\npočas\npočasie\npočastovať\npočaté\npočatie\npočatou\npočať\npočernastý\npočerný\npočesť\npočestne\npočestnosť\npočestný\npočeštené\npočeštenie\npočeštených\npočešti\npočeštime\npočeštite\npočeštiť\npočešťovať\npočetne\npočetnosť\npočetný\npočet\npočiara\npočiat\npočiatočne\npočiatočný\npočiatok\npočiň\npočínanie\npočínať\npočin\npočistiť\npočít\npočítací\npočítač\npočítačove\npočítačovo\npočítačový\npočítačový\npočítadlo\npočítadlové\npočítane\npočítanie\npočítaný\npočítať\npočkanie\npočkať\npočmáraný\npočmárať\npočnúc\npočtár\npočtárka\npočtársky\npočtovaní\npočtovania\npočtovanie\npočtovať\npočtovnica\npočtovníckymi\npočtovníctva\npočtový\npočty\npočudovanie\npočudovať\npočudovnaie\npočuchrať\npočujúci\npočum\npočuteľne\npočuteľnosť\npočuteľný\npočutie\npočuto\npočuť\npočutý\npočúvací\npočúvacieho\nPočúvadle\nPočúvadlo\npočúvajúci\npočúvanie\npočúvanosť\npočúvaný\npočúvať\npočúvnutie\npočúvnuť\npočúvny\npod\npoď\npôd\npodací\npodagier\npodagra\npôdach\npodajeden\npodajedna\npodajedného\npodajednej\npodajednému\npodajedni\npodajedno\npodajednom\npodajednou\npodajednu\npodajedny\npodajedných\npodajedným\npodajednými\npoďakovací\npoďakovanie\npoďakovať\npodaktorý\npoďalej\npoďalšie\npôdam\npodane\npodanie\npodanieN\npodaný\npodar\npodarene\npodarený\npodariť\npodarok\npodaromky\npodaromne\npodaromnici\npodaromný\npodarovaných\npodarovať\npodarte\npodarúnok\npodatej\npodateľňa\npodateľní\npodať\npodávací\npodávač\npodávačka\npodávačovi\npodávanie\npodávanieN\npodávaný\npodávateľ\npodávateľka\npodávať\npôda\nPodbanské\nPodbanského\nPodbanskom\npodbať\npodbehlina\npodbehnúť\npodbehúvať\npodbeľ\npodbeľmi\npodbeľoch\npodbeľom\npodbeľov\npodbeľový\npodbeľu\npodberák\npodberať\npodbi\npodbiehať\nPodbiel\npodbielohorskej\npodbíjačka\npodbíjanie\npodbíjaný\npodbíjať\npodbije\npodbijem\npodbijeme\npodbiješ\npodbijete\npodbijú\npodbijúc\npodbime\npodbite\npodbiť\npodbití\npodbradníček\npodbradníčka\npodbradníčkami\npodbradníčkoch\npodbradníčkom\npodbradníčkov\npodbradníčku\npodbradníčky\npodbradník\npodbradok\nPodbranč\npodbrať\nPodbrezová\nPodbrezovej\nPodbrezovou\npodbrezovský\nPodbrezovú\nPodbrežie\npodbrušie\npodbrušina\npodbruškom\npodbrušku\npodbrušník\npodcenenia\npodcenenie\npodcenením\npodceneniu\npodcenený\npodceniť\npodceňovania\npodceňovanie\npodceňovaním\npodceňovaniu\npodceňovaný\npodceňovať\npodceňujúcej\npodceňujúci\npodceňujúcich\npodcestie\npodcieľ\npodcieľa\npodcieľov\npodčesávanie\npodčesávať\npodčiarknuci\npodčiarknutieN\npodčiarknuto\npodčiarknuť\npodčiarknutý\npodčiarkovanie\npodčiarkovať\npodčiarkujúci\npodčiarnik\npodčiniť\npoddajne\npoddajnosť\npoddajný\npoddane\npoddanosť\npoddanosti\npoddansky\npoddanský\npoddanstvo\npoddaný\npoddať\npoddávajúci\npoddávať\npoddimenzovania\npoddimenzovanie\npoddimenzovaním\npoddimenzovaniu\npoddimenzovaný\npoddimenzovať\npoddôstojnícky\npoddôstojníčka\npoddôstojník\npodebatovať\npodécia\npodediť\npodeje\npodejem\npodejeme\npodeješ\npodejete\npodelenie\npodelením\npodelený\npodeliť\npodeň\npodenka\npodenkový\npodeptať\npodesiť\npodest\npodesta\npodetom\npodexponovať\npodfabenejší\npodfarbenejší\npodfarbenie\npodfarbený\npodfarbi\npodfarbime\npodfarbite\npodfarbiť\npodfarbovať\npodfrcnutý\npodfukár\npodfuk\npodfúknuť\npodfutrovať\npodglazúrovým\npodgurážený\npodgurážiť\npodhadzované\npodhadzovanie\npodhadzovaniu\npodhadzovať\nPodhájska\nPodhájske\nPodhájskej\npodhájskom\nPodhájsku\npodhľad\npodhlavnica\npodhlavník\npodhmat\npodhmatmi\npodhniť\npodhnívať\npodhnúť\npoďho\npodhodením\npodhodený\npodhodiť\npodhodnocovania\npodhodnocovanie\npodhodnocovaním\npodhodnocovaniu\npodhodnocovaný\npodhodnocovať\npodhodnotenia\npodhodnotenie\npodhodnotením\npodhodnoteniu\npodhodnotený\npodhodnotiť\nPodhorany\nPodhorian\nPodhorie\nPodhoroď\nPodhorodi\npodhorský\npodhrab\npodhrabaná\npodhrabanú\npodhrabať\npodhrabávať\npodhrabúvať\npodhradie\nPodhradík\nPodhradský\npodhrdlie\npodhrdlina\npodhrdlinka\npodhrnú\npodhubie\npodhuckať\npodhýnať\npodchádzajú\npodchádzali\npodchádzať\npodchladenie\npodchladený\npodchladiť\npodchladzovať\npodchod\npodchvíľkou\npodchvíľou\npodchvíľu\npodchycovaní\npodchycovanie\npodchytávanie\npodchytávať\npodchytenia\npodchytenie\npodchyteniu\npodchytený\npodchytiť\npodial\npodiať\npodiaty\npodiď\npodíduc\npodieľajúci\npodieľaní\npodieľania\npodieľanie\npodieľaním\npodieľaniu\npodieľať\npodiel\npodiele\npodielmi\npodielnicky\npodielnický\npodielníctvo\npodielnictvo\npodielničky\npodielnik\npodielnikovho\npodielovo\npodielový\npodieť\npodievať\npódiový\npodiskutovali\npodiskutovať\npodísť\npodistým\npodiškurovať\npódium\npodívať\npodivenie\npodivený\npodivín\npodivínskej\nPodivínsky\npodivínskym\npodiviť\npodivne\npodivno\npodivnosť\npodivný\npodivný\npodivuhodne\npodivuhodnosť\npodivuhodný\nPodjavorinský\nPodjavorník\nPodjavorníku\npodjazd\npodjazdový\npodjeseňami\npodjesení\npodjeseniach\npodjeseniam\npodjeseň\npodjesenný\npodjeseňou\npodkapitalizácia\npodkapitalizovanosť\npodkapitalizovaný\npodkapitola\npodkarpatská\npodkarpatskej\npodkarpatským\npodkarpatskými\nPodkarpatský\npodkasá\npodkasaj\npodkasajme\npodkasajte\npodkasajú\npodkasajúc\npodkasám\npodkasáme\npodkasaný\npodkasáš\npodkasáte\npodkasať\npodkasávať\npodkášať\npoďkať\npodkategóriách\npodkategóriami\npodkategórie\npodkategórii\npodkategórií\npodkiadzať\npodkladania\npodkladanie\npodkladaním\npodkladaný\npodkladať\npodkladaví\npodklad\npodkladné\npodkladných\npodkladový\npodklinovať\npodkolenie\npodkolenná\npodkolienka\npodkomisia\npodkomisie\npodkomisií\nPodkonický\npodkopaná\npodkopané\npodkopaného\npodkopania\npodkopanie\npodkopaniu\npodkopanou\nPodkopaný\npodkopať\npodkopávané\npodkopávaní\npodkopávania\npodkopávanie\npodkopávaním\npodkopávaniu\npodkopávať\npodkop\npodkopne\npodkopný\npodkopové\npodkopovou\npodkopových\npodkopovým\npodkosiť\npodkovaný\npodkovať\npodkova\npodkovička\npodkovitý\npodkovka\npodkovovitý\npodkovový\npodkožný\npodkresliť\nPodkriváň\nPodkriváni\npodkrivánskej\nPodkrkonoší\nPodkrkonošia\npodkrovie\npodkrovný\npodkrušnohorský\npodkultúra\npodkúpiť\npodkupnosť\npodkupný\npodkupovať\npodkúriť\npodkurovanie\npodkurovať\npodkúšať\npodkúšavo\npodkušiavať\npodkušiteľ\npodkušiteľka\npodkušiť\npodkušovať\npodkuť\npodkutý\npodkúva\npodkúvač\npodkúvačský\npodkúvačstvo\npodkúvaj\npodkúvajme\npodkúvajte\npodkúvajú\npodkúvajúc\npodkúval\npodkúvala\npodkúvali\npodkúvalo\npodkúvam\npodkúvame\npodkúvaš\npodkúvať\npodkúvate\nPodkylava\nPodkylave\npodla\npodľa\npodlaha\npodľahnutému\npodľahnutí\npodľahnutia\npodľahnutie\npodľahnutiu\npodľahnúť\npodlahovina\npodlahový\npodlamované\npodlamovaniu\npodlamovať\npodláviť\npodlažie\npodlažný\npodle\npodlejšej\npodlejší\npodlejšia\npodlejšie\npodlejšieho\npodlejšiemu\npodlejších\npodlejším\npodlejšími\npodlejšiu\npodlejšom\npodlejšou\npodlepené\npodlepenie\npodlepiť\npodlepovaní\npodlepovanie\npodlepovať\npodleptanie\npodleptať\nPodlesí\nPodlesie\npodleť\npodletenie\npodletieť\npodlhovastý\npodliacky\npodliactvach\npodliactvam\npodliactvo\npodliačka\npodliak\npodliatín\npodliatina\npodliať\npodliaty\npodliehajúci\npodliehania\npodliehanie\npodliehaním\npodliehaný\npodliehať\npodliepať\npodlievať\npodliezania\npodliezanie\npodliezaním\npodliezaniu\npodliezať\npodliezavo\npodliezavý\npodliezť\npodlimitné\npodlimitného\npodlimitnou\npodlimitnú\npodlimitných\npodlimitným\npodlina\npodlizač\npodlízal\npodlízať\npodlízavo\npodlízavosť\npodlízavý\npodlizovač\npodlizovačský\npodlizovačstvo\npodlizovanie\npodlizovať\npodlo\npodlomenie\npodlomený\npodlomiť\npodlosť\npodložene\npodloženie\npodloženosti\npodložený\npodložie\npodložiť\npodložka\npodložkový\npodložný\npodlubie\npodlučký\nPodlužany\nPodlužianke\npodlý\npodlžnosť\npodm\npodmáčali\npodmáčania\npodmáčanie\npodmáčaním\npodmáčaniu\npodmáčaný\npodmaľovanie\npodmaľovaný\npodmaľovať\npodmaľúvať\npodmanenie\npodmanený\npodmaniteľ\npodmaniteľka\npodmaniteľsky\npodmaniteľský\npodmaniť\npodmanivo\npodmanivosť\npodmanivý\npodmaňovanie\npodmaňovaniu\npodmaňovať\npodmaňujúcejšej\npodmaňujúcejší\npodmaňujúcejšia\npodmaňujúcejšie\npodmaňujúcejšieho\npodmaňujúcejšiemu\npodmaňujúcejších\npodmaňujúcejším\npodmaňujúcejšími\npodmaňujúcejšiu\npodmaňujúcejšom\npodmaňujúcejšou\npodmaňujúci\npodmaňujúco\npodmaslie\npodmastené\npodmasteného\npodmasti\npodmastí\npodmastia\npodmastiac\npodmastil\npodmastila\npodmastili\npodmastilo\npodmastím\npodmastime\npodmastíme\npodmastíš\npodmastiť\npodmastite\npodmastíte\npodmasťoval\npodmasťovala\npodmasťovali\npodmasťovalo\npodmasťovať\npodmasťuj\npodmasťuje\npodmasťujem\npodmasťujeme\npodmasťuješ\npodmasťujete\npodmasťujme\npodmasťujte\npodmasťujú\npodmasťujúc\npodmášťa\npodmášťaj\npodmášťajme\npodmášťajte\npodmášťajú\npodmášťajúc\npodmášťal\npodmášťala\npodmášťali\npodmášťalo\npodmášťam\npodmášťame\npodmášťaš\npodmášťať\npodmášťate\npodmazať\npoďme\npodmet\nPodmetie\npodmetový\npodmieľať\npodmienečne\npodmienečnosť\npodmienečný\npodmienene\npodmienenia\npodmienenie\npodmienením\npodmieneniu\npodmienenosť\npodmienený\npodmieniť\npodmienka\npodmienkový\npodmieňovací\npodmieňovania\npodmieňovanie\npodmieňovaním\npodmieňovaný\npodmieňovať\npodmieňujúci\npodmietací\npodmietač\npodmietača\npodmietače\npodmietači\npodmietať\npodmietka\npodmietkový\npodmietnuť\npodmínované\npodmínovanie\npodmínovať\npodmínováva\npodmlieť\npodmnožina\npodmnožinový\npodmokať\npodmoknutej\npodmoknúť\nPodmokoch\nPodmoky\npodmole\npodmorský\npodmoskovský\npodmostín\npodmostina\npodmračený\npodmračný\npodmúra\npodmúraj\npodmúrajme\npodmúrajte\npodmúrajú\npodmúrajúc\npodmúral\npodmúrala\npodmúrali\npodmúralo\npodmúram\npodmúrame\npodmúraš\npodmúrať\npodmúrate\npodmurované\npodmurovanie\npodmurovať\npodmurovka\npodmyté\npodmytie\npodmytiu\npodmytou\npodmyť\npodmytých\npodmývanie\npodmývaním\npodmývať\npodnájmami\npodnájme\npodnájmoch\npodnájmom\npodnájmov\npodnájmu\npodnájmy\npodnájom\npodnájomnícky\npodnájomníčka\npodnájomník\npodnájomný\npodnapiť\npodnapito\npodnapitosť\npodnapitý\npodnášať\npodňať\npodnázov\npodnázve\npodnebie\npodnebný\npodnecovania\npodnecovanie\npodnecovaním\npodnecovaniu\npodnecovaný\npodnecovateľ\npodnecovateľka\npodnecovať\npodnecujúca\npodnecujúce\npodnecujúci\npodnecujúco\npodnesenie\npodnet\npodnetne\npodnetnosť\npodnetný\npodniesť\npodnietenie\npodnietením\npodnieteniu\npodnietený\npodnietiť\npodnikajúce\npodnikane\npodnikanie\npodnikaný\npodnikateľ\npodnikateľia\npodnikateľka\npodnikateľova\npodnikateľove\npodnikateľovej\npodnikateľovho\npodnikateľovo\npodnikateľovom\npodnikateľovou\npodnikateľovu\npodnikateľových\npodnikateľovým\npodnikateľsky\npodnikateľský\npodnikateľstva\npodnikateľstve\npodnikateľstvo\npodnikateľstvu\npodnikať\npodnikavec\npodnikavo\npodnikavosť\npodnikavý\npodnik\npodniknutie\npodniknutím\npodniknúť\npodniknutý\npodnikovo\npodnikový\npodnormálne\npodnormálny\npodnos\npodnožami\npodnože\npodnoži\npodnožie\npodnož\npodnožka\npodnožník\npodnožný\npodnožou\npôdny\npodo\npodobajúca\npodobajúci\npodobanie\npodobaný\npoďobaný\npoďobať\npodobať\npodoba\npodobenstvo\npodoberanie\npodoberaný\npodoberať\npodobiehať\npodobizeň\npodobličnica\npodobločnica\npodobne\npodobno\npodobnosť\npodobný\npodobratie\npodobrať\npodobratý\npodobrenia\npodobrenie\npodobrený\npodobriť\npodobrom\npodobrote\npodobrotky\npododdelenie\npododdiel\npododdiely\npododvetví\npododvetvia\npododvetviach\npododvetvie\npododvetvím\npodohadovať\npodoháňanie\npodoháňať\npodohnúť\npôdohosp\npôdohospodár\npôdohospodársky\npôdohospodárstvach\npôdohospodárstvam\npôdohospodárstvo\npodochádzať\npodochnúť\npodochodiť\npodojeného\npodojiť\npôdoj\npodojník\npodokenica\npodokenník\npodokenný\npodokladať\nPodolí\nPodolia\nPodolie\npodolievať\nPodolínca\nPodolínci\nPodolínec\npodolok\nPodolsky\nPodolský\npodomácku\npodomácky\npodomieľa\npodomieľaj\npodomieľajme\npodomieľajte\npodomieľajú\npodomieľajúc\npodomieľal\npodomieľala\npodomieľali\npodomieľalo\npodomieľam\npodomieľame\npodomieľaš\npodomieľať\npodomieľate\npodomletia\npodomletie\npodomletý\npodomlieť\nPodomní\npodomovo\npodomový\npodonášať\npôdoochranná\npôdoochranné\npôdoochrannej\npôdoochrannú\npôdoochranných\npôdoochrannými\npodopierajúcim\npodopieranie\npodopieraný\npodopierať\npodopierka\npodopĺňať\npodoplňovať\npodoprenie\npodoprením\npodopreniu\npodoprený\npodopretie\npodopretím\npodopretý\npodoprieť\npodoprúc\npodopúšťa\npodopúšťať\npodorávať\npôdorys\npôdorysný\npodošva\npodošvička\npodošvový\npodotknutie\npodotknúť\npodotýkať\npodovážať\npodovírus\npodovolenkového\npodovolenkovom\npodovolenkovou\npôdoznalec\npôdoznalecký\npôdoznalectvo\npôdoznalkyňa\npodozrenie\npodozrievania\npodozrievaniam\npodozrievanie\npodozrievaním\npodozrievaniu\npodozrievaný\npodozrievať\npodozrievavci\npodozrievavo\npodozrievavosť\npodozrievavý\npodozrivo\npodozrivosť\npodozrivosti\npodozrivý\npodozvedali\npodozvedať\npodpáľ\npodpaľač\npodpaľačka\npodpaľačský\npodpaľačstvo\npodpálené\npodpáleného\npodpálení\npodpálenia\npodpálenie\npodpálením\npodpáli\npodpália\npodpáliac\npodpálil\npodpálila\npodpálili\npodpálilo\npodpálim\npodpálime\npodpáliš\npodpáliť\npodpálite\npodpáľme\npodpaľovanie\npodpaľovať\npodpáľte\npodpalubie\npodpalubný\npodpásať\npodpáš\npodpáše\npodpášem\npodpášeme\npodpášeš\npodpášete\npodpášme\npodpášte\npodpášu\npodpášuc\npodpätok\npodpazušie\npodpazušný\npodpažne\npodpažného\npodper\npodpera\npodperiť\npodperno\npodperný\npodperte\npodpier\npodpieranie\npodpierať\npodpierka\npodpichávať\npodpichnutie\npodpichnúť\npodpichovač\npodpichovačný\npodpichovaná\npodpichovania\npodpichovanie\npodpichovať\npodpílenému\npodpíliť\npodpiľovať\npodpísane\npodpísanie\npodpísaný\npodpísať\npodpis\npodpisované\npodpisovaného\npodpisovanej\npodpisovanie\npodpisovanom\npodpisovaných\nPodpisovaný\npodpisovateľ\npodpisovateľa\npodpisovateľom\npodpisovateľov\npodpisovateľovho\npodpisovateľovi\npodpisovať\npodpisový\npodpisový\npodpisujúci\npodpíšu\npodpíšuc\npodpiť\npodpito\npodpitý\npodpivničený\npodplácanie\npodplácaný\npodplácať\npodplamenník\npodplamenníku\npodplamenníky\npodplatenie\npodplatený\npodplatiteľný\npodplatiť\npodplatnosť\npodplatný\npodplávať\npodpleť\npodpletať\npodpletie\npodpletiem\npodpletieme\npodpletieš\npodpletiete\npodpleťme\npodpleťte\npodpletú\npodpletúc\npodpliesť\npodplietla\npodplietli\npodplietlo\npodplietol\npodplukovnícky\npodplukovníčka\npodplukovník\npodpník\npodpníkový\npodpňovka\npodpoliansky\npodpoliansky\npodpora\npodpor\npodporenie\npodporený\npodporiť\npodporne\npodporno\npodporný\npodporovane\npodporovanie\npodporovaný\npodporovateľ\npodporovateľka\npodporovať\npodporového\npodporte\npodporučícky\npodporučíčka\npodporučík\npodporujúci\npodporujúco\npodpovrchová\npodpovrchové\npodpovrchového\npodpovrchovej\npodpovrchovou\npodpovrchovú\npodpovrchových\npodpovrchovým\npodpovrchovými\npodprahovo\npodprahový\npodpráporčícky\npodpráporčíčka\npodpráporčík\npodprárorčíčka\npodpredseda\npodpredsednícka\npodpredsednícke\npodpredsedníckeho\npodpredsedníckej\npodpredsednícku\npodpredsednícky\npodpredsedníckych\npodpredsedníctva\npodpredsedníctvo\npodpredsedníctvom\npodpredsedníčka\npodpredsedova\npodpredsedovou\npodprel\npodprela\npodpreli\npodprelo\npodpretie\npodpri\npodprie\npodpriečinok\npodpriem\npodprieme\npodpriemer\npodpriemerne\npodpriemernosť\npodpriemerný\npodprieš\npodprieť\npodpriete\npodprime\npodprite\npodproces\npodprogram\npodprsenka\npodprsnica\npodprú\npodprúc\npodpuchávať\npodpultový\npodradenie\npodradenosť\npodradený\npodradiť\npodradne\npodradnosť\npodradný\npodraďovací\npodraďovať\npodrastaný\npodrastať\npodrast\npodrastený\npodrastený\npodrasti\npodrastime\npodrastite\npodrastmi\npodrastok\npodrastový\npodrásť\npodrať\npodraz\npodrazené\npodrazeniu\npodraziť\npodrážanie\npodrážať\npodráždene\npodráždenie\npodráždenosť\npodráždený\npodráždiť\npodražela\npodraželi\npodraženia\npodraženie\npodražením\npodražie\npodražieť\npodrážka\npodrážkový\npodrec\npodrecme\npodrecte\npodrep\npodrezanie\npodrezaný\npodrezať\npodrezávanie\npodrezávaním\npodrezávať\npodrhnutá\npodrhnúť\npodri\npodriadene\npodriadenia\npodriadenie\npodriadením\npodriadeniu\npodriadenosť\npodriadený\npodriadiť\npodriaďovanieN\npodriaďovaný\npodriaďovať\npodriapaný\npodriapať\npodrie\npodriecť\npodriekať\npodrieknuť\npodriem\npodriemať\npodrieme\npodriemem\npodriememe\npodriemeš\npodriemete\npodriemkať\npodriemkávali\npodriemkávanie\npodriemkávaniu\npodriemkávať\npodriemkavať\npodriemme\npodriemte\npodriemu\npodriemuc\npodrichtár\npodrichtársky\npodrichtárstvach\npodrichtárstvam\npodrichtárstvo\npodrkoc\npodrkoce\npodrkocem\npodrkoceme\npodrkoceš\npodrkocete\npodrkocme\npodrkocte\npodrkocú\npodrkocúc\npodrkotajúc\npodrkotal\npodrkotala\npodrkotali\npodrkotalo\npodrkotať\npodrm\npodrmať\npodrmme\npodrmte\npodrmú\npodrmúc\npodrobenie\npodrobením\npodrobený\npodrobiť\npodrobnejší\npodrobnejší\npodrobne\npodrobnosť\npodrobný\npodrobovaný\npodrobovať\npodrú\npodrúbanie\npodrúbaný\npodrúbať\npodručie\npodrušie\npodrúzgať\npodružne\npodružnosť\npodružný\npodrvenie\npodrvený\npodrviť\npodrytie\npodryť\npodrývač\npodrývačka\npodrývačný\npodrývačský\npodrývania\npodrývanie\npodrývaním\npodrývateľ\npodrývateľka\npodrývať\npodržané\npodržanie\npodržať\npodržiavať\npodsád\npodsada\npodsadenie\npodsadiť\npodsaditý\npodsadnuto\npodsádzanie\npodsádzať\npodsebný\npodsekávať\npodseknutie\npodseknúť\npodsekretár\npodsev\npodseve\npodsiať\npodsiaty\npodsieť\npodsievať\npodskakovať\nPodskalský\npodskočiť\npodskupina\npodsledná\npodslinka\npodspodok\npodst\npodstarostovia\npodstata\npodstatne\npodstatnejší\npodstatnosť\npodstatný\npodstava\npodstavcový\npodstavček\npodstavec\npodstavenia\npodstavenie\npodstavenými\npodstaviť\npodstavný\npodstavok\npodsteľ\npodstena\npodstenie\npodstielať\npodstielka\npodstienka\npodstienok\npodstlato\npodstlať\npodstolina\nPodstráne\nPodstráni\npodstrčená\npodstrčené\npodstrčenej\npodstrčení\npodstrčenie\npodstrčením\npodstrčeným\npodstrčenými\npodstrčiť\npodstrelenia\npodstrelenie\npodstrelením\npodstreleniu\npodstrelený\npodstreliť\npodstreľovania\npodstreľovať\npodstrešie\npodstrešný\npodstrihnuté\npodstrihnúť\npodstrihovať\npodstrkávať\npodstrkovania\npodstrkovať\npodstúpenia\npodstúpenie\npodstúpením\npodstúpeniu\npodstúpený\npodstúpiť\npodstupované\npodstupovaného\npodstupovanému\npodstupovanie\npodstupovanom\npodstupovaných\npodstupovať\npodsuň\npodsunie\npodsuniem\npodsunieme\npodsunieš\npodsuniete\npodsuňme\npodsuňte\npodsunul\npodsunula\npodsunuli\npodsunulo\npodsunutia\npodsunutie\npodsunutím\npodsunúť\npodsunutý\npodsúvať\npodsvetie\npodsvetne\npodsvetný\npodsypať\npodsýpať\npodsypávať\npodsypú\npodsypúc\npodsypy\npodsystém\npodši\npodšije\npodšijem\npodšijeme\npodšiješ\npodšijete\npodšijú\npodšijúc\npodšil\npodšila\npodšili\npodšilo\npodšime\npodšite\npodšité\npodšiť\npodšitých\npodšívanie\npodšívať\npodšívka\npodšívkovať\npodšívkový\npodštrknúť\npodtajomník\npodtajomníka\npodtajomníkom\npodťaté\nPodtatranci\nPodtatrancom\nPodtatrancov\nPodtatranec\npodtatranský\npodťať\npoďte\npodtečenie\npodtekať\npodtext\npodtextmi\npodtextový\npodtiahnuť\npodtiecť\npodtímov\npodtímu\npodtínať\npodtitul\npodtitulmi\npodtitulok\npodtlač\npodtlače\npodtlači\npodtlačou\npodtlak\npodtlakový\npodtón\npodtŕhať\npodtrhávať\npodtrhla\npodtrhli\npodtrhlo\npodtrhne\npodtrhnem\npodtrhneme\npodtrhneš\npodtrhnete\npodtrhni\npodtrhnime\npodtrhnite\npodtrhnú\npodtrhnúc\npodtrhnúť\npodtrhnutá\nPodtrhnuté\npodtrhnutie\npodtrhol\npodtrhovať\npodtried\npodtrieda\nPodtureň\nPodturne\nPodturni\npodtvrdil\npodtyp\npoďubať\npoďubkať\npodúčať\npodúčet\npodučiť\npodúčtami\npodúčtoch\npodúčtom\npodúčtov\npodúčtu\npodúčty\npodudrávať\npoduchovať\npodujatie\npodujať\npodujímať\npodujte\npodul\npodula\npodulo\npodúloha\npodumá\npodumaj\npodumajme\npodumajte\npodumajú\npodumajúc\npodumám\npodumáme\npodumáš\npodumáte\npodumať\nPodunajsko\npodunajský\npodunjský\npodupá\npodupaj\npodupajme\npodupajte\npodupajú\npodupajúc\npodupám\npodupáme\npodupaním\npodupáš\npodupáte\npodupať\npodupávať\npodupkať\npodupkávať\npodur\npoduriť\npodurkať\npodurkávať\npodúrovňový\npodurte\npodusiť\npodustva\npoduška\npoduškový\npoduštička\npoduto\npodúvajú\npodúvanie\npodúvať\npodvádzania\npodvádzanie\nPodvádzaním\npodvádzaniu\npodvádzaný\npodvádzať\npodval\npodvalmi\npodvalník\npodvalníkoch\npodvalníkov\npodvalový\npodväzkový\npodväzok\npodväzovaná\npodväzovania\npodväzovaniu\npodväzovať\nPodvažie\npodvážiť\npodvažovanie\npodvažovať\npodvečera\npodvečer\npodvečerný\npodvečierkom\npodvedenie\npodvedením\npodvedený\npodvedome\npodvedomie\npodvedomo\npodvedomý\npodvenčiť\npodverzia\npodves\npodveselený\npodvesí\npodvesok\npodvhnúť\npodviazanie\npodviazaním\npodviazaniu\npodviazaný\npodviazať\npodviaž\npodviaže\npodviažem\npodviažeme\npodviažeš\npodviažete\npodviažme\npodviažte\npodviažu\npodviažuc\npodviesť\nPodvih\npodvihnutie\npodvihnúť\nPodvihov\npodvihovať\npodviživený\npodvliecť\npodvliekaní\npodvliekať\npodvod\npodvodne\npodvodnícky\npodvodníctvach\npodvodníctvam\npodvodníctvo\npodvodníčka\npodvodník\npodvodníkovho\npodvodnosť\npodvodný\npodvodové\npodvoje\npodvojne\npodvojnosť\npodvojný\nPodvolení\npodvolenie\npodvoliť\npodvoľovanie\npodvoľovať\npodvor\npodvozkový\npodvozok\npodvracanie\npodvracať\npodvrátiť\npodvratne\npodvratnícky\npodvratníctvach\npodvratníctvam\npodvratníctvo\npodvratníčka\npodvratník\npodvratnosť\npodvratný\npodvrh\npodvrhnutie\npodvrhnúť\npodvrhnutý\npodvrhovania\npodvrhovať\npodvrtnúť\npodvrtnutie\npodvrtnutý\npodvýbor\npodvýroba\nPodvysoká\nPodvysokej\npodvýšiť\npodvyšovať\npodvýživ\npodvýživách\npodvýživám\npodvýživami\npodvýživa\npodvyživenosť\npodvyživený\npodvyživený\npodymiť\npodzáložného\nPodzámčie\nPodzámčok\nPodzámku\nPodzámok\nPodzámskej\nPodzávoz\nPodzávoze\npodzemie\npodzemkov\npodzemky\npodzemne\npodzemnica\npodzemnicový\npodzemný\nPodzemská\npodzol\npodzolový\npodžalúdkový\npodžrať\npodžupan\npoém\npoémach\npoémam\npoéma\npoenológia\npoét\npoéta\npoeta\npoet\npoetickosť\npoeticky\npoetický\npoetika\npoetista\npoetistický\npoetizmus\npoetizovať\npoetka\npoézia\npofa\npofačovať\npofajč\npofajčenie\npofajči\npofajčí\npofajčia\npofajčiac\npofajčievať\npofajčil\npofajčila\npofajčili\npofajčilo\npofajčím\npofajčime\npofajčíme\npofajčíš\npofajčiť\npofajčite\npofajčíte\npofajčme\npofajčte\npofajkať\npofára\npofarbenia\npofarbenie\npofarbiť\npofebruárová\npofič\npofidérny\npofľakovať\npofrancúzšť\npofrancúzštenie\npofrancúzšti\npofrancúzštia\npofrancúzštiac\npofrancúzštil\npofrancúzštila\npofrancúzštili\npofrancúzštilo\npofrancúzštim\npofrancúzštime\npofrancúzštiš\npofrancúzštiť\npofrancúzštite\npofrancúzšťme\npofrancúzšťovať\npofrancúzšťte\npofŕkať\npofrkovať\npofúkanie\npofúkať\npofukovať\npofúľať\npofušovaný\npofušovať\npogebriť\npogniaviť\npogo\nPogratuloval\npogratulovali\npogratulovať\npogratuluje\npogrom\npogumovania\npogumovanie\npogumovaním\npogumovaný\npogumovať\npogumovávať\npogumúvať\npohabať\npohabkať\npohádať\npohádka\npohádky\npohádzaný\npohádzať\nPohadzovanie\npohadzovaný\npohadzovať\npohádž\npohádže\npohádžem\npohádžeme\npohádžeš\npohádžete\npohádžme\npohádžte\npohádžu\npohádžuc\npohalaškovať\npohán\npoháňací\npoháňač\npoháňača\npoháňačom\npoháňajúceho\npoháňanie\npoháňaný\npohánať\npoháňať\npohana\npohan\npohanenia\npohanenie\npohanený\npohaniť\npohanka\npohánka\npohánkový\nPohanovej\npohansky\npohanský\npohanstvo\npohárik\npohár\npoharkať\npohármi\npohárnikmi\npohárový\npoharušiť\npohasínať\npohasnúť\npohášať\npohašter\npohašterené\npohašteriť\npohašterte\npohiezdiť\npohl\npohľadanie\npohľadanú\npohľadať\npohľadáva\npohľadávajú\npohľadávať\npohľadávka\npohľad\npohladenieN\npohladiť\npohladkanie\npohladkaniu\npohladkaný\npohladkať\npohladkávať\npohľadnica\npohľadnicovo\npohľadnicový\npohľadný\npohládzať\npohlavár\npohlavie\npohlavne\npohlavnosť\npohlavný\npohlcovač\npohlcovačov\npohlcovane\npohlcovania\npohlcovanie\npohlcovaním\npohlcovaniu\npohlcovaný\npohlcovať\npohlcujúca\npohlcujúce\npohlcujúci\npohlcujúcom\npohliadnuť\npohltať\npohltenia\npohltenie\npohltením\npohlteniu\npohltený\npohlti\npohltite\npohltiť\npohlušiť\npohmatať\npohmat\npohmatkať\npohmatmi\npohmkať\npohmkávať\npohmožď\npohmoždenina\npohmoždi\npohmoždí\npohmoždia\npohmoždiac\npohmoždil\npohmoždila\npohmoždili\npohmoždilo\npohmoždím\npohmoždime\npohmoždíme\npohmoždíš\npohmoždiť\npohmoždite\npohmoždíte\npohmožďme\npohmožďte\npohnaný\npohnať\npohnať\npohnevaný\npohnevať\npohnevkávať\npohniezdiť\npohniť\npohnojenie\npohnojiť\npohnute\npohnutie\npohnútka\npohnutlivý\npohnuto\npohnúť\npohnutý\npohodaN\npohodenie\npohodený\npohodiť\npohodla\npohodlie\npohodlne\npohodlnícky\npohodlníctvach\npohodlníctvam\npohodlníctvo\npohodlnosť\npohodlný\npohodnúť\npohodol\npohoj\npohojdať\npohojdávať\npohojiť\npohojte\npohoň\npohon\npohonič\npohoničov\npohonný\npohonový\npohoňte\npohor\nPohorelá\npohorelec\nPohorelej\npohorelskí\npohorelskom\nPohorelský\npohorenísk\npohorenisko\npohorieť\npohorie\npohorských\nPohorský\npohoršene\npohoršenie\npohoršený\npohorši\npohoršime\npohoršite\npohoršiť\npohoršlivo\npohoršlivý\npohoršovať\npohoršujúci\npohostenie\npohosti\npohostime\npohostinne\npohostinnosť\npohostinný\npohostinsky\npohostinský\npohostinstvo\npohostite\npohostiť\npohotove\npohotovo\npohotovosť\npohotovostný\npohotový\npohov\npohovenie\npohovený\npohovieť\npohovka\npohovor\npohovoriť\npohovorte\npohrab\npohrabať\npohrane\npohraničie\npohraničník\npohranično\npohraničný\npohranom\npohrať\npohrávaní\npohrávania\npohrávanie\npohrávaním\npohrávať\npohŕdané\npohŕdanieN\npohŕdať\npohŕdavo\npohŕdavosť\npohŕdavý\npohrdiť\npohrdlivo\npohrdlivosť\npohrdlivý\npohrdnutie\npohrdnúť\npohrdúsiť\npohreb\npohrebiete\npohrebísk\npohrebisko\npohrebné\npohrebný\npohrebú\npohrkať\npohrmievať\npohrnie\npohrniem\npohrnieme\npohrnieš\npohrniete\npohrnú\npohrnúť\npohrobkovi\npohrobkovia\npohrobok\npohrôm\npohromade\npohroma\nPohronie\npohronskoruskovského\npohronský\npohrozené\npohrozenia\npohrozeniam\npohrozenie\npohrozením\npohrozeniu\npohroziť\npohrudnica\npohrudnicový\npohrúžením\npohrúžený\npohrúžiť\npohružovať\npohryz\npohryzenej\npohryzení\npohryzie\npohryziem\npohryzieme\npohryzieš\npohryziete\npohryzkávať\npohrýzla\npohrýzli\npohrýzlo\npohryzme\npohryznúť\npohryznutí\npohryznutie\npohryzol\npohrýzol\npohryzte\npohrýzť\npohryzú\npohryzúc\npohubil\npohubiť\npohuckať\npohuľanka\npohundrať\npohundrávať\npohundre\npohundrem\npohundreme\npohundreš\npohundrete\npohundri\npohundrime\npohundrite\npohundrú\npohundrúc\npohúpali\npohupnutie\npohupujte\npohutovanie\npohutovať\npohutujúcej\npohúžvať\npohúžve\npohúžvem\npohúžveme\npohúžveš\npohúžvete\npohúžvi\npohúžvime\npohúžvite\npohúžvu\npohúžvuc\npohvizdovať\npohvizdúvať\npohýb\npohýbať\npohyb\npohyblivo\npohyblivosť\npohyblivý\npohybovacích\npohybovaného\npohybovaní\npohybovanie\npohybovaním\npohybovať\npohybove\npohybovo\npohybový\npohybujúca\npohybujúce\npohybujúceho\npohybujúcej\npohybujúcemu\npohybujúci\npohybujúcich\npohybujúcim\npohybujúcimi\npohybujúcom\npohybujúcou\npohybujúcu\npohyň\npohýnať\npohynie\npohyniem\npohynieme\npohynieš\npohyniete\npohyňme\npohyňte\npohynú\npohynúc\npohynul\npohynula\npohynuli\npohynulo\npohynúť\npochabec\npochabejšej\npochabejší\npochabejšia\npochabejšie\npochabejšieho\npochabejšiemu\npochabejších\npochabejším\npochabejšími\npochabejšiu\npochabejšom\npochabejšou\npochábeľ\npochábeľský\npochabieť\npochabiť\npochábľa\npochábľami\npochábli\npochábľoch\npochábľom\npochábľov\npochábľovi\npochabo\npochabosť\npochabý\npochádzajúci\npochádzať\npochechtávať\npochlapiť\npochlebkovať\npochlebníci\npochlebnícky\npochlebníctvach\npochlebníctvam\npochlebníctvo\npochlebník\npochlebníkovi\npochlebovač\npochlebovačne\npochlebovačnosť\npochlebovačný\npochlebovačsky\npochlebovačský\npochlebovačstvo\npochlebovanie\npochlebovaním\npochlebovať\npochleptať\npochlípať\npochlipkávaní\npochlpiť\npochmúrený\npochmúrnosť\npochmúrny\npochod\npochodeň\npochodené\npochodiť\npochodovanie\npochodovať\npochodový\npochodujúci\npochôdzka\npochôdzkach\npochôdzkam\npochôdzkar\npochôdzkár\npochôdzke\npochôdzkou\nPochôdzkou\npochôdzku\npochôdzky\npochôdzok\npochop\npochopene\npochopenieN\npochopený\npochopiteľne\npochopiteľnosť\npochopiteľný\npochopiť\npochopovať\npochorieť\npochorievať\npochovanie\npochovaný\npochovať\npochovávanie\npochovávať\npochrám\npochrámaného\npochrámať\npochráme\npochrámem\npochrámeme\npochrámeš\npochrámete\npochrámme\npochrámte\npochrámu\npochrámuc\npochrániť\npochrapkať\npochrapkávať\npochromkávať\npochrómovanie\npochrómovaný\npochrómovať\npochrúm\npochrúmať\npochrumkať\npochrumkávať\npochrúmme\npochrúmte\npochrúpať\npochudnúť\npochudnutý\npochuj\npochuje\npochujem\npochujeme\npochuješ\npochujete\npochujme\npochujte\npochujú\npochujúc\npochuti\npochutina\npochutiť\npochúťka\npochúťkový\npochutnania\npochutnať\npochutnáva\npochutnávaj\npochutnávajme\npochutnávajte\npochutnávajú\npochutnávajúc\npochutnával\npochutnávala\npochutnávali\npochutnávalo\npochutnávam\npochutnávame\npochutnávaš\npochutnávať\npochutnávate\npochvál\npochvala\npochválen\npochválený\npochváliť\npochvalne\npochvalný\npochvaľovanie\npochvaľovať\npochvasci\npochvascime\npochvascite\npochvastať\npochyba\npochybene\npochybenie\npochybenosť\npochybený\npochybiť\npochybne\npochybnosť\npochybný\npochybovač\npochybovačne\npochybovačnosť\npochybovačný\npochybovania\npochybovanie\nPochybovatelia\npochybovať\npochybujúce\npochybujúci\nPochybujúcich\npochybujúco\npochýlený\npochystať\npochytané\npochytaní\npochytať\npochytiť\npochytkávať\npoihrať\npoihráva\npoihrávaj\npoihrávajme\npoihrávajte\npoihrávajú\npoihrávajúc\npoihrával\npoihrávala\npoihrávali\npoihrávalo\npoihrávam\npoihrávame\npoihrávaš\npoihrávať\npoihrávate\npoikilocyt\npoikilocytóza\npoikilotermia\npoinfarktový\npoinformovať\npoint\npointa\npointer\npointilizmus\npointovanie\npointovať\npoistencovej\npoistencovho\npoistene\npoistenec\npoistenecký\npoistenie\npoistenka\npoistený\npoisti\npoistime\npoistite\nPoistite\npoistiteľ\npoistiteľa\npoistitelia\npoistiteľmi\npoistiteľoch\npoistiteľom\npoistiteľov\npoistiteľovi\npoistiť\npoistka\npoistkový\npoistne\npoistné\npoistno\npoistný\npoisťovací\npoisťovania\npoisťovaniach\npoisťovaniam\npoisťovanie\npoisťovaním\npoisťovaniu\npoisťovaný\npoisťovateľ\npoisťovateľka\npoisťovateľský\npoisťovať\npoisťovňa\npoisťovní\npoisťovníctvo\npoisťujúca\npoj\npoja\npojašene\npojašenec\npojašenosť\npojašený\npojašiť\npojatia\npojatie\npojatím\npojať\npojatý\npojazdi\npojazdí\npojazdnosť\npojazdnosti\npojazdný\npôjda\npôjd\npôjdi\npôjdime\npôjdite\npôjdový\npôjduc\npojebaný\npojedá\npojedačov\npojedal\npojedaniu\npojedať\npojednania\npojednaniam\npojednanie\npojednať\npojednávacej\npojednávací\npojednávacie\npojednávacích\npojednávaciu\npojednávajúce\npojednávanie\npojednávaných\npojednávať\npojedou\npojem\npojenia\npojený\npojesť\npojí\npojilo\npojímanie\npojímať\npojiť\npojmosloví\npojmove\npojmovo\npojmový\npôjsť\npokade\npokajajú\npokakaný\npokakať\nPokaľ\npokálať\npokaličiť\npokaliť\npokál\npokály\npokánie\npokántriť\npokapať\npokára\npokáral\npokárala\npokárali\npokáranie\npokáraný\npokárať\npokarhane\npokarhania\npokarhaniam\npokarhanie\npokarhaním\npokarhaniu\npokarhaný\npokarhať\npokasať\npokašlať\npokašlávanie\npokašlávať\npokašle\npokašliavať\npokazenia\npokazenie\npokazeniu\npokazený\npokaziť\npoker\npokermi\npokery\npokiaľ\npokiaľkoľvek\npokiaľže\npokl\npokľačiačky\npoklaď\npokladajúci\npokladajúcimi\npokladajúcu\npokladania\npokladanie\npokladaniu\npokladaný\npokladať\npoklad\npokladených\npokládka\npokládke\npokládkou\npokládku\npokládky\npokladňa\npokladní\npokladnica\npokladnícky\npokladníctvach\npokladníctvam\npokladníctvo\npokladnička\npokladníčka\npokladnične\npokladnično\npokladničný\npokladník\npokladňový\npokľakačky\npokľak\npokľaknúť\npoklal\npoklala\npoklásť\npoklato\npoklbčiť\npoklebetiť\npoklepania\npoklepanie\npoklepaním\npoklepaniu\npoklepaný\npoklepať\npoklepávaní\npoklepávania\npoklepávanie\npoklepávaním\npoklepávať\npoklep\npoklepkať\npoklepkávaní\npoklepkávanie\npoklepkávaním\npoklepkávať\npoklepový\npokles\npoklesky\npoklesnutie\npoklesnúť\npoklesnutý\npoklesok\npoklipkávať\npoklôn\npoklona\npokloniť\npoklonkár\npoklonkársky\npoklonkovania\npoklonkovanie\npoklonkovaniu\npoklonkovať\npoklopaní\npoklopanie\npoklopaním\npoklopať\npoklopávanie\npoklopávať\npoklop\npoklopkaní\npoklopkaním\npoklopkať\npoklopkávaní\npoklopkávať\npoklopový\npoklusávať\npoklus\npokľuť\npokĺznutie\npokĺznuť\npokmásať\npokmáš\npokmáše\npokmášem\npokmášeme\npokmášeš\npokmášete\npokmášme\npokmášte\npokmášu\npokmášuc\npokmotriť\npoknísať\npokníš\npokníše\npokníšem\npokníšeme\npokníšeš\npokníšete\npokníšme\npokníšte\npokníšu\npokníšuc\npokochať\npokojamilovne\npokojamilovnosť\npokojamilovný\npokoj\npokojN\npokojne\npokojnosť\npokojný\npokojový\npokole\npokolembávať\npokolenie\npokolísať\npokolíš\npokolíše\npokolíšem\npokolíšeme\npokolíšeš\npokolíšete\npokolíšme\npokolíšte\npokolíšu\npokolíšuc\npokolujúci\npokomoliť\npokonanie\npokonaný\npokonaný\npokonať\npokonáva\npokonávačka\npokonávaj\npokonávajme\npokonávajte\npokonávajú\npokonávajúc\npokonával\npokonávala\npokonávali\npokonávalo\npokonávam\npokonávame\npokonávaš\npokonávať\npokonávate\npokonávka\npokonavý\npokončiť\npokonne\npokonný\npokopať\npokor\npokôr\nPokoradz\npokorách\npokorám\npokorami\npokora\npokorenie\npokoreniť\npokorený\npokoriteľ\npokoriť\npokormútiť\npokorne\npokornosť\npokorný\npokorovanie\npokorovať\npokorte\npokorujúci\npokorujúcou\npokosenia\npokosenie\npokosený\npokosiť\npoková\npokovanie\npokovaný\npokovať\npokovovane\npokovovania\npokovovanie\npokovovaním\npokovovaniu\npokovovaný\npokovovať\npokovujúci\npokožka\npokožkový\npokračovací\npokračovacie\npokračovacieho\npokračovacích\npokračovaciu\npokračovanie\npokračovaný\npokračovateľ\npokračovateľka\npokračovať\npokračujúca\npokračujúce\npokračujúceho\npokračujúcej\npokračujúcemu\npokračujúci\npokračujúcich\npokračujúcim\npokračujúcimi\npokračujúcom\npokračujúcou\npokračujúcu\npokradmo\npokradmý\npokradnúť\npokradomky\npokrájaný\npokrájať\npokraj\npokrásnieť\npokrčenie\npokrčením\npokrčený\npokrčiť\npokreskávať\npokreslené\npokresliť\npokresťančiť\npokresťančovať\npokrievka\npokríkať\npokrik\npokrikovanie\npokrikovaním\npokrikovať\npokritizoval\npokritizujem\npokrivene\npokrivenia\npokrivenie\npokrivením\npokrivenina\npokriveniu\npokriveno\npokrivenosť\npokrivený\npokriviť\npokrivkávanie\npokrivkávať\npokrivkovať\npokrivovať\npokrižovať\npokrkvať\npokrkvi\npokrkvime\npokrkvite\npokrm\npokrmový\npokročení\npokročenie\npokročilejší\npokročilosť\npokročilý\npokročiť\npokrok\npokrokovo\npokrokovosť\npokrokový\npokropenie\npokropený\npokropiť\npokrovce\npokrovcu\npokrovček\npokrovec\npokrsťančiť\npokrstením\npokrstený\npokrsti\npokrstime\npokrstite\npokrstiť\npokrúcajú\npokrúcajúci\npokrúcali\npokrúcať\npokrucovať\npokrušiť\npokrútenejšíN\npokrútenie\npokrútený\npokrutina\npokrutinový\npokrutiny\npokrútiť\npokrvaviť\npokrvenský\npokrvenstvo\npokrvne\npokrvnosť\npokrvný\npokrytec\npokryteckosť\npokrytecky\npokrytecký\npokrytectvo\npokrytie\npokryto\npokryť\npokrytý\nPokryváč\npokrývač\npokrývačský\npokrývačstvo\npokrývadlo\npokrývajúci\npokrývania\npokrývanie\npokrývaním\npokrývaniu\npokrývaný\npokrývať\npokrývka\npokrývočka\npokudliť\npokukať\npokukávať\npokukovanie\npokukovať\npokuľháva\npokuľhávaj\npokuľhávajme\npokuľhávajte\npokuľhávajú\npokuľhávajúc\npokuľhával\npokuľhávala\npokuľhávali\npokuľhávalo\npokuľhávam\npokuľhávame\npokuľhávaš\npokuľhávať\npokuľhávate\npokúpené\npokúpiť\npokupovanie\npokupovať\npokupujúcej\npokus\npókus\npokúsenie\npokúsiť\npokúskovať\npokusne\npokusnícky\npokusníctve\npokusníctvo\npokusník\npokusný\npokúšanie\npokúšaný\npokúšať\npokúšavý\npokušenie\npokušiteľ\npokušiteľka\npokušiteľsky\npokušiteľský\npokút\npokuta\npokútnosť\npokútny\npokutovania\npokutovanie\npokutovaním\npokutovaný\npokutovať\npokutový\npokuť\npokúvať\npokvackať\npokvákať\npokvapkať\npokvapkávať\npokváriť\npokvitne\npokvitnem\npokvitneme\npokvitneš\npokvitnete\npokvitnú\npokyckať\npokým\npokýmkoľvek\npokyn\npokynutím\npokynúť\npokýv\npokývaním\npokývať\npokýve\npokývem\npokýveme\npokýveš\npokývete\npokyvkať\npokyvkávania\npokyvkávať\npokývme\npokývnúc\npokývnuť\npokyvovať\npokývte\npokývu\npokývuc\npoľa\npolabčina\nPolabí\npolabský\npoľačiť\npolaď\npoľadovica\npoľahči\npoľahčime\npoľahčite\npoľahčiť\npoľahčovať\npoľahčujúcejšej\npoľahčujúcejší\npoľahčujúcejšia\npoľahčujúcejšie\npoľahčujúcejšieho\npoľahčujúcejšiemu\npoľahčujúcejších\npoľahčujúcejším\npoľahčujúcejšími\npoľahčujúcejšiu\npoľahčujúcejšom\npoľahčujúcejšou\npoľahčujúci\npoľahky\npoľahnuky\npoľahnutia\npoľahnutím\npoľahnúť\npoľahnutý\npoľahoba\npolahoda\npolahodiť\npolahodný\npoľahučky\npoľahunky\npólach\npoľakane\npoľakano\npoľakaný\npoľakať\npólam\npolámaný\npolámať\npolamentovať\npoľami\npolámme\npolámte\npoľana\npolapať\npolapenie\npolapených\npolapiť\npoľapotať\nPolár\npolarimeter\npolarimetria\npolarimetrický\npolariskop\npolarita\npolaritný\npolarizácia\npolarizačný\npolarizátor\npolarizátory\npolarizoval\npolarizovala\npolarizovali\npolarizovane\npolarizovania\npolarizovanie\npolarizovaniu\npolarizovanosť\npolarizovaný\npolarizovať\npolarizuje\npolarizujú\nPolárka\npolárnik\npolárny\npolarograf\npolarografe\npolarografia\npolarograficky\npolarografický\npolarografka\npolarografu\npolarografy\npolaroid\nPolaroid\nPolaroidu\npoláskanie\npoláskať\npolaškovať\npolašovanie\npolátanie\npolátať\npolatinči\npolatinčime\npolatinčite\npolatinčiť\npolatinčovať\npoľavení\npoľavenia\npoľavenie\npoľavením\npoľaveniu\npoľaviť\npoľavovať\npolaz\npolazený\npolaziť\npól\npolcesta\nPolča\npolčas\nPolču\nPolda\nPolde\npoldecák\npoldeci\npoldecový\npoldeň\npoldenný\npolder\nPoldina\nPoldinej\npoldne\npoldňový\npoldra\npoldrami\npoldre\nPoldri\npoldrom\npoldrov\npoldru\npoldruha\npoldruhahodinový\npoldruhametrový\npoldruharočný\nPoldu\nPoldy\npolegovanie\npolegovať\npolektorovať\npolemickosť\npolemicky\npolemický\npolemika\npolemik\npolemizovaná\npolemizovanej\npolemizovanie\npolemizovaním\npolemizovanou\npolemizovať\npolenie\npoleno\npoleňošiť\npolenový\npolenta\npolentový\npolený\npolepené\npolepiť\nPolepoch\npolepov\npolepšenie\npolepšeniu\npolepši\npolepšime\npolepšite\npolepšiteľný\npolepšiť\npolepšovanie\npolepšovať\npolepšovňa\npolepšovní\npoleptaní\npoleptania\npoleptanie\npoleptať\npolepy\nPolerieka\npole\npolesie\npolesný\nPolet\npoleť\npoletavý\npoletenie\npoletí\npoletia\npoletím\npoletíme\npoletíš\npoletíte\npoletovanie\npoletovaných\npoletovať\nPoletu\npoletujúci\npoletúvať\npoleva\npolevový\npolezie\npoleziem\npolezieme\npolezieš\npoleziete\npolezú\npoležať\npoležiačky\npolguľa\npolgulí\npolhárok\npolhodina\npolhodinka\npolhodinový\nPolhora\nPolhore\nPolhorou\nPolhorský\nPolhory\nPoliak\nPoliakova\nPoliakovho\nPoliakovmu\nPoliakových\npoliami\npolian\npolianka\npoliatie\npoliať\npoliaty\npolicajne\npolicajno\npolicajný\npolicajt\npolicajtský\npolica\npolícia\npolicový\npolička\npolíčko\npoličkový\npoliehať\npoliehavosť\npoliehavý\npolien\npolienko\npolienok\npolietať\npoliev\npolievací\npolievač\npolievačka\npolievanie\npolievaním\npolievaný\npolievať\npolievčka\npolievkar\npolievkár\npolievka\npolievkový\npolievočka\npoliezť\npolíhať\npolihovania\npolihovanie\npolihovať\npolihúvať\nPolichno\npolichotený\npolichotiť\npoliklinický\npoliklinika\npoliklinka\nPolina\npolinóza\npoliomyelitída\npoliovírus\npolírovať\npolis\npólista\npoliš\npolit\npolitbýr\npolitbyro\npoliť\npoliticko\npolitickoorganizačný\npolitickopropagačný\npolitickosť\npolitickováchovný\npolitickovýchovný\npolitickovýchovný\npoliticky\npolitický\npolitička\npolitičnosť\npolitičnosti\npolitikár\npolitikárčení\npolitikárčenia\npolitikárčenie\npolitikárčením\npolitikárčeniu\npolitikárči\npolitikárčia\npolitikárčila\npolitikárčilo\npolitikárčiť\npolitikárenie\npolitikárením\npolitikárske\npolitikárskych\npolitikárskym\npolitikárstvu\npolitika\npolitik\npolitikova\npolitikovej\npolitikovho\npolitikovou\npolitikum\npolitizácia\npolitizovania\npolitizovanie\npolitizovaním\npolitizovaniu\npolitizovaný\npolitizovať\npolitol\npolitológ\npolitológia\npolitologicky\npolitologický\npolitologička\npolitruk\npolitúr\npolitúrach\npolitúram\npolitúra\npolitúrovaný\npolitúrovať\npolizba\npolje\npôľka\npolka\nPoľka\npolkilový\nPolkovo\npolkový\npolkrok\npolkruh\npolkruhovitý\npolkruhový\npollinosis\npolliter\npollitrák\npollitráku\npollitrík\npollitrovka\npollitrový\npolmesačný\npolmesiac\npolmesiacovitý\npolmesiacový\npolmesiačikovitý\npolmesiačkovitý\npolmetrový\npólmi\npolmiliónový\npolmiliónový\npolminúta\npolminútach\npolminúte\npolminútový\npolminútu\npolminúty\npoľn\npoľne\npoľnica\npoľno\nPoľno\npolnoc\npolnočný\npoľnohosp\npoľnohospodár\npoľnohospodárka\npoľnohospodárke\npoľnohospodárovo\npoľnohospodársky\npoľnohospodárstvach\npoľnohospodárstvam\npoľnohospodárstvo\npoľností\npoľný\npolo\npoloautomat\npoloautomate\npoloautomaticky\npoloautomatický\npoloautomatmi\npoloautomatoch\npoloautomatov\npoloautomaty\npoloblázon\npoloblúk\npoloboh\npolobosý\npolobrat\npolobratmi\nPolo\npolodetský\npolodivý\npolodkrytý\npolodlhý\npolodrahokam\npoloelipsa\npolofeudálny\npolofinále\npologramotnosť\npologramotný\npologuľatých\npologuľa\npologulí\npologuľovitý\npoloha\npolohladných\npolohlasite\npolohlasito\npolohlasitý\npolohlasne\npolohlasno\npolohlasný\npolohlasom\npolohluchý\npolohopis\npolohopisné\npolohopisnom\npolohotový\npolohovací\npolohovaný\npolohove\npolohovo\npolohový\npolohrubý\npoloilegalite\npolointeligent\npoloironicky\npoloironický\npolojas\npolojasno\npolojasnom\npoloker\npolokmeň\npolokmenný\npolokoks\npolokoloniálny\npolokolónia\npólokošeľa\npolokošeľa\npolokošele\npolokošeli\npolokošeliach\npolokošeliam\npolokošeľou\npolokošeľu\npolokošieľ\npolokožený\npolokra\npolokrami\npolokre\npolokri\npolokrík\npolokroch\npolokrom\npolokrov\npolokru\npolokrvníci\npolokrvník\npololegálna\npololegálne\npololegálneho\npololegálnej\npololegálnemu\npololegálny\npololegálnych\npololegálnym\npololegálnymi\npololežiačky\npolo\npoľom\npólo\npolomäkka\npolomäkko\npolomäkký\npolomanželstvá\npolomastný\npolom\npolomer\npolomerový\nPolomku\nPolomky\npolomový\npolomŕtvy\npolonahlas\npolonahý\npolonaozaj\npolonáprav\npolonápravami\npolonápravy\npoloneskorých\npolonéz\npolonézach\npolonézam\npolonéza\npolonina\npolonista\npolonistický\npolonistika\npolonistka\npolónium\npolonofilstve\npolonový\npoloobčianka\npolooblačno\npolooblečený\npoloodhalená\nPoloodhalení\npoloodkrytý\npolooficiálny\npoloosamočinný\npoloos\npoloospalý\npoloostrov\npolootvorený\npolopatisticky\npolopatistický\npolopatizmus\npoloplátennou\npoloplný\npoloposmešne\npoloposmešný\npolopravda\npolopravdivo\npolopravdivý\npoloprázdny\npoloprebdenú\npoloprevádzka\npoloprevádzkach\npoloprevádzke\npoloprevádzkovo\npoloprevádzkový\npoloprevádzku\npoloprevádzky\npoloprevádzok\npolopriame\npolopriepustná\npolopriepustnej\npolopriepustnou\npolopriepustnými\nPolopriesvitné\npolopriesvitnej\npoloprodukt\npoloproduktmi\npoloprofesiál\npoloprofesionál\npoloprofesionálny\npolopúšťach\npolopúšťam\npolopúšte\npolopúšť\npolopúšťový\npoloraný\npolorozbitých\npolorozpadnutý\npolorozvitý\npolosamočinný\npolosamočinný\npolosamohláska\npolosediačky\npolosen\npolosériovej\npolosirota\npolosiť\npolos\npoloska\npoloskorý\npolosladký\npoloslepý\npolosna\npolosnách\npolosnami\npolosne\npolosnoch\npolosnom\npolosnov\npolosnu\npolosny\npolospánok\npolostrov\npolosuchý\npolosúkromný\npolosurový\npolosvet\npolosvetlo\npolosvit\npološepkom\npološepky\npološepmo\npološeptom\npološero\npološialený\npološier\npološpetom\npološtátna\npološtátne\npološtátneho\npološtátnej\npološtátnemu\npološtátnom\npološtátnou\npološtátnu\npološtátny\npološtátnych\npološtátnym\npološtátnymi\npolóta\npoloťažký\npolotekutý\npolotiem\npolotieň\npolotmavý\npolotma\npolotovar\npolotovarová\npolotovarové\npolotovarového\npolotovarovej\npolotovarovú\npolotovarových\npolotučne\npolotučný\npolotuhý\npolotvar\npolotvarmi\npolotvaroch\npolotvarom\npolotvarov\npolotvaru\npolotvary\npolotvrdý\npoloúradne\npoloúradný\npolouvarený\npoľov\nPoľov\nPoľova\npoľovačka\npoľovania\npoľovanie\npoľovať\npolovážne\npoloverejne\npoloverejný\npolovhký\npolovica\npolovičate\npolovičato\npolovičatosť\npolovičatý\npolovička\npolovične\npolovičný\npolovina\npoľovka\npolovládny\npolovlhký\npolovlhký\npolovlna\npolovlnený\npolovlnový\npoľovnícky\npoľovníctvach\npoľovníctvam\npoľovníctvo\npoľovníčka\npoľovník\npoľovný\npolovo\npolovodič\npolovodičový\npolovodiť\npolovojenský\npolovyhladnutého\npolovýrobok\npolovysoký\npólový\npolový\npolovzdelanec\npolovzdelanecký\npolovzdelanosť\npolovzdelaný\npolozabudnutý\npolozamestnanosť\npolozamestnaný\npolozbúraný\npolozdochnutou\npoloziť\npolozrelým\npolozrúcaný\npolozúfalých\npoložartom\npoložartovne\npoložartovný\npoložena\npoloženie\npoložený\npoložiť\npoložka\npolpenzia\npolposchodie\npolpriamka\npolročne\npolročník\npolročný\npolrok\npolrovina\nPoľsko\npoľsky\npoľský\npolstoročie\npolstoročnica\npolstoročný\npolstrana\npolstránka\npolstránkový\npolstránočka\npolstrovaný\npoľštín\npoľštinách\npoľštinám\npoľštinami\npoľštinár\npoľštinárka\npoľština\npôlt\nPoltár\nPoltára\nPoltári\nPoltárom\nPoltárska\npoltárske\npoltárskeho\npoltárskej\npoltárskemu\nPoltárski\nPoltárskom\nPoltársky\npoltárskych\npoltárskym\nPoltáru\nPoltava\nPoltave\nPoltavou\nPoltavský\nPoltavy\npolti\npoltime\npoltite\npoltiť\npoltón\npoltónový\npoltopánka\npoltopánočka\npoltucet\npoltucta\npoltuctový\npoľu\npoľúbiť\npolúcia\npolucionizmus\npoludňajšíN\npoludnica\npoludnie\npoludník\npoludníkový\nPoludňovom\npoludný\npoľudštenia\npoľudštenie\npoľudšti\npoľudštime\npoľudštite\npoľudštiť\npoľudšťovanie\npoľudšťovať\npoľujúci\nPoluškin\nPoluškina\npolutant\npoľutovaniahodne\npoľutovaniahodnosť\npoľutovaniahodný\npoľutovanie\npoľutovať\npoľúvať\npolverša\npolverše\npolverši\npolverš\npolveršmi\npolveršoch\npolveršom\npolveršov\npolveršový\npolveršu\npoly\npolyadenitída\npolyakrylát\npolyamid\npolyamidový\npolyandria\npolyarchia\npolyartikulárny\npolyartritída\npolybazit\npolybrómovaný\npolycentrický\npolycyklické\npolycyklických\npolydaktýlia\npolydipsia\npolyéder\npolyedrický\npolyekrán\npolyekran\npolyekranový\npolyektran\npolyémia\npolyester\npolyesterový\npolyestria\npolyetylén\npolyetylénka\npolyetylénový\npolyfág\npolyfágia\npolyfónia\npolyfonický\npolyfónny\npolyfunkčný\npolygamia\npolygamicky\npolygamický\npolygenéza\npolygenizmus\npolygénny\npolyglón\npolyglot\npolyglotickosť\npolyglotický\npolyglotnosť\npolyglotný\npolygon\npolygonálna\npolygonálne\npolygonálny\npolygón\npolygónový\npolygr\npolygraf\npolygrafia\npolygraficky\npolygrafický\npolygrafka\npolygýnia\npolyhistor\npolyhistormi\npolyhybrid\npolyhydróza\npolychlórovaný\npolychrómia\npolychrómie\npolychrómovaný\npolychronický\npolyká\npolykane\npolykarbonát\npolykarpia\npolykarpium\npolykaryocyt\npolykondenzácia\npolykondenzačnú\npolykondenzát\npolykultúra\npolymélia\npolymerácie\npolymerátorom\npolymér\npolyméri\npolyméria\npolymerický\npolymerizácia\npolymerizačný\npolymérmi\npolymérny\npolyméroch\npolymérom\npolymérov\npolymérový\npolyméru\npolyméry\npolymetalická\npolymetalické\npolymetalického\npolymetalickej\npolymetalickou\npolymetalickú\npolymetalických\npolymetalickým\npolymetalickými\npolymeter\npolymetylmetakrylát\npolymetylmetakrylátu\npolymorfia\npolymorfický\npolymorfizmus\npolymorfný\npolymyozitída\npolymyxín\npolyneuritída\npolynéz\nPolynézan\nPolynézia\npolynézsky\npolynézsky\npolynkami\npolynkoch\npolynkom\npolynkov\npolynku\npolynky\npolynok\npolynóm\npolynomický\npolynómny\npolyodoncia\npolyopia\npolypa\npolyp\npolyporóza\npolypóza\npolypragmázia\npolypragmázie\npolypragmáziou\npolypropylén\npolypropylénový\npolysacharid\npolysacharidov\npolysarcia\npolysémia\npolyserozitída\npolysinusitída\npolysomatia\npolyspermia\npolystyrén\npolystyrénovo\npolystyrénový\npolysymetria\npolysyndeton\npolysyntetický\npolytechnický\npolytechnika\npolyteista\npolyteistický\npolyteizmus\npolytokia\npolytónový\npolytop\npolytrichia\npolyuretán\npolyuretánový\npolyúria\npolyvakcína\npolyvalencia\npolyvinylacetát\npolyvinylchlorid\npolyvinylchloridový\npolyvitamínový\npomacať\npomackať\npomáčať\npomačkané\npomád\npomádach\npomádam\npomaďarčený\npomaďarči\npomaďarčime\npomaďarčite\npomaďarčiť\npomaďarčovaním\npomaďarčovať\npomáda\npomädliť\npomáhač\npomáhačka\npomáhajúci\npomáhané\npomáhaní\npomáhania\npomáhanie\npomáhateľ\npomáhateľka\npomáhať\npomachľovať\npomakať\npomalejšej\npomalejší\npomalejšia\npomalejšie\npomalejšieho\npomalejšiemu\npomalejších\npomalejším\npomalejšími\npomalejšiu\npomalejšom\npomalejšou\npomaličky\npomalilinky\npomalilinký\npomalinky\npomalinký\npomalosť\npomaľoval\npomaľovali\npomaľovane\npomaľovanie\npomaľovaním\npomaľovaniu\npomaľovaný\npomaľovať\npomalší\npomaľuje\npomaly\npomalý\npomapovaná\npomapovať\npomar\npomarančík\npomaranč\npomarančovník\npomarančovo\npomarančovočervený\npomarančovožltý\npomarančový\npomárniť\npomaródovať\npomasírovať\npomastený\npomasti\npomastime\npomastite\npomastiť\npomašírujú\npomaškrtiť\npomátane\npomátano\npomátaný\npomátať\npomätene\npomätenec\npomätenie\npomätenosť\npomätený\npomatičný\npomaturitný\npomazanie\npomazánka\npomazánku\npomazánky\npomazánok\npomazaný\npomazať\npomazávaní\npomazávať\npomedený\npomediť\npomeďovanie\npomeďovaním\npomeďovať\npomedzi\npomedzie\npomedzný\npomechriť\npomenej\npomeniť\npomenovanie\npomenovaný\npomenovať\npomenováva\npomenší\npomenúvaní\npomenúvaniu\npomenúvať\nPomerania\npomerať\npomerN\npomerenie\npomeriavať\npomeriť\npomerne\npomernosť\npomerný\npomerový\npomerte\npomery\npomesť\npomesti\npomestí\npomestia\npomestiac\npomestil\npomestila\npomestili\npomestilo\npomestím\npomestime\npomestíme\npomestíš\npomestiť\npomestite\npomestíte\npomesťme\npomesťte\npomeškať\npomešti\npomeštime\npomeštite\npomeštiť\npomfrit\npomfritka\npomfritky\npomiagať\npomiasť\npomiesiť\npomiestne\npomiestny\npomiešaniu\npomiešaný\npomiešať\npomiliónový\npomilkovať\npomilovaná\npomilovať\npomiluj\npomiluje\npomimo\npomíňaných\npomíňať\npominulý\npominuteľnosťN\npominuteľný\npominutežnosť\npominutia\npominutie\npominúť\npominutý\npomítorený\npomiznúť\npomknúť\npomkýnať\npomladiť\npomladší\npomľaskať\npomľaskávať\npomľaskúvať\npomlátiť\npomlč\npomlčanie\npomlčať\npomlčka\npomleté\npomletého\npomletie\npomletím\npomletých\npomliaždenie\npomliaždenina\npomliaždeniu\npomliaždený\npomliaždiť\npomlieť\npomĺk\npomlka\npomn\npomníček\npomníčka\npomníčkami\npomníčkoch\npomníčkom\npomníčkov\npomníčku\npomníčky\npomníchovský\npomník\npomníkový\npomnožný\npomoc\npomôcka\npomocne\npomocníc\npomocnica\npomocnice\npomocniciam\npomocnicou\npomocnicu\npomocníčka\npomocník\npomocno\npomocný\npomôcť\npomočiť\npomočovaním\npomočovať\npomodliť\npomojkať\npomokať\npomoknúť\npomológ\npomológia\npomologický\npomologička\npomoranský\nPomorí\npomotano\npomotanosť\npomotaný\npomotať\npomotať\npomotká\npomotkaj\npomotkajme\npomotkajte\npomotkajú\npomotkajúc\npomotkal\npomotkala\npomotkali\npomotkalo\npomotkám\npomotkáme\npomotkáš\npomotkať\npomotkáte\npomôž\npomôžuc\npomp\npômp\npompadúrka\npompách\npompám\npompami\npompa\nPompejami\nPompeje\npompejský\npompel\nPompelu\npompéznosť\npompézny\npompónka\npomposo\npomráčať\npomrieť\npomrkať\npomrkávať\npomrmlať\npomrmlávať\npomrnkávať\npomŕštiť\npomrúc\npomrviť\npomŕzať\npomrzievať\npomrznúť\npomrznutý\npomst\npômst\npomstách\npomstám\npomstami\npomsta\npomstený\npomstievať\npomstiteľ\npomstiteľka\npomstiť\npomstiť\npomstivo\npomstivosť\npomstivý\npomstybažný\npomstychtivo\npomstychtivosť\npomstychtivý\npomstylačný\npomstyžiadostivý\npomuč\npomúčený\npomúčiť\npomútene\npomútenosť\npomútený\npomútiť\npomutovanie\npomutovaný\npomutovať\npomýj\npomyjach\npomyjam\npomyjami\npomyje\npomyjí\npomykať\npomykávať\npomyknúť\npomykov\npomýlene\npomýlenia\npomýlenie\npomýleniu\npomýlenosť\npomýlený\npomýliť\npomysel\npomyselne\npomyselný\npomyslami\npomysle\npomyslene\npomyslenie\npomyslený\npomyslieť\npomysloch\npomyslom\npomyslov\npomyslu\npomysly\npomýšľať\npon\npoň\nponaberať\nponabíjať\nponačínať\nponačúvať\nponad\nponadávať\nponadeň\nponadhadzoval\nponadhadzovala\nponadhadzovali\nponadhadzovalo\nponadhadzovať\nponadhadzuj\nponadhadzuje\nponadhadzujem\nponadhadzujeme\nponadhadzuješ\nponadhadzujete\nponadhadzujme\nponadhadzujte\nponadhadzujú\nponadhadzujúc\nponadievať\nponadnášať\nponadväzovať\nponaháňať\nponáhľajúci\nponáhľaní\nponáhľania\nponáhľanie\nponáhľaním\nponáhľaniu\nponáhľať\nponáhlo\nponahrýzať\nponachádzať\nponachodiť\nponajprv\nponajviac\nponakláňať\npoňala\nponalepovať\nponaliepať\nponalievať\npoňali\npoňal\npoňalo\nponamáčať\nponamáhať\nponapájať\nponapchávať\nponapichovaní\nponapíjať\nponapínať\nponapĺňala\nponapĺňať\nponaprávať\nponáraní\nponáranie\nponáraním\nponárať\nponariekam\nponarovnávať\nponasádzať\nponastavovať\nponastýkať\nponášať\nponáška\nponáškový\nponaťahovať\nponatierajú\nponatierali\nponatierať\nponatierate\npoňatie\npoňať\nponatŕhať\nponatrhávať\npoňatý\nponaučenie\nponavierať\nponavliekané\nponavliekať\nponavštevoval\nponavštevovali\nponavštevovať\nponavštevujme\nponavštevujú\nponazerať\npončo\nPond\npondelkový\npondelňajší\npondelok\nponderácia\npondusa\npondus\npondusovky\npondusový\nponechanie\nponechaný\nponechať\nponechávané\nponechávania\nponechávanie\nponechávaním\nponechávať\nponemči\nponemčime\nponemčite\nponemčiť\nponemčovania\nponemčovať\nponemieť\nponenáhle\nponenáhlo\npones\nponesenie\nponesie\nponesiem\nponesieme\nponesieš\nponesiete\nponesú\nponevierač\nponevieranie\nponevierať\npoňho\nponcho\nPonický\nponičené\nponičenej\nponičenú\nponičených\nponičiť\nponiektorý\nponiesli\nponík\nponík\nponikleca\nponiklece\nponikleci\nponiklec\nponiklecmi\nponiklecoch\nponiklecom\nponiklecov\nponiklecu\nponiklované\nponiklovaného\nponiklovanej\nponiklovanie\nponiklovať\nPoniky\nponímanie\nponímaný\nponímať\nPonitrí\nPonitria\nPonitrie\nponivočiť\nponiže\nponížene\nponíženie\nponíženosť\nponížený\nponížiť\nponižovania\nponižovanie\nponižovaniu\nponižovaný\nponižovať\nponižšie\nponižší\nponižujúcejšej\nponižujúcejší\nponižujúcejšia\nponižujúcejšie\nponižujúcejšieho\nponižujúcejšiemu\nponižujúcejších\nponižujúcejším\nponižujúcejšími\nponižujúcejšiu\nponižujúcejšom\nponižujúcejšou\nponižujúci\nponižujúco\nponk\nponkom\nponkov\nponky\nponocoval\nponocovala\nponocovali\nponocovalo\nponocovaniach\nponocovanie\nponocovať\nponocuj\nponocuje\nponocujem\nponocujeme\nponocuješ\nponocujete\nponocujme\nponocujte\nponocujú\nponocujúc\nponor\nponore\nponorenia\nponorenie\nponorením\nponoreniu\nponorený\nponoriť\nponorka\nponorkový\nponormovanie\nponorný\nponorovo\nponorový\nponorte\nponôs\nponosa\nponosca\nponosiť\nponosmi\nponosovaní\nponosovania\nponosovanie\nponosovať\nponotovanie\nponovembrový\nponožka\nponožkový\nPont\nPonte\npontifex\npontifikál\npontifikálie\npontifikálna\npontifikát\npontifikátmi\npontón\npontónový\npontský\npontu\nPontus\nponuď\npoňuchala\nponuk\nponúkač\nponúkači\nponúkačov\nponúkajúce\nponúkajúci\nponúkania\nponúkanie\nponúkaním\nponúkaniu\nponúkaný\nponúkať\nponuka\nponúknuci\nponúknutie\nponúknuť\nponúknutý\nponukom\nponukovaného\nponukovať\nponukovo\nponukový\nponurejšej\nponurejší\nponurejšia\nponurejšie\nponurejšieho\nponurejšiemu\nponurejších\nponurejším\nponurejšími\nponurejšiu\nponurejšom\nponurejšou\nponurný\nponuro\nponurosť\nponurý\nponyami\nponyho\nponym\nponymu\npony\nponyoch\nponyom\nponyov\nponyovia\npoobede\npoobedie\npoobedná\npoobedňajší\npoobednú\npoobedovať\npooberať\npoobháňať\npoobhliadať\npoobhliadnuť\npoobhrýzať\npoobchodiť\npoobjavovať\npoobjavujete\npoobjímať\npoobkladám\npoobkrajovať\npoobkrúcať\npoobkúkať\npoobkukávať\npoobkukovať\npooblamovať\npooblápať\npooblepovať\npoobliekaní\npoobliekaných\npoobliekať\npoobliepali\npoobliepať\npooblieval\npooblievaná\npooblievať\npooblizovať\npoobmývať\npoobracať\npoobrezáva\npoobrezával\npoobrezávať\npoobriezať\npoobsadzovať\npoobstrihávať\npoobstrihovať\npoobšívať\npoobtáčať\npoobtína\npoobtínali\npoobtínať\npoobtĺkať\npoobtrhávať\npoobtriasať\npoobúvať\npoobväzovať\npoobzerať\npoodberať\npoodcloniť\npooddeľovať\npooddrapovať\npoodhadzovať\nPoodhalené\npoodhalenie\npoodhalí\npoodhalia\npoodhalil\npoodhalila\npoodhalili\npoodhalilo\npoodhaliť\npoodhaľovať\npoodháňať\npoodhlasovali\npoodhŕňa\npoodhŕňať\npoodhrnula\npoodhrnuli\npoodchádzali\npoodchádzať\npoodchodiť\npoodchýlené\npoodchýliť\npoodierať\npoodišiel\npoodkladať\npoodkryl\npoodkryli\npoodkrylo\npoodkryť\nPoodkryté\npoodkrýva\npoodkrývať\npoodkupovala\npoodletúvať\npoodlupovať\npoodmeriavať\npoodmetať\npoodmŕzať\npoodnášal\npoodnášali\npoodnášať\npoodnímať\npoodoberať\npoodopínať\npoodovzdávať\npoodpádať\npoodpadávať\npoodpadúvalo\npoodpadúvať\npoodpínať\npoodpisovali\npoodpisované\npoodpľúvať\npoodprávať\npoodpúšťať\npoodpytovať\npoodrábať\npoodrážal\npoodrážať\npoodrezávať\npoodrezovať\nPoodria\nPoodrie\npoodriezať\npoodstraňovať\npoodstríhať\npoodstrihovať\npoodsudzovať\npoodsúvať\npoodťahovať\npoodtínať\npoodtínate\npoodtískať\npoodtŕha\npoodtŕhali\npoodtŕhané\npoodtŕhať\npoodtrhávať\npoodväzovať\npoodvážané\npoodvážať\npoodvláčať\npoodvlačovať\npoodvolával\npoodvolávať\npoodvracať\npooháňanie\npooháňať\npoohlasovať\npoohliadať\npoohliadli\npoohliadne\npoohliadnem\npoohliadnuť\nPoohliadnutie\npoohliadnutiu\npoohliadol\npoohmatávať\npoohrievať\npoohŕňať\npoohýbať\npoohýnať\npookrádať\npookrej\npookreje\npookrejem\npookrejeme\npookreješ\npookrejete\npookrejme\npookrejte\npookrejú\npookrejúc\npookriatie\npookriať\npookrievať\npookrúcať\npool\npoolamovať\npoole\npoolmi\npooloch\npoolom\npoolov\npoolu\npooluška\npooly\npoomáľať\npoomdlievajú\npoondeno\npoondenosť\npoondený\npoondi\npoondiac\npoondiatosť\npoondiať\npoondiaty\npoondieť\npoondime\npoondite\npoopačovať\npoopaľovať\npoopeľovať\npooperačná\npooperačné\npooperačnej\npooperačnom\npooperačnou\npooperačnú\npooperačných\npoopierané\npoopisovať\npooplakovať\npoopletať\npooplietať\npoopľúvať\npooprávať\npoopravenie\npoopravený\npoopraví\npoopravia\npoopravil\npoopravila\npoopravili\npoopravilo\npoopravím\npoopraviť\npoopravovali\npoopravovanom\npoopravovať\npoopravuje\npoopravujete\npoopravujú\npoopuchať\npoopúchať\npoopúšťať\npoopytovať\npooranie\npooraný\npoorať\npoosový\npoostávať\npoostihnuteľný\npoostri\npoostrí\npoostria\npoostriac\npoostril\npoostrila\npoostrili\npoostrilo\npoostrím\npoostrime\npoostríme\npoostríš\npoostriť\npoostrite\npoostríte\npoosvetľovať\npooškierať\npooškrabovať\npooškuľovať\npoošuchovať\npootáčať\npootĺkať\npootočenie\npootočením\npootočeniu\npootočený\npootočí\npootočila\npootočili\npootočilo\npootočiť\npootriasať\npootvárané\npootvárať\npootvorenie\npootvorením\npootvorený\npootvorí\npootvoria\npootvoril\npootvorila\npootvorili\npootvorilo\npootvoríme\npootvoriť\npootvorte\npoovoniavať\npoovystierať\npoozývať\npoožívať\npopáckať\npopáčiť\npopadaný\npopadať\npopadávať\npopadnúť\npopácha\npopáchal\npopáchala\npopáchali\npopáchať\npopálenia\npopálenie\npopálením\npopálenina\npopáleniu\npopálený\npopáliť\npopamäti\npopániť\npopanšti\npopanštime\npopanštite\npopanštiť\npopanšťovať\npopapať\npopapkať\npopaprať\npopapre\npopaprem\npopapreme\npopapreš\npopaprete\npopapri\npopaprime\npopaprite\npopaprú\npopaprúc\npopára\npopáral\npopárenie\npopárený\npopáriť\npopart\npop-art\npopartista\npopartistický\npopartistka\npopartmi\npopartový\npopas\npopása\npopásaj\npopásajme\npopásajte\npopásajú\npopásajúc\npopásal\npopásala\npopásali\npopásalo\npopásam\npopásame\npopásaš\npopásať\npopásate\npopasovať\npopásť\npop\npopcorn\npope\npopelín\npopelínový\npoper\npopestovať\npopevkový\npopevok\npopchať\npopchávať\npopchnúť\npopchýnať\npopí\npopieranie\npopieraný\npopierateľný\npopierať\npopichať\npopichávať\npopichoval\npopíjaní\npopíjanie\npopíjať\npopílené\npopílení\npopíliť\npopínať\npopínavosť\npopínavý\npopísane\npopísania\npopísanie\npopísaním\npopísaný\npopísateľný\npopísať\npopis\npopiska\npopiskovať\npopisne\npopisný\npopisoval\npopisovala\npopisovali\npopisovalo\npopisovania\npopisovanie\npopisovaním\npopisovaný\npopisovať\npopisuj\npopisuje\npopisujem\npopisujeme\npopisuješ\npopisujete\npopisujme\npopisujte\npopisujú\npopisujúc\npopisujúci\npopíšu\npopíšuc\npopiť\npopkorn\npopl\npoplačú\npoplačúc\npoplach\npoplachový\npoplakať\npoplakávať\npoplašene\npoplašenosť\npoplašený\npoplašiť\npoplašný\npoplátané\npoplátať\npoplatené\npoplatenie\npoplatí\npoplatia\npoplatili\npoplatíme\npoplatiť\npoplatkový\npoplatne\npoplatnícky\npoplatníčka\npoplatník\npoplatnosť\npoplatný\npoplatok\npoplávať\npoplaz\npoplesnieť\npopleť\npopletať\npopletene\npopletenec\npopletenie\npopletenina\npopleteno\npopletenosť\npopletený\npopletie\npopletiem\npopletieme\npopletieš\npopletiete\npopleťme\npopleto\npopleťte\npopletú\npopletúc\npopliesť\npoplietla\npoplietli\npoplietlo\npoplietol\npoplnil\npopľúcnic\npopľúcnica\npopľúcnicový\npopľuť\npopľuvať\npopmusic\npopočúvať\npopod\npopodával\npopodávali\npopodčiarkovať\npopodeň\npopodkladať\npopodopierať\npopodpisoval\npopodpisovali\npopodpisované\npopodpisovať\npopodpisuje\npopodťahovať\npopoháňanie\npopoháňať\npopohládzať\npopohnané\npopohnanie\npopohnať\npopolava\npopolavieť\npopolavo\npopolavobiely\npopolavosť\npopolavý\npopolcový\npopolček\npopolčekový\npopolec\npopolievať\npopol\npopolkavo\npopolná\npopolnica\npopolnicový\npopolníček\npopolníčka\npopolníčkami\npopolníčkoch\npopolníčkom\npopolníčkov\npopolníčku\npopolníčky\npopolník\npopolovín\npopoloviny\npopolovo\npopolový\npopoľšti\npopoľštime\npopoľštite\npopoľštiť\npopoľšťovať\npopoludňajší\npopoludnie\npopoluška\nPopoluškinu\npopolvár\npopoly\npopomkýnať\npoponáhľať\npoponosovať\npoporiadku\npopôrodný\npoposedávať\npopostavovať\npopostielať\npoposýpať\npopoťahovali\npopoťahovaná\npopoťahované\npopoťahovaní\npopoťahovania\npopoťahovať\npopoťahuje\npopotískať\nPopova\npopovej\npopovský\npopových\npopozajtra\npopozajtre\npopozdravovať\npopozerať\npopracoval\npopracovala\npopracovali\npopracovalo\npopracovať\npopracuj\npopracuje\npopracujem\npopracujeme\npopracuješ\npopracujete\npopracujme\npopracujte\npopracujú\npopracujúc\nPoprad\npopradský\npopral\npopraná\npopranie\npopraskanie\npopraskaním\npopraskaný\npopráskať\npopraskať\npopraskávať\npoprášiť\npoprašok\npoprašovací\npoprašovač\npoprašovanie\npoprašovať\npoprať\npopratajúc\npopratať\npoprato\npopráv\npoprávať\npoprava\npopravčia\npopravčiu\npopravde\npopravený\npopravísk\npopravisko\npopraviť\npopravný\npopravovaný\npopravovať\npoprázdninový\npopražiť\npoprď\npoprdenie\npopreberať\npoprebíjať\npoprebúdzať\npoprečiarať\npoprečiarkovať\npoprečiťovať\npoprečitovať\npopred\npopredá\npopredajú\npopredal\npopredala\npopredali\npopredáme\npopredané\npopredať\npopredáte\npopredbehávať\npopredbehúvať\npopredeň\npopredie\npopredku\npoprednejší\npopredný\npopredstavovať\npopredu\npoprehadzované\npoprehadzovať\npopreháňať\npoprehľadávajú\npoprehľadávať\npoprehľadúvať\npoprehliadať\npoprehĺtať\npoprehltávať\npoprehrabávať\npoprehrádzať\npoprehŕňať\npoprehýbaný\npoprehýbať\npoprehybovať\npoprehýnať\npoprechádzať\npoprechodiť\npoprekladať\npoprekračovať\npoprekrúcaný\npoprekrúcať\npoprekrucovať\npoprekrýval\npoprekrývať\npoprekutávajú\npoprelamovať\npopremáhať\npopremeriavať\npopremieľať\npopremieňali\npopremieňať\npopremiérový\npopremiestňovali\npopremiestňovať\npopremiesťovať\npopremŕvať\npopremýšľať\npoprenášať\npoprenie\npoprením\npoprenými\npoprepádať\npoprepadúvať\npoprepichávať\npoprepichovaná\npoprepichovať\npoprepisovať\npoprepletania\npoprepletaný\npoprepletať\npopreplietaná\npopreplietané\npopreplietať\npoprepúšťajú\npoprepúšťal\npoprepúšťala\npoprepúšťali\npoprepúšťaní\npoprepúšťaných\npoprepúšťať\npoprepúšťate\npoprerábať\npoprerastali\npoprerastaný\npoprerastať\npoprerážať\npoprerezávať\npopresádzať\npopresadzovať\npopreskakovať\npoprestierať\npoprestriháva\npoprestupovať\npoprestýkať\npopresúvať\nPoprešívaná\npoprešívať\npopretá\npopreťahoval\npopreťahovať\npopreté\npopretej\npopretieN\npopretínať\npopretkávaný\npopretkávať\npopretŕhať\npopretrhávať\npopretrhovať\npopretriasať\npopretých\npoprevádzali\npoprevádzať\npopreväzované\npoprevážať\npoprevíjať\npoprevliekať\npoprevracaný\npoprevracať\npoprevratový\npoprevŕhať\npoprezerať\npoprezrádzať\npoprezvedá\npoprezvedaj\npoprezvedajme\npoprezvedajte\npoprezvedajú\npoprezvedajúc\npoprezvedám\npoprezvedáme\npoprezvedáš\npoprezvedáte\npoprezvedať\npoprežierať\npoprežívať\npoprežúvané\npopŕhliť\npopŕchať\npoprchávať\npopri\npopriať\npopribehávať\npopribehúvať\npopribiehať\npopribíjať\npopridávať\npoprideľovali\npoprideľovať\npoprieč\npopriečiť\npopriečky\npopriek\npoprieky\npoprieť\npoprihárať\npoprichádzať\npoprichodiť\npoprikazovať\npoprikladať\npoprikrývaní\npoprikrývať\npoprilepovať\npopriliepať\npoprinášať\npoprípade\npopripaľovať\npopripekať\npopripínať\npopripomínať\npopriprávať\npopripravovať\npopripúčať\npopristavovať\npoprišívať\npopriťahovať\npopritískať\npopritláčať\npopritĺkať\npopritom\npopriväzovať\npoprivážať\npoprizerať\npopriznávala\npopriznávať\npoprobovať\nPoproč\nPoproči\npoprosiť\npoprsie\npoprská\npoprskať\npoprskávať\npoprsnica\npoprš\npopršať\npoprúc\npoprúdi\npoprúdia\npoprúdnej\npopruh\npopruhový\npopružiť\npoprvýkrát\npopský\npopsongami\npopsong\npopsongoch\npopsongom\npopsongov\npopsongu\npopsongy\npopsuť\npopsutý\npopu\npopučiť\npopud\npopudene\npopudeno\npopudenosť\npopudený\npopudiť\npopudlivo\npopudlivosť\npopudlivý\npopudový\npopúdza\npopúdzač\npopúdzači\npopúdzaj\npopúdzajme\npopúdzajte\npopúdzajú\npopúdzajúc\npopúdzal\npopúdzala\npopúdzali\npopúdzalo\npopúdzam\npopúdzame\npopúdzaš\npopúdzať\npopúdzate\npopudzovanie\npopudzovať\npopudzujúce\npopuchávať\npopukania\npopukanie\npopukaniu\npopukaný\npopukať\npopukávať\npopuk\npopulácia\npopulacionizmus\npopulačne\npopulačný\npopularita\npopularizácia\npopularizačne\npopularizačný\npopularizátor\npopularizátorka\npopularizátormi\npopularizátorský\npopularizované\npopularizovanie\npopularizovať\npopularizujúci\npopularizujúco\npopulárnejší\npopulárno-náučný\npopulárnosť\npopulárnovedecký\npopulárno-vedecký\npopulárny\npopulista\npopulisticky\npopulistický\npopulizmus\npopustené\npopustenie\npopustenou\npopusti\npopustime\npopustite\npopustiť\npopustošiť\npopúšťacíN\npopúšťaní\npopúšťanie\npopúšťať\npoputnať\npoputoval\npoputovala\npoputovali\npoputovalo\npoputovanie\npoputovať\npoputuj\npoputuje\npoputujem\npoputujeme\npoputuješ\npoputujete\npoputujme\npoputujte\npoputujú\npoputujúc\npopýr\npopýrenie\npopýšiť\npopýtať\npor\nporábať\nporác\nporáce\nporácem\nporáceme\nporáceš\nporácete\nporácme\nporácte\nporácu\nporácuc\nPoráč\nPoráči\nPoráčskej\nporad\nporada\nporadca\nporadcovej\nporadenia\nporadenie\nporadensky\nporadenský\nporadenstvo\nporadený\nporadie\nporadiť\nporadkyňa\nporadňa\nporadník\nporadníku\nporadníky\nporadny\nporadný\nporadovaným\nporadovať\nporadovník\nporadový\nporajtuješ\nporáňať\nporanci\nporancime\nporancite\nporanenie\nporanený\nporaniť\nporantá\nporantaj\nporantajme\nporantajte\nporantajú\nporantajúc\nporantám\nporantáme\nporantáš\nporantáte\nporantať\nporapotať\nporastaný\nporastať\nporast\nporastený\nporasti\nporastime\nporastite\nporastmi\nporastovo\nporastový\nporásť\nporátanie\nporátať\nporazene\nporazenec\nporazenecky\nporazenecký\nporazenectvo\nporazenia\nporazenie\nporazený\nporaziteľný\nporaziť\nporážania\nporážanie\nporážaný\nporážať\nporážka\npór\nporcelán\nporcelánka\nporcelánkach\nporcelánkam\nporcelánkami\nporcelánke\nporcelánkou\nporcelánku\nporcelánky\nporcelánok\nporcelánovobiely\nporcelánový\nPorcelit\nporcia\nporciovane\nporciovania\nporciovanie\nporciovaniu\nporciovaný\nporciovať\npóre\nporealizačný\nporedli\nporedlo\nporednutý\nporedšie\nporeferovať\nporeformačný\nporeformný\nporekadlo\nporekvirovať\nporeparovať\nporev\nporevanie\nporevolučný\nporez\nporezané\nporezaného\nporezaní\nporezania\nporezanie\nporezať\nporéznosť\nporézny\nporezom\nporezov\nporezu\nporezy\nporfýr\nporfyrický\nporfyrín\nporfyrinúria\nporfýrom\nporiada\nporiadajú\nporiadal\nporiadala\nporiadame\nporiadania\nporiadanie\nporiadaním\nporiadaný\nporiadať\nporiadate\nporiadateľ\nporiadateľmi\nporiadený\nporiadiť\nporiadkový\nporiadkumilovne\nporiadkumilovnosť\nporiadkumilovný\nporiadnosť\nporiadnučký\nporiadny\nporiadok\nporiadokN\nporias\nporiecť\nporiečie\nporiečny\nporiedko\nporieknuť\nporichtovať\nporiománia\nporísk\nporisko\npórmi\nporn\npornočasopis\npornofilm\npornografia\npornograficky\npornografický\npornohviezd\npornohviezda\npornokazeta\nporno\npornopriemysel\npornopriemyslami\npornopriemysle\npornopriemysloch\npornopriemyslom\npornopriemyslov\npornopriemyslu\npornopriemysly\nporoba\nporobenina\nporobený\npórobetón\nPórobetónka\nPórobetónkou\nPórobetónky\npórobetónový\nporobiť\npôrod\nporodinený\nporodiť\npôrodnica\npôrodnícky\npôrodníctvach\npôrodníctvam\npôrodníctvo\npôrodníčka\npôrodník\npôrodnosť\npôrodný\npóroch\npórom\nPórom\nporosiť\nPorostov\nporota\nporotca\nporotcovský\nporotkyňa\nporotný\nporov\npórov\npórovitosť\npórovitý\npórovka\nporovnane\nporovnanie\nporovnaný\nporovnateľne\nporovnateľnosť\nporovnateľný\nporovnať\nporovnatežnosť\nporovnávací\nporovnávane\nporovnávanie\nporovnávaný\nporovnávať\npórovo\npórový\nporóza\nporozbehávať\nporozbehúvať\nporozberať\nporozbiehali\nporozbiehať\nporozbíjané\nporozbíjaných\nporozbíjanými\nporozbíjať\nporozdávané\nporozdávaných\nporozdávať\nporozdeľovaný\nporozdeľovať\nporozfukovať\nporozhadzované\nporozhadzovaných\nporozhadzovať\nporozháňať\nporozhliadať\nporozhliadnutie\nporozhliadnuť\nporozhutovať\nporozchádzať\nporozchodiť\nporozchytávať\nporozita\nporozkladať\nporozkrajovať\nporozlamoval\nporozlamovať\nporozlepovať\nporozliadať\nporozlievať\nporozliezať\nporozmetať\nporozmetávať\nporozmetúvať\nporozmýšlať\nporozmýšľať\nporoznášať\nporozoberám\nporozoberať\nporozodrávala\nporozohrávala\nporozopínať\nporozosielať\nporozostavovať\nporozostieral\nporozoznávať\nporozpadávať\nporozpadúvať\nporozpínať\nporozpisovať\nporozpletať\nporozpomínať\nporozposielať\nporozpovedať\nporozpožičiavať\nporozprávanie\nporozprávať\nporozpredať\nporozpredávať\nporozprestierať\nporozpúčať\nporozpúšťať\nporozrezávať\nporozrývať\nporozsádzať\nporozsadzovať\nporozsievajú\nporozsvecovať\nporozsýpať\nporoztáčať\nporozťahovať\nporoztierať\nporoztínať\nporoztĺkaný\nporoztĺkať\nporoztrácať\nporoztŕhal\nporoztŕhať\nporoztrháva\nporoztrhávať\nporoztriasať\nporoztrusovať\nporoztvárať\nporozumenie\nporozumenieN\nporozumený\nporozumieť\nporozutekať\nporozväzovať\nporozvážať\nporozvesovať\nporozvešiavať\nporozviešať\nporozvláčať\nporozvlačovať\nporozžíhajú\nporozžíhať\nporozžínať\nporpezit\nporridge\nportabilita\nportable\nportál\nportáli\nportálika\nportálik\nportálikmi\nportálikoch\nportálikom\nportálikov\nportáliku\nportáliky\nportálmi\nportálový\nportamento\nportatile\nportatív\nportatívny\nPortáto\nporta\nport\nportefeuille\nPorter\nPorteru\nportfej\nportfólia\nportfólio\nportfóliový\nportier\nportiéra\nportikus\nportland\nPortland\nPortlande\nPortlandom\nportlandský\nPortlandu\nportmi\nportmonka\nporto\nportorický\nPortoričan\nPortoriko\nportovaný\nportrét\nportrétik\nportrétista\nportrétistka\nportrétmi\nportrétny\nportrétovanému\nportrétovanie\nportrétovať\nportrétový\nportský\nPortugal\nPortugalčan\nPortugalčanka\nportugalčina\nPortugalec\nPortugalka\nPortugalsko\nportugalsky\nportugalský\nportviša\nportviše\nportviši\nportviš\nportvišmi\nportvišoch\nportvišom\nportvišov\nportvišu\npóru\nporúb\nPoruba\nporúbať\nporub\nporúbe\nporúbem\nporúbeme\nporúbeš\nporúbete\nPorúbka\nPorúbke\nPorúbky\nporúbme\nporubný\nPorubou\nporubový\nPorubský\nporúbte\nporúbu\nporúbuc\nporúcať\nporúčať\nporučenec\nporučenie\nporučeno\nporučenobohu\nporučenský\nporučenstvo\nporučený\nporučícky\nporučíčka\nporučík\nporučísky\nporučiteľ\nporučiteľka\nporučiteľove\nporučiteľský\nporučiť\nporučnícky\nporučníctvach\nporučníctvam\nporučníctvo\nporučníčka\nporučník\nporučníkovaním\nporučníkovať\nporúhať\nporuch\nporúchaný\nporúchať\nporucha\nporuchovo\nporuchovosť\nporuchový\nporuke\nPorúrí\nPorúria\nPorúrie\nPorúrím\nporúrskej\nporúrski\nporúrskom\nporúrsky\nporúrskych\nporušene\nporušenieN\nporušeno\nporušenosťN\nporušený\nporušiteľnosťN\nporušiteľný\nporušiť\nporušovanie\nporušovaný\nporušovateľ\nporušovateľka\nporušovať\nporušti\nporuštime\nporušťiť\nporuštite\nporuštiť\nporušťovanie\nporušťovať\nporušujúci\nporúti\nporútia\nporútim\nporútime\nporútiš\nporútite\nporuto\nporuť\nporuv\nporuvanie\nporuvať\nporuve\nporuvem\nporuveme\nporuveš\nporuvete\nporuvú\nporuvúc\nporvú\npory\npóry\nporybného\nPorybný\nporýľovať\nPorýní\nPorýnia\nPorýnie\nPorýním\nporýnska\nporýnskom\nPorýnsku\nporýnskymi\nporyť\nporytie\nporyv\nporzkrajovať\nposacovať\nposadať\nposadenie\nposadený\nposadiť\nposadkať\nposádka\nposádkový\nposadlosti\nposadnuto\nposadnutosť\nposadnúť\nposadnutý\nposádzaný\nposádzať\nposádž\nposádže\nposádžem\nposádžeme\nposádžeš\nposádžete\nposádžme\nposádžte\nposádžu\nposádžuc\nposáľať\nposánkovať\nposceľovať\nposcriptu\nposcvrkovať\nposčitovať\nposeď\nposedávaní\nPosedávanie\nposedávaním\nposedávať\nposed\nposedenie\nposediačky\nposedieť\nposedkávať\nposedúvať\nposekaný\nposekať\nposero\nposesia\nposesívny\nposesor\nposestriť\nposezónnny\nposezónny\nposch\nposchádzať\nposchnúť\nposchodie\nposchodiť\nposchodový\nposchováva\nposchovávaj\nposchovávajme\nposchovávajte\nposchovávajú\nposchovávajúc\nposchovával\nposchovávala\nposchovávali\nposchovávalo\nposchovávam\nposchovávame\nposchovávané\nposchovávaní\nposchovávaných\nposchovávaš\nposchovávať\nposchovávate\nposchytať\nposchytáva\nposchytávaj\nposchytávajme\nposchytávajte\nposchytávajú\nposchytávajúc\nposchytával\nposchytávala\nposchytávali\nposchytávalo\nposchytávam\nposchytávame\nposchytávaš\nposchytávať\nposchytávate\nposiaľ\nposiať\nposiaty\nposibilita\nposiedka\nposielanieN\nposielaný\nposielať\nposieľočka\nposievať\nposila\nposilnenieN\nposilnený\nposilni\nposilnime\nposilnite\nposilniť\nposilňovací\nposilňovač\nposilňovačka\nposilňovanie\nposilňovaný\nposilňovať\nposilňovňa\nposilňovní\nposilňujúce\nposilňujúci\nposilňujúcimi\nposilňujúcom\nposilňujúcou\nposilovňa\nposilujú\nposilujúcim\nposinie\nposipkávať\nposivene\nposivie\nposkackať\nposkákať\nposkakovaní\nposkakovanie\nposkakovaním\nposkakovať\nposkakujúci\nposkášať\nposkladania\nposkladanie\nposkladaním\nposkladaný\nposkladať\nposkočení\nposkočenie\nposkočením\nposkočiť\nposkok\nposkokovi\nposkokovia\nposkonný\nposkrajovať\nposkŕčať\nposkromne\nposkromný\nposkrúcaného\nposkrúcať\nposkrývaných\nposkrývať\nposkúpe\nposkupovaných\nposkupovať\nposkusovať\nposkúškový\nposkytávať\nposkytnutie\nposkytnúť\nposkytnutý\nposkytovanie\nposkytovanieN\nposkytovaný\nposkytovateľ\nposkytovať\nposkytovať\nposkytujúci\nposl\nposla\nposlabšie\nposladenom\nposlami\nposlancova\nposlancová\nposlancoval\nposlancovaní\nposlancovania\nposlancovaním\nposlancovať\nposlancove\nposlancovej\nposlancovho\nposlancovia\nPoslancovo\nposlancovu\nposlancovým\nposlancuje\nposlane\nposlanec\nposlanecky\nposlanecký\nposlanectvo\nposlanie\nposlankyňa\nposlaný\nposlať\nposledne\nposledno\nposlednýkrát\nposledný\nposledok\nposledom\nposledy\nposlepačky\nposlepiačky\nposli\nposlíci\nposlíček\nposlíčka\nposlíčkami\nposlíčkoch\nposlíčkom\nposlíčkov\nposlíčkovi\nposlíčkovia\nposlík\nposliň\nposlinenie\nposlinením\nposlineniu\nposliní\nposlinia\nposliniac\nposlinil\nposlinila\nposlinili\nposlinilo\nposliním\nposliníme\nposliníš\nposliniť\nposliníte\nposliňme\nposlintaný\nposlintať\nposliňte\nposlň\nposloch\nposlom\nposlov\nposlova\nPoslovej\nposlovenčená\nposlovenčenie\nposlovenči\nposlovenčime\nposlovenčite\nposlovenčiť\nposlovenčovaní\nposlovenčovať\nposlovi\nposlovia\nposlovo\nposľubovať\nposlúh\nposluha\nposluhovač\nposluhovačka\nposluhovanie\nposluhovať\nposluhujúci\nposluhujúcich\nPosluch\nposlucháč\nposlucháčka\nposlucháčsky\nposlucháčstvach\nposlucháčstvam\nposlucháčstvo\nposlucháreň\nposluchárňach\nposluchárňam\nposlúchať\nposlúchnuť\nPosluchom\nposluchová\nPosluchovej\nposluchu\nposlušne\nPoslušno\nposlušnosť\nposlušnosťN\nposlušný\nposlúžiť\nposlz\nposmaltovaný\nposmechár\nposmechársky\nposmech\nposmechovať\nposmelení\nposmeliť\nposmeľovaním\nposmeľovať\nposmeľujúcejšej\nposmeľujúcejší\nposmeľujúcejšia\nposmeľujúcejšie\nposmeľujúcejšieho\nposmeľujúcejšiemu\nposmeľujúcejších\nposmeľujúcejším\nposmeľujúcejšími\nposmeľujúcejšiu\nposmeľujúcejšom\nposmeľujúcejšou\nposmeľujúci\nposmeľujúco\nposmeškár\nposmeškáriť\nposmeškársky\nposmeškárstvach\nposmeškárstvam\nposmeškárstvo\nposmeškovania\nposmeškovať\nposmešne\nposmešnica\nposmešník\nposmešnosť\nposmešný\nposmešok\nposmievač\nposmievačik\nposmieváčik\nposmievačka\nposmievačne\nposmievačnosť\nposmievačný\nposmievačský\nposmievačstvo\nposmievanie\nposmievaný\nposmievať\nposmrdkávať\nposmrkávať\nposmrtne\nposmrtnosť\nposmrtný\nposmutnieť\nposnažiť\nposnímať\nposnívať\nposnul\nposnula\nPosobášne\npôsobenie\npôsobený\npôsobiaci\npôsobísk\npôsobisko\npôsobiť\npôsobivo\npôsobivosť\npôsobivý\npôsobnosť\nposoľ\nposol\nposolenie\nposolený\nposolí\nposolia\nposoliac\nposolil\nposolila\nposolili\nposolilo\nposolím\nposolíme\nposolíš\nposoliť\nposolíte\nposoľme\nposolstvo\nposoľte\nposortírovať\nposošiť\nposotenie\nposotiť\nPosp\npospadávať\npospadúvať\npospájane\npospájanie\npospájaním\npospájaný\npospájať\npospať\npospávať\npospevovanie\npospevovať\npospi\npospiačky\npospiatky\npospime\npospínať\npospinkať\npospisovať\npospite\nposplácať\nPospletané\npospletaných\npospletať\npospletávať\nposplietané\nposplietaní\nposplietaných\nposplietať\nposplývať\npospolitosť\npospolitý\npospolný\npospolu\npospomínať\nposporiť\npospratáva\npospratávaj\npospratávajme\npospratávajte\npospratávajú\npospratávajúc\npospratával\npospratávala\npospratávali\npospratávalo\npospratávam\npospratávame\npospratávaš\npospratávať\npospratávate\npospratúvať\nposprávať\npospravovať\nposprobúvať\npospúšťať\nposputnávať\npospytovať\nposran\nposranec\nposraný\nposrať\nposrať\nposratý\nposrieniť\nposrih\nposrkať\nposrkávať\nposrkovať\npost\npôsta\npostačiť\npostačovať\npostačujúci\npostačujúco\nposťahovať\npostal\npostali\npostament\npostaň\npostarania\npostaranie\npostaraný\npostarať\npostarší\npostať\npostaťami\npostate\npostati\npostatí\npostatiach\npostatiam\npostátie\npostaťou\npostáť\npostávač\npostávaní\npostávania\npostavanie\npostávanie\npostávaním\npostavaný\npostavať\npostávať\npostava\npostavene\npostavenie\npostavený\npostavička\npostaviteľný\npostaviť\npostavovať\nposťažovanie\nposťažovaniu\nposťažovať\npost\npôst\npostdatované\npostekať\npostel\nposteľ\nposteľný\nposteľovina\nposteľový\npostembryonálny\nposteň\npostenať\npostenávať\npostene\npostené\npostenem\nposteneme\nposteneš\npostenete\npostení\npostenia\npostenie\npostením\npostenkať\npostenkávať\nposteňme\nposteňte\npostenú\npostenúc\npostera\nposter\nposteri\nposterion\nposteriorita\nPosterizácia\nposterizácie\npostgraduál\npostgraduáli\npostgraduálmi\npostgraduálny\npostgraduant\nposthumný\nposthumum\nposthumus\nposti\npostiaci\npostiela\npostielaj\npostielajme\npostielajte\npostielajú\npostielajúc\npostielal\npostielala\npostielali\npostielalo\npostielam\npostielame\npostielaš\npostielať\npostielate\npostieľať\npostieľka\npostieľočka\npostierať\npostih\npostihnutejšíNF\npostihnuteľný\npostihnutie\npostihnúť\npostihnutý\npostihovania\npostihovanie\npostihovaním\npostihovaniu\npostihovaný\npostihovať\npostihovo\npostihový\npostilión\nPostiliónu\npostime\npostínané\npostínať\npostindustrializmus\npostískať\npostite\npostiť\npostkomunista\npostkomunistický\npostláčaní\npostláčať\npostlať\npostlieť\npostĺkať\npostludium\npostlúdium\npostmenštruačný\npostmi\npôstmi\npostmoderien\npostmoderna\npostmodernista\npostmodernisticky\npostmodernistický\npostmodernizmus\npostmoderný\npostmortálny\npostnatálny\npôstny\npostojačky\npostoj\npostonať\npostonávať\npostonkať\npostonkávať\npostoperačný\npostpenitenciárny\npostponovať\npostpozícia\npostpozitívny\npostprodukcia\npostprodukční\npostproduktívny\npostpuberta\npostpubertálny\npostpubescencia\npostrácaných\npostrácať\npostráda\npostrádaj\npostrádajme\npostrádajte\npostrádajú\npostrádajúc\npostrádal\npostrádala\npostrádali\npostrádalo\npostrádam\npostrádame\npostrádaš\npostrádať\npostrádate\npostrádateľný\npostrach\npostranne\npostrannica\npostranný\npostrapatený\npostrapatiť\npostrašením\npostrašený\npostrašiť\npostrážiť\npostrčenia\npostrčenie\npostrčiť\npostrečkovať\npostreh\npostrehnuteľný\nPostrehnutie\npostrehnúť\npostrehovanie\npostrehovať\npostrehový\npostrek\npostreknúť\npostrekovací\npostrekovač\npostrekovačka\npostrekovačovi\npostrekovanie\npostrekovať\npostrekový\npostrelenie\npostreleniu\npostrelený\npostreliť\npostretať\npostretávať\npostretnutí\npostretnúť\npostŕhané\npostŕhať\npostrhávať\npostrhovanie\npostrhovať\npostrhúva\npostrhúval\npostrhúvať\npostriasať\npostriebrenie\npostriebrený\npostriebriť\npostriebrovanie\npostriebrovať\npostrieda\npostriehnuť\npostriekaná\npostriekané\npostriekania\npostriekanie\npostriekaním\npostriekať\npostriekavať\npostrieľať\npostrieť\npostriezť\npostriežka\npostrihané\npostrihaného\npostrihať\npostrihovaní\npostrihovanie\npostrihovať\npostrkať\npostrkávať\npostrkom\npostrkované\npostrkovanie\npostrkovať\npostrkujúci\npostroj\npostrojový\npostrúhať\npostruhávanie\npostruhávať\npostruheň\npostruhňa\npostruhník\npostruhňoch\npostruhňom\npostruhňov\npostruhňu\npostružník\npostscript\npostscriptový\npostskript\npostskrípt\npostskriptum\npostsocialistický\npostsovietskeho\npostsynchrón\nposttotalitný\nposttraumatického\nposttraumatickú\nposttraumatickým\npostuká\npostulácia\npostulát\npostulátmi\npostulovanie\npostulovaním\npostulovať\npostúpanú\npostúpať\npostup\npostupca\npostupcom\npostupcovi\npostupcu\npostúpene\npostúpenie\npostúpený\nPostupim\nPostupimčan\npostupimský\npostupiteľ\npostúpiť\npostupne\npostupníci\npostupník\npostupníka\npostupníkmi\npostupníkoch\npostupníkom\npostupníkov\npostupníkovi\npostupnosť\npostupný\npostupované\npostupovaného\npostupovaní\npostupovania\npostupovanie\npostupovaním\npostupovaniu\npostupovaných\npostupovať\npostupový\npostupujúci\npostvárať\npostvulkanický\npostýkať\nposúdenie\nposúdený\nposúdiť\nposudkový\nposudok\nposudzovanie\nposudzovaný\nposudzovateľ\nposudzovateľka\nposudzovať\nposudzujúci\nposúcha\nposúch\nposúkať\nposukovacích\nposun\nposunkovať\nposunkový\nposunok\nposunovací\nposunovač\nposunovaní\nposunovanie\nposunovateľnosť\nposunovateľný\nposunovať\nposunový\nposunujúci\nposunuteľný\nposunutia\nposunutie\nposunutím\nposunutiu\nposunuto\nposunúť\nposunutý\nposúrení\nposúrenia\nposúrenie\nposúriť\nposúšik\nposušiť\nposúvací\nposúvač\nposúvadlá\nposúvajúci\nposúvanie\nposúvaný\nposúvateľný\nposúvať\nposuv\nposuve\nposuvku\nposuvky\nposuvne\nposuvník\nposúvnuť\nposuvný\nposväcovaná\nposväcované\nposväcovaní\nposväcovaním\nposväcovať\nposvätenie\nposvätený\nposvätiť\nposvätna\nposvätne\nposvätnosť\nposvätný\nposviacať\nposviacka\nposvietenie\nposvietiť\nposýpací\nposýpač\nposýpače\nposýpaču\nposypal\nposypala\nposypali\nposypalo\nposýpaní\nposýpania\nposypanie\nposýpanie\nposýpaním\nposypaný\nposypať\nposýpať\nposypávať\nposyp\nposypem\nposypeme\nposypeš\nposypete\nposýpka\nposypme\nposypový\nposypte\nposypú\nposypúc\nPoša\npošahaný\npošarapatiť\npošedivievať\npošepci\npošepcime\npošepcite\npošepkať\npošepkávať\npošepky\npošepnúť\npošeptať\npošeptávať\npoševeliť\npoši\npošib\npošibaj\npošibajme\npošibajte\npošibajúc\npošibanie\npošibať\npošibávať\npošibkať\npošibú\npošibúc\npošije\npošijem\npošijeme\npošiješ\npošijete\npošijú\npošijúc\npošikovať\npošil\npošila\npošili\npošilo\npošime\npošimrať\npošinovať\npošinúť\npošír\npošitá\npošite\npošiť\npošívať\npoškabček\npoškľabok\npoškľaboval\npoškľabovať\npošklb\npošklbať\npošklbávať\npošklbkať\npošklbkávať\npošklbnúť\npošklbú\npošklbúc\npoškodenec\npoškodenie\npoškodený\npoškodiť\npoškodzovanie\npoškodzovaný\npoškodzovateľ\npoškodzovateľa\npoškodzovateľmi\npoškodzovateľom\npoškodzovateľov\npoškodzovať\npoškolský\npoškrab\npoškrabanie\npoškrabaniu\npoškrabaný\npoškrabať\npoškrabček\npoškrabčekovi\npoškrabčekovia\npoškrabkať\npoškrabkávať\npoškrabkovi\npoškrabkovia\npoškrabok\npoškriab\npoškriabanie\npoškriabaním\npoškriabaniu\npoškriabaný\npoškriabať\npoškriabe\npoškriabem\npoškriabeme\npoškriabeš\npoškriabete\npoškriabme\npoškriabte\npoškriabu\npoškriabuc\npoškriepiť\npoškrtáme\npoškrtať\npoškrtenie\npoškrtiť\nPoškuľovanie\npoškuľovať\npoškvrčte\npoškvŕn\npoškvrna\npoškvrnenia\npoškvrnenie\npoškvrnený\npoškvrnite\npoškvrniť\npoškvrňovať\npošľahať\npošliapanie\npošliapaný\npošliapať\npošliapavania\npošliapavanie\npošliapavaním\npošliapavaniu\npošliapavaný\npošliapavať\npošmárať\npošmatlať\npošmátrať\npošmrdkávať\npošmúrnosť\npošmúrny\npošmýkať\npošmyknutie\npošmyknutím\npošmyknúť\npošmykovať\npošomrať\npošomrávať\npošomre\npošomrem\npošomreme\npošomreš\npošomrete\npošomri\npošomrime\npošomrite\npošomrú\npošomrúc\nPošou\npošpásovať\npošpatiť\npošpinenia\npošpinenie\npošpinením\npošpineniu\npošpinený\npošpiniť\npošpintať\npošpliechať\npošramotenie\npošramotený\npošramotiť\npošt\npôšt\npoštár\npoštárka\npoštársky\npošťasti\npošťastime\npošťastite\npošťastiť\npoštátnenia\npoštátnenie\npoštátnením\npoštátneniu\npoštátnený\npoštátniť\npoštátňovanie\npoštátňovať\npošťať\npošta\npoštekávať\npošteklením\npoštekliť\npoštiepa\npoštiepaj\npoštiepajme\npoštiepajte\npoštiepajú\npoštiepajúc\npoštiepam\npoštiepame\npoštiepaš\npoštiepate\npoštiepať\npoštípaj\npoštípajme\npoštípajte\npoštípajúc\npoštípané\npoštípanie\npoštípať\npoštipkať\npoštipkávať\npoštipkovať\npoštipovať\npoštopkať\npoštovňami\npoštovne\npoštovné\npoštovni\npoštovniach\npoštovníctva\npoštovníctve\npoštovníctvom\npoštovný\npoštovo\npoštovskej\npoštový\npoštrkávať\npoštrkovať\npoštrngávať\npoštucnúť\npoštuchať\npoštuchávať\npoštuchnúť\npoštúrať\npoštvať\npoštvi\npoštvime\npoštvite\npoštvornožky\npošuchá\npošuchaj\npošuchajme\npošuchajte\npošuchajú\npošuchajúc\npošuchal\npošuchala\npošuchali\npošuchalo\npošuchám\npošucháme\npošucháš\npošuchať\npošucháte\npošúchať\npošuchávať\npošuchnúť\npošuchovať\npošúľať\nPošumavský\npošumievať\npošupnúť\npošuškať\nPošuškávanie\npošuškávať\npošušky\npošušlávať\npošva\npošvička\npošvovitý\npošvový\npotácania\npotácanie\npotácať\npotácavo\npotácavý\npotackávať\nPotáč\nPotáča\npotáčať\nPotáčom\npotade\npotadeto\npotadiaľ\npotadiaľto\npoťahať\npoťah\npoťahovačka\npoťahovaná\npoťahované\npoťahovaného\npoťahovanej\npoťahovaní\npoťahovanie\npoťahovaním\npoťahovaných\npoťahovať\npotahovina\npoťahovina\npoťahový\npotaj\npotajme\npotajmo\npotajmý\npotajne\npotajomky\npotajomne\npotamológia\npotamoplanktón\npotancovať\nPotáp\npotápač\npotápačka\npotápačský\npotápačstvo\npotápaní\npotápania\npotápanie\nPotápaním\npotápaniu\npotápať\npoťapiť\npoťapkať\npoťapkávať\npotápka\npotáraný\npotárať\npotaš\npoťažkať\npoťažkávať\npoťažne\npot\npoteč\npotečie\npotečú\npotech\npotechách\npotechám\npotechami\npotecha\npotejme\npotektorovať\npotemkinovský\npotemnelé\npotemnenom\npotemnených\npotemnieť\npotemnievať\npotemný\npotenciál\npotenciálmi\npotenciálne\npotenciálnosť\npotenciálny\npotenciálový\npotencia\npotenciometer\npotenciometrický\npotencionálne\npotencionálnosť\npotencionálny\npotencovaný\npotenčný\npotení\npotenie\npotením\npoteniu\npotentát\npotentáti\npotentátka\npotentátmi\npotentátnik\npotentátovi\npotentátsky\npotentný\npoteraz\npoter\npoteri\npotešene\npotešenie\npotešený\npotešiteľ\npotešiteľa\npotešiteľne\npotešiteľný\npotešiť\npotešovanie\npotešovateľ\npotešovať\npotešujúca\npotešujúce\npotešujúci\npotiaci\npotiahnutia\npotiahnutie\npotiahnutím\npotiahnuto\npotiahnuť\npotiahnutý\npotiaľ\npotiaľto\npotiekli\npotieraná\npotierané\npotieraní\npotierania\npotieranie\npotieraním\npotieraniu\npotierať\npotichšie\npotichu\npotichučky\npotichúčky\npôtikať\npotískanie\npotískať\npotisnutí\npotisnutie\npotisnúť\npotíšku\npotiť\npotivo\npotivosť\npotivý\nPotkali\npotkan\npotkanča\npotkančiat\npotkani\npotkaní\npotkaňom\npotkaňou\npotkanovi\nPotknutí\npotknutia\npotknutie\npotknúť\npotkýnanie\npotkýnať\npotkýnavý\npotláčania\npotláčanie\npotláčaním\npotláčaniu\npotláčaný\npotláčateľ\npotláčať\npotlač\npotlačene\npotlačenie\npotlačený\npotlačiť\npotlačovania\npotlačovanie\npotlačovaním\npotlačovaniu\npotlačovaný\npotlačovateľ\npotlačovateľka\npotlačovať\npotľapkanie\npotľapkať\npotľapkávania\npotľapkávanie\npotľapkávať\npotľapnúť\npotĺcť\npotlesk\npotĺkanie\npotĺkať\npotmavieť\npotme\npotmehúd\npotmehúdka\npotmehúdsky\npotmehúdsky\npotmehúdstvach\npotmehúdstvam\npotmehúdstvo\npotmi\npotne\npotničiek\npotničkky\npotničky\npotník\npotný\nPotocký\npotočený\npotôčik\npotočiť\npotôčka\npotôčkami\npotôčkoch\npotôčkom\npotôčkov\nPotočku\npotôčku\npotôčky\nPotôčky\npotočnica\npotočník\npotočný\npotokanie\npotokať\npotok\npotománia\npotomci\npotomkovi\npotomok\npotomok\npotomove\npotomstvo\nPotôň\nPotôni\npotôp\npotopách\npotopám\npotopami\npotopa\npotopenia\npotopenie\npotopením\npotopeniu\npotopený\npotopiť\nPôtor\nPôtori\npotos\npotpourri\npotrafiť\npotraktovať\npotrápiť\npotrasenia\npotrasenie\npotraseniu\npotrať\npotrat\npotratený\npotratí\npotratia\npotratiac\npotratil\npotratila\npotratili\npotratilo\npotratím\npotratíme\npotratíš\npotratiť\npotratíte\npotraťme\npotratmi\npotratová\npotratové\npotratového\npotraťte\npotrav\npotráv\npotravách\npotravám\npotravami\npotrava\npotrávi\npotravin\npotravinár\npotravinársky\npotravinárstvach\npotravinárstvam\npotravinárstvo\npotravina\npotravinovo\npotravinový\npotravní\npotravných\npotravový\npotreba\npotrebne\npotrebnosťN\npotrebný\npotrebovať\npotrebujúci\npotrel\npotrela\npotreli\npotrelo\npotrenie\npotrený\npotrepať\npotrepávať\npotresci\npotrescime\npotrescite\npotrestanie\npotrestaný\npotrestať\npotretie\npotretý\npotrhaný\npotrhať\npotŕhať\npotrhávať\npotrhnúť\npotrhovať\npotri\npotriasaní\npotriasanie\npotriasaním\npotriasať\npotriasť\npotrie\npotriediť\npotriem\npotrieme\npotrieskať\npotrieš\npotrieť\npotriete\npotrime\npotrimiskár\npotrimiskársky\npotrite\npotrkanie\npotrkať\npotrkoc\npotrkoce\npotrkocem\npotrkoceme\npotrkoceš\npotrkocete\npotrkocme\npotrkocte\npotrkocú\npotrkocúc\npotrkotajúc\npotrkotať\npotrkovať\npotrm\npotrojný\npotroviť\npotrp\npotrpieť\npotrtká\npotrtkaj\npotrtkajme\npotrtkajte\npotrtkajú\npotrtkajúc\npotrtkal\npotrtkala\npotrtkali\npotrtkalo\npotrtkám\npotrtkáme\npotrtkáš\npotrtkať\npotrtkáte\npotrú\npotrubár\npotrubársky\npotrubie\npotrubný\npotrúc\npotrunčený\npotrundžený\npotrundži\npotrundžime\npotrundžite\npotrundžiť\npotrúsiť\npotrvať\npotsdam\npotto\npotucha\npotuchlina\npotuchnúť\npotuchnutý\npoťukávať\npotúla\npotuľkať\npotulka\npotulný\npotulovanie\npotulovať\npotúp\npotupa\npotupenie\npotupený\npotupiť\npotupne\npotupnosť\npotupný\npotupovanie\npotupovaný\npotupovať\npotupujúcej\npoturčenec\npoturči\npoturčime\npoturčite\npoturčiť\npoturčovať\npotuteľne\npotuteľník\npotuteľnosť\npotuteľný\npotutvárny\npotúžený\npotúžiť\npotužovaní\npotužovať\npotvárať\npotvôr\npotvora\npotvorčík\npotvorení\nPotvorenie\npotvoriť\npotvorka\npotvorný\npotvorsky\npotvorský\npotvorte\npotvrdene\npotvrdenie\npotvrdenka\npotvrdený\npotvrdiť\npotvrdzovacíN\npotvrdzovania\npotvrdzovanie\npotvrdzovaním\npotvrdzovaniu\npotvrdzovaný\npotvrdzovať\npotvrdzujúci\npotýčka\npotýka\npotýkajú\npotýkal\npotýkala\npotýkali\npotýkalo\npotýkame\npotykania\npotykanie\npotýkanie\npotykaniu\npotýkať\npotykať\npotýrať\npoubíjať\npoubližovať\npoubúdať\npouctiť\npoúčania\npoúčanie\npoúčaniu\npoúčať\npoúčavo\npoúčavý\npoučenie\npoučený\npoučiť\npoučka\npoučne\npoučnosť\npoučný\npoučovaní\npoučovanie\npoučovaním\npoučovaniu\npoučovateľský\npoučovať\npoučujúci\npoudávať\npoudierať\npouhládzať\npoukázanec\npoukázania\npoukázanie\npoukázaním\npoukázaniu\npoukázaný\npoukázať\npoukaz\npoukazca\npoukazovacie\npoukazovania\npoukazovanie\npoukazovaním\npoukazovaniu\npoukazovaný\npoukazovať\npoukazujúcich\npoukáž\npoukáže\npoukážem\npoukážeme\npoukážeš\npoukážete\npoukážka\npoukážme\npoukážte\npoukážu\npoukážuc\npoukladané\npoukladanom\npoukladaných\npoukladať\npoukrývaný\npoukrývať\npouličný\npouliepať\npoumierať\npoumiesťňujú\npoumývať\npound\npoundoch\npoundov\npoupchávať\npoupozorňovať\npoupratovanie\npoupratovať\npouprávať\npoúrazové\npoúrazového\npoúrazovej\npoúrazových\npoúrazovým\npourážať\npourgovať\npourovnávať\npourparler\npousádzať\npousadzovanie\npousadzovať\npouschýnať\npousilovať\npousmej\npousmeje\npousmejem\npousmejeme\npousmeješ\npousmejete\npousmejme\npousmejte\npousmejú\npousmejúc\npousmial\npousmiala\npousmiali\npousmialo\npousmiať\npousmiatie\npousmieva\npousmievali\npousporadovať\npoustielať\npousychať\npouťahovať\npoutekať\npoutierať\npoutínať\npoutrácať\npouvádzať\npouväzovať\npouvažovať\npouverejňovať\npouvoir\npouzavierať\npouznášať\npouž\npoužiteľne\npoužiteľnejší\npoužiteľnosť\npoužiteľný\npoužitie\npoužito\npoužiť\npoužitý\npoužívajúci\npoužívane\npoužívanejší\npouživanie\npoužívanieN\npoužívaný\npouživať\npoužívateľ\npoužívateľka\npoužívateľnosť\npoužívateľný\npoužívateľov\npoužívateľsky\npoužívateľský\npoužívať\npôv\npôvab\npôvabne\npôvabnosť\npôvabný\npoväčšine\npovädá\npovädať\npovadiť\npovädnúť\npovaha\npovahopis\npovahove\npovahovo\npovahový\npovál\npovaľač\npovaľačka\npovaľačský\npovaľačstvo\npováľané\npováľaním\nPováľaných\npováľať\npovala\npovalcovať\nPovalená\npovaleniu\npovalina\npovaliť\npovaľkať\npovaľkávať\npovaľkovať\npovalnica\npovaľovanie\npovaľovať\npovalový\npovar\npovariť\npovarovať\npovarte\nPovažan\nPovažanova\nPovažany\npováženie\npováženou\nPovažie\npovážiť\npovážlivo\npovážlivosť\npovážlivý\npovážny\npovažovanie\npovažovaný\npovažovať\npovažskobystrický\npovažský\npovažujúci\npovbíjať\npovďačne\npovďačnosť\npovďačný\npovďak\npovdzudzujúci\npovečerať\npoveď\npovedačka\npovedaj\npovedaním\npovedaný\npovedať\npovedel\npovedela\npovedená\npovedené\npovedení\npovedenie\npovedením\nPovedený\npovedie\npovediem\npovedieme\npovedieš\npovediete\npovedľa\npovedome\npovedomejšej\npovedomejší\npovedomejšia\npovedomejšie\npovedomejšieho\npovedomejšiemu\npovedomejších\npovedomejším\npovedomejšími\npovedomejšiu\npovedomejšom\npovedomejšou\npovedomie\npovedomosti\npovedomý\npovedú\npovedzme\npovej\npovel\npovele\npovelenia\npovelmi\npovelový\npover\npovera\npoverčivo\npoverčivosť\npoverčivý\npoverenec\npoverenícky\npovereníctvach\npovereníctvam\npovereníctvo\npovereníčka\npoverenie\npovereník\npoverený\npoverie\npoveriť\npoverovací\npoverovania\npoverovanie\npoverovaním\npoverovaný\npoverovateľ\npoverovateľka\npoverovať\npoverte\npovesenie\npovesien\npovesiť\npovesno\npovesť\npovestne\npovestnejšíF\npovestný\npovešať\npoveternosť\npoveternostný\npoveterný\npovetrie\npovetroň\npovez\npoveziem\npovezieme\npovezieš\npoveziete\npovezie\npovezú\npovháňanie\npovchádzať\npovchodiť\npovi\npovianočný\npoviať\npoviazal\npoviazala\npoviazali\npoviazalo\npoviazaný\npoviazať\npoviaž\npoviaže\npoviažem\npoviažeme\npoviažeš\npoviažete\npoviažme\npoviažte\npoviažu\npoviažuc\npoviedkar\npoviedkár\npoviedkarka\npoviedka\npoviedkový\npovier\npoviesť\npovievať\npovíchric\npovíchrica\npovíjadlo\npovijak\npovijan\npovijane\npovijanu\npovijany\npovíjať\npovije\npovijem\npovijeme\npoviješ\npovijete\npovijú\npovijúc\npovime\npovinne\npovinnosť\npovinný\npovite\npoviť\npovito\npovitý\npovkladať\npovkrádať\npovláčené\npovláčiť\npovlak\npovlakovina\npovlakový\npovlažiť\npovlečenie\npovliecť\npovliekaní\npovliekanie\npovliekaných\npovliekať\npovnášať\npôvod\npôvodca\npôvodcovské\npovodeň\npovodie\npôvodina\npovodiť\npôvodkyňa\npôvodne\npôvodnosť\npovodňovo\npovodňový\npôvodný\npovojník\npovojnový\npovoĺ\npovolanec\npovolanie\npovolanosť\npovolaný\npovolať\npovolávací\npovolávané\npovolávaní\npovolávania\npovolávanie\npovolávaním\npovolávaniu\npovolávať\npovole\npovolebný\npovolene\npovolenie\npovoleno\npovolený\npovoli\npovoliť\npovoľkať\npovoľkávať\npovoľne\npovoľnosť\npovoľný\npovoľovací\npovoľovania\npovoľovanie\npovolovanie\npovoľovaním\nPovoľovaniu\npovoľovaný\npovoľovať\npovoľujúci\nPovolží\nPovolžie\nPovolžská\npovolžského\npovolžskom\npovolžských\npovoz\npovoziť\npovoznícky\npovozníctvach\npovozníctvam\npovozníctvo\npovozník\npovpichávať\npovpichovať\npovpíjať\npovpisovať\npovpletať\npovracať\npovráskať\npovrav\npovrávať\npovravieť\npovrávka\npovraz\npovrazce\npovrazcu\npovrazec\npovrazisko\npovrázkovitý\npovraznícky\npovrazníctvach\npovrazníctvam\npovrazníctvo\npovrazník\npovrázok\npovrazolezec\npovrazolezecký\npovrazolezectvo\npovrazolezkyňa\npovrazovitý\npovrazový\npovrážať\npovraždených\npovraždi\npovraždime\npovraždite\npovraždiť\npovražtek\npovrážtek\npovrč\npovrčia\npovrezávať\npovrhnúť\npovrch\npovrchne\npovrchnosť\npovrchný\npovrchove\npovrchovo\npovrchový\npovriesel\npovrieslo\npovrieť\npovrť\npovŕta\npovrtieť\npovrúc\npovstalec\npovstalecký\npovstalkyňa\npovstanie\npovstať\npovstávajúcich\npovstávaním\npovstávať\npovstupovať\npovstupový\npovsúvať\npovsýpať\npovšimnutiahodný\npovšimnutieN\npovšimnuto\npovšimnúť\npovšimnutý\npovškrabovať\npovťahovať\npovtláčať\npovtĺkať\npovybavovať\npovybehávať\npovybehovať\npovybehúvať\npovyberaný\npovyberať\npovybiehať\npovybíja\npovybíjaj\npovybíjajme\npovybíjajte\npovybíjajú\npovybíjajúc\npovybíjal\npovybíjala\npovybíjali\nPovybíjali\npovybíjalo\npovybíjam\npovybíjame\npovybíjanými\npovybíjaš\npovybíjať\npovybíjate\npovyčíňať\npovyčitovať\npovydávať\npovydúvať\npovyhadzované\npovyhadzovať\npovyháňať\npovyhládzať\npovyhrabávať\npovyhrabúvať\npovyhrávať\npovyhŕňať\npovyhrýzať\npovyhutovať\npovyhýnať\npovychádzať\npovychodiť\nPovyk\npovykáľal\npovykášal\npovykladaný\npovykladať\npovykonávať\npovykrajovať\npovykrúcané\npovykrúcať\npovyku\npovylamovať\npovylepovať\npovyletovať\npovyletúvať\npovyliepať\npovylievať\npovyliezať\npovylizovať\npovylupoval\npovylupovaných\nPovymetané\npovymetať\npovymieňať\npovymierať\npovymýšľaných\npovymýšľať\npovymývať\npovynachádzať\npovynášať\npovynechávať\npovypadávať\npovypadúvať\npovypaľovať\npovypíjať\npovypínané\npovypínať\npovypisovať\npovyplácať\npovyplachovať\npovyplakovať\npovypĺňať\npovyprávať\npovypúšťať\npovypytovať\npovyrásť\npovyrastať\npovyrastie\npovyrástla\npovyrástli\npovyrástol\npovyratovať\npovyratúvať\npovyrazenie\npovyrazí\npovyrazila\npovyraziť\npovyrážať\npovyrezávať\npovyrovnávať\npovyrývať\npovysádzať\npovysávanie\nPovysávať\npovyschýnať\npovyskakovať\npovyskočia\npovyskočil\npovyskočila\npovyskočili\npovyskočilo\npovysmievať\npovystierať\npovystrájali\npovystrájať\npovystrihovanými\npovystrihovať\npovystupovať\npovystužovala\npovysvetľovať\npovysychať\npovysýpané\npovysýpať\npovyše\npovýšene\npovýšenec\npovýšenecky\npovýšenecký\npovýšenectvo\npovýšenie\npovýšenosť\npovýšený\npovýšiť\npovyšívať\npovyškrabávať\npovyškrabovať\npovyšovania\npovyšovanie\npovyšovaním\npovyšovaný\npovyšovať\npovyťahovať\npovytiahol\npovytínať\npovytískať\npovytláčať\npovytĺkané\npovytĺkať\npovytráca\npovytrácať\npovytŕhané\npovytŕhaných\npovytŕhať\npovytrhávané\npovytrhávať\npovytrhúvať\npovytriasať\npovytvárať\npovyvádzať\npovyvaľovať\npovyvážal\npovyvážali\npovyvážať\npovyvláčal\npovyvláčať\npovyvlačovať\npovyvlieka\npovyvliekaj\npovyvliekajme\npovyvliekajte\npovyvliekajú\npovyvliekajúc\npovyvliekal\npovyvliekala\npovyvliekali\npovyvliekalo\npovyvliekam\npovyvliekame\npovyvliekaš\npovyvliekať\npovyvliekate\npovyvracať\npovyzliekať\npovyzrádzať\npovyzúvať\npovyzvedať\npovyžínať\npovzbudenie\npovzbudený\npovzbudiť\npovzbudivo\npovzbudivý\npovzbudzovací\npovzbudzovanie\npovzbudzovaný\npovzbudzovať\npovzbudzujúcejšej\npovzbudzujúcejší\npovzbudzujúcejšia\npovzbudzujúcejšie\npovzbudzujúcejšieho\npovzbudzujúcejšiemu\npovzbudzujúcejších\npovzbudzujúcejším\npovzbudzujúcejšími\npovzbudzujúcejšiu\npovzbudzujúcejšom\npovzbudzujúcejšou\npovzbudzujúci\npovzbudzujúco\npovzdych\npovzdychnutie\npovzdychnúť\npovzchádzané\npovznášajúcejšej\npovznášajúcejší\npovznášajúcejšia\npovznášajúcejšie\npovznášajúcejšieho\npovznášajúcejšiemu\npovznášajúcejších\npovznášajúcejším\npovznášajúcejšími\npovznášajúcejšiu\npovznášajúcejšom\npovznášajúcejšou\npovznášajúci\npovznášajúco\npovznášaný\npovznášať\npovznesene\npovznesenia\npovznesenie\npovznesením\npovzneseniu\npovznesenosť\npovznesený\npovzniesť\npovždy\npower\npoz\npóz\npoza\npozabaľoval\npozabaľované\npozabaľuje\npozabávať\npozabíjaný\npozabíjať\npozabúdať\npozabudnutia\npozabudnutie\npozabudnutím\npozabudnúť\npozabudnutý\npozačínať\npozadie\npozadku\npozadný\npozadŕhať\npozadu\npozadúšať\npozahadzované\npozahadzovať\npozahaľované\npozaháňať\npozahášať\npozahatávať\npozahládzať\npozahrážať\npozahŕňať\npozahrýzať\npozahýbať\npozahybovať\npozahýnať\npozahytávať\npózach\npozachádzať\npozachytáva\npozachytávaj\npozachytávajme\npozachytávajte\npozachytávajú\npozachytávajúc\npozachytával\npozachytávala\npozachytávali\npozachytávalo\npozachytávam\npozachytávame\npozachytávaš\npozachytávať\npozachytávate\npozajímať\npozajtra\npozajtrajší\npozajtrajšok\npozajtre\npozakáľať\npozakladané\npozakladaných\npozakladať\npozakopávať\npozakrúcať\npozakrývané\npozakrývaní\npozakrývať\npozakvačovať\npozalepovať\npozaliepať\npozalievať\npozalieza\npozaliezaj\npozaliezajme\npozaliezajte\npozaliezajú\npozaliezajúc\npozaliezal\npozaliezala\npozaliezali\npozaliezalo\npozaliezam\npozaliezame\npozaliezaš\npozaliezať\npozaliezate\npozaľubovať\npózam\npozametaná\npozametané\npozametaním\npozametať\npozamieňať\npozamkýnať\npozamŕzať\npozamykané\npozamykať\npozamýšľať\npozanášať\npozanechávať\npozaostávať\npozapaľovať\npozápalový\npozapchávať\npozapicháva\npozapichávaj\npozapichávajme\npozapichávajte\npozapichávajú\npozapichávajúc\npozapichával\npozapichávala\npozapichávali\npozapichávalo\npozapichávam\npozapichávame\npozapichávaš\npozapichávať\npozapichávate\npozapichovať\npozapínať\npozapisovať\npozapletanými\npozapletať\npozapĺňať\npozarastať\npozarovnávať\npozasekávať\npozasekovať\npozaschýnať\npozaspávať\npozastavenie\npozastavený\npozastaviť\npozastavované\npozastavovaní\npozastavovania\npozastavovanie\npozastavovať\npozastierať\npozastokovať\npozastokýnať\npozastrkovať\npozastýkať\npozasychať\npozasýpať\npozašívaní\npozašívaných\npozašívať\npozaťahovať\npozatierať\npozatínať\npozatískať\npozatláčať\npozatĺkať\npozatvárané\npozatvárať\npozatýkať\npozaún\npozauna\npozaunista\npozaunistka\npozaunovo\npozaunový\npozavádzať\npozaväzovať\npozavesovať\npozavierať\npozavíjať\npóza\npozažíhať\npozažívať\nPozba\npozbavenie\npozbavený\npozbaviť\npozbavovať\nPozbe\npozberaný\npozberať\npozbieranie\npozbieraním\npozbieraný\npozbierať\npozbíjať\npozďaleč\npozdaním\npozdať\npozdáva\npozdávaj\npozdávajme\npozdávajte\npozdávajú\npozdávajúc\npozdával\npozdávala\npozdávali\npozdávalo\npozdávam\npozdávame\npozdávaš\npozdávať\npozdávate\npozde\npozdejšie\npozdišovská\npozdišovskej\nPozdišovskú\npozdišovských\npozdĺž\npozdĺžnosť\npozdĺžnosti\npozdĺžny\npozdne\npozdný\npozdochýnať\npozdola\npozdrav\npozdravenie\npozdravený\npozdraviť\npozdravkať\npozdravný\npozdravovať\npozdržal\npozdržala\npozdržali\npozdržalo\npozdržania\npozdržanie\npozdržaním\npozdržaniu\npozdržaný\npozdržať\npozdrží\npozdržia\npozdvíhať\npozdvihnutia\npozdvihnutie\npozdvihnutím\npozdvihnutiu\npozdvihnúť\npozdvihnutý\npozdvihované\npozdvihovanie\npozdvihovanú\npozdvihovaných\npozdvihovať\npozemkovo\npozemkovoknižne\npozemkovoknižný\npozemkový\npozemne\npozemno\npozemný\npozemok\npozemskosť\npozemsky\npozemský\npozemšťan\npozemšťania\npozemšťanka\npozerajúci\npozeranie\npozerať\npozér\npozérka\npozérova\npozérsky\npozérstvach\npozérstvam\npozérstvo\npozhadzoval\npozhadzovala\npozhadzovali\npozhadzovalo\npozhadzovanej\npozhadzovať\npozhadzuj\npozhadzuje\npozhadzujem\npozhadzujeme\npozhadzuješ\npozhadzujete\npozhadzujme\npozhadzujte\npozhadzujú\npozhadzujúc\npozháňanie\npozháňaný\npozháňať\npozhasínať\npozhášať\npozhľadávať\npozhľadúvať\npozhovárať\npozhovenie\npozhovieť\npozhrabávať\npozhrabúvať\npozhŕňať\npozíciach\npozícia\npozične\npozičný\npozinkovanie\npozinkovaný\npozinkovať\npozinkovávania\npozinkovávanie\npozisťovať\npozit\npozitívach\npozitívam\npozitív\npozitivista\npozitivisticky\npozitivistický\npozitivistka\npozitivita\npozitivitou\npozitivitu\npozitivizmus\npozitívnosť\npozitívny\npozitívum\npozitrón\npozitrónový\npozívať\npozlácať\npozlacovač\npozlacovačka\npozlacovačský\npozlacované\npozlacovaní\npozlacovania\npozlacovanie\npozlacovaním\npozlacovať\npozlátenia\npozlatenie\npozlátenie\npozlátením\npozlatený\npozlátený\npozlátiť\npozlátkach\npozlátkam\npozlátkami\npozlátka\npozlátke\npozlátkou\npozlátkový\npozlátku\npozlátky\npozlátok\npozliepaný\npozliepať\npozlievať\npozliezaní\npozliezať\npozlotky\npozmenenia\npozmeneniami\npozmenenie\npozmenením\npozmeneniu\npozmenený\npozmeniť\npozmeňovací\npozmeňovacia\npozmeňovacie\npozmeňovacieho\npozmeňovaciemu\npozmeňovacích\npozmeňovacím\npozmeňovacími\npozmeňovacom\npozmeňovaná\npozmeňované\npozmeňovaní\npozmeňovania\npozmeňovanie\npozmeňovaním\npozmeňovaniu\npozmeňovať\npozmeňujúci\npozmetať\npozmývať\npozn\npoznačenia\npoznačením\npoznačený\npoznačiť\npoznačovať\npoznajúca\npoznajúci\npoznamenaný\npoznamenať\npoznamenávané\npoznamenávať\npoznámka\npoznámkový\nPoznámočka\npoznámočku\nPoznančan\nPoznaň\npoznane\npoznanejší\npoznanie\npoznanský\npoznaný\npoznášať\npoznateľne\npoznateľnosť\npoznateľný\npoznať\npoznatežnosť\npoznatkovo\npoznatkový\npoznatok\npoznávací\npoznávajúci\npoznávanie\npoznávať\npoznova\npoznove\npoznovu\npozob\npozobať\npozobkať\npozobliekať\npozobúdzať\npozohrievať\npozohýbaný\npozohýbať\npozohýnať\npozomierať\npozor\npozorne\npozornosť\npozorný\npozorovací\npozorovanie\npozorovaný\npozorovateľ\npozorovateľka\npozorovatelňa\npozorovateľňa\npozorovatelní\npozorovateľný\npozorovateľský\npozorovať\npozoruhodne\npozoruhodnosť\npozoruhodný\npozorujúci\npozorujúcim\npozorumenie\npozoskakovať\npozostalosť\npozostalostný\npozostalý\npozostatok\npozostávajúci\npozostávať\npozostrenie\npozostrený\npozostupovať\npozošívať\npozotierať\npozotínať\nPózovanie\npózovaním\npózovať\npozoznamovať\npozráňať\npozrážať\npozretie\npozretých\npozrieť\npozriteže\npozriže\npozrúc\npozrušovať\nPozsony\npozúr\npozvädať\npozvanie\npozvánka\npozvaný\npozvára\npozvať\npozväzované\npozväzovať\npozvážaní\npozvážaných\npozvážať\npozvi\npozviechania\npozviechanie\npozviechať\npozvíjať\npozvime\npozvite\npozvolávať\npozvoľna\npozvoľne\npozvoľnosť\npozvoľný\npozvožnosť\npozvŕtať\npozvýš\npozvyšovaným\npozvyšovať\npozyv\npozývacej\npozývací\npozývacie\npozývacieho\npozývacích\npozývacím\npozývacom\npozývajúca\npozývajúce\npozývajúceho\npozývajúcej\npozývajúci\npozývajúcich\npozývanejší\npozývania\npozývanie\npozývaním\npozývaný\npozývateľ\npozývateľka\npozývateľský\npozývať\npož\npožadovačne\npožadovačnosť\npožadovačný\npožadovane\npožadovania\npožadovanie\npožadovaním\npožadovaniu\npožadovaný\npožadovať\npožadujúci\npožalovaná\npožalovať\npožarisko\npožartovať\npožatevný\npožať\npožehnane\npožehnanejšíF\npožehnanie\npožehnaný\npožehnať\npožehnávaný\npožehnávať\nPožehoch\npoželá\npoželať\npoženiť\npožertvovať\npožiadane\npožiadanie\npožiadaný\npožiadať\npožiadavka\npožiadavkoch\npožiadavkom\npožiadavkov\npožiadavok\npožiadavšom\npožiarisko\npožiar\npožiarmi\nPožiarnicka\nPožiarnicky\npožiarnický\npožiarnictvo\npožiarnička\npožiarnik\npožiarny\npožiarovosť\npožiarový\npožičania\npožičanie\npožičaním\npožičaniu\npožičaný\npožičať\npožičiavané\npožičiavanej\npožičiavaní\npožičiavania\npožičiavanie\npožičiavaním\npožičiavaniu\npožičiavanou\npožičiavaných\npožičiavanými\npožičiavateľ\npožičiavateľa\npožičiavatelia\npožičiavateľmi\npožičiavateľom\npožičiavateľov\npožičiavateľovi\npožičiavať\npôžička\npožičovňa\npožičovné\npožičovní\npožierač\npožierača\npožieračmi\npožieračom\npožieračov\npožierajúceho\npožieraná\npožieraní\npožieranie\npožieraním\npožierať\npožitie\npôžitkár\npôžitkársky\npôžitkárstvach\npôžitkárstvam\npôžitkárstvo\npožitkoch\npožitkom\npožitkov\npožitky\npôžitok\npožiť\npožitý\npožívač\npožívačne\npoživačnícky\npožívačnícky\npoživačník\npožívačník\npožívačnosť\npožívačný\npožívajúcej\npožívajúci\npožívaná\npožívané\npožívaného\npožívanej\npožívanie\npožívaných\npožívanými\npožívateľ\npožívateľka\npožívateľne\npožívateľnosť\npožívateľný\npožívateľský\npožívatina\npožívať\npoživeň\nPoživil\nPoživila\npoživkávať\npožltnúť\npožmoliť\npožmurkať\npožmurkávať\npožmurkovať\npožmurovať\npožrať\npožúriť\npožuto\npožutovaniahodnosť\npožuť\npožutý\npožuvať\nPP\nppihlasuje\npplk\nPPS\nPR\npŕ\nprababička\nprabiedne\nprabiedny\nprácach\nprácam\npracant\npráca\nprácechtivý\npráceneschopnosť\npráceneschopný\npráceschopnosť\npráceschopný\nprácička\nprací\npracka\npraclíček\npraclíčka\npraclíčkami\npraclíčkoch\npraclíčkom\npraclíčkov\npraclíčku\npraclíčky\npraclikár\npraclík\npracne\nprácnosť\npracný\nprácny\npracovaná\npracované\npracovaného\npracovania\nPracovanie\npracovateľ\npracovať\npracovával\npracovísk\npracovisko\npracovitosť\npracovitý\npracovňa\npracovnica\npracovníčka\npracovník\npracovníkova\npracovníkovej\npracovníkovo\npracovno\npracovnoprávny\npracovný\npracujúci\npráč\npračka\npráčka\npračloveče\npračlovek\npračloveku\npračloveky\npráčňach\npráčňam\npráčňa\npráční\npráčova\npráčove\npráčovňa\npráčovní\npráčovo\npráčovu\npračudný\npradávno\npradávny\npraded\npradedkov\npradedo\nprádel\nprádelňa\nprádelne\nprádelní\nprádelník\nprádelňu\npradenia\npradenie\npradením\npradeno\npradený\npradiar\npradiareň\npradiarka\npradiarňach\npradiarňam\npradiarsky\npradien\npradience\npradienci\npradiencom\npradienec\npradienko\npradienok\npradív\npradivo\nprádlach\nprádlam\nprádlo\npradúce\npradúcich\nprádzninovať\npraestácia\npraforma\nprag\npragmatickosť\npragmaticky\npragmatický\npragmatik\npragmatista\npragmatizmus\npragnostik\npragovka\nPráh\nPraha\nprah\nprahmota\nprahnúci\nprahnutie\nprahnúť\nprahôr\nprahorách\nprahorám\nprahorami\nprahornín\nprahorný\nprahory\nPrahove\nprahový\npracháč\npracháče\npracháču\nPrachár\nPrachára\npracháreň\nprachárne\nprachárni\nPrachárom\nprachatický\nprachatý\nprach\npráchen\npráchnach\npráchnam\npráchnivenie\npráchnivieť\npráchnivina\npráchnivosť\npráchnivý\npráchno\npráchny\nprachotesne\nprachotesnosť\nprachotesný\nprachoviť\nprachovitý\nprachovka\nprachový\nprachy\nprajaví\nprajazyk\nprajne\nprajnosť\nprajný\nprajúci\nprak\nprakorene\nPrakovská\nprakovské\nprakovskej\nPrakovskí\nprakovských\nprakový\nprakticistický\nprakticizmus\npraktickosť\nprakticky\npraktický\npraktikábel\npraktikant\npraktikantka\npraktikantský\npraktika\npraktik\npraktikoval\npraktikovala\npraktikovali\npraktikovalo\npraktikovania\npraktikovaný\npraktikovať\npraktikuje\npraktikujeme\npraktikujú\npraktikum\npraktizovania\npraktizovanie\npraktizovaním\npraktizovaniu\npraktizovaný\npraktizovať\npralátka\nprales\npralesný\npralesový\npralinka\npraľudí\npraľudia\npraľuďmi\npraľuďoch\npraľuďom\nprám\npráma\npramálo\npramalý\npramať\npramater\npramatka\npráme\nprameniace\nprameniacej\nprameniaci\npramenísk\npramenisko\npramenistý\npramenišťa\nprameniť\npramenitý\nprameň\npramenný\nprameňový\npramica\npramička\npramienok\nprámik\nprámikovať\npramizerne\npramizerný\nprámovať\npránajáma\nprane\npranice\npranič\npraničím\npraničoho\npraničom\npraničomu\npranier\npraniermi\npranierovania\npranierovanie\npranierovaniu\npranierovaný\npranierovať\npranie\npranik\npranikto\npranostika\nprant\nprány\npraný\npraobyčajne\npraobyčajný\npraobyvateľ\npraobyvateľstvo\npraotcova\npraotec\nprapočiatkom\nprapodivne\nprapodivný\nprapodstata\nprápor\npráporčícky\npráporčíčka\npráporčík\npráporečník\npráporné\npráporných\npráporový\nprapôvod\nprapôvodca\nprapôvodne\nprapôvodný\nprapradedovia\nprapravnuk\nprapredkoch\nprapredkovia\nprapríčina\nprarodič\nprarodiči\nprarodiť\nprarpíčina\nprasa\nprasací\nprasacina\nprasačí\nprasačina\nprasačinec\nprasačiny\nprasačník\nprasiat\nprasiatka\nprasiatkach\nprasiatkam\nprasiatkami\nprasiatko\nprasiatkom\nprasiatku\nprasiatok\nprasila\nprasiť\npraskajúce\npraskajúci\npraskaní\npraskania\npraskanie\npraskaniu\npraskať\npráskať\npraskavo\npráskavo\npraskavý\npráskavý\nprask\nprásk\nprasklina\nprasknutia\nprasknutie\nprasknutím\nprasknutiu\nprasknúť\nprasknutý\npraskotať\npraskot\npraskotmi\npraslen\npraslica\npraslička\npraslovančín\npraslovančinách\npraslovančinám\npraslovančinami\npraslovančina\npraslovanský\nprasnica\nprasnička\nprasnosť\nprasný\nprastarý\nprašan\nprášenie\nprášením\nprášeniu\nprašia\nprašiak\nprášieva\nprášievaj\nprášievajme\nprášievajte\nprášievajú\nprášievajúc\nprášieval\nprášievala\nprášievali\nprášievalo\nprášievam\nprášievame\nprášievaš\nprášievať\nprášievate\nprašina\nprášiť\nprašivec\nprášivieť\nprašivieť\nprašivina\nprašivosť\nprašivý\npráškovací\npráškovania\npráškovanie\npráškovaním\npráškovaný\npráškovať\npráškovitý\npráškový\nprášnic\nprášnica\nprašník\nprašníkmi\nprašníku\nprašnosť\nprašný\nprášok\nprašťať\npraštený\npraštiť\npratajúc\npratať\nprato\npratotechnika\nprať\npratý\nprav\npráv\npravačka\npraváčka\nprávach\npravák\nprávanie\nprávaný\nprávať\npravda\npravdaN\npravdaže\npravdepodobne\npravdepodobnosťN\npravdepodobnostný\npravdepodobný\npravdivejší\npravdivo\npravdivosť\npravdivostný\npravdivý\npravdovravnosť\npravdovravný\npravdúci\npravdupovediac\npravdymilovnosť\npravdymilovný\npráve\npravek\npraveký\nPravenca\nPravenci\nPravenec\npráveže\npravica\npravicovo\npravicovooportunistický\npravicový\npravičiar\npravičiarsky\npravičiarstvach\npravičiarstvam\npravičiarstvo\npravidelne\npravidelno\npravidelnosťN\npravidelný\npravidlo\npravítkach\npravítkam\npravítko\npravítok\npravlasť\nPravna\nPravne\nprávnicky\nprávnický\nprávnictva\nprávnictvo\nprávnička\nprávnik\nPrávnikove\nPravno\npravnúča\npravnučka\npravnuk\nprávny\nprávo\nprávomoc\npravo\npravopis\npravopisne\npravopisný\nprávoplatne\nprávoplatnosť\nprávoplatný\nPravoslav\nprávoslávie\npravoslávie\npravoslávny\npravosť\nprávosťN\npravostranný\npravota\npravotár\npravotársky\npravotárstvo\npravotením\npravotiť\npravotočivý\npravouhlosť\npravouhlý\npravouholník\npravoverne\npravovernosť\npravoverný\npravšia\npravý\nprax\npraxovanie\npraxovaním\npraxovať\nprazáklad\nprazákladom\nprázdninovať\nprázdninový\nprázdniny\nprázdno\nprázdnosť\nprázdnot\nprázdnotách\nprázdnotám\nprázdnotami\nprázdnota\nprázdny\nPrazdroj\nPrazdroja\nPrazdroje\nPrazdroji\nPrazdrojom\nPrazdrojov\nPrazdroju\nprazeodým\nPraznovský\nprazvláštna\nprazvláštne\nprazvláštneho\nprazvláštnej\nprazvláštnu\nprazvláštny\npražák\nPražákova\nPražákove\nPražan\npražca\npražce\npražcoch\npražcov\npražec\npražene\npraženica\npraženička\npraženie\npražený\npražiaca\npražiaci\npražiakmi\npražiar\npražiareň\npražiarňach\npražiarňam\npražič\npražienka\npražievať\npražiť\npražský\nPrč\nprča\nprď\nprd\nprdelami\nprdele\nprdelí\nprdeliach\nprdeliam\nprdelou\nprdieť\nprdnúť\nprdúskať\npre\npreambula\npreambulum\nprebačovať\nprebádaný\nprebádať\nprebal\nprebale\nprebalené\nprebalenia\nprebalenie\nprebaliť\nprebaľované\nprebaľovania\nprebaľovanie\nprebaľovaním\nprebaľovať\nprebárať\nprebásniť\nprebdenie\nprebdený\nprebdetej\nprebdieť\nprebeda\nprebeh\nprebehať\nprebehávať\nprebehlík\nprebehnutí\nprebehnutia\nprebehnutie\nprebehnutom\nprebehnutou\nprebehnutú\nprebehnúť\nprebehnutých\nprebehnutým\nprebehovať\nprebehu\nprebehy\nprebelený\nprebelievať\nprebenda\nprebendám\nprebendami\nprebendu\nprebendy\npreberací\npreberač\npreberačke\npreberačný\npreberajúci\npreberanie\npreberaný\npreberateľ\npreberateľa\npreberať\nprebi\nprebiedenie\nprebiediť\nprebiedny\nprebiehajúci\nprebiehaní\nprebiehania\nprebiehanie\nprebiehaniu\nprebiehať\nprebielený\nprebierka\nprebierkový\nprebíjací\nprebíjač\nprebíjače\nprebíjačka\nprebíjaču\nprebíjadlo\nprebíjanie\nprebíjaniu\nprebíjaný\nprebíjať\nprebije\nprebijem\nprebijeme\nprebiješ\nprebijete\nprebijú\nprebijúc\nprebime\nprebite\nprebiť\nprebitia\nprebitie\nprebitý\npreblahý\npreblednutý\npreblesknúť\nprebleskovať\nprebleskúvať\npreblesnúť\npreblysknúť\npreblyskovať\npreblyskúva\npreblyskúvaj\npreblyskúvajme\npreblyskúvajte\npreblyskúvajú\npreblyskúvajúc\npreblyskúval\npreblyskúvala\npreblyskúvali\npreblyskúvalo\npreblyskúvam\npreblyskúvame\npreblyskúvaš\npreblyskúvať\npreblyskúvate\npreblysnúť\nprebodal\nprebodávať\nprebodnutie\nprebodnúť\nprebodnutý\npreboha\nprebohato\nprebohatý\nprebojovaní\nprebojovanie\nprebojovať\nprebojovávať\nprebojúvaní\nprebojúvať\npreboľ\nprebolený\nprebolestný\nprebolieť\npreboľme\npreboľte\nprebor\npreboreniami\npreborený\npreboriť\npreborníčka\npreborník\npreborníkmi\npreborníkom\npreborte\nprebrania\nprebranie\nprebraním\nprebrániť\nprebraniu\nprebraný\nprebratie\nprebrať\nprebratý\nprebrázdil\nprebrázdili\nprebŕdnuť\nprebŕknuť\nprebrnknúť\nprebrodenie\nprebrodiť\nprebrúsenie\nprebrúsiť\nprebrusovaný\nprebrusovať\nprebublávať\nprebudenie\nprebudený\nprebudiť\nprebudovania\nprebudovanie\nprebudovaním\nprebudovaniu\nprebudovaný\nprebudovať\nprebudovávať\nprebudúvať\nprebúdzajúci\nprebúdzajúco\nprebúdzania\nprebúdzanie\nprebúdzaním\nprebúdzaný\nprebúdzať\nprebujnelo\nprebujnelosť\nprebujnelosti\nprebujnelý\nprebujnene\nprebujnenie\nprebujnenosť\nprebujnený\nprebúraní\nprebúranie\nprebúrať\nprebytkovo\nprebytkový\nprebytočne\nprebytočnosť\nprebytočný\nprebytok\nprebývajúci\nprebývanie\nprebývať\nprebzikovať\nprecedencia\nprecedenčný\nprecedens\nprecedentne\nprecedentný\nprecedený\nprecediť\nprecenenie\nprecenený\npreceniť\npreceňovania\npreceňovanie\npreceňovaním\npreceňovaniu\npreceňovaný\npreceňovať\nprecentrálny\nprecept\npreceptor\nprecesia\nprecesiový\nprecestovania\nprecestovanie\nprecestovaný\nprecestovať\nprecibrene\nprecibrenosť\nprecibrený\npreciedzanie\npreciedzať\npreciozita\npreciózka\nprecióznosť\npreciózny\nprecipitácia\nprecitať\nprecítene\nprecítenie\nprecítením\nprecíteniu\nprecítenosť\nprecítený\nprecítiť\nprecitlivelo\nprecitlivelosť\nprecitlivelý\nprecitlivene\nprecitliveno\nprecitlivenosť\nprecitlivený\nprecitnutej\nprecitnutie\nprecitnúť\nprecitnutých\npreciťovaním\npreciťovať\nprecizácia\nprecizácie\nprecizácii\nprecíznosť\nprecízny\nprecizovania\nprecizovanie\nprecizovaním\nprecizovaniu\nprecizovaný\nprecizovať\npreclene\npreclenia\npreclenie\npreclením\nprecleniu\npreclený\npreclievajúci\npreclievania\npreclievanie\npreclievaním\npreclievaniu\npreclievaný\npreclievať\nprecliť\nprecúdiť\nprecupkala\nprecválať\nprecvičenie\nprecvičením\nprecvičený\nprecvičiť\nprecvičovanie\nprecvičovať\nprecviknutím\nprecviknúť\npreč\nprečarať\nprečariť\nprečarovať\nprečasto\nprečerpania\nprečerpaniach\nprečerpanie\nprečerpaním\nprečerpaniu\nprečerpaný\nprečerpať\nprečerpávací\nprečerpávajúci\nprečerpávania\nprečerpávanie\nprečerpávaním\nprečerpávaniu\nprečerpávaný\nprečerpávať\nprečesaný\nprečesať\nprečesávaní\nprečesávať\nprečiarať\nprečiarkať\nprečiarknutie\nprečiarknuť\nprečiarknutý\nprečiarkovať\nprečiarnuť\nPrečín\nprečin\nprečísli\nprečíslia\nprečísliac\nprečíslil\nprečíslila\nprečíslili\nprečíslilo\nprečíslim\nprečíslime\nprečísliš\nprečísliť\nprečíslite\nprečíslovaná\nprečíslované\nprečíslovaní\nprečíslovania\nprečíslovaniach\nprečíslovanie\nprečíslovaním\nprečíslovaniu\nprečíslovaných\nprečíslovať\nprečíslováva\nprečíslovávaj\nprečíslovávajme\nprečíslovávajte\nprečíslovávajú\nprečíslovávajúc\nprečíslovával\nprečíslovávala\nprečíslovávali\nprečíslovávalo\nprečíslovávam\nprečíslovávame\nprečíslovávaním\nprečíslovávaš\nprečíslovávať\nprečíslovávate\nprečistenia\nprečistenie\nprečisteniu\nprečistený\nprečisti\nprečistia\nprečistiac\nprečistil\nprečistila\nprečistili\nprečistilo\nprečistím\nprečistime\nprečistíme\nprečistíš\nprečistiť\nprečistite\nprečistíte\nprečisťovacej\nprečisťovaní\nprečisťovania\nprečisťovanie\nprečisťovaním\nPrečisťovaniu\nprečisťovať\nprečisťujúci\nprečistý\nprečíšťa\nprečíšťaj\nprečíšťajme\nprečíšťajte\nprečíšťajú\nprečíšťajúc\nprečíšťal\nprečíšťala\nprečíšťali\nprečíšťalo\nprečíšťam\nprečíšťame\nprečíšťaš\nprečíšťať\nprečíšťate\nprečítanie\nprečítaný\nprečítať\nprečkanie\nprečkať\nprečkávať\nprečmárať\nprečnievajúce\nprečnievajúci\nprečnievanie\nprečnievať\nprečo\nprečože\nprečudesne\nprečudesný\nprečudný\npred\npredácia\npredáčka\npredajca\npredaj\npredajňa\npredajno\npredajnosť\npredajný\nPredajovo\npredajový\npredák\npreďaleko\npreďaleký\npredania\npredanie\npredaním\npredaniu\npredaný\npredaromný\npredať\npredátor\npredavač\npredavačka\npredavačov\npredavačský\npredávajúci\npredávanejší\npredávania\npredávanie\npredávaním\npredávaniu\npredávaný\npredávať\npredávkovaná\npredávkované\npredávkovaní\npredávkovania\npredávkovanie\npredávkovaním\npredávkovaniu\npredávkovanú\npredávkovanými\npredávkovať\npredbehávať\npredbehnutie\npredbehnúť\npredbehnutý\npredbehovať\npredbehúvať\npredbežne\npredbežný\npredbieha\npredbiehajúci\npredbieham\npredbiehame\npredbiehaní\npredbiehania\npredbiehanie\npredbiehaním\npredbiehaš\npredbiehate\npredbiehať\npredbojovník\npredcvičiť\npredcvičovať\npredčasne\npredčasnosť\npredčasný\npredči\npredčime\npredčíslie\npredčistení\npredčistenia\npredčistenie\npredčistenú\npredčítané\npredčítanie\npredčítať\npredčítavajú\npredčite\npredčiť\npredčitovať\npreddavkovania\npreddavkovať\npreddavkovo\npreddavkový\npreddavok\npreddefinovaný\npreddejinný\npreddevalvačne\npreddevalvačný\npreddôchodkový\npreddomie\npreddovolenkový\npreddvorie\npredebatovať\npredebatúvanie\npredebatúvať\npredecentný\npredefilovať\npredefinovať\npredel\npredele\npredelenie\npredelený\npredeliť\npredelmi\npredeľovaní\npredeľovania\npredeľovanie\npredeľovať\npredelový\npredeň\npredentín\nprederavenie\nprederavením\nprederavený\nprederaviť\npredesený\npredesiť\npredestiloval\npredestilovala\npredestilovali\npredestilovalo\npredestilovať\npredestiluj\npredestiluje\npredestilujem\npredestilujeme\npredestiluješ\npredestilujete\npredestilujme\npredestilujte\npredestilujú\npredestilujúc\npredestinácia\npredestinácie\npredestináciou\npredestináciu\npredestinovaný\npredestinovať\npredeterminácia\npredfebruárový\npredfeudálny\npredformátovaný\npredformátovať\npredhadzovaný\npredhadzovať\npredháňanie\npredháňať\npredhistória\npredhistorický\npredhoď\npredhodený\npredhodil\npredhodila\npredhodili\npredhodilo\npredhodíme\npredhodiť\npredhoniť\npredhorávať\npredhorie\npredhorský\npredhovor\npredhrať\npredhrávať\npredhrej\npredhreje\npredhrejem\npredhrejeme\npredhreješ\npredhrejete\npredhrejme\npredhrejte\npredhrejú\npredhrejúc\npredhriatie\npredhriato\npredhriať\npredhriatych\npredhriatý\npredhrievač\npredhrievaní\npredhrievanie\npredhrievať\npredchádza\npredchádzaj\npredchádzajme\npredchádzajte\npredchádzajú\npredchádzajúc\npredchádzajúci\npredchádzajúco\npredchádzal\npredchádzala\npredchádzali\npredchádzalo\npredchádzam\nPredchádzam\npredchádzame\npredchádzane\npredchádzaní\npredchádzania\npredchádzanie\npredchádzanieV\npredchádzaním\npredchádzaniu\npredchádzanom\npredchádzaš\npredchádzať\npredchádzate\npredchladenie\npredchladenom\npredchladiť\npredchládzať\npredchladzovanie\npredchladzovať\npredchlo\npredchnúť\npredchnutie\npredchnutý\npredchodca\npredchodcovým\npredchodiť\npredchodkyňa\npredchol\npredchorobie\npredchorobný\npredchytávať\npredchytiť\nprediď\npredídený\npredíduc\npredieraní\npredierať\npredierkovaný\npredierkovať\npredierovanie\npredierovaný\npredierovať\npredievajúci\npredikácia\npredikačný\npredikant\npredikát\npredikatív\npredikatívny\npredikatívum\npredikátmi\npredikátový\npredikcia\npredikčný\npredikoval\npredikovala\npredikovali\npredikovanie\npredikovaný\npredikovať\nprediktívna\nprediktívnej\nprediktívnu\npredikuje\npredikujeme\npredikujete\npredikujú\npredilekcia\npredimenzovania\npredimenzovanie\npredimenzovaním\npredimenzovaniu\npredimenzovanosť\npredimenzovanosti\npredimenzovanosťou\npredimenzovaný\npredimenzovať\npredimenzovávali\nprediskutovania\nprediskutovanie\nprediskutovaním\nprediskutovaniu\nprediskutovaný\nprediskutovať\nprediskutovávaný\nprediskutovávať\nprediskutúvaný\nprediskutúvať\npredisponovania\npredisponovanie\npredisponovaním\npredisponovaný\npredisponovať\npredispozícia\npredispozície\npredispozícii\nPredispozíciou\npredispozíciu\npredispozičným\npredísť\npredivný\npredizba\npredizbička\npredizbový\npredjarie\npredjarný\npredjazdec\npredjazdkyňa\npredjedál\npredjedlo\npredkapitalistický\npredkláčiť\npredkláčovať\npredkladacíN\npredkladajúci\npredkladanie\npredkladaný\npredkladateľ\npredkladateľka\npredkladať\npredkláňať\npredklíčiť\npredklíčovanie\npredklíčovať\npredklon\npredklonený\npredkloniť\npredkôl\npredkolenie\npredkolo\npredkova\npredkovi\npredkovo\npredkovom\npredkovou\npredkožka\npredkreslenie\npredkresliť\npredkresľovanie\npredkresľovať\npredkresťanský\npredkrm\npredkultúra\npredkupná\npredkupné\npredkupného\npredkupnej\npredkupnému\npredkupnom\npredkupnú\npredkupných\npredkupným\npredkupnými\npredl\npredlaktie\npredlakťový\npredlámovať\npredlani\npredlanský\npredletnom\npredlho\npredlhý\npredloha\npredlohový\npredložene\npredloženie\npredložený\npredložiť\npredložka\npredložkový\npredlž\npredlženie\npredĺženie\npredlžený\npredĺžený\npredlžiť\npredĺžiť\npredlžovací\npredlžovania\npredlžovaniach\npredlžovaniam\npredlžovaniami\npredlžovanie\npredlžovaním\npredlžovaniu\npredlžovaný\npredlžovať\npredlžujúci\npredmagnetizácia\npredmanželský\npredmarcovej\npredmarcovou\npredmarxistický\nPredmenštruačná\npredmenštruačnom\npredmestie\npredmestský\npredmet\npredmetne\npredmetný\npredmetový\nPredmier\nPredmiera\nPredmieri\npredminule\npredminuloročný\npredminulý\npredmníchovský\npredmostie\nprednádražie\nprednastavený\nprednášač\nprednášajúceho\nprednášajúci\nprednášané\nprednášanej\nprednášanie\nprednášaných\nprednášateľ\nprednášateľka\nprednášateľský\nprednášať\nprednáška\nprednáškovo\nprednáškový\npredne\nprednedávnom\nprednes\nprednesenia\nprednesenie\nprednesením\nprednesený\nprednesový\npredniesť\nprednosta\nprednostiek\nprednosť\nprednostka\nprednostne\nprednostný\nprednostova\nprednostovho\nprednostovia\nprednostovmu\nprednostovo\nprednovembrový\nprednovie\nprednovok\nprednožiť\nprednožka\nprednožmo\nprednožovanie\nprednožovať\npredný\npredo\npreďobať\npredobed\npredobedie\npredobedňajší\npredobedný\npredobedom\npredobraz\npredobre\npredobrotivý\npredobrý\npredodňom\npredohrať\npredohrávať\npredohrávka\npredohra\npredok\npredok\npredoktóbrový\npredôležitý\npredolieť\npredom\npredominancia\npredoperačný\npredopnutie\npredopnutý\npredoslal\npredosová\npredostatný\npredostierať\npredostrená\npredostrenia\npredostrenie\npredostrenom\npredostretie\npredostretý\npredostrieť\npredostrúc\npredošle\npredošlo\npredošlý\npredovka\npredovšetkýchm\npredovšetkým\npredózovanie\npredózovať\npredpadnutia\npredpadnutím\npredpätie\npredpätý\npredpaženie\npredpažiaci\npredpažiť\npredpažovať\npredpeč\npredpečie\npredpečiem\npredpečieme\npredpečieš\npredpečiete\npredpečme\npredpečte\npredpečú\npredpečúc\npredperie\npredpestovaného\npredpestovania\npredpestovanie\npredpestovať\npredpiecť\npredpiekla\npredpiekli\npredpieklo\npredpiekol\npredpísane\npredpísania\npredpísaniam\npredpísanie\npredpísaním\npredpísaniu\npredpísaný\npredpísať\npredpis\npredpisovanie\npredpisovaný\npredpisovať\npredpisovo\npredpisový\npredpíšu\npredpíšuc\npredplácaní\npredplácania\npredplácanie\npredplácaním\npredplácaných\npredplácať\npredplatenia\npredplatenie\npredplatením\npredplateniu\npredplatený\npredplatiteľ\npredplatiteľka\npredplatiteľova\npredplatiť\npredplatky\npredplatné\npredplatný\npredplodina\npredplúžok\npredpodmienka\npredpodmienku\npredpodmienky\npredpodmienok\npredpojato\npredpojatosť\npredpojatý\npredpokladane\npredpokladania\npredpokladanie\npredpokladaním\npredpokladaný\npredpokladateľná\npredpokladať\npredpoklad\npredpolie\npredpoludňajší\npredpoludnie\npredpoludním\npredpôn\npredpona\npredponový\npredposledne\npredposledný\npredpotopný\npredpovedá\npredpovedaj\npredpovedajme\npredpovedajte\npredpovedajú\npredpovedajúc\npredpovedajúci\npredpovedám\npredpovedáme\npredpovedanie\npredpovedaný\npredpovedáš\npredpovedáte\npredpovedať\npredpoveď\npredpovedný\npredpoznaný\npredpranie\npredpredaj\npredpredajový\npredpremiér\npredpremiérach\npredpremiéram\npredpremiéra\npredpremiérový\npredprevratový\npredpriadací\npredpriadanie\npredpriapať\npredpríprav\npredpríprava\npredprivatizačný\npredpubertálny\npredradene\npredradenie\npredradený\npredradlička\npredradne\npredradný\npredrahý\npredramatizovali\npredramatizovaná\npredramatizované\npredramatizovanú\npredrapiť\npredrapovať\npredrastovej\npredrať\npredratú\npredráždene\npredráždenosť\npredráždený\npredraženia\npredraženiam\npredraženie\npredražením\npredraženiu\npredražený\npredražiaci\npredražiť\npredražovaní\npredražovania\npredražovanie\npredražovaním\npredražovaniu\npredražovať\npredrečník\npredreferendový\npredretý\npredrevolučný\npredrhnutie\npredri\npredriapaj\npredriapajme\npredriapajte\npredriapajúc\npredriapať\npredriekač\npredriekať\npredriekavač\npredriem\npredriemať\npredrieme\npredriemem\npredriememe\npredriemeš\npredriemete\npredriemme\npredriemte\npredriemu\npredriemuc\npredrobčiť\npredrogoval\npredrogovala\npredrogovali\npredrogovalo\npredrogovať\npredroguj\npredroguje\npredrogujem\npredrogujeme\npredroguješ\npredrogujete\npredrogujme\npredrogujte\npredrogujú\npredrogujúc\npredrokoval\npredrokovala\npredrokovali\npredrokovalo\npredrokovať\npredrokuj\npredrokuje\npredrokujem\npredrokujeme\npredrokuješ\npredrokujete\npredrokujme\npredrokujte\npredrokujú\npredrokujúc\npredrotovať\npredržať\npreds\npredsa\npredsadený\npredsadil\npredsadila\npredsadiť\npredsádka\npredsádkový\npredsadzovanie\npredsadzovať\npredsavzá\npredsavzatie\npredsavziatie\npredsavziať\npredseda\npredsedajúca\npredsedajúce\npredsedajúceho\npredsedajúcej\npredsedajúcemu\npredsedajúci\npredsedajúcich\npredsedajúcim\npredsedajúcou\npredsedajúcu\npredsedania\npredsedanie\npredsedaniu\npredsedať\npredsedkyňa\npredsedkyne\npredsedkyni\npredsedkyňou\npredsedkyňu\npredsednícky\npredsedníctvach\npredsedníctvam\npredsedníctvo\npredsedníčka\npredsedovania\npredsedovanie\npredsedovať\npredsedov\npredsejbový\npredsezónny\npredsiatbový\npredsieňach\npredsieňam\npredsieň\npredsienka\npredsieňový\npredskokan\npredslov\npredsmrtný\npredsocialistický\npredspeváčka\npredspevák\npredspev\npredspeve\npredspevoval\npredspevovala\npredspevovali\npredspevovalo\npredspevovať\npredspevuj\npredspevuje\npredspevujem\npredspevujeme\npredspevuješ\npredspevujete\npredspevujme\npredspevujte\npredspevujú\npredspevujúc\npredspisovný\npredspracovanie\npredst\npredstala\npredstali\npredstať\npredstava\npredstavene\npredstavenie\npredstavenstvo\npredstavený\npredstaviteľ\npredstaviteľka\npredstaviteľný\npredstaviť\npredstavivosť\npredstavovanie\npredstavovaný\npredstavovať\npredstavovo\npredstavový\npredstavujúci\npredstierane\npredstierania\npredstieranie\npredstieraním\npredstieraniu\npredstieraný\npredstierať\npredstih\npredstihnutie\npredstihnúť\npredstihnutý\npredstihovať\npredstihovo\npredstihový\npredstihujúci\npredstojnica\npredstojný\npredstúpenie\npredstúpiť\npredstupovať\npredsudok\npredsuň\npredsunie\npredsuniem\npredsunieme\npredsunieš\npredsuniete\npredsuňme\npredsunovať\npredsuňte\npredsunul\npredsunula\npredsunuli\npredsunulo\npredsunutia\npredsunutie\npredsunúť\npredsunutý\npredsušenie\npredsušením\npredsušený\npredsušiť\npredsúvanie\npredsúvať\npredsvadobného\npredsviatočne\npredsviatočný\npredsvit\npredškolský\npredtláčať\npredtlač\npredtlačený\npredtlačiť\npredtriedny\npredtucha\npredtým\npreduchovnene\npreduchovnenosť\npreduchovnený\npredulovať\npredumať\npreduň\npredúpnuť\npredurčene\npredurčenia\npredurčenie\npredurčením\npredurčeniu\npredurčenosť\npredurčený\npredurči\npredurčime\npredurčite\npredurčiť\npredurčovania\npredurčovaný\npredurčovať\npredúvať\npredvádzane\npredvádzania\npredvádzaniach\npredvádzanie\npredvádzaním\npredvádzaniu\npredvádzaný\npredvádzať\npredválať\npredvalcovaní\npredvalcovanie\npredvalcovať\npredvalkov\npredvalky\npredvar\npredvarenie\npredvarený\npredvariť\npredvarovaný\npredvarovať\npredvarte\npredvčerajší\npredvčerajška\npredvčerajškom\npredvčerajšky\npredvčerom\npredvečera\npredvečer\npredvečerie\npredvečerný\npredvedecký\npredvedenie\npredvedený\npredveľkonočný\npredvianočný\npredvídane\npredvídanie\npredvídaný\npredvídateľne\npredvídateľnejší\npredvídateľnosť\npredvídateľný\npredvídať\npredvídavo\npredvídavosť\npredvídavý\npredvidieť\npredviesť\npredvlaňajšej\npredvlaňajší\npredvlaňajšia\npredvlaňajšie\npredvlaňajšieho\npredvlaňajšiemu\npredvlaňajších\npredvlaňajším\npredvlaňajšími\npredvlaňajšiu\npredvlaňajšom\npredvlaňajšou\npredvlani\npredvodiť\npredvojenský\npredvoj\npredvojnový\npredvolanie\npredvolanka\npredvolanky\npredvolaný\npredvolať\npredvolať\npredvolávací\npredvolávaní\npredvolávanie\npredvolávaním\npredvolávaných\npredvolávaným\npredvolávať\npredvoľba\npredvolebne\npredvolebný\npredvolený\npredvolia\npredvolil\npredvoliť\npredvstupový\npredzápal\npredzápalmi\npredzápas\npredzásobenia\npredzásobenie\npredzásobením\npredzásobeniu\npredzásobený\npredzásobí\npredzásobia\npredzásobil\npredzásobila\npredzásobili\npredzásobilo\npredzásobiť\npredzimnom\npredzjazdový\npredzmluvné\npredzmluvných\npredznačenie\npredznačený\npredznačí\npredznačil\npredznačili\npredznačilo\npredznačiť\npredznačoval\npredznačovalo\npredznačovať\npredznačuje\npredznačujú\npredznamená\npredznamenaj\npredznamenajme\npredznamenajte\npredznamenajú\npredznamenajúc\npredznamenal\npredznamenala\npredznamenali\npredznamenalo\npredznamenám\npredznamenáme\npredznamenanie\npredznamenáš\npredznamenať\npredznamenáte\npredznamenáva\npredznamenávaj\npredznamenávajme\npredznamenávajte\npredznamenávajú\npredznamenávajúc\npredznamenával\npredznamenávala\npredznamenávali\npredznamenávalo\npredznamenávam\npredznamenávame\npredznamenávaš\npredznamenávať\npredznamenávate\npredzosilňovač\npredzvesť\npredzvestoval\npredzvestovať\npredžatevný\npreexponovane\npreexponovanie\npreexponovaniu\npreexponovanosť\npreexponovaný\npreexponovať\npreexponovávať\npreexponúvať\nprefabrikácia\nprefabrikáciách\nprefabrikácie\nprefabrikácii\nprefabrikácií\nprefabrikáciu\nprefabrikát\nprefabrikátmi\nprefabrikovaný\nprefabrikovať\nprefácia\nprefajči\nprefajčime\nprefajčite\nprefajčiť\nprefarbenie\nprefarbený\nprefarbi\nprefarbime\nprefarbite\nprefarbiť\nprefarbovanie\nprefarbovať\nprefekt\nprefektka\nprefektúr\nprefektúrach\nprefektúram\nprefektúra\nPrefeminizované\nprefeminizovaného\nprefeminizovať\npreferans\npreferencia\npreferenčný\npreferovania\npreferovanie\npreferovaním\npreferovaniu\npreferovaný\npreferovaný\npreferovať\nPrefetovaná\nprefičať\nprefíkane\nprefíkanec\nprefíkanejšíF\nprefíkanosť\nprefíkaný\nprefiltrovaní\nprefiltrovaniu\nprefiltrovanou\nprefiltrovať\nprefinancovanie\nprefinancovať\nprefixácia\nprefix\nprefixový\npreflákať\npreflámovať\npreformovala\npreformovali\npreformovaná\npreformovaní\npreformovania\npreformovanie\npreformovať\npreformulovaním\nPrefotím\nprefotiť\nprefrč\nprefrčať\nprefrknúť\nprefrndžať\nprefrngnúť\nprefrnknúť\nprefúkanie\nprefúkať\nprefúknuť\nprefukované\nprefukovať\npregazdovať\npreglejkáreň\npreglejkárňach\npreglejkárňam\npreglejka\npreglejkový\npregĺgať\npreglgávať\npreglgnúť\npreglguje\npregnancia\npregnantne\npregnantnosť\npregnantný\npregravácia\nprehádať\nprehádzaním\nprehádzať\nprehadzovačiek\nprehadzovačky\nprehadzovaní\nprehadzovania\nprehadzovanie\nprehadzovaním\nprehadzovaniu\nprehadzovať\nprehádž\nprehádže\nprehádžem\nprehádžeme\nprehádžeš\nprehádžete\nprehádžme\nprehádžte\nprehádžu\nprehádžuc\nprehajdákaná\nprehajdákané\nprehajdákanie\nprehajdákaním\nprehajdákaných\nPrehajdákaný\nprehajdákať\npreháňačka\npreháňadlo\npreháňajúci\npreháňajúco\npreháňaná\npreháňaní\npreháňania\npreháňanie\npreháňaním\npreháňaniu\npreháňať\nprehánka\nprehárať\nprehistória\nprehistorický\nprehlad\nprehľadanie\nprehľadaný\nprehľadať\nprehľadávací\nprehľadávanie\nprehľadávaný\nprehľadávateľná\nprehľadávať\nprehľad\nprehľadieť\nprehladiť\nprehľadne\nprehľadnosť\nprehľadný\nprehladovať\nprehlásenie\nprehlásený\nprehlásiť\nprehlasovací\nprehlasovania\nprehlasovanie\nprehlasovaním\nprehlasovaniu\nprehlasovaný\nprehlasovať\nprehlasujúci\nprehĺbenie\nprehĺbenina\nprehĺbený\nprehĺbiť\nprehlboko\nprehlboký\nprehlbovanie\nprehlbovaný\nprehlbovať\nprehlbujúce\nprehliadač\nprehliadačB\nprehliadačovej\nprehliadanie\nprehliadaný\nprehliadať\nprehliadka\nprehliadkový\nprehliadnutia\nprehliadnutie\nprehliadnutím\nprehliadnutiu\nprehliadnuto\nprehliadnuť\nprehliadnutý\nprehliveli\nprehlivieť\nprehĺtať\nprehltávať\nprehltnutie\nprehltnúť\nprehlúšať\nprehlušiť\nprehlušované\nprehlušovaní\nprehlušovať\nprehmatať\nprehmatávať\nprehmat\nprehmatmi\nprehnane\nprehnanie\nprehnanosť\nprehnaný\nprehnať\nprehnit\nprehnitosť\nprehniť\nprehnitý\nprehnívať\nprehnojeniu\nprehnojovanie\nprehnutie\nprehnúť\nprehnutý\nprehodenie\nprehodením\nprehodený\nprehodiť\nprehodnocovania\nprehodnocovaniach\nprehodnocovanie\nprehodnocovaním\nprehodnocovaniu\nprehodnocovaný\nprehodnocovať\nprehodnocujúci\nprehodnotenie\nprehodnotený\nprehodnotiť\nprehojne\nprehojný\nprehor\nprehorenie\nprehorieť\nprehorký\nprehorlivý\nprehováranie\nprehovárať\nprehovieť\nprehovor\nprehovorené\nprehovoreného\nprehovorenie\nprehovorených\nprehovoriť\nprehovorový\nprehovorte\nprehrab\nprehrabať\nprehrabávanie\nprehrabávaním\nprehrabávať\nprehrabnúť\nprehrabovať\nprehrabúvať\nprehradenia\nprehradeniach\nprehradenie\nprehradením\nprehradeniu\nprehradený\nprehradiť\nprehrádzania\nprehrádzanie\nprehrádzať\nprehrádzka\nprehrádzkový\nprehradzovať\nprehrania\nprehranie\nprehraný\nprehrať\nprehratý\nprehrávač\nprehrávajúci\nprehrávanie\nprehrávaný\nprehrávať\nprehrávka\nprehra\nprehrčať\nprehrdzavieť\nprehrej\nprehreje\nprehrejem\nprehrejeme\nprehreješ\nprehrejete\nprehrejme\nprehrejte\nprehrejú\nprehrejúc\nprehrešenie\nprehrešiť\nprehrešok\nprehrešovať\nprehriatie\nprehriatosť\nprehriatosti\nprehriať\nprehriaty\nprehrievač\nprehrievača\nprehrievače\nprehrievačov\nPrehrievaná\nprehrievaní\nprehrievania\nprehrievanie\nprehrievaním\nprehrievaniu\nprehrievať\nprehrkotať\nprehrm\nprehrmení\nprehrmieť\nprehrň\nprehŕňať\nprehrnie\nprehrniem\nprehrnieme\nprehrnieš\nprehrniete\nprehrňme\nprehrňte\nprehrnúť\nprehryz\nprehrýzať\nprehryzáva\nprehryzie\nprehryziem\nprehryzieme\nprehryzieš\nprehryziete\nprehrýzla\nprehrýzli\nprehrýzlo\nprehryzme\nprehryznúť\nprehrýzol\nprehryzte\nprehrýzť\nprehryzú\nprehryzúc\nprehučať\nprehupnutie\nprehupnutiu\nprehupnúť\nprehustenie\nprehusteniu\nprehustený\nprehusti\nprehustime\nprehustite\nprehustiť\nprehútať\nprehutovať\nprehvizdovať\nprehýbajúci\nprehýbaní\nprehýbanie\nprehýbať\nprehyb\nprehybovať\nprehýnať\nprehýrený\nprehýriť\nprechádzajúci\nprechádzane\nprechádzanie\nprechádzaný\nprechádzať\nprechádzka\nprechádzkový\nprechládať\nprechladenie\nprechladený\nprechladiť\nprechladnutia\nprechladnutie\nprechladnutiu\nprechladnúť\nprechladnutý\nprechládza\nprechládzaj\nprechládzajme\nprechládzajte\nprechládzajú\nprechládzajúc\nprechládzal\nprechládzala\nprechládzali\nprechládzalo\nprechládzam\nprechládzame\nprechládzaš\nprechládzať\nprechládzate\nprechladzovať\nprechlórovanie\nprechmat\nprechmatmi\nprechod\nprechodení\nprechodiť\nprechodne\nprechodník\nprechodníkový\nprechodnosť\nprechodnosti\nprechodný\nprechodový\nprechorej\nprechorejme\nprechorejte\nprechorejú\nprechorejúc\nprechorieť\nprechovaných\nprechovať\nprechovávač\nprechovávačom\nprechovávačov\nprechovávaná\nprechovávania\nprechovávanie\nprechovávaním\nprechovávateľ\nprechovávať\nprechváliť\nprechvaľovať\nprechýliť\nprechyľovania\nprechyľovať\nprechýriť\npreidiálny\npreíkový\npreinačiť\npreinačovať\npreinštalovávanie\npreinvestovania\npreinvestovanie\npreinvestovaním\npreinvestovaniu\npreinvestovaný\npreinvestovať\nprejal\nprejala\nprejali\nprejasniť\nprejasný\nprejať\nprejatie\nprejatú\nprejatých\nprejatými\nprejav\nprejavenie\nprejavený\nprejaviť\nprejavovanie\nprejavovaný\nprejavovať\nprejavujúci\nprejazd\nprejazdený\nprejazdný\nprejdene\nprejdenie\nprejdený\nprejdi\nprejdime\nprejdite\nprejdú\nprejedá\nprejedaj\nprejedajme\nprejedajte\nprejedajú\nprejedajúc\nprejedám\nprejedáme\nprejedania\nprejedanie\nprejedaním\nprejedaniu\nprejedaný\nprejedáš\nprejedáte\nprejedať\nprejedenia\nprejedenie\nprejedením\nprejedeniu\nprejedený\nprejednania\nprejednanie\nprejednaním\nprejednaniu\nprejednaný\nprejednať\nprejednáva\nprejednávacích\nprejednávaj\nprejednávajme\nprejednávajte\nprejednávajú\nprejednávajúc\nprejednával\nprejednávala\nprejednávali\nprejednávalo\nprejednávam\nprejednávame\nprejednávane\nprejednávania\nprejednávanie\nprejednávaním\nprejednávaniu\nprejednávaný\nprejednávaš\nprejednávať\nprejednávate\nprejesť\nprejímadlo\nprejotácia\nprejsť\nprejudícia\nprejudiciálne\nprejudiciálnej\nprejudiciálny\nPrejudikácia\nprejudikácie\nprejudikácii\nprejudikát\nprejudikoval\nprejudikovala\nprejudikovali\nprejudikovalo\nprejudikovanie\nprejudikovaniu\nprejudikovaný\nprejudikovať\nprejudikuje\nprejudikujú\nprekabátiť\nprekacovať\nprekádrovať\nprekála\nprekálala\nprekáľať\nprekalibrovanie\nprekalkulovaná\nprekalkulované\nprekalkulovať\nprekambrium\nprekántriť\nprekáračka\nprekáraní\nprekáranie\nprekárať\nprekáravo\nprekáravý\nprekarcinóm\nprekardialgia\nprekárium\nprekášala\nprekazenie\nprekazeniu\nprekazený\nprekaziť\nprekážajúcich\nprekážajúcou\nprekážanie\nprekážať\nprekážkar\nprekážkár\nprekážkarka\nprekážkárka\nprekážkarský\nprekážkársky\nprekážka\nprekážkový\nprekérny\nprekladací\nprekladač\nprekladače\nprekladačský\nprekladaču\nprekladane\nprekladanie\nprekladaný\nprekladateľ\nprekladateľka\nprekladateľský\nprekladateľský\nprekladať\npreklad\nprekladísk\nprekladisko\nprekladiskový\nprekladištnými\nprekládka\nprekládkový\nprekladový\npreklápací\npreklápaní\npreklápania\npreklápanie\npreklápať\npreklasifikovaný\npreklatí\npreklať\npreklávať\npreklčovať\nprekleň\npreklenie\nprekleniem\npreklenieme\npreklenieš\nprekleniete\nprekleňme\npreklenovací\npreklenoval\npreklenovali\npreklenovaní\nprekleňovaní\npreklenovania\nprekleňovania\npreklenovanie\npreklenovať\nprekleňte\npreklenuj\npreklenuje\npreklenujú\npreklenutie\npreklenúť\npreklenutý\npreklepanie\npreklepať\npreklepávania\npreklepávať\npreklep\npreklepla\npreklepli\nprekleplo\npreklepnúť\nprekliatec\nprekliatí\nprekliatia\nprekliatie\nprekliatím\nprekliatiu\nprekliať\nprekliaty\nprekliesniť\nprekliesňovať\npreklínajúci\npreklínanie\npreklínaný\npreklínať\npreklonilo\nprekloniť\npreklopávať\npreklopenia\npreklopenie\nPreklopením\npreklopeniu\npreklopený\npreklopiť\npreklopovať\nprekľučkovať\nprekludované\nprekludovať\nprekľuť\npreklúzia\nprekluzívna\nprekluzívne\nprekluzívnej\nprekluzívnu\nprekluzívnych\nprekluzívnymi\nprekĺzal\nprekĺzavajúci\nprekĺzavanie\npreklzávať\nprekĺzla\nprekĺzli\nprekĺzlo\nprekĺzne\nprekĺznem\nprekĺzneme\nprekĺzneš\nprekĺznete\nprekĺzni\nprekĺznime\nprekĺznite\nprekĺznu\nprekĺznuc\nprekĺznutia\nprekĺznutie\nprekĺznuť\nprekĺzol\nprekmitá\nprekmitnúť\nprekmitnutie\npreknísať\nprekódovanie\nprekódovať\nprekognícia\nprekombinovaný\nprekombinovať\nprekompilovať\nprekomplikovaný\nprekonanie\nprekonaný\nprekonateľný\nprekonať\nprekonávajúcim\nprekonávaní\nprekonávania\nprekonávanie\nprekonávaním\nprekonávaniu\nprekonávaných\nprekonávať\nprekonfigurovať\nprekonšruovať\nprekonštruovaná\nprekonštruovanie\nprekonštruovaním\nprekonštruovať\nprekontrolovania\nprekontrolovanie\nprekontrolovaním\nprekontrolovaný\nprekontrolovať\nprekonvertujte\nprekonzervovanie\nprekonzultoval\nprekonzultovala\nprekonzultovali\nprekonzultovalo\nprekonzultovania\nprekonzultovanie\nprekonzultovaním\nprekonzultovaný\nprekonzultovať\nprekonzultuj\nprekonzultuje\nprekonzultujem\nprekonzultujeme\nprekonzultuješ\nprekonzultujete\nprekonzultujme\nprekonzultujte\nprekonzultujú\nprekonzultujúc\nprekopaná\nprekopaní\nprekopania\nprekopať\nprekopávania\nprekopávanie\nprekopávať\nprekopávka\nprekopírovanie\nprekopírovaný\nprekopírovať\nprekopla\nprekopnúť\nprekopnuté\nprekopom\nprekopov\nprekoprcnúť\nprekopŕcnuť\nprekopu\nprekoreniť\nprekot\nprekotená\nprekotenie\nprekotiť\nprekotmi\nprekotne\nprekotnom\nprekotúlať\nprekovanie\nprekovaný\nprekovať\nprekovávať\nprekračovania\nprekračovanie\nprekračovaním\nprekračovaniu\nprekračovaný\nprekračovať\nprekračujúci\nprekradnúť\nprekrajovať\nprekrásny\nprekreslenie\nprekreslenú\nprekresliť\nprekresľovanie\nprekresľovaný\nprekresľovať\nprekrič\nprekričať\nprekrikovaní\nprekrikovanie\nprekrikovať\nprekristapána\nprekrížene\nprekrížené\nprekríženými\nprekrížiť\nprekrižovať\nprekŕmený\nprekŕmiť\nprekrmovaní\nprekrmovanie\nprekrmovať\nprekročenie\nprekročený\nprekročiteľný\nprekročiť\nprekročný\nprekrojiť\nprekrstené\nprekrsti\nprekrstievať\nprekrstime\nprekrstite\nprekrstiť\nprekrsťovať\nprekrúcaní\nprekrúcania\nprekrúcanie\nprekrúcaním\nprekrúcanú\nprekrúcať\nprekrucovanie\nprekrucovať\nprekrútenia\nprekrútenie\nprekrútením\nprekrúteniu\nprekrútený\nprekrútiť\nprekrútnuť\nprekrvenia\nprekrvenie\nprekrviť\nprekrvovať\nprekrytie\nprekrytu\nprekryť\nprekrytý\nprekrývač\nprekrývajúci\nprekrývanie\nprekrývaný\nprekrývať\npreksťovať\nprekúkať\nprekuknúť\nprekukovať\nprekumštovať\nprekúpený\nprekúrená\nprekúrené\nprekúreného\nprekúrených\nprekúriť\nprekurované\nprekurovaní\nprekurovania\nprekurovanie\nprekurovaním\nPrekurovaniu\nprekurovať\nprekurzívny\nprekurzor\nprekurzórny\nprekutať\nprekutávať\nprekutrať\nprekutrávať\nprekuť\nprekúvania\nprekúvať\nprekvapene\nprekvapenie\nprekvapeno\nprekvapenosť\nprekvapený\nprekvapiť\nprekvapivo\nPrekvapivosť\nprekvapivosti\nprekvapivý\nprekvapkať\nprekvapkávanej\nprekvapkávanú\nprekvapkávať\nprekvapovaný\nprekvapovať\nprekvapujúcejšej\nprekvapujúcejší\nprekvapujúcejšia\nprekvapujúcejšie\nprekvapujúcejšieho\nprekvapujúcejšiemu\nprekvapujúcejších\nprekvapujúcejším\nprekvapujúcejšími\nprekvapujúcejšiu\nprekvapujúcejšom\nprekvapujúcejšou\nprekvapujúci\nprekvapujúco\nprekvasené\nprekvaseného\nprekvasení\nprekvasenia\nprekvasenie\nprekvasiť\nprekvasovaní\nprekvasovanie\nprekvasovať\nprekvášať\nprekvitajúca\nprekvitajúce\nprekvitajúceho\nprekvitajúcej\nprekvitajúcemu\nprekvitajúci\nprekvitajúcich\nprekvitajúcim\nprekvitajúcom\nprekvitania\nprekvitanie\nprekvitaním\nprekvitať\nprekyp\nprekypieť\nprekypovať\nprekypriť\nprekyprovať\nprekypujúci\nprekypujúco\nprekýsať\nprekyslenie\nprekyslením\nprekysliť\nprekysľovať\nprekysnúť\nprekyvovať\nprelačnieť\npreladenie\npreladiť\nprelaďovať\npreľaknuto\npreľaknúť\npreľaknutý\nprelakovaná\nprelakovanie\nprelakovať\nprelamovač\nprelamovania\nprelamovanie\nprelamovaný\nprelamovať\npreláskané\nprelát\npreláti\nprelátmi\nprelátovi\nprelátsky\nprelaziť\npreleňošením\npreleňošiť\nprelepenie\nprelepeniu\nprelepený\nprelepiť\nprelepované\nprelepovania\nprelepovanie\nprelepovaním\nprelepovaniu\nprelepovať\nprelesieme\nprelesiete\nprelesiež\nprelesť\nprelestný\nprelešti\npreleštime\npreleštite\npreleštiť\npreleť\npreletáva\npreletávaj\npreletávajme\npreletávajte\npreletávajú\npreletávajúc\npreletával\npreletávala\npreletávali\npreletávalo\npreletávam\npreletávame\npreletávaš\npreletávať\npreletávate\nprelet\npreletený\npreletieť\npreletovanie\npreletovať\npreletúvať\nprelezené\nprelezenie\npreležanina\npreležaný\npreležať\npreliačená\npreliačenú\npreliačina\npreliačiť\npreliačovať\npreliata\npreliate\npreliatej\npreliatí\npreliatia\npreliatie\npreliatím\npreliatiu\npreliatu\npreliať\npreliaty\npreliatych\npreliatym\nprelíčenie\npreliepať\nprelietanie\nprelietať\nprelietavanie\nprelietavať\nprelietavosť\nprelietavý\nprelietla\nprelietnuť\nprelietnutia\nprelievanie\nprelievaný\nprelievať\npreliezačka\npreliezať\npreliezť\npreliminár\nprelimináre\nprelimináru\npreliminovať\nprelimitovať\nprelínačka\nprelínajúcich\nprelínaného\nprelínaní\nprelínania\nprelínanie\nprelínaním\nprelínaniu\nprelínať\nprelisovať\nprelistovania\nprelistovanie\nprelistovaním\nprelistovať\nprelistovávať\nprelistúvať\npreliv\nprelive\nprelom\nprelomenie\nprelomený\nprelomiť\nPrelomovo\nprelomový\npreloviť\npreloziť\npreloženie\npreložený\npreložiteľnosťN\npreložiteľný\npreložiť\npreložka\npreľstili\npreľúbezný\nprelud\nprelúdium\npreľudnenia\npreľudnenie\npreľudnením\npreľudnenosť\npreľudnený\npreľudni\npreľudnime\npreľudnite\npreľudniť\npreľudňovať\npreludný\nprelumpovať\nprelustroval\nprelustrovala\nprelustrovali\nprelustrovalo\nprelustrovať\nprelustruj\nprelustruje\nprelustrujem\nprelustrujeme\nprelustruješ\nprelustrujete\nprelustrujme\nprelustrujte\nprelustrujú\nprelustrujúc\npremáčať\npremáhanie\npremáhaný\npremáhať\npremáľať\npremaľba\npremaľoval\npremaľovala\npremaľovali\npremaľovalo\npremaľovaná\npremaľovanej\npremaľovanie\npremaľovanou\npremaľovaných\npremaľovať\npremaľovávanie\npremaľovávať\npremaľuj\npremaľuje\npremaľujem\npremaľujeme\npremaľuješ\npremaľujete\npremaľujme\npremaľujte\npremaľujú\npremaľujúc\npremaľúva\npremaľúvaj\npremaľúvajme\npremaľúvajte\npremaľúvajú\npremaľúvajúc\npremaľúval\npremaľúvala\npremaľúvali\npremaľúvalo\npremaľúvam\npremaľúvame\npremaľúvaš\npremaľúvať\npremaľúvate\npremanévrovať\npremárnenia\npremárnenie\npremárnením\npremárneniu\npremárnený\npremárniť\npremárňoval\npremárňovala\npremárňovali\npremárňovalo\npremárňovať\npremárňuj\npremárňuje\npremárňujem\npremárňujeme\npremárňuješ\npremárňujete\npremárňujme\npremárňujte\npremárňujú\npremárňujúc\npremasti\npremastievať\npremastime\npremastite\npremastiť\npremasťovať\npremávania\npremávanie\npremávať\npremávka\npremávkovo\npremávkový\npremazaný\npremazať\npremazávaná\npremazávať\npremedikácia\npremeditácia\npremena\npremenenie\npremenený\npremenený\npremeniteľných\npremeniť\npremenlivo\npremenlivosť\npremenlivý\npremenná\npremenne\npremenný\npremenovanie\npremenovaný\npremenovať\npremenovávanie\npremenovávať\npremenúvaní\npremenúvania\npremenúvanie\npremenúvaním\npremenúvať\npremeranie\npremeraný\npremerať\npremeriavané\npremeriavania\npremeriavanie\npremeriavaním\npremeriavať\npremeškania\npremeškanie\npremeškaniu\npremeškaný\npremeškať\npremeškávanie\npremeškávať\nPremetal\npremet\npremiant\nprémia\npremieľa\npremieľaj\npremieľajme\npremieľajte\npremieľajú\npremieľajúc\npremieľal\npremieľala\npremieľali\npremieľalo\npremieľam\npremieľame\npremieľanie\npremieľaním\npremieľaš\npremieľať\npremieľate\npremieňajúca\npremieňané\npremieňaného\npremieňanej\npremieňaní\npremieňanie\npremieňať\npremieňavý\npremiérach\npremiéram\npremiéra\npremiér\npremiérka\npremiérminister\npremiérov\npremiérový\npremiérsky\npremies\npremiesene\npremiesi\npremiesia\npremiesiac\npremiesil\npremiesila\npremiesili\npremiesilo\npremiesim\npremiesime\npremiesiš\npremiesiť\npremiesite\npremiesme\npremieste\npremiestene\npremiestenie\npremiestiť\npremiestnene\npremiestnenie\npremiestnený\npremiestnený\npremiestní\npremiestním\npremiestníme\npremiestníš\npremiestníte\npremiestniť\npremiestňovania\npremiestňovanie\npremiestňovaním\npremiestňovaniu\npremiestňovaný\npremiestňovať\npremiesťovanie\npremiesťovať\npremiešanie\npremiešaný\npremiešať\npremiešavaní\npremiešavania\npremiešavanie\npremiešavaniu\npremiešavať\npremietací\npremietač\npremietačka\npremietačovi\npremietajúca\npremietajúce\npremietajúceho\npremietajúcej\npremietajúcich\npremietajúcim\npremietajúcu\npremietanieN\npremietaný\npremietareň\npremietáreň\npremietarňach\npremietárňach\npremietarňam\npremietárňam\npremietať\npremietnutia\npremietnutie\npremietnutím\npremietnutiu\npremietnuť\npremietnutý\npremihnutý\npremilený\npremilo\npremilovať\npremilý\nprémiovaná\nprémiované\nprémiovaní\nprémiovania\nprémiovanie\nprémiovať\nprémiovo\nprémiový\npremís\npremisa\npremknúť\npremkýnať\npremladzovať\npremlč\npremlčací\npremlčania\npremlčanie\npremlčaním\npremlčaniu\npremlčaný\npremlčať\npremlčiavať\npremletá\npremlieť\npremnoho\npremnohý\npremnož\npremnoží\npremnožia\npremnožiac\npremnožil\npremnožila\npremnožili\npremnožilo\npremnožím\npremnožíme\npremnožíš\npremnožiť\npremnožíte\npremnožme\npremnožte\npremocne\npremocný\npremôcť\npremočenia\npremočený\npremočiť\npremodelovanie\npremodelovaný\npremodulovanie\npremodulovať\npremohutný\npremokanie\npremokať\npremokavý\npremoknúť\npremoknutý\npremolár\npremonštráti\npremonštrátov\npremonštrátskeho\npremontované\npremontovanými\npremontovať\npremortálny\npremostenia\npremosteniach\npremostenie\npremostením\npremostený\npremosti\npremostí\npremostia\nPremostia\npremostiac\npremostil\npremostila\npremostili\npremostilo\npremostím\npremostime\npremostíme\npremostíš\npremostiť\npremostite\npremostíte\npremôstkovať\npremosťoval\npremosťovala\npremosťovali\npremosťovalo\npremosťované\npremosťovaní\npremosťovania\npremosťovanie\npremosťovať\npremosťuj\npremosťuje\npremosťujem\npremosťujeme\npremosťuješ\npremosťujete\npremosťujme\npremosťujte\npremosťujú\npremosťujúc\npremotá\npremotať\npremotávať\npremôž\npremožený\npremožiteľ\npremožiteľka\npremožiteľný\npremôžuc\npremraziť\npremrhania\npremrhanie\npremrhaním\npremrhaniu\npremrhaný\npremrhať\npremrhávanie\npremrhávať\npremrštene\npremrštenosť\npremrštený\npremŕvať\npremŕzať\npremrznutiu\npremrznúť\npremrznutý\npremúdrený\npremúdrom\npremudrovať\npremúdry\npremyk\npremyslene\npremyslenia\npremyslenie\npremysleniu\npremyslenosť\npremyslený\npremyslieť\npremýšľane\npremýšľania\npremýšľanie\npremýšľaním\npremýšľaniu\npremýšľaný\npremýšľať\npremýšľavý\npremyť\npremytý\npremývacíN\npremývaní\npremývania\npremývanie\npremývať\npren\npreň\nprená\nprenádherný\nprenadívať\nprenáhlene\nprenáhlenosť\nprenáhlený\nprenáhliť\nprenáhľoval\nprenáhľovala\nprenáhľovali\nprenáhľovalo\nprenáhľovať\nprenáhľuj\nprenáhľuje\nprenáhľujem\nprenáhľujeme\nprenáhľuješ\nprenáhľujete\nprenáhľujme\nprenáhľujte\nprenáhľujú\nprenáhľujúc\nprenajatia\nprenajatie\nprenajatím\nprenajatiu\nprenajať\nprenajatý\nprenajímanie\nprenajímaný\nprenajímateľ\nprenajímateľka\nprenajímať\nprenájmami\nprenájme\nprenájmoch\nprenájmom\nprenájmov\nprenájmu\nprenájmy\nprenájom\nprenájomca\nprenájomcami\nprenájomcom\nprenájomcov\nprenájomcovia\nprenájomcu\nprenájomný\nprenáramne\nprenáramný\nprenasledovanie\nprenasledovaný\nprenasledovateľ\nprenasledovateľka\nprenasledovať\nprenásobením\nprenásobený\nprenásobí\nprenásobia\nprenásobil\nprenásobili\nprenášač\nprenášače\nprenášane\nprenášanie\nprenášaný\nprenášateľ\nprenášatele\nprenášateli\nprenášateľka\nprenášateľu\nprenášať\nprenáška\nprenášky\nprenatálny\nPrenčov\nPrenčova\nPrenčove\nprenčovské\nprenčovského\npreneho\nprenechaná\nprenechané\nprenechaného\nprenechaní\nprenechania\nprenechanie\nprenechaním\nprenechaniu\nprenechaných\nprenechanými\nprenechať\nprenechávajúcimi\nprenechávaní\nprenechávanie\nprenechávaním\nprenechávať\nprenesene\nprenesenie\nprenesenosť\nprenesený\nprenesmierny\nprenešťastný\nprenežný\npreňho\npreniesť\nprenikajúci\nprenikanie\nprenikať\nprenikavo\nprenikavosť\nprenikavý\nprenik\npreniknuteľný\npreniknutie\npreniknúť\npreniknutý\nprenocovaní\nprenocovania\nprenocovaniach\nprenocovaniami\nprenocovanie\nprenocovaním\nprenocovaných\nprenocovať\nprenocúvať\nprenos\nprenosené\nprenositeľný\nprenosiť\nprenoska\nprenosnosť\nprenosný\nprenosový\nprenotácia\nprenožmo\nprenožovať\npreňuchať\npreobjednávať\npreoblečenie\npreoblečený\npreobliecť\npreobliekanie\npreobliekať\npreobrátiť\npreobraziť\npreobuť\npreobúvať\npreočiť\npreočkovanie\npreočkovať\npreočkovávať\npreočkúvať\npreodetý\npreodiať\npreohromný\npreochotne\npreochotný\npreolejovať\npreonačiť\npreonačovali\npreondi\npreondiac\npreondiať\npreondiel\npreondiela\npreondieli\npreondielo\npreondieť\npreondime\npreondite\npreopakovať\npreopožičať\npreorania\npreorať\npreorávania\npreorávať\npreorávka\npreorganizovania\npreorganizovanie\nPreorganizovaním\npreorganizovaný\npreorganizovať\npreorientácia\npreorientácie\npreorientácii\npreorientáciou\npreorientáciu\npreorientovania\npreorientovanie\npreorientovaním\npreorientovaniu\npreorientovaný\npreorientovať\npreorientovávať\npreorientúvať\npreosiať\npreosievaní\npreosievanie\npreosievaním\npreosievať\nprep\nprepáčené\nprepáčeného\nprepáčenia\nprepáčenie\nprepáčením\nprepáčeniu\nprepáčiť\nprepačovať\nprepadajúci\nprepadajúcu\nprepadanie\nprepadať\nprepadávania\nprepadávanie\nprepadávaním\nprepadávať\nprepad\nprepadlín\nprepadlina\nprepadlísk\nprepadlisko\nprepadlý\nprepadná\nprepadnutie\nprepadnuto\nprepadnutosť\nprepadnúť\nprepadnutý\nprepadový\nprepadúvať\nprepájač\nprepájače\nprepájaču\nprepájajúce\nprepájajúci\nprepájaná\nprepájané\nprepájaní\nprepájania\nprepájanie\nprepájaním\nprepájaniu\nprepájanom\nprepájať\nprepáĺ\nprepäl\nprepäla\nprepálenia\nprepálenie\nprepálením\nprepálený\nprepäli\nprepáliť\nprepälo\nprepalom\nprepaľovaná\nprepaľovaniu\nprepaľovanými\nprepaľovať\nprepalu\nprepána\nprepánaboha\nprepánajána\nprepánakráľa\nprepaprovať\npreparácia\npreparačný\nprepárať\npreparát\npreparátmi\npreparované\npreparovaní\npreparovanie\npreparovať\nprepas\nprepásaný\nprepásať\nprepasírovať\nprepasovať\nprepastovaného\nprepastovania\nprepastovanie\nprepásť\nprepáš\nprepáše\nprepášem\nprepášeme\nprepášeš\nprepášete\nprepášme\nprepašovanie\nprepašovaním\nprepašovaný\nprepašovať\nprepášte\nprepášu\nprepášuc\nprepašúvajú\nprepatetizovaný\nprepätie\nprepäto\nPrepátrali\nprepátrať\nprepäť\nprepätý\nprepážka\nprepážkach\nprepážkam\nprepážkami\nprepážke\nprepážkou\nprepážku\nprepážky\nprepážok\nprepečené\nprepekať\nprepekný\nprepelica\nprepeličí\nprepelička\nprepevný\nprepchaná\nprepchané\nprepchať\nprepchatý\nprepchávanie\nprepchávať\nprepiatosť\nprepiaty\nprepiecť\nprepierania\nprepieranie\nprepieraním\nprepieraniu\nprepieraný\nprepierať\nprepichá\nprepichanie\nprepichaný\nprepichávanie\nprepichávať\nprepichnutie\nprepichnutím\nprepichnutiu\nprepichnúť\nprepichnutý\nprepichom\nprepichovaní\nprepichovania\nprepichovanie\nprepichovaním\nprepichovať\nprepíjania\nprepíjať\nprepílené\nprepílením\nprepíleniu\nprepílených\nprepíliť\nprepilovanie\nprepilovaný\nprepilovať\nprepiľovať\nprepínací\nprepínač\nprepínane\nprepínanie\nprepínaný\nprepínať\nprepísanie\nprepísaný\nprepísať\nprepis\nprepískať\nprepisovací\nprepisovač\nprepisovačovi\nprepisovanie\nprepisovaný\nprepisovateľ\nprepisovať\nprepisový\nprepisujúci\nprepíšu\nprepíšuc\nprepitné\nprepito\nprepitosť\nprepiť\nprepitý\npreplácania\npreplácanie\npreplácaním\npreplácaniu\npreplácaný\npreplácať\npreplačú\npreplačúc\nprepláchať\nprepláchnutí\nprepláchnutie\nprepláchnuť\npreplachovacia\npreplachovacie\npreplachovacích\npreplachoval\npreplachovala\npreplachovali\npreplachovalo\npreplachovaní\npreplachovanie\npreplachovaním\npreplachovať\npreplachuj\npreplachuje\npreplachujem\npreplachujeme\npreplachuješ\npreplachujete\npreplachujme\npreplachujte\npreplachujú\npreplachujúc\npreplakať\npreplákať\nprepláknuť\npreplakoval\npreplakovala\npreplakovali\npreplakovalo\npreplakovať\npreplakuj\npreplakuje\npreplakujem\npreplakujeme\npreplakuješ\npreplakujete\npreplakujme\npreplakujte\npreplakujú\npreplakujúc\npreplánoval\npreplánovanie\npreplánovaný\npreplátavanie\npreplátavaný\npreplatenia\npreplatenie\npreplatením\npreplateniu\npreplatený\npreplatiť\npreplatok\npreplávané\npreplávanie\npreplávať\npreplavené\npreplaveného\npreplavenia\npreplavenie\npreplaveniu\npreplavených\npreplaviť\npreplavovaní\npreplavovania\npreplavovať\npreplaziť\nprepleť\nprepletanie\nprepletaním\nprepletaný\nprepletať\nprepletenia\nprepletením\nprepletený\nprepletie\nprepletiem\nprepletieme\nprepletieš\nprepletiete\nprepleťme\nprepleťte\nprepletú\nprepletúc\nprepliesť\npreplietaná\npreplietanie\npreplietať\npreplietla\npreplietli\npreplietlo\npreplietol\npreplievajúci\npreplisovanie\npreplisovaný\npreplisovať\nprepĺňania\nprepĺňanie\nprepĺňaním\nprepĺňaniu\nprepĺňaný\nprepĺňať\npreplnene\npreplnenia\npreplnenie\npreplnením\npreplneniu\npreplnený\npreplniť\npreplňovania\npreplňovanie\npreplňovaním\npreplňovaniu\npreplňovaný\npreplňovať\npreplňujúca\npreplňujúce\npreplňujúci\nprepluhoval\nprepluhovala\nprepluhovali\nprepluhovalo\nprepluhovať\nprepluhuj\nprepluhuje\nprepluhujem\nprepluhujeme\nprepluhuješ\nprepluhujete\nprepluhujme\nprepluhujte\nprepluhujú\nprepluhujúc\nprepnutie\nprepnuto\nprepnúť\nprepnutý\nprepočetný\nprepočet\nprepočítací\nprepočítacie\nprepočítacieho\nprepočítacích\nprepočítacím\nprepočítacími\nprepočítacom\nprepočítane\nprepočítanie\nprepočítaný\nprepočítať\nprepočítavacej\nprepočítavací\nprepočítavacie\nprepočítavacieho\nprepočítavaciemu\nprepočítavacích\nprepočítavacom\nprepočítavania\nprepočítavanie\nprepočítavaním\nprepočítavaniu\nprepočítavaný\nprepočítavať\nprepočutiam\nprepočutie\nprepočuť\nprepočúvala\nprepodivný\nprepodstatniť\nprepochodovali\nprepochodovať\nprepojene\nprepojenie\nprepojenosť\nprepojený\nprepojiteľný\nprepojiť\nprepojovač\nprepojovače\nprepojovaču\nprepojovane\nprepojovania\nprepojovanie\nprepojovaním\nprepojovaniu\nprepojovaný\nprepojovať\nprepokladajme\nprepoľ\nprepolitizovali\nprepolitizovania\nprepolitizovanie\nprepolitizovaním\nprepolitizovaný\nprepolitizovať\nprepolitizujeme\nprepoľovanie\nprepoľovaný\nprepoľovať\nprepôn\nprepona\npreponderancia\npreporodiť\npreposlal\npreposlala\npreposlali\npreposlalo\npreposlať\nprepostský\nprepošle\nprepošlem\nprepošleme\nprepošleš\nprepošlete\nprepošli\nprepošlime\nprepošlite\nprepošlú\nprepošlúc\nprepošstvo\nprepošta\nprepošt\nprepošti\nprepoštmi\nprepoštovi\nprepoštský\nprepoštstvo\nprepotený\nprepotiť\nprepotrebnosť\nprepotrebný\nprepozícia\nprepožičania\nprepožičanie\nprepožičaniu\nprepožičaný\nprepožičať\nprepožičiavaná\nprepožičiavaní\nprepožičiavania\nprepožičiavanie\nprepožičiavať\nprepracovane\nprepracovanejší\nprepracovanie\nprepracovanosť\nprepracovaný\nprepracovať\nprepracovávania\nprepracovávanie\nprepracovávaný\nprepracovávať\nprepracúvaného\nprepracúvaní\nprepracúvania\nprepracúvanie\nprepracúvaním\nprepracúvaniu\nprepracúvaných\nprepracúvať\npreprané\npreprania\nprepranie\nprepraných\npreprať\nprepráv\npreprava\nprepravca\nPrepravenie\nprepravením\nprepravený\nprepraviť\nprepravka\nprepravne\nprepravné\nprepravník\nprepravno\nprepravný\nprepravovania\nprepravovanie\nprepravovaním\nprepravovaný\nprepravovať\nprepravujúca\nprepražiť\nprepŕchnuť\nprepriahané\nprepriahania\nprepriahanie\nprepriahaniu\nprepriahať\nprepriahnuť\npreprogramovanie\npreprogramovať\nprepucium\nprepučenie\nprepučiť\nprepučte\nprepudrovania\nprepudrovať\nprepuká\nprepukajú\nprepukala\nprepukali\nprepukaním\nprepukať\nprepukáva\nprepukávajú\nprepuknutí\nprepuknutia\nprepuknutie\nprepuknutím\nprepuknutiu\nprepuknúť\nprepustenec\nprepustenie\nprepustený\nprepustime\nprepustite\nprepustiť\nprepusť\nprepúšťací\nprepúšťanie\nprepúšťaný\nprepúšťať\npreputoval\npreputovali\npreputovaním\npreputovať\nprepych\nprepychovo\nprepychový\nprepýtať\nprepytujem\nprerába\nprerábaj\nprerábajme\nprerábajte\nprerábajú\nprerábajúc\nprerábam\nprerábame\nprerábania\nprerábanie\nprerábaním\nprerábaný\nprerábaš\nprerábate\nprerábať\nprerác\npreráce\nprerácem\npreráceme\npreráceš\nprerácete\nprerácme\nprerácte\nprerácu\nprerácuc\npreradenie\npreradený\npreradiť\npreradostný\npreraďovač\npreraďované\npreraďovaní\npreraďovania\npreraďovaniam\npreraďovanie\npreraďovaním\npreraďovaných\npreraďovať\nprerapčať\nprerastané\nprerastaní\nprerastania\nprerastanie\nprerastaním\nprerastaniu\nprerastať\nprerastenia\nprerastením\nprerasteniu\nprerastený\nprerasti\nprerastime\nprerastite\nprerásť\nprerátania\nprerátanie\nprerátaniu\nprerátaný\nprerátať\npreratovať\npreratúvané\npreratúvaní\npreratúvania\npreratúvanie\npreratúvať\nprerazenia\nprerazenie\nprerazením\nprerazeniu\nprerazený\npreraziť\nprerážač\nprerážačovi\nprerážaní\nprerážania\nprerážať\nprerážka\nprerážku\nprerážky\nprerážok\nprerec\nprerecme\nprerecte\nprerednúť\nprerednutý\npreregistrovanie\nprerev\nprerevať\nprerezanie\nprerezaný\nprerezať\nprerezávaná\nprerezávaní\nprerezávanie\nprerezávať\nprerezávka\npréria\npreriecť\npreriedenie\npreriedeniu\npreriedený\npreriediť\npreriedli\npreriednuť\nprerieďovať\npreriekať\nprerieknutí\nprerieknutia\nprerieknutiach\nprerieknutiam\nprerieknutie\nprerieknuť\nprériový\nprerískať\nprerobenia\nprerobenie\nprerobením\nprerobeniu\nprerobený\nprerobiť\nprerod\nprerodenie\nprerodiť\nprerogatív\nprerogatíva\nprerogatívy\nprerokovanie\nprerokovaný\nprerokovať\nprerokovávania\nprerokovávaniam\nprerokovávanie\nprerokovávaním\nprerokovávaniu\nprerokovávaný\nprerokovávať\nprerokúvania\nprerokúvaniach\nprerokúvanie\nprerokúvaním\nprerokúvaniu\nprerokúvaný\nprerokúvať\npreromantizmus\npreroň\npreroní\nprerozdeľ\nprerozdelenie\nprerozdelený\nprerozdelí\nprerozdelia\nprerozdeliac\nprerozdelil\nprerozdelila\nprerozdelili\nprerozdelilo\nprerozdelím\nprerozdelíme\nprerozdelíš\nprerozdeliť\nprerozdelíte\nprerozdeľme\nprerozdeľoval\nprerozdeľovala\nprerozdeľovali\nprerozdeľovalo\nprerozdeľovanie\nprerozdeľovať\nprerozdeľte\nprerozdeľuj\nprerozdeľuje\nprerozdeľujem\nprerozdeľujeme\nprerozdeľuješ\nprerozdeľujete\nprerozdeľujme\nprerozdeľujte\nprerozdeľujú\nprerozdeľujúc\nprerozkošný\nprerozpráva\nprerozprával\nprerozprávaný\nprerozprávať\nprerúb\nprerúba\nprerúbaj\nprerúbajme\nprerúbajte\nprerúbajú\nprerúbajúc\nprerúbam\nprerúbame\nprerúbaných\nprerúbaš\nprerúbate\nprerúbať\nprerúbavať\nprerubovať\nprerušene\nprerušenie\nprerušený\nprerušiteľný\nprerušiť\nprerušovač\nprerušovane\nprerušovania\nprerušovanie\nprerušovaním\nprerušovaniu\nprerušovaný\nprerušovať\nprervať\nprerytou\npreryť\nprerývane\nprerývaniu\nprerývano\nprerývanosť\nprerývaný\nprerývať\nprerývka\npres\npresadaní\npresadania\npresadať\npresadenie\npresadený\npresadiť\npresadnutí\npresadnutie\npresadnúť\npresádzanie\npresádzať\npresadzovanie\npresadzovaný\npresadzovateľa\npresadzovatelia\npresadzovateľmi\npresadzovateľom\npresadzovateľov\npresadzovať\npresadzujúci\npresádž\npresádže\npresádžem\npresádžeme\npresádžeš\npresádžete\npresádžme\npresádžte\npresádžu\npresádžuc\npresah\npresahovanej\npresahovanie\npresahovať\npresahujúci\npresakovaní\npresakovania\npresakovanie\npresakovaním\npresakovaniu\npresakovať\npresakujúca\npresakujúci\npresakúvať\npresáľať\npresantný\npresávané\nPresburg\npresbytár\npresbytera\npresbyter\npresbyteri\npresbyterián\npresbyterianizmus\npresbyteriánka\npresbyteriánsky\npresbyteriánstvo\npresbytérium\npresbyterka\npresbytermi\npresbyteroch\npresbyterom\npresbyterov\npresbyterovi\npresbyterský\npresbyterstvo\npreseď\npresedenia\npresedený\npresedieť\npresedlaní\npresedlať\npresedlávať\npresekať\npresekávač\npresekávačovi\npresekávať\npreseknuté\npreseknutého\npreseknutí\npreseknúť\nPreseknutý\nPreseľanoch\nPreseľany\npresénium\npresevov\npreschnúť\npreschýnať\npresiahnutá\npresiahnutí\npresiahnutia\npresiahnutie\npresiahnutiu\npresiahnutú\npresiahnuť\npresiakať\npresiakly\nPresiaknutia\npresiaknutie\npresiaknutiu\npresiaknuť\npresiaknutý\npresiali\npresídlené\npresídlenec\npresídlenecký\npresídlenej\npresídlení\npresídlenia\npresídlenie\npresídlením\npresídleniu\npresídlených\npresídliť\npresídľovací\npresídľovania\npresídľovanie\npresídľovaním\npresídľovaniu\npresídľovať\npresieva\npresievaj\npresieval\npresievam\npresievané\npresievanie\npresievaním\npresievaš\npresievať\npresila\npresilenie\npresilený\npresiliť\npresilný\npresilovať\npresiľovať\npresilovka\npresilový\npresinievať\npreskackať\npreskákaný\npreskákať\npreskakované\npreskakovaní\npreskakovania\npreskakovanie\npreskakovaním\npreskakovať\npreskli\npresklí\npresklia\npreskliac\npresklieva\npresklievaj\npresklievajme\npresklievajte\npresklievajú\npresklievajúc\npresklieval\npresklievala\npresklievali\npresklievalo\npresklievam\npresklievame\npresklievaš\npresklievať\npresklievate\npresklil\npresklila\npresklili\npresklilo\npresklím\npresklime\npresklíme\npresklíš\npreskliť\npresklite\npresklíte\npreskočenia\npreskočenie\npreskočeniu\npreskočený\npreskočiť\npreskok\npreskripcia\npreskromný\npreskúmanie\npreskúmaný\npreskúmať\npreskúmavanie\npreskúmavaný\npreskúmavať\npreskupené\npreskupení\npreskupenia\npreskupeniach\npreskupeniam\npreskupenie\npreskupením\npreskupeniu\npreskupenom\npreskupi\npreskupiť\npreskupovaní\npreskupovania\npreskupovanie\npreskupovaním\npreskupovaniu\npreskupovať\npreskúšanie\npreskúšaný\npreskúšať\npresladený\npresladiť\npresladký\npreslávene\npreslávenie\npresláveniu\npreslávený\npresláviť\npreslávny\npreslavuje\npresliediť\npreslň\npreslnený\npreslopať\npreslov\npreslýchať\npreslz\npresmažiť\npresmerovanie\npresmerovaný\npresmerovať\npresmerovávať\npresmrádzať\npresmutne\npresmutný\npresnenie\npresne\npresni\npresnia\npresnila\npresnívanie\npresnívať\npresnor\npresnoriť\npresnorte\npresnosťN\npresnýmtermínom\npresný\npresolené\npresoleného\npresolenej\npresolených\npresoliť\npreso\npresotiť\nPrespaná\nprespania\nprespanie\nprespanka\nprespať\nprespávajúci\nprespávané\nprespávať\nprespevovať\nprespevúvať\nprespi\nprespieva\nprespievaná\nprespievané\nprespime\nprespite\npresrať\npress\npresscentier\npresscentrum\npressfoyer\npressfoyeri\npresso\nprestácia\npresťahovalci\npresťahovalec\npresťahovanie\npresťahovaný\npresťahovať\nprestanie\nprestarla\nprestarli\nprestarlo\nprestarnutia\nprestarnúť\nprestarnutý\nprestarol\nprestato\nprestať\nprestáť\nprestatý\nprestava\nprestavania\nprestavanie\nprestavaním\nprestavaniu\nprestavaný\nprestavať\nprestávať\nprestavba\nprestavená\nprestavené\nprestavení\nprestavenia\nprestavenie\nprestavených\nprestaviteľnosť\nprestaviteľný\nprestaviť\nprestávka\nPrestavlky\nprestavovane\nprestavovania\nprestavovanie\nprestavovaním\nprestavovaný\nprestavovať\nprestieradlo\nprestierane\nprestieranie\nprestieraný\nprestierať\nprestissimo\nprestížach\nprestížam\nprestíž\nprestížny\npresto\nprestoj\nprestojovo\nprestojový\nprestoknúť\nprestol\nprestole\nprestráchaný\nprestránkovať\nprestrašene\nprestrašený\nprestrašiť\nprestrčiť\nprestrelene\nprestrelenia\nprestrelenie\nprestrelením\nprestreleniu\nprestrelený\nprestreliť\nprestrelka\nprestrelok\nprestreľovania\nprestreľovanie\nprestreľovaniu\nprestreľovaný\nprestreľovať\nprestrešenie\nprestretý\nprestriekané\nprestriekania\nprestriekanie\nprestriekať\nprestriekávať\nprestriekavať\nprestrieľal\nprestrieť\nprestrihané\nprestrihať\nprestrihávaní\nprestrihávania\nprestrihávanie\nprestrihávať\nprestrih\nprestrihla\nprestrihli\nprestrihlo\nprestrihne\nprestrihnem\nprestrihneme\nprestrihneš\nprestrihnete\nprestrihni\nprestrihnime\nprestrihnite\nprestrihnú\nprestrihnúc\nprestrihnúť\nprestrihnutá\nPrestrihnuté\nprestrihnutého\nprestrihnutí\nprestrihnutia\nprestrihnutie\nprestrihnutím\nprestrihnutiu\nprestrihol\nprestrihovaní\nprestrihovanie\nprestrihovať\nprestrkávať\nprestrkovať\nprestrojenie\nprestrojený\nprestrojiť\nprestrojovaní\nprestrojovania\nprestrojovaním\nprestrojovať\nprestrúc\nprestup\nprestúpenie\nprestúpený\nprestúpiť\nprestupný\nprestupovaní\nprestupovania\nprestupovanie\nprestupovaním\nprestupovaniu\nprestupovať\nprestupový\nprestydnúť\nprestýkať\npresúdi\npresúkať\npresúkavať\npresuň\npresun\npresunie\npresuniem\npresunieme\npresunieš\npresuniete\npresuňme\nPresuňme\npresunovanie\npresunovať\npresuňte\npresunul\npresunula\npresunuli\npresunulo\npresunutia\npresunutiam\npresunutie\npresunutím\npresunutiu\npresunúť\npresunutý\npresústružiť\npresúšať\npresušený\npresušiť\npresušovanie\npresušovať\npresúvania\npresúvaniach\npresúvanie\npresúvaním\npresúvaniu\npresúvaný\npresúvať\npresvätý\npresvätý\npresvecovač\npresvecovače\npresvecovaču\npresvecovať\npresvedčene\npresvedčenie\npresvedčenieN\npresvedčenosti\npresvedčený\npresvedči\npresvedčite\npresvedčiteľný\npresvedčiť\npresvedčivo\npresvedčivosť\npresvedčivý\npresvedčovací\npresvedčovania\npresvedčovanie\npresvedčovaním\npresvedčovaniu\npresvedčovaný\npresvedčovať\npresvedčujúce\npresvedčujúci\npresvedčujúcim\npresvedčujúco\npresvedčujúcu\npresvedenie\npresvetlenie\nPresvetlením\npresvetleniu\npresvetlený\npresvetliť\npresvetľovacích\npresvetľovaní\npresvetľovanie\npresvetľovanými\npresvetľovať\npresviedčania\npresviedčanie\npresviedčaním\npresviedčaniu\npresviedčaný\npresviedčať\npresvietené\npresvietením\npresvietených\npresvietenými\npresvietiť\npresvišťať\npresvitajúca\npresvitajúce\npresvitať\npresvitavý\npresvitnúť\npresycovať\npresychá\npresychám\npresycháme\npresycháš\npresýchať\npresycháte\npresychať\npresýpa\npresýpací\npresýpaj\npresýpajme\npresýpajte\npresýpajú\npresýpajúc\npresýpal\npresýpala\npresýpali\npresýpalo\npresýpam\npresýpame\npresýpanie\npresýpaš\npresýpať\npresýpate\npresypať\npresypávať\npresyp\npresypový\npresypú\npresypúc\npresýtene\npresýtenia\npresýtenie\npresýtením\npresýteniu\npresýtenosť\npresýtený\npresýtiť\nprešaltoval\nprešaltovala\nprešaltovali\nprešaltovalo\nprešaltovať\nprešaltuj\nprešaltuje\nprešaltujem\nprešaltujeme\nprešaltuješ\nprešaltujete\nprešaltujme\nprešaltujte\nprešaltujú\nprešaltujúc\nprešedivenosť\nprešedivený\nprešedivieť\nprešetrenie\nprešetrený\nprešetriť\nprešetrovania\nprešetrovaniach\nprešetrovanie\nprešetrovaním\nprešetrovaniu\nprešetrovaný\nprešetrovať\nprešibane\nprešibanec\nprešibano\nprešibanosť\nprešibaný\nprešibať\nprešibnúť\nprešije\nprešijem\nprešijeme\nprešiješ\nprešijete\nprešijú\nprešijúc\nprešil\nprešila\nprešili\nprešilo\nprešime\nprešinúť\nprešite\nprešité\nprešitie\nprešiť\nprešívací\nprešívanie\nprešívaním\nprešívaný\nprešívať\npreš\npreškoda\npreškolenia\npreškolenie\npreškolením\npreškoleniu\npreškolený\npreškoliť\npreškoľovací\npreškoľovacie\npreškoľovacieho\npreškoľovaciemu\npreškoľovacích\npreškoľovaní\npreškoľovania\npreškoľovanie\npreškoľovaním\npreškoľovať\npreškrab\npreškrabať\npreškriab\npreškriabať\npreškrtanie\npreškrtaných\npreškrtať\npreškrtávať\npreškrtnutím\npreškrtnúť\npreškrtnutý\npreškvar\npreškvariť\npreškvarte\nprešlá\nprešľachtiť\nprešľap\nprešľapovaní\nprešľapovania\nprešľapovanie\nprešľapovaním\nprešľapovaniu\nprešľapovať\nprešľapy\nprešliapaná\nprešliapaní\nprešliapanými\nprešliapať\nprešliapavanie\nprešliapavať\nprešliapnuť\nprešmyčka\nprešmyk\nprešmýkal\nprešmyknúť\nprešmykovanie\nprešmykovaním\nprešmykovať\nprešmyku\nprešovanie\nprešovať\nPrešov\nPrešovčan\nPrešovčanka\nprešovňa\nprešovní\nprešovsky\nprešovský\nprešpčkulovať\nprešpekulovaný\nprešpekulovať\nprešpikovaný\nprešpikovať\nPrešporok\npreštárať\nprešťastlivý\nprešťastný\npreštedrý\npreštekaný\npreštepiť\npreštepovať\npreštíkať\npreštikávať\npreštiknúť\npreštikovať\npreštipnúť\npreštipovať\npreštrajkovalo\npreštrajkovaný\npreštudovania\npreštudovanie\npreštudovaním\npreštudovaniu\npreštudovaný\npreštudovať\npreštúrať\npreštvaný\npreštverať\npreštylizovať\nprešúchať\nprešuchnúť\nprešumieť\nprešustrované\nprešustrovanie\nprešustrovaniu\nprešustrovanú\nprešustrovaných\nprešustrovať\nprešvacnúť\nprešvihnúť\nprešvihnutý\npretackať\npretáčaní\npretáčania\npretáčanie\npretáčaniu\npretáčať\nPreťahovacie\npreťahovacích\npreťahovačka\nPreťahovačky\npreťahovane\npreťahovania\npreťahovaniam\npreťahovanie\npreťahovaním\npreťahovaniu\npreťahovaný\npreťahovať\npreťahujúci\npretakať\npretaktizovaná\npretancovanej\npretancovať\npretápanie\npretápať\npretáram\npretárať\npreťatá\npreťaté\npreťatého\npreťatie\npreťatím\npreťatiu\npreťať\npretavenia\npretavenie\npretavením\npretaveniu\npretavený\npretaviť\npretavovania\npretavovanie\npretavovaný\npretavovať\npreťažene\npreťaženie\npreťaženosť\npreťažený\npreťažiť\npreťažko\npreťažký\npreťažovanie\npreťažovaním\npreťažovaniu\npreťažovaný\npreťažovať\npretečene\npretečenie\npretečený\npretechnizovanej\npretechnizovaním\npretechnizovanom\npretechnizovanou\npretek\npretekajúci\npretekami\npretekania\npretekanie\npretekaním\npretekaniu\npretekaný\npretekár\npretekárka\npretekársky\npretekársky\npretekať\npretekmi\npretekoch\npretekom\npretekov\npretekovísk\npretekovisko\npretekový\npreteky\npretelefonoval\npretelefonovala\npretelefonovali\npretelefonovalo\npretelefonovanie\npretelefonovaním\npretelefonovaný\npretelefonovať\npretelefonuje\npretelefonujem\npretelefonujeme\npretelefonujete\npretelefonujú\npretenciózny\npretendent\npretendenta\npretendenti\npretendentov\npretendovať\npretenučký\npretenzia\npretenzií\npreteplený\npretepliť\npretepľovať\npreterigať\npréterít\npréteritum\npreterovať\npretetovanie\npretext\npretextovanie\npretí\npretiahnú\npretiahnutie\npretiahnuto\npretiahnutosť\npretiahnuť\npretiahnutý\npretie\npretiecť\npretierať\npretíchnuť\npretínajúci\npretínanie\npretínať\npretískať\npretisnúť\npretisnutý\npretkaný\npretkať\npretkávanie\npretkávaný\npretkávať\npretknúť\npretla\npretláčací\npretláčania\npretláčanie\npretláčaním\npretláčaniu\npretláčaný\npretláčať\npretlač\npretlačenie\npretlačený\npretlačiť\npretlačovací\npretlačovanie\npretlačovaním\npretlačovaný\npretlačovať\npretlak\npretlakový\npretĺcť\npretlčenie\npretli\npretlie\npretlieť\npretlievajúci\npretĺkať\npretĺkať\npretlmočený\npretlmočiť\npretlo\npretmavý\npretnúť\npretnuté\npretnutie\npreto\npretočenie\npretočený\npretočiť\npretok\npretokov\npretol\npretolejár\npretom\nprétor\nPretoria\npretorián\nPretória\nPretórijčan\npretórijský\npretože\npretraktované\npretransformovať\npretrápiť\npretras\npretŕčať\npretrénovane\npretrénovanosťami\npretrénovanosti\npretrénovaností\npretrénovanostiach\npretrénovanostiam\npretrénovanosťou\npretrénovanosť\npretrénovaný\npretrepať\npretrepávanie\npretretí\npretrhané\npretrhanie\npretrhaniu\npretrhaných\npretrhať\npretŕhať\npretrhávať\npretrhávka\npretrhnutia\npretrhnutie\npretrhnutím\npretrhnutiu\npretrhnúť\npretrhnutý\npretrhovať\npretriasaná\npretriasané\npretriasaného\npretriasanej\npretriasaní\npretriasania\npretriasanie\npretriasanou\npretriasaných\npretriasaným\nPretriasaný\npretriasať\npretriasť\npretriedenie\npretriedeniu\npretriedených\npretriediť\npretrieť\npretromfnutie\npretromfnúť\npretromfovať\npretroviť\npretrp\npretrpeniu\npretrpený\npretrpieť\npretrúc\npretrvaní\npretrvania\npretrvanie\npretrvaním\npretrvaniu\npretrvanú\npretrvať\npretrvávajúci\npretrvávaní\npretrvávania\npretrvávanie\npretrvávaním\npretrvávaniu\npretrvávať\npretržitý\npretučnenosť\npretučnený\npretučný\npretvárač\npretváračský\npretvárajúci\npretvárajúco\npretvárania\npretváranie\npretváraním\npretváraniu\npretváraný\npretvárateľa\npretváratelia\npretvárateľka\npretvárateľmi\npretvárateľoch\npretvárateľom\npretvárateľov\npretvárateľovi\npretvárateľský\npretvárateľ\npretvárať\npretváravý\npretvárka\npretvarovať\npretvor\npretvorenia\npretvorenie\npretvorením\npretvoreniu\npretvorený\npretvoriť\npretvorte\npretým\npreúbohý\npreuč\npreúčtoval\npreúčtovala\npreúčtovali\npreúčtovaná\npreúčtované\npreúčtovanie\npreúčtovaných\npreúčtovať\npreúčtováva\npreúčtovávanie\npreúčtovávaný\npreúčtovávať\npreúčtuje\npreúčtujú\npreúdenie\npreuk\npreukázanie\npreukázaný\npreukázateľne\npreukázateľný\npreukázať\npreukaz\npreukazne\npreukazný\npreukazovania\npreukazovanie\npreukazovaním\npreukazovaniu\npreukazovaný\npreukazovať\npreukazujúci\npreukáž\npreukáže\npreukážem\npreukážeme\npreukážeš\npreukážete\npreukážka\npreukážme\npreukážte\nPreukážte\npreukážu\npreukážuc\npreukrutne\npreukrutný\npreumelkovaný\npreúprimný\npreúrodný\nprevaď\nprevádzací\nprevádzač\nprevádzačka\nprevádzačský\nprevádzačstvo\nprevádzajúcich\nprevádzania\nprevádzanie\nprevádzaním\nprevádzaniu\nprevádzaný\nprevádzateľ\nprevádzať\nprevádzkár\nprevádzkára\nprevádzkar\nprevádzkareň\nprevádzkáreň\nprevádzkári\nprevádzkarka\nprevádzkarňach\nprevádzkárňach\nprevádzkarňam\nprevádzkárňam\nprevádzkarský\nprevádzka\nprevádzkovane\nprevádzkovanie\nprevádzkovaný\nprevádzkovateľ\nprevádzkovateľka\nprevádzkovať\nprevádzkovo\nprevádzkovotechnický\nprevádzkový\nprevádzkujúci\nprevádzkyschopnosť\nprevádzkyschopný\npreváh\nprevahách\nprevahám\nprevahami\nprevaha\nprevalcoval\nprevalcovala\nprevalcovali\nprevalcovalo\nprevalcovania\nprevalcovanie\nprevalcovaný\nprevalcovať\nprevalcuj\nprevalcuje\nprevalcujem\nprevalcujeme\nprevalcuješ\nprevalcujete\nprevalcujme\nprevalcujte\nprevalcujú\nprevalcujúc\nprevalencia\nprevalenciou\nprevalenej\nprevalení\nprevalenia\nprevalenie\nprevalením\nprevaleniu\nprevalenou\nprevaliť\nprevaľovaní\nprevaľovanie\nprevaľovaním\nprevaľovať\nprevaľujúce\nprevaľujúci\nprevandrovať\nprevar\nprevárať\nprevarenie\nprevarený\nprevarikácia\nprevariť\nprevarte\npreväz\npreväzovania\npreväzovanie\npreväzovaniu\npreväzovať\nprevážania\nprevážanie\nprevážaním\nprevážaný\nprevážať\npreváženia\npreváženie\nprevážením\npreváženiu\nprevážený\nprevážiť\nprevážka\nprevážna\nprevažne\nprevážne\nprevážnou\nprevažný\nprevažok\nprevažovane\nprevažovanie\nprevažovaniu\nprevažovaný\nprevažovať\nprevažujúcejšej\nprevažujúcejší\nprevažujúcejšia\nprevažujúcejšie\nprevažujúcejšieho\nprevažujúcejšiemu\nprevažujúcejších\nprevažujúcejším\nprevažujúcejšími\nprevažujúcejšiu\nprevažujúcejšom\nprevažujúcejšou\nprevažujúci\nprevažujúco\nprevedenie\nprevedený\nprevediteľnosť\nprevediteľný\nprevegetovať\nprevegetuje\npreveksľované\npreveksľovať\npreveľ\npreveľa\nprevelice\npreveliká\npreveliť\npreveľký\npreveľmi\nprevencia\nprevenčne\nprevenčný\npreventilovať\npreventívny\nprever\npreverenia\npreverenie\npreverením\nprevereniu\npreverený\npreveriť\npreverovací\npreverovanie\npreverovaný\npreverovateľ\npreverovateľka\npreverovať\npreverte\npreveselý\nprevesený\nprevesiť\nprevesovať\nprevešiavať\nprevetrania\nprevetranie\nprevetraný\nprevetrať\nprevetrávané\nprevetrávanie\nprevetrávať\nprevezenia\nprevezenie\nprevezením\nprevezený\nprevi\npreviatie\npreviať\npreviazania\npreviazanie\npreviazaním\npreviazaniu\npreviazanosť\npreviazaný\npreviazať\npreviaž\npreviaže\npreviažem\npreviažeme\npreviažeš\npreviažete\npreviažme\npreviažte\npreviažu\npreviažuc\nprevídateľnejší\nprevidel\nprevidieť\nprevierka\nprevierkový\npreviesť\nprevievaný\nprevievať\npreviezť\nprevíjač\nprevíjača\nprevíjači\nprevíjaní\nprevíjania\nprevíjanie\nprevíjať\nprevije\nprevijem\nprevijeme\npreviješ\nprevijete\nprevijú\nprevijúc\nprevime\nprevíňajú\nprevíňanie\nprevíňaný\nprevinenie\nprevinilec\nprevinilejšej\nprevinilejší\nprevinilejšia\nprevinilejšie\nprevinilejšieho\nprevinilejšiemu\nprevinilejších\nprevinilejším\nprevinilejšími\nprevinilejšiu\nprevinilejšom\nprevinilejšou\nprevinilý\npreviniť\nprevinovanie\npreviňovať\nprevinutia\nprevinutie\nprevinúť\nprevísať\nprevis\nprevisí\nprevisím\nprevisnutosť\nprevisnúť\nprevisnutý\nprevisovať\nprevite\npreviť\nprevitom\nprevízia\nprevláč\nprevláčať\nprevlačovať\nprevládajúci\nprevládajúco\nprevládaní\nprevládania\nprevládanie\nprevládať\nprevládnutí\nprevládnuť\nprevládz\nprevlečník\nprevlhnúť\nprevlhnutý\nprevlhovať\nprevlhúvať\nprevliecť\nprevliečka\nprevliekať\nprevod\nprevodca\nprevodcom\nprevodcov\nprevodcovi\nprevodcu\nprevoditeľnosť\nprevoditeľný\nprevodka\nprevodník\nprevodníky\nprevodný\nprevodovka\nprevodový\nprevolá\nprevolajú\nprevolal\nprevolali\nprevoláme\nprevolania\nprevolanie\nprevolaný\nprevolať\nprevoláte\nprevolávanie\nprevoz\nprevozný\nprevracajúci\nprevracanie\nprevracať\nprevrat\nprevrátene\nprevrátenie\nprevrátenosť\nprevrátený\nprevrátiť\nprevratmi\nprevratne\nprevratnosť\nprevratný\nprevratový\nprevrav\nprevrávať\nprevravieť\nprevŕhať\nprevrhnutia\nprevrhnutie\nprevrhnúť\nprevrhovať\nprevŕtaná\nPrevŕtanie\nprevŕtanou\nprevŕtať\nprevrtávať\nprevŕtavať\nprevrtnúť\nprevrúbľovaním\nprevrúbľovaných\nprevtelenie\nprevtelený\nprevtelí\nprevtelil\nprevtelili\nprevtelilo\nprevtelíme\nprevteliť\nprevteľovaní\nprevteľovania\nprevteľuje\nprevýchov\nprevýchovách\nprevýchovám\nprevýchovami\nprevychovať\nprevychovávať\nprevýchova\nprevýchovný\nprevychuj\nprevychuje\nprevychujem\nprevychujeme\nprevychuješ\nprevychujete\nprevychujme\nprevychujte\nprevychujú\nprevychujúc\nprevysoký\nprevýšenie\nprevýšený\nprevýšiť\nprevyšovanie\nprevyšovanom\nprevyšovať\nprevyšujúci\nprevzácne\nprevzácny\nprevzácnymi\nprevzatie\nprevzato\nprevzatý\nprevzdušnením\nprevzdušnený\nprevzdušni\nprevzdušnime\nprevzdušnite\nprevzdušniť\nprevzdušňovanie\nprevzdušňovať\nprevzial\nprevziať\nprevznešený\nprevždy\nprez\nprezaháľal\nprezaháľať\nprezamestnanosť\nprezázračný\nprezbroja\nprezbrojenia\nprezbrojenie\nprezbrojením\nprezbrojeniu\nprezbrojený\nprezbrojí\nprezbrojila\nprezbrojili\nprezbrojíme\nprezbrojiť\nprezdobený\nprezencia\nprezenčke\nprezenčku\nprezenčky\nprezenčne\nprezenčný\nprézens\nprézenta\nprezentácia\nprezentačno\nprezentačný\nprezent\nprézent\nprezentík\nprezentmi\nprézentmi\nprézentný\nprezentovanie\nprezentovaný\nprezentovať\nprezentujúci\nPrezerač\nprezeranie\nprezeraný\nprezerať\nprezervatív\nprezervatíve\npreziabnuť\npreziabnutý\npreziať\nprezid\nprezident\nprezidentka\nprezidentová\nprezidentoval\nprezidentovali\nprezidentovania\nprezidentovanie\nprezidentovaním\nprezidentovaniu\nprezidentové\nprezidentov\nprezidentský\nprezidentstvo\nprezidentuje\nprezidiálny\nprezídium\nprezieravo\nprezieravosť\nprezieravý\nprezimený\nprezimovaní\nprezimovania\nprezimovanie\nprezimovaniu\nprezimovať\nprezimujúca\nprezimujúce\nprezimujúci\nprezimúvať\nprezívať\nprézle\nprezlečenie\nprezlečený\nprezliecť\nprezliekania\nprezliekanie\nprezliekareň\nprezliekáreň\nprezliekarňach\nprezliekárňach\nprezliekarňam\nprezliekárňam\nprezliekať\nprezlostný\npreznačkovať\nprezobať\nprezradenia\nprezradenie\nprezradením\nprezradeniu\nprezradený\nprezradiť\nprezrádzajúce\nprezrádzajúci\nprezrádzania\nprezrádzanie\nprezrádzaním\nprezrádzať\nprezradzovania\nprezradzovať\nprezretia\nprezretie\nprezretiu\nprezretý\nprezrieť\nprezrieť\nprezrievať\nprezrúc\nprezumpcia\nprezumpčný\nprezumptívne\nprezumptívny\nprezutie\nprezuť\nprezúvať\nprezúvka\nprezuvka\nprezváňať\nprezvať\nprezveď\nprezvedá\nprezvedaj\nprezvedajme\nprezvedajte\nprezvedajú\nprezvedajúc\nprezvedám\nprezvedáme\nprezvedáš\nprezvedáte\nprezvedať\nprezvedieť\nprezvedný\nprezvi\nprezviedať\nprezvime\nprezvite\nprezvonením\nprezvoňiť\nprezvoniť\nprezývaný\nprezývať\nprezývka\nprežal\nprežalostný\nprežaroval\nprežarovala\nprežarovali\nprežarované\nprežarovanie\nprežarovať\nprežaruje\nprežehliť\nprežehnať\nprežehnávať\npreželie\npreželiem\nprežhavený\nprežhaví\nprežiarenie\nprežiarený\nprežiaria\nprežiaril\nprežiarila\nprežiarili\nprežiariť\nprežiaruje\nprežieranie\nprežierať\nprežitie\nprežito\nprežitok\nprežitosť\nprežiť\nprežitý\npreživ\nprežívajúcou\nprežívanie\nprežívanú\nprežívať\npreživiť\npreživorila\npreživorili\npreživoriť\nprežraný\nprežrať\nprežrieť\nprežrúc\nprežuť\nprežúvanie\nprežuvať\nprežúvať\nprežúvavce\nprežúvavec\nprežviakať\nprežviakovať\npŕhľav\npŕhľava\npŕhľavka\npŕhľavník\npŕhľavníkovi\npŕhliť\npŕhlivý\nprchajúci\npŕchať\nprchať\nprchavo\nprchavosť\nprchavý\nprchko\nprchkosť\nprchký\npŕchla\npŕchli\nprchlivý\npŕchlo\npŕchne\npŕchnem\npŕchneme\npŕchneš\npŕchnete\npŕchni\npŕchnime\npŕchnite\npŕchnu\npŕchnuc\nprchnúceho\nprchnúcej\nprchnúci\nprchnúcich\npŕchnuť\nprchnúť\npŕchol\npri\nprí\npriadavať\npriadka\npriadky\npriadny\npriadzach\npriadzam\npriadza\npriadzí\npriadzový\npriahať\npriakademický\npriam\npriamejšej\npriamejší\npriamejšia\npriamejšie\npriamejšieho\npriamejšiemu\npriamejších\npriamejším\npriamejšími\npriamejšiu\npriamejšom\npriamejšou\npriamka\npriamkový\npriamočiarejšej\npriamočiarejší\npriamočiarejšia\npriamočiarejšie\npriamočiarejšieho\npriamočiarejšiemu\npriamočiarejších\npriamočiarejším\npriamočiarejšími\npriamočiarejšiu\npriamočiarejšom\npriamočiarejšou\npriamočiarosť\npriamočiary\npriamosť\npriamoúmerný\npriamy\nprianie\npriapický\npriapizmus\npriapský\npriasť\npriata\npriate\npriateho\npriatej\npriateľ\npriateľN\npriatelenie\npriateliť\npriateľka\npriateľkaN\npriateľkin\npriateľko\npriateľnejšie\npriateľovej\npriateľovho\npriateľových\npriateľskosť\npriateľsky\npriateľský\npriateľstvo\npriateľstvoN\npriateľu\npriatemu\npriati\npriatí\npriatia\npriatie\npriatočníctvo\npriatu\npriať\npriaty\npriazeň\npriazeňN\npriazňach\npriazňam\npriaznivec\npriaznivejších\npriaznivo\npriaznivosť\npriaznivosti\npriaznivý\npribájiť\npribalenie\npribalením\npribalený\npribaliť\npribaľovať\npribásniť\npribaviť\npribehávať\npríbeh\npribehnúť\npríbehový\npribehuj\npribehúvať\nPríbelce\nPríbeliec\nPribeník\npriberaní\npriberania\npriberanie\npriberaním\npriberaniu\npriberať\nPribeta\nPribete\nPribety\npribi\npribiehať\npribiely\npribíjačka\npribíjanie\npribíjať\npribije\npribijem\npribijeme\npribiješ\npribijete\npribijú\npribijúc\npribime\nPribina\npribite\npribiť\npribitý\npribledý\npriblíženie\npriblížený\npriblížiť\npriblížiť\npribližne\npribližnosť\npribližný\npribližovaní\npribližovania\npribližovanie\npribližovaním\npribližovaniu\npribližovanom\npribližovať\npribližujúci\npribližujúcich\npribodnem\npribodni\npribodnúť\npribohatý\npribojazlivý\npríboj\npríbojový\nPríbojská\npríbor\npríborník\npribrania\npribraný\npribratí\npribratie\npribratím\npribrať\npribrnknúť\npribrúsiť\npribrusovať\npribrzdenia\npribrzdenie\npribrzdením\npribrzdeniu\npribrzdený\npribrzdi\npribrzdime\npribrzdite\npribrzdiť\npribrzďovať\npribúdajúci\npribúdaní\npribúdania\npribúdanie\npribúdaním\npribúdaniu\npribúdať\npribudnutej\npribudnutie\npribudnutím\npribudnúť\npribudoval\nPribudovali\npribudovaním\npribudovaný\npribudovať\npribuchnuté\npribuchnúť\npribuchovať\npriburácať\npríbuzensky\npríbuzenský\npríbuzenstvo\npríbuzne\npríbuznosť\npríbuzný\npríbytok\npribzučať\npricapiť\npricapkať\npricapnúť\nprícestný\npricestovaní\nPricestovania\npricestovaniach\npricestovaním\npricestovaných\npricestovať\npricicať\npriciepkať\npricintľavý\npricitlivý\npricláňať\npricloniť\npricudný\npricukrovať\npricupkať\npricvakne\npricvaknite\npricvaknúť\npricválať\npricviknutiu\npricviknúť\npríč\npričapiť\npričapnúť\npričarila\npričariť\npričarovať\npričas\npríčastie\npričasto\npríčasťový\npričastý\npriča\npričerstvý\npričesať\npričesávať\npríčesok\npríčetne\npríčetnosť\npríčetný\npričí\npričiahnu\npričierno\npričierny\npričíňať\npríčina\npričinenie\npričiniť\npríčinlivo\npríčinlivosť\npríčinlivý\npríčinne\npríčinnosť\npríčinný\npričiňovať\npričítaním\npričítať\npričitovať\npričľapiť\npričlenenia\npričlenenie\npričlenením\npričleneniu\npričlenený\npričleniť\npričleňované\npričleňovania\npričleňovanie\npričleňovaním\npričleňovaných\npričleňovať\npričňa\npriční\npričniť\npričom\npričuchli\npričuchnú\npričuchnúť\npričuchnutie\npričuchol\npričupené\npričupiť\npričupnúť\npríd\npriďabiť\npridájajúca\npridájať\npriďaleko\npridanie\npridaný\npridariť\npridať\npridávač\npridávanie\npridávaný\npridávať\nprídavkový\nprídavný\nprídavok\npridecentný\nprídel\nprídelcovia\nprídele\npridelene\npridelenec\npridelenie\npridelenkyňa\npridelený\npridelimitovaný\nprideliť\nprídelmi\nprideľovací\nprideľovane\nprideľovanie\nprideľovaný\nprideľovať\nprídelový\nprídi\npridláviť\npridlho\npridlhý\npridobre\npridobrý\npridojí\nprídomie\nprídomok\npridomový\npridospelý\npridraho\npridrahý\npridrhnúť\npridrhnutý\npridrobči\npridrobčime\npridrobčite\npridrobčiť\npridrôtovaný\npridrôtovať\npridrsný\npridruženia\npridruženiami\npridruženie\npridružením\npridruženiu\npridružený\npridružiť\npridružovaní\npridružovania\npridružovanie\npridružovaním\npridružovaných\npridružovať\npridržá\npridržaj\npridržajme\npridržajte\npridržajú\npridržajúc\npridržám\npridržáme\npridŕžane\npridŕžania\npridržanie\npridŕžanie\npridržaním\npridržaniu\npridržáš\npridržáte\npridržať\npridŕžať\npridržiavač\npridržiavaní\npridržiavanie\npridržiavaných\npridržiavať\nprídržný\npridržovač\npridržovania\npridržovanie\npridržovaný\npridržovať\npríduc\npridunajské\npridunajských\npridupľoval\nPridupľovali\npridupľovať\npridupľuje\npridusene\npridusenia\npridusenie\npridusením\npridusený\npridusiť\npridúšať\npridvihnúť\nprídych\npriebeh\nprieberčivo\nprieberčivosť\nprieberčivý\nprieberný\npriebežne\npriebežný\nPrieboj\nPrieboja\npriebojne\npriebojník\npriebojníku\npriebojníky\npriebojnosť\npriebojný\npriecestie\npriecestný\npriečelie\npriečelný\npriečiaci\npriečin\npriečinkový\npriečinok\npriečiť\npriečka\npriečkový\npriečmo\npriečnic\npriečnica\npriečnik\npriečnikovi\npriečnosť\npriečny\npriedel\npriedele\npriedelmi\npriedomie\nprieduch\nprieduchový\nprieduška\nprieduškový\npriedušnica\npriedušnicový\npriedušnička\npriedušnosť\npriedušný\npriehľad\npriehľadne\npriehľadnosť\npriehľadný\npriehľadový\npriehlavková\npriehlavok\npriehlbeň\npriehlbín\npriehlbina\npriehlbinka\npriehrada\npriehradka\npriehradne\npriehradný\npriehradový\npriehršť\npriehrštie\npriehyba\npriehyb\npriechod\npriechodka\npriechodne\npriechodnosť\npriechodný\npriechodový\npriechody\npriek\nprieklep\nprieklepový\npriekom\npriekop\npriekopa\npriekopnícky\npriekopníctva\npriekopníctvo\npriekopníčka\npriekopník\npriekopový\npriekor\npriekupnícky\npriekupníctvach\npriekupníctvam\npriekupníctvo\npriekupníčiť\npriekupníčka\npriekupník\nprielaz\nprielez\nprieliv\nprielive\nprieloh\nprielom\nprielomový\nprieložník\nprieložníkovi\nPrieložný\nprieluba\nprieluk\nprieluka\nprielukami\nprieluke\nprieluku\nprieluky\npriemer\npriemerka\npriemerkovanie\npriemerkovať\npriemerne\npriemerno\npriemernosť\npriemerný\npriemerovo\npriemet\npriemetňa\npriemetní\npriemy\npriemyselne\npriemyselnícky\npriemyselník\npriemyselno\npriemyselný\npriemysel\npriemyslovák\npriemyslovka\npriemyslovo\npriemyslový\nprienik\npriepad\npriepadlisku\npriepasť\npriepastne\npriepastný\npriepichu\npriepis\npriepisových\nprieplav\nprieplavový\nprieprava\npriepust\npriepustka\npriepustmi\npriepustne\npriepustnosť\npriepustný\nprieramok\nprierazne\nprieraznosť\nprierazný\nprierazoch\nprierazom\nprierez\nprierezovo\nprierezový\nprieruba\npriesada\npriesadový\npriesakový\npriesečnica\npriesečník\npriesek\npriesekový\npriesku\nprieskum\nprieskumník\nPrieskumno\nprieskumný\nprieskumový\nprieslinka\npriesmyk\npriestor\npriestorne\npriestornosť\npriestorný\npriestorovo\npriestorovosť\npriestorovosti\npriestorový\npriestrannosť\npriestranný\npriestranstvo\npriestrel\npriestrele\npriestrelmi\npriestrelný\npriestup\npriestupkový\npriestupníci\npriestupníkom\npriestupníkov\npriestupnosť\npriestupný\npriestupok\npriestupov\npriesvit\npriesvitka\npriesvitna\npriesvitne\npriesvitnosť\npriesvitný\npriesvitný\npriesyp\npriešmyk\nprieťah\nprietočný\nprietok\nprietokomera\nprietokomer\nprietokový\nprietrž\nPrietržka\nPrietržku\nprietržník\nprietržníku\nprietržníky\nprieť\nPrievaloch\nprievalov\nPrievaly\nprievan\nprievanistý\nprievanný\nprieverčivosť\nPrievidza\nprievidzkému\nprievidzkom\nprievidzkou\nprievidzkú\nprievidzkých\nprievidzkým\nPrievidzký\nprievis\nprievoz\nprievozné\nprievozník\nprievozný\nPrievozská\nPrievozskej\nprievozskom\nPrievozskou\nPrievozskú\npriezor\npriezračne\npriezračnosť\npriezračný\npriezv\npriezvedmi\npriezvedný\npriezvedoch\npriezvedom\npriezvedov\npriezvedy\npriezvisko\nprifar\nprifárať\nprifarbená\nprifarbené\nprifarbenia\nprifarbi\nprifarbime\nprifarbite\nprifarbiť\nprifarbovania\nprifarbovanie\nprifarbovaním\nprifarbovaný\nprifarbovať\nprifarené\nprifariť\nprifarte\nprifičať\nprifrčal\nprifrčať\nprifučať\nprifúknuť\nprifúkol\nprifukoval\nprifuňať\nprigazdovať\npriglejiť\nprigniaviť\nprigúľať\nprihadzoval\nprihadzovala\nprihadzovali\nprihadzovalo\nPrihadzovalo\nPrihadzované\nprihadzovania\nprihadzovaniach\nprihadzovaním\nprihadzovať\nprihadzuj\nprihadzuje\nprihadzujem\nprihadzujeme\nprihadzuješ\nprihadzujete\nprihadzujme\nprihadzujte\nprihadzujú\nprihadzujúc\nprihamovať\npriháňať\npríhanlivý\nprihárať\npriharcovať\nprihartusiť\nprihasiť\nprihladiť\nprihladko\nprihladký\nprihládzať\nprihladzovať\nprihlásenie\nprihlásený\nprihlásiť\nprihlasno\nprihlasný\nprihlasovací\nprihlasovaná\nprihlasované\nprihlasovaného\nprihlasovanej\nprihlasovanie\nprihlasovaných\nprihlasovateľ\nprihlasovateľka\nprihlasovať\nprihláška\nprihláškový\nprihlboko\nprihlboký\nprihliadania\nprihliadanie\nprihliadaním\nprihliadať\nprihliadnuté\nprihliadnutie\nprihliadnuť\nprihlob\nprihlobí\nprihlobia\nprihlobiac\nprihlobil\nprihlobila\nprihlobili\nprihlobilo\nprihlobím\nprihlobíme\nprihlobíš\nprihlobiť\nprihlobíte\nprihlobme\nprihlobte\nprihlučne\nprihlučno\nprihlučný\nprihluchlý\nprihlúpi\nprihlúpli\nprihlúplo\nprihlúplou\nprihlúply\nprihlúplych\nprihlúpy\nprihnať\nprihnoja\nprihnojenie\nprihnojil\nprihnojiť\nprihnojovali\nprihnojovania\nprihnojovanie\nprihnojovať\nprihnúť\nprihnutý\npríhod\npríhoda\nprihodené\nprihodení\nprihodeniach\nprihodenie\nprihodením\nprihodiť\npríhodne\npríhodnosť\npríhodný\npriholiť\nprihopkať\nprihopkovať\nprihor\nprihorenina\nprihorený\nprihorieť\nprihorký\nprihorlivý\nprihorúca\nprihorúci\nprihorúco\nprihotovať\nprihotovený\nprihotoviť\nprihováračov\nprihovárajúcich\nprihovárania\nprihováraniach\nprihováranie\nprihovárať\nprihovor\npríhovor\nprihovorení\nprihovorenie\nprihovoriť\nprihovorte\nprihrab\nprihrabať\nprihrabávať\nprihrabovať\nprihrabúvať\nprihrané\nprihraničný\nprihraním\nprihrať\nprihrávanie\nprihrávaním\nprihrávať\nprihrávka\nprihrbený\nprihrbiť\nprihrčať\nprihrdúsiť\nprihrdý\nprihrej\nprihreje\nprihrejem\nprihrejeme\nprihreješ\nprihrejete\nprihrejme\nprihrejte\nprihrejú\nprihrejúc\nprihriate\nprihriatie\nprihriať\nprihriaty\nprihrievanie\nprihrievaním\nprihrievaných\nprihrievať\nprihrknúť\nprihrkotať\nprihrmieť\nprihrmotať\nprihrmotiť\nprihrň\nprihŕňať\nprihrnie\nprihrniem\nprihrnieme\nprihrnieš\nprihrniete\nprihrňme\nprihrňte\nprihrnutím\nprihrnúť\nprihrotený\nprihroziť\nprihrubý\nprihryznúť\nprihustiť\nprihustý\nprihýnať\nprichádzajúci\nprichádzanie\nprichádzaním\nprichádzať\nprichladný\npríchlop\nprichlopiť\npríchlopka\nprichlopnúť\npríchlopok\npríchod\nprichodiace\nprichodiť\npríchodový\npríchodzej\npríchodzí\npríchodzie\npríchodzích\npríchodzím\npríchodzími\npríchodzom\npríchov\nprichová\nprichované\nprichovaním\nprichovať\npríchovkov\npríchovok\nprichrípnutý\nprichudobný\nprichudý\npríchuť\nprichvaľovať\nprichvátiť\nprichycovať\nprichýľ\nprichýlenie\nprichýleniu\nprichýli\nprichýlia\nprichýliac\nprichýlil\nprichýlila\nprichýlili\nprichýlilo\nprichýlim\nprichýlime\nprichýliš\nprichýliť\nprichýlite\nprichýľme\npríchylný\npríchylok\nprichyľovať\nprichýľte\nprichystaný\nprichystať\nprichytávanie\nprichytávať\nprichytenie\nprichytený\nprichytiť\npríchytka\nprichytro\npríj\nprijachať\nprijate\nprijateľne\nprijateľnosť\nprijateľný\nprijatežnosť\nprijatieN\nprijatie\nprijato\nprijať\nprijatý\npríjazd\npríjazdný\npríjazdový\nprijem\npríjemca\npríjemcovej\nprijeme\npríjemkyňa\nprijemne\nprijemnej\npríjemnejší\npríjemne\npríjemne\npríjemnosť\npríjemný\npríjem\nprijesť\nprijímací\nprijímačiek\nprijímač\nprijímačky\nprijímajúca\nprijímajúceho\nprijímajúci\nprijímanie\nprijímaný\nprijímateľ\nprijímateľka\nprijímať\npríjmem\npríjmeme\npríjmeš\npríjmete\npríjmi\npríjmime\npríjmite\npríjmovo\npríjmový\npríjmuc\nprík\nprikamarátil\nprikázanie\nprikázaný\nprikázať\npríkaz\npríkazca\npríkazníci\nPríkazník\npríkazníka\npríkazníkmi\npríkazníkoch\npríkazníkom\npríkazníkov\npríkazný\nprikazovací\nprikazovacia\nprikazovacie\nprikazované\nprikazovaní\nprikazovať\npríkazovo\npríkazový\nprikazujúce\nprikazujúci\nprikazujúcim\nprikazujúcom\nprikáž\nprikáže\nprikážem\nprikážeme\nprikážeš\nprikážete\nprikážme\nprikážte\nprikážu\nprikážuc\npríkl\nprikladania\nprikladanie\nprikladaný\nprikladať\npríklad\npríkladmo\npríkladne\npríkladnosť\npríkladný\npríkladový\nprikľakne\nprikľaknúť\nprikláňania\nprikláňanie\nprikláňaním\nprikláňať\npríklep\npríklepe\npriklepnutia\npriklepnutie\npriklepnutím\npriklepnúť\npriklepnutý\npríklepom\npríklepový\npríklepu\npriklincované\npriklincovanie\npriklincovať\npriklincúva\npriklincúvaj\npriklincúvajme\npriklincúvajte\npriklincúvajú\npriklincúvajúc\npriklincúval\npriklincúvala\npriklincúvali\npriklincúvalo\npriklincúvam\npriklincúvame\npriklincúvaš\npriklincúvať\npriklincúvate\npríklon\npriklonenia\npriklonenie\npriklonením\npriklonený\nprikloniť\npríklop\npriklopiť\npríklopka\npriklopnúť\npríklopok\npríklopový\npriklusá\npriklusaj\npriklusajme\npriklusajte\npriklusajú\npriklusajúc\npriklusám\npriklusáme\npriklusáš\npriklusáte\npriklusať\nprikmotriť\npriknísať\nprikolísať\nprikonať\npríkon\nprikoreniť\npríkorie\nprikotúľať\nprikovanie\nprikovaný\nprikovať\nprikovávať\nprikračovať\nprikrádať\nprikrádavý\nprikradnúť\nprikrajovať\npríkras\npríkrasa\nprikrásny\nprikrášlenia\nprikrášlený\nprikrášliť\nprikrášľované\nprikrášľovaní\nprikrášľovania\nprikrášľovanie\nprikrášľovaním\nprikrášľovať\nprikráť\nprikrátiť\nprikrátka\nprikrátke\nprikrátkemu\nprikrátki\nprikrátko\nprikrátku\nprikrátky\nprikrátkymi\nprikŕčať\nprikrčene\nprikrčený\nprikrčiť\npríkrejšej\npríkrejší\npríkrejšia\npríkrejšie\npríkrejšieho\npríkrejšiemu\npríkrejších\npríkrejším\npríkrejšími\npríkrejšiu\npríkrejšom\npríkrejšou\nprikrepčiť\nprikresať\nprikresliť\nprikriatať\npríkrim\npríkrina\npríkriš\nprikriť\npríkriť\nprikrivkať\npríkrm\nprikŕmenie\nprikŕmiť\nprikrmované\nprikrmovaného\nprikrmovania\nprikrmovanie\nprikrmovaním\nprikrmovaných\nprikrmovať\nprikročené\nprikročiť\nprikročovať\nprikrojiť\npríkrosť\npríkrov\npríkrovný\nprikrúcať\nprikrucovať\nprikrútiť\nprikrytie\nprikryť\nprikrytý\nprikrývadlo\nprikrývaniu\nprikrývať\nprikrývka\npríkry\nprikúkať\nprikukávať\nprikúpenia\nprikúpenie\nprikúpením\nprikúpený\nprikúpiť\nprikupovanie\nprikupovaním\nprikupovaný\nprikupovať\nprikúriť\nprikurovať\nprikuť\nprikutý\nprikúvať\nprikvačiť\nprikvapnúť\nprikvitnúť\nprikydnúť\nprikyslá\nprikývať\nprikyvkať\nprikyvkávať\nprikývnutí\nprikývnutie\nprikývnuť\nprikyvovanie\nprikyvovať\nprilacno\nprilacný\npriľahko\npriľahký\npriľahlosť\npriľahlý\npriľahnúť\nprilahodiť\nprilákanie\nprilákaný\nprilákať\npriláskať\nprilátať\nprilba\nprilbica\nprilepenie\nprilepený\nprilepiť\nPrílepoch\nprílepok\nprilepovaní\nprilepovať\nPrilepšené\nprilepšení\nprilepšenia\nprilepšeniam\nprilepšeniami\nprilepšenie\nprilepšením\nprilepši\nprilepšime\nprilepšite\nprilepšiť\nprilepšovaní\nprilepšovať\nprileť\nprílet\npriletenými\npriletieť\npriletovať\npriletúva\npriletúvaj\npriletúvajme\npriletúvajte\npriletúvajú\npriletúvajúc\npriletúval\npriletúvala\npriletúvali\npriletúvalo\npriletúvam\npriletúvame\npriletúvaš\npriletúvať\npriletúvate\nprílev\npríleve\npríležitosť\npríležitostne\npríležitostný\npríležitostný\npríležitý\npriliatím\npriliatiu\npriliať\nprilícovaný\nprilícovať\nprilieb\npriliehajúci\npriliehať\npriliehavo\npriliehavosť\npriliehavý\npriliepať\nprilietať\nprilietavali\nprilietlo\nprilievania\nprilievanie\nprilievať\npriliezať\npriliezť\nprilíhať\nprilinkované\nprilípať\nprilípavý\nprilipnúť\npríliš\nprílišne\nprílišný\npríliv\nprílive\nprílivový\npriľnavosť\npriľnavý\npriľnutia\npriľnúť\npríloh\npríloha\npriloženia\npriloženie\npriložením\npriložený\npriložiť\npríložka\npríložník\npríložný\npriľúbil\npriľúbila\npriľúbiť\nprilúdiť\nprim\nprima\nPrima\nprimá\nprimä\nprimabalerín\nprimabalerínach\nprimabalerínam\nprimabalerína\nprimabelerína\nprimaciálny\nprimadon\nprimadona\nprimadonský\nprímach\nprimaj\nprimäje\nprimajstrovať\nprimäjú\nprimal\nprimäl\nprimala\nprimäla\nprimali\nprimäli\nprimalo\nprimálo\nprimälo\nprimaľované\nprimaľovanou\nprimaľovať\nprimaľovávať\nprimaľúvať\nprimalý\nprímam\nPrímam\nprimámiť\nprimán\nprimáni\nprimánka\nprimánovi\nprimánsky\nprimapara\nprimár\nprimariát\nprimariátov\nprimariátu\nprimariáty\nprimárius\nprimárka\nprimárky\nprimárnosť\nprimárny\nprimas\nprímas\nprímasovo\nprimastené\nprimasti\nprimastime\nprimastite\nprimastiť\nprimastný\nprimáš\nprimašírovať\nprimať\nprimäť\nprimát\nprimáti\nprimátmi\nprimátor\nprimátorka\nprimátormi\nprimátorov\nprimátorský\npríma\nprimaž\nprimáž\nprím\nprímen\nprímením\nprímeno\nprimerane\nprimeranie\nprimeranosť\nprimeraný\nprimerať\nprímer\nprimeriavaní\nprimeriavania\nprimeriavať\nprímerie\nprímesami\nprímes\nprímesi\nprímesí\nprímesiach\nprímesiam\nprímesok\nprímesou\nprímestrský\nprímestský\nprímestský\nprimeť\nprimetá\nprimetaj\nprimetajme\nprimetajte\nprimetajú\nprimetajúc\nprimetal\nprimetala\nprimetali\nprimetalo\nprimetám\nprimetáme\nprimetáš\nprimetať\nprimetáte\nprimetie\nprimetiem\nprimetieme\nprimetieš\nprimetiete\nprimeťme\nprimeťte\nprimetú\nprimetúc\nprimícia\nprimíciách\nprimíciám\nprimíciami\nprimície\nprimícií\nprimičný\nprimiesiť\nprimiesť\nprimiešania\nprimiešanie\nprimiešaním\nprimiešanina\nprimiešaný\nprimiešať\nprimiešavané\nprimiešavaní\nprimiešavania\nprimiešavať\nprimietla\nprimietli\nprimietlo\nprimietne\nprimietol\nprimilo\nprimín\nprimipara\nprimírny\nprimitív\nprimitivita\nprimitivizmus\nprimitívnejší\nprimitívnosť\nprimitívny\nprimknutí\nprimknutia\nprimknutie\nprimknutím\nprimknúť\nprimkýnať\nprimladý\nprimliaždiť\nprimlieť\nPrimnohé\nprimnohí\nprimnoho\nprimnohých\nprimnohými\nprimoc\nprimocný\nprimogenitúra\nprimontovať\nprimontúvali\nprimoravská\nprimordiálny\nprímorie\nprímorský\nprimotať\nprimrazenom\nprimraziť\nprimrieť\nprimŕzať\nprimrznutá\nprimrznuté\nprimrznúť\nPrimu\nprimula\nprimulka\nprimurovať\nprimus\nPrimus\nprimusieť\nprimyslieť\nprinajhoršom\nprinajlepšom\nprinajmenej\nprinajmenšom\nprináležať\nprináležiaci\nprináročné\nprinášajúci\nprinášanie\nprinášaný\nprinášať\nprinavracaní\nprinavracanie\nprinavracaním\nprinavracať\nprinavrátenia\nprinavrátenie\nprinavrátením\nprinavráteniu\nprinavrátený\nprinavrátiť\nprinc\nprinces\nprincesový\nprinceznách\nprinceznám\nprinceznami\nprincezná\nprinceznička\nprinceznička\nprincipál\nprincipálny\nprincíp\nprincipiálnosť\nprincipiálny\nprincmi\nPrincovho\nPrincovom\nprinesene\nprinesenie\nprinesením\nprinesený\nprineskoré\nprineskoro\npriniesť\nprinitovať\nprinízka\nprinízke\nprinízkej\nprinízko\nprinízkom\nprinízkou\nprinízku\nprinízky\nprinízkym\nprínos\nprínoscom\nprínosný\nprínosový\nprinožiť\nprinožovať\nprinter\nprintový\nprinucovať\npriňuchať\nprinútenia\nprinútenie\nprinútením\nprinútený\nprinúťiť\nprinútiť\npriodiať\npriodieť\npriodievať\npriodvážna\npriodvážne\npriodvážny\npriodvážnymi\nprioficiálny\npriochotne\npriokato\npriopitý\nprioptimistický\npriorať\npriorávať\nPrior\nprior\npriori\npriorít\npriorita\nprioritne\nprioritný\npriorizoval\npriorizovala\npriorizovali\npriorizovalo\npriorizovať\npriorizuj\npriorizuje\npriorizujem\npriorizujeme\npriorizuješ\npriorizujete\npriorizujme\npriorizujte\npriorizujú\npriorizujúc\npriorka\npriormi\npriorstvo\npriostrené\npriostrení\npriostrenie\npriostrením\npriostriť\npriostrovať\npriostrý\npriotrávenie\npriotrávený\npriotráviť\npríp\npripadajúci\npripadať\nprípad\nprípadne\npripadnutí\npripadnúť\nprípadný\nprípadový\nPripájací\npripájajúci\npripájajúci\npripájanie\npripájaný\npripájať\npripäl\npripäla\npripálenie\npripálenina\npripálený\npripäli\npripáliť\npripälo\npripaľovaním\npripaľovať\npripaľujúci\npripamätať\npripamätávať\npripamätovať\npripamätúvať\npripantať\npripásaný\npripásať\npripasovať\npripáš\npripáše\npripášem\npripášeme\npripášeš\npripášete\npripášme\npripášte\npripášu\npripášuc\npripäť\npripažiť\npripažmo\nprípecok\npripečenia\npripečenie\npripečený\npripekať\npripekný\npripevnenie\npripevnením\npripevnený\npripevni\npripevnime\npripevnite\npripevniť\npripevňovaní\npripevňovania\npripevňovanie\npripevňovať\npripiecť\npripierať\npripichnúť\npripichnutý\npripíjané\npripíjať\npripínací\npripínač\npripínača\npripináčik\npripináčka\npripínadlo\npripinák\npripínané\npripínanie\npripínať\npripísanie\npripísaný\npripísať\nprípis\nprípisok\npripisovanie\npripisovaný\npripisovať\npripíšu\npripíšuc\nprípitok\npripiť\npripitý\npriplácania\npriplácanie\nPriplácaním\npriplácaniu\npriplácaný\npriplácať\npriplantať\npriplatenia\npriplatenie\npriplatený\npriplatiť\npríplatkový\npríplatok\npriplávajúci\npriplávať\npriplavené\npriplaviť\npriplaziť\npriplesnúť\npripleť\npripletie\npripletiem\npripletieme\npripletieš\npripletiete\npripleťme\npripleťte\npripletú\npripletúc\npripliesť\npriplietla\npriplietli\npriplietlo\npriplietol\npriplichti\npriplichtime\npriplichtite\npriplichtiť\npriplne\npríplodok\npriplúžiť\npripnutím\npripnúť\npripnutý\npripočítanie\npripočítaný\npripočítateľný\npripočítať\npripočítavania\npripočítavanie\npripočítavaním\npripočítavaný\npripočítavať\npripodobnený\npripodobni\npripodobnime\npripodobnite\npripodobniť\npripodobňovať\npripochodovať\npripoisť\npripoistení\npripoistenia\npripoisteniach\npripoisteniam\npripoisteniami\npripoistenie\npripoistením\npripoisteniu\npripoisti\npripoistí\npripoistia\npripoistiac\npripoistil\npripoistila\npripoistili\npripoistilo\npripoistím\npripoistime\npripoistíme\npripoistíš\npripoistiť\npripoistite\npripoistíte\npripoisťme\npripoisťovacej\npripoisťovací\npripoisťovacia\npripoisťovacie\npripoisťovacieho\npripoisťovaciemu\npripoisťovacích\npripoisťovacím\npripoisťovacími\npripoisťovaciu\npripoisťovacom\npripoisťte\npripojene\npripojenie\npripojený\npripojiť\nprípoj\nprípojka\nprípojkový\nprípojne\nprípojníc\nprípojnicových\nprípojný\npripojovací\npripojovacia\npripojovacie\npripojovacích\npripojovacím\npripojovaní\npripojovania\npripojovanie\npripojovaním\npripojovaných\npripojuje\npripomenutie\npripomenúť\npripomenutý\npripomienka\npripomienkovanie\npripomienkovať\npripomienkový\npripomienkujúci\npripomínajúci\npripomínanie\npripomínaním\npripomínaniu\npripomínaný\npripomínať\nprípon\npriponáhlo\nprípona\npríponový\npríporčíčka\npripovedať\nprípoviedka\npripožičať\npríprah\npríprahový\npríprav\npriprávať\npríprava\npripravene\npripravenia\npripravenie\npripravením\npripraveniu\npripraveno\npripravenosť\npripravený\npripraviť\nprípravkárov\nprípravka\nprípravňa\nprípravný\nprípravok\npripravovači\npripravovane\npripravovania\npripravovanie\npripravovaním\npripravovaný\npripravovateľ\npripravovateľka\npripravovať\nprípravovňa\nprípravovní\npripravujúce\npripravujúci\npripražiť\nPripretých\npripriahať\npripriahnuť\npriprieť\npripríkre\npriprúc\npripúčať\npripučiť\npripuchnúť\nprípust\npripustenia\npripustenie\npripustením\npripusteniu\npripustený\npripusti\npripustime\npripustite\npripustiť\nprípustkoch\nprípustkom\nprípustkov\nprípustky\nprípustnosť\nprípustný\npripúšťajúci\npripúšťanej\npripúšťaní\npripúšťania\npripúšťanie\npripúšťaním\npripúšťaniu\npripúšťanú\npripúšťať\npripútanejší\npripútania\npripútanie\npripútaním\npripútaniu\npripútaný\npripútať\npripútavať\npriputnať\npriputnávať\npriputovať\npriputuje\nprír\nprirábať\nprirác\npriráce\nprirácem\npriráceme\npriráceš\nprirácete\nprirácme\nprirácte\nprirácu\nprirácuc\npriradene\npriradenie\npriradený\npriradiť\npriraďovací\npriraďovacie\npriraďovacom\npriraďovane\npriraďovania\npriraďovanie\npriraďovaním\npriraďovaný\npriraďovať\nprirajtovať\nprírast\nprirastané\nprirastanie\nprirastať\npríraste\nprirastené\nprirasti\nprirastime\nprirastite\nPrírastkovo\nprírastkový\nprírastok\nprirásť\nprírastu\nprírasty\nprirátania\nprirátanie\nprirátaním\nprirátaný\nprirátať\npriratovať\npriratúvanie\npriratúvaných\npriratúvať\npríraz\npriraziť\nprirážať\nprirážka\nprirážkový\npriredikať\nprirepetiť\nprirezanie\nprirezať\nprirezávania\nprirezávať\npririecť\npririekať\npririeknutú\npririeknuť\npririeknutých\npririchtovať\nprirobený\nprirobiť\nprírod\nprírodách\nprírodám\nprírodami\npríroda\nprírodne\nprírodnina\nprírodno\nprírodný\nprírodopis\nprírodopisec\nprírodopisecký\nprírodopiskyňa\nprírodopisný\nprírodovedách\nprírodovedám\nprírodovedami\nprírodoveda\nprírodovedec\nprírodovedecký\nprírodovedkyňa\nprírodovedný\nprírodovied\nprirodzene\nprirodzenie\nprirodzeno\nprirodzenoprávnu\nprirodzenosť\nprirodzený\npriroj\nprirolovať\nprirovnanie\nprirovnaný\nprirovnať\nprirovnávanie\nprirovnávaním\nprirovnávaniu\nprirovnávaný\nprirovnávať\nprírub\npríruba\nprírubový\npríručka\npríručkový\npríručný\nprirútia\nprirútil\nprirútili\nprirútiť\nprirýchla\nprirýchle\nprirýchleho\nprirýchlej\nprirýchlemu\nprirýchliť\nprirýchlo\nprirýchlom\nprirýchlou\nprirýchľovať\nprirýchlu\nprirýchly\nprirýchlym\nprísad\nprisadať\nprísada\nprisadil\nprisadiť\nprisadnúť\nprisadnutý\nprísadové\nprisadzovaní\nprísah\nprisahaný\nprisahať\nprísaha\nPrisáľanie\nprisáľať\nprisám\nprisámboh\nprisámbohu\nprisámvačku\nprisať\nprisatý\nprisávaného\nprisávanie\nprisávať\nprísavku\nprísažne\nprísažný\nprísediaci\nprisekám\nprisekať\npriseknúť\nprísev\nprishluhovať\nprischnúť\nprischýnať\nprisiliť\nprisilne\nprisilno\nprisilný\nPriska\npriskackať\npriskakovať\nPriskin\npriskočiť\nprískok\nPriskom\npriskoriť\npriskoro\npriskorý\nPriskou\npriskromne\npriskromný\npriskrutkovaná\npriskrutkovať\nPrisku\nprísl\nprislabo\nprislabý\nprisladené\nprisladiť\nprisládzaný\nprisládzať\nprisladzované\nprisladzovať\nprislania\nprislanie\npríslnie\npríslop\npríslov\npríslovečne\npríslovečný\npríslovie\npríslovka\npríslovkový\nprísľub\nprisľúbenie\nprisľúbený\nprisľúbiť\nprisľubovať\nprísľubový\nprisluhovač\nprisluhovačský\nprisluhovanie\nprisluhovať\nprislúchajúceho\nprislúchajúcej\nprislúchajúcu\nprislúchať\nprísluš\npríslušenstvo\nprísluší\npríslušne\npríslušnícka\npríslušníčka\npríslušník\npríslušnosť\npríslušný\npríslužba\nprismažiť\nprismelý\nprismrdkávať\nprismudnúť\nprísnejší\nprisni\nprísnieť\nprisnijú\nprisnime\nprisnite\nprisniť\nprísnosť\nprísny\nprisoliť\nprisoľovať\nprisp\nprispájkovať\nprispali\nprispalo\nprispania\nprispanie\nprispať\nprispení\nprispenia\nprispenie\nprispením\nprispetie\npríspevkovo\npríspevkový\npríspevok\nprispí\npríspieť\nprispieť\nprispievaného\nprispievanej\nprispievanie\nprispievateľ\nprispievateľka\nprispievateľský\nprispievať\nprispime\nprispite\nprisporiť\nprispôsobene\nprispôsobenie\nprispôsobený\nprispôsobiteľnosť\nprispôsobiteľný\nprispôsobiť\nprispôsobivejší\nprispôsobivosť\nprispôsobivý\nprispôsobovanie\nprispôsobovaný\nprispôsobovať\nprisprostý\nprisťahovalec\nprisťahovalecký\nprisťahovalectvo\nprisťahovalkyňa\nprisťahovania\nprisťahovanie\nprisťahovaný\nprisťahovať\nprisťahúvanejšej\nprisťahúvanejší\nprisťahúvanejšia\nprisťahúvanejšie\nprisťahúvanejšieho\nprisťahúvanejšiemu\nprisťahúvanejších\nprisťahúvanejším\nprisťahúvanejšími\nprisťahúvanejšiu\nprisťahúvanejšom\nprisťahúvanejšou\npristajnia\npristarý\npristatia\npristátie\npristať\npristáť\npristávací\npristávajúci\npristavané\npristavanej\npristávaní\npristávania\npristavanie\npristávanie\npristávaním\npristavať\npristávať\nprístav\nprístavba\npristavenia\npristavenie\npristavením\npristavený\nprístavísk\nprístavisko\npristaviť\nprístavkový\nprístavný\nprístavok\npristavované\npristavovaní\npristavovania\npristavovanie\nPristavovaním\npristavovať\npristehova\npristehoval\npristehovala\npristehovali\npristehovalo\npristehovať\npristehuj\npristehuje\npristehujem\npristehujeme\npristehuješ\npristehujete\npristehujme\npristehujte\npristehujú\npristehujúc\nprístelka\nprístenkami\nprístenkoch\nprístenkom\nprístenkov\nprístenku\nprístenky\nprístenné\nprístennej\nprístenných\nprístenok\npristiela\npristihnutia\npristihnúť\npristihnutý\npristihovať\nprístojný\npristoknúť\npristrájať\npristrčiť\nprístrešie\nprístrešok\npristri\npristrie\npristrieť\npristrihávať\npristrihnutie\npristrihnúť\npristrihnutý\nprístrihov\npristrihovanie\npristrihovať\nprístrihy\npristrkávať\nprísť\nprístrojček\nprístrojčeka\npristrojiť\nprístroj\nprístrojovo\nprístrojový\nprístup\npristúpenie\npristúpený\npristupiť\npristúpiť\npristúpivší\nprístupkkch\nprístupkkm\nprístupkkv\nprístupku\nprístupky\nprístupne\nprístupnosť\nprístupný\npristupovania\npristupovanie\npristupovaný\npristupovať\nprístupový\npristupujúci\nprisúdenia\nprisúdenie\nprisúdením\nprisúdený\nprisúdiť\nprísudkový\nprísudok\nprisudzovací\nprisudzovania\nprisudzovanie\nprisudzovaný\nprisudzovať\nprisuň\nprísun\nprisunie\nprisuniem\nprisunieme\nprisunieš\nprisuniete\nprisuňme\nprisunovanie\nprisunovaný\nprisunovať\nprísunový\nprisuňte\nprisunul\nprisunula\nprisunuli\nprisunulo\nprisunutia\nprisunúť\nprisunutých\nprisurové\nprisušený\nprisúvané\nprisúvaného\nprisúvanie\nprisúvanými\nprisúvať\nprisvedčiť\nprisvedčovať\nprisvetlo\nprisvetlom\nprisviedča\nprisviedčaj\nprisviedčajme\nprisviedčajte\nprisviedčajú\nprisviedčajúc\nprisviedčal\nprisviedčala\nprisviedčali\nprisviedčalo\nprisviedčam\nprisviedčame\nprisviedčaš\nprisviedčate\nprisviedčať\nprisviedčavý\nprisvietením\nprisvietiť\nprísviť\nprísvit\nprísvitmi\nprisvoj\nprisvoja\nprisvojac\nprisvojenia\nprisvojenie\nprisvojením\nprisvojený\nprisvojí\nprisvojil\nprisvojila\nprisvojili\nprisvojilo\nprisvojím\nprisvojíme\nprisvojíš\nprisvojiť\nprisvojíte\nprisvojme\nprisvojovaní\nprisvojovania\nprisvojovanie\nprisvojovaniu\nprisvojovať\nprisvojte\nprisychať\nprisypať\nprisýpať\nprisypávanie\nprisypávať\nprisypú\nprisypúc\nprišelec\npríšera\npríšerka\npríšerne\npríšernosť\npríšerný\npriši\nprišije\nprišijem\nprišijeme\nprišiješ\nprišijete\nprišijú\nprišijúc\nprišil\nprišila\nprišili\nprišilo\nprišime\npriširoký\nprišitá\nprišite\nprišiť\nprišívané\nprišívania\nprišívať\npriškrcovaní\npriškrcovania\npriškrcovanie\npriškrcovaním\npriškrcovať\npriškrieť\nPriškripnuté\npriškripnúť\npriškrtenia\npriškrtenie\npriškrtením\npriškrteniu\npriškrtený\npriškrtiť\npriškvar\npriškvarenia\npriškvariť\npríškvarok\npriškvarte\npriškvŕknuť\nprišlé\nprišliapnuť\nprišlou\nprišlých\nprišmotkať\nprišmotlať\nprišmýkať\nprišmyknúť\nprišpendlený\nprišpendlíkovať\nprišpendliť\nprišraubovať\nprištedrý\nprištiknúť\npríštipkár\npríštipkárení\npríštipkárenie\npríštipkársky\npríštipkársky\npríštipkárstvo\nprištipnúť\npríštipok\nprištrngnúť\nprišúchať\nprišuchnúť\nprišumieť\nprít\npritackať\npriťahovania\npriťahovanie\npriťahovaním\npriťahovaný\npriťahovať\npriťahujúca\npriťahujúcou\npritajiť\npritajovania\npritajovanie\npritajovaný\npritajovať\npritajujúca\npritajujúcou\npritakaný\npritákať\npritakať\npritakávač\npritakávajúci\npritakávania\npritakávanie\npritakávaním\npritakávať\npritancovať\npriťapkať\npriťapnúť\npritárať\npríťaž\npriťaženie\npriťažením\npriťažiť\npriťažko\npriťažký\npríťažlivejší\npríťažlivo\npríťažlivosťN\npríťažlivý\npriťažovať\npriťažujúcejšej\npriťažujúcejší\npriťažujúcejšia\npriťažujúcejšie\npriťažujúcejšieho\npriťažujúcejšiemu\npriťažujúcejších\npriťažujúcejším\npriťažujúcejšími\npriťažujúcejšiu\npriťažujúcejšom\npriťažujúcejšou\npriťažujúci\npriťažujúco\npritečených\npritekať\npritenký\npritepliť\npriteplo\npriterigať\npritesaný\npritesať\npritesno\npritesný\npritiahnú\npritiahnúc\npritiahnutia\npritiahnutie\npritiahnutím\npritiahnutiu\npritiahnuť\npritiahnutý\npritiecť\npritierať\npritíchnuť\npritískať\npritisnúť\npritisnutý\npritkať\npritknúť\npritláčací\npritláčanie\npritláčaný\npritláčať\npritlačenie\npritlačením\npritlačeniu\npritlačený\npritlačiť\nprítlačný\npritľapčený\npritľapnúť\npritĺcť\npritlieť\npritĺkať\npritlmene\npritlmenie\npritlmený\npritlmiť\npritlmovať\npritma\nprítma\nprítmie\npritmievať\npritmoliť\npritočiť\nprítok\nprítokový\npritom\nprítomna\nprítomne\nprítomno\nprítomnosť\nprítomnosťN\nprítomnostný\nprítomnu\nprítomný\npritrafiť\npritrepať\npritrieť\npritrpké\npritrúc\npritrúsiť\nprituhnúť\npriťuknúť\npritúlať\npritúliť\nprituľkať\nprítulne\nprítulnosť\nprítulný\nprítulok\nprituľovať\npriťupkať\npritupý\npritúžiť\npritužovaní\npritužovania\npritužovanie\npritužovať\npritvárania\npritvárať\npritvor\npritvoriť\npritvorte\npritvrdenia\npritvrdenie\npritvrdením\npritvrdeniu\npritvrdený\npritvrdia\npritvrdil\npritvrdila\npritvrdili\npritvrdilo\npritvrdíme\npritvrdiť\npritvrdíte\npritvrdo\npritvrdý\npriu\npriúčať\npriučí\npriučím\npriučíme\npriučíš\npriučíte\npriučiť\npríučka\npríučné\npríučného\npríučnému\npríučnom\npríučným\npriúčtovala\npriúčtovať\npriúprimná\nprius\nPrius\npríušnica\npríušný\npriúzky\nprivábenie\nprivábiť\nprivácia\nprivádzač\nprivádzača\nprivádzače\nprivádzači\nprivádzačmi\nprivádzačoch\nprivádzačom\nprivádzačov\nprivádzaču\nprivádzania\nprivádzanie\nprivádzaný\nprivádzať\npriváľať\npríval\nprivalený\nprivaliť\nprívalmi\nprívalový\nprivaľuje\nprivandrovalec\nprivandrovalecký\nprivandrovalkyňa\nprivandrovanec\nprivandrovať\nprivanuli\nprivar\npriváraní\nprivárania\nprivárať\nprivarenie\nprivarený\nprivariť\nprívarok\nprivarovanie\nprivarte\nprivát\nprivatívny\nprivatizácia\nprivatizačný\nprivatizant\nprivatizátor\nprivatizátormi\nprivatizér\nprivatizovania\nprivatizovanie\nprivatizovaním\nprivatizovaniu\nprivatizovaný\nprivatizovať\nprivátmi\nprivátnik\nprivátny\npriväzovať\nprivážanie\nprivážaniu\nprivážaný\nprivážať\nprivážnym\nprívažok\nprivčas\nprivčasný\nprivďačiť\nprivedenia\nprivedenie\nprivedením\nprivedený\npriveľa\npriveľký\npriveľmi\npríver\nprives\npríves\nprivesená\nprivesí\nprivesia\nprivesiť\nprívesný\nprívesok\nprívet\nprivetiť\nprívetivo\nprívetivosť\nprívetivý\nPrivezenie\nprivezením\nprivezený\npriviať\npriviaty\npriviazanie\npriviazaním\npriviazaný\npriviazať\npriviaž\npriviaže\npriviažem\npriviažeme\npriviažeš\npriviažete\npriviažme\npriviažte\npriviažu\npriviažuc\nprividel\nprividieť\nprivieraní\nprivieranie\nprivieraním\nprivierať\npriviesť\nprivievať\npriviezť\nprivilégium\nprivilegovane\nprivilegovanosť\nprivilegovaný\nprivíňať\nprivinovať\nprivinutie\nprivinúť\nprivítací\nprivítanie\nprivítaný\nprivítať\nprivl\nprívlastkový\nprivlastnenia\nprivlastnenie\nprivlastnením\nprivlastneniu\nprivlastnený\nprivlastni\nprivlastnime\nprivlastnite\nprivlastniť\nprivlastňovací\nprivlastňoval\nprivlastňovala\nprivlastňovali\nprivlastňovalo\nprivlastňovaní\nprivlastňovanie\nprivlastňovať\nprivlastňuj\nprivlastňuje\nprivlastňujem\nprivlastňujeme\nprivlastňuješ\nprivlastňujete\nprivlastňujme\nprivlastňujte\nprivlastňujú\nprivlastňujúc\nprívlastok\nprivlečenia\nprivliecť\nprívod\nprivodenie\nprivodený\nprivodiť\nprívodný\nprívodový\nprivolania\nprivolanie\nprivolaním\nprivolaný\nprivolať\nprivolávač\nprivolávače\nprivolávaču\nprivolávania\nprivolávanie\nprivolávať\nprivolenie\nprivoliť\nprivoľne\nprivoľné\nprivoľovať\nprivoňanie\nprivoňaný\nprivoňať\nprivoniavať\nprívozom\nprívozu\nprivracať\nprívrať\nprívrat\nprivrátiť\nprívratmi\nprívratný\nprivrav\nprivrávať\nprivravené\nprivravieť\nprivreté\nprivretí\nprivretia\nprivretie\nprivretiu\nprivrieť\nprivrúc\nprivrznúť\nprívrženec\nprívrženkyňa\nprivstal\nprivstala\nPrivstali\nprivstane\nprivstať\nprivtel\nPrivtelením\nprivteliť\nprivykania\nprivykanie\nprivykaním\nprivykať\nprivyknutie\nprivyknúť\nprivyknutý\nprivyrába\nprivyrábajú\nprivyrábal\nprivyrábala\nprivyrábali\nprivyrábalo\nprivyrábania\nPrivyrábanie\nprivyrábaním\nprivyrábať\nprivyrobenia\nprivyrobenie\nprivyrobí\nprivyrobia\nprivyrobil\nprivyrobila\nprivyrobili\nprivyrobilo\nprivyrobiť\nprivysoko\nprivysoký\nprix\nprizabiť\nprizarobiť\nprízdoba\nprizdobený\nprizdobiť\nprizdobovať\nprízemie\nprízemne\nprízemnosť\nprízemný\nprizerania\nprizeranie\nprizeraním\nprizerať\npriziem\nprizma\npríznačne\npríznačnosť\npríznačný\npríznak\npríznakovo\npríznakový\npriznane\npriznanie\npriznanieN\npriznaný\npriznať\npriznávanie\npriznávaný\npriznávať\nprízračnosť\nprízračný\nprízrak\nprízrakovosť\nprizrieť\nprizrúc\nprizvane\nprizvania\nprizvanie\nprizvaním\nprizvaniu\nprizvaný\nprizvať\nprizvi\nprizvime\nprizvite\nprízvučne\nprízvučnosť\nprízvučný\nprízvuk\nprizvukoval\nprízvukovaná\nprízvukované\nprízvukovania\nprízvukovanie\nprízvukovaním\nprízvukovať\nprízvukový\nprizvukuje\nprizývanie\nprizývaním\nprizývaný\nprizývať\nprižahlosť\npriženiť\nprižiariť\nprižinový\npriživenie\npriživiť\npríživnícky\npríživníctvach\npríživníctvam\npríživníctvo\npríživníčiť\npríživníčka\npríživník\npríživníki\npríživný\npriživovania\npriživovanie\npriživovaný\npriživovať\nprižmúrené\nprižmúrení\nprižmúrenia\nprižmúreniam\nprižmúrenie\nprižmúrením\nprižmúrenými\nprižmúriť\nprižmurovanie\nprižmurovať\nprižne\npŕlený\npŕli\nPRO\nproamericky\nproamerický\nproantéza\nprób\nprobabilita\npróbach\npróbam\nprobátny\npróba\nproblematickosť\nproblematicky\nproblematický\nproblematičnosť\nproblematičnosti\nproblematika\nproblematizoval\nproblematizovala\nproblematizovali\nproblematizovalo\nproblematizované\nproblematizovanie\nproblematizovaniu\nproblematizovaných\nproblematizovať\nproblematizuj\nproblematizuje\nproblematizujem\nproblematizujeme\nproblematizuješ\nproblematizujete\nproblematizujme\nproblematizujte\nproblematizujú\nproblematizujúc\nproblém\nproblémik\nproblémovo\nproblémovosť\nproblémovosti\nproblémovosťou\nproblémový\nprobovať\nprocedúr\nprocedúrach\nprocedurálny\nprocedúram\nprocedúra\nprocenta\nprocento\nproces\nprocesia\nprocesiový\nprocesne\nprocesno\nprocesnoprávna\nprocesnoprávne\nprocesnoprávneho\nprocesnoprávny\nprocesnoprávnych\nprocesnoprávnymi\nprocesný\nprocesor\nprocesorový\nprocesovali\nprocesovať\nprocesuálnosť\nprocesuálny\nprocesuje\nprócium\nprocovský\nProč\nprodekan\nprodekanka\nprodekanský\nprodemokraticky\nprodemokratický\nprodigiozín\nprodoncia\nprodróm\nproducent\nproducentka\nproducentsky\nproducentský\nproducírovaním\nproducírovať\nprodukcia\nprodukčne\nprodukčno\nprodukčnosť\nprodukčný\nprodukovania\nprodukovanie\nprodukovaním\nprodukovaniu\nprodukovaný\nprodukovať\nprodukt\nproduktivita\nproduktívnosť\nproduktívny\nproduktmi\nprodukujúca\nprodukujúci\nproexportný\nprof\nprofanácia\nprofanizácia\nprofanizátor\nprofánnosť\nprofánny\nprofanovaných\nprofanovať\nprofašistického\nprofašistickej\nprofáza\nprofes\nprofesia\nprofesijný\nprofesionál\nprofesionalita\nprofesionalite\nprofesionalitou\nprofesionalitu\nprofesionality\nprofesionalizácia\nprofesionalizmus\nprofesionalizoval\nprofesionalizovala\nprofesionalizovali\nprofesionalizovalo\nprofesionalizovať\nprofesionalizuj\nprofesionalizuje\nprofesionalizujem\nprofesionalizujeme\nprofesionalizuješ\nprofesionalizujete\nprofesionalizujme\nprofesionalizujte\nprofesionalizujú\nprofesionalizujúc\nprofesionálka\nprofesionálku\nprofesionálky\nprofesionálnosť\nprofesionálny\nprofesionálovia\nprofesiový\nprofesný\nprofesor\nprofesorčiť\nprofesorka\nprofesormi\nprofesorov\nprofesorský\nprofesorstvo\nprofesúr\nprofesúrach\nprofesúram\nprofesúra\nprofét\nproféta\nprofetizovať\nprofík\nprofilácia\nprofilačný\nprofil\nprofilmi\nprofiloval\nprofilovala\nprofilovali\nprofilovalo\nprofilovania\nprofilovanie\nprofilovaním\nprofilovaniu\nprofilovaný\nprofilovať\nprofilovo\nprofilový\nprofiluj\nprofiluje\nprofilujem\nprofilujeme\nprofiluješ\nprofilujete\nProfilujete\nprofilujme\nprofilujte\nprofilujú\nprofilujúc\nprofitabilite\nprofit\nprofitmi\nprofitovať\nprofitový\nproforma\nprofundál\nprofundita\nprofúzny\nprofylakčný\nprofylakticky\nprofylaktický\nprofylaktiká\nprofylaktikum\nprofylaxia\nprogenitúra\nprogéria\nprogesterón\nproglotída\nprognácia\nprognosticky\nprognostický\nprognostička\nprognostika\nprognostik\nprognóz\nprognózach\nprognózam\nprognóza\nprognózovanie\nprognózovať\nprográdny\nprogramátor\nprogramátorka\nprogramátormi\nprogramátorsky\nprogramátorský\nprogram\nprogramček\nprogramovací\nprogramovane\nprogramovanie\nprogramovaný\nprogramovateľne\nprogramovateľný\nprogramovať\nprogramove\nprogramovitý\nprogramovo\nprogramovosť\nprogramový\nprogrediencia\nprogres\nprogresia\nprogresie\nprogresii\nprogresiou\nprogresiu\nprogresivita\nprogresívnosť\nprogresívny\nprohibícia\nprohibičný\nprohibitívna\nprohibitívne\nprohibitívneho\nprohibitívnu\nprohibitívny\nprohibitívnych\nprohibitívnym\nProchot\nprojekcia\nprojekčne\nprojekčno\nprojekčný\nprojektant\nprojektantka\nprojektantovo\nprojektantský\nprojekt\nprojektil\nprojektilmi\nprojektilom\nprojektilov\nprojektilu\nprojektily\nprojektmi\nprojektor\nprojektovanie\nprojektovaný\nprojektovať\nprojektovo\nprojektový\nprokaín\nproklamácia\nproklamačne\nproklamačný\nproklamatívny\nproklamovania\nproklamovanie\nproklamovaním\nproklamovaniu\nproklamovaný\nproklamovať\nproklition\nproklízia\nprokomunistickú\nprokomunisticky\nProkop\nprokreačný\nproktalgia\nproktektázia\nproktektómia\nproktitída\nproktodýnia\nproktológia\nproktorágia\nprokúr\nprokúra\nprokurátor\nprokurátorka\nprokurátormi\nprokurátorovej\nprokurátorovho\nprokurátorovmu\nprokurátorovu\nprokurátorových\nprokurátorovým\nprokurátorský\nprokuratúr\nprokuratúrach\nprokuratúram\nprokuratúra\nprokurista\nprokúrou\nprokúru\nprokúry\nprolaktín\nprolaps\nprolegoména\nproletár\nproletariát\nproletariátmi\nproletarizácia\nproletarizovaní\nproletarizovať\nproletárka\nproletársky\nproliferácia\nproliferácie\nprolín\nprolixný\nprológ\nprológmi\nprológoch\nprológom\nprológov\nprológu\nprológy\nprolongácia\nprolongačných\nprolongoval\nprolongovala\nprolongovali\nprolongovania\nprolongovanie\nprolongovaním\nprolongovaniu\nprolongovaný\nprolongovať\nprolonguje\nprolongujú\nprom\npromemoria\npromenád\npromenádach\npromenádam\npromenáda\npromenádny\npromenádový\npromenoval\npromenovať\npromesa\nPrometea\nprometejský\nPrometeom\nprometeovský\nPrometeus\npromile\npromilový\npromincľa\nprominenciu\nprominent\nprominentne\nprominentný\nprominentovho\npromiskue\npromiskuita\npromiskuitný\npromissor\npromócia\npromočný\npromotér\npromotéra\npromotéri\npromotérovi\npromotérske\npromotion\npromotor\npromótor\npromótori\npromótorovi\npromovania\npromovaný\npromovať\npromptne\npromptnosť\npromptný\npromulgácia\npromycélium\npronácia\npronacistického\npronacistickej\npronáos\npronárodne\npronárodný\npronefros\npronemeckú\npronemeckých\npronomen\nprononsovaný\npronto\npronunciamento\npronuncius\npronymfa\npropadién\npropagácia\npropagačne\npropagačno\npropagačný\npropaganda\npropagandista\npropagandisticky\npropagandistický\npropagandistka\npropagátor\npropagátorka\npropagátormi\npropagátorský\npropagovania\npropagovanie\npropagovaním\npropagovaniu\npropagovaný\npropagovať\npropán\npropán-butánový\npropánový\npropedeutika\npropelent\npropelera\npropeler\npropeleri\npropén\nproperdín\npropín\nproplazmocyt\npropolis\npropolisový\nproponentom\nproponovaný\nproponovať\nproporcia\nproporcionalita\nproporcionálne\nproporcionálnosť\nproporcionálny\nproporčne\nproporčnosť\nproporčný\npropos\npropozícia\npropriet\nproprietárny\npropriety\nproprium\nproprotón\npropulzia\npropyleje\npropylén\npropyléne\npropylénu\npropylit\nprorakúskych\nproreformne\nproreformný\nprorektor\nprorektormi\nprorocky\nprorocký\nproroctvo\nprorogácia\nprorok\nprorokovania\nprorokovaním\nprorokovaniu\nprorokovaný\nprorokovať\nprorokovmu\nprorokyňa\nProsačov\nprosba\nproscénium\nprosebne\nprosebníčka\nprosebník\nprosebný\nprosektor\nprosektori\nprosektúr\nprosektúrach\nprosektúram\nprosektúra\nproselyta\nprosené\nprosenie\nprosfora\nprosiaci\nProsiek\nProsieku\nprosíka\nprosíkajú\nprosíkal\nprosíkaní\nprosíkanie\nprosíkaním\nprosíkať\nprosíkom\nprosincové\nprosincového\nprosiopézia\nprosit\nprosiť\nproskať\nproskribovaných\nproskribovať\nproskripcia\nproskripcie\nproskripčné\nprosky\nproskynézia\nproslovensky\nproslovenský\nprosný\nproso\nprosóma\nprosopagnózia\nProsov\nProsove\nprosový\nprospechár\nprospechárka\nprospechársky\nprospechárstvach\nprospechárstvam\nprospechárstvo\nprospech\nprospechové\nprospechovo\nprospechový\nprospekcia\nprospekt\nprospektívne\nprospektívneho\nprospektívnemu\nprospektívnom\nprospektívny\nprospektívnych\nprospektívnym\nprospektívnymi\nprospektmi\nprospektový\nprosperita\nprosperovaní\nprosperovania\nprosperovanie\nprosperovať\nprosperujúce\nprosperujúci\nprospešne\nprospešnosť\nprospešný\nprospieť\nprospievanie\nprospievať\nprosta\nprostáčikov\nprostatalgia\nprostata\nprostatektómia\nprostatik\nprostatitída\nprostatodýnia\nproste\nprostetický\nprostitúcia\nprostituovať\nprostitúti\nprostitútka\nprostné\nprostných\nprostným\nprostnými\nprosto\nProstocviky\nprostoduchejšej\nprostoduchejší\nprostoduchejšia\nprostoduchejšie\nprostoduchejšieho\nprostoduchejšiemu\nprostoduchejších\nprostoduchejším\nprostoduchejšími\nprostoduchejšiu\nprostoduchejšom\nprostoduchejšou\nprostoducho\nprostoduchosť\nprostoduchý\nprostodušne\nprostodušnosť\nprostodušný\nprostohlavý\nprostomyseľne\nprostomyseľnosť\nprostomyseľný\nProstonárodná\nProstonárodné\nProstonárodných\nprostopaš\nprostopašník\nprostopašnosť\nprostopašný\nprostoreko\nprostorekosť\nprostoreký\nprostosrdečný\nprostôt\nprostotách\nprostotám\nprostotami\nprostota\nprostovlasý\nprostovravný\nprostrácia\nprostred\nprostredie\nprostredkovaním\nprostredne\nprostredníctvach\nprostredníctvam\nprostredníctvo\nprostredník\nprostredníku\nprostredníky\nprostrednosť\nprostredný\nprostreďový\nprostriedkový\nprostriedok\nprostučko\nprostučký\nprostylos\nprostý\nProšek\nprotagón\nprotagonista\nprotagonistický\nprotagonistka\nprotagoreizmus\nproťajškami\nproťajškom\nproťajškov\nproťajšok\nprotálium\nprotamín\nprotanopsia\nproteáza\nproteid\nproteín\nproteinúria\nproteíny\nproteizmus\nprotekcia\nprotekcionára\nprotekcionárska\nprotekcionárske\nprotekcionárskeho\nprotekcionárskej\nprotekcionársku\nprotekcionársky\nprotekcionárskych\nprotekcionárskym\nprotekcionárskymi\nprotekcionárstvach\nprotekcionárstvam\nprotekcionárstvo\nprotekcionisticky\nprotekcionistický\nprotekcionizmus\nprotekčne\nprotekčný\nprotektorát\nprotektoráte\nprotektorátny\nprotektorátu\nprotektoráty\nprotektor\nprotektor\nprotektorka\nprotektorovaná\nprotektorované\nprotektorovanej\nprotektorovaní\nprotektorovania\nprotektorovanie\nprotektorovaním\nprotektorovaných\nprotektorovať\nprotektorsky\nprotektorský\nprotektorstvo\nprotenoid\nproterozoikum\nprotestant\nprotestantizmus\nprotestantka\nprotestantský\nprotestantstvo\nprotest\nprotestmi\nprotestne\nprotestný\nprotestovaná\nprotestované\nprotestovania\nprotestovanie\nprotestovať\nprotestujúci\nprotetický\nprotetička\nprotetika\nprotetik\nprotéz\nprotézach\nprotézam\nprotéza\nprotézové\nprotežant\nprotežanti\nprotežantom\nprotežantov\nprotežantovi\nprotežoval\nprotežovala\nprotežovali\nprotežovalo\nprotežovania\nprotežovanie\nprotežovaním\nprotežovaniu\nprotežovaný\nprotežovať\nprotežuj\nprotežuje\nprotežujem\nprotežujeme\nprotežuješ\nprotežujete\nprotežujme\nprotežujte\nprotežujú\nprotežujúc\nproti\nprotiakcia\nprotialkoholický\nprotiamerický\nprotiargument\nprotiargumentoch\nprotiargumentom\nprotiargumentov\nprotiargumenty\nprotiatómovo\nprotiatómový\nprotibežného\nprotibežnými\nproticirkevných\nprotičeské\nprotičeskej\nprotičeskú\nprotičesky\nprotičeských\nprotidemokratický\nprotidodávkach\nprotidodávkam\nprotidodávkami\nprotidodávke\nprotidodávkou\nprotidodávku\nprotidodávky\nprotidodávok\nprotidôkazmi\nprotidôkazy\nprotidrogový\nprotiekologicky\nprotiekologický\nprotiepidemický\nprotifašistický\nprotihitlerovský\nprotihlasom\nprotihlasy\nprotihlukovo\nprotihlukový\nprotihodnota\nprotihráč\nprotihráčka\nprotihumánnych\nprotihumánnymi\nprotichemický\nprotichodne\nprotichodnosť\nprotichodný\nprotichrípková\nprotichrípkové\nprotichrípkovými\nprotiidúci\nprotiimperialistický\nprotiinfarktový\nprotiinflačne\nprotiinflačný\nprotijadrový\nprotijed\nprotikandidát\nprotikandidáta\nprotikandidáti\nprotikandidátka\nprotikandidátkou\nprotikandidátku\nprotikandidátmi\nprotikandidátom\nprotikandidátov\nprotikandidátovi\nprotikapitalistických\nprotiklad\nprotikladne\nprotikladnosť\nprotikladný\nprotikoaličný\nprotikomunisticky\nprotikomunistický\nprotikorózny\nprotikorupčne\nprotikorupčný\nprotikultúrnou\nprotiľahlo\nprotiľahlý\nprotilátka\nprotileninovský\nprotileninský\nprotiletecky\nprotiletecký\nprotiliek\nprotilieky\nprotilietadlový\nprotiľudovo\nprotiľudovosť\nprotiľudový\nprotiľudské\nprotiľudsky\nprotimaďarský\nprotimamericky\nprotimenšinový\nprotimonopolný\nprotinábožensky\nprotináboženský\nprotinarkotický\nprotinárodne\nprotinárodný\nprotinávrh\nprotinázor\nprotinázorom\nprotinázoru\nprotinázory\nprotinemecká\nprotinemecké\nprotinemeckých\nprotinožec\nProtiofenzíva\nprotiofenzíve\nprotiofenzívou\nprotiofenzívu\nprotiofenzívy\nprotiopatrení\nprotiopatrenia\nprotiopatreniach\nprotiopatreniam\nprotiopatreniami\nprotiopatrenie\nprotiopatrením\nprotiopatreniu\nprotiotázka\nprotipálenčený\nprotipancierová\nprotipancierové\nprotipechotná\nprotipechotné\nprotipechotných\nprotiplnení\nprotiplnenia\nprotiplnenie\nprotiplneniu\nprotiplynový\nprotipohyb\nprotipohyboch\nprotipól\nprotipólmi\nprotipólový\nprotipoložka\nprotipoložku\nprotipoložky\nprotiponorkové\nprotipovodňový\nprotipožiadavku\nprotipožiar\nprotipožiarny\nprotiprachový\nprotiprávnosť\nprotiprávny\nprotiprírodný\nprotiprirodzený\nprotiprúd\nprotiprúdnej\nprotiprúdnym\nprotiprúdom\nprotiprúdového\nprotirakovinový\nprotirakúskemu\nprotirečenie\nprotirečiaci\nprotirečiť\nprotirečivo\nprotirečivosť\nprotirečivý\nprotireformácia\nprotireformačný\nprotireformne\nprotireformný\nprotireumaticky\nprotireumatický\nprotirevolučný\nprotirobotnícky\nprotirozumový\nprotisila\nprotisilu\nprotislnečné\nprotislovensky\nprotislovenský\nprotislužba\nprotismer\nprotismerne\nprotismerneY\nprotismernosť\nprotismerný\nprotisocialistický\nprotisociálna\nprotisociálne\nprotisociálnej\nprotisociálnu\nprotisociálny\nProtisovietske\nprotispoločensky\nprotispoločenský\nprotistológia\nprotistrán\nprotistrana\nprotistranám\nprotistranami\nprotistrane\nprotistranícky\nprotistranou\nprotistranu\nprotistrany\nprotisúťažného\nprotisvahu\nprotišmykový\nprotišpionáž\nprotištátnosť\nprotištátny\nprotiťah\nprotiťahom\nprotiťahov\nprotiťahu\nprotiťahy\nprotitankový\nprotiteroristický\nprotitetanový\nprotitlak\nprotitlakový\nprotiúčet\nprotiúder\nprotiúrazovú\nprotiúsilia\nprotiústavne\nprotiústavnosť\nprotiústavný\nprotiútok\nprotiva\nprotiváh\nprotiváhach\nprotiváham\nprotiváha\nprotiveň\nprotivenstvo\nprotiviace\nprotivietor\nprotivírový\nprotivírusový\nprotiviť\nprotivládny\nprotivlakom\nprotivlasteneckí\nprotivnícky\nprotivníčka\nprotivník\nprotivníkove\nprotivníkovej\nprotivníkovho\nprotivníkovu\nprotivníkových\nprotivnosť\nprotivný\nprotivojnový\nProtivu\nprotivyhláseniach\nprotivzdušný\nprotizákonne\nprotizákonnosť\nprotizákonný\nProtizámer\nprotizápalovo\nprotizápalový\nprotizávaží\nprotizávažia\nprotizávažie\nprotizbraň\nprotizbrane\nprotizbraňou\nprotizmyselne\nprotizmyselný\nprotižaloba\nprotižalobe\nprotižalobou\nprotižalobu\nprotižaloby\nprotižid\nprotižidovské\nprotobiológia\nprotoderm\nprotofilný\nprotofyty\nprotogenéza\nprotokláza\nprotokolácie\nprotokolárny\nprotokol\nprotokolovania\nprotokolovanie\nprotokolovať\nprotokolový\nprotón\nprotónový\nprotopektín\nprotoplaziem\nprotoplazma\nprototyp\nprototypovanie\nprototypovo\nprototypový\nprotozoá\nprotozoológia\nprotrahovaný\nprotrakcia\nprotraktor\nprotuberancia\nproudhonizmus\nproustit\nprôv\nprova\nprov\nproveniencia\nprovenienciách\nproveniencie\nproveniencii\nprovenienciu\nprovens\nproverbium\nproviant\nproviantmi\nproviantný\nprovidencia\nProvidencia\nprovidencializmus\nprovider\nprovideri\nProvin\nprovinciál\nprovincializmus\nprovinciálnosť\nprovinciálny\nprovincia\nprovincionalizmom\nprovincionalizmu\nprovincionalizmus\nprovinčne\nprovinčnosť\nprovinčný\nprovitamín\nprovitamínu\nProvitamíny\nprovízia\nprovízne\nprovízneho\nprovíznej\nprovízni\nprovíznom\nprovíznu\nprovízny\nprovíznych\nprovíznym\nprovíznymi\nprovízor\nprovizórium\nprovizórnosť\nprovizórny\nprovládny\nprovokácia\nprovokačne\nprovokačnosť\nprovokačný\nprovokatér\nprovokatérka\nprovokatérsky\nprovokatérsky\nprovokatívnosť\nprovokatívny\nprovokovaní\nprovokovania\nprovokovanie\nprovokovať\nprovolone\nprovoročiak\nprovotriedne\nprovpočiatok\nproximálny\nproximita\nproxy\npróz\nprózach\nprozaickosť\nprozaicky\nprozaický\nprozaička\nprozaik\nprózam\nprozápadne\nprozápadný\npróza\nprozencefalon\nprozenchým\nprozódia\nprozodicky\nprozodický\nprozopit\nprozopopoia\nprozreteľne\nprozreteľnosť\nprozreteľný\nprozyleta\nprplať\nprplavo\nprplavý\npŕŕ\nprs\npŕs\nprsami\nprse\nprsia\nprsiar\nprsiarka\nprsiarsky\nprsiarsky\nprsičiek\nprsičká\nprsíčka\nprsičkách\nprsičkám\nprsičkami\nprsiek\nprskách\nprskajúca\nprskami\nprskanie\nprskaný\nprskať\nprskavka\nprsknúť\nprsmi\nprsnatý\nprsne\nprsník\nprsníkovej\nprsníkovým\nprsný\nprsov\nprsť\nprsta\nprstá\nprsťami\nprst\nprstencovito\nprstencovitý\nprstencovo\nprstencový\nprstenec\nprsteň\nprstenník\nprsti\nprstí\nprstiach\nprstiam\nprstienkovitý\nprstienok\nprstík\nprstížny\nprstmi\nprsto\nprstoček\nprstočka\nprstočkami\nprstočkoch\nprstočkom\nprstočkov\nprstočku\nprstočky\nprstoklad\nprsťou\nprstový\nprstými\nprš\nPrša\npršanie\nPršanoch\nPršany\npršať\nPršianska\nPršianskej\npršianskych\npršiavať\npršiplášťami\npršiplášte\npršiplášti\npršiplášť\npŕška\nprštek\nprť\nprťami\nprte\nprti\nprtí\nprtia\nprtiach\nprtiam\nprtiť\nprťou\nprúc\nprúce\nprúco\nprúcu\nprúd\nprúdenie\nprudéria\nprudérny\nprúdiaci\nprúdievať\nprúdik\nprúdiť\nprudko\nprudkosť\nprudký\nprúdnica\nprúdnici\nprúdnicový\nprúdovo\nprúdový\nprudšej\nprudší\nprudšia\nPrudšia\nprudšie\nprudšieho\nprudšiemu\nprudších\nprudším\nprudšími\nprudšiu\nprudšom\nprudšou\npruh\npruhovane\npruhovaný\npruhovitý\nprurigo\npruritus\nPrus\nPruska\nPrusku\npruský\nprusliak\nPrusov\nPrusy\nPrušiaci\nprúta\nprút\nprútený\nprútie\nprútikár\nprútikársky\nprútikárstvach\nprútikárstvam\nprútikárstvo\nprútik\nprútina\nprútmi\nprútový\npružení\npruženia\npruženie\npružením\npruží\npružiaci\nprúžik\npružina\npružinka\npružinový\nPružinského\nprúžkovaný\npružne\npružnosť\npružný\nprúžok\nprv\nprvácky\nprváča\nprváčik\nprváčka\nprvák\nprväzovať\nprve\nprvenstvo\nprvkový\nprvo\nprvobytne\nprvobytný\nprvočinitele\nprvočiniteľov\nprvočíslach\nprvočíslam\nprvočíslo\nprvodarca\nprvohôr\nprvohorách\nprvohorám\nprvohorami\nprvohorný\nprvohory\nprvoka\nprvokmi\nprvok\nprvokoch\nprvokom\nprvokov\nprvokovi\nprvoky\nprvolezca\nprvolezcami\nprvolezci\nprvolezcom\nprvolezec\nprvoligista\nprvoligový\nprvomájový\nprvopis\nprvoplánový\nprvopočiatočný\nprvopočiatok\nprvorado\nprvoradý\nprvoročiak\nprvoročné\nprvorodene\nprvorodenec\nprvorodený\nprvosienka\nprvôstka\nprvostupňovo\nprvostupňový\nprvotina\nprvotlač\nprvotne\nprvotno\nprvotnopospolný\nprvotnosť\nprvotný\nprvotriednosť\nprvotriedny\nprvovolič\nprvovolička\nprvovoličský\nprvovýrob\nprvovýroba\nprvovýrobca\nprvovýrobne\nprvovýrobné\nprvovýrobnej\nprvovýrobných\nprvovýrobnými\nprvovýrobok\nprvovýstup\nprvovýstupy\nprvýkrát\nprvý\npryskyríc\npryskyrica\nprýštiaci\nprýštiť\npryvkovite\nprznenie\nprzni\nprznime\nprznite\nprzniteľ\nprzniť\npsalmódia\npsaltérium\npsamit\npsamofilný\npsamofyt\npsamón\nPSČ\npsefit\npseudo\npseudoamitóza\npseudodemokracia\npseudodemokratmi\npseudodemokratom\npseudofarba\npseudofóbia\npseudofosília\npseudogravidita\npseudohistorický\npseudoideály\npseudoinštrukcia\npseudokód\npseudokríza\npseudokultúr\npseudokultúrach\npseudokultúram\npseudokultúra\npseudológia\npseudoľudovosť\npseudoľudový\npseudomor\npseudonáhodný\npseudo-náhodný\npseudonym\npseudoproblém\npseudoproblémami\npseudoproblémov\npseudoproblémy\npseudopuberta\npseudorevolučnú\npseudosmia\npseudotuberkulóza\npseudotumor\npseudoumenie\npseudourémia\npseudoveda\npseudovedecký\npseudoxantóm\npsi\npsiareň\npsiarňach\npsiarňam\npsica\npsíci\npsíča\npsíček\npsíčka\npsíčkami\npsičkár\npsičkárka\npsičkársky\npsíčkoch\npsíčkom\npsíčkovia\npsíčkov\npsíčky\npsí\npsíkami\npsík\npsíkovi\npsíkovia\npsilósis\npsilóza\npsín\npsina\npsinček\npsinec\npsinka\nPsion\nPSIS\npsísk\npsisko\npsitacizmus\npsitakóza\nPSK\nPskov\nPskovský\npsl\npsofokarp\npsogometer\npsoriatik\npsoriáz\npsoriáza\npsoriáze\npsoriázou\npsoriázu\npsoriázy\npsôt\npsota\npsotný\npsové\npsovitý\npsovod\npsovsky\npsovský\nPSS\npsst\npst\npstkať\npstorkyňa\npstruha\npstruh\npstruhovi\npstruhový\nPstruša\nPstruši\npstruží\npstrúžik\npstrúžikovi\npsu\npsuť\npsych\npsychasténia\npsychastenik\npsyché\npsychedelický\npsychiater\npsychiatria\npsychiatricky\npsychiatrický\npsychiatrička\npsychiatrov\npsychicky\npsychický\npsychika\npsychoanalytický\npsychoanalytička\npsychoanalytik\npsychoanalýz\npsychoanalýzach\npsychoanalýzam\npsychoanalýza\npsychodráma\npsychofarmakológia\npsychofarmakum\npsychofyziológ\npsychofyziológia\npsychogénia\npsychohygiena\npsychochirurgia\npsychokinéza\npsychológ\npsychológia\npsychologicky\npsychologický\npsychologička\npsychologizovaním\npsychologizovať\npsychomantia\npsychometria\npsychopat\npsychopatia\npsychopaticky\npsychopatický\npsychopatička\npsychopatka\npsychopatológ\npsychopatológia\npsychopédia\npsychosexuálny\npsychosféra\npsychosociálny\npsychosomatický\npsychotechnika\npsychoterapeut\npsychoterapeuticky\npsychoterapeutický\npsychoterapeutka\npsychoterapia\npsychotest\npsychotestmi\npsychotický\npsychotrauma\npsychotronický\npsychotronička\npsychotronika\npsychotronik\npsychotrónny\npsychotropne\npsychotropný\npsychóz\npsychózach\npsychózam\npsychóza\npsychroalgia\npsychrometer\nPŠC\npšen\npšenica\nPšenička\nPšeničku\npšenično\npšeničný\npšenný\npšeno\npšenový\npškrnok\npštros\npštrosíča\npštrosí\npštrosovi\nPt\nPTE\npterodaktyl\npterodaktylus\nptilósis\nptilóza\nptoamín\nptomainémia\nptorestantizmus\nptosis\nptóza\nPtrukša\nPtrukše\nPtrukši\nptyalín\nptyalitotómia\nptyalizmus\nptyalolit\nptyalolitiáza\nPu\nPU\npubert\npubertách\npuberťáka\npubertálny\npubertám\npubertami\npuberta\npubescencia\npubl\npublic\npublicista\npublicisticky\npublicistický\npublicistika\npublicistka\npublicita\npublicizmus\npublik\npublík\npublikáciach\npublikácia\npublikačne\npublikačno\npublikačný\npublikovanie\npublikovaný\npublikovať\npublikum\npucolán\nPucov\npucoval\npucovala\npucovali\npucovalo\npucovaní\npucovať\nPucovská\nPucovskej\npucuj\npucuje\npucujem\npucujeme\npucuješ\npucujete\npucujme\npucujte\npucujú\npucujúc\npučania\npučanie\npučaním\npučaniu\npučať\npučiace\npučiaci\npučidlo\npúčik\npučista\npučistický\npučiť\npuč\npúčka\npúčkami\npúčkoch\npúčkom\npúčkov\npúčku\npúčky\npúčok\npudami\npud\npudel\npudelpointer\npúder\npudilára\npudilár\npudiláre\npudilári\npudilármi\npudilároch\npudilárom\npudilárov\npudiláru\npuding\npudingmi\npudingoch\npudingom\npudingov\npudingový\npudingu\npudingy\npudiť\npudlík\npudlíkovi\npudloch\npudlo\npudlov\npudlovi\npudor\npudosť\npudovo\npudovosť\npudový\npudrenka\npudrovať\nPuebla\nPueble\npueblo\nPueblo\npuerilita\npuerilizmus\npuerilný\npuerpera\npuerperium\npuf\npuffer\npufkať\npugilár\npúhy\npuch\npuchnúceho\npuchnúcej\npuchnúci\npuchnúcich\npuchnúť\npuchor\nPúchov\npúchovská\npúchovské\npúchovskej\npúchovskému\npúchovskom\npúchovskou\npúchovskú\npúchovských\npúchovským\npúchovskými\nPúchovský\npuchra\npuchrami\npuchre\npuchroch\npuchrom\npuchrov\npuchru\npuchry\nPukač\npukačka\npukancovú\npukanec\npukanie\npukanského\npukanskej\npukaný\npukať\npuk\npuklica\npuklina\npuknutie\npuknúť\npuknutý\npukotať\npukot\npukotmi\npula\npulard\nPulec\npuli\npulman\nPulman\nPulmanom\npulmo\npulmolit\npulmonálny\npulmonalstenóza\npulmonektómia\npulmotor\npulóver\npulóvrik\npúlp\npulpa\npulpit\npulpitída\npulpitis\npulpitita\npult\npultíkmi\npultíkom\npultmi\npultový\npulverizácia\npulvila\npulzácia\npulzačnej\npulz\npulzný\npulzovania\npulzovanie\npulzovať\npulzový\npulzujúce\npulzujúceho\npulzujúcej\npulzujúci\npulzujúcim\npulzujúcom\npulzujúcu\npúm\npuma\npumový\npúmp\npumpár\npumpa\npumpička\npumpiek\npumpky\npumpnúť\npumpované\npumpovaní\npumpovania\npumpovanie\npumpovaním\npumpovaniu\npumpovať\npunc\npuncovaná\npuncovaní\npuncovania\npuncovanie\npuncovaných\npuncovanými\npuncovať\npuncovnej\nPuncovný\npuncový\npunč\npunčový\npunk\npunkcia\npunkčný\npunktácia\npunkt\npunktičkár\npunktičkársky\npunktičkársky\npunktičkárstvach\npunktičkárstvam\npunktičkárstvo\npunktmi\npunktum\npunktúra\npuntičkár\npuntičkársky\npuntičkárstvach\npuntičkárstvam\npuntičkárstvo\npupa\npúpä\npúpaca\npúpacami\npúpace\npúpaci\npúpacoch\npúpacom\npúpacov\npúpacu\npupák\npúpät\npúpätiek\npúpätko\npúpav\npúpava\npúpavec\npúpavový\npupček\npupčísk\npupčisko\npupeca\npupecami\npupece\npupeci\npupecoch\npupecom\npupecov\npupecu\npupenec\npupeň\npupienok\npupila\npupilometer\npupkáč\npupkatý\npupkový\npupočník\npupočný\npupok\npurány\npurga\npurgácia\npurgatívum\npurgatórium\nPurgina\nPurginu\npurifikácia\npurifikovať\npurim\npurista\npuristicky\npuristický\npuristka\npuritán\npuritánka\npuritánsky\npuritánsky\npuritánstvach\npuritánstvam\npuritánstvo\npurizmus\npurpur\npurpurmi\npurpurovo\npurpurovočervený\npurpurový\npurpury\npurulencia\npús\npusa\npusinka\npusinkách\npusinkovať\npusinku\npusinky\npusota\npúst\npustatina\npustatinný\npustatinový\npusta\npustenia\npustenie\npustením\npusteniu\npustený\npusti\npustiaci\npustime\npustina\npustinách\npustine\npustinou\npustinu\npustiny\npustite\npustiť\npustnutiu\npustnúť\npusto\npustolosis\npustošeného\npustošenia\npustošenie\npustošením\npustošiaci\npustošiacim\npustošiteľ\npustošiteľa\npustošiť\npustošivo\npustošivý\npustota\npustovňa\npustovní\npustovnícky\npustovníčiť\npustovníčka\npustovník\npustula\npustulóza\npustý\npuškár\nPuškárovej\npuškárska\npuškárskej\npuškárskych\npuškárskymi\npuškárstvo\npuška\nPuškin\nPuškina\npuškový\npuškvorec\npušný\npúšťach\npúšťané\npúšťaného\npúšťaní\npúšťania\npúšťanie\npúšťaním\npúšťaniu\npúšťaných\npúšťať\npúšť\nPúštna\npúštne\npúštneho\npúštnej\npúštnom\nPúštnou\npúštnu\npúštny\npúštnych\npúštnym\npúšťový\npút\npútač\npúťach\npúťam\npútaní\npútanie\npútaním\nputatívny\npútať\npútavo\npútavosť\npútavý\npúť\npútec\nputera\nputier\nputika\npútkach\npútkam\npútko\nputňa\nputní\npútnica\npútnický\npútnictvo\nputnička\npútnička\npútnik\npútok\nputo\npútosť\nputovanie\nputovať\nputovný\npúťový\nputrefakcia\nputrídny\nputti\nputto\nputuchlina\nputujúca\nputujúce\nputujúceho\nputujúcej\nputujúcemu\nputujúci\nputujúcich\nputujúcim\nputujúcimi\npuvoár\npuzdier\npuzdierko\npuzdierok\npúzdra\npúzdre\npúzdro\npuzdro\npúzdrom\npuzdrový\npuzzle\nPVC\nPVFA\nPVP\npyartróza\npyelitída\npyelitis\npyelolitotómia\npyelonefritída\npyeloskopia\npyémia\npygidum\npygmej\npygostyl\npých\npýchach\npýcham\npýchami\npýcha\npykať\npyknický\npyknolepsia\npyknometer\npyletrombóza\npylón\npylónový\npylor\npylorektómia\npylorostenóza\npyometra\npyonefritída\npyoperitoneum\npyorea\npyorrhea\npyotorax\npyraidálny\npyramíd\npyramídach\npyramidálny\npyramídam\npyramída\npyramídový\npyranometer\npýr\npyré\npýre\npyrén\nPyrenejach\nPyrenejami\nPyreneje\nPyrenejí\npyrenejský\npýrenie\npyrénu\npyrény\npyretikum\npyrex\nPyrex\npyridoxín\npyrit\npyritmi\npyritovom\npyritových\npýriť\npýrmi\npyrofágia\npyrofóbia\npyrofyt\npyrogén\npyrogénny\npýroch\npyrolatria\npyrolyzát\npyrolýza\npyrolýza\npyrolýzny\npýrom\npyroman\npyrománia\npyromantia\npyrometamorfóza\npyrometer\npyrometria\npyrop\npyroretín\npyrosiderit\npyroskop\npyrotechnicky\npyrotechnický\npyrotechnička\npyrotechnika\npyrotechnik\npyroterapia\npýrov\npyróza\npyrózou\nPyrrhami\npyrrhonizmus\nPyrrhos\nPyrrhovho\nPyrrhovmu\nPyrrhovo\nPyrrhovom\nPyrrhovým\npýru\npýry\npyskáč\npyskatý\npysk\npyskovať\npysky\npýšenie\npýšiť\npyšne\npyšnil\npyšnilo\npyšniť\npyšno\npyšnosť\npyšný\npyštek\npytač\npytačiek\npytačku\npytačky\nPytagoras\nPytagormi\npýtajúceho\npýtajúcemu\npýtajúci\npýtajúcich\npýtania\npýtanie\npýtaním\npýtaný\npýtať\npýtavý\npyteľ\npýthia\nPýtia\npýtický\npytlactvo\npytle\npytli\npytliacky\npytliactvach\npytliactvam\npytliactvo\npytliačeniu\npytliačiť\npytliak\nPytlík\nPytlíka\npytlíku\npyxis\npyžám\npyžama\npyžamka\npyžamko\npyžamo\npyžamový\nPZ\nq\nQ\nQébečan\nquadrata\nquadrilla\nquaeritur\nquai\nquarter\nquasi\nquasimodo\nquattrocento\nQuebec\nQuébec\nquebecký\nquébecký\nQuébečana\nQuebečan\nQuébečania\nQuebečaniek\nQuebečanka\nQuébečanka\nQuebečanky\nquetzal\nquiéto\nQuinta\nQuintus\nquiproquo\nQuirinál\nQuirit\nquisling\nQuite\nQuito\nquitský\nquodlibet\nquotidiana\nQV\nr\nR\nŕ\nraabizácia\nrabat\nrabatmi\nrabato\nrabatový\nrabatský\nrab\nRabča\nRabči\nrabdovírus\nrabiát\nrabiáti\nrabiátmi\nrabiátnik\nrabiátny\nrabiátovi\nrabiátsky\nRabiátskym\nrabies\nrabín\nrabínsky\nrabínsky\nrabovačiek\nrabovačka\nrabovačkách\nrabovačkám\nrabovačke\nrabovačkou\nrabovačku\nrabovačky\nrabovaní\nrabovania\nrabovanie\nrabovaním\nrabovaniu\nrabovať\nrabovka\nrabský\nrabstvo\nrabulista\nrabulistika\nrác\nRác\nrace\nráce\nRacek\nrácem\nracemát\nráceme\nracemizácia\nráceš\nrácete\nracia\nracionalista\nracionalisticky\nracionalistický\nracionalistka\nracionalitaN\nracionalizácia\nracionalizačný\nracionalizátor\nracionalizátormi\nracionalizátorský\nracionalizmus\nracionalizovania\nracionalizovaním\nracionalizovaný\nracionalizovať\nracionálne\nracionálno\nracionálnosť\nracionálny\nracionovať\nracketeering\nraclette\nrácme\nrácte\nrácu\nrácuc\nRača\nráčený\nRačianska\nRačianske\nRačianskeho\nRačianskej\nračianski\nRačianskom\nRačianskou\nRačiansku\nRačiansky\nračianskych\nRačianskym\nRačice\nRačiciach\nRačický\nračí\nráčik\nráčiť\nRačko\nráčkovaniu\nračkovať\nráčkovať\nRačkovej\nRačkovi\nradá\nrada\nradar\nradarmi\nradarový\nradary\nRadava\nrada\nrad\nrád\nRadbuza\nRadbuzou\nRadbuzu\nRadbuzy\nradca\nradcovský\nradej\nradektómia\nradene\nradenia\nradenie\nradením\nradeniu\nradený\nradi\nradiaca\nradiaci\nradiácia\nradiačne\nradiačný\nradiál\nradiála\nradiálach\nradiále\nradiálky\nradiálny\nradiálu\nradiály\nradián\nradiant\nradiátor\nradiátorový\nradicivorný\nradič\nradievať\nradikál\nradikálčenie\nradikalista\nradikalisticky\nradikalistický\nradikalizácia\nradikalizácie\nradikalizácii\nradikalizáciou\nradikalizáciu\nradikalizmus\nradikalizovania\nradikalizovať\nradikálnosť\nradikálny\nradikálovo\nradikálový\nradikotómia\nradikula\nRadim\nRadima\nRadimom\nRadimov\nRadimove\nRadimovi\nrádioaktivácia\nrádioaktivita\nrádioaktívnosť\nrádioaktívny\nrádioamatér\nrádioamatérka\nrádioamatérske\nrádioamatérsky\nrádioamatérstvu\nrádioaparát\nrádioastronóm\nrádioastronómia\nrádiobiológ\nrádiobiológia\nrádiodiagnostika\nrádioekológia\nrádioelektrickými\nrádioelektronika\nrádioelektroniky\nrádiofarmakum\nrádiofikáciu\nrádiofor\nrádiofyzika\nrádiogénny\nrádiografické\nrádiogram\nrádiogramofón\nrádiogramofónov\nrádiogravimetria\nrádiochémia\nrádioizotop\nrádioizotopový\nRádioklubu\nrádiokomunikácia\nrádiokomunikáciách\nrádiokomunikáciám\nrádiokomunikáciami\nrádiokomunikácie\nRádiokomunikácii\nrádiokomunikácií\nrádiokomunikáciu\nrádiokomunikačný\nrádioliečbach\nrádioliečbam\nrádioliečbami\nrádioliečba\nrádioliečob\nrádiológ\nrádiológia\nrádiologický\nrádiologička\nrádiolokácia\nrádiolokačne\nrádiolokačný\nrádiolokátor\nrádiolokátore\nrádiolokátormi\nrádiolokátoru\nrádiolokátory\nrádiolýza\nrádio\nrádiomagnetofón\nRádiomaják\nrádiomechanička\nrádiomechanik\nrádiometeorológia\nrádiometer\nrádiometra\nrádiometrami\nrádiometri\nrádiometria\nrádiometrických\nrádionavigácia\nrádionavigácie\nrádionavigáciu\nrádionavigačný\nrádionka\nrádioprijímač\nrádiorelé\nrádioreléový\nrádioskopia\nrádiosonda\nrádiostaníc\nrádiostanica\nrádiostanicami\nrádiostanice\nrádiostaniciach\nrádiostaniciam\nrádiostanicou\nrádiostanicu\nrádiotech\nrádiotechnický\nrádiotechnička\nrádiotechnika\nrádiotechnik\nrádiotelefón\nrádiotelefóne\nrádiotelefónia\nrádiotelefonický\nrádiotelefónmi\nrádiotelefónoch\nrádiotelefónom\nrádiotelefónov\nrádiotelefónu\nrádiotelefóny\nrádiotelegrafia\nrádiotelegraficky\nrádiotelegrafický\nrádiotelegrafista\nrádiotelegrafistka\nrádiotelegram\nrádiotelekomunikáciách\nrádiotelekomunikáciám\nrádiotelekomunikáciami\nrádiotelekomunikácie\nrádiotelekomunikácií\nrádioteleskop\nrádioterapeutický\nrádioterapia\nrádiovka\nrádiovo\nrádiový\nrádiožurnál\nrádiožurnálmi\nRadislava\nRadislavou\nradista\nradistka\nRadiše\nradiť\nrádium\nrádius\nradix\nRadix\nRadixom\nRadkou\nradkyňa\nradlica\nradlicový\nradlička\nradličkového\nradličkovom\nradlo\nRadmila\nRadmilu\nRadmily\nrád\nradne\nradnica\nradničný\nradno\nradný\nrado\nRadobica\nRadobici\nradodajka\nradodajne\nradodajnosť\nradodajný\nradok\nRadola\nRadoma\nRadome\nrádomechanička\nRadomil\nRadomila\nRadomilom\nRadomír\nRadomou\nRadomy\nradón\nradóne\nradónom\nradónu\nradorečný\nRadoslava\nRadoslav\nradostiplný\nradostiť\nradosť\nRadôstka\nRadôstke\nradostne\nradostník\nradostníku\nradostníky\nradostnosť\nradostný\nRadošovský\nrádotechnika\nrádotelefónia\nRadovan\nradovaní\nradovania\nradovanie\nradovánkach\nradovánkam\nradovánky\nradovať\nrádove\nradovo\nrádovo\nradovravný\nradový\nrádový\nradšej\nradú\nradujúci\nradula\nRadúz\nRadvaň\nRadvane\nRadvani\nradvanskom\nradvanskú\nradvanskými\nRadvanský\nrádža\nrádžajóga\nradža\nradžoch\nradžom\nradžov\nradžovi\nradžovia\nraf\nRAF\nrafáč\nrafad\nrafadlo\nRafael\nRafaela\nRafaele\nRafaelom\nRafaelovej\nrafaón\nrafať\nráf\nrafe\nrafem\nrafeme\nrafeš\nrafete\nrafika\nráfik\nrafinácia\nrafinačný\nrafinád\nrafinádach\nrafinádam\nrafináda\nrafinát\nrafináty\nrafinéria\nrafinérka\nrafinérkach\nrafinérkami\nrafinérke\nrafinérkou\nrafinérky\nrafinérok\nrafinérsky\nrafinérsky\nrafinovane\nrafinovania\nrafinovanie\nrafinovaním\nrafinovanosť\nrafinovaný\nrafinovať\nrafme\nrafnutie\nrafnúť\nráfový\nraft\nrafte\nrafting\nraftu\nrafú\nrafúc\nragáda\nragbista\nragby\nragbyový\nragenčný\nraglán\nraglánový\nragnúť\nragtime\nragú\nrahien\nrahno\nrácha\nráchal\nracharózový\nráchať\nrachétieľ\nrachétľach\nrachétľam\nrachétľa\nrachétlí\nrachialgia\nrachický\nrachis\nrachitický\nrachitíd\nrachitídach\nrachitídam\nrachitída\nrachitik\nrachnúť\nrachnutý\nrachotať\nrachot\nrachotenie\nrachotiaci\nrachotina\nrachotine\nrachotinu\nrachotiť\nrachotivý\nrachotmi\nrachotný\nraison\nrajbadlo\nrajbať\nrajbi\nrajbime\nrajbite\nrajbú\nrajbúc\nrajc\nrajcoval\nrajcovala\nrajcovali\nrajcovalo\nrajcovať\nrajcuj\nrajcuje\nrajcujem\nrajcujeme\nrajcuješ\nrajcujete\nrajcujme\nrajcujte\nrajcujú\nrajcujúc\nrajčiak\nrajčiakovo\nrajčiakový\nRajčianska\nRajčianskou\nrajčina\nrajčinový\nRajda\nráje\nRajec\nrajeckoteplickom\nrajeckoteplických\nrajecký\nráji\nraj\nRajmud\nrajnica\nrajnicový\nrajnička\nrajoizácia\nrajón\nrajonizácia\nrajonizoval\nrajonizovať\nrajónne\nrajónnych\nrajónový\nrajsky\nrajský\nrajtár\nrajtáre\nrajtarovať\nrajtárovať\nrajtáru\nrajtiek\nrajtky\nrajtovať\nrajzovanie\nrajzovať\nrakčiakový\nraket\nraketa\nrakétieľ\nraketizácia\nrakétľach\nrakétľam\nrakétľa\nrakétlí\nraketomet\nRaketometné\nraketometnej\nraketometník\nraketometnú\nraketoplán\nraketovo\nraketový\nrakijach\nrakijam\nrakija\nrakijí\nrak\nRakoľuby\nRákos\nrákosí\nrákosia\nrákosie\nrákosím\nrákosová\nrákosové\nrákoša\nRákoša\nrákoše\nrákoši\nRákoši\nrákošiť\nrákoš\nrákošmi\nrákošoch\nrákošom\nrákošov\nrákošu\nrakova\nRakovca\nRakovce\nRakovci\nRakovčík\nRakove\nRakovec\nRakovická\nRakovickom\nrakovín\nrakovinách\nrakovinám\nrakovinami\nrakovina\nrakovinný\nrakovinotvorne\nrakovinotvorný\nrakovinový\nRakovnica\nRakovnícka\nRakovnícke\nrakovníckeho\nrakovnickej\nrakovníckej\nrakovníckom\nrakovnícku\nrakovnícky\nRakovníckych\nRakovnický\nRakovník\nRakovníka\nRakovníkom\nRakovníku\nRakovo\nrakovskom\nRakovský\nrakový\nRakša\nRakús\nRakúsko\nrakúskosť\nrakúsko-uhorský\nrakúsky\nRakúsoch\nRakúsom\nRakúsy\nRakúšan\nRakúšanka\nrakva\nrakví\nrakvička\nrakvový\nrakýt\nrakyta\nrakytník\nRakytovskej\nrakytový\nral\nRale\nrallentando\nralley\nrallye\nRalskom\nRAM\nRama\nRáma\nramadán\nRamadánu\nramapitek\nramár\nramaritánka\nramársky\nramársky\nramárstvach\nramárstvam\nramárstvo\nramasovať\nrám\nrámcovanie\nrámcovaný\nrámcovať\nrámcove\nrámcovo\nrámcový\nrámček\nRame\nrámec\nrameni\nramenitý\nramenne\nramenný\nrameno\nramenový\nRamie\nramien\nramienko\nramienok\nramifikácia\nrámik\nrámkový\nRamón\nRamona\nRamóna\nRamónovi\nRamonu\nRamony\nramorastlý\nrámované\nrámovanie\nramovať\nrámovať\nrámovka\nrámový\nrámp\nrampár\nrampáša\nrampáše\nrampáši\nrampáš\nrampášmi\nrampášoch\nrampášom\nrampášov\nrampášu\nrampa\nRamu\nrámus\nrámuse\nrámusmi\nrámusoch\nrámusom\nrámusov\nrámusu\nrámusy\nRamzes\nrán\nránach\nraňajkovať\nraňajkové\nraňajky\nraňajší\nraňajšku\nránam\nráňanie\nráňať\nráňava\nranavý\nrana\nrančera\nrančer\nrančeri\nrančéria\nrančermi\nrančeroch\nrančerom\nrančerov\nrančerovi\nranč\nrančo\nrand\nrandál\nrandáli\nrandálmi\nrande\nranejšíF\nranený\nrang\nranger\nrangmi\nrangoch\nrangom\nrangov\nrangu\nRangún\nRangúnčan\nrangúnsky\nrangúnsky\nrangy\nránhojič\nránhojiči\nránhojičské\nrání\nraniacim\nraniteľný\nraniť\nránkach\nránkam\nranka\nRankin\nránko\nranne\nranník\nranný\nranogotický\nránok\nráno\nranostaj\nranostaje\nranostaju\nranový\nranvej\nraný\nranžírovať\nrapavieť\nrapavosť\nrapavý\nrap\nrapčať\nrapči\nrapčime\nrapčite\nrapé\nRapel\nrapeľ\nrapidamente\nrapidne\nrapídny\nRapier\nrapík\nrapina\nrapír\nrapkáč\nrapkanie\nrapkaním\nrapkať\nrapkavý\nrapľa\nrapľami\nrapľavý\nraple\nrapli\nrapľoch\nrapľom\nrapľov\nrapľovať\nrapľovi\nrapľu\nraport\nraportmi\nraportovať\nrapotáč\nrapotačka\nrapotaj\nrapotajme\nrapotajte\nrapotajúc\nrapoták\nrapotaňa\nrapotanie\nrapotať\nrapotavo\nrapotavý\nrapot\nrapotmi\nrapotuľa\nrapovské\nrapový\nraps\nrapsód\nrapsódia\nrapsodický\nraptus\nraráška\nraráškami\nraráškoch\nraráškom\nraráškov\nraráškovi\nrarášok\nrarefikácia\nrarita\nraritne\nraritný\nrároha\nrároh\nrás\nrasa\nrasca\nrascí\nrascovica\nrascový\nrasista\nrasisticky\nrasistický\nrasistka\nrasizmus\nrasove\nrasovitý\nrasovo\nrasový\nrast\nraster\nrasti\nrastime\nRastislav\nRastislavova\nRastislavovej\nrastite\nrastlinár\nrastlinársky\nrastlinárstvach\nrastlinárstvam\nrastlinárstvo\nrastlina\nrastlinka\nrastlinno\nrastlinný\nrastlinolekárskej\nrastlinolekárskou\nrastlinolekárskych\nrastlinopis\nrastlinstvo\nrastmi\nrastné\nrastovo\nrastový\nrásť\nrastrovania\nrastrovanie\nrastrovaný\nrastrovať\nrastrový\nrastúci\nraš\nrašelinatý\nrašelinatý\nrašelina\nrašelinísk\nrašelinisko\nrašelinistý\nrašelinitý\nrašelinník\nrašelinníku\nrašelinníky\nrašelinným\nrašelinový\nrašenia\nraší\nrašiť\nRašlová\nRašlovej\nRašlovou\nRašlovú\nrašlových\nRašlu\nrašmavý\nrašpieľ\nrašpľa\nrašplí\nrašpľovať\nrát\nrátač\nrátačku\nraťafák\nraťafáku\nrátajúcou\nratan\nratanha\nratanhia\nrátania\nrátanie\nrátaním\nrátaniu\nrátaný\nrátať\nraťazca\nraťazce\nraťazcov\nrata\nratica\nraticový\nratifikácia\nratifikačný\nratifikovania\nratifikovanie\nratifikovaním\nratifikovaniu\nratifikovaný\nratifikovať\nratihabícia\nRatin\nrating\nratingmi\nratingoch\nratingom\nratingov\nratingový\nratingu\nratingy\nratio\nRatka\nRatková\nRatkovo\nRatkovský\nRatky\nratlík\nratlíkovi\nratolesť\nratoliestka\nratoliestky\nratovaných\nratovaným\nratovať\nrattan\nraut\nrautoch\nrauty\nrave\nRavenna\nRavenne\nRavenny\nravioli\nrazancia\nrazantne\nrazantnosť\nrazantný\nraz\nráz\nrazba\nrázcestie\nrazenie\nrazený\nrázg\nrázga\nraziaci\nrazia\nrazič\nrazičský\nrazidlo\nrazievať\nraziť\nrazítka\nrazítko\nrazítkom\nrazítkovací\nrazítkoval\nrazítkovať\nrazítku\nrazítok\nráznejší\nrázne\nrazníc\nraznica\nraznice\nraznici\nráznosť\nrázny\nrázovite\nrázovito\nrázovitosť\nrázovitý\nrázovo\nrazový\nrázový\nrázporok\nrázsoch\nrázsocha\nrázsvit\nrázštep\nRáztočne\nRáztočno\nráztoka\nrazúra\nrázvor\nrázvorom\nrázvoru\nrážach\nrážam\nraž\nráž\nraždie\nražeň\nRažňanoch\nRažňany\nražná\nražné\nražniči\nražničí\nražno\nražný\nražovica\nrcsl\nrčnievať\nreaálne\nreabsorpcia\nreadmisia\nreadmisný\nreagencia\nreagenčný\nreagens\nreagent\nreagované\nreagovaní\nreagovania\nreagovanie\nreagovaním\nreagovaniu\nreagovať\nreagujúci\nreakcia\nreakcionár\nreakcionárka\nreakcionársky\nreakcionársky\nreakcionárstvach\nreakcionárstvam\nreakcionárstvo\nreakčne\nreakčník\nreakčnosť\nreakčný\nreaktant\nreaktivácia\nReaktivácia\nreaktivácii\nreaktiváciou\nreaktiváciu\nreaktivít\nreaktivita\nreaktivite\nreaktivitu\nreaktivity\nreaktivizáciu\nreaktívnosť\nreaktívnosti\nreaktívny\nreaktivovanie\nreaktivovaný\nreaktivovať\nreaktor\nreal\nreál\nrealgár\nreáli\nreália\nreálie\nrealimentácia\nrealista\nrealistickosť\nrealistickosti\nrealisticky\nrealistický\nrealistka\nrealit\nrealita\nrealitka\nrealitno\nrealitný\nrealizácia\nrealizačný\nrealizátor\nrealizátormi\nrealizmus\nrealizovanie\nrealizovaný\nrealizovateľnosť\nrealizovateľnosti\nrealizovateľný\nrealizovať\nreálka\nreálmi\nreálne\nreálnosť\nreálny\nrealokácia\nreamaterizovať\nreanimácia\nReanimácia\nreanimácie\nreanimáciu\nReanimačné\nreanimačných\nreazumovať\nrebab\nrebarbôr\nrebarborách\nrebarborám\nrebarborami\nrebarbora\nrebarborový\nrebeka\nrebelanský\nrebelanstvo\nrebelant\nrebelantka\nrebelantkou\nrebelantsky\nrebelantský\nrebelantský\nrebelantstvo\nrebel\nrebélia\nrebelovať\nRebelovia\nrebelský\nrebiek\nrebier\nrebierko\nrebierkovou\nrebierok\nreblochont\nrebríček\nrebríčka\nrebríčkami\nrebríčkoch\nrebríčkom\nrebríčkov\nrebríčkovitej\nrebríčku\nrebríčky\nrebrík\nrebríkový\nrebrinák\nrebrina\nrebriniak\nrebrinový\nrebro\nrebrovane\nrebrovaný\nrebrovito\nrebrovitý\nrebrový\nrébus\nrébusovitý\nrébusový\nrec\nReca\nreceiver\nrecent\nrecentný\nrecenzent\nrecenzentka\nrecenzentský\nrecenzentstvo\nrecenzia\nrecenzný\nrecenzovanie\nrecenzovaný\nrecenzovať\nrecepcia\nrecepčný\nrecepis\nreceptár\nreceptármi\nrecept\nreceptivita\nreceptívnosť\nreceptívny\nreceptmi\nreceptor\nreceptový\nreceptúr\nreceptúrach\nreceptúram\nreceptúra\nrecese\nrecesia\nrecesijný\nrecesivita\nrecesívne\nrecesívnu\nrecesívnych\nrecesný\nrecidív\nrecidívach\nrecidívam\nrecidíva\nrecidivista\nrecidivita\nrecidívny\nrecidivovať\nrecifívny\nrecipient\nrecipienta\nrecipienti\nrecipientmi\nrecipientom\nrecipientov\nRecipientovi\nrecipoval\nrecipovala\nrecipovali\nRecipovali\nrecipovalo\nrecipovaní\nrecipovanie\nRecipovaním\nrecipovať\nreciprocita\nrecipročne\nrecipročný\nrecipuj\nrecipuje\nrecipujem\nrecipujeme\nrecipuješ\nrecipujete\nrecipujme\nrecipujte\nrecipujú\nrecipujúc\nrecirkulácia\nrecirkulácie\nrecirkulácii\nrecirkuláciou\nrecirkuláciu\nrecitácia\nrecitačný\nrecitál\nrecitáli\nrecitálmi\nrecitando\nrecitatív\nrecitatíve\nrecitátor\nrecitátorka\nrecitátormi\nrecitátorský\nrecitátorstvo\nrecitovanie\nrecitovať\nrecme\nreconquista\nrecte\nrecyklácia\nrecyklačný\nrecyklovať\nrečičiek\nrečičky\nreč\nrečnenia\nrečnenie\nrečnícky\nrečníctvach\nrečníctvam\nrečníctvo\nrečníčka\nrečnievať\nrečník\nrečníkov\nrečním\nrečníme\nrečníš\nrečníte\nrečniť\nrečnivý\nRečno\nrečňovanka\nrečňovať\nrečný\nrečovo\nrečový\nredakcia\nredakčne\nredakčný\nredaktor\nredaktorči\nredaktorčime\nredaktorčite\nredaktorčiť\nredaktorka\nredaktormi\nredaktorova\nredaktorovou\nredaktorský\nredaktorstvo\nredempcia\nredemptorista\nredemptoristický\nredestilácie\nredhibícia\nredigať\nRedigovaná\nredigované\nredigovanie\nredigovať\nredikať\nredimigrácia\nredingot\nredingotmi\nrediskontu\nredisový\nredistribúcia\nredistribúcie\nredistribúcii\nredistribúciou\nredistribúciu\nredistribuovať\nredivivus\nreďkev\nreďkovka\nreďkovkový\nreďkvách\nreďkvám\nreďkvami\nreďkvi\nreďkví\nreďkvička\nreďkvičkový\nreďkvou\nreďkvový\nrednutia\nrednutie\nrednutiu\nrednúť\nredopp\nredšej\nredší\nredšia\nredšie\nredšieho\nredšiemu\nredších\nredším\nredšími\nredšiu\nredšom\nredšou\nreducent\nredukcia\nredukčne\nredukčný\nredukovane\nredukovania\nredukovanie\nredukovaním\nredukovaniu\nredukovaný\nredukovaný\nredukovateľnosť\nredukovateľný\nredukovatežnosť\nredukovať\nreduktáza\nreduktívnou\nreduktor\nreduktore\nreduktorom\nreduktorov\nreduktoru\nreduktory\nredukujúci\nredundancia\nredundania\nredundantný\nreduplikácia\nreduplikovanejší\nreduplikovať\nreduta\nReduta\nRedute\nRedutu\nReduty\nreedícia\nreel\nreelný\nreemigrácia\nreemigrant\nreeskompt\nreeskont\nreeskonte\nreeskontný\nreeskontom\nreeskontované\nreeskontovanie\nreeskontovaním\nreeskontovanú\nreeskontovaných\nreeskontovať\nreeskontu\nreeskontuje\nreeskonty\nreexport\nref\nrefál\nrefektár\nrefektári\nrefektórium\nrefenerácia\nrefenerátor\nreferát\nreferátmi\nreferátový\nreferencia\nreferenčne\nreferenčno\nreferenčný\nreferend\nreferendum\nreferent\nreferentka\nreferentových\nreferentsky\nreferentský\nreferovane\nreferovania\nreferovanie\nreferovaniu\nreferovaný\nreferovať\nreferrovať\nrefíž\nrefl\nreflácia\nreflektant\nreflektivita\nreflektívny\nreflektor\nreflektorový\nreflektovaná\nreflektované\nreflektovaného\nreflektovanie\nreflektovaných\nreflektovať\nreflex\nreflexia\nreflexívnosť\nreflexívny\nreflexívum\nreflexne\nreflexno\nreflexný\nreflexológia\nreflux\nreforiem\nreformácia\nreformačný\nreformát\nreformátor\nreformátorka\nreformátormi\nreformátorský\nreformátovou\nreforma\nreformista\nreformisticky\nreformistický\nreformistka\nreformizmus\nreformne\nreformný\nreformovania\nreformovanie\nreformovaním\nreformovaniu\nreformovaný\nreformovať\nrefrakcia\nrefrakčný\nrefraktometria\nrefraktor\nrefrén\nrefrénovite\nrefrénovito\nrefrénovitý\nrefrénový\nrefrigerácia\nrefrigerátor\nrefúgium\nrefundácia\nrefundačný\nrefundovania\nrefundovanie\nrefundovaním\nrefundovaný\nrefundovať\nrefúzia\nreg\nregál\nregál\nregálne\nregálneho\nregálový\nregata\nrege\nregelácia\nrégence\nregenerácia\nregeneračne\nregeneračný\nregenerát\nregenerátor\nregenerátov\nregenerátu\nregenerovanie\nregenerovaný\nregenerovať\nregenschori\nregent\nregentka\nregentský\nregentstvo\nregest\nregestmi\nRegetovka\nRegetovky\nreggae\nRégia\nregiment\nregimentmi\nRegín\nRegínach\nRegínam\nRegína\nregion\nregionalisti\nregionalistiku\nregionalistiky\nregionalistov\nregionalizácia\nregionalizácie\nregionalizácii\nregionalizáciou\nregionalizáciu\nregionalizmus\nregionálne\nregionálnosť\nregionálny\nregión\nregist\nregister\nregistrácia\nregistračka\nregistračne\nregistračno\nregistračný\nregistrátor\nregistrátore\nregistrátorka\nregistrátormi\nregistrátoru\nregistrátory\nregistratúr\nregistratúrach\nregistratúram\nregistratúra\nregistratúrny\nregistrovania\nregistrovanie\nregistrovaním\nregistrovaný\nregistrovať\nregistrový\nregistrujúci\nregistry\nreglement\nreglementácia\nreglementácie\nreglementáciu\nreglemente\nreglementov\nreglementovaný\nreglementovať\nreglementu\nreglementuje\nreglementy\nregolit\nregradácia\nregredient\nregres\nregresát\nregrese\nregresia\nregresie\nregresiu\nregresívnosť\nregresívny\nregresmi\nregresne\nregresný\nregresoch\nregresom\nregresov\nregresu\nregresy\nregrút\nregrutovaní\nregrutovanie\nregrutovať\nregrútsky\nregrútsky\nregúl\nregulácia\nregulačne\nregulačno\nregulačný\nregulách\nregulám\nregulárne\nregulárnosť\nregulárny\nregulatív\nRegulatíve\nregulatívmi\nregulatívne\nregulatívnej\nregulatívnou\nregulatívny\nregulatívnych\nregulatívnym\nregulatívnymi\nregulatívoch\nregulatívom\nregulatívov\nregulatívu\nregulatívy\nregulátnosť\nregulátor\nregula\nregulí\nregulovane\nregulovania\nregulovanie\nregulovaním\nregulovaniu\nregulovaný\nregulovateľne\nregulovateľnosť\nregulovateľnosti\nregulovateľnosťou\nregulovateľný\nregulovať\nreguly\nrehabilita\nrehabilitácia\nrehabilitačno\nrehabilitačný\nrehabilitovaný\nrehabilitovať\nrehliť\nrehni\nrehniť\nrehoľa\nreholí\nrehoľnícky\nrehoľníčka\nrehoľník\nrehoľný\nreholu\nreholy\nrehoniť\nrehotať\nrehot\nrehotmi\nrehtať\nrehtorstvo\nrehúňať\nrehydrácia\nrehydratácia\nrechnovať\nrechtor\nrechtorka\nrechtormi\nrechtorský\nrechtorstvo\nreiki\nreimplantácia\nreimport\nreimportov\nreimportu\nreimporty\nreinfikovať\nreinkarnácia\nreinkarnovali\nReinkarnovaní\nreinkarnujú\nreinkorporáciu\nreinštalácia\nreintegrácia\nReintegrácia\nreintegrácie\nreintegrácii\nreintegráciou\nreintegráciu\nreintegračné\nreintegračných\nreivindikácia\nreizmus\nRejda\nrejdár\nrejdári\nrejdárov\nrejdárske\nrejdárskej\nrejdársku\nrejdárskych\nrejdárskymi\nrejdárstva\nrejdárstvo\nrejdárstvu\nRejdová\nRejdovej\nrejekcia\nrejekcie\nrejekcii\nrekapituália\nrekapitulácia\nrekapitulačný\nrekapitulovať\nrekatolizácia\nrekcia\nrekčný\nreklám\nreklamácia\nreklamačný\nreklama\nreklamne\nreklamno\nreklamný\nreklamovanie\nreklamovaný\nreklamovaný\nreklamovať\nreklamujúci\nrekodifikácia\nrekodifikácie\nrekodifikačný\nrekognícia\nrekognícii\nrekognícií\nrekogníciou\nrekogníciu\nrekognoskácia\nrekognoskovať\nrekognoskujeme\nrekománd\nrekomandácia\nrekomando\nrekomandovať\nrekompenzácia\nrekompenzáciu\nRekompenzačné\nrekompenzačných\nrekompenzovať\nRekomprimácia\nrekonciliácia\nrekondičný\nRekonfigurácia\nrekonfigurujem\nrekonštitúcia\nrekonštitúcie\nrekonštitúcii\nrekonštituovaný\nrekonštrukcia\nrekonštrukčno\nrekonštrukčný\nrekonštruovanie\nrekonštruovaním\nrekonštruovaný\nrekonštruovateľné\nrekonštruovať\nrekonvalescencia\nrekonvalescenčný\nrekonvalescent\nrekonvalescentka\nrekonverzia\nrekonverzie\nrekord\nrekordér\nrekordérka\nrekordérsky\nrekordérsky\nrekordman\nrekordmana\nrekordmani\nrekordmankou\nRekordmanmi\nrekordmanom\nrekordmanov\nrekordne\nrekordný\nrekordovo\nrekordový\nrekreácia\nrekreačne\nrekreačno\nrekreačný\nrekreant\nrekreantka\nrekreantský\nrekreovania\nrekreovanie\nrekreovaniu\nrekreovať\nrekriminácia\nrekriminovať\nrekrudescencia\nrekryštalizácia\nrekryštalizácie\nrekt\nrekta\nrektalgia\nrektálny\nrektangulárny\nrektascenzia\nrektektómia\nrektifikácia\nrektifikácie\nrektifikácii\nrektifikácií\nrektifikáciou\nrektifikáciu\nrektifikovanie\nrektifikovaný\nrektifikovať\nrektitída\nrektorát\nrektorátmi\nrektorátny\nrektor\nrektorka\nrektormi\nrektorovým\nrektorský\nrektorstvo\nrektoskop\nrektoskopia\nrektoskopiu\nrektum\nreku\nrekultivácia\nrekultivačný\nrekultivovali\nrekultivovaná\nrekultivované\nrekultivovaných\nrekultivovať\nrekultivuje\nrekultivujú\nrekuperácia\nrekuperácie\nrekuperácií\nrekuperáciou\nrekuperáciu\nrekuperačný\nrekuperátor\nrekuperátormi\nrekuperátory\nrekurencia\nrekurentný\nrekurz\nrekurze\nrekurzia\nrekurzívny\nrekurzívny\nrekurzom\nrekurzu\nrekuzie\nrekvalifikácia\nrekvalifikačný\nrekvalifikovať\nrekviem\nrekvirácia\nrekviračné\nrekvirované\nrekvirovať\nrekvizícia\nrekvizícii\nrekvizíciu\nrekvizitár\nrekvizitárka\nrekvizita\nRela\nrelácia\nrelačný\nrelantácia\nrelaps\nrelativista\nrelativisticky\nrelativistický\nrelativita\nrelativizmus\nrelativizoval\nrelativizovala\nrelativizovali\nrelativizovalo\nrelativizovať\nrelativizuj\nrelativizuje\nrelativizujem\nrelativizujeme\nrelativizuješ\nrelativizujete\nrelativizujme\nrelativizujte\nrelativizujú\nrelativizujúc\nrelatívne\nrelatívnosť\nrelatívny\nrelatívum\nrelátor\nrelaxácia\nrelaxačne\nrelaxačno\nrelaxačný\nrelax\nrelaxín\nrelaxovania\nRelaxovanie\nrelaxovaním\nrelaxovať\nrelaxujúci\nrelé\nreléový\nrelevácia\nrelevancia\nrelevanciách\nrelevancie\nrelevancii\nrelevanciu\nrelevantne\nrelevantnosť\nrelevantný\nreliabilita\nreliéf\nreliéfnosť\nreliéfny\nreliéfovanie\nreliéfovo\nreliéfový\nreligionistika\nreligioso\nreligiozita\nreligiozity\nreligiózne\nreligióznosť\nreligiózny\nrelikt\nreliktmi\nreliktný\nreliktový\nrelikviár\nrelikvia\nrelokácia\nRelokácia\nrelokácie\nrelokáciu\nRelou\nReľov\nreluktancia\nreluovať\nrelútum\nrely\nrem\nréma\nremake\nremanencia\nremanentný\nremanový\nremark\nrembours\nremedium\nremedúra\nRemenár\nRemenárovej\nRemenárovou\nremencový\nremenček\nremenec\nremenica\nremenice\nRemeniny\nremeň\nremeňový\nremeselne\nremeselnícky\nremeselníctve\nremeselníčiť\nremeselníčka\nremeselník\nremeselnosť\nremeselný\nremeslo\nRemeša\nRemešan\nRemeš\nremešský\nRemešu\nRemeta\nRemetské\nRemetských\nRemetu\nRemety\nremienok\nremilitarizácia\nremilitarizovať\nreminiscencia\nremis\nremisia\nremisii\nremitencia\nremitencie\nremitenda\nremitent\nremitenta\nremitentom\nremitovať\nremituje\nremíz\nremízach\nremízam\nremíza\nremízka\nremizovať\nremízový\nremonštrácia\nRemont\nremonta\nremontácia\nremontu\nremorkáž\nremorkéra\nremorkér\nremorkéri\nremorkérmi\nremorkéroch\nremorkérom\nremorkérov\nremorkéru\nremorkéry\nremoska\nremuláda\nremunerácia\nremziť\nren\nRena\nrenálny\nRenát\nRenátach\nRenátam\nRenáta\nRenčišov\nRenčišova\nRenčišove\nRenčišovom\nrenčišovskom\nrendezvous\nRené\nrenegát\nrenegátsky\nrenegátsky\nrenegátstvo\nrenesancia\nrenesančne\nrenesančno\nrenesančný\nrenet\nreneta\nrenitencia\nrénium\nRenneská\nrenografia\nrenomé\nrenomovaný\nrenovácia\nrenovačný\nrenovovania\nrenovovanie\nrenovovaný\nrenovovať\nrent\nrentabilita\nrentabilitný\nrentabilne\nrentabilnosť\nrentabilný\nrenta\nrentiér\nrentiera\nrentier\nrentierka\nRentierskeho\nrentierskom\nrentiersky\nrentovaného\nrentovať\nrentovo\nrentový\nrenumerácia\nrenumerácie\nrenunciácia\nReny\nreobáza\nreofyt\nreológia\nreorganizácia\nreorganizačný\nreorganizátora\nreorganizovanie\nreorganizovaniu\nreorganizovaný\nreorganizovať\nreorgranizovať\nreostat\nreostatmi\nreotaxia\nreotropizmus\nreovírus\nreparácia\nreparácie\nreparačný\nreparametrizácia\nreparát\nreparátmi\nrepár\nreparoval\nreparovala\nreparovali\nreparovalo\nreparované\nreparovaní\nreparovania\nreparovať\nrepársky\nrepárstvach\nrepárstvam\nrepárstvo\nrepartícia\nrepartície\nreparuj\nreparuje\nreparujem\nreparujeme\nreparuješ\nreparujete\nreparujme\nreparujte\nreparujú\nreparujúc\nrepasáž\nrepasáže\nrepasáží\nRepašský\nrepatriácia\nrepatriačný\nrepatriant\nrepatriantkách\nrepatriantkám\nrepatriantka\nrepatriantský\nrepatriované\nrepatriovaného\nrepatriovaných\nRepatriovaný\nrepatriovať\nrepa\nrep\nrepci\nrepcime\nrepcite\nRepejov\nRepejova\nrepelent\nrepentiť\nreperkúsia\nrepertoár\nrepertoármi\nrepertoárový\nrepetatur\nrepete\nrepetení\nrepetícia\nrepetičný\nrepetiť\nrepetitórium\nrepetovať\nrepice\nrepík\nrepíkový\nRepište\nrepka\nrepkový\nreplantovať\nreplikácia\nreplikačného\nReplikačný\nreplika\nreplikoval\nreplikovala\nreplikované\nReplikovanie\nreplikovať\nreplikujú\nrepnísk\nrepnisko\nrepný\nreporodukovateľnosť\nreport\nreportážach\nreportážam\nreportáž\nreportážny\nreportér\nreportérka\nreportérsky\nreportérsky\nreportovaní\nreportovania\nreportovanie\nreportovaných\nReportovaný\nreportovať\nRepove\nrepový\nrepozícia\nrepozičný\nrepresáliách\nrepresáliám\nrepresáliami\nrepresálie\nrepresálií\nrepresia\nrepresívny\nrepresor\nreprezentácia\nreprezentačne\nreprezentačný\nreprezentant\nreprezentantka\nreprezentatívnosť\nreprezentatívny\nreprezentovanie\nreprezentovaný\nreprezentovať\nreprezentujúci\nreprint\nreprivatizácia\nreprivatizačný\nreprivatizovať\nrepríz\nreprízach\nreprízam\nrepríza\nReprízované\nreprízovanie\nreprízovaných\nreprízovať\nreprízový\nreprobácia\nreprobedňa\nreprobovať\nreprodukcia\nreprodukčne\nreprodukčný\nreprodukovanie\nreprodukovaný\nreprodukovateľnosť\nreprodukovateľný\nreprodukovať\nreproduktívne\nreproduktívnych\nreproduktor\nreproduktorový\nreptajúci\nreptania\nreptanie\nreptaniu\nreptať\nreptavý\nreptílie\nRepublička\nrepublikán\nrepublikánka\nrepublikánsky\nrepublikánsky\nrepublika\nrepublikovo\nrepublikový\nrepudiácia\nrepulzia\nrepusoár\nreputácia\nres\nresekcia\nresekčný\nresentiment\nresentimentmi\nreserukcia\nreservé\nreskírovať\nreskript\nreslovakizácia\nreslovakizačný\nresocializácia\nresocializačný\nresolvens\nresorbens\nresorbovať\nresorpcia\nresp\nrespektíve\nrespektívne\nrespirácia\nrespirácie\nrespirácii\nrespiračný\nrespirátor\nrespíriách\nrespírium\nrespiro\nrespondent\nressentiment\nrestante\nrest\nrestez\nrestimulované\nrestimuluje\nrestmi\nrestne\nrestovaná\nrestovanej\nrestovať\nresumé\nrésumé\nresuscitácia\nResuscitácia\nresuscitácie\nresuscitácii\nresuscitáciou\nresuscitáciu\nresuscitačno\nresuscitačný\nresuscitátor\nrešelinatý\nrešeršami\nrešerše\nrešerši\nrešerší\nrešeršiach\nrešeršiam\nrešerš\nrešeršný\nrešeršou\nrešeršovanie\nrešeto\nRešica\nRešice\nRešov\nRešove\nRešovský\nrešpekt\nrešpektmi\nrešpektovanieN\nrešpektovaný\nrešpektovať\nreštart\nreštartovaný\nreštartovať\nreštauráciach\nreštaurácia\nreštauračno\nreštauračný\nreštaurant\nreštauratér\nreštauratéri\nreštauratérom\nreštauratérov\nreštaurátor\nreštaurátorka\nreštaurátormi\nreštaurátorsky\nreštaurátorský\nreštaurátorstvo\nreštaurovania\nreštaurovanie\nreštaurovaním\nreštaurovaniu\nreštaurovaný\nreštaurovať\nreštitúcia\nreštitučne\nReštitučno\nreštitučný\nreštituent\nreštituoval\nreštituovala\nreštituovali\nreštituovalo\nreštituovaný\nreštituovať\nreštituuj\nreštituuje\nreštituujem\nreštituujeme\nreštituuješ\nreštituujete\nreštituujme\nreštituujte\nreštituujú\nreštituujúc\nreštrikcia\nreštrikčne\nreštrikčno\nreštrikčný\nreštriktívny\nreštringovať\nreštruktívny\nreštrukturalizácia\nreštrukturalizačný\nreštrukturalizoval\nreštrukturalizovala\nreštrukturalizovali\nreštrukturalizovalo\nreštrukturalizovať\nreštrukturalizuj\nreštrukturalizuje\nreštrukturalizujem\nreštrukturalizujeme\nreštrukturalizuješ\nreštrukturalizujete\nreštrukturalizujme\nreštrukturalizujte\nreštrukturalizujú\nreštrukturalizujúc\nRET\nrét\nretábel\nretabulum\nretaliácia\nretardácia\nretardačne\nretardačný\nretardér\nretardérmi\nretardérom\nretardérov\nretardéry\nretardoval\nretardovali\nretardovane\nretardovanosť\nretardovaný\nretardovať\nretardujú\nreťaz\nreťazec\nreťazene\nreťazenia\nreťazenie\nreťazením\nreťazeniu\nreťazený\nreťazia\nreťaziaca\nreťaziace\nreťazili\nreťaziť\nreťazovite\nreťazovito\nreťazovitý\nreťazovo\nreťazový\nreteľnosť\nretencia\nretencie\nretencii\nretenciu\nretenčný\nreterovať\nretiazka\nretiazkovacie\nretiazkovacích\nretiazkovačky\nretiazkový\nreticelli\nretikulácia\nretikulárny\nretikulín\nretikulocyt\nretikulum\nretina\nretinitída\nretinoblastóm\nretinol\nretinopatia\nretinoskop\nretinospóra\nrétor\nrétoricky\nrétorický\nrétorika\nrétoromán\nrétorstvo\nretort\nretorta\nretortami\nretortových\nretortu\nretorzia\nretrakcia\nretranslácia\nretranslačný\nretransmisia\nretribúcia\nretribučné\nretribuční\nretriever\nretroaktivita\nretroaktívnosť\nretroaktívny\nretroflexia\nretrogénia\nretrogradácia\nretrográdny\nretrospektív\nretrospektívach\nretrospektívam\nretrospektíva\nretrospektívny\nretroštýl\nretroštýlmi\nretroverzia\nretrovírus\nretuš\nretušovania\nretušovanie\nretušovaný\nretušovať\nreum\nreumách\nreumám\nreumami\nreumatický\nreumatička\nreumatik\nreumatizmus\nreumatológ\nreumatológia\nreuma\nréva\nrevakcinácia\nrevakcinovať\nrevalorizácia\nrevalorizáciu\nrevalvácia\nrevalvovať\nrevanie\nrevanše\nrevanši\nrevanšista\nrevanšistický\nrevanšizmus\nrevanš\nrevanšmi\nrevanšoch\nrevanšom\nrevanšov\nrevanšovaní\nrevanšovať\nrevanšu\nrevať\nrev\nréve\nrevelácia\nrever\nreverencia\nreverenda\nreverend\nrevéria\nreverz\nreverzia\nreverzibilita\nreverzibilný\nreverziu\nreverzne\nreverzný\nrevident\nrevidovania\nrevidovanie\nrevidovaním\nrevidovaniu\nrevidovaný\nrevidovať\nreview\nrevíra\nrevír\nrevirement\nrevíri\nrevírnik\nrevírny\nrevitalizácia\nrevitalizačný\nrevitalizoval\nrevitalizovala\nrevitalizovali\nrevitalizovalo\nrevitalizovať\nrevitalizuj\nrevitalizuje\nrevitalizujem\nrevitalizujeme\nrevitalizuješ\nrevitalizujete\nrevitalizujme\nrevitalizujte\nrevitalizujú\nrevitalizujúc\nrevival\nrevízia\nrevizionista\nrevizionistický\nrevizionistka\nrevizionizmus\nrevízny\nrevízor\nrevízorka\nrevízormi\nrevízorský\nrevme\nrevnivosť\nrevokácia\nrevokácie\nrevokácii\nrevokáciou\nrevokáciu\nrevokoval\nrevokovala\nrevokovali\nrevokovalo\nrevokovaná\nrevokované\nrevokovaného\nrevokovanie\nrevokovať\nrevokuje\nrevolt\nrevolta\nrevoltovať\nrevolúcia\nrevolucionár\nrevolucionárka\nrevolucionársky\nrevolucionársky\nrevolucionizovať\nrevolučne\nrevolučnosť\nrevolučný\nrevolvera\nrevolver\nrevolveri\nrevolverový\nrevolving\nrévová\nrévové\nrévového\nRévovej\nRévovou\nrévových\nrévovým\nrévovými\nrevte\nrévu\nrevuálny\nrevúca\nRevúcach\nRevúce\nrevúcej\nrevúci\nrevúcim\nrevúcimi\nrevúcka\nRevúcke\nrevúckeho\nrevúckej\nRevúckom\nrevúckou\nRevúcku\nRevúcky\nrevúckych\nRevúcou\nRevúcu\nrevue\nrevui\nrevuí\nrevulzia\nrévy\nrex\nrexportov\nReykjavícku\nreykjavicky\nreykjavícky\nReykjavičan\nrezací\nrezač\nRezáč\nrezačka\nrezačov\nrezačovi\nrezák\nrezancový\nrezančeky\nrezanec\nrezanie\nrezanka\nrezanky\nrezaný\nrezať\nrezavý\nrez\nrezbár\nrezbárka\nrezbársky\nrezbársky\nrezbárstvach\nrezbárstvam\nrezbárstvo\nrezba\nrezeda\nrezedový\nrezeň\nrezerv\nrezervácia\nrezervačný\nrezervár\nrezervármi\nrezerva\nrezervista\nrezervný\nrezervoár\nrezervoármi\nrezervovane\nrezervovania\nrezervovanie\nrezervovanosť\nrezervovaný\nrezervovať\nrezidencia\nrezidenčný\nrezident\nrezidenta\nrezidenti\nrezidentmi\nrezidentný\nrezidentom\nrezidentov\nrezidentova\nrezidentovi\nreziduálny\nrezíduí\nreziduovaný\nrezíduum\nrezignácia\nrezignovane\nrezignovania\nrezignovanie\nrezignovaním\nrezignovanosť\nrezignovaný\nrezignovať\nrezikať\nrezíkať\nrezina\nrezine\nrezistencia\nrezistentný\nrezistivita\nrezistor\nrezív\nrezivo\nrezko\nrezkosť\nRezková\nRezkových\nrezký\nrezla\nrezli\nrezlo\nrezňa\nrezňami\nrezne\nrezni\nRezníček\nrezník\nRezníka\nRezníkom\nRezníkov\nrezno\nrezňoch\nrezňom\nrezňov\nrezňu\nreznúť\nreznutie\nrezný\nrezok\nrezol\nrezolový\nrezolúcia\nrezolučný\nrezolutívny\nrezolútne\nrezolútnosť\nrezolútny\nrezonancia\nrezonančný\nrezonátor\nrezonátorom\nrezonátorov\nrezonovanie\nrezonovať\nrezonujúci\nrezort\nrezortizmom\nrezortizmu\nrezortizmus\nrezortmi\nrezortne\nrezortný\nrezultát\nrezultatív\nrezultátmi\nrezultoval\nrezultovala\nrezultovali\nrezultovať\nrezultuje\nrezultujú\nrezumé\nrezumovať\nréžia\nrežijne\nrežijný\nrežim\nrežimisticky\nrežimovo\nrežimový\nrežírovania\nrežírovanie\nrežírovaný\nrežírovať\nrežisér\nrežisérka\nrežisérsky\nrežisérsky\nrežisérstvach\nrežisérstvam\nrežisérstvo\nrežistov\nrežný\nRf\nRF\nRGB\nRh\nrheseasténia\nrhesus\nrhizo\nRhôna\nrhônsky\nrhônsky\nrhyton\nria\nRIA\nriad\nriadene\nriadenie\nriadený\nriadiaci\nriadiaco\nriadidiel\nriadidlá\nriadidlami\nriadieva\nriadievaj\nriadievajme\nriadievajte\nriadievajú\nriadievajúc\nriadieval\nriadievala\nriadievali\nriadievalo\nriadievam\nriadievame\nriadievaš\nriadievať\nriadievate\nriaditeľ\nriaditeľka\nriaditeľkin\nriaditeľkino\nriaditeľkiných\nriaditeľňa\nriaditeľnosť\nriaditeľný\nriaditeľova\nriaditeľoval\nriaditeľovaní\nriaditeľovania\nriaditeľovanie\nriaditeľovaním\nriaditeľovať\nriaditeľove\nriaditeľovej\nriaditeľovho\nriaditeľovo\nriaditeľovom\nriaditeľovou\nriaditeľovu\nriaditeľových\nriaditeľovými\nriaditeľský\nriaditeľstvo\nriaditeľuje\nriaditeľujete\nriadiť\nriadkovač\nriadkovane\nriadkovanie\nriadkovaný\nriadkovať\nriadkovo\nriadkový\nriadne\nriadny\nriadok\nriadový\nrial\nriasa\nriasenie\nriasený\nriasiť\nriasnatý\nriasnic\nriasnica\nriasový\nriava\nRiazaň\nRiazančan\nRiazani\nriazanský\nriazať\nríbezieľ\nríbezľa\nríbezlí\nríbezľovo\nríbezľový\nribi\nriboflavín\nribonukleáza\nribonukleový\nribóza\nribozóm\nribozým\nribstol\nribstole\nricín\nricínový\nricínový\nricínricínový\nrickettsia\nricotta\nričeny\nriecť\nriečic\nriečica\nriečísk\nriečisko\nriečíšť\nriečišťa\nriečište\nriečištia\nriečištiam\nriečka\nRiečnica\nriečny\nriedene\nriedenie\nriedený\nriediaci\nriedidlo\nriediť\nriedko\nriedkosť\nriedky\nriedom\nriedše\nriedučko\nriedučký\nriedulinko\nriedulinký\nriedunko\nriedunký\nriekanka\nrieka\nrieknuť\nriel\nRiel\nriep\nrieslový\nriešene\nriešenie\nriešený\nriešiteľ\nriešiteľka\nriešiteľnosť\nriešiteľnosti\nriešiteľný\nriešiteľský\nriešiť\nriezby\nrif\nRIF\nrífa\nríf\nriff\nrifieľ\nrifle\nriflí\nrifľovina\nrifľový\nrífový\nrift\nRíg\nRiga\nrígeľ\nrigidít\nrigidita\nrigiditami\nrigidite\nrigiditou\nrigiditu\nrigidity\nrigidne\nrigidný\nrigol\nrigolovať\nrigorizmus\nrigoroso\nrigoróz\nrigorózach\nrigorózam\nrigorozita\nrigoróznosť\nrigorózny\nrigorózum\nrigotte\nRigvéda\nrihať\nrihnúť\nrich\nRichárd\nRichard\nRichardova\nRichardove\nRichardovo\nRichardovu\nRichardovým\nRichnava\nRichnave\nRichnavský\nRichnavu\nrichtár\nrichtárka\nrichtárov\nrichtársky\nrichtársky\nrichtárstvach\nrichtárstvam\nrichtárstvo\nrichtovať\nrichu\nrichy\nRII\nRijád\nRijádčan\nrijádsky\nrijádsky\nrijál\nRijecky\nrijecký\nRiječan\nRijeka\nriketsia\nrikša\nrikše\nrikši\nrikší\nrikšiach\nrikšiam\nrikšou\nrilasciando\nrím\nRíma\nRiman\nRimania\nrimanky\nrimanom\nrimanov\nrimanovi\nRimanská\nRimava\nRimavica\nRimavice\nRimavici\nRimavicou\nrimavskosobotský\nrimavský\nRím\nRimini\nrímsa\nrímskokatolíci\nrímskokatolícky\nrímsky\nrímsky\nrímsový\nrín\nríň\nrínach\nríňach\nrínam\nríňam\nríňa\nrína\nrinč\nrinčania\nrinčanie\nrinčaním\nrinčať\nrinči\nrinčiaci\nrinčime\nrinčite\nrinforzando\nring\nringgit\nringlota\nringlotový\nringlšpíl\nringmi\nringo\nringoch\nringom\nringov\nringove\nringový\nringu\nringy\nrinitída\nrínkami\nrínkoch\nrínkom\nrinkot\nrínkov\nrínku\nrínky\nrinoceros\nrinofaryngitída\nrínok\nrinokyfóza\nrinolaryngitída\nrinológia\nrinoskop\nrinoskopia\nrinúť\nRio\nRiodejaneiran\nriodejaneirsky\nriodejaneirsky\nriový\nRipňanoch\nRipňany\nriport\nriportmi\nriposta\nrips\nripsový\nRIS\nRISC\nriskantne\nriskantnosť\nriskantný\nrisk\nrisknúť\nriskovaní\nriskovania\nriskovanie\nriskovaním\nriskovaniu\nriskovať\nrisposta\nriss\nristringendo\nrisvegliato\nríš\nRiša\nríšach\nríšam\nríša\nRišňovský\nríšsky\nríšsky\nriť\nriťami\nritardando\nrite\nRite\nríte\nritenendo\nriti\nrití\nritiach\nritiam\nritka\nrítmi\nritný\nrítoch\nrítom\nritornel\nriťou\nrítov\nrittbergera\nrittberger\nrittbergeri\nrittbergermi\nrittbergeroch\nrittbergerom\nrittbergerov\nrittbergeru\nrittbergery\nrítu\nrituál\nrituáli\nrituálmi\nrituálne\nrituálnosť\nrituálny\nrítus\nRity\nríty\nRiu\nrival\nrivalita\nrivalka\nrivalke\nriviér\nriviérach\nriviéram\nriviéra\nriyal\nRíz\nríza\nrizalit\nRize\nrizík\nriziko\nrizikovo\nrizikovosť\nrizikový\nrizling\nrizlingmi\nrizlingoch\nrizlingom\nrizlingov\nrizlingový\nrizlingu\nrizlingy\nrizňa\nrizoderma\nrizológia\nrizón\nrizot\nrizoto\nRižan\nRižanka\nrižský\nrkp\nrkvalifikačný\nRM\nrmut\nrmútený\nrmutmi\nRn\nRN\nRNA\nRND\nRNDr\nRNK\nRO\nró\nRoadstar\nroadster\nRoadster\nroajalizmus\nroastbeef\nrób\nrôb\nroba\nróbach\nróbam\nrobami\nróba\nrobe\nrobene\nrobenia\nrobenie\nrobením\nrobeniu\nrobený\nRobert\nRóbert\nRóbertovej\nRóbertovho\nrobiaci\nrobievať\nrobin\nrobina\nrobini\nrobinson\nrobinzon\nrobinzonáda\nrobiť\nrobká\nrobkaj\nrobkať\nrobota\nRobotC\nrobot\nrobotí\nrobotia\nrobotický\nrobotika\nrobotil\nrobotiť\nrobotizácia\nrobotne\nrobotnica\nrobotnícko-roľnícky\nrobotnícky\nrobotníctvach\nrobotníctvam\nrobotníctvo\nrobotníčil\nrobotníčka\nrobotník\nrobotný\nrobotovať\nrobou\nrobu\nrobustne\nrobustnosť\nrobustný\nroby\nrocaille\nrockandrollový\nrock\nrockový\nroč\nročenka\nročiak\nročiakovi\nrôčik\nročitý\nrôčka\nrôčkami\nrôčkoch\nrôčkom\nrôčkov\nrôčku\nrôčky\nročne\nročnice\nročnicu\nročník\nročníkový\nročný\nrodácky\nrodáčka\nrodák\nrodamín\nrodeí\nrodene\nrodenia\nrodenie\nrodením\nrodenticíd\nrodený\nrodeo\nródeo\nRoderik\nRodézia\nrodiaci\nrodiacu\nrodič\nrodička\nrodičovsky\nrodičovský\nrodičovstvo\nrodidiel\nrodidlách\nrodidlám\nrodidlami\nrodidlá\nrodievať\nrodina\nrodinkáriť\nrodinkárske\nrodinkárskej\nrodinkárski\nrodinkársku\nrodinkársky\nrodinkárskych\nrodinkárstvach\nrodinkárstvam\nrodinkárstvo\nrodinka\nrodinkovať\nrodinne\nrodinno\nrodinnoprávne\nrodinnoprávnych\nrodinnosť\nrodinný\nrodinský\nrodísk\nrodisko\nrodit\nroditeľka\nrodiť\nródium\nrodivosť\nrodivosti\nrod\nrodne\nrodnučký\nrodný\nrododendron\nrodochrozit\nrodokapsoch\nrodokmeň\nrodoľubstvo\nrodomil\nrodomilstvo\nrodonit\nrodopsín\nrodopský\nRodopy\nRodos\nRodose\nrodostrom\nrodový\nroduverný\nrody\nrogál\nrogalista\nrogalistka\nrogáll\nrogallo\nrogalo\nRoha\nroháčik\nroháč\nrohadzovačný\nRohatci\nRohatec\nrohatý\nroh\nrohlík\nroho\nrohovatenie\nrohovatieť\nRohovce\nRohovec\nrohovina\nrohovitý\nrohovka\nrohovková\nRohovy\nrohový\nrohož\nrohožka\nRohožná\nRohožnica\nrohožnícka\nrohožníckej\nrohožníckemu\nRohožnícky\nRohožník\nRohožníka\nRohožníkom\nRohožníku\nrohožový\nrohý\nRocha\nrocheta\nrochetka\nRochom\nRochovej\nrochtať\nRochus\nrojčení\nrojčenie\nrojči\nrojčime\nrojčite\nrojčiť\nrojčivo\nrojčivosť\nrojčivý\nRojení\nrojenie\nrojením\nrojiť\nrojivo\nrojivosť\nrojivý\nroj\nrojko\nrojnica\nrojnicový\nrojový\nrokaj\nrokambol\nrok\nrokenrol\nrokfór\nrokfort\nrokfortmi\nrokfortový\nrokľa\nroklí\nroklina\nrokok\nrokoko\nrokokovo\nrokokový\nrokou\nrokovací\nrokovaná\nrokované\nrokovanie\nrokovateľ\nrokovať\nrokový\nroks\nrokujúcich\nrokúva\nrokúvaj\nrokúvajme\nrokúvajte\nrokúvajú\nrokúvajúc\nrokúval\nrokúvala\nrokúvali\nrokúvalo\nrokúvam\nrokúvame\nrokúvaš\nrokúvať\nrokúvate\nRokytov\nRokytove\nrol\nrôl\nrolád\nroládach\nroládam\nroláda\nrolák\nRoland\nRolandových\nroľa\nrola\nrolba\nroleta\nroletový\nrolí\nrolička\nroliet\nrolka\nroľka\nroľký\nroll\nroľnícky\nroľníctvach\nroľníctvam\nroľníctvo\nroľníčenia\nroľníčiť\nrolnička\nrolničkami\nroľníčka\nroľník\nroľníkov\nroľný\nroló\nrolovací\nrolovane\nrolovania\nrolovanie\nrolovaním\nrolovaniu\nrolovaný\nrolovať\nróm\nromadúr\nromadúre\nromadúru\nromadúry\nRómami\nRomana\nromán\nRoman\nromanca\nromancí\nromanciér\nromaneskný\nromaneto\nrománik\nromanista\nromanistický\nromanistika\nromanistka\nromanizmus\nrománopisec\nrománový\nrománsky\nrománsky\nromantickosť\nromanticky\nromantický\nromantička\nromantika\nromantik\nromantizmus\nromantizovať\nromantizujúci\nrombický\nromboid\nrombus\nRóm\nrómčin\nrómčinách\nrómčinám\nrómčinami\nrómčina\nRómka\nromoniť\nrómsky\nRon\nRonald\nRonalda\nRonaldom\nRonaldov\nRonaldovej\nRonaldovi\nrond\nRond\nrondeau\nrondel\nrondó\nrondo\nrondon\nRone\nronene\nroneno\nronený\nroniaca\nroniace\nroniacich\nroniacou\nronievať\nroniť\nRonom\nRonov\nröntgen\nröntgenodiagnostika\nröntgenogram\nröntgenokardiografia\nröntgenológ\nröntgenológia\nröntgenologický\nröntgenovať\nrontgenové\nröntgenový\nRonu\nRony\nroový\nrôp\nropách\nropám\nropami\nropa\nropný\nropovod\nropový\nropucha\nropustný\nropuší\nroquefort\nroquefortmi\nrorátmi\nrorátny\nrorátoch\nrorátom\nrorátov\nroráty\nroripa\nrôs\nrosacea\nrosavý\nrosa\nrosene\nrosenej\nrosenie\nRosenom\nrosených\nrosewood\nrosička\nRosin\nRosina\nRosinanta\nRosine\nRosinom\nRosinu\nrosiť\nroskazovačne\nrosnatý\nRosne\nrosničí\nrosnička\nRosno\nrosný\nrôsol\nrôsolovatenie\nrôsolovatieť\nrôsolovitosť\nrôsolovitý\nrôsolový\nrosomák\nRostockom\nRostov\nRostova\nRostove\nRostovská\nRostovskej\nRostovskou\nrostrum\nrošád\nrošádach\nrošádam\nrošáda\nRoštár\nrošt\nroštenka\nroštmi\nroštový\nrôt\nrotácia\nrotačka\nrotačkový\nrotačný\nroťahovať\nrotang\nrotaprint\nrotaprintmi\nrotátny\nrotátor\nrota\nrotel\nrotmajster\nrotmajsterka\nrotmajsterský\nrotný\nrotoped\nrotor\nrotorový\nrotovania\nrotovaný\nrotovať\nRotterdam\nRotterdamčan\nrotterdamský\nrotujúci\nrotunda\nrotundový\nrotvajler\nRoute\nrováša\nrováše\nrováši\nrováš\nrovášmi\nrovášoch\nrovášom\nrovášov\nrovášu\nrov\nroveň\nRovenský\nrover\nrovesnícky\nrovesníčka\nrovesník\nrovinatý\nrovina\nrovinka\nrovinne\nrovinný\nrovinový\nrovnačky\nrovnajúci\nrovnako\nrovnakosť\nrovnaký\nrovnania\nrovnanie\nRovňanoch\nRovňany\nrovnaný\nrovnať\nrovnica\nrovník\nrovníkový\nrovnina\nrovnítko\nrovno\nrovnobežka\nrovnobežkový\nrovnobežne\nrovnobežník\nrovnobežnosť\nrovnobežný\nrovnocenne\nrovnocennosť\nrovnocenný\nrovnodennosť\nrovnomenný\nrovnomerne\nrovnomernosť\nrovnomerný\nrovnopis\nrovnoprávne\nrovnoprávnosťN\nrovnoprávny\nrovnoramenný\nrovnorodejšie\nrovnorodo\nrovnorodosť\nrovnorodý\nrovnosmerný\nrovnostársky\nrovnostársky\nrovnostárstvach\nrovnostárstvam\nrovnostárstvo\nrovnosť\nrovnostranný\nrovnošát\nrovnošata\nrovnováh\nrovnováhach\nrovnováham\nrovnováha\nrovnováhaN\nrovnováhovými\nrovnovážne\nrovnovážny\nrovnoznačne\nrovnoznačnosť\nrovnoznačný\nrovnozvučne\nrovnozvučnosť\nrovnozvučný\nrovnozvuký\nrovnučko\nrovnučký\nrovnulinko\nrovnulinký\nrovnunko\nrovnunký\nrovnuško\nrovnušký\nrovný\nrowdie\nRóza\nRozália\nRozálka\nrozanalizovať\nrozanalyzoval\nrozanalyzovala\nrozanalyzovali\nrozanalyzovalo\nrozanalyzované\nrozanalyzovaní\nRozanalyzovaný\nrozanalyzovať\nrozanalyzuje\nrozanalyzujeme\nrozanalyzujú\nrozárium\nrozatomizovaný\nrozatomizovať\nrozbabraný\nrozbabrať\nrozbabre\nrozbabrem\nrozbabreme\nrozbabreš\nrozbabrete\nrozbabri\nrozbabrime\nrozbabrite\nrozbabrú\nrozbabrúc\nrozbadzgať\nrozbahnený\nrozbahni\nrozbahnime\nrozbahnite\nrozbahniť\nrozbahňovať\nrozbáchať\nrozbalenie\nrozbalený\nrozbaliť\nrozbaľovacíN\nrozbaľovanie\nrozbaľovať\nrozbečať\nrozbehá\nrozbehaj\nrozbehajme\nrozbehajte\nrozbehajú\nrozbehajúc\nrozbehal\nrozbehala\nrozbehali\nrozbehalo\nrozbehám\nrozbeháme\nrozbehaný\nrozbeháš\nrozbehať\nrozbeháte\nrozbehávať\nrozbeh\nrozbehnute\nrozbehnutia\nrozbehnutie\nrozbehnutím\nrozbehnutiu\nrozbehnúť\nrozbehnutý\nrozbehovať\nrozbehový\nrozbehúvať\nrozberať\nrozbesnený\nrozbesni\nrozbesnieť\nrozbesnime\nrozbesnite\nrozbesniť\nrozbežísk\nrozbežisko\nrozbi\nrozbiehania\nrozbiehanie\nrozbiehaním\nrozbiehaniu\nrozbiehaný\nrozbiehať\nrozbiehavo\nrozbiehavosť\nrozbiehavý\nrozbif\nrozbíjač\nrozbíjačsky\nrozbíjačský\nrozbíjačstvo\nrozbíjané\nrozbíjaní\nrozbíjania\nrozbíjanie\nrozbíjaním\nrozbíjaniu\nrozbíjať\nrozbije\nrozbijem\nrozbijeme\nrozbiješ\nrozbijete\nrozbijú\nrozbijúc\nrozbime\nrozbite\nrozbiť\nrozbitie\nrozbitnosť\nrozbitný\nrozbito\nrozbitosti\nrozbitý\nrozbľačať\nrozblatený\nrozbláznený\nrozblázniť\nrozblesknúť\nrozbliaknuť\nrozblikali\nrozblýskať\nrozbočovač\nrozboľ\nrozboľavený\nrozboľavieť\nrozbolel\nrozbolela\nrozboleli\nrozbolelo\nrozbolený\nrozbolestený\nrozbolestiť\nrozbolestnený\nrozbolestniť\nrozbolí\nrozbolia\nrozboliac\nrozbolieť\nrozbolím\nrozbolíme\nrozbolíš\nrozbolíte\nrozboľme\nrozbôľniť\nrozboľte\nrozbombardovali\nrozbombardovaného\nrozbombardovanú\nrozbombardovať\nrozbor\nrozborený\nrozboriť\nrozborný\nrozborte\nrozbrázdiť\nrozbrechať\nrozbrechotať\nrozbresk\nrozbreš\nrozbreše\nrozbrešem\nrozbrešeme\nrozbrešeš\nrozbrešete\nrozbrešme\nrozbrešte\nrozbrešú\nrozbrešúc\nrozbrieždiť\nrozbriežďovať\nrozbŕknuť\nrozbŕľať\nrozbroj\nrozbrojnícky\nrozbrojný\nrozbrusovanie\nrozbryzgnúť\nrozbubnovať\nrozbúchať\nrozbuchoc\nrozbuchoce\nrozbuchocem\nrozbuchoceme\nrozbuchoceš\nrozbuchocete\nrozbuchocme\nrozbuchocte\nrozbuchocú\nrozbuchocúc\nrozbuchotal\nrozbuchotala\nrozbuchotali\nrozbuchotalo\nrozbuchotať\nrozbujdošený\nrozbujdošiť\nrozbujnenie\nrozbujneniu\nRozbujnenosť\nrozbujnený\nrozbujnieť\nrozbujnievať\nrozburácaný\nrozburácať\nrozbúranie\nrozbúraný\nrozbúrať\nrozbúreniu\nrozbúrený\nrozbúriť\nrozbúšiť\nrozbuška\nrozbuškový\nrozcapartiť\nrozcápať\nrozcapený\nrozcapiť\nrozcelembať\nrozceriť\nrozcestí\nrozcestia\nrozcestie\nrozcestím\nrozcestoval\nrozcestovaný\nrozcítene\nrozcítenosť\nrozcítený\nrozcítiť\nrozcitlivene\nrozcitlivenie\nrozcitlivenosť\nrozcitlivený\nrozcitlivieť\nrozclivený\nrozclivieť\nrozcombáľať\nrozcuchať\nrozcucháva\nrozcvičenie\nrozcvičiť\nrozcvička\nrozcvičovať\nrozčapený\nrozčapírený\nrozčapiť\nrozčapkať\nrozčapnúť\nrozčapnutý\nrozčaptať\nrozčarený\nrozčarovane\nrozčarovanie\nrozčarovanosť\nrozčarovaný\nrozčarovať\nrozčechrať\nrozčeperiť\nrozčer\nrozčerenia\nrozčerenie\nrozčerením\nrozčereniu\nrozčerený\nrozčeriť\nrozčerte\nrozčertený\nrozčerti\nrozčertime\nrozčertite\nrozčertiť\nrozčesať\nrozčesávať\nrozčesnutím\nrozčesnúť\nrozčesnutý\nrozčiahnu\nrozčítaný\nrozčítať\nrozčlánkovať\nrozčľapený\nrozčľapiť\nrozčľapkať\nrozčľapnutý\nrozčlenenie\nrozčlenený\nrozčleniť\nrozčleňovania\nrozčleňovanie\nrozčleňovaním\nrozčleňovaniu\nrozčleňovaný\nrozčleňovať\nrozčrpkať\nrozčrpnúť\nrozčuchraný\nrozčuchrať\nrozčúlene\nrozčúlenie\nrozčúlenosť\nrozčúlený\nrozčúliť\nrozčuľovania\nrozčuľovanie\nrozčuľovať\nrozčuľujúca\nrozčuľujúci\nrozčuprený\nrozdania\nrozdanie\nrozdaním\nrozdaniu\nrozdaný\nrozdarovať\nrozdať\nrozdávač\nrozdávačmi\nrozdávajúci\nrozdávanie\nrozdávaný\nrozdávať\nrozďavený\nrozďaviť\nrozďavovať\nrozdebatoval\nrozdebatovala\nrozdebatovali\nrozdebatovať\nrozdegviť\nrozdelene\nrozdelenie\nrozdelenosť\nrozdelenosti\nrozdelený\nrozdeliteľný\nrozdeliť\nrozdeľovací\nrozdeľovač\nrozdeľovanie\nrozdeľovaný\nrozdeľovať\nrozdeľovňa\nrozdeľovní\nrozdeľovník\nrozdeľujúca\nrozdeľujúce\nrozdeľujúci\nrozderavený\nrozdiel\nrozdiele\nrozdielmi\nrozdielnosť\nrozdielny\nrozdielový\nrozdierať\nrozdierčený\nrozdiskutovaná\nrozdiskutované\nrozdiskutovanie\nrozdiskutovanú\nrozdiskutovať\nrozdiskutúvať\nrozdistribuovaný\nrozdistribuovať\nrozdívať\nrozdivený\nrozdivieť\nrozdivočený\nrozdivočiť\nrozdláviť\nrozdmúť\nrozdni\nrozdniť\nrozďob\nrozďobať\nrozdrapenec\nrozdrapenie\nrozdrapený\nrozdrapiť\nrozdrapovať\nrozdrása\nrozdratie\nrozdrať\nrozdráždiť\nrozdrážďoval\nrozdrážďovala\nrozdrážďovali\nrozdrážďovalo\nrozdrážďuj\nrozdrážďuje\nrozdrážďujem\nrozdrážďujeme\nrozdrážďuješ\nrozdrážďujete\nrozdrážďujme\nrozdrážďujte\nrozdrážďujú\nrozdrážďujúc\nrozdriapať\nrozdriemaný\nrozdrieť\nrozdrlancovať\nrozdrnčali\nrozdrobene\nrozdrobenia\nrozdrobenie\nrozdrobením\nrozdrobeniu\nrozdrobenosť\nrozdrobenosti\nrozdrobenosťou\nrozdrobený\nrozdrobiť\nrozdrobovaní\nrozdrobovania\nrozdrobovanie\nrozdrobovaním\nrozdrobovaniu\nrozdrobovať\nrozdrtí\nrozdrtia\nrozdrúc\nrozdrúzgať\nrozdrúzgava\nrozdrúzgavaj\nrozdrúzgavajme\nrozdrúzgavajte\nrozdrúzgavajú\nrozdrúzgavajúc\nrozdrúzgaval\nrozdrúzgavala\nrozdrúzgavali\nrozdrúzgavalo\nrozdrúzgavam\nrozdrúzgavame\nrozdrúzgavaš\nrozdrúzgavať\nrozdrúzgavate\nrozdrvenie\nrozdrvením\nrozdrvený\nrozdrviť\nrozdrvovať\nrozďub\nrozďubať\nrozdúchanie\nrozdúchanú\nRozdúchaný\nrozdúchať\nrozduchávač\nrozduchávali\nrozdúchavanie\nrozdúchavať\nrozduchovač\nrozduchovať\nrozdumovať\nrozdupá\nrozdupaj\nrozdupajme\nrozdupajte\nrozdupajú\nrozdupajúc\nrozdupám\nrozdupáme\nrozdupáš\nrozdupáte\nrozdupať\nrozdupávať\nrozduplo\nrozdur\nrozdúrať\nrozdurdená\nrozdurdiť\nrozdurený\nrozduriť\nrozdurovať\nrozdurte\nrozdutie\nrozduť\nrozdúvať\nrozdvojenie\nrozdvojením\nrozdvojeniu\nrozdvojenosť\nrozdvojený\nrozdvojiť\nrozdvojovať\nrozdychtený\nrozela\nrozeola\nrozeta\nrozetne\nrozetový\nrozfakliť\nrozfázoval\nrozfázovala\nrozfázovali\nrozfázovania\nrozfázovaním\nrozfázovaný\nrozfázovať\nrozfázuje\nrozfikať\nrozflákanom\nrozfňukať\nrozfŕkať\nrozfŕknuť\nrozfrkovať\nrozfŕskať\nrozfúkanie\nrozfúkaný\nrozfúkať\nrozfúkavať\nrozfúknuť\nrozfukovať\nrozgajdane\nrozgajdanosť\nrozgajdaný\nrozglejenia\nrozglejením\nrozglejeniu\nrozglejený\nrozglejiť\nrozglejovať\nrozgniaviť\nrozgniavovať\nrozgúľať\nrozgurážený\nrozgurážiť\nrozhabarkovať\nrozhádzanie\nrozhádzaný\nrozhádzať\nrozhadzovač\nrozhadzovačne\nrozhadzovačnosť\nrozhadzovačný\nrozhadzovačný\nrozhadzovadlo\nrozhadzovaní\nrozhadzovania\nrozhadzovanie\nrozhadzovaním\nrozhadzovaniu\nrozhadzovať\nrozhádžu\nrozhádžuc\nrozhajdákať\nrozhalenka\nrozhalený\nrozhaliť\nrozhaľovať\nrozháňania\nrozháňanie\nrozháňaniu\nrozháňať\nrozhárane\nrozháranosť\nrozháraný\nrozhárať\nrozharcovať\nrozhas\nrozhasený\nrozhasí\nrozhasili\nrozhašterený\nrozhašteriť\nrozheganý\nrozhegať\nrozhľaď\nrozhľad\nrozhľadene\nrozhľadenosť\nrozhľadený\nrozhľadieť\nrozhľadňa\nrozhľadní\nrozhľadový\nRozhlasáci\nrozhlasákom\nrozhlasákov\nrozhlas\nrozhlásený\nrozhlásiť\nrozhlasované\nrozhlasovaného\nrozhlasovaných\nrozhlasovať\nrozhlasove\nrozhlasovosť\nrozhlasový\nrozhlášať\nrozhliadanie\nrozhliadať\nrozhliadnutia\nrozhliadnutie\nrozhliadnuť\nrozhlodáva\nrozhnevane\nrozhnevaniu\nrozhnevano\nrozhnevaný\nrozhnevať\nrozhodca\nrozhodcoch\nrozhodcom\nrozhodcov\nrozhodcova\nrozhodcovi\nrozhodcovia\nrozhodcovom\nrozhodcovský\nrozhodenie\nrozhodený\nrozhodiť\nrozhodkyňa\nrozhodne\nrozhodnosť\nrozhodnosťN\nrozhodnute\nrozhodnutie\nrozhodnuto\nrozhodnúť\nrozhodnutý\nrozhodný\nrozhodovací\nrozhodovane\nrozhodovanie\nrozhodovaný\nrozhodovať\nrozhodujúcejšej\nrozhodujúcejší\nrozhodujúcejšia\nrozhodujúcejšie\nrozhodujúcejšieho\nrozhodujúcejšiemu\nrozhodujúcejších\nrozhodujúcejším\nrozhodujúcejšími\nrozhodujúcejšiu\nrozhodujúcejšom\nrozhodujúcejšou\nrozhodujúci\nrozhodujúco\nrozhody\nRozhojdané\nrozhojdanej\nrozhojdaní\nrozhojdanú\nrozhojdať\nrozhojdávať\nrozhojnenie\nrozhojni\nrozhojnime\nrozhojnite\nrozhojniť\nrozhojňovať\nRozhon\nrozhor\nrozhorčene\nrozhorčenie\nrozhorčenosť\nrozhorčený\nrozhorči\nrozhorčime\nrozhorčite\nrozhorčiť\nrozhorčovať\nrozhorčujúce\nrozhorený\nrozhorieť\nrozhorievať\nrozhorlenie\nrozhorlený\nrozhorliť\nrozhorúčený\nrozhorúčiť\nrozhorúčoval\nrozhorúčovala\nrozhorúčovali\nrozhorúčovalo\nrozhorúčovať\nrozhorúčuj\nrozhorúčuje\nrozhorúčujem\nrozhorúčujeme\nrozhorúčuješ\nrozhorúčujete\nrozhorúčujme\nrozhorúčujte\nrozhorúčujú\nrozhorúčujúc\nrozhosti\nrozhostime\nrozhostite\nrozhostiť\nrozhosťovať\nrozhovárali\nrozhovárať\nrozhovor\nrozhovoriť\nrozhovorka\nrozhovorovo\nrozhovorte\nrozhrab\nrozhrabať\nrozhrabávanie\nrozhrabávať\nrozhrabnúť\nrozhrabovať\nrozhrabúvať\nrozhraničenie\nrozhraničeniu\nrozhraničiť\nrozhraničovacej\nrozhraničovací\nrozhraničovacia\nrozhraničovacích\nrozhraničovaciu\nrozhraničovanie\nrozhraničovať\nrozhranie\nrozhrč\nrozhrešenie\nrozhrešiť\nrozhrešovať\nrozhrkútané\nrozhrm\nrozhrmieť\nrozhrň\nrozhŕňať\nrozhrnie\nrozhrniem\nrozhrnieme\nrozhrnieš\nrozhrniete\nrozhrňme\nrozhrňovanie\nrozhrnovať\nrozhrňte\nrozhrnúť\nrozhrúčiť\nrozhrýzať\nrozhryzla\nrozhryzli\nrozhryzlo\nrozhryzne\nrozhryznem\nrozhryzneme\nrozhryzneš\nrozhryznete\nrozhryzni\nrozhryznime\nrozhryznite\nrozhryznú\nrozhryznúc\nrozhryznúť\nrozhryzol\nrozhryzovať\nrozhrýzť\nrozhuč\nrozhučať\nrozhúčovať\nrozhudujúci\nrozhúpanie\nrozhúpať\nrozhútať\nrozhutovať\nrozhýb\nrozhýbané\nrozhýbaní\nrozhýbania\nrozhýbanie\nrozhýbaním\nrozhýbaniu\nrozhýbať\nrozhýbavaní\nrozhýbavania\nrozhýbavanie\nrozhýbavať\nrozhýr\nrozchádzať\nrozchechce\nrozchechcem\nrozchechceme\nrozchechceš\nrozchechcete\nrozchechci\nrozchechcime\nrozchechcite\nrozchechcú\nrozchechcúc\nrozchechotať\nrozchechtajúc\nrozchechtal\nrozchechtala\nrozchechtali\nrozchechtalo\nrozchechtať\nrozchchrať\nrozchichotať\nrozchľabiť\nrozchľapiť\nrozchlípiť\nrozchlipnúť\nrozchlpiť\nrozchod\nrozchodiť\nrozchodne\nrozchodník\nrozchodný\nrozchopiť\nrozchoravieť\nrozchorieť\nrozchvátať\nrozchýliť\nrozchýrený\nrozchýriť\nrozchyrovať\nrozchytané\nrozchytaní\nrozchytať\nrozchytávať\nrozíduc\nroziet\nrozihrane\nrozihrano\nrozihranosť\nrozihraný\nrozihrať\nrozihrávať\nroziskrený\nroziskriť\nrozísť\nrozjagať\nrozjagotať\nrozjar\nrozjarene\nrozjarenosť\nrozjarený\nrozjariť\nrozjarte\nrozjasane\nrozjasaný\nrozjasať\nrozjasnený\nrozjasni\nrozjasnievať\nrozjasnime\nrozjasnite\nrozjasniť\nrozjasňovať\nrozjasňujúcim\nrozjasotať\nrozjašený\nrozjatrený\nrozjatriť\nrozjatrovať\nrozjazda\nrozjazd\nrozjazdenie\nrozjazdový\nrozjedený\nrozjedovane\nrozjedovaný\nrozjedovať\nrozjesť\nrozjež\nrozježí\nrozježia\nrozježiac\nrozježil\nrozježila\nrozježili\nrozježilo\nrozježím\nrozježíme\nrozježíš\nrozježiť\nrozježíte\nrozježme\nrozježte\nrozjímajúci\nrozjímanie\nrozjímať\nrozjímavosť\nrozjímavý\nrozjlásiť\nrozk\nrozkálať\nrozkalkulovať\nrozkamarátiť\nrozkašlať\nrozkašľať\nrozkatený\nrozkatiť\nrozkatovať\nrozkázané\nrozkázať\nrozkaz\nrozkazovací\nrozkazovačne\nrozkazovačný\nrozkazovať\nrozkazujúce\nrozkazujúci\nrozkladací\nrozkladajúce\nrozkladajúceho\nrozkladaná\nrozkladané\nrozkladaní\nrozkladania\nrozkladanie\nrozkladaním\nrozkladaniu\nrozkladať\nrozklad\nrozkladne\nrozkladný\nrozkladový\nrozklásť\nrozklátiť\nrozklenúť\nrozklepanie\nrozklepaný\nrozklepať\nrozklepávanie\nrozklknúť\nrozklopať\nrozklusať\nrozkmásať\nrozkmasnúť\nrozkmášu\nrozkmášuc\nrozkmit\nrozkmitanie\nrozkmitaniu\nrozkmitaný\nrozkmitať\nrozkmitom\nrozkmitu\nrozkmotrené\nrozkmotrení\nrozkmotriť\nrozknísanej\nrozknísať\nrozkníšu\nrozkníšuc\nrozkódovanie\nrozkódovať\nrozkohútený\nrozkohútiť\nrozkokošený\nrozkokošiť\nrozkol\nrozkolembať\nrozkolísania\nrozkolísanie\nrozkolísaním\nrozkolísaniu\nrozkolísanosť\nrozkolísanosti\nrozkolísanosťou\nrozkolísaný\nrozkolísať\nrozkolísavať\nrozkolíšu\nrozkolíšuc\nrozkolnícky\nrozkolníctvach\nrozkolníctvam\nrozkolníctvo\nrozkolník\nrozkolný\nrozkolotať\nrozkonárený\nrozkonáriť\nRozkopaná\nrozkopané\nrozkopaného\nrozkopania\nrozkopanie\nrozkopanom\nrozkopanú\nrozkopať\nrozkopávať\nrozkopávka\nrozkopnúť\nrozkorčuľovať\nrozkosíliť\nrozkošatel\nrozkošatený\nrozkošatiť\nrozkoš\nrozkošne\nrozkošnica\nrozkošnícky\nrozkošníctvo\nrozkošník\nrozkošný\nrozkotúľaný\nrozkotúlať\nrozkotúľať\nrozkovanie\nrozkovaním\nrozkovať\nrozkračovať\nrozkráda\nrozkrádač\nrozkrádačka\nrozkrádačský\nrozkrádačstvo\nrozkrádaj\nrozkrádajme\nrozkrádajte\nrozkrádajú\nrozkrádajúc\nrozkrádal\nrozkrádala\nrozkrádali\nrozkrádalo\nrozkrádam\nrozkrádame\nrozkrádanie\nrozkrádaný\nrozkrádaš\nrozkrádať\nrozkrádate\nrozkradnutia\nrozkradnutie\nrozkradnutím\nrozkradnutiu\nrozkradnúť\nrozkradnutý\nrozkrájanie\nrozkrájaniu\nrozkrájaný\nrozkrájať\nrozkrajovať\nrozkrákoriť\nrozkrámiť\nrozkreslia\nrozkresľoval\nrozkrič\nrozkričať\nrozkrídlený\nrozkrídliť\nrozkríknuť\nrozkrikovať\nrozkročene\nrozkročenie\nrozkročený\nrozkročiť\nrozkročmo\nrozkročný\nrozkrojená\nrozkrojené\nrozkrojeným\nrozkrojiť\nrozkrok\nrozkrúcaní\nrozkrúcať\nrozkrútenia\nrozkrútenie\nrozkrúteniu\nrozkrútený\nrozkrútiť\nrozkrvaviť\nrozkulačiť\nrozkúpené\nrozkúriť\nrozkúskovania\nrozkúskovanie\nrozkúskovaním\nrozkúskovaniu\nrozkúskovaný\nrozkúskovať\nrozkuštraný\nrozkuštrený\nrozkutať\nrozkutávať\nrozkutrať\nrozkutrávať\nrozkutre\nrozkutrem\nrozkutreme\nrozkutreš\nrozkutrete\nrozkutri\nrozkutrime\nrozkutrite\nrozkutrú\nrozkutrúc\nrozkuť\nrozkvačiť\nrozkvákať\nrozkvasený\nrozkvasiť\nrozkvet\nrozkvitajúce\nrozkvitajúceho\nrozkvitajúcej\nrozkvitajúci\nrozkvitanie\nrozkvitať\nrozkvitnúť\nrozkvitnutý\nrozkydať\nrozkydávať\nrozkydnúť\nrozkydnutý\nrozkýchali\nrozkypriť\nrozkyprovať\nrozkysnúť\nrozkysnutý\nrozkýv\nrozkývania\nrozkývanie\nrozkývaním\nrozkývaniu\nrozkývaný\nrozkývať\nrozkýve\nrozkývem\nrozkýveme\nrozkýveš\nrozkývete\nrozkývme\nrozkyvotať\nrozkývte\nrozkývu\nrozkývuc\nRozlad\nrozladene\nrozladenia\nrozladenie\nrozladením\nrozladeniu\nrozladenosť\nrozladený\nrozladiť\nrozlaďovať\nrozľahlejšej\nrozľahlejší\nrozľahlejšia\nrozľahlejšie\nrozľahlejšieho\nrozľahlejšiemu\nrozľahlejších\nrozľahlejším\nrozľahlejšími\nrozľahlejšiu\nrozľahlejšom\nrozľahlejšou\nrozľahlosť\nrozľahlý\nrozľahnúť\nrozlajdaný\nrozľakaný\nrozlám\nrozlámané\nrozlámať\nrozlámme\nrozlamovanie\nrozlamovať\nrozlámte\nrozlepená\nrozlepené\nrozlepenej\nrozlepenými\nrozlepiť\nrozlepovaní\nrozlepovanie\nrozlepovaním\nrozlepovať\nrozleptaná\nrozleptať\nrozleptávať\nrozleť\nrozlet\nrozletieť\nrozletovať\nrozletúvať\nrozlezení\nrozležať\nrozliahnu\nrozliatí\nrozliatiu\nrozliať\nrozliaty\nrozlič\nrozlične\nrozličnejšíF\nrozličnosť\nrozličný\nrozliehajúci\nrozliehať\nrozliepať\nrozlietanie\nrozlietaný\nrozlietať\nrozlietavý\nrozlietnuť\nrozlievaného\nrozlievanie\nrozlievať\nrozliezať\nrozliezť\nrozlíšene\nrozlíšenie\nrozlíšený\nrozlíšiteľne\nrozlíšiteľnosť\nrozlíšiteľný\nrozlíšiť\nrozlišovací\nrozlišovanie\nrozlišovaný\nrozlišovať\nrozlíšteľný\nrozlišujúca\nrozlišujúci\nrozlišujúcim\nrozloha\nrozlomenia\nrozlomenie\nrozlomením\nrozlomeniu\nrozlomený\nrozlomiť\nrozložene\nrozloženie\nrozloženo\nrozložený\nrozložený\nrozložiteľnosť\nrozložiteľný\nrozložiť\nrozložito\nrozložitosť\nrozložitý\nRozložná\nrozlúčene\nrozlúčenie\nrozlúčený\nrozlučiteľný\nrozlúčiť\nrozlúčka\nrozlúčkový\nrozlučných\nrozlučovacieho\nrozlučovať\nrozluka\nrozlúpiť\nrozlúpnuť\nrozlupovať\nrozlúsknutí\nrozlúsknutia\nrozlúsknutie\nrozlúsknutím\nrozlúsknutiu\nrozlúsknuť\nrozlúštenia\nrozlúštenie\nRozlúštením\nrozlúšteniu\nrozlúštený\nrozlúštiteľný\nrozlúštiť\nrozľútený\nrozľútiť\nrozľútostený\nrozľútosti\nrozľútostime\nrozľútostite\nrozľútostiť\nrozľútosťňovať\nrozľútostňovať\nrozľútosťoval\nrozľútosťovala\nrozľútosťovali\nrozľútosťovalo\nrozľútosťovať\nrozľútosťuj\nrozľútosťuje\nrozľútosťujem\nrozľútosťujeme\nrozľútosťuješ\nrozľútosťujete\nrozľútosťujme\nrozľútosťujte\nrozľútosťujú\nrozľútosťujúc\nrozmáčania\nrozmáčať\nrozmačkanie\nrozmačkaný\nrozmädliť\nrozmáhaní\nrozmáhania\nrozmáhanie\nrozmáhaním\nrozmáhať\nrozmach\nrozmachliť\nrozmanite\nrozmanito\nrozmanitosť\nrozmanitý\nrozmar\nrozmarín\nrozmarínový\nrozmarne\nrozmárniť\nrozmarnosť\nrozmarný\nrozmávať\nrozmazane\nrozmazania\nrozmazanie\nrozmazaniu\nrozmazaný\nrozmazať\nrozmazávanie\nrozmazávať\nrozmaznanec\nrozmaznane\nrozmaznanie\nrozmaznanosť\nrozmaznaný\nrozmaznať\nrozmaznávanie\nrozmaznávaný\nrozmaznávať\nrozmazne\nrozmaznem\nrozmazneme\nrozmazneš\nrozmaznete\nrozmaznú\nrozmec\nrozmece\nrozmecem\nrozmeceme\nrozmeceš\nrozmecete\nrozmecme\nrozmecte\nrozmecú\nrozmecúc\nrozmedzie\nrozmeliť\nrozmelnenia\nrozmelniť\nrozmenenie\nrozmenený\nRozmeniteľnosť\nrozmeniť\nrozmerať\nrozmer\nrozmeriavanie\nrozmeriavať\nrozmerne\nrozmernosť\nrozmerný\nrozmerove\nrozmerovo\nrozmerový\nrozmerúvať\nrozmetá\nrozmetaj\nrozmetajme\nrozmetajte\nrozmetajú\nrozmetajúc\nrozmetal\nrozmetala\nrozmetali\nrozmetalo\nrozmetám\nrozmetáme\nrozmetania\nrozmetanie\nrozmetaniu\nrozmetaný\nrozmetáš\nrozmetať\nrozmetáte\nrozmetávač\nrozmetávadlo\nrozmetávaní\nrozmetávanie\nrozmetávať\nrozmetený\nrozmetúvať\nrozmiagať\nrozmieľanie\nrozmieľať\nrozmieňanie\nrozmieňaný\nrozmieňať\nrozmiesiť\nrozmiestená\nrozmiestené\nrozmiestenia\nrozmiestenie\nrozmiestených\nrozmiestiť\nrozmiestnenie\nrozmiestnený\nrozmiestní\nrozmiestním\nrozmiestníme\nrozmiestníš\nrozmiestníte\nrozmiestniť\nrozmiestňovaná\nrozmiestňované\nrozmiestňovaní\nrozmiestňovania\nrozmiestňovanie\nrozmiestňovaním\nrozmiestňovaniu\nrozmiestňovať\nrozmiesťované\nrozmiesťovaniu\nrozmiesťovať\nrozmiesť\nrozmiešanie\nrozmiešaný\nrozmiešať\nrozmiešavane\nrozmiešavať\nrozmietacie\nrozmietač\nrozmilý\nrozmixovať\nrozmixuje\nrozmlátený\nrozmlátiť\nrozmliaždením\nrozmliaždený\nrozmliaždiť\nrozmliažďovať\nrozmlieť\nrozmnoženia\nrozmnoženie\nrozmnožením\nrozmnoženín\nrozmnoženina\nrozmnoženinu\nrozmnoženiny\nrozmnoženiu\nrozmnožený\nrozmnožiť\nrozmnožovací\nrozmnožovač\nrozmnožovane\nrozmnožovanie\nrozmnožovaný\nrozmnožovaný\nrozmnožovatelia\nrozmnožovať\nrozmnožovňa\nrozmnožovní\nrozmôcť\nrozmočený\nrozmočiť\nrozmokať\nrozmoknúť\nrozmoknutý\nrozmontované\nrozmontovaní\nrozmontovanom\nrozmontovaných\nrozmontovať\nrozmotaní\nrozmotania\nrozmotanie\nrozmotaním\nrozmotať\nrozmotávania\nRozmotávanie\nrozmotávaniu\nrozmotávať\nrozmôž\nrozmôžuc\nrozmraučať\nrozmrazené\nrozmrazení\nrozmrazenia\nrozmrazenie\nrozmrazeniu\nrozmrazenými\nrozmraziť\nrozmrazovací\nrozmrazovač\nrozmrazovaní\nrozmrazovania\nrozmrazovanie\nrozmrazovaním\nrozmrazovať\nrozmrazujúci\nrozmrhať\nrozmrnčať\nrozmrvený\nrozmrviť\nrozmŕzaním\nrozmŕzať\nrozmrzel\nrozmrzela\nrozmrzeli\nrozmrzelo\nrozmrzene\nrozmrzenosť\nrozmrzený\nrozmrzieť\nrozmrznúť\nrozmykať\nrozmysel\nrozmyslene\nrozmyslenie\nrozmyslený\nrozmyslieť\nrozmýšľanieN\nrozmýšľať\nrozmýšľavý\nrozmývanie\nroznariekala\nroznariekať\nroznášač\nroznášačka\nroznášané\nroznášania\nroznášanie\nroznášaním\nroznášaniu\nroznášaných\nroznášateľ\nroznášať\nroznáška\nRoznáškovú\nroznecovadlo\nroznecovať\nrozneňovať\nroznesený\nroznet\nroznetka\nroznetový\nrôzne\nroznežnený\nroznežni\nroznežnieť\nroznežnime\nroznežnite\nroznežniť\nroznežňovať\nrozniesť\nroznietenie\nroznietiť\nrôzniť\nrôznobežka\nrôznobežne\nrôznobežník\nrôznobežnosť\nrôznobežný\nroznofarebne\nrôznofarebne\nrôznofarebné\nrôznofarebnosť\nrôznofarebný\nrôznojazyčný\nrôznorodejšej\nrôznorodejší\nrôznorodejšia\nrôznorodejšie\nrôznorodejšieho\nrôznorodejšiemu\nrôznorodejších\nrôznorodejším\nrôznorodejšími\nrôznorodejšiu\nrôznorodejšom\nrôznorodejšou\nrôznorodo\nrôznorodosť\nrôznorodý\nroznosiť\nrôznosmerne\nrôznosmernosť\nrôznosmerný\nrôznosť\nrôznostranný\nroznôtiť\nrôznotvárne\nrôznotvárnosť\nrôznotvárny\nrôznovekých\nroznožiť\nroznožka\nroznožmo\nroznožovať\nrôzny\nrozoberajúca\nrozoberajúce\nrozoberajúci\nrozoberajúcich\nrozoberajúcu\nrozoberanie\nrozoberaním\nrozoberaniu\nrozoberaný\nrozoberateľný\nrozoberať\nrozobraniu\nrozobraný\nrozobratie\nrozobrať\nrozobratý\nrozocnieť\nrozodierať\nrozodni\nrozodnievať\nrozodnime\nrozodnite\nrozodniť\nrozodrať\nrozodratý\nrozodretá\nrozodretie\nrozodrieť\nrozodrúc\nrozohnané\nrozohnanej\nrozohnaní\nrozohnania\nrozohnanie\nrozohnať\nrozohnením\nrozohnený\nrozohni\nrozohnime\nrozohnite\nrozohniť\nrozohňovať\nrozohochvený\nrozohranie\nrozohraný\nrozohrať\nrozohrávacia\nrozohrávač\nrozohrávačka\nrozohrávané\nrozohrávanej\nRozohrávanie\nrozohrávanú\nrozohrávať\nrozohrávka\nrozohrej\nrozohreje\nrozohrejem\nrozohrejeme\nrozohreješ\nrozohrejete\nrozohrejme\nrozohrejte\nrozohrejú\nrozohrejúc\nrozohriateho\nrozohriatie\nrozohriať\nrozohrievať\nrozochveje\nrozochvejem\nrozochvejeme\nrozochveješ\nrozochvejete\nrozochvene\nrozochvenie\nrozochvenosť\nrozochvený\nrozochvetia\nrozochvetie\nrozochvetím\nrozochvetý\nrozochvieť\nrozochvievajúci\nrozochvievať\nrozoklaný\nrozoklať\nrozomieľať\nrozomletie\nrozomletím\nrozomletý\nrozomlieť\nrozonávať\nrozopäl\nrozopäla\nrozopäli\nrozopälo\nrozopašný\nrozopäť\nrozopínať\nrozopnúť\nrozopnutý\nrozopra\nrozoprenie\nrozoprený\nrozopri\nrozoprí\nrozopriach\nrozopriam\nrozoranie\nrozoraním\nrozoraný\nrozorať\nrozorávať\nrozorávka\nrozorvane\nrozorvanosť\nrozorvaný\nrozorvať\nrozorvi\nrozorvime\nrozorvite\nrozoschnúť\nrozoschýnať\nrozosiata\nrozosiate\nrozosiati\nrozosiatie\nrozosiatu\nrozosiať\nrozosiatych\nrozosielania\nrozosielanie\nrozosielaním\nrozosielaniu\nrozosielaný\nrozosielať\nrozosievaná\nrozosievané\nrozosievať\nrozoskvieť\nrozoslanie\nrozoslaný\nrozoslať\nrozosmiato\nrozosmiať\nrozosmiaty\nrozosmievať\nrozosmútiť\nrozospaný\nrozospato\nrozospatosť\nrozospatý\nrozospievaní\nrozospievať\nrozostavania\nrozostavanie\nrozostavaním\nrozostavaniu\nrozostavanosť\nrozostavaný\nrozostavať\nrozostavenia\nrozostavenie\nrozostavený\nrozostaviť\nrozostavovať\nrozosteľ\nrozostielať\nrozostieranie\nrozostierať\nrozostlať\nrozostrenie\nrozostretie\nrozostretý\nrozostrieť\nrozostriť\nrozostrovanie\nrozostrúc\nrozostup\nrozostúpiť\nrozostupovať\nrozoši\nrozošije\nrozošijem\nrozošijeme\nrozošiješ\nrozošijete\nrozošijú\nrozošijúc\nrozošil\nrozošila\nrozošili\nrozošilo\nrozošime\nrozošite\nrozošiť\nrozoškrieť\nrozoštvaný\nrozoštvať\nrozoštvávanie\nrozoštvávaniu\nrozoštvávať\nrozoštvi\nrozoštvime\nrozoštvite\nrozotieranie\nrozotierať\nrozotne\nrozotnem\nrozotneme\nrozotneš\nrozotnete\nrozotni\nrozotnime\nrozotnite\nrozotnú\nrozotnúc\nrozotrenie\nrozotrený\nrozotrieť\nrozotrúc\nrozovierať\nrozovretie\nrozovretý\nrozovrieť\nrozovrúc\nrozozliť\nrozoznanieN\nrozoznaný\nrozoznateľne\nrozoznateľnosť\nrozoznateľný\nrozoznať\nrozoznávací\nrozoznávané\nrozoznávanie\nrozoznávať\nrozozneli\nrozoznieť\nrozozvuč\nrozozvučanie\nrozozvučaním\nrozozvučať\nrozozvučiavať\nrozožať\nrozožatými\nrozožierajúci\nrozožierania\nrozožieranie\nrozožieraným\nrozožierať\nrozožíhať\nrozožrané\nrozožranými\nrozožrať\nrozožratý\nrozožretá\nrozožretie\nrozpačite\nrozpačito\nrozpačitosť\nrozpačitý\nrozpadajúce\nrozpadajúci\nrozpadania\nrozpadanie\nrozpadať\nrozpadávajúci\nrozpadávania\nrozpadávanie\nrozpadávaním\nrozpadávať\nrozpad\nrozpadnový\nrozpadnutia\nrozpadnutie\nrozpadnutím\nrozpadnúť\nrozpadnutý\nrozpadný\nrozpadový\nrozpadúvať\nrozpagáčiť\nrozpachtený\nrozpájania\nrozpájanie\nrozpájať\nrozpajedený\nrozpajediť\nrozpak\nrozpakmi\nrozpakoch\nrozpakom\nrozpakov\nrozpakovane\nrozpakovania\nrozpakovanie\nrozpakovaniu\nrozpakovaný\nrozpakovať\nrozpaky\nrozpäl\nrozpäla\nrozpálenie\nrozpálený\nrozpäli\nrozpáliť\nrozpälo\nrozpaľovanie\nrozpaľovať\nrozpamätať\nrozpamätávať\nrozpamätúvanie\nrozpamätúvať\nrozpantať\nrozpaprať\nrozpaprčený\nrozpaprčiť\nrozpar\nrozpáranie\nRozpáraný\nrozpárať\nrozparcelovania\nrozparcelovanie\nrozparcelovaním\nrozparcelovaniu\nrozparcelovaný\nrozparcelovať\nrozpariť\nrozparok\nrozparovať\nrozparte\nrozpásať\nrozpasený\nrozpásť\nrozpášu\nrozpášuc\nrozpäť\nrozpätie\nrozpätý\nrozpažený\nrozpažiť\nrozpečatené\nrozpečatení\nrozpečatenie\nrozpečatiť\nrozpelešiť\nrozpeniť\nrozpera\nrozperný\nrozpier\nrozpierací\nrozpierať\nrozpíjanie\nrozpíjať\nrozpílenie\nrozpílením\nrozpílený\nrozpíliť\nrozpiľovať\nrozpínací\nrozpínajúci\nrozpínanie\nrozpínať\nrozpínavo\nrozpínavosť\nrozpínavý\nrozpiplať\nrozpísania\nrozpísanie\nrozpísaním\nrozpísaný\nrozpísať\nrozpis\nrozpískaný\nrozpiska\nrozpisovania\nrozpisovanie\nrozpisovaním\nrozpisovaný\nrozpisovať\nrozpisový\nrozpíšu\nrozpíšuc\nrozpitvané\nrozpitvať\nrozpitvávaní\nrozpitvávania\nrozpitvávanie\nrozpitvávať\nrozpitve\nrozpitvem\nrozpitveme\nrozpitveš\nrozpitvete\nrozpitvi\nrozpitvime\nrozpitvite\nrozpitvú\nrozpitvúc\nrozpiť\nrozplačú\nrozplačúc\nrozplakaných\nrozplakať\nrozplakáva\nrozplamení\nrozplameniť\nrozplameňuje\nrozplánovanie\nrozplánovaný\nrozplánovať\nrozplantať\nrozplápolať\nrozpľasnúť\nrozplašených\nrozplašiť\nrozpľašti\nrozpľaštime\nrozpľaštite\nrozpľaštiť\nrozplávať\nrozplavba\nrozplaziť\nrozplemeniť\nrozplemeňovať\nrozplesať\nrozplesnúť\nrozpleštený\nrozplešti\nrozpleštime\nrozpleštite\nrozpleštiť\nrozpletá\nrozpletaj\nrozpletajme\nrozpletajte\nrozpletajú\nrozpletajúc\nrozpletal\nrozpletala\nrozpletali\nrozpletalo\nrozpletám\nrozpletáme\nrozpletaní\nrozpletania\nRozpletanie\nrozpletaním\nrozpletáš\nrozpletať\nrozpletáte\nrozpletení\nrozpletenie\nrozpletenú\nrozplieň\nrozplieni\nrozplienia\nrozplieniac\nrozplienil\nrozplienila\nrozplienili\nrozplienilo\nrozplienim\nrozplienime\nrozplieniš\nrozplieniť\nrozplienite\nrozplieňme\nrozplieňoval\nrozplieňovala\nrozplieňovali\nrozplieňovalo\nrozplieňovať\nrozplieňte\nrozplieňuj\nrozplieňuje\nrozplieňujem\nrozplieňujeme\nrozplieňuješ\nrozplieňujete\nrozplieňujme\nrozplieňujte\nrozplieňujú\nrozplieňujúc\nrozpliesť\nrozplieta\nrozplietajú\nrozplietaní\nrozplietania\nrozplietanie\nrozplietaním\nrozplietať\nrozplodenie\nrozplodím\nrozplodiť\nrozploženie\nrozpltiť\nrozpľuštiť\nrozplyň\nrozplynie\nrozplyniem\nrozplynieme\nrozplynieš\nrozplyniete\nrozplyňme\nrozplyňte\nrozplynutie\nrozplynuto\nrozplynúť\nrozplynutých\nrozplynutým\nrozplývaní\nrozplývanie\nrozplývať\nrozplývavo\nrozplývavosť\nrozplývavý\nrozpnúť\nrozpočet\nrozpočítanie\nrozpočítaním\nrozpočítaný\nrozpočítať\nrozpočítavaní\nrozpočítavania\nrozpočítavanie\nrozpočítavať\nrozpočtovanie\nrozpočtovaný\nrozpočtovať\nrozpočtovníctva\nrozpočtovníctvo\nrozpočtovo\nrozpočtový\nrozpojene\nrozpojenia\nrozpojenie\nrozpojeniu\nrozpojený\nrozpojiteľnosť\nrozpojiteľný\nrozpojiť\nrozpojovaní\nrozpojovania\nrozpojovanie\nrozpojovať\nrozpoľ\nrozpolcovali\nrozpolenie\nrozpolený\nrozpolí\nrozpolia\nrozpoliac\nrozpolil\nrozpolila\nrozpolili\nrozpolilo\nrozpolím\nrozpolíme\nrozpolíš\nrozpoliť\nrozpolíte\nrozpoľme\nrozpoľovanie\nrozpoľovať\nrozpoloženie\nrozpoľte\nrozpoltene\nrozpoltenia\nrozpoltenie\nrozpoltením\nrozpolteniu\nrozpoltenosť\nrozpoltený\nrozpolti\nrozpoltime\nrozpoltite\nrozpoltiť\nrozpolťovať\nrozpomenúť\nrozpomienka\nrozpomínať\nrozpon\nrozponom\nrozpor\nrozporcioval\nrozporciovali\nRozporciovaný\nrozporciovať\nrozporku\nrozporne\nrozpornosť\nrozporný\nRozporová\nrozporové\nrozporového\nrozporovému\nrozporovom\nrozporuplne\nrozporuplnejšíF\nrozporuplný\nrozposielané\nrozposielaní\nrozposielania\nrozposielanie\nrozposielaním\nrozposielanú\nrozposielaných\nrozposielať\nrozposlanie\nrozposlaním\nrozposlaniu\nrozposlaný\nrozposlať\nrozposunovať\nrozpovedať\nrozpoznania\nrozpoznanie\nrozpoznaním\nrozpoznaniu\nrozpoznaný\nrozpoznateľný\nrozpoznať\nrozpoznávací\nrozpoznávane\nrozpoznávanie\nrozpoznávaný\nrozpoznávať\nrozpožičaný\nrozpožičať\nrozpožičiavané\nrozpožičiavaných\nrozpožičiavať\nrozpracovania\nrozpracovaniach\nrozpracovanie\nrozpracovaním\nrozpracovaniu\nrozpracovanosť\nrozpracovanosti\nrozpracovanosťou\nrozpracovaný\nrozpracovať\nrozpracovávaná\nrozpracovávanému\nrozpracovávaní\nrozpracovávania\nrozpracovávanie\nrozpracovávaním\nRozpracovávaný\nrozpracovávať\nrozpracúvané\nrozpracúvaní\nrozpracúvania\nrozpracúvaním\nrozpracúvať\nrozpral\nrozprasiť\nrozpraskanie\nrozpraskaný\nrozpraskať\nrozprasknúť\nrozprášenie\nrozprášený\nrozprášiť\nrozprašovací\nrozprašovač\nrozprašovane\nrozprašovanie\nrozprašovaný\nrozprašovať\nrozprať\nrozpratie\nrozpráv\nrozprávač\nrozprávačka\nrozprávačský\nrozprávačstvo\nrozprávajúci\nrozprávajúcim\nrozprávanieN\nrozprávať\nrozprava\nrozprávkar\nrozprávkár\nrozprávkarka\nrozprávkárka\nrozprávkarsky\nrozprávkarský\nrozprávkársky\nrozprávka\nrozprávkovo\nrozprávkový\nrozpravný\nrozprávočka\nrozpredaj\nrozpredania\nrozpredanie\nrozpredaním\nrozpredaniu\nrozpredaný\nrozpredať\nrozpredávania\nrozpredávanie\nrozpredávaním\nrozpredávaniu\nrozpredávaný\nrozpredávať\nrozprestierajúcich\nrozprestieraní\nrozprestierať\nrozprestrenie\nrozprestreniu\nrozprestrený\nrozprestretia\nrozprestretie\nrozprestretý\nrozprestrieť\nrozprestrúc\nrozprchávať\nrozpŕchnuť\nrozpŕchnutý\nrozpriadať\nrozpriahne\nrozpriahnuť\nrozpriahnutý\nrozpriasť\nrozpriestraniť\nrozprplať\nrozprplávať\nrozprskaný\nrozprskať\nrozprskávať\nrozprsknúť\nrozprskovať\nrozprskúvať\nrozprš\nrozpršaný\nrozpršať\nrozprtiť\nrozprúdení\nrozprúdenia\nrozprúdenie\nrozprúdením\nrozprúdeniu\nrozprúdenom\nrozprúdeným\nrozprúdiť\nrozpružiť\nrozptyl\nrozptýlene\nrozptýlenie\nrozptýlenosť\nrozptýlenosti\nrozptýlený\nrozptýliť\nrozptylka\nrozptylmi\nrozptylný\nrozptyľovací\nrozptyľovač\nrozptyľovania\nrozptyľovanie\nrozptyľovaním\nrozptyľovaný\nrozptyľovať\nrozptylovo\nrozptylový\nrozptyľujúci\nrozpučať\nrozpúčať\nrozpučeného\nrozpučiť\nrozpukanie\nrozpukaný\nrozpukať\nrozpukávanie\nrozpukávať\nrozpuk\nrozpuknúť\nrozpuknutým\nrozpustene\nrozpustenie\nrozpustenosť\nrozpustený\nrozpusti\nrozpustime\nrozpustite\nrozpustiť\nrozpustnosť\nrozpustný\nrozpúšťací\nrozpúšťač\nrozpúšťačovi\nrozpúšťadlo\nrozpúšťajúci\nrozpúšťané\nrozpúšťaní\nrozpúšťania\nrozpúšťanie\nrozpúšťaním\nrozpúšťaniu\nrozpúšťaných\nrozpúšťaným\nrozpúšťať\nrozpútania\nrozpútanie\nrozpútaním\nrozpútaniu\nrozpútaný\nrozpútať\nrozpútavaním\nrozpútavať\nrozputnať\nrozputnávať\nrozrábanie\nrozrábať\nrozrác\nrozráce\nrozrácem\nrozráceme\nrozráceš\nrozrácete\nrozrácme\nrozrácte\nrozrácu\nrozrácuc\nrozradiť\nrozradnostniť\nrozradostene\nrozradostený\nrozradosti\nrozradostime\nrozradostite\nrozradostiť\nrozradostnene\nrozradostnený\nrozradostni\nrozradostnime\nrozradostnite\nrozradostniť\nrozradostňovať\nrozradosťoval\nrozradosťovala\nrozradosťovali\nrozradosťovalo\nrozradosťovať\nrozradosťuj\nrozradosťuje\nrozradosťujem\nrozradosťujeme\nrozradosťuješ\nrozradosťujete\nrozradosťujme\nrozradosťujte\nrozradosťujú\nrozradosťujúc\nrozraďovacie\nrozraďovacích\nrozradovaný\nrozradovať\nrozrameniť\nrozrarášiť\nrozrárožiť\nrozrastaní\nrozrastania\nrozrastanie\nrozrastaním\nrozrastať\nrozrastený\nrozrasti\nrozrastime\nrozrastite\nrozrásť\nrozrátaním\nrozrátaniu\nrozrátaný\nrozrátať\nrozraziť\nrozrážanie\nrozrážaný\nrozrážať\nrozre\nrozreční\nrozrečním\nrozrečníme\nrozrečníš\nrozrečníte\nrozrečniť\nrozrehliť\nrozrehniť\nrozrehotať\nrozrehúňať\nrozremziť\nrozrev\nrozrevať\nrozrevme\nrozrevte\nrozrezanie\nrozrezaním\nrozrezaný\nrozrezať\nrozrezávaní\nrozrezávanie\nrozrezávať\nrozriedenia\nrozriedenie\nrozriedeniu\nrozriedený\nrozriediť\nrozrieďovania\nrozrieďovanie\nrozrieďovať\nrozriešenia\nrozriešenie\nrozriešeniu\nrozriešený\nrozriešiť\nrozrobený\nrozrobiť\nrozrojčený\nrozrôznenie\nrozrôznený\nrozrôzniť\nrozrôzňovať\nrozrozprávať\nrozrúb\nrozrúbať\nrozrúcať\nrozručať\nrozruch\nrozrumenený\nrozrumiť\nrozrúšať\nrozrušene\nrozrušenie\nrozrušenosť\nrozrušený\nrozrušiť\nrozrušovaní\nrozrušovanie\nrozrušovať\nrozryčať\nrozrýpaný\nrozrýpať\nrozryť\nrozrytý\nrozrývač\nrozrývané\nrozrývanie\nrozrývať\nrozsadať\nrozsadenie\nrozsadiť\nrozsadlina\nrozsadlinách\nrozsadliny\nrozsadnúť\nrozsádzať\nrozsadzovať\nrozsah\nrozsahovo\nrozsahový\nrozsamopašený\nrozsamopašiť\nrozseď\nrozsedieť\nrozsekanie\nrozsekaný\nrozsekať\nrozsekávanie\nrozsekávať\nrozseknutia\nrozseknutie\nrozseknutím\nrozseknutiu\nrozseknúť\nrozsev\nrozseve\nrozsevový\nrozsiahlejší\nrozsiahlo\nrozsiahlosť\nrozsiahly\nrozsiate\nrozsiatej\nrozsiať\nrozsiaty\nrozsiatych\nrozsievací\nrozsievač\nrozsievačovi\nrozsievané\nrozsievania\nrozsievanie\nrozsievaním\nrozsievateľ\nrozsievať\nRozsievky\nrozskočiť\nrozskok\nrozskrutkovať\nrozslziť\nrozsmokliť\nrozsmútiť\nrozsnívaný\nrozsnovať\nrozsobáša\nrozsobáše\nrozsobášiť\nrozsobáš\nrozsobášmi\nrozsobášoch\nrozsobášom\nrozsobášov\nrozsobášu\nrozsortírovať\nrozsotiť\nrozspievať\nrozsrdený\nrozsrdiť\nrozsriekať\nrozsršať\nrozsršený\nrozsršiť\nrozstavaných\nrozstavať\nrozstaviť\nrozstavovať\nrozstierať\nrozstrapatenie\nrozstrapatený\nrozstrapatiť\nrozstrapkaný\nrozstrapkať\nrozstrapkávať\nrozstreknutie\nrozstreknúť\nrozstrekovacieho\nrozstrekovač\nrozstrekovaní\nrozstrekovanie\nrozstrekovať\nrozstrekúvať\nrozstreľ\nrozstrelená\nrozstrelenia\nrozstrelili\nrozstreliť\nrozstreľovanie\nrozstreľovať\nrozstretá\nrozstriekaním\nrozstriekaný\nrozstriekať\nrozstrieknuť\nrozstrieľaniu\nrozstrieľaný\nrozstrieľať\nrozstrieť\nrozstríhať\nrozstrihať\nrozstrihávať\nrozstrih\nrozstrihnutím\nrozstrihnúť\nrozstrihnutý\nrozstrihovať\nrozstrúc\nrozstup\nrozstúpiť\nrozstupovať\nrozsúdené\nrozsúdenie\nrozsúdenú\nRozsúdený\nrozsúdiť\nrozsudkový\nrozsudok\nrozsudzovaní\nrozsudzovať\nrozsúšať\nrozsušiť\nrozsušovať\nrozsváriť\nrozsvecovaní\nrozsvecovanie\nrozsvecovať\nrozsvetliť\nrozsvietenia\nrozsvietením\nrozsvietený\nrozsvietiť\nrozsvitnúť\nrozsychať\nrozsypanie\nrozsypaním\nrozsypaný\nrozsypať\nrozsýpať\nrozsypávať\nrozsýpavý\nrozsypú\nrozsypúc\nrozšafne\nrozšafnosť\nrozšafný\nrozšantený\nrozšantovaný\nrozši\nrozšifrovaná\nrozšifrované\nrozšifrovaní\nrozšifrovanie\nrozšifrovaniu\nrozšifrovaných\nrozšifrovať\nrozšifrovávať\nrozšije\nrozšijem\nrozšijeme\nrozšiješ\nrozšijete\nrozšijú\nrozšijúc\nrozšil\nrozšila\nrozšili\nrozšilo\nrozšime\nrozšírene\nrozšírenejší\nrozšírenie\nrozšírenosť\nrozšírenosti\nrozšírený\nrozšírii\nrozšíritelne\nrozšíriteľnosť\nrozšíriteľný\nrozšíriť\nrozširovací\nrozširovacia\nrozširovač\nrozširovanie\nrozširovaný\nrozširovateľ\nrozširovateľka\nrozširovateľnosť\nrozširovať\nrozširujúci\nrozšite\nrozšiť\nrozškatuľkované\nrozškatuľkovanie\nrozškatuľkovaných\nrozškatuľkovať\nrozšker\nrozškeriť\nrozškerte\nrozškierať\nrozškľabená\nrozškľabeným\nrozškľabiť\nrozškľabovať\nrozšklb\nrozšklbať\nrozšklbnúť\nrozšklbú\nrozšklbúc\nrozškrab\nrozškrabať\nrozškrabávať\nrozškrabnúť\nrozškriab\nrozškriabať\nrozškrknúť\nrozškvar\nrozškvariť\nrozškvarte\nrozšľahať\nrozšliapaná\nrozšliapať\nrozšliapava\nrozšliapavať\nrozšliapnuť\nrozšmatlať\nrozšnúrovať\nrozšnurovať\nrozšparchať\nrozšpľachnúť\nrozšprudlovať\nrozšťastnený\nrozštebotať\nrozštekaný\nrozštekať\nrozštep\nrozštepovaním\nrozštiepa\nrozštiepaj\nrozštiepajme\nrozštiepajte\nrozštiepajú\nrozštiepajúc\nrozštiepam\nrozštiepame\nrozštiepaš\nrozštiepate\nrozštiepať\nrozštiepenia\nrozštiepenie\nrozštiepením\nrozštiepeniu\nrozštiepenosť\nrozštiepený\nrozštiepiť\nrozštvrtené\nrozštvrtením\nrozštvrtiť\nrozštvrťovať\nrozšum\nrozšumieť\nrozšvitor\nrozšvitoriť\nrozšvitorte\nroztáčaná\nroztáčaní\nroztáčania\nroztáčanie\nroztáčať\nrozťahane\nrozťahanosť\nrozťahaný\nrozťahať\nrozťahovací\nrozťahovanie\nrozťahovaniu\nrozťahovať\nroztáľovať\nroztancovať\nRoztančená\nroztápajúci\nroztápaní\nroztápania\nroztápanie\nroztápaním\nroztápať\nroztárať\nroztatáreného\nroztatáriť\nrozťatia\nrozťatie\nrozťatiu\nrozťať\nrozťatý\nroztavenia\nroztavenie\nroztavením\nroztavený\nroztaviť\nroztavovať\nrozťažnosť\nrozťažný\nroztečenej\nroztečených\nroztekanie\nroztekať\nroztekávať\nroztekavý\nroztentovať\nroztepať\nroztešený\nroztiahnú\nroztiahnutia\nroztiahnutie\nroztiahnuto\nroztiahnuť\nroztiahnutý\nroztiecť\nroztieraní\nroztierania\nroztieranie\nroztierateľný\nroztierať\nroztikanie\nroztikať\nroztínania\nroztínanie\nroztínať\nroztískanie\nroztískať\nroztisnúť\nroztláčaní\nroztláčanie\nroztláčať\nroztlačenie\nroztlačiť\nroztľapčený\nroztľapkaný\nroztľapkať\nroztĺcť\nroztlčeného\nroztlčených\nroztlieska\nroztlieskaj\nroztlieskajme\nroztlieskajte\nroztlieskajú\nroztlieskajúc\nroztlieskal\nroztlieskala\nroztlieskali\nroztlieskalo\nroztlieskam\nroztlieskame\nroztlieskaš\nroztlieskať\nroztlieskate\nroztlieskava\nroztlieskavač\nroztlieskavačka\nroztlieskavaj\nroztlieskavajme\nroztlieskavajte\nroztlieskavajú\nroztlieskavajúc\nroztlieskaval\nroztlieskavala\nroztlieskavali\nroztlieskavalo\nroztlieskavam\nroztlieskavame\nroztlieskavaš\nroztlieskavať\nroztlieskavate\nroztĺkanie\nroztĺkať\nroztocký\nroztočenia\nroztočenie\nroztočením\nroztočeniu\nroztočený\nroztočiť\nroztoč\nroztočový\nRoztoka\nroztokanie\nroztokať\nroztok\nroztomile\nroztomilejšej\nroztomilejší\nroztomilejšia\nroztomilejšie\nroztomilejšieho\nroztomilejšiemu\nroztomilejších\nroztomilejším\nroztomilejšími\nroztomilejšiu\nroztomilejšom\nroztomilejšou\nroztomilo\nroztomilosť\nroztomilý\nroztopaš\nroztopašne\nroztopašník\nroztopašnosť\nroztopašný\nroztopenie\nroztopený\nroztopiť\nroztrácať\nroztrančírovať\nroztrasene\nroztrasenie\nroztrasenosť\nroztrasený\nroztratene\nroztratenie\nroztrateno\nroztratenosť\nroztratený\nroztratiť\nroztrblietať\nroztrepanie\nroztrepaný\nroztrepať\nroztrepotať\nroztresknúť\nroztresnúť\nroztrhanie\nroztrhaný\nroztrhať\nroztrhávať\nroztrhnutia\nroztrhnutie\nroztrhnutím\nroztrhnutiu\nroztrhnúť\nroztrhnutý\nroztriasať\nroztriasť\nroztriedenia\nroztriedenie\nroztriedením\nroztriedeniu\nroztriedený\nroztriediť\nroztrieďovanie\nroztrieďovať\nroztrieskaní\nroztrieskanie\nroztrieskať\nroztrieštene\nroztrieštenia\nroztrieštenie\nroztrieštením\nroztriešteniu\nroztrieštenosť\nroztrieštený\nroztrieštiť\nroztrieť\nroztrkotať\nroztrlingať\nroztrojiť\nroztrpčene\nroztrpčenie\nroztrpčenosť\nroztrpčený\nroztrpči\nroztrpčime\nroztrpčite\nroztrpčiť\nroztrpčovať\nroztrúbiť\nroztrubovať\nroztrúc\nroztrúsene\nroztrúsenosť\nroztrúsený\nroztrúsiť\nroztrusovať\nroztržiek\nroztržite\nroztržito\nroztržitosť\nroztržitý\nroztržkať\nroztržka\nroztúlať\nroztúžene\nroztúženie\nroztúženosť\nroztúžený\nroztváraní\nroztvárania\nroztváranie\nroztváraním\nroztváraniu\nroztvárať\nroztvor\nroztvorenie\nroztvoreniu\nroztvorený\nroztvoriť\nroztvorte\nrozumársky\nrozumN\nrozumejúci\nrozumieť\nrozumkár\nrozumkári\nrozumkármi\nrozumkárov\nrozumkársky\nrozumkovať\nrozum\nrozumne\nrozumnosť\nrozumnosťN\nrozumný\nrozumovať\nrozumove\nrozumovo\nrozumový\nrozumujúce\nrozutekať\nrozutiecť\nrozuzlenie\nrozuzliť\nrozuzľovať\nrozuzľujúcej\nrozuzľujúcom\nrozvadene\nrozvadenosť\nrozvadený\nrozvadiť\nrozvádzací\nrozvádzač\nrozvádzajúce\nrozvádzajúcej\nrozvádzajúci\nrozvádzajúcich\nrozvádzania\nrozvádzanie\nrozvádzaný\nrozvádzať\nrozvaha\nrozvalašiť\nrozváľať\nrozvalcovaných\nrozvalcovať\nrozvalenie\nrozvalený\nrozvalina\nrozvaliť\nrozvaľkaním\nrozvaľkať\nrozvaľovať\nrozváňať\nrozvandrovať\nrozvar\nRozváraním\nrozvárať\nrozvarený\nrozvariť\nrozvarte\nrozvarujú\nrozvášnený\nrozvášniť\nrozvášňovať\nrozväzovacej\nrozväzovacia\nrozväzovaciu\nrozväzovač\nrozväzovaní\nrozväzovanie\nrozväzovaním\nrozväzovaniu\nrozväzovať\nrozvážač\nrozvážaná\nrozvážané\nrozvážaní\nrozvážanie\nrozvážať\nrozvážený\nrozvážiť\nrozvažitý\nrozvážka\nrozvážlivý\nrozvážne\nrozvážne\nrozvážnosť\nrozvážnosťN\nrozvážny\nrozvažovania\nrozvažovanie\nrozvažovať\nrozvedenie\nrozvedený\nrozveľadiť\nrozveselene\nrozveselený\nrozveseliť\nrozveseľovať\nrozvesiť\nrozvesovať\nrozvešaná\nrozvešané\nrozvešaných\nrozvešať\nrozvešiavanie\nrozvešiavať\nrozvetrať\nrozvetvene\nrozvetvenia\nrozvetvenie\nrozvetvením\nrozvetvenosť\nrozvetvený\nrozvetvi\nrozvetvime\nrozvetvite\nrozvetviť\nrozvetvovanie\nrozvetvovať\nrozvetvujúci\nrozvezený\nrozvi\nrozviati\nrozviať\nrozviazane\nrozviazania\nrozviazanie\nrozviazaním\nrozviazaniu\nrozviazaný\nrozviazať\nrozviažuc\nrozvibrovať\nrozvidnenia\nrozvidnenie\nrozvidnený\nrozvidni\nrozvidnieť\nrozvidnievať\nrozvidnime\nrozvidnite\nrozvidniť\nrozviedčik\nrozviedčika\nrozviedčikov\nrozviedka\nrozviesť\nrozvievať\nrozviezť\nrozvíchriť\nrozvíjací\nrozvíjajúci\nrozvíjanie\nrozvíjaný\nrozvíjateľ\nrozvíjateľka\nrozvíjať\nrozvije\nrozvijem\nrozvijeme\nrozviješ\nrozvijete\nrozvijú\nrozvijúc\nrozvime\nrozvin\nrozvíňať\nrozvinmi\nrozvinovali\nrozvinované\nrozvinúci\nrozvinutia\nrozvinutie\nrozvinutím\nrozvinutiu\nrozvinutosť\nrozvinúť\nrozvinutý\nrozvírenia\nrozvírenie\nrozvírením\nrozvírený\nrozvirganý\nrozvirgať\nrozvirgošiť\nrozvíriť\nrozvirovaní\nrozvirovaniu\nrozvirovaným\nrozvirovať\nrozvite\nrozviť\nrozvitok\nrozvitosť\nrozvitý\nrozvláčať\nrozvláčiť\nrozvláčne\nrozvláčnosť\nrozvláčny\nrozvlačovať\nrozvlákať\nrozvláknenie\nrozvláknením\nrozvlákniť\nrozvlákňovacie\nrozvlákňovacieho\nrozvlákňovacích\nrozvlákňovačom\nrozvlákňovaní\nrozvlákňovania\nrozvlákňovanie\nrozvlákňovať\nrozvlečeniu\nrozvlečený\nrozvliecť\nrozvlnenia\nrozvlneniu\nrozvlni\nrozvlnime\nrozvlnite\nrozvlniť\nrozvlňovať\nrozvod\nrozvodie\nrozvodka\nrozvodňa\nrozvodnenia\nrozvodnenie\nrozvodnením\nrozvodnený\nrozvodniaca\nrozvodnice\nrozvodnime\nrozvodnite\nrozvodniť\nrozvodňovať\nrozvodný\nrozvodovosť\nrozvodový\nrozvojaschopná\nrozvojaschopné\nrozvojaschopných\nrozvoj\nrozvojovo\nrozvojový\nrozvoľneného\nrozvoľnenie\nrozvoľni\nrozvoľnime\nrozvoľnite\nrozvoľniť\nrozvoľňovaní\nrozvoľňovanie\nrozvoľňovať\nrozvoňať\nrozvoniavať\nrozvoz\nrozvoziť\nrozvozný\nrozvracač\nrozvracania\nrozvracanie\nrozvracať\nrozvrat\nrozvrátenia\nrozvrátenie\nrozvrátením\nrozvráteniu\nrozvrátený\nrozvrátiť\nrozvratmi\nrozvratne\nrozvratnícky\nrozvratníctvach\nrozvratníctvam\nrozvratníctvo\nrozvratníčka\nrozvratník\nrozvratný\nrozvrav\nrozvrávať\nrozvravene\nrozvravenie\nrozvravenosť\nrozvravený\nrozvravieť\nrozvrčať\nrozvrešťať\nrozvrh\nrozvrhnutie\nrozvrhnúť\nrozvrhnutý\nrozvrhovaní\nrozvrhovania\nrozvrhovanie\nrozvrhovať\nrozvrhový\nrozvrstvenie\nrozvrstvený\nrozvrstvi\nrozvrstvime\nrozvrstvite\nrozvrstviť\nrozvrstvovať\nrozvrť\nrozvŕtaný\nrozvŕtať\nrozvrtávať\nrozvrtieť\nrozvŕzgať\nrozvyprávať\nrozvzlykal\nrozvzlykala\nrozvzlykať\nrozzelenajú\nrozzelenanom\nrozzelenať\nrozzelenieť\nrozzlosti\nrozzlostime\nrozzlostite\nrozzlostiť\nrozzrkadliť\nrozzúrene\nrozzúrenosť\nrozzúrený\nrozzúriť\nrozzvoniť\nrozzvuč\nrozzvučať\nrozzvučiavať\nrozžalosti\nrozžalostime\nrozžalostite\nrozžalostiť\nrozžarovať\nrozžať\nrozžehliť\nrozžehľovať\nrozžehnať\nrozžehnávať\nrozželieť\nrozžeravenie\nrozžeravený\nrozžeravieť\nrozžeraviť\nrozžeravovať\nrozžhavili\nrozžialene\nrozžialenosť\nrozžialený\nrozžialiť\nrozžiarený\nrozžiariť\nrozžierať\nrozžíhať\nrozžkovitý\nrozžrať\nrozžuť\nrozžuvať\nrozžúvať\nrozžviakať\nrožkatý\nRožkovanoch\nRožkovany\nrožkovitý\nrožkovitý\nrožkový\nRožňava\nrožňavského\nrožňavskej\nrožňavskí\nrožňavskou\nrožňavskú\nrožňavských\nrožňavským\nRožňavský\nRožňová\nRožňové\nrožný\nrožok\nrožtek\nrožtekový\nRp\nRP\nRPA\nRR\nRS\nRSDr\nRSFSR\nRSR\nRSS\nRTE\nrtg\nRTG\nRTL\nRTV\nrty\nrúb\nrúba\nrubač\nrúbačka\nrubačský\nrúbajú\nrúbaň\nrúbania\nrúbanie\nrúbaním\nrúbanina\nrúbanine\nrúbaninu\nrúbaniny\nrúbanísk\nrúbanisko\nrúbaňový\nrúbaných\nrubár\nrubársky\nrubáša\nrubáše\nRubáše\nrubáši\nrubáš\nrubáška\nrubaška\nrubášmi\nrubášoch\nrubášom\nRubášom\nrubášov\nrubášu\nrubato\nrúbať\nrub\nrubelit\nrubeľ\nrubeola\nruberoid\nrubídium\nrubín\nrubínovo\nrubínový\nrubis\nrubista\nrubivírus\nrubla\nrubľa\nrubľami\nruble\nrubli\nrubľoch\nrubľom\nrubľov\nrubľovo\nrubľový\nrubľu\nrubnúť\nrubný\nrubol\nrubopis\nrubopise\nrubopisec\nrubopisom\nrubopisov\nrubopisu\nrubopisy\nrubor\nrubový\nrubrika\nrubrum\nrúcaní\nrúcania\nrúcanie\nrúcať\nručaj\nručanie\nručať\nrúčejšej\nrúčejší\nrúčejšia\nrúčejšie\nrúčejšieho\nrúčejšiemu\nrúčejších\nrúčejším\nrúčejšími\nrúčejšiu\nrúčejšom\nrúčejšou\nručenie\nručený\nručiaci\nručička\nručičkový\nručiteľ\nručiteľka\nručiteľský\nručiť\nrúči\nrúčka\nrúčkovanie\nrúčkovať\nručne\nručníček\nručníčka\nručníčkami\nručníčkoch\nručníčkom\nručníčkov\nručníčku\nručníčky\nručník\nRučno\nručný\nrúčo\nrudá\nrudamente\nruda\nrudej\nrudí\nRudický\nrudiment\nrudimentálnej\nrudimentárne\nrudimentárny\nRudin\nRudina\nRudinka\nRudinský\nrudka\nRudlov\nRudlová\nRudlovej\nRudlovská\nRudlovského\nRudlovskej\nRudna\nRudňanoch\nRudňany\nrudnatý\nRudne\nRudník\nRudníka\nRudníku\nRudno\nRudnu\nrudný\nRudo\nRudohorská\nRudohorskej\nRudoch\nRudol\nRudolf\nRudolfína\nRudolfíne\nRudolfinu\nRudolfova\nRudolfovej\nRudolfovo\nRudolfovu\nrudom\nRudov\nRudove\nRudovo\nrudých\nRudý\nrugbista\nrugby\nrugbyový\nrúhačský\nrúhanieN\nrúhať\nrúhavo\nrúhavý\nRuhr\nrúch\nrúchach\nrúcham\nruch\nruchnúť\nrúcho\nruín\nruina\nruinovaného\nruinovanej\nruinovaní\nruinovania\nruinovanie\nruinovaniu\nruinovať\nrujach\nrujam\nrujanský\nruja\nrují\nrujný\nrujúcej\nrúk\nrúka\nrúkaj\nrúkam\nrúkať\nrukáv\nrukávce\nrukávec\nrukavica\nrukavičkár\nrukavičkárka\nrukavičkársky\nrukavičkársky\nrukavičkárstvach\nrukavičkárstvam\nrukavičkárstvo\nrukavička\nrukávnik\nrukávový\nruka\nruko\nrukojemníčka\nrukojemník\nrukolapne\nrukolapnosť\nrukolapný\nrukopis\nrukopisný\nrukoväť\nrukovať\nrukoviatkach\nrukoviatkam\nrukoviatkami\nrukoviatka\nrukoviatke\nrukoviatkou\nrukoviatku\nrukoviatky\nrukoviatok\nruksak\nruký\nruláda\nrula\nruleta\nrumácať\nrumádzganiu\nrumádzgať\nrumami\nruman\nrumanček\nrumančekový\nRumanová\nrumázgať\nrumba\nrumbový\nrume\nrumelka\nrumelkovočervený\nrumelkový\nrumen\nrumeň\nrumenec\nrumenica\nrumenieť\nrumeniť\nrumenno\nrumenný\nrumený\nruminácia\nRumince\nRuminciach\nrumisko\nrumiť\nrum\nrumoch\nrumom\nrumor\nrumov\nrumovísk\nrumovisko\nrumový\nrumpál\nrumpáli\nrumpálmi\nrumu\nrumun\nRumun\nrumunčín\nrumunčina\nrumunizmus\nRumunka\nRumunku\nRumunsko\nrumunsky\nrumunský\nrumy\nrun\nrún\nruna\nrúnach\nrúnam\nruncovať\nrunda\nrundu\nRunina\nrunom\nrúno\nrunov\nrúnový\nrunu\nrunway\nrup\nRupert\nRuperta\nRupertom\nRupertov\nRupertova\nRupertove\nRupertovi\nRupertovom\nrupia\nrupiah\nrupiách\nrupiám\nrupie\nrupii\nrupií\nrupiou\nrupiu\nrupja\nrupkať\nrupnúť\nRuprecht\nRuprechta\nRuprechtove\nrups\nruptúr\nruptúrach\nruptúram\nruptúra\nrúr\nrúrach\nruralistický\nruralizmus\nrurálny\nrúram\nrúra\nrúrka\nrúrkovať\nrúrkovitý\nrúrkový\nrúročka\nrúrovitý\nrúrovňa\nrúrovní\nrúrovod\nrúrový\nrusalka\nrusalkinej\nrusalkino\nRuse\nrusi\nrusifikácia\nrusifikácie\nrusifikácii\nrusifikoval\nrusifikovaný\nRusín\nRusínka\nrusínsky\nrusínsky\nrusiopatia\nrusista\nrusisticky\nrusistický\nrusistika\nrusistka\nrusizmus\nRus\nrusko\nRusko\nrusko-slovenský\nRuskov\nRuskova\nRuskove\nRuskovom\nRuskovu\nrusky\nruský\nrus\nrusnák\nrusnákovia\nrusofil\nrusofili\nrusofilský\nrusofilstvo\nrusofóbiou\nRusovej\nRusovská\nrusovské\nRusovskej\nRusovskou\nRusovskú\nrusticita\nrustika\nRustika\nrustikál\nrustikálny\nRusý\nrušať\nrušenie\nrušeň\nrušený\nrušiaci\nrušiam\nrušiame\nrušiaš\nrušiate\nrušič\nrušiče\nrušička\nrušiču\nrušiteľ\nrušiteľka\nrušiť\nrušivo\nrušivý\nrušivý\nrúško\nrúškou\nrúšky\nrušňa\nrušňami\nrušne\nrušni\nrušno\nrušňoch\nrušňom\nrušnosť\nrušňov\nrušňovodič\nrušňovodičovu\nrušňový\nrušňu\nrušný\nrúšok\nruštín\nruštinách\nruštinám\nruštinami\nruštinár\nruštinárka\nruštinársky\nruština\nRut\nrút\nRút\nruta\nrútenie\nruténium\nrutí\nrutia\nrútiaca\nrútiace\nrútiaceho\nrútiaci\nrútiacich\nrutie\nrutil\nrutilizmus\nrutina\nrutinér\nrutinérsky\nrutinérsky\nrutinérstvach\nrutinérstvam\nrutinérstvo\nrutinne\nrutinný\nrutinovane\nrutinovanosť\nrutinovaný\nrutinový\nrútiť\nRutom\nruť\nruv\nruvačka\nruvanica\nruvanie\nruvať\nruve\nRUVE\nruvem\nruveme\nruveš\nruvete\nruvú\nruvúc\nruža\nRužbách\nRužbachoch\nRužbachy\nrúže\nRužena\nružencový\nruženec\nRuženka\nRuženkou\nRuženky\nruží\nrúži\nružiak\nružica\nružicový\nružička\nružičkový\nružienka\nRužín\nRužiná\nRužindol\nRužindolská\nRužíne\nRužinov\nRužinova\nRužinove\nRužinovom\nružinovský\nRužinovu\nRužínska\nružínskej\nRužinský\nrúž\nrúžmi\nrúžoch\nružolíce\nrúžom\nRužomberka\nRužomberkom\nRužomberku\nRužomberok\nružomberský\nrúžov\nružova\nružovasto\nružovastý\nružovato\nružovejšie\nružovejšíF\nružovieť\nružovitých\nružovkasto\nružovkastý\nružovkavo\nružovkavý\nružovo\nružovosť\nružový\nrúžu\nrval\nrvali\nrvania\nrvaniach\nrvať\nrve\nrveme\nrvete\nRVHP\nrvi\nRW\nRwanďan\nRwanda\nrwandský\nryb\nrýb\nrybací\nrybacina\nrybačka\nrybár\nrybárčenia\nrybárčenie\nrybárčiť\nrybáre\nrybárenia\nrybárik\nrybárka\nRybárpoľskej\nrybársky\nrybársky\nrybárstvach\nrybárstvam\nrybárstvo\nryba\nRybianske\nrybianskeho\nrybička\nrybí\nrybina\nrybinovací\nrybinovitý\nrybka\nRybkin\nRybkinom\nrybnatý\nRybne\nRybnická\nrybnickej\nrybnickú\nrybníček\nrybníčka\nrybníčkami\nrybníčkoch\nrybníčkom\nRybníčkom\nrybníčkov\nRybníčkov\nrybníčku\nrybníčky\nrybničný\nrybnikár\nrybnikársky\nrybnikársky\nrybnikárstvach\nrybnikárstvam\nrybnikárstvo\nrybník\nrybníkový\nrybný\nrybolov\nrybolovný\nrybovody\nryč\nryčať\nrydlo\nRydlová\nrýdzejší\nrýdzik\nrýdzi\nrýdzo\nrýdzosť\nrýh\nryha\nryhovania\nryhovanie\nryhovaný\nryhovať\nrýchlejší\nrýchlene\nrýchlenie\nrýchleniu\nrýchlený\nrýchliareň\nrýchlik\nrýchlikový\nrýchliť\nrýchlo\nrýchlobežný\nrýchločistiareň\nrýchločistiarňach\nrýchločistiarňam\nrýchlodráh\nrýchlodráhach\nrýchlodráham\nrýchlodráha\nrýchlokorčuliar\nrýchlokorčuliarka\nrýchlokorčuliarsky\nrýchlokorčuľovanie\nrýchlokurz\nrýchlokurze\nrýchlokurzmi\nrýchlokurzom\nrýchlokurzov\nrýchlomera\nrýchlomer\nrýchlonohejšej\nrýchlonohejší\nrýchlonohejšia\nrýchlonohejšie\nrýchlonohejšieho\nrýchlonohejšiemu\nrýchlonohejších\nrýchlonohejším\nrýchlonohejšími\nrýchlonohejšiu\nrýchlonohejšom\nrýchlonohejšou\nrýchlonohý\nrýchloopravovňa\nrýchloopravovní\nrýchlopaľba\nrýchlopalný\nrýchlopis\nrýchlopisca\nrýchlopisec\nrýchlopisný\nrýchloprstý\nrýchlorastúcejšej\nrýchlorastúcejší\nrýchlorastúcejšia\nrýchlorastúcejšie\nrýchlorastúcejšieho\nrýchlorastúcejšiemu\nrýchlorastúcejších\nrýchlorastúcejším\nrýchlorastúcejšími\nrýchlorastúcejšiu\nrýchlorastúcejšom\nrýchlorastúcejšou\nrýchlorastúci\nrýchlorazenie\nrýchlorazič\nrýchlorezné\nrýchloreznej\nrýchlorezných\nrýchloschnúci\nrýchlosť\nrýchlostne\nrýchlostný\nrýchlotavba\nrýchlotavič\nrýchlotovar\nrýchloupínacia\nrýchloupínacie\nrýchlouzáverov\nrýchlouzáveru\nrýchlovarič\nrýchlovarný\nrýchloviazače\nrýchlovlak\nrýchlovýkrm\nrýchlovýťah\nrýchly\nrychnovského\nrychnovskej\nrychnovskom\nrychnovskou\nrychnovských\nRychnovský\nryk\nryk\nrykla\nryknúť\nrykol\nrykot\nrykynčickí\nrýľa\nrýle\nrýli\nrýľ\nrýľmi\nrýľoch\nrýľom\nrýľov\nrýľovaný\nrýľovať\nrýľový\nrýľu\nrým\nrýmovačka\nrýmovaný\nrýmovať\nrýmový\nRýn\nrýnsky\nrýnsky\nryolit\nryolite\nryolitom\nryolitového\nryolitu\nrypáčik\nrýpadlo\nrypák\nrýpania\nrýpanie\nrýpaný\nrýpať\nrýpava\nrýpnuť\nrypnutie\nrypnúť\nrypný\nryps\nrysavo\nrysavý\nryse\nrysi\nrysí\nryska\nrysky\nrys\nrysova\nrysovací\nrysovač\nrysovadlo\nrysovane\nrysovania\nrysovanie\nrysovaniu\nrysovaný\nrysovať\nrysovňa\nrysovní\nrysu\nrysujúce\nrysych\nRysy\nryšavec\nryšavkastý\nryšavo\nryšavý\nrytcovou\nrytec\nrytecký\nrytectvo\nrytia\nrytie\nrytiera\nrytier\nrytierskosť\nrytiersky\nrytiersky\nrytierstvach\nrytierstvam\nrytierstvo\nrytím\nrytina\nrytkyňa\nrytmickosť\nrytmicky\nrytmický\nrytmika\nrytmizovaná\nrytmizovať\nrytmus\nryto\nryton\nryť\nrytý\nryzlink\nryzlinky\nryža\nryží\nryžiarmi\nryžovací\nryžovaní\nryžovania\nryžovanie\nryžovaním\nryžovaniu\nryžovať\nryžovísk\nryžovisko\nryžový\ns\nsa\nSA\nsabat\nsabatmi\nsabeizmus\nSabín\nSabínach\nSabínam\nSabína\nSabinov\nSabinova\nSabinove\nSabinovom\nsabinovské\nsabinovskej\nsabinovskú\nsabinovských\nsabinovským\nsabinovskými\nSabinovský\nSabinovu\nsabotážach\nsabotážam\nsabotáž\nsabotážnicky\nsabotážnický\nsabotážnictvo\nsabotážnik\nsabotážny\nsabotér\nsabotérsky\nsabotérsky\nsabotérstvach\nsabotérstvam\nsabotérstvo\nsabotoval\nsabotovala\nsabotovali\nsabotovalo\nsabotovanie\nsabotovaním\nsabotovaniu\nsabotovaný\nsabotovať\nsabotuj\nsabotuje\nsabotujem\nsabotujeme\nsabotuješ\nsabotujete\nsabotujme\nsabotujte\nsabotujú\nsabotujúc\nsáca\nSácania\nSácanie\nsácaním\nsácaniu\nsácať\nsacerdocium\nsacerdotálny\nsací\nsáč\nsáče\nsáčem\nsáčeme\nsáčeš\nsáčete\nsáčik\nsáčkoch\nsáčko\nsáčkov\nsáčkoval\nsáčkovala\nsáčkovali\nsáčkovalo\nsáčkovanie\nsáčkovaním\nsáčkovať\nsáčkový\nsáčkuj\nsáčkuje\nsáčkujem\nsáčkujeme\nsáčkuješ\nsáčkujete\nsáčkujme\nsáčkujte\nsáčkujú\nsáčkujúc\nsáčky\nsáčme\nsáčok\nsáčte\nsáču\nsáčuc\nsačurovského\nsačurovskej\nsačurovskí\nsád\nsáda\nsadaní\nsadania\nsadanie\nsadaniu\nsadár\nsadári\nsadárske\nsadárskej\nsadársky\nsadárskych\nsadať\nsada\nsad\nsadba\nsadbový\nsadenia\nsadenica\nsadenicový\nsadenička\nsadenie\nsadením\nsadenísk\nsadenisko\nsadený\nsadiareň\nsadič\nsadiča\nsadielce\nsadielci\nsadielcom\nsadielec\nsadielko\nsadielok\nsadier\nsadík\nsadine\nsadista\nsadisticky\nsadistický\nsadistka\nsadiť\nsadív\nsadivo\nsadivový\nsadizmus\nsadkať\nsádka\nsádkový\nsadlo\nsadlovitý\nsadlový\nsadnutie\nsadnúť\nsadnutý\nSádocký\nsadomasochista\nsadomasochizmus\nsadovnícky\nsadovníctvach\nsadovníctvam\nsadovníctvo\nsadovník\nsadový\nsadrách\nsadrám\nsadrami\nsadra\nsadrokartón\nsadrokartónový\nsadrovanie\nsadrovať\nsadrovcový\nsadrovec\nsadrovo\nsadrový\nSadská\nSadské\nSadskej\nsaducej\nsadz\nsádzací\nsadzač\nsádzač\nsádzačka\nsadzačka\nsádzačky\nsadzačský\nsadzačstvo\nsádzanie\nsádzať\nsadza\nsadzba\nsadzbový\nsadzí\nsadzia\nsadziac\nsadziareň\nsadziarenský\nsadziarňach\nsadziarňam\nsadzička\nsadzil\nsadzila\nsadzili\nsadzilo\nsadzím\nsadzíme\nsadzíš\nsadziť\nsadzíte\nsádzka\nsádzka\nsadzme\nsadzobňa\nsadzobník\nsadzobný\nsadzový\nsadzte\nsádžu\nsádžuc\nsafaládka\nsafaládka\nsafari\nSafari\nsafe\nsafián\nsaflorit\nság\nsagacita\nságach\nságam\nsága\nsagitálny\nSagittarius\nságovník\nSahár\nSahara\nsahel\nsáhib\nsahli\nSachalín\nsacharáza\nsacharid\nsacharidový\nsacharín\nsacharínový\nsacharometer\nsacharóz\nsacharózach\nsacharózam\nsacharóza\nsacharózový\nSaigon\nSaigone\nSaigonu\nsajdkár\nsajdkárach\nsajdkáram\nsajdkára\nsajdkárka\nsajdkárka\nsajga\nSajkin\nsajúci\nsak\nsák\nsaké\nsakija\nsakka\nsako\nsakový\nSakra\nsakralita\nsakrálnosť\nsakrálny\nsakrálny\nsakrament\nsakramentálny\nsakramentár\nsakramentsky\nsakramentský\nsakrárium\nsakristia\nsakrolumbálny\nsakrosanktita\nsakrosanktum\nsakrovertebrálny\nsakúr\nsakura\nsakura\nsál\nsalacita\nsalačný\nsálach\nSalajka\nsálajúca\nSálajúce\nsálajúci\nsálajúcim\nsalám\nsalámach\nsalámam\nSalamander\nsalamandra\nsalamandrin\nSalamandrom\nsaláma\nsalámový\nsalangana\nsálanie\nsalár\nSalár\nsalaša\nsalaše\nsalaši\nsalašík\nsalaš\nsalašmi\nsalašnícky\nsalašníctvach\nsalašníctvam\nsalašníctvo\nsalašník\nsalašný\nsalašoch\nsalašom\nsalašov\nsalašový\nsalašu\nsálať\nsálavať\nsálavosť\nsálavý\nsála\nsáld\nsaldokont\nsaldokonta\nsaldokontá\nsaldokontách\nsaldokonto\nsaldokontom\nsaldo\nsaldovaná\nsaldovaní\nsaldovanie\nsaldovať\nsaldový\nsale\nSalem\nSalema\nSaleme\nsalep\nSalerna\nSalerne\nSalerno\nsalezián\nsaleziánsky\nsaleziánsky\nSalgótarján\nSalgótarjáne\nSalgótarjánom\nsalgótarjánskych\nSalgótarjánu\nsalchov\nsalchow\nSalíb\nSalibách\nSaliby\nsalicín\nsalický\nsalicylan\nsalicylát\nsalicyl\nsalicylmi\nsalicylový\nsalina\nSalina\nSaline\nsalinita\nsalivácia\nSalka\nSalke\nsalmiak\nsalmiakový\nsalmonel\nsalmonela\nsalmonelový\nsalmonelóz\nsalmonelóza\nsalmonelóze\nsalmonelózou\nsalmonelózu\nsalmonelózy\nsalmoniel\nsalón\nsalónik\nsalónka\nsalónkový\nsalónne\nsalónnosť\nsalónny\nsalónový\nsálový\nsalpingitída\nsalpingitis\nsalpinx\nsalsa\nSálskom\nsált\nsaltato\nsalto\nsalubrita\nsalut\nSalut\nsalute\nsalutovanie\nsalutovať\nSalvador\nSalvádor\nSalvadore\nSalvadorom\nsalvadorskej\nsalvadorskú\nsalvádorský\nSalvadoru\nSalvátor\nsalvátorka\nSalvátorom\nSalvátorskej\nsalva\nsalvový\nsalycil\nsalycilový\nSalzburg\nSalzburgom\nSalzburgu\nsalzburský\nsam\nSAM\nsám\nsama\nsamana\nSamár\nSamara\nSamare\nSamária\nsamaritán\nsamaritánka\nsamaritánsky\nsamaritánsky\nsamaritánstvach\nsamaritánstvam\nsamaritánstvo\nsamárium\nSamarou\nSamaru\nSamary\nsamba\nsambový\nsambucín\nsamčeki\nsamček\nsamčí\nSame\nsamecL\nsamenáčik\nsametový\nsami\nsamica\nsamičí\nsamička\nSamiel\nsamit\nsamitmi\nsamizdat\nsamizdatmi\nsamizdatový\nsamo\nSamoa\nsamobytie\nsamobytne\nsamobytnosť\nsamobytný\nsamočinne\nsamočinnosť\nsamočinný\nsamočistenie\nsamočistiaci\nsamočistiaco\nsamoderžavie\nsamoderžavný\nsamodôvera\nsamodruhosť\nsamodruhý\nsamodŕžavný\nSamoe\nsamofinancovaní\nsamofinancovania\nsamofinancovanie\nsamofinancovaním\nsamofinancovaniu\nsamohl\nsamohláska\nsamohláskový\nsamohonka\nsamohybmi\nsamohybný\nsamochodný\nsamochvál\nsamochválach\nsamochválam\nsamochvála\nsamoindukcia\nsamoindukčný\nsamojedinký\nsamojediný\nsamokontrola\nsamolepiaci\nsamolepka\nsamoliečbach\nsamoliečbam\nsamoliečbami\nsamoliečba\nsamoliečebný\nsamoliečení\nsamoliečenia\nsamoliečenie\nsamoliečením\nsamoliečob\nsamoľúbejšej\nsamoľúbejší\nsamoľúbejšia\nsamoľúbejšie\nsamoľúbejšieho\nsamoľúbejšiemu\nsamoľúbejších\nsamoľúbejším\nsamoľúbejšími\nsamoľúbejšiu\nsamoľúbejšom\nsamoľúbejšou\nsamoľúbo\nsamoľúbosť\nsamoľúby\nsamonabíjací\nsamonosne\nsamonosný\nsamoobnova\nsamoobslúh\nsamoobsluha\nsamoobslužne\nsamoobslužný\nsamoodmrazovací\nsamoopelenie\nsamoopelivosť\nsamoopelivý\nsamoopelivý\nsamooplodenenie\nsamooplodnenie\nsamopal\nsamopalmi\nsamopalník\nsamopaš\nsamopašiť\nsamopašne\nsamopašnica\nsamopašnícky\nsamopašníctvach\nsamopašníctvam\nsamopašníctvo\nsamopašník\nsamopašnosť\nsamopašný\nsamoplatca\nsamoplatcovský\nsamoplatiteľ\nsamoplatiteľka\nsamoplatiteľský\nsamoplatkyňa\nsamopohyb\nsamoprašný\nsamorast\nsamorastlosť\nsamorastlý\nsamorastlý\nsamorastmi\nsamoregulácia\nsamoregulačne\nsamoregulačný\nsamorodák\nsamorodné\nsamorodného\nsamorodý\nsamosebou\nsamospád\nsamospádový\nsamospasiteľnosť\nsamospasiteľný\nsamospasný\nsamosprašný\nsamospráv\nsamosprávach\nsamosprávam\nsamospráva\nsamosprávne\nsamosprávny\nsamospúšťach\nsamospúšťam\nsamospúšť\nsamost\nsamostačný\nsamostatnejšie\nsamostatnejšíF\nsamostatne\nsamostatnosť\nsamostatný\nsamosudca\nsamosudkyňa\nsamosvorné\nsamotár\nsamotáre\nsamotárka\nsamotársky\nsamotársky\nsamotárstvach\nsamotárstvam\nsamotárstvo\nsamota\nsamotka\nsamotne\nsamotný\nsamotok\nsamotrýznivý\nsamoúčel\nsamoúčele\nsamoúčelmi\nsamoúčelne\nsamoúčelnosť\nsamoúčelný\nsamoučenia\nsamouk\nsamourčenie\nsamourčovacie\nsamovar\nsamovarček\nsamoväzba\nsamoviazač\nsamovlád\nsamovládach\nsamovládam\nsamovláda\nsamovládca\nsamovládny\nsamovôľach\nsamovôľam\nsamovôľa\nsamovôlí\nsamovoľne\nsamovoľnosť\nsamovoľný\nsamovrah\nsamovrahyňa\nsamovrava\nsamovražda\nsamovražedne\nsamovražednosť\nsamovražedný\nsamovyšetrovanie\nsamovzdelávací\nsamovzdelávanie\nsamovznietenie\nsamovznietivosť\nsamovznietivý\nsamozápal\nsamozápalmi\nsamozápalnosť\nsamozápalný\nsamozásobenie\nsamozásobiteľ\nsamozásobiteľka\nsamozásobiteľský\nsamozásobovanie\nsamozásobovateľ\nsamozásobovateľka\nsamozásobovateľský\nsamozničenia\nsamozničením\nsamozohrievanie\nsamozrejme\nsamozrejmejšej\nsamozrejmejší\nsamozrejmejšia\nsamozrejmejšie\nsamozrejmejšieho\nsamozrejmejšiemu\nsamozrejmejších\nsamozrejmejším\nsamozrejmejšími\nsamozrejmejšiu\nsamozrejmejšom\nsamozrejmejšou\nsamozrejmosť\nsamozrejmý\nsamozrýchľujúci\nsamozvane\nsamozvanec\nsamozvanecky\nsamozvanecký\nsamozvaný\nsamožertva\nsampan\nSampor\nsamsara\nsamso\nsamson\nSamson\nSamsona\nSamsonom\nSamsonovej\nSamsonovom\nSamsung\nsamu\nsamučičký\nsamučký\nSamuel\nsamulinký\nsámum\nsamunký\nsamuraj\nsamurajský\nsamy\nsamý\nSan\nSana\nsanabilný\nsanácia\nsanačný\nsanásky\nsanatórium\nsanatórny\nsaň\nsandálik\nsandál\nsandálový\nSandra\nSandre\nSandru\nSandry\nSandwichove\nsandžak\nsane\nsanforizácia\nsanforizovanie\nsanfranciský\nsangtiagský\nsanguis\nsanguitest\nsangvinickosť\nsangvinicky\nsangvinický\nsangvinička\nsangvinik\nsangvinizmus\nsangvitest\nsanica\nsanita\nSanita\nsanitácia\nsanitačný\nsanitár\nsanitárka\nsanitárny\nsanitársky\nsanitársky\nsanitka\nsanitný\nsanitra\nsanitu\nsanity\nsanjoséjsky\nsánkar\nsánkár\nsánkarka\nsánkarský\nsánkársky\nsánkarstvo\nsánkárstvo\nsánka\nsankcia\nsankcionovania\nsankcionovanie\nsankcionovaním\nsankcionovaniu\nsankcionovaný\nsankcionovať\nsankčne\nsankčno\nsankčný\nsánkhja\nsánkovačka\nsánkovanie\nsánkovať\nsanktifikácia\nsanktissimum\nsanktuárium\nsanktus\nsánky\nSanmarínska\nsanmarínsky\nsánočiek\nsánočky\nsanoval\nsanovala\nsanovali\nsanovalo\nsanovania\nsanovanie\nsanovaním\nsanovaniu\nsanovaný\nsanovať\nsaňový\nsansalvadorský\nsanseviéra\nsanskr\nsanskrit\nsanskritmi\nsanskritský\nsanskrt\nsanskrtmi\nsanštieť\nSanta\nsantal\nsantalmi\nsantalový\nSantiaga\nSantiago\nSantiagom\nsantiagský\nSantiagu\nsantolina\nsanton\nsantonín\nsantos\nSantos\nSantosom\nSantovka\nSantovke\nSantovkou\nSantovku\nSantovky\nsantovský\nsanuje\nsanujeme\nsanujú\nSAP\nsapa\nSapa\nsápa\nSape\nsápe\nsapér\nsapfický\nsapfinizmus\nsapfizmus\nSapfo\nsapientácia\nSapin\nSAPO\nSapom\nsaponát\nsaponátmi\nsaponátový\nsaponifikácia\nsaponínov\nsaponit\nsapróbia\nsaprobický\nsaprobiológia\nsaprobiont\nsaprofág\nsaprofília\nsaprofyt\nsaprogénny\nSapu\nsár\nSár\nsarabanda\nsarabanda\nSaracéni\nsaracénka\nsarafán\nsárach\nSárach\nSarajev\nSarajeva\nSarajeve\nSarajevo\nSarajevom\nsarajevský\nSarajevu\nsáram\nSáram\nsaramča\nsaramče\nsaranča\nsarančami\nsaranče\nsaranči\nsarančí\nsarančiach\nsarančiam\nsarančou\nsaranču\nSaratovská\nSaratovskej\nSaratovskou\nSára\nsára\nsarcína\nsardel\nsardela\nsardelový\nsardiel\nSardínia\nSardínie\nSardínii\nsardinka\nsardinkový\nSardínska\nsardínskej\nsardínskou\nsardínsky\nsardonický\nsardonyx\nsargas\nsárí\nsarin\nsarín\nsarkastickosť\nsarkasticky\nsarkastický\nsarkastik\nsarkazmus\nsarkofág\nsarkofágmi\nsarkofágoch\nsarkofágom\nsarkofágov\nsarkofágu\nsarkofágy\nsarkóm\nsarma\nsarmat\nsarmatský\nsarmatu\nsarong\nsaros\nsárová\nsárovým\nSARS\nSárska\nSársko\nSárskom\nSársku\nSas\nSAS\nSása\nsasanka\nSáse\nSasinkova\nSasinkovo\nSasinkovu\nSaska\nSaskia\nSasku\nSasky\nsaský\nSasom\nSasov\nSásová\nSásovej\nSásovou\nsásovskej\nSásy\nSaša\nSašu\nSAT\nsatanáš\nsatanášsky\nsatanášstvach\nsatanášstvam\nsatanášstvo\nsatan\nsatane\nsatanista\nsatanistický\nsatanistka\nsatanizmus\nsatanova\nsatanove\nsatanové\nsatanovej\nsatanovho\nSatanovou\nsatanovu\nsatansky\nsatanský\nsatanstvo\nsatanu\nsatany\nsatelita\nsatelit\nsatelitmi\nsatelitný\nsateloid\nsatemový\nsatén\nsaténový\nSatchmo\nsatia\nsatie\nsatím\nsatír\nsatira\nsatirickosť\nsatiricky\nsatirický\nsatirička\nsatirička\nsatirik\nsatirizovať\nsatisfakcia\nsato\nsatoria\nsatrapa\nSatrapa\nsatrapia\nsatrapizmus\nSatrapom\nSatrapu\nsaturácia\nsaturačný\nsaturejka\nsaturejku\nsaturnálie\nSaturn\nsaturnizmus\nsaturovania\nsaturovanie\nsaturovaný\nsaturovať\nsať\nsatyr\nsatyriáza\nsatyrský\nsatý\nsauce\nSaudskoarabka\nsaudskoarabský\nsaudský\nSaul\nsauna\nsaunoval\nsaunovala\nsaunovali\nsaunovalo\nsaunovať\nsaunuj\nsaunuje\nsaunujem\nsaunujeme\nsaunuješ\nsaunujete\nsaunujme\nsaunujte\nsaunujú\nsaunujúc\nSaura\nsauria\nsauriáza\nSAV\nSáva\nsaván\nsavana\nsavanový\nSave\nSavo\nSavojských\nSávy\nsavý\nSAX\nsaxofón\nsaxofonista\nsaxofonistka\nsaxofónový\nSázava\nSázave\nSázavou\nSázavu\nSázavy\nsazkár\nSazkári\nsazkárov\nsazka\nsazkovať\nsazkový\nSb\nSB\nSBA\nSBD\nSBS\nsbulimácia\nsC\nSc\nSC\nscampi\nscanner\nscápaný\nscápať\nscaramouche\nscaramuccio\nscat\nscediťäsceliť\nscediť\nscelené\nscelenie\nscelením\nscelených\nscelenými\nscelieť\nsceliť\nsceľovací\nsceľovaní\nsceľovania\nsceľovanie\nsceľovaním\nsceľovať\nscén\nscénach\nscénam\nscenárista\nscenáristicky\nscenáristický\nscenáristka\nscenár\nscenármi\nscéna\nscenéria\nscénický\nscénka\nscénograf\nscénografia\nscénograficky\nscénografický\nscénografka\nscentralizovať\nscenzurovali\nscenzurovalo\nscenzurované\nscenzurujeme\nsceptrum\nscestie\nscestne\nscestný\nscestovaný\nsci\nsciedzať\nscience\nscience-fiction\nscientizmus\nscientológ\nscientológia\nscientologický\nscientologička\nscientologiou\nscilizmus\nscindapsus\nscintigrafia\nscintilácia\nsciofilný\nsciofóbny\nscirocc\nscirocco\nscisia\nscisúra\nscitlivejúci\nscitlivenie\nscitlivieť\nscivený\nscivilizovaní\nscivilizovanie\nscivilizovať\nscivilnené\nscivilnenia\nscivilnenie\nscivilni\nscivilnime\nscivilnite\nscivilniť\nscivilňovania\nscivilňovať\nSCO\nScorpio\nSCP\nscrapera\nscraper\nscraperi\nscreen\nscreening\nscreeningmi\nscreeningoch\nscreeningom\nscreeningov\nscreeningu\nscreeningy\nSCSI\nscudz\nscudzené\nscudzení\nscudzenia\nscudzenie\nscudzeniu\nscudzí\nscudzia\nscudziac\nscudzil\nscudzila\nscudzili\nscudzilo\nscudzím\nscudzíme\nscudzíš\nscudziť\nscudzíte\nscudzme\nscudzoložiť\nscudzovania\nscudzovanie\nscudzovaniu\nscudzovať\nscudzte\nscukornatenie\nscukornatený\nscukornatieť\nscukorňovanie\nscupkať\nscupnúť\nscupotajúc\nscupotať\nscúvanie\nscvaknutý\nscvŕkať\nscvrkávanie\nscvrkávať\nscvrknutie\nscvrknúť\nscvrknutý\nScylla\nsčasti\nsčemeriť\nsčer\nsčerenie\nsčerí\nsčeria\nsčeriac\nsčeril\nsčerila\nsčerili\nsčerilo\nsčerím\nsčeríme\nsčeríš\nsčeriť\nsčeríte\nsčerme\nsčernetý\nsčernieť\nsčerniť\nsčerstva\nsčerte\nsčervenajú\nsčervenala\nsčervenali\nsčervenať\nsčervenenie\nsčervenený\nsčervenieť\nsčervivieť\nsčesať\nsčesávaní\nsčesávanie\nsčesávať\nsčesnúť\nSČH\nsčiastky\nsčista\nSčista\nsčítací\nsčítačka\nsčítačky\nsčítane\nsčítanec\nsčítanie\nsčítanosť\nsčítaný\nsčítateľne\nsčítateľný\nsčítať\nsčítavaní\nsčítavania\nsčítavanie\nsčítavaním\nsčítavať\nsčitovania\nsčitovanie\nsčitovať\nSČK\nsčupiť\nSD\nSDA\nSDK\nSDKÚ\nSDĽ\nSDR\nSDSS\nse\nSe\nSE\nseans\nseáns\nseansa\nSEATO\nSEB\nseba\nsebabičovania\nsebabičovanie\nsebacity\nsebadisciplín\nsebadisciplínach\nsebadisciplínam\nsebadisciplína\nsebadôver\nsebadôverách\nsebadôverám\nsebadôverami\nsebadôvera\nsebahodnotení\nsebahodnotenia\nsebahodnotenie\nsebachvála\nsebachvále\nsebachválou\nsebachvály\nsebairónia\nsebaironicky\nsebaironický\nsebaisto\nsebaistôt\nsebaistotách\nsebaistotám\nsebaistotami\nsebaistota\nsebaistý\nsebaklam\nsebakontrola\nsebakritickosť\nsebakriticky\nsebakritický\nsebakritika\nsebaláska\nsebalásky\nsebaľutovania\nsebaobetavý\nsebaobete\nsebaobetovanie\nsebaobhajoby\nsebaobmedzovanie\nsebaobrán\nsebaobranách\nsebaobranám\nsebaobranami\nsebaobrana\nsebaobranný\nsebaochrán\nsebaochrana\nsebaoslobodenia\nsebaospravedlňovaná\nsebaospravedlňovanie\nsebaovládanie\nsebapitvanie\nsebapoškodení\nsebapoznanie\nsebapoznávanie\nsebapozorovanie\nsebapreceňovanie\nsebarealizácia\nsebareflexia\nsebareklama\nsebaskúmanie\nsebaspytovanie\nsebatrýznenie\nsebatrýzniteľ\nsebatrýznivý\nsebaúct\nsebaúctach\nsebaúctam\nsebaúctami\nsebaúcta\nsebaukájanie\nsebaurčenie\nsebauspokojenie\nsebauspokojovanie\nsebauvedomenia\nsebauvedomenie\nsebauvedomeniu\nsebauvedomovanie\nsebavedome\nsebavedomejšej\nsebavedomejší\nsebavedomejšia\nsebavedomejšie\nsebavedomejšieho\nsebavedomejšiemu\nsebavedomejších\nsebavedomejším\nsebavedomejšími\nsebavedomejšiu\nsebavedomejšom\nsebavedomejšou\nsebavedomie\nsebavedomo\nsebavedomosť\nsebavedomý\nsebavýchov\nsebavýchovách\nsebavýchovám\nsebavýchovami\nsebavýchova\nsebavzdelanie\nsebavzdelávanie\nsebazáchova\nsebazáchran\nsebazáchrana\nsebazapieranie\nsebazaprenie\nsebazapretia\nsebazapretie\nsebazdokonaľovaní\nsebazdokonaľovania\nsebazdokonaľovanie\nsebazničenia\nsebazničenie\nsebazničením\nsebazničeniu\nsebazničujúci\nsebazodpovedne\nsebe\nsebec\nsebeckosť\nsebecky\nsebecký\nsebectvo\nSebedražie\nSebechleboch\nSebechleby\nSebechlieb\nseberovný\nsebestačne\nsebestačnosť\nsebestačný\nsebevoľný\nsebevrah\nsebezáchovná\nseborea\nseborrhagia\nsebou\nSebu\nsec\nsecco\nsecento\nsecernovať\nsecesia\nsecesne\nsecesný\nsecírovať\nsecondhand\nseč\nSečianky\nsečka\nsečkovica\nsečkový\nsečnica\nsečný\nsečovského\nSečovský\nseď\nsedací\nsedačka\nsedačkový\nsedadielko\nsedadielok\nsedadlo\nsedadlový\nsedáky\nsedaňa\nsedan\nsedatív\nsedatívach\nsedatívam\nsedatívne\nsedatívny\nsedatívum\nsedávania\nsedávať\nsedavý\nsed\nsededmstotisíc\nsedembodový\nsedemcentového\nsedemciferné\nsedemcifernú\nsedemciferných\nsedemciferným\nSedemcipá\nsedem\nsedemčlenný\nsedemdecový\nsedemdenný\nsedemdesiat\nsedemdesiatdeväť\nsedemdesiatdeväťtisíc\nsedemdesiatdva\nsedemdesiatdvatisíc\nsedemdesiatina\nsedemdesiatiny\nsedemdesiati\nsedemdesiatjeden\nsedemdesiatjedentisíc\nsedemdesiatka\nsedemdesiatkrát\nsedemdesiatnásobný\nsedemdesiatnička\nsedemdesiatnik\nsedemdesiatosem\nsedemdesiatosemtisíc\nsedemdesiatpäť\nsedemdesiatpäťtisíc\nsedemdesiatročný\nsedemdesiatsedem\nsedemdesiatsedemtisíc\nsedemdesiatšesť\nsedemdesiatšesťtisíc\nsedemdesiatšesťtisícpäťsto\nsedemdesiatštyri\nsedemdesiatštyritisíc\nsedemdesiatštyritisícšesťsto\nsedemdesiattisíc\nsedemdesiattisícový\nsedemdesiattri\nsedemdesiattritisíc\nsedemdesiaty\nsedemdielny\nsedemdňový\nsedemfarebne\nsedemfarebnosť\nsedemfarebný\nsedemhlavý\nsedemhodinový\nsedemhran\nsedemhranný\nsedemhranový\nsedemizbového\nsedemkilometrový\nsedemkilový\nsedemkorunová\nsedemkrát\nsedemmesačný\nsedemmetrový\nsedemmiestny\nsedemmiliónový\nsedemmíľový\nsedemminútový\nsedemmocný\nsedemnásobkoch\nsedemnásobku\nsedemnásobne\nsedemnásobný\nsedemnásobok\nsedemnásť\nsedemnástina\nsedemnásti\nsedemnástka\nsedemnásťkrát\nsedemnásťročný\nsedemnásťtisíc\nsedemnásťtisícdvesto\nsedemnásty\nsedemosminový\nsedempercentný\nsedemposchodový\nsedemramenný\nsedemriadkový\nsedemročnicu\nsedemročný\nsedemsten\nsedemstenný\nsedemstenový\nsedemsto\nsedemstodesať\nsedemstodesaťtisíc\nsedemstodeväť\nsedemstodeväťdesiat\nsedemstodeväťdesiatdeväť\nsedemstodeväťdesiatdeväťtisíc\nsedemstodeväťdesiatdva\nsedemstodeväťdesiatdvatisíc\nsedemstodeväťdesiatjeden\nsedemstodeväťdesiatjedentisíc\nsedemstodeväťdesiatosem\nsedemstodeväťdesiatosemtisíc\nsedemstodeväťdesiatpäť\nsedemstodeväťdesiatpäťtisíc\nsedemstodeväťdesiatsedem\nsedemstodeväťdesiatsedemtisíc\nsedemstodeväťdesiatšesť\nsedemstodeväťdesiatšesťtisíc\nsedemstodeväťdesiatštyri\nsedemstodeväťdesiatštyritisíc\nsedemstodeväťdesiattisíc\nsedemstodeväťdesiattri\nsedemstodeväťdesiattritisíc\nsedemstodevätnásť\nsedemstodevätnásťtisíc\nsedemstodeväťtisíc\nsedemstodva\nsedemstodvadsať\nsedemstodvadsaťdeväť\nsedemstodvadsaťdeväťtisíc\nsedemstodvadsaťdva\nsedemstodvadsaťdvatisíc\nsedemstodvadsaťjeden\nsedemstodvadsaťjedentisíc\nsedemstodvadsaťosem\nsedemstodvadsaťosemtisíc\nsedemstodvadsaťpäť\nsedemstodvadsaťpäťtisíc\nsedemstodvadsaťsedem\nsedemstodvadsaťsedemtisíc\nsedemstodvadsaťšesť\nsedemstodvadsaťšesťtisíc\nsedemstodvadsaťštyri\nsedemstodvadsaťštyritisíc\nsedemstodvadsaťtisíc\nsedemstodvadsaťtri\nsedemstodvadsaťtritisíc\nsedemstodvanásť\nsedemstodvanásťtisíc\nsedemstodvatisíc\nsedemstojedenásť\nsedemstojedenásťtisíc\nsedemstojeden\nsedemstojedentisíc\nsedemstokorunový\nsedemstoosem\nsedemstoosemdesiat\nsedemstoosemdesiatdeväť\nsedemstoosemdesiatdeväťtisíc\nsedemstoosemdesiatdva\nsedemstoosemdesiatdvatisíc\nsedemstoosemdesiatjeden\nsedemstoosemdesiatjedentisíc\nsedemstoosemdesiatosem\nsedemstoosemdesiatosemtisíc\nsedemstoosemdesiatpäť\nsedemstoosemdesiatpäťtisíc\nsedemstoosemdesiatsedem\nsedemstoosemdesiatsedemtisíc\nsedemstoosemdesiatšesť\nsedemstoosemdesiatšesťtisíc\nsedemstoosemdesiatštyri\nsedemstoosemdesiatštyritisíc\nsedemstoosemdesiattisíc\nsedemstoosemdesiattri\nsedemstoosemdesiattritisíc\nsedemstoosemnásť\nsedemstoosemnásťtisíc\nsedemstoosemtisíc\nsedemstopäť\nsedemstopäťdesiat\nsedemstopäťdesiatdeväť\nsedemstopäťdesiatdeväťtisíc\nsedemstopäťdesiatdva\nsedemstopäťdesiatdvatisíc\nsedemstopäťdesiatjeden\nsedemstopäťdesiatjedentisíc\nsedemstopäťdesiatosem\nsedemstopäťdesiatosemtisíc\nsedemstopäťdesiatpäť\nsedemstopäťdesiatpäťtisíc\nsedemstopäťdesiatsedem\nsedemstopäťdesiatsedemtisíc\nsedemstopäťdesiatšesť\nsedemstopäťdesiatšesťtisíc\nsedemstopäťdesiatštyri\nsedemstopäťdesiatštyritisíc\nsedemstopäťdesiattisíc\nsedemstopäťdesiattri\nsedemstopäťdesiattritisíc\nsedemstopätnásť\nsedemstopätnásťtisíc\nsedemstopäťtisíc\nsedemstopová\nsedemstoročný\nsedemstosedem\nsedemstosedemdesiat\nsedemstosedemdesiatdeväť\nsedemstosedemdesiatdeväťtisíc\nsedemstosedemdesiatdva\nsedemstosedemdesiatdvatisíc\nsedemstosedemdesiatjeden\nsedemstosedemdesiatjedentisíc\nsedemstosedemdesiatosem\nsedemstosedemdesiatosemtisíc\nsedemstosedemdesiatpäť\nsedemstosedemdesiatpäťtisíc\nsedemstosedemdesiatsedem\nsedemstosedemdesiatsedemtisíc\nsedemstosedemdesiatšesť\nsedemstosedemdesiatšesťtisíc\nsedemstosedemdesiatštyri\nsedemstosedemdesiatštyritisíc\nsedemstosedemdesiattisíc\nsedemstosedemdesiattri\nsedemstosedemdesiattritisíc\nsedemstosedemnásť\nsedemstosedemnásťtisíc\nsedemstosedemtisíc\nsedemstošesť\nsedemstošesťdesiat\nsedemstošesťdesiatdeväť\nsedemstošesťdesiatdeväťtisíc\nsedemstošesťdesiatdva\nsedemstošesťdesiatdvatisíc\nsedemstošesťdesiatjeden\nsedemstošesťdesiatjedentisíc\nsedemstošesťdesiatosem\nsedemstošesťdesiatosemtisíc\nsedemstošesťdesiatpäť\nsedemstošesťdesiatpäťtisíc\nsedemstošesťdesiatsedem\nsedemstošesťdesiatsedemtisíc\nsedemstošesťdesiatšesť\nsedemstošesťdesiatšesťtisíc\nsedemstošesťdesiatštyri\nsedemstošesťdesiatštyritisíc\nsedemstošesťdesiattisíc\nsedemstošesťdesiattri\nsedemstošesťdesiattritisíc\nsedemstošestnásť\nsedemstošestnásťtisíc\nsedemstošesťtisíc\nsedemstoštrnásť\nsedemstoštrnásťtisíc\nsedemstoštyri\nsedemstoštyridsať\nsedemstoštyridsaťdeväť\nsedemstoštyridsaťdeväťtisíc\nsedemstoštyridsaťdva\nsedemstoštyridsaťdvatisíc\nsedemstoštyridsaťjeden\nsedemstoštyridsaťjedentisíc\nsedemstoštyridsaťosem\nsedemstoštyridsaťosemtisíc\nsedemstoštyridsaťpäť\nsedemstoštyridsaťpäťtisíc\nsedemstoštyridsaťsedem\nsedemstoštyridsaťsedemtisíc\nsedemstoštyridsaťšesť\nsedemstoštyridsaťšesťtisíc\nsedemstoštyridsaťštyri\nsedemstoštyridsaťštyritisíc\nsedemstoštyridsaťtisíc\nsedemstoštyridsaťtri\nsedemstoštyridsaťtritisíc\nsedemstoštyritisíc\nsedemstotisíc\nsedemstotisícový\nsedemstotri\nsedemstotridsať\nsedemstotridsaťdeväť\nsedemstotridsaťdeväťtisíc\nsedemstotridsaťdva\nsedemstotridsaťdvatisíc\nsedemstotridsaťjeden\nsedemstotridsaťjedentisíc\nsedemstotridsaťosem\nsedemstotridsaťosemtisíc\nsedemstotridsaťpäť\nsedemstotridsaťpäťtisíc\nsedemstotridsaťsedem\nsedemstotridsaťsedemtisíc\nsedemstotridsaťšesť\nsedemstotridsaťšesťtisíc\nsedemstotridsaťštyri\nsedemstotridsaťštyritisíc\nsedemstotridsaťtisíc\nsedemstotridsaťtri\nsedemstotridsaťtritisíc\nsedemstotrinásť\nsedemstotrinásťtisíc\nsedemstotritisíc\nsedemstránkový\nsedemstrunový\nsedemstupňový\nsedemstý\nsedemsýtny\nsedemtisíc\nsedemtisícina\nsedemtisícový\nsedemtisícpäťsto\nsedemtisícsedemsto\nsedemtisícsto\nsedemtonový\nsedemtónový\nsedemtýždňové\nsedemtýždňového\nsedemtýždňovej\nsedemvrstvový\nsedenásti\nsedenie\nsediaci\nsediačky\nsedícia\nsedielce\nsedielci\nsedielcom\nsedielec\nsedielko\nsedielok\nsediem\nsedieť\nsedília\nsedimentácia\nsedimentačný\nsedimentárna\nsedimentárne\nsedimentárnej\nsedimentárny\nsedimentárnych\nsediment\nsedimentmi\nsedimentovali\nsedimentovať\nsedimentujeme\nsedimetria\nsedisko\nsedisvakancia\nsedkať\nsedlácky\nsedľač\nsedlár\nsedlársky\nsedlársky\nsedlárstvach\nsedlárstvam\nsedlárstvo\nsedlať\nsedlávať\nsedliacky\nsedliactvach\nsedliactvam\nsedliactvo\nsedliačenia\nsedliačik\nsedliačina\nsedliačina\nsedliačisk\nsedliačiská\nsedliačiskách\nsedliačiskám\nsedliačisko\nsedliačisku\nsedliačiť\nsedliačka\nsedliačka\nsedliak\nSedliakovej\nSedlická\nSedlickej\nSedliská\nSedliskám\nsedlo\nsedlovo\nsedlový\nsedma\nSedmerovec\nsedmičkár\nsedmička\nsedmičkový\nsedmina\nsedminka\nsedminový\nsedmohradskom\nsedmokráska\nsedmorako\nsedmoraký\nsedmoro\nsedmoslivkár\nsedmoslivkársky\nsedmoslivkársky\nsedmospáč\nsedmospáčka\nsedmospáčska\nsedmospáčske\nsedmospáčskeho\nsedmospáčskej\nsedmospáčskemu\nsedmospáčski\nsedmospáčskom\nsedmospáčskou\nsedmospáčsku\nsedmospáčsky\nsedmospáčskych\nsedmospáčskym\nsedmospáčskymi\nSegedín\nSegedína\nSegedíne\nsegedínsky\nsegedínsky\nsegmentácia\nsegmentálny\nsegment\nsegmentmi\nsegmentovanie\nsegmentovaný\nsegmentovať\nsegmentovo\nsegmentový\nsegmentuje\nsegmentujú\nsegno\nsegregácia\nsegregačne\nsegregačný\nsegregovaný\nsegregovať\nSeina\nSeine\nseinsky\nSeiny\nseitan\nseizmicita\nSeizmicite\nseizmicitu\nseizmicity\nseizmickosť\nseizmicky\nseizmický\nseizmika\nseizmograf\nseizmografický\nseizmogram\nseizmológ\nseizmológia\nseizmologický\nseizmologička\nseizmologička\nseizmonastia\nsejací\nsejačka\nsejačkový\nsejb\nsejbách\nsejbám\nsejbami\nsejba\nsejbový\nsejf\nsejfový\nSejkov\nSejm\nSejmu\nsejp\nsekacie\nsekacím\nsekáč\nsekačka\nsekáčovi\nsekáčsky\nsekaná\nsekane\nsekania\nsekanie\nsekaním\nsekanina\nSekaninu\nsekano\nsekans\nsekanta\nsekantný\nsekantoida\nsekaný\nsekať\nsekávať\nsek\nsekcia\nsekcionálne\nsekciový\nsekčný\nsekera\nsekerečka\nsekerka\nsekerôčka\nsekerôčka\nsekier\nsekierka\nsekírovania\nsekírovanie\nsekírovať\nseknutí\nseknutie\nseknutím\nseknúť\nseknutým\nsekonda\nsekrécia\nsekrečný\nsekretár\nsekretáre\nsekretariát\nsekretariátmi\nsekretárka\nsekretársky\nsekretársky\nsekretáru\nsekrét\nsekrétmi\nsekrétový\nsektár\nsektárka\nsektárka\nsektársky\nsektársky\nsektárstvach\nsektárstvam\nsektárstvo\nsekta\nsekt\nsektmi\nsektor\nsektorovo\nsektorový\nsekularizácia\nsekularizačný\nsekularizmus\nsekularizované\nsekularizovať\nsekularizuje\nsekulárny\nSekule\nSekuliach\nsekundán\nsekundánka\nsekundánsky\nsekundánsky\nsekundant\nsekundantský\nsekundár\nsekundárka\nsekundárne\nsekundárnosť\nsekundárny\nsekunda\nsekundička\nsekundogenitúra\nsekundovania\nsekundovať\nsekundový\nSekurit\nsekurita\nsekuritného\nSekurity\nsekvenciach\nsekvencia\nsekvenčne\nsekvenčný\nsekvester\nsekvestrácia\nsekvestrovať\nsekvojach\nsekvojam\nsekvoja\nsekvojí\nsekvojový\nseladón\nseladóni\nseladónovi\nseladónsky\nseladónstvach\nseladónstvam\nseladónstvo\nselanka\nselankovitý\nselankový\nSelce\nSelciach\nSELČ\nselčianskej\nseldžuk\nSelecký\nselekcia\nselekčne\nselekčnosť\nselekčný\nselektivita\nselektivite\nselektívnosť\nselektívny\nselektor\nselektoval\nselektovali\nselektovania\nselektovanie\nselektovaním\nselektovaný\nselektovať\nselektuje\nselektujeme\nSelektujete\nselektujú\nselén\nselenid\nselenit\nselenografia\nselenológia\nselénový\nselfaktor\nselfmademan\nselfmademana\nselfmademanov\nSeliec\nselo\nseloštátny\nselsyn\nsem\nSém\nséma\nsemä\nsemafor\nsemaforový\nsémantém\nsémanticky\nsémantický\nsémantička\nsémantička\nsémantika\nsémantik\nsémantizácia\nsematiologický\nsemaziológ\nsémaziológia\nsemaziológia\nsemaziologický\nsemaziologický\nsemaziologička\nsemaziologička\nsemeiografia\nsemen\nsemenáčik\nsemenáč\nsemenačka\nsemenár\nsemenárka\nsemenársky\nsemenársky\nsemenárstvach\nsemenárstvam\nsemenárstvo\nsemencový\nsemenec\nsemenísk\nsemenisko\nsemeníšť\nsemenišťa\nsemenišťami\nsemenište\nsemeništi\nsemenišťom\nsemenišťu\nsemeniť\nsemenník\nsemenníkový\nsemenný\nsemeno\nsemenotok\nsemenovo\nsemenovod\nsemenový\nSemerov\nSemerova\nSemerove\nSemerovo\nsemest\nsemester\nsemestrálny\nSemeteš\nsemiačko\nsemiaridný\nsemien\nsemienko\nsemienkový\nsemienok\nsemifinále\nsemifinalista\nsemifinalistka\nsemifinálový\nsemigrafika\nsemihumidný\nSemíl\nSemiloch\nsemilská\nsemilského\nsemilskej\nsemilským\nSemily\nseminarista\nseminarita\nseminár\nseminármi\nseminárny\nsémiológia\nsemiologický\nsemiotický\nsemiotička\nsemiotička\nsémiotika\nsemiotika\nsemiotika\nsemiotik\nsemióza\nsemiše\nsemiši\nsemiš\nsemiška\nsemišmi\nsemišoch\nsemišom\nsemišov\nsemišový\nsemišu\nsemit\nsemitizmus\nsemitológia\nsemitský\nsemivokál\nsemká\nsemtex\nsemtexový\nSeňa\nSenár\nsenát\nsenátmi\nsenátny\nsenátor\nsenátorka\nsenátormi\nsenátorove\nsenátorovho\nsenátorský\nsenátorstvo\nsenážach\nsenážam\nsenáž\nsenážoval\nsenážovala\nsenážovali\nsenážovalo\nsenážovať\nsenážuj\nsenážuje\nsenážujem\nsenážujeme\nsenážuješ\nsenážujete\nsenážujme\nsenážujte\nsenážujú\nsenážujúc\nSenčan\nSenčanka\nsendvič\nsendvičovač\nsendvičový\nSenec\nsenecký\nSenega\nSenegal\nSenegalčan\nSenegalčanka\nSenegalka\nsenegalsky\nsenegalský\nsenescencia\nSeni\nSení\nSenica\nSenice\nSenici\nsenického\nsenickom\nsenickým\nSenický\nSenicou\nSenicu\nsenilita\nsenilne\nsenilnosť\nsenilný\nseniloch\nseniorálny\nseniorát\nseniorátmi\nseniorátny\nsenior\nseniorita\nseniorka\nseniormi\nseniorský\nseniorstvo\nsenium\nSenna\nSenne\nSennheiser\nsenník\nsenníkový\nSennu\nsenný\nsen\nseno\nseňor\nseňora\nseňorita\nSeňou\nsentencia\nsentiment\nsentimentalita\nsentimentalizmom\nsentimentalizmus\nsentimentálne\nsentimentálnosť\nsentimentálny\nsentimente\nsentimentom\nsentimentov\nsentimentu\nsentimenty\nsentinel\nSentinel\nSeňu\nsenussi\nSeny\nsenza\nsenzácia\nsenzáciechtivosti\nsenzáciechtivý\nsenzačne\nsenzačnosť\nsenzačný\nsenzál\nsenzibilácia\nsenzibil\nsenzibilita\nsenzibilizácia\nsenzibilne\nsenzibilnosť\nsenzibilný\nsenzitivita\nsenzitivitu\nsenzitívne\nsenzitívnosť\nsenzitívny\nsenzor\nsenzoricky\nsenzorický\nsenzorium\nsenzorový\nsenzorový\nsenzualista\nsenzualistický\nsenzualistka\nsenzualistka\nsenzualita\nsenzualizmus\nsenzuálny\nsep\nsepalum\nseparácia\nseparačný\nseparandum\nseparát\nseparatista\nseparatisticky\nseparatistický\nseparatistka\nseparatizmus\nseparátmi\nseparátne\nseparátny\nseparator\nseparátor\nseparátormi\nseparátorov\nseparátoru\nseparátory\nseparé\nseparovane\nseparovanie\nseparovaný\nseparovať\nsépia\nsépiový\nsepkať\nsepkavo\nsepkom\nsepsa\nsepse\nsept\nseptember\nseptembrovo\nseptembrový\nseptet\nsepteto\nsepticky\nseptický\nseptik\nseptika\nseptikémia\nseptikoch\nseptikov\nseptiku\nseptiky\nseptilión\nseptím\nseptimán\nseptimánka\nseptimánka\nseptimánsky\nseptimánsky\nseptima\nseptimový\nseptum\nsepulkrálny\nsequens\nsér\nseraf\nSerafin\nSerafina\nserafín\nSerafinom\nserafínsky\nsérach\nserail\nserak\nséram\nSereď\nSerede\nSeredi\nSereďou\nseredská\nseredské\nseredskej\nseredskí\nseredskú\nseredských\nseredským\nSeredský\nserenád\nserenádach\nserenádam\nserenáda\nserenádový\nserendipita\nserenita\nserežán\nSergej\nsériach\nseriál\nseriálmi\nseriálny\nseriálovo\nseriálový\nséria\nserikultúra\nserioso\nsériove\nsériovo\nsériovosť\nsériový\nseriózne\nserióznosť\nseriózny\nsermon\nsérodiagnostika\nsérológ\nsérológia\nSérologické\nsérologického\nsérologicky\nséropozitívny\nséroterapia\nsérotonín\nsérový\nseróza\nserózny\nseróznym\nserpent\nserpentárium\nserpentín\nserpentínach\nserpentínam\nserpentína\nserpentinit\nserpentínový\nsersám\nsérum\nServác\nserval\nserv\nserve\nservera\nserver\nserveri\nserverový\nservilita\nservilite\nservilitou\nservilitu\nservility\nservilne\nservilnosť\nservilný\nservírka\nservírovací\nservírovanie\nservírovaný\nservírovať\nservis\nservisne\nservisno\nservisný\nservisový\nservítka\nservítkový\nservítok\nservitut\nservomechanizmom\nservomotor\nservomotormi\nservomotoroch\nservomotorom\nservomotorov\nservomotory\nservosystémov\nservovať\nservus\nservuste\nserž\nseržant\nseržantka\nseržantka\nseržantský\nSES\nsesilný\nsestár\nsestercius\nsesternica\nsesternička\nsestersky\nsesterský\nsesterstvo\nsestier\nsestína\nsestra\nsestrička\nsestrin\nsestrine\nsestrinej\nsestrinho\nsestrino\nsestriť\nSEŠ\nseta\nset\nsetbal\nsetball\nsetballmi\nsetbalmi\nsetbol\nSetechov\nseter\nsetermi\nseterovi\nsetery\nsetový\nsetrovi\nsettecento\nsettlement\nsetup\nsev\nseverák\nseveran\nseverania\nSeverania\nseveranka\nsever\nSeverín\nseverita\nseverne\nseverne\nseverno\nseverný\nseveroafr\nseveroafrický\nseveroamer\nseveroamerický\nseveroanglický\nseveroatlantický\nseveročeský\nseveroeuróp\nseveroeurópsky\nseveroeurópsky\nseverofranc\nseverojužný\nseveronem\nseveroslovan\nseveroslovenský\nseverotal\nseverotalianska\nseverotalianske\nseverotalianskeho\nseverotalianskej\nseverotalianskemu\nseverotalianskom\nseverotaliansku\nseverotaliansky\nseverotalianskych\nseverotalianskym\nseverových\nseverovýchod\nseverovýchodne\nseverovýchodný\nseverozáp\nseverozápad\nseverozápadne\nseverozápadný\nseverský\nSevilla\nSevillčan\nSevillčanka\nsevillský\nsévreským\nsexagon\nsexappeal\nsexappealmi\nsex\nsexbomba\nsexepíl\nsexepílmi\nsexi\nsexizmus\nsexoval\nsexovala\nsexovali\nsexovalo\nsexovať\nsexshop\nsext\nsextách\nsextám\nsextami\nsextán\nsextánka\nsextánska\nsextánske\nsextánskeho\nsextánskej\nsextánskemu\nsextánski\nsextánskom\nsextánskou\nsextánsku\nsextánsky\nsextánskych\nsextánskym\nsextánskymi\nsextant\nSextant\nSextantu\nsexta\nsextet\nsexteto\nsextetový\nsextil\nsextilión\nsextový\nsexturista\nsexualita\nsexuálne\nsexuálnosť\nsexuálny\nsexuj\nsexuje\nsexujem\nsexujeme\nsexuješ\nsexujete\nsexujme\nsexujte\nsexujú\nsexujúc\nsexuológ\nsexuológia\nsexuologický\nsexuologička\nsexus\nSeychel\nSeychelách\nSeychelám\nSeychelami\nSeychely\nsezam\nsezamový\nsezón\nsezónach\nsezónam\nsezóna\nsezónnosť\nsezónny\nSF\nsfackať\nsfakli\nsfaklí\nsfaklia\nsfakliac\nsfaklil\nsfaklila\nsfaklili\nsfaklilo\nsfaklím\nsfaklime\nsfaklíme\nsfaklíš\nsfakliť\nsfaklite\nsfaklíte\nsfalerit\nsfalšovane\nsfalšovania\nsfalšovanie\nsfalšovaním\nsfalšovaniu\nsfalšovaný\nsfalšovať\nsfanatizovaný\nsfanatizovať\nsfáraní\nsfáraním\nsfárať\nsfarbenie\nsfarbený\nsfarbi\nsfarbime\nsfarbite\nsfarbiť\nsfarbovať\nsfénoidný\nsfér\nsférach\nsféram\nsféra\nsfercovať\nsféricky\nsférický\nsféroid\nsféroidický\nsféroidný\nsférológia\nsférometer\nsfetišizovali\nsfialovieť\nsfilmovaná\nsfilmovaného\nsfilmovanej\nsfilmovaní\nsfilmovať\nsfíng\nsfinga\nsfingomyelíny\nsfinkter\nsfinx\nsfliaskať\nSFM\nSFOR\nsformalizoval\nsformalizovala\nsformalizovali\nsformalizovalo\nsformalizovanie\nsformalizovať\nsformalizuj\nsformalizuje\nsformalizujem\nsformalizujeme\nsformalizuješ\nsformalizujete\nsformalizujme\nsformalizujte\nsformalizujú\nsformalizujúc\nsformátovaný\nsformovanie\nsformovaný\nsformovať\nsformulovania\nsformulovanie\nsformulovaním\nsformulovaniu\nsformulovaný\nsformulovať\nSforzando\nsforzato\nSforzáto\nsfotografovať\nsfragistika\nsfrázovanie\nsfrázovať\nSFRJ\nsfrknúť\nsfúkanie\nsfúkať\nsfúkavať\nsfúknuť\nsfúknutý\nsfukovať\nsfumato\nsfunkčni\nsfunkční\nsfunkčnia\nsfunkčniac\nsfunkčnil\nsfunkčnila\nsfunkčnili\nsfunkčnilo\nsfunkčním\nsfunkčnime\nsfunkčníme\nsfunkčníš\nsfunkčniť\nsfunkčnite\nsfunkčníte\nsfunkčňoval\nsfunkčňovala\nsfunkčňovali\nsfunkčňovalo\nsfunkčňovať\nsfunkčňuj\nsfunkčňuje\nsfunkčňujem\nsfunkčňujeme\nsfunkčňuješ\nsfunkčňujete\nsfunkčňujme\nsfunkčňujte\nsfunkčňujú\nsfunkčňujúc\nsfušoval\nsfušovala\nsfušovali\nsfušovalo\nsfušovaná\nsfušované\nsfušovaného\nsfušovanej\nsfušovanie\nsfušovanú\nsfušovaných\nsfušovať\nsfušuj\nsfušuje\nsfušujem\nsfušujeme\nsfušuješ\nsfušujete\nsfušujme\nsfušujte\nsfušujú\nsfušujúc\nsfygmológia\nSFZ\nsg\nSG\nsgrafít\nsgrafito\nsgrafitový\nSH\nshag\nshaker\nShaker\nSharp\nsherry\nshetland\nshift\nshilin\nshilingi\nSHMÚ\nshocking\nshop\nshow\nshowroom\nschabrať\nschabre\nschabrem\nschabreme\nschabreš\nschabrete\nschabri\nschabrime\nschabrite\nschabrú\nschabrúc\nschádzaní\nschádzanie\nschádzať\nschádzavať\nschápať\nschátra\nschátrajú\nschátral\nschátrala\nschátrali\nschátralo\nschátralý\nschátranie\nschátranosti\nschátraný\nschátrať\nschém\nschémach\nschémam\nschematickosť\nschematicky\nschematický\nschematičnosť\nschematizácia\nschematizmus\nschéma\nscherz\nscherzo\nschiziem\nschizmatický\nschizmatik\nschizma\nschizofrénia\nschizofrenicky\nschizofrenický\nschizofrenička\nschizofrenik\nschizogónia\nschizogrénia\nschizoidný\nschizotymný\nschladenia\nschladenie\nschladeniu\nschladený\nschladiť\nschladnúť\nschládzať\nschladzovania\nschladzovanie\nschladzovaním\nschladzovať\nschlpatieť\nschlpené\nschlpiť\nschmatizmus\nschmatnúť\nschňapnúť\nschnúce\nschnúci\nschnúcich\nschnutie\nschnúť\nschod\nschodený\nschodíček\nschodíčka\nschodíčkami\nschodíčkoch\nschodíčkom\nschodíčkov\nschodíčku\nschodíčky\nschodík\nschodísk\nschodisko\nschodiskový\nschodíšť\nschodišťa\nschodišťami\nschodište\nschodišti\nschodišťom\nschodišťový\nschodišťu\nschodiť\nschodkový\nschodníc\nschodnicového\nschodnosť\nschodný\nschodok\nschodovite\nschodovito\nschodovitý\nschodový\nschôdzach\nschôdzam\nschôdza\nschôdzí\nschôdzka\nschôdzkovať\nschôdzkový\nschôdzok\nschôdzovania\nschôdzovanie\nschôdzovať\nschôdzový\nscholasticky\nscholastický\nscholastika\nscholastik\nschopiť\nschopne\nschopnejší\nschopnosťN\nschopný\nschovanie\nschovaný\nschovať\nschovávačka\nschovávanie\nschovávanka\nschovávať\nschradli\nschradne\nschradnúť\nschráni\nschrániť\nschránka\nschránkový\nschrapč\nschrapčať\nschrapči\nschrapčime\nschrapčite\nschrapiť\nschrapnúť\nschrapšť\nschrapšťať\nschrapšťme\nschrapšťte\nschrastavený\nschrúm\nschrúmať\nschrumkať\nschrúmme\nschrúmte\nschrupnúť\nschudnutie\nschudnúť\nschudnutý\nschudobnelá\nschudobnelí\nschudobnenia\nSchudobnenie\nschudobnením\nschudobneniu\nschudobnený\nschudobnieť\nschuj\nschuje\nschujem\nschujeme\nschuješ\nschujete\nschujme\nschujte\nschujú\nschujúc\nschúlene\nschúlenie\nschúlený\nschúliť\nschumlať\nSchuster\nSchustera\nSchusterom\nSchusterovi\nschuti\nschvacovať\nSchválene\nschválenie\nschváleno\nschválený\nschválený\nschváliť\nschválne\nschválnosť\nschválny\nschvaľovací\nschvaľovanie\nschvaľovaný\nschvaľovateľa\nschvaľovatelia\nschvaľovateľom\nschvaľovateľov\nschvaľovať\nschvátené\nschvátiť\nschvatnutie\nschvatnúť\nschvíľu\nschybiť\nschýliť\nschyľovať\nschystať\nschytať\nschytávať\nschytiť\nsi\nsiahajúci\nsiahaní\nsiahania\nsiahanie\nsiahaním\nsiahať\nsiaha\nsiahnuci\nsiahnutí\nsiahnutia\nsiahnutie\nsiahnutím\nsiahnutiu\nsiahnuť\nsiahodlho\nsiahodlhý\nsiahovica\nsiahový\nsiakať\nsializmus\nsialorea\nSiam\nsiamské\nsiatba\nsiatbe\nsiatby\nsiatie\nsiatina\nsiať\nsiaty\nsibilanta\nSibíra\nSibíre\nSibírii\nSibír\nSibírom\nsibírsky\nsibírsky\nSibíru\nsiblicita\nsibyla\nSibylou\nSibylu\nSibyly\nsic\nsíce\nSicílčan\nSicília\nsicílsky\nsicílsky\nSida\nSidár\nSiddhárta\nSide\nsidecar\nsídel\nsídelný\nsiderálny\nsiderit\nsideritmi\nsideritový\nsiderofóbia\nsideropénia\nsiderotypia\nsideróza\nsidi\nsídl\nsídlach\nsídlam\nsídlení\nsídliaca\nsídliaceho\nsídliaci\nsídlisko\nsídliskový\nsídlišť\nsídlišťan\nsídlišťania\nSídlišťania\nsídlišťanka\nsídlištnej\nsídlištných\nsídliť\nsídlme\nsídlo\nsídlte\nSidónia\nSidu\nsiedmacký\nsiedmačka\nsiedmak\nsiedmi\nsiedmykrát\nsiedmy\nsiekt\nsielnickej\nsielnickom\nsiemens\nsien\nsieňach\nsieňam\nsiena\nsiena\nsience\nsienci\nsiencom\nsieň\nsienec\nsienko\nsienok\nsierra\nSierra\nsierraleonský\nSierre\nSierru\nSierry\nsiesta\nsieťach\nsieťam\nsieť\nsietiv\nsietivo\nsieťka\nsieťkovaný\nsieťkovať\nsieťkový\nsietnic\nsietnica\nsietnicový\nsieťovania\nsieťovanie\nsieťovaný\nsieťovať\nsieťovina\nsieťovinový\nsieťovite\nsieťovito\nsieťovitý\nsieťovka\nsieťovo\nsieťový\nsifón\nsifónový\nsigint\nsigma\nsigmatický\nsigmatizmus\nsigme\nSigmou\nSigmu\nSigmy\nsign\nsignácia\nsignáciou\nsignáciu\nsignál\nsignáli\nsignalista\nsignalisti\nsignalistov\nsignalistovi\nsignalistu\nsignalizácia\nsignalizačne\nsignalizačný\nsignalizátor\nsignalizovanie\nsignalizovaný\nsignalizovať\nsignálmi\nsignálny\nsignálový\nsignatár\nsignatársky\nsignatársky\nsignátor\nsignatúr\nsignatúrach\nsignatúram\nsignatúra\nSigne\nsignet\nSignet\nsignifiant\nsignifikácia\nsignifikantný\nsignifikátor\nsignora\nsignore\nsignoria\nsignorina\nsignovania\nsignovanie\nsignovaný\nsignovať\nsignu\nsignum\nSignum\nsigterm\nsiheľ\nsihľami\nsihle\nsihlenie\nsihlený\nsihli\nsihlí\nsihliach\nsihliak\nsihliam\nsihlina\nsihlina\nsihlinka\nsihľou\nsihoť\nsihoťami\nsihote\nsihoti\nSihoti\nsihotí\nsihotiach\nsihotiam\nsihoťou\nsicherheitsdienst\nsika\nSika\nsíkanie\nsikatív\nsíkať\nSikenica\nSikenice\nSikenička\nSikeničke\nSikha\nSikhovia\nSiku\nsil\nsiláckosť\nsilácky\nsiláctvach\nsiláctvam\nsiláctvo\nsiláčka\nsilák\nSilan\nsilán\nsila\nsilážach\nsilážam\nsiláž\nsilážny\nsilážovania\nsilážovanie\nsilážovať\nsilážový\nsilcar\nsilencium\nsilene\nsilenie\nsilenosť\nsilentium\nsilený\nsilesiakum\nsilica\nsilícia\nsilicid\nsilicifikácia\nsilicit\nsilícium\nSilická\nsilicový\nSilika\nsilikát\nsilikátmi\nsilikátový\nsilikatóza\nsilikón\nsilikónový\nsilikou\nsilikóz\nsilikózach\nsilikózam\nsilikóza\nsiliky\nsilimanit\nsiliť\nSilk\nSilka\nSilku\nSilky\nsilnejší\nsilnejúca\nsilnejúce\nsilnejúceho\nsilnejúcej\nsilnejúcemu\nsilnejúci\nsilnejúcich\nsilnejúcim\nsilnejúcimi\nsilnejúcom\nsilnejúcou\nsilnejúcu\nsilne\nsilnieť\nsilno\nsilnoprúd\nsilnoprúdar\nsilnoprúdarka\nsilnoprúdarský\nsilnoprúdom\nsilnoprúdový\nsilnoprúdu\nsilný\nsiločiara\nsilo\nsílom\nsilomer\nsilomermi\nsilomerový\nsilomery\nsilon\nsilón\nsilonka\nsilonový\nsilónový\nSiloš\nSiloša\nSilošom\nSilošovi\nsilovo\nsilový\nsilskin\nsilt\nsiltovec\nsílu\nsiluet\nsilueta\nsiluetový\nsilúr\nSilva\nsilván\nsilvánsky\nsilvánsky\nsilvester\nSilvester\nSilvestre\nsilvestroval\nsilvestrovala\nsilvestrovali\nsilvestrovalo\nsilvestrovať\nsilvestrovský\nSilvestru\nsilvestruj\nsilvestruje\nsilvestrujem\nsilvestrujeme\nsilvestruješ\nsilvestrujete\nsilvestrujme\nsilvestrujte\nsilvestrujú\nsilvestrujúc\nSilvia\nSilviom\nSilviovi\nSilvu\nsíly\nsima\nSima\nsimax\nSime\nsimenský\nsimentálsky\nsimentálsky\nSimeon\nSimeona\nSimeonom\nSimeonov\nSimeonova\nSimeonovom\nsimering\nsimile\nsimili\nsimilizér\nsimka\nsimka\nSIMM\nSimon\nSimôn\nSimona\nsimonia\nSimonka\nSimonku\nSimonom\nSimonov\nSimonovej\nSimonovho\nSimonovi\nSimple\nsimplex\nSimplex\nsimplexný\nSimplexom\nsimplicitný\nsimplifikácia\nsimplifikácie\nsimplifikovať\nSimu\nsimulácia\nsimulačný\nsimulant\nsimulantka\nsimulantsky\nsimulantský\nsimulantstvo\nSimulator\nsimulátor\nsimulátorový\nsimulovania\nsimulovanie\nsimulovaním\nsimulovaný\nsimulovať\nsimultánka\nsimultánne\nsimultánnosť\nsimultánny\nsimulujúce\nsin\nSinaj\nSinaja\nSinajom\nSinajský\nsinantrop\nsinantropný\nsinantropus\nsinapizmus\nsinastý\nsinavieť\nsinavo\nsinavosť\nsinavý\nSindh\nsine\nsinekúr\nsinekúrach\nsinekúram\nsinekúra\nsinekúra\nsinel\nSinela\nsing\nSingapur\nSingapure\nSingapurom\nsingapurský\nSingapuru\nsingel\nsingl\nsingla\nsinglami\nsingle\nSingle\nsingli\nsingloch\nsinglom\nsinglov\nsinglový\nsinglu\nsingulár\nsingulare\nsingulári\nsingularista\nsingularita\nsingularizmus\nsingulármi\nsingulárnosť\nsingulárny\nsingulárny\nsingulároch\nsingulárom\nsingulárov\nsingulárový\nsinguláru\nsinguláry\nsingulatívnosť\nsingulatívum\nsinhal\nsiníc\nsinice\nsinicu\nsinie\nsinieť\nsinistrotropný\nsinka\nsinnfeinizmus\nSino\nsinokve\nsinokvet\nsinológ\nsinologčika\nsinológia\nsinologický\nsinologička\nsinologička\nSínom\nsinter\nSínu\nsinus\nsínus\nsinusitída\nsinusitis\nsinusoíd\nsínusoíd\nsinusoida\nsínusoida\nSinusoidná\nSínusoidná\nsínusový\nsiný\nSion\nsionista\nsionisticky\nsionistický\nsionistka\nsionizmus\nsionský\nSionu\nsip\nsípavým\nsipieť\nsipivo\nsipivý\nsipká\nsipľavo\nsipľavý\nsiporex\nsiporexový\nsipotajúc\nsipotať\nsipot\nsipotmi\nsir\nsira\nsírach\nsíram\nsírami\nsíran\nsíranovej\nsíranovo\nsíranovým\nsíra\nsirén\nsirénach\nsirénam\nsiréna\nsírenie\nsírený\nSiri\nsiriáza\nsiričitan\nsiričitý\nsíriť\nSírius\nSirk\nSirku\nSirky\nsírnatosť\nsírnatosti\nsírnatý\nSirník\nsírnik\nsírnikový\nsírny\nSiro\nsirota\nsirotinec\nsirôtka\nsirotský\nsírouhlík\nsírouhlíkový\nsirovi\nsírovo\nsírovodík\nsírovodíkový\nsírový\nsirtaki\nsirup\nsirupový\nsirý\nSIS\nsisal\nsisalmi\nsisalový\nsistovania\nsistovať\nsíš\nSIT\nsít\nsitár\nsitárka\nSitárovo\nsitársky\nsitárstvach\nsitárstvam\nsitárstvo\nsitatunga\nSitia\nsitiek\nsítie\nsitím\nsitina\nsitina\nsitinový\nsitko\nSitno\nsitofóbia\nsito\nsitosterol\nsitový\nsituáciach\nsituácia\nsituačne\nsituačnosť\nsituačný\nsituovania\nsituovanie\nsituovaním\nsituovaný\nsituovať\nsity\nsiva\nsivák\nSiváka\nsivasto\nsivastý\nsiven\nsivieť\nsivkasto\nsivkastý\nsivkavo\nsivkavý\nsivko\nsivky\nsivo\nsivobelasý\nsivobiely\nsivočierny\nsivomodrý\nsivoňa\nsivone\nsivoň\nsivoňmi\nsivoňoch\nsivoňom\nsivoňov\nsivoňovi\nsivooký\nsivosť\nsivovlasý\nsivozelený\nsivý\nSixta\nSixtínskej\nSixtínsku\nSizyfos\nsizyfovsky\nsizyfovský\nSJ\nsk\nSk\nSK\nskabies\nskabióza\nskackanie\nskackať\nskackavo\nskackavý\nskackom\nskaď\nskade\nskadekoľvek\nskadene\nskadenoha\nskaderuka\nskaderukaskadenoha\nskadesi\nskadeže\nskadiaľ\nskadiaľkoľvek\nskadiaľsi\nskadiaľže\nskadila\nskafander\nskákajúca\nskákajúce\nskákajúci\nskákajúco\nskákajúcu\nskákanie\nSkákaním\nskákaniu\nskákaný\nskákať\nskákava\nskákavo\nskákavý\nskál\nskalár\nskalárneho\nskalárnu\nSkalárny\nskala\nskald\nskalene\nskalenie\nskalený\nskalica\nskalický\nskaličený\nskaličiť\nskálie\nskalísk\nskalisko\nskalistý\nskaliť\nskalka\nskalkové\nskalnatý\nskalnica\nskalnička\nskalný\nskalolezec\nskalolezecký\nskalolezectvo\nskalolezkyňa\nskalopevne\nskalopevnosť\nskalopevný\nskalp\nskalpel\nskalpely\nskalpovací\nskalpoval\nskalpovala\nskalpovali\nskalpovalo\nskalpovaní\nskalpovať\nskalpuj\nskalpuje\nskalpujem\nskalpujeme\nskalpuješ\nskalpujete\nskalpujme\nskalpujte\nskalpujú\nskalpujúc\nSkalský\nskamarátiť\nskamenelina\nskamenelý\nskamenenia\nskamenenina\nskamenený\nskamenieť\nskamenievanie\nskampol\nskampolo\nskandium\nskandovania\nskandovanie\nskandovaním\nskandovaný\nskandovať\nskanie\nskántrený\nskántriť\nskanzen\nskanzenový\nskapané\nskapanej\nskapanina\nskapaných\nskapať\nskapatý\nskapínať\nskapitalizoval\nskapitalizovala\nskapitalizovali\nskapitalizovaná\nskapitalizovaní\nskapitalizovania\nskapitalizovanie\nskapitalizovaním\nskapitalizovať\nskapitalizuje\nskapitalizujú\nskapolit\nskarabeus\nSkarabeus\nskárať\nskarhať\nskarifikácia\nskarikovanou\nskarikovaným\nSkarikovaný\nskarikovať\nskarlatína\nskarn\nSkároš\nskartácia\nskartačný\nskartovanie\nskartovaný\nskartovať\nskášať\nskat\nSKAT\nskatalogizovať\nskate\nskateboard\nskateboardový\nskating\nskatofág\nskatofágia\nskatofilný\nskatológia\nskatovaný\nskaut\nskauting\nskautingmi\nskautingoch\nskautingom\nskautingov\nskautingu\nskautingy\nskautka\nskautský\nskáz\nskaza\nskazene\nskazenie\nskazenosť\nskazený\nskaziteľných\nskaziť\nskazonosne\nskazonosnosť\nskazonosný\nskeč\nskečový\nskeet\nskejt\nskejtbord\nskejtbordista\nskejtbordistka\nskejtbordový\nskejtmi\nskelet\nskeleton\nskeletový\nskener\nskenerový\nskenovací\nskenovanie\nskenovaný\nskenovať\nskeps\nskepsách\nskepsám\nskepsami\nskepsa\nskepsí\nskepticizmus\nskepticky\nskeptický\nskeptička\nskeptik\nSkerešov\nSkerešovo\nskerovať\nsket\nski\nskiaď\nskialpinista\nskialpinistka\nskialpinizmus\nskiaskopia\nskibob\nskibobový\nskibusa\nskibus\nskicár\nskicármi\nskica\nskicovaný\nskicovať\nskiel\nskielcach\nskielcam\nskielce\nskielec\nskielko\nskielok\nskifár\nskif\nskiffle\nskijéring\nSkin\nskín\nskinefekt\nskinhead\nskinheade\nskinheadu\nskinheady\nskinhed\nskinhede\nskinhedský\nskinhedu\nskinhedy\nskip\nSkip\nskipark\nskiping\nSkipom\nskipping\nSKJ\nSKK\nskladací\nskladači\nskladačka\nskladačmi\nskladajúci\nskladanie\nskladanka\nskladaný\nskladateľ\nskladateľka\nskladateľský\nskladať\nsklad\nskladba\nskladbička\nskladbový\nskladísk\nskladisko\nskladiskový\nskladíšť\nskladišťa\nskladišťami\nskladište\nskladišti\nskladištný\nskladišťom\nskladišťu\nskládka\nskládkoval\nskládkovala\nskládkovali\nskládkovalo\nskládkovať\nskládkový\nskládkuj\nskládkuje\nskládkujem\nskládkujeme\nskládkuješ\nskládkujete\nskládkujme\nskládkujte\nskládkujú\nskládkujúc\nskladne\nskladné\nskladnícky\nskladníčka\nskladník\nskladnosť\nskladný\nskladobný\nskladovací\nskladovane\nskladovanie\nskladovaný\nskladovať\nskladovo\nskladový\nsklala\nsklam\nsklamane\nsklamanie\nsklamaný\nsklamať\nsklamáva\nsklamávajú\nsklamávaní\nsklamme\nsklamte\nskláňajúci\nskláňanie\nskláňať\nskláňa\nSklaní\nsklápací\nsklápaní\nsklápanie\nsklápaním\nsklápať\nsklapnutie\nsklapnúť\nsklapnutý\nsklár\nskláreň\nsklárka\nsklárňach\nsklárňam\nsklársky\nsklársky\nsklárstvach\nsklárstvam\nsklárstvo\nsklať\nsklátiť\nskľavený\nskľavieť\nskĺbenia\nskĺbenie\nskĺbením\nskĺbeniu\nskĺbenosť\nskĺbený\nskĺbiť\nskĺbuje\nsklebetónový\nsklenár\nsklenárka\nsklenárova\nSklenárovej\nSklenárovho\nSklenárovo\nsklenársky\nsklenársky\nsklenárstvach\nsklenárstvam\nsklenárstvo\nskleneno\nsklenený\nskleník\nskleníkový\nSklenka\nSklenku\nsklenky\nsklenný\nskleno\nsklený\nsklepa\nsklepanie\nsklepaný\nsklepár\nsklepať\nsklepávalo\nsklepávať\nsklep\nsklepenie\nsklepený\nskléra\nsklereida\nsklerektáza\nsklerektómia\nsklerenchým\nskleritída\nsklerodermia\nskleróm\nsklerometer\nskleroproteín\nsklerotickosť\nskleroticky\nsklerotický\nsklerotička\nsklerotik\nsklerotinóza\nsklerotizácia\nskleróz\nsklerózach\nsklerózam\nskleróza\nskleslejšej\nskleslejší\nskleslejšia\nskleslejšie\nskleslejšieho\nskleslejšiemu\nskleslejších\nskleslejším\nskleslejšími\nskleslejšiu\nskleslejšom\nskleslejšou\nskleslo\nskleslosť\nskleslý\nsklesnuto\nsklesnutosť\nsklesnúť\nsklesnutý\nsklíčko\nsklincúvaný\nsklobetón\nsklobetónový\nsklobetónový\nsklolaminát\nsklolaminátmi\nsklolaminátový\nsklo\nsklon\nsklonenie\nsklonený\nskloniť\nsklonný\nsklonok\nsklonomera\nsklonomer\nskloňovanie\nskloňovaný\nskloňovať\nsklonové\nsklonovo\nsklopec\nsklopenie\nsklopený\nsklopiť\nsklopka\nsklopný\nsklovca\nsklovina\nsklovite\nsklovito\nsklovitosť\nsklovitý\nskľúčene\nskľúčenie\nskľúčeno\nskľúčenosť\nskľúčený\nskľúčiť\nskľučovadiel\nskľučovadla\nskľučovadlá\nskľučovadle\nskľučovadlo\nskľučovadlu\nskľučovaný\nskľučovať\nskľučujúca\nskľučujúce\nskľučujúceho\nskľučujúcej\nskľučujúci\nskľučujúcich\nskľučujúcim\nskľučujúcimi\nskľučujúco\nskĺza\nskĺzam\nskĺzame\nskĺzaš\nskĺzate\nskĺzať\nskĺzava\nskĺzavajú\nskĺzavala\nskĺzavali\nskĺzavanie\nskĺzavať\nsklz\nskĺznic\nskĺznica\nsklznice\nskĺznuté\nskĺznutie\nskĺznuť\nsklzný\nsklzový\nskmásať\nskmasnúť\nskmášu\nskmášuc\nskmotriť\nskoba\nskobka\nskobŕľať\nskočení\nskočenia\nskočenie\nskočiť\nskočka\nskočka\nskočmo\nskočný\nSKOI\nskokan\nskokanka\nskokanský\nskokany\nskok\nskokmo\nskoknúť\nskokovite\nskokovito\nskokovitý\nskokovo\nskokový\nskoksovať\nSkol\nskolaboval\nskolabovala\nskolabovali\nskolabovalo\nskolabovať\nskolabuj\nskolabuje\nskolabujem\nskolabujeme\nskolabuješ\nskolabujete\nskolabujme\nskolabujte\nskolabujú\nskolabujúc\nskolaudovania\nskolaudovanie\nskolaudovaním\nskolaudovaný\nskolaudovať\nskole\nskolecit\nskolektivizovaných\nskolektivizovať\nskolemizácia\nskolemovou\nskolenosť\nskolióza\nskoliózou\nskoliózu\nskoliť\nskombinovania\nskombinovanie\nskombinovaním\nskombinovaný\nskombinovať\nskomentovať\nskomercializovaný\nskomercializovať\nskomercionalizovaní\nskomercionalizovania\nSkomercionalizovanie\nskomercionalizovanom\nskomercionalizovať\nskomolenia\nskomolenina\nskomolený\nskomoliť\nskompilovaný\nskompilovať\nskompilujte\nskompletizovania\nskompletizovanie\nskompletizovaním\nskompletizovaniu\nskompletizovaný\nskompletizovať\nskompletoval\nskompletovala\nskompletovali\nskompletovanie\nskompletovaný\nskompletovať\nskompletujú\nskomplikovania\nskomplikovanie\nskomplikovaniu\nskomplikovaný\nskomplikovať\nskomponovaná\nskomponovanie\nskomponovať\nskompostovali\nskompostovalo\nskomprimovaný\nskomprimovať\nskompromitovanie\nskompromitovaný\nskompromitovať\nskonalý\nskonanie\nskonať\nskonávať\nskon\nskoncentrovanie\nskoncentrovaním\nskoncentrovaniu\nskoncentrovaný\nskoncentrovať\nskoncipovania\nskoncipovaný\nskoncipovať\nskoncovaní\nskoncovanie\nskoncovať\nskončenie\nskončeno\nskončený\nskonči\nskončime\nSkončime\nskončite\nskončiť\nskondenzovaný\nskondenzovať\nskonfiškovania\nskonfiškovanie\nskonfiškovaný\nskonfiškovať\nskonfrontovali\nskonfrontovať\nskonfundovať\nskonkretizovaná\nskonkretizované\nskonkretizovaní\nskonkretizovanie\nskonkretizovaných\nskonkretizovať\nskonkrétnení\nskonkrétniť\nskonsolidovania\nskonsolidovanie\nskonsolidovaním\nskonsolidovaný\nskonsolidovať\nskonštatoval\nskonštatovala\nskonštatovali\nskonštatovalo\nskonštatovaná\nskonštatované\nskonštatovaní\nskonštatovania\nSkonštatovanie\nskonštatovaním\nskonštatovať\nskonštatuj\nskonštatuje\nskonštatujem\nskonštatujeme\nskonštatuješ\nskonštatujete\nskonštatujme\nskonštatujte\nskonštatujú\nskonštatujúc\nskonštruovanie\nskonštruovaný\nskonštruovať\nskont\nskonta\nskontá\nskontaktovať\nskonto\nskontom\nskontrácia\nskontro\nskontrolovania\nskontrolovanie\nskontrolovaný\nskontrolovať\nskontrovali\nskonvertované\nskonvertovať\nskonvertuj\nskonvertuje\nskonzumovania\nskonzumovaný\nskonzumovať\nskoordinovania\nskoordinovanie\nskoordinovaním\nskoordinovaný\nskoordinovať\nskopať\nskopávať\nskopírovanie\nskopírovaný\nskopírovať\nskopiť\nskopjanský\nSkopje\nskopnieť\nskopol\nskopolamín\nskopŕcať\nskopŕcnuť\nskopský\nskôr\nskorbut\nskordatúra\nskóre\nskôr\nskorigovanie\nskorigovaný\nskorigovať\nskormucovať\nskormútene\nskormúteno\nskormútenosť\nskormútený\nskormútil\nskormútila\nskormútiť\nskôr\nskôrnatenie\nskôrnatený\nskôrnatieť\nskoro\nskorobarokový\nskorocel\nskorocelový\nskorocely\nskorodit\nskorodovaný\nskorodovať\nskorogotický\nskoro\nskororománsky\nskórovania\nskórovaný\nskórovať\nskorší\nskorumpovania\nskorumpovanie\nskorumpovaný\nskorumpovať\nskoryl\nskorý\nskosenie\nskosený\nskosiť\nskostnatelá\nskostnatele\nskostnatelom\nskostnatelosť\nskostnatelosťou\nskostnatelou\nskostnatene\nskostnatenie\nskostnatenosť\nskostnatený\nskostnatieť\nskotím\nskotiť\nskotofóbia\nskotúľať\nsková\nskovať\nskr\nskracovacie\nskracovacích\nskracovanie\nskracovaný\nskracovať\nskrachovanci\nskrachovancoch\nskrachovancov\nskrachovane\nskrachovania\nskrachovanie\nskrachovaním\nskrachovaniu\nskrachovaný\nskrachovať\nskraja\nskrajok\nskrajovanie\nskrajovaný\nskrajovať\nskrakovanie\nskrakovaný\nskrakovať\nskrambler\nskrápa\nskrápaj\nskrápajme\nskrápajte\nskrápajú\nskrápajúc\nskrápam\nskrápame\nskrápaný\nskrápaš\nskrápate\nskrápať\nskrapera\nskraper\nskraperi\nskrásnieť\nskrásniť\nskrášlená\nskrášlenej\nskrášlení\nskrášlenia\nskrášlenie\nskrášlením\nskrášleniu\nskrášliť\nskrášľovanie\nskrášľovaný\nskrášľovať\nskrat\nskrátene\nskrátenie\nskrátenina\nskrátený\nskrátiť\nskrátka\nskratka\nskratkovací\nskratkovacia\nskratkovacie\nskratkovite\nskratkovito\nskratkovitosť\nskratkovitý\nskratkový\nskratmi\nskratoval\nskratovala\nskratovali\nskratovalo\nskratovať\nskratovo\nskratový\nskratuj\nskratuje\nskratujem\nskratujeme\nskratuješ\nskratujete\nskratujme\nskratujte\nskratujú\nskratujúc\nskrb\nskrbáľať\nskrbáliť\nskrbenie\nskrbiť\nskrbte\nskrček\nskrčene\nskrčenec\nskrčený\nskrčiť\nskrčkovi\nskrčmo\nskrčok\nskrčok\nskrčovať\nskreč\nskrečok\nskrehnuto\nskrehnutosť\nskrehnúť\nskrehnutý\nskrejpera\nskrejper\nskrejperi\nskrejperový\nskrepenieť\nskrepírovať\nskresania\nskresanie\nskresaním\nskresaniu\nskresaný\nskresať\nskresáva\nskresávajú\nskresávanie\nskresávať\nskreslene\nskreslenie\nskreslenosť\nskreslený\nskresliť\nskresľovania\nskresľovanie\nskresľovaním\nskresľovaniu\nskresľovaný\nskresľovať\nskresľujúci\nskribent\nskrič\nskričať\nskríknuť\nskriňa\nskriní\nskríning\nskríningmi\nskríningoch\nskríningom\nskríningov\nskríningový\nskríningu\nskríningy\nskrinka\nskrinkový\nskriňový\nskrípt\nskriptá\nskript\nskriptka\nskriptmi\nskriptórium\nskriptovací\nskriptum\nskritizovaný\nskritizovať\nskrivene\nskrivenie\nskrivenina\nskrivený\nskriviť\nskrivodlivo\nskrivodlivosť\nskrivodlivý\nskrížene\nskríženia\nskríženie\nSkrížením\nskríženiu\nskrížený\nskrížiť\nskrkvať\nskrkvi\nskrkvime\nskrkvite\nskŕmene\nskŕmenie\nskŕmiť\nskrmované\nskrmovaní\nskrmovania\nskrmovanie\nskrmovaním\nskrmovať\nskrofulóza\nskrochmeliť\nskrojiť\nskrojok\nskrolovať\nskromne\nskromnosť\nskromnučko\nskromnučký\nskromnulinko\nskromnulinký\nskromnunko\nskromnunký\nskromnuško\nskromnušký\nskromný\nskromušký\nskropenom\nskropiť\nskrotenia\nskrotenie\nskrotením\nskroteniu\nskrotený\nskrotiteľný\nskrotiť\nskrotnúť\nskrotný\nskrotum\nSkrovný\nskŕsa\nskrsnúť\nskrúcania\nskrúcanie\nskrúcať\nskrucovať\nskrudliť\nskrumážach\nskrumážam\nskrumáž\nskrúšene\nskrúšenosť\nskrúšený\nskrušiť\nskrušovať\nskrutátor\nskrutátorka\nskrutátormi\nskrútene\nskrútenia\nskrútenie\nskrútený\nskrutínium\nskrútiť\nSkrutkáreň\nSkrutkárňach\nSkrutkárne\nSkrutkárni\nskrutkární\nSkrutkárňou\nskrutka\nskrutkovač\nskrutkovaní\nskrutkovanie\nskrutkovaných\nskrutkovať\nskrutkovica\nskrutkovicovo\nskrutkovite\nskrutkovito\nskrutkovitý\nskrutkovo\nskrutkový\nskrútla\nskrútli\nskrutlo\nskrútlo\nskrútne\nskrútnem\nskrútneme\nskrútneš\nskrútnete\nskrútni\nskrútnime\nskrútnite\nskrútnu\nskrútnuc\nskrútnuť\nskrútol\nskruž\nskrvácaný\nskrvavej\nskrvavejme\nskrvavejte\nskrvavejú\nskrvavejúc\nskrvavený\nskrvavie\nskrvaviem\nskrvavieme\nskrvavieš\nskrvaviete\nskrvavieť\nskrvaviť\nskrýš\nskrýšach\nskrýšam\nskrýša\nskryt\nskryte\nskrytia\nskrytie\nskrytiu\nskryto\nskrytosť\nskryť\nskryty\nskrytý\nskrývací\nskrývačka\nskrývajúca\nskrývajúcim\nskrývane\nskrývanie\nskrývaný\nskrývať\nskrývka\nskrývkový\nskrz\nskrze\nSkubín\nskuč\nskučanieN\nskučať\nskučeravený\nskučeravieť\nskučiaci\nskudliť\nskúdoli\nskúdolim\nskúdolime\nskúdoliš\nskúdolite\nskúdoliť\nskuhrák\nskuhrať\nskuhravec\nskuhravý\nskuhre\nskuhrem\nskuhreme\nskuhreš\nskuhrete\nskuhri\nskuhrime\nskuhriť\nskuhrite\nskuhroň\nskuhroš\nskuhroška\nskuhrošský\nskuhrú\nskuhrúc\nskujni\nskujnime\nskujnite\nskujniť\nskujňovaní\nskujňovanie\nskujňovať\nskulér\nSkulina\nskulptor\nskulptúr\nskulptúrach\nskulpturálny\nskulptúram\nskulptúra\nskulptúrny\nskulptúrový\nskultivované\nskultivovaní\nskultivovanie\nskultivovaniu\nskultivovaných\nskultivovať\nskultúrnení\nskultúrnenia\nskultúrnenie\nskultúrnením\nskultúrneniu\nskultúrnenom\nskultúrniť\nskultúrňovaná\nskultúrňovaní\nskultúrňovania\nskultúrňovanie\nskultúrňovaním\nskultúrňovať\nskúmadlo\nskúmajúci\nskúmanie\nskúmaný\nskúmateľ\nskúmateľka\nskúmateľný\nskúmateľský\nskúmať\nskúmavka\nskúmavkový\nskúmavo\nskúmavý\nskundoliť\nskunk\nskunkovi\nskup\nskupaňa\nskupáň\nskupaní\nskupáni\nskupánsky\nskupánsky\nskupánstvach\nskupánstvam\nskupánstvo\nskúpať\nskupči\nskúpejšej\nskúpejší\nskúpejšia\nskúpejšie\nskúpejšieho\nskúpejšiemu\nskúpejších\nskúpejším\nskúpejšími\nskúpejšiu\nskúpejšom\nskúpejšou\nskúpene\nskúpenia\nskúpenie\nskúpením\nskúpeniu\nskupenský\nskupenstvo\nskúpený\nskupia\nskupinár\nskupinárka\nskupinársky\nskupinársky\nskupinárstvo\nskupina\nskupinkári\nskupinkársky\nskupinkárstvach\nskupinkárstvam\nskupinkárstvo\nskupinka\nskupinovo\nskupinový\nskúpiť\nskúpo\nskúposť\nskupovači\nskupovačoch\nskupovačov\nskupovanie\nskupovať\nskupovať\nskupština\nskupúva\nskupúvaj\nskupúvajme\nskupúvajte\nskupúvajú\nskupúvajúc\nskupúval\nskupúvala\nskupúvali\nskupúvalo\nskupúvam\nskupúvame\nskupúvania\nskupúvanie\nskupúvaním\nskupúvaš\nskupúvať\nskupúvate\nskúpy\nskúr\nskúri\nskúriť\nskúrte\nskurvenec\nskurvený\nskurviť\nskus\nskúsene\nskúseno\nskúsenosť\nskúsenostne\nskúsenostný\nskúsený\nskúsiť\nskusmejšej\nskusmejší\nskusmejšia\nskusmejšie\nskusmejšieho\nskusmejšiemu\nskusmejších\nskusmejším\nskusmejšími\nskusmejšiu\nskusmejšom\nskusmejšou\nskusmi\nskusmo\nskusmý\nskusoch\nskusom\nskusov\nskusovať\nskusy\nskúšač\nskúšači\nskúšačka\nskúšajúceho\nskúšajúcemu\nskúšajúci\nskúšajúcich\nskúšajúcim\nskúšajúcou\nskúšanie\nskúšaný\nskúšať\nskúška\nskúškový\nskúšobňa\nskúšobníctvach\nskúšobníctvam\nskúšobníctvo\nskúšobno\nskúšobný\nskúter\nskutkovo\nskutkový\nskuto\nskutočne\nskutočnejší\nskutočneN\nskutočno\nskutočnosť\nskutočnostného\nskutočný\nskutok\nskútrový\nskutterudit\nskuť\nskutý\nskúvať\nskuvíňať\nskvacnúť\nskvačiť\nskvadra\nskvalitnel\nskvalitnela\nskvalitnenie\nskvalitnený\nskvalitni\nskvalitnime\nskvalitnite\nskvalitniť\nskvalitňované\nskvalitňovaní\nskvalitňovania\nskvalitňovanie\nskvalitňovaním\nskvalitňovaniu\nskvalitňovať\nskvapalnenia\nskvapalnenie\nskvapalneniu\nskvapalnený\nskvapalni\nskvapalnime\nskvapalnite\nskvapalniť\nskvapalňovania\nskvapalňovanie\nskvapalňovať\nskvapalňujúci\nskváriť\nskvasený\nskvasiť\nskvele\nskvelejší\nskvelo\nskvelosť\nskvelý\nskvetým\nskvieť\nskvitať\nskvosť\nskvost\nskvostmi\nskvostnejší\nskvostne\nskvostný\nSkýcov\nSkýcova\nSkýcove\nskydať\nskydnúť\nskydoň\nskyeteriér\nskynožiť\nskyp\nskypel\nskypieť\nskyprenej\nskyprieť\nskypriť\nskyprovať\nskyslieť\nskysliť\nskysnúť\nskysnutý\nskýš\nskýšený\nskýšiť\nskytnúť\nskýv\nSkýva\nskyva\nskývražník\nskývražný\nsl\nslabbing\nslabičnosť\nslabičný\nslabika\nslabikotvornosť\nslabikotvorný\nslabikovať\nslabikový\nslabina\nslabing\nslabingera\nslabinger\nslabingeri\nslabingermi\nslabingeroch\nslabingerom\nslabingerov\nslabingerovi\nslabingerstvo\nslabinka\nslabinový\nslábne\nslabnúcimi\nslabnutí\nslabnutia\nslabnutie\nslabnutím\nslabnutiu\nslabnúť\nslabo\nslabobelasý\nslabočervene\nslabočervený\nslaboducho\nslaboduchosti\nslaboduchý\nslabofialový\nslaboch\nslabomodrý\nslabomyseľne\nslabomyseľnosť\nslabomyseľný\nslaboprúd\nslaboprúdar\nslaboprúdarka\nslaboprúdarský\nslaboprúde\nslaboprúdový\nslaboprúdu\nslaboružový\nslabosť\nslabôstka\nslaboška\nslaboška\nslabošsky\nslabošský\nslabošstvo\nslabota\nslabozelený\nslabozrakosť\nslabozraký\nslabožltý\nslabší\nslabučko\nslabučký\nslabulinko\nslabulinký\nslabunko\nslabunký\nslabuško\nslabušký\nslabý\nsláčik\nsláčikový\nslada\nsladár\nsladára\nsladári\nsladárom\nsladárov\nsladárska\nsladárske\nsladárskeho\nsladárskej\nsladárskom\nsladárskou\nsladársku\nsladársky\nsladárskych\nslad\nsladenie\nsladený\nsladič\nsladiča\nsladidlo\nsladiny\nsladiť\nsládka\nsládkami\nsladkasto\nsladkastý\nsladkavo\nsladkavý\nsladko\nsladkobôľne\nsladkobôľny\nsladkokyslo\nsladkokyslý\nsládkom\nsladkosť\nsladkoústy\nsládkov\nSládkova\nSládkovej\nSládkovi\nsládkovia\nSládkovičova\nSládkovičove\nSládkovičovo\nSládkovičovom\nsládkovičovského\nsládkovičovskej\nsládkovičovskom\nsládkovičovských\nSládkovičovský\nSládkovičovu\nSládkovo\nsladkovodný\nSládkovu\nSládkových\nSládkovým\nsladký\nsladnúť\nsládok\nsladostný\nsladovaného\nsladovaní\nsladovanie\nsladovňa\nsladovní\nsladovnícky\nsladovníctvach\nsladovníctvam\nsladovníctvo\nsladovník\nsladovo\nsladový\nsladší\nsladučko\nsladučký\nsladulinko\nsladulinký\nsladunko\nsladunký\nsladuško\nsladušký\nslajd\nslajkosláva\nslák\nslalomár\nslalomárka\nslalomársky\nslalom\nslalomový\nslam\nslám\nslama\nslamenáčik\nslamenák\nslamene\nslamenica\nslamenožltý\nslamený\nslamienka\nslamka\nslamník\nslamôčka\nslamôčka\nslamovo\nslamovožltý\nslamový\nSlanca\nslancami\nslance\nslanci\nSlancom\nSlancová\nSlančík\nSlančíka\nSlanec\nslang\nslangizmus\nslangmi\nslangoch\nslangom\nslangov\nslangovo\nslangovosť\nslangový\nslangu\nslangy\nSlanická\nSlanickej\nslanička\nSlaničku\nSlaním\nslanina\nslaninka\nslaninový\nslano\nslanosť\nslanšej\nslanší\nslanšia\nslanšie\nslanšieho\nslanšiemu\nslanších\nslanším\nslanšími\nslanšiu\nslanšom\nslanšou\nslaný\nslapový\nSlaská\nSlaskej\nslastiplný\nslasť\nslastne\nslastný\nslastný\nslať\nslatina\nSlatina\nslatinka\nslatinný\nslatinský\nslatsný\nSlava\nslávach\nSlávach\nslávam\nSlávam\nslávami\nsláva\nSláva\nSlavca\nSlavec\nslávená\nslávenie\nslávenom\nsláviacich\nslavianofil\nslavianofili\nslavianofilský\nslavianofilstvo\nsláviček\nslávičí\nslávička\nslávičkami\nslávičkoch\nslávičkom\nslávičkov\nslávičkovi\nslávičky\nSláviek\nSlavik\nslávik\nSlavikom\nslavikum\nSlavín\nSlavína\nSlavíne\nSlavínom\nslavista\nslavisticky\nslavistický\nslavistika\nslavistka\nsláviť\nSlávka\nSlavkovský\nslávky\nslávnejší\nslávne\nSlavnica\nSlavnici\nslávnosť\nslávnostne\nslávnostnosť\nslávnostný\nslávny\nslávobrán\nslávobránach\nslávobránam\nslávobrána\nslávomam\nSlavomírach\nSlavomíram\nSlavomíra\nSlavomír\nSlavomírovom\nSlavónia\nSlavónie\nSlavónii\nSlavónska\nSlavónsko\nSlavónskom\nSlavónsku\nslavónsky\nslávospev\nSlavoška\nslavošovského\nslavošovskej\nslavošovskom\nSlavošovský\nslávožiara\nslavský\nSlavy\nslávybažne\nslávybažnosť\nslávybažný\nSľažany\nslečien\nslečinka\nslečna\nsled\nslediečstvo\nsleď\nsledne\nsledný\nsledovací\nsledovač\nsledovane\nsledovanie\nsledovanosť\nsledovaný\nsledovateľ\nsledovateľnosť\nsledovateľný\nsledovať\nsleďový\nsledujúci\nslepačí\nslepačinec\nslepaňa\nslepáň\nslepaní\nslepáni\nslepec\nslepecký\nslepectvo\nslepiačky\nSlepica\nslepice\nslepiť\nslepnúť\nslepo\nsleposť\nslepota\nslepota\nslepúch\nslepúchy\nslepý\nslez\nslezina\nslezinný\nslezinový\nslezový\nslf\nSliač\nSliača\nSliače\nSliači\nSliačoch\nSliačom\nSliačov\nSliačska\nsliačske\nsliačskeho\nsliačskej\nsliačskemu\nsliačskom\nSliačskou\nsliačsku\nsliačsky\nsliačskych\nsliačskym\nsliačskymi\nslide\nsliedenie\nsliedič\nsliediče\nsliedičský\nsliedičstvo\nsliediť\nsliedivo\nsliedivý\nslieňa\nslieň\nslieňmi\nslieňoch\nslieňom\nslieňov\nslieňovca\nslieňový\nslieňu\nsliepka\nsliepňať\nsliepňavý\nsliepočka\nsliezanský\nsliezska\nsliezske\nSliezskeho\nsliezskej\nsliezski\nSliezsko\nsliezskom\nsliezskou\nsliezsku\nsliezsky\nsliezskych\nSliezskym\nsliezskymi\nslimačí\nslimáčik\nslimák\nSlimáku\nslín\nslinavý\nslina\nslinenie\nsling\nsliniť\nslinka\nslinkový\nslinný\nslinok\nslinový\nslinový\nslintačka\nslintajúci\nslintať\nslintavka\nslintavkou\nslintavku\nslintavky\nslintoš\nslintošom\nslinuté\nslinutého\nslinutej\nslinutých\nslip\nsliper\nslipmi\nslipoch\nslipom\nslipov\nslipper\nslipy\nslív\nslivák\nsliva\nsliva\nsliviekpiat\nslivka\nslivkovomodrý\nslivkový\nslivočka\nslivôčka\nslivovica\nslivovička\nslivovička\nsliza\nsliz\nslizko\nslizkosť\nslizký\nsliznatý\nsliznica\nsliznicový\nslizničný\nslizný\nslizovito\nslizovitosť\nslizovitý\nslíža\nslíže\nslíži\nslížik\nslíž\nslížmi\nslížoch\nslížom\nSlížom\nslížov\nslížový\nslížu\nSLK\nsĺnc\nslnce\nslncový\nslnečnica\nslnečnicovo\nslnečnicový\nslnečník\nslnečno\nslnečnosť\nslnečný\nslnení\nslnenie\nslniečko\nslniečkový\nslniť\nsĺnk\nslnko\nslnkový\nslnný\nslnovrat\nslnovratmi\nslnovratový\nslobodáreň\nslobodárenský\nslobodárňach\nslobodárňam\nsloboda\nslobodeného\nslobodienka\nslobodna\nslobodne\nslobodne\nslobodnícky\nslobodník\nSlobodníkovej\nSlobodníkovou\nSlobodníkovu\nslobodno\nslobodný\nslobodomilovnosť\nslobodomurár\nslobodomurársky\nslobodomurársky\nslobodomurárstvach\nslobodomurárstvam\nslobodomurárstvo\nslobodomyseľne\nslobodomyseľnosť\nslobodomyseľný\nslobodymilovnosť\nslobodymilovný\nslogan\nsloganový\nsloha\nsloh\nslohoval\nslohovala\nslohovali\nslohovalo\nslohovať\nslohove\nslohovo\nslohový\nslohuj\nslohuje\nslohujem\nslohujeme\nslohuješ\nslohujete\nslohujme\nslohujte\nslohujú\nslohujúc\nsloj\nslojový\nslon\nsloni\nslonica\nsloníča\nsloní\nsloník\nsloníkovi\nsloňom\nsloňou\nslonovi\nslonovina\nslonovinový\nslonový\nslopania\nslopanica\nslopať\nslot\nslôt\nslota\nslote\nslotmi\nSlotom\nslotov\nslotu\nsloty\nslovaciká\nslovacikum\nSlovácka\nSlovácke\nSlováckeho\nSlováckej\nSlovácko\nslováckom\nSlovácku\nSlovácky\nSlováckych\nSlovač\nSlovače\nSlováčisko\nSlováčka\nslovak\nSlovák\nSlovakia\nslovakista\nslovakistický\nslovakistika\nslovakistka\nslovakizácia\nslovakizačný\nslovakizmus\nslovakizovaného\nslovakizovanej\nslovakizovaným\nSlovakizovaný\nslovakizovať\nslovakofil\nslovakofili\nslovakofilský\nslovakofilstvo\nSlovákovu\nslovan\nSlovana\nslovančina\nSlovane\nSlovania\nslovanisti\nslovanofil\nslovanofilovia\nslovanofilský\nslovanofilstvo\nSlovanom\nslovanská\nslovanské\nslovanského\nslovanskej\nslovanskejšej\nslovanskejší\nslovanskejšia\nslovanskejšie\nslovanskejšieho\nslovanskejšiemu\nslovanskejších\nslovanskejším\nslovanskejšími\nslovanskejšiu\nslovanskejšom\nslovanskejšou\nslovanskému\nslovanskí\nslovansko\nslovanskom\nslovansko-neslovanský\nslovanskosťami\nslovanskosti\nslovanskostí\nslovanskostiach\nslovanskostiam\nslovanskosťou\nslovanskou\nslovanskú\nslovanský\nslovanských\nslovanským\nslovanskými\nSlovanu\nSlovany\nslovce\nsloven\nSloven\nslovenči\nslovenčín\nslovenčinách\nslovenčinám\nslovenčinami\nslovenčinár\nslovenčinárka\nslovenčinársky\nslovenčinársky\nslovenčina\nslovenčiť\nsloveniká\nslovenikum\nslovenistika\nSlovenka\nslovenska\nslovenskách\nslovenskám\nslovenskami\nslovenske\nslovensko\nslovensko-český\nslovenskoľupčianskej\nSlovensko\nslovensko-ruský\nslovenskosť\nslovensku\nslovensky\nslovenský\nslovesnosť\nslovesný\nsloveso\nSlovianskej\nslovičkár\nslovičkárenie\nslovičkáriť\nslovíčkariť\nslovičkárka\nslovičkársky\nslovičkársky\nslovičkárstvo\nslovíčko\nsloviec\nsloviek\nslovies\nslovin\nSlovinčan\nSlovinčianka\nslovinčiansky\nslovinčín\nslovinčinách\nslovinčinám\nslovinčinami\nslovinčina\nSlovinec\nSlovinka\nSlovinky\nSlovinsko\nslovinsky\nslovinský\nslovko\nslovnaftára\nslovnaftári\nslovnaftármi\nSlovnaftárom\nslovnaftárov\nslovne\nslovníček\nslovníčka\nslovníčkami\nslovníčkoch\nslovníčkom\nslovníčkov\nslovníčku\nslovníčky\nslovnikár\nslovnikárka\nslovnikársky\nslovnikársky\nslovnikárstvach\nslovnikárstvam\nslovnikárstvo\nslovník\nslovníkový\nslovno\nslovnodruhovo\nslovnodruhový\nslovný\nslovom\nslovo\nslovosled\nslovosledný\nslovosledový\nslovotvorne\nslovotvorný\nslovutný\nslow\nSLSP\nsľub\nsľúbenie\nsľúbený\nsľúbiť\nsľubne\nsľubný\nsľubovania\nsľubovanie\nsľubovaním\nsľubovaniu\nsľubovaný\nsľubovať\nsľubový\nsľubujúci\nslučí\nslučkár\nslučka\nslučkovací\nslučkovaní\nslučkovať\nslučkový\nsľuda\nsľudový\nsluha\nsluhovať\nsluhove\nsluhovka\nsluhovsky\nsluhovský\nsluhovstvo\nslúchadielko\nslúchadielok\nslúchadlo\nslúchadlový\nsluchátko\nslucha\nsluch\nslúchnuť\nsluchovo\nsluchový\nSĽUK\nsľukár\nsľukárka\nsľukárska\nsľukárske\nsľukárskeho\nsľukárskej\nsľukárskemu\nsľukárski\nsľukárskom\nsľukárskou\nsľukársku\nsľukársky\nsľukárskych\nsľukárskym\nsľukárskymi\nsluka\nslum\nslump\nsluš\nslušať\nsluši\nslušiť\nslušivo\nslušivý\nslušne\nslušnosť\nslušný\nsluž\nslužba\nslužbička\nslužbičkovanie\nslužbičkovať\nslužbukonajúci\nslúžení\nslúženia\nslúženie\nslúžiaci\nslúžievať\nslúžiť\nslúžka\nslužné\nslúžny\nslužob\nslužobne\nslužobnica\nslužobnícky\nslužobníctvach\nslužobníctvam\nslužobníctvo\nslužobníčka\nslužobník\nslužobňu\nslužobný\nslúžtička\nslýchať\nslych\nsĺz\nslzách\nslzám\nslzavo\nslzavý\nslza\nslzení\nslzenie\nslziaci\nslzička\nslzievať\nslziť\nslzný\nslzotvorný\nsmäd\nsmädiť\nsmädlo\nsmädno\nsmädnota\nsmädnúť\nsmädný\nsmalt\nsmaltmi\nsmaltovacej\nsmaltovacie\nsmaltovania\nsmaltovanie\nsmaltovaním\nsmaltovaniu\nsmaltovaný\nsmaltovať\nsmaltovňa\nsmaltovní\nsmaltovo\nsmaltový\nsmaragd\nsmaragdovozelený\nsmaragdový\nsmaženie\nsmažený\nsmažiť\nsme\nSME\nsmečiar\nsmečiarka\nsmečiarsky\nsmečiarsky\nsmeč\nsmečovať\nsmedomite\nsmejko\nsmejo\nsmejúce\nsmejúcej\nsmejúcich\nsmele\nsmelec\nsmelo\nsmelosť\nsmelší\nsmelý\nsmená\nsmena\nsmení\nsmenie\nsmennosť\nsmenný\nsmenom\nsmenovni\nsmenový\nsmer\nsmerne\nsmernica\nsmerník\nsmerný\nsmerodajne\nsmerodajnosť\nsmerodajný\nsmerovací\nsmerovane\nsmerovanieN\nsmerovaný\nsmerovať\nsmerovka\nsmerovkový\nsmerovník\nsmerovo\nsmerový\nsmerujúci\nsmetiak\nsmetiar\nsmetiarka\nsmetiarsky\nsmetiarsky\nsmetie\nsmetísk\nsmetisko\nsmetiskový\nsmetišti\nsmetiť\nsmeť\nsmetník\nsmetný\nsmevavý\nsmevný\nsmi\nsmiať\nsmíd\nsmida\nsmidka\nsmiech\nsmiechot\nsmiechotár\nsmiechoty\nsmiešik\nsmieško\nsmiešne\nsmiešnosť\nsmiešnučký\nsmiešny\nsmiešok\nsmietka\nsmieť\nsmilne\nsmilni\nsmilniaci\nsmilnica\nsmilnícky\nsmilník\nsmilnime\nsmilnite\nsmilniť\nsmilno\nSmilno\nsmilný\nsmilstvo\nsmite\nsmithsonit\nSmižanoch\nSmižanom\nSmižany\nSmižian\nSmižianska\nsmižianskeho\nsmižiansky\nSMK\nsmog\nsmogový\nsmoking\nsmokingmi\nsmokingoch\nsmokingom\nsmokingov\nsmokingový\nsmokingu\nsmokingy\nsmokliť\nSmokovca\nSmokovce\nSmokovci\nSmokovcoch\nSmokovcom\nSmokovcov\nSmokovcu\nSmokovec\nsmokovský\nsmôl\nsmolách\nsmolám\nsmolami\nsmola\nSmoleníc\nsmolenica\nSmolenicami\nSmolenice\nSmoleniciach\nsmolenický\nSmolenom\nSmolenskej\nsmoliar\nsmoliarka\nsmoliarsky\nsmoliarsky\nsmolinec\nSmolinský\nsmoliť\nSmolka\nSmolku\nsmolnatý\nsmolnica\nsmolnicami\nsmolniciam\nSmolnícka\nsmolnícke\nsmolníckeho\nSmolníckej\nsmolníckom\nsmolnícky\nsmolníckych\nsmolníckym\nsmolníckymi\nsmolnička\nSmolník\nSmolníka\nSmolníkom\nSmolníku\nsmolný\nsmolový\nsmotán\nsmotana\nsmotánka\nsmotánkový\nsmotanovo\nsmotanový\nsmrada\nsmrad\nsmradi\nsmradievať\nsmradiť\nsmradľavec\nsmradľavica\nsmradľavo\nsmradľavý\nsmradliak\nsmradni\nsmradovi\nsmradúch\nsmrčina\nSmrčinu\nsmrčok\nsmrď\nSmrdák\nSmrdákoch\nSmrdákom\nSmrdáky\nsmrdieť\nsmrdievať\nsmrdľavý\nSmrečianska\nsmrečianske\nsmrečianskeho\nSmrečianskej\nsmrečianskemu\nsmrečianski\nsmrečianskom\nSmrečianskym\nsmrečie\nsmrečina\nsmrečinový\nsmrek\nsmrekovcový\nsmrekovec\nsmrekový\nsmriečik\nsmriečok\nsmriečok\nsmrkať\nsmrknúť\nsmrknutý\nSmrkom\nsmršť\nsmrteľne\nsmrteľníčka\nsmrteľník\nsmrteľnosť\nsmrteľnosťN\nsmrteľný\nsmrtiaci\nsmrtiek\nsmrtihlav\nsmrť\nsmrtka\nsmrtkiným\nsmrtnosť\nsmrtný\nsmrtonosný\nsms\nSMS\nsmtp\nsmúc\nsmud\nsmudiť\nsmú\nsmútiaci\nsmútievať\nsmútiť\nsmutne\nsmutnieť\nsmutno\nsmutnohru\nsmutný\nsmútočne\nsmútočný\nsmútok\nsmuty\nSmýkal\nSmýkala\nsmyk\nsmykovanie\nsmykovať\nSmyrne\nSN\nsnáď\nsnadno\nsnadný\nsnaha\nsnách\nsnajper\nsnajpermi\nsnakeboard\nSnakov\nsňal\nsňala\nsňali\nsňalo\nsnár\nsnármi\nsňať\nsňaté\nsňatí\nsňatie\nsňatku\nSňatky\nsnaženie\nsnažiaci\nsnažiacich\nsnažiť\nsnaživec\nsnaživo\nsnaživosť\nsnaživý\nsnažne\nSND\nSneha\nsneh\nsnehobiely\nsnehovka\nsnehovka\nsnehový\nsnehuliaci\nsnehuliačik\nsnehuliak\nsnehuliakovi\nsnehulienka\nsnehulienka\nsnehuľka\nsnehuľka\nsnema\nsnem\nsnemovaní\nsnemovania\nsnemovanie\nsnemovaním\nsnemovať\nsnemovňa\nsnemovný\nsnemový\nsnení\nsnenia\nsneť\nsneťový\nsneženie\nsnežienka\nSnežienkova\nSnežienková\nsnežiť\nsnežne\nSnežnica\nSnežnice\nSnežnici\nsnežný\nSNG\nSNHL\nsni\nsniacemu\nSnice\nsníček\nsníčka\nsníčkami\nsníčkoch\nsníčkom\nsníčkov\nsníčku\nsníčky\nsniežik\nsnije\nsník\nsnílkov\nsnímací\nsnímač\nsnímajúce\nsnímajúco\nsnímane\nsnímania\nsnímanie\nsnímaním\nsnímaniu\nsnímaný\nsnímateľnosť\nsnímateľný\nsnímatežnosť\nsnímať\nsnime\nsnímem\nsnímeme\nsnímeš\nsnímete\nsnímka\nsnímkoch\nsnímkom\nsnímkov\nsnímkovaní\nsnímkovania\nsnímkovanie\nsnímkovaním\nsnímkovaniu\nsnímkovať\nsnímkovo\nsnímkový\nsnímme\nsnímte\nsnímu\nsnímuc\nSnín\nSnina\nsninský\nsniper\nsnite\nsniť\nsnívajúci\nsnívaní\nsnívania\nsnívanie\nsnívať\nsnívavať\nsnivo\nsnivosť\nsnivý\nSNL\nSNM\nsnob\nsnobistický\nsnobizmus\nsnobka\nsnobova\nsnobsky\nsnobský\nsnobstvo\nsnopa\nsnop\nsnopček\nsnôpka\nsnôpkami\nsnôpkoch\nSnopkom\nsnôpkom\nsnôpkov\nSnopku\nsnôpku\nsnôpky\nsnopôk\nsnôpok\nsnor\nsnoriť\nsnorivý\nsnorte\nsnoubording\nsnoubordingmi\nsnoubordingoch\nsnoubordingom\nsnoubordingov\nsnoubordingový\nsnoubordingu\nsnoubordingy\nsnoubordista\nsnoubordistka\nsnovací\nsnovadlo\nsnovanie\nsnovaný\nsnováreň\nsnovárňou\nsnovať\nsnový\nsnowboard\nsnowboarding\nsnowboardingmi\nsnowboardingoch\nsnowboardingom\nsnowboardingov\nsnowboardingu\nsnowboardingy\nSNP\nSNR\nSNS\nSNŠ\nsnúbenec\nsnúbenecký\nsnúbenica\nsnúbenka\nsnúbiť\nsnubný\nsnul\nsnula\nsnuli\nsnulo\nsnuť\nsnutie\nsnutý\nSNV\nso\nsoaré\nsoba\nsobáša\nsobáše\nsobášenie\nsobášený\nsobášiť\nsobáš\nsobášmi\nsobášnosť\nsobášny\nsobášoch\nsobášom\nsobášosť\nsobášov\nsobášu\nsob\nsobí\nSoblahov\nSoblahova\nSoblahove\nSoblahovský\nsoboľa\nSoboľa\nsobole\nsobolí\nsobolina\nsoboľ\nsoboľmi\nsoboľoch\nsoboľom\nSoboľom\nsoboľou\nsoboľov\nsoboľovi\nSoboľovi\nsobora\nsoboru\nSoboš\nsobot\nsobota\nSobotište\nSobôtka\nSobôtku\nsobotňajší\nsobotný\nsobotský\nsobovi\nSobrance\nSobranciach\nSobranciam\nsobranecká\nsobraneckej\nsobraneckí\nSobranecký\nSobraniec\nsoc\nsocanica\nsocať\nsoccer\nsocia\nsociabilita\nsocial\nsociál\nsociáldemokratizmus\nsocialist\nsocialista\nsocialisticky\nsocialistický\nsocialistka\nsocialita\nsocializácia\nsocializačný\nsocializmus\nsocializovaných\nsocializovať\nsociálmi\nsociálne\nsociálnodemokraticky\nsociálnodemokratický\nsociálnodzravotný\nsociálno-ekonomický\nsociálnopoliticky\nsociálnopolitický\nsociálno-politický\nsociálnorevolučný\nsociálnosť\nsociálnosti\nsociálnosťou\nsociálnozdravotný\nsociálnozdravotný\nsociálny\nsociálom\nsociálov\nsociam\nsociame\nsociaš\nsociate\nsocie\nsocieta\nsocii\nsocií\nsociograficky\nsociol\nsociolekt\nsocioligvistický\nsociolingvista\nsociolingvisticky\nsociolingvistický\nsociolingvistika\nsociolingvistka\nsociológ\nsociológia\nsociologicky\nsociologický\nsociologička\nsociologizmus\nsociu\nsocius\nsód\nsódach\nsodál\nsodalit\nsodalita\nsódam\nsodar\nsóda\nsodík\nsodíkový\nsodne\nsodno\nsodný\nsodoku\nsodom\nsodôm\nsodomách\nsodomám\nsodomami\nsodoma\nsodomia\nsódovkáreň\nsódovkárňach\nsódovkárňam\nsódovka\nsódovkový\nsódový\nsofa\nSofia\nsofijský\nsofista\nsofistický\nsofistika\nsofistikovaný\nsofizma\nsofizmus\nSofora\nsoft\nsoftbal\nsoftbalista\nsoftbalistka\nsoftball\nsoftbalmi\nsoftbalový\nsoftvér\nsoftvér\nsoftvérmi\nsoftvérový\nsoftvéry\nsoftware\nsoftwarové\nsoftwarovo\nSOFZ\nSoho\nsoch\nsôch\nsochár\nsochárka\nsochárkina\nsochársky\nsochársky\nsochárstvach\nsochárstvam\nsochárstvo\nsocha\nSochin\nSochina\nsochor\nsochorček\nsochorec\nSOI\nsoirée\nsój\nsójach\nsójam\nsója\nsojčí\nsójí\nsojka\nsójovo\nsójový\nsok\nsokel\nsokla\nsoklami\nsokle\nsokli\nsoklík\nsokloch\nsoklom\nsoklov\nsoklový\nsoklu\nSokoľanoch\nSokoľany\nsokol\nSokoľ\nSokolce\nSokolciach\nsokolča\nSokoľčan\nSokoľčanka\nsokolčiat\nsokoli\nSokolianskeho\nsokoliar\nsokolica\nsokolíča\nSokoliec\nsokolí\nsokolík\nsokolíkovi\nSokolke\nsokoľom\nsokoľou\nSokolova\nSokolová\nSokolove\nsokolovi\nSokolovi\nsokolovňa\nsokolovní\nsokolovo\nSokolovom\nsokolovského\nsokolovskí\nsokolovskom\nsokolovským\nSokolovský\nsokolská\nsokolského\nsokolskej\nsokolskí\nsokolskú\nsokoľsky\nsokolskými\nSokolský\nsokoľský\nsokorec\nsokratovský\nsokyňa\nsol\nsól\nsólach\nsólam\nsolanín\nsoľanka\nsoľankou\nsoľanky\nsolar\nsolarimeter\nsolárium\nsolarizácia\nsolárny\nSolarová\nSolarovej\nSolčianky\nSolčianska\nSolčianskeho\nSolčiansky\nSold\nsoldateska\nsolecizmus\nsolenie\nsolenoid\nsolený\nsolex\nsolfatára\nsoliar\nsoliareň\nsoliarenský\nsoliarňach\nsoliarňam\nsoliarsky\nsoliarsky\nsolicitácia\nsolicitant\nsolicitátor\nsolicitor\nsolicitorov\nsolič\nsolička\nsolid\nsolidaristickej\nsolidaristickú\nsolidaritaN\nsolidarizme\nsolidarizmu\nsolidarizmus\nsolidarizovala\nsolidarizovali\nsolidarizovať\nsolidarizuje\nSolidarizujem\nsolidarizujú\nsolidárnosť\nsolidárny\nsolideo\nsolidifikačný\nsolidifikovaný\nsolidita\nsolídnosť\nsolídny\nsolidus\nsolievať\nsoliflukácia\nsolilokvium\nsolipsizmus\nsolísk\nsolisko\nsólista\nsólisticky\nsólistický\nsólistka\nsolitárny\nsoliť\nsolitér\nsolitéra\nsolitérne\nsolitérny\nsolitérnych\nsolitérnym\nsolitérom\nsolitérov\nsolitéry\nsolivar\nsoľ\nsolmizácia\nsolmizačný\nsoľnička\nSoľník\nsoľný\nsololit\nsololitmi\nsololitový\nsólo\nsolončak\nsolonec\nsolónový\nSološnica\nSološnice\nSološnici\nSološnická\nsološnického\nsološnickej\nsološnickom\nsólove\nsólovo\nsólový\nsolstícium\nsolubilita\nsolubilizácia\nsolubilný\nsolúcia\nSolún\nSolúne\nSolúnom\nsolúnskej\nsolúnsky\nSolúnu\nsolutréen\nsolux\nsoluxový\nsolvát\nsolvatácia\nsolvencia\nsolvencie\nsolvenciu\nsolvencium\nsolventne\nsolventnosť\nsolventný\nsom\nsoma\nSomálsko\nsomálsky\nsoman\nsomárčina\nsomári\nsomarica\nsomárí\nsomárik\nsomárikovi\nsomarina\nsomárisk\nsomáriská\nsomáriskách\nsomáriskám\nsomárisko\nsomárisku\nsomár\nsomársky\nsomársky\nsomárstvach\nsomárstvam\nsomárstvo\nsomaticky\nsomatický\nsomatika\nsomatizácia\nsomatológ\nsomatológia\nsomatologický\nsomatologička\nsomatologička\nsomatopédia\nsomatotrofný\nsomatotropín\nsomatotropného\nsomatotyp\nsombrer\nsombrero\nsomnambul\nsomnambulista\nsomnambulizmus\nsomnambulný\nsomnifera\nsomnilógia\nsomnilokvia\nsomnolencia\nSomotor\nson\nSon\nSona\nSoňám\nsonant\nsonanta\nsonar\nsonarový\nsonát\nsonátach\nsonátam\nsonáta\nsonatín\nsonatínach\nsonatínam\nsonatína\nsonátový\nSoňa\nsond\nsonda\nsondážach\nsondážam\nsondáž\nsondážny\nsondovací\nSondovacie\nsondovaná\nsondovaní\nsondovania\nsondovanie\nsondovaním\nsondovaniu\nsondovaných\nsondovať\nsondový\nSoňe\nsonet\nsonetový\nsongami\nsong\nsongoch\nsongom\nsongov\nsongový\nsongu\nsongy\nSoní\nSoňi\nSonkou\nsonograf\nsonografia\nsonografický\nsonografov\nsonografu\nsonografy\nsonometer\nsonór\nsonora\nsonórach\nsonóram\nsonóra\nsonóra\nsonorita\nsonórne\nsonórnosť\nsonórny\nSony\nSOP\nsôp\nsopací\nsopečnatý\nsopečný\nsopeľ\nsopeľ\nsopieľ\nSOPK\nsopka\nsopľaňa\nsopľaní\nsopľa\nsopľavka\nsopľavo\nsopľavosť\nsopľavý\nsopliacky\nsopliačisk\nsopliačiská\nsopliačiskách\nsopliačiskám\nsopliačisko\nsopliačisku\nsopliak\nsoplík\nsopliť\nsopľoch\nsopľom\nsopľoš\nsopľov\nsopor\nSopot\nSopoťanka\nSopoťanka\nSopotčanka\nSopotčanka\nsopotský\nSopotu\nsoprán\nsopráne\nsopranista\nsopranistka\nsopránový\nsopránu\nsoprány\nsopti\nsoptí\nsoptia\nsoptiac\nsoptiaca\nsoptil\nsoptila\nsoptili\nsoptilo\nsoptím\nsoptime\nsoptíme\nsoptíš\nsoptiť\nsoptite\nsoptíte\nSopúch\nsorabistika\nsorbát\nsorbent\nsorbit\nSorbit\nSorbonne\nSorbonnou\nSorbonnu\nsordina\nsordíno\nsordo\nsorgo\nsorgum\nsororát\nsorpcia\nsorpcie\nsorpcii\nsorpčný\nsorta\nsortimentácie\nsortimentácii\nsortimentáciu\nsortimentačných\nsortimentár\nsortimentárka\nsortiment\nsortimentmi\nsortimentovo\nsortimentový\nsortírovať\nsortovanie\nsortovať\nsortovo\nsortový\nSoru\nSOS\nsós\nsosien\nsosna\nSosnove\nsosnový\nSosnowci\nsostenuto\nsoška\nsošne\nsošnosť\nsošný\nSOT\nSote\nsotené\nsotenie\nSoter\nsoteriológia\nsotiť\nsotiza\nsotva\nsotvačím\nsotvačo\nsotvačoho\nsotvačom\nsotvačomu\nsotvakde\nsotvakedy\nsotvakoho\nsotvakom\nsotvakomu\nsotvakto\nsotvaktorý\nsotvakým\nsotvaže\nSOU\nSOUI\nsoul\nSoul\nSoule\nSoulom\nsoulský\nSoulu\nsound\nsoundback\nsoundtrack\nsour\nsource\nSource\nsouvenir\nsov\nSOV\nsôvä\nsova\nsovča\nsovček\nsovčiat\nsovchoz\nsovchozný\nsovíča\nsovička\nsoviet\nsovieti\nsovietizácia\nsovietizácie\nsovietizácii\nsovietizáciu\nsovietská\nsovietsky\nsovietsky\nsoví\nsovka\nsovkami\nsovkoch\nsovkom\nsovkov\nsovku\nsovky\nsovok\nSOZ\nsp\nSP\nspacifikoval\nspacifikovali\nspacifikované\nspacifikovaní\nspacifikovanie\nspacifikovať\nspacifikuje\nspací\nspaciokardiografia\nspácium\nspackaný\nspackať\nspáč\nspáčka\nspadajúci\nspadať\nspadávať\nspad\nspád\nspadix\nspádnic\nspádnica\nspadnutia\nspadnutie\nspadnutím\nspadnúť\nspadnutý\nspadnutý\nspádovísk\nspádovisko\nspádovitej\nspádovo\nspádový\nspáchanie\nspáchaný\nspáchať\nspachtiť\nspachtoš\nspájací\nspájačka\nspájadlo\nspájajúci\nspájanie\nspájaný\nspájateľnosť\nspájatežnosť\nspájať\nspajkať\nspájka\nspájkovací\nspájkovač\nspájkovačka\nspájkovačovi\nspájkovane\nspájkovania\nspájkovanie\nspájkovaniu\nspájkovaný\nspájkovať\nspájkovo\nspájkový\nspajo\nspakovaných\nspakovať\nspakručie\nspakručný\nspakruky\nspaktučný\nspakujúca\nspál\nspáĺ\nspäl\nspála\nspálenia\nspálenie\nspálením\nspálenina\nspálenísk\nspálenisko\nspáleniu\nspálený\nspalina\nspalinový\nspaliny\nspáliteľnosť\nspáliteľný\nspáliť\nspálňach\nspálňam\nspálňa\nspální\nspálnička\nspálňový\nspalný\nspaľovací\nspaľovane\nspaľovanie\nspaľovaný\nspaľovať\nspaľovňa\nspaľovní\nspaľujúca\nspaľujúcej\nspaľujúci\nspály\nspamätania\nspamätanie\nspamätaniu\nspamätať\nspamätávaní\nspamätávania\nspamätávanie\nspamätávať\nspamäti\nspamätúvať\nspam\nspamer\nspameri\nspamerom\nspamerský\nspammerov\nspanghartený\nspanghartiť\nspanie\nspanikárený\nspanikáriť\nspanikovať\nspanile\nspanilejšej\nspanilejší\nspanilejšia\nspanilejšie\nspanilejšieho\nspanilejšiemu\nspanilejších\nspanilejším\nspanilejšími\nspanilejšiu\nspanilejšom\nspanilejšou\nspanilo\nspanilosť\nspanilý\nspankhartený\nspankhartiť\nspánkový\nspánok\nspánombohom\nspanštej\nspanštejme\nspanštejte\nspanštejú\nspanštejúc\nspanštel\nspanštela\nspanšteli\nspanštelo\nspanštením\nspanštie\nspanštiem\nspanštieme\nspanštieš\nspanštieť\nspanštiete\nspanštiť\nspapať\nspapkať\nspaprať\nspar\nspara\nsparenie\nspárenie\nsparenina\nspárený\nsparien\nspariť\nspáriť\nsparkling\nsparmánia\nsparna\nsparnách\nsparnám\nsparnami\nsparne\nsparno\nsparnu\nsparný\nsparodizovať\nsparodovať\nspárov\nspároval\nspárovala\nspárovali\nspárovalo\nspárovania\nspárovanie\nspárovaný\nspárovať\nsparringpartner\nSpartak\nSpartaka\nspartakiád\nspartakiádach\nspartakiádam\nspartakiáda\nspartakiádny\nSpartakom\nSpartaku\nSpartakus\nspartaky\nsparťanskosť\nsparťansky\nsparťanský\nsparta\nSparta\nspartský\nsparuje\nspáruje\nspárujú\nsparujúc\nsparujúca\nspás\nspásach\nspásami\nspásanie\nspásať\nspása\nspasenie\nspasený\nspasie\nspasiem\nspasieme\nspasieš\nspasiete\nspasiteľ\nSpasiteľ\nspasiteľnosť\nspasiteľný\nspasiteľov\nspasiteľsky\nspasiteľský\nspasiteľu\nspasiť\nspaskudiť\nspásla\nspásli\nspáslo\nspásny\nspásol\nspásonosne\nspásonosnosť\nspásonosný\nspásť\nspastický\nspasú\nspasúc\nspätiť\nspatium\nspätkovať\nspäťnásobí\nspäťnásobil\nspäťnásobila\nspäťnásobili\nspäťnásobiť\nspäťnásobniť\nspätne\nspätný\nspäto\nspätosť\nspať\nspäťvzatí\nspäťvzatie\nspäťvzatím\nspäťvzatiu\nspätý\nspávania\nspávanie\nspávať\nspavo\nspavosťN\nspavý\nspazma\nspazmofília\nspazmolytikum\nspazmus\nSPD\nspdievať\nspeakera\nspeaker\nspeakeri\nspeakermi\nspeakeroch\nspeakerom\nspeakerov\nspeakerovi\nspeciácia\nspecies\nspecimen\nSpecimen\nSpectabilis\nspeč\nspečatenia\nspečatenie\nspečatením\nspečateniu\nspečatený\nspečatiť\nspečaťovaní\nspečaťovaním\nspečaťovať\nspečenia\nspečenie\nspečený\nspečie\nspečiem\nspečieme\nspečieš\nspečiete\nspečme\nspečte\nspečú\nspečúc\nspekacej\nspekací\nspekacie\nspekacieho\nspekacích\nspekacím\nspekaciu\nspekacou\nspekanie\nspekaním\nspekaniu\nspekaný\nspekať\nspekavosť\nspekavosti\nspekavý\nspeknieť\nspektabilita\nspektákel\nspektakulárny\nspektakulózny\nspektier\nspektrálny\nspektrofotometria\nspektrofotometrické\nspektrograf\nspektrografia\nspektrochémia\nspektrometer\nspektrometrie\nspektrometriu\nspektroskop\nspektroskopia\nspektrum\nspekulum\nspeleológ\nspeleológia\nspeleologický\nspeleologička\nspeleologička\nspeleoterapeutický\nspeleoterapia\nspeňaženia\nspeňaženie\nspeňažením\nspeňaženiu\nspeňažený\nspeňažiteľnosť\nspeňažiteľnosti\nspeňažiteľný\nspeňažiť\nspeňažovania\nspeňažovanie\nspeňažovaním\nspeňažovaniu\nspeňažovaný\nspeňažovať\nspencer\nspenený\nspeniť\nsperliť\nspermárium\nspermatid\nspermatoblast\nspermatocid\nspermatocystitída\nspermatocyt\nspermatofor\nspermatogenéza\nspermatozid\nspermatúria\nsperma\nspermia\nspermiogenéza\nspermiový\nspermovium\nsperovanie\nsperovať\nspersonifikovanej\nsperujúci\nsperylit\nspestrenie\nspestrený\nspestriť\nspestrovanie\nspestrovať\nspešne\nspešnina\nspešninový\nspetie\nspetým\nspevácky\nspeváčik\nspeváčka\nspevák\nspevavo\nspevavosť\nspevavý\nspev\nspeve\nspevec\nspevnene\nspevnenia\nspevneniami\nspevnenie\nspevnením\nspevneniu\nspevnený\nspevne\nspevni\nspevníček\nspevníčka\nspevníčkami\nspevníčkoch\nspevníčkom\nspevníčkov\nspevníčku\nspevníčky\nspevnieť\nspevník\nspevníkový\nspevnime\nspevnite\nspevniť\nspevnosť\nspevňovací\nspevňovaného\nspevňovaní\nspevňovania\nspevňovanie\nspevňovaním\nspevňovaniu\nspevňovaných\nspevňovať\nspevňujúci\nspevný\nspevoherný\nspevohra\nspevokol\nspevot\nspiaco\nspiačky\nspiatky\nspiatočka\nspiatočnícky\nspiatočníctvach\nspiatočníctvam\nspiatočníctvo\nspiatočník\nspiatočný\nspiaty\nspica\nspiccato\nspiecť\nspiekla\nspiekli\nspieklo\nspiekol\nspierať\nspieť\nspievajúca\nspievajúce\nspievajúcej\nspievajúci\nspievajúcich\nspievajúcim\nspievajúcimi\nspievajúcky\nspievajúcom\nspievajúcou\nspievajúcu\nspievanie\nspievanka\nspievaný\nspievať\nspievavať\nspievkať\nspiežach\nspiežam\nspiež\nspiežovec\nspiežový\nspichnúť\nspichnutý\nspíjajúci\nspíjať\nspíjavať\nSpike\nspíkera\nspíker\nspíkeri\nspíkerka\nspíkermi\nspíkeroch\nspíkerom\nspíkerov\nspíkerovi\nspíkersky\nspíkerský\nspiklenci\nspiklencov\nspiklenecky\nspikleneckých\nspikleneckým\nspikli\nspiklo\nspiknúť\nspiknutie\nspikula\nspiláž\nspílená\nspiliek\nspilit\nspíliť\nSpilka\nspilkách\nSpilku\nspilky\nspiľoval\nspiľovala\nspiľovali\nspiľovalo\nspilovanie\nspiľovať\nspilovať\nspiľuj\nspiľuje\nspiľujem\nspiľujeme\nspiľuješ\nspiľujete\nspiľujme\nspiľujte\nspiľujú\nspiľujúc\nspim\nspin\nSPIN\nspina\nspínací\nspínač\nspínačka\nspínačkový\nspínačový\nspínadlo\nspínajúci\nspinalgia\nspinálny\nspínania\nspínanie\nspínaný\nspínať\nspinel\nspinelov\nspiner\nspinet\nspinká\nspinkaj\nspinkajme\nspinkajte\nspinkajú\nspinkajúc\nspinkal\nspinkala\nspinkali\nspinkalo\nspinkáme\nspinkáš\nspinkať\nspinkáte\nspinka\nspinocerebrálny\nspinovo\nspinový\nspiónovať\nspípol\nspiranta\nspirea\nspirém\nspirit\nSpirit\nSpirite\nSpiritom\nSpiritu\nspirituál\nspirituáli\nspiritualista\nspiritualistický\nspiritualita\nspiritualizmus\nspirituálmi\nspirituálny\nspirituoso\nspiritus\nSpiritus\nspirograf\nspirografia\nspirogram\nspirochéta\nspirometer\nspísania\nspísanie\nspísaním\nspísaniu\nspísaný\nspísať\nspis\nspisba\nspískaná\nspískať\nspisknúť\nspisknutí\nspisknutie\nspiskol\nspiskom\nspiskov\nspisku\nspisok\nspisovaní\nspisovania\nspisovanie\nspisovaním\nspisovaniu\nspisovateľ\nspisovateľka\nspisovateľkin\nspisovateľský\nspisovateľstvo\nspisovať\nspisovňa\nspisovne\nspisovnosť\nspisovný\nspisový\nspiš\nSpiša\nSpiše\nSpiši\nSpišiačka\nSpišiak\nSpišiakovej\nSpišiakovho\nSpišiakovo\nSpišiakovou\nSpiš\nSpišom\nspišskobeliansky\nspišskonovoveská\nspišskonovoveské\nspišskonovoveského\nspišskonovoveskej\nspišskonovoveskí\nspišskonovoveskom\nspišskonovoveskú\nspišskonovoveských\nspišskonovoveským\nSpišskonovoveský\nspišskopodhradský\nspišský\nspišť\nspišťané\nspišťať\nspišťí\nspišťia\nspišťiac\nspišťím\nspišťíme\nspišťíš\nspišťíte\nspišťme\nspišťte\nSpišu\nspíšu\nspíšuc\nspitfire\nSpittal\nspiť\nspitý\nSPKK\nsplácanie\nsplácaný\nsplácať\nspláchnuté\nSpláchnutí\nspláchnutie\nspláchnuť\nspláchnutých\nsplachovací\nsplachovač\nsplachovania\nsplachovanie\nsplachovaním\nsplachovaný\nsplachovať\nspláknuť\nsplakovať\nsplanenie\nsplanie\nsplanieť\nsplanírovať\nsplanul\nsplanúť\nsplápolať\nspľasknúť\nspľasknutý\nspľasnutia\nspľasnutie\nspľasnutím\nspľasnutiu\nspľasnúť\nspľasnutý\nsplašene\nsplašenie\nsplašenosť\nsplašený\nsplašiť\nsplaškoch\nsplaškom\nsplaškov\nsplaškový\nsplašky\nsplatenie\nsplatený\nsplatiteľný\nsplatiť\nsplátka\nsplátkovo\nsplátkový\nsplatne\nsplatnosť\nsplatný\nsplav\nsplavenia\nsplavenie\nsplavenín\nsplaveninami\nsplaveniny\nsplavený\nsplaviť\nsplavnenia\nsplavnenie\nsplavnením\nsplavneniu\nsplavnený\nsplavni\nsplavnime\nsplavnite\nsplavniť\nsplavnosť\nsplavňovanie\nsplavňovať\nsplavný\nsplavované\nsplavovania\nsplavovanie\nsplavovaním\nsplavovanou\nsplavovať\nsplavový\nsplavujúci\nspleen\nsplendídny\nsplenektómia\nsplenický\nsplenomegália\nsplesnený\nsplesnetý\nsplesnieť\nsplesnivený\nsplesnivieť\nsplesnúť\nspletanie\nspletaný\nspletať\nspleť\nspletene\nspletenie\nspletenina\nspletený\nspletito\nspletitosť\nspletitý\nspliaskať\nsplieskať\nspliesť\nsplietané\nsplietanie\nsplietaním\nsplietať\nsplín\nsplínový\nSplit\nSplite\nSplitom\nsplitské\nsplitského\nsplitskej\nsplitskom\nSplitský\nSplitu\nspĺňajúci\nspĺňané\nspĺňanie\nspĺňať\nspln\nsplnenie\nsplnenieN\nsplnený\nsplniteľnosť\nsplniteľnosťN\nsplniteľný\nsplniť\nsplnmesiac\nsplnok\nsplnomocnenec\nsplnomocnenie\nsplnomocnenkyňa\nsplnomocnený\nsplnomocni\nsplnomocnime\nsplnomocnite\nsplnomocniteľ\nsplnomocniteľka\nsplnomocniteľský\nsplnomocniť\nsplnomocňovací\nsplnomocňovaní\nsplnomocňovať\nsplňovaní\nsplňovania\nsplňovanie\nsplňovať\nsplňujúci\nsplodenia\nsplodeniu\nsplodený\nsplodina\nsplodiť\nsploštene\nsploštenie\nsploštenosť\nsploštený\nsplošti\nsploštime\nsploštite\nsploštiť\nsplošťovaní\nsplošťovanie\nsplošťovať\nsplstená\nsplstenie\nsplstnatieť\nsplsťovaním\nspľuhačený\nspľuhačiť\nspľuhavený\nspľuhavieť\nspľundravený\nspľundravieť\nspľundrovali\nspľundrovaný\nspľundrovať\nspľuvať\nsplynenie\nsplynie\nsplyniem\nsplynieme\nsplynieš\nsplyniete\nsplyniť\nsplynovač\nsplynovača\nsplynovači\nsplynovačov\nsplynovaní\nsplyňovaní\nsplynovania\nsplyňovania\nsplynovanie\nsplyňovanie\nsplynovaním\nsplyňovaním\nsplynovať\nsplyňovať\nsplynutá\nsplynutí\nsplynutia\nsplynutiam\nsplynutie\nsplynutím\nsplynutiu\nsplynúť\nsplynutých\nsplytčiť\nsplývajúci\nsplývane\nsplývania\nsplývanie\nsplývaniu\nsplývaný\nsplývať\nsplývavo\nsplývavosť\nsplývavý\nspĺznuť\nSPN\nspočetný\nspočiatku\nspočin\nspočinok\nspočinutia\nspočinutie\nspočinúť\nspočítanie\nspočítaný\nspočitateľný\nspočítateľný\nspočítať\nspočítavaní\nspočítavania\nspočítavanie\nspočítavaniu\nspočítavať\nspočitovať\nspočívajúci\nspočívania\nspočívanie\nspočívať\nspod\nspodina\nspodinový\nspódium\nspoďkať\nspodkový\nspodky\nspodlieť\nspodliť\nspodne\nspodnica\nspodnička\nspodník\nspodný\nspodo\nspodoba\nspodobenie\nspodobený\nspodobiť\nspodobnenie\nspodobnenú\nspodobni\nspodobnime\nspodobnite\nspodobniť\nspodobňovanie\nspodobňovať\nspodobovanie\nspodobovať\nspodok\nspodst\nspodstatnený\nspodumen\nspohodlnenia\nspohodlnenie\nspohodlneniu\nspohodlnených\nspohodlnieť\nspohodlniť\nspochabený\nspochabieť\nspochabiť\nspochybnenia\nspochybneniam\nspochybnenie\nspochybnením\nspochybneniu\nspochybnený\nspochybni\nspochybnime\nspochybnite\nspochybniteľný\nspochybniť\nspochybňovania\nspochybňovanie\nspochybňovaním\nspochybňovaniu\nspochybňovaný\nspochybňovať\nspoilera\nspoiler\nspoileri\nspojár\nspojárka\nspojársky\nspojársky\nspojazdnenia\nspojazdnenie\nspojazdnením\nspojazdneniu\nspojazdnený\nspojazdni\nspojazdnime\nspojazdnite\nspojazdniť\nspojene\nspojenec\nspojenecky\nspojenecký\nspojenectvo\nspojenie\nspojený\nspojite\nspojiteľnosť\nspojiteľný\nspojiť\nspojito\nspojitosť\nspojitý\nspojív\nspojivka\nspojivkový\nspojivo\nspojivový\nspoj\nspojka\nspojkový\nspojlera\nspojler\nspojleri\nspojne\nspojnica\nspojnicový\nspojný\nspojovací\nspojovane\nspojovania\nspojovanie\nspojovaniu\nspojovaný\nspojovateľ\nspojovateľka\nspojovateľský\nspojovať\nspojovka\nspojovkový\nspojovník\nspojovo\nspojový\nspokojenie\nspokojený\nspokojí\nspokojiť\nspokojne\nspokojne\nspokojnosť\nspokojnosťN\nspokojnučký\nspokojný\nspol\nspola\nspoľahky\nspoľahlivejší\nspoľahlivo\nspoľahlivosť\nspoľahlivosťN\nspoľahlivý\nspoľahnutí\nspoľahnutie\nspoľahnúť\nspolčená\nspolčené\nspolčení\nspolčenia\nspolčenie\nspolčením\nspolčenú\nspolči\nspolčime\nspolčite\nspolčiť\nspolčovací\nspolčovaní\nspolčovania\nspolčovanie\nspolčovaniu\nspolčovať\nspólia\nspoliácia\nspoliehajúca\nspoliehajúce\nspoliehajúci\nspoliehaní\nspoliehania\nspoliehanie\nspoliehaním\nspoliehaniu\nspoliehať\nspolitizoval\nspolitizovala\nspolitizovali\nspolitizovalo\nspolitizovania\nspolitizovanie\nspolitizovaním\nspolitizovaniu\nspolitizovaný\nspolitizovať\nspolitizuj\nspolitizuje\nspolitizujem\nspolitizujeme\nspolitizuješ\nspolitizujete\nspolitizujme\nspolitizujte\nspolitizujú\nspolitizujúc\nspolkár\nspolkárka\nspolkársky\nspolkársky\nspolkárstvo\nspolkový\nspoloč\nspoločenskejší\nspoločensko\nspoločenskoekonomické\nspoločenskoekonomickej\nspoločensko-ekonomický\nspoločensko-historický\nspoločensko-politický\nspoločenskosť\nspoločenskovedný\nspoločenskovýrobný\nspoločensky\nspoločenský\nspoločenstevný\nspoločenstvo\nspoločne\nspoločnica\nspoločníctva\nspoločníctve\nspoločníctvo\nspoločníctvom\nspoločníčka\nspoločník\nspoločníkovej\nspoločno\nspoločnosťiam\nspoločnosť\nspoločný\nspolok\nspolovice\nspolu\nspoluautor\nspoluautorka\nspoluautormi\nspoluautorský\nspoluautorstvo\nspolubesedníčka\nspolubesedníčka\nspolubesedník\nspolubojovníčka\nspolubojovník\nspolubrat\nspolubytie\nspolubývajúci\nspolucestovateľ\nspolucestujúci\nspolucítenie\nspolucítiť\nspoludedič\nspoludedička\nspoludlžník\nspoludlžníka\nspoludlžníkom\nspoludlžníkov\nspoludržiteľom\nspoluexistencia\nspolufinancoval\nspolufinancovala\nspolufinancovali\nspolufinancovalo\nspolufinancovať\nspolufinancovateľ\nspolufinancovateľka\nspolufinancuj\nspolufinancuje\nspolufinancujem\nspolufinancujeme\nspolufinancuješ\nspolufinancujete\nspolufinancujme\nspolufinancujte\nspolufinancujú\nspolufinancujúc\nspoluformujem\nspoluherec\nspoluhl\nspoluhláska\nspoluhláskový\nspoluhráč\nspoluhráčka\nspoluhráčového\nspoluhráčovej\nspoluhráčovu\nspoluhráčových\nspoluhra\nspoluidúci\nspoluiniciátora\nspoluiniciátori\nspoluiniciátorom\nspoluinvestor\nspoluinvestormi\nspoluinvestorský\nspoluinvestorstvo\nspolujazdec\nspolujazdkyňa\nspolukandidát\nspolulezca\nspolumajiteľ\nspolumajiteľka\nspolumajiteľský\nspolumajiteľstvo\nspolunájomníčka\nspolunájomníčka\nspolunájomník\nspolunáležitosť\nspolunažívanie\nspolunažívať\nspoluobčan\nspoluobčianka\nspoluobčiansky\nspoluobjaviteľ\nspoluobjaviteľka\nspoluobvinený\nspoluobyvateľ\nspoluobyvateľka\nspoluobžalovaný\nspoluorganizátor\nspoluorganizátorka\nspoluorganizátormi\nspoluorganizoval\nspoluorganizovala\nspoluorganizovali\nspoluorganizovalo\nspoluorganizovať\nspoluorganizuj\nspoluorganizuje\nspoluorganizujem\nspoluorganizujeme\nspoluorganizuješ\nspoluorganizujete\nspoluorganizujme\nspoluorganizujte\nspoluorganizujú\nspoluorganizujúc\nspolupacient\nspolupacientka\nspolupáchateľ\nspolupáchateľka\nspolupáchateľstvo\nspolupatričnosť\nspolupodielal\nspolupodniká\nspolupodnikaj\nspolupodnikajme\nspolupodnikajte\nspolupodnikajú\nspolupodnikajúc\nspolupodnikal\nspolupodnikala\nspolupodnikali\nspolupodnikalo\nspolupodnikám\nspolupodnikáme\nspolupodnikáš\nspolupodnikať\nspolupodnikáte\nspolupodnikateľ\nspolupodnikateľka\nspolupodpis\nspolupodpísal\nspolupodpísala\nspolupodpísali\nspolupodpísalo\nspolupodpísania\nspolupodpísanú\nspolupodpisoval\nspolupodpisovania\nspolupodpisovať\nspolupodpisu\nspolupodpisuje\nspolupodpisujú\nspoluposlucháčmi\nspolupôsobenie\nspolupôsobiaci\nspolupôsobiť\nspoluprácach\nspoluprácam\nspolupráca\nspolupracovanie\nspolupracovať\nspolupracovníčka\nspolupracovník\nspolupracovníkovu\nspolupracujúci\nspolupredkladateľ\nspolupredkladateľka\nspolupredsedá\nspolupredseda\nspolupredsedal\nspolupredsedali\nspolupredsedať\nspolupredsedníčka\nspolupútnička\nspolupútnik\nspoluriešení\nspoluriešenia\nspoluriešenie\nspoluriešiť\nspoluriešiteľ\nspoluriešiteľka\nspolurodák\nspolurozhodovanie\nspolurozhodovať\nspoluručiteľ\nspoluručiteľka\nspolusestier\nspolusestra\nspolustolovník\nspolustolovníkov\nspolutrpiaci\nspolutrpiteľ\nspolutrpiteľka\nspolutrpiteľka\nspolutvorba\nspolutvorca\nspolutvorené\nspolutvoril\nspolutvorili\nspolutvoriť\nspolutvorivej\nspolutvorkyňa\nspoluúčasť\nspoluúčastnícky\nspoluúčastníčka\nspoluúčastník\nspoluúčinkoval\nspoluúčinkovala\nspoluúčinkovali\nspoluúčinkovalo\nspoluúčinkovanie\nspoluúčinkovať\nspoluúčinkuj\nspoluúčinkuje\nspoluúčinkujem\nspoluúčinkujeme\nspoluúčinkuješ\nspoluúčinkujete\nspoluúčinkujme\nspoluúčinkujte\nspoluúčinkujú\nspoluúčinkujúc\nspoluúčinkujúci\nspoluurčoval\nspoluurčovať\nspoluurčuje\nspoluurčujú\nspoluutváraní\nspoluutvárať\nspoluužívateľ\nspoluužívateľka\nspoluväzeň\nspoluväzenka\nspoluväzenkyňa\nspoluväzňa\nspoluväzňami\nspoluväzni\nspoluväzňoch\nspoluväzňom\nspoluväzňov\nspoluväzňovi\nspoluvina\nspoluvinníčka\nspoluvinník\nspoluvinný\nspoluvládca\nspoluvlastnícky\nspoluvlastníctvach\nspoluvlastníctvam\nspoluvlastníctvo\nspoluvlastníčka\nspoluvlastník\nspoluvytváraní\nspoluvytváranie\nspoluvytváraním\nspoluvytváraniu\nspoluvytvárať\nspoluvytvoria\nspoluvytvoril\nspoluvytvorila\nspoluzabezpečovať\nspoluzakladateľ\nspoluzakladateľka\nspoluzamestnanec\nspoluzamestnanecký\nspoluzamestnankyňa\nspoluznenie\nspoluzodpovednosť\nspoluzodpovedný\nspoluzúčastní\nspoluzúčastnia\nspoluzúčastnil\nspoluzúčastňovali\nspoluzúčastňovať\nspoluzúčastňuje\nspolužalobcami\nspolužalobcovia\nspolužiačka\nspolužiak\nspolužitie\nspoly\nspolykalo\nspomáhať\nspomalene\nspomalenie\nspomalenosť\nspomalený\nspomaliť\nspomaľovač\nspomaľovania\nspomaľovanie\nspomaľovaním\nspomaľovaniu\nspomaľovaný\nspomaľovať\nspomaľujúcich\nspomedzi\nspomenutia\nspomenutie\nspomenutím\nspomenúť\nspomenutý\nspomienka\nspomienkový\nspomínanie\nspomínaný\nspomínať\nspomni\nspomnime\nspomnite\nspomôcť\nspomôž\nspomoženie\nspomôžuc\nspôn\nsponad\nspona\nspondej\nspondejský\nspondylalgia\nspondylitída\nspondylopatia\nsponenáhla\nspong\nspongility\nspongín\nspongioblast\nspongiológia\nspongióza\nsponka\nSponková\nsponovky\nsponový\nsponsálie\nspontaneita\nspontaneite\nspontaneity\nspontánne\nspontánnosť\nspontánny\nsponzor\nsponzormi\nsponzorova\nsponzorovania\nsponzorovaný\nsponzorovať\nsponzorových\nsponzorsky\nsponzorský\nsponzorstvo\nspopadnúť\nspoplatnenia\nspoplatnenie\nspoplatnením\nspoplatneniu\nspoplatnený\nspoplatni\nspoplatní\nspoplatnia\nspoplatnil\nspoplatnila\nspoplatnili\nspoplatnilo\nspoplatniť\nspoplatníte\nspoplatňovania\nspoplatňovanie\nspoplatňovaním\nspoplatňovaniu\nspoplatňovaný\nspoplatňovať\nspopod\nspopolavieť\nspopolnenia\nspopolnenie\nspopolnením\nspopolnený\nspopolni\nspopolnime\nspopolnite\nspopolniť\nspopolňovať\nspopolovieť\nspopred\nspopretŕhať\nspopretrhávať\nspopularizovanie\nspopularizovaniu\nspopularizovaný\nspopularizovať\nspopulárnenia\nspopulárnieť\nspopulárniť\nspór\nsporáčik\nsporadickosť\nsporadicky\nsporadický\nspórach\nsporák\nsporákový\nspóram\nspóra\nspor\nsporejšej\nsporejší\nsporejšia\nsporejšie\nsporejšieho\nsporejšiemu\nsporejších\nsporejším\nsporejšími\nsporejšiu\nsporejšom\nsporejšou\nsporené\nsporenej\nsporenie\nSporenú\nsporených\nsporiadanom\nsporiteľ\nsporiteľka\nsporiteľňa\nsporiteľné\nsporiteľní\nsporiteľníctva\nsporiteľníctvo\nsporiteľníctvom\nsporiteľničný\nsporiteľnom\nsporiteľnou\nsporiteľňový\nsporiteľných\nsporiteľnými\nSporiteľný\nsporiteľský\nsporiť\nsporivca\nsporivcami\nsporivci\nsporivcoch\nsporivcom\nsporivcov\nsporivcovi\nsporivec\nsporivosť\nsporivý\nsporne\nspornosť\nsporný\nsporo\nsporocysta\nsporofyl\nsporogenéza\nsporogónia\nsporový\nsporožír\nsporožírach\nsporožíram\nsporožiro\nsporožíro\nsporožírový\nsporte\nsportrétovať\nsporý\nspôs\nsposmeškovať\nsposmievať\nspôsob\nspôsobene\nspôsobenie\nspôsobený\nspôsobený\nspôsobilejšej\nspôsobilejší\nspôsobilejšia\nspôsobilejšie\nspôsobilejšieho\nspôsobilejšiemu\nspôsobilejších\nspôsobilejším\nspôsobilejšími\nspôsobilejšiu\nspôsobilejšom\nspôsobilejšou\nspôsobilosť\nspôsobilý\nspôsobiť\nspôsobne\nspôsobnosť\nspôsobný\nspôsobovania\nspôsobovaný\nspôsobovať\nsposobový\nspôsobový\nspôsobujúci\nspota\nspot\nspotený\nspotiť\nspotmi\nspotový\nspotreb\nspotrebách\nspotrebám\nspotrebami\nspotreba\nspotrebenej\nspotrebič\nspotrebiteľ\nspotrebiteľka\nspotrebiteľné\nspotrebiteľných\nspotrebiteľovej\nspotrebiteľovo\nspotrebiteľovom\nspotrebiteľsky\nspotrebiteľský\nspotrebne\nspotrebno\nspotrebný\nspotrebný\nspotrebovania\nspotrebovanie\nspotrebovaniu\nspotrebovaný\nspotrebovať\nspotrebovávaný\nspotrebovávať\nspotrebúvaná\nspotrebúvané\nspotrebúvaného\nspotrebúvanej\nspotrebúvanie\nspotrebúvanú\nspotrebúvaných\nspotrebúvaným\nspotrebúvať\nspotrieb\nspotupiť\nspotvor\nspotvorene\nspotvorenina\nspotvorenosť\nspotvorený\nspotvoriť\nspotvorovať\nspotvorte\nspovedania\nspovedaný\nspovedať\nspoveď\nspovednica\nspovedník\nspovedný\nspovedz\nspovie\nspoza\nspozďaleč\nspozdene\nspozdí\nspozdiť\nspoznaná\nspoznané\nspoznanej\nspoznaní\nspoznania\nspoznanie\nSpoznaním\nspoznaniu\nspoznať\nspoznávajúci\nspoznávanie\nspoznávať\nspozornenia\nspozornenie\nspozorneniu\nspozornieť\nspozorovanie\nspozorovaný\nspozorovateľný\nspozorovať\nSPP\nspr\nspracovane\nspracovanie\nspracovaný\nspracovateľ\nspracovateľka\nspracovateľne\nspracovateľnosť\nspracovateľný\nspracovateľsky\nspracovateľský\nspracovať\nspracováť\nspracovávanie\nspracovávaný\nspracovávateľ\nspracovávateľka\nspracovávať\nspracúca\nspracujúce\nspracujúci\nspracujúcich\nspracujúcim\nspracúvajúci\nspracúvanie\nspracúvaný\nspracúvateľ\nspracúvateľka\nspracúvať\nspradený\nspráchnivený\nspráchnivieť\nspraný\nspráskať\nspraskať\nsprasknúť\nsprasknutý\nspráš\nspraš\nsprášiť\nsprašový\nsprašť\nsprašťať\nsprašťme\nsprašťte\nspratať\nspratávať\nspraté\nspratne\nspratnosť\nspratný\nsprato\nsprať\nspratúvať\nspráv\nsprava\nsprávach\nsprávane\nsprávanie\nsprávaný\nsprávar\nsprávarka\nsprávať\nsprava\nspráva\nsprávca\nsprávcova\nsprávcovej\nsprávcovo\nsprávcovou\nsprávcovský\nsprávcovstvo\nsprávcovu\nsprávcovým\nspravdepodobňujú\nspravený\nsprávička\nspravidelniť\nspravidla\nspraviť\nsprávkyň\nsprávkyňa\nsprávnejší\nsprávne\nsprávnosť\nsprávny\nspravodajca\nspravodaj\nspravodajka\nspravodajke\nspravodajkyňa\nspravodajsko\nspravodajsky\nspravodajský\nspravodajstvo\nspravodlivejší\nspravodlivo\nspravodlivosťN\nspravodlivý\nspravovacej\nspravovací\nspravovacia\nspravovaciu\nspravovacom\nspravovanie\nspravovaný\nspravovaný\nspravovať\nspravujúci\nspray\nspraž\nspražených\nspražiť\nspreadsheet\nsprecizovali\nSprecizovaním\nsprecizovať\nspred\nspredku\nspredmetnený\nspredmetni\nspredmetnime\nspredmetnite\nspredmetniť\nspredmetňovať\nsprednedávna\nspredo\nspredu\nsprehádzala\nsprehľadnená\nsprehľadnené\nsprehľadnenej\nsprehľadnenie\nsprehľadnenou\nsprehľadni\nsprehľadnime\nsprehľadnite\nsprehľadniť\nsprehľadňoval\nsprehľadňovala\nsprehľadňovali\nsprehľadňovalo\nsprehľadňovania\nsprehľadňovať\nsprehľadňuj\nsprehľadňuje\nsprehľadňujem\nsprehľadňujeme\nsprehľadňuješ\nsprehľadňujete\nsprehľadňujme\nsprehľadňujte\nsprehľadňujú\nsprehľadňujúc\nsprehýbaný\nsprejazdni\nsprejazdní\nsprejazdnia\nsprejazdniac\nsprejazdnil\nsprejazdnila\nsprejazdnili\nsprejazdnilo\nsprejazdním\nsprejazdnime\nsprejazdníme\nsprejazdníš\nsprejazdniť\nsprejazdnite\nsprejazdníte\nsprejazdňoval\nsprejazdňovala\nsprejazdňovali\nsprejazdňovalo\nsprejazdňovať\nsprejazdňuj\nsprejazdňuje\nsprejazdňujem\nsprejazdňujeme\nsprejazdňuješ\nsprejazdňujete\nsprejazdňujme\nsprejazdňujte\nsprejazdňujú\nsprejazdňujúc\nsprejera\nsprejer\nsprejeri\nsprejerka\nsprejermi\nsprejeroch\nsprejerom\nsprejerov\nsprejerovi\nsprejerský\nsprej\nsprejovať\nsprejový\nsprenever\nsprenevera\nspreneverenia\nspreneverenie\nsprenevereniu\nspreneverený\nspreneveriť\nspreneverovanie\nspreneverovať\nspreneverte\nsprenevier\nsprepadený\nsprepitné\nsprepitného\nsprepitnými\nspresnenia\nspresneniach\nspresneniam\nspresneniami\nspresnenie\nspresnením\nspresneniu\nspresnený\nspresni\nspresnime\nSpresnime\nspresnite\nSpresnite\nspresniť\nspresňovania\nspresňovanie\nspresňovaním\nspresňovaniu\nspresňovaný\nspresňovať\nsprešovanú\nsprešovať\nspretŕhané\nspretŕhania\nspretŕhanie\nspretrhaním\nspretrhaniu\nspretŕhaniu\nspretŕhaných\nspretrhaný\nspretrhať\nspretŕhať\nspretrhávať\nSpréva\nsprevádzajúci\nsprevádzania\nsprevádzanie\nsprevádzaním\nsprevádzaniu\nsprevádzaný\nsprevádzať\nsprevádzkoval\nsprevádzkovala\nsprevádzkovali\nsprevádzkovalo\nsprevádzkovať\nsprevádzkuj\nsprevádzkuje\nsprevádzkujem\nsprevádzkujeme\nsprevádzkuješ\nsprevádzkujete\nsprevádzkujme\nsprevádzkujte\nsprevádzkujú\nsprevádzkujúc\nSpréve\nsprévsky\nsprey\nspŕch\nsprcháreň\nsprchárňach\nsprchárňam\nspŕchať\nsprcha\nspŕchnuť\nsprchovací\nsprchovaní\nsprchovania\nsprchovanie\nsprchovať\nsprchový\nSPRI\nspriadací\nspriadač\nspriadačka\nspriadajúce\nspriadané\nspriadania\nspriadanie\nspriadaním\nspriadať\nspriahajúci\nspriahať\nspriahnutie\nspriahnuto\nspriahnuť\nspriahnutý\nspriama\nspriasť\nspriatelenia\nspriatelený\nspriateliť\nspriateľovať\nspriaznene\nspriaznenec\nspriaznenie\nspriaznenosť\nspriaznený\nspríbuznenosť\nspríbuznený\nspriečenia\nspriečenie\nspriečiť\nspriehľadni\nspriehľadní\nspriehľadnia\nspriehľadniac\nspriehľadnil\nspriehľadnila\nspriehľadnili\nspriehľadnilo\nspriehľadním\nspriehľadnime\nspriehľadníme\nspriehľadníš\nspriehľadniť\nspriehľadnite\nspriehľadníte\nspriehľadňoval\nspriehľadňovala\nspriehľadňovali\nspriehľadňovalo\nspriehľadňovania\nspriehľadňovanie\nspriehľadňovať\nspriehľadňuj\nspriehľadňuje\nspriehľadňujem\nspriehľadňujeme\nspriehľadňuješ\nspriehľadňujete\nspriehľadňujme\nspriehľadňujte\nspriehľadňujú\nspriehľadňujúc\nspriechodni\nspriechodní\nspriechodnia\nspriechodniac\nspriechodnil\nspriechodnila\nspriechodnili\nspriechodnilo\nspriechodním\nspriechodnime\nspriechodníme\nspriechodníš\nspriechodniť\nspriechodnite\nspriechodníte\nspriechodňoval\nspriechodňovala\nspriechodňovali\nspriechodňovalo\nspriechodňovať\nspriechodňuj\nspriechodňuje\nspriechodňujem\nspriechodňujeme\nspriechodňuješ\nspriechodňujete\nspriechodňujme\nspriechodňujte\nspriechodňujú\nspriechodňujúc\nspriemerkovanie\nspriemerkovaný\nspriemeroval\nspriemerovala\nspriemerovali\nspriemerovalo\nSpriemerovaná\nspriemerovanie\nspriemerovať\nspriemeruj\nspriemeruje\nspriemerujem\nspriemerujeme\nspriemeruješ\nspriemerujete\nspriemerujme\nspriemerujte\nspriemerujú\nspriemerujúc\nspriemyselnená\nspriemyselneného\nspriemyselnenej\nspriemyselnení\nspriemyselnenia\nspriemyselnenie\nspriemyselnenom\nspriemyselni\nspriemyselnime\nspriemyselnite\nspriemyselniť\nspriemyselňovaní\nspriemyselňovania\nspriemyselňovanie\nspriemyselňovať\nspriesvitnieť\nsprieť\nsprievod\nsprievodca\nsprievodcovský\nsprievodcovstvo\nsprievodka\nsprievodkyňa\nsprievodne\nsprievodný\nspriezračnenia\nspríjemnené\nspríjemnenie\nSpríjemnením\nspríjemneniu\nspríjemni\nspríjemnime\nspríjemnite\nspríjemniť\nspríjemňovať\nspríkrej\nspríkrejme\nspríkrejte\nspríkrejú\nspríkrejúc\nspríkrieť\nspríkriť\nspríkrovať\nsprinkler\nsprinklermi\nsprinklerov\nsprisahanec\nsprisahanecky\nsprisahanecký\nsprisahanie\nsprisahať\nsprísnenie\nsprísnený\nsprísnieť\nsprísniť\nsprísňované\nsprísňovaní\nsprísňovania\nsprísňovanie\nsprísňovaním\nsprísňovaniu\nsprísňovať\nsprísňujúci\nsprístupnenie\nsprístupnený\nsprístupni\nsprístupnime\nsprístupnite\nsprístupniť\nsprístupňované\nsprístupňovanieN\nsprístupňovaných\nsprístupňovať\nsprístupňujúce\nsprit\nSprite\nsprítomni\nsprítomnime\nsprítomnite\nsprítomniť\nsprítomňovať\nsprivatizoval\nsprivatizovala\nsprivatizovali\nsprivatizovalo\nsprivatizovaný\nsprivatizovať\nsprivatizuj\nsprivatizuje\nsprivatizujem\nsprivatizujeme\nsprivatizuješ\nsprivatizujete\nsprivatizujme\nsprivatizujte\nsprivatizujú\nsprivatizujúc\nsproblematizoval\nsproblematizovala\nsproblematizovali\nsproblematizovalo\nsproblematizovaniu\nsproblematizovať\nsproblematizuj\nsproblematizuje\nsproblematizujem\nsproblematizujeme\nsproblematizuješ\nsproblematizujete\nsproblematizujme\nsproblematizujte\nsproblematizujú\nsproblematizujúc\nsprobovať\nsprobúvať\nsproduktívnenia\nsproduktívnenie\nsproduktívnením\nsproduktívneniu\nsproduktívniť\nsproduktívňovať\nsprofanizovať\nsprofanovanejší\nsprofanovaný\nsprofanovať\nsprofesionalizoval\nsprofesionalizovala\nsprofesionalizovali\nsprofesionalizovaní\nsprofesionalizovanie\nsprofesionalizovať\nsprofesionalizuje\nsproletarizovanému\nspropagovať\nsprostácky\nsprostáctvach\nsprostáctvam\nsprostáctvo\nsprostáčik\nsprostáčisk\nsprostáčiská\nsprostáčiskách\nsprostáčiskám\nsprostáčisko\nsprostáčisku\nsprosták\nsprostaňa\nsprostaní\nsprostastý\nsprostené\nsprostení\nsprostenie\nsprosti\nsprostil\nsprosto\nsprostosť\nsprostota\nsprostred\nsprostredkovací\nsprostredkovane\nsprostredkovanie\nsprostredkovanosť\nsprostredkovaný\nsprostredkovateľ\nsprostredkovateľka\nsprostredkovateľňa\nsprostredkovateľní\nsprostredkovateľský\nsprostredkovateľstvo\nsprostredkovať\nsprostredkovávania\nsprostredkovávanie\nsprostredkovávaním\nsprostredkovávaný\nsprostredkovávať\nsprostredkujúce\nsprostredkujúci\nsprostredkujúcu\nsprostredkúvaná\nsprostredkúvané\nsprostredkúvaní\nsprostredkúvania\nsprostredkúvanie\nsprostredkúvaním\nsprostredkúvaniu\nsprostredkúvanú\nsprostredkúvať\nsprostučko\nsprostučký\nsprostučký\nsprosťuje\nsprostulinko\nsprostulinký\nsprostunko\nsprostunký\nsprostý\nsprotivený\nsprotiviť\nsprozaizovať\nsprracovávať\nsprš\nspršať\nspršia\nspŕška\nsprudka\nsprúh\nspruha\nspruhový\nSpruženie\nspružieť\nspružnení\nspružnenia\nspružnenie\nspružnením\nspružneniu\nspružni\nspružnieť\nspružnime\nspružnite\nspružniť\nspružňovať\nsprvoti\nsprvu\nsprznená\nsprzni\nsprznime\nsprznite\nsprzniť\nSPŠ\nsptäťiť\nSPU\nspucoval\nspucovala\nspucovali\nspucovalo\nspucovať\nspucuj\nspucuje\nspucujem\nspucujeme\nspucuješ\nspucujete\nspucujme\nspucujte\nspucujú\nspucujúc\nspuchnúť\nspuchnutý\nspuchrený\nspuknúť\nspúnsky\nspupne\nspupnosť\nspupný\nspurne\nspurno\nspurnosť\nspurný\nspústa\nspust\nspustenie\nspustený\nspusti\nspustime\nspustite\nspustiteľný\nspustiť\nspustlý\nspustnutie\nspustnutiu\nspustnuto\nspustnutosť\nspustnúť\nspustnutý\nspustošenie\nspustošený\nspustošený\nspustošiť\nspúšťací\nspúšťač\nspúšťadlo\nspúšťach\nspúštaní\nspúšťanie\nspúšťanieN\nspúšťaný\nspúšťateľný\nspúšťať\nspúšť\nspúšťový\nspút\nspútanie\nspútaný\nspútať\nspútavať\nsputnaný\nsputnať\nsputnávanie\nsputnávať\nsputnik\nsputnikový\nsputum\nspútum\nspyšnieť\nspýtať\nspýtavo\nspýtavý\nspytovanie\nspytovaný\nspytovať\nspyware\nspzvučný\nSQL\nsquare\nsquash\nsquaw\nSR\nsráč\nsračka\nsraľo\nsranda\nsrandovný\nsranec\nsratie\nsrať\nsráž\nsrb\nSrb\nsrbčín\nsrbčinách\nsrbčinám\nsrbčinami\nsrbčina\nSrbka\nsrbochorvátčin\nsrbochorvátčinách\nsrbochorvátčinám\nsrbochorvátčinami\nsrbochorvátčina\nsrbochorvátsky\nsrbochorvátsky\nSrbova\nSrbove\nSrbovej\nSrbovho\nSrbovo\nSrbovom\nSrbovu\nSrbových\nSrbovým\nSrbsko\nsrbsky\nsrbský\nsrďa\nsrd\nsrdcelomne\nsrdcelomný\nsrdcervúcejšej\nsrdcervúcejší\nsrdcervúcejšia\nsrdcervúcejšie\nsrdcervúcejšieho\nsrdcervúcejšiemu\nsrdcervúcejších\nsrdcervúcejším\nsrdcervúcejšími\nsrdcervúcejšiu\nsrdcervúcejšom\nsrdcervúcejšou\nsrdcervúci\nsrdcervúco\nsrdce\nsrdciami\nsrdciar\nsrdcovite\nsrdcovito\nsrdcovitý\nsrdcovka\nsrdcovnica\nsrdcovnicový\nsrdcovo\nsrdcovocievny\nsrdcový\nsrdečne\nsrdečnosť\nsrdečný\nsrdi\nsrdiečko\nsrdiečkový\nsrdienko\nsrdienok\nsrdiť\nsrdito\nsrditosť\nsrditý\nsrdnato\nsrdnatosť\nsrdnatý\nsrdný\nsrďo\nsrdoň\nsrdovitý\nsrďúch\nsrejovať\nsrež\nSriemskej\nsrieňa\nsrieň\nsrienistý\nsrieňmi\nsrieňoch\nsrieňom\nsrieňov\nsrieňový\nsrieňu\nsrílanský\nSRK\nsrkanie\nsrkať\nsŕkať\nsrkavo\nsŕkavo\nsrkavý\nsŕkavý\nsrkla\nsrkli\nsrklo\nsrkne\nsrknem\nsrkneme\nsrkneš\nsrknete\nsrkni\nsrknime\nsrknite\nsrknú\nsrknúc\nsrknúť\nsrknutie\nsrkol\nsrkot\nsrkotom\nSRN\nsŕn\nsŕňa\nsrňací\nsrňacina\nsrnách\nsrnám\nsŕňat\nsŕňatiek\nsŕňatko\nsrna\nsrnča\nsrnček\nsrnčekovi\nsrnčiat\nsrnčiatko\nsrnčiatok\nsrnčí\nsrnecL\nsŕnencami\nsŕnence\nsŕnencoch\nsŕnencom\nsŕneniec\nSrní\nSrnia\nSrnie\nSrním\nsrnka\nSRo\nsrsté\nsrstený\nsrsť\nsŕstka\nsŕstka\nsrstnatý\nsrsťový\nsrš\nsrša\nsršanie\nsršať\nsršení\nsršeň\nsršiace\nsršiaceho\nsršiaci\nsršiacimi\nsršiacom\nsršiť\nsršňa\nSršňa\nsršňami\nsršne\nsršni\nsršní\nsršňoch\nsršňom\nsršňou\nsršňov\nSršňová\nsršňovi\nSršňovou\nsršo\nsrvátka\nsrvátkový\nss\nSS\nSSC\nSSFZ\nSSL\nSSR\nSSS\nSSV\nSŠ\nSŠP\nSŠÚ\nst\nST\nsta\nsťa\nstabilit\nstabilita\nstabilizácia\nstabilizačne\nstabilizačno\nstabilizačný\nstabilizátor\nstabilizovane\nstabilizovania\nstabilizovanie\nstabilizovaním\nstabilizovaniu\nstabilizovaný\nstabilizovať\nstabilizujúci\nstabilne\nstabilnosť\nstabilný\nsťaby\nstaccat\nstaccatach\nstaccatam\nstaccato\nstacionár\nstacionármi\nstacionárny\nstacker\nstáčacej\nstáčacia\nstáčacie\nstáčacieho\nstáčacích\nstáčaciu\nstáčacou\nstáčania\nstáčanie\nstáčaním\nstáčaniu\nstáčaný\nstáčať\nstačiť\nstád\nstádach\nstádam\nstade\nstadeto\nstadiaľ\nstadiál\nstadiaľto\nStadion\nstádočiek\nstádočko\nstádo\nstádosť\nstádovite\nstádovito\nstádovitosť\nstádovitý\nstádovo\nstádovosť\nstádový\nstafylodermia\nstafylogénny\nstafylokok\nstafylokokový\nstafylokokus\nstagflácia\nstagiona\nstagnácia\nstagnačný\nstagnovaní\nstagnovania\nstagnovanie\nstagnovaním\nstagnovať\nstagnujúcej\nstagnujúci\nsťahaný\nsťahať\nsťah\nsťahovací\nsťahovač\nsťahovákov\nsťahovanie\nsťahovaný\nsťahovať\nsťahovavý\nsťahujúci\nstách\nstachanovci\nstachanovského\nstaj\nstaja\nstajený\nstají\nstajil\nstajili\nstajiť\nstájling\nstajňa\nstajní\nstajňový\nStakáto\nStakčín\nStakčína\nStakčíne\nStakčínska\nstakčínskeho\nstakčínskej\nstalagmit\nstalagmitmi\nstalagnát\nstalaktit\nstalaktitmi\nstále\nstálic\nstálica\nstálicový\nStalingrad\nstalingradský\nstalinizmus\nstalinský\nstálofarebnosť\nstálofarebný\nstálosť\nstáložiarny\nstály\nstám\nstami\nstámiliónmi\nstámiliónoch\nstámiliónom\nstámiliónov\nstámiliónový\nstámilióny\nstamodtiaľ\nStampa\nstan\nStanca\nstancia\nstanciach\nStanča\nStandard\nstanica\nStaníček\nstanička\nstaničný\nStaník\nStaníka\nStaníkovej\nstanín\nstaniol\nstaniolový\nStanislava\nStanislav\nStankov\nStankova\nStankovany\nStankove\nStankovi\nStankovianskeho\nStankoviansky\nStankovsky\nStankovský\nstánkový\nstanný\nStano\nstánok\nStanova\nstanovách\nstanovám\nstanovami\nstanované\nstanovaní\nstanovania\nstanovanie\nstanovaním\nstanovať\nStanove\nstanovene\nstanovenie\nstanovený\nStanovi\nstanoviny\nstanovísk\nstanovisko\nstanovíšť\nstanovišťa\nstanovišťami\nstanovište\nstanovišti\nstanovištných\nstanovištnými\nstanovišťom\nstanovišťu\nstanoviť\nstanovo\nstanovovanie\nstanovovaný\nstanovovať\nStanovu\nstanovy\nstanový\nstanóza\nstápaný\nstápať\nsťapnúť\nstar\nstara\nstarajúci\nstaranie\nstarať\nsťarbavejú\nstarcov\nstarček\nstarčkov\nstarec\nstareckosť\nstarecky\nstarecký\nstarectvo\nstarejme\nstarejšia\nstarejší\nstarejte\nstarejú\nstarejúc\nstarena\nstarenka\nstarenkina\nstárež\nstaríci\nstarieť\nstariga\nstarigáň\nstarigáni\nstarík\nstarinár\nstarinársky\nstarinársky\nstarinárstvach\nstarinárstvam\nstarinárstvo\nstarina\nstarinný\nStarinský\nstarizný\nSTARKO\nstarký\nstarla\nstarli\nstarlo\nstarnúci\nstarnutie\nstarnúť\nstaro\nstaroangl\nstarôb\nstarobách\nstarobám\nstarobami\nstaroba\nstarobinec\nStarobno\nstarobný\nstarobylejšej\nstarobylejší\nstarobylejšia\nstarobylejšie\nstarobylejšieho\nstarobylejšiemu\nstarobylejších\nstarobylejším\nstarobylejšími\nstarobylejšiu\nstarobylejšom\nstarobylejšou\nstarobylo\nstarobylosť\nstarobylý\nStarobystrickej\nStaročech\nstaročes\nStaročeská\nstaročeské\nstaročeskú\nstáročia\nstáročie\nstaročín\nstáročný\nstarodávne\nstarodávno\nstarodávnosť\nstarodávny\nstarodievocky\nstarodievocký\nstarodievoctvo\nstaroegypt\nstaroegyptský\nstarofranc\nstarogerm\nstarogréc\nstarogrécky\nstarogruz\nStarohájska\nStarohájskej\nstarohôr\nstarohorách\nstarohorám\nstarohorami\nStarohorská\nStarohorskej\nstarohory\nstaroind\nstaroindický\nstaroirán\nstarojap\nstarokatolíčka\nstaroklasický\nstarokresťanskom\nstarol\nstaromestský\nstaromil\nstaromilec\nstaromilsky\nstaromilský\nstaromilstvo\nstaromládenecky\nstaromládenecký\nstaromládenectvo\nstaromódne\nstaromódnosť\nstaromódny\nstaronový\nstarootcovský\nstaropanensky\nstaropanenský\nstaropanenstvo\nstarorím\nstarorímska\nstarorímske\nstarorímskeho\nstarorímskej\nstarorímskemu\nstarorímski\nstarorímskom\nstarorímskou\nstarorímsku\nstarorímsky\nstarorímskych\nstarorímskym\nstarorímskymi\nstarorodičovský\nstarorus\nstaroruský\nstaroružový\nstaroslávny\nstaroslivosť\nstaroslovan\nstaroslovanský\nstaroslovenčín\nstaroslovenčinách\nstaroslovenčinám\nstaroslovenčinami\nstaroslovenčina\nstaroslovensky\nstaroslovenský\nstaroslovien\nstaroslovienčina\nstaroslovienčina\nstarosloviensky\nstarosloviensky\nstarosta\nstarostiek\nstarostime\nstarostite\nstarostiť\nstarosť\nstarostka\nstarostlivo\nstarostlivosť\nstarostlivý\nstarostoval\nstarostovala\nstarostovali\nstarostovalo\nstarostovaní\nstarostovania\nstarostovanie\nstarostovať\nStarostové\nstarostovia\nstarostovský\nstarostovstvo\nstarostov\nstarostuj\nstarostuje\nstarostujem\nstarostujeme\nstarostuješ\nstarostujete\nstarostujme\nstarostujte\nstarostujú\nstarostujúc\nstarosvat\nstarosvetsky\nstarosvetský\nstarotal\nstaroturianska\nstaroturianskeho\nstaroturianskej\nstaroturiansku\nStaroturianskym\nstarousadlé\nstarousadlícky\nstarousadlíčka\nstarousadlík\nstarovek\nstarovekosť\nstaroveký\nStaroveský\nstarozákonne\nstarozákonný\nStaroznámu\nstarožid\nstarožidovská\nstarožitne\nstarožitnícky\nstarožitníctvach\nstarožitníctvam\nstarožitníctvo\nstarožitník\nstarožitnosť\nstarožitný\nstaršina\nstarší\nstaručičko\nstaručičký\nstaručko\nstaručký\nstarúch\nstarucha\nstarulinko\nstarulinký\nstarunko\nstarunký\nstaruško\nstarušký\nstarý\nstasimon\nStaškov\nStaškova\nstat\nstaťami\nstatampér\nstatarický\nstatcoulomb\nstate\nstatfarad\nstathenry\nstati\nstatí\nstátí\nstátia\nstatiach\nstátiach\nstatiam\nstatickosť\nstaticky\nstatický\nstatička\nstatička\nstátie\nsťatie\nstatika\nstatik\nstátím\nstation\nstátisíce\nstátisícmi\nstátisícoch\nstátisícom\nstátisícov\nstátisícovo\nstátisícový\nstátiu\nsťatiu\nstatív\nstatíve\nstatkár\nstatkárka\nstatkárovom\nstatkársky\nstatkársky\nstatne\nstatnosť\nstatný\nstatocysta\nstatocyt\nstatoček\nstatočka\nstatočkami\nstatočkoch\nstatočkom\nstatočkov\nstatočku\nstatočky\nstatočne\nstatočnosť\nstatočný\nstatohm\nstatok\nstator\nstatorový\nstaťou\nstatsiemens\nsťať\nstatu\nstatua\nstatuárny\nstatus\nstatvolt\nstať\nstáť\nstaty\nsťatý\nstaurolit\nstavač\nstavadlo\nstavadlový\nstávajúce\nstávajúceho\nstávajúcej\nstávajúci\nstávajúcich\nstávajúcim\nstavajúcimi\nstávajúcom\nstávajúcu\nstavane\nstavanieN\nstavaný\nstavár\nstavarina\nstavarine\nstavariny\nstavársky\nstavať\nstávať\nstav\nstavbár\nstavbárka\nstavbársky\nstavbársky\nstavba\nstavbička\nstavbyvedúci\nstavcový\nstavebne\nstavebnica\nstavebnícky\nstavebnicovo\nstavebnicový\nstavebníctvach\nstavebníctvam\nstavebníctvo\nstavebnička\nstavebnička\nstavebníčka\nstavebník\nstavebnina\nstavebno\nstavebnomontážny\nstavebnoprávne\nstavebnoprávnej\nstavebnostolárska\nstavebnostolárskymi\nstavebný\nstavec\nstáveký\nstavenia\nstavenie\nstavenísk\nstavenisko\nstaveniskový\nstaveniu\nstavený\nstavidlo\nstavidlový\nstavikrv\nstavikrve\nstavísk\nstavisko\nstaviteľ\nstaviteľka\nstaviteľný\nstaviteľský\nstaviteľstvo\nstaviť\nstavív\nstavivo\nstávkar\nstávkarka\nstávkarsky\nstávkarský\nstávkársky\nstávka\nstávkokazi\nstávkoval\nstávkovali\nstávkovalo\nstávkovaní\nstávkovania\nstávkovanie\nstávkovaním\nstávkovaniu\nstávkovať\nstávkový\nstávkuje\nStávkujeme\nstávkujú\nStavoindustria\nStavoindustrie\nStavoindustrii\nStavoindustriou\nStavokombinát\nStavokombinátu\nstavovali\nstavovalo\nstavovanie\nstavovcovi\nstavovcový\nstavovec\nstavovsky\nstavovský\nstavový\nStavropoľské\nstavropoľskí\nstavropoľskom\nstavuje\nstavujú\nstáza\nstazimorfia\nstážach\nstážam\nstáž\nsťažene\nsťaženia\nsťaženie\nsťažením\nsťaženiu\nsťažeň\nsťaženosť\nsťažený\nsťažieť\nstážista\nstážistka\nsťažiť\nsťažka\nsťažnosť\nsťažnostný\nsťažňový\nstážoval\nstážovala\nstážovali\nstážovalo\nsťažovania\nsťažovanie\nsťažovaním\nsťažovaniu\nsťažovaný\nstažovať\nstážovať\nsťažovateľ\nsťažovateľka\nsťažovať\nstážový\nstážuj\nstážuje\nstážujem\nstážujeme\nstážuješ\nstážujete\nstážujme\nstážujte\nstážujú\nstážujúc\nsťažujúce\nsťažujúceho\nsťažujúci\nsťažujúcich\nste\nsteak\nsteapsín\nstearan\nstearín\nstearínový\nsteatit\nSteatit\nsteatopygia\nsteatorea\nsteatóza\nstebiel\nstebielcach\nstebielcam\nstebielce\nstebielec\nstebielko\nstebielok\nsteblo\nsteblovitý\nsteblový\nStebnícka\nStebník\nsteeloskop\nsteeplechase\nstefanit\nstegosaurus\nsteh\nstehenný\nstehien\nstehience\nstehienko\nstehienok\nstehličí\nstehlík\nstehlíkovi\nStehlíkovi\nstehno\nstehnový\nstehovaní\nstehovanie\nstehovať\nstechiometria\nstejšn\nstekajúci\nstekanie\nstekaný\nstekať\nstekutiť\nstekuťovať\nStel\nsteľ\nstéla\nstelárny\nStela\nstelážový\nstelecký\nstelesnenie\nstelesnený\nstelesni\nstelesní\nstelesnia\nstelesniac\nstelesnil\nstelesnila\nstelesnili\nstelesnilo\nstelesním\nstelesnime\nstelesníme\nstelesníš\nstelesniť\nstelesnite\nstelesníte\nstelesňovaná\nstelesňovania\nstelesňovať\nstelesňujúci\nstelit\nstelív\nstelivo\nstelivový\nstella\nStella\nStelle\nStellou\nStellu\nStelly\nstély\nstemnené\nstemnenie\nstemni\nstemnieť\nstemnievať\nstemnime\nstemnite\nstemniť\nstemňovanie\nstemňovať\nSten\nsteň\nstenanie\nstenár\nstenárskeho\nstenať\nstenávanie\nstenávať\nstenavo\nstenavý\nstena\nstenčenie\nstenčením\nstenčený\nstenči\nstenčime\nstenčite\nstenčiť\nstenčovaného\nstenčovania\nstenčovanie\nstenčovaniu\nstenčovať\nstenem\nsteneme\nsteneš\nstenete\nstenický\nstenkať\nstenknúť\nstenknutý\nsteňme\nstenocefália\nstenodaktylografia\nstenofág\nstenogr\nstenografa\nstenograf\nstenografi\nstenografia\nstenograficky\nstenografický\nstenografka\nstenografovať\nstenografovi\nstenogram\nstenokardia\nstenokória\nStenom\nstenotypia\nstenotypista\nstenotypistka\nstenovanie\nstenový\nstenóza\nsteňte\nStentor\nstentorický\nstentorský\nstenú\nstenúc\nstepe\nsteper\nSteper\nsteperiť\nsteperte\nstep\nsteplej\nsteplejme\nsteplejte\nsteplejú\nsteplejúc\nsteplieť\nstepliť\nstepmi\nstepnatý\nstepný\nstepoch\nstepom\nstepov\nstepovanie\nstepovať\nstepper\nstepu\nstepy\nsteradián\nster\nstereakustika\nstereí\nstereoakustika\nstereoefekt\nstereofilmy\nstereofónia\nstereofonicky\nstereofonický\nstereofónna\nstereofónne\nstereofónny\nstereografia\nstereogramofón\nstereochémia\nstereoizomér\nstereoizoméria\nstereo\nstereometria\nstereometrický\nstereopsia\nstereoskop\nstereoskopia\nstereoskopický\nstereotyp\nstereotypia\nstereotypne\nstereotypnosť\nstereotypný\nsterický\nsterigať\nsterilácia\nsterilita\nsterilizácia\nsterilizačne\nsterilizačný\nsterilizátor\nsterilizovania\nsterilizovanie\nsterilizovaný\nsterilizovať\nsterilne\nsterilnosť\nsterilný\nsterkobilín\nsterkorálny\nsterkus\nStern\nSterna\nsternbergit\nsternitída\nSternom\nsternotómia\nSternu\nsternum\nsteroid\nsteroidmi\nsteroidu\nsteroidy\nsterol\nstesá\nstesk\nsteso\nstesso\nstetoskop\nstetoskopia\nstevard\nstevardka\nstevardský\nsteward\nstewardka\nstfr\nstiahnuteľný\nstiahnutie\nstiahnuť\nstiahnutý\nstibán\nstibikonit\nstiecť\nStiel\nstielka\nstien\nstieniť\nstienka\nstierací\nstierač\nstieračka\nstieradlo\nstieraní\nstierania\nstieranie\nstieraniu\nstierať\nstierka\nstiesnene\nstiesnenie\nstiesneno\nstiesnenosť\nstiesnený\nstiesňovať\nstiesňuje\nstiesňujúcejšej\nstiesňujúcejší\nstiesňujúcejšia\nstiesňujúcejšie\nstiesňujúcejšieho\nstiesňujúcejšiemu\nstiesňujúcejších\nstiesňujúcejším\nstiesňujúcejšími\nstiesňujúcejšiu\nstiesňujúcejšom\nstiesňujúcejšou\nstiesňujúci\nstiesňujúco\nstigiem\nstigmasterol\nstigmatizácii\nstigmatizovať\nstigma\nstíhací\nstíhač\nstíhačka\nstíhanie\nstíhaný\nstíhateľ\nstíhatelia\nstíhateľný\nstíhateľov\nstíhať\nstihnuté\nstihnutia\nstihnutie\nstihnúť\nstihomam\nsticha\nstícha\nstíchaj\nstíchajme\nstíchajte\nstíchajú\nstíchajúc\nstíchal\nstíchala\nstíchali\nstíchalo\nstícham\nstíchame\nstíchaš\nstíchať\nstíchate\nstíchnuté\nstíchnutia\nstíchnuť\nstilbén\nstilbit\nstileto\nStilom\nstilton\nstilus\nstimulácia\nstimulačne\nstimulačný\nStimulatívna\nstimulatívne\nstimulatívnej\nstimulatívnu\nstimulatívny\nstimulatívnym\nstimulátor\nstimul\nstimulmi\nstimulovania\nstimulovanie\nstimulovaním\nstimulovaniu\nstimulovaný\nstimulovať\nstimulujúce\nstimulus\nstínacích\nstínaní\nstínania\nstínanie\nstínať\nstíplčejs\nstipulovať\nstisícnásobila\nstískať\nstisk\nstisl\nstisnuté\nstisnutí\nstisnutie\nstisnutím\nstisnúť\nstisnutými\nstíšenie\nstíšením\nstíšený\nstíšiť\nstišovať\nstivkastý\nSTK\nstĺ\nstláčací\nstláčane\nstláčanie\nstláčaný\nstláčať\nstlačene\nstlačenie\nstlačený\nstlačiteľnosť\nstlačiteľný\nstlačiť\nstlačovane\nstlačovanie\nstlačovaniu\nstlačovaný\nstlačovať\nstľapčený\nstľapči\nstľapčime\nstľapčite\nstľapčiť\nstľapkaný\nstľapkať\nstľapkavený\nstľapnúť\nstlať\nstĺcť\nstlej\nstlejme\nstlejte\nstlejú\nstlejúc\nstlesknúť\nstlieť\nstlievať\nstĺkať\nstlmenia\nstlmenie\nStlmením\nstlmeniu\nstlmený\nstlmi\nstlmiť\nstlmovania\nstlmuje\nstĺpa\nstĺp\nstĺpcový\nstĺpček\nstĺpec\nstĺpik\nstĺpiková\nstĺpikovitý\nstĺpisko\nstĺpkom\nstĺpkovitý\nstĺpky\nstĺporadie\nstĺpovinou\nstĺpoviny\nstĺpovite\nstĺpovito\nstĺpovitý\nstĺpový\nStlstnutie\nstlstnúť\nstmavenia\nstmavenie\nstmavieť\nstmaviť\nstmavnúť\nstmavnutý\nstmelene\nstmelenie\nstmelenosť\nstmelený\nstmeliť\nstmeľovania\nstmeľovanie\nstmeľovať\nstmi\nstmieť\nstmievač\nstmievanie\nstmievaním\nstmievať\nstmime\nstmite\nstmiť\nSTN\nsťne\nsťnem\nsťneme\nsťneš\nsťnete\nsťni\nsťnime\nsťnite\nsťnú\nsťnúc\nstoa\nstobohovať\nstocentový\nsto\nstočenie\nstočením\nstočený\nstočiť\nstočlenný\nstočné\nstočného\nstočnému\nstočnom\nstočným\nstodesať\nstodesaťtisíc\nstodesiatich\nstodeväť\nstodeväťdesiat\nstodeväťdesiatdeväť\nstodeväťdesiatdeväťtisíc\nstodeväťdesiatdva\nstodeväťdesiatdvatisíc\nstodeväťdesiatjeden\nstodeväťdesiatjedentisíc\nstodeväťdesiatosem\nstodeväťdesiatosemtisíc\nstodeväťdesiatpäť\nstodeväťdesiatpäťtisíc\nstodeväťdesiatsedem\nstodeväťdesiatsedemtisíc\nstodeväťdesiatšesť\nstodeväťdesiatšesťtisíc\nstodeväťdesiatštyri\nstodeväťdesiatštyritisíc\nstodeväťdesiattisíc\nstodeväťdesiattri\nstodeväťdesiattritisíc\nstodevätnásť\nstodevätnásťtisíc\nstodeväťtisíc\nstodol\nstodola\nStodolní\nstodva\nstodvadsať\nstodvadsaťdeväť\nstodvadsaťdeväťtisíc\nstodvadsaťdva\nstodvadsaťdvatisíc\nstodvadsaťjeden\nstodvadsaťjedentisíc\nstodvadsaťosem\nstodvadsaťosemtisíc\nstodvadsaťpäť\nstodvadsaťpäťtisíc\nstodvadsaťsedem\nstodvadsaťsedemtisíc\nstodvadsaťšesť\nstodvadsaťšesťtisíc\nstodvadsaťštyri\nstodvadsaťštyritisíc\nstodvadsaťtisíc\nstodvadsaťtri\nstodvadsaťtritisíc\nstodvadsaťťsedem\nstodvadsiati\nstodvadsiatich\nstodvadsiatimi\nstodvanásť\nstodvanástich\nstodvanásťtisíc\nstodvatisíc\nstoh\nstohektárový\nstohoval\nstohovaní\nstohovania\nstohovanie\nstohovaním\nstohovať\nstohový\nstohuje\nstochastický\nstoicizmus\nstoicky\nstoický\nstoik\nstojací\nstojaci\nstojačik\nstojačky\nstojan\nstojanček\nstojanový\nstojato\nstojatosť\nstojatý\nstoja\nstojedenásť\nstojedenásťtisíc\nstojeden\nstojedentisíc\nstojísk\nstojisko\nstoj\nstojka\nstojmo\nstojné\nstojrázny\nstôk\nStokaj\nstokať\nstoka\nstok\nstokilový\nStoklas\nStoklasa\nStoklasu\nstoknúť\nstokorún\nstokoruna\nstokorunáčka\nstokorunách\nstokorunák\nstokorunami\nstokorune\nstokorunový\nstokorunu\nstokoruny\nstokový\nstokráska\nstokrát\nstol\nstolár\nstolárčina\nstolárčiť\nstoláreň\nstolárne\nstolárska\nstolárske\nstolárskeho\nstolárskej\nstolárskemu\nstolárski\nstolárskom\nstolárskou\nstolársku\nstolársky\nstolárskych\nstolárskym\nstolárskymi\nstolárstvach\nstolárstvam\nstolárstvo\nstôl\nstolcovi\nstolcový\nstolček\nstolec\nStoletá\nstoleté\nstoletí\nstoletie\nstolica\nstolicový\nstolička\nstoličkový\nstoličný\nstolík\nstolistý\nstolmi\nstolnotenisový\nstolný\nstolovací\nstolovaní\nstolovania\nstolovanie\nstolovaniu\nstolovať\nstolovník\nstolový\nstolujúcich\nstóma\nstomachikum\nstomachoskopia\nstomatitída\nstomatológ\nstomatológia\nstomatologicky\nstomatologický\nstomatologička\nstomatóza\nstometrový\nstomiliónový\nstoň\nstonanie\nstonásobkom\nstonásobku\nstonásobky\nstonásobný\nstonásobok\nstonať\nstonávať\nStonave\nstonavo\nstonavý\nston\nstonem\nstoneme\nstoneš\nstonete\nstonkať\nstonka\nstonkový\nstoňme\nstonôh\nstonoha\nstonožka\nstonôžka\nstoňte\nstonú\nstonúc\nstoosem\nstoosemdesiat\nstoosemdesiatdeväť\nstoosemdesiatdeväťtisíc\nstoosemdesiatdva\nstoosemdesiatdvatisíc\nstoosemdesiatjeden\nstoosemdesiatjedentisíc\nstoosemdesiatkou\nstoosemdesiatosem\nstoosemdesiatosemtisíc\nstoosemdesiatpäť\nstoosemdesiatpäťtisíc\nstoosemdesiatsedem\nstoosemdesiatsedemtisíc\nstoosemdesiatšesť\nstoosemdesiatšesťtisíc\nstoosemdesiatšesťtisícštyristo\nstoosemdesiatštyri\nstoosemdesiatštyritisíc\nstoosemdesiattisíc\nstoosemdesiattri\nstoosemdesiattritisíc\nstoosemnásť\nstoosemnásťtisíc\nstoosemtisíc\nstoosemtisícsto\nstôp\nstopár\nstopáre\nstopárka\nstopársky\nstopársky\nstopárstvach\nstopárstvam\nstopárstvo\nstopáru\nstopäť\nstopäťdesiat\nstopäťdesiatdeväť\nstopäťdesiatdeväťtisíc\nstopäťdesiatdva\nstopäťdesiatdvatisíc\nstopäťdesiate\nstopäťdesiatich\nstopäťdesiatim\nstopäťdesiatjeden\nstopäťdesiatjedentisíc\nstopäťdesiatky\nstopäťdesiatosem\nstopäťdesiatosemtisíc\nstopäťdesiatpäť\nstopäťdesiatpäťtisíc\nstopäťdesiatsedem\nstopäťdesiatsedemtisíc\nstopäťdesiatsedemtisícšesťsto\nstopäťdesiatšesť\nstopäťdesiatšesťtisíc\nstopäťdesiatštyri\nstopäťdesiatštyritisíc\nstopäťdesiattisíc\nstopäťdesiattri\nstopäťdesiattritisíc\nstopäťdesiattritisícšesťsto\nstopäťdesiaty\nstopätnásť\nstopätnásťtisíc\nstopäťtisíc\nstopa\nstop\nstopenie\nstoper\nstopér\nstopercentej\nstopercentne\nstopercentnosť\nstopercentný\nstopérka\nstopérsky\nstopiť\nstopka\nstopkový\nstopky\nstopnutia\nstopnutie\nstopnutím\nstopnúť\nstopnutý\nstopo\nstopôčka\nstoporenia\nstopovací\nstopovač\nstopovania\nstopovanie\nstopovateľ\nstopovateľov\nstopovať\nstopovitý\nstopový\nstopper\nStopper\nstoprvý\nstor\nstór\nstórach\nstorako\nstoraký\nstóram\nstóra\nstóra\nstore\nstorien\nstorn\nstorno\nstornovania\nstornovanie\nstornovaním\nstornovaniu\nstornovaný\nstornovať\nstoro\nstoročie\nstoročnica\nstoročný\nstory\nstôs\nstosedem\nstosedemdesiat\nstosedemdesiatdeväť\nstosedemdesiatdeväťtisíc\nstosedemdesiatdva\nstosedemdesiatdvatisíc\nstosedemdesiatjeden\nstosedemdesiatjedentisíc\nstosedemdesiatosem\nstosedemdesiatosemtisíc\nstosedemdesiatpäť\nstosedemdesiatpäťtisíc\nstosedemdesiatsedem\nstosedemdesiatsedemtisíc\nstosedemdesiatšesť\nstosedemdesiatšesťtisíc\nstosedemdesiatštyri\nstosedemdesiatštyritisíc\nstosedemdesiattisíc\nstosedemdesiattri\nstosedemdesiattritisíc\nstosedemnásť\nstosedemnásťtisíc\nstosedemtisíc\nstôsik\nstostupňový\nstošesť\nstošesťdesiat\nstošesťdesiatdeväť\nstošesťdesiatdeväťtisíc\nstošesťdesiatdva\nstošesťdesiatdvatisíc\nstošesťdesiatimi\nstošesťdesiatjeden\nstošesťdesiatjedentisíc\nstošesťdesiatkou\nstošesťdesiatosem\nstošesťdesiatosemtisíc\nstošesťdesiatpäť\nstošesťdesiatpäťtisíc\nstošesťdesiatsedem\nstošesťdesiatsedemtisíc\nstošesťdesiatšesť\nstošesťdesiatšesťtisíc\nstošesťdesiatštyri\nstošesťdesiatštyritisíc\nstošesťdesiattisíc\nstošesťdesiattri\nstošesťdesiattritisíc\nstošestnásť\nstošestnásťtisíc\nstošesťtisíc\nstoštrnásť\nstoštrnásťtisíc\nstoštyri\nstoštyridsať\nstoštyridsaťdeväť\nstoštyridsaťdeväťtisíc\nstoštyridsaťdva\nstoštyridsaťdvatisíc\nstoštyridsaťjeden\nstoštyridsaťjedentisíc\nstoštyridsaťosem\nstoštyridsaťosemtisíc\nstoštyridsaťpäť\nstoštyridsaťpäťtisíc\nstoštyridsaťsedem\nstoštyridsaťsedemtisíc\nstoštyridsaťšesť\nstoštyridsaťšesťtisíc\nstoštyridsaťštyri\nstoštyridsaťštyritisíc\nstoštyridsaťtisíc\nstoštyridsaťtri\nstoštyridsaťtritisíc\nstoštyritisíc\nstotina\nstotinka\nstotinný\nstotinový\nstotisíc\nstotisícina\nstotisícina\nstotisíci\nstotisíckou\nstotisícku\nstotisícky\nstotisícok\nstotisícovka\nstotisícový\nstoto\nstotonovej\nstotožnenia\nstotožnenie\nstotožnením\nstotožneniu\nstotožnený\nstotožni\nstotožnime\nstotožnite\nstotožniť\nstotožňovanie\nstotožňovaním\nstotožňovaniu\nstotožňovaný\nstotožňovať\nstotožňujúce\nstotožňujúci\nstotožňujúcim\nstotri\nstotridsať\nstotridsaťdeväť\nstotridsaťdeväťtisíc\nstotridsaťdva\nstotridsaťdvatisíc\nstotridsaťjeden\nstotridsaťjedentisíc\nstotridsaťosem\nstotridsaťosemtisíc\nstotridsaťpäť\nstotridsaťpäťtisíc\nstotridsaťsedem\nstotridsaťsedemtisíc\nstotridsaťšesť\nstotridsaťšesťtisíc\nstotridsaťštyri\nstotridsaťštyritisíc\nstotridsaťtisíc\nstotridsaťtri\nstotridsaťtritisíc\nstotridsiatich\nstotrinásť\nstotrinásťtisíc\nstotritisíc\nstovák\nstoveký\nstovežatý\nstovka\nstovkový\nstovôčka\nstožiar\nstožiarmi\nstožiarový\nStožku\nStožok\nstr\nstráb\nstrábiť\nstrabizmus\nstrácajúci\nstrácanieN\nstrácať\nstračí\nstračkavý\nstrádaní\nstrádania\nstrádanie\nstrádaním\nstrádaniu\nstrádať\nstraddle\nstradivárky\nstraf\nstráchať\nstrach\nstrachopud\nstrachopudka\nstrachopudsky\nstrachopudský\nstrachopudstvo\nstrachostivý\nstrachoš\nstrachovaného\nstrachovaných\nstrachovať\nstrachujúci\nstrachuplný\nstrák\nstrakatieť\nstrakatina\nstrakatiť\nstrakato\nstrakatosť\nstrakatý\nstrakavieť\nstrakavo\nstrakavosť\nstrakavý\nstraka\nstrakonický\nstrakoš\nstrakoše\nstrakuľa\nstramín\nstrán\nstráňach\nstráňam\nStráňany\nStráňav\nStráňavami\nStráňavy\nstrana\nstrand\nstráň\nstranených\nstrangulácia\nstrangúria\nstraníckosť\nstranícky\nstraníctvach\nstraníctvam\nstraníctvo\nstranička\nstraníčka\nstraník\nstraniskový\nstraniť\nstrániť\nstránka\nstránkovací\nstránkovane\nstránkovanie\nstránkovaný\nstránkovať\nstránkovo\nstránkový\nstranný\nstránočka\nstranovo\nstranový\nStránska\nStránske\nStránskeho\nStránskej\nStránskom\nStránskou\nStránsku\nStránsky\nstransparentnenie\nstrapáč\nstrapačka\nstrapák\nStrapáka\nStrapákovou\nstrapaňa\nstrapáňa\nstrapáň\nstrapaní\nstrapánik\nstrapatiť\nstrapato\nstrapatosť\nstrapatý\nstrapcovitý\nstrapcový\nstrapček\nstrapec\nstrápene\nstrápenosť\nstrápený\nstrapiť\nstrápiť\nStrapka\nstrapká\nstrapkaj\nstrapkajme\nstrapkajte\nstrapkajú\nstrapkajúc\nstrapkal\nstrapkala\nstrapkali\nstrapkalo\nstrapkám\nstrapkáme\nstrapkanie\nstrapkáš\nstrapkať\nstrapkáte\nstrapkovať\nStrapku\nstrápnili\nstrápňovať\nstrapúch\nstrapúň\nstrasenie\nstrass\nStrass\nStrasse\nstrastiplne\nstrastiplnosť\nstrastiplný\nstrasť\nstrastne\nstrastný\nstrašená\nstrašení\nstrašenia\nstrašenie\nstrašením\nstrašeniu\nstrašiak\nstrašiaku\nstrašiaky\nstrašidelne\nstrašidelnosť\nstrašidelný\nstrašidielko\nstrašidielok\nstrašidlo\nstrašievať\nstrašiť\nstraško\nStraškove\nstrašlivo\nstrašlivý\nstrašnejší\nstrašne\nstrašný\nstrata\nstratég\nstratégia\nstrategicky\nstrategický\nstrategický\nstrategička\nstratena\nstratene\nstratenec\nstratenia\nstratenie\nStratením\nstrateniu\nstrateno\nstratenosti\nstratený\nstratifikácia\nstratifikačný\nstratifikovaný\nstratigrafia\nstratigrafickom\nstratiť\nstratokumulus\nstratopauza\nstratosfér\nstratosférach\nstratosféram\nstratosféra\nstratosferický\nstratosférický\nstratosť\nstratov\nstratove\nstratovízia\nstratovo\nstratovosť\nstratovulkán\nstratový\nstratum\nstratus\nStratus\nstravách\nstravám\nstravami\nstrava\nstrávenie\nstrávením\nstrávený\nstráviteľnosť\nstráviteľný\nstráviť\nstravné\nstravníčka\nstravníčka\nstravník\nstravný\nstravovací\nstravovanie\nstravovať\nstravovňa\nstravovní\nstravovňu\nstravujúci\nstravujúcimi\nstrazza\nStráža\nstrážach\nStrážach\nstrážam\nstrážca\nstrážcovej\nstráž\nstrážene\nstráženie\nstrážený\nstrážiaci\nstrážievať\nstrážiť\nStrážkach\nStrážky\nstrážkyň\nstrážkyňa\nstrážmajster\nstrážmajsterka\nstrážmajsterský\nstrážnic\nstrážnica\nStrážnický\nstrážnička\nstrážnik\nstrážny\nStrážov\nStrážove\nStrážovská\nStrážovské\nStrážovských\nStrážska\nStrážske\nStrážskeho\nstrážskej\nStrážskom\nStrážsku\nStrážskych\nStrážskym\nstrbčovať\nstrckať\nstrčenie\nstrčený\nstrčiť\nstrčkovať\nstreamer\nstreb\nstrebanica\nstrebať\nstrebká\nstrebkaj\nstrebkajme\nstrebkajte\nstrebkajú\nstrebkajúc\nstrebkal\nstrebkala\nstrebkali\nstrebkalo\nstrebkám\nstrebkáme\nstrebkáš\nstrebkať\nstrebkáte\nstrebnúť\nstrečing\nstrečingmi\nstrečingoch\nstrečingom\nstrečingov\nstrečingový\nstrečingu\nstrečingy\nstrečkovať\nStrečkovej\nstrečkovi\nStrečne\nStrečno\nStrečnom\nstrečok\nstrečový\nstredajší\nstreda\nstred\nstredísk\nstredisko\nstrediskový\nstredl\nstredlat\nstredne\nstrednica\nstredník\nstredno\nstrednodobý\nstrednotechnický\nstrednotlakový\nstredný\nstredoafr\nstredoafrický\nstredoamer\nstredoamerický\nstredoázij\nstredoázijský\nstredobod\nstredočeského\nstredočeskému\nstredočeskí\nstredočeskom\nstredočeských\nstredočeským\nStredočeský\nstredoeuróp\nstredoeurópsky\nstredoeurópsky\nstredohorí\nstredohoria\nstredohorie\nstredohorím\nstredohoriu\nstredoľavicový\nstredoľavý\nstredometrážny\nStredomorí\nStredomoria\nStredomorie\nStredomorím\nStredomoriu\nstredomorský\nstredopoliar\nstredopoliarka\nstredopoliarsky\nstredopovažský\nstredopravicový\nstredopravý\nStredoslováci\nStredoslovák\nStredoslovákom\nStredoslovákov\nstredoslovenský\nstredostavovské\nstredostavovského\nstredostavovskej\nstredostavovskú\nstredostavovských\nstredoškol\nstredoškoláčka\nstredoškolák\nstredoškolsky\nstredoškolský\nstredotlakový\nstredovek\nstredoveký\nstredovo\nstredovýchodný\nstredový\nstredozápadných\nstredozemie\nstredozemný\nStredozemný\nstredozemský\nstredtýždeň\nstredtýždne\nstredtýždňov\nstreetball\nstreetballmi\nstreh\nstrehový\nstrechárov\nstrechárskych\nstrecha\nstrechovite\nstrechovito\nstrechovitý\nstrechový\nstrej\nstrek\nstreknúť\nstrekotať\nStrekove\nstrekový\nstrela\nstreľba\nstrelec\nstrelecky\nstrelecký\nstrelecký\nstrelectvo\nstrelene\nstrelenie\nstrelenosť\nstrelený\nstreliaca\nstreliace\nstreliaci\nstreliť\nstrelív\nstreliviny\nstrelivo\nstrelka\nstrelkyňa\nstrelmajster\nstrelmo\nstrelnica\nStrelníky\nstrelný\nstrémovaný\nstrémovať\nstrená\nstreného\nstrenie\nstrených\nstrepať\nstrepotal\nstreptodermia\nstreptokok\nstreptokokový\nstreptomycín\nstreptomycínový\nstres\nstresor\nstresoval\nstresovala\nstresovali\nstresovalo\nstresovanie\nstresovať\nstresový\nStress\nstrestaného\nstrestať\nstresuj\nstresuje\nstresujem\nstresujeme\nstresuješ\nstresujete\nstresujme\nstresujte\nstresujú\nstresujúc\nstresujúce\nstresujúci\nstrešidelne\nstrešný\nstreštene\nstreštený\nstretaní\nstretanie\nstretať\nStretava\nstretávací\nstretávajúce\nstretávanie\nstretávať\nStretave\nStretavka\nstretávka\nStretavský\nstret\nstreté\nstretiek\nstretím\nstretko\nstretnutie\nstretnúť\nstretnutý\nstreto\nstretomycín\nstretou\nstretta\nstrežená\nStreženice\nstreženie\nstrhane\nstrhanie\nstrhaný\nstrhať\nstŕhať\nstrhávaná\nstrhávané\nstrhávaného\nstrhávaní\nstrhávania\nstrhávanie\nstrhávaniu\nstrhávanú\nstrhávať\nstrhnutie\nstrhnutím\nstrhnutiu\nstrhnúť\nstrhnutý\nstrhovaní\nstrhovanie\nstrhu\nstrhuje\nstrhujú\nstrhujúcejšej\nstrhujúcejší\nstrhujúcejšia\nstrhujúcejšie\nstrhujúcejšieho\nstrhujúcejšiemu\nstrhujúcejších\nstrhujúcejším\nstrhujúcejšími\nstrhujúcejšiu\nstrhujúcejšom\nstrhujúcejšou\nstrhujúci\nstrhujúco\nstrhúvať\nstria\nstriasacích\nstriasacou\nstriasaní\nstriasanie\nstriasať\nstriasť\nstridulácia\nstrídža\nstrídžencami\nstrídžence\nstrídžencoch\nstrídžencom\nstrídženiec\nstridží\nstriebier\nstriebornastý\nstriebornatieť\nstriebornatý\nstrieborne\nstrieborniak\nstrieborno\nstriebornopopolavý\nstriebornošedivý\nstrieborný\nstriebrenia\nstriebrenie\nstriebrením\nstriebristo\nstriebristolesklý\nstriebristosivý\nstriebristý\nstriebriť\nstriebrobiely\nstriebrohlavý\nstriebrolesklo\nstriebrolesklý\nstriebro\nstriebronosný\nstriebrosivý\nstriebrovlasý\nstriebrozvučný\nstriebrozvuký\nstriedači\nstriedačka\nstriedačom\nstriedajúci\nstriedané\nstriedanieN\nstriedanom\nstriedať\nstriedava\nstriedavo\nstriedavý\nstriedka\nstriedmejšej\nstriedmejší\nstriedmejšia\nstriedmejšie\nstriedmejšieho\nstriedmejšiemu\nstriedmejších\nstriedmejším\nstriedmejšími\nstriedmejšiu\nstriedmejšom\nstriedmejšou\nstriedmo\nstriedmosť\nstriedmy\nstriednica\nstriehnuci\nstriehnuť\nstriech\nstriekací\nstriekačka\nstriekajúce\nstriekajúci\nstriekajúcich\nstriekajúcim\nstriekanec\nstriekania\nstriekanie\nstriekaním\nstriekaný\nstriekať\nstrieknuť\nstriel\nstrieľané\nstrieľanieN\nstrieľať\nstrieľavať\nstrieľňach\nstrieľňam\nstrieľňa\nstrieľní\nstrieskať\nstrieška\nstrieškový\nstrieť\nstriezlivo\nstriezlivosť\nstriezlivý\nstriezť\nStriežovce\nStriežovská\nStriežovskej\nstríg\nstriga\nstrigôň\nstrigôni\nstrigônska\nstrigônske\nstrigônskeho\nstrigônskej\nstrigônskejšej\nstrigônskejší\nstrigônskejšia\nstrigônskejšie\nstrigônskejšieho\nstrigônskejšiemu\nstrigônskejších\nstrigônskejším\nstrigônskejšími\nstrigônskejšiu\nstrigônskejšom\nstrigônskejšou\nstrigônskemu\nstrigônski\nstrigônskom\nstrigônskou\nstrigônsku\nstrigônsky\nstrigônskych\nstrigônskym\nstrigônskymi\nstrigônstvach\nstrigônstvam\nstrigônstvo\nstrihací\nstrihač\nstrihače\nstrihačka\nstrihačský\nstrihaču\nstrihania\nstrihanie\nstrihaním\nStrihaniu\nstrihaný\nstriháreň\nstrihárňach\nstrihárňam\nstrihať\nstrihávať\nstrih\nstrihnúť\nstrihnutý\nstrihove\nstrihovo\nstrihový\nstrik\nstriktne\nstriktnosť\nstriktný\nstriktúra\nstriptér\nstriptérka\nstriptérsky\nstriptíz\nstriptízový\nstrítbal\nstrítbalista\nstrítbalistka\nstrítbalmi\nstrítbalový\nstriž\nstrižňa\nstrižne\nstrižni\nstrižniach\nstrižňu\nstrižný\nStrižová\nstrižové\nstrižových\nstrk\nstrkajúci\nstrkanie\nstrkaním\nstrkaniu\nstrkaný\nstrkať\nstrkávať\nstrlat\nstrmácaný\nstrmejšej\nstrmejší\nstrmejšia\nstrmejšie\nstrmejšieho\nstrmejšiemu\nstrmejších\nstrmejším\nstrmejšími\nstrmejšiu\nstrmejšom\nstrmejšou\nstrmeň\nstrmeňový\nstrmhlav\nstrmhlavo\nstrmhlavosť\nstrmhlavý\nstrmi\nstrmienok\nstrmieť\nstrmina\nstrminka\nstrmiť\nstrmo\nstrmosť\nstrmý\nstrň\nstrnádka\nstrnie\nstrniem\nstrnieme\nstrnieš\nstrniete\nstrnísk\nstrnisko\nstrniskový\nstrniskový\nstrňme\nstrňte\nstrnule\nstrnulejšej\nstrnulejší\nstrnulejšia\nstrnulejšie\nstrnulejšieho\nstrnulejšiemu\nstrnulejších\nstrnulejším\nstrnulejšími\nstrnulejšiu\nstrnulejšom\nstrnulejšou\nstrnulo\nstrnulosť\nstrnulý\nstrnutím\nstrnúť\nstrobilácia\nstroboskop\nstroboskopia\nstroboskopické\nStročín\nStročíne\nstrof\nstrofa\nstrofický\nstrofika\nstrofulus\nstrohejšej\nstrohejší\nstrohejšia\nstrohejšie\nstrohejšieho\nstrohejšiemu\nstrohejších\nstrohejším\nstrohejšími\nstrohejšiu\nstrohejšom\nstrohejšou\nstroho\nstrohosť\nstrohý\nstrojár\nstrojáreň\nstrojárensky\nstrojárenský\nstrojárenstva\nstrojárenstve\nstrojárenstvo\nstrojárenstvom\nstrojárenstvu\nstrojárka\nstrojárňach\nstrojárňam\nstrojársky\nstrojársky\nstrojárstvach\nstrojárstvam\nstrojárstvo\nstrojca\nstrojcoch\nstrojcom\nstrojcov\nstrojcove\nstrojcovi\nstrojcovia\nstrojček\nstrojene\nstrojením\nstrojenosť\nstrojený\nstrojiť\nstroj\nstrojkyňa\nstrojmajster\nstrojnásobení\nstrojnásobenia\nstrojnásobenie\nstrojnásobením\nstrojnásobeniu\nstrojnásobiť\nstrojnásobnením\nstrojnásobneniu\nstrojnásobovať\nstrojne\nstrojnícky\nstrojníctvach\nstrojníctvam\nstrojníctvo\nstrojník\nstrojno\nstrojnosť\nstrojnotechnologický\nstrojný\nstrojopis\nstrojopisnej\nstrojove\nstrojovňa\nstrojovní\nstrojovo\nstrojový\nstrojvodca\nstrojvodič\nstroke\nstrokotávať\nStrokov\nstroma\nstrom\nstromček\nstromčekovite\nstromčekovito\nstromčekovitý\nstromčekový\nstromec\nstromísk\nstromisko\nstromkov\nstromkovej\nstromky\nstromoradie\nstromovie\nstromovite\nstromovito\nstromovitý\nstromový\nstroncianit\nstronciový\nstroncium\nstrop\nStropkov\nStropkova\nStropkove\nStropkovom\nstropkovský\nStropkovu\nstropný\nstropový\nstroskoc\nstroskoce\nstroskocem\nstroskoceme\nstroskoceš\nstroskocete\nstroskocme\nstroskocte\nstroskocú\nstroskocúc\nstroskotane\nstroskotanec\nstroskotanie\nstroskotaný\nstroskotať\nStroskotávanie\nstroskotávať\nstrova\nstrova\nstrovenie\nstroviť\nstrp\nstŕpať\nstrpčený\nstrpči\nstrpčime\nstrpčite\nstrpčiť\nstrpčovať\nstrpené\nstrpenie\nstrpieť\nstŕpnutie\nstŕpnuto\nstŕpnutosť\nstŕpnuť\nstŕpnutý\nstrúc\nstrúca\nstrúco\nstrúčik\nstručne\nstručnosť\nstručný\nstrudlí\nstrudovatieť\nstrúh\nstrúhací\nstrúhač\nstrúhačka\nstrúhadielko\nstrúhadielok\nstrúhadlo\nstrúhadlový\nstruhák\nstrúhanec\nstrúhanie\nstrúhaním\nstrúhanka\nstrúhankový\nstrúhaný\nstrúhať\nstrúhava\nstrúhavam\nstrúhavame\nstrúhavaš\nstrúhavate\nstrúhavať\nstruha\nstruhnúť\nstrúchnatený\nstrúchnatieť\nstrúchnivený\nstrúchnivieť\nstruk\nstrukovina\nstrukovinový\nstrukový\nstrúm\nstruma\nstrumigén\nstrunatý\nstruna\nstrundžať\nstrúng\nstrungastý\nstrunga\nstrunisto\nstrunistý\nstrunka\nStrunné\nstrunôčka\nstrunôčka\nstrunovatý\nstrunovitý\nstrunový\nstrúsiť\nstruska\nstrusku\nstrusky\nstruvit\nstružikať\nstrúžik\nstružka\nstružlikať\nstružlikovať\nstružlina\nstrv\nstrvať\nstrýc\nstrýcov\nstrýčko\nStrýčkova\nstrýčny\nstrychnín\nstrychnínový\nstrýko\nstrýkove\nstrýkovej\nstrýkovské\nstrýn\nstrynách\nstrynám\nstrynami\nstryná\nstrynka\nstrýznený\nstrýzniť\nstrž\nstržeň\nstŕžiť\nstržňa\nstržňový\nSTS\nstsl\nstu\nSTU\nstucnička\nstučnieť\nstud\nstudena\nstudenách\nstudenám\nstudenami\nStudenca\nStudenci\nStudencom\nStudencov\nstudene\nStudenec\nstudeniť\nstudenkavý\nstudeno\nstudenokrvnosť\nstudenokrvný\nstudenomilný\nstudenosť\nstudenu\nstudený\nstudia\nstudien\nStudien\nstudienka\nstudienočka\nstudňa\nstudní\nstudniar\nstudniarsky\nstudniarstvach\nstudniarstvam\nstudniarstvo\nstudniať\nstudnica\nstudnička\nstudničný\nstudňový\nstúh\nstuha\nstuhnutia\nstuhnutie\nstuhnutiu\nstuhnúť\nstuhnutý\nstuhový\nstuchlina\nstuchnúť\nstuchnutý\nStuľany\nstúlená\nstúliť\nstuľovať\nstuodtiaľ\nstupa\nstúpa\nstúpací\nstúpačka\nstúpačkový\nstúpadlo\nstúpadlový\nstúpaj\nstupaj\nstúpajme\nstupajový\nstúpajte\nstúpajú\nstúpajúc\nstúpajúca\nstúpajúce\nstúpajúceho\nstúpajúcej\nstúpajúcemu\nstúpajúci\nstúpajúcich\nstúpajúcim\nstúpajúcimi\nstúpajúcom\nstúpajúcou\nstúpajúcu\nstúpal\nstúpala\nstúpali\nstúpalo\nstúpam\nstúpame\nstúpanie\nstúpaš\nstúpať\nstúpate\nStupava\nStupave\nStúpavosť\nStupavou\nstupavské\nstupavskej\nstupavskom\nstupavskú\nStupavský\nStupavu\nStupavy\nstúpavý\nstupe\nstúpenec\nStúpenie\nstupeň\nstúpenkyňa\nstupidita\nstupiditami\nstupidite\nstupiditu\nstupídne\nstupídnosť\nstupídny\nstupienok\nstupieť\nStupina\nStupine\nStupino\nstupiť\nstúpiť\nstupka\nstupkať\nStupku\nstupňa\nstupňami\nstupne\nstupni\nstupnica\nstupnicový\nstupnička\nstupník\nstupňoch\nstupňom\nstupňov\nstupňovací\nstupňovanie\nstupňovaný\nstupňovať\nstupňovite\nstupňovito\nstupňovitosť\nstupňovitý\nstupňovosť\nstupňovosti\nstupňový\nstupňu\nstupňujúcej\nstupňujúci\nstupňujúcom\nstupňujúcu\nstúpnutia\nstúpnutie\nstúpnuť\nstupom\nstupor\nstupov\nstupovali\nstupový\nstuprum\nstupu\nstupy\nstuttgartský\nstuženie\nstužený\nstuži\nstužie\nstužime\nstužite\nstužiť\nstužka\nstužková\nstužkový\nstužovadlo\nstužovaní\nstužovanie\nstužovať\nstužtička\nstužujúci\nSTV\nstvárať\nstvárnenie\nstvárnený\nstvárniť\nstvárňované\nstvárňovaniu\nstvárňovateľ\nstvárňovateľka\nstvárňovateľka\nstvárňovateľský\nstvárňovať\nstvárňujúce\nstvárňujúcej\nstvebnícky\nstvol\nstvora\nstvorene\nstvoreniatko\nstvoreniatok\nstvorenie\nstvorenstva\nstvorenstvom\nstvorený\nstvorička\nstvoriteľ\nStvoriteľ\nstvoriteľova\nstvoriteľovej\nstvoriteľovu\nstvoriteľových\nstvoriteľsky\nstvoriteľský\nstvoriť\nstvorte\nstvrdenie\nstvrdil\nstvrdila\nstvrdili\nstvrdíme\nstvrdiť\nstvrdlina\nstvrdlina\nstvrdnutie\nstvrdnutiu\nstvrdnúť\nstvrdnutý\nstvrdzovania\nstyčný\nstydnúť\nstykače\nstýkač\nstykačov\nstýkačový\nstýkať\nstýkava\nstýkavaj\nstýkavajme\nstýkavajte\nstýkavajú\nstýkavajúc\nstýkaval\nstýkavala\nstýkavali\nstýkavalo\nstýkavam\nstýkavame\nstýkavaš\nstýkavať\nstýkavate\nstyk\nstyknúť\nstykový\nstyler\nstyliformný\nstyling\nstýraný\nstýrať\nstyrax\nstyrén\nstyrénov\nstyrénu\nstyrol\nstyrolu\nstyropor\nstývkarský\nStyx\nstý\nsú\nsuave\nsubakútny\nsubakválny\nsubakvatický\nsubalternácia\nsubalternosť\nsubalterný\nsubatlantický\nsubatlantik\nsubatomárnych\nsubatomický\nsubboreál\nsubdivízia\nsubdivízie\nsubdivízii\nsubdivíziou\nsubdivíziu\nsubdodávateľ\nsubdodávateľka\nsubdodávateľsky\nsubdodávateľský\nsubdodávka\nsubdodávkach\nsubdodávkam\nsubdodávkami\nsubdodávke\nsubdodávkou\nsubdodávku\nsubdodávky\nsubdodávok\nsubdoména\nsubdominanta\nsubdukcia\nsúbeh\nsúbehový\nsubekumena\nsubencovať\nsubepidermálny\nsubepiteliálny\nsúbesedník\nsúbežci\nsúbežcov\nsúbežec\nsúbežne\nsúbežnosť\nsúbežný\nsubfebrilný\nsubfertilita\nsubfosília\nsubfosílny\nsubinka\nsubito\nsubj\nsubjekcia\nsubjekt\nsubjektivista\nsubjektivisticky\nsubjektivistický\nsubjektivistka\nsubjektivita\nsubjektivizácia\nsubjektivizačný\nsubjektivizačný\nsubjektivizmus\nsubjektívne\nsubjektívnosť\nsubjektívny\nsubjektmi\nsubjektový\nsubjetkoch\nsubkomisia\nsubkontinent\nsubkontinente\nsubkontinentom\nsubkontinentu\nsubkortikálny\nsubkutánny\nsublicencia\nsublimácia\nsublimačný\nsublimát\nsubliminálnej\nsublimný\nsublimovaná\nsublimovať\nsublitorál\nsubluxácia\nsubmarínny\nsubmerzia\nsubmerzný\nsubmisia\nsubmisívny\nsúboj\nsúbojový\nsúbor\nsubordinácia\nsubordinačne\nsubordinačný\nsubordinovaný\nsubordinovať\nsúborne\nsúborný\nsúborový\nSubotica\nSubotici\nSuboticu\nsubpolárny\nsubreta\nsubrogácia\nsubsidencia\nsubsídia\nsubsidiarít\nsubsidiarita\nsubsidiárny\nsubsídie\nsubskribent\nsubskribovanie\nsubskribovať\nsubskripcia\nsubskripčný\nsubsonický\nsubspecies\nsubst\nsubstanciálny\nsubstancia\nsubstančne\nsubstančný\nsubstančný\nsubstantív\nsubstantívach\nsubstantívam\nsubstantívny\nsubstantívum\nsubsterálny\nsubstitúcia\nsubstitučný\nsubstituent\nsubstituentov\nsubstituentu\nsubstituovanie\nsubstituovaný\nsubstituovať\nsubstitút\nsubstitútom\nsubstitútov\nsubstrát\nsubstrátmi\nsubstrátový\nsubsumácia\nsubsumovanie\nsubsumovať\nsubsumpcia\nsubsystém\nsubšt\nsubštandardne\nsubštandardný\nsubtilita\nsubtilného\nsubtílne\nsubtílnosť\nsubtílny\nsubtrahovať\nsubtropický\nsubtrópmi\nsubtrópoch\nsubtrópom\nsubtrópov\nsubtrópy\nsubvencia\nsubvencovania\nsubvencovanie\nsubvencovaním\nsubvencovaniu\nsubvencovaný\nsubvencovať\nsubvenčný\nsubverzia\nsubverzie\nsubverziu\nsubway\nsúc\nsúcejšej\nsúcejší\nsúcejšia\nsúcejšie\nsúcejšieho\nsúcejšiemu\nsúcejších\nsúcejším\nsúcejšími\nsúcejšiu\nsúcejšom\nsúcejšou\nsúcit\nsúcitenie\nsúcití\nsúcitiaci\nsúcitím\nSúcitím\nsúcitíme\nsúcitíš\nsúcitíte\nsúcitiť\nsúcitmi\nsúcitne\nsúcitnosť\nsúcitný\nsúci\nsúcno\nsúcnosť\nsúcnosti\nsúcností\nsúco\nsúcosť\nsucre\nsúčasna\nsúčasne\nsúčasne\nsúčasnícky\nsúčasníčka\nsúčasník\nsúčasnosť\nsúčasný\nsúčasť\nsúčastného\nsúčastnosti\nSúča\nsúčet\nsučiaci\nSučianskej\nsúčiastka\nsúčiastkový\nsučí\nsúčin\nsúčinitelia\nsúčiniteľ\nsúčiniteľmi\nsúčiniteľoch\nsúčiniteľom\nsúčiniteľov\nsúčiniteľovi\nsúčiniteľu\nsúčinitle\nsúčinne\nsúčinnosť\nsúčinný\nsúčinový\nsučka\nsúčtový\nsučuk\nsuda\nsudácia\nSudán\nSudániek\nSudánka\nSudánka\nSudánska\nsudánskeho\nsudánskej\nsudánski\nsudánskom\nsudánsky\nsudánskych\nsudánskym\nsudánskymi\nsudatórium\nsud\nsúd\nsudba\nsudca\nsudcovať\nsudcovsky\nsudcovský\nsudcovstvo\nsudcov\nsúdenia\nsúdenie\nsúdený\nsúdený\nsudetský\nSudety\nsúdiace\nsúdiaceho\nsúdiaci\nSudíc\nSudice\nSudiciach\nsudička\nSudiet\nsúdievať\nSudince\nsudísk\nsudisko\nsúdiť\nsúdkové\nsúdkovito\nsúdkovitý\nsúdkových\nsudkyňa\nsudkynin\nsúdne\nsúdnickej\nsúdnickú\nsúdnictvo\nsúdnička\nsúdnosť\nsúdny\nsúdobý\nsúdoček\nsúdočka\nsúdočkami\nsúdočkoch\nsúdočkom\nsúdočkov\nsúdočku\nsúdočky\nsúdok\nsudovina\nsudovite\nsudovito\nsudovitý\nsudovo\nsudový\nsúdruh\nsúdružka\nsúdružskosť\nsúdružsky\nsúdružský\nsúdružstvo\nsúdržne\nsúdržnosť\nsúdržný\nsudžuk\nSuez\nSueze\nSuezom\nsuezský\nSuezu\nsuficiencia\nsuficientnosti\nsuficit\nSuficit\nsufita\nsufixálny\nsufix\nsufixnálny\nsufixový\nsufizancia\nsúfizmus\nsuflé\nsuflér\nsuflovať\nsufokácia\nsufóza\nsufragán\nsufragium\nsufražetka\nsufražetka\nsufúzia\nsugerovať\nsugescia\nsugesivita\nsugestivita\nsugestívne\nsugestívnosť\nsugestívny\nsugestopédia\nsúhlas\nsúhlasiaci\nsúhlasiť\nsúhlasne\nsúhlasnosť\nsúhlasný\nsúhra\nsúhrn\nsúhrne\nsúhrnne\nsúhrnný\nsúhrnný\nsúhvezdie\nsúch\nsucha\nsuchách\nsuchám\nsuchami\nSucháň\nSucháňa\nSucháňovej\nSucháňovi\nsuchár\nsuchárka\nsuchármi\nsuchárovi\nsuchárový\nsuchársky\nsuchársky\nsuchárstvach\nsuchárstvam\nsuchárstvo\nsucho\nsuchohorskí\nsuchomilný\nsuchopár\nsuchopáre\nsuchopárne\nsuchopárnosť\nsuchopárny\nsuchopáru\nsuchopáry\nsuchosť\nsuchota\nsuchotinár\nsuchotinárka\nsuchotinársky\nsuchotinársky\nsuchotiny\nsuchoty\nSuchovský\nsuchozemec\nsuchozemský\nsuchu\nsuchučko\nsuchučký\nsuchulinko\nsuchulinký\nsuchunko\nsuchunký\nsuchý\nsuicídium\nsuít\nsuita\nsuitová\nsujet\nsujetový\nsúk\nsúkacie\nsúkacích\nsúkač\nsúkaný\nsúkareň\nsúkáreň\nsúkať\nsúkavať\nsuka\nsukces\nsukcesia\nsukcesívnosť\nsukcesívny\nsukcesorom\nsukcinit\nsúken\nsúkenica\nsúkenice\nsúkeniek\nSúkeník\nSúkeníka\nSúkeníkovej\nsúkenko\nsúkenky\nsúkennícky\nsúkenníctvach\nsúkenníctvam\nsúkenníctvo\nsúkenník\nsúkenný\nsukhot\nsukieň\nsukienka\nsukini\nsukkót\nsúkmeňovec\nsúknach\nsúknam\nsukňa\nsukní\nsuknica\nsukničkár\nsukničkársky\nsukničkársky\nsukničkárstvach\nsukničkárstvam\nsukničkárstvo\nsuknička\nsúkno\nsukňový\nsúknový\nsúkolesie\nsúkolí\nsúkolia\nsúkoliach\nsúkoliami\nsúkolie\nsúkolím\nsukovitý\nSukovský\nsúkr\nsúkromie\nsúkromne\nsúkromnícky\nsúkromníčenia\nsúkromníčenie\nsúkromníčením\nsúkromníči\nsúkromníčili\nsúkromníčiť\nsúkromníčka\nsúkromník\nsúkromno\nsúkromnohospodársky\nsúkromnohospodársky\nsúkromnokapitalistický\nsúkromnokapitalistický\nsúkromnopodnikateľský\nsúkromnoprávna\nsúkromnoprávne\nsúkromnoprávneho\nsúkromnoprávnej\nsúkromnoprávnemu\nsúkromnoprávnou\nsúkromnoprávnu\nsúkromnoprávny\nsúkromnoprávnych\nsúkromnoprávnym\nsúkromnoprávnymi\nsúkromnosť\nsúkromnovlastnícky\nsúkromný\nsukuba\nsukubus\nsukulencia\nsukulent\nsukursála\nsukus\nsúkvetie\nsúlad\nsúladN\nsúladne\nsúladnosť\nsúladný\nsulfamid\nsulfan\nsulfatácia\nsulfát\nsulfatid\nsulfátmi\nsulfátový\nsulfidácia\nsulfid\nsulfitácia\nsulfit\nsulfitmi\nsulfitový\nsulfón\nsulfonamid\nsulfónamid\nsulfonamidov\nsulfónamidový\nsulfonamidy\nsulfónan\nsulfónový\nsulfur\nSulín\nSulíne\nsulínskej\nsulka\nsúlodí\nsúlodia\nsúlodie\nsúlodím\nsulónamid\nSúľov\nSúľove\nSúlovský\nSúľovský\nsúlož\nsúložiť\nsúložnica\nsúložník\nsultanát\nsultanátmi\nsultán\nSultánka\nSultánku\nsultánov\nsultánsky\nsultánsky\nsúm\nsumácia\nsumačný\nsumarizácie\nsumarizoval\nsumarizovala\nsumarizovali\nsumarizovalo\nsumarizovaní\nsumarizovania\nsumarizovanie\nsumarizovaniu\nsumarizovaných\nSumarizovaný\nsumarizovať\nsumarizuj\nsumarizuje\nsumarizujem\nsumarizujeme\nsumarizuješ\nsumarizujete\nsumarizujme\nSumarizujme\nsumarizujte\nsumarizujú\nsumarizujúc\nsumár\nsumárne\nsumárnosť\nsumárny\nsumárový\nSumatra\nsumatriansky\nsuma\nsumbisívny\nsumčí\nsumecL\nsúmerne\nsúmernosť\nsúmerný\nsúmestie\nsumička\nsumka\nsumkou\nsumma\nsummarum\nSumme\nsummit\nsummitmi\nsummum\nsumo\nsumovať\nsumptuózny\nsúmračiť\nsúmračný\nsúmrak\nsúmrakový\nSun\nsuň\nsuna\nsund\nSundom\nSundy\nsunie\nsuniem\nsunieme\nsunieš\nsuniete\nsuňme\nsunna\nSunny\nSunom\nSunov\nsuňte\nSunu\nsunul\nsunula\nsunuli\nsunulo\nsunúť\nsuosan\nsúososť\nsúosovosť\nsúosový\nsúostrovie\nsúp\nsupa\nSupa\nsúpažmo\nsúpažne\nsúpažný\nsup\nsupé\nsuper\nsúpera\nsuperaerodynamika\nsuperarbitrácia\nsúper\nsuperdominanta\nsúperení\nsúperenia\nsúperenie\nsúperením\nsúpereniu\nsuperfetácia\nsuperficiálny\nsuperficiárny\nsuperfosfát\nsuperfosfátmi\nsuperfosfátový\nsupergigant\nsupergigantoch\nsupergiganty\nsuperhviezd\nsuperhviezda\nsúperiaci\nsuperintendant\nsuperintendent\nsuperintendentský\nsuperior\nSuperior\nsuperiorita\nsuperiórny\nsúperiť\nsúperka\nSuperkombinát\nsuperkombináte\nsuperkombinátu\nsuperl\nsuperlatív\nsuperlatíve\nsuperlatívne\nsuperlatívnosť\nsuperlatívny\nsuperlíg\nsuperliga\nsuperman\nsupermanský\nsupermarket\nsupermoderne\nsupermodernosť\nsupermoderný\nsupernova\nSupernova\nsupernovu\nsuperobrovský\nsúperov\nsuperpartneri\nsuperplus\nSuperplus\nsuperpočítač\nsuperpozícia\nsuperpyrín\nsuperrevízia\nsuperrevíziu\nsupersenzitivita\nsupersonický\nsuperstar\nsuperstícia\nsuperstrát\nsúperstvo\nsupersymetria\nsuperštruktúry\nsupertajný\nsúperte\nsuperveľmoc\nsupervízia\nsupervízora\nsupi\nsupiaci\nsupieť\nsupí\nsupinácia\nsupinum\nsúpis\nsúpiska\nsúpisný\nsúpisový\nsuplé\nsuplement\nsuplementárny\nsuplementy\nsuplent\nsupletívnosť\nsupletívny\nsuplika\nsuplikácia\nsuplikačný\nsuplikant\nsuplikantský\nsuplovania\nsuplovanie\nsuplovaním\nsuplovaný\nsuplovať\nsuplujúci\nsupme\nsuponovať\nsuport\nsupositorum\nsupovi\nsupozícia\nsupralitorál\nsupraporta\nsuprarenalizmus\nsuprarenálny\nsuprasternálny\nsúprav\nsúprava\nsúpravička\nsupravodivého\nsupravodivosti\nsupravodivou\nsupravodivým\nsúpravový\nsupremácia\nsupremácie\nsupremáciu\nsupremát\nsuprematizmus\nsupresia\nsupresie\nsupresívna\nsupresívnych\nsupurácia\nsúpútnici\nsúpútnik\nsúpútnika\nsúpútnikmi\nsúpútnikom\nsúpútnikov\nSurabaji\nsúradne\nsúradnica\nsúradnicovo\nsúradnicový\nsúradnosť\nsúradný\nsúrach\nsúram\nsúra\nsurdomutizmus\nsúrenie\nsurf\nsurfera\nsurferov\nsurfing\nsurfingmi\nsurfingoch\nsurfingom\nsurfingov\nsurfingu\nsurfingy\nsurfista\nsurfistický\nsurfistka\nsurfovaní\nsurfovania\nsurfovanie\nsurfovaním\nsurfovaniu\nsurfovať\nsúrhnný\nsuriem\nSurinam\nsurinamský\nsúriť\nsurma\nsurmia\nsurmovať\nsúrne\nsúrnosť\nsúrny\nsúrodejšej\nsúrodejší\nsúrodejšia\nsúrodejšie\nsúrodejšieho\nsúrodejšiemu\nsúrodejších\nsúrodejším\nsúrodejšími\nsúrodejšiu\nsúrodejšom\nsúrodejšou\nsúrodenec\nsúrodenecký\nsúrodo\nsúrodosť\nsúrodý\nsurogácia\nsurogát\nsuroň\nsurova\nsurovec\nsurovica\nsurovina\nsurovinovo\nsurovinový\nsurovo\nsurovosť\nsurovšej\nsurovší\nsurovšia\nsurovšie\nsurovšieho\nsurovšiemu\nsurovších\nsurovším\nsurovšími\nsurovšiu\nsurovšom\nsurovšou\nsurový\nsurrealista\nsurrealisticky\nsurrealistický\nsurrealistka\nsurrealizmus\nsúručenstvo\nsúručmo\nsurveillancia\nsurvey\nsuscepcia\nsuscitácia\nsuseda\nsuseda\nsused\nsusedených\nsusediaci\nsusediť\nsusedka\nsusedkiných\nsusedko\nsusedný\nsusedovci\nsusedov\nsusedsky\nsusedský\nsusedstvo\nsúsek\nsúslednosť\nsúslovie\nsúsošie\nsuspekcia\nsuspektný\nsuspendácii\nsuspendoval\nsuspendovala\nsuspendovali\nsuspendovalo\nsuspendovania\nsuspendovanie\nsuspendovaním\nsuspendovaný\nsuspendovať\nsuspenduj\nsuspenduje\nsuspendujem\nsuspendujeme\nsuspenduješ\nsuspendujete\nsuspendujme\nsuspendujte\nsuspendujú\nsuspendujúc\nsuspenzácia\nsuspenzia\nsuspenzívny\nsuspenzor\nsuspenzórium\nsúst\nsústach\nsústam\nsústava\nsústavne\nsústavniť\nsústavnosť\nsústavný\nsústavový\nsustentovať\nsústo\nsústrasť\nsústrastne\nsústrastný\nsustrát\nsústredene\nsústredenie\nsústredenosť\nsústredený\nsústrediť\nsústredivý\nsústredne\nsústredný\nsústreďovacie\nsústreďovacieho\nsústreďovania\nsústreďovanie\nsústreďovaním\nsústreďovaniu\nsústreďovaný\nsústreďovať\nsústreďujúci\nsústruh\nsústruhovať\nsústruhovňa\nsústruhovní\nsústružené\nsústružení\nsústruženia\nsústruženie\nsústružením\nsústružených\nsústružiť\nsústružňa\nsústružne\nsústružni\nsústružní\nsústružnícky\nsústružníctvach\nsústružníctvam\nsústružníctvo\nsústružníčka\nsústružník\nsúša\nsúšach\nsúšam\nSušanoch\nSušany\nsúš\nsušenia\nsušenie\nsušením\nsušenina\nsušeniu\nsušeň\nsušený\nsuši\nsušiaci\nsušiak\nSušian\nsušianskeho\nsušiareň\nsušiareňský\nsušiarenský\nsušiareňský\nsušiarenstva\nsušiarňach\nsušiarňam\nsušič\nsušička\nsušidlo\nsušienka\nsušienkový\nsúšie\nsušievať\nsušina\nsušiť\nsúšmi\nsušňa\nsušňami\nsušne\nsušni\nsušňoch\nsušňom\nsušňov\nsušňu\nsúšoch\nsúšom\nsúšov\nsúštátie\nsúšu\nsuť\nsután\nsutana\nsutanela\nsúťaž\nsútaže\nsúťaženie\nsúťažiaci\nsúťažiteľ\nsúťažiteľka\nsúťažiteľský\nsúťažiť\nsúťaživosť\nsúťaživý\nsúťažne\nsúťažno\nsúťažný\nsute\nsuterén\nsuterénny\nsuterénový\nsuterénový\nsuteréový\nsuti\nsutí\nSÚTI\nsutina\nsutinový\nsútok\nsútokový\nSútor\nsuťou\nsuťovisku\nsútra\nsútrpný\nsutúra\nSÚV\nsúvah\nsúvaha\nsúvahový\nsúveký\nsuvenír\nsuveníre\nsuverén\nsuverenita\nsuverénka\nsuverénne\nsuverénnosť\nsuverénny\nsúvetie\nsúvetný\nsúvis\nsúvisiaci\nsúvisieť\nsúvisle\nsúvislejšej\nsúvislejší\nsúvislejšia\nsúvislejšie\nsúvislejšieho\nsúvislejšiemu\nsúvislejších\nsúvislejším\nsúvislejšími\nsúvislejšiu\nsúvislejšom\nsúvislejšou\nsuvislo\nsúvislo\nsúvislosť\nsúvislý\nsúvrství\nsúvrstvia\nsúvrstviami\nsúvzť\nsúvzťažne\nsúvzťažnosť\nsúvzťažný\nsuzafon\nsuzerenita\nsúznenie\nsúzvťažnosť\nsúzvučne\nsúzvučnosť\nsúzvučný\nsúzvuk\nsúžba\nsúžená\nsúženie\nsúžitie\nsúžiť\nsužoba\nsúžoby\nsužovanie\nsužovaním\nsužovaný\nsužovať\nsužujúci\nsv\nSV\nsváčik\nsváčikovi\nsváčikovia\nsváčko\nsvadba\nsvadbiť\nsvadbovať\nsvadbový\nsvadobčan\nsvadobčanka\nsvadobčianka\nsvadobnícky\nsvadobníčka\nsvadobník\nsvadobný\nsvadobný\nsvah\nsvahovaním\nsvahovitý\nsvahovitý\nsvahový\nsvák\nsváko\nsval\nsvalísk\nsvalisko\nsvalmi\nsvalnatieť\nsvalnatosť\nsvalnatý\nsvalovce\nsvalovec\nsvalovina\nsvalovitý\nsvalový\nsvalstvo\nsvana\nsvár\nsváre\nsváriť\nsvárlivec\nsvárlivo\nsvárlivosť\nsvárlivý\nsvármi\nsvároch\nsvárom\nsvárov\nsváru\nsváry\nsvastika\nSvatava\nSvatave\nSvatavy\nsvat\nsväte\nsvätec\nsvätenica\nsvätenička\nsvätenie\nsvätený\nsvati\nsvätiaci\nsvätica\nsvätievať\nsvätiť\nsvatka\nsvátlivý\nsvätnica\nsvätnička\nsväto\nsvätodušný\nsvätojánsky\nsvätojánsky\nsvätokrádež\nsvätokrádežne\nsvätokrádežník\nsvätokrádežný\nsvätokráž\nSvätokrížskeho\nSvätokrížsky\nsvätokupec\nsvätokupecký\nsvätokupectvo\nsvätopeterský\nSvätopluk\nSvätoplukova\nSvätoplukove\nSvätoplukovej\nSvätoplukovo\nSvätoplukovom\nsvätorečenie\nsvätorečiť\nSvätoslav\nSvätoslava\nSvätoslavom\nsvätostánok\nsvätosť\nsvätosväte\nsvätosvätý\nsvätoštefanský\nsvätováclavský\nsvatovci\nSvatovej\nsvätovojtešský\nsvätožiara\nsvätúch\nSvätuše\nSvätuši\nsvätúšik\nsvätuškár\nsvätuškárka\nsvätuškársky\nsvätuškársky\nsvätuškárstvach\nsvätuškárstvam\nsvätuškárstvo\nsvätvečera\nsvätvečer\nsvätyňa\nsvätý\nSvazijsko\nsvazijský\nsvažitý\nsvažný\nsveckých\nsvedčať\nsvedčenia\nsvedči\nsvedčiaci\nsvedčievať\nsvedčime\nsvedčite\nsvedčiť\nsvedčne\nsvedčný\nsvedecky\nsvedecký\nsvedectvo\nSvedernícka\nsvedernícku\nSvederník\nSvederníku\nsvedka\nsvedkami\nsvedkoch\nsvedkom\nsvedkov\nsvedkovej\nsvedkovho\nsvedkovi\nsvedkyňa\nsvedočné\nsvedočného\nsvedočnému\nsvedočnom\nsvedočným\nsvedok\nsvedomie\nsvedomite\nsvedomito\nsvedomitosť\nsvedomitý\nsvelomilný\nSverdlovská\nSverdlovskej\nSverdlovskí\nSverdlovskou\nSverdlovskú\nSverepca\nSverepci\nSverepcom\nSverepec\nsverepejšej\nsverepejší\nsverepejšia\nsverepejšie\nsverepejšieho\nsverepejšiemu\nsverepejších\nsverepejším\nsverepejšími\nsverepejšiu\nsverepejšom\nsverepejšou\nsverepo\nsvereposť\nsverepý\nSveržov\nsvetabôľ\nsvetáckosť\nsvetácky\nsvetáctvach\nsvetáctvam\nsvetáctvo\nsvetáčka\nsvetadiela\nsvetadiel\nsvetadiele\nsvetadielmi\nsveták\nsvetár\nsvetaskúsene\nsvetaskúsený\nsvetaznalý\nsvet\nsveteľná\nsvetelne\nsvetelno\nsvetelnosť\nsveteľnými\nsvetelný\nsveter\nsvetielce\nsvetielci\nsvetielcom\nsvetielec\nsvetielko\nsvetielkovanie\nsvetielkovať\nsvetielkujúce\nsvetielkujúci\nsvetielok\nSvetík\nSvetíka\nSvetíkom\nSvetka\nSvetlán\nSvetlana\nsvetlejšej\nsvetlejšieho\nsvetlejšiemu\nsvetlejšie\nsvetlejších\nsvetlejšími\nsvetlejšom\nsvetlejšou\nsvetli\nSvetliansky\nSvetlianskym\nsvetlica\nsvetlickí\nsvetlička\nsvetlík\nSvetlin\nsvetlobelasý\nsvetlobéžový\nsvetločervený\nsvetlofarebné\nsvetlofialový\nsvetlogaštanový\nsvetlohlavý\nsvetlohnedý\nsvetlolilavý\nsvetlo\nsvetlomera\nsvetlomer\nsvetlomet\nsvetlomilnosť\nsvetlomilný\nsvetlomilný\nsvetlomodrý\nsvetlonos\nsvetloplachejšej\nsvetloplachejší\nsvetloplachejšia\nsvetloplachejšie\nsvetloplachejšieho\nsvetloplachejšiemu\nsvetloplachejších\nsvetloplachejším\nsvetloplachejšími\nsvetloplachejšiu\nsvetloplachejšom\nsvetloplachejšou\nsvetloplachosť\nsvetloplachý\nsvetloružový\nsvetlosivý\nsvetlosť\nsvetlošedivý\nsvetlovláska\nsvetlovlasý\nsvetlovo\nsvetlovom\nsvetlovou\nsvetlozelený\nsvetlozlatými\nsvetložltý\nsvetlučko\nsvetlučký\nsvetlulinko\nsvetlulinký\nsvetlunko\nsvetlunký\nsvetlý\nsveto\nsvetobežec\nsvetobežkyňa\nsvetobežnícky\nsvetobežníctvach\nsvetobežníctvam\nsvetobežníctvo\nsvetobežníčiek\nsvetobežníčka\nsvetobežníčka\nsvetobežník\nsvetobežný\nsvetobôle\nsvetobôli\nsvetobôľ\nsvetobôľmi\nsvetobôľne\nsvetobôľny\nsvetobôľoch\nsvetobôľom\nsvetobôľov\nsvetobôľu\nsvetoborne\nsvetobornosť\nsvetoborný\nsvetodejinný\nsvetodejný\nsvetohybný\nsvetochýrny\nsvetonáhľad\nsvetonáhľadový\nsvetonázor\nsvetonázorove\nsvetonázorovo\nsvetonázorový\nsvetoobčan\nsvetoobčianka\nsvetoobčianka\nsvetoobčianska\nsvetoobčianske\nsvetoobčianskeho\nsvetoobčianskej\nsvetoobčianskemu\nsvetoobčianski\nsvetoobčianskom\nsvetoobčianskou\nsvetoobčiansku\nsvetoobčiansky\nsvetoobčianskych\nsvetoobčianskym\nsvetoobčianskymi\nsvetoobčianstvach\nsvetoobčianstvam\nsvetoobčianstvo\nsvetopovestný\nsvetosť\nsvetovlád\nsvetovládach\nsvetovládam\nsvetovláda\nsvetovládny\nsvetovo\nsvetovosť\nsvetový\nSvetozár\nsvetoznámejšej\nsvetoznámejší\nsvetoznámejšia\nsvetoznámejšie\nsvetoznámejšieho\nsvetoznámejšiemu\nsvetoznámejších\nsvetoznámejším\nsvetoznámejšími\nsvetoznámejšiu\nsvetoznámejšom\nsvetoznámejšou\nsvetoznámy\nsvetríček\nsvetríčka\nsvetríčkami\nsvetríčkoch\nsvetríčkom\nsvetríčkov\nsvetríčku\nsvetríčky\nsvetrík\nsvetskosť\nsvetsky\nsvetský\nSVGA\nsvhaovitý\nsviatkovať\nsviatočne\nsviatočnosť\nsviatočný\nsviatok\nsviatosť\nsviatostný\nsvíba\nsvíb\nsvíbový\nsvidnícka\nSvidnícke\nsvidníckeho\nsvidníckej\nsvidníckemu\nSvidnickí\nSvidnícki\nSvidníckom\nsvidnícku\nSvidnícky\nsvidníckych\nsvidníckym\nsvidníckymi\nSvidnička\nSvidník\nSvidníka\nSvidníkom\nSvidníku\nsviec\nsviecach\nsviecam\nsvieca\nsviecový\nsviečkár\nsviečkáreň\nsviečkári\nsviečkárka\nsviečkársky\nsviečkársky\nsviečkárstvo\nsviečka\nsviečková\nsviečkovica\nsviečkovo\nsviečkový\nsviečočka\nsvietení\nsvietenia\nsvietenie\nsvietiaci\nsvietidlo\nsvietidlový\nsvietievať\nsvietiplyn\nsvietiplynový\nsvietiť\nsvietivka\nsvietivka\nsvietivo\nsvietivosť\nsvietivý\nsvietnik\nsvietnikový\nsvieť\nsviežejšej\nsviežejší\nsviežejšia\nsviežejšie\nsviežejšieho\nsviežejšiemu\nsviežejších\nsviežejším\nsviežejšími\nsviežejšiu\nsviežejšom\nsviežejšou\nsviežený\nsvieži\nsviežo\nsviežosť\nsviiť\nsviňacina\nsviňačinka\nsviňa\nsvinčí\nsvinčík\nsvinčíku\nsviní\nsviniar\nsviniarik\nsviniarikovia\nsviniarka\nsviniarka\nsviniarsky\nsviniarsky\nSvinica\nSvinice\nSvinici\nsviním\nsviníme\nsviníš\nsviníte\nsviniť\nSviniu\nsvinka\nSvinná\nSvinnej\nsvinsky\nsvinský\nsvinstvo\nsvisť\nsvist\nsviš\nsviša\nsviše\nsvišťami\nsvišťaní\nsvišťania\nsvišťanie\nsvišťať\nsvišťavo\nsvišťavý\nsvište\nsvišťí\nsvišťia\nsvišťiac\nsvišťiaci\nsvišťiacim\nsviští\nsvištivo\nsvištivý\nsvišť\nsvišťme\nsvišťou\nsvišťovi\nsvišťte\nsvitanieN\nsvitať\nSvitav\nSvitáv\nSvitava\nSvitavách\nSvitavami\nSvitavou\nsvitavské\nsvitavského\nsvitavskej\nsvitavskom\nsvitavských\nsvitavským\nsvitavskými\nSvitavský\nSvitavu\nSvitavy\nsvit\nSvitková\nSvitkove\nsvitmi\nsvitnúť\nsvitský\nsvižko\nsvižkosť\nsvižký\nsvižne\nsvižník\nsvižníka\nsvižnosť\nsvižný\nSvodín\nSvodíne\nsvodínskej\nSvodov\nSvodove\nsvoja\nsvojbytne\nsvojbytnosť\nsvojbytný\nsvojej\nsvoje\nsvojeť\nsvojhlavec\nsvojhlavo\nsvojhlavosť\nsvojhlavý\nsvojho\nsvoji\nsvojí\nsvojich\nsvojim\nsvojím\nsvojimi\nsvojina\nsvojiť\nsvojmocný\nsvojmu\nsvoj\nsvojo\nsvojom\nsvojou\nsvojpomoc\nsvojpomocne\nsvojpomocný\nsvojprávne\nsvojprávnosť\nsvojprávny\nsvojráz\nsvojrázne\nsvojráznosť\nsvojrázny\nsvojskosť\nsvojsky\nsvojský\nsvojstvo\nsvoju\nsvojvôľach\nsvojvôľam\nsvojvôľa\nsvojvôlí\nsvojvoľne\nsvojvoľnica\nsvojvoľník\nsvojvoľnosť\nsvojvoľný\nsvokier\nsvokor\nsvokra\nsvokrin\nsvokroch\nsvokrom\nsvokrov\nsvokrovci\nsvokrovi\nsvokruša\nsvoloč\nsvor\nSvorad\nSvorada\nSvoradovej\nsvoreň\nsvorka\nsvorkovníc\nsvorkovnice\nsvorkový\nsvorne\nsvorník\nsvorníkový\nsvornosť\nsvorný\nSvorovým\nSvoru\nSVOZ\nsvrab\nsvrabľavosť\nsvrabľavý\nsvrabový\nSvratka\nSvratke\nSvratku\nSvratky\nsvrb\nsvrbenie\nsvrbeniu\nSvrbický\nsvrbieť\nsvrbievať\nsvrbivý\nsvrbľavka\nsvrbľavosť\nsvrbľavý\nsvrček\nsvrčia\nsvrčín\nsvrčina\nsvrčina\nsvrčinka\nSvrčinovca\nSvrčinovce\nSvrčinovci\nSvrčinovec\nSvrčinovská\nSvrčinovské\nsvrčinovskej\nsvrčinovských\nsvrčinovským\nsvrčinový\nsvrčka\nSvrčka\nsvrčkami\nsvrčkať\nsvrčkoch\nsvrčkom\nSvrčkom\nsvrčkov\nSvrčkovej\nsvrčkovi\nsvrčky\nsvrkať\nsvrkot\nsvrkotmi\nsvrlikať\nSVŠ\nSVŠT\nSVTS\nSVV\nswahil\nSwahilské\nSwahilsky\nswap\nSwastika\nswastikou\nswift\nswing\nswingmi\nswingoch\nswingom\nswingov\nswingový\nswingu\nswingy\nswitch\nswizzl\nSX\nsybaritizmus\nsycígia\nsyč\nsyčanie\nsyčaním\nsyčať\nsyčiaci\nsyčivo\nsyčivý\nSydney\nsydneyský\nsyenit\nsyenitmi\nsyenitový\nsyfilid\nsyfilis\nsyfilitický\nsyfilitička\nsyfilitička\nsyfilitik\nsychravo\nsychravosť\nsychravý\nsyk\nsykať\nsykavka\nsykavo\nsykavosť\nsykavý\nsyknúť\nsykofant\nsykomora\nsýkorčí\nsýkorka\nsykotať\nsykot\nsykotmi\nsykóza\nsylaba\nsylabickosť\nsylabicky\nsylabický\nsylabizmus\nsylabotonizmus\nsylabov\nsylabus\nsylaby\nsylfa\nsylfida\nsylogizmus\nsylván\nsylvána\nsylvanit\nsylvánsky\nSylvia\nsylvín\nsymachia\nSymantec\nsymbiont\nsymbiotickú\nSymbiotický\nsymbióz\nsymbiózach\nsymbiózam\nsymbióza\nsymbol\nsymbolickosť\nsymbolicky\nsymbolický\nsymbolik\nsymbolika\nsymbolista\nsymbolistický\nsymbolizmus\nsymbolizovaný\nsymbolizovať\nsymbolizujúce\nsymbolizujúci\nsymetrál\nsymetrálach\nsymetrálam\nsymetrála\nsymetrálny\nsymetria\nsymetrickosť\nsymetricky\nsymetrický\nsymetrizačný\nsymfília\nsymfónia\nsymfonickosť\nsymfonicky\nsymfonický\nsymfýza\nsymlinky\nsympaťáčka\nsympaťák\nsympatektómia\nsympatetický\nsympatia\nsympatickosť\nsympaticky\nsympatický\nsympatik\nsympatikus\nsympatizant\nsympatizantka\nsympatizovania\nsympatizovať\nsympatizujúci\nsympatria\nsympódium\nsympózium\nsymptomaticky\nsymptomatický\nsymptomatika\nsymptóm\nsynáčik\nsynagóg\nsynagógach\nsynagógam\nsynagóga\nsynagógový\nsynak\nsynalgia\nsynantropia\nsynapsia\nsynastria\nsynátor\nsynátormi\nsyn\nsynček\nsyndesmológia\nsyndesmóza\nsyndik\nsyndika\nsyndikalistickým\nsyndikalizmu\nsyndikalizmus\nSyndikalizmus\nsyndikát\nsyndikátmi\nsyndikátny\nsyndikátový\nSyndikom\nsyndikus\nsyndróm\nsyndrómový\nsynechia\nsynechotómia\nsynekdoch\nsynekdocha\nsynekdochicky\nsynekdochický\nsynekia\nsynekológia\nsynektika\nsynendrion\nsynendrium\nsynergetika\nsynergetikum\nsynergia\nsynergicky\nsynergický\nsynergistický\nsynergizmus\nsynestézia\nsyngamia\nsyngenetický\nsyngenetika\nsynchondróza\nsynchorológia\nsynchrocyklotrón\nsynchrón\nsynchróne\nsynchrónia\nsynchronickosť\nsynchronicky\nsynchronický\nsynchronizácia\nsynchronizačný\nsynchronizátor\nsynchronizmus\nsynchronizovane\nsynchronizovanie\nsynchronizovanosť\nsynchronizovaný\nsynchronizovať\nsynchronizujúci\nsynchrónne\nsynchrónnosť\nsynchrónny\nsynchrónny\nsynka\nsynkami\nsynkarión\nsynkinéza\nsynklinála\nsynklinála\nsynklinálny\nsynkoch\nsynkom\nsynkop\nsynkopa\nsynkopický\nsynkopový\nsynkov\nsynkovi\nsynkovia\nsynkratia\nsynkretický\nsynkretizmus\nsynkretizovať\nsynkréza\nsynkrýzia\nsynod\nsynodálny\nsynoda\nSynodný\nsynodový\nsynonym\nsynoným\nsynonýmia\nsynonymia\nsynonymickosť\nsynonymicky\nsynonymický\nsynonymita\nsynonymne\nsynonymnosť\nsynonymný\nsynonymum\nsynopsia\nsynopsis\nsynoptický\nsynostóza\nSynova\nsynovčekom\nsynove\nsynovec\nsynovej\nsynovho\nsynovium\nsynovo\nsynovom\nsynovsky\nsynovský\nsynovstvo\nsynovu\nsynových\nsynovým\nsynsémantický\nsyntagiem\nsyntagmaticky\nsyntagmatický\nsyntagma\nsyntakticky\nsyntaktický\nsyntaktik\nsyntax\nsyntax\nsyntaxista\nsyntaxon\nsyntetickosť\nsynteticky\nsyntetický\nsyntetický\nsyntetizácie\nsyntetizátor\nsyntetizovať\nsyntetizujúca\nsyntetizujúci\nsyntetizujúcim\nsyntéz\nsyntézach\nsyntézam\nsyntéza\nsyntézne\nsynu\nsynúria\nsýpací\nsypania\nsypanice\nsypanie\nsypaním\nsypaniu\nsypaný\nsypáreň\nsypárňach\nsypárňam\nsypať\nsypávať\nsypkavý\nsýpka\nsypkosť\nsypkovina\nsypký\nsypú\nsypúc\nsypučký\nsypunký\nSyquest\nsýr\nSyrakúzami\nsyrár\nsyráreň\nsyrárenský\nsyrárka\nsyrárňach\nsyrárňam\nsyrársky\nsyrársky\nsyrárstvach\nsyrárstvam\nsyrárstvo\nsyr\nsyrček\nsýrčin\nsýrčinách\nsýrčinám\nsýrčinami\nsýrčina\nSyrdarje\nsyrenie\nsyria\nSýria\nsyridlo\nsyridlový\nsyril\nsyrila\nsyringa\nsyringmi\nsyringoch\nsyringom\nsyringóm\nsyringov\nsyringu\nsyringy\nsyrinx\nsyrník\nsyrný\nsyrovina\nsyrovník\nsyrový\nSýrsky\nsýrsky\nsyseľ\nsysľa\nsysľami\nsysle\nsyslí\nsysľoch\nsysľom\nsysľou\nsysľov\nsysľovi\nsyst\nsystaltický\nsystematickosť\nsystematicky\nsystematický\nsystematička\nsystematičnosť\nsystematika\nsystematik\nsystematizácia\nsystematizačný\nsystematizovanej\nsystematizovaniu\nsystematizovaných\nsystematizovanými\nsystematizovať\nsystém\nsystemizácia\nsystemizačný\nsystemizovaný\nsystemizovať\nsystémológia\nsystémove\nsystémovo\nsystémovosť\nsystémový\nsystémový\nsystola\nsýtenia\nsýtenie\nsýtený\nsýtiaci\nsýtič\nsýtiť\nsýtivosť\nsýtna\nsýtnom\nsýto\nsýtobelasý\nsýtobelasý\nsýtobeslasý\nsýtočervený\nsýtomodro\nsýtosť\nsýtozelený\nsýty\nSyzrani\nsyzýgia\nsyzygiológia\nsyžet\nsz\nSZ\nSZĽH\nSZM\nSZS\nSZŠ\nSZTK\nš\nŠ\nšábes\nšábesový\nšabieľ\nšabľa\nšablí\nšabliarka\nšablica\nŠablicu\nšablička\nšablón\nšablónach\nšablónam\nšablonár\nšablóna\nšablónka\nšablónkový\nšablónovací\nšablónovanie\nšablónovať\nšablónovite\nšablónovito\nšablónovitosť\nšablónovitý\nšablónový\nšablónový\nšabľové\nšabľovite\nšabľovito\nšabľovitosť\nšabľovitý\nšabľovo\nšabľový\nšabrak\nŠabrák\nšabraka\nŠác\nŠaca\nŠace\nŠaci\nšackej\nšacovať\nŠacu\nšafár\nšafárení\nšafárenia\nšafárenie\nšafárením\nšafáreniu\nŠafárikov\nŠafárikova\nŠafárikove\nŠafárikovo\nŠafárikovom\nšafáriť\nšafárka\nšafársky\nšafeľ\nšafiit\nšafľa\nšafľami\nšafle\nšafli\nšaflík\nšafľoch\nšafľom\nšafľov\nšafľový\nšafľu\nšafran\nšafranovo\nšafranovožltý\nšafranový\nšagrén\nšagrénový\nšagrín\nŠahách\nŠahám\nšahanská\nšahanského\nšahanskému\nšahanskú\nšahanských\nŠahanský\nšáhbanu\nšáhinšáh\nŠahy\nšach\nšach\nšachiet\nšachista\nšachistka\nšachor\nšachorie\nšachorina\nšachorový\nšachoval\nšachovali\nšachovalo\nšachovanie\nšachovať\nšachovina\nšachovite\nšachovito\nšachovitý\nšachovnica\nšachovnicovitý\nšachovnicovo\nšachovnicový\nšachový\nšachrovať\nšácht\nšachta\nšachtový\nšachuje\nšachujú\nšaja\nŠajbách\nšajbe\nšajn\nšajnový\nšajo\nšajtan\nšakala\nšakal\nšakali\nšakalí\nšakalmi\nšakaľom\nšakaľou\nšakalovi\nšalabachter\nŠalamún\nŠalamúnov\nšalamúnsky\nšalanda\nšalát\nšalátik\nšalátmi\nšalátovka\nšalátovo\nšalátový\nšál\nšaľba\nšaľbiar\nšaľbiariť\nšaľbiarsky\nšaľbiarstvach\nšaľbiarstvam\nšaľbiarstvo\nŠale\nšalebný\nšalej\nšalejme\nšalejte\nšalejú\nšalejúc\nšalenie\nšalením\nŠalgočka\nŠalgočke\nŠalgovík\nŠalgovíku\nŠáli\nŠalianka\nšalianska\nšalianske\nšalianskeho\nšalianskej\nŠalianskemu\nšalianski\nšalianskom\nšaliansky\nšalianskych\nšalieť\nšálik\nšálka\nŠalková\nŠalkovej\nŠalkovský\nšalmaj\nšálmi\nšaľo\nšáločka\nšalogátor\nšalotka\nšalotkový\nŠalov\nŠalova\nšalovacie\nšalovacích\nšaloval\nšalovala\nšalovali\nšalovalo\nšalovanie\nšalovať\nŠalove\nŠalovom\nšálový\nŠaľu\nšaluj\nšaluje\nšalujem\nšalujeme\nšaluješ\nšalujete\nšalujme\nšalujte\nšalujú\nšalujúc\nšalujúci\nšalupa\nšalvar\nšalvia\nšalviový\nšama\nšaman\nšamanista\nšamanisticky\nšamanistický\nšamanizmus\nšamanstva\nšambriéra\nšames\nšamlík\nŠamorín\nŠamorína\nŠamoríne\nŠamorínom\nšamorínske\nšamorínskeho\nšamorínskom\nšamorínsku\nšamorínsky\nšamorínskych\nšamotár\nšamotáreň\nšamotárňach\nšamotárňam\nšamot\nšamotiť\nšamotka\nšamotmi\nšamotovať\nšamotový\nšampanské\nšampanský\nšampiňonáreň\nšampiňonárňach\nšampiňonárňam\nšampiňón\nšampiňónik\nšampiňónový\nšampiňónový\nšampionát\nšampionátmi\nšampionátový\nšampión\nšampiónka\nšampiónsky\nšampón\nšampónovania\nšampónovať\nšampónový\nšampus\nšampusový\nšamster\nŠamudovský\nšanca\nšancí\nŠandal\nšanec\nŠanghajčan\nŠanghajčanka\nŠanghajec\nŠanghaj\nŠanghajka\nšanghajský\nšanon\nšanón\nšanónoch\nšanónov\nšanónu\nšanóny\nšanovať\nšanovlivo\nšanovlivosť\nšanovlivý\nšansón\nšansoniera\nšansonier\nšansoniér\nšansonierka\nšansoniérka\nšansoniersky\nšansoniérsky\nšansónový\nšánt\nšantán\nšantavý\nšanta\nšantáž\nšantenie\nšanti\nšantiacich\nšantieva\nšantievaj\nšantievajme\nšantievajte\nšantievajú\nšantievajúc\nšantieval\nšantievala\nšantievali\nšantievalo\nšantievam\nšantievame\nšantievaš\nšantievať\nšantievate\nšantime\nšantite\nšantiť\nšantivo\nšantivosť\nšantivý\nšantovačka\nšantovať\nšantung\nšantungmi\nšantungoch\nšantungom\nšantungov\nšantungový\nšantungu\nšantungy\nšanžán\nšap\nšapít\nšapitó\nšapito\nšaráda\nšarádu\nšarády\nšarapata\nšarapatiť\nšaratica\nŠarbov\nšarha\nšarhovský\nšarhovstvo\nšaríja\nšarina\nšarinový\nŠariša\nŠarišan\nŠariše\nŠariši\nŠariš\nŠarišom\nšarišskomichalianskej\nšarišskomichalianskych\nšarišský\nŠarišu\nšarivary\nŠárka\nšarkan\nšarkani\nšarkanica\nšarkaní\nšarkanísk\nšarkanisko\nšarkaňom\nšarkaňou\nšarkanovi\nŠárke\nŠárkou\nŠárku\nŠárky\nšarlach\nšarlachový\nšarlatán\nšarlatánka\nšarlatánsky\nšarlatánstvach\nšarlatánstvam\nšarlatánstvo\nšarlát\nšarlátmi\nšarlátovo\nšarlátový\nŠarlota\nŠarloty\nšarmantne\nšarmantnosť\nšarmantný\nšarm\nšarovskej\nšarpať\nšarpej\nšarpia\nšarvan\nšarvanec\nšarvátka\nšarža\nšarží\nšasi\nšáš\nšášie\nšašina\nšašinka\nšašinový\nšaško\nšašlik\nšašlík\nšašlyk\nšašo\nšášov\nšašovina\nšašovsky\nšašovský\nšašovstvo\nŠaštín\nŠaštína\nŠaštíne\nŠaštínom\nšaštínska\nšaštínskej\nšaštínskym\nšata\nšatách\nšatám\nšat\nšatenie\nšatievať\nšatiť\nšatka\nšatkový\nšatky\nšatľava\nšatmi\nšatňa\nšatní\nšatniar\nšatniarka\nšatnica\nšatník\nšatňový\nšatočiek\nšatôčka\nšatôčkový\nšatočkych\nšatočky\nšatôčky\nšaton\nŠatove\nšatovka\nšatový\nšatstvo\nšaty\nŠavel\nŠavla\nŠavol\nŠávoľ\nŠavolovi\nŠBČS\nšči\nščot\nŠD\nŠebastiána\nšedasto\nšedavo\nšeď\nšedín\nšedinách\nšedinám\nšedinami\nšediny\nšediva\nšedivasto\nšedivastý\nŠedivca\nŠedivcom\nŠedivec\nšediveniu\nšedivieť\nšedivkasto\nšedivkastý\nšedivkavo\nšedivkavý\nšedivník\nšedivníkový\nšedivo\nšedivobiely\nšedivočierny\nšedivohlavý\nšedivohnedý\nšedivomodrý\nšedivosť\nšedivovlasý\nšedivozelený\nšedivučký\nšedivý\nšedo\nšedočierne\nšedomodré\nšedomodrej\nšedosť\nšedý\nšéf\nšéfdirigent\nšéfka\nšéfkinom\nšéfko\nšéfkonštruktér\nšéfkonštruktéra\nšéfkonštruktérom\nšéfkuchár\nšéfkuchárka\nšéflekár\nšéflekárka\nšéfova\nšéfová\nšéfovaní\nšéfovania\nšéfovanie\nšéfovaním\nšéfovaniu\nšéfovať\nšéfove\nŠéfové\nšéfovho\nšéfovo\nšéfovom\nšéfovský\nšéfových\nšéfpilot\nšéfproducent\nšéfproducentka\nšéfredaktor\nšéfredaktorka\nšéfredaktormi\nšéfredaktorský\nšéfredaktorstvo\nšéfrežiséra\nšéftrénera\nšéftréner\nšéftrénerka\nšechtárik\nšechtár\nšechtármi\nšejk\nšejker\nšejkov\nšek\nšekel\nšekovo\nšekový\nšelak\nšelakový\nšelest\nšelesti\nšelestime\nšelestite\nšelestiť\nšelestivý\nšelestmi\nšelf\nšelfe\nšelfoch\nšelfov\nšelfu\nšeliem\nšelma\nšelmička\nšelmovčina\nšelmovitý\nšelmovsky\nšelmovský\nšelmovstvo\nšelom\nšelov\nšeltia\nšely\nšém\nšemoň\nšemoní\nšemonia\nšemoniac\nšemonil\nšemonila\nšemonili\nšemonilo\nšemoním\nšemoníme\nšemoníš\nšemoniť\nšemoníte\nšemoňme\nšemoňte\nšemotiť\nšenkár\nšenkárka\nšenkársky\nšenk\nšenkoval\nšenkovala\nšenkovali\nšenkovalo\nšenkovať\nšenkovňa\nšenkuj\nšenkuje\nšenkujem\nšenkujeme\nšenkuješ\nšenkujete\nšenkujme\nšenkujte\nšenkujú\nšenkujúc\nšenkvické\nšenkvického\nšenkvickej\nšenkvickom\nšenkvických\nšenkvickými\nšeol\nšepci\nšepcime\nšepcite\nšepkajúce\nšepkajúcich\nšepkanda\nšepkania\nšepkanie\nšepkaním\nšepkaný\nšepkár\nšepkárka\nšepkárska\nšepkárske\nšepkárskeho\nšepkárskej\nšepkárskemu\nšepkárski\nšepkárskom\nšepkárskou\nšepkársku\nšepkársky\nšepkárskych\nšepkárskym\nšepkárskymi\nšepkať\nšepkávať\nšepkom\nšepky\nšepleta\nšepletiť\nšepmo\nšepnúť\nšepotaj\nšepotajme\nšepotajte\nšepotajú\nšepotajúc\nšepotať\nšepotavo\nšepotavý\nšepot\nšepotmi\nšeps\nšept\nšeptajúci\nšeptanie\nšeptať\nšeptávať\nšeptavo\nšeptavý\nšeptom\nšer\nŠer\nšerbeľ\nšerbet\nŠerbet\nšerbety\nšerbľa\nšerbľami\nšerble\nšerbli\nšerblík\nšerbľoch\nšerbľom\nšerbľov\nšerbľu\nšeredne\nšerednosť\nšeredný\nšerejšej\nšerejší\nšerejšia\nšerejšie\nšerejšieho\nšerejšiemu\nšerejších\nšerejším\nšerejšími\nšerejšiu\nšerejšom\nšerejšou\nšeriaci\nšerie\nšerieť\nšerif\nšerifka\nšerifov\nšerifský\nšeriť\nšerm\nšermiar\nšermiarka\nšermiarska\nšermiarske\nšermiarskeho\nšermiarskej\nšermiarskemu\nšermiarski\nšermiarskom\nšermiarskou\nšermiarsku\nšermiarsky\nšermiarskych\nšermiarskym\nšermiarskymi\nšermovačka\nšermovanie\nšermovať\nšermovník\nšero\nšerosť\nšerosvit\nšerosvitmi\nšerpa\nšerp\nšerpovia\nšerte\nšery\nšerý\nšesták\nŠestákovo\nšestákový\nšesťatómový\nšesťbodový\nšesťboký\nšesťciferný\nŠesťcipá\nšesť\nšesťčíslie\nšesťčlenný\nšesťdeiatitisíc\nšesťdenný\nšesťdesiat\nšesťdesiatdeväť\nšesťdesiatdeväťtisíc\nšesťdesiatdva\nšesťdesiatdvatisíc\nšesťdesiatdvatisícsedemsto\nšesťdesiatina\nšesťdesiatiny\nšesťdesiati\nšesťdesiatjeden\nšesťdesiatjedentisíc\nšesťdesiatka\nšesťdesiatkorunový\nšesťdesiatkový\nšesťdesiatkrát\nšesťdesiatnásobkom\nšesťdesiatnásobku\nšesťdesiatnásobnú\nšesťdesiatnásobok\nšesťdesiatnička\nšesťdesiatnik\nšesťdesiatosem\nšesťdesiatosemtisíc\nšesťdesiatpäť\nšesťdesiatpäťtisíc\nšesťdesiatročný\nšesťdesiatsedem\nšesťdesiatsedemtisíc\nšesťdesiatšesť\nšesťdesiatšesťtisíc\nšesťdesiatštyri\nšesťdesiatštyritisíc\nšesťdesiatštyritisícštyristo\nšesťdesiatštyritisíctristo\nšesťdesiattisíc\nšesťdesiattisícový\nšesťdesiattisícpäťsto\nšesťdesiattri\nšesťdesiattritisíc\nšesťdesiaty\nšesťdielny\nšesťdňový\nšesťfázový\nšesťhodinový\nšesťhran\nšesťhranný\nšestica\nšestín\nšestina\nšestinový\nšesťizbový\nšesťjadrový\nšestka\nšesťkilometrový\nšesťkilové\nšesťkorunový\nšesťkrát\nšesťlitrovým\nšesťmesačný\nšesťmetrová\nšesťmetrovú\nšesťmetrových\nšesťmetrovým\nšesťmiestny\nšesťmiliónový\nšesťminútový\nšesťmocný\nšesťnásobkom\nšesťnásobku\nšesťnásobne\nšesťnásobný\nšesťnásobok\nšestnásť\nšestnástina\nšesťnástinová\nšestnástinový\nšestnásti\nšestnástka\nšestnástkový\nšestnásťkrát\nšestnásťnásobného\nšestnásťročný\nšestnásťtisíc\nšestnásťtisícsedemstopäťdesiat\nšestnásty\nšestonedelie\nšestonedieľka\nšestorák\nšestoraký\nšestorka\nšestoro\nšesťpercentný\nšesťposchodový\nšesťriadkových\nšesťročný\nšesťslabičnosť\nšesťslabičný\nšesťsten\nšesťstenný\nšesťsto\nšesťstodesať\nšesťstodesaťtisíc\nšesťstodeväť\nšesťstodeväťdesiat\nšesťstodeväťdesiatdeväť\nšesťstodeväťdesiatdeväťtisíc\nšesťstodeväťdesiatdva\nšesťstodeväťdesiatdvatisíc\nšesťstodeväťdesiatjeden\nšesťstodeväťdesiatjedentisíc\nšesťstodeväťdesiatosem\nšesťstodeväťdesiatosemtisíc\nšesťstodeväťdesiatpäť\nšesťstodeväťdesiatpäťtisíc\nšesťstodeväťdesiatsedem\nšesťstodeväťdesiatsedemtisíc\nšesťstodeväťdesiatšesť\nšesťstodeväťdesiatšesťtisíc\nšesťstodeväťdesiatštyri\nšesťstodeväťdesiatštyritisíc\nšesťstodeväťdesiattisíc\nšesťstodeväťdesiattri\nšesťstodeväťdesiattritisíc\nšesťstodevätnásť\nšesťstodevätnásťtisíc\nšesťstodeväťtisíc\nšesťstodva\nšesťstodvadsať\nšesťstodvadsaťdeväť\nšesťstodvadsaťdeväťtisíc\nšesťstodvadsaťdva\nšesťstodvadsaťdvatisíc\nšesťstodvadsaťjeden\nšesťstodvadsaťjedentisíc\nšesťstodvadsaťosem\nšesťstodvadsaťosemtisíc\nšesťstodvadsaťpäť\nšesťstodvadsaťpäťtisíc\nšesťstodvadsaťsedem\nšesťstodvadsaťsedemtisíc\nšesťstodvadsaťšesť\nšesťstodvadsaťšesťtisíc\nšesťstodvadsaťštyri\nšesťstodvadsaťštyritisíc\nšesťstodvadsaťtisíc\nšesťstodvadsaťtri\nšesťstodvadsaťtritisíc\nšesťstodvanásť\nšesťstodvanásťtisíc\nšesťstodvatisíc\nšesťstojedenásť\nšesťstojedenásťtisíc\nšesťstojeden\nšesťstojedentisíc\nšesťstojedentisícsedemstotridsať\nšesťstokorunové\nšesťstokorunovej\nšesťstokorunovými\nŠesťstokorunový\nšesťstom\nšesťstoosem\nšesťstoosemdesiat\nšesťstoosemdesiatdeväť\nšesťstoosemdesiatdeväťtisíc\nšesťstoosemdesiatdva\nšesťstoosemdesiatdvatisíc\nšesťstoosemdesiatjeden\nšesťstoosemdesiatjedentisíc\nšesťstoosemdesiatosem\nšesťstoosemdesiatosemtisíc\nšesťstoosemdesiatpäť\nšesťstoosemdesiatpäťtisíc\nšesťstoosemdesiatsedem\nšesťstoosemdesiatsedemtisíc\nšesťstoosemdesiatšesť\nšesťstoosemdesiatšesťtisíc\nšesťstoosemdesiatštyri\nšesťstoosemdesiatštyritisíc\nšesťstoosemdesiattisíc\nšesťstoosemdesiattri\nšesťstoosemdesiattritisíc\nšesťstoosemnásť\nšesťstoosemnásťtisíc\nšesťstoosemtisíc\nšesťstopäť\nšesťstopäťdesiat\nšesťstopäťdesiatdeväť\nšesťstopäťdesiatdeväťtisíc\nšesťstopäťdesiatdva\nšesťstopäťdesiatdvatisíc\nšesťstopäťdesiatjeden\nšesťstopäťdesiatjedentisíc\nšesťstopäťdesiatosem\nšesťstopäťdesiatosemtisíc\nšesťstopäťdesiatpäť\nšesťstopäťdesiatpäťtisíc\nšesťstopäťdesiatsedem\nšesťstopäťdesiatsedemtisíc\nšesťstopäťdesiatšesť\nšesťstopäťdesiatšesťtisíc\nšesťstopäťdesiatštyri\nšesťstopäťdesiatštyritisíc\nšesťstopäťdesiattisíc\nšesťstopäťdesiattri\nšesťstopäťdesiattritisíc\nšesťstopätnásť\nšesťstopätnásťtisíc\nšesťstopäťtisíc\nšesťstopový\nšesťstoprvom\nšesťstosedem\nšesťstosedemdesiat\nšesťstosedemdesiatdeväť\nšesťstosedemdesiatdeväťtisíc\nšesťstosedemdesiatdva\nšesťstosedemdesiatdvatisíc\nšesťstosedemdesiatjeden\nšesťstosedemdesiatjedentisíc\nšesťstosedemdesiatosem\nšesťstosedemdesiatosemtisíc\nšesťstosedemdesiatpäť\nšesťstosedemdesiatpäťtisíc\nšesťstosedemdesiatsedem\nšesťstosedemdesiatsedemtisíc\nšesťstosedemdesiatšesť\nšesťstosedemdesiatšesťtisíc\nšesťstosedemdesiatštyri\nšesťstosedemdesiatštyritisíc\nšesťstosedemdesiattisíc\nšesťstosedemdesiattri\nšesťstosedemdesiattritisíc\nšesťstosedemnásť\nšesťstosedemnásťtisíc\nšesťstosedemtisíc\nšesťstošesť\nšesťstošesťdesiat\nšesťstošesťdesiatdeväť\nšesťstošesťdesiatdeväťtisíc\nšesťstošesťdesiatdva\nšesťstošesťdesiatdvatisíc\nšesťstošesťdesiatjeden\nšesťstošesťdesiatjedentisíc\nšesťstošesťdesiatosem\nšesťstošesťdesiatosemtisíc\nšesťstošesťdesiatpäť\nšesťstošesťdesiatpäťtisíc\nšesťstošesťdesiatsedem\nšesťstošesťdesiatsedemtisíc\nšesťstošesťdesiatšesť\nšesťstošesťdesiatšesťtisíc\nšesťstošesťdesiatštyri\nšesťstošesťdesiatštyritisíc\nšesťstošesťdesiattisíc\nšesťstošesťdesiattri\nšesťstošesťdesiattritisíc\nšesťstošestnásť\nšesťstošestnásťtisíc\nšesťstošesťtisíc\nšesťstoštrnásť\nšesťstoštrnásťtisíc\nšesťstoštyri\nšesťstoštyridsať\nšesťstoštyridsaťdeväť\nšesťstoštyridsaťdeväťtisíc\nšesťstoštyridsaťdva\nšesťstoštyridsaťdvatisíc\nšesťstoštyridsaťjeden\nšesťstoštyridsaťjedentisíc\nšesťstoštyridsaťosem\nšesťstoštyridsaťosemtisíc\nšesťstoštyridsaťpäť\nšesťstoštyridsaťpäťtisíc\nšesťstoštyridsaťsedem\nšesťstoštyridsaťsedemtisíc\nšesťstoštyridsaťšesť\nšesťstoštyridsaťšesťtisíc\nšesťstoštyridsaťštyri\nšesťstoštyridsaťštyritisíc\nšesťstoštyridsaťtisíc\nšesťstoštyridsaťtri\nšesťstoštyridsaťtritisíc\nšesťstoštyritisíc\nšesťstotisíc\nšesťstotisícová\nšesťstotri\nšesťstotridsať\nšesťstotridsaťdeväť\nšesťstotridsaťdeväťtisíc\nšesťstotridsaťdva\nšesťstotridsaťdvatisíc\nšesťstotridsaťjeden\nšesťstotridsaťjedentisíc\nšesťstotridsaťosem\nšesťstotridsaťosemtisíc\nšesťstotridsaťpäť\nšesťstotridsaťpäťtisíc\nšesťstotridsaťsedem\nšesťstotridsaťsedemtisíc\nšesťstotridsaťšesť\nšesťstotridsaťšesťtisíc\nšesťstotridsaťštyri\nšesťstotridsaťštyritisíc\nšesťstotridsaťtisíc\nšesťstotridsaťtri\nšesťstotridsaťtritisíc\nšesťstotrinásť\nšesťstotrinástka\nšesťstotrinásťtisíc\nšesťstotritisíc\nšesťstotritisícpäťstopäťdesiat\nšesťstotritisícpäťstopäťdesiatich\nšesťstotrojka\nšesťstranný\nšesťstupňová\nšesťstupňovej\nšesťstupňovo\nšesťstupňovou\nšesťstupňovú\nšesťsýtny\nšesťtisíc\nšesťtisícdvesto\nšesťtisícosemsto\nšesťtisícový\nšesťtisícsedemstodvadsať\nŠesťtonová\nšesťtonové\nšesťtonovej\nšesťtonovú\nšesťtýždenný\nšesťtýždňový\nšesťuholník\nšesťuholníkový\nšesťvalcový\nšesťvalec\nšesťveslica\nšešuľa\nšešuľka\nšét\nšetland\nšetrenie\nšetriaci\nšetrič\nšetrič\nšetriť\nšetrnejší\nšetrne\nšetrnosť\nšetrný\nšev\nševca\nševcami\nševci\nševcoch\nševcom\nševcov\nševcovi\nševcovský\nševel\nševeliť\nševiot\nševkyňa\nševron\nŠFRB\nŠH\nši\nší\nŠiah\nšiahať\nšialenec\nšialene\nšialenosť\nšialenstvo\nšialený\nšialiť\nšialivý\nšiana\nšianaj\nšianajme\nšianajte\nšianajú\nšianajúc\nšianal\nšianala\nšianali\nšianalo\nšianam\nšianame\nšianaš\nšianať\nšianate\nšianec\nšiat\nšiator\nšiatrik\nšiatrový\nšib\nšibač\nšibačka\nšibačkový\nšibaj\nšibajme\nšibajte\nšibajúc\nšibák\nšibáku\nšibáky\nšibal\nšibalka\nšibalmi\nšibalovi\nšibalsky\nšibalský\nšibalstvo\nšibanie\nšibať\nšibávať\nšibeň\nšibencovi\nšibenec\nšibenica\nšibenička\nšibeničník\nšibeničný\nšibeník\nšíber\nšibi\nšibkať\nšibko\nšibkosť\nšibký\nšibnutie\nšibnutím\nšibnuto\nšibnutosť\nšibnúť\nšibnutý\nšibolet\nšiboval\nšibovala\nšibovali\nšibovalo\nšibovania\nšibovanie\nšibovať\nšibrinkovať\nšibú\nšibúc\nšibuj\nšibuje\nšibujem\nšibujeme\nšibuješ\nšibujete\nšibujme\nšibujte\nšibujú\nšibujúc\nšic\nšička\nšidielce\nšidielci\nšidielcom\nšidielec\nšidielko\nšidielok\nšidlo\nšiel\nšiestacký\nšiestačka\nšiestak\nšiesti\nšiestykrát\nšiesty\nšifier\nšiflikár\nšifon\nšifón\nšifónový\nšifra\nšifrovací\nšifrovane\nšifrovanie\nšifrovanosť\nšifrovaný\nšifrovať\nšifrovo\nšifrový\nšichník\nšícht\nšichta\nšichtička\nšichtový\nšiíta\nšiitmi\nšíj\nšíja\nšijací\nšijach\nšíjaj\nšíjajme\nšíjajte\nšíjajú\nšíjajúc\nšijam\nšíjam\nšíjame\nšíjaš\nšíjate\nšíjať\nšija\nšíjavať\nšijem\nšijeme\nšiješ\nšijete\nšijí\nšijový\nšijú\nšijúc\nšikana\nšikanácia\nšikane\nšikanéria\nšikanou\nšikanovania\nšikanovanie\nšikanovaním\nšikanovaniu\nšikanovaný\nšikanovať\nšikanu\nšikany\nšik\nšík\nšikhara\nšikmastý\nšikmejšej\nšikmejší\nšikmejšia\nšikmejšie\nšikmejšieho\nšikmejšiemu\nšikmejších\nšikmejším\nšikmejšími\nšikmejšiu\nšikmejšom\nšikmejšou\nšikmina\nšikmo\nšikmooký\nšikmosť\nšikmý\nšiknúť\nšikovanie\nšikovať\nšikovne\nšikovnica\nšikovnícky\nšikovníčiť\nšikovník\nšikovnosťN\nšikovný\nšikúvať\nšil\nšila\nŠiler\nšili\nšiling\nšilingmi\nšilingoch\nšilingom\nšilingov\nšilingový\nšilingu\nšilingy\nšilo\nšilta\nšilt\nšiltmi\nšiltovka\nšiltovkový\nšiltový\nšime\nšimeľ\nšimfovať\nšimľa\nšimľami\nšimle\nšimľoch\nšimľom\nšimľov\nšimľovi\nŠimon\nŠimonka\nŠimonova\nŠimonovej\nŠimonovho\nŠimonovou\nŠimonovský\nšimpanzí\nšimpanz\nšimrať\nšimre\nšimrem\nšimreme\nšimreš\nšimrete\nšimri\nšimrime\nšimrinkovať\nšimrite\nšimrú\nšimrúc\nšín\nšínach\nšínam\nšína\nšindeľ\nšindľa\nšindľami\nšindle\nšindli\nšindliar\nšindliarsky\nšindľoch\nšindľom\nšindľov\nšindľovec\nšindľový\nšindľu\nšinoazéria\nŠintava\nŠintave\nŠintavská\nŠintavskej\nšinter\nšintoizmus\nšinutie\nšinúť\nšípa\nŠípa\nšíp\nšípenie\nšipiek\nšípie\nšípik\nšípiť\nšipkami\nšípka\nšípkovo\nŠípkovská\nŠípkovskou\nŠipkovský\nšípkový\nšipky\nšiplačka\nšiplajúc\nšiplať\nšiplavec\nšiplavo\nšiplavosť\nšiplavý\nšiplikať\nŠípove\nŠípovo\nšípový\nširáčik\nšírach\nširák\nšíram\nšírami\nšírav\nšírava\nšíravina\nšírejšej\nšírejší\nšírejšia\nšírejšie\nšírejšieho\nšírejšiemu\nšírejších\nšírejším\nšírejšími\nšírejšiu\nšírejšom\nšírejšou\nšírene\nšírenie\nšírený\nšírený\nšíriaci\nširica\nširička\nšíriek\nšírin\nšírinach\nšírinam\nširina\nšírina\nšíriteľ\nšíriteľka\nšíriteľný\nšíriť\nšírka\nšírkovo\nšírkový\nširm\nšíro\nširočina\nširočizný\nširokánsky\nširoko\nširokolistý\nširokopásmový\nširokopásový\nširokoplecá\nširokoplecé\nširokoplecého\nširokoplecému\nširokoplecí\nširokoplecnatá\nširokoplecú\nširokorozchodný\nširokospektrálnosť\nširokospektrálny\nširokosť\nširokouhlo\nširokouhlý\nširoký\nšírošíry\nšírovať\nširší\nširší\nšírvánšáh\nširvánšach\nšíry\nšišak\nšišato\nšišatosť\nšišatý\nšišiakom\nšiši\nšiška\nšiškový\nŠišov\nŠišovský\nšištičky\nšite\nšitie\nšito\nšiť\nšitý\nšk\nŠK\nškál\nškálach\nškálam\nškála\nŠkálovať\nškálový\nškamier\nškamrať\nškamravo\nškamravosť\nškamravý\nškamra\nškamrem\nškamreme\nškamreš\nškamrete\nškamriť\nškamrú\nškamrúc\nškand\nškandál\nškandálik\nškandalista\nškandalizačných\nškandalizovania\nškandalizovanie\nškandalizovaním\nškandalizovaniu\nškandalizovaný\nškandalizovať\nškandálmi\nškandálnik\nškandálny\nškandalózne\nškandalózny\nŠkandinávca\nŠkandinávcami\nŠkandinávci\nŠkandinávcom\nŠkandinávcov\nŠkandinávec\nŠkandinávia\nŠkandinávie\nŠkandinávii\nŠkandinávií\nŠkandináviou\nškandinavistika\nŠkandináviu\nškandinavizmus\nŠkandinávka\nŠkandinávkina\nškandinávska\nškandinávske\nškandinávskeho\nškandinávskej\nškandinávskemu\nškandinávski\nškandinávskom\nškandinávskou\nškandinávsku\nškandinávsky\nškandinávskych\nškandinávskym\nškandinávskymi\nškapuliar\nškapuliarmi\nškapuliarový\nškár\nškárach\nškáram\nškára\nŠkarda\nŠkardu\nškaredejšej\nškaredejší\nškaredejšia\nškaredejšie\nškaredejšieho\nškaredejšiemu\nškaredejších\nškaredejším\nškaredejšími\nškaredejšiu\nškaredejšom\nškaredejšou\nškarediť\nškaredo\nškaredosť\nškaredšíF\nškaredý\nškárička\nškárka\nškarnicieľ\nškarnicľa\nškarniclí\nškáročka\nškárovačka\nškárovania\nškárovanie\nškárovaný\nškárovať\nškarpa\nškarpy\nškartácia\nškartačný\nškartačný\nškartovať\nškatuľa\nškatuľka\nškatuľkovaní\nškatuľkovanie\nškatuľkovať\nškatuľkovitý\nškatuľkový\nškatuľôčka\nškatuľovitý\nškatuľový\nškebľa\nšker\nškerdiť\nškeriť\nškerte\nškica\nškicovať\nškľabenie\nškľabiaci\nškľabiť\nškľabivo\nškľabivý\nškľabka\nšklb\nšklban\nšklbanček\nšklbanec\nšklbania\nšklbanie\nšklbaním\nšklbaný\nšklbať\nšklbavo\nšklbavý\nšklbkať\nšklbnutie\nšklbnutím\nšklbnúť\nšklbú\nšklbúc\nškôd\nškoda\nškodca\nškodcovský\nškodcovský\nškodcovstvo\nškodenia\nškodeniu\nškodiaceho\nškodiť\nškodlivina\nškodlivo\nškodlivosť\nškodlivý\nškodník\nškodný\nškodoradosť\nškodoradostne\nškodoradostník\nškodoradostnosť\nškodoradostný\nŠkodováci\nŠkodovák\nškodovákmi\nškodovákom\nškodovákov\nškodovať\nŠkodove\nškodovka\nškodový\nŠkoch\nškoklovať\nškol\nškoľ\nškolácky\nškoláčik\nškoláčka\nškolák\nškola\nškôldozorca\nškolene\nškolenie\nškolenosť\nškolený\nškolí\nškolia\nškoliac\nškoliace\nškoliacich\nškolička\nškolil\nškolila\nškolili\nškolilo\nškolím\nškolíme\nškolíš\nškoliť\nškolíte\nškoliteľ\nškoliteľka\nškoliteľský\nškoliteľstvo\nškôlkar\nškôlkár\nškôlkarsky\nškôlkarský\nškôlkársky\nškôlkárstvach\nškôlkárstvam\nškôlkarstvo\nškôlkárstvo\nškôlka\nškôlkovaná\nškôlkovaní\nškoľme\nškolné\nškolnícky\nškolníctvach\nškolníctvam\nškolníctvo\nškolníčka\nškolník\nškolný\nškolomet\nškolometsky\nškolometský\nškolometstvo\nškolopovinnosť\nškolopovinný\nškolovanosť\nškolovaný\nškolovať\nškolsky\nškolský\nškolstvo\nškoľte\nškom\nškopa\nŠkopa\nškop\nškopcovi\nškopec\nškopík\nškopiť\nškopok\nškopovi\nškopovica\nškopovina\nškopový\nškorčí\nškorecL\nškorica\nškoricovník\nškoricovo\nškoricovohnedý\nškoricový\nškorpión\nškorpiónovi\nškót\nŠkót\nŠkótka\nŠkótkam\nŠkótke\nŠkótku\nŠkótky\nŠkótsko\nškótsky\nškótsky\nškovran\nŠkovrana\nškovrančí\nškovránčí\nškovránkovi\nškovránok\nŠKP\nškrab\nškrabácky\nškrabač\nškrabáči\nškrabáčik\nškrabáčiku\nškrabáčiky\nškrabačka\nškrabačky\nškrabadielko\nškrabadielok\nškrabadlo\nškrabák\nškrabák\nškrabákový\nškrabanec\nškrabania\nškrabanie\nškrabaním\nškrabanina\nškrabaný\nškrabať\nškrabavo\nškrabavosť\nškrabavý\nškrabcovať\nškrabkať\nškrabka\nškrabkový\nškrabľavo\nškrabľavosť\nškrabľavý\nškrabnutie\nškrabnúť\nškraboška\nškrabošku\nškrabošky\nškrabotajúc\nškrabotať\nškrabot\nškrabotmi\nškraňa\nškraní\nškrapatý\nškrát\nškraták\nškrata\nškrč\nškrčať\nškreč\nškrečací\nškrečať\nškrečí\nškrečkovi\nškrečok\nškrek\nškrekľavo\nškrekľavý\nškrekľúň\nškrekľúni\nškrekotajúc\nškrekotať\nškrekotavo\nškrekotavý\nškrekot\nškrekotmi\nškriab\nškriabaní\nškriabanie\nškriabaním\nškriabaniu\nškriabať\nškriabavo\nškriabavosť\nškriabavý\nškriatkovi\nškriatkovia\nškriatok\nškridiel\nškridla\nškridlica\nškridlicový\nškridlový\nškriekajúci\nškriekanie\nškriekať\nškriekavať\nškriekavo\nškriekavosť\nškriekavý\nškriepení\nškriepiť\nškriepivo\nškriepivosť\nškriepivý\nškriepka\nškrieplivo\nškrieplivosť\nškrieplivý\nškriepnik\nškriepnosť\nškriepny\nškrieť\nškrip\nŠkrip\nškrípaj\nškrípajme\nškrípajte\nškrípajúc\nškrípanieN\nškrípať\nškrípavejší\nškrípavo\nškrípavý\nškripcový\nškripec\nškripí\nškripia\nškripiac\nškripieť\nškripím\nškripíme\nškripíš\nškripíte\nškripľavo\nškripľavý\nškripme\nškripotajúc\nškripotať\nškripotavo\nškripotavý\nškripot\nškripotmi\nškripte\nškŕkaní\nškŕkať\nškrkavka\nškŕkavo\nškŕkavý\nškrk\nškrknúť\nškroba\nŠkroba\nškrobár\nškrobáreň\nškrobárenský\nškrobárka\nškrobárňach\nškrobárňam\nškrobársky\nškrobárstvach\nškrobárstvam\nškrobárstvo\nškrob\nškrobene\nškrobenie\nškrobeno\nškrobenosť\nškrobený\nškrobi\nškrobiť\nškrobnatosť\nškrobnatý\nškrobovi\nškrobovina\nškrobový\nškrtaná\nškrtané\nškrtaní\nškrtania\nškrtanie\nškrtaním\nškrtaniu\nškrtaných\nškrtať\nškrt\nškrtenia\nškrtenie\nškrtením\nškrteniu\nškrtený\nškrti\nškrtiaci\nškrtič\nškrtiča\nškrtičoch\nškrtiť\nškrtivo\nškrtivý\nškrtmi\nškrtnutie\nškrtnutím\nškrtnutiu\nškrtnúť\nškrtnutý\nškrúc\nškrupina\nškrupinka\nškrupinový\nškrupulant\nškrupulantsky\nškrupulantský\nškrupulantstvo\nškrupuľa\nškrupuľoval\nškrupuľovala\nškrupuľovali\nškrupuľovalo\nškrupuľovať\nškrupulovať\nškrupulózne\nškrupulóznosť\nškrupulózny\nškrupuľuj\nškrupuľuje\nškrupuľujem\nškrupuľujeme\nškrupuľuješ\nškrupuľujete\nškrupuľujme\nškrupuľujte\nškrupuľujú\nškrupuľujúc\nŠKST\nšku\nŠkubal\nŠkubala\nškubať\nŠkubla\nškúl\nškuľaňa\nškuláň\nškuláni\nškuľaní\nškuľavo\nškuľavosť\nškuľavý\nškúlavý\nškuľavý\nškúlenie\nškúliaci\nškuliak\nškúlievať\nškúliť\nškultét\nškumáty\nškúmp\nškumpa\nškumpový\nškundry\nškuner\nškunermi\nškunery\nškunty\nškút\nškuta\nškutinatý\nškutina\nškutinka\nŠkutka\nškvar\nškvár\nškvára\nškvara\nškvarením\nškvarenina\nškvarený\nškvariť\nškvarka\nŠkvarkom\nškvarkový\nškvarobetón\nškvarobetónový\nškvaročka\nškvarôčka\nškvarok\nškvárou\nškvarový\nškvarte\nškváru\nškváry\nŠkvor\nŠkvora\nškvrč\nškvrčať\nškvŕkať\nškvŕn\nškvŕňa\nškvŕňat\nškvrnavý\nškvrna\nškvrnito\nškvrnitosť\nškvrnitý\nškvrnivka\nškvrnka\nškvrnový\nšky\nšlabikár\nšlabikármi\nšlabikárový\nšláger\nšlágrik\nšlágrový\nšlágvort\nšľahač\nšľahačka\nšľahačkový\nšľahačový\nšľahajúci\nšľahanie\nšľahaním\nšľahaný\nšľahať\nšľahavý\nšľah\nšľahnutie\nšľahnutím\nšľahnúť\nšľahnutý\nŠlahor\nŠlahorom\nšľahotať\nšľahúňa\nšľahúne\nšľahúni\nšľahúň\nšľahúňmi\nšľahúňoch\nšľahúňom\nšľahúňov\nšľahúňový\nšľahúňu\nšľacha\nšľachetne\nšľachetnosťN\nšľachetný\nšľachovitý\nšľachový\nšľácht\nšľachtách\nšľachtám\nšľachtami\nšľachta\nšľachtenec\nšľachtenie\nšľachtený\nšľachtený\nšľachti\nšľachtic\nšľachticky\nšľachtický\nšľachtictvo\nšľachtičnách\nšľachtičnám\nšľachtičnami\nšľachtičná\nšľachtime\nšľachtite\nšľachtiteľ\nšľachtiteľka\nšľachtiteľský\nšľachtiteľstvo\nšľachtiť\nšlajfka\nšľak\nšľakovať\nšľakovitý\nšlamastika\nšľampa\nšla\nšľapajách\nšlapaj\nšľapaj\nšlapajový\nšľapajový\nšľapák\nšľapa\nšľapcovať\nšľapka\nšlendrián\nšlendriánsky\nšlendriánstvach\nšlendriánstvam\nšlendriánstvo\nšlendriánu\nšlep\nšliach\nšliam\nšliapací\nšliapačiek\nšliapačky\nšliapadlo\nšliapadlový\nšliapanie\nšliapať\nšliapavať\nšliapnutie\nšliapnuť\nšlícht\nšlichta\nšlichtovacie\nšlichtovacieho\nšlichtovanie\nšlik\nšli\nšlohla\nšlohli\nšlohlo\nšlohne\nšlohnem\nšlohneme\nšlohneš\nšlohnete\nšlohni\nšlohnime\nšlohnite\nšlohnú\nšlohnúc\nšlohnúť\nšlohol\nšlo\nŠLÚ\nšluk\nšluknutie\nšluknúť\nšlukovať\nšlus\nšmačný\nšmah\nšmahnúť\nšmajchlovať\nšmakovať\nšmar\nšmárať\nšmariť\nšmarte\nšmatlá\nšmatlaj\nšmatlajme\nšmatlajte\nšmatlajú\nšmatlajúc\nšmatlajúci\nšmatlám\nšmatláme\nšmatláš\nšmatláte\nšmatlať\nšmatlavo\nšmatlavosť\nšmatlavý\nšmatliak\nšmátrať\nšmelí\nšmelinár\nšmelinárčiť\nšmelináriť\nšmelinárka\nšmelinársky\nšmelinárstvach\nšmelinárstvam\nšmelinárstvo\nšmelina\nšmelinka\nšmeliť\nŠmigovec\nŠmihla\nšmihnúť\nšmik\nšmikňa\nšmikni\nšmiks\nšminka\nšminkér\nšminkovať\nšmirgeľ\nšmirgľovať\nšmirgľový\nšmochtať\nŠmolka\nšmotkať\nšmrdkať\nšmrnc\nšmúh\nšmuhavý\nšmuha\nšmýkačka\nšmýkadlo\nšmýkanie\nšmýkať\nšmyk\nšmykľavka\nšmykľavo\nšmykľavosť\nšmykľavý\nšmyknutie\nšmyknúť\nšmykový\nšmyks\nšnaps\nšnapsový\nšnek\nšnekový\nšniapať\nšnicľa\nšniclí\nšnip\nšnorchel\nšnufák\nšňupací\nšňupacieho\nšnupací\nšnupák\nšnupanie\nšnupať\nšnupávať\nšnupavý\nšnupnúť\nšnúr\nšnúrach\nšnúram\nšnúra\nšnúrka\nšnúročka\nšnurovací\nšnurovačka\nšnurovanie\nšnurovaný\nšnurovať\nšnúrový\nšodó\nšofar\nšofér\nšoférka\nšoférova\nšoférované\nšoférovaní\nšoférovania\nŠoférovanie\nšoférovaním\nšoférovaniu\nšoférovať\nšoférovej\nšoférovo\nšoférovým\nšoférsky\nšoférstvach\nšoférstvam\nšoférstvo\nšogun\nšógun\nšok\nšoking\nŠokovane\nšokovania\nšokovanie\nšokovaný\nšokovať\nšokový\nšokujúcejšej\nšokujúcejší\nšokujúcejšia\nšokujúcejšie\nšokujúcejšieho\nšokujúcejšiemu\nšokujúcejších\nšokujúcejším\nšokujúcejšími\nšokujúcejšiu\nšokujúcejšom\nšokujúcejšou\nšokujúci\nšokujúco\nšolet\nšoltés\nŠoltésa\nŠoltésom\nŠoltésova\nŠoltésovej\nšoltýs\nŠoltýsa\nŠoltýsovej\nšomáž\nšomráč\nšomrák\nšomranie\nšomrať\nšomrávať\nšomravo\nšomravosť\nšomravý\nšomre\nšomrem\nšomreme\nšomreš\nšomrete\nšomri\nšomrime\nšomrite\nšomroš\nšomrú\nšomrúc\nŠOP\nšôp\nšopa\nšopka\nšôpka\nŠoporňa\nŠoporne\nŠoporni\nŠoporňu\nŠopov\nšopovane\nŠopron\nŠoprončan\nšor\nšortiek\nšortkky\nšortkový\nšortky\nšos\nšošovica\nšošovicový\nšošovička\nšošovka\nšošovkovitý\nšošovkový\nšot\nšotmi\nšotolina\nšou\nšoubiznis\nšoulet\nšoumen\nšovinista\nšovinisticky\nšovinistický\nšovinistka\nšovinizmus\nšp\nŠP\nšpacírka\nšpacírovať\nšpaček\nŠpačince\nŠpačinciach\nŠpačiniec\nšpačka\nšpačkami\nšpačkoch\nšpačkom\nŠpačkom\nšpačkov\nŠpačkov\nšpačku\nŠpačku\nšpačky\nšpagát\nšpagátik\nšpagátmi\nšpagátový\nšpageta\nšpagetový\nšpagiet\nšpachtľa\nšpachtlí\nšpachtlička\nšpajdľa\nšpajdlí\nšpajdľový\nšpajľa\nšpajlí\nšpajľový\nšpájz\nšpajza\nšpajziek\nšpajzka\nšpajzový\nšpajzujeme\nšpak\nšpaleta\nšpaletový\nšpalierik\nšpalier\nšpaliermi\nšpaliet\nšpált\nšpalta\nšpan\nŠpaniel\nšpanielčin\nšpanielčinách\nšpanielčinám\nšpanielčinami\nšpanielčinár\nšpanielčinárka\nšpanielčina\nšpaniel\nŠpanielka\nŠpanielkou\nŠpanielku\nŠpanielovej\nšpanielovi\nšpanielskoamer\nŠpanielsko\nšpanielsky\nšpanielsky\nšpanovať\nšpár\nšpáradielko\nšpáradielok\nšpáradlo\nšpáradlový\nšpárach\nšparák\nšpáraním\nšpárať\nšpára\nšpargľa\nšparglí\nšpargľovne\nšpargľovni\nšpargľovní\nšpargľový\nšparcháč\nšparchadlo\nšparchaním\nšparchať\nšpárka\nšpáročka\nšpároval\nšpárovala\nšpárovali\nšpárovalo\nšpárovať\nšpáruj\nšpáruje\nšpárujem\nšpárujeme\nšpáruješ\nšpárujete\nšpárujme\nšpárujte\nšpárujú\nšpárujúc\nšpás\nšpásik\nšpásovanie\nšpásovať\nšpásovne\nšpásovný\nšpát\nšpata\nšpatin\nŠpatina\nšpatiť\nšpatne\nšpatnie\nšpatnieť\nšpatnosť\nšpatný\nšpec\nšpeciál\nšpecialista\nšpecialistka\nšpecialít\nšpecialita\nšpecialitky\nšpecializácia\nšpecializáciaN\nšpecializovane\nšpecializovanieN\nšpecializovaný\nšpecializovaný\nšpecializovať\nšpecializujúci\nšpeciálka\nšpeciálmi\nšpeciálne\nšpeciálnosť\nšpeciálny\nšpécia\nšpecifickosť\nšpecificky\nšpecifický\nšpecifičnosť\nšpecifičnosti\nšpecifik\nšpecifikácia\nšpecifikačný\nšpecifikačný\nšpecifika\nšpecifikovane\nšpecifikovanie\nšpecifikovaný\nšpecifikovať\nšpecifikum\nšpecifita\nšpecifitou\nšpedícia\nšpedične\nšpedično\nšpedičný\nšpeditér\nšpeditérsky\nšpeditérstvach\nšpeditérstvam\nšpeditérstvo\nšpeh\nšpehovanieN\nšpehovať\nšpehúň\nšpehúni\nšpehúnka\nšpehúnsky\nšpehúnstvach\nšpehúnstvam\nšpehúnstvo\nšpehy\nšpekáčik\nšpekáčikový\nšpekáčkami\nŠpekáčky\nšpekulácia\nšpekulačne\nšpekulačno\nšpekulačný\nšpekulant\nšpekulantka\nšpekulantsky\nšpekulantský\nšpekulantstvo\nšpekulatívnosť\nšpekulatívny\nšpekulovaní\nšpekulovania\nšpekulovanie\nšpekulovaním\nšpekulovaniu\nšpekulovať\nšpenát\nšpenátmi\nšpenátovo\nšpenátový\nšpendlíček\nšpendlíčka\nšpendlíčkami\nšpendlíčkoch\nšpendlíčkom\nšpendlíčkov\nšpendlíčku\nšpendlíčky\nšpendlík\nšpendlíkový\nšpendliť\nšperhák\nšperkami\nšperk\nšperkovnica\nšperkovnička\nšperkový\nŠpeta\nšpetej\nŠpetu\nšpicato\nšpicatosť\nšpicatý\nšpica\nŠpicberčan\nŠpicbergy\nšpicberský\nšpiceľ\nšpic\nšpicľa\nšpicľami\nšpicli\nšpicľoch\nšpicľom\nšpicľov\nšpicľovania\nŠpicľovanie\nšpicľovať\nšpicľovi\nšpicľovský\nšpicľovstvo\nšpičiak\nšpičiaku\nšpičiaky\nšpička\nšpičkovania\nšpičkovanie\nšpičkovo\nšpičkový\nšpieť\nšpik\nšpikovať\nšpikový\nšpín\nšpinavec\nšpinavo\nšpinavobiely\nšpinavosť\nšpinavožltý\nšpinavší\nšpinavý\nšpina\nšpinci\nšpincime\nšpincite\nšpinení\nšpinenie\nšpiniace\nšpiniť\nšpinka\nšpintá\nšpintaj\nšpintajme\nšpintajte\nšpintajú\nšpintajúc\nšpintám\nšpintáme\nšpintáš\nšpintáte\nšpintať\nšpionážach\nšpionážam\nšpionáž\nšpionážny\nšpión\nšpiónka\nšpiónovať\nšpiónsky\nšpiónstvach\nšpiónstvam\nšpiónstvo\nšpirák\nšpirál\nšpirálach\nšpirálam\nšpirála\nšpirálka\nšpirálovite\nšpirálovito\nšpirálovitosť\nšpirálovitý\nšpirálovo\nšpirálový\nšpiritista\nšpiritisticky\nšpiritistický\nšpiritistka\nšpiritizmus\nŠpiritizovanie\nšpiritizovať\nšpirituál\nšpiritus\nšpiritusový\nšpitála\nšpitál\nšpitáli\nšpitálmi\nšpíz\nšpľachci\nšpľachcime\nšpľachcite\nšpľachnúť\nšpľachotajúc\nšpľachotať\nšpľachotavý\nšpľachot\nšpľachotmi\nšpľachtanica\nšpľachtať\nšplech\nšplechci\nšplechcime\nšplechcite\nšplechnutie\nšplechnutím\nšplechnúť\nšplechotajúc\nšplechotať\nšplechot\nšplechotmi\nšplechtať\nšplhadlo\nšplhaní\nšplhania\nšplhanie\nšplhaniu\nšplhať\nšplhavec\nšplhavý\nšplh\nšplhnúť\nšplhúň\nšplhúni\nšplhúnsky\nšplhúnstvach\nšplhúnstvam\nšplhúnstvo\nšplhúňstvo\nšpliechajúcej\nšpliechajúci\nšpliechanec\nšpliechanieN\nšpliechať\nšpongia\nšpongiový\nšponovanie\nšponovať\nšponoviek\nšponovky\nšpor\nšporáčik\nšporák\nšporiť\nšporonský\nšporovať\nšporovlivo\nšporovlivosť\nšporovlivý\nšport\nšportiek\nšportkár\nšportka\nšportkovanie\nšportkovať\nšportkový\nšportmi\nšportovaní\nšportovania\nšportovanie\nšportovaním\nšportovaniu\nšportovať\nšportove\nšportovec\nšportovísk\nšportovisko\nšportovkyňa\nšportovo\nšportový\nšportujúcej\nšportujúci\nšprajcoval\nšprajcovala\nšprajcovali\nšprajcovalo\nšprajcovať\nšprajcuj\nšprajcuje\nšprajcujem\nšprajcujeme\nšprajcuješ\nšprajcujete\nšprajcujme\nšprajcujte\nšprajcujú\nšprajcujúc\nšprihať\nšprihnúť\nšprint\nšprintér\nšprintérka\nšprintérsky\nšprintmi\nšprintovať\nšprot\nšprota\nšprtať\nšpúlením\nšpúliť\nšpuľka\nšpunt\nšpunte\nšpuntu\nšpunty\nšpurt\nšpurtmi\nšpurtovať\nšpurtový\nŠPZ\nŠR\nšrafa\nšráf\nšráfik\nšrafovanie\nšrafovaný\nšrafovať\nšrám\nšramel\nŠramka\nŠramková\nŠramkovej\nŠramkovou\nŠramkovú\nŠramku\nšramotajúc\nšramotanie\nšramotať\nšramot\nšramotiť\nšramotmi\nšrapnela\nšrapnel\nšrapnelmi\nšrapnelový\nšráub\nšrauba\nšrauba\nšraub\nšraubička\nšraubík\nšraubovák\nšraubovaním\nšraubovať\nšraubový\nšrégom\nšrev\nŠrobárová\nŠrobárovej\nšrot\nšrotmi\nšrotovacej\nšrotovaciemu\nšrotovaciu\nšrotovanie\nšrotovaných\nšrotovať\nšrotovísk\nšrotovisko\nšrotovňa\nšrotovní\nšrotovník\nšrotovníkový\nšrotový\nšrve\nšš\nŠš\nššš\nšt\nštabarc\nštabarcovať\nštáb\nštábny\nštadardný\nštadiálnosť\nštadiálny\nštadión\nštádiovo\nštádiovosť\nštádiový\nštádium\nštafážach\nštafážam\nštafáž\nštafeta\nštafetový\nštafírovať\nštafľa\nštafle\nštajerák\nŠtajerčan\nŠtajersko\nštajerský\nštajfák\nštajger\nštamgast\nštamperlík\nštamprlík\nšťance\nšťancoch\nšťancom\nšťancov\nštandarda\nštandard\nštandardizácia\nštandardizačný\nštandardizovanie\nštandardizovaný\nštandardizovaný\nštandardizovať\nštandardne\nštandardno\nštandardnosť\nštandardný\nštandartných\nštangieľ\nštangľa\nštanglí\nštanglička\nštangľový\nštára\nštárať\nštart\nštartérC\nštartéru\nštartéry\nštartmi\nštartovací\nštartovania\nštartovanie\nštartovaním\nštartovaniu\nštartovaný\nštartovať\nštartovný\nštartový\nštartujúci\nšťastenách\nšťastenám\nšťastenami\nšťastena\nšťastien\nšťastieN\nšťastlivec\nšťastlivo\nšťastlivý\nšťastnejší\nšťastne\nšťastne\nšťastný\nštat\nštatariálny\nštatárium\nštát\nšťatie\nštátik\nštatist\nštatista\nštatisticky\nštatistický\nštatistička\nštatistika\nštatistik\nštatistka\nštátku\nštátmi\nštátnic\nštátnica\nštátnickosť\nštátnicky\nštátnický\nštátnicový\nštátnik\nštátnikova\nštátnobezpečnostné\nštátnobezpečnostných\nštátnohospodársky\nštátnomonopolistický\nštátnopoliticky\nštátnopolitický\nštátnosť\nštátnozamestnanecký\nštátny\nštátoobčiansky\nštátoprávny\nštátostrán\nštátostrana\nštátotvorne\nštátotvornosť\nštátotvorný\nštatovať\nštátovka\nšťať\nštatus\nštatusový\nštatutár\nštatutárne\nštatutárny\nštatút\nštatútmi\nšťava\nšťaveľ\nšťaveľmi\nšťaveľoch\nšťaveľom\nšťaveľov\nšťaveľový\nšťaveľu\nšťavená\nšťavica\nšťavici\nšťavička\nšťavík\nŠťavina\nŠťavinom\nŠťavinu\nšťaviť\nšťavnato\nšťavnatosť\nšťavnatý\nŠtB\nštebeľ\nštebľa\nštebľami\nšteble\nštebli\nšteblík\nštebľoch\nštebľom\nštebľov\nštebľu\nštebotá\nštebotaj\nštebotajme\nštebotajte\nštebotajú\nštebotajúc\nštebotajúca\nštebotajúci\nštebotám\nštebotáme\nštebotanie\nštebotáš\nštebotáte\nštebotať\nštebotavo\nštebotavosť\nštebotavý\nštebot\nštebotmi\nštedreca\nštedrece\nštedreci\nštedrec\nštedrecmi\nštedrecoch\nštedrecom\nštedrecov\nštedrecu\nštedrejšej\nštedrejší\nštedrejšia\nštedrejšie\nštedrejšieho\nštedrejšiemu\nštedrejších\nštedrejším\nštedrejšími\nštedrejšiu\nštedrejšom\nštedrejšou\nštedro\nštedrosť\nštedrovečerný\nštedrý\nŠtefa\nŠtefán\nŠtefan\nŠtefánia\nŠtefánka\nŠtefánke\nŠtefánku\nŠtefanova\nŠtefanová\nŠtefanove\nŠtefanovej\nŠtefanovho\nŠtefanovo\nŠtefanovského\nštefánsky\nštefanský\nŠtefurov\nštek\nštekajúci\nštekanie\nštekaním\nštekaniu\nštekať\nštekávať\nštekavo\nštekavý\nšteklenie\nštekliť\nšteklivo\nšteklivosť\nšteklivý\nšteknutie\nšteknúť\nštekotať\nštekot\nštekotmi\nšteky\nŠteliar\nŠteliarovej\nšteloval\nštelovala\nštelovali\nštelovalo\nštelovanie\nštelovať\nšteluj\nšteluje\nštelujem\nštelujeme\nšteluješ\nštelujete\nštelujme\nštelujte\nštelujú\nštelujúc\nštemovať\nštempeľ\nštempľa\nštempľami\nštemple\nštempli\nštempľoch\nštempľom\nštempľov\nštempľoval\nštempľovala\nštempľovali\nštempľovalo\nštempľovať\nštempľu\nštempľuj\nštempľuje\nštempľujem\nštempľujeme\nštempľuješ\nštempľujete\nštempľujme\nštempľujte\nštempľujú\nštempľujúc\nšteňa\nšteňací\nštence\nštencoch\nštencom\nšteniat\nšteniatko\nšteniatok\nŠteňu\nštepa\nštepár\nštepársky\nštepárstvach\nštepárstvam\nštepárstvo\nštep\nštepená\nštepenec\nštepenie\nštepík\nštepiť\nŠtepkom\nštepkov\nŠtepku\nštepky\nštepný\nŠtepová\nštepovanie\nštepovaním\nštepovaný\nštepovať\nŠtepovej\nŠtepovú\nšterling\nšterlingmi\nšterlingoch\nšterlingom\nšterlingov\nšterlingový\nšterlingu\nšterlingy\nŠteruský\nŠterusoch\nŠterusy\nšteť\nštet\nštetcový\nštetec\nŠtetí\nštetinatý\nštetina\nŠtetín\nŠtetínčan\nštetinka\nštetinový\nštetínska\nŠtetínske\nštetínskeho\nštetínskej\nštetínskom\nštetínsky\nštetka\nštetôčky\nštetovníc\nštetovnice\nštetový\nŠteva\nŠtevka\nŠtevkovi\nŠtevku\nŠtevovi\nštiaci\nštiapa\nštiap\nštiapik\nštiav\nštiavec\nŠtiavnica\nŠtiavnice\nŠtiavnici\nštiavnický\nŠtiavnicou\nŠtiavnicu\nŠtiavničan\nŠtiavničanka\nŠtiavničianka\nštiavničiansky\nŠtiavnička\nŠtiavničkách\nŠtiavničke\nŠtiavničky\nŠtiavnik\nŠtiavnika\nŠtiavniku\nŠtibraný\nštibrať\nštibre\nštibrem\nštibreme\nštibreš\nštibrete\nštibri\nštibrime\nštibrite\nštibrú\nštibrúc\nšticatý\nštica\nšticavý\nšticovať\nštiepací\nštiepačka\nštiepaj\nštiepajme\nštiepajte\nštiepajú\nštiepajúc\nštiepame\nštiepanie\nštiepaním\nštiepaný\nštiepaš\nštiepate\nštiepateľnosť\nštiepateľný\nštiepať\nštiepavať\nštiepavý\nštiepa\nštiep\nštiepenej\nštiepenie\nštiepenka\nštiepenka\nštiepenou\nštiepenú\nštiepených\nštiepiť\nštiepka\nštiepnosť\nštiepny\nštiepok\nštíhlejší\nštíhlosť\nštíhly\nštich\nštikací\nštikanie\nštikať\nštikávať\nštiknutím\nštiknúť\nštikútajúci\nštikútanie\nštikútať\nštikútavka\nštikútavý\nštimovanie\nštimovať\nštípací\nštípaj\nštípajme\nštípajte\nštípajúc\nŠtipák\nŠtipáka\nštípanec\nštípanie\nštípaním\nštípať\nštipcový\nštipec\nštipendijný\nštipendista\nštipendistka\nštipendium\nštipkaním\nštipkať\nštipka\nštipľavo\nštipľavosť\nštipľavý\nštipnutí\nštipnutia\nštipnutie\nštipnutím\nštipnúť\nštipôčka\nŠtír\nštíta\nŠtitáre\nŠtitároch\nštít\nštítiaci\nštítiť\nštítivo\nštítivý\nštítkový\nštítmi\nŠtítnická\nŠtítnickej\nštítnička\nŠtítnik\nŠtítnika\nštítny\nštítok\nštítonosec\nštítový\nŠTK\nštočkový\nštočok\nštof\nštok\nštokerla\nštokerlík\nŠtokholm\nŠtokholmčan\nŠtokholmčanka\nštokholmský\nštokovec\nštokový\nštokrlík\nštól\nštôla\nŠtôla\nštólach\nštólam\nštóla\nštolba\nŠtolba\nŠtôle\nštôlňach\nštôlňam\nštôlňa\nštôlní\nŠtôly\nštopeľ\nštopeľ\nštopkačka\nštopkaní\nštopkanie\nštopkaním\nštopkať\nštopľa\nštopľami\nštople\nštopli\nštoplík\nštoplo\nštopľoch\nštopľom\nštopľov\nštopľovi\nštopľu\nštorcoval\nštorcovala\nštorcovali\nštorcovalo\nštorcovanie\nštorcovať\nštorcuj\nštorcuje\nštorcujem\nštorcujeme\nštorcuješ\nštorcujete\nštorcujme\nštorcujte\nštorcujú\nštorcujúc\nštós\nštôs\nštósik\nštôsik\nŠtóski\nštósky\nštóskych\nštrabavosť\nštráf\nštráfik\nštráfkatý\nštráfkovane\nštráfkovaný\nštráfovane\nštráfovaný\nštrachať\nštrajchla\nštrajchli\nštrajchlo\nštrajchne\nštrajchnem\nštrajchneme\nštrajchneš\nštrajchnete\nštrajchni\nštrajchnime\nštrajchnite\nštrajchnú\nštrajchnúc\nštrajchnúť\nštrajchol\nštrajk\nštrajkokaza\nštrajkokaz\nštrajkokazecký\nštrajkokazectvo\nštrajkokazi\nštrajkokazovi\nštrajkovania\nštrajkovanie\nštrajkovaním\nštrajkovať\nštrajkový\nštrajkujúci\nštramácky\nštramák\nštramanda\nštrámiek\nštrámka\nštrand\nštranok\nštránok\nštrapa\nštrapácia\nštras\nŠtrasburg\nŠtrasburgčan\nštrasburský\nštrasový\nŠtrba\nštrbák\nŠtrbákovej\nštrbaňa\nštrbáň\nštrbaní\nštrbáni\nštrbánici\nštrbánik\nštrbánikovi\nštrbavosť\nštrbavý\nŠtrbe\nštrbín\nštrbina\nštrbinka\nštrbinový\nštrbiť\nŠtrbou\nštrbský\nŠtrbu\nŠtrby\nštrébera\nštréber\nštréberi\nštréberka\nštrébermi\nštréberoch\nštréberom\nštréberov\nštréberovi\nštrébersky\nštréberský\nštréberstvo\nštreka\nštricácky\nštricáctvach\nštricáctvam\nštricáctvo\nštricáčka\nštricák\nštriek\nštrikovanie\nštrikovať\nštŕka\nštrkáči\nštrkáč\nštrkáču\nštŕkať\nštrkať\nštrk\nštrknúť\nštrkonosným\nštrkopieskový\nštrkopiesok\nštrkotajúc\nštrkotanie\nštrkotať\nštrkot\nštrkotmi\nštrkovať\nŠtrkovca\nŠtrkovci\nŠtrkovec\nštrkoviny\nštrkovísk\nštrkovisko\nštrkovitosť\nštrkovitý\nštrkovňa\nštrkovní\nŠtrkovní\nštrkovo\nštrkový\nštrnásť\nštrnásťčlenný\nštrnásťdenne\nštrnásťdenníkov\nštrnásťdenníku\nštrnásťdenný\nštrnásťdňový\nštrnástinu\nštrnásti\nštrnástka\nštrnásťkrát\nštrnásťmesačné\nštrnásťročný\nštrnásťtisíc\nštrnásťtisícsedemsto\nštrnásťveršová\nštrnásty\nštrngajúci\nštrnganie\nštrnganím\nštrngať\nštrngavý\nštrng\nštrngnutie\nštrngnúť\nštrngotať\nštrngot\nštrngotmi\nštrudieľ\nštrúdieľ\nštrudľa\nštrúdľa\nštrúdlí\nštrúdľový\nštrudlu\nštruk\nštruks\nštruktúr\nštruktúrach\nštrukturalista\nštrukturalisticky\nštrukturalistický\nštrukturalistka\nštrukturalizácia\nštrukturalizmus\nštrukturalizoval\nštrukturalizovala\nštrukturalizovali\nštrukturalizovalo\nštrukturalizovanie\nštrukturalizovaný\nštrukturalizovať\nštrukturalizuj\nštrukturalizuje\nštrukturalizujem\nštrukturalizujeme\nštrukturalizuješ\nštrukturalizujete\nštrukturalizujme\nštrukturalizujte\nštrukturalizujú\nštrukturalizujúc\nštrukturálne\nštrukturálnosť\nštrukturálny\nštruktúram\nštruktúra\nštruktúrnosť\nštruktúrny\nštruktúrovane\nštruktúrovanosť\nštrukturovaný\nštruktúrovaný\nŠtubňa\nŠtubne\nŠtubni\nŠtubňou\nŠtubňu\nšťučí\nštud\nštudák\nštudentami\nštudent\nštudentka\nŠtudentove\nštudentovej\nštudentovu\nštudentský\nštudentstvo\nštúdia\nštudijne\nštúdijne\nštudijno\nŠtúdijno\nštudijný\nštúdijný\nštúdio\nštúdiový\nštudiózus\nštúdium\nštudovania\nštudovanie\nštudovaním\nštudovaniu\nštudovaný\nštudovať\nštudovňa\nštudovní\nštudujúci\nšťuchancov\nštuchanec\nštuchať\nštuchnutie\nštuchnúť\nšťukanie\nšťukať\nštukatér\nštukatérsky\nštukatérstvach\nštukatérstvam\nštukatérstvo\nštukatúr\nštukatúrach\nštukatúram\nštukatúra\nštuka\nšťuka\nšťuk\nšťukla\nšťukli\nšťuklo\nšťukne\nšťuknem\nšťukneme\nšťukneš\nšťuknete\nšťukni\nšťuknime\nšťuknite\nšťuknú\nšťuknúc\nšťuknúť\nšťuknutie\nšťuknutím\nšťukol\nštukolustro\nšťukot\nšťukotmi\nšťukovité\nštukový\nštuľa\nŠtulca\nštulec\nštulpňa\nštulpní\nštumpa\nŠtumpa\nštupeľ\nštupeľ\nštupľa\nštupľami\nštuple\nštupli\nštuplík\nšťúplo\nštupľoch\nštupľom\nšťúplosť\nštupľov\nštupľovi\nštupľu\nšťúplučko\nšťúplučký\nšťúplunko\nšťúplunký\nšťúpluško\nštúplušký\nšťúplušký\nšťúply\nštúra\nŠtúra\nštúraj\nštúrajme\nštúrajte\nštúrajú\nštúrajúc\nštúral\nštúrala\nštúrali\nštúralo\nštúram\nštúrame\nštúraš\nštúrať\nštúrate\nšťúrať\nštúravý\nšťúr\nŠturca\nŠturci\nŠturcom\nŠturec\nšťúrik\nštúriť\nŠturma\nšturm\nšturmovanie\nšturmovaním\nšturmovaniu\nšturmovať\nšturmovčina\nŠtúrov\nŠtúrova\nštúrovčín\nštúrovčinách\nštúrovčinám\nštúrovčinami\nštúrovčina\nŠtúrove\nštúrovec\nŠtúrovi\nŠtúrovo\nŠtúrovom\nštúrovsky\nštúrovský\nŠtúrovu\nšťúry\nštv\nštváč\nštváčsky\nštvanec\nštvania\nštvanica\nštvanie\nštvaním\nštvaný\nštvať\nštvavo\nštvavý\nštverať\nštverigať\nštvi\nštvime\nštvite\nštvorako\nštvoráky\nštvoraký\nštvoratómový\nštvorbodový\nštvorboký\nštvorcestný\nštvorciferný\nštvorcipá\nštvorcový\nštvorča\nštvorček\nštvorčekovane\nštvorčekovaný\nštvorčekový\nštvorčiat\nštvorčíslie\nštvorčlenný\nštvordenný\nštvordetná\nštvordielny\nštvordňový\nštvordobý\nštvordverový\nštvorec\nštvorfarebne\nštvorfarebný\nštvorhlasne\nštvorhlasný\nštvorhlasová\nštvorhlavňový\nštvorhodinový\nštvorhran\nštvorhranný\nštvorhra\nštvorhviezdičkový\nštvorica\nštvoritý\nštvorizbový\nštvorkár\nštvorkárka\nštvorka\nštvorkilometrový\nštvorkilový\nštvorkolesový\nštvorkorunové\nštvorkorunového\nštvorkorunovom\nštvorkorunovou\nštvorkorunovú\nštvorkorunových\nštvorkorunovými\nŠtvorkové\nŠtvorkruh\nštvorlístkový\nštvorlístok\nštvorlitrový\nštvormesačný\nštvormetrový\nštvormiestny\nštvormiliónový\nštvorminútového\nštvorminútovej\nštvorminútovou\nštvorminútových\nštvorminútovým\nštvormo\nštvormocný\nštvormotorový\nštvornásobne\nštvornásobný\nštvornásobok\nštvornohý\nštvornožky\nštvoro\nštvorpercentný\nštvorplatňový\nštvorpodlažný\nštvorpólový\nštvorposchodový\nštvorposteľový\nštvorprúdový\nštvorradý\nštvorramenný\nštvorriadkový\nštvorročný\nštvorrozmernosť\nštvorrozmerný\nštvorručne\nštvorručný\nštvorrýchlostný\nštvorsedadlový\nštvorslabičný\nštvorsmerný\nštvorsten\nštvorstenný\nštvorstovkár\nštvorstovkárka\nštvorstovka\nštvorstrana\nštvorstránkový\nštvorstranný\nštvorstranový\nštvorstretnutia\nštvorstretnutie\nštvorstrunový\nštvorstup\nštvorstupňový\nštvorstý\nštvorsýtny\nštvorštvrťový\nštvortakt\nštvortaktmi\nštvortaktný\nštvortaktový\nštvortisícový\nštvortonová\nštvortonové\nštvortonovej\nštvortonovú\nŠtvortonový\nštvortýždenný\nštvortýždňový\nštvoruhlastý\nštvoruholník\nštvoruholníkový\nštvorvalcový\nštvorvalec\nštvorveršie\nštvorveršový\nštvorveslica\nštvorvláknový\nštvorvrstvová\nštvorvrstvové\nštvorylka\nštvorzáprahu\nštvorzložková\nštvorzväzkový\nštvr\nštvrt\nštvrtácky\nštvrtáčik\nštvrtáčka\nštvrták\nštvrť\nštvrtením\nštvrťfinále\nštvrťfinalista\nštvrťfinalistka\nštvrťfinálový\nštvrťhodina\nštvrťhodinka\nštvrťhodinový\nštvrtiek\nštvrtín\nštvrtina\nštvrtinka\nštvrtinovo\nštvrtinový\nštvrtiť\nštvrtka\nštvrťkilový\nštvrťkmeň\nštvrtkový\nštvrťkruhu\nštvrťlitrový\nštvrtohôr\nštvrtohorách\nštvrtohorám\nštvrtohorami\nštvrtohorný\nštvrtohory\nštvrtok\nštvrtoročiacky\nštvrtoročiačka\nštvrtoročiak\nštvrťový\nštvrťročí\nštvrťročia\nštvrťročiach\nštvrťročie\nštvrťročne\nštvrťročník\nštvrťročníka\nštvrťročníkov\nštvrťročníku\nštvrťročný\nštvrťrok\nštvrťstoročie\nštvrťstoročný\nštvrtýkrát\nštvrtý\nštyl\nštýl\nštylista\nštylisticky\nštylistický\nštylistička\nštylistika\nštylistik\nštylistka\nštylizácia\nštylizačne\nštylizačný\nštylizátor\nštylizátorka\nštylizátormi\nštylizovane\nštylizovanie\nštylizovaním\nštylizovanosť\nštylizovaný\nštylizovať\nštylizujúcejší\nštylizujúci\nštýlmi\nštýlotvorne\nštýlotvornosť\nštýlotvorný\nštýlove\nštýlovo\nštýlovosť\nštýlový\nštyri\nštyriadvadsať\nštyria\nštyridsať\nštyridsaťdenná\nštyridsaťdeväť\nštyridsaťdeväťtisíc\nštyridsaťdva\nštyridsaťdvatisíc\nštyridsaťdvatisíctristošesťdesiat\nštyridsatina\nštyridsaťjeden\nštyridsaťjedentisíc\nštyridsaťjedentisícpäťsto\nštyridsaťkorunový\nštyridsaťkrát\nštyridsaťnásobok\nštyridsaťosem\nštyridsaťosemtisíc\nštyridsaťpäť\nštyridsaťpäťke\nštyridsaťpäťky\nštyridsaťpäťročnej\nŠtyridsaťpäťročný\nštyridsaťpäťtisíc\nštyridsaťpäťtisícšesťsto\nštyridsaťpäťtisícšesťstopäťdesiat\nštyridsaťpäťtisícštyristo\nštyridsaťročný\nštyridsaťsedem\nštyridsaťsedemtisíc\nštyridsaťstupňový\nštyridsaťšesť\nštyridsaťšesťtisíc\nštyridsaťšesťtisícpäťsto\nštyridsaťštyri\nštyridsaťštyritisíc\nštyridsaťštyritisícsedemstošesťdesiat\nštyridsaťtisíc\nštyridsaťtisícový\nštyridsaťtisícpäťsto\nštyridsaťtri\nštyridsaťtritisíc\nštyridsaťtritisícsedemstotridsať\nštyridsiatín\nštyridsiatina\nštyridsiati\nštyridsiatka\nštyridsiatnička\nštyridsiatnik\nštyridsiaty\nštyrikrát\nštyristo\nštyristodesať\nštyristodesaťtisíc\nštyristodeväť\nštyristodeväťdesiat\nštyristodeväťdesiatdeväť\nštyristodeväťdesiatdeväťtisíc\nštyristodeväťdesiatdva\nštyristodeväťdesiatdvatisíc\nštyristodeväťdesiatjeden\nštyristodeväťdesiatjedentisíc\nštyristodeväťdesiatosem\nštyristodeväťdesiatosemtisíc\nštyristodeväťdesiatpäť\nštyristodeväťdesiatpäťtisíc\nštyristodeväťdesiatsedem\nštyristodeväťdesiatsedemtisíc\nštyristodeväťdesiatšesť\nštyristodeväťdesiatšesťtisíc\nštyristodeväťdesiatštyri\nštyristodeväťdesiatštyritisíc\nštyristodeväťdesiattisíc\nštyristodeväťdesiattri\nštyristodeväťdesiattritisíc\nštyristodevätnásť\nštyristodevätnásťtisíc\nštyristodeväťtisíc\nštyristodva\nštyristodvadsať\nštyristodvadsaťdeväť\nštyristodvadsaťdeväťtisíc\nštyristodvadsaťdva\nštyristodvadsaťdvatisíc\nštyristodvadsaťjeden\nštyristodvadsaťjedentisíc\nštyristodvadsaťosem\nštyristodvadsaťosemtisíc\nštyristodvadsaťpäť\nštyristodvadsaťpäťtisíc\nštyristodvadsaťsedem\nštyristodvadsaťsedemtisíc\nštyristodvadsaťšesť\nštyristodvadsaťšesťtisíc\nštyristodvadsaťštyri\nštyristodvadsaťštyritisíc\nštyristodvadsaťtisíc\nštyristodvadsaťtri\nštyristodvadsaťtritisíc\nštyristodvanásť\nštyristodvanásťtisíc\nštyristodvatisíc\nštyristojedenásť\nštyristojedenásťtisíc\nštyristojeden\nštyristojedentisíc\nštyristokorunové\nštyristoosem\nštyristoosemdesiat\nštyristoosemdesiatdeväť\nštyristoosemdesiatdeväťtisíc\nštyristoosemdesiatdva\nštyristoosemdesiatdvatisíc\nštyristoosemdesiatjeden\nštyristoosemdesiatjedentisíc\nštyristoosemdesiatom\nštyristoosemdesiatosem\nštyristoosemdesiatosemtisíc\nštyristoosemdesiatpäť\nštyristoosemdesiatpäťtisíc\nštyristoosemdesiatsedem\nštyristoosemdesiatsedemtisíc\nštyristoosemdesiatšesť\nštyristoosemdesiatšesťtisíc\nštyristoosemdesiatštyri\nštyristoosemdesiatštyritisíc\nštyristoosemdesiattisíc\nštyristoosemdesiattri\nštyristoosemdesiattritisíc\nštyristoosemnásť\nštyristoosemnásťtisíc\nštyristoosemtisíc\nštyristopäť\nštyristopäťdesiat\nštyristopäťdesiatdeväť\nštyristopäťdesiatdeväťtisíc\nštyristopäťdesiatdva\nštyristopäťdesiatdvatisíc\nštyristopäťdesiatjeden\nštyristopäťdesiatjedentisíc\nštyristopäťdesiatosem\nštyristopäťdesiatosemtisíc\nštyristopäťdesiatpäť\nštyristopäťdesiatpäťtisíc\nštyristopäťdesiatsedem\nštyristopäťdesiatsedemtisíc\nštyristopäťdesiatšesť\nštyristopäťdesiatšesťtisíc\nštyristopäťdesiatštyri\nštyristopäťdesiatštyritisíc\nštyristopäťdesiattisíc\nštyristopäťdesiattri\nštyristopäťdesiattritisíc\nštyristopätnásť\nštyristopätnásťtisíc\nštyristopäťtisíc\nštyristosedem\nštyristosedemdesiat\nštyristosedemdesiatdeväť\nštyristosedemdesiatdeväťtisíc\nštyristosedemdesiatdva\nštyristosedemdesiatdvatisíc\nštyristosedemdesiatjeden\nštyristosedemdesiatjedentisíc\nštyristosedemdesiatosem\nštyristosedemdesiatosemtisíc\nštyristosedemdesiatpäť\nštyristosedemdesiatpäťtisíc\nštyristosedemdesiatsedem\nštyristosedemdesiatsedemtisíc\nštyristosedemdesiatšesť\nštyristosedemdesiatšesťtisíc\nštyristosedemdesiatštyri\nštyristosedemdesiatštyritisíc\nštyristosedemdesiattisíc\nštyristosedemdesiattri\nštyristosedemdesiattritisíc\nštyristosedemnásť\nštyristosedemnásťtisíc\nštyristosedemtisíc\nštyristošesť\nštyristošesťdesiat\nštyristošesťdesiatdeväť\nštyristošesťdesiatdeväťtisíc\nštyristošesťdesiatdva\nštyristošesťdesiatdvatisíc\nštyristošesťdesiatjeden\nštyristošesťdesiatjedentisíc\nštyristošesťdesiatosem\nštyristošesťdesiatosemtisíc\nštyristošesťdesiatpäť\nštyristošesťdesiatpäťtisíc\nštyristošesťdesiatsedem\nštyristošesťdesiatsedemtisíc\nštyristošesťdesiatšesť\nštyristošesťdesiatšesťtisíc\nštyristošesťdesiatštyri\nštyristošesťdesiatštyritisíc\nštyristošesťdesiattisíc\nštyristošesťdesiattri\nštyristošesťdesiattritisíc\nštyristošestnásť\nštyristošestnásťtisíc\nštyristošesťtisíc\nštyristoštrnásť\nštyristoštrnásťtisíc\nštyristoštyri\nštyristoštyridsať\nštyristoštyridsaťdeväť\nštyristoštyridsaťdeväťtisíc\nštyristoštyridsaťdva\nštyristoštyridsaťdvatisíc\nštyristoštyridsaťjeden\nštyristoštyridsaťjedentisíc\nštyristoštyridsaťosem\nštyristoštyridsaťosemtisíc\nštyristoštyridsaťpäť\nštyristoštyridsaťpäťtisíc\nštyristoštyridsaťsedem\nštyristoštyridsaťsedemtisíc\nštyristoštyridsaťšesť\nštyristoštyridsaťšesťtisíc\nštyristoštyridsaťštyri\nštyristoštyridsaťštyritisíc\nštyristoštyridsaťtisíc\nštyristoštyridsaťtri\nštyristoštyridsaťtritisíc\nštyristoštyridsiatich\nštyristoštyritisíc\nštyristotisíc\nštyristotisícový\nštyristotisícu\nštyristotri\nštyristotridsať\nštyristotridsaťdeväť\nštyristotridsaťdeväťtisíc\nštyristotridsaťdva\nštyristotridsaťdvatisíc\nštyristotridsaťjeden\nštyristotridsaťjedentisíc\nštyristotridsaťosem\nštyristotridsaťosemtisíc\nštyristotridsaťpäť\nštyristotridsaťpäťtisíc\nštyristotridsaťsedem\nštyristotridsaťsedemtisíc\nštyristotridsaťšesť\nštyristotridsaťšesťtisíc\nštyristotridsaťštyri\nštyristotridsaťštyritisíc\nštyristotridsaťtisíc\nštyristotridsaťtri\nštyristotridsaťtritisíc\nštyristotridsiatich\nštyristotrinásť\nštyristotrinásťtisíc\nštyristotritisíc\nštyritisíc\nštyritisíceho\nštyritisíci\nštyritisícovými\nštyritisícpäťsto\nštyritisícšesťsto\nštyrmi\nštyroch\nštyrom\nŠÚ\nšúb\nšuba\nšubica\nšubka\nšúdar\nšudiar\nšudiariť\nšudiarka\nšudiarsky\nšudiarstvach\nšudiarstvam\nšudiarstvo\nšudiera\nšudier\nšudierka\nšudiersky\nšudierstvach\nšudierstvam\nšudierstvo\nšudiť\nšuflikár\nšuhaj\nšuhajček\nšuhajec\nšuhajíček\nšuhajíčko\nšuhajík\nšuhajko\nšuhajov\nšuhajsky\nšuhajský\nšuch\nŠucha\nšúchajúci\nšúchanie\nšúchaním\nšuchať\nšúchať\nšúchavať\nšúchavo\nšúchavý\nšuch\nšuchci\nšuchcime\nšuchcite\nšuchnutie\nšuchnutím\nšuchnúť\nšuchor\nšuchorením\nšuchoriť\nšuchorte\nšuchotajúci\nšuchotanie\nšuchotať\nšuchotavo\nšuchotavý\nšuchot\nšuchotmi\nšuchta\nšuchtajúci\nšuchtať\nšuchtavý\nŠuchtu\nšúchy\nŠuja\nŠujanský\nŠuji\nšujtáš\nšujtáše\nšujtášu\nŠuju\nšuká\nšukaj\nšukajme\nšukajte\nšukajú\nšukajúc\nšukal\nšukala\nšukali\nšukalo\nšukám\nšukáme\nšukáš\nšukať\nšukáte\nŠuľa\nšúľance\nšúľancový\nšúľancu\nšúľanec\nšúľanie\nšúľaný\nšúľať\nŠulekova\nŠuleková\nŠulekove\nŠulekovo\nšúľkový\nšúľoček\nšúľočka\nšúľočkami\nšúľočkoch\nšúľočkom\nšúľočkov\nšúľočku\nšúľočky\nšúľok\nšumami\nŠumáv\nŠumava\nŠumave\nšumavského\nšumavskom\nŠumavský\nŠumavu\nŠumavy\nšume\nšumenia\nšumenie\nšumením\nšumeniu\nŠumiaca\nšumiace\nšumiaci\nšumiacich\nšumiacim\nšumiacimi\nšumiacom\nšumienka\nšumienkový\nšumieť\nšumivo\nšumivý\nšum\nšumne\nšumno\nšumný\nšumoch\nšumom\nšumot\nšumotať\nšumotom\nšumov\nšumovanie\nšumovať\nšumovina\nšumový\nŠumperk\nŠumperkom\nŠumperku\nšumperský\nšumu\nšumy\nšunčička\nšunka\nšunkový\nšunôčka\nšunt\nšuntu\nšupácky\nšupák\nšúpanie\nšúpaný\nšupáreň\nšupasom\nšúpatiek\nšupátka\nšupátko\nšupátkových\nšupátok\nšúpať\nšupa\nšup\nšúp\nšupieť\nšupinatý\nšupina\nšupinka\nšupinkový\nšupinovito\nšupinovitý\nšupinový\nšupka\nŠupková\nŠupkovej\nšúplat\nšúplata\nšúplatka\nšuplera\nšuplík\nšuplíkový\nšupnúť\nšúpolie\nšúpoľový\nšupovanie\nšupovať\nšups\nŠúr\nŠúra\nŠuranoch\nŠuranom\nŠurany\nŠurian\nŠurianky\nŠurianska\nŠurianskeho\nšurianskej\nšurianskemu\nšurianski\nŠurianskom\nŠuriansky\nŠurianskych\nŠurianskym\nšúrom\nšúrovať\nŠúrskeho\nŠúrskom\nšús\nšust\nŠusta\nšústať\nšuster\nšusterský\nšustnúť\nšustot\nšustroval\nŠustrovanie\nŠustrovej\nšustrovský\nŠustu\nšušeň\nšúšie\nšuškačka\nšuškaná\nšuškanda\nšuškané\nšuškanie\nšuškaniu\nšuškaných\nšuškať\nšuškavo\nšuškavý\nšuška\nšuškom\nšuškový\nšušlaní\nšušlanie\nšušlať\nšušlavo\nšušlavosť\nšušlavý\nšušňa\nšušňami\nšušne\nšušni\nšušňoch\nšušňom\nšušňov\nšušňu\nšušoriť\nšušotanie\nšušotať\nšušot\nšušotmi\nšušť\nšušťanie\nšušťať\nšušťavo\nšušťavý\nšuštiaci\nšuštiaky\nšuštička\nšúštie\nšuštivo\nšuštivý\nšušťme\nšušťte\nšušušu\nšút\nšutavý\nšuta\nšuter\nšuto\nŠútovo\nŠutovský\nŠútovský\nšutrovať\nšutrovisko\nŠúty\nšutý\nšúver\nšúverenie\nšúveriť\nšúverte\nšva\nšvabach\nšvabachový\nšvábka\nšváb\nšvábovskej\nŠvábovský\nšvábskej\nšvábski\nšvábskom\nšvábsku\nšvác\nšvácať\nšvacnúť\nšvacnutý\nšvadrona\nšvagor\nšvagorko\nšvagrík\nšvagriná\nšvagrinka\nšvagrova\nšvagrovať\nšvagrovci\nšvagrove\nšvagrovo\nšvagrovou\nšvagrovský\nšvagrovstvo\nšvagrovu\nšvajč\nŠvajčiar\nŠvajčiarka\nŠvajčiarsko\nšvajčiarsky\nšvami\nšvánd\nšvanda\nšvandovne\nšvandovný\nšvandra\nšvandra\nšvárny\nšve\nšvec\nšvéd\nŠvéd\nšvédčin\nšvédčinách\nšvédčinám\nšvédčinami\nšvédčina\nŠvédka\nŠvedlár\nŠvedlára\nŠvédsko\nšvédsky\nšvédsky\nšvehiel\nšvehla\nšvehol\nšveholiť\nšvenk\nšvenkovať\nŠvermova\nŠvermove\nšvíček\nšvíčka\nšvíčkami\nšvíčkoch\nšvíčkom\nšvíčkov\nšvíčku\nšvíčky\nšviháckosť\nšvihácky\nšviháctvach\nšviháctvam\nšviháctvo\nšvihadielko\nšvihadielok\nšvihadlo\nšvihadlový\nšvihajúci\nšvihák\nšvihaní\nšvihár\nšvihať\nšvih\nšvihnutia\nšvihnutie\nšvihnutím\nšvihnúť\nšvihnutý\nšvihot\nšvihotať\nŠvihove\nšvihový\nšvík\nšvíkový\nšvindeľ\nšvindľa\nšvindľami\nšvindle\nšvindlera\nšvindler\nšvindleri\nšvindlerka\nšvindlermi\nšvindleroch\nšvindlerom\nšvindlerov\nšvindlerovi\nšvindlersky\nšvindlerský\nšvindli\nšvindliar\nšvindliarka\nšvindliarsky\nšvindľoch\nšvindľom\nšvindľov\nŠvindľovanie\nšvindlovať\nšvindľovať\nšvindľu\nšvirgať\nšvišťať\nšvitor\nšvitorenie\nšvitoriacimi\nšvitoriť\nšvitorivo\nšvitorivý\nšvitorte\nšvoch\nšvol\nšvola\nšvom\nŠvošov\nšvov\nšvový\nšvu\nšvung\nšvungmi\nšvungoch\nšvungom\nšvungov\nšvungu\nšvungy\nšvy\nŠZÚ\nt\nT\nť\nŤ\nta\nTA\ntá\nťa\ntab\ntabačiar\nTabačiareň\ntabačiarka\ntabačiarňach\ntabačiarní\ntabačiarsky\ntabačiarsky\ntabačiarstvach\ntabačiarstvam\ntabačiarstvo\ntabačik\ntabačka\ntabačkami\ntabačkoch\ntabačkom\nTabačkom\ntabačkov\ntabačku\ntabačky\ntabačnica\ntabak\ntabakizmus\ntabakovohnedý\ntabakový\ntabákový\ntabakóz\ntabakózach\ntabakózam\ntabakóza\ntabard\ntabarin\ntabart\ntabasco\ntabasko\ntabatierka\ntabelačný\ntabelárny\ntabelátor\ntabelátori\ntabelátorovi\ntabela\ntabelista\ntabelistka\ntabelový\ntabernákulum\ntabes\ntabla\ntableau\ntablet\ntableta\ntabletka\ntabletovací\ntabletovanie\ntabletovaný\ntabletovať\ntablica\ntablička\ntabličkovaný\ntabló\ntabloid\ntablo\ntabon\ntáborák\ntáborákový\ntábor\ntáborení\ntáborenia\ntáborenie\ntáborením\ntáborísk\ntáborisko\ntáborita\ntáboriť\ntáboriti\ntáboritmi\ntáboritoch\ntáboritom\ntáboritov\ntáboritovi\ntáboritský\ntábornícky\ntáborníctvach\ntáborníctvam\ntáborníctvo\ntáborníčka\ntáborník\ntáborový\ntáborského\ntáborskej\ntáborskom\ntáborskou\ntáborskú\ntáborských\nTáborský\ntáborte\ntabríz\ntabu\ntabuizácia\ntabuizoval\ntabuizovala\ntabuizovali\ntabuizovalo\ntabuizovanú\ntabuizovať\ntabuizuj\ntabuizuje\ntabuizujem\ntabuizujeme\ntabuizuješ\ntabuizujete\ntabuizujme\ntabuizujte\ntabuizujú\ntabuizujúc\ntabulácia\ntabulačný\ntabulách\ntabulárny\ntabulátor\ntabulatúra\ntabula\ntabuľa\ntabuľka\ntabuľkovo\ntabuľkový\ntabuľovo\ntabuľový\ntabun\ntabuový\ntaburet\ntaburetka\ntacet\ntackanie\ntackať\ntackavo\ntackavý\ntácka\ntácňach\ntácňam\ntácňa\ntácní\ntácnička\ntáčkach\ntáčkam\ntáčky\ntade\nTadeáš\ntadeto\ntadiaľ\ntadiaľto\ntadolu\ntadťický\ntadžický\ntadžický\nTadžička\nTadžik\nTadžikistan\ntaek\ntael\ntaenia\ntafefóbia\ntafetu\ntafety\ntaffia\ntaflovanie\ntafonómia\ntafrinóza\ntafrogenéza\ntaft\ntaftmi\ntaftový\ntág\ntágach\ntagal\ntágam\ntagilit\ntágo\nťahací\nťahač\nťahačka\nťahačový\nťahadlo\nťahadlový\nťahajúce\nťahajúci\nťahajúco\nťahák\nťaháku\nťaháky\nťahane\nťahania\nťahanica\nťahanie\nťahaním\nťahaniu\nťahanovský\nťahaný\ntahara\ntaháreň\nťaháreň\nťahárňach\nťahárňam\nťahať\nťahávať\nťahavo\nťahavosť\nťahavý\nťah\ntahit\nTahiti\nTahitské\nTahitsky\nťahomer\nťahový\nťahúň\nťahúne\nťahúni\ntachistoskop\ntachograf\ntachografom\ntachografov\ntachografu\ntachometer\nTachov\nTachova\nTachove\ntachovský\nTachty\ntachyfágia\ntachyfémia\ntachygrafia\ntachykardia\ntachylália\ntachymeter\ntachyón\ntachypnoe\ntaille\ntailleur\ntailor\nťaj\nťáj\nťajaj\ntajbrejk\ntajenie\ntajený\ntajfún\ntajfúnový\ntájg\ntajga\ntajgový\ntajiť\ntaj\ntajne\ntajnička\ntajnosť\ntajnostkár\ntajnostkárením\ntajnostkáriť\ntajnostkárka\ntajnostkársky\ntajnostkársky\ntajnostkárstvach\ntajnostkárstvam\ntajnostkárstvo\ntajnostný\ntajný\nTajo\ntajomne\ntajomnícky\ntajomníctvach\ntajomníctvam\ntajomníctvo\ntajomníč\ntajomníči\ntajomníčia\ntajomníčiac\ntajomníčil\ntajomníčila\ntajomníčili\ntajomníčilo\ntajomníčim\ntajomníčime\ntajomníčiš\ntajomníčiť\ntajomníčite\ntajomníčka\ntajomníčme\ntajomníčte\ntajomník\nTajomníkove\ntajomníkovo\ntajomno\ntajomnosť\ntajomný\ntajomstvaplný\ntajomstvo\nTajova\nTajove\nTajovom\nTajovský\ntajuplne\ntajuplnosť\ntajuplný\ntak\nták\ntaka\ntákať\ntakáto\ntákať\ntakéhoto\ntakejto\ntakeláž\ntakémuto\ntakeover\ntakéto\ntakhľa\ntakisto\ntakíto\ntaklid\ntakmer\ntakomto\ntakouto\ntakpovediac\ntakrečeno\ntakt\ntaktickosť\ntakticky\ntaktický\ntaktický\ntaktička\ntaktiež\ntaktika\ntaktik\ntaktilný\ntaktizovaní\ntaktizovania\ntaktizovanie\ntaktizovaním\ntaktizovaniu\ntaktizovať\ntaktmi\ntaktne\ntaktnosť\ntaktný\ntakto\ntaktohľa\ntaktomer\ntaktovania\ntaktovanie\ntaktovaný\ntaktovať\ntaktovka\ntaktový\ntakúto\ntaky\ntakýchto\ntakýmito\ntakýmto\ntakyr\ntakýto\ntaký\ntakzvane\ntakzvaný\ntakže\ntal\ntáľ\ntala\ntaľafatka\ntaľafatkovať\ntalamus\ntalár\ntalármi\ntalasofóbia\ntalasogenéza\ntalasogénny\ntalasografia\ntalasokracia\ntalasoterapia\ntalavoty\nTále\ntalent\ntalentmi\ntalentovane\ntalentovanosť\ntalentovaný\ntalentový\ntalian\ntaliančin\ntaliančinách\ntaliančinám\ntaliančinami\ntaliančinár\ntaliančinárka\ntaliančina\nTalianka\nTaliansko\ntaliansky\ntaliansky\nTália\ntalíg\ntaliga\ntalion\ntálium\ntalizman\ntalk\nTalke\ntalkóza\nTallin\nTallinčan\nTalline\nTallinn\nTallinom\ntallinský\nTallinu\ntallowwood\ntalmi\ntalmud\ntalmudista\ntalmudisticky\ntalmudistický\nTáloch\nTáľoch\ntalón\ntalónový\ntálov\nTáľov\ntáľovať\ntam\ntamandua\nTamár\ntamarak\nTamara\nTamarin\nTamarina\nTamarine\nTamarini\nTamarino\nTamarinu\ntamariška\ntamariškový\ntamariškus\ntambor\ntambour\ntambúr\ntamburáš\ntamburášsky\ntamburášsky\ntambura\ntambur\ntamburica\ntamburín\ntamburínach\ntamburínam\ntamburína\ntamburmi\ntamburoch\ntamburom\ntamburov\ntamdnu\ntamdolu\ntamhľa\ntamhor\ntamhore\ntamil\nTamilsky\ntamilský\ntamodtade\ntamodtiaľ\ntamojší\ntampiko\ntamponáda\ntampón\ntampónovanie\ntampónovať\ntampónový\ntamtá\ntamtam\ntamtan\ntamtej\ntamten\ntamtí\ntamtie\ntamtiež\ntamto\ntamtohľa\ntamtoho\ntamtom\ntamtomu\ntamtou\ntamtú\ntamtých\ntamtým\ntamtými\ntamže\ntan\ntaň\ntana\nTANAP\ntanatofóbia\ntanatológia\ntanatománia\ntanatóza\nTáňa\ntancachtivý\ntancovačka\ntancovanie\nTancovaniu\ntancovať\ntancujúci\ntancujúcich\ntanček\ntančekov\ntančeky\nTančiarne\nTančík\ntančiť\nTandel\ntandem\ntandemista\ntandemistka\ntandemový\ntanec\ntanečne\ntanečnica\ntanečníčka\ntanečník\ntanečný\ntanezrouft\nTang\ntáng\ntangáče\ntangara\ntangel\ntangenciál\ntangenciálny\ntangens\ntangent\ntangenta\ntangentoida\ntangentový\ntangerínka\ntango\ntangovať\ntangový\ntangram\nTaní\ntanie\ntaniem\ntanieme\ntanierik\ntanier\ntaniermi\ntanierovitý\ntanierovo\ntanierový\ntanieš\ntaniete\ntanín\ntanínový\ntanistier\ntanistra\ntank\ntankera\ntanker\ntankeri\ntankista\ntankovacej\ntankovacia\ntankovacie\ntankovacích\ntankovacím\ntankovaciu\ntankovaného\ntankovanej\ntankovaní\ntankovania\ntankovanie\ntankovaním\ntankovaniu\ntankovať\ntankový\ntaňme\nťanšanský\ntantacizmus\ntantal\ntantalit\ntantalite\ntantalitu\ntantalmi\nTantalmi\nTantalos\ntantalový\nTantalus\ntaňte\ntantiém\ntantiémach\ntantiémam\ntantiéma\ntantra\ntantrizmus\ntantušiť\ntanúci\ntanúť\ntanutý\nTanzánčan\nTanzánčanka\nTanzánia\nTanzánijčan\nTanzánijčanka\nTanzánijec\nTanzánijka\ntanzánijský\ntanzanit\ntanzánsky\ntanzánsky\ntao\ntaoizmus\nťap\ntapa\nTapa\ntápa\nťapajmi\ntápajú\ntápajúc\ntápajúce\ntápajúceho\nŤapák\nŤapáka\nŤapákom\nŤapákove\nŤapákovej\nŤapákovho\nŤapákovi\nŤapákovo\nŤapákovu\nŤapákovým\nťapali\ntápame\ntapanhuna\ntápanie\nťapať\ntápať\nťapatý\ntápavo\ntápavý\nťapa\nTape\ntapetár\ntapeta\ntapetovač\ntapetovanie\ntapetovaný\ntapetovať\ntapetový\ntapetový\ntapetum\ntaping\ntapioka\ntapíra\ntapír\ntapírovi\ntapiséria\ntapisériový\nťapkanica\nťapkať\nťapkavý\nťapka\nťapnutie\nťapnúť\nťapôčka\nťapotanie\nťapotať\nťapot\nťapotmi\nTapou\nťapša\nťapší\nTAPU\nťapulienky\nŤapuš\nťapušiť\nťapuškať\nťapušky\nTapy\nTar\nTara\nTarač\ntárač\ntáračka\ntáračsky\ntáračský\ntáračstvo\ntáradielko\ntáradielok\ntáradlo\nTarách\nTaraj\nTaraja\ntáraj\ntárajka\ntárajsky\ntárajský\ntárajstvo\ntaran\nTaran\ntáraní\ntárania\ntáranie\ntáraním\ntáranina\ntáraniu\nTaranov\ntarantel\ntarantela\ntarantiel\ntarantula\ntarasiť\ntarasnica\nTarasov\ntárať\ntárava\ntáravaj\ntáravajme\ntáravajte\ntáravajú\ntáravajúc\ntáraval\ntáravala\ntáravali\ntáravalo\ntáravam\ntáravame\ntáravaš\ntáravať\ntáravate\ntáravo\ntáravosť\ntáravý\nťarbácky\ntarbagan\nťarbák\nťarbať\nťarbavec\nťarbavo\nťarbavosť\nťarbavý\nťarbi\nťarbime\nťarbite\nťarbú\nťarbúc\ntardamente\ntardando\ntardo\ntare\nTarg\nTarga\nTargu\ntargúm\ntarhoňa\ntarhoní\nťárch\nťarchavosť\nťarchavý\nťarcha\nťarchopis\ntaríf\ntarifa\ntarifne\ntarifno\ntarifný\ntarifovania\ntarifovanie\ntarifovaním\ntarifovaný\ntarifovať\ntarifovo\ntarifový\nTarina\ntarkavo\ntarkavý\nTarnov\nTarnova\nTarnove\ntarnovský\ntárogató\ntarok\ntarokový\ntaroky\nTarom\nTarpan\nTarpanom\ntartan\ntartanový\ntartar\nTartaros\ntartas\ntartrát\nTary\ntarzalgia\ntarzus\ntasanie\ntasať\ntaseným\ntasiť\nTASR\nTASS\ntastatúra\ntašizmus\ntaška\nTaškenťan\nTaškent\ntaškentský\ntaštička\nTašuľa\ntat\ntata\nTatár\ntatárčina\nTatarka\nTatárka\nTatárovho\nTatárovo\nTatárovom\nTatárovým\nTatársko\ntatársky\ntatársky\nTatián\nTatianách\nTatianám\nTatiana\ntatíčka\ntatíčkami\ntatíčko\ntatíčkoch\ntatíčkom\ntatíčkov\ntatíčkovi\ntatíčkovia\nťatie\ntatier\ntatík\nťatím\ntatko\nTatkovom\ntatky\ntáto\nťato\ntato\ntátohľa\ntátoš\ntátoše\ntátošík\ntátošíkovi\ntátoš\ntatova\ntatramatka\nTatran\ntatranka\ntatranský\ntatraplán\ntatra\ntatrovácky\ntatrováčka\ntatrovák\ntatrovka\nTatry\nťať\ntatuško\nťatý\ntau\ntauón\ntaurín\ntaurínom\ntaurínu\ntauromachia\nTaurus\nTaury\ntausagyz\ntaušírovanie\ntautogram\ntautológia\ntautologickosť\ntautologicky\ntautologický\ntautomer\ntautoméria\ntautonymum\nťava\ntavba\ntavebnica\ntavenie\ntavenina\ntavený\ntaverna\ntaviaci\ntaviareň\ntaviarňach\ntaviarňam\ntavič\ntavičský\nťaví\ntaviteľnosť\ntaviteľný\ntaviť\ntavív\ntavivo\ntavnosť\ntavný\ntavoľa\ntavolín\ntavoľník\ntáx\ntaxácia\ntaxačný\ntaxameter\ntaxatívne\ntaxatívny\ntaxátor\ntaxa\ntaxflácia\ntaxi\ntaxia\ntaxidermia\ntaxikár\ntaxikárka\ntaxikárovo\ntaxikársky\ntaxikársky\ntaxík\ntaxislužba\ntaxón\ntaxonómia\ntaxonomický\ntaxovať\ntaxový\ntaxujeme\nťažbár\nťažba\nťažbovo\nťažbový\ntáže\nťaženie\nťažeň\nťažený\nťažiace\nťažiaci\nťažiar\nťažiara\nťažiareň\nťažiari\nťažiarmi\nťažiarne\nťažiarni\nŤažiarní\nťažiarňou\nťažiaroch\nťažiarom\nťažiarov\nťažiarovi\nťažiarska\nťažiarske\nťažiarskej\nťažiarskom\nťažiarskou\nťažiarsku\nťažiarsky\nťažiarskych\nťažiarskym\nťažiarskymi\nťažiarstvom\nťažidlo\nťažieť\nťažísk\nťažisko\nťažiskovo\nťažiskový\nťažiť\nťažítko\nťaživo\nťaživosť\nťaživý\nťažkanie\nťažkať\nťažkavieť\nťažko\nťažkoatletický\nťažkomyseľne\nťažkomyseľnosť\nťažkomyseľný\nťažkoodencov\nťažkopádne\nťažkopádnosť\nťažkopádny\nťažkosť\nťažkotonážnici\nťažkotonážnický\nťažkotonážnik\nťažkotonážnikovi\nťažkotonážny\nťažkovodný\nťažký\nťažnica\nťažno\nťažnosť\nťažný\nťažoba\nťažobne\nťažobno\nťažobný\nťažší\nTb\ntbc\nTBC\nTbilisan\nTbilisi\ntbiliský\ntbiliský\nTBps\nTDK\nTe\nté\nTea\nteak\nteakový\nteam\nteamový\nteáter\nteatralita\nteatrálnosť\nteatrálny\nteatrológ\nteatrológia\nteatrologický\nteatrologička\nteba\ntebain\ntebe\ntebou\ntečenia\ntečenie\ntečením\ntéčko\ntečna\ntečovať\ntečúci\nteda\nTeddy\ntedeum\ntedy\nteenagera\nteenager\nteenageri\nteenagermi\nteenageroch\nteenagerom\nteenagerov\nteenagerovi\ntefila\nteflex\nteflon\nteflón\nteflonový\nteflónový\ntefroit\ntégeľ\ntegelén\ntéglik\ntéglikový\ntégľov\ntegment\ntehál\ntehelňa\ntehelný\nTeherán\nTeheránčan\nTeheránčanka\nTeheránec\nTeheránka\nteheránsky\nteheránsky\ntehiel\ntehla\ntehliar\ntehliarka\ntehliarsky\ntehliarsky\ntehliarstvach\ntehliarstvam\ntehliarstvo\ntehlička\ntehlovo\ntehlovočervený\ntehlový\ntého\ntehotenský\ntehotenstvo\ntehotnosť\ntehotný\ntech\ntecha\ntechička\ntechnécium\ntechnicko\ntechnickoadministratívne\ntechnickoadministratívneho\ntechnicko-administratívny\ntechnicko-ekonomický\ntechnickohospodárske\ntechnickohospodárskeho\ntechnickohospodárski\ntechnickohospodársky\ntechnickohospodárskych\ntechnicko-hospodársky\ntechnickoorganizačnej\ntechnickoorganizačným\ntechnicko-organizačný\ntechnickovýrobného\ntechnickovýrobnej\ntechnicko-výrobný\ntechnicky\ntechnický\nTechnics\ntechnička\ntechnika\ntechnik\ntechnizácia\nTechnokov\ntechnokracia\ntechnokracie\ntechnokrat\ntechnokrata\ntechnokrati\ntechnokraticky\ntechnokratický\ntechnokratizmus\ntechnokratmi\ntechnokratom\ntechnokratov\ntechnológ\ntechnológia\ntechnologicky\ntechnologický\ntechnologička\ntechnologizácia\ntechnologizácii\ntechnologizmus\nTechu\nTEI\nteín\nteiňovať\nteínový\nteint\nteizmus\ntej\nTeja\ntejto\ntejže\ntekajúce\ntekaný\ntekať\nTekly\nTekov\nTekova\nTekove\ntekovského\nTekovský\nTekovu\ntekrečeno\ntektit\ntektogenéza\ntektológia\ntektonicky\ntektonický\ntektonik\ntektonika\ntektonity\ntektonizmus\ntektonosféra\ntekutina\ntekutinový\ntekuto\ntekutosť\ntekutý\ntekvica\ntekvicový\ntekvička\ntel\nteľací\nteľacina\nteľacinka\ntelalgia\ntelamon\nteľatá\nteľaťa\nteľatách\nteľatám\nteľatami\nteľati\nteľatník\nteľaťom\nteľaťu\nteľa\nTelavivčan\ntelavivský\nteľce\nteľcoch\nteľcom\nteleangiektázia\ntelef\ntelefax\ntelefaxový\ntelefikácia\ntelefonát\ntelefonátmi\ntelefón\ntelefónia\ntelefonicky\ntelefonický\ntelefónik\ntelefonista\ntelefonistka\ntelefonizácia\nTelefonizovaná\ntelefonizované\ntelefonizovaných\ntelefonizovať\nTelefonizuje\ntelefónny\ntelefonovacie\ntelefonovacieho\ntelefonovanie\ntelefonovať\ntelefónové\ntelefónovom\ntelefonujúci\ntelefot\ntelefoto\nteleg\nTelege\ntelegnózia\ntelegraf\ntelegrafia\ntelegraficky\ntelegrafický\ntelegrafista\ntelegrafistka\ntelegrafne\ntelegrafný\ntelegrafovať\ntelegram\ntelegramový\ntelekinéza\ntelekomunikácia\ntelekomunikačne\ntelekomunikačno\ntelekomunikačný\ntelemark\nTelemark\ntelemarketing\ntelemechanický\ntelemechanika\ntelemeter\ntelemetra\ntelemetre\ntelemetri\ntelemetria\ntelemetrický\ntelemetru\ntelemorfa\ntelemorfia\ntelemosta\ntelemost\ntelencefalon\ntelenieN\ntelenovela\nteleobjektív\nteleobjektíve\nteleológia\nteleonómia\ntelepatia\ntelepaticky\ntelepatický\nteleport\nteleportovať\nteleprint\nteleran\ntelerecording\ntelerekording\ntelerekordingmi\ntelerekordingoch\ntelerekordingom\ntelerekordingov\ntelerekordingový\ntelerekordingu\ntelerekordingy\nteles\nteleservis\nteleshopping\nteleskop\nteleskopický\ntelesne\ntelesnosť\ntelesný\nteleso\ntelesový\ntelestézia\nteletext\nteletextmi\nteletextový\ntelev\ntelevízia\ntelevízny\ntelevízor\ntelexami\ntelex\ntelexový\nteliaci\nteliareň\nteliat\nteliatko\nteliatok\nTelíc\nTelice\nTeliciach\ntelíčko\nteliec\nteliesko\nteliesok\nTelince\nteliť\ntelivo\ntelka\ntelmaplanktón\ntelnato\ntelnatosť\ntelnatý\nteľnosť\nteľný\ntelocvičňa\ntelocvičný\ntelocvikár\ntelocvikárka\ntelocvikársky\ntelocvikársky\ntelocvik\ntelofáza\ntelo\ntelotaxia\nteloveda\ntelovýchov\ntelovýchovách\ntelovýchovám\ntelovýchovami\ntelovýchova\ntelovýchovný\ntelový\ntelquel\ntelúran\ntelúr\ntelurický\ntelurid\ntelúrovodík\ntelúrový\ntelygénia\ntelzon\ntém\ntemä\ntémach\ntémam\ntematickosť\ntematicky\ntematický\ntématický\ntematika\ntématike\ntématikou\ntematológia\ntematológiu\ntéma\ntémbr\ntemenný\ntemeno\ntemer\nTemeš\nTemešvár\nTemešváre\nTemešvári\ntemešvársky\nTemešváru\ntemian\ntemianový\ntemien\ntemienko\ntemienok\nteminály\ntemne\ntemnica\ntemnieť\ntemnistý\ntemnobelasý\ntemnočervený\ntemno\ntemnomodrý\ntemnosť\ntemnosti\ntemnosvit\ntemnota\ntemnovlasý\ntemnozelený\ntemnozraký\ntemný\ntemovať\ntemp\ntempel\ntemperament\ntemperamentmi\ntemperamentne\ntemperamentnosť\ntemperamentný\ntemperatúr\ntemperatúrach\ntemperatúram\ntemperatúra\ntemperatúrny\ntempera\ntemperovacíN\ntemperovania\ntemperovanie\ntemperovaním\ntemperovaný\ntemperovať\ntemperový\ntempier\ntemplár\ntemplári\ntemplárov\nTemplárske\nTemplárskeho\ntemplárskych\ntempo\ntemporale\ntemporálie\ntemporálny\ntemporárny\ntemrava\ntemravieť\ntemravo\ntemravosť\ntemravý\ntemulencia\nTemža\nTemží\ntemžský\nten\nteň\ntén\ntenacita\ntenalgia\ntenardit\ntenaty\ntenčenie\ntenči\ntenčime\nTenčín\ntenčite\ntenčiť\ntendencia\ntendenciózny\ntendenčne\ntendenčnosť\ntendenčný\ntender\ntenderový\ntendinitída\ntendinitis\ntendoplastika\ntendorafia\ntendoval\ntendovanie\ntendovať\ntendrový\ntenduje\ntenebrizmus\ntenektómia\ntenerifa\ntenezmus\ntenge\ntengentový\ntenhľa\nteniáza\ntenie\nteniem\ntenieme\ntenieš\nTenieš\nteniete\ntenióza\ntenis\nteniska\ntenisový\ntenista\ntenistka\ntenit\ntenknúť\ntenko\ntenkonohejšej\ntenkonohejší\ntenkonohejšia\ntenkonohejšie\ntenkonohejšieho\ntenkonohejšiemu\ntenkonohejších\ntenkonohejším\ntenkonohejšími\ntenkonohejšiu\ntenkonohejšom\ntenkonohejšou\ntenkonohý\ntenkostenný\ntenkosť\ntenký\nteňme\ntennó\ntenor\ntenore\ntenorista\ntenormi\ntenorový\ntenoru\ntenory\ntenotómia\ntenší\ntent\ntentam\ntentamen\nteňte\ntento\ntentohľa\ntentokrát\ntentoraz\ntentovať\ntentušiť\ntenúca\ntenúceho\ntenúci\ntenučko\ntenučký\ntenuis\ntenulinko\ntenulinký\ntenunko\ntenunký\ntenuško\ntenušký\ntenuto\ntenúť\ntenzia\ntenzid\ntenzimeter\ntenzimetria\ntenzný\ntenzometer\ntenzor\nTenzor\ntenzorový\ntenže\nteocali\nteocentrizmus\nteodicea\nteodolit\nteodolitmi\nteodolitový\nTeodor\nTeodormi\nTeodoru\nteofágia\nteofánia\nteofóbia\nteofylín\nteogonia\nteokracia\nteokratických\nteol\nteolatria\nteológ\nteológia\nteologicky\nteologický\nteologička\nteologumeon\nteománia\nteomantia\nteomorfný\nteonómny\nteopneustia\nteorém\nteorémach\nteorémam\nteoréma\nteoretickosť\nteoreticky\nteoretický\nteoretička\nteoretik\nteoretizovaní\nteoretizovania\nteoretizovanie\nteoretizovaním\nteoretizovať\nteoretizujúci\nteória\nteozofia\ntepalum\ntepanie\ntepaný\ntepať\ntep\nTepca\ntepelne\ntepelno\ntepelnoizolačný\ntepelný\nteper\nteperiť\nteperte\ntepetový\ntepidárium\ntepiel\ntepien\ntepicha\ntepich\ntepír\ntepláčikmi\ntepláčikoch\ntepláčikom\ntepláčikov\ntepláčiky\nteplákmi\nteplákoch\nteplákom\nteplákov\nteplákový\ntepláky\ntepláreň\nteplárenský\nteplárenstvo\nteplárňach\nteplárňam\nteplársky\nteplárstvach\nteplárstvam\nteplárstvo\nteplastý\nteplejšej\nteplejší\nteplejšia\nteplejšie\nteplejšieho\nteplejšiemu\nteplejších\nteplejším\nteplejšími\nteplejšiu\nteplejšom\nteplejšou\nteplená\nteplené\ntepleného\nteplených\nTeplia\nTeplíc\nTeplica\nTeplicami\nTeplice\nTeplici\nTepliciach\nTepliciam\nteplický\nTepličiek\nTeplička\nTepličke\nTepličku\nTepličky\nteplistý\nteplofikácia\nteplofikácie\nteplofikácii\nteplofikáciu\nteplokrvník\nteplokrvníkovi\nteplokrvnosť\nteplokrvný\nteplo\nteplomera\nteplomer\nteplomerový\nteplomet\nteplomilnosť\nteplomilný\nteplonosný\nteplota\nteplotechniky\nteplotne\nteplotný\nteplovod\nteplovodný\nteplovzdušne\nteplovzdušný\nteplučko\nteplučký\nteplulinko\nteplulinký\nteplunko\nteplunký\nteplušký\nteplý\ntepna\ntepnička\ntepnový\ntepot\ntepotať\ntepovač\ntepovanie\ntepovať\ntepúceho\ntepujúce\ntequila\nterabajt\nterabajtový\nteraco\nterajší\nterajšok\nterako\nterakot\nterakotách\nterakotám\nterakotami\nterakota\nterakotovo\nterakotový\nTerany\nterapeut\nterapeuticky\nterapeutický\nterapeutika\nterapeutikum\nterapia\nteraristika\nterárium\nterás\nterasa\nteraska\nterasoval\nterasovanie\nterasovať\nterasovite\nterasovito\nterasovitý\nterasový\nteratofóbia\nteratogén\nteratogenéza\nteratogónia\nteratológia\nteratóm\nterátum\nteraz\nterazzo\nterazzovej\nterazzových\nterazže\ntér\nterbia\nterbium\nterceron\ntercet\nterceto\ntercián\nterciáne\nterciánka\nterciánsky\nterciány\nterciárny\ntercia\nterciér\nterciérnej\nterciéru\ntercína\nterciový\nterc\ntercovať\nterčet\nterčeto\nterčík\nterč\nterčovec\nterčový\nterebra\ntereka\nteremtetovať\nterenár\nterén\nteréniek\nterénka\nterénny\nterestriálny\nterestricky\nterestrický\nTereza\nTereze\ntereziánske\ntereziánskeho\ntereziánskej\nTereziánsky\nTerézia\nTerezine\nTerezka\nTerezke\nTerezkou\nTerezou\nTerezu\nTerezy\nterfenyl\ntergo\nTerchová\nTerchovej\nterchovská\nterchovské\nTerchovskej\nTerchovú\ntéri\nteriér\nterigať\nterigavo\nterigénny\nteriológia\nteriomorfizmus\nterit\nteritorialita\nteritoriálny\nteritórium\nTerka\nterkelica\nterkelička\nTerkin\nterm\nterma\nTerma\ntermálne\ntermálny\nTerme\ntérmi\ntermicky\ntermický\ntermidor\ntermika\nTermin\nterminácia\nterminál\nterminál\nterminálny\nterminálový\nterminálový\nterminatívny\nterminatívum\nterminátor\ntermín\nTermini\nterminografia\nterminológia\nterminologicky\nterminologický\ntermínoval\ntermínovania\ntermínovanie\ntermínovaním\nterminovaný\ntermínovaný\ntermínovo\ntermínový\ntermínuje\ntermisol\nTermisol\ntermistor\ntermit\ntermit\ntermitofília\ntermitova\ntermitove\ntermitovo\ntermitovu\ntermitovým\ntermitoxénia\ntermobarograf\ntermobatériou\ntermobox\ntermoboxom\ntermočlánok\ntermodifúzia\ntermodynamicky\ntermodynamický\ntermodynamika\ntermoelektrický\ntermoenergetiky\ntermofil\ntermofília\ntermofilný\ntermofóbia\ntermofor\ntermofyt\ntermogenéza\ntermograf\ntermografia\ntermogram\ntermochémia\ntermoizolačný\ntermokauter\ntermokinetika\ntermokolor\ntermolabilita\ntermolýza\ntermom\ntermometer\ntermometra\ntermometri\ntermometria\ntermomorfóza\ntermonastia\ntermonukleárny\ntermopauza\ntermoplast\ntermoplasticita\ntermoplastického\ntermoplastických\ntermoplastmi\ntermoplastový\ntermoreceptor\ntermoregulácia\ntermoregulačný\ntermoregulátor\ntermoregulátormi\ntermoregulátorov\ntermoregulátory\ntermorezistencia\ntermoset\ntermosetoch\ntermosetov\ntermosetu\ntermosety\ntermosféra\ntermoska\ntermosových\ntermostabilita\ntermostabilný\ntermostat\ntermostaticky\ntermostatický\ntermostatmi\ntermostatový\ntermosterilizácie\ntermosterilizáciou\ntermostézia\ntermoterapia\ntermoterapie\ntermotropizmus\ntermovízia\ntermovízny\ntermu\ntermy\ntern\nTerňa\nternálne\nTerni\nterno\nterofyt\ntéroch\ntérom\nteror\nterorist\nterorista\nteroristicky\nteroristický\nteroristka\nteroristovho\nterorizmus\nterorizovaní\nterorizovania\nterorizovanie\nterorizovať\ntérov\nTérov\ntérový\nterp\nterpa\nterpén\nterpenický\nterpentín\nterpentínový\nterpín\nterra\nTerra\nTerre\nTerry\nTerst\nTerste\nTerstom\nterstský\nTerstu\ntéru\ntéry\nTES\ntesajúce\ntesák\nTesálie\nTesálii\nTesáliu\ntesanie\ntesaný\ntesar\ntesár\ntesárčina\ntesárčiť\ntesárik\ntesárikovi\ntesársky\ntesársky\ntesárstvach\ntesárstvam\ntesárstvo\ntesať\nTesiel\ntesil\ntesilmi\ntesilový\ntesklivý\nteskniť\ntesla\nTesla\nTesle\nTeslou\nTeslu\nTesly\ntesnajú\ntesnenie\ntesnený\ntesne\ntesni\ntesniaci\ntesnime\ntesnina\ntesnite\ntesniť\ntesno\ntesnopis\ntesnopisec\ntesnopisný\ntesnosť\ntesný\ntesta\nTesta\ntestamentárne\ntestamentárny\ntestament\ntestamentmi\ntestamentovo\ntestamentový\ntesťami\ntestátor\ntestátorov\ntest\ntesť\ntestikula\ntestimonium\ntestiná\ntestinu\ntestis\ntestmi\ntestosterón\ntesťova\ntestovací\ntestovanie\ntestovaný\ntestovateľný\ntestovať\ntesťovcami\ntesťovci\ntesťovcoch\ntesťovcov\ntesťove\ntestovo\ntestový\nTesu\nTesy\nteše\nTešedíkova\nTešedíkove\nTešedíkovo\ntešedíkovského\ntešem\ntešeme\ntešenia\ntešenie\ntešeš\ntešete\ntešiaci\ntešiel\ntešievať\ntešiteľ\ntešiť\ntešla\ntešlica\nTešmák\ntešú\ntešúc\ntetan\ntetane\ntetania\ntetanmi\ntetanoch\ntetanom\ntetanov\ntetanový\ntetanu\ntetanus\ntetany\nteta\ntetický\nTetin\ntetine\ntetinu\ntetív\ntetiva\ntetivový\ntetka\ntetovania\ntetovanie\ntetovať\ntetra\ntetraboritan\ntetracyklín\ntetracyklínový\ntetracyt\ntetraéder\ntetraedrit\ntetraedritov\ntetraedritu\ntetragón\ntetrahexaéder\ntetrachlór\ntetrachlóre\ntetrachlóretalén\ntetrachlóretán\ntetrachlórmetán\ntetrachlórmetánu\ntetrachlórmi\ntetrachlóroch\ntetrachlórom\ntetrachlórov\ntetrachlórový\ntetrachlóru\ntetrachlóry\ntetralógia\ntetranitrometán\ntetrapód\ntetrapódia\ntetrarcha\ntetrarchia\ntetrit\ntetroví\ntetrov\ntetuľka\ntetuška\nTEU\nteurgia\nteurum\nTexas\nTexase\ntexasiek\ntexaská\ntexaské\ntexaského\ntexaskej\ntexaskom\ntexaskou\ntexaskovina\ntexaskový\ntexaskú\ntexasky\ntexaských\ntexaským\ntexaskými\ntexasky\nTexaský\nTexasom\nTexasu\nTexta\ntextácia\ntextácie\ntextácii\ntextáciou\ntextáciu\ntextár\ntextárka\ntextársky\ntextársky\ntext\ntextenzia\ntextika\nTextilácka\ntextiláckeho\ntextiláckej\ntextilácky\ntextiláckych\ntextiláckym\ntextiláčka\ntextilák\ntextil\ntextília\ntextilka\ntextilmi\ntextilníctve\ntextilno\ntextilný\ntextmi\ntextológ\ntextológia\ntextologický\ntextologička\ntextologička\ntextovanie\ntextovať\ntextovo\ntextový\ntextúr\ntextúrach\ntextúram\ntextúra\nTextúrované\ntéz\ntézach\ntézam\ntezaura\ntezaurácia\ntezaurácie\ntezauráciu\ntezaurami\ntezaure\ntezauroch\ntezaurom\ntezaurov\ntezaurované\ntezaurovanie\ntezaurovať\ntezauru\ntezaurus\ntezaury\ntéza\ntézovite\ntézovito\ntézovitosť\ntézovitý\ntfi\ntfí\ntg\nTGV\nTh\nTH\nthaj\nThajčan\nThajsko\nthajsky\nthajský\nthajský\nthalamus\nthalasofóbia\nThália\nthalofyt\nthalom\nthanatofóbia\nthanga\nthat\nThDr\nthe\nthé\nthiamin\nThLic\ntholos\nthomizmus\nthonet\nthrash\nthriller\nthrilleri\nthymus\nthyrsos\nTHz\nTchaj\nTchaj-wan\nTchajwančan\nTchajwančanka\nTchajwanec\nTchajwanka\ntchajwanský\ntchori\ntchoria\ntchor\nti\ntí\ntiahel\ntiahlo\ntiahly\ntiahnú\ntiahnúci\ntiahnutá\ntiahnutí\ntiahnutia\ntiahnutie\ntiahnutím\ntiahnuť\ntiamín\ntiap\ntiapať\ntiár\ntiára\ntiarách\ntiarám\ntiara\ntiara\ntiarch\ntiav\ntiažach\ntiažam\ntiaž\ntiažový\ntib\nTiba\nTibava\nTibave\nTibavin\ntibavský\nTibavu\nTibavy\nTibe\nTiber\nTiberi\ntiberský\nTibeťan\nTibeťanka\ntibet\nTibet\ntibetočín\ntibetový\ntibetsky\ntibetský\ntibia\nTibora\nTibor\nTibormi\nTiboroch\nTiborom\nTiborov\nTiborovi\nTiborovia\nTiborovu\nTibu\nTiby\nticián\ntidli\ntidlikať\ntie\ntiebreak\ntiecť\ntielko\ntielok\ntiem\ntieňava\ntienenia\ntienenie\ntienením\ntienený\ntieniaca\ntieniacej\ntieniaci\ntienidlo\ntienik\ntienisto\ntienistý\ntieniť\ntieň\ntieňohra\ntieňovanie\ntieňovaný\ntieňovať\ntieňovo\ntieňový\nTier\ntieseň\ntiesňach\ntiesňam\ntiesňava\ntiesnený\ntiesnina\ntiesniť\ntiesnivo\ntiesnivý\ntiesňový\ntiesňový\ntiet\ntieto\ntiež\ntiežbratislavčan\ntiežbratislavčanka\ntieže\ntiežkritika\ntiežpodnikateľ\ntiežpodnikateľka\ntiežpodnikateľský\ntiežslovák\ntiežslovenka\ntiežšportovec\ntiežumelec\ntifosi\ntigerL\ntigmonastia\ntigmotaxia\ntigon\ntigrica\ntigríča\ntigrí\nTigris\nTigrisom\ntigrovaný\ntigrovitý\ntíha\ntích\ntíchnuť\nticho\nTichomír\ntichomorský\ntichooceánsky\ntichooceánsky\ntichosť\ntichota\ntichučko\ntichúčko\ntichučký\ntichulinko\ntichulinký\ntichunko\ntichunký\ntichý\ntikanie\ntikať\ntik\ntík\ntiket\ntiki\ntiknúť\ntikot\ntikotmi\ntíkový\ntiktak\ntilácky\ntiláčka\ntilasit\ntíld\ntilda\ntilit\ntilosaurus\ntím\ntimbre\ntimbri\ntimbroch\ntimbrológia\ntimbrom\ntimbrov\ntimbru\ntimbry\ntimer\nTimes\ntimidita\ntiming\ntimitida\ntimokracia\ntimológia\ntimonický\nTimoradza\nTimoradze\nTimoradzi\nTimor\ntimoroso\nTimotej\ntímový\nTimravinej\nTimravinu\nTimravy\ntinama\ntinea\ntínedžer\ntínedžerka\ntínedžerský\ntingltangl\nTinka\ntinkcia\ntinktúr\ntinktúrach\ntinktúram\ntinktúra\nTinku\ntinta\ntintinnado\ntiny\ntip\ntípí\ntipovacej\ntipovací\nTipovacia\ntipovacie\ntipovacích\ntipovaciu\ntipovacom\ntipovania\ntipovanie\ntipovaním\ntipovaniu\ntipovaný\ntipovať\ntiptop\ntip-top\ntipujúci\nTIR\ntirád\ntirádach\ntirádam\ntiráda\ntirák\ntiráku\ntiráky\ntiramisu\nTirana\ntiranský\ntirážach\ntirážam\ntiráž\ntiré\ntiret\nTirolčan\nTirolsko\ntirolský\nTís\nTisa\ntis\ntisícami\ntisícdvesto\ntisícdvestodeväťdesiat\ntisícdvestodvadsaťdva\ntisícdvestopäťdesiatštyri\ntisícdvestošesťdesiat\ntisícdvestoštyridsaťsedem\ntisícero\ntisícerý\ntisícicm\ntisícin\ntisícina\ntisícinka\ntisíci\ntisíc\ntisícka\ntisíckorunáčka\ntisíckorunovka\ntisíckorunový\ntisíckrát\ntisícmetrový\ntisícnásobne\ntisícnásobný\ntisícorako\ntisícoraký\ntisícoro\ntisícovka\ntisícovo\ntisícový\ntisícpäťdesiatdva\nTisícpäťsto\ntisícročie\ntisícročnica\ntisícročný\ntisícsedemnásť\ntisícsedemsto\ntisícsedemstosedemdesiatich\ntisícsedemstosedemdesiatpäť\ntisícsedemstošesťdesiat\ntisícšesťsto\ntisícštyristo\ntisíctristošesťdesiatpäť\ntisíctristotridsaťpäť\ntisíchektárový\ntisíchlasý\ntisina\nTisinci\nTisincom\nTisinec\ntisinový\ntisk\ntiskať\ntískať\ntisko\ntisku\ntiský\ntisnúť\ntisovca\nTisovce\nTisovci\nTisovcom\nTisovec\nTisovníckej\nTisovo\ntisovského\ntisovskej\ntisovskí\ntisovskú\ntisovských\ntisovským\nTisovský\ntisový\ntíšach\ntíšam\ntíšava\ntíš\ntíšenieN\ntíšina\ntíšinka\ntíšiť\ntíšivý\ntíško\ntíškom\ntitan\ntitán\ntitani\ntitaničitan\ntitaničitý\ntitanid\ntitanit\ntitanizmus\ntitánomagnetit\ntitanovi\ntitánovo\ntitanový\ntitánový\ntitanský\ntitánsky\ntiter\ntitilácia\ntitlá\ntitlať\nTitle\ntíto\ntiton\ntitrácia\ntitračný\ntitrom\ntitubácia\ntitulár\nTitulári\ntitulárny\ntitulárov\ntitul\ntitulkár\ntitulkárka\ntitulka\ntitulkovací\ntitulkovacieho\ntitulkovacom\ntitulkovania\ntitulkovanie\ntitulkovaniu\ntitulkovaný\ntitulkovať\ntitulkový\ntitulmi\ntitulný\ntitulok\ntitulovanie\ntitulovaný\ntitulovať\ntitulový\ntixotropia\ntizian\ntizianovo\ntizianový\ntíže\nTižina\nTJ\nťjaj\nTK\ntkací\ntkáč\ntkáčka\nTkáčova\nTkáčove\nTkáčovej\nTkáčovho\ntkáčovňa\ntkáčovní\nTkáčovo\nTkáčovou\ntkáčovské\ntkáčovskej\ntkáčovskú\ntkáčovských\nTkáčovu\nTkáčových\nTkáčovým\nTkáčovými\ntkáčsky\ntkáčsky\ntkáčstvach\ntkáčstvam\ntkáčstvo\ntkajúci\ntkane\ntkania\ntkanica\ntkanička\ntkanie\ntkaním\ntkanina\ntkaninový\ntkaniu\ntkanív\ntkanivo\ntkanivový\ntkaný\ntkať\ntkávať\ntklivo\ntklivosť\ntklivý\ntku\ntkvenie\ntkvieť\ntky\nTl\ntlač\ntlačenica\ntlačenie\ntlačenka\ntlačený\ntlačiaca\ntlačiace\ntlačiaceho\ntlačiacej\ntlačiaci\ntlačiacich\ntlačiacim\ntlačiacu\ntlačiar\ntlačiareň\ntlačiarensky\ntlačiarenský\ntlačiarka\ntlačiarňach\ntlačiarňam\ntlačiarnička\ntlačiarňový\ntlačiarsky\ntlačiarsky\ntlačiarstvach\ntlačiarstvam\ntlačiarstvo\ntlačidielko\ntlačidielok\ntlačidlo\ntlačidlovo\ntlačidlový\ntlačiteľný\ntlačiť\ntlačítko\ntlačítkový\ntlačív\ntlačivo\ntlačno\ntlačný\ntlačove\ntlačovina\ntlačovka\ntlačovo\ntlačový\ntlak\ntlakomera\ntlakomer\ntlakomerný\ntlakomerový\ntlakovo\ntlakový\ntlakovzdušnú\ntlakovzdušných\ntlama\ntlamísk\ntlamisko\ntlamový\ntlampačmi\ntláp\ntlapa\ntľapkastý\ntľapkať\ntľapkavý\ntlapka\ntľapka\ntľapnutím\ntľapnúť\ntľasknúť\ntĺci\ntĺcť\ntlčenie\ntlčením\ntlčený\ntlčhuba\ntĺčik\ntlecí\ntlej\ntlejivka\ntlejme\ntlejte\ntlejú\ntlejúc\ntlejúci\ntlení\ntlenie\ntlesk\ntlesknutím\ntlesknúť\ntleskot\ntlesnúť\ntletie\ntliap\ntliapal\ntliapala\ntliapali\ntliapalo\ntliapať\ntliape\ntliapem\ntliapeme\ntliapeš\ntliapete\ntliapme\ntliapte\ntliapu\ntliapuc\ntlieskané\ntlieskania\ntlieskanie\ntlieskaním\ntlieskať\ntlieť\ntĺk\ntlkotaj\ntlkotajme\ntlkotajte\ntlkotajúc\ntlkotať\ntlkot\ntlkotmi\ntĺkovi\nTlmače\nTlmačmi\nTlmačoch\nTlmačom\nTlmačov\ntlmačské\ntlmačského\ntlmačskej\ntlmačskú\ntlmačských\ntlmačským\ntlmačskými\nTlmačský\ntlmene\ntlmenia\ntlmenie\ntlmením\ntlmeniu\ntlmeno\ntlmenosť\ntlmený\ntlmi\ntlmiaca\ntlmiace\ntlmiaceho\ntlmiaci\ntlmiacich\ntlmiacim\ntlmiacimi\ntlmiacom\ntlmiacou\ntlmiacu\ntlmič\ntlmiť\ntlmiviek\ntlmivka\ntlmivkách\ntlmivke\ntlmivku\ntlmivky\ntlmivo\ntlmivosť\ntlmivý\ntlmočenie\ntlmočený\ntlmočiť\ntlmočnícky\ntlmočníctvo\ntlmočníčka\ntlmočník\ntlo\ntľoskať\ntľosknúť\ntlstnúť\ntlstopis\ntlstota\ntlstučký\ntlstulinký\ntlstunký\ntlstý\ntlúp\ntlupa\ntlupiaca\ntmách\ntmám\ntmár\ntmársky\ntmársky\ntmárstvach\ntmárstvam\ntmárstvo\ntmav\ntmava\ntmavieť\ntmavistý\ntmavnutia\ntmavnutie\ntmavnúť\ntmavo\ntmavobelasý\ntmavočervený\ntmavofialovo\ntmavofialový\ntmavohnedý\ntmavomodro\ntmavomodrý\ntmavooký\ntmavooranžový\ntmavoružový\ntmavosivý\ntmavosť\ntmavošedý\ntmavovláska\ntmavovlasý\ntmavozelený\ntmavozraký\ntmavožltý\ntmavšíF\ntmavý\ntma\ntmej\ntmejme\ntmejte\ntmejú\ntmejúc\ntmela\ntmel\ntmele\ntmelenie\ntmelený\ntmeliaci\ntmeliť\ntmelivo\ntmelmi\ntmelo\ntmelový\ntmenie\ntmi\ntmie\ntmiem\ntmieme\ntmieš\ntmieť\ntmiete\ntmime\ntmísk\ntmisko\ntmite\ntmiť\ntmoliť\ntmoľkať\nTN\ntne\ntnem\ntneme\ntneš\ntnete\ntni\ntnime\ntnite\ntnkový\nTNT\ntnú\ntnúc\nto\ntoaletár\ntoaletárka\ntoaleta\ntoaletka\ntoaletný\ntoark\ntoast\ntoasting\ntoastmi\ntoastovač\ntoastový\nTobago\nTobin\nTobina\ntobogan\ntoboganový\ntobolka\ntobôž\nToby\ntoccat\ntoccata\ntočene\ntočenie\ntočený\ntočiaci\ntočiacom\ntočiacu\ntočidla\ntočiť\ntočitý\ntočivosť\ntočivý\ntoč\ntočka\ntočkovať\ntočňa\ntočné\ntoční\nTočnica\ntočňový\ntočovka\ntočovkoval\ntočovkovala\ntočovkovali\ntočovkovalo\ntočovkovať\ntočovkový\ntočovkuj\ntočovkuje\ntočovkujem\ntočovkujeme\ntočovkuješ\ntočovkujete\ntočovkujme\ntočovkujte\ntočovkujú\ntočovkujúc\ntoddy\ntofé\ntoffee\ntofu\ntóg\ntógach\ntógam\ntóga\nTogčan\nTogo\ntogský\ntoho\ntohoročne\ntohoročný\ntohoto\ntohotoročný\ntohože\ntohto\ntohtoročne\ntohtoročný\ntohuvabohu\ntoka\nToka\nTokaja\nTokaji\nTokajík\nTokajíku\nTokajom\ntokajský\nTokaju\ntokáň\nTokanie\ntokár\ntokárčina\ntokáreň\nTokárovej\ntokársky\ntokársky\ntokárstvach\ntokárstvam\ntokárstvo\ntokáta\ntokať\ntok\nTokia\nTokijčan\ntokijsky\ntokijský\nTokio\nTokiom\nTokiu\ntoko\ntokoferol\ntokoferoly\ntokofóbia\ntokogónia\ntokograf\ntokografia\ntokológia\ntolerancia\ntolerančný\ntolerantne\ntolerantnosť\ntolerantný\ntolerovane\ntolerovania\ntolerovanie\ntolerovaním\ntolerovaniu\ntolerovanosť\ntolerovaný\ntolerovať\ntoliar\ntoliarmi\ntoličizný\ntoličižný\ntolikánsky\ntolikánsky\ntoľkáto\ntoľkéhoto\ntoľkejto\ntoľkémuto\ntoľkéto\ntoľkíto\ntoľko\ntoľkokrát\ntoľkomto\ntoľkoraký\ntoľkoto\ntoľkouto\ntoľkúto\ntoľkýchto\ntoľkýmito\ntoľkýmto\ntoľkýto\ntoľký\ntolma\ntoľme\ntolos\ntolstojovsky\ntolstojovský\ntolstolobik\ntoluén\ntoluénový\ntoluol\ntoluolový\ntom\ntomahavk\ntomahawk\ntomáš\nTomáš\nTomášikova\nTomášiková\nTomášikovo\nTomášikovu\nTomášove\nTomášovej\ntomášovskej\ntomášovskí\ntomášovských\nTomášových\ntomášsky\ntomášsky\ntomatín\ntombak\ntombôl\ntombola\ntombolo\ntombolový\ntomel\nTomík\nTomíka\nTomíkovmu\ntomograf\ntomografia\ntomografický\ntomogram\ntomsenolit\nTomský\ntomsonit\ntomto\ntomu\ntomus\ntomuto\ntomuže\ntomže\nton\ntoň\ntôňach\ntonalita\ntonálny\ntôňam\ntôňa\ntôňava\ntona\ntonážach\ntonážam\ntonáž\ntonážny\ntón\ntondo\ntoner\ntonerový\ntonet\nTongan\nTonganka\nTonga\ntongský\ntôní\ntonický\ntônička\ntonie\ntoniem\ntonieme\ntonieš\ntoniete\ntonifikácia\ntoník\ntónika\ntonik\ntonikum\ntónin\ntónina\nTonino\nToninom\ntóninový\ntônistý\ntôniť\ntônivý\ntonizačný\ntonizátor\ntonizovaním\ntonizovať\nTonka\ntonkin\nTonkin\nTonku\ntoňme\ntonografia\ntonometer\ntonometria\ntonooscilograf\ntónovanie\ntónovaný\ntónovať\ntónovo\ntónový\ntonový\ntoňte\ntonúcemu\ntonus\ntonúť\ntonzil\ntonzila\ntonzilektómia\ntonzilitída\ntonzilomykóza\ntonzúr\ntonzúrach\ntonzúram\ntonzúra\ntonžský\ntopa\ntopalgia\ntopánka\ntopánkovník\ntopánkový\ntopánočka\ntopárka\ntopás\ntopasit\ntopasolit\ntopásovec\ntopásový\ntope\nTopeka\ntopenia\ntopenie\ntopením\ntopeniu\ntopený\ntopiaca\ntopiace\ntopiaceho\ntopiacej\ntopiacemu\ntopiaci\ntopiacich\ntopiacim\ntopiacom\ntopiacu\ntopický\ntopievať\ntopika\ntopikum\ntopinambur\ntopiť\nTopľa\ntopliansky\ntopliansky\ntopmi\ntopmodelka\ntopná\ntopne\ntopoalgia\ntopofóbia\ntopograf\ntopografia\ntopograficky\ntopografický\ntopografka\ntopoch\ntopochémia\ntopoi\ntopoľa\nTopoľčanec\nTopoľčanmi\nTopoľčanoch\nTopoľčanom\nTopoľčany\nTopoľčian\nTopoľčianka\ntopoľčiansky\ntopole\ntopoli\nTopoli\ntopoľ\ntopoľmi\nTopoľnica\nTopoľníkoch\nTopoľníky\ntopológia\ntopologické\ntopológie\ntopológii\ntopológiou\ntopológiu\ntopoľoch\ntopoľom\nTopoľou\ntopoľov\nTopoľovka\nTopoľovke\nTopoľovky\ntopoľový\ntopoľu\ntopom\ntoponarkóza\ntoponeuróza\ntoponomastický\ntoponomastika\ntoponýmia\ntoponymum\ntoponý\ntopor\nToporca\nToporec\ntoporísk\ntoporisko\ntoporne\ntopornosť\ntoporný\ntopov\ntopspin\ntopu\ntopy\nTor\ntóra\ntorakalgia\ntorakálny\ntorakodýnia\ntorakochirurgia\ntorakomeióza\ntorakoplastika\ntorakoschíza\ntorakostenóza\ntorakotómia\ntorax\nToraxom\ntorba\ntorbernit\ntorbica\nTore\ntoreádor\ntoreador\ntoreadormi\ntoreadorský\ntorero\nTorero\ntorický\ntorii\ntoriový\ntóriový\ntorit\ntórium\ntorkret\ntorkretovanie\ntorkretovaním\ntorment\ntormentácia\ntorna\ntornád\ntornádach\ntornádam\ntornádo\ntorogummit\ntoroida\ntorom\nToronta\nToronte\nToronto\nTorontom\ntorontský\nTOROS\ntorpéd\ntorpédach\ntorpédam\ntorpédoborec\ntorpédo\ntorpédovania\ntorpédovanie\ntorpédovaniu\ntorpédovaný\ntorpédovať\ntorpédový\ntorpidita\ntorpidný\ntorpor\ntorr\ntorre\ntorrmi\ntorroch\ntorrom\ntorrov\ntorru\ntorry\nTorry\ntorta\ntorteliny\ntortička\ntortikolis\ntortila\ntortilla\ntorton\ntortový\ntortúr\ntortúrach\ntortúram\ntortúra\nToru\ntorulóza\nTorunčan\nToruň\ntorunský\ntorunský\ntorus\nTorus\ntory\ntoryovec\ntoryovia\ntoryovský\nTorysa\nTorysky\ntoryský\ntorz\ntorzia\ntorzne\ntorzný\ntorzoa\ntorzoe\ntorzo\ntorzovite\ntorzovito\ntorzovitosť\ntorzovitý\nToshiba\nToskánska\nToskánsko\nToskánskom\nToskánsku\ntoskánsky\ntoskánskym\ntosto\ntoť\ntotalista\ntotalisticky\ntotalistický\ntotalitarista\ntotalitaristický\ntotalitarizmus\ntotalitárne\ntotalitárny\ntotalita\ntotalitne\ntotalitnosť\ntotalitný\ntotalizátor\ntotalizmus\ntotálne\ntotálny\ntotem\ntotemický\ntotemizmus\ntotemový\ntotiž\ntotižto\ntoto\ntotohľa\ntotožne\ntotožnosť\ntotožný\ntotum\ntou\ntoulouského\ntoulouskej\ntounský\ntour\ntourmalet\ntournedos\ntouto\ntouže\ntovar\ntováreň\ntovárensky\ntovárenský\ntovarich\ntovariš\ntovarišský\ntovarišstvo\ntovárňach\ntovárňam\nTovarnícka\ntovárnický\ntovárnička\ntovárnik\nTovarníkoch\nTovarníky\nTovárniky\ntovarovo\ntovarový\ntovaroznalec\ntovaroznalecký\ntovaroznalectvo\ntovaroznalkyňa\ntovými\ntoxafen\ntoxémia\ntoxicita\ntoxicky\ntoxický\ntoxidermitída\ntoxigenita\ntoxigénny\ntoxiká\ntoxikogenita\ntoxikológ\ntoxikológia\ntoxikologický\ntoxikológie\ntoxikológiu\ntoxikológov\ntoxikoman\ntoxikománia\ntoxikomanka\ntoxikopatia\ntoxikóza\ntoxín\ntoxínový\ntoxipexa\ntoxodon\ntoxofor\ntoxokaróza\ntoxón\ntoxoplazmóza\ntože\ntr\ntŕ\ntra\ntrabanta\ntrabant\ntrabantmi\ntrablami\ntrable\ntrabloch\ntrablom\ntrablov\ntrabuko\nTrácia\ntrack\ntrackball\ntrácky\ntráč\ntráčik\ntráčiky\ntráčka\nTráčka\ntráčkami\ntračkoch\ntráčkoch\ntračkom\ntráčkom\ntračkov\ntráčkov\ntráčku\ntráčky\ntračky\ntrademark\nTrademark\ntradeskancia\ntradeunionizmus\ntradícia\ntradicionál\ntradicionalista\ntradicionalisticky\ntradicionalistický\ntradicionalistka\ntradicionalizmus\ntradicionálna\ntradicionálny\ntradične\ntradičnosť\ntradičný\ntradičný\ntradovaná\ntradované\ntradovanej\nTradovaný\ntradovať\ntraducianizmus\ntradukcia\ntraduktionym\ntrafenia\ntrafený\ntrafička\ntrafikant\ntrafikantka\ntrafikantský\ntrafika\ntrafikový\ntrafiť\ntrafostanica\ntragač\ntragant\ntragéd\ntragédia\ntragédka\ntragickosť\ntragicky\ntragický\ntragik\ntragika\ntragikomédia\ntragikomickosť\ntragikomicky\ntragikomický\ntragikomika\ntragikov\ntragizmu\ntragizovať\ntrahovať\ntrahvý\ntrachealgia\ntracheálny\ntrachea\ntracheitída\ntracheitis\ntracheloktómia\ntracheloplastika\ntrachelorafia\ntracheobronchiálny\ntracheolarynginálny\ntracheoragia\ntracheoskop\ntracheoskopia\ntracheospazmus\ntracheostenóza\ntracheotómia\ntracheový\ntrachodon\ntrachóm\ntrachómový\ntrachyfónia\ntrachyt\ntrailer\ntrailerov\ntraja\ntrajekt\ntrajektmi\ntrajektóriách\ntrajektóriám\ntrajektórie\ntrajektórii\ntrajektórií\ntrajektóriou\ntrajektórium\ntrajektový\ntrajlera\ntrajler\ntrajleri\ntrajlerový\nTrák\ntrak\ntrakcia\ntrakčný\ntraker\nTrakovíc\nTrakovice\nTrakoviciach\nTrakoviciam\ntrakový\ntraksavý\ntraktát\ntraktátmi\ntraktátový\ntrakt\ntraktmi\ntraktor\ntraktorček\ntraktorista\ntraktoristka\ntraktorový\ntraktotómia\ntraktovať\ntraktúra\ntraky\ntrala\ntralákať\ntralala\ntralalom\nTram\nTrama\ntramatizovať\ntrám\ntrambolín\ntrambolínach\ntrambolínam\ntrambolína\ntrambulín\ntrambulínach\ntrambulínam\ntrambulína\ntrambulínový\ntrambusa\ntrambus\ntrambusový\ntrámci\ntrámcov\ntrámcových\nTrame\ntrámec\ntrámik\ntramín\ntramínový\ntramontana\ntrámový\ntramp\ntrampe\ntrampiek\ntramping\ntrampingmi\ntrampingoch\ntrampingom\ntrampingov\ntrampingu\ntrampingy\ntrampka\ntrampolín\ntrampolínach\ntrampolínam\ntrampolína\ntrampolínový\ntrampôt\ntrampotách\ntrampotám\ntrampotami\ntrampotiť\ntrampoty\ntrampovať\ntrampský\ntrampu\ntrampy\ntramtária\ntramvaj\ntramvaják\ntramvaje\ntramvají\ntramvajové\ntrán\ntranformácia\ntrankvilizér\nTranoscius\ntrans\nTrans\ntransakcia\ntransakčne\ntransakčno\ntransakčný\ntransarktický\ntransatlantický\ntranscendencia\ntranscendentálne\ntranscendentálno\ntranscendentálnosť\ntranscendentálny\ntranscendentno\ntranscendentnosť\ntranscendentný\ntranscentrálny\nTranse\ntransept\ntranseurópsky\ntransfer\ntransferoval\ntransferovala\ntransferovali\ntransferovalo\ntransferovanie\ntransferovaný\ntransferovať\ntransferový\ntransferuje\ntransferujeme\ntransferujú\ntransfigurácia\ntransfigurovať\ntransfinitný\ntransfixia\ntransfokácia\ntransfokátor\ntransformácia\ntransformačne\ntransformačno\ntransformačný\ntransformátor\ntransformátorový\ntransformovania\ntransformovanie\ntransformovaním\ntransformovaniu\ntransformovaný\ntransformovať\nTransformovňa\ntransformovne\ntransformovni\ntransformovní\ntransformovniach\ntransformovňou\ntransformovňu\ntransformujúci\ntransfundovať\ntransfúzia\ntransfúziológ\ntransfuziológia\ntransfúziológia\ntransfúziologický\ntransfúziologička\ntransfúzny\ntransgestizmus\ntransgresia\ntransgresív\ntransketonácia\ntranskódovanie\ntranskontinentálny\ntranskribovať\ntranskripcia\ntranskripčný\ntranskutánny\ntranslácia\ntranslalógia\ntranslátor\ntransliterácia\ntransliteračný\ntranslokácia\ntranslunárny\ntransmigrácia\ntransmisia\ntransmisijný\ntransmisný\ntransmutácia\ntransmutácie\ntransmutácii\nTransmutáciou\ntransmutované\ntransmutovať\ntransnacionálnych\ntransoceánsky\ntransoceánsky\nTransom\ntransoprtérový\ntransov\ntransparencia\ntransparencie\ntransparenciou\ntransparenciu\ntransparent\ntransparentmi\ntransparentne\ntransparentnosť\ntransparentný\ntransparentový\ntranspirácia\ntransplantácia\ntransplantačný\ntransplantát\ntransplantátov\ntransplantátu\ntransplantoval\ntransplantovala\ntransplantovali\ntransplantovalo\ntransplantovaný\ntransplantovať\ntransplantuj\ntransplantuje\ntransplantujem\ntransplantujeme\ntransplantuješ\ntransplantujete\ntransplantujme\ntransplantujte\ntransplantujú\ntransplantujúc\ntransponder\ntransponovanie\ntransponovaný\ntransponovať\ntransponujúci\ntransport\ntransportéra\ntransportér\ntransportéri\ntransportérmi\ntransportéroch\ntransportérom\ntransportérov\ntransportérový\ntransportérový\ntransportéru\ntransportéry\ntransportmi\ntransportne\ntransportno\ntransportný\ntransportovaný\ntransportovať\ntranspozícia\ntranspozičný\ntranspozičný\ntranssexuál\ntranssexualizmus\ntranssonický\ntranssudát\nTransu\ntransudácia\ntransudát\ntransurán\ntransverzála\ntransverzálny\ntransverzály\ntransverzostómia\ntransvestit\ntransvestita\ntransvestitizmus\ntransvestitka\ntransvestitmi\ntransvestizmus\nTransy\nTransylvánčan\nTransylvánčanka\nTransylvánec\nTransylvánia\nTransylvánka\ntransylvánsky\ntransylvánsky\ntrantária\ntranz\ntranzície\ntranzistoráčik\ntranzistorák\ntranzistor\ntranzistorový\ntranzit\ntranzitér\ntranzitéra\ntranzitéri\ntranzitérom\ntranzitérov\ntranzitivita\ntranzitívna\ntranzitívne\ntranzitívneho\ntranzitívnej\nTranzitívni\ntranzitívno\ntranzitívnom\ntranzitívnosť\ntranzitívnosti\ntranzitívnou\ntranzitívnu\ntranzitívny\ntranzitívnych\ntranzitívnym\ntranzitívnymi\ntranzitmi\ntranzitne\ntranzitno\ntranzitný\ntranzito\ntrap\ntrápenie\ntrápený\ntraper\ntrapéz\ntrapéza\ntrapezoid\ntrapézové\ntrapézových\ntrapézovými\ntrápič\ntrápiči\ntrapiech\ntrápievať\ntrapistických\nTrapistický\ntrápiteľ\ntrápiť\ntrápne\ntrápnosť\ntrápny\ntrapovať\ntrapper\ntrapy\ntrara\ntrará\ntrarará\ntrás\ntrasant\ntrasát\ntrasa\ntrascinando\ntrasenia\ntrasenie\ntrasením\ntrasený\ntrasírka\ntraskavina\ntraskavý\ntraskavý\ntrasľav\ntrasľavo\ntrasľavosť\ntrasľavý\ntrasochvosta\ntrasochvost\ntrasochvostmi\ntrasochvostovi\ntrasorítka\ntrasovacej\ntrasované\ntrasovaní\ntrasovania\ntrasovanie\ntrasovaním\ntrasovaniu\ntrasovať\ntrasovísk\ntrasovisko\ntrast\ntrastmi\ntrastový\ntrasúci\ntrata\nTrata\ntratará\ntrať\ntratiť\ntrativoda\ntrativod\ntrativodiek\ntrativodný\ntrativodový\ntraťmajster\ntraťmajstrovského\ntratoria\ntratória\ntratou\ntraťový\ntratto\ntrattoria\ntráum\ntraumách\ntraumám\ntraumami\ntraumaticky\ntraumatický\ntraumatik\ntraumatizácia\ntraumatizácie\ntraumatizácii\ntraumatizmus\ntraumatizovanie\ntraumatizovaný\ntraumatizovať\ntraumatizujúca\ntraumatogénny\ntraumatológ\ntraumatológia\ntraumatologický\ntraumatologička\ntraumatologička\ntraumatóza\ntrauma\ntrávach\ntrávam\ntráva\ntravé\ntrávenie\ntrávený\ntravér\ntravers\ntravertín\ntravertínový\ntraverz\ntraverza\ntravestia\ntravestita\ntravestovať\ntráviaci\ntravič\ntravička\ntrávička\ntravičský\ntravičstvo\ntrávievať\ntravina\ntravinový\ntráviť\ntrávnatosť\ntrávnatý\ntrávnic\ntrávnica\ntrávniček\ntrávnička\nTrávnička\ntrávničkami\ntrávničkoch\ntrávničkom\ntrávničkov\ntrávničku\ntrávničky\ntrávnik\ntrávnikový\ntrávny\ntrávovo\ntrávovozelený\ntrávový\ntráx\ntraxa\ntraxe\ntrblet\ntrbliecu\ntrbliecuc\ntrblietajúci\ntrblietania\ntrblietanie\ntrblietať\ntrblietavo\ntrblietavý\ntrblietka\ntrblot\ntrblotmi\ntrcnúť\ntrcohárčiť\ntrč\ntrčať\ntrčiaci\ntrdlo\ntreba\ntreba\ntrebárs\nTrebatický\nTrebejov\nTrebichava\nTrebichavský\nTrebišov\ntrebišovského\ntrebišovskej\ntrebišovskí\ntrebišovskou\ntrebišovskú\nTrebišovský\nTrebostovo\ntrecento\ntrecí\ntrefa\ntref\ntrefikový\nTrefin\ntrefne\ntrefný\ntrechmannit\ntrekking\ntrém\ntrema\ntrémach\ntrémam\ntrematód\ntrematóda\ntrematodóza\ntréma\ntremedok\ntrémista\ntrémistka\ntremol\ntremolando\ntremolit\ntremolo\ntremor\ntremulant\ntrenažéra\ntrenažér\ntrenažéri\ntrenažérmi\ntrenažéroch\ntrenažérom\ntrenažérov\ntrenažéru\ntrenažéry\nTrenčan\nTrenčianka\ntrenčianskoteplianskej\ntrenčianskoteplianskom\nTrenčianskoteplická\nTrenčianskoteplické\ntrenčianskoteplického\ntrenčianskoteplickej\ntrenčianskoteplickom\ntrenčianskoteplických\ntrenčiansky\nTrenčín\ntrenčkot\ntrend\ntrendovo\ntrendový\ntrénera\ntréner\ntrénerka\ntrénersky\ntrénerský\ntrénerstvo\ntrenica\ntreniek\ntrenie\ntréning\ntréningmi\ntréningoch\ntréningom\ntréningov\ntréningový\ntréningu\ntréningy\ntrenírkach\ntrenírkam\ntrenírky\nTrenkom\ntrenky\ntrénovacie\ntrénovania\ntrénovanie\ntrénovanosť\ntrénovaný\ntrénovať\nTrentonu\ntrený\ntrepacích\nTrepáč\nTrepáča\ntrepačka\ntrepáčka\ntrepaj\ntrepajka\ntrepák\ntrepan\ntrepanácia\ntrepaňa\ntrepanga\ntrepaní\ntrepanie\ntrepanina\ntrepanovanie\ntrepáreň\ntrepárka\ntrepárňach\ntrepárňam\ntrepať\nTrepec\ntrepidácia\ntrepniach\ntrepnúť\ntrepotanie\ntrepotať\ntrepotavá\ntrepotavé\ntrepot\ntrepotmi\ntrepúce\nTresa\ntresci\ntrescime\ntrescite\ntresčí\ntresk\ntreska\ntresk\nTresknutie\ntresknúť\ntreskotavý\ntreskot\ntreskotmi\ntreskúcejšej\ntreskúcejší\ntreskúcejšia\ntreskúcejšie\ntreskúcejšieho\ntreskúcejšiemu\ntreskúcejších\ntreskúcejším\ntreskúcejšími\ntreskúcejšiu\ntreskúcejšom\ntreskúcejšou\ntreskúci\ntresnutie\ntresnúť\ntresnutý\ntresť\ntrestajúci\ntresťami\ntrestane\ntrestanec\ntrestanecký\ntrestanie\ntrestanka\ntrestankyňa\ntrestaný\ntrestateľný\ntrestať\ntrest\ntrestem\ntresti\ntrestmi\ntrestne\ntrestnica\ntrestno\ntrestnoprávny\ntrestnosť\ntrestný\ntrestoprávne\ntrestoprávnou\ntresťou\ntrestuhodne\ntrestuhodnosť\ntrestuhodný\ntrešť\ntrešťať\ntreštiť\ntrešťme\ntrešťte\ntreťa\ntrete\ntretiacky\ntretiačka\ntretiak\ntretiami\ntretica\ntretier\ntretí\ntretíkrát\ntretina\ntretinovo\ntretinový\ntreťohôr\ntreťohorách\ntreťohorám\ntreťohorami\ntreťohorie\ntreťohorný\ntreťohory\ntreťoligový\ntreťom\ntreťoradý\ntreťoročiačka\ntreťoročiačka\ntreťoročiak\ntreťoroj\ntreťostupňový\ntretotriedny\ntreťotriedny\ntreťou\ntretra\ntretý\nTrevír\nTrevira\nTrevíru\nTrevíry\ntrezalka\ntrezor\ntrezorový\ntrgizovať\ntrhací\ntrhač\ntrhače\ntrhačka\ntrhaču\ntrhajúce\ntrhajúci\ntrhák\ntrhan\ntrhanec\ntrhane\ntrhanie\ntrhanka\ntrhano\ntrhanský\ntrhaný\ntrháreň\ntrhárňach\ntrhárňam\ntrhať\ntrhavina\ntrhavinový\ntrhavo\ntrhavosť\ntrhavý\ntrh\ntrhlina\ntrhlinka\ntrhnutej\ntrhnutie\ntrhnutím\ntrhnúť\ntrhovať\ntrhovec\ntrhovísk\ntrhovisko\nTrhovište\nTrhovišti\nTrhovišťom\ntrhovkyňa\ntrhovníci\ntrhovnícky\ntrhovníčka\ntrhovník\ntrhovníka\ntrhovníkmi\ntrhovníkoch\ntrhovníkom\ntrhovníkov\ntrhovníkovi\ntrhovo\ntrhový\ntri\ntriád\ntriádach\ntriádam\ntriáda\ntriadsiatok\ntriafanie\ntriafať\ntriál\ntrial\ntrializmus\ntrialmi\ntrialógu\ntrialový\ntriangel\ntriangla\nTriangla\ntrianglami\ntriangle\nTriangle\ntriangli\ntriangloch\ntrianglom\ntrianglov\ntrianglový\ntrianglu\nTrianglu\ntriangulácia\ntriangulačný\ntriangulovať\ntrianon\ntrianonský\ntriapolročná\ntriapolročné\ntriapolročného\ntriapolročnej\ntriapolročnom\nTriapolročný\ntriasavať\ntrias\ntriasový\ntriasť\ntriaška\ntriatlon\ntriatlonista\ntriatlonistka\ntriatlonový\ntríb\ntribadia\ntribadizmus\ntribalizmus\nTribeč\nTríbeč\nTribečom\ntribečský\ntríbečský\ntríbení\ntríbenia\ntríbenie\ntríbi\ntríbia\ntríbiac\ntríbil\ntríbila\ntríbili\ntríbilo\ntríbim\ntríbime\ntríbiš\ntríbiť\ntríbite\ntríbme\ntribochémia\ntribológia\ntribometer\ntríbte\ntribúnach\ntribunál\ntribunálmi\ntribúnam\ntribunát\ntribúna\ntribún\ntribúnka\ntribúnske\ntribus\ntribút\ntriceps\ntricínium\ntrícium\ntričiek\ntričko\nTrident\nTridentom\ntridentský\nTridentu\ntridsať\ntridsaťdeväť\ntridsaťdeväťtisíc\ntridsaťdňovú\ntridsaťdva\ntridsaťdvatisíc\ntridsaťdvatisícdvesto\ntridsaťdvatisícpäťsto\ntridsatina\ntridsaťjeden\ntridsaťjedentisíc\ntridsaťkilometrový\ntridsaťkorunový\ntridsaťkrát\ntridsaťnásobkom\ntridsaťnásobku\ntridsaťnásobnú\ntridsaťnásobok\ntridsaťosem\ntridsaťosemtisíc\ntridsaťpäť\ntridsaťpäťky\ntridsaťpäťročný\ntridsaťpäťtisíc\ntridsaťročný\ntridsaťsedem\ntridsaťsedemtisíc\ntridsaťstupňová\ntridsaťstupňovým\ntridsaťšesť\ntridsaťšesťtisíc\ntridsaťštyri\ntridsaťštyritisíc\ntridsaťtisíc\ntridsaťtisíckrát\ntridsaťtisícový\ntridsaťtisícpäťsto\ntridsaťtri\ntridsaťtritisíc\ntridsiatina\ntridsiatiny\ntridsiati\ntridsiatka\ntridsiatnička\ntridsiatnik\ntridsiatok\ntridsiaty\ntriduum\ntridymit\ntried\ntrieda\ntriedene\ntriedené\ntriedenie\ntriedený\ntriéder\ntriediaci\ntriediareň\ntriediarňach\ntriediarňam\ntriedič\ntriediče\ntriedička\ntriediču\ntriedievať\ntriediť\ntriedne\ntriednický\ntriednictvo\ntriednik\ntriedniku\ntriedniky\ntriednosť\ntriedny\ntrieliť\ntrienále\ntrienálny\ntrienium\ntriér\ntriéra\ntriesel\ntrieskania\ntrieskaním\ntrieskať\ntrieska\ntrieskovo\ntrieskový\ntriesky\ntrieslo\ntrieslovina\ntrieslovo\ntrieslový\ntriesočka\ntriešťach\ntriešťam\ntriešť\ntrieštení\ntrieštenia\ntrieštenie\ntrieštením\ntriešteniu\ntrieštiť\ntrieštivý\ntrieť\ntriezvosť\ntriezvy\ntrifoliáta\ntrifólium\ntrifórium\ntrifurkácia\ntriga\nTrige\ntrigeminus\nTriglav\nTriglavu\ntrigometrickej\ntrigón\ntrigonella\ntrigonometer\ntrigonometria\ntrigonometrický\nTrihlav\ntrihybrid\ntrichalgia\ntrichauxia\ntrichína\ntrichinela\ntrichinelóza\ntrichlóretylén\ntrichlóretylénu\ntrichlórmetán\ntrichobezoár\ntrichoblast\ntrichofágia\ntrichofóbia\ntrichofýcia\ntrichóm\ntrichomonáda\ntrichomoniáza\ntrichomycín\ntrichotómia\ntrichotomický\ntrichóza\ntrichromázia\ntrichuriázia\ntrií\ntrík\ntrik\ntriklinický\ntrikolór\ntrikolórach\ntrikolóram\ntrikolóra\ntrikolórový\ntriko\ntrikotážach\ntrikotážam\ntrikotáž\ntrikotážny\ntrikot\ntrikotín\ntrikotínový\ntrikotmi\ntrikotový\ntrikový\ntrikrát\ntrikyslík\ntrilaterálny\ntriler\ntrileri\ntriliarda\ntrilingvizmus\ntrilión\ntriliónoch\ntriliónov\ntriliónu\ntrilióny\ntrilkami\ntrilkoch\ntrilkom\ntrilkou\ntrilkov\ntrilkovania\ntrilkovanie\ntrilkovať\ntrilku\ntrilky\nTrilobite\ntrilobit\ntrilógia\ntrilogický\ntrilok\ntrím\ntrímať\ntríme\ntrímem\ntrímeme\ntrimer\ntrimér\ntrimester\ntrimestra\ntrimestre\ntrimestri\ntrimestrov\ntrímeš\ntrímete\ntrímme\ntrimorfia\ntrimovať\ntrímte\ntrímu\ntrímuc\ntrimurti\ntrimviráte\ntrinásť\ntrinásťdňový\ntrinástinu\ntrinásti\ntrinástka\ntrinásťkrát\ntrinásťmesačné\ntrinásťmesačného\ntrinásťmesačnom\ntrinásťročný\ntrinásťtisíc\ntrinásty\ntringelt\ntringeltmi\nTrinidad\ntrinita\ntrinitári\ntrinitrát\ntrinitrocelulóza\ntrinitrotoluén\ntrinitrotoluénový\ntrinom\ntrinus\ntriód\ntriódach\ntriódam\ntrióda\ntriola\ntriolu\ntrioly\ntrio\ntriový\ntrip\ntripaflavín\ntripalmitín\ntripanozóma\ntripartičný\ntripartít\ntripartita\ntripartitne\ntripartitný\nTripartitum\nTripel\ntripeľ\ntripeptid\nTriple\ntriplégia\ntriplet\nTriplex\ntriplicita\ntriplit\ntriploidit\ntriplovaný\ntripódia\nTripol\nTripolisan\nTripolis\ntripoliský\ntripolit\ntripsín\ntriptych\ntriptyk\ntripus\ntriréma\ntrisacharid\ntrisómia\ntriste\ntristí\ntristne\ntristný\ntristo\ntristočlennej\ntristočlenným\ntristodesať\ntristodesaťtisíc\ntristodeväť\ntristodeväťdesiat\ntristodeväťdesiatdeväť\ntristodeväťdesiatdeväťtisíc\ntristodeväťdesiatdva\ntristodeväťdesiatdvatisíc\ntristodeväťdesiatjeden\ntristodeväťdesiatjedentisíc\ntristodeväťdesiatosem\ntristodeväťdesiatosemtisíc\ntristodeväťdesiatpäť\ntristodeväťdesiatpäťtisíc\ntristodeväťdesiatsedem\ntristodeväťdesiatsedemtisíc\ntristodeväťdesiatšesť\ntristodeväťdesiatšesťtisíc\ntristodeväťdesiatštyri\ntristodeväťdesiatštyritisíc\ntristodeväťdesiattisíc\ntristodeväťdesiattri\ntristodeväťdesiattritisíc\ntristodevätnásť\ntristodevätnásťtisíc\ntristodeväťtisíc\ntristodva\ntristodvadsať\ntristodvadsaťdeväť\ntristodvadsaťdeväťtisíc\ntristodvadsaťdva\ntristodvadsaťdvatisíc\ntristodvadsaťjeden\ntristodvadsaťjedentisíc\ntristodvadsaťosem\ntristodvadsaťosemtisíc\ntristodvadsaťpäť\ntristodvadsaťpäťtisíc\ntristodvadsaťsedem\ntristodvadsaťsedemtisíc\ntristodvadsaťšesť\ntristodvadsaťšesťtisíc\ntristodvadsaťštyri\ntristodvadsaťštyritisíc\ntristodvadsaťtisíc\ntristodvadsaťtri\ntristodvadsaťtritisíc\ntristodvanásť\ntristodvanásťtisíc\ntristodvatisíc\ntristojedenásť\ntristojedenásťtisíc\ntristojeden\ntristojedentisíc\ntristokorunová\ntristokorunovej\ntristokorunovou\ntristokrát\ntristometrový\ntristoosem\ntristoosemdesiat\ntristoosemdesiatdeväť\ntristoosemdesiatdeväťtisíc\ntristoosemdesiatdva\ntristoosemdesiatdvatisíc\ntristoosemdesiatjeden\ntristoosemdesiatjedentisíc\ntristoosemdesiatosem\ntristoosemdesiatosemtisíc\ntristoosemdesiatpäť\ntristoosemdesiatpäťtisíc\ntristoosemdesiatsedem\ntristoosemdesiatsedemtisíc\ntristoosemdesiatšesť\ntristoosemdesiatšesťtisíc\ntristoosemdesiatštyri\ntristoosemdesiatštyritisíc\ntristoosemdesiattisíc\ntristoosemdesiattri\ntristoosemdesiattritisíc\ntristoosemnásť\ntristoosemnásťtisíc\ntristoosemtisíc\ntristopäť\ntristopäťdesiat\ntristopäťdesiatdeväť\ntristopäťdesiatdeväťtisíc\ntristopäťdesiatdva\ntristopäťdesiatdvatisíc\ntristopäťdesiatjeden\ntristopäťdesiatjedentisíc\ntristopäťdesiatosem\ntristopäťdesiatosemtisíc\ntristopäťdesiatpäť\ntristopäťdesiatpäťtisíc\ntristopäťdesiatsedem\ntristopäťdesiatsedemtisíc\ntristopäťdesiatšesť\ntristopäťdesiatšesťtisíc\ntristopäťdesiatštyri\ntristopäťdesiatštyritisíc\ntristopäťdesiattisíc\ntristopäťdesiattri\ntristopäťdesiattritisíc\ntristopätnásť\ntristopätnásťtisíc\ntristopäťtisíc\ntristoraký\ntristoročný\ntristosedem\ntristosedemdesiat\ntristosedemdesiatdeväť\ntristosedemdesiatdeväťtisíc\ntristosedemdesiatdva\ntristosedemdesiatdvatisíc\ntristosedemdesiatjeden\ntristosedemdesiatjedentisíc\ntristosedemdesiatosem\ntristosedemdesiatosemtisíc\ntristosedemdesiatpäť\ntristosedemdesiatpäťtisíc\ntristosedemdesiatsedem\ntristosedemdesiatsedemtisíc\ntristosedemdesiatšesť\ntristosedemdesiatšesťtisíc\ntristosedemdesiatštyri\ntristosedemdesiatštyritisíc\ntristosedemdesiattisíc\ntristosedemdesiattri\ntristosedemdesiattritisíc\ntristosedemnásť\ntristosedemnásťtisíc\ntristosedemtisíc\ntristosedemtisícpäťsto\ntristošesť\ntristošesťdesiat\ntristošesťdesiatdeväť\ntristošesťdesiatdeväťtisíc\ntristošesťdesiatdva\ntristošesťdesiatdvatisíc\ntristošesťdesiatjeden\ntristošesťdesiatjedentisíc\ntristošesťdesiatosem\ntristošesťdesiatosemtisíc\ntristošesťdesiatpäť\ntristošesťdesiatpäťtisíc\ntristošesťdesiatsedem\ntristošesťdesiatsedemtisíc\ntristošesťdesiatšesť\ntristošesťdesiatšesťtisíc\ntristošesťdesiatštyri\ntristošesťdesiatštyritisíc\ntristošesťdesiattisíc\ntristošesťdesiattri\ntristošesťdesiattritisíc\ntristošestnásť\ntristošestnásťtisíc\ntristošesťtisíc\ntristoštrnásť\ntristoštrnásťtisíc\ntristoštyri\ntristoštyridsať\ntristoštyridsaťdeväť\ntristoštyridsaťdeväťtisíc\ntristoštyridsaťdva\ntristoštyridsaťdvatisíc\ntristoštyridsaťjeden\ntristoštyridsaťjedentisíc\ntristoštyridsaťosem\ntristoštyridsaťosemtisíc\ntristoštyridsaťpäť\ntristoštyridsaťpäťtisíc\ntristoštyridsaťsedem\ntristoštyridsaťsedemtisíc\ntristoštyridsaťšesť\ntristoštyridsaťšesťtisíc\ntristoštyridsaťštyri\ntristoštyridsaťštyritisíc\ntristoštyridsaťtisíc\ntristoštyridsaťtri\ntristoštyridsaťtritisíc\ntristoštyritisíc\ntristotisíc\ntristotisíceho\ntristotisíci\ntristotisícový\ntristotri\ntristotridsať\ntristotridsaťdeväť\ntristotridsaťdeväťtisíc\ntristotridsaťdva\ntristotridsaťdvatisíc\ntristotridsaťjeden\ntristotridsaťjedentisíc\ntristotridsaťosem\ntristotridsaťosemtisíc\ntristotridsaťpäť\ntristotridsaťpäťtisíc\ntristotridsaťsedem\ntristotridsaťsedemtisíc\ntristotridsaťsedemtisícpäťsto\ntristotridsaťšesť\ntristotridsaťšesťtisíc\ntristotridsaťštyri\ntristotridsaťštyritisíc\ntristotridsaťtisíc\ntristotridsaťtri\ntristotridsaťtritisíc\ntristotrinásť\ntristotrinásťtisíc\ntristotritisíc\ntristovke\ntrištvrte\ntritanopia\ntritikale\ntritisíc\ntritisícdeväťstotridsať\ntritisícdvesto\ntritisíce\ntritisíckorunové\ntritisícový\ntritisícsedemsto\ntritisícšesťsto\ntritisícšesťstotridsať\ntritol\ntritolov\ntritolu\ntritón\ntritónka\ntriumfálnosť\ntriumfálny\ntriumfátor\ntriumf\ntriumfovať\ntriumfujúci\ntriumvir\ntriumvirát\ntriumvirátmi\ntrivalencia\ntrivialita\ntriviálne\ntriviálnosť\ntriviálny\ntrivium\ntrízeň\ntrizómia\ntrkať\ntrknúť\ntrkotajúc\ntrkotania\ntrkotanie\ntrkotať\ntrkotavý\ntrkot\ntrkotmi\ntrkvas\ntŕl\ntrlica\ntrlingať\ntrlo\ntrm\nTrmácanie\ntrmácaním\ntrmácať\ntrmádzgať\ntrmanom\ntrmať\ntrma-vrma\ntrma\ntrmme\ntrmnúť\ntrmtária\ntrmte\ntrmú\ntrmúc\ntrmy-vrmy\ntrň\ntŕn\ntŕňa\nTrnava\nTrnavčan\nTrnavčanka\nTrnávka\nTrnávke\nTrnávku\nTrnávky\ntrnavský\ntŕne\nTŕne\ntŕni\nTŕni\ntrnie\nTrnie\ntrniem\ntrnieme\ntrnieš\ntrniete\ntŕnie\ntŕnik\ntrnina\ntrninou\ntŕnistý\ntŕnitý\ntŕň\ntrnka\nTrnkov\nTrnkova\ntrnkový\ntrnkový\ntrňme\ntŕňmi\ntŕňoch\ntŕňom\ntŕňov\nTrnová\nTrnovca\nTrnovci\nTrnovcom\nTrnovec\ntŕňovité\nTrnovo\nTrnovom\nTrnovský\ntŕňový\ntrňte\ntŕňu\nTŕňu\ntrnúť\ntrockistickú\ntrockistu\ntrockizmus\ntrofej\ntrofejný\ntrofejový\ntroficita\ntrofický\ntrofika\ntrofizmus\ntrofoblast\ntrofocyt\ntrofofyl\ntrofochromatín\ntrofomorfóza\ntrofonómia\ntrofopatis\ntrofoplast\ntrofoplazma\ntrofosporofyl\ntrog\ntroglobiont\ntroglodyt\ntrogón\ntroch\ntrôch\ntrocha\ntrochách\ntrochám\ntrochami\ntrochár\ntrochárčiť\ntrochária\ntrocháriac\ntrocháril\ntrochárila\ntrochárili\ntrochárilo\ntrochárim\ntrochárime\ntrocháriš\ntrocháriť\ntrochárite\ntrochárme\ntrochársky\ntrochársky\ntrochárstvo\ntrochárte\ntrocha\ntrochej\ntrochejský\ntrochoida\ntrochu\nTroika\ntroilit\ntroj\nTrója\ntrojačka\ntrojako\ntrojakosť\ntrojaký\ntrojan\nTrójan\nTrójana\nTrójania\nTrójanmi\nTrójanov\ntrojbloku\ntrojbodový\ntrojbojár\ntrojbojárka\ntrojbojársky\ntrojboj\ntrojboký\ntrojcentimetrový\ntrojcestný\ntrojciferný\nTrojcípa\ntrojcípej\ntrojcípou\ntrojča\ntrojčiat\ntrojčiatko\ntrojčiatok\ntrojčíslie\ntrojčlenka\ntrojčlenný\ntrojdecový\ntrojdenný\ntrojdielnosť\ntrojdielny\ntrojdimenzionálny\ntrojdňový\ntrojdohoda\ntrojdohode\ntrojdohodou\ntrojdohodu\ntrojdohody\ntroje\nTróje\ntrojetážovú\ntrojfarebný\ntrojfarebný\ntrojfázovo\ntrojfázovosť\ntrojfázový\ntrojhlasne\ntrojhlasný\ntrojhran\ntrojhranný\ntrojhviezdičkový\ntrojchodová\nTróji\ntrojica\ntrojičiek\ntrojičky\ntrojičný\ntrojito\ntrojitosť\ntrojitý\ntrojizbový\ntrojjazyčne\ntrojjazyčnosť\ntrojjazyčný\ntrojjedinosť\ntrojjedinosti\ntrojjediný\ntrojkár\ntrojkárka\ntrojka\ntrojkilometrový\ntrojkilová\ntrojklaný\ntrojkolesový\ntrojkoliesok\ntrojkolka\ntrojkolový\ntrojkombinácia\ntrojkombináciách\ntrojkombináciu\ntrojkorunový\ntrojkový\ntrojkráľový\ntrojkrídlový\ntrojlístok\ntrojlistový\ntrojlistý\ntrojlitrový\ntrojloďovej\ntrojmedzia\ntrojmesačný\ntrojmestie\ntrojmetrový\ntrojmiestny\ntrojmiliónový\ntrojminútový\ntrojmo\ntrojmocnina\ntrojmocný\ntrojmotorové\ntrojnásobne\ntrojnásobný\ntrojnásobok\ntrojnohý\ntrojnožka\ntrojnožkový\ntrojný\ntrojosový\nTrójou\ntrojpätinový\ntrojperccentný\ntrojpercentný\ntrojpočetný\ntrojpodlažný\ntrojpólový\ntrojposchodový\ntrojposteľovej\ntrojposteľových\ntrojposteľovými\ntrojramennú\ntrojriadkový\ntrojročnice\ntrojročnici\ntrojročniciach\ntrojročný\ntrojrohý\ntrojrozmerne\ntrojrozmernosť\ntrojrozmerný\ntrójska\ntrójske\ntrójskeho\ntrójskej\ntrojskokan\ntrojskokana\ntrojskokanský\ntrojskok\ntrójskom\ntrójsku\ntrójsky\ntrójskych\ntrójskym\ntrójskymi\ntrojslabičný\ntrojslovnými\ntrojsmenný\ntrojspev\ntrojspolku\ntrojsťažňová\ntrojstenný\ntrojstopové\ntrojstopového\ntrojstovka\ntrojstránkový\ntrojstranne\ntrojstranný\ntrojstranový\ntrojstretnutí\ntrojstretnutia\ntrojstretnutie\ntrojstretnutím\ntrojstup\ntrojstupňovo\ntrojstupňový\ntrojstý\ntrojsýtna\ntrojsýtny\ntrojštvrťový\ntrojtisícový\ntrojtonovka\ntrojtonový\ntrojtriednej\ntrojtýždenný\ntrojtýždňový\nTróju\ntrojuhol\ntrojuholníček\ntrojuholníčka\ntrojuholníčkami\ntrojuholníčkoch\ntrojuholníčkom\ntrojuholníčkov\ntrojuholníčku\ntrojuholníčky\ntrojuholník\ntrojuholníkovitý\ntrojuholníkový\ntrojvalca\ntrojvalce\ntrojvalci\ntrojvalcom\ntrojvalcov\ntrojvalcový\ntrojvalec\ntrojvariantnú\ntrojvláknový\ntrojvodičový\ntrojvrstvový\ntrojvršie\ntrojzáprah\ntrojzáprahu\ntrojzmenný\ntrojzubá\ntrojzubca\ntrojzubcom\ntrojzubec\ntrojzubou\ntrojzubých\ntrojzväzkový\ntrokar\ntroktolit\ntrolejbusa\ntrolejbus\ntrolejbusový\ntrolej\ntrolejový\ntroll\ntrom\ntroma\ntrombami\ntrombe\ntrombektómia\ntrombikulóza\ntrombín\ntromboangitída\ntromboarteritída\ntrombocyt\ntrombocytopénia\ntrombocytóza\ntromboflebitída\ntrombogén\ntromboch\ntrombolýza\ntrombom\ntrombón\ntrombonista\ntrombonistka\ntrombopatia\ntrombopénia\ntrombov\ntrombóz\ntrombózach\ntrombózam\ntrombóza\ntrombu\ntrombus\ntromby\ntromfa\ntromfami\ntromf\ntromfnúť\ntromfnutý\ntromfovať\ntromfový\ntromfuje\ntromfujú\ntromi\ntromp\ntrona\ntrón\ntróniaca\ntróniaceho\ntróniaci\ntróniť\ntrónny\ntrop\ntropán\ntróp\ntropeum\ntropický\ntropikalizácia\ntropikalizácie\ntropikalizáciu\ntropiko\ntropín\ntropizmus\ntropofyt\ntropopauza\ntroposféra\ntroposkop\ntropotaxia\ntroppo\ntropus\ntrópy\ntroskármi\ntroska\ntroskocú\ntroskotá\ntroskotajú\ntroskotať\ntroskový\ntrosky\ntrošička\ntrošíčka\ntrošičku\ntrošíčku\ntrošilinka\ntrošilinku\ntrošinka\ntrošinku\ntroškár\ntroškáriť\ntroškárska\ntroškársky\ntroška\ntrot\ntrotu\ntrôv\ntrova\ntroviť\ntrovný\ntroyská\ntroyskú\ntroyských\ntrp\ntrpácky\ntrpáčka\ntrpák\ntrpaslíctvach\ntrpaslíctvam\ntrpaslíctvo\ntrpaslíček\ntrpaslíčia\ntrpaslíčie\ntrpasličí\ntrpaslíčka\ntrpaslíčkami\ntrpaslíčkoch\ntrpaslíčkom\ntrpaslíčkov\ntrpaslíčkovi\ntrpaslíčkovia\ntrpaslík\ntrpčina\ntrpenia\ntrpenie\ntrpený\ntrpezlivo\ntrpezlivosť\ntrpezlivý\ntrpiaci\ntrpieť\ntrpievať\nTrpín\ntrpiteľ\ntrpiteľka\ntrpiteľsky\ntrpiteľský\ntrpiteľstvo\ntrpkasto\ntrpkastý\ntŕpka\ntrpkejšíF\ntrpko\ntrpkosť\ntŕpkový\ntrpký\ntrpne\ntrpnosť\ntŕpnuť\ntrpný\ntrpom\ntrs\ntrsk\nTrsťany\ntrsť\ntrstenica\ntrstenička\nTrsteník\ntrstenská\ntrstenskej\ntrstenských\nTrstenský\ntrstený\ntrstickej\ntŕstie\ntrstín\nTrstína\ntrstina\nTrstíne\nTrstínom\ntrstinový\nTrstínskej\ntrsťový\ntrt\ntrtáč\ntrtáčový\ntrtko\ntrtúliť\ntrubač\ntrubadúr\ntrubadúrsky\ntrúbach\ntrúbam\ntrúba\ntrúbeľka\ntrúbenia\ntrúbenie\ntrúbením\ntrubica\ntrubicový\ntrubička\ntrubičkové\ntrúbievať\nTrubín\ntrubiroh\ntrúbiť\ntrubka\ntrubkár\ntrúbkár\ntrubkárka\ntrubkársky\ntrúbka\ntrúbkovitý\ntrubkový\ntrúbkový\ntruboagregát\ntrúc\ntruc\ntruck\ntrucker\ntrucoš\ntrucovaní\ntrucovanie\ntrucovaniu\ntrucovať\ntrucovito\ntrucovitosť\ntrucovitý\ntrud\ntrúda\ntrúd\ntrúdi\ntrudiť\ntrudnatý\ntrudne\ntrúdnik\ntrudno\ntrudnomyseľne\ntrudnomyseľnosť\ntrudnomyseľný\ntrudnosť\ntrudný\ntrúdovi\ntrudu\ntrúfalec\ntrúfalejší\ntrúfalosť\ntrúfalý\ntrúfanlivo\ntrúfanlivosť\ntrúfanlivý\ntrúfať\ntrúfnuť\ntruhál\ntruhiel\ntruhlár\ntruhlársky\ntruhlársky\ntruhlárstvach\ntruhlárstvam\ntruhlárstvo\ntruhlátstvo\ntruhla\ntruhlica\ntruhlička\nTruhlík\ntruhlíkom\ntruhlový\ntruhozelený\nTrúchla\nTrúchleho\nTrúchlemu\ntrúchlenie\ntrúchliaci\ntrúchliacim\ntrúchliť\ntrúchlivo\ntrúchlivosť\ntrúchlivý\ntrúchlodumný\ntrúchlohra\ntrúchlospev\ntrúchly\nTrúchlym\ntrúchnatieť\ntrúchnivenie\ntrúchnivieť\ntrúchnivý\ntruizmus\ntruľko\ntruľo\ntrumf\ntrumfovaniu\ntrundžiť\ntrúnok\ntrúp\ntrup\ntrupový\ntrus\ntrusirérka\ntrúsiť\nTruska\ntruskavý\ntrusky\ntrusový\ntrust\ntrustmi\ntrustový\ntrušťať\ntruštiť\nTrutnov\nTrutnova\nTrutnove\nTrutnovom\ntrutnovský\ntruvér\ntrvácejšej\ntrvácejší\ntrvácejšia\ntrvácejšie\ntrvácejšieho\ntrvácejšiemu\ntrvácejších\ntrvácejším\ntrvácejšími\ntrvácejšiu\ntrvácejšom\ntrvácejšou\ntrvacie\ntrváci\ntrvácnejšíF\ntrvácne\ntrvácnosť\ntrvácny\ntrvajúci\ntrvale\ntrvalejšej\ntrvalejší\ntrvalejšia\ntrvalejšie\ntrvalejšieho\ntrvalejšiemu\ntrvalejších\ntrvalejším\ntrvalejšími\ntrvalejšiu\ntrvalejšom\ntrvalejšou\ntrvalka\ntrvalkový\ntrvalo\ntrvalosť\ntrvalý\ntrvanie\ntrvanlivo\ntrvanlivosť\ntrvanlivý\ntrvaný\ntrvať\ntrvávajú\ntrvávala\ntrvrdý\ntrypanozóma\ntrypanozomiáza\ntrypsín\ntryptofán\ntryská\ntryskaj\ntryskajú\ntryskajúce\ntryskajúci\ntryskajúcou\ntryskal\ntryskala\ntryskali\ntryskalo\ntryskanie\ntryskáš\ntryskať\ntryska\ntrysk\ntryskový\ntrýzeň\ntryzien\ntrýzňach\ntrýzňam\ntryzna\ntrýznenia\ntrýznenie\ntrýznenom\ntrýzniteľ\ntrýzniteľom\ntrýzniteľov\ntrýzniteľovi\ntrýzniť\ntrýznivo\ntrýznivý\ntržba\ntržbový\ntržisko\ntŕžiť\ntržne\ntržnica\ntržnicový\nTržničné\ntržný\nTS\ntse\ntsuga\ntsumebit\ntsunami\nTT\ntu\ntú\ntuan\ntúb\ntuba\ntubektómia\ntubekulózny\ntuber\ntuberách\ntuberák\ntuberám\ntuberami\ntubera\ntuberín\ntuberkulid\ntuberkulín\ntuberkulotička\ntuberkulotik\ntuberkulóz\ntuberkulózach\ntuberkulózam\ntuberkulóza\ntuberkulózny\ntuberóza\ntubička\ntubier\ntubokurarín\ntuboovaritída\ntubulárny\ntubulus\ntubus\ntubusový\ntucetkrát\ntucet\ntucta\ntuctovo\ntuctovosť\ntuctový\ntučiek\ntučiť\ntučká\ntučkách\ntučkám\ntučko\ntučnastý\ntučnejší\ntučne\ntučniak\ntučniaky\ntučnieť\ntučnosť\ntučnôt\ntučnotách\ntučnotám\ntučnotami\ntučnota\ntučnučko\ntučnučký\ntučnulinko\ntučnulinký\ntučnunko\ntučnunký\ntučný\ntučosť\ntudlikať\nTudor\nTudorom\ntudorovské\ntudorovským\nTudory\ntuf\ntufový\ntufur\ntugra\ntugrik\ntúh\nťuh\nťuha\ntúhach\nťuhaj\nťuháj\nťuhaja\ntúham\nTuhárska\nTuhárske\nTuhárskom\ntuha\ntúha\ntuhľa\ntuhnúce\ntuhnúceho\ntuhnúci\ntuhnúcich\ntuhnúcu\ntuhnutia\ntuhnutie\ntuhnúť\ntuho\ntuhobelasý\ntuhočervený\ntuhočierny\ntuhomodrý\ntuhoružový\ntuhosť\ntuhový\ntuhozelený\ntuhozelený\ntuhučký\nťuhuj\ntuhý\ntucha\ntuchnúť\nTuchyňa\nTuchyňu\ntúj\nťuj\ntujach\ntujam\ntuja\ntují\nťuk\ntúka\ntukan\nťukania\nťukanie\nťukaním\ntukať\ntúkať\nťukať\ntuk\ntuknúť\nťuknutie\nťuknutím\nťuknúť\ntukosť\ntukované\ntukovaní\ntukovanie\ntukovanými\nTukove\ntukovo\ntukovosť\ntukový\nTÚL\ntulácky\ntuláctvach\ntuláctvam\ntuláctvo\ntúlačka\ntúlačkách\ntuláčka\ntuľajka\ntulák\ntuľaľa\ntúlaní\ntúlanie\ntúlanka\ntularémia\ntúlať\ntúlavať\ntúlavo\ntúlavosť\ntúlavý\nTulčík\nTulčíka\nTulčíku\ntulec\ntúlení\ntúlenie\ntulení\ntuleň\ntuleňou\ntuleňovi\nTulia\ntúliaceho\ntulikať\ntulipán\ntulipánový\ntúliť\ntúlium\ntúlka\ntuľkať\nťulpas\ntulský\ntulu\ntumba\ntumbler\ntumefakcia\ntumescencia\ntumor\ntumorový\ntumult\ntumultuoso\ntumulus\nTuna\ntuná\ntunách\ntunajší\ntundra\ntundrový\nTune\ntunela\ntunelár\ntunelárka\ntunelárska\ntunelárske\ntunelárskeho\ntunelárskej\nTunelárski\ntunelárskom\ntunelárskou\ntunelársku\ntunelársky\ntunelárskych\ntunelárskym\ntunel\ntunelíkov\ntunelíky\ntunelmi\ntunelovacej\nTunelovací\ntunelovacia\ntunelovacie\ntunelovacieho\ntunelovacích\ntunelovacím\ntunelovacími\ntunelovaciu\ntunelovacou\ntuneloval\ntunelovala\ntunelovali\ntunelovalo\ntunelovaní\ntunelovania\ntunelovanie\ntunelovaním\ntunelovaniu\ntunelovať\ntunelovo\ntunelový\ntuneluj\ntuneluje\ntunelujem\ntunelujeme\ntuneluješ\ntunelujete\ntunelujme\ntunelujte\ntunelujú\ntunelujúc\ntuner\nTunežice\ntunguz\ntunguzský\ntuniačí\ntuniak\ntuniaky\ntunicella\ntunika\nTunis\nTunisan\nTunisanka\nTunise\nTunisko\ntuniský\nTunisom\nTunisu\nTunka\ntunu\ntuny\ntuodtiaľ\ntupák\ntupáň\nťupať\ntupec\ntupejšej\ntupejší\ntupejšia\ntupejšie\ntupejšieho\ntupejšiemu\ntupejších\ntupejším\ntupejšími\ntupejšiu\ntupejšom\ntupejšou\ntupené\ntupenie\nTupi\ntupieť\ntupievať\ntupírovať\ntupiteľ\ntupiť\nťupkať\ntupo\ntupohlavý\ntuposť\ntupouhlý\ntupšom\ntupý\ntúr\nTurá\ntúrach\nturák\nTurákom\ntúram\nTuranoch\nTuranom\nTurany\nturasy\ntúra\nturbácia\nturban\nturbelencií\nturbín\nturbínach\nturbínam\nturbína\nturbínový\nturboagregát\nturboagregátmi\nturboagregátový\nturboalternátor\nturbogenerátor\nturbogenerátorový\nturbokompresor\nturbokompresorový\nturbomotor\nturbomotormi\nturbomotorom\nturbomotorov\nturbomotory\nturboreaktor\nturboreaktorový\nturbot\nturbovať\nturbovrtuľový\nturbulencia\nturbulentný\nTurca\nTurci\nTurcom\nTurcu\nturčecký\nTurček\nTurčeka\nTurčeku\nTurčianky\nTurčianska\nTurčianske\nturčianskeho\nTurčianskej\nturčianskemu\nTurčianski\nturčianskom\nturčianskoteplická\nturčianskoteplického\nturčianskoteplickej\nTurčianskoteplickí\nTurčiansku\nTurčiansky\nTurčianskych\nTurčianskym\nTurčianskymi\nTurčok\nTurecko\nturecky\nturecký\nturečtina\nturej\nTurek\nTureň\nturf\nTurf\nturfu\nturí\nTurian\nTurianska\nturianskeho\nturianskej\nTuriansky\nturianskych\nTuríc\nturica\nTurice\nTuríce\nTuriciach\nTuriciam\nturičný\nturíčny\nturie\nTuriec\nturích\nTurík\nTurín\nTurínčan\nturingit\nTurínka\nturínsky\nturínsky\nturist\nturista\nturisticky\nturistický\nturistika\nturistka\nturistova\nturistovej\nturizmus\nturk\nTurka\nturkmén\nTurkmén\nTurkménka\nTurkménsko\nturkménsky\nturkménsky\nturkotatárske\nturkotatársky\nturkotatárskym\nTurkovi\nTurkyňa\ntur\nturmalín\nturmalinit\nturmon\nturňa\nturnaj\nturnajový\nTurne\nturné\nTurni\nturniket\nTurňou\nTurnov\nTurnova\nTurnove\nTurnovom\nturnovskej\nTurnovský\nTurnu\nTurňu\nturnus\nturnusovo\nturnusový\nturon\nTuroň\nTuroňa\nturou\nTurová\ntúrovať\nTurú\nturul\nTurzovka\nTurzovke\nTurzovkou\nTurzovku\nTurzovky\nturzovskej\nturzovskí\nTurzovský\ntusikácia\nTuskulum\ntuše\ntušenie\ntušený\ntuši\ntušiacich\nTušická\ntušievať\ntušiť\ntuš\ntušmi\ntušoch\ntušom\ntušov\ntušovať\ntušový\ntušu\nTutá\nťuťko\ntutlanie\ntutlaný\ntutlať\nťuťmácky\nťuťmáčik\nťuťmáčka\nťuťmák\nťuťmavý\ntuto\ntúto\nťuťo\ntutohľa\ntútor\ntútorka\ntútormi\ntútorsky\ntútorský\ntútorstvo\ntutovka\ntutú\ntutúkať\nťuťúkať\ntutulus\ntutvetit\nTuvalu\ntuvička\ntuvon\ntúza\ntúz\ntuzem\ntuzemca\ntuzemcami\ntuzemci\ntuzemcoch\ntuzemcom\ntuzemcov\ntuzemcovi\ntuzemec\ntuzemsko\ntuzemský\ntuzex\ntuzexový\ntúžaba\ntúžava\ntúžba\ntúže\ntužel\ntuženia\ntuženie\ntúžený\ntúžiaca\ntúžiace\ntúžiaceho\ntúžiacej\ntúžiacemu\ntúžiaci\ntúžiacich\ntúžiacim\ntúžiacu\ntužidlo\ntužidlový\ntužieť\ntúžieva\ntúžievaj\ntúžievajme\ntúžievajte\ntúžievajú\ntúžievajúc\ntúžieval\ntúžievala\ntúžievali\ntúžievalo\ntúžievam\ntúžievame\ntúžievaš\ntúžievať\ntúžievate\ntužina\ntužiť\ntúžiť\ntužkáreň\ntužkársky\ntužka\ntužkový\ntužný\ntužoba\ntúžobne\ntúžobný\nTV\ntvárach\ntváram\ntvar\ntvár\ntvárenia\ntvárenie\ntvárička\ntváriť\ntvárlivosť\ntvárlivý\ntvárnenia\ntvárnenie\ntvárnením\ntvárnený\ntvárne\ntvárniaci\ntvárnic\ntvárnica\ntvárnicová\ntvárnicové\ntvárnicových\ntvárniť\ntvárnosť\ntvárny\ntvaroh\ntvarohovník\ntvarohovo\ntvarohový\ntvaroslovie\ntvaroslovný\ntvarovací\ntvarovane\ntvarovanie\ntvarovaný\ntvarovať\ntvarovka\ntvarovo\ntvarový\ntvárový\nTvarožec\ntvarôžka\ntvarôžkami\ntvarôžkoch\ntvarôžkom\ntvarôžkov\nTvarožkova\ntvarôžku\ntvarôžky\nTvarožná\ntvarožník\ntvarôžok\ntvarý\ntvíd\ntvídový\ntvil\ntviliský\ntvoj\ntvoja\ntvoje\ntvojej\ntvojho\ntvoji\ntvojich\ntvojim\ntvojím\ntvojimi\ntvojmu\ntvojo\ntvojom\ntvojou\ntvoju\ntvor\ntvorba\ntvorca\ntvorcových\ntvorcovými\ntvorček\ntvorčekovi\ntvorčekovia\ntvorenie\ntvorený\ntvoriaci\ntvoriaci\ntvoriteľ\ntvoriť\ntvorivo\ntvorivosť\ntvorivý\ntvorkyňa\ntvorovi\ntvorovia\ntvorstvo\ntvorte\ntvrda\ntvrďasi\ntvrde\ntvrdenie\ntvrdený\ntvrdi\ntvrdiace\ntvrdiak\ntvrdievať\ntvrdiť\ntvrdnutí\ntvrdnutia\ntvrdnutie\ntvrdnutiu\ntvrdnúť\ntvrdo\ntvrdohlavci\ntvrdohlavec\ntvrdohlavo\ntvrdohlavosť\ntvrdohlavý\ntvrdomerov\ntvrdosť\ntvrdošijne\ntvrdošijnosť\ntvrdošijný\nTvrdošín\nTvrdošíne\nTvrdošínska\nTvrdošínske\ntvrdošínskeho\nTvrdošínskej\ntvrdošínski\nTvrdošínskom\nTvrdošínsku\ntvrdošínsky\nTvrdošínskych\nTvrdošínu\ntvrdošovskom\ntvrdší\ntvrdý\ntvrdý\nTvrdz\ntvŕdzach\ntvŕdzam\ntvrdza\ntvŕdza\ntvrdzí\ntvŕdzí\ntweed\ntweedového\nTWh\ntwill\ntwinset\ntwinsetmi\ntwinsetov\ntwinsety\ntwist\ntwistový\nty\nTÝ\ntybing\ntyč\ntýčiaca\ntýčiace\ntýčiaci\ntyčinka\ntyčinkový\ntýčiť\ntyčka\ntyčkový\ntyčovinou\ntyčovinu\ntyčový\ntýdenník\ntyflológia\ntyflopedagogika\ntyflopedie\ntyflóza\ntyfóm\nTýfu\ntýfus\ntýfusový\ntých\ntýchto\ntýchže\ntykadlo\ntykajúcej\ntykajúci\ntýkajúci\ntykajúcu\ntykanie\ntykať\ntýkať\ntýl\nTýl\ntyl\ntylmi\ntylo\ntyloma\nTylovo\ntylový\ntylóza\ntylozín\ntým\ntými\ntymián\ntymian\ntymianový\ntymín\ntýmito\ntýmiže\ntymol\ntymopatia\ntymovírus\ntympan\ntympania\ntympanofónia\ntympanon\ntympanoplastika\ntympanotómia\ntympanový\ntýmto\ntýmus\ntýmuse\ntýmusmi\ntýmusoch\ntýmusom\ntýmusov\ntýmusový\ntýmusu\ntýmusy\ntýmže\ntyndalizácia\ntýnsky\ntýpať\ntyp\ntypes\ntypickosť\ntypicky\ntypický\ntypizácia\ntypizačný\ntypizovaním\ntypizovaný\ntypizovať\ntypogr\ntypograf\ntypografia\ntypograficky\ntypografický\ntypografka\ntypológ\ntypológia\ntypologicky\ntypologický\ntypovacieho\ntypovanie\ntypovaný\ntypovať\ntypovo\ntypovosťou\ntypový\ntypujúci\ntypus\ntyran\ntyrania\ntýranie\ntyranizmus\ntyranizovať\ntyranka\ntyranosaurus\ntyranov\ntyransky\ntyranský\ntyranský\ntyranstvo\ntýraný\ntýrať\ntýrať\ntýravý\ntyreogénny\ntyreoglobulín\ntyreoidea\ntyreoidektómia\ntyreoiditída\ntyreoiditis\ntyreológia\ntyreotoxikóza\ntyreotropín\ntyreóza\ntyrfobiont\ntyristor\ntyrkys\ntyrkysovo\ntyrkysový\ntyrolienna\ntyroxín\ntyrozín\ntyrozinúria\ntyrranský\ntýž\ntýžd\ntýždeň\ntýždenne\ntýždennícky\ntýždenníctvach\ntýždenníctvam\ntýždenníctvo\ntýždenníčka\ntýždenníčka\ntýždenník\ntýždenník\ntýždenný\ntýždne\ntýždňov\ntýždňoviek\ntýždňovkách\ntýždňovky\ntýždňový\ntzn\ntzv\nu\nú\nÚ\nubabraný\nubabrať\nubabre\nubabrem\nubabreme\nubabreš\nubabrete\nubabri\nubabrime\nubabrite\nubabrú\nubabrúc\nubehávať\nubehlíci\nubehlík\nubehlíkom\nubehlíkov\nubehnutie\nubehnúť\nubehnutý\nubehovať\nubehúvať\núbeľ\núbeľmi\núbeľoch\núbeľom\núbeľov\núbeľovo\núbeľový\núbeľu\nuber\nuberanie\nuberaním\nuberaný\nuberať\nuberie\nuberiem\nuberieme\nuberieš\nuberiete\nuberme\nuberte\nuberú\nuberúc\nubezpečenia\nubezpečeniach\nubezpečeniam\nubezpečeniami\nubezpečenie\nubezpečením\nubezpečeniu\nubezpečený\nubezpečiť\nubezpečovanieN\nubezpečovaný\nubezpečovať\nubi\nubiedene\nubiedenosť\nubiedený\nubiehajúce\nubiehajúcich\nubiehať\nubíjač\nubíjačka\nubíjadlo\nubíjajúci\nubíjanie\nubíjaný\nubíjať\nubije\nubijem\nubijeme\nubiješ\nubijete\nubijú\nubijúc\nubikácia\nubikvist\nubikvita\nubime\nubite\nubiť\nubitie\nubitý\nUbľa\nUble\nublednutý\nUbli\nUblianskej\nublianskom\nublížene\nublíženie\nublížený\nublížiť\nubližovať\nUbľou\nUbľu\núboč\núbočie\núbočina\nubodať\núbohejší\núboho\núbohosť\núbohu\núbohučký\núbohý\nuboľavený\nubolene\nuboleno\nubolenosť\nubolený\nubolestený\núbor\núboža\núbožiačik\núbožiačka\núbožiak\núbožiatko\núbožiatok\nubral\nubrala\nubrali\nubralo\nubránené\nubrániť\nubraných\nubrať\nÚbrež\nubrnknúť\nubtovací\nubúdajúci\nubúdania\nubúdanie\nubúdaním\nubúdaniu\nubúdať\nubudnutím\nubudnúť\núbudok\núbytkový\núbytok\nubytovací\nubytovane\nubytovanie\nubytovaný\nubytovateľ\nubytovateľa\nubytovatelia\nubytovateľmi\nubytovateľom\nubytovateľov\nubytovateľovi\nubytovať\nubytovávať\nubytovňa\nubytovné\nubytovného\nubytovnému\nubytovní\nubytovnom\nubytovným\nubytúvať\nubziknúť\nucápať\nucapkaný\nucapkať\nucelene\nuceleniu\nucelenosť\nucelený\nUCI\nucítiť\nUCK\núct\núctach\núctam\núctami\núctaN\nuctenie\nuctením\nucti\nuctievač\nuctievačov\nuctievajúceho\nuctievajúci\nuctievajúcich\nuctievanie\nuctievaný\nuctievateľ\nuctievať\nuctime\nuctite\nuctiť\núctivo\núctivosť\núctivý\núctyhodne\núctyhodnosť\núctyhodný\núctyplný\nucundraný\nucúvnuť\nučadený\nučankať\nučaril\nučarila\nučariť\nučarovať\nučarúvať\núčastín\núčastinár\núčastinárka\núčastinársky\núčastinársky\núčastina\núčastinný\núčastiný\núčasť\núčastlivý\núčastne\núčastni\núčastnícky\núčastníčka\núčastník\núčastníkova\núčastníkovho\núčastníkovu\núčastniť\núčastnosti\núčastný\nučastovať\nučebňa\nučebnica\nučebnicovo\nučebnicový\nučebno\nučebňové\nučebný\núčel\núčele\núčelmi\núčelne\núčelnosť\núčelný\núčelove\núčelovo\núčelovosť\núčelový\nučeň\nučenec\nučenecky\nučenecký\nučene\nučeníctva\nučenie\nučeník\nučenlivo\nučenlivosť\nučenlivý\nučenosť\nučený\nučesane\nučesaný\nučesať\núčes\núčesový\núčet\nučiaca\nučiace\nučiacej\nučiaci\nučiacich\nučiacim\nučiacimi\nučiacu\nučičíkaná\nučičíkanie\nučičíkať\nučičíkavanie\nučierniť\nučievať\nučilísk\nučilisko\nučilíšť\nučilišťa\nučilišťami\nučilište\nučilišti\nučilišťom\nučilišťu\núčin\nučinenia\nučinenie\nučinením\nučinený\nučiniť\núčinkovanie\núčinkovať\núčinkový\núčinkujúci\núčinne\núčinnosť\núčinný\núčinok\nučiteľ\nučitelík\nučiteľka\nučiteľoval\nučiteľovala\nučiteľovali\nučiteľovalo\nučiteľovania\nučiteľovanie\nučiteľovať\nučiteľovho\nučiteľovo\nučiteľsky\nučiteľský\nučiteľstvo\nučiteľu\nučiteľuj\nučiteľuje\nučiteľujem\nučiteľujeme\nučiteľuješ\nučiteľujete\nučiteľujme\nučiteľujte\nučiteľujú\nučiteľujúc\nučiť\nučív\nučivo\nučľapkaný\nučleniť\nučlovečiť\nučmudený\nučňa\nučňami\nučni\nučnica\nUčník\nUčníka\nUčníkom\nučňoch\nučňom\nučňov\nučňovi\nučňovka\nučňovský\nUčňových\núčt\nučtáreň\nučtárenský\nučtárňach\nučtárňam\núčtenka\núčtovacej\núčtovací\núčtovacia\núčtovacie\núčtovacieho\núčtovacích\núčtovacím\núčtovacími\núčtovaciu\núčtovaco\núčtovacom\nÚčtovacou\núčtovane\núčtovania\núčtovaniach\núčtovaniam\núčtovaniami\núčtovaním\núčtovaniu\núčtovaný\núčtovateľ\núčtovateľa\núčtovateľom\núčtovať\núčtove\núčtovne\núčtovnícky\núčtovníctvach\núčtovníctvam\núčtovníctvo\núčtovníčka\núčtovník\núčtovno\núčtovný\núčtovo\núčtový\núčtujúci\nučubraný\nučudovaný\nučúchnuť\nučupená\nučupene\nučupené\nučupenom\nučupiť\nučušať\nUda\núdaj\nudajne\núdajne\nudajný\núdajný\núdajový\nudalosť\nudanie\nudaný\nudať\nudatnejšieho\nudatnejší\nudatne\nudatnosť\nudatný\nudávač\nudavač\nudavačka\nudavačský\nudavačstvo\nudávajúca\nudávajúci\nudávane\nudávania\nudávanie\nudávaniu\nudávaný\nudávať\nUdavské\núd\nUde\núdel\núdele\nudelene\nudelenie\nudelený\nudeliť\núdelmi\nudeľovanie\nudeľovaný\nudeľovať\núdenáč\núdenár\núdenársky\núdenársky\núdenárstvach\núdenárstvam\núdenárstvo\núdenia\núdenie\núdením\núdenina\núdeniu\núdený\nuder\núder\nuderenie\nuderiť\núderka\núderne\núderníci\núdernícky\núderníctvo\núderníčka\núderník\núderníkovi\núdernosť\núderný\núderový\nuderte\núdes\núdesnou\núdiaci\nudiareň\nudiarňach\nudiarňam\nudiati\nudiať\nudica\nudicový\nUdiča\nUdiči\nudička\nudierať\núdievať\núdik\nUdine\núdiť\núdiv\núdive\nudivene\nudivením\nudivený\nudiviť\nudivovať\nudivujúci\nudlabči\nudlabčime\nudlabčite\nudlabčiť\nudlabkať\nudlapči\nudlapčime\nudlapčite\nudlapčiť\nudlapkať\nudláviť\nuďobe\núdobie\nudobrená\nudobrenie\nudobriť\nudobrovať\nÚdol\nudolieť\núdolie\núdolný\nudomácnenia\nudomácnenie\nUdomácnením\nudomácneniu\nudomácnený\nudomácniť\nudomácňovania\nudomácňovanie\nudomácňovaním\nudomácňovať\nudretie\nudretý\nudrieť\nudrúc\nudržanie\nudržaný\nudržateľne\nudržateľný\nudržať\núdržbár\núdržbárka\núdržbársky\núdržbársky\núdržbárstvach\núdržbárstvam\núdržbárstvo\núdržba\núdržbový\nudržiavací\nudržiavajúci\nudržiavajúcou\nudržiavanie\nudržiavaný\nudržiavaný\nudržiavateľ\nudržiavateľa\nudržiavateľom\nudržiavateľov\nudržiavať\nUdržovací\nudržovacia\nudržovacie\nudržovacími\nudržovaciu\nudržovane\nudržovania\nudržovanie\nudržovaním\nudržovaniu\nudržovaný\nudržovať\nudržujúca\nudržujúce\nudržujúcich\nudské\nudskú\nudup\nudupá\nudupaj\nudupajme\nudupajte\nudupajú\nudupajúc\nudupal\nudupala\nudupali\nudupalo\nudupám\nudupáme\nudupáš\nudupať\nudupáte\nudupáva\nudupávaj\nudupávajme\nudupávajte\nudupávajú\nudupávajúc\nudupával\nudupávala\nudupávali\nudupávalo\nudupávam\nudupávame\nudupávaš\nudupávať\nudupávate\nudupe\nudupem\nudupeme\nudupeš\nudupete\nudupkať\nudupme\nudupte\nudupú\nudupúc\nudusenie\nudusením\nuduseniu\nudusený\nudusiť\nudúšať\nudvihnúť\nudýchaný\nudýchať\nudychč\nudychčane\nudychčaný\nudychčať\nudychči\nudychčime\nudychčite\nued\nUEFA\nUF\núf\núfať\nufikaný\nufiknúc\nufiknúť\nufkať\núfnosť\nufňukanec\nufňukane\nufňukanosť\nufňukaný\nufológ\nufológia\nufologický\nufologička\nufo\nufón\nufrflane\nufrflaný\nufŕkaný\nufrknúť\nufrndžať\nufrngnúť\nufrnknúť\nufujazdi\nufujazdime\nufujazdite\nufujazdiť\nufúľanec\nufúľaný\nufúľať\nUganďan\nUganda\nugandský\nugniaviť\nugriloval\nugrilovala\nugrilovali\nugrilovalo\nugrilovať\nugriluj\nugriluje\nugrilujem\nugrilujeme\nugriluješ\nugrilujete\nugrilujme\nugrilujte\nugrilujú\nugrilujúc\nugrofín\nugrofínčina\nugrofinistika\nuháčkovať\nuhádané\nuhádnutia\nuhádnutie\nuhádnutím\nuhádnuť\nuhádnutých\nuhájení\nuhájiť\nuháňať\nuhasenia\nuhasenie\nuhasený\nuhasína\nuhasínajú\nuhasínaní\nuhasiteľný\nuhasiť\nuhasla\nuhasol\nuhášať\nUh\nUHČ\nUhe\nUherce\nUherciach\nUherecký\nUheriec\nuherskohradištskú\nuherskohradištských\nuhľa\nuhladene\nuhladenie\nuhladeno\nuhladenosť\nuhladený\nuhľadieť\nuhladiť\núhľadne\núhľadnosť\núhľadný\nuhládzať\nuhladzovania\nuhladzovanie\nuhladzovať\nuhľami\nuhlastý\núhlavný\nuhlená\nuhliak\nuhliar\nuhliarka\nUhliarovej\nuhliarsky\nuhliarsky\nuhliarstvach\nuhliarstvam\nuhliarstvo\nuhlíček\nuhličitan\nuhličitanový\nuhličitý\nuhlíčka\nuhlíčkami\nuhlíčkoch\nuhlíčkom\nuhlíčkov\nuhlíčku\nuhlíčky\nuhličnatým\nuhlie\nuhlíkatý\nuhlík\nuhlíkový\nuhlila\nuhliň\nUhlísk\nUhliská\nUhlisko\nUhlisku\nuhlistý\nuhľobarón\nuhľohydrát\nuhľohydrátmi\nuhľohydrátov\nuhľoch\nuhľokresba\nuhľom\nuhlomera\nuhlomer\nuhlomerný\nuhlopriečka\nuhlopriečne\nuhlopriečny\nuhľov\nuhľovočierny\nuhľovodany\nuhľovodík\nuhľovodíkový\nuhlový\nuhľový\nuhľu\nuhm\nuhmkať\nuhnaná\nuhnať\nuhniesť\nuhniezdenie\nuhniezdiť\nuhniličiť\nuhniličkať\nuhnutie\nuhnúť\nuhojený\nuhoľ\nuhoľnatý\nuhoľne\nuholnice\nuholník\nuholníkoch\nuholníkov\nuhoľníková\nuholníkovo\nuholníkový\nuholníky\nuholno\nuhoľno\nuholný\nuhoľný\nuhol\núhon\núhona\nuhoniť\núhor\nuhor\nUhor\nuhorčička\nuhoreli\nuhorený\nuhorí\nuhorieť\núhorí\núhoriť\nuhorka\nUhorka\nuhorkový\nÚhorná\núhorok\núhorova\núhorovanej\núhorovanie\núhorovi\núhorový\nUhorsko\nuhorský\núhorte\núhorujú\nuhospodáriť\nuhosti\nuhostime\nuhostite\nuhostiť\nuhovieť\nuhovor\nuhovorený\nuhovoriť\nuhovorte\nuhra\nUhra\nuhrá\nuhrabať\nuhrabávať\núhrada\nuhradenieN\nuhradený\nuhradiť\núhradový\nuhrádzania\nuhrádzanie\nuhrádzaním\nuhrádzaniu\nuhrádzaný\nuhrádzať\nuhradzovacej\nuhradzovacia\nuhradzovaciu\nuhradzovaná\nuhradzované\nuhradzovaní\nuhradzovania\nuhradzovanie\nuhradzovaním\nuhradzovaných\nuhradzovať\nuhraj\nuhrajme\nuhrajte\nuhrajú\nuhrajúc\nuhral\nuhrala\nuhrali\nuhralo\nuhrám\nuhráme\nuhrami\nuhraň\nuhrančivo\nuhrančivosť\nuhrančivý\nuhranie\nuhraniem\nuhranieme\nuhranieš\nuhraniete\nuhraňme\nuhraňte\nuhranúť\nuhranutý\nuhráš\nuhrať\nuhráte\nuhre\nuhriančiť\nuhriešený\núhrn\núhrnne\núhrnný\núhrnovej\nuhroch\nuhrom\nuhrov\nUhrovca\nUhrovci\nUhrovec\nuhrovitosť\nuhrovitý\nUhrovský\nuhru\nuhry\nUhry\nuhryz\nuhrýzať\nUhryznutému\nuhryznutie\nuhryznúť\nuhú\nuhúkať\nuhundraný\nuhýbania\nuhýbanie\nuhýbaných\nuhýbať\nuhýbavý\nuhyň\nuhýnať\núhyn\nuhynie\nuhyniem\nuhynieme\nuhynieš\nuhyniete\nuhyňme\nuhyňte\nuhynutie\nuhynutiu\nuhynúť\nuhynutý\nuch\núch\nuchádzač\nuchádzačka\nuchádzačovo\nuchádzajúcej\nuchádzajúci\nuchádzajúcich\nuchádzanie\nuchádzateľ\nuchádzať\nucháľ\nuchaňa\nucháň\nuchaní\nucháni\nuchlácholenie\nuchlácholiť\nuchlipkávať\nuchlipnúť\nuchmatnutie\nuchmatnúť\nuchnúť\nuchodiť\nucholak\nucholakovi\nucho\nuchopená\nuchopené\nuchopenie\nuchopiteľný\nuchopiť\nuchopovať\nUchopuje\nuchovania\nuchovanie\nuchovaním\nuchovaniu\nuchovaný\nuchovať\nuchovávajúci\nuchovávania\nuchovávanie\nuchovávaním\nuchovávaniu\nuchovávaný\nuchovávateľ\nuchovávateľa\nuchovávateľom\nuchovávať\nuchový\nuchránenia\nuchránenie\nuchránený\nuchrániť\nuchvacovanie\nuchvacovať\nuchvacujúca\nuchvacujúci\nuchvátenie\nuchvátený\nuchvatiteľ\nuchvatiteľka\nuchvatiteľský\nuchvátiť\núchvatne\núchvatnejšíF\núchvatnosť\núchvatný\núchylácky\núchyláčka\núchylák\núchylárka\nuchýlení\nuchýlenie\nuchýliť\núchylkár\núchylkárka\núchylkársky\núchylkársky\núchylkárstvach\núchylkárstvam\núchylkárstvo\núchylka\núchylkomery\núchylne\núchylnosť\núchylný\nUchyľovanie\nuchyľovať\nuchytenia\nuchytenie\nuchytením\nuchyteniu\nuchytený\núchytiek\nuchytiť\núchytka\núchytkami\núchytkom\núchytkou\núchytkový\núchytku\núchytky\núchytov\núchyty\nuchý\nuistene\nuistenia\nuisteniach\nuisteniam\nuisteniami\nuistenie\nuistením\nuisteniu\nuistený\nuisti\nuistime\nuistite\nuistiť\nuisťované\nuisťovanie\nuisťovaním\nuisťovať\nUj\nÚj\nujarmený\nujarmi\nujarmime\nujarmite\nujarmiť\nujarmovať\nujasnenia\nujasnenie\nujasnením\nujasneniu\nujasnenosť\nujasnený\nujasni\nujasnime\nujasnite\nujasniť\nujasňovaní\nujasňovania\nUjasňovanie\nujasňovať\nujatí\nujatiu\nujať\nujazdený\nujazdi\nujazdime\nujazdite\nujazdiť\nújazdov\nújazdu\nujcov\nujček\nujčiná\nujčinka\nujdený\nujdi\nujdime\nujdite\nujdú\nuje\nujec\nujedajúce\nujedať\nujednajú\nujednal\nujednáme\nujednaní\nujednania\nujednaniach\nujednaniami\nujednanie\nujednávajú\nujednával\nujednávala\nujednávané\nujednávaní\nujednávania\nujednávať\nujednotenie\nujednotený\nujednotiť\nujem\nujeme\nujesť\nújesť\nújesťami\nújesti\nújestí\nújestiach\nújestiam\nújesťou\nuješ\nujete\nujha\nujímať\nujko\nujm\nújm\nujmach\nujmách\nujmam\nujmám\nujmami\nujma\nujo\nujsť\nujú\nujujú\nujúkanie\nujúkať\nUK\nukájaní\nukájania\nukájanie\nukájať\nukameňovanie\nukameňovaný\nukameňovať\nukáša\nukaz\nukázanie\nukázaný\nukázateľný\nukázať\núkaz\nukáznenosťou\nukázňovať\nukazovací\nukazováčik\nukazovadlo\nukazovák\nukazovane\nukazovania\nukazovanie\nukazovaním\nukazovaniu\nukazovaný\nukazovatelia\nukazovateľ\nukazovateľmi\nukazovateľoch\nukazovateľom\nukazovateľov\nukazovateľovi\nukazovateľu\nukazovať\nukazujúci\nukážka\nukážkovo\nukážkový\nukecaný\nUKF\nukijoe\nukladací\nukladač\nukladače\nukladači\nukladane\nukladanie\nukladaný\nukladateľ\nukladateľa\nukladatelia\nukladateľmi\nukladateľom\nukladateľov\nukladateľovi\nukladať\núklad\núkladne\núkladnosť\núkladný\nukláňať\núklon\nuklonený\nukloniť\nuklonkovať\núklonová\nukľudňovania\nukľudňovať\nukĺznutie\nukĺznuť\nukojenie\nukojený\nukojiteľný\nukojiť\núkolár\núkolárka\núkol\nukolembaný\nukolembať\nukolísa\nukolísaním\nukolísaný\nukolísať\nukolísavať\nukolíšu\nukolíšuc\núkolovania\núkolovanie\núkolovaný\núkolovať\núkolovo\núkolový\nukoná\nukonal\nukonane\nukonania\nukonano\nukonanosť\nukonaný\nukonať\núkon\nukončene\nukončenie\nukončeno\nukončený\nukonči\nukončievajú\nukončime\nukončite\nukončiť\nUkončovací\nukončovacia\nukončovacie\nukončovacou\nukončovač\nukončovači\nukončovaní\nukončovania\nukončovať\nukončujúce\nukoňovať\núkor\nukoristenie\nukoristený\nukoristi\nukoristime\nukoristite\nukoristiť\núkosom\nukotvenia\nukotvenie\nukotvením\nukotvený\nukotvi\nukotví\nukotvia\nukotviac\nukotvil\nukotvila\nUkotvila\nukotvili\nukotvilo\nukotvím\nukotvime\nukotvíme\nukotvíš\nukotviť\nukotvite\nukotvíte\nuková\nukovať\nukr\nukracovania\nukracovanie\nukracovaniu\nukracovaný\nukracovať\núkradkom\núkradky\nukradnutie\nukradnúť\nukradnutý\nukradomky\nUkrajina\nukrajinčín\nukrajinčinách\nukrajinčinám\nukrajinčinami\nukrajinčinár\nukrajinčinárka\nukrajinčina\nUkrajinec\nUkrajinka\nukrajinsky\nukrajinský\nukrajovania\nUkrajovanie\nukrajovaním\nukrajovaniu\nukrajovaný\nukrajovať\nukrátenia\nukrátenie\nukrátením\nukráteniu\nukrátený\nukrátiť\nukŕčať\nukrčiť\nukrenkovať\nukričaný\nukričať\nukrivdene\nukrivdenia\nukrivdenosť\nukrivdený\nukrivdi\nukrivdime\nukrivdite\nukrivdiť\nukrivďovaní\nukrivďovať\nukrižovanie\nukrižovaný\nukrižovať\nukrkať\nukrkvať\nukrojenie\nukrojený\nukrojiť\núkrok\nukrúcať\nukrutánsky\nukrutánsky\nukrúteného\nukrútiť\nukrutne\nukrutnica\nukrutnícky\nukrutníctvach\nukrutníctvam\nukrutníctvo\nukrutník\nukrutnosť\nukrutný\núkryt\nukrytejší\nukrytie\nukrytím\núkrytmi\nukryto\nukryť\nukrytý\nukrývač\nukrývania\nukrývanie\nukrývaním\nukrývaný\nukrývať\nukuchtiť\nukulele\nukusovala\nukusuje\nukuté\nukuť\nukúvať\nukvapnúť\nukváriť\nukvasiť\nul\núľa\nuľahčene\nuľahčenie\nuľahčený\nuľahči\nuľahčime\nuľahčite\nuľahčiť\nuľahčovaná\nuľahčovanie\nuľahčovať\nuľahčujúci\nuľahnúť\nulahodiť\nuľakaný\núľak\nuľaknutý\nulakomiť\nulakomiť\nulakomovať\nulalgia\nulamoval\nulamovala\nulamovali\nulamovalo\nulamovať\nulamuj\nulamuje\nulamujem\nulamujeme\nulamuješ\nulamujete\nulamujme\nulamujte\nulamujú\nulamujúc\nulán\nÚľan\nUlánbátar\nUlánbátarčan\nulánbátarský\nÚľanoch\nÚľany\nulap\nulapenou\nulapí\nulapia\nulapiac\nulapil\nulapila\nulapili\nulapilo\nulapím\nulapíme\nulapíš\nulapiť\nulapíte\nulapme\nulapte\nuláskať\núľava\nuľavenie\nuľaviť\nuľavovať\nulcerácia\nulcerózny\nulcus\nULE\núle\nulema\nulepiť\nuleť\núlet\nuletené\nuletení\nuletenie\nuletených\nuletenými\nuletieť\nuletovať\núletový\nuletúvať\nulexit\nuležaný\nuležať\núli\nuliahnuť\nuliata\nuliate\nuliatej\nuliať\nuliaty\nuliatych\nuliatym\nuliatymi\nulica\nUlič\nUliča\nUliči\nulička\nuličnica\nuličnícky\nuličníctvach\nuličníctvam\nuličníctvo\nuličník\nuličný\nUličská\nUličské\nUličskej\nuličskú\nulietaní\nulietať\nulietla\nulietnuť\nulievač\nulievačka\nulievačský\nulievačstvo\nulievaní\nulievania\nulievanie\nulievaním\nulievareň\nulieváreň\nulievarňach\nulievárňach\nulievarňam\nulievárňam\nulievať\nuliezť\nulíhať\nulihovať\núlik\nulipnúť\núlisne\núlisnica\núlisník\núlisnosť\núlisný\nulít\nulita\nulitník\nulízane\nulízaný\nulízať\nuliznúť\nulíže\núľ\nullmanit\nUlm\nulma\nUlme\núľmi\nulmifikácia\nulmit\nUlmu\nulna\núloh\núloha\núlohovaní\núlohového\núľoch\núlom\núľom\núlomček\nulomenie\nulomiť\núlomkovitý\núlomkový\núlomok\núľov\nulovená\nulovené\nuloveného\nulovenej\nulovení\nulovenia\nulovenom\nulovených\nuloviť\núlovok\núľový\nUloža\nuložene\nuloženie\nuloženina\nuloženiny\nuloženo\nuložený\núložiek\núložísk\núložisko\núložiskový\núložistý\núložišti\nuložiť\núložka\núložkách\núložkám\núložkami\núložke\núložkou\núložku\núložky\núložný\nuľpela\nuľpieť\nUlrika\nUlrike\nUlriky\nultím\nultima\nultimát\nultimátach\nultimátam\nultimatívne\nultimatívnosť\nultimatívny\nultimátum\nultime\nUltimo\nultimom\nultimu\nultra\nultraakustika\nultračastica\nultrafialový\nultrafiltrácia\nultrafiltrácie\nultrafiltráciou\nultrafiltráciu\nultraizmus\nultrakrátky\nultraľahký\nultraľavé\nultraľavému\nultraľavicový\nultraľavičiar\nultraľavičiarka\nultraľavičiarsky\nultraľavičiarstvach\nultraľavičiarstvam\nultraľavičiarstvo\nultramarín\nultramarínovo\nultramarínový\nultramoderný\nultramódny\nultramontanizmus\nultranacionalista\nultranacionalisticky\nultranacionalistický\nultranacionalistka\nultranacionalizmus\nultrapravicový\nultrapravicový\nultrapravičiar\nultrapravičiarka\nultrapravičiarsky\nultrapravičiarstvach\nultrapravičiarstvam\nultrapravičiarstvo\nultrapravidový\nultraradikálny\nultrasonického\nultrasonografia\nultrasonografický\nultrazvuk\nultrazvukový\nultražiarenie\núľu\núľuba\nulúpenia\nulúpenie\nulúpený\nulúpiť\nuľútiť\nuľútostený\nuľútosti\nuľútostime\nuľútostite\nuľútostiť\nuľútostni\nuľútostnime\nuľútostnite\nuľútostniť\nulvit\numáčať\numachliť\numakart\numakartmi\numakartový\numáliť\numangit\numárajúci\numárané\numáranie\numárať\numastene\numastený\numasti\numastime\numastite\numastiť\numazania\numazanie\numazaniu\numazaný\numazať\num\nUMB\numbela\numbikus\numbra\nUmbria\numdlený\numdletý\numdlieť\numel\numeľ\numele\numelec\numeleckohistorický\numeleckopriemyselný\numeleckosť\numelecky\numelecký\numelejšej\numelejší\numelejšia\numelejšie\numelejšieho\numelejšiemu\numelejších\numelejším\numelejšími\numelejšiu\numelejšom\numelejšou\numelkyňa\numelo\numelohmotne\numelohmotný\numelohodvábny\numelosť\numelý\numen\numeniamilovných\numenie\numenohistória\numenohistorický\numenohistorička\numenohistorik\numenoveda\numenovedec\numenovedkyňa\numenovedný\numenšením\numenší\numenšia\numenšuje\númer\númera\númerne\númernosť\númerný\numeť\numetá\numetie\numiak\numienenosti\numienil\numieniš\numieniť\numieňuje\numieráčik\numierajúci\numieranie\numierať\numiernene\numierneniu\numiernenosť\numiernený\numiernia\numierniť\numierňoval\numierňovanie\numierňovať\numiesený\numiesiť\numiestenia\numiesteniach\numiestenie\numiestením\numiestenka\numiestený\numiesti\numiestim\numiestime\numiestiš\numiestite\numiestiť\numiestnene\numiestnenie\numiestnený\numiestnený\numiestni\numiestnim\numiestnime\numiestniš\numiestnite\numiestniť\numiestňovanie\numiestňovaný\numiestňovať\numiesťovaní\numiesťovanie\numiesťovať\numknúť\nUML\numlátiť\numlaut\numlč\numlčania\numlčanie\numlčaný\numlčať\numlčiavanej\numlčiavaní\numlčiavať\numlčovanie\numlčovať\numliaždiť\numlieť\numĺkať\numĺknuť\numluvne\numne\nUMNO\numnosť\numný\numocnenie\numocnením\numocneniu\numocnený\numocnený\numocni\numocnime\numocnite\numocniť\numocňovanie\numocňovaniu\numocňovaný\numocňovať\numočiť\numodlikať\numojkať\numoknúť\numolestovaný\numolestovať\numor\númor\numordovaný\numordovať\numorenia\numoreniami\numorenie\numorením\numoreniu\numorený\numoriteľných\numoriť\númorne\númornosť\númorný\numorovacej\numorovací\numorovacia\numorovacie\numorovacieho\numorovacím\numorovacími\numorovacom\numorovacou\numorovania\numorovanie\numorovaním\numorovaniu\numorovaný\numorovať\numorte\nUmová\nUmovej\numožnenie\numožnený\numožni\numožnime\numožnite\numožniť\numožňovaná\numožňované\numožňovaní\numožňovania\numožňovanie\numožňovaniu\numožňovať\numožňujúci\numpire\numravčaný\numravnené\numravnenia\numravnenie\numravní\numravnila\numravnili\numravniť\numravňovať\numravňujeme\numravňujú\numretie\numretý\numrieť\numrlčí\numrlec\numrštený\númrtie\númrtnosť\númrtnostné\númrtnostných\númrtnostným\númrtný\numŕtvenia\numŕtvenie\numŕtvením\numŕtveniu\numŕtvený\numŕtviť\numŕtvovania\numŕtvovanie\numŕtvovaniu\numŕtvovať\numŕtvujúce\numŕtvujúcim\numrúc\numučenie\numučený\numúčiť\numučiť\numúdrením\numúdriť\numyknúť\númyselne\númyselnosť\númyselný\númysel\numytia\numytie\numytím\numyť\numytý\numývací\numývač\numývače\numývačka\numývaču\numývadielko\numývadielok\numývadlo\numývadlový\numyvák\numývané\numývaného\numývanieN\numývaných\numyváreň\numyvárňach\numyvárňam\numývateľný\numývať\nUN\nÚn\nUNA\nunáhlene\nunáhlenia\nunáhlenie\nunáhlením\nunáhlenosť\nunáhlený\nunáhli\nunáhlil\nunáhlila\nunáhlili\nunáhlilo\nunáhliť\nunáhľovať\nunanimita\nunanimizmus\nunárny\nunášacích\nunášač\nunášači\nunášačom\nunášajúci\nunášajúcu\nunášania\nunášanie\nunášaný\nunášať\nUňatín\núnav\núnava\nunavene\nunaveno\nunavenosť\nunavený\nunaviť\núnavne\núnavnosť\núnavný\nunavovaní\nunavovať\núnavový\nunavujúcejšej\nunavujúcejší\nunavujúcejšia\nunavujúcejšie\nunavujúcejšieho\nunavujúcejšiemu\nunavujúcejších\nunavujúcejším\nunavujúcejšími\nunavujúcejšiu\nunavujúcejšom\nunavujúcejšou\nunavujúci\nunavujúco\nunca\nuncí\nuncia\nuncie\nuncií\nunciu\nund\nundácia\nundbundling\nunderground\nundina\nundulácia\nUNESCO\nunesenia\nunesenie\nunesením\nuneseniu\nunesený\nunfair\nunfér\nungelt\nUngelt\nunguentum\nUNHCR\nuňho\nUNI\nuniat\núnia\nUNICEF\nunicelulárny\nuniesť\nunifikácia\nunifikačne\nunifikačný\nunifikoval\nunifikovala\nunifikovali\nunifikovalo\nunifikovania\nunifikovanie\nunifikovaný\nunifikovať\nunifikuje\nunifikujeme\nunifikujú\nuniforiem\nuniforma\nuniformít\nuniformita\nuniformizáciu\nuniformne\nuniformnosť\nuniformný\nuniformovane\nuniformovanosť\nuniformovaný\nuniformuje\nUnijná\nunijného\nUnijní\nunijnú\nunijných\nuník\nUnikajúca\nunikajúce\nunikajúceho\nunikajúcej\nunikajúci\nunikajúcich\nunikajúcim\nunikajúcimi\nunikajúcou\nunikajúcu\nunikaní\nunikania\nunikanie\nunikaním\nunikaniu\nunikát\nunikať\nunikátmi\nunikátnosť\nunikátny\núnik\nuniknúca\nuniknúce\nuniknúci\nuniknúcu\nuniknutia\nuniknutím\nuniknutiu\nuniknúť\nuniknutý\núnikovosť\núnikový\nunikum\nunilaterálny\nUnín\nunion\nUnión\nunionista\nunionistami\nunionisti\nunionistický\nunionistom\nunionistov\nunionistu\núniový\nuniparita\nunisex\nunisónne\nunisónny\nunisono\nunit\nUnit\nunitarizmus\nunitárny\nunited\nUnitu\nUnity\nuniv\nunivalentný\nuniverbizácia\nuniverz\nUniverz\nUniverzál\nuniverzalistickej\nuniverzalisticky\nuniverzalistov\nuniverzalita\nuniverzalite\nuniverzalitu\nuniverzality\nuniverzalizácia\nuniverzalizácie\nuniverzalizácii\nuniverzalizáciou\nuniverzalizáciu\nuniverzalizmu\nuniverzalizmus\nuniverzálne\nuniverzálnosť\nuniverzálny\nuniverzálom\nuniverzí\nuniverziád\nuniverziádach\nuniverziádam\nuniverziáda\nuniverziádny\nuniverzít\nuniverzita\nuniverzitne\nuniverzitný\nuniverzum\nunix\nunixový\nuníženie\nunížený\nunkcia\nunlimited\nUNNRA\núnos\núnosca\núnoskyňa\núnosne\núnosnosť\núnosný\núnosovú\nunovaný\nunožiť\núnožmo\nunožovať\nUNPROFOR\nunuď\nunudene\nunudenosť\nunudený\nunudí\nunudíme\nunudiť\nunuvácia\nunúvanie\nunúvať\nÚNZ\nup\nupadajúce\nupadajúci\nupadania\nupadanie\nupadaniu\nupadať\nupadáva\nupadávali\nupadávanie\núpadca\núpadkovo\núpadkovosť\núpadkový\núpadkyňa\núpadnica\núpadnice\núpadnicou\nupadnutia\nupadnutie\nupadnutím\nupadnutiu\nupadnúť\nupadnutý\núpadok\núpadu\nupachiť\nupachtený\nupachti\nupachtime\nupachtite\nupachtiť\nupäl\nupäla\núpal\nupálenia\nupálenie\nupálením\nupáleniu\nupálený\nupäli\nupáliť\núpalmi\nupälo\nupaľovaním\nupaľovať\núpalový\nupamätať\nupamätovať\nupanišády\nupar\nupariť\nuparovaním\nupas\núpätie\núpätný\nupäto\nupätosť\nupäť\nupätý\nupažení\nupažením\nupažiť\nupažmo\nupažovaním\nUPC\nupdate\nupečenie\nupečený\núpek\nupelešiť\núpenie\núpenlivo\núpenlivosť\núpenlivý\nupevnenie\nupevnený\nupevni\nupevnime\nupevnite\nupevniť\nupevňovací\nupevňovačí\nupevňovanie\nupevňovaný\nupevňovať\nupevňujúci\nupgrade\nUpchané\nupchanie\nupchať\nupchatie\nupchatiu\nupchávacie\nupchávacích\nupchávanie\nupchávaním\nupchávaniu\nupchávať\nupchávka\nupiecť\nupierania\nupieranie\nupieraný\nupierať\núpieť\nupichanie\nupichnúť\nupíjať\nupínací\nupínač\nupínači\nupínadiel\nupínadlo\nupínaní\nupínania\nupínanie\nupínaním\nupínať\núpinka\nupír\nupísanie\nupísaný\nupísať\núpis\nupískanec\nupískaný\nupískať\nupiskovať\nupisovacej\nupisovací\nUpisovacia\nupisovacie\nupisovacieho\nupisovacích\nupisovacím\nupisovaciu\nupisovacom\nupisovacou\nupisovania\nupisovanie\nupisovaním\nupisovaniu\nupisovaný\nupisovateľ\nupisovateľa\nupisovatelia\nupisovateľmi\nupisovateľoch\nupisovateľom\nupisovateľov\nupisovateľovi\nupisovateľských\nupisovať\núpisový\nupíšu\nupíšuc\nupiť\nUPJŠ\nupláca\nuplácajú\nuplácal\nuplácala\nuplácali\nuplácaní\nuplácania\nuplácaniam\nuplácanie\nuplácaním\nuplácaniu\nuplácať\nUplácate\nupláchnuť\nuplakanec\nuplakane\nuplakano\nuplakanosť\nuplakaný\nuplašený\nuplať\núplata\nuplatení\nuplatenia\nuplatenie\nuplatením\nuplatených\nuplatí\nuplatil\nuplatila\nuplatili\nuplatilo\nuplatiť\núplatkár\núplatkárka\núplatkársky\núplatkársky\núplatkárstvach\núplatkárstvam\núplatkárstvo\núplatkový\núplatne\nuplatnenie\nuplatnený\nuplatni\nuplatnime\nuplatnite\nuplatniť\núplatnosť\núplatnosti\núplatnosťou\nuplatňovanie\nuplatňovaný\nuplatňovať\núplatný\núplatok\núplatou\núplatu\núplaty\nuplávať\núplavica\núplaz\nupleť\núplet\nupletený\nupletie\nupletiem\nupletieme\nupletieš\nupletiete\nupleťme\núpletový\nupleťte\nupletú\nupletúc\nupliesť\nuplietla\nuplietli\nuplietlo\nuplietol\núplne\núplne\núplnku\núplnok\núplnosť\núplný\nuplyň\nuplynie\nuplyniem\nuplynieme\nuplynieš\nuplyniete\nuplyňme\nuplyňte\nuplynule\nuplynulý\nuplynutie\nuplynúť\nuplynutý\nuplývať\nÚPN\nupnutia\nupnutie\nupnutím\nupnúť\nupnutý\nupočúvnuť\nupodozrievanie\nupodozrievaný\nupodozrievať\nupodozrievavo\nupodozrievavosť\nupodozrievavý\nUpohlav\nUpohlave\nupokojenie\nupokojený\nupokojiť\nupokojovaní\nupokojovania\nupokojovanie\nupokojovaním\nupokojovaniu\nupokojovať\nupokojujúcejšej\nupokojujúcejší\nupokojujúcejšia\nupokojujúcejšie\nupokojujúcejšieho\nupokojujúcejšiemu\nupokojujúcejších\nupokojujúcejším\nupokojujúcejšími\nupokojujúcejšiu\nupokojujúcejšom\nupokojujúcejšou\nupokojujúci\nupokojujúco\nupokoriť\nupomenutie\nupomenúť\nupomienka\nupomienkový\nupomínania\nupomínanie\nupomínaním\nupomínaných\nupomínať\nuponáhľane\nuponáhľanosť\nuponáhľaný\nuponáhžanosť\núpon\nuponížení\nuponížili\nuponížiť\núponka\núponkovitý\núponkový\núponok\núponový\núporne\núpornosť\núporný\nuposlúchnutie\nuposlúchnuť\nupôsobiť\nupotený\nupotiť\nupotrebene\nupotrebenia\nupotrebenie\nupotrebeniu\nupotrebený\nupotrebiteľnosť\nupotrebiteľný\nupotrebiť\nupotrebovať\nupovedomenie\nupovedomený\nupovedomiť\nupovedomovania\nupovedomovať\nupozornene\nupozornenie\nupozornený\nupozorni\nupozornime\nupozornite\nupozorniť\nupozorňovacej\nupozorňovacie\nupozorňovanie\nupozorňovaný\nupozorňovať\nUppsala\nUppsale\nupracoval\nupracovane\nupracovanosť\nupracovaný\nupracovať\nuprášiť\nupratajúc\nupratania\nupratanie\nuprataním\nuprataniu\nuprataný\nupratať\nupratovač\nupratovačka\nupratovačský\nupratovanej\nupratovanie\nupratovať\núprav\nupráva\núpravár\núpravárka\núpravársky\núpravársky\núprava\núpravca\núpravcom\núpravcov\nupravene\nupravenejší\nupravenia\nupravenie\nupravením\nupraveniu\nupravenosť\nupravený\nupraviteľný\nupraviť\núpravňa\núpravní\núpravnícky\núpravníctvach\núpravníctvam\núpravníctvo\nupravovacom\nupravovač\nupravovačka\nupravovačský\nupravovanie\nupravovaný\nupravovateľ\nupravovateľka\nupravovateľný\nupravovateľský\nupravovať\núpravovňa\núpravovne\núpravovni\núpravovní\núpravovniach\núpravovňu\nupravujúci\nuprázdnenie\nuprázdnený\nuprázdniť\nuprázdňované\nuprázdňovať\nupražený\nupražiť\nuprdnúť\nuprednostnenia\nuprednostnenie\nuprednostnením\nuprednostneniu\nuprednostnený\nuprednostni\nuprednostnime\nuprednostnite\nUprednostnite\nuprednostniť\nuprednostňovanie\nuprednostňovaný\nuprednostňovať\nuprene\nuprený\nupresnenie\nupresnený\nupresni\nupresní\nupresnia\nupresniac\nupresnil\nupresnila\nupresnili\nupresnilo\nupresním\nupresnime\nUpresnime\nupresníme\nupresníš\nupresniť\nupresnite\nupresníte\nUpresníte\nupresňoval\nupresňovala\nupresňovali\nupresňovalo\nupresňovania\nupresňovaniach\nupresňovanie\nupresňovaním\nupresňovaniu\nupresňovaný\nupresňovať\nupresňuje\nupresňujem\nupresňujeme\nupresňujú\nupretie\nupreto\nupretý\nuprchli\nuprchlíci\nuprchlík\nupriamene\nupriamenie\nupriamením\nupriameniu\nupriamený\nupriamiť\nupriamovať\nupriasť\nuprieť\núprimne\núprimnosť\núprimný\nuprosiť\nuprosovať\nuprostred\nupršaný\nuprúc\nUPS\núpust\nupustené\nupustenie\nupusti\nupustime\nupustite\nupustiť\nupúšťané\nupúšťania\nupúšťanie\nupúšťať\nupútania\nupútanie\nupútaniu\nupútaný\nupútať\nupútavaním\nupútavať\nupútavka\nupýtať\núr\nurá\nuracil\nuráčiť\núrad\núradík\nuradiť\núradne\núradnícky\núradníctvach\núradníctvam\núradníctvo\núradníček\núradníčení\núradníčeniu\núradníčka\núradníčkinho\núradníčkoch\núradníčkom\núradníčkov\núradníčkovi\núradníčkovia\núradník\núradníkov\núradnosť\núradný\nuradostený\núradovaní\núradovania\núradovanie\núradovaním\núradovaniu\nuradovaný\núradovať\núradovňa\núradovní\núradujúci\nuragán\nUral\nuralolit\nurán\nUrán\nuraničitý\nuranín\nuranit\nuranitový\nuranizmus\nuranografia\nuranolatria\nuranológia\nuranometria\nuranopilit\nuranoskop\nuránovo\nuránový\nuranyl\nuranylový\nurastene\nurastenosť\nurastený\nurát\nuratúria\núraz\nurazene\nurazenosť\nurazený\nuraziť\núrazovka\núrazovo\núrazovosť\núrazový\nurážajúca\nurážajúce\nurážajúcemu\nurážajúci\nurážajúcim\nurážajúco\nurážaní\nurážania\nurážanie\nurážaním\nurážaniu\nurážať\nurážka\nurážlivo\nurážlivosť\nurážlivý\nurb\nurbaizácia\nUrban\nurbanista\nurbanisticky\nurbanistický\nurbanistika\nurbanistiku\nurbanistiky\nurbanistka\nurbanizácia\nurbanizačne\nUrbanizačno\nurbanizačný\nurbanizmus\nurbanizovanie\nUrbanizovaním\nurbanizovaný\nurbanizovať\nurbanizujeme\nurbár\nurbáre\nurbári\nurbariálny\nurbárium\nUrbárne\nurbárnych\nurbároch\nurbárom\nurbárov\nUrbárska\nurbárske\nurbárskeho\nurbárskej\nurbárskemu\nurbárskom\nUrbárskou\nurbárskych\nurbárskym\nurbárskymi\nurbáru\nurbura\nurčene\nurčenie\nurčeno\nurčenosťou\nurčený\nurči\nurčime\nUrčime\nurčite\nurčiť\nurčito\nurčitosť\nurčitý\nurčovacej\nurčovacia\nurčovacie\nurčovacieho\nurčovacích\nurčovacími\nurčovaciu\nurčovacou\nurčovane\nurčovanie\nurčovaný\nurčovateľ\nurčovateľom\nurčovateľov\nurčovať\nurčujúci\nurd\núrd\nurda\nurde\nurdu\nurdy\nurea\núrečný\nurémia\nuremický\nuretán\nureter\nureterolitiáza\nureterostenóza\nureterotómia\nuretikum\nuretra\nuretritída\nuretrocystitída\nuretroea\nuretroragia\nuretroskop\nurevaný\nurezať\nurezávať\núrezok\nurgencia\nurgenčný\nurgentne\nurgentnosť\nurgentný\nurgované\nurgovaní\nurgovanie\nurgovaniu\nurgovať\nuriekavý\nurieknutie\nurieknutím\nurieknuť\nurien\nurín\nurína\nurinácia\nurinoterapia\nurl\nUrmince\nUrminciach\nurnách\nurnám\nurna\nurnový\nÚRO\nurobene\nurobenia\nurobenie\nurobením\nurobený\nurobilín\nurobilinúria\nurobiť\nurocystektómia\núročenie\núročený\núročiť\núročný\núrod\núrodaN\nurodeného\nurodiť\núrodnosťN\núrodný\nurodzene\nurodzenosť\nurodzený\nurogenitálny\nurogénny\nurografia\núrok\núrokomer\núrokovania\núrokovanie\núrokovaním\núrokovaný\núrokovať\núrokovo\núrokový\nurolit\nurolitiáza\nurológ\nurológia\nurologický\nurologický\nurologička\nuroloický\nuroň\nuroní\nuroniť\nuropatia\nurotropín\núroveň\nurovnania\nurovnanie\nurovnaním\nurovnaniu\nurovnaný\nurovnať\nurovnávací\nurovnávajúcich\nurovnávaní\nurovnávania\nurovnávanie\nurovnávaniu\nurovnávať\núrovňový\nUrpín\nUrpína\nUrpíne\nUrpínom\nUrpínu\nurputne\nurputnosť\nurputný\nurquell\nuršilínka\nUršuľa\nUršula\nuršulínka\nuršulínsky\nuršulínsky\nurtikária\nuruguaj\nUruguajec\nUruguaj\nUruguajka\nuruguajský\nurval\nurvala\nurvali\nurvalo\nurvať\nurve\nurvem\nurveme\nurveš\nurvete\nurvi\nurvime\nurvite\nurvú\nurvúc\nurýchlene\nurýchlenie\nurýchlený\nurýchliť\nurýchľovací\nurýchľovacia\nurýchľovacie\nurýchľovacieho\nurýchľovaciu\nurýchľovač\nurýchľovania\nurýchľovanie\nurýchľovaním\nurýchľovaniu\nurýchľovaný\nurýchľovať\nurýchľujúca\nurýchľujúce\nurýchľujúci\núryvkovite\núryvkovito\núryvkovitosť\núryvkovitý\núryvok\nUS\nÚS\nUSA\nUSAa\nusadať\núsad\nusadenia\nusadenie\nusadením\nusadenina\nusadeniu\nusadený\nusadiť\nusadlejšej\nusadlejší\nusadlejšia\nusadlejšie\nusadlejšieho\nusadlejšiemu\nusadlejších\nusadlejším\nusadlejšími\nusadlejšiu\nusadlejšom\nusadlejšou\nusadlík\nusadlosť\nusadlý\nusadnutia\nusadnutiu\nusadnúť\nusadnutý\nusádzanie\nusádzať\nusadzovacej\nusadzovacie\nusadzovacích\nusadzovaní\nusadzovania\nusadzovanie\nusadzovaním\nusadzovaniu\nusadzovať\nusadzujúci\nusalašených\nusalašiť\nusalašovať\nUsám\nUSB\nUSD\núsečka\núsečne\núsečnosť\núsečný\nusedať\nusedavo\nusedavý\nusedený\nusedvý\nusekávané\nusekávanie\nusekávať\núsek\nusekli\nuseknúť\nuseknutím\nuseknutý\núsekový\nuseň\nusepkať\nuser\nuschnutia\nuschnúť\nuschnutý\nuschopniť\nuschopňuje\nuschovajte\nuschoval\nuschovala\nuschovali\nuschovalo\nuschovania\nuschovanie\nuschovaním\nuschovaný\nuschovať\nuschovávacie\nuschovávané\nuschovávania\nuschovávanie\nuschovávaním\nuschovávaných\nuschovávateľ\nuschovávateľa\nuschovávateľom\nuschovávať\núschova\núschovňa\núschovné\núschovného\núschovnej\núschovnému\núschovní\núschovnom\núschovných\núschovným\nuschuj\nuschuje\nuschujem\nuschujeme\nuschuješ\nuschujete\nuschujme\nuschujte\nuschujú\nuschujúc\nuschýnajú\nuschýnať\nusídlenec\nusídlenia\nusídlenie\nusídlením\nusídlený\nusídliť\nusídľovaní\nusídľovania\nusídľovanie\nusídľovať\núsilie\núsilne\núsilný\nusilovanie\nusilovať\nusilovne\nusilovne\nusilovnosť\nusilovný\nusilujúci\nusínať\nUsino\nuskakovať\núskalie\núskalina\núskalistý\nuskladnenia\nuskladnenie\nuskladnením\nuskladneniu\nuskladnený\nuskladni\nuskladnime\nuskladnite\nuskladniteľná\nuskladniť\nuskladňovacej\nUskladňovací\nuskladňovacia\nuskladňovacie\nuskladňovacieho\nuskladňovacích\nuskladňovaciu\nuskladňovacou\nuskladňovanie\nuskladňovaný\nuskladňovatelia\nuskladňovateľom\nuskladňovateľovi\nuskladňovať\nuskočiť\núskočne\núskočník\núskočníkov\núskočnosť\núskočný\núskok\nuskor\nuskoriť\nuskorovať\nuskorte\nuskromnení\nuskromnenie\nuskromnením\nuskromneniu\nuskromni\nuskromnime\nuskromnite\nuskromniť\nuskromňovaní\nuskromňovania\nuskromňovanie\nuskromňovať\nuskutočnenie\nuskutočnený\nuskutočni\nuskutočnime\nuskutočnite\nuskutočniteľnosť\nuskutočniteľný\nuskutočniť\nuskutočňovanie\nuskutočňovaný\nuskutočňovateľ\nuskutočňovateľmi\nuskutočňovateľom\nuskutočňovateľov\nuskutočňovať\nuskutočňujúci\nuslinený\nusliniť\nuslintaný\núslnie\núslovie\núsluh\núsluha\núslužne\núslužnosť\núslužný\nuslyš\nuslyšal\nuslyšala\nuslyšali\nuslyšalo\nuslyšať\nuslyší\nuslyšia\nuslyšiac\nuslyším\nuslyšíme\nuslyšíš\nuslyšíte\nuslyšme\nuslyšte\nuslzený\nusmažená\nusmažiť\núsmech\nusmernene\nusmernenie\nusmernený\nusmerni\nusmernime\nusmernite\nusmerniť\nusmerňovací\nusmerňovač\nusmerňovania\nusmerňovanie\nusmerňovaním\nusmerňovaniu\nusmerňovaný\nusmerňovateľov\nusmerňovať\nusmerňujúci\nusmerňujúcimi\núsmešný\núsmešok\núsmev\núsmevček\núsmeve\núsmevne\núsmevnosť\núsmevný\nusmiatí\nusmiatie\nusmiatosť\nusmiať\nusmiaty\nusmievajúci\nusmievať\nusmievavo\nusmievavosť\nusmievavý\nusmoklene\nusmoklenosť\nusmoklený\nusmoliť\nusmrcované\nusmrcovaní\nusmrcovania\nusmrcovanie\nusmrcovaním\nusmrcovaných\nusmrcovať\nusmrcujúci\nusmrcujúcich\nusmrcujúcou\nusmrkanča\nusmrkane\nusmrkanec\nusmrkano\nusmrkanosť\nusmrkaný\nusmrtenie\nusmrtený\nusmrtite\nusmrtiť\nusnadní\nusnadnili\nUsnadniť\nusnadňovala\nusnadňuje\nusnovať\nusnul\nusnula\nUsnula\nusnuli\nusnulo\nusnutia\nusnúť\nÚSO\nusoplenča\nusoplenec\nusoplený\nusopliť\nusoriť\nUSP\nuspané\nuspaní\nuspania\nuspanie\nuspať\nuspávací\nuspávajúce\nuspávajúceho\nuspávajúci\nuspávajúcu\nuspávania\nuspávaniu\nuspávanka\nuspávať\núspechN\núspešne\núspešnosťN\núspešný\nuspi\nuspieť\nuspieva\nuspievať\nuspime\nuspite\nuspokojene\nuspokojenie\nuspokojenosť\nuspokojený\nuspokojiť\nuspokojivo\nuspokojivý\nuspokojovania\nuspokojovanie\nuspokojovaním\nuspokojovaniu\nuspokojovaný\nuspokojovať\nuspokojujúcejšej\nuspokojujúcejší\nuspokojujúcejšia\nuspokojujúcejšie\nuspokojujúcejšieho\nuspokojujúcejšiemu\nuspokojujúcejších\nuspokojujúcejším\nuspokojujúcejšími\nuspokojujúcejšiu\nuspokojujúcejšom\nuspokojujúcejšou\nuspokojujúci\nuspokojujúco\nuspor\nusporadovať\nusporadúvania\nusporadúvanie\nusporadúvaním\nusporadúvaný\nusporadúvať\núspora\nusporenia\nusporenie\nUsporením\nusporeniu\nusporený\nusporiadane\nusporiadanie\nusporiadanosť\nusporiadaný\nusporiadateľ\nusporiadateľka\nusporiadateľský\nusporiadateľstvo\nusporiadať\nusporiadavajú\nusporiť\núsporne\núspornosť\núsporný\nusporte\nuspôsob\nuspôsobením\nuspôsobeniu\nuspôsobený\nuspôsobí\nuspôsobia\nuspôsobiac\nuspôsobil\nuspôsobila\nuspôsobili\nuspôsobilo\nuspôsobím\nuspôsobíme\nuspôsobíš\nuspôsobiť\nuspôsobíte\nuspôsobme\nuspôsobovanie\nuspôsobovať\nuspôsobte\nusŕkaniu\nusŕkať\nusrknúť\nusrkovať\nust\nustajnenia\nustajnenie\nustajnením\nustajnený\nustajni\nustajní\nustajnia\nustajniac\nustajnil\nustajnila\nustajnili\nustajnilo\nustajním\nustajnime\nustajníme\nustajníš\nustajniť\nustajnite\nustajníte\nustajňovacej\nustajňovacie\nustajňovacích\nustajňoval\nustajňovala\nustajňovali\nustajňovalo\nustajňovaním\nustajňovať\nustajňuj\nustajňuje\nustajňujem\nustajňujeme\nustajňuješ\nustajňujete\nustajňujme\nustajňujte\nustajňujú\nustajňujúc\nustál\nustála\nustálene\nustálenia\nustálenie\nustálením\nustáleniu\nustálenosť\nustálený\nustáliť\nustálo\nustaľovacie\nustaľovač\nustaľovanie\nustaľovať\nustaľujúci\nustanovene\nustanovenie\nustanovený\nustanoviť\nustanovizeň\nustanovovací\nustanovovaní\nustanovovania\nustanovovanie\nustanovovaním\nustanovovať\nustanovujúcejšej\nustanovujúcejší\nustanovujúcejšia\nustanovujúcejšie\nustanovujúcejšieho\nustanovujúcejšiemu\nustanovujúcejších\nustanovujúcejším\nustanovujúcejšími\nustanovujúcejšiu\nustanovujúcejšom\nustanovujúcejšou\nustanovujúci\nústa\nustarane\nustaranosť\nustaraný\nustarostene\nustarostenosť\nustarostený\nustaša\nustašovec\nustáť\nustátí\nustatia\nustatie\nustato\nustatosť\nustať\nustatý\nustav\nUstav\nustávať\nústava\nústav\nustavená\nustavené\nustavení\nustavenia\nustaveniami\nustavenie\nustaví\nustavia\nustavične\nustavičný\nustavili\nustaviť\nústavne\nústavno\nústavnoprávny\nústavnosť\nústavný\nústavodarný\nustavovania\nusteľ\nústi\nústiac\nustiela\nustielaj\nustielajme\nustielajte\nustielajú\nustielajúc\nustielal\nustielala\nustielali\nustielalo\nustielam\nustielame\nustielaš\nustielať\nustielate\nústie\nústil\nústila\nústili\nústilo\nústim\nústime\nústiš\nústiť\nústite\nustlané\nustlaté\nustlať\nústne\nústny\nústočiek\nústočka\nústočká\nústočkách\nústočkám\nústočkami\nústočke\nústočku\nústočky\nustoj\nustoja\nustojac\nustojí\nustojím\nustojíme\nustojíš\nustojíte\nustojme\nustojte\nustráchane\nustráchano\nustráchanosť\nustráchaný\nustrachovane\nustrachovano\nustrachovanosť\nustrachovaný\nústranie\nustrašencov\nustrašenec\nustrašene\nustrašenosť\nustrašený\nustravujúci\nustrážené\nustrážení\nustráženia\nustráženie\nustrážiť\nústredie\nústredňa\nústredne\nústredný\nústretovo\nústretovosť\nústretový\nústrety\nustrica\nustricová\nustriehnuť\nustriezť\nustrihnúť\nústrižok\nústrk\nustrň\nustrnie\nustrniem\nustrnieme\nustrnieš\nustrniete\nustrňme\nustrňte\nustrnutia\nustrnutie\nustrnutiu\nustrnuto\nustrnutosť\nustrnúť\nustrnutý\nustrojenie\nústrojenstvo\nustrojiť\nústroj\nústrojne\nústrojnosť\nústrojný\nústup\nústupčivo\nústupčivosť\nústupčivý\nustúpení\nustúpenia\nustúpenie\nustúpením\nustúpeniu\nustúpiť\nústupnosti\nústupný\nústupok\nustupovaní\nustupovanie\nustupovaním\nustupovať\nústupovo\nústupový\nustupujúce\nustupujúci\nusucapio\nusúdenia\nusúdiť\núsudkovo\núsudkový\núsudok\nusudzovacie\nusudzovacieho\nusudzovacími\nusudzovanie\nusudzovaním\nusudzovať\nusúkaný\nusúkať\nususfruktus\nusústavni\nusústavní\nusústavnia\nusústavniac\nusústavnil\nusústavnila\nusústavnili\nusústavnilo\nusústavním\nusústavnime\nusústavníme\nusústavníš\nusústavniť\nusústavnite\nusústavníte\nusústavňovať\nusušenia\nusušenie\nusušením\nusušený\nusušiť\nusúvťažniť\nusúvzťažni\nusúvzťažnime\nusúvzťažnite\nusúvzťažniť\nusúvzťažňovať\nusúžený\nusúžiť\nusužoval\nusužovala\nusužovali\nusužovalo\nusužovaný\nusužovať\nusužuj\nusužuje\nusužujem\nusužujeme\nusužuješ\nusužujete\nusužujme\nusužujte\nusužujú\nusužujúc\nÚSV\nusvedčenie\nusvedčený\nusvedči\nusvedčime\nusvedčite\nusvedčiť\nusvedčovanie\nusvedčovaný\nusvedčovať\nusvedčujúcejšej\nusvedčujúcejší\nusvedčujúcejšia\nusvedčujúcejšie\nusvedčujúcejšieho\nusvedčujúcejšiemu\nusvedčujúcejších\nusvedčujúcejším\nusvedčujúcejšími\nusvedčujúcejšiu\nusvedčujúcejšom\nusvedčujúcejšou\nusvedčujúci\nusvedčujúco\nusviedča\nusviedčaj\nusviedčajme\nusviedčajte\nusviedčajú\nusviedčajúc\nusviedčam\nusviedčame\nusviedčaš\nusviedčate\nusviedčať\núsvit\núsvitmi\nUSY\nusychať\nusyp\nušami\nušanovať\nušatý\nušetrenia\nušetrenie\nušetrením\nušetreniu\nušetrený\nušetriť\nuši\nuší\nušiačik\nušiačikovi\nušiach\nušiak\nušiaku\nušiaky\nušiam\nušianať\nušianka\nušiek\nušije\nušijem\nušijeme\nušiješ\nušijete\nušijú\nušijúc\nušil\nušila\nušili\nušilo\nušime\nušite\nušitia\nušitie\nušiť\nušitý\nuškeriť\nuškierať\nuškľabiť\núškľabné\núškľabok\nuškodené\nuškodení\nuškodiť\nuško\nuškŕliť\nuškrň\nuškŕňať\núškrn\nuškrnie\nuškrniem\nuškrnieme\nuškrnieš\nuškrniete\nuškrňme\núškrnok\nuškrňte\nuškrnúť\nuškrtenie\nuškrti\nuškrtiť\nuškvar\nuškvarí\nuškvaria\nuškvariac\nuškvaril\nuškvarila\nuškvarili\nuškvarilo\nuškvarím\nuškvaríme\nuškvaríš\nuškvariť\nuškvaríte\nuškvarme\nuškvarte\nušľahať\nušľachtenej\nušľachtilejšej\nušľachtilejší\nušľachtilejšia\nušľachtilejšie\nušľachtilejšieho\nušľachtilejšiemu\nušľachtilejších\nušľachtilejším\nušľachtilejšími\nušľachtilejšiu\nušľachtilejšom\nušľachtilejšou\nušľachtilo\nušľachtilosť\nušľachtilý\nušliapaný\nušliapať\nušlý\nušmyknúť\nušne\nušnica\nušnicový\nušno\nušný\nušpinený\nušpiniť\nušporiť\nušporovať\nuštedrená\nuštedriť\nuštedrovať\nuštipačne\nuštipačnosť\nuštipačný\nuštipnutie\nuštipnúť\nuštipnutý\núštipok\nuštvanosti\nuštvaný\nuštvať\nuštvi\nuštvime\nuštvite\nušú\nušubraný\nušúľanú\nušúľať\núšust\núšustmi\nut\nÚT\nutábor\nutáboriť\nutáborovať\nutáborte\nuťahane\nuťahanosť\nuťahaný\nuťahať\nuťahovacieho\nuťahovač\nuťahovače\nuťahovači\nuťahováka\nuťahováku\nuťahované\nuťahovaní\nuťahovania\nuťahovaniach\nuťahovanie\nuťahovaním\nuťahovaniu\nuťahovať\nutajene\nutajenie\nutajenosť\nutajený\nutajiť\nutajoval\nutajovala\nutajovali\nutajovalo\nutajovanie\nutajovaný\nutajovať\nutajuj\nutajuje\nutajujem\nutajujeme\nutajuješ\nutajujete\nutajujme\nutajujte\nutajujú\nutajujúc\nutancovať\nUtápanie\nutápať\nuťapkaný\nutáraný\nuťatie\nuťať\nuťatý\nutečencovu\nutečenec\nutečenecký\nutečenka\nutečený\nútech\nútecha\nUtekáč\nUtekáča\nUtekáči\nUtekáčska\nutekáčske\nutekáčskeho\nutekáčskej\nUtekáčski\nutekáčsku\nutekáčsky\nutekáčskych\nUtekáčskym\nUtekáču\nutekajúci\nutekanie\nutekaním\nutekať\nútek\nuteliť\nuteľovať\nutenúť\nutenzílie\nutepe\nuteplenia\nutepliť\nutepľovanie\nutepľovať\nuteráčik\nuterák\nuteralgia\nuterinný\nuterizmus\nuteropexia\nuterosalpingografia\nuterotómia\nuterotonikum\nuterus\nútes\nutesnenia\nutesnenie\nUtesnením\nutesnený\nutesni\nutesnime\nutesnite\nutesniť\nutesňovací\nUtesňovacie\nutesňovaní\nutesňovania\nutesňovanie\nutesňovaním\nutesňovaniu\nutesňovať\nútesový\nutešene\nutešenie\nutešený\nutešiteľ\nutešiteľa\nutešitelia\nutešiť\nútešlivý\nútešný\nutešovania\nutešovanie\nutešovateľ\nutešovať\nutešujúci\nutešujúcimi\nUTF\nutiahnú\nutiahnúc\nutiahnutia\nutiahnutie\nutiahnutím\nutiahnutiu\nutiahnuto\nutiahnutosť\nutiahnuť\nutiahnutý\nutiecť\nutiekaní\nutiekania\nutiekať\nutieranieN\nutieraných\nutierať\nutiereň\nutierka\nutierňach\nutierňam\nutíchajúci\nutíchať\nutíchnutí\nutíchnuť\nutil\nutilít\nutilita\nutilitách\nutilitám\nutilitami\nutilitarista\nutilitaristicky\nutilitaristický\nutilitaristka\nutilitarizmus\nutilitárnosť\nutilitárny\nutilitársky\nutilitárstvo\nutilité\nutilitou\nutilitu\nutility\nutilizácia\nutínanie\nutínaním\nutínať\nutískanie\nutískaním\nutískať\nutisnuto\nutisnúť\nutisnutý\nutíšenia\nutíšenie\nutíšeniu\nutíšený\nutíšiteľný\nutíšiť\nutišovanie\nutišovať\nutišujúcejšej\nutišujúcejší\nutišujúcejšia\nutišujúcejšie\nutišujúcejšieho\nutišujúcejšiemu\nutišujúcejších\nutišujúcejším\nutišujúcejšími\nutišujúcejšiu\nutišujúcejšom\nutišujúcejšou\nutišujúci\nutišujúco\nútkami\nutkanie\nutkaný\nutkať\nutkávajú\nutkávaný\nútkoch\nútkom\nútkov\nútkový\nútku\nutkvelý\nutkvený\nutkvieť\nutkvievať\nútky\nutláčanie\nutláčaný\nutláčateľ\nutláčateľka\nutláčateľský\nutláčať\nutlačený\nutlačiť\nutlačoval\nutlačovanie\nutlačovaniu\nutlačovaný\nutlačovať\nutlačovateľ\nutlačovateľmi\nútlak\nutľapkať\nutľapkávať\nutĺcť\nutlimatívny\nutĺkanie\nutĺkaním\nutĺkať\nútlm\nutlmenia\nutlmenie\nutlmením\nutlmeniu\nutlmený\nutlmi\nutlmiť\nutlmoval\nutlmovala\nutlmovali\nutlmovalo\nutlmovania\nutlmovanie\nutlmovaním\nutlmovaniu\nutlmovaný\nutlmovať\nútlmovo\nútlmový\nutlmuje\nutlmujeme\nutlmujú\nútlo\nútlocit\nútlocitmi\nútlocitne\nútlocitnosť\nútlocitný\nútlosť\nútlučký\nútlunký\nútlušký\nútly\nutnúť\nuto\nUTO\nutocizmus\nútočení\nútočenia\nútočenie\nútočením\nútočiacach\nútočiacam\nútočiacami\nútočiaci\nútočiaí\nútočiaím\nútočísk\nútočisko\nútočíšť\nútočišťa\nútočišťami\nútočište\nútočišti\nútočišťom\nútočišťu\nútočiť\nútočne\nútočnícky\nútočníčka\nútočník\nútočnosť\nútočný\nútok\nutoň\nutonie\nutoniem\nutonieme\nutonieš\nutoniete\nutoňme\nutoňte\nutonutie\nutonúť\nutopenec\nutopenia\nutopenie\nutopením\nutopený\nutópia\nutopicky\nutopický\nutopista\nutopisticky\nutopistický\nutopistka\nutopiť\nutopizmus\nutor\nutorkový\nutorňajší\nutorok\nutrácané\nutrácaní\nutrácania\nutrácanie\nutrácaním\nutrácaniu\nutrácaných\nutrácať\nutracovať\nutrafiť\nutraktovať\nutrakvista\nutrakvizmus\nútrap\nútrapa\nútrapách\nútrapám\nútrapami\nutrápene\nutrápením\nutrápenosť\nutrápený\nutrápiť\nútrapy\nutrasie\nutrasú\nútrat\nútrata\nutratenie\nutrateniu\nutratený\nutratiť\nUtrecht\nUtrechte\nUtrechtská\nUtrechtu\nutretie\nutŕhač\nutŕhačný\nutŕhačský\nutŕhania\nutŕhanie\nutŕhať\nutrhnuté\nutrhnutí\nutrhnutú\nutrhnúť\nutriasli\nutriasol\nutriasť\nutriedenie\nutriedený\nutriediaci\nutriediť\nutrieďovanie\nutrieďovať\nutrieť\nutrinos\nutrmácaný\nutrmácať\nútrob\nútrobách\nútrobám\nútrobami\nútrobný\nútrobový\nútroby\nutrp\nutrpenie\nutrpený\nutrpieť\nútrpne\nútrpnosť\nútrpný\nutrúc\nutrúsených\nutrúsiť\nutrýznený\nutrýzniť\nutŕžený\nutŕžiť\nútržkovite\nútržkovito\nútržkovitosť\nútržkovitý\nútržkový\nútržok\nutuchnúť\nutúliť\nútulňa\nútulnosť\nútulný\nútulok\nututlania\nututlanie\nututlaniu\nututlaný\nututlať\nututlávané\nututlávania\nututlávanie\nututlávať\nutužená\nutuženia\nutuženie\nutuženiu\nutužiť\nutužovaní\nutužovania\nutužovanie\nutužovať\nutvárajúcich\nutváraná\nutvárané\nutváranej\nutváraní\nutvárania\nutváranie\nutváraním\nutváraniu\nutváraným\nutvárať\nútvar\nútvarový\nutvor\nútvor\nutvorenia\nutvorenie\nutvorením\nutvoreniu\nutvorený\nutvoriť\nutvorte\nutvrdení\nutvrdenie\nutvrdením\nutvrdiť\nutvrdovať\nutvrdzovaní\nutvrdzovať\nutýra\nutýraj\nutýrajme\nutýrajte\nutýrajú\nutýrajúc\nutýral\nutýrala\nutýrali\nutýralo\nutýram\nutýrame\nutýranosť\nutýraný\nutýraš\nutýrať\nutýrate\nuúročiteľnosť\nÚV\nuvädať\nuvädnutie\nuvädnúť\nuvädnutý\nuvádzací\nuvádzač\nuvádzačka\nuvádzajúci\nuvádzanie\nuvádzaný\nuvádzať\núvah\núvaha\núvahový\nuváľaný\nuváľať\núval\nuvalcovať\nuvalenia\nuvaleniami\nuvalenie\nuvalením\nuvaleniu\nuvalený\núvalina\nuvaliť\nuvaľkať\núvalmi\nÚvalmi\nuvaľované\nuvaľovania\nuvaľovanie\nuvaľovaním\nuvaľovať\nuvar\nuvarenia\nuvarenie\nuvarený\nuvariť\nuvaroval\nuvarovať\nuvarovit\nuvarte\nuvartovanie\nuvarujete\nuvarujú\nuväznenie\nuväznený\nuväzni\nuväznime\nuväznite\nuväzniť\nuväzňoval\nuväzňovala\nuväzňovali\nuväzňovalo\nuväzňovať\nuväzňuj\nuväzňuje\nuväzňujem\nuväzňujeme\nuväzňuješ\nuväzňujete\nuväzňujme\nuväzňujte\nuväzňujú\nuväzňujúc\núväzok\nuväzovanie\nuväzovať\nuvážene\nuváženie\nuváženosťou\nuvážený\nuvážiť\nuvážlivo\nuvážlivosť\nuvážlivý\nuvažovanie\nuvažovaný\nuvažovať\nuvažujúca\nuvažujúce\nuvažujúceho\nuvažujúcemu\nuvažujúci\nuvažujúcich\nuvažujúcim\nuvažujúcu\nuvea\nuvedene\nuvedenieN\nuvedeno\nuvedený\nuvedomele\nuvedomelejšej\nuvedomelejší\nuvedomelejšia\nuvedomelejšie\nuvedomelejšieho\nuvedomelejšiemu\nuvedomelejších\nuvedomelejším\nuvedomelejšími\nuvedomelejšiu\nuvedomelejšom\nuvedomelejšou\nuvedomelo\nuvedomelosť\nuvedomelý\nuvedomene\nuvedomenie\nuvedomenosť\nuvedomený\nuvedomiť\nuvedomovací\nuvedomovania\nuvedomovanie\nuvedomovaním\nuvedomovaniu\nuvedomovaný\nuvedomovať\nuvedomujúci\nuveitída\nuvelebenie\nuvelebený\nuvelebiť\nuvelebovať\nuveličene\nuveličenie\nuveličenosť\nuveličený\nuveličiť\nuver\núver\nuverejnenie\nuverejnený\nuverejni\nuverejnime\nuverejnite\nuverejniť\nuverejňovania\nuverejňovanie\nuverejňovaním\nuverejňovaniu\nuverejňovaný\nuverejňovať\nuvereného\nuverenia\nuverenie\nuveriteľný\nuveriť\núverné\núverní\núverných\núverovania\núverovanie\núverovaním\núverovaniu\núverovaný\núverovať\núverovo\núverový\nuverte\núvetrie\nuvi\nuviazanie\nuviazaný\nuviazať\nuviazl\nuviaznúc\nuviaznutie\nuviaznuť\nuviaznutý\nuviažuc\nuviď\nuvidená\nuvidenie\nuvidieť\nuviesť\nuviezť\nuvíjať\nuvije\nuvijem\nuvijeme\nuviješ\nuvijete\nuvijú\nuvijúc\nuvime\nuvítací\nuvítaná\nuvítanie\nuvítať\nuvite\nuviť\nUVL\nuvláčený\nuvláčiť\nuvládať\núvod\núvodie\núvodnikár\núvodnikárka\núvodník\núvodníkový\núvodný\núvodzovka\núvodzovky\nuvolnené\nuvoĺnené\nuvoľnene\nuvolnenia\nuvoľnenie\nuvoľnenosť\nuvolnenú\nuvoĺnenú\nuvolnených\nuvoľnený\nuvoľni\nuvolnila\nuvoĺnila\nuvolnili\nuvoĺnili\nuvoľnime\nuvolniť\nuvolnite\nuvoľnite\nuvoľniť\nuvoľňovací\nuvoľňovač\nuvoľňovanie\nuvoľňovaný\nuvoľňovať\nuvoľňujúci\núvoz\núvozový\núvrat\núvrať\núvratmi\núvraťový\nuvravenosti\nuvravený\nuvravieť\nuvrešťaný\nuvrhnutie\nuvrhnúť\nuvrhnutý\nuvrhovať\nuvrhuje\núvršie\nuvrzgnúť\nuvrznúť\nuvula\nuvzal\nuvzate\nuvzato\nuvzatosť\nuvzatý\nuvziať\núzadie\nuzákonenia\nuzákonenie\nuzákonením\nuzákoneniu\nuzákonený\nuzákoniť\nuzákoňovanie\nuzákoňovať\núzami\nuzamknutie\nuzamknúť\nuzamknutý\nuzamkýnať\nuzamnkúť\nuzamykacieho\nuzamykacích\nuzamykacím\nuzamykaní\nuzamykania\nuzamykanie\nuzamykaním\nuzamykateľný\nuzamykať\nuzancia\nuzanciám\nuzanciami\nuzancie\nuzancií\nuzanciu\nuzanční\nuzančných\nuzatvárací\nuzatvárajúci\nuzatvárane\nuzatváranie\nuzatváraný\nuzatvárateľnej\nuzatvárateľnom\nuzatvárateľných\nuzatvárateľným\nuzatvárateľnými\nuzatvárať\nuzatvor\nuzatvorene\nuzatvorenie\nuzatvorený\nuzatvoriť\nuzatvorte\nuzávera\nuzáver\nuzáverová\nuzavierací\nuzavierajúci\nuzavieraná\nuzavierané\nuzavieraní\nuzavierania\nuzavieranie\nuzavieraním\nuzavieraniu\nuzavierať\nuzávierka\nuzávierkový\nuzavrenia\nuzavrenie\nuzavrením\nuzavrený\nuzavrete\nuzavretie\nuzavreto\nuzavretosť\nuzavretý\nuzavrieť\nuzavrúc\nuzb\nuzbecký\nUzbečka\nUzbek\nUzbekistan\nuzbepečovať\núzd\nuzdách\nuzdám\nuzda\nuzdi\nuzdia\nuzdiaci\nuzdiť\nuzdravenie\nuzdravený\nuzdravie\nuzdraviť\nuzdravovanie\nuzdravovať\nuzdravujúcejšej\nuzdravujúcejší\nuzdravujúcejšia\nuzdravujúcejšie\nuzdravujúcejšieho\nuzdravujúcejšiemu\nuzdravujúcejších\nuzdravujúcejším\nuzdravujúcejšími\nuzdravujúcejšiu\nuzdravujúcejšom\nuzdravujúcejšou\nuzdravujúci\nuzdravujúco\núze\núzem\núzemčistý\núzemie\núzemková\núzemne\nuzemnene\nuzemnenie\nuzemnený\nuzemni\nuzemnime\nuzemnite\nuzemniť\núzemno\núzemnoplánovací\núzemnosprávny\nuzemňovací\nuzemňovacia\nuzemňovacieho\nuzemňoval\nuzemňovala\nuzemňovali\nuzemňovalo\nuzemňovaní\nuzemňovanie\nuzemňovať\nuzemňuj\nuzemňuje\nuzemňujem\nuzemňujeme\nuzemňuješ\nuzemňujete\nuzemňujme\nuzemňujte\nuzemňujú\nuzemňujúc\nuzemňujúci\núzemný\nuzhodnúť\nuzhovor\nuzhovoriť\nuzhovorte\nuzim\nuzimene\nuzimený\nuzimiť\núzkokoľajka\núzkokoľajný\núzkoprofilovo\núzkoprofilový\núzkoprsejšej\núzkoprsejší\núzkoprsejšia\núzkoprsejšie\núzkoprsejšieho\núzkoprsejšiemu\núzkoprsejších\núzkoprsejším\núzkoprsejšími\núzkoprsejšiu\núzkoprsejšom\núzkoprsejšou\núzkoprso\núzkoprsosť\núzkoprsý\núzkorozchodný\núzkosť\núzkostlive\núzkostlivo\núzkostlivosť\núzkostlivý\núzkostne\núzkostný\núzkošpecializovaného\núzkošpecializovaných\núzky\nuzli\nuzlíček\nuzlíčka\nuzlíčkami\nuzlíčkoch\nuzlíčkom\nuzlíčkov\nuzlíčku\nuzlíčky\nuzlíkatý\nuzlík\nuzlíkový\nuzlina\nuzlinový\nuzliť\nuzľovač\nuzlovatý\nuzlovito\nuzlovitosť\nuzlovitý\nuzlový\nuzmierenia\nuzmierenie\nuzmierený\nuzmieriť\nuzmierovať\nuznanie\nuznanlivo\nuznanlivosť\nuznanlivý\nuznaný\nuznášania\nuznášanianeschopnosť\nuznášanianeschopný\nuznášaniaschopnosť\nuznášaniaschopný\nuznášať\nuznateľnosť\nuznateľný\nuznať\nuznávací\nuznávajúci\nuznávanejší\nuznávania\nuznávanie\nuznávaním\nuznávaniu\nuznávaný\nuznávať\nuznesené\nuznesenie\nUzneseným\nuzniesť\nuznojený\nuznojiť\núzoch\nuzol\núzom\núzov\nUzovský\nuzretie\nuzretý\nuzrieť\nuzrozumene\nuzrozumenie\nuzrozumený\nuzrozumieť\nuzrúc\núzu\nuzuálny\nuzučký\nuzulinký\nuzunký\nuzurpácia\nuzurpáciu\nuzurpátor\nuzurpátormi\nuzurpátorský\nuzurpátorstvo\nuzurpovaní\nuzurpovania\nuzurpovanie\nuzurpovať\núzus\nuzváraný\nuzvárať\núzy\nUZz\nuž\nUŽ\nužala\nužalostený\nužalostiť\núžas\núžasnejšíF\núžasne\núžasnosti\nužasnuto\nužasnúť\nužasnutý\núžasný\núžeh\núžer\núžerách\núžerám\núžerami\núžera\núžernícky\núžerníctvach\núžerníctvam\núžerníctvo\núžerníčiť\núžerníčka\núžerník\núžerný\nUžhorod\nUžhorodčan\nužhorodský\nužialene\nužialeno\nužialenosť\nužialený\núžialený\nužialiť\nužieraná\nužierať\nÚžín\nužínať\núžina\núžinový\nužitia\nužitie\nužitím\nužitiu\núžitkovo\núžitkovosť\nužitkový\núžitkový\nužito\nužitočne\nužitočnosť\nužitočnosťN\nužitočný\núžitok\nužiť\núžiť\nužitý\nužívací\nužívajúci\nužívane\nužívanie\nužívaný\nužívateľ\nužívateľka\nužívateľný\nužívateľova\nužívateľovho\nužívateľovom\nužívateľovu\nužívateľsky\nužívateľský\nužívať\nuživení\nuživenie\nuživením\nuživiť\núživnosť\núžľab\núžľabie\núžľabina\nužovka\nužšej\nužší\nužšia\nužšie\nužšieho\nužšiemu\nužších\nužším\nužšími\nužšiu\nužšom\nužšou\nužuť\nužuvať\nv\nVA\nvabank\nvábec\nvábená\nvábení\nvábenie\nvábením\nvábeniu\nvábidlo\nvábievať\nvábiť\nvábivo\nvábivosť\nvábivý\nvábne\nvábnička\nvábnik\nVábnikom\nvábnosť\nvábny\nvábov\nváby\nvacat\nVáclav\nVáclave\nVáclavka\nVáclavke\nváclavku\nVáclavou\nVáclavova\nVáclavské\nVáclavského\nVáclavskej\nVáclavskom\nVáclavským\nVáclavy\nVacov\nVacove\nvacovský\nvačica\nváčik\nvačka\nvačkový\nvačok\nváčok\nväčšina\nväčšinovo\nväčšinový\nväčší\nväčšmi\nväčšmi\nVAD\nvád\nvadamékum\nvada\nvademecum\nVademecum\nvademék\nvademékach\nvademékam\nvádemékum\nvademékum\nvadenica\nvádí\nvadiace\nvadiaci\nvadiacich\nvadiacim\nvadiacou\nVadina\nvadiť\nvádium\nVádium\nvadne\nvadnosť\nvädnúcej\nvädnúci\nvädnúcich\nvädnutia\nvädnutie\nvädnúť\nvadný\nVadom\nvadózny\nVaduz\nVaduze\nvaduzský\nVaduzu\nvafle\nvagabundáž\nvagabund\nvagabundovať\nvagabundský\nvagant\nvagilný\nvagín\nvagínach\nvaginálny\nvagínam\nvagína\nvaginitída\nvaginizmus\nvaginorektálny\nvaginoskop\nvaginoskopia\nvagireh\nvágne\nvágnosť\nvágny\nvago\nvagón\nvagónik\nvagónka\nvagónovať\nvagónový\nvagotómia\nvagotónia\nvagus\nVagus\nváh\nvahadlo\nvahadlový\nváhach\nváhajúci\nváhajúcich\nvahan\nvahanec\nváhanie\nváhať\nváhavcov\nváhavo\nváhavosť\nváhavý\nváha\nVáh\nváhove\nVáhove\nváhovo\nváhovskú\nváhový\nvacherin\nvacherol\nváchovný\nVachta\nvaišja\nvaj\nvajang\nVajanský\nvajataní\nvajatanie\nvajataním\nvajatať\nvajce\nvajciami\nvajcorodosť\nvajcorodý\nvajcovite\nvajcovito\nvajcovitý\nvajcový\nvajčiak\nvajčitý\nvajda\nvajdelot\nvajec\nvaječnica\nvaječník\nvaječný\nvajgela\nvajíčko\nvajíčkovod\nvajíčkový\nvajka\nvajkam\nvajkami\nvajko\nVajnormi\nVajnoroch\nVajnorom\nvajnorská\nvajnorské\nvajnorskom\nvajnorskú\nVajnorský\nVajnory\nvajok\nVajsková\nVajskovej\nVajskovskej\nvajšja\nvakácie\nvakancia\nvakantný\nvakát\nvak\nvakcín\nvakcinácia\nvakcinačný\nvakcínach\nvakcinálny\nvakcínam\nvakcína\nvakcinovalo\nvakcinované\nvakcinovať\nvakcínový\nvakcinujú\nvakovať\nvakovitý\nvakovka\nvakový\nvákuí\nvakuol\nvakuola\nvakuom\nvákuovanie\nvákuovaním\nvákuovaný\nvákuovať\nvákuovo\nvákuový\nvákuum\nVaľa\nvalach\nValachovej\nvalachy\nvalal\nValalíkoch\nvalalmi\nvalalský\nváľanda\nváľandový\nváľanie\nValas\nvalaskobelianskych\nvalasky\nvalaský\nvalašiť\nvalaškári\nvalaška\nvalaškový\nValašska\nValašsko\nValašsku\nvalašsky\nvalašský\nvalaštička\nvalát\nváľať\nval\nvalce\nválce\nvalcovací\nvalcovač\nvalcovačka\nvalcovačský\nvalcovanie\nvalcovaný\nvalcovať\nvalcovite\nvalcovito\nvalcovitosť\nvalcovitý\nvalcovňa\nvalcovní\nvalcový\nvalcu\nValča\nvalček\nvalčekovitý\nvalčekový\nValči\nValčianskej\nvalčík\nvalčíkový\nValdemara\nvaldhorna\nvalec\nvaledikcia\nvalencia\nValencia\nValencijčan\nvalencijský\nvalenčný\nValentínach\nValentínam\nValentína\nValentín\nvalentinit\nvalentný\nValentová\nValentovej\nValentovou\nValentovú\nvalený\nvalér\nValera\nValér\nValere\nvalerián\nvaleriánach\nvaleriánam\nvaleriána\nvaleriánový\nValéria\nValeru\nValery\nvaletéria\nvalgózny\nValhala\nValhalla\nválch\nvalchár\nvalcha\nvalchovať\nvaliaca\nvaliace\nvaliaceho\nvaliacej\nvaliacich\nvaliacom\nvalibuk\nválí\nvalída\nvalidácia\nvalidita\nvaliditu\nvalidity\nvalidné\nvalidnejšie\nvalidnou\nvalidných\nValidným\nvalidovať\nvalihora\nValihorom\nValihoru\nvalín\nvaliť\nvalitých\nvalivo\nvalivý\nvaliznéria\nvaľkanie\nvaľkať\nValkov\nValkova\nValkove\nváľkovitý\nVaľkovňa\nVaľkovne\nValkovom\nValkovský\nValkovu\nváľkový\nValkýra\nValleta\nvallónsky\nvalmi\nvalmo\nvalne\nvalník\nvalníkový\nvalný\nváľok\nValón\nValónov\nvalor\nValor\nvalorizácia\nvalorizačný\nvalorizoval\nvalorizovala\nvalorizovali\nvalorizovalo\nvalorizovania\nvalorizovanie\nValorizovaním\nvalorizovaný\nvalorizovať\nvalorizuj\nvalorizuje\nvalorizujem\nvalorizujeme\nvalorizuješ\nvalorizujete\nvalorizujme\nvalorizujte\nvalorizujú\nvalorizujúc\nválov\nválovček\nválovec\nvalový\nValparaíso\nVaľu\nvaluátor\nvalút\nvaluta\nvalutovania\nvalutovanie\nvalutovo\nvalutový\nvalvula\nvalvulitída\nvám\nvami\nvamp\nvampír\nvampum\nvamýr\nvan\nvaň\nvanád\nvanadičitého\nvanadinit\nvanádiový\nvanádium\nvaňa\nvancouverskou\nVancouverský\nVánd\nvandal\nvandalizme\nvandalizmom\nvandalizmu\nvandalizmus\nvandalsky\nvandalský\nvandalstvo\nVanda\nvandeľ\nvander\nvandľa\nvandľami\nvandle\nvandli\nvandlík\nvandľoch\nvandľom\nvandľov\nvandľu\nvandrácky\nvandrák\nvandrech\nvandrem\nvandrev\nvandrovať\nvandrovka\nvandrovne\nvandrovnícky\nvandrovníctvach\nvandrovníctvam\nvandrovníctvo\nvandrovníčka\nvandrovník\nvandrovný\nvandry\nVanes\nVanesa\nvaní\nvanička\nvaničkový\nvanie\nvaniem\nvanieme\nvanieš\nvaniete\nvanilán\nvanilánový\nvanilín\nvanilínový\nvanilínvoý\nvanilka\nvanilkový\nvanitas\nvankúša\nvankúše\nvankúši\nvankúšik\nvankúš\nvankúšmi\nvankúšoch\nvankúšom\nvankúšov\nvankúšový\nvankúšu\nvaňme\nvánok\nvanov\nvaňový\nvaňte\nvanu\nVanuatu\nvanúci\nvanutí\nvanutie\nvanúť\nvany\nvápen\nvápenatenie\nvápenateniu\nvápenatieť\nvápenato\nvápenatosť\nvápenatý\nvápencový\nvápenec\nvápenica\nVápeník\nVápeníka\nvápenistý\nvápenitý\nvápenkár\nvápenka\nvápenník\nvápenno\nvápenný\nvapiti\nvápnach\nvápnam\nvápnené\nvápnení\nvápnenia\nvápnenie\nvápnením\nvápneniu\nvápni\nvápnia\nvápniac\nvápnik\nvápnikového\nvápnikovo\nvápnil\nvápnila\nvápnili\nvápnilo\nvápnim\nvápnime\nvápniš\nvápniť\nvápnite\nvápnitosť\nvápnitý\nvápno\nvápnový\nvaporizácia\nvár\nvara\nVaradka\nvárach\nvarák\nváram\nvaran\nvaranov\nvarant\nvarantmi\nvarantom\nvarantov\nvarantu\nVarany\nvára\nvar\nvarechár\nvarechárka\nvarecha\nvarenie\nvarený\nvareškár\nvareškárka\nvareška\nVarga\nVargu\nvarhán\nvarhaník\nVarhaňovská\nvarhaňovského\nVarhaňovskej\nvarhany\nvari\nvariabilita\nvariabilne\nvariabilnosť\nvariabilný\nvariaci\nvariácia\nvariačný\nvariancia\nvariánt\nvariantách\nvariantám\nvarianta\nvariant\nvariantmi\nvariantne\nvariantnosť\nvariantný\nvariátor\nvariátorom\nvariátorov\nvaricela\nvarič\nvaričovi\nvariech\nvarieta\nvarieté\nvarietný\nvarietou\nVariety\nvarievať\nvarikozita\nVarín\nVarína\nVaríne\nVarínom\nvariola\nvariometer\nvarioobjektív\nvarioval\nvariovala\nvariovali\nvariovalo\nvariovaním\nvariovaných\nvariovať\nvarírovať\nvariť\nvariuj\nvariuje\nvariujem\nvariujeme\nvariuješ\nvariujete\nvariujme\nvariujte\nvariujú\nvariujúc\nvarivo\nVarivosť\nvarix\nvarixov\nvariže\nvárka\nvarlatá\nvarna\nvarňa\nvarňami\nvarne\nvarni\nvarnica\nvarňou\nvarňu\nvarný\nvarostroj\nvarotrón\nvarou\nvarovanieN\nvarovaný\nvarovať\nvarovkyňa\nvarovne\nvarovný\nvarozita\nvarózny\nvarroáza\nVaršáv\nVaršava\nVaršavčan\nvaršavský\nvarta\nvartovať\nvarúj\nvarujúceho\nvarujúci\nvárus\nVary\nvaryto\nvás\nVasil\nVasiľ\nvaskulárny\nvaskulózny\nváš\nvaša\nvaše\nvašeho\nvašej\nvašemu\nvášeň\nvášho\nvaši\nvašich\nvašim\nvaším\nvašimi\nvášmu\nvášňach\nvášňam\nvášnivo\nvášnivosť\nvášnivý\nvašom\nvašou\nvášsvojím\nvašu\nvát\nvata\nvatelín\nvatelínový\nvaterit\nvatička\nvatier\nVatikán\nvatikánsky\nvatikánsky\nvatovanie\nvatovaný\nvatovať\nvatový\nvatra\nvatrička\nvatrísk\nvatrisko\nvatrový\nvaudeville\nVavrečka\nVavrečku\nvavrín\nVavrinec\nvavrínovo\nvavrínový\nVavrišovo\nváz\nvázach\nvazal\nvazalsky\nvazalský\nvazalstvo\nvázam\nvazari\nváza\nväz\nväzba\nväzbovo\nväzbový\nvazelínach\nvazelínam\nvazelína\nvazelín\nvazelínový\nväzeň\nväzenie\nväzenka\nväzenkyňa\nväzenský\nväzenstvo\nvázička\nväzieť\nväzila\nväziť\nväzív\nväzivo\nväzivový\nväzkosť\nväzký\nväzňa\nväzňami\nväzne\nväznenia\nväznenie\nväznením\nväzneniu\nväznený\nväzni\nväznica\nväzník\nväzníkový\nväzníky\nväznime\nväznite\nväzniteľov\nväzniť\nväzňoch\nväzňom\nväzňov\nväzňovi\nväzný\nväzobne\nväzobný\nvazodilatácia\nvazokonstrikcia\nvazoneuróza\nvazotónia\nvazotonikum\nväzový\nväzy\nVažca\nVažcami\nVažce\nVažci\nVažcom\nVažcu\nVažec\nVažecká\nvážene\nváženejší\nváženie\nváženosť\nváženosti\nvážený\nvážievať\nvážiť\nvážka\nvážky\nvážnejší\nvážne\nvážnosť\nvážny\nVažská\nvážsky\nvážsky\nVB\nvbehnúť\nvbehovala\nvbiehať\nvbíjať\nvbiť\nvbitý\nvbodnutie\nvbodnúť\nvbok\nvboriť\nvbŕdnuť\nvbudovali\nvbudované\nvbudovaní\nvbudovaním\nvbudovať\nVC\nvcapiť\nvcedenie\nvcelku\nvcítiť\nvciťovanie\nvciťovať\nvcupkať\nvcválať\nvčar\nvčas\nvčasne\nvčasnokresťanský\nvčasnosť\nvčasný\nvčasráno\nvčaššie\nvčel\nvčelár\nvčelárenie\nvčelárka\nvčelársky\nvčelársky\nvčelárstvach\nvčelárstvam\nvčelárstvo\nvčela\nvčelička\nvčelí\nvčelín\nvčelní\nvčelnica\nVčelník\nvčeľom\nvčeľou\nvčelstvo\nvčera\nvčerajší\nvčerajšok\nvčerty\nvčeš\nvčetne\nvčielka\nvčítane\nvčítanie\nvčlenenie\nvčlenený\nvčleniť\nvčleňovaní\nvčleňovania\nvčleňovanie\nvčleňovať\nVD\nvďačiť\nvďačne\nvďačnejšie\nvďačnejší\nvďačne\nvďačnosť\nvďačný\nvďaka\nvďakách\nvďakám\nvďakami\nvďaka\nvďakyplný\nvďakyvzdanie\nvdiak\nvdierať\nvdiktovať\nvdol\nvdova\nvdovec\nvdovecký\nvdovica\nvdovička\nVdovin\nVdovinom\nvdovský\nvdovstvo\nvdrapnúť\nvdrať\nvdrieť\nvdrobči\nvdrobčime\nvdrobčite\nvdrobčiť\nvdrúziť\nvdumať\nvduriť\nvdyhcový\nvdych\nvdýchnutie\nvdýchnuť\nvdýchnutý\nvdychovanie\nvdychovať\nvdychový\nvdychový\nvecička\nveciek\nvec\nvecko\nvecne\nvecno\nvecnosť\nvecný\nVečelkov\nvečeradlo\nvečerať\nvečera\nvečer\nvečeriava\nvečeriavaj\nvečeriavajme\nvečeriavajte\nvečeriavajú\nvečeriavajúc\nvečeriaval\nvečeriavala\nvečeriavali\nvečeriavalo\nvečeriavam\nvečeriavame\nvečeriavaš\nvečeriavať\nvečeriavate\nvečeriť\nvečerňajší\nvečerne\nvečernica\nvečerníček\nvečerníčka\nvečerníčkami\nvečerníčkoch\nvečerníčkom\nvečerníčkov\nvečerníčku\nvečerníčky\nvečerník\nvečerníkový\nvečerný\nvečerte\nvečier\nvečiereň\nvečierka\nvečierňach\nvečierňam\nvečierok\nvečite\nvečito\nvečitý\nvéčko\nvečne\nvečnosť\nvečnovečne\nvečný\nved\nveď\nVéd\nvédánta\nvedátor\nvedátormi\nveda\nvéda\nvedec\nvedeckobádateľský\nvedeckofantastický\nvedecko-fantastický\nvedecko-popularizačný\nvedecko-poznávací\nvedeckosť\nvedeckotechnický\nvedecko-technický\nvedeckovýskumný\nvedecky\nvedecký\nvedene\nvedenie\nvedeno\nvedený\nvedeť\nvedeta\nvedier\nvedierka\nvedierkach\nvedierkam\nvedierkami\nvedierkom\nvedierku\nvedierok\nvedieť\nvedítor\nvedkyňa\nvedľ\nvedľa\nvedľajší\nvedne\nvedno\nvedný\nvedomejšej\nvedomejší\nvedomejšia\nvedomejšieho\nvedomejšiemu\nvedomejších\nvedomejším\nvedomejšími\nvedomejšiu\nvedomejšom\nvedomejšou\nvedome\nvedome\nvedomie\nvedomky\nvedomo\nvedomosť\nvedomosťN\nvedomostne\nvedomostný\nvedomý\nvedra\nvedrá\nvedrách\nvedrám\nvedrami\nvedre\nvedrom\nvedru\nvédsky\nvedúci\nveduta\nvedychtivosť\nvedychtivý\nvedže\nveďže\nvegetabílie\nvegetabilizmus\nvegetácia\nvegetačný\nvegetariánN\nvegetariánka\nvegetariánsky\nvegetariánsky\nvegetariánstvach\nvegetariánstvam\nvegetariánstvo\nvegetatívne\nvegetatívny\nvegetovanie\nvegetovať\nvehemencia\nvehementne\nvehementnosť\nvehementný\nvehikel\nvehikla\nvehiklami\nvehikle\nvehikli\nvehikloch\nvehiklom\nvehiklov\nvehiklu\nvehikulum\nVechca\nVechci\nVechec\nvecheť\nvechtík\nvejačka\nvejárik\nvejár\nvejármi\nvejárovite\nvejárovito\nvejárovitý\nvejárový\nvejka\nvejmutovka\nvejúca\nvejúcej\nvejúci\nvejúcich\nvek\nveko\nvekove\nvekovečný\nvekovitý\nvekovo\nvekový\nvekslácky\nveksláctvach\nveksláctvam\nveksláctvo\nveksláčka\nvekslák\nveksloval\nvekslovala\nvekslovali\nvekslovalo\nvekslovať\nveksluj\nveksluje\nvekslujem\nvekslujeme\nveksluješ\nvekslujete\nvekslujme\nvekslujte\nvekslujú\nvekslujúc\nvektor\nvektorový\nvektorový\nveľa\nveľactený\nveľadí\nveľadôstojný\nveľakrát\nveľalačný\nveľa\nveľanásobne\nveľanásobný\nvelančný\nvelára\nvelárny\nveľaročný\nveľasľubný\nVeľatoch\nVeľaty\nveľaváznamný\nveľavážený\nveľavravne\nveľavravnosť\nveľavravný\nveľavýznamne\nveľavýznamný\nveľavýznamný\nVelčický\nveľdiel\nveľdielo\nveľduch\nveleba\nvelebe\nvelebenie\nvelebený\nvelebiť\nvelebne\nvelebnosť\nvelebný\nvelebou\nvelebu\nveleby\nVelehrad\nVelehrade\nVelehradského\nVelehradskej\nvelel\nvelená\nvelené\nvelenie\nvelenou\nveletoč\nveletoče\nvelezrád\nvelezrada\nvelezradca\nvelezradcovský\nvelezradkyňa\nvelezradný\nveľhôr\nveľhora\nveľhorách\nveľhorám\nveľhorami\nveľhory\nveľchrám\nveliaci\nvelice\nVelický\nVelič\nveličazný\nveličenstvo\nveličina\nveličiť\nveličizný\nVeličná\nvelieť\nvelievať\nveliger\nvelikán\nvelikánsky\nvelikánsky\nvelikáš\nvelikášsky\nvelikášsky\nvelikášstvach\nvelikášstvam\nvelikášstvo\nVeliko\nvelikosti\nvelikostí\nveliký\nvelín\nvelína\nvelíne\nvelínmi\nvelínoch\nvelínom\nvelínov\nvelínu\nvelíny\nveliteľ\nveliteľka\nVeliteľova\nveliteľovať\nveliteľsky\nveliteľský\nveliteľstvo\nveliť\nveľjašterL\nveľkňaz\nveľkňazovej\nveľkňazovho\nveľkňazovo\nveľkňazových\nveľko\nveľkoakcionári\nveľkoakcionárom\nveľkobaňa\nveľkobaní\nveľkobanka\nveľkobankách\nveľkobankám\nveľkobankami\nVeľkobankári\nveľkobankárov\nveľkobanke\nveľkobankou\nveľkobanku\nveľkobanky\nveľkobierovská\nveľkoburžoázia\nveľkoburžoázny\nveľkodistribúcia\nveľkodistribučný\nveľkododávateľa\nveľkododávatelia\nVeľkododávateľom\nveľkododávateľov\nveľkodušne\nveľkodušnosť\nveľkodušný\nveľkofabrikant\nveľkofariem\nVeľkofarma\nveľkofarmám\nveľkofarmár\nveľkofarmárov\nveľkofarmy\nveľkofilm\nveľkoformátový\nveľkohubejšej\nveľkohubejší\nveľkohubejšia\nveľkohubejšie\nveľkohubejšieho\nveľkohubejšiemu\nveľkohubejších\nveľkohubejším\nveľkohubejšími\nveľkohubejšiu\nveľkohubejšom\nveľkohubejšou\nveľkohubo\nveľkohubosť\nveľkohubý\nveľkochovatelia\nveľkochovateľmi\nveľkochovateľov\nveľkochov\nveľkoimportérov\nveľkokapacitný\nveľkokapitál\nveľkokapitalisti\nveľkokapitalistickej\nveľkokapitalistov\nveľkokapitalistu\nveľkokapitálmi\nveľkokapitálový\nveľkoklasý\nveľkokňažná\nveľkoknieža\nveľkokniežatstva\nveľkokonzument\nVeľkokríža\nVeľkokrtíšska\nveľkokrtíšske\nveľkokrtíšskeho\nveľkokrtíšskej\nveľkokrtíšskemu\nveľkokrtíšski\nVeľkokrtíšskom\nveľkokrtíšskou\nveľkokrtíšsku\nveľkokrtíšsky\nveľkokrtíšskych\nveľkokrtíšskym\nveľkokuchýň\nveľkokuchyne\nveľkokvetý\nveľkolepejší\nveľkolepo\nveľkoleposť\nveľkolepý\nveľkomajitelia\nveľkomesto\nveľkomestsky\nveľkomestský\nveľkomešťanov\nveľkomlyn\nveľkomlyny\nveľkomocenskej\nveľkomoravský\nveľkomožne\nveľkomožný\nveľkomyseľne\nveľkomyselnosť\nveľkomyseľnosť\nveľkomyseľný\nVeľkonákupňa\nveľkonákupne\nveľkonákupný\nVeľkonemeckej\nveľkonočný\nveľkoobchod\nveľkoobchodne\nveľkoobchodnícky\nveľkoobchodníčka\nveľkoobchodníčka\nveľkoobchodník\nveľkoobchodno\nveľkoobchodný\nveľkoodberateľ\nveľkoodberateľka\nveľkoodberateľský\nveľkooký\nveľkopansky\nveľkopanský\nveľkopanstiev\nveľkopekáreň\nveľkopekárňach\nveľkopekárňam\nveľkopestovateľ\nveľkopestovateľka\nveľkopiatkový\nveľkoplodý\nveľkoplošne\nveľkoplošný\nveľkopodnikateľ\nveľkopodnikateľa\nveľkopodnikatelia\nveľkopodnikateľmi\nveľkopodnikateľom\nveľkopodnikateľov\nveľkopodnikateľovi\nveľkopodnik\nVeľkopoľská\nVeľkopoľského\nVeľkopoľskej\nveľkopráčovne\nveľkopráčovní\nveľkopráčovňou\nveľkopredaj\nveľkopredaja\nveľkopredaji\nveľkopredajňa\nveľkopredajný\nveľkopredajom\nveľkopredajov\nveľkopriemysel\nveľkopriemyselná\nveľkopriemyselné\nveľkopriemyselného\nveľkopriemyselnej\nVeľkopriemyselní\nveľkopriemyselník\nveľkopriemyselníka\nveľkopriemyselníkov\nveľkopriemyselných\nveľkopriemysle\nveľkopriemyslu\nveľkopriestorovo\nveľkopriestorový\nveľkopriestory\nveľkoproducent\nVeľkoproducenti\nveľkoproducentmi\nveľkoproducentom\nveľkoproducentov\nveľkoprodukcia\nveľkoprodukčný\nveľkorážové\nveľkorážovej\nveľkorážovú\nveľkorážových\nveľkorozmerný\nveľkorýpadiel\nveľkorýpadlá\nveľkorýpadlo\nveľkorysejšej\nveľkorysejší\nveľkorysejšia\nveľkorysejšie\nveľkorysejšieho\nveľkorysejšiemu\nveľkorysejších\nveľkorysejším\nveľkorysejšími\nveľkorysejšiu\nveľkorysejšom\nveľkorysejšou\nveľkoryso\nveľkorysosť\nveľkorysý\nveľkosériovo\nveľkosériový\nveľkosklad\nveľkospotrebiteľ\nveľkospotrebiteľka\nveľkospotrebiteľský\nveľkostatkami\nveľkostatkár\nveľkostatkárka\nveľkostatkársky\nveľkostatkársky\nveľkostatkoch\nveľkostatkom\nveľkostatkov\nveľkostatku\nveľkostatky\nveľkostatok\nveľkosť\nveľkostne\nveľkostný\nveľkostroj\nveľkostroja\nveľkostroje\nveľkostrojov\nveľkosvetsky\nveľkosvetský\nveľkošarišský\nveľkotýždňový\nveľkouržoácia\nVeľkoústa\nveľkoústo\nveľkoústym\nveľkovojvoda\nveľkovojvodkyňa\nveľkovojvodstva\nveľkovojvodstve\nveľkovojvodstvo\nveľkovojvodstvom\nveľkovojvodu\nveľkovýkrm\nveľkovýkrmňa\nveľkovýkrmní\nVeľkovýkrmní\nveľkovyrábateľ\nveľkovýrob\nveľkovýroba\nveľkovýrobca\nveľkovýrobcami\nveľkovýrobcoch\nveľkovýrobcom\nveľkovýrobcov\nveľkovýrobcovia\nveľkovýrobcu\nveľkovýrobne\nveľkovýrobný\nveľkovývozcom\nveľkozávod\nveľkozrnný\nVeľkrop\nveľký\nveľmajster\nveľmajstrovský\nveľmajstrovstvo\nveľmi\nveľmi\nveľmocensky\nveľmocenský\nveľmoc\nveľmož\nveľmožský\nveloce\nvelociped\nvelocipéd\nvelocipedista\nvelodrom\nvelodróm\nveloduší\nveľrieka\nveľríša\nveľrybárska\nveľrybársky\nveľryba\nveľrybí\nvelter\nveltlín\nveltlínsky\nveľtok\nveľtrh\nveľtrhový\nveltrlín\nveľtržný\nveľtucet\nvelum\nvélum\nvelúr\nvelúrmi\nvelúrový\nvelúry\nvelvet\nVelvet\nVelvete\nVelvetoch\nVelvetu\nVelvety\nveľvyslancova\nveľvyslancovho\nveľvyslancových\nveľvyslanec\nveľvyslanecký\nveľvyslanectvo\nveľvyslankyňa\nvemä\nvemenatý\nvemeno\nvemien\nvemienko\nvemienok\nvén\nvéna\nvenaktázia\nvencovať\nvencovitý\nvencový\nvenček\nvenčenie\nvenči\nvenčime\nvenčite\nvenčiť\nVendelin\nVendelina\nVendelín\nVendelinom\nvendeta\nvendete\nvendetou\nvendetu\nvendety\nvéne\nvenerabilis\nvenerabilný\nvenerický\nvenerik\nvenerológ\nvenerológia\nvenerologické\nvenerológie\nvenesekcia\nVenezia\nVenezuela\nvenezuelčan\nVenezuelčan\nvenezuelský\nveni\nveniec\nvenografia\nveno\nvenosť\nvenovací\nvenovanie\nvenovaný\nvenovať\nvenózny\nventilácia\nventilačný\nventilátor\nventilátorový\nventil\nventilček\nventilmi\nventiloval\nventilovala\nventilovali\nventilovalo\nventilovania\nventilovanie\nventilovaný\nventilovať\nventilový\nventiluj\nventiluje\nventilujem\nventilujeme\nventiluješ\nventilujete\nventilujme\nventilujte\nventilujú\nventilujúc\nventrálny\nventrikulárny\nventrodorzálny\nVentura\nvenujúci\nvenula\nvenuša\nVenuša\nvenušin\nvenúva\nvenúvaj\nvenúvajme\nvenúvajte\nvenúvajú\nvenúvajúc\nvenúval\nvenúvala\nvenúvali\nvenúvalo\nvenúvam\nvenúvame\nvenúvaš\nvenúvať\nvenúvate\nvény\nVeporských\nver\nvera\nverabohu\nverabože\nveraikon\nverajach\nverajam\nverajami\nveraje\nverají\nveranda\nverandička\nverandový\nverb\nverbalista\nverbalisticky\nverbalistický\nverbalistka\nverbalizmus\nverbalizoval\nverbalizovala\nverbalizovali\nverbalizovalo\nverbalizovať\nverbalizuj\nverbalizuje\nverbalizujem\nverbalizujeme\nverbalizuješ\nverbalizujete\nverbalizujme\nverbalizujte\nverbalizujú\nverbalizujúc\nverbálny\nverbena\nVerbena\nverbista\nverbovač\nverbovača\nVerbovači\nverbovačka\nverbovačkách\nverbovačky\nverbovačov\nverbované\nverbovania\nverbovanie\nverbovať\nverbovník\nverbum\nverbunk\nvercajg\nvercajgmi\nvercajgoch\nvercajgom\nvercajgov\nvercajgu\nvercajgy\nvercajk\nverdikt\nverdiktmi\nverdúra\nverej\nverejne\nverejno\nverejnopolitická\nverejnoprávnosť\nverejnoprávny\nverejnoprospešne\nverejnoprospešný\nverejnosť\nverejný\nverenec\nverenica\nverený\nverestovať\nvergeľ\nVergílius\nveriaci\nverifikácia\nverifikačný\nverifikátora\nverifikátorom\nverifikátory\nverifikovania\nverifikovanie\nverifikovaný\nverifikovať\nveriteľ\nveriteľka\nVeriteľova\nveriteľovo\nveriteľových\nveriteľovým\nveriteľsky\nveriteľský\nveriť\nverizmus\nverk\nverkeľ\nverkľa\nverkľami\nverkle\nverkli\nverklikár\nverklík\nverklíkovania\nverklíkovať\nverkľoch\nverkľom\nverkľov\nverkľový\nverkľu\nverkom\nvermicelli\nvermifóbia\nvermikulitu\nVermont\nvermut\nvermút\nvermútmi\nvermútový\nVernár\nVernári\nvernejší\nverneovka\nverne\nvernier\nvernisážach\nvernisážam\nvernisáž\nvernosť\nvernosťN\nvernostné\nvernostný\nvernovka\nverný\nVerona\nVerone\nveronika\nVeronika\nVeronou\nVeronskej\nVeronu\nVerony\nversa\nVersaillskej\nVersatil\nVersatile\nversatilov\nVerse\nVerso\nversológia\nversta\nVersu\nversus\nverša\nveršami\nverše\nverši\nveršikár\nveršík\nveršíkovať\nverš\nveršoch\nveršom\nveršotepec\nveršotepecký\nveršotepectvo\nveršov\nveršovací\nveršovačka\nveršovane\nveršovanie\nveršovanka\nveršovaný\nveršovať\nveršovec\nveršovníctvo\nveršovník\nveršový\nveršu\nverte\nvertebra\nvertebrálny\nvertebrata\nvertex\nverticilióza\nvertigofóbia\nvertikál\nvertikálach\nvertikálam\nvertikála\nvertikalizmus\nvertikálne\nvertikálny\nvertizola\nveru\nverubože\nveruka\nveruže\nverv\nvervách\nvervám\nvervami\nverva\nvervný\nverz\nverzál\nverzálach\nverzálam\nverzála\nverzálka\nverzálkový\nverzálový\nverzatilita\nverzatilka\nverzatilky\nverzia\nverzifikácia\nverzírovaný\nverzus\nVesele\nveselica\nveselie\nveseliť\nveselo\nveseloherne\nveselohernosť\nveseloherný\nveselohra\nveselosť\nveselšej\nveselší\nveselšia\nveselšie\nveselšieho\nveselšiemu\nveselších\nveselším\nveselšími\nveselšiu\nveselšom\nveselšou\nveselý\nvesiculitis\nvesielko\nvesielok\nvesien\nves\nveskej\nveslár\nveslárka\nveslársky\nveslársky\nveslárstvach\nveslárstvam\nveslárstvo\nvesliarsku\nveslica\nveslo\nveslovanie\nveslovať\nveslový\nvesmír\nvesmírčan\nvesmírny\nvesna\nVesna\nvesperale\nvestálka\nvesta\nvestenickej\nVestenický\nvestfál\nvestibul\nvestibulmi\nvestibulológia\nvestibulový\nvestibulum\nvestička\nvestník\nvestový\nVeszprémsky\nvešanie\nvešaný\nvešať\nvešiačik\nvešiak\nvešiakový\nvešiavať\nveštba\nveštec\nveštecky\nveštecký\nveštectvo\nvešti\nveštiaci\nveštiareň\nveštiarňach\nveštiarňam\nveštica\nveštime\nveštite\nveštiť\nveštkyňa\nvet\nVET\nveta\nveter\nveterán\nveteránka\nveteránsky\nveterinár\nveterinárka\nveterinárnoochranný\nveterinárny\nveterinársky\nveterinársky\nveterinárstvach\nveterinárstvam\nveterinárstvo\nveterina\nveternica\nveterník\nveterno\nveternosti\nveterný\nvetevnatý\nvetchejšej\nvetchejší\nvetchejšia\nvetchejšie\nvetchejšieho\nvetchejšiemu\nvetchejších\nvetchejším\nvetchejšími\nvetchejšiu\nvetchejšom\nvetchejšou\nvetcho\nvetchosť\nvetchučký\nvetchý\nvetička\nvetiť\nvetník\nvetný\nveto\nvetoslovie\nvetovania\nvetovanie\nvetovaním\nvetovaniu\nvetovaný\nvetovať\nvetrací\nvetráčik\nvetrák\nvetrákový\nvetranie\nvetraný\nvetrateľných\nvetrať\nvetrené\nvetríček\nvetríčka\nvetríčkami\nvetríčkoch\nvetríčkom\nvetríčkov\nvetríčku\nvetríčky\nvétriesku\nvétriesky\nvetrík\nvetrísk\nvetrisko\nvetristo\nvetristý\nvetriť\nvetrolam\nvetrolamový\nvetrolom\nvetromer\nvetromilný\nvetroňa\nvetrone\nvetroni\nvetroň\nvetroňmi\nvetroňoch\nvetroňom\nvetroňov\nvetroňový\nvetroňu\nvetroplach\nvetrovka\nvetrovkový\nvetrovo\nvetrový\nvetva\nvetvene\nvetvenia\nvetvenie\nvetveniu\nvetvený\nvetvi\nvetviaci\nvetvica\nvetvička\nvetvime\nvetvistý\nvetvite\nvetviť\nvetvový\nveverica\nveveričí\nveverička\nvexácia\nvexillum\nvexiloid\nvexilológia\nvezenia\nvezenie\nvezený\nveziko\nvezikokéla\nvezikula\nvezikulitída\nvezír\nVezuv\nvezuvián\nvezuvský\nveža\nveženie\nvežiace\nvežiaci\nvežiacich\nvežiacim\nvežiacou\nvežiak\nvežička\nvežiť\nvežkomysežnosť\nvežovito\nvežovitý\nvežový\nVGA\nvhaczovať\nvhadzované\nvhadzovania\nvhadzovanie\nvhadzovaním\nvhadzovanú\nvhadzovať\nvháňanie\nvháňaním\nvháňaný\nvháňať\nvhieť\nVHJ\nvhĺbenie\nvhĺbením\nvhĺbenina\nvhĺbený\nvhĺbiť\nvhlobené\nvhnal\nvhnalo\nvhnať\nvhne\nvhod\nvhodenia\nvhodenie\nvhodeniu\nvhodený\nvhodiť\nvhodnejší\nvhodne\nvhodniť\nvhodnosť\nvhodný\nvhopsovať\nvhor\nvhrčať\nvhŕknuť\nvhrkotať\nvhrmi\nvhrmieť\nvhrmotať\nvhrň\nvhrnie\nvhrniem\nvhrnieme\nvhrnieš\nvhrniete\nvhrňme\nvhrňte\nvhrnú\nvhrnúc\nvhrnul\nvhrnula\nvhrnuli\nvhrnulo\nvhrnúť\nvhrúžili\nvhrúžiť\nvhrýzť\nVHS\nvhučať\nvhupnutie\nvhupnúť\nVHV\nvchádzaní\nvchádzania\nvchádzaním\nvchádzať\nvchod\nvchodový\nvchrstnúť\nvi\nVI\nvia\nviac\nviacatómový\nviacbalíkových\nviacbodový\nviacbojár\nviacbojárka\nviacbojársky\nviacboj\nviaccestný\nviacciferné\nviaccifernú\nviacciferných\nviacčlennosť\nviacčlenný\nviacdenný\nviacdetnosť\nviacdetný\nviacdielny\nviacdielový\nviacdimenzionálny\nviacdňový\nviacej\nviacejčlenný\nviacerako\nviaceraký\nviacero\nviacerý\nviacetapová\nviacetážový\nviac\nviacfarebne\nviacfarebnosť\nviacfarebný\nviacfázovo\nviacfázový\nviacfunkčný\nviacizbový\nviacjadrový\nviacjazyčne\nviacjazyčnosť\nviacjazyčný\nviackanálový\nviackoľajnosť\nviackoľajný\nviackrát\nviackvetý\nviacmenej\nviacmesačný\nviacmetrový\nviacmiestny\nviacmiliónový\nviacmocný\nviacmotorový\nviacnárodný\nviacnásobne\nviacnásobný\nviacnásobok\nviacnožový\nviacpočetný\nviacpodlažný\nviacpolohový\nviacpólový\nviacposchodový\nviacpramenný\nviacprogramový\nviacradlicový\nviacradový\nviacramenný\nviacranové\nviacrázovo\nviacrázový\nviacrečový\nviacriadkový\nviacročný\nviacrozmerne\nviacrozmernosť\nviacrozmernosti\nviacrozmerný\nviacrýchlostný\nviacslovný\nviacstopový\nviacstopý\nviacstranového\nviacstupňový\nviacsýtny\nviactisícové\nviactisícového\nviactisícových\nviacúčelovo\nviacúčelový\nviacuholníkový\nviacúrovňový\nviacužívateľské\nviacvláknový\nviacvretenový\nviacvrstvovo\nviacvrstvový\nviacvýznamovosť\nviacvýznamový\nviaczdrojový\nviaczložkový\nviacznačnosť\nviacznačný\nviaczväzkový\nviacženstvo\nviacžilový\nviadukt\nviaduktmi\nviachlasne\nviachlasný\nviachlasovo\nviachlasový\nviachlasý\nviachodinový\nVianoce\nvianočka\nvianočkový\nvianočne\nvianočný\nviatí\nviatie\nviať\nviatych\nviazací\nviazač\nviazače\nviazačka\nviazaču\nviazane\nviazanica\nviazanička\nviazanie\nviazanka\nviazanosť\nviazaný\nviazáreň\nviazať\nViazmy\nviaznúc\nviaznuci\nviaznutí\nviaznutia\nviaznutie\nviaznutím\nviaznuť\nviažuc\nviažuce\nviažúci\nvibrácia\nvibračne\nvibračný\nvibrafón\nvibramách\nvibramka\nvibramoch\nvibramové\nvibramy\nvibranta\nvibrato\nvibrátor\nvibrolisovania\nvibrovanie\nvibrovať\nvibrujúci\nvicegubernátorom\nviceguvernér\nviceguvernérskej\nviceguvernérsky\nviceguvernérskym\nvicekancelár\nvicekancelára\nvicekancelárom\nvicekancelárovi\nvicekonzul\nvicekonzulka\nvicekonzulský\nvicemajster\nvicemajsterka\nviceminister\nviceministra\nviceministri\nviceministrom\nviceministrov\nviceministrovi\nvicemiss\nvicepremiér\nvicepremiérka\nviceprezident\nviceprezidentka\nviceprezidentovho\nviceprezidentský\nviceprimátor\nviceprimátormi\nvici\nvicinálny\nviciózny\nvictorijský\nviď\nvídaný\nvídať\nvídavať\nvid\nvideat\nvideí\nvidenie\nvidený\nvideodísk\nvideodiska\nvideodiská\nvideodisko\nvideodisku\nvideofilm\nvideofón\nvideofónov\nvideohra\nvideokamera\nvideokamier\nvideokazeta\nvideoklip\nvideokonferencia\nvideo\nvideomagnetofón\nvideonahrávač\nvideonahrávka\nvideopáska\nvideopesnička\nvideopesničkový\nvideopožičovňa\nvideopožičovní\nvideoprehrávač\nvideoprogram\nvideoprojekcia\nvideorekordéra\nvideorekordér\nvideorekordéri\nvideorekordérmi\nvideorekordéroch\nvideorekordérom\nvideorekordérov\nvideorekordéru\nvideorekordéry\nvideotechnický\nvideotechnika\nvideoték\nvideotékach\nvideotékam\nvideotéka\nvideotelefón\nvideozáznam\nvidi\nvidiaci\nvidiecky\nvidiečan\nvidiečanka\nvidiek\nvidiel\nvidien\nvidieť\nvidimácia\nvidina\nviditeľne\nviditeľnosť\nviditeľný\nvidiu\nvidlách\nvidlám\nvidlami\nvidlatý\nvidlica\nvidlicovite\nvidlicovito\nvidlicovitý\nvidlicovo\nvidlicový\nvidlička\nVidličková\nvidličnatý\nvidlovitý\nvidly\nvidnieť\nvidniť\nvidno\nvidný\nvidomý\nvidovať\nvidový\nviečko\nviečkovanie\nViedenčan\nViedenčanka\nViedeň\nViedensky\nviedenský\nviechár\nviechať\nviecha\nviek\nvien\nvienko\nvienok\nVientiančan\nvientiansky\nvientiansky\nViera\nviera\nVierka\nVierkou\nVierku\nVierky\nvierohodne\nvierohodnosť\nvierohodný\nvierolomca\nvierolomne\nvierolomníci\nvierolomník\nvierolomníkov\nvierolomnosť\nvierolomný\nVieroslava\nvieroučný\nvierouka\nvierovyznanie\nvierozvest\nvierozvestca\nvierozvestský\nvierozvestský\nvierozvetský\nvierst\nvieska\nviest\nviesť\nvieška\nvietn\nVietnam\nvietnamčín\nvietnamčina\nVietnamec\nVietnamka\nvietnamsky\nvietnamský\nvietorček\nvietor\nviezť\nvigilancia\nvigília\nVígľaš\nVígľaša\nVígľaši\nVígľašský\nvignete\nvignetou\nvignetu\nvignety\nvigniet\nvigoň\nVigone\nvigoňové\nvigoňovú\nvigvam\nvihára\nVihorlat\nvihorlatský\nvíchor\nvíchric\nvíchrica\nvíchriť\nvíchrový\nvii\nVII\nviii\nVIII\nvije\nvijem\nvijeme\nviješ\nvijete\nvijo\nvijó\nvijú\nvijúc\nvijúce\nvijúcemu\nvík\nvikár\nvikariát\nvikariátmi\nvikársky\nvikárstvach\nvikárstvam\nvikárstvo\nVikartovský\nvika\nvíkend\nvíkendovať\nvíkendový\nvikiera\nvikier\nvikieri\nvikierový\nviking\nviklefizmus\nViko\nvikomt\nVikovi\nViktor\nviktória\nviktoriánsky\nViktória\nViktorín\nViktorína\nViktorínova\nViktorkou\nViktorky\nViktormi\nViktorovu\nvikuňa\nvil\nvílach\nvílam\nvila\nvíla\nvili\nViliamami\nViliam\nViliem\nvílin\nvilka\nvillalón\nVilma\nVilniusan\nVilnius\nvilniusky\nvilniusky\nvilo\nvilový\nvilózny\nvime\nvimpel\nvimperk\nvin\nvín\nvínach\nvínam\nvinár\nvináreň\nvinárenský\nvinárka\nvinárňach\nvinárňam\nvinárnička\nvinárnik\nvinársky\nvinársky\nvinárstvach\nvinárstvam\nvinárstvo\nvina\nvinaN\nVinca\nVince\nvínce\nVincent\nVincente\nVincentka\nVincentku\nVincentky\nVinci\nvincúr\nvinčestrovka\nvínčisko\nvindikácia\nvinea\nvínečiek\nvínečko\nvinen\nvinený\nvinet\nvineta\nvini\nviniacich\nviniacou\nvinica\nvinická\nVinický\nViničiek\nvinič\nViničkách\nviničku\nViničky\nviničný\nviničový\nvinidur\nvinidure\nvinidurmi\nviniduroch\nvinidurom\nvinidurov\nvinidurový\nviniduru\nvinidury\nvinikajúci\nviniť\nvínkach\nvínkam\nvínko\nvinkulácia\nvinkulovania\nvinkulovanie\nvinkulovaním\nvinkulovaný\nvinkulovať\nvinna\nvinne\nvinníčka\nvinník\nvinný\nvínny\nVino\nvinobranie\nVinodol\nVinodole\nVinodolu\nvinohr\nvinohrad\nvinohradnej\nvinohradnícky\nvinohradníctvach\nvinohradníctvam\nvinohradníctvo\nvinohradníčka\nvinohradník\nvinohradská\nvinohradskú\nVinohradský\nvínok\nvíno\nvínorodá\nvínorodej\nvínorodých\nVinosadoch\nVinosady\nvínoték\nvínotékach\nvínotékam\nvínotéka\nvinou\nvinovato\nvinovatý\nvínovica\nvínovo\nvínovočervený\nvínový\nvinša\nVinša\nvinše\nvinši\nvinš\nvinšmi\nvinšoch\nvinšom\nVinšom\nvinšov\nvinšovačky\nvinšovať\nvinšovníčka\nvinšovník\nvinšu\nvintovka\nvinúce\nvinúcemu\nvinúci\nvinúcou\nvinutie\nvinuto\nvinúť\nvinutý\nvinyl\nVinyl\nvinylácia\nvinylchlorid\nvinylchloridu\nvinylov\nvinylové\nvinylovej\nvinylovou\nvinylovú\nvinylových\nviolácia\nviola\nViola\nviolencia\nviolente\nviolet\nViolet\nvioletový\nviolino\nviolista\nviolistka\nviolistka\nviolka\nvioloncello\nviolončelista\nviolončelistka\nviolončelo\nviolončelový\nviolončiel\nviolový\nviomycín\nVIP\nvíra\nvirago\nvír\nvirement\nvirémia\nvírenia\nvírenie\nvírením\nvírený\nvirgáč\nVirgania\nvirgas\nvirgať\nvirginal\nVirgínia\nVirgínie\nVirgínii\nvirginita\nVirgíniu\nVirgínska\nVirgo\nvirguľa\nvirguľový\nvíriaci\nvíriacich\nvirilita\nvirilizácia\nvirilizmus\nvirilný\nvirión\nvíriť\nvírivka\nvírivo\nvírivosť\nvírivý\nvirogénny\nvirológ\nvirológia\nvirologický\nvirologička\nvirologička\nvirostatikum\nvírový\nviróz\nvirózach\nvirózam\nviróza\nvirózny\nvirózový\nvirt\nvirtualita\nvirtuálizácia\nvirtuálnosť\nvirtuálny\nvirtuóz\nvirtuozita\nvirtuózka\nvirtuózne\nvirtuóznosť\nvirtuózny\nvirulencia\nvirulentný\nvírus\nvírusový\nvirvar\nviržinka\nvisací\nvisačka\nvisážach\nvisážam\nvisáž\nvis\nviscera\nviscerálny\nvisceroptóza\nviselec\nvisenie\nvisiaci\nvisieť\nvisievať\nviska\nviskóz\nviskózach\nviskózam\nviskóza\nviskozita\nviskozitný\nviskózny\nviskózový\nVislan\nVislava\nVisla\nvisliansky\nvisliansky\nVisolaje\nVista\nvisutý\nvišieň\nvišňa\nvišní\nVišňov\nvišňovica\nvišňovo\nVišňovský\nvišňový\nVišnu\nVištuk\nVištuku\nvítací\nvítačka\nvitae\nvitagén\nvitaj\nvitajte\nvitalita\nvitalizmus\nvitálne\nvitálnosť\nvitálny\nvitamín\nvitaminizácia\nvitaminológia\nvitamínovo\nvitamínový\nvitaminózny\nvítane\nvítania\nvítanie\nVitanová\nVitanovej\nVitanovou\nVitanovú\nvítaný\nvítať\nvítavať\nvíťaz\nvíťaziaci\nvíťaziť\nvítazka\nvítazka\nvíťazka\nvíťazne\nvíťazno\nvíťazný\nVíťazoslava\nVíťazoslav\nvíťazoslávne\nvíťazoslávny\nVíťazoslavovia\nvíťazovom\nvíťazovým\nvíťazský\nvíťazstvo\nVít\nvite\nvitelín\nvitiam\nvitie\nvitiligo\nvitiu\nvítkovskí\nVítkovský\nVítovej\nvitrail\nvitraj\nvitrážach\nvitrážam\nvitráž\nvitrážka\nvitrifikovaný\nvitrín\nvitrínach\nvitrínam\nvitrína\nvitrínka\nvitriol\nvitriolom\nvitritu\nVitrum\nviťúz\nviťúzka\nviťúzsky\nviťúzstvach\nviťúzstvam\nviťúzstvo\nviť\nvitý\nvivace\nvivacita\nvivant\nvivaristika\nvivárium\nvivat\nvivianit\nvivipária\nvivisekcia\nvivisekčný\nvivo\nviz\nvíz\nvízach\nvízam\nvizážach\nvizážam\nvizáž\nvizážista\nvizážistka\nvízia\nvizibilita\nvizionár\nvizionárka\nvizionársky\nvizionárstvach\nvizionárstvam\nvizionárstvo\nvizír\nvizírka\nvizitácia\nvizita\nvizitka\nvizitkový\nvízový\nvizualizácia\nvizualizačný\nvizuálne\nvizuálnosti\nvizuálny\nvízum\nvjachať\nvjazd\nvjazdiť\nvjazdový\nVK\nVKepc\nvkladač\nvkladače\nvkladane\nvkladania\nvkladanie\nvkladaním\nvkladaniu\nvkladaný\nvkladateľ\nvkladateľka\nvkladateľove\nvkladateľský\nvkladať\nvklad\nvkladne\nvkladný\nvkladovo\nvkladový\nvkĺbiť\nvklesnúť\nvklinenie\nvklinený\nvkliniť\nvkĺznuť\nvknísať\nvkolísať\nvkomponovaný\nvkomponovať\nvkomponúvajú\nvkorčuľovať\nvkoreniť\nvkotúľať\nvková\nVKP\nvkrádať\nvkradnutím\nvkradnúť\nvkresávať\nvkresliť\nvkrivkať\nvkročení\nvkročiť\nvkrúcať\nvkuj\nvkukovať\nvkul\nvkus\nvkusne\nvkusnosť\nvkusný\nvkusové\nvkusového\nvkuť\nvkutý\nVKV\nvkvapkať\nvkvapkávať\nvkvapnúť\nvkydne\nvkydnúť\nvl\nvla\nvlač\nVlača\nvláčením\nvláčeniu\nvláčený\nvlačí\nVlačianska\nvláčievať\nvláčik\nvláčikový\nvláčiť\nvláčkami\nvláčne\nvláčnosť\nvláčny\nvlačúh\nvlačuha\nvlačuhy\nvlád\nVlada\nvládach\nvládam\nvládanej\nvládanie\nvladár\nvladárenia\nvladáriť\nvladárka\nvladárova\nvladárovej\nvladárových\nvladársky\nvladársky\nvladárstva\nvladárstve\nvladárstvo\nvládať\nvláda\nvládca\nvládcovský\nVladiča\nVladimírach\nVladimíram\nVladimíra\nVladimír\nVladimírovo\nVladisláv\nVladislavám\nVladislav\nVladislave\nVladislavou\nVladislavovej\nVladislavu\nVladislavy\nVladivostocká\nVladka\nVladkou\nVladky\nvládkyň\nvládkyňa\nvládnuci\nvládnutieN\nvládnuť\nvládny\nVlady\nvládybažný\nvládychtivo\nvládychtivosť\nvládychtivý\nvladyka\nvláh\nvlaha\nvlahejšej\nvlahejší\nvlahejšia\nvlahejšie\nvlahejšieho\nvlahejšiemu\nvlahejších\nvlahejším\nvlahejšími\nvlahejšiu\nvlahejšom\nvlahejšou\nvlahový\nvlahý\nVlách\nVlachoch\nVlachom\nVlachov\nVlachova\nVlachová\nVlachove\nVlachovo\nVlachovom\nVlachovský\nVlachy\nvlaj\nvlaje\nvlajem\nvlajeme\nvlaješ\nvlajete\nvlajka\nvlajkonosič\nvlajkosláv\nvlajkoslávach\nvlajkoslávam\nvlajkosláva\nvlajkový\nvlajme\nvlajočka\nvlajte\nvlajú\nvlajúc\nvlajúce\nvlajúceho\nvlajúci\nvlajúcich\nvlajúcimi\nvlajúcou\nvlákaná\nvlákať\nvlak\nvláken\nvlákeniek\nvlákenko\nvláknach\nvláknam\nvláknin\nvláknina\nvlákninový\nvláknitosť\nvláknitý\nvlákno\nvláknový\nvlakotvorba\nvlakotvorbe\nvlakotvorby\nvlakotvorné\nvlakotvornej\nvlakotvorných\nvlakotvornými\nvlakový\nvlakvedúci\nvlal\nvlala\nvlali\nvlalo\nvlám\nvlamač\nvlamačka\nvlámačka\nvlamačský\nvlámanie\nvlámať\nvlámme\nvlámte\nvlaňajší\nvlaňajšok\nvlani\nVlár\nVlára\nVlárske\nVlárskej\nVlárskom\nVlársky\nVlárskych\nVláry\nvlasáč\nvlasatica\nvlasato\nvlasatosť\nvlasatý\nvlas\nvlasec\nvlásenka\nvlásie\nvlasísk\nvlasisko\nvláskový\nvlásky\nvlásnička\nvlasnosť\nvlaso\nvlásočnica\nvlásočnicový\nvlások\nvlasový\nVlást\nVlasta\nvlastenec\nvlastenecky\nvlastenecký\nvlastenectvo\nvlastenka\nVlastimil\nVlastimilovu\nVlastimír\nVlastislav\nVlastislava\nVlastislavom\nVlastislavovi\nvlastivedách\nvlastivedám\nvlastivedami\nvlastiveda\nvlastivedný\nvlastivied\nvlastizrád\nvlastizradách\nvlastizradám\nvlastizradami\nvlastizrada\nvlastizradca\nvlastizradkyňa\nvlastizradný\nvlasť\nvlastne\nvlastnenia\nvlastnenie\nvlastnením\nvlastneniu\nvlastnený\nvlastne\nvlastni\nvlastniaci\nvlastnícky\nvlastníctvach\nvlastníctvam\nvlastníctvo\nvlastníčka\nvlastník\nvlastníkovo\nvlastníkovu\nvlastnime\nvlastnite\nvlastniť\nvlastnoručne\nvlastnoručný\nvlastnosť\nvlastnostný\nvlastný\nvlasý\nvlašský\nvlať\nvľavo\nvlaž\nvlažiť\nvlažne\nvlažnosť\nvlažný\nvlci\nvĺča\nvlčiak\nvlčiaky\nvlčica\nvlčí\nvĺčik\nvĺčiku\nvĺčiky\nvlčinec\nVlčkov\nVlčková\nvĺčkovi\nvĺčkovia\nVlčkovo\nVlčkovu\nvĺčok\nvlečenie\nvlečený\nvlečka\nvlečkový\nvlečne\nvlečniak\nvlečný\nvlečúce\nvlečúci\nvlejúcej\nvlejúci\nvlek\nvleklejšej\nvleklejší\nvleklejšia\nvleklejšie\nvleklejšieho\nvleklejšiemu\nvleklejších\nvleklejším\nvleklejšími\nvleklejšiu\nvleklejšom\nvleklejšou\nvleklý\nvlepený\nvlepiť\nvlepovania\nvlepovanie\nvlepovaním\nvlepovať\nvlepujú\nvleť\nvletieť\nvletovať\nvletúvať\nvlezúci\nvĺh\nvľh\nvlhách\nvlhám\nvlha\nvlhčenie\nvlhčený\nvlhči\nvlhčiaci\nvlhčime\nvlhčina\nvlhčite\nvlhčiť\nvĺhk\nvlhkastý\nvlhko\nvlhkomera\nvlhkomer\nvlhkomilný\nvlhkosť\nvlhkostne\nvlhkostný\nvlhký\nvlhnúci\nvlhnutia\nvlhnutím\nvlhnúť\nvlhšej\nvlhší\nvlhšia\nvlhšie\nvlhšieho\nvlhšiemu\nvlhších\nvlhším\nvlhšími\nvlhšiu\nvlhšom\nvlhšou\nvliať\nvliecť\nvlietať\nvlietnuť\nvlieva\nvlievaj\nvlievajme\nvlievajte\nvlievajú\nvlievajúc\nvlieval\nvlievala\nvlievali\nvlievalo\nvlievam\nvlievame\nvlievané\nvlievanie\nvlievaš\nvlievať\nvlievate\nvliezať\nvliezť\nvlichotiť\nVlkanova\nVlkanová\nVlkanovej\nvlkanovská\nvlkanovského\nvlkanovskej\nvlkanovskí\nvlkanovskú\nVlkanovský\nVlkanovú\nVlkas\nvlk\nvlkolak\nVlkolínca\nVlkolínci\nVlkolínec\nVlková\nVlkove\nVlkovej\nVlkovský\nVlkovými\nvlku\nVlkyňa\nvĺn\nvlnách\nvlnám\nvlnár\nvlnárka\nvlnársky\nvlnársky\nvlnárstvach\nvlnárstvam\nvlnárstvo\nvlna\nvlnenie\nvlnený\nvlni\nvlniaci\nvlniačik\nvlniak\nvlniečik\nvlnisto\nvlnistý\nvlniť\nvlnito\nvlnitosť\nvlnitý\nvlnivo\nvlnivý\nvlnka\nvlnobitie\nvlnolam\nvlnolamoch\nvlnolamov\nvlnolamu\nVlnolamy\nvlnovite\nvlnovito\nvlnovitý\nvlnovka\nvlnovkový\nvlnovo\nvlnovodmi\nvlnový\nvlný\nvločka\nvločkovať\nvločkový\nvloha\nvlohový\nvlomiť\nvlotižérka\nvloženie\nvložený\nvložiť\nvložkárskym\nvložka\nvložkový\nvložné\nvložného\nvložnému\nvložnom\nvložným\nVltava\nVltave\nVltavou\nvltavské\nvltavskej\nvltavskom\nvltavských\nVltavský\nVltavu\nVltavy\nvlúdi\nvlúdia\nvlúdila\nvlúdili\nvlúdilo\nvlúdiť\nvľúdnosť\nvľúdny\nvlúp\nvlúpal\nvlúpala\nvlúpania\nvlúpanie\nvlúpaním\nvlúpať\nvlys\nvlysok\nvlysový\nVM\nvmaľovať\nvmanévroval\nvmanévrovala\nvmanévrovali\nvmanévrovalo\nvmanévrovať\nvmanévruj\nvmanévruje\nvmanévrujem\nvmanévrujeme\nvmanévruješ\nvmanévrujete\nvmanévrujme\nvmanévrujte\nvmanévrujú\nvmanévrujúc\nvmašírovať\nvmesti\nvmestime\nvmestite\nvmestiť\nvmetať\nvmetene\nvmies\nvmiesi\nvmiesili\nvmiesite\nvmiesť\nvmiešať\nvmiešavaní\nvmiešavania\nvmiešavanie\nvmiešavaniu\nvmiešavať\nvmieta\nvmietali\nvmietnuť\nvmontovaním\nvmontovaný\nvmontovať\nvmontovávať\nvmurovať\nvmyslieť\nvmýšľať\nVN\nvnád\nvnada\nvnadenie\nvnadidlo\nvnadiť\nvnadivý\nvnadný\nvnárať\nvnášané\nvnášaní\nvnášania\nvnášanie\nvnášaním\nvnášaniu\nvnášať\nvňať\nvňatka\nvňaťový\nvnem\nvnemový\nvnesenie\nvnesením\nvnesený\nvniesť\nvnikania\nvnikanie\nvnikaniu\nvnikať\nvniknuté\nvniknutej\nvniknutí\nvniknutia\nvniknutie\nvniknutím\nvniknutiu\nvniknutú\nvniknúť\nvnímajúci\nvnímanie\nvnímaný\nvnímateľnosť\nvnímateľný\nvnímať\nvnímavo\nvnímavosť\nvnímavý\nvnísť\nvnohy\nvnor\nvnorenia\nvnorenie\nvnorený\nvnoriť\nvnorte\nvnuci\nvnucovaná\nvnucované\nvnucovaní\nvnucovania\nvnucovanie\nvnucovaním\nvnucovaniu\nvnucovanú\nvnucovaným\nvnucovať\nvnúča\nvnúčatiek\nvnúčatko\nvnúčik\nvnučka\nvnučkina\nvnučkine\nvnučkinou\nvnučkiných\nvnukať\nvnuk\nvnuknuté\nvnuknutie\nvnuknutom\nvnuknúť\nvnukova\nVnukovo\nvnútenia\nvnútenie\nvnútením\nvnútený\nvnútier\nvnútiť\nvnútornejší\nvnútorne\nvnútornosti\nvnútornosť\nvnútorný\nvnútrach\nvnútrajšok\nvnútram\nvnútri\nvnútrobrušné\nvnútrobunkový\nvnútrodruhovej\nvnútrodružstevná\nvnútrodružstevné\nvnútrodružstevnej\nvnútrodružstevných\nvnútrofiremný\nvnútrokoaličný\nvnútrolebečného\nvnútro\nvnútromaternicový\nvnútroodborová\nvnútroodborové\nvnútroodborovej\nvnútroodborovo\nvnútroodborovou\nvnútroodborovú\nvnútroodborových\nvnútroodborovými\nvnútropodnikovo\nvnútropodnikový\nvnútropoliticky\nvnútropolitický\nvnútroprevádzkového\nvnútrostranícky\nvnútroštátny\nvnútrozávodné\nvnútrozávodnej\nvnútrozemcami\nvnútrozemec\nvnútrozemie\nvnútrozemský\nvnútrožilovo\nvnútrožilový\nvo\nvôb\nvôbec\nvoči\nvod\nvôd\nvodácky\nvodáctvu\nvodáčka\nvodák\nvodákova\nvodákový\nvodára\nvodáreň\nvodárensky\nvodárenský\nvodárenstvo\nvodári\nvodármi\nvodárňach\nvodárňam\nvodárnička\nvodárom\nvodárov\nvodavý\nvoda\nvodca\nvodcovej\nvodcovsky\nvodcovský\nvodcovstvo\nvodcových\nvodene\nvodenie\nvodeniu\nvodený\nvodiaci\nvodič\nvodiče\nvodička\nvodičov\nvodičový\nvodičský\nvodiču\nvodidlo\nvodievať\nvodík\nvodíkovo\nvodíkový\nvodiť\nvodivo\nvodivosť\nvodivý\nvodka\nvodkový\nvodkyňa\nvodnár\nVodnára\nvodnateľný\nvodnatieľka\nvodnato\nvodnatosť\nvodnatý\nvodne\nvodné\nvodník\nvodníkova\nvodno\nvodnopólový\nvodnosť\nvodnosti\nvodný\nvodočer\nvodočet\nvodočetnej\nvodočetných\nvodočmati\nvodočme\nvodočmoch\nvodočmot\nvodočmov\nvodočmu\nvodočmy\nvodohosp\nvodohospodár\nvodohospodársky\nvodohospodársky\nvodohospodárstvach\nvodohospodárstvam\nvodohospodárstvo\nvodoinštalácia\nvodoinštalačný\nVodoinštalatérstvo\nvodojem\nvodoliečbach\nvodoliečbam\nvodoliečbami\nvodoliečba\nvodoliečebný\nvodoliečob\nvodomera\nvodomer\nvodomerný\nvodomet\nvodomilný\nvodoochranného\nvodoochrannej\nvodoochrannú\nvodopád\nvodopis\nvodopisný\nvodoprávne\nvodoprávneho\nvodoprávnej\nvodoprávny\nvodoprázdny\nvodopriepustná\nvodorovne\nvodorovný\nvodorovný\nvodorozpustný\nvodostálosť\nvodostály\nvodostrek\nVodotechnické\nvodotesne\nvodotesniaci\nvodotesnosť\nvodotesný\nvodotlač\nvodotlačový\nvodotrysk\nvodováh\nvodováhach\nvodováham\nvodováha\nvodovo\nvodovod\nvodovodno\nvodovodný\nvodovozelený\nvodový\nvodovzdorne\nvodovzdornosť\nvodovzdorný\nvodoznak\nvodoznakový\nvodrať\nvodri\nvodrieť\nvodstvo\nvôdzka\nvôdzok\nvogezit\nvogézsky\nVogézy\nvohľadmi\nvohľadník\nvohľadoch\nvohľadom\nvohľadov\nvohľady\nvohnaná\nvohnaní\nvohnať\nvojačik\nvojačka\nvojak\nvojakovo\nvojanská\nvojanské\nvojanského\nvojanskej\nvojanskí\nvojanskom\nvojanských\nVojanský\nvojdenie\nvojdi\nvojdime\nvojdite\nvojdú\nvojen\nvojenči\nvojenčime\nvojenčina\nvojenčite\nvojenčiť\nvojenný\nvojensko\nvojensky\nvojenský\nvojenstva\nvojenstve\nvojenstvo\nvojenstvu\nVojislava\nvoj\nVojka\nVojke\nVojkou\nVojkovský\nVojku\nVojky\nVojňany\nvojna\nvojnovo\nvojnový\nvojsko\nvojskový\nvôjsť\nvojsť\nVojtech\nVojtešky\nvojtešský\nvojvoda\nvojvodca\nvojvodcovho\nvojvodcovský\nvojvodí\nvojvodia\nvojvodina\nVojvodina\nVojvodinčan\nVojvodinčanka\nVojvodinec\nVojvodinka\nvojvodinský\nvojvodiť\nvojvodkyňa\nvojvodov\nvojvodskom\nVojvodský\nvojvodstvo\nvok\nvokabulár\nvokácia\nvokál\nvokáli\nvokalicky\nvokalický\nvokalista\nvokalíza\nvokalizáci\nvokalizácia\nvokalizmus\nvokálmi\nvokálny\nvokáňa\nvokáne\nvokáni\nvokáň\nvokáňmi\nvokáňoch\nvokáňom\nvokáňov\nvokáňu\nvokatív\nvokatíve\nvokatívny\nvôkol\nVOL\nvoĺ\nvôľ\nvola\nvolací\nvoľačí\nvolačka\nvoľačoho\nvoľačomu\nvôľach\nvoľajak\nvoľajako\nvoľajaký\nvolajúci\nvoľáka\nvoľakade\nvoľakadiaľ\nvoľakam\nvoľakde\nvoľáke\nvoľakedajší\nvoľakedy\nvoľákeho\nvoľákej\nvoľákemu\nvoľáki\nvoľáko\nvoľakoho\nvoľakoľko\nvoľakom\nvoľákom\nvoľakomu\nvoľákou\nvoľakto\nvoľaktorý\nvoľáku\nvoľáky\nvoľákych\nvoľakým\nvoľákym\nvoľákymi\nvôľam\nvoľa\nvolán\nvolanieN\nvolánik\nvolánový\nvolanta\nvolant\nvolantmi\nvolantový\nvolaný\nvolapük\nvolárny\nvolať\nvolatilne\nvolatilný\nvôľaN\nvolávať\nvolavčí\nvolavka\nvoľba\nvolček\nvole\nvolebne\nvolebno\nvolebný\nvolejbal\nvolejbalista\nvolejbalistka\nvolejbalmi\nvolejbalový\nvolej\nvolenia\nvolenie\nvolením\nvoleniu\nvolenka\nvolený\nvolfráman\nvolfrám\nvolframit\nvolfrámový\nvolg\nVôlg\nVolga\nvolga\nVolgograd\nVolgograde\nVolgogradský\nVolgogradu\nvôlí\nvoliaca\nvoliaci\nvoliacich\nvoliacou\nvoliar\nvoliarskou\nvoliarsky\nvolič\nvoliče\nvolička\nvoličova\nvoličove\nvoličovo\nvoličovu\nvoličsky\nvoličský\nvoličstva\nvoličstvo\nvoliču\nvolien\nvoliér\nvoliérach\nvoliéram\nvoliéra\nvolievať\nvolí\nvoliteľ\nvoliteľka\nvoliteľne\nvoliteľnosť\nvoliteľný\nvoliteľský\nvoliť\nvolkaméria\nvoľkanie\nvoľkať\nvolkmen\nvolkmenový\nvolkoch\nvolkom\nvolkov\nVolkov\nvoľky\nvolky\nvôl\nvolmi\nvolne\nvoľnené\nvoľne\nvoľnobeh\nvoľnobežný\nvoľnočasový\nvoľno\nvoľnomyšlienkar\nvoľnomyšlienkár\nvoľnomyšlienkárka\nvoľnomyšlienkarka\nvoľnomyšlienkárka\nvoľnomyšlienkarsky\nvoľnomyšlienkársky\nvoľnomyšlienkarský\nvoľnomyšlienkársky\nvoľnomyšlienkarstvo\nvoľnomyšlienkárstvo\nvoľnopredajný\nvoľnosť\nvoľnučko\nvolný\nvoľný\nvoloch\nvolontér\nvolontier\nvolov\nvolovi\nvolovina\nvôľovo\nVolovských\nvôľový\nvolský\nvolta\nvoltairovsky\nvoltairovský\nvoltameter\nvoltampér\nvoltampérmeter\nvoltampérmi\nvoltampéry\nvoltážou\nvolt\nvoltižér\nvoltižérka\nvoltižérsky\nvoltižérsky\nvoltmeter\nvoltmi\nvoltohmmeter\nvoltový\nvoltýž\nvolu\nvolumen\nvolúmen\nvolumenózny\nvolumetria\nvoluminometer\nvoluntarista\nvoluntaristicky\nvoluntaristický\nvoluntaristický\nvoluntaristka\nvoluntarizmus\nvoluntatistický\nvoluta\nvolvulus\nvoly\nVolynská\nVolynskej\nvolynskí\nvolynskom\nvolynskú\nvolynským\nvolžský\nvomitívum\nvon\nvôňach\nvoňajúca\nvoňajúce\nvoňajúceho\nvoňajúci\nvoňajúcim\nvoňajúcu\nvôňam\nvoňané\nvoňania\nvoňať\nvôňa\nvoňavkár\nvoňavkárka\nvoňavkárka\nvoňavkársky\nvoňavkársky\nvoňavkárstvach\nvoňavkárstvam\nvoňavkárstvo\nvoňavka\nvoňavkovať\nvoňavkový\nvoňavkujeme\nvoňavkujú\nvoňavý\nvôní\nvônička\nvonka\nvonká\nvonkajší\nvonkajškovo\nvonkajškovosť\nvonkajškový\nvonkajšok\nvonkoncom\nvonku\nvonne\nvonný\nvoodoo\nvoperovať\nvopchať\nvopred\nvor\nvorať\nvorávať\nvorie\nvoriem\nvorkoholička\nvorkoholik\nvorkoholizmus\nvorobievit\nVoronežan\nVoronež\nvoronežský\nvortex\nvorú\nvorvane\nvorvaní\nvorvaň\nvorvaňou\nvorvať\nvoskami\nVoskár\nVoskára\nvosk\nvoskovacia\nvoskovacieho\nvoskovania\nvoskovanie\nvoskovaný\nvoskovať\nvoskovica\nvoskovice\nvoskovicou\nvoskovo\nvoskový\nvoslep\nvospolne\nvospolný\nvospolok\nvospust\nvospustný\nvoška\nVošková\nVoškovej\nVoškovú\nvoš\nvošmyknúť\nVoštinár\nVoštinára\nVoštinárom\nvoština\nvoštinový\nvoštvať\nvoštverať\nvotácia\nvotant\nvotívny\nvotkaný\nvotkať\nvotkáva\nvotkávané\nvotkávanie\nvotkávanými\nvotkávať\nvotknúť\nvotknutie\nvotknutý\nvotovať\nvotrelec\nvotrelecká\nvotrelkyňa\nvotrieť\nvotrúc\nvótum\nvoucher\nvovábiť\nvovádza\nvovádzaj\nvovádzajme\nvovádzajte\nvovádzajú\nvovádzajúc\nvovádzal\nvovádzala\nvovádzali\nvovádzalo\nvovádzam\nvovádzame\nvovádzaš\nvovádzať\nvovádzate\nvovaliť\nvovedenie\nvovedne\nvovedno\nvoviesť\nvoviezť\nvovliecť\nvovŕtať\nvox\nVox\nvoyerizmus\nvoza\nvoz\nvozba\nvozbe\nvozbu\nvozby\nVozebnej\nvozebnom\nvozené\nvození\nvozenia\nvozenie\nvozením\nvozeň\nvoziacich\nvoziacou\nvoziar\nvozič\nvozíček\nvozíčka\nvozíčkami\nvozičkár\nvozičkárka\nvozičkársky\nvozíčkoch\nvozíčkom\nvozíčkov\nvozíčku\nvozíčky\nvozidlo\nvozidlový\nvozievať\nvozíkať\nvozík\nvoziť\nvozňa\nvozňami\nvozne\nvozni\nvoznica\nVoznická\nVoznickej\nvozník\nvozňoch\nvozňom\nvozňov\nvozňový\nvozňu\nvozovka\nvozovňa\nvozovní\nvozovo\nvozový\nvozvysok\nvozvýš\nVP\nvpadajú\nvpadať\nvpadávalo\nvpád\nvpadnutie\nvpadnúť\nvpadnutý\nvpáĺ\nvpálenie\nvpálenú\nvpálených\nvpáliť\nvpaľovaný\nvpaľovať\nvpáĺte\nvpárať\nvpasovať\nvpasúvaný\nvpáš\nvpašovaný\nvpašovať\nvpášte\nvpicháva\nvpichávaj\nvpichávajme\nvpichávajte\nvpichávajú\nvpichávajúc\nvpichával\nvpichávala\nvpichávali\nvpichávalo\nvpichávam\nvpichávame\nvpichávaš\nvpichávať\nvpichávate\nvpich\nvpichnutí\nvpichnutie\nvpichnutím\nvpichnúť\nvpichoval\nvpichovala\nvpichovali\nvpichovalo\nvpichovania\nvpichovaný\nvpichovať\nvpichový\nvpichuj\nvpichuje\nvpichujem\nvpichujeme\nvpichuješ\nvpichujete\nvpichujme\nvpichujte\nvpichujú\nvpichujúc\nvpíjanie\nvpíjať\nvpis\nvpísanie\nvpísaním\nvpísaný\nvpísať\nvpisovanie\nvpisovaním\nvpisovaný\nvpisovať\nvpíšu\nvpíšuc\nvpiť\nvplantať\nvplav\nvplávaní\nvplávanie\nvplávaním\nvplávaniu\nvplávať\nvplaviť\nvplazil\nvplazila\nvplaziť\nvpletania\nvpletaním\nvpletať\nvpletený\nvpliesť\nvplichtiť\nvplula\nvpluť\nvplúžiť\nvplyň\nvplynú\nvplynula\nvplynuli\nvplynulo\nvplynúť\nvplynutia\nvplývanie\nvplývať\nvplyv\nvplyvne\nvplyvný\nVPN\nvpochodovanie\nvpochodovať\nvpojený\nvpojiť\nvpoly\nvposled\nVPP\nvpracovaný\nvpracovať\nvpradený\nvpratať\nvpravde\nvpraviť\nvpravo\nvpravovaní\nvpred\nvpredu\nvpriadali\nvpriasť\nvprostred\nvprúdiť\nvpumpovaná\nvpust\nvpustenia\nvpustenie\nvpustením\nvpusteniu\nvpustený\nvpusti\nvpustime\nvpustite\nvpustiť\nvpúšťané\nvpúšťaní\nvpúšťanie\nvpúšťaním\nvpúšťaniu\nvpúšťať\nvr\nVR\nvrabcovi\nvrabča\nvrabčací\nvrabček\nvrabčekovi\nvrabčiak\nvrabčiat\nvrabčiatko\nvrabčiatok\nvrabčí\nvrabčiť\nvrabec\nVrábeľ\nVrábľam\nVráble\nVrábloch\nVrábľoch\nvracače\nvracajúci\nvracaná\nvracané\nvracanej\nvracanie\nvracaných\nvracať\nvradil\nvradiť\nvradlá\nvraďovali\nvraďovať\nvrah\nvrahyňa\nvrachotiť\nvraj\nvrak\nVrakúň\nVrakuňa\nVrakune\nVrakuni\nVrakuňou\nVrakuňu\nVRAM\nvrámci\nvrán\nvrana\nvranec\nvraní\nvraník\nvraník\nvranka\nvranko\nVrankom\nVrankovej\nVranku\nvraňom\nvraňou\nVranov\nvranovská\nvranovské\nvranovskej\nvranovskí\nvranovskou\nvranovskú\nVranovský\nvraný\nvrapovať\nvrás\nvrásach\nvrásam\nvrása\nvrásčite\nvrásčitý\nvráskať\nvráskavieť\nvráskavý\nvráska\nvráskovanie\nvráskovať\nvráskovatieť\nvráskovatý\nvrásky\nvrásnene\nvrásnenie\nvrásnený\nvrásni\nvrásniť\nvrásovo\nvrásový\nvrastať\nvrastený\nvrasti\nvrastime\nvrastite\nvrásť\nvrašti\nvraštime\nvraštite\nvraštiť\nvrátajú\nvrátame\nvrátane\nvrátania\nvrátanie\nvrátaniu\nvrátaný\nvráta\nvrátať\nvrátate\nvrátenie\nvrátený\nvrátený\nvratič\nvratiče\nvratiču\nvratidlá\nVratislav\nvratislavského\nVratislavský\nvrátiť\nvrátkach\nvrátkam\nvrátkami\nvrátka\nvratke\nvrátke\nvratko\nVratko\nvrátkoch\nvrátkom\nvratkosť\nvrátkov\nvrátku\nvrátky\nvratký\nVrátna\nvratne\nVrátnej\nvrátnic\nvrátnica\nvrátnický\nvrátnictvo\nvrátnička\nvrátnik\nvrátnikova\nvrátnikove\nvrátnikovo\nvrátnikovu\nvrátnikovým\nVrátnou\nVrátnu\nVrátnym\nvratný\nvrátok\nvrav\nvráv\nvravách\nvravám\nvravami\nvrava\nvravieť\nvravievať\nvravnosť\nvravný\nvravor\nvravot\nvrázdiť\nvrazenie\nvrazený\nvráziť\nvraziť\nVráž\nvrážanie\nvrážaný\nvrážať\nvražba\nVražbu\nvražda\nvraždenia\nvraždenie\nvraždením\nvraždeniu\nvraždený\nvraždi\nvraždiaci\nvraždime\nvraždite\nvraždiť\nvražedne\nvražedník\nvražednosť\nvražedný\nvŕb\nvŕbach\nvŕbam\nvŕba\nvrbcovanie\nvrbcovať\nVrbíc\nVrbica\nVrbicami\nVrbice\nvrbičie\nvŕbie\nvrbín\nvrbina\nVrbov\nVrbova\nVrbovce\nVrbovci\nVrbove\nVrbovka\nVrbovom\nvrbovský\nvŕbový\nvrč\nvrčanieN\nvrčať\nvrčavý\nvrčiaceho\nvrčivý\nvrece\nvreciek\nvreckár\nvreckárka\nvreckárka\nvreckatý\nvrecko\nvreckovacom\nvreckovanie\nvreckovaný\nvreckovať\nvreckové\nvreckovka\nvreckovkový\nvreckovôčka\nvreckový\nvrecovane\nvrecovaní\nvrecovina\nvrecovitý\nvrecový\nvrecúško\nvrecúšok\nvreda\nvredavý\nvred\nvredikať\nvredovitý\nvredový\nvrele\nvrelejšej\nvrelejší\nvrelejšia\nvrelejšie\nvrelejšieho\nvrelejšiemu\nvrelejších\nvrelejším\nvrelejšími\nvrelejšiu\nvrelejšom\nvrelejšou\nvrelo\nvrelosť\nvrelý\nvrenie\nvres\nvresk\nvreskľavý\nvreskľúň\nvresknúť\nvreskot\nvresovec\nvresovísk\nvresovisko\nvresový\nvrešť\nvrešťanie\nvrešťať\nvrešťme\nvrešťte\nvrešťúň\nvretenica\nvreteničí\nVretenička\nvretenný\nvreteno\nvretenovite\nvretenovito\nvretenovitý\nvretenový\nvretien\nvretienko\nvretienok\nvretý\nvrezaný\nvrezať\nvrezávanie\nvrezávať\nvrežúcej\nvrhač\nvrhače\nvrhačka\nvrhačský\nvrhajúci\nvrhania\nvrhanie\nvrhaný\nvrhať\nvrh\nvrhnutie\nvrhnutím\nvrhnutiu\nvrhnúť\nvrhnutý\nvrchár\nvrchárka\nvrchársky\nvrchársky\nvrch\nvrchhlava\nvrchlabský\nvrchlík\nvrchlíka\nvrchlíkov\nvrchlíku\nvrchnácke\nvrchnáčik\nvrchnák\nvrchnákový\nvrchnostenský\nvrchnosť\nvrchný\nvrchol\nvrcholcový\nvrcholček\nvrcholec\nvrcholení\nvrcholenia\nvrcholenie\nvrcholeniu\nvrcholiaci\nvrcholík\nvrcholiť\nvrcholkových\nvrcholne\nvrcholný\nvrcholok\nvrcholovo\nvrcholový\nvrchovate\nvrchovato\nvrchovatý\nvrchovec\nvrchovina\nvrchovitý\nvrchový\nvrchstôl\nvrchstolmi\nVrchteplá\nvriaci\nVrícko\nvriedok\nvrieskania\nvrieskanie\nvrieskať\nvrieskavý\nvriesknuť\nvrieť\nvrízea\nvŕkať\nvrkla\nvrkne\nvrknúť\nvrkočatý\nvrkôčik\nvrkoč\nvrma\nvrn\nvrňať\nvrnčať\nvrndžať\nvrndži\nvrndžime\nvrndžite\nvrniacich\nvrniacou\nvrnieť\nVroclav\nVroclavčan\nvroclavský\nvročenie\nvrodenosť\nvrodený\nvrodiť\nvroj\nvrojený\nvrojiť\nvŕŕ\nvrstevnato\nvrstevnatosť\nvrstevnatý\nvrstevnica\nvrstevnicový\nvrstevný\nvrstovnica\nvrstovnícky\nvrstovníčka\nvrstovník\nvrstrovníčka\nvrstrovníčka\nvrstva\nvrstvenia\nvrstvenie\nvrstvením\nvrstvený\nvrstvi\nvrstviaci\nvrstvička\nvrstvime\nvrstvite\nvrstviť\nvrstvovito\nvrstvovitosť\nvrstvovitý\nvrstvovnica\nvrstvovo\nvrstvový\nVršatci\nVršatec\nVršatské\nvršec\nvŕšenie\nvŕšením\nvŕšeniu\nvŕšiť\nvŕškatý\nvŕškovatý\nvŕškovitý\nvršok\nvŕšok\nvŕštek\nvrť\nvrtáci\nvŕtací\nvŕtač\nvrtáčik\nvŕtačka\nvŕtačské\nvrták\nvrtákovi\nvŕtané\nvŕtaní\nvŕtania\nvŕtanie\nvŕtaním\nvŕtaniu\nvŕtaných\nvŕtať\nvŕtavať\nvrt\nvrtby\nvrtenie\nvrtený\nvrti\nvrtiaci\nvrtielka\nvrtieť\nvrtichvosť\nvrtichvosta\nvrtichvost\nvrtichvosti\nvrtichvostmi\nvrtichvostovi\nVrtil\nVrtila\nVrtižer\nvrtkať\nvrtkavo\nvrtkavosť\nvrtkavý\nvrtko\nvrtkosť\nvrtký\nvrtla\nvrtmi\nvrtne\nvrtno\nvrtný\nvrtohlavý\nvrtoch\nvrtošiť\nvrtošivo\nvrtošivosť\nvrtošivý\nvrtuľa\nvrtuľka\nvrtuľník\nvrtuľníkový\nvrtuľový\nvrub\nvrúbe\nvrúbeľ\nvrúbení\nvrúbenie\nvrúbik\nvrúbiť\nvrúbkovane\nvrúbkovanie\nvrúbkovaný\nvrúbľa\nvrúbľami\nvrúble\nvrúbli\nvrúblik\nvrúbľoch\nvrúbľom\nvrúbľov\nvrúbľovanie\nvrúbľovaním\nvrúbľovať\nvrúbľový\nvrúbľu\nvrúbok\nvrubový\nvrúc\nVrúca\nvrúce\nvrúci\nvrúcne\nvrúcnosť\nvrúcny\nvrúčny\nvrulagizačný\nvrútiť\nVrútkach\nVrútkam\nVrútkami\nVrútky\nvrútocký\nVrútok\nvryjúcej\nvrýpali\nvryp\nvrypový\nvrysovanie\nvrysovať\nvryť\nvrytý\nvrývať\nvŕzať\nvrz\nvŕzgania\nvŕzganie\nvŕzgať\nvŕzgavo\nvŕzgavý\nvrzg\nvrzgľavý\nvrzgnutie\nvrzgnúť\nvrzgotať\nvrzgotavý\nvrzgot\nvrzgotmi\nvrznutie\nvrznúť\nvrzúkať\nvrzúkavý\nvržď\nvržďanie\nvržďať\nvržďavý\nvržďme\nvržďte\nVS\nVSA\nvsácajú\nvsadeniami\nvsadenie\nvsadením\nvsadený\nvsadiť\nvsádzaní\nvsádzanú\nvsádzať\nvsádzka\nvsádzkový\nvsadzovaní\nvsadzovania\nvsadzovanie\nvsadzovať\nvsakovací\nvsakovaní\nvsakovanie\nvsakovať\nvsami\nvsatie\nvsať\nvsávanie\nvsávať\nVsetín\nVsetína\nVsetíne\nVsetínom\nvsetínska\nvsetínske\nvsetínskeho\nvsetínskej\nvsetínskom\nvsetínskou\nVsetínsku\nvsetínsky\nvsetínskych\nvsetínskym\nvsetínskymi\nVsetínu\nVsFZ\nVSFZ\nvsi\nvsí\nvsiach\nvsiakať\nvsiakavosť\nvsiakavý\nvsiaknutí\nvsiaknutie\nvsiaknuť\nvsiam\nvsietením\nvsietený\nvsietiť\nvsieť\nvsiliť\nvskutku\nvsotiť\nvsou\nVSP\nVSR\nVSS\nvstaní\nvstania\nvstanie\nvstať\nvstávajúci\nvstavanie\nvstávanie\nvstavaný\nvstavať\nvstávať\nvstave\nvstavený\nvstaviť\nvstavovať\nvstrčiť\nvstreb\nvstrebania\nvstrebanie\nvstrebaním\nvstrebať\nvstrebávané\nvstrebávania\nvstrebávanie\nvstrebávaním\nvstrebávaniu\nvstrebávať\nvstrek\nvstreknuté\nvstreknutie\nvstreknutím\nvstreknúť\nvstrekom\nvstrekov\nvstrekovacej\nvstrekovací\nvstrekovacia\nvstrekovacie\nvstrekovacieho\nvstrekovacích\nvstrekovacím\nvstrekovacími\nvstrekovacou\nvstrekovač\nvstrekovače\nvstrekovači\nvstrekovačov\nvstrekovane\nvstrekovania\nvstrekovanie\nvstrekovaním\nvstrekovaniu\nvstrekovaný\nvstrekovať\nvstrekový\nvstreku\nvstreky\nvstreľ\nvstrelí\nvstrelia\nvstreliac\nvstrelil\nvstrelila\nvstrelili\nvstrelilo\nvstrelím\nvstrelíme\nvstrelíš\nvstreliť\nvstrelíte\nvstreľme\nvstreľte\nvstrieknuť\nvstrkávať\nvstrkovať\nvstrrebávať\nvstup\nvstúpení\nvstúpenia\nvstúpenie\nvstúpením\nvstúpeniu\nvstupenka\nvstúpených\nvstúpiť\nvstupne\nvstupno\nvstupný\nvstupovaní\nvstupovania\nvstupovanie\nvstupovaním\nvstupovaniu\nvstupovať\nvstupový\nvstupujúci\nvsugerovaná\nvsugerované\nvsugerovať\nvsugerúva\nvsugerúvaj\nvsugerúvajme\nvsugerúvajte\nvsugerúvajú\nvsugerúvajúc\nvsugerúval\nvsugerúvala\nvsugerúvali\nvsugerúvalo\nvsugerúvam\nvsugerúvame\nvsugerúvaš\nvsugerúvať\nvsugerúvate\nvsúkať\nvsuň\nvsunie\nvsuniem\nvsunieme\nvsunieš\nvsuniete\nvsuňme\nvsunovaní\nvsuňte\nvsunuje\nvsunul\nvsunula\nvsunuli\nvsunulo\nvsunutie\nvsunúť\nvsunutý\nvsúvaní\nvsúvanie\nvsúvaním\nvsúvať\nvsuvka\nvsuvný\nvsypať\nvsýpať\nvsypávaný\nvsypávať\nvsypú\nvsypúc\nVSŽ\nvš\nVŠ\nVŠA\nvšade\nvšadebol\nVšadeprítomnosť\nvšadeprítomnosti\nvšadeprítomnosťou\nvšadeprítomný\nvšadiaľ\nvšagáno\nvšaghej\nvšak\nvšakáno\nvšakhej\nvšakovak\nvšakovaký\nvšakový\nvšakver\nvšakže\nvšalikto\nvšami\nvšantročiť\nVŠDS\nvše\nvšedne\nvšednejšíF\nvšednodenný\nvšednosť\nvšedný\nvšehochuť\nvšehochuti\nvšehochuťou\nvšehoj\nvšekaz\nvšekazy\nvšeličím\nvšeličo\nvšeličoho\nvšeličom\nvšeličomu\nvšeliek\nvšelijak\nvšelijako\nvšelijaký\nvšelikade\nvšelikam\nvšelikde\nvšelikoho\nvšelikoľko\nvšelikom\nvšelikomu\nvšelikto\nvšelikým\nVšelínce\nvšeliniečo\nvšeľudový\nvšeľudský\nvšemoci\nvšemocne\nvšemocnosť\nvšemocný\nvšemohúci\nvšemohúcnosť\nvšemohúcnosti\nvšemohúco\nvšemožne\nvšemožný\nvšenárodnú\nvšeob\nvšeobecnejší\nvšeobecne\nvšeobecno\nvšeobecnoprávny\nvšeobecnosť\nvšeobecnovzdelávací\nvšeobecnu\nvšeobecný\nvšeobjímajúce\nvšeobjímajúceho\nvšeobjímajúcej\nvšeobjímajúci\nvšeobjímajúcou\nvšeobjímajúcu\nvšeobjímavý\nvšeobsiahle\nvšeobsiahlou\nvšeobsiahly\nvšeodborový\nvšeruský\nvšestranne\nvšestrannosť\nvšestranný\nvšesvet\nvšetci\nvšetcí\nvšetečiť\nvšetečka\nvšetečne\nvšetečnica\nvšetečníčka\nvšetečník\nvšetečniť\nvšetečnosť\nvšetečný\nvšetého\nvšetému\nvšetkého\nvšetkej\nvšetkému\nvšetko\nvšetkou\nvšetky\nvšetkých\nvšetkým\nvšetkými\nvšetok\nvšetučkého\nvšetučkému\nvšetučko\nvšetučkom\nvšetučkým\nvšeumelec\nvšeužitočnosti\nvšeužitočný\nvševed\nvševediaci\nvševedomý\nvševedúci\nvševedúcich\nvševedúcim\nvševedúcky\nvševedúcnosti\nvševidiacou\nVševládny\nvšezväzový\nvšežravcov\nvšežravý\nvši\nvší\nvšiach\nvšiam\nvšifrovať\nvšije\nvšijem\nvšijeme\nvšiješ\nvšijete\nvšijú\nvšijúc\nvšil\nvšila\nvšili\nvšilo\nvším\nvšímaniu\nvšímať\nvšímavo\nvšímavosť\nvšímavý\nvšime\nvšimné\nvšimného\nvšimnému\nvšimnom\nvšimnutie\nvšimnúť\nvšimným\nvšite\nvšiť\nvšitý\nvšivácky\nvšivač\nvšivák\nvšivaňa\nvšivaní\nvšívania\nvšívanie\nvšívaný\nvšívať\nvšivavo\nvšivavý\nVŠMU\nvšmyknúť\nvšou\nvštepený\nvštepiť\nvštepovaná\nvštepovanie\nvštepovať\nvštiepená\nvštiepi\nvštiepiť\nvštúriť\nvšuchnúť\nvšupnúť\nvšustnúť\nVŠVU\nVšZP\nvtáci\nvtacká\nvtackať\nvtáctvach\nvtáctvam\nvtáctvo\nvtáča\nvtáčatiek\nvtáčatko\nvtačí\nvtáčí\nvtáčik\nvtáčiky\nvtáčka\nvtáčkami\nvtáčkoch\nvtáčkom\nvtáčkov\nvtáčkovi\nvtáčky\nvtáčnik\nvťahovania\nvťahovanie\nvťahovaním\nvťahovaniu\nvťahovaný\nvťahovať\nvták\nvtákopysk\nvťal\nvtancovať\nvťapiť\nvtas\nvtasí\nvtasia\nvtasiť\nvťať\nvtedajší\nvtedy\nvtekanie\nvtekaniu\nvtekať\nvtelene\nvtelenie\nvtelený\nvteliť\nvteľovať\nvteľujúceho\nvteper\nvteperiť\nvteperte\nvterigať\nvtesnania\nvtesnaním\nvtesnaný\nvtesnať\nvtesnáva\nvtesnávať\nvtesni\nvtesní\nvtesnia\nvtetovanie\nvtetujúceho\nvtiahnutia\nvtiahnutie\nvtiahnutím\nvtiahnuť\nvtiahnutý\nvtiecť\nvtielka\nvtieraní\nvtierať\nvtieravec\nvtieravo\nvtieravosť\nvtieravý\nvtínať\nvtip\nvtipkár\nvtipkáriť\nvtipkárka\nvtipkársky\nvtipkárstvach\nvtipkárstvam\nvtipkárstvo\nvtipkovaní\nvtipkovania\nvtipkovanie\nvtipkovaním\nvtipkovať\nvtipne\nvtipnosť\nvtipný\nvtískať\nvtisnuté\nvtisnúť\nVTJ\nvtká\nvtkanie\nvtkaný\nvtkať\nvtkáva\nvtkávaný\nvtláčania\nvtláčanie\nVtláčaním\nvtláčaný\nvtláčať\nvtlačenia\nvtlačenie\nvtlačeniu\nvtlačený\nvtlačiť\nvtlačkami\nvtlačované\nvtĺcť\nvtĺkať\nvtne\nvtnú\nvtok\nvtokoch\nvtokom\nvtokov\nvtokový\nvtoku\nvtoky\nvtom\nvtrepať\nvtrháva\nvtrhnutia\nvtrhnutie\nvtrhnúť\nvtriasať\nvtrieskať\nvtrieť\nvtrúc\nvtrúliť\nvtrúsenia\nvtrúsenie\nvtrúsenina\nvtrúsený\nvtrúsiť\nVTV\nVÚB\nVÚC\nvúdú\nvuf\nvulg\nvulgarita\nvulgarizácia\nvulgarizmami\nvulgarizmov\nvulgarizmu\nvulgarizmus\nvulgarizmy\nvulgarizovanie\nvulgarizovať\nvulgárne\nvulgárnosť\nvulgárny\nVulgáta\nvulkán\nVulkán\nvulkanický\nvulkanit\nvulkanizácia\nvulkanizácie\nvulkanizácii\nvulkanizáciou\nvulkanizáciu\nvulkanizačný\nvulkanizér\nvulkanizmus\nvulkanizované\nvulkanizovaného\nvulkanizovanej\nvulkanizovanie\nvulkanizovanú\nvulkanizovaných\nvulkanizovať\nvulkanológ\nvulkanológia\nvulnerabilný\nvulva\nvulvektómia\nvulvitída\nvulvovaginitída\nVUML\nvunknúť\nvústiť\nVV\nvvám\nVW\nvyabstrahovať\nvyakcentovať\nvyárendovaný\nvyárendovať\nvyargumentoval\nvyargumentovala\nvyargumentovali\nvyargumentovalo\nvyargumentovať\nvyargumentuj\nvyargumentuje\nvyargumentujem\nvyargumentujeme\nvyargumentuješ\nvyargumentujete\nvyargumentujme\nvyargumentujte\nvyargumentujú\nvyargumentujúc\nvyasfaltovanie\nvyasfaltovaný\nvyasfaltovať\nvybabrať\nvybabre\nvybabrem\nvybabreme\nvybabreš\nvybabrete\nvybabri\nvybabrime\nvybabrite\nvybabrú\nvybabrúc\nvybáča\nvybáčaj\nvybáčajme\nvybáčajte\nvybáčajú\nvybáčajúc\nvybáčal\nvybáčala\nvybáčali\nvybáčalo\nvybáčam\nvybáčame\nvybáčaš\nvybáčať\nvybáčate\nvybadať\nvybafnúť\nvybagrovaná\nvybagrované\nvybagrovanej\nvybagrovaním\nvybagrovanou\nvybagrovať\nvybájený\nvybájiť\nvybalansovať\nvybalenia\nvybalením\nvybalený\nvybaliť\nvybaľovať\nvybarala\nvybariť\nvybásnené\nvybásniť\nvýbav\nvýbava\nvybavene\nvybavenie\nvybavenosť\nvybavený\nvýbavička\nvybaviť\nvybavovacej\nvybavovací\nvybavovacia\nvybavovacie\nvybavovacieho\nvybavovacích\nvybavovacím\nvybavovacími\nvybavovaciu\nvybavovacom\nvybavovacou\nvybavovačka\nvybavovanie\nvybavovaný\nvybavovateľa\nvybavovať\nvybehaný\nvybehať\nvybehávač\nvybehávačka\nvybehávačka\nvybehávať\nvýbeh\nvybehnutí\nvybehnutie\nvybehnúť\nvybehovať\nvýbehový\nvyberač\nvyberačka\nvyberačný\nvyberajúcim\nvyberanejší\nvyberane\nvyberanie\nvyberanosť\nvyberaný\nvyberateľný\nvyberať\nvyberavosť\nvyberavý\nvýber\nvýberca\nvýberčivý\nvýberkový\nvýberky\nvýberkyňa\nvýberove\nvýberovo\nvýberovosť\nvýberovosťou\nvýberový\nvybetónovaním\nvybetónovaný\nvybetónovať\nvýbežok\nvybi\nvybičovanie\nvybičovaniu\nvybičovaný\nvybičovať\nvybičovávanie\nvybičúvať\nvybiedený\nvybiehajúce\nvybiehajúci\nvybiehanie\nvybiehať\nvybielenia\nvybielenie\nvybielením\nvybieleniu\nvybielený\nvybieliť\nvybíjacích\nvybíjanec\nvybíjania\nvybíjanie\nvybíjaním\nvybíjaniu\nvybíjaný\nvybíjať\nvybije\nvybijem\nvybijeme\nvybiješ\nvybijete\nvybijú\nvybijúc\nvybilancovať\nvybime\nvybite\nvybiť\nvybitie\nvybito\nvybitosť\nvybitý\nvybľabotať\nvyblafnúť\nvybľakovať\nvybľakúva\nvybľakúvaj\nvybľakúvajme\nvybľakúvajte\nvybľakúvajú\nvybľakúvajúc\nvybľakúval\nvybľakúvala\nvybľakúvali\nvybľakúvalo\nvybľakúvam\nvybľakúvame\nvybľakúvaš\nvybľakúvať\nvybľakúvate\nvybláznenia\nvybláznenie\nvyblázni\nvybláznil\nvyblázniť\nvyblednúť\nvyblednutý\nvybliaknuť\nvyblýskaný\nvybočenie\nvybočiť\nvybočovanie\nvybočovať\nvybodkovaná\nvybodkovanými\nvybodkovať\nvybodol\nvýbojca\nvýboj\nvýbojka\nvýbojkový\nvýbojne\nvýbojník\nvýbojnosť\nvýbojný\nvybojovania\nvybojovanie\nvybojovaním\nvybojovaný\nvybojovať\nvybojovávať\nvýbojový\nvybojúvať\nvybombardovanej\nvybombardovaním\nvybombardovanom\nvybombardovať\nvýbor\nvyboriť\nvýborne\nvýborne\nvýbornícky\nvýborníčka\nvýborník\nvýborný\nvýborovka\nvýborový\nvybozkávať\nvybračne\nvybrakoval\nvybrakovala\nvybrakovali\nvybrakovania\nvybrakovaním\nvybrakovaniu\nvybrakovaný\nvybrakovať\nvybrane\nvybráni\nvybranie\nvybraný\nvybratie\nvybrať\nvybratý\nvybrblať\nvybrčkavený\nvybŕdnutia\nvybŕdnutie\nvybŕdnutiu\nvybŕdnuť\nvybrechávať\nvybrechnúť\nvybrechúvať\nvybrhliť\nvybrieždiť\nvybŕknuť\nvybrnkať\nvybrnkávať\nvybrnknúť\nvýbrus\nvybrúsene\nvybrúsenia\nvybrúsenie\nvybrúsenosť\nvybrúsený\nvybrúsiť\nvybrusovanie\nvybrusovať\nvýbrusový\nvybubnovať\nvybudene\nvybudenie\nvybudený\nvybudí\nvybudiť\nvybudovanejší\nvybudovanie\nvybudovaný\nvybudovať\nvybudzoval\nvybudzovať\nvybúchať\nvýbuch\nvybuchnátovať\nvybuchnuté\nvybuchnutí\nvybuchnutie\nvybuchnutú\nvybuchnúť\nvybuchnutých\nvybuchovať\nvýbuchový\nvybuchujúci\nvybuchujúcich\nvybumbať\nvyburácať\nvybúrane\nvybúrané\nvybúrania\nvybúranie\nvybúraním\nvybúraniu\nvybúrať\nvyburcovania\nvyburcovanie\nvyburcovaný\nvyburcovať\nvybúriť\nvybúšiť\nvýbušne\nvýbušnina\nvýbušnosť\nvýbušný\nvybúvať\nvybuvinkať\nvycapiť\nvycedenia\nvycedený\nvycediť\nvycementovať\nvycengať\nvycengúvať\nvycentrovať\nvycepovali\nvycer\nvycerenými\nvyceriť\nvycerte\nvycestovací\nvycestovanej\nvycestovaní\nvycestovania\nvycestovaniach\nvycestovaniami\nvycestovanie\nvycestovaním\nvycestovaniu\nvycestovaných\nvycestovaným\nvycestovať\nvycibrenie\nvycibrenosť\nvycibriť\nvycicané\nvycicaných\nvycicať\nvyciciavač\nvyciciavania\nvyciciavanie\nvyciciavaniu\nvyciciavaný\nvyciciavať\nvycickať\nvyciedzaní\nvyciedzať\nvycierať\nvycifrovania\nvycifrovaný\nvycifrovať\nvycikať\nvycipkaný\nvycipkať\nvycítené\nvycítením\nvycítiť\nvyciťovala\nvyciťované\nvyciťovaní\nvyciťovania\nvyciťovanie\nvyciťovaním\nvyciťovať\nvyciťuje\nvyciťujete\nvyciťujú\nvycivene\nvycivenosť\nvycivený\nvycivieť\nvycizelovaný\nvycizelovať\nvyclenie\nvyclením\nvycleniu\nvyclený\nvyclievané\nvyclievaní\nvyclievanie\nvyclievať\nvycliť\nvycmúľaný\nvycmúľať\nvycti\nvyctiť\nvycucaný\nvycucať\nvycuciavať\nvycúdiť\nvycúvaní\nvycúvania\nvycúvanie\nvycúvať\nvýcval\nvycvála\nvycválať\nvýcvalom\nvycvičene\nvycvičenie\nvycvičenosť\nvycvičený\nvycvičiť\nvýcvik\nvýcvikový\nvycvrknúť\nvyčačkanie\nvyčačkaný\nvyčačkať\nvyčachrujú\nvyčakávania\nvyčakávať\nvyčakúvať\nvyčalúniť\nvýčap\nvyčapiť\nvýčapnícky\nvýčapníčka\nvýčapník\nvyčapnúť\nvýčapný\nvyčaptaný\nvyčaptať\nvyčaptavený\nvyčapujú\nvyčar\nvyčarať\nvyčariť\nvyčarovania\nvyčarovať\nvyčarte\nvyčarúvať\nvyčasiť\nvyčastovať\nvyčasuje\nvyčepčiť\nvyčer\nvyčerený\nvyčerpane\nvyčerpanieN\nvyčerpanosť\nvyčerpaný\nvyčerpateľnosť\nvyčerpateľnosti\nvyčerpateľnosťou\nvyčerpateľný\nvyčerpať\nvyčerpávajúcejšej\nvyčerpávajúcejší\nvyčerpávajúcejšia\nvyčerpávajúcejšie\nvyčerpávajúcejšieho\nvyčerpávajúcejšiemu\nvyčerpávajúcejších\nvyčerpávajúcejším\nvyčerpávajúcejšími\nvyčerpávajúcejšiu\nvyčerpávajúcejšom\nvyčerpávajúcejšou\nvyčerpávajúci\nvyčerpávajúco\nvyčerpávaní\nvyčerpávania\nvyčerpávanie\nvyčerpávaním\nvyčerpávaniu\nvyčerpávať\nvyčesaním\nvyčesaný\nvyčesať\nvyčesávaní\nvyčesávanie\nvyčesávať\nvyčiahnu\nvyčiarknutia\nvyčiarknutie\nvyčiarknutím\nvyčiarknutiu\nvyčiarknuť\nvyčiarknutý\nvyčiarkovať\nvyčiarnuť\nvyčiernenie\nvyčíhať\nvyčíňaní\nvyčíňania\nvyčíňanie\nvyčíňaním\nvyčíňaniu\nvyčíňať\nvýčin\nvyčinenie\nvyčinený\nvyčiniť\nvyčiňovať\nvyčírení\nvyčírenie\nvyčíria\nvyčíslenie\nvyčíslený\nvyčísliteľný\nvyčísliť\nvyčísľovací\nvyčísľovanie\nvyčísľovaných\nvyčísľovaným\nvyčísľovať\nvyčistenia\nvyčistenie\nvyčistením\nvyčisteniu\nvyčistený\nvyčisti\nvyčistime\nvyčistite\nvyčistiť\nvyčisťovania\nvyčisťovanie\nvyčisťovaním\nvyčisťovaniu\nvyčisťovať\nvyčisťujúce\nvyčítanie\nvyčítaný\nvyčítať\nvyčítavo\nvyčítavý\nvýčitka\nvyčitovania\nvyčitovanie\nvyčitovaním\nvyčitovať\nvyčkania\nvyčkanie\nvyčkaniu\nvyčkať\nvyčkávací\nvyčkávajúci\nvyčkávania\nvyčkávanie\nvyčkávaním\nvyčkávaniu\nvyčkávaný\nvyčkávať\nvyčkávavý\nvyčľapiť\nvyčľapkať\nvyčľapkávať\nvyčľapnúť\nvyčlenenie\nvyčlenený\nvyčleniť\nvyčleňovania\nvyčleňovanie\nvyčleňovaním\nvyčleňovaniu\nvyčleňovaný\nvyčleňovať\nvýčnelok\nvyčnieť\nvyčnievajúci\nvyčnievanie\nvyčnievať\nvyčrpkať\nvyčrpnúť\nvýd\nvydajachtivý\nvydájať\nvydaj\nvýdaj\nvýdajka\nvýdajňa\nvýdajní\nvýdajový\nvydanie\nvydaniť\nvydaný\nvydar\nvydarene\nvydarenia\nvydarenie\nvydarenosť\nvydarený\nvydariť\nvydarte\nvydať\nvýdatne\nvýdatnosť\nvýdatný\nvydatý\nvýdav\nvydavaateľstvo\nvydávajúca\nvydávajúce\nvydávajúceho\nvydávajúcej\nvydávajúcemu\nvydávajúci\nvydávajúcich\nvydávajúcim\nvydávajúcimi\nvydávajúcou\nvydávajúcu\nvydávanie\nvydávaný\nvydavateľ\nvydavateľka\nvydavateľsky\nvydavateľský\nvydavateľstvo\nvydávať\nvydávené\nvydáviť\nvýdavkovo\nvýdavkový\nvýdavok\nvydedenec\nvydedenie\nvydedený\nvydediť\nvydedukovať\nvydelenia\nvydelenie\nvydelením\nvydeleniu\nvydelený\nvydeliť\nvydeľovanie\nvydeľovaním\nvydeľovaný\nvydeľovať\nvydesene\nvydesený\nvydesiť\nvydestilovať\nVydestiluje\nvydezinfikované\nvydezinfikovať\nvydieľať\nvydierač\nvydieračka\nvydieračka\nvydieračsky\nvydieračský\nvydieračstvo\nvydieranie\nvydieraný\nvydierateľný\nvydierať\nvydierované\nvydierovať\nvydiskutoval\nvydiskutovala\nvydiskutovali\nvydiskutovalo\nvydiskutovať\nvydiskutuj\nvydiskutuje\nvydiskutujem\nvydiskutujeme\nvydiskutuješ\nvydiskutujete\nvydiskutujme\nvydiskutujte\nvydiskutujú\nvydiskutujúc\nvydlab\nvydlabať\nvydlabávať\nvydláždenie\nvydláždený\nvydláždiť\nvyďob\nvyďobať\nvyďobávať\nvydobíjaným\nvydobýjať\nvydobytia\nvydobytie\nvydobytím\nvýdobytok\nvydobyť\nvydobytý\nvydobýva\nvydobývaj\nvydobývajme\nvydobývajte\nvydobývajú\nvydobývajúc\nvydobýval\nvydobývala\nvydobývali\nvydobývalo\nvydobývam\nvydobývame\nvydobývaním\nvydobývaš\nvydobývať\nvydobývate\nvydochnúť\nvydojiť\nvýdoj\nvýdojné\nvýdojného\nvýdojnom\nvýdojných\nvydolieť\nvydolovanie\nvydolovaný\nvydolovať\nVydraň\nvydrancovania\nvydrancovanie\nvydrancovaniu\nvydrancovaný\nvydrancovať\nvydrankať\nVydranoch\nVydrany\nVydrapením\nvydrapiť\nvydrapnúť\nvydrapoval\nvydrapovala\nvydrapovali\nvydrapovalo\nvydrapovať\nvydrapuj\nvydrapuje\nvydrapujem\nvydrapujeme\nvydrapuješ\nvydrapujete\nvydrapujme\nvydrapujte\nvydrapujú\nvydrapujúc\nvydrapúva\nvydrapúvaj\nvydrapúvajme\nvydrapúvajte\nvydrapúvajú\nvydrapúvajúc\nvydrapúval\nvydrapúvala\nvydrapúvali\nvydrapúvalo\nvydrapúvam\nvydrapúvame\nvydrapúvaš\nvydrapúvať\nvydrapúvate\nvydrať\nvydratý\nvydra\nvydraž\nvydráždený\nvydráždiť\nvydrážďovať\nvydraženia\nvydraženie\nvydražením\nvydraženiu\nvydražený\nvydraží\nvydražia\nvydražiac\nvydražil\nvydražila\nvydražili\nvydražilo\nvydražím\nvydražíme\nvydražíš\nvydražiť\nvydražíte\nvydražiteľ\nvydražiteľka\nvydražiteľský\nvydražme\nvydražovali\nvydražovaní\nvydražovaniu\nvydražovaných\nvydražovať\nvydražte\nvydražuje\nvydražujú\nvydrením\nvydretý\nvýdrev\nvýdreva\nvýdrevový\nvydrezírovať\nvydrhliť\nvydrhnutie\nvydrhnúť\nvydriapať\nvydriduch\nvydridušský\nvydridušstvo\nvydrieť\nvydrigroš\nvydrí\nvydrmnúť\nVydrná\nVydrník\nVydrníkom\nvydrobiť\nvydrobovať\nvydrôtikovať\nVydrova\nVydrove\nVydrovo\nVydrovská\nVydrovskej\nvydrúc\nvydrúľať\nvydruzgnúť\nvydrvenie\nvydrviť\nvydržaciu\nvydržaná\nvydržané\nvydržanie\nvydržaných\nvydržať\nvýdrž\nvydržiavaná\nvydržiavané\nvydržiavanie\nvydržiavaných\nvydržiavať\nvydržiteľa\nvydržovaním\nvydržovať\nvýdržový\nvydržuje\nvyďubkať\nvydúchať\nvydúchnuť\nvydumali\nvydumať\nvydupá\nvydupaj\nvydupajme\nvydupajte\nvydupajú\nvydupajúc\nvydupám\nvydupáme\nvydupáš\nvydupáte\nvydupať\nvydupávať\nvydupkávať\nvydur\nVydurení\nvyduriť\nvydurte\nvydutie\nvydutina\nvyduto\nvyduť\nvydutý\nvydúvanie\nvydúvať\nvydvihnú\nvydvihnúť\nVydvihol\nvydýchanie\nvydýchaný\nvydýchať\nvýdych\nvydýchnutí\nvydýchnutia\nvydýchnutie\nvydýchnuť\nvydychovaním\nvydychovať\nvýdychový\nvyeliminoval\nvyeliminovať\nvyexaminovať\nvyexcerpoval\nvyexcerpovala\nvyexcerpovali\nvyexcerpovalo\nvyexcerpovať\nvyexcerpuj\nvyexcerpuje\nvyexcerpujem\nvyexcerpujeme\nvyexcerpuješ\nvyexcerpujete\nvyexcerpujme\nvyexcerpujte\nvyexcerpujú\nvyexcerpujúc\nvyexpedovanie\nvyexpedovaním\nvyexpedovaný\nvyexpedovať\nvyexportovaný\nvyexportuje\nvyfabrikovania\nvyfabrikovanie\nvyfabrikovaný\nvyfabrikovať\nvyfackať\nvyfajčená\nvyfajčenej\nvyfajčení\nvyfajčenie\nvyfajčením\nvyfajčeniu\nvyfajčených\nvyfajčenými\nvyfajči\nvyfajčime\nvyfajčite\nvyfajčiť\nvyfaktúroval\nvyfaktúrovala\nvyfaktúrovali\nvyfakturovaný\nvyfaktúrovaný\nvyfakturovať\nvyfaktúrujeme\nvyfáraní\nvyfárania\nvyfáranie\nvyfárať\nvyfarbenia\nvyfarbený\nvyfarbi\nvyfarbime\nvyfarbite\nvyfarbiť\nvyfarbovaní\nvyfarbovať\nvyfasované\nvyfasovať\nvyfénovať\nvyfigľovať\nvyfintený\nvyfintiť\nVyflákol\nvyfliaskať\nvyformovanie\nvyformovaniu\nvyformovaný\nvyformovať\nvyforsírovať\nvyfoť\nvyfotí\nvyfotia\nvyfotiac\nvyfotil\nvyfotila\nvyfotili\nvyfotilo\nvyfotím\nvyfotíme\nvyfotíš\nvyfotiť\nvyfotíte\nvyfoťme\nvyfotografované\nvyfotografovaných\nvyfotografovať\nvyfoťte\nvyfrézovanie\nvyfrézovať\nvyfrflať\nvyfrfotať\nvyfrkla\nvyfrkli\nvyfrklo\nvyfrkne\nvyfrknem\nvyfrkneme\nvyfrkneš\nvyfrknete\nvyfrkni\nvyfrknime\nvyfrknite\nvyfrknú\nvyfrknúc\nvyfrknúť\nvyfrkol\nvyfrkovať\nvyfrnknúť\nvyfuč\nvyfučaná\nvyfučaní\nvyfučať\nvyfúkaný\nvyfúkať\nvýfuk\nvyfúknuté\nvyfúknutie\nvyfúknuť\nvyfukovania\nvyfukovanie\nvyfukovaním\nvyfukovaný\nvyfukovať\nvýfukový\nvyfundovať\nvyfutroval\nvyfutrovala\nvyfutrovali\nvyfutrovalo\nvyfutrovanie\nvyfutrovať\nvyfutruj\nvyfutruje\nvyfutrujem\nvyfutrujeme\nvyfutruješ\nvyfutrujete\nvyfutrujme\nvyfutrujte\nvyfutrujú\nvyfutrujúc\nvygazdovať\nvygenerovanie\nvygenerovaný\nvygenerovaný\nvygenerovať\nvygitovania\nvygitovanie\nvygitovaním\nvygitovať\nvygituje\nvygitujú\nvyglgnúť\nvygradoval\nvygradovala\nvygradovali\nvygrcať\nvygrckať\nvygrúliť\nvygúľa\nvygúľaj\nvygúľajme\nvygúľajte\nvygúľajú\nvygúľajúc\nvygúľal\nvygúľala\nvygúľali\nvygúľalo\nvygúľam\nvygúľame\nvygúľaš\nvygúľať\nvygúľate\nvygúlenými\nvygúliť\nvygumovanie\nvygumovaný\nvygumovať\nvyháčkoval\nvyhádajú\nvyhádali\nvyhádané\nvyhádať\nvyhádzaná\nvyhádzanie\nvyhadzaný\nvyhádzať\nvyhadzovač\nvyhadzovači\nvyhadzovane\nvyhadzovania\nvyhadzovanie\nvyhadzovaním\nvyhadzovaniu\nvyhadzovaný\nvyhadzovať\nvyhadzov\nvyhádžu\nvyhádžuc\nvyháňajúci\nvyháňané\nvyháňaní\nvyháňanie\nvyháňaním\nvyháňať\nvyhanbiť\nvyháraní\nvyhárať\nvyharcovať\nvyharušiť\nvyhasínať\nvyhasiť\nvyhasnutie\nvyhasnutiu\nvyhasnúť\nvyhasnutý\nvyháša\nvyhášaj\nvyhášajme\nvyhášajte\nvyhášajú\nvyhášajúc\nvyhášal\nvyhášala\nvyhášali\nvyhášalo\nvyhášam\nvyhášame\nvyhášaš\nvyhášať\nvyhášate\nvýherca\nvýherkyňa\nvýherný\nvyhľaď\nvyhľadania\nvyhľadanie\nvyhľadaním\nvyhľadaniu\nvyhľadaný\nvyhľadať\nvyhľadávacie\nvyhľadávací\nvyhľadávač\nvyhľadávačovi\nvyhľadávajúca\nvyhľadávajúci\nvyhľadávane\nvyhľadávanejší\nvyhľadávanie\nvyhľadávaný\nvyhľadávať\nvýhľad\nvyhladenie\nvyhladený\nvyhladiť\nvyhladnúť\nvyhladnutý\nvýhľadný\nvyhladovanie\nvyhladovaním\nvyhľadovaných\nvyhladovaný\nvyhladovať\nvyhladovenia\nvyhladovieť\nvýhľadovo\nvýhľadový\nvyhládzať\nvyhladzovací\nvyhladzovanie\nvyhladzovaných\nvyhladzovať\nvyhlásene\nvyhlásenie\nvyhlásený\nvyhlásený\nvyhlásiť\nvyhlasovania\nvyhlasovanie\nvyhlasovaním\nvyhlasovaniu\nvyhlasovaný\nvyhlasovateľ\nvyhlasovateľka\nvyhlasovať\nvyhláška\nvyhláškový\nvyhĺbenie\nvyhĺbením\nvyhĺbenina\nvyhĺbený\nvyhĺbiť\nvyhlbovanie\nvyhlbovať\nvyhliadal\nvyhliadať\nvyhliadka\nvyhliadkovo\nvyhliadkový\nVyhliadnutie\nvyhliadnuť\nvyhliadnutý\nvyhltá\nvyhltať\nvyhmataním\nvyhmataniu\nvyhmatať\nvyhmatávať\nvyhmatnúť\nvyhnalov\nvyhnanec\nvyhnanecký\nvyhnanieN\nvyhnanísk\nvyhnanisko\nvyhnankyňa\nvyhnanstvo\nvyhnaný\nvyhnať\nvyhňa\nvyhní\nVyhní\nvyhnijú\nvyhnisalo\nvyhnisanie\nvyhnisať\nvyhniť\nvyhnitý\nvyhnívaní\nvyhnívania\nvyhnívanie\nvyhnojenie\nvyhnojených\nvyhnojí\nvyhnojiť\nvyhnutia\nvyhnutie\nvyhnutím\nvyhnutiu\nvyhnúť\nvyhnutý\nvýhod\nvýhodaN\nvyhodenie\nvyhodený\nvyhodiť\nvýhodnejší\nvýhodne\nvyhodnocovacej\nVyhodnocovací\nvyhodnocovacia\nvyhodnocovacie\nvyhodnocovacieho\nvyhodnocovacích\nvyhodnocovacím\nvyhodnocovaciu\nvyhodnocovacom\nvyhodnocovacou\nvyhodnocovanie\nvyhodnocovaný\nvyhodnocovať\nvýhodnosť\nvyhodnotenie\nvyhodnotený\nvyhodnotiť\nvýhodný\nvyhojený\nvyhojiť\nvyhôľ\nvyholený\nvyholiť\nvýhon\nvýhonok\nvýhonov\nvýhony\nvyhor\nvyhorelec\nvyhorenec\nvyhorenia\nvyhorenie\nvyhorením\nvyhoreniskách\nvyhorenisko\nvyhorený\nvyhorieť\nvyhostenec\nvyhostenia\nvyhostenie\nvyhostením\nvyhostený\nvyhosti\nvyhostime\nvyhostite\nvyhostiť\nvyhosťovaní\nvyhosťovaním\nvyhosťovať\nvyhotovenie\nvyhotovený\nvyhotoviteľ\nvyhotoviť\nvyhotovovanie\nvyhotovovaných\nvyhotovovať\nvyhotovujúci\nvyhováračka\nvyhováraní\nvyhováranie\nvyhovárať\nvyhovené\nvyhovení\nvyhovenia\nvyhovenie\nvyhovením\nvyhoveniu\nvyhovených\nvyhovieť\nvyhovor\nvyhovoriť\nvýhovorka\nvyhovorte\nvyhovovať\nvyhovujúcejšej\nvyhovujúcejší\nvyhovujúcejšia\nvyhovujúcejšie\nvyhovujúcejšieho\nvyhovujúcejšiemu\nvyhovujúcejších\nvyhovujúcejším\nvyhovujúcejšími\nvyhovujúcejšiu\nvyhovujúcejšom\nvyhovujúcejšou\nvyhovujúci\nvyhovujúco\nvyhrab\nvyhrabaná\nvyhrabanou\nvyhrabať\nvyhrabávaním\nvyhrabávať\nvyhrabovať\nvyhrabúvať\nvýhrada\nvyhradenia\nvyhradenie\nvyhradením\nvyhradený\nvyhradiť\nvýhradne\nvýhradnosť\nvýhradný\nvyhradzoval\nvyhradzovala\nvyhradzovali\nvyhradzovalo\nvyhradzovať\nvyhradzuj\nvyhradzuje\nvyhradzujem\nvyhradzujeme\nvyhradzuješ\nvyhradzujete\nvyhradzujme\nvyhradzujte\nvyhradzujú\nvyhradzujúc\nvyhrane\nvyhranene\nvyhranenie\nvyhranením\nvyhranenosť\nvyhranený\nvyhraniť\nvyhraňovať\nvyhranýY\nvyhraný\nvyhrať\nvyhratý\nvyhrávajúci\nvyhrávanie\nvyhrávať\nvýhra\nvyhrážané\nvyhrážaní\nvyhrážania\nvyhrážanie\nvyhrážaním\nvyhrážaniu\nvyhrážať\nvyhrážavý\nvyhrážka\nvýhražne\nvýhražný\nvyhrbovať\nvyhrej\nvyhreje\nvyhrejem\nvyhrejeme\nvyhreješ\nvyhrejete\nvyhrejme\nvyhrejte\nvyhrejú\nvyhrejúc\nvyhrešená\nvyhrešenie\nvyhrešením\nvyhrešiť\nvýhrevňa\nvýhrevňami\nvýhrevne\nvýhrevni\nvýhrevniach\nvýhrevnosť\nvýhrevňu\nvýhrevný\nvyhriatej\nvyhriatemu\nvyhriatie\nvyhriatom\nvyhriať\nvyhriaty\nvyhriatych\nvyhriatymi\nvyhrievací\nvyhrievač\nvyhrievače\nvyhrievačov\nvyhrievania\nvyhrievanie\nvyhrievaním\nvyhrievaný\nvyhrievať\nvyhŕkla\nvyhŕkli\nvyhŕklo\nvyhŕkne\nvyhŕknem\nvyhŕkneme\nvyhŕkneš\nvyhŕknete\nvyhŕkni\nvyhŕknime\nvyhŕknite\nvyhŕknu\nvyhŕknuc\nvyhŕknuť\nvyhŕkol\nvyhrm\nvyhrmieť\nvyhrň\nvyhŕňajúci\nvyhŕňaní\nvyhŕňať\nvyhrnie\nvyhrniem\nvyhrnieme\nvyhrnieš\nvyhrniete\nvyhrňme\nvyhrňovanie\nvyhrňovať\nvyhrnovať\nvyhrňte\nvyhrnúť\nvyhrocovaní\nvyhrocovanie\nvyhrocovaním\nvyhrocovaniu\nvyhrocovať\nvyhrotene\nvyhrotenia\nvyhrotenie\nvyhrotením\nvyhroteniu\nVyhrotenosť\nvyhrotenosti\nvyhrotený\nvyhrotiť\nvyhrožoval\nvyhrožuje\nvyhrýzať\nvyhrýzť\nvyhubenia\nvyhubenie\nvyhubením\nvyhubený\nvyhubiť\nvyhuckať\nvyhučať\nvyhúdať\nvyhudovať\nvyhúknuť\nvyhúknutý\nvyhukovať\nvyhukúvať\nvyhupnúť\nvyhútať\nvyhutovať\nvyhvizdovať\nvyhýb\nvyhýbajúci\nvyhýbanie\nvyhýbať\nvyhýbavo\nvyhýbavosť\nvyhýbavý\nvýhybkár\nvýhybkárka\nvýhybka\nvýhybkový\nvýhybňa\nvýhybňami\nvýhybni\nvyhyň\nvyhýnajúci\nvyhýňajúci\nvyhýnať\nvyhynie\nvyhyniem\nvyhynieme\nvyhynieš\nvyhyniete\nvyhyňme\nvyhyňte\nvyhynutia\nvyhynutie\nvyhynúť\nvyhynutý\nvých\nvychádzajúci\nvychádzaného\nvychádzaní\nvychádzania\nvychádzanie\nvychádzať\nvychádzka\nvychádzkový\nvychamrať\nvychichotaný\nvychláda\nvychládaj\nvychládajme\nvychládajte\nvychládajú\nvychládajúc\nvychládal\nvychládala\nvychládali\nvychládalo\nvychládam\nvychládame\nvychládaš\nvychládať\nvychládate\nvychladenie\nvychladený\nvychladiť\nvychladnutie\nvychladnúť\nvychladnutý\nvychládzať\nvychladzovanie\nvychľaptať\nvychľastať\nvychleptať\nvychlípať\nvychlípiť\nvychlipkať\nvychlipnúť\nvychlisnúť\nvychloptať\nvychlostnúť\nvychmatnúť\nvýchod\nvychodený\nvýchodísk\nvýchodisko\nvýchodiskový\nvychodiť\nvýchodne\nvýchodniar\nvýchodniarka\nvýchodniarsky\nvýchodniarsky\nvýchodno\nvýchodný\nvýchodoafr\nvýchodoázij\nvýchodoázijský\nvýchodočeského\nvýchodočeskému\nvýchodočeskí\nvýchodočeskom\nvýchodočeských\nvýchodočeským\nvýchodočeskými\nVýchodočeský\nvýchodoeuróp\nvýchodoeurópsky\nvýchodoeurópsky\nvýchodofrízskeho\nvýchodofrízskym\nvýchodogerm\nvýchodoind\nVýchodoindická\nVýchodoindickej\nvýchodoindickom\nVýchodosibírska\nvýchodosibírske\nvýchodosibírskej\nvýchodosibírskych\nvýchodoslovák\nvýchodoslovan\nvýchodoslovanský\nvýchodoslovenský\nvýchodový\nvýchodozápadného\nvýchodozápadnej\nvýchodozápadnom\nvýchodozápadných\nvýchodzí\nvýchov\nvýchovách\nvýchovám\nvýchovami\nvychovane\nvychovania\nvychovanie\nvychovaním\nvychovanosť\nvychovaný\nvychovať\nvychovávajúci\nvychovávania\nvychovávanie\nvychovávaný\nvychovávateľ\nvychovávateľka\nvychovávateľský\nvychovávateľstva\nvychovávateľstvo\nvychovávať\nvýchova\nvýchovné\nvýchovne\nvýchovno\nvýchovno-vzdelávací\nvýchovný\nvychradnúť\nvychradnutý\nvychrámať\nvychrániť\nvychriakať\nvychrľ\nvychrliť\nvychrľme\nvychrľovať\nvychrľte\nvychrstnutých\nvychrtlá\nvychudnúť\nvychudnutý\nvychutnaniu\nvychutnať\nvychutnávač\nvychutnávania\nvychutnávaniu\nvychutnávať\nvychválenie\nvychváliť\nvychvaľovačný\nvychvaľovanie\nvychvaľovaný\nvychvaľovať\nvychvíliť\nvychvistnúť\nvychýl\nvychýlene\nvychýlenia\nvychýleniach\nvychýlenie\nvychýlením\nvychýleniu\nvychýlený\nvychýliť\nvýchylka\nvychyľovacej\nvychyľovacia\nvychyľovacie\nvychyľovacích\nvychyľovacími\nvychyľovane\nvychyľovania\nvychyľovanie\nvychyľovaniu\nvychyľovaný\nvychyľovať\nVychylovka\nVychylovke\nVychylovku\nVychylovky\nvychylovská\nvychyľujúce\nvychyľujúci\nvychýrenosť\nvychýrený\nvychýriť\nvychystaní\nvychystať\nvychystávať\nvychytané\nvychytaní\nvychytanie\nvychytaním\nvychytaniu\nvychytať\nvychytáva\nvychytávajú\nvychytávali\nvychytávame\nvychytávaní\nVychytávanie\nvychytávaniu\nvychytávať\nvychytenosť\nvychytený\nvychytiť\nvyinkasoval\nvyinkasovala\nvyinkasovali\nvyinkasovalo\nvyinkasovanie\nvyinkasovaniu\nvyinkasovaný\nvyinkasovať\nvyinkasuje\nvyinkasujeme\nvyinkasujú\nvyj\nvyjadreie\nvyjadrenie\nvyjadrený\nvyjadriteľný\nvyjadriť\nvyjadrovacíN\nvyjadrovanie\nvyjadrovaný\nvyjadrovať\nvyjadrujúci\nvyjagať\nvyjachať\nvyjachtať\nvyjarenia\nvyjarenie\nvyjaril\nvyjarili\nvyjariť\nvyjasnenie\nvyjasnený\nvyjasni\nvyjasnieť\nvyjasnieva\nvyjasnievali\nvyjasnievať\nvyjasnime\nvyjasnite\nVyjasnite\nvyjasniť\nvyjasňované\nvyjasňovaní\nvyjasňovania\nvyjasňovanie\nvyjasňovaním\nvyjasňovaniu\nvyjasňovať\nvyjašený\nvyjašilo\nvyjašiť\nvýjav\nvyjavene\nvyjavenia\nvyjavenie\nvyjavený\nvyjaviť\nvyjavovať\nvýjazd\nvyjazdenie\nvyjazdeniu\nvyjazdený\nvyjazdiť\nvýjazdný\nvýjazdový\nvyjdene\nvyjdení\nvyjdenia\nvyjdenie\nvyjdením\nvyjdi\nvyjdime\nvyjdite\nvyjdú\nvyjebaný\nvyjedanie\nvyjedať\nvyjedávajú\nvyjedávaní\nvyjedávania\nvyjedávaniach\nvyjedávanie\nvyjedené\nvyjedenia\nvyjedenie\nvyjednania\nvyjednanie\nvyjednaním\nvyjednaný\nvyjednať\nvyjednávací\nvyjednávač\nvyjednávačka\nvyjednávačkách\nvyjednávačky\nvyjednávajúca\nvyjednávané\nvyjednávanej\nvyjednávanie\nvyjednávanou\nvyjednávaných\nvyjednávateľ\nvyjednávateľa\nvyjednávať\nvyjesť\nvyjme\nvyjmem\nvyjmeme\nvyjmeš\nvyjmete\nvyjmi\nvyjmime\nvyjmite\nvyjmú\nvyjmúc\nvyjsť\nvykadiť\nvykachličkované\nvykachličkovanie\nvykachličkovaným\nvykachličkovať\nvykáľať\nvýkal\nvykalkulovanie\nvykalkulovaný\nvykalkulovať\nvýkalmi\nvýkalový\nvykanie\nvykaním\nvykántriť\nvykapať\nvykarhať\nvykarovania\nvykarovať\nvykasá\nvykasaj\nvykasajme\nvykasajte\nvykasajú\nvykasajúc\nvykasám\nvykasáme\nvykasanými\nvykasáš\nvykasáte\nvykasať\nvykastrované\nvykastrovanej\nvykastrovaných\nvykastrovať\nvykášať\nvykašlať\nvykašľať\nvykašlávať\nvykašliavať\nvykať\nvykázanie\nvykázaný\nvykázať\nvýkaz\nvýkaznícky\nvykazovacieho\nvykazovanie\nvykazovaný\nvykazovať\nvýkazový\nvykecať\nvykefovať\nvykerovať\nvykiadzať\nvyklaď\nvykladací\nvykladač\nvykladače\nvykladačka\nvykladačský\nvykladaču\nvykladania\nvykladanie\nvykladaním\nvykladaný\nvykladať\nvýklad\nvýkladísk\nvýkladisko\nvýkladíšť\nvýkladišťa\nvýkladišťami\nvýkladište\nvýkladišti\nvýkladišťom\nvýkladišťu\nvykládka\nvykládkového\nvykládkovej\nvykládkovú\nvykládkových\nvýkladný\nvýkladový\nvyklamať\nvykláňať\nvyklápací\nvyklápačiek\nvyklápačka\nvyklápačky\nvyklápanie\nvyklápaním\nvyklápaný\nvyklápať\nvyklasené\nvyklásť\nvyklaté\nvyklátiť\nvyklať\nvyklbčiť\nvykĺbenie\nvykĺbenina\nvykĺbený\nvykĺbiť\nvyklčované\nvyklčovaní\nvyklčovania\nvyklčovanie\nvyklčovať\nvyklebetiť\nvýklenkovú\nvýklenkovými\nvýklenok\nvyklenovanie\nvyklenovať\nvyklenúť\nvyklenutie\nvyklenutý\nvyklepať\nvyklepávanie\nvyklepávať\nvyklepkať\nvyklepkávať\nvýklepkoch\nvýklepkom\nvýklepkov\nvýklepky\nvyklepnúť\nvýklepový\nvykliať\nvyklíčené\nvyklíčenej\nvyklíčení\nvyklíčiť\nvykličovanie\nvykličovať\nvykloktať\nvykloneniu\nvykloniť\nvyklonovali\nvyklonovaného\nvyklonovaním\nvyklopať\nvyklopávanie\nvyklopávať\nvyklopenie\nvyklopený\nvyklopiť\nvyklopkať\nvyklopkávaní\nvyklopkávať\nvýklopník\nvýklopný\nvyklovať\nvykľučkovanie\nvykľučkovať\nvykluje\nvykľuť\nvykľuvať\nvykľúvať\nvykĺznutie\nvykĺznuť\nvykmasnúť\nvyknísať\nvykokci\nvykokcime\nvykokcite\nvykoktať\nvykoľajenia\nvykoľajenie\nvykoľajením\nvykoľajeniu\nvykoľajený\nvykoľajiť\nvykoľajovať\nvykoledoval\nvykoledovali\nvykoleduje\nvykoledujú\nvykolíkoval\nvykolíkovala\nvykolíkovali\nvykolíkovalo\nvykolíkovanie\nvykolíkovaný\nvykolíkovať\nvykolíkuj\nvykolíkuje\nvykolíkujem\nvykolíkujeme\nvykolíkuješ\nvykolíkujete\nvykolíkujme\nvykolíkujte\nvykolíkujú\nvykolíkujúc\nvykolísať\nvykombinovať\nvykompenzoval\nvykompenzovala\nvykompenzovali\nvykompenzovalo\nvykompenzovanie\nvykompenzovaním\nvykompenzovaný\nvykompenzovať\nvykompenzuje\nvykompenzujeme\nvykompenzujú\nvykonanie\nvykonanieN\nvykonaný\nvykonateľne\nvykonateľnosť\nvykonateľný\nvykonať\nvykonávací\nvykonávač\nvykonávajúci\nvykonávane\nvykonávanie\nvykonávaný\nvykonávateľ\nvykonávateľka\nvykonávateľný\nvykonávateľský\nvykonávať\nvykonávka\nvýkon\nvýkonne\nvýkonno\nvýkonnosť\nvýkonnostne\nvýkonnostný\nvýkonný\nvýkonovo\nvýkonový\nvykonštruovane\nvykonštruovania\nvykonštruovanie\nvykonštruovaný\nvykonštruovať\nvykopanejší\nvykopanie\nvykopanina\nvykopaný\nvykopať\nvykopávanie\nvykopávaním\nvykopávať\nvykopávka\nvýkop\nvýkopkov\nvykopnutie\nvykopnutím\nvykopnúť\nvykopnutý\nvýkopový\nvykoprcnúť\nvykorbáčovať\nvykorčuľovanie\nvykorčuľovať\nvykorenená\nvykorenené\nvykorenenie\nvykorenenosť\nvykoreneným\nvykoreniť\nvykoreňoval\nvykoreňovala\nvykoreňovali\nvykoreňovalo\nvykoreňovať\nvykoreňuj\nvykoreňuje\nvykoreňujem\nvykoreňujeme\nvykoreňuješ\nvykoreňujete\nvykoreňujme\nvykoreňujte\nvykoreňujú\nvykoreňujúc\nvykorešpondovať\nvykorigovanie\nvykorigovaný\nvykorigovať\nvykoristi\nvykoristime\nvykoristite\nvykoristiť\nvykorisťovania\nvykorisťovanie\nvykorisťovaním\nvykorisťovaniu\nvykorisťovaný\nvykorisťovateľ\nvykorisťovateľský\nvykorisťovať\nvykosené\nvykosiť\nvykostené\nvykosteného\nvykosti\nvykostime\nvykostite\nvykostiť\nvykôstkovaný\nvykôstkovať\nvykosťoval\nvykosťovala\nvykosťovali\nvykosťovalo\nvykosťovať\nvykosťuj\nvykosťuje\nvykosťujem\nvykosťujeme\nvykosťuješ\nvykosťujete\nvykosťujme\nvykosťujte\nvykosťujú\nvykosťujúc\nvykotiť\nvykotkodákať\nvykotúľať\nvykotúliť\nvykovaný\nvykovať\nvýkovok\nvykračovanie\nvykračovať\nvykrádač\nvykrádačka\nvykrádačský\nvykrádania\nvykrádanie\nvykrádaním\nvykrádaniu\nvykrádaný\nvykrádať\nvykradnutia\nvykradnutie\nvykradnutím\nvykradnutiu\nvykradnúť\nvykradnutý\nvykrajovač\nvykrajovanie\nvykrajovaný\nvykrajovať\nvykrákoriť\nvykrámiť\nvykrápa\nvykrápaj\nvykrápajme\nvykrápajte\nvykrápajú\nvykrápajúc\nvykrápam\nvykrápame\nvykrápaš\nvykrápate\nvykrápať\nvykrásniť\nvykrášliť\nvykrátiť\nvykrbáliť\nvykresať\nvykresáva\nvykresávaj\nvykresávajme\nvykresávajte\nvykresávajú\nvykresávajúc\nvykresával\nvykresávala\nvykresávali\nvykresávalo\nvykresávam\nvykresávame\nvykresávaš\nvykresávať\nvykresávate\nvýkres\nvykreslenie\nvykreslený\nvykresliť\nvykresľovanie\nvykresľovaním\nvykresľovaniu\nvykresľovaný\nvykresľovaný\nvykresľovať\nvykresľujúci\nvýkresový\nvykrič\nvykričaný\nvykričať\nvýkričná\nvýkričné\nvýkričník\nvýkričnú\nvykríkať\nvýkrik\nvykríknuť\nvykrikovania\nvykrikovanie\nvykrikovaním\nvykrikovať\nvykrikujúcim\nvykrivené\nvykrivenie\nvykriviť\nvykrivovanie\nvykrivovať\nvýkrm\nvýkrmca\nvýkrmcov\nVýkrmcovia\nvykŕmenec\nvykŕmený\nvykŕmiť\nvýkrmňa\nvýkrmnosť\nvýkrmný\nvykrmovaní\nvykrmovania\nvykrmovanie\nvykrmovaním\nvykrmovať\nvýkrmový\nvykročení\nvykročenia\nvykročenie\nvykročením\nvykročeniu\nvykročiť\nvykročiť\nvykroiť\nvýkroj\nvykrojenia\nvykrojenie\nvykrojený\nvykrojiť\nvykrojiť\nvýkrojok\nvykropí\nvykropím\nvykropíme\nvykropíš\nvykropíte\nvykropiť\nvýkrsový\nvykrúcačiek\nvykrúcačka\nvykrúcačkách\nvykrúcačky\nvykrúcania\nvykrúcanie\nvykrúcanina\nvykrúcať\nvykrucuje\nvykrucujúci\nvýkrut\nvýkruta\nvykrútenia\nvykrútenie\nvykrútením\nvykrútený\nvykrútiť\nvýkrutka\nvykrútnuť\nvykrvácania\nvykrvácanie\nvykrvácaním\nvykrvácaniu\nvykrvácaný\nvykrvácať\nvykryštalizovania\nvykryštalizovanie\nvykryštalizovaním\nvykryštalizovaniu\nvykryštalizovaný\nvykryštalizovať\nvykrytia\nvykrytie\nvykrytím\nvykrytiu\nvykryť\nvykrytý\nvykrývač\nvykrývačovi\nvykrývaní\nvykrývania\nvykrývať\nvykuká\nvykukáte\nvykúkať\nvykukávať\nvykukliť\nvykuknúť\nvykukoval\nvykukovala\nvykukovali\nvykukovalo\nvykukovať\nvykukuj\nvykukuje\nvykukujem\nvykukujeme\nvykukuješ\nvykukujete\nvykukujme\nvykukujte\nvykukujú\nvykukujúc\nvykumštovať\nvykúpaj\nvykúpajme\nvykúpajte\nvykúpajúc\nvykúpať\nvýkup\nvýkupca\nvykúpene\nvykúpenie\nvykúpený\nvykupiteľ\nvykupiteľsky\nvykupiteľský\nvykúpiť\nvýkupkyňa\nvýkupňa\nvýkupné\nvýkupný\nvykupovaciu\nvykupovač\nvykupovačka\nvykupovania\nvykupovanie\nvykupovaním\nvykupovaniu\nvykupovaný\nVykupovatelia\nvykupovateľov\nvykupovať\nvykupovať\nvýkupový\nvykupúvať\nvykúrenie\nvykúrený\nvykurírovať\nvykúriť\nvykurovací\nvykurovane\nvykurovanie\nvykurovaný\nvykurovať\nvykutať\nvykutávať\nvykutie\nvykutiť\nvykutrať\nvykutráva\nvykutrávaj\nvykutrávajme\nvykutrávajte\nvykutrávajú\nvykutrávajúc\nvykutrával\nvykutrávala\nvykutrávali\nvykutrávalo\nvykutrávam\nvykutrávame\nvykutrávaš\nvykutrávať\nvykutrávate\nvykutre\nvykutrem\nvykutreme\nvykutreš\nvykutrete\nvykutri\nvykutrime\nvykutrite\nvykutrú\nvykutrúc\nvykuť\nvykutý\nvykúva\nvykúvaj\nvykúvajme\nvykúvajte\nvykúvajú\nvykúvajúc\nvykúval\nvykúvala\nvykúvali\nvykúvalo\nvykúvam\nvykúvame\nvykúvaš\nvykúvať\nvykúvate\nvykúzliť\nvykváč\nvykváče\nvykváčem\nvykváčeme\nvykváčeš\nvykváčete\nvykváčme\nvykváčte\nvykváču\nvykváčuc\nvykvákať\nvykvapkať\nvykvasením\nvykvasený\nvykvasiť\nvýkvet\nvykvitajúci\nvykvitanie\nvykvitať\nvykvitnúť\nvykycnúť\nvykydať\nvykydnutím\nvykydnúť\nvykýchať\nvykynožené\nvykynožení\nvykynoženia\nvykynoženie\nvykynožiť\nvykynožovať\nvykyp\nVykyp\nvykypenie\nvykypieť\nvykysnutie\nvykysnúť\nvykysnutý\nvykýv\nvykývaný\nvykývať\nvýkyv\nvykýve\nVykýve\nvykývem\nvykýveme\nvykýveš\nvykývete\nvykývme\nvýkyvne\nvýkyvný\nvykyvovať\nvykývte\nvykývu\nvykývuc\nvylác\nvyláce\nvylácem\nvyláceme\nvyláceš\nvylácete\nvylácme\nvylácte\nvylácu\nvylácuc\nvylačnie\nvylačnieť\nvyladenia\nvyladenie\nvyladený\nvyladený\nvyladiť\nvylaďoval\nvylaďovania\nvylaďovanie\nvylaďovaním\nvylaďovať\nvylaďuje\nvylaďujú\nvyľahčené\nvyľahčenie\nvyľahči\nvyľahčime\nvyľahčite\nvyľahčiť\nvyľahčovaní\nvyľahčovať\nvyľahnúť\nvyľakane\nvylákania\nvylákanie\nvylákaním\nvyľakano\nvyľakanosť\nvylákaný\nvyľakaný\nvyľakať\nvylákať\nvylalotať\nvylám\nvylámaná\nvylámanej\nvylámať\nvylámme\nvylamovane\nvylamovaní\nvylamovanie\nvylamovať\nvylámte\nvylátať\nvylepenia\nvylepenie\nvylepený\nvylepiť\nVylepovači\nvylepované\nvylepovaní\nvylepovania\nvylepovanie\nvylepovaním\nvylepovaniu\nvylepovať\nvylepšenie\nvylepšený\nvylepši\nvylepšime\nvylepšite\nvylepšiť\nvylepšoval\nvylepšovala\nvylepšovali\nvylepšovalo\nvylepšovania\nvylepšovanie\nvylepšovaním\nvylepšovaniu\nvylepšovaný\nvylepšovať\nvylepšuj\nvylepšuje\nvylepšujem\nvylepšujeme\nvylepšuješ\nvylepšujete\nvylepšujme\nvylepšujte\nvylepšujú\nvylepšujúc\nvyleptaný\nvyleptať\nvyleptávať\nvyleštenie\nvyleštený\nvylešti\nvyleštime\nvyleštite\nvyleštiť\nvyleť\nvýlet\nvyletení\nvyletenú\nvyletieť\nvýletnícky\nvýletníčka\nvýletník\nvýletný\nvyletovať\nvýletový\nvyletúvať\nvýlev\nvýleve\nvýlevka\nvýlevkový\nvylezený\nvyležanie\nvyležať\nvyliahnutia\nvyliahnuť\nvyliahnutý\nvyliatí\nvyliatia\nvyliatie\nvyliatím\nvyliatiu\nvýliatkami\nvýliatkoch\nvýliatkom\nvýliatkov\nvýliatku\nvýliatky\nvýliatok\nvyliať\nvyliaty\nvylicitoval\nvylicitovať\nvylicituje\nvylíčenie\nvylíčený\nvylíčiť\nvyliečenia\nvyliečenie\nvyliečením\nvyliečený\nvyliečiteľný\nvyliečiť\nvyliepať\nvylietať\nvylietavať\nvylietla\nvylietli\nvylietlo\nvylietne\nvylietnem\nvylietneme\nvylietneš\nvylietnete\nvylietni\nvylietnime\nvylietnite\nvylietnu\nvylietnuc\nvylietnuť\nvylietol\nvylievaní\nvylievania\nvylievanie\nvylievaním\nvylievať\nvyliezať\nvyliezť\nvyligotaný\nvylihovaní\nvylihovanie\nvylihovaním\nvylihovať\nvylihúvať\nvýlisok\nvylisovanie\nvylisovaním\nvylisovaný\nvylisovať\nvylízaný\nvylízať\nvylizovať\nvylodenia\nvylodenie\nvylodený\nvylodiť\nvyloďovacie\nvyloďovacieho\nvyloďovanie\nvyloďovať\nvylogať\nvýloh\nvýloha\nvýlohách\nvýlohami\nvýlohou\nvýlohy\nvylomenia\nvylomenie\nvylomením\nvylomenín\nvylomenina\nvylomeninách\nvylomeniny\nvylomený\nvylomiť\nvýlomok\nvýlomov\nvýlomu\nvylopotiť\nvylosoval\nvylosovala\nvylosovali\nvylosovania\nvylosovaný\nvylosovať\nvylosuje\nVylosujeme\nvylosujú\nvýlov\nvylovená\nvylovené\nvylovenej\nvylovenou\nvylovených\nvyloviť\nvylovovania\nvylovovať\nvyložene\nvyloženia\nvyloženie\nvyložením\nvyloženiu\nvyložený\nvyložiť\nvýložka\nvýložníka\nvýložníkom\nvýložníkový\nvýložníky\nvylúčene\nvylúčenie\nvylúčenosti\nvylúčený\nvylúčiť\nvýlučne\nvýlučnosť\nvýlučný\nvýlučok\nvylučovací\nvylučovanie\nvylučovaný\nvylučovať\nvylučujúca\nvylučujúce\nvylučujúci\nvylučujúcich\nvylúdiť\nvyľudnenie\nvyľudnením\nvyľudneniu\nvyľudnený\nvyľudni\nvyľudnime\nvyľudnite\nvyľudniť\nvyľudňovania\nvyľudňovanie\nvyľudňovaním\nvyľudňovaniu\nvyľudňovať\nvyludzované\nvyludzovať\nvyludzujúca\nvýluh\nvyluhaný\nvýluhmi\nvýluhov\nvylúhovania\nvylúhovanie\nvylúhovaním\nvylúhovaný\nvylúhovať\nvýluhu\nvýluhy\nvýluk\nvýluka\nvylúpať\nvylúpenie\nvylúpením\nvylúpený\nvylúpiť\nvylupkať\nvylúpnutia\nvylúpnuť\nvýlupok\nvylupovanie\nvylupovať\nvylúskať\nvyluskla\nvyluskli\nvylusklo\nvyluskne\nvylusknem\nvyluskneme\nvyluskneš\nvylusknete\nvyluskni\nvylusknime\nvylusknite\nvylusknú\nvylusknúc\nvylusknúť\nvyluskol\nvylúštená\nvylúštení\nvylúštenie\nvylúštiť\nvyluxovaní\nvyluxovať\nvylúžených\nvylúžila\nvylúžiť\nvymáčať\nvymáhač\nvymáhanie\nvymáhaný\nvymáhateľ\nvymáhateľa\nvymáhatelia\nvymáhateľmi\nvymáhateľnosť\nvymáhateľný\nvymáhateľom\nvymáhateľov\nvymáhať\nvymáchať\nvymajstrovať\nvymaká\nvymakanie\nvymakať\nvymakávať\nvymaľovania\nvymaľovanie\nvymaľovaný\nvymaľovať\nvymámenie\nvymámenú\nvymámiť\nvymanení\nvymanenia\nvymanenie\nvymanévroval\nvymanévrovať\nvymangľovať\nvymanikúrovať\nvymaniť\nvymaňoval\nvymaňovala\nvymaňovali\nvymaňovalo\nvymaňovaní\nvymaňovať\nvymaňuj\nvymaňuje\nvymaňujem\nvymaňujeme\nvymaňuješ\nvymaňujete\nvymaňujme\nvymaňujte\nvymaňujú\nvymaňujúc\nvymasírovať\nvymasti\nvymastime\nvymastite\nvymastiť\nvymazane\nvymazanie\nvymazaný\nVymazateľná\nvymazať\nvymazávané\nvymazávanie\nvymazávať\nvýmaz\nvymazná\nvymedzene\nvymedzenie\nvymedzenosť\nvymedzený\nvymedzi\nvymedziť\nvymedzovaní\nvymedzovania\nvymedzovanie\nvymedzovaním\nvymedzovaniu\nvymedzovať\nvýmen\nvýmena\nvymenenie\nvymenením\nvymenený\nvymeniteľne\nvymeniteľnosť\nvymeniteľný\nvymeniť\nvýmenník\nvýmenníkový\nvýmenný\nvýmenok\nvymenovací\nvymenovacie\nvymenovacieho\nvymenovacích\nvymenovacom\nvymeňované\nvymenovanie\nvymenovaný\nvymenovaný\nvymenovať\nvymenovávaní\nvymenovávania\nVymenovávanie\nvymenovávaním\nvymenovávaných\nvymenovávať\nvymenúvací\nvymenúvaní\nvymenúvania\nvymenúvanie\nvymenúvaním\nvymenúvaniu\nvymenúvaných\nvymenúvať\nvymerania\nvymeranie\nvymeraním\nvymeraný\nvymerať\nvýmera\nvýmer\nvymeriavací\nvymeriavači\nvymeriavanie\nvymeriavaný\nvymeriavať\nvymeriť\nvymeškané\nvymeškaných\nvymeškať\nvymeškávať\nvýmet\nvymetanie\nvymetať\nvýmete\nvymetením\nvymeteniu\nvymetený\nvýmetovosti\nvýmetu\nvymieľania\nvymieľanie\nvymieľať\nvýmien\nvymieňania\nvymieňanie\nvymieňaním\nvymieňaný\nvymieňať\nvymienil\nvymienila\nvymienili\nvymienilo\nvymieniť\nvymieraní\nvymierania\nvymieranie\nvymieraním\nvymieraniu\nvymierať\nvymiesená\nvymiesiť\nvymiesť\nvymiešané\nvymiešanú\nvymiešať\nvymíňanie\nvymíňať\nvymiškovať\nvymiznutia\nvymiznutie\nvymiznutím\nvymiznutiu\nvymiznúť\nvymknutí\nvymknutie\nvymknúť\nvymkýnať\nvymladiť\nvýmladkových\nvymladnúť\nVýmlat\nvymlátené\nvymlátení\nvymlátenie\nvymlátiť\nvýmlatom\nvýmlatu\nvýmlaty\nvymletú\nvymlieť\nvýmmený\nvymôcť\nvymočené\nvymočenej\nvymočiť\nvymodelovaný\nvymodelovať\nvymódený\nvymódiť\nvymodlikajú\nvymodlikal\nvymodlikať\nvymodliť\nvymokať\nvymoknúť\nvýmoľa\nvýmole\nvýmoli\nvýmoľ\nvýmoľmi\nvýmoľoch\nvýmoľom\nvýmoľov\nvýmoľový\nvýmoľu\nvymontoval\nvymontovania\nvymontovaný\nvymontovať\nvymontuje\nvymontujú\nvymordovať\nvymoriť\nvymotať\nvymotávať\nvymôž\nvymoženie\nvymoženosť\nvymožený\nvymožiteľnosť\nvymožiteľný\nvymožiteľný\nvymôžuc\nvymraz\nvymrazí\nvymraziť\nvymrazovaní\nvymrazovania\nvymrazovanie\nvymretia\nvymretie\nvymretý\nvymrieť\nvymrštenia\nvymrštený\nvymršti\nvymrštime\nvymrštite\nvymrštiť\nvymršťovať\nvymrúc\nvymrvenie\nvymrviť\nvymŕza\nvymŕzaj\nvymŕzajme\nvymŕzajte\nvymŕzajú\nvymŕzajúc\nvymŕzal\nvymŕzala\nvymŕzali\nvymŕzalo\nvymŕzam\nvymŕzame\nvymŕzaš\nvymŕzať\nvymŕzate\nvymrznuté\nvymrznutí\nvymrznutie\nvymrznúť\nvymrznutých\nvymstila\nvymstiť\nvymudrované\nvymudrovať\nvymurovania\nvymurovanie\nvymurovaný\nvymurovať\nvymuroviek\nvymurovka\nvýmurovka\nvymurovku\nvymurovky\nvymurúva\nvymurúvaj\nvymurúvajme\nvymurúvajte\nvymurúvajú\nvymurúvajúc\nvymurúval\nvymurúvala\nvymurúvali\nvymurúvalo\nvymurúvam\nvymurúvame\nvymurúvaš\nvymurúvať\nvymurúvate\nvymuštrovať\nvymydliť\nvymykať\nvymykávať\nvymyknúť\nvymykovať\nvýmyselníčka\nvýmyselník\nvýmyselný\nvýmysel\nvymyslene\nvymyslenie\nvymyslený\nvymyslieť\nvymýšľané\nvymýšľaní\nvymýšľania\nvymýšľanie\nvymýšľaním\nvymýšľaniu\nvymýšľaných\nvymýšľať\nvymýšľavý\nvymyté\nvymytie\nvymyť\nVymytý\nvymývača\nvymývačke\nvymývačkou\nvymývané\nvymývaného\nvymývanie\nvymývaným\nvymývať\nvynáčiť\nvynačudovať\nvynadá\nvynadaj\nvynadajme\nvynadajte\nvynadajú\nvynadajúc\nvynadal\nvynadala\nvynadali\nvynadalo\nvynadám\nvynadáme\nvynadaní\nvynadanie\nvynadáš\nvynadať\nvynadáte\nvynadívať\nvynahradenie\nvynahradený\nvynahradiť\nvynahrádzať\nvynahradzovať\nvynachádzanie\nvynachádzať\nvynachádzavo\nvynachádzavosť\nvynachádzavý\nvynachváliť\nvynájdenia\nvynájdenie\nvynájdením\nvynájdeniu\nvynájdený\nvynájdime\nvynájduc\nvynájsť\nvynakladanie\nvynakladaný\nvynakladať\nvyňal\nvyňala\nvynález\nvynálezca\nvynálezcovský\nvynálezcovstvo\nvynálezkyňa\nvyňali\nvynaliezajú\nvynaliezavo\nvynaliezavosť\nvynaliezavosti\nvynaliezavosťou\nvynaliezavý\nvyňalo\nvynaloženia\nvynaloženie\nvynaložením\nvynaloženiu\nvynaloženo\nvynaložený\nvynaložiť\nvynárajúci\nvynárať\nvynasnažiť\nvynásobenia\nvynásobenie\nvynásobením\nvynásobený\nvynásobiť\nvynásobovať\nvynášania\nvynášanie\nvynášaním\nvynášaniu\nvynášaný\nvynášať\nvyňať\nvyňatie\nvýňatok\nvyňatý\nvynechania\nvynechaniam\nvynechanie\nvynechaním\nvynechaniu\nvynechaný\nvynechať\nvynechávané\nvynechávaní\nvynechávania\nvynechávanie\nVynechávaním\nvynechávaniu\nvynechávať\nvynervovane\nvynervovaný\nvynervovať\nVynervovávať\nvynesenia\nvyneseniach\nvynesenie\nvynesením\nvyneseniu\nvynesený\nvyničení\nvyničenie\nvyničiť\nvyniesť\nvynikajúcejšie\nvynikajúci\nvynikajúco\nvynikanie\nvynikať\nvynikavý\nvyniknutia\nvyniknúť\nvynímané\nvynímaní\nvynímania\nvynímanie\nvynímaním\nvynímať\nvýnimka\nvýnimočne\nvýnimočnosť\nvýnimočný\nvýnimok\nvynivočí\nvynivočil\nvynivočím\nvynivočiť\nvynor\nvynorení\nvynorenia\nvynorenie\nvynoreným\nvynoriť\nvynorte\nvýnos\nvynosiť\nvýnosne\nvýnosnosť\nvýnosný\nvýnosovo\nvýnosový\nvynôtiť\nvynovenia\nvynovenie\nvynovením\nvynovený\nvynoviť\nvynovoval\nvynovovala\nvynovovali\nvynovovalo\nVynovovalo\nVynovovanie\nvynovovať\nvynovuj\nvynovuje\nvynovujem\nvynovujeme\nvynovuješ\nvynovujete\nvynovujme\nvynovujte\nvynovujú\nvynovujúc\nvynucovania\nvynucovanie\nvynucovaním\nvynucovaniu\nvynucovaný\nvynucovať\nvynucujúca\nvynucujúci\nvyňuchať\nvyňuchávať\nvynukovanie\nvynukovať\nvynulovanie\nvynulovaný\nvynulovať\nvynúrať\nvynútenejší\nvynútenia\nvynútenie\nvynútením\nvynúteniu\nvynútený\nvynútiteľný\nvynútiť\nvyobcovanie\nvyobcovaním\nvyobcovaný\nvyobcovať\nvyobháňať\nvyobjímať\nvyoblápať\nvyobliekaný\nvyobliekať\nvyoblizovať\nvyobracať\nvyobrazenie\nvyobrazený\nvyobrazí\nvyobrazila\nvyobraziť\nvyobrazujú\nvyobšívať\nvyobúvať\nvyočený\nvyočiť\nvyonačiť\nvyondi\nvyondiac\nvyondiať\nvyondieť\nvyondime\nvyondite\nvyoperovaný\nvyoperovať\nvyoraná\nvyorane\nVyorané\nvyoranej\nvyoranie\nvyoraniu\nvyoraných\nvyoranými\nvyorať\nvyorávač\nvyorávanej\nvyorávaní\nvyorávania\nvyorávanie\nvyorávaním\nvyorávať\nvyorávka\nvyorodovať\nvyostrene\nvyostrenia\nvyostrenie\nvyostrením\nvyostreniu\nvyostrený\nvyostriť\nvyostrovania\nvyostrovanie\nvyostrovaním\nvyostrovaniu\nvyostrovaný\nvyostrovať\nvýp\nvypáckať\nvypáčenia\nvypáčený\nvypáčiť\nvypadajúci\nvypadaním\nvypadaný\nvypadať\nvypadávať\nvýpad\nvypadnutia\nvypadnutie\nvypadnutím\nvypadnutiu\nvypadnúť\nvypadnutý\nvýpadok\nvýpadovka\nvýpadový\nvypadúvania\nvypadúvať\nvypáchnutej\nvypáchnuť\nvypájania\nvypájať\nvypakovať\nvypáĺ\nvypäl\nvypäla\nvýpal\nvypálenia\nvypálenie\nvypálením\nvypálený\nvypäli\nvypáliť\nvýpalk\nvýpalkov\nvýpalky\nvýpalné\nvýpalného\nvýpalnému\nvýpalnícky\nvýpalníctvach\nvýpalníctvam\nvýpalníctvo\nvýpalníčka\nvýpalník\nvýpalnom\nvýpalným\nvypälo\nvypaľovania\nvypaľovanie\nvypaľovaním\nvypaľovaniu\nvypaľovaný\nvypaľovať\nvypánený\nvypantať\nvypaprať\nvypar\nvyparádený\nvyparádiť\nvyparatiť\nvypárať\nvýpar\nvyparenie\nvyparený\nvypariť\nvýparné\nvýparník\nvýparnosť\nvýparný\nvyparovaní\nvyparovania\nvyparovanie\nvyparovať\nvyparte\nvypas\nvypásanie\nvypásať\nvypasenie\nvypasený\nvypasovaný\nvypasovaný\nvypasovať\nvypásť\nvypätie\nvypäto\nvypätosť\nvypátrania\nvypátranie\nvypátraním\nvypátraniu\nvypátraný\nvypátrať\nvypäť\nvypätý\nvypečený\nvypekanie\nvypekať\nvýpek\nvypeľhať\nvypeniť\nvyperený\nvyperiť\nvýpestok\nvypestovanie\nvypestovaním\nvypestovaný\nvypestovať\nvypestúvať\nvypchať\nvypchatý\nvypchávanie\nvypchávať\nvypchávka\nvypchávkový\nvypiecť\nvypieranie\nvypieraním\nvypierať\nvypichnuté\nvypichnúť\nvypichnutých\nvypichnutým\nvypichované\nvypichovaných\nvypichovať\nvypíjanie\nvypíjať\nvypílené\nvypílením\nvypílených\nvypílil\nvypílili\nvypíliť\nvypiloval\nvypilovaní\nvypilovať\nvypiľovať\nvypiľujeme\nvypínací\nvypínač\nvypínajúci\nvypínane\nvypínanie\nvypínaný\nvypínať\nvypínavo\nvypínavosť\nvypínavý\nvypiplané\nvypiplanej\nvypiplanie\nvypiplať\nvypísanie\nvypísaný\nvypísať\nvýpis\nvypískanieN\nvypískaný\nvypískať\nvypísknutieN\nvypiskovať\nvýpisok\nvypisované\nvypisovanej\nvypisovanie\nvypisovaných\nvypisovanými\nvypisovateľ\nvypisovateľka\nvypisovať\nvýpisový\nvypišať\nvypíšu\nvypíšuc\nvypitá\nvypité\nvypitého\nvypitej\nvypití\nvypitie\nVypitvané\nvypitvanej\nvypitvaných\nvypitvať\nvypitvi\nvypitvime\nvypitvite\nvypiť\nvypitých\nvyplácajúca\nvyplácanie\nvyplácaný\nvyplácať\nvyplačú\nvyplačúc\nvypláchať\nvýplach\nvypláchnuté\nvypláchnutie\nvypláchnuť\nvyplachovači\nvyplachovanie\nvyplachovaný\nvyplachovať\nvýplachový\nvyplakaný\nvyplakať\nvyplákať\nvyplakávania\nvyplakávanie\nvyplakávať\nvýplak\nvypláknutie\nvypláknuť\nvyplakovať\nvýplakový\nvyplanírovať\nvyplantať\nvyplašene\nvyplašený\nvyplašiť\nvýplašky\nvýplat\nvýplata\nvýplatca\nvyplatene\nvyplatenie\nvyplatený\nvýplatiť\nvyplatiť\nvýplatky\nvýplatný\nvýplatok\nvyplávaní\nvyplávanie\nvyplávaniu\nvyplávať\nvyplavenie\nvyplavený\nvyplaviť\nvyplavovania\nvyplavovanie\nvyplavovaním\nvyplavovaniu\nvyplavovať\nvyplazeným\nvyplaziť\nvyplazovať\nvyplečkovať\nvyplej\nvypleje\nvyplejem\nvyplejeme\nvypleješ\nvyplejete\nvyplejme\nvyplejte\nvyplejú\nvyplejúc\nvyplekať\nvyplemeniť\nvyplešivený\nvyplešti\nvypleštime\nvypleštite\nvypleštiť\nvypletá\nvypletaj\nvypletajme\nvypletajte\nvypletajú\nvypletajúc\nvypletal\nvypletala\nvypletali\nvypletalo\nvypletám\nvypletáme\nvypletanie\nvypletanými\nvypletáš\nvypletať\nvypletáte\nvýplet\nvypleteného\nvypletím\nvypliaskať\nvyplienenia\nvyplienenie\nvyplienený\nvyplieniť\nvyplieňujú\nvyplieskať\nvypliesť\nvypliešťať\nvyplieť\nvyplievať\nvypĺňaná\nvypĺňané\nvypĺňanie\nvypĺňaných\nvypĺňaným\nvypĺňať\nvýplň\nvyplnenie\nvyplnený\nvyplniť\nvýplnkový\nvýplnok\nvyplňovanie\nvyplňovaných\nvyplňovať\nvýplňový\nvyplňujúca\nvyplňujúce\nvyplňujúci\nvyplňujúco\nvyplňujúcu\nvýplod\nvypľundrovať\nvypľuť\nvypľuvať\nvypľúvať\nvyplyň\nvyplynie\nvyplyniem\nvyplynieme\nvyplynieš\nvyplyniete\nvyplyňme\nvyplyňte\nvyplynúť\nvyplytvaná\nvyplytvané\nvyplytvaných\nvyplytvať\nvyplývajúci\nvyplývanie\nvyplývať\nvypĺznuť\nvypĺznutých\nvýpnitosť\nvypnutie\nvypnuto\nvypnutosť\nvypnúť\nvypnutý\nvýpoč\nvýpočet\nvypočinutý\nvypočítane\nvypočítanie\nvypočítaný\nvypočítateľne\nvypočítateľnosť\nvypočítateľnosti\nvypočítateľný\nvypočítať\nvypočítava\nvypočítavaj\nvypočítavajme\nvypočítavajte\nvypočítavajú\nvypočítavajúc\nvypočítaval\nvypočítavala\nvypočítavali\nvypočítavalo\nvypočítavam\nvypočítavame\nvypočítavania\nvypočítavanie\nvypočítavaním\nvypočítavaniu\nvypočítavaný\nvypočítavaš\nvypočítavať\nvypočítavate\nVypočítavci\nvypočítavec\nvypočítavo\nvýpočítavo\nvypočítavosť\nvypočítavý\nvýpočt\nvýpočtove\nvýpočtovo\nvýpočtový\nvypočutie\nvypočuť\nvypočutý\nvypočúvanie\nvypočúvaný\nvypočúvať\nvypoďkať\nvypodobnenie\nvypodobniť\nvypochodovali\nvypochodovať\nvypochodujú\nvypointovaná\nvypointovať\nvypojenie\nvypojením\nvypojený\nvypojiť\nvypoklonkovaniu\nvypoklonkovaný\nvypoklonkovať\nvypomáhajúcou\nvypomáhania\nvypomáhanie\nvypomáhať\nvýpomoc\nvýpomocne\nvýpomocný\nvypomôcť\nvypomôž\nvypomôžuc\nvypomsti\nvypomstime\nvypomstite\nvypomstiť\nvýpon\nvyponosovať\nvyporadúvajú\nvyporiada\nvyporiadajú\nvyporiadala\nvyporiadali\nvyporiadania\nvyporiadanie\nvyporiadaním\nvyporiadaniu\nvyporiadaný\nvyporiadať\nvyporiadavajú\nvyporiadavanie\nvyporiadavať\nvyposmechovať\nvyposmeškovať\nvypostený\nvypostiť\nvypotáca\nvypotenie\nvypotiť\nvypotkýnať\nvýpotok\nvypotrebovaní\nvypotrebovať\nvypovedá\nvypovedací\nvypovedaj\nvypovedajme\nvypovedajte\nvypovedajú\nvypovedajúc\nvypovedám\nvypovedáme\nVypovedáme\nvypovedania\nvypovedaniach\nvypovedanie\nvypovedaním\nvypovedaniu\nvypovedaný\nvypovedáš\nvypovedáte\nvypovedateľný\nvypovedať\nvypovedávania\nvypovedávanie\nvypovedávaniu\nvypovedávať\nvýpoveď\nvýpovedne\nvýpovedný\nvypovedúvanie\nvypovedúvať\nvypozorovaná\nvypozorovať\nvypožičanie\nvypožičaním\nvypožičaný\nvypožičať\nvypožičiavaní\nvypožičiavania\nvypožičiavanie\nvypožičiavaním\nvypožičiavať\nvýpožička\nvýpožičný\nvypracovanie\nvypracovanosť\nvypracovaný\nvypracovať\nvypracovávania\nvypracovávanie\nvypracovávaním\nvypracovávaniu\nvypracovávaný\nvypracovávať\nvypracúvanie\nvypracúvaný\nvypracúvať\nvyprahnutosti\nvyprahnúť\nvyprahnutý\nvyprane\nvypranie\nvypraním\nvypraný\nvypráskať\nvýprask\nvyprášení\nvyprášiť\nvyprašovanie\nvyprašovať\nvypratajúc\nvypratania\nvypratanie\nvyprataním\nvyprataniu\nvyprataný\nvypratať\nvypratávaní\nvypratávanie\nvypratávaním\nvypratávať\nvyprať\nvypratý\nvýprav\nvyprávač\nvyprávačka\nvyprávačka\nvyprávačsky\nvyprávačský\nvyprávačstvo\nvyprávanie\nvyprávaný\nvyprávať\nvýprava\nvýpravca\nvýpravcovský\nvypravenie\nvypravením\nvypravený\nvypraviť\nvýpravka\nvýpravkyňa\nvýpravňa\nvýpravne\nvýpravnosť\nvýpravný\nvypravotiť\nvypravoval\nvypravovala\nvypravovali\nvypravovalo\nvypravovanie\nvypravovať\nvypravuj\nvypravuje\nvypravujem\nvypravujeme\nvypravuješ\nvypravujete\nvypravujme\nvypravujte\nvypravujú\nvypravujúc\nvyprázdnenie\nvyprázdnený\nvyprázdniť\nvyprázdňovania\nvyprázdňovanie\nvyprázdňovaním\nvyprázdňovaniu\nvyprázdňovaný\nvyprázdňovať\nvyprážanie\nvyprážaný\nvyprážať\nvypraženej\nvypražení\nvypraženie\nvypražiť\nvýpražok\nvýpredaj\nvýpredajový\nvypredania\nvypredanie\nvypredaniu\nvypredaný\nvypredať\nvypredávania\nVypredávanie\nvypredávaniu\nvypredávaný\nvypredávať\nvypreparovaný\nvypreparovať\nvyprevadenie\nvyprevadený\nvyprevadiť\nvyprevádzaní\nvyprevádzať\nvyprchaní\nvyprchanie\nvyprchaniu\nvyprchať\nvyprchávajúci\nvyprchávanie\nvyprchávať\nvypŕchnutej\nvypŕchnuť\nvypriadať\nvypriadavanie\nvypriahať\nvypriahnuť\nvypriasť\nvyprieť\nvyprobovať\nvyprodukovanie\nvyprodukovaný\nvyprodukovať\nvyprofiloval\nvyprofilovala\nvyprofilovali\nvyprofilovalo\nvyprofilovať\nvyprofiluj\nvyprofiluje\nvyprofilujem\nvyprofilujeme\nvyprofiluješ\nvyprofilujete\nvyprofilujme\nvyprofilujte\nvyprofilujú\nvyprofilujúc\nvyprojektoval\nvyprojektovala\nvyprojektovali\nvyprojektovalo\nvyprojektovať\nvyprojektuj\nvyprojektuje\nvyprojektujem\nvyprojektujeme\nvyprojektuješ\nvyprojektujete\nvyprojektujme\nvyprojektujte\nvyprojektujú\nvyprojektujúc\nvyprosenej\nvyproseným\nvyprosiť\nvyprosovať\nvyprosť\nvyprosti\nvyprostí\nvyprostia\nvyprostiac\nvyprostil\nvyprostila\nvyprostili\nvyprostilo\nvyprostím\nvyprostime\nvyprostíme\nvyprostíš\nvyprostiť\nvyprostite\nvyprostíte\nvyprosťme\nvyprosťovací\nvyprosťovacia\nvyprosťovacie\nvyprosťovacích\nvyprosťovacími\nvyprosťoval\nvyprosťovala\nvyprosťovali\nvyprosťovalo\nvyprosťovanie\nvyprosťovať\nvyprosťte\nvyprosťuj\nvyprosťuje\nvyprosťujem\nvyprosťujeme\nvyprosťuješ\nvyprosťujete\nvyprosťujme\nvyprosťujte\nvyprosťujú\nvyprosťujúc\nvyprovokovania\nvyprovokovanie\nvyprovokovaniu\nvyprovokovaný\nvyprovokovať\nvyprsknutá\nvyprsknúť\nvyprš\nvypršané\nvypršanie\nvypršanou\nvypršanú\nvypršať\nvypršiavať\nvyprúc\nVypružené\nvypružení\nvyprýštiť\nvypšikať\nvypucovať\nvypučané\nvypučať\nvypúčať\nvypučený\nvypučiť\nvypudenec\nvypudenie\nvypudený\nvypudiť\nvypudzovanie\nvypudzovať\nvypukať\nvypuklejšej\nvypuklejší\nvypuklejšia\nvypuklejšie\nvypuklejšieho\nvypuklejšiemu\nvypuklejších\nvypuklejším\nvypuklejšími\nvypuklejšiu\nvypuklejšom\nvypuklejšou\nvypuklina\nvypuklosť\nvypuklý\nvypuknutie\nvypuknúť\nvypúliť\nvypumpovať\nvypumpovávanie\nvýpust\nvypustenie\nvypustený\nvypusti\nvypustime\nvypustite\nvypustiť\nvýpustka\nvýpustný\nvýpustok\nvypúšťací\nvypúšťacia\nvypúšťacie\nvypúšťacích\nvypúšťanie\nvypúšťaný\nvypúšťať\nvypýtaním\nvypýtaných\nvypýtať\nvypytované\nvypytovania\nvypytovanie\nvypytovaním\nvypytovaniu\nvypytovať\nvypytúvať\nvýra\nvyrábajúci\nvyrábania\nvyrábanie\nvyrábaním\nvyrábaniu\nvyrábaný\nvyrábateľ\nvyrábať\nvyrabovania\nvyrabovanie\nvyrabovaniu\nvyrabovaný\nvyrabovať\nvyrác\nvyráce\nvyrácem\nvyráceme\nvyráceš\nvyrácete\nvyrácme\nvyrácte\nvyrácu\nvyrácuc\nvýrad\nvyradenie\nvyradený\nvyradiť\nvyraďovací\nvyraďovaná\nvyraďované\nvyraďovaného\nvyraďovanej\nvyraďovanému\nvyraďovanie\nvyraďovanú\nvyraďovaných\nvyraďovanými\nvyraďovať\nvýradový\nvyraďujúci\nvyrajbať\nvyrapotať\nvyrastajúce\nvyrastajúceho\nvyrastajúci\nvyrastajúcim\nvyrastať\nvyrastený\nvyrasti\nvyrastime\nvyrastite\nvýrastkovi\nvýrastkovia\nvýrastok\nvyrásť\nvyrátania\nvyrátanie\nvyrátaný\nvyrátať\nvyrátava\nvyrátavaj\nvyrátavajme\nvyrátavajte\nvyrátavajú\nvyrátavajúc\nvyrátaval\nvyrátavala\nvyrátavali\nvyrátavalo\nvyrátavam\nvyrátavame\nvyrátavaš\nvyratávať\nvyrátavať\nvyrátavate\nvyratovať\nvyratúvaní\nvyratúvania\nvyratúvanie\nvyratúvaním\nvyratúvaniu\nvyratúvať\nVýrava\nvýraz\nvyrazenie\nvyrazený\nvyraziť\nvýrazivo\nvýraznejší\nvýrazne\nvýraznosť\nvýraznosťN\nvýrazný\nvýrazove\nvýrazovo\nvýrazovosť\nvýrazový\nvyrážajúce\nvyrážajúci\nvyrážania\nvyrážanie\nvyrážaný\nvyrážať\nvyrážka\nvyrážkový\nvýražkový\nvýr\nvyrec\nvyrecme\nvyrecte\nvýrečne\nvýrečnosť\nvýrečný\nvyredikať\nvyreguloval\nvyregulovali\nvyregulovania\nvyregulovanie\nvyregulovaním\nvyregulovaniu\nvyregulovaný\nvyregulovať\nvyrenderovaný\nvyrenderovať\nvyrepetiť\nvyretušovanie\nvyretušovať\nvyrev\nvyrevaný\nvyrevať\nvyrevolverovať\nvyrevovať\nvyrevúvať\nvyrezanie\nvyrezaný\nvyrezať\nvyrezávacích\nvyrezávacím\nvyrezávanie\nvyrezávaný\nvyrezávať\nvýrez\nvýrezok\nvýrezový\nvyriadenia\nvyriadenie\nvyriadiť\nvyriecť\nvyrieknutia\nvyrieknutie\nvyrieknutím\nvyrieknuť\nvyrieknutý\nvyriešenie\nvyriešený\nvyriešiť\nvyrinie\nvyrinúť\nvýrmi\nvýrob\nvýroba\nvýrobca\nvýrobcova\nvyrobene\nvyrobenia\nvyrobenie\nvyrobením\nvyrobeniu\nvyrobeno\nvyrobený\nvyrobiť\nvýrobkyňa\nvýrobňa\nvýrobne\nvýrobno\nvýrobno-hospodársky\nvýrobno-organizačný\nvýrobnosť\nvýrobnotechnický\nvýrobný\nvýrobok\nvýročie\nvýročitý\nvýročne\nvýročný\nvýroch\nvyrojeným\nvyrojiť\nvýrok\nvýrokový\nvýrom\nvýron\nvyroneným\nvyroniť\nvýrov\nvýrovi\nvyrovnane\nvyrovnanie\nvyrovnanosť\nvyrovnanosťN\nvyrovnaný\nvyrovnateľná\nvyrovnať\nvyrovnávací\nvyrovnávač\nvyrovnávača\nvyrovnávače\nvyrovnávači\nvyrovnávajúci\nvyrovnávane\nvyrovnávanie\nvyrovnávaný\nvyrovnávať\nvýrovo\nvyrozprávanie\nvyrozprávaním\nvyrozprávaný\nvyrozprávať\nvyrozumenie\nvyrozumený\nvyrozumieť\nvyrozumievam\nvyrozumievame\nvyrozumievanie\nvyrúb\nvyrúbaj\nvyrúbania\nvyrúbanie\nvyrúbaním\nvyrúbanisko\nvyrúbaniu\nvyrúbaný\nvyrúbať\nvyrúbavať\nvýrub\nvyrubenia\nvyrúbenia\nvyrubenie\nvyrúbenie\nvyrubením\nvyrúbením\nvyrubeniu\nvyrubený\nvyrúbený\nvyrúbi\nvyrúbia\nvyrúbiac\nvyrúbil\nvyrúbila\nvyrúbili\nvyrúbilo\nvyrúbim\nvyrúbime\nvyrúbiš\nvyrúbiť\nvyrúbite\nvyrubiť\nvýrubnosti\nvyrubovací\nvyrubované\nvyrubovanie\nvyrubovanú\nvyrubovať\nvýrubový\nvyrúcať\nvyrukovať\nvyrušať\nvyrušenie\nvyrušený\nvyrušiť\nvyrušovania\nvyrušovanie\nvyrušovaním\nvyrušovaný\nvyrušovať\nvyrútiť\nvyrvané\nvyrvaní\nvyrvať\nvyrvi\nvyrvime\nvyrvite\nvýry\nvyryknúť\nvyrýpať\nvyrýpavať\nvyrypla\nvyrypli\nvyryplo\nvyrypne\nvyrypnem\nvyrypneme\nvyrypneš\nvyrypnete\nvyrypni\nvyrypnime\nvyrypnite\nvyrypnú\nvyrypnúc\nvyrypnúť\nvyrýpnuť\nvyrypol\nvyrypoval\nvyrypovala\nvyrypovali\nvyrypovalo\nvyrypovať\nvyrypuj\nvyrypuje\nvyrypujem\nvyrypujeme\nvyrypuješ\nvyrypujete\nvyrypujme\nvyrypujte\nvyrypujú\nvyrypujúc\nvyryskávať\nvyryto\nvyryť\nvyrytý\nvyrývaní\nvyrývania\nvyrývať\nvyryžoval\nvyryžovala\nvyryžovali\nvyryžovalo\nvyryžovať\nvyryžuj\nvyryžuje\nvyryžujem\nvyryžujeme\nvyryžuješ\nvyryžujete\nvyryžujme\nvyryžujte\nvyryžujú\nvyryžujúc\nvys\nvýsad\nvysadať\nvýsada\nvýsadba\nvýsadbový\nvysadenie\nvysadením\nvysadeniu\nvysadený\nvysadiť\nvýsadkár\nvýsadkárovej\nvýsadkárovou\nvýsadkársky\nvýsadkársky\nvýsadkový\nvýsadne\nvýsadnosť\nvysadnúť\nvýsadný\nvýsadok\nvysádzané\nvysádzaní\nvysádzania\nvysádzanie\nvysádzaním\nvysádzaných\nvysádzať\nvysadzovač\nvysadzovači\nvysadzovaní\nvysadzovanie\nvysadzovať\nvysádž\nvysádže\nvysádžem\nvysádžeme\nvysádžeš\nvysádžete\nvysádžme\nvysádžte\nvysádžu\nvysádžuc\nvysáľať\nvysánkovať\nvysatá\nvysaté\nvysatého\nvysatia\nvysatie\nvysatím\nvysatiu\nvysať\nvysávač\nvysávania\nvysávanie\nvysávaniu\nvysávaný\nvysávať\nvysečdávať\nvyseď\nvysedajú\nvysedávač\nvysedávaní\nvysedávania\nvysedávaniam\nvysedávanie\nvysedávaním\nvysedávaniu\nvysedávať\nvysedené\nvysedieť\nvysedúvať\nvysekaná\nvysekané\nvysekať\nvysekávací\nvysekávacie\nvysekávacieho\nvysekávacích\nvysekávacími\nvysekávané\nvysekávaní\nvysekávanie\nvysekávaných\nvysekávať\nvýsek\nvysekírovať\nvyseknúť\nvýsekový\nvyselektovanie\nvyselektovať\nvysemenenie\nvysemeniť\nvýsev\nvýseve\nvýsevný\nvýsevový\nvyschnutie\nvyschnutiu\nvyschnúť\nvyschnutý\nvyschýnať\nvysiakať\nvysiata\nvysiate\nvysiateho\nvysiatie\nvysiatu\nvysiať\nvysiatych\nvysídlená\nvysídlenci\nvysídlencov\nvysídlene\nvysídlenej\nvysídlení\nvysídlenia\nvysídlenie\nvysídlením\nvysídlenom\nvysídlených\nvysídliť\nvysídľovania\nvysídľovanie\nvysídľovaním\nvysídľovať\nvysielací\nvysielač\nvysielačka\nvysielajúci\nvysielane\nvysielanie\nvysielaný\nvysielateľ\nvysielateľa\nvysielatelia\nvysielateľmi\nvysielateľom\nvysielateľov\nvysielateľovi\nvysielať\nvysievanie\nvysievaný\nvysievať\nvysikovať\nvysilene\nvysilenia\nvysilenie\nvysileniu\nvysilenosť\nvysilený\nvysiliť\nvysiľovanie\nvysilovať\nvysiľovať\nvysiľujúcejšej\nvysiľujúcejší\nvysiľujúcejšia\nvysiľujúcejšie\nvysiľujúcejšieho\nvysiľujúcejšiemu\nvysiľujúcejších\nvysiľujúcejším\nvysiľujúcejšími\nvysiľujúcejšiu\nvysiľujúcejšom\nvysiľujúcejšou\nvysiľujúci\nvysiľujúco\nvysk\nvýsk\nVýsk\nvýskajúci\nvyskáka\nvyskákaj\nvyskákajme\nvyskákajte\nvyskákajú\nvyskákajúc\nvyskákam\nvyskákame\nvyskákaš\nvyskákate\nvyskákať\nvyskakovaní\nvyskakovanie\nvyskakovať\nvyskakujúci\nvýskanie\nvýskať\nvýskla\nvyskladnenia\nvyskladnenie\nvyskladnením\nvyskladneniu\nvyskladnený\nvyskladni\nvyskladnime\nvyskladnite\nvyskladniť\nvyskladňované\nvyskladňovaní\nvyskladňovania\nvyskladňovanie\nvyskladňovaním\nvyskladňovaných\nvyskladňovať\nvýsknu\nvyskočená\nvyskočenie\nvyskočením\nvyskočenú\nvyskočených\nvyskočiť\nvýskočky\nvýskok\nvýskotať\nvýskot\nvýskotmi\nvyskrutkovaná\nvyskrutkovať\nvyskrutkovávať\nvyskrutkúvať\nvýsku\nvyskubnúť\nvyskúmané\nvyskúmať\nvýskum\nvýskumne\nvýskumnícky\nvýskumníctvach\nvýskumníctvam\nvýskumníctvo\nvýskumníčka\nvýskumník\nvýskumno\nvýskumný\nvyskúšanie\nvyskúšaný\nvyskúšať\nvýskyt\nvýskytmi\nvyskytnutie\nvyskytnúť\nvyskytnutý\nvyskytovanie\nvyskytovať\nvýskytový\nvyskytujúci\nvysl\nvýsl\nvyslabikoval\nvyslabikovala\nvyslabikovali\nvyslabikovalo\nvyslabikovať\nvyslabikuj\nvyslabikuje\nvyslabikujem\nvyslabikujeme\nvyslabikuješ\nvyslabikujete\nvyslabikujme\nvyslabikujte\nvyslabikujú\nvyslabikujúc\nvysladených\nvyslancovia\nvyslanec\nvyslanecký\nvyslanectvo\nvyslanie\nvyslankyňa\nvyslaný\nvyslať\nvýsledkovo\nvýsledkový\nvýsledne\nvýslednica\nvýslednicový\nvýsledný\nvýsledok\nvýsledoviek\nvýsledovka\nvýsledovkách\nvýsledovke\nvýsledovku\nvýsledovky\nvysliedenie\nvysliedí\nvysliedím\nvysliedíme\nvysliedíš\nvysliedíte\nvysliediť\nvýslň\nvýslnie\nvyslobodenie\nvyslobodený\nvysloboditeľ\nvysloboditeľka\nvysloboditeľský\nvyslobodiť\nvyslobodzovací\nvyslobodzovaní\nvyslobodzovanie\nvyslobodzovať\nvyslobodzujúci\nvyslopať\nvyslovene\nvyslovenie\nvyslovený\nvysloviteľný\nvysloviť\nvýslovne\nvýslovnosť\nvýslovnostne\nvýslovnostný\nvýslovný\nvyslovovania\nvyslovovanie\nvyslovovaním\nvyslovovaný\nvyslovovať\nvyslovujúci\nvýsluh\nvýsluha\nvysluhovač\nvysluhovaného\nvysluhovanie\nvysluhovať\nvýsluhový\nvýsluch\nvýslužba\nvyslúženec\nvyslúžený\nvyslúžilec\nvyslúžiť\nvýslužka\nvýslužné\nvýslužného\nvýslužnom\nvýslužnosťou\nvyslyš\nvyslyšanie\nvyslyšaný\nvyslyšať\nvysmädnuto\nvysmädnúť\nvysmážanie\nvysmážaný\nvysmážať\nvysmažiť\nvýsmech\nvýsmešne\nvýsmešnosť\nvýsmešný\nvysmiať\nvysmiaty\nvysmievač\nvysmievačný\nvysmievanie\nvysmievaniu\nvysmievaný\nvysmievať\nvysmoliť\nvysmrkať\nvysnený\nvysnívaný\nvysnívať\nvysnorili\nvysnoriť\nvysnutý\nvysocať\nVysocký\nvysočina\nvysočinný\nvysočinový\nvysočizný\nvysokánsky\nvysokánsky\nvysoká\nvysoko\nvysokoakostný\nvysokocitlivý\nvysokoefektívna\nvysokoefektívne\nvysokoefektívneho\nvysokoefektívnou\nvysokoefektívnu\nvysokoefektívny\nvysokoefektívnych\nvysokoefektívnym\nvysokoefektívnymi\nvysokofrekvenčný\nvysokohodnotný\nvysokohorský\nvysokointeligentní\nvysokokalorický\nvysokokvalifikovane\nvysokokvalifikovaný\nvysokokvalitne\nvysokokvalitný\nvysokomechanizovaného\nvysokomolekulárny\nvysokomolekulový\nvysokomyseľný\nvysokonapäťový\nvysokonosné\nvysokoobrátkový\nvysokoorganizovaný\nvysokopeciara\nVysokopeciari\nvysokopeciarmi\nvysokopeciarov\nvysokopecný\nvysokopostavenejší\nvysokopostavený\nvysokopríjmový\nvysokoproduktívna\nvysokoproduktívne\nvysokoproduktívneho\nvysokoproduktívnej\nvysokoproduktívny\nvysokoproduktívnych\nvysokosť\nvysokoškol\nvysokoškoláčka\nvysokoškolák\nvysokoškolsky\nvysokoškolský\nvysokotatranský\nvysokotatranský\nvysokoteľná\nvysokoteľné\nVysokoteľnú\nvysokoteľných\nvysokotepelné\nvysokotepelnú\nvysokotepelných\nvysokotepelným\nvysokotlakový\nvysokotratranský\nvysokoučený\nvysokoúrodný\nvysokoúrovňové\nvýsokoúrovňové\nvysokoúrovňových\nvysokoúžitkový\nvysokovážený\nvysokovýkonný\nvysokovýnosný\nvysokovzdelaný\nvysokozdvižný\nvysoký\nvysolený\nvysoliť\nvysomáriť\nvysondovať\nvýsosť\nvýsostne\nvýsostný\nvysota\nvysotiť\nvysp\nvyspanie\nvyspaný\nvyspatí\nvyspať\nvyspatým\nvyspávajúci\nvyspávajúcich\nvyspávaniu\nvyspávať\nvyspelejší\nvyspelo\nvyspelosť\nvyspelý\nvyspevovať\nvyspevúvať\nvyspi\nvyspieť\nvyspievaného\nvyspievania\nvyspievať\nvyspime\nvyspinkaný\nvyspinkať\nvyspite\nvysporadúva\nvysporadúvajú\nvysporadúval\nvysporadúvala\nvysporadúvali\nvysporadúvame\nvysporadúvané\nvysporadúvaní\nvysporadúvania\nvysporadúvanie\nvysporadúvaním\nvysporadúvaných\nvysporadúvať\nvysporiada\nvysporiadaj\nvysporiadajme\nvysporiadajte\nvysporiadajú\nvysporiadajúc\nvysporiadal\nvysporiadala\nvysporiadali\nvysporiadalo\nvysporiadam\nvysporiadame\nvysporiadanie\nvysporiadaný\nvysporiadaš\nvysporiadať\nvysporiadate\nvyspovedaním\nvyspovedaný\nvyspovedať\nvysprchovať\nvyspytovať\nvysraný\nvysrať\nvysratý\nvysrkať\nvysŕkať\nvysrklo\nvysrknúť\nvysŕknuť\nvystačenie\nvystačením\nvystačený\nvystačiť\nvystačovať\nvysťahovalec\nvysťahovalecký\nvysťahovalectvo\nvysťahovania\nvysťahovanie\nvysťahovaním\nvysťahovaniu\nvysťahovaný\nvysťahovať\nvystanoviť\nvystarávať\nvystarený\nvystatie\nvystatovačne\nvystatovačnosť\nvystatovačný\nvystatovanie\nvystatovať\nvystať\nvystáť\nvystavania\nvystávania\nvystavanie\nvystávanie\nVystavaním\nvystávaním\nvystávaniu\nvystavaný\nvystavať\nvystávať\nvýstava\nvýstavba\nvýstavbový\nvystavenie\nvystavený\nvýstavísk\nvýstavisko\nVýstavište\nvýstavišti\nvystaviteľ\nvystaviteľa\nvystaviteľmi\nvystaviteľom\nvystaviteľov\nvystaviť\nvýstavka\nvýstavne\nvýstavnícka\nvýstavnícke\nvýstavníckeho\nvýstavníckej\nvýstavníckemu\nvýstavníckom\nvýstavníckou\nvýstavnícku\nvýstavnícky\nvýstavníckych\nvýstavníckym\nvýstavníckymi\nvýstavníctvach\nvýstavníctvam\nvýstavníctvo\nvýstavno\nvýstavnosť\nvýstavný\nvystavovaateľský\nvystavovanie\nvystavovaný\nvystavovateľ\nvystavovateľka\nvystavovateľský\nvystavovateľský\nvystavovať\nvysteľ\nvýstelka\nvýstelkoový\nvýstelkový\nvýstelkový\nvysťhovať\nvystieľajú\nvystielať\nvystierania\nvystierať\nvystíhať\nvystihnutie\nvystihnúť\nvystihnutý\nvystihovať\nvystískať\nvýstižnejší\nvýstižne\nvýstižnosť\nvýstižný\nvystlaný\nvystlať\nvystopovanie\nvystopovať\nvystrábiť\nvýstraha\nvystrájania\nvystrájanie\nvystrájaním\nvystrájať\nvystrašene\nvystrašenie\nvystrašenosť\nvystrašený\nvystrašiť\nvýstražne\nvýstražný\nvystrčené\nvystrčení\nvystrčenie\nvystrčenou\nvystrčených\nvystrčiť\nvystrebať\nvýstredne\nvýstredník\nvýstredníkový\nvýstrednosť\nvýstredný\nvystreďuje\nvystreknutie\nvystreknúť\nvystrekované\nvystrekovanie\nvystrekovať\nvýstrel\nvýstrele\nvystrelenie\nvystrelením\nvystrelený\nvystreliť\nvýstrelmi\nvýstrelok\nvystreľované\nvystreľovaní\nvystreľovania\nvystreľovanie\nvystreľovaných\nvystreľovanými\nvystreľovať\nvystresoval\nvystresovala\nvystresovali\nvystresovalo\nvystresovane\nvystresovanosť\nvystresovaný\nvystresovať\nvystresuj\nvystresuje\nvystresujem\nvystresujeme\nvystresuješ\nvystresujete\nvystresujme\nvystresujte\nvystresujú\nvystresujúc\nvystretie\nvystreto\nvystretý\nvystrežený\nvystriedania\nvystriedanie\nvystriedaním\nvystriedaniu\nvystriedaný\nvystriedať\nvystriehnuť\nvystriekania\nvystriekať\nvystrieknutie\nvystrieknuť\nvystrieľaní\nvystrieľaniu\nvystrieľanú\nvystrieľať\nvystrieť\nvystriezť\nVystrihané\nvystrihaní\nvystrihaných\nvystríhaný\nvystrihať\nvystríhať\nvystrihávať\nvystríhavý\nvýstrih\nvystrihnutia\nvystrihnutie\nvystrihnutím\nvystrihnuto\nvystrihnúť\nvystrihnutý\nvystrihovačka\nvystrihovaní\nvystrihovania\nvystrihovanie\nvystrihovaním\nvystrihovaných\nvystrihovať\nvýstrižkový\nvýstrižok\nvystŕka\nvystrkovať\nvystrnadiť\nvystrojenie\nvystrojený\nvystrojiť\nvýstroj\nvýstrojný\nvystrojovanie\nvystrojuje\nvystrúc\nvystrúhať\nvystruhnúť\nvystruhovanie\nvýstuh\nvýstuha\nvýstup\nvýstupčivý\nvystúpenia\nvystúpeniach\nvystúpeniam\nvystúpeniami\nvystúpenie\nvystúpením\nvystúpeniu\nvystúpený\nvýstupísk\nvýstupisko\nvýstupíšť\nvýstupišťa\nvýstupišťami\nvýstupište\nvýstupišti\nvýstupišťom\nvýstupišťu\nvystúpiť\nvýstupkové\nvýstupkového\nvystupňoval\nvystupňovala\nvystupňovali\nvystupňovalo\nvystupňovania\nvystupňovanie\nvystupňovaniu\nvystupňovaný\nvystupňovať\nvystupňuj\nvystupňuje\nvystupňujem\nvystupňujeme\nvystupňuješ\nvystupňujete\nvystupňujme\nvystupňujte\nvystupňujú\nvystupňujúc\nvýstupný\nvýstupok\nvystupovane\nvystupovanie\nvystupovať\nvýstupový\nvystupujúci\nvýstuž\nvystuženia\nvystuženie\nvystužením\nvystuženiu\nvystužený\nvystužiť\nvýstužný\nvystužoval\nvystužovala\nvystužovali\nvystužovalo\nvystužované\nvystužovaní\nvystužovania\nvystužovanie\nvystužovať\nvýstužový\nvystužuj\nvystužuje\nvystužujem\nvystužujeme\nvystužuješ\nvystužujete\nvystužujme\nvystužujte\nvystužujú\nvystužujúc\nvystužujúci\nvystýkať\nvysúdená\nvysúdené\nvysúdenej\nvysúdenie\nvysúdením\nvysúdenú\nvysúdených\nvysúdeným\nvysúdenými\nvysúdiť\nvysúkanými\nvysúkať\nvysúkavať\nvysuň\nvysunie\nvysuniem\nvysunieme\nvysunieš\nvysuniete\nvysuňme\nvysunovala\nvysunovanie\nvysunovať\nvysuňte\nvysunul\nvysunula\nvysunuli\nvysunulo\nvysunutie\nvysunuto\nvysunúť\nvysunutý\nvysústruhovať\nvysústružiť\nvysúšači\nvysúšadlo\nvysúšanie\nvysúšaný\nvysúšať\nvysušenia\nvysušenie\nvysušením\nvysušeniu\nvysušený\nvysušiť\nvysušovač\nvysušovače\nvysušovači\nvysušovaní\nvysušovania\nvysušovanie\nvysušovaním\nvysušovaniu\nvysušovať\nvysušujúci\nvysúvací\nvysúvané\nvysúvanie\nvysúvanom\nvysúvateľný\nvysúvať\nvýsuvný\nvysväcoval\nvysväcovala\nvysväcovali\nvysväcovalo\nvysväcovať\nvysväcuj\nvysväcuje\nvysväcujem\nvysväcujeme\nvysväcuješ\nvysväcujete\nvysväcujme\nvysväcujte\nvysväcujú\nvysväcujúc\nvysvätenie\nvysvätený\nvysvätiť\nvysvecovať\nvysvedčenie\nvysvetlene\nvysvetlenie\nvysvetlený\nvysvetliteľný\nvysvetliť\nvysvetlivka\nvysvetlivkový\nvysvetľovacej\nvysvetľovací\nvysvetľovacia\nvysvetľovacie\nvysvetľovacieho\nvysvetľovaciemu\nvysvetľovacích\nvysvetľovaciu\nvysvetľovacou\nvysvetľovača\nvysvetľovači\nvysvetľovačka\nvysvetľovanie\nvysvetľovaný\nvysvetľovateľ\nvysvetľovať\nvysvetľujúce\nvysvetľujúci\nvysviacať\nvysviacka\nvysvietený\nvysvietiť\nvysviniť\nvysvitajúce\nvysvitať\nvysvitnúť\nvysycuje\nvysýcha\nvysýchajú\nVysychajúce\nvysychajúcej\nvysychajúci\nvysýchajúci\nvysýchal\nvysychaní\nvysychania\nvysychanie\nvysýchanie\nvysychaním\nvysychaniu\nvysýchaš\nvysychať\nvysychavý\nvysypanie\nvysýpanie\nvysypaním\nvysýpaniu\nvysypaný\nvysypať\nvysýpať\nvysypáva\nvysypávajú\nvysypávania\nvysypávaný\nvysypávať\nvýsyp\nvýsypiek\nvýsypka\nvýsypkách\nvýsypke\nvýsypky\nvýsypok\nvysypú\nvysypúc\nvýšach\nvýšam\nvyšanti\nvyšantí\nvyšantia\nvyšantiac\nvyšantil\nvyšantila\nvyšantili\nvyšantilo\nvyšantím\nvyšantime\nvyšantíme\nvyšantíš\nvyšantiť\nvyšantite\nvyšantíte\nvýšava\nvýš\nvyše\nvyšedivený\nvyšedivieť\nVyšehrad\nVyšehrade\nVyšehradov\nvyšehradský\nVyšehradu\nvýšení\nvýšenie\nvýšeniu\nvyšetrenie\nvyšetrený\nvyšetriť\nvyšetrovací\nvyšetrovačka\nvyšetrovačke\nvyšetrovačku\nvyšetrovačky\nvyšetrovanec\nvyšetrovanie\nvyšetrovaný\nvyšetrovateľ\nvyšetrovateľka\nvyšetrovateľovej\nvyšetrovateľovho\nvyšetrovateľovmu\nvyšetrovateľovo\nvyšetrovateľovu\nvyšetrovateľský\nvyšetrovať\nvyšetrovňa\nvyšetrovní\nvyšetrujúci\nvyši\nvýšia\nvyšib\nvyšibaj\nvyšibajme\nvyšibajte\nvyšibajúc\nvyšibať\nvyšibnúť\nvyšibú\nvyšibúc\nvyšije\nvyšijem\nvyšijeme\nvyšiješ\nvyšijete\nvyšijú\nvyšijúc\nvyšikovať\nvyšil\nvýšil\nvyšila\nvýšila\nvyšili\nvyšilo\nvýšilo\nvyšime\nvýšina\nvýšinný\nvýšinový\nvyšinutie\nvyšinuto\nvyšinutosť\nvyšinúť\nvyšinutý\nvýšiť\nvyšite\nvyšitie\nvyšiť\nvyšitý\nvyšívací\nvyšívacie\nvyšívacieho\nvyšívacích\nvyšívači\nvyšívačka\nvyšívanie\nvyšívaný\nvyšívať\nvýšivkárka\nvýšivkársky\nvýšivkársky\nvýšivkárstvach\nvýšivkárstvam\nvýšivkárstvo\nvýšivka\nvýšivkový\nvýškar\nvýškár\nvýškarka\nvýškárka\nvyškárovať\nvýškarský\nvýška\nvyšker\nvýšker\nvyškeriť\nvyškerte\nvyškierať\nvyškľabovať\nvyšklb\nvyšklbať\nvyšklbávať\nvyšklbnúť\nvyšklbú\nvyšklbúc\nvyškolenia\nvyškolenie\nvyškolením\nvyškoleniu\nvyškolený\nvyškoliť\nvyškoľovaní\nvyškoľovanie\nvyškoľovať\nvýškomera\nvýškomer\nvýškopisné\nvýškopisnom\nvyškopiť\nVyškov\nVyškova\nVyškove\nvýškove\nvýškovo\nVyškovom\nvyškovský\nVyškovu\nvýškový\nvyškrab\nvýškrab\nvyškrabané\nvyškrabať\nvyškrabáva\nvyškrabávaj\nvyškrabávajme\nvyškrabávajte\nvyškrabávajú\nvyškrabávajúc\nvyškrabával\nvyškrabávala\nvyškrabávali\nvyškrabávalo\nvyškrabávam\nvyškrabávame\nvyškrabávanie\nvyškrabávaš\nvyškrabávať\nvyškrabávate\nvyškrabnutie\nvyškrabovať\nvyškrabúva\nvyškrabúvaj\nvyškrabúvajme\nvyškrabúvajte\nvyškrabúvajú\nvyškrabúvajúc\nvyškrabúval\nvyškrabúvala\nvyškrabúvali\nvyškrabúvalo\nvyškrabúvam\nvyškrabúvame\nvyškrabúvaš\nvyškrabúvať\nvyškrabúvate\nvyškriab\nvyškriabal\nvyškriabala\nvyškriabali\nvyškriabalo\nvyškriabať\nvyškriabe\nvyškriabem\nvyškriabeme\nvyškriabeš\nvyškriabete\nvyškriabme\nvyškriabte\nvyškriabu\nvyškriabuc\nvyškrobiť\nvyškrtá\nvyškrtajú\nvyškrtal\nvyškrtala\nvyškrtali\nvyškrtalo\nvyškrtaná\nvyškrtanie\nvyškrtať\nvyškrtávaniu\nvyškrtávať\nvyškrtnutie\nvyškrtnutím\nvyškrtnutiu\nvyškrtnúť\nvyškrtnutý\nvyškutený\nvyškvar\nvyškvárať\nvyškvariť\nvyškvarovať\nvyškvarte\nvyšľahať\nvyšľahávať\nvyšľahnúť\nvyšľahovať\nvýšľahu\nvyšľahúva\nvyšľahúvaj\nvyšľahúvajme\nvyšľahúvajte\nvyšľahúvajú\nvyšľahúvajúc\nvyšľahúval\nvyšľahúvala\nvyšľahúvali\nvyšľahúvalo\nvyšľahúvam\nvyšľahúvame\nvyšľahúvaš\nvyšľahúvať\nvyšľahúvate\nVyšľachtenie\nvyšľachtený\nvyšľachti\nvyšľachtime\nvyšľachtite\nvyšľachtiť\nvyšľapovať\nvyšliapaný\nvyšliapať\nvyšliapavala\nvyšliapnuť\nvyšlý\nvyšmareniu\nvyšmaria\nvyšmariť\nvyšmatlaný\nvyšmyknúť\nvyšmykovaní\nvyšmykovať\nvyšne\nvyšnorovaný\nvyšnurovaný\nvyšný\nvyšokoškoláčka\nvyšpárať\nvyšpecifikovaný\nvyšpehovať\nvyšpekulovaný\nvyšpekulovať\nvyšperkovanie\nvyšperkovaný\nvyšperkovať\nvyšpľachnúť\nvyšpľachoval\nvyšpľachovala\nvyšpľachovali\nvyšpľachovalo\nvyšpľachovať\nvyšpľachuj\nvyšpľachuje\nvyšpľachujem\nvyšpľachujeme\nvyšpľachuješ\nvyšpľachujete\nvyšpľachujme\nvyšpľachujte\nvyšpľachujú\nvyšpľachujúc\nvyšplechnúť\nvyšplechoval\nvyšplechovala\nvyšplechovali\nvyšplechovalo\nvyšplechovať\nvyšplechuj\nvyšplechuje\nvyšplechujem\nvyšplechujeme\nvyšplechuješ\nvyšplechujete\nvyšplechujme\nvyšplechujte\nvyšplechujú\nvyšplechujúc\nvyšplhať\nvyšponoval\nvyšponovala\nvyšponovali\nvyšponované\nVyšponovaním\nvyšponovať\nvyšponuje\nvyšportovaný\nvyšpuľovať\nvyšrafovať\nvyšraubované\nvyšraubovať\nvyšší\nvyšší\nvyštafírovaný\nvyštafírovať\nvyštafírujem\nvyštartovaná\nvyštartovať\nvyšťavením\nvyšťavený\nvyšťaviť\nvyštebotať\nvyštekať\nvyšteknutie\nvyšteknúť\nvyšti\nvyštibrať\nvyštikovať\nvyštípať\nvyštipnúť\nvyštrajkovali\nvyštrajkovanom\nvyštrajkovať\nvyštrbenie\nvyštrbený\nvyštrbiť\nvyštrbovanie\nvyštrbovať\nvyštudovanie\nvyštudovaný\nvyštudovať\nvyštuchať\nvyštúrať\nvyštvaní\nvyštvať\nvyštverať\nvyštverigať\nvyštvi\nvyštvime\nvyštvite\nvyšúchaný\nvyšúchať\nvyšuchnúť\nvyšum\nvyšumením\nvyšumieť\nvyšúrovať\nvyšustnúť\nvyšvácať\nvyšvihnutí\nvyšvihnutiu\nvyšvihnúť\nvyšvihovať\nVytackala\nvytáčajúci\nvytáčane\nvytáčanie\nvytáčaný\nvytáčať\nvytáčka\nvyťahaný\nvýťahár\nvýťahárka\nvýťahársky\nvyťahať\nvýťah\nvyťahovací\nvyťahovač\nvyťahovadlo\nvyťahované\nvyťahovaní\nvyťahovania\nvyťahovanie\nvyťahovaním\nvyťahovanou\nvyťahovať\nvýťahový\nvytancovať\nvytáp\nvytápane\nvytápania\nvytápanie\nvytápaniu\nvytápaný\nvytápať\nvytapetovať\nvytárania\nvytáranie\nvytáraním\nvytárať\nvytasený\nvytasiť\nvyťať\nvyťatý\nvytavenia\nvytavenie\nvytavený\nvytaviť\nvytavovať\nvýťaž\nvyťaženie\nvyťaženosťN\nvyťažený\nvyťažiť\nvýťažnosť\nvýťažok\nvyťažovací\nvyťažovania\nvyťažovať\nvytečené\nvytečeného\nvytečenej\nvytečenia\nvytečenie\nvytečeniu\nvytečenú\nVytečený\nvýtečné\nvýtečníkov\nvytekajúci\nvytekania\nvytekanie\nvytekaniu\nvytekať\nvytelefonovať\nvytelefonúvať\nvytelia\nvytepať\nvyteper\nvyteperiť\nvyteperte\nvýter\nvyterigať\nvytesaný\nvytesať\nvytesávať\nvytesnenia\nvytesnenie\nvytesnením\nvytesneniu\nvytesnený\nvytesní\nvytesnia\nvytesnil\nvytesnila\nvytesnili\nvytesniť\nvytesňoval\nvytesňovali\nvytesňované\nvytesňovaní\nvytesňovania\nvytesňovanie\nvytesňovaním\nvytesňovaniu\nvytesňovanými\nvytesňovať\nvytesňuje\nvytesňujú\nvyteš\nvyteše\nvytešem\nvytešeme\nvytešený\nvytešeš\nvytešete\nvytešme\nvytešte\nvytešú\nvytešúc\nvytetované\nvytetovanými\nvytetovať\nvytí\nvytia\nvytiahnú\nvytiahnúc\nvytiahnutia\nvytiahnutie\nvytiahnutím\nvytiahnutiu\nvytiahnuť\nvytiahnutý\nvytie\nvytiecť\nvytieňovať\nvytieranie\nvytierať\nvytínanie\nvytínať\nvytipovania\nvytipovanie\nVytipovaním\nvytipovaniu\nvytipovaný\nvytipovať\nvytískaná\nvytískanie\nvytískať\nvytisnúť\nvytisnutý\nvytiu\nvytkanie\nvytkať\nVytkávanie\nvytknutie\nvytknúť\nvytknutý\nvytláčací\nvytláčacia\nvytláčacie\nvytláčacích\nvytláčacím\nvytláčajúci\nvytláčania\nvytláčanie\nvytláčaním\nvytláčaniu\nvytláčaný\nvytláčať\nvytlačenie\nvytlačený\nvytlačiť\nvýtlačný\nvýtlačok\nvytlačovala\nvytlačovanie\nvytlačovaný\nvytlačovať\nvytlačuje\nvytlačujú\nvýtlak\nvýtlakový\nvytĺcť\nvytlč\nvytlčie\nvytlčiem\nvytlčieme\nvytlčieš\nvytlčiete\nvytlčme\nvytlčte\nvytlčú\nvytlčúc\nvytlieť\nvytĺkaní\nvytĺkania\nvytĺkanie\nvytĺkaním\nvytĺkaniu\nvytĺkať\nvytĺkava\nvytĺkavaj\nvytĺkavajme\nvytĺkavajte\nvytĺkavajú\nvytĺkavajúc\nvytĺkaval\nvytĺkavala\nvytĺkavali\nvytĺkavalo\nvytĺkavam\nvytĺkavame\nvytĺkavaš\nvytĺkavať\nvytĺkavate\nvýtlk\nvytĺkla\nvytĺkli\nvytĺklo\nvytĺkol\nvytmaviť\nvytnúť\nvytočenie\nvytočený\nvytočiť\nvýtok\nvýtokový\nvytopená\nvytopené\nvytopeného\nvytopenej\nvytopenie\nvytopenom\nvytopených\nvytopeným\nvytopenými\nvytopiť\nvytrácané\nvytrácania\nvytrácanie\nvytrácať\nvytrantáriť\nvytrápiť\nvytrasenie\nvytrasený\nvytratenie\nvytratiť\nvytráviť\nvytŕčať\nvytrčení\nvytrči\nvytrčiť\nvytrénovaný\nvytrénovať\nvytrepať\nvytrepávaní\nvytrepávať\nvytresci\nvytrescime\nvytrescite\nvytresknúť\nvytresnú\nvytresnúť\nvytrestaní\nvytrestať\nvytrešti\nvytreštime\nvytreštite\nvytreštiť\nvytretie\nvytretý\nvytrhaná\nvytrhané\nvytrhaním\nvytrhaných\nvytrhať\nvytŕhať\nvytrhávania\nvytrhávanie\nvytrhávaním\nvytrhávaniu\nvytrhávaný\nvytrhávať\nvytrhnutia\nvytrhnutie\nvytrhnutím\nvytrhnutiu\nvytrhnúť\nvytrhnutý\nvytrhovať\nvytriasačka\nvytriasadlami\nvytriasaní\nvytriasanie\nvytriasať\nvytriasť\nvytríb\nvytríbený\nvytríbi\nvytríbiť\nvytriedenie\nvytriedením\nvytriedený\nvytriediť\nvytrieďovaní\nvytrieďovania\nvytrieďovanie\nvytrieďovať\nvytrieskali\nvytrieskanie\nvytrieskaniu\nvytrieskať\nvytriešťať\nvytrieť\nvytriezvení\nvytriezvenia\nvytriezvenie\nvytriezvením\nvytriezveniu\nvytriezvieť\nvytriezvievať\nvytroviť\nvytrp\nvytrpenú\nvytrpieť\nvytrúbením\nvytrúbiť\nvytrubovaním\nvytrubovať\nvytrúc\nVytrucovanie\nvytrucovať\nvýtrus\nvytrúsiť\nvýtrusný\nvýtrusový\nvytrvale\nvytrvalec\nvytrvalejšej\nvytrvalejší\nvytrvalejšia\nvytrvalejšie\nvytrvalejšieho\nvytrvalejšiemu\nvytrvalejších\nvytrvalejším\nvytrvalejšími\nvytrvalejšiu\nvytrvalejšom\nvytrvalejšou\nvytrvalkyňa\nvytrvalo\nvytrvalosť\nvytrvalostný\nvytrvalý\nvytrvanlivý\nvytrvať\nvytrvávať\nvytryskávať\nvytrysknutého\nvytrysknutí\nvytrysknutie\nvytrysknúť\nvytryskovať\nvytryskujúci\nvytrženie\nvýtržnícky\nvýtržníctvach\nvýtržníctvam\nvýtržníctvo\nvýtržníčka\nvýtržník\nvýtržnosť\nvytú\nvytučený\nvytučiť\nvytučnený\nvytuchnúť\nvyťukaní\nvyťukanie\nvyťukať\nvyťukávaní\nvyťukávanie\nvyťukávať\nvytuneloval\nvytunelovala\nvytunelovali\nvytunelovalo\nvytunelovať\nvytuneluj\nvytuneluje\nvytunelujem\nvytunelujeme\nvytuneluješ\nvytunelujete\nvytunelujme\nvytunelujte\nvytunelujú\nvytunelujúc\nvytušeného\nvytušením\nvytušiť\nvytúžene\nvytúžený\nvytúžiť\nvytužovaním\nvýtv\nvýtvar\nvytváracie\nvytvárací\nvytvárajúci\nvytvárane\nvytváranieN\nvytváraný\nvytvárať\nvýtvarne\nvýtvarnícky\nvýtvarníctvach\nvýtvarníctvam\nvýtvarníctvo\nvýtvarníčka\nvýtvarník\nvýtvarno\nvýtvarnosť\nvýtvarný\nvytvarovane\nvytvarovanie\nvytvarovaný\nvytvarovať\nvytvor\nvýtvor\nvytvorene\nvytvorenenie\nvytvorenie\nvytvorený\nvytvoriť\nvytvorte\nvytvrď\nvytvrdený\nvytvrdí\nvytvrdia\nvytvrdiac\nvytvrdil\nvytvrdila\nvytvrdili\nvytvrdilo\nvytvrdím\nvytvrdíme\nvytvrdíš\nvytvrdiť\nvytvrdíte\nvytvrďme\nvytvrďte\nvytvrdzoval\nvytvrdzovala\nvytvrdzovali\nvytvrdzovalo\nvytvrdzovanie\nvytvrdzovaný\nvytvrdzovať\nvytvrdzuj\nvytvrdzuje\nvytvrdzujem\nvytvrdzujeme\nvytvrdzuješ\nvytvrdzujete\nvytvrdzujme\nvytvrdzujte\nvytvrdzujú\nvytvrdzujúc\nvyť\nvytýčenia\nvytýčenie\nvytýčením\nvytýčeniu\nvytýčený\nvytýčiť\nvýtyčka\nvytyčovacími\nvytyčovaní\nvytyčovania\nvytyčovanie\nvytyčovaním\nvytyčovaniu\nvytyčovať\nvytýkanie\nvytýkaný\nvytýkať\nvytypovania\nvytypovanie\nvytypovaním\nvytypovaný\nvytypovať\nvýučb\nvýučbach\nvýučbam\nvýučba\nvýučbový\nvyučenci\nvyučencoch\nvyučencom\nvyučencov\nvyučenie\nvyučený\nvýučieb\nvyučiť\nvýučne\nvýučný\nvyučovací\nvyučovane\nvyučovanie\nvyučovaný\nvyučovať\nvyúčtovacej\nvyúčtovací\nvyúčtovacia\nvyúčtovacie\nvyúčtovaciu\nvyúčtovacou\nvyúčtovanie\nvyúčtovaný\nvyúčtovať\nvyúčtováva\nvyúčtovávajú\nvyúčtovávala\nvyúčtovávaná\nvyúčtovávaní\nvyúčtovávania\nvyúčtovávanie\nvyúčtovávať\nvyučujúci\nvyúdenie\nvyúdi\nvyúdim\nvyúdime\nvyúdiš\nvyúdite\nvyúdiť\nvyuhlená\nvyuhlenia\nvyuhlených\nvýuka\nvýuke\nvýukou\nvýukový\nvýukový\nvýuku\nvýuky\nvyumelkovane\nvyumelkovanosť\nvyumelkovaný\nvyumývať\nvyupratovať\nvyústenieN\nvýusti\nvyústiť\nvyúsťovať\nvyutierať\nvyuží\nvyužím\nvyužiteľnosť\nvyužiteľnosti\nvyužiteľnosťou\nvyužiteľný\nvyužitie\nvyužitkovať\nvyužito\nvyužiť\nvyužitý\nvyužívajúci\nvyužívane\nvyužívanie\nvyužívaný\nvyužívať\nvyvábiť\nVyvadil\nVyvadila\nvyvadiť\nvyvádzané\nvyvádzaní\nvyvádzania\nvyvádzanie\nvyvádzaním\nvyvádzať\nvyvakovať\nvyváľať\nvyvalcovala\nvyvalcovali\nvyvalcovalo\nvyvalcovanie\nvyvalcovaný\nvyvalcovať\nvyvalcuje\nVyvalcujeme\nvyvalcujú\nvyvalený\nvyvaliť\nvyvaľkaný\nvyvaľkať\nvývalok\nvyvaľovanie\nvyvaľovať\nvyvandrovať\nvyvápniť\nvyvar\nvyvárať\nvývar\nVyvarené\nvyvarenie\nvývarisko\nvyvariť\nvyvárka\nvývarok\nvyvarovania\nvyvarovanie\nvyvarovať\nvývarovňa\nvývarovní\nvyvarte\nvyvatovať\nvyväzované\nvyväzovaní\nvyväzovanie\nvyväzovať\nvyvážajúcej\nvyvážania\nvyvážanie\nvyvážaním\nvyvážaniu\nvyvážaný\nvyvážateľ\nvyvážať\nvyvážene\nvyváženia\nvyváženie\nvyvážením\nvyváženiu\nvyváženosť\nvyvážený\nvyvážiť\nvyvážka\nvývažok\nvyvažovací\nvyvažovacie\nvyvažovacích\nvyvažoval\nvyvažovala\nvyvažovali\nvyvažovalo\nvyvažovane\nvyvažovania\nvyvažovanie\nvyvažovaním\nvyvažovaniu\nvyvažovaný\nvyvažovať\nvyvažuj\nvyvažuje\nvyvažujem\nvyvažujeme\nvyvažuješ\nvyvažujete\nvyvažujme\nvyvažujte\nvyvažujú\nvyvažujúc\nvyvažujúci\nvyvedenie\nvyvedený\nvyveje\nvyvenči\nvyvenčime\nvyvenčite\nvyvenčiť\nvyvesenejší\nvyvesenia\nvyvesenie\nvyvesením\nvyveseniu\nvyvesený\nvyvesiť\nvýveska\nvývesný\nvyvesované\nvyvesovaní\nvyvesovania\nvyvesovaniu\nvyvesovať\nvyvešať\nVyveštenie\nvyvešti\nvyveštime\nvyveštite\nvyveštiť\nvyvetranie\nvyvetraniu\nvyvetraný\nvyvetrať\nvyvetrávať\nvyvetriť\nvývev\nvýveva\nvyvezenia\nvyvezenie\nvyvezením\nvyvezeniu\nvyvezený\nvyviazania\nvyviazanie\nvyviazaním\nvyviazaniu\nvyviazaný\nvyviazať\nvyviazl\nvyviaznutie\nvyviaznuť\nvyviažuc\nvyvieračka\nvyvierajúce\nvyvierajúci\nvyvieranie\nvyvieraním\nvyvierať\nvyviesť\nvyviezť\nvyvíjač\nvyvíjača\nvyvíjače\nvyvíjačmi\nvyvíjačom\nvyvíjačov\nvyvíjajúcimi\nvyvíjania\nvyvíjanie\nvyvíjaním\nvyvíjaniu\nvyvíjaný\nvyvíjať\nvývin\nvývinove\nvývinovo\nvývinový\nvyvinutia\nvyvinutie\nvyvinutím\nvyvinuto\nvyvinutosť\nvyvinúť\nvyvinutý\nvyvláčiť\nvyvládať\nvyvlastnenia\nvyvlastnenie\nvyvlastnením\nvyvlastneniu\nvyvlastnený\nvyvlastni\nvyvlastnime\nvyvlastnite\nvyvlastniť\nvyvlastňovacej\nvyvlastňovací\nvyvlastňovacie\nvyvlastňovacieho\nvyvlastňovaciemu\nvyvlastňovacích\nvyvlastňovacími\nvyvlastňovanému\nvyvlastňovaní\nvyvlastňovania\nvyvlastňovanie\nvyvlastňovaním\nvyvlastňovaným\nVyvlastňovaný\nvyvlastňovať\nvyvlečené\nvyvliecť\nvyvliekať\nvyvložkovanie\nvývod\nvyvodenia\nvyvodenie\nvyvodením\nvyvodeniu\nvyvodený\nvyvodiť\nvývodka\nvývodný\nvývodovo\nvývodový\nvyvodzované\nvyvodzovaní\nvyvodzovania\nvyvodzovanie\nvyvodzovaním\nvyvodzovaniu\nvyvodzovanými\nvyvodzovať\nvývojár\nvývojárka\nvývojársky\nvývojaschoný\nvývojaschopnosť\nvývojaschopný\nvývoj\nvývojka\nvývojkový\nvývojnica\nvývojovo\nvývojový\nvyvolania\nvyvolanie\nvyvolaním\nvyvolaniu\nvyvolaný\nvyvolať\nvyvolávacej\nvyvolávací\nvyvolávacia\nvyvolávacie\nvyvolávacích\nvyvolávacím\nvyvolávacími\nvyvolávaciu\nvyvolávacou\nvyvolávač\nvyvolávajúca\nvyvolávajúce\nvyvolávajúci\nvyvolávajúcich\nvyvolávajúcim\nvyvolávania\nvyvolávanie\nvyvolávaním\nvyvolávaniu\nvyvolávaný\nvyvolávateľ\nvyvolávateľovi\nvyvolávať\nvyvolenec\nvyvolenie\nvyvolenkyňa\nvyvolený\nvyvoliť\nvyvoľovanie\nvyvoľovať\nvyvoňaný\nvyvoniavať\nvývoz\nvývozca\nvývozcovu\nvyvození\nvyvoziť\nvývozne\nvývozno\nvývozný\nvyvracanie\nvyvracaním\nvyvracaniu\nvyvracať\nvývrat\nvyvrátenia\nvyvrátenie\nvyvrátením\nvyvráteniu\nvyvrátený\nvyvrátiteľný\nvyvrátiť\nvývratmi\nvývratok\nvyvrav\nvyvravieť\nvyvraždenia\nvyvraždenie\nvyvraždením\nvyvraždi\nvyvraždime\nvyvraždite\nvyvraždiť\nvyvražďovaní\nvyvražďovanie\nvyvražďovaním\nvyvražďovať\nvyvrč\nvyvrelina\nvyvrenina\nvyvresknúť\nvyvreskovať\nvyvreskúvať\nvyvretý\nvyvrheľ\nvyvrheľský\nvyvrhnutím\nvyvrhnúť\nvyvrhnutý\nvyvrhovať\nvyvrcholenie\nvyvrcholiť\nvyvriesknuť\nvyvrieť\nvyvŕšiť\nvyvršovať\nvyvŕtanie\nvyvŕtaných\nvyvŕtať\nvyvrtáva\nvyvrtávacie\nvyvrtávacieho\nvyvrtávacích\nvyvrtávačiek\nvyvrtávačka\nvyvrtávačke\nvyvrtávačku\nvyvrtávačky\nvyvrtávaj\nvyvrtávajme\nvyvrtávajte\nvyvrtávajú\nvyvrtávajúc\nvyvrtával\nvyvrtávala\nvyvrtávali\nvyvrtávalo\nvyvrtávam\nvyvrtávame\nvyvrtávaní\nvyvrtávanie\nvyvrtávaš\nvyvrtávať\nvyvrtávate\nvývrt\nvývrtiek\nvyvrtieť\nvývrtka\nvývrtmi\nvyvrtnutia\nvyvrtnutie\nvyvrtnúť\nvyvrtnutý\nvyvrúc\nvyvrznúť\nvývržkami\nvývržkoch\nvývržkom\nvývržkov\nvývržku\nvývržky\nvývržok\nvyvstať\nvyvstáva\nvyvstávajú\nvyvstávala\nvyvstávať\nvyvýjateľ\nvyvýšenia\nvyvýšenie\nvyvýšenina\nvyvýšeninka\nvyvýšenisko\nvyvýšený\nvyvýšiť\nvyvyšovaní\nvyvyšovanie\nvyvyšovať\nvyvzdorovala\nvyvzdorovali\nvyvzdorovaný\nvyvzdorovať\nvyvzdorujú\nvyvzoroval\nvyvzorovali\nvyvzorované\nvyvzorovaním\nvyvzorovať\nvýz\nvyzabávať\nvyzametané\nvyzametať\nvyzauškovať\nvyza\nvyzbieranie\nvyzbieraním\nvyzbieraný\nvyzbierať\nvýzbroj\nvyzbrojenie\nvyzbrojený\nvyzbrojiť\nvýzbrojnej\nvýzbrojnú\nvýzbrojných\nvýzbrojom\nvýzbrojov\nvyzbrojovaciu\nvyzbrojované\nvyzbrojovaní\nvyzbrojovania\nvyzbrojovanie\nvyzbrojovaním\nvyzbrojovaniu\nvyzbrojovať\nvýzbrojový\nvýzbroju\nvýzdoba\nvyzdobenie\nvyzdobený\nvyzdobiť\nvýzdobný\nvyzdoboval\nvyzdobovala\nvyzdobovali\nvyzdobovalo\nvyzdobovať\nvyzdobuj\nvyzdobuje\nvyzdobujem\nvyzdobujeme\nvyzdobuješ\nvyzdobujete\nvyzdobujme\nvyzdobujte\nvyzdobujú\nvyzdobujúc\nvyzdravej\nvyzdravejme\nvyzdravejte\nvyzdravejú\nvyzdravejúc\nvyzdravel\nvyzdravela\nvyzdraveli\nvyzdravelo\nvyzdravení\nvyzdravie\nvyzdraviem\nvyzdravieme\nvyzdravieš\nvyzdravieť\nvyzdraviete\nvyzdravievať\nvyzdvihnutia\nvyzdvihnutie\nvyzdvihnutím\nvyzdvihnutiu\nvyzdvihnúť\nvyzdvihnutý\nvyzdvihovania\nvyzdvihovanie\nvyzdvihovaním\nvyzdvihovaniu\nvyzdvihovaný\nvyzdvihovať\nvyzdvihujúcou\nvyzelenať\nvyzeleniť\nvyzerajúci\nvyzerať\nvyziabnutosť\nvyziabnutý\nvyzí\nvyzimovanie\nvyzinkár\nvyzískané\nvyzískať\nvyzíznuť\nvyzíznutie\nvyzlacovať\nvyzlečenie\nvyzlečením\nvyzlečený\nvyzliecť\nvyzliekania\nvyzliekať\nvyzlostiť\nvýzn\nvyznačenie\nvyznačený\nvyznačený\nvyznačiť\nvyznačkovať\nvýznačne\nvýznačnosť\nvýznačný\nvyznačovaní\nvyznačovanie\nvyznačovaním\nvyznačovať\nvyznačujúca\nvyznačujúcu\nvýznam\nvyznamenanie\nvyznamenaný\nvyznamenať\nvyznamenávajúci\nvyznamenávanie\nvyznamenávať\nvýznamnejší\nvýznamne\nvýznamnosť\nvýznamný\nvýznamoslovie\nvýznamosť\nvýznamotvorný\nvýznamove\nvýznamovo\nvýznamový\nvyznanie\nvyznať\nvyznavač\nvyznávač\nVyznavači\nvyznávačka\nvyznavačom\nvyznavačov\nvyznávačský\nvyznávajúci\nvyznávaní\nvyznávania\nvyznávanie\nvyznávaním\nvyznávaniu\nvyznávaných\nvyznávaným\nvyznávať\nvyznení\nvyznenia\nvyznenie\nvyznením\nvyznieť\nvyznievať\nvyzob\nvyzobané\nvyzobanie\nvyzobať\nvyzobávaní\nvyzobávanie\nvyzobávaniu\nvyzobávať\nvyzobká\nvyzobkané\nvyzobkať\nvyzobkávanie\nvýzor\nvýzorník\nvyzradení\nvyzradenia\nvyzradenie\nvyzradením\nvyzradeniu\nvyzradiť\nvyzrádzať\nvyzrážanie\nvyzrážaný\nvyzrážať\nvyzretia\nvyzretie\nvyzreto\nvyzretosť\nvyzretý\nvyzrieť\nvyzrieť\nvyzrievania\nvyzrievanie\nvyzrievaním\nvyzrievať\nvyzrúc\nvyzunknúť\nvyzúriť\nvyzuté\nvyzutie\nvyzuť\nvyzutých\nvyzuvák\nvyzúvania\nvyzúvať\nvyzváňací\nvyzváňajúci\nvyzváňane\nvyzváňania\nvyzváňanie\nvyzváňaný\nvyzváňať\nvyzvanie\nvyzvaný\nvyzvárať\nvyzvať\nvýzva\nvyzveď\nvyzvedá\nvyzvedač\nvyzvedačka\nvyzvedačský\nvyzvedačstvo\nvýzvedách\nvyzvedaj\nvyzvedajme\nvyzvedajte\nvyzvedajú\nvyzvedajúc\nvyzvedám\nvyzvedáme\nvyzvedania\nVyzvedanie\nvyzvedáš\nvyzvedáte\nvyzvedať\nvyzvedieť\nvýzvedmi\nvýzvedník\nvýzvedný\nvýzvedoch\nvýzvedom\nvýzvedov\nvýzvedy\nvyzvi\nvyzvime\nvyzvite\nvyzvonenie\nvyzvonila\nvyzvonili\nvyzvoniť\nvýzvový\nvyzvŕtať\nvyzývací\nvyzývajúca\nvyzývajúce\nvyzývajúceho\nvyzývajúcej\nvyzývajúcemu\nvyzývajúci\nvyzývajúcich\nvyzývajúcim\nvyzývajúcimi\nvyzývajúcou\nvyzývajúcu\nvyzývanie\nvyzývaniu\nvyzývaný\nvyzývateľ\nvyzývateľka\nvyzývateľský\nvyzývať\nvyzývavo\nvyzývavosť\nvyzývavý\nvyžadovanie\nvyžadovaný\nvyžadovaný\nvyžadovať\nvyžadujúci\nvyžalostiť\nvyžalovať\nvyžarovane\nvyžarovanie\nvyžarovaný\nvyžarovať\nvyžarujúca\nvyžarujúci\nvyžarujúcim\nvyžato\nvyžať\nvyžávať\nvyžehlené\nvyžehliť\nvyženiť\nvyžiadanie\nvyžiadaný\nvyžiadať\nvyžialiť\nvyžiarenie\nvyžiarením\nvyžiarený\nvyžiariť\nvyžiarovať\nvyžiel\nvyžierač\nvyžierať\nvyžíhané\nvyžíhaní\nvyžíhanie\nvyžíhať\nvyžínaní\nvyžínanie\nvyžínať\nvýžin\nvýžinkár\nvyžinkár\nvýžinkársky\nvýžinok\nvyžír\nvyžiť\nvyžitia\nvyžitie\nvyžitím\nvyžitiu\nvyžiť\nvyžitý\nvyžívania\nvyžívanie\nvyžívaním\nvyžívaný\nvyžívať\nvýživa\nvyživiť\nvýživne\nvýživné\nvýživno\nvýživnosť\nvýživný\nvyživovací\nvyživovania\nvyživovanie\nvyživovaniu\nvyživovaný\nvyživovať\nvýživovo\nvýživový\nvýžľa\nvyžlách\nvyžlám\nvyžla\nvyžltnuté\nvyžly\nvyžmýkania\nvyžmýkanie\nvyžmýkaný\nvyžmýkať\nvyžmýkavať\nvyžobr\nvyžobral\nvyžobrala\nvyžobrali\nvyžobralo\nvyžobrať\nvyžobrávať\nvyžobre\nvyžobrem\nvyžobreme\nvyžobreš\nvyžobrete\nvyžobrme\nvyžobrte\nvyžobrú\nvyžobrúc\nvyžrane\nvyžrať\nvyžratý\nvyžrebovania\nvyžrebovanie\nvyžrebovaním\nvyžrebovaný\nvyžrebovať\nvyžúvať\nvyžviť\nVZ\nvzácnejší\nvzácne\nvzácnosť\nvzácnota\nvzácny\nvzad\nvzadu\nvzájomne\nvzájomne\nvzájomnosť\nvzájomnostné\nvzájomnostného\nvzájomnostných\nvzájomnostným\nvzájomný\nvzápäť\nvzápätí\nvzásade\nvzatie\nvzatý\nvzblčal\nvzblčať\nvzblčí\nvzbĺkať\nvzbĺknutia\nvzbĺknuť\nvzbudene\nvzbudenia\nvzbudenie\nvzbudeniu\nvzbudený\nvzbudiť\nvzbudzovania\nvzbudzovanie\nvzbudzovaním\nvzbudzovaný\nvzbudzovať\nvzbudzujúci\nvzbudzujúcim\nvzbudzujúcimi\nvzbura\nvzbúrenec\nvzbúrenecký\nvzbúreniami\nvzbúrenie\nvzbúrením\nvzbúrenkyňa\nvzbúrený\nvzbúriť\nvzďaľovaní\nvzďaľovania\nvzďaľovanie\nvzďaľovaním\nvzďaľovaniu\nvzďaľovať\nvzdanie\nvzdať\nvzdávajúci\nvzdávaná\nvzdávaní\nvzdávanie\nvzdávaním\nvzdávať\nvzdelane\nvzdelanec\nvzdelanecký\nvzdelanie\nvzdelankyňa\nvzdelanosť\nvzdelanostne\nvzdelanostno\nvzdelanostný\nvzdelaný\nvzdelať\nvzdelávací\nvzdelávanie\nvzdelávaný\nvzdelávateľ\nvzdelávateľný\nvzdelávať\nvzdialenejší\nvzdialene\nvzdialenia\nvzdialenie\nvzdialeniu\nvzdialeno\nvzdialenosť\nvzdialenostne\nvzdialenostný\nvzdialený\nvzdialiť\nvzdor\nvzdorne\nvzdorný\nvzdorovanie\nvzdorovať\nvzdorovite\nvzdorovito\nvzdorovitosť\nvzdorovitý\nvzdorujúci\nvzduch\nvzducholoď\nvzduchoplavby\nvzduchoplavca\nvzduchoplavectve\nvzduchoprázdno\nvzduchoprázdny\nvzduchotechnický\nvzduchotechnika\nvzduchotesne\nvzduchotesnosť\nvzduchotesný\nvzduchovať\nvzduchovka\nvzduchovkový\nvzduchovo\nvzduchovod\nvzduchový\nvzduš\nvzdušené\nvzduší\nvzdušiť\nvzdušne\nvzdušníc\nvzdušnica\nvzdušnice\nvzdušník\nvzdušníky\nvzdušnosť\nvzdušný\nvzdutia\nvzdutie\nvzdutím\nvzduť\nvzdutý\nvzdúvací\nvzdúvacieho\nvzdúvacom\nvzdúvadlo\nvzdúvadlový\nvzdúvajúce\nvzdúvanie\nvzdúvať\nvzdychanie\nvzdychať\nvzdychávať\nvzdychavý\nvzdych\nvzdychnúť\nvzhľad\nvzhľadne\nvzhľadný\nvzhľadovo\nvzhľadový\nvzhliada\nvzhliadajú\nvzhliadajúc\nvzhliadal\nvzhliadala\nvzhliadali\nvzhliadame\nvzhliadať\nvzhliadate\nvzhliadnutej\nvzhliadnutí\nvzhliadnuť\nvzhliadnutých\nvzchádzania\nvzchádzať\nvzchodiť\nvzchopení\nvzchopenia\nvzchopenie\nvzchopiť\nvziať\nvziď\nvzíduc\nvzísť\nvzišlý\nvzklíčiť\nvzkriesene\nvzkriesenie\nvzkriesený\nvzkriesiť\nvzkrsnúť\nvzkyp\nvzkypenie\nvzkypieť\nvzlet\nvzletieť\nvzletne\nvzletnosť\nvzletný\nvzletový\nvzlietajúcemu\nvzlietaní\nvzlietať\nvzlietnutí\nvzlietnutiami\nvzlietnutie\nvzlietnuť\nvzlínania\nvzlínanie\nvzlínaním\nvzlínať\nvzlínavosť\nvzlykanie\nvzlykať\nvzlykavý\nvzlyk\nvzlyknúť\nvzlykot\nvzmáhanie\nvzmáhať\nvzmach\nvzmôcť\nvzmôž\nvzmôžuc\nvzmužiť\nVZN\nvzňal\nvzňala\nvzňali\nvzňalo\nvznášadlo\nVznášajúce\nvznášajúceho\nvznášajúci\nvznášajúcich\nvznášajúcim\nvznášajúcimi\nvznášajúcu\nvznášaná\nvznášané\nvznášaní\nvznášania\nvznášaniam\nvznášanie\nvznášaním\nvznášaných\nvznášať\nvzňať\nvznecovať\nvznesenia\nvznesenie\nvznesením\nvzneseniu\nvznesený\nvznešene\nvznešeno\nvznešenosť\nvznešený\nvznet\nvznetlivý\nvznetový\nvzniesť\nvznietení\nvznietenia\nvznietenie\nvznietením\nvznieteniu\nvznietiť\nvznikajúci\nvznikaní\nvznikania\nvznikanie\nvznikaním\nvznikaniu\nvznikať\nvznik\nvzniklý\nvzniknúci\nvzniknutia\nvzniknutím\nvzniknutiu\nvzniknúť\nvzniknutý\nvzním\nvzníme\nvznímem\nvznímeme\nvznímeš\nvznímete\nvznímme\nvznímte\nvznímu\nvznímuc\nvznosný\nvzopäl\nvzopäla\nvzopäli\nvzopälo\nvzopätie\nvzopäť\nvzopätý\nvzopnutí\nvzopnutie\nvzopnúť\nvzoprenie\nvzopretiu\nvzoprieť\nvzoprúc\nvzor\nvzorcový\nvzorček\nvzorec\nVzorkári\nvzorkavý\nvzorka\nvzorkovací\nvzorkovač\nvzorkovači\nvzorkoval\nvzorkovane\nvzorkovanie\nvzorkovaný\nvzorkovať\nvzorkovňa\nvzorkovní\nvzorkovnica\nvzorkovo\nvzorkový\nvzorkuje\nvzorne\nvzornica\nvzorník\nvzorný\nvzorovacie\nvzorovacích\nvzorovacími\nvzorovali\nvzorovane\nvzorovania\nvzorovanie\nvzorovaním\nvzorovaný\nvzorovo\nvzorový\nvzostup\nvzostupne\nvzostupnosť\nvzostupný\nvzpaženie\nvzpažiť\nvzper\nvzpera\nvzpernosť\nvzperný\nvzperov\nvzpier\nvzpierač\nvzpieračský\nvzpieračstvo\nvzpierajúci\nvzpieranie\nvzpierať\nvzpínanie\nvzpínať\nvzplaň\nvzplanie\nvzplaniem\nvzplanieme\nvzplanieš\nvzplaniete\nvzplaňme\nvzplaňte\nvzplanutie\nvzplanutú\nvzplanúť\nvzplápolať\nvzpor\nvzpriamene\nvzpriamenie\nvzpriamenosť\nvzpriamený\nvzpriamiť\nvzpriamovať\nvzpriečenie\nvzpriečený\nvzpriečiť\nvzprúh\nvzpruha\nvzpruženie\nvzpružením\nvzpružiť\nvzpružovať\nvzrastajúca\nvzrastajúce\nvzrastajúci\nvzrastajúcim\nvzrastania\nvzrastanie\nvzrastať\nvzrast\nvzrasti\nvzrastime\nvzrastite\nvzrastmi\nvzrastový\nvzrásť\nvzruch\nvzruchový\nvzrušene\nvzrušenie\nvzrušenosť\nvzrušený\nvzrušiť\nvzrušný\nvzrušovaní\nvzrušovaním\nvzrušovať\nvzrušujúcejšej\nvzrušujúcejší\nvzrušujúcejšia\nvzrušujúcejšie\nvzrušujúcejšieho\nvzrušujúcejšiemu\nvzrušujúcejších\nvzrušujúcejším\nvzrušujúcejšími\nvzrušujúcejšiu\nvzrušujúcejšom\nvzrušujúcejšou\nvzrušujúci\nvzrušujúco\nvzťah\nvzťahovaná\nvzťahované\nvzťahovanie\nvzťahovaných\nvzťahovať\nvzťahovo\nvzťahový\nvzťahujúci\nvzťahujúci\nvzťaž\nvzťažnosť\nvzťažný\nvztiahnutia\nvztiahnuť\nvztiahnutý\nvztlak\nvztlakový\nvztýčene\nvztýčenie\nvztýčený\nvztýčiť\nvztyčovania\nvztyčovanie\nvztyčovať\nvztyk\nvzýrazniť\nvzyšný\nvzývajúci\nvzývaná\nvzývané\nvzývaní\nVzývanie\nvzývaniu\nvzývanú\nvzývať\nvždy\nvždycky\nvždyzelený\nvženie\nvženiem\nvženieš\nvženú\nvženúc\nvžierať\nvžito\nvžitosť\nvžiť\nvžitý\nvžívať\nvžrať\nw\nW\nwad\nwaffle\nwagnerizmus\nwajang\nwales\nWalesan\nWalesania\nWalesanka\nWales\nwalesky\nwaleský\nwaleš\nwaleština\nwalkman\nwallstreetskej\nwallstreetskou\nwallstreetskych\nwaltrovka\nWaltrovke\nWaltrovku\nWaltrovky\nwaltz\nwaltzy\nwan\nWAP\nwardit\nWarp\nWarpom\nWarpu\nwarrant\nwartburga\nwartburg\nwartburge\nwartburgmi\nwartburgoch\nwartburgom\nwartburgov\nwartburgu\nwartburgy\nwas\nWashington\nWashingtončan\nWashingtončanka\nwashingtonský\nwat\nWaterloo\nwaterproof\nwatt\nwatthodina\nwattmeter\nwattmi\nwattový\nwavellit\nWb\nWC\nweb\nwebera\nweber\nwebovský\nwebový\nWehrmacht\nwehrwolf\nweismannizmus\nwellingtonia\nwellingtonský\nwelshteriér\nwelšský\nwelter\nwenlock\nwerfen\nwestcoast\nwestern\nwesternový\nwhigovia\nwhippet\nwhiskey\nwhiskový\nwhiskový\nwhisky\nwhist\nWHO\nwiesbadenského\nwiesbadenskej\nwiesbadenskom\nwiesbadenským\nWigwam\nWikipédia\nWindows\nwindsurfing\nwindsurfingmi\nwindsurfingoch\nwindsurfingom\nwindsurfingov\nwindsurfingu\nwindsurfingy\nwindsurfista\nwindsurfistka\nwing\nwinchestrovka\nwith\nWN\nwolfhound\nwolfrám\nWolkera\nWolker\nwolkerovský\nwolkrovský\nwollastonit\nwon\nwoodcraft\nworcester\nworcesterský\nWord\nworkaholic\nworkoholizmus\nWorks\nworkshop\nwormhole\nWRC\nwrestling\nWTA\nWTC\nWTO\nwulfenit\nwürm\nwurtzit\nwww\nWWW\nwwwAspell\nWXN\nWYSE\nx\nX\nXandra\nXandre\nXandrou\nXandru\nXandry\nxantelazma\nxantín\nxantinúria\nxantíp\nxantipa\nxantodermia\nxantofor\nxantofylit\nxantochromatický\nxantochrómia\nxantóm\nxantomatóza\nxantopsia\nxantorizmus\nXCU\nXD\nXDR\nXe\nxénia\nXénia\nxenobiochémia\nxenobiotikum\nxenoekia\nxenofília\nxenofób\nxenofóbia\nxenofobický\nxenofóbny\nXenofón\nXenofónta\nxenogamia\nxenoglosia\nxenokarpia\nxenokracia\nxenolit\nxenón\nxenónový\nxerodermia\nxerofília\nxerofilný\nxeroftalmia\nxerofyt\nxerofytizmus\nxerografia\nxerograficky\nxerografický\nxerocházia\nxerocheilia\nxerokópia\nxeróm\nxeromorfizmus\nxerostómia\nxerotermný\nxerotický\nxerox\nxeroxovanie\nxeroxovaním\nxeroxovaný\nxeroxovať\nxeroxový\nxeróza\nXerxes\nXEU\nXF\nXFree\nXH\nxi\nXI\nxii\nXII\nxiii\nXIII\nxiv\nXIV\nxix\nXIX\nXL\nxml\nXN\nxoanon\nXP\nXT\nXTN\nxv\nXV\nxvi\nXVI\nxvii\nXVII\nxviii\nXVIII\nxx\nXX\nxxi\nxxii\nxxiii\nxxiv\nxxix\nXXL\nxxv\nxxvi\nxxvii\nxxviii\nxxx\nXY\nxylém\nxylén\nxylénový\nxylobióza\nxylofág\nxylofágny\nxylofon\nxylofón\nxylofonista\nxylofonistka\nxylofónový\nxylograf\nxylografia\nxylolit\nxylolitmi\nxylolitový\nxylológia\nxylometer\nxylotómia\nxylóza\nxylózový\nxylylbromid\nxystos\ny\nY\nYam\nyama\nyankee\nYankee\nYankeeho\nYankeeovia\nyankeeovský\nyantra\nyardami\nyard\nyardové\nYb\nYB\nYellowstonského\nYen\nYenom\nyeoman\nyeti\nyetti\nYork\nyorkshirský\nyperit\nyperitmi\nyperitový\nyperitový\nypres\nypsilon\nypsilonista\nysat\nyterbiový\nyterbiumia\nyterbiumiu\nyterbium\nyteria\nyteriu\nyterium\nytrium\nytterbium\nyucca\nYukon\nYukonu\nyuppie\nYWCA\ný\nyzop\nyzopový\nz\nza\nzaa\nzaachkať\nzaalpský\nzaangažovania\nzaangažovanie\nzaangažovaním\nzaangažovanosť\nzaangažovanosti\nzaangažovanosťou\nzaangažovaný\nzaangažovať\nzababraný\nzababrať\nzababre\nzababrem\nzababreme\nzababreš\nzababrete\nzababri\nzababrime\nzababrite\nzababrú\nzababrúc\nzababúliť\nzababušené\nzababušiť\nzabáča\nzabáčaj\nzabáčajme\nzabáčajte\nzabáčajú\nzabáčajúc\nzabáčal\nzabáčala\nzabáčali\nzabáčalo\nzabáčam\nzabáčame\nzabáčaš\nzabáčať\nzabáčate\nzabádať\nzabafať\nzabafkať\nzabahnené\nzabahnenie\nzábal\nzabalene\nzabalenie\nzabalený\nzabaliť\nzábalmi\nzabaľovací\nzabaľovať\nzábalový\nzabalzamovať\nzabanovaný\nzabaranenú\nzabaraniť\nzabárať\nzabarikádovanie\nzabarikádovaním\nzabarikádovaný\nzabarikádovať\nzabariť\nzabasla\nzabasli\nzabaslo\nzabasne\nzabasnem\nzabasneme\nzabasneš\nzabasnete\nzabasni\nzabasnime\nzabasnite\nzabasnú\nzabasnúc\nzabasnúť\nzabasol\nzábav\nzabávač\nzabávačka\nzabávačský\nzabávajúci\nzabávaní\nzabávania\nzabávanie\nzabávaných\nzabávať\nzábava\nzabavene\nzabavenia\nzabavenie\nzabavením\nzabaveniu\nzabavený\nzabaviť\nzábavkár\nzábavka\nzábavne\nzábavnica\nzábavník\nzábavno\nzábavno-kultúrny\nzábavno-poučný\nzábavnosť\nzábavný\nzabavoval\nzabavovali\nzabavovaní\nzabavovania\nzabavovanie\nzabavovaním\nzabavovaniu\nzabavovať\nZábavský\nzabavuje\nzabavujem\nzabavujú\nzábavychtiví\nzábavychtivých\nzabeč\nzabedákať\nzabednené\nzabedneným\nzabehane\nzabehanosť\nzabehaný\nzabehať\nzabehávania\nzabehávanie\nzabehávaním\nzabehávať\nzábeh\nzabehnutia\nzabehnutie\nzabehnutím\nzabehnúť\nzabehnutý\nzábehový\nzabehúvať\nzabelej\nzabelejme\nzabelejte\nzabelejú\nzabelejúc\nzabelený\nzabelieť\nzaberačka\nzaberajúci\nzaberania\nzaberanie\nzaberaný\nzaberať\nzáber\nzáberový\nzabetónovania\nzabetónovanie\nzabetónovaním\nzabetónovaniu\nzabetónovaný\nzabetónovať\nzabezpečene\nzabezpečenie\nzabezpečenosť\nzabezpečenosti\nzabezpečenosťou\nzabezpečený\nzabezpečiť\nzabezpečovací\nzabezpečovač\nzabezpečovača\nzabezpečovačom\nzabezpečovanie\nzabezpečovaný\nzabezpečovať\nzabezpečujúci\nzábezpek\nzábezpeka\nzábezpiek\nzabiedený\nZábiedov\nZábiedove\nZábiedovo\nzábiedovskej\nzábiedovskú\nzabiehania\nzabiehaním\nzabiehať\nzabieľ\nzabielený\nzabielia\nzabielili\nzabieliť\nzabijacký\nzabíjač\nzabíjači\nzabíjačka\nzabíjačkový\nzabíjačov\nzabíjačský\nzabijak\nzabijaku\nzabijaky\nzabíjanie\nzabíjaný\nzabíjať\nzabíjaví\nzabitie\nzabiť\nzabitý\nzabľabotať\nzabľač\nzabľačať\nzablahoželať\nzablatený\nzablatiť\nzablažiť\nzáblesk\nzablesknúť\nzablesknutie\nzábleskový\nzáblesky\nzableslo\nzablesnúť\nzabliakať\nzabliká\nzablikaj\nzablikajme\nzablikajte\nzablikajú\nzablikajúc\nzablikal\nzablikala\nzablikali\nzablikalo\nzablikám\nzablikáme\nzablikáš\nzablikať\nzablikáte\nzablokovanie\nzablokovaný\nzablokovať\nzablombovať\nzablúdenec\nzablúdený\nzablúdiť\nzablýskať\nzablysknutie\nzablysknúť\nzablyskotať\nzablysnutí\nzablysnutím\nzablysnúť\nzablyšť\nzablyšťať\nzablyšťme\nzablyšťte\nzabočení\nzabočiť\nzabočovať\nzabodávať\nzabodla\nzabodli\nzabodlo\nzabodne\nzabodnem\nzabodneme\nzabodneš\nzabodnete\nzabodni\nzabodnime\nzabodnite\nzabodnú\nzabodnúc\nzabodnúť\nzabodnutie\nzabodnutý\nzabodol\nzabodoval\nzabodovala\nzabodovali\nzabodovalo\nzabodovanie\nzabodovať\nzaboduj\nzaboduje\nzabodujem\nzabodujeme\nzaboduješ\nzabodujete\nzabodujme\nzabodujte\nzabodujú\nzabodujúc\nzaboha\nzabojoval\nzabojovala\nzabojovali\nzabojovalo\nzabojovať\nzabojuj\nzabojuje\nzabojujem\nzabojujeme\nzabojuješ\nzabojujete\nzabojujme\nzabojujte\nzabojujú\nzabojujúc\nzaboľ\nzabolenie\nzabolieť\nzaboľme\nzaboľte\nzabor\nzaborení\nZaboreným\nZáborie\nzaboriť\nZáborský\nzaborte\nzabosorovať\nzabožemôj\nzabožiť\nzábradlie\nzábradľový\nzábran\nzábrana\nzabránenie\nzabránený\nzabranie\nzabraním\nzabrániť\nzábranná\nzábranné\nzábranného\nzábrannej\nzábrannou\nzábrannú\nzábranných\nzabraňované\nzabraňovaní\nzabraňovania\nzabraňovanie\nzabraňovaním\nzabraňovaniu\nzabraňovať\nzábranový\nzabraňujúci\nzabraný\nzabratia\nzabratie\nzabratím\nzabratiu\nzabrať\nzabratý\nzabrblať\nzabrbtať\nzabŕdať\nzabŕdnuť\nzabŕdnutý\nzabrechaj\nzabrechajme\nzabrechajte\nzabrechajúc\nzabrechať\nzabreš\nzabreše\nzabrešem\nzabrešeme\nzabrešeš\nzabrešete\nzabrešme\nzabrešte\nzabrešú\nzabrešúc\nZábrež\nzábrežie\nZábrežný\nzábrežský\nzabridený\nzabridiť\nzabrnieť\nzabrnkanie\nzabrnkať\nzábron\nzabronený\nzabronieť\nzabručať\nzábrus\nzabrúsený\nzabrúsiť\nzabrusovanie\nzabrusovaný\nzabrusovať\nzábrusu\nzabrýzganý\nzabrýzgať\nzabrzdenie\nzabrzdený\nzabrzdi\nzabrzdime\nzabrzdite\nzabrzdiť\nzabsolutizovať\nzabsolútniť\nzabublajúc\nzabublanie\nzabublať\nzabubnovať\nzabuč\nzabučať\nzabúdajúci\nzabúdanie\nzabúdaním\nzabúdaniu\nzabúdaný\nzabúdať\nzábudlivec\nzábudlivkyňa\nzábudlivosť\nzábudlivý\nzabudnuteľný\nzabudnutie\nzabudnuto\nzabudnúť\nzabudnutý\nzabudovane\nzabudovanie\nzabudovaný\nzabudovať\nzabúchať\nzabuchnuté\nzabuchnutie\nzabuchnutím\nzabuchnúť\nzabuchotať\nzabuchovať\nzaburácať\nzaburcovať\nzaburinená\nzaburinené\nzaburinenej\nzaburinenia\nzaburinenie\nzaburinením\nzaburinenosť\nzaburinenosti\nzaburinenú\nzaburinených\nzaburinenými\nzaburiniť\nzaburiňovať\nzabúšiť\nzabývanie\nzabývaný\nzabývať\nzabzuč\nzabzučanie\nzabzučať\nzacáloval\nzacálovala\nzacálovali\nzacálovalo\nzacálovať\nzacáluj\nzacáluje\nzacálujem\nzacálujeme\nzacáluješ\nzacálujete\nzacálujme\nzacálujte\nzacálujú\nzacálujúc\nzacápať\nzacapiť\nzacapkať\nzacápkať\nzacelej\nzacelejme\nzacelejte\nzacelejú\nzacelejúc\nzacelenia\nzacelenie\nzacelený\nzacelieť\nzacelievať\nzaceliť\nzaceľovanie\nzaceľovať\nzacementovaný\nzacementovať\nzacengať\nzaceniť\nzacer\nzaceriť\nzacerte\nzacestovať\nzacielenie\nzacielený\nzacieliť\nzacieľovať\nzacigániť\nzacinkať\nzacítiť\nzacitovať\nzacláňanie\nzacláňať\nzáclon\nzáclona\nzaclonený\nzacloňiť\nzacloniť\nzáclonka\nzáclonovina\nzáclonový\nzacmukať\nzacnej\nzacnejme\nzacnejte\nzacnejú\nzacnejúc\nzacnel\nzacnela\nzacneli\nzacnelo\nzacnenia\nzacnenie\nzacnie\nzacniem\nzacnieme\nzacnieš\nzacnieť\nzacniete\nzacundraný\nzacundrať\nzacupkať\nzacupotať\nzacúvanie\nzacúvať\nzacvakať\nzacvaknúť\nzacvendžať\nzacvendži\nzacvendžime\nzacvendžite\nzacvičenie\nzacvičených\nzacvičiť\nzacvičovať\nzácvik\nzacviknutie\nzacviknúť\nzacviknutý\nzácvikový\nzacykleniu\nZacykliť\nzač\nzačadený\nzačadiť\nzačaďovať\nzačahovať\nZačachrovanie\nzačapiť\nzačapnúť\nzačapovať\nzačar\nzačarať\nzačariť\nzačarovaný\nzačarovať\nzačas\nzačate\nzačatie\nzačato\nzačať\nzačatý\nzačernetý\nzačernieť\nzačerstva\nzačervenania\nzačervenanie\nzačervenaním\nzačervenaný\nzačervenať\nzačervenieť\nzačerveniť\nzačesané\nzačesať\nzačiahnuť\nzačiaraný\nzačiarať\nzačiarkaný\nzačiarknuť\nzačiatočne\nzačiatočnícky\nzačiatočníctvach\nzačiatočníctvam\nzačiatočníctvo\nzačiatočníčka\nzačiatočník\nzačiatočný\nzačiatok\nzačierania\nzačierať\nzačiernení\nzačiernenia\nzačiernením\nzačiernených\nzačierniť\nzačierňovať\nzačínajúci\nzačínané\nzačínaného\nzačínaní\nzačínania\nzačínanie\nzačínaním\nzačínaných\nzačínať\nzáčin\nzáčinok\nzáčinový\nzačisti\nzačistime\nzačistite\nzačistiť\nzačisťovací\nzačisťovacie\nzačisťovať\nzačítať\nzačítavanie\nzačítavať\nzačkanie\nzačkať\nzačlenenie\nzačlenený\nzačleniť\nzačleňovací\nzačleňovania\nzačleňovanie\nzačleňovaním\nzačleňovaniu\nzačleňovaný\nzačleňovať\nzačmudený\nzačmudiť\nzačo\nzačože\nzačretie\nzačrieť\nzačrúc\nzáčtový\nzačudovane\nzačudovanie\nzačudovaný\nzačudovať\nzačuchraný\nzačuť\nzačvirikať\nzadák\nZadáka\nzaďakovať\nZadákovi\nzadane\nzadanie\nzadaný\nzadaptoval\nzadaptovala\nzadaptovali\nzadaptovalo\nzadaptovaný\nzadaptovať\nzadaptuj\nzadaptuje\nzadaptujem\nzadaptujeme\nzadaptuješ\nzadaptujete\nzadaptujme\nzadaptujte\nzadaptujú\nzadaptujúc\nZadar\nZadare\nzadarmo\nZadarské\nZadarskú\nZadaru\nzadať\nzadávací\nzadávajúci\nzadávajúci\nzadávanie\nzadávaný\nzadávateľ\nzadávateľka\nzadávateľský\nzadávať\nzadáviť\nzadávna\nzadaždený\nzadaždi\nzadaždime\nzadaždite\nzadaždiť\nzadažďovací\nzadažďovať\nzadebneno\nzadebnenosť\nzadebnený\nzadebni\nzadebnime\nzadebnite\nzadebniť\nzadebňovať\nzadefinovanie\nzadefinovaný\nzadefinovať\nzadegviť\nzadelenia\nzadelenie\nzadelením\nzadelený\nzadeliť\nzadeľovaní\nzadeľovania\nzadeľovanie\nzadeľovaním\nzadeľovať\nzáder\nzáderčivo\nzáderčivosť\nzáderčivý\nzáderka\nZádiel\nZádielska\nZádielskej\nZádielsky\nzadiera\nzadierač\nzadieraj\nzadierajme\nzadierajte\nzadierajú\nzadierajúc\nzadieral\nzadierala\nzadierali\nzadieralo\nzadieram\nzadierame\nzadieranie\nzadieraš\nzadierať\nzadierate\nzadieravý\nzadina\nzadirigovať\nzadiskutuje\nzadívať\nzadivením\nzadivený\nzadiviť\nzadlabaniu\nzadláviť\nzadĺženia\nzadĺženie\nzadlženie\nzadĺžením\nzadĺženiu\nzadĺženosť\nzadĺženosti\nzadlženosť\nzadĺženosťou\nzadlžený\nzadĺžený\nzadĺži\nzadĺžil\nzadĺžila\nzadĺžili\nzadĺžilo\nzadĺžim\nzadĺžime\nzadĺžiť\nzadĺžite\nzadlžiť\nzadlžovací\nzadlžované\nzadlžovanej\nzadlžovanie\nzadlžovať\nzadministrovanie\nzadministrovať\nzadne\nzadnica\nzadnina\nzadný\nzadný\nzadobre\nzadoček\nzadočka\nzadočkami\nzadočkoch\nzadočkom\nzadočkov\nzadočkový\nzadočku\nzadočky\nzadok\nzadokumentoval\nzadokumentovala\nzadokumentovali\nzadokumentovalo\nzadokumentovať\nzadokumentuj\nzadokumentuje\nzadokumentujem\nzadokumentujeme\nzadokumentuješ\nzadokumentujete\nzadokumentujme\nzadokumentujte\nzadokumentujú\nzadokumentujúc\nzadom\nZádor\nzadoskovať\nzadosť\nzadosťučinenie\nzadosťučinený\nzadosťučiní\nzadosťučinili\nzadosťučinilo\nzadosťučiniť\nzadovák\nzadovážená\nzadovážené\nzadovážení\nzadováženia\nzadováženie\nzadovážením\nzadovážených\nzadováženým\nzadovážiť\nzadovažovanie\nzadovažovať\nzadovka\nzádrapčivo\nzádrapčivosť\nzádrapčivý\nzadrapiť\nzádrapkár\nzadrapkávať\nzádrapka\nzadrapnúť\nzadrapovať\nzadrene\nzadrený\nzadresneniu\nzadretie\nzadretím\nzadretiu\nzadretý\nzadŕhať\nzadrháva\nzadrhávaj\nzadrhávajme\nzadrhávajte\nzadrhávajú\nzadrhávajúc\nzadrhával\nzadrhávala\nzadrhávali\nzadrhávalo\nzadrhávam\nzadrhávame\nzadrhávanie\nzadrhávaš\nzadrhávať\nzadrhávate\nzadŕhavo\nzadŕhavosť\nzadŕhavý\nzádrh\nzádrhľavý\nzádrhlivý\nzadrhnutie\nzadrhnúť\nzadrhnutý\nzadrhoval\nzadrhovala\nzadrhovali\nzadrhovalo\nzadrhovanie\nzadrhovať\nzadrhuj\nzadrhuje\nzadrhujem\nzadrhujeme\nzadrhuješ\nzadrhujete\nzadrhujme\nzadrhujte\nzadrhujú\nzadrhujúc\nzadriemaj\nzadriemajme\nzadriemajte\nzadriemajúc\nZadriemaný\nzadriemať\nzadriemme\nzadriemnuť\nzadriemte\nzadrieť\nzadrichmať\nzadrichmú\nzadrichmúc\nzadrkotať\nzadrmancovať\nzadrmať\nzadrnč\nzadrnčať\nzadrnči\nzadrnčime\nzadrnčite\nzadrobči\nzadrobčime\nzadrobčite\nzadrobčiť\nzadrôtovaný\nzadrôtovať\nzadrúc\nzádruha\nzádrž\nzadržanie\nzadržaný\nzadržateľný\nzadržať\nzadŕžať\nzadržiavania\nzadržiavanie\nzadržiavaním\nzadržiavaniu\nzadržiavaný\nzadržiavať\nzádržné\nzádržného\nzádržnej\nzádržnú\nzádržným\nzadržovacie\nzadržovacích\nzadržované\nzadržovaného\nzadržovaní\nzadržovania\nzadržovaniam\nzadržovanie\nzadržovaných\nzadržovať\nzadržujúci\nzadu\nzadubančiť\nzadubasiť\nzadubenec\nzadubene\nzadubenosť\nzadubený\nzadubiť\nZádubnie\nzadudrať\nzadudre\nzadudrem\nzadudreme\nzadudreš\nzadudrete\nzadudri\nzadudrime\nzadudrite\nzadudrú\nzadudrúc\nzadúcha\nzáduch\nzáduchový\nzáduma\nzadumane\nzadumania\nzadumano\nzadumanosti\nzadumaný\nzadumať\nzádumčivo\nzádumčivosť\nzádumčivý\nzaduň\nZadunajská\nZadunajskej\nzadunajskom\nzadunajských\nzadunenie\nzadunieť\nzadupá\nzadupaj\nzadupajme\nzadupajte\nzadupajú\nzadupajúc\nzadupám\nzadupáme\nzadupáš\nzadupáte\nzadupať\nzadupávať\nzadupkať\nzaduplikovať\nzadupotať\nzadusenie\nzadusený\nzadusiť\nzadúšajúci\nzadúšanie\nzadúšať\nzadúšavo\nzadúšavý\nzadušiť\nzádušivý\nzádušlivý\nzádušný\nzaduť\nzádveria\nzádverie\nzádych\nzadýchaný\nzadýchať\nzadychč\nzadychčaný\nzadychčať\nzadychči\nzadychčiavať\nzadychčime\nzadychčite\nzadymenie\nzadymeniu\nzadymený\nzadymiť\nzadymovanie\nzadymovať\nzaerdžanie\nzaerdžať\nzaerdži\nzaerdžime\nzaerdžite\nzaevidovanie\nzaevidovaný\nzaevidovať\nzaexekvovaný\nzafačovať\nzafafraný\nzafafrať\nzafajčený\nzafajči\nzafajčime\nzafajčite\nzafajčiť\nzafajkovať\nzafakliť\nzafarbenie\nzafarbený\nzafarbi\nzafarbime\nzafarbite\nzafarbiť\nzafarbovanie\nzafarbovať\nzafič\nzafičať\nzafikať\nzafír\nzafírovať\nzafírovo\nzafírový\nzafixovanie\nzafixovaný\nzafixovaný\nzafixovať\nzafľakovať\nzafliaskať\nzafľúskať\nzafňuká\nzafňukaj\nzafňukajme\nzafňukajte\nzafňukajú\nzafňukajúc\nzafňukal\nzafňukala\nzafňukali\nzafňukalo\nzafňukám\nzafňukáme\nzafňukáš\nzafňukať\nzafňukáte\nzafŕkať\nzafuč\nzafučať\nzafufnať\nzafúkané\nzafúkanie\nzafúkať\nzafukovania\nzafukovať\nzafúľa\nzafúľaj\nzafúľajme\nzafúľajte\nzafúľajú\nzafúľajúc\nzafúľal\nzafúľala\nzafúľali\nzafúľalo\nzafúľam\nzafúľame\nzafúľanec\nzafúľaný\nzafúľaš\nzafúľať\nzafúľate\nzafungoval\nzafungovala\nzafungovali\nzafungovalo\nzafungovať\nzafunguje\nzafungujú\nzagágať\nzagagotať\nzagániť\nzagarantovala\nzagarantovať\nzagarantuje\nzagarantujú\nzagarážovať\nzagazdovaný\nzagazdovať\nzagebrený\nzagebriť\nzagebzdený\nzagitovať\nzagniaviť\nzagombičkoval\nzagombičkovala\nzagombičkovali\nzagombičkovalo\nzagombičkovaný\nzagombičkovať\nzagombičkuj\nzagombičkuje\nzagombičkujem\nzagombičkujeme\nzagombičkuješ\nzagombičkujete\nzagombičkujme\nzagombičkujte\nzagombičkujú\nzagombičkujúc\nzagombíkoval\nzagombíkovala\nzagombíkovali\nzagombíkovalo\nzagombíkovaný\nzagombíkovať\nzagombíkuj\nzagombíkuje\nzagombíkujem\nzagombíkujeme\nzagombíkuješ\nzagombíkujete\nzagombíkujme\nzagombíkujte\nzagombíkujú\nzagombíkujúc\nZagora\nZagoru\nzagratulovať\nzaguľacovať\nzaguľatený\nzaguľatiť\nzagúľať\nzagypsovať\nzáh\nzahabkať\nzaháčiť\nzaháčkovaný\nzaháčkovať\nzáhad\nzahádať\nzáhada\nzáhadne\nzáhadnosť\nzáhadný\nzahádzaná\nzahádzané\nzahádzanom\nzahádzaných\nzahádzať\nzahadzovania\nzahadzovanie\nzahadzovať\nzahádžu\nzahádžuc\nzáhach\nzahajduchovať\nzahájenia\nzahájenie\nzahájením\nzahájeniu\nzahájený\nzahájiť\nzahajované\nzahajovaní\nzahajovania\nzahajovanie\nzahajovaných\nzahajovať\nzaháknuť\nzahákovaných\nzahákovať\nzáhal\nzáhala\nzaháľač\nzahalačiť\nzaháľačka\nzaháľačský\nzaháľačstvo\nzaháľajúci\nzaháľania\nzaháľanie\nzaháľaním\nzahalaškovať\nzaháľať\nzaháľavý\nzáhaľčivo\nzaháľčivosť\nzáhaľčivosť\nzaháľčivý\nzáhaľčivý\nzahalenia\nzahalenie\nzahalený\nzáhali\nzahaliť\nzáhaľkár\nzáhaľka\nzáhalo\nzahaľovanie\nzahaľovaný\nzahaľovať\nzahaĺte\nzahaľujúci\nzáham\nzahamovanie\nzahamovať\nzaháňaného\nzaháňanie\nzaháňať\nzahanbene\nzahanbenia\nzahanbenie\nzahanbením\nzahanbeniu\nzahanbený\nzahanbi\nzahanbime\nzahanbite\nzahanbiť\nzahanboval\nzahanbovala\nzahanbovali\nzahanbovalo\nzahanbovať\nzahanbuj\nzahanbuje\nzahanbujem\nzahanbujeme\nzahanbuješ\nzahanbujete\nzahanbujme\nzahanbujte\nzahanbujú\nzahanbujúc\nzahanbujúcejšej\nzahanbujúcejší\nzahanbujúcejšia\nzahanbujúcejšie\nzahanbujúcejšieho\nzahanbujúcejšiemu\nzahanbujúcejších\nzahanbujúcejším\nzahanbujúcejšími\nzahanbujúcejšiu\nzahanbujúcejšom\nzahanbujúcejšou\nzahanbujúci\nzahanbujúco\nzahanovať\nzahaprovať\nzahára\nzahartusiť\nzahasenie\nzahasený\nzahasiť\nzahaspriť\nzahasprovať\nzahášať\nzáhať\nzahatanie\nzahataný\nzahatať\nzahatávať\nzahatiť\nzahavkať\nzáha\nzahemžila\nzahíkať\nzahíknutý\nzahľaď\nzahľadenie\nzahladenie\nzahľadeniu\nzahladený\nzahľadený\nzahľadieť\nzahľadievajú\nzahladiť\nzahládzania\nzahládzanie\nzahládzaním\nzahládzaniu\nzahládzať\nzahladzovaní\nzahladzovania\nzahladzovanie\nzahladzovaním\nzahladzovať\nzahladzujúci\nzahlaholiť\nzahlásenia\nzahlásenie\nzahlásený\nzahlásiť\nzahlasoval\nzahlasovala\nzahlasovali\nzahlasovať\nzahlasuje\nzahlasujem\nzahlasujú\nzáhlavie\nzáhlavný\nzáhlavový\nzahĺbaný\nzahĺbať\nzahĺbavať\nzahĺbenia\nzahĺbenie\nzahĺbený\nzahĺbiť\nzahlbovanie\nzahlbovať\nzahlcovať\nzahlcujú\nzahliadnuť\nzahlienený\nzahlieniť\nzahlinením\nzahlinený\nzahliniť\nzahlobiť\nzahlodá\nzahltenia\nzahltenie\nzahltený\nzahlti\nzahltiť\nzahluchnúť\nzahlúpiť\nzahlušiť\nzahmkať\nzahmlene\nzahmlenie\nzahmlením\nzahmleniu\nzahmlenosť\nzahmlený\nzahmlieť\nzahmlievajúcej\nzahmlievania\nzahmlievanie\nzahmlievaním\nzahmlievaniu\nzahmlievaný\nzahmlievať\nzahmliť\nzahmľoval\nzahmľovať\nzahmľuje\nzahmyziť\nzahnanie\nzahnaniu\nzahnaný\nzahnať\nzahnednutie\nzahnednutý\nzahniezdený\nzahniezdiť\nzahniezďoval\nzahniezďovala\nzahniezďovali\nzahniezďovalo\nzahniezďovať\nzahniezďuj\nzahniezďuje\nzahniezďujem\nzahniezďujeme\nzahniezďuješ\nzahniezďujete\nzahniezďujme\nzahniezďujte\nzahniezďujú\nzahniezďujúc\nzahnil\nzahnisaný\nzahnisať\nzahniť\nzahnito\nzahnitý\nzahnívania\nzahnívanie\nzahnívať\nzahnojený\nzahnojiť\nzahnusený\nzahnusiť\nzahnutia\nzahnutím\nzahnúť\nzahnutý\nzahobľovať\nzahodenie\nzahodení\nzahodený\nzahodiť\nzahodno\nZáhodno\nZáhodou\nzahojenie\nzahojený\nzahojiť\nzáhon\nzáhonček\nzáhonový\nzahor\nZáhor\nzáhorácky\nzáhoráčka\nZáhoráčka\nzáhoráčtin\nzáhoráčtinách\nzáhoráčtinám\nzáhoráčtinami\nzáhoráčtina\nzáhorák\nZáhorák\nZáhorákovej\nZáhorákovou\nZáhorce\nzáhorčina\nZáhore\nzahorekovať\nzahorenie\nzahoreniu\nzahorený\nzahorieť\nZáhorie\nzahorknúť\nZáhorom\nzáhorskobystrickej\nzáhorsky\nzáhorský\nZáhoru\nzahorúca\nzahostiť\nzahovárať\nzahovor\nzahovoriť\nzahovorte\nzahr\nzáhr\nzahrab\nzahrabanie\nzahrabaný\nzahrabať\nzahrabávanie\nzahrabávať\nzahrabni\nzahrabúvať\nzáhrada\nzahradenia\nzahradenie\nzahradený\nzahradiť\nzáhradkár\nzáhradkárčenia\nzáhradkárčenie\nzáhradkárčiť\nzáhradkárka\nzáhradkársky\nzáhradkárstvach\nzáhradkárstvam\nzáhradkárstvo\nzáhradka\nzáhradková\nZáhradkové\nZáhradkovej\nzáhradkových\nzáhradnícky\nzahradníctva\nzáhradníctvach\nzáhradníctvam\nzáhradníctvo\nzáhradníčení\nzáhradníčenie\nzáhradníčiť\nzáhradníčka\nzáhradník\nzáhradný\nzáhradôčka\nzahrádzania\nzahrádzať\nzahradzovanie\nzahradzovať\nzahrane\nzahrania\nzahraničie\nzahranične\nzahranično\nzahraničnoobchodne\nzahraničnoobchodný\nzahraničnopoliticky\nzahraničnopolitický\nzahraničný\nzahranie\nzahraniu\nzahraný\nzahrať\nzahratý\nzahrávaní\nzahrávania\nzahrávanie\nzahrávaním\nzahrávaniu\nzahrávať\nzahrážať\nzahrč\nzahrčať\nzahrdús\nzahrdúsenie\nzahrdúsi\nzahrdúsia\nzahrdúsiac\nzahrdúsil\nzahrdúsila\nzahrdúsili\nzahrdúsilo\nzahrdúsim\nzahrdúsime\nzahrdúsiš\nzahrdúsiť\nzahrdúsite\nzahrdúsme\nzahrdúste\nzahrdzavený\nzahrdzavieť\nzahreb\nZáhreb\nZáhrebčan\nZáhrebčanka\nzáhrebský\nzahrej\nzahreje\nzahrejem\nzahrejeme\nzahreješ\nzahrejete\nzahrejme\nzahrejte\nzahrejú\nzahrejúc\nzáhrenie\nzahreš\nzahrešenie\nzahreší\nzahrešia\nzahrešiac\nzahrešil\nzahrešila\nzahrešili\nzahrešilo\nzahreším\nzahrešíme\nzahrešíš\nzahrešiť\nzahrešíte\nzahrešme\nzahrešte\nzáhrev\nzahriakať\nzahriaknutím\nzahriaknuto\nzahriaknutosť\nzahriaknuť\nzahriaknutý\nzahriakovať\nzahriate\nzahriatie\nzahriať\nzahriaty\nzahrievací\nzahrievač\nzahrievači\nzahrievačov\nzahrievajúci\nzahrievané\nzahrievaní\nzahrievania\nzahrievanie\nzahrievaním\nzahrievať\nzahrkať\nzahrkni\nzahrkotať\nzahrkútal\nzahrm\nzahrmenie\nzahrmi\nzahrmieť\nzahrmotajúc\nzahrmotať\nzahrmotiť\nzahrň\nzahŕňajúci\nzahŕňania\nzahŕňanie\nzahŕňaním\nzahŕňaný\nzahŕňať\nzahrnie\nzahrniem\nzahrnieme\nzahrnieš\nzahrniete\nzahrňme\nzahrňoval\nzahrňovala\nzahrňovali\nzahrňovalo\nzahrňovania\nzahrňovanie\nzahrňovaním\nzahrňovaný\nzahrňovať\nzahrnovať\nzahrňte\nzahrňuj\nzahrňuje\nzahrňujem\nzahrňujeme\nzahrňuješ\nzahrňujete\nzahrňujme\nzahrňujte\nzahrňujú\nzahrňujúc\nzahrnujúci\nzahrňujúci\nzahrnutia\nzahrnutie\nzahrnutím\nzahrnutiu\nzahrnuto\nzahrnúť\nzahrnutý\nzáhrobie\nzáhrobný\nzahrocovaní\nzahrocovať\nzahromži\nzahromžime\nzahromžite\nzahromžiť\nzahrotenie\nzahrotený\nzahrotiť\nzáhroz\nzáhroza\nzahroziť\nzahrúžený\nzahrúžiť\nzahružovanie\nzahrýzať\nzahryzávať\nzáhryz\nzahryzený\nzahryznutí\nzahryznutie\nzahryznutiu\nzahryznúť\nzahryznutých\nzáhryzok\nzahryzovať\nzáhub\nzáhuba\nzáhubca\nzahubenie\nzahubený\nzahubiteľ\nzahubiť\nzahuč\nzahučať\nzahudlikať\nzahuhlať\nzahuhňať\nzahúkanie\nzahúkať\nzahúknuť\nzahukotať\nzahulákať\nzahúlený\nzahúliť\nzáhumenica\nzáhumienkári\nzáhumienkový\nzáhumienok\nzáhumnica\nzáhumnie\nzahundrať\nzahundre\nzahundrem\nzahundreme\nzahundreš\nzahundrete\nzahundri\nzahundrime\nzahundrite\nzahundrú\nzahundrúc\nzahustenie\nzahustený\nzahusti\nzahustime\nzahustite\nzahustiť\nzahusťovače\nzahusťovačov\nzahusťovadiel\nzahusťovaní\nzahusťovania\nzahusťovanie\nzahusťovaním\nzahusťovaniu\nzahusťovať\nzahúsť\nzahútaný\nzahútať\nzahutoval\nzahutovala\nzahutovali\nzahutovalo\nzahutovať\nzahutuj\nzahutuje\nzahutujem\nzahutujeme\nzahutuješ\nzahutujete\nzahutujme\nzahutujte\nzahutujú\nzahutujúc\nzahviezdený\nzahvízdať\nzahvizdnutie\nzahvizdnúť\nzahvižď\nzahvižďať\nzahvižďme\nzahvižďte\nzahýbať\nzáhyb\nzáhybček\nzahyň\nzahýnať\nzahynie\nzahyniem\nzahynieme\nzahynieš\nzahyniete\nzahyňme\nzahyňte\nzahynulého\nzahynutie\nzahynúť\nzahynutý\nzahýriť\nzachádzané\nzachádzaní\nzachádzania\nzachádzanie\nzachádzaním\nzachádzaniu\nzachádzať\nzachádzka\nZacharovský\nzachcejúc\nzachcieť\nzachechci\nzachechcime\nzachechcite\nzachechotať\nzachechtať\nzachichotať\nZachladené\nzachladeným\nzachladiť\nzachladnúť\nzachlopiť\nzáchlopka\nzachlopnúť\nzachlošti\nzachloštime\nzachloštite\nzachloštiť\nzachlpiť\nzachmúrene\nzachmúreno\nzachmúrenosť\nzachmúrený\nzachmúriť\nzáchoda\nzáchod\nzáchodík\nzachodiť\nzáchodový\nzachorieť\nzáchova\nzachovalejšej\nzachovalejší\nzachovalejšia\nzachovalejšie\nZachovalejšie\nzachovalejšieho\nzachovalejšiemu\nzachovalejších\nzachovalejším\nzachovalejšími\nzachovalejšiu\nzachovalejšom\nzachovalejšou\nzachovalosť\nzachovalý\nzachovane\nzachovanie\nzachovano\nzachovanosť\nzachovaný\nzachovať\nzachovávajúci\nzachovávanie\nzachovávaný\nzachovávať\nzáchovné\nzáchovnej\nzáchovných\nzáchran\nzáchranár\nzáchranárka\nzáchranársky\nzáchranárstvach\nzáchranárstvam\nzáchranárstvo\nzáchrana\nzáchranca\nzáchrancoch\nzáchrancom\nzáchrancov\nzáchrancovi\nzáchrancovia\nzachránenia\nzachránenie\nzachráneniu\nzachránený\nzachrániť\nzáchranka\nzáchrankyňa\nzáchranný\nzachraňovací\nzachraňovaná\nzachraňované\nzachraňovaného\nzachraňovaní\nzachraňovania\nzachraňovanie\nzachraňovaním\nzachraňovaniu\nzachraňovaných\nZachraňovaný\nzachraňovať\nzachraňujúceho\nzachraňujúci\nzachrápať\nzachrapč\nzachrapčať\nzachrapči\nzachrapčime\nzachrapčite\nzachrapšť\nzachrapšťal\nzachrapšťala\nzachrapšťali\nzachrapšťalo\nzachrapšťať\nzachrapšti\nzachrapští\nzachrapšťí\nzachrapštia\nzachrapšťia\nzachrapštiac\nzachrapšťiac\nzachrapštím\nzachrapšťím\nzachrapštime\nzachrapštíme\nzachrapšťíme\nzachrapštíš\nzachrapšťíš\nzachrapštite\nzachrapštíte\nzachrapšťíte\nzachrapšťme\nzachrapšťte\nzachrastavieť\nzachrč\nzachrčať\nzachrchlal\nzachrchliť\nzachrip\nzachripieť\nzachrípnutia\nzachrípnutie\nzachrípnuť\nzachrípnutý\nzachrochci\nzachrochcime\nzachrochcite\nzachrochtanie\nzachrochtať\nzachrupč\nzachrupčať\nzachrupči\nzachrupčime\nzachrupčite\nzachrupšť\nzachrupšťať\nzachrupšťme\nzachrupšťte\nzachuchliť\nzachuchmať\nzachumeliť\nzachumlať\nzachutiť\nzachutnať\nzachvacovať\nzachvacujúcej\nzachvacujúcu\nzáchvat\nzachvátený\nzachvátiť\nzáchvatmi\nzáchvatový\nzachveje\nzachvejem\nzachvejeme\nzachveješ\nzachvejete\nzachvení\nzachvenie\nzachvením\nzáchvev\nzáchveve\nzachvieť\nzachvievajúce\nzachvievajúceho\nzachvievajúci\nzachvievajúcich\nzachvievajúcim\nzachvievajúcom\nzachvievaní\nzachvievania\nzachvievanie\nzachvievaním\nzachvievať\nzachviľu\nzachycovač\nzachycovači\nzachycovanie\nzachycovaný\nzachycovať\nzáchyľa\nzachytá\nzachytaj\nzachytajme\nzachytajte\nzachytajú\nzachytajúc\nzachytal\nzachytala\nzachytali\nzachytalo\nzachytám\nzachytáme\nzachytáš\nzachytať\nzachytáte\nzachytávač\nzachytávače\nzachytávači\nzachytávačov\nzachytávaia\nzachytávania\nzachytávanie\nzachytávaním\nzachytávaniu\nzachytávaný\nzachytávať\nzáchyte\nzachytene\nzachytenie\nzachytený\nzachytiteľný\nzachytiť\nzáchytka\nzáchytný\nzáchytov\nzáchyty\nZaid\nZaida\nzaihrať\nzaihrávať\nzaimponovať\nzaimprovizovať\nzainteresovane\nzainteresovania\nzainteresovanie\nzainteresovaním\nzainteresovaniu\nzainteresovanosť\nzainteresovaný\nzainteresovať\nzainteresúvať\nzaintervenoval\nzaintervenovala\nzaintervenovať\nzaintervenuje\nzaintonovať\nzaintresovanosť\nzair\nZair\nZairčan\nZairčanka\nZaire\nZairom\nzaironizoval\nzairský\nZairu\nzaiskrenie\nzaiskreniu\nzaiskriť\nzaiste\nzaistenec\nzaistenie\nzaistený\nzaisti\nzaistime\nzaistite\nzaistiť\nzaisťovací\nzaisťovaná\nzaisťované\nzaisťovanej\nzaisťovanie\nzaisťovaných\nzaisťovateľ\nzaisťovateľa\nzaisťovatelia\nzaisťovateľmi\nzaisťovateľoch\nzaisťovateľom\nzaisťovateľov\nzaisťovateľovi\nzaisťovať\nzaisťovňa\nzaisťujúci\nzaizoloval\nzaizolovali\nzaizolovaný\nzaizolovať\nzajace\nzajaci\nzajac\nzajač\nzajačanie\nzajačať\nzajačica\nzajačí\nzajačik\nzajačiky\nzajačina\nzajačinka\nzajačka\nzajačkami\nzajačkoch\nzajačkom\nzajačkov\nzajačkovi\nzajačky\nzajagať\nzajachci\nzajachcime\nzajachcite\nzajachtať\nzajachtávať\nzajajč\nzajajčal\nzajajčala\nzajajčali\nzajajčalo\nzajajčať\nzajajči\nzajajčí\nzajajčia\nzajajčiac\nzajajčím\nzajajčime\nzajajčíme\nzajajčíš\nzajajčite\nzajajčíte\nzajajčme\nzajajčte\nzajajkať\nzajakanie\nzajakať\nzajakávaním\nzajakávať\nzajakavo\nzajakavosť\nzajakavý\nzajasať\nzajastriť\nzajatcova\nzajatec\nzajatecký\nzajatie\nzajatkyňa\nzajať\nzajatý\nzájazd\nzajazdi\nzajazdime\nzajazdite\nzajazdiť\nzájazdový\nzajazviť\nzájdený\nzájdime\nzájduc\nzajedá\nzajedaj\nzajedajme\nzajedajte\nzajedajú\nzajedajúc\nzajedám\nzajedáme\nzajedáš\nzajedáte\nzajedať\nzájedka\nzajedno\nzajesť\nZaježová\nZaježovej\nzajímané\nzajímať\nzajko\nzajky\nzájmoch\nzájmom\nzájmov\nzájmu\nzajmúci\nzájmy\nzajojč\nzajojčať\nzajojči\nzajojčime\nzajojčite\nzajojkať\nzajo\nzájsť\nzajtra\nzajtrajší\nzajtrajšok\nzajy\nzák\nzakaboniť\nzakadiť\nzakakaný\nzakáľací\nzakáľačka\nzakáľačkový\nzakáľať\nzákal\nzakalenie\nzakalením\nzakalený\nzakaliť\nzakalkulovania\nzakalkulovaný\nzakalkulovať\nzákalmi\nzakaľovať\nzákalový\nzakapaný\nzakapať\nzakarovať\nZakarpatsko\nzakarpatský\nzakasá\nzakasaj\nzakasajme\nzakasajte\nzakasajú\nzakasajúc\nzakasám\nzakasáme\nzakasaný\nzakasáš\nzakasáte\nzakasať\nzakášať\nzakášavý\nzakašlať\nzakašľať\nzakat\nZakázane\nzakázanie\nzakázaním\nzakázaný\nzakázať\nzákaz\nzákazka\nzákazkovo\nzákazkový\nzákaznícky\nzákazníčka\nzákazník\nzákazníkova\nzákazníkove\nzákazníkovej\nzákazníkovho\nzákazníkovo\nzákazníkovom\nzákazníkovu\nzákazníkových\nzákazníkovým\nzákazníkovými\nzakazovaná\nzakazované\nzakazovaného\nzakazovania\nZakazovanie\nzakazovaním\nzakazovať\nzakaždým\nzákerne\nzákernícky\nzákerníčka\nzákerník\nzákernosť\nzákerný\nzakerovať\nzakiaľ\nzakikiríkaním\nzakikiríkať\nzákl\nzakladací\nzakladač\nzakladača\nzakladače\nzakladačoch\nzakladačom\nzakladačov\nzakladajúci\nzakladanie\nzakladaný\nzakladateľ\nzakladateľka\nzakladateľsky\nzakladateľský\nzakladať\nzáklad\nzákladina\nzákladinová\nzákladňa\nzákladňový\nzákladný\nzákladový\nzákladých\nzaklam\nzaklamať\nzaklamme\nzaklamte\nzakláňať\nzaklapnúť\nzaklásť\nzaklať\nzaklebetiť\nzaklenbiť\nzakleniť\nzaklenúť\nzaklenutie\nzaklepanie\nzaklepať\nzaklepkať\nzaklepotať\nzaklesnúť\nzaklesnutím\nzaklesnutý\nzakliata\nzakliate\nzakliateho\nzakliatej\nzakliatie\nzakliatom\nzakliatu\nzakliať\nzakliaty\nzakliatych\nzakliesnený\nzakliesniť\nzakliesňovať\nzaklikneme\nzaklínací\nzaklínač\nzaklínačka\nzaklínadlo\nzaklínanie\nzaklínať\nzaklincovanie\nzaklincovať\nzaklinený\nzakliniť\nzaklinovaný\nzaklinovať\nzakliňovať\nzaklipkať\nzaklokoc\nzaklokoce\nzaklokocem\nzaklokoceme\nzaklokoceš\nzaklokocete\nzaklokocme\nzaklokocte\nzaklokocú\nzaklokocúc\nzaklokotal\nzaklokotala\nzaklokotali\nzaklokotalo\nzaklokotať\nzakloktať\nzáklon\nzaklonenou\nzakloniť\nzaklopania\nzaklopanie\nzaklopať\nzaklopiť\nzaklopkať\nzáklopka\nzakľúčenie\nzakľúčiť\nzakľučované\nzakľučovať\nzákľuka\nzakmitať\nzákmit\nzákmitmi\nzakmitnúť\nzaknihovania\nzaknihovanie\nzaknihovaním\nzaknihovaniu\nzaknihovaný\nzaknihovať\nzaknísať\nzakníšu\nzakníšuc\nzakňuč\nzakňučanie\nzakňučať\nzakódovania\nzakódovanie\nzakódovaním\nzakódovaniu\nzakódovaný\nzakódovať\nzakokci\nzakokcime\nzakokcite\nzakoketovať\nzakoktať\nzakoktávať\nzakolembať\nzakolísa\nzakolísaj\nzakolísam\nzakolísaní\nzakolísania\nzakolísaniam\nzakolísanie\nzakolísaním\nzakolísaniu\nzakolísaš\nzakolísate\nzakolísať\nzakolíšu\nzakolíšuc\nzakomentoval\nzakompilovaný\nzakomplexovane\nzakomplexovanosť\nzakomplexovaný\nzakomponovania\nzakomponovanie\nzakomponovaním\nzakomponovaniu\nzakomponovaný\nzakomponovať\nzakomponovať\nzakomponovávať\nzakomponúvať\nzakompostuje\nzákon\nzakonč\nzakončenie\nzakončený\nzakončí\nzakončia\nzakončiac\nzakončím\nzakončíme\nZakončíme\nzakončíš\nzakončiťäzakončovať\nzakončíte\nzakončiť\nzakončme\nzakončovaní\nzakončovanie\nzakončovateľ\nzakončovateľka\nzakončovať\nzakončte\nzakončujúce\nzákonite\nzákonito\nzákonitosť\nzákonitý\nzákonne\nzákonníci\nzákonník\nzákonníkovi\nzákonnosť\nzákonný\nzákonodarca\nzákonodarkyňa\nzákonodarne\nzákonodárne\nzákonodárneho\nzákonodárnej\nzákonodárnemu\nzákonodárnou\nzákonodárny\nzákonodárnym\nzákonodarný\nzákonodarstvo\nzákonotvorný\nzakonzervovania\nzakonzervovanie\nzakonzervovaním\nzakonzervovaniu\nzakonzervovaný\nzakonzervovať\nZakopane\nzakopanie\nzakopaniu\nzakopanský\nzakopaný\nzakopať\nzakopávaniu\nzakopávať\nzákop\nzákopníci\nzákopník\nzakopnutí\nzakopnutia\nzakopnutiach\nzakopnutiam\nzakopnutie\nzakopnúť\nzakoponúvať\nzákopový\nzakorenenia\nzakorenenie\nzakorenením\nzakoreneniu\nzakorenenosť\nzakorenený\nzakoreniť\nzakoreňovaní\nzakoreňovanie\nzakoreňovaním\nzakoreňovaniu\nzakoreňovať\nzákos\nzakosílení\nzakosíliť\nzakosiť\nzakotkodákať\nzakótované\nzakótovaného\nzakótovanie\nzakótovať\nzakotúľať\nzakotvenia\nzakotvenie\nzakotvením\nzakotveniu\nzakotvenosť\nzakotvený\nzakotvi\nzakotvime\nzakotvite\nzakotviť\nzakotvovaní\nzakotvovať\nzakrádajúcu\nzakrádaný\nzakrádať\nzakrádavo\nzakrádavý\nzakradnúť\nzakrajovať\nzakrákať\nzakrákoriť\nzakrátko\nzakrepči\nzakrepčime\nzakrepčite\nzakrepčiť\nzákres\nzakresať\nzakresávať\nzakreslenie\nzakreslený\nzakresliť\nzakresľovaný\nzakresľovať\nzakriačiť\nzakrič\nzakričania\nzakričať\nzakríknuto\nzakríknutosť\nzakríknuť\nzakríknutý\nzakrivene\nzakrivenie\nzakrivenosť\nzakrivený\nzakriviť\nzakrivovať\nzakŕkať\nzakrniem\nzakrnievať\nzakročené\nzakročení\nzakročenia\nzakročenie\nzakročením\nzakročiť\nzakročovať\nzakrochkať\nzakrojiť\nzakrojovať\nzákrok\nzákrov\nzakrpatenec\nzakrpatenia\nzakrpatenosť\nzakrpatenosti\nzakrpatenosťou\nzakrpatený\nzakrpatieť\nzakrpatievať\nzákrpkový\nzákrpok\nzakrúcanie\nzakrúcaný\nzakrúcať\nzakrucovaní\nzakrucovanie\nzákruta\nzakrútené\nzakrútenie\nzakrútiť\nzakrútnuť\nzákrutové\nzakrúžiť\nzakrúžkovaním\nzakrúžkovaný\nzakrúžkovať\nzakružovacích\nzakružované\nzakružovania\nzakružovaných\nzakrvácané\nzakrvácanie\nzakrvácať\nzakrvavený\nzakrvaviť\nzákryt\nzakrytia\nzakrytie\nzakrytím\nzakrytiu\nzákrytmi\nzakryto\nzákrytový\nzakryť\nzakrytý\nzakrývajúcich\nzakrývania\nzakrývanie\nzakrývaním\nzakrývaniu\nzakrývaný\nzakrývať\nzaktivizovanie\nzaktivizovaniu\nzaktivizovaný\nzaktivizovať\nzaktivovať\nzaktualizovaný\nzaktualizovať\nzakuckať\nzakuckávať\nzakudliť\nzakuchtiť\nzakujem\nzakujete\nzakukať\nzakuklenec\nzakuklene\nzakuklenosť\nzakuklený\nzakukliť\nzakukľovať\nzákulisie\nzákulisne\nzákulisný\nzakundoliť\nzakúpene\nzakúpenie\nzakúpený\nzakúpiť\nzakupovaní\nzakupovania\nzakupovaniu\nzakupovať\nzakúrenie\nzakúrený\nzakúriť\nzakurovania\nzakurovanie\nzakurovať\nzakúsiť\nzákusok\nzakusovať\nzakúšaného\nzakúšať\nzakutať\nzákutie\nzakutrať\nzakutrávať\nzakutre\nzakutrem\nzakutreme\nzakutreš\nzakutrete\nzakutri\nzakutrime\nzakutrite\nzakutrú\nzakutrúc\nzakuviká\nzakuvikaj\nzakuvikajme\nzakuvikajte\nzakuvikajú\nzakuvikajúc\nzakuvikal\nzakuvikala\nzakuvikali\nzakuvikalo\nzakuvikám\nzakuvikáme\nzakuvikáš\nzakuvikať\nzakuvikáte\nzakvackať\nzakväckať\nzakvačiť\nzakvačkať\nzakvačovať\nzakvákať\nzakvapkať\nzákvas\nZakvasené\nzakvasenie\nzakvasiť\nzákvaska\nzákvasok\nzakvasovať\nzákvasový\nzakvickať\nzakvič\nzakvičanie\nzakvičať\nzakvíkať\nzakvíliť\nzakvitať\nzakvitnuté\nzakvitnúť\nzakýávať\nzakyckať\nzakydaný\nzakydať\nzakýv\nzakývanie\nzakývať\nzakýve\nzakývem\nzakýveme\nzakýveš\nzakývete\nzakyvkať\nzakývme\nzakývnuť\nzakyvotať\nzakývte\nzakývu\nzakývuc\nzalác\nzaláce\nzalácem\nzaláceme\nzaláceš\nzalácete\nzalácme\nzalácte\nzalácu\nzalácuc\nzaľadnenie\nzaľadni\nzaľadnime\nzaľadnite\nzaľadniť\nzáľaha\nzaľahko\nzaľahnuté\nzaľahnúť\nzalahodiť\nzaľaknúť\nzalamentuje\nzalamovaní\nzalamovanie\nzalamovaním\nzalamovať\nzalanským\nzalapá\nzalapaj\nzalapajme\nzalapajte\nzalapajú\nzalapajúc\nzalapal\nzalapala\nzalapali\nzalapalo\nzalapám\nzalapáme\nzalapáš\nzalapať\nzalapáte\nzalarmovaní\nzalarmovať\nzalátania\nzalátanie\nzalátať\nzalengať\nzalepenie\nzalepením\nzalepeniu\nzalepený\nzalepiť\nzalepovaní\nzalepovanie\nzalepovať\nzálesáci\nzálesácky\nzálesák\nzálesákovi\nZálesí\nZálesie\nzálesík\nZálesím\nzalesknúť\nZáleský\nzalesnenia\nzalesnenie\nzalesnením\nzalesnený\nzalesni\nzalesnime\nzalesnite\nzalesniť\nzalesňovací\nzalesňovaná\nzalesňovaní\nzalesňovania\nzalesňovanie\nzalesňovaním\nzalesňovaniu\nzalesňovaných\nzalesňovať\nzaleštený\nzaleť\nzálet\nzálete\nzaletieť\nzáletmi\nzáletnica\nzáletnícky\nzáletníctvo\nzáletník\nzáletný\nzáletoch\nzáletom\nzáletov\nzaletované\nzaletovať\nzáletu\nzálety\nzalezený\nzaležať\nzáležať\nzaleží\nzáležistosť\nzaležitosť\nzáležitosťiach\nzáležitosť\nzaliatia\nzaliatie\nzaliatím\nzaliať\nzaliaty\nzalíciť\nzalícovať\nzaliečanie\nzaliečať\nzaliečavo\nzaliečavosť\nzaliečavý\nzaliehať\nzaliepanie\nzaliepať\nzalietané\nzalietanie\nzalietaním\nzalietať\nzalietava\nzalietavajú\nzalietavaní\nZalietavanie\nZalietavať\nzalievania\nzalievanie\nzalievaniu\nzalievaný\nzalievať\nzálievka\nzaliezať\nzaliezť\nzaligotať\nzalichotiť\nzalisovanie\nzalisovaný\nzálistok\nzalistovania\nzalistovanie\nZalistovaním\nzalistovaný\nzalistovať\nzalíškať\nzáliv\nzálivček\nzálive\nzaliznúť\nzalizovať\nzaločkať\nzáloha\nzáloh\nzálohovacíN\nzálohovane\nzálohovanie\nzálohovaný\nzálohovať\nzálohove\nzálohovo\nzálohový\nzalomáziť\nzalomcovať\nzalomenie\nzalomený\nzalomiteľný\nzalomiť\nzalomoz\nzalomozí\nzalomozia\nzalomoziac\nzalomozil\nzalomozila\nzalomozili\nzalomozilo\nzalomozím\nzalomozíme\nzalomozíš\nzalomoziť\nzalomozíte\nzalomozme\nzalomozte\nzalovením\nzaloviť\nzaloziť\nzaloženie\nZaloženo\nzaložený\nzaložiť\nzáložka\nzáložkový\nzáložkový\nzáložňa\nzáložnícky\nzáložníčka\nzáložník\nzáložný\nzáľuba\nzaľúbenec\nzaľúbene\nzaľúbenie\nzaľúbeno\nzaľúbenosť\nzaľúbený\nzaľúbiť\nzaľubovali\nzáludne\nzaľudnenia\nzaľudnenie\nZaľudnenosť\nzaľudnenosti\nzaľudnený\nzaľudni\nzaľudnime\nzaľudnite\nzaľudniť\nzáludnosť\nzaľudňovať\nzáludný\nzaluhá\nzaluhaj\nzaluhajme\nzaluhajte\nzaluhajú\nzaluhajúc\nzaluhám\nzaluháme\nzaluháš\nzaluháte\nzaluhať\nzálusk\nzaluž\nZalužany\nzaluže\nzalužem\nzalužeme\nzalužeš\nzalužete\nZalužice\nZálužická\nZálužie\nzalužme\nzalužte\nzalužú\nzalužúc\nzalykať\nzalyžovať\nzám\nzamáčať\nzamáchala\nzamachliť\nzamak\nzamaká\nzamakaj\nzamakajme\nzamakajte\nzamakajú\nzamakajúc\nzamakal\nzamakala\nzamakali\nzamakalo\nzamakám\nzamakáme\nzamakáš\nzamakať\nzamakáte\nzamáličko\nzamálo\nzamaľovať\nzamanúť\nzamar\nzamariť\nzamárniť\nZamarovský\nzamarte\nzamaskovania\nzamaskovanie\nzamaskovaný\nzamaskovať\nzamaskovaťzamaskúvať\nzamaskuj\nzamaskuje\nzamaskujem\nzamaskujeme\nzamaskuješ\nzamaskujete\nzamaskujme\nzamaskujte\nzamaskujú\nzamaskujúc\nzamaskúvať\nzamastenec\nzamastenie\nzamastený\nzamasti\nzamastime\nzamastite\nzamastiť\nzamaškrtiť\nzamat\nzamatka\nzamatmi\nzamatovo\nzamatový\nzamávanie\nzamávaním\nzamávať\nzamazanec\nzamazanie\nzamazaný\nzamazať\nzamazávať\nzamba\nzambaigo\nZambia\nZambijčan\nzambijský\nzambo\nZambu\nzámček\nzamdlejú\nzamdlejúc\nzamdlenia\nzamdleniu\nzamdlieť\nzamdlievať\nzameč\nzamečať\nzamedzenie\nzamedzený\nzamedzi\nzamedziť\nzamedzovaní\nzamedzovania\nzamedzovanie\nzamedzovaniu\nzamedzovať\nzamedzujúci\nzamechriť\nzamékať\nzamekotať\nzámen\nzámena\nzamenením\nzamenený\nzameniteľne\nzameniteľnosť\nzameniteľný\nzameniť\nzámennosť\nzámenný\nzámeno\nZamer\nzámerami\nzamerane\nzameranie\nZameranosť\nzameraný\nzamerať\nzámer\nzamerená\nzamerené\nzamerení\nzamerenie\nzamerenom\nzameriavací\nzameriavač\nzameriavače\nzameriavačka\nzameriavaču\nzameriavaná\nzameriavané\nzameriavaní\nzameriavania\nzameriavanie\nzameriavaním\nzameriavanú\nzameriavať\nzamerikanizoval\nzamerikanizovaný\nzameril\nzámerne\nzámernosť\nzámerný\nzamestnancov\nzamestnane\nzamestnanec\nzamestnanecky\nzamestnanecký\nzamestnanectva\nzamestnanie\nzamestnankyňa\nzamestnanosť\nzamestnanosťN\nzamestnaný\nzamestnať\nzamestnávajúci\nzamestnávanie\nzamestnávaný\nzamestnávateľ\nzamestnávateľka\nzamestnávateľových\nzamestnávateľský\nzamestnávať\nzameškanie\nzameškaný\nzameškať\nzameškávať\nzámet\nzametacej\nzametací\nzametacie\nzametacieho\nzametacích\nzametaciu\nzametacou\nzametač\nzametačka\nzametania\nzametanie\nzametaním\nzametaniu\nzametaný\nzametať\nzametenie\nzametením\nzametený\nzamiakárstvo\nzamieňania\nzamieňanie\nzamieňaním\nZamieňaniu\nzamieňaný\nzamieňať\nzamieňavo\nzamieňavým\nzámienka\nzamierať\nzamierenie\nzamierením\nzamierený\nzamieriť\nzamiesený\nzamiesiť\nzamiesť\nzamiešanie\nzamiešaním\nzamiešaný\nzamiešať\nzamiešavať\nzamietané\nzamietaní\nzamietania\nzamietaním\nzamietať\nzamietavo\nzamietavý\nzamietnutia\nzamietnutiach\nzamietnutie\nzamietnutím\nzamietnutiu\nzamietnuť\nzamietnutý\nzamihať\nzamihotať\nzámik\nzamilovane\nzamilovanie\nzamilovanosť\nzamilovaný\nzamilovať\nzamínoval\nzamínovala\nzamínovali\nzamínovaný\nzamínovať\nzamixovať\nzámka\nzamknutie\nzamknúť\nzamknutý\nzamkýnať\nzamlada\nzamladi\nzamľaskanie\nzamľaskať\nzamlč\nzamlčania\nzamlčanie\nzamlčaním\nzamlčaniu\nzamlčaný\nzamlčať\nzamlčiavané\nzamlčiavanie\nzamlčiavaním\nzamlčiavať\nzamlčovaná\nzamlčované\nzamlčovaní\nzamlčovania\nzamlčovanie\nZamlčovaním\nzamlčovaniu\nzamlčovaných\nzamlčovať\nzamliaskať\nzámlk\nzámlka\nzamĺkly\nzamĺknuto\nzamĺknutosť\nzamĺknuť\nzamĺknutý\nzamňauč\nzamňaučať\nzamňauči\nzamňaučime\nzamňaučite\nzamňaukať\nzámocký\nzámoček\nzamočený\nzamočiť\nzámočka\nzámočkami\nzámočkoch\nzámočkom\nzámočkov\nzámočku\nzámočky\nzámočnícky\nzámočníctvach\nzámočníctvam\nzámočníctvo\nzámočníčka\nzámočník\nzamokať\nzamoknúť\nzamoknutý\nzámok\nzamokra\nzamokrenia\nzamokrenie\nzamokrením\nzamokrenosť\nzamokrený\nzamokri\nzamokrí\nzamokria\nzamokriac\nzamokril\nzamokrila\nzamokrili\nzamokrilo\nzamokrím\nzamokrime\nzamokríme\nzamokríš\nzamokriť\nzamokrite\nzamokríte\nzamontovaný\nzamontovať\nzamontúvať\nzamor\nzamordovať\nzamorenia\nzamorenie\nzamorením\nzamoreniu\nzamorený\nzámorie\nzamoriť\nzamorovania\nzamorovanie\nzamorovať\nzámorský\nzamorte\nzamorujúci\nZámostí\nzámostia\nZámostie\nzamosúrene\nzamosúreno\nzamosúrenosť\nzamosúrený\nzamosúriť\nzamotania\nzamotanie\nzamotaniu\nzamotaný\nzamotať\nzamotávanie\nzamotávaný\nzamotávať\nzamotkať\nzámotkový\nzámotok\nzámožne\nzámožnosť\nzámožný\nzamračene\nzamračenie\nzamračeno\nzamračenosť\nzamračený\nzamračiť\nzamraštiť\nzamrauč\nzamraučať\nzamrauči\nzamraučime\nzamraučite\nzamravč\nzamravčať\nzamravči\nzamravčime\nzamravčite\nzamrazenie\nzamrazený\nzamraziť\nzamrazovanie\nzamrazovať\nzamrežovanie\nzamrežovaním\nzamrežovaný\nzamrežovať\nzamrieť\nzamrkať\nzamrknúť\nzamrmlanie\nzamrmlať\nzamrnč\nzamrnčať\nzamrnči\nzamrnčime\nzamrnčite\nzamrnkať\nzamŕštiť\nzamrúc\nzamrviť\nzamrz\nzamŕzanie\nzamŕzaním\nzamŕzaniu\nzamŕzať\nzamrzieť\nzamrznutie\nzamrznúť\nzamrznutý\nZámsky\nzamučať\nzamúčený\nzamúčiť\nzamumlať\nzamurovanie\nzamurovaný\nzamurovať\nzamútený\nzamútiť\nZámutov\nZámutova\nZámutove\nzámutovský\nzamykacej\nzamykací\nzamykacie\nzamykanie\nzamykateľné\nzamykateľným\nzamykať\nzámysel\nzámyslami\nzamyslene\nzamyslenie\nzamyslenosť\nzamyslený\nzamyslieť\nzámyslom\nzámysly\nzamýšľanie\nzamýšľaný\nzamýšľať\nzamýšľavý\nzaň\nzanadávať\nzáňadrie\nzanalyzoval\nzanalyzovala\nzanalyzovali\nzanalyzovalo\nzanalyzovania\nzanalyzovaný\nzanalyzovať\nzanalyzuje\nzanalyzujem\nzanalyzujeme\nzanalyzujete\nzanalyzujú\nzanárať\nzanariekať\nzanášané\nzanášaní\nzanášania\nzanášanie\nzanášaniu\nzanášaným\nzanášať\nzanečistiť\nzanedbane\nzanedbanie\nzanedbano\nzanedbanosť\nzanedbaný\nzanedbateľne\nzanedbateľnosť\nzanedbateľný\nzanedbať\nzanedbávajúci\nzanedbávanejšíF\nzanedbávania\nzanedbávanie\nzanedbávaním\nzanedbávaniu\nzanedbávaný\nzanedbávať\nzanedlho\nzanechanie\nzanechaný\nzanechať\nzanechávajúcim\nzanechávanie\nzanechávať\nzanekľúdiť\nzanemená\nzanemieť\nzaneprázdnene\nzaneprázdnenie\nzaneprázdnenosť\nzaneprázdnený\nzaneprázdniť\nzaneprázdňovania\nzaneprázdňovať\nzanesenie\nzanesený\nzanešvárený\nzanešvári\nzanešvárila\nzanešvárime\nzanešváriť\nzanevrený\nzanevretia\nzanevretie\nzanevrieť\nzanevrúc\nzaňho\nzaniesť\nzanietenca\nzanietenci\nzanietencom\nzanietencov\nzanietenec\nzanietene\nzanietenie\nzanietenosť\nzanietený\nzanietiť\nzanikajúci\nzanikaní\nzanikania\nZanikanie\nzanikaním\nzanikaniu\nzanikať\nzánik\nzaniknutie\nzaniknúť\nzaniknutý\nzánikový\nzanitovať\nZánky\nzanor\nzanoriť\nzanorte\nzanosiť\nzanôtiť\nzanovit\nzanovite\nzanovito\nzanovitosť\nzanovitý\nzánovný\nzanožiť\nzaňuchať\nZanzibar\nZanzibarčan\nzanzibarský\nzaobalene\nzaobalenosť\nzaobalený\nzaobalí\nzaobalil\nzaobalíme\nzaobaliť\nzaobaľované\nzaobaľovať\nzaobaľuje\nzaobaľujú\nzaobedovať\nzaoberajúci\nzaoberanie\nzaoberaný\nzaoberať\nzaobchádzajúci\nzaobchádzané\nzaobchádzanie\nzaobchádzať\nzaobchodenia\nzaobchodiť\nzaobíduc\nzaobísť\nzaoblač\nzaoblačený\nzaoblačí\nzaoblačia\nzaoblačiac\nzaoblačil\nzaoblačila\nzaoblačili\nzaoblačilo\nzaoblačím\nzaoblačíme\nzaoblačíš\nzaoblačiť\nzaoblačíte\nzaoblačme\nzaoblačte\nzaoblene\nzaoblenia\nzaoblenie\nzaoblenosť\nzaoblený\nzaobliecť\nzaobliť\nzaobľovaní\nzaobľovania\nzaobľovanie\nzaobľovať\nzaobrátiť\nzaobstarania\nzaobstaranie\nzaobstaraním\nzaobstaraniu\nzaobstaraný\nzaobstarať\nzaobstarávané\nzaobstarávaného\nzaobstarávaní\nzaobstarávania\nzaobstarávanie\nzaobstarávaním\nzaobstarávaných\nzaobstarávať\nzaobši\nzaobšije\nzaobšijem\nzaobšijeme\nzaobšiješ\nzaobšijete\nzaobšijú\nzaobšijúc\nzaobšil\nzaobšila\nzaobšili\nzaobšilo\nzaobšime\nzaobšite\nzaobšiť\nzaobšívať\nzaobuť\nzaoceánsky\nzaoceliť\nzaočkované\nzaočkovaných\nZaočkovaný\nzaočkovať\nzaodetý\nzaodiať\nzaodiaty\nzaodieť\nzaodievať\nzaodŕhať\nzaochkať\nzaokrúhlene\nzaokrúhlenie\nzaokrúhlenina\nzaokrúhlenosť\nzaokrúhlený\nzaokrúhliť\nzaokrúhľovacie\nzaokrúhľovacích\nzaokrúhľovane\nzaokrúhľovanie\nzaokrúhľovaný\nzaokrúhľovať\nzaokrútiť\nzaokrúžľovať\nzaokryl\nzaokrytie\nzaolejované\nzaolejovanie\nzaolejovaných\nzaolejovať\nzaonačenia\nzaonačiť\nzaondi\nzaondiac\nzaondiať\nzaondieť\nzaondime\nzaondite\nzaopálať\nzaopatrenie\nzaopatrený\nzaopatriť\nzaopatrovací\nzaopatrovaný\nzaopatrovať\nzaorané\nZaoranie\nzaoraním\nzaoraniu\nzaoraných\nzaorať\nzaorávať\nzáosok\nzaosŕkať\nzaostalec\nzaostalejšej\nzaostalejší\nzaostalejšia\nzaostalejšie\nzaostalejšieho\nzaostalejšiemu\nzaostalejších\nzaostalejším\nzaostalejšími\nzaostalejšiu\nzaostalejšom\nzaostalejšou\nzaostalosť\nzaostalý\nzaostať\nZaostávajúca\nzaostávajúce\nzaostávajúceho\nzaostávajúcej\nzaostávajúcemu\nzaostávajúci\nzaostávajúcich\nzaostávajúcim\nzaostávajúcimi\nzaostávajúcom\nzaostávajúcou\nzaostávajúcu\nzaostávanie\nzaostávať\nzaostrenie\nzaostrený\nzaostriť\nzaostrovane\nzaostrovania\nzaostrovanie\nzaostrovaním\nzaostrovaný\nzaostrovať\nZAP\nzáp\nzapáckať\nzápač\nzapáčeniu\nzapáčiť\nzapadajúci\nzapadák\nzapadákov\nzapadanie\nzapadať\nzapadávať\nzápad\nzápadky\nzapadlí\nzápadne\nzápadniar\nzápadniarka\nzápadniarsky\nzápadníctvo\nzápadno\nzapadnutie\nzapadnúť\nzapadnutý\nzápadný\nzápadoafr\nzápadoafrický\nzápadoázij\nzápadoberlínska\nzápadoberlínskej\nzápadočeského\nzápadočeskom\nzápadočeských\nzápadočeským\nZápadočeský\nzápadoeur\nzápadoeuróp\nzápadoeurópsky\nzápadogerm\nzápadoind\nzápadonemecký\nZápadoslovák\nZápadoslovákov\nzápadoslovanský\nzápadoslovenský\nzapáchajúci\nzapáchanie\nzapáchať\nzápach\nzapájanie\nzapájaný\nzapájať\nzapäl\nzapäla\nzápal\nzápalčivý\nzapálene\nzapálenec\nzapálenie\nzapálenosť\nzapálený\nzapäli\nzápalisto\nzápalistosť\nzápalistý\nzapáliť\nzápalkáreň\nzápalkárňach\nzápalkárňam\nzápalkársky\nzápalkárstvach\nzápalkárstvam\nzápalkárstvo\nzápalka\nzápalkový\nzápalmi\nzápalne\nzápalníc\nzápalnica\nzápalnice\nzápalnicu\nzápalnosť\nzápalný\nzapälo\nzapaľovací\nzapaľovač\nzapaľovadlo\nzapaľovane\nzapaľovanie\nzapaľovaný\nzapaľovať\nzápalový\nzapamätanie\nzapamätanieN\nzapamätaný\nzapamätateľnosť\nzapamätateľný\nzapamätať\nzapamätáva\nzapamätávaj\nzapamätávajme\nzapamätávajte\nzapamätávajú\nzapamätávajúc\nzapamätával\nzapamätávala\nzapamätávali\nzapamätávalo\nzapamätávam\nzapamätávame\nzapamätávaš\nzapamätávať\nzapamätávate\nzapamätúva\nzapamätúvaj\nzapamätúvajme\nzapamätúvajte\nzapamätúvajú\nzapamätúvajúc\nzapamätúval\nzapamätúvala\nzapamätúvali\nzapamätúvalo\nzapamätúvam\nzapamätúvame\nzapamätúvaš\nzapamätúvať\nzapamätúvate\nzapantať\nzapapkať\nzapaprať\nzapar\nzápar\nzapára\nzápara\nzapárač\nzapáraj\nzapárajme\nzapárajte\nzapárajú\nzapárajúc\nzapáral\nzapárala\nzapárali\nzapáralo\nzapáram\nzapárame\nzapáraš\nzapárať\nzapárate\nzapáravý\nzaparenie\nzapariť\nzaparkovania\nzaparkovanie\nzaparkovaný\nzaparkovať\nzaparovací\nzaparovanie\nzaparovať\nzaparte\nzapásaný\nzapásať\nzápas\nzápasenie\nzápasiaca\nzápasiace\nzápasiaceho\nzápasiacej\nzápasiaci\nzápasiacich\nzápasiacim\nzápasiacimi\nzápasiacom\nzápasiacu\nzápasísk\nzápasisko\nzápasiť\nzápasnícky\nzápasník\nzapasovať\nzápasový\nzápästie\nzápästný\nzapášťať\nzapať\nzápäť\nzapätí\nzápätí\nzapätiť\nzapatrošený\nzapatrošiť\nzapäť\nzapaženie\nzapažený\nzapažiť\nzapažovať\nzápecnícky\nzápecníctvach\nzápecníctvam\nzápecníctvo\nzápecník\nzapečatenie\nzapečatený\nzapečatiť\nzapečaťovať\nzapečené\nzápeka\nzapekačka\nzapekačkový\nzapekané\nzapekanej\nzapekanie\nzapekať\nzapelešiť\nzapeniť\nzaperený\nzaperiť\nzaperliť\nzápch\nzapchanú\nzapchať\nzapchatie\nzapchatý\nzapchávanie\nzapchávaniu\nzapchávať\nzápcha\nzápchový\nzapí\nzapiecť\nzapieranie\nzapierať\nzapieskovať\nzapicháva\nzapichávaj\nzapichávajme\nzapichávajte\nzapichávajú\nzapichávajúc\nzapichával\nzapichávala\nzapichávali\nzapichávalo\nzapichávam\nzapichávame\nzapichávaš\nzapichávať\nzapichávate\nzapichnutie\nzapichnúť\nzapichnutý\nzapichovaní\nzapichovanie\nzapichovať\nzápichovým\nzapíjané\nzapíjanie\nzapíjať\nzapikovať\nzapínací\nzapínač\nzapínadlo\nzapínanie\nzapínaný\nzapínateľný\nzapínať\nzápinka\nzapípať\nzapípnuť\nzapísanieN\nzapísaný\nzapísať\nzápis\nzapískanieN\nzapískaný\nzapískať\nzapiskla\nzapiskli\nzapisklo\nzapiskne\nzapisknem\nzapiskneme\nzapiskneš\nzapisknete\nzapiskni\nzapisknime\nzapisknite\nzapisknú\nzapisknúc\nzapisknúť\nzapísknuť\nzápiskoch\nzapiskol\nzápiskom\nzápiskov\nzápiskový\nzápiskový\nzápisky\nzápisné\nzápisnica\nzápisníček\nzápisníčka\nzápisníčkami\nzápisníčkoch\nzápisníčkom\nzápisníčkov\nzápisníčku\nzápisníčky\nzápisničná\nzápisnične\nzápisničné\nzápisničnom\nzápisník\nzápisníkový\nzápisný\nzapisovací\nzapisovač\nzapisovača\nzapisovači\nzapisovačmi\nzapisovačov\nzapisovanie\nzapisovaný\nzapisovateľ\nzapisovateľka\nzapisovateľný\nzapisovateľský\nzapisovať\nzápisový\nzapisujúci\nzapišť\nzapišťanie\nzapišťať\nzapišťme\nzapišťte\nzapíšu\nzapíšuc\nzapitá\nzapitie\nzapiť\nzapiť\nzaplačú\nzaplačúc\nzaplakanie\nzaplakať\nzaplánované\nzaplánovanie\nzaplánovať\nzaplašiť\nzáplat\nzaplátania\nzaplátanie\nzaplátaním\nzaplátaniu\nzaplátaný\nzaplátať\nzaplátavanie\nzáplata\nzaplatenieN\nzaplatený\nzaplatiteľný\nzaplatiť\nzáplatka\nzáplav\nzaplávať\nzáplava\nzaplavenia\nzaplavenie\nzaplavením\nzaplaveniu\nzaplavený\nzaplaviť\nzaplavovania\nzaplavovanie\nzaplavovaný\nzaplavovať\nzáplavový\nzaplavujúca\nzaplavujúcej\nzaplesať\nzaplesknúť\nzaplesnieť\nzaplesnivieť\nzaplesnúť\nzaplešti\nzapleštime\nzapleštite\nzapleštiť\nzapletať\nzapletáva\nzapletávajú\nzapletenia\nzapletenie\nzapletením\nzapleteniu\nzapletený\nzápletka\nzaplienené\nzaplieneného\nzaplieniť\nzaplieňovať\nzaplieskať\nzapliesť\nzaplietanie\nzaplietať\nzaplietava\nzapĺňanie\nzapĺňaním\nzapĺňaný\nzapĺňať\nzaplnenie\nzaplnený\nzaplniť\nzaplňovaná\nzaplňovaní\nzaplňovaniu\nzaplňovať\nzaplňujúci\nzaplodiť\nzaplombovania\nzaplombovanie\nzaplombovaný\nzaplombovať\nzapľuhavený\nzapľuť\nzapľuvať\nzapnutie\nzapnúť\nzapnutý\nzapočatie\nzapočať\nzapočatý\nzápočet\nzapočína\nzapočínaj\nzapočínajme\nzapočínajte\nzapočínajú\nzapočínajúc\nzapočínal\nzapočínala\nzapočínali\nzapočínalo\nzapočínam\nzapočíname\nzapočínaš\nzapočínať\nzapočínate\nzapočítanie\nzapočítaný\nzapočítateľnosť\nzapočítateľný\nzapočítať\nzapočítava\nzapočítavam\nzapočítavame\nzapočítavania\nzapočítavanie\nzapočítavaním\nzapočítavaniu\nzapočítavaný\nzapočítavaš\nzapočítavate\nzapočítavať\nzápočtový\nzapočujú\nzapočul\nzapočuť\nzapočúvanie\nzapočúvať\nzapodievať\nzapochybovanie\nzapochybovať\nzapojene\nzapojenie\nzapojeno\nzapojený\nzapojiť\nzapojovací\nzapojoval\nzapojovali\nzapojované\nzapojovaní\nzapojovania\nzapojovanie\nzapojovať\nzapojuje\nzapojujeme\nzápol\nzápoľa\nzapolárne\nzapolárnom\nzápolenie\nzápolie\nzápoliť\nzapolitizovať\nzapoľoval\nzapoľovala\nzapoľovali\nzapoľovalo\nzapoľovať\nzapoľuj\nzapoľuje\nzapoľujem\nzapoľujeme\nzapoľuješ\nzapoľujete\nzapoľujme\nzapoľujte\nzapoľujú\nzapoľujúc\nzápona\nzápor\nzáporka\nzáporne\nzápornosť\nzáporný\nzáporový\nzáporožský\nzapôsob\nzapôsobení\nzapôsobenie\nzapôsobením\nzapôsobí\nzapôsobia\nzapôsobiac\nzapôsobil\nzapôsobila\nzapôsobili\nzapôsobilo\nzapôsobím\nzapôsobíme\nzapôsobíš\nzapôsobiť\nzapôsobíte\nzapôsobme\nzapôsobte\nzapotáca\nzapotácaj\nzapotácal\nzapotácam\nzapotácanie\nzapotácaš\nzapotácať\nzapotácate\nzapotenie\nzapotiť\nzápotočie\nzapotreby\nzapotrošený\nzapotrošiť\nzapovedajú\nzapovedaný\nzapovedať\nzapovrhnúť\nzapozdiť\nzapozeranom\nzapozerať\nzapožičania\nzapožičanie\nzapožičaním\nzapožičaniu\nzapožičaný\nzapožičať\nzapožičiavajú\nzapracovania\nzapracovanie\nzapracovaním\nzapracovaniu\nzapracovanosť\nzapracovaný\nzapracovať\nzapracovávania\nzapracovávanie\nzapracovávaný\nzapracovávať\nzapracúvaní\nzapracúvania\nzapracúvanie\nzapracúvaných\nzapracúvať\nzapradú\nzáprah\nzáprahový\nzaprasený\nzaprasiť\nzapraskať\nzapraskať\nzapráskať\nzaprášenie\nzaprášený\nzaprášiť\nzaprašivený\nzaprašovalo\nzaprašovanie\nzaprašovať\nzaprašť\nzaprašťať\nzaprašťme\nzaprašťte\nzapratajúc\nzapratanie\nzaprataný\nzapratať\nzapratávať\nzaprať\nzáprav\nzaprávaný\nzaprávať\nzáprava\nzapravdiť\nzapravenia\nzapravenie\nzapravený\nzapraviť\nzapravuje\nzaprážať\nzapražený\nzapražiť\nzápražka\nzáprdkový\nzáprdok\nzapreberať\nzapredanec\nzapredanecký\nzapredanie\nzapredaný\nzapredať\nzapredávaní\nzapredávať\nzapremýšľať\nzaprením\nzapretie\nzapretovať\nzapretý\nzapriahať\nzapriahnutie\nzapriahnuť\nzapriahnutý\nzapriasť\nzapriať\nzapríčinenia\nzapríčinením\nzapríčinený\nzapríčiniť\nzapríčiňovať\nzapriečiť\nzaprieť\nzaprisahajúci\nzaprisahaný\nzaprisahať\nzaprisahávať\nzaprískať\nzaprizerať\nzapŕliť\nzaprojektovať\nzaprorokovali\nzaprorokovať\nzaprosiť\nzaprotestovať\nzaprotokolovanie\nzaprotokolovaný\nzaprotokolovať\nzaprplaný\nzáprsie\nzaprskať\nzaprskať\nzáprstie\nzáprstný\nzapršala\nzapršali\nzapršalo\nzapršať\nzaprší\nzaprúc\nzapuč\nzapučať\nzapučiť\nzapudenú\nzapudiť\nzapudrovať\nzapudzovať\nzapufkať\nzapuchanie\nzapúchanie\nzapúchať\nzapuchnúť\nzapukať\nzapukotať\nzapustenie\nzapustením\nzapustený\nzapusti\nzapustime\nzapustite\nzapustiť\nzápustka\nzápustkovo\nzápustkový\nzapustne\nzapustnúť\nzapustnutý\nzápustný\nzapúšťaný\nzapúšťať\nzapúšťať\nzaputnať\nzapuzdrenie\nzapuzdrený\nzapuzdriť\nzápyr\nzapýrený\nzapýriť\nzapýtať\nzar\nzarábajúci\nzarábaní\nzarábania\nzarábanie\nzarábaním\nzarábaniu\nzarábanú\nzarábaných\nzarábanými\nzarábať\nzarác\nzaráce\nzarácem\nzaráceme\nzaráceš\nzarácete\nzarácme\nzarácte\nzarácu\nzarácuc\nzaráčiť\nzaradene\nzaradenie\nzaradený\nzaradiť\nzaradom\nzaraďovací\nzaraďovacie\nzaraďovacích\nzaraďovačov\nzaraďovanie\nzaraďovaný\nzaradovať\nzaraďovať\nZaragoza\nZaragoze\nzaragozskej\nZaragozy\nzarachotanie\nzarachotať\nzarachotenie\nzarachotiť\nzarámcovanie\nzarámovanie\nzarámovaný\nzarámovať\nzaránky\nzaranžovanie\nzaranžovaním\nzaranžovaný\nzaranžovať\nzarapčať\nzarapči\nzarapčime\nzarapčite\nzarapkať\nzarapotať\nzarastania\nzarastať\nzárast\nzarastený\nzarasti\nzarastime\nzarastite\nzarásť\nzarátania\nzarátanie\nzarátaním\nzarátaniu\nzarátaný\nzarátať\nzaratovať\nzaratúvania\nzaratúvanie\nzaratúvaním\nzaratúvaniu\nzaratúvaný\nzaratúvať\nzáraz\nzarazene\nzarazenia\nzarazenie\nzarazeno\nzarazenosť\nzarazený\nzaraziť\nzarážajúci\nzarážať\nzáražec\nzarážka\nzarbyniť\nzareagované\nzareagovanie\nzareagovať\nzarecitovať\nzárečie\nzarečniť\nzaregistrovanie\nzaregistrovaný\nzaregistrovať\nzarehce\nzarehliť\nzarehni\nzarehnime\nzarehnite\nzarehniť\nzarehotať\nzareptať\nzaretušoval\nzaretušovala\nzaretušovali\nzaretušovalo\nzaretušovať\nzaretušuj\nzaretušuje\nzaretušujem\nzaretušujeme\nzaretušuješ\nzaretušujete\nzaretušujme\nzaretušujte\nzaretušujú\nzaretušujúc\nzarev\nzarevanie\nzarevať\nzarevme\nzarevte\nzarezanie\nzarezaný\nzarezať\nzarezávajúca\nzarezávať\nzárez\nzarezonoval\nzarezonovala\nzarezonovali\nzarezonovalo\nzarezonovať\nzarezonuj\nzarezonuje\nzarezonujem\nzarezonujeme\nzarezonuješ\nzarezonujete\nzarezonujme\nzarezonujte\nzarezonujú\nzarezonujúc\nzárezový\nzárežec\nzariad\nzariadene\nzariadenie\nzariadený\nzariadiť\nzariaďovacie\nzariaďovacích\nzariaďovacími\nzariaďovania\nzariaďovanie\nzariaďovaním\nzariaďovaniu\nzariaďovaný\nzariaďovať\nzarias\nzariecť\nzáriečie\nzariekací\nzariekadlo\nzariekanie\nzariekať\nzariekavať\nzarieknuté\nzarieknutím\nzarieknuť\nzarigľovať\nzarinč\nzarinčanie\nzarinčať\nzarinči\nzarinčime\nzarinčite\nzarmucovať\nzarmucujúce\nzarmucujúci\nzarmútene\nzarmúteno\nzarmútenosť\nzarmútený\nzarmútiť\nzármutok\nzárobček\nzarobenia\nzarobenie\nzarobeniu\nzarobený\nzarobiť\nzárobkove\nzárobkovo\nzárobkový\nzárobok\nzarodiť\nzárodkový\nzárodočný\nzárodok\nzarojčiť\nzaroniť\nzarosený\nzarosiť\nzároveň\nzarovnane\nzarovnanie\nzarovnaný\nzarovnať\nzarovnávanie\nzarovnávať\nzarovno\nzarozprávať\nzarúb\nzáruba\nzarúbaná\nzarúbanej\nzarúbanejšia\nzarúbanou\nzarúbanú\nzarúbať\nzarúbavate\nzárub\nzarúbiť\nzárubňa\nzárubní\nzárubňový\nzarubnúť\nzárubou\nzarúcať\nzaručať\nzaručene\nzaručenia\nzaručeniam\nzaručenie\nzaručením\nzaručeniu\nzaručeno\nzaručenosť\nzaručený\nzaručiť\nzáručne\nzáručno\nzáručný\nzaručovaná\nzaručované\nzaručovaného\nzaručovaní\nzaručovania\nZaručovanie\nzaručovanú\nzaručovaných\nzaručovať\nzáruk\nzáruka\nzarumenený\nzarumeniť\nzarummeniť\nzarútiť\nzáružlie\nzarýávať\nzarybnenie\nzarybni\nzarybnime\nzarybnite\nzarybniť\nzarybňovania\nzarybňovanie\nzarybňovať\nzaryč\nzaryčať\nzarýpaný\nzarýpať\nzarypnúť\nzaryte\nzarytie\nzaryto\nzarytosť\nzaryť\nzarytý\nzarývať\nzarzuela\nzas\nzasa\nzásad\nzasadací\nzasadačka\nzasadanie\nzasadať\nzásada\nzasadenie\nzasadený\nzasadiť\nzásadito\nzásaditosť\nzásaditý\nzásadne\nzásadnosť\nzasadnutá\nzasadnuté\nzasadnutie\nzasadnúť\nzásadný\nzásadovo\nzásadovosť\nzásadový\nzasadrovanie\nzasadrovať\nzasadzované\nzasadzovania\nzasadzovanie\nzasadzovať\nzásah\nzasahovane\nzasahovanie\nzasahovaný\nzasahovať\nzásahový\nzasahujúci\nzasáľať\nzasalutovať\nzase\nzaseď\nzasedieť\nzasekané\nzasekať\nzasekávania\nzasekávanie\nzasekávať\nzásek\nzasekeril\nzasekeriť\nzaseknutie\nzaseknutiu\nzaseknúť\nzaseknutý\nzasemotiť\nzaschnúť\nzaschnutý\nzaschýnať\nzasiahnutie\nzasiahnuť\nzasiahnutý\nzasiaknuť\nzasiata\nzasiate\nzasiateho\nzasiatej\nzasiati\nzasiatia\nzasiatie\nzasiatím\nzasiatiu\nzasiatou\nzasiatu\nzasiať\nzasiaty\nzasiatych\nzasídliť\nzasielacie\nzasielacích\nzasielania\nzasielanie\nzasielaním\nzasielaniu\nzasielaný\nzasielateľ\nzasielateľka\nzasielateľský\nzasielateľstvo\nzasielať\nzásielkách\nzásielka\nzásielkový\nzasieťoval\nzasieťovanie\nzasieťovaním\nzasieťovaniu\nzasieťovaný\nzasieťovať\nzasievanie\nzasievať\nzasilážujú\nzasinenia\nzasinenie\nzasinený\nzasip\nzasipeiť\nzasipí\nzasipia\nzasipiac\nzasipieť\nzasipím\nzasipíme\nzasipíš\nzasipíte\nzasipme\nzasipte\nzasírenie\nzasíriť\nzaskakovať\nzasklenie\nzasklený\nzasklepiť\nzasklievaní\nzasklievať\nzaskliť\nzaskočenia\nzaskočenie\nzaskočený\nzaskočiť\nzáskok\nzáskokom\nzáskoku\nzáskoky\nzaskrutkovaná\nzaskrutkovanie\nzaskrutkovať\nzaskuč\nzaskučať\nzaskuvíňať\nzaskvieť\nzasladiť\nzaslania\nzaslanie\nzaslaním\nzaslaniu\nzaslaný\nzaslať\nzaslepene\nzaslepenec\nZaslepenie\nzaslepenosť\nzaslepený\nzaslepiť\nzaslepovať\nzasliniť\nzaslintať\nzaslobodna\nzasľúbenie\nzasľúbený\nzasľúbiť\nzásľuby\nzaslučkovaná\nzaslučkovať\nzásluh\nzásluha\nzasluhovať\nzásluhovosť\nzasluhujúci\nzaslúchnuť\nzaslúžene\nzaslúženia\nzaslúženie\nzaslúžený\nzaslúžilejšej\nzaslúžilejší\nzaslúžilejšia\nzaslúžilejšie\nzaslúžilejšieho\nzaslúžilejšiemu\nzaslúžilejších\nzaslúžilejším\nzaslúžilejšími\nzaslúžilejšiu\nzaslúžilejšom\nzaslúžilejšou\nzaslúžilosť\nzaslúžilý\nzaslúžiť\nzáslužne\nzáslužnosť\nzáslužný\nzaslzený\nzaslzieť\nzaslziť\nzasmážať\nzasmažiť\nzásmažka\nzasmetený\nzasmetiť\nzasmiatie\nzasmiať\nzasmoklený\nzasmolený\nzasmoliť\nzasmradiť\nzasmradnúť\nzasmradnuté\nzasmrádzať\nzasmrď\nzasmrdieť\nzasmrkať\nzasmudiť\nzasmušilejší\nzasmušiť\nzasmútiť\nzasnene\nzasneno\nzasnenosť\nzasnený\nzasnež\nzasneženia\nzasneženie\nzasnežený\nzasneží\nzasnežia\nzasnežiac\nzasnežil\nzasnežila\nzasnežili\nzasnežilo\nzasnežím\nzasnežíme\nzasnežíš\nzasnežiť\nzasnežíte\nzasnežme\nzasnežoval\nzasnežovala\nzasnežovali\nzasnežovalo\nzasnežovať\nzasnežte\nzasnežuj\nzasnežuje\nzasnežujem\nzasnežujeme\nzasnežuješ\nzasnežujete\nzasnežujme\nzasnežujte\nzasnežujú\nzasnežujúc\nzasni\nzasní\nzasnia\nzasniac\nzasnil\nzasnila\nzasnili\nzasnilo\nzasním\nzasnime\nzasníme\nzasníš\nzasniť\nzasnite\nzasníte\nzasnívane\nzasnívano\nzasnívanosť\nzasnívaný\nzasnívať\nzasnovať\nzásnub\nzásnubách\nzásnubám\nzásnubami\nzasnúbenie\nzasnúbený\nzasnúbiť\nzásnubný\nzasnubovať\nzásnuby\nzásobáreň\nzásobárňach\nzásobárňam\nzásoba\nzásobenia\nzásobenie\nzásobeniu\nzásobený\nzásobiť\nzásobnica\nzásobnicový\nzásobník\nzásobníkový\nzásobný\nzásobovací\nzásobovač\nzásobovačka\nzásobovanie\nzásobovaný\nzásobovateľ\nzásobovateľka\nzásobovateľský\nzásobovať\nzasoliť\nzasoľovať\nzasopľaviť\nzasoplený\nzasopliť\nzasotený\nzaspájkoval\nzaspájkovala\nzaspájkovali\nzaspájkovalo\nzaspájkovať\nzaspájkuj\nzaspájkuje\nzaspájkujem\nzaspájkujeme\nzaspájkuješ\nzaspájkujete\nzaspájkujme\nzaspájkujte\nzaspájkujú\nzaspájkujúc\nzaspaní\nzaspanie\nzaspaním\nzaspaných\nzaspätila\nzaspätím\nzaspätkovať\nzaspať\nzaspatý\nzaspávanie\nzaspávaním\nzaspávať\nzaspi\nzaspievanej\nzaspievaní\nzaspievanou\nzaspievať\nzaspime\nzaspite\nzaspomínať\nzasprostiť\nzasrala\nzasrali\nzasran\nzasratím\nzasrienený\nzasŕkať\nzast\nzástana\nzástanca\nzastania\nzastanie\nzástankyňa\nzastar\nzastaralejšej\nzastaralejšia\nZastaralejšie\nzastaralejšieho\nzastaralejších\nzastaralejšom\nzastaralý\nzastarania\nzastaranie\nzastaraním\nzastaraniu\nzastarano\nzastaranosť\nzastaraný\nzastarať\nzastaráv\nzastarávaní\nzastarávania\nzastarávanie\nzastarávaniu\nzastarávať\nzastarej\nzastarejme\nzastarejte\nzastarejú\nzastarejúc\nzastarenie\nzastarieť\nzastatím\nzastať\nzastavania\nzastávania\nzastavanie\nzastávanie\nzastavaním\nzastavaniu\nzastavaný\nzastávaný\nzastavať\nzastávať\nzástava\nzástavba\nzastavene\nzastavenieN\nzastaveno\nzastavený\nzastaviť\nzastávka\nzástavka\nzástavníčka\nzástavník\nzástavok\nzástavom\nzastavovací\nzastavovacia\nzastavovacie\nzastavovacieho\nzastavovacích\nzastavovaciu\nzastavovacou\nzastavovač\nzastavovania\nzastavovanie\nzastavovaním\nzastavovaniu\nzastavovaný\nzastavovať\nzástavový\nzasteľ\nzasteň\nzásten\nzastenať\nzástena\nzastene\nzastenem\nzasteneme\nzasteneš\nzastenete\nzasteňme\nzasteňte\nzastenú\nzastenúc\nzáster\nzástera\nzásterka\nzásterôčka\nzásterovinu\nzásterový\nzastielať\nzástien\nzastierací\nzastieracie\nzastieracích\nzastieracím\nzastieracími\nzastieracom\nzastieracou\nzastierania\nzastieranie\nzastieraním\nzastieraniu\nzastieraný\nzastierať\nzástierka\nzástierkou\nzástierku\nzástierky\nzastihnuteľný\nzastihnutiu\nzastihnúť\nzastihnutý\nzastlať\nzástoj\nzastoknutím\nzastoknúť\nzastoň\nzastonanie\nzastonať\nzastone\nzastonem\nzastoneme\nzastoneš\nzastonete\nzastoňme\nzastoňte\nzastonú\nzastonúc\nzastrábiť\nzastrájaní\nzastrájaním\nzastrájať\nZástraní\nZástranie\nzastrašene\nzastrašenia\nzastrašenie\nzastrašením\nzastrašeniu\nzastrašenosť\nzastrašený\nzastrašiť\nzastrašovací\nzastrašovane\nzastrašovania\nzastrašovanie\nzastrašovaním\nzastrašovaniu\nzastrašovaný\nzastrašovať\nzastrčenia\nzastrčenie\nzastrčenosť\nzastrčený\nzastrčiť\nzástrčka\nzástrčkový\nzastrčnosť\nzastrebnúť\nzástrel\nzastrelenia\nzastrelenie\nzastrelením\nzastreleniu\nzastrelený\nzastreliť\nzastreľovaní\nzastreľovaním\nzastreľovať\nzastrene\nzastrený\nzastrešenie\nzastrešený\nzástrešie\nzastrešiť\nzastrešovaná\nzastrešované\nzastrešovaného\nzastrešovanej\nzastrešovaní\nzastrešovania\nzastrešovanie\nzastrešovaním\nzastrešovanou\nzastrešovaných\nzastrešovanými\nzastrešovať\nzastretia\nzastretie\nzastreto\nzastretý\nzastriekania\nzastriekať\nzastrieľať\nzastrieť\nzastrihať\nzastrihávať\nzastrihnúť\nzastrihnutý\nzastrihovať\nzastrká\nzastrkávať\nzastrknúť\nzastrkovať\nzastropovaní\nzastrúc\nzastrúhať\nzastruhávať\nzástup\nzástupca\nzástupcova\nzástupcovo\nzástupcovský\nzastúpene\nzastúpenie\nzastúpený\nzastupiteľnosť\nzastupiteľný\nzastupiteľský\nzastupiteľstvo\nzastúpiť\nzástupkyňa\nzástupne\nzástupnosť\nzástupný\nzastupovanie\nzastupovaný\nzastupovať\nzástupový\nzastupujúci\nzasuň\nzasunie\nzasuniem\nzasunieme\nzasunieš\nzasuniete\nzasuňme\nzasunovací\nzasunovať\nzasuňte\nzasunul\nzasunula\nzasunuli\nzasunulo\nzasunutie\nzasunuto\nzasunúť\nzasunutý\nzasupený\nZasurmili\nzasurmiť\nzasurmovať\nzasuš\nzasúšala\nzasúšali\nzasušený\nzasúťaženia\nzasúvací\nzasúvač\nzasúvadlo\nzasúvaní\nzasúvania\nzasúvanie\nzasúvaním\nzasúvať\nzásuvka\nzásuvkový\nzásuvný\nzasväcovaní\nzasväcovať\nzasvätene\nzasvätenec\nzasvätenie\nzasvätenosť\nzasvätený\nzasvätiť\nzasvetľovanie\nzasvetľovať\nzásvetný\nzasvietený\nzasvietiť\nzasvinené\nzasviniť\nzasvišť\nzasvišťanie\nzasvišťať\nzasvišťme\nzasvišťte\nzásvit\nzásvitmi\nzasvitnúť\nzasvrb\nzasvrbieť\nzasycovaný\nzasycovať\nzasyč\nzasyčanie\nzasyčať\nzasychaní\nzasychanie\nzasýchanie\nzasychať\nzasychávať\nzasyknúť\nzasyp\nzasypal\nzasypala\nzasypali\nzasypalo\nzasypanie\nzasýpanie\nzasypaním\nzasypaniu\nzasypaný\nzasypať\nzasýpať\nzasypávanie\nzasypávaný\nzasypávať\nzásyp\nzasype\nzasypem\nzasypeme\nzasypeš\nzasypete\nzasypme\nzasypte\nzasypú\nzasypúc\nzasýtenie\nzasýtením\nzasýtený\nzasýtiť\nzašalovaný\nzašalovať\nzašaluje\nzašalujete\nzašanovať\nzašantročenie\nzašantročením\nzašantročeniu\nzašantročený\nzašantročiť\nzašatenie\nzašatiť\nzašelesti\nzašelestime\nzašelestite\nzašelestiť\nzašemotiť\nzašepkať\nzašepnúť\nzašepotať\nzašeptať\nzašereným\nzášerie\nzašermovať\nzaševeliť\nzáševok\nzaši\nzašianať\nzašibrinkovať\nzašifroval\nzašifrovala\nzašifrovali\nzašifrovalo\nzašifrovania\nzašifrovanie\nzašifrovaním\nzašifrovaniu\nzašifrovaný\nzašifrovaný\nzašifrovať\nzašifruj\nzašifruje\nzašifrujem\nzašifrujeme\nzašifruješ\nzašifrujete\nzašifrujme\nzašifrujte\nzašifrujú\nzašifrujúc\nzašije\nzašijem\nzašijeme\nzašiješ\nzašijete\nzašijú\nzašijúc\nzašikovať\nzašil\nzašila\nZašila\nzašili\nzašilo\nzašime\nzašimrať\nzašite\nzašiť\nzašívanie\nzašívať\nzaškarediť\nzaškatuľkovanie\nzaškatuľkovaním\nzaškatuľkovaniu\nzaškatuľkovaný\nzaškatuľkovať\nzašker\nzaškeriť\nzaškerte\nzaškľabiť\nzašklb\nzašklbať\nzašklbú\nzašklbúc\nzaškňúriť\nzaškodiť\nzáškodnícky\nzáškodníctvach\nzáškodníctvam\nzáškodníctvo\nzáškodníčka\nzáškodník\nzáškodný\nzáškolácky\nzáškoláctvach\nzáškoláctvam\nzáškoláctvo\nzáškoláčka\nzáškolák\nzaškolenie\nzaškolený\nzaškoliť\nzaškoľovací\nzaškoľovacie\nzaškoľovacieho\nzaškoľovacím\nzaškoľovaní\nzaškoľovania\nzaškoľovanie\nzaškoľovaním\nzaškoľovaniu\nzaškoľovať\nzaškovať\nzaškrab\nzaškrabať\nzaškrabkávanie\nzaškrabkávať\nzaškrabnúť\nzaškrabovanie\nzaškrabovať\nzaškrcovanie\nzaškreč\nzaškrečať\nzaškriab\nzaškriabať\nzaškriekať\nzaškrip\nzaškrípaj\nzaškrípajme\nzaškrípajte\nzaškrípajúc\nzaškrípaní\nzaškrípanie\nzaškrípaniu\nzaškrípať\nzaškripieť\nzaškripotať\nzaškŕkať\nzaškrknúť\nzaškrnutý\nzaškrobiť\nzaškrtať\nzaškrtávací\nzaškrtávať\nzáškrt\nzaškrtenie\nzaškrtený\nzaškrtiť\nzáškrtmi\nzaškrtnutie\nzaškrtnuto\nzaškrtnúť\nzaškrtnutý\nzáškrtový\nzaškúliť\nzaškvrč\nzaškvrčať\nzaškvŕka\nzaškvŕkaj\nzaškvŕkajme\nzaškvŕkajte\nzaškvŕkajú\nzaškvŕkajúc\nzaškvŕkal\nzaškvŕkala\nzaškvŕkali\nzaškvŕkalo\nzaškvŕkam\nzaškvŕkame\nzaškvŕkaš\nzaškvŕkať\nzaškvŕkate\nzaškvrniť\nzašľahať\nzašľapávať\nzašľapoval\nzašľapovala\nzašľapovali\nzašľapovalo\nzašľapovať\nzašľapuj\nzašľapuje\nzašľapujem\nzašľapujeme\nzašľapuješ\nzašľapujete\nzašľapujme\nzašľapujte\nzašľapujú\nzašľapujúc\nzašlejšej\nzašlejší\nzašlejšia\nzašlejšie\nzašlejšieho\nzašlejšiemu\nzašlejších\nzašlejším\nzašlejšími\nzašlejšiu\nzašlejšom\nzašlejšou\nzašliapaný\nzašliapať\nzašliapava\nzašliapavaj\nzašliapavajme\nzašliapavajte\nzašliapavajú\nzašliapavajúc\nzašliapaval\nzašliapavala\nzašliapavali\nzašliapavalo\nzašliapavam\nzašliapavame\nzašliapavaš\nzašliapavať\nzašliapavate\nzašliapnuť\nzašliapnutý\nzašlundraný\nzašlý\nzašmariť\nzašmodrchať\nzašmyknúť\nzašnurovať\nzašomrať\nzašomre\nzašomrem\nzašomreme\nzašomreš\nzašomrete\nzašomri\nzašomrime\nzašomrite\nzašomrú\nzašomrúc\nzašpárala\nzašpásovať\nzašpicatený\nzašpicatiť\nzašpineniu\nzašpinený\nzašpiniť\nzašpliechať\nzašporiť\nzašporovať\nzašportovať\nzašpuntovať\nzašrafovať\nzašramotiť\nzašraubovať\nzášte\nzašteboc\nzašteboce\nzaštebocem\nzašteboceme\nzašteboceš\nzaštebocete\nzaštebocme\nzaštebocte\nzaštebocú\nzaštebocúc\nzaštebotať\nzaštebovať\nzaštekanie\nzaštekať\nzáštep\nzaštepený\nzaštepiť\nzaštepovať\nzaštiepiť\nzaštiknúť\nzaštikovať\nzaštípať\nzaštipnúť\nzaštipovať\nzáštita\nzaštítenia\nzaštítenie\nzaštítený\nzaštíti\nzaštítia\nzaštítil\nzaštítila\nzaštítili\nzaštítilo\nzaštítime\nzaštítiť\nzaštítite\nzáštitný\nzaštiťoval\nzaštiťovala\nZaštiťovanie\nzaštiťovať\nzaštiťuje\nzaštiťujú\nzášť\nzaštopkať\nzaštopľovať\nzaštrkať\nzaštrkotať\nzaštrngať\nzaštrngotať\nZaštrnutie\nzašťukať\nzaštupľovaniu\nzaštupľovať\nzašuchnúť\nzašuchor\nzašuchoriť\nzašuchorte\nzašuchotať\nzašúľať\nzašum\nzášum\nzašumené\nzašumenie\nzašumením\nzašumenú\nzašumieť\nzašupovať\nzašuškať\nzašuškať\nzašušlať\nzašušľať\nzašušotať\nzašušť\nzašušťať\nzašušti\nzašuští\nzašuštia\nzašuštiac\nzašuštím\nzašuštime\nzašuštíme\nzašuštíš\nzašuštite\nzašuštíte\nzašušťme\nzašušťte\nzašveholiť\nzašvihať\nzašvindľovať\nzašvitor\nzašvitoriť\nzašvitorte\nzatackať\nzatáčania\nzatáčanie\nzatáčať\nzatáčka\nzaťahať\nzáťah\nzaťahovací\nzaťahovacieho\nzaťahovacím\nzaťahovacou\nzaťahovania\nzaťahovanie\nzaťahovaním\nzaťahovaniu\nzaťahovaný\nzaťahovať\nzatajene\nzatajenia\nzatajenie\nzatajením\nzatajeniu\nzatajený\nzatajiť\nzatajovania\nzatajovanie\nzatajovaním\nzatajovaniu\nzatajovaný\nzatajovať\nzatancovať\nzatápalo\nzatápaná\nzatápané\nzatápaného\nzatápanej\nzatápaní\nzatápania\nzatápanie\nzatápaním\nzatápaniu\nzatápanom\nzatápaných\nzatápať\nzátarás\nzátarasa\nzatarasenia\nzatarasenie\nzatarasením\nzatarasený\nzatarasiť\nzátarasmi\nzátarasov\nzatarasovaní\nzatarasovať\nzatárať\nzaťatec\nzaťatie\nzaťato\nzaťaťo\nzaťatosť\nzaťať\nzaťatý\nzatavenie\nzatavením\nzatavený\nzataviť\nzátaž\nzáťaž\nzaťažene\nzaťaženie\nzaťaženosť\nzaťažený\nzaťažiteľnosť\nzaťažiteľnosti\nzaťažiť\nzaťažkávací\nzaťažkávajúce\nzaťažko\nzaťažovací\nZaťažovacie\nzaťažovaciu\nzaťažovanie\nzaťažovaný\nzaťažovať\nzáťažový\nzať\nzatečenia\nzatečenie\nzatečením\nzatečený\nzatekaní\nzatekania\nzatekanie\nzatekaním\nzatekaniu\nzatekať\nzatekávajú\nzatekávali\nzatekávané\nzatekávať\nzatelefonovanie\nzatelefonovaním\nzatelefonovať\nzatelegrafovať\nzatemnenie\nzatemnený\nzatemni\nzatemnime\nzatemnite\nzatemniť\nzatemňovací\nzatemňovaná\nzatemňovaní\nzatemňovanie\nzatemňovať\nzatemňujúci\nzatemňujúcu\nzateniť\nzateoretizovali\nzateoretizovať\nzatepli\nzateplí\nzateplia\nzatepliac\nzateplil\nzateplila\nzateplili\nzateplilo\nzateplím\nzateplime\nzateplíme\nzateplíš\nzatepliť\nzateplite\nzateplíte\nzatepľoval\nzatepľovala\nzatepľovali\nzatepľovalo\nzatepľovať\nzatepľuj\nzatepľuje\nzatepľujem\nzatepľujeme\nzatepľuješ\nzatepľujete\nzatepľujme\nzatepľujte\nzatepľujú\nzatepľujúc\nzatesnenie\nZatesnením\nzatesniť\nzatešiť\nzatiahnú\nzatiahnutia\nzatiahnutie\nzatiahnuť\nzatiahnutý\nzatiaľ\nzatiaľčo\nzatiecť\nzatienenia\nzatienenie\nzatienením\nzatienený\nzatieni\nzatienim\nzatienime\nzatieniš\nzatienite\nzatieniť\nzatieňovať\nzatieranie\nzatierať\nzatievať\nzatícha\nzatíchaj\nzatíchajme\nzatíchajte\nzatíchajú\nzatíchajúc\nzatíchal\nzatíchala\nzatíchali\nzatíchalo\nzatícham\nzatíchame\nzatíchaš\nzatíchať\nzatíchate\nzatíchnuť\nzatikal\nzatikaní\nzatikať\nZatín\nzátin\nzatínajúce\nzatínajúceho\nzatínať\nzátinok\nzatipoval\nzatipovať\nzatískať\nzatisnúť\nzatisnutý\nzátišie\nzátišina\nzatká\nzatkal\nzatkať\nzatkávajú\nzátka\nzatknutie\nzatknúť\nzatknutý\nzaťko\nZaťkova\nZaťkovej\nZátkovo\nzátkový\nzatláčania\nzatláčanie\nzatláčaný\nzatláčať\nzatlačenie\nzatlačením\nzatlačený\nzatlačiť\nzatlačované\nzatĺcť\nzatlčené\nzatlčení\nzatlčenie\nzatlieskať\nzatĺkanej\nZatĺkanie\nzatĺkať\nzatĺkava\nzatĺkavaj\nzatĺkavajme\nzatĺkavajte\nzatĺkavajú\nzatĺkavajúc\nzatĺkaval\nzatĺkavala\nzatĺkavali\nzatĺkavalo\nzatĺkavam\nzatĺkavame\nzatĺkavaš\nzatĺkavať\nzatĺkavate\nzatmaviť\nzatmej\nzatmejme\nzatmejte\nzatmejú\nzatmejúc\nzatmelenie\nzatmelením\nzatmelený\nzatmeliť\nzatmeľovať\nzatmenie\nzatmi\nzatmie\nzatmiem\nzatmieme\nzatmieš\nzatmiete\nzatmieť\nzatmievať\nzatmime\nzatmite\nzatmiť\nzatnúť\nzato\nzatočení\nzatočenie\nzátočina\nzatočiť\nzátočky\nzátokach\nzatokať\nzátoka\nzatoľko\nzatomizuje\nzátoň\nzatônenia\nzatôniť\nzatôniť\nzátop\nzátopa\nzatopenia\nzatopenie\nzatopením\nzatopeniu\nzatopeno\nzatopený\nzatopiť\nzátopový\nzaťove\nzatracovania\nzatracovaniu\nzatracovaný\nzatracovať\nzatracujúci\nzatraktívnenie\nzatrasení\nzatratenec\nzatratenie\nzatratený\nzatratiť\nzatrátoriť\nzatrávnatený\nzatrávnenia\nzatrávnenie\nzatrávnením\nzatrávnený\nzatrávniť\nzatrávňovaní\nzatrávňovania\nzatrávňovanie\nzatrávňovaním\nzatrávňovaniu\nzatrávňovať\nzatrbliec\nzatrbliece\nzatrbliecem\nzatrblieceme\nzatrblieceš\nzatrbliecete\nzatrbliecme\nzatrbliecte\nzatrbliecu\nzatrbliecuc\nzatrblieta\nzatrblietaj\nzatrblietajme\nzatrblietajte\nzatrblietajú\nzatrblietajúc\nzatrblietal\nzatrblietala\nzatrblietali\nzatrblietalo\nzatrblietam\nzatrblietame\nzatrblietaš\nzatrblietať\nzatrblietate\nzatrenie\nzatrénoval\nzatrénovala\nzatrénovali\nzatrénovalo\nzatrénovať\nzatrénuj\nzatrénuje\nzatrénujem\nzatrénujeme\nzatrénuješ\nzatrénujete\nzatrénujme\nzatrénujte\nzatrénujú\nzatrénujúc\nzatrepať\nzatrepávať\nzátrepka\nzatrepnúť\nzatrepotaním\nzatrepotať\nzatresknúť\nzatresnúť\nzatresnutý\nzatretie\nzatretý\nzatrhávať\nzátrh\nzatrhnutá\nzatrhnúť\nzatriasť\nzatriedenia\nzatriedeniach\nzatriedenie\nzatriedením\nzatriedeniu\nzatriedený\nzatriediť\nzatrieďovacie\nzatrieďovane\nzatrieďovania\nzatrieďovanie\nzatrieďovaním\nzatrieďovaný\nzatrieďovať\nzatrieť\nzatrilkovať\nzatrkotať\nzatrpknutie\nzatrpknutím\nzatrpknuto\nzatrpknutosť\nzatrpknúť\nzatrpknutý\nzatŕpnuť\nzatrúbenie\nzatrúbiť\nzatrúc\nzatrucujte\nzatrudnený\nzatuhnúť\nzatuhnutie\nzatuhnutý\nzatuchlina\nzatuchnúť\nzatuchnutý\nzatúkať\nzaťukať\nzátuľa\nzatúlaný\nzatúlať\nzatupený\nzatupi\nzatupiť\nZatupoval\nzatupovaná\nzatupovaním\nzatupovať\nzatupujú\nzatušiť\nzatušované\nzatušovanie\nzatušovať\nzatutlať\nzatúžený\nzatúžiť\nzatvárací\nzatvárané\nzatváranie\nzatváraných\nzatvárať\nzatváriť\nzátvor\nzátvora\nzátvore\nzatvorene\nzatvorenie\nzatvorený\nzatvorí\nzatvorím\nzatvoríme\nzatvoríš\nzatvoríte\nzatvoriť\nzátvorka\nzátvoru\nzátvory\nzatvrczovať\nzatvrdené\nzatvrdenie\nzatvrdilý\nzatvrdiť\nzatvrdlivý\nzatvrdnutiu\nzatvrdnutosť\nzatvrdnúť\nzatvrdnutý\nzatvrdzovať\nzatýkací\nzatykač\nzatýkaní\nzatýkania\nzatýkanie\nzatýkaním\nzatykať\nzatýkať\nzátylie\nzátylok\nzatým\nzaúčaní\nzaúčania\nzaúčanie\nzaúčaním\nzaúčaných\nzaúčať\nzaučenie\nzaučený\nzaúčinkovať\nzaučiť\nzáučný\nzaučovaní\nzaúčtovanie\nzaúčtovaný\nzaúčtovať\nzaučujú\nzaúdený\nzaúdi\nzaúdim\nzaúdime\nzaúdiš\nzaúdite\nzaúdiť\nzauhľovaciu\nzauhľovania\nzauhľovanie\nzaúch\nzaucho\nzaujate\nzaujatie\nzaujato\nzaujatosť\nzaujať\nzaujatý\nzáujemca\nzáujemcovej\nzáujemkyňa\nzáujem\nzaujímajúci\nzaujímané\nzaujímaní\nzaujímania\nzaujímanie\nzaujímaniu\nzaujímať\nzaujímave\nzaujímavejší\nzaujímavo\nzaujímavosť\nzaujímavý\nzáujmovo\nzáujmový\nzaujúkať\nzaúkolovaní\nzaúkolovať\nzaumieniť\nzaumieňoval\nzaumieňovala\nzaumieňovali\nzaumieňovalo\nzaumieňovať\nzaumieňuj\nzaumieňuje\nzaumieňujem\nzaumieňujeme\nzaumieňuješ\nzaumieňujete\nzaumieňujme\nzaumieňujte\nzaumieňujú\nzaumieňujúc\nzaúpeli\nzaúradovať\nzaústenia\nzaústenie\nzaústením\nzaústený\nzaústený\nzaústiť\nzauškovanie\nzauškovať\nzáušnica\nzaútočiť\nzautomatizovanie\nzautomatizovaniu\nzautomatizovaný\nzautomatizovať\nzauvažovať\nzauzlenia\nzauzlenie\nzauzlením\nzauzleniny\nzauzlený\nzauzliť\nzauzľovanie\nzauzľovať\nzaužívanie\nzaužívaniu\nzaužívaný\nzaužívať\nzávad\nzávada\nzávadám\nzávadami\nZávade\nzavadiť\nZávadka\nZávadke\nZávadkou\nZávadku\nZávadky\nzávadnosť\nzávadnosti\nzávadnosťou\nzavädnúť\nzávadou\nzávadu\nzávady\nzavádzací\nzavádzač\nzavádzače\nzavádzači\nzavádzačom\nzavádzačov\nzavádzajúci\nzavádzane\nzavadzaní\nzavádzanie\nzavadzaním\nzavádzaný\nzavádzateľ\nzavádzateľom\nzavadzať\nzavádzať\nzaváhanie\nzaváhať\nzaváľaný\nzaváľať\nzával\nzavalcovaný\nzavalením\nzavaleniu\nzavalený\nzavaliť\nzavalito\nzavalitosť\nzavalitý\nzávalmi\nzavaľované\nzavaľovaní\nzavaľovať\nzávalový\nzavaň\nzaváňajúci\nzaváňať\nzávan\nzavanie\nzavaniem\nzavanieme\nzavanieš\nzavaniete\nzavaňme\nzavaňte\nzavanutie\nzavanúť\nzavar\nZavar\nzávar\nzávarací\nzavárací\nzavárané\nzaváraného\nzaváranej\nzaváranie\nzaváranina\nzavárať\nZavare\nzavarenia\nzavarenina\nzavarený\nzavariť\nzávarka\nZavarom\nzavarovať\nzavarské\nzavarského\nzavarskí\nzavarskom\nzavarských\nZavarský\nzavarte\nZavaru\nzavazadiel\nzavazadlo\nzáväzkovo\nzáväzkový\nzáväzne\nzáväznosť\nzáväzný\nzáväzok\nzaväzovanie\nzaväzovaním\nzaväzovaný\nzaväzovať\nzavážací\nzavážacie\nzavážacieho\nzavážacích\nzavážacím\nzavážacou\nzavážané\nzavážaní\nzavážania\nzavážanie\nzavážaním\nzavážaniu\nzavážať\nzavážení\nzaváženia\nzaváženie\nzávažie\nzavážiť\nZavážka\nzavážkach\nzavážku\nzavážky\nzávažne\nzávažnejšíF\nzávažnosť\nzávažný\nzavážok\nzávažový\nzavažuje\nzavažujú\nzavčas\nzavčasu\nzavčerom\nzavďačenia\nzavďačenie\nzavďačením\nzavďačiť\nzavďačovať\nzavdal\nzavdať\nzavdáva\nzávdavok\nzavedene\nzavedenie\nzavedený\nzávej\nzaveľa\nzaveliť\nzaver\nzáver\nzáverečný\nzaveriť\nzáverný\nzaverovanie\nzaverovať\nzáverový\nzaverte\nzáves\nzaveseliť\nzavesene\nzavesenie\nzavesený\nzavesiť\nzávesku\nzaveslovať\nzávesnica\nzávesníkmi\nzávesný\nzávesok\nzavesovací\nzavesovacie\nzavesovať\nzávesový\nzávet\nzávetca\nzávetcu\nzáveterný\nzávetný\nzávetrie\nzavetriť\nzavezenia\nzavezenie\nzavezením\nZavezeniu\nzavezený\nzaviata\nzaviate\nzaviať\nzaviatych\nzaviazane\nzaviazania\nzaviazanie\nzaviazaním\nzaviazaniu\nzaviazanosť\nzaviazanosti\nzaviazanosťou\nzaviazaný\nzaviazať\nzaviazl\nzaviaznuť\nzaviažuc\nzáviď\nzávidené\nzávidení\nzávideniahodne\nzávideniahodný\nzávidenie\nzavidieť\nzávidieť\nzavieraní\nzavieranie\nzavieraním\nzavierať\nzávierka\nzávierkové\nzaviesť\nzavievať\nzaviezť\nzavija\nzavíjanieN\nzavíjať\nzavije\nzavijem\nzavijeme\nzaviješ\nzavijete\nzavijú\nzavijúc\nzavíňa\nzavináči\nzavináč\nzavíňaj\nzavíňajme\nzavíňajte\nzavíňajú\nzavíňajúc\nzavíňal\nzavíňala\nzavíňali\nzavíňalo\nzavíňam\nzavíňame\nzavíňaš\nzavíňať\nzavíňate\nzávin\nzavinene\nzavinenieN\nzavinený\nzaviniť\nzavinovačka\nzavinovať\nzaviňovať\nzávinový\nzavinšovať\nzavinutie\nzavinúť\nzavinutý\nzavírená\nzavírenia\nzavírenie\nzavírenú\nzavírených\nZavírený\nzavíriť\nzavírusoval\nzavírusovala\nzavírusovali\nzavírusovalo\nzavírusovať\nzavírusuj\nzavírusuje\nzavírusujem\nzavírusujeme\nzavírusuješ\nzavírusujete\nzavírusujme\nzavírusujte\nzavírusujú\nzavírusujúc\nzávis\nzavisí\nzávisiace\nzávisieť\nzavisla\nzávisle\nzávislejšej\nzávislejší\nzávislejšia\nzávislejšie\nzávislejšieho\nzávislejšiemu\nzávislejších\nzávislejším\nzávislejšími\nzávislejšiu\nzávislejšom\nzávislejšou\nzavisli\nzávislo\nzávislosť\nzávislosťN\nzávislý\nzavisol\nzávistive\nzávisť\nzávistlivec\nzávistlivkyňa\nzávistlivo\nzávistlivosť\nzávistlivý\nzávistník\nzáviť\nzavítať\nzávit\nzaviť\nzávitmi\nzávitnica\nzávitnicový\nzávitník\nzavito\nzávitok\nzávitorez\nzávitorezov\nzávitovka\nzávitovkový\nzávitový\nzaviť\nzavláčený\nzavláčiť\nzávlačka\nzavládnuť\nzávlahár\nzávlahárka\nzávlahársky\nzávlaha\nzávlahový\nzavlalo\nzavlaženie\nzavlažených\nzavlažiť\nzavlažovací\nzavlažovač\nzavlažovača\nzavlažovače\nzavlažovačmi\nzavlažovačov\nzavlažovania\nzavlažovanie\nzavlažovaním\nzavlažovaniu\nzavlažovaný\nzavlažovať\nzavlečenie\nzavlečený\nzavlhčiť\nzavlhnúť\nzavlhnutý\nzavliecť\nzavliekať\nzavlneniam\nzavlniť\nzávoď\nzávod\nzávodení\nzávodenie\nzávodiac\nzávodiaci\nzávodie\nzávodil\nzávodila\nzávodili\nzávodilo\nzávodíme\nzávodísk\nzávodisko\nzávodíš\nzávodiť\nzávodíte\nzávoďme\nzávodne\nzavodnenia\nzavodnenie\nzavodneniu\nzavodnený\nzavodni\nzávodníci\nzávodník\nzávodníka\nzavodnime\nzavodnite\nzavodniť\nzavodňovací\nzavodňovania\nzavodňovanie\nzavodňovať\nzávodný\nZávodský\nzávoďte\nzávojček\nzávoj\nzávojový\nzavolania\nzavolanie\nzavolaním\nzavolaný\nzavolať\nzavoňať\nzávor\nzávorár\nzávora\nzávorový\nzavoskovať\nzávoz\nzavoziť\nzávoznícky\nzávozníčka\nzávozník\nzávozový\nzavracať\nzávrať\nzavrát\nzávrat\nzavrátení\nzavráti\nzavrátim\nzavrátime\nzavrátiš\nzavrátite\nzavrátiť\nzávratmi\nzávratne\nzávratnosť\nzávratný\nzavrav\nzavrávať\nzavravieť\nzavraždenie\nzavraždený\nzavraždi\nzavraždime\nzavraždite\nzavraždiť\nzavrč\nzavrčanie\nzavrčať\nzavrešť\nzavrešťanie\nzavrešťať\nzavrešťme\nzavrešťte\nzavretieN\nzavretý\nzavrhnute\nzavrhnutie\nzavrhnúť\nzavrhnutý\nzavrhovaním\nzavrhovaný\nzavrhovať\nzavrieskanie\nzavrieskať\nzavrieť\nzavrnieť\nzavŕšenia\nzavŕšenie\nzavŕšením\nzavŕšeniu\nzavŕšený\nzavŕšiteľa\nzavŕšiť\nzavršovaní\nzavršovaním\nzavršovať\nzavrť\nzavŕtaný\nzavŕtať\nzavrtávať\nzavrtenie\nzavrtieť\nzavrtiť\nzavrtnúť\nzávrtný\nzavrúc\nzavŕzgať\nzavrznúť\nzavrzúkať\nzavržď\nzavržďať\nzavržďme\nzavržďte\nzavše\nzavšivavene\nzavšivavenosť\nzavšivavený\nzavšivený\nzavtikovať\nzavtipkovať\nzavýjanie\nzavýjať\nzavýskať\nzavýsknuť\nzavystrájať\nzavytie\nzavytím\nzavyť\nzavzalo\nzavzať\nzavzatý\nzavzdať\nzavzdušni\nzavzdušní\nzavzdušnia\nzavzdušniac\nzavzdušnil\nzavzdušnila\nzavzdušnili\nzavzdušnilo\nzavzdušním\nzavzdušnime\nzavzdušníme\nzavzdušníš\nzavzdušniť\nzavzdušnite\nzavzdušníte\nzavzdušňoval\nzavzdušňovala\nzavzdušňovali\nzavzdušňovalo\nzavzdušňovaní\nzavzdušňovať\nzavzdušňuj\nzavzdušňuje\nzavzdušňujem\nzavzdušňujeme\nzavzdušňuješ\nzavzdušňujete\nzavzdušňujme\nzavzdušňujte\nzavzdušňujú\nzavzdušňujúc\nzavzdychá\nzavzdychaj\nzavzdychajme\nzavzdychajte\nzavzdychajú\nzavzdychajúc\nzavzdychal\nzavzdychala\nzavzdychali\nzavzdychalo\nzavzdychám\nzavzdycháme\nzavzdycháš\nzavzdychať\nzavzdycháte\nzavzdychnúť\nzavzlykať\nzaýívať\nzazátkoval\nzazátkovala\nzazátkovali\nzazátkovalo\nzazátkovať\nzazátkuj\nzazátkuje\nzazátkujem\nzazátkujeme\nzazátkuješ\nzazátkujete\nzazátkujme\nzazátkujte\nzazátkujú\nzazátkujúc\nzazdá\nzazdaj\nzazdajme\nzazdajte\nzazdajú\nzazdajúc\nzazdal\nzazdala\nzazdali\nzazdalo\nzazdám\nzazdáme\nzazdáš\nzazdať\nzazdáte\nzazdravkať\nzazelenanie\nzazelenať\nzazelenená\nzazelenenia\nzazelenenie\nzazelenením\nzazelenieť\nzazeleniť\nzazeleňovať\nzázemie\nzázemný\nzazerač\nzazerajúci\nZazeranie\nzazerať\nzazeravý\nzazimovali\nzazimované\nzazimovaní\nzazimovania\nzazimovanie\nzazimovaných\nzazimovať\nzazimujú\nzazívať\nzazlievané\nzazlievať\nzazmätkovať\nzázn\nzazná\nzaznačenie\nzaznačený\nzaznačiť\nzaznačovaných\nzaznačovať\nzaznali\nzáznam\nzaznamenanie\nzaznamenaný\nzaznamenaný\nzaznamenateľný\nzaznamenať\nzaznamenávač\nzaznamenávane\nzaznamenávanie\nzaznamenávaný\nzaznamenávať\nzáznamník\nzáznamový\nzaznávanie\nzaznávaný\nzaznávať\nzaznení\nzaznenia\nzaznenie\nzaznieť\nzaznievajúce\nzaznievanie\nzaznievať\nzazob\nzazobaný\nzazobať\nzázračne\nzázračnosť\nzázračný\nzázrak\nzazrieť\nzázrivý\nzazrúc\nzazubadliť\nzazubenie\nzazubený\nzazubiť\nzazunieť\nzazurčia\nzazver\nzazveriť\nzazverovať\nzazverte\nzazvonení\nzazvonenie\nzazvonením\nzazvoniť\nzázvor\nzázvorník\nzázvorový\nzazvuč\nzazvučal\nzazvučala\nzazvučali\nzazvučalo\nzazvučať\nzazvučí\nzazvučia\nzazvučiac\nzazvučím\nzazvučíme\nzazvučíš\nzazvučíte\nzazvučme\nzazvučte\nzažalovania\nzažalovanie\nzažalovaním\nzažalovaný\nzažalovať\nzažartovať\nzažatia\nzažať\nzažatý\nzažehliť\nzažehľovať\nzažehnania\nzažehnanie\nzažehnaním\nzažehnaniu\nzažehnaný\nzažehnať\nzažehnávať\nzažehrať\nzaželať\nzaženávať\nzažiadane\nzažiadania\nzažiadanie\nzažiadanosť\nzažiadaný\nzažiadať\nzažiaľ\nzažiali\nzažialiť\nzažiariť\nzažič\nzažičiť\nzažierať\nzažíhadlo\nzažíhať\nzážih\nzážihový\nzažínať\nzažitie\nzážitkovo\nzážitkový\nzažito\nzážitok\nzažiť\nzažitý\nzaživa\nzažívací\nzažívaná\nzažívania\nzažívanie\nzažívať\nzáživne\nzáživný\nzažltnutá\nzažltnuté\nzažltnutého\nzažltnúť\nzažmúrené\nzažmúrenými\nzažmúriť\nzažmurkať\nzažmurovať\nzažraný\nzažratá\nzažraté\nzažratí\nzažrať\nzažri\nzb\nZb\nzbab\nzbabčený\nzbabel\nzbabelec\nzbabelejšej\nzbabelejší\nzbabelejšia\nzbabelejšie\nzbabelejšieho\nzbabelejšiemu\nzbabelejších\nzbabelejším\nzbabelejšími\nzbabelejšiu\nzbabelejšom\nzbabelejšou\nzbabelo\nzbabelosť\nzbabelý\nzbabieť\nzbabiť\nzbabrania\nzbabranie\nzbabraný\nzbabrať\nzbabre\nzbabrem\nzbabreme\nzbabreš\nzbabrete\nzbabri\nzbabrime\nzbabrite\nzbabrú\nzbabrúc\nzbabštieť\nzbadanie\nzbadaný\nzbadateľný\nzbadať\nzbadúriť\nzbagatelizovať\nzbahnatený\nzbachratieť\nzbaláchať\nzbalamutenia\nzbalamutiť\nzbalenie\nzbalený\nzbaliť\nzbaľovanie\nzbaľovať\nzbalušiť\nzbankrotovania\nZbankrotovanie\nzbankrotovaním\nzbankrotovaný\nzbankrotovať\nzbásnene\nzbásnený\nzbavenie\nzbaveno\nzbavený\nzbaviť\nzbavný\nzbavovania\nzbavovanie\nzbavovaním\nzbavovaniu\nzbavovaný\nzbavovať\nzbedačenia\nzbedačenie\nzbedačeniu\nzbedačený\nzbedačiť\nzbedačovania\nzbedačovanie\nzbedačovaním\nzbedačovaniu\nzbedačovaný\nzbedačovať\nzbedačujúci\nzbedárčiť\nzbedárený\nzbednú\nzbedovaný\nzbehať\nzbeh\nzbehlejšej\nzbehlejší\nzbehlejšia\nzbehlejšie\nzbehlejšieho\nzbehlejšiemu\nzbehlejších\nzbehlejším\nzbehlejšími\nzbehlejšiu\nzbehlejšom\nzbehlejšou\nzbehlosť\nzbehlý\nZbehňov\nzbehnutie\nzbehnúť\nZbehy\nzbelasieť\nzbelavieť\nzbelej\nzbelejme\nzbelejte\nzbelejú\nzbelejúc\nzbeletrizovanie\nzbelieť\nzberacej\nzberacia\nzberacie\nzberacieho\nzberacích\nzberacím\nzberacími\nzberaciu\nzberač\nzberače\nzberačka\nzberačský\nzberaču\nzberajúce\nzberajúci\nzberajúcich\nZberaná\nzberané\nzberaného\nzberanej\nzberaní\nzberania\nzberanie\nzberaním\nzberaných\nzberateľ\nzberateľka\nzberateľovej\nzberateľsky\nzberateľský\nzberateľstvo\nzberať\nzberb\nzber\nzberba\nzberkať\nzberňa\nzbernica\nzbernicový\nzberný\nzberový\nzbesilo\nzbesilosti\nzbesilosťou\nzbesilý\nzbesnenie\nzbesnený\nzbesnieť\nzbezpečniť\nzbežne\nzbežný\nzbičovaný\nzbičovať\nzbiedený\nzbiednieť\nzbiehajúci\nzbiehanie\nzbiehať\nzbiehavo\nzbiehavosť\nzbiehavý\nzbiel\nzbieranie\nzbieraný\nzbierať\nzbierka\nzbierkový\nzbíjací\nzbíjačka\nzbíjanie\nzbíjaných\nzbíjať\nzbilancoval\nzbilancovala\nzbilancovali\nzbilancované\nzbilancovaní\nzbilancovania\nzbilancovať\nzbilancuje\nzbilancujem\nzbilancujeme\nzbilancujú\nzbitia\nzbitie\nzbiť\nzbitý\nzblamovať\nzblankytnieť\nzbláznenieN\nzbláznený\nzbláznie\nzblaznieť\nzblázniť\nzblbnúť\nzblbnutý\nzblbol\nzblč\nzblčať\nzblednúť\nzblednutý\nzbliaknuť\nzblíza\nzblízka\nzblížená\nzblížené\nzblíženého\nzblíženie\nzblížiť\nzbližovanieN\nzbližovaný\nzbližovať\nzbližša\nzbĺknuť\nzblkotať\nzblokovaný\nzblo\nzblúdenia\nzblúdenie\nzblúdeniu\nzblúdený\nzblúdilý\nzblúdiť\nzblýskať\nzblysknúť\nzblyskotať\nzblysnúť\nzblyšťať\nzbočiť\nzbodla\nzbodli\nzbodlo\nzbodne\nzbodnem\nzbodneme\nzbodneš\nzbodnete\nzbodni\nzbodnime\nzbodnite\nzbodnú\nzbodnúc\nzbodnúť\nzbodol\nzbodrieť\nzbohatlícky\nzbohatlíctvo\nzbohatlíčka\nzbohatlík\nzbohatnutia\nzbohatnutie\nzbohatnutím\nzbohatnutiu\nzbohatnúť\nzbohatnutý\nzbohom\nzboj\nzbojnícky\nzbojníctvach\nzbojníctvam\nzbojníctvo\nzbojníček\nzbojníčiť\nzbojníčka\nzbojník\nzbojníkov\nzbojný\nZbojská\nZbojského\nZbojskej\nzbojstvo\nzboka\nzboku\nzbombardovania\nzbombardovanie\nzbombardovaním\nzbombardovaný\nzbombardovať\nzbor\nzborenie\nzborenina\nzboreniny\nzborenisko\nzborený\nzborista\nzboristka\nzboriť\nzbormajster\nzbormajsterka\nzborníček\nzborníčka\nzborníčkami\nzborníčkoch\nzborníčkom\nzborníčkov\nzborníčku\nzborníčky\nzborník\nzborníkový\nZborova\nZborove\nzborovňa\nzborovní\nzborovo\nzborovského\nZborovský\nzborový\nzbošäžšťovať\nzbozkávať\nzbožie\nzbožina\nzbožne\nzbožniť\nzbožnosť\nzbožňovania\nzbožňovanie\nzbožňovaním\nzbožňovaný\nzbožňovateľ\nzbožňovateľka\nzbožňovateľský\nzbožňovať\nzbožný\nzbožštenie\nzbožštením\nzbožšti\nzbožštime\nzbožštite\nzbožštiť\nzbožšťovať\nzbraň\nzbrániť\nzbraňový\nzbrataní\nzbratania\nzbratanie\nzbratať\nzbrázdený\nzbrázdiť\nzbrčkavieť\nzbridiť\nzbrkle\nzbrklo\nzbrklý\nzbrnknúť\nzbrojár\nzbrojársky\nzbrojárstvach\nzbrojárstvam\nzbrojárstvo\nzbroj\nzbrojeného\nzbrojenej\nzbrojení\nzbrojenia\nzbrojenie\nzbrojením\nzbrojiť\nzbrojnica\nZbrojníkoch\nZbrojníky\nzbrojno\nzbrojnoš\nzbrojný\nzbrojom\nzbrojovákov\nzbrojovka\nzbrojovom\nzbrojovými\nzbronieť\nzbrudiť\nzbrúsený\nzbrúsiť\nzbrusovanie\nzbrusovať\nzbrzdenia\nzbrzdenie\nzbrzdením\nzbrzdeniu\nzbrzdený\nzbrzdí\nzbrzdia\nzbrzdil\nzbrzdila\nzbrzdili\nzbrzdilo\nzbrzdiť\nZbudil\nzbudiť\nzbudnúť\nzbudoval\nzbudovali\nzbudované\nzbudovať\nzbuduje\nzbudujem\nzbudujme\nzbudujú\nZbudza\nZbudze\nZbudzi\nzbudzký\nZbudzou\nZbudzu\nzbúchaný\nzbúchať\nzbujnieť\nzbuntošiť\nzbúrania\nzbúranie\nzbúraním\nzbúranísk\nzbúranisko\nzbúraniu\nzbúraný\nzbúrať\nzburcovanie\nzburcovať\nzbútľavieť\nZbyňov\nZbyňovský\nzbyrokratizovanie\nzbyrokratizovaný\nzbyrokratizovať\nzbystrej\nzbystrejme\nzbystrejte\nzbystrejú\nzbystrejúc\nzbystrenie\nzbystrieť\nzbystriť\nzbystrovať\nzbytočne\nzbytočnosť\nzbytočný\nzbytok\nZČSSP\nzdajúci\nzdakade\nzdakadiaľ\nzďaleka\nzdanene\nzdanenie\nzdanený\nzdanie\nzdaniteľný\nzdaniť\nzdanlivo\nzdanlivosť\nzdanlivý\nzdano\nzdaňovací\nzdaňovanie\nzdaňovaný\nzdaňovať\nzdaný\nzdar\nZdarboh\nzdarebáčiť\nzdarenie\nzdarený\nzdarí\nzdariť\nzdarma\nzdarme\nzdarne\nzdarnosť\nzdarný\nzdarte\nzdať\nzdatne\nzdatnosť\nzdatný\nzdáva\nzdávna\nzdecimovania\nZdecimovanie\nzdecimovaním\nzdecimovaniu\nzdecimovaný\nzdecimovať\nzdedene\nzdedenia\nzdedením\nzdedený\nzdediť\nzdeformovanie\nzdeformovaný\nzdeformovať\nzdefraudoval\nzdefraudovali\nzdefraudovalo\nzdefraudovať\nzdefrauduje\nzdegenerovaný\nzdegenerovať\nzdegradované\nzdegradovať\nzdegustovať\nzdegviť\nzdehonestovať\nzdelil\nzdelila\nzdelili\nzdeľovať\nzdemokratizovala\nzdemokratizovaných\nzdemoloval\nzdemolovala\nzdemolovali\nzdemolovalo\nzdemolovane\nzdemolovanie\nzdemolovaný\nzdemolovať\nzdemoluj\nzdemoluje\nzdemolujem\nzdemolujeme\nzdemoluješ\nzdemolujete\nzdemolujme\nzdemolujte\nzdemolujú\nzdemolujúc\nzdemoralizovať\nZdena\nzdengľavieť\nZdenka\nZdenko\nZdeno\nZdenou\nZdeny\nzdepčiť\nzdeprimovaný\nzdeprimovať\nzdepsiť\nzdeptaný\nzdeptať\nzderca\nzderstvo\nzdesaťnásobenie\nzdesaťnásobí\nzdesaťnásobil\nzdesaťnásobila\nzdesaťnásobili\nzdesaťnásobilo\nzdesaťnásobiť\nzdesene\nzdesenie\nzdesený\nzdesiť\nzdevalvoval\nzdevalvovala\nzdevalvovali\nzdevalvovaný\nzdevalvovať\nzdevalvuje\nzdevastovania\nzdevastovanie\nzdevastovaním\nzdevastovaniu\nzdevastovaný\nzdevastovať\nzdeväťnásobil\nzdezertovať\nzdezorientovali\nZdezorientovaní\nzdezorientovať\nzdiali\nzdiaľky\nzdiať\nzdieľajúci\nzdieľane\nzdieľanie\nzdielaný\nzdieľaný\nzdielať\nzdieľať\nzdieľna\nZdieľnejší\nzdieľnejšia\nzdieľnosť\nzdierač\nZdierači\nzdieračom\nzdieračov\nzdieračskej\nzdieračským\nzdieračstvo\nzdierania\nzdieranie\nzdieraním\nzdieraniu\nzdieraný\nzdierať\nzdierka\nzdisciplinovaní\nzdisciplinovania\nzdisciplinovanie\nzdisciplinovať\nzdiskreditovania\nzdiskreditovanie\nzdiskreditovaný\nzdiskreditovať\nzdivený\nzdivieť\nzdivočelo\nzdivočene\nzdivočieť\nzdivočiť\nzdlapčiť\nzdláviť\nzdlha\nzdĺhavo\nzdĺhavosť\nzdĺhavý\nzdlieť\nzdlženému\nzdlženia\nzdlženie\nzdlženými\nzdĺžiť\nzdlžovať\nzdmúť\nzdnu\nzdnuka\nzdobenejší\nzdobenia\nzdobenie\nzdobením\nzdobeniu\nzdobený\nzdobiť\nzdobný\nzdobu\nzdochliak\nzdochlinár\nzdochlináre\nzdochlina\nzdochnúť\nzdochnutý\nzdochýnať\nzdokonalene\nzdokonalenie\nzdokonalený\nzdokonalený\nzdokonaliteľného\nzdokonaliť\nzdokonaľovací\nzdokonalovali\nzdokonalovanie\nzdokonaľovanie\nzdokonalovaním\nzdokonalovaný\nzdokonaľovaný\nzdokonalovať\nzdokonaľovať\nzdokonaľujúci\nzdokumentovanie\nzdokumentovaný\nzdokumentovať\nzdola\nzdolanie\nzdolaný\nzdolateľný\nzdolať\nzdolávanie\nzdolávať\nzdolný\nzdomácnene\nzdomácnenie\nzdomácnenosť\nzdomácnený\nzdomácnieť\nzdomácnieva\nzdomácnievaj\nzdomácnievajme\nzdomácnievajte\nzdomácnievajú\nzdomácnievajúc\nzdomácnieval\nzdomácnievala\nzdomácnievali\nzdomácnievalo\nzdomácnievam\nzdomácnievame\nzdomácnievaš\nzdomácnievať\nzdomácnievate\nzdomácniť\nzdomácňovaný\nzdomácňovať\nzdomácňuj\nzdomácňuje\nzdomácňujem\nzdomácňujeme\nzdomácňuješ\nzdomácňujete\nzdomácňujme\nzdomácňujte\nzdomácňujú\nzdomácňujúc\nzdôraznenia\nzdôraznenie\nzdôraznením\nzdôrazneniu\nzdôraznený\nzdôrazniť\nzdôrazniť\nzdôrazňovania\nzdôrazňovanie\nzdôrazňovaním\nzdôrazňovaniu\nzdôrazňovaný\nzdôrazňovať\nzdôrazňujúcom\nzdôver\nzdôveriť\nzdôverovať\nzdôverte\nzdôveryhodni\nzdôveryhodní\nzdôveryhodnia\nzdôveryhodniac\nzdôveryhodnil\nzdôveryhodnila\nzdôveryhodnili\nzdôveryhodnilo\nzdôveryhodním\nzdôveryhodnime\nzdôveryhodníme\nzdôveryhodníš\nzdôveryhodniť\nzdôveryhodnite\nzdôveryhodníte\nzdôveryhodňoval\nzdôveryhodňovala\nzdôveryhodňovali\nzdôveryhodňovalo\nzdôveryhodňovať\nzdôveryhodňuj\nzdôveryhodňuje\nzdôveryhodňujem\nzdôveryhodňujeme\nzdôveryhodňuješ\nzdôveryhodňujete\nzdôveryhodňujme\nzdôveryhodňujte\nzdôveryhodňujú\nzdôveryhodňujúc\nzdôvodnenie\nzdôvodnený\nzdôvodni\nzdôvodnime\nzdôvodnite\nZdôvodnite\nzdôvodniteľný\nzdôvodniť\nzdôvodňovania\nzdôvodňovanie\nzdôvodňovaním\nzdôvodňovaniu\nzdôvodňovaný\nzdôvodňovať\nzdr\nzdráhaní\nzdráhania\nzdráhanie\nzdráhaním\nzdráhať\nzdráhavo\nzdráhavosť\nzdráhavý\nzdramatizovanie\nZdramatizovaniu\nzdramatizovaný\nzdramatizovať\nzdrap\nzdrapiť\nzdrapľavieť\nzdrapnúť\nzdrať\nzdravenia\nzdravenie\nzdravica\nzdravíčko\nzdravie\nzdraviť\nzdravkať\nzdravo\nzdravosť\nzdravosti\nzdravot\nzdravotne\nzdravotnícky\nzdravotníctvach\nzdravotníctvam\nzdravotníctvo\nzdravotníčka\nzdravotník\nzdravotno\nzdravotnosť\nzdravotný\nzdravoveda\nzdravovedný\nzdravovied\nZdravstvuj\nzdravšie\nzdravší\nzdravý\nzdražene\nzdraženie\nzdražený\nzdražieť\nzdražiť\nzdražovanie\nzdražovaný\nzdražovať\nzdrepenieť\nzdrevenenie\nzdrevenený\nzdrevenieť\nzdrevnatieť\nzdrhali\nzdŕhať\nzdrhnúť\nzdriapať\nzdridiť\nzdrie\nzdriemnutí\nzdriemnutia\nzdriemnutie\nzdriemnuť\nzdrieť\nzdrob\nzdrobnene\nzdrobnenina\nzdrobnený\nzdrobnie\nzdrobnieť\nzdrobňovací\nzdrobňovanie\nzdroj\nzdrojový\nzdrsnenia\nzdrsnenie\nzdrsnený\nzdrsni\nzdrsnieť\nzdrsnime\nzdrsnite\nzdrsniť\nzdrsňovanie\nzdrsňovať\nzdrť\nzdrtenýY\nzdrtený\nzdrusiť\nzdruzgnúť\nzdruženár\nzdružene\nzdruženie\nzdružený\nzdružiť\nzdružované\nzdružovaní\nzdružovania\nzdružovanie\nzdružovaním\nzdružovaniu\nzdružovaných\nzdružovať\nzdružstevni\nzdružstevnime\nzdružstevnite\nzdružstevniť\nzdružstevňovania\nzdružstevňovanie\nzdružstevňovaním\nzdružstevňovať\nzdrv\nzdrvene\nzdrvený\nzdrví\nzdrvia\nzdrviac\nzdrvil\nzdrvila\nzdrvili\nzdrvilo\nzdrvím\nzdrvíme\nzdrvíš\nzdrviť\nzdrvíte\nzdrvme\nzdrvte\nzdrvujúcejšej\nzdrvujúcejší\nzdrvujúcejšia\nzdrvujúcejšie\nzdrvujúcejšieho\nzdrvujúcejšiemu\nzdrvujúcejších\nzdrvujúcejším\nzdrvujúcejšími\nzdrvujúcejšiu\nzdrvujúcejšom\nzdrvujúcejšou\nzdrvujúci\nzdrvujúco\nzdŕža\nzdŕžajte\nzdŕžali\nzdŕžam\nzdržané\nzdržanie\nzdržanlivo\nzdržanlivosť\nzdržanlivý\nzdržaný\nzdŕžať\nzdržať\nzdrže\nzdrži\nzdržiach\nzdržiavacej\nZdržiavacia\nzdržiavacích\nzdržiavacím\nzdržiavaciu\nzdržiavacou\nzdržiavania\nzdržiavanie\nzdržiavaním\nzdržiavaniu\nzdržiavaný\nzdržiavať\nzdržné\nzdržného\nzdržnému\nzdržnom\nzdržným\nzdržou\nzdržovacej\nzdržovací\nzdržovacia\nzdržovacími\nzdržovaciu\nzdržovacou\nzdržovania\nzdržovanie\nzdržovaním\nzdržovaniu\nzdržovaný\nzdržovať\nzdržujúci\nZDŠ\nzduchaplni\nzduchaplní\nzduchaplnia\nzduchaplniac\nzduchaplnil\nzduchaplnila\nzduchaplnili\nzduchaplnilo\nzduchaplním\nzduchaplnime\nzduchaplníme\nzduchaplníš\nzduchaplniť\nzduchaplnite\nzduchaplníte\nzdúchať\nzdúchla\nzdúchli\nzdúchlo\nzdúchne\nzdúchnem\nzdúchneme\nzdúchneš\nzdúchnete\nzdúchni\nzdúchnime\nzdúchnite\nzdúchnu\nzdúchnuc\nzdúchnuť\nzdúchol\nzduchovnej\nzduchovnejme\nzduchovnejte\nzduchovnejú\nzduchovnejúc\nzduchovnel\nzduchovnela\nzduchovneli\nzduchovnelo\nzduchovnený\nzduchovnie\nzduchovniem\nzduchovnieme\nzduchovnieš\nzduchovnieť\nzduchovniete\nzdupať\nzdupčiť\nzdupkať\nzduplikoval\nzduplikovaný\nzduplikovať\nzdupľoval\nzdupľovala\nzdupľovali\nzdupľované\nzdupľovanie\nzdupľovanú\nzdupľovať\nZdupľujú\nzdúpnieť\nzdupotaj\nzdupotajme\nzdupotajte\nzdupotajúc\nzdupotať\nzdur\nzdurenie\nzdurenina\nzdurený\nzdurieť\nzduriť\nzdurknúť\nzdurný\nzdurovať\nzdurte\nzdusený\nzdusiť\nzduto\nzdutosť\nzduť\nzdutý\nzdúvať\nZduženia\nzduženiam\nzduženiami\nZduženie\nzdužením\nzdužieť\nzdužnieť\nzdvadsaťnásobil\nzdvadsaťnásobiť\nzdvanásťnásobili\nzdveriť\nzdvíhací\nzdvíhač\nzdvíhačov\nzdvíhadlo\nzdvihák\nzdvíhania\nzdvíhanie\nzdvíhaním\nzdvíhaný\nzdvíhať\nzdvih\nzdvihnutia\nzdvihnutie\nzdvihnutím\nzdvihnutiu\nzdvihnúť\nzdvihnutý\nzdvihový\nzdvižný\nzdvojene\nzdvojenie\nzdvojenosť\nzdvojený\nzdvojiť\nzdvojnásobenia\nzdvojnásobenie\nzdvojnásobením\nzdvojnásobeniu\nzdvojnásobený\nzdvojnásobiť\nzdvojnásobnenie\nzdvojnásobnením\nzdvojnásobní\nzdvojnásobnila\nzdvojnásobniť\nzdvojnásobňuje\nzdvojnásobovaní\nzdvojnásobovať\nzdvojovane\nzdvojovania\nzdvojovanie\nzdvojovaniu\nzdvojovaný\nzdvojovať\nzdvorile\nzdvorilejšej\nzdvorilejší\nzdvorilejšia\nzdvorilejšie\nzdvorilejšieho\nzdvorilejšiemu\nzdvorilejších\nzdvorilejším\nzdvorilejšími\nzdvorilejšiu\nzdvorilejšom\nzdvorilejšou\nzdvorilo\nzdvorilosť\nzdvorilostne\nzdvorilostný\nzdvorilostný\nzdvorilosťný\nzdvorilý\nzdýchavičný\nzdýmať\nzdynamizovania\nzdynamizovanie\nzdynamizovaním\nzdynamizovaniu\nzdynamizovaný\nzdynamizovať\nze\nzeatín\nzeaxantín\nzebier\nzebrano\nzebra\nzebrí\nzebroid\nzebu\nzecchino\nzeditoval\nzeditovala\nzeditovali\nzeditovalo\nzeditovať\nzedituj\nzedituje\nzeditujem\nzeditujeme\nzedituješ\nzeditujete\nzeditujme\nzeditujte\nzeditujú\nzeditujúc\nzefektívnenie\nzefektívnený\nzefektívniť\nzefektívňovaní\nzefektívňovania\nzefektívňovanie\nzefektívňovaním\nzefektívňovaniu\nzefektívňovať\nzeffiroso\nzefír\nzefírový\nzefýr\nzefyr\nzeín\nzekonomizovaní\nzekonomizovania\nzekonomizovanie\nzekonomizovať\nZéland\nzelektrifikované\nzelektrifikovať\nzelektrizoval\nzelektrizovala\nzelektrizovali\nzelektrizovalo\nzelektrizovaniu\nzelektrizovaný\nzelektrizovať\nzelektrizuj\nzelektrizuje\nzelektrizujem\nzelektrizujeme\nzelektrizuješ\nzelektrizujete\nzelektrizujme\nzelektrizujte\nzelektrizujú\nzelektrizujúc\nzelena\nzeleňa\nzelenáč\nzelenajúce\nzelenajúci\nZelenák\nZelenáka\nZelenákovi\nzelenanie\nzelenasto\nzelenastý\nzelenať\nzelenavo\nzelenavý\nzeleň\nZeleneč\nzelenického\nZelenický\nzelenieť\nzeleninár\nzeleninárka\nzeleninársky\nzeleninárstvach\nzeleninárstvam\nzeleninárstvo\nzelenina\nzeleninový\nzelenistý\nzeleniť\nzelenkasto\nzelenkastý\nzelenkavo\nzelenkavý\nzeleňmi\nzeleno\nzelenobelasý\nzelenobieleho\nZelenobiely\nzelenobielych\nzeleňoch\nzeleňom\nzelenomodrý\nzeleňov\nzeleňový\nzelenožltý\nzelenšej\nzelenší\nzelenšia\nzelenšie\nzelenšieho\nzelenšiemu\nzelenších\nzelenším\nzelenšími\nzelenšiu\nzelenšom\nzelenšou\nzeleňu\nzelený\nzeler\nzeleri\nzelerový\nzelinár\nzelina\nzelinkár\nzelinkárka\nzelinkársky\nzelinkárstvach\nzelinkárstvam\nzelinkárstvo\nzelinka\nzelinkový\nzelinový\nZelma\nzelóta\nzélotizmus\nzeman\nZemančík\nZemančíka\nZemančíkom\nzemania\nZemaník\nZemaníka\nZemanova\nZemanove\nZemanovej\nZemanovho\nZemanovmu\nZemanovo\nZemanovom\nZemanovou\nZemanovu\nZemanových\nZemanovým\nZemanovými\nzem\nzemediel\nzemeguľa\nzemegulí\nzememerač\nzememeračka\nzememeračský\nzememeračstvo\nzemepán\nzemepis\nzemepisec\nzemepisecky\nzemepisecký\nzemepiskyňa\nzemepisne\nzemepisný\nzemeplaz\nzemeračský\nzemetrasenie\nzemetrasne\nzemetrasný\nzemežlč\nzemiačik\nzemiačka\nzemiačkami\nzemiačkoch\nzemiačkom\nzemiačkov\nzemiačku\nzemiačky\nzemiačnisko\nzemiakáreň\nzemiakárne\nzemiakárni\nzemiakární\nzemiakarský\nzemiakársky\nzemiakárstvach\nzemiakárstvam\nzemiakarstvo\nzemiakárstvo\nzemiak\nzemiakovo\nzemiakový\nzemianka\nZemianskokostoliansky\nzemiansky\nzemianstvach\nzemianstvam\nzemianstvo\nzemičku\nzemina\nzemito\nzemitosť\nzemitý\nzemľanka\nzemne\nZemni\nzemním\nzemno\nzemný\nZemplín\nZemplínčan\nZemplínčanka\nzemplínsky\nzemsky\nzemský\nzen\nzenana\nzend\nzendavesta\nzene\nzenit\nzenitmi\nzenitový\nZenom\nzenu\nzeny\nzeolit\nzeolitom\nzeolitov\nzeolitu\nzeolity\nzepelin\nzerav\nzero\nzestetizovali\nzeta\nZeta\nzetiek\nZetina\nzetka\nZetor\nZetore\nzetormi\nzetoroch\nZetorom\nzetorov\nZetoru\nzetory\nzeugma\nzeurópšteli\nZeus\nzev\nzeví\nzevia\nzeviť\nzexekvovaná\nzexekvovaní\nzexekvovateľný\nzexekvovať\nzextenzívniť\nzextenzívňoval\nzextenzívňovala\nzextenzívňovali\nzextenzívňovalo\nzextenzívňovania\nzextenzívňovať\nzextenzívňuj\nzextenzívňuje\nzextenzívňujem\nzextenzívňujeme\nzextenzívňuješ\nzextenzívňujete\nzextenzívňujme\nzextenzívňujte\nzextenzívňujú\nzextenzívňujúc\nzgagotajúc\nzgagotať\nzgalejníčiť\nzgazdovať\nzgebnúť\nzgegnúť\nzglajchšaltované\nzglajchšaltovaných\nzglajchšaltovať\nzglejenú\nzglejiť\nzglejovať\nzgniavený\nzgniaviť\nzgrgnúť\nzgrgoň\nzgrmaniť\nzgrupovať\nzgúľať\nzgustnúť\nzgustnutý\nzhab\nzhabania\nzhabanie\nzhabaním\nzhabaniu\nzhabaný\nzhabať\nzhabnúť\nzháčený\nzháčiť\nzhačkať\nzhačknúť\nzhačknutie\nzhadený\nzhádzať\nzhadzovania\nzhadzovanie\nzhadzovaný\nzhadzovať\nzháknuť\nzhamkať\nzhamovanie\nzhamovať\nzháňačka\nzháňania\nzháňanie\nzháňaním\nzháňaniu\nzháňaný\nzháňať\nzhandlovať\nzhaniť\nzhánka\nzhanobenie\nzhanobený\nzhanobiteľ\nzhanobiť\nzhárať\nzharmonizovanie\nzharmonizovaniu\nzharmonizovaný\nzharmonizovať\nzhasínač\nzhasínadlo\nzhasínania\nzhasínanie\nzhasínať\nzhasiť\nzhasnutie\nzhasnúť\nzhasnutý\nzhášaní\nzhášania\nzhášanie\nzhášať\nzhatať\nzhatený\nzhatí\nzhatil\nzhatila\nzhatilo\nzhatiť\nzhavarovala\nzhavarovanej\nzhavknúť\nzhavranený\nzhavranieť\nzhíknuť\nzhľadali\nzhľadávať\nzhľadúvaní\nzhľadúvať\nzhlbiny\nzhlboka\nzhliadla\nzhliadli\nzhliadlo\nzhliadne\nzhliadnem\nzhliadneme\nzhliadneš\nzhliadnete\nzhliadni\nzhliadnime\nzhliadnite\nzhliadnu\nzhliadnuc\nzhliadnuť\nzhliadnutia\nzhliadnutý\nzhliadol\nzhlobeného\nzhlobiť\nzhltá\nzhltať\nzhltnutá\nzhltnutí\nzhltnutia\nzhltnutie\nzhltnúť\nZhltnutý\nzhluk\nzhluknutie\nzhluknúť\nzhlukovali\nzhlukovanie\nzhlukovaniu\nzhlukovať\nzhlukujú\nzhlúpieť\nzhlúpnutie\nzhlúpnuť\nzhmlenia\nzhmotnenia\nzhmotnenie\nzhmotnením\nzhmotnený\nzhmotni\nzhmotnieť\nzhmotnime\nzhmotnite\nzhmotniť\nzhmotňovaní\nzhmotňovania\nzhmotňovať\nzhmotňujúce\nzhnednutie\nzhnednúť\nzhnednutý\nzhnisaný\nzhnisať\nzhniť\nzhnitý\nzhnubnosť\nzhnusene\nzhnusenie\nzhnuseno\nzhnusený\nzhnusiť\nzhnusovať\nzhobľovať\nzhoda\nzhodaN\nzhodenie\nzhodený\nzhodiť\nzhodne\nzhodnocovacej\nZhodnocovací\nzhodnocovacie\nzhodnocovacieho\nzhodnocovacím\nzhodnocovacom\nzhodnocovanie\nzhodnocovaný\nzhodnocovateľa\nzhodnocovatelia\nzhodnocovateľov\nzhodnocovať\nzhodnocujúci\nzhodnosť\nzhodnotenie\nzhodnotený\nzhodnotiť\nzhodnoverni\nzhodnoverní\nzhodnovernia\nzhodnoverniac\nzhodnovernil\nzhodnovernila\nzhodnovernili\nzhodnovernilo\nzhodnoverním\nzhodnovernime\nzhodnoverníme\nzhodnoverníš\nzhodnoverniť\nzhodnovernite\nzhodnoverníte\nzhodnoverňoval\nzhodnoverňovala\nzhodnoverňovali\nzhodnoverňovalo\nzhodnoverňovať\nzhodnoverňuj\nzhodnoverňuje\nzhodnoverňujem\nzhodnoverňujeme\nzhodnoverňuješ\nzhodnoverňujete\nzhodnoverňujme\nzhodnoverňujte\nzhodnoverňujú\nzhodnoverňujúc\nZhodnutie\nzhodnúť\nzhodný\nzhodovanie\nzhodovať\nzhodujúci\nzhojenie\nzhojený\nzhojiť\nzhola\nzhon\nzhonobiť\nzhor\nzhora\nzhorčenie\nzhorenie\nzhorenina\nzhoreninový\nzhorenísk\nzhorenisko\nzhorený\nzhorieť\nzhorievajúcej\nzhorieval\nzhorievaná\nzhorknuté\nzhorknutie\nzhorknutou\nzhorknúť\nzhoršenie\nzhoršeniw\nzhoršený\nzhorši\nzhoršime\nzhoršite\nzhoršiť\nzhoršovania\nzhoršovanie\nzhoršovaním\nzhoršovaniu\nzhoršovaný\nzhoršovať\nzhoršujúce\nzhoršujúci\nzhorúca\nzhospodárenie\nzhospodáriť\nzhospodárnení\nzhospodárnenia\nzhospodárnenie\nzhospodárnením\nzhospodárneniu\nzhospodárniť\nzhospodárňovaní\nzhospodárňovania\nzhospodárňovanie\nzhospodárňovaním\nzhospodárňovať\nzhosti\nzhostime\nzhostite\nzhostiť\nzhosťoval\nzhosťovala\nzhosťovali\nzhosťovalo\nzhosťovať\nzhosťuj\nzhosťuje\nzhosťujem\nzhosťujeme\nzhosťuješ\nzhosťujete\nzhosťujme\nzhosťujte\nzhosťujú\nzhosťujúc\nzhotovenie\nzhotovený\nzhotoviteľ\nzhotoviteľovým\nzhotoviť\nzhotovovaná\nzhotovované\nzhotovovaného\nzhotovovanej\nzhotovovaní\nzhotovovania\nzhotovovanie\nzhotovovaním\nzhotovovaných\nzhotovovateľ\nzhotovovateľka\nzhotovovateľský\nzhotovovať\nzhovädilejšej\nzhovädilejší\nzhovädilejšia\nzhovädilejšie\nzhovädilejšieho\nzhovädilejšiemu\nzhovädilejších\nzhovädilejším\nzhovädilejšími\nzhovädilejšiu\nzhovädilejšom\nzhovädilejšou\nzhovädilosť\nzhovädilý\nzhovädiť\nzhováranie\nzhovárať\nzhovenie\nzhovie\nzhovieť\nzhovievavo\nzhovievavosť\nzhovievavý\nzhovorčivo\nzhovorčivosť\nzhovorčivý\nzhrá\nzhrab\nzhrabaní\nzhrabať\nzhrabávať\nzhrabnutie\nzhrabnúť\nzhrabovače\nzhrabovanie\nzhrabovať\nzhrabúvať\nzhraj\nzhrajme\nzhrajte\nzhrajú\nzhrajúc\nzhral\nzhrala\nzhrali\nzhralo\nzhrám\nzhráme\nzhranieť\nzhráš\nzhrať\nzhráte\nzhráva\nzhrávaj\nzhrávajme\nzhrávajte\nzhrávajú\nzhrávajúc\nzhrával\nzhrávala\nzhrávali\nzhrávalo\nzhrávam\nzhrávame\nzhrávaš\nzhrávať\nzhrávate\nzhrbatiť\nzhrbene\nzhrbenie\nzhrbeno\nzhrbený\nzhrbiť\nzhrčať\nzhrčavieť\nzhrčiť\nzhrčkavieť\nzhrda\nzhŕda\nzhŕdať\nzhŕdavo\nzhŕdavý\nzhrdli\nzhrdnúť\nzhrdzaveniu\nzhrdzavený\nzhrdzavieť\nzhrešiť\nzhriaknuť\nzhriať\nzhŕknuť\nzhrkotaj\nzhrkotajme\nzhrkotajte\nzhrkotajúc\nzhrkotať\nzhrm\nzhrmieť\nzhrmotaj\nzhrmotajme\nzhrmotajte\nzhrmotajúc\nzhrmotať\nzhrň\nZhrň\nzhŕňané\nzhŕňaní\nzhŕňaním\nzhŕňať\nzhrnie\nzhrniem\nzhrnieme\nzhrnieš\nzhrniete\nzhrňme\nZhrňme\nzhrňovanie\nzhrnovať\nzhrňovať\nzhrňte\nzhrňujúci\nzhrnutia\nzhrnutie\nzhrnutím\nzhrnutiu\nzhrnúť\nzhrnutý\nzhromaždene\nzhromaždenie\nzhromaždený\nzhromaždi\nzhromaždime\nZhromaždime\nzhromaždísk\nzhromaždisko\nzhromaždišťom\nzhromaždite\nzhromaždiť\nzhromažďovacie\nzhromažďovacieho\nzhromažďovaciemu\nzhromažďovacích\nzhromažďovacom\nzhromažďovane\nzhromažďovanie\nzhromažďovaný\nzhromažďovať\nzhrozene\nzhrozenie\nzhrozený\nzhroziť\nzhruba\nzhrúbky\nzhrubnutie\nzhrubnúť\nzhrýzať\nzhryz\nzhryzovisko\nzhrýzť\nzhub\nzhúb\nzhuba\nzhubca\nzhubcom\nzhubcov\nzhubcu\nzhubiť\nzhubne\nzhubnosť\nzhubný\nzhuč\nzhučať\nzhudobnenie\nzhudobnený\nzhudobni\nzhudobnime\nzhudobnite\nzhudobniť\nzhudobňovať\nzhuknúť\nzhúknuť\nzhumpľovanie\nzhumpľovaniu\nzhumpľovaný\nzhumpľovať\nzhupnúť\nzhurta\nzhurtovaním\nzhurtovať\nzhusta\nzhustene\nzhustenia\nzhustenie\nzhustením\nzhusteniu\nzhustenosť\nzhustený\nzhusti\nzhustime\nzhustite\nzhustiť\nzhustnutie\nzhustnúť\nzhustnutý\nzhusťovaní\nzhusťovania\nzhusťovanie\nzhusťovaním\nzhusťovať\nzhusťujúci\nzhutnenia\nzhutnenie\nzhutneniu\nzhutnený\nzhutni\nzhutnieť\nzhutnime\nzhutnite\nzhutniť\nzhutňovacej\nzhutňovať\nzhutovaním\nzhutovať\nzhúžvané\nzhúžvať\nzhúžve\nzhúžvem\nzhúžveme\nzhúžveš\nzhúžvete\nzhúžvi\nzhúžvime\nzhúžviť\nzhúžvite\nzhúžvu\nzhúžvuc\nzhýbavý\nzhyb\nzhybnúť\nzhybový\nzhýčka\nzhýčkaj\nzhýčkajme\nzhýčkajte\nzhýčkajú\nzhýčkajúc\nzhýčkal\nzhýčkala\nzhýčkali\nzhýčkalo\nzhýčkam\nzhýčkame\nzhýčkaš\nzhýčkať\nzhýčkate\nzhyň\nzhýnať\nzhynie\nzhyniem\nzhynieme\nzhynieš\nzhyniete\nzhyňme\nzhyňte\nzhynutie\nzhynúť\nzhypnotizovaná\nzhypnotizovaní\nzhypnotizovaním\nzhypnotizovať\nzhýralec\nzhýralejšej\nzhýralejší\nzhýralejšia\nzhýralejšie\nzhýralejšieho\nzhýralejšiemu\nzhýralejších\nzhýralejším\nzhýralejšími\nzhýralejšiu\nzhýralejšom\nzhýralejšou\nzhýralosť\nzhýralý\nzhyzdi\nzhyzdiť\nzhyzďovať\nziabnuť\nziapať\nziapnuť\nziať\nzicflajš\nzidealizovaný\nzidealizovať\nzidelaizovať\nzidentifikovať\nzídený\nzideologizovali\nzideologizovaného\nzideologizovanie\nzideologizovaných\nzíduc\nziel\nzikkurat\nzím\nzima\nZimbabwčan\nZimbabwčanka\nZimbabwe\nzimbabwiansky\nzimísk\nzimisko\nzimiť\nzimnica\nzimnične\nzimničný\nzimník\nzimno\nzimný\nzimomrav\nzimomravieť\nzimomravo\nzimomravosť\nzimomravý\nzimomriavkach\nzimomriavkam\nzimomriavky\nzimovanie\nzimovať\nzimovísk\nzimovisko\nzimozel\nzimozele\nzimozeleň\nzimozelne\nzimprovizovať\nzimúvať\nZín\nzinač\nzinačiť\nzinakade\nzinakadiaľ\nZina\nzindustrializovať\nzinjantrop\nzinkasovania\nzinkasovanie\nzinkasovaním\nzinkasovaný\nzinkasovať\nZinke\nzinkit\nzinkované\nzinkovanej\nzinkovaní\nzinkovania\nzinkovanie\nzinkovaním\nzinkovaných\nzinkovať\nzinkovňa\nzinkovne\nzinkovni\nzinkovní\nzinkovňu\nzinkovo\nzinkový\nzinkoxid\nzinočnatan\nzinočnatý\nzinokade\nzinokiaľ\nzinok\nzinscenoval\nzinscenovala\nzinscenovali\nzinscenovalo\nzinscenovania\nzinscenovanie\nzinscenovaním\nzinscenovaný\nzinscenovať\nzinštrumentovať\nzintenzívnená\nzintenzívneného\nzintenzívnenej\nzintenzívnenie\nzintenzívnenom\nzintenzívnenou\nzintenzívnenú\nzintenzívnených\nzintenzívnieť\nzintenzívniť\nzintenzívňovaní\nzintenzívňovania\nzintenzívňovanie\nzintenzívňovaniu\nzintenzívňovať\nzintenzívňujúci\nzinternacionalizovaním\nzinternacionalizovať\nzintímnieť\nzintímniť\nzintímňovať\nzinventarizovaný\nzinventarizovať\nzipovať\nzippeit\nZippom\nZippu\nzippus\nzipsami\nzips\nzipsový\nzirkón\nzirkónia\nzirkónium\nzironizovať\nziskami\nzískane\nzískanieN\nzískaný\nzískateľný\nzískať\nzískavajúci\nzískavanie\nzískavaný\nzískavať\nzisk\nziskovo\nziskovosť\nziskový\nziskubažný\nziskuchtivec\nziskuchtivo\nziskuchtivosť\nziskuchtivý\nzisky\nzistene\nzistenie\nzistený\nzisti\nzistime\nzistite\nzistiteľný\nzistiť\nzisťovací\nzisťovane\nzisťovanie\nzisťovaný\nzisťovať\nzísť\nzištne\nzištník\nzištnosť\nzištný\nZít\nZita\nZiva\nzívanie\nzívaný\nzívať\nzive\nzíveriť\nzivkať\nzívnutie\nzívnutím\nzívnuť\nZivu\nZivy\nzízanie\nzízaný\nzízať\nzjač\nzjačať\nzjajknúť\nzjalovieť\nzjančiť\nzjarčiť\nzjari\nzjarmiť\nzjasať\nzjasnená\nzjasnení\nzjasnenie\nzjasni\nzjasnieť\nzjasnieva\nzjasnievaj\nzjasnievajme\nzjasnievajte\nzjasnievajú\nzjasnievajúc\nzjasnieval\nzjasnievala\nzjasnievali\nzjasnievalo\nzjasnievam\nzjasnievame\nzjasnievaš\nzjasnievať\nzjasnievate\nzjasnime\nzjasnite\nzjasniť\nzjasňovaní\nzjasňovať\nzjastriť\nzjašene\nzjašenec\nzjašenejšie\nzjašenejší\nzjašenosť\nzjašený\nzjašiť\nzjatrenej\nzjatriť\nzjatrovať\nzjav\nzjavenie\nzjavený\nzjavi\nzjavisko\nzjaviť\nzjavne\nzjavnejšie\nzjavnejší\nzjavnosť\nzjavný\nzjavované\nzjavovania\nzjavovať\nzjazdami\nzjazdár\nzjazdárka\nzjazdársky\nzjazdárstvach\nzjazdárstvam\nzjazdárstvo\nzjazd\nzjazdnosť\nzjazdný\nzjazdovka\nzjazdový\nzjazvenie\nzjazvený\nzjazvi\nzjazvime\nzjazvite\nzjazviť\nzjazvovať\nzjedá\nzjedaj\nzjedajme\nzjedajte\nzjedajú\nzjedajúc\nzjedám\nzjedáme\nzjedáš\nzjedáte\nzjedať\nzjedene\nzjedenie\nzjedený\nzjednaná\nzjednané\nzjednaného\nzjednanej\nzjednania\nzjednanie\nzjednaním\nzjednaniu\nzjednanú\nzjednaných\nzjednanými\nzjednať\nzjednávané\nzjednávaní\nzjednávania\nzjednávanie\nzjednávaniu\nzjednávaných\nzjednávať\nzjednocovací\nzjednocovaná\nzjednocovanie\nzjednocovateľ\nzjednocovateľka\nzjednocovateľský\nzjednocovať\nzjednocujúci\nzjednodušenejšie\nzjednodušenejší\nzjednodušene\nzjednodušenie\nzjednodušenosť\nzjednodušený\nzjednodušený\nzjednodušiť\nzjednodušované\nzjednodušovaní\nzjednodušovania\nzjednodušovanie\nzjednodušovaním\nzjednodušovaniu\nzjednodušovať\nzjednodušujúco\nzjednoslovňovanie\nzjednotene\nzjednotenie\nzjednotenosť\nzjednotený\nzjednotiteľ\nzjednotiteľský\nzjednotiť\nzjemene\nzjemn\nzjemnene\nzjemnenejšie\nzjemnenie\nzjemnenosť\nzjemnený\nzjemni\nzjemniaci\nzjemnieť\nzjemnime\nzjemnite\nzjemniť\nzjemnňoval\nzjemnňovala\nzjemnňovali\nzjemnňovalo\nzjemnňovať\nzjemnňuj\nzjemnňuje\nzjemnňujem\nzjemnňujeme\nzjemnňuješ\nzjemnňujete\nzjemnňujme\nzjemnňujte\nzjemnňujú\nzjemnňujúc\nzjemňovania\nzjemňovanie\nzjemňovaným\nzjemňovať\nzjesť\nzježený\nzježiť\nzjojč\nzjojčať\nzjojči\nzjojčime\nzjojčite\nzjojkať\nzjojknúť\nzkomplikoval\nzkomplikovala\nzkomplikovali\nzkomplikovalo\nzkomplikuje\nzkonvertované\nzlác\nzláce\nzlácem\nzláceme\nzláceš\nzlácete\nzlácme\nzlacnenie\nzlacnený\nzlacni\nzlacnieť\nzlacnime\nzlacnite\nzlacniť\nzlacňovaní\nzlacňovania\nzlacňovaniami\nzlacňovanie\nzlacňovaním\nzlacňovaniu\nzlacňovať\nzlácte\nzlácu\nzlácuc\nzlačnel\nzlačnieť\nzladene\nzladenie\nzladenosť\nzladený\nzladiť\nzlaďované\nzlaďovaní\nzlaďovania\nzlaďovanie\nzlaďovaním\nzlaďovaniu\nzľadovatený\nzľadovatieť\nzlaďovať\nzľadovej\nzľadovejme\nzľadovejte\nzľadovejú\nzľadovejúc\nzľadovel\nzľadovela\nzľadoveli\nzľadovelo\nzľadovie\nzľadoviem\nzľadovieme\nzľadovieš\nzľadovieť\nzľadoviete\nzľahčená\nzľahčení\nzľahčenie\nzľahčením\nzľahčeniu\nzľahčenú\nzľahči\nzľahčieť\nzľahčime\nzľahčite\nzľahčiť\nzľahčovania\nzľahčovanie\nzľahčovaním\nzľahčovaniu\nzľahčovaný\nzľahčovať\nzľahčujúcejšej\nzľahčujúcejší\nzľahčujúcejšia\nzľahčujúcejšie\nzľahčujúcejšieho\nzľahčujúcejšiemu\nzľahčujúcejších\nzľahčujúcejším\nzľahčujúcejšími\nzľahčujúcejšiu\nzľahčujúcejšom\nzľahčujúcejšou\nzľahčujúci\nzľahčujúco\nzľahka\nzľahnuté\nzľahnutí\nzľahnúť\nzlahodiť\nzľahostajnieť\nzľahučka\nzlajdáčiť\nzlákanie\nzlákaný\nzlákať\nzľaknutia\nzľaknutie\nzľaknutím\nzľaknuto\nzľaknutosť\nzľaknúť\nzľaknutý\nzlakomiť\nzláma\nzlámaj\nzlámajme\nzlámajte\nzlámajú\nzlámajúc\nzlámam\nzlámame\nzlámaný\nzlámaš\nzlámate\nzlámať\nzlámme\nzlamovaciu\nzlámte\nzlanárená\nzlanáril\nzlanárila\nzlanárili\nzlanáriť\nzlap\nZlapanie\nzlapanom\nzlapať\nzlapiť\nzlat\nzlať\nzlát\nzlaták\nzlátanina\nzlátať\nzlátené\nzlatenia\nzlatenie\nzlateniek\nzlátenie\nzlateniu\nzlatenko\nzlatený\nZlatica\nzlátič\nzlatíčko\nzlatieť\nZlatina\nzlatinizovať\nzlatisto\nzlatistý\nzlatiť\nzlátiť\nzlatkavé\nzlatka\nZlatko\nzlatko\nZlatna\nZlatná\nZlatnej\nzlatnícky\nzlatníctvach\nzlatníctvam\nzlatníctvo\nzlatníčka\nzlatník\nZlatníky\nZlatno\nzlatnonosnosť\nzlatnúť\nzlatobažný\nzlatobyľami\nzlatobyľ\nzlatobyle\nzlatobyli\nzlatobylí\nzlatobyliach\nzlatobyliam\nzlatobyľou\nzlatočervený\nzlatofialový\nzlatohlávka\nzlatohlávok\nzlatohnedý\nzlatoidčianskou\nzlatojasný\nzlatokop\nzlatokopecký\nzlatokopectvo\nzlatokopi\nzlato\nzlatomoravský\nzlatoň\nzlatone\nzlatonosnosť\nzlatonosný\nzlatoočka\nzlatooranžovú\nzlatoplodý\nzlatorez\nzlatorodný\nzlatoružový\nzlatosť\nzlatotepec\nzlatotepecký\nzlatotepectvo\nzlatotlač\nzlatoústy\nzlatovláska\nzlatovlasý\nZlatovská\nZlatovského\nZlatovskej\nZlatovskú\nzlatozelene\nzlatozelený\nzlatožltý\nzlatšej\nzlatší\nzlatšia\nzlatšie\nzlatšieho\nzlatšiemu\nzlatších\nzlatším\nzlatšími\nzlatšiu\nzlatšom\nzlatšou\nzlatučký\nzlatulinký\nzlatunký\nZlatuša\nZlatuše\nzlatušiek\nzlatuško\nzlatušký\nZlaty\nzlatý\nzľava\nzľava\nzľavenie\nzľavením\nzľavený\nzľaviť\nzľavnený\nZľavovanie\nzľavovať\nzle\nzleivárenský\nZlejší\nzlejúce\nzlejúci\nzlenivenie\nzlenivieť\nzleňošiť\nzlepenec\nzlepenie\nzlepenina\nzlepený\nzlepiť\nzlepovanie\nzlepovaný\nzlepovať\nzlepšenie\nzlepšený\nzlepši\nzlepšime\nzlepšite\nzlepšiť\nzlepšovací\nzlepšovák\nzlepšovanie\nzlepšovaný\nzlepšovateľ\nzlepšovateľka\nzlepšovateľský\nzlepšovateľstvo\nzlepšovať\nzlet\nzleť\nzletieť\nzletovať\nzletu\nzletúvať\nzlezba\nzlezeň\nzlezenie\nzliata\nzliate\nzliateho\nzliati\nzliatí\nzliatina\nzliatinový\nzliatkoch\nzliatkom\nzliatkov\nzliatku\nzliatky\nzliatok\nzliatom\nzliatou\nzliatu\nzliať\nzliaty\nzliatych\nzliav\nzlícovaný\nZliechov\nzlieniť\nzliepanie\nzliepaný\nzliepať\nzlietať\nzlietava\nzlietavaj\nzlietavajme\nzlietavajte\nzlietavajú\nzlietavajúc\nzlietaval\nzlietavala\nzlietavali\nzlietavalo\nzlietavam\nzlietavame\nzlietavaš\nzlietavať\nzlietavate\nzlietnutie\nzlietnuť\nzlievacej\nzlievač\nzlievačka\nzlievačský\nzlievačstvo\nzlievajúci\nzlievanie\nzlievareň\nzlieváreň\nzlievárenský\nzlievarenský\nzlievárenský\nzlievarenstvo\nzlievárenstvo\nzlievarňach\nzlievárňach\nzlievarňam\nzlievárňam\nZlievárňam\nzlievať\nZlievce\nZlievciach\nzlievky\nzliezať\nzliezť\nzlikvidovania\nzlikvidovanie\nzlikvidovaním\nzlikvidovaniu\nzlikvidovaný\nzlikvidovať\nZlín\nzlisovaním\nzlisovaný\nzlisovať\nzlízať\nzlízla\nzlízli\nzlízne\nzlízneme\nzlíznu\nzlíznuť\nzliznúť\nzlízol\nzlôb\nzloba\nZlobinom\nzlobný\nzločin\nzločinec\nzločinecky\nzločinecký\nzločinne\nzločinnosť\nzločinný\nzlodej\nzlodejčina\nzlodejina\nzlodejine\nzlodejinou\nzlodejinu\nzlodejiny\nzlodejka\nzlodejsky\nzlodejský\nzlodejstvo\nzloduch\nzlojovatieť\nzlo\nzlom\nzlomcovať\nzlomene\nzlomenejšie\nzlomenejší\nzlomenie\nzlomenina\nzlomenosť\nzlomený\nzlomisko\nzlomiť\nzlomkovistosť\nzlomkovite\nzlomkovito\nzlomkovitosť\nzlomkovitý\nzlomkovo\nzlomkový\nzlomkrk\nzlomkrky\nzlomok\nzlomovo\nzlomový\nzlomoz\nzlomyseľ\nzlomyseľne\nzlomyseľnejšie\nzlomyseľnejší\nzlomyseľnícky\nzlomyseľníčka\nzlomyseľník\nzlomyseľnosť\nzlomyseľný\nzlopnúť\nzlopovestne\nzlopovestnejšie\nzlopovestnejší\nzlopovestný\nzloprajník\nzloprajný\nzlorečenec\nzlorečenie\nzlorečiaci\nzlorečiť\nzlosovací\nzlosovaná\nzlosované\nzlosovaní\nzlosovania\nzlosovanie\nzlosovaním\nzlosovateľný\nzlosovať\nZlostením\nzlostime\nzlostiplný\nzlostite\nzlostiť\nzlosť\nzlostne\nzlostnejšie\nzlostnejší\nzlostník\nzlostný\nzlosyn\nzlota\nzloty\nzlotý\nzlovestne\nzlovestnejšie\nzlovestnejší\nzlovestný\nzlovôľach\nzlovôľam\nzlovôľa\nzlovôlí\nzlovoľne\nzlovoľnejšie\nzlovoľnejší\nzlovoľnosť\nzlovoľný\nzloziť\nzlozvyk\nzložene\nzloženie\nzloženina\nzloženka\nzložený\nzložený\nzložite\nzložitejšie\nzložitejšíPF\nzložiteľ\nzložiteľa\nzložitelia\nzložiť\nzložito\nzložitoabiturientsky\nzložitosť\nzložitý\nzložka\nzložkovo\nzložkový\nzložné\nzľúbať\nzľúbiť\nzlúčenie\nzlúčenina\nzlúčený\nzlučiteľne\nzlúčiteľne\nzlučiteľnosť\nzlučiteľný\nzlúčiteľný\nzlúčiť\nzlučovací\nzlučovač\nzlučovane\nzlučovanie\nzlučovaný\nzlučovať\nzľudovené\nzľudovieť\nzľudštej\nzľudštejme\nzľudštejte\nzľudštejú\nzľudštejúc\nzľudštel\nzľudštela\nzľudšteli\nzľudštelo\nzľudšti\nzľudštie\nzľudštiem\nzľudštieme\nzľudštieš\nzľudštieť\nzľudštiete\nzľudštime\nzľudštite\nzľudštiť\nzľudšťovať\nzluftovali\nzlumpáčený\nzlumpačil\nzlumpáčiť\nzlumpovaný\nzlumpovať\nzlúpať\nzlúpiť\nzlupkať\nzlúpnuť\nzlupovať\nzľútiť\nzľutovanie\nzľutovať\nzľutovnica\nzľuvotnica\nzlyhajúcimi\nzlyhanie\nzlyhať\nzlyhávajúcim\nzlyhávaní\nzlyhávania\nzlyhávanie\nzlyhávaniu\nzlyhávať\nzlynčovania\nzlynčovať\nzlý\nzmáčaný\nzmáčať\nzmädliť\nzmagnetizovaním\nzmagnetizovaný\nzmagnetizovať\nzmáhaný\nzmáhať\nzmachnatieť\nzmachnatievať\nzmajstrovať\nzmäkčenia\nzmäkčenie\nzmäkčením\nzmäkčeniu\nzmäkčený\nzmäkči\nzmäkčilý\nzmäkčime\nzmäkčite\nzmäkčiť\nzmäkčovací\nzmäkčovač\nzmäkčovače\nzmäkčovačmi\nzmäkčovadlo\nzmäkčované\nzmäkčovaní\nzmäkčovania\nzmäkčovanie\nzmäkčovaním\nzmäkčovaniu\nzmäkčovať\nzmäkčujúci\nzmäknutí\nzmäknutie\nzmäknúť\nzmäkušiť\nzmalátnieť\nzmalátniť\nzmalátňovať\nzmalomyseľnení\nzmalomyseľnieť\nzmaľovať\nzmámený\nzmámiť\nzmangľovať\nzmanipulovania\nzmanipulovanie\nzmanipulovaním\nzmanipulovaniu\nzmanipulovaný\nzmanipulovať\nzmapovania\nzmapovanie\nzmapovaním\nzmapovaniu\nzmapovaný\nzmapovať\nzmárať\nzmar\nzmarenia\nzmarenie\nzmarením\nzmareniu\nzmarený\nzmariť\nzmárniť\nzmarte\nzmasakrované\nzmasakrovanie\nzmasakrovaných\nzmasakrovať\nzmasírovať\nzmasovel\nzmasovenie\nzmasti\nzmastime\nzmastite\nzmastiť\nzmátaný\nzmátať\nzmatematizovanie\nzmatematizovať\nzmätene\nzmätenejšie\nzmätenejší\nzmätenie\nzmäteno\nzmätenosť\nzmätený\nzmaterializovať\nzmätkár\nzmätkovanie\nzmätkovať\nzmätkovo\nzmätkový\nzmatnieť\nzmätočne\nzmätočnosť\nzmätočný\nzmätok\nzmatovať\nzmaturovať\nzmazane\nzmazanie\nzmazaný\nzmazateľný\nzmazať\nzmazávanie\nzmazávaním\nzmazávať\nzmdlený\nzmeč\nzmedzinárodnel\nzmedzinárodnenia\nzmedzinárodnenie\nzmedzinárodnený\nzmedzinárodni\nzmedzinárodnime\nzmedzinárodnite\nzmedzinárodniť\nzmedzinárodňovať\nzmechanizovania\nzmechanizovanie\nzmechanizovaný\nzmechanizovať\nzmel\nzmeliť\nzmenáreň\nzmenárenský\nzmenárenstvo\nzmenárňach\nzmenárňam\nzmenárnictva\nzmenárnička\nzmenárnik\nzmena\nzmenečne\nzmenečné\nzmenečného\nzmenečník\nzmenečným\nzmenenia\nzmenenie\nzmenením\nzmenený\nzmeniaci\nzmeniteľne\nzmeniteľnosť\nzmeniteľný\nzmeniť\nzmenka\nzmenkovník\nzmenkovníka\nzmenkovo\nzmenkový\nzmennosť\nzmeňovať\nzmenový\nzmenšene\nzmenšenieN\nzmenšenina\nzmenšený\nzmenši\nzmenšime\nzmenšite\nzmenšiť\nzmenšovacej\nzmenšovač\nzmenšovaní\nzmenšovania\nzmenšovanie\nzmenšovaním\nzmenšovaniu\nzmenšovať\nzmenšujúceho\nzmenšujúci\nzmeňujúce\nzmerania\nzmeranie\nzmeraním\nzmeraný\nzmerateľný\nzmerať\nzmerať\nzmeravene\nzmeravenejšie\nzmeravenie\nzmeraveno\nzmeravenosť\nzmeravený\nzmeravieť\nzmeriavať\nzmeriť\nzmerkantilizovať\nzmes\nzmeska\nzmesový\nzmesti\nzmestime\nzmestite\nzmestiť\nzmeškania\nzmeškanie\nzmeškaním\nzmeškaniu\nzmeškaný\nzmeškať\nzmeták\nzmetať\nZmetenie\nzmeteniu\nzmetený\nzmiasť\nzmieňať\nzmienený\nzmieniť\nzmienka\nzmieňovaný\nzmieňovať\nzmierajúci\nzmierať\nzmier\nzmierca\nzmierenie\nzmierený\nzmieriteľný\nzmieriť\nzmierlivo\nzmierlivosť\nzmierlivý\nzmierneli\nzmiernene\nzmiernenie\nzmiernený\nzmiernie\nzmierniť\nzmierňovacích\nzmierňované\nzmierňovaní\nzmierňovania\nzmierňovanie\nzmierňovaním\nzmierňovaniu\nzmierňovať\nzmierňujúci\nzmierny\nzmierovací\nzmierovač\nzmierovania\nzmierovanie\nzmierovateľa\nzmierovateľom\nzmierovať\nzmies\nzmiesi\nzmiesia\nzmiesiac\nzmiesil\nzmiesila\nzmiesili\nzmiesilo\nzmiesim\nzmiesime\nzmiesiš\nzmiesiť\nzmiesite\nzmiesme\nzmieste\nzmiesť\nzmiešane\nzmiešanie\nzmiešanina\nzmiešanosť\nzmiešaný\nzmiešať\nzmiešavací\nzmiešavacia\nzmiešavacie\nzmiešavane\nzmiešavaní\nzmiešavania\nzmiešavanie\nzmiešavaním\nzmiešavaniu\nzmiešavať\nzmietajúca\nzmietajúce\nzmietajúceho\nzmietajúcej\nzmietajúcemu\nzmietajúci\nzmietajúcich\nzmietajúcim\nzmietajúcimi\nzmietajúcu\nzmietania\nzmietanie\nzmietaný\nzmietať\nzmietnutia\nzmietnutie\nzmietnuť\nzmietnutý\nzmijach\nzmijam\nzmija\nzmijí\nzmilitarizovať\nzmilovanie\nzmilovaný\nzmilovať\nzmilúvam\nzmilúvaš\nzmilúvať\nzminimalizovaniu\nzminimalizovať\nzmítorený\nzmizíka\nzmiznutá\nzmiznuté\nzmiznutého\nzmiznutej\nzmiznutému\nzmiznutí\nzmiznutia\nzmiznutiam\nzmiznutie\nzmiznutím\nzmiznutiu\nzmiznutom\nzmiznúť\nzmiznutých\nzmiznutým\nzmiznutými\nZmiznutý\nzmladenie\nzmladením\nzmladi\nzmladiť\nzmladnúť\nzmladzovací\nzmladzovať\nzmľandravieť\nzmlátený\nzmlátiť\nzmliaždiť\nzmlie\nzmlieť\nzmĺkať\nzmĺknuto\nzmĺknuť\nzmĺknutý\nzmlúv\nzmluva\nzmluvn\nzmluvne\nzmluvno\nzmluvný\nzmnohonábňoval\nzmnohonábňovala\nzmnohonábňovali\nzmnohonábňovalo\nzmnohonábňovať\nzmnohonábňuj\nzmnohonábňuje\nzmnohonábňujem\nzmnohonábňujeme\nzmnohonábňuješ\nzmnohonábňujete\nzmnohonábňujme\nzmnohonábňujte\nzmnohonábňujú\nzmnohonábňujúc\nzmnohonáboval\nzmnohonábovala\nzmnohonábovali\nzmnohonábovalo\nzmnohonábovať\nzmnohonábuj\nzmnohonábuje\nzmnohonábujem\nzmnohonábujeme\nzmnohonábuješ\nzmnohonábujete\nzmnohonábujme\nzmnohonábujte\nzmnohonábujú\nzmnohonábujúc\nzmnohonásobenia\nzmnohonásobiť\nzmnohonásobni\nzmnohonásobnime\nzmnohonásobnite\nzmnohonásobniť\nzmnohonásobňovať\nzmnohonásobovať\nzmnožené\nzmnožení\nzmnoženie\nzmnožením\nzmnožiť\nzmnožovali\nzmnožovania\nzmnožovať\nzmnožuje\nZmnožujú\nzmobilizovanej\nzmobilizovaní\nzmobilizovania\nzmobilizovanie\nZmobilizovaním\nzmobilizovať\nzmocnenec\nzmocnenie\nzmocnený\nzmocni\nzmocnieť\nzmocnime\nzmocnite\nzmocniteľ\nzmocniteľka\nzmocniť\nzmocňovací\nzmocňovania\nzmocňovanie\nzmocňovaním\nzmocňovateľ\nzmocňovateľka\nzmocňovať\nZmocňujúce\nzmôcť\nzmoč\nzmočí\nzmočia\nzmočiac\nzmočil\nzmočila\nzmočili\nzmočilo\nzmočím\nzmočíme\nzmočíš\nzmočiť\nzmočíte\nzmočme\nzmočte\nzmodeloval\nzmodernizovania\nzmodernizovanie\nzmodernizovaním\nzmodernizovaniu\nzmodernizovaný\nzmodernizovať\nzmodifikuje\nzmodrala\nzmodravieť\nzmodrej\nzmodrejme\nzmodrejte\nzmodrejú\nzmodrejúc\nzmodrieť\nzmohutnenie\nzmohutneniu\nzmohutnieť\nzmok\nzmoknutie\nzmoknúť\nzmoknutý\nzmoky\nzmonitoroval\nzmonitorovala\nzmonitorovali\nzmonitorovalo\nzmonitorovať\nzmonitoruj\nzmonitoruje\nzmonitorujem\nzmonitorujeme\nzmonitoruješ\nzmonitorujete\nzmonitorujme\nzmonitorujte\nzmonitorujú\nzmonitorujúc\nzmonopolizované\nZmonopolizovanie\nzmonopolizovať\nzmontovanie\nzmontovaním\nzmontovaniu\nzmontovaný\nzmontovať\nzmor\nzmordovaný\nzmordovať\nzmorený\nzmorený\nzmoriť\nzmorte\nZMOS\nzmotanie\nzmotanina\nzmotaný\nzmotať\nzmotávanie\nzmotávať\nzmotnieť\nzmotniť\nzmotorizovať\nzmôž\nzmôžuc\nzmrač\nzmračený\nzmrákanie\nzmrákať\nzmraštenie\nzmraštený\nzmrašti\nzmraštime\nzmraštite\nzmraštiť\nzmrašťovanie\nzmrašťovať\nzmravnenie\nzmravni\nzmravnieť\nzmravnime\nzmravnite\nzmravniť\nzmravňovanie\nzmravňovať\nzmrazenia\nzmrazenie\nzmrazením\nzmrazeniu\nzmrazený\nzmraziť\nzmrazovací\nzmrazovač\nzmrazované\nzmrazovaní\nzmrazovania\nzmrazovanie\nzmrazovaním\nzmrazovaniu\nzmrazovaných\nzmrazovať\nzmrhať\nzmrieť\nzmrk\nzmrkanie\nzmrkať\nzmrkávať\nzmrknutie\nzmrknúť\nzmrky\nzmrštenie\nzmrštením\nzmršteniu\nzmŕštený\nzmršti\nzmrštime\nzmrštite\nzmrštiť\nzmŕštiť\nzmršťovať\nzmŕšťovať\nzmŕtvenie\nzmŕtvieť\nzmŕtviť\nzmŕtvych\nzmŕtvychvstanie\nzmrviť\nzmrzačenie\nzmrzačený\nzmrzačiť\nzmrzačovať\nzmŕzať\nzmrzliak\nzmrzlinár\nzmrzlináreň\nzmrzlinárka\nzmrzlinárňach\nzmrzlinárňam\nzmrzlinársky\nzmrzlina\nzmrzlinový\nzmrzloš\nzmrzlých\nzmrznutia\nzmrznutie\nzmrznutosti\nzmrznúť\nzmrznutý\nzmučene\nzmučený\nzmúčnatieť\nzmúdrej\nzmúdrejme\nzmúdrejte\nzmúdrejú\nzmúdrejúc\nzmúdrenia\nzmúdrenie\nzmúdrieť\nzmuštovať\nzmúteno\nzmútený\nzmútiť\nzmútnieť\nzmužile\nzmužilo\nzmužilosť\nzmužilý\nzmužnieť\nzmydelnenia\nzmydelnenie\nzmydelni\nzmydelniť\nzmydelňovaní\nzmydelňovanie\nzmydeľňovať\nzmydelňovať\nzmydelňujúci\nzmydliť\nzmyknúť\nzmýlený\nzmýliť\nzmyselnejší\nzmyselne\nzmyselník\nzmyselnosť\nzmyselný\nzmysel\nzmyselN\nzmyslieť\nzmyslove\nzmyslovo\nzmyslovosť\nzmyslový\nzmysluplne\nzmysluplnejší\nzmysluplnosť\nzmysluplnšej\nzmysluplnší\nzmysluplnšia\nzmysluplnšie\nzmysluplnšieho\nzmysluplnšiemu\nzmysluplnších\nzmysluplnším\nzmysluplnšími\nzmysluplnšiu\nzmysluplnšom\nzmysluplnšou\nzmysluplný\nzmyšený\nzmyšiť\nzmýšľajúceho\nzmýšľajúci\nzmýšľajúcich\nzmýšľanie\nzmýšľaný\nzmýšľať\nzmyť\nzmytý\nzmývaná\nzmývaní\nzmývanie\nzmývať\nzn\nzN\nZN\nznačené\nznačenej\nznačenie\nznačenou\nznačenú\nznačených\nznačenými\nznačiť\nznačkár\nznačkárka\nznačkársky\nznačkárstvach\nznačkárstvam\nznačkárstvo\nznačka\nznačkovací\nznačkovač\nznačkovania\nznačkovanie\nznačkovaním\nznačkovaniu\nznačkovaný\nznačkovať\nznačkovo\nznačkový\nznačne\nznačný\nznad\nznáhla\nznáhliť\nznachor\nznajúci\nznakár\nznakárka\nznakársky\nznak\nznakovite\nznakovo\nznakovosť\nznakový\nznalcove\nznalcovia\nznalec\nznalecky\nznalecký\nznalectva\nznalectvo\nznalečné\nznalejší\nznalejším\nznalkyňa\nznalosť\nznalostný\nznalý\nznámejší\nznamenajúci\nznamenajúcou\nZnamenák\nZnamenáka\nznamenaných\nznamenať\nznamenie\nznamenite\nznamenitejšíF\nznamenito\nznamenitosť\nznamenitý\nznamienko\nznamienok\nznámka\nznámkovací\nznámkoval\nznámkovala\nznámkovali\nznámkovalo\nznámkovaní\nznámkovania\nznámkovanie\nznámkovaním\nznámkovaniu\nznámkovať\nznámkovňa\nznámkový\nznámkuj\nznámkuje\nznámkujem\nznámkujeme\nZnámkujeme\nznámkuješ\nznámkujete\nznámkujme\nznámkujte\nznámkujú\nznámkujúc\nznámosť\nznámy\nznáročnení\nznáročnenie\nznárodnenie\nznárodnený\nznárodni\nznárodnieť\nznárodnime\nznárodnite\nznárodniť\nznárodňovací\nznárodňovacie\nznárodňovacieho\nznárodňovacích\nznárodňovacím\nznárodňovacom\nznárodňovaní\nznárodňovania\nznárodňovanie\nznárodňovaním\nznárodňovaniu\nznárodňovaných\nznárodňovať\nznásilnenie\nznásilnený\nznásilni\nznásilnime\nznásilnite\nznásilniť\nznásilňovania\nznásilňovanie\nznásilňovaním\nznásilňovaný\nznásilňovateľ\nznásilňovať\nznásobene\nznásobenia\nznásobenie\nznásobením\nznásobeniu\nznásobený\nznásobiť\nznásobované\nznásobovaní\nznásobovania\nznásobovanie\nznásobovaním\nznásobovaniu\nznásobovať\nznášajúci\nznášané\nznášaní\nznášania\nznášanie\nznášaním\nznášaniu\nznášanlivo\nznášanlivosť\nznášanlivý\nznášaným\nznášať\nznáška\nznáškový\nzňať\nznateľne\nznateľný\nznať\nznav\nznavený\nznaviť\nznavu\nznázorenené\nznázornene\nznázornenie\nznázornený\nznázorni\nznázornime\nznázornite\nznázorniť\nznázorňovaná\nznázorňovanie\nznázorňovaním\nznázorňovať\nznázorňujúca\nznázorňujúce\nznázorňujúcej\nznázorňujúci\nznázorňujúcich\nznázorňujúcim\nznázorňujúcu\nZNB\nznebezpečiť\nznebezpečnenie\nznebezpečniť\nznecitlivejúci\nznecitlivenie\nznecitlivený\nznecitlivieť\nznecitliviť\nznečistenie\nznečistenina\nznečistený\nznečisti\nznečistime\nznečistite\nznečistiť\nznečisťovaná\nznečisťované\nznečisťovanie\nznečisťovaných\nznečisťovateľ\nznečisťovateľka\nznečisťovať\nznečisťujúci\nzneďaleka\nznedeľnieva\nznedeľnievaj\nznedeľnievajme\nznedeľnievajte\nznedeľnievajú\nznedeľnievajúc\nznedeľnieval\nznedeľnievala\nznedeľnievali\nznedeľnievalo\nznedeľnievam\nznedeľnievame\nznedeľnievaš\nznedeľnievať\nznedeľnievate\nznedo\nznefunkčni\nznefunkční\nznefunkčnia\nznefunkčniac\nznefunkčnil\nznefunkčnila\nznefunkčnili\nznefunkčnilo\nznefunkčním\nznefunkčnime\nznefunkčníme\nznefunkčníš\nznefunkčniť\nznefunkčnite\nznefunkčníte\nznefunkčňoval\nznefunkčňovala\nznefunkčňovali\nznefunkčňovalo\nznefunkčňovať\nznefunkčňuj\nznefunkčňuje\nznefunkčňujem\nznefunkčňujeme\nznefunkčňuješ\nznefunkčňujete\nznefunkčňujme\nznefunkčňujte\nznefunkčňujú\nznefunkčňujúc\nznehodnocovacej\nznehodnocovacieho\nznehodnocovacom\nznehodnocovania\nznehodnocovanie\nznehodnocovaním\nznehodnocovaniu\nznehodnocovaný\nznehodnocovať\nznehodnotene\nznehodnotenieN\nznehodnotený\nznehodnotiť\nznehybnenia\nznehybnenie\nznehybnením\nznehybneniu\nznehybnený\nznehybni\nznehybnieť\nznehybnime\nznehybnite\nznehybniť\nznehybňovať\nznechá\nznechaj\nznechajme\nznechajte\nznechajú\nznechajúc\nznechal\nznechala\nznechali\nznechalo\nznechám\nznecháme\nznecháš\nznechať\nznecháte\nznechávať\nznechcieť\nznechucovaní\nznechucovanie\nznechucovať\nznechucujúce\nznechucujúceho\nznechucujúco\nznechutene\nznechutenia\nznechutenie\nznechutením\nznechuteniu\nznechutenosť\nznechutený\nznechutiť\nzneistej\nzneistejme\nzneistejte\nzneistejú\nzneistejúc\nzneistel\nzneistela\nzneisteli\nzneistelo\nzneisti\nzneistí\nzneistia\nzneistiac\nzneistie\nzneistiem\nzneistieme\nzneistieš\nzneistieť\nzneistiete\nzneistil\nzneistila\nzneistili\nzneistilo\nzneistím\nzneistime\nzneistíme\nzneistíš\nzneistiť\nzneistite\nzneistíte\nznejasnenie\nznejasnený\nznejasni\nznejasní\nznejasnia\nznejasniac\nznejasnil\nznejasnila\nznejasnili\nznejasnilo\nznejasním\nznejasnime\nznejasníme\nznejasníš\nznejasniť\nznejasnite\nznejasníte\nznejasňoval\nznejasňovala\nznejasňovali\nznejasňovalo\nZnejasňovanie\nznejasňovať\nznejasňuj\nznejasňuje\nznejasňujem\nznejasňujeme\nznejasňuješ\nznejasňujete\nznejasňujme\nznejasňujte\nznejasňujú\nznejasňujúc\nzneje\nznejúci\nznekvalitni\nznekvalitní\nznekvalitnia\nznekvalitniac\nznekvalitnil\nznekvalitnila\nznekvalitnili\nznekvalitnilo\nznekvalitním\nznekvalitnime\nznekvalitníme\nznekvalitníš\nznekvalitniť\nznekvalitnite\nznekvalitníte\nznekvalitňoval\nznekvalitňovala\nznekvalitňovali\nznekvalitňovalo\nznekvalitňovať\nznekvalitňuj\nznekvalitňuje\nznekvalitňujem\nznekvalitňujeme\nznekvalitňuješ\nznekvalitňujete\nznekvalitňujme\nznekvalitňujte\nznekvalitňujú\nznekvalitňujúc\nznelejšia\nznelka\nznelkový\nznelosť\nzneľúbiť\nznelý\nznemená\nznemieť\nznemožnenie\nznemožnený\nznemožni\nznemožnime\nznemožnite\nznemožniť\nznemožňovania\nznemožňovanie\nznemožňovaný\nznemožňovať\nznemožňujúci\nznemravni\nznemravnieť\nznemravnime\nznemravnite\nznemravniť\nznemravňovať\nznenadála\nznenáhla\nznenáviď\nznenávidená\nznenávidieť\nznenazdajky\nznenazdania\nznenie\nZnenou\nznepáčiť\nzneplatnenia\nzneplatnenie\nzneplatnením\nzneplatnený\nzneplatnil\nzneplatnila\nzneplatnili\nzneplatnilo\nzneplatniť\nznepojazdniť\nznepokojene\nznepokojenie\nznepokojený\nznepokojiť\nznepokojivo\nznepokojivý\nznepokojnenie\nznepokojnie\nznepokojnieť\nznepokojovaní\nznepokojovanie\nznepokojovaniu\nznepokojovať\nznepokojujúcejšej\nznepokojujúcejší\nznepokojujúcejšia\nznepokojujúcejšie\nznepokojujúcejšieho\nznepokojujúcejšiemu\nznepokojujúcejších\nznepokojujúcejším\nznepokojujúcejšími\nznepokojujúcejšiu\nznepokojujúcejšom\nznepokojujúcejšou\nznepokojujúci\nznepokojujúco\nzneponazdania\nzneprehľadnená\nzneprehľadnení\nzneprehľadnenie\nzneprehľadneniu\nzneprehľadní\nzneprehľadnia\nzneprehľadnil\nzneprehľadnila\nzneprehľadnili\nzneprehľadnilo\nzneprehľadniť\nznepriatelený\nznepriateliť\nznepriateľoval\nznepriateľovala\nznepriateľovali\nznepriateľovalo\nznepriateľovať\nznepriateľuj\nznepriateľuje\nznepriateľujem\nznepriateľujeme\nznepriateľuješ\nznepriateľujete\nznepriateľujme\nznepriateľujte\nznepriateľujú\nznepriateľujúc\nznepriehľadňovalo\nznepriehľadňované\nznepriehľadňuje\nznepriehľadňujú\nznepríjemnenie\nznepríjemni\nznepríjemnime\nznepríjemnite\nznepríjemniť\nznepríjemňovanie\nznepríjemňovať\nznerovnoprávnenia\nznerovnoprávnenie\nznerovnoprávni\nznerovnoprávnia\nznerovnoprávniac\nznerovnoprávnil\nznerovnoprávnila\nznerovnoprávnili\nznerovnoprávnilo\nznerovnoprávnim\nznerovnoprávnime\nznerovnoprávniš\nznerovnoprávniť\nznerovnoprávnite\nznerovnoprávňoval\nznerovnoprávňovala\nznerovnoprávňovali\nznerovnoprávňovalo\nznerovnoprávňovať\nznerovnoprávňuj\nznerovnoprávňuje\nznerovnoprávňujem\nznerovnoprávňujeme\nznerovnoprávňuješ\nznerovnoprávňujete\nznerovnoprávňujme\nznerovnoprávňujte\nznerovnoprávňujú\nznerovnoprávňujúc\nznervóznenia\nznervóznenie\nznervóznený\nznervóznieť\nznervózniť\nZnervózňovanie\nznervózňovať\nznervozňujúci\nznervózňujúci\nznervózňujúco\nznesenie\nznesením\nzneseniu\nznesený\nznesiteľne\nznesiteľnosť\nznesiteľný\nznesnadní\nznesväcované\nznesväcovania\nznesväcovaniu\nznesväcovať\nznesvárený\nznesvári\nznesváriť\nznesvätenie\nznesvätením\nznesvätený\nznesvätiť\nznešenosť\nzneškodnenie\nzneškodnený\nzneškodni\nzneškodnime\nzneškodnite\nzneškodniť\nzneškodňovanie\nzneškodňovaný\nzneškodňovať\nznešvárené\nznešvárených\nznešvárenými\nznešváriť\nznešvárovať\nznetvor\nznetvorene\nznetvorenia\nznetvorenie\nznetvorením\nznetvorenina\nznetvorenosť\nznetvorený\nznetvoriť\nznetvorovať\nznetvorte\nzneuctenia\nzneuctenie\nzneuctením\nzneuctený\nzneucti\nzneuctievať\nzneuctime\nzneuctite\nzneuctiť\nzneucťovať\nzneucťujúce\nzneutralizoval\nzneutralizované\nzneutralizovať\nzneutralizujú\nzneuznanej\nzneuznaných\nzneuznaným\nzneuznať\nzneuznávaná\nzneuznávať\nzneužiteľný\nzneužitieN\nzneužiť\nzneužitý\nzneužívanie\nzneužívaný\nzneužívateľmi\nzneužívateľom\nzneužívateľov\nzneužívať\nznevaýžovať\nzneváženia\nzneváženie\nznevážením\nzneváženiu\nznevážený\nznevážiť\nznevažovania\nznevažovanie\nznevažovaním\nznevažovaniu\nznevažovaný\nznevažovať\nznevažujúca\nznevažujúce\nznevažujúceho\nznevažujúcej\nznevažujúcemu\nznevažujúci\nznevažujúcich\nznevažujúcim\nznevažujúcimi\nznevažujúco\nzneviď\nznevidieť\nznevýhodnenie\nznevýhodni\nznevýhodní\nznevýhodnia\nznevýhodniac\nznevýhodnil\nznevýhodnila\nznevýhodnili\nznevýhodnilo\nznevýhodním\nznevýhodnime\nznevýhodníme\nznevýhodníš\nznevýhodniť\nznevýhodnite\nznevýhodníte\nznevýhodňoval\nznevýhodňovala\nznevýhodňovali\nznevýhodňovalo\nznevýhodňovať\nznevýhodňuj\nznevýhodňuje\nznevýhodňujem\nznevýhodňujeme\nznevýhodňuješ\nznevýhodňujete\nznevýhodňujme\nznevýhodňujte\nznevýhodňujú\nznevýhodňujúc\nznezrady\nznezreteľni\nznezreteľní\nznezreteľnia\nznezreteľniac\nznezreteľnil\nznezreteľnila\nznezreteľnili\nznezreteľnilo\nznezreteľním\nznezreteľnime\nznezreteľníme\nznezreteľníš\nznezreteľniť\nznezreteľnite\nznezreteľníte\nznezreteľňoval\nznezreteľňovala\nznezreteľňovali\nznezreteľňovalo\nznezreteľňovať\nznezreteľňuj\nznezreteľňuje\nznezreteľňujem\nznezreteľňujeme\nznezreteľňuješ\nznezreteľňujete\nznezreteľňujme\nznezreteľňujte\nznezreteľňujú\nznezreteľňujúc\nznežnela\nznežneli\nznežniť\nzničene\nzničenie\nzničeno\nzničenosť\nzničený\nzničiteľný\nzničiť\nzničujúcejšej\nzničujúcejší\nzničujúcejšia\nzničujúcejšie\nzničujúcejšieho\nzničujúcejšiemu\nzničujúcejších\nzničujúcejším\nzničujúcejšími\nzničujúcejšiu\nzničujúcejšom\nzničujúcejšou\nzničujúci\nzničujúco\nzniekade\nzniekadiaľ\nzniekoľkonásobením\nzniekoľkonásobiť\nzniesť\nznieť\nznikade\nznikadiaľ\nznikiaľ\nzním\nznitovať\nznivelizovať\nznivočenie\nznivočený\nznivočený\nznivočiť\nznížene\nzníženie\nzníženina\nznížený\nznížiť\nznižovacia\nznižovaciu\nznižovane\nznižovanieN\nznižovaný\nznižovať\nznižujúca\nznobiť\nznojemský\nZnojil\nznojiť\nznoj\nZnojma\nZnojme\nZnojmo\nZnojmom\nZnojmu\nznojne\nznojný\nznormalizoval\nznormalizovala\nznormalizovali\nznormalizovalo\nznormalizovať\nznormalizuj\nznormalizuje\nznormalizujem\nznormalizujeme\nznormalizuješ\nznormalizujete\nznormalizujme\nznormalizujte\nznormalizujú\nznormalizujúc\nznormované\nznormovať\nznoseniu\nznosiť\nznôška\nznôške\nznôškou\nznôšku\nznôšky\nznôtiť\nznotovať\nznov\nznova\nznovu\nznovuaktivovať\nznovudobytie\nznovunačítať\nznovunadobudnutie\nznovunarodenie\nznovunastav\nznovunastavenie\nznovunastaví\nznovunastavia\nznovunastaviac\nznovunastavil\nznovunastavila\nznovunastavili\nznovunastavilo\nznovunastavím\nznovunastavíme\nznovunastavíš\nznovunastaviť\nznovunastavíte\nznovunastavme\nznovunastavoval\nznovunastavovala\nznovunastavovali\nznovunastavovalo\nznovunastavovať\nznovunastavte\nznovunastavuj\nznovunastavuje\nznovunastavujem\nznovunastavujeme\nznovunastavuješ\nznovunastavujete\nznovunastavujme\nznovunastavujte\nznovunastavujú\nznovunastavujúc\nznovunastolení\nznovunastolenia\nznovunastolenie\nznovunastoleniu\nznovunaštudovanie\nznovuobjavenie\nznovuobjavením\nznovuobjaveniu\nznovuobjavený\nznovuobjavila\nznovuobjavíš\nznovuobjaviť\nznovuobnovenia\nznovuobnovenie\nznovuobnovením\nznovuobnoveniu\nznovuobnovený\nznovuobnovila\nznovuobnoviť\nznovuotvorenie\nznovuoživení\nznovuoživenia\nznovuoživenie\nznovuoživením\nznovuoživeniu\nznovupostavení\nznovupostavenie\nznovupoužitie\nznovuprijatie\nznovupripojenie\nznovurozdelenia\nznovurozdelenie\nznovurozdelením\nznovuuplatnenie\nznovuuvedení\nznovuuvedenia\nznovuuvedenie\nznovuvybudovania\nznovuvybudovanie\nznovuvydávaní\nznovuvydávanie\nznovuvýstavbu\nznovuvytvorení\nznovuvyzbrojenie\nznovuvzkriesenia\nznovuvzkriesenie\nznovuvzkriesil\nznovuzalesňovanie\nznovuzavedení\nznovuzavedenia\nznovuzavedenie\nznovuzavedením\nznovuzavedeniu\nznovuzískaná\nznovuzískaní\nznovuzískania\nznovuzískanie\nznovuzískaním\nznovuzískaniu\nznovuzískaných\nznovuzískať\nznovuzískavaní\nznovuzískavania\nznovuzískavanie\nznovuzískavaniu\nznovuzjednotení\nznovuzjednotenia\nznovuzjednotenie\nznovuzjednotením\nznovuzjednoteniu\nznovuzriadenie\nznovuzrodenie\nznovuzrodený\nznovuzrodiť\nznovuzvolení\nznovuzvolenia\nznovuzvolenie\nznovuzvolením\nznovuzvoleniu\nznovzurodený\nznožiť\nznožmo\nznožný\nznožovania\nznožovať\nznuď\nznudene\nznudenosť\nznudený\nznudiť\nzňuchať\nznútra\nzo\nzoantropia\nzobáčik\nzobáčisko\nzobadať\nzobajúc\nzobák\nzobákový\nzobanie\nzobať\nzob\nzobcovú\nzobďaleč\nzobec\nzobecnej\nzobecnejme\nzobecnejte\nzobecnejú\nzobecnejúc\nzobecnel\nzobecnela\nzobecneli\nzobecnelo\nzobecnená\nzobecni\nzobecní\nzobecnia\nzobecniac\nzobecnie\nzobecniem\nzobecnieme\nzobecnieš\nzobecnieť\nzobecniete\nzobecnil\nzobecnila\nzobecnili\nzobecnilo\nzobecním\nzobecnime\nzobecníme\nzobecníš\nzobecniť\nzobecnite\nzobecníte\nzoberanie\nzoberať\nzobjektivizoval\nZobjektivizovali\nzobjektivizovanie\nzobjektivizovaný\nzobjektivizovať\nzobjektivizuje\nzobjektivizujú\nzobjektívnená\nzobjektívnení\nzobjektívnenia\nzobjektívnenie\nzobjektívnila\nzobjektívnili\nzobjektívniť\nzobkania\nzobkanie\nzobkať\nzobliecť\nzobliekať\nzobnutie\nzobnúť\nZobor\nZoborská\nZoborské\nzoborskom\nzobrania\nzobraný\nzobraté\nzobratie\nzobrato\nzobrať\nzobrazene\nzobrazenieN\nzobrazený\nzobraziteľné\nzobraziť\nzobrazovací\nzobrazovacíN\nzobrazovačB\nzobrazovane\nzobrazovanie\nzobrazovaný\nzobrazovaný\nzobrazovať\nzobrazujúci\nzobudenie\nzobudený\nzobudiť\nzobúdzania\nzobúdzanie\nzobúdzaný\nzobúdzať\nzobutého\nzobuť\nzobúvať\nzobzerať\nzocelený\nzoceliť\nzoceľoval\nzoceľovala\nzoceľovali\nzoceľovalo\nzoceľovanie\nzoceľovať\nzoceľuj\nzoceľuje\nzoceľujem\nzoceľujeme\nzoceľuješ\nzoceľujete\nzoceľujme\nzoceľujte\nzoceľujú\nzoceľujúc\nzoctovatieť\nzocvičiť\nzocvičovať\nzoči\nzočiť\nzodiak\nzodial\nzodiať\nzodierať\nzodpovedajúcejšej\nzodpovedajúcejší\nzodpovedajúcejšia\nzodpovedajúcejšie\nzodpovedajúcejšieho\nzodpovedajúcejšiemu\nzodpovedajúcejších\nzodpovedajúcejším\nzodpovedajúcejšími\nzodpovedajúcejšiu\nzodpovedajúcejšom\nzodpovedajúcejšou\nzodpovedajúci\nzodpovedajúco\nzodpovedane\nzodpovedanie\nzodpovedaný\nzodpovedateľná\nzodpovedateľné\nzodpovedať\nzodpovedať\nzodpovedndý\nzodpovedne\nzodpovednosť\nzodpovedný\nzodraný\nzodrať\nzodratý\nzodretie\nzodrieť\nzodrúc\nzodvihnutím\nzodvihnúť\nzodvihnutý\nzodvihuje\nzoficiálneniu\nZOH\nzohavený\nzohaviť\nzohavovať\nzohľadnenie\nzohľadnený\nzohľadni\nzohľadnime\nzohľadnite\nzohľadniť\nzohľadňovanieN\nzohľadňovať\nzohnanie\nzohnaniu\nzohnaný\nzohnatelný\nzohnať\nzohnutie\nzohnuto\nzohnúť\nzohnutý\nZohor\nZohore\nZohorom\nzohorské\nzohorskej\nZohorský\nZohoru\nzohranie\nzohranosť\nzohraný\nzohrať\nzohrato\nzohratosť\nzohratý\nZohrávanie\nzohrávať\nzohrdiť\nzohrdnúť\nzohrej\nzohreje\nzohrejem\nzohrejeme\nzohreješ\nzohrejete\nzohrejme\nzohrejte\nZohrejte\nzohrejú\nzohrejúc\nzohriatá\nzohriatí\nzohriatia\nzohriatie\nZohriatu\nzohriať\nzohriaty\nzohriatych\nzohrievací\nzohrievač\nzohrievaná\nzohrievanej\nzohrievaní\nzohrievania\nzohrievanie\nzohrievaním\nzohrievať\nzohýbaný\nzohýbať\nzohydďovať\nzohýnať\nzohyzdený\nzohyzdi\nzohyzdime\nzohyzdite\nzohyzdiť\nzohyzďovanie\nzohyzďovať\nzochabiť\nzoidiogamia\nzoisit\nZojách\nZojám\nZoja\nZojí\nzôkol\nzol\nZolná\nZolnej\nZolo\nZolom\nZoltán\nZomba\nzombie\nZombor\nzomdlený\nzomdletia\nzomdleto\nzomdlieť\nzomieľať\nZomierajúca\nzomierajúce\nzomierajúceho\nzomierajúci\nzomierajúcich\nzomierajúcim\nzomierajúcom\nzomierajúcu\nzomieraní\nzomierania\nzomieranie\nzomieraniu\nzomierať\nzomkla\nzomkli\nzomklo\nzomkne\nzomknem\nzomkneme\nzomkneš\nzomknete\nzomkni\nzomknime\nzomknite\nzomknú\nzomknúc\nzomknúť\nzomknutie\nzomknuto\nzomknutosť\nzomknutý\nzomkol\nzomkýna\nzomkýnaj\nzomkýnajme\nzomkýnajte\nzomkýnajú\nzomkýnajúc\nzomkýnal\nzomkýnala\nzomkýnali\nzomkýnalo\nzomkýnam\nzomkýname\nzomkýnaš\nzomkýnať\nzomkýnate\nzomletie\nzomletím\nzomletý\nzomlie\nzomlieť\nzomrelý\nzomretie\nzomretý\nzomrieť\nzomrúc\nzón\nzónach\nzónam\nzóna\nzonda\nzondi\nzondiac\nzondiať\nzondiel\nzondiela\nzondieli\nzondielo\nzondieť\nzondime\nzondite\nzónovanie\nzónový\nzoo\nZOO\nzoobentos\nzoocenológia\nzoocenóza\nzoocid\nzooedafón\nzoofág\nzoofágia\nzoofília\nzoofóbia\nzooforos\nzoogamia\nzoogenéza\nzoogénny\nzoogeografia\nzoohygienickým\nzoochoria\nzool\nzoolit\nzoológ\nzoológia\nzoologický\nzoologička\nzoom\nzoomorfóza\nzoonóza\nzoonózy\nzoonymum\nzoopaleontológia\nzooparazit\nzoopark\nzoopatológia\nzooplanktón\nzoopsychológia\nzoospóra\nzoosterol\nzootech\nzootechnický\nzootechnička\nzootechnika\nzootechnik\nzootechnikovu\nzooterapia\nzootómia\nzootoxín\nzootropný\nzopakovanie\nzopakovaný\nzopakovať\nzopäl\nzopäla\nzopäli\nzopälo\nzopár\nzopárkrát\nzopätí\nzopätie\nzopätovať\nzopäť\nzopínať\nzopnutia\nzopnutie\nzopnúť\nzopnutý\nzopodiaľ\nzoprieť\nzopsiť\nzopsuť\nzopsutý\nzôr\nZôr\nzoradenia\nzoradenie\nzoradeniu\nzoradený\nzoradísk\nzoradisko\nzoradíšť\nzoradišťa\nzoradišťami\nzoradište\nzoradišti\nzoradišťom\nzoradišťu\nzoradiť\nzoraďovanie\nzoraďovať\nzorane\nzorania\nzoranie\nzoraný\nzorať\nzoráva\nZora\nzora\nzorenie\nzorganizovania\nzorganizovanie\nzorganizovaním\nzorganizovaniu\nzorganizovaný\nzorganizovať\nzoria\nzorientovania\nzorientovanie\nzorientovaný\nzorientovať\nzorila\nZorin\nZorina\nZorinej\nzoristý\nzoriť\nZorka\nzornica\nzornička\nzorný\nzoroastrizmus\nzoročiť\nzoroch\nZoroslav\nZoroslava\nZoroslavom\nzorov\nzorove\nzorvi\nzosaď\nzosadaním\nzosadať\nzosadenia\nzosadenie\nzosadením\nzosadeniu\nzosadený\nzosadí\nzosadia\nzosadiac\nzosadil\nzosadila\nzosadili\nzosadilo\nzosadím\nzosadíme\nzosadíš\nzosadiť\nzosadíte\nzosadlovatieť\nzosadlovieť\nzosaďme\nzosadnutia\nzosadnúť\nzosaďte\nzosádzať\nzosadzovanie\nzosadzovať\nzosatirizovať\nzós\nzosekať\nzoseknúť\nzosemnásobí\nzoschnutie\nzoschnúť\nzoschnutý\nzoschýnať\nzosielať\nzosiľ\nzosilene\nzosilené\nzosilenie\nzosilí\nzosilnene\nzosilnenia\nzosilnenie\nzosilnením\nzosilneniu\nzosilnený\nzosilni\nzosilnieť\nzosilnievať\nzosilnime\nzosilnite\nzosilniť\nzosilňovací\nzosilňovač\nzosilňovaná\nzosilňované\nzosilňovaní\nzosilňovania\nzosilňovanie\nzosilňovaním\nzosilňovaniu\nzosilňovať\nzosilňujúce\nzosiloval\nzosilovať\nzosiluje\nzosiň\nzosinavieť\nzosinieť\nzosinul\nzosinula\nzosinúť\nzosivený\nzosivieť\nzoskákať\nzoskakovať\nzoskartovať\nzoskočiť\nzoskok\nzoskrutkované\nzoskrutkovať\nzoskúpenie\nzoskupenie\nzoskupený\nzoskupi\nzoskupiť\nzoskupovaní\nzoskupovania\nzoskupovanie\nzoskupovaním\nzoskupovaniu\nzoskupovať\nzosla\nzoslabene\nzoslabenia\nzoslabenie\nzoslabením\nzoslabeniu\nzoslabený\nzoslabiť\nzoslabnutie\nzoslabnutím\nzoslabnúť\nzoslabnutý\nzoslabovane\nzoslabovania\nzoslabovanie\nzoslabovaním\nzoslabovaniu\nzoslabovaný\nzoslabovať\nzosladli\nzoslanie\nzoslaný\nzoslať\nzosmiešnenia\nzosmiešnenie\nzosmiešnením\nzosmiešneniu\nzosmiešnený\nzosmiešniť\nzosmiešňovania\nzosmiešňovanie\nzosmiešňovaniu\nzosmiešňovaný\nzosmiešňovať\nzosmiešňujúci\nzosmoľ\nzosmolený\nzosmolí\nzosmolia\nzosmoliac\nzosmolil\nzosmolila\nzosmolili\nzosmolilo\nzosmolím\nzosmolíme\nzosmolíš\nzosmoliť\nzosmolíte\nzosmoľme\nzosmoľte\nzosmradiť\nzosmradnúť\nzosmrď\nzosmrdieť\nzosmutnieť\nzosmutnievať\nzosňať\nzosníma\nzosnímajú\nzosnímania\nzosnímanie\nzosnímaný\nzosnímať\nzosnovania\nzosnovanie\nzosnovaný\nzosnovať\nzosnul\nzosnuli\nzosnulo\nzosnulý\nzosobášený\nzosobášiť\nzosobnenia\nzosobnenie\nzosobnením\nzosobneniu\nzosobnený\nzosobni\nzosobnime\nzosobnite\nzosobniť\nzosobňovania\nzosobňovanie\nzosobňovaných\nzosobňovať\nzosodomčený\nzosožiť\nzospájkovať\nzospodku\nzospodu\nzospoločensťovať\nzospoločenštení\nzospoločenšti\nzospoločenštime\nzospoločenštite\nzospoločenštiť\nzospoločenšťovať\nzosŕkať\nzostaniu\nzostarej\nzostarejme\nzostarejte\nzostarejú\nzostarejúc\nzostarený\nzostarieť\nzostarievať\nzostarla\nzostarli\nzostarlo\nzostarnutie\nzostarnutiu\nzostarnúť\nzostarnutý\nzostarol\nzostatkový\nzostatok\nzostať\nzostatý\nzostavá\nzostávajúci\nzostávanej\nzostávania\nzostávanie\nzostavaný\nzostávať\nzostava\nzostavenie\nzostavený\nZostaviteľ\nzostaviteľné\nzostaviť\nzostavovanie\nzostavovaný\nzostavovateľ\nzostavovateľka\nzostavovateľský\nzostavovať\nzostavový\nzostavujúci\nzostehovanie\nzostehovať\nzostonásobí\nzostonásobil\nzostonásobili\nzostra\nzostrábiť\nzostrašený\nzostrel\nzostrele\nzostrelenia\nzostrelenie\nzostreleniu\nzostrelený\nzostreliť\nzostrelmi\nzostreľovať\nzostrenie\nzostrený\nzostrihanie\nzostrihaný\nzostrihať\nzostrihávať\nzostrih\nzostrihla\nzostrihli\nzostrihlo\nzostrihne\nzostrihnem\nzostrihneme\nzostrihneš\nzostrihnete\nzostrihni\nzostrihnime\nzostrihnite\nzostrihnú\nzostrihnúc\nzostrihnúť\nzostrihnutý\nzostrihol\nzostrihovať\nzostriť\nzostrmie\nzostrmieť\nzostrojenie\nzostrojením\nzostrojeniu\nzostrojený\nzostrojiť\nzostrojovanie\nzostrojovať\nzostrovaní\nzostrovania\nzostrovanie\nzostrovaním\nzostrovaniu\nzostrovať\nzostrú\nzostručnený\nzostručni\nzostručnime\nzostručnite\nzostručniť\nzostručňovaní\nzostručňovať\nzostrúhať\nzostruhávať\nzostruhovanie\nzostruhovať\nzostudeniť\nzostup\nzostúpeného\nzostúpiaceho\nzostúpiacemu\nzostúpiť\nzostupne\nzostupnosť\nzostupňovať\nzostupný\nzostupovanie\nzostupovať\nzostupový\nzostupujúca\nzostupujúci\nzostupujúcim\nzostupujúcom\nzosúčasniť\nzosúhlasiť\nzosúhlasovanie\nzosúkaný\nzosúkať\nzosúkavací\nzosúkavaný\nzosúkavať\nzosul\nzosúlaď\nzosúladenie\nzosúladený\nzosúladí\nzosúladia\nzosúladiac\nzosúladil\nzosúladila\nzosúladili\nzosúladilo\nzosúladím\nzosúladíme\nzosúladíš\nzosúladiť\nzosúladíte\nzosúlaďme\nzosúlaďte\nzosumarizoval\nzosumarizovala\nzosumarizovali\nzosumarizovalo\nzosumarizovať\nzosumarizuj\nzosumarizuje\nzosumarizujem\nzosumarizujeme\nzosumarizuješ\nzosumarizujete\nzosumarizujme\nzosumarizujte\nzosumarizujú\nzosumarizujúc\nzosumírovať\nzosumovať\nzosuň\nzosun\nzosunie\nzosuniem\nzosunieme\nzosunieš\nzosuniete\nzosuňme\nzosunový\nzosuňte\nzosunul\nzosunula\nzosunuli\nzosunulo\nzosunuté\nzosunutého\nzosunutej\nzosunutie\nzosunutiu\nzosunúť\nzosunutých\nzosurovieť\nzosušený\nzosušiť\nzosušovať\nzosuť\nzosutie\nzosutiť\nzosúva\nzosúvaj\nzosúvajme\nzosúvajte\nzosúvajú\nzosúvajúc\nzosúval\nzosúvala\nzosúvali\nzosúvalo\nzosúvam\nzosúvame\nzosúvaním\nzosúvaš\nzosúvať\nzosúvate\nzosuv\nzosuve\nzosuvný\nzosuvový\nzosužovať\nzosvetlenia\nzosvetlenie\nzosvetliť\nzosvetšti\nzosvetští\nzosvetštia\nzosvetštiac\nzosvetštil\nzosvetštila\nzosvetštili\nzosvetštilo\nzosvetštím\nzosvetštime\nzosvetštíme\nzosvetštíš\nzosvetštiť\nzosvetštite\nzosvetštíte\nzosvetšťoval\nzosvetšťovala\nzosvetšťovali\nzosvetšťovalo\nzosvetšťovať\nzosvetšťuj\nzosvetšťuje\nzosvetšťujem\nzosvetšťujeme\nzosvetšťuješ\nzosvetšťujete\nzosvetšťujme\nzosvetšťujte\nzosvetšťujú\nzosvetšťujúc\nzosychá\nzosychaj\nzosychajme\nzosychajte\nzosychajú\nzosychajúc\nzosychal\nzosychala\nzosychali\nzosychalo\nzosychám\nzosycháme\nzosychanie\nzosycháš\nzosychať\nzosycháte\nzosynchronizovaný\nzosynchronizovať\nzosypal\nzosypala\nzosypali\nzosypalo\nzosypanie\nzosypaný\nzosypať\nzosýpať\nzosypávať\nzosyp\nzosypem\nzosypeme\nzosypeš\nzosypete\nzosypme\nzosypte\nzosypú\nzosypúc\nzosystematizovať\nzosystemizoval\nzosystemizovala\nzosystemizovali\nzosystemizovalo\nzosystemizovať\nzosystemizuj\nzosystemizuje\nzosystemizujem\nzosystemizujeme\nzosystemizuješ\nzosystemizujete\nzosystemizujme\nzosystemizujte\nzosystemizujú\nzosystemizujúc\nzošalej\nzošalejme\nzošalejte\nzošalejú\nzošalejúc\nzošalený\nzošalieť\nzošarpať\nzošedivieť\nzošednuté\nzošer\nzošerenie\nzošerený\nzošeriť\nzošerte\nzošesťnásobia\nzošesťnásobil\nzošesťnásobila\nzoši\nzošibať\nzošije\nzošijem\nzošijeme\nzošiješ\nzošijete\nzošijú\nzošijúc\nzošikmene\nzošikmenia\nzošikmenie\nzošikmeniu\nzošikmený\nzošikmia\nzošikmiť\nzošikované\nzošikovaných\nzošikovať\nzošil\nzošila\nzošili\nzošilo\nzošime\nzošinúť\nzošiplať\nzoširoka\nzošit\nzošité\nzošití\nzošitie\nzošitmi\nzošito\nzošitok\nzošitový\nzošiť\nzošívačka\nzošívania\nzošívanie\nzošívaním\nzošívaný\nzošívať\nzoškľabiť\nzošklb\nzošklbať\nzošklbú\nzošklbúc\nzošklivení\nzošklivie\nzošklivieť\nzoškliviť\nzoškrab\nzoškrabať\nzoškrabnúť\nzoškrabované\nzoškrabovať\nzoškrabúvať\nzoškrcovanie\nzoškriab\nzoškriabať\nzoškrtania\nzoškrtanie\nzoškrtaním\nzoškrtaniu\nzoškrtaný\nzoškrtať\nzoškrtávať\nzoškrtenia\nzoškrtenie\nzoškvar\nzoškvariť\nzoškvarte\nzošla\nzošľahať\nzošľachtenia\nzošľachtenie\nzošľachtený\nzošľachti\nzošľachtime\nzošľachtite\nzošľachtiť\nzošľachťovací\nzošľachťovacie\nzošľachťovacieho\nzošľachťovacom\nzošľachťovane\nzošľachťovania\nzošľachťovanie\nzošľachťovaniu\nzošľachťovaný\nzošľachťovať\nzošľapovať\nzošliapaný\nzošliapať\nzošliapnutím\nzošliapnuť\nzošliapnutý\nzošlo\nzošmotlať\nzošmykla\nzošmykli\nzošmyklo\nzošmykne\nzošmyknem\nzošmykneme\nzošmykneš\nzošmyknete\nzošmykni\nzošmyknime\nzošmyknite\nzošmyknú\nzošmyknúc\nzošmyknúť\nzošmyknutie\nzošmykol\nzošmykovať\nzošnurovanie\nzošnurovaniu\nzošnurovaný\nzošnurovať\nzošokovaní\nzošpatiť\nzošpatnieť\nzošpor\nzošporiť\nzošporovať\nzošporte\nzošpúliť\nzošraubovať\nzošrotoval\nzošrotovala\nzošrotovali\nzošrotovalo\nzošrotovanie\nzošrotovaním\nzošrotovaniu\nzošrotovaný\nzošrotovať\nzošrotuj\nzošrotuje\nzošrotujem\nzošrotujeme\nzošrotuješ\nzošrotujete\nzošrotujme\nzošrotujte\nzošrotujú\nzošrotujúc\nzoštátnenia\nzoštátnenie\nzoštátnením\nzoštátneniu\nzoštátnený\nzoštátniť\nzoštátňovací\nZoštátňovacie\nzoštátňovacích\nzoštátňovaní\nzoštátňovania\nzoštátňovanie\nzoštátňovaním\nzoštátňovaniu\nzoštátňovať\nzošteloval\nzoštelovala\nzoštelovali\nzoštelovalo\nzoštelovať\nzošteluj\nzošteluje\nzoštelujem\nzoštelujeme\nzošteluješ\nzoštelujete\nzoštelujme\nzoštelujte\nzoštelujú\nzoštelujúc\nzoštepovať\nzoštíhlej\nzoštíhlejme\nzoštíhlejte\nzoštíhlejú\nzoštíhlejúc\nzoštíhlenia\nzoštíhleniach\nzoštíhlenie\nzoštíhlením\nzoštíhleniu\nzoštíhlený\nzoštíhlieť\nzoštíhliť\nzoštíhľované\nzoštíhľovanej\nzoštíhľovaní\nzoštíhľovania\nzoštíhľovanie\nzoštíhľovaním\nzoštíhľovaniu\nzoštíhľovať\nzoštvávali\nzoštvornásobí\nzoštvornásobil\nzoštvornásobila\nzoštvornásobili\nzoštvornásobilo\nzoštvornásobiť\nzoštylizované\nzoštylizovať\nzošudiť\nzošuchnúť\nzošuchovať\nzošúľať\nzošúpať\nzošustnúť\nzošutrovať\nzošúver\nzošúverenie\nzošúverený\nzošúveriť\nzošúverte\nzošvagriť\nzošvárnieť\nZoťatím\nzoťať\nzoťatý\nzotavene\nzotavenie\nzotavený\nzotaviteľný\nzotaviť\nzotavovací\nzotavovacím\nzotavovaco\nzotavovaní\nzotavovania\nzotavovanie\nzotavovaním\nzotavovaniu\nzotavovať\nzotavovňa\nzotavovní\nzotavujúci\nzotierať\nzotínať\nzotletie\nzotlieť\nzotlievať\nzotlú\nzotlúc\nzotmenieN\nzotmetie\nzotmi\nzotmieť\nzotmievať\nzotmime\nzotmite\nzotmiť\nzotovatieť\nzotrené\nzotrenie\nzotrením\nzotretia\nzotretie\nzotretím\nzotretiu\nzotretý\nzotriediť\nzotrieť\nzotročenia\nzotročenie\nzotročením\nzotročený\nzotročiť\nzotročovania\nzotročovateľ\nzotročovateľka\nzotročovateľský\nzotročovať\nzotrúc\nzotrvačne\nzotrvačník\nzotrvačníkový\nzotrvačníku\nzotrvačníky\nzotrvačnosť\nzotrvačný\nzotrvanie\nzotrvaný\nzotrvať\nzotrvávajúci\nzotrvávaní\nzotrvávania\nzotrvávanie\nzotrvávaním\nzotrvávaniu\nzotrvávať\nzovierať\nzovňajší\nzovňajšok\nzovnútorný\nzovretia\nzovretie\nzovretím\nzovretiu\nzovreto\nzovretosť\nzovretý\nzovrieť\nzovrúc\nzovšade\nzovšadiaľ\nzovšednené\nzovšednením\nzovšednieť\nzovšednievať\nzovšeobecnene\nzovšeobecnenie\nzovšeobecnený\nzovšeobecni\nzovšeobecnieť\nzovšeobecnievať\nzovšeobecnime\nZovšeobecnime\nzovšeobecnite\nzovšeobecniteľných\nzovšeobecniť\nzovšeobecňovania\nzovšeobecňovanie\nzovšeobecňovaním\nzovšeobecňovaniu\nzovšeobecňovaný\nzovšeobecňovať\nzovšeobecňujúce\nzoxidovaniu\nzoxidovaný\nzoxidovaný\nzoxidovať\nzozačiatku\nzozadku\nzozadu\nzozbierania\nzozbieranie\nzozbieraním\nzozbieraný\nzozbierať\nzozelenieť\nzozimiť\nzoznam\nzoznámenie\nzoznámený\nzoznámiť\nzoznamka\nzoznamovací\nzoznamovaná\nzoznamovanie\nzoznamovať\nzoznamový\nzoznať\nzozuť\nzozváňať\nzozvať\nzozývať\nzožatie\nzožato\nzožať\nzožatý\nzožehliť\nzoženštene\nzoženštenosť\nzoženštený\nzoženštieť\nzoženštiť\nzožierajúci\nzožierať\nzožínať\nzožltnúť\nzožltnutý\nzožmoliť\nzožraná\nzožrať\nzožuť\nzožuvať\nZP\nZPC\nzr\nzrábať\nzrabovať\nzrác\nzráce\nzrácem\nzráceme\nzráceš\nzrácete\nzracionalizovania\nzracionalizovanie\nzracionalizovaním\nzracionalizovaniu\nzracionalizovaný\nzracionalizovať\nzrácme\nzrácte\nzrácu\nzrácuc\nzračený\nzráčiť\nzračiť\nzrád\nzrada\nzradca\nzradcovský\nzradcovstvo\nzradenia\nzradenie\nzradený\nzradikalizovanie\nzradikalizovať\nzradiť\nzradkyňa\nzradne\nzrádnici\nzrádnik\nzrádnikovi\nzradnosť\nzradný\nzrádzať\nzrafať\nzrachotiť\nzrajtoval\nzrajtovala\nzrajtovali\nzrajtovalo\nzrajtovať\nzrajtuj\nzrajtuje\nzrajtujem\nzrajtujeme\nzrajtuješ\nzrajtujete\nzrajtujme\nzrajtujte\nzrajtujú\nzrajtujúc\nzrak\nzrakove\nzrakovo\nzrakový\nzrána\nzráňať\nzrancovaný\nzrancovať\nzranenie\nzranený\nzraniteľne\nzraniteľnosť\nzraniteľný\nzraniť\nzraňovanie\nzraňovať\nzrapavieť\nzrastaní\nzrastania\nzrastanie\nzrastaním\nzrastaniu\nzrastať\nzrast\nzrastene\nzrastenosť\nzrastený\nzrasti\nzrastime\nzrastite\nzrastmi\nzrásť\nzrátania\nzrátanie\nzrátaním\nzrátaný\nzrátať\nzratovať\nzratúvaní\nzratúvanie\nzratúvať\nzravotnícky\nzraz\nzráz\nzrazenia\nzrazenie\nzrazením\nzrazenina\nzrazeniu\nzrazený\nzraziť\nzrázna\nzrázne\nzráznej\nzrázny\nzrážač\nzrážadlo\nzrážania\nzrážanie\nzrážaním\nzrážaniu\nzrážanlivosť\nzrážanlivosti\nzrážanlivosťou\nzrážaný\nzrážať\nzrážavosť\nzrážavý\nzrážka\nzrážkomera\nzrážkomer\nzrážkomerných\nzrážkovo\nzrážkový\nzreagovať\nzrealizovaný\nzrealizovať\nzreálnenie\nzreálnený\nzreálniť\nzreálňovania\nzreálňovanie\nZreálňovaním\nzreálňovaniu\nzreálňovaný\nzreálňovať\nzreb\nzrebami\nzrebe\nzrebí\nzrebiach\nzrebiam\nzrebnatý\nzrebný\nzrebriť\nzrec\nzrecenzovanie\nzrecenzovať\nzrecme\nzrecte\nzrečúce\nzrečúci\nzredigovaná\nzredigovanie\nzredigovať\nzredikať\nzredla\nzredli\nzredlo\nzredne\nzrednem\nzredneme\nzredneš\nzrednete\nzredni\nzrednime\nzrednite\nzrednú\nzrednúc\nzrednúť\nzrednuté\nzredol\nzredukovania\nzredukovanie\nzredukovaním\nzredukovaniu\nzredukovaný\nzredukovať\nzreferovať\nzreformoval\nzreformovala\nzreformovali\nzreformovalo\nzreformovanie\nzreformovaný\nzreformovať\nzreformuj\nzreformuje\nzreformujem\nzreformujeme\nzreformuješ\nzreformujete\nzreformujme\nzreformujte\nzreformujú\nzreformujúc\nzregenerovaná\nzregenerovať\nzregrutovať\nzregulovania\nzregulovanie\nzregulovaním\nzregulovaný\nzregulovať\nzrejme\nzrejmejšej\nzrejmejší\nzrejmejšia\nzrejmejšie\nzrejmejšieho\nzrejmejšiemu\nzrejmejších\nzrejmejším\nzrejmejšími\nzrejmejšiu\nzrejmejšom\nzrejmejšou\nzrejmosť\nzrejmý\nzrejúce\nzrejúceho\nzrejúci\nzrejúcich\nzrejúcim\nzrejúcimi\nzrekapitulovaná\nzrekapitulovanie\nzrekapitulovať\nzrekonštruovania\nzrekonštruovanie\nzrekonštruovaním\nzrekonštruovaný\nzrekonštruovať\nzrekreovanie\nzrekreovaných\nzrekreovať\nzrekultivovaný\nzrekvirovali\nzrekvirovaný\nzrekvirovať\nzrekviruje\nzrelativizovala\nzrelativizovanie\nzrelativizovaniu\nzrelativizovať\nzrelativizujeme\nzrelaxoval\nzrelaxovala\nzrelaxovali\nzrelaxovalo\nzrelaxovať\nzrelaxuj\nzrelaxuje\nzrelaxujem\nzrelaxujeme\nzrelaxuješ\nzrelaxujete\nzrelaxujme\nzrelaxujte\nzrelaxujú\nzrelaxujúc\nzrele\nzrelo\nzrelosť\nzrelšej\nzrelší\nzrelšia\nzrelšie\nzrelšieho\nzrelšiemu\nzrelších\nzrelším\nzrelšími\nzrelšiu\nzrelšom\nzrelšou\nzrelý\nzrení\nzrenia\nzrenica\nzrenička\nzrenie\nzrením\nzreniu\nzrenovovanie\nzrenovovaním\nzrenovovaný\nzrenovovať\nzrentovať\nzreorganizovanie\nzreorganizovaním\nzreorganizovaný\nzreorganizovať\nzreparované\nzreparovanie\nzreparovaním\nzreparovať\nzrepetiť\nzrepetovať\nzreprodukovať\nzreštaruovať\nzreštaurovaná\nzreštaurované\nzreštaurovanej\nzreštaurovaní\nzreštaurovanie\nzreštaurovanom\nzreštaurovanú\nzreštaurovaných\nZreštaurovaný\nzreštaurovať\nzreštringovať\nzreťaz\nzreťazene\nzreťazenia\nzreťazenie\nzreťazením\nzreťazeniu\nzreťazený\nzreťazí\nzreťazili\nzreťaziť\nzreťazme\nzreťazovanie\nzreťazte\nzrete\nzreteľahodný\nzreteľ\nzreteľmi\nzreteľnejšíF\nzreteľne\nzreteľnosť\nzreteľný\nzreteľoch\nzreteľom\nzreteľov\nzreteľový\nzreteľu\nzretia\nzretie\nzretím\nzretý\nzrev\nzrevať\nzrevidovania\nzrevidovanie\nzrevidovaný\nzrevidovať\nzrevme\nzrevolucionizovať\nzrevte\nzrevúce\nzrevúci\nzrezanie\nZrezaním\nzrezaný\nzrezať\nzrezáva\nzrezávaj\nzrezávajme\nzrezávajte\nzrezávajú\nzrezávajúc\nzrezával\nzrezávala\nzrezávali\nzrezávalo\nzrezávam\nzrezávame\nzrezávaš\nzrezávať\nzrezávate\nzrezka\nzrežírovanie\nzrežírovaný\nzrežírovať\nzrežúce\nzrežúci\nzrhoziť\nzriadene\nzriadenec\nzriadenie\nzriadený\nzriadiť\nzriaďovací\nzriaďovanie\nzriaďovaný\nzriaďovateľ\nzriaďovateľka\nzriaďovateľský\nzriaďovať\nzriaďujúci\nzriasenie\nzriasený\nzriasiť\nzriecť\nzried\nzriedene\nzriedenie\nzriedený\nzriediť\nzriedka\nzriedkakde\nzriedkakedy\nzriedkakoho\nzriedkakom\nzriedkakomu\nzriedkakto\nzriedkaktorý\nzriedkakým\nzriedka\nzriedkavo\nzriedkavosť\nzriedkavý\nzrieďovadlo\nzrieďovaní\nzrieďovanie\nzrieďovaniu\nzrieďovať\nzriekaním\nzriekať\nzrieknutie\nzrieknuť\nzrieť\nzrieť\nzrigolovať\nzrichtovaný\nzrichtovať\nzrinč\nzrinčať\nzrinči\nzrinčime\nzrinčite\nzrkadielcach\nzrkadielcam\nzrkadielce\nzrkadielec\nzrkadielko\nzrkadielok\nzrkadlenie\nzrkadliaci\nzrkadlisko\nzrkadliť\nzrkadlo\nzrkadlovina\nzrkadloviny\nzrkadlovitý\nzrkadlovka\nzrkadlovky\nzrkadlovo\nzrkadlový\nzŕn\nzrnenie\nzrnia\nzrniar\nzrniare\nzrnie\nzrniečko\nzrniek\nzrnil\nzrnila\nzrnili\nzrnina\nzrnisto\nzrnistý\nzrniť\nzrnito\nzrnitosť\nzrnitý\nzrnko\nzrnkový\nzrnný\nzrno\nzrnoval\nzrnovala\nzrnovali\nzrnovalo\nzrnovaní\nzrnovanie\nzrnovať\nzrnovina\nzrnovitý\nzrnový\nzrnuj\nzrnuje\nzrnujem\nzrnujeme\nzrnuješ\nzrnujete\nzrnujme\nzrnujte\nzrnujú\nzrnujúc\nzrný\nzrobene\nzrobeno\nzrobenosť\nzrobený\nzrobiť\nzročnosť\nzročný\nzrod\nzrodenec\nzrodenie\nzrodený\nzrodiť\nzrohovatenosť\nzrohovatený\nzrohovatieť\nZroj\nzroja\nzrok\nzroka\nzroku\nzrolované\nzrolovanej\nzrolovať\nzromantizovať\nzronene\nzroneno\nzronenosť\nzronený\nzroniť\nzroňovať\nzröntgenoval\nzröntgenovala\nzröntgenovali\nzröntgenovalo\nzröntgenovať\nzröntgenuj\nzröntgenuje\nzröntgenujem\nzröntgenujeme\nzröntgenuješ\nzröntgenujete\nzröntgenujme\nzröntgenujte\nzröntgenujú\nzröntgenujúc\nzropačitieť\nzrosený\nzrosiť\nzrôsolovatieť\nzrovna\nzrovnania\nzrovnanie\nzrovnaním\nzrovnaniu\nzrovnaný\nzrovnateľný\nzrovnať\nzrovnávač\nzrovnávaní\nzrovnávania\nzrovnávanie\nzrovnávať\nzrovnoceňuje\nzrovnoprávnenia\nzrovnoprávnenie\nzrovnoprávnením\nzrovnoprávneniu\nzrovnoprávnený\nzrovnoprávniť\nzrovnoprávňovania\nzrovnoprávňovanie\nzrovnoprávňovať\nzrovnprávňovať\nzrozpačitieť\nzrozumieť\nzrozumiteľnejšíF\nzrozumiteľne\nzrozumiteľnosť\nzrozumiteľný\nZRS\nzrúb\nzruba\nzrúba\nzrúbaj\nzrúbajme\nzrúbajte\nzrúbajú\nzrúbajúc\nzrúbam\nzrúbame\nzrúbaný\nzrúbaš\nzrúbate\nzrúbať\nzrub\nZrubec\nzrubený\nzrúbik\nzrubiť\nzrúbok\nzrubový\nzrúc\nzrúcanie\nzrúcanina\nzrúcanísk\nzrúcanisko\nzrúcaný\nzrúcať\nzrúcnievať\nzruč\nZruč\nzručať\nzručne\nzručnosť\nzručný\nzruinovania\nzruinovanie\nzruinovaním\nzruinovaniu\nzruinovaný\nzruinovať\nzrúknuť\nzrukovať\nzrumenený\nzrumenieť\nzrumeniť\nzrumiť\nzrušene\nzrušenie\nzrušeno\nzrušený\nzrušiteľný\nzrušiť\nzrušovací\nzrušovanej\nzrušovanie\nzrušovaných\nzrušovať\nzruť\nzruta\nzrútenie\nzrútený\nzrútiť\nzruvať\nzruve\nzružovieť\nzryč\nzryčať\nzrýchlene\nzrýchlenie\nzrýchlený\nzrýchliť\nzrýchľovací\nzrýchľovacia\nzrýchľovacie\nzrýchľovacieho\nzrýchľovač\nzrýchľovaní\nzrýchľovania\nzrýchľovanie\nzrýchľovaním\nzrýchľovaniu\nzrýchľovať\nzrýchľujúca\nzrýchľujúce\nzrýchľujúci\nzryjúce\nzryjúci\nzryknúť\nzrýľovať\nzrýmovať\nzrýpať\nzrytmizovať\nzryť\nzrývať\nZS\nZSFZ\nZSNP\nZSS\nZSSR\nZŠ\nztierať\nztotožnil\nZTS\nZŤS\nzuáv\nzuba\nzubá\nzubáči\nzubačka\nzubáč\nzubadielko\nzubadielok\nzubadlo\nzubadlový\nZubák\nZubáka\nzubáľa\nzubále\nzubáli\nzubáľ\nzubáľmi\nzubáľoch\nzubáľom\nzubáľov\nzubáľu\nzubami\nzubaňa\nzubaní\nzubár\nzubárka\nzubársky\nzubársky\nzubárstvach\nzubárstvam\nzubárstvo\nzubato\nzubatosť\nzubatý\nzub\nZubcom\nzubček\nzubec\nZuberca\nZuberci\nZubercom\nZuberec\nzubí\nzubia\nzubiac\nzubil\nzubila\nzubili\nzubilo\nzubím\nzubíme\nzubísk\nzubisko\nzubíš\nzubiť\nzubíte\nzúbkatý\nzúbkovanie\nzúbkovaný\nzúbkovať\nzúbkovito\nzubkovitý\nzúbkovitý\nzubliečba\nzubme\nzubný\nzúbok\nzubolekárske\nzubolekárskej\nzubolekárskych\nzubolekárskymi\nzuboliečbach\nzuboliečbam\nzuboliečbami\nzuboliečba\nzuboliečebný\nzuboliečob\nzuboradie\nzubor\nzubovina\nzubový\nzúbožene\nzúboženie\nzúboženo\nzúboženosť\nzúbožený\nzúbožiť\nzubra\nzubrami\nzubrica\nzubríča\nzubrí\nZubrohlava\nZubrohlave\nzubroch\nzubrov\nzubrovi\nZubrovi\nzubry\nzubte\nzubými\nZUČ\nzúčastnene\nzúčastnenie\nzúčastnením\nzúčastnenosťN\nzúčastnený\nzúčastni\nzúčastnime\nzúčastnite\nzúčastniť\nzúčastňovať\nzúčtovací\nzúčtovanie\nzúčtovaný\nzúčtovateľne\nzúčtovateľnosť\nzúčtovateľný\nzúčtovať\nzúčtovávania\nzúčtovávanie\nzúčtovávaním\nzúčtovávaný\nzúčtovávať\nzúfajúce\nzúfajúcim\nzúfale\nzúfalec\nzúfalejšej\nzúfalejší\nzúfalejšia\nzúfalejšie\nzúfalejšieho\nzúfalejšiemu\nzúfalejších\nzúfalejším\nzúfalejšími\nzúfalejšiu\nzúfalejšom\nzúfalejšou\nzúfalo\nzúfalosť\nzúfalstvo\nzúfalstvosť\nzúfalý\nzúfanie\nzúfanlivosť\nzúfať\nzuhoľnatenie\nzuhoľnatených\nzuhoľnatieť\nzuhoľniť\nzuhoľňovanie\nzúkolovať\nZulské\nzulu\nZulu\nzúmyselný\nzun\nzuň\nzuňať\nzune\nzunel\nzunela\nzuneli\nzunelo\nzunenie\nzunený\nzuní\nzunia\nzuniac\nzuniace\nzuniaci\nzuniacich\nzunieť\nzuním\nzuníme\nzuníš\nzuníte\nzunivo\nzunivý\nzuňme\nzunmi\nZunom\nzunot\nzunovane\nzunovania\nzunovanie\nzunovano\nzunovanosť\nzunovaný\nzunovať\nzuňte\nzunu\nzuny\nzupácky\nzupák\nzúplna\nzúradovania\nzúradovanie\nzúradovaním\nzúradovaný\nzúradovať\nzurážať\nzurbanizované\nzurbanizovaných\nzurbanizuje\nzurč\nzurčanie\nzurčať\nzurčiaci\nzurčiacich\nzurčivo\nzurčivý\nzúrenie\nzúriace\nzúriaci\nzurišskej\nzurišskou\nzurišskú\nzurišských\nZurišský\nzúriť\nzúrivec\nzúrivo\nzúrivosť\nzúrivý\nzurk\nzurkať\nzurkotá\nzurkotaj\nzurkotajme\nzurkotajte\nzurkotajú\nzurkotajúc\nzurkotám\nzurkotáme\nzurkotáš\nzurkotáte\nzurkotať\nzurkotavo\nzurkotavý\nzurkot\nzurkotmi\nzúročenia\nzúročenie\nzúročením\nzúročeniu\nzúročený\nzúročiteľnosť\nzúročiteľný\nzúročiť\nzúročované\nzúročovaní\nzúročovania\nzúročovanie\nzúročovanom\nzúročovať\nzúrodnené\nzúrodnenia\nzúrodnenie\nzúrodnením\nzúrodni\nzúrodnime\nzúrodnite\nzúrodniť\nzúrodňovacie\nzúrodňovacieho\nzúrodňovacích\nzúrodňovania\nzúrodňovanie\nzúrodňovaniu\nzúrodňovať\nzúrodňujúci\nzúrokovať\nzurvalec\nzurvalsky\nzurvalský\nzurvalstvo\nZUŠ\nzušľachť\nzušľachtenia\nzušľachtenie\nzušľachtením\nzušľachteniu\nzušľachtený\nzušľachti\nzušľachtí\nzušľachtia\nzušľachtiac\nzušľachtil\nzušľachtila\nzušľachtili\nzušľachtilo\nzušľachtím\nzušľachtime\nzušľachtíme\nzušľachtíš\nzušľachtiť\nzušľachtite\nzušľachtíte\nzušľachťme\nzušľachťovací\nzušľachťovaní\nzušľachťovania\nzušľachťovanie\nzušľachťovaním\nzušľachťovaniu\nzušľachťovať\nzušľachťte\nzušľachťuje\nzušľachťujúce\nzutekanie\nzutekať\nzútulnej\nzútulnejme\nzútulnejte\nzútulnejú\nzútulnejúc\nzútulnel\nzútulnela\nzútulneli\nzútulnelo\nzútulnené\nzútulni\nzútulnie\nzútulniem\nzútulnieme\nzútulnieš\nzútulnieť\nzútulniete\nzútulnime\nzútulnite\nzútulniť\nzútulňoval\nzútulňovala\nzútulňovali\nzútulňovalo\nzútulňovať\nzútulňuj\nzútulňuje\nzútulňujem\nzútulňujeme\nzútulňuješ\nzútulňujete\nzútulňujme\nzútulňujte\nzútulňujú\nzútulňujúc\nzúverený\nzúveriť\nZúz\nZuzán\nZuzana\nZuzaniných\nZuza\nZuzina\nZuzka\nZuzke\nZuzkou\nZuzku\nzúžene\nzúženie\nzúženina\nzúženo\nzúženosť\nzúžený\nzúžitkoval\nzúžitkovala\nzúžitkovali\nzužitkovaná\nzúžitkovaná\nzužitkované\nzúžitkované\nzužitkovaného\nzužitkovaní\nzúžitkovaní\nzužitkovania\nzúžitkovania\nzužitkovanie\nzúžitkovanie\nzužitkovaním\nzúžitkovaním\nzužitkovaniu\nzúžitkovať\nzužitkovateľnosť\nzužitkovateľný\nzužitkovateľný\nzúžitkovateľný\nzužitkovať\nzužitkovávať\nzúžitkujem\nzúžitkujú\nZužitkúvanie\nzužitkúvať\nzúžiť\nzužovania\nzužovanie\nzužovaním\nzužovaniu\nzužovaný\nzužovať\nzužujúci\nzv\nZV\nzvábiť\nzváč\nzváčka\nzváčsky\nzväčša\nzväčšene\nzväčšenie\nzväčšenina\nzväčšený\nzväčši\nzväčšime\nzväčšite\nzväčšiť\nzväčšovací\nzväčšovák\nzväčšovanie\nzväčšovaný\nzväčšovať\nzväčšujúci\nzvád\nzvada\nzvadenie\nzvadiť\nzvädnutie\nzvädnuto\nzvädnutosť\nzvädnúť\nzvädnutý\nzvádzač\nzvádzačský\nzvádzajúca\nzvádzajúce\nzvádzajúci\nzvádzanie\nzvádzaný\nzvádzať\nzváľať\nzvalcované\nzvalcovaného\nzvalcovať\nzvalenie\nzvalenisko\nzvalený\nzvalchať\nzvaliť\nzvaľkať\nzvaľovaní\nzvaľovania\nZvaľovanie\nzvaľovaním\nzvaľovať\nzván\nzváne\nzvania\nzvaniach\nzvanie\nzvánu\nzvány\nzvaný\nzvaný\nzvápenatených\nzvápenatieť\nzvápenieť\nzvápnenie\nzvápnený\nzvápnieť\nzvár\nzvara\nzvárací\nzvárač\nzváračka\nzváračský\nzváračstva\nzváračstve\nzvarák\nzváranie\nzváraný\nzvárateľnosť\nzvárateľný\nzvárať\nzvar\nzvarenia\nzvarenie\nzvarený\nzvariak\nzvariaku\nzvariaky\nzvariteľnosti\nzvariť\nzvárka\nzvárkami\nzvárky\nzvarovacej\nzvarovacie\nzvarovacích\nzvarovali\nzvarovania\nzvarovanie\nzvarovaním\nzvarovaný\nzvarovať\nzvarovňa\nzvarovní\nzvarový\nzvarte\nzvarujú\nzvásnený\nzvatriť\nzvať\nzväzácky\nzväzáčka\nzväzák\nZväzarm\nzväzarmovec\nzväz\nzväzkovania\nzväzkovanie\nzväzkovať\nzväzkovo\nzväzkový\nzväzoček\nzväzočka\nzväzočkami\nzväzočkoch\nzväzočkom\nzväzočkov\nzväzočku\nzväzočky\nzväzok\nzväzovaná\nzväzovaní\nzväzovanie\nzväzovaním\nzväzovať\nzväzový\nzvážanie\nzvážaných\nzvážať\nzváženie\nzvážený\nzvážiť\nzvážka\nzvážkový\nzvážnic\nzvážnica\nzvážnieť\nzvážnom\nzvážnym\nzvažovanie\nzvažovaný\nzvažovať\nzvažujúce\nzvažujúci\nzvecnená\nzvecni\nzvecnieť\nzvecnime\nzvecnite\nzvecniť\nzvečer\nzvečera\nzvečerievať\nzvečeriť\nzvečerte\nzvečnený\nzvečni\nzvečnime\nzvečnite\nzvečniť\nzvečňovať\nzvedačiť\nzvedavec\nzvedavo\nzvedavosť\nzvedavý\nzved\nzvedečti\nzvedečtime\nzvedečtite\nzvedečtiť\nzvedečťovať\nzvedenia\nzvedenie\nzvedením\nzvedeniu\nzvedený\nzvedieť\nzvedne\nzvednou\nzvednú\nzvedy\nzvel\nzveľadenia\nzveľadenie\nzveľadením\nzveľadeniu\nzveľadený\nzveľadiť\nzveľaďovací\nzveľaďovania\nzveľaďovanie\nzveľaďovaním\nzveľaďovaniu\nzveľaďovaný\nzveľaďovateľ\nzveľaďovateľka\nzveľaďovateľský\nzveľaďovať\nzvelebenie\nzvelebený\nzvelebiť\nzvelebovania\nzvelebovanie\nzvelebovaný\nzvelebovateľ\nzvelebovateľka\nzvelebovať\nzveličene\nzveličenie\nzveličený\nzveličiť\nzveličovací\nzveličovania\nzveličovanie\nzveličovaním\nzveličovaniu\nzveličovaný\nzveličovať\nzvenčí\nzvenčiť\nzveráčik\nzverák\nzverákový\nzverami\nzverbovanec\nzverbovaný\nzverbovať\nzvere\nzverejnenie\nzverejnený\nzverejni\nzverejnime\nzverejnite\nzverejniť\nzverejňovací\nzverejňovanie\nzverejňovaný\nzverejňovať\nzverenec\nzverenia\nzverenica\nzverenie\nzverením\nzvereniu\nzverenka\nzverenkyňa\nzverenský\nzverenstvo\nzverený\nzveriach\nzveriam\nzverín\nzverinách\nzverinám\nzverinami\nzverina\nzverinec\nzverinového\nzveriť\nzver\nzvernica\nzverník\nzverokruh\nzverolekár\nzverolekárka\nzverolekársky\nzverolekárstvach\nzverolekárstvam\nzverolekárstvo\nzverou\nzverované\nzverovaní\nzverovania\nzverovaním\nzverovať\nzverozdravotný\nzverskosť\nzversky\nzverský\nzverstvo\nzveršovanie\nzveršovať\nzverte\nzvesela\nzveselieť\nzvesený\nzvesiť\nzvesovať\nzvesť\nzvestný\nzvestovanie\nzvestovaný\nzvestovateľ\nzvestovateľka\nzvestovateľský\nzvestovať\nzvestujúca\nzvestujúce\nzvestujúci\nzvestúvať\nzvešať\nzvešiavať\nzvetalina\nzvetralina\nzvetralinový\nzvetrania\nzvetranie\nzvetranina\nzvetraninový\nzvetranosť\nzvetraný\nzvetrať\nzvetrávane\nzvetrávania\nzvetrávanie\nzvetrávaním\nzvetrávaniu\nzvetrávaný\nzvetrávať\nzvetrenie\nzvetrieť\nzvetriť\nzvetšieť\nzvez\nzvezená\nzvezenie\nzvezie\nzveziem\nzvezieme\nzvezieš\nzveziete\nzvezme\nzvezte\nzvezú\nzvezúc\nzvi\nzviacnásobiť\nzviacnásobovať\nzviať\nzviazania\nzviazanie\nzviazaním\nzviazanosť\nzviazaný\nzviazať\nzviažuc\nzviď\nzvidieť\nzviditeľnenia\nzviditeľnenie\nzviditeľnením\nzviditeľneniu\nzviditeľnený\nzviditeľni\nzviditeľnime\nzviditeľnite\nzviditeľniť\nzviditeľňovaní\nzviditeľňovania\nzviditeľňovanie\nzviditeľňovaním\nzviditeľňovaniu\nzviditeľňovať\nzvidnený\nzvidnieť\nzviechaní\nZviechanie\nzviechať\nzviechavať\nzviera\nzvierací\nzvierač\nzvierajúci\nzvieranie\nzvieraný\nzvieratiek\nzvieratko\nzvieratník\nzvieratníkový\nzvieratstvo\nzvierať\nzvieravý\nzvierka\nzviertaník\nzviesť\nzviezla\nzviezli\nzviezlo\nzviezol\nzviezť\nzvíchrený\nzvíchriť\nzvíjačky\nzvíjadlá\nzvíjanie\nzvíjať\nzvije\nzviklal\nzvil\nzvila\nzvime\nzviniť\nzvinovací\nzvinoval\nzvinovala\nzvinovali\nzvinovalo\nzvinovať\nzvinuj\nzvinuje\nzvinujem\nzvinujeme\nzvinuješ\nzvinujete\nzvinujme\nzvinujte\nzvinujú\nzvinujúc\nzvinute\nzvinuteľný\nzvinutie\nzvinutka\nzvinúť\nzvinutý\nzvírený\nzvirgať\nzvíriť\nzvirovať\nzvisať\nzvis\nzvisla\nzvisle\nzvislejšej\nzvislejší\nzvislejšia\nzvislejšie\nzvislejšieho\nzvislejšiemu\nzvislejších\nzvislejším\nzvislejšími\nzvislejšiu\nzvislejšom\nzvislejšou\nzvisli\nzvislica\nzvislicová\nzvislo\nzvislosť\nzvislý\nzvisnúť\nzvisnutý\nzvisol\nzviť\nzvítaní\nzvítania\nzvítaniach\nzvítať\nzvítavanie\nzvíťaziť\nzvite\nzvitka\nzvitkami\nzvitkoch\nzvitkom\nzvitkov\nzvitkový\nzvitku\nzvitky\nzvitok\nzvitý\nZVL\nzvlač\nzvlačami\nzvláčať\nzvlače\nzvlačí\nzvlačiach\nzvlačiam\nzvláčiť\nzvláčni\nzvláčnia\nzvláčniac\nzvláčnieť\nzvláčnil\nzvláčnila\nzvláčnili\nzvláčnilo\nzvláčnim\nzvláčnime\nzvláčniš\nzvláčniť\nzvláčnite\nzvláčňovať\nzvlačovať\nzvlačuhy\nzvládania\nzvládanie\nzvládaním\nzvládaný\nzvládať\nzvládnuteľne\nzvládnuteľnosť\nzvládnuteľný\nzvládnutežnosť\nzvládnutie\nzvládnuť\nzvládnutý\nzvládz\nzvládze\nzvládzem\nzvládzeme\nzvládzeš\nzvládzete\nzvládzme\nzvládzte\nzvládzu\nzvládzuc\nzvlákniť\nzvlákňovaní\nzvlákňovania\nzvlákňovanie\nzvlákňovaním\nzvlákňovať\nzvlásť\nzvlášť\nzvláštne\nzvláštnosť\nzvláštnôstka\nzvláštny\nzvlaženie\nzvlažieť\nzvlažiť\nzvlažnieť\nzvlažovanie\nzvlažovať\nzvlčene\nzvlčenosť\nzvlčený\nzvlči\nzvlčilejšej\nzvlčilejší\nzvlčilejšia\nzvlčilejšie\nzvlčilejšieho\nzvlčilejšiemu\nzvlčilejších\nzvlčilejším\nzvlčilejšími\nzvlčilejšiu\nzvlčilejšom\nzvlčilejšou\nzvlčilosť\nzvlčilý\nzvlčime\nzvlčite\nzvlčiť\nzvlečene\nzvlečenosť\nzvlečený\nzvlhávať\nzvlhči\nzvlhčime\nzvlhčite\nzvlhčiť\nzvlhčovač\nzvlhčovaní\nzvlhčovanie\nzvlhčovať\nzvlhnutia\nzvlhnutie\nzvlhnutím\nzvlhnúť\nzvlhnutý\nzvliecť\nzvliekať\nzvlieknuť\nzvlnene\nzvlnenie\nzvlnenosť\nzvlnený\nzvlniť\nzvlňovanie\nzvlňovať\nzvľúdnieť\nzvnútorni\nzvnútornime\nzvnútornite\nzvnútorniť\nzvnútorňovať\nzvnútra\nzvod\nzvodca\nzvodcovsky\nzvodcovský\nzvodidlo\nzvodkyňa\nzvodnatieť\nzvodnenom\nzvodnených\nzvodne\nzvodnica\nzvodníci\nzvodník\nzvodníkov\nzvodnosť\nzvodný\nzvodový\nzvol\nzvoĺ\nzvolací\nzvoľakadiaľ\nzvolanie\nzvolaný\nzvolať\nzvoľa\nzvolávací\nzvolávanie\nzvolávaný\nzvolávateľ\nzvolávateľka\nzvolávať\nzvolebnieva\nzvolebnievaj\nzvolebnievajme\nzvolebnievajte\nzvolebnievajú\nzvolebnievajúc\nzvolebnieval\nzvolebnievala\nzvolebnievali\nzvolebnievalo\nzvolebnievam\nzvolebnievame\nzvolebnievaš\nzvolebnievať\nzvolebnievate\nZvolen\nZvolenčania\nzvolenie\nzvolenské\nzvolenského\nzvolenskej\nzvolenskému\nzvolenskí\nzvolenskom\nzvolenskoslatinskej\nzvolenskou\nzvolenskú\nzvolenských\nzvolenským\nzvolenskými\nZvolenský\nzvolený\nzvoliť\nzvoľna\nzvoľnenie\nzvoľnením\nzvoľneniu\nzvoĺnený\nzvoľnený\nzvoľni\nzvoľnime\nzvoľnite\nzvoľniť\nzvoľňovanie\nzvoľňovať\nzvoľovať\nzvonár\nzvonárik\nzvonárka\nzvonársky\nzvonárstvach\nzvonárstvam\nzvonárstvo\nzvon\nzvoncovito\nzvoncovitý\nzvoncový\nzvonček\nzvončekovitý\nzvončekový\nZvončín\nzvonec\nzvonenie\nzvonený\nzvoniaca\nzvoniacej\nzvoniaci\nzvoniacou\nzvonica\nzvonička\nzvonievať\nzvoniť\nzvonivo\nzvonivosť\nzvonivý\nzvonka\nzvonkať\nzvonkohra\nZvonkom\nzvonkovo\nzvonkový\nzvonku\nzvonky\nzvonný\nzvonohra\nzvonolejár\nzvonolejári\nzvonolejármi\nzvonovec\nzvonovina\nzvonovito\nzvonovitý\nzvonový\nzvoz\nzvoziť\nzvozný\nzvracanie\nzvracať\nzvraskať\nzvráskať\nzvráskatieť\nzvráskavený\nzvráskavieť\nzvrásnenie\nzvrásnený\nzvrásniť\nzvraštenie\nzvraštený\nzvrašti\nzvraštime\nzvraštite\nzvraštiť\nzvrašťovač\nzvrašťovane\nzvrašťovanie\nzvraštovať\nzvrašťovať\nzvrat\nzvrátene\nzvrátenia\nzvrátenie\nzvrátením\nzvráteniu\nzvrátenosť\nzvrátený\nzvrátiť\nzvratmi\nzvratne\nzvrátnosť\nzvratnosť\nzvratný\nzvratok\nzvratový\nzvravný\nzvrčať\nzvresknutie\nzvresknúť\nzvrešť\nzvrešťať\nzvrešťme\nzvrešťte\nzvrhá\nzvŕhať\nzvrhávať\nzvrheľ\nzvrhlec\nzvrhlejšej\nzvrhlejší\nzvrhlejšia\nzvrhlejšie\nzvrhlejšieho\nzvrhlejšiemu\nzvrhlejších\nzvrhlejším\nzvrhlejšími\nzvrhlejšiu\nzvrhlejšom\nzvrhlejšou\nzvrhlík\nzvrhlo\nzvrhlosť\nzvrhlý\nzvrhnutie\nzvrhnúť\nzvrhnutý\nzvrch\nzvrchník\nzvrchníkový\nzvrchný\nzvrchovane\nzvrchovanosť\nzvrchovaný\nzvrchu\nzvrieskať\nzvriesknuť\nzvrieť\nzvrstvene\nzvrstvenia\nzvrstvenie\nzvrstveniu\nzvrstvený\nzvŕšené\nzvŕšení\nzvŕšením\nzvŕši\nzvŕšila\nzvŕšili\nzvŕšiť\nzvrškár\nzvrškárka\nzvrškárky\nzvrškárok\nzvrškárskymi\nzvrškový\nzvršok\nzvrt\nzvŕtania\nzvŕtať\nzvrtkom\nzvrtlík\nzvrtnutím\nzvrtnúť\nzvrtu\nzvrúc\nzvrúcnieť\nzvrúcnievať\nzvrúcniť\nzvŕzgať\nzvšadiaľ\nzvuč\nzvučanie\nzvučať\nzvučiace\nzvučiaci\nzvučiacim\nzvučka\nzvučne\nzvučnosť\nzvučný\nzvukár\nzvukárka\nzvukársky\nzvuk\nzvukomaľba\nzvukomalebne\nzvukomalebnosť\nzvukomalebný\nzvukomera\nzvukomer\nzvukotesne\nzvukotesnosť\nzvukotesný\nzvukovo\nzvukovod\nzvukovosť\nzvukový\nzvulgarizovanie\nzvulgarizovať\nzvulgárnieť\nzvulkanizovaných\nzvulkanizovať\nzvy\nzvyčaj\nzvyčajne\nzvyčajnosť\nzvyčajný\nzvýhodnenie\nzvýhodnený\nzvýhodni\nzvýhodnime\nZvýhodnime\nzvýhodnite\nzvýhodniť\nzvýhodňovania\nzvýhodňovanie\nzvýhodňovaním\nzvýhodňovaniu\nzvýhodňovaný\nzvýhodňovať\nzvykami\nzvykania\nzvykanie\nzvykaniu\nzvykať\nzvyk\nzvykN\nzvyklosť\nzvyklý\nzvyknutá\nzvyknuté\nzvyknutého\nzvyknutej\nzvyknutému\nzvyknutí\nzvyknuto\nzvyknutom\nzvyknutou\nzvyknutú\nzvyknúť\nzvyknutý\nzvyknutých\nzvyknutým\nzvyknutými\nzvykoslovie\nzvykoslovný\nzvykový\nzvyl\nzvyla\nzvýraznenie\nzvýraznený\nzvýrazni\nzvýraznime\nzvýraznite\nzvýrazniť\nzvýrazňovací\nzvýrazňovač\nzvýrazňovača\nzvýrazňovane\nzvýrazňovanie\nzvýrazňovaný\nzvýrazňovať\nzvýrazňujúce\nzvýrený\nzvýskať\nzvýsknutie\nzvýsknuť\nzvyskotať\nzvysoka\nzvýšene\nzvýšenie\nzvýšeno\nzvýšený\nzvýšiť\nzvyškovo\nzvyškový\nzvýšky\nzvyšný\nzvyšný\nzvyšok\nzvyšovač\nzvyšovači\nzvyšovanie\nzvyšovaný\nzvyšovať\nzvyšujúci\nzygoma\nzygomorfia\nzygospóra\nzygospórový\nzygota\nzymáza\nzymológia\nzymotický\nzymóza\nzženštilejšej\nzženštilejší\nzženštilejšia\nzženštilejšie\nzženštilejšieho\nzženštilejšiemu\nzženštilejších\nzženštilejším\nzženštilejšími\nzženštilejšiu\nzženštilejšom\nzženštilejšou\nzženštilo\nzženštilosť\nzženštilý\nzžialiť\nzžierať\nzžieravo\nzžieravý\nzžitia\nzžiť\nzžitý\nzžívať\nž\nŽ\nžabací\nžabacina\nžabacinec\nŽabany\nžaba\nžabcovi\nžabča\nžabčiat\nžabčiatko\nžabčiatok\nžabec\nžabiacky\nžabiak\nžabiaky\nžabiatko\nžabiatok\nžabica\nžabička\nžabí\nžabina\nžabinec\nŽabinská\nžabísk\nžabisko\nžabka\nžabó\nžabokrečiny\nŽabokrekoch\nŽabokreky\nžabomyší\nŽaboškreky\nžabot\nŽabotova\nžaburina\nžaburinka\nžabykláč\nžací\nŽadovica\nžajdlík\nžakár\nŽakarovce\nŽakarovský\nžakárový\nžakárske\nžakárskych\nžakér\nžaketa\nžaket\nžaketovo\nžaketový\nžako\nŽakovce\nŽakýl\nžalár\nžalármi\nžalárnický\nžalárnik\nžalárovaní\nžalárovaním\nžalárovať\nŽalmana\nžalm\nžalmický\nžalmista\nžalmový\nžalobaba\nžalobapáter\nžaloba\nžalobca\nžalobcovo\nŽalobín\nžalobkyňa\nžalobne\nžalobnica\nžalobníček\nžalobníčka\nžalobníčkoch\nžalobníčkom\nžalobníčkov\nžalobníčkovi\nžalobníčkovia\nžalobník\nžalobný\nžalospev\nžalospeve\nžalostiace\nžalostime\nžalostite\nžalostiť\nžalostivo\nžalostivý\nžalosť\nžalostne\nžalostný\nžalovania\nžalovanie\nžalovaný\nžalovateľný\nžalovať\nžaltár\nžaltármi\nžalude\nžaludi\nžaluď\nžalúdkar\nžalúdkarka\nžalúdkový\nžaludný\nžalúdoček\nžalúdočka\nžalúdočkami\nžalúdočkoch\nžalúdočkom\nžalúdočkov\nžalúdočku\nžalúdočky\nžalúdočno\nžalúdočný\nžalúdok\nŽaluďovo\nžaluďový\nžalujúci\nžalúva\nžalúzia\nžalúziový\nžandár\nžandársky\nžandárstvach\nžandárstvam\nžandárstvo\nžáner\nŽaneta\nžánrovo\nžánrový\nžarakara\nžardiniér\nžardiniérach\nžardiniéram\nžardiniéra\nžarg\nžargón\nžargónový\nžarkavý\nŽarko\nžarký\nžarnov\nŽarnovica\nŽarnovice\nŽarnovici\nžarnovického\nžarnovickej\nžarnovickou\nžarnovickú\nžarnovických\nŽarnovický\nŽarnovicou\nŽarnovicu\nžart\nžartík\nžartmi\nžartovanie\nžartovať\nžartovlivý\nžartovne\nžartovník\nžartovníkom\nžartovnosť\nžartovný\nžartujúci\nžasnúť\nŽaškov\nŽaškova\nŽatca\nŽatci\nŽatcom\nŽatec\nžatecký\nžatevný\nžatie\nžatím\nŽatkovce\nžato\nžať\nžatva\nžatý\nŽbince\nžblnk\nžblnkajúceho\nžblnkať\nžblnkavý\nžblnknutie\nžblnknutím\nžblnknúť\nžblnkotajúc\nžblnkotanie\nžblnkotať\nžblnkotavo\nžblnkotavý\nžblnkot\nžblnkotmi\nžbrnda\nžbrnkať\nžbrnkotať\nŽdaňa\nŽdane\nŽdani\nŽdaňu\nŽďárska\nŽďárske\nžďárskeho\nžďárskej\nžďárski\nžďárskom\nŽďársku\nŽďársky\nŽďárskych\nŽďárskym\nŽďárskymi\nŽdiar\nŽdiari\nŽdiarom\nŽdiarska\nždiarske\nždiarskeho\nždiarskej\nždiarskom\nŽdiarsku\nŽdiarsky\nŽdiaru\nždipkať\nže\nžebože\nžeby\nžehlené\nžehlenie\nžehliaci\nžehliar\nžehliareň\nžehliarka\nžehliarňach\nžehliarňam\nžehliarsky\nžehlič\nžehliče\nžehlička\nžehliču\nžehliť\nŽehňa\nžehnajúca\nžehnajúce\nžehnajúci\nžehnajúcim\nžehnajúcimi\nžehnajúcom\nžehnanie\nžehnať\nžehnávať\nŽehne\nŽehni\nŽehra\nžehravý\nŽehre\nŽehrianska\nŽehru\nŽehry\nžel\nŽel\nželací\nželanie\nželaný\nželateľne\nželateľnosť\nželateľný\nželať\nželatežnosť\nželatín\nželatínach\nželatínam\nželatína\nželatínovaní\nželatínovanie\nželatínovať\nželatínový\nželatinu\nželatiny\nželé\nželej\nželejme\nželejte\nželejú\nželejúc\nželenia\nželenie\nželéovito\nželéovitosť\nželéovitý\nželéový\nželez\nželezá\nželeziar\nželeziareň\nželeziarenský\nželeziarňach\nželeziarňam\nželeziarsky\nželeziarstvach\nželeziarstvam\nželeziarstvo\nželezito\nželezitosť\nželezitý\nželeznatý\nželezne\nŽelezniak\nŽelezniakom\nželeznica\nželezničiar\nželezničiarka\nželezničiarsky\nželeznička\nželeznične\nželeznično\nželezničný\nželezník\nŽelezník\nželezno\nŽeleznô\nželeznohrudný\nželeznorudný\nželezný\nželezobetonárov\nželezobetonárskymi\nželezobetón\nželezobetónový\nželezo\nželezonosných\nželezorudný\nželezový\nželiar\nželiarka\nželiarsky\nželiarsky\nželieť\nželiez\nželiezko\nželiezok\nŽeliezovce\nželiezovského\nželiezovskej\nŽeliezovský\nŽelka\nŽelmanovce\nŽelmír\nŽelmírach\nŽelmíram\nŽelmírami\nŽelmíra\nŽelníra\nŽelobudza\nŽelovce\nŽemberovce\nžemberovský\nžemieľ\nžemľa\nžemlí\nŽemliare\nžemlička\nžemľovka\nžemľový\nžen\nženáč\nženantný\nženatý\nžena\nženb\nženbách\nženbám\nženbami\nženba\nženca\nžencami\nženci\nžencoch\nžencom\nžencov\nžencovi\nženec\nženenie\nŽeneva\nŽenevčan\nŽenevčanka\nženevský\nženička\nženie\nženiem\nženieme\nženieš\nženiete\nženieva\nženievať\nženích\nženíchov\nženijný\nženin\nženírovať\nženisko\nženista\nženiť\nženskosť\nžensky\nženský\nženstvo\nženšen\nženšenový\nženšeňový\nženštenosť\nženštilosť\nženštín\nženština\nženú\nženúc\nženuška\nžerava\nžeravenie\nžeravený\nžeraviaci\nžeravieť\nžeravina\nžeraviť\nžeravo\nžeravosť\nžeravý\nžer\nžeriav\nžeriavnický\nžeriavnička\nžeriavnik\nžeriavovi\nžeriavový\nŽernov\nŽerotínova\nžertva\nžertvovať\nžerúca\nžerúci\nžerucha\nžeruchový\nžerušnica\nžervé\nžerzej\nŽES\nžetón\nžetónový\nžeziev\nžezlo\nžgrlačiť\nžgrliť\nžgrľo\nžgrloniť\nžgrloš\nžgrlošiť\nžgrloška\nžgrlošský\nžgrlošstvo\nžhavé\nžhavej\nžhavenie\nžhavých\nžiabe\nžiaber\nžiabier\nžiabom\nžiabov\nžiabrach\nžiabram\nžiabre\nžiabrom\nžiabronožka\nžiabronôžka\nžiabrový\nžiacky\nžiacky\nžiactvach\nžiactvam\nžiactvo\nžiačik\nžiačka\nžiadajúci\nžiadane\nžiadanejší\nžiadanie\nžiadanka\nžiadaný\nžiadateľ\nžiadateľka\nžiadateľov\nžiadať\nžiaden\nžiadny\nžiadostiť\nžiadostivec\nžiadostivo\nžiadostivosť\nžiadostivý\nžiadosť\nžiadúca\nžiadúce\nžiadúceho\nžiadúcej\nžiadúcejší\nžiaducejší\nžiadúcemu\nžiadúci\nžiadúcich\nžiadúcim\nžiadúcimi\nžiaduci\nžiadúcnosti\nžiadúcom\nžiadúcou\nžiadúcu\nžiak\nžiakova\nŽiakovej\nŽiakovou\nžiaľ\nžiaľbohu\nžiale\nžialiť\nžiaľnohlasý\nžiaľny\nžiara\nžiarenie\nžiariaci\nžiarič\nžiariť\nžiarivka\nžiarivkový\nžiarivo\nžiarivosť\nžiarivý\nžiar\nžiarlenia\nžiarliť\nžiarlivec\nžiarlivo\nžiarlivosť\nžiarlivý\nžiarmi\nžiarobetón\nžiarobetónmi\nžiarobetónov\nžiarobetónu\nžiarobetóny\nžiarovísk\nžiarovisko\nžiarovkární\nžiarovka\nžiarovkovo\nžiarovkový\nžiarovo\nžiarový\nŽiarska\nŽiarske\nžiarskeho\nžiarskej\nžiarskemu\nžiarski\nžiarskom\nŽiarskou\nžiarsku\nŽiarsky\nžiarskych\nžiarskym\nžiarskymi\nžiarupevnosť\nžiarupevný\nžiaruvzdorne\nžiaruvzdornosť\nžiaruvzdorný\nŽibrická\nŽibritov\nžičenie\nžičiaci\nžičieva\nžičievaj\nžičievajme\nžičievajte\nžičievajú\nžičievajúc\nžičieval\nžičievala\nžičievali\nžičievalo\nžičievam\nžičievame\nžičievaš\nžičievať\nžičievate\nžičiť\nžičlivec\nžičlivo\nžičlivosť\nžičlivý\nžidáčik\nžidák\nžid\nŽid\nžidi\nžidia\nŽidiny\nžidko\nŽidlovo\nžidova\nžidovčička\nŽidove\nžidovka\nžidovsky\nžidovský\nžidovstvo\nžieňa\nžieňat\nžienka\nžieravina\nžieravo\nžieravosť\nžieravý\nŽigmund\nžigulík\nžíhací\nžihadielko\nžihadielok\nžihadlo\nžihadlový\nŽihal\nžíhane\nžíhania\nžíhanie\nžíhaním\nžíhaniu\nžíhaný\nŽihárci\nŽihárec\nžíhareň\nžíháreň\nžíharenský\nžíharňach\nžíharňam\nžihať\nžíhať\nŽihla\nžihľava\nžihľavka\nžihľavovina\nžihľavový\nŽihli\nžihliav\nžijúci\nŽikava\nŽikavská\nŽikavskej\nžila\nžiletka\nŽilin\nŽilina\nŽilinčan\nŽilinčanka\nžilinský\nžilka\nžilkovanie\nžilkovaný\nžilkovatý\nžilkovitosť\nžilkovitý\nžilnatý\nŽilne\nžilný\nžilôčka\nžilovatenie\nžilovatieť\nžilovatý\nžilovitý\nžilový\nžinantný\nžinčica\nžinenka\nžinka\nžinôčiek\nžinôčkách\nžinôčkám\nžinôčka\nŽipov\nŽipove\nžíra\nŽíra\nžiráf\nžirafa\nžirafí\nžírach\nžirálne\nžíram\nžírami\nŽiranoch\nŽirany\nžíre\nžíriť\nžírne\nžírnosť\nžírny\nžiro\nžíro\nžírom\nžironda\nžirondista\nŽírovce\nžírový\nžíru\nžít\nŽitavany\nŽitava\nŽitavce\nŽitavian\nžitavskú\nŽitavský\nžitiek\nžitie\nžitká\nžitkách\nžitkám\nžitko\nžitku\nžitnoostrovský\nžitný\nžito\nŽitomirská\nŽitomirskej\nžiť\nžitý\nživa\nživáň\nživáni\nživánka\nživánska\nživánske\nživánskeho\nživánskej\nživánskemu\nživánski\nživánskom\nživánskou\nživánsku\nživánsky\nživánskych\nživánskym\nživánskymi\nživcový\nžive\nživec\nživelne\nživelnosť\nživelný\nživel\nŽiven\nŽivenách\nŽivenám\nŽivenami\nŽivena\nživenie\nživený\nživiaca\nživiaci\nživica\nživicový\nživičnatý\nživičný\nŽivien\nživina\nživinový\nživio\nživiteľ\nživiteľka\nživiteľský\nživiť\nživnostensky\nživnostenský\nživnosť\nživnostníc\nživnostnícky\nživnostníctva\nživnostníctve\nživnostníctvo\nživnostníčenia\nživnostníčenie\nživnostníčka\nživnostník\nživný\nživo\nživobytie\nživočervená\nživočervené\nživočichár\nživočichárka\nživočích\nživočíšnosť\nživočíšny\nživočíšstvach\nživočíšstvam\nživočíšstvo\nživor\nživorení\nživorenia\nživorenie\nživorením\nživoreniu\nživoriaci\nživoriť\nživorivý\nživorodosť\nživorodý\nživorte\nživosť\nživostnosť\nživotadarná\nživotadarné\nživotadarnou\nživotaschopne\nživotaschopnosť\nživotaschopný\nživot\nživôtik\nživotmi\nživotne\nživotnoprostreďový\nživotnosť\nživotný\nživotobudič\nživotobudičom\nživotodarne\nživotodárneho\nživotodarnosť\nživotodárnu\nživotodarný\nživotopis\nživotopisec\nživotopisný\nživotospráv\nživotosprávach\nživotosprávam\nživotospráva\nživotunebezpečne\nživotunebezpečný\nživší\nŽivy\nživý\nžízeň\nžízňach\nžízňam\nžíznia\nžízniac\nžíznil\nžíznila\nžíznili\nžíznilo\nžíznim\nžíznime\nžízniš\nžízniť\nžíznite\nžíznivý\nžíž\nžiža\nžiží\nžižiavka\nŽižkova\nŽK\nžľab\nžľabovitý\nžľabový\nžľaza\nžľaznatý\nžľazovitý\nžľazový\nžlč\nžlčnikár\nžlčnikárka\nžlčník\nžlčníkový\nžlčopudne\nžlčopudný\nžlčovite\nžlčovito\nžlčovitosť\nžlčovitý\nžlčovod\nžlčovodný\nžlčovodový\nžlčový\nŽlebín\nžliabček\nžliabkovací\nžliabkovač\nžliabkovane\nžliabkovanie\nžliabkovaný\nžliabkovať\nžliabkovitý\nžliabkový\nžliaboček\nžliabočka\nžliabočkami\nžliabočkoch\nžliabočkom\nžliabočkov\nžliabočku\nžliabočky\nžliabok\nžliaz\nžliazka\nŽlkovce\nžlkovskej\nžĺn\nžlnách\nžlnám\nžlna\nžlť\nžlta\nžltáčik\nžltáčikovi\nžltačkár\nžltačka\nžltačkový\nžlták\nžlťami\nžltasto\nžltastý\nžltavo\nžltavobiely\nžltavý\nžlte\nžlti\nžltiach\nžltiam\nžltieť\nžltkasto\nžltkastobledý\nžltkastý\nžltkavo\nžltkavobledý\nžltkavý\nžĺtko\nžĺtkový\nžltnúca\nžltnutia\nžltnutie\nžltnutiu\nžltnúť\nžlto\nžltobiely\nžltobledý\nžltočervený\nžlto-čierny\nžltohlave\nžltohlav\nžltohlavu\nžltohnedý\nžltochvostami\nžltochvost\nžĺtok\nžltosivý\nžltosť\nžltostrakatého\nžlťou\nžltovlaso\nžltovlasý\nžltozelený\nžltozlatý\nžltšej\nžltší\nžltšia\nžltšie\nžltšieho\nžltšiemu\nžltších\nžltším\nžltšími\nžltšiu\nžltšom\nžltšou\nžltučký\nžltulinký\nžltunký\nžltušký\nžltý\nžmeň\nžmoliť\nžmúračka\nžmúrievať\nžmúriť\nžmurkajúci\nžmurkaná\nžmurkať\nžmurkavý\nžmurka\nžmurk\nžmurknutie\nžmurknúť\nžmurkotať\nžmýkací\nžmýkačka\nžmýkanie\nžmýkaný\nžmýkať\nžne\nžnec\nžnem\nžneme\nžneš\nžnete\nžni\nžnica\nžnieva\nžnievaj\nžnievajme\nžnievajte\nžnievajú\nžnievajúc\nžnieval\nžnievala\nžnievali\nžnievalo\nžnievam\nžnievame\nžnievaš\nžnievať\nžnievate\nžnime\nžnite\nžnivo\nžnú\nžnúc\nžnúca\nžnúci\nžobráckky\nžobrácky\nžobráctvach\nžobráctvam\nžobráctvo\nžobráča\nžobrač\nžobračenka\nžobračenkový\nžobračíN\nžobráčik\nžobráčisko\nžobráčiť\nžobráčka\nžobrajúca\nžobrajúce\nžobrajúceho\nžobrajúci\nžobrajúcich\nžobrajúco\nžobrajúcu\nžobrák\nžobral\nžobrala\nžobrali\nžobralo\nžobranie\nžobrať\nžobravo\nžobravý\nžobre\nžobrem\nžobreme\nžobreš\nžobrete\nžobri\nžobrime\nžobrite\nžobronením\nžobroniť\nžobrôt\nžobrotách\nžobrotám\nžobrotami\nžobrota\nžobrú\nžobrúc\nŽofia\nŽofiina\nžocha\nžochár\nžoch\nžokej\nžold\nžoldniera\nžoldnier\nžoldniersky\nžoldnierstvo\nžolíci\nžolík\nžolíkovi\nžolíkový\nžoltár\nžongláž\nžonglér\nžonglérsky\nžonglérstvach\nžonglérstvam\nžonglérstvo\nžonglovania\nžonglovanie\nžonglovaním\nžonglovať\nžoržet\nžoržetový\nžovialita\nžoviálne\nžoviálnosť\nžoviálny\nŽP\nžráč\nžráče\nžráčka\nžráčsky\nžrádel\nžrádeliek\nžrádelko\nžrádlach\nžrádlam\nžrádlo\nžraloci\nžraločí\nžralok\nžranica\nžranie\nžranivo\nžrať\nžrávať\nžravo\nžravosť\nžravý\nžrď\nžŕdkár\nžrdkár\nžrdkárka\nžrdkársky\nžŕdka\nžŕdkovýa\nžrďovina\nžrďovitý\nžrďový\nžreb\nžrebček\nžrebčekovi\nžrebčí\nžrebčín\nžrebčinec\nžrebecJ\nžrebiareň\nžrebica\nžrebiť\nžrebný\nžrebovacíN\nžrebovanie\nžrebovaný\nžrebovateľný\nžrebovať\nžreca\nžrec\nžreci\nžrecmi\nžrecoch\nžrecom\nžrecov\nžrecovi\nžriebä\nžriebäcí\nžriebät\nžriebätiek\nžriebätko\nžriedel\nžriedelná\nžriedelné\nžriedelného\nžriedelnej\nžriedelnú\nžriedelných\nžriediev\nžriedlo\nžriedlový\nŽrnové\nžrút\nžrútisk\nžrútiská\nžrútiskách\nžrútiskám\nžrútisko\nžrútisku\nŽSR\nžubrienka\nžubrienočka\nžufaňa\nžufaní\nžufanka\nŽuffu\nžuhrať\nžuchnúť\nžujúcej\nžujúci\nŽukova\nžúl\nžulách\nžulám\nžulami\nžula\nžulovitý\nžulovo\nžulový\nžúmp\nžumpa\nžumpový\nžúp\nžupanB\nžupanka\nžupanový\nžupanský\nžupanstvo\nžupa\nŽupčany\nŽupina\nŽupinu\nŽupkov\nžupný\nžúr\nžurčať\nžúriť\nžúrka\nžurkotať\nžurn\nžurnál\nžurnalista\nžurnalisticky\nžurnalistický\nžurnalistika\nžurnalistka\nžurnalizmus\nžurnálmi\nžurnálový\nžutie\nžutím\nžuto\nžuť\nžutý\nžuvací\nžuvačka\nžuvačkový\nžuvanec\nžuvanie\nžuvaný\nžuvať\nžúžoľa\nžúžole\nžúžoli\nžúžoľ\nžúžoľmi\nžúžoľoch\nžúžoľom\nžúžoľov\nžúžoľový\nžúžoľu\nžužu\nžvacheľ\nžviakať\nžžon"
  },
  {
    "path": "Quelea/dictionaries/sv.words",
    "content": "﻿a\r\nà\r\nabakus\r\nabba\r\nabbé\r\nabbedissa\r\nabborre\r\nabbreviera\r\nabdikera\r\nabdikerar\r\naber\r\nabnorm\r\nabnormitet\r\nabonnemang\r\nabonnent\r\nabonnera\r\nabonnerar\r\nabort\r\nabraham\r\nabrahams\r\nabrakadabra\r\nabrupt\r\nabsolut\r\nabsolutism\r\nabsolutist\r\nabsorbera\r\nabsorberad\r\nabsorberar\r\nabstinens\r\nabstraherar\r\nabstrakt\r\nabstraktion\r\nabsurd\r\nacceleration\r\naccelerera\r\naccelererar\r\naccent\r\naccentuera\r\naccentuerar\r\naccentuering\r\naccept\r\nacceptabel\r\nacceptabelt\r\nacceptans\r\nacceptera\r\naccepterande\r\naccepterar\r\naccess\r\naccessoarer\r\naccis\r\naceton\r\nack\r\nacklamation\r\nacklimatisera\r\nacklimatiserar\r\nackompanjerar\r\nackord\r\nackordet\r\nackrediterar\r\nackumulation\r\nackumulera\r\nackumulerar\r\nackurat\r\nackuratess\r\nacne\r\naction\r\nactionfilm\r\nactionrulle\r\nadam\r\nadams\r\nadamsäpple\r\nadaptation\r\naddera\r\nadderande\r\nadderar\r\naddition\r\nadekvat\r\nadel\r\nadelsman\r\nadept\r\naderton\r\nadhesion\r\nadjektiv\r\nadjungerar\r\nadjunkt\r\nadjutant\r\nadjö\r\nadlar\r\nadministration\r\nadministrativ\r\nadministrator\r\nadministratör\r\nadministrera\r\nadministrerar\r\nadministrering\r\nadopterade\r\nadopterar\r\nadopterat\r\nadoption\r\nadoptivbarn\r\nadoptivförälder\r\nadrenalin\r\nadress\r\nadressat\r\nadresserar\r\nadvent\r\nadventstid\r\nadverb\r\nadverbial\r\nadvokat\r\nadvokatbyrå\r\naerodynamisk\r\naerogram\r\nafasi\r\naffekt\r\naffektera\r\naffekterad\r\naffekteras\r\naffektion\r\naffektionsvärde\r\naffisch\r\naffischer\r\naffischerar\r\naffär\r\naffärer\r\naffärerna\r\naffärsman\r\naffärsmässig\r\naffärsrörelse\r\naffärsverksamhet\r\naforism\r\nafrikan\r\nafrikaner\r\nafrikansk\r\nafrofrisyr\r\nafton\r\naftonbön\r\naftonen\r\naftonens\r\naftonljus\r\naftonmål\r\naftonstjärnan\r\naftonstund\r\naftonsång\r\naftonsången\r\naga\r\nagan\r\nagar\r\nagenda\r\nagent\r\nagentur\r\nagera\r\nagerande\r\nagerar\r\nagg\r\nagglomeration\r\naggregat\r\naggression\r\naggressiv\r\nagiterar\r\nagn\r\nagnar\r\nagnarna\r\nagoni\r\nagronom\r\naids\r\naj\r\najournerar\r\najöss\r\nakademi\r\nakademiker\r\nakademisk\r\nakilleshäl\r\nakne\r\nakrobat\r\nakryl\r\nakt\r\nakta\r\naktad\r\naktar\r\naktas\r\nakter\r\nakterseglad\r\naktie\r\naktiebolag\r\naktieinnehav\r\naktiepost\r\naktier\r\naktieägare\r\naktion\r\naktiv\r\naktiva\r\naktiverar\r\naktivist\r\naktivitet\r\naktivt\r\naktning\r\naktningsvärd\r\naktris\r\naktsam\r\naktsamhet\r\naktualisera\r\naktualiserar\r\naktualitet\r\naktuell\r\naktuellt\r\naktör\r\nakupunktur\r\nakustik\r\nakustisk\r\nakut\r\nakuten\r\nakutmottagning\r\nakvarell\r\nakvarium\r\nakvavit\r\nal\r\nalabaster\r\naladåb\r\nalarm\r\nalarmerande\r\nalban\r\nalbaner\r\nalbansk\r\nalbino\r\nalbum\r\naldrig\r\nalert\r\nalerta\r\nalfa\r\nalfabet\r\nalfabetiserar\r\nalfabetisk\r\nalg\r\nalger\r\nalgerier\r\nalgerisk\r\nalias\r\nalibi\r\nalienation\r\nalienerad\r\nalika\r\nalkali\r\nalkemi\r\nalkis\r\nalkohol\r\nalkoholism\r\nalkoholist\r\nalkoholisterna\r\nalkoholists\r\nalkoholmissbrukare\r\nalkoholpoliklinik\r\nalkoholpåverkad\r\nalkotest\r\nalkov\r\nall\r\nalla\r\nallan\r\nallaredan\r\nallas\r\nallbekant\r\nalldaglig\r\nalldeles\r\nalldenstund\r\nallé\r\nallegori\r\nallehanda\r\nallemansfond\r\nallemansrätt\r\nallemanssparande\r\nallen\r\nallena\r\nallenarådande\r\nallenast\r\nallergi\r\nallergisk\r\nallesamman\r\nallesammans\r\nallestädes\r\nallgod\r\nAllhelgonahelgen\r\nallians\r\nalliansfri\r\nalliera\r\nallierad\r\nallihop\r\nallihopa\r\nallmakt\r\nallmaktens\r\nallmakts\r\nallmaktsord\r\nallmoge\r\nallmosa\r\nallmosor\r\nallmän\r\nallmänbildad\r\nallmänbildning\r\nallmänfarlig\r\nallmängiltig\r\nallmängods\r\nallmänhet\r\nallmänning\r\nallmännyttig\r\nallmänt\r\nallokera\r\nallom\r\nallomfattande\r\nallra\r\nalls\r\nallsidig\r\nallsköns\r\nallsmäktig\r\nallsmäktiga\r\nallsmäktige\r\nallsvensk\r\nallsvåldiges\r\nallsång\r\nallt\r\nallteftersom\r\nalltemellanåt\r\nalltet\r\nalltfort\r\nalltför\r\nalltiallo\r\nalltid\r\nalltifrån\r\nalltigenom\r\nalltihop\r\nalltihopa\r\nallting\r\nalltings\r\nalltjämt\r\nalltmer\r\nalltmera\r\nalltnog\r\nalltsamman\r\nalltsammans\r\nalltsedan\r\nalltså\r\nallvar\r\nallvarlig\r\nallvarligt\r\nallvarsam\r\nalm\r\nalmanacka\r\nalnars\r\nalperna\r\nalpin\r\nalster\r\nalstra\r\nalstrar\r\nalstras\r\nalt\r\naltan\r\naltarbord\r\naltarbordet\r\naltare\r\naltaren\r\naltaret\r\naltarets\r\naltarfot\r\naltarna\r\naltarnas\r\nalter\r\nalternativ\r\nalternativet\r\nalternativmedicin\r\nalternativord\r\nalternativt\r\nalternera\r\nalternerande\r\nalternerar\r\naltruism\r\naltruist\r\nalträd\r\naluminium\r\namalgam\r\namason\r\namatör\r\nambassad\r\nambassadör\r\nambition\r\nambitioner\r\nambitiös\r\nambitiöst\r\nambivalens\r\nambivalent\r\nambulans\r\nambulerar\r\namen\r\namerikan\r\namerikanare\r\namerikaner\r\namerikansk\r\namfetamin\r\namfiteater\r\namiral\r\namma\r\nammar\r\nammunition\r\namnesti\r\namning\r\namok\r\namoklöpning\r\namoralisk\r\namorterar\r\namortering\r\namos\r\nampel\r\nampere\r\namplifiera\r\nampull\r\namputerar\r\namulett\r\nan\r\nana\r\nanabol\r\nanade\r\nanakronism\r\nanalfabet\r\nanalog\r\nanalogi\r\nanalys\r\nanalysera\r\nanalyserar\r\nanalytisk\r\nanamma\r\nanammar\r\nanamnes\r\nananas\r\nanar\r\nanarki\r\nanarkist\r\nanat\r\nanatomi\r\nanbefalla\r\nanbefaller\r\nanbelanga\r\nanbelangar\r\nanblick\r\nanbringar\r\nanbud\r\nand\r\nanda\r\nandades\r\nandakt\r\nandaktsfull\r\nandan\r\nandar\r\nandas\r\nande\r\nandedop\r\nandedrag\r\nandedräkt\r\nandedräkten\r\nandekraft\r\nandel\r\nandelarna\r\nandelslägenhet\r\nandelsägare\r\nandelös\r\nandemakter\r\nandemening\r\nanden\r\nandens\r\nandes\r\nandetag\r\nandevärld\r\nandeväsen\r\nandfådd\r\nandhämtning\r\nandlig\r\nandligt\r\nandlös\r\nandning\r\nandningsorgan\r\nandnöd\r\nandra\r\nandrahandsaffär\r\nandrahandslägenhet\r\nandrahandsvärde\r\nandrar\r\nandras\r\nandre\r\nandres\r\nandrogyn\r\nandrum\r\nanekdot\r\nanemi\r\nanemisk\r\nanestesi\r\nanestesiolog\r\nanfader\r\nanfall\r\nanfalla\r\nanfaller\r\nanfallsspelare\r\nanfang\r\nanfordran\r\nanfrätt\r\nanfäkta\r\nanfäktar\r\nanföll\r\nanför\r\nanföra\r\nanförande\r\nanförare\r\nanföring\r\nanförtro\r\nanförtroddes\r\nanförtror\r\nanförtros\r\nanförtrott\r\nanförtrotts\r\nanförvant\r\nangav\r\nange\r\nangelägen\r\nangeläget\r\nangelägna\r\nangenäm\r\nanger\r\nanges\r\nangett\r\nangick\r\nangivare\r\nangiven\r\nangrep\r\nangrepp\r\nangreppet\r\nangripa\r\nangriparen\r\nangripen\r\nangriper\r\nangränsande\r\nangå\r\nangående\r\nangår\r\nangör\r\nanhalt\r\nanhopa\r\nanhopning\r\nanhålla\r\nanhållan\r\nanhållande\r\nanhåller\r\nanhängare\r\nanhöll\r\nanhörig\r\nanimalisk\r\nanimerad\r\naning\r\naningslös\r\nanis\r\nanka\r\nankar\r\nankare\r\nankarfäste\r\nankargrunden\r\nankdamm\r\nankel\r\nanklaga\r\nanklagar\r\nanklagelse\r\nanklagelserna\r\nanklang\r\nanknyta\r\nanknyter\r\nanknytning\r\nanknytningsfall\r\nankomma\r\nankommer\r\nankomst\r\nankomsten\r\nankor\r\nankrar\r\nankunge\r\nanlag\r\nanledning\r\nanledningar\r\nanledningarna\r\nanlete\r\nanletes\r\nanletsdrag\r\nanlita\r\nanlitar\r\nanlägga\r\nanlägger\r\nanläggning\r\nanlända\r\nanlände\r\nanländer\r\nanlöper\r\nanmanar\r\nanmodan\r\nanmodar\r\nanmäla\r\nanmälan\r\nanmäler\r\nanmälning\r\nanmärka\r\nanmärker\r\nanmärkning\r\nanmärkningsvärd\r\nanmärkningsvärt\r\nannalkande\r\nannan\r\nannandag\r\nannans\r\nannanstans\r\nannars\r\nannat\r\nannektera\r\nannekterar\r\nannex\r\nannons\r\nannonsen\r\nannonsera\r\nannonserad\r\nannonserar\r\nannonsering\r\nannorlunda\r\nannorstädes\r\nannuell\r\nannullerar\r\nanomali\r\nanonym\r\nanor\r\nanorak\r\nanordna\r\nanordnar\r\nanordning\r\nanorexi\r\nanpassa\r\nanpassar\r\nanpasslig\r\nanpassning\r\nanpassningsbar\r\nanpassningsbidrag\r\nanpassningsgrupp\r\nanrik\r\nanrikar\r\nanrop\r\nanropa\r\nanropar\r\nanrätta\r\nanrättade\r\nanrättar\r\nanrättning\r\nans\r\nansad\r\nansamling\r\nansar\r\nansats\r\nansatt\r\nanse\r\nansedd\r\nanseende\r\nansenlig\r\nanser\r\nansikte\r\nansiktena\r\nansiktes\r\nansiktslyftning\r\nansjovis\r\nanskaffa\r\nanskaffar\r\nanskri\r\nanskrämlig\r\nanslag\r\nansluta\r\nansluter\r\nanslutning\r\nanslå\r\nanslående\r\nanslår\r\nanslöt\r\nanspelar\r\nanspelning\r\nanspråk\r\nanspråksfull\r\nanspråkslös\r\nanspänning\r\nanstalt\r\nanstaltens\r\nanstiftar\r\nanstod\r\nanstorma\r\nanstormning\r\nanstrykning\r\nanstränga\r\nansträngande\r\nansträngd\r\nanstränger\r\nansträngning\r\nansträngningarna\r\nanstå\r\nanstånd\r\nanstår\r\nanställa\r\nanställd\r\nanställda\r\nanställde\r\nanställer\r\nanställning\r\nanställningsskydd\r\nanständig\r\nanständighet\r\nanstöt\r\nanstötlig\r\nansvar\r\nansvara\r\nansvarar\r\nansvarig\r\nansvariga\r\nansvarsfrihet\r\nansvarslös\r\nansåg\r\nansätter\r\nansöka\r\nansökan\r\nansöker\r\nansökning\r\nansökte\r\nanta\r\nantaga\r\nantagande\r\nantagit\r\nantagligen\r\nantagonist\r\nantal\r\nantar\r\nantasta\r\nantastar\r\nanteckna\r\nantecknar\r\nanteckning\r\nanteckningar\r\nantenn\r\nantibiotika\r\nantihjälte\r\nantik\r\nantiken\r\nantikhandel\r\nantiklimax\r\nantikrister\r\nantikropp\r\nantikvariat\r\nantikverad\r\nantikvitet\r\nantikvitetshandel\r\nantingen\r\nantisemit\r\nantisemitism\r\nantiseptisk\r\nantog\r\nantologi\r\nantonym\r\nantropologi\r\nanträda\r\nanträffa\r\nanträffar\r\nanträffbar\r\nantyda\r\nantydan\r\nantyder\r\nantydning\r\nantågande\r\nantänder\r\nanvisa\r\nanvisar\r\nanvisning\r\nanvänd\r\nanvända\r\nanvändande\r\nanvändare\r\nanvändbar\r\nanvändbarhet\r\nanvändbart\r\nanvände\r\nanvänder\r\nanvändning\r\nanvänds\r\nanvänts\r\naorta\r\napa\r\napanage\r\napar\r\napart\r\napartheid\r\napartment\r\napati\r\napatisk\r\napel\r\napelsin\r\naperitif\r\napokalyptisk\r\napollos\r\napostel\r\naposteln\r\napostlagärningarna\r\napostlahäst\r\napostlar\r\napostlarna\r\napostlarnas\r\napostrof\r\napotek\r\napparat\r\napparatur\r\nappell\r\nappellera\r\nappellerar\r\nappendicit\r\nappendix\r\napplicera\r\napplicerar\r\napplicering\r\napplikation\r\napplåd\r\napplådera\r\napplåderar\r\napport\r\napporterar\r\nappreciera\r\napproximation\r\napproximativ\r\napproximativt\r\napproximera\r\naprikos\r\napril\r\naprilväder\r\napropå\r\napterar\r\naptit\r\naptitlig\r\naptitretare\r\narab\r\narabiska\r\narbeta\r\narbetade\r\narbetande\r\narbetar\r\narbetare\r\narbetarkommun\r\narbetarrörelse\r\narbetarskydd\r\narbetas\r\narbete\r\narbetena\r\narbetes\r\narbetet\r\narbetets\r\narbetsam\r\narbetsamhet\r\narbetsamt\r\narbetsansvarig\r\narbetsbiträde\r\narbetsbostad\r\narbetsdag\r\narbetsdagarna\r\narbetsför\r\narbetsförmedling\r\narbetsgivaravgift\r\narbetsgivare\r\narbetsgivarinträde\r\narbetsgrupp\r\narbetsgång\r\narbetshåg\r\narbetskamrat\r\narbetskraft\r\narbetslag\r\narbetsledare\r\narbetslivserfarenhet\r\narbetslös\r\narbetslöshet\r\narbetslöshetsförsäkring\r\narbetslöshetskassa\r\narbetsmarknad\r\narbetsmarknadsinstitut\r\narbetsmarknadsstöd\r\narbetsmarknadsutbildning\r\narbetsmödan\r\narbetsnamn\r\narbetsnedläggelse\r\narbetsordningar\r\narbetsplats\r\narbetsplikt\r\narbetsprövning\r\narbetsredskap\r\narbetsro\r\narbetsrotation\r\narbetsskada\r\narbetsskadeförsäkring\r\narbetsskygg\r\narbetsstyrka\r\narbetsställe\r\narbetstagare\r\narbetsterapeut\r\narbetsterapi\r\narbetstid\r\narbetstillstånd\r\narbetsträning\r\narbetströtta\r\narbetsuppgift\r\narbetsuppgifter\r\narbetsvan\r\narbetsvecka\r\narbetsveckans\r\narbetsvård\r\narbetsvägledare\r\narbetsvägledning\r\narbiträrt\r\narea\r\nareal\r\narena\r\narg\r\nargentinare\r\nargentinsk\r\nargsint\r\nargument\r\nargumentation\r\nargumentera\r\nargumenterar\r\naria\r\naristokrat\r\naristokrati\r\naristokratisk\r\nark\r\narkad\r\narkaisk\r\narkebusera\r\narkebuserar\r\narkebusering\r\narken\r\narkens\r\narkeolog\r\narkeologi\r\narketyp\r\narkipelag\r\narkitekt\r\narkitektur\r\narkiv\r\narkivera\r\narla\r\narm\r\narma\r\narmada\r\narmar\r\narmarna\r\narmas\r\narmatur\r\narmband\r\narmbandsur\r\narmbågar\r\narmbåge\r\narme\r\narmé\r\narmen\r\narmenier\r\narmenisk\r\narmeniska\r\narmera\r\narmerar\r\narmering\r\narmes\r\narmhåla\r\narmod\r\narmt\r\narom\r\naron\r\narrangemang\r\narrangera\r\narrangerande\r\narrangerar\r\narrangör\r\narrendator\r\narrende\r\narrendera\r\narrenderar\r\narrest\r\narrestera\r\narresterar\r\narrogans\r\narrogant\r\narsenal\r\nart\r\nartar\r\nartfrämmande\r\nartificiell\r\nartig\r\nartighet\r\nartikel\r\nartiklar\r\nartikulera\r\nartikulerad\r\nartikulerar\r\nartilleri\r\nartilleripjäs\r\nartist\r\nartistisk\r\nartnamn\r\narton\r\nartonhundratal\r\nartutveckling\r\nartär\r\narv\r\narvedel\r\narvelott\r\narveländer\r\narvet\r\narvinge\r\narvlös\r\narvode\r\narvsanlag\r\narvskifte\r\narvslott\r\narvslotten\r\narvsrätt\r\narvsynd\r\narvtagare\r\nas\r\nasbest\r\nasch\r\nasfalt\r\nasfalten\r\nasfalterar\r\nasfågel\r\nasiat\r\nasiatisk\r\nask\r\naska\r\naskar\r\nasket\r\naskfat\r\naskkopp\r\naskonsdagen\r\nasocial\r\nasp\r\naspekt\r\naspirant\r\naspiration\r\naspirerar\r\nass\r\nassiett\r\nassimilera\r\nassimilerar\r\nassist\r\nassistans\r\nassistens\r\nassistent\r\nassistera\r\nassisterar\r\nassociation\r\nassociera\r\nassocierad\r\nassocierar\r\nassurans\r\nassurerar\r\nassyrier\r\nassyrisk\r\naster\r\nasterisk\r\nasteroid\r\nastigmatisk\r\nastma\r\nastrologi\r\nastronaut\r\nastronomi\r\nasyl\r\natavistisk\r\nateist\r\nateljé\r\natlanten\r\natlas\r\natlet\r\natmosfär\r\natmosfären\r\natom\r\natombomb\r\natomen\r\natomerna\r\natomkraft\r\natomvapen\r\natonalt\r\natt\r\nattaché\r\nattachéväska\r\nattack\r\nattacken\r\nattackera\r\nattackerad\r\nattackerande\r\nattackerar\r\nattans\r\nattentat\r\nattest\r\nattesterar\r\nattiralj\r\nattityd\r\nattrahera\r\nattraherande\r\nattraherar\r\nattraktion\r\nattraktiv\r\nattribut\r\naubergin\r\naubergine\r\naudiens\r\naudiovisuell\r\nauditorium\r\naugusti\r\nauktion\r\nauktorisera\r\nauktoriserar\r\nauktoritativ\r\nauktoritet\r\nauktoritär\r\naula\r\nauskulterar\r\naustralisk\r\nautentisk\r\nautodidakt\r\nautograf\r\nautokrat\r\nautomat\r\nautomatgevär\r\nautomatiserar\r\nautomatisk\r\nautomatiskt\r\nautomatlåda\r\nautomobil\r\nautonom\r\nautoritär\r\nautostrada\r\nav\r\navancemang\r\navancera\r\navancerad\r\navancerar\r\navanmäla\r\navans\r\navantgarde\r\navart\r\navbalkar\r\navbalkning\r\navbeställer\r\navbeställning\r\navbeställningssedel\r\navbetalning\r\navbetalningskontrakt\r\navbetalningsköp\r\navbild\r\navbilda\r\navbildar\r\navbilder\r\navbildning\r\navblåsa\r\navbrott\r\navbruten\r\navbryta\r\navbryter\r\navbräck\r\navbröt\r\navbröts\r\navbytare\r\navböja\r\navböjer\r\navbön\r\navdankad\r\navdela\r\navdelades\r\navdelar\r\navdelning\r\navdrag\r\navdragsgill\r\navdramatiserar\r\navdunsta\r\navdunstar\r\navel\r\naveny\r\naversion\r\navfall\r\navfallets\r\navfallsbehållare\r\navfart\r\navfolkas\r\navfordra\r\navfyra\r\navfyrar\r\navfälling\r\navfärd\r\navfärda\r\navfärdande\r\navfärdar\r\navföll\r\navföring\r\navgas\r\navge\r\navger\r\navgick\r\navgift\r\navgiftsfri\r\navgjord\r\navgjorde\r\navgjort\r\navgrund\r\navgrunden\r\navgrundens\r\navgrunders\r\navgrunds\r\navgränsa\r\navgränsar\r\navgränsas\r\navgränsning\r\navguda\r\navgudar\r\navgudarna\r\navgå\r\navgående\r\navgång\r\navgångsbetyg\r\navgångsbidrag\r\navgår\r\navgör\r\navgöra\r\navgörande\r\navgöras\r\navhandla\r\navhandling\r\navhjälpa\r\navhjälper\r\navhopp\r\navhoppare\r\navhugget\r\navhysa\r\navhyser\r\navhålla\r\navhåller\r\navhållsam\r\navhända\r\navhängig\r\navhölja\r\navi\r\navig\r\navigsida\r\navis\r\navisera\r\naviserar\r\navkall\r\navkapat\r\navkastning\r\navklara\r\navklarad\r\navklarar\r\navklippt\r\navklädd\r\navklädning\r\navkoda\r\navkomling\r\navkomma\r\navkoppling\r\navkorta\r\navkrok\r\navkräver\r\navkunna\r\navkunnar\r\navla\r\navlade\r\navlagt\r\navlar\r\navlastar\r\navlastning\r\navlastningsventil\r\navlat\r\navled\r\navleda\r\navleder\r\navledningsrör\r\navlelse\r\navlid\r\navlida\r\navliden\r\navlider\r\navliva\r\navlivar\r\navlopp\r\navloppsledning\r\navlossa\r\navlossar\r\navlyssnar\r\navlång\r\navlägger\r\navlägsen\r\navlägsna\r\navlägsnade\r\navlägsnande\r\navlägsnar\r\navlämnar\r\navläsa\r\navläser\r\navlöna\r\navlönad\r\navlönar\r\navlöning\r\navlöpa\r\navlöper\r\navlöser\r\navlövad\r\navmagra\r\navmagrad\r\navmätt\r\navnjuter\r\navnämare\r\navnöta\r\navog\r\navogt\r\navokado\r\navpassa\r\navpassad\r\navpassar\r\navpassning\r\navpressa\r\navreagerar\r\navregistrerar\r\navresa\r\navrunda\r\navrundar\r\navrustar\r\navrustning\r\navråder\r\navrätta\r\navrättade\r\navrättar\r\navrättning\r\navsaknad\r\navsats\r\navsatt\r\navse\r\navsedd\r\navsedda\r\navseende\r\navseenden\r\navsegla\r\navser\r\navsett\r\navsevärd\r\navsevärt\r\navsides\r\navsikt\r\navsiktlig\r\navsiktligt\r\navskaffa\r\navskaffade\r\navskaffar\r\navskalat\r\navsked\r\navskeda\r\navskedar\r\navskedat\r\navskild\r\navskilja\r\navskiljande\r\navskiljare\r\navskiljer\r\navskrift\r\navskriv\r\navskrivning\r\navskräckande\r\navskräcker\r\navskräckte\r\navskräde\r\navskum\r\navsky\r\navskydda\r\navskyr\r\navskyvärd\r\navskärma\r\navskärmar\r\navslag\r\navslagen\r\navslagit\r\navslappnad\r\navslappnande\r\navslappnat\r\navslog\r\navsluta\r\navslutad\r\navslutar\r\navslutning\r\navslutningsvis\r\navslå\r\navslår\r\navslöja\r\navslöjande\r\navslöjar\r\navsmak\r\navsnitt\r\navspegla\r\navspeglar\r\navspelning\r\navspisa\r\navspisar\r\navspänd\r\navspänning\r\navspärra\r\navspärrar\r\navstamp\r\navstavar\r\navsteg\r\navstickare\r\navstod\r\navstressande\r\navstyr\r\navstyra\r\navstyrker\r\navstå\r\navstånd\r\navstår\r\navställning\r\navstängd\r\navstänger\r\navstängning\r\navstöta\r\navsvimmad\r\navsyna\r\navsynar\r\navsåg\r\navsäga\r\navsäger\r\navsända\r\navsändare\r\navsätta\r\navsätter\r\navsättning\r\navsöka\r\navsöndrar\r\navta\r\navtackar\r\navtaga\r\navtagande\r\navtagsväg\r\navtal\r\navtala\r\navtalar\r\navtalat\r\navtalet\r\navtalsenlig\r\navtalsförhandling\r\navtar\r\navtjänar\r\navtorkats\r\navtrubbad\r\navtrubbar\r\navtryck\r\navtryckare\r\navträde\r\navträder\r\navtvinga\r\navtyna\r\navtågar\r\navtärd\r\navund\r\navundas\r\navundsjuk\r\navundsjuka\r\navvakta\r\navvaktade\r\navvaktande\r\navvaktar\r\navvarar\r\navvecklar\r\navverka\r\navverkar\r\navverkning\r\navvika\r\navvikande\r\navvikelse\r\navviker\r\navvikit\r\navvikning\r\navvisa\r\navvisande\r\navvisar\r\navvisning\r\navväg\r\navväga\r\navvägar\r\navväger\r\navvända\r\navvände\r\navvänjer\r\navvänjning\r\navväpna\r\navväpnad\r\navväpnande\r\navväpnar\r\navväpning\r\navvärja\r\navvärjer\r\navyttra\r\navyttrar\r\nax\r\naxel\r\naxiom\r\naxlar\r\naxplock\r\nayatolla\r\nazalea\r\nbabbel\r\nbabbla\r\nbabblande\r\nbabblar\r\nbabel\r\nbabord\r\nbaby\r\nbabylon\r\nbabylons\r\nbabysäng\r\nbacill\r\nback\r\nbacka\r\nbackar\r\nbacke\r\nbacken\r\nbackig\r\nbacksluttning\r\nbackspegel\r\nbacon\r\nbad\r\nbada\r\nbadar\r\nbadbyxa\r\nbaddar\r\nbaddare\r\nbaddräkt\r\nbadhall\r\nbadhus\r\nbadkar\r\nbadminton\r\nbadort\r\nbadrum\r\nbadstrand\r\nbag\r\nbagage\r\nbagageutrymme\r\nbagarbod\r\nbagare\r\nbagatell\r\nbagatellartad\r\nbageri\r\nbagett\r\nbagge\r\nbaggen\r\nbaisse\r\nbajonett\r\nbajonettfattning\r\nbak\r\nbakar\r\nbakbinder\r\nbakdel\r\nbakelse\r\nbakerst\r\nbakficka\r\nbakfoten\r\nbakfram\r\nbakfull\r\nbakgrund\r\nbakhuvud\r\nbakhåll\r\nbakifrån\r\nbakis\r\nbaklås\r\nbaklänges\r\nbakläxa\r\nbakom\r\nbakplåt\r\nbakpulver\r\nbakre\r\nbakrus\r\nbaksida\r\nbaksidan\r\nbakslag\r\nbakslug\r\nbakslugt\r\nbaksmälla\r\nbaksäte\r\nbaktala\r\nbaktalar\r\nbaktalat\r\nbaktanke\r\nbaktericid\r\nbakterie\r\nbakteriedödande\r\nbakteriefri\r\nbaktill\r\nbakugn\r\nbakugnar\r\nbakverk\r\nbakvänd\r\nbakåt\r\nbal\r\nbalans\r\nbalansera\r\nbalanserad\r\nbalanserar\r\nbalansräkning\r\nbalett\r\nbalja\r\nbalk\r\nbalkong\r\nball\r\nballa\r\nballad\r\nballast\r\nballerina\r\nballong\r\nballt\r\nbalsam\r\nbalsamerad\r\nbalsamerar\r\nbalsamering\r\nbalt\r\nbaltisk\r\nbalustrad\r\nbamba\r\nbambu\r\nbamse\r\nbana\r\nbanal\r\nbanan\r\nbanar\r\nbanat\r\nbanbrytande\r\nbanbrytare\r\nband\r\nbandage\r\nbandagera\r\nbandar\r\nbanden\r\nbanderoll\r\nbandit\r\nbands\r\nbandspelare\r\nbandvagn\r\nbandy\r\nbaneman\r\nbaner\r\nbaneret\r\nbang\r\nbanga\r\nbangård\r\nbanhoppning\r\nbank\r\nbanka\r\nbankande\r\nbankar\r\nbankbok\r\nbanken\r\nbankett\r\nbankfack\r\nbankgiro\r\nbankir\r\nbankman\r\nbankomat\r\nbankrutt\r\nbankvalv\r\nbann\r\nbanna\r\nbannbulla\r\nbannlysa\r\nbannlyser\r\nbannor\r\nbanor\r\nbanta\r\nbantad\r\nbantar\r\nbaptist\r\nbar\r\nbara\r\nbarabbas\r\nbarack\r\nbarbacka\r\nbarbar\r\nbarbarisk\r\nbarberare\r\nbard\r\nbardisk\r\nbarfota\r\nbarhuvad\r\nbark\r\nbarkass\r\nbarkis\r\nbarlast\r\nbarm\r\nbarmhärtig\r\nbarmhärtiga\r\nbarmhärtighet\r\nbarmhärtigheten\r\nbarmhärtighetsverk\r\nbarn\r\nbarnabas\r\nbarnafödande\r\nbarnaglad\r\nbarnahjärta\r\nbarnasinne\r\nbarnaskap\r\nbarnaskapet\r\nbarnaskara\r\nbarnatro\r\nbarnavis\r\nbarnavård\r\nbarnavårdscentral\r\nbarnavårdsnämnd\r\nbarnaårens\r\nbarnbarn\r\nbarnbarnen\r\nbarnbegränsning\r\nbarnbespisning\r\nbarnbidrag\r\nbarndaghem\r\nbarndom\r\nbarnen\r\nbarnens\r\nbarnet\r\nbarnets\r\nbarnfamiljer\r\nbarnflicka\r\nbarnförlamning\r\nbarnhem\r\nbarnkoloni\r\nbarnlek\r\nbarnläkare\r\nbarnmorska\r\nbarnomsorg\r\nbarnpassning\r\nbarnpension\r\nbarnpiga\r\nbarns\r\nbarnsamarit\r\nbarnsben\r\nbarnsbörd\r\nbarnsjukdom\r\nbarnslig\r\nbarnsligt\r\nbarnstuga\r\nbarnsäng\r\nbarntillsyn\r\nbarntillägg\r\nbarnunge\r\nbarnvagn\r\nbarnvakt\r\nbarnvårdare\r\nbarock\r\nbarometer\r\nbaron\r\nbarr\r\nbarrikad\r\nbarrikadera\r\nbarriär\r\nbarsk\r\nbarskrapad\r\nbartender\r\nbaryton\r\nbas\r\nbasal\r\nbasar\r\nbasbelopp\r\nbaseball\r\nbasera\r\nbaserar\r\nbasfiol\r\nbasilika\r\nbasis\r\nbask\r\nbasker\r\nbasket\r\nbasketboll\r\nbaskisk\r\nbaslinje\r\nbasse\r\nbassäng\r\nbast\r\nbasta\r\nbastant\r\nbastar\r\nbastard\r\nbastion\r\nbastu\r\nbasun\r\nbasunen\r\nbasunens\r\nbasuner\r\nbasunerar\r\nbasuners\r\nbatalj\r\nbataljon\r\nbatik\r\nbatist\r\nbatong\r\nbatteri\r\nbautasten\r\nbaxna\r\nbaxnar\r\nbazooka\r\nbe\r\nbeakta\r\nbeaktande\r\nbeaktansvärd\r\nbeaktar\r\nbearbeta\r\nbearbetades\r\nbearbetar\r\nbearbetning\r\nbeatnik\r\nbebis\r\nbeblanda\r\nbebodd\r\nbeboddes\r\nbeboeligt\r\nbebor\r\nbebyggelse\r\nbebygger\r\nbebådad\r\nbebådar\r\nbebådas\r\nbebådelse\r\nbeck\r\nbecquerel\r\nbed\r\nbedagad\r\nbedarra\r\nbedarrar\r\nbeder\r\nbedja\r\nbedjande\r\nbedjandes\r\nbedra\r\nbedraga\r\nbedragare\r\nbedragen\r\nbedrager\r\nbedragit\r\nbedragna\r\nbedrar\r\nbedrift\r\nbedriva\r\nbedriver\r\nbedrog\r\nbedrägeri\r\nbedrägeriet\r\nbedräglig\r\nbedrägligast\r\nbedröva\r\nbedrövad\r\nbedrövade\r\nbedrövar\r\nbedrövas\r\nbedrövelse\r\nbedrövelsen\r\nbedrövlig\r\nbeduin\r\nbedyra\r\nbedyrar\r\nbedåra\r\nbedårande\r\nbedårar\r\nbedöma\r\nbedömare\r\nbedömer\r\nbedömning\r\nbedöva\r\nbedövad\r\nbedövning\r\nbefall\r\nbefalla\r\nbefallande\r\nbefalld\r\nbefallde\r\nbefaller\r\nbefallning\r\nbefallningar\r\nbefallningen\r\nbefallt\r\nbefann\r\nbefara\r\nbefarar\r\nbefattar\r\nbefattning\r\nbefinna\r\nbefinnas\r\nbefinner\r\nbefinns\r\nbefintlig\r\nbefläcka\r\nbefläckar\r\nbefogad\r\nbefogenhet\r\nbefolkar\r\nbefolkning\r\nbefordran\r\nbefordrar\r\nbefria\r\nbefriad\r\nbefriade\r\nbefriades\r\nbefriande\r\nbefriar\r\nbefriare\r\nbefrias\r\nbefriat\r\nbefrielse\r\nbefrielsens\r\nbefruktar\r\nbefruktning\r\nbefrämja\r\nbefrämjar\r\nbefukta\r\nbefunnen\r\nbefunnit\r\nbefäl\r\nbefälhavare\r\nbefängd\r\nbefängda\r\nbefängt\r\nbefäst\r\nbefästa\r\nbefäste\r\nbefäster\r\nbefästning\r\nbegabba\r\nbegabbar\r\nbegagna\r\nbegagnad\r\nbegagnar\r\nbegav\r\nbege\r\nbegeistrad\r\nbegeistring\r\nbeger\r\nbegett\r\nbegivenhet\r\nbegonia\r\nbegrava\r\nbegraver\r\nbegraves\r\nbegravit\r\nbegravning\r\nbegravningsbyrå\r\nbegravningsplats\r\nbegrep\r\nbegrepp\r\nbegripa\r\nbegriper\r\nbegriplig\r\nbegriplighet\r\nbegrunda\r\nbegrundan\r\nbegrundande\r\nbegrundar\r\nbegrundat\r\nbegråta\r\nbegråter\r\nbegränsa\r\nbegränsad\r\nbegränsade\r\nbegränsar\r\nbegränsning\r\nbegränsningar\r\nbegynna\r\nbegynnande\r\nbegynnelse\r\nbegynnelsen\r\nbegynner\r\nbegynte\r\nbegå\r\nbegår\r\nbegåtts\r\nbegåvad\r\nbegåvar\r\nbegåvning\r\nbegär\r\nbegära\r\nbegäran\r\nbegärde\r\nbegärelse\r\nbegären\r\nbegärens\r\nbegäret\r\nbegärlig\r\nbegärligt\r\nbegärt\r\nbehag\r\nbehaga\r\nbehagar\r\nbehagfull\r\nbehaglig\r\nbehagligt\r\nbehandla\r\nbehandlar\r\nbehandlas\r\nbehandling\r\nbehaviorism\r\nbehjälplig\r\nbehjärtansvärd\r\nbehov\r\nbehovet\r\nbehovsprövning\r\nbehå\r\nbehåll\r\nbehålla\r\nbehållare\r\nbehåller\r\nbehållning\r\nbehårad\r\nbehäftad\r\nbehändig\r\nbehärska\r\nbehärskad\r\nbehärskar\r\nbehärskning\r\nbehöll\r\nbehörig\r\nbehörighet\r\nbehöva\r\nbehövande\r\nbehövas\r\nbehövde\r\nbehöver\r\nbehövlig\r\nbehövs\r\nbeige\r\nbeivrar\r\nbejaka\r\nbejakar\r\nbekant\r\nbekantar\r\nbekanting\r\nbekantskap\r\nbekantskapskrets\r\nbeklagande\r\nbeklagansvärd\r\nbeklagar\r\nbeklaglig\r\nbeklagligtvis\r\nbekläd\r\nbeklädd\r\nbekläder\r\nbeklädnad\r\nbeklämd\r\nbeklämmande\r\nbeklämning\r\nbekommer\r\nbekosta\r\nbekostar\r\nbekostnad\r\nbekräfta\r\nbekräftad\r\nbekräftande\r\nbekräftar\r\nbekräftelse\r\nbekrön\r\nbekröner\r\nbekrönt\r\nbekväm\r\nbekväma\r\nbekvämlighet\r\nbekvämt\r\nbekymmer\r\nbekymmersam\r\nbekymmerslös\r\nbekymra\r\nbekymrad\r\nbekymrar\r\nbekämpa\r\nbekämpar\r\nbekämpning\r\nbekämpningsmedel\r\nbekände\r\nbekänna\r\nbekännande\r\nbekännare\r\nbekännelse\r\nbekänner\r\nbekänns\r\nbekänt\r\nbelackare\r\nbelagt\r\nbelamra\r\nbelamrad\r\nbelasta\r\nbelastad\r\nbelastar\r\nbelastning\r\nbeledsagar\r\nbelevad\r\nbelgare\r\nbelgier\r\nbelgisk\r\nbeljuga\r\nbelopp\r\nbelysa\r\nbelyser\r\nbelysning\r\nbelyst\r\nbelåna\r\nbelånar\r\nbelåning\r\nbelåten\r\nbelåtenhet\r\nbelägen\r\nbelägenhet\r\nbelägg\r\nbelägga\r\nbelägger\r\nbeläggning\r\nbelägrar\r\nbelägringstillstånd\r\nbeläst\r\nbelöna\r\nbelönad\r\nbelönar\r\nbelönas\r\nbelönat\r\nbelöning\r\nbelöningar\r\nbemannar\r\nbemedlad\r\nbemyndiga\r\nbemyndigande\r\nbemyndigar\r\nbemäktiga\r\nbemäktigar\r\nbemärkelse\r\nbemärkelsedag\r\nbemärkelsen\r\nbemärkt\r\nbemästra\r\nbemästrar\r\nbemöda\r\nbemödande\r\nbemödar\r\nbemötas\r\nbemöter\r\nben\r\nbena\r\nbenar\r\nbenbrott\r\nbenfri\r\nbengen\r\nbenig\r\nbenign\r\nbenkläder\r\nbenrangel\r\nbensin\r\nbensinstation\r\nbenstomme\r\nbensträckare\r\nbenåda\r\nbenådad\r\nbenådar\r\nbenådat\r\nbenådning\r\nbenådningens\r\nbenägen\r\nbenägenhet\r\nbenämna\r\nbenämner\r\nbenämning\r\nbeordra\r\nbeordrar\r\nbepansra\r\nbeprövad\r\nber\r\nbered\r\nbereda\r\nberedd\r\nberedda\r\nberedde\r\nbereddes\r\nbereder\r\nberedning\r\nberedskap\r\nberedskapsarbete\r\nberedvillig\r\nberedvilligt\r\nberest\r\nberett\r\nberg\r\nbergen\r\nberget\r\nbergets\r\nberghäll\r\nbergig\r\nbergochdalbana\r\nbergsklyftan\r\nbergsklyftor\r\nbergslejon\r\nbergstopp\r\nbergtagen\r\nbergvägg\r\nberidare\r\nberika\r\nberikar\r\nberiktigad\r\nberiktigande\r\nberiktigar\r\nberlock\r\nbero\r\nberodde\r\nberoende\r\nberoendeframkallande\r\nberor\r\nberså\r\nberusad\r\nberusade\r\nberusning\r\nberyktad\r\nberått\r\nberäkna\r\nberäknande\r\nberäknar\r\nberäkning\r\nberätta\r\nberättade\r\nberättande\r\nberättar\r\nberättare\r\nberättelse\r\nberättelsen\r\nberättelser\r\nberättelserna\r\nberättigad\r\nberättigande\r\nberättigar\r\nberöm\r\nberömd\r\nberömdhet\r\nberömlig\r\nberömma\r\nberömmande\r\nberömmelse\r\nberömmer\r\nberömvärd\r\nberör\r\nberöra\r\nberörd\r\nberöring\r\nberöringspunkt\r\nberöva\r\nberövar\r\nbesannar\r\nbesatt\r\nbesatthet\r\nbese\r\nbeseglar\r\nbeseglat\r\nbesegling\r\nbesegra\r\nbesegrad\r\nbesegrar\r\nbesegrare\r\nbesegrat\r\nbesegrats\r\nbeser\r\nbesikta\r\nbesiktiga\r\nbesiktigar\r\nbesiktning\r\nbesiktningsinstrument\r\nbesiktningsman\r\nbesinna\r\nbesinnad\r\nbesinnar\r\nbesinnat\r\nbesinning\r\nbesinningslös\r\nbesitta\r\nbesitter\r\nbesittning\r\nbesittningsskydd\r\nbesjunga\r\nbesjungas\r\nbesjungen\r\nbesjunger\r\nbesjälar\r\nbesk\r\nbeskaffad\r\nbeskaffenhet\r\nbeskattar\r\nbeskattning\r\nbesked\r\nbeskedet\r\nbeskedlig\r\nbeskickning\r\nbeskjuter\r\nbeskrev\r\nbeskriv\r\nbeskriva\r\nbeskrivande\r\nbeskrivas\r\nbeskriver\r\nbeskrivning\r\nbeskydd\r\nbeskydda\r\nbeskyddade\r\nbeskyddar\r\nbeskyddare\r\nbeskylla\r\nbeskyller\r\nbeskyllning\r\nbeskåda\r\nbeskådande\r\nbeskådar\r\nbeskäftig\r\nbeskär\r\nbeskära\r\nbeskärda\r\nbeslag\r\nbeslagta\r\nbeslagtar\r\nbeslut\r\nbesluta\r\nbeslutar\r\nbeslutat\r\nbesluten\r\nbeslutsam\r\nbeslutsamhet\r\nbeslår\r\nbesläktad\r\nbeslöjad\r\nbeslöt\r\nbespara\r\nbesparad\r\nbesparar\r\nbesparing\r\nbespisa\r\nbespisning\r\nbespotta\r\nbespottad\r\nbespottar\r\nbesprutar\r\nbesserwisser\r\nbest\r\nbestialisk\r\nbestick\r\nbestickande\r\nbestickning\r\nbestiger\r\nbestjäla\r\nbestod\r\nbestraffa\r\nbestraffar\r\nbestraffning\r\nbestrida\r\nbestrider\r\nbestryker\r\nbestrålar\r\nbeströ\r\nbeströr\r\nbestseller\r\nbestulen\r\nbestycka\r\nbestyckad\r\nbestyckning\r\nbestyr\r\nbestyra\r\nbestyrka\r\nbestyrker\r\nbestå\r\nbestående\r\nbestånd\r\nbeståndsdel\r\nbestår\r\nbestått\r\nbeställ\r\nbeställa\r\nbeställare\r\nbeställer\r\nbeställning\r\nbestämd\r\nbestämda\r\nbestämde\r\nbestämma\r\nbestämmande\r\nbestämmelse\r\nbestämmer\r\nbestämning\r\nbestämt\r\nbeständig\r\nbeständigt\r\nbestänka\r\nbestört\r\nbestörta\r\nbestörtning\r\nbesudla\r\nbesudlad\r\nbesutten\r\nbesvara\r\nbesvarad\r\nbesvarande\r\nbesvarar\r\nbesvaras\r\nbesvarat\r\nbesvikelse\r\nbesviken\r\nbesvär\r\nbesvära\r\nbesvärad\r\nbesvärande\r\nbesvärar\r\nbesvärja\r\nbesvärjare\r\nbesvärjelse\r\nbesvärjelsen\r\nbesvärjelser\r\nbesvärjer\r\nbesvärlig\r\nbesvärliga\r\nbesvärligt\r\nbesynnerlig\r\nbesynnerlighet\r\nbeså\r\nbesätter\r\nbesättning\r\nbesök\r\nbesöka\r\nbesökare\r\nbesöker\r\nbesökte\r\nbet\r\nbetackar\r\nbetade\r\nbetagande\r\nbetagen\r\nbetala\r\nbetalade\r\nbetalar\r\nbetalas\r\nbetalat\r\nbetald\r\nbetalkort\r\nbetalkurs\r\nbetalning\r\nbetalningsföreläggande\r\nbetalningsinställelse\r\nbetalt\r\nbetande\r\nbetar\r\nbete\r\nbeteckna\r\nbetecknande\r\nbetecknar\r\nbeteckning\r\nbeteckningen\r\nbetedde\r\nbeteende\r\nbetel\r\nbeten\r\nbetena\r\nbeter\r\nbetet\r\nbetett\r\nbeting\r\nbetingad\r\nbetingar\r\nbetingelse\r\nbetjäna\r\nbetjänar\r\nbetjäning\r\nbetjänt\r\nbetlehem\r\nbetlehems\r\nbetlehemsstjärnans\r\nbetona\r\nbetonar\r\nbetong\r\nbetongkeps\r\nbetoning\r\nbetrakta\r\nbetraktande\r\nbetraktar\r\nbetraktare\r\nbetraktelse\r\nbetraktelsesätt\r\nbetrodd\r\nbetrodda\r\nbetrodde\r\nbetrycka\r\nbetryckt\r\nbetryckta\r\nbetrycktas\r\nbetrygga\r\nbetryggande\r\nbeträda\r\nbeträder\r\nbeträffa\r\nbeträffande\r\nbeträffar\r\nbeträngd\r\nbeträngda\r\nbets\r\nbetsar\r\nbetsel\r\nbett\r\nbettlare\r\nbettleri\r\nbetunga\r\nbetungade\r\nbetungande\r\nbetungar\r\nbetuttad\r\nbetuttade\r\nbetvang\r\nbetvinga\r\nbetvingar\r\nbetvingas\r\nbetvingat\r\nbetvivla\r\nbetvivlar\r\nbetyda\r\nbetydande\r\nbetydde\r\nbetydelse\r\nbetydelsefull\r\nbetydelsefullt\r\nbetydelselös\r\nbetydelsen\r\nbetyder\r\nbetydlig\r\nbetyg\r\nbetyga\r\nbetygar\r\nbetygelse\r\nbetygsätta\r\nbetygsätter\r\nbetäcka\r\nbetäcker\r\nbetäckning\r\nbetänk\r\nbetänka\r\nbetänkande\r\nbetänker\r\nbetänketid\r\nbetänklig\r\nbetänklighet\r\nbetänksam\r\nbeundra\r\nbeundran\r\nbeundransvärd\r\nbeundrar\r\nbeundrare\r\nbeundras\r\nbevaka\r\nbevakade\r\nbevakar\r\nbevakare\r\nbevakning\r\nbevandrad\r\nbevara\r\nbevarad\r\nbevarade\r\nbevarande\r\nbevarar\r\nbevarat\r\nbevare\r\nbevars\r\nbevattnar\r\nbeveka\r\nbevekande\r\nbevekelsegrund\r\nbeveker\r\nbevilja\r\nbeviljar\r\nbevingad\r\nbevis\r\nbevisa\r\nbevisande\r\nbevisar\r\nbevisas\r\nbevisat\r\nbevisbörda\r\nbevisföring\r\nbevisligen\r\nbevista\r\nbevistar\r\nbevittna\r\nbevittnar\r\nbevittnat\r\nbevuxen\r\nbevåg\r\nbevänt\r\nbeväpna\r\nbeväpnar\r\nbevärdigar\r\nbeväring\r\nbh\r\nbi\r\nbibehålla\r\nbibehållande\r\nbibehåller\r\nbibel\r\nbibelläsning\r\nbibelläsningsplan\r\nbibeln\r\nbibelns\r\nbibelord\r\nbibelorden\r\nbibelordet\r\nbibelskola\r\nbibeltext\r\nbibeltexten\r\nbibliofil\r\nbibliografi\r\nbibliotek\r\nbibliotekarie\r\nbibliska\r\nbibringa\r\nbibringar\r\nbida\r\nbidar\r\nbidé\r\nbidra\r\nbidrag\r\nbidraga\r\nbidragande\r\nbidragsförskott\r\nbidrar\r\nbiennal\r\nbifall\r\nbifalla\r\nbifaller\r\nbiff\r\nbifftomat\r\nbifoga\r\nbifogar\r\nbifokalglas\r\nbigami\r\nbigarrå\r\nbigott\r\nbihang\r\nbihustru\r\nbihåla\r\nbijouteri\r\nbikarbonat\r\nbikini\r\nbikt\r\nbikta\r\nbiktar\r\nbil\r\nbila\r\nbilaga\r\nbilar\r\nbilarna\r\nbilarnas\r\nbilateral\r\nbilbesiktning\r\nbilbälte\r\nbild\r\nbilda\r\nbildad\r\nbildar\r\nbildas\r\nbildat\r\nbilden\r\nbilder\r\nbilderbok\r\nbilderna\r\nbildkanon\r\nbildlig\r\nbildliggöra\r\nbildligt\r\nbildning\r\nbildrör\r\nbildskärm\r\nbildspråk\r\nbilen\r\nbilförare\r\nbilism\r\nbilist\r\nbiljard\r\nbiljett\r\nbiljettkontrollant\r\nbiljon\r\nbillig\r\nbilliga\r\nbilligt\r\nbillion\r\nbilprovning\r\nbilregister\r\nbilring\r\nbilskatt\r\nbilägga\r\nbilägger\r\nbin\r\nbina\r\nbind\r\nbinda\r\nbindande\r\nbindel\r\nbindeord\r\nbinder\r\nbindestreck\r\nbindlarna\r\nbindning\r\nbinds\r\nbindsle\r\nbinge\r\nbingo\r\nbinär\r\nbio\r\nbiodynamisk\r\nbiograf\r\nbiografi\r\nbiolog\r\nbiologi\r\nbiomassa\r\nbiorytm\r\nbira\r\nbisak\r\nbisarr\r\nbisats\r\nbisittare\r\nbiskop\r\nbiskopsdöme\r\nbiskopsmössa\r\nbiskopsstol\r\nbismak\r\nbister\r\nbistod\r\nbistro\r\nbistå\r\nbistånd\r\nbistår\r\nbit\r\nbita\r\nbitande\r\nbiter\r\nbiträde\r\nbiträden\r\nbiträder\r\nbits\r\nbitsk\r\nbitskt\r\nbitsocker\r\nbitter\r\nbitterhet\r\nbitterhets\r\nbitterljuv\r\nbittert\r\nbitti\r\nbittida\r\nbittra\r\nbittrare\r\nbittraste\r\nbitvis\r\nbiverkning\r\nbiväg\r\nbjud\r\nbjuda\r\nbjuden\r\nbjuder\r\nbjudit\r\nbjudning\r\nbjuds\r\nbjussa\r\nbjälke\r\nbjällra\r\nbjällror\r\nbjärt\r\nbjässe\r\nbjöd\r\nbjörk\r\nbjörn\r\nbjörnar\r\nbjörnbär\r\nbjörnen\r\nbjörnhona\r\nbjörnhonor\r\nbjörntjänst\r\nblackout\r\nblad\r\nblada\r\nbladdrar\r\nbladen\r\nbladig\r\nbladverk\r\nblaffig\r\nblaj\r\nblaja\r\nblamerar\r\nbland\r\nblanda\r\nblandad\r\nblandar\r\nblandas\r\nblandekonomi\r\nblandning\r\nblandras\r\nblank\r\nblanka\r\nblankett\r\nblanko\r\nblankpolerad\r\nblankt\r\nblasé\r\nblaserad\r\nblasfemi\r\nblask\r\nblaska\r\nblast\r\nblazer\r\nbleck\r\nbleckblås\r\nblek\r\nbleka\r\nblekansikte\r\nblekas\r\nbleke\r\nbleker\r\nBlekinge\r\nblekna\r\nbleknade\r\nbleknar\r\nbleknat\r\nblekröd\r\nbleks\r\nblekt\r\nblekvita\r\nblemma\r\nblessyr\r\nblev\r\nbli\r\nblick\r\nblicka\r\nblickar\r\nblicken\r\nblickfång\r\nblickpunkt\r\nblid\r\nblida\r\nblidka\r\nblidkar\r\nblidväder\r\nbliga\r\nblind\r\nblinda\r\nblindas\r\nblindbock\r\nblinde\r\nblindgångare\r\nblindhet\r\nblindo\r\nblindskrift\r\nblindskär\r\nblindtarm\r\nblindtarmsinflammation\r\nblinkar\r\nblinker\r\nblinkers\r\nblint\r\nblir\r\nblitt\r\nbliv\r\nbliva\r\nblivande\r\nbliven\r\nbliver\r\nblivit\r\nblixt\r\nblixtars\r\nblixtens\r\nblixtlås\r\nblixtrar\r\nblock\r\nblocka\r\nblockad\r\nblockader\r\nblockera\r\nblockerad\r\nblockerar\r\nblockflöjt\r\nblockhus\r\nblod\r\nblodbad\r\nblodbadet\r\nblodbestänkta\r\nblodbrist\r\nblodet\r\nblodets\r\nblodfattig\r\nblodförgiftning\r\nblodgivare\r\nblodhund\r\nblodig\r\nblodiga\r\nblodigt\r\nblodkropp\r\nblodkärl\r\nblodköpt\r\nblodköpta\r\nblodomlopp\r\nblodpropp\r\nblodprov\r\nblodpudding\r\nblodpump\r\nblodröd\r\nblodröda\r\nblodrött\r\nblodsband\r\nblodsprängd\r\nblodsugare\r\nblodsutgjutelse\r\nblodtransfusion\r\nblodtörstig\r\nblodvite\r\nblodåder\r\nblom\r\nblomknopp\r\nblomkål\r\nblomma\r\nblommade\r\nblomman\r\nblommande\r\nblommar\r\nblommig\r\nblommogram\r\nblommor\r\nblommorna\r\nblommors\r\nblomning\r\nblomningstid\r\nblomster\r\nblomstersmyckar\r\nblomstersäng\r\nblomstertid\r\nblomsterängar\r\nblomstra\r\nblomstrande\r\nblomstrar\r\nblomstren\r\nblomstrings\r\nblond\r\nblondin\r\nbloss\r\nblossa\r\nblossande\r\nblossar\r\nblot\r\nblott\r\nblotta\r\nblottad\r\nblottar\r\nblottare\r\nblottlägga\r\nblottläggande\r\nblottlägger\r\nblottställa\r\nbluddra\r\nblues\r\nbluff\r\nbluffa\r\nbluffar\r\nblund\r\nblunda\r\nblundar\r\nblunder\r\nblus\r\nbly\r\nblyerts\r\nblyg\r\nblygas\r\nblygaste\r\nblygd\r\nblyghet\r\nblygs\r\nblygsam\r\nblygsamt\r\nblygsel\r\nblå\r\nblåa\r\nblåbär\r\nblådåre\r\nblågul\r\nblåklint\r\nblåmärke\r\nblånar\r\nblånekar\r\nblås\r\nblåsa\r\nblåsare\r\nblåsas\r\nblåser\r\nblåses\r\nblåsig\r\nblåsippa\r\nblåskatarr\r\nblåsning\r\nblåst\r\nblåste\r\nblåställ\r\nblåsväder\r\nblåtira\r\nblått\r\nblåögd\r\nbläck\r\nbläckfisk\r\nbläckpenna\r\nbläddra\r\nbläddrar\r\nbländande\r\nbländar\r\nbländverk\r\nblänga\r\nblänger\r\nblänk\r\nblänka\r\nblänkande\r\nblänker\r\nblöda\r\nblödande\r\nblödarsjuka\r\nblödde\r\nblöder\r\nblödig\r\nblödning\r\nblöja\r\nblöt\r\nblöta\r\nblötdjur\r\nblöter\r\nblött\r\nbo\r\nboaorm\r\nboardingcard\r\nbobin\r\nbock\r\nbockar\r\nbockarna\r\nbocken\r\nbockens\r\nbod\r\nbodde\r\nbodelning\r\nbodybuilding\r\nboende\r\nboett\r\nbofast\r\nbofink\r\nbog\r\nbogsera\r\nbogserar\r\nbogsering\r\nbohag\r\nbohem\r\nBohuslän\r\nboj\r\nboja\r\nbojan\r\nbojans\r\nbojkott\r\nbojkotta\r\nbojkottar\r\nbojor\r\nbojornas\r\nbojors\r\nbok\r\nboka\r\nbokad\r\nbokaffär\r\nbokar\r\nbokbuss\r\nboken\r\nbokför\r\nbokföra\r\nbokföring\r\nbokhandel\r\nbokhylla\r\nbokmal\r\nbokning\r\nboks\r\nbokslut\r\nbokstav\r\nbokstaverar\r\nbokstavlig\r\nbokstavligen\r\nbokstavligt\r\nbokstavstro\r\nbokstäver\r\nbokstöd\r\nbolag\r\nboliner\r\nboll\r\nbollar\r\nbollen\r\nbollsinne\r\nbollträ\r\nbolma\r\nbolmar\r\nbolmört\r\nbolsjevik\r\nbolster\r\nbom\r\nbomb\r\nbombar\r\nbombarderar\r\nbombare\r\nbombastisk\r\nbombers\r\nbombmatta\r\nbombning\r\nbombplan\r\nbombsäker\r\nbomma\r\nbommar\r\nbommat\r\nbommen\r\nbomull\r\nbona\r\nbonad\r\nbonar\r\nbonde\r\nbondfångare\r\nbondfångeri\r\nbondgård\r\nbondkatt\r\nbondlurk\r\nbondläpp\r\nbondpermis\r\nbondpermission\r\nbondsk\r\nbondtölp\r\nbondvischan\r\nboning\r\nboningar\r\nboningshus\r\nboningsplats\r\nbonsai\r\nbonus\r\nboom\r\nboplats\r\nbor\r\nbord\r\nbordar\r\nborde\r\nbordell\r\nborden\r\nbordet\r\nbordlägger\r\nbordläggning\r\nbords\r\nbordtennis\r\nboren\r\nborg\r\nborgar\r\nborgare\r\nborgarråd\r\nborgen\r\nborgenär\r\nborgerlig\r\nborgesman\r\nborgmästare\r\nborr\r\nborra\r\nborrar\r\nborrigg\r\nborrning\r\nborrplattform\r\nborrtorn\r\nborst\r\nborsta\r\nborstar\r\nborste\r\nbort\r\nborta\r\nbortanför\r\nbortblåst\r\nborterst\r\nbortersta\r\nbortfall\r\nbortfall\r\nbortförda\r\nbortfördes\r\nbortförklarar\r\nbortförklaring\r\nbortglömd\r\nbortglömda\r\nbortgång\r\nbortkastad\r\nbortkastat\r\nbortklemad\r\nbortkommen\r\nbortkörda\r\nbortmista\r\nbortom\r\nbortovaro\r\nbortre\r\nbortrest\r\nbortrullad\r\nbortrunnet\r\nbortse\r\nbortser\r\nbortsett\r\nbortskämd\r\nbortstöta\r\nborttag\r\nborttaga\r\nborttagande\r\nborttager\r\nborttappa\r\nborttappad\r\nborttappade\r\nborttappat\r\nbortvält\r\nbortvältrad\r\nbortvänd\r\nbortåt\r\nbosatt\r\nboskap\r\nboskifte\r\nboskillnad\r\nbosparar\r\nboss\r\nbostad\r\nbostadsanpassningsbidrag\r\nbostadsbidrag\r\nbostadsdomstol\r\nbostadsförmedling\r\nbostadshus\r\nbostadslån\r\nbostadslös\r\nbostadsrätt\r\nbostadsrättsförening\r\nbostadsrättslägenhet\r\nbostadssparande\r\nbostadstillägg\r\nbosätter\r\nbosättning\r\nbot\r\nbota\r\nbotad\r\nbotade\r\nbotande\r\nbotanik\r\nbotaniker\r\nbotanist\r\nbotar\r\nbotas\r\nbotemedel\r\nbotfärdig\r\nbott\r\nbotten\r\nbottenförankring\r\nbottenlån\r\nbottennapp\r\nbottensats\r\nbottenskrap\r\nbottenskrapar\r\nbottna\r\nbottnar\r\nboulevard\r\nbouppteckning\r\nboutredning\r\nbov\r\nbovete\r\nbowling\r\nbox\r\nboxare\r\nboxas\r\nboxning\r\nboy\r\nbra\r\nbracka\r\nbragd\r\nbragt\r\nbragts\r\nbrak\r\nbraka\r\nbrakar\r\nbralla\r\nbrallor\r\nbrand\r\nbrandfackla\r\nbrandförsvar\r\nbrandgul\r\nbrandkår\r\nbrandpost\r\nbrandröd\r\nbrandskatta\r\nbrandtal\r\nbrandvarnare\r\nbrann\r\nbransch\r\nbrant\r\nbrasa\r\nbraskande\r\nbrasklapp\r\nbrass\r\nbrassar\r\nbrasserie\r\nbrast\r\nbravad\r\nbravera\r\nbravo\r\nbravur\r\nbre\r\nbreak\r\nbred\r\nbreda\r\nbredare\r\nbredas\r\nbredbar\r\nbredd\r\nbredda\r\nbreddar\r\nbredde\r\nbreddgrad\r\nbreder\r\nbredsida\r\nbredvid\r\nbrer\r\nbrett\r\nbrev\r\nbreven\r\nbrevet\r\nbrevkompis\r\nbrevlåda\r\nbrevporto\r\nbrevvän\r\nbrevväxlar\r\nbrevväxling\r\nbricka\r\nbridge\r\nbrigad\r\nbriljans\r\nbriljant\r\nbriljera\r\nbriljerar\r\nbrillor\r\nbringa\r\nbringade\r\nbringar\r\nbringas\r\nbringats\r\nbrink\r\nbrinn\r\nbrinna\r\nbrinnande\r\nbrinner\r\nbris\r\nbrisera\r\nbriserar\r\nbrist\r\nbrista\r\nbristande\r\nbristen\r\nbrister\r\nbristfällig\r\nbristning\r\nbristyrke\r\nbrits\r\nbritt\r\nbrittisk\r\nbrittsommar\r\nbro\r\nbroar\r\nbroccoli\r\nbroder\r\nbrodera\r\nbroderar\r\nbrodern\r\nbroders\r\nbroderskap\r\nbroderskapet\r\nbroiler\r\nbrokig\r\nbroms\r\nbromsa\r\nbromsade\r\nbromsar\r\nbronkit\r\nbrons\r\nbronsålder\r\nbror\r\nbrorsa\r\nbrorson\r\nbrosch\r\nbroschyr\r\nbrosk\r\nbrott\r\nbrottades\r\nbrottare\r\nbrottas\r\nbrottats\r\nbrottning\r\nbrottningskamp\r\nbrottsbalken\r\nbrottsjön\r\nbrottslabb\r\nbrottslig\r\nbrottslighet\r\nbrottsling\r\nbrottstycke\r\nbrud\r\nbruden\r\nbrudgum\r\nbrudgummen\r\nbrudtärna\r\nbruk\r\nbruka\r\nbrukar\r\nbrukare\r\nbrukbar\r\nbruklig\r\nbruksvärde\r\nbrumma\r\nbrummar\r\nbrun\r\nbruna\r\nbrunch\r\nbrunett\r\nbrunhårig\r\nbrunn\r\nbrunnar\r\nbrunnen\r\nbrunnit\r\nbrunst\r\nbrunögd\r\nbrus\r\nbrusa\r\nbrusade\r\nbrusande\r\nbrusar\r\nbruset\r\nbrustablett\r\nbrusten\r\nbrustet\r\nbrustit\r\nbrustna\r\nbrutal\r\nbrutalt\r\nbruten\r\nbrutenhet\r\nbrutet\r\nbrutit\r\nbrutits\r\nbrutna\r\nbrutne\r\nbrutta\r\nbrutto\r\nbruttolön\r\nbruttonationalprodukt\r\nbry\r\nbrydd\r\nbryderi\r\nbrygd\r\nbrygga\r\nbryggare\r\nbrygger\r\nbryggeri\r\nbryggmalen\r\nbryn\r\nbryna\r\nbryne\r\nbryner\r\nbrynja\r\nbrynsten\r\nbryr\r\nbrysk\r\nbryt\r\nbryta\r\nbrytas\r\nbryter\r\nbrytes\r\nbrytning\r\nbryts\r\nbråck\r\nbråd\r\nbråda\r\nbråddjup\r\nbråddjupa\r\nbrådis\r\nbrådmogen\r\nbrådska\r\nbrådskande\r\nbrådstörtad\r\nbrådstörtat\r\nbråk\r\nbråka\r\nbråkar\r\nbråkdel\r\nbråkdelen\r\nbråkig\r\nbråkmakare\r\nbråkmakaren\r\nbrås\r\nbråte\r\nbrått\r\nbråttom\r\nbräcka\r\nbräckas\r\nbräcker\r\nbräckjärn\r\nbräcklig\r\nbräckliga\r\nbräcklighet\r\nbräckligt\r\nbräcks\r\nbräckt\r\nbräckte\r\nbräda\r\nbrädd\r\nbräddad\r\nbrädden\r\nbräde\r\nbräderna\r\nbrädfodra\r\nbrädseglar\r\nbräker\r\nbräm\r\nbränd\r\nbränder\r\nbrändes\r\nbränn\r\nbränna\r\nbrännande\r\nbrännas\r\nbrännbar\r\nbrännboll\r\nbränner\r\nbrännheta\r\nbränning\r\nbrännmärka\r\nbrännmärker\r\nbrännpunkt\r\nbränns\r\nbrännsår\r\nbrännvin\r\nbrännässla\r\nbränsle\r\nbränt\r\nbräsch\r\nbrätte\r\nbröd\r\nbröden\r\nbröder\r\nbröders\r\nbrödet\r\nbrödföda\r\nbrödraskap\r\nbrödrost\r\nbrödsäd\r\nbröl\r\nbröla\r\nbröllop\r\nbröllopsfesten\r\nbröllopskläder\r\nbröllopssal\r\nbröllopsskrud\r\nbröllopsskruden\r\nbröst\r\nbrösta\r\nbröstarvinge\r\nbröstkorg\r\nbröstsim\r\nbröstsköld\r\nbröstskölden\r\nbröstsköldens\r\nbröt\r\nbröts\r\nbuar\r\nbubbel\r\nbubbelpool\r\nbubbla\r\nbubblan\r\nbubblar\r\nbuckla\r\nbucklar\r\nbucklig\r\nbud\r\nbudbärare\r\nbudbäraren\r\nbudbärarens\r\nbudbärarna\r\nbuddism\r\nbuden\r\nbudet\r\nbudget\r\nbudgeten\r\nbudkavle\r\nbudo\r\nbudskap\r\nbudskapet\r\nbudskapets\r\nbuffé\r\nbuffert\r\nbufflig\r\nbuga\r\nbugade\r\nbugande\r\nbugar\r\nbuk\r\nbukett\r\nbukig\r\nbuklandar\r\nbukspottkörtel\r\nbukt\r\nbuktar\r\nbuktig\r\nbula\r\nbulgar\r\nbulgarisk\r\nbuljong\r\nbulla\r\nbullar\r\nbulldogg\r\nbulle\r\nbuller\r\nbullermatta\r\nbulletin\r\nbullig\r\nbullra\r\nbullrande\r\nbullrar\r\nbullret\r\nbullrig\r\nbulnad\r\nbulor\r\nbult\r\nbulta\r\nbultades\r\nbultar\r\nbulvan\r\nbumerang\r\nbumling\r\nbums\r\nbunden\r\nbundenhet\r\nbundet\r\nbundit\r\nbundna\r\nbundsförvant\r\nbungalow\r\nbunke\r\nbunker\r\nbunkrar\r\nbunt\r\nbuntar\r\nbur\r\nbura\r\nburar\r\nburdus\r\nburen\r\nburgare\r\nburgen\r\nburit\r\nburk\r\nburken\r\nburlesk\r\nburrig\r\nburspråk\r\nbus\r\nbusa\r\nbusar\r\nbuse\r\nbusfrö\r\nbush\r\nbusig\r\nbusiness\r\nbuskablyg\r\nbuskage\r\nbuske\r\nbuskig\r\nbuskis\r\nbuss\r\nbussar\r\nbussen\r\nbussig\r\nbusstreck\r\nbusunge\r\nbutelj\r\nbutik\r\nbutiksfönster\r\nbutter\r\nby\r\nbyar\r\nbyffé\r\nbyfåne\r\nbygd\r\nbygel\r\nbygg\r\nbygga\r\nbyggas\r\nbyggd\r\nbyggde\r\nbygge\r\nbygger\r\nbygglov\r\nbyggmästare\r\nbyggnad\r\nbyggnaden\r\nbyggnader\r\nbyggnadsförbud\r\nbyggnadskonst\r\nbyggnadsnämnd\r\nbyggnadssnickare\r\nbyggnation\r\nbyggs\r\nbyggt\r\nbyig\r\nbyk\r\nbyka\r\nbyling\r\nbyltar\r\nbylte\r\nbyn\r\nbyracka\r\nbyrå\r\nbyråkrati\r\nbyråkratisk\r\nbyst\r\nbysthållare\r\nbyta\r\nbytas\r\nbyte\r\nbyter\r\nbytes\r\nbytesbalans\r\nbytesrätt\r\nbyts\r\nbytt\r\nbytta\r\nbyxa\r\nbyxor\r\nbåda\r\nbådadera\r\nbådar\r\nbådat\r\nbåde\r\nbåg\r\nbågar\r\nbågarna\r\nbåge\r\nbågen\r\nbågfil\r\nbågig\r\nbågnar\r\nbål\r\nbåld\r\nbålen\r\nbålet\r\nbålverk\r\nbång\r\nbångstyrig\r\nbår\r\nbård\r\nbårhus\r\nbås\r\nbåt\r\nbåtar\r\nbåtbrygga\r\nbåtbyggplats\r\nbåten\r\nbåtfönster\r\nbåthytt\r\nbåtnad\r\nbåtparkering\r\nbåtplats\r\nbåtsman\r\nbåttävling\r\nbåtvägg\r\nbäbis\r\nbäck\r\nbäckarna\r\nbäcken\r\nbäckmörkt\r\nbädd\r\nbädda\r\nbäddar\r\nbädden\r\nbägare\r\nbägaren\r\nbägge\r\nbälg\r\nbälte\r\nbältet\r\nbänder\r\nbänk\r\nbänka\r\nbänkar\r\nbänken\r\nbär\r\nbära\r\nbärande\r\nbärare\r\nbäras\r\nbärbar\r\nbärdryck\r\nbäres\r\nbärga\r\nbärgad\r\nbärgar\r\nbärgas\r\nbärgat\r\nbärgning\r\nbärgningsbil\r\nbärighet\r\nbäring\r\nbärkraft\r\nbärkraftig\r\nbärnsten\r\nbärs\r\nbärsa\r\nbärsärkagång\r\nbäst\r\nbästa\r\nbäste\r\nbästis\r\nbästsäljare\r\nbättra\r\nbättrad\r\nbättrar\r\nbättre\r\nbättring\r\nbäva\r\nbävade\r\nbävan\r\nbävande\r\nbävar\r\nbäver\r\nböcker\r\nböckling\r\nbödel\r\nbödlar\r\nbödlars\r\nböj\r\nböja\r\nböjas\r\nböjbar\r\nböjd\r\nböjda\r\nböjde\r\nböjelse\r\nböjer\r\nböjes\r\nböjlig\r\nböjning\r\nböjs\r\nböjt\r\nbök\r\nböka\r\nbökar\r\nbökig\r\nböla\r\nbölar\r\nböld\r\nbölder\r\nbölja\r\nböljan\r\nböljans\r\nböljar\r\nböljor\r\nböljorna\r\nböljornas\r\nbön\r\nböna\r\nbönar\r\nbönder\r\nbönehus\r\nbönen\r\nbönens\r\nböner\r\nbönerna\r\nbönernas\r\nbönesvar\r\nböneämnen\r\nbönfalla\r\nbönfaller\r\nbönhus\r\nbönhör\r\nbönhörd\r\nbönhörda\r\nbönhörde\r\nbör\r\nbörd\r\nbörda\r\nbördan\r\nbördas\r\nbördig\r\nbördor\r\nbördorna\r\nbördornas\r\nbörja\r\nbörjade\r\nbörjan\r\nbörjans\r\nbörjar\r\nbörjas\r\nbörjat\r\nbörs\r\nbörsen\r\nbössa\r\nbötar\r\nböter\r\nbötesbelopp\r\nbötfälla\r\nbötfäller\r\nbövel\r\ncabriolet\r\ncafé\r\ncafeteria\r\ncamp\r\ncampar\r\ncampare\r\ncamping\r\ncampingplats\r\ncancer\r\ncancerframkallande\r\ncancerogen\r\ncannabis\r\ncape\r\ncapita\r\ncappuccino\r\ncarcinogen\r\ncarport\r\ncash\r\ncd\r\nceleber\r\ncelebrera\r\ncelebritet\r\ncelibat\r\ncell\r\ncellen\r\ncellgift\r\ncellist\r\ncello\r\ncellofan\r\ncellskräck\r\ncellstoff\r\ncellulosa\r\ncement\r\ncementera\r\ncensur\r\ncensurerar\r\ncent\r\ncenter\r\ncentiliter\r\ncentilong\r\ncentimeter\r\ncentral\r\ncentraliserar\r\ncentralstyrd\r\ncentralt\r\ncentralvärme\r\ncentrifug\r\ncentrifugerar\r\ncentrum\r\ncerat\r\nceremoni\r\nceremonimästare\r\ncertifikat\r\ncesium\r\nchampagne\r\nchampinjon\r\nchampion\r\nchans\r\nchansa\r\nchansar\r\nchansartad\r\nchansera\r\nchansning\r\ncharad\r\nchark\r\ncharkuteri\r\ncharlatan\r\ncharm\r\ncharma\r\ncharmant\r\ncharmerande\r\ncharmfull\r\ncharmig\r\nchassi\r\nchatta\r\nchaufför\r\nchauvinism\r\ncheck\r\nchecka\r\ncheckar\r\ncheddar\r\ncheddarost\r\nchef\r\nchefskap\r\nchefsstol\r\nchevaleresk\r\nchiffer\r\nchifferspråk\r\nchiffonjé\r\nchiffrera\r\nchilen\r\nchilensk\r\nchimär\r\nchips\r\nchock\r\nchocka\r\nchockar\r\nchockartad\r\nchockera\r\nchockerar\r\nchoke\r\nchoklad\r\nchokladboll\r\nchokladbollar\r\nchosefri\r\nciceron\r\ncider\r\ncigarett\r\ncigarettrest\r\ncigarr\r\ncigarrett\r\ncigg\r\ncirka\r\ncirkapris\r\ncirkel\r\ncirkelbana\r\ncirkelformad\r\ncirkla\r\ncirklar\r\ncirkulation\r\ncirkulationsplats\r\ncirkulera\r\ncirkulerar\r\ncirkulär\r\ncirkulära\r\ncirkus\r\ncistern\r\ncitat\r\ncitationstecken\r\ncitera\r\nciterar\r\ncitron\r\ncitrondryck\r\ncitronfärgad\r\ncitronsaft\r\ncitrusfrukt\r\ncity\r\ncivil\r\ncivilekonom\r\ncivilförsvar\r\ncivilingenjör\r\ncivilisation\r\nciviliserad\r\ncivilkurage\r\ncivilstånd\r\nclips\r\nclown\r\ncoach\r\ncockerspaniel\r\ncockpit\r\ncocktail\r\ncognac\r\ncoitus\r\ncollage\r\ncollege\r\ncollie\r\ncomeback\r\nconsensus\r\nconsommé\r\ncontainer\r\ncool\r\ncoola\r\ncoolare\r\ncoolaste\r\ncoolt\r\ncopyright\r\ncopywriter\r\ncornflakes\r\ncowboy\r\ncrawl\r\ncrawla\r\ncrawlar\r\ncredo\r\ncrêpe\r\ncrescendo\r\ncroissant\r\ncup\r\ncurry\r\ncykel\r\ncykelbana\r\ncykla\r\ncyklar\r\ncyklisk\r\ncyklist\r\ncyklon\r\ncyklopöga\r\ncylinder\r\ncymbal\r\ncymbaler\r\ncyniker\r\ncynisk\r\ncynism\r\ncysta\r\ndaddar\r\ndadel\r\ndag\r\ndagar\r\ndagarna\r\ndagarnas\r\ndagars\r\ndagas\r\ndagbarn\r\ndagbarnvårdare\r\ndagbok\r\ndagbrott\r\ndagbrytning\r\ndagcentral\r\ndagdrivare\r\ndagdrömma\r\ndagdrömmer\r\ndagen\r\ndagens\r\ndager\r\ndagg\r\ndaggen\r\ndaggfrisk\r\ndaggmask\r\ndaghem\r\ndagis\r\ndagisfröken\r\ndagjämning\r\ndaglig\r\ndagliga\r\ndagligen\r\ndagligt\r\ndagmamma\r\ndagordning\r\ndagpengar\r\ndagpenning\r\ndags\r\ndagsbot\r\ndagsböter\r\ndagsljus\r\ndagslända\r\ndagsmeja\r\ndagspress\r\ndagstidning\r\ndagsverkare\r\ndagsverke\r\ndagsverkets\r\ndagsverkstimma\r\ndagtid\r\ndagtinga\r\ndagtraktamente\r\ndagunderstöd\r\ndal\r\ndala\r\ndalahäst\r\ndalande\r\ndalar\r\nDalarna\r\ndalen\r\ndalgång\r\ndalkarl\r\ndaller\r\ndallra\r\ndallrar\r\ndallring\r\ndalska\r\nDalsland\r\ndalsänka\r\ndalt\r\ndaltande\r\ndaltar\r\ndam\r\ndamasker\r\ndamast\r\ndambinda\r\ndamfrisering\r\ndamfrisör\r\ndamm\r\ndammar\r\ndammens\r\ndammig\r\ndammigt\r\ndammsugare\r\ndammsuger\r\ndammtrasa\r\ndamrum\r\ndan\r\ndana\r\ndanar\r\ndanat\r\ndaniel\r\ndaniels\r\ndank\r\ndans\r\ndansa\r\ndansar\r\ndansare\r\ndansas\r\ndansbana\r\ndansen\r\ndanser\r\ndansk\r\ndanska\r\ndanskan\r\ndansör\r\ndar\r\ndarr\r\ndarra\r\ndarrade\r\ndarrande\r\ndarrar\r\ndarrat\r\ndarrig\r\ndarrning\r\ndart\r\ndask\r\ndaska\r\ndass\r\ndasslock\r\ndata\r\ndatabehandling\r\ndatafil\r\ndatamaskin\r\ndataregister\r\ndataskärm\r\ndataterminal\r\ndaterar\r\ndato\r\ndator\r\ndatorer\r\ndatoriserar\r\ndatorn\r\ndatorskärm\r\ndatorspel\r\ndatt\r\ndatum\r\ndatummärker\r\ndavid\r\ndavids\r\ndavidsstjärna\r\nde\r\ndeadline\r\ndebatt\r\ndebattera\r\ndebatterar\r\ndebet\r\ndebetsedel\r\ndebitera\r\ndebiterar\r\ndebitering\r\ndebut\r\ndebuterar\r\ndecember\r\ndecennium\r\ndecentraliserar\r\ndecibel\r\ndeciliter\r\ndecimal\r\ndecimeter\r\ndeckare\r\ndedicera\r\ndedicerar\r\ndedikation\r\ndedikerad\r\ndeducera\r\ndeduktion\r\ndefekt\r\ndefensiv\r\ndefilera\r\ndefilerar\r\ndefiniera\r\ndefinierar\r\ndefinition\r\ndefinitionen\r\ndefinitiv\r\ndefinitivt\r\ndeformera\r\ndeformerad\r\ndeformerar\r\ndeformitet\r\ndeg\r\ndega\r\ndegar\r\ndegel\r\ndegen\r\ndegenererad\r\ndegig\r\ndegradera\r\ndegraderar\r\ndegradering\r\ndej\r\ndekad\r\ndekadens\r\ndekadent\r\ndekal\r\ndekar\r\ndekis\r\ndeklamerar\r\ndeklaration\r\ndeklarera\r\ndeklarerar\r\ndeklination\r\ndekoder\r\ndekolletage\r\ndekor\r\ndekoration\r\ndekorativ\r\ndekorera\r\ndekret\r\ndekryptera\r\ndel\r\ndela\r\ndelad\r\ndelade\r\ndelaktig\r\ndelaktighet\r\ndelar\r\ndelarna\r\ndelas\r\ndelat\r\ndelats\r\ndelblock\r\ndelegat\r\ndelegera\r\ndelegerar\r\ndelen\r\ndelfin\r\ndelge\r\ndelger\r\ndelikat\r\ndelikatess\r\ndelirium\r\ndelning\r\ndelpension\r\ndels\r\ndelta\r\ndeltaga\r\ndeltagande\r\ndeltagare\r\ndeltagit\r\ndeltar\r\ndeltid\r\ndeltidsarbete\r\ndeltidsgrupp\r\ndeltog\r\ndelvis\r\ndelägare\r\ndem\r\ndemagog\r\ndemaskera\r\ndementera\r\ndementerar\r\ndemokrat\r\ndemokrati\r\ndemokratisk\r\ndemolera\r\ndemolerad\r\ndemon\r\ndemoner\r\ndemonerna\r\ndemonisk\r\ndemonstrant\r\ndemonstration\r\ndemonstrera\r\ndemonstrerar\r\ndemoralisera\r\nden\r\ndenim\r\ndenna\r\ndenne\r\ndennes\r\ndens\r\ndensamma\r\ndensamme\r\ndensitet\r\ndeodorant\r\ndepartement\r\ndeplacera\r\ndeponera\r\ndeponerar\r\ndeportation\r\ndeportera\r\ndeporterar\r\ndeporterat\r\ndeppad\r\ndeppar\r\ndeppig\r\ndepravera\r\ndepraverad\r\ndepreciering\r\ndepression\r\ndeprimera\r\ndeprimerad\r\ndeprimerade\r\ndeprimerande\r\ndepå\r\nderas\r\nderby\r\ndermatologisk\r\ndesarmera\r\ndesertera\r\ndeserterar\r\ndesign\r\ndesigna\r\ndesignelement\r\ndesigner\r\ndesillusionerad\r\ndesinficerar\r\ndesinformation\r\ndesinformera\r\ndeskriptiv\r\ndesorienterad\r\ndesorientering\r\ndesperat\r\ndesperation\r\ndespot\r\ndespotism\r\ndess\r\ndessa\r\ndessbättre\r\ndessert\r\ndessförinnan\r\ndesslikes\r\ndessutom\r\ndessvärre\r\ndestillation\r\ndestillerar\r\ndestination\r\ndestinationsort\r\ndesto\r\ndestruera\r\ndestruktion\r\ndestruktiv\r\ndet\r\ndetalj\r\ndetaljer\r\ndetaljerad\r\ndetaljhandel\r\ndetaljrik\r\ndetektiv\r\ndetonation\r\ndetonera\r\ndetonerar\r\ndetsamma\r\ndetta\r\ndevalverar\r\ndeviation\r\ndeviera\r\ndevis\r\ndi\r\ndia\r\ndiabetes\r\ndiabetiker\r\ndiabild\r\ndiabolisk\r\ndiadem\r\ndiafragma\r\ndiagnos\r\ndiagnostiserar\r\ndiagnostisk\r\ndiagonal\r\ndiagram\r\ndialekt\r\ndialog\r\ndiamant\r\ndiamanterna\r\ndiameter\r\ndiapositiv\r\ndiar\r\ndiarium\r\ndiarré\r\ndiaspora\r\ndiesel\r\ndieselmotor\r\ndieselolja\r\ndiet\r\ndifferens\r\ndifferentiera\r\ndifferentierar\r\ndiffus\r\ndifteri\r\ndig\r\ndiger\r\ndigerdöden\r\ndigga\r\ndiggar\r\ndigital\r\ndigitalis\r\ndigna\r\ndignar\r\ndignat\r\ndignitet\r\ndignitär\r\ndike\r\ndiken\r\ndikesren\r\ndiket\r\ndikotomi\r\ndikt\r\ndikta\r\ndiktamen\r\ndiktar\r\ndiktare\r\ndiktat\r\ndiktator\r\ndiktatur\r\ndikterar\r\ndiktning\r\ndiktsamling\r\ndilemma\r\ndiligens\r\ndill\r\ndilla\r\ndillar\r\ndille\r\ndimension\r\ndimfylld\r\ndimhöljda\r\ndimljus\r\ndimma\r\ndimman\r\ndimmig\r\ndimmiga\r\ndimmoln\r\ndimmorna\r\ndimper\r\ndin\r\ndina\r\ndinas\r\ndinera\r\ndinglar\r\ndiplom\r\ndiplomat\r\ndiplomatisk\r\ndipp\r\ndippar\r\ndirekt\r\ndirektion\r\ndirektiv\r\ndirektör\r\ndirigent\r\ndirigera\r\ndirigerar\r\ndis\r\ndisciplin\r\ndisciplinera\r\ndisciplinerad\r\ndisharmoni\r\ndisharmonisk\r\ndisig\r\ndisk\r\ndiskar\r\ndiskare\r\ndiskbråck\r\ndiskbänk\r\ndiskett\r\ndiskho\r\ndiskjockey\r\ndiskmaskin\r\ndiskning\r\ndisko\r\ndiskomusik\r\ndiskonto\r\ndiskotek\r\ndiskplockare\r\ndiskrepans\r\ndiskrepens\r\ndiskret\r\ndiskretion\r\ndiskriminerar\r\ndiskriminering\r\ndiskställ\r\ndiskus\r\ndiskussion\r\ndiskussionen\r\ndiskutabel\r\ndiskutera\r\ndiskuterar\r\ndiskuteras\r\ndiskvalificerar\r\ndiskvalifikation\r\ndispens\r\ndispensär\r\ndisplay\r\ndisponent\r\ndisponera\r\ndisponerad\r\ndisponerar\r\ndisponibel\r\ndisposition\r\ndisputation\r\ndisputera\r\ndisputerad\r\ndispyt\r\ndiss\r\ndissonans\r\ndistans\r\ndistansminut\r\ndistingerad\r\ndistinkt\r\ndistinktion\r\ndistrahera\r\ndistraherar\r\ndistraktion\r\ndistribuera\r\ndistribuerar\r\ndistribution\r\ndistributör\r\ndistrikt\r\ndistriktsbarnmorska\r\ndistriktsläkare\r\ndistriktssköterska\r\ndisträ\r\ndit\r\ndito\r\nditt\r\ndittills\r\nditåt\r\ndiva\r\ndivan\r\ndivergens\r\ndivergera\r\ndivergerande\r\ndiverse\r\ndiversifiera\r\ndividera\r\ndividerar\r\ndivision\r\ndiväteoxid\r\ndjungel\r\ndjup\r\ndjupa\r\ndjupare\r\ndjupast\r\ndjupaste\r\ndjupblå\r\ndjupen\r\ndjupet\r\ndjupfryser\r\ndjupgående\r\ndjuplodande\r\ndjupnar\r\ndjupsinnig\r\ndjupt\r\ndjur\r\ndjuren\r\ndjurens\r\ndjuret\r\ndjurpark\r\ndjurriket\r\ndjärv\r\ndjärva\r\ndjärvhet\r\ndjävul\r\ndjävul\r\ndjävulen\r\ndjävulens\r\ndjävulsk\r\ndoar\r\ndobbel\r\ndobbleri\r\ndocent\r\ndock\r\ndocka\r\ndockar\r\ndoft\r\ndofta\r\ndoftande\r\ndoftar\r\ndoften\r\ndofter\r\ndoftrika\r\ndoftsätta\r\ndog\r\ndogm\r\ndogmatisk\r\ndoja\r\ndoktor\r\ndoktorerar\r\ndoktrin\r\ndokument\r\ndokumentation\r\ndokumenterar\r\ndokumentet\r\ndokumentär\r\ndold\r\ndolda\r\ndolde\r\ndoldes\r\ndoldis\r\ndolk\r\ndollar\r\ndolt\r\ndolts\r\ndom\r\ndomar\r\ndomarboken\r\ndomare\r\ndomarring\r\ndomderar\r\ndomedag\r\ndomen\r\ndomens\r\ndomesticera\r\ndomherre\r\ndominans\r\ndominant\r\ndominera\r\ndominerande\r\ndominerar\r\ndomino\r\ndomkapitel\r\ndomkraft\r\ndomkyrka\r\ndomna\r\ndomnar\r\ndomprost\r\ndoms\r\ndomsaga\r\ndomslut\r\ndomslutet\r\ndomstol\r\ndomstolsutslag\r\ndomän\r\nDomänverket\r\ndon\r\ndona\r\ndonation\r\ndonator\r\ndonera\r\ndonerar\r\ndonna\r\ndop\r\ndopar\r\ndopet\r\ndopets\r\ndopfunt\r\ndopkällan\r\ndopp\r\ndoppa\r\ndoppade\r\ndoppar\r\ndopparedagen\r\ndoppats\r\ndopping\r\ndos\r\ndosa\r\ndosan\r\ndosera\r\ndoseringsanvisning\r\ndossier\r\ndotter\r\ndotterbolag\r\ndotterföretag\r\ndov\r\ndovhjort\r\ndra\r\ndrabba\r\ndrabbad\r\ndrabbar\r\ndrabbas\r\ndrabbats\r\ndrabbning\r\ndrack\r\ndrag\r\ndraga\r\ndragande\r\ndragen\r\ndrager\r\ndragfordon\r\ndragg\r\ndraggar\r\ndragharmonika\r\ndraghjälp\r\ndragig\r\ndragit\r\ndragkamp\r\ndragkedja\r\ndragkärra\r\ndragning\r\ndragningskraft\r\ndragon\r\ndragplåster\r\ndragspel\r\ndrakar\r\ndrake\r\ndrama\r\ndramatik\r\ndramatiserar\r\ndramatisk\r\ndrapera\r\ndraperi\r\ndrar\r\ndras\r\ndrastisk\r\ndratta\r\ndreglar\r\ndrejar\r\ndress\r\ndressera\r\ndresserar\r\ndressing\r\ndrev\r\ndribblar\r\ndribbling\r\ndrick\r\ndricka\r\ndrickas\r\ndricker\r\ndricks\r\ndrickspeng\r\ndrickspengar\r\ndricksvatten\r\ndrift\r\ndriftföretag\r\ndriftig\r\ndriftighet\r\ndrill\r\ndrilla\r\ndrillar\r\ndrillborr\r\ndrink\r\ndristar\r\ndristig\r\ndristigt\r\ndriv\r\ndriva\r\ndrivan\r\ndrivbänk\r\ndrive\r\ndriven\r\ndriver\r\ndrivhjulets\r\ndrivhus\r\ndrivit\r\ndrivkraft\r\ndrivmedel\r\ndrivs\r\ndrivvagn\r\ndrog\r\ndroga\r\ndrogad\r\ndroger\r\ndrogmissbruk\r\ndrogs\r\ndromedar\r\ndropp\r\ndroppar\r\ndroppe\r\ndroppen\r\ndroska\r\ndrottning\r\ndrottningarna\r\ndrottningsylt\r\ndrucken\r\ndruckit\r\ndrulle\r\ndrummel\r\ndrunknar\r\ndrunkning\r\ndrupit\r\ndruva\r\ndruvklase\r\ndruvor\r\ndruvsocker\r\ndryck\r\ndrycken\r\ndryckenskap\r\ndryfta\r\ndryftar\r\ndryg\r\ndryga\r\ndrygt\r\ndrypa\r\ndrypande\r\ndryper\r\ndråp\r\ndråplig\r\ndråpslag\r\ndråsa\r\ndråsar\r\ndrägg\r\ndräglig\r\ndräkt\r\ndräkten\r\ndräkter\r\ndräkterna\r\ndräktig\r\ndräktighet\r\ndräller\r\ndrämma\r\ndrämmer\r\ndrämt\r\ndränage\r\ndränera\r\ndränering\r\ndräng\r\ndrängar\r\ndränker\r\ndräpa\r\ndräpande\r\ndräper\r\ndröj\r\ndröja\r\ndröjer\r\ndröjsmål\r\ndröjt\r\ndröm\r\ndrömbild\r\ndrömlik\r\ndrömlös\r\ndrömma\r\ndrömmar\r\ndrömmare\r\ndrömmen\r\ndrömmer\r\ndrömt\r\ndröna\r\ndrönare\r\ndröp\r\ndrös\r\ndu\r\nduar\r\ndubb\r\ndubbar\r\ndubbel\r\ndubbelbottnad\r\ndubbelgångare\r\ndubbelmening\r\ndubbelmoral\r\ndubbelt\r\ndubbla\r\ndubblar\r\ndubblera\r\ndubblerar\r\ndubblering\r\ndubblett\r\ndubbling\r\ndubiös\r\nduckar\r\nduell\r\nduett\r\nduffel\r\nduga\r\nduger\r\ndugg\r\ndugga\r\nduggar\r\nduggregn\r\nduglig\r\nduglighet\r\ndugt\r\nduk\r\nduka\r\ndukar\r\ndukas\r\ndukat\r\nduktig\r\ndum\r\ndumbom\r\ndumburk\r\ndumdristig\r\ndumhet\r\ndumheter\r\ndumhuvud\r\ndumma\r\ndummar\r\ndummer\r\ndumpa\r\ndumpar\r\ndumpat\r\ndumpventil\r\ndumskalle\r\ndumt\r\ndun\r\ndunder\r\ndunderstor\r\ndundra\r\ndundrade\r\ndundrar\r\ndunge\r\ndunk\r\ndunka\r\ndunkande\r\ndunkar\r\ndunkel\r\ndunkelgöra\r\ndunkelhet\r\ndunkelt\r\ndunkla\r\ndunklet\r\nduns\r\ndunsar\r\ndunsta\r\ndunstar\r\nduo\r\nduodes\r\ndupera\r\nduperad\r\nduperar\r\nduplicera\r\nduplicerar\r\nduplikat\r\ndur\r\ndurk\r\ndurkdriven\r\ndurkslag\r\ndus\r\ndusch\r\nduschar\r\ndussin\r\ndust\r\nduva\r\nduvan\r\nduvas\r\nduvor\r\nduvunge\r\ndvala\r\ndvalan\r\ndväljes\r\ndväljs\r\ndvärg\r\ndvärgträd\r\ndy\r\ndyblöt\r\ndyft\r\ndygd\r\ndygdig\r\ndygn\r\ndygnet\r\ndyig\r\ndyk\r\ndyka\r\ndykare\r\ndyker\r\ndykning\r\ndykt\r\ndylik\r\ndyn\r\ndyna\r\ndynamisk\r\ndynamit\r\ndynamo\r\ndynasti\r\ndynga\r\ndyngrak\r\ndyning\r\ndynvar\r\ndyr\r\ndyra\r\ndyrbar\r\ndyrbara\r\ndyrbaraste\r\ndyrbart\r\ndyre\r\ndyrgrip\r\ndyrk\r\ndyrka\r\ndyrkar\r\ndyrköpt\r\ndyrort\r\ndyrt\r\ndyscha\r\ndysenteri\r\ndyslexi\r\ndyster\r\ndysterhet\r\ndystert\r\ndystopi\r\ndå\r\ndåd\r\ndålig\r\ndåligast\r\ndålighet\r\ndåligt\r\ndån\r\ndåna\r\ndånade\r\ndånar\r\ndånet\r\ndåraktig\r\ndåraktigt\r\ndårars\r\ndåre\r\ndårens\r\ndårfink\r\ndårskap\r\ndårskapen\r\ndåsa\r\ndåsar\r\ndåsig\r\ndåtid\r\ndåvarande\r\ndäck\r\ndäggdjur\r\ndälder\r\ndämmer\r\ndämpa\r\ndämpad\r\ndämpar\r\ndämpas\r\ndän\r\ndäng\r\ndänga\r\ndänger\r\ndär\r\ndäran\r\ndärav\r\ndärborta\r\ndärefter\r\ndäremot\r\ndärför\r\ndärhän\r\ndäri\r\ndärifrån\r\ndärigenom\r\ndärinnanför\r\ndärinne\r\ndärjämte\r\ndärmed\r\ndärnäst\r\ndärom\r\ndäromkring\r\ndärpå\r\ndärtill\r\ndäruppe\r\ndäruppå\r\ndärur\r\ndärute\r\ndäruti\r\ndärutöver\r\ndärvid\r\ndärvidlag\r\ndäråt\r\ndäröver\r\ndäst\r\ndäven\r\ndö\r\ndöd\r\ndöda\r\ndödad\r\ndödade\r\ndödande\r\ndödar\r\ndödas\r\ndödat\r\ndöden\r\ndödens\r\ndödes\r\ndödförklarar\r\ndödlig\r\ndödliga\r\ndödlighet\r\ndödligs\r\ndödligt\r\ndödläge\r\ndöds\r\ndödsattest\r\ndödsbevis\r\ndödsblek\r\ndödsbo\r\ndödsboanmälan\r\ndödsdom\r\ndödsfall\r\ndödsfallet\r\ndödsfiender\r\ndödshjälp\r\ndödskalle\r\ndödsriket\r\ndödsruna\r\ndödsskuggans\r\ndödsstraff\r\ndödsstraffet\r\ndödstrött\r\ndödsångest\r\ndöende\r\ndög\r\ndök\r\ndölja\r\ndöljas\r\ndöljer\r\ndöljes\r\ndöm\r\ndöma\r\ndömas\r\ndömd\r\ndömda\r\ndömdes\r\ndömer\r\ndöp\r\ndöpa\r\ndöparen\r\ndöparens\r\ndöpas\r\ndöpelsens\r\ndöper\r\ndöpes\r\ndöps\r\ndöpt\r\ndöpte\r\ndöptes\r\ndöpts\r\ndör\r\ndörr\r\ndörrar\r\ndörrarna\r\ndörren\r\ndörrhandtag\r\ndörrkarm\r\ndörrknackning\r\ndörrpost\r\ndörrposter\r\ndörrvakt\r\ndörrvred\r\ndött\r\ndöttrar\r\ndöv\r\ndöva\r\ndövstum\r\ndövörat\r\nebb\r\ned\r\nedda\r\neden\r\nedens\r\neder\r\nedera\r\nedition\r\nefesierbrevet\r\neffekt\r\neffektiv\r\neffektiviserar\r\neffektivitet\r\neffektuera\r\nefter\r\nefterapa\r\nefterapar\r\nefterapning\r\nefterbildning\r\nefterbliven\r\nefterbörden\r\nefterdyning\r\nefterforska\r\nefterforskning\r\nefterfråga\r\nefterfrågad\r\nefterfrågan\r\nefterfrågar\r\nefterfölja\r\nefterföljande\r\nefterföljd\r\neftergift\r\neftergiven\r\neftergranska\r\nefterhand\r\nefterhängsen\r\nefterhärmning\r\nefterkommande\r\nefterkontroll\r\nefterkrigstid\r\nefterkälken\r\nefterlevande\r\nefterlevnad\r\nefterlikna\r\nefterlysa\r\nefterlyser\r\nefterlämnar\r\nefterlämning\r\nefterlängta\r\nefterlängtad\r\neftermiddag\r\neftermiddagen\r\nefternamn\r\nefterräkning\r\nefterrätt\r\neftersatt\r\nefterskickad\r\nefterskott\r\nefterskänker\r\neftersläng\r\neftersläntrare\r\neftersläpning\r\neftersmak\r\neftersnack\r\neftersom\r\nefterspana\r\nefterspanar\r\nefterspaning\r\nefterspel\r\neftersträva\r\neftersträvansvärd\r\neftersträvar\r\neftersänder\r\neftersöka\r\neftersökt\r\neftertanke\r\neftertrakta\r\neftertraktar\r\neftertryck\r\neftertrycklig\r\nefterträda\r\nefterträdande\r\nefterträdare\r\nefterträder\r\neftertänksam\r\nefterverkning\r\neftervård\r\neftervärld\r\nefteråt\r\negal\r\negen\r\negenart\r\negenartad\r\negenavgift\r\negendom\r\negendomarna\r\negendomlig\r\negendomlighet\r\negendomslös\r\negenhet\r\negenhändig\r\negenkär\r\negenmäktig\r\negennamn\r\negennytta\r\negensinnig\r\negenskap\r\negenskaper\r\negentlig\r\negentligen\r\negenvilja\r\negenviljan\r\neget\r\negg\r\negga\r\neggad\r\neggade\r\neggande\r\neggar\r\negna\r\negnahem\r\nego\r\negocentrisk\r\negoism\r\negoist\r\negoistisk\r\negotripp\r\negotrippad\r\negyptens\r\negyptier\r\nehuru\r\nej\r\nejakulation\r\nejakulera\r\nejder\r\nejderhona\r\nek\r\neka\r\nekar\r\nekens\r\neker\r\nekipage\r\nekipering\r\nekivok\r\neko\r\nekologi\r\nekologisk\r\nekologiskt\r\nekonom\r\nekonomi\r\nekonomibiträde\r\nekonomiklass\r\nekonomin\r\nekonomisk\r\nekonomiskt\r\nekorre\r\nekorrhjul\r\nekot\r\neksem\r\nekumenisk\r\nekvation\r\nekvator\r\nekvivalens\r\nekvivalent\r\nel\r\nelaborera\r\nelak\r\nelaka\r\nelakartad\r\nelakhet\r\nelaking\r\nelakt\r\nelastisk\r\neld\r\nelda\r\neldar\r\neldarna\r\nelddop\r\nelden\r\neldens\r\neldfarlig\r\neldfast\r\neldfängd\r\neldgivning\r\neldhav\r\neldig\r\neldighet\r\neldigt\r\neldning\r\neldorado\r\neldprov\r\neldröda\r\neldrör\r\neldsjäl\r\neldsken\r\neldskrift\r\neldstad\r\neldstaden\r\neldstod\r\neldsvåda\r\nelefant\r\nelegans\r\nelegant\r\nelegi\r\nelektricitet\r\nelektriker\r\nelektrisk\r\nelektron\r\nelektronik\r\nelektronisk\r\nelektronrör\r\nelement\r\nelementär\r\nelev\r\nelevråd\r\nelfenben\r\nelfte\r\nelgenerator\r\nelia\r\nelias\r\nelimination\r\neliminera\r\neliminerande\r\neliminerar\r\nelit\r\neliten\r\neljest\r\neller\r\nellips\r\nellipsformad\r\nelljus\r\nelmätare\r\neloge\r\nelsits\r\nelva\r\nelverk\r\nelända\r\nelände\r\neländig\r\neländiga\r\nemalj\r\nemancipation\r\nemanera\r\nemanerar\r\nemballage\r\nemballera\r\nemballering\r\nembargo\r\nemblem\r\nemblematisk\r\nemboli\r\nembryo\r\nemedan\r\nemellan\r\nemellanåt\r\nemellertid\r\nemfas\r\nemigrant\r\nemigration\r\nemigrera\r\nemigrerar\r\neminent\r\nemir\r\nemission\r\nemittera\r\nemmaus\r\nemot\r\nemotion\r\nemotionell\r\nemotioner\r\nemotse\r\nemotser\r\nempati\r\nempatisk\r\nempirisk\r\nen\r\nena\r\nenad\r\nenade\r\nenahanda\r\nenaktare\r\nenar\r\nenarmad\r\nenarmade\r\nenas\r\nenastående\r\nenats\r\nenbart\r\nenbent\r\nencyklopedi\r\nenda\r\nendast\r\nende\r\nendera\r\nenderas\r\nendräkt\r\nene\r\nenergi\r\nenergiknippe\r\nenergilös\r\nenergisk\r\nenervera\r\nenfald\r\nenfaldig\r\nenformig\r\nenfärgad\r\nenfödde\r\nengagemang\r\nengagera\r\nengagerad\r\nengagerande\r\nengagerar\r\nengelsk\r\nengelska\r\nengelsman\r\nenhet\r\nenheten\r\nenhetlig\r\nenhetlighet\r\nenhällig\r\nenhällighet\r\nenhälligt\r\nenig\r\neniga\r\nenighet\r\nenigmatisk\r\nenigt\r\nening\r\nenkel\r\nenkelhet\r\nenkelriktad\r\nenkelspårig\r\nenkelt\r\nenkla\r\nenklare\r\nenklav\r\nenkom\r\nenkrona\r\nenkät\r\nenlighet\r\nenligt\r\nenorm\r\nenormt\r\nenrum\r\nens\r\nensak\r\nensam\r\nensamhet\r\nensamheten\r\nensamhetens\r\nensamma\r\nensamme\r\nensamstående\r\nensamt\r\nensamvarg\r\nense\r\nensemble\r\nensidig\r\nenskild\r\nenskilda\r\nenskildhet\r\nenskilt\r\nenslig\r\nensliga\r\nenslighet\r\nensling\r\nenstaka\r\nenstämmig\r\nenstöring\r\nentlediga\r\nentledigar\r\nentonig\r\nentré\r\nentréhall\r\nentreprenad\r\nentreprenör\r\nentropi\r\nenträgen\r\nentusiasm\r\nentusiasmera\r\nentusiasmerande\r\nentusiastisk\r\nentydig\r\nentydigt\r\nenvar\r\nenveten\r\nenvig\r\nenvirong\r\nenvironger\r\nenvis\r\nenvisas\r\nenvishet\r\nenvåldshärskare\r\nenvälde\r\nenväldig\r\nenzym\r\nenär\r\neon\r\nepidemi\r\nepilepsi\r\nepileptiker\r\nepileptisk\r\nepilog\r\nepisk\r\nepisod\r\nepistel\r\nepitafium\r\nepok\r\nepokgörande\r\ne-post\r\ne-posta\r\ner\r\nera\r\nerbarmlig\r\nerbjuda\r\nerbjudande\r\nerbjuder\r\nerbjudit\r\nerektion\r\neremit\r\nerfar\r\nerfara\r\nerfaren\r\nerfarenhet\r\nerfaret\r\nerfarit\r\nerfarna\r\nerfarne\r\nerforderlig\r\nerfordra\r\nerfordrar\r\nergonomi\r\nerhålla\r\nerhåller\r\nerigerad\r\neriksgata\r\nerinra\r\nerinran\r\nerinrar\r\nerinring\r\nerkände\r\nerkänna\r\nerkännande\r\nerkänner\r\nerlägga\r\nerlägger\r\nerotik\r\nerotisk\r\nersätta\r\nersättare\r\nersätter\r\nersättning\r\nersättningen\r\nersättningsord\r\nert\r\nertappa\r\nertappar\r\nerövra\r\nerövrar\r\neskalera\r\neskapad\r\neskapism\r\neskimå\r\neskort\r\neskortera\r\nesperanto\r\nespresso\r\nesra\r\ness\r\nesse\r\nessens\r\nessentiell\r\nessä\r\nest\r\nester\r\nesters\r\nestetik\r\nestetisk\r\nestimera\r\nestnisk\r\nestrad\r\nestradör\r\netablera\r\netablerad\r\netablerar\r\netablissemang\r\netage\r\netagevåning\r\netanol\r\netapp\r\neter\r\neterisk\r\neterkropp\r\netermedier\r\netik\r\netikett\r\netisk\r\netnisk\r\netniska\r\netsa\r\netsar\r\nett\r\netta\r\netthundra\r\nettrig\r\nettårig\r\netui\r\neufori\r\neuforisk\r\neuropé\r\neuropeisk\r\neutanasi\r\neva\r\nevakuera\r\nevakuerar\r\nevakuering\r\nevaluera\r\nevaluering\r\nevangelierna\r\nevangeliet\r\nevangeliets\r\nevangelisation\r\nevangelisera\r\nevangelisk\r\nevangelist\r\nevangelium\r\nevenemang\r\neventualitet\r\neventuell\r\neventuellt\r\nevergreen\r\nevidens\r\nevig\r\neviga\r\nevige\r\neviges\r\nevighet\r\nevigheten\r\nevighetens\r\nevigheter\r\nevigheterna\r\nevigheternas\r\nevigheters\r\nevighets\r\nevighetshoppet\r\nevigt\r\nevinnerlig\r\nevinnerligen\r\nevinnerligt\r\nevolution\r\nexakt\r\nexakthet\r\nexalterad\r\nexamen\r\nexamination\r\nexaminera\r\nexcellens\r\nexcellent\r\nexcentrisk\r\nexceptionell\r\nexceptionellt\r\nexekution\r\nexekutiv\r\nexekvera\r\nexempel\r\nexempellös\r\nexempelvis\r\nexemplar\r\nexemplarisk\r\nexemplet\r\nexemplifiera\r\nexemplifierar\r\nexercera\r\nexercis\r\nexil\r\nexistens\r\nexistensberättigande\r\nexistensminimum\r\nexistera\r\nexisterande\r\nexisterar\r\nexkludera\r\nexklusiv\r\nexklusive\r\nexkrement\r\nexkrementer\r\nexlibris\r\nexotisk\r\nexpandera\r\nexpanderar\r\nexpansion\r\nexpansiv\r\nexpediera\r\nexpedierar\r\nexpedit\r\nexpedition\r\nexperiment\r\nexperimentellt\r\nexperimentera\r\nexperimenterar\r\nexpert\r\nexpertis\r\nexplicit\r\nexplikation\r\nexploatera\r\nexploaterar\r\nexploatering\r\nexploatör\r\nexplodera\r\nexploderar\r\nexplosion\r\nexplosiv\r\nexpo\r\nexponera\r\nexponerar\r\nexport\r\nexportera\r\nexporterar\r\nexposition\r\nexpress\r\nexpressbrev\r\nexpressiv\r\nexpropriation\r\nextas\r\nextasen\r\nextatisk\r\nextension\r\nextensions\r\nextensiv\r\nexteriör\r\nextern\r\nextra\r\nextrahera\r\nextraknäck\r\nextraknäcker\r\nextrakt\r\nextraordinär\r\nextrapris\r\nextravagant\r\nextrem\r\nextremfruktan\r\nextremist\r\nextremitet\r\nextremt\r\nextrovert\r\neyeliner\r\nfabel\r\nfabricera\r\nfabricerad\r\nfabricerar\r\nfabrik\r\nfabrikant\r\nfabrikat\r\nfabriks\r\nfabrikör\r\nfabulera\r\nfabulerar\r\nfabulös\r\nfabulöst\r\nfacilitet\r\nfacit\r\nfack\r\nfackförbund\r\nfackförening\r\nfackklubb\r\nfackla\r\nfacklig\r\nfacklitteratur\r\nfacklor\r\nfackman\r\nfackpress\r\nfadd\r\nfadder\r\nfader\r\nfaderligt\r\nfaderlösa\r\nfaderlösas\r\nfaderlöse\r\nfaderlöses\r\nfadern\r\nfaderns\r\nfaders\r\nfadersarmar\r\nfadersblick\r\nfadersborgen\r\nfadersfamn\r\nfadershand\r\nfadershanden\r\nfadershem\r\nfadershus\r\nfadershuset\r\nfaderskap\r\nfadersland\r\nfadersnamn\r\nfadersråd\r\nfadersrösten\r\nfadersöga\r\nfadäs\r\nfager\r\nfaggorna\r\nfagra\r\nfajt\r\nfajtas\r\nfakta\r\nfaktisk\r\nfaktiskt\r\nfaktor\r\nfaktum\r\nfaktura\r\nfakultet\r\nfal\r\nfalang\r\nfalk\r\nfalkens\r\nfall\r\nfalla\r\nfallande\r\nfallbila\r\nfallen\r\nfallenhet\r\nfaller\r\nfallera\r\nfallfärdig\r\nfallgrop\r\nfallit\r\nfallna\r\nfallne\r\nfallrepet\r\nfallskärm\r\nfalna\r\nfalnar\r\nfals\r\nfalsett\r\nfalsifiera\r\nfalsk\r\nfalska\r\nfalskhet\r\nfalskt\r\nfalukorv\r\nfamilj\r\nfamiljedaghem\r\nfamiljehem\r\nfamiljemedlem\r\nfamiljen\r\nfamiljenamn\r\nfamiljepedagog\r\nfamiljepension\r\nfamiljeplanering\r\nfamiljer\r\nfamiljerådgivare\r\nfamiljs\r\nfamiljär\r\nfamla\r\nfamlar\r\nfamlat\r\nfamn\r\nfamna\r\nfamnande\r\nfamnar\r\nfamnas\r\nfamnen\r\nfamntag\r\nfamös\r\nfan\r\nfana\r\nfanatiker\r\nfanatisk\r\nfanatism\r\nfanders\r\nfaner\r\nfanfar\r\nfanfarer\r\nfanjunkare\r\nfann\r\nfanns\r\nfanskap\r\nfantasi\r\nfantasier\r\nfantasifull\r\nfantast\r\nfantastisk\r\nfantastiskt\r\nfantisera\r\nfantiserar\r\nfantom\r\nfar\r\nfara\r\nfaran\r\nfarande\r\nfarans\r\nfarao\r\nfaraos\r\nfarbar\r\nfarbror\r\nfarfar\r\nfarföräldrar\r\nfarhåga\r\nfarin\r\nfariséerna\r\nfariséernas\r\nfarit\r\nfarkost\r\nfarled\r\nfarlig\r\nfarlighet\r\nfarligt\r\nfarm\r\nfarmaceut\r\nfarmare\r\nfarmor\r\nfarofylld\r\nfaror\r\nfarorna\r\nfarornas\r\nfarozon\r\nfars\r\nfarsa\r\nfarsot\r\nfarstu\r\nfart\r\nfartfyllt\r\nfartsyndare\r\nfartsänka\r\nfartyg\r\nfartygen\r\nfartyget\r\nfartygsgolv\r\nfartygskropp\r\nfartökning\r\nfarvatten\r\nfarväl\r\nfas\r\nfasa\r\nfasad\r\nfasader\r\nfasan\r\nfasansfull\r\nfasansfulla\r\nfasansfullt\r\nfasar\r\nfasaväckande\r\nfascinera\r\nfascinerad\r\nfascinerande\r\nfascinerar\r\nfascism\r\nfascist\r\nfasett\r\nfasetterad\r\nfashionabel\r\nfaslig\r\nfason\r\nfasor\r\nfasorna\r\nfast\r\nfasta\r\nfastar\r\nfaster\r\nfastetider\r\nfasthet\r\nfasthålla\r\nfastighet\r\nfastighetsdomstol\r\nfastighetsmäklare\r\nfastighetsägare\r\nfastlagen\r\nfastlagsbulle\r\nfastlagssöndagen\r\nfastland\r\nfastna\r\nfastnade\r\nfastnar\r\nfastsatt\r\nfastslagen\r\nfastslå\r\nfastslår\r\nfastställa\r\nfastställande\r\nfastställd\r\nfastställer\r\nfastsätta\r\nfastän\r\nfat\r\nfatal\r\nfatt\r\nfatta\r\nfattar\r\nfattas\r\nfattat\r\nfattbar\r\nfattig\r\nfattiga\r\nfattigas\r\nfattigdom\r\nfattigdomens\r\nfattige\r\nfattigkvarter\r\nfattiglapp\r\nfattigmåltid\r\nfattigt\r\nfattning\r\nfattningen\r\nfauna\r\nfavorisera\r\nfavoriserar\r\nfavorit\r\nfavör\r\nfe\r\nfeber\r\nfebern\r\nfebrig\r\nfebril\r\nfebruari\r\nfederal\r\nfederation\r\nfeedback\r\nfeeling\r\nfeg\r\nfega\r\nfeghet\r\nfegis\r\nfegt\r\nfeja\r\nfejar\r\nfejd\r\nfejderna\r\nfejka\r\nfejkad\r\nfejkar\r\nfejs\r\nfekalier\r\nfel\r\nfela\r\nfelaktig\r\nfelaktighet\r\nfelaktigt\r\nfelar\r\nfelat\r\nfelbedöma\r\nfelbedömning\r\nfeldatera\r\nfelet\r\nfelfri\r\nfelfritt\r\nfellatio\r\nfelplacerad\r\nfelsteg\r\nfeltolka\r\nfeltolkning\r\nfelutvecklad\r\nfelvänd\r\nfem\r\nfemdagarsvecka\r\nfemdygnsprognos\r\nfemetta\r\nfeminin\r\nfemininum\r\nfeminism\r\nfeminist\r\nfemkamp\r\nfemma\r\nfemrummare\r\nfemte\r\nfemti\r\nfemtielva\r\nfemtilapp\r\nfemtio\r\nfemtionde\r\nfemtiöring\r\nfemton\r\nfemtonde\r\nfemöring\r\nfena\r\nfenomen\r\nfenomenal\r\nfeodal\r\nferie\r\nferiehem\r\nferier\r\nferieskola\r\nfernissa\r\nfernissar\r\nfertil\r\nfertila\r\nfertilitet\r\nfest\r\nfesta\r\nfestar\r\nfesten\r\nfester\r\nfestival\r\nfestlig\r\nfestlighet\r\nfestligt\r\nfestmåltid\r\nfeströker\r\nfet\r\nfeta\r\nfetas\r\nfetknopp\r\nfetlagd\r\nfetma\r\nfett\r\nfettisdag\r\nfettisdagsbulle\r\nfia\r\nfiasko\r\nfiber\r\nfick\r\nficka\r\nficklampa\r\nfickpengar\r\nficktjuv\r\nfickur\r\nfiende\r\nfienden\r\nfiendens\r\nfiender\r\nfiendernas\r\nfiendskap\r\nfientlig\r\nfientlighet\r\nfientligt\r\nfiffel\r\nfiffig\r\nfiffla\r\nfifflar\r\nfightas\r\nfighter\r\nfigur\r\nfigurera\r\nfigurerar\r\nfik\r\nfika\r\nfikabröd\r\nfikar\r\nfikastund\r\nfikaställe\r\nfikon\r\nfikonspråk\r\nfiktion\r\nfiktiv\r\nfikus\r\nfil\r\nfilar\r\nfilatelist\r\nfilé\r\nfilemonbrevet\r\nfilharmoniker\r\nfilial\r\nfilipperbrevet\r\nfilm\r\nfilma\r\nfilmar\r\nfilmatisering\r\nfilmduk\r\nfilmer\r\nfilmjölk\r\nfilmmanus\r\nfilmsnutt\r\nfilosof\r\nfilosofera\r\nfilosoferar\r\nfilosofi\r\nfilosofisk\r\nfilt\r\nfilter\r\nfiltrera\r\nfiltrerar\r\nfiltrering\r\nfilur\r\nfimp\r\nfimpar\r\nfin\r\nfina\r\nfinal\r\nfinans\r\nfinansiell\r\nfinansiera\r\nfinansierar\r\nfinansiär\r\nfinare\r\nfinaste\r\nfinemang\r\nfiness\r\nfinfin\r\nfinfint\r\nfinfördela\r\nfinger\r\nfingerar\r\nfingerborg\r\nfingerfärdig\r\nfingersmycke\r\nfingervisning\r\nfingra\r\nfingrar\r\nfingrars\r\nfinhackat\r\nfinish\r\nfinka\r\nfinkammar\r\nfinkänslig\r\nfinlandssvensk\r\nfinlemmad\r\nfinländare\r\nfinländsk\r\nfinmaskig\r\nfinmekaniker\r\nfinn\r\nfinna\r\nfinnar\r\nfinnas\r\nfinne\r\nfinner\r\nfinnes\r\nfinns\r\nfinputsa\r\nfinsk\r\nfinska\r\nfinskuren\r\nfinslipa\r\nfinslipar\r\nfinsmakare\r\nfinstilt\r\nfinstämd\r\nfint\r\nfintar\r\nfinurlig\r\nfiol\r\nfippla\r\nfira\r\nfirade\r\nfirar\r\nfiras\r\nfirats\r\nfirma\r\nfirre\r\nfis\r\nfisa\r\nfisar\r\nfisen\r\nfiser\r\nfisförnäm\r\nfisig\r\nfisk\r\nfiska\r\nfiskade\r\nfiskar\r\nfiskare\r\nfiske\r\nfiskegräns\r\nfiskekort\r\nfiskelina\r\nfiskeläge\r\nfisken\r\nfiskens\r\nfiskenät\r\nfiskmås\r\nfiskpinnar\r\nfiskrom\r\nfiskägg\r\nfission\r\nfix\r\nfixa\r\nfixar\r\nfixare\r\nfixera\r\nfixerad\r\nfixerar\r\nfjant\r\nfjanta\r\nfjanteri\r\nfjantig\r\nfjol\r\nfjolla\r\nfjollig\r\nfjompig\r\nfjor\r\nfjord\r\nfjorton\r\nfjortonde\r\nfjun\r\nfjunig\r\nfjuttig\r\nfjäder\r\nfjäderfä\r\nfjädrar\r\nfjädring\r\nfjäll\r\nfjälla\r\nfjällen\r\nfjällskred\r\nfjälster\r\nfjärd\r\nfjärde\r\nfjärdedel\r\nfjärdens\r\nfjäril\r\nfjärilar\r\nfjärma\r\nfjärmar\r\nfjärran\r\nfjärrkontroll\r\nfjärrkontrollen\r\nfjärrstyrd\r\nfjärrvärme\r\nfjärt\r\nfjärta\r\nfjärtar\r\nfjäsk\r\nfjäska\r\nfjäskande\r\nfjäskar\r\nfjäskig\r\nfjät\r\nfjättra\r\nfjättrad\r\nfjättrar\r\nflabb\r\nflabba\r\nflabbar\r\nflabbig\r\nflack\r\nflacka\r\nflackar\r\nfladdermus\r\nfladdra\r\nfladdrade\r\nfladdrar\r\nflaga\r\nflagar\r\nflagg\r\nflagga\r\nflaggar\r\nflaggskepp\r\nflagnar\r\nflagnat\r\nflagrant\r\nflak\r\nflamberar\r\nflamma\r\nflamman\r\nflammar\r\nflammig\r\nflammorna\r\nflamsa\r\nflamskvävnad\r\nflanell\r\nflanera\r\nflanerar\r\nflarn\r\nflaska\r\nflaskan\r\nflaskhals\r\nflat\r\nflata\r\nflathet\r\nflax\r\nflaxa\r\nflaxande\r\nflaxar\r\nflegmatisk\r\nfler\r\nflera\r\nflerfamiljshus\r\nflerskrovsbåt\r\nflertal\r\nflertalet\r\nfleruppdragskörning\r\nflest\r\nflesta\r\nflexar\r\nflexibel\r\nflexibilitet\r\nflextid\r\nflicka\r\nflickan\r\nflickebarn\r\nflicknamn\r\nflickor\r\nflickvän\r\nflik\r\nfliken\r\nflimmer\r\nflimrar\r\nflin\r\nflina\r\nflinade\r\nflinar\r\nflinga\r\nflink\r\nflinka\r\nflinkt\r\nflint\r\nflinta\r\nflintskallig\r\nflipperspel\r\nflirt\r\nflirta\r\nflirtig\r\nflis\r\nflisa\r\nflit\r\nflitig\r\nflitiges\r\nflitigt\r\nflock\r\nflockar\r\nflockas\r\nflocken\r\nflockvis\r\nflod\r\nfloden\r\nflodens\r\nfloder\r\nfloderna\r\nflodernas\r\nfloders\r\nflodförgrening\r\nflop\r\nflopp\r\nflor\r\nflora\r\nflorera\r\nflorerar\r\nflorsocker\r\nfloskel\r\nflott\r\nflotta\r\nflottar\r\nflotte\r\nflottig\r\nflottigt\r\nflottilj\r\nflottning\r\nfluffig\r\nfluga\r\nflugit\r\nflugor\r\nflugsmälla\r\nflugsnappare\r\nflugsvamp\r\nfluid\r\nflukta\r\nfluktuera\r\nfluktuerar\r\nflum\r\nflummig\r\nflundra\r\nfluor\r\nfluorescerande\r\nflutit\r\nflutna\r\nflux\r\nfly\r\nflydda\r\nflydde\r\nflyende\r\nflyg\r\nflyga\r\nflygare\r\nflygblad\r\nflygel\r\nflyger\r\nflygfarkost\r\nflygflottilj\r\nflygfä\r\nflygfält\r\nflyglarm\r\nflygmaskin\r\nflygplan\r\nflygplansrullning\r\nflygplats\r\nflygvapen\r\nflygvärdinna\r\nflyhänt\r\nflykt\r\nflykta\r\nflyktar\r\nflyktig\r\nflyktigt\r\nflykting\r\nflyktingar\r\nflyktingarna\r\nflyktingen\r\nflyktingens\r\nflyktingkula\r\nflyr\r\nflyt\r\nflyta\r\nflyter\r\nflytning\r\nflytt\r\nflytta\r\nflyttade\r\nflyttar\r\nflyttat\r\nflyttats\r\nflyttbar\r\nflyttfågel\r\nflyttlass\r\nflyttlasspolitik\r\nflyttning\r\nflyttningsanmälan\r\nflyttningsbidrag\r\nflyttningshjälp\r\nflytväst\r\nflå\r\nflår\r\nflås\r\nflåsa\r\nflåsande\r\nflåsar\r\nflåshurtig\r\nfläck\r\nfläcka\r\nfläckar\r\nfläckat\r\nfläckfri\r\nfläckfria\r\nfläckig\r\nflädern\r\nfläkt\r\nfläkten\r\nflämta\r\nflämtande\r\nflämtar\r\nflämtat\r\nfläng\r\nflänga\r\nflänsost\r\nflärd\r\nflärden\r\nfläsk\r\nfläskig\r\nfläskpannkaka\r\nfläta\r\nflätades\r\nflätar\r\nflöda\r\nflödade\r\nflödande\r\nflödar\r\nflöde\r\nflöden\r\nflödesdiagram\r\nflödesschema\r\nflödet\r\nflög\r\nflöjt\r\nflöjter\r\nflört\r\nflörta\r\nflöt\r\nflöte\r\nfnask\r\nfnatt\r\nfnissa\r\nfnissar\r\nfnittra\r\nfnittrar\r\nfnurra\r\nfnyser\r\nfnysning\r\nfnöske\r\nfoajé\r\nfobi\r\nfoder\r\nfodra\r\nfodral\r\nfog\r\nfoga\r\nfogar\r\nfogas\r\nfogat\r\nfogde\r\nfoglig\r\nfokus\r\nfokusera\r\nfokusering\r\nfolder\r\nfolie\r\nfolk\r\nfolkbokföring\r\nfolken\r\nfolkens\r\nfolket\r\nfolkets\r\nfolkgrupp\r\nfolkgunst\r\nfolkhav\r\nfolkhem\r\nfolkhemmet\r\nfolkhop\r\nfolkhögskola\r\nfolklig\r\nfolklore\r\nfolkmassa\r\nfolkmassan\r\nfolkmord\r\nfolkmun\r\nfolkmusiker\r\nfolkmål\r\nfolkmängd\r\nfolkomröstning\r\nfolkpark\r\nfolkpension\r\nfolkrörelse\r\nfolks\r\nfolksamling\r\nfolkskola\r\nfolkslag\r\nfolkstorm\r\nfolkstyre\r\nfolktandvård\r\nfolktom\r\nfolkvimmel\r\nfolköl\r\nfond\r\nfontän\r\nfor\r\nforce\r\nforcera\r\nforcerande\r\nforcerar\r\nfordom\r\nfordon\r\nfordonsskatt\r\nfordra\r\nfordran\r\nfordrar\r\nfordras\r\nfordring\r\nforell\r\nform\r\nforma\r\nformad\r\nformades\r\nformalin\r\nformalism\r\nformalismens\r\nformalitet\r\nformar\r\nformas\r\nformat\r\nformation\r\nformbar\r\nformel\r\nformell\r\nformen\r\nformer\r\nformge\r\nformgivare\r\nformgivning\r\nformidabel\r\nformlig\r\nformligen\r\nformplattor\r\nformsak\r\nformulera\r\nformulerar\r\nformulering\r\nformulär\r\nforn\r\nforna\r\nfornlämning\r\nfornminne\r\nforntid\r\nforntida\r\nforntiden\r\nfors\r\nforsa\r\nforsar\r\nforsarnas\r\nforsars\r\nforska\r\nforskande\r\nforskar\r\nforskare\r\nforskning\r\nforsla\r\nforslar\r\nfort\r\nfortare\r\nfortbestå\r\nfortbestånd\r\nfortbildning\r\nforte\r\nfortfara\r\nfortfarande\r\nfortgå\r\nfortgående\r\nfortgår\r\nfortkörare\r\nfortkörning\r\nfortleva\r\nfortlöpa\r\nfortlöpande\r\nfortplanta\r\nfortplantar\r\nfortplantning\r\nfortplantningsorgan\r\nfortsatt\r\nfortsatte\r\nfortskaffningsmedel\r\nfortskrida\r\nfortskridande\r\nfortskrider\r\nfortsätt\r\nfortsätta\r\nfortsätter\r\nfortsättning\r\nfortsättningen\r\nfortsättningsvis\r\nforum\r\nforward\r\nfosfat\r\nfosfor\r\nfossil\r\nfossing\r\nfoster\r\nfosterbarn\r\nfosterförälder\r\nfosterhem\r\nfosterjord\r\nfosterland\r\nfostra\r\nfostrades\r\nfostran\r\nfostrar\r\nfostras\r\nfot\r\nfotar\r\nfotbeklädnad\r\nfotboll\r\nfotdon\r\nfoten\r\nfotfolk\r\nfotfäste\r\nfotgängare\r\nfotjos\r\nfotklädsel\r\nfotled\r\nfotnot\r\nfoto\r\nfotogen\r\nfotograf\r\nfotografera\r\nfotograferar\r\nfotografering\r\nfotografi\r\nfotokopia\r\nfoton\r\nfotosättning\r\nfotspår\r\nfotsteg\r\nfotterapeut\r\nfotvårdsspecialist\r\nfoxterrier\r\nfrack\r\nfradga\r\nfradgan\r\nfragil\r\nfragment\r\nfragmentera\r\nfragmentering\r\nfrakt\r\nfrakta\r\nfraktar\r\nfraktion\r\nfraktur\r\nfralla\r\nfram\r\nframbar\r\nframbringa\r\nframbringade\r\nframbringar\r\nframburet\r\nframburit\r\nframbär\r\nframbära\r\nframbäras\r\nframbärs\r\nframdeles\r\nframfart\r\nframflytta\r\nframfusig\r\nframföda\r\nframför\r\nframföra\r\nframförallt\r\nframförande\r\nframförde\r\nframfötterna\r\nframgent\r\nframgick\r\nframgå\r\nframgång\r\nframgångar\r\nframgångsrik\r\nframgår\r\nframhjul\r\nframhålla\r\nframhåller\r\nframhärda\r\nframhärdade\r\nframhärdar\r\nframhäva\r\nframhäver\r\nframhävt\r\nframifrån\r\nframkalla\r\nframkallar\r\nframkallning\r\nframkasta\r\nframkastar\r\nframklingar\r\nframkomlig\r\nframkommer\r\nframlagd\r\nframliden\r\nframlägga\r\nframlägger\r\nframläggning\r\nframlänges\r\nframmarsch\r\nframme\r\nframryckning\r\nframräcka\r\nframsida\r\nframskjuten\r\nframskrida\r\nframskriden\r\nframskrider\r\nframsteg\r\nframstjärt\r\nframstupa\r\nframstå\r\nframstående\r\nframstår\r\nframställa\r\nframställande\r\nframställare\r\nframställer\r\nframställning\r\nframställs\r\nframstöt\r\nframsynt\r\nframsäte\r\nframtagning\r\nframtand\r\nframtid\r\nframtida\r\nframtiden\r\nframtidens\r\nframtids\r\nframtidsdag\r\nframtidshopp\r\nframtidstro\r\nframtill\r\nframtoning\r\nframträda\r\nframträdande\r\nframträder\r\nframträngande\r\nframtränger\r\nframtvinga\r\nframtvingar\r\nframvälla\r\nframväller\r\nframåt\r\nframåtanda\r\nframåtböjd\r\nframåtgående\r\nframåtskridande\r\nframöver\r\nfrank\r\nfrankerar\r\nfrans\r\nfransk\r\nfranska\r\nfranskbröd\r\nfransman\r\nfransyska\r\nfrappant\r\nfrapperad\r\nfrapperande\r\nfrapperar\r\nfras\r\nfrasar\r\nfraser\r\nfrasig\r\nfrasigt\r\nfraternisera\r\nfred\r\nfreda\r\nfredag\r\nfredens\r\nfredlig\r\nfredlös\r\nfredshärskare\r\nfredsplikt\r\nfredstid\r\nfreestyle\r\nfrejdig\r\nfrekvens\r\nfrekvent\r\nfrenetisk\r\nfresta\r\nfrestad\r\nfrestades\r\nfrestande\r\nfrestar\r\nfrestaren\r\nfrestarens\r\nfrestas\r\nfrestelse\r\nfrestelsen\r\nfrestelsens\r\nfrestelser\r\nfrestelserna\r\nfri\r\nfria\r\nfriad\r\nfriar\r\nfriare\r\nfrias\r\nfrid\r\nfridag\r\nfriden\r\nfridens\r\nfridfull\r\nfridfullhet\r\nfridfullt\r\nfridlyser\r\nfridlöst\r\nfrids\r\nfridsam\r\nfridsamma\r\nfridsfurste\r\nfridsfursten\r\nfridsförbund\r\nfridsälla\r\nfrige\r\nfriger\r\nfriggebod\r\nfrigid\r\nfrigiven\r\nfrigivne\r\nfrigjord\r\nfrigjort\r\nfrigör\r\nfrigöra\r\nfrigörs\r\nfrihandel\r\nfriherre\r\nfrihet\r\nfriheten\r\nfrihetens\r\nfrihetsberöva\r\nfrihetsberövad\r\nfrihetsbrev\r\nfrihetsrop\r\nfriidrott\r\nfrikadeller\r\nfrikallad\r\nfrikallar\r\nfrikort\r\nfrikostig\r\nfrikostighet\r\nfriktion\r\nfrikyrka\r\nfrikyrklig\r\nfrikänd\r\nfrikänna\r\nfrikänner\r\nfriköpa\r\nfriköper\r\nfriköps\r\nfriköpt\r\nfriköpta\r\nfrilans\r\nfrilla\r\nfriluftsområde\r\nfriläge\r\nfrilägga\r\nfrimodig\r\nfrimodighet\r\nfrimodigt\r\nfrimurare\r\nfrimärke\r\nfrimärkssamlare\r\nfrireligiös\r\nfrisera\r\nfrisinnad\r\nfrisk\r\nfriska\r\nfriskhet\r\nfriskintyg\r\nfrisksportare\r\nfriskt\r\nfriskus\r\nfrisläppa\r\nfrisläpper\r\nfrispråkig\r\nfrissa\r\nfrist\r\nfristad\r\nfristående\r\nfriställd\r\nfriställer\r\nfrisyr\r\nfrisäg\r\nfrisätta\r\nfrisör\r\nfritagen\r\nfritar\r\nfriterar\r\nfritid\r\nfritidsgård\r\nfritidshem\r\nfritidshus\r\nfritidsnämnd\r\nfritidsresenär\r\nfritis\r\nfritt\r\nfritänkande\r\nfrivillig\r\nfrivilliga\r\nfrivilligt\r\nfrodas\r\nfrodig\r\nfrom\r\nfromma\r\nfromme\r\nfromt\r\nfront\r\nfrossa\r\nfrossar\r\nfrossare\r\nfrost\r\nfrostar\r\nfrostig\r\nfrotté\r\nfru\r\nfruga\r\nfrugal\r\nfrugan\r\nfrukost\r\nfrukt\r\nfrukta\r\nfruktad\r\nfruktan\r\nfruktans\r\nfruktansvärd\r\nfruktansvärda\r\nfruktansvärt\r\nfruktar\r\nfruktas\r\nfruktat\r\nfruktbar\r\nfruktbärande\r\nfrukten\r\nfrukter\r\nfruktlös\r\nfruktlöst\r\nfruktsam\r\nfruktsamhet\r\nfruktsamma\r\nfruktträd\r\nfruntimmer\r\nfruntimmersveckan\r\nfrusen\r\nfruset\r\nfrusit\r\nfrusna\r\nfrusne\r\nfrustar\r\nfrustration\r\nfrustrerad\r\nfryntlig\r\nfrys\r\nfrysa\r\nfryser\r\nfryst\r\nfråga\r\nfrågade\r\nfrågan\r\nfrågande\r\nfrågar\r\nfrågat\r\nfrågeformulär\r\nfrågeställning\r\nfrågetecken\r\nfrågor\r\nfrågorna\r\nfrågvis\r\nfrån\r\nfrånfälla\r\nfrångå\r\nfrånhända\r\nfrånsett\r\nfrånskild\r\nfrånskilda\r\nfrånstötande\r\nfrånta\r\nfråntaga\r\nfråntogs\r\nfrånvara\r\nfrånvarande\r\nfrånvaro\r\nfräck\r\nfräckis\r\nfräckt\r\nfräknar\r\nfräknig\r\nfräls\r\nfrälsa\r\nfrälsad\r\nfrälsande\r\nfrälsare\r\nfrälsarefamnen\r\nfrälsaren\r\nfrälsarens\r\nfrälsares\r\nfrälsarhand\r\nfrälsarhänder\r\nfrälsarkonung\r\nfrälsarkrans\r\nfrälsarmakt\r\nfrälsarnamnet\r\nfrälsat\r\nfrälser\r\nfrälsning\r\nfrälsningen\r\nfrälsningens\r\nfrälsnings\r\nFrälsningsarmén\r\nfrälsningsbud\r\nfrälsningshär\r\nfrälsningsklippa\r\nfrälsningssång\r\nfrälsningsundren\r\nfrälst\r\nfrälsta\r\nfrälstas\r\nfrälste\r\nfrämja\r\nfrämjande\r\nfrämjar\r\nfrämling\r\nfrämlingar\r\nfrämlingarnas\r\nfrämlingars\r\nfrämlingsfientlighet\r\nfrämlingskap\r\nfrämlingskapets\r\nfrämlingsland\r\nfrämlingslandet\r\nfrämlingspass\r\nfrämlingstiden\r\nfrämmande\r\nfrämre\r\nfrämst\r\nfrämsta\r\nfrän\r\nfrände\r\nfränder\r\nfrändskap\r\nfränt\r\nfräs\r\nfräsare\r\nfräsch\r\nfräschar\r\nfräschhet\r\nfräscht\r\nfräser\r\nfräsig\r\nfräsigt\r\nfrätande\r\nfräter\r\nfrö\r\nfröet\r\nfröjd\r\nfröjda\r\nfröjdar\r\nfröjdas\r\nfröjdefullt\r\nfröjdeland\r\nfröjden\r\nfröjder\r\nfröjdernas\r\nfröjdes\r\nfröjdesal\r\nfröjdesalen\r\nfröjdfull\r\nfröjdfullt\r\nfröken\r\nfrömjöl\r\nfrön\r\nfrös\r\nfuffens\r\nfukt\r\nfukta\r\nfuktar\r\nfuktig\r\nfuktiga\r\nfuktigt\r\nful\r\nfula\r\nfulast\r\nfuling\r\nfull\r\nfulla\r\nfullaste\r\nfullbokad\r\nfullborda\r\nfullbordad\r\nfullbordades\r\nfullbordan\r\nfullbordande\r\nfullbordar\r\nfullbordas\r\nfullbordat\r\nfullfjädrad\r\nfullfölja\r\nfullföljande\r\nfullföljdshänvisning\r\nfullföljer\r\nfullgjorde\r\nfullgod\r\nfullgången\r\nfullgör\r\nfullgöra\r\nfullhet\r\nfullklang\r\nfullkomlig\r\nfullkomlighet\r\nfullkomligt\r\nfullkomnad\r\nfullkomnar\r\nfullkomnas\r\nfullkomnat\r\nfullkomning\r\nfullkorn\r\nfullmakt\r\nfullmakten\r\nfullmatad\r\nfullmåne\r\nfullmånen\r\nfullmäktig\r\nfullmäktige\r\nfullo\r\nfullpackat\r\nfullproppad\r\nfullsatt\r\nfullskriven\r\nfullständig\r\nfullständigt\r\nfullt\r\nfulltalig\r\nfullträff\r\nfullvuxen\r\nfullvärdig\r\nfullvärdigt\r\nfullända\r\nfulländad\r\nfulländade\r\nfulländades\r\nfulländat\r\nfulländning\r\nfullödig\r\nfulsnygg\r\nfult\r\nfumla\r\nfumlande\r\nfumlar\r\nfumlig\r\nfundament\r\nfundamental\r\nfundamentalist\r\nfundera\r\nfunderade\r\nfunderande\r\nfunderar\r\nfunderat\r\nfundering\r\nfunderingar\r\nfundersam\r\nfundersamt\r\nfungera\r\nfungerar\r\nfunka\r\nfunkar\r\nfunkis\r\nfunktion\r\nfunktionalism\r\nfunktionell\r\nfunktionsduglig\r\nfunktionär\r\nfunnen\r\nfunnet\r\nfunnit\r\nfunnits\r\nfuntad\r\nfur\r\nfura\r\nfurir\r\nfurstar\r\nfurstars\r\nfurste\r\nfursten\r\nfurstens\r\nfurstinna\r\nfurstlig\r\nfuru\r\nfuruskogens\r\nfusion\r\nfusk\r\nfuska\r\nfuskar\r\nfuskjobb\r\nfuttig\r\nfuturistisk\r\nfuturum\r\nfy\r\nfyll\r\nfylla\r\nfyllas\r\nfyllbult\r\nfylld\r\nfyllda\r\nfyllde\r\nfylldes\r\nfyller\r\nfylleri\r\nfyllerist\r\nfyllevatten\r\nfyllig\r\nfyllning\r\nfyllo\r\nfylls\r\nfyllt\r\nfyllts\r\nfynd\r\nfyndar\r\nfyndig\r\nfyndighet\r\nfyr\r\nfyra\r\nfyrbent\r\nfyrbåk\r\nfyrdubbelt\r\nfyrhörning\r\nfyrkant\r\nfyrkantig\r\nfyrsiding\r\nfyrtio\r\nfyrtionde\r\nfyrverkeri\r\nfysik\r\nfysikalisk\r\nfysiologisk\r\nfysioterapi\r\nfysisk\r\nfysiskt\r\nfå\r\nfåfäng\r\nfåfängligt\r\nfåfängt\r\nfågel\r\nfågelhärar\r\nfågeln\r\nfågelns\r\nfågelropen\r\nfågels\r\nfågelskådare\r\nfågelsång\r\nfågelsången\r\nfåglar\r\nfåglarna\r\nfåglars\r\nfåkunnig\r\nfåle\r\nfåll\r\nfålla\r\nfållan\r\nfållar\r\nfån\r\nfåne\r\nfång\r\nfånga\r\nfångad\r\nfångar\r\nfångas\r\nfångat\r\nfångdräkt\r\nfånge\r\nfången\r\nfångenskap\r\nfångkedja\r\nfångna\r\nfångne\r\nfångst\r\nfångstgrop\r\nfångstgropar\r\nfångvaktare\r\nfånig\r\nfåntratt\r\nfåordig\r\nfår\r\nfåra\r\nfårad\r\nfårahjord\r\nfåraktig\r\nfårat\r\nfåren\r\nfåret\r\nfårhjord\r\nfårhjordar\r\nfårhjorden\r\nfårklippning\r\nfårskalle\r\nfås\r\nfåtal\r\nfåtaliga\r\nfåtaligt\r\nfått\r\nfåtölj\r\nfä\r\nfäder\r\nfäderna\r\nfädernas\r\nfäderne\r\nfädernesland\r\nfäders\r\nfägring\r\nfähund\r\nfäkta\r\nfäktar\r\nfäktning\r\nfälg\r\nfäll\r\nfälla\r\nfällande\r\nfällas\r\nfällde\r\nfälldes\r\nfäller\r\nfält\r\nfältassistent\r\nfälten\r\nfältet\r\nfältherre\r\nfälthöns\r\nfängelse\r\nfängsel\r\nfängsla\r\nfängslad\r\nfängslade\r\nfängslande\r\nfängslar\r\nfängslas\r\nfängslat\r\nfängslats\r\nfänrik\r\nfärd\r\nfärdas\r\nfärde\r\nfärden\r\nfärdens\r\nfärdig\r\nfärdiga\r\nfärdighet\r\nfärdigställa\r\nfärdigställer\r\nfärdigt\r\nfärdledare\r\nfärdmedel\r\nfärdriktning\r\nfärdtjänst\r\nfärdväg\r\nfärg\r\nfärga\r\nfärgad\r\nfärgade\r\nfärgar\r\nfärgas\r\nfärgat\r\nfärgblind\r\nfärgen\r\nfärger\r\nfärgerna\r\nfärgglad\r\nfärggrann\r\nfärghandel\r\nfärglägga\r\nfärglägger\r\nfärglös\r\nfärglöst\r\nfärgning\r\nfärgspektra\r\nfärgstark\r\nfärgton\r\nfärja\r\nfärre\r\nfärs\r\nfärsk\r\nfärsking\r\nfärskpotatis\r\nfäst\r\nfästa\r\nfästad\r\nfäste\r\nfästen\r\nfäster\r\nfästes\r\nfästet\r\nfästets\r\nfästing\r\nfästman\r\nfästmö\r\nfästning\r\nföd\r\nföda\r\nfödande\r\nfödas\r\nfödd\r\nfödda\r\nfödde\r\nföddes\r\nfödelse\r\nfödelsedag\r\nfödelsedatum\r\nfödelsekontroll\r\nfödelsenummer\r\nfödelsetid\r\nfödelsetimme\r\nföder\r\nfödoämne\r\nföds\r\nfödsel\r\nföga\r\nfögderi\r\nföl\r\nfölj\r\nfölja\r\nföljaktligen\r\nföljande\r\nföljas\r\nföljd\r\nföljde\r\nföljder\r\nföljderna\r\nföljdes\r\nföljdfråga\r\nföljdriktig\r\nföljdriktighet\r\nfölje\r\nföljer\r\nföljes\r\nföljeslagare\r\nföljetong\r\nföljs\r\nföljt\r\nföll\r\nfönster\r\nfönstren\r\nfönstret\r\nför\r\nföra\r\nförakt\r\nförakta\r\nföraktad\r\nföraktar\r\nföraktare\r\nföraktat\r\nföraktfull\r\nföraktlig\r\nföraning\r\nförankra\r\nförankrar\r\nförankring\r\nföranleda\r\nföranledd\r\nföranleder\r\nföranlåten\r\nföranmäla\r\nförare\r\nföraren\r\nförarga\r\nförargad\r\nförargar\r\nförargat\r\nförargelse\r\nförarglig\r\nförarna\r\nförarprov\r\nföras\r\nförband\r\nförbanna\r\nförbannad\r\nförbannar\r\nförbannat\r\nförbannelse\r\nförbannelserna\r\nförbarma\r\nförbarmande\r\nförbarmar\r\nförbarmare\r\nförbaskad\r\nförbaskat\r\nförbehandla\r\nförbehåll\r\nförbehålla\r\nförbehåller\r\nförbehållsam\r\nförbehållslös\r\nförbereda\r\nförberedd\r\nförberedde\r\nförberedelse\r\nförberedelseklass\r\nförbereder\r\nförbi\r\nförbida\r\nförbidan\r\nförbidar\r\nförbifart\r\nförbigående\r\nförbigår\r\nförbinda\r\nförbindelse\r\nförbinder\r\nförbise\r\nförbisedda\r\nförbiseende\r\nförbiser\r\nförbisett\r\nförbistring\r\nförbittrad\r\nförbittrades\r\nförbittring\r\nförbjuda\r\nförbjuden\r\nförbjuder\r\nförbjudet\r\nförbjöd\r\nförblandning\r\nförblekna\r\nförbleknar\r\nförbleknat\r\nförblev\r\nförbli\r\nförblinda\r\nförblindad\r\nförblir\r\nförbliv\r\nförbliva\r\nförblivande\r\nförbliver\r\nförbluffad\r\nförbluffande\r\nförbluffar\r\nförbluffelse\r\nförbländade\r\nförblöder\r\nförborgad\r\nförbrann\r\nförbruka\r\nförbrukar\r\nförbrukare\r\nförbrukning\r\nförbrukningsartikel\r\nförbrutit\r\nförbrylla\r\nförbryllar\r\nförbrytare\r\nförbrytelse\r\nförbrytelser\r\nförbränna\r\nförbrännande\r\nförbränner\r\nförbränning\r\nförbränt\r\nförbrödra\r\nförbröt\r\nförbud\r\nförbund\r\nförbunden\r\nförbundet\r\nförbundets\r\nförbundit\r\nförbunds\r\nförbytt\r\nförbättra\r\nförbättrar\r\nförbättring\r\nförbättringslån\r\nförbön\r\nförbönen\r\nförd\r\nförde\r\nfördel\r\nfördela\r\nfördelaktig\r\nfördelar\r\nfördelning\r\nfördelningen\r\nfördjupa\r\nfördjupad\r\nfördjupar\r\nfördjupning\r\nfördold\r\nfördolda\r\nfördolt\r\nfördom\r\nfördomsfri\r\nfördomsfull\r\nfördra\r\nfördrag\r\nfördraga\r\nfördrager\r\nfördragsam\r\nfördragsamhet\r\nfördragsamma\r\nfördrev\r\nfördriv\r\nfördriva\r\nfördriven\r\nfördriver\r\nfördrivet\r\nfördrivit\r\nfördröja\r\nfördröjer\r\nfördröjning\r\nfördubbla\r\nfördubblar\r\nfördubblas\r\nfördubbling\r\nfördummar\r\nfördunkla\r\nfördyrad\r\nfördämning\r\nfördärv\r\nfördärva\r\nfördärvad\r\nfördärvar\r\nfördärvat\r\nfördärvet\r\nfördöljas\r\nfördöljer\r\nfördöma\r\nfördömande\r\nfördömd\r\nfördömelse\r\nfördömer\r\nföre\r\nförebild\r\nförebrå\r\nförebråelse\r\nförebrår\r\nförebud\r\nförebygga\r\nförebyggande\r\nförebygger\r\nförebåda\r\nförebådar\r\nföredra\r\nföredrag\r\nföredrar\r\nföredöme\r\nföredömen\r\nföredömlig\r\nförefalla\r\nförefaller\r\nföreföll\r\nföreger\r\nföregripa\r\nföregriper\r\nföregrips\r\nföregående\r\nföregångare\r\nföregår\r\nförehavande\r\nförekomma\r\nförekommer\r\nförekomst\r\nförelagt\r\nföreligga\r\nföreliggande\r\nföreligger\r\nföreläggande\r\nförelägger\r\nföreläser\r\nföreläsning\r\nföremål\r\nföremålen\r\nfören\r\nförena\r\nförenad\r\nförenade\r\nförenar\r\nförenas\r\nförenat\r\nförening\r\nförenkla\r\nförenklar\r\nförenkling\r\nförenlig\r\nföresats\r\nföresatser\r\nföreskrift\r\nföreskriva\r\nföreskriver\r\nföreslagit\r\nföreslog\r\nföreslå\r\nföreslår\r\nförespegla\r\nförespeglar\r\nförespegling\r\nförespeglingar\r\nförespråka\r\nförespråkar\r\nförespråkare\r\nförespå\r\nförestod\r\nförestå\r\nförestående\r\nföreståndare\r\nföreståndaren\r\nföreståndarinna\r\nförestår\r\nföreställ\r\nföreställa\r\nföreställer\r\nföreställnig\r\nföreställning\r\nföresvävar\r\nföresätter\r\nföreta\r\nföretag\r\nföretagare\r\nföretagsam\r\nföretagsamhet\r\nföretagshälsovård\r\nföretal\r\nföretar\r\nförete\r\nföreteelse\r\nföreträda\r\nföreträdare\r\nföreträde\r\nföreträder\r\nföreträdesrätt\r\nföreträdesvis\r\nförevigar\r\nförevisa\r\nförevändning\r\nförfader\r\nförfall\r\nförfalla\r\nförfallen\r\nförfaller\r\nförfallodag\r\nförfalska\r\nförfalskad\r\nförfalskar\r\nförfalskning\r\nförfar\r\nförfara\r\nförfarande\r\nförfaren\r\nförfaringssätt\r\nförfatta\r\nförfattar\r\nförfattare\r\nförfattarinna\r\nförfattning\r\nförfina\r\nförfinad\r\nförfining\r\nförflugen\r\nförfluten\r\nförflutit\r\nförflutna\r\nförflyter\r\nförflytta\r\nförflyttar\r\nförflyttning\r\nförfoga\r\nförfogande\r\nförfogar\r\nförfriskning\r\nförfrusen\r\nförfrusit\r\nförfryser\r\nförfrysning\r\nförfrågan\r\nförfrågning\r\nförfrös\r\nförfuskar\r\nförfång\r\nförfäders\r\nförfäkta\r\nförfära\r\nförfärad\r\nförfäran\r\nförfärande\r\nförfärar\r\nförfärdiga\r\nförfärlig\r\nförfärligt\r\nförfölja\r\nförföljandet\r\nförföljde\r\nförföljelse\r\nförföljer\r\nförföll\r\nförför\r\nförföra\r\nförförde\r\nförförisk\r\nförfört\r\nförgasare\r\nförgick\r\nförgiftar\r\nförgiftning\r\nförgjorde\r\nförgjort\r\nförglöm\r\nförglömma\r\nförglömmer\r\nförgrenar\r\nförgriper\r\nförgrund\r\nförgrymmad\r\nförgylla\r\nförgyller\r\nförgå\r\nförgången\r\nförgånget\r\nförgår\r\nförgård\r\nförgårdar\r\nförgås\r\nförgängelsen\r\nförgänglig\r\nförgängliga\r\nförgängligt\r\nförgät\r\nförgäta\r\nförgäten\r\nförgäter\r\nförgätmigej\r\nförgäves\r\nförgör\r\nförgöra\r\nförhala\r\nförhalar\r\nförhand\r\nförhandla\r\nförhandlar\r\nförhandling\r\nförhandsbesked\r\nförhastad\r\nförhatliga\r\nförhatligt\r\nförhinder\r\nförhindra\r\nförhindrad\r\nförhindrar\r\nförhistoria\r\nförhistorisk\r\nförhoppning\r\nförhoppningar\r\nförhoppningarna\r\nförhoppningarnas\r\nförhoppningsfull\r\nförhoppningsvis\r\nförhyrd\r\nförhållande\r\nförhållanden\r\nförhållandet\r\nförhållandevis\r\nförhåller\r\nförhållningssätt\r\nförhårdnad\r\nförhänge\r\nförhärjade\r\nförhärjats\r\nförhärliga\r\nförhärska\r\nförhärskande\r\nförhäver\r\nförhäxa\r\nförhäxad\r\nförhäxat\r\nförhöja\r\nförhöjd\r\nförhöjer\r\nförhöjning\r\nförhör\r\nförhöra\r\nförhöras\r\nförinta\r\nförintade\r\nförintades\r\nförintar\r\nförintas\r\nförintelse\r\nförirra\r\nförivrar\r\nförjagar\r\nförjagas\r\nförkalkning\r\nförkasta\r\nförkastad\r\nförkastar\r\nförkastlig\r\nförklara\r\nförklarad\r\nförklarade\r\nförklarande\r\nförklarar\r\nförklaras\r\nförklarat\r\nförklarats\r\nförklaring\r\nförklaringar\r\nförklaringen\r\nförklarlig\r\nförklinga\r\nförklingar\r\nförklädd\r\nförklädda\r\nförklädde\r\nförkläde\r\nförklädnad\r\nförklär\r\nförknippa\r\nförknippar\r\nförkommen\r\nförkorta\r\nförkortar\r\nförkortning\r\nförkovra\r\nförkovrar\r\nförkromar\r\nförkroppsligad\r\nförkroppsligar\r\nförkrossad\r\nförkrossade\r\nförkrossande\r\nförkrossat\r\nförkunna\r\nförkunnande\r\nförkunnar\r\nförkunnare\r\nförkunnas\r\nförkunnelse\r\nförkväver\r\nförkyla\r\nförkyld\r\nförkyler\r\nförkylning\r\nförkämpe\r\nförkärlek\r\nförköp\r\nförköpsrätt\r\nförlade\r\nförlag\r\nförlaga\r\nförlagd\r\nförlagt\r\nförlama\r\nförlamad\r\nförlamade\r\nförlamar\r\nförlamas\r\nförlamning\r\nförleda\r\nförledd\r\nförleder\r\nförledning\r\nförleds\r\nförlegad\r\nförlett\r\nförletts\r\nförliden\r\nförlikar\r\nförlikas\r\nförlikning\r\nförlisa\r\nförliser\r\nförlisning\r\nförlita\r\nförlitar\r\nförljugen\r\nförlopp\r\nförlora\r\nförlorad\r\nförlorade\r\nförlorades\r\nförlorar\r\nförlorat\r\nförlossa\r\nförlossad\r\nförlossar\r\nförlossare\r\nförlossaren\r\nförlossas\r\nförlossat\r\nförlossning\r\nförlossningen\r\nförlossnings\r\nförlovad\r\nförlovar\r\nförlovning\r\nförlust\r\nförlusta\r\nförluster\r\nförlustiga\r\nförlåt\r\nförlåta\r\nförlåtelse\r\nförlåtelsen\r\nförlåtelsens\r\nförlåten\r\nförlåter\r\nförlåtit\r\nförlåtna\r\nförlägen\r\nförlägga\r\nförlägger\r\nförläggning\r\nförläna\r\nförlänar\r\nförlänga\r\nförlänger\r\nförlänges\r\nförlängning\r\nförlängt\r\nförlät\r\nförlöjliga\r\nförlöjligar\r\nförlöpa\r\nförlösa\r\nförlöser\r\nförlöst\r\nförmak\r\nförman\r\nförmana\r\nförmaning\r\nförmannen\r\nförmedla\r\nförmedlar\r\nförmedlat\r\nförmedling\r\nförmena\r\nförmenande\r\nförment\r\nförmer\r\nförmera\r\nförmeras\r\nförmiddag\r\nförmiddagen\r\nförmildrande\r\nförminska\r\nförmoda\r\nförmodad\r\nförmodan\r\nförmodar\r\nförmodligen\r\nförmyndare\r\nförmå\r\nförmådde\r\nförmåga\r\nförmån\r\nförmånen\r\nförmånlig\r\nförmår\r\nförmän\r\nförmännen\r\nförmärka\r\nförmäten\r\nförmögen\r\nförmögenhet\r\nförmögna\r\nförmörka\r\nförmörkas\r\nförmörkat\r\nförnamn\r\nförnedra\r\nförnedrade\r\nförnedrande\r\nförnedrar\r\nförnedring\r\nförneka\r\nförnekade\r\nförnekar\r\nförnekat\r\nförnim\r\nförnimma\r\nförnimmas\r\nförnimmelse\r\nförnimmer\r\nförnims\r\nförnuft\r\nförnuftig\r\nförnumstig\r\nförnya\r\nförnyar\r\nförnyare\r\nförnyas\r\nförnyat\r\nförnyelse\r\nförnäm\r\nförnämlig\r\nförnär\r\nförnärmad\r\nförnödenhet\r\nförnöjd\r\nförnöjer\r\nförnöjsam\r\nförolyckas\r\nförolämpa\r\nförolämpad\r\nförolämpade\r\nförolämpar\r\nförolämpning\r\nförord\r\nförorda\r\nförordar\r\nförordna\r\nförordnande\r\nförordnar\r\nförordning\r\nförordningar\r\nförordningen\r\nförorenar\r\nförorening\r\nförorsaka\r\nförorsakar\r\nförort\r\nförorätta\r\nförorättad\r\nförpacka\r\nförpackar\r\nförpackning\r\nförpassa\r\nförpassar\r\nförpassas\r\nförpestar\r\nförpik\r\nförpliktande\r\nförpliktar\r\nförpliktelse\r\nförpläga\r\nförr\r\nförra\r\nförras\r\nförresten\r\nförrgår\r\nförringa\r\nförringar\r\nförrinna\r\nförruttna\r\nförruttnad\r\nförruttnelse\r\nförrycker\r\nförryckt\r\nförrymd\r\nförråd\r\nförråda\r\nförrådas\r\nförrådd\r\nförrådde\r\nförråder\r\nförrådshus\r\nförrädare\r\nförräderi\r\nförrädisk\r\nförrädiskt\r\nförrän\r\nförrätt\r\nförrätta\r\nförrättar\r\nförrättning\r\nförs\r\nförsagd\r\nförsagda\r\nförsagdhet\r\nförsaka\r\nförsakar\r\nförsakelse\r\nförsakelsens\r\nförsamla\r\nförsamlade\r\nförsamlar\r\nförsamlas\r\nförsamlats\r\nförsamling\r\nförsamlingar\r\nförsamlingarna\r\nförsamlingen\r\nförsamlingens\r\nförsamlings\r\nförse\r\nförseelse\r\nförseelser\r\nförsegla\r\nförseglad\r\nförseglade\r\nförseglar\r\nförsegling\r\nförsena\r\nförsenad\r\nförsenar\r\nförsening\r\nförsent\r\nförser\r\nförsiggå\r\nförsiggår\r\nförsigkommen\r\nförsiktig\r\nförsiktighet\r\nförsiktigt\r\nförsitta\r\nförsitter\r\nförsjunker\r\nförskansa\r\nförskingra\r\nförskingrar\r\nförskingring\r\nförskjuta\r\nförskjuten\r\nförskjuter\r\nförskjutit\r\nförskjutning\r\nförskola\r\nförskolelärare\r\nförskoleålder\r\nförskona\r\nförskonar\r\nförskoning\r\nförskott\r\nförskräcka\r\nförskräckelse\r\nförskräcker\r\nförskräcklig\r\nförskräckt\r\nförskräckta\r\nförskärare\r\nförsköna\r\nförskönad\r\nförskönar\r\nförslag\r\nförslagen\r\nförslaget\r\nförslagsvis\r\nförslappning\r\nförslava\r\nförslitning\r\nförslog\r\nförslummas\r\nförsluta\r\nförslutning\r\nförslår\r\nförslöad\r\nförslösa\r\nförslösar\r\nförsmak\r\nförsmå\r\nförsmådd\r\nförsmår\r\nförsmäda\r\nförsmädlig\r\nförsmädligheter\r\nförsmäkta\r\nförsmäktande\r\nförsmäktar\r\nförsnilla\r\nförsnillar\r\nförsommar\r\nförsona\r\nförsonad\r\nförsonade\r\nförsonande\r\nförsonar\r\nförsonare\r\nförsonas\r\nförsonat\r\nförsoning\r\nförsoningen\r\nförsoningens\r\nförsoningsdagen\r\nförsoningsgrund\r\nförsoningstecknet\r\nförsonlig\r\nförsonlighet\r\nförsorg\r\nförsover\r\nförspel\r\nförspilla\r\nförspiller\r\nförspord\r\nförsport\r\nförsprång\r\nförspänt\r\nförst\r\nförsta\r\nförstad\r\nförstahand\r\nförstahandskontrakt\r\nförstasida\r\nförstatligar\r\nförste\r\nförsteg\r\nförstenade\r\nförstening\r\nförstfödd\r\nförstfödde\r\nförstklassig\r\nförstling\r\nförstnämnd\r\nförstod\r\nförstone\r\nförstoppning\r\nförstora\r\nförstorar\r\nförstoring\r\nförströ\r\nförströdd\r\nförströdda\r\nförströelse\r\nförströr\r\nförstummad\r\nförstummas\r\nförstummat\r\nförstå\r\nförstådd\r\nförstådda\r\nförståelig\r\nförståelse\r\nförstånd\r\nförståndig\r\nförståndigt\r\nförstår\r\nförstås\r\nförståsigpåare\r\nförstått\r\nförställa\r\nförstämd\r\nförstämning\r\nförstärk\r\nförstärka\r\nförstärkare\r\nförstärker\r\nförstör\r\nförstöra\r\nförstörd\r\nförstörde\r\nförstörelse\r\nförstöring\r\nförstört\r\nförsumbar\r\nförsumlig\r\nförsumlighet\r\nförsumligt\r\nförsumma\r\nförsummad\r\nförsummar\r\nförsummelse\r\nförsupen\r\nförsurning\r\nförsvaga\r\nförsvagar\r\nförsvagas\r\nförsvann\r\nförsvar\r\nförsvara\r\nförsvarar\r\nförsvarare\r\nförsvarat\r\nförsvarlig\r\nförsvarsadvokat\r\nförsvarsanläggning\r\nförsvarsbyggnad\r\nförsvarsindustri\r\nförsvarslös\r\nförsvarsspelare\r\nförsvarsställning\r\nförsvarsverk\r\nförsvenskar\r\nförsvinna\r\nförsvinnande\r\nförsvinner\r\nförsvunnen\r\nförsvunnit\r\nförsvåra\r\nförsvårar\r\nförsyn\r\nförsyndelsen\r\nförsyndelser\r\nförsynen\r\nförsynens\r\nförsynt\r\nförsångare\r\nförsåt\r\nförsåtlig\r\nförsåvitt\r\nförsäger\r\nförsäkra\r\nförsäkran\r\nförsäkrar\r\nförsäkring\r\nförsäkringsbesked\r\nförsäkringsbolag\r\nförsäkringskassa\r\nförsäkringspremie\r\nförsäkringsrätt\r\nförsäkringsrätten\r\nförsäkringsöverdomstol\r\nförsälja\r\nförsäljare\r\nförsäljning\r\nförsämra\r\nförsämrad\r\nförsämrar\r\nförsämring\r\nförsändelse\r\nförsänkt\r\nförsätta\r\nförsätter\r\nförsök\r\nförsöka\r\nförsöker\r\nförsökskanin\r\nförsöksvis\r\nförsökt\r\nförsörja\r\nförsörjer\r\nförsörjning\r\nförsörjningsplikt\r\nfört\r\nförtager\r\nförtal\r\nförtala\r\nförtalar\r\nförtalets\r\nförtappad\r\nförtappade\r\nförtappat\r\nförtar\r\nförtecken\r\nförteckning\r\nförtegen\r\nförteget\r\nförtext\r\nförtid\r\nförtidspension\r\nförtiga\r\nförtiger\r\nförtjusa\r\nförtjusande\r\nförtjusning\r\nförtjust\r\nförtjänade\r\nförtjänar\r\nförtjänat\r\nförtjänst\r\nförtjänsten\r\nförtjänstfull\r\nförtjänt\r\nförtjänta\r\nförtorkad\r\nförtorkade\r\nförtorkar\r\nförtrampa\r\nförtrampad\r\nförtrampade\r\nförtrampar\r\nförtrampas\r\nförtrampats\r\nförtret\r\nförtreta\r\nförtretad\r\nförtretlig\r\nförtro\r\nförtroende\r\nförtroendefull\r\nförtroendeingivande\r\nförtroendeläkare\r\nförtroendeman\r\nförtroendeuppdrag\r\nförtrogen\r\nförtrogna\r\nförtrogne\r\nförtrolig\r\nförtrolighet\r\nförtrolla\r\nförtrollad\r\nförtrollning\r\nförtror\r\nförtryck\r\nförtrycka\r\nförtryckare\r\nförtryckaren\r\nförtrycker\r\nförtryckets\r\nförtryckt\r\nförtryckta\r\nförtrycktas\r\nförtrycktes\r\nförtrytelse\r\nförträfflig\r\nförträffligt\r\nförtränga\r\nförträngd\r\nförtränger\r\nförtrösta\r\nförtröstan\r\nförtröstar\r\nförtröttas\r\nförtullar\r\nförtur\r\nförtvina\r\nförtvinar\r\nförtvivla\r\nförtvivlad\r\nförtvivlade\r\nförtvivlan\r\nförtvivlans\r\nförtvivlar\r\nförtvivlat\r\nförtydliga\r\nförtydligande\r\nförtydligar\r\nförtäckt\r\nförtälja\r\nförtäljer\r\nförtäljes\r\nförtär\r\nförtära\r\nförtärande\r\nförtärd\r\nförtärs\r\nförtärt\r\nförtätad\r\nförtöja\r\nförtöjer\r\nförtörna\r\nförtörnad\r\nförunderlig\r\nförunderligt\r\nförundersökning\r\nförundrad\r\nförundran\r\nförundras\r\nförunnar\r\nförunnas\r\nförut\r\nförutan\r\nförutbestämt\r\nförutfattad\r\nförutom\r\nförutsagd\r\nförutsagt\r\nförutsatt\r\nförutse\r\nförutsebar\r\nförutseende\r\nförutser\r\nförutsäga\r\nförutsägbar\r\nförutsägelse\r\nförutsäger\r\nförutsätta\r\nförutsätter\r\nförutsättning\r\nförutsättningslös\r\nförutsättningslöst\r\nförutvarande\r\nförvalta\r\nförvaltar\r\nförvaltare\r\nförvaltat\r\nförvaltning\r\nförvaltningsdomstol\r\nförvandla\r\nförvandlad\r\nförvandlar\r\nförvandlas\r\nförvandlat\r\nförvandling\r\nförvandlingens\r\nförvanska\r\nförvanskar\r\nförvar\r\nförvara\r\nförvarad\r\nförvarar\r\nförvaras\r\nförvarat\r\nförvaring\r\nförvaringsbox\r\nförvaringsbyggnad\r\nförvaringslokal\r\nförvaringslåda\r\nförvaringsmöbel\r\nförvaringsrum\r\nförvaringsutrymme\r\nförvarnar\r\nförvarning\r\nförveckling\r\nförverka\r\nförverkar\r\nförverkliga\r\nförverkligar\r\nförvilla\r\nförvillade\r\nförvillande\r\nförvillar\r\nförvillelse\r\nförvirrad\r\nförvirrade\r\nförvirrar\r\nförvirring\r\nförvirringen\r\nförvisa\r\nförvisar\r\nförvisning\r\nförvissa\r\nförvissad\r\nförvissat\r\nförvissnad\r\nförvissnar\r\nförvissning\r\nförvisso\r\nförvisst\r\nförvrida\r\nförvriden\r\nförvridna\r\nförvränga\r\nförvränger\r\nförvuxen\r\nförvåna\r\nförvånad\r\nförvånande\r\nförvånansvärd\r\nförvånansvärt\r\nförvånar\r\nförvånas\r\nförvåning\r\nförväg\r\nförvägra\r\nförvägrar\r\nförväller\r\nförvänd\r\nförvänta\r\nförväntan\r\nförväntans\r\nförväntar\r\nförväntning\r\nförväntningar\r\nförvärra\r\nförvärrar\r\nförvärv\r\nförvärva\r\nförvärvar\r\nförvärvat\r\nförvärvde\r\nförvärvsarbetar\r\nförvärvsarbete\r\nförvärvskälla\r\nförvärvstillstånd\r\nförväxlar\r\nförväxling\r\nföryngrar\r\nföryngring\r\nföråldrad\r\nföråldrat\r\nförångas\r\nförädla\r\nförädlad\r\nförädlar\r\nförädling\r\nförälder\r\nföräldraförsäkring\r\nföräldraledighet\r\nföräldralös\r\nföräldramöte\r\nföräldrapenning\r\nföräldrar\r\nföräldrarnas\r\nförälskad\r\nförälskade\r\nförälskar\r\nförälskelse\r\nföränderlig\r\nförändra\r\nförändrar\r\nförändras\r\nförändrat\r\nförändring\r\nförändringens\r\nförändringsbar\r\nförändringsobenägen\r\nförära\r\nföröda\r\nförödande\r\nförödelse\r\nförödmjuka\r\nförödmjukad\r\nförödmjukar\r\nförödmjukas\r\nförödmjukelse\r\nföröka\r\nförökade\r\nförökar\r\nförökats\r\nförötts\r\nförövar\r\nförövare\r\nfösa\r\nföser\r\nfösning\r\nfött\r\nfötter\r\nfötterna\r\nfötters\r\nfötts\r\ngabardin\r\ngabriel\r\ngadd\r\ngaddar\r\ngaffel\r\ngaffla\r\ngage\r\ngagga\r\ngaggig\r\ngagn\r\ngagna\r\ngagnar\r\ngagnlös\r\ngagnlöst\r\ngal\r\ngala\r\ngalant\r\ngalaterbrevet\r\ngalax\r\ngalej\r\ngalen\r\ngalenpanna\r\ngalenskap\r\ngalenskapare\r\ngalet\r\ngalge\r\ngalghumor\r\ngaliléen\r\ngalileiske\r\ngaljonsbild\r\ngaljonsfigur\r\ngalla\r\ngaller\r\ngalleri\r\ngalleria\r\ngallfeber\r\ngallimatias\r\ngallra\r\ngallrar\r\ngallren\r\ngallskrika\r\ngallskriker\r\ngallsten\r\ngalltjut\r\ngallupundersökning\r\ngalnaste\r\ngalning\r\ngalopp\r\ngalopperar\r\ngalosch\r\ngalt\r\ngalvaniserar\r\ngalär\r\ngam\r\ngame\r\ngamens\r\ngamla\r\ngamlas\r\ngamle\r\ngamles\r\ngamling\r\ngammal\r\ngammaldags\r\ngammaldans\r\ngammalmodig\r\ngammalt\r\ngamman\r\ngangster\r\nganska\r\ngap\r\ngapa\r\ngapande\r\ngapar\r\ngapets\r\ngaphals\r\ngapig\r\ngapskratt\r\ngapskratta\r\ngarage\r\ngarant\r\ngarantera\r\ngaranterar\r\ngaranti\r\ngarantibevis\r\ngard\r\ngarde\r\ngardera\r\ngarderad\r\ngarderar\r\ngarderob\r\ngardin\r\ngardinerna\r\ngarn\r\ngarnera\r\ngarnerar\r\ngarnet\r\ngarnison\r\ngarnityr\r\ngarv\r\ngarva\r\ngarvad\r\ngarvar\r\ngas\r\ngasa\r\ngasbinda\r\ngasellen\r\ngaseller\r\ngaska\r\ngasmask\r\ngasol\r\ngassar\r\ngast\r\ngasta\r\ngastkramande\r\ngastkramar\r\ngastkramning\r\ngastronomisk\r\ngata\r\ngatan\r\ngatans\r\ngatflicka\r\ngatlykta\r\ngator\r\ngatornas\r\ngatsten\r\ngatuflicka\r\ngatukonst\r\ngatustrider\r\ngav\r\ngavel\r\ngavs\r\nge\r\ngebit\r\ngedigen\r\ngediget\r\ngegga\r\ngeggig\r\ngehör\r\ngelé\r\ngelike\r\ngem\r\ngemen\r\ngemensam\r\ngemensamma\r\ngemensamt\r\ngemenskap\r\ngemenskapen\r\ngemenskapens\r\ngemytlig\r\ngemål\r\ngen\r\ngenant\r\ngenast\r\ngendarm\r\ngener\r\ngenerad\r\ngeneral\r\ngeneralförsamling\r\ngeneraliserar\r\ngeneralisering\r\ngeneralkonsul\r\ngeneralplan\r\ngeneralrepetition\r\ngeneralsekreterare\r\ngenerande\r\ngenerar\r\ngeneration\r\ngenerationen\r\ngenerationens\r\ngenerationer\r\ngenerator\r\ngenerell\r\ngenerella\r\ngenerellt\r\ngenerera\r\ngenerisk\r\ngenerositet\r\ngenerös\r\ngenetisk\r\ngengångare\r\ngengäld\r\ngengälda\r\ngeni\r\ngenial\r\ngenialisk\r\ngeniförklarar\r\ngeniknöl\r\ngenitalier\r\ngenitiv\r\ngenljuda\r\ngenmäla\r\ngenmäle\r\ngennesarets\r\ngenom\r\ngenomarbetar\r\ngenomblöta\r\ngenomborra\r\ngenomborrade\r\ngenomborrat\r\ngenombrott\r\ngenombryter\r\ngenomdriva\r\ngenomdriver\r\ngenomdränk\r\ngenomfart\r\ngenomfrälst\r\ngenomför\r\ngenomföra\r\ngenomförbart\r\ngenomgick\r\ngenomgripande\r\ngenomgående\r\ngenomgång\r\ngenomgår\r\ngenomklappning\r\ngenomkörare\r\ngenomled\r\ngenomlida\r\ngenomlyst\r\ngenomrutten\r\ngenomskinlig\r\ngenomskåda\r\ngenomskådar\r\ngenomskärning\r\ngenomslag\r\ngenomslagskraft\r\ngenomsnitt\r\ngenomsnittlig\r\ngenomströmma\r\ngenomströmmad\r\ngenomströmning\r\ngenomsynlig\r\ngenomsyrar\r\ngenomsöka\r\ngenomsöker\r\ngenomtränga\r\ngenomträngande\r\ngenomträngd\r\ngenomtränger\r\ngenomtvinga\r\ngenomtänkt\r\ngenre\r\ngenrep\r\ngenskjuter\r\ngenstridig\r\ngensvar\r\ngentemot\r\ngentil\r\ngentjänst\r\ngentleman\r\ngenuin\r\ngenuinitet\r\ngenus\r\ngenväg\r\ngeografi\r\ngeologi\r\ngeometri\r\nger\r\ngerilla\r\ngerman\r\nges\r\ngeschäft\r\ngest\r\ngestalt\r\ngestalta\r\ngestaltar\r\ngestaltas\r\ngestalters\r\ngestaltning\r\ngestikulerar\r\ngesäll\r\nget\r\ngeting\r\ngetingbo\r\ngetsemane\r\ngett\r\ngetter\r\ngetterna\r\ngetto\r\ngetts\r\ngetunge\r\ngevär\r\nghetto\r\ngick\r\ngiffel\r\ngift\r\ngifta\r\ngifte\r\ngifter\r\ngiftermål\r\ngiftig\r\ngiftiga\r\ngiftighet\r\ngiftorm\r\ngiftormar\r\ngiftorätt\r\ngiftorättsgods\r\ngiga\r\ngigant\r\ngigantisk\r\ngigantiskt\r\ngikt\r\ngiljotin\r\ngill\r\ngilla\r\ngillande\r\ngillar\r\ngille\r\ngillesstuga\r\ngillestuga\r\ngillrar\r\ngiltig\r\ngiltighet\r\nginst\r\nginväg\r\ngips\r\ngipsar\r\ngir\r\ngira\r\ngiraff\r\ngirar\r\ngirerar\r\ngirig\r\ngirigbuk\r\ngirighet\r\ngiro\r\ngissa\r\ngissar\r\ngissel\r\ngisslan\r\ngissning\r\ngisten\r\ngitarr\r\ngitarren\r\ngitarrist\r\ngitta\r\ngitter\r\ngiv\r\ngiva\r\ngivakt\r\ngivande\r\ngivare\r\ngive\r\ngiven\r\ngiver\r\ngivet\r\ngivetvis\r\ngivit\r\ngivmild\r\ngivmildhet\r\ngivs\r\ngjord\r\ngjorde\r\ngjordes\r\ngjort\r\ngjut\r\ngjuta\r\ngjuter\r\ngjuteri\r\ngjutit\r\nglaciär\r\nglad\r\nglada\r\ngladaste\r\ngladde\r\ngladdes\r\nglade\r\ngladeligen\r\nglader\r\ngladiator\r\ngladligt\r\ngladlynt\r\ngladsint\r\nglam\r\nglamorös\r\nglamour\r\nglana\r\nglans\r\nglansen\r\nglansig\r\nglanslös\r\nglapp\r\nglappar\r\nglappkäft\r\nglas\r\nglasbruk\r\nglashavet\r\nglasklart\r\nglasmästare\r\nglass\r\nglasstrut\r\nglasyr\r\nglasögon\r\nglasögonsnodd\r\nglatt\r\ngled\r\ngles\r\nglesnar\r\nglida\r\nglidande\r\nglider\r\nglidning\r\nglimma\r\nglimmar\r\nglimra\r\nglimrar\r\nglimt\r\nglimta\r\nglin\r\nglindrande\r\nglipa\r\ngliring\r\nglitter\r\nglittra\r\nglittrande\r\nglittrar\r\nglo\r\nglob\r\nglobal\r\nglor\r\ngloria\r\nglorian\r\nglosa\r\nglufsar\r\nglugg\r\nglupsk\r\nglutta\r\nglykol\r\nglåmig\r\nglåpord\r\ngläd\r\ngläder\r\nglädes\r\nglädja\r\nglädjande\r\nglädjas\r\nglädje\r\nglädjebud\r\nglädjebudet\r\nglädjedag\r\nglädjedagen\r\nglädjefest\r\nglädjeflicka\r\nglädjefyllda\r\nglädjefyllt\r\nglädjekälla\r\nglädjekällor\r\nglädjeljud\r\nglädjelös\r\nglädjen\r\nglädjens\r\nglädjepsalmer\r\nglädjerika\r\nglädjerop\r\nglädjesol\r\nglädjeström\r\nglädjeströmmar\r\nglädjesång\r\nglädjesången\r\nglädjevåg\r\ngläds\r\ngläfsa\r\ngläfser\r\ngläns\r\nglänsa\r\nglänsande\r\nglänser\r\nglänste\r\nglänt\r\nglänta\r\ngläntar\r\ngläntors\r\nglättar\r\nglättig\r\nglöd\r\nglöda\r\nglödande\r\nglödbädden\r\nglödde\r\nglöden\r\nglöder\r\nglödgar\r\nglödhet\r\nglödlampa\r\nglögg\r\nglöm\r\nglömd\r\nglömda\r\nglömde\r\nglömma\r\nglömmas\r\nglömmer\r\nglömsk\r\nglömska\r\nglömskans\r\nglömt\r\ngnabb\r\ngnager\r\ngnata\r\ngnatig\r\ngned\r\ngnetig\r\ngnida\r\ngniden\r\ngnider\r\ngnidig\r\ngnidit\r\ngnissel\r\ngnisslar\r\ngnista\r\ngnistra\r\ngnistrade\r\ngnistrande\r\ngnistrar\r\ngno\r\ngnola\r\ngnolar\r\ngnom\r\ngnor\r\ngnugga\r\ngnuggar\r\ngnutta\r\ngny\r\ngnyr\r\ngnäggar\r\ngnäll\r\ngnälla\r\ngnäller\r\ngnällig\r\ngo\r\ngobeläng\r\ngod\r\ngoda\r\ngodartad\r\ngodas\r\ngodaste\r\ngodbit\r\ngoddag\r\ngoddagens\r\ngode\r\ngodhet\r\ngodhets\r\ngodhjärtad\r\ngoding\r\ngodis\r\ngodkänd\r\ngodkänna\r\ngodkännande\r\ngodkänner\r\ngodmodig\r\ngodo\r\ngods\r\ngodsak\r\ngodsaker\r\ngodsint\r\ngodsägare\r\ngodta\r\ngodtaga\r\ngodtagbar\r\ngodtagbart\r\ngodtar\r\ngodtrogen\r\ngodtycke\r\ngodtycklig\r\ngodtyckligt\r\ngoja\r\ngol\r\ngolf\r\ngolgata\r\ngolgatas\r\ngoliat\r\ngolv\r\ngolvad\r\ngolvar\r\ngolvet\r\ngolvlist\r\ngom\r\ngonorré\r\ngorilla\r\ngorma\r\ngormar\r\ngosa\r\ngosedjur\r\ngosig\r\ngosigt\r\ngosse\r\ngossebarn\r\ngossen\r\nGotland\r\ngott\r\ngottar\r\ngottegris\r\ngottfinnande\r\ngottgör\r\ngottgöra\r\ngottgörelse\r\ngrabb\r\ngrabba\r\ngrace\r\ngracil\r\ngraciös\r\ngrad\r\ngradera\r\ngraderad\r\ngradering\r\ngradvis\r\ngraffiti\r\ngrafik\r\ngrafisk\r\ngrafiskt\r\ngrahamsmjöl\r\ngram\r\ngrammatik\r\ngrammofon\r\ngrammofonskiva\r\ngramse\r\ngran\r\ngranat\r\ngrand\r\ngrandios\r\ngrandiost\r\ngranen\r\ngranit\r\ngrann\r\ngrannar\r\ngrannarna\r\ngranne\r\ngrannfruar\r\ngrannkvinnor\r\ngrannlåt\r\ngrannskap\r\ngranska\r\ngranskad\r\ngranskar\r\ngranskare\r\ngranskning\r\ngrant\r\ngrapefrukt\r\ngratifikation\r\ngratinerar\r\ngratis\r\ngratissaker\r\ngrattar\r\ngrattis\r\ngratulation\r\ngratulera\r\ngratulerar\r\ngratäng\r\ngrav\r\ngravar\r\ngravarna\r\ngravarnas\r\ngravars\r\ngravationsbevis\r\ngraven\r\ngravens\r\ngravera\r\ngraverande\r\ngraverar\r\ngravfält\r\ngravid\r\ngraviditet\r\ngraviditetstest\r\ngravitation\r\ngravlax\r\ngravplats\r\ngravplatser\r\ngravskrift\r\ngravsten\r\ngravyr\r\ngravöl\r\ngray\r\ngredelin\r\ngredelint\r\ngrej\r\ngreja\r\ngrejar\r\ngrejer\r\ngrek\r\ngreken\r\ngreker\r\ngrekerna\r\ngrekisk\r\ngrekiska\r\ngren\r\ngrenar\r\ngrenarna\r\ngrenarnas\r\ngrenen\r\ngrensax\r\ngrenslar\r\ngrensle\r\ngrep\r\ngrepp\r\ngreppa\r\ngreppar\r\ngreppet\r\ngreve\r\ngrift\r\ngriften\r\ngrill\r\ngrillar\r\ngrillkiosk\r\ngrimas\r\ngrimaserar\r\ngrin\r\ngrina\r\ngrinar\r\ngrind\r\ngrinig\r\ngrinolle\r\ngrip\r\ngripa\r\ngripande\r\ngripas\r\ngripbar\r\ngripen\r\ngriper\r\ngripit\r\ngripna\r\ngris\r\ngrisa\r\ngriseri\r\ngrishona\r\ngrisig\r\ngriskött\r\ngrismamma\r\ngro\r\ngroda\r\ngrodd\r\ngroddjur\r\ngrodman\r\ngrodorna\r\ngrodperspektiv\r\ngrogg\r\ngrogrund\r\ngroll\r\ngrop\r\ngropig\r\ngror\r\ngrosshandlare\r\ngrossist\r\ngrotesk\r\ngrotta\r\ngrottmänniska\r\ngrov\r\ngrovarbete\r\ngrovkök\r\ngrovt\r\ngrubbel\r\ngrubbla\r\ngrubblar\r\ngrubblat\r\ngruff\r\ngruffa\r\ngrumlas\r\ngrumlig\r\ngrund\r\ngrunda\r\ngrundar\r\ngrundare\r\ngrundat\r\ngrunden\r\ngrunder\r\ngrundforskning\r\ngrundfärg\r\ngrundfästa\r\ngrundförutsättning\r\ngrundlag\r\ngrundlig\r\ngrundliga\r\ngrundlighet\r\ngrundligt\r\ngrundlurad\r\ngrundlägga\r\ngrundläggande\r\ngrundlägger\r\ngrundlös\r\ngrundmurad\r\ngrundnorm\r\ngrundsats\r\ngrundskola\r\ngrundsyn\r\ngrundval\r\ngrundvatten\r\ngrundämne\r\ngrunka\r\ngrunna\r\ngrunnar\r\ngrupp\r\ngrupparbete\r\ngruppboende\r\ngruppera\r\ngrupperar\r\ngruppering\r\ngruppförsäkring\r\ngrupplivförsäkring\r\ngrus\r\ngrusar\r\ngruset\r\ngruva\r\ngruvar\r\ngruvhål\r\ngruvlig\r\ngry\r\ngryende\r\ngrym\r\ngrymma\r\ngrymmaste\r\ngrymt\r\ngrymtar\r\ngryn\r\ngryning\r\ngryningen\r\ngryningsdaggen\r\ngryningsland\r\ngryningsljus\r\ngryningsljuset\r\ngryr\r\ngryta\r\ngrytlapp\r\ngrytor\r\ngrytorna\r\ngrytt\r\ngrå\r\ngråben\r\ngrådaskig\r\ngrånar\r\ngråsparv\r\ngråsprängd\r\ngråt\r\ngråta\r\ngråtande\r\ngråten\r\ngråtens\r\ngråter\r\ngråtfärdig\r\ngråtit\r\ngråtmild\r\ngrått\r\ngrädda\r\ngräddade\r\ngräddan\r\ngräddar\r\ngrädde\r\ngräddkanna\r\ngräddsnipa\r\ngräl\r\ngräla\r\ngrälar\r\ngrälet\r\ngräll\r\ngräma\r\ngrämelse\r\ngrämelser\r\ngrämer\r\ngränd\r\ngränder\r\ngräns\r\ngränsar\r\ngränser\r\ngränsfall\r\ngränsle\r\ngränslös\r\ngränslösa\r\ngränslöst\r\ngränsområde\r\ngränsvärde\r\ngräs\r\ngräsen\r\ngräsens\r\ngräset\r\ngräsets\r\ngräshoppa\r\ngräshoppan\r\ngräshoppor\r\ngräshopporna\r\ngräsklippare\r\ngräslig\r\ngräslök\r\ngräsmark\r\ngräsmatta\r\ngräsrot\r\ngräsänka\r\ngräsänkling\r\ngräsätande\r\ngrät\r\ngrätten\r\ngräva\r\ngrävde\r\ngräver\r\ngrävling\r\ngrävs\r\ngrävskopa\r\ngrävt\r\ngröda\r\ngrödan\r\ngrön\r\ngröna\r\ngrönaktiga\r\ngröngöling\r\ngrönområde\r\ngrönsak\r\ngrönsaker\r\ngrönsallat\r\ngrönska\r\ngrönskande\r\ngrönskar\r\ngrönskas\r\ngrönskat\r\ngrönt\r\ngröt\r\ngrötig\r\ngrövre\r\ngrövst\r\ngubbe\r\ngubben\r\ngud\r\ngudabarn\r\ngudakraft\r\ngudakärlek\r\ngudalik\r\ngudalära\r\ngudar\r\ngudarna\r\ngudason\r\ngudasonen\r\nguden\r\ngudens\r\ngudfruktig\r\ngudlösa\r\ngudlösas\r\ngudlöse\r\ngudlöses\r\ngudlöst\r\ngudomen\r\ngudomlig\r\ngudomliga\r\ngudomskälla\r\ngudomslåga\r\ngudomsmakt\r\ngudomsmakten\r\nguds\r\ngudsfruktan\r\ngudsförnekare\r\ngudslammets\r\ngudslängtan\r\ngudsman\r\ngudsmannen\r\ngudsordet\r\ngudsrikets\r\ngudstjänst\r\ngudstjänsten\r\ngudstjänstlokal\r\ngudsvinden\r\nguida\r\nguide\r\ngul\r\ngula\r\nguld\r\nguldet\r\nguldgruva\r\nguldgåvors\r\nguldkalven\r\nguldkalvens\r\nguldtacka\r\ngulla\r\ngulleplutt\r\ngullig\r\ngulligt\r\ngullviva\r\ngulna\r\ngulnar\r\ngulsot\r\ngumma\r\ngummi\r\ngummiband\r\ngummisnodd\r\ngump\r\ngumse\r\ngunga\r\ngungande\r\ngungar\r\ngunst\r\ngunstling\r\ngupp\r\nguppa\r\nguppar\r\ngurglar\r\ngurka\r\ngustaviansk\r\nguvernant\r\ngyckel\r\ngyckelmakare\r\ngyckelspel\r\ngyckla\r\ngycklande\r\ngycklare\r\ngylf\r\ngyllene\r\ngyllne\r\ngymnasieskola\r\ngymnasiet\r\ngymnasist\r\ngymnasium\r\ngymnast\r\ngymnastik\r\ngymnastiserar\r\ngympa\r\ngymping\r\ngynekolog\r\ngynna\r\ngynnad\r\ngynnar\r\ngynnare\r\ngynnsam\r\ngytter\r\ngyttja\r\ngyttjig\r\ngå\r\ngående\r\ngågata\r\ngång\r\ngånga\r\ngångare\r\ngångbana\r\ngångbar\r\ngången\r\ngånger\r\ngångjärn\r\ngångna\r\ngångstig\r\ngångtrafikant\r\ngår\r\ngård\r\ngårdagens\r\ngårdar\r\ngårdarna\r\ngården\r\ngårdvar\r\ngås\r\ngåshud\r\ngåsmarsch\r\ngåta\r\ngåtfull\r\ngåtfullhet\r\ngåtor\r\ngåtors\r\ngått\r\ngåva\r\ngåvan\r\ngåvoflod\r\ngåvor\r\ngåvorna\r\ngäck\r\ngäcka\r\ngäckad\r\ngäckade\r\ngädda\r\ngälar\r\ngäld\r\ngäldenär\r\ngäldenären\r\ngäll\r\ngälla\r\ngällande\r\ngällde\r\ngälle\r\ngäller\r\ngällt\r\ngäng\r\ngänga\r\ngängar\r\ngängse\r\ngärde\r\ngärdsgård\r\ngärna\r\ngärning\r\ngärningar\r\ngärningarna\r\ngärningars\r\ngärningsman\r\ngäspar\r\ngäss\r\ngäst\r\ngästa\r\ngästabud\r\ngästar\r\ngästarbetare\r\ngäster\r\ngästfri\r\ngästgivare\r\ngästgivargård\r\ngästgiveri\r\ngästhamn\r\nGästrikland\r\ngästspel\r\ngäststuderande\r\ngöder\r\ngödsel\r\ngödslar\r\ngök\r\ngöl\r\ngöm\r\ngömd\r\ngömde\r\ngömma\r\ngömmer\r\ngöms\r\ngömsle\r\ngömställe\r\ngömt\r\ngör\r\ngöra\r\ngöras\r\ngörbra\r\ngördel\r\ngördlar\r\ngörningen\r\ngöromål\r\ngörs\r\ngös\r\ngöt\r\nGötaland\r\ngöteborgare\r\ngöts\r\ngött\r\nha\r\nhabackuk\r\nhabil\r\nhabituell\r\nhabitus\r\nhack\r\nhacka\r\nhackar\r\nhackat\r\nhacker\r\nhackkyckling\r\nhackspett\r\nhade\r\nhaffa\r\nhaffad\r\nhaffar\r\nhafs\r\nhafsig\r\nhafsverk\r\nhaft\r\nhagar\r\nhage\r\nhagel\r\nhagelgevär\r\nhagga\r\nhaggaj\r\nhaglade\r\nhaglar\r\nhaglet\r\nhaj\r\nhaja\r\nhajar\r\nhaka\r\nhakar\r\nhake\r\nhakkors\r\nhaklapp\r\nhal\r\nhala\r\nhalar\r\nhalka\r\nhalkar\r\nhalkig\r\nhall\r\nHalland\r\nhalleluja\r\nhallfullt\r\nhallick\r\nhallon\r\nhallucination\r\nhallå\r\nhalländsk\r\nhalm\r\nhalmstrå\r\nhals\r\nhalsa\r\nhalsar\r\nhalsband\r\nhalsbloss\r\nhalsbrytande\r\nhalsbränna\r\nhalsduk\r\nhalsfluss\r\nhalsgrop\r\nhalshugger\r\nhalskedja\r\nhalsring\r\nhalssmycke\r\nhalsstarrig\r\nhalstra\r\nhalstrar\r\nhalt\r\nhalta\r\nhaltande\r\nhaltar\r\nhalv\r\nhalva\r\nhalvan\r\nhalvannan\r\nhalvbra\r\nhalvbror\r\nhalvdan\r\nhalvdunkel\r\nhalvdöv\r\nhalverar\r\nhalvfabrikat\r\nhalvfull\r\nhalvfullt\r\nhalvförsäkring\r\nhalvhjärtad\r\nhalvlek\r\nhalvljus\r\nhalvmörker\r\nhalvpension\r\nhalvslummer\r\nhalvsova\r\nhalvstatlig\r\nhalvsular\r\nhalvsyster\r\nhalvt\r\nhalvtid\r\nhalvtimme\r\nhalvtimmes\r\nhalvtom\r\nhalvtomt\r\nhalvvarm\r\nhalvvägs\r\nhalvår\r\nhalvö\r\nhambo\r\nhamburgare\r\nhamburgerkött\r\nhammare\r\nhammarslag\r\nhammarslagen\r\nhamn\r\nhamna\r\nhamnade\r\nhamnanläggning\r\nhamnar\r\nhamnat\r\nhamnen\r\nhamra\r\nhamrar\r\nhamstra\r\nhamstrar\r\nhan\r\nhanar\r\nhand\r\nhandarbete\r\nhandbojor\r\nhandbok\r\nhandboll\r\nhandbroms\r\nhandduk\r\nhandel\r\nhandeldvapen\r\nhandelsblockad\r\nhandelsbod\r\nhandelsplats\r\nhandelsregister\r\nhanden\r\nhandens\r\nhandfallen\r\nhandfast\r\nhandfat\r\nhandflata\r\nhandfull\r\nhandfängsel\r\nhandgemäng\r\nhandgjord\r\nhandgrepp\r\nhandgriplig\r\nhandgången\r\nhandha\r\nhandhar\r\nhandhava\r\nhandhavande\r\nhandikapp\r\nhandikappad\r\nhandikappade\r\nhandikappersättning\r\nhandkanon\r\nhandla\r\nhandlade\r\nhandlag\r\nhandlande\r\nhandlar\r\nhandlare\r\nhandlat\r\nhandled\r\nhandleda\r\nhandledare\r\nhandledning\r\nhandling\r\nhandlingar\r\nhandlingsförlamad\r\nhandlingskraft\r\nhandlingskraftig\r\nhandlingssätt\r\nhandlov\r\nhandlägga\r\nhandlägger\r\nhandlöst\r\nhandpenning\r\nhandplockar\r\nhandräckning\r\nhandrörelse\r\nhandskakning\r\nhandskas\r\nhandske\r\nhandskrift\r\nhandskriven\r\nhandslag\r\nhandstil\r\nhandtag\r\nhandtryckning\r\nhandvändning\r\nhandväska\r\nhane\r\nhangar\r\nhangarfartyg\r\nhangris\r\nhankar\r\nhann\r\nhanne\r\nhans\r\nhantera\r\nhanterar\r\nhantering\r\nhantlangare\r\nhantverk\r\nhantverkare\r\nhantverkaren\r\nhantverkares\r\nhantverkarna\r\nhar\r\nharang\r\nhare\r\nharem\r\nharig\r\nharkla\r\nharklar\r\nharm\r\nharmlös\r\nharmoni\r\nharmoniera\r\nharmonisk\r\nharmynt\r\nharnesk\r\nharpa\r\nharpan\r\nharpoklangen\r\nharpor\r\nharpospel\r\nharposträngar\r\nharpotoner\r\nhart\r\nharts\r\nharv\r\nhasar\r\nhasard\r\nhasardspel\r\nhasch\r\nhaspla\r\nhasselnöt\r\nhast\r\nhasta\r\nhastar\r\nhastig\r\nhastighet\r\nhastigt\r\nhat\r\nhata\r\nhatad\r\nhatar\r\nhatat\r\nhatet\r\nhatets\r\nhatfulla\r\nhatisk\r\nhatt\r\nhattig\r\nhausse\r\nhav\r\nhava\r\nhavande\r\nhavandeskap\r\nhavandeskapspenning\r\nhaven\r\nhavens\r\nhaver\r\nhaverera\r\nhavererar\r\nhaveri\r\nhavet\r\nhavets\r\nhavre\r\nhavregryn\r\nhavremoppe\r\nhavsarm\r\nhavsband\r\nhavsbruset\r\nhavsdjupen\r\nhavsdjur\r\nhavsvik\r\nhearing\r\nheat\r\nhebreerbrevet\r\nhebreiska\r\nhebreiske\r\nhed\r\nheder\r\nhederlig\r\nhederlighet\r\nhederligt\r\nhedern\r\nheders\r\nhedersam\r\nhedersamt\r\nhedersbevisning\r\nhederssak\r\nhedervärd\r\nhedning\r\nhedningar\r\nhedningarna\r\nhedningarnas\r\nhednisk\r\nhedra\r\nhedrar\r\nhej\r\nheja\r\nhejar\r\nhejare\r\nhejd\r\nhejda\r\nhejdar\r\nhejdlösa\r\nhejdlöst\r\nhejdundrande\r\nhejsan\r\nhektar\r\nhektisk\r\nhekto\r\nhel\r\nhela\r\nhelad\r\nhelade\r\nhelande\r\nhelar\r\nhelare\r\nhelas\r\nhelat\r\nhelats\r\nhelbra\r\nhelbutelj\r\nhelförsäkring\r\nhelg\r\nhelga\r\nhelgad\r\nhelgades\r\nhelgar\r\nhelgas\r\nhelgat\r\nhelgd\r\nhelgdag\r\nhelgdagsfrid\r\nhelge\r\nhelgedom\r\nhelgedoms\r\nhelgelse\r\nhelgelsen\r\nhelgen\r\nhelgerna\r\nhelgerån\r\nhelgjuten\r\nhelgon\r\nhelgonen\r\nhelgonens\r\nhelgons\r\nhelgonskara\r\nhelgonskaran\r\nhelgonskarans\r\nhelgsmålsringning\r\nhelhet\r\nhelheten\r\nhelhetssyn\r\nhelhjärtad\r\nhelhjärtat\r\nhelig\r\nheliga\r\nheligas\r\nheligaste\r\nhelige\r\nheliggjord\r\nhelighet\r\nheligheten\r\nhelighetens\r\nhelighets\r\nheligt\r\nhelikopter\r\nheller\r\nhelljus\r\nhellre\r\nhellång\r\nhelnykterhet\r\nhelpension\r\nhelskinnad\r\nhelspänn\r\nhelst\r\nhelt\r\nheltid\r\nheltäckande\r\nheltäckningsmatta\r\nhelvete\r\nhelvetes\r\nhelvetet\r\nhelvetisk\r\nhem\r\nhembiträde\r\nhembränning\r\nhembränt\r\nhembud\r\nhembygd\r\nhembära\r\nhemdator\r\nhemfaller\r\nhemförlova\r\nhemförsäkring\r\nhemförsäljning\r\nhemfört\r\nhemgift\r\nhemgjord\r\nhemhjälp\r\nhemifrån\r\nhemkomnas\r\nhemkomst\r\nhemkomsts\r\nhemkunskap\r\nhemkört\r\nhemlagad\r\nhemland\r\nhemlands\r\nhemlig\r\nhemliga\r\nhemlighet\r\nhemligheten\r\nhemligheter\r\nhemlighetsfull\r\nhemlighetsfullt\r\nhemlighetsmakeri\r\nhemlighus\r\nhemlighålla\r\nhemlighåller\r\nhemligstämpla\r\nhemligstämplar\r\nhemligt\r\nhemlös\r\nhemlöse\r\nhemlöses\r\nhemlöshet\r\nhemma\r\nhemmafru\r\nhemmagjord\r\nhemmahosarbete\r\nhemmahörande\r\nhemman\r\nhemmansägare\r\nhemmaplan\r\nhemmastadd\r\nhemmen\r\nhemmet\r\nhemmets\r\nhemorrojder\r\nhemort\r\nhemsamarit\r\nhemsida\r\nhemsidor\r\nhemsk\r\nhemskillnad\r\nhemskt\r\nhemslöjd\r\nhemspråk\r\nhemspråkslärare\r\nhemspråksträning\r\nhemspråksundervisning\r\nhemställa\r\nhemställer\r\nhemsändning\r\nhemsöka\r\nhemsöker\r\nhemtjänst\r\nhemtrakt\r\nhemtrevlig\r\nhemuppgift\r\nhemvist\r\nhemvårdare\r\nhemväg\r\nhemvägen\r\nhemvändande\r\nhemvärn\r\nhemåt\r\nhenne\r\nhennes\r\nheraldisk\r\nherdar\r\nherdarna\r\nherdars\r\nherde\r\nherden\r\nherdens\r\nherdestav\r\nhereditär\r\nheroin\r\nheroisk\r\nheroiska\r\nherr\r\nherradömet\r\nherrar\r\nherrarnas\r\nherrars\r\nherravälde\r\nherravälden\r\nherraväldet\r\nherre\r\nherrekipering\r\nherreman\r\nherren\r\nherrens\r\nherres\r\nherrgård\r\nherrskap\r\nhertig\r\nhes\r\nhesekiel\r\nhesitation\r\nhesitera\r\nhet\r\nheta\r\nhetare\r\nhetast\r\nhetat\r\nheter\r\nheterogen\r\nhetlevrad\r\nhetlevrade\r\nhetluften\r\nhets\r\nhetsa\r\nhetsar\r\nhetsig\r\nhett\r\nhetta\r\nhette\r\nhibiskus\r\nhicka\r\nhickar\r\nhierarki\r\nhimla\r\nhimlaarvet\r\nhimlabro\r\nhimlafaderns\r\nhimlafästet\r\nhimlaglädjen\r\nhimlakropp\r\nhimlaljusen\r\nhimlaljusens\r\nhimlamålet\r\nhimlaporten\r\nhimlar\r\nhimlaranden\r\nhimlarna\r\nhimlarnas\r\nhimlaron\r\nhimlars\r\nhimlarymder\r\nhimlarymderna\r\nhimlarösters\r\nhimlaskaran\r\nhimlastegen\r\nhimlatroner\r\nhimlavalv\r\nhimlavalvets\r\nhimlavägen\r\nhimlen\r\nhimlens\r\nhimmel\r\nhimmelen\r\nhimmelens\r\nhimmelrik\r\nhimmelrike\r\nhimmelriket\r\nhimmelrikets\r\nhimmels\r\nhimmelsfärdsdag\r\nhimmelshöjd\r\nhimmelsk\r\nhimmelska\r\nhimmelske\r\nhimmelskt\r\nhimmelsljus\r\nhimmelsljuset\r\nhin\r\nhind\r\nhindarna\r\nhinden\r\nhinder\r\nhindersprövning\r\nhindra\r\nhindrade\r\nhindrande\r\nhindrar\r\nhindren\r\nhindret\r\nhingst\r\nhink\r\nhinn\r\nhinna\r\nhinner\r\nhinsides\r\nhipp\r\nhisklig\r\nhisnande\r\nhiss\r\nhissa\r\nhissar\r\nhissnar\r\nhistoria\r\nhistorier\r\nhistorisk\r\nhit\r\nhitkomma\r\nhitom\r\nhitre\r\nhitta\r\nhittade\r\nhittar\r\nhittat\r\nhittegods\r\nhittelön\r\nhittills\r\nhitåt\r\nHIV\r\nhiva\r\nhjord\r\nhjorden\r\nhjort\r\nhjortdjur\r\nhjorten\r\nhjortron\r\nhjul\r\nhjulen\r\nhjälm\r\nhjälp\r\nhjälpa\r\nhjälpare\r\nhjälparen\r\nhjälpas\r\nhjälpen\r\nhjälper\r\nhjälphypotes\r\nhjälpligt\r\nhjälplös\r\nhjälplöshet\r\nhjälplöst\r\nhjälpmedel\r\nhjälpmedelscentral\r\nhjälpreda\r\nhjälpsam\r\nhjälpstation\r\nhjälpt\r\nhjälpte\r\nhjälptelefon\r\nhjältar\r\nhjältarnas\r\nhjälte\r\nhjältedåd\r\nhjältemod\r\nhjältemodig\r\nhjälten\r\nhjältes\r\nhjärna\r\nhjärnan\r\nhjärndöd\r\nhjärnskakning\r\nhjärnskrynklare\r\nhjärnspöke\r\nhjärntvätt\r\nhjärntvätta\r\nhjärta\r\nhjärtan\r\nhjärtans\r\nhjärtas\r\nhjärtat\r\nhjärtats\r\nhjärtedörr\r\nhjärtedörren\r\nhjärtefrid\r\nhjärtegrunden\r\nhjärtelag\r\nhjärtenöd\r\nhjärter\r\nhjärtesorg\r\nhjärtesorgens\r\nhjärtevarm\r\nhjärtevän\r\nhjärtinfarkt\r\nhjärtknipande\r\nhjärtlig\r\nhjärtlighet\r\nhjärtligt\r\nhjärtlös\r\nhjärtskärande\r\nhjärtslag\r\nhjärtstimulator\r\nhjärtvärmen\r\nhjässa\r\nho\r\nhobby\r\nhockey\r\nhoj\r\nhoja\r\nhojta\r\nhojtar\r\nholistisk\r\nholk\r\nholländare\r\nholländsk\r\nholme\r\nhologram\r\nhomeopati\r\nhomofil\r\nhomogen\r\nhomosexuell\r\nhon\r\nhona\r\nhongris\r\nhonhund\r\nhonnör\r\nhonnörsord\r\nhonom\r\nhonorar\r\nhonung\r\nhop\r\nhopa\r\nhopar\r\nhopas\r\nhopbunden\r\nhopen\r\nhopfällbar\r\nhopknådat\r\nhopkok\r\nhopp\r\nhoppa\r\nhoppar\r\nhoppas\r\nhoppats\r\nhoppet\r\nhoppets\r\nhoppfull\r\nhoppfullt\r\nhoppingivande\r\nhopplös\r\nhopplösa\r\nhopplöshet\r\nhopplöst\r\nhopprep\r\nhoppsan\r\nhopsamling\r\nhopslagning\r\nhopsmälta\r\nhopsmältning\r\nhopsättning\r\nhopsömmas\r\nhoptryckt\r\nhora\r\nhorbarn\r\nhord\r\nhorhus\r\nhorisont\r\nhorisontal\r\nhorisontalläge\r\nhorisontell\r\nhorisontellt\r\nhormon\r\nhormonmonster\r\nhorn\r\nhoror\r\nhororna\r\nhoroskop\r\nhorribel\r\nhorunge\r\nhos\r\nhosea\r\nhosianna\r\nhospital\r\nhosta\r\nhostar\r\nhot\r\nhota\r\nhotad\r\nhotade\r\nhotande\r\nhotar\r\nhotas\r\nhotell\r\nhotelse\r\nhotelser\r\nhotfull\r\nhott\r\nhov\r\nhovar\r\nhovdjur\r\nhoven\r\nhovet\r\nhovmäns\r\nhovmästare\r\nhovrätt\r\nhovtång\r\nhuckle\r\nhud\r\nhudar\r\nhuden\r\nhudflänga\r\nhudflänger\r\nhudfärg\r\nhugad\r\nhugg\r\nhugga\r\nhugger\r\nhuggorm\r\nhugnad\r\nhugskott\r\nhugsvala\r\nhugsvalan\r\nhugsvalar\r\nhugsvalaren\r\nhugsvalelse\r\nhuk\r\nhukar\r\nhuld\r\nhuldaste\r\nhuligan\r\nhulka\r\nhull\r\nhuller\r\nhum\r\nhuman\r\nhumanism\r\nhumanistisk\r\nhumanitet\r\nhumanitär\r\nhumbug\r\nhumbugsmakare\r\nhumla\r\nhumle\r\nhumma\r\nhummer\r\nhumor\r\nhumoristisk\r\nhumör\r\nhund\r\nhundkex\r\nhundra\r\nhundradel\r\nhundrafalt\r\nhundrakronorssedel\r\nhundralapp\r\nhundratals\r\nhundring\r\nhundskatt\r\nhundvalp\r\nhundöra\r\nhunger\r\nhungern\r\nhungersnöd\r\nhungersnöden\r\nhungra\r\nhungrade\r\nhungrande\r\nhungrar\r\nhungrig\r\nhungriga\r\nhungrige\r\nhungriges\r\nhunnen\r\nhunnit\r\nhunsar\r\nhur\r\nhurdan\r\nhurra\r\nhurrar\r\nhurså\r\nhurtbulle\r\nhurtig\r\nhurts\r\nhuru\r\nhuruvida\r\nhus\r\nhusbehov\r\nhusbonde\r\nhusbonden\r\nhusbondens\r\nhusdjur\r\nhusen\r\nhusesyn\r\nhuset\r\nhusföreståndarinna\r\nhusgeråd\r\nhushåll\r\nhushålla\r\nhushållar\r\nhushållning\r\nhushållsassistent\r\nhushållsmaskin\r\nhushållspapper\r\nhuslig\r\nhusmanskost\r\nhusmor\r\nhusrannsakan\r\nhusrum\r\nhusse\r\nhustak\r\nhustru\r\nhustrun\r\nhustrutillägg\r\nhusvagn\r\nhusvill\r\nhusägare\r\nhut\r\nhutade\r\nhutlös\r\nhutt\r\nhuttrar\r\nhuv\r\nhuva\r\nhuvud\r\nhuvudavtal\r\nhuvudbonad\r\nhuvudbry\r\nhuvuddel\r\nhuvuddrag\r\nhuvudduk\r\nhuvuden\r\nhuvudet\r\nhuvudfigur\r\nhuvudförhandling\r\nhuvudgärd\r\nhuvudhår\r\nhuvudklädsel\r\nhuvudkudde\r\nhuvudkyrka\r\nhuvudled\r\nhuvudlöst\r\nhuvudman\r\nhuvudmän\r\nhuvudpart\r\nhuvudperson\r\nhuvudprydnad\r\nhuvudsak\r\nhuvudsaklig\r\nhuvudsakligen\r\nhuvudstad\r\nhuvudstupa\r\nhuvudsvål\r\nhuvudvärk\r\nhux\r\nhy\r\nhyacint\r\nhybrid\r\nhybris\r\nhyckel\r\nhyckla\r\nhycklar\r\nhyckleri\r\nhyckleriet\r\nhydda\r\nhyddor\r\nhydraulisk\r\nhyena\r\nhyfs\r\nhyfsad\r\nhyfsat\r\nhygge\r\nhygglig\r\nhygien\r\nhygienisk\r\nhylla\r\nhyllad\r\nhyllar\r\nhyllas\r\nhyllning\r\nhyllningsgärd\r\nhyllningssång\r\nhylsa\r\nhylsnyckel\r\nhymla\r\nhymn\r\nhymner\r\nhynda\r\nhyperkänslig\r\nhypnos\r\nhypotek\r\nhypotes\r\nhyr\r\nhyra\r\nhyresbelopp\r\nhyresgäst\r\nhyresgästförening\r\nhyreshus\r\nhyreskontrakt\r\nhyreslägenhet\r\nhyresnämnd\r\nhyresvärd\r\nhys\r\nhysa\r\nhysch\r\nhyser\r\nhyska\r\nhyss\r\nhyssja\r\nhyssjar\r\nhysteri\r\nhysterisk\r\nhytt\r\nhytta\r\nhytter\r\nhyvel\r\nhyvelbänk\r\nhyvens\r\nhyvlar\r\nhåg\r\nhågad\r\nhågkomst\r\nhåglös\r\nhål\r\nhåla\r\nhålfot\r\nhålighet\r\nhåll\r\nhålla\r\nhållare\r\nhållbar\r\nhållbarhet\r\nhåller\r\nhållet\r\nhållfast\r\nhållhake\r\nhålligång\r\nhållit\r\nhållning\r\nhållplats\r\nhållpunkt\r\nhållt\r\nhålrum\r\nhålslag\r\nhåltimme\r\nhån\r\nhåna\r\nhånad\r\nhånar\r\nhånet\r\nhånfull\r\nhånfullt\r\nhångla\r\nhånglar\r\nhånler\r\nhånskratt\r\nhår\r\nhårband\r\nhårbotten\r\nhård\r\nhårda\r\nhårdaste\r\nhårddisk\r\nhårdför\r\nhårdhandskarna\r\nhårdhjärtad\r\nhårdhudad\r\nhårdhänt\r\nhårding\r\nhårdkokt\r\nhårdna\r\nhårdnackad\r\nhårdnar\r\nhårdsmält\r\nhårdvara\r\nhårfin\r\nhårfint\r\nhårfrisör\r\nhårförlängning\r\nhårig\r\nhårlös\r\nhårnål\r\nhårnålskurva\r\nhårresande\r\nhårsmån\r\nhårstråna\r\nhårt\r\nhårtest\r\nhårtork\r\nhåv\r\nhåvar\r\nhåvor\r\nhäck\r\nhäckar\r\nhäckla\r\nhäda\r\nhädan\r\nhädanefter\r\nhädanfara\r\nhädanfärd\r\nhädanfärden\r\nhädar\r\nhädare\r\nhädaren\r\nhädelse\r\nhädiska\r\nhädiskt\r\nhäfta\r\nhäftar\r\nhäfte\r\nhäftig\r\nhäftigt\r\nhäftplåster\r\nhäftstift\r\nhägg\r\nhägn\r\nhägna\r\nhägnad\r\nhägrar\r\nhägring\r\nhäkta\r\nhäktar\r\nhäkte\r\nhäktet\r\nhäl\r\nhälare\r\nhäleri\r\nhälft\r\nhälften\r\nhäll\r\nhälla\r\nhällen\r\nhäller\r\nhällregn\r\nhällristning\r\nhälsa\r\nhälsad\r\nhälsar\r\nhälsat\r\nhälsenorna\r\nHälsingland\r\nhälsning\r\nhälsningar\r\nhälsningen\r\nhälsobefrämjande\r\nhälsobrunn\r\nhälsodryck\r\nhälsofarlig\r\nhälsoflod\r\nhälsoflöden\r\nhälsohem\r\nhälsokort\r\nhälsokost\r\nhälsomedveten\r\nhälsosam\r\nhälsovådlig\r\nhälsovård\r\nhälsovårdsnämnd\r\nhämma\r\nhämmad\r\nhämmar\r\nhämnad\r\nhämnande\r\nhämnar\r\nhämnas\r\nhämnat\r\nhämnd\r\nhämndens\r\nhämning\r\nhämningslös\r\nhämsko\r\nhämta\r\nhämtar\r\nhämtas\r\nhämtat\r\nhän\r\nhända\r\nhände\r\nhändelse\r\nhändelseförlopp\r\nhändelserik\r\nhänder\r\nhänderna\r\nhänders\r\nhändig\r\nhänför\r\nhänföra\r\nhänförande\r\nhänförd\r\nhänförelse\r\nhänfört\r\nhäng\r\nhänga\r\nhängande\r\nhängare\r\nhängavtal\r\nhängd\r\nhängde\r\nhängdes\r\nhänge\r\nhänger\r\nhängig\r\nhängiven\r\nhängivenhet\r\nhängivna\r\nhängmatta\r\nhängs\r\nhängselbyxor\r\nhängsle\r\nhängsmycke\r\nhängt\r\nhänryckning\r\nhänryckt\r\nhänseende\r\nhänsyn\r\nhänsynsfull\r\nhänsynsfullhet\r\nhänsynslös\r\nhänt\r\nhänvisa\r\nhänvisar\r\nhänvisning\r\nhäpen\r\nhäpenhet\r\nhäpna\r\nhäpnad\r\nhäpnadsväckande\r\nhäpnar\r\nhär\r\nhärad\r\nhärar\r\nhärav\r\nhärbärge\r\nhärbärgera\r\nhärbärgerar\r\nhärd\r\nhärda\r\nhärdad\r\nhärden\r\nhärdig\r\nhärefter\r\nhären\r\nhärförare\r\nhärförleden\r\nhärifrån\r\nhärigenom\r\nhärja\r\nhärjad\r\nhärjar\r\nhärjare\r\nhärjas\r\nhärjats\r\nHärjedalen\r\nhärjning\r\nhärkomst\r\nhärleda\r\nhärlig\r\nhärliga\r\nhärlige\r\nhärlighet\r\nhärligheten\r\nhärlighetens\r\nhärligt\r\nhärma\r\nhärmar\r\nhärmed\r\nhärnere\r\nhärnäst\r\nhärom\r\nhäromdagen\r\nhärrör\r\nhärröra\r\nhärs\r\nhärska\r\nhärskande\r\nhärskar\r\nhärskare\r\nhärskarkravet\r\nhärsken\r\nhärsklysten\r\nhärskna\r\nhärsknar\r\nhärstamma\r\nhärstammade\r\nhärstammar\r\nhärstamning\r\nhärtill\r\nhärva\r\nhärvidlag\r\nhäst\r\nhästarna\r\nhästhov\r\nhästkur\r\nhästsvans\r\nhästunge\r\nhästvagn\r\nhästväg\r\nhätsk\r\nhätska\r\nhätskhet\r\nhätta\r\nhäva\r\nhävd\r\nhävda\r\nhävdar\r\nhävdvunnen\r\nhäver\r\nhäves\r\nhäxa\r\nhäxkraft\r\nhö\r\nhöft\r\nhög\r\nhöga\r\nhögakta\r\nhögaktad\r\nhögaktiv\r\nhögaktningsfullt\r\nhögan\r\nhögarna\r\nhögborg\r\nhögborne\r\nhögdragen\r\nhöge\r\nhöger\r\nhögerhänt\r\nhögerpartiet\r\nhögerpartist\r\nhögfärd\r\nhögfärdig\r\nhögg\r\nhöghus\r\nhöginkomsttagare\r\nhögkvarter\r\nhögljudd\r\nhögljutt\r\nhögmod\r\nhögmodig\r\nhögmässa\r\nhögra\r\nhögre\r\nhögrest\r\nhögröstad\r\nhögskola\r\nhögst\r\nhögsta\r\nhögstadium\r\nhögste\r\nhögstes\r\nhögsäsong\r\nhögt\r\nhögtalare\r\nhögtid\r\nhögtiden\r\nhögtider\r\nhögtidlig\r\nhögtidlighålla\r\nhögtidsdag\r\nhögtidsdagens\r\nhögtidsdräkt\r\nhögtidsdräkten\r\nhögtidskläder\r\nhögtidssal\r\nhögtidsskrud\r\nhögtidssmyckad\r\nhögtlovad\r\nhögtlovade\r\nhögtlovat\r\nhögtrafik\r\nhögtravande\r\nhögtryck\r\nhögtstående\r\nhögvisa\r\nhögväxt\r\nhöj\r\nhöja\r\nhöjas\r\nhöjd\r\nhöjda\r\nhöjdare\r\nhöjden\r\nhöjder\r\nhöjderna\r\nhöjdhopp\r\nhöjdpunkt\r\nhöjer\r\nhöjes\r\nhöjning\r\nhöjs\r\nhök\r\nhölja\r\nhöljas\r\nhöljd\r\nhölje\r\nhöljen\r\nhöljer\r\nhöljs\r\nhöljt\r\nhöljts\r\nhöll\r\nhölls\r\nhöna\r\nhönan\r\nhöns\r\nhönsbarn\r\nhör\r\nhöra\r\nhörapparat\r\nhöras\r\nhörbar\r\nhörcentral\r\nhörd\r\nhörda\r\nhörde\r\nhördes\r\nhörlur\r\nhörn\r\nhörna\r\nhörnsten\r\nhörntand\r\nhörs\r\nhörsal\r\nhörsamma\r\nhörsammar\r\nhörsel\r\nhörseln\r\nhörselskadad\r\nhörsägen\r\nhört\r\nhörts\r\nhösnuva\r\nhöst\r\nhöstas\r\nhöstdagjämning\r\nhösten\r\nhöstens\r\nhöstregn\r\nhötorgskonst\r\nhövdes\r\nhövding\r\nhövlig\r\nhövlighet\r\nhövlighetsvisit\r\ni\r\niaktta\r\niakttaga\r\niakttagande\r\niakttagare\r\niakttagelse\r\niakttagelser\r\niakttar\r\nibland\r\nicke\r\nickelevande\r\nickeverbal\r\nid\r\nidag\r\nidas\r\nide\r\nidé\r\nideal\r\nidealisera\r\nidealisk\r\nidealism\r\nidealist\r\nideell\r\nidel\r\nidelig\r\nideligen\r\nidentifiera\r\nidentifierar\r\nidentifiering\r\nidentifikation\r\nidentisk\r\nidentiska\r\nidentitet\r\nidentitetshandling\r\nidentitetskort\r\nideologi\r\nideologisk\r\nidérik\r\nidiom\r\nidiot\r\nidioter\r\nidioti\r\nidiotisk\r\nidiotiskt\r\nidiotsäker\r\nidissla\r\nidisslar\r\nidka\r\nidkar\r\nID-kort\r\nidog\r\nidol\r\nidrott\r\nidrotta\r\nidrottar\r\nidrottare\r\nidrotten\r\nidrottsman\r\nids\r\nidyll\r\nifall\r\nifatt\r\nifred\r\nifrågasätta\r\nifrågasätter\r\nifrågavarande\r\nifrån\r\niföra\r\niförd\r\nigelkott\r\nigen\r\nigenkänd\r\nigenkännande\r\nigenmulen\r\nigenom\r\nignorera\r\nignorerar\r\nigång\r\nigångsättande\r\nigångsättning\r\nigår\r\nihjäl\r\nihop\r\nihåg\r\nihågkomma\r\nihålig\r\nihållande\r\nihärdig\r\nikapp\r\nikläda\r\niklär\r\nikon\r\nikväll\r\nil\r\nila\r\nilande\r\nilar\r\nilla\r\nillaluktande\r\nillamående\r\nillasinnad\r\nillasmakande\r\nillavarslande\r\nillbatting\r\nilldåd\r\nillegal\r\nillgärning\r\nillgärningsman\r\nillistig\r\nillusion\r\nillusionist\r\nillusorisk\r\nillustration\r\nillustrera\r\nillustrerar\r\nillvilja\r\nillvillig\r\nillvilliga\r\nillvilligt\r\nilning\r\nilsk\r\nilska\r\nilsken\r\nimage\r\nimbecill\r\nimitation\r\nimitera\r\nimiterar\r\nimma\r\nimmanuel\r\nimmig\r\nimmigrant\r\nImmigrantinstitutet\r\nimmigration\r\nimmigrera\r\nimmigrerar\r\nimmun\r\nimmunisera\r\nimmunitet\r\nimperativ\r\nimperfekt\r\nimperialism\r\nimperialist\r\nimperium\r\nimpertinent\r\nimplementera\r\nimplicit\r\nimponera\r\nimponerande\r\nimponerar\r\nimpopulär\r\nimport\r\nimportera\r\nimporterar\r\nimposant\r\nimpotens\r\nimpregnerar\r\nimproduktiv\r\nimprovisera\r\nimproviserar\r\nimpuls\r\nimpulser\r\nimpulsiv\r\nimpulsiva\r\nimpulsivt\r\nin\r\ninackordering\r\ninackorderingstillägg\r\ninadekvat\r\ninaktiv\r\ninaktuell\r\ninalles\r\ninandas\r\ninandning\r\ninavel\r\ninbegripa\r\ninbegripen\r\ninbegriper\r\ninberäkna\r\ninberäknad\r\ninberäknat\r\ninbetalningskort\r\ninbilla\r\ninbillar\r\ninbillning\r\ninbilsk\r\ninbiten\r\ninbjuda\r\ninbjudan\r\ninbjudande\r\ninbjuder\r\ninbjöd\r\ninblandad\r\ninblandning\r\ninblick\r\ninbringa\r\ninbringande\r\ninbrott\r\ninbrytning\r\ninbunden\r\ninbyggd\r\ninbyte\r\ninbärga\r\ninbördes\r\ninbördeskrig\r\nincest\r\nincheckning\r\nincident\r\nincitament\r\nindela\r\nindelade\r\nindelar\r\nindelning\r\nindependent\r\nindex\r\nindexreglering\r\nindian\r\nindianer\r\nindicera\r\nindicium\r\nindier\r\nindifferent\r\nindignation\r\nindignerad\r\nindikation\r\nindikator\r\nindikera\r\nindikerar\r\nindirekt\r\nindisk\r\nindivid\r\nindivider\r\nindividualist\r\nindividualister\r\nindividualistiska\r\nindividuell\r\nindoktrinera\r\nindoktrinering\r\nindolent\r\nindragen\r\nindrar\r\nindriva\r\nindrivning\r\nindränka\r\ninducera\r\nindustri\r\nindustriell\r\nineffektiv\r\ninemot\r\ninfall\r\ninfalla\r\ninfaller\r\ninfallsrik\r\ninfallsvinkel\r\ninfam\r\ninfann\r\ninfanteri\r\ninfantil\r\ninfarkt\r\ninfart\r\ninfarten\r\ninfattas\r\ninfattning\r\ninfattningen\r\ninfektera\r\ninfekterad\r\ninfektion\r\ninfektiös\r\ninfiltrerar\r\ninfinitiv\r\ninfinitivmärke\r\ninfinner\r\ninflammation\r\ninflammerad\r\ninflammerade\r\ninflation\r\ninfluens\r\ninfluensa\r\ninfluera\r\ninfluerade\r\ninfluerar\r\ninflytande\r\ninflytelserik\r\ninflyttning\r\ninflöde\r\ninfoga\r\ninfogar\r\ninformation\r\ninformationsblad\r\ninformatör\r\ninformell\r\ninformera\r\ninformerar\r\ninfrastruktur\r\ninfria\r\ninfriar\r\ninfånga\r\ninfödd\r\ninföding\r\ninför\r\ninföra\r\ninförande\r\ninförliva\r\ninförlivar\r\ninförsel\r\ninförskaffa\r\ninförstådd\r\ninga\r\ningalunda\r\ningefära\r\ningen\r\ningendera\r\ningenjör\r\ningenmansland\r\ningenstans\r\ningenting\r\ninger\r\ninget\r\ningick\r\ningift\r\ningiva\r\ningivelse\r\ningivelser\r\ningjuter\r\ningraverade\r\ningrediens\r\ningrep\r\ningrepp\r\ningress\r\ningripa\r\ningripande\r\ningriper\r\ningripit\r\ningrodd\r\ningå\r\ningående\r\ningång\r\ningången\r\ningår\r\ningått\r\ninhalation\r\ninhalera\r\ninhandla\r\ninhemsk\r\ninhibera\r\ninhibition\r\ninhopp\r\ninhoppare\r\ninhuman\r\ninhysa\r\ninhägna\r\ninhägnad\r\ninhägnar\r\ninhämta\r\ninhämtar\r\ninhölja\r\ninhösta\r\ninifrån\r\ninitial\r\ninitiativ\r\ninitiera\r\ninitierad\r\ninjagar\r\ninjektion\r\ninjektionsnål\r\ninjektionsspruta\r\ninjicera\r\ninjicerar\r\ninjicering\r\ninkallar\r\ninkallelseorder\r\ninkapabel\r\ninkarnerad\r\ninkassera\r\ninkasserar\r\ninkasso\r\ninkassobyrå\r\ninkast\r\ninkludera\r\ninkluderar\r\ninkluderat\r\ninklusive\r\ninkognito\r\ninkompetens\r\ninkompetent\r\ninkomplett\r\ninkomst\r\ninkomstbringande\r\ninkomsttagare\r\ninkonsekvent\r\ninkorporera\r\ninkorporerar\r\ninkorrekt\r\ninkräkta\r\ninkräktar\r\ninkräktare\r\ninkubationstid\r\ninkvartera\r\ninkvarterar\r\ninkvartering\r\ninköp\r\ninkörd\r\ninkörning\r\ninkörsport\r\ninlaga\r\ninlagd\r\ninland\r\ninleda\r\ninledande\r\ninleder\r\ninledning\r\ninledningen\r\ninledningsvis\r\ninlemma\r\ninlemmar\r\ninlevelse\r\ninlevelseförmåga\r\ninlines\r\ninlogera\r\ninlopp\r\ninlåst\r\ninlåter\r\ninlägg\r\ninlämning\r\ninlära\r\ninlärda\r\ninlärning\r\ninlösen\r\ninmarsch\r\ninmundiga\r\ninnan\r\ninnandöme\r\ninnanför\r\ninnanmäte\r\ninnantill\r\ninne\r\ninnebar\r\ninneboende\r\ninnebränd\r\ninnebär\r\ninnebära\r\ninnebörd\r\ninnebörden\r\ninnefatta\r\ninnefattar\r\ninneha\r\ninnehav\r\ninnehava\r\ninnehavare\r\ninnehåll\r\ninnehålla\r\ninnehåller\r\ninnehållsförteckning\r\ninnehållslös\r\ninneperson\r\ninnerlig\r\ninnerligt\r\ninnerst\r\ninnersta\r\ninneslut\r\ninnesluta\r\ninneslutas\r\ninnesluten\r\ninneslutning\r\ninneslöt\r\ninnestående\r\ninnevarande\r\ninnevånare\r\ninnovation\r\ninnovativ\r\ninnovatör\r\ninolja\r\ninom\r\ninombords\r\ninomhus\r\ninomhusbad\r\ninordna\r\ninordnar\r\ninpacka\r\ninpackning\r\ninpassa\r\ninprägla\r\ninpränta\r\ninpräntar\r\ninpräntat\r\ninpå\r\ninramning\r\ninrapportera\r\ninrapportering\r\ninre\r\ninreda\r\ninreder\r\ninredning\r\ninregistrera\r\ninregistrerar\r\ninregistrering\r\ninrett\r\ninrikes\r\ninrikta\r\ninriktar\r\ninriktning\r\ninriktningar\r\ninrotad\r\ninrutad\r\ninrymma\r\ninrådan\r\ninräknad\r\ninrätta\r\ninrättade\r\ninrättar\r\ninrättning\r\ninsamling\r\ninsats\r\ninsatslägenhet\r\ninsatt\r\ninse\r\ninsegel\r\ninseglet\r\ninsekt\r\ninsemination\r\ninser\r\ninsett\r\ninsida\r\ninsidan\r\ninsikt\r\ninsikten\r\ninsikter\r\ninsiktsfull\r\ninsinuation\r\ninsinuera\r\ninsinuerar\r\ninsistera\r\ninsisterar\r\ninsjuknandedag\r\ninsjuknar\r\ninsjunken\r\ninsjö\r\ninskeppa\r\ninskjuter\r\ninskolning\r\ninskrift\r\ninskription\r\ninskriver\r\ninskrivning\r\ninskränka\r\ninskränker\r\ninskränkning\r\ninskränkt\r\ninskärpa\r\ninslag\r\ninslumra\r\ninsläppt\r\ninsmickrande\r\ninsnöad\r\ninsomna\r\ninsomnar\r\ninspektera\r\ninspekterar\r\ninspekterat\r\ninspektion\r\ninspektör\r\ninspektörerna\r\ninspelning\r\ninspiration\r\ninspirera\r\ninspirerar\r\ninspruta\r\ninsprutning\r\ninspärrad\r\ninstabil\r\ninstabilitet\r\ninstallation\r\ninstallerar\r\ninstans\r\ninstifta\r\ninstinkt\r\ninstitut\r\ninstitution\r\ninstitutioner\r\ninstruera\r\ninstruerar\r\ninstruktion\r\ninstruktionsbok\r\ninstruktör\r\ninstrument\r\ninstrumentet\r\ninstrumentspelare\r\ninstudera\r\ninställa\r\ninställer\r\ninställning\r\ninställsam\r\ninställsamma\r\ninstämma\r\ninstämmande\r\ninstämmer\r\ninstängd\r\ninsufficiens\r\ninsulin\r\ninsurgent\r\ninsvepa\r\ninsvept\r\ninsyltad\r\ninsyn\r\ninsåg\r\ninsändare\r\ninsätta\r\ninsättning\r\ninta\r\nintaga\r\nintagande\r\nintagen\r\nintagning\r\nintagningspoäng\r\nintakt\r\nintala\r\nintalade\r\nintar\r\ninte\r\nintecknar\r\ninteckning\r\nintegration\r\nintegrera\r\nintegrerar\r\nintegrering\r\nintegritet\r\nintellekt\r\nintellektuell\r\nintelligens\r\nintelligensbefriad\r\nintelligent\r\nintendent\r\nintensifiera\r\nintensifierar\r\nintensifiering\r\nintensitet\r\nintensiv\r\nintention\r\nintentionen\r\nintentioner\r\ninteragera\r\ninteraktion\r\ninteriör\r\ninterkulturell\r\nintermezzo\r\nintermission\r\nintermittent\r\nintern\r\ninterna\r\ninternat\r\ninternationell\r\ninternering\r\ninternet\r\ninternminne\r\ninternordisk\r\ninterpellation\r\ninterpellerar\r\ninterpretation\r\nintervall\r\nintervenerar\r\nintervention\r\nintervju\r\nintervjuar\r\nintervjuundersökning\r\nintet\r\nintets\r\nintill\r\nintilliggande\r\nintim\r\nintog\r\nintolerant\r\nintonation\r\nintressant\r\nintressanta\r\nintresse\r\nintressent\r\nintressera\r\nintresserad\r\nintresserade\r\nintresserar\r\nintrig\r\nintriger\r\nintrigera\r\nintrigerar\r\nintrikat\r\nintroducera\r\nintroducerar\r\nintroduktion\r\nintrospektiv\r\nintrovert\r\nintryck\r\nintrång\r\ninträda\r\ninträde\r\ninträder\r\ninträdesavgift\r\ninträffa\r\ninträffade\r\ninträffar\r\nintuition\r\nintyg\r\nintyga\r\nintygar\r\nintåg\r\nintäkt\r\ninuit\r\ninunder\r\ninuti\r\ninvaderar\r\ninvaggar\r\ninvalid\r\ninvaliditet\r\ninvallning\r\ninvandra\r\ninvandrar\r\ninvandrarbyrå\r\ninvandrare\r\ninvandraren\r\ninvandrarna\r\ninvandring\r\ninvasion\r\ninvecklad\r\ninvecklat\r\ninvektiv\r\ninventarier\r\ninverkan\r\ninverkar\r\ninvers\r\ninvestera\r\ninvesterar\r\ninvestering\r\ninvid\r\ninviger\r\ninvigning\r\ninvigningen\r\ninvigt\r\ninvit\r\ninvitera\r\ninvolvera\r\ninvolverad\r\ninvånarantal\r\ninvånare\r\ninvända\r\ninvände\r\ninvänder\r\ninvändigt\r\ninvändning\r\ninvändningar\r\ninvändningsfri\r\ninvänta\r\ninväntar\r\ninvärtes\r\ninåt\r\ninåtvänd\r\ninälvor\r\ninälvorna\r\ninöva\r\niordningställa\r\niordningställer\r\nIQ\r\nirakier\r\niranier\r\niranska\r\niris\r\nirländsk\r\nironi\r\nironisk\r\nirra\r\nirrar\r\nirrationell\r\nirrelevant\r\nirreversibel\r\nirritation\r\nirritationsmoment\r\nirritera\r\nirriterad\r\nirriterande\r\nirriterar\r\nis\r\nisak\r\nisande\r\nisberg\r\nisbit\r\nisbrytare\r\niscensätter\r\nischias\r\nisen\r\nisfiske\r\nisglass\r\nishall\r\nishockey\r\niskall\r\niskub\r\nislam\r\nisländsk\r\nisolera\r\nisolerad\r\nisolerar\r\nisolering\r\nisop\r\nisrael\r\nisraelisk\r\nisraeliterna\r\nisraels\r\nistadig\r\nister\r\nisterband\r\nistället\r\nistärning\r\nisär\r\nisärtagen\r\nitalienare\r\nitaliensk\r\niteration\r\niterera\r\nitu\r\nity\r\niver\r\nivrade\r\nivrig\r\nivrigt\r\niväg\r\niögonenfallande\r\niögonfallande\r\nja\r\njack\r\njacka\r\njackpot\r\njackpott\r\njade\r\njag\r\njaga\r\njagad\r\njagade\r\njagar\r\njagare\r\njaget\r\njagets\r\njaha\r\njakande\r\njakar\r\njakaranda\r\njakob\r\njakobs\r\njakt\r\njakten\r\njaktkort\r\njaktplan\r\njalusi\r\njamar\r\njamsa\r\njantelag\r\njantelagen\r\njanuari\r\njapan\r\njapaner\r\njapansk\r\njargong\r\njasmin\r\njaspis\r\njaså\r\njava\r\njazz\r\njeans\r\njeep\r\njeppe\r\njeremia\r\njeremiad\r\njeriko\r\njerikos\r\njerusalem\r\njesaja\r\njesajas\r\njesu\r\njesus\r\njesusbarnet\r\njesusnamnet\r\njet\r\njetplan\r\njetset\r\njippo\r\njo\r\njob\r\njobb\r\njobba\r\njobbade\r\njobbar\r\njobbare\r\njobbarkompis\r\njobbat\r\njobbet\r\njobbig\r\njobbigt\r\njobbrotation\r\njobspost\r\njoel\r\njogga\r\njoggar\r\njohannes\r\njohannesbrevet\r\njohannesevangeliet\r\njoker\r\njokk\r\njolle\r\njoller\r\njollra\r\njollrar\r\njona\r\njonatan\r\njonglerar\r\njord\r\njorda\r\njordans\r\njordas\r\njordbit\r\njordbruk\r\njordbrukare\r\njordbruksarbetare\r\njordbävning\r\njordekvalen\r\njordelivets\r\njorden\r\njordens\r\njorderik\r\njorderiks\r\njordfästa\r\njordfäster\r\njordfästning\r\njordgolv\r\njordgubbe\r\njordhålor\r\njordisk\r\njordiska\r\njordiskt\r\njordklot\r\njordlivets\r\njordmån\r\njordnära\r\njordskalv\r\njordskred\r\njordyta\r\njordägare\r\njos\r\njosef\r\njosua\r\njoule\r\njour\r\njourhavande\r\njournal\r\njournalist\r\njovialisk\r\njovialiskt\r\njox\r\njoxa\r\njoxar\r\nju\r\njubel\r\njubelkör\r\njubelrop\r\njubelskörd\r\njubelsvall\r\njubelsång\r\njubelsånger\r\njubelton\r\njubelår\r\njubelåret\r\njubileum\r\njubla\r\njublande\r\njublar\r\njublet\r\njucka\r\njuda\r\njudafolket\r\njudaland\r\njudar\r\njudarna\r\njudarnas\r\njudasbrevet\r\njude\r\njudehat\r\njudendomen\r\njudisk\r\njudiska\r\njudo\r\njugoslav\r\njugoslavisk\r\njuice\r\njukebox\r\njul\r\njulafton\r\njulbord\r\njuldagen\r\njuldagsmorgon\r\njuledag\r\njulefrid\r\njuleljus\r\njulen\r\njulens\r\njuletid\r\njulgran\r\njulgransplundring\r\njuli\r\njulklapp\r\njulkrubba\r\njulnatten\r\njulotta\r\njulskinka\r\njulstjärnans\r\njultid\r\njultomte\r\njumbo\r\njumbojet\r\njumpa\r\njumpar\r\njumper\r\njungfru\r\njungfrudom\r\njungfrulig\r\njungfrun\r\njungfruns\r\njungfrur\r\njungfrus\r\njuni\r\njunior\r\njunta\r\njuridik\r\njuridisk\r\njurist\r\njury\r\njust\r\njuste\r\njustera\r\njusterad\r\njusterar\r\njusterbar\r\njustering\r\njusteringsman\r\njustitiemord\r\njustitieombudsman\r\njuvel\r\njuveler\r\njuvelerare\r\njuvenil\r\njuver\r\njycke\r\njägare\r\njäkt\r\njäkta\r\njäktad\r\njäktar\r\njäktig\r\njämbördig\r\njämfota\r\njämför\r\njämföra\r\njämförande\r\njämföras\r\njämförbar\r\njämförelse\r\njämförelsevis\r\njämförpris\r\njämförs\r\njämfört\r\njämka\r\njämkar\r\njämkning\r\njämlik\r\njämlikhet\r\njämmer\r\njämmerlig\r\njämmerns\r\njämn\r\njämna\r\njämnan\r\njämnar\r\njämnas\r\njämngod\r\njämnmod\r\njämnt\r\njämnårig\r\njämra\r\njämrade\r\njämrande\r\njämrar\r\njäms\r\njämsides\r\njämspelt\r\njämställd\r\njämställdhet\r\njämställer\r\njämställt\r\njämt\r\njämte\r\nJämtland\r\njämvikt\r\njämviktsläge\r\njämväl\r\njänkare\r\njänta\r\njärn\r\njärngrepp\r\njärnhand\r\njärnhandel\r\njärnnätter\r\njärnplåt\r\nJärnridån\r\njärnring\r\njärnspikar\r\njärnverk\r\njärnväg\r\njärnvägsknut\r\njäsa\r\njäser\r\njäsning\r\njäsningsmedel\r\njäst\r\njästen\r\njätte\r\njättebra\r\njättefin\r\njättefint\r\njätteglad\r\njättelik\r\njättemysig\r\njätten\r\njätteskön\r\njättestor\r\njäv\r\njävig\r\njöns\r\njösses\r\nkabaré\r\nkabel\r\nkabin\r\nkabinett\r\nkabinettssekreterare\r\nkabyss\r\nkackalorum\r\nkackel\r\nkackerlacka\r\nkackla\r\nkacklar\r\nkadaver\r\nkadaverdisciplin\r\nkafé\r\nkafeteria\r\nkaffe\r\nkaffeapparat\r\nkaffebryggare\r\nkaffemaskin\r\nkaffestund\r\nkagge\r\nkaj\r\nkaja\r\nkajak\r\nkajman\r\nkajuta\r\nkaka\r\nkakao\r\nkakel\r\nkaktus\r\nkal\r\nkala\r\nkalabalik\r\nkalas\r\nkalasa\r\nkalasar\r\nkalasbra\r\nkalasbyxa\r\nkalaskula\r\nkalaspuffar\r\nkalender\r\nkalenderår\r\nkalhugger\r\nkalhygge\r\nkaliber\r\nkalibrera\r\nkalibrering\r\nkalk\r\nkalkar\r\nkalkat\r\nkalken\r\nkalkerar\r\nkalkon\r\nkalkyl\r\nkalkylator\r\nkalkylera\r\nkalkylerar\r\nkall\r\nkalla\r\nkallad\r\nkallade\r\nkallar\r\nkallas\r\nkallat\r\nkallats\r\nkallblodig\r\nkallblodigt\r\nkallbrand\r\nkalldusch\r\nkallelse\r\nkallelsen\r\nkallelsens\r\nkallelses\r\nkallelsevisshet\r\nkallet\r\nkallets\r\nkallna\r\nkallnar\r\nkallsinnig\r\nkallskuret\r\nkallskänka\r\nkallsup\r\nkallsvett\r\nkallt\r\nkalops\r\nkalori\r\nkalott\r\nkalsonger\r\nkalt\r\nkalufs\r\nkalv\r\nkalvens\r\nkam\r\nkamel\r\nkameleont\r\nkamera\r\nkamin\r\nkamma\r\nkammar\r\nkammare\r\nkammaren\r\nkammarmusik\r\nkammarrätt\r\nkamouflage\r\nkamouflera\r\nkamp\r\nkampanj\r\nkampar\r\nkampen\r\nkampens\r\nkampglöd\r\nkampvilja\r\nkamrat\r\nkamrater\r\nkamratgäng\r\nkamratlig\r\nkamratskap\r\nkamrer\r\nkan\r\nkana\r\nkanaans\r\nkanadensare\r\nkanal\r\nkanaliserar\r\nkanalje\r\nkanalväljare\r\nkanar\r\nkanariefågel\r\nkandelaber\r\nkandidat\r\nkandidattjänstgöring\r\nkandidatur\r\nkandiderar\r\nkanel\r\nkanelbulle\r\nkanelsnäcka\r\nkanhända\r\nkanin\r\nkanna\r\nkannibal\r\nkannorna\r\nkanon\r\nkanot\r\nkanske\r\nkansler\r\nkanslern\r\nkansli\r\nKanslihuset\r\nkanslisvenska\r\nkant\r\nkantar\r\nkantarell\r\nkantband\r\nkanten\r\nkanter\r\nkantig\r\nkantin\r\nkantor\r\nkantra\r\nkantrar\r\nkanyl\r\nkaos\r\nkaosmakt\r\nkaosnatten\r\nkaotisk\r\nkaotiskt\r\nkap\r\nkapa\r\nkapabel\r\nkapacitet\r\nkapar\r\nkapell\r\nkapital\r\nkapitalism\r\nkapitalist\r\nkapitalistisk\r\nkapitalvara\r\nkapitel\r\nkapitlet\r\nkapitulera\r\nkapitulerar\r\nkapning\r\nkapp\r\nkappa\r\nkappan\r\nkappor\r\nkapprum\r\nkapprustning\r\nkaprifol\r\nkapris\r\nkapsejsa\r\nkapsejsar\r\nkapsel\r\nkapsla\r\nkapsyl\r\nkapten\r\nkapuschong\r\nkaputt\r\nkar\r\nkaraff\r\nkarakterisera\r\nkarakteristika\r\nkarakteristikum\r\nkarakteristisk\r\nkaraktär\r\nkaraktärsdrag\r\nkaraktärsroll\r\nkaraktärsskådespelare\r\nkaramell\r\nkarameller\r\nkarantän\r\nkarat\r\nkarate\r\nkaravan\r\nkaravaner\r\nkarbonpapper\r\nkarcinogen\r\nkarda\r\nkardan\r\nkardemumma\r\nkardinal\r\nkarenstid\r\nkaressera\r\nkarg\r\nkaries\r\nkariesbakterie\r\nkarikatyr\r\nkarisma\r\nkarl\r\nkarlar\r\nkarlarna\r\nKarlavagnen\r\nkarm\r\nkarmstol\r\nkarneval\r\nkaross\r\nkarosseri\r\nkarott\r\nkarré\r\nkarriär\r\nkarriärist\r\nkarsk\r\nkarta\r\nkartbok\r\nkartell\r\nkarten\r\nkartig\r\nkartlägga\r\nkartlägger\r\nkartong\r\nkartotek\r\nkarusell\r\nkarva\r\nkarvar\r\nkasern\r\nkasino\r\nkaskad\r\nkasperteater\r\nkass\r\nkassa\r\nkassabrist\r\nkassan\r\nkassarabatt\r\nkassaskåp\r\nkassavalv\r\nkasse\r\nkassera\r\nkasserad\r\nkasserar\r\nkassett\r\nkassettdäck\r\nkassettradio\r\nkasst\r\nkassör\r\nkassörska\r\nkast\r\nkasta\r\nkastad\r\nkastades\r\nkastanj\r\nkastar\r\nkastas\r\nkastat\r\nkastrerar\r\nkastrull\r\nkastspö\r\nkatalog\r\nkatalysator\r\nkatalytisk\r\nkatapult\r\nkatarr\r\nkatastrof\r\nkatastrofal\r\nkateder\r\nkatedral\r\nkatedraler\r\nkategori\r\nkategorisera\r\nkategorisk\r\nkateter\r\nkatolicism\r\nkatolik\r\nkatolsk\r\nkatrinplommon\r\nkatt\r\nkatta\r\nkattbarn\r\nkattdjur\r\nkatten\r\nkattstaty\r\nkattunge\r\nkausalitet\r\nkautschuk\r\nkavaj\r\nkavaljer\r\nkavalkad\r\nkavalleri\r\nkavat\r\nkavel\r\nkaviar\r\nkavitet\r\nkavlar\r\nkavring\r\nkaxa\r\nkaxig\r\nkebab\r\nkedja\r\nkedjar\r\nkedjas\r\nkedjehus\r\nkedjor\r\nkejsar\r\nkejsardöme\r\nkejsare\r\nkejsarens\r\nkejsarinna\r\nkejsarsnitt\r\nkel\r\nkela\r\nkelar\r\nkelas\r\nkelgris\r\nkelig\r\nkemi\r\nkemikalier\r\nkemiska\r\nkemtvätt\r\nkemtvättar\r\nkennel\r\nkeps\r\nkeramik\r\nkeramiker\r\nkerub\r\nkeruber\r\nkeruberna\r\nkerubers\r\nkeso\r\nketchup\r\nkex\r\nkick\r\nkicka\r\nkickar\r\nkickat\r\nkicken\r\nkidnappar\r\nkidnappning\r\nkidrons\r\nkika\r\nkikar\r\nkikare\r\nkikhosta\r\nkikhål\r\nkiknar\r\nkil\r\nkila\r\nkilar\r\nkillar\r\nkillarna\r\nkille\r\nkilling\r\nkillingar\r\nkillingarnas\r\nkillingen\r\nkilo\r\nkilogram\r\nkilometer\r\nkilometerskatt\r\nkilowatt\r\nkilskrift\r\nkind\r\nkindben\r\nkinden\r\nkinder\r\nkindknota\r\nkindtand\r\nkines\r\nkinesa\r\nkinesar\r\nkinesisk\r\nkinkig\r\nkiosk\r\nkiosklitteratur\r\nkippa\r\nkippar\r\nkiropraktor\r\nkirra\r\nkirurg\r\nkirurgi\r\nkirurgisk\r\nkis\r\nkisar\r\nkisel\r\nkiss\r\nkissa\r\nkissar\r\nkisse\r\nkissekatt\r\nkissemiss\r\nkissen\r\nkissnödig\r\nkista\r\nkistor\r\nkitslig\r\nkitt\r\nkittel\r\nkittlar\r\nkittlaren\r\nkittlig\r\nkiv\r\nkiva\r\nkivas\r\nkiwi\r\nkjol\r\nklabb\r\nklack\r\nklackar\r\nklackspark\r\nkladd\r\nkladda\r\nkladdar\r\nkladdig\r\nkladdigt\r\nklaff\r\nklaffa\r\nklaffar\r\nklaga\r\nklagan\r\nklagande\r\nklagar\r\nklagomur\r\nklagomål\r\nklagorop\r\nklagosång\r\nklagosånger\r\nklagovisorna\r\nklammer\r\nklammeri\r\nklampar\r\nklamra\r\nklamrar\r\nklamydia\r\nklan\r\nklander\r\nklanderfri\r\nklandervärd\r\nklandra\r\nklandrar\r\nklang\r\nklanger\r\nklanglös\r\nklanka\r\nklant\r\nklanta\r\nklantig\r\nklantskalle\r\nklapp\r\nklappa\r\nklappar\r\nklappat\r\nklappjakt\r\nklar\r\nklara\r\nklarade\r\nklarar\r\nklarare\r\nklarast\r\nklaraste\r\nklarat\r\nklargjort\r\nklargör\r\nklargöra\r\nklarhet\r\nklarhets\r\nklarinett\r\nklarlägga\r\nklarläggande\r\nklarlägger\r\nklarna\r\nklarnar\r\nklarnats\r\nklarrött\r\nklarsignal\r\nklarsyn\r\nklarsynt\r\nklart\r\nklartecken\r\nklartext\r\nklartänkt\r\nklase\r\nklass\r\nklassa\r\nklassar\r\nklassföreståndare\r\nklassificera\r\nklassificerar\r\nklassificering\r\nklassifikation\r\nklassiker\r\nklassindela\r\nklassindelning\r\nklassisk\r\nklasslärare\r\nklassmamma\r\nklasspappa\r\nklassrum\r\nklasstillhörighet\r\nklatscha\r\nklatschig\r\nklaustrofobi\r\nklave\r\nklaver\r\nklavertramp\r\nklen\r\nklena\r\nklenhet\r\nklenod\r\nklentro\r\nklentrogen\r\nklentrogna\r\nklet\r\nkleta\r\nkletar\r\nkletig\r\nklev\r\nkli\r\nkliande\r\nkliar\r\nklibba\r\nklibbar\r\nklibbig\r\nklibbigt\r\nkliché\r\nklick\r\nklickar\r\nklient\r\nklientel\r\nklimakterium\r\nklimat\r\nklimax\r\nklimp\r\nklimpar\r\nklinga\r\nklingar\r\nklingor\r\nklinik\r\nklinkar\r\nklipp\r\nklippa\r\nklippan\r\nklippans\r\nklippas\r\nklippblock\r\nklippegrund\r\nklipper\r\nklippfasta\r\nklipphylla\r\nklippiga\r\nklippotek\r\nklippvägg\r\nklipsk\r\nklirra\r\nklirrar\r\nklister\r\nklistra\r\nklistrar\r\nklitoris\r\nkliv\r\nkliva\r\nkliver\r\nklo\r\nkloak\r\nklocka\r\nklockan\r\nklockor\r\nklockorna\r\nklockren\r\nklockslag\r\nklok\r\nkloka\r\nklokare\r\nklokaste\r\nklokhet\r\nklokskap\r\nklokskaps\r\nklokt\r\nklona\r\nklor\r\nklorofyll\r\nklosett\r\nkloss\r\nkloster\r\nklot\r\nklotformad\r\nklotformig\r\nklots\r\nklotter\r\nklottra\r\nklottrar\r\nklubb\r\nklubba\r\nklubban\r\nklubbar\r\nkluckande\r\nkluckar\r\nklump\r\nklumpig\r\nklunga\r\nklunk\r\nklunka\r\nklura\r\nklurig\r\nkluring\r\nkluster\r\nkluven\r\nkluvet\r\nkluvit\r\nkluvna\r\nklyfta\r\nklyftig\r\nklyka\r\nklyscha\r\nklyv\r\nklyva\r\nklyver\r\nklå\r\nklåda\r\nklåfingrig\r\nklåpare\r\nklår\r\nklä\r\nkläcka\r\nkläcker\r\nkläcks\r\nkläd\r\nkläda\r\nklädas\r\nklädd\r\nklädda\r\nklädde\r\nklädedräkt\r\nkläder\r\nklädernas\r\nklädesplagg\r\nklädförvaring\r\nklädgalge\r\nklädhängare\r\nklädkammare\r\nklädnad\r\nklädnypa\r\nklädsam\r\nklädsel\r\nklädskåp\r\nklädstreck\r\nkläm\r\nklämdag\r\nklämma\r\nklämmas\r\nklämmer\r\nklämmig\r\nklämta\r\nklämtar\r\nklänger\r\nklängig\r\nklänning\r\nklär\r\nklärvoajant\r\nkläs\r\nklätt\r\nklättra\r\nklättrar\r\nklösa\r\nklöser\r\nklöv\r\nklöver\r\nknacka\r\nknackade\r\nknackar\r\nknackat\r\nknackig\r\nknagglig\r\nknakar\r\nknall\r\nknalla\r\nknallar\r\nknaper\r\nknapp\r\nknappast\r\nknapphet\r\nknapphål\r\nknapphändig\r\nknappnål\r\nknappt\r\nknapra\r\nknaprar\r\nknaprig\r\nknark\r\nknarka\r\nknarkad\r\nknarkar\r\nknarkare\r\nknarket\r\nknarra\r\nknarrar\r\nknas\r\nknasig\r\nknaster\r\nknastra\r\nknastrande\r\nknastrar\r\nknata\r\nknatte\r\nknattrar\r\nkneg\r\nknega\r\nknegar\r\nknegare\r\nknekt\r\nknep\r\nknepig\r\nknip\r\nknipa\r\nkniper\r\nknippa\r\nknippe\r\nknipsar\r\nknipslug\r\nkniptång\r\nknirra\r\nkniv\r\nknivar\r\nknivarna\r\nknivblad\r\nkniven\r\nknivig\r\nknixar\r\nknockar\r\nknockout\r\nknodd\r\nknog\r\nknoga\r\nknogar\r\nknoge\r\nknop\r\nknop\r\nknopar\r\nknopp\r\nknoppa\r\nknopparna\r\nknoppas\r\nknoppats\r\nknoppen\r\nknorr\r\nknorra\r\nknorrar\r\nknot\r\nknota\r\nknotande\r\nknotar\r\nknotat\r\nknotig\r\nknotor\r\nknotorna\r\nknott\r\nknubbig\r\nknuff\r\nknuffa\r\nknuffar\r\nknuffas\r\nknusslar\r\nknusslig\r\nknut\r\nknuta\r\nknutar\r\nknuten\r\nknutit\r\nknutna\r\nknutte\r\nknyck\r\nknycka\r\nknycker\r\nknycklar\r\nknypplar\r\nknyst\r\nknysta\r\nknystar\r\nknyt\r\nknyta\r\nknytas\r\nknyte\r\nknyter\r\nknytkalas\r\nknytnäve\r\nknytnävsslag\r\nknytt\r\nknådar\r\nknådning\r\nknåp\r\nknåpa\r\nknåpar\r\nknä\r\nknäar\r\nknäck\r\nknäcka\r\nknäckebröd\r\nknäcker\r\nknäckte\r\nknän\r\nknäpp\r\nknäppa\r\nknäpper\r\nknäppgök\r\nknäppt\r\nknäskål\r\nknäsvag\r\nknät\r\nknäveck\r\nknöl\r\nknölig\r\nknöt\r\nko\r\nkoagulera\r\nkoagulerar\r\nkoalition\r\nkobbe\r\nkobent\r\nkobrors\r\nkock\r\nkod\r\nkoda\r\nkodar\r\nkodein\r\nkodifiera\r\nkodslav\r\nkoffein\r\nkoffert\r\nkofot\r\nkofta\r\nkofångare\r\nkognition\r\nkohandel\r\nkoj\r\nkoja\r\nkok\r\nkoka\r\nkokain\r\nkokar\r\nkokbok\r\nkokerska\r\nkokett\r\nkokkonst\r\nkokkärl\r\nkokong\r\nkokosboll\r\nkokosflingor\r\nkokosnöt\r\nkokpunkt\r\nkoks\r\nkokt\r\nkokvrå\r\nkol\r\nkola\r\nkolar\r\nkoldioxid\r\nkolera\r\nkolerisk\r\nkolhydrat\r\nkolik\r\nkolja\r\nkoll\r\nkolla\r\nkollaps\r\nkollapsa\r\nkollar\r\nkollationerar\r\nkollega\r\nkollegieblock\r\nkollegierum\r\nkollegium\r\nkollekt\r\nkollektion\r\nkollektiv\r\nkollektivanslutning\r\nkollektivanställd\r\nkollektivavtal\r\nkolli\r\nkollidera\r\nkolliderar\r\nkollision\r\nkollo\r\nkollo\r\nkolofonium\r\nkolon\r\nkoloni\r\nkolonilott\r\nkolonistuga\r\nkolonn\r\nkolorerad\r\nkoloss\r\nkolossal\r\nkolossalt\r\nkolosserbrevet\r\nkoloxid\r\nkolsvart\r\nkolsyra\r\nkolsyrat\r\nkoltrast\r\nkolumn\r\nkolv\r\nkom\r\nkoma\r\nkombination\r\nkombinationen\r\nkombinera\r\nkombinerar\r\nkomedi\r\nkomet\r\nkometer\r\nkomfort\r\nkomfortabel\r\nkomfortabelt\r\nkomik\r\nkomiker\r\nkomisk\r\nkomma\r\nkommande\r\nkommando\r\nkommen\r\nkommendera\r\nkommenderar\r\nkommendör\r\nkommentar\r\nkommentarer\r\nkommentator\r\nkommentera\r\nkommenterar\r\nkommer\r\nkommers\r\nkommersiell\r\nkomminister\r\nkommissarie\r\nkommission\r\nkommissionär\r\nkommit\r\nkommitté\r\nkommun\r\nkommunal\r\nkommunalråd\r\nkommunalskatt\r\nkommunalval\r\nkommunfullmäktige\r\nkommunicera\r\nkommunicerar\r\nkommunikation\r\nkommunikationsmedel\r\nkommunikativ\r\nkommuniké\r\nkommunism\r\nkommunist\r\nkommunisterna\r\nkommunstyrelse\r\nkomocka\r\nkomp\r\nkompakt\r\nkompaktskiva\r\nkompani\r\nkompanjon\r\nkomparation\r\nkomparativ\r\nkomparering\r\nkompass\r\nkompendium\r\nkompensation\r\nkompensera\r\nkompenserar\r\nkompetens\r\nkompetent\r\nkompis\r\nkompisar\r\nkompiskrets\r\nkompledig\r\nkomplement\r\nkomplett\r\nkomplettera\r\nkompletterande\r\nkompletterar\r\nkomplettering\r\nkomplex\r\nkomplicerad\r\nkomplicerade\r\nkomplicerar\r\nkomplicerat\r\nkomplikation\r\nkomplimang\r\nkomplott\r\nkomponent\r\nkomponera\r\nkomponerar\r\nkomposition\r\nkompositör\r\nkompott\r\nkompress\r\nkompression\r\nkomprimera\r\nkomprimerar\r\nkompromiss\r\nkompromissa\r\nkompromissar\r\nkompromisslös\r\nkon\r\nkoncentrat\r\nkoncentration\r\nkoncentrationsläger\r\nkoncentrera\r\nkoncentrerar\r\nkoncept\r\nkoncern\r\nkoncession\r\nkoncis\r\nkondens\r\nkondenserar\r\nkondis\r\nkondition\r\nkonditor\r\nkonditori\r\nkondoleans\r\nkondom\r\nkonduktans\r\nkonduktör\r\nkonfederation\r\nkonfekt\r\nkonfektion\r\nkonfektyr\r\nkonferencier\r\nkonferens\r\nkonferera\r\nkonfession\r\nkonfetti\r\nkonfidentiell\r\nkonfirmand\r\nkonfirmation\r\nkonfirmationsundervisning\r\nkonfirmera\r\nkonfirmerar\r\nkonfiskera\r\nkonfiskerar\r\nkonflikt\r\nkonflikter\r\nkonformism\r\nkonfrontation\r\nkonfronteras\r\nkonfundera\r\nkonfunderad\r\nkonfys\r\nkongress\r\nkonjak\r\nkonjunktion\r\nkonjunktur\r\nkonkav\r\nkonkludera\r\nkonklusion\r\nkonkordans\r\nkonkret\r\nkonkubin\r\nkonkurrens\r\nkonkurrent\r\nkonkurrera\r\nkonkurrerande\r\nkonkurrerar\r\nkonkurs\r\nkonsekutiv\r\nkonsekvens\r\nkonsekvenser\r\nkonsekvent\r\nkonselj\r\nkonsensus\r\nkonsert\r\nkonserv\r\nkonservatism\r\nkonservativ\r\nkonservator\r\nkonservera\r\nkonserverar\r\nkonservering\r\nkonservöppnare\r\nkonsistens\r\nkonsol\r\nkonsoliderar\r\nkonsonant\r\nkonspiration\r\nkonspirera\r\nkonspirerar\r\nkonst\r\nkonstant\r\nkonstapel\r\nkonstatera\r\nkonstaterande\r\nkonstaterar\r\nkonstbefruktning\r\nkonstellation\r\nkonstgjord\r\nkonsthantverk\r\nkonstig\r\nkonstigt\r\nkonstitution\r\nkonstlad\r\nkonstlat\r\nkonstlös\r\nkonstnär\r\nkonstnärlig\r\nkonstrar\r\nkonstruera\r\nkonstruerad\r\nkonstruerar\r\nkonstruktion\r\nkonstruktiv\r\nkonstruktör\r\nkonststycke\r\nkonståkning\r\nkonsul\r\nkonsulat\r\nkonsulent\r\nkonsult\r\nkonsultation\r\nkonsultera\r\nkonsulterar\r\nkonsument\r\nkonsumenthjälp\r\nkonsumentombudsman\r\nkonsumentsekreterare\r\nkonsumentupplysning\r\nkonsumera\r\nkonsumtion\r\nkonsumtionsvara\r\nkont\r\nkontakt\r\nkontaktar\r\nkontaktfamilj\r\nkontaktlins\r\nkontaktnät\r\nkontaktperson\r\nkontamination\r\nkontant\r\nkontanter\r\nkontantinsats\r\nkontemplera\r\nkontenta\r\nkontentan\r\nkontext\r\nkontinent\r\nkontinuerlig\r\nkontinuerligt\r\nkonto\r\nkontokort\r\nkontor\r\nkontorist\r\nkontra\r\nkontrabas\r\nkontrahent\r\nkontrakt\r\nkontraktion\r\nkontrar\r\nkontrast\r\nkontroll\r\nkontrollant\r\nkontrollbesiktning\r\nkontrollen\r\nkontrollera\r\nkontrollerar\r\nkontrollmärke\r\nkontrollområde\r\nkontrolluppgift\r\nkontrovers\r\nkontroversiell\r\nkontur\r\nkonturerna\r\nkonturlös\r\nkonung\r\nkonungar\r\nkonungarnas\r\nkonungars\r\nkonungen\r\nkonungens\r\nkonungs\r\nkonungslig\r\nkonungsligt\r\nkonvalescent\r\nkonvalescenthem\r\nkonvalescentvård\r\nkonvenans\r\nkonvention\r\nkonventionell\r\nkonversabel\r\nkonversation\r\nkonversera\r\nkonversion\r\nkonvertera\r\nkonverterar\r\nkonvertering\r\nkonvex\r\nkooperation\r\nkooperativ\r\nkoordination\r\nkoordinator\r\nkoordinera\r\nkoordinerar\r\nkoordinering\r\nkopia\r\nkopiator\r\nkopiera\r\nkopierar\r\nkopiering\r\nkopiös\r\nkopiöst\r\nkopp\r\nkoppar\r\nkoppel\r\nkoppen\r\nkoppla\r\nkopplad\r\nkopplar\r\nkopplare\r\nkoppleri\r\nkoppling\r\nkoppor\r\nkopulation\r\nkopulera\r\nkor\r\nkora\r\nkorad\r\nkoral\r\nkoraler\r\nKoranen\r\nkorar\r\nkordong\r\nkoreaner\r\nkoreografi\r\nkorg\r\nkorgboll\r\nkorinthierbrevet\r\nkork\r\nkorkad\r\nkorkade\r\nkorkat\r\nkorkskruv\r\nkorn\r\nkornas\r\nkornbröd\r\nkornen\r\nkornet\r\nkornets\r\nkorp\r\nkorpar\r\nkorpen\r\nkorpidrott\r\nkorporation\r\nkorpral\r\nkorpulent\r\nkorr\r\nkorrekt\r\nkorrekthet\r\nkorrektion\r\nkorrektur\r\nkorrekturläsa\r\nkorrelation\r\nkorrespondens\r\nkorrespondent\r\nkorresponderande\r\nkorridor\r\nkorrigera\r\nkorrigerar\r\nkorrigering\r\nkorrodera\r\nkorroderad\r\nkorrosion\r\nkorrosiv\r\nkorrugerad\r\nkorrumpera\r\nkorrumperad\r\nkorrupt\r\nkorruption\r\nkors\r\nkorsar\r\nkorsbaneret\r\nkorsdrag\r\nkorsdöden\r\nkorseld\r\nkorset\r\nkorsets\r\nkorsett\r\nkorsfäst\r\nkorsfästas\r\nkorsfäste\r\nkorsfästelse\r\nkorsfäster\r\nkorsförhör\r\nkorsning\r\nkorsord\r\nkorsrygg\r\nkorstecken\r\nkorsträ\r\nkorsträdets\r\nkorståg\r\nkort\r\nkorta\r\nkortbyxor\r\nkortege\r\nkortfattad\r\nkortfristig\r\nkorthet\r\nkorthuggen\r\nkorthus\r\nkortklippt\r\nkortkort\r\nkortlek\r\nkortlivad\r\nkortsida\r\nkortsiktig\r\nkortslutning\r\nkortsynt\r\nkortvarig\r\nkortvarigt\r\nkorus\r\nkorv\r\nkorvkiosk\r\nkorvmoj\r\nkorvskinn\r\nkorvstoppning\r\nkos\r\nkosing\r\nkosmetika\r\nkosmiska\r\nkosmiskt\r\nkosmonaut\r\nkosmos\r\nkossa\r\nkost\r\nkosta\r\nkostar\r\nkostat\r\nkostbar\r\nkostligt\r\nkostnad\r\nkostnadsfri\r\nkostnadskrävande\r\nkostsam\r\nkostym\r\nkota\r\nkotknackare\r\nkotlett\r\nkotte\r\nkotteri\r\nkovan\r\nkoxa\r\nkpist\r\nkrabat\r\nkrabba\r\nkrackelera\r\nkrafs\r\nkrafsar\r\nkraft\r\nkraften\r\nkraftens\r\nkrafter\r\nkrafterna\r\nkraftfull\r\nkraftig\r\nkraftiga\r\nkraftigt\r\nkraftledning\r\nkraftlös\r\nkraftlöse\r\nkraftlöshet\r\nkraftmätning\r\nkrafts\r\nkraftstation\r\nkraftuttryck\r\nkraftverk\r\nkrage\r\nkrake\r\nkram\r\nkrama\r\nkramar\r\nkramas\r\nkramdjur\r\nkramgo\r\nkramgod\r\nkramp\r\nkrampaktig\r\nkrampanfall\r\nkrams\r\nkramsnö\r\nkran\r\nkranium\r\nkrank\r\nkrankhet\r\nkrankheter\r\nkrans\r\nkras\r\nkrasa\r\nkrasch\r\nkrascha\r\nkraschar\r\nkrass\r\nkrasse\r\nkrasslig\r\nkratta\r\nkrattar\r\nkrav\r\nkravaller\r\nkravatt\r\nkraven\r\nkravet\r\nkravfyllt\r\nkravla\r\nkravlar\r\nkravlöst\r\nkraxar\r\nkreation\r\nkreativ\r\nkreatur\r\nkredit\r\nkreditkort\r\nkreditköp\r\nkreditupplysning\r\nkreera\r\nkrematorium\r\nkremering\r\nkrepera\r\nkreti\r\nkrets\r\nkretsa\r\nkretsar\r\nkretslopp\r\nkrevad\r\nkrevera\r\nkrig\r\nkriga\r\nkrigar\r\nkrigare\r\nkriget\r\nkrigets\r\nkrigföring\r\nkrigsbytet\r\nkrigsflotta\r\nkrigsherre\r\nkrigsmakt\r\nkrigsman\r\nkrigsmaterielindustri\r\nkriminaliserar\r\nkriminalitet\r\nkriminallabb\r\nkriminalvård\r\nkriminell\r\nkrimskrams\r\nkring\r\nkringflackande\r\nkringgå\r\nkringgående\r\nkringgår\r\nkringgärda\r\nkringgärdar\r\nkringla\r\nkringliggande\r\nkringresande\r\nkringspridda\r\nkris\r\nkrist\r\nkristall\r\nkristallklar\r\nkristallklara\r\nkristallkrona\r\nkristen\r\nkristendom\r\nkristendomen\r\nkristendomens\r\nkristenhet\r\nkristet\r\nkristi\r\nkristna\r\nkristnas\r\nkristus\r\nkristuskorset\r\nkrita\r\nkriterier\r\nkriterium\r\nkritik\r\nkritiker\r\nkritisera\r\nkritiserar\r\nkritisk\r\nkroat\r\nkrock\r\nkrocka\r\nkrockade\r\nkrockar\r\nkrockat\r\nkrog\r\nkrok\r\nkrokarna\r\nkrokben\r\nkrokig\r\nkroknar\r\nkrokodil\r\nkrokodiltårar\r\nkrokryggig\r\nkrokus\r\nkrom\r\nkromatisk\r\nkromosom\r\nkrona\r\nkronan\r\nkronisk\r\nkronofogde\r\nkronologisk\r\nkronor\r\nkronors\r\nkronprins\r\nkronärtskocka\r\nkropp\r\nkroppar\r\nkroppen\r\nkroppens\r\nkroppkaka\r\nkropps\r\nkroppsbyggare\r\nkroppsbyggnad\r\nkroppsdelar\r\nkroppslig\r\nkroppspulsåder\r\nkroppsspråk\r\nkroppsställning\r\nkroppsvisitation\r\nkrossa\r\nkrossad\r\nkrossade\r\nkrossar\r\nkrossas\r\nkrossat\r\nkrossats\r\nkrubb\r\nkrubba\r\nkrubban\r\nkrubbans\r\nkrubbas\r\nkrucifix\r\nkruka\r\nkrukan\r\nkrukmakare\r\nkrukmakarskivan\r\nkrukväxt\r\nkrullig\r\nkrulligt\r\nkrum\r\nkrumbukt\r\nkrumelur\r\nkrupit\r\nkrupp\r\nkrus\r\nkrusar\r\nkrusbär\r\nkruset\r\nkrusidull\r\nkrusig\r\nkrustad\r\nkrut\r\nkrux\r\nkry\r\nkrya\r\nkryar\r\nkrycka\r\nkrydda\r\nkryddad\r\nkryddar\r\nkryddig\r\nkryddväxt\r\nkrylla\r\nkryllar\r\nkrympa\r\nkrymper\r\nkrympfri\r\nkrympling\r\nkrympning\r\nkryp\r\nkrypa\r\nkryper\r\nkryphål\r\nkrypin\r\nkryptera\r\nkryptisk\r\nkryss\r\nkryssar\r\nkryssare\r\nkryssning\r\nkrysta\r\nkrystad\r\nkrystar\r\nkråka\r\nkråkfötter\r\nkråmar\r\nkrångel\r\nkrångla\r\nkrånglar\r\nkrånglig\r\nkrångligt\r\nkräfta\r\nkräftgång\r\nkräftskiva\r\nkräk\r\nkräkas\r\nkräkla\r\nkräkning\r\nkräks\r\nkräla\r\nkrälande\r\nkrälar\r\nkräldjur\r\nkräm\r\nkrämpa\r\nkrämpor\r\nkränga\r\nkränger\r\nkränka\r\nkränkande\r\nkränker\r\nkränkning\r\nkräpp\r\nkräsen\r\nkräva\r\nkrävande\r\nkräver\r\nkrävs\r\nkrögare\r\nkrök\r\nkröka\r\nkrökar\r\nkröker\r\nkrökt\r\nkrön\r\nkröna\r\nkröner\r\nkrönika\r\nkrönikeboken\r\nkrönikör\r\nkrönt\r\nkrönta\r\nkröntas\r\nkrönte\r\nkröp\r\nkub\r\nkuban\r\nkubansk\r\nkubb\r\nkubikmeter\r\nkudde\r\nkuddvar\r\nkuf\r\nkufisk\r\nkugga\r\nkuggar\r\nkugge\r\nkuggfråga\r\nkugghjul\r\nkul\r\nkula\r\nkulen\r\nkulgevär\r\nkuligt\r\nkuling\r\nkuliss\r\nkull\r\nkullager\r\nkulle\r\nkullen\r\nkullerbytta\r\nkullersten\r\nkullkastar\r\nkulmen\r\nkulmination\r\nkulminera\r\nkulminerar\r\nkulpenna\r\nkulpåse\r\nkulram\r\nkulspetspenna\r\nkulspruta\r\nkulstötning\r\nkult\r\nkultivera\r\nkultiverad\r\nkultur\r\nkulturell\r\nkulturer\r\nkulturminnesmärker\r\nkulturnämnd\r\nkulvert\r\nkulör\r\nkulörer\r\nkulört\r\nkulörta\r\nkummin\r\nkumpan\r\nkumulativ\r\nkund\r\nkunde\r\nkundvägledare\r\nkung\r\nkungaboken\r\nkungadöme\r\nkungadömen\r\nkungadömet\r\nkungahus\r\nkungahuset\r\nkungakronan\r\nkungapalatset\r\nkungar\r\nkungarike\r\nkungarnas\r\nkungars\r\nkungason\r\nkungaspira\r\nkungaspiran\r\nkungaätt\r\nkungen\r\nkungens\r\nkunglig\r\nkungliga\r\nkunglighet\r\nkungör\r\nkungöra\r\nkungörelse\r\nkunna\r\nkunnande\r\nkunnat\r\nkunnig\r\nkunnighet\r\nkunnigt\r\nkunskap\r\nkunskapskontroll\r\nkunskapstörstande\r\nkupa\r\nkupade\r\nkupé\r\nkuperad\r\nkupol\r\nkupong\r\nkupp\r\nkur\r\nkurage\r\nkurant\r\nkurar\r\nkurativ\r\nkurator\r\nkurera\r\nkurerar\r\nkurering\r\nkuriositet\r\nkurir\r\nkurirerna\r\nkuriös\r\nkurort\r\nkurra\r\nkurragömma\r\nkurrar\r\nkurs\r\nkursen\r\nkurser\r\nkurtisera\r\nkurva\r\nkuse\r\nkusin\r\nkusk\r\nkuska\r\nkuslig\r\nkusligt\r\nkust\r\nkusten\r\nkuster\r\nkustlinjens\r\nkuta\r\nkutar\r\nkutig\r\nkutryggig\r\nkuttra\r\nkuttrar\r\nkutym\r\nkuva\r\nkuvade\r\nkuvades\r\nkuvar\r\nkuvas\r\nkuvert\r\nkuvös\r\nkvackar\r\nkvacksalvare\r\nkvadda\r\nkvaddar\r\nkvadrat\r\nkvadratisk\r\nkvadratmeter\r\nkval\r\nkvalar\r\nkvalda\r\nkvaldes\r\nkvalen\r\nkvalfull\r\nkvalificerad\r\nkvalificerar\r\nkvalifikation\r\nkvalitativ\r\nkvalitet\r\nkvalmig\r\nkvantitativ\r\nkvantitet\r\nkvar\r\nkvarbli\r\nkvardröjande\r\nkvarg\r\nkvarglömd\r\nkvark\r\nkvarleva\r\nkvarlevande\r\nkvarlåtenskap\r\nkvarlämnad\r\nkvarn\r\nkvarskatt\r\nkvarstår\r\nkvart\r\nkvarta\r\nkvartal\r\nkvarter\r\nkvartett\r\nkvarvara\r\nkvarvarande\r\nkvast\r\nkvav\r\nkverulans\r\nkverulant\r\nkverulera\r\nkverulerar\r\nkvick\r\nkvickar\r\nkvicknar\r\nkvicksilver\r\nkvickt\r\nkvida\r\nkvider\r\nkviga\r\nkvinna\r\nkvinnan\r\nkvinnans\r\nkvinnas\r\nkvinnfolk\r\nkvinnlig\r\nkvinnliga\r\nkvinnligt\r\nkvinnoklinik\r\nkvinnor\r\nkvinnorna\r\nkvinnosakskvinna\r\nkvinns\r\nkvintett\r\nkvirr\r\nkvissla\r\nkvist\r\nkvitt\r\nkvittar\r\nkvittens\r\nkvittera\r\nkvitterar\r\nkvitto\r\nkvittrar\r\nkvot\r\nkvoterar\r\nkväden\r\nkväker\r\nkväljande\r\nkväljer\r\nkväll\r\nkvällas\r\nkvällen\r\nkvällens\r\nkvällning\r\nkvällskvist\r\nkvällskvisten\r\nkvällsmat\r\nkvällsmål\r\nkvällsmåltid\r\nkvällstidning\r\nkvällsvard\r\nkväsa\r\nkväser\r\nkvävdes\r\nkväve\r\nkväver\r\nkvävs\r\nkyckling\r\nkycklingmamma\r\nkyffe\r\nkyl\r\nkyla\r\nkylare\r\nkyler\r\nkylig\r\nkyliga\r\nkyligt\r\nkylskåp\r\nkylslagen\r\nkymig\r\nkynne\r\nkynnen\r\nkypare\r\nkyrka\r\nkyrkan\r\nkyrkans\r\nkyrkas\r\nkyrkklocka\r\nkyrklig\r\nkyrklokalerna\r\nkyrkoadjunkt\r\nkyrkobokföring\r\nkyrkofullmäktige\r\nkyrkogång\r\nkyrkogård\r\nkyrkoherde\r\nkyrkohus\r\nkyrkomöte\r\nkyrkor\r\nkyrkorna\r\nkyrkoskatt\r\nkyrkoval\r\nkyrkoår\r\nkyrkoåret\r\nkyrkrummets\r\nkysk\r\nkyss\r\nkyssa\r\nkyssas\r\nkysser\r\nkysst\r\nkåda\r\nkåk\r\nkål\r\nkålrot\r\nkålsupare\r\nkånka\r\nkånkar\r\nkåpa\r\nkår\r\nkåre\r\nkåseri\r\nkåsör\r\nkåta\r\nkäbbel\r\nkäbbla\r\nkäck\r\nkäft\r\nkäfta\r\nkäftar\r\nkägla\r\nkäk\r\nkäka\r\nkäkar\r\nkäke\r\nkälke\r\nkälla\r\nkällan\r\nkällans\r\nkällare\r\nkällarmästare\r\nkällas\r\nkällor\r\nkällorna\r\nkällskatt\r\nkällsprång\r\nkämpa\r\nkämpade\r\nkämpaglöd\r\nkämpahär\r\nkämpande\r\nkämpar\r\nkämpat\r\nkämpe\r\nkämpen\r\nkämpig\r\nkänd\r\nkända\r\nkände\r\nkändes\r\nkändis\r\nkänga\r\nkänguru\r\nkänn\r\nkänna\r\nkännare\r\nkännas\r\nkännbar\r\nkännedom\r\nkännemärke\r\nkänner\r\nkännetecken\r\nkänneteckna\r\nkännetecknande\r\nkännetecknar\r\nkänning\r\nkänns\r\nkänsel\r\nkänsla\r\nkänslan\r\nkänslans\r\nkänslig\r\nkänslighet\r\nkänslofull\r\nkänslokall\r\nkänsloladdad\r\nkänslolös\r\nkänslomässig\r\nkänslor\r\nkänslorna\r\nkänslosamhet\r\nkänt\r\nkänts\r\nkäpp\r\nkäpphäst\r\nkär\r\nkära\r\nkärande\r\nkäras\r\nkärast\r\nkäre\r\nkäresta\r\nkäril\r\nkäring\r\nkärkommen\r\nkärl\r\nkärlek\r\nkärleken\r\nkärlekens\r\nkärleks\r\nkärleksaffär\r\nkärleksband\r\nkärleksbud\r\nkärleksbudskap\r\nkärlekseld\r\nkärleksfamn\r\nkärleksfest\r\nkärleksflod\r\nkärleksfull\r\nkärleksfulla\r\nkärleksfulle\r\nkärleksfullt\r\nkärleksförbindelse\r\nkärleksglädje\r\nkärleksglöd\r\nkärlekshandling\r\nkärlekshav\r\nkärlekskrank\r\nkärleksljuset\r\nkärlekslösa\r\nkärlekslöst\r\nkärleksrik\r\nkärleksrike\r\nkärlekssmärta\r\nkärlekssång\r\nkärleksånger\r\nkärlen\r\nkärlkramp\r\nkärna\r\nkärnan\r\nkärnfamilj\r\nkärnfrisk\r\nkärnmjölk\r\nkärnpunkt\r\nkäromål\r\nkärr\r\nkärra\r\nkärring\r\nkärt\r\nkärv\r\nkärvar\r\nkärvarna\r\nkärve\r\nkättare\r\nkätte\r\nkätting\r\nkäx\r\nkö\r\nköar\r\nkök\r\nköksavfall\r\nköksredskap\r\nköl\r\nköld\r\nköldskada\r\nkölvatten\r\nkön\r\nkönlös\r\nkönsdel\r\nkönsorgan\r\nkönsroll\r\nkönsumgänge\r\nköp\r\nköpa\r\nköpare\r\nköpcenter\r\nköpcentrum\r\nköpcentrumsplan\r\nköpeavtal\r\nköpekontrakt\r\nköpenskap\r\nköper\r\nköpeskilling\r\nköping\r\nköpkraft\r\nköpman\r\nköpmännen\r\nköpslå\r\nköpslår\r\nköpt\r\nköpte\r\nköpts\r\nköpvägra\r\nköpvägran\r\nkör\r\nköra\r\nkörbana\r\nkörbar\r\nkörd\r\nkörde\r\nkören\r\nkörer\r\nkörfält\r\nkörkort\r\nkörkortstillstånd\r\nkörriktningsvisare\r\nkörsbär\r\nkörskola\r\nkörsnär\r\nkörsven\r\nkört\r\nkörtel\r\nkött\r\nköttbullar\r\nköttet\r\nköttfärs\r\nkötträtt\r\nla\r\nlabb\r\nlabil\r\nlaborant\r\nlaboration\r\nlaboratorium\r\nlaborerar\r\nlabyrint\r\nlack\r\nlacka\r\nlackar\r\nlackerar\r\nlacknafta\r\nlada\r\nladda\r\nladdad\r\nladdar\r\nladdning\r\nlade\r\nlades\r\nladugård\r\nlady\r\nlag\r\nlaga\r\nlaganda\r\nlagar\r\nlagarbete\r\nlagarna\r\nlagbrytare\r\nlagd\r\nlagen\r\nlagens\r\nlager\r\nlagerblad\r\nlagerkrans\r\nlagfart\r\nlagfästa\r\nlagfäster\r\nlagförslag\r\nlagg\r\nlagkamrat\r\nlagledare\r\nlaglig\r\nlaglott\r\nlaglösa\r\nlaglöse\r\nlaglösheten\r\nlagman\r\nlagning\r\nlagom\r\nlagra\r\nlagrades\r\nlagrar\r\nlagringsmedium\r\nlags\r\nlagstadgad\r\nlagstifta\r\nlagstiftar\r\nlagstiftare\r\nlagstiftning\r\nlagstridig\r\nlagt\r\nlagts\r\nlagväktare\r\nlagård\r\nlagöverträdare\r\nlagöverträdelse\r\nlajban\r\nlajbans\r\nlakan\r\nlakar\r\nlakonisk\r\nlakrits\r\nlaktos\r\nlala\r\nlalla\r\nlam\r\nlama\r\nlame\r\nlamé\r\nlamell\r\nlames\r\nlamm\r\nlammen\r\nlammet\r\nlammets\r\nlammkött\r\nlamms\r\nlampa\r\nlampan\r\nlampolja\r\nlampor\r\nlamslagen\r\nlamslå\r\nlamslår\r\nlamslås\r\nland\r\nlanda\r\nlandade\r\nlandar\r\nlandat\r\nlandbit\r\nlanddjur\r\nlandet\r\nlandets\r\nlandgång\r\nlandkrabba\r\nlandsbygd\r\nlandsdel\r\nlandsflykt\r\nlandsförvisa\r\nlandsförvisning\r\nlandshövding\r\nlandskamp\r\nlandskap\r\nlandslag\r\nlandsman\r\nlandsomfattande\r\nlandsort\r\nlandssorg\r\nlandstiga\r\nlandsting\r\nlandstingskommun\r\nlandstingsval\r\nlandsväg\r\nlandsätter\r\nlandvinning\r\nlandvägen\r\nlanga\r\nlangar\r\nlangare\r\nlans\r\nlansera\r\nlanserar\r\nlantarbetare\r\nlantbrevbärare\r\nlantbruk\r\nlantbrukare\r\nlantgård\r\nlantis\r\nlantlig\r\nlantman\r\nlantmäteri\r\nlapa\r\nlapade\r\nlapar\r\nlapp\r\nlappar\r\nLappland\r\nlapplisa\r\nlappsjuka\r\nlappverk\r\nlapskojs\r\nlapsus\r\nlarm\r\nlarma\r\nlarmar\r\nlarv\r\nlarven\r\nlarvig\r\nlarvpotta\r\nlasagne\r\nlasarett\r\nlasaros\r\nlaser\r\nlass\r\nlassa\r\nlassar\r\nlasso\r\nlast\r\nlasta\r\nlastade\r\nlastar\r\nlastas\r\nlastat\r\nlastbil\r\nlastbilschaufför\r\nlastbilsförare\r\nlastbrygga\r\nlastbåt\r\nlasten\r\nlaster\r\nlastfartyg\r\nlastfordon\r\nlastkaj\r\nlastångare\r\nlat\r\nlata\r\nlatar\r\nlatent\r\nlater\r\nlathet\r\nlathund\r\nlatin\r\nlatitud\r\nlatmask\r\nlatrin\r\nlatsidan\r\nlattja\r\nlattjo\r\nlav\r\nlava\r\nlave\r\nlavemang\r\nlavin\r\nlavinartad\r\nlax\r\nlaxermedel\r\nlayout\r\nle\r\nleasa\r\nleasar\r\nleasing\r\nlebeman\r\nled\r\nleda\r\nledamot\r\nledande\r\nledarartikel\r\nledare\r\nledaren\r\nledarna\r\nledarskap\r\nledas\r\nledd\r\nledda\r\nledde\r\nleden\r\nleder\r\nlederna\r\nledet\r\nledig\r\nledighet\r\nledigt\r\nledning\r\nledningsförmåga\r\nledningsgrupp\r\nleds\r\nledsaga\r\nledsagar\r\nledsagare\r\nledsam\r\nledsamt\r\nledsen\r\nledstång\r\nledtråd\r\nledvärk\r\nleende\r\nleg\r\nlegal\r\nlegat\r\nlegation\r\nlegend\r\nlegering\r\nlegioner\r\nlegislatur\r\nlegitim\r\nlegitimation\r\nlegitimera\r\nlegitimerad\r\nlegitimerar\r\nlego\r\nlegosoldat\r\nleja\r\nlejd\r\nlejer\r\nlejon\r\nlejonen\r\nlejonet\r\nlejongropen\r\nlejonparten\r\nlejons\r\nlek\r\nleka\r\nlekamen\r\nlekande\r\nlekarna\r\nlekarnas\r\nleken\r\nleker\r\nlekfull\r\nlekis\r\nlekkamrat\r\nlekman\r\nlekmän\r\nlekotek\r\nlekpark\r\nlekplats\r\nleksak\r\nleksaker\r\nlekskola\r\nlektion\r\nlektioner\r\nlektor\r\nlektyr\r\nlem\r\nlemlästa\r\nlemlästar\r\nlemmar\r\nlemmarna\r\nlemonad\r\nlen\r\nlenare\r\nlenaste\r\nleninist\r\nlent\r\nleopard\r\nlepra\r\nler\r\nlera\r\nleret\r\nlergods\r\nlerig\r\nleriga\r\nlerklump\r\nlerkärl\r\nlerpöl\r\nlesbisk\r\nless\r\nlessna\r\nleta\r\nletal\r\nletande\r\nletar\r\nletat\r\nlett\r\nlettisk\r\nletts\r\nlev\r\nleva\r\nlevande\r\nlevandegjord\r\nlevandes\r\nlevat\r\nlevde\r\nleve\r\nlevebröd\r\nlever\r\nleverans\r\nleverantör\r\nleverera\r\nlevererar\r\nleverne\r\nlevernets\r\nlevitera\r\nlevnad\r\nlevnadens\r\nlevnads\r\nlevnadsbeskrivning\r\nlevnadsdag\r\nlevnadsdagen\r\nlevnadsstriden\r\nlevnadssätt\r\nlevnadsålder\r\nlevnadsår\r\nlevnadsåren\r\nlevrar\r\nlevs\r\nlevt\r\nlexikon\r\nlibanes\r\nliberal\r\nliberalism\r\nlibyer\r\nlicens\r\nlid\r\nlida\r\nlidande\r\nlidandes\r\nlidandet\r\nlidandets\r\nlidelse\r\nlidelsefull\r\nlidelsen\r\nlidelser\r\nlidelses\r\nliden\r\nlider\r\nliderlig\r\nlidit\r\nlie\r\nliera\r\nlierar\r\nlift\r\nliftar\r\nliga\r\nligatur\r\nligg\r\nligga\r\nliggande\r\nligger\r\nliggvagn\r\nligist\r\nlik\r\nlika\r\nlikaberättigad\r\nlikaberättigande\r\nlikadan\r\nlikadana\r\nlikadant\r\nlikafullt\r\nlikaledes\r\nlikalydande\r\nlikartad\r\nlikaså\r\nlikbetydande\r\nlikblek\r\nlike\r\nlikformig\r\nlikformighet\r\nlikgiltig\r\nlikgiltighet\r\nlikhet\r\nlikheten\r\nlikhetstecken\r\nlikna\r\nliknade\r\nliknande\r\nliknar\r\nliknelse\r\nliknelsen\r\nliknelser\r\nliknöjd\r\nlikord\r\nliksidig\r\nliksom\r\nlikt\r\nliktorn\r\nliktydig\r\nlikundersökare\r\nlikvid\r\nlikvidera\r\nlikviderad\r\nlikviderar\r\nlikviditet\r\nlikväl\r\nlikvärdig\r\nlikvärdighet\r\nlikvärdigt\r\nlikör\r\nlila\r\nlilja\r\nliljan\r\nliljans\r\nliljor\r\nliljorna\r\nlilla\r\nlille\r\nlillfinger\r\nlim\r\nlimit\r\nlimiterad\r\nlimma\r\nlimmar\r\nlimning\r\nlimpa\r\nlin\r\nlina\r\nlind\r\nlinda\r\nlindar\r\nlindat\r\nlindebarn\r\nlindra\r\nlindrar\r\nlindras\r\nlindrig\r\nlindring\r\nlineär\r\nlingon\r\nlingvist\r\nlingvistik\r\nlingvistisk\r\nlinjal\r\nlinje\r\nlinjedomare\r\nlinjen\r\nlinjerar\r\nlinjär\r\nlinka\r\nlinne\r\nlinnebyxor\r\nlinneskynke\r\nlinnet\r\nlins\r\nlipa\r\nlipar\r\nlipmes\r\nlipsill\r\nlira\r\nlirar\r\nlirare\r\nlirkar\r\nlisa\r\nlisma\r\nlismande\r\nlismar\r\nlist\r\nlista\r\nlistar\r\nlisten\r\nlistig\r\nlistigast\r\nlita\r\nlitande\r\nlitar\r\nlite\r\nliten\r\nliter\r\nlitet\r\nlitteratur\r\nlitteraturförteckning\r\nlitteraturlista\r\nlitterär\r\nliv\r\nliva\r\nlivad\r\nlivar\r\nlivas\r\nlivboj\r\nlive\r\nlivet\r\nlivets\r\nlivfull\r\nlivförsäkring\r\nlivgivande\r\nlivhanken\r\nlivlig\r\nlivligt\r\nlivlina\r\nlivmoder\r\nlivmoderhals\r\nlivnär\r\nlivnära\r\nlivnärd\r\nlivnärde\r\nlivrem\r\nlivrädd\r\nlivränta\r\nlivs\r\nlivsanden\r\nlivsdag\r\nlivsdagen\r\nlivsdagens\r\nlivserfarenhet\r\nlivsfara\r\nlivsfarlig\r\nlivsfarligt\r\nlivsfrågor\r\nlivsföring\r\nlivsglädje\r\nlivshotande\r\nlivskamrat\r\nlivskraft\r\nlivskvalitet\r\nlivskällans\r\nlivslevande\r\nlivslust\r\nlivslusten\r\nlivslång\r\nlivslängd\r\nlivsmedel\r\nlivsmod\r\nlivsmodet\r\nlivsström\r\nlivssyn\r\nlivstecken\r\nlivstid\r\nlivsträd\r\nlivsträdets\r\nlivsuppgift\r\nlivsverk\r\nlivsviktig\r\nlivsvisdom\r\nlivsåskådning\r\nlivvakt\r\nljud\r\nljuda\r\nljudband\r\nljuddämpare\r\nljuder\r\nljudet\r\nljudförorening\r\nljudhärmande\r\nljudit\r\nljudlig\r\nljudligt\r\nljudlös\r\nljudlöst\r\nljudnivå\r\nljudradio\r\nljuga\r\nljuger\r\nljum\r\nljumhet\r\nljumma\r\nljummen\r\nljumske\r\nljumt\r\nljung\r\nljunga\r\nljungande\r\nljus\r\nljusa\r\nljusan\r\nljusare\r\nljusaste\r\nljusen\r\nljusens\r\nljuset\r\nljusets\r\nljushuvud\r\nljushårig\r\nljuskrona\r\nljuskälla\r\nljusna\r\nljusnar\r\nljusning\r\nljuspunkt\r\nljusröd\r\nljussken\r\nljusstake\r\nljussvag\r\nljust\r\nljusår\r\nljuv\r\nljuva\r\nljuvast\r\nljuvaste\r\nljuvlig\r\nljuvliga\r\nljuvlige\r\nljuvlighet\r\nljuvligt\r\nljuvt\r\nljöd\r\nljög\r\nlo\r\nlobby\r\nlock\r\nlocka\r\nlockande\r\nlockar\r\nlockarna\r\nlockas\r\nlockbete\r\nlockelse\r\nlockig\r\nlockigt\r\nlockton\r\nlod\r\nlodade\r\nlodare\r\nlodis\r\nlodjur\r\nlodrät\r\nloft\r\nloftgång\r\nlog\r\nloge\r\nlogement\r\nloggbok\r\nlogi\r\nlogik\r\nlogisk\r\nlogiskt\r\nlogo\r\nlogoped\r\nlogotyp\r\nloj\r\nlojal\r\nlojalitet\r\nlok\r\nlokal\r\nlokalbedövning\r\nlokalisera\r\nlokaliserar\r\nlokalisering\r\nlokalradio\r\nlokalsamtal\r\nlokalvårdare\r\nlokomotiv\r\nlomhörd\r\nlomma\r\nlongitud\r\nloop\r\nlopp\r\nloppa\r\nloppet\r\nloppmarknad\r\nlort\r\nlortig\r\nloss\r\nlossa\r\nlossas\r\nlossat\r\nlot\r\nlots\r\nlotsa\r\nlotsar\r\nlott\r\nlotta\r\nlottad\r\nlottar\r\nlottdragning\r\nlotten\r\nlotter\r\nlotteri\r\nlottsedel\r\nlov\r\nlova\r\nlovad\r\nlovade\r\nlovande\r\nlovar\r\nlovat\r\nlovet\r\nlovets\r\nlovlig\r\nlovord\r\nlovorda\r\nlovordar\r\nlovprisa\r\nlovprisar\r\nlovsjung\r\nlovsjunga\r\nlovsjungas\r\nlovsjungen\r\nlovsjunger\r\nlovsång\r\nlovsången\r\nlovsångens\r\nlovsånger\r\nlovsångljud\r\nlovsångs\r\nlovsångsljud\r\nlovsångsord\r\nlovsångston\r\nlovsångstoner\r\nlovsäga\r\nlovvärd\r\nlubba\r\nLucia\r\nlucka\r\nluckrar\r\nludd\r\nluddig\r\nluddigt\r\nluden\r\nluder\r\nluffare\r\nlufsa\r\nlufsar\r\nluft\r\nlufta\r\nluftar\r\nluftbro\r\nluftdrag\r\nluften\r\nluftförorening\r\nluftig\r\nluftmadrass\r\nluftombyte\r\nluftrör\r\nluftrörskatarr\r\nluftslott\r\nluftstrupe\r\nlufttillförsel\r\nluftvärn\r\nlugg\r\nluggar\r\nluggsliten\r\nlugn\r\nlugna\r\nlugnande\r\nlugnar\r\nlugnaste\r\nlugnt\r\nlukas\r\nlukasevangeliet\r\nlukrativ\r\nlukt\r\nlukta\r\nluktade\r\nluktar\r\nlullig\r\nlummig\r\nlummiga\r\nlummigt\r\nlump\r\nlumpen\r\nlunar\r\nlunch\r\nluncha\r\nlunchrum\r\nlund\r\nlunden\r\nlundens\r\nlunder\r\nlunga\r\nlunginflammation\r\nlungsäck\r\nlunka\r\nlunkar\r\nlunta\r\nlur\r\nlura\r\nlurad\r\nlurade\r\nlurar\r\nluras\r\nlurendreja\r\nlurendrejare\r\nlurendrejeri\r\nlurifax\r\nlurig\r\nlurvig\r\nlus\r\nluska\r\nluskar\r\nluspank\r\nlussar\r\nlussekatt\r\nlust\r\nlusta\r\nlustar\r\nlustgas\r\nlustgård\r\nlustgårdens\r\nlusthus\r\nlustig\r\nlustiga\r\nlustighet\r\nlustigkurre\r\nlustigt\r\nlustspel\r\nlut\r\nluta\r\nlutande\r\nlutar\r\nlutfisk\r\nlutning\r\nluttrad\r\nluttring\r\nluva\r\nluxuös\r\nluxuöst\r\nlya\r\nlycka\r\nlyckad\r\nlyckades\r\nlyckan\r\nlyckas\r\nlyckats\r\nlycklig\r\nlyckliga\r\nlyckliggör\r\nlyckligt\r\nlyckligtvis\r\nlyckokast\r\nlyckosam\r\nlycksaliga\r\nlyckta\r\nlyckträff\r\nlyckönska\r\nlyckönskan\r\nlyckönskning\r\nlyd\r\nlyda\r\nlydas\r\nlydde\r\nlydelse\r\nlyder\r\nlydig\r\nlydighet\r\nlydnad\r\nlydnadsoffer\r\nlyft\r\nlyfta\r\nlyfte\r\nlyfter\r\nlyftes\r\nlyftkran\r\nlyfts\r\nlyhörd\r\nlyhört\r\nlykta\r\nlyktor\r\nlyktstolpe\r\nlymfa\r\nlymmel\r\nlynchar\r\nlynne\r\nlynnig\r\nlynniga\r\nlyra\r\nlyrik\r\nlyrisk\r\nlys\r\nlysa\r\nlysande\r\nlyse\r\nlyser\r\nlyses\r\nlysning\r\nlysrör\r\nlyss\r\nlyssna\r\nlyssnade\r\nlyssnande\r\nlyssnar\r\nlyssnare\r\nlyst\r\nlysta\r\nlyste\r\nlysten\r\nlyster\r\nlystnad\r\nlystrar\r\nlystring\r\nlyte\r\nlytt\r\nlytta\r\nlyx\r\nlyxig\r\nlåda\r\nlådvin\r\nlåg\r\nlåga\r\nlågan\r\nlågar\r\nlågkonjunktur\r\nlåglöneyrke\r\nlågmäld\r\nlågor\r\nlågorna\r\nlågpris\r\nlågsko\r\nlågstadium\r\nlågt\r\nlågtryck\r\nlågtstående\r\nlågvattenmärke\r\nlån\r\nlåna\r\nlånar\r\nlånat\r\nlånekort\r\nlåneköp\r\nlång\r\nlånga\r\nlångdragen\r\nlångfinger\r\nlångfranska\r\nlångfredag\r\nlångfredagens\r\nlångfristig\r\nlånggrund\r\nlångkörare\r\nlångpall\r\nlångrandig\r\nlångrandigt\r\nlångsam\r\nlångsamt\r\nlångsida\r\nlångsidan\r\nlångsiktig\r\nlångsint\r\nlångsträckt\r\nlångsynt\r\nlångsökt\r\nlångt\r\nlångtgående\r\nlångtidsvård\r\nlångtifrån\r\nlångtradare\r\nlångtråkig\r\nlångtråkigt\r\nlångvarig\r\nlångvarigt\r\nlångvård\r\nlångväga\r\nlångöra\r\nlåntagare\r\nlår\r\nlårben\r\nlås\r\nlåsa\r\nlåsanordning\r\nlåser\r\nlåst\r\nlåsta\r\nlåt\r\nlåta\r\nlåtar\r\nlåter\r\nlåtit\r\nlåtom\r\nlåtsa\r\nlåtsad\r\nlåtsas\r\nlåtsasmusik\r\nlä\r\nläbbig\r\nläck\r\nläcka\r\nläckage\r\nläcker\r\nläckerbit\r\nläckerhet\r\nläckerheter\r\nläckert\r\nläckor\r\nläder\r\nläge\r\nlägenhet\r\nlägenheten\r\nläger\r\nlägerplats\r\nlägerskola\r\nläget\r\nlägg\r\nlägga\r\nläggas\r\nlägger\r\nlägges\r\nläggning\r\nläggs\r\nläglig\r\nlägre\r\nlägrets\r\nlägst\r\nlägste\r\nläk\r\nläka\r\nläkande\r\nläkare\r\nläkaren\r\nläkarintyg\r\nläkarvård\r\nläkarvårdstaxa\r\nläkas\r\nläkedom\r\nläkedomen\r\nläkemedel\r\nläkemedelsbutik\r\nläkemedelsförsäkring\r\nläkemedelskort\r\nläkemedelsrabatt\r\nläker\r\nläks\r\nläkt\r\nläkta\r\nläktare\r\nläktes\r\nläkts\r\nlämna\r\nlämnad\r\nlämnade\r\nlämnar\r\nlämnas\r\nlämnat\r\nlämnats\r\nlämning\r\nlämpa\r\nlämpad\r\nlämpar\r\nlämplig\r\nlämpliga\r\nlämplighet\r\nlämpligt\r\nlän\r\nlända\r\nländer\r\nländernas\r\nlänga\r\nlängd\r\nlängdhopp\r\nlänge\r\nlängesedan\r\nlängre\r\nlängs\r\nlängst\r\nlängta\r\nlängtan\r\nlängtande\r\nlängtans\r\nlängtansfull\r\nlängtansfullt\r\nlängtar\r\nlängtat\r\nlänk\r\nlänkarna\r\nlänkas\r\nlänsa\r\nlänsar\r\nlänsarbetsnämnd\r\nlänsman\r\nlänsrätt\r\nlänsskolnämnd\r\nlänsstyrelse\r\nlänstol\r\nläpp\r\nläppar\r\nläpparna\r\nläppars\r\nläppjar\r\nlär\r\nlära\r\nläraktig\r\nlärande\r\nlärare\r\nlärarinna\r\nlärarna\r\nlärarrum\r\nläras\r\nlärd\r\nlärda\r\nlärde\r\nlärdom\r\nlärjungar\r\nlärjungarna\r\nlärjungarnas\r\nlärjungars\r\nlärjungaskara\r\nlärjungaskaran\r\nlärjunge\r\nlärjungen\r\nlärka\r\nlärkan\r\nlärkornas\r\nlärling\r\nläroanstalt\r\nlärobok\r\nläromedel\r\nläromästare\r\nläroplan\r\nläror\r\nlärorik\r\nlärorna\r\nlärorum\r\nlärosäte\r\nlärt\r\nläsa\r\nläsare\r\nläsebok\r\nläsekrets\r\nläser\r\nläsk\r\nläskar\r\nläskeblask\r\nläskedryck\r\nläskig\r\nläskpapper\r\nläslig\r\nläslus\r\nläsning\r\nläspar\r\nläst\r\nläste\r\nläsår\r\nlät\r\nläte\r\nlätt\r\nlätta\r\nlättad\r\nlättar\r\nlättare\r\nlättat\r\nlättfattlig\r\nlättfotad\r\nlättförståelig\r\nlätthantering\r\nlätthanterlig\r\nlätthet\r\nlättillgänglig\r\nlättirriterad\r\nlättja\r\nlättköpt\r\nlättlurad\r\nlättlärd\r\nlättnad\r\nlättnar\r\nlättretad\r\nlättretlig\r\nlättsam\r\nlättsinnig\r\nlättskött\r\nlättstött\r\nlättvindig\r\nlättöl\r\nläxa\r\nlöd\r\nlödder\r\nlöddrar\r\nlöder\r\nlöfte\r\nlöften\r\nlöftena\r\nlöftens\r\nlöftes\r\nlöfteslandet\r\nlöftesord\r\nlöftesorden\r\nlöftesrik\r\nlöftesrika\r\nlöftessalen\r\nlöftet\r\nlöftets\r\nlöga\r\nlögn\r\nlögnaktig\r\nlögnaktighet\r\nlögnare\r\nlögnaren\r\nlögnarna\r\nlögnen\r\nlögnens\r\nlögner\r\nlögnerska\r\nlögnhals\r\nlöja\r\nlöje\r\nlöjeväckande\r\nlöjlig\r\nlöjtnant\r\nlök\r\nlökar\r\nlömsk\r\nlön\r\nlöna\r\nlönande\r\nlönar\r\nlöneanspråk\r\nlönearbetare\r\nlöneavdrag\r\nlönebidrag\r\nlöneförhöjning\r\nlöneglidning\r\nlönegrad\r\nlöneklass\r\nlönelyft\r\nlönen\r\nlönetillägg\r\nlöning\r\nlönlös\r\nlönlöst\r\nlönn\r\nlönnmord\r\nlönnmördare\r\nlönsam\r\nlönsamhet\r\nlönt\r\nlöntagare\r\nlöntagarfond\r\nlöpa\r\nlöpande\r\nlöpare\r\nlöparen\r\nlöparna\r\nlöparsko\r\nlöpartävling\r\nlöpeld\r\nlöper\r\nlöpning\r\nlöpsedel\r\nlördag\r\nlös\r\nlösa\r\nlösaktig\r\nlösdrivare\r\nlösegendom\r\nlösen\r\nlösenbelopp\r\nlösenord\r\nlösensumma\r\nlöser\r\nlöses\r\nlösesumma\r\nlösgjorde\r\nlösgöra\r\nlösning\r\nlösningar\r\nlösningen\r\nlösningsmedel\r\nlösnummer\r\nlösryckt\r\nlöss\r\nlössläppt\r\nlöst\r\nlösta\r\nlöste\r\nlösts\r\nlösöre\r\nlöv\r\nlövas\r\nlövbiff\r\nlövhyddefest\r\nlövhyddefesten\r\nlövträd\r\nlövverk\r\nmack\r\nmacka\r\nmackapär\r\nmackjärn\r\nmadam\r\nmadonna\r\nmadrass\r\nmaffia\r\nmaffig\r\nmagasin\r\nmagasinera\r\nmage\r\nmager\r\nmagerlagd\r\nmagi\r\nmagik\r\nmagiker\r\nmagisk\r\nmagister\r\nmagkatarr\r\nmagknip\r\nmagkänsla\r\nmagnecyl\r\nmagnet\r\nmagnetiserar\r\nmagnetisk\r\nmagnifik\r\nmagnolia\r\nmagont\r\nmagra\r\nmagrar\r\nmagrat\r\nmagstark\r\nmagsår\r\nmagsäck\r\nmahogny\r\nmaj\r\nmajblomma\r\nmajestät\r\nmajestätisk\r\nmajestätiska\r\nmajestätiskt\r\nmajonnäs\r\nmajor\r\nmajoritet\r\nmajoriteten\r\nmajs\r\nmajstång\r\nmak\r\nmaka\r\nmakaber\r\nmakadam\r\nmakalös\r\nmakalöst\r\nmakar\r\nmakaroner\r\nmake\r\nmaklig\r\nmakrill\r\nmakt\r\nmakten\r\nmakter\r\nmakterna\r\nmakternas\r\nmakters\r\nmaktfaktor\r\nmaktfullkomlig\r\nmaktgalen\r\nmakthavare\r\nmakthavaren\r\nmaktkamp\r\nmaktlysten\r\nmaktlös\r\nmaktlösa\r\nmaktlöses\r\nmaktlöshet\r\nmaktlöst\r\nmaktspråk\r\nmakulerad\r\nmakulerar\r\nmal\r\nmala\r\nmalaj\r\nmaler\r\nmalet\r\nmalign\r\nmall\r\nmallar\r\nmallig\r\nmalm\r\nmalplacerad\r\nmalpåse\r\nmalt\r\nmalör\r\nmalört\r\nmamma\r\nmammografi\r\nmammon\r\nmammorna\r\nman\r\nmana\r\nmanagement\r\nmanager\r\nmanande\r\nmanar\r\nmanat\r\nmanbyggnad\r\nmanchester\r\nmandarin\r\nmandat\r\nmandel\r\nmandolin\r\nmandråpare\r\nmaner\r\nmanér\r\nmanet\r\nmanfall\r\nmangel\r\nmangla\r\nmanglar\r\nmangrant\r\nmanhaftig\r\nmani\r\nmanick\r\nmanifest\r\nmanifestation\r\nmanifestera\r\nmaning\r\nmanipulera\r\nmanipulerar\r\nmankemang\r\nmankera\r\nmankerar\r\nmanlig\r\nmanligt\r\nmanna\r\nmannagryn\r\nmannaminne\r\nmannat\r\nmannekäng\r\nmannen\r\nmans\r\nmanschett\r\nmanskap\r\nmanstark\r\nmansvälde\r\nmantalslängd\r\nmantalsskriver\r\nmantalsskrivning\r\nmantel\r\nmantlar\r\nmanual\r\nmanuell\r\nmanuellt\r\nmanufaktur\r\nmanus\r\nmanuskript\r\nmanöver\r\nmanövrera\r\nmanövrerar\r\nmapp\r\nmaraton\r\nmardröm\r\nmardrömmar\r\nmargarin\r\nmarginal\r\nmarginalen\r\nmarginalskatt\r\nmarginell\r\nmaria\r\nmarias\r\nmarig\r\nmarigt\r\nmarijuana\r\nmarin\r\nmarinad\r\nmarinblå\r\nmarionett\r\nmarionettdocka\r\nmark\r\nmarkant\r\nmarken\r\nmarkens\r\nmarker\r\nmarkera\r\nmarkerad\r\nmarkerar\r\nmarkering\r\nmarketing\r\nmarkis\r\nmarknad\r\nmarknadsekonomi\r\nmarknadsför\r\nmarknadsföring\r\nmarknadsföringslagen\r\nmarknadsmässig\r\nmarknadspris\r\nmarktjänst\r\nmarkus\r\nmarkusevangeliet\r\nmarmelad\r\nmarmor\r\nmarockan\r\nmarockansk\r\nmarodör\r\nmars\r\nmarsch\r\nmarschall\r\nmarschera\r\nmarscherar\r\nmarsipan\r\nmarskalk\r\nmarsvin\r\nmartyr\r\nmartyrer\r\nmartyrers\r\nmarxism\r\nmarxist\r\nmarxistisk\r\nmaräng\r\nmas\r\nmasar\r\nmascara\r\nmask\r\nmaska\r\nmaskar\r\nmaskara\r\nmaskarna\r\nmaskera\r\nmaskerad\r\nmaskerar\r\nmaskering\r\nmaskin\r\nmaskinell\r\nmaskineri\r\nmaskingevär\r\nmaskinist\r\nmaskinpark\r\nmaskinskrivning\r\nmaskning\r\nmaskopi\r\nmaskot\r\nmaskros\r\nmaskulin\r\nmaskulinum\r\nmasochist\r\nmassa\r\nmassage\r\nmassageterapeut\r\nmassaker\r\nmassakrerar\r\nmasscentrum\r\nmasserar\r\nmassiv\r\nmassmedium\r\nmassmord\r\nmassor\r\nmassvis\r\nmassören\r\nmast\r\nmastig\r\nmastodontisk\r\nmat\r\nmata\r\nmatar\r\nmatarbuss\r\nmatberedare\r\nmatbespisning\r\nmatbestick\r\nmatbit\r\nmatch\r\nmatcha\r\nmatchar\r\nmatematik\r\nmatematisk\r\nmaten\r\nmateria\r\nmaterial\r\nmaterialism\r\nmaterialist\r\nmaterias\r\nmateriel\r\nmateriell\r\nmateriellt\r\nmathållning\r\nmatiné\r\nmatjessill\r\nmatkällare\r\nmatlagare\r\nmatlagning\r\nmatlust\r\nmatmor\r\nmatnyttig\r\nmatros\r\nmatrum\r\nmaträtt\r\nmatsal\r\nmatsedel\r\nmatsilver\r\nmatsked\r\nmatsmältning\r\nmatställe\r\nmatsäck\r\nmatt\r\nmatta\r\nmattas\r\nmatte\r\nmatteus\r\nmatteusevangeliet\r\nmatthet\r\nmatvana\r\nmatvrak\r\nmatvägrare\r\nmax\r\nmaximal\r\nmaximum\r\nmazarin\r\nmed\r\nmedalj\r\nmedaljong\r\nmedan\r\nmedans\r\nmedansvar\r\nmedarbetare\r\nmedarvingar\r\nmedbestämmande\r\nmedbestämmandelagen\r\nmedborgare\r\nmedborgarskap\r\nmedborgerlig\r\nmeddela\r\nmeddelande\r\nmeddelandet\r\nmeddelar\r\nmeddelat\r\nmeddelsam\r\nmedel\r\nmedelklass\r\nmedelmåtta\r\nmedelmåttig\r\nmedelmåttigt\r\nMedelpad\r\nmedelpunkt\r\nmedelst\r\nmedelstor\r\nmedeltal\r\nmedeltid\r\nmedelväg\r\nmedelvärde\r\nmedelålder\r\nmedelålders\r\nmedfaren\r\nmedfödd\r\nmedföljer\r\nmedför\r\nmedföra\r\nmedge\r\nmedger\r\nmedgiva\r\nmedgivande\r\nmedgång\r\nmedgörlig\r\nmedhjälpare\r\nmedhåll\r\nmedhårs\r\nmedia\r\nmedicin\r\nmedicinare\r\nmedicinerar\r\nmedicinsk\r\nmedikament\r\nmedinflytande\r\nmedioker\r\nmedisterkorv\r\nmeditation\r\nmediterar\r\nmedium\r\nmedkänna\r\nmedkännande\r\nmedkänsla\r\nmedlar\r\nmedlem\r\nmedlemmar\r\nmedley\r\nmedlidande\r\nmedlidsam\r\nmedljud\r\nmedlöpare\r\nmedmänniska\r\nmedmänniskor\r\nmedmänsklig\r\nmedryckande\r\nmedräknad\r\nmedräknat\r\nmedskicka\r\nmedskyldig\r\nmedsols\r\nmedspelare\r\nmedtaga\r\nmedtagen\r\nmedtävlande\r\nmedtävlare\r\nmedverka\r\nmedverkan\r\nmedverkande\r\nmedverkar\r\nmedvetande\r\nmedveten\r\nmedvetenhet\r\nmedvetet\r\nmedvetslös\r\nmedvetslösa\r\nmedvind\r\nmedvurst\r\nmedömkan\r\nmegafon\r\nmej\r\nmejar\r\nmejeri\r\nmejl\r\nmejla\r\nmejlbox\r\nmejsel\r\nmejslar\r\nmekaniker\r\nmekanisk\r\nmekanism\r\nmekar\r\nmelankoli\r\nmelankoli\r\nmelankolis\r\nmelankolisk\r\nmelerad\r\nmellan\r\nmellanakt\r\nmellangärde\r\nmellanhand\r\nmellanhavande\r\nmellanlandar\r\nmellanmål\r\nmellanrum\r\nmellanskillnad\r\nmellanslag\r\nmellanspel\r\nmellanstadium\r\nmellanstor\r\nmellanting\r\nmellersta\r\nmelodi\r\nmelodier\r\nmelodin\r\nmelodramatisk\r\nmelon\r\nmeloner\r\nmembran\r\nmemoarer\r\nmemorera\r\nmemorial\r\nmen\r\nmena\r\nmenad\r\nmenade\r\nmenande\r\nmenar\r\nmened\r\nmenig\r\nmening\r\nmeningar\r\nmeningen\r\nmeningit\r\nmeningsfull\r\nmeningsfullt\r\nmeningslös\r\nmeningslösa\r\nmeningslöst\r\nmeningsskiljaktighet\r\nmeningsskiljaktigheter\r\nmenisk\r\nmenlig\r\nmenlös\r\nmens\r\nmensskydd\r\nmenstruation\r\nmental\r\nmentalitet\r\nmentalsjuk\r\nmentalt\r\nmentalvård\r\nmentor\r\nmeny\r\nmer\r\nmera\r\nmeridian\r\nmerit\r\nmeriterad\r\nmerpart\r\nmersmak\r\nmervärdeskatt\r\nmes\r\nmesig\r\nmesost\r\nmessias\r\nmest\r\nmesta\r\nmestadels\r\nmetabolism\r\nmetafor\r\nmetafysisk\r\nmetall\r\nmetallarbetare\r\nmetamorfos\r\nmetanol\r\nmetar\r\nmeteorolog\r\nmeteorologi\r\nmeter\r\nmetod\r\nmetodisk\r\nmetodist\r\nmetropol\r\nmexikan\r\nmexikaner\r\nmiddag\r\nmiddagsmål\r\nmiddagsmåltid\r\nmiddagssken\r\nmiddagstid\r\nmidja\r\nmidnatt\r\nmidnattens\r\nmidnatts\r\nmidnattsblå\r\nmidsommar\r\nmidsommarstång\r\nmig\r\nmigration\r\nmigrera\r\nmigrering\r\nmigrän\r\nmika\r\nmikrofon\r\nmikroskop\r\nmikrovågsugn\r\nmil\r\nmild\r\nmilda\r\nmildaste\r\nmilde\r\nmildhet\r\nmildhets\r\nmildra\r\nmildrar\r\nmilitant\r\nmilitär\r\nmilitärförläggning\r\nmilitärgrön\r\nmilitärtjänst\r\nmilitärtjänstgöring\r\nmiljard\r\nmiljarder\r\nmiljon\r\nmiljoner\r\nmiljonär\r\nmiljö\r\nmiljöförstörare\r\nmiljön\r\nmilkshake\r\nmilliliter\r\nmillimeter\r\nmillimeterrättvisa\r\nmilstolpe\r\nmilt\r\nmimik\r\nmin\r\nmina\r\nmindervärdeskomplex\r\nminderårig\r\nmindre\r\nminer\r\nmineral\r\nmineraler\r\nmineralvatten\r\nmini\r\nminiatyr\r\nminimal\r\nminimikrofon\r\nminimum\r\nminiräknare\r\nminister\r\nministerium\r\nministär\r\nmink\r\nminnas\r\nminne\r\nminnen\r\nminnes\r\nminnesbeta\r\nminnesmärke\r\nminnesrik\r\nminnet\r\nminns\r\nminoritet\r\nminsann\r\nminska\r\nminskande\r\nminskar\r\nminskning\r\nminspel\r\nminst\r\nminsta\r\nminste\r\nminus\r\nminut\r\nminuter\r\nminuterna\r\nminutiös\r\nminutiöst\r\nmirakel\r\nmirakulös\r\nmisantrop\r\nmischmasch\r\nmiserabel\r\nmiss\r\nmissa\r\nmissakta\r\nmissaktning\r\nmissanpassad\r\nmissar\r\nmissat\r\nmissbedöma\r\nmissbedömning\r\nmissbelåten\r\nmissbelåtenhet\r\nmissbildad\r\nmissbildning\r\nmissbruk\r\nmissbruka\r\nmissbrukar\r\nmissbrukare\r\nmissdåd\r\nmissdådare\r\nmisse\r\nmissfall\r\nmissfoster\r\nmissförhållande\r\nmissförstå\r\nmissförstådd\r\nmissförstådda\r\nmissförstånd\r\nmissförstår\r\nmissgrepp\r\nmissgynnad\r\nmissgynnar\r\nmissgärning\r\nmisshandel\r\nmisshandla\r\nmisshandlade\r\nmisshandlar\r\nmisshushållning\r\nmissil\r\nmission\r\nmissionen\r\nmissionera\r\nmissionsbefallningen\r\nmissionshus\r\nmissionärer\r\nmisskreditera\r\nmisskund\r\nmisskänd\r\nmissköta\r\nmissköter\r\nmisskötsam\r\nmisskötsel\r\nmissleda\r\nmissleder\r\nmissljud\r\nmisslyckad\r\nmisslyckades\r\nmisslyckande\r\nmisslyckas\r\nmisslyckat\r\nmisslyckats\r\nmisslynt\r\nmissminna\r\nmissminner\r\nmissmod\r\nmissmodig\r\nmissnöjd\r\nmissnöjda\r\nmissnöje\r\nmissriktad\r\nmissräknar\r\nmissräkning\r\nmisstag\r\nmisstaga\r\nmisstanke\r\nmisstar\r\nmisstolka\r\nmisstrivas\r\nmisstro\r\nmisstroende\r\nmisstroendeförklaring\r\nmisstrogen\r\nmisstroget\r\nmisstror\r\nmisströsta\r\nmisströstans\r\nmisströstar\r\nmisstyckande\r\nmisstycker\r\nmisstänka\r\nmisstänker\r\nmisstänksam\r\nmisstänksamhet\r\nmisstänkt\r\nmissunnar\r\nmissunnsam\r\nmissunnsamhet\r\nmissuppfatta\r\nmissuppfattade\r\nmissuppfattar\r\nmissuppfattning\r\nmissvisande\r\nmissväxt\r\nmissämja\r\nmissöde\r\nmist\r\nmista\r\nmiste\r\nmister\r\nmisär\r\nmitella\r\nmitra\r\nmitt\r\nmittemot\r\nmitten\r\nmittenpartierna\r\nmittpunkt\r\nmix\r\nmixa\r\nmixad\r\nmixer\r\nmixtur\r\nmjugg\r\nmjuk\r\nmjuka\r\nmjukar\r\nmjukhet\r\nmjukisdjur\r\nmjuklandar\r\nmjuknar\r\nmjukt\r\nmjukvara\r\nmjäk\r\nmjäkig\r\nmjäll\r\nmjälte\r\nmjälthugg\r\nmjöl\r\nmjölet\r\nmjölk\r\nmjölka\r\nmjölkaffär\r\nmjölkar\r\nmjölkbutik\r\nmjölke\r\nmjölksocker\r\nmjölktand\r\nmjölkört\r\nmobb\r\nmobba\r\nmobbad\r\nmobbar\r\nmobil\r\nmobilisera\r\nmobiliserar\r\nmobiltelefon\r\nmocka\r\nmockar\r\nmockasin\r\nmod\r\nmodd\r\nmode\r\nmodelejon\r\nmodell\r\nmodellering\r\nmodem\r\nmodemedveten\r\nmoder\r\nmoderat\r\nmoderaterna\r\nmoderbolag\r\nmoderiktig\r\nmoderland\r\nmoderliv\r\nmodern\r\nmodernare\r\nmodernisera\r\nmoderniserar\r\nmodernt\r\nmoders\r\nmodersfamn\r\nmodersfamnen\r\nmoderskap\r\nmodersmjölk\r\nmodersmål\r\nmodest\r\nmodet\r\nmodfälld\r\nmodfälldhet\r\nmodifiera\r\nmodifierar\r\nmodifiering\r\nmodifikation\r\nmodig\r\nmodiga\r\nmodigt\r\nmodlös\r\nmodlöse\r\nmodlöshet\r\nmodlöst\r\nmods\r\nmodstulen\r\nmodul\r\nmogen\r\nmoget\r\nmogna\r\nmognad\r\nmognar\r\nmognat\r\nmoj\r\nmojna\r\nmojnar\r\nmojäng\r\nmola\r\nmolande\r\nmolar\r\nmolekyl\r\nmoll\r\nmoln\r\nmolnen\r\nmolnens\r\nmolnet\r\nmolnfritt\r\nmolnig\r\nmolnskyar\r\nmolnstod\r\nmolntäckt\r\nmoloken\r\nmomangen\r\nmoment\r\nmomentan\r\nmoms\r\nmonark\r\nmonarki\r\nmongolism\r\nmongoloid\r\nmonitor\r\nmonogami\r\nmonogram\r\nmonolog\r\nmonopol\r\nmonoton\r\nmonster\r\nmonstruös\r\nmontage\r\nmonter\r\nmontera\r\nmonterar\r\nmontör\r\nmonument\r\nmoped\r\nmopedist\r\nmoppa\r\nmoppe\r\nmops\r\nmor\r\nmoraklocka\r\nmoral\r\nmoraliserar\r\nmoralisk\r\nmoralkaka\r\nmorbid\r\nmorbroder\r\nmorbror\r\nmord\r\nmorfar\r\nmorfin\r\nmorföräldrar\r\nmorgnar\r\nmorgon\r\nmorgondag\r\nmorgondagen\r\nmorgondagens\r\nmorgondaggens\r\nmorgonen\r\nmorgonens\r\nmorgonglans\r\nmorgonglöd\r\nmorgonglöden\r\nmorgongryning\r\nmorgonland\r\nmorgonljus\r\nmorgonljuset\r\nmorgonluft\r\nmorgonmål\r\nmorgonriket\r\nmorgonrodnad\r\nmorgonrodnaden\r\nmorgons\r\nmorgonsamling\r\nmorgonskyn\r\nmorgonsolens\r\nmorgonstjärna\r\nmorgonstjärnan\r\nmorgonstund\r\nmorgonstunder\r\nmorgonsången\r\nmorgontimma\r\nmorgonväkt\r\nmorgonväkten\r\nmoring\r\nmormor\r\nmorot\r\nmorrar\r\nmors\r\nmorsa\r\nmorsan\r\nmorse\r\nmorsealfabet\r\nmorsgris\r\nmorsk\r\nmorskhet\r\nmorsning\r\nmortalitet\r\nmortel\r\nmorötter\r\nmos\r\nmosa\r\nmosaik\r\nmosaisk\r\nmosar\r\nmose\r\nmosebok\r\nmoseboken\r\nmoses\r\nmoské\r\nmossa\r\nmosse\r\nmossig\r\nmoster\r\nmot\r\nmota\r\nmotar\r\nmotarbeta\r\nmotarbetar\r\nmotbevisa\r\nmotbild\r\nmotbjudande\r\nmotbok\r\nmotell\r\nmotgift\r\nmotgång\r\nmotgångar\r\nmotgångens\r\nmothugg\r\nmotig\r\nmotion\r\nmotionera\r\nmotiv\r\nmotivation\r\nmotivera\r\nmotiverad\r\nmotiverar\r\nmotlut\r\nmotor\r\nmotorcykel\r\nmotorcykelförare\r\nmotorcyklist\r\nmotorfordon\r\nmotorförare\r\nmotortrafikled\r\nmotorvelociped\r\nmotorväg\r\nmotpart\r\nmotpartens\r\nmotpol\r\nmotsagt\r\nmotsats\r\nmotsatsen\r\nmotsatsförhållande\r\nmotsatt\r\nmotsols\r\nmotspelare\r\nmotspänstig\r\nmotstridande\r\nmotstridig\r\nmotsträvig\r\nmotsträvigare\r\nmotstycke\r\nmotstå\r\nmotstånd\r\nmotståndare\r\nmotståndskraft\r\nmotståndskraftig\r\nmotstår\r\nmotstått\r\nmotsvarande\r\nmotsvarar\r\nmotsvarighet\r\nmotsäga\r\nmotsägande\r\nmotsägelse\r\nmotsägelsefull\r\nmotsägelsefullt\r\nmotsäger\r\nmotsättning\r\nmott\r\nmotta\r\nmottag\r\nmottaga\r\nmottagande\r\nmottagare\r\nmottagas\r\nmottaglig\r\nmottaglighet\r\nmottagning\r\nmottagningsbevis\r\nmottar\r\nmotto\r\nmotvalls\r\nmotverka\r\nmotverkar\r\nmotvikt\r\nmotvilja\r\nmotvillig\r\nmotvilligt\r\nmotvind\r\nmotvärn\r\nmotåtgärd\r\nmountainbike\r\nmousse\r\nmucka\r\nmuckar\r\nmuddrar\r\nmuff\r\nmuffins\r\nmugg\r\nmuggen\r\nmuhammedan\r\nmula\r\nmulatt\r\nmule\r\nmulen\r\nmulet\r\nmull\r\nmullbärsfikonträdets\r\nmullen\r\nmuller\r\nmullig\r\nmullra\r\nmullrar\r\nmullvad\r\nmulna\r\nmulnar\r\nmultikörning\r\nmultilateral\r\nmultinationell\r\nmultipel\r\nmultiplicerar\r\nmultiplikation\r\nmultnar\r\nmumie\r\nmumla\r\nmumlar\r\nmummel\r\nmums\r\nmumsa\r\nmumsar\r\nmumsig\r\nmumsigt\r\nmun\r\nmundering\r\nmungiga\r\nmungipa\r\nmunhuggas\r\nmunhuggs\r\nmunk\r\nmunkavle\r\nmunkorg\r\nmunnar\r\nmuns\r\nmunsbit\r\nmunskydd\r\nmunskänk\r\nmunspel\r\nmunstycke\r\nmunter\r\nmuntergök\r\nmunterhet\r\nmuntlig\r\nmuntligt\r\nmuntrar\r\nmunväder\r\nmur\r\nmura\r\nmurade\r\nmurar\r\nmurare\r\nmurarna\r\nmurbruk\r\nmuren\r\nmurgröna\r\nmurken\r\nmurkla\r\nmurkna\r\nmurknande\r\nmurvel\r\nmus\r\nmuseum\r\nmusicera\r\nmusik\r\nmusikal\r\nmusikalisk\r\nmusikant\r\nmusikdirektör\r\nmusiken\r\nmusiker\r\nmusikinstrument\r\nmusikkår\r\nmuskel\r\nmuskelvävnad\r\nmuskulatur\r\nmuskulös\r\nmusköt\r\nmuslim\r\nmuslimsk\r\nmuspekare\r\nmussla\r\nmust\r\nmustasch\r\nmustig\r\nmuta\r\nmutar\r\nmutas\r\nmutat\r\nmutation\r\nmutkolv\r\nmutor\r\nmutter\r\nmuttra\r\nmuttrar\r\nmycken\r\nmyckenhet\r\nmycket\r\nmygel\r\nmygg\r\nmygga\r\nmygla\r\nmyglar\r\nmylla\r\nmyllas\r\nmyller\r\nmyllra\r\nmyllrar\r\nmyllret\r\nmyndig\r\nmyndigförklarad\r\nmyndighet\r\nmynnar\r\nmynning\r\nmynt\r\nmynta\r\nmyntar\r\nmyr\r\nmyra\r\nmyran\r\nmyriader\r\nmyrra\r\nmyrstack\r\nmys\r\nmysa\r\nmyser\r\nmysig\r\nmysiga\r\nmysigt\r\nmysko\r\nmysli\r\nmysteriet\r\nmysterium\r\nmysteriös\r\nmystisk\r\nmystiskt\r\nmyt\r\nmyteri\r\nmytgestalt\r\nmytologi\r\nmytoman\r\nmå\r\nmåfå\r\nmåg\r\nmåhända\r\nmål\r\nmåla\r\nmålande\r\nmålar\r\nmålare\r\nmålat\r\nmålbrott\r\nmålen\r\nmålet\r\nmålgörare\r\nmållös\r\nmålmedveten\r\nmålning\r\nmålskytt\r\nmålsman\r\nmålsägande\r\nmålsättning\r\nmåltavla\r\nmåltid\r\nmåltiden\r\nmån\r\nmånad\r\nmånaden\r\nmånader\r\nmånadslön\r\nmånadsvis\r\nmånar\r\nmånatlig\r\nmånatligen\r\nmåndag\r\nmånde\r\nmåne\r\nmånen\r\nmånens\r\nmånga\r\nmångahanda\r\nmångas\r\nmången\r\nmångfacetterad\r\nmångfald\r\nmångfalden\r\nmångfaldig\r\nmångfasetterad\r\nmångordig\r\nmångsidig\r\nmångstämmigt\r\nmångtaliga\r\nmångtusen\r\nmångtusende\r\nmångtydig\r\nmånljus\r\nmånne\r\nmånntro\r\nmår\r\nmås\r\nmåst\r\nmåsta\r\nmåste\r\nmått\r\nmåtta\r\nmåttband\r\nmåtte\r\nmåttfullhet\r\nmåttlig\r\nmåttlighet\r\nmåttligt\r\nmåtto\r\nmåttstock\r\nmäklare\r\nmäkta\r\nmäktar\r\nmäktig\r\nmäktiga\r\nmäktigaste\r\nmäktige\r\nmäktigt\r\nmän\r\nmängd\r\nmängden\r\nmänniska\r\nmänniskan\r\nmänniskans\r\nmänniskas\r\nmänniskobarn\r\nmänniskobarnen\r\nmänniskofientlig\r\nmänniskogestalt\r\nmänniskohänder\r\nmänniskoliv\r\nmänniskonaturen\r\nmänniskor\r\nmänniskorna\r\nmänniskornas\r\nmänniskorov\r\nmänniskors\r\nmänniskosläktet\r\nmänniskoson\r\nmänniskosonen\r\nmänniskovärlden\r\nmänska\r\nmänskan\r\nmänskans\r\nmänskas\r\nmänsklig\r\nmänskliga\r\nmänsklighet\r\nmänskligheten\r\nmänskligt\r\nmänskobarn\r\nmänskobröst\r\nmänskobud\r\nmänskogestalt\r\nmänskohjärta\r\nmänskohänder\r\nmänskokärlek\r\nmänskor\r\nmänskorna\r\nmänskornas\r\nmänskors\r\nmänskoröst\r\nmänskoskaror\r\nmänskosläkt\r\nmänskoson\r\nmänskosonen\r\nmänskosonens\r\nmänskovimlet\r\nmänskovärlden\r\nmänskoöden\r\nmärg\r\nmärka\r\nmärkas\r\nmärkbar\r\nmärke\r\nmärken\r\nmärker\r\nmärket\r\nmärklig\r\nmärklighet\r\nmärkligt\r\nmärkning\r\nmärkt\r\nmärkta\r\nmärkte\r\nmärkvärdig\r\nmärr\r\nmässa\r\nmässing\r\nmässingsinstrument\r\nmässling\r\nmästare\r\nmästaren\r\nmästarens\r\nmästares\r\nmästarinna\r\nmästarns\r\nmäster\r\nmästerlig\r\nmästerskap\r\nmästerverk\r\nmästra\r\nmästrar\r\nmät\r\nmäta\r\nmätare\r\nmätas\r\nmäter\r\nmätinstrument\r\nmätning\r\nmätt\r\nmätta\r\nmättad\r\nmättar\r\nmättas\r\nmättat\r\nmätte\r\nmättnad\r\nmö\r\nmöbel\r\nmöblemang\r\nmöbler\r\nmöblera\r\nmöblerar\r\nmöda\r\nmödan\r\nmödans\r\nmöderne\r\nmödom\r\nmödomshinna\r\nmödor\r\nmödosam\r\nmödosamt\r\nmödrar\r\nmödrarna\r\nmödraundervisning\r\nmödravårdscentral\r\nmögel\r\nmöglar\r\nmöglig\r\nmöhippa\r\nmöjlig\r\nmöjliga\r\nmöjligen\r\nmöjliggör\r\nmöjlighet\r\nmöjligheten\r\nmöjligheter\r\nmöjligt\r\nmöjligtvis\r\nmölla\r\nmönster\r\nmönstergill\r\nmönstra\r\nmönstrade\r\nmönstrar\r\nmönstrats\r\nmönstringen\r\nmör\r\nmörbulta\r\nmörbultad\r\nmörda\r\nmördad\r\nmördande\r\nmördar\r\nmördare\r\nmördas\r\nmördat\r\nmördeg\r\nmörk\r\nmörka\r\nmörkaste\r\nmörkblå\r\nmörker\r\nmörkhyad\r\nmörklagd\r\nmörklägger\r\nmörkna\r\nmörknad\r\nmörknar\r\nmörkren\r\nmörkret\r\nmörkrets\r\nmörkrädd\r\nmörkt\r\nmört\r\nmöss\r\nmössa\r\nmöt\r\nmöta\r\nmötande\r\nmötas\r\nmöte\r\nmöten\r\nmöter\r\nmötes\r\nmötesdokument\r\nmötesplats\r\nmötet\r\nmöts\r\nmött\r\nmötte\r\nmöttes\r\nmötts\r\nnabo\r\nnackar\r\nnackdel\r\nnacke\r\nnacken\r\nnackspärr\r\nnafs\r\nnafsar\r\nnagel\r\nnagelfar\r\nnagelfara\r\nnaggande\r\nnaggar\r\nnaglades\r\nnaglar\r\nnaglarna\r\nnahum\r\nnaiv\r\nnaken\r\nnakenhet\r\nnaket\r\nnakna\r\nnakne\r\nnalkar\r\nnalkas\r\nnalla\r\nnallar\r\nnalle\r\nnamn\r\nnamnar\r\nnamne\r\nnamnet\r\nnamnge\r\nnamninsamling\r\nnamnkunnig\r\nnamnsdag\r\nnamnteckning\r\nnamnupprop\r\nnapalm\r\nnapp\r\nnappa\r\nnappar\r\nnarig\r\nnarkoman\r\nnarkomani\r\nnarkos\r\nnarkosläkare\r\nnarkotika\r\nnarr\r\nnarra\r\nnarrad\r\nnarrartad\r\nnarrativ\r\nnasal\r\nnasare\r\nnasaret\r\nnasse\r\nnation\r\nnationaldagen\r\nnationalförsamling\r\nnationaliserar\r\nnationalism\r\nnationalist\r\nnationalitet\r\nnationalpark\r\nnationalsång\r\nnationell\r\nnationen\r\nnationer\r\nnativitet\r\nnatriumhydroxid\r\nnatt\r\nnattar\r\nnattduksbord\r\nnatten\r\nnattens\r\nnattetid\r\nnattklubb\r\nnattlig\r\nnattliga\r\nnattlinne\r\nnattmangling\r\nnattmössa\r\nnattskjorta\r\nnattsvart\r\nnattvard\r\nnattvardens\r\nnattvardsbord\r\nnattvardsborden\r\nnattvardsbordet\r\nnattvardsfest\r\nnattvardssal\r\nnatur\r\nnaturaförmån\r\nnaturalisation\r\nnaturbarn\r\nnaturbehov\r\nnaturell\r\nnaturen\r\nnaturens\r\nnaturkatastrof\r\nnaturkunskap\r\nnaturlig\r\nnaturligt\r\nnaturligtvis\r\nnaturmedel\r\nnaturvetenskap\r\nnaturvård\r\nnaturvårdsområde\r\nNaturvårdsverket\r\nnav\r\nnavel\r\nnavelskådare\r\nnavelsträng\r\nnavigatör\r\nnavigerar\r\nnazism\r\nnazist\r\nneandertalare\r\nnecessär\r\nned\r\nnedan\r\nnedanför\r\nnedanstående\r\nnedbantad\r\nnedblodad\r\nnedbruten\r\nnedbryt\r\nnedbrytande\r\nnedbrytning\r\nneder\r\nnederbörd\r\nnederfalla\r\nnederkalla\r\nnederlag\r\nnederlagt\r\nnederländare\r\nnederländsk\r\nnederst\r\nnedersta\r\nnedersväva\r\nnedfall\r\nnedfalla\r\nnedfaller\r\nnedflytta\r\nnedflyttning\r\nnedför\r\nnedgrävda\r\nnedgående\r\nnedgång\r\nnedgången\r\nnedgångsperiod\r\nnedgörande\r\nnedkomst\r\nnedlåtande\r\nnedlåter\r\nnedlägga\r\nnedlägger\r\nnedläggning\r\nnedom\r\nnedrans\r\nnedre\r\nnedrig\r\nnedringd\r\nnedriva\r\nnedrivna\r\nnedrustning\r\nnedräkning\r\nnedsatt\r\nnedskrivning\r\nnedskärning\r\nnedslag\r\nnedslagen\r\nnedslagit\r\nnedslående\r\nnedsläpp\r\nnedsmutsa\r\nnedsmutsad\r\nnedsmutsning\r\nnedsteg\r\nnedstoppad\r\nnedstämd\r\nnedstörtad\r\nnedsvärta\r\nnedsätta\r\nnedsättande\r\nnedsättning\r\nnedsöla\r\nnedtill\r\nnedtrappning\r\nnedtrycka\r\nnedtryckt\r\nnedvärdera\r\nnedvärdering\r\nnedåt\r\nnedåtgående\r\nnedärvd\r\nneg\r\nnegation\r\nnegativ\r\nnegativt\r\nnegligera\r\nnegligerar\r\nnegress\r\nnehemja\r\nnej\r\nnejd\r\nnejder\r\nnejlika\r\nneka\r\nnekar\r\nnektarin\r\nneonljus\r\nneorealism\r\nner\r\nnerböjt\r\nnere\r\nnerför\r\nnerhuggen\r\nnerhuggna\r\nnerstämdhet\r\nnerv\r\nnervig\r\nnervkittlande\r\nnervositet\r\nnervspänning\r\nnervös\r\nneråt\r\nnesa\r\nneslig\r\nnetto\r\nneuros\r\nneurosedyn\r\nneurotisk\r\nneutral\r\nneutralitet\r\nneutronbomb\r\nneutronstjärna\r\nneutrum\r\nnevö\r\nni\r\nnia\r\nniar\r\nnick\r\nnickar\r\nnidbild\r\nnidingens\r\nnidingsdåd\r\nniger\r\nnikotin\r\nnio\r\nnionde\r\nniondel\r\nnisch\r\nnisse\r\nnit\r\nnita\r\nnitisk\r\nnitning\r\nnittio\r\nnitton\r\nnivå\r\nnix\r\nnjugg\r\nnjure\r\nnjut\r\nnjuta\r\nnjutas\r\nnjuten\r\nnjuter\r\nnjutning\r\nnjöt\r\nnoa\r\nnoas\r\nnobba\r\nnobbar\r\nnobben\r\nnobel\r\nnobelpris\r\nnock\r\nnod\r\nnog\r\nnoga\r\nnoggrann\r\nnoggrannhet\r\nnoggrant\r\nnogräknad\r\nnoja\r\nnojs\r\nnojsar\r\nnoll\r\nnolla\r\nnollställd\r\nnolltaxerar\r\nnolltid\r\nnollåtta\r\nnomad\r\nnomenklatur\r\nnominell\r\nnominera\r\nnominerar\r\nnominering\r\nnonchalans\r\nnonchalant\r\nnonchalera\r\nnonchalerar\r\nnonsens\r\nnonstop\r\nnopp\r\nnoppa\r\nnord\r\nnordan\r\nnordanvinden\r\nnordbo\r\nnorden\r\nnordisk\r\nnordist\r\nnordlig\r\nnordost\r\nnordpolen\r\nnordväst\r\nnordöst\r\nnorm\r\nnormal\r\nnormalisera\r\nnormaliserar\r\nnormalt\r\nnormera\r\nnormering\r\nnorpa\r\nnorpar\r\nnorr\r\nnorra\r\nNorrbotten\r\nnorrifrån\r\nNorrland\r\nnorrländsk\r\nnorrlänningar\r\nnorrman\r\nnorrsken\r\nnorrut\r\nnorsk\r\nnorska\r\nnos\r\nnosa\r\nnosar\r\nnoshörning\r\nnostalgi\r\nnostalgisk\r\nnot\r\nnota\r\nnotabel\r\nnotam\r\nnotarie\r\nnotera\r\nnoterar\r\nnotering\r\nnotis\r\nnotorisk\r\nnougat\r\nnovell\r\nnovember\r\nnovis\r\nnu\r\nnubb\r\nnubbe\r\nnucka\r\nnudda\r\nnuddar\r\nnuddning\r\nnudist\r\nnudlar\r\nnuförtiden\r\nnumera\r\nnumerär\r\nnummer\r\nnummerlapp\r\nnummerpresentatör\r\nnummervisare\r\nnumrera\r\nnumrerar\r\nnumret\r\nnuna\r\nnunna\r\nnupit\r\nnutid\r\nnutida\r\nnuvarande\r\nny\r\nnya\r\nnyans\r\nnyanser\r\nnyanserad\r\nnyanserar\r\nnyare\r\nnybakad\r\nnybakt\r\nnybilda\r\nnybildning\r\nnybyggare\r\nnybygge\r\nnybyggnad\r\nnybörjare\r\nnyck\r\nnyckel\r\nnyckelben\r\nnyckeln\r\nnyckelpiga\r\nnyckfull\r\nnycklarna\r\nnydanar\r\nnyfiken\r\nnyfödd\r\nnyfödda\r\nnyfött\r\nnygjord\r\nnyhet\r\nnyheterna\r\nnyhetsbyrå\r\nnykomling\r\nnykter\r\nnykterhet\r\nnykterhetsnämnd\r\nnykterhetsvård\r\nnykterist\r\nnyktert\r\nnyktrar\r\nnyligen\r\nnylle\r\nnylon\r\nnymodig\r\nnymodigt\r\nnymålad\r\nnynna\r\nnynnande\r\nnynnar\r\nnynnat\r\nnypa\r\nnyper\r\nnypon\r\nnypotatis\r\nnyrealism\r\nnys\r\nnyser\r\nnyskapa\r\nnyskapare\r\nnyss\r\nnystan\r\nnystar\r\nnystartad\r\nnysvensk\r\nnytt\r\nnytta\r\nnyttig\r\nnyttigt\r\nnyttja\r\nnyttjande\r\nnyttjanderätt\r\nnyttjar\r\nnyttjare\r\nnytänd\r\nnytänkande\r\nnyutgivning\r\nnyval\r\nnyväckt\r\nnyår\r\nnå\r\nnåbar\r\nnåd\r\nnådaflod\r\nnådastol\r\nnådastolen\r\nnådastöt\r\nnådatronen\r\nnådde\r\nnådebordet\r\nnådebringande\r\nnådebud\r\nnådefull\r\nnådefulle\r\nnådegåva\r\nnådegåvan\r\nnådegåvor\r\nnådelig\r\nnåden\r\nnådens\r\nnåderika\r\nnåderike\r\nnådesbud\r\nnådesord\r\nnådestunden\r\nnådestunder\r\nnådesunder\r\nnådig\r\nnådiga\r\nnådigt\r\nnåds\r\nnågon\r\nnågons\r\nnågonsin\r\nnågonstans\r\nnågonting\r\nnågorlunda\r\nnågot\r\nnågotsånär\r\nnågra\r\nnål\r\nnålsöga\r\nnån\r\nnånsin\r\nnånstans\r\nnånting\r\nnår\r\nnås\r\nnåt\r\nnått\r\nnåväl\r\nnä\r\nnäbb\r\nnäck\r\nnäckros\r\nnäktergal\r\nnämligen\r\nnämna\r\nnämnare\r\nnämnas\r\nnämnd\r\nnämndeman\r\nnämner\r\nnämnvärd\r\nnäpen\r\nnäppe\r\nnäppeligen\r\nnäpsa\r\nnäpsten\r\nnär\r\nnära\r\nnärande\r\nnärapå\r\nnärbelägen\r\nnärbild\r\nnärboende\r\nnärgången\r\nnärhelst\r\nnärhet\r\nnärheten\r\nnärhets\r\nnäring\r\nnäringsfrihetsombudsman\r\nnäringshjälp\r\nnäringsliv\r\nnäringslivet\r\nnäringstillstånd\r\nnäringsverksamhet\r\nNärke\r\nnärliggande\r\nnärma\r\nnärmade\r\nnärmande\r\nnärmar\r\nnärmare\r\nnärmast\r\nnärmastboende\r\nnärmaste\r\nnärmiljö\r\nnärmre\r\nnärmsta\r\nnärstående\r\nnärsynt\r\nnärvara\r\nnärvarande\r\nnärvaro\r\nnärvaron\r\nnäs\r\nnäsa\r\nnäsan\r\nnäsborre\r\nnäsbränna\r\nnäsduk\r\nnäsmongol\r\nnäsor\r\nnässla\r\nnäst\r\nnästa\r\nnästan\r\nnäste\r\nnästet\r\nnästföljande\r\nnästkommande\r\nnästlar\r\nnäsvis\r\nnät\r\nnäta\r\nnätansluten\r\nnäten\r\nnätet\r\nnäthinna\r\nnätt\r\nnätter\r\nnätverk\r\nnäve\r\nnäverryggsäck\r\nnöd\r\nnöd\r\nnödbedd\r\nnödbroms\r\nnödd\r\nnöden\r\nnödens\r\nnödfall\r\nnödgar\r\nnödgas\r\nnödig\r\nnödlandar\r\nnödläge\r\nnödsakad\r\nnödsituation\r\nnödställd\r\nnödställda\r\nnödställde\r\nnödsändare\r\nnödtorft\r\nnödtorftig\r\nnödvändig\r\nnödvändighet\r\nnödvändigt\r\nnödvändigtvis\r\nnödvärn\r\nnöjd\r\nnöjda\r\nnöje\r\nnöjen\r\nnöjer\r\nnöjesfält\r\nnöjesliv\r\nnöjeslysten\r\nnöp\r\nnös\r\nnöt\r\nnöta\r\nnötboskap\r\nnöter\r\nnötknäckare\r\nnötknäppare\r\nnötkreatur\r\nnötning\r\nnötskal\r\nnött\r\no\r\noaktsam\r\noaktsamhet\r\noanad\r\noandlig\r\noansenlig\r\noanständig\r\noanständigheter\r\noanständigt\r\noansvarig\r\noantastlig\r\noanträffbar\r\noanvänd\r\noanvändbar\r\noartig\r\noas\r\noattraktiv\r\noavbruten\r\noavbrutet\r\noavgjord\r\noavgjort\r\noavhängig\r\noavkortad\r\noavsett\r\nobadja\r\nobalans\r\nobarmhärtig\r\nobarmhärtiga\r\nobducent\r\nobducerar\r\nobduktion\r\nobeaktad\r\nobearbetad\r\nobebodd\r\nobebott\r\nobefintlig\r\nobefintliga\r\nobefläckad\r\nobefläckat\r\nobefogad\r\nobegriplig\r\nobegränsad\r\nobehag\r\nobehaglig\r\nobehandlad\r\nobehindrad\r\nobehindrat\r\nobehärskad\r\nobehörig\r\nobehövlig\r\nobekant\r\nobekanta\r\nobekväm\r\nobekvämt\r\nobekymrad\r\nobelisk\r\nobemannad\r\nobemärkt\r\nobenägen\r\noberoende\r\noberäknelig\r\noberörbar\r\noberörd\r\noberördhet\r\nobesegrad\r\nobeskrivlig\r\nobeslutsam\r\nobeslutsamhet\r\nobeslöjat\r\nobesmittad\r\nobestridd\r\nobestridlig\r\nobestånd\r\nobeställbar\r\nobestämd\r\nobesudlad\r\nobesvärad\r\nobetalbar\r\nobetingad\r\nobetingat\r\nobetvinglig\r\nobetvingligt\r\nobetydlig\r\nobetydligast\r\nobetydligaste\r\nobetydligt\r\nobetäckt\r\nobetänksam\r\nobetänksamhet\r\nobevakad\r\nobevandrad\r\nobeveklig\r\nobeväpnad\r\nobildad\r\nobjekt\r\nobjektiv\r\nobjektivitet\r\nobjuden\r\noblat\r\noblid\r\nobligation\r\nobligatorisk\r\noblyg\r\noborstad\r\nobotfärdiga\r\nobotlig\r\nobrottslig\r\nobrukbar\r\nobrukbara\r\nobruten\r\nobscen\r\nobservans\r\nobservant\r\nobservation\r\nobservatorium\r\nobservatör\r\nobservera\r\nobserverar\r\nobskyr\r\nobsolet\r\nobstinat\r\nobstipation\r\nobstruktion\r\nobunden\r\nobygd\r\nobändig\r\noböjd\r\noböjlig\r\nobönhörlig\r\nocean\r\noceaner\r\noch\r\nock\r\nocker\r\nockrar\r\nockrare\r\nockså\r\nockult\r\nockupant\r\nockuperar\r\nodds\r\nodefinierad\r\nodefinierbar\r\nodelad\r\nodelade\r\nodemokratisk\r\nodiskutabel\r\nodiskutabelt\r\nodjur\r\nodjuret\r\nodla\r\nodlar\r\nodlaren\r\nodlas\r\nodlat\r\nodling\r\nodontologisk\r\nodräglig\r\noduglig\r\nodugligt\r\nodugling\r\nodåga\r\nodödlig\r\nodödlighet\r\nodödlighetens\r\nodödligt\r\nodör\r\noeftergivlig\r\noefterhärmlig\r\noegennytta\r\noegentlighet\r\noegentligheter\r\noekonomisk\r\noemotsagd\r\noemotståndlig\r\noemotsäglig\r\noenig\r\noenighet\r\noense\r\noerfaren\r\noerhörd\r\noerhörda\r\noerhört\r\noersättlig\r\nofantlig\r\nofarbar\r\nofarlig\r\nofattbar\r\nofattbart\r\nofelbar\r\nofelbart\r\noffensiv\r\noffentlig\r\noffentliggör\r\noffentliggöra\r\noffentliggörande\r\noffentlighet\r\noffentlighetsprincipen\r\noffentligt\r\noffer\r\nofferblod\r\nofferbragd\r\nofferdöd\r\nofferera\r\nofferglöd\r\noffergåva\r\noffergåvan\r\noffergåvor\r\noffergärden\r\noffergärning\r\nofferhöjd\r\nofferhöjden\r\nofferlamm\r\nofferlammets\r\noffert\r\nofficer\r\nofficerare\r\nofficiell\r\nofficiellt\r\noffra\r\noffrade\r\noffrades\r\noffrande\r\noffrar\r\noffras\r\noffrat\r\noffrats\r\noffret\r\nofin\r\nofint\r\nofläckad\r\nofog\r\noformlig\r\noframkomlig\r\nofred\r\nofreda\r\nofredar\r\nofreden\r\nofrid\r\nofrihet\r\nofrivillig\r\nofruktbar\r\nofruktbart\r\nofrånkomlig\r\nofta\r\noftast\r\nofullbordad\r\nofullkomlighet\r\nofullständig\r\nofullständigt\r\nofärdens\r\nofärgad\r\nofärgat\r\nofödda\r\noförarglig\r\noförbehållsam\r\noförbätterlig\r\nofördelaktig\r\nofördröjligen\r\nofördunklad\r\noförenlig\r\noföretagsam\r\noförfalskad\r\noförfärad\r\noförglömlig\r\noförgänglig\r\noförgänglighet\r\noförgängligt\r\noförhappandes\r\noförhindrad\r\noförklarlig\r\noförliknelig\r\noförlåtlig\r\noförmodad\r\noförmåga\r\noförmärkt\r\noförmögen\r\noförmörkad\r\noförneklig\r\noförnuftig\r\noförrätt\r\noförrättat\r\noförrätten\r\noförsiktig\r\noförsiktighet\r\noförskräckt\r\noförskyld\r\noförskämd\r\noförskämt\r\noförsonlig\r\noförsonliga\r\noförståelig\r\noförstående\r\noförstånd\r\noförståndig\r\noförståndiga\r\noförståndige\r\noförståndigt\r\noförställd\r\noförstörd\r\noförsvarlig\r\noförsynt\r\noförtjänt\r\noförtruten\r\noförtröttlig\r\noförutsedd\r\noförutsett\r\noförvanskad\r\noförvitlig\r\noförvägen\r\noföränderlig\r\noförändrad\r\noförändrat\r\nogenerad\r\nogenomförbar\r\nogenomtränglig\r\nogenomtänkt\r\nogift\r\nogilla\r\nogillade\r\nogillande\r\nogillar\r\nogiltig\r\nogiltiga\r\nogiltigt\r\nogin\r\noginhet\r\nogjord\r\nogripbart\r\nogrundad\r\nogräs\r\nogräset\r\nogunst\r\nogynnsam\r\nogärna\r\nogärning\r\nogärningsman\r\nogärningsmän\r\nogärningsmännen\r\nogästvänlig\r\nogörlig\r\nohanterlig\r\nohederlig\r\nohejdad\r\noherrans\r\nohindrat\r\nohjälpligt\r\nohm\r\nohoj\r\nohyfsad\r\nohygglig\r\nohyggliga\r\nohyggligt\r\nohyra\r\nohyvlad\r\nohållbar\r\nohälsa\r\nohälsosam\r\nohämmad\r\nohöljd\r\nohörsamhet\r\nohörsamma\r\nohövlig\r\noidentifierad\r\noigenkännlig\r\noinskränkt\r\nointelligent\r\nointressant\r\nointresserad\r\noj\r\nojust\r\nojuste\r\nojämförlig\r\nojämn\r\nojävig\r\nok\r\nokammad\r\nokej\r\noket\r\noklanderlig\r\noklar\r\noklarhet\r\noklok\r\noklädd\r\nokokt\r\nokomplicerad\r\nokomplicerat\r\nokonstlad\r\nokontrollerad\r\nokontrollerbar\r\nokonventionell\r\nokristlig\r\nokränkbarhet\r\nokränkbart\r\nokrönt\r\noktantal\r\noktanvärde\r\noktav\r\noktober\r\nokulärbesiktiga\r\nokunnig\r\nokunniga\r\nokunnighet\r\nokuvlig\r\nokvädingsord\r\nokvädinsord\r\nokynne\r\nokänd\r\nokända\r\nokänslig\r\nokänslighet\r\nokänt\r\nolag\r\nolaga\r\nolaglig\r\nolagligt\r\nolater\r\nolidlig\r\nolik\r\nolika\r\nolikartad\r\nolikhet\r\nolikheten\r\nolikheter\r\nolikheterna\r\nolikt\r\noliktänkande\r\noliv\r\nolivgrön\r\nolivolja\r\nolivträden\r\nolivträdet\r\nolivträdets\r\nolja\r\noljan\r\noljar\r\noljebälte\r\noljeflaskan\r\noljeplattform\r\noljig\r\noljud\r\nolle\r\nollon\r\nollonsmör\r\nolovlig\r\nolust\r\nolustbetonad\r\nolustig\r\nolycka\r\nolyckan\r\nolyckas\r\nolycklig\r\nolyckligare\r\nolyckligtvis\r\nolyckor\r\nolycksbarn\r\nolycksbud\r\nolycksbådande\r\nolycksdag\r\nolycksdagen\r\nolycksfall\r\nolycksfågel\r\nolyckshändelse\r\nolyckskorp\r\nolycksled\r\nolydig\r\nolydnad\r\nolympiad\r\nolympisk\r\nolägenhet\r\noläkliga\r\noläkligt\r\nolämplig\r\nolämpligt\r\noländig\r\nolärd\r\nolärda\r\nolöslig\r\nolöst\r\nom\r\nomak\r\nomaka\r\nomarbeta\r\nomarbetad\r\nomarbetning\r\nomarkerad\r\nombedes\r\nombesörja\r\nombesörjde\r\nombilda\r\nombildar\r\nombildning\r\nombonad\r\nombord\r\nombrytning\r\nombud\r\nombudsman\r\nombyggnad\r\nombyte\r\nombytlig\r\nomdana\r\nomdanar\r\nomdebatterad\r\nomdöme\r\nomdömesgill\r\nomedelbar\r\nomedelbart\r\nomedgörlig\r\nomedveten\r\nomega\r\nomelett\r\nomen\r\nomfamna\r\nomfamnad\r\nomfamnar\r\nomfamnas\r\nomfamning\r\nomfatta\r\nomfattande\r\nomfattar\r\nomfattning\r\nomforma\r\nomfång\r\nomfångsrik\r\nomfångsrika\r\nomge\r\nomger\r\nomgift\r\nomgivande\r\nomgiven\r\nomgiver\r\nomgivning\r\nomgivningen\r\nomgående\r\nomgång\r\nomgärda\r\nomgärdade\r\nomgärdande\r\nomhuldar\r\nomhändertar\r\nomigen\r\nomild\r\nomintetgör\r\nomintetgöra\r\nomisskännelig\r\nomisskännlig\r\nomistlig\r\nomkastning\r\nomklädd\r\nomklädningsrum\r\nomkomma\r\nomkommen\r\nomkommer\r\nomkostnad\r\nomkrets\r\nomkring\r\nomkringliggande\r\nomkull\r\nomkväde\r\nomkörning\r\nomlokalisera\r\nomlokalisering\r\nomlopp\r\nomläggning\r\nomnejd\r\nomnibuss\r\nomnämna\r\nomnämnd\r\nomnämner\r\nomodern\r\nomogen\r\nomonterad\r\nomorganisera\r\nomorganiserar\r\nomotiverad\r\nomplacerar\r\nomplacering\r\nomplantera\r\nomprövar\r\nomringa\r\nomringad\r\nomringar\r\nomringas\r\nomringat\r\nområde\r\nområdet\r\nomröstning\r\nomsider\r\nomskakad\r\nomskapa\r\nomskolar\r\nomskriven\r\nomskär\r\nomslag\r\nomslut\r\nomsluta\r\nomslutande\r\nomsluten\r\nomsluter\r\nomslöt\r\nomsorg\r\nomsorgsfull\r\nomsorgsnämnd\r\nomspel\r\nomstridd\r\nomställning\r\nomständig\r\nomständighet\r\nomständigheter\r\nomständlig\r\nomstörta\r\nomstörtar\r\nomstörtning\r\nomsusad\r\nomsvep\r\nomsvängning\r\nomsvärmad\r\nomsätter\r\nomsättning\r\nomtagning\r\nomtala\r\nomtalad\r\nomtalar\r\nomtanke\r\nomtugga\r\nomtumlad\r\nomtvistad\r\nomtyckt\r\nomtyckta\r\nomtänksam\r\nomtänksamhet\r\nomtänksamma\r\nomtöcknad\r\nomutbar\r\nomutlig\r\nomval\r\nomvandla\r\nomvandlar\r\nomvandling\r\nomvittnad\r\nomvårdnad\r\nomväg\r\nomvälver\r\nomvälvning\r\nomvänd\r\nomvända\r\nomvändbar\r\nomvände\r\nomvändelse\r\nomvändelsen\r\nomvändelsens\r\nomvänder\r\nomvänt\r\nomvärderar\r\nomvärld\r\nomvärlden\r\nomväxla\r\nomväxlande\r\nomväxling\r\nomyndig\r\nomåttlig\r\nomänsklig\r\nomänskligt\r\nomärklig\r\nomärkt\r\nomätlig\r\nomätligt\r\nomätt\r\nomättlig\r\nomöblerad\r\nomöjlig\r\nomöjliga\r\nomöjliggör\r\nomöjligt\r\nonaturlig\r\nonaturligt\r\nond\r\nonda\r\nondare\r\nondas\r\nonde\r\nondgör\r\nondo\r\nondsint\r\nondska\r\nondskan\r\nondskans\r\nondskefull\r\nonekligen\r\nonomatopoetisk\r\nonormal\r\nonormalt\r\nonsdag\r\nont\r\nonumrerad\r\nonykter\r\nonyttig\r\nonåd\r\nonödan\r\nonödig\r\nonödiga\r\nonödigt\r\nonödigtvis\r\noomkullrunkelig\r\noomtvistlig\r\noordentlig\r\noordnad\r\noordning\r\noordningsmått\r\noorganiserad\r\nopartisk\r\nopartiskhet\r\nopassande\r\nopasslig\r\nopera\r\noperation\r\noperativ\r\noperativsystem\r\noperatör\r\nopererar\r\noperett\r\nopersonlig\r\nopinion\r\nopium\r\nopolerad\r\nopp\r\noppe\r\nopponent\r\nopponera\r\nopponerar\r\nopportun\r\nopportunist\r\nopportunitet\r\nopposition\r\nopraktisk\r\noproblematisk\r\noptik\r\noptimerar\r\noptimism\r\noptimist\r\noptimistisk\r\noption\r\noptisk\r\nopus\r\nopålitlig\r\nopålitliga\r\nopålitlige\r\nopålitligt\r\nopåverkad\r\norakad\r\norakel\r\noral\r\noralt\r\norange\r\nord\r\norda\r\nordagrann\r\nordagranna\r\nordalag\r\nordar\r\nordbehandlare\r\nordbehandling\r\nordblind\r\nordblindhet\r\nordbok\r\nordbyte\r\norden\r\nordentlig\r\nordentligt\r\norder\r\nordet\r\nordets\r\nordföljd\r\nordföljder\r\nordförande\r\nordförråd\r\nordinarie\r\nordination\r\nordinera\r\nordinerar\r\nordinär\r\nordklass\r\nordknapp\r\nordlek\r\nordlexikon\r\nordlista\r\nordlistan\r\nordlös\r\nordlöst\r\nordna\r\nordnad\r\nordnade\r\nordnande\r\nordnar\r\nordnat\r\nordning\r\nordningsam\r\nordningsföljd\r\nordningsvakt\r\nords\r\nordspråk\r\nordspråksboken\r\nordstäv\r\nordval\r\nordväxling\r\norealistisk\r\noreda\r\noredig\r\noregelbunden\r\noregerlig\r\noren\r\norenade\r\norenhet\r\norenlighet\r\norent\r\norera\r\noreserverad\r\noresonlig\r\norgan\r\norganisation\r\norganisatör\r\norganisera\r\norganiserar\r\norganisk\r\norganism\r\norganist\r\norgel\r\norgie\r\norglar\r\norientalisk\r\norienten\r\norienterar\r\norientering\r\norienteringsämne\r\noriginal\r\noriginell\r\norigo\r\noriktig\r\norimlig\r\norion\r\nork\r\norka\r\norkade\r\norkan\r\norkaner\r\norkar\r\norkeslös\r\norkester\r\norm\r\norma\r\normar\r\normen\r\normens\r\normlik\r\nornament\r\nornamental\r\norne\r\nornitolog\r\noro\r\noroa\r\noroad\r\noroande\r\noroar\r\noroas\r\norolig\r\norolighet\r\noroligheter\r\noron\r\norons\r\noroshärd\r\norosmoln\r\noroväckande\r\norre\r\norsak\r\norsaka\r\norsakar\r\norsakas\r\norsakat\r\norsakssamband\r\nort\r\norter\r\nortodox\r\nortodoxa\r\nortogonal\r\nortoped\r\nortopedisk\r\norubbad\r\norubblig\r\norubbligt\r\norutinerad\r\noråd\r\norädd\r\noräddhet\r\noräknelig\r\norätt\r\norätten\r\norättfärdig\r\norättfärdighet\r\norättfärdighetens\r\norättmätig\r\norättvis\r\norättvisa\r\norättvisor\r\norörd\r\norörlig\r\norörlighet\r\nos\r\nosa\r\nosagd\r\nosaklig\r\nosammanhängande\r\nosams\r\nosann\r\nosanning\r\nosannolik\r\nosar\r\noscillation\r\nosedd\r\nosedda\r\nosedvanlig\r\nosjälvisk\r\nosjälviskhet\r\nosjälvständighet\r\noskadad\r\noskadd\r\noskadda\r\noskadliggör\r\noskadliggöra\r\noskarp\r\noskattbar\r\noskick\r\noskicklighet\r\noskiftad\r\noskiljaktig\r\noskolad\r\noskriven\r\noskuld\r\noskuldsfull\r\noskyddad\r\noskyldig\r\noskyldiga\r\noskyldigas\r\noskyldige\r\noskälig\r\noskön\r\noslagbar\r\noslagen\r\nosmaklig\r\nosmakligt\r\nosminkad\r\nosnabb\r\nosofistikerad\r\nosorterad\r\nosportslig\r\noss\r\nost\r\nostabil\r\nostadig\r\nostadighet\r\nostbåge\r\nostekt\r\nosthyvel\r\nostjärn\r\nostlig\r\nostyrig\r\nostädad\r\nostörd\r\nostört\r\nosund\r\nosviklig\r\nosvuren\r\nosympatisk\r\nosynlig\r\nosynliga\r\nosynlige\r\nosynligt\r\nosägbara\r\nosäglig\r\nosäker\r\nosäkerhet\r\nosämja\r\notack\r\notacksam\r\notacksammas\r\notakt\r\notal\r\notalig\r\notaliga\r\notalt\r\notid\r\notidsenlig\r\notillbörlig\r\notillfreds\r\notillfredsställande\r\notillfredsställd\r\notillförlitlig\r\notillgänglig\r\notillräcklig\r\notillräcklighet\r\notillräknelig\r\notillständig\r\notillåten\r\notillåtlig\r\notippad\r\notjänlig\r\notjänst\r\notrevlig\r\notro\r\notrogen\r\notrognas\r\notrohet\r\notrolig\r\notroligt\r\notron\r\notrons\r\notrygg\r\notränad\r\notröstlig\r\notta\r\notukt\r\notur\r\notvetydig\r\notvetydigt\r\notvivelaktig\r\notvivelaktigt\r\notvungen\r\notvättad\r\notydlig\r\notydlighet\r\notydligt\r\notyg\r\notyglad\r\notyglade\r\notyglat\r\notymplig\r\notålig\r\notålighet\r\notåligt\r\notäck\r\notämd\r\notämjd\r\notänkbar\r\notät\r\noumbärlig\r\noundgänglig\r\noundviklig\r\noundvikligt\r\nouppfostrad\r\noupphörlig\r\noupphörligen\r\noupphörligt\r\nouppnåelig\r\nouppsåtlig\r\noutbildad\r\noutgrundlig\r\nouthyrd\r\nouthärdlig\r\nouthärdliga\r\noutnyttjad\r\noutplånlig\r\noutsagd\r\noutsinlig\r\noutslagen\r\noutstanding\r\noutsäglig\r\noutsägliga\r\noutsägligt\r\nouttalad\r\nouttröttlig\r\nouttömlig\r\nouttömligt\r\noutvecklad\r\noval\r\novan\r\novana\r\novanför\r\novanifrån\r\novanlig\r\novanlighet\r\novanligt\r\novannämnd\r\novanpå\r\novanstående\r\novantill\r\novarsam\r\novass\r\novation\r\novederhäftig\r\novedersäglig\r\noverall\r\noverhead\r\noverheadprojektor\r\noverklig\r\noverksam\r\novetande\r\novetenskaplig\r\novett\r\novidkommande\r\noviktig\r\noviktigt\r\novilja\r\novillig\r\novillkorlig\r\novillkorligen\r\novis\r\noviss\r\novisshet\r\novisst\r\novårdad\r\noväder\r\novälkommen\r\novän\r\novänlig\r\novänligt\r\novänners\r\noväns\r\noväntad\r\noväntat\r\novärderlig\r\noväsen\r\noväsentlig\r\noxe\r\noxygen\r\nozon\r\noåterkallelig\r\noåtkomlig\r\noäkta\r\noäkting\r\noändlig\r\noändliga\r\noändligen\r\noändlighet\r\noändligt\r\noärlig\r\noäven\r\noöm\r\noönskad\r\noövad\r\noöverkomlig\r\noöverskådlig\r\noöverstiglig\r\noöverträffad\r\noöverträfflig\r\noövertänkt\r\noövervinnelig\r\noövervinnlig\r\noövervägd\r\npacemaker\r\npacifism\r\npacifist\r\npack\r\npacka\r\npackad\r\npackar\r\npacke\r\npackhus\r\npackning\r\npadda\r\npaddel\r\npaddlar\r\npaff\r\npagod\r\npaj\r\npaja\r\npajad\r\npajar\r\npajas\r\npaket\r\npaketera\r\npaketerar\r\npakethållare\r\npaketresa\r\npakt\r\npalats\r\npalaver\r\npalestinier\r\npalett\r\npalisander\r\npall\r\npalla\r\npallar\r\npalm\r\npalmer\r\npalmers\r\npalmsöndag\r\npalsternacka\r\npalt\r\npaltbröd\r\npaltkoma\r\npaltor\r\npamflett\r\npamp\r\npampig\r\npanel\r\npanela\r\npanerar\r\npang\r\npanga\r\npangar\r\npanik\r\npanikslagen\r\npank\r\npankreas\r\npanna\r\npannan\r\npannbiff\r\npannkaka\r\npannknack\r\npannlugg\r\npannor\r\npanorama\r\npansar\r\npansartax\r\npant\r\npantad\r\npantar\r\npantbrev\r\npanten\r\npanter\r\npantern\r\npantomim\r\npantrar\r\npantsätta\r\npantsätter\r\npapegoja\r\npapiljott\r\npapp\r\npappa\r\npappaledig\r\npappas\r\npapper\r\npappersbruk\r\npappersexercis\r\npappersklämma\r\npapperskorg\r\npapperskvarn\r\npappersmassa\r\npapperstiger\r\npaprika\r\npar\r\npara\r\nparabel\r\nparabolantenn\r\nparad\r\nparade\r\nparadigm\r\nparadis\r\nparadiset\r\nparadisets\r\nparadisisk\r\nparadismark\r\nparadox\r\nparadoxal\r\nparafras\r\nparagraf\r\nparallell\r\nparalysera\r\nparalyserad\r\nparalyserar\r\nparameter\r\nparametrar\r\nparanoia\r\nparanoid\r\nparant\r\nparaply\r\nparaplyorganisation\r\nparar\r\nparasit\r\nparasoll\r\nparat\r\nparatyfus\r\npardon\r\nparentes\r\nparera\r\nparerar\r\nparfym\r\nparfymera\r\nparhästar\r\npariserhjul\r\nparitet\r\npark\r\nparkanläggning\r\nparkas\r\nparker\r\nparkerar\r\nparkering\r\nparkeringsvakt\r\nparkerna\r\nparkett\r\nparlament\r\nparlamentarism\r\nparlör\r\nparning\r\nparningsbenägen\r\nparodi\r\nparoll\r\npart\r\npartaj\r\nparti\r\npartiapparat\r\npartiell\r\npartiellt\r\npartifärg\r\npartihandel\r\npartikel\r\npartikulär\r\npartisk\r\npartner\r\npartnerskap\r\npartsinlaga\r\nparty\r\nparvel\r\nparvis\r\npass\r\npassa\r\npassage\r\npassagerare\r\npassande\r\npassar\r\npassare\r\npassé\r\npassera\r\npasserade\r\npasserar\r\npasserat\r\npassersedel\r\npassform\r\npassion\r\npassionerad\r\npassiv\r\npassiverar\r\npassiviserar\r\npassning\r\npassopp\r\npassus\r\npasta\r\npastej\r\npastell\r\npastellfärg\r\npastill\r\npastisch\r\npastor\r\npastorat\r\npastorsexpedition\r\npatent\r\npatentlås\r\npatetisk\r\npatiens\r\npatient\r\npatientavgift\r\npatientförsäkring\r\npatologisk\r\npatos\r\npatrask\r\npatriark\r\npatriarkalisk\r\npatriarkat\r\npatriot\r\npatron\r\npatrull\r\npatrullerar\r\npatte\r\npaulus\r\npaus\r\npava\r\npaviljong\r\npaxa\r\npc\r\npedagog\r\npedagogik\r\npedal\r\npedant\r\npedantisk\r\npederast\r\npediatriker\r\npediatrisk\r\npedofil\r\npejlar\r\npeka\r\npekade\r\npekar\r\npekdon\r\npekfinger\r\npekpinne\r\npelare\r\npelargonia\r\npelargång\r\npelikan\r\npelikaner\r\npellejöns\r\npendel\r\npendellägenhet\r\npendeltåg\r\npendla\r\npendlar\r\npendyl\r\npenetration\r\npenetrera\r\npenetrerande\r\npenetrerar\r\npenetrering\r\npeng\r\npengapung\r\npengar\r\npenibel\r\npenibla\r\npenicillin\r\npenna\r\npennalism\r\npenning\r\npenningförråd\r\npenningplacering\r\npenningpung\r\npenningstark\r\npenningunderstöd\r\npennkniv\r\npennvässare\r\npensel\r\npenseln\r\npension\r\npensionat\r\npensionerar\r\npensionsbrev\r\npensionspoäng\r\npensionstillskott\r\npensionsålder\r\npensionär\r\npensionärsbiljett\r\npensionärsbostad\r\npensionärsdans\r\npensionärshem\r\npenslar\r\npensum\r\npentry\r\npep\r\npeppa\r\npeppad\r\npeppar\r\npepparkaka\r\npepparrot\r\npeppra\r\npepprar\r\nper\r\nperception\r\nperenn\r\nperfekt\r\nperfekta\r\nperfektion\r\nperforera\r\nperforerar\r\npergament\r\nperifer\r\nperiferi\r\nperiod\r\nperiodisk\r\nperiodiskt\r\nperkussion\r\npermanent\r\npermanenta\r\npermanentar\r\npermission\r\npermitterar\r\npermittering\r\nperplex\r\nperrong\r\npers\r\npersedel\r\npersian\r\npersienn\r\npersika\r\npersilja\r\npersisk\r\npersiska\r\nperson\r\npersonakt\r\npersonal\r\npersonalomsättning\r\npersonbevis\r\npersonbil\r\npersondator\r\npersonell\r\npersonen\r\npersoner\r\npersonerna\r\npersongalleri\r\npersonkemi\r\npersonlig\r\npersonlige\r\npersonligen\r\npersonlighet\r\npersonlighetens\r\npersonligt\r\npersonnummer\r\npersonsökare\r\npersonundersökning\r\nperspektiv\r\nperuk\r\npervers\r\npessar\r\npessimism\r\npessimist\r\npessimistisk\r\npest\r\npesten\r\npeta\r\npetar\r\npetig\r\npetit\r\npetita\r\npetitess\r\npetition\r\npetnoga\r\npetrus\r\npetrusbrevet\r\npianist\r\npiano\r\npiccolo\r\npick\r\npickar\r\npicknick\r\npickolo\r\npickup\r\npiedestal\r\npietet\r\npiff\r\npiga\r\npigg\r\npigga\r\npiggar\r\npiggnar\r\npiggvar\r\npigment\r\npigmentering\r\npik\r\npikant\r\npikar\r\npiket\r\npil\r\npilbåge\r\npilbågen\r\npilgrim\r\npilgrimsfärd\r\npilgrimsfärden\r\npilgrimsgång\r\npilgrimsstig\r\npilgrimssång\r\npilla\r\npillar\r\npiller\r\npilot\r\npilsner\r\npimpinett\r\npimpla\r\npimplar\r\npina\r\npinal\r\npinaler\r\npinan\r\npinar\r\npinas\r\npincett\r\npingis\r\npingla\r\npinglar\r\npingpong\r\npingst\r\npingstdagen\r\npingstens\r\npingstkyrkan\r\npingstlilja\r\npingströrelsen\r\npingstvän\r\npinka\r\npinkar\r\npinnar\r\npinne\r\npinnhål\r\npinsam\r\npinsamma\r\npion\r\npionjär\r\npip\r\npipa\r\npipeline\r\npiper\r\npippi\r\npir\r\npirat\r\npirog\r\npirra\r\npirrar\r\npirrig\r\npisk\r\npiska\r\npiskar\r\npiskats\r\npissoar\r\npist\r\npistasch\r\npistol\r\npistolen\r\npittoresk\r\npizza\r\npizzeria\r\npjoskar\r\npjosker\r\npjåkig\r\npjåkigt\r\npjåsk\r\npjåskande\r\npjäs\r\npjäxa\r\nplacera\r\nplacerad\r\nplacerar\r\nplacering\r\npladask\r\npladder\r\npladdra\r\npladdrar\r\nplagg\r\nplagget\r\nplagiat\r\nplagiera\r\nplakat\r\nplan\r\nplanekonomi\r\nplaner\r\nplanera\r\nplanerad\r\nplanerande\r\nplanerar\r\nplaneras\r\nplanerat\r\nplanering\r\nplanet\r\nplaneters\r\nplank\r\nplanka\r\nplankton\r\nplanlägga\r\nplanlägger\r\nplanläggning\r\nplanlös\r\nplanlösning\r\nplanmässig\r\nplansch\r\nplant\r\nplanta\r\nplantage\r\nplantan\r\nplantera\r\nplanterad\r\nplanterade\r\nplanterar\r\nplanterat\r\nplantering\r\nplantskola\r\nplask\r\nplaska\r\nplaskar\r\nplast\r\nplastfolie\r\nplastik\r\nplastikkirurgi\r\nplatonisk\r\nplats\r\nplatsansökan\r\nplatsar\r\nplatsbiljett\r\nplatsen\r\nplatsens\r\nplatser\r\nplatsjournalen\r\nplatt\r\nplatta\r\nplattar\r\nplattform\r\nplattityd\r\nplatå\r\nplausibel\r\nplenarsammanträde\r\nplenum\r\npli\r\nplikt\r\nplikta\r\npliktar\r\nplikten\r\nplikter\r\npliktpåkallande\r\npliktskyldigast\r\nplikttrogen\r\npling\r\nplira\r\nplisserad\r\nplit\r\nplita\r\nplocka\r\nplockade\r\nplockar\r\nplog\r\nplogar\r\nplogbill\r\nploj\r\nplomb\r\nplombera\r\nplombering\r\nplommon\r\nplommonstop\r\nplottrar\r\nplottrig\r\nplufsig\r\nplugg\r\nplugga\r\npluggar\r\npluggen\r\nplugget\r\nplugghäst\r\nplump\r\nplumsa\r\nplumsar\r\nplundra\r\nplundrar\r\nplundring\r\nplunta\r\nplural\r\npluralism\r\npluralistisk\r\npluring\r\npluringar\r\nplus\r\nplussa\r\npluton\r\nplutonium\r\nplutt\r\nplym\r\nplysch\r\nplyte\r\nplåga\r\nplågad\r\nplågade\r\nplågades\r\nplågan\r\nplågans\r\nplågar\r\nplågas\r\nplågat\r\nplågoande\r\nplågor\r\nplågoris\r\nplågorna\r\nplågsam\r\nplån\r\nplåna\r\nplånar\r\nplånat\r\nplånats\r\nplånbok\r\nplåster\r\nplåstrar\r\nplåt\r\nplåta\r\nplåtar\r\nplåtslagare\r\npläd\r\nplädera\r\npläderar\r\nplädering\r\npläga\r\nplätt\r\nplöjaren\r\nplöjer\r\nplötslig\r\nplötsligen\r\nplötsligt\r\npneumatisk\r\npneumoni\r\npockande\r\npockar\r\npocket\r\npocketbok\r\npodium\r\npoem\r\npoesi\r\npoet\r\npoetisk\r\npojkar\r\npojke\r\npojken\r\npojkens\r\npojkstreck\r\npojkvasker\r\npojkvän\r\npokal\r\npoker\r\npol\r\npolack\r\npolar\r\npolare\r\npolariserar\r\npolemik\r\npolemiserar\r\npolemisk\r\npolera\r\npolerad\r\npolerar\r\npolicy\r\npoliklinik\r\npolio\r\npolis\r\npoliskommissarie\r\npoliskonstapel\r\npolisman\r\npolismästare\r\npolisong\r\npolispådrag\r\npolisuppbåd\r\npolitik\r\npolitiker\r\npolitikerförakt\r\npolitisk\r\npolitruk\r\npolityr\r\npolka\r\npolkagris\r\npollen\r\npolletterar\r\npollution\r\npolotröja\r\npolsk\r\npolska\r\npolskdans\r\npolyp\r\npomerans\r\npomp\r\npompa\r\npompös\r\npondus\r\nponera\r\nponke\r\nponny\r\npool\r\npop\r\npopcorn\r\npopmusik\r\npoppis\r\npopulariserar\r\npopularitet\r\npopulation\r\npopulism\r\npopulär\r\npopulärmusik\r\npor\r\nporlande\r\nporlar\r\npormask\r\nporslin\r\nport\r\nportabel\r\nportal\r\nportar\r\nporten\r\nportfölj\r\nportgång\r\nportier\r\nportion\r\nportionerar\r\nportmonnä\r\nporto\r\nporträtt\r\nporträttera\r\nportugis\r\nportugisisk\r\nportvakt\r\nportvin\r\nporös\r\npose\r\nposerar\r\nposition\r\npositiv\r\npositiva\r\npositivt\r\npossessiv\r\npost\r\nposta\r\npostadress\r\npostanvisning\r\npostar\r\npostbox\r\nposter\r\npostering\r\npostförskott\r\npostgiro\r\npostgymnasial\r\npostgång\r\npostlåda\r\npostnummer\r\npostnummerkatalog\r\npostogram\r\npostorder\r\npostorderföretag\r\npoströstning\r\npostskriptum\r\npostulat\r\npostumt\r\npostvagn\r\npostverket\r\npotatis\r\npotatismos\r\npotens\r\npotential\r\npotentialen\r\npotentiell\r\npotentiella\r\npotpurri\r\npott\r\npotta\r\npottkanten\r\npoäng\r\npoängen\r\npoänglös\r\npoängsätta\r\npoängtera\r\npoängterar\r\npoängår\r\npracka\r\nprackar\r\npragmatisk\r\nprakt\r\npraktfull\r\npraktik\r\npraktikant\r\npraktikanter\r\npraktiken\r\npraktiker\r\npraktisera\r\npraktiserar\r\npraktisk\r\npraktiskt\r\npralin\r\nprao\r\nprassel\r\nprasslar\r\nprat\r\nprata\r\npratade\r\npratar\r\npratas\r\npratat\r\npratet\r\npratglad\r\npratig\r\npratkvarn\r\npratmakare\r\npratsam\r\npratsjuk\r\npratstund\r\npraxis\r\nprecis\r\nprecisera\r\npreciserar\r\nprecision\r\nprecist\r\npredator\r\npredika\r\npredikade\r\npredikament\r\npredikan\r\npredikant\r\npredikanter\r\npredikar\r\npredikaren\r\npredikat\r\npredikningar\r\npredikningarna\r\npredikstol\r\nprediktera\r\npredisponerat\r\nprefekt\r\npreferens\r\nprefix\r\npregnant\r\npreja\r\nprejar\r\nprejudicerande\r\nprejudikat\r\nprekär\r\nprelat\r\nprelater\r\npreliminär\r\npreliminärskatt\r\npreludium\r\npremie\r\npremieobligation\r\npremiera\r\npremierar\r\npremiss\r\npremium\r\npremiär\r\npremiärminister\r\nprenumerant\r\nprenumerera\r\nprenumererar\r\npreparat\r\npreparera\r\npreparerar\r\npreparering\r\npreposition\r\npresenning\r\npresens\r\npresent\r\npresentabel\r\npresentation\r\npresentatör\r\npresenter\r\npresentera\r\npresenterar\r\npresident\r\npresidenter\r\npresidium\r\npreskriberar\r\npreskription\r\npress\r\npressa\r\npressades\r\npressande\r\npressar\r\npressombudsmannen\r\npressrelease\r\npresstöd\r\nprestanda\r\nprestation\r\nprestationer\r\nprestationsförmåga\r\nprestera\r\npresterar\r\nprestige\r\npresumera\r\npresumtion\r\npresumtiv\r\npretendent\r\npretention\r\npretentiös\r\npreteritum\r\npreventiv\r\npreventivmedel\r\nprick\r\npricka\r\nprickar\r\nprickfri\r\nprickig\r\npricktavla\r\nprilla\r\nprima\r\nprimadonna\r\nprimitiv\r\nprimär\r\nprimära\r\nprimärt\r\nprimör\r\nprincip\r\nprincipfast\r\nprincipiell\r\nprins\r\nprinsessa\r\nprinskorv\r\nprinter\r\nprioritera\r\nprioriterar\r\nprioritet\r\npris\r\nprisa\r\nprisad\r\nprisade\r\nprisande\r\nprisar\r\nprisas\r\nprisat\r\npriset\r\nprisförslag\r\nprisgiva\r\nprissänkning\r\nprissätta\r\npristagare\r\nprisuppgift\r\nprisvärd\r\nprivat\r\nprivatiserar\r\nprivatliv\r\nprivatpraktiserande\r\nprivatsak\r\nprivilegierad\r\nprivilegium\r\nproaktiv\r\nprobabilitet\r\nproblem\r\nproblematik\r\nproblematisk\r\nproblemen\r\nproblemet\r\nproblemställning\r\nprocedur\r\nprocent\r\nprocentuell\r\nprocess\r\nprocessa\r\nprocessar\r\nprocession\r\nproducent\r\nproducera\r\nproducerar\r\nprodukt\r\nproduktion\r\nproduktiv\r\nproduktivitet\r\nprofan\r\nprofession\r\nprofessionell\r\nprofessor\r\nprofessur\r\nprofet\r\nprofeten\r\nprofetens\r\nprofeter\r\nprofetera\r\nprofeterna\r\nprofeters\r\nprofetia\r\nprofetians\r\nprofetior\r\nprofetisk\r\nproffs\r\nproffsig\r\nprofil\r\nprofilera\r\nprofit\r\nprofitera\r\nprofiterar\r\nprofylaktisk\r\nprofylax\r\nprognos\r\nprognostisk\r\nprogram\r\nprogramenlig\r\nprogramförklaring\r\nprogrammera\r\nprogrammerar\r\nprogrammerare\r\nprogramvara\r\nprogress\r\nprogression\r\nprogressiv\r\nprojekt\r\nprojekterar\r\nprojektering\r\nprojektet\r\nprojektil\r\nprojektion\r\nprojektor\r\nprojicerar\r\nproklamera\r\nproklamerar\r\nproletariat\r\nproletär\r\nprolog\r\nprolongation\r\nprolongera\r\npromemoria\r\npromenad\r\npromenera\r\npromenerar\r\npromille\r\nprominent\r\npromiskuös\r\npromotion\r\npromotor\r\npromoverar\r\nprompt\r\npronomen\r\npropaganda\r\npropagerar\r\npropeller\r\nproper\r\nproponera\r\nproportion\r\nproportionell\r\nproportionerlig\r\nproposition\r\npropp\r\nproppar\r\nproppfull\r\nproppmätt\r\npropsar\r\npropå\r\nprosa\r\nprosaisk\r\nproselyter\r\nprosit\r\nprospekt\r\nprospekterar\r\nprost\r\nprostata\r\nprostituerad\r\nprostituerar\r\nprostitution\r\nprotegé\r\nprotein\r\nprotektion\r\nprotektionism\r\nprotes\r\nprotest\r\nprotestant\r\nprotestantism\r\nprotestera\r\nprotesterade\r\nprotesterar\r\nprotokoll\r\nprotokollföra\r\nprototyp\r\nprov\r\nprova\r\nprovar\r\nprovat\r\nprovet\r\nprovhytt\r\nproviant\r\nprovins\r\nprovinsiell\r\nprovision\r\nprovisorisk\r\nprovning\r\nprovocera\r\nprovocerande\r\nprovocerar\r\nprovocerat\r\nprovokation\r\nprovokativ\r\nprovrör\r\nprovstopp\r\nprudentlig\r\nprunkande\r\nprunkar\r\nprut\r\nprutar\r\nprutmån\r\npryar\r\npryd\r\npryda\r\npryder\r\nprydlig\r\nprydnad\r\nprydning\r\nprygel\r\nprygla\r\npryglar\r\npryl\r\nprylar\r\npryo\r\nprål\r\nprålar\r\npråm\r\nprång\r\nprånglar\r\nprägel\r\nprägla\r\npräglad\r\npräglar\r\npräglas\r\npräglat\r\npräktig\r\npräktighets\r\npränt\r\npränta\r\npräntar\r\npräntat\r\nprärie\r\npräst\r\nprästens\r\npräster\r\nprästers\r\nprästerskap\r\nprästgård\r\nprästkläder\r\nprästkrage\r\nprästtjänare\r\nprästviger\r\npröjs\r\npröjsa\r\npröjsar\r\npröva\r\nprövade\r\nprövande\r\nprövar\r\nprövas\r\nprövat\r\nprövning\r\nprövningar\r\nprövningarnas\r\nprövningen\r\nprövningens\r\nprövningsdag\r\nprövningsdagar\r\nprövningstid\r\nprövotid\r\nprövotiden\r\npsalm\r\npsalmen\r\npsalmer\r\npsalmers\r\npsaltaren\r\npseudonym\r\npsoriasis\r\npsykar\r\npsyke\r\npsyket\r\npsykiater\r\npsykiatri\r\npsykiatrisk\r\npsykisk\r\npsykiskt\r\npsykmedicin\r\npsykoanalys\r\npsykofarmaka\r\npsykolog\r\npsykologi\r\npsykopat\r\npsykos\r\npsykosomatisk\r\npsykoterapi\r\npsykotisk\r\npub\r\npubertet\r\npublicera\r\npublicerar\r\npublicering\r\npublicist\r\npublicitet\r\npublik\r\npublikan\r\npublikation\r\npublikfriande\r\npublikt\r\npuck\r\npuckad\r\npuckade\r\npuckat\r\npuckel\r\npucklar\r\npudding\r\npudel\r\npuder\r\npudra\r\npudrar\r\npuff\r\npuffa\r\npuffar\r\npuffra\r\npula\r\npulka\r\npulla\r\npullover\r\npulpet\r\npuls\r\npulsar\r\npulsen\r\npulsera\r\npulserar\r\npulsåder\r\npulver\r\npulverisera\r\npulvrisera\r\npulvriserar\r\npuma\r\npump\r\npumpa\r\npumpar\r\npumpat\r\npumporna\r\npumps\r\npund\r\npunda\r\npundare\r\npung\r\npungar\r\npunk\r\npunkt\r\npunkten\r\npunkterar\r\npunktering\r\npunktlig\r\npunktskatt\r\npunktskrift\r\npunsch\r\npupill\r\npuppa\r\npuppan\r\npur\r\npuré\r\npuritan\r\npurjolök\r\npurken\r\npurpur\r\npurpurfärg\r\npurpurfärgad\r\npurpurfärgade\r\npurpurglans\r\npurpurröd\r\npurpurrött\r\npurung\r\npuss\r\npussa\r\npussar\r\npussas\r\npussel\r\npusselbit\r\npusslar\r\npust\r\npusta\r\npustar\r\nputar\r\nputs\r\nputsa\r\nputsar\r\nputslustig\r\nputt\r\nputta\r\nputtar\r\nputtra\r\nputtrar\r\npyjamas\r\npynt\r\npynta\r\npyntar\r\npyr\r\npyra\r\npyramid\r\npyre\r\npyroman\r\npys\r\npysa\r\npyser\r\npyssel\r\npyssla\r\npysslar\r\npyton\r\npyts\r\npytte\r\npytteliten\r\npyttipanna\r\npå\r\npåbjuder\r\npåbrå\r\npåbud\r\npåbyggnad\r\npåbyltad\r\npåbörja\r\npåbörjades\r\npåbörjande\r\npåbörjar\r\npådrag\r\npådrivare\r\npådyvla\r\npådyvlar\r\npåfallande\r\npåfart\r\npåflugen\r\npåfrestande\r\npåfrestning\r\npåfrestningar\r\npåfund\r\npåfyllning\r\npåfågel\r\npåföljande\r\npåföljd\r\npåför\r\npåföra\r\npåg\r\npågå\r\npågående\r\npågår\r\npåhitt\r\npåhittad\r\npåhittade\r\npåhittig\r\npåhopp\r\npåhoppad\r\npåhälsning\r\npåhäng\r\npåk\r\npåkalla\r\npåkallar\r\npåkar\r\npåklädd\r\npåkostad\r\npålaga\r\npålar\r\npåle\r\npålen\r\npålitlig\r\npålitlighet\r\npålle\r\npålysa\r\npålysning\r\npålysningar\r\npålägg\r\npåläggskalv\r\npåläst\r\npåmind\r\npåminde\r\npåminn\r\npåminna\r\npåminnas\r\npåminnelse\r\npåminnelser\r\npåminner\r\npåminns\r\npåmint\r\npånyttfödd\r\npånyttfödelse\r\npånyttföder\r\npånyttfött\r\npåpasslig\r\npåpeka\r\npåpekan\r\npåpekande\r\npåpekar\r\npåpälsad\r\npåringning\r\npåse\r\npåseende\r\npåsk\r\npåskafröjd\r\npåskalamm\r\npåskalammet\r\npåskdag\r\npåskdagmorgon\r\npåskdagsmorgon\r\npåskens\r\npåskina\r\npåskkoralers\r\npåskkäring\r\npåsklilja\r\npåskrift\r\npåskris\r\npåskynda\r\npåskyndar\r\npåslag\r\npåslakan\r\npåssjuka\r\npåstod\r\npåstridig\r\npåstruken\r\npåstå\r\npåstådd\r\npåstående\r\npåstår\r\npåstötning\r\npåtaglig\r\npåtagligt\r\npåtala\r\npåtalar\r\npåtar\r\npåtryckning\r\npåträffa\r\npåträffar\r\npåträffat\r\npåträffats\r\npåträngande\r\npåtvinga\r\npåtvingar\r\npåtår\r\npåve\r\npåver\r\npåverka\r\npåverkad\r\npåverkan\r\npåverkande\r\npåverkar\r\npåvisa\r\npåvisar\r\npåökt\r\npäls\r\npärla\r\npärlan\r\npärlemor\r\npärleport\r\npärleporten\r\npärlor\r\npärm\r\npärmos\r\npäron\r\npärs\r\npö\r\npöbel\r\npöl\r\npölsa\r\npösa\r\npöser\r\npösig\r\nquisling\r\nrabalder\r\nrabarber\r\nrabatt\r\nrabatterad\r\nrabbin\r\nrabblar\r\nrabiat\r\nrabies\r\nrace\r\nracer\r\nrack\r\nrackar\r\nrackare\r\nrackarns\r\nrackartyg\r\nrackarunge\r\nracket\r\nrad\r\nrada\r\nradar\r\nradarkontroll\r\nradarpar\r\nradband\r\nradda\r\nradera\r\nraderar\r\nradergummi\r\nraderna\r\nradhus\r\nradiator\r\nradie\r\nradiera\r\nradikal\r\nradio\r\nradioaktiv\r\nradioapparat\r\nradiorör\r\nradioterapi\r\nradium\r\nradon\r\nraffel\r\nraffig\r\nraffinaderi\r\nraffinemang\r\nraffinerad\r\nraffinerar\r\nraffinering\r\nrafflande\r\nrafsa\r\nrafsar\r\nragata\r\nragg\r\nragga\r\nraggar\r\nraggarballe\r\nraggare\r\nraggmunk\r\nraggsocka\r\nragla\r\nraglar\r\nragnarök\r\nragu\r\nraid\r\nrak\r\nraka\r\nrakapparat\r\nrakar\r\nrakats\r\nrakblad\r\nrakel\r\nraket\r\nrakhyvel\r\nraklång\r\nrakmaskin\r\nrakryggad\r\nraksträcka\r\nrakt\r\nrakvatten\r\nraljant\r\nraljera\r\nraljerar\r\nrallare\r\nrallarros\r\nrally\r\nrallytävling\r\nram\r\nrama\r\nramar\r\nramaskri\r\nramavtal\r\nramla\r\nramlag\r\nramlar\r\nramma\r\nrammar\r\nramp\r\nrampfeber\r\nrampljus\r\nramponerar\r\nramsa\r\nramträff\r\nranch\r\nrand\r\nrandas\r\nranden\r\nrandig\r\nrandiga\r\nrang\r\nrangerbangård\r\nranglig\r\nrangordna\r\nrangordnar\r\nrangordnat\r\nrangordning\r\nrank\r\nranka\r\nrankar\r\nrankinglista\r\nrankningslista\r\nrann\r\nrannsaka\r\nrannsakad\r\nrannsakan\r\nrannsakar\r\nranson\r\nransonerar\r\nrap\r\nrapar\r\nrapp\r\nrappa\r\nrappakalja\r\nrappar\r\nrapping\r\nrappning\r\nrapport\r\nrapporter\r\nrapportera\r\nrapporterar\r\nrapportering\r\nrappt\r\nraps\r\nrapsodisk\r\nrar\r\nrara\r\nraring\r\nraritet\r\nrart\r\nras\r\nrasa\r\nrasande\r\nrasar\r\nrasat\r\nraser\r\nrasera\r\nraserar\r\nraseri\r\nraset\r\nrasfördom\r\nrashat\r\nrasism\r\nrasist\r\nrask\r\nraska\r\nraskar\r\nraskt\r\nrasp\r\nraspa\r\nraspar\r\nraspig\r\nrassel\r\nrassla\r\nrasslar\r\nrast\r\nrastar\r\nrastlös\r\nrastlösa\r\nrastlöst\r\nrastplats\r\nrata\r\nratad\r\nratar\r\nratat\r\nratificera\r\nratificerar\r\nration\r\nrationalisera\r\nrationaliserar\r\nrationalisering\r\nrationell\r\nratt\r\nratta\r\nrattar\r\nrattfylleri\r\nrauk\r\nravin\r\nravinen\r\nravinens\r\nraviner\r\nrazzia\r\nrea\r\nreagera\r\nreagerar\r\nreaktion\r\nreaktionerna\r\nreaktionär\r\nreaktor\r\nreal\r\nrealia\r\nrealisation\r\nrealisationsvinst\r\nrealisera\r\nrealiserar\r\nrealism\r\nrealist\r\nrealistisk\r\nrealistiskt\r\nrealitet\r\nreallön\r\nrear\r\nrebell\r\nrebus\r\nrecensent\r\nrecensera\r\nrecenserar\r\nrecension\r\nrecept\r\nreception\r\nreceptive\r\nrecession\r\nrecidiv\r\nrecidivera\r\nrecitera\r\nreciterar\r\nred\r\nreda\r\nredaktion\r\nredaktör\r\nredan\r\nredare\r\nredbar\r\nredd\r\nredde\r\nrede\r\nreder\r\nrederi\r\nredes\r\nredig\r\nredigera\r\nredigerar\r\nredigt\r\nredlig\r\nredligas\r\nredliges\r\nredlighet\r\nredlös\r\nredo\r\nredogör\r\nredogöra\r\nredogörelse\r\nredovisa\r\nredovisar\r\nredovisning\r\nredskap\r\nredskapet\r\nreducera\r\nreducerar\r\nreducering\r\nreduktion\r\nredundant\r\nreell\r\nreferat\r\nreferens\r\nrefererad\r\nrefererar\r\nreflektera\r\nreflekterar\r\nreflektering\r\nreflektion\r\nreflex\r\nreflexion\r\nreflexiv\r\nreform\r\nreformation\r\nreformator\r\nreformerar\r\nrefräng\r\nrefug\r\nrefusera\r\nrefuserande\r\nrefuserar\r\nrefusering\r\nregal\r\nregalier\r\nregalskepp\r\nregatta\r\nregel\r\nregelbunden\r\nregelbundet\r\nregelmässig\r\nregeln\r\nregelrätt\r\nregelvidrig\r\nregemente\r\nregeneration\r\nregenerera\r\nregent\r\nregera\r\nregerar\r\nregering\r\nregeringsform\r\nregeringsförklaring\r\nregeringsrätten\r\nreggae\r\nregi\r\nregim\r\nregion\r\nregional\r\nregisserar\r\nregissör\r\nregister\r\nregistrera\r\nregistrerar\r\nregistrering\r\nregistreringsbesiktning\r\nregistreringsbevis\r\nregistreringsskylt\r\nregla\r\nreglage\r\nreglar\r\nreglarna\r\nreglemente\r\nregler\r\nreglera\r\nreglerad\r\nreglerar\r\nreglerbar\r\nreglerhandtag\r\nreglering\r\nreglers\r\nregn\r\nregnar\r\nregnbåge\r\nregnbågshinna\r\nregnet\r\nregnets\r\nregnfattig\r\nregnhatt\r\nregnig\r\nregnkappa\r\nregnområde\r\nregnrock\r\nregnskur\r\nregntunga\r\nregnvattnet\r\nregress\r\nregression\r\nreguljär\r\nrehabilitera\r\nrehabiliterar\r\nrehabilitering\r\nrejäl\r\nrejält\r\nrek\r\nreklam\r\nreklamation\r\nreklamationsnämnd\r\nreklamerar\r\nreklamernas\r\nreko\r\nrekognoscera\r\nrekommendation\r\nrekommendera\r\nrekommenderar\r\nrekonstruera\r\nrekonstruerar\r\nrekonstruktion\r\nrekord\r\nrekordartad\r\nrekreation\r\nrekreationshem\r\nrekryt\r\nrekrytera\r\nrekryterar\r\nrekrytering\r\nrektangel\r\nrektor\r\nrektorsområde\r\nrekvirera\r\nrekvirerar\r\nrekvisita\r\nrekvisition\r\nrekyl\r\nrekylera\r\nrelaterad\r\nrelaterar\r\nrelation\r\nrelationer\r\nrelativ\r\nrelativt\r\nrelaxa\r\nrelease\r\nrelegera\r\nrelegerar\r\nrelevans\r\nrelevant\r\nreliabilitet\r\nrelief\r\nreligion\r\nreligioner\r\nreligionskunskap\r\nreligiös\r\nrelik\r\nrelikt\r\nreling\r\nrelä\r\nrem\r\nremarkabel\r\nremi\r\nremiss\r\nremissdebatt\r\nremittera\r\nremitterar\r\nremittering\r\nremmar\r\nremmen\r\nremsa\r\nren\r\nrena\r\nrenad\r\nrenade\r\nrenande\r\nrenar\r\nrenas\r\nrenaste\r\nrenat\r\nrendera\r\nrenderar\r\nrendezvous\r\nrengör\r\nrengöra\r\nrengöringsmedel\r\nrenhet\r\nrenhets\r\nrenhjärtad\r\nrenhjärtade\r\nrenhona\r\nrenhållning\r\nrenhårig\r\nrening\r\nreningseld\r\nreningsverk\r\nrenko\r\nrenlevnadsman\r\nrenlig\r\nrenlärig\r\nrenodlad\r\nrenodlar\r\nrenommé\r\nrenommerad\r\nrenovera\r\nrenoverar\r\nrenovering\r\nrensa\r\nrensar\r\nrensas\r\nrensat\r\nrensats\r\nrent\r\nrentav\r\nrentvådd\r\nrentvår\r\nrenässans\r\nrep\r\nrepa\r\nrepar\r\nreparation\r\nreparera\r\nreparerade\r\nreparerades\r\nreparerar\r\nrepertoar\r\nrepetera\r\nrepeterande\r\nrepeterar\r\nrepetition\r\nrepig\r\nreplik\r\nreplikera\r\nreplikerar\r\nrepmånad\r\nreportage\r\nreporter\r\nrepparera\r\nrepresentant\r\nrepresentanter\r\nrepresentation\r\nrepresentativ\r\nrepresentera\r\nrepresenterar\r\nrepressalie\r\nrepression\r\nreprimand\r\nrepris\r\nrepriser\r\nrepro\r\nreproducera\r\nreproducerar\r\nreproduktion\r\nreptil\r\nrepublik\r\nreputerlig\r\nrepögla\r\nrepövning\r\nres\r\nresa\r\nresan\r\nresande\r\nresans\r\nresebyrå\r\nresedokument\r\nresekost\r\nresekostnadsersättning\r\nreseledare\r\nresenär\r\nreser\r\nreserv\r\nreservat\r\nreservation\r\nreservationslös\r\nreservdel\r\nreservera\r\nreserverad\r\nreserverar\r\nreservoar\r\nresetta\r\nresfeber\r\nresgods\r\nresidens\r\nresident\r\nresiderar\r\nresignation\r\nresignerad\r\nresignerar\r\nresistans\r\nresistens\r\nresistent\r\nreskontra\r\nreslig\r\nresning\r\nresolut\r\nresolution\r\nreson\r\nresonabel\r\nresonans\r\nresonemang\r\nresonera\r\nresonerar\r\nresonlig\r\nrespass\r\nrespekt\r\nrespektabel\r\nrespektera\r\nrespekterad\r\nrespekterar\r\nrespektfull\r\nrespektive\r\nrespiration\r\nrespirator\r\nrespirera\r\nrespit\r\nrespondent\r\nrespondenten\r\nrespondera\r\nrespons\r\nrest\r\nresta\r\nrestaurang\r\nrestaurangvagn\r\nrestaurerar\r\nreste\r\nresten\r\nrestera\r\nresterande\r\nresterar\r\nrestes\r\nrestituerar\r\nrestriktion\r\nrestriktiv\r\nrestskatt\r\nresultat\r\nresultatlös\r\nresultera\r\nresulterar\r\nresumé\r\nresurs\r\nresväska\r\nresår\r\nresårband\r\nresårbotten\r\nreta\r\nretar\r\nretardera\r\nretas\r\nretfull\r\nretina\r\nretirera\r\nretirerar\r\nretlig\r\nretning\r\nretorisk\r\nretro\r\nretroaktiv\r\nretrospektiv\r\nreträtt\r\nretsam\r\nretsticka\r\nretur\r\nreturnera\r\nreturnerar\r\nretuscherar\r\nreumatiker\r\nreumatisk\r\nreumatism\r\nrev\r\nreva\r\nrevalverar\r\nrevansch\r\nrevanscherar\r\nrevar\r\nrevben\r\nrevbenet\r\nrevbensspjäll\r\nrevelj\r\nrevers\r\nreversera\r\nreversibel\r\nrevidera\r\nreviderad\r\nreviderar\r\nrevidering\r\nrevir\r\nrevision\r\nrevisionism\r\nrevisionsberättelse\r\nrevisor\r\nrevolt\r\nrevoltera\r\nrevolterar\r\nrevoltör\r\nrevolution\r\nrevolutionerande\r\nrevolutionerar\r\nrevolutionär\r\nrevolver\r\nrevorna\r\nrevs\r\nrevy\r\nribba\r\nribbstol\r\nrida\r\nriddare\r\nridderlig\r\nrider\r\nridit\r\nridning\r\nridtur\r\nridå\r\nrigel\r\nrigg\r\nrigga\r\nrigid\r\nrigorös\r\nrik\r\nrika\r\nrikare\r\nrikas\r\nrikaste\r\nrike\r\nrikedom\r\nrikedomar\r\nrikedomen\r\nrikeman\r\nrikemans\r\nriken\r\nrikens\r\nrikes\r\nriket\r\nrikets\r\nrikhaltig\r\nriklig\r\nrikliga\r\nrikligen\r\nrikligt\r\nrikoschett\r\nriksbekant\r\nriksdag\r\nriksdagsman\r\nriksdagsparti\r\nriksdagsval\r\nriksdaler\r\nriksförbund\r\nrikslikare\r\nriksmarskalk\r\nriksmöte\r\nriksorganisation\r\nriksregalier\r\nrikssamtal\r\nriksspråk\r\nriksstämma\r\nrikssvenska\r\nrikstäckande\r\nriksvapen\r\nriksväg\r\nriksåklagare\r\nrikt\r\nrikta\r\nriktad\r\nriktades\r\nriktar\r\nriktas\r\nriktat\r\nriktig\r\nriktighet\r\nriktigt\r\nriktlinje\r\nriktmärke\r\nriktning\r\nriktnummer\r\nriktpunkt\r\nrim\r\nrimfrost\r\nrimlig\r\nrimligen\r\nrimlighet\r\nrimligtvis\r\nrimmad\r\nrimmar\r\nring\r\nringa\r\nringaktar\r\nringar\r\nringaste\r\nringblomma\r\nringdans\r\nringde\r\nringe\r\nringen\r\nringer\r\nringes\r\nringfinger\r\nringhet\r\nringhetens\r\nringklocka\r\nringlande\r\nringlar\r\nringled\r\nringlek\r\nringmur\r\nringning\r\nringrostig\r\nringräv\r\nringtryck\r\nrink\r\nrinna\r\nrinnande\r\nrinner\r\nripost\r\nris\r\nrisa\r\nrisgryn\r\nrishög\r\nrisig\r\nrisk\r\nriskabel\r\nrisken\r\nrisker\r\nriskera\r\nriskerade\r\nriskerar\r\nriskerat\r\nriskfri\r\nriskfull\r\nriskfylld\r\nriskgrupp\r\nriskmoment\r\nrisktagande\r\nriskzon\r\nrispa\r\nrispar\r\nrista\r\nristar\r\nrister\r\nrit\r\nrita\r\nritar\r\nritare\r\nritkontor\r\nritning\r\nritt\r\nritual\r\nrituell\r\nriva\r\nrival\r\nrivaliserar\r\nrivalitet\r\nrivas\r\nriver\r\nrivet\r\nrivig\r\nrivit\r\nrivjärn\r\nrivna\r\nrivning\r\nrivs\r\nrivstart\r\nro\r\nroa\r\nroad\r\nroande\r\nroar\r\nrobot\r\nrobust\r\nrock\r\nrocka\r\nrodd\r\nrodda\r\nroddbåt\r\nrodde\r\nrodel\r\nroder\r\nrodnad\r\nrodnar\r\nroffa\r\nroffar\r\nrofferi\r\nrofylld\r\nrofyllda\r\nrogivande\r\nrojalism\r\nrokoko\r\nrolig\r\nroliga\r\nroligast\r\nroligt\r\nroll\r\nrom\r\nroman\r\nromani\r\nromans\r\nromansk\r\nromantik\r\nromantiker\r\nromantisk\r\nromarbrevet\r\nromare\r\nromarna\r\nromb\r\nromer\r\nromersk\r\nromerska\r\nromerske\r\nron\r\nrond\r\nrondell\r\nrop\r\nropa\r\nropade\r\nropande\r\nropar\r\nropat\r\nropen\r\nror\r\nros\r\nrosa\r\nrosar\r\nrosbuske\r\nrosen\r\nrosengård\r\nrosenkindad\r\nrosenkrans\r\nrosenrasande\r\nrosens\r\nrosett\r\nrosig\r\nrosmarin\r\nrosor\r\nrosorna\r\nrosslar\r\nrost\r\nrosta\r\nrostar\r\nrostbiff\r\nrostfri\r\nrostig\r\nrot\r\nrota\r\nrotad\r\nrotade\r\nrotar\r\nrotat\r\nrotation\r\nrotel\r\nroten\r\nrotera\r\nroterar\r\nrotfast\r\nrotfrukt\r\nrotfyllning\r\nrotfäste\r\nrotlös\r\nrotmos\r\nrotsak\r\nrott\r\nrotting\r\nrotvälska\r\nrouge\r\nroulett\r\nrov\r\nrova\r\nrovdjur\r\nrovdrift\r\nrovet\r\nrovfåglar\r\nrovgiriga\r\nroyalty\r\nrubb\r\nrubba\r\nrubbad\r\nrubbar\r\nrubbet\r\nrubbning\r\nrubricera\r\nrubricerar\r\nrubrik\r\nrubriken\r\nruckar\r\nruckat\r\nruckel\r\nrudimentär\r\nruelse\r\nruff\r\nruffel\r\nruffig\r\nrufflare\r\nrufsar\r\nrufsig\r\nruggar\r\nrugge\r\nruggig\r\nruin\r\nruinera\r\nruinerar\r\nrulla\r\nrullar\r\nrullats\r\nrullbräda\r\nrulle\r\nrullebör\r\nrullgardin\r\nrullning\r\nrullskida\r\nrullskridsko\r\nrullskridskor\r\nrullstol\r\nrulltrappa\r\nrulltårta\r\nrultig\r\nrum\r\nrumba\r\nrumlar\r\nrummet\r\nrumpa\r\nrumpan\r\nrumphuggen\r\nrumpor\r\nrumsbeställning\r\nrumsren\r\nrumstemperatur\r\nrumsterar\r\nrumsvärme\r\nrumän\r\nrumänsk\r\nrumänska\r\nruna\r\nrund\r\nrunda\r\nrundad\r\nrundar\r\nrundel\r\nrundfråga\r\nrundhyllt\r\nrundlagd\r\nrundning\r\nrundnätt\r\nrundor\r\nrundresa\r\nrundskrivelse\r\nrundsmörjning\r\nrundstycke\r\nrundtur\r\nrundvandring\r\nrungande\r\nrunnit\r\nrunsten\r\nrunt\r\nruntom\r\nruntomkring\r\nruptur\r\nrus\r\nrusa\r\nrusade\r\nrusande\r\nrusar\r\nrusch\r\nrusdryck\r\nrusdrycker\r\nrush\r\nrusha\r\nrusig\r\nrusk\r\nruska\r\nruskar\r\nruskig\r\nruskigt\r\nruskväder\r\nrusning\r\nruss\r\nrussin\r\nrusta\r\nrustad\r\nrustade\r\nrustar\r\nrustat\r\nrustik\r\nrustning\r\nrut\r\nruta\r\nruter\r\nrutig\r\nrutiga\r\nrutin\r\nrutinerad\r\nrutinerat\r\nrutit\r\nrutscha\r\nrutschar\r\nrutschbana\r\nrutt\r\nrutten\r\nruttnar\r\nruva\r\nruvar\r\nrya\r\nryck\r\nrycka\r\nryckas\r\nrycker\r\nryckig\r\nryckning\r\nrycks\r\nryckt\r\nrycktes\r\nryckts\r\nrygg\r\nryggar\r\nryggen\r\nryggmärg\r\nryggrad\r\nryggskott\r\nryggstöd\r\nryggsäck\r\nryggtavla\r\nryka\r\nrykande\r\nryker\r\nrykta\r\nryktar\r\nryktas\r\nryktbar\r\nrykte\r\nrymd\r\nrymden\r\nrymdens\r\nrymder\r\nrymdfarare\r\nrymdfarkost\r\nrymdman\r\nrymdskepp\r\nrymdsond\r\nrymlig\r\nrymligt\r\nrymling\r\nrymma\r\nrymmare\r\nrymmas\r\nrymmen\r\nrymmer\r\nrymning\r\nryms\r\nrymt\r\nrynka\r\nrynkar\r\nrynkig\r\nrysa\r\nrysare\r\nryser\r\nrysk\r\nryska\r\nryslig\r\nrysligt\r\nrysning\r\nryss\r\nryta\r\nrytande\r\nryter\r\nrytm\r\nrytmen\r\nrytmer\r\nrytmisk\r\nryttare\r\nrå\r\nråbarkad\r\nråbiff\r\nråd\r\nråda\r\nrådande\r\nrådbråkar\r\nråddigt\r\nråder\r\nrådet\r\nrådfråga\r\nrådfrågade\r\nrådfrågar\r\nrådfrågat\r\nrådfrågning\r\nrådgivande\r\nrådgivare\r\nrådgivning\r\nrådgör\r\nrådgöra\r\nrådhus\r\nrådig\r\nrådjur\r\nrådjursstigar\r\nrådlös\r\nrådlösa\r\nrådlöshet\r\nrådman\r\nrådpläga\r\nrådplägning\r\nrådrum\r\nrådslag\r\nrådslut\r\nrådslå\r\nrådslår\r\nrådsäljare\r\nrådvill\r\nråg\r\nråga\r\nrågad\r\nrågar\r\nrågat\r\nråge\r\nråk\r\nråka\r\nråkar\r\nråkas\r\nråkost\r\nråkurr\r\nråma\r\nråmar\r\nrån\r\nrånar\r\nrånare\r\nråolja\r\nråpluggar\r\nrår\r\nråraka\r\nråris\r\nrårörd\r\nråskinn\r\nråsop\r\nrått\r\nråtta\r\nråttorna\r\nråvara\r\nräck\r\nräcka\r\nräckas\r\nräcke\r\nräcker\r\nräckes\r\nräckhåll\r\nräcks\r\nräckt\r\nräckte\r\nräckvidd\r\nräd\r\nrädas\r\nrädd\r\nrädda\r\nräddad\r\nräddade\r\nräddande\r\nräddar\r\nräddare\r\nräddaren\r\nräddas\r\nräddat\r\nräddats\r\nrädde\r\nräddhåga\r\nräddhågad\r\nräddning\r\nräddningen\r\nräddningens\r\nräddningsplanka\r\nräddningstimman\r\nräddningsväg\r\nrädes\r\nrädisa\r\nräds\r\nrädsla\r\nrädslan\r\nrädslans\r\nrädslas\r\nräffla\r\nräfflar\r\nräfsa\r\nräfsar\r\nräfst\r\nräka\r\nräkenskap\r\nräkenskaper\r\nräkna\r\nräknar\r\nräknare\r\nräknas\r\nräknat\r\nräknedosa\r\nräknemaskin\r\nräkneord\r\nräkning\r\nrälig\r\nräls\r\nrälsbuss\r\nrämna\r\nrämnade\r\nrämnar\r\nrämnat\r\nrände\r\nränker\r\nränkspel\r\nränn\r\nränna\r\nrännande\r\nränner\r\nrännil\r\nrännsten\r\nränta\r\nräntabel\r\nräntabilitet\r\nräntesats\r\nräntor\r\nrät\r\nräta\r\nrätar\r\nrätas\r\nrätblock\r\nrätlinig\r\nrätlinjig\r\nrätsida\r\nrätt\r\nrätta\r\nrättad\r\nrättan\r\nrättar\r\nrätte\r\nrättegång\r\nrättelse\r\nrätten\r\nrätter\r\nrättesnöre\r\nrättfram\r\nrättfärdig\r\nrättfärdiga\r\nrättfärdigad\r\nrättfärdigar\r\nrättfärdige\r\nrättfärdighet\r\nrättfärdighetens\r\nrättfärdighetshänder\r\nrättfärdigs\r\nrättfärdigt\r\nrättighet\r\nrättigheter\r\nrättmätig\r\nrättning\r\nrättrogen\r\nrättrådig\r\nrättrådighet\r\nrättsfall\r\nrättshjälp\r\nrättshjälpsavgift\r\nrättshjälpsnämnd\r\nrättskaffens\r\nrättskipning\r\nrättskrivning\r\nrättslig\r\nrättslös\r\nrättslösa\r\nrättslösas\r\nrättsmedicin\r\nrättspsykiatri\r\nrättsregel\r\nrättsröta\r\nrättssak\r\nrättssal\r\nrättsskydd\r\nrättssäkerhet\r\nrättstavning\r\nrättstolk\r\nrättsvetenskap\r\nrättsväsen\r\nrättvis\r\nrättvisa\r\nrättvisan\r\nrättvisans\r\nrättvise\r\nrättvist\r\nräv\r\nrävaktig\r\nrävgift\r\nrävsax\r\nrävspel\r\nrö\r\nröd\r\nröda\r\nrödansikte\r\nrödbeta\r\nrödblommig\r\nrödgul\r\nrödhårig\r\nröding\r\nrödlätt\r\nrödskinn\r\nrödsprit\r\nrödspätta\r\nrödtjut\r\nrödvin\r\nröj\r\nröja\r\nröjd\r\nröjde\r\nröjer\r\nröjning\r\nrök\r\nröka\r\nrökare\r\nrökdykare\r\nrökelse\r\nröken\r\nröker\r\nrökfri\r\nrökgång\r\nrökig\r\nrökning\r\nrökridå\r\nröksugen\r\nrön\r\nröna\r\nröner\r\nrönn\r\nrönnbär\r\nrönt\r\nröntga\r\nröntgar\r\nröntgen\r\nröntgenundersökning\r\nrör\r\nröra\r\nröran\r\nrörande\r\nröras\r\nrörd\r\nrörde\r\nrörelse\r\nrörelsefrihet\r\nrörelsehindrad\r\nrörelser\r\nrörig\r\nrörigt\r\nrörledning\r\nrörlig\r\nrörlighet\r\nrörmokare\r\nrörs\r\nrört\r\nrös\r\nröse\r\nröst\r\nrösta\r\nröstande\r\nröstar\r\nröstberättigad\r\nrösten\r\nröster\r\nrösters\r\nröstetal\r\nröstkort\r\nröstläge\r\nröstlängd\r\nröstning\r\nrösträtt\r\nröstsedel\r\nröt\r\nröta\r\nrötmånad\r\nrött\r\nrötter\r\nrötterna\r\nrötägg\r\nröva\r\nrövades\r\nrövar\r\nrövare\r\nrövarhistoria\r\nrövas\r\nrövat\r\nröveri\r\nS:t\r\nsa\r\nsabba\r\nsabbar\r\nsabbat\r\nsabbatsdag\r\nsabbatsdagen\r\nsabbatsdagens\r\nsabbatsfrid\r\nsabbatsmorgon\r\nsabbatsro\r\nsabbatsstunder\r\nsabbatsvila\r\nsabbatsår\r\nsabel\r\nsablar\r\nsabotage\r\nsabotera\r\nsaboterar\r\nsackar\r\nsackeus\r\nsade\r\nsadel\r\nsadism\r\nsadist\r\nsadistisk\r\nsadlar\r\nsafari\r\nsaffran\r\nsafir\r\nsaft\r\nsaftig\r\nsaga\r\nsagd\r\nsagesman\r\nsagg\r\nsagolik\r\nsagor\r\nsagt\r\nsagts\r\nsak\r\nsakarja\r\nsaken\r\nsaker\r\nsakfråga\r\nsakförhållande\r\nsakkunnig\r\nsakkunskap\r\nsaklig\r\nsaklighet\r\nsaklös\r\nsakna\r\nsaknad\r\nsaknade\r\nsaknar\r\nsaknas\r\nsakral\r\nsakrament\r\nsakskäl\r\nsakta\r\nsaktar\r\nsakteliga\r\nsaktfärdig\r\nsaktmod\r\nsaktmodig\r\nsaktmodigt\r\nsakägare\r\nsal\r\nsalamandern\r\nsalar\r\nsaldo\r\nsalem\r\nsalems\r\nsalen\r\nsalig\r\nsaliga\r\nsaligare\r\nsaligas\r\nsaliggör\r\nsaliggöra\r\nsaliggörelse\r\nsalighet\r\nsaligheten\r\nsalighetens\r\nsaligheters\r\nsalighets\r\nsalighetshopp\r\nsaligt\r\nsaliv\r\nsallad\r\nsalmonella\r\nsalomo\r\nsalomos\r\nsalong\r\nsalongsberusad\r\nsalongsfähig\r\nsalpeter\r\nsalt\r\nsalta\r\nsaltar\r\nsaltomortal\r\nsaltsyra\r\nsaltvatten\r\nsalu\r\nsaluför\r\nsaluföra\r\nsaluhall\r\nsaluplats\r\nsalut\r\nsalutera\r\nsaluterar\r\nsalva\r\nsalvelse\r\nsalvelsefull\r\nsam\r\nsamarbeta\r\nsamarbetar\r\nsamarbete\r\nsamba\r\nsamband\r\nsambetydlig\r\nsambo\r\nsame\r\nsamfund\r\nsamfundsföreståndare\r\nsamfundsledare\r\nsamfälld\r\nsamfällt\r\nsamfärdsel\r\nsamförstånd\r\nsamgående\r\nsamgång\r\nsamhälle\r\nsamhällelig\r\nsamhället\r\nsamhällets\r\nsamhällsengagemang\r\nsamhällskunskap\r\nsamhällsskikt\r\nsamhällsstyre\r\nsamhörighet\r\nsamhörighetskänsla\r\nsamisk\r\nsamiska\r\nsamklang\r\nsamkväm\r\nsamkörning\r\nsamla\r\nsamlad\r\nsamlade\r\nsamlag\r\nsamlar\r\nsamlas\r\nsamlat\r\nsamlats\r\nsamlevnad\r\nsamling\r\nsamlingsregering\r\nsamma\r\nsammalunda\r\nsamman\r\nsammanbinda\r\nsammanbiten\r\nsammanblandning\r\nsammanboende\r\nsammanbor\r\nsammanbrott\r\nsammandrabbning\r\nsammandrag\r\nsammandragning\r\nsammanfaller\r\nsammanfatta\r\nsammanfattade\r\nsammanfattar\r\nsammanfattas\r\nsammanfattat\r\nsammanfattning\r\nsammanfattningsvis\r\nsammanfläta\r\nsammanfoga\r\nsammanfogade\r\nsammanför\r\nsammanföra\r\nsammangaddar\r\nsammangående\r\nsammanhang\r\nsammanhanget\r\nsammanhåller\r\nsammanhållning\r\nsammanhängande\r\nsammanhänger\r\nsammankalla\r\nsammankallade\r\nsammankallar\r\nsammankallas\r\nsammankomst\r\nsammankoppla\r\nsammanlagd\r\nsammanlagt\r\nsammanlänka\r\nsammanpressa\r\nsammanräkning\r\nsammansatt\r\nsammanslagning\r\nsammanslutna\r\nsammanslutning\r\nsammansmält\r\nsammansmältning\r\nsammanställdes\r\nsammanställer\r\nsammanställning\r\nsammanstöta\r\nsammanstötning\r\nsammansvuren\r\nsammansvurit\r\nsammansvurna\r\nsammansvärjer\r\nsammansvärjning\r\nsammansätta\r\nsammansättning\r\nsammantaget\r\nsammanträda\r\nsammanträde\r\nsammanträder\r\nsammanträffa\r\nsammanträffande\r\nsammanträffar\r\nsamme\r\nsammelsurium\r\nsammet\r\nsammetslen\r\nsamordna\r\nsamordnar\r\nsamordnare\r\nsamordning\r\nsamråd\r\nsamråda\r\nsamröre\r\nsams\r\nsamsas\r\nsamspel\r\nsamspela\r\nsamspråk\r\nsamspråka\r\nsamstämd\r\nsamstämmig\r\nsamstämmighet\r\nsamstämmigt\r\nsamsändning\r\nsamt\r\nsamtal\r\nsamtala\r\nsamtalade\r\nsamtalar\r\nsamtalet\r\nsamtalsgrupp\r\nsamtalsämnen\r\nsamtid\r\nsamtida\r\nsamtidig\r\nsamtidigt\r\nsamtliga\r\nsamtycka\r\nsamtycke\r\nsamtycker\r\nsamuels\r\nsamuelsboken\r\nsamvaro\r\nsamverka\r\nsamverkan\r\nsamverkar\r\nsamvete\r\nsamvetet\r\nsamvetets\r\nsamvetsgrann\r\nsamvetskval\r\nsamvetsro\r\nsamvetsöm\r\nsamåker\r\nsanatorium\r\nsand\r\nsandal\r\nsandaler\r\nsandalerna\r\nsandalett\r\nsandar\r\nsanden\r\nsandig\r\nsandkorn\r\nsandlåda\r\nsandpapper\r\nsandrev\r\nsandwich\r\nsanera\r\nsanerar\r\nsangvinisk\r\nsanitetsbinda\r\nsanitetstekniker\r\nsanitär\r\nsank\r\nsankmark\r\nsankt\r\nsanktion\r\nsann\r\nsanna\r\nsanne\r\nsannerligen\r\nsannfärdig\r\nsannfärdiga\r\nsannfärdige\r\nsannfärdigt\r\nsanning\r\nsanningen\r\nsanningens\r\nsannings\r\nsanningsenlig\r\nsanningsförsäkran\r\nsanningssägare\r\nsannolik\r\nsannolikhet\r\nsannolikt\r\nsannskyldig\r\nsannspådd\r\nsans\r\nsansad\r\nsanslös\r\nsant\r\nsara\r\nsardin\r\nsardonisk\r\nsarg\r\nsarga\r\nsargad\r\nsargade\r\nsargar\r\nsargat\r\nsarkasm\r\nsarkastisk\r\nsaron\r\nsarons\r\nsatan\r\nsatans\r\nsate\r\nsatellit\r\nsatin\r\nsatir\r\nsats\r\nsatsa\r\nsatsar\r\nsatsdel\r\nsatslära\r\nsatsning\r\nsatt\r\nsatte\r\nsattyg\r\nsatäng\r\nsaul\r\nsauna\r\nsauterar\r\nsav\r\nsax\r\nsaxofon\r\nscarf\r\nscen\r\nscenario\r\nscenartist\r\nscenisk\r\nscenografi\r\nscenskola\r\nscenskräck\r\nschablon\r\nschablonavdrag\r\nschabloner\r\nschabrak\r\nschack\r\nschackmatt\r\nschackningsperiod\r\nschackrar\r\nschah\r\nschakalen\r\nschakaler\r\nschakt\r\nschaktar\r\nschaktet\r\nschal\r\nschalett\r\nschampo\r\nscharlakansfeber\r\nschattering\r\nschatull\r\nschejk\r\nschema\r\nschematisk\r\nschism\r\nschizofreni\r\nschlager\r\nschnitzel\r\nschottis\r\nschweizisk\r\nschvung\r\nschyst\r\nschäfer\r\nschäslong\r\nscooter\r\nscout\r\nScoutrörelsen\r\nse\r\nseans\r\nsebaot\r\nsebaots\r\nsebra\r\nsecondhand\r\nsed\r\nsedan\r\nsedd\r\nsedda\r\nsedel\r\nsedelära\r\nsedelärande\r\nseder\r\nsedermera\r\nsedesam\r\nsediment\r\nsedlig\r\nsedlighetsbrott\r\nsedvana\r\nsedvanlig\r\nsedvänja\r\nseedar\r\nseende\r\nseg\r\nsega\r\nsegdragen\r\nsegdragning\r\nsegel\r\nsegelbar\r\nsegelbräda\r\nsegelfarare\r\nsegelflyg\r\nsegelflygplan\r\nsegelplan\r\nseger\r\nsegerbågen\r\nsegerdag\r\nsegerfana\r\nsegerfanan\r\nsegerfröjd\r\nsegerfursten\r\nsegerhjälte\r\nsegerhjältes\r\nsegerjubel\r\nsegerkraft\r\nsegerkrans\r\nsegerkronan\r\nsegerlön\r\nsegerlönen\r\nsegermakt\r\nsegern\r\nsegerns\r\nsegerrik\r\nsegerrop\r\nsegerskrud\r\nsegerstod\r\nsegerstråt\r\nsegersång\r\nsegertecken\r\nsegerton\r\nsegertro\r\nsegertåg\r\nsegerviss\r\nsegervisst\r\nsegflytande\r\nsegkörd\r\nseglar\r\nseglare\r\nseglaren\r\nseglats\r\nseglivad\r\nsegment\r\nsegnar\r\nsegra\r\nsegrade\r\nsegrande\r\nsegrar\r\nsegrare\r\nsegraren\r\nsegrarens\r\nsegrat\r\nsegregation\r\nsegregering\r\nsegsliten\r\nseismologisk\r\nsej\r\nsejdel\r\nsejour\r\nsekatör\r\nsekel\r\nsekelskifte\r\nsekler\r\nseklernas\r\nsekonderar\r\nsekret\r\nsekretariat\r\nsekreterare\r\nsekreterarens\r\nsekretess\r\nsekretessbelägga\r\nsekretion\r\nsekretär\r\nsekt\r\nsektion\r\nsektor\r\nsekulariserad\r\nsekularisering\r\nsekund\r\nsekunda\r\nsekunder\r\nsekundär\r\nsekvens\r\nselar\r\nsele\r\nselektera\r\nselekterad\r\nselektion\r\nselektiv\r\nselleri\r\nsemantisk\r\nsemester\r\nsemesterby\r\nsemesterersättning\r\nsemesterlagen\r\nsemesterlön\r\nsemestrar\r\nsemifinal\r\nsemikolon\r\nseminarium\r\nseminerar\r\nsemla\r\nsen\r\nsena\r\nsenap\r\nsenapskorn\r\nsenare\r\nsenarelägga\r\nsenarelägger\r\nsenast\r\nsenat\r\nsenator\r\nsenfärdig\r\nsenfärdighet\r\nsenig\r\nsenil\r\nsenior\r\nsenkommen\r\nsenor\r\nsensation\r\nsensationell\r\nsensibel\r\nsensibilitet\r\nsensitiv\r\nsensitivet\r\nsensitivitet\r\nsensmoral\r\nsensor\r\nsensualism\r\nsensuell\r\nsensuellt\r\nsent\r\nsentens\r\nsentenser\r\nsentida\r\nsentimental\r\nsentimentalitet\r\nseparat\r\nseparation\r\nseparator\r\nseparera\r\nseparerad\r\nseparerade\r\nseparerar\r\nsepsis\r\nseptember\r\nser\r\nserafer\r\nseraferna\r\nserb\r\nserbisk\r\nserbokroatisk\r\nserbokroatiska\r\nserenad\r\nsergeant\r\nserie\r\nseriemagasin\r\nserietidning\r\nseriös\r\nseriösa\r\nseriöst\r\nserpentin\r\nserum\r\nserva\r\nservar\r\nserve\r\nservera\r\nserverar\r\nservering\r\nservett\r\nservice\r\nservicebostad\r\nservicebox\r\nservicehus\r\nservicenäring\r\nserviceyrke\r\nservil\r\nservis\r\nservitris\r\nservitör\r\nses\r\nsesam\r\nsession\r\nset\r\nsett\r\nsevärd\r\nsevärdhet\r\nsex\r\nsexa\r\nsexig\r\nsextett\r\nsextio\r\nsexton\r\nsexualitet\r\nsexualundervisning\r\nsexuell\r\nsfinx\r\nsfär\r\nsfärisk\r\nshejk\r\nsheriff\r\nsherry\r\nshop\r\nshoppa\r\nshoppar\r\nshorts\r\nshow\r\nshowbusiness\r\nsi\r\nsia\r\nsiar\r\nsiare\r\nsicken\r\nsicksack\r\nsida\r\nsidan\r\nsiden\r\nsidfläsk\r\nsidled\r\nsidobyggnad\r\nsidor\r\nsidorna\r\nsidospår\r\nsidoväg\r\nsierska\r\nsiesta\r\nsiffra\r\nsiffran\r\nsiffror\r\nsig\r\nsightseeing\r\nsigill\r\nsigna\r\nsignad\r\nsignade\r\nsignal\r\nsignalement\r\nsignalerar\r\nsignalhorn\r\nsignatur\r\nsignaturmelodi\r\nsigne\r\nsignera\r\nsignerar\r\nsignering\r\nsignetring\r\nsignifikans\r\nsignifikant\r\nsignifikativ\r\nsignum\r\nsik\r\nsikt\r\nsikta\r\nsiktade\r\nsiktar\r\nsikte\r\nsikten\r\nsil\r\nsila\r\nsilar\r\nsilhuett\r\nsilikon\r\nsilke\r\nsilkestråd\r\nsill\r\nsilo\r\nsiluett\r\nsilver\r\nsim\r\nsimbassäng\r\nsimhall\r\nsimma\r\nsimmar\r\nsimmare\r\nsimmig\r\nsimon\r\nsimpel\r\nsimplifiera\r\nsimsalabim\r\nsimskola\r\nsimulator\r\nsimulera\r\nsimulerar\r\nsimultan\r\nsin\r\nsina\r\nsinai\r\nsinande\r\nsinar\r\nsingel\r\nsingelolycka\r\nsinglar\r\nsingular\r\nsinister\r\nsink\r\nsinka\r\nsinn\r\nsinnad\r\nsinne\r\nsinnelag\r\nsinnen\r\nsinnenas\r\nsinnes\r\nsinnesanfäktad\r\nsinnesfrid\r\nsinnesfrånvaro\r\nsinnesrörelse\r\nsinnessjuk\r\nsinnesstämning\r\nsinnesvilla\r\nsinnet\r\nsinnets\r\nsinnevärld\r\nsinnlig\r\nsinnlighet\r\nsinnrik\r\nsinnrikt\r\nsinom\r\nsinsemellan\r\nsion\r\nsionism\r\nsions\r\nsippa\r\nsippra\r\nsipprar\r\nsira\r\nsirap\r\nsiras\r\nsiren\r\nsirlig\r\nsist\r\nsista\r\nsiste\r\nsistnämnd\r\nsistone\r\nsisu\r\nsits\r\nsitt\r\nsitta\r\nsittande\r\nsitter\r\nsittning\r\nsittstrejk\r\nsituation\r\nsituationen\r\nsituationer\r\nsjabbel\r\nsjabbig\r\nsjabbla\r\nsjabblar\r\nsjal\r\nsjalett\r\nsjaletter\r\nsjappa\r\nsjas\r\nsjaskig\r\nsjok\r\nsju\r\nsjua\r\nsjuda\r\nsjuder\r\nsjuhundra\r\nsjuk\r\nsjuka\r\nsjukanmälan\r\nsjukanmäler\r\nsjukbesök\r\nsjukbidrag\r\nsjukbädden\r\nsjukdom\r\nsjukdomar\r\nsjukdomen\r\nsjuke\r\nsjukersättning\r\nsjukfrånvaro\r\nsjukförsäkring\r\nsjukgymnast\r\nsjukgymnastik\r\nsjukhem\r\nsjukhus\r\nsjukhussjuka\r\nsjukintyg\r\nsjukjournal\r\nsjukkassa\r\nsjuklig\r\nsjukling\r\nsjukpenning\r\nsjukpenningförsäkring\r\nsjukpensionär\r\nsjukskriven\r\nsjukskrivning\r\nsjuksköterska\r\nsjukstuga\r\nsjuksyster\r\nsjukt\r\nsjukvård\r\nsjukvårdare\r\nsjukvårdsbehandling\r\nsjukvårdsbiträde\r\nsjukvårdsersättning\r\nsjukvårdshuvudman\r\nsjukvårdstolk\r\nsjunde\r\nsjung\r\nsjunga\r\nsjungande\r\nsjungas\r\nsjungen\r\nsjunger\r\nsjungit\r\nsjungits\r\nsjungs\r\nsjunka\r\nsjunkande\r\nsjunken\r\nsjunker\r\nsjusovare\r\nsjusärdeles\r\nsjutillhållarlås\r\nsjuttio\r\nsjutton\r\nsjyst\r\nsjå\r\nsjåpar\r\nsjåpig\r\nsjäl\r\nsjälaglad\r\nsjälamässa\r\nsjälanöd\r\nsjälar\r\nsjälarna\r\nsjälarnas\r\nsjälaro\r\nsjälars\r\nsjälavinnare\r\nsjälen\r\nsjälens\r\nsjällös\r\nsjäls\r\nsjälslig\r\nsjälsstyrka\r\nsjälv\r\nsjälva\r\nsjälvaktning\r\nsjälvbehärskning\r\nsjälvbelåten\r\nsjälvbestämmande\r\nsjälvbevarelsedrift\r\nsjälvbiografi\r\nsjälvdeklaration\r\nsjälvfallen\r\nsjälvfallet\r\nsjälvfixerad\r\nsjälvförakt\r\nsjälvföraktet\r\nsjälvförsvar\r\nsjälvförsörjande\r\nsjälvförtroende\r\nsjälvförverkligande\r\nsjälvförvållad\r\nsjälvgod\r\nsjälvgående\r\nsjälvhosta\r\nsjälvhävdelse\r\nsjälvisk\r\nsjälviska\r\nsjälviskhet\r\nsjälviskt\r\nsjälvklar\r\nsjälvklara\r\nsjälvklarhet\r\nsjälvklart\r\nsjälvkostnadspris\r\nsjälvkänsla\r\nsjälvlysande\r\nsjälvlärd\r\nsjälvmant\r\nsjälvmedlidande\r\nsjälvmedveten\r\nsjälvmord\r\nsjälvmordsbenägen\r\nsjälvoffrande\r\nsjälvrespekt\r\nsjälvrisk\r\nsjälvrättfärdighet\r\nsjälvservering\r\nsjälvskriven\r\nsjälvstyrande\r\nsjälvstyre\r\nsjälvständig\r\nsjälvständighet\r\nsjälvständigt\r\nsjälvsvåld\r\nsjälvsäker\r\nsjälvtillit\r\nsjälvtillräcklighet\r\nsjälvuppfyllande\r\nsjälvupphöjelse\r\nsjälvupptagen\r\nsjälvupptagenhet\r\nsjälvälskande\r\nsjälvändamål\r\nsjälvömkan\r\nsjälvöverskattning\r\nsjätte\r\nsjättedels\r\nsjö\r\nsjöbuse\r\nsjöd\r\nsjöfarkost\r\nsjöfart\r\nsjöförsvar\r\nsjögräs\r\nsjögång\r\nsjökort\r\nsjöman\r\nsjömil\r\nsjön\r\nsjöng\r\nsjönk\r\nsjönöd\r\nsjöresa\r\nsjörövare\r\nsjösjuk\r\nsjösjuka\r\nsjöslag\r\nsjöss\r\nsjöstjärna\r\nsjösätter\r\nsjötunga\r\nsjövild\r\nska\r\nskabb\r\nskabbig\r\nskabrös\r\nskada\r\nskadad\r\nskadan\r\nskadar\r\nskadedjur\r\nskadeglad\r\nskadeglädje\r\nskadegörare\r\nskadegörelse\r\nskadeslös\r\nskadestånd\r\nskadeverkning\r\nskadlig\r\nskadskjuter\r\nskaffa\r\nskaffar\r\nskafferi\r\nskaffning\r\nskafföttes\r\nskaft\r\nskaftet\r\nskaka\r\nskakad\r\nskakade\r\nskakande\r\nskakar\r\nskakas\r\nskakig\r\nskakis\r\nskakning\r\nskal\r\nskala\r\nskalar\r\nskalbagge\r\nskald\r\nskaldande\r\nskalderna\r\nskaldjur\r\nskalk\r\nskall\r\nskalla\r\nskallar\r\nskalle\r\nskallen\r\nskallgång\r\nskallig\r\nskalliga\r\nskallra\r\nskallrar\r\nskalp\r\nskalpell\r\nskalv\r\nskam\r\nskamfilad\r\nskamfläck\r\nskamgrepp\r\nskamlig\r\nskamligt\r\nskamlös\r\nskamlöst\r\nskammen\r\nskampåle\r\nskamsen\r\nskamset\r\nskamvrå\r\nskandal\r\nskandalös\r\nskandera\r\nskanderar\r\nskandinav\r\nSkandinavien\r\nskandinavisk\r\nskans\r\nskapa\r\nskapad\r\nskapade\r\nskapades\r\nskapande\r\nskapandets\r\nskapar\r\nskaparande\r\nskapardag\r\nskapardrömmar\r\nskapare\r\nskaparen\r\nskaparens\r\nskaparfantasi\r\nskaparflöde\r\nskaparglöd\r\nskaparhand\r\nskaparkraft\r\nskaparkraften\r\nskaparljus\r\nskaparmakt\r\nskaparord\r\nskaparunder\r\nskaparundret\r\nskaparverk\r\nskaparvilja\r\nskaparvind\r\nskapat\r\nskapats\r\nskapelse\r\nskapelseförbundet\r\nskapelsen\r\nskapelsens\r\nskapelser\r\nskaplig\r\nskapligt\r\nskapta\r\nskapte\r\nskar\r\nskara\r\nskaran\r\nskare\r\nskarf\r\nskaror\r\nskarorna\r\nskarornas\r\nskarp\r\nskarpa\r\nskarpen\r\nskarprättare\r\nskarpsinne\r\nskarpsinnig\r\nskarpsyn\r\nskarv\r\nskarva\r\nskarvar\r\nskata\r\nskateboard\r\nskatt\r\nskatta\r\nskattar\r\nskattas\r\nskattekolumn\r\nskattekrona\r\nskattemedel\r\nskattemyndighet\r\nskatten\r\nskattens\r\nskatteplanerar\r\nskattepliktig\r\nskatter\r\nskattetabell\r\nskatteutjämning\r\nskatteåterbäring\r\nskattkammare\r\nskattning\r\nskattsedel\r\nskav\r\nskavank\r\nskaver\r\nske\r\nsked\r\nskedde\r\nskede\r\nskeende\r\nskelar\r\nskelett\r\nskelögd\r\nsken\r\nskena\r\nskenar\r\nskenbar\r\nskenben\r\nskenbild\r\nskenet\r\nskenhelig\r\nskenhelighet\r\nskepnad\r\nskepp\r\nskeppa\r\nskeppar\r\nskeppare\r\nskeppsbrott\r\nskeppsbruten\r\nskeppskök\r\nskepsis\r\nskeptiker\r\nskeptisk\r\nskeptiskt\r\nsker\r\nsketch\r\nskett\r\nskev\r\nskick\r\nskicka\r\nskickad\r\nskickar\r\nskickas\r\nskickat\r\nskickelse\r\nskicklig\r\nskickliga\r\nskicklighet\r\nskickligt\r\nskida\r\nskidan\r\nskiffer\r\nskift\r\nskifta\r\nskiftande\r\nskiftar\r\nskiftarbetare\r\nskiftarbete\r\nskifte\r\nskiften\r\nskiftgång\r\nskiftning\r\nskiftnyckel\r\nskifttillägg\r\nskikt\r\nskild\r\nskilda\r\nskilde\r\nskildes\r\nskildra\r\nskildrar\r\nskildrare\r\nskildring\r\nskilja\r\nskiljaktig\r\nskiljaktighet\r\nskiljas\r\nskiljedom\r\nskiljeman\r\nskiljemurar\r\nskiljemuren\r\nskiljenämnd\r\nskiljer\r\nskiljes\r\nskiljetecken\r\nskiljeväg\r\nskiljs\r\nskillingtryck\r\nskillnad\r\nskils\r\nskilsmässa\r\nskilt\r\nskilts\r\nskimmer\r\nskimra\r\nskimrande\r\nskimrar\r\nskimret\r\nskina\r\nskinande\r\nskiner\r\nskingra\r\nskingrad\r\nskingrade\r\nskingrades\r\nskingrar\r\nskingras\r\nskingrat\r\nskinka\r\nskinn\r\nskinnar\r\nskinnig\r\nskinnskalle\r\nskipades\r\nskipar\r\nskippa\r\nskippar\r\nskir\r\nskira\r\nskiss\r\nskissa\r\nskissera\r\nskisserar\r\nskit\r\nskitar\r\nskitbra\r\nskitprat\r\nskitsnack\r\nskitstor\r\nskiva\r\nskivar\r\nskivminne\r\nskivspelare\r\nskivstång\r\nskjorta\r\nskjul\r\nskjuta\r\nskjutande\r\nskjutbana\r\nskjuter\r\nskjutglad\r\nskjutit\r\nskjuts\r\nskjutsa\r\nskjutsar\r\nskjutskarl\r\nsko\r\nskock\r\nskockar\r\nskockas\r\nskodon\r\nskog\r\nskogar\r\nskogarna\r\nskogarnas\r\nskogen\r\nskogens\r\nskogsbruk\r\nskogsbryn\r\nskogsdöd\r\nskogstokig\r\nskohorn\r\nskoj\r\nskoja\r\nskojar\r\nskojare\r\nskojfrisk\r\nskojglad\r\nskojig\r\nskojigt\r\nskokräm\r\nskola\r\nskolad\r\nskolan\r\nskolar\r\nskolbarn\r\nskolbespisning\r\nskolbänk\r\nskolexempel\r\nskolgång\r\nskolgård\r\nskolhem\r\nskolhälsovård\r\nskolk\r\nskolka\r\nskolkar\r\nskolkontor\r\nskolkort\r\nskolkurator\r\nskolleda\r\nskollärare\r\nskolmatsal\r\nskolmogen\r\nskolmåltid\r\nskolning\r\nskolor\r\nskolplikt\r\nskolpsykolog\r\nskolsal\r\nskolskjuts\r\nskolsköterska\r\nskolstyrelse\r\nskoltandvård\r\nskoltermin\r\nskolunderbyggnad\r\nskolungdom\r\nskolår\r\nskomakare\r\nskomakeri\r\nskona\r\nskonar\r\nskonat\r\nskoningslös\r\nskonsam\r\nskonsamhet\r\nskopa\r\nskor\r\nskorpa\r\nskorpion\r\nskorrar\r\nskorsten\r\nskorstensfejare\r\nskorstensrök\r\nskorv\r\nskoskav\r\nskoter\r\nskotsk\r\nskott\r\nskotta\r\nskottar\r\nskottdag\r\nskotte\r\nskottglugg\r\nskotthåll\r\nskottkärra\r\nskottlossning\r\nskottpengar\r\nskottsäker\r\nskottår\r\nskovel\r\nskraj\r\nskrajsen\r\nskral\r\nskraltig\r\nskramla\r\nskramlar\r\nskrammel\r\nskranglig\r\nskrank\r\nskrapa\r\nskrapar\r\nskrapat\r\nskratt\r\nskratta\r\nskrattande\r\nskrattar\r\nskratten\r\nskrattgrop\r\nskrattretande\r\nskred\r\nskrek\r\nskrev\r\nskri\r\nskria\r\nskriande\r\nskribent\r\nskrida\r\nskriden\r\nskrider\r\nskridsko\r\nskrift\r\nskriftalster\r\nskriften\r\nskriftens\r\nskriftlig\r\nskriftspråk\r\nskriftställare\r\nskriftställe\r\nskrik\r\nskrika\r\nskrikande\r\nskriker\r\nskrikig\r\nskrikiga\r\nskrikit\r\nskrin\r\nskrinda\r\nskrinlägger\r\nskripta\r\nskritt\r\nskriv\r\nskriva\r\nskrivare\r\nskrivbiträde\r\nskrivblock\r\nskrivbok\r\nskrivbord\r\nskrivdon\r\nskrivelse\r\nskrivelsen\r\nskriven\r\nskriver\r\nskriverier\r\nskrivet\r\nskrivhäfte\r\nskrivit\r\nskrivkramp\r\nskrivkunnig\r\nskrivmaskin\r\nskrivning\r\nskrivs\r\nskrivsätt\r\nskrock\r\nskrockfull\r\nskrodera\r\nskrot\r\nskrota\r\nskrotar\r\nskrotens\r\nskrotgård\r\nskrott\r\nskrov\r\nskrovlig\r\nskrovmål\r\nskrubb\r\nskrubba\r\nskrubbar\r\nskrud\r\nskruda\r\nskrudas\r\nskruden\r\nskrumpen\r\nskrumpna\r\nskrupelfri\r\nskrupelfria\r\nskrupler\r\nskrupulös\r\nskrutit\r\nskruttig\r\nskruv\r\nskruva\r\nskruvad\r\nskruvar\r\nskruvmejsel\r\nskruvstäd\r\nskrymmande\r\nskrymmer\r\nskrymsle\r\nskrymta\r\nskrynkelfri\r\nskrynkla\r\nskrynklar\r\nskrynklig\r\nskryt\r\nskryta\r\nskryter\r\nskrytsam\r\nskrå\r\nskrål\r\nskråla\r\nskrålar\r\nskråma\r\nskräck\r\nskräckinjagande\r\nskräckslagen\r\nskräddare\r\nskräddarsydd\r\nskräddarsyr\r\nskräder\r\nskräll\r\nskräller\r\nskrämd\r\nskrämma\r\nskrämmande\r\nskrämmer\r\nskräms\r\nskrämsel\r\nskrämskott\r\nskrämt\r\nskrän\r\nskräna\r\nskränande\r\nskränar\r\nskränig\r\nskräp\r\nskräpar\r\nskräpig\r\nskräpkorg\r\nskrävel\r\nskrävla\r\nskrävlar\r\nskröna\r\nskröplig\r\nskröplighet\r\nskröt\r\nskubba\r\nskubbar\r\nskuff\r\nskuffa\r\nskuffas\r\nskugga\r\nskuggade\r\nskuggan\r\nskuggar\r\nskuggig\r\nskuggor\r\nskuggorna\r\nskuggornas\r\nskuggrikt\r\nskuld\r\nskuldbrev\r\nskuldbrevet\r\nskuldbörda\r\nskuldebrev\r\nskulden\r\nskuldens\r\nskulder\r\nskulderblad\r\nskuldlös\r\nskuldlösa\r\nskuldlöst\r\nskuldra\r\nskuldregister\r\nskuldror\r\nskuldsatt\r\nskuldtyngd\r\nskull\r\nskulle\r\nskulptera\r\nskulptur\r\nskulptör\r\nskum\r\nskumgummi\r\nskummar\r\nskummjölk\r\nskumpa\r\nskumpar\r\nskumpig\r\nskumraskaffärer\r\nskumstänk\r\nskumt\r\nskur\r\nskura\r\nskurar\r\nskurborste\r\nskurit\r\nskurits\r\nskurk\r\nskurkar\r\nskurken\r\nskurkstreck\r\nskurtrasa\r\nskuta\r\nskutt\r\nskutta\r\nskuttar\r\nskval\r\nskvalar\r\nskvaller\r\nskvallerbytta\r\nskvallerpress\r\nskvallra\r\nskvallrar\r\nskvalp\r\nskvalpa\r\nskvalpar\r\nskvatt\r\nskvätt\r\nskvätta\r\nskvätter\r\nsky\r\nskyar\r\nskyarna\r\nskyars\r\nskydd\r\nskydda\r\nskyddad\r\nskyddande\r\nskyddar\r\nskyddat\r\nskydde\r\nskyddsföreskrift\r\nskyddshelgon\r\nskyddsinstruktion\r\nskyddsinstruktör\r\nskyddskläder\r\nskyddskommitté\r\nskyddskonsulent\r\nskyddslag\r\nskyddsling\r\nskyddslös\r\nskyddsombud\r\nskyddsområde\r\nskyddsrum\r\nskyddstillsyn\r\nskyddsåtgärd\r\nskyddsängel\r\nskyfall\r\nskyffel\r\nskyffla\r\nskyfflar\r\nskygd\r\nskygg\r\nskyggar\r\nskygglapp\r\nskyhöga\r\nskyla\r\nskylde\r\nskyldeman\r\nskyldemän\r\nskyldig\r\nskyldighet\r\nskyldrar\r\nskyler\r\nskylla\r\nskyller\r\nskylt\r\nskyltar\r\nskyltdocka\r\nskyltfönster\r\nskymd\r\nskymdes\r\nskymf\r\nskymfa\r\nskymfad\r\nskymfar\r\nskymfas\r\nskymfat\r\nskymfen\r\nskymflig\r\nskymford\r\nskymma\r\nskymmande\r\nskymmas\r\nskymmer\r\nskymning\r\nskymningen\r\nskymningsljus\r\nskymningstid\r\nskymt\r\nskymta\r\nskymtar\r\nskymundan\r\nskyn\r\nskynda\r\nskyndade\r\nskyndar\r\nskyndsam\r\nskyndsamhet\r\nskyndsamt\r\nskynke\r\nskyr\r\nskyskrapa\r\nskytt\r\nskytte\r\nskyttegrav\r\nskyttekung\r\nskyttel\r\nskytteltrafik\r\nskåda\r\nskådar\r\nskådat\r\nskådebröd\r\nskådeplats\r\nskådespel\r\nskådespelare\r\nskådis\r\nskål\r\nskålar\r\nskålen\r\nskållar\r\nSkåne\r\nskåning\r\nskånsk\r\nskånska\r\nskåp\r\nskåpbil\r\nskåra\r\nskägg\r\nskägget\r\nskäggig\r\nskäggstubb\r\nskäl\r\nskälig\r\nskäligen\r\nskäll\r\nskälla\r\nskäller\r\nskällsord\r\nskälm\r\nskälva\r\nskälvande\r\nskälvde\r\nskälver\r\nskälvning\r\nskämd\r\nskämmas\r\nskämmer\r\nskäms\r\nskämt\r\nskämta\r\nskämtade\r\nskämtar\r\nskämtare\r\nskämtlynne\r\nskämtsam\r\nskända\r\nskändade\r\nskändar\r\nskändlig\r\nskänk\r\nskänka\r\nskänkas\r\nskänker\r\nskänkes\r\nskänks\r\nskänkt\r\nskänkte\r\nskänkts\r\nskär\r\nskära\r\nskärande\r\nskärbräda\r\nskärbräde\r\nskärgård\r\nskärm\r\nskärmade\r\nskärmar\r\nskärmen\r\nskärmmössa\r\nskärmytsling\r\nskärning\r\nskärp\r\nskärpa\r\nskärper\r\nskärpning\r\nskärpt\r\nskärrad\r\nskärseld\r\nskärskåda\r\nskärskådar\r\nskärskådning\r\nskärt\r\nskärtorsdag\r\nskärva\r\nskärvor\r\nsköka\r\nsköld\r\nsköldkörtel\r\nsköldpadda\r\nskölja\r\nsköljas\r\nsköljde\r\nsköljer\r\nskön\r\nsköna\r\nskönare\r\nskönast\r\nskönaste\r\nskönhet\r\nskönheten\r\nskönhetsbehandling\r\nskönhetsrike\r\nskönja\r\nskönjbar\r\nskönjer\r\nskönlitteratur\r\nskönlitterär\r\nskönmåla\r\nskönmålar\r\nskönstaxering\r\nskönt\r\nskör\r\nskörd\r\nskörda\r\nskördar\r\nskördarna\r\nskördarnas\r\nskördat\r\nskördedagen\r\nskördemän\r\nskördemännen\r\nskördemännens\r\nskörden\r\nskördens\r\nskördetid\r\nskördetimmen\r\nskördetröska\r\nskört\r\nsköt\r\nsköta\r\nskötare\r\nsköte\r\nsköter\r\nsköterska\r\nskötsam\r\nskötsel\r\nsköttes\r\nskövla\r\nskövlade\r\nskövlandet\r\nskövlar\r\nskövlare\r\nskövlat\r\nskövling\r\nslabba\r\nslabbig\r\nsladd\r\nsladda\r\nsladdar\r\nsladdbarn\r\nsladder\r\nsladdrar\r\nsladdrig\r\nslaf\r\nslafa\r\nslafsig\r\nslag\r\nslaganfall\r\nslagbord\r\nslagen\r\nslaget\r\nslagfält\r\nslagfärdig\r\nslagga\r\nslaggar\r\nslagget\r\nslagit\r\nslagits\r\nslagkraft\r\nslagkraftig\r\nslagnas\r\nslagnummer\r\nslagord\r\nslagpåse\r\nslags\r\nslagsida\r\nslagskämpe\r\nslagsmål\r\nslagträ\r\nslagverk\r\nslak\r\nslakhet\r\nslakt\r\nslaktad\r\nslaktar\r\nslaktare\r\nslaktat\r\nslakteri\r\nslalom\r\nslam\r\nslammer\r\nslamra\r\nslamrar\r\nslamsa\r\nslang\r\nslangbåge\r\nslank\r\nslant\r\nslantar\r\nslapp\r\nslappa\r\nslappar\r\nslappna\r\nslappnar\r\nslarv\r\nslarva\r\nslarvaktig\r\nslarvar\r\nslarver\r\nslarvig\r\nslarvsylta\r\nslashas\r\nslask\r\nslaskar\r\nslaskig\r\nslatt\r\nslav\r\nslavar\r\nslaven\r\nslaveri\r\nslaveriet\r\nslavflicka\r\nslavinna\r\nslavinnan\r\nslavinnans\r\nslavinnas\r\nslavinnor\r\nslavinnorna\r\nslaviskt\r\nslavtjänst\r\nslejf\r\nslem\r\nslemhinna\r\nslemmig\r\nslentrian\r\nslentrianmässig\r\nslet\r\nslets\r\nslev\r\nslicka\r\nslickar\r\nslickepinne\r\nslida\r\nslimmad\r\nslinga\r\nslingra\r\nslingrade\r\nslingrande\r\nslingrar\r\nslingrig\r\nslinka\r\nslinker\r\nslint\r\nslinta\r\nslinter\r\nslipad\r\nslipar\r\nslipas\r\nslipat\r\nslipover\r\nslippa\r\nslipper\r\nslipprig\r\nslippriga\r\nslips\r\nslipstvång\r\nslira\r\nslirar\r\nsliskig\r\nslit\r\nslita\r\nslitage\r\nslitas\r\nsliten\r\nsliter\r\nslitig\r\nslitit\r\nslitna\r\nslits\r\nslitsam\r\nslitstark\r\nslockna\r\nslocknad\r\nslocknande\r\nslocknar\r\nslocknat\r\nslog\r\nslogan\r\nslogs\r\nsloka\r\nslokar\r\nslokörad\r\nslopa\r\nslopar\r\nslott\r\nslovak\r\nslovakisk\r\nsloven\r\nslovensk\r\nsluddrar\r\nsluddrig\r\nslug\r\nslugas\r\nsluka\r\nslukar\r\nslum\r\nslumkvarter\r\nslummer\r\nslump\r\nslumpa\r\nslumpartad\r\nslumpmässig\r\nslumpvis\r\nslumra\r\nslumrande\r\nslumrar\r\nslumrare\r\nslunga\r\nslungade\r\nslungan\r\nslungar\r\nslungas\r\nslungat\r\nslup\r\nsluppit\r\nslurk\r\nslusk\r\nsluss\r\nslussar\r\nslussarna\r\nslut\r\nsluta\r\nslutar\r\nslutas\r\nslutat\r\nsluten\r\nsluter\r\nslutes\r\nslutet\r\nslutför\r\nslutföra\r\nslutförande\r\nslutförd\r\nslutförvaring\r\nslutgiltig\r\nslutgiltigt\r\nslutit\r\nslutits\r\nslutkamp\r\nslutkläm\r\nslutkörd\r\nslutledning\r\nslutlig\r\nslutliga\r\nslutligen\r\nslutna\r\nslutord\r\nslutpunkt\r\nsluts\r\nslutsats\r\nslutsatsa\r\nslutsatsen\r\nslutskattsedel\r\nslutspel\r\nslutspurt\r\nslutstation\r\nslutsumma\r\nslutta\r\nsluttampen\r\nsluttande\r\nsluttar\r\nsluttning\r\nsluttningen\r\nslutvinjett\r\nslutändan\r\nsly\r\nslyngel\r\nslå\r\nslående\r\nslån\r\nslår\r\nslås\r\nslåss\r\nslåtter\r\nsläck\r\nsläcka\r\nsläcker\r\nsläcks\r\nsläckt\r\nsläde\r\nslägga\r\nsläkt\r\nsläktband\r\nsläkte\r\nsläkten\r\nsläktena\r\nsläktens\r\nsläkter\r\nsläkterna\r\nsläkternas\r\nsläkters\r\nsläktes\r\nsläkting\r\nsläktled\r\nsläktnamn\r\nsläktskap\r\nsläkttavla\r\nsläktträd\r\nsländan\r\nsläng\r\nslänga\r\nslängd\r\nslänger\r\nslängt\r\nslänt\r\nsläntra\r\nsläntrar\r\nsläp\r\nsläpa\r\nsläpad\r\nsläpande\r\nsläpar\r\nsläpig\r\nsläpp\r\nsläppa\r\nsläpper\r\nsläpphänt\r\nsläppt\r\nsläpptes\r\nsläpvagn\r\nslät\r\nslätar\r\nslätstruken\r\nslätt\r\nslätter\r\nslö\r\nslöa\r\nslöar\r\nslödder\r\nslöfock\r\nslöja\r\nslöjan\r\nslöjd\r\nslöjdar\r\nslöjor\r\nslök\r\nslösa\r\nslösaktig\r\nslösaktighet\r\nslösar\r\nslösat\r\nslöseri\r\nslöt\r\nsmack\r\nsmacka\r\nsmackar\r\nsmak\r\nsmaka\r\nsmakade\r\nsmakar\r\nsmakat\r\nsmakbit\r\nsmaken\r\nsmaker\r\nsmakfull\r\nsmaklig\r\nsmakligt\r\nsmaklök\r\nsmaklösa\r\nsmakprov\r\nsmaksak\r\nsmaksatt\r\nsmaksätta\r\nsmaksätter\r\nsmaksättning\r\nsmal\r\nsmall\r\nsmalnar\r\nsmalt\r\nsmaragd\r\nsmart\r\nsmartast\r\nsmaska\r\nsmaskar\r\nsmaskens\r\nsmaskig\r\nsmaskigt\r\nsmattrar\r\nsmed\r\nsmederna\r\nsmedja\r\nsmek\r\nsmeka\r\nsmeker\r\nsmekmånad\r\nsmeknamn\r\nsmekning\r\nsmeks\r\nsmeksam\r\nsmekt\r\nsmekte\r\nsmet\r\nsmeta\r\nsmetar\r\nsmetig\r\nsmicker\r\nsmickra\r\nsmickrande\r\nsmickrar\r\nsmidas\r\nsmide\r\nsmider\r\nsmidig\r\nsmidighet\r\nsmil\r\nsmila\r\nsmilar\r\nsmilgrop\r\nsmink\r\nsminkade\r\nsminkar\r\nsmisk\r\nsmiska\r\nsmiskar\r\nsmita\r\nsmitare\r\nsmiter\r\nsmitt\r\nsmitta\r\nsmittar\r\nsmittbärare\r\nsmittbärarersättning\r\nsmittkoppor\r\nsmittosam\r\nsmittsam\r\nsmittämne\r\nsmocka\r\nsmockfull\r\nsmog\r\nsmoking\r\nsmolk\r\nsmorde\r\nsmort\r\nsmuggelgods\r\nsmugglar\r\nsmugit\r\nsmula\r\nsmular\r\nsmulor\r\nsmulorna\r\nsmultit\r\nsmultron\r\nsmultronställe\r\nsmussel\r\nsmussla\r\nsmusslar\r\nsmuts\r\nsmutsa\r\nsmutsar\r\nsmutsat\r\nsmutsen\r\nsmutsgris\r\nsmutsig\r\nsmutskasta\r\nsmutskastar\r\nsmutt\r\nsmutta\r\nsmuttar\r\nsmycka\r\nsmyckad\r\nsmyckar\r\nsmyckas\r\nsmyckat\r\nsmycke\r\nsmycken\r\nsmyg\r\nsmyga\r\nsmygande\r\nsmygare\r\nsmyger\r\nsmygtitta\r\nsmå\r\nsmåaktig\r\nsmåbarn\r\nsmåborgerlig\r\nsmåbruk\r\nsmåbröd\r\nsmåfolk\r\nsmåfranska\r\nsmåföretagare\r\nsmågnabbas\r\nsmågrus\r\nsmågräla\r\nsmåhus\r\nsmåkoka\r\nSmåland\r\nsmåle\r\nsmåleende\r\nsmåler\r\nsmålänning\r\nsmålänningar\r\nsmåläskig\r\nsmåningom\r\nsmåpaket\r\nsmåpengar\r\nsmåplanet\r\nsmåpotatis\r\nsmåprat\r\nsmåprata\r\nsmårolig\r\nsmåsak\r\nsmåsaker\r\nsmåsint\r\nsmåsjunga\r\nsmåskalig\r\nsmåskuret\r\nsmåspringa\r\nsmåstad\r\nsmåsten\r\nsmåtimmarna\r\nsmåtjock\r\nsmåtrevlig\r\nsmått\r\nsmåttighet\r\nsmåttingar\r\nsmåväxt\r\nsmäcker\r\nsmäda\r\nsmädar\r\nsmädelse\r\nsmädelser\r\nsmäktande\r\nsmälek\r\nsmäll\r\nsmälla\r\nsmällare\r\nsmällde\r\nsmäller\r\nsmält\r\nsmälta\r\nsmältas\r\nsmältdegel\r\nsmälter\r\nsmälts\r\nsmältverk\r\nsmärre\r\nsmärt\r\nsmärta\r\nsmärtan\r\nsmärtans\r\nsmärtar\r\nsmärtas\r\nsmärtfyllda\r\nsmärting\r\nsmärtor\r\nsmärtorna\r\nsmärtornas\r\nsmärtsam\r\nsmärtstillande\r\nsmög\r\nsmör\r\nsmöra\r\nsmörgås\r\nsmörgåsbord\r\nsmörgåsgrill\r\nsmörgåstårta\r\nsmörj\r\nsmörja\r\nsmörjde\r\nsmörjelse\r\nsmörjelsen\r\nsmörjer\r\nsmörpapper\r\nsmörsång\r\nsmörsångare\r\nsnabb\r\nsnabba\r\nsnabbar\r\nsnabbare\r\nsnabbast\r\nsnabbfotad\r\nsnabbgående\r\nsnabbhet\r\nsnabbköp\r\nsnabbt\r\nsnabbtänkt\r\nsnabel\r\nsnack\r\nsnacka\r\nsnackar\r\nsnacks\r\nsnacksalig\r\nsnagg\r\nsnaggar\r\nsnappa\r\nsnappar\r\nsnappat\r\nsnaps\r\nsnar\r\nsnara\r\nsnarare\r\nsnarast\r\nsnarkar\r\nsnarlik\r\nsnarlika\r\nsnaror\r\nsnarorna\r\nsnarstucken\r\nsnart\r\nsnask\r\nsnatta\r\nsnattar\r\nsnattare\r\nsnatter\r\nsnatteri\r\nsnattra\r\nsnattrar\r\nsnava\r\nsnavar\r\nsned\r\nsnedfördelning\r\nsnedsprång\r\nsnedsteg\r\nsnedtänder\r\nsnedvriden\r\nsnedvrider\r\nsnegla\r\nsneglar\r\nsnett\r\nsnibb\r\nsnickarbyxor\r\nsnickare\r\nsnickaren\r\nsnickarna\r\nsnickeri\r\nsnickrar\r\nsnicksnack\r\nsnida\r\nsnidar\r\nsniffa\r\nsniffar\r\nsnigel\r\nsnigelpost\r\nsnika\r\nsniken\r\nsnikenhet\r\nsnille\r\nsnilleblixt\r\nsnillrik\r\nsnipig\r\nsnirkel\r\nsnirklad\r\nsnitsar\r\nsnitsig\r\nsnitslar\r\nsnitt\r\nsnitta\r\nsnittar\r\nsno\r\nsnobb\r\nsnobbig\r\nsnobbism\r\nsnodd\r\nsnodden\r\nsnofsig\r\nsnok\r\nsnoka\r\nsnokar\r\nsnopen\r\nsnopp\r\nsnoppa\r\nsnoppar\r\nsnor\r\nsnorar\r\nsnorig\r\nsnorkel\r\nsnorkig\r\nsnorkråka\r\nsnorunge\r\nsnorvalp\r\nsnubbe\r\nsnubbla\r\nsnubblar\r\nsnudd\r\nsnudda\r\nsnuddar\r\nsnuddning\r\nsnurr\r\nsnurra\r\nsnurrad\r\nsnurrar\r\nsnurrig\r\nsnus\r\nsnusa\r\nsnusar\r\nsnusförnuftig\r\nsnusk\r\nsnuskhummer\r\nsnuskig\r\nsnusportion\r\nsnustorr\r\nsnut\r\nsnuten\r\nsnutit\r\nsnutt\r\nsnuva\r\nsnuvar\r\nsnuvig\r\nsnyft\r\nsnyfta\r\nsnyftar\r\nsnyftning\r\nsnygg\r\nsnyggar\r\nsnyggast\r\nsnygghet\r\nsnygging\r\nsnyggt\r\nsnyltar\r\nsnyltare\r\nsnyltgäst\r\nsnyter\r\nsnyting\r\nsnål\r\nsnåla\r\nsnålar\r\nsnålblåst\r\nsnålhet\r\nsnåljåp\r\nsnålskjuts\r\nsnår\r\nsnårig\r\nsnäcka\r\nsnäll\r\nsnälla\r\nsnällhet\r\nsnälltåg\r\nsnäpp\r\nsnärja\r\nsnärjande\r\nsnärjd\r\nsnärjer\r\nsnärjig\r\nsnärjs\r\nsnärt\r\nsnärta\r\nsnärtar\r\nsnärtig\r\nsnäser\r\nsnäsig\r\nsnäv\r\nsnäva\r\nsnö\r\nsnöa\r\nsnöar\r\nsnöd\r\nsnödriva\r\nsnöfall\r\nsnöhög\r\nsnöig\r\nsnön\r\nsnöplig\r\nsnör\r\nsnöra\r\nsnöras\r\nsnöre\r\nsnörliv\r\nsnörper\r\nsnörvlar\r\nsnöskoter\r\nsnöskred\r\nsnöskrud\r\nsnöslask\r\nsnösörja\r\nsnöt\r\nsnövit\r\nsnövita\r\nso\r\nsoaré\r\nsober\r\nsocial\r\nsocialarbetare\r\nsocialassistent\r\nsocialavgift\r\nsocialdemokrat\r\nsocialdemokrati\r\nsocialen\r\nsocialförsäkring\r\nsocialgrupp\r\nsocialhjälp\r\nsocialhögskola\r\nsocialiserar\r\nsocialism\r\nsocialist\r\nsocialistisk\r\nsocialjour\r\nsocialkatalog\r\nsocialkonsulent\r\nsocialkontor\r\nsocialläkare\r\nsocialminister\r\nsocialnämnd\r\nsocialpolitik\r\nsocialregister\r\nsocialsekreterare\r\nsocialtjänst\r\nsocialutskott\r\nsocialvård\r\nsocietet\r\nsociolog\r\nsociologi\r\nsocionom\r\nsocka\r\nsockar\r\nsockel\r\nsocken\r\nsocker\r\nsockerbagare\r\nsockerbeta\r\nsockerdricka\r\nsockerkaka\r\nsockersjuka\r\nsockra\r\nsockrar\r\nsockrigt\r\nsoda\r\nsodavatten\r\nsodom\r\nsodomi\r\nsoffa\r\nsoffliggare\r\nsoffor\r\nsofistikerad\r\nsoft\r\nsofta\r\nsoja\r\nsol\r\nsolar\r\nsolarium\r\nsolarplexus\r\nsolars\r\nsolbadar\r\nsolbelysta\r\nsolbilder\r\nsolbränd\r\nsolbränna\r\nsolcell\r\nsoldat\r\nsoldatens\r\nsolen\r\nsolens\r\nsolfjäder\r\nsolfångare\r\nsolglans\r\nsolglasögon\r\nsolgul\r\nsolid\r\nsolidariserar\r\nsolidarisk\r\nsolidaritet\r\nsoliditet\r\nsolig\r\nsoliga\r\nsolist\r\nsolitär\r\nsolkatt\r\nsolkig\r\nsolklar\r\nsolklara\r\nsolljus\r\nsolljusa\r\nsolnedgång\r\nsolnedgången\r\nsolo\r\nsolpanel\r\nsolsken\r\nsolskensdag\r\nsolsting\r\nsoluppgång\r\nsoluppgången\r\nsoluppgångens\r\nsolution\r\nsolvärmen\r\nsom\r\nsomatisk\r\nsomliga\r\nsommar\r\nsommardag\r\nsommardräkten\r\nsommaren\r\nsommarens\r\nsommargäst\r\nsommarhus\r\nsommarkläder\r\nsommarljus\r\nsommarlov\r\nsommarluften\r\nsommarn\r\nsommarns\r\nsommarpsalm\r\nsommarregnets\r\nsommarro\r\nsommarskola\r\nsommarskrud\r\nsommarstuga\r\nsommarställe\r\nsommarsång\r\nsommartid\r\nsommartiden\r\nsommarvinden\r\nsomna\r\nsomnar\r\nsomnat\r\nsomrar\r\nsomrars\r\nsomras\r\nson\r\nsona\r\nsonad\r\nsonar\r\nsonat\r\nsond\r\nsondera\r\nsonderar\r\nsondering\r\nsondotter\r\nsonen\r\nsonens\r\nsonhustru\r\nsonika\r\nsonson\r\nsopa\r\nsopar\r\nsopborste\r\nsopkärl\r\nsopmaja\r\nsopnedkast\r\nsopor\r\nsoppa\r\nsoppan\r\nsoppborste\r\nsoppigt\r\nsoppsked\r\nsopran\r\nsopskyffel\r\nsopstation\r\nsoptipp\r\nsoptunna\r\nsorbet\r\nsorg\r\nsorgebud\r\nsorgedalen\r\nsorgefloden\r\nsorgekalken\r\nsorgen\r\nsorgens\r\nsorger\r\nsorgerna\r\nsorgerop\r\nsorgesång\r\nsorgevågen\r\nsorglig\r\nsorgligt\r\nsorglustig\r\nsorglös\r\nsorgmodig\r\nsorgsen\r\nsorgsenhet\r\nsorgset\r\nsorgsna\r\nsorgsnas\r\nsorguppfyllda\r\nsork\r\nsorl\r\nsorla\r\nsorlande\r\nsorlar\r\nsorlet\r\nsort\r\nsorten\r\nsortera\r\nsorterar\r\nsortering\r\nsorters\r\nsorti\r\nsortiment\r\nsorts\r\nSOS\r\nsot\r\nsota\r\nsotar\r\nsotare\r\nsotig\r\nsotis\r\nsouvenir\r\nsov\r\nsova\r\nsover\r\nsovgemak\r\nsovit\r\nsovjetisk\r\nsovplats\r\nsovra\r\nsovrar\r\nsovring\r\nsovrum\r\nsovsal\r\nsovsäck\r\nsovvagn\r\nspackel\r\nspacklar\r\nspad\r\nspade\r\nspader\r\nspagetti\r\nspaghetti\r\nspak\r\nspaljé\r\nspalt\r\nspana\r\nspanande\r\nspanar\r\nspanat\r\nspaning\r\nspanjor\r\nspankulera\r\nspankulerar\r\nspann\r\nspannmål\r\nspansk\r\nspanska\r\nspar\r\nspara\r\nsparar\r\nsparas\r\nsparat\r\nsparbank\r\nsparbössa\r\nspargris\r\nspark\r\nsparka\r\nsparkar\r\nsparkcykel\r\nsparken\r\nsparlåga\r\nsparris\r\nsparsam\r\nspartansk\r\nspartanskt\r\nsparv\r\nsparvar\r\nsparven\r\nspasm\r\nspastisk\r\nspatial\r\nspatiös\r\nspatsera\r\nspatserande\r\nspatserar\r\nspe\r\nspeceriaffär\r\nspecialare\r\nspecialbeställd\r\nspecialiserar\r\nspecialist\r\nspecialitet\r\nspecialskola\r\nspecialundervisning\r\nspeciell\r\nspeciellt\r\nspecificera\r\nspecificerar\r\nspecifik\r\nspecifikation\r\nspecimen\r\nspedition\r\nspeedway\r\nspefull\r\nspegel\r\nspegelbild\r\nspegelklara\r\nspegeln\r\nspegla\r\nspeglad\r\nspeglade\r\nspeglande\r\nspeglar\r\nspeglas\r\nspegling\r\nspeja\r\nspejar\r\nspejare\r\nspejaren\r\nspejarna\r\nspektakel\r\nspektakulär\r\nspektrum\r\nspekulant\r\nspekulation\r\nspekulera\r\nspekulerar\r\nspel\r\nspela\r\nspelad\r\nspelar\r\nspelare\r\nspelas\r\nspelenhet\r\nspelet\r\nspelevink\r\nspelkonsol\r\nspelman\r\nspelning\r\nspelplan\r\nspelregel\r\nspelrum\r\nspenat\r\nspendera\r\nspenderade\r\nspenderar\r\nspene\r\nspenslig\r\nspetig\r\nspets\r\nspetsa\r\nspetsar\r\nspetsen\r\nspetsfundig\r\nspetsig\r\nspett\r\nspettkaka\r\nspetälska\r\nspex\r\nspexar\r\nspik\r\nspika\r\nspikad\r\nspikar\r\nspikarna\r\nspikarnas\r\nspill\r\nspilla\r\nspillas\r\nspillde\r\nspiller\r\nspillet\r\nspillning\r\nspillo\r\nspillra\r\nspillror\r\nspillts\r\nspilta\r\nspindel\r\nspinkig\r\nspinna\r\nspinner\r\nspinnspö\r\nspion\r\nspionage\r\nspionerar\r\nspionerat\r\nspioneri\r\nspira\r\nspiral\r\nspiran\r\nspirande\r\nspirar\r\nspiritism\r\nspirituell\r\nspis\r\nspisa\r\nspisar\r\nspjut\r\nspjuver\r\nspjäla\r\nspjälka\r\nspjälkar\r\nspjäll\r\nspjärn\r\nspjärnar\r\nsplinta\r\nsplit\r\nsplitter\r\nsplittra\r\nsplittrad\r\nsplittrade\r\nsplittrar\r\nsplittring\r\nsplittringar\r\nspola\r\nspolar\r\nspole\r\nspoliera\r\nspolierar\r\nspoling\r\nsponsor\r\nsponsra\r\nsponsrar\r\nspontan\r\nsporadisk\r\nspord\r\nsporra\r\nsporrade\r\nsporrande\r\nsporrar\r\nsporre\r\nsport\r\nsporta\r\nsportbil\r\nsporten\r\nsportfiskare\r\nsporthoj\r\nsportig\r\nsportlov\r\nsportslig\r\nspotlight\r\nspotsk\r\nspott\r\nspotta\r\nspottade\r\nspottar\r\nspottstyver\r\nsprack\r\nsprak\r\nspraka\r\nsprakande\r\nsprakar\r\nsprallig\r\nsprang\r\nspratt\r\nsprattla\r\nsprattlar\r\nspray\r\nsprayar\r\nspred\r\nsprej\r\nsprejar\r\nspretar\r\nspretig\r\nspricka\r\nspricker\r\nsprid\r\nsprida\r\nspridas\r\nspridd\r\nspridda\r\nsprider\r\nspridning\r\nspring\r\nspringa\r\nspringande\r\nspringare\r\nspringbrunn\r\nspringer\r\nspringpojke\r\nspringsjas\r\nspringsko\r\nsprinkler\r\nsprint\r\nsprinta\r\nsprinter\r\nsprit\r\nspritkök\r\nspritmissbrukare\r\nspriträttigheter\r\nspritt\r\nspritta\r\nspritter\r\nspruckit\r\nsprudlande\r\nsprudlar\r\nsprungit\r\nspruta\r\nsprutar\r\nsprutnål\r\nspråk\r\nspråka\r\nspråkas\r\nspråken\r\nspråkforskare\r\nspråklig\r\nspråklära\r\nspråkrör\r\nspråksam\r\nspråkvetare\r\nspråkvetenskap\r\nsprång\r\nsprångande\r\nsprångbräda\r\nsprångmarsch\r\nspräcka\r\nspräcker\r\nspräcklig\r\nspräng\r\nspränga\r\nsprängas\r\nsprängda\r\nsprängde\r\nspränger\r\nsprängladdning\r\nsprängmedel\r\nsprängning\r\nsprängs\r\nsprängämne\r\nsprätt\r\nsprättar\r\nsprätter\r\nsprättig\r\nspröd\r\nspröda\r\nspröjs\r\nspröt\r\nspunnit\r\nspurt\r\nspurta\r\nspurtar\r\nsputnik\r\nspy\r\nspya\r\nspydig\r\nspydighet\r\nspyr\r\nspå\r\nspåkvinna\r\nspåman\r\nspån\r\nspåna\r\nspång\r\nspånplattor\r\nspånskiva\r\nspår\r\nspåra\r\nspårar\r\nspåren\r\nspårlös\r\nspårsinne\r\nspårvagn\r\nspårväg\r\nspårämne\r\nspått\r\nspäck\r\nspäckad\r\nspäd\r\nspäda\r\nspädbarn\r\nspädbarns\r\nspäder\r\nspäker\r\nspäkte\r\nspänd\r\nspände\r\nspänn\r\nspänna\r\nspännande\r\nspänne\r\nspänner\r\nspänning\r\nspänns\r\nspännvidd\r\nspänst\r\nspänstig\r\nspänt\r\nspär\r\nspärr\r\nspärra\r\nspärrad\r\nspärrar\r\nspärras\r\nspärrlinje\r\nspärrlista\r\nspätta\r\nspö\r\nspöa\r\nspöar\r\nspöka\r\nspökar\r\nspöke\r\nspökligt\r\nspöklik\r\nspöklikt\r\nspöregn\r\nspöregna\r\nspörja\r\nspörjas\r\nspörjer\r\nspörsmål\r\nsquash\r\nstab\r\nstabbig\r\nstabil\r\nstabilisera\r\nstabiliserar\r\nstabilitet\r\nstack\r\nstackare\r\nstackars\r\nstad\r\nstadd\r\nstaden\r\nstadens\r\nstadfästa\r\nstadfäster\r\nstadga\r\nstadgar\r\nstadig\r\nstadighet\r\nstadigt\r\nstadigvarande\r\nstadion\r\nstadium\r\nstads\r\nstadsbild\r\nstadsbud\r\nstadsdel\r\nstadshus\r\nstadskärna\r\nstadsmuren\r\nstadsmurens\r\nstadsplan\r\nstadsportar\r\nstafett\r\nstaffagefigur\r\nstaffli\r\nstag\r\nstaga\r\nstagnerar\r\nstakade\r\nstakar\r\nstakat\r\nstake\r\nstaken\r\nstaket\r\nstal\r\nstall\r\nstallet\r\nstallets\r\nstalltips\r\nstals\r\nstam\r\nstamfader\r\nstamfadern\r\nstammar\r\nstammen\r\nstampa\r\nstampar\r\nstan\r\nstandar\r\nstandard\r\nstandardisera\r\nstandardiserar\r\nstandardisering\r\nstandardmått\r\nstandardprov\r\nstank\r\nstanna\r\nstannade\r\nstannar\r\nstannat\r\nstans\r\nstansa\r\nstansar\r\nstapel\r\nstapla\r\nstaplar\r\nstappla\r\nstapplande\r\nstapplar\r\nstare\r\nstaren\r\nstark\r\nstarka\r\nstarkare\r\nstarkas\r\nstarkaste\r\nstarke\r\nstarkes\r\nstarkhet\r\nstarkt\r\nstarköl\r\nstarr\r\nstart\r\nstarta\r\nstartar\r\nstarten\r\nstartgrop\r\nstarthjälp\r\nstartklar\r\nstartprocess\r\nstartskott\r\nstass\r\nstat\r\nstatare\r\nstaten\r\nstation\r\nstationera\r\nstationerar\r\nstationering\r\nstationär\r\nstatisk\r\nstatist\r\nstatistik\r\nstatistisk\r\nstativ\r\nstatlig\r\nstatsbidrag\r\nstatschef\r\nstatskunskap\r\nstatskupp\r\nstatskyrka\r\nstatslös\r\nstatsmakterna\r\nstatsman\r\nstatsminister\r\nstatsmän\r\nstatsråd\r\nstatssekreterare\r\nstatsskatt\r\nstatsskick\r\nstatstjänsteman\r\nstatsöverhuvud\r\nstatuerar\r\nstatus\r\nstaty\r\nstav\r\nstavar\r\nstavarna\r\nstavelse\r\nstaven\r\nstavning\r\nstearin\r\nstearinljus\r\nstefanus\r\nsteg\r\nstega\r\nstegar\r\nstege\r\nstegen\r\nsteget\r\nstegets\r\nstegra\r\nstegrar\r\nstegring\r\nstegvis\r\nstek\r\nsteka\r\nstekel\r\nsteker\r\nstekhet\r\nstekpanna\r\nstekpannan\r\nsteks\r\nsteksaft\r\nstekt\r\nstel\r\nstelbent\r\nstelhet\r\nstelkramp\r\nstelna\r\nstelnar\r\nstelnat\r\nsten\r\nstena\r\nstenar\r\nstenarna\r\nstenblock\r\nstenbumling\r\nstencil\r\nstencilerar\r\nstenen\r\nstengods\r\nstengrund\r\nstenhög\r\nstenig\r\nstenkaka\r\nstenkast\r\nstenmur\r\nstenografi\r\nstenskott\r\nstenåldern\r\nstepp\r\nstereo\r\nstereoanläggning\r\nstereotyp\r\nsteril\r\nsteriliserar\r\nstetoskop\r\nsteward\r\nstick\r\nsticka\r\nstickande\r\nstickar\r\nstickas\r\nsticker\r\nsticket\r\nstickig\r\nstickling\r\nstickning\r\nstickpropp\r\nstickprov\r\nsticks\r\nstift\r\nstifta\r\nstiftar\r\nstiftat\r\nstiftelse\r\nstiftschef\r\nstiftsföreståndare\r\nstig\r\nstiga\r\nstigande\r\nstigar\r\nstige\r\nstigen\r\nstiger\r\nstigit\r\nstigning\r\nstil\r\nstila\r\nstilbildande\r\nstilenlig\r\nstilett\r\nstilfull\r\nstilhärmning\r\nstilig\r\nstilimitation\r\nstiliserar\r\nstill\r\nstilla\r\nstillad\r\nstillade\r\nstillar\r\nstillas\r\nstillastående\r\nstilleben\r\nstillestånd\r\nstillhet\r\nstillheten\r\nstillnar\r\nstillsam\r\nstillsamt\r\nstilren\r\nstiltje\r\nstim\r\nstimma\r\nstimmar\r\nstimulans\r\nstimulera\r\nstimulerar\r\nsting\r\nstingande\r\nstinger\r\nstingslig\r\nstinka\r\nstinkande\r\nstinker\r\nstinn\r\nstins\r\nstint\r\nstipendium\r\nstipulerar\r\nstirra\r\nstirrande\r\nstirrar\r\nstirrig\r\nstjäl\r\nstjäla\r\nstjälk\r\nstjälpa\r\nstjälper\r\nstjärna\r\nstjärnan\r\nstjärnans\r\nstjärnas\r\nstjärnbild\r\nstjärnehimlen\r\nstjärnehimlens\r\nstjärnehopar\r\nstjärnenatt\r\nstjärneskrud\r\nstjärnesol\r\nstjärnevärld\r\nstjärnevärldar\r\nstjärnfall\r\nstjärngosse\r\nstjärnkikare\r\nstjärnlös\r\nstjärnor\r\nstjärnorna\r\nstjärnornas\r\nstjärnors\r\nstjärnskott\r\nstjärnsmäll\r\nstjärt\r\nsto\r\nstock\r\nstockar\r\nstockholmare\r\nstockning\r\nstod\r\nstoff\r\nstofil\r\nstoft\r\nstoftet\r\nstoftets\r\nstoisk\r\nstoj\r\nstoja\r\nstojar\r\nstol\r\nstolarna\r\nstolen\r\nstolle\r\nstollig\r\nstolpe\r\nstolpiller\r\nstolpskott\r\nstolt\r\nstolta\r\nstolte\r\nstolthet\r\nstolthets\r\nstoltsera\r\nstoltserar\r\nstomme\r\nstop\r\nstopp\r\nstoppa\r\nstoppad\r\nstoppar\r\nstoppning\r\nstoppur\r\nstor\r\nstora\r\nstorartad\r\nstorasyster\r\nstordrift\r\nstordåd\r\nstore\r\nstorebror\r\nstorfamilj\r\nstorhet\r\nstorheten\r\nstorhetsvansinne\r\nstork\r\nstorknar\r\nstorlek\r\nstorleksförhållande\r\nstorm\r\nstorma\r\nstormade\r\nstormakt\r\nstormande\r\nstormar\r\nstormarknad\r\nstormarna\r\nstormarnas\r\nstormats\r\nstormen\r\nstormens\r\nstormgevär\r\nstormig\r\nstormiga\r\nstormigt\r\nstormsteg\r\nstormvind\r\nstormöte\r\nstorsint\r\nstorskalig\r\nstorskryta\r\nstorslagen\r\nstorslagenhet\r\nstorspelar\r\nstorspovens\r\nstorstad\r\nstorstilad\r\nstorsäljare\r\nstort\r\nstortå\r\nstorverk\r\nstorvulen\r\nstorvuxen\r\nstorväxt\r\nstorätare\r\nstraff\r\nstraffa\r\nstraffad\r\nstraffade\r\nstraffar\r\nstraffas\r\nstraffat\r\nstraffbar\r\nstraffbelagd\r\nstraffet\r\nstraffränta\r\nstram\r\nstrama\r\nstramar\r\nstrand\r\nstrandar\r\nstranden\r\nstrandhugg\r\nstrandlinje\r\nstrandsatt\r\nstrandskyddsområde\r\nstrapats\r\nstrapatser\r\nstrategi\r\nstrategisk\r\nstrax\r\nstraxt\r\nstreber\r\nstreck\r\nstreckar\r\nstred\r\nstrejk\r\nstrejkar\r\nstress\r\nstressa\r\nstressad\r\nstressade\r\nstressar\r\nstressen\r\nstressig\r\nstreta\r\nstretar\r\nstretchbar\r\nstrid\r\nstrida\r\nstridande\r\nstridbar\r\nstriden\r\nstridens\r\nstrider\r\nstriderna\r\nstridernas\r\nstridig\r\nstridiga\r\nstridighet\r\nstridis\r\nstridit\r\nstrids\r\nstridsbaner\r\nstridsdugliga\r\nstridsflygplan\r\nstridsfältets\r\nstridskrafter\r\nstridskrafterna\r\nstridslarmet\r\nstridslysten\r\nstridsman\r\nstridsmän\r\nstridsrop\r\nstridsspets\r\nstridsvagn\r\nstrikt\r\nstrila\r\nstrilar\r\nstrimla\r\nstrimlar\r\nstrimma\r\nstrimmor\r\nstringent\r\nstripig\r\nstrippar\r\nstritt\r\nstrof\r\nstroke\r\nstrong\r\nstrongt\r\nstropp\r\nstroppig\r\nstrosa\r\nstrosar\r\nstrukit\r\nstruktur\r\nstrukturera\r\nstrul\r\nstrula\r\nstrulig\r\nstruma\r\nstrumpa\r\nstrumpbyxa\r\nstrumplästen\r\nstrumpor\r\nstrunt\r\nstrunta\r\nstruntar\r\nstruntförnäm\r\nstruntprat\r\nstruntsak\r\nstruntsumma\r\nstrupar\r\nstrupe\r\nstrupen\r\nstrut\r\nstruts\r\nstrutta\r\nstruttar\r\nstryk\r\nstryka\r\nstrykande\r\nstrykare\r\nstrykbräda\r\nstryker\r\nstrykjärn\r\nstryktålig\r\nstrypa\r\nstryper\r\nstrå\r\nstrået\r\nstråk\r\nstråke\r\nstråla\r\nstrålande\r\nstrålar\r\nstrålbehandling\r\nstråle\r\nstrålen\r\nstrålglans\r\nstrålkastare\r\nstrålning\r\nstrålskydd\r\nstråt\r\nsträck\r\nsträcka\r\nsträckas\r\nsträckbänk\r\nsträcker\r\nsträckes\r\nsträckläser\r\nsträckning\r\nsträckt\r\nstränder\r\nstränderna\r\nsträng\r\nstränga\r\nsträngar\r\nstränghets\r\nsträngt\r\nsträv\r\nsträva\r\nsträvade\r\nsträvan\r\nsträvar\r\nsträvsam\r\nströ\r\nströbröd\r\nströdd\r\nströdda\r\nströdde\r\nströg\r\nströk\r\nström\r\nströmbrytare\r\nströmlinjeformad\r\nströmma\r\nströmmade\r\nströmmande\r\nströmmar\r\nströmmarna\r\nströmmen\r\nströmming\r\nströmning\r\nströp\r\nströr\r\nströsocker\r\nströssel\r\nstrött\r\nströva\r\nströvar\r\nströvtåg\r\nstubb\r\nstubbe\r\nstubben\r\nstubin\r\nstuckatur\r\nstuckit\r\nstudent\r\nstudentbetyg\r\nstudentbostad\r\nstudentexamen\r\nstudentikos\r\nstudentkår\r\nstudera\r\nstuderade\r\nstuderande\r\nstuderar\r\nstudie\r\nstudiebidrag\r\nstudiecirkel\r\nstudieförbund\r\nstudiehjälp\r\nstudielån\r\nstudiemedel\r\nstudieplan\r\nstudier\r\nstudierektor\r\nstudiestöd\r\nstudio\r\nstudium\r\nstuds\r\nstudsa\r\nstudsar\r\nstudsare\r\nstuga\r\nstugby\r\nstuka\r\nstukar\r\nstukning\r\nstulen\r\nstulit\r\nstulits\r\nstultar\r\nstum\r\nstumma\r\nstummas\r\nstump\r\nstumpa\r\nstumt\r\nstund\r\nstunda\r\nstundande\r\nstundar\r\nstundat\r\nstunden\r\nstundens\r\nstunder\r\nstunderna\r\nstundom\r\nstundtals\r\nstundvis\r\nstungna\r\nstuntman\r\nstup\r\nstupa\r\nstupande\r\nstupar\r\nstupfull\r\nstupid\r\nstupränna\r\nstuprör\r\nstursk\r\nstuss\r\nstuteri\r\nstuv\r\nstuva\r\nstuvar\r\nstuveriarbetare\r\nstuvning\r\nstyck\r\nstycka\r\nstyckar\r\nstyckas\r\nstyckat\r\nstycke\r\nstyckegods\r\nstycken\r\nstyckena\r\nstycket\r\nstyckning\r\nstygg\r\nstygga\r\nstygn\r\nstylta\r\nstympa\r\nstympade\r\nstympar\r\nstyng\r\nstynget\r\nstyr\r\nstyra\r\nstyrande\r\nstyrbord\r\nstyrd\r\nstyrdes\r\nstyrdon\r\nstyre\r\nstyrelse\r\nstyrelseledamot\r\nstyrelsemedlem\r\nstyrelseskick\r\nstyresman\r\nstyrhjul\r\nstyrk\r\nstyrka\r\nstyrkan\r\nstyrkans\r\nstyrke\r\nstyrker\r\nstyrketår\r\nstyrkor\r\nstyrkorna\r\nstyrkt\r\nstyrman\r\nstyrning\r\nstyrt\r\nstyv\r\nstyvbarn\r\nstyvfar\r\nstyvhet\r\nstyvmoderlig\r\nstyvmor\r\nstyvna\r\nstyvnackad\r\nstyvnackat\r\nstyvnar\r\nstyvt\r\nstå\r\nstående\r\nståhej\r\nstål\r\nstålar\r\nstålkula\r\nstålman\r\nstålmannen\r\nstålsätter\r\nstålverk\r\nstånd\r\nståndaktig\r\nståndpunkt\r\nståndsmässig\r\nstång\r\nstångas\r\nstången\r\nstånka\r\nstånkar\r\nstår\r\nståt\r\nståtar\r\nståtlig\r\nstått\r\nstäd\r\nstäda\r\nstädad\r\nstädar\r\nstädare\r\nstäder\r\nstäderna\r\nstäderska\r\nstädning\r\nstäds\r\nstädse\r\nstädskåp\r\nställ\r\nställa\r\nställbar\r\nställd\r\nställde\r\nställe\r\nställen\r\nställer\r\nställföreträdande\r\nställföreträdare\r\nställning\r\nställningskrig\r\nställningstagande\r\nställt\r\nställts\r\nstäm\r\nstämband\r\nstämd\r\nstämgaffel\r\nstämjärn\r\nstämma\r\nstämman\r\nstämmer\r\nstämmor\r\nstämmors\r\nstämning\r\nstämningen\r\nstämpel\r\nstämpelskatt\r\nstämpelur\r\nstämpla\r\nstämplar\r\nstämplat\r\nstämt\r\nständig\r\nständigt\r\nstäng\r\nstänga\r\nstängas\r\nstängd\r\nstängda\r\nstängde\r\nstänger\r\nstänges\r\nstängsel\r\nstängslet\r\nstängt\r\nstänk\r\nstänka\r\nstänker\r\nstänkskärm\r\nstärk\r\nstärka\r\nstärkelse\r\nstärker\r\nstärkes\r\nstärkta\r\nstärkte\r\nstärkts\r\nstäv\r\nstävar\r\nstävja\r\nstävjar\r\nstävs\r\nstöd\r\nstödd\r\nstödda\r\nstödde\r\nstöddig\r\nstöder\r\nstödja\r\nstödområde\r\nstödundervisning\r\nstök\r\nstökar\r\nstökig\r\nstökighet\r\nstökigt\r\nstöld\r\nstölder\r\nstön\r\nstöna\r\nstönande\r\nstönar\r\nstöp\r\nstöpa\r\nstöper\r\nstöpsleven\r\nstör\r\nstöra\r\nstörande\r\nstöras\r\nstörd\r\nstörig\r\nstörigt\r\nstörning\r\nstörningar\r\nstörre\r\nstörst\r\nstörsta\r\nstörste\r\nstört\r\nstörta\r\nstörtar\r\nstörthjälm\r\nstörtlopp\r\nstörtregna\r\nstörtskön\r\nstöt\r\nstöta\r\nstötande\r\nstöter\r\nstötesten\r\nstötfångare\r\nstötig\r\nstött\r\nstötta\r\nstöttar\r\nstöttepelare\r\nstötvis\r\nstövel\r\nstövlar\r\nsubjekt\r\nsubjektiv\r\nsubkultur\r\nsublim\r\nsublimerar\r\nsubordination\r\nsubsidier\r\nsubskribera\r\nsubstans\r\nsubstantiell\r\nsubstantiv\r\nsubstituera\r\nsubstitut\r\nsubstitution\r\nsubtil\r\nsubtrahera\r\nsubtraherar\r\nsubvention\r\nsubventionera\r\nsubventionerar\r\nsubversiv\r\nsuccé\r\nsuccéartad\r\nsuccession\r\nsuccessiv\r\nsuccessivt\r\nsuck\r\nsucka\r\nsuckan\r\nsuckar\r\nsudd\r\nsudda\r\nsuddar\r\nsuddgummi\r\nsuddig\r\nsuffix\r\nsufflé\r\nsufflör\r\nsug\r\nsuga\r\nsugen\r\nsuger\r\nsugga\r\nsuggererar\r\nsuggestion\r\nsuggestiv\r\nsugit\r\nsugrör\r\nsuicidal\r\nsukta\r\nsuktar\r\nsula\r\nsulfa\r\nsulky\r\nsumma\r\nsumman\r\nsummarisk\r\nsummer\r\nsummera\r\nsummerar\r\nsummering\r\nsummit\r\nsump\r\nsumpa\r\nsumpar\r\nsumpmark\r\nsund\r\nsunt\r\nsup\r\nsupa\r\nsupé\r\nsuper\r\nsupera\r\nsuperar\r\nsuperb\r\nsuperbra\r\nsuperhjälte\r\nsuperlativ\r\nsuperläcker\r\nsuperman\r\nsupinum\r\nsuppleant\r\nsupplement\r\nsupponera\r\nsupport\r\nsupporta\r\nsupporter\r\nsuput\r\nsur\r\nsura\r\nsurar\r\nsurdeg\r\nsurdegen\r\nsurfa\r\nsurfar\r\nsurfingbräda\r\nsurmulen\r\nsurna\r\nsurnar\r\nsurpuppa\r\nsurr\r\nsurra\r\nsurrar\r\nsurrealistisk\r\nsurrogat\r\nsurströmming\r\nsurt\r\nsus\r\nsusa\r\nsusar\r\nsusen\r\nsusning\r\nsuspekt\r\nsuspenderar\r\nsussa\r\nsussar\r\nsutenör\r\nsuttit\r\nsuverän\r\nsuveränt\r\nsvacka\r\nsvada\r\nsvag\r\nsvaga\r\nsvagare\r\nsvagas\r\nsvagaste\r\nsvage\r\nsvages\r\nsvaghet\r\nsvagheten\r\nsvagheter\r\nsvagsint\r\nsvagt\r\nsvaja\r\nsvajar\r\nsvajig\r\nsval\r\nsvala\r\nsvalan\r\nsvalde\r\nsvale\r\nsvalg\r\nsvalgång\r\nsvalka\r\nsvalkande\r\nsvalkar\r\nsvalkas\r\nsvall\r\nsvalla\r\nsvallande\r\nsvallar\r\nsvalna\r\nsvalnar\r\nsvalt\r\nsvamla\r\nsvamlar\r\nsvammel\r\nsvamp\r\nsvan\r\nsvanesång\r\nsvank\r\nsvans\r\nsvansarna\r\nsvansföring\r\nsvar\r\nsvara\r\nsvarade\r\nsvarande\r\nsvarar\r\nsvarat\r\nsvaren\r\nsvaret\r\nsvaromål\r\nsvars\r\nsvarslös\r\nsvart\r\nsvarta\r\nsvartare\r\nsvarthet\r\nsvartlistad\r\nsvartlistning\r\nsvartmuskig\r\nsvartmålar\r\nsvartna\r\nsvartnar\r\nsvartpeppar\r\nsvartsjuk\r\nsvartsjuka\r\nsvartsyn\r\nsvartvit\r\nsvarv\r\nsvarvar\r\nsvastika\r\nsvavel\r\nSvealand\r\nsved\r\nsveda\r\nsvedda\r\nsvek\r\nsvekfull\r\nsvekfullas\r\nsvekfulles\r\nsvendom\r\nsvensexa\r\nsvensk\r\nsvenska\r\nsvep\r\nsvepa\r\nsvepande\r\nsveper\r\nsvepning\r\nsvepskäl\r\nsverige\r\nsveriges\r\nsvetsar\r\nsvett\r\nsvettas\r\nsvettig\r\nsvid\r\nsvida\r\nsvidande\r\nsvider\r\nsvik\r\nsvika\r\nsvikas\r\nsviken\r\nsviker\r\nsviket\r\nsvikit\r\nsvikna\r\nsvikt\r\nsvikta\r\nsviktade\r\nsviktande\r\nsviktar\r\nsvimmar\r\nsvin\r\nsvina\r\nsvinaktig\r\nsvindel\r\nsvindla\r\nsvindlande\r\nsvindlar\r\nsvindlare\r\nsvindleri\r\nsvineri\r\nsving\r\nsvinga\r\nsvingar\r\nsvinkött\r\nsvinn\r\nsvinner\r\nsvinpäls\r\nsvira\r\nsvischa\r\nsviskon\r\nsvit\r\nsvor\r\nsvordom\r\nsvullen\r\nsvullnad\r\nsvullnar\r\nsvulst\r\nsvulstig\r\nsvulten\r\nsvultit\r\nsvunna\r\nsvunnen\r\nsvunnet\r\nsvunnit\r\nsvuren\r\nsvurit\r\nsvåger\r\nsvågerpolitik\r\nsvål\r\nsvångrem\r\nsvår\r\nsvåra\r\nsvårare\r\nsvårartad\r\nsvåraste\r\nsvårbedd\r\nsvårbemästrad\r\nsvårdefinierbar\r\nsvårfarbar\r\nsvårframkomlig\r\nsvårförstådd\r\nsvårgenomförd\r\nsvårhanterlig\r\nsvårighet\r\nsvårigheter\r\nsvårligen\r\nsvårlöst\r\nsvårmod\r\nsvårmodig\r\nsvårsmält\r\nsvårt\r\nsvårövertalad\r\nsvägerska\r\nsvägerskan\r\nsvälja\r\nsväljer\r\nsvälla\r\nsväller\r\nsvält\r\nsvälta\r\nsvältande\r\nsvälter\r\nsvämmar\r\nsväng\r\nsvänga\r\nsvänger\r\nsvängig\r\nsvängning\r\nsvängom\r\nsvängrum\r\nsvär\r\nsvära\r\nsvärd\r\nsvärden\r\nsvärdet\r\nsvärdets\r\nsvärdotter\r\nsvärdskamp\r\nsvärfar\r\nsvärfars\r\nsvärföräldrar\r\nsvärjer\r\nsvärm\r\nsvärmar\r\nsvärmor\r\nsvärord\r\nsvärson\r\nsvärta\r\nsvärtar\r\nsväva\r\nsvävande\r\nsvävar\r\nsvävare\r\nsy\r\nsybehör\r\nsyd\r\nsydlig\r\nsydländsk\r\nsydlänning\r\nsydost\r\nsydväst\r\nsydöst\r\nsyfilis\r\nsyfta\r\nsyftar\r\nsyfte\r\nsyftning\r\nsyl\r\nsylt\r\nsylta\r\nsyltar\r\nsymaskin\r\nsymbios\r\nsymbol\r\nsymbolen\r\nsymbolisera\r\nsymboliserar\r\nsymbolisk\r\nsymfoni\r\nsymfoniorkester\r\nsymmetrisk\r\nsympati\r\nsympatisera\r\nsympatiserar\r\nsympatisk\r\nsympatistrejk\r\nsympatisör\r\nsymposium\r\nsymptom\r\nsymptomen\r\nsymtomatiskt\r\nsyn\r\nsyna\r\nsynagoga\r\nsynagogorna\r\nsynar\r\nsynas\r\nsynbar\r\nsynbarligen\r\nsyncentral\r\nsynd\r\nsynda\r\nsyndabandet\r\nsyndabock\r\nsyndabördan\r\nsyndabördor\r\nsyndade\r\nsyndafallet\r\nsyndagiftet\r\nsyndanöd\r\nsyndanöden\r\nsyndar\r\nsyndare\r\nsyndaren\r\nsyndarens\r\nsyndares\r\nsyndarna\r\nsyndaskuld\r\nsyndasår\r\nsyndat\r\nsynden\r\nsyndens\r\nsynder\r\nsynderna\r\nsyndernas\r\nsynders\r\nsynderska\r\nsynderskan\r\nsyndfri\r\nsyndfull\r\nsyndig\r\nsyndiga\r\nsyndigt\r\nsyndikalist\r\nsyndikat\r\nsyndrom\r\nsynds\r\nsyne\r\nsynen\r\nsyner\r\nsynes\r\nsynfält\r\nsynhåll\r\nsyning\r\nsynkroniserar\r\nsynlig\r\nsynliga\r\nsynliggöra\r\nsynligt\r\nsynnerhet\r\nsynnerligen\r\nsynod\r\nsynonym\r\nsynonymer\r\nsynpunkt\r\nsynpunkter\r\nsynrand\r\nsyns\r\nsynsk\r\nsynskadad\r\nsynskärpa\r\nsynsätt\r\nsynt\r\nsyntax\r\nsyntes\r\nsyntetisk\r\nsynts\r\nsynvilla\r\nsynvinkel\r\nsynål\r\nsyr\r\nsyra\r\nsyrat\r\nsyre\r\nsyren\r\nsyrgas\r\nsyrier\r\nsyrisk\r\nsyrlig\r\nsyrra\r\nsyrsa\r\nsyskon\r\nsyskonband\r\nsyskonbarn\r\nsyskongrupp\r\nsyskonskap\r\nsyskonskara\r\nsyslöjd\r\nsysselsatt\r\nsysselsätter\r\nsysselsättning\r\nsyssla\r\nsysslar\r\nsyssling\r\nsysslolös\r\nsysslor\r\nsystem\r\nsystematisera\r\nsystematisk\r\nsystembutik\r\nsystemerare\r\nsystemet\r\nsystemman\r\nsyster\r\nsysterfartyg\r\nsysterson\r\nsystrar\r\nsystuga\r\nsytt\r\nsyvende\r\nså\r\nsådan\r\nsådana\r\nsådant\r\nsådd\r\nsådde\r\nsådden\r\nsåddes\r\nsådär\r\nsåframt\r\nsåg\r\nsåga\r\nsågar\r\nsågspån\r\nsågverk\r\nsåklart\r\nsåld\r\nsålde\r\nsåledes\r\nsåll\r\nsålla\r\nsållar\r\nsållning\r\nsålt\r\nsålunda\r\nsån\r\nsång\r\nsångare\r\nsångarna\r\nsången\r\nsångens\r\nsånger\r\nsångerna\r\nsångernas\r\nsångers\r\nsångerska\r\nsångerskor\r\nsångkör\r\nsångnamn\r\nsåningsman\r\nsåningstiden\r\nsånt\r\nsåpa\r\nsåpass\r\nsåpbubbla\r\nsåpopera\r\nsår\r\nsåra\r\nsårad\r\nsårade\r\nsårades\r\nsårar\r\nsårat\r\nsårbar\r\nsåren\r\nsåret\r\nsårig\r\nsårmärkt\r\nsårskorpa\r\nsås\r\nsåsa\r\nsåsig\r\nsåskopp\r\nsåsom\r\nsåtillvida\r\nsått\r\nsåvida\r\nsåvitt\r\nsåväl\r\nsäck\r\nsäcka\r\nsäckar\r\nsäckig\r\nsäd\r\nsäde\r\nsäden\r\nsädesavgång\r\nsädescell\r\nsädeskornen\r\nsädesslag\r\nsädesvätska\r\nsäg\r\nsäga\r\nsägas\r\nsägen\r\nsägenomspunnen\r\nsäger\r\nsägs\r\nsäjer\r\nsäker\r\nsäkerhet\r\nsäkerhets\r\nsäkerhetsbälte\r\nsäkerhetsnål\r\nsäkerhetspolis\r\nsäkerhetsrisk\r\nsäkerligen\r\nsäkerställa\r\nsäkerställer\r\nsäkert\r\nsäkra\r\nsäkrar\r\nsäkring\r\nsäl\r\nsälg\r\nsälja\r\nsäljare\r\nsäljas\r\nsäljer\r\nsäll\r\nsälla\r\nsällan\r\nsällar\r\nsällas\r\nsällhet\r\nsällheten\r\nsällhetens\r\nsällhets\r\nsällhetsdag\r\nsällsam\r\nsällsamma\r\nsällsamt\r\nsällskap\r\nsällskapar\r\nsällskaplig\r\nsällskapsdjur\r\nsällskapsresa\r\nsällskapssjuk\r\nsällskapsspel\r\nsällsynt\r\nsällsynta\r\nsällsynthet\r\nsällt\r\nsälta\r\nsämja\r\nsämre\r\nsämst\r\nsämsta\r\nsämste\r\nsänd\r\nsända\r\nsände\r\nsändebud\r\nsändebuds\r\nsänder\r\nsändes\r\nsändning\r\nsänds\r\nsäng\r\nsängbord\r\nsängdags\r\nsängen\r\nsängens\r\nsängfösare\r\nsängkammare\r\nsängkläder\r\nsängplats\r\nsängs\r\nsängvätare\r\nsängöverkast\r\nsänk\r\nsänka\r\nsänkas\r\nsänke\r\nsänker\r\nsänkes\r\nsänkning\r\nsänks\r\nsänkt\r\nsänkte\r\nsänt\r\nsänts\r\nsär\r\nsära\r\nsärad\r\nsärar\r\nsärart\r\nsärbehandlar\r\nsärbeskattning\r\nsärdeles\r\nsärdrag\r\nsäregen\r\nsäreget\r\nsärfall\r\nsärklass\r\nsärling\r\nsärprägel\r\nsärpräglad\r\nsärskild\r\nsärskilja\r\nsärskiljer\r\nsärskilt\r\nsärskola\r\nsärställning\r\nsäsong\r\nsäte\r\nsäter\r\nsäteri\r\nsätt\r\nsätta\r\nsätter\r\nsätteri\r\nsättes\r\nsättet\r\nsättning\r\nsäv\r\nsävhavet\r\nsävlig\r\nsöder\r\nSödermanland\r\nsödern\r\nsöderut\r\nsödra\r\nsög\r\nsök\r\nsöka\r\nsökande\r\nsökare\r\nsökarens\r\nsökarljus\r\nsökas\r\nsöken\r\nsöker\r\nsökningstid\r\nsökt\r\nsökte\r\nsöla\r\nsölar\r\nsölig\r\nsöm\r\nsömma\r\nsömmar\r\nsömmen\r\nsömmerska\r\nsömn\r\nsömnad\r\nsömnen\r\nsömngångare\r\nsömnig\r\nsömnighet\r\nsömnlös\r\nsömns\r\nsömntablett\r\nsömntuta\r\nsöndag\r\nsöndagen\r\nsöndagens\r\nsöndagsskola\r\nsönder\r\nsönderbruten\r\nsönderdela\r\nsönderdelning\r\nsönderfall\r\nsönderfalla\r\nsönderrev\r\nsönderriva\r\nsönderrivna\r\nsönderslagen\r\nsönderslog\r\nsönderslå\r\nsöndersmula\r\nsöndra\r\nsöndrad\r\nsöndrar\r\nsöndras\r\nsöndrat\r\nsöndrig\r\nsöndring\r\nsöndrings\r\nsöner\r\nsöp\r\nsörj\r\nsörja\r\nsörjande\r\nsörjandes\r\nsörjer\r\nsörplar\r\nsöt\r\nsöta\r\nsötar\r\nsötebrödsdagar\r\nsötma\r\nsötman\r\nsötnos\r\nsötsak\r\nsötsaker\r\nsött\r\nsötvatten\r\nsöver\r\nta\r\ntabbe\r\ntabell\r\ntabernakel\r\ntablett\r\ntabloid\r\ntablå\r\ntabu\r\ntaburett\r\ntack\r\ntacka\r\ntackar\r\ntackat\r\ntacklar\r\ntacknämlig\r\ntackoffer\r\ntackpsalmen\r\ntacksam\r\ntacksamhet\r\ntacksamt\r\ntacksägelse\r\ntadla\r\ntafatt\r\ntafflig\r\ntafsa\r\ntafsar\r\ntag\r\ntaga\r\ntagel\r\ntagen\r\ntager\r\ntaget\r\ntagg\r\ntagga\r\ntaggad\r\ntaggar\r\ntaggig\r\ntaggtråd\r\ntagit\r\ntagits\r\ntagna\r\ntagning\r\ntajma\r\ntajming\r\ntajmning\r\ntajt\r\ntak\r\ntakarmatur\r\ntaken\r\ntaket\r\ntakräcke\r\ntakt\r\ntaktfast\r\ntaktfull\r\ntaktfullhet\r\ntaktik\r\ntaktiskt\r\ntaktlös\r\ntal\r\ntala\r\ntalade\r\ntalan\r\ntalande\r\ntalang\r\ntalangfull\r\ntalar\r\ntalare\r\ntalarlista\r\ntalarstol\r\ntalas\r\ntalat\r\ntalbok\r\ntalent\r\ntalesman\r\ntalesätt\r\ntalets\r\ntalför\r\ntalg\r\ntalgoxe\r\ntalja\r\ntalk\r\ntalkör\r\ntall\r\ntallrik\r\ntallös\r\ntallösa\r\ntalman\r\ntalong\r\ntalpedagog\r\ntalrik\r\ntalspråk\r\ntaltidning\r\ntalträngd\r\ntam\r\ntambur\r\ntamburin\r\ntamp\r\ntampas\r\ntampong\r\ntand\r\ntandad\r\ntandborste\r\ntandborstning\r\ntandem\r\ntandemcykel\r\ntandhygienist\r\ntandkräm\r\ntandkött\r\ntandlossning\r\ntandläkare\r\ntandlös\r\ntandpasta\r\ntandpetare\r\ntandprotes\r\ntandsköterska\r\ntandsten\r\ntandställning\r\ntandtroll\r\ntandtråd\r\ntandvård\r\ntandvårdsförsäkring\r\ntandvårdstaxa\r\ntandvärk\r\ntangent\r\ntangera\r\ntangerar\r\ntango\r\ntanig\r\ntank\r\ntankad\r\ntankar\r\ntankarna\r\ntankbåt\r\ntanke\r\ntankebana\r\ntankeexperiment\r\ntankegång\r\ntankemöda\r\ntanken\r\ntankens\r\ntanker\r\ntankes\r\ntankeställare\r\ntankesystem\r\ntankeväckande\r\ntankeöverföring\r\ntankfartyg\r\ntankfull\r\ntanklös\r\ntanklöshet\r\ntankspridd\r\ntankstreck\r\ntant\r\ntantig\r\ntape\r\ntapet\r\ntapetserar\r\ntapetserare\r\ntapp\r\ntappa\r\ntappar\r\ntappat\r\ntapper\r\ntapperhet\r\ntappert\r\ntappning\r\ntappt\r\ntar\r\ntariff\r\ntarm\r\ntarmvred\r\ntarva\r\ntarvar\r\ntarvlig\r\ntas\r\ntask\r\ntaskig\r\ntaskigt\r\ntass\r\ntassa\r\ntassar\r\ntassemark\r\ntasslar\r\ntattare\r\ntatuerar\r\ntavelduk\r\ntavla\r\ntax\r\ntaxa\r\ntaxera\r\ntaxerar\r\ntaxeringsnämnd\r\ntaxeringsvärde\r\ntaxi\r\nte\r\nteak\r\nteam\r\nteamwork\r\nteater\r\nteatern\r\nteaterpjäs\r\nteaterstycke\r\nteatralisk\r\ntecken\r\nteckentydning\r\nteckna\r\ntecknad\r\ntecknade\r\ntecknar\r\ntecknat\r\ntecknen\r\ntecknet\r\nteckning\r\nteddy\r\nteddybjörn\r\ntefat\r\nteflon\r\nteg\r\ntegel\r\ntegelpanna\r\ntejp\r\ntejpar\r\nteknik\r\ntekniker\r\ntekning\r\nteknisk\r\nteknokrat\r\nteknologi\r\ntekoindustri\r\ntelefax\r\ntelefon\r\ntelefonautomat\r\ntelefonera\r\ntelefonerar\r\ntelefonhytt\r\ntelefonist\r\ntelefonkatalog\r\ntelefonkiosk\r\ntelefonkö\r\ntelefonlur\r\ntelefonnummer\r\ntelefonsvarare\r\ntelefontid\r\ntelefonväckning\r\ntelefonväktare\r\ntelefonväxel\r\ntelegraf\r\ntelegraferar\r\ntelegram\r\nteleobjektiv\r\ntelepati\r\nteleportera\r\nteleprinter\r\nteleskop\r\ntelevision\r\ntelevisionsapparat\r\ntelevisionsapparatur\r\ntelex\r\ntelning\r\ntema\r\nteman\r\ntemat\r\ntemp\r\ntempel\r\ntempelförlåten\r\ntempelgård\r\ntempelhus\r\ntempelmuren\r\ntempels\r\ntempelstad\r\ntempelsången\r\ntempeltjänarna\r\ntemperament\r\ntemperamentsfull\r\ntemperatur\r\ntempererad\r\ntemplen\r\ntemplet\r\ntemplets\r\ntempo\r\ntemporär\r\ntemporärt\r\ntempus\r\ntendens\r\ntendentiös\r\ntendera\r\ntenderar\r\ntenn\r\ntennis\r\ntenor\r\ntenta\r\ntentamen\r\ntentar\r\ntentativ\r\ntenterar\r\nteolog\r\nteologi\r\nteoretiker\r\nteoretisk\r\nteori\r\nteorin\r\ntepåse\r\nter\r\nterapeut\r\nterapeutisk\r\nterapi\r\nterm\r\ntermer\r\ntermin\r\nterminal\r\nterminen\r\nterminologi\r\ntermometer\r\ntermos\r\ntermostat\r\nterpentin\r\nterrakotta\r\nterrass\r\nterrier\r\nterritoriell\r\nterritorium\r\nterror\r\nterrordåd\r\nterrorisera\r\nterrorism\r\nterrorist\r\nterräng\r\nterrängcykel\r\ntertial\r\ntes\r\ntesaur\r\ntesked\r\ntest\r\ntesta\r\ntestamente\r\ntestamentet\r\ntestande\r\ntestar\r\ntestas\r\ntestikel\r\ntestiklar\r\ntestiklarna\r\ntestköra\r\ntestperiod\r\ntetanus\r\ntetas\r\ntetraeder\r\nteve\r\ntext\r\ntextar\r\ntexten\r\ntextil\r\ntextilier\r\ntextilslöjd\r\ntextur\r\nthailändsk\r\nthesis\r\nthessalonikerbrevet\r\nthinner\r\nthorax\r\nthriller\r\ntia\r\ntiara\r\ntickar\r\nticktack\r\ntid\r\ntidelag\r\ntiden\r\ntidens\r\ntider\r\ntiderna\r\ntidernas\r\ntidevarv\r\ntidevarven\r\ntidig\r\ntidigare\r\ntidigt\r\ntidlön\r\ntidlös\r\ntidlöshet\r\ntidning\r\ntidningsanka\r\ntidningsman\r\ntidpunkt\r\ntidrymd\r\ntidsanda\r\ntidsbeställning\r\ntidsenlig\r\ntidsfråga\r\ntidsfördriv\r\ntidskrift\r\ntidskrävande\r\ntidsmässig\r\ntidsnöd\r\ntidsperiod\r\ntidsplan\r\ntidsreservation\r\ntidsschema\r\ntidssignal\r\ntidsskrift\r\ntidsstudie\r\ntidstecknen\r\ntidsålder\r\ntidsödande\r\ntidtabell\r\ntidtagare\r\ntidvatten\r\ntidvis\r\ntig\r\ntiga\r\ntigande\r\ntiger\r\ntigga\r\ntiggare\r\ntiggaren\r\ntiggarna\r\ntigger\r\ntight\r\ntigit\r\ntigna\r\ntigrerad\r\ntik\r\ntilja\r\ntill\r\ntillade\r\ntillaga\r\ntillagd\r\ntillagning\r\ntillagt\r\ntillbad\r\ntillbaka\r\ntillbakabildas\r\ntillbakablick\r\ntillbakadragen\r\ntillbakagång\r\ntillbakalutad\r\ntillbakavisa\r\ntillbakavisar\r\ntillbaks\r\ntillbe\r\ntillbed\r\ntillbedd\r\ntillbeder\r\ntillbedja\r\ntillbedjan\r\ntillbehör\r\ntillber\r\ntillblivelse\r\ntillbomma\r\ntillbringa\r\ntillbringade\r\ntillbringar\r\ntillbringare\r\ntillbud\r\ntillbyggnad\r\ntillbörlig\r\ntilldela\r\ntilldelar\r\ntilldelning\r\ntilldragande\r\ntilldragelse\r\ntilldragning\r\ntilldrar\r\ntilldömer\r\ntillerkänner\r\ntillfalla\r\ntillfaller\r\ntillfart\r\ntillflykt\r\ntillflyktsort\r\ntillflyktsplats\r\ntillflöde\r\ntillfoga\r\ntillfogar\r\ntillfreds\r\ntillfredsställa\r\ntillfredsställande\r\ntillfredsställd\r\ntillfredsställelse\r\ntillfredsställer\r\ntillfriskna\r\ntillfrisknande\r\ntillfrisknar\r\ntillfråga\r\ntillfrågad\r\ntillfullo\r\ntillfyllest\r\ntillfånga\r\ntillfångatagen\r\ntillfångatagna\r\ntillfångatar\r\ntillfälle\r\ntillfällen\r\ntillfällig\r\ntillfällighet\r\ntillfälligt\r\ntillför\r\ntillföra\r\ntillförlitlig\r\ntillförlitlighet\r\ntillförordnad\r\ntillförsel\r\ntillförsikt\r\ntillförsäkra\r\ntillförsäkrar\r\ntillgiven\r\ntillgivenhet\r\ntillgjord\r\ntillgjort\r\ntillgodo\r\ntillgodogör\r\ntillgodoräkna\r\ntillgodose\r\ntillgodoser\r\ntillgrepp\r\ntillgripa\r\ntillgriper\r\ntillgå\r\ntillgång\r\ntillgångar\r\ntillgänglig\r\ntillgänglighet\r\ntillhandahålla\r\ntillhandahåller\r\ntillhygge\r\ntillhåll\r\ntillhör\r\ntillhöra\r\ntillhörde\r\ntillhörighet\r\ntillhörigheter\r\ntillika\r\ntillintetgjord\r\ntillintetgjort\r\ntillintetgör\r\ntillintetgöra\r\ntillintetgöras\r\ntillintetgörelse\r\ntillit\r\ntilliten\r\ntillitens\r\ntillitsfull\r\ntillkalla\r\ntillkallade\r\ntillkallar\r\ntillknäppt\r\ntillkommande\r\ntillkomme\r\ntillkommer\r\ntillkomst\r\ntillkrånglad\r\ntillkänna\r\ntillkännage\r\ntillkännager\r\ntillkännagivande\r\ntillmäle\r\ntillmäter\r\ntillmötesgående\r\ntillnamn\r\ntillnärmelsevis\r\ntillreda\r\ntillreder\r\ntillredning\r\ntillridare\r\ntillryggalagt\r\ntillryggalägga\r\ntillryggalägger\r\ntillråda\r\ntillrådlig\r\ntillräcklig\r\ntillräckligt\r\ntillräknelig\r\ntillrätta\r\ntillrättalägger\r\ntillrättavisa\r\ntillrättavisar\r\ntillrättavisning\r\ntills\r\ntillsamman\r\ntillsammans\r\ntillsats\r\ntillskansar\r\ntillskott\r\ntillskriver\r\ntillskyndare\r\ntillskärare\r\ntillsluta\r\ntillsluten\r\ntillsluter\r\ntillslutit\r\ntillslutning\r\ntillspetsad\r\ntillströmning\r\ntillstundar\r\ntillstymmelse\r\ntillstyrka\r\ntillstyrker\r\ntillstå\r\ntillstånd\r\ntillstår\r\ntillstädes\r\ntillställning\r\ntillstängda\r\ntillstöter\r\ntillsvidareanställning\r\ntillsyn\r\ntillsynslärare\r\ntillsynsman\r\ntillsägelse\r\ntillsätta\r\ntillsätter\r\ntillsättning\r\ntillta\r\ntilltag\r\ntilltaga\r\ntilltagande\r\ntilltager\r\ntilltal\r\ntilltala\r\ntilltalade\r\ntilltalande\r\ntilltalar\r\ntilltalsnamn\r\ntilltar\r\ntilltrasslad\r\ntilltro\r\ntillträde\r\ntillträder\r\ntilltugg\r\ntilltygad\r\ntilltänkt\r\ntillval\r\ntillvand\r\ntillvarata\r\ntillvaratar\r\ntillvaratog\r\ntillvaro\r\ntillvaron\r\ntillvarons\r\ntillverka\r\ntillverkade\r\ntillverkades\r\ntillverkar\r\ntillverkare\r\ntillverkats\r\ntillverkning\r\ntillväga\r\ntillvägagångssätt\r\ntillvänjning\r\ntillväxt\r\ntillåt\r\ntillåta\r\ntillåtelse\r\ntillåten\r\ntillåter\r\ntillåtet\r\ntillåtit\r\ntillåts\r\ntillägg\r\ntillägga\r\ntillägger\r\ntilläggspension\r\ntillägna\r\ntillägnad\r\ntillägnar\r\ntillämpa\r\ntillämpar\r\ntillämpat\r\ntillämplig\r\ntillämplighet\r\ntillämpning\r\ntillända\r\ntillät\r\ntilläts\r\ntillöka\r\ntillökning\r\ntillönskar\r\ntimer\r\ntimglas\r\ntimglasets\r\ntimid\r\ntiming\r\ntimjan\r\ntimma\r\ntimmar\r\ntimmarna\r\ntimme\r\ntimmen\r\ntimmer\r\ntimmerstock\r\ntimotheosbrevet\r\ntimpenning\r\ntimplan\r\ntimra\r\ntimrar\r\ntina\r\ntinar\r\ntindra\r\ntindrar\r\nting\r\ntinga\r\ntingeltangel\r\ntingen\r\ntingens\r\ntingest\r\ntingsrätt\r\ntinne\r\ntinner\r\ntinning\r\ntinningarna\r\ntinningen\r\ntinnitus\r\ntio\r\ntiokrona\r\ntionde\r\ntiondel\r\ntioårsperiod\r\ntioöring\r\ntipp\r\ntippa\r\ntippar\r\ntips\r\ntipsar\r\ntiptop\r\ntirad\r\ntisdag\r\ntissel\r\ntisslar\r\ntistel\r\ntistlarna\r\ntitel\r\ntiteln\r\ntitelroll\r\ntitt\r\ntitta\r\ntittade\r\ntittar\r\ntittare\r\ntittat\r\ntitthål\r\ntitulera\r\ntitusbrevet\r\ntivoli\r\ntjack\r\ntjacka\r\ntjacket\r\ntjafs\r\ntjafsa\r\ntjafsar\r\ntjalla\r\ntjallar\r\ntjallare\r\ntjat\r\ntjata\r\ntjatar\r\ntjatig\r\ntjatter\r\ntjattra\r\ntjattrar\r\ntjeck\r\ntjeckisk\r\ntjej\r\ntjejer\r\ntjoa\r\ntjock\r\ntjocka\r\ntjockis\r\ntjocklek\r\ntjockna\r\ntjockskallig\r\ntjog\r\ntjomme\r\ntjorva\r\ntjorvig\r\ntjuder\r\ntjudra\r\ntjuga\r\ntjugo\r\ntjugofemte\r\ntjugofemöring\r\ntjugonde\r\ntjur\r\ntjurar\r\ntjurig\r\ntjurskalle\r\ntjusa\r\ntjusande\r\ntjusar\r\ntjusig\r\ntjuskraft\r\ntjusning\r\ntjut\r\ntjuta\r\ntjutande\r\ntjuter\r\ntjuv\r\ntjuva\r\ntjuvars\r\ntjuveri\r\ntjuvkika\r\ntjuvstart\r\ntjuvtjockt\r\ntjyv\r\ntjäder\r\ntjäle\r\ntjäna\r\ntjänade\r\ntjänande\r\ntjänandets\r\ntjänar\r\ntjänardräkt\r\ntjänare\r\ntjänaren\r\ntjänares\r\ntjänargestalt\r\ntjänarskara\r\ntjänat\r\ntjänst\r\ntjänstebaserad\r\ntjänstebostad\r\ntjänstefel\r\ntjänstegrupplivförsäkring\r\ntjänsteman\r\ntjänsten\r\ntjänstens\r\ntjänstepension\r\ntjänsteplikt\r\ntjänster\r\ntjänsterna\r\ntjänsterum\r\ntjänstgjorde\r\ntjänstgjort\r\ntjänstgör\r\ntjänstgöra\r\ntjänstgöring\r\ntjänstgöringsbetyg\r\ntjänstledig\r\ntjänstvillig\r\ntjära\r\ntjärn\r\ntjöt\r\ntoa\r\ntoaberoende\r\ntoalett\r\ntoalettartikel\r\ntoaletten\r\ntoalettlock\r\ntoalettpapper\r\ntoalettväska\r\ntobak\r\ntoffel\r\ntofs\r\ntog\r\ntok\r\ntokeri\r\ntokig\r\ntokigt\r\ntolerans\r\ntolerant\r\ntolerera\r\ntolererar\r\ntolererbar\r\ntolfte\r\ntolk\r\ntolka\r\ntolkade\r\ntolkar\r\ntolkas\r\ntolkat\r\ntolkning\r\ntolkservice\r\ntolv\r\ntolva\r\ntolvfingertarm\r\ntom\r\ntomas\r\ntomat\r\ntombola\r\ntomglas\r\ntomgång\r\ntomhet\r\ntomheten\r\ntomhetens\r\ntomhänt\r\ntomma\r\ntomrum\r\ntomt\r\ntomte\r\ntomtebloss\r\ntomtkö\r\ntomträtt\r\ntomträttsavgäld\r\nton\r\ntona\r\ntonar\r\ntonart\r\ntonen\r\ntoner\r\ntonerna\r\ntoners\r\ntonfall\r\ntonfisk\r\ntongivande\r\ntongång\r\ntonnage\r\ntonsill\r\ntonsättare\r\ntonvikt\r\ntonvis\r\ntonår\r\ntonåring\r\ntopografi\r\ntopp\r\ntoppa\r\ntoppar\r\ntoppen\r\ntoppförslutning\r\ntopplån\r\ntoppmatad\r\ntoppmöte\r\ntordas\r\ntordes\r\ntorftig\r\ntorftighet\r\ntorg\r\ntorgskräck\r\ntork\r\ntorka\r\ntorkade\r\ntorkans\r\ntorkar\r\ntorkas\r\ntorkat\r\ntorkhuv\r\ntorkskåp\r\ntorktumlare\r\ntorn\r\ntornado\r\ntornar\r\ntornen\r\ntorp\r\ntorpare\r\ntorped\r\ntorr\r\ntorra\r\ntorrlägga\r\ntorrlägger\r\ntorrskodd\r\ntorsdag\r\ntorsk\r\ntorska\r\ntorso\r\ntortera\r\ntorterades\r\ntorterar\r\ntortyr\r\ntortyren\r\ntorv\r\ntorva\r\ntossig\r\ntossigt\r\ntotal\r\ntotalbelopp\r\ntotalförstöra\r\ntotalisator\r\ntotalitär\r\ntotalt\r\ntotar\r\ntoto\r\ntott\r\ntoucha\r\ntouchar\r\ntouche\r\ntova\r\ntovig\r\ntoxicitet\r\ntrad\r\ntradig\r\ntradition\r\ntraditionell\r\ntraditionen\r\ntraditioner\r\ntrafik\r\ntrafikabel\r\ntrafikant\r\ntrafiken\r\ntrafikerar\r\ntrafikförsäkring\r\ntrafikkort\r\ntrafikledare\r\ntrafikljus\r\ntrafikmärke\r\ntrafikskola\r\ntrafikvakt\r\ntragedi\r\ntragglar\r\ntragik\r\ntragikomisk\r\ntragisk\r\ntrailer\r\ntrakassera\r\ntrakasserar\r\ntrakt\r\ntraktamente\r\ntraktar\r\ntraktat\r\ntrakter\r\ntrakterar\r\ntraktering\r\ntraktor\r\ntraktorn\r\ntrall\r\ntralla\r\ntrallande\r\ntrallar\r\ntramp\r\ntrampa\r\ntrampad\r\ntrampar\r\ntrampolin\r\ntrams\r\ntramsa\r\ntramsig\r\ntran\r\ntrana\r\ntrankil\r\ntrans\r\ntransaktion\r\ntransfer\r\ntransferera\r\ntransfererar\r\ntransferering\r\ntransformation\r\ntransformator\r\ntransformera\r\ntransfusion\r\ntransistor\r\ntransit\r\ntranskribera\r\ntranskription\r\ntranslator\r\ntranslitterera\r\ntransmission\r\ntransmittera\r\ntransokulär\r\ntransparent\r\ntranspiration\r\ntranspirera\r\ntransplantation\r\ntransplanterar\r\ntransport\r\ntransportabel\r\ntransportera\r\ntransporterar\r\ntransportmedel\r\ntransvestit\r\ntrapets\r\ntrappa\r\ntrappan\r\ntrappar\r\ntrappen\r\ntrappsteg\r\ntrappstegen\r\ntrappuppgången\r\ntrasa\r\ntrashank\r\ntrasig\r\ntrasiga\r\ntrasigt\r\ntraska\r\ntraskar\r\ntrasmatta\r\ntrassel\r\ntrasslar\r\ntrasslig\r\ntrast\r\ntrastar\r\ntrastens\r\ntratt\r\ntrauma\r\ntraumatisk\r\ntrav\r\ntrava\r\ntravar\r\ntravare\r\ntrave\r\ntravers\r\ntravesti\r\ntravsport\r\ntre\r\ntrea\r\ntredje\r\ntredjedel\r\ntredska\r\ntredskas\r\ntredubbelt\r\ntreenig\r\ntreenige\r\ntreenighet\r\ntreenigheten\r\ntrefaldig\r\ntrefaldigt\r\ntrefalt\r\ntrehjuling\r\ntrehundra\r\ntrehörning\r\ntrekant\r\ntrekvart\r\ntremening\r\ntrench\r\ntrenchcoat\r\ntrend\r\ntrender\r\ntrendig\r\ntrerummare\r\ntreskift\r\ntretal\r\ntrettio\r\ntrettionde\r\ntrettiosjunde\r\ntrettiotal\r\ntretton\r\nTrettondagen\r\ntrettonde\r\ntreudd\r\ntreva\r\ntrevande\r\ntrevar\r\ntrevare\r\ntrevlig\r\ntrevliga\r\ntrevligt\r\ntrevnad\r\ntriangel\r\ntribun\r\ntribunal\r\ntribut\r\ntrick\r\ntricken\r\ntricksa\r\ntricksar\r\ntrigga\r\ntrikå\r\ntrilla\r\ntrillar\r\ntrilogi\r\ntrilsk\r\ntrilska\r\ntrilskas\r\ntrim\r\ntrimaran\r\ntrimma\r\ntrimmar\r\ntrind\r\ntrio\r\ntripp\r\ntrippa\r\ntrippar\r\ntriss\r\ntrissa\r\ntrist\r\ntristess\r\ntriumf\r\ntriumfera\r\ntriumferande\r\ntriumferar\r\ntriumferat\r\ntrivas\r\ntrivdes\r\ntrivial\r\ntrivialitet\r\ntrivs\r\ntrivsam\r\ntrivsamhet\r\ntrivsamt\r\ntrivsel\r\ntrivts\r\ntro\r\ntrodda\r\ntrodde\r\ntroende\r\ntroendes\r\ntrofast\r\ntrofasta\r\ntrofaste\r\ntrofasthet\r\ntrofé\r\ntrogen\r\ntroget\r\ntrogna\r\ntrognas\r\ntrogne\r\ntrohet\r\ntrohjärtad\r\ntrojka\r\ntrolig\r\ntroligare\r\ntroligen\r\ntroligt\r\ntroligtvis\r\ntroll\r\ntrolla\r\ntrollar\r\ntrollbinda\r\ntrollbinder\r\ntrollbunden\r\ntrolldom\r\ntrolleri\r\ntrollkarl\r\ntrollkonster\r\ntrollpacka\r\ntrolovade\r\ntrolovats\r\ntrolovning\r\ntrolsk\r\ntrolös\r\ntromb\r\ntrombon\r\ntron\r\ntrona\r\ntronar\r\ntronat\r\ntronen\r\ntronens\r\ntroner\r\ntronföljd\r\ntrons\r\ntropikerna\r\ntropisk\r\ntror\r\ntrosa\r\ntrosbekännelse\r\ntrosiver\r\ntroskamp\r\ntroskyldig\r\ntroslära\r\ntrosor\r\ntross\r\ntrossamfund\r\ntrossats\r\ntrosviss\r\ntrosvisshet\r\ntrots\r\ntrotsa\r\ntrotsar\r\ntrotsig\r\ntrotsigt\r\ntrott\r\ntrottoar\r\ntrovärdig\r\ntrovärdighet\r\ntrovärdigt\r\ntrubadur\r\ntrubbel\r\ntrubbig\r\ntruck\r\ntrudelutt\r\ntruga\r\ntrugar\r\ntruism\r\ntrumf\r\ntrumhinna\r\ntrumma\r\ntrummar\r\ntrummor\r\ntrumpen\r\ntrumpet\r\ntrumslagare\r\ntrupp\r\ntruppchef\r\ntrupperna\r\ntrut\r\ntrutar\r\ntry\r\ntryck\r\ntrycka\r\ntryckande\r\ntrycker\r\ntryckeri\r\ntrycket\r\ntryckfrihet\r\ntryckluft\r\ntrycksak\r\ntryckt\r\ntryckta\r\ntryckte\r\ntryffel\r\ntrygg\r\ntrygga\r\ntryggad\r\ntryggar\r\ntryggare\r\ntryggas\r\ntryggast\r\ntryggaste\r\ntryggat\r\ntrygghet\r\ntryggheten\r\ntrygghetszon\r\ntryggt\r\ntryne\r\ntryta\r\ntryter\r\ntråd\r\ntrådar\r\ntrådarna\r\ntrådig\r\ntrådrulle\r\ntrådsliten\r\ntråg\r\ntråka\r\ntråkar\r\ntråkig\r\ntråkighet\r\ntråkigt\r\ntråkmåns\r\ntrål\r\ntrålare\r\ntråna\r\ntrånande\r\ntrång\r\ntrånga\r\ntrångbodd\r\ntrångmål\r\ntrångsynt\r\ntrångt\r\ntrår\r\nträ\r\nträck\r\nträd\r\nträda\r\nträdde\r\nträden\r\nträdens\r\nträder\r\nträdet\r\nträdets\r\nträdgren\r\nträdgård\r\nträdgårdsmästare\r\nträdkrona\r\nträdrad\r\nträdstam\r\nträdäng\r\nträff\r\nträffa\r\nträffade\r\nträffades\r\nträffande\r\nträffar\r\nträffas\r\nträffpunkt\r\nträffsäker\r\nträfiberplattor\r\nträgen\r\nträget\r\nträgna\r\nträl\r\nträlar\r\nträldom\r\nträldomen\r\nträldomsbanden\r\nträldomstid\r\nträlen\r\nträlig\r\nträligt\r\nträna\r\ntränar\r\ntränare\r\nträng\r\ntränga\r\nträngande\r\nträngas\r\nträngd\r\nträngdes\r\ntränger\r\nträngre\r\nträngs\r\nträngsel\r\nträngst\r\nträngtan\r\nträngtande\r\nträngtar\r\nträning\r\nträr\r\nträsk\r\nträsko\r\nträsmak\r\nträsprit\r\nträta\r\nträter\r\nträtt\r\nträvaruhandlare\r\ntrög\r\ntröga\r\ntrögflytande\r\ntröghet\r\ntröja\r\ntröskade\r\ntröskar\r\ntröskel\r\ntröskeln\r\ntröst\r\ntrösta\r\ntröstade\r\ntröstande\r\ntröstar\r\ntröstare\r\ntröstaren\r\ntröstefullt\r\ntrösten\r\ntröstens\r\ntröstlös\r\ntröstlöst\r\ntröstrikt\r\ntröstäter\r\ntröt\r\ntrött\r\ntrötta\r\ntröttad\r\ntröttar\r\ntröttat\r\ntrötte\r\ntrötter\r\ntröttes\r\ntrötthet\r\ntröttkörd\r\ntröttna\r\ntröttnar\r\ntröttsam\r\ntsar\r\ntu\r\ntub\r\ntuba\r\ntuberkulos\r\ntudela\r\ntudelad\r\ntuff\r\ntuffar\r\ntuffing\r\ntufft\r\ntufsar\r\ntugga\r\ntuggar\r\ntuggummi\r\ntukt\r\ntukta\r\ntuktan\r\ntuktas\r\ntull\r\ntullar\r\ntullare\r\ntullindrivare\r\ntullindrivaren\r\ntulpan\r\ntum\r\ntumla\r\ntumlar\r\ntummar\r\ntumme\r\ntummelplats\r\ntumregel\r\ntumskruv\r\ntumstock\r\ntumult\r\ntumultartad\r\ntumör\r\ntung\r\ntunga\r\ntunghäfta\r\ntungkyssas\r\ntungomål\r\ntungor\r\ntungors\r\ntungotalet\r\ntungrodd\r\ntungsinne\r\ntungsint\r\ntungt\r\ntunikorna\r\ntunisisk\r\ntunn\r\ntunna\r\ntunnbröd\r\ntunnel\r\ntunnelbana\r\ntunnelbanan\r\ntunneln\r\ntunnland\r\ntunnsliten\r\ntunnsådd\r\ntunt\r\ntupé\r\ntupp\r\ntuppar\r\ntupplur\r\ntur\r\ntura\r\nturas\r\nturban\r\nturbin\r\nturism\r\nturist\r\nturistbyrå\r\nturk\r\nturkisk\r\nturkos\r\nturlig\r\nturlista\r\nturné\r\nturnera\r\nturnerar\r\nturnering\r\ntursam\r\nturvis\r\ntusan\r\ntusch\r\ntuscha\r\ntusen\r\ntusende\r\ntusendel\r\ntusenden\r\ntusenfalt\r\ntusenkonstnär\r\ntusenlapp\r\ntusental\r\ntusentals\r\ntuss\r\ntussilago\r\ntut\r\ntuta\r\ntutar\r\ntuva\r\ntv\r\ntvaga\r\ntvagit\r\ntvagning\r\ntvang\r\ntvangs\r\ntvedräkt\r\ntveeggad\r\ntveeggat\r\ntvehågsen\r\ntvehågsenhet\r\ntvehågsna\r\ntveka\r\ntvekamp\r\ntvekan\r\ntvekande\r\ntvekar\r\ntvekat\r\ntveklöst\r\ntveksam\r\ntveksamhet\r\ntvenne\r\ntvetydig\r\ntvi\r\ntvilling\r\ntvillingar\r\ntvillingord\r\ntvina\r\ntvinar\r\ntving\r\ntvinga\r\ntvingad\r\ntvingade\r\ntvingades\r\ntvingande\r\ntvingar\r\ntvingas\r\ntvingat\r\ntvinna\r\ntvinnar\r\ntvist\r\ntvista\r\ntvistar\r\ntvistemål\r\ntvister\r\ntvivel\r\ntvivelaktig\r\ntvivelsmål\r\ntvivelstrött\r\ntvivla\r\ntvivlade\r\ntvivlande\r\ntvivlar\r\ntvivlen\r\ntvivlet\r\ntvivlets\r\ntvungen\r\ntvungit\r\ntvå\r\ntvåa\r\ntvådelad\r\ntvåfaldiga\r\ntvåhjuling\r\ntvåhundra\r\ntvåkönad\r\ntvål\r\ntvålfager\r\ntvåmänning\r\ntvång\r\ntvångsintagning\r\ntvångsomhändertagande\r\ntvångstanke\r\ntvångströja\r\ntvåor\r\ntvår\r\ntvårummare\r\ntvåsidig\r\ntvåskift\r\ntvåspråkig\r\ntvär\r\ntvärdrag\r\ntvärgata\r\ntvärs\r\ntvärslå\r\ntvärsnitt\r\ntvärstannar\r\ntvärsäker\r\ntvärsäkert\r\ntvärt\r\ntvärtemot\r\ntvärtom\r\ntvärvetenskaplig\r\ntvätt\r\ntvätta\r\ntvättar\r\ntvätteri\r\ntvättfat\r\ntvättinrättning\r\ntvättklämma\r\ntvättlina\r\ntvättmaskin\r\ntvättmedel\r\ntvättrum\r\ntvättstreck\r\ntvättstuga\r\ntvättställ\r\ntvättäkta\r\nty\r\ntyar\r\ntycka\r\ntyckas\r\ntycke\r\ntycker\r\ntyckes\r\ntycks\r\ntyckt\r\ntyckte\r\ntycktes\r\ntyda\r\ntyder\r\ntydlig\r\ntydliga\r\ntydligare\r\ntydligast\r\ntydligen\r\ntydliggöra\r\ntydlighet\r\ntydligt\r\ntyfus\r\ntyg\r\ntygel\r\ntygellös\r\ntygla\r\ntyglar\r\ntygstycke\r\ntyken\r\ntyket\r\ntyna\r\ntynar\r\ntynat\r\ntynga\r\ntyngd\r\ntyngda\r\ntyngde\r\ntyngden\r\ntyngdes\r\ntyngdkraft\r\ntyngdlös\r\ntyngdpunkt\r\ntynger\r\ntyngre\r\ntyngs\r\ntyngst\r\ntyngsta\r\ntyngt\r\ntyp\r\ntypexempel\r\ntypfall\r\ntypisk\r\ntypiskt\r\ntypograf\r\ntypsnitt\r\ntyr\r\ntyrann\r\ntyrannerna\r\ntyrannernas\r\ntyranniserades\r\ntysk\r\ntyska\r\ntyst\r\ntysta\r\ntystades\r\ntystar\r\ntystas\r\ntystgående\r\ntysthet\r\ntystlåten\r\ntystna\r\ntystnad\r\ntystnaden\r\ntystnadsplikt\r\ntystnar\r\ntystnat\r\ntyvärr\r\ntå\r\ntåg\r\ntåga\r\ntågar\r\ntågplattform\r\ntål\r\ntåla\r\ntålamod\r\ntålamodets\r\ntålamodsprövande\r\ntålig\r\ntålige\r\ntåligt\r\ntålmodig\r\ntålmodiga\r\ntålmodige\r\ntålmodigt\r\ntåls\r\ntålt\r\ntån\r\ntång\r\ntår\r\ntårar\r\ntårarna\r\ntårarnas\r\ntårars\r\ntåras\r\ntårdrypande\r\ntåredalen\r\ntårefloder\r\ntåren\r\ntåreströmmar\r\ntårgas\r\ntårta\r\ntäck\r\ntäcka\r\ntäcke\r\ntäckelse\r\ntäcker\r\ntäckjacka\r\ntäckmantel\r\ntäcknamn\r\ntäckning\r\ntäckningsområde\r\ntäcks\r\ntäckt\r\ntälja\r\ntäljare\r\ntäljer\r\ntäljkniv\r\ntält\r\ntältar\r\ntältdukar\r\ntälten\r\ntämd\r\ntämja\r\ntämjas\r\ntämjer\r\ntämligen\r\ntänd\r\ntända\r\ntändare\r\ntändas\r\ntände\r\ntänder\r\ntändes\r\ntändning\r\ntänds\r\ntändsticka\r\ntändstift\r\ntänger\r\ntänja\r\ntänjbar\r\ntänjer\r\ntänk\r\ntänka\r\ntänkande\r\ntänkare\r\ntänkas\r\ntänkbar\r\ntänker\r\ntänkespråk\r\ntänkesätt\r\ntänkt\r\ntänkta\r\ntänkte\r\ntänkvärd\r\ntänt\r\ntäppa\r\ntäpper\r\ntäppt\r\ntäppte\r\ntär\r\ntära\r\ntärande\r\ntärd\r\ntärna\r\ntärnar\r\ntärning\r\ntärs\r\ntät\r\ntäta\r\ntätar\r\ntätaste\r\ntäthet\r\ntätort\r\ntätt\r\ntättbebyggd\r\ntätting\r\ntävla\r\ntävlan\r\ntävlande\r\ntävlar\r\ntävling\r\ntävlingscykel\r\ntö\r\ntöa\r\ntöar\r\ntöcken\r\ntöcknen\r\ntöcknig\r\ntöjbar\r\ntöjer\r\ntölp\r\ntölpaktig\r\ntöm\r\ntömd\r\ntömde\r\ntömdes\r\ntömma\r\ntömmer\r\ntömning\r\ntöms\r\ntömt\r\ntönt\r\ntöntig\r\ntöras\r\ntörn\r\ntörna\r\ntörnbusken\r\ntörne\r\ntörnekrans\r\ntörnekrona\r\ntörnekronan\r\ntörnekrönt\r\ntörnekrönte\r\ntörnen\r\ntörnestig\r\ntörnestigar\r\ntörnet\r\ntörnig\r\ntörniga\r\ntörnrosbuske\r\ntörs\r\ntörst\r\ntörsta\r\ntörstande\r\ntörstar\r\ntörsten\r\ntörstig\r\ntörstiga\r\ntörstige\r\ntös\r\ntösabit\r\ntöväder\r\nubåt\r\nudd\r\nudda\r\nudde\r\nudden\r\nufo\r\nuforisk\r\nuggla\r\nugn\r\nugnen\r\null\r\nullgarn\r\nullstrumpa\r\nultimat\r\nultimata\r\nultimatum\r\nultrarapid\r\nulv\r\numbära\r\numbärande\r\numbärlig\r\numgicks\r\numgås\r\numgänge\r\numgängesbenägen\r\numgängesrätt\r\nundan\r\nundanber\r\nundandraga\r\nundandrar\r\nundanflykt\r\nundanglidande\r\nundangömd\r\nundangömma\r\nundanhålla\r\nundanhåller\r\nundanhållit\r\nundanhöll\r\nundanrödja\r\nundanröja\r\nundanröjande\r\nundanröjer\r\nundanskaffa\r\nundanskymd\r\nundansnilla\r\nundanta\r\nundantag\r\nundantagande\r\nundantagen\r\nundantagna\r\nundantagstillstånd\r\nundantar\r\nunder\r\nunderbar\r\nunderbara\r\nunderbaraste\r\nunderbarn\r\nunderbart\r\nunderbemannad\r\nunderben\r\nunderbindning\r\nunderblåser\r\nunderbygga\r\nunderbygger\r\nunderbyxa\r\nunderbyxor\r\nunderdånig\r\nunderdåniga\r\nunderdånighet\r\nunderdånigt\r\nunderfulla\r\nunderfund\r\nunderfundig\r\nunderförstådd\r\nunderförstår\r\nundergiven\r\nundergräva\r\nundergräver\r\nundergång\r\nundergången\r\nundergår\r\nundergörande\r\nunderhandlar\r\nunderhåll\r\nunderhålla\r\nunderhållande\r\nunderhållare\r\nunderhåller\r\nunderhållet\r\nunderhållning\r\nunderhållsbidrag\r\nunderhållsskyldighet\r\nunderhöll\r\nunderifrån\r\nunderjordisk\r\nunderkant\r\nunderkasta\r\nunderkastelse\r\nunderkjol\r\nunderkläder\r\nunderkuva\r\nunderkuvade\r\nunderkuvar\r\nunderkänna\r\nunderkänner\r\nunderlag\r\nunderlagt\r\nunderlig\r\nunderliggande\r\nunderligt\r\nunderliv\r\nunderlång\r\nunderlåta\r\nunderlåtenhet\r\nunderlåter\r\nunderläge\r\nunderlägg\r\nunderlägsen\r\nunderlätta\r\nunderlättar\r\nundermedveten\r\nundermedvetet\r\nundermedvetna\r\nunderminera\r\nunderminerar\r\nundermålig\r\nundermåligt\r\nundernärd\r\nundernäring\r\nunderordna\r\nunderordnad\r\nunderordnar\r\nunderprivilegierad\r\nunderrede\r\nunderrätt\r\nunderrätta\r\nunderrättad\r\nunderrättar\r\nunderrättat\r\nunderrättelse\r\nunderrättelsen\r\nunderrättelsetjänst\r\nunders\r\nundersam\r\nunderskatta\r\nunderskattar\r\nunderskattning\r\nunderskott\r\nunderskrider\r\nunderskrift\r\nunderskön\r\nunderst\r\nundersta\r\nunderstatement\r\nunderstiger\r\nunderstreckare\r\nunderstryka\r\nunderstryker\r\nunderstrykning\r\nunderstundom\r\nunderstå\r\nunderställd\r\nunderstöd\r\nunderstödja\r\nunderstödjer\r\nundersåte\r\nundersök\r\nundersöka\r\nundersökare\r\nundersöker\r\nundersökning\r\nundersökte\r\nunderteckna\r\nundertecknad\r\nundertecknar\r\nundertill\r\nundertrycka\r\nundertrycker\r\nundertröja\r\nunderutvecklad\r\nundervattensbåt\r\nunderverk\r\nundervisa\r\nundervisade\r\nundervisar\r\nundervisning\r\nundervärdera\r\nundfallande\r\nundfly\r\nundgick\r\nundgå\r\nundgår\r\nundkomma\r\nundkommer\r\nundra\r\nundran\r\nundrande\r\nundrar\r\nundrat\r\nundre\r\nundrens\r\nundret\r\nundslapp\r\nundslippa\r\nundsluppit\r\nundsätta\r\nundsätter\r\nundsättning\r\nundulat\r\nundvara\r\nundvarar\r\nundvika\r\nundvikande\r\nundviker\r\nundvikit\r\nung\r\nunga\r\nungar\r\nungarna\r\nungdom\r\nungdomarna\r\nungdomens\r\nungdomlig\r\nungdomliga\r\nungdoms\r\nungdomsdag\r\nungdomsgård\r\nungdomsledare\r\nungdomstid\r\nungdomsvård\r\nungdomsvårdsskola\r\nunge\r\nungefär\r\nungefärlig\r\nungefärligen\r\nungersk\r\nungkarl\r\nungmö\r\nungrare\r\nungt\r\nuniform\r\nuniformerad\r\nunik\r\nunika\r\nunilateral\r\nunion\r\nunison\r\nunisont\r\nuniversalarvinge\r\nuniversalmedel\r\nuniversell\r\nuniversitet\r\nuniversum\r\nuniversums\r\nunken\r\nunnar\r\nunnats\r\nuns\r\nupp\r\nupparbetning\r\nuppassare\r\nuppassning\r\nuppbackning\r\nuppbjuder\r\nuppblåsbar\r\nuppblåst\r\nuppbokat\r\nuppbragt\r\nuppbringa\r\nuppbringar\r\nuppbrott\r\nuppbrottet\r\nuppburen\r\nuppbygg\r\nuppbyggas\r\nuppbygger\r\nuppbygglig\r\nuppbyggnad\r\nuppbåd\r\nuppbåda\r\nuppbådar\r\nuppbär\r\nuppbära\r\nuppbörd\r\nuppbördsman\r\nuppdaga\r\nuppdagande\r\nuppdagar\r\nuppdatera\r\nuppdaterar\r\nuppdatering\r\nuppdelning\r\nuppdiktad\r\nuppdrag\r\nuppdraget\r\nuppdragsgivare\r\nuppdriven\r\nuppe\r\nuppegga\r\nuppeggat\r\nuppehåll\r\nuppehålla\r\nuppehåller\r\nuppehållstillstånd\r\nuppehälle\r\nuppemot\r\nuppenbar\r\nuppenbara\r\nuppenbarad\r\nuppenbarade\r\nuppenbarar\r\nuppenbaras\r\nuppenbarat\r\nuppenbarelse\r\nuppenbarelseboken\r\nuppenbarelsernas\r\nuppenbarligen\r\nuppenbart\r\nuppfann\r\nuppfar\r\nuppfart\r\nuppfatta\r\nuppfattar\r\nuppfattas\r\nuppfattning\r\nuppfinner\r\nuppfinning\r\nuppfinningsrik\r\nuppfostra\r\nuppfostran\r\nuppfostrar\r\nuppfostringsmetod\r\nuppfriskande\r\nuppfunnit\r\nuppfyll\r\nuppfylla\r\nuppfyllande\r\nuppfylld\r\nuppfyllda\r\nuppfyllde\r\nuppfylldes\r\nuppfyllelse\r\nuppfyller\r\nuppfyllt\r\nuppfyllts\r\nuppfödare\r\nuppfödning\r\nuppföljare\r\nuppföljning\r\nuppför\r\nuppföra\r\nuppförande\r\nuppförsbacke\r\nuppförstora\r\nuppgav\r\nuppge\r\nuppger\r\nuppgick\r\nuppgift\r\nuppgiften\r\nuppgifter\r\nuppgifterna\r\nuppgiven\r\nuppgivenhet\r\nuppgivet\r\nuppgivna\r\nuppgjord\r\nuppgradera\r\nuppgå\r\nuppgång\r\nuppgången\r\nuppgår\r\nuppgått\r\nuppgörelse\r\nupphandla\r\nupphetsa\r\nupphetsad\r\nupphetsande\r\nupphetsar\r\nupphetsning\r\nupphetta\r\nupphettad\r\nupphittad\r\nupphittare\r\nupphov\r\nupphovsman\r\nupphovsrätt\r\nupphällning\r\nupphäva\r\nupphävande\r\nupphäver\r\nupphävt\r\nupphöj\r\nupphöja\r\nupphöjas\r\nupphöjd\r\nupphöjdhet\r\nupphöjer\r\nupphöjes\r\nupphöjning\r\nupphöjt\r\nupphör\r\nupphöra\r\nupphörande\r\nupphörde\r\nuppifrån\r\nuppiggande\r\nuppjagad\r\nuppkalla\r\nuppkallar\r\nuppkastning\r\nuppklippt\r\nuppkomling\r\nuppkomma\r\nuppkommer\r\nuppkomst\r\nuppkoppling\r\nuppkäftig\r\nuppköp\r\nuppkörning\r\nuppladdning\r\nupplag\r\nupplaga\r\nupplagd\r\nUppland\r\nuppleva\r\nupplevas\r\nupplevde\r\nupplevelse\r\nupplevelser\r\nupplever\r\nuppliva\r\nupplivar\r\nupplopp\r\nuppluckrad\r\nupplupen\r\nupplyft\r\nupplyftande\r\nupplys\r\nupplysa\r\nupplyser\r\nupplysning\r\nupplysningar\r\nupplysningsvis\r\nupplyst\r\nupplysta\r\nupplåt\r\nupplåta\r\nupplåter\r\nuppläggning\r\nupplärd\r\nuppläsare\r\nupplät\r\nupplösa\r\nupplösas\r\nupplöser\r\nupplöses\r\nupplösning\r\nupplösningen\r\nupplösningstillstånd\r\nuppmana\r\nuppmanad\r\nuppmanade\r\nuppmanar\r\nuppmanas\r\nuppmanat\r\nuppmaning\r\nuppmaningarna\r\nuppmjukning\r\nuppmuntra\r\nuppmuntran\r\nuppmuntrande\r\nuppmuntrar\r\nuppmuntrat\r\nuppmärksam\r\nuppmärksamhet\r\nuppmärksamma\r\nuppmärksammad\r\nuppmärksammar\r\nuppnosig\r\nuppnå\r\nuppnår\r\nuppochnedvänd\r\nuppoffra\r\nuppoffrar\r\nuppoffring\r\nupprann\r\nupprensning\r\nupprepa\r\nupprepade\r\nupprepande\r\nupprepar\r\nupprepas\r\nupprepning\r\nuppresa\r\nuppreta\r\nuppretad\r\nuppriktig\r\nuppriktighet\r\nupprinnelse\r\nupprinner\r\nupprivande\r\nuppriven\r\nupprop\r\nuppror\r\nupprorisk\r\nupprorsmakare\r\nupprorsman\r\nupprorsmän\r\nupprorsmännen\r\nupprunnit\r\nupprusta\r\nupprustning\r\nuppryckning\r\nuppryckt\r\nupprymd\r\nupprymdhet\r\nuppräkning\r\nupprätt\r\nupprätta\r\nupprättades\r\nupprättar\r\nupprättelse\r\nupprätthålla\r\nupprätthåller\r\nupprättstående\r\nupprör\r\nuppröra\r\nupprörande\r\nupprörd\r\nupprördhet\r\nuppsagd\r\nuppsats\r\nuppsatt\r\nuppseende\r\nuppseendeväckande\r\nuppsikt\r\nuppsikten\r\nuppsjö\r\nuppskakad\r\nuppskakade\r\nuppskakande\r\nuppskatta\r\nuppskattad\r\nuppskattar\r\nuppskattning\r\nuppskattningsvis\r\nuppskjuta\r\nuppskjuter\r\nuppskov\r\nuppskriven\r\nuppskruvad\r\nuppskrämd\r\nuppskärrad\r\nuppslag\r\nuppslagsbok\r\nuppslagsord\r\nuppslagsverk\r\nuppslitande\r\nuppslukad\r\nuppsluppen\r\nuppslutning\r\nuppsnappa\r\nuppspelt\r\nuppstart\r\nuppstarta\r\nuppstarten\r\nuppstod\r\nuppstoppad\r\nuppsträckning\r\nuppstudsig\r\nuppstyltad\r\nuppstå\r\nuppståndelse\r\nuppståndelsen\r\nuppståndelsens\r\nuppståndelses\r\nuppstånden\r\nuppståndne\r\nuppstår\r\nuppstått\r\nuppställning\r\nuppstämd\r\nuppstöta\r\nuppstötning\r\nuppsving\r\nuppsvullen\r\nuppsvälld\r\nuppsyn\r\nuppsyningsman\r\nuppsåt\r\nuppsåtlig\r\nuppsäga\r\nuppsägning\r\nuppsägningstid\r\nuppsättning\r\nuppsättningar\r\nuppsök\r\nuppsöka\r\nuppsöker\r\nuppsökte\r\nuppta\r\nupptagande\r\nupptagas\r\nupptagen\r\nupptagningshem\r\nupptagningsområde\r\nupptakt\r\nupptar\r\nuppteckna\r\nupptecknar\r\nuppteckning\r\nupptill\r\nupptrappning\r\nuppträda\r\nuppträdande\r\nuppträde\r\nuppträder\r\nupptåg\r\nupptäcka\r\nupptäcker\r\nupptäckt\r\nupptäckte\r\nupptända\r\nupptände\r\nupptänklig\r\nuppvaknande\r\nuppvakta\r\nuppvaktad\r\nuppvaktar\r\nuppvaktning\r\nuppvigla\r\nuppviglar\r\nuppvisa\r\nuppvisar\r\nuppvisning\r\nuppvuxen\r\nuppväck\r\nuppväcka\r\nuppväcker\r\nuppväckt\r\nuppväckte\r\nuppväckts\r\nuppväga\r\nuppväger\r\nuppvälla\r\nuppvärmning\r\nuppväxt\r\nuppå\r\nuppåt\r\nuppåtgående\r\nuppåtsträvande\r\nur\r\nuran\r\nurartar\r\nurbanisering\r\nurbenad\r\nurberg\r\nurblekt\r\nurblåst\r\nurdålig\r\nuremi\r\nurfader\r\nurgamla\r\nurgammal\r\nurgröpt\r\nurholka\r\nurholkad\r\nurholkar\r\nurin\r\nurinblåsa\r\nurinera\r\nurinerar\r\nurinförgiftning\r\nurinprov\r\nurinträngd\r\nurinvägsinfektion\r\nurklipp\r\nurkramade\r\nurkund\r\nurladdning\r\nurlakad\r\nurmakare\r\nurmakeri\r\nurminnes\r\nurmodig\r\nurna\r\nurringar\r\nurringning\r\nursinne\r\nursinnig\r\nurskilja\r\nurskiljer\r\nurskillning\r\nurskog\r\nurskuldande\r\nurskuldar\r\nursprung\r\nursprunglig\r\nursprungligen\r\nurspåring\r\nursäkt\r\nursäkta\r\nursäktande\r\nursäktar\r\nursäkter\r\nurtid\r\nurtiden\r\nurtidens\r\nurtidsbergen\r\nurtypen\r\nurusel\r\nurval\r\nurvattnad\r\nurverk\r\nuråldrig\r\nuråldriga\r\nusch\r\nusel\r\nuselhet\r\nusla\r\nusling\r\nuslingar\r\nut\r\nutagera\r\nutagerad\r\nutan\r\nutanför\r\nutanförskap\r\nutanförstående\r\nutanpå\r\nutantill\r\nutanverk\r\nutarbeta\r\nutarbetad\r\nutarbetar\r\nutarma\r\nutarmar\r\nutav\r\nutbetala\r\nutbilda\r\nutbildad\r\nutbildar\r\nutbildas\r\nutbildning\r\nutbildningsbidrag\r\nutbildningsinstitut\r\nutblick\r\nutblottad\r\nutbreda\r\nutbredd\r\nutbreder\r\nutbredning\r\nutbredningsområde\r\nutbringar\r\nutbrista\r\nutbrister\r\nutbrott\r\nutbrunnen\r\nutbryter\r\nutbränd\r\nutbrända\r\nutbud\r\nutbuktning\r\nutbyggnad\r\nutbyta\r\nutbytbar\r\nutbyte\r\nutbyter\r\nutbytesord\r\nutdela\r\nutdelning\r\nutdrag\r\nutdragen\r\nutdöd\r\nute\r\nuteblev\r\nutebli\r\nuteblir\r\nutebliva\r\nuteblivelse\r\nuteblivit\r\nuteblivna\r\nutedass\r\nutefter\r\nutegångsförbud\r\nuteliggare\r\nuteliv\r\nutelämna\r\nutelämnade\r\nutelämnar\r\nutensilier\r\nuteplats\r\nuterus\r\nutesluta\r\nuteslutande\r\nutesluter\r\nutestänga\r\nutestänger\r\nutestängt\r\nutfall\r\nutfalla\r\nutfart\r\nutfattig\r\nutflugen\r\nutflykt\r\nutflöde\r\nutfodra\r\nutforma\r\nutformar\r\nutformning\r\nutforska\r\nutforskar\r\nutforskat\r\nutfrysa\r\nutfrysning\r\nutfryst\r\nutfråga\r\nutfrågning\r\nutfyllnad\r\nutfärd\r\nutfärdar\r\nutfärdats\r\nutfästelse\r\nutför\r\nutföra\r\nutföras\r\nutförda\r\nutförde\r\nutförlig\r\nutförligt\r\nutförsel\r\nutförsäljning\r\nutfört\r\nutförts\r\nutgav\r\nutgavs\r\nutge\r\nutger\r\nutgick\r\nutgift\r\nutgifter\r\nutgiva\r\nutgivande\r\nutgivare\r\nutgiven\r\nutgivit\r\nutgivning\r\nutgjut\r\nutgjutelse\r\nutgjuter\r\nutgjutet\r\nutgjutning\r\nutgrävning\r\nutgå\r\nutgång\r\nutgångna\r\nutgångsläge\r\nutgångspunkt\r\nutgångspunkten\r\nutgår\r\nutgått\r\nutgåva\r\nutgör\r\nutgöra\r\nutgörs\r\nutgöts\r\nuthuggen\r\nuthungrad\r\nuthus\r\nuthyr\r\nuthållig\r\nuthållighet\r\nuthålligt\r\nuthärda\r\nuthärdar\r\nuthärdat\r\nuthärdlig\r\nuti\r\nutifrån\r\nutjämna\r\nutjämnar\r\nutkant\r\nutkast\r\nutkastad\r\nutkastare\r\nutkastet\r\nutkik\r\nutklassar\r\nutklädd\r\nutklädnad\r\nutkommer\r\nutkomst\r\nutkräv\r\nutkämpa\r\nutkämpar\r\nutland\r\nutlandsvård\r\nutled\r\nutlopp\r\nutlova\r\nutlovad\r\nutlovar\r\nutlysa\r\nutlyser\r\nutlåning\r\nutlåtande\r\nutlägg\r\nutlägga\r\nutläggning\r\nutläggningar\r\nutlämna\r\nutlämnad\r\nutlämnar\r\nutlämning\r\nutländsk\r\nutlänning\r\nutläser\r\nutlöpare\r\nutlösare\r\nutlöser\r\nutmana\r\nutmanad\r\nutmanande\r\nutmanar\r\nutmanas\r\nutmanat\r\nutmaning\r\nutmaningen\r\nutmattad\r\nutmattades\r\nutmattning\r\nutmed\r\nutmejsla\r\nutmynna\r\nutmynnar\r\nutmåla\r\nutmålar\r\nutmärglad\r\nutmärka\r\nutmärkande\r\nutmärkelse\r\nutmärker\r\nutmärks\r\nutmärkt\r\nutmätning\r\nutmönstra\r\nutnyttja\r\nutnyttjande\r\nutnyttjar\r\nutnyttjas\r\nutnämna\r\nutnämner\r\nutnämning\r\nutnött\r\nutom\r\nutombordsmotor\r\nutomhus\r\nutomlands\r\nutomnordisk\r\nutomordentlig\r\nutomordentligt\r\nutomstående\r\nutopi\r\nutpeka\r\nutpekar\r\nutplåna\r\nutplånad\r\nutplånade\r\nutplånades\r\nutplånar\r\nutplånas\r\nutplånat\r\nutplåning\r\nutpost\r\nutpressning\r\nutprova\r\nutprovning\r\nutpräglad\r\nutpröva\r\nutpumpad\r\nutradera\r\nutrannsaka\r\nutreda\r\nutredare\r\nutreder\r\nutredning\r\nutrikes\r\nutrikiska\r\nutritad\r\nutrop\r\nutropa\r\nutropad\r\nutropade\r\nutropar\r\nutropats\r\nutropstecken\r\nutrota\r\nutrotad\r\nutrotar\r\nutrotas\r\nutrotat\r\nutrotning\r\nutrotningen\r\nutrusta\r\nutrustar\r\nutrustning\r\nutryckning\r\nutrymma\r\nutrymme\r\nutrymmer\r\nutrymning\r\nuträckt\r\nuträkning\r\nuträtta\r\nuträttar\r\nutröna\r\nutröner\r\nutsaga\r\nutsago\r\nutsatt\r\nutsatta\r\nutsatte\r\nutsattes\r\nutsatthet\r\nutse\r\nutseende\r\nutseendefixerad\r\nutseendemässig\r\nutseendet\r\nutser\r\nutsida\r\nutsidan\r\nutsikt\r\nutsirad\r\nutskick\r\nutskott\r\nutskrift\r\nutskrivet\r\nutskrivna\r\nutskällda\r\nutskällning\r\nutskämd\r\nutskänkning\r\nutslag\r\nutslagen\r\nutslagning\r\nutslagsgivande\r\nutslagsröst\r\nutsliten\r\nutslitna\r\nutslocknande\r\nutsläckta\r\nutsläpp\r\nutsläppt\r\nutsläta\r\nutslätad\r\nutsmyckad\r\nutsmyckar\r\nutsmyckning\r\nutsocknes\r\nutspekulerad\r\nutspel\r\nutspelar\r\nutspisa\r\nutspisning\r\nutspridd\r\nutspridda\r\nutspritt\r\nutsprungen\r\nutsprång\r\nutspädd\r\nutspänna\r\nutstakad\r\nutstickande\r\nutstod\r\nutstrålar\r\nutstrålning\r\nutsträcka\r\nutsträcker\r\nutsträckning\r\nutsträckt\r\nutströmning\r\nutstuderad\r\nutstyrsel\r\nutstå\r\nutstående\r\nutstår\r\nutställning\r\nutstöter\r\nutstötning\r\nutstött\r\nutstötta\r\nutsuga\r\nutsugning\r\nutsvulten\r\nutsvävande\r\nutsvävning\r\nutså\r\nutsåg\r\nutsåld\r\nutsås\r\nutsäde\r\nutsänd\r\nutsända\r\nutsändning\r\nutsätt\r\nutsätta\r\nutsättande\r\nutsätter\r\nutsätts\r\nutsökt\r\nutsöndra\r\nutsöndrar\r\nutsöndring\r\nutsövd\r\nuttag\r\nuttal\r\nuttala\r\nuttalad\r\nuttalade\r\nuttalande\r\nuttalanden\r\nuttalar\r\nuttalats\r\nuttalsdyslexi\r\nuttolka\r\nuttorkad\r\nuttryck\r\nuttrycka\r\nuttrycker\r\nuttrycket\r\nuttrycklig\r\nuttryckligen\r\nuttryckslös\r\nuttryckssätt\r\nuttryckte\r\nuttråkad\r\nuttråkande\r\nuttråkning\r\nutträde\r\nuttröttad\r\nuttyda\r\nuttydare\r\nuttydning\r\nuttytt\r\nuttänja\r\nuttänjning\r\nuttömma\r\nuttömmande\r\nutur\r\nutvald\r\nutvalda\r\nutvalde\r\nutvalt\r\nutvandra\r\nutvandrar\r\nutvandrare\r\nutvandrarland\r\nutveckla\r\nutvecklande\r\nutvecklar\r\nutvecklas\r\nutveckling\r\nutvecklingsfond\r\nutvecklingsland\r\nutvecklingsskede\r\nutvecklingsstörd\r\nutverkar\r\nutvidga\r\nutvidgar\r\nutvidgning\r\nutvikning\r\nutvikningsbild\r\nutvikningsflicka\r\nutvilad\r\nutvinna\r\nutvinner\r\nutvisa\r\nutvisar\r\nutvisning\r\nutväg\r\nutvälja\r\nutvändigt\r\nutvärdera\r\nutvärderar\r\nutvärdering\r\nutvärtes\r\nutväxla\r\nutväxlar\r\nutväxt\r\nutåt\r\nutåtriktad\r\nutöka\r\nutökad\r\nutökar\r\nutökning\r\nutöva\r\nutövande\r\nutövar\r\nutövare\r\nutöver\r\nuv\r\nva\r\nvaccin\r\nvaccinera\r\nvaccinerar\r\nvacker\r\nvackert\r\nvackla\r\nvacklan\r\nvacklande\r\nvacklandes\r\nvacklar\r\nvackra\r\nvackrare\r\nvackraste\r\nvad\r\nvada\r\nvadar\r\nvadare\r\nvadd\r\nvadderar\r\nvaddering\r\nvadhelst\r\nvadställena\r\nvag\r\nvagabond\r\nvagga\r\nvaggar\r\nvaggsång\r\nvaggvisa\r\nvagina\r\nvagn\r\nvagnar\r\nvagnarnas\r\nvagnskadeförsäkring\r\nvagt\r\nvaja\r\nvajar\r\nvajer\r\nvak\r\nvaka\r\nvakande\r\nvakans\r\nvakant\r\nvakar\r\nvakat\r\nvaken\r\nvakna\r\nvaknad\r\nvaknande\r\nvaknar\r\nvaknat\r\nvaksam\r\nvaksamhet\r\nvakt\r\nvakta\r\nvaktade\r\nvaktande\r\nvaktar\r\nvaktarna\r\nvaktat\r\nvakten\r\nvakter\r\nvakthavande\r\nvakthund\r\nvakthålla\r\nvakthållning\r\nvaktlar\r\nvaktmästare\r\nvaktparad\r\nvaktstyrkan\r\nvaktstyrkor\r\nvakuum\r\nval\r\nvalbar\r\nvalborg\r\nvalborgsmässoafton\r\nvalbyrå\r\nvald\r\nvalde\r\nvaldeltagande\r\nvaldistrikt\r\nvalfläsk\r\nvalfri\r\nvalfrihet\r\nvalfrändskap\r\nvalförrättare\r\nvalhänt\r\nvalidera\r\nvaliditet\r\nvalk\r\nvalkampanj\r\nvalkrets\r\nvalkyria\r\nvall\r\nvalla\r\nvallade\r\nvallar\r\nvallfart\r\nvallfartsort\r\nvallfärd\r\nvallfärdar\r\nvallgrav\r\nvallmo\r\nvallokal\r\nvalmanskår\r\nvalmöjlighet\r\nvalnöt\r\nvalp\r\nvalpar\r\nvalrörelse\r\nvals\r\nvalsedel\r\nvalspråk\r\nvalt\r\nvalurna\r\nvaluta\r\nvalutareserv\r\nvalv\r\nvalven\r\nvalvet\r\nvalör\r\nvan\r\nvana\r\nvanartad\r\nvandal\r\nvandalisera\r\nvandaliserar\r\nvandalism\r\nvande\r\nvandel\r\nvandra\r\nvandrande\r\nvandrar\r\nvandrare\r\nvandraren\r\nvandrarhem\r\nvandrat\r\nvandring\r\nvandringen\r\nvandringens\r\nvandrings\r\nvandringsfolket\r\nvandringsled\r\nvandringsmannen\r\nvandringsmän\r\nvandringsstig\r\nvanebildande\r\nvanemässig\r\nvanföreställning\r\nvanförställning\r\nvanheder\r\nvanhedra\r\nvanhedrade\r\nvanhedrande\r\nvanhedrar\r\nvanhelga\r\nvanhelgar\r\nvanhelgas\r\nvanhelgat\r\nvanilj\r\nvank\r\nvankar\r\nvankas\r\nvankelmod\r\nvankelmodig\r\nvanlig\r\nvanligare\r\nvanligen\r\nvanligt\r\nvanligtvis\r\nvanmakt\r\nvanmaktens\r\nvanmäktig\r\nvann\r\nvanns\r\nvanor\r\nvansinne\r\nvansinnig\r\nvansinnigt\r\nvanskapt\r\nvanskapta\r\nvansklig\r\nvanskliga\r\nvansklighet\r\nvansklighetens\r\nvanskligt\r\nvansköta\r\nvanskötsel\r\nvanställa\r\nvant\r\nvante\r\nvantrivas\r\nvantrivs\r\nvantro\r\nvanvett\r\nvanvettig\r\nvanvettigt\r\nvanvård\r\nvanvårda\r\nvanvårdar\r\nvanvördig\r\nvanära\r\nvanärade\r\nvapen\r\nvapenbroder\r\nvapendragare\r\nvapenfri\r\nvapenför\r\nvapenförråd\r\nvapenlicens\r\nvapenlös\r\nvapenrustning\r\nvapenstillestånd\r\nvapenvila\r\nvapenvägrare\r\nvapnen\r\nvar\r\nvara\r\nvaraktig\r\nvaraktighet\r\nvaraktigt\r\nvarande\r\nvarandra\r\nvarandras\r\nvarann\r\nvarannan\r\nvarar\r\nvarav\r\nvarda\r\nvardag\r\nvardagens\r\nvardaglig\r\nvardags\r\nvardagslag\r\nvardagsliv\r\nvardagslivets\r\nvardagsmat\r\nvardagsmödan\r\nvardagsrum\r\nvardande\r\nvarde\r\nvarder\r\nvardera\r\nvare\r\nvarefter\r\nvarelse\r\nvarelsens\r\nvarelser\r\nvarelsers\r\nvarenda\r\nvareviga\r\nvarför\r\nvarg\r\nvargatider\r\nvargavinter\r\nvargen\r\nvarhelst\r\nvari\r\nvariabel\r\nvariant\r\nvariation\r\nvariationsvidd\r\nvariera\r\nvarierande\r\nvarierar\r\nvarieras\r\nvarieté\r\nvarifrån\r\nvarit\r\nvarje\r\nvarken\r\nvarlig\r\nvarm\r\nvarma\r\nvarmfront\r\nvarmrätt\r\nvarmt\r\nvarmvatten\r\nvarna\r\nvarnar\r\nvarning\r\nvarningar\r\nvarningen\r\nvarningsblinker\r\nvarningstriangel\r\nvarom\r\nvaror\r\nvarp\r\nvarpå\r\nvars\r\nvarsam\r\nvarsamhet\r\nvarsamt\r\nvarse\r\nvarsebli\r\nvarseblir\r\nvarseblivning\r\nvarsel\r\nvarsitt\r\nvarsko\r\nvarskor\r\nvarsla\r\nvarslar\r\nvarstans\r\nvarsågod\r\nvart\r\nvartannat\r\nvartefter\r\nvartenda\r\nvarthelst\r\nvarthän\r\nvarudeklaration\r\nvaruhus\r\nvarulager\r\nvarumärke\r\nvarv\r\nvarvar\r\nvarvid\r\nvas\r\nvask\r\nvaska\r\nvass\r\nwatt\r\nvatten\r\nvattenbehållare\r\nvattenbrynet\r\nvattenbäckar\r\nvattencisterner\r\nvattendjur\r\nvattendrag\r\nvattenfall\r\nvattenflöde\r\nvattenfågeln\r\nvattenfärg\r\nvattenhål\r\nvattenhöjd\r\nvattenklosett\r\nvattenkoppor\r\nvattenkraft\r\nvattenkrasse\r\nvattenmelon\r\nvattennivå\r\nvattenpass\r\nvattenplaning\r\nvattenpuss\r\nvattenpöl\r\nvattens\r\nvattenskidor\r\nvattenström\r\nvattenstånd\r\nvattensvullnad\r\nvattentät\r\nvattenverk\r\nvattenväg\r\nvattna\r\nvattnad\r\nvattnade\r\nvattnar\r\nvattnas\r\nvattnen\r\nvattnet\r\nvattnig\r\nvattuflod\r\nvattuflöden\r\nvax\r\nvaxar\r\nvaxduk\r\nwc\r\nve\r\nwebben\r\nwebbsida\r\nveck\r\nvecka\r\nveckad\r\nveckan\r\nveckar\r\nveckas\r\nvecklar\r\nveckopeng\r\nveckor\r\nveckorna\r\nveckoslut\r\nveckoslutet\r\nveckotidning\r\nveckotidskrift\r\nved\r\nvedbod\r\nveden\r\nvederbörande\r\nvederbörlig\r\nvederfaras\r\nvederfars\r\nvedergällning\r\nvederhäftig\r\nvederkvickande\r\nvederkvickas\r\nvederkvickelse\r\nvederkvicker\r\nvederlag\r\nvederlägg\r\nvederlägga\r\nvederlägger\r\nvedermöda\r\nvederstygglig\r\nvedertagen\r\nvedervilja\r\nvedervärdig\r\nvedervärdigt\r\nvedinsekter\r\nvedlevande\r\nvedpinnar\r\nvedträ\r\nvegetabilier\r\nvegetabilisk\r\nvegetarian\r\nvegetarisk\r\nvegetation\r\nvegetativ\r\nvegeterar\r\nvek\r\nveke\r\nvekhet\r\nveklig\r\nveknar\r\nveknat\r\nvela\r\nvelar\r\nvelat\r\nvelig\r\nvelociped\r\nvem\r\nvemod\r\nvemodig\r\nvems\r\nven\r\nvendetta\r\nvenerisk\r\nventil\r\nventilation\r\nventilera\r\nventilerar\r\nveranda\r\nverb\r\nverbal\r\nverifiera\r\nverifierar\r\nverifiering\r\nverifikation\r\nveritabel\r\nverk\r\nverka\r\nverkade\r\nverkan\r\nverkar\r\nverket\r\nverklig\r\nverkliga\r\nverkligen\r\nverklighet\r\nverkligheten\r\nverkligheter\r\nverklighetsbaserad\r\nverklighetsflykt\r\nverklighetsnära\r\nverklighetstrogen\r\nverklighetstroget\r\nverkligt\r\nverkmästare\r\nverkning\r\nverkningsfull\r\nverkningslös\r\nverksam\r\nverksamhet\r\nverksamheterna\r\nverksamhetsberättelse\r\nverksamhetsgren\r\nverksamhetsområde\r\nverkstad\r\nverkstadsgolv\r\nverkstadsklubb\r\nverkställa\r\nverkställande\r\nverkställer\r\nverkställighet\r\nverktyg\r\nvernissage\r\nvers\r\nversal\r\nversen\r\nverserna\r\nversion\r\nvertikal\r\nvertikala\r\nvessla\r\nvestibul\r\nvet\r\nveta\r\nvetande\r\nvetandets\r\nvetat\r\nvete\r\nvetekorn\r\nvetekornet\r\nvetekornets\r\nvetekorns\r\nvetemjöl\r\nvetenskap\r\nvetenskaplig\r\nvetenskapligt\r\nvetenskapsman\r\nveteran\r\nveterinär\r\nveterligt\r\nvetet\r\nvetgirig\r\nveto\r\nvetskap\r\nvett\r\nvetter\r\nvettig\r\nvettlös\r\nvettlösa\r\nvettlöse\r\nvettlöshet\r\nvettlöst\r\nvettskrämd\r\nvettvilling\r\nvev\r\nveva\r\nvevar\r\nwhisky\r\nvi\r\nvia\r\nviadukt\r\nvibration\r\nvibrator\r\nvibrera\r\nvibrerar\r\nvice\r\nvickar\r\nvickning\r\nvid\r\nvida\r\nvidare\r\nvidarebefordra\r\nvidarebefordrar\r\nvidareutbildning\r\nvidbränd\r\nvidd\r\nvidden\r\nvidder\r\nvide\r\nviden\r\nvideo\r\nvideobandspelare\r\nvidga\r\nvidgar\r\nvidgning\r\nvidgå\r\nvidhålla\r\nvidhåller\r\nvidhäftning\r\nvidimera\r\nvidimerar\r\nvidkomma\r\nvidkommande\r\nvidkänns\r\nvidlyftig\r\nvidlåder\r\nvidmakthålla\r\nvidmakthåller\r\nvidrig\r\nvidräkning\r\nvidrör\r\nvidröra\r\nvidröring\r\nvidrörs\r\nvidskepelse\r\nvidskeplig\r\nvidskeplighet\r\nvidsträckt\r\nvidsynt\r\nvidta\r\nvidtaga\r\nvidtar\r\nvidunder\r\nvidunderlig\r\nvidöppen\r\nwienerbröd\r\nwienerkorv\r\nvietnames\r\nvietnamesisk\r\nvift\r\nviftande\r\nviftar\r\nvig\r\nviga\r\nvigas\r\nvigda\r\nvigde\r\nviger\r\nvigga\r\nvigsel\r\nvigt\r\nvigör\r\nvik\r\nvika\r\nvikariat\r\nvikarie\r\nvikarierar\r\nviker\r\nviking\r\nvikit\r\nvikt\r\nvikta\r\nviktbärande\r\nviktig\r\nviktiga\r\nviktigare\r\nviktigaste\r\nviktigpetter\r\nviktigt\r\nviktreducera\r\nvila\r\nvilan\r\nvilande\r\nvilans\r\nvilar\r\nvilat\r\nvild\r\nvilda\r\nvilddjur\r\nvilddjurets\r\nvilde\r\nvildhonung\r\nvildmark\r\nvildmarkens\r\nvildsint\r\nvildvuxen\r\nvilja\r\nviljan\r\nviljans\r\nviljas\r\nvilje\r\nviljes\r\nviljestark\r\nviljestyrka\r\nviljor\r\nvilka\r\nvilken\r\nvilkens\r\nvilket\r\nvill\r\nvilla\r\nvillade\r\nvillas\r\nvillaägare\r\nville\r\nvillebråd\r\nvillervalla\r\nvillfarelse\r\nvillfarelsen\r\nvillfarelser\r\nvillig\r\nvilliga\r\nvillighet\r\nvilligt\r\nvillkor\r\nvillkorlig\r\nvillolära\r\nvillors\r\nvillospår\r\nvilloväg\r\nvillovägar\r\nvillrådig\r\nvillrådighet\r\nvilodag\r\nviloläger\r\nvilopaus\r\nviloplats\r\nvilorum\r\nvilostad\r\nvilostund\r\nviloställe\r\nvilotiden\r\nvilsam\r\nvilse\r\nvilseföra\r\nvilseförd\r\nvilseförde\r\nvilsegången\r\nvilsegånget\r\nvilsegångna\r\nvilsekommen\r\nvilseleda\r\nvilseledande\r\nvilseledd\r\nvilseledda\r\nvilseledde\r\nvilseleder\r\nvilsen\r\nvilsenhet\r\nvilsenhets\r\nvilset\r\nvilsna\r\nvilstol\r\nvilt\r\nviltolycka\r\nvimla\r\nvimlade\r\nvimlar\r\nvimlat\r\nvimlet\r\nvimmel\r\nvimmelkantig\r\nvimpel\r\nvimsar\r\nvimsig\r\nvin\r\nvina\r\nvinbär\r\nvind\r\nvindar\r\nvindarna\r\nvinden\r\nvindens\r\nvindfläkt\r\nvindflöjel\r\nvindil\r\nvindkraft\r\nvindlar\r\nvindpinad\r\nvindpust\r\nvindruta\r\nvindruva\r\nvindskydd\r\nvindsrum\r\nvindstilla\r\nvindsurfar\r\nviner\r\nvinet\r\nvingad\r\nvingar\r\nvingarna\r\nvingars\r\nvinge\r\nvingfjädrar\r\nvingkraften\r\nvingla\r\nvinglar\r\nvinglig\r\nvingpar\r\nvingård\r\nvingården\r\nvingårdsman\r\nvink\r\nvinkar\r\nvinkel\r\nvinkelhake\r\nvinkeln\r\nvinkelrät\r\nvinklar\r\nvinlista\r\nvinn\r\nvinna\r\nvinnande\r\nvinnare\r\nvinnas\r\nvinner\r\nvinning\r\nvinnlägga\r\nvinnlägger\r\nvinns\r\nvinranka\r\nvinrättighet\r\nvinsch\r\nvinst\r\nvinsten\r\nvinstgivande\r\nvinter\r\nvinterbonar\r\nvinterdagar\r\nVintergatan\r\nvintergatans\r\nvintergator\r\nvintergrå\r\nvinterhimlens\r\nvintermörkret\r\nvintern\r\nvinternatt\r\nvinternatten\r\nvinterns\r\nvinterskrud\r\nvinterstormens\r\nvintertid\r\nvintertiden\r\nvinthund\r\nvintrarna\r\nvintras\r\nvinträd\r\nvinyl\r\nvinylskiva\r\nvinäger\r\nviol\r\nvioler\r\nviolett\r\nviolin\r\nvioloncell\r\nvippa\r\nvippar\r\nvippen\r\nvips\r\nvira\r\nvirar\r\nviras\r\nviril\r\nvirkar\r\nvirke\r\nvirkeshandlare\r\nvirknål\r\nvirrhjärna\r\nvirrig\r\nvirrpanna\r\nvirrvarr\r\nvirtuos\r\nvirus\r\nvirvel\r\nvirvelvind\r\nvirvla\r\nvirvlande\r\nvirvlar\r\nvis\r\nvisa\r\nvisad\r\nvisade\r\nvisan\r\nvisar\r\nvisare\r\nvisas\r\nvisat\r\nvisavi\r\nvischan\r\nvisdom\r\nvisdoms\r\nvisdomsord\r\nvisdomstand\r\nvise\r\nvisering\r\nvises\r\nvishet\r\nvision\r\nvisionen\r\nvisionär\r\nvisir\r\nvisit\r\nvisitation\r\nvisitera\r\nvisiterar\r\nvisitkort\r\nviska\r\nviskade\r\nviskande\r\nviskar\r\nvisning\r\nvisor\r\nvisp\r\nvispar\r\nvispgrädde\r\nviss\r\nvissa\r\nvisselpipa\r\nvissen\r\nvisserligen\r\nvisset\r\nvisshet\r\nvissla\r\nvisslar\r\nvissna\r\nvissnad\r\nvissnande\r\nvissnar\r\nvisso\r\nvisst\r\nvisste\r\nvistas\r\nvistats\r\nvistelse\r\nvisualisera\r\nvisualisering\r\nvisuell\r\nvisum\r\nvit\r\nvita\r\nvital\r\nvitalitet\r\nvitamin\r\nvitare\r\nvitbok\r\nvite\r\nvitkål\r\nvitling\r\nvitlök\r\nvitna\r\nvitnar\r\nvitnat\r\nvitpeppar\r\nvitrinskåp\r\nvits\r\nvitsa\r\nvitsig\r\nvitsippa\r\nvitsord\r\nvitsordar\r\nvitt\r\nvitterhet\r\nvittjar\r\nvittna\r\nvittnar\r\nvittnas\r\nvittnat\r\nvittne\r\nvittnen\r\nvittnena\r\nvittnesbörd\r\nvittnesmål\r\nvittnet\r\nvittomfattande\r\nvittrar\r\nvittring\r\nvitöga\r\nvivre\r\nvivör\r\nvokabulär\r\nvokal\r\nvokalist\r\nvolang\r\nvolontär\r\nvolt\r\nvoluminös\r\nvolym\r\nvolymlös\r\nvomera\r\nvorden\r\nvore\r\nvotera\r\nvoterar\r\nvotering\r\nvovve\r\nvrak\r\nvrakar\r\nvrakas\r\nvrakpris\r\nvred\r\nvreda\r\nvrede\r\nvreden\r\nvredens\r\nvredesmod\r\nvredgad\r\nvredgades\r\nvresig\r\nvricka\r\nvrickad\r\nvrickar\r\nvrickat\r\nvrickning\r\nvrida\r\nvridbara\r\nvriden\r\nvrider\r\nvridning\r\nvrist\r\nvrå\r\nvrål\r\nvråla\r\nvrålar\r\nvrång\r\nvrångbild\r\nvrångstrupe\r\nvrår\r\nvräka\r\nvräker\r\nvräkig\r\nvräkt\r\nvräktes\r\nvränger\r\nvulgär\r\nvulkan\r\nvulva\r\nvunnen\r\nvunnet\r\nvunnit\r\nvunnits\r\nvurm\r\nvurpa\r\nvurpar\r\nvuxen\r\nvuxengymnasium\r\nvuxenstudiestöd\r\nvuxenutbildning\r\nvuxit\r\nvuxna\r\nvy\r\nvyer\r\nvykort\r\nvåd\r\nvåda\r\nvåderna\r\nvådlig\r\nvåffla\r\nvåg\r\nvåga\r\nvågad\r\nvågade\r\nvågar\r\nvågas\r\nvågat\r\nvågbrytare\r\nvågen\r\nvågens\r\nvåghals\r\nvåghalsig\r\nvåghalsigt\r\nvågig\r\nvåglängd\r\nvågmästare\r\nvågor\r\nvågorna\r\nvågors\r\nvågrät\r\nvågskål\r\nvågspel\r\nvåld\r\nvåldet\r\nvåldets\r\nvåldför\r\nvåldföra\r\nvåldfört\r\nvåldgästar\r\nvåldsam\r\nvåldsamma\r\nvåldsamt\r\nvåldsangrepp\r\nvåldsdåd\r\nvåldsdådet\r\nvåldshandling\r\nvåldsman\r\nvåldsmän\r\nvåldsverkare\r\nvåldtar\r\nvåldtäkt\r\nvålla\r\nvållade\r\nvållande\r\nvållar\r\nvållat\r\nvålnad\r\nvånda\r\nvåndas\r\nvåndats\r\nvåning\r\nvåningsplan\r\nvåp\r\nvår\r\nvåra\r\nvåran\r\nvårar\r\nvåras\r\nvårat\r\nvård\r\nvårda\r\nvårdad\r\nvårdades\r\nvårdagjämning\r\nvårdagssol\r\nvårdar\r\nvårdare\r\nvårdartjänst\r\nvårdas\r\nvårdat\r\nvårdbidrag\r\nvårdbiträde\r\nvårdcentral\r\nvårdhem\r\nvårdnad\r\nvårdnadshavare\r\nvårdnadsutredning\r\nvårdräkt\r\nvårdslös\r\nvårdslöshet\r\nvårdtagare\r\nvårdyrke\r\nvåren\r\nvårens\r\nvårflod\r\nvårfrudagstid\r\nvårregn\r\nvårregns\r\nvårt\r\nvårta\r\nvårtid\r\nvårvind\r\nvåt\r\nvått\r\nvåtutrymme\r\nväck\r\nväcka\r\nväckarklocka\r\nväckas\r\nväckelse\r\nväckelsen\r\nväckelsens\r\nväckelser\r\nväckelseropet\r\nväcker\r\nväckning\r\nväcks\r\nväckt\r\nväckta\r\nväckte\r\nväcktes\r\nväder\r\nväderbiten\r\nväderkorn\r\nväderkvarn\r\nväderlek\r\nväderstreck\r\nvädja\r\nvädjade\r\nvädjan\r\nvädjar\r\nvädra\r\nvädrar\r\nvädret\r\nvädur\r\nväg\r\nväga\r\nvägar\r\nvägarna\r\nvägbana\r\nvägen\r\nvägens\r\nväger\r\nvägfarande\r\nvägg\r\nväggar\r\nväggprydnad\r\nvägguttag\r\nvägkant\r\nvägkurva\r\nväglag\r\nvägleda\r\nvägledare\r\nvägledd\r\nvägleder\r\nvägledning\r\nväglett\r\nväglöst\r\nvägmärke\r\nvägmärken\r\nvägnar\r\nvägra\r\nvägran\r\nvägrar\r\nvägren\r\nvägskäl\r\nvägtrafikskatt\r\nvägvisa\r\nvägvisare\r\nväjer\r\nväktare\r\nväl\r\nvälaktad\r\nvälansad\r\nvälanvända\r\nvälartad\r\nvälbefinnande\r\nvälbehag\r\nvälbehaglig\r\nvälbehållen\r\nvälbekant\r\nvälbeställd\r\nvälbärgad\r\nvälde\r\nväldeliga\r\nväldet\r\nväldig\r\nväldiga\r\nväldige\r\nväldighet\r\nväldigt\r\nväldoft\r\nvälfärd\r\nvälfödd\r\nvälgenomfört\r\nvälgrundad\r\nvälgång\r\nvälgångsönskan\r\nvälgärning\r\nvälgödd\r\nvälgörande\r\nvälgörenhet\r\nvälj\r\nvälja\r\nväljare\r\nväljarkår\r\nväljer\r\nvälklädd\r\nvälkommen\r\nvälkomna\r\nvälkomnade\r\nvälkomnar\r\nvälkomst\r\nvälkomstord\r\nvälkomstsång\r\nvälkänd\r\nvälla\r\nväller\r\nvälling\r\nvälljud\r\nvällukt\r\nvälluktande\r\nvällust\r\nvälmenade\r\nvälmenande\r\nvälment\r\nvälmående\r\nvälmåga\r\nvälsedd\r\nvälsigna\r\nvälsignad\r\nvälsignade\r\nvälsignande\r\nvälsignar\r\nvälsignat\r\nvälsigne\r\nvälsignelse\r\nvälsignelsen\r\nvälsignelsens\r\nvälsignelser\r\nvälsignelses\r\nvälskapt\r\nvälskött\r\nvälsmakande\r\nvälsmort\r\nvälsorterad\r\nvälstånd\r\nvälställd\r\nvälta\r\nvältalig\r\nvälte\r\nvälter\r\nvältra\r\nvältrar\r\nvältrat\r\nvältränad\r\nväluppfostrad\r\nvälvd\r\nvälvda\r\nvälvde\r\nvälver\r\nvälvilja\r\nvälvillig\r\nvälvårdad\r\nvälväxt\r\nvämjelig\r\nvämjelse\r\nvän\r\nvänd\r\nvända\r\nvändas\r\nvände\r\nvänder\r\nvändes\r\nvändning\r\nvändpunkt\r\nvänds\r\nväninna\r\nvänja\r\nvänjer\r\nvänlig\r\nvänliga\r\nvänligen\r\nvänlighet\r\nvänligt\r\nvännen\r\nvänner\r\nvännerna\r\nvänners\r\nväns\r\nvänskap\r\nvänskapligt\r\nvänskapsband\r\nvänslas\r\nvänster\r\nvänsterhänt\r\nvänsterhänta\r\nvänsterpartiet\r\nvänsterprassel\r\nvänt\r\nvänta\r\nväntad\r\nväntade\r\nväntan\r\nväntande\r\nväntans\r\nväntar\r\nväntat\r\nväntetid\r\nväntrum\r\nväntsal\r\nväpna\r\nväpnad\r\nväpnaren\r\nvärd\r\nvärda\r\nvärde\r\nvärdebeständig\r\nvärdeenhet\r\nvärdefull\r\nvärdeförsändelse\r\nvärdeladdad\r\nvärdelös\r\nvärdelösa\r\nvärdelöst\r\nvärden\r\nvärdepapper\r\nvärdera\r\nvärderad\r\nvärderar\r\nvärdering\r\nvärdes\r\nvärdesak\r\nvärdesäkrar\r\nvärdesätta\r\nvärdesätter\r\nvärdfolk\r\nvärdig\r\nvärdighet\r\nvärdigt\r\nvärdinna\r\nvärdshus\r\nvärja\r\nvärjer\r\nvärk\r\nvärka\r\nvärker\r\nvärld\r\nvärldar\r\nvärldarna\r\nvärldarnas\r\nvärldars\r\nvärlden\r\nvärldens\r\nvärldsalltet\r\nvärldsberömd\r\nvärldsbild\r\nvärldsdel\r\nvärldsförbättrare\r\nvärldshav\r\nvärldshavens\r\nvärldshavets\r\nvärldskrig\r\nvärldslig\r\nvärldsligt\r\nvärldsmästare\r\nvärldsmästerskap\r\nvärldsomfattande\r\nvärldsomspännande\r\nvärldsrekord\r\nvärldsrike\r\nvärldsvan\r\nvärldsvälde\r\nvärm\r\nvärma\r\nvärmande\r\nvärme\r\nvärmebölja\r\nvärmeelement\r\nvärmen\r\nvärmer\r\nvärmeslag\r\nVärmland\r\nvärmlänning\r\nvärn\r\nvärna\r\nvärnar\r\nvärnlös\r\nvärnlösa\r\nvärnlöse\r\nvärnlöst\r\nvärnplikt\r\nvärnplikten\r\nvärnpliktig\r\nvärpa\r\nvärper\r\nvärre\r\nvärst\r\nvärsta\r\nvärt\r\nvärv\r\nvärva\r\nvärvar\r\nvärvning\r\nväsen\r\nväsens\r\nväsensskild\r\nväsentlig\r\nväsentligen\r\nväsentlighet\r\nväsentligt\r\nväser\r\nväska\r\nväsnas\r\nvässa\r\nvässad\r\nvässar\r\nväst\r\nväster\r\nVästerbotten\r\nVästergötland\r\nvästerländsk\r\nvästern\r\nvästerrand\r\nvästerut\r\nvästgränsen\r\nvästgöte\r\nvästkusten\r\nvästlig\r\nvästmakterna\r\nVästmanland\r\nvästra\r\nväta\r\nväte\r\nväter\r\nväts\r\nvätska\r\nvätta\r\nvätte\r\nväv\r\nvävare\r\nvävd\r\nvävde\r\nväver\r\nvävnad\r\nvävnaden\r\nvävstol\r\nvävstolens\r\nväx\r\nväxa\r\nväxande\r\nväxel\r\nväxelkurs\r\nväxellåda\r\nväxelström\r\nväxelverkan\r\nväxelvis\r\nväxer\r\nväxla\r\nväxlande\r\nväxlar\r\nväxlarnas\r\nväxling\r\nväxlingen\r\nväxlingens\r\nväxt\r\nväxte\r\nväxten\r\nväxterna\r\nväxthus\r\nväxtlighet\r\nväxtriket\r\nväxtvärk\r\nvörda\r\nvördad\r\nvördar\r\nvördnad\r\nvördnaden\r\nvördnadsfull\r\nvördsam\r\nvört\r\nxylofon\r\nyla\r\nylande\r\nylar\r\nylle\r\nymnig\r\nymniga\r\nymnighet\r\nympades\r\nympar\r\nyngel\r\nyngla\r\nynglar\r\nyngling\r\nynglingen\r\nyngre\r\nyngst\r\nynklig\r\nynkliga\r\nynkrygg\r\nynnest\r\nyoghurt\r\nyppa\r\nyppar\r\nypperlig\r\nypperligt\r\nyppersta\r\nyppig\r\nyr\r\nyra\r\nyrar\r\nyrka\r\nyrkande\r\nyrkar\r\nyrke\r\nyrkesbroder\r\nyrkesfolk\r\nYrkesinspektionen\r\nyrkesmässig\r\nyrkesorientering\r\nyrkesskada\r\nyrkesskadeförsäkring\r\nyrkesställe\r\nyrkesutövande\r\nyrkesutövare\r\nyrkesvalslärare\r\nyrsel\r\nyrvaken\r\nyrväder\r\nyster\r\nyta\r\nytlig\r\nytter\r\nytterjacka\r\nytterkant\r\nytterkläder\r\nytterlig\r\nytterligare\r\nytterlighet\r\nytterligt\r\nyttermera\r\nytterrock\r\nyttersida\r\nytterst\r\nyttersta\r\nyttervärld\r\nyttra\r\nyttrande\r\nyttrandefrihet\r\nyttrar\r\nyttre\r\nyttring\r\nyuppie\r\nyvig\r\nyxa\r\nyxan\r\nyxorna\r\nyxskaft\r\nzappa\r\nzebra\r\nzenit\r\nzigenare\r\nzigensk\r\nzink\r\nzombie\r\nzon\r\nzoner\r\nzoo\r\nzoologi\r\nzoologisk\r\nzoom\r\nzoomobjektiv\r\nzucchini\r\nå\r\nåberopa\r\nåberopar\r\nåbäke\r\nåda\r\nådagalägga\r\nåder\r\nåderlåter\r\nådra\r\nådrar\r\nåhörardag\r\nåhörare\r\nåhörarna\r\nåk\r\nåka\r\nåkalla\r\nåkallade\r\nåkallar\r\nåkare\r\nåkdon\r\nåker\r\nåkeri\r\nåkerlapp\r\nåkern\r\nåkerns\r\nåklagare\r\nåklagarmakternas\r\nåkning\r\nåkomma\r\nåkrarna\r\nåkrarnas\r\nåksjuk\r\nåkt\r\nåkte\r\nåktur\r\nål\r\nåla\r\nålades\r\nålar\r\nålder\r\nålderdom\r\nålderdomlig\r\nålderdomshem\r\nåldern\r\nålderns\r\nåldersgränser\r\nålderspension\r\nåldersstreck\r\nålderstigen\r\nåldrad\r\nåldrar\r\nåldras\r\nåldrig\r\nåldring\r\nåldringsvård\r\nåliggande\r\nåligger\r\nålåg\r\nålägga\r\nåläggas\r\nålägger\r\nåminnelse\r\nånga\r\nångar\r\nångbad\r\nånger\r\nångerblankett\r\nångerfulla\r\nångerfulles\r\nångerfullt\r\nÅngermanland\r\nångerns\r\nångervecka\r\nångest\r\nångesten\r\nångestens\r\nångestfullt\r\nångestnatt\r\nångests\r\nångra\r\nångrade\r\nångrar\r\nångrat\r\nångvält\r\nånyo\r\når\r\nåra\r\nåratal\r\nåren\r\nåret\r\nårets\r\nårgång\r\nårhundrade\r\nårlig\r\nårligen\r\nårs\r\nårsbok\r\nårsdag\r\nårskull\r\nårskurs\r\nårsmöte\r\nårsskifte\r\nårstid\r\nårsvis\r\nårtal\r\nårtionde\r\nårtusende\r\nås\r\nåsamka\r\nåse\r\nåsidosätta\r\nåsidosättande\r\nåsidosätter\r\nåsikt\r\nåsikter\r\nåska\r\nåskan\r\nåskans\r\nåskar\r\nåskas\r\nåskmoln\r\nåskregn\r\nåskvigg\r\nåskväder\r\nåskåda\r\nåskådare\r\nåskådlig\r\nåskådliggör\r\nåskådliggöra\r\nåskådliggörande\r\nåskådning\r\nåsna\r\nåsnan\r\nåsnorna\r\nåstad\r\nåstadkomma\r\nåstadkommer\r\nåstadkommit\r\nåstunda\r\nåsyfta\r\nåsyftar\r\nåsyn\r\nåt\r\nåtagande\r\nåtagit\r\nåtal\r\nåtalar\r\nåtanke\r\nåtar\r\nåtbörd\r\nåter\r\nåteranpassar\r\nåteranpassning\r\nåteranvänder\r\nåterberätta\r\nåterberättar\r\nåterbesök\r\nåterbetalar\r\nåterblick\r\nåterbruk\r\nåterbud\r\nåterbäring\r\nåterbörda\r\nåtererövra\r\nåtererövring\r\nåterfall\r\nåterfalla\r\nåterfallit\r\nåterfinna\r\nåterfinner\r\nåterfår\r\nåterfått\r\nåterför\r\nåterförenas\r\nåterförsäljare\r\nåterfött\r\nåterge\r\nåterger\r\nåtergiva\r\nåterglans\r\nåtergå\r\nåtergång\r\nåtergår\r\nåtergälda\r\nåtergäldar\r\nåterhållen\r\nåterhållsam\r\nåterhämta\r\nåterhämtad\r\nåterhämtar\r\nåterhämtning\r\nåterhörande\r\nåterigen\r\nåterkalla\r\nåterkallelse\r\nåterkasta\r\nåterklang\r\nåterkomma\r\nåterkommande\r\nåterkommer\r\nåterkomst\r\nåterkoppling\r\nåterljud\r\nåterlämna\r\nåterlösa\r\nåterlösning\r\nåterlösningen\r\nåterlöst\r\nåterlösta\r\nåterlöstas\r\nåterlöste\r\nåterresa\r\nåterseende\r\nåterser\r\nåterskapa\r\nåterskapas\r\nåtersken\r\nåterspegla\r\nåterspeglar\r\nåterspegling\r\nåterstod\r\nåterstoden\r\nåterstå\r\nåterstående\r\nåterstår\r\nåterställa\r\nåterställare\r\nåterställd\r\nåterställer\r\nåtersända\r\nåterta\r\nåtertaga\r\nåtertagande\r\nåtertåg\r\nåteruppbyggas\r\nåteruppföra\r\nåterupprepa\r\nåterupprätta\r\nåterupprättad\r\nåterupprättade\r\nåteruppstod\r\nåteruppstår\r\nåteruppstått\r\nåterverkan\r\nåterverkning\r\nåtervinna\r\nåtervinner\r\nåtervinning\r\nåtervinningsstation\r\nåtervunnit\r\nåterväcker\r\nåterväckt\r\nåterväg\r\nåtervända\r\nåtervänder\r\nåtervändo\r\nåtervändsgata\r\nåterväxt\r\nåtfölja\r\nåtföljde\r\nåtföljer\r\nåtgång\r\nåtgången\r\nåtgärd\r\nåtgärda\r\nåtgärdar\r\nåthävor\r\nåtkomlig\r\nåtkomlighet\r\nåtkomst\r\nåtlyda\r\nåtlöje\r\nåtminstone\r\nåtnjuta\r\nåtnjuter\r\nåtog\r\nåtrå\r\nåtrår\r\nåtråvärd\r\nåtråvärda\r\nåtsittande\r\nåtskild\r\nåtskilja\r\nåtskillig\r\nåtskilliga\r\nåtskilligt\r\nåtskillnad\r\nåtskils\r\nåtsmitande\r\nåtstramning\r\nåtta\r\nåttio\r\nåttionde\r\nåttonde\r\nåttondel\r\nåverkan\r\näckel\r\näckla\r\näcklande\r\näcklar\r\näcklas\r\näcklig\r\näcklighet\r\nädel\r\nädelmetall\r\nädelmod\r\nädelsten\r\nädelstenar\r\nädla\r\nädlaste\r\nädling\r\näga\r\nägande\r\näganderätten\r\nägare\r\nägaren\r\nägde\r\näger\r\nägg\r\nägget\r\näggplanta\r\näggula\r\näggvita\r\näggviteämne\r\nägnar\r\nägnat\r\nägo\r\nägodel\r\nägt\r\näkta\r\näktar\r\näktenskap\r\näktenskapet\r\näktenskaplig\r\näktenskapsbrytaren\r\näktenskapsbryterskan\r\näktenskapsbunden\r\näktenskapscertifikat\r\näktenskapsförord\r\näktenskapsskillnad\r\näkthet\r\näkthetsbevis\r\näldre\r\näldrebidrag\r\näldreomsorg\r\näldst\r\näldste\r\nälg\r\nälgar\r\nälgspillning\r\nälling\r\nälska\r\nälskad\r\nälskade\r\nälskande\r\nälskandes\r\nälskar\r\nälskare\r\nälskarinna\r\nälskas\r\nälskat\r\nälsklig\r\nälskling\r\nälskog\r\nälskvärd\r\nälta\r\nältar\r\nälv\r\nälva\r\nälvarna\r\nälvens\r\nämabel\r\nämbar\r\nämbete\r\nämna\r\nämnad\r\nämnade\r\nämnar\r\nämnat\r\nämne\r\nämnen\r\nämneslärare\r\nämnesnamn\r\nämnesomsättning\r\nämnet\r\nän\r\nända\r\nändad\r\nändalykt\r\nändamål\r\nändamålsenlig\r\nändar\r\nändarna\r\nändas\r\nände\r\nändelse\r\nänder\r\nändlighetens\r\nändläge\r\nändlös\r\nändlöst\r\nändock\r\nändpunkt\r\nändra\r\nändrade\r\nändrar\r\nändras\r\nändrat\r\nändring\r\nändstation\r\nändtarm\r\nändå\r\näng\r\nängar\r\nängarna\r\nängarnas\r\nängder\r\nängel\r\nängelens\r\nängeln\r\nängelns\r\nängen\r\nänglabud\r\nänglahär\r\nänglakörer\r\nänglar\r\nänglarna\r\nänglarnas\r\nänglars\r\nänglaröster\r\nänglaskara\r\nänglaskaran\r\nänglaskaror\r\nänglasång\r\nänglasången\r\nänglasångens\r\nänglasånger\r\nänglavakt\r\nängsla\r\nängslad\r\nängslan\r\nängslande\r\nängslans\r\nängslas\r\nängslig\r\nängsliga\r\nängsligt\r\nänka\r\nänkeman\r\nänkestöt\r\nänkling\r\nänkor\r\nännu\r\näntligen\r\näntra\r\näntrar\r\näpple\r\när\r\nära\r\närad\r\näran\r\närans\r\närar\r\näras\r\närat\r\närbar\r\närebetygelse\r\näregirig\r\närekränka\r\närekränkning\r\närelysten\r\närende\r\närenden\r\närevördig\r\närftlig\r\närg\r\närlig\r\närliga\r\närlige\r\närlighet\r\närligt\r\närm\r\näro\r\närofull\r\närorik\r\närr\r\närren\r\närt\r\närtbalja\r\närtig\r\närtskida\r\närtsoppa\r\närva\r\närvdabalken\r\närvde\r\närver\r\näsch\r\näskande\r\näskar\r\nät\r\näta\r\nätbar\r\näter\r\nätit\r\nätlig\r\nätt\r\nätternas\r\nättestupa\r\nättika\r\nättling\r\nättlingarna\r\näven\r\nävenså\r\näventyr\r\näventyra\r\näventyrar\r\näventyrare\r\näventyrlig\r\näventyrs\r\nö\r\nöde\r\nödelades\r\nödelagda\r\nödelagts\r\nödelägg\r\nödelägga\r\nödeläggelse\r\nödeläggelsen\r\nödelägger\r\nödem\r\nödemark\r\nödemarken\r\nöden\r\nödes\r\nödesdiger\r\nödesdigra\r\nödesmättad\r\nödla\r\nödlan\r\nödlor\r\nödmjuk\r\nödmjuka\r\nödmjukar\r\nödmjukas\r\nödmjukhet\r\nödmjukheten\r\nödmjukhetens\r\nödmjukhets\r\nödmjukt\r\nödsla\r\nödslar\r\nödslig\r\nödsliga\r\nödslighetens\r\nödsligt\r\nöga\r\nögas\r\nögat\r\nögats\r\nögla\r\nögna\r\nögnar\r\nögon\r\nögonaböj\r\nögonblick\r\nögonblickets\r\nögonblickligen\r\nögonblicksbild\r\nögonbryn\r\nögonbrynen\r\nögonen\r\nögonens\r\nögonflod\r\nögonfrans\r\nögonkast\r\nögonkasta\r\nögonlock\r\nögons\r\nögonskugga\r\nögonsten\r\nögonvittne\r\nöka\r\nökad\r\nökade\r\nökande\r\nökar\r\nökas\r\nökat\r\nöken\r\nökenfärden\r\nökenland\r\nökensand\r\nökensanden\r\nökenskepp\r\nökensnår\r\nökentorr\r\nöknamn\r\nöknar\r\nöknarna\r\nöknarnas\r\nöknen\r\nöknens\r\nökning\r\nökänd\r\nöl\r\nÖland\r\nölet\r\nöm\r\nömhet\r\nömka\r\nömkan\r\nömkansvärd\r\nömkar\r\nömklig\r\nömma\r\nömmande\r\nömmar\r\nömmaste\r\nömsar\r\nömse\r\nömsesidig\r\nömsint\r\nömsom\r\nömt\r\nömtålig\r\nömtåliga\r\nömtåligt\r\nöns\r\nönska\r\nönskad\r\nönskan\r\nönskar\r\nönskat\r\nönskedröm\r\nönskelista\r\nönskemål\r\nönsketänkande\r\nönskning\r\nönskningar\r\nönskvärd\r\nöppen\r\nöppenhet\r\nöppenhjärtig\r\nöppenvård\r\nöppet\r\nöppethållande\r\nöppna\r\nöppnad\r\nöppnade\r\nöppnande\r\nöppnar\r\nöppnare\r\nöppnas\r\nöppnat\r\nöppnats\r\nöppning\r\nöppningar\r\nöppningen\r\nöppningsceremoni\r\nöra\r\nörat\r\nöre\r\nÖresund\r\nörfil\r\nörhänge\r\nöring\r\nörn\r\nörnar\r\nörnen\r\nörnens\r\nörnevingar\r\nörngott\r\nöron\r\nöronbedövande\r\nöronen\r\nöronmussla\r\nöronsmycke\r\nöronsus\r\nörsnibb\r\nörsprång\r\nört\r\nörtagård\r\nörtagårdens\r\nörter\r\nörterna\r\nörtesängar\r\nös\r\nösa\r\nöser\r\nösregn\r\nöst\r\nöster\r\nÖstergötland\r\nösterland\r\nösterländska\r\nöstern\r\nösterns\r\nösterut\r\nöstgränsen\r\nöstgöte\r\nöstlig\r\nöstra\r\nöststat\r\növa\r\növar\r\növat\r\növer\r\növerallt\r\növeranstränger\r\növeransträngning\r\növerantvarda\r\növerbalansen\r\növerbefolkad\r\növerbefälhavare\r\növerbelagd\r\növerbeskydd\r\növerbeskyddar\r\növerbevisar\r\növerblick\r\növerblickar\r\növerbliven\r\növerbord\r\növerbringar\r\növerbrygga\r\növerbryggar\r\növerbyggnad\r\növerdos\r\növerdrag\r\növerdragskläder\r\növerdrift\r\növerdriva\r\növerdriven\r\növerdriver\r\növerdåd\r\növerdådig\r\növerdådigt\r\növerens\r\növerenskommelse\r\növerensstämma\r\növerensstämmande\r\növerensstämmelse\r\növerensstämmer\r\növerexekutor\r\növerfall\r\növerfalla\r\növerfaller\r\növerfart\r\növerflytta\r\növerflyttning\r\növerflöd\r\növerflödande\r\növerflödat\r\növerflödet\r\növerflödig\r\növerflödiga\r\növerföll\r\növerför\r\növerföra\r\növerförbar\r\növerförd\r\növerförfriskad\r\növerföring\r\növerförmyndare\r\növerge\r\növerger\r\növerges\r\növergett\r\növergick\r\növergiv\r\növergiva\r\növergiven\r\növergivet\r\növergivit\r\növergivna\r\növerglänser\r\növergrepp\r\növergripande\r\növergå\r\növergående\r\növergång\r\növergångsbiljett\r\növergångsställe\r\növergångsålder\r\növergår\r\növergått\r\növerhand\r\növerhet\r\növerhetsperson\r\növerhopa\r\növerhopar\r\növerhuvud\r\növerhuvudtaget\r\növerhängande\r\növerilad\r\növerilat\r\növerinseende\r\növerkant\r\növerkast\r\növerklagar\r\növerklass\r\növerklassig\r\növerkomlig\r\növerkucku\r\növerkänslig\r\növerkänslighet\r\növerkörd\r\növerlag\r\növerlagd\r\növerleva\r\növerlevande\r\növerlever\r\növerliggare\r\növerlupen\r\növerlycklig\r\növerlåta\r\növerlåtelse\r\növerlåter\r\növerläge\r\növerlägga\r\növerlägger\r\növerläggning\r\növerlägsen\r\növerlägsenhet\r\növerlägsna\r\növerläkare\r\növerlämna\r\növerlämnade\r\növerlämnar\r\növerlät\r\növerlöpare\r\növermakt\r\növerman\r\növermannar\r\növermod\r\növermodig\r\növermorgon\r\növermått\r\növermäktig\r\növermäktige\r\növermätt\r\növernattar\r\növernaturlig\r\növernog\r\növerordnad\r\növerraska\r\növerraskad\r\növerraskande\r\növerraskar\r\növerraskning\r\növerresa\r\növerrock\r\növerrumpla\r\növerrumplad\r\növerrumplar\r\növerrumpling\r\növerräcka\r\növerröstar\r\növers\r\növerseende\r\növerser\r\növersikt\r\növersittare\r\növerskatta\r\növerskattar\r\növerskjutande\r\növerskott\r\növerskrida\r\növerskrider\r\növerskrift\r\növerskuggar\r\növerskuggat\r\növerskya\r\növerskygga\r\növerskyla\r\növerskådlig\r\növersköljer\r\növerslag\r\növerspelad\r\növerspänd\r\növerst\r\növersta\r\növerste\r\növersteprästens\r\növersteprästerna\r\növerstiga\r\növerstiger\r\növerstyr\r\növerstökad\r\növersvallande\r\növersvämmar\r\növersyn\r\növersynt\r\növersållad\r\növersätta\r\növersättare\r\növersättas\r\növersätter\r\növersättning\r\növersättningen\r\növerta\r\növertag\r\növertaga\r\növertaget\r\növertagit\r\növertala\r\növertalar\r\növertalig\r\növertalning\r\növertar\r\növertid\r\növertog\r\növerton\r\növertramp\r\növertrasserar\r\növerträda\r\növerträdelserna\r\növerträder\r\növerträffa\r\növerträffad\r\növerträffar\r\növertyga\r\növertygad\r\növertygande\r\növertygar\r\növertygelse\r\növertäcka\r\növerutnyttja\r\növervaka\r\növervakade\r\növervakar\r\növervakare\r\növervakning\r\növervann\r\növervara\r\növervarar\r\növervikt\r\növerviktig\r\növervinn\r\növervinna\r\növervinner\r\növervintrar\r\növervunnen\r\növervunnet\r\növervunnit\r\növervåld\r\növervåning\r\növervåningen\r\növerväg\r\növerväga\r\növervägande\r\növerväger\r\növerväldigad\r\növerväldigades\r\növerväldigande\r\növerväldigar\r\növerväldigas\r\növerväldigat\r\növervärdera\r\növeröser\r\növning\r\növningskörning\r\növningslärare\r\növningsämne\r\növre\r\növrig\r\növriga\r\növrigt\r\növärld"
  },
  {
    "path": "Quelea/dictionaries/us.words",
    "content": "﻿a\r\naachen\r\naalborg\r\naalii\r\naalost\r\naalto\r\naar\r\naardvark\r\naardwolf\r\naare\r\naarhus\r\naaron\r\naarp\r\naas\r\nab\r\naba\r\nabaca\r\nabacinate\r\nabactinal\r\nabacus\r\nabadan\r\nabaft\r\nabalone\r\nabamp\r\nabampere\r\nabandon\r\nabandoned\r\nabandonment\r\nabarticulation\r\nabase\r\nabasement\r\nabash\r\nabashed\r\nabashment\r\nabasia\r\nabasic\r\nabatable\r\nabate\r\nabatement\r\nabatic\r\nabatis\r\nabator\r\nabattis\r\nabattoir\r\nabaxial\r\nabaxially\r\nabaya\r\nabb\r\nabbacy\r\nabbatial\r\nabbe\r\nabbess\r\nabbey\r\nabbot\r\nabbreviate\r\nabbreviated\r\nabbreviation\r\nabbreviator\r\nabc\r\nabc's\r\nabcoulomb\r\nabcs\r\nabdias\r\nabdicable\r\nabdicate\r\nabdication\r\nabdicator\r\nabdomen\r\nabdominal\r\nabdominocentesis\r\nabdominoplasty\r\nabdominous\r\nabdominousness\r\nabdominovesical\r\nabduce\r\nabducens\r\nabducent\r\nabduct\r\nabducted\r\nabducting\r\nabduction\r\nabductor\r\nabecedarian\r\nabecedarius\r\nabel\r\nabelard\r\nabele\r\nabelia\r\nabelmoschus\r\nabelmosk\r\naberdare\r\naberdeen\r\naberdonian\r\naberrance\r\naberrancy\r\naberrant\r\naberrate\r\naberration\r\nabet\r\nabetalipoproteinemia\r\nabetment\r\nabettal\r\nabetter\r\nabettor\r\nabeyance\r\nabeyant\r\nabfarad\r\nabhenry\r\nabhor\r\nabhorrence\r\nabhorrent\r\nabhorrer\r\nabidance\r\nabide\r\nabiding\r\nabidjan\r\nabience\r\nabient\r\nabies\r\nabila\r\nabilene\r\nability\r\nabiogenesis\r\nabiogenetic\r\nabiogenist\r\nabiotrophy\r\nabject\r\nabjection\r\nabjectly\r\nabjuration\r\nabjure\r\nabjurer\r\nabkhas\r\nabkhasian\r\nabkhaz\r\nabkhazia\r\nabkhazian\r\nablactate\r\nablactation\r\nablate\r\nablated\r\nablation\r\nablative\r\nablaut\r\nablaze\r\nable\r\nable-bodied\r\nable-bodiedism\r\nable-bodism\r\nableism\r\nablepharia\r\nablism\r\nabloom\r\nabls\r\nablution\r\nablutionary\r\nably\r\nabm\r\nabnaki\r\nabnegate\r\nabnegation\r\nabnegator\r\nabnormal\r\nabnormalcy\r\nabnormality\r\nabo\r\naboard\r\nabocclusion\r\nabode\r\nabohm\r\nabolish\r\nabolishable\r\nabolishment\r\nabolition\r\nabolitionary\r\nabolitionism\r\nabolitionist\r\nabomasal\r\nabomasum\r\nabominable\r\nabominably\r\nabominate\r\nabomination\r\nabominator\r\nabor\r\naborad\r\naboral\r\naboriginal\r\naborigine\r\nabort\r\naborticide\r\nabortifacient\r\nabortion\r\nabortionist\r\nabortive\r\nabortus\r\naboulia\r\naboulic\r\nabound\r\nabounding\r\nabout\r\nabout-face\r\nabove\r\nabove-mentioned\r\nabove-named\r\naboveboard\r\naboveground\r\nabracadabra\r\nabrachia\r\nabradant\r\nabrade\r\nabrader\r\nabraham\r\nabramis\r\nabranchial\r\nabranchiate\r\nabranchious\r\nabrase\r\nabrasion\r\nabrasive\r\nabrasiveness\r\nabreact\r\nabreaction\r\nabreast\r\nabridge\r\nabridged\r\nabridgement\r\nabridger\r\nabridgment\r\nabroach\r\nabroad\r\nabrocoma\r\nabrocome\r\nabrogate\r\nabrogation\r\nabrogator\r\nabronia\r\nabrupt\r\nabruption\r\nabruptly\r\nabruptly-pinnate\r\nabruptness\r\nabruzzi\r\nabs\r\nabscess\r\nabscessed\r\nabscise\r\nabscissa\r\nabscission\r\nabscond\r\nabsconder\r\nabscondment\r\nabseil\r\nabseiler\r\nabsence\r\nabsent\r\nabsentee\r\nabsenteeism\r\nabsently\r\nabsentminded\r\nabsentmindedly\r\nabsentmindedness\r\nabsinth\r\nabsinthe\r\nabsolute\r\nabsolutely\r\nabsoluteness\r\nabsolution\r\nabsolutism\r\nabsolutist\r\nabsolutistic\r\nabsolve\r\nabsolved\r\nabsolver\r\nabsolvitory\r\nabsorb\r\nabsorbable\r\nabsorbate\r\nabsorbed\r\nabsorbefacient\r\nabsorbency\r\nabsorbent\r\nabsorber\r\nabsorbing\r\nabsorptance\r\nabsorption\r\nabsorptive\r\nabsorptivity\r\nabsquatulate\r\nabstain\r\nabstainer\r\nabstemious\r\nabstemiously\r\nabstemiousness\r\nabstention\r\nabstentious\r\nabstinence\r\nabstinent\r\nabstract\r\nabstracted\r\nabstractedly\r\nabstractedness\r\nabstracter\r\nabstraction\r\nabstractionism\r\nabstractionist\r\nabstractive\r\nabstractly\r\nabstractness\r\nabstractor\r\nabstruse\r\nabstruseness\r\nabstrusity\r\nabsurd\r\nabsurdity\r\nabsurdness\r\nabudefduf\r\nabuja\r\nabukir\r\nabulia\r\nabulic\r\nabundance\r\nabundant\r\nabundantly\r\nabuse\r\nabused\r\nabuser\r\nabusive\r\nabut\r\nabutilon\r\nabutment\r\nabutter\r\nabutting\r\nabuzz\r\nabvolt\r\nabwatt\r\naby\r\nabydos\r\nabye\r\nabyla\r\nabysm\r\nabysmal\r\nabysmally\r\nabyss\r\nabyssal\r\nabyssinia\r\nabyssinian\r\nac\r\nacacia\r\nacademe\r\nacademia\r\nacademic\r\nacademician\r\nacademicianship\r\nacademicism\r\nacademism\r\nacademy\r\nacadia\r\nacadian\r\nacalypha\r\nacantha\r\nacanthaceae\r\nacanthion\r\nacanthisitta\r\nacanthisittidae\r\nacanthocephala\r\nacanthocephalan\r\nacanthocereus\r\nacanthocybium\r\nacanthocyte\r\nacanthocytosis\r\nacanthoid\r\nacantholysis\r\nacanthoma\r\nacanthophis\r\nacanthopterygian\r\nacanthopterygii\r\nacanthoscelides\r\nacanthosis\r\nacanthotic\r\nacanthous\r\nacanthuridae\r\nacanthurus\r\nacanthus\r\nacapnia\r\nacapnial\r\nacapnic\r\nacapnotic\r\nacapulco\r\nacaracide\r\nacardia\r\nacariasis\r\nacaricide\r\nacarid\r\nacaridae\r\nacaridiasis\r\nacarina\r\nacarine\r\nacariosis\r\nacarophobia\r\nacarpellous\r\nacarpelous\r\nacarpous\r\nacarus\r\nacaryote\r\nacatalectic\r\nacataphasia\r\nacathexia\r\nacathexis\r\nacaudal\r\nacaudate\r\nacaulescent\r\nacc\r\naccede\r\naccelerando\r\naccelerate\r\naccelerated\r\naccelerating\r\nacceleration\r\naccelerative\r\naccelerator\r\nacceleratory\r\naccelerometer\r\naccent\r\naccented\r\naccenting\r\naccentor\r\naccentual\r\naccentuate\r\naccentuation\r\naccept\r\nacceptability\r\nacceptable\r\nacceptableness\r\nacceptably\r\nacceptance\r\nacceptant\r\nacceptation\r\naccepted\r\naccepting\r\nacceptive\r\nacceptor\r\naccess\r\naccessary\r\naccessibility\r\naccessible\r\naccession\r\naccessional\r\naccessorial\r\naccessory\r\naccho\r\nacciaccatura\r\naccidence\r\naccident\r\naccident-prone\r\naccidental\r\naccidentally\r\naccipiter\r\naccipitridae\r\naccipitriformes\r\naccipitrine\r\nacclaim\r\nacclamation\r\nacclimate\r\nacclimation\r\nacclimatisation\r\nacclimatise\r\nacclimatization\r\nacclimatize\r\nacclivitous\r\nacclivity\r\naccolade\r\naccommodate\r\naccommodating\r\naccommodatingly\r\naccommodation\r\naccommodational\r\naccommodative\r\naccommodator\r\naccompanied\r\naccompaniment\r\naccompanist\r\naccompany\r\naccompanying\r\naccompanyist\r\naccomplice\r\naccomplish\r\naccomplishable\r\naccomplished\r\naccomplishment\r\naccord\r\naccordance\r\naccordant\r\naccording\r\naccordingly\r\naccordion\r\naccordionist\r\naccost\r\naccouchement\r\naccoucheur\r\naccoucheuse\r\naccount\r\naccountability\r\naccountable\r\naccountancy\r\naccountant\r\naccountantship\r\naccounting\r\naccouter\r\naccoutered\r\naccouterment\r\naccoutre\r\naccoutred\r\naccoutrement\r\naccra\r\naccredit\r\naccreditation\r\naccredited\r\naccrete\r\naccretion\r\naccretionary\r\naccretive\r\naccroides\r\naccrual\r\naccrue\r\naccrued\r\naccruement\r\nacculturate\r\nacculturation\r\nacculturational\r\nacculturative\r\naccumbent\r\naccumulate\r\naccumulated\r\naccumulation\r\naccumulative\r\naccumulator\r\naccuracy\r\naccurate\r\naccurately\r\naccurse\r\naccursed\r\naccurst\r\naccusal\r\naccusation\r\naccusative\r\naccusatorial\r\naccusatory\r\naccuse\r\naccused\r\naccuser\r\naccusing\r\naccusive\r\naccustom\r\naccustomed\r\nace\r\nacebutolol\r\nacedia\r\nacellular\r\nacentric\r\nacephalia\r\nacephalism\r\nacephalous\r\nacephaly\r\nacer\r\naceraceae\r\nacerate\r\nacerb\r\nacerbate\r\nacerbic\r\nacerbity\r\nacerola\r\nacerose\r\nacervate\r\nacervulus\r\nacetabular\r\nacetabulum\r\nacetal\r\nacetaldehyde\r\nacetaldol\r\nacetamide\r\nacetaminophen\r\nacetanilid\r\nacetanilide\r\nacetate\r\nacetic\r\nacetify\r\nacetin\r\nacetone\r\nacetonemia\r\nacetonic\r\nacetonuria\r\nacetophenetidin\r\nacetose\r\nacetous\r\nacetphenetidin\r\nacetum\r\nacetyl\r\nacetylate\r\nacetylation\r\nacetylcholine\r\nacetylene\r\nacetylenic\r\nacetylic\r\nacetylise\r\nacetylize\r\nachaean\r\nachaian\r\nache\r\nachene\r\nachenial\r\nacheron\r\nacheronian\r\nacherontia\r\nacherontic\r\nacheson\r\nacheta\r\nachievability\r\nachievable\r\nachieve\r\nachievement\r\nachiever\r\nachillea\r\nachilles\r\nachimenes\r\naching\r\nachira\r\nachlamydeous\r\nachlorhydria\r\nachlorhydric\r\nachoerodus\r\nacholia\r\nachomawi\r\nachondrite\r\nachondritic\r\nachondroplasia\r\nachondroplastic\r\nachondroplasty\r\nachras\r\nachromasia\r\nachromatic\r\nachromaticity\r\nachromatin\r\nachromatinic\r\nachromatise\r\nachromatism\r\nachromatize\r\nachromatous\r\nachromia\r\nachromic\r\nachromous\r\nachromycin\r\nachy\r\nachylia\r\nacicula\r\nacicular\r\naciculate\r\nacid\r\nacid-fast\r\nacid-forming\r\nacid-loving\r\nacid-tasting\r\nacid-wash\r\nacidemia\r\nacidic\r\nacidification\r\nacidify\r\nacidimetric\r\nacidimetry\r\nacidity\r\nacidophil\r\nacidophile\r\nacidophilic\r\nacidophilous\r\nacidosis\r\nacidotic\r\nacidulate\r\nacidulent\r\nacidulous\r\nacidulousness\r\naciduric\r\nacinar\r\nacinic\r\nacinonyx\r\nacinos\r\nacinose\r\nacinous\r\nacinus\r\nacipenser\r\nacipenseridae\r\nack-ack\r\nackee\r\nacknowledge\r\nacknowledgeable\r\nacknowledged\r\nacknowledgement\r\nacknowledgment\r\naclant\r\nacme\r\nacne\r\nacned\r\nacneiform\r\nacnidosporidia\r\nacocanthera\r\nacokanthera\r\nacold\r\nacolyte\r\naconcagua\r\naconite\r\naconitum\r\nacoraceae\r\nacorea\r\nacores\r\nacorn\r\nacorn-shaped\r\nacorus\r\nacousma\r\nacoustic\r\nacoustical\r\nacoustician\r\nacousticophobia\r\nacoustics\r\nacquaint\r\nacquaintance\r\nacquaintanceship\r\nacquainted\r\nacquiesce\r\nacquiescence\r\nacquiescent\r\nacquirable\r\nacquire\r\nacquired\r\nacquirement\r\nacquirer\r\nacquiring\r\nacquisition\r\nacquisitive\r\nacquisitiveness\r\nacquit\r\nacquittal\r\nacquittance\r\nacquitted\r\nacragas\r\nacrasiomycetes\r\nacre\r\nacre-foot\r\nacreage\r\nacres\r\nacrid\r\nacridid\r\nacrididae\r\nacridity\r\nacridness\r\nacridotheres\r\nacrilan\r\nacrimonious\r\nacrimony\r\nacris\r\nacritical\r\nacroanaesthesia\r\nacroanesthesia\r\nacrobat\r\nacrobates\r\nacrobatic\r\nacrobatics\r\nacrocarp\r\nacrocarpous\r\nacrocarpus\r\nacrocentric\r\nacrocephalus\r\nacrocephaly\r\nacroclinium\r\nacrocomia\r\nacrocyanosis\r\nacrodont\r\nacrogen\r\nacrogenic\r\nacrogenous\r\nacrolein\r\nacromegalia\r\nacromegalic\r\nacromegaly\r\nacromicria\r\nacromikria\r\nacromion\r\nacromphalus\r\nacromyotonia\r\nacronym\r\nacronymic\r\nacronymous\r\nacropetal\r\nacrophobia\r\nacrophobic\r\nacrophony\r\nacropolis\r\nacropora\r\nacroscopic\r\nacrosome\r\nacross\r\nacross-the-board\r\nacrostic\r\nacrostichum\r\nacrylamide\r\nacrylate\r\nacrylic\r\nacrylonitrile\r\nacrylonitrile-butadiene-styrene\r\nact\r\nactable\r\nactaea\r\nacth\r\nactias\r\nactifed\r\nactin\r\nactinal\r\nactinaria\r\nacting\r\nactinia\r\nactinian\r\nactiniaria\r\nactiniarian\r\nactinic\r\nactinide\r\nactinidia\r\nactinidiaceae\r\nactiniopteris\r\nactinism\r\nactinium\r\nactinoid\r\nactinolite\r\nactinomeris\r\nactinometer\r\nactinometric\r\nactinometrical\r\nactinometry\r\nactinomorphic\r\nactinomorphous\r\nactinomyces\r\nactinomycetaceae\r\nactinomycetal\r\nactinomycetales\r\nactinomycete\r\nactinomycetous\r\nactinomycin\r\nactinomycosis\r\nactinomycotic\r\nactinomyxidia\r\nactinomyxidian\r\nactinon\r\nactinopod\r\nactinopoda\r\nactinotherapy\r\nactinozoa\r\nactinozoan\r\naction\r\nactionable\r\nactitis\r\nactium\r\nactivase\r\nactivate\r\nactivated\r\nactivating\r\nactivation\r\nactivator\r\nactive\r\nactively\r\nactiveness\r\nactivewear\r\nactivism\r\nactivist\r\nactivistic\r\nactivity\r\nactomyosin\r\nactor\r\nactress\r\nacts\r\nactual\r\nactualisation\r\nactualise\r\nactualised\r\nactuality\r\nactualization\r\nactualize\r\nactualized\r\nactually\r\nactuarial\r\nactuary\r\nactuate\r\nactuated\r\nactuating\r\nactuation\r\nactuator\r\nacuate\r\nacuity\r\nacular\r\naculea\r\naculeate\r\naculeated\r\naculeus\r\nacumen\r\nacuminate\r\nacupressure\r\nacupuncture\r\nacute\r\nacutely\r\nacuteness\r\nacyclic\r\nacyclovir\r\nacyl\r\nacylation\r\nacylglycerol\r\nad\r\nad-lib\r\nada\r\nada-scid\r\nadactylia\r\nadactylism\r\nadactylous\r\nadactyly\r\nadad\r\nadage\r\nadagio\r\nadalia\r\nadam\r\nadam-and-eve\r\nadamance\r\nadamant\r\nadamantine\r\nadams\r\nadana\r\nadansonia\r\nadapa\r\nadapid\r\nadapin\r\nadapt\r\nadaptability\r\nadaptable\r\nadaptation\r\nadaptational\r\nadaptative\r\nadapted\r\nadapter\r\nadaption\r\nadaptive\r\nadaptor\r\nadar\r\nadaxial\r\nadaxially\r\nadd\r\nadd-in\r\nadd-on\r\naddable\r\naddax\r\naddend\r\naddendum\r\nadder\r\naddible\r\naddict\r\naddicted\r\naddiction\r\naddictive\r\naddition\r\nadditional\r\nadditionally\r\nadditive\r\naddle\r\naddle-head\r\naddlebrained\r\naddled\r\naddlehead\r\naddlepated\r\naddress\r\naddressable\r\naddressed\r\naddressee\r\naddressograph\r\nadduce\r\nadducent\r\nadducer\r\nadducing\r\nadduct\r\nadducting\r\nadduction\r\nadductive\r\nadductor\r\nade\r\nadelaide\r\nadelges\r\nadelgid\r\nadelgidae\r\nadelie\r\naden\r\nadenanthera\r\nadenauer\r\nadenine\r\nadenitis\r\nadenium\r\nadenocarcinoma\r\nadenocarcinomatous\r\nadenohypophysis\r\nadenoid\r\nadenoidal\r\nadenoidectomy\r\nadenoma\r\nadenomegaly\r\nadenomyosarcoma\r\nadenomyosis\r\nadenopathy\r\nadenosine\r\nadenosis\r\nadenota\r\nadenovirus\r\nadept\r\nadeptness\r\nadequacy\r\nadequate\r\nadequately\r\nadequateness\r\nadermin\r\nadh\r\nadhd\r\nadhere\r\nadherence\r\nadherent\r\nadhesion\r\nadhesive\r\nadhesiveness\r\nadhocracy\r\nadiabatic\r\nadiantaceae\r\nadiantum\r\nadience\r\nadient\r\nadieu\r\nadige\r\nadios\r\nadipose\r\nadiposeness\r\nadiposis\r\nadiposity\r\nadirondacks\r\nadit\r\naditi\r\naditya\r\nadjacency\r\nadjacent\r\nadjectival\r\nadjective\r\nadjoin\r\nadjoining\r\nadjourn\r\nadjournment\r\nadjudge\r\nadjudicate\r\nadjudication\r\nadjudicative\r\nadjudicator\r\nadjudicatory\r\nadjunct\r\nadjunction\r\nadjunctive\r\nadjuration\r\nadjuratory\r\nadjure\r\nadjust\r\nadjustable\r\nadjusted\r\nadjuster\r\nadjustive\r\nadjustment\r\nadjustor\r\nadjutant\r\nadjuvant\r\nadlumia\r\nadman\r\nadmass\r\nadmeasure\r\nadminister\r\nadministrable\r\nadministrate\r\nadministration\r\nadministrative\r\nadministrator\r\nadministrivia\r\nadmirability\r\nadmirable\r\nadmirableness\r\nadmirably\r\nadmiral\r\nadmiralty\r\nadmiration\r\nadmire\r\nadmired\r\nadmirer\r\nadmiring\r\nadmissibility\r\nadmissible\r\nadmission\r\nadmissive\r\nadmit\r\nadmittable\r\nadmittance\r\nadmittedly\r\nadmittible\r\nadmix\r\nadmixture\r\nadmonish\r\nadmonished\r\nadmonisher\r\nadmonishing\r\nadmonishment\r\nadmonition\r\nadmonitory\r\nadnate\r\nadnexa\r\nadnexal\r\nadnoun\r\nado\r\nadobe\r\nadobo\r\nadolesce\r\nadolescence\r\nadolescent\r\nadonic\r\nadonis\r\nadopt\r\nadoptable\r\nadopted\r\nadoptee\r\nadopter\r\nadoption\r\nadoptive\r\nadorability\r\nadorable\r\nadorableness\r\nadorably\r\nadoration\r\nadore\r\nadored\r\nadorer\r\nadoring\r\nadorn\r\nadorned\r\nadornment\r\nadp\r\nadpressed\r\nadps\r\nadrenal\r\nadrenalectomy\r\nadrenalin\r\nadrenaline\r\nadrenarche\r\nadrenergic\r\nadrenocortical\r\nadrenocorticotrophic\r\nadrenocorticotrophin\r\nadrenocorticotropic\r\nadrenocorticotropin\r\nadrenosterone\r\nadrian\r\nadrianople\r\nadrianopolis\r\nadriatic\r\nadrift\r\nadroit\r\nadroitly\r\nadroitness\r\nadscititious\r\nadscript\r\nadscripted\r\nadsorb\r\nadsorbable\r\nadsorbate\r\nadsorbed\r\nadsorbent\r\nadsorption\r\nadsorptive\r\nadulate\r\nadulation\r\nadulator\r\nadulatory\r\nadult\r\nadulterant\r\nadulterate\r\nadulterated\r\nadulterating\r\nadulteration\r\nadulterator\r\nadulterer\r\nadulteress\r\nadulterine\r\nadulterous\r\nadultery\r\nadulthood\r\nadumbrate\r\nadumbration\r\nadumbrative\r\nadust\r\nadvance\r\nadvanced\r\nadvancement\r\nadvancer\r\nadvancing\r\nadvantage\r\nadvantaged\r\nadvantageous\r\nadvantageously\r\nadvantageousness\r\nadvect\r\nadvection\r\nadvective\r\nadvent\r\nadventism\r\nadventist\r\nadventitia\r\nadventitial\r\nadventitious\r\nadventive\r\nadventure\r\nadventurer\r\nadventuresome\r\nadventuress\r\nadventurism\r\nadventuristic\r\nadventurous\r\nadventurousness\r\nadverb\r\nadverbial\r\nadversary\r\nadversative\r\nadverse\r\nadversity\r\nadvert\r\nadvertence\r\nadvertency\r\nadvertent\r\nadvertently\r\nadvertise\r\nadvertised\r\nadvertisement\r\nadvertiser\r\nadvertising\r\nadvertize\r\nadvertizement\r\nadvertizer\r\nadvertizing\r\nadvertorial\r\nadvice\r\nadvil\r\nadvisability\r\nadvisable\r\nadvise\r\nadvised\r\nadvisedly\r\nadvisee\r\nadvisement\r\nadviser\r\nadvisor\r\nadvisory\r\nadvocacy\r\nadvocate\r\nadvocator\r\nadvowson\r\nadynamia\r\nadynamic\r\nadz\r\nadze\r\nadzhar\r\nadzharia\r\naec\r\naecial\r\naeciospore\r\naecium\r\naedes\r\naegates\r\naegean\r\naegiceras\r\naegilops\r\naegina\r\naegir\r\naegis\r\naegisthus\r\naegospotami\r\naegospotamos\r\naegypiidae\r\naegypius\r\naegyptopithecus\r\naelfred\r\naeneas\r\naeneid\r\naengus\r\naeolia\r\naeolian\r\naeolic\r\naeolis\r\naeolotropic\r\naeolus\r\naeon\r\naeonian\r\naeonium\r\naepyceros\r\naepyornidae\r\naepyorniformes\r\naepyornis\r\naerate\r\naerated\r\naeration\r\naerator\r\naerial\r\naerialist\r\naerially\r\naerides\r\naerie\r\naeriferous\r\naeriform\r\naerify\r\naerobacter\r\naerobatics\r\naerobe\r\naerobic\r\naerobics\r\naerobiosis\r\naerobiotic\r\naerodontalgia\r\naerodrome\r\naerodynamic\r\naerodynamics\r\naeroembolism\r\naerofoil\r\naerogenerator\r\naerogram\r\naerogramme\r\naerolite\r\naerolitic\r\naerological\r\naerology\r\naeromechanic\r\naeromechanics\r\naeromedical\r\naeromedicine\r\naeronaut\r\naeronautic\r\naeronautical\r\naeronautics\r\naerophagia\r\naerophilatelic\r\naerophilately\r\naerophile\r\naerophilic\r\naerophilous\r\naerophyte\r\naeroplane\r\naerosol\r\naerosolise\r\naerosolised\r\naerosolize\r\naerosolized\r\naerospace\r\naertex\r\naery\r\naeschylean\r\naeschylus\r\naeschynanthus\r\naesculapian\r\naesculapius\r\naesculus\r\naesir\r\naesop\r\naesthesia\r\naesthesis\r\naesthete\r\naesthetic\r\naesthetical\r\naesthetically\r\naesthetician\r\naesthetics\r\naestival\r\naestivate\r\naestivation\r\naether\r\naethionema\r\naethusa\r\naetiologic\r\naetiological\r\naetiologist\r\naetiology\r\naetobatus\r\nafeard\r\nafeared\r\nafebrile\r\naffability\r\naffable\r\naffableness\r\naffably\r\naffair\r\naffaire\r\naffairs\r\naffect\r\naffectation\r\naffected\r\naffectedness\r\naffecting\r\naffectingly\r\naffection\r\naffectional\r\naffectionate\r\naffectionately\r\naffectionateness\r\naffectioned\r\naffective\r\naffenpinscher\r\nafferent\r\naffiance\r\naffianced\r\naffiant\r\naffidavit\r\naffiliate\r\naffiliated\r\naffiliation\r\naffinal\r\naffine\r\naffined\r\naffinity\r\naffirm\r\naffirmable\r\naffirmation\r\naffirmative\r\naffirmativeness\r\naffirmatory\r\naffirmed\r\naffirmer\r\naffix\r\naffixal\r\naffixation\r\naffixed\r\naffixial\r\nafflatus\r\nafflict\r\nafflicted\r\naffliction\r\nafflictive\r\naffluence\r\naffluent\r\nafford\r\naffordable\r\nafforest\r\nafforestation\r\naffranchise\r\naffray\r\naffricate\r\naffrication\r\naffricative\r\naffright\r\naffront\r\naffusion\r\nafghan\r\nafghani\r\nafghanistan\r\nafghanistani\r\nafibrinogenemia\r\naficionado\r\nafield\r\nafire\r\nafisr\r\nafl\r\nafl-cio\r\naflame\r\naflare\r\naflatoxin\r\naflaxen\r\naflicker\r\nafloat\r\naflutter\r\nafoot\r\naforementioned\r\naforesaid\r\naforethought\r\nafoul\r\nafp\r\nafraid\r\naframomum\r\nafrasian\r\nafresh\r\nafrica\r\nafrican\r\nafrican-american\r\nafricander\r\nafrikaans\r\nafrikander\r\nafrikaner\r\nafrl\r\nafro\r\nafro-american\r\nafro-asian\r\nafro-asiatic\r\nafro-wig\r\nafroasiatic\r\nafrocarpus\r\nafropavo\r\nafspc\r\naft\r\nafter\r\nafter-hours\r\nafter-school\r\nafter-shave\r\nafterbirth\r\nafterburner\r\naftercare\r\nafterdamp\r\nafterdeck\r\naftereffect\r\nafterglow\r\nafterimage\r\nafterlife\r\naftermath\r\naftermost\r\nafternoon\r\nafterpains\r\nafterpiece\r\nafters\r\naftersensation\r\naftershaft\r\naftershafted\r\naftershock\r\naftertaste\r\nafterthought\r\nafterward\r\nafterwards\r\nafterworld\r\nag\r\naga\r\nagain\r\nagal\r\nagalactia\r\nagalactosis\r\nagalinis\r\nagama\r\nagamemnon\r\nagamete\r\nagamic\r\nagamid\r\nagamidae\r\nagammaglobulinemia\r\nagamogenesis\r\nagamogenetic\r\nagamous\r\nagapanthus\r\nagape\r\nagapornis\r\nagar\r\nagar-agar\r\nagaric\r\nagaricaceae\r\nagaricales\r\nagaricus\r\nagassiz\r\nagastache\r\nagate\r\nagateware\r\nagathis\r\nagavaceae\r\nagave\r\nagaze\r\nagdestis\r\nagdistis\r\nage\r\nage-old\r\nage-related\r\naged\r\nagedness\r\nagee\r\nageing\r\nageism\r\nagelaius\r\nageless\r\nagelessness\r\nagelong\r\nagency\r\nagenda\r\nagendum\r\nagene\r\nagenesia\r\nagenesis\r\nagenise\r\nagenize\r\nagent\r\nagent-in-place\r\nagential\r\nagerasia\r\nageratina\r\nageratum\r\naggeus\r\nagglomerate\r\nagglomerated\r\nagglomeration\r\nagglomerative\r\nagglomerator\r\nagglutinate\r\nagglutination\r\nagglutinative\r\nagglutinin\r\nagglutinogen\r\naggrade\r\naggrandise\r\naggrandisement\r\naggrandize\r\naggrandizement\r\naggravate\r\naggravated\r\naggravating\r\naggravation\r\naggravator\r\naggregate\r\naggregated\r\naggregation\r\naggregative\r\naggregator\r\naggress\r\naggression\r\naggressive\r\naggressively\r\naggressiveness\r\naggressor\r\naggrieve\r\naggro\r\naggroup\r\nagha\r\naghan\r\naghast\r\nagile\r\nagilely\r\nagility\r\nagincourt\r\naging\r\nagio\r\nagiotage\r\nagism\r\nagitate\r\nagitated\r\nagitating\r\nagitation\r\nagitative\r\nagitator\r\nagitprop\r\nagkistrodon\r\naglaia\r\naglaomorpha\r\naglaonema\r\nagleam\r\naglet\r\naglitter\r\naglow\r\nagnail\r\nagnate\r\nagnatha\r\nagnathan\r\nagnatic\r\nagnation\r\nagni\r\nagnise\r\nagnize\r\nagnomen\r\nagnosia\r\nagnostic\r\nagnostical\r\nagnosticism\r\nago\r\nagog\r\nagon\r\nagonadal\r\nagonal\r\nagone\r\nagonidae\r\nagonise\r\nagonised\r\nagonising\r\nagonist\r\nagonistic\r\nagonistical\r\nagonize\r\nagonized\r\nagonizing\r\nagonizingly\r\nagonus\r\nagony\r\nagora\r\nagoraphobia\r\nagoraphobic\r\nagouti\r\nagra\r\nagranulocytic\r\nagranulocytosis\r\nagranulosis\r\nagrapha\r\nagraphia\r\nagraphic\r\nagrarian\r\nagree\r\nagreeability\r\nagreeable\r\nagreeableness\r\nagreeably\r\nagreed\r\nagreement\r\nagrestic\r\nagribusiness\r\nagricola\r\nagricultural\r\nagriculturalist\r\nagriculture\r\nagriculturist\r\nagrigento\r\nagrimonia\r\nagrimony\r\nagriocharis\r\nagrippa\r\nagrippina\r\nagrobacterium\r\nagrobiologic\r\nagrobiological\r\nagrobiology\r\nagrologic\r\nagrological\r\nagrology\r\nagromania\r\nagronomic\r\nagronomical\r\nagronomist\r\nagronomy\r\nagropyron\r\nagrostemma\r\nagrostis\r\naground\r\nagrypnia\r\nagrypnotic\r\nagua\r\naguacate\r\nague\r\nagueweed\r\naguish\r\nahab\r\nahead\r\nahimsa\r\nahistorical\r\nahorse\r\nahorseback\r\nahpcrc\r\nahriman\r\nahuehuete\r\nahura\r\nahvenanmaa\r\nai\r\naiai\r\naid\r\naide\r\naide-de-camp\r\naide-memoire\r\naided\r\naides\r\naidoneus\r\naids\r\naigina\r\naiglet\r\naigret\r\naigrette\r\naiguilette\r\naiken\r\naikido\r\nail\r\nailanthus\r\naileron\r\nailey\r\nailing\r\nailment\r\nailurophobia\r\nailuropoda\r\nailuropodidae\r\nailurus\r\naim\r\naimless\r\naimlessly\r\naimlessness\r\nain\r\naioli\r\nair\r\nair-breathing\r\nair-condition\r\nair-conditioned\r\nair-cool\r\nair-cooled\r\nair-dried\r\nair-drop\r\nair-dry\r\nair-filled\r\nair-freight\r\nair-intake\r\nair-ship\r\nair-slake\r\nair-sleeve\r\nair-tight\r\nair-to-air\r\nair-to-ground\r\nair-to-surface\r\nairborne\r\nairbrake\r\nairbrush\r\nairburst\r\nairbus\r\naircraft\r\naircraftman\r\naircraftsman\r\naircrew\r\naircrewman\r\nairdock\r\nairdrome\r\nairdrop\r\naire\r\naired\r\nairedale\r\nairfare\r\nairfield\r\nairflow\r\nairfoil\r\nairforce\r\nairframe\r\nairfreight\r\nairgun\r\nairhead\r\nairheaded\r\nairily\r\nairiness\r\nairing\r\nairless\r\nairlift\r\nairlike\r\nairline\r\nairliner\r\nairlock\r\nairmail\r\nairmailer\r\nairman\r\nairmanship\r\nairplane\r\nairport\r\nairpost\r\nairs\r\nairscrew\r\nairship\r\nairsick\r\nairsickness\r\nairspace\r\nairspeed\r\nairstream\r\nairstrip\r\nairt\r\nairtight\r\nairwave\r\nairway\r\nairwoman\r\nairworthiness\r\nairworthy\r\nairy\r\naisle\r\naitchbone\r\naix\r\naix-la-chapelle\r\naizoaceae\r\najaia\r\najar\r\najax\r\najuga\r\nak\r\nakaba\r\nakan\r\nakaryocyte\r\nakaryote\r\nakee\r\naken\r\nakeridae\r\nakha\r\nakhbari\r\nakhenaten\r\nakhenaton\r\nakimbo\r\nakin\r\nakinesia\r\nakinesis\r\nakka\r\nakkadian\r\nakko\r\nakmola\r\nakron\r\naku\r\nakvavit\r\nakwa'ala\r\nal\r\nal-asifa\r\nal-fatah\r\nal-hakim\r\nal-haytham\r\nal-hudaydah\r\nal-iraq\r\nal-jihad\r\nal-ma'unah\r\nal-magrib\r\nal-muhajiroun\r\nal-mukalla\r\nal-qa'ida\r\nal-qaeda\r\nal-qaida\r\nal-qur'an\r\nal-tawhid\r\nal-ummah\r\nala\r\nalabama\r\nalabaman\r\nalabamian\r\nalabaster\r\nalabastrine\r\nalacritous\r\nalacrity\r\naladdin\r\nalalia\r\nalamo\r\nalanine\r\nalar\r\nalaric\r\nalarm\r\nalarmed\r\nalarming\r\nalarmism\r\nalarmist\r\nalarum\r\nalary\r\nalas\r\nalaska\r\nalaskan\r\nalastrim\r\nalate\r\nalated\r\nalauda\r\nalaudidae\r\nalb\r\nalbacore\r\nalbania\r\nalbanian\r\nalbany\r\nalbatrellus\r\nalbatross\r\nalbedo\r\nalbee\r\nalbers\r\nalbert\r\nalberta\r\nalberti\r\nalbescent\r\nalbigenses\r\nalbigensian\r\nalbigensianism\r\nalbinal\r\nalbinic\r\nalbinism\r\nalbinistic\r\nalbino\r\nalbinotic\r\nalbion\r\nalbite\r\nalbitic\r\nalbizia\r\nalbizzia\r\nalborg\r\nalbuca\r\nalbuginaceae\r\nalbuginea\r\nalbugo\r\nalbula\r\nalbulidae\r\nalbum\r\nalbumen\r\nalbumin\r\nalbuminoid\r\nalbuminous\r\nalbuminuria\r\nalbuminuric\r\nalbuquerque\r\nalbuterol\r\nalca\r\nalcaeus\r\nalcahest\r\nalcaic\r\nalcalde\r\nalcalescent\r\nalcapton\r\nalcaptonuria\r\nalcazar\r\nalcea\r\nalcedinidae\r\nalcedo\r\nalcelaphus\r\nalces\r\nalchemic\r\nalchemical\r\nalchemise\r\nalchemist\r\nalchemistic\r\nalchemistical\r\nalchemize\r\nalchemy\r\nalcibiades\r\nalcidae\r\nalcides\r\nalcohol\r\nalcohol-dependent\r\nalcohol-soluble\r\nalcoholic\r\nalcoholise\r\nalcoholism\r\nalcoholize\r\nalcott\r\nalcove\r\nalcyonacea\r\nalcyonaria\r\nalcyone\r\naldactone\r\naldebaran\r\naldehyde\r\naldehyde-alcohol\r\naldehydic\r\nalder\r\nalderfly\r\nalderman\r\naldermanic\r\naldermanly\r\naldohexose\r\naldol\r\naldomet\r\naldose\r\naldosterone\r\naldosteronism\r\naldrovanda\r\nale\r\naleatory\r\nalecost\r\nalectis\r\nalecto\r\nalectoria\r\nalectoris\r\nalectura\r\nalehoof\r\nalehouse\r\nalembic\r\nalendronate\r\nalep\r\naleph\r\naleph-nought\r\naleph-null\r\naleph-zero\r\nalepisaurus\r\naleppo\r\nalert\r\nalerting\r\nalertness\r\naletris\r\naleurites\r\naleurone\r\naleuronic\r\naleut\r\naleutian\r\naleutians\r\naleve\r\nalewife\r\nalexander\r\nalexanders\r\nalexandria\r\nalexandrian\r\nalexandrine\r\nalexandrite\r\nalexia\r\nalexic\r\naleyrodes\r\naleyrodidae\r\nalfalfa\r\nalfilaria\r\nalfileria\r\nalfred\r\nalfresco\r\nalga\r\nalgae\r\nalgal\r\nalgarobilla\r\nalgarroba\r\nalgarrobilla\r\nalgebra\r\nalgebraic\r\nalgebraical\r\nalgebraist\r\nalger\r\nalgeria\r\nalgerian\r\nalgerie\r\nalgeripithecus\r\nalgid\r\nalgiers\r\nalgin\r\nalgoid\r\nalgol\r\nalgolagnia\r\nalgolagnic\r\nalgology\r\nalgometer\r\nalgometric\r\nalgometrical\r\nalgometry\r\nalgonkian\r\nalgonkin\r\nalgonquian\r\nalgonquin\r\nalgophilia\r\nalgophobia\r\nalgophobic\r\nalgorism\r\nalgorithm\r\nalgorithmic\r\nalgren\r\nalhacen\r\nalhambra\r\nalhazen\r\nali\r\nalias\r\nalibi\r\nalidad\r\nalidade\r\nalien\r\nalienable\r\nalienage\r\nalienate\r\nalienated\r\nalienating\r\nalienation\r\nalienator\r\nalienee\r\nalienism\r\nalienist\r\nalienor\r\naliform\r\nalight\r\nalign\r\naligned\r\naligning\r\nalignment\r\nalike\r\nalikeness\r\naliment\r\nalimental\r\nalimentary\r\nalimentation\r\nalimentative\r\nalimony\r\naline\r\nalinement\r\naliphatic\r\naliquant\r\naliquot\r\nalir\r\nalisma\r\nalismales\r\nalismataceae\r\nalismatidae\r\naliterate\r\nalive\r\naliveness\r\naliyah\r\nalizarin\r\nalizarine\r\nalka-seltzer\r\nalkahest\r\nalkahestic\r\nalkalemia\r\nalkalescent\r\nalkali\r\nalkalic\r\nalkalify\r\nalkalimetry\r\nalkaline\r\nalkaline-loving\r\nalkalinise\r\nalkalinity\r\nalkalinize\r\nalkalinuria\r\nalkalise\r\nalkaliser\r\nalkalize\r\nalkalizer\r\nalkaloid\r\nalkaloidal\r\nalkalosis\r\nalkalotic\r\nalkaluria\r\nalkane\r\nalkanet\r\nalkapton\r\nalkaptonuria\r\nalkene\r\nalkeran\r\nalky\r\nalkyd\r\nalkyl\r\nalkylbenzene\r\nalkylbenzenesulfonate\r\nalkylic\r\nalkyne\r\nall\r\nall-around\r\nall-devouring\r\nall-embracing\r\nall-encompassing\r\nall-fired\r\nall-important\r\nall-inclusive\r\nall-knowing\r\nall-mains\r\nall-metal\r\nall-night\r\nall-or-none\r\nall-or-nothing\r\nall-out\r\nall-powerful\r\nall-purpose\r\nall-round\r\nall-rounder\r\nall-time\r\nall-victorious\r\nall-weather\r\nallah\r\nallamanda\r\nallantoic\r\nallantoid\r\nallantois\r\nallargando\r\nallay\r\nallayer\r\nallegation\r\nallege\r\nalleged\r\nallegement\r\nalleghenies\r\nallegheny\r\nallegiance\r\nallegiant\r\nallegoric\r\nallegorical\r\nallegorise\r\nallegoriser\r\nallegorize\r\nallegorizer\r\nallegory\r\nallegretto\r\nallegro\r\nallele\r\nallelic\r\nallelomorph\r\nallelomorphic\r\nallemande\r\nallen\r\nallentown\r\nallergen\r\nallergenic\r\nallergic\r\nallergist\r\nallergology\r\nallergy\r\nalleviant\r\nalleviate\r\nalleviated\r\nalleviation\r\nalleviative\r\nalleviator\r\nalleviatory\r\nalley\r\nalleyway\r\nallgood\r\nallhallows\r\nallhallowtide\r\nalliaceae\r\nalliaceous\r\nalliance\r\nalliaria\r\nallice\r\nallied\r\nallies\r\nalligator\r\nalligator-like\r\nalligatored\r\nalligatorfish\r\nalligatoridae\r\nallionia\r\nallioniaceae\r\nallis\r\nalliterate\r\nalliteration\r\nalliterative\r\nalliterator\r\nallium\r\nallmouth\r\nalloantibody\r\nallocable\r\nallocatable\r\nallocate\r\nallocation\r\nallocator\r\nallochronic\r\nallochthonous\r\nallocution\r\nallogamous\r\nallogamy\r\nallogeneic\r\nallograft\r\nallograph\r\nallographic\r\nallomerism\r\nallomerous\r\nallometric\r\nallometry\r\nallomorph\r\nallomorphic\r\nallopathic\r\nallopathy\r\nallopatric\r\nallopatry\r\nallophone\r\nallophonic\r\nallopurinol\r\nallosaur\r\nallosaurus\r\nallot\r\nallotment\r\nallotrope\r\nallotropic\r\nallotropical\r\nallotropism\r\nallotropy\r\nallotted\r\nallover\r\nallow\r\nallowable\r\nallowably\r\nallowance\r\nalloy\r\nalloyed\r\nallspice\r\nallude\r\nallure\r\nallurement\r\nalluring\r\nallusion\r\nallusive\r\nallusiveness\r\nalluvial\r\nalluviation\r\nalluvion\r\nalluvium\r\nally\r\nallyl\r\nallylic\r\nalma-ata\r\nalmanac\r\nalmandine\r\nalmandite\r\nalmaty\r\nalmighty\r\nalmond\r\nalmond-eyed\r\nalmond-scented\r\nalmond-shaped\r\nalmoner\r\nalmoravid\r\nalmost\r\nalms\r\nalms-giving\r\nalmsgiver\r\nalmsgiving\r\nalnico\r\nalnus\r\nalocasia\r\naloe\r\naloeaceae\r\naloes\r\naloha\r\nalone\r\naloneness\r\nalong\r\nalongside\r\nalonso\r\naloof\r\naloofness\r\nalopecia\r\nalopecic\r\nalopecurus\r\nalopex\r\nalopiidae\r\nalopius\r\nalosa\r\nalost\r\nalouatta\r\naloud\r\nalp\r\nalpaca\r\nalpena\r\nalpenstock\r\nalpestrine\r\nalpha\r\nalpha-adrenoceptor\r\nalpha-blocker\r\nalpha-interferon\r\nalpha-lipoprotein\r\nalpha-naphthol\r\nalpha-tocopheral\r\nalphabet\r\nalphabetic\r\nalphabetical\r\nalphabetisation\r\nalphabetise\r\nalphabetised\r\nalphabetiser\r\nalphabetization\r\nalphabetize\r\nalphabetized\r\nalphabetizer\r\nalphameric\r\nalphamerical\r\nalphanumeric\r\nalphanumerical\r\nalphanumerics\r\nalphavirus\r\nalpine\r\nalpinia\r\nalpinism\r\nalpinist\r\nalprazolam\r\nalps\r\nalready\r\nalright\r\nals\r\nalsace\r\nalsatia\r\nalsatian\r\nalso\r\nalso-ran\r\nalsobia\r\nalsophila\r\nalstonia\r\nalstroemeria\r\nalstroemeriaceae\r\nalt\r\naltaic\r\naltair\r\naltar\r\naltarpiece\r\naltazimuth\r\nalter\r\nalterability\r\nalterable\r\nalteration\r\nalterative\r\naltercate\r\naltercation\r\naltered\r\naltering\r\nalternanthera\r\nalternate\r\nalternating\r\nalternation\r\nalternative\r\nalternatively\r\nalternator\r\nalthaea\r\nalthea\r\naltimeter\r\naltissimo\r\naltitude\r\naltitudinal\r\naltitudinous\r\nalto\r\naltocumulus\r\naltogether\r\naltoist\r\naltoona\r\naltostratus\r\naltricial\r\naltruism\r\naltruist\r\naltruistic\r\naltruistically\r\nalula\r\nalular\r\nalum\r\nalumbloom\r\nalumina\r\naluminate\r\naluminiferous\r\naluminise\r\naluminium\r\naluminize\r\naluminous\r\naluminum\r\nalumna\r\nalumnus\r\nalumroot\r\nalundum\r\nalupent\r\nalveolar\r\nalveolate\r\nalveolitis\r\nalveolus\r\nalvine\r\nalways\r\nalyssum\r\nalytes\r\nalzheimer's\r\nalzheimers\r\nam\r\namadavat\r\namaethon\r\namah\r\namalgam\r\namalgamate\r\namalgamated\r\namalgamation\r\namalgamative\r\namalgamator\r\namanita\r\namanuensis\r\namaranth\r\namaranthaceae\r\namaranthine\r\namaranthus\r\namarelle\r\namaretto\r\namarillo\r\namaryllidaceae\r\namaryllis\r\namass\r\namassed\r\namastia\r\namaterasu\r\namateur\r\namateurish\r\namateurishly\r\namateurishness\r\namateurism\r\namati\r\namative\r\namativeness\r\namatory\r\namatungulu\r\namauropelta\r\namaurosis\r\namaurotic\r\namaze\r\namazed\r\namazement\r\namazing\r\namazingly\r\namazon\r\namazona\r\nambage\r\nambages\r\nambagious\r\nambassador\r\nambassadorial\r\nambassadorship\r\nambassadress\r\namber\r\namber-green\r\namberbell\r\namberboa\r\namberfish\r\nambergris\r\namberjack\r\nambiance\r\nambidexterity\r\nambidextrous\r\nambidextrousness\r\nambience\r\nambient\r\nambiguity\r\nambiguous\r\nambiguously\r\nambit\r\nambition\r\nambitionless\r\nambitious\r\nambitiously\r\nambitiousness\r\nambivalence\r\nambivalency\r\nambivalent\r\nambiversion\r\nambiversive\r\namble\r\nambler\r\nambloplites\r\namblygonite\r\namblyopia\r\namblyopic\r\namblyrhynchus\r\nambo\r\namboyna\r\nambrose\r\nambrosia\r\nambrosiaceae\r\nambrosial\r\nambrosian\r\nambulacral\r\nambulacrum\r\nambulance\r\nambulant\r\nambulate\r\nambulation\r\nambulatory\r\nambuscade\r\nambush\r\nambusher\r\nambystoma\r\nambystomatidae\r\nambystomid\r\nameba\r\nameba-like\r\nameban\r\namebiasis\r\namebic\r\namebiosis\r\nameboid\r\namebous\r\nameer\r\nameiuridae\r\nameiurus\r\namelanchier\r\namelia\r\nameliorate\r\nameliorating\r\namelioration\r\nameliorative\r\namelioratory\r\nameloblast\r\namelogenesis\r\namen\r\namen-ra\r\namenability\r\namenable\r\namenableness\r\namend\r\namendable\r\namendatory\r\namended\r\namendment\r\namends\r\namenia\r\namenities\r\namenity\r\namenorrhea\r\namenorrheal\r\namenorrheic\r\namenorrhoea\r\namenorrhoeal\r\namenorrhoeic\r\nament\r\namentaceous\r\namentia\r\namentiferae\r\namentiferous\r\namerce\r\namercement\r\namerciable\r\namerica\r\namerican\r\namericana\r\namericanisation\r\namericanise\r\namericanism\r\namericanization\r\namericanize\r\namericium\r\namerind\r\namerindian\r\namerindic\r\nametabolic\r\nametabolous\r\namethopterin\r\namethyst\r\namethystine\r\nametria\r\nametropia\r\nametropic\r\namex\r\namhara\r\namharic\r\namia\r\namiability\r\namiable\r\namiableness\r\namiably\r\namianthum\r\namicability\r\namicable\r\namicableness\r\namide\r\namidopyrine\r\namidship\r\namidships\r\namigo\r\namiidae\r\namine\r\naminic\r\namino\r\naminoaciduria\r\naminoalkane\r\naminobenzine\r\naminomethane\r\naminopherase\r\naminophylline\r\naminoplast\r\naminopyrine\r\naminotransferase\r\namiodarone\r\namir\r\namish\r\namiss\r\namitosis\r\namitotic\r\namitriptyline\r\namity\r\namman\r\nammeter\r\nammine\r\nammino\r\nammo\r\nammobium\r\nammodytes\r\nammodytidae\r\nammonia\r\nammoniac\r\nammoniacal\r\nammoniate\r\nammoniated\r\nammonification\r\nammonify\r\nammonite\r\nammonitic\r\nammonium\r\nammoniuria\r\nammonoid\r\nammotragus\r\nammunition\r\namnesia\r\namnesiac\r\namnesic\r\namnestic\r\namnesty\r\namnic\r\namnio\r\namniocentesis\r\namnion\r\namnionic\r\namnios\r\namniota\r\namniote\r\namniotic\r\namobarbital\r\namoeba\r\namoeba-like\r\namoeban\r\namoebiasis\r\namoebic\r\namoebida\r\namoebina\r\namoebiosis\r\namoeboid\r\namoebous\r\namok\r\namon\r\namon-ra\r\namontillado\r\namor\r\namora\r\namoral\r\namoralism\r\namoralist\r\namorality\r\namorally\r\namorist\r\namoristic\r\namorous\r\namorously\r\namorousness\r\namorpha\r\namorphophallus\r\namorphous\r\namort\r\namortisation\r\namortise\r\namortization\r\namortize\r\namos\r\namount\r\namour\r\namoxicillin\r\namoxil\r\namoy\r\namp\r\namperage\r\nampere\r\nampere-hour\r\nampere-minute\r\nampere-second\r\nampere-turn\r\nampersand\r\namphetamine\r\namphibia\r\namphibian\r\namphibiotic\r\namphibious\r\namphibole\r\namphibolips\r\namphibolite\r\namphibology\r\namphiboly\r\namphibrach\r\namphicarpa\r\namphicarpaea\r\namphictyony\r\namphidiploid\r\namphidiploidy\r\namphigory\r\namphimixis\r\namphineura\r\namphioxidae\r\namphioxus\r\namphipod\r\namphipoda\r\namphiprion\r\namphiprostylar\r\namphiprostyle\r\namphiprotic\r\namphisbaena\r\namphisbaenia\r\namphisbaenidae\r\namphistylar\r\namphitheater\r\namphitheatre\r\namphitheatric\r\namphitheatrical\r\namphitropous\r\namphiuma\r\namphiumidae\r\namphora\r\namphoric\r\namphoteric\r\namphotericin\r\nampicillin\r\nample\r\nampleness\r\namplification\r\namplifier\r\namplify\r\namplitude\r\namply\r\nampoule\r\nampul\r\nampule\r\nampulla\r\nampullar\r\nampullary\r\namputate\r\namputation\r\namputator\r\namputee\r\namrinone\r\namsinckia\r\namsonia\r\namsterdam\r\namuck\r\namulet\r\namun\r\namundsen\r\namur\r\namusd\r\namuse\r\namused\r\namusement\r\namusing\r\namusingly\r\namusive\r\namygdala\r\namygdalaceae\r\namygdaliform\r\namygdalin\r\namygdaline\r\namygdaloid\r\namygdaloidal\r\namygdalotomy\r\namygdalus\r\namyl\r\namylaceous\r\namylase\r\namyloid\r\namyloidal\r\namyloidosis\r\namylolysis\r\namylolytic\r\namylum\r\namyotonia\r\namyotrophia\r\namyotrophy\r\namytal\r\namyxia\r\nan\r\nana\r\nanabantidae\r\nanabaptism\r\nanabaptist\r\nanabas\r\nanabatic\r\nanabiosis\r\nanabiotic\r\nanabolic\r\nanabolism\r\nanabrus\r\nanacanthini\r\nanacardiaceae\r\nanacardium\r\nanachronic\r\nanachronism\r\nanachronistic\r\nanachronous\r\nanaclinal\r\nanaclisis\r\nanaclitic\r\nanacoluthia\r\nanacoluthic\r\nanacoluthon\r\nanaconda\r\nanacyclus\r\nanadenanthera\r\nanadiplosis\r\nanadromous\r\nanaemia\r\nanaemic\r\nanaerobe\r\nanaerobic\r\nanaerobiotic\r\nanaesthesia\r\nanaesthetic\r\nanaesthetise\r\nanaesthetised\r\nanaesthetist\r\nanaesthetize\r\nanaesthetized\r\nanagallis\r\nanagasta\r\nanaglyph\r\nanaglyphic\r\nanaglyphical\r\nanaglyphy\r\nanaglyptic\r\nanaglyptical\r\nanagnost\r\nanagoge\r\nanagogic\r\nanagogical\r\nanagram\r\nanagrammatic\r\nanagrammatical\r\nanagrammatise\r\nanagrammatize\r\nanagrams\r\nanagyris\r\nanaheim\r\nanal\r\nanalbuminemia\r\nanalecta\r\nanalects\r\nanaleptic\r\nanalgesia\r\nanalgesic\r\nanalgetic\r\nanalog\r\nanalogical\r\nanalogise\r\nanalogist\r\nanalogize\r\nanalogous\r\nanalogue\r\nanalogy\r\nanalphabet\r\nanalphabetic\r\nanalphabetism\r\nanalysand\r\nanalyse\r\nanalyser\r\nanalysis\r\nanalyst\r\nanalytic\r\nanalytical\r\nanalyticity\r\nanalyzable\r\nanalyze\r\nanalyzed\r\nanalyzer\r\nanamnesis\r\nanamnestic\r\nanamorphic\r\nanamorphism\r\nanamorphosis\r\nananas\r\nananias\r\nanapaest\r\nanapaestic\r\nanapest\r\nanapestic\r\nanaphalis\r\nanaphase\r\nanaphasic\r\nanaphor\r\nanaphora\r\nanaphoric\r\nanaphrodisia\r\nanaphrodisiac\r\nanaphylactic\r\nanaphylaxis\r\nanaplasia\r\nanaplasmosis\r\nanaplastic\r\nanaplasty\r\nanaprox\r\nanapsid\r\nanapsida\r\nanapurna\r\nanarchic\r\nanarchical\r\nanarchism\r\nanarchist\r\nanarchistic\r\nanarchy\r\nanarhichadidae\r\nanarhichas\r\nanarthria\r\nanas\r\nanasa\r\nanasarca\r\nanasarcous\r\nanasazi\r\nanaspid\r\nanaspida\r\nanastalsis\r\nanastatica\r\nanastigmat\r\nanastigmatic\r\nanastomose\r\nanastomosis\r\nanastomotic\r\nanastomus\r\nanastrophe\r\nanastylosis\r\nanathema\r\nanathematisation\r\nanathematise\r\nanathematization\r\nanathematize\r\nanathemise\r\nanathemize\r\nanatidae\r\nanatolia\r\nanatolian\r\nanatomic\r\nanatomical\r\nanatomise\r\nanatomist\r\nanatomize\r\nanatomy\r\nanatotitan\r\nanatoxin\r\nanatropous\r\nanaxagoras\r\nanaximander\r\nanaximenes\r\nancestor\r\nancestral\r\nancestress\r\nancestry\r\nanchor\r\nanchorage\r\nanchorite\r\nanchoritic\r\nanchorman\r\nanchorperson\r\nanchovy\r\nanchusa\r\nanchylosis\r\nancient\r\nancientness\r\nancients\r\nancillary\r\nancistrodon\r\nancohuma\r\nancylidae\r\nancylose\r\nancylostomatidae\r\nancylus\r\nandalucia\r\nandalusia\r\nandalusian\r\nandante\r\nandantino\r\nandean\r\nandelmin\r\nandersen\r\nanderson\r\nandes\r\nandesite\r\nandira\r\nandiron\r\nandorra\r\nandorran\r\nandosite\r\nandradite\r\nandreaea\r\nandreaeales\r\nandrena\r\nandrenid\r\nandrenidae\r\nandrew\r\nandrews\r\nandricus\r\nandroecium\r\nandrogen\r\nandrogenesis\r\nandrogenetic\r\nandrogenic\r\nandrogenous\r\nandrogeny\r\nandroglossia\r\nandrogyne\r\nandrogynous\r\nandrogyny\r\nandroid\r\nandromeda\r\nandrophobia\r\nandropogon\r\nandrosterone\r\nandryala\r\nandvari\r\nane\r\nanecdotal\r\nanecdote\r\nanecdotic\r\nanecdotical\r\nanecdotist\r\nanechoic\r\naneides\r\nanele\r\nanemia\r\nanemic\r\nanemographic\r\nanemography\r\nanemometer\r\nanemometric\r\nanemometrical\r\nanemometry\r\nanemone\r\nanemonella\r\nanemophilous\r\nanemopsis\r\nanencephalia\r\nanencephalic\r\nanencephalous\r\nanencephaly\r\nanergy\r\naneroid\r\nanesthesia\r\nanesthesiologist\r\nanesthesiology\r\nanesthetic\r\nanesthetise\r\nanesthetised\r\nanesthetist\r\nanesthetize\r\nanesthetized\r\nanesthyl\r\nanestric\r\nanestrous\r\nanestrum\r\nanestrus\r\nanethum\r\naneuploid\r\naneuploidy\r\naneurin\r\naneurism\r\naneurismal\r\naneurismatic\r\naneurysm\r\naneurysmal\r\naneurysmatic\r\nanew\r\nanfractuous\r\nang\r\nangara\r\nangas\r\nangel\r\nangelfish\r\nangelic\r\nangelica\r\nangelical\r\nangelim\r\nangelique\r\nangelology\r\nangelus\r\nanger\r\nangered\r\nangevin\r\nangevine\r\nangiitis\r\nangina\r\nanginal\r\nanginose\r\nanginous\r\nangiocardiogram\r\nangiocarp\r\nangiocarpic\r\nangiocarpous\r\nangiogenesis\r\nangiogram\r\nangiography\r\nangiohemophilia\r\nangiologist\r\nangiology\r\nangioma\r\nangiomatous\r\nangiopathy\r\nangioplasty\r\nangiopteris\r\nangiosarcoma\r\nangioscope\r\nangiosperm\r\nangiospermae\r\nangiospermous\r\nangiotelectasia\r\nangiotensin\r\nangiotonin\r\nangle\r\nangle-park\r\nangled\r\nangledozer\r\nangler\r\nanglerfish\r\nanglesea\r\nanglesey\r\nanglewing\r\nangleworm\r\nanglia\r\nanglian\r\nanglican\r\nanglicanism\r\nanglicisation\r\nanglicise\r\nanglicism\r\nanglicization\r\nanglicize\r\nangling\r\nanglo-american\r\nanglo-catholic\r\nanglo-catholicism\r\nanglo-french\r\nanglo-indian\r\nanglo-jewish\r\nanglo-norman\r\nanglo-saxon\r\nanglomania\r\nanglophil\r\nanglophile\r\nanglophilia\r\nanglophilic\r\nanglophobe\r\nanglophobia\r\nanglophobic\r\nangola\r\nangolan\r\nangolese\r\nangora\r\nangostura\r\nangraecum\r\nangrecum\r\nangriness\r\nangry\r\nangst\r\nangstrom\r\nanguidae\r\nanguilla\r\nanguillan\r\nanguillidae\r\nanguilliformes\r\nanguillula\r\nanguine\r\nanguis\r\nanguish\r\nanguished\r\nangular\r\nangularity\r\nangulate\r\nangulation\r\nangus\r\nangwantibo\r\nanhedonia\r\nanhidrosis\r\nanhima\r\nanhimidae\r\nanhinga\r\nanhingidae\r\nanhydride\r\nanhydrosis\r\nanhydrous\r\nani\r\nanicteric\r\nanigozanthus\r\nanil\r\nanile\r\naniline\r\nanima\r\nanimadversion\r\nanimadvert\r\nanimal\r\nanimal-like\r\nanimal-worship\r\nanimalcule\r\nanimalculum\r\nanimalia\r\nanimalisation\r\nanimalise\r\nanimalism\r\nanimalistic\r\nanimality\r\nanimalization\r\nanimalize\r\nanimallike\r\nanimate\r\nanimated\r\nanimateness\r\nanimating\r\nanimation\r\nanimatism\r\nanimatistic\r\nanimator\r\nanimatronics\r\nanime\r\nanimise\r\nanimism\r\nanimist\r\nanimistic\r\nanimize\r\nanimosity\r\nanimus\r\nanion\r\nanionic\r\nanise\r\nanise-scented\r\naniseed\r\naniseikonia\r\naniseikonic\r\nanisette\r\nanisogamete\r\nanisogametic\r\nanisogamic\r\nanisogamous\r\nanisogamy\r\nanisometric\r\nanisometropia\r\nanisometropic\r\nanisoptera\r\nanisotremus\r\nanisotropic\r\nanisotropy\r\nanjou\r\nankara\r\nankle\r\nankle-deep\r\nanklebone\r\nanklet\r\nanklets\r\nankus\r\nankyloglossia\r\nankylosaur\r\nankylosaurus\r\nankylose\r\nankylosis\r\nankylotic\r\nanlage\r\nanna\r\nannaba\r\nannalist\r\nannalistic\r\nannals\r\nannam\r\nannamese\r\nannamite\r\nannapolis\r\nannapurna\r\nanne\r\nanneal\r\nannealed\r\nannealing\r\nannelid\r\nannelida\r\nannelidan\r\nannex\r\nannexa\r\nannexal\r\nannexation\r\nannexational\r\nannexe\r\nanniellidae\r\nannihilate\r\nannihilated\r\nannihilating\r\nannihilation\r\nannihilative\r\nannihilator\r\nanniversary\r\nannona\r\nannonaceae\r\nannotate\r\nannotating\r\nannotation\r\nannotator\r\nannounce\r\nannounced\r\nannouncement\r\nannouncer\r\nannoy\r\nannoyance\r\nannoyed\r\nannoyer\r\nannoying\r\nannual\r\nannually\r\nannualry\r\nannuitant\r\nannuity\r\nannul\r\nannular\r\nannulate\r\nannulated\r\nannulet\r\nannulment\r\nannulus\r\nannum\r\nannunciate\r\nannunciation\r\nannunciator\r\nannunciatory\r\nannwfn\r\nannwn\r\nano\r\nanoa\r\nanobiidae\r\nanodal\r\nanode\r\nanodic\r\nanodise\r\nanodize\r\nanodonta\r\nanodyne\r\nanoectochilus\r\nanoestrous\r\nanoestrum\r\nanoestrus\r\nanogramma\r\nanoint\r\nanointer\r\nanointing\r\nanointment\r\nanole\r\nanolis\r\nanomala\r\nanomalist\r\nanomalopidae\r\nanomalops\r\nanomalopteryx\r\nanomalous\r\nanomalousness\r\nanomaly\r\nanomia\r\nanomic\r\nanomie\r\nanomiidae\r\nanomy\r\nanon\r\nanon.\r\nanonym\r\nanonymity\r\nanonymous\r\nanoperineal\r\nanopheles\r\nanopheline\r\nanopia\r\nanoplura\r\nanorak\r\nanorchia\r\nanorchidism\r\nanorchism\r\nanorectal\r\nanorectic\r\nanorexia\r\nanorexic\r\nanorexigenic\r\nanorgasmia\r\nanorthic\r\nanorthite\r\nanorthitic\r\nanorthography\r\nanorthopia\r\nanosmatic\r\nanosmia\r\nanosmic\r\nanostraca\r\nanother\r\nanouilh\r\nanova\r\nanovulant\r\nanovulation\r\nanoxemia\r\nanoxemic\r\nanoxia\r\nanoxic\r\nans\r\nansaid\r\nanselm\r\nanser\r\nanseres\r\nanseriformes\r\nanserinae\r\nanserine\r\nanshar\r\nanswer\r\nanswerability\r\nanswerable\r\nanswerableness\r\nanswerer\r\nanswering\r\nant\r\nant-like\r\nantabuse\r\nantacid\r\nantagonise\r\nantagonism\r\nantagonist\r\nantagonistic\r\nantagonize\r\nantakiya\r\nantakya\r\nantalya\r\nantananarivo\r\nantapex\r\nantarctic\r\nantarctica\r\nantares\r\nantbird\r\nante\r\nanteater\r\nantebellum\r\nantecede\r\nantecedence\r\nantecedency\r\nantecedent\r\nantecedently\r\nantechamber\r\nantecubital\r\nantedate\r\nantediluvial\r\nantediluvian\r\nantedon\r\nantedonidae\r\nantefix\r\nantelope\r\nantelope-like\r\nantemeridian\r\nantemortem\r\nantenatal\r\nantenna\r\nantennal\r\nantennaria\r\nantennariidae\r\nantennary\r\nantenuptial\r\nantepartum\r\nantepenult\r\nantepenultima\r\nantepenultimate\r\nanterior\r\nanteriority\r\nanterograde\r\nanteroom\r\nanthelminthic\r\nanthelmintic\r\nanthem\r\nanthemis\r\nanther\r\nantheraea\r\nantheral\r\nanthericum\r\nantheridial\r\nantheridiophore\r\nantheridium\r\nantheropeas\r\nantherozoid\r\nanthesis\r\nanthidium\r\nanthill\r\nanthoceropsida\r\nanthoceros\r\nanthocerotaceae\r\nanthocerotales\r\nanthologise\r\nanthologist\r\nanthologize\r\nanthology\r\nanthonomus\r\nanthony\r\nanthophagous\r\nanthophilous\r\nanthophyllite\r\nanthophyta\r\nanthozoa\r\nanthozoan\r\nanthracite\r\nanthracitic\r\nanthracosis\r\nanthrax\r\nanthriscus\r\nanthropic\r\nanthropical\r\nanthropocentric\r\nanthropocentricity\r\nanthropocentrism\r\nanthropogenesis\r\nanthropogenetic\r\nanthropogenic\r\nanthropogeny\r\nanthropoid\r\nanthropoidal\r\nanthropoidea\r\nanthropolatry\r\nanthropological\r\nanthropologist\r\nanthropology\r\nanthropometric\r\nanthropometrical\r\nanthropometry\r\nanthropomorphic\r\nanthropomorphise\r\nanthropomorphism\r\nanthropomorphize\r\nanthropomorphous\r\nanthropophagite\r\nanthropophagous\r\nanthropophagus\r\nanthropophagy\r\nanthurium\r\nanthus\r\nanthyllis\r\nanti\r\nanti-american\r\nanti-catholicism\r\nanti-inflammatory\r\nanti-intellectual\r\nanti-semite\r\nanti-semitic\r\nanti-semitism\r\nantiacid\r\nantiadrenergic\r\nantiaircraft\r\nantialiasing\r\nantiapartheid\r\nantiarrhythmic\r\nantiauthoritarian\r\nantibacterial\r\nantibaryon\r\nantibiosis\r\nantibiotic\r\nantiblack\r\nantibody\r\nantic\r\nanticancer\r\nanticatalyst\r\nanticholinergic\r\nanticholinesterase\r\nantichrist\r\nanticipant\r\nanticipate\r\nanticipated\r\nanticipation\r\nanticipative\r\nanticipator\r\nanticipatory\r\nanticlimactic\r\nanticlimactical\r\nanticlimax\r\nanticlinal\r\nanticlockwise\r\nanticoagulant\r\nanticoagulation\r\nanticoagulative\r\nanticonvulsant\r\nanticyclone\r\nanticyclonic\r\nantidepressant\r\nantidiabetic\r\nantidiarrheal\r\nantidiuretic\r\nantido\r\nantidorcas\r\nantidotal\r\nantidote\r\nantidromic\r\nantielectron\r\nantiemetic\r\nantiepileptic\r\nantiestablishmentarianism\r\nantiestablishmentism\r\nantifeminism\r\nantifeminist\r\nantiferromagnetic\r\nantiferromagnetism\r\nantifertility\r\nantiflatulent\r\nantifouling\r\nantifreeze\r\nantifungal\r\nantigen\r\nantigenic\r\nantigone\r\nantigonia\r\nantigonus\r\nantigram\r\nantigua\r\nantiguan\r\nantiheretical\r\nantihero\r\nantihistamine\r\nantihypertensive\r\nantiknock\r\nantilepton\r\nantilles\r\nantilocapra\r\nantilocapridae\r\nantilog\r\nantilogarithm\r\nantilope\r\nantimacassar\r\nantimagnetic\r\nantimalarial\r\nantimatter\r\nantimeson\r\nantimetabolite\r\nantimicrobial\r\nantimicrobic\r\nantimonial\r\nantimonic\r\nantimonious\r\nantimonopoly\r\nantimony\r\nantimuon\r\nantimycin\r\nantimycotic\r\nantineoplastic\r\nantineutrino\r\nantineutron\r\nantinode\r\nantinomasia\r\nantinomian\r\nantinomianism\r\nantinomy\r\nantioch\r\nantioxidant\r\nantiparallel\r\nantiparticle\r\nantipasto\r\nantipathetic\r\nantipathetical\r\nantipathy\r\nantipersonnel\r\nantiperspirant\r\nantiphlogistic\r\nantiphon\r\nantiphonal\r\nantiphonary\r\nantiphony\r\nantiphrasis\r\nantipodal\r\nantipode\r\nantipodean\r\nantipodes\r\nantipollution\r\nantipope\r\nantiproton\r\nantiprotozoal\r\nantipruritic\r\nantipsychotic\r\nantipyresis\r\nantipyretic\r\nantiquarian\r\nantiquark\r\nantiquary\r\nantiquate\r\nantiquated\r\nantique\r\nantiquity\r\nantiredeposition\r\nantirrhinum\r\nantisatellite\r\nantisemitic\r\nantisemitism\r\nantisepsis\r\nantiseptic\r\nantisepticize\r\nantiserum\r\nantisocial\r\nantispasmodic\r\nantistrophe\r\nantistrophic\r\nantisubmarine\r\nantisyphilitic\r\nantitank\r\nantitauon\r\nantithesis\r\nantithetic\r\nantithetical\r\nantitoxic\r\nantitoxin\r\nantitrade\r\nantitrades\r\nantitrust\r\nantitumor\r\nantitumour\r\nantitussive\r\nantitype\r\nantitypic\r\nantitypical\r\nantivenene\r\nantivenin\r\nantivert\r\nantiviral\r\nantler\r\nantler-like\r\nantlered\r\nantlia\r\nantlion\r\nantofagasta\r\nantoninus\r\nantonius\r\nantony\r\nantonym\r\nantonymous\r\nantonymy\r\nantrorse\r\nantrozous\r\nantrum\r\nantsy\r\nantum\r\nantwerp\r\nantwerpen\r\nanu\r\nanubis\r\nanulus\r\nanunnaki\r\nanura\r\nanuran\r\nanuresis\r\nanuretic\r\nanuria\r\nanuric\r\nanurous\r\nanus\r\nanvers\r\nanvil\r\nanxiety\r\nanxiolytic\r\nanxious\r\nanxiously\r\nanxiousness\r\nany\r\nanyhow\r\nanymore\r\nanyplace\r\nanything\r\nanyway\r\nanywhere\r\nanzac\r\nanzio\r\naorist\r\naoristic\r\naorta\r\naortal\r\naortic\r\naortitis\r\naotus\r\naoudad\r\napace\r\napache\r\napadana\r\napalachicola\r\napanage\r\napar\r\napart\r\napartheid\r\napartment\r\napathetic\r\napathy\r\napatite\r\napatosaur\r\napatosaurus\r\napatura\r\napc\r\nape\r\nape-man\r\napeldoorn\r\napelike\r\napennines\r\naper\r\napercu\r\naperea\r\naperient\r\naperiodic\r\naperitif\r\napertif\r\naperture\r\napery\r\napetalous\r\napex\r\naphaeresis\r\naphaeretic\r\naphagia\r\naphakia\r\naphakic\r\naphanite\r\naphanitic\r\naphasia\r\naphasic\r\naphasmidia\r\naphelion\r\napheresis\r\napheretic\r\naphesis\r\naphetic\r\naphid\r\naphididae\r\naphidoidea\r\naphis\r\naphonia\r\naphonic\r\naphorise\r\naphorism\r\naphorist\r\naphoristic\r\naphorize\r\naphotic\r\naphriza\r\naphrodisia\r\naphrodisiac\r\naphrodisiacal\r\naphrodite\r\naphrophora\r\naphyllanthaceae\r\naphyllanthes\r\naphyllophorales\r\naphyllous\r\napia\r\napiaceae\r\napian\r\napiarian\r\napiarist\r\napiary\r\napical\r\napiculate\r\napicultural\r\napiculture\r\napiculturist\r\napidae\r\napiece\r\napios\r\napis\r\napish\r\napishamore\r\napium\r\napivorous\r\naplacental\r\naplacophora\r\naplacophoran\r\naplanatic\r\naplasia\r\naplectrum\r\naplite\r\naplitic\r\naplodontia\r\naplodontiidae\r\naplomb\r\naplysia\r\naplysiidae\r\napnea\r\napneic\r\napnoeic\r\napoapsis\r\napocalypse\r\napocalyptic\r\napocalyptical\r\napocarpous\r\napochromatic\r\napocope\r\napocrine\r\napocrypha\r\napocryphal\r\napocynaceae\r\napocynaceous\r\napocynum\r\napodal\r\napodeictic\r\napodeme\r\napodemus\r\napodictic\r\napodidae\r\napodiformes\r\napodous\r\napoenzyme\r\napogametic\r\napogamic\r\napogamous\r\napogamy\r\napogean\r\napogee\r\napogon\r\napogonidae\r\napoidea\r\napojove\r\napolemia\r\napolitical\r\napollinaire\r\napollo\r\napologetic\r\napologetics\r\napologia\r\napologise\r\napologist\r\napologize\r\napologue\r\napology\r\napolune\r\napomict\r\napomictic\r\napomictical\r\napomixis\r\napomorphine\r\naponeurosis\r\naponeurotic\r\napopemptic\r\napophasis\r\napophatic\r\napophatism\r\napophthegm\r\napophyseal\r\napophysis\r\napoplectic\r\napoplectiform\r\napoplectoid\r\napoplexy\r\napoptosis\r\naporocactus\r\naposelene\r\naposiopesis\r\naposiopetic\r\napostasy\r\napostate\r\napostatise\r\napostatize\r\napostle\r\napostleship\r\napostolic\r\napostolical\r\napostrophe\r\napostrophic\r\napostrophise\r\napostrophize\r\napothecary\r\napothecial\r\napothecium\r\napothegm\r\napothegmatic\r\napothegmatical\r\napotheose\r\napotheosis\r\napotheosise\r\napotheosize\r\napotropaic\r\nappal\r\nappalachia\r\nappalachian\r\nappalachians\r\nappall\r\nappalled\r\nappalling\r\nappaloosa\r\nappanage\r\napparatus\r\napparel\r\nappareled\r\napparency\r\napparent\r\napparently\r\napparentness\r\napparition\r\napparitional\r\nappeal\r\nappealable\r\nappealing\r\nappealingly\r\nappealingness\r\nappear\r\nappearance\r\nappearing\r\nappeasable\r\nappease\r\nappeasement\r\nappeaser\r\nappeasing\r\nappellant\r\nappellate\r\nappellation\r\nappellative\r\nappend\r\nappendage\r\nappendaged\r\nappendant\r\nappendectomy\r\nappendicectomy\r\nappendicitis\r\nappendicle\r\nappendicular\r\nappendicularia\r\nappendix\r\napperceive\r\napperception\r\napperceptive\r\nappertain\r\nappetence\r\nappetency\r\nappetent\r\nappetiser\r\nappetising\r\nappetisingness\r\nappetite\r\nappetitive\r\nappetizer\r\nappetizing\r\nappetizingness\r\napplaud\r\napplaudable\r\napplauder\r\napplause\r\napple\r\napple-scented\r\napple-shaped\r\napple-sized\r\napplecart\r\napplejack\r\napplemint\r\napplesauce\r\napplet\r\nappleton\r\napplewood\r\nappliance\r\napplicability\r\napplicable\r\napplicant\r\napplication\r\napplicative\r\napplicator\r\napplicatory\r\napplied\r\napplier\r\napplique\r\napply\r\nappoggiatura\r\nappoint\r\nappointed\r\nappointee\r\nappointive\r\nappointment\r\napportion\r\napportionable\r\napportioned\r\napportioning\r\napportionment\r\napposable\r\nappose\r\napposite\r\nappositeness\r\napposition\r\nappositional\r\nappositive\r\nappositively\r\nappraisal\r\nappraise\r\nappraiser\r\nappraising\r\nappreciable\r\nappreciate\r\nappreciated\r\nappreciation\r\nappreciative\r\nappreciatively\r\nappreciativeness\r\nappreciator\r\napprehend\r\napprehended\r\napprehender\r\napprehensible\r\napprehension\r\napprehensive\r\napprehensively\r\napprehensiveness\r\napprentice\r\napprenticed\r\napprenticeship\r\nappressed\r\napprisal\r\napprise\r\napprize\r\nappro\r\napproach\r\napproachability\r\napproachable\r\napproaching\r\napprobate\r\napprobation\r\napprobative\r\napprobatory\r\nappropriable\r\nappropriate\r\nappropriated\r\nappropriately\r\nappropriateness\r\nappropriation\r\nappropriative\r\nappropriator\r\napproval\r\napprove\r\napproved\r\napprover\r\napproving\r\napprovingly\r\napproximate\r\napproximately\r\napproximation\r\napproximative\r\nappurtenance\r\nappurtenant\r\napr\r\napractic\r\napraxia\r\napraxic\r\napresoline\r\napricot\r\napril\r\napron\r\napropos\r\napse\r\napsidal\r\napsis\r\napsu\r\napt\r\naptenodytes\r\napteral\r\napterous\r\napterygidae\r\napterygiformes\r\napteryx\r\naptitude\r\naptitudinal\r\naptly\r\naptness\r\napulia\r\napus\r\naqaba\r\naqua\r\naqua-lung\r\naquacultural\r\naquaculture\r\naqualung\r\naquamarine\r\naquanaut\r\naquaphobia\r\naquaphobic\r\naquaplane\r\naquarium\r\naquarius\r\naquatic\r\naquatics\r\naquatint\r\naquavit\r\naqueduct\r\naqueous\r\naquicultural\r\naquiculture\r\naquifer\r\naquiferous\r\naquifoliaceae\r\naquila\r\naquilege\r\naquilegia\r\naquiline\r\naquinas\r\naquitaine\r\naquitania\r\nar\r\nara\r\narab\r\narab-berber\r\narabesque\r\narabia\r\narabian\r\narabic\r\narabidopsis\r\narability\r\narabis\r\narabist\r\narable\r\naraceae\r\naraceous\r\narachis\r\narachnid\r\narachnid-like\r\narachnida\r\narachnidian\r\narachnoid\r\narachnophobia\r\narafat\r\naragon\r\naragonite\r\naraguaia\r\naraguaya\r\narak\r\narales\r\naralia\r\naraliaceae\r\naram\r\naramaean\r\naramaic\r\narame\r\naramean\r\naramus\r\naranea\r\naraneae\r\naraneida\r\naraneidal\r\naraneidan\r\naraneus\r\naranyaka\r\narapaho\r\narapahoe\r\nararat\r\narariba\r\nararoba\r\naras\r\narauca\r\naraucaria\r\naraucariaceae\r\naraujia\r\narava\r\narawak\r\narawakan\r\narawn\r\naraxes\r\narb\r\narbalest\r\narbalist\r\narbiter\r\narbitrable\r\narbitrage\r\narbitrager\r\narbitrageur\r\narbitral\r\narbitrament\r\narbitrarily\r\narbitrariness\r\narbitrary\r\narbitrate\r\narbitration\r\narbitrational\r\narbitrative\r\narbitrator\r\narbitrement\r\narbor\r\narboraceous\r\narborary\r\narboreal\r\narboreous\r\narborescent\r\narboresque\r\narboretum\r\narborical\r\narboriculture\r\narboriculturist\r\narboriform\r\narborise\r\narborist\r\narborize\r\narborolatry\r\narborous\r\narborvirus\r\narborvitae\r\narbour\r\narbovirus\r\narbutus\r\narc\r\narc-boutant\r\narca\r\narcade\r\narcadia\r\narcadian\r\narcadic\r\narcane\r\narcanum\r\narccos\r\narccosecant\r\narccosine\r\narccotangent\r\narcdegree\r\narced\r\narcella\r\narcellidae\r\narceuthobium\r\narch\r\narchaean\r\narchaebacteria\r\narchaebacterium\r\narchaeobacteria\r\narchaeologic\r\narchaeological\r\narchaeologist\r\narchaeology\r\narchaeopteryx\r\narchaeornis\r\narchaeornithes\r\narchaeozoic\r\narchaic\r\narchaicism\r\narchaise\r\narchaism\r\narchaist\r\narchaistic\r\narchaize\r\narchangel\r\narchangelic\r\narchangelical\r\narchbishop\r\narchbishopric\r\narchdeacon\r\narchdeaconry\r\narchdiocesan\r\narchdiocese\r\narchducal\r\narchduchess\r\narchduchy\r\narchduke\r\narchean\r\narched\r\narchegonial\r\narchegoniate\r\narchegonium\r\narchenteron\r\narcheobacteria\r\narcheologic\r\narcheological\r\narcheologist\r\narcheology\r\narcheopteryx\r\narcheozoic\r\narchepiscopal\r\narcher\r\narcherfish\r\narchery\r\narchespore\r\narchesporial\r\narchesporium\r\narchetypal\r\narchetype\r\narchetypical\r\narchiannelid\r\narchiannelida\r\narchidiaconal\r\narchidiaconate\r\narchidiskidon\r\narchiepiscopal\r\narchil\r\narchilochus\r\narchimandrite\r\narchimedes\r\narchine\r\narching\r\narchipallium\r\narchipelagic\r\narchipelago\r\narchitect\r\narchitectonic\r\narchitectonics\r\narchitectural\r\narchitecture\r\narchiteuthis\r\narchitrave\r\narchival\r\narchive\r\narchives\r\narchivist\r\narchly\r\narchness\r\narchosargus\r\narchosaur\r\narchosauria\r\narchosaurian\r\narchpriest\r\narchway\r\narcidae\r\narciform\r\narcminute\r\narcsec\r\narcsecant\r\narcsecond\r\narcsin\r\narcsine\r\narctan\r\narctangent\r\narctic\r\narctictis\r\narctiid\r\narctiidae\r\narctium\r\narctocebus\r\narctocephalus\r\narctonyx\r\narctostaphylos\r\narctotis\r\narcturus\r\narcuate\r\narcus\r\narda\r\nardea\r\nardeb\r\nardeidae\r\nardennes\r\nardent\r\nardisia\r\nardor\r\nardour\r\nards\r\narduous\r\narduousness\r\nare\r\narea\r\nareal\r\nareaway\r\nareca\r\narecaceae\r\narecidae\r\nareflexia\r\narena\r\narenaceous\r\narenaria\r\narenaria-melanocephala\r\narenaviridae\r\narenavirus\r\narendt\r\narenga\r\narenicolous\r\nareola\r\nareolar\r\nareolate\r\nareopagite\r\nareopagus\r\narequipa\r\narere\r\nares\r\narete\r\narethusa\r\nargal\r\nargali\r\nargasid\r\nargasidae\r\nargemone\r\nargent\r\nargentic\r\nargentiferous\r\nargentina\r\nargentine\r\nargentinian\r\nargentinidae\r\nargentinosaur\r\nargentite\r\nargentous\r\nargil\r\nargillaceous\r\nargillite\r\narginine\r\nargiope\r\nargiopidae\r\nargive\r\nargle-bargle\r\nargo\r\nargon\r\nargonaut\r\nargonauta\r\nargonautidae\r\nargonne\r\nargonon\r\nargos\r\nargosy\r\nargot\r\narguable\r\nargue\r\narguer\r\nargufy\r\narguing\r\nargument\r\nargumentation\r\nargumentative\r\nargumentatively\r\nargun\r\nargus\r\nargus-eyed\r\nargusianus\r\nargy-bargy\r\nargyle\r\nargyll\r\nargynnis\r\nargyranthemum\r\nargyreia\r\nargyrodite\r\nargyrol\r\nargyrotaenia\r\nargyroxiphium\r\narhant\r\narhat\r\narhus\r\naria\r\nariadne\r\nariana\r\narianism\r\narianist\r\narianrhod\r\narianrod\r\naricara\r\narid\r\naridity\r\naridness\r\naries\r\narietta\r\naright\r\nariidae\r\narikara\r\naril\r\nariled\r\narillate\r\narilus\r\nariocarpus\r\nariomma\r\nariose\r\narioso\r\narisaema\r\narisarum\r\narise\r\narishth\r\narista\r\naristarchus\r\naristocort\r\naristocracy\r\naristocrat\r\naristocratic\r\naristocratical\r\naristolochia\r\naristolochiaceae\r\naristolochiales\r\naristopak\r\naristophanes\r\naristotelean\r\naristotelia\r\naristotelian\r\naristotelianism\r\naristotelic\r\naristotle\r\narithmancy\r\narithmetic\r\narithmetical\r\narithmetician\r\narity\r\narius\r\narizona\r\narizonan\r\narizonian\r\narjuna\r\nark\r\narkansan\r\narkansas\r\narkansawyer\r\narles\r\narlington\r\narm\r\narm-twisting\r\narmada\r\narmadillidiidae\r\narmadillidium\r\narmadillo\r\narmageddon\r\narmagnac\r\narmament\r\narmamentarium\r\narmature\r\narmband\r\narmchair\r\narmed\r\narmenia\r\narmenian\r\narmeria\r\narmet\r\narmful\r\narmguard\r\narmhole\r\narmiger\r\narmilla\r\narmillaria\r\narmillariella\r\narmillary\r\narmin\r\narming\r\narminian\r\narminianism\r\narminius\r\narmistice\r\narmless\r\narmlet\r\narmlike\r\narmoire\r\narmor\r\narmor-bearer\r\narmor-clad\r\narmor-like\r\narmor-plated\r\narmoracia\r\narmored\r\narmorer\r\narmorial\r\narmory\r\narmour\r\narmour-clad\r\narmour-like\r\narmour-plated\r\narmoured\r\narmourer\r\narmoury\r\narmpit\r\narmrest\r\narms\r\narms-runner\r\narmstrong\r\narmy\r\narmyworm\r\narng\r\narnhem\r\narnica\r\narno\r\narnold\r\narnoseris\r\naroid\r\naroma\r\naromatic\r\naromatise\r\naromatize\r\narouet\r\naround\r\naround-the-clock\r\narousal\r\narouse\r\naroused\r\narouser\r\narp\r\narpeggio\r\narpent\r\narquebus\r\narrack\r\narraign\r\narraignment\r\narrange\r\narranged\r\narrangement\r\narranger\r\narranging\r\narrant\r\narras\r\narray\r\narrayed\r\narrears\r\narrest\r\narrested\r\narrester\r\narresting\r\narrhenatherum\r\narrhenius\r\narrhythmia\r\narrhythmic\r\narrhythmical\r\narrival\r\narrive\r\narrivederci\r\narriver\r\narriviste\r\narroba\r\narrogance\r\narrogant\r\narrogate\r\narrogated\r\narrogation\r\narrogator\r\narrow\r\narrow-shaped\r\narrowhead\r\narrowroot\r\narrowsmith\r\narrowworm\r\narroyo\r\narse\r\narsehole\r\narsenal\r\narsenate\r\narsenic\r\narsenical\r\narsenide\r\narsenious\r\narsenopyrite\r\narsine\r\narson\r\narsonist\r\nart\r\nartamidae\r\nartamus\r\nartaxerxes\r\nartefact\r\nartefactual\r\nartemia\r\nartemis\r\nartemisia\r\narteria\r\narterial\r\narterialise\r\narterialize\r\narteriectasia\r\narteriectasis\r\narteriogram\r\narteriography\r\narteriola\r\narteriolar\r\narteriole\r\narteriolosclerosis\r\narteriosclerosis\r\narteriosclerotic\r\narteriovenous\r\narteritis\r\nartery\r\nartesian\r\nartful\r\nartfully\r\nartfulness\r\narthralgia\r\narthralgic\r\narthritic\r\narthritis\r\narthrocentesis\r\narthrodesis\r\narthrogram\r\narthrography\r\narthromere\r\narthromeric\r\narthropathy\r\narthroplasty\r\narthropod\r\narthropoda\r\narthropodal\r\narthropodan\r\narthropodous\r\narthropteris\r\narthroscope\r\narthroscopy\r\narthrospore\r\narthrosporic\r\narthrosporous\r\narthur\r\narthurian\r\nartichoke\r\narticle\r\narticled\r\narticular\r\narticulary\r\narticulate\r\narticulated\r\narticulately\r\narticulateness\r\narticulatio\r\narticulation\r\narticulative\r\narticulator\r\narticulatory\r\nartifact\r\nartifactual\r\nartifice\r\nartificer\r\nartificial\r\nartificiality\r\nartificially\r\nartillery\r\nartilleryman\r\nartiodactyl\r\nartiodactyla\r\nartiodactylous\r\nartisan\r\nartist\r\nartiste\r\nartistic\r\nartistry\r\nartless\r\nartlessly\r\nartlessness\r\nartocarpus\r\nartois\r\narts\r\nartsd\r\nartsy-craftsy\r\nartwork\r\narty\r\narty-crafty\r\naruba\r\narugula\r\narui\r\narulo\r\narum\r\narundinaceous\r\narundinaria\r\narundo\r\naruru\r\narvicola\r\naryan\r\narytaenoid\r\narytenoid\r\nas\r\nasadha\r\nasafetida\r\nasafoetida\r\nasahikawa\r\nasala\r\nasama\r\nasamiya\r\nasana\r\nasanga\r\nasap\r\nasarabacca\r\nasarh\r\nasarum\r\nasat\r\nasbestos\r\nasbestosis\r\nascaphidae\r\nascaphus\r\nascariasis\r\nascaridae\r\nascaridia\r\nascaris\r\nascend\r\nascendable\r\nascendance\r\nascendancy\r\nascendant\r\nascendence\r\nascendency\r\nascendent\r\nascender\r\nascendible\r\nascending\r\nascension\r\nascensional\r\nascensive\r\nascent\r\nascertain\r\nascertainable\r\nascertained\r\nascesis\r\nascetic\r\nascetical\r\nasceticism\r\nasch\r\naschelminthes\r\nascidiaceae\r\nascidian\r\nascii\r\nascites\r\nascitic\r\nasclepiad\r\nasclepiadaceae\r\nasclepiadaceous\r\nasclepias\r\nasclepius\r\nascocarp\r\nascocarpous\r\nascolichen\r\nascoma\r\nascomycete\r\nascomycetes\r\nascomycetous\r\nascomycota\r\nascomycotina\r\nascophyllum\r\nascospore\r\nascosporic\r\nascosporous\r\nascot\r\nascribable\r\nascribe\r\nascription\r\nascus\r\nasdic\r\nasea\r\nasean\r\nasepsis\r\naseptic\r\nasexual\r\nasexuality\r\nasgard\r\nash\r\nash-bin\r\nash-blonde\r\nash-gray\r\nash-grey\r\nash-key\r\nash-pan\r\nashamed\r\nashamedly\r\nashbin\r\nashcake\r\nashcan\r\nashe\r\nashen\r\nasheville\r\nashir\r\nashkenazi\r\nashkhabad\r\nashlar\r\nashore\r\nashram\r\nashton\r\nashtoreth\r\nashtray\r\nashur\r\nashurbanipal\r\nashy\r\nasia\r\nasian\r\nasiatic\r\naside\r\nasilidae\r\nasimina\r\nasimov\r\nasin\r\nasinine\r\nasininity\r\nasio\r\nask\r\naskance\r\naskant\r\nasker\r\naskew\r\nasking\r\nasklepios\r\nasl\r\naslant\r\nasleep\r\naslope\r\nasmara\r\nasmera\r\nasocial\r\nasp\r\naspadana\r\naspalathus\r\nasparagaceae\r\nasparaginase\r\nasparagine\r\nasparagus\r\naspartame\r\naspect\r\naspectual\r\naspen\r\nasper\r\naspergill\r\naspergillaceae\r\naspergillales\r\naspergillosis\r\naspergillus\r\nasperity\r\nasperse\r\naspersion\r\naspersorium\r\nasperula\r\nasphalt\r\nasphaltic\r\naspheric\r\naspherical\r\nasphodel\r\nasphodelaceae\r\nasphodeline\r\nasphodelus\r\nasphyxia\r\nasphyxiate\r\nasphyxiated\r\nasphyxiating\r\nasphyxiation\r\nasphyxiator\r\naspic\r\naspidelaps\r\naspidiotus\r\naspidistra\r\naspidophoroides\r\naspinwall\r\naspirant\r\naspirate\r\naspiration\r\naspirator\r\naspire\r\naspirer\r\naspirin\r\naspiring\r\naspis\r\naspleniaceae\r\nasplenium\r\nasquint\r\nass\r\nass-kisser\r\nassagai\r\nassail\r\nassailability\r\nassailable\r\nassailant\r\nassam\r\nassamese\r\nassassin\r\nassassinate\r\nassassinated\r\nassassination\r\nassassinator\r\nassault\r\nassaulter\r\nassaultive\r\nassay\r\nassay-mark\r\nassayer\r\nassegai\r\nassemblage\r\nassemble\r\nassembled\r\nassembler\r\nassembling\r\nassembly\r\nassemblyman\r\nassemblywoman\r\nassent\r\nassenter\r\nassentient\r\nassenting\r\nassert\r\nassertable\r\nasserted\r\nasserter\r\nasserting\r\nassertion\r\nassertive\r\nassertively\r\nassertiveness\r\nassess\r\nassessable\r\nassessee\r\nassessment\r\nassessor\r\nasset\r\nassets\r\nasseverate\r\nasseveration\r\nasseverator\r\nasshole\r\nassibilate\r\nassibilation\r\nassiduity\r\nassiduous\r\nassiduousness\r\nassign\r\nassignable\r\nassignation\r\nassigned\r\nassignee\r\nassigning\r\nassignment\r\nassignor\r\nassimilable\r\nassimilate\r\nassimilating\r\nassimilation\r\nassimilative\r\nassimilator\r\nassimilatory\r\nassist\r\nassistance\r\nassistant\r\nassisted\r\nassistive\r\nassize\r\nassizes\r\nassociability\r\nassociable\r\nassociableness\r\nassociate\r\nassociated\r\nassociateship\r\nassociation\r\nassociational\r\nassociationism\r\nassociative\r\nassociatory\r\nassoil\r\nassonance\r\nassonant\r\nassonate\r\nassort\r\nassorted\r\nassortment\r\nassouan\r\nassuage\r\nassuagement\r\nassuan\r\nassuasive\r\nassume\r\nassumed\r\nassuming\r\nassumption\r\nassumptive\r\nassur\r\nassurance\r\nassurbanipal\r\nassure\r\nassured\r\nassuredness\r\nassurgent\r\nassuring\r\nassyria\r\nassyrian\r\nassyriology\r\nastacidae\r\nastacura\r\nastacus\r\nastaire\r\nastana\r\nastarte\r\nastasia\r\nastatic\r\nastatine\r\naster\r\nasteraceae\r\nastereognosis\r\nasteriated\r\nasteridae\r\nasterion\r\nasterisk\r\nasterisked\r\nasterism\r\nasterismal\r\nastern\r\nasternal\r\nasteroid\r\nasteroidal\r\nasteroidea\r\nasterope\r\nasthenia\r\nasthenic\r\nasthenopia\r\nasthenosphere\r\nastheny\r\nasthma\r\nasthmatic\r\nastigmatic\r\nastigmatism\r\nastigmia\r\nastilbe\r\nastir\r\nastomatous\r\nastonied\r\nastonish\r\nastonished\r\nastonishing\r\nastonishingly\r\nastonishment\r\nastor\r\nastound\r\nastounded\r\nastounding\r\nastraddle\r\nastragal\r\nastragalar\r\nastragalus\r\nastrakhan\r\nastral\r\nastrantia\r\nastraphobia\r\nastray\r\nastreus\r\nastride\r\nastringe\r\nastringence\r\nastringency\r\nastringent\r\nastrobiology\r\nastrocyte\r\nastrocytic\r\nastrodome\r\nastrodynamics\r\nastrogate\r\nastrogator\r\nastroglia\r\nastrolabe\r\nastrolatry\r\nastrologer\r\nastrological\r\nastrologist\r\nastrology\r\nastroloma\r\nastrometry\r\nastronaut\r\nastronautic\r\nastronautical\r\nastronautics\r\nastronavigation\r\nastronium\r\nastronomer\r\nastronomic\r\nastronomical\r\nastronomy\r\nastrophysical\r\nastrophysicist\r\nastrophysics\r\nastrophyton\r\nastropogon\r\nastute\r\nastutely\r\nastuteness\r\nastylar\r\nasuncion\r\nasunder\r\nasur\r\nasura\r\nasurbanipal\r\nasvina\r\nasvins\r\naswan\r\nasylum\r\nasymmetric\r\nasymmetrical\r\nasymmetrically\r\nasymmetry\r\nasymptomatic\r\nasymptote\r\nasymptotic\r\nasynchronism\r\nasynchronous\r\nasynchrony\r\nasynclitism\r\nasyndetic\r\nasyndeton\r\nasynergia\r\nasynergic\r\nasynergy\r\nasystole\r\nat\r\nat-bat\r\natabrine\r\natactic\r\natakapa\r\natakapan\r\natar\r\nataractic\r\natarax\r\nataraxia\r\nataraxic\r\nataraxis\r\nataturk\r\natavism\r\natavist\r\natavistic\r\nataxia\r\nataxic\r\nataxy\r\natayalic\r\nate\r\natelectasis\r\nateleiosis\r\nateleiotic\r\nateles\r\natelier\r\nateliosis\r\naten\r\natenolol\r\natf\r\nathabascan\r\nathabaskan\r\nathanasianism\r\nathanasius\r\nathanor\r\nathapascan\r\nathapaskan\r\nathar\r\natharva-veda\r\natheism\r\natheist\r\natheistic\r\natheistical\r\nathelstan\r\nathena\r\nathenaeum\r\nathene\r\natheneum\r\nathenian\r\nathens\r\natherinidae\r\natherinopsis\r\natherodyde\r\natherogenesis\r\natheroma\r\natheromatic\r\natheromatous\r\natherosclerosis\r\natherosclerotic\r\natherurus\r\nathetosis\r\nathinai\r\nathiorhodaceae\r\nathirst\r\nathlete\r\nathletic\r\nathleticism\r\nathletics\r\nathodyd\r\nathos\r\nathrotaxis\r\nathwart\r\nathyriaceae\r\nathyrium\r\natilt\r\nativan\r\natlanta\r\natlantic\r\natlantides\r\natlantis\r\natlas\r\natm\r\natmometer\r\natmosphere\r\natmospheric\r\natmospherical\r\natmospherics\r\natole\r\natoll\r\natom\r\natom-bomb\r\natomic\r\natomisation\r\natomise\r\natomiser\r\natomism\r\natomistic\r\natomistical\r\natomization\r\natomize\r\natomizer\r\natomlike\r\naton\r\natonal\r\natonalism\r\natonalistic\r\natonality\r\natone\r\natonement\r\natonia\r\natonic\r\natonicity\r\natony\r\natopognosia\r\natopognosis\r\natopy\r\natorvastatin\r\natoxic\r\natp\r\natrabilious\r\natrazine\r\natresia\r\natreus\r\natrial\r\natrichornis\r\natrichornithidae\r\natrioventricular\r\natrip\r\natriplex\r\natrium\r\natrocious\r\natrociously\r\natrociousness\r\natrocity\r\natromid-s\r\natropa\r\natrophic\r\natrophied\r\natrophy\r\natropidae\r\natropine\r\natropos\r\natrovent\r\natsugewi\r\nattacapa\r\nattacapan\r\nattach\r\nattachable\r\nattache\r\nattached\r\nattachment\r\nattack\r\nattacker\r\nattacking\r\nattain\r\nattainability\r\nattainable\r\nattainableness\r\nattainder\r\nattained\r\nattainment\r\nattaint\r\nattalea\r\nattar\r\nattemper\r\nattempt\r\nattempted\r\nattempter\r\nattend\r\nattendance\r\nattendant\r\nattended\r\nattendee\r\nattender\r\nattending\r\nattention\r\nattention-getting\r\nattentional\r\nattentive\r\nattentively\r\nattentiveness\r\nattenuate\r\nattenuated\r\nattenuation\r\nattenuator\r\nattest\r\nattestant\r\nattestation\r\nattestator\r\nattested\r\nattester\r\nattestor\r\nattic\r\nattica\r\natticus\r\nattila\r\nattire\r\nattired\r\nattitude\r\nattitudinal\r\nattitudinise\r\nattitudinize\r\nattlee\r\nattorn\r\nattorney\r\nattorneyship\r\nattosecond\r\nattract\r\nattractable\r\nattracter\r\nattraction\r\nattractive\r\nattractively\r\nattractiveness\r\nattractor\r\nattributable\r\nattribute\r\nattribution\r\nattributive\r\nattrited\r\nattrition\r\nattritional\r\nattune\r\nattuned\r\natypical\r\natypicality\r\natypically\r\nau\r\nauberge\r\naubergine\r\nauburn\r\nauc\r\nauchincloss\r\nauckland\r\nauction\r\nauctioneer\r\nauctorial\r\naucuba\r\naudacious\r\naudaciousness\r\naudacity\r\naudad\r\nauden\r\naudenesque\r\naudibility\r\naudible\r\naudibleness\r\naudibly\r\naudience\r\naudile\r\naudio\r\naudio-lingual\r\naudiocassette\r\naudiogram\r\naudiology\r\naudiometer\r\naudiometric\r\naudiometry\r\naudiotape\r\naudiovisual\r\naudit\r\naudition\r\nauditive\r\nauditor\r\nauditorium\r\nauditory\r\naudubon\r\naug\r\naugean\r\naugeas\r\naugend\r\nauger\r\naught\r\naugite\r\naugitic\r\naugment\r\naugmentation\r\naugmentative\r\naugmented\r\naugmentin\r\naugur\r\naugury\r\naugust\r\naugusta\r\naugustan\r\naugustine\r\naugustinian\r\naugustus\r\nauk\r\nauklet\r\naulacorhyncus\r\nauld\r\naulostomidae\r\naulostomus\r\naum\r\naunt\r\nauntie\r\naunty\r\naura\r\naural\r\naureate\r\naurelius\r\naureolaria\r\naureole\r\naureomycin\r\nauric\r\nauricle\r\nauricula\r\nauricular\r\nauriculare\r\nauricularia\r\nauriculariaceae\r\nauriculariales\r\nauriculate\r\nauriculated\r\nauriculoventricular\r\nauriferous\r\nauriform\r\naurify\r\nauriga\r\nauriparus\r\nauriscope\r\naurochs\r\naurora\r\nauroral\r\naurorean\r\nauroscope\r\naurous\r\nauschwitz\r\nauscultate\r\nauscultation\r\nauscultatory\r\nauspex\r\nauspicate\r\nauspice\r\nauspices\r\nauspicious\r\nauspiciously\r\nauspiciousness\r\naussie\r\nausten\r\naustenite\r\naustenitic\r\naustere\r\naustereness\r\nausterity\r\nausterlitz\r\naustin\r\naustral\r\naustralasia\r\naustralasian\r\naustralia\r\naustralian\r\naustralopithecine\r\naustralopithecus\r\naustria\r\naustria-hungary\r\naustrian\r\naustro-asiatic\r\naustrocedrus\r\naustronesia\r\naustronesian\r\naustrotaxus\r\nautacoid\r\nautacoidal\r\nautarchic\r\nautarchical\r\nautarchy\r\nautarkic\r\nautarkical\r\nautarky\r\nauteur\r\nauthentic\r\nauthentically\r\nauthenticate\r\nauthenticated\r\nauthentication\r\nauthenticator\r\nauthenticity\r\nauthor\r\nauthoress\r\nauthorial\r\nauthorisation\r\nauthorise\r\nauthorised\r\nauthoriser\r\nauthoritarian\r\nauthoritarianism\r\nauthoritative\r\nauthoritatively\r\nauthorities\r\nauthority\r\nauthorization\r\nauthorize\r\nauthorized\r\nauthorizer\r\nauthorship\r\nautism\r\nautistic\r\nauto\r\nauto-changer\r\nauto-da-fe\r\nauto-mechanic\r\nautoantibody\r\nautobahn\r\nautobiographer\r\nautobiographic\r\nautobiographical\r\nautobiography\r\nautobus\r\nautocatalysis\r\nautocatalytic\r\nautochthon\r\nautochthonal\r\nautochthonic\r\nautochthonous\r\nautochthony\r\nautoclave\r\nautocoid\r\nautocracy\r\nautocrat\r\nautocratic\r\nautocratically\r\nautocue\r\nautodidact\r\nautodidactic\r\nautoecious\r\nautoerotic\r\nautoeroticism\r\nautoerotism\r\nautofluorescence\r\nautofluorescent\r\nautofocus\r\nautogamic\r\nautogamous\r\nautogamy\r\nautogenesis\r\nautogenetic\r\nautogenic\r\nautogenics\r\nautogenous\r\nautogeny\r\nautogiro\r\nautograft\r\nautograph\r\nautographed\r\nautographic\r\nautogyro\r\nautoicous\r\nautoimmune\r\nautoimmunity\r\nautoinjector\r\nautolatry\r\nautoloader\r\nautoloading\r\nautologous\r\nautolysis\r\nautolytic\r\nautomaker\r\nautomat\r\nautomate\r\nautomated\r\nautomatic\r\nautomatically\r\nautomation\r\nautomatise\r\nautomatism\r\nautomatize\r\nautomaton\r\nautomatonlike\r\nautomeris\r\nautomobile\r\nautomobilist\r\nautomotive\r\nautomysophobia\r\nautonomic\r\nautonomous\r\nautonomy\r\nautophyte\r\nautophytic\r\nautopilot\r\nautoplastic\r\nautoplasty\r\nautopsy\r\nautoradiograph\r\nautoradiographic\r\nautoradiography\r\nautoregulation\r\nautosemantic\r\nautosexing\r\nautosomal\r\nautosome\r\nautostrada\r\nautosuggestion\r\nautotelic\r\nautotelism\r\nautotomic\r\nautotomise\r\nautotomize\r\nautotomy\r\nautotroph\r\nautotrophic\r\nautotype\r\nautotypic\r\nautotypy\r\nautumn\r\nautumn-blooming\r\nautumn-flowering\r\nautumnal\r\nauvergne\r\nauxesis\r\nauxetic\r\nauxiliary\r\nauxin\r\nauxinic\r\nav\r\navadavat\r\navahi\r\navail\r\navailability\r\navailable\r\navailableness\r\navalanche\r\navalokiteshvara\r\navalokitesvara\r\navant-garde\r\navaram\r\navarice\r\navaricious\r\navariciously\r\navariciousness\r\navaritia\r\navascular\r\navatar\r\navellan\r\navellane\r\navena\r\navenge\r\navenged\r\navenger\r\navens\r\naventail\r\naventurine\r\navenue\r\naver\r\naverage\r\naverageness\r\naverment\r\naverrhoa\r\naverroes\r\naverse\r\naversion\r\naversive\r\navert\r\navertable\r\navertible\r\naverting\r\naves\r\navesta\r\navestan\r\navian\r\navianise\r\navianize\r\naviary\r\naviate\r\naviation\r\naviator\r\naviatress\r\naviatrix\r\navicenna\r\navicennia\r\navicenniaceae\r\navid\r\navidity\r\navidness\r\navifauna\r\navifaunal\r\navifaunistic\r\navignon\r\navionic\r\navionics\r\navirulent\r\navitaminosis\r\navitaminotic\r\navo\r\navocado\r\navocation\r\navocational\r\navocet\r\navogadro\r\navoid\r\navoidable\r\navoidance\r\navoirdupois\r\navon\r\navouch\r\navouchment\r\navow\r\navowal\r\navowed\r\navowedly\r\navower\r\navulse\r\navulsion\r\navuncular\r\nawait\r\nawaited\r\nawake\r\nawaken\r\nawakened\r\nawakening\r\naward\r\naward-winning\r\nawarding\r\naware\r\nawareness\r\nawash\r\naway\r\nawayness\r\nawe\r\nawe-inspiring\r\naweary\r\nawed\r\naweigh\r\naweless\r\nawesome\r\nawestricken\r\nawestruck\r\nawful\r\nawfully\r\nawfulness\r\nawheel\r\nawhile\r\nawing\r\nawkward\r\nawkwardness\r\nawl\r\nawl-shaped\r\nawless\r\nawlwort\r\nawn\r\nawned\r\nawning\r\nawninged\r\nawnless\r\nawny\r\nawol\r\nawry\r\nax\r\naxe\r\naxenic\r\naxerophthol\r\naxial\r\naxil\r\naxile\r\naxilla\r\naxillary\r\naxiological\r\naxiology\r\naxiom\r\naxiomatic\r\naxiomatical\r\naxis\r\naxle\r\naxletree\r\naxolemma\r\naxolotl\r\naxon\r\naxonal\r\naxone\r\naxseed\r\nayah\r\nayapana\r\nayatollah\r\naye-aye\r\nayin\r\nayr\r\nayrshire\r\naythya\r\nayurveda\r\naz\r\nazactam\r\nazadirachta\r\nazadirachtin\r\nazalea\r\nazaleastrum\r\nazathioprine\r\nazedarach\r\nazederach\r\nazerbaijan\r\nazerbaijani\r\nazerbajdzhan\r\nazeri\r\nazide\r\nazido\r\nazimuth\r\nazimuthal\r\nazo\r\nazoic\r\nazoimide\r\nazolla\r\nazollaceae\r\nazonal\r\nazonic\r\nazores\r\nazotaemia\r\nazote\r\nazotemia\r\nazotemic\r\nazotic\r\nazoturia\r\nazt\r\naztec\r\naztecan\r\naztreonam\r\nazure\r\nazurite\r\nazygos\r\nazygous\r\nazymia\r\nb\r\nb-52\r\nb-girl\r\nb-horizon\r\nb-meson\r\nb.c.\r\nb.c.e.\r\nb.o.\r\nb.t.u.\r\nb.th.u.\r\nba\r\nbaa\r\nbaa-lamb\r\nbaal\r\nbaas\r\nbaba\r\nbabar\r\nbabassu\r\nbabbitt\r\nbabbitting\r\nbabble\r\nbabbler\r\nbabbling\r\nbabe\r\nbabel\r\nbabelike\r\nbabesiidae\r\nbabies'-breath\r\nbabinski\r\nbabiroussa\r\nbabirusa\r\nbabirussa\r\nbabka\r\nbaboo\r\nbaboon\r\nbaboonish\r\nbabu\r\nbabushka\r\nbaby\r\nbaby-faced\r\nbaby-like\r\nbaby-sit\r\nbaby-sitter\r\nbaby-walker\r\nbaby-wise\r\nbabyhood\r\nbabyish\r\nbabylon\r\nbabylonia\r\nbabylonian\r\nbabyminder\r\nbabyrousa\r\nbabysitter\r\nbabysitting\r\nbabytalk\r\nbacca\r\nbaccalaureate\r\nbaccarat\r\nbaccate\r\nbacchanal\r\nbacchanalia\r\nbacchanalian\r\nbacchant\r\nbacchante\r\nbacchantic\r\nbaccharis\r\nbacchic\r\nbacchus\r\nbacciferous\r\nbaccivorous\r\nbaccy\r\nbach\r\nbachelor\r\nbachelor-at-arms\r\nbachelorette\r\nbachelorhood\r\nbacillaceae\r\nbacillar\r\nbacillariophyceae\r\nbacillary\r\nbacilliform\r\nbacillus\r\nbacitracin\r\nback\r\nback-blast\r\nback-channel\r\nback-formation\r\nback-geared\r\nback-number\r\nback-to-back\r\nbackache\r\nbackband\r\nbackbeat\r\nbackbench\r\nbackbencher\r\nbackbend\r\nbackbite\r\nbackbiter\r\nbackblast\r\nbackboard\r\nbackbone\r\nbackbreaking\r\nbackchat\r\nbackcloth\r\nbackcross\r\nbackdate\r\nbackdoor\r\nbackdown\r\nbackdrop\r\nbacked\r\nbacker\r\nbackfield\r\nbackfire\r\nbackflow\r\nbackflowing\r\nbackgammon\r\nbackground\r\nbackgrounder\r\nbackgrounding\r\nbackhand\r\nbackhanded\r\nbackhander\r\nbackhoe\r\nbacking\r\nbacklash\r\nbackless\r\nbacklighting\r\nbacklog\r\nbackmost\r\nbackpack\r\nbackpacker\r\nbackpacking\r\nbackpedal\r\nbackplate\r\nbackrest\r\nbackroom\r\nbacksaw\r\nbackscatter\r\nbackscratcher\r\nbackseat\r\nbacksheesh\r\nbackside\r\nbackslap\r\nbackslapper\r\nbackslide\r\nbackslider\r\nbacksliding\r\nbackspace\r\nbackspacer\r\nbackspin\r\nbackstage\r\nbackstair\r\nbackstairs\r\nbackstay\r\nbackstitch\r\nbackstop\r\nbackstroke\r\nbackstroker\r\nbackswept\r\nbackswimmer\r\nbacksword\r\nbacktalk\r\nbacktrack\r\nbackup\r\nbackward\r\nbackwardness\r\nbackwards\r\nbackwash\r\nbackwater\r\nbackwoods\r\nbackwoodsman\r\nbackyard\r\nbacon\r\nbacteremia\r\nbacteremic\r\nbacteria\r\nbacteriacide\r\nbacteriaemia\r\nbacterial\r\nbactericidal\r\nbactericide\r\nbacteriemia\r\nbacteriochlorophyll\r\nbacterioid\r\nbacterioidal\r\nbacteriologic\r\nbacteriological\r\nbacteriologist\r\nbacteriology\r\nbacteriolysis\r\nbacteriolytic\r\nbacteriophage\r\nbacteriophagic\r\nbacteriophagous\r\nbacteriostasis\r\nbacteriostat\r\nbacteriostatic\r\nbacterise\r\nbacterium\r\nbacterize\r\nbacteroid\r\nbacteroidaceae\r\nbacteroidal\r\nbacteroides\r\nbaculiform\r\nbad\r\nbad-mannered\r\nbad-tempered\r\nbadaga\r\nbaddeleyite\r\nbaddie\r\nbade\r\nbadge\r\nbadger\r\nbadger-like\r\nbadgerer\r\nbadgering\r\nbadinage\r\nbadlands\r\nbadly\r\nbadminton\r\nbadmouth\r\nbadness\r\nbaeda\r\nbaedeker\r\nbaffle\r\nbaffled\r\nbafflement\r\nbaffling\r\nbag\r\nbag-shaped\r\nbagascosis\r\nbagasse\r\nbagassosis\r\nbagatelle\r\nbagdad\r\nbagel\r\nbagful\r\nbaggage\r\nbaggageman\r\nbagger\r\nbagging\r\nbaggy\r\nbaghdad\r\nbagman\r\nbagnio\r\nbagpipe\r\nbagpiper\r\nbaguet\r\nbaguette\r\nbahai\r\nbahaism\r\nbahamas\r\nbahamian\r\nbahasa\r\nbahrain\r\nbahraini\r\nbahrein\r\nbahreini\r\nbaht\r\nbai\r\nbaic\r\nbail\r\nbailable\r\nbailee\r\nbailey\r\nbailiff\r\nbailiffship\r\nbailiwick\r\nbailment\r\nbailor\r\nbain-marie\r\nbaiomys\r\nbairava\r\nbairdiella\r\nbairiki\r\nbairn\r\nbaisa\r\nbaisakh\r\nbait\r\nbaiting\r\nbaiza\r\nbaize\r\nbake\r\nbakeapple\r\nbaked\r\nbakehouse\r\nbakelite\r\nbaker\r\nbakersfield\r\nbakery\r\nbakeshop\r\nbaking\r\nbaklava\r\nbaksheesh\r\nbakshis\r\nbakshish\r\nbaku\r\nbakunin\r\nbalaclava\r\nbalaena\r\nbalaeniceps\r\nbalaenicipitidae\r\nbalaenidae\r\nbalaenoptera\r\nbalaenopteridae\r\nbalagan\r\nbalalaika\r\nbalance\r\nbalanced\r\nbalancer\r\nbalanchine\r\nbalancing\r\nbalanidae\r\nbalanitis\r\nbalanoposthitis\r\nbalanus\r\nbalarama\r\nbalas\r\nbalata\r\nbalaton\r\nbalboa\r\nbalbriggan\r\nbalconied\r\nbalcony\r\nbald\r\nbald-faced\r\nbald-headed\r\nbald-pated\r\nbaldachin\r\nbalder\r\nbalderdash\r\nbaldhead\r\nbalding\r\nbaldness\r\nbaldpate\r\nbaldr\r\nbaldric\r\nbaldrick\r\nbaldwin\r\nbaldy\r\nbale\r\nbaleen\r\nbalefire\r\nbaleful\r\nbalefulness\r\nbalenciaga\r\nbalfour\r\nbali\r\nbalibago\r\nbalinese\r\nbalistes\r\nbalistidae\r\nbalk\r\nbalkan\r\nbalkanise\r\nbalkanize\r\nbalkans\r\nbalker\r\nbalkiness\r\nbalking\r\nbalkline\r\nbalky\r\nball\r\nball-breaker\r\nball-buster\r\nball-hawking\r\nball-shaped\r\nballad\r\nballade\r\nballadeer\r\nballast\r\nballcock\r\nballdress\r\nballerina\r\nballet\r\nballetic\r\nballetomane\r\nballetomania\r\nballgame\r\nballista\r\nballistic\r\nballistics\r\nballistite\r\nballistocardiogram\r\nballistocardiograph\r\nballock\r\nballoon\r\nballoonfish\r\nballooning\r\nballoonist\r\nballot\r\nballota\r\nballoting\r\nballottement\r\nballpark\r\nballpen\r\nballplayer\r\nballpoint\r\nballroom\r\nballs-up\r\nballup\r\nbally\r\nballyhoo\r\nballyrag\r\nbalm\r\nbalmily\r\nbalminess\r\nbalmoral\r\nbalmy\r\nbalochi\r\nbaloney\r\nbalsa\r\nbalsam\r\nbalsam-scented\r\nbalsamic\r\nbalsaminaceae\r\nbalsamorhiza\r\nbalsamroot\r\nbalsamy\r\nbalthasar\r\nbalthazar\r\nbaltic\r\nbaltic-finnic\r\nbaltimore\r\nbalto-slavic\r\nbalto-slavonic\r\nbaluchi\r\nbaluster\r\nbalusters\r\nbalustrade\r\nbalzac\r\nbalzacian\r\nbam\r\nbamako\r\nbambino\r\nbamboo\r\nbamboozle\r\nbambusa\r\nbambuseae\r\nban\r\nbanal\r\nbanality\r\nbanana\r\nbanana-like\r\nbanausic\r\nband\r\nbandage\r\nbandaged\r\nbandaging\r\nbandana\r\nbandanna\r\nbandbox\r\nbandeau\r\nbanded\r\nbandelet\r\nbandelette\r\nbanderilla\r\nbanderillero\r\nbandicoot\r\nbanding\r\nbandit\r\nbanditry\r\nbandleader\r\nbandlet\r\nbandmaster\r\nbandoleer\r\nbandolier\r\nbandsaw\r\nbandsman\r\nbandstand\r\nbandtail\r\nbandung\r\nbandwagon\r\nbandwidth\r\nbandy\r\nbandy-legged\r\nbane\r\nbaneberry\r\nbaneful\r\nbanefully\r\nbanff\r\nbang\r\nbang-up\r\nbangalore\r\nbanger\r\nbangiaceae\r\nbanging\r\nbangkok\r\nbangladesh\r\nbangladeshi\r\nbangle\r\nbangor\r\nbangtail\r\nbangui\r\nbanian\r\nbanish\r\nbanishment\r\nbanister\r\nbanjo\r\nbanjul\r\nbank\r\nbankable\r\nbankbook\r\nbanker\r\nbankhead\r\nbankia\r\nbanking\r\nbanknote\r\nbankroll\r\nbankrupt\r\nbankruptcy\r\nbanks\r\nbanksia\r\nbanned\r\nbanner\r\nbanneret\r\nbanning\r\nbanning-order\r\nbannister\r\nbannock\r\nbannockburn\r\nbanns\r\nbanquet\r\nbanqueting\r\nbanquette\r\nbanshee\r\nbanshie\r\nbantam\r\nbantamweight\r\nbanteng\r\nbanter\r\nbantering\r\nbanteringly\r\nbanting\r\nbantoid\r\nbantu\r\nbantu-speaking\r\nbanyan\r\nbanzai\r\nbaobab\r\nbap\r\nbaphia\r\nbaptise\r\nbaptised\r\nbaptisia\r\nbaptism\r\nbaptismal\r\nbaptist\r\nbaptistery\r\nbaptistic\r\nbaptistry\r\nbaptists\r\nbaptize\r\nbaptized\r\nbar\r\nbar-shaped\r\nbaraka\r\nbaranduki\r\nbarany\r\nbarb\r\nbarbacan\r\nbarbadian\r\nbarbados\r\nbarbarea\r\nbarbarian\r\nbarbaric\r\nbarbarisation\r\nbarbarise\r\nbarbarism\r\nbarbarity\r\nbarbarization\r\nbarbarize\r\nbarbarossa\r\nbarbarous\r\nbarbarousness\r\nbarbary\r\nbarbasco\r\nbarbate\r\nbarbecue\r\nbarbecued\r\nbarbecuing\r\nbarbed\r\nbarbel\r\nbarbell\r\nbarbellate\r\nbarbeque\r\nbarber\r\nbarberry\r\nbarbershop\r\nbarbet\r\nbarbette\r\nbarbican\r\nbarbital\r\nbarbitone\r\nbarbiturate\r\nbarbu\r\nbarbuda\r\nbarbwire\r\nbarcarole\r\nbarcarolle\r\nbarcelona\r\nbard\r\nbarde\r\nbardeen\r\nbardic\r\nbardolatry\r\nbare\r\nbare-ass\r\nbare-assed\r\nbare-breasted\r\nbare-knuckle\r\nbare-knuckled\r\nbareback\r\nbarebacked\r\nbareboat\r\nbareboating\r\nbared\r\nbarefaced\r\nbarefacedly\r\nbarefoot\r\nbarefooted\r\nbarehanded\r\nbareheaded\r\nbarelegged\r\nbarely\r\nbareness\r\nbarf\r\nbargain\r\nbargain-priced\r\nbargainer\r\nbargaining\r\nbarge\r\nbargee\r\nbargello\r\nbargeman\r\nbari\r\nbaric\r\nbarilla\r\nbaring\r\nbarish\r\nbarite\r\nbaritone\r\nbarium\r\nbark\r\nbark-louse\r\nbarkeep\r\nbarkeeper\r\nbarker\r\nbarkley\r\nbarky\r\nbarley\r\nbarley-sugar\r\nbarleycorn\r\nbarm\r\nbarmaid\r\nbarman\r\nbarmbrack\r\nbarmy\r\nbarn\r\nbarnacle\r\nbarnacled\r\nbarnburner\r\nbarndoor\r\nbarnful\r\nbarnstorm\r\nbarnstormer\r\nbarnum\r\nbarnyard\r\nbarograph\r\nbarographic\r\nbarometer\r\nbarometric\r\nbarometrical\r\nbaron\r\nbaronage\r\nbaronduki\r\nbaroness\r\nbaronet\r\nbaronetage\r\nbaronetcy\r\nbaronetise\r\nbaronetize\r\nbarong\r\nbaronial\r\nbarony\r\nbaroque\r\nbaroqueness\r\nbaroreceptor\r\nbarosaur\r\nbarosaurus\r\nbarouche\r\nbarque\r\nbarrack\r\nbarracking\r\nbarracuda\r\nbarrage\r\nbarramunda\r\nbarramundi\r\nbarranquilla\r\nbarrater\r\nbarrator\r\nbarratry\r\nbarred\r\nbarrel\r\nbarrel-shaped\r\nbarreled\r\nbarrelfish\r\nbarrelful\r\nbarrelhouse\r\nbarrelled\r\nbarrels\r\nbarren\r\nbarrenness\r\nbarrenwort\r\nbarrette\r\nbarretter\r\nbarricade\r\nbarricaded\r\nbarricado\r\nbarrie\r\nbarrier\r\nbarring\r\nbarrio\r\nbarrister\r\nbarroom\r\nbarrow\r\nbarrow-boy\r\nbarrow-man\r\nbarrowful\r\nbarrymore\r\nbars\r\nbarstow\r\nbart\r\nbartender\r\nbarter\r\nbarterer\r\nbarth\r\nbarthelme\r\nbartholdi\r\nbartholin\r\nbartlesville\r\nbartlett\r\nbartok\r\nbartonia\r\nbartramia\r\nbaruch\r\nbarunduki\r\nbarycenter\r\nbarye\r\nbaryon\r\nbaryshnikov\r\nbaryta\r\nbarytes\r\nbarytic\r\nbarytone\r\nbasal\r\nbasalt\r\nbasaltic\r\nbascule\r\nbase\r\nbase-forming\r\nbaseball\r\nbaseboard\r\nbaseborn\r\nbased\r\nbasel\r\nbaseless\r\nbaseline\r\nbasely\r\nbasement\r\nbaseness\r\nbasenji\r\nbash\r\nbashful\r\nbashfully\r\nbashfulness\r\nbasia\r\nbasic\r\nbasically\r\nbasics\r\nbasidial\r\nbasidiocarp\r\nbasidiolichen\r\nbasidiomycete\r\nbasidiomycetes\r\nbasidiomycetous\r\nbasidiomycota\r\nbasidiomycotina\r\nbasidiospore\r\nbasidiosporous\r\nbasidium\r\nbasifixed\r\nbasify\r\nbasil\r\nbasilar\r\nbasilary\r\nbasileus\r\nbasilica\r\nbasilican\r\nbasilicata\r\nbasiliscus\r\nbasilisk\r\nbasin\r\nbasinal\r\nbasined\r\nbasinet\r\nbasinful\r\nbasipetal\r\nbasis\r\nbasiscopic\r\nbask\r\nbasket\r\nbasket-shaped\r\nbasketball\r\nbasketeer\r\nbasketful\r\nbasketmaker\r\nbasketry\r\nbasketweaver\r\nbasle\r\nbasophil\r\nbasophile\r\nbasophilia\r\nbasophilic\r\nbasotho\r\nbasque\r\nbasra\r\nbass\r\nbassariscidae\r\nbassariscus\r\nbassarisk\r\nbasse-normandie\r\nbasset\r\nbasseterre\r\nbassia\r\nbassine\r\nbassinet\r\nbassist\r\nbasso\r\nbassoon\r\nbassoonist\r\nbasswood\r\nbast\r\nbastard\r\nbastardisation\r\nbastardise\r\nbastardised\r\nbastardization\r\nbastardize\r\nbastardized\r\nbastardly\r\nbastardy\r\nbaste\r\nbaster\r\nbastille\r\nbastinado\r\nbasting\r\nbastion\r\nbastioned\r\nbastnaesite\r\nbastnasite\r\nbasuco\r\nbasuto\r\nbasutoland\r\nbat\r\nbata\r\nbataan\r\nbatch\r\nbate\r\nbated\r\nbatfish\r\nbatfowl\r\nbath\r\nbathe\r\nbather\r\nbathetic\r\nbathhouse\r\nbathing\r\nbatholite\r\nbatholith\r\nbatholithic\r\nbatholitic\r\nbathometer\r\nbathos\r\nbathrobe\r\nbathroom\r\nbathsheba\r\nbathtub\r\nbathyal\r\nbathyergidae\r\nbathyergus\r\nbathymeter\r\nbathymetric\r\nbathymetrical\r\nbathymetry\r\nbathyscape\r\nbathyscaph\r\nbathyscaphe\r\nbathysphere\r\nbatidaceae\r\nbatik\r\nbatis\r\nbatiste\r\nbatman\r\nbatna\r\nbatoidei\r\nbaton\r\nbatrachia\r\nbatrachian\r\nbatrachoididae\r\nbatrachomyomachia\r\nbatrachoseps\r\nbats\r\nbatsman\r\nbatswana\r\nbattalion\r\nbatten\r\nbatter\r\nbatter-fried\r\nbattercake\r\nbattered\r\nbattering\r\nbattery\r\nbattery-acid\r\nbattery-powered\r\nbatting\r\nbattle\r\nbattle-ax\r\nbattle-axe\r\nbattle-scarred\r\nbattledore\r\nbattlefield\r\nbattlefront\r\nbattleful\r\nbattleground\r\nbattlement\r\nbattlemented\r\nbattler\r\nbattleship\r\nbattlesight\r\nbattlewagon\r\nbattue\r\nbatty\r\nbatwing\r\nbauble\r\nbaud\r\nbaudelaire\r\nbauhaus\r\nbauhinia\r\nbaulk\r\nbaulk-line\r\nbaulker\r\nbaum\r\nbauxite\r\nbauxitic\r\nbavaria\r\nbavarian\r\nbawbee\r\nbawd\r\nbawdiness\r\nbawdry\r\nbawdy\r\nbawdyhouse\r\nbawl\r\nbawler\r\nbawling\r\nbay\r\nbaya\r\nbayard\r\nbayat\r\nbayberry\r\nbaycol\r\nbayer\r\nbayes\r\nbayesian\r\nbayonet\r\nbayonne\r\nbayou\r\nbayrut\r\nbazaar\r\nbazar\r\nbazooka\r\nbb\r\nbbl\r\nbbs\r\nbc\r\nbce\r\nbd\r\nbdellium\r\nbe\r\nbeach\r\nbeachball\r\nbeachcomber\r\nbeached\r\nbeachfront\r\nbeachhead\r\nbeachlike\r\nbeachwear\r\nbeachy\r\nbeacon\r\nbead\r\nbeaded\r\nbeading\r\nbeadle\r\nbeadlike\r\nbeads\r\nbeadsman\r\nbeadwork\r\nbeady\r\nbeady-eyed\r\nbeagle\r\nbeagling\r\nbeak\r\nbeaked\r\nbeaker\r\nbeakless\r\nbeaklike\r\nbeam\r\nbeam-ends\r\nbeaming\r\nbeamish\r\nbeamy\r\nbean\r\nbean-like\r\nbean-shaped\r\nbeanbag\r\nbeanball\r\nbeaner\r\nbeanfeast\r\nbeanie\r\nbeano\r\nbeanstalk\r\nbeantown\r\nbeany\r\nbear\r\nbear-sized\r\nbearable\r\nbearberry\r\nbearcat\r\nbeard\r\nbearded\r\nbeardless\r\nbeardown\r\nbearer\r\nbearing\r\nbearish\r\nbearnaise\r\nbearskin\r\nbearwood\r\nbeast\r\nbeastliness\r\nbeastly\r\nbeat\r\nbeat-up\r\nbeatable\r\nbeaten\r\nbeaten-up\r\nbeater\r\nbeatific\r\nbeatification\r\nbeatified\r\nbeatify\r\nbeating\r\nbeatitude\r\nbeatles\r\nbeatnik\r\nbeatniks\r\nbeatrice\r\nbeats\r\nbeau\r\nbeaugregory\r\nbeaujolais\r\nbeaumont\r\nbeaumontia\r\nbeaut\r\nbeauteous\r\nbeauteousness\r\nbeautician\r\nbeautification\r\nbeautiful\r\nbeautifully\r\nbeautify\r\nbeauty\r\nbeauvoir\r\nbeaver\r\nbeaver-like\r\nbeaverbrook\r\nbebop\r\nbecalm\r\nbecalmed\r\nbechamel\r\nbechance\r\nbecharm\r\nbechuana\r\nbeck\r\nbecket\r\nbeckett\r\nbeckley\r\nbeckon\r\nbecloud\r\nbecome\r\nbecoming\r\nbecomingness\r\nbecquerel\r\nbed\r\nbed-and-breakfast\r\nbed-ground\r\nbed-hop\r\nbed-wetting\r\nbeda\r\nbedamn\r\nbedaub\r\nbedaubed\r\nbedaze\r\nbedazzle\r\nbedbug\r\nbedchamber\r\nbedclothes\r\nbedcover\r\nbedded\r\nbedder\r\nbedding\r\nbede\r\nbedeck\r\nbedecked\r\nbedesman\r\nbedevil\r\nbedevilment\r\nbedew\r\nbedewed\r\nbedfast\r\nbedfellow\r\nbedframe\r\nbedground\r\nbedhop\r\nbedight\r\nbedim\r\nbedimmed\r\nbedizen\r\nbedlam\r\nbedlamite\r\nbedless\r\nbedouin\r\nbedpan\r\nbedpost\r\nbedraggle\r\nbedraggled\r\nbedrest\r\nbedrid\r\nbedridden\r\nbedrock\r\nbedroll\r\nbedroom\r\nbedside\r\nbedsit\r\nbedsitter\r\nbedsore\r\nbedspread\r\nbedspring\r\nbedstead\r\nbedstraw\r\nbedtime\r\nbeduin\r\nbedwetter\r\nbee\r\nbee-like\r\nbeebalm\r\nbeebread\r\nbeech\r\nbeechen\r\nbeecher\r\nbeechnut\r\nbeechwood\r\nbeef\r\nbeefalo\r\nbeefburger\r\nbeefcake\r\nbeefeater\r\nbeefed-up\r\nbeefsteak\r\nbeefwood\r\nbeefy\r\nbeehive\r\nbeekeeper\r\nbeekeeping\r\nbeeline\r\nbeelzebub\r\nbeep\r\nbeeper\r\nbeer\r\nbeerbohm\r\nbeery\r\nbeeswax\r\nbeet\r\nbeethoven\r\nbeethovenian\r\nbeetle\r\nbeetle-browed\r\nbeetleweed\r\nbeetling\r\nbeetroot\r\nbefall\r\nbefit\r\nbefitting\r\nbefittingly\r\nbefog\r\nbefogged\r\nbefool\r\nbefooling\r\nbefore\r\nbeforehand\r\nbefoul\r\nbefouled\r\nbefoulment\r\nbefriend\r\nbefuddle\r\nbefuddled\r\nbefuddlement\r\nbeg\r\nbeget\r\nbegetter\r\nbeggar\r\nbeggar's-ticks\r\nbeggar-my-neighbor\r\nbeggar-my-neighbour\r\nbeggar-ticks\r\nbeggarly\r\nbeggarman\r\nbeggarweed\r\nbeggarwoman\r\nbeggary\r\nbegging\r\nbegild\r\nbegin\r\nbeginner\r\nbeginning\r\nbegird\r\nbegonia\r\nbegoniaceae\r\nbegotten\r\nbegrime\r\nbegrimed\r\nbegrudge\r\nbeguile\r\nbeguiled\r\nbeguilement\r\nbeguiler\r\nbeguiling\r\nbeguine\r\nbegum\r\nbehalf\r\nbehave\r\nbehavior\r\nbehavioral\r\nbehaviorism\r\nbehaviorist\r\nbehavioristic\r\nbehaviour\r\nbehavioural\r\nbehaviourism\r\nbehaviourist\r\nbehaviouristic\r\nbehead\r\nbeheaded\r\nbeheading\r\nbehemoth\r\nbehest\r\nbehind\r\nbehind-the-scenes\r\nbehindhand\r\nbehmen\r\nbehmenism\r\nbehold\r\nbeholden\r\nbeholder\r\nbeholding\r\nbehoove\r\nbehove\r\nbehrens\r\nbehring\r\nbeige\r\nbeigel\r\nbeignet\r\nbeijing\r\nbeing\r\nbeingness\r\nbeira\r\nbeirut\r\nbejewel\r\nbejeweled\r\nbejewelled\r\nbel\r\nbel-merodach\r\nbelabor\r\nbelabour\r\nbelamcanda\r\nbelarus\r\nbelarusian\r\nbelated\r\nbelatedly\r\nbelau\r\nbelay\r\nbelch\r\nbelching\r\nbeldam\r\nbeldame\r\nbeleaguer\r\nbeleaguering\r\nbelem\r\nbelemnite\r\nbelemnitic\r\nbelemnitidae\r\nbelemnoidea\r\nbelfast\r\nbelfry\r\nbelgian\r\nbelgique\r\nbelgium\r\nbelgrade\r\nbelie\r\nbelief\r\nbelievability\r\nbelievable\r\nbelievably\r\nbelieve\r\nbeliever\r\nbelieving\r\nbelievingly\r\nbelike\r\nbelisarius\r\nbelittle\r\nbelittled\r\nbelittling\r\nbelize\r\nbell\r\nbell-bottom\r\nbell-bottomed\r\nbell-bottoms\r\nbell-shaped\r\nbelladonna\r\nbellarmine\r\nbellarmino\r\nbellbird\r\nbellbottom\r\nbellboy\r\nbelle\r\nbellerophon\r\nbelles-lettres\r\nbelletristic\r\nbellflower\r\nbellhop\r\nbellicose\r\nbellicoseness\r\nbellicosity\r\nbellied\r\nbelligerence\r\nbelligerency\r\nbelligerent\r\nbelligerently\r\nbelling\r\nbellingham\r\nbellini\r\nbellis\r\nbellman\r\nbelloc\r\nbellow\r\nbellower\r\nbellowing\r\nbellows\r\nbellpull\r\nbellwether\r\nbellwort\r\nbelly\r\nbelly-flop\r\nbelly-land\r\nbelly-up\r\nbellyache\r\nbellyacher\r\nbellyband\r\nbellybutton\r\nbellyful\r\nbellying\r\nbellylaugh\r\nbellyless\r\nbelmont\r\nbelong\r\nbelonging\r\nbelongings\r\nbelonidae\r\nbelorussia\r\nbelorussian\r\nbelostomatidae\r\nbeloved\r\nbelow\r\nbelowground\r\nbelsen\r\nbelshazzar\r\nbelt\r\nbelt-fed\r\nbelt-like\r\nbelt-shaped\r\nbelted\r\nbelting\r\nbeltless\r\nbeltlike\r\nbeluga\r\nbelvedere\r\nbema\r\nbemidji\r\nbemire\r\nbemisia\r\nbemoan\r\nbemock\r\nbemuse\r\nbemused\r\nbemusement\r\nben\r\nbenadryl\r\nbench\r\nbenchley\r\nbenchmark\r\nbend\r\nbendability\r\nbendable\r\nbenday\r\nbended\r\nbender\r\nbending\r\nbendopa\r\nbends\r\nbeneath\r\nbenedick\r\nbenedict\r\nbenedictine\r\nbenediction\r\nbenedictive\r\nbenedictory\r\nbenefact\r\nbenefaction\r\nbenefactor\r\nbenefactress\r\nbenefic\r\nbenefice\r\nbeneficed\r\nbeneficence\r\nbeneficent\r\nbeneficial\r\nbeneficiary\r\nbeneficiate\r\nbeneficiation\r\nbenefit\r\nbenelux\r\nbenet\r\nbenevolence\r\nbenevolent\r\nbenevolently\r\nbenficiate\r\nbengal\r\nbengali\r\nbenghazi\r\nbenight\r\nbenighted\r\nbenign\r\nbenignancy\r\nbenignant\r\nbenignantly\r\nbenignity\r\nbenignly\r\nbenin\r\nbeninese\r\nbenison\r\nbenjamin\r\nbenne\r\nbennet\r\nbennett\r\nbennettitaceae\r\nbennettitales\r\nbennettitis\r\nbenni\r\nbennie\r\nbennington\r\nbenniseed\r\nbenny\r\nbent\r\nbent-grass\r\nbenthal\r\nbentham\r\nbenthic\r\nbenthonic\r\nbenthos\r\nbenton\r\nbentonite\r\nbentonitic\r\nbentwood\r\nbenumb\r\nbenumbed\r\nbenweed\r\nbenzedrine\r\nbenzene\r\nbenzenoid\r\nbenzine\r\nbenzoate\r\nbenzocaine\r\nbenzodiazepine\r\nbenzofuran\r\nbenzoic\r\nbenzoin\r\nbenzol\r\nbenzoquinone\r\nbenzyl\r\nbenzylic\r\nbenzylpenicillin\r\nbeograd\r\nbeowulf\r\nbeplaster\r\nbequeath\r\nbequest\r\nberate\r\nberating\r\nberber\r\nberberidaceae\r\nberberis\r\nberceuse\r\nbercy\r\nbereave\r\nbereaved\r\nbereavement\r\nbereft\r\nberet\r\nberg\r\nbergall\r\nbergamot\r\nbergen\r\nbergenia\r\nbergman\r\nbergson\r\nberia\r\nberiberi\r\nbering\r\nberit\r\nberith\r\nberk\r\nberkeley\r\nberkelium\r\nberkshire\r\nberkshires\r\nberlage\r\nberlin\r\nberliner\r\nberlioz\r\nberm\r\nbermuda\r\nbermudan\r\nbermudas\r\nbermudian\r\nbern\r\nbernard\r\nberne\r\nbernhardt\r\nbernini\r\nbernoulli\r\nbernstein\r\nberoe\r\nberra\r\nberretta\r\nberried\r\nberry\r\nberrylike\r\nberserk\r\nberserker\r\nberteroa\r\nberth\r\nbertholletia\r\nbertillon\r\nbertolucci\r\nberycomorphi\r\nberyl\r\nberyllium\r\nberzelius\r\nbeseech\r\nbeseeching\r\nbeseechingly\r\nbeseem\r\nbeset\r\nbeshrew\r\nbesides\r\nbesiege\r\nbesieged\r\nbesieger\r\nbesieging\r\nbesmear\r\nbesmirch\r\nbesmirched\r\nbesom\r\nbesot\r\nbesotted\r\nbespangle\r\nbespangled\r\nbespatter\r\nbespattered\r\nbespeak\r\nbespeckle\r\nbespectacled\r\nbesplashed\r\nbespoke\r\nbespoken\r\nbespot\r\nbesprent\r\nbesprinkle\r\nbessel\r\nbessemer\r\nbessera\r\nbesseya\r\nbest\r\nbest-known\r\nbest-loved\r\nbest-selling\r\nbestial\r\nbestialise\r\nbestiality\r\nbestialize\r\nbestially\r\nbestiary\r\nbestir\r\nbestow\r\nbestowal\r\nbestowed\r\nbestower\r\nbestowment\r\nbestrew\r\nbestride\r\nbestseller\r\nbestubbled\r\nbet\r\nbeta\r\nbeta-adrenoceptor\r\nbeta-carotene\r\nbeta-interferon\r\nbeta-lactamase\r\nbeta-lipoprotein\r\nbeta-naphthol\r\nbetaine\r\nbetatron\r\nbetel\r\nbetelgeuse\r\nbeth\r\nbethe\r\nbethel\r\nbethink\r\nbethlehem\r\nbethlehem-judah\r\nbethune\r\nbetide\r\nbetimes\r\nbetise\r\nbetoken\r\nbetray\r\nbetrayal\r\nbetrayer\r\nbetraying\r\nbetroth\r\nbetrothal\r\nbetrothed\r\nbetter\r\nbetter-known\r\nbetter-looking\r\nbettering\r\nbetterment\r\nbetting\r\nbettong\r\nbettongia\r\nbettor\r\nbetula\r\nbetulaceae\r\nbetulaceous\r\nbetween\r\nbetweenbrain\r\nbetwixt\r\nbevatron\r\nbevel\r\nbeverage\r\nbeveridge\r\nbevin\r\nbevy\r\nbewail\r\nbeware\r\nbewhisker\r\nbewhiskered\r\nbewilder\r\nbewildered\r\nbewildering\r\nbewilderingly\r\nbewilderment\r\nbewitch\r\nbewitched\r\nbewitchery\r\nbewitching\r\nbewitchingly\r\nbewitchment\r\nbewray\r\nbey\r\nbeyond\r\nbezant\r\nbezel\r\nbezique\r\nbezzant\r\nbh\r\nbhadon\r\nbhadrapada\r\nbhaga\r\nbhagavad-gita\r\nbhagavadgita\r\nbhakti\r\nbhang\r\nbharat\r\nbhutan\r\nbhutanese\r\nbhutani\r\nbi\r\nbialy\r\nbialystoker\r\nbiannual\r\nbias\r\nbiased\r\nbiaural\r\nbiaxal\r\nbiaxate\r\nbiaxial\r\nbib\r\nbib-and-tucker\r\nbibbed\r\nbible\r\nbible-worship\r\nbibless\r\nbiblical\r\nbibliographer\r\nbibliographic\r\nbibliographical\r\nbibliography\r\nbibliolatrous\r\nbibliolatry\r\nbibliomania\r\nbibliomaniacal\r\nbibliophile\r\nbibliophilic\r\nbibliopole\r\nbibliopolic\r\nbibliopolist\r\nbibliothec\r\nbibliotheca\r\nbibliothecal\r\nbibliothecarial\r\nbibliotic\r\nbibliotics\r\nbibliotist\r\nbibos\r\nbibulous\r\nbicameral\r\nbicapsular\r\nbicarbonate\r\nbicentenary\r\nbicentennial\r\nbicentric\r\nbicephalous\r\nbiceps\r\nbichloride\r\nbichromate\r\nbichromated\r\nbichrome\r\nbicipital\r\nbicker\r\nbickering\r\nbicolor\r\nbicolored\r\nbicolour\r\nbicoloured\r\nbiconcave\r\nbiconvex\r\nbicorn\r\nbicornate\r\nbicorne\r\nbicorned\r\nbicornuate\r\nbicornuous\r\nbicuspid\r\nbicuspidate\r\nbicycle\r\nbicycle-built-for-two\r\nbicycler\r\nbicyclic\r\nbicycling\r\nbicyclist\r\nbicylindrical\r\nbid\r\nbida\r\nbiddable\r\nbidder\r\nbidding\r\nbiddy\r\nbide\r\nbidens\r\nbidentate\r\nbidet\r\nbidirectional\r\nbiedermeier\r\nbiennial\r\nbiennially\r\nbier\r\nbierce\r\nbiface\r\nbifacial\r\nbiff\r\nbifid\r\nbifocal\r\nbifocals\r\nbifoliate\r\nbiform\r\nbifurcate\r\nbifurcated\r\nbifurcation\r\nbig\r\nbig-bellied\r\nbig-boned\r\nbig-chested\r\nbig-shouldered\r\nbig-ticket\r\nbigamist\r\nbigamous\r\nbigamy\r\nbigarade\r\nbigeminal\r\nbigeneric\r\nbigeye\r\nbigfoot\r\nbigger\r\nbiggin\r\nbiggish\r\nbighead\r\nbigheaded\r\nbighearted\r\nbigheartedness\r\nbighorn\r\nbight\r\nbigmouthed\r\nbigness\r\nbignonia\r\nbignoniaceae\r\nbignoniaceous\r\nbignoniad\r\nbigos\r\nbigot\r\nbigoted\r\nbigotry\r\nbigram\r\nbigwig\r\nbihar\r\nbihari\r\nbijou\r\nbike\r\nbikers\r\nbikini\r\nbilabial\r\nbilabiate\r\nbilateral\r\nbilateralism\r\nbilaterality\r\nbilaterally\r\nbilberry\r\nbilby\r\nbile\r\nbilestone\r\nbilge\r\nbilges\r\nbilgewater\r\nbilgy\r\nbilharzia\r\nbilharziasis\r\nbiliary\r\nbilimbi\r\nbilinear\r\nbilingual\r\nbilingualism\r\nbilingualist\r\nbilious\r\nbiliousness\r\nbilirubin\r\nbilk\r\nbill\r\nbillabong\r\nbillboard\r\nbilled\r\nbillet\r\nbillfish\r\nbillfold\r\nbillhook\r\nbilliard\r\nbilliards\r\nbilling\r\nbillings\r\nbillingsgate\r\nbillion\r\nbillionaire\r\nbillionth\r\nbillow\r\nbillowing\r\nbillowy\r\nbilly\r\nbilly-ho\r\nbillyo\r\nbillyoh\r\nbillystick\r\nbilobate\r\nbilobated\r\nbilobed\r\nbilocation\r\nbilocular\r\nbiloculate\r\nbiloxi\r\nbilsted\r\nbiltong\r\nbimanual\r\nbimbo\r\nbimester\r\nbimestrial\r\nbimetal\r\nbimetallic\r\nbimetallism\r\nbimetallist\r\nbimetallistic\r\nbimillenary\r\nbimillenial\r\nbimillennium\r\nbimli\r\nbimodal\r\nbimolecular\r\nbimonthly\r\nbimotored\r\nbin\r\nbinary\r\nbinate\r\nbinaural\r\nbinaurally\r\nbind\r\nbindable\r\nbinder\r\nbindery\r\nbinding\r\nbindweed\r\nbine\r\nbinet\r\nbinful\r\nbinge\r\nbinger\r\nbinghamton\r\nbingle\r\nbingo\r\nbinnacle\r\nbinocular\r\nbinoculars\r\nbinomial\r\nbinturong\r\nbinuclear\r\nbinucleate\r\nbinucleated\r\nbio-assay\r\nbioarm\r\nbioassay\r\nbioattack\r\nbiocatalyst\r\nbiocatalytic\r\nbiochemical\r\nbiochemist\r\nbiochemistry\r\nbiochip\r\nbioclimatic\r\nbioclimatology\r\nbiodefence\r\nbiodefense\r\nbiodegradable\r\nbiodegrade\r\nbiodiversity\r\nbioelectricity\r\nbioengineering\r\nbioethics\r\nbiofeedback\r\nbioflavinoid\r\nbiogenesis\r\nbiogenetic\r\nbiogenic\r\nbiogenous\r\nbiogeny\r\nbiogeographic\r\nbiogeographical\r\nbiogeography\r\nbiographer\r\nbiographic\r\nbiographical\r\nbiography\r\nbiohazard\r\nbioko\r\nbiologic\r\nbiological\r\nbiologism\r\nbiologist\r\nbiologistic\r\nbiology\r\nbioluminescence\r\nbioluminescent\r\nbiomass\r\nbiome\r\nbiomedical\r\nbiomedicine\r\nbiometrics\r\nbiometry\r\nbionic\r\nbionics\r\nbionomic\r\nbionomical\r\nbionomics\r\nbiont\r\nbiophysicist\r\nbiophysics\r\nbiopiracy\r\nbiopsy\r\nbioremediation\r\nbiosafety\r\nbioscience\r\nbioscope\r\nbiosphere\r\nbiostatistics\r\nbiosynthesis\r\nbiosynthetic\r\nbiosystematic\r\nbiosystematics\r\nbiosystematy\r\nbiota\r\nbiotechnology\r\nbioterrorism\r\nbiotic\r\nbiotin\r\nbiotite\r\nbiotitic\r\nbiotype\r\nbiotypic\r\nbiovular\r\nbioweapon\r\nbiparous\r\nbipartisan\r\nbipartite\r\nbipartizan\r\nbiped\r\nbipedal\r\nbipedalism\r\nbipinnate\r\nbipinnatifid\r\nbiplane\r\nbipolar\r\nbiprism\r\nbiquadrate\r\nbiquadratic\r\nbiracial\r\nbiradial\r\nbiramous\r\nbirch\r\nbirchbark\r\nbirchen\r\nbird\r\nbird's-eye\r\nbird-like\r\nbird-nest\r\nbird-on-the-wing\r\nbird-scarer\r\nbirdbath\r\nbirdbrain\r\nbirdcage\r\nbirdcall\r\nbirder\r\nbirdfeeder\r\nbirdhouse\r\nbirdie\r\nbirdlike\r\nbirdlime\r\nbirdnest\r\nbirdnesting\r\nbirdseed\r\nbirdsong\r\nbirdwatch\r\nbirefringence\r\nbirefringent\r\nbiretta\r\nbiriani\r\nbirken\r\nbirl\r\nbirle\r\nbirling\r\nbirmingham\r\nbiro\r\nbirr\r\nbirretta\r\nbirth\r\nbirthday\r\nbirthing\r\nbirthmark\r\nbirthplace\r\nbirthrate\r\nbirthright\r\nbirthroot\r\nbirthwort\r\nbiryani\r\nbisayan\r\nbisayas\r\nbiscuit\r\nbiscutella\r\nbise\r\nbisect\r\nbisection\r\nbisectional\r\nbiserrate\r\nbisexual\r\nbisexuality\r\nbishkek\r\nbishop\r\nbishopric\r\nbishopry\r\nbiskek\r\nbismarck\r\nbismarckian\r\nbismark\r\nbismuth\r\nbismuthal\r\nbismuthic\r\nbison\r\nbisontine\r\nbisque\r\nbissau\r\nbister\r\nbistered\r\nbistre\r\nbistred\r\nbistro\r\nbistroic\r\nbisulcate\r\nbit\r\nbit-by-bit\r\nbitartrate\r\nbitch\r\nbitchery\r\nbitchiness\r\nbitchy\r\nbite\r\nbiteplate\r\nbiter\r\nbitewing\r\nbithynia\r\nbiting\r\nbitingly\r\nbitis\r\nbitmap\r\nbitok\r\nbitstock\r\nbitt\r\nbittacidae\r\nbitter\r\nbitter-bark\r\nbittercress\r\nbitterish\r\nbitterly\r\nbittern\r\nbitterness\r\nbitternut\r\nbitterroot\r\nbitters\r\nbittersweet\r\nbitterweed\r\nbitterwood\r\nbitthead\r\nbittie\r\nbitty\r\nbitumastic\r\nbitumen\r\nbitumenoid\r\nbituminise\r\nbituminize\r\nbituminoid\r\nbituminous\r\nbiu-mandara\r\nbivalent\r\nbivalve\r\nbivalved\r\nbivalvia\r\nbivariate\r\nbivouac\r\nbivouacking\r\nbiweekly\r\nbiyearly\r\nbiz\r\nbizarre\r\nbizarreness\r\nbize\r\nbizet\r\nbizonal\r\nbja\r\nbjs\r\nbk\r\nblab\r\nblabber\r\nblabbermouth\r\nblabbermouthed\r\nblabby\r\nblaberus\r\nblack\r\nblack-and-blue\r\nblack-and-tan\r\nblack-and-white\r\nblack-barred\r\nblack-coated\r\nblack-gray\r\nblack-grey\r\nblack-haired\r\nblack-marked\r\nblack-market\r\nblack-seeded\r\nblack-tie\r\nblackamoor\r\nblackball\r\nblackbeard\r\nblackbeetle\r\nblackberry\r\nblackberry-like\r\nblackberry-lily\r\nblackbird\r\nblackboard\r\nblackbody\r\nblackbuck\r\nblackburn\r\nblackcap\r\nblackcock\r\nblackdamp\r\nblacken\r\nblackened\r\nblackening\r\nblackface\r\nblackfish\r\nblackfly\r\nblackfoot\r\nblackfriar\r\nblackguard\r\nblackguardly\r\nblackhead\r\nblackheart\r\nblacking\r\nblackish\r\nblackish-brown\r\nblackish-gray\r\nblackish-grey\r\nblackish-red\r\nblackjack\r\nblacklead\r\nblackleg\r\nblacklist\r\nblackmail\r\nblackmailer\r\nblackness\r\nblackout\r\nblackpoll\r\nblackpool\r\nblacksburg\r\nblackseed\r\nblackshirt\r\nblacksmith\r\nblacksnake\r\nblacktail\r\nblackthorn\r\nblacktop\r\nblacktopping\r\nblackwash\r\nblackwater\r\nblackwood\r\nbladder\r\nbladderlike\r\nbladdernose\r\nbladderpod\r\nbladderwort\r\nbladderwrack\r\nbladdery\r\nblade\r\nbladed\r\nbladelike\r\nblae\r\nblaeberry\r\nblah\r\nblahs\r\nblain\r\nblair\r\nblake\r\nblamable\r\nblame\r\nblameable\r\nblamed\r\nblameful\r\nblameless\r\nblamelessly\r\nblamelessness\r\nblameworthiness\r\nblameworthy\r\nblanc\r\nblanch\r\nblanched\r\nblancmange\r\nbland\r\nblandfordia\r\nblandish\r\nblandishment\r\nblandness\r\nblank\r\nblanket\r\nblanketed\r\nblankly\r\nblankness\r\nblanquillo\r\nblantyre\r\nblare\r\nblarina\r\nblaring\r\nblarney\r\nblase\r\nblaspheme\r\nblasphemer\r\nblasphemous\r\nblasphemy\r\nblast\r\nblasted\r\nblastema\r\nblastemal\r\nblastematic\r\nblastemic\r\nblaster\r\nblasting\r\nblastocele\r\nblastocladia\r\nblastocladiales\r\nblastocoel\r\nblastocoele\r\nblastocoelic\r\nblastocyst\r\nblastocyte\r\nblastocytoma\r\nblastoderm\r\nblastodermatic\r\nblastodermic\r\nblastodiaceae\r\nblastodisc\r\nblastoff\r\nblastogenesis\r\nblastogenetic\r\nblastoma\r\nblastomere\r\nblastomeric\r\nblastomyces\r\nblastomycete\r\nblastomycosis\r\nblastomycotic\r\nblastoporal\r\nblastopore\r\nblastoporic\r\nblastosphere\r\nblastospheric\r\nblastula\r\nblastular\r\nblat\r\nblatancy\r\nblatant\r\nblate\r\nblather\r\nblathering\r\nblatherskite\r\nblatta\r\nblattaria\r\nblattella\r\nblattidae\r\nblattodea\r\nblaze\r\nblazer\r\nblazing\r\nblazon\r\nblazonry\r\nbleach\r\nbleached\r\nbleacher\r\nbleachers\r\nbleak\r\nbleakness\r\nblear\r\nblear-eyed\r\nbleary\r\nbleary-eyed\r\nbleat\r\nbleb\r\nblebbed\r\nblebby\r\nblechnaceae\r\nblechnum\r\nbleed\r\nbleeder\r\nbleeding\r\nbleep\r\nblemish\r\nblemished\r\nblench\r\nblend\r\nblende\r\nblended\r\nblender\r\nblending\r\nblenheim\r\nblenniidae\r\nblennioid\r\nblennioidea\r\nblennius\r\nblenny\r\nblepharism\r\nblepharitis\r\nblepharospasm\r\nblephilia\r\nbleriot\r\nbless\r\nblessed\r\nblessedness\r\nblessing\r\nblest\r\nblether\r\nbletia\r\nbletilla\r\nbleu\r\nblewits\r\nblida\r\nbligh\r\nblighia\r\nblight\r\nblighted\r\nblighter\r\nblighty\r\nblimp\r\nblimpish\r\nblind\r\nblinded\r\nblinder\r\nblindfold\r\nblindfolded\r\nblinding\r\nblindness\r\nblindside\r\nblindworm\r\nblini\r\nblink\r\nblinker\r\nblinking\r\nblinks\r\nblintz\r\nblintze\r\nbliny\r\nblip\r\nbliss\r\nblissful\r\nblissfulness\r\nblissus\r\nblister\r\nblistered\r\nblistering\r\nblistery\r\nblithe\r\nblithely\r\nblitheness\r\nblither\r\nblithering\r\nblithesome\r\nblitt\r\nblitz\r\nblitzkrieg\r\nblitzstein\r\nblixen\r\nblizzard\r\nbloat\r\nbloated\r\nbloater\r\nblob\r\nbloc\r\nblocadren\r\nbloch\r\nblock\r\nblockade\r\nblockade-runner\r\nblockaded\r\nblockading\r\nblockage\r\nblockbuster\r\nblocked\r\nblocker\r\nblockhead\r\nblockheaded\r\nblockhouse\r\nblocking\r\nblockish\r\nblocky\r\nbloemfontein\r\nblog\r\nblogger\r\nblok\r\nbloke\r\nblolly\r\nblond\r\nblonde\r\nblondness\r\nblood\r\nblood-and-guts\r\nblood-filled\r\nblood-red\r\nblood-related\r\nblood-twig\r\nbloodbath\r\nbloodberry\r\nbloodcurdling\r\nblooded\r\nbloodguilt\r\nbloodguilty\r\nbloodhound\r\nbloodied\r\nbloodily\r\nbloodiness\r\nbloodleaf\r\nbloodless\r\nbloodlessly\r\nbloodletting\r\nbloodline\r\nbloodlust\r\nbloodmobile\r\nbloodroot\r\nbloodshed\r\nbloodshot\r\nbloodstain\r\nbloodstained\r\nbloodstock\r\nbloodstone\r\nbloodstream\r\nbloodsucker\r\nbloodsucking\r\nbloodthirstiness\r\nbloodthirsty\r\nbloodworm\r\nbloodwort\r\nbloody\r\nbloody-minded\r\nbloom\r\nbloomer\r\nbloomeria\r\nbloomers\r\nbloomfield\r\nblooming\r\nbloomington\r\nbloomsbury\r\nblooper\r\nblossom\r\nblossoming\r\nblot\r\nblotch\r\nblotched\r\nblotchy\r\nblotter\r\nblotto\r\nblouse\r\nbloviate\r\nblow\r\nblow-by-blow\r\nblow-dry\r\nblowback\r\nblowball\r\nblower\r\nblowfish\r\nblowfly\r\nblowgun\r\nblowhard\r\nblowhole\r\nblowing\r\nblowjob\r\nblowlamp\r\nblown\r\nblown-up\r\nblowout\r\nblowpipe\r\nblowsy\r\nblowtorch\r\nblowtube\r\nblowup\r\nblowy\r\nblowzy\r\nblt\r\nblu-82\r\nblub\r\nblubber\r\nblubberer\r\nblubbery\r\nblucher\r\nbludgeon\r\nbludgeoner\r\nblue\r\nblue-belly\r\nblue-black\r\nblue-blind\r\nblue-blindness\r\nblue-blooded\r\nblue-chip\r\nblue-collar\r\nblue-eyed\r\nblue-flowered\r\nblue-fruited\r\nblue-gray\r\nblue-green\r\nblue-grey\r\nblue-lilac\r\nblue-pencil\r\nblue-purple\r\nblue-ribbon\r\nblue-sky\r\nblue-violet\r\nblue-white\r\nbluebeard\r\nbluebell\r\nblueberry\r\nbluebill\r\nbluebird\r\nbluebonnet\r\nbluebottle\r\nbluecoat\r\nbluefin\r\nbluefish\r\nbluegill\r\nbluegrass\r\nbluehead\r\nblueing\r\nblueish\r\nbluejacket\r\nblueness\r\nbluenose\r\nbluepoint\r\nblueprint\r\nblues\r\nbluestem\r\nbluestocking\r\nbluestone\r\nbluethroat\r\nbluetick\r\nbluetongue\r\nblueweed\r\nbluewing\r\nbluff\r\nbluffer\r\nbluffly\r\nbluffness\r\nbluing\r\nbluish\r\nbluish-gray\r\nbluish-grey\r\nbluish-lilac\r\nbluish-purple\r\nbluish-violet\r\nbluish-white\r\nblunder\r\nblunderbuss\r\nblunderer\r\nblunt\r\nblunted\r\nbluntly\r\nbluntness\r\nblur\r\nblurb\r\nblurred\r\nblurriness\r\nblurry\r\nblurt\r\nblush\r\nblusher\r\nblushful\r\nblushing\r\nbluster\r\nblusterer\r\nblustering\r\nblusterous\r\nblustery\r\nbm\r\nbmdo\r\nbmr\r\nbmus\r\nbns\r\nbo's'n\r\nbo'sun\r\nboa\r\nboann\r\nboar\r\nboard\r\nboarder\r\nboarding\r\nboardinghouse\r\nboardroom\r\nboards\r\nboardwalk\r\nboarfish\r\nboarhound\r\nboast\r\nboaster\r\nboastful\r\nboastfully\r\nboastfulness\r\nboasting\r\nboat\r\nboat-race\r\nboat-shaped\r\nboatbill\r\nboatbuilder\r\nboater\r\nboathouse\r\nboating\r\nboatload\r\nboatman\r\nboatmanship\r\nboatswain\r\nbob\r\nbobber\r\nbobbin\r\nbobble\r\nbobby\r\nbobby-socker\r\nbobbysock\r\nbobbysocks\r\nbobbysoxer\r\nbobcat\r\nbobfloat\r\nbobolink\r\nbobsled\r\nbobsledding\r\nbobsleigh\r\nbobtail\r\nbobtailed\r\nbobwhite\r\nboccaccio\r\nbocce\r\nbocci\r\nboccie\r\nbocconia\r\nboche\r\nbock\r\nbod\r\nbodacious\r\nboddhisatva\r\nbode\r\nbodega\r\nbodensee\r\nbodge\r\nbodhisattva\r\nbodice\r\nbodied\r\nbodiless\r\nbodily\r\nboding\r\nbodkin\r\nbodo-garo\r\nbodoni\r\nbody\r\nbody-build\r\nbody-surf\r\nbodybuilder\r\nbodybuilding\r\nbodyguard\r\nbodyless\r\nbodypaint\r\nbodywork\r\nboehm\r\nboehme\r\nboehmenism\r\nboehmeria\r\nboeotia\r\nboeotian\r\nboer\r\nboethius\r\nboeuf\r\nboffin\r\nboffo\r\nbog\r\nbogart\r\nbogartian\r\nbogbean\r\nbogey\r\nbogeyman\r\nboggle\r\nboggy\r\nbogie\r\nbogmat\r\nbogota\r\nbogus\r\nbogy\r\nbohemia\r\nbohemian\r\nbohemianism\r\nbohme\r\nbohr\r\nbohrium\r\nboidae\r\nboil\r\nboiled\r\nboiler\r\nboilerplate\r\nboilersuit\r\nboiling\r\nboise\r\nboisterous\r\nboisterously\r\nboisterousness\r\nbokkos\r\nbokmal\r\nbola\r\nbolanci\r\nbolbitis\r\nbold\r\nboldface\r\nboldly\r\nboldness\r\nbole\r\nbolero\r\nboletaceae\r\nbolete\r\nboletellus\r\nboletus\r\nboleyn\r\nbolide\r\nbolingbroke\r\nbolivar\r\nbolivia\r\nbolivian\r\nboliviano\r\nboll\r\nbollard\r\nbollix\r\nbollock\r\nbollocks\r\nbollworm\r\nbollywood\r\nbolo\r\nbologna\r\nbologram\r\nbolograph\r\nbolographic\r\nbolometer\r\nbolometric\r\nboloney\r\nbolshevik\r\nbolshevise\r\nbolshevism\r\nbolshevist\r\nbolshevistic\r\nbolshevize\r\nbolshie\r\nbolshy\r\nbolster\r\nbolt\r\nbolt-hole\r\nbolted\r\nbolti\r\nboltonia\r\nboltzmann\r\nbolus\r\nbolzano\r\nbomarea\r\nbomb\r\nbombacaceae\r\nbombard\r\nbombardier\r\nbombardment\r\nbombardon\r\nbombast\r\nbombastic\r\nbombastically\r\nbombax\r\nbombay\r\nbombazine\r\nbomber\r\nbombie\r\nbombilate\r\nbombilation\r\nbombina\r\nbombinate\r\nbombination\r\nbombing\r\nbomblet\r\nbombproof\r\nbombshell\r\nbombsight\r\nbombus\r\nbombycid\r\nbombycidae\r\nbombycilla\r\nbombycillidae\r\nbombyliidae\r\nbombyx\r\nbonaire\r\nbonanza\r\nbonaparte\r\nbonasa\r\nbonavist\r\nbonbon\r\nbonce\r\nbond\r\nbondable\r\nbondage\r\nbonded\r\nbonderise\r\nbonderize\r\nbondholder\r\nbonding\r\nbondmaid\r\nbondman\r\nbondsman\r\nbondswoman\r\nbonduc\r\nbondwoman\r\nbone\r\nbone-covered\r\nbone-dry\r\nbone-idle\r\nbone-lazy\r\nboned\r\nbonefish\r\nbonehead\r\nboneheaded\r\nboneless\r\nbonelet\r\nbonelike\r\nbonemeal\r\nboner\r\nbones\r\nboneset\r\nbonesetter\r\nboneshaker\r\nbonete\r\nboney\r\nbonfire\r\nbong\r\nbongo\r\nbonheur\r\nbonhoeffer\r\nbonhomie\r\nboniface\r\nboniness\r\nbonito\r\nbonk\r\nbonkers\r\nbonn\r\nbonnet\r\nbonnethead\r\nbonney\r\nbonnie\r\nbonny\r\nbonobo\r\nbonsai\r\nbontemps\r\nbonus\r\nbonxie\r\nbony\r\nbony-plated\r\nbonyness\r\nbonzer\r\nboo\r\nboo-boo\r\nboob\r\nbooboisie\r\nbooby\r\nboodle\r\nbooger\r\nboogeyman\r\nboogie\r\nboogie-woogie\r\nbook\r\nbookable\r\nbookbinder\r\nbookbindery\r\nbookbinding\r\nbookcase\r\nbookclub\r\nbookdealer\r\nbooked\r\nbookend\r\nbooker\r\nbookfair\r\nbookie\r\nbooking\r\nbookish\r\nbookishness\r\nbookkeeper\r\nbookkeeping\r\nbooklet\r\nbooklouse\r\nbooklover\r\nbookmaker\r\nbookman\r\nbookmark\r\nbookmarker\r\nbookmobile\r\nbookplate\r\nbookseller\r\nbookshelf\r\nbookshop\r\nbookstall\r\nbookstore\r\nbookworm\r\nboole\r\nboolean\r\nboom\r\nboomer\r\nboomerang\r\nbooming\r\nboon\r\nboondocks\r\nboondoggle\r\nboone\r\nboor\r\nboorish\r\nboorishness\r\nboost\r\nbooster\r\nboot\r\nboot-shaped\r\nbootblack\r\nbootboys\r\nbooted\r\nbootee\r\nbootes\r\nbooth\r\nboothose\r\nbootie\r\nbootjack\r\nbootlace\r\nbootleg\r\nbootlegger\r\nbootlegging\r\nbootless\r\nbootlick\r\nbootlicker\r\nbootlicking\r\nbootmaker\r\nbootstrap\r\nbooty\r\nbooyong\r\nbooze\r\nbooze-up\r\nboozer\r\nboozing\r\nboozy\r\nbop\r\nbopeep\r\nboracic\r\nborage\r\nboraginaceae\r\nborago\r\nborassus\r\nborate\r\nborated\r\nborax\r\nbordeaux\r\nbordelaise\r\nbordello\r\nborder\r\nbordered\r\nborderer\r\nborderland\r\nborderline\r\nbore\r\nbore-hole\r\nboreal\r\nboreas\r\nborecole\r\nbored\r\nboredom\r\nborer\r\nborges\r\nborgia\r\nboric\r\nboring\r\nboringly\r\nboringness\r\nborn\r\nborn-again\r\nbornean\r\nborneo\r\nbornite\r\nborodin\r\nborodino\r\nboron\r\nboronic\r\nborosilicate\r\nborough\r\nborrelia\r\nborrow\r\nborrower\r\nborrowing\r\nborsch\r\nborscht\r\nborsh\r\nborshch\r\nborsht\r\nborstal\r\nbortsch\r\nborzoi\r\nbos\r\nbos'n\r\nbosc\r\nbosch\r\nbose\r\nboselaphus\r\nbosh\r\nbosie\r\nbosk\r\nboskopoid\r\nbosky\r\nbosnia\r\nbosnia-herzegovina\r\nbosnian\r\nbosom\r\nbosomed\r\nbosomy\r\nboson\r\nbosporus\r\nboss\r\nboss-eyed\r\nbossism\r\nbossy\r\nboston\r\nbostonian\r\nbosun\r\nboswell\r\nboswellia\r\nbot\r\nbota\r\nbotanic\r\nbotanical\r\nbotanise\r\nbotanist\r\nbotanize\r\nbotany\r\nbotaurus\r\nbotch\r\nbotched\r\nbotcher\r\nbotchy\r\nbotfly\r\nboth\r\nbother\r\nbotheration\r\nbothered\r\nbothersome\r\nbothidae\r\nbothrops\r\nbotonee\r\nbotonnee\r\nbotox\r\nbotrychium\r\nbotryoid\r\nbotryoidal\r\nbotswana\r\nbotswanan\r\nbotticelli\r\nbottle\r\nbottle-fed\r\nbottle-feed\r\nbottle-grass\r\nbottle-green\r\nbottle-shaped\r\nbottle-tree\r\nbottlebrush\r\nbottlecap\r\nbottlefeed\r\nbottleful\r\nbottleneck\r\nbottlenose\r\nbottler\r\nbottom\r\nbottom-dweller\r\nbottom-dwelling\r\nbottom-feeder\r\nbottom-feeding\r\nbottom-up\r\nbottomed\r\nbottomland\r\nbottomless\r\nbottomlessness\r\nbottommost\r\nbotuliform\r\nbotulin\r\nbotulinal\r\nbotulinum\r\nbotulinus\r\nbotulism\r\nbotulismotoxin\r\nbouchee\r\nboucle\r\nboudoir\r\nbouffant\r\nbouffe\r\nbougainvillaea\r\nbougainville\r\nbougainvillea\r\nbough\r\nboughed\r\nboughless\r\nboughten\r\nbouillabaisse\r\nbouillon\r\nboulder\r\nbouldered\r\nbouldery\r\nboule\r\nboulevard\r\nboulevardier\r\nboulez\r\nboulle\r\nbounce\r\nbouncer\r\nbounciness\r\nbouncing\r\nbouncy\r\nbound\r\nboundary\r\nbounded\r\nboundedness\r\nbounden\r\nbounder\r\nbounderish\r\nboundless\r\nboundlessly\r\nboundlessness\r\nbounds\r\nbounteous\r\nbounteously\r\nbounteousness\r\nbountied\r\nbountiful\r\nbountifully\r\nbountifulness\r\nbounty\r\nbouquet\r\nbourbon\r\nbourdon\r\nbourgeois\r\nbourgeoisie\r\nbourgeon\r\nbourgogne\r\nbourguignon\r\nbourn\r\nbourne\r\nbourse\r\nbourtree\r\nbouse\r\nboustrophedon\r\nboustrophedonic\r\nbout\r\nbouteloua\r\nboutique\r\nboutonniere\r\nbouvines\r\nbouyei\r\nbovid\r\nbovidae\r\nbovinae\r\nbovine\r\nbovini\r\nbovril\r\nbow\r\nbow-tie\r\nbow-wow\r\nbowditch\r\nbowdler\r\nbowdlerisation\r\nbowdlerise\r\nbowdleriser\r\nbowdlerism\r\nbowdlerization\r\nbowdlerize\r\nbowdlerizer\r\nbowed\r\nbowel\r\nbowelless\r\nbowels\r\nbower\r\nbowerbird\r\nbowery\r\nbowfin\r\nbowfront\r\nbowhead\r\nbowie\r\nbowiea\r\nbowing\r\nbowknot\r\nbowl\r\nbowl-shaped\r\nbowlder\r\nbowleg\r\nbowlegged\r\nbowler\r\nbowlful\r\nbowline\r\nbowling\r\nbowls\r\nbowman\r\nbowse\r\nbowsprit\r\nbowstring\r\nbowtie\r\nbox\r\nbox-shaped\r\nboxberry\r\nboxcar\r\nboxcars\r\nboxed\r\nboxed-in\r\nboxer\r\nboxers\r\nboxershorts\r\nboxfish\r\nboxful\r\nboxing\r\nboxlike\r\nboxthorn\r\nboxwood\r\nboxy\r\nboy\r\nboycott\r\nboyfriend\r\nboyhood\r\nboyish\r\nboyishly\r\nboyishness\r\nboykinia\r\nboyle\r\nboylike\r\nboyne\r\nboys-and-girls\r\nboysenberry\r\nboytrose\r\nbozeman\r\nbozo\r\nbph\r\nbpi\r\nbpm\r\nbps\r\nbr\r\nbra\r\nbrabble\r\nbrace\r\nbraced\r\nbracelet\r\nbracer\r\nbracero\r\nbraces\r\nbrachial\r\nbrachiate\r\nbrachiation\r\nbrachinus\r\nbrachiopod\r\nbrachiopoda\r\nbrachiopodous\r\nbrachium\r\nbrachycephalic\r\nbrachycephalism\r\nbrachycephaly\r\nbrachychiton\r\nbrachycome\r\nbrachycranial\r\nbrachycranic\r\nbrachydactylia\r\nbrachydactylic\r\nbrachydactylous\r\nbrachydactyly\r\nbrachypterous\r\nbrachystegia\r\nbrachyura\r\nbrachyuran\r\nbrachyurous\r\nbracing\r\nbracken\r\nbracket\r\nbrackish\r\nbrackishness\r\nbract\r\nbracteal\r\nbracteate\r\nbracted\r\nbracteolate\r\nbracteole\r\nbractlet\r\nbrad\r\nbradawl\r\nbradbury\r\nbradford\r\nbradley\r\nbradstreet\r\nbrady\r\nbradycardia\r\nbradypodidae\r\nbradypus\r\nbrae\r\nbrag\r\nbraga\r\nbrage\r\nbragg\r\nbraggadocio\r\nbraggart\r\nbragger\r\nbragging\r\nbraggy\r\nbragi\r\nbrahe\r\nbrahma\r\nbrahman\r\nbrahmana\r\nbrahmanism\r\nbrahmaputra\r\nbrahmi\r\nbrahmin\r\nbrahminic\r\nbrahminical\r\nbrahminism\r\nbrahms\r\nbrahui\r\nbraid\r\nbraided\r\nbraiding\r\nbrail\r\nbraille\r\nbrain\r\nbrain-fag\r\nbrain-stem\r\nbrain-teaser\r\nbrain-worker\r\nbraincase\r\nbrainchild\r\nbrainiac\r\nbrainish\r\nbrainless\r\nbrainpan\r\nbrainpower\r\nbrainsick\r\nbrainstem\r\nbrainstorm\r\nbrainstorming\r\nbrainwash\r\nbrainwashed\r\nbrainwashing\r\nbrainwave\r\nbrainworker\r\nbrainy\r\nbraise\r\nbraised\r\nbraising\r\nbrake\r\nbrakeman\r\nbraky\r\nbraless\r\nbrama\r\nbramante\r\nbramble\r\nbrambling\r\nbrambly\r\nbramidae\r\nbran\r\nbran-new\r\nbranch\r\nbranch-like\r\nbranched\r\nbranchia\r\nbranchial\r\nbranchiate\r\nbranching\r\nbranchiobdella\r\nbranchiobdellidae\r\nbranchiopod\r\nbranchiopoda\r\nbranchiopodan\r\nbranchiopodous\r\nbranchiostegidae\r\nbranchiostomidae\r\nbranchiura\r\nbranchless\r\nbranchlet\r\nbranchlike\r\nbranchy\r\nbrancusi\r\nbrand\r\nbrand-new\r\nbrand-newness\r\nbranded\r\nbrandenburg\r\nbranding\r\nbrandish\r\nbrandt\r\nbrandy\r\nbrandyball\r\nbrandysnap\r\nbrant\r\nbranta\r\nbraque\r\nbrasenia\r\nbrash\r\nbrashly\r\nbrashness\r\nbrasier\r\nbrasil\r\nbrasilia\r\nbrass\r\nbrassard\r\nbrassavola\r\nbrassbound\r\nbrasserie\r\nbrassia\r\nbrassica\r\nbrassicaceae\r\nbrassie\r\nbrassiere\r\nbrasslike\r\nbrassy\r\nbrat\r\nbratislava\r\nbrattice\r\nbrattish\r\nbrattle\r\nbrattleboro\r\nbratty\r\nbratwurst\r\nbraun\r\nbraunschweig\r\nbravado\r\nbrave\r\nbravely\r\nbraveness\r\nbravery\r\nbravo\r\nbravura\r\nbraw\r\nbrawl\r\nbrawler\r\nbrawling\r\nbrawn\r\nbrawniness\r\nbrawny\r\nbray\r\nbraze\r\nbrazen\r\nbrazen-faced\r\nbrazenness\r\nbrazier\r\nbrazil\r\nbrazilian\r\nbrazilwood\r\nbrazos\r\nbrazzaville\r\nbreach\r\nbread\r\nbread-bin\r\nbread-stick\r\nbreadbasket\r\nbreadboard\r\nbreadbox\r\nbreadcrumb\r\nbreadfruit\r\nbreadline\r\nbreadroot\r\nbreadstick\r\nbreadstuff\r\nbreadth\r\nbreadthways\r\nbreadthwise\r\nbreadwinner\r\nbreak\r\nbreak-axe\r\nbreak-dance\r\nbreak-in\r\nbreakability\r\nbreakable\r\nbreakableness\r\nbreakage\r\nbreakaway\r\nbreakax\r\nbreakaxe\r\nbreakdown\r\nbreaker\r\nbreakers\r\nbreakfast\r\nbreaking\r\nbreakneck\r\nbreakout\r\nbreakstone\r\nbreakthrough\r\nbreakup\r\nbreakwater\r\nbream\r\nbreast\r\nbreast-deep\r\nbreast-fed\r\nbreast-high\r\nbreastbone\r\nbreasted\r\nbreastfeed\r\nbreastless\r\nbreastpin\r\nbreastplate\r\nbreaststroke\r\nbreaststroker\r\nbreastwork\r\nbreath\r\nbreathalyse\r\nbreathalyser\r\nbreathalyze\r\nbreathalyzer\r\nbreathe\r\nbreathed\r\nbreather\r\nbreathing\r\nbreathless\r\nbreathlessly\r\nbreathlessness\r\nbreathtaking\r\nbreccia\r\nbrecciate\r\nbrecht\r\nbreech\r\nbreech-loading\r\nbreechblock\r\nbreechcloth\r\nbreechclout\r\nbreeched\r\nbreeches\r\nbreechloader\r\nbreed\r\nbreeder\r\nbreeding\r\nbreeze\r\nbreeziness\r\nbreezy\r\nbregma\r\nbregmatic\r\nbreiz\r\nbremen\r\nbremerhaven\r\nbren\r\nbrent\r\nbrescia\r\nbreslau\r\nbrest\r\nbretagne\r\nbrethren\r\nbreton\r\nbreuer\r\nbreughel\r\nbreve\r\nbrevet\r\nbreviary\r\nbrevibloc\r\nbrevicipitidae\r\nbrevity\r\nbrevoortia\r\nbrew\r\nbrewage\r\nbrewer\r\nbrewery\r\nbrewing\r\nbrewpub\r\nbrezhnev\r\nbriar\r\nbriard\r\nbriarroot\r\nbriarwood\r\nbriary\r\nbribable\r\nbribe\r\nbriber\r\nbribery\r\nbric-a-brac\r\nbrick\r\nbrick-shaped\r\nbrickbat\r\nbrickellia\r\nbrickfield\r\nbrickkiln\r\nbricklayer\r\nbricklaying\r\nbrickle\r\nbrickly\r\nbrickwork\r\nbrickyard\r\nbricole\r\nbridal\r\nbridal-wreath\r\nbride\r\nbride-gift\r\nbride-to-be\r\nbridecake\r\nbridegroom\r\nbridesmaid\r\nbridge\r\nbridgeable\r\nbridged-t\r\nbridgehead\r\nbridgeport\r\nbridges\r\nbridget\r\nbridgetown\r\nbridgework\r\nbridle\r\nbridoon\r\nbrie\r\nbrief\r\nbriefcase\r\nbriefing\r\nbriefless\r\nbriefly\r\nbriefness\r\nbriefs\r\nbrier\r\nbrier-wood\r\nbrierpatch\r\nbrierwood\r\nbriery\r\nbrig\r\nbrigade\r\nbrigadier\r\nbrigand\r\nbrigandine\r\nbrigantine\r\nbright\r\nbright-red\r\nbrighten\r\nbrightly\r\nbrightly-colored\r\nbrightly-coloured\r\nbrightness\r\nbrighton\r\nbrigid\r\nbrigit\r\nbrihaspati\r\nbrill\r\nbrilliance\r\nbrilliancy\r\nbrilliant\r\nbrilliantine\r\nbrilliantly\r\nbrim\r\nbrimful\r\nbrimfull\r\nbrimless\r\nbrimming\r\nbrimstone\r\nbrinded\r\nbrindisi\r\nbrindle\r\nbrindled\r\nbrine\r\nbrine-cured\r\nbring\r\nbringing\r\nbrininess\r\nbrinjal\r\nbrink\r\nbrinkmanship\r\nbrinton\r\nbriny\r\nbrio\r\nbrioche\r\nbriony\r\nbrioschi\r\nbriquet\r\nbriquette\r\nbris\r\nbrisance\r\nbrisant\r\nbrisbane\r\nbrisk\r\nbrisken\r\nbrisket\r\nbriskness\r\nbrisling\r\nbriss\r\nbristle\r\nbristle-pointed\r\nbristled\r\nbristlegrass\r\nbristlelike\r\nbristletail\r\nbristliness\r\nbristly\r\nbristol\r\nbrit\r\nbritain\r\nbritannic\r\nbritches\r\nbrith\r\nbriticism\r\nbritish\r\nbritisher\r\nbritishism\r\nbriton\r\nbrits\r\nbritt\r\nbrittanic\r\nbrittany\r\nbritten\r\nbrittle\r\nbrittle-star\r\nbrittlebush\r\nbrittleness\r\nbrno\r\nbroach\r\nbroached\r\nbroad\r\nbroad-bean\r\nbroad-brimmed\r\nbroad-headed\r\nbroad-leafed\r\nbroad-leaved\r\nbroad-minded\r\nbroad-mindedly\r\nbroad-mindedness\r\nbroad-shouldered\r\nbroadax\r\nbroadaxe\r\nbroadband\r\nbroadbill\r\nbroadcast\r\nbroadcaster\r\nbroadcasting\r\nbroadcloth\r\nbroaden\r\nbroadening\r\nbroadleaf\r\nbroadloom\r\nbroadly\r\nbroadness\r\nbroadnosed\r\nbroadsheet\r\nbroadside\r\nbroadsword\r\nbroadtail\r\nbroadway\r\nbroadwise\r\nbrobdingnag\r\nbrobdingnagian\r\nbroca\r\nbrocade\r\nbrocaded\r\nbrocadopa\r\nbroccoli\r\nbrochette\r\nbrochure\r\nbrocket\r\nbrockhouse\r\nbrodiaea\r\nbrogan\r\nbroglie\r\nbrogue\r\nbroider\r\nbroil\r\nbroiled\r\nbroiler\r\nbroiling\r\nbroke\r\nbroken\r\nbroken-backed\r\nbroken-down\r\nbroken-field\r\nbrokenhearted\r\nbrokenheartedness\r\nbroker\r\nbroker-dealer\r\nbrokerage\r\nbrolly\r\nbromate\r\nbromberg\r\nbrome\r\nbromegrass\r\nbromelia\r\nbromeliaceae\r\nbromeosin\r\nbromic\r\nbromide\r\nbromidic\r\nbrominate\r\nbromine\r\nbromo-seltzer\r\nbromoform\r\nbromus\r\nbronc\r\nbronchial\r\nbronchiolar\r\nbronchiole\r\nbronchiolitis\r\nbronchitic\r\nbronchitis\r\nbroncho\r\nbronchodilator\r\nbronchopneumonia\r\nbronchoscope\r\nbronchoscopic\r\nbronchospasm\r\nbronchus\r\nbronco\r\nbroncobuster\r\nbronte\r\nbrontosaur\r\nbrontosaurus\r\nbronx\r\nbronze\r\nbronze-red\r\nbronzed\r\nbronzy\r\nbrooch\r\nbrood\r\nbrooder\r\nbrooding\r\nbroodmare\r\nbroody\r\nbrook\r\nbrooke\r\nbrooklet\r\nbrooklime\r\nbrooklyn\r\nbrooks\r\nbrookweed\r\nbroom\r\nbroom-weed\r\nbroomcorn\r\nbroomstick\r\nbroomweed\r\nbrosmius\r\nbroth\r\nbrothel\r\nbrother\r\nbrother-in-law\r\nbrotherhood\r\nbrotherlike\r\nbrotherly\r\nbrotula\r\nbrotulidae\r\nbrougham\r\nbrouhaha\r\nbroussonetia\r\nbrow\r\nbrowallia\r\nbrowbeat\r\nbrowbeaten\r\nbrown\r\nbrown-black\r\nbrown-gray\r\nbrown-green\r\nbrown-grey\r\nbrown-haired\r\nbrown-nose\r\nbrown-purple\r\nbrown-speckled\r\nbrown-striped\r\nbrowne\r\nbrowned\r\nbrownie\r\nbrowning\r\nbrownish\r\nbrownish-black\r\nbrownish-gray\r\nbrownish-green\r\nbrownish-grey\r\nbrownish-orange\r\nbrownish-purple\r\nbrownish-red\r\nbrownish-speckled\r\nbrownish-striped\r\nbrownish-yellow\r\nbrownness\r\nbrownout\r\nbrownshirt\r\nbrownstone\r\nbrownsville\r\nbrowntail\r\nbrowse\r\nbrowser\r\nbrowsing\r\nbruce\r\nbrucella\r\nbrucellosis\r\nbruch\r\nbruchidae\r\nbruchus\r\nbrucine\r\nbruckenthalia\r\nbruckner\r\nbruegel\r\nbrueghel\r\nbruges\r\nbrugmansia\r\nbruin\r\nbruise\r\nbruised\r\nbruiser\r\nbruising\r\nbruit\r\nbrule\r\nbrumaire\r\nbrumal\r\nbrummagem\r\nbrummell\r\nbrummie\r\nbrummy\r\nbrumous\r\nbrunanburh\r\nbrunch\r\nbrunei\r\nbruneian\r\nbrunelleschi\r\nbrunet\r\nbrunette\r\nbrunfelsia\r\nbrunhild\r\nbrunn\r\nbrunnhilde\r\nbruno\r\nbrunswick\r\nbrunt\r\nbrusa\r\nbrush\r\nbrush-off\r\nbrushed\r\nbrushing\r\nbrushlike\r\nbrushup\r\nbrushwood\r\nbrushwork\r\nbrushy\r\nbrusk\r\nbrusque\r\nbrusquely\r\nbrusqueness\r\nbrussels\r\nbrut\r\nbrutal\r\nbrutalisation\r\nbrutalise\r\nbrutality\r\nbrutalization\r\nbrutalize\r\nbrutally\r\nbrute\r\nbrutish\r\nbrutishly\r\nbrutus\r\nbruxelles\r\nbruxism\r\nbrya\r\nbryaceae\r\nbryales\r\nbryan\r\nbryanthus\r\nbrynhild\r\nbryony\r\nbryophyta\r\nbryophyte\r\nbryophytic\r\nbryopsida\r\nbryozoa\r\nbryozoan\r\nbrythonic\r\nbryum\r\nbs\r\nbsarch\r\nbse\r\nbtu\r\nbubaline\r\nbubalus\r\nbubble\r\nbubblejet\r\nbubbler\r\nbubbliness\r\nbubbling\r\nbubbly\r\nbuber\r\nbubo\r\nbubonic\r\nbubulcus\r\nbuccal\r\nbuccaneer\r\nbuccaneering\r\nbuccinidae\r\nbucconidae\r\nbuccula\r\nbucephala\r\nbuceros\r\nbucerotidae\r\nbuchanan\r\nbucharest\r\nbucharesti\r\nbuchenwald\r\nbuchloe\r\nbuchner\r\nbuck\r\nbuck-and-wing\r\nbuck-toothed\r\nbuckaroo\r\nbuckbean\r\nbuckboard\r\nbuckeroo\r\nbucket\r\nbucketful\r\nbuckeye\r\nbuckle\r\nbuckler\r\nbuckleya\r\nbuckminsterfullerene\r\nbuckram\r\nbucksaw\r\nbuckshee\r\nbuckshot\r\nbuckskin\r\nbuckskins\r\nbuckthorn\r\nbucktooth\r\nbuckwheat\r\nbuckyball\r\nbucolic\r\nbucuresti\r\nbud\r\nbudapest\r\nbuddha\r\nbuddhism\r\nbuddhist\r\nbuddhistic\r\nbudding\r\nbuddleia\r\nbuddy\r\nbuddy-buddy\r\nbudge\r\nbudgereegah\r\nbudgerigar\r\nbudgerygah\r\nbudget\r\nbudgetary\r\nbudgie\r\nbudorcas\r\nbuff\r\nbuff-brown\r\nbuff-colored\r\nbuff-coloured\r\nbuffalo\r\nbuffalofish\r\nbuffer\r\nbufferin\r\nbuffet\r\nbuffeted\r\nbuffeting\r\nbufflehead\r\nbuffoon\r\nbuffoonery\r\nbuffoonish\r\nbufo\r\nbufonidae\r\nbug\r\nbug-hunter\r\nbugaboo\r\nbuganda\r\nbugbane\r\nbugbear\r\nbugged\r\nbugger\r\nbuggery\r\nbugginess\r\nbuggy\r\nbugle\r\nbugler\r\nbugleweed\r\nbugloss\r\nbugologist\r\nbugology\r\nbuhl\r\nbuild\r\nbuilder\r\nbuilding\r\nbuildup\r\nbuilt\r\nbuilt-in\r\nbuilt-up\r\nbuirdly\r\nbujumbura\r\nbukharin\r\nbulawayo\r\nbulb\r\nbulb-shaped\r\nbulbaceous\r\nbulbar\r\nbulbed\r\nbulbil\r\nbulblet\r\nbulblike\r\nbulbous\r\nbulbul\r\nbulgaria\r\nbulgarian\r\nbulge\r\nbulghur\r\nbulginess\r\nbulging\r\nbulgur\r\nbulgy\r\nbulimarexia\r\nbulimia\r\nbulimic\r\nbulk\r\nbulkhead\r\nbulkiness\r\nbulky\r\nbull\r\nbull-snake\r\nbulla\r\nbullace\r\nbullate\r\nbullbat\r\nbullbrier\r\nbulldog\r\nbulldoze\r\nbulldozer\r\nbullet\r\nbullet-headed\r\nbullethead\r\nbulletin\r\nbulletproof\r\nbullfight\r\nbullfighter\r\nbullfighting\r\nbullfinch\r\nbullfrog\r\nbullhead\r\nbullheaded\r\nbullheadedness\r\nbullhorn\r\nbullied\r\nbullion\r\nbullish\r\nbullnecked\r\nbullnose\r\nbullock\r\nbullocky\r\nbullpen\r\nbullring\r\nbullrush\r\nbullshit\r\nbullshot\r\nbullterrier\r\nbully\r\nbullyboy\r\nbullying\r\nbullyrag\r\nbulnesia\r\nbulrush\r\nbultmann\r\nbulwark\r\nbulwer-lytton\r\nbum\r\nbumble\r\nbumblebee\r\nbumbler\r\nbumbling\r\nbumboat\r\nbumelia\r\nbumf\r\nbummer\r\nbump\r\nbumper\r\nbumper-to-bumper\r\nbumph\r\nbumpiness\r\nbumpkin\r\nbumpkinly\r\nbumptious\r\nbumptiousness\r\nbumpy\r\nbun\r\nbun-fight\r\nbunce\r\nbunch\r\nbunchberry\r\nbunche\r\nbunched\r\nbunchgrass\r\nbunchy\r\nbunco\r\nbuncombe\r\nbundesbank\r\nbundle\r\nbundled-up\r\nbundling\r\nbunfight\r\nbung\r\nbungaloid\r\nbungalow\r\nbungarus\r\nbungee\r\nbunghole\r\nbungle\r\nbungled\r\nbungler\r\nbunglesome\r\nbungling\r\nbunion\r\nbunji-bunji\r\nbunk\r\nbunker\r\nbunkmate\r\nbunko\r\nbunkum\r\nbunny\r\nbuns\r\nbunsen\r\nbunt\r\nbuntal\r\nbunter\r\nbunting\r\nbunuel\r\nbunyan\r\nbunyaviridae\r\nbunyavirus\r\nbuoy\r\nbuoyancy\r\nbuoyant\r\nbuoyantly\r\nbuphthalmum\r\nbur\r\nbura\r\nburbage\r\nburbank\r\nburberry\r\nburble\r\nburbling\r\nburbly\r\nburbot\r\nburden\r\nburdened\r\nburdenless\r\nburdensome\r\nburdensomeness\r\nburdock\r\nbureau\r\nbureaucracy\r\nbureaucrat\r\nbureaucratic\r\nbureaucratism\r\nburet\r\nburette\r\nburg\r\nburgeon\r\nburger\r\nburgess\r\nburgh\r\nburgher\r\nburglar\r\nburglarious\r\nburglarise\r\nburglarize\r\nburglarproof\r\nburglary\r\nburgle\r\nburgomaster\r\nburgoo\r\nburgoyne\r\nburgrass\r\nburgrave\r\nburgundy\r\nburhinidae\r\nburhinus\r\nburial\r\nburied\r\nburin\r\nburk\r\nburka\r\nburke\r\nburked\r\nburl\r\nburlap\r\nburled\r\nburlesque\r\nburlington\r\nburly\r\nburma\r\nburmannia\r\nburmanniaceae\r\nburmeisteria\r\nburmese\r\nburmese-yi\r\nburn\r\nburnability\r\nburnable\r\nburned\r\nburned-out\r\nburned-over\r\nburner\r\nburnett\r\nburnham\r\nburning\r\nburnish\r\nburnished\r\nburnoose\r\nburnous\r\nburnouse\r\nburns\r\nburnside\r\nburnt\r\nburnt-out\r\nburnup\r\nburp\r\nburping\r\nburqa\r\nburr\r\nburr-headed\r\nburrawong\r\nburred\r\nburrfish\r\nburrito\r\nburrlike\r\nburro\r\nburroughs\r\nburrow\r\nburry\r\nbursa\r\nbursal\r\nbursar\r\nbursary\r\nbursera\r\nburseraceae\r\nbursiform\r\nbursitis\r\nburst\r\nburster\r\nburt\r\nburthen\r\nburton\r\nburundi\r\nburundian\r\nburunduki\r\nbury\r\nburying\r\nbus\r\nbusbar\r\nbusboy\r\nbusby\r\nbush\r\nbush-league\r\nbushbaby\r\nbushbuck\r\nbushed\r\nbushel\r\nbushido\r\nbushing\r\nbushman\r\nbushnell\r\nbushtit\r\nbushwhack\r\nbushwhacker\r\nbushwhacking\r\nbushy\r\nbusiness\r\nbusinesslike\r\nbusinessman\r\nbusinessmen\r\nbusinesspeople\r\nbusinessperson\r\nbusinesswoman\r\nbusker\r\nbuskin\r\nbusload\r\nbusman\r\nbuspar\r\nbuspirone\r\nbuss\r\nbust\r\nbust-up\r\nbustard\r\nbusted\r\nbuster\r\nbustier\r\nbustle\r\nbustling\r\nbusty\r\nbusy\r\nbusybodied\r\nbusybody\r\nbusyness\r\nbusywork\r\nbut\r\nbutacaine\r\nbutadiene\r\nbutane\r\nbutanol\r\nbutanone\r\nbutat\r\nbutazolidin\r\nbutch\r\nbutcher\r\nbutcherbird\r\nbutchering\r\nbutcherly\r\nbutchery\r\nbutea\r\nbutene\r\nbuteo\r\nbuteonine\r\nbutler\r\nbutt\r\nbutt-weld\r\nbutt-welding\r\nbutte\r\nbutter\r\nbutter-and-eggs\r\nbutter-flower\r\nbutter-print\r\nbutterball\r\nbutterbean\r\nbutterbur\r\nbuttercrunch\r\nbuttercup\r\nbutterfat\r\nbutterfield\r\nbutterfingered\r\nbutterfingers\r\nbutterfish\r\nbutterflower\r\nbutterfly\r\nbutterfly-shaped\r\nbutterflyfish\r\nbuttermilk\r\nbutternut\r\nbutterscotch\r\nbutterweed\r\nbutterwort\r\nbuttery\r\nbuttinsky\r\nbuttock\r\nbuttocks\r\nbutton\r\nbutton-down\r\nbutton-quail\r\nbutton-shaped\r\nbuttoned\r\nbuttoned-down\r\nbuttoned-up\r\nbuttonhole\r\nbuttonhook\r\nbuttonlike\r\nbuttonwood\r\nbuttony\r\nbuttress\r\nbuttressed\r\nbuttressing\r\nbuttweld\r\nbutty\r\nbutut\r\nbutyl\r\nbutylate\r\nbutylene\r\nbutyraceous\r\nbutyric\r\nbutyrin\r\nbuxaceae\r\nbuxom\r\nbuxomly\r\nbuxomness\r\nbuxus\r\nbuy\r\nbuyback\r\nbuyer\r\nbuyi\r\nbuying\r\nbuyout\r\nbuzz\r\nbuzzard\r\nbuzzer\r\nbuzzing\r\nbuzzword\r\nbvd\r\nbvd's\r\nbw\r\nbwr\r\nby\r\nby-and-by\r\nby-bid\r\nby-blow\r\nby-catch\r\nby-line\r\nby-product\r\nbyblos\r\nbycatch\r\nbydgoszcz\r\nbye\r\nbye-bye\r\nbyelarus\r\nbyelorussia\r\nbyelorussian\r\nbygone\r\nbylaw\r\nbyname\r\nbypass\r\nbypast\r\nbypath\r\nbyplay\r\nbyproduct\r\nbyrd\r\nbyre\r\nbyrnie\r\nbyroad\r\nbyron\r\nbyssus\r\nbystander\r\nbyte\r\nbyway\r\nbyword\r\nbyzant\r\nbyzantine\r\nbyzantinism\r\nbyzantium\r\nc\r\nc-clamp\r\nc-horizon\r\nc-note\r\nc-ration\r\nc-section\r\nc.e.\r\nc.o.d.\r\nc.p.u.\r\nc2h6\r\nca\r\nca-ca\r\ncaaba\r\ncab\r\ncabal\r\ncabala\r\ncabalism\r\ncabalist\r\ncabalistic\r\ncabana\r\ncabaret\r\ncabasset\r\ncabassous\r\ncabbage\r\ncabbage-like\r\ncabbageworm\r\ncabbala\r\ncabbalah\r\ncabby\r\ncabdriver\r\ncabell\r\ncaber\r\ncabernet\r\ncabg\r\ncabin\r\ncabinet\r\ncabinetmaker\r\ncabinetmaking\r\ncabinetry\r\ncabinetwork\r\ncable\r\ncablegram\r\ncabman\r\ncabochon\r\ncabomba\r\ncabombaceae\r\ncaboodle\r\ncaboose\r\ncabot\r\ncabotage\r\ncabriolet\r\ncabstand\r\ncacajao\r\ncacalia\r\ncacao\r\ncacatua\r\ncachalot\r\ncache\r\ncachectic\r\ncachet\r\ncachexia\r\ncachexy\r\ncachi\r\ncachinnate\r\ncachinnation\r\ncachou\r\ncacicus\r\ncacique\r\ncackel\r\ncackle\r\ncackler\r\ncackly\r\ncacodaemon\r\ncacodaemonic\r\ncacodemon\r\ncacodemonic\r\ncacodyl\r\ncacodylic\r\ncacoethes\r\ncacogenesis\r\ncacogenic\r\ncacogenics\r\ncacography\r\ncacomistle\r\ncacomixle\r\ncacophonic\r\ncacophonous\r\ncacophony\r\ncactaceae\r\ncactus\r\ncacuminal\r\ncad\r\ncadaster\r\ncadastral\r\ncadastre\r\ncadaver\r\ncadaveric\r\ncadaverine\r\ncadaverous\r\ncaddice-fly\r\ncaddie\r\ncaddis-fly\r\ncaddish\r\ncaddisworm\r\ncaddo\r\ncaddoan\r\ncaddy\r\ncadence\r\ncadenced\r\ncadency\r\ncadent\r\ncadenza\r\ncadet\r\ncadetship\r\ncadge\r\ncadger\r\ncadiz\r\ncadmium\r\ncadra\r\ncadre\r\ncaducean\r\ncaduceus\r\ncaducous\r\ncaecal\r\ncaeciliadae\r\ncaecilian\r\ncaeciliidae\r\ncaecum\r\ncaelum\r\ncaenogenesis\r\ncaenolestes\r\ncaenolestidae\r\ncaesalpinia\r\ncaesalpiniaceae\r\ncaesalpinioideae\r\ncaesar\r\ncaesarea\r\ncaesarean\r\ncaesarian\r\ncaesarism\r\ncaesaropapism\r\ncaesium\r\ncaespitose\r\ncaesura\r\ncaesural\r\ncafe\r\ncafeteria\r\ncaff\r\ncaffein\r\ncaffeine\r\ncaffeinic\r\ncaffeinism\r\ncaffer\r\ncaffre\r\ncaftan\r\ncage\r\ncager\r\ncagey\r\ncagily\r\ncagliostro\r\ncagney\r\ncagoule\r\ncagy\r\ncahita\r\ncahoot\r\ncaiman\r\ncaimitillo\r\ncaimito\r\ncain\r\ncainogenesis\r\ncairene\r\ncairina\r\ncairn\r\ncairned\r\ncairngorm\r\ncairo\r\ncaisson\r\ncaitiff\r\ncaitra\r\ncajanus\r\ncajole\r\ncajolery\r\ncajolingly\r\ncajun\r\ncakchiquel\r\ncake\r\ncakehole\r\ncakewalk\r\ncakile\r\ncalaba\r\ncalabash\r\ncalabazilla\r\ncalabria\r\ncalabura\r\ncaladenia\r\ncaladium\r\ncalais\r\ncalamagrostis\r\ncalamari\r\ncalamary\r\ncalamine\r\ncalamint\r\ncalamintha\r\ncalamitous\r\ncalamity\r\ncalamus\r\ncalan\r\ncalando\r\ncalandrinia\r\ncalanthe\r\ncalapooya\r\ncalapuya\r\ncalash\r\ncalc-tufa\r\ncalcaneal\r\ncalcaneus\r\ncalcareous\r\ncalced\r\ncalcedony\r\ncalceiform\r\ncalceolaria\r\ncalceolate\r\ncalceus\r\ncalcic\r\ncalcicolous\r\ncalciferol\r\ncalciferous\r\ncalcific\r\ncalcification\r\ncalcifugous\r\ncalcify\r\ncalcimine\r\ncalcination\r\ncalcine\r\ncalcite\r\ncalcitic\r\ncalcitonin\r\ncalcium\r\ncalcium-cyanamide\r\ncalculable\r\ncalculate\r\ncalculated\r\ncalculating\r\ncalculation\r\ncalculative\r\ncalculator\r\ncalculous\r\ncalculus\r\ncalcutta\r\ncalcuttan\r\ncalder\r\ncaldera\r\ncalderon\r\ncaldron\r\ncaldwell\r\ncalean\r\ncaleche\r\ncaledonia\r\ncalefacient\r\ncalefaction\r\ncalefactive\r\ncalefactory\r\ncalendar\r\ncalender\r\ncalendered\r\ncalendric\r\ncalendrical\r\ncalendula\r\ncalf\r\ncalfskin\r\ncalgary\r\ncali\r\ncaliber\r\ncalibrate\r\ncalibrated\r\ncalibration\r\ncalibre\r\ncaliche\r\ncaliche-topped\r\ncalico\r\ncalicular\r\ncaliculus\r\ncalidris\r\ncalif\r\ncalif.\r\ncalifornia\r\ncalifornian\r\ncalifornium\r\ncaliginous\r\ncaligula\r\ncaliper\r\ncaliph\r\ncaliphate\r\ncalisaya\r\ncalisthenic\r\ncalisthenics\r\ncalk\r\ncalkin\r\ncall\r\ncall-back\r\ncall-board\r\ncall-in\r\ncall-out\r\ncalla\r\ncallable\r\ncallas\r\ncallathump\r\ncallback\r\ncalled\r\ncaller\r\ncaller-out\r\ncaller-up\r\ncalliandra\r\ncallicebus\r\ncalligraph\r\ncalligrapher\r\ncalligraphic\r\ncalligraphical\r\ncalligraphist\r\ncalligraphy\r\ncallimorpha\r\ncallinectes\r\ncalling\r\ncallionymidae\r\ncalliope\r\ncalliophis\r\ncalliopsis\r\ncalliper\r\ncalliphora\r\ncalliphoridae\r\ncallipygian\r\ncallipygous\r\ncallirhoe\r\ncallisaurus\r\ncallistephus\r\ncallisthenics\r\ncallisto\r\ncallithricidae\r\ncallithrix\r\ncallithump\r\ncallithumpian\r\ncallitrichaceae\r\ncallitriche\r\ncallitris\r\ncallophis\r\ncallorhinus\r\ncallosectomy\r\ncallosity\r\ncallosotomy\r\ncallous\r\ncalloused\r\ncallously\r\ncallousness\r\ncallow\r\ncallowness\r\ncalluna\r\ncallus\r\ncalm\r\ncalming\r\ncalmly\r\ncalmness\r\ncalocarpum\r\ncalocedrus\r\ncalochortus\r\ncalomel\r\ncaloocan\r\ncaloosahatchee\r\ncalophyllum\r\ncalopogon\r\ncaloric\r\ncalorie\r\ncalorie-free\r\ncalorifacient\r\ncalorific\r\ncalorimeter\r\ncalorimetric\r\ncalorimetry\r\ncalosoma\r\ncalostomataceae\r\ncalpac\r\ncalpack\r\ncalpe\r\ncalque\r\ncaltha\r\ncaltrop\r\ncalumet\r\ncalumniate\r\ncalumniation\r\ncalumniatory\r\ncalumnious\r\ncalumniously\r\ncalumny\r\ncalvados\r\ncalvaria\r\ncalvary\r\ncalvatia\r\ncalve\r\ncalved\r\ncalvin\r\ncalving\r\ncalvinism\r\ncalvinist\r\ncalvinistic\r\ncalvinistical\r\ncalvino\r\ncalx\r\ncalycanthaceae\r\ncalycanthus\r\ncalyceal\r\ncalycinal\r\ncalycine\r\ncalycle\r\ncalycled\r\ncalycophyllum\r\ncalycular\r\ncalyculate\r\ncalyculus\r\ncalymmatobacterium\r\ncalypso\r\ncalypter\r\ncalyptra\r\ncalyptrate\r\ncalystegia\r\ncalyx\r\ncam\r\ncamachile\r\ncamail\r\ncamaraderie\r\ncamarilla\r\ncamas\r\ncamash\r\ncamass\r\ncamassia\r\ncambarus\r\ncamber\r\ncambial\r\ncambium\r\ncambodia\r\ncambodian\r\ncambria\r\ncambrian\r\ncambric\r\ncambridge\r\ncamcorder\r\ncamden\r\ncamel\r\ncamelhair\r\ncamelia\r\ncamelidae\r\ncamelina\r\ncamellia\r\ncamelopard\r\ncamelot\r\ncamelpox\r\ncamelus\r\ncamembert\r\ncameo\r\ncamera\r\ncameraman\r\ncameroon\r\ncameroonian\r\ncameroun\r\ncamion\r\ncamise\r\ncamisole\r\ncamlan\r\ncamlet\r\ncamo\r\ncamomile\r\ncamorra\r\ncamosh\r\ncamouflage\r\ncamouflaged\r\ncamp\r\ncamp-made\r\ncampaign\r\ncampaigner\r\ncampaigning\r\ncampana\r\ncampania\r\ncampanile\r\ncampanula\r\ncampanulaceae\r\ncampanulales\r\ncampanular\r\ncampanulate\r\ncampanulated\r\ncampbell\r\ncampeachy\r\ncampeche\r\ncampephilus\r\ncamper\r\ncampestral\r\ncampfire\r\ncampground\r\ncamphor\r\ncamphoraceous\r\ncamphorate\r\ncamphorated\r\ncamphoric\r\ncamphorweed\r\ncamping\r\ncampion\r\ncampmate\r\ncampong\r\ncamponotus\r\ncampsite\r\ncampstool\r\ncamptosorus\r\ncampus\r\ncampy\r\ncampyloneurum\r\ncampylorhynchus\r\ncampylotropous\r\ncamshaft\r\ncamus\r\ncamwood\r\ncan\r\ncan-do\r\ncanaan\r\ncanaanite\r\ncanaanitic\r\ncanachites\r\ncanada\r\ncanadian\r\ncanafistola\r\ncanafistula\r\ncanal\r\ncanalicular\r\ncanaliculate\r\ncanaliculus\r\ncanalisation\r\ncanalise\r\ncanalization\r\ncanalize\r\ncananga\r\ncanangium\r\ncanape\r\ncanara\r\ncanard\r\ncanarese\r\ncanaries\r\ncanary\r\ncanary-yellow\r\ncanasta\r\ncanavalia\r\ncanavanine\r\ncanberra\r\ncancan\r\ncancel\r\ncancellate\r\ncancellated\r\ncancellation\r\ncancelled\r\ncancellous\r\ncancer\r\ncancerous\r\ncancerweed\r\ncancridae\r\ncancroid\r\ncancun\r\ncandela\r\ncandelabra\r\ncandelabrum\r\ncandelilla\r\ncandent\r\ncandescent\r\ncandid\r\ncandida\r\ncandidacy\r\ncandidate\r\ncandidature\r\ncandidiasis\r\ncandidly\r\ncandidness\r\ncandied\r\ncandle\r\ncandleberry\r\ncandlelight\r\ncandlemaker\r\ncandlemas\r\ncandlenut\r\ncandlepin\r\ncandlepins\r\ncandlepower\r\ncandlesnuffer\r\ncandlestick\r\ncandlewick\r\ncandlewood\r\ncandor\r\ncandour\r\ncandy\r\ncandy-like\r\ncandy-scented\r\ncandyfloss\r\ncandymaker\r\ncandytuft\r\ncandyweed\r\ncane\r\ncanebrake\r\ncanecutter\r\ncanella\r\ncanella-alba\r\ncanellaceae\r\ncanescent\r\ncanetti\r\ncanfield\r\ncanful\r\ncangue\r\ncanicula\r\ncanicular\r\ncanicule\r\ncanid\r\ncanidae\r\ncanine\r\ncaning\r\ncanis\r\ncanistel\r\ncanister\r\ncanker\r\ncankerous\r\ncankerweed\r\ncankerworm\r\ncanna\r\ncannabidaceae\r\ncannabin\r\ncannabis\r\ncannaceae\r\ncannae\r\ncanned\r\ncannelloni\r\ncannery\r\ncannes\r\ncannibal\r\ncannibalic\r\ncannibalise\r\ncannibalism\r\ncannibalistic\r\ncannibalize\r\ncannikin\r\ncannily\r\ncannister\r\ncannon\r\ncannonade\r\ncannonball\r\ncannoneer\r\ncannula\r\ncannular\r\ncannulate\r\ncannulation\r\ncannulisation\r\ncannulise\r\ncannulization\r\ncannulize\r\ncanny\r\ncanoe\r\ncanoeist\r\ncanon\r\ncanonic\r\ncanonical\r\ncanonisation\r\ncanonise\r\ncanonised\r\ncanonist\r\ncanonization\r\ncanonize\r\ncanonized\r\ncanoodle\r\ncanopied\r\ncanopus\r\ncanopy\r\ncanorous\r\ncant\r\ncantabile\r\ncantabrigian\r\ncantala\r\ncantaloup\r\ncantaloupe\r\ncantankerous\r\ncantata\r\ncanted\r\ncanteen\r\ncanter\r\ncanterbury\r\ncantharellus\r\ncanthus\r\ncanticle\r\ncanticles\r\ncantilever\r\ncantillate\r\ncantillation\r\ncantle\r\ncanto\r\ncanton\r\ncantonal\r\ncantonese\r\ncantonment\r\ncantor\r\ncanty\r\ncanuck\r\ncanulate\r\ncanulation\r\ncanulisation\r\ncanulization\r\ncanute\r\ncanvas\r\ncanvasback\r\ncanvass\r\ncanvasser\r\ncanvassing\r\ncanyon\r\ncanyonside\r\ncaoutchouc\r\ncap\r\ncap-a-pie\r\ncapability\r\ncapable\r\ncapableness\r\ncapably\r\ncapacious\r\ncapaciousness\r\ncapacitance\r\ncapacitate\r\ncapacitive\r\ncapacitor\r\ncapacity\r\ncaparison\r\ncaparisoned\r\ncape\r\ncapek\r\ncapelan\r\ncapelin\r\ncapella\r\ncaper\r\ncapercaillie\r\ncapercailzie\r\ncapet\r\ncapetian\r\ncapeweed\r\ncapful\r\ncapibara\r\ncapillarity\r\ncapillary\r\ncapital\r\ncapitalisation\r\ncapitalise\r\ncapitalism\r\ncapitalist\r\ncapitalistic\r\ncapitalization\r\ncapitalize\r\ncapitate\r\ncapitation\r\ncapitol\r\ncapitonidae\r\ncapitualtion\r\ncapitular\r\ncapitulary\r\ncapitulate\r\ncapitulation\r\ncapitulum\r\ncapiz\r\ncaplin\r\ncapo\r\ncapon\r\ncapone\r\ncaponise\r\ncaponize\r\ncaporetto\r\ncapote\r\ncapoten\r\ncappadocia\r\ncappadocian\r\ncapparidaceae\r\ncapparis\r\ncapped\r\ncappelletti\r\ncappuccino\r\ncapra\r\ncaprella\r\ncapreolus\r\ncapri\r\ncapriccio\r\ncaprice\r\ncapricious\r\ncapriciously\r\ncapriciousness\r\ncapricorn\r\ncapricornis\r\ncapricornus\r\ncaprifig\r\ncaprifoliaceae\r\ncaprimulgid\r\ncaprimulgidae\r\ncaprimulgiformes\r\ncaprimulgus\r\ncaprine\r\ncapriole\r\ncaproidae\r\ncapromyidae\r\ncapros\r\ncapsaicin\r\ncapsella\r\ncapsicum\r\ncapsid\r\ncapsidae\r\ncapsize\r\ncapsizing\r\ncapstan\r\ncapstone\r\ncapsular\r\ncapsulate\r\ncapsulated\r\ncapsule\r\ncapsulise\r\ncapsulize\r\ncaptain\r\ncaptaincy\r\ncaptainship\r\ncaption\r\ncaptious\r\ncaptivate\r\ncaptivated\r\ncaptivating\r\ncaptivatingly\r\ncaptivation\r\ncaptive\r\ncaptivity\r\ncaptopril\r\ncaptor\r\ncapture\r\ncapturer\r\ncapuchin\r\ncapulin\r\ncaput\r\ncapybara\r\ncar\r\ncar-ferry\r\ncar-mechanic\r\ncarabao\r\ncarabidae\r\ncarabineer\r\ncarabiner\r\ncarabinier\r\ncaracal\r\ncaracara\r\ncaracas\r\ncarack\r\ncaracole\r\ncaracolito\r\ncaracul\r\ncarafate\r\ncarafe\r\ncaragana\r\ncarageen\r\ncarambola\r\ncaramel\r\ncaramelise\r\ncaramelize\r\ncarancha\r\ncaranda\r\ncaranday\r\ncarangid\r\ncarangidae\r\ncaranx\r\ncarapace\r\ncarapidae\r\ncarassius\r\ncarat\r\ncaravaggio\r\ncaravan\r\ncaravanning\r\ncaravansary\r\ncaravanserai\r\ncaraway\r\ncarbamate\r\ncarbamide\r\ncarbide\r\ncarbine\r\ncarbineer\r\ncarbocyclic\r\ncarbohydrate\r\ncarbolated\r\ncarboloy\r\ncarbomycin\r\ncarbon\r\ncarbonaceous\r\ncarbonado\r\ncarbonara\r\ncarbonate\r\ncarbonated\r\ncarbonation\r\ncarbondale\r\ncarbonic\r\ncarboniferous\r\ncarbonisation\r\ncarbonise\r\ncarbonization\r\ncarbonize\r\ncarbonous\r\ncarbonyl\r\ncarbonylic\r\ncarborundum\r\ncarboxyl\r\ncarboxylate\r\ncarboxylic\r\ncarboy\r\ncarbuncle\r\ncarbuncled\r\ncarbuncular\r\ncarburet\r\ncarburetor\r\ncarburettor\r\ncarburise\r\ncarburize\r\ncarcajou\r\ncarcase\r\ncarcass\r\ncarcharhinidae\r\ncarcharhinus\r\ncarcharias\r\ncarchariidae\r\ncarcharodon\r\ncarcinogen\r\ncarcinogenic\r\ncarcinoid\r\ncarcinoma\r\ncarcinomatous\r\ncarcinosarcoma\r\ncard\r\ncard-house\r\ncard-playing\r\ncardamine\r\ncardamom\r\ncardamon\r\ncardamum\r\ncardboard\r\ncardcase\r\ncardcastle\r\ncardholder\r\ncardhouse\r\ncardia\r\ncardiac\r\ncardiff\r\ncardigan\r\ncardiidae\r\ncardinal\r\ncardinalate\r\ncardinalfish\r\ncardinality\r\ncardinalship\r\ncardiogram\r\ncardiograph\r\ncardiographic\r\ncardiography\r\ncardioid\r\ncardiologic\r\ncardiologist\r\ncardiology\r\ncardiomegaly\r\ncardiomyopathy\r\ncardiopathy\r\ncardiopulmonary\r\ncardiorespiratory\r\ncardiospasm\r\ncardiospermum\r\ncardiovascular\r\ncarditis\r\ncardium\r\ncardizem\r\ncardoon\r\ncardroom\r\ncards\r\ncardsharp\r\ncardsharper\r\ncarducci\r\ncarduelinae\r\ncarduelis\r\ncarduus\r\ncare\r\ncare-laden\r\ncared-for\r\ncareen\r\ncareer\r\ncareerism\r\ncareerist\r\ncarefree\r\ncarefreeness\r\ncareful\r\ncarefully\r\ncarefulness\r\ncaregiver\r\ncareless\r\ncarelessly\r\ncarelessness\r\ncarelian\r\ncaress\r\ncaressing\r\ncaressive\r\ncaret\r\ncaretaker\r\ncaretta\r\ncarew\r\ncareworn\r\ncarex\r\ncarfare\r\ncarful\r\ncargo\r\ncarhop\r\ncariama\r\ncariamidae\r\ncarib\r\ncaribbean\r\ncaribe\r\ncaribees\r\ncaribou\r\ncarica\r\ncaricaceae\r\ncaricature\r\ncaricaturist\r\ncaries\r\ncarillon\r\ncarillonneur\r\ncarina\r\ncarinal\r\ncarinate\r\ncarinated\r\ncaring\r\ncarioca\r\ncarious\r\ncarissa\r\ncarjack\r\ncarjacking\r\ncark\r\ncarlina\r\ncarload\r\ncarlos\r\ncarlovingian\r\ncarlsbad\r\ncarlyle\r\ncarmaker\r\ncarmelite\r\ncarmichael\r\ncarminative\r\ncarmine\r\ncarnage\r\ncarnal\r\ncarnalise\r\ncarnality\r\ncarnalize\r\ncarnallite\r\ncarnassial\r\ncarnation\r\ncarnauba\r\ncarnegie\r\ncarnegiea\r\ncarnelian\r\ncarnify\r\ncarnival\r\ncarnivora\r\ncarnivore\r\ncarnivorous\r\ncarnosaur\r\ncarnosaura\r\ncarnot\r\ncarnotite\r\ncarob\r\ncaroche\r\ncarol\r\ncarolean\r\ncaroler\r\ncarolina\r\ncaroline\r\ncaroling\r\ncarolingian\r\ncarolinian\r\ncaroller\r\ncarolus\r\ncarom\r\ncarotene\r\ncarotenemia\r\ncarotenoid\r\ncarothers\r\ncarotid\r\ncarotin\r\ncarousal\r\ncarouse\r\ncarousel\r\ncarouser\r\ncarousing\r\ncarp\r\ncarp-like\r\ncarpal\r\ncarpathians\r\ncarpel\r\ncarpellary\r\ncarpellate\r\ncarpentaria\r\ncarpenter\r\ncarpenteria\r\ncarpentry\r\ncarper\r\ncarpet\r\ncarpet-like\r\ncarpetbag\r\ncarpetbagger\r\ncarpeted\r\ncarpeting\r\ncarpetweed\r\ncarphophis\r\ncarpinaceae\r\ncarping\r\ncarpinus\r\ncarpobrotus\r\ncarpocapsa\r\ncarpodacus\r\ncarpophagous\r\ncarpophore\r\ncarport\r\ncarpospore\r\ncarposporic\r\ncarposporous\r\ncarpus\r\ncarrack\r\ncarrageen\r\ncarrageenan\r\ncarrageenin\r\ncarragheen\r\ncarrefour\r\ncarrel\r\ncarrell\r\ncarrere\r\ncarriage\r\ncarriageway\r\ncarrier\r\ncarrion\r\ncarrizo\r\ncarroll\r\ncarrot\r\ncarrottop\r\ncarroty\r\ncarrousel\r\ncarry\r\ncarry-forward\r\ncarry-over\r\ncarryall\r\ncarrycot\r\ncarsick\r\ncarson\r\ncart\r\ncartage\r\ncartagena\r\ncarte\r\ncartel\r\ncarter\r\ncartesian\r\ncarthage\r\ncarthaginian\r\ncarthamus\r\ncarthorse\r\ncarthusian\r\ncartier\r\ncartilage\r\ncartilaginification\r\ncartilaginous\r\ncarting\r\ncartload\r\ncartographer\r\ncartographic\r\ncartographical\r\ncartography\r\ncarton\r\ncartonful\r\ncartoon\r\ncartoonist\r\ncartouch\r\ncartouche\r\ncartridge\r\ncartroad\r\ncartwheel\r\ncartwright\r\ncarum\r\ncaruncle\r\ncaruncula\r\ncaruncular\r\ncarunculate\r\ncarunculated\r\ncarunculous\r\ncaruso\r\ncarve\r\ncarved\r\ncarvedilol\r\ncarvel-built\r\ncarven\r\ncarver\r\ncarving\r\ncarya\r\ncaryatid\r\ncaryocar\r\ncaryocaraceae\r\ncaryophyllaceae\r\ncaryophyllaceous\r\ncaryophyllales\r\ncaryophyllidae\r\ncaryopsis\r\ncaryota\r\ncasaba\r\ncasablanca\r\ncasals\r\ncasanova\r\ncasava\r\ncasbah\r\ncascabel\r\ncascade\r\ncascades\r\ncascara\r\ncascarilla\r\ncase\r\ncase-by-case\r\ncase-hardened\r\ncaseate\r\ncasebook\r\ncased\r\ncaseful\r\ncasein\r\ncasement\r\ncaseous\r\ncasern\r\ncasework\r\ncaseworker\r\ncaseworm\r\ncash\r\ncash-and-carry\r\ncashable\r\ncashbox\r\ncashcard\r\ncashed\r\ncashew\r\ncashier\r\ncashmere\r\ncasing\r\ncasino\r\ncasino-hotel\r\ncask\r\ncasket\r\ncaskful\r\ncasmerodius\r\ncaspar\r\ncaspase\r\ncasper\r\ncaspian\r\ncasque\r\ncasquet\r\ncasquetel\r\ncassandra\r\ncassareep\r\ncassava\r\ncasserole\r\ncassette\r\ncassia\r\ncassie\r\ncassino\r\ncassiope\r\ncassiopeia\r\ncassirer\r\ncassiri\r\ncassite\r\ncassiterite\r\ncassius\r\ncassock\r\ncassocked\r\ncassowary\r\ncast\r\ncast-iron\r\ncast-off\r\ncastanea\r\ncastanets\r\ncastanopsis\r\ncastanospermum\r\ncastaway\r\ncaste\r\ncasteless\r\ncastellated\r\ncaster\r\ncastigate\r\ncastigation\r\ncastile\r\ncastilian\r\ncastilla\r\ncastilleia\r\ncastilleja\r\ncastillian\r\ncasting\r\ncastle\r\ncastled\r\ncastling\r\ncastor\r\ncastoridae\r\ncastoroides\r\ncastrate\r\ncastrated\r\ncastration\r\ncastrato\r\ncastries\r\ncastro\r\ncastroism\r\ncasual\r\ncasually\r\ncasualness\r\ncasualty\r\ncasuaridae\r\ncasuariiformes\r\ncasuarina\r\ncasuarinaceae\r\ncasuarinales\r\ncasuarius\r\ncasuist\r\ncasuistic\r\ncasuistical\r\ncasuistry\r\ncat\r\ncat's-claw\r\ncat's-ear\r\ncat's-paw\r\ncat's-tail\r\ncat-like\r\ncat-o'-nine-tails\r\ncata-cornered\r\ncatabatic\r\ncatabiosis\r\ncatabolic\r\ncatabolise\r\ncatabolism\r\ncatabolize\r\ncatacala\r\ncatachresis\r\ncatachrestic\r\ncatachrestical\r\ncataclinal\r\ncataclysm\r\ncataclysmal\r\ncataclysmic\r\ncatacomb\r\ncatacorner\r\ncatadromous\r\ncatafalque\r\ncataflam\r\ncatalan\r\ncatalase\r\ncatalatic\r\ncatalectic\r\ncatalepsy\r\ncataleptic\r\ncatalexis\r\ncatalog\r\ncataloger\r\ncatalogue\r\ncatalogued\r\ncataloguer\r\ncatalonia\r\ncatalpa\r\ncatalufa\r\ncatalyse\r\ncatalysis\r\ncatalyst\r\ncatalytic\r\ncatalyze\r\ncatamaran\r\ncatamenia\r\ncatamenial\r\ncatamite\r\ncatamount\r\ncatamountain\r\ncatananche\r\ncataphasia\r\ncataphatic\r\ncataphatism\r\ncataphoresis\r\ncataphoretic\r\ncataphract\r\ncataphyll\r\ncataplasia\r\ncataplasm\r\ncataplastic\r\ncatapres\r\ncatapult\r\ncatapultian\r\ncatapultic\r\ncataract\r\ncatarrh\r\ncatarrhal\r\ncatarrhine\r\ncatarrhinian\r\ncatasetum\r\ncatastrophe\r\ncatastrophic\r\ncatatonia\r\ncatatonic\r\ncatawba\r\ncatbird\r\ncatboat\r\ncatbrier\r\ncatcall\r\ncatch\r\ncatchall\r\ncatcher\r\ncatchfly\r\ncatching\r\ncatchment\r\ncatchpenny\r\ncatchphrase\r\ncatchweed\r\ncatchword\r\ncatchy\r\ncatclaw\r\ncatechesis\r\ncatechetic\r\ncatechetical\r\ncatechin\r\ncatechise\r\ncatechism\r\ncatechismal\r\ncatechist\r\ncatechistic\r\ncatechize\r\ncatecholamine\r\ncatechu\r\ncatechumen\r\ncategorem\r\ncategorematic\r\ncategoreme\r\ncategorial\r\ncategoric\r\ncategorical\r\ncategorically\r\ncategorisation\r\ncategorise\r\ncategorised\r\ncategorization\r\ncategorize\r\ncategorized\r\ncategory\r\ncatena\r\ncatenary\r\ncatenate\r\ncatenulate\r\ncater\r\ncater-cornered\r\ncatercorner\r\ncaterer\r\ncatering\r\ncaterpillar\r\ncaterpillar-tracked\r\ncaterwaul\r\ncatfish\r\ncatgut\r\ncatha\r\ncatharacta\r\ncatharanthus\r\ncathari\r\ncatharism\r\ncathars\r\ncatharsis\r\ncathartes\r\ncathartic\r\ncathartid\r\ncathartidae\r\ncathay\r\ncathaya\r\ncathect\r\ncathectic\r\ncathedra\r\ncathedral\r\ncather\r\ncatherine\r\ncatheter\r\ncatheterisation\r\ncatheterise\r\ncatheterization\r\ncatheterize\r\ncathexis\r\ncathode\r\ncathodic\r\ncatholic\r\ncatholicise\r\ncatholicism\r\ncatholicity\r\ncatholicize\r\ncatholicon\r\ncatholicos\r\ncathouse\r\ncation\r\ncationic\r\ncatkin\r\ncatkinate\r\ncatlike\r\ncatling\r\ncatmint\r\ncatnap\r\ncatnip\r\ncatoptric\r\ncatoptrical\r\ncatoptrics\r\ncatoptrophorus\r\ncatostomid\r\ncatostomidae\r\ncatostomus\r\ncatskills\r\ncatsup\r\ncattail\r\ncattalo\r\ncattell\r\ncattie\r\ncattiness\r\ncattish\r\ncattle\r\ncattleman\r\ncattleship\r\ncattleya\r\ncatty\r\ncatty-corner\r\ncatty-cornered\r\ncatullus\r\ncatwalk\r\ncaucasia\r\ncaucasian\r\ncaucasic\r\ncaucasoid\r\ncaucasus\r\ncaucus\r\ncauda\r\ncaudal\r\ncaudally\r\ncaudata\r\ncaudate\r\ncaudated\r\ncaudex\r\ncaul\r\ncauldron\r\ncaulescent\r\ncauliflower\r\ncauline\r\ncaulk\r\ncaulked\r\ncaulking\r\ncaulophyllum\r\ncausa\r\ncausal\r\ncausalgia\r\ncausality\r\ncausation\r\ncausative\r\ncause\r\ncauseless\r\ncauserie\r\ncauseway\r\ncausing\r\ncaustic\r\ncaustically\r\ncauterant\r\ncauterisation\r\ncauterise\r\ncauterization\r\ncauterize\r\ncautery\r\ncaution\r\ncautionary\r\ncautious\r\ncautiously\r\ncautiousness\r\ncavalcade\r\ncavalier\r\ncavalierly\r\ncavalla\r\ncavalry\r\ncavalryman\r\ncave\r\ncaveat\r\ncavell\r\ncaveman\r\ncavendish\r\ncavern\r\ncavernous\r\ncavetto\r\ncavia\r\ncaviar\r\ncaviare\r\ncaviidae\r\ncavil\r\ncaviler\r\ncaviling\r\ncaviller\r\ncavitied\r\ncavity\r\ncavort\r\ncavum\r\ncavy\r\ncaw\r\ncaxton\r\ncay\r\ncayenne\r\ncayman\r\ncayuga\r\ncayuse\r\ncazique\r\ncbc\r\ncbr\r\ncc\r\nccc\r\nccrc\r\ncd\r\ncd-r\r\ncd-rom\r\ncd-wo\r\ncd4\r\ncd8\r\ncdc\r\ncdna\r\nce\r\ncease\r\ncease-fire\r\nceaseless\r\nceaselessly\r\nceaselessness\r\ncebidae\r\ncebu\r\ncebuan\r\ncebuano\r\ncebuella\r\ncebus\r\ncecal\r\ncecidomyidae\r\ncecity\r\ncecropia\r\ncecropiaceae\r\ncecum\r\ncedar\r\ncedar-scented\r\ncedarbird\r\ncedarn\r\ncedarwood\r\ncede\r\ncedi\r\ncedilla\r\nceding\r\ncedrela\r\ncedrus\r\ncefadroxil\r\ncefobid\r\ncefoperazone\r\ncefotaxime\r\nceftazidime\r\nceftin\r\nceftriaxone\r\ncefuroxime\r\nceiba\r\nceibo\r\nceilidh\r\nceiling\r\nceilinged\r\ncelandine\r\ncelastraceae\r\ncelastrus\r\ncelebes\r\ncelebrant\r\ncelebrate\r\ncelebrated\r\ncelebrater\r\ncelebration\r\ncelebrator\r\ncelebratory\r\ncelebrex\r\ncelebrity\r\ncelecoxib\r\nceleriac\r\ncelerity\r\ncelery\r\ncelesta\r\ncelestial\r\ncelestite\r\nceliac\r\ncelibacy\r\ncelibate\r\nceliocentesis\r\ncelioma\r\ncelioscopy\r\ncell\r\ncell-free\r\ncell-like\r\ncellar\r\ncellarage\r\ncellaret\r\ncellblock\r\ncellini\r\ncellist\r\ncello\r\ncellophane\r\ncellphone\r\ncellular\r\ncellularity\r\ncellulite\r\ncellulitis\r\ncelluloid\r\ncellulose\r\ncellulosic\r\ncellulosid\r\ncelom\r\nceloma\r\ncelosia\r\ncelsius\r\ncelt\r\nceltic\r\nceltis\r\nceltuce\r\ncembalo\r\ncement\r\ncementite\r\ncementitious\r\ncementum\r\ncemetery\r\ncenchrus\r\ncenobite\r\ncenobitic\r\ncenobitical\r\ncenogenesis\r\ncenogenetic\r\ncenotaph\r\ncenozoic\r\ncense\r\ncenser\r\ncensor\r\ncensored\r\ncensorial\r\ncensoring\r\ncensorious\r\ncensorship\r\ncensurable\r\ncensure\r\ncensured\r\ncensus\r\ncent\r\ncental\r\ncentare\r\ncentas\r\ncentaur\r\ncentaurea\r\ncentaurium\r\ncentaurus\r\ncentaury\r\ncentavo\r\ncentenarian\r\ncentenary\r\ncentennial\r\ncenter\r\ncenterboard\r\ncentered\r\ncenterfield\r\ncenterfielder\r\ncenterfold\r\ncentering\r\ncenterline\r\ncenterpiece\r\ncentesimal\r\ncentesimo\r\ncentesis\r\ncentigrade\r\ncentile\r\ncentiliter\r\ncentilitre\r\ncentime\r\ncentimeter\r\ncentimetre\r\ncentimo\r\ncentipede\r\ncentner\r\ncentral\r\ncentralisation\r\ncentralise\r\ncentralised\r\ncentralising\r\ncentralism\r\ncentralist\r\ncentralistic\r\ncentrality\r\ncentralization\r\ncentralize\r\ncentralized\r\ncentralizing\r\ncentrally\r\ncentranthus\r\ncentrarchid\r\ncentrarchidae\r\ncentre\r\ncentreboard\r\ncentred\r\ncentrefold\r\ncentrepiece\r\ncentrex\r\ncentric\r\ncentrical\r\ncentrifugal\r\ncentrifugate\r\ncentrifugation\r\ncentrifuge\r\ncentriole\r\ncentripetal\r\ncentriscidae\r\ncentrism\r\ncentrist\r\ncentrocercus\r\ncentroid\r\ncentroidal\r\ncentrolobium\r\ncentromere\r\ncentromeric\r\ncentropomidae\r\ncentropomus\r\ncentropristis\r\ncentropus\r\ncentrosema\r\ncentrosome\r\ncentrosomic\r\ncentrospermae\r\ncentrosymmetric\r\ncentrum\r\ncentunculus\r\ncenturion\r\ncentury\r\nceo\r\ncephalalgia\r\ncephalanthera\r\ncephalaspid\r\ncephalaspida\r\ncephalexin\r\ncephalhematoma\r\ncephalic\r\ncephalitis\r\ncephalobidae\r\ncephalochordata\r\ncephalochordate\r\ncephaloglycin\r\ncephalohematoma\r\ncephalometry\r\ncephalopod\r\ncephalopoda\r\ncephalopodan\r\ncephalopterus\r\ncephaloridine\r\ncephalosporin\r\ncephalotaceae\r\ncephalotaxaceae\r\ncephalotaxus\r\ncephalothin\r\ncephalotus\r\ncepheus\r\ncepphus\r\ncer\r\nceraceous\r\ncerambycidae\r\nceramic\r\nceramicist\r\nceramics\r\nceramist\r\ncerapteryx\r\nceras\r\ncerastes\r\ncerastium\r\ncerate\r\nceratin\r\nceratitis\r\nceratodontidae\r\nceratodus\r\nceratonia\r\nceratopetalum\r\nceratophyllaceae\r\nceratophyllum\r\nceratopogon\r\nceratopogonidae\r\nceratopsia\r\nceratopsian\r\nceratopsidae\r\nceratopteris\r\nceratosaur\r\nceratosaurus\r\nceratostomataceae\r\nceratostomella\r\nceratotherium\r\nceratozamia\r\ncerberus\r\ncercaria\r\ncercarial\r\ncercidiphyllaceae\r\ncercidiphyllum\r\ncercidium\r\ncercis\r\ncercocebus\r\ncercopidae\r\ncercopithecidae\r\ncercopithecus\r\ncercospora\r\ncercosporella\r\ncere\r\ncereal\r\ncerebellar\r\ncerebellum\r\ncerebral\r\ncerebrate\r\ncerebration\r\ncerebromeningitis\r\ncerebrospinal\r\ncerebrovascular\r\ncerebrum\r\ncerecloth\r\ncerement\r\nceremonial\r\nceremonially\r\nceremonious\r\nceremoniously\r\nceremoniousness\r\nceremony\r\nceres\r\nceresin\r\ncereus\r\nceric\r\nceriman\r\ncerise\r\ncerium\r\ncerivastatin\r\ncernuous\r\ncero\r\ncerous\r\nceroxylon\r\ncerriped\r\ncerripede\r\ncert\r\ncertain\r\ncertainly\r\ncertainty\r\ncerthia\r\ncerthiidae\r\ncertifiable\r\ncertificate\r\ncertificated\r\ncertification\r\ncertificatory\r\ncertified\r\ncertify\r\ncertiorari\r\ncertitude\r\ncerulean\r\ncerumen\r\nceruminous\r\nceruse\r\ncerussite\r\ncervantes\r\ncervical\r\ncervicitis\r\ncervid\r\ncervidae\r\ncervine\r\ncervix\r\ncervus\r\nceryle\r\ncesarean\r\ncesarian\r\ncesium\r\ncespitose\r\ncessation\r\ncession\r\ncesspit\r\ncesspool\r\ncestida\r\ncestidae\r\ncestoda\r\ncestode\r\ncestrum\r\ncestum\r\ncetacea\r\ncetacean\r\ncetaceous\r\ncetchup\r\nceterach\r\ncetonia\r\ncetoniidae\r\ncetorhinidae\r\ncetorhinus\r\ncetraria\r\ncetrimide\r\ncetus\r\nceylon\r\nceylonese\r\nceylonite\r\ncezanne\r\ncf\r\ncf.\r\ncfc\r\ncfo\r\ncgs\r\nch'i\r\nch'ing\r\ncha-cha\r\ncha-cha-cha\r\nchabad\r\nchabad-lubavitch\r\nchabasite\r\nchabazite\r\nchablis\r\nchachalaca\r\nchachka\r\nchacma\r\nchad\r\nchadar\r\nchaddar\r\nchadian\r\nchadic\r\nchadlock\r\nchador\r\nchaenactis\r\nchaenomeles\r\nchaenopsis\r\nchaeronea\r\nchaeta\r\nchaetal\r\nchaetodipterus\r\nchaetodon\r\nchaetodontidae\r\nchaetognath\r\nchaetognatha\r\nchaetognathan\r\nchaetognathous\r\nchafe\r\nchafed\r\nchafeweed\r\nchaff\r\nchaffer\r\nchaffinch\r\nchafflike\r\nchaffweed\r\nchaffy\r\nchafing\r\nchaga\r\nchagall\r\nchagatai\r\nchagga\r\nchagrin\r\nchagrined\r\nchahta\r\nchain\r\nchain-smoke\r\nchain-smoker\r\nchained\r\nchainlike\r\nchains\r\nchainsaw\r\nchair\r\nchairlift\r\nchairman\r\nchairmanship\r\nchairperson\r\nchairwoman\r\nchaise\r\nchait\r\nchaja\r\nchalaza\r\nchalazion\r\nchalcanthite\r\nchalcedon\r\nchalcedony\r\nchalcid\r\nchalcidae\r\nchalcidfly\r\nchalcididae\r\nchalcis\r\nchalcocite\r\nchalcopyrite\r\nchalcostigma\r\nchaldaea\r\nchaldaean\r\nchaldea\r\nchaldean\r\nchaldee\r\nchaldron\r\nchalet\r\nchalice\r\nchalk\r\nchalkboard\r\nchalkpit\r\nchalkstone\r\nchalky\r\nchallah\r\nchallenge\r\nchallengeable\r\nchallenger\r\nchallenging\r\nchallis\r\nchalons\r\nchalons-sur-marne\r\nchalybeate\r\nchalybite\r\nchamaea\r\nchamaecrista\r\nchamaecyparis\r\nchamaecytisus\r\nchamaedaphne\r\nchamaeleo\r\nchamaeleon\r\nchamaeleonidae\r\nchamaeleontidae\r\nchamaemelum\r\nchamber\r\nchambered\r\nchamberlain\r\nchambermaid\r\nchamberpot\r\nchambers\r\nchambray\r\nchameleon\r\nchamfer\r\nchamfron\r\nchammy\r\nchamois\r\nchamomile\r\nchamosite\r\nchamp\r\nchampagne\r\nchampagne-ardenne\r\nchampaign\r\nchamperty\r\nchampion\r\nchampionship\r\nchamplain\r\nchampleve\r\nchampollion\r\nchanal\r\nchanar\r\nchance\r\nchance-medley\r\nchanceful\r\nchancel\r\nchancellery\r\nchancellor\r\nchancellorship\r\nchancellorsville\r\nchancery\r\nchancre\r\nchancroid\r\nchancroidal\r\nchancrous\r\nchancy\r\nchandelier\r\nchandelle\r\nchandi\r\nchandler\r\nchandlery\r\nchanfron\r\nchang\r\nchangan\r\nchange\r\nchange-of-pace\r\nchange-up\r\nchangeability\r\nchangeable\r\nchangeableness\r\nchanged\r\nchangeful\r\nchangefulness\r\nchangeless\r\nchangelessness\r\nchangeling\r\nchangeover\r\nchanger\r\nchanging\r\nchangjiang\r\nchangtzu\r\nchannel\r\nchannel-surf\r\nchannelisation\r\nchannelise\r\nchannelization\r\nchannelize\r\nchannels\r\nchannidae\r\nchannukah\r\nchannukkah\r\nchanoyu\r\nchant\r\nchantarelle\r\nchanted\r\nchanter\r\nchanterelle\r\nchantey\r\nchanting\r\nchantlike\r\nchantry\r\nchanty\r\nchanukah\r\nchanukkah\r\nchaos\r\nchaotic\r\nchap\r\nchaparral\r\nchapati\r\nchapatti\r\nchapeau\r\nchapel\r\nchapelgoer\r\nchaperon\r\nchaperone\r\nchapfallen\r\nchapiter\r\nchaplain\r\nchaplaincy\r\nchaplainship\r\nchaplet\r\nchapleted\r\nchaplin\r\nchapman\r\nchapped\r\nchapter\r\nchapterhouse\r\nchapultepec\r\nchar\r\nchara\r\ncharabanc\r\ncharaceae\r\ncharacid\r\ncharacidae\r\ncharacin\r\ncharacinidae\r\ncharacter\r\ncharacterisation\r\ncharacterise\r\ncharacterised\r\ncharacteristic\r\ncharacteristically\r\ncharacterization\r\ncharacterize\r\ncharacterized\r\ncharacterless\r\ncharade\r\ncharades\r\ncharadrii\r\ncharadriidae\r\ncharadriiformes\r\ncharadrius\r\ncharales\r\ncharcoal\r\ncharcoal-gray\r\ncharcoal-grey\r\ncharcot\r\ncharcuterie\r\nchard\r\nchardonnay\r\ncharge\r\nchargeable\r\ncharged\r\nchargeman\r\ncharger\r\nchari\r\nchari-nile\r\ncharina\r\nchariness\r\nchariot\r\ncharioteer\r\ncharisma\r\ncharismatic\r\ncharitable\r\ncharitableness\r\ncharity\r\ncharivari\r\ncharlatan\r\ncharlatanism\r\ncharlemagne\r\ncharleroi\r\ncharles\r\ncharleston\r\ncharlestown\r\ncharley-horse\r\ncharlock\r\ncharlotte\r\ncharlottetown\r\ncharm\r\ncharmed\r\ncharmer\r\ncharming\r\ncharnel\r\ncharolais\r\ncharon\r\ncharophyceae\r\ncharr\r\ncharronia\r\nchart\r\nchartaceous\r\ncharter\r\nchartered\r\ncharterhouse\r\nchartism\r\nchartist\r\nchartless\r\nchartreuse\r\ncharwoman\r\nchary\r\ncharybdis\r\nchase\r\nchased\r\nchaser\r\nchasid\r\nchasidic\r\nchasidim\r\nchasidism\r\nchasm\r\nchasse\r\nchassid\r\nchassidic\r\nchassidim\r\nchassidism\r\nchassis\r\nchaste\r\nchastely\r\nchasten\r\nchastened\r\nchasteness\r\nchastening\r\nchastise\r\nchastised\r\nchastisement\r\nchastity\r\nchasuble\r\nchat\r\nchateau\r\nchateau-thierry\r\nchateaubriand\r\nchatelaine\r\nchateura\r\nchatoyant\r\nchatroom\r\nchattahoochee\r\nchattanooga\r\nchattel\r\nchatter\r\nchatterbox\r\nchatterer\r\nchattering\r\nchattily\r\nchatty\r\nchaucer\r\nchauffeur\r\nchauffeuse\r\nchaulmoogra\r\nchaulmugra\r\nchauna\r\nchauvinism\r\nchauvinist\r\nchauvinistic\r\nchavez\r\nchaw\r\nchawbacon\r\ncheap\r\ncheap-jack\r\ncheapen\r\ncheapjack\r\ncheaply\r\ncheapness\r\ncheapskate\r\ncheat\r\ncheater\r\ncheatgrass\r\ncheating\r\nchebab\r\nchechen\r\nchechenia\r\nchechnya\r\ncheck\r\ncheck-in\r\ncheckbook\r\nchecked\r\nchecker\r\ncheckerberry\r\ncheckerbloom\r\ncheckerboard\r\ncheckered\r\ncheckers\r\nchecklist\r\ncheckmate\r\ncheckout\r\ncheckpoint\r\ncheckrein\r\ncheckroom\r\ncheckrow\r\nchecksum\r\ncheckup\r\ncheddar\r\ncheek\r\ncheekbone\r\ncheekily\r\ncheekiness\r\ncheekpiece\r\ncheeky\r\ncheep\r\ncheer\r\ncheerer\r\ncheerful\r\ncheerfully\r\ncheerfulness\r\ncheerily\r\ncheering\r\ncheerio\r\ncheerlead\r\ncheerleader\r\ncheerless\r\ncheerlessly\r\ncheerlessness\r\ncheery\r\ncheese\r\ncheeseboard\r\ncheeseburger\r\ncheesecake\r\ncheesecloth\r\ncheeseflower\r\ncheeselike\r\ncheesemonger\r\ncheeseparing\r\ncheesy\r\ncheetah\r\ncheever\r\ncheewink\r\nchef\r\nchef-d'oeuvre\r\ncheilanthes\r\ncheilitis\r\ncheiloschisis\r\ncheilosis\r\ncheiranthus\r\nchekhov\r\nchekov\r\nchela\r\nchelate\r\nchelated\r\nchelation\r\nchelicera\r\ncheliceral\r\nchelicerata\r\nchelicerate\r\nchelicerous\r\nchelidonium\r\nchelifer\r\ncheliferous\r\ncheloid\r\nchelone\r\nchelonethida\r\nchelonia\r\nchelonian\r\nchelonidae\r\ncheloniidae\r\nchelyabinsk\r\nchelydra\r\nchelydridae\r\nchemakuan\r\nchemakum\r\nchemic\r\nchemical\r\nchemically\r\nchemiluminescence\r\nchemiluminescent\r\nchemise\r\nchemisorb\r\nchemisorption\r\nchemisorptive\r\nchemist\r\nchemist's\r\nchemistry\r\nchemnitz\r\nchemoimmunology\r\nchemoreceptive\r\nchemoreceptor\r\nchemosis\r\nchemosorption\r\nchemosorptive\r\nchemosurgery\r\nchemosynthesis\r\nchemotaxis\r\nchemotherapeutic\r\nchemotherapeutical\r\nchemotherapy\r\nchemulpo\r\nchen\r\nchenfish\r\nchenille\r\nchennai\r\nchenopodiaceae\r\nchenopodiales\r\nchenopodium\r\ncheops\r\ncheque\r\nchequebook\r\nchequer\r\nchequered\r\ncherbourg\r\ncheremis\r\ncheremiss\r\ncherepovets\r\ncherimolla\r\ncherimoya\r\ncherish\r\ncherished\r\nchermidae\r\nchernobyl\r\ncherokee\r\ncheroot\r\ncherry\r\ncherry-like\r\ncherry-red\r\ncherry-sized\r\ncherrystone\r\nchert\r\ncherty\r\ncherub\r\ncherubic\r\ncherubini\r\nchervil\r\nchess\r\nchessboard\r\nchessman\r\nchest\r\nchester\r\nchesterfield\r\nchesterton\r\nchestnut\r\nchestnut-brown\r\nchestnut-colored\r\nchestnut-coloured\r\nchesty\r\nchetah\r\nchetrum\r\ncheval-de-frise\r\nchevalier\r\nchevaux-de-frise\r\ncheviot\r\ncheviots\r\nchevre\r\nchevron\r\nchevrotain\r\nchevvy\r\nchevy\r\nchew\r\nchewa\r\nchewable\r\nchewer\r\nchewing\r\nchewink\r\nchewy\r\ncheyenne\r\nchi\r\nchian\r\nchianti\r\nchiaroscuro\r\nchiasm\r\nchiasma\r\nchiasmal\r\nchiasmatic\r\nchiasmic\r\nchiasmus\r\nchic\r\nchicago\r\nchicane\r\nchicanery\r\nchicano\r\nchicha\r\nchichewa\r\nchichi\r\nchichipe\r\nchick\r\nchickadee\r\nchickamauga\r\nchickasaw\r\nchicken\r\nchicken-breasted\r\nchicken-fight\r\nchickenfeed\r\nchickenfight\r\nchickenhearted\r\nchickenpox\r\nchickenshit\r\nchickeree\r\nchickpea\r\nchickweed\r\nchicle\r\nchicness\r\nchico\r\nchicory\r\nchicot\r\nchide\r\nchiding\r\nchief\r\nchiefly\r\nchieftain\r\nchieftaincy\r\nchieftainship\r\nchiffon\r\nchiffonier\r\nchigetai\r\nchigger\r\nchiggerflower\r\nchignon\r\nchigoe\r\nchihuahua\r\nchilblain\r\nchilblained\r\nchilblains\r\nchild\r\nchild-centered\r\nchild-proof\r\nchildbearing\r\nchildbed\r\nchildbirth\r\nchildcare\r\nchildhood\r\nchildish\r\nchildishness\r\nchildless\r\nchildlessness\r\nchildlike\r\nchildly\r\nchildproof\r\nchile\r\nchilean\r\nchili\r\nchiliad\r\nchiliasm\r\nchiliast\r\nchiliastic\r\nchill\r\nchiller\r\nchilli\r\nchilliness\r\nchilling\r\nchilly\r\nchiloe\r\nchilomastix\r\nchilomeniscus\r\nchilomycterus\r\nchilopoda\r\nchilopsis\r\nchimaera\r\nchimaeridae\r\nchimakum\r\nchimaphila\r\nchimariko\r\nchimborazo\r\nchime\r\nchimera\r\nchimeral\r\nchimeric\r\nchimerical\r\nchimney\r\nchimneypiece\r\nchimneypot\r\nchimneystack\r\nchimneysweep\r\nchimneysweeper\r\nchimonanthus\r\nchimp\r\nchimpanzee\r\nchimwini\r\nchin\r\nchin-up\r\nchin-wag\r\nchin-wagging\r\nchina\r\nchinaberry\r\nchinaman\r\nchinaware\r\nchincapin\r\nchinch\r\nchincherinchee\r\nchinchilla\r\nchinchillidae\r\nchinchillon\r\nchinchona\r\nchinchy\r\nchine\r\nchinese\r\nchinese-red\r\nchingpo\r\nchink\r\nchinkapin\r\nchinked\r\nchinless\r\nchino\r\nchinoiserie\r\nchinook\r\nchinookan\r\nchinquapin\r\nchintz\r\nchintzily\r\nchintzy\r\nchiococca\r\nchionanthus\r\nchios\r\nchip\r\nchipboard\r\nchipewyan\r\nchipmunk\r\nchipolata\r\nchipotle\r\nchippendale\r\nchipper\r\nchippewa\r\nchippewaian\r\nchippewyan\r\nchipping\r\nchiralgia\r\nchirico\r\nchirk\r\nchirocephalus\r\nchirography\r\nchirology\r\nchiromance\r\nchiromancer\r\nchiromancy\r\nchiromantic\r\nchiron\r\nchironomidae\r\nchironomus\r\nchiropodist\r\nchiropody\r\nchiropractic\r\nchiropractor\r\nchiroptera\r\nchiropteran\r\nchirp\r\nchirpily\r\nchirpiness\r\nchirpy\r\nchirr\r\nchirrup\r\nchisel\r\nchisel-like\r\nchiseled\r\nchiseler\r\nchiseller\r\nchishona\r\nchisinau\r\nchislev\r\nchit\r\nchitchat\r\nchitin\r\nchitinous\r\nchitlings\r\nchitlins\r\nchiton\r\nchittagong\r\nchittamwood\r\nchitter\r\nchitterlings\r\nchittimwood\r\nchivalric\r\nchivalrous\r\nchivalrously\r\nchivalry\r\nchivaree\r\nchive\r\nchives\r\nchivvy\r\nchivy\r\nchiwere\r\nchlamydeous\r\nchlamydera\r\nchlamydia\r\nchlamydiaceae\r\nchlamydial\r\nchlamydomonadaceae\r\nchlamydomonas\r\nchlamydosaurus\r\nchlamydospore\r\nchlamyphore\r\nchlamyphorus\r\nchlamys\r\nchloasma\r\nchlor-trimeton\r\nchlorambucil\r\nchloramine\r\nchloramine-t\r\nchloramphenicol\r\nchloranthaceae\r\nchloranthus\r\nchlorate\r\nchlordiazepoxide\r\nchlorella\r\nchlorenchyma\r\nchlorhexidine\r\nchloride\r\nchlorinate\r\nchlorination\r\nchlorine\r\nchlorinity\r\nchloris\r\nchlorite\r\nchloroacetophenone\r\nchlorobenzene\r\nchlorobenzylidenemalononitrile\r\nchlorococcales\r\nchlorococcum\r\nchlorofluorocarbon\r\nchloroform\r\nchlorofucin\r\nchloromycetin\r\nchlorophis\r\nchlorophoneus\r\nchlorophthalmidae\r\nchlorophyceae\r\nchlorophyl\r\nchlorophyll\r\nchlorophyllose\r\nchlorophyllous\r\nchlorophyta\r\nchlorophyte\r\nchloropicrin\r\nchloroplast\r\nchloroprene\r\nchloroquine\r\nchlorosis\r\nchlorothiazide\r\nchlorotic\r\nchloroxylon\r\nchlorpromazine\r\nchlorpyrifos\r\nchlortetracycline\r\nchlorthalidone\r\nchlorura\r\nchoanocyte\r\nchoc\r\nchoc-ice\r\nchock\r\nchock-a-block\r\nchock-full\r\nchockablock\r\nchockful\r\nchocolate\r\nchocolate-brown\r\nchocolate-colored\r\nchocolate-coloured\r\nchoctaw\r\nchoeronycteris\r\nchoice\r\nchoiceness\r\nchoir\r\nchoirboy\r\nchoirmaster\r\nchoke\r\nchoke-full\r\nchokecherry\r\nchoked\r\nchokedamp\r\nchokehold\r\nchokepoint\r\nchoker\r\nchokey\r\nchoking\r\nchoky\r\ncholangiography\r\ncholangitis\r\ncholecarciferol\r\ncholecystectomy\r\ncholecystitis\r\ncholelithiasis\r\ncholelithotomy\r\ncholer\r\ncholera\r\ncholeraic\r\ncholeric\r\ncholestasis\r\ncholesterin\r\ncholesterol\r\ncholine\r\ncholinergic\r\ncholinesterase\r\ncholla\r\ncholoepus\r\nchomp\r\nchomping\r\nchomsky\r\nchon\r\nchondrichthian\r\nchondrichthyes\r\nchondrify\r\nchondrin\r\nchondriosome\r\nchondrite\r\nchondritic\r\nchondrodystrophy\r\nchondroma\r\nchondrosarcoma\r\nchondrule\r\nchondrus\r\nchongqing\r\nchoo-choo\r\nchoose\r\nchooser\r\nchoosey\r\nchoosy\r\nchop\r\nchop-chop\r\nchopfallen\r\nchophouse\r\nchopin\r\nchopine\r\nchopped\r\nchopper\r\nchoppiness\r\nchoppy\r\nchopsteak\r\nchopstick\r\nchoragic\r\nchoragus\r\nchoral\r\nchorale\r\nchord\r\nchordal\r\nchordamesoderm\r\nchordata\r\nchordate\r\nchordeiles\r\nchorditis\r\nchordomesoderm\r\nchordophone\r\nchordospartium\r\nchore\r\nchorea\r\nchoreograph\r\nchoreographer\r\nchoreographic\r\nchoreography\r\nchoric\r\nchorine\r\nchorioallantois\r\nchoriomeningitis\r\nchorion\r\nchorionic\r\nchorioretinitis\r\nchoriotis\r\nchorister\r\nchorizagrotis\r\nchorizema\r\nchorizo\r\nchoroid\r\nchortle\r\nchorus\r\nchosen\r\nchou\r\nchough\r\nchouse\r\nchow\r\nchowchow\r\nchowder\r\nchrestomathy\r\nchrism\r\nchrisom\r\nchrist\r\nchrist's-thorn\r\nchristchurch\r\nchristella\r\nchristen\r\nchristendom\r\nchristening\r\nchristian\r\nchristiania\r\nchristianisation\r\nchristianise\r\nchristianity\r\nchristianization\r\nchristianize\r\nchristianly\r\nchristie\r\nchristless\r\nchristlike\r\nchristly\r\nchristmas\r\nchristmasberry\r\nchristmastide\r\nchristmastime\r\nchristological\r\nchristology\r\nchristopher\r\nchroma\r\nchromaesthesia\r\nchromate\r\nchromatic\r\nchromaticity\r\nchromatid\r\nchromatin\r\nchromatinic\r\nchromatism\r\nchromatogram\r\nchromatographic\r\nchromatographical\r\nchromatography\r\nchrome\r\nchromesthesia\r\nchromite\r\nchromium\r\nchromium-plate\r\nchromoblastomycosis\r\nchromogen\r\nchromolithography\r\nchromophore\r\nchromoplast\r\nchromosomal\r\nchromosome\r\nchromosphere\r\nchronic\r\nchronically\r\nchronicle\r\nchronicler\r\nchronograph\r\nchronological\r\nchronologise\r\nchronologize\r\nchronology\r\nchronometer\r\nchronoperates\r\nchronoscope\r\nchrysalis\r\nchrysanthemum\r\nchrysaora\r\nchrysarobin\r\nchrysemys\r\nchrysobalanus\r\nchrysoberyl\r\nchrysochloridae\r\nchrysochloris\r\nchrysolepis\r\nchrysolite\r\nchrysolophus\r\nchrysomelid\r\nchrysomelidae\r\nchrysophrys\r\nchrysophyceae\r\nchrysophyllum\r\nchrysophyta\r\nchrysopid\r\nchrysopidae\r\nchrysoprase\r\nchrysopsis\r\nchrysosplenium\r\nchrysothamnus\r\nchrysotherapy\r\nchrysotile\r\nchthonian\r\nchthonic\r\nchuang-tzu\r\nchub\r\nchubbiness\r\nchubby\r\nchuck\r\nchuck-full\r\nchuck-will's-widow\r\nchucker-out\r\nchuckhole\r\nchuckle\r\nchuckwalla\r\nchuddar\r\nchufa\r\nchuff\r\nchuffed\r\nchug\r\nchukaku-ha\r\nchukchi\r\nchukka\r\nchukker\r\nchukker-brown\r\nchum\r\nchumminess\r\nchummy\r\nchump\r\nchunga\r\nchungking\r\nchunk\r\nchunking\r\nchunky\r\nchunnel\r\nchurch\r\nchurch-state\r\nchurchgoer\r\nchurchgoing\r\nchurchill\r\nchurchillian\r\nchurchlike\r\nchurchly\r\nchurchman\r\nchurchwarden\r\nchurchyard\r\nchuridars\r\nchurl\r\nchurlish\r\nchurlishly\r\nchurn\r\nchurned-up\r\nchurning\r\nchurr\r\nchurrigueresco\r\nchurrigueresque\r\nchute\r\nchute-the-chute\r\nchutney\r\nchutzpa\r\nchutzpah\r\nchutzpanik\r\nchuvash\r\nchylaceous\r\nchyle\r\nchylifactive\r\nchylifactory\r\nchyliferous\r\nchylific\r\nchyloderma\r\nchylomicron\r\nchylous\r\nchyme\r\nchymosin\r\nchytridiaceae\r\nchytridiales\r\nchytridiomycetes\r\nci\r\ncia\r\ncialis\r\nciao\r\nciardi\r\ncibotium\r\ncicada\r\ncicada-like\r\ncicadellidae\r\ncicadidae\r\ncicala\r\ncicatrice\r\ncicatrise\r\ncicatrix\r\ncicatrize\r\ncicer\r\ncicero\r\ncicerone\r\ncichlid\r\ncichlidae\r\ncichorium\r\ncicindelidae\r\nciconia\r\nciconiidae\r\nciconiiformes\r\ncicuta\r\ncid\r\ncider\r\nciderpress\r\ncigar\r\ncigar-shaped\r\ncigaret\r\ncigarette\r\ncigarfish\r\ncigarillo\r\ncilantro\r\ncilial\r\nciliary\r\nciliata\r\nciliate\r\nciliated\r\ncilioflagellata\r\nciliophora\r\nciliophoran\r\ncilium\r\ncim\r\ncimabue\r\ncimarron\r\ncimetidine\r\ncimex\r\ncimicidae\r\ncimicifuga\r\ncimmerian\r\ncinch\r\ncinchona\r\ncinchonine\r\ncincinnati\r\ncincinnatus\r\ncinclidae\r\ncinclus\r\ncincture\r\ncinder\r\ncinderella\r\ncine-camera\r\ncine-film\r\ncinema\r\ncinematic\r\ncinematise\r\ncinematize\r\ncinematographer\r\ncinematography\r\ncineraria\r\ncinerarium\r\ncinerary\r\ncingulum\r\ncinnabar\r\ncinnamene\r\ncinnamomum\r\ncinnamon\r\ncinnamon-coloured\r\ncinnamon-red\r\ncinnamon-scented\r\ncinque\r\ncinquefoil\r\ncio\r\ncipher\r\ncipro\r\nciprofloxacin\r\ncira\r\ncircadian\r\ncircaea\r\ncircaetus\r\ncircassian\r\ncirce\r\ncircinate\r\ncircinus\r\ncircle\r\ncirclet\r\ncircuit\r\ncircuitous\r\ncircuitry\r\ncircular\r\ncircular-knit\r\ncircularisation\r\ncircularise\r\ncircularity\r\ncircularization\r\ncircularize\r\ncirculate\r\ncirculating\r\ncirculation\r\ncirculative\r\ncirculatory\r\ncircumambulate\r\ncircumboreal\r\ncircumcise\r\ncircumcision\r\ncircumduction\r\ncircumference\r\ncircumferent\r\ncircumferential\r\ncircumflex\r\ncircumfuse\r\ncircumlocution\r\ncircumlocutious\r\ncircumlocutory\r\ncircumnavigate\r\ncircumnavigation\r\ncircumpolar\r\ncircumscribe\r\ncircumscribed\r\ncircumscription\r\ncircumspect\r\ncircumspection\r\ncircumspectly\r\ncircumstance\r\ncircumstances\r\ncircumstantial\r\ncircumstantially\r\ncircumstantiate\r\ncircumvallate\r\ncircumvent\r\ncircumvention\r\ncircumvolute\r\ncircumvolution\r\ncircumvolve\r\ncircus\r\ncirio\r\ncirque\r\ncirrhosis\r\ncirrhus\r\ncirripedia\r\ncirrocumulus\r\ncirrostratus\r\ncirrus\r\ncirsium\r\ncis\r\ncisalpine\r\ncisc\r\ncisco\r\ncislunar\r\ncismontane\r\ncissy\r\ncistaceae\r\ncistercian\r\ncistern\r\ncisterna\r\ncistothorus\r\ncistron\r\ncistus\r\ncitadel\r\ncitation\r\ncite\r\ncitellus\r\ncitharichthys\r\ncither\r\ncithern\r\ncitified\r\ncitify\r\ncitizen\r\ncitizenry\r\ncitizenship\r\ncitlaltepetl\r\ncitole\r\ncitrange\r\ncitrate\r\ncitric\r\ncitrin\r\ncitrine\r\ncitron\r\ncitroncirus\r\ncitronwood\r\ncitrous\r\ncitrulline\r\ncitrullus\r\ncitrus\r\ncittern\r\ncity\r\ncity-born\r\ncity-bred\r\ncity-like\r\ncity-state\r\ncityfied\r\ncityscape\r\ncitywide\r\ncive\r\ncivet\r\ncivic\r\ncivics\r\ncivies\r\ncivil\r\ncivil-libertarian\r\ncivilian\r\ncivilisation\r\ncivilise\r\ncivilised\r\ncivility\r\ncivilization\r\ncivilize\r\ncivilized\r\ncivilly\r\ncivvies\r\ncjd\r\ncl\r\nclabber\r\nclack\r\nclad\r\ncladding\r\nclade\r\ncladistics\r\ncladode\r\ncladogram\r\ncladonia\r\ncladoniaceae\r\ncladophyll\r\ncladorhyncus\r\ncladrastis\r\nclaforan\r\nclaim\r\nclaimant\r\nclairvoyance\r\nclairvoyant\r\nclam\r\nclamant\r\nclamatores\r\nclamatorial\r\nclambake\r\nclamber\r\nclamminess\r\nclammy\r\nclammyweed\r\nclamor\r\nclamoring\r\nclamorous\r\nclamorously\r\nclamour\r\nclamouring\r\nclamp\r\nclampdown\r\nclams\r\nclamshell\r\nclan\r\nclandestine\r\nclang\r\nclanger\r\nclanging\r\nclangor\r\nclangoring\r\nclangorous\r\nclangour\r\nclangula\r\nclank\r\nclanking\r\nclannish\r\nclannishly\r\nclannishness\r\nclansman\r\nclanswoman\r\nclap\r\nclapboard\r\nclapper\r\nclapperboard\r\nclapperclaw\r\nclappers\r\nclapping\r\nclaptrap\r\nclaque\r\nclarence\r\nclaret\r\nclarification\r\nclarified\r\nclarify\r\nclarifying\r\nclarinet\r\nclarinetist\r\nclarinettist\r\nclarion\r\nclarity\r\nclark\r\nclarksburg\r\nclaro\r\nclary\r\nclash\r\nclashing\r\nclasp\r\nclass\r\nclass-conscious\r\nclassic\r\nclassical\r\nclassicalism\r\nclassicise\r\nclassicism\r\nclassicist\r\nclassicistic\r\nclassicize\r\nclassics\r\nclassifiable\r\nclassification\r\nclassificatory\r\nclassified\r\nclassifier\r\nclassify\r\nclassless\r\nclassmate\r\nclassroom\r\nclasswork\r\nclassy\r\nclast\r\nclastic\r\nclathraceae\r\nclathrate\r\nclathrus\r\nclatter\r\nclattering\r\nclattery\r\nclaudication\r\nclaudius\r\nclausal\r\nclause\r\nclausewitz\r\nclaustrophobe\r\nclaustrophobia\r\nclaustrophobic\r\nclaustrum\r\nclavariaceae\r\nclaver\r\nclaviceps\r\nclavichord\r\nclavicipitaceae\r\nclavicle\r\nclavier\r\nclavus\r\nclaw\r\nclaw-shaped\r\nclawback\r\nclawed\r\nclawfoot\r\nclawhammer\r\nclawlike\r\nclaxon\r\nclay\r\nclay-like\r\nclayey\r\nclaymore\r\nclaystone\r\nclaytonia\r\nclayware\r\nclean\r\nclean-burning\r\nclean-cut\r\nclean-handed\r\nclean-limbed\r\nclean-living\r\nclean-shaven\r\ncleanable\r\ncleaned\r\ncleaner\r\ncleaners\r\ncleaning\r\ncleanliness\r\ncleanly\r\ncleanness\r\ncleanse\r\ncleansed\r\ncleanser\r\ncleansing\r\ncleanthes\r\ncleanup\r\nclear\r\nclear-cut\r\nclear-eyed\r\nclear-sighted\r\nclear-thinking\r\nclearance\r\nclearcutness\r\ncleared\r\nclearheaded\r\nclearing\r\nclearly\r\nclearness\r\nclearstory\r\nclearway\r\nclearweed\r\ncleat\r\ncleats\r\ncleavable\r\ncleavage\r\ncleave\r\ncleaver\r\ncleavers\r\nclef\r\ncleft\r\ncleg\r\nclegg\r\ncleistes\r\ncleistocarp\r\ncleistogamic\r\ncleistogamous\r\ncleistogamy\r\ncleistothecium\r\nclematis\r\nclemenceau\r\nclemency\r\nclemens\r\nclement\r\nclementine\r\nclench\r\nclenched\r\ncleome\r\ncleopatra\r\nclepsydra\r\nclerestory\r\nclergy\r\nclergyman\r\ncleric\r\nclerical\r\nclericalism\r\nclericalist\r\nclerid\r\ncleridae\r\nclerihew\r\nclerisy\r\nclerk\r\nclerking\r\nclerkship\r\nclethra\r\nclethraceae\r\nclethrionomys\r\ncleveland\r\nclever\r\ncleverly\r\ncleverness\r\nclevis\r\nclew\r\nclews\r\ncli\r\nclianthus\r\ncliche\r\ncliched\r\nclichy\r\nclichy-la-garenne\r\nclick\r\nclick-clack\r\nclickety-clack\r\nclickety-click\r\nclient\r\nclientage\r\nclientele\r\ncliff\r\ncliff-brake\r\ncliff-hanging\r\ncliffhanger\r\nclifflike\r\ncliffy\r\ncliftonia\r\nclimacteric\r\nclimactic\r\nclimate\r\nclimatic\r\nclimatical\r\nclimatologist\r\nclimatology\r\nclimax\r\nclimb\r\nclimb-down\r\nclimbable\r\nclimber\r\nclimbing\r\nclime\r\nclinch\r\nclinched\r\nclincher\r\nclincher-built\r\ncline\r\ncling\r\nclingfilm\r\nclingfish\r\nclingstone\r\nclinic\r\nclinical\r\nclinician\r\nclinid\r\nclinidae\r\nclink\r\nclinker\r\nclinker-built\r\nclinking\r\nclinocephalism\r\nclinocephaly\r\nclinodactyly\r\nclinometer\r\nclinopodium\r\nclinoril\r\nclinquant\r\nclinton\r\nclintonia\r\nclio\r\nclioquinol\r\nclip\r\nclip-clop\r\nclip-on\r\nclipboard\r\nclipped\r\nclipper\r\nclippety-clop\r\nclipping\r\nclique\r\ncliquish\r\ncliquishly\r\ncliquishness\r\nclit\r\nclitocybe\r\nclitoral\r\nclitoria\r\nclitoric\r\nclitoridectomy\r\nclitoris\r\nclitter\r\nclive\r\nclivers\r\ncloaca\r\ncloak\r\ncloak-and-dagger\r\ncloaked\r\ncloakmaker\r\ncloakroom\r\nclobber\r\ncloche\r\nclock\r\nclock-watching\r\nclocking\r\nclockmaker\r\nclocks\r\nclocksmith\r\nclockwise\r\nclockwork\r\nclod\r\ncloddish\r\nclodhopper\r\nclofibrate\r\nclog\r\nclogged\r\nclogging\r\ncloggy\r\ncloisonne\r\ncloister\r\ncloistered\r\ncloistral\r\nclomid\r\nclomiphene\r\nclomipramine\r\nclomp\r\nclon\r\nclonal\r\nclone\r\nclonic\r\nclonidine\r\ncloning\r\nclonus\r\nclop\r\nclopping\r\nclorox\r\nclose\r\nclose-fitting\r\nclose-grained\r\nclose-hauled\r\nclose-knit\r\nclose-minded\r\nclose-packed\r\nclose-set\r\nclosed\r\nclosed-chain\r\nclosed-circuit\r\nclosed-door\r\nclosed-minded\r\nclosed-ring\r\nclosedown\r\nclosefisted\r\ncloselipped\r\nclosely\r\nclosely-held\r\nclosemouthed\r\ncloseness\r\ncloseout\r\ncloser\r\nclosest\r\ncloset\r\ncloseup\r\nclosing\r\nclostridia\r\nclostridium\r\nclosure\r\nclot\r\nclotbur\r\ncloth\r\nclothe\r\nclothed\r\nclothes\r\nclothesbrush\r\nclotheshorse\r\nclothesless\r\nclothesline\r\nclothespin\r\nclothespress\r\nclothier\r\nclothing\r\nclotho\r\nclotted\r\nclotting\r\ncloture\r\ncloud\r\ncloud-covered\r\ncloud-cuckoo-land\r\ncloudberry\r\ncloudburst\r\nclouded\r\ncloudiness\r\nclouding\r\ncloudless\r\ncloudlessness\r\ncloudlike\r\ncloudy\r\nclout\r\nclove\r\nclove-scented\r\ncloven\r\ncloven-footed\r\ncloven-hoofed\r\nclover\r\nclover-root\r\ncloverleaf\r\ncloveroot\r\nclovis\r\nclowder\r\nclown\r\nclowning\r\nclownish\r\nclownlike\r\ncloy\r\ncloying\r\nclozapine\r\nclozaril\r\ncloze\r\nclub\r\nclub-head\r\nclub-moss\r\nclub-shaped\r\nclubable\r\nclubbable\r\nclubbing\r\nclubbish\r\nclubby\r\nclubfoot\r\nclubfooted\r\nclubhead\r\nclubhouse\r\nclubroom\r\ncluck\r\nclucking\r\nclue\r\nclueless\r\nclumber\r\nclump\r\nclumping\r\nclumsiness\r\nclumsy\r\nclunch\r\nclunk\r\nclunking\r\nclunky\r\nclupea\r\nclupeid\r\nclupeidae\r\nclusia\r\nclusiaceae\r\ncluster\r\nclustered\r\nclustering\r\nclutch\r\nclutches\r\nclutter\r\ncluttered\r\nclv\r\nclx\r\nclxv\r\nclxx\r\nclxxv\r\nclxxx\r\nclyde\r\nclydesdale\r\nclypeus\r\nclyster\r\nclytemnestra\r\ncm\r\ncmb\r\ncmbr\r\ncmv\r\ncnemidophorus\r\ncnicus\r\ncnidaria\r\ncnidarian\r\ncnidoscolus\r\ncnidosporidia\r\ncnossos\r\ncnossus\r\ncnpz\r\ncns\r\ncnut\r\nco\r\nco-author\r\nco-beneficiary\r\nco-defendant\r\nco-discoverer\r\nco-ed\r\nco-educate\r\nco-occur\r\nco-occurrence\r\nco-occurrent\r\nco-op\r\nco-opt\r\nco-optation\r\nco-option\r\nco-ordinate\r\nco-ordinated\r\nco-pilot\r\nco-referent\r\nco-respondent\r\nco-sign\r\nco-star\r\nco-vary\r\nco-worker\r\nco2\r\ncoach\r\ncoach-and-four\r\ncoachbuilder\r\ncoaching\r\ncoachman\r\ncoachwhip\r\ncoact\r\ncoaction\r\ncoadjutor\r\ncoagulable\r\ncoagulant\r\ncoagulase\r\ncoagulate\r\ncoagulated\r\ncoagulation\r\ncoagulator\r\ncoagulum\r\ncoahuila\r\ncoal\r\ncoal-black\r\ncoal-burning\r\ncoal-fired\r\ncoalbin\r\ncoalesce\r\ncoalesced\r\ncoalescence\r\ncoalescency\r\ncoalescent\r\ncoalescing\r\ncoalface\r\ncoalfield\r\ncoalhole\r\ncoalition\r\ncoalman\r\ncoalpit\r\ncoaming\r\ncoapt\r\ncoarctate\r\ncoarctation\r\ncoarse\r\ncoarse-furred\r\ncoarse-grained\r\ncoarse-haired\r\ncoarse-textured\r\ncoarsely\r\ncoarsen\r\ncoarsened\r\ncoarseness\r\ncoast\r\ncoastal\r\ncoaster\r\ncoastguard\r\ncoastguardsman\r\ncoastland\r\ncoastline\r\ncoastwise\r\ncoat\r\ncoatdress\r\ncoated\r\ncoatee\r\ncoati\r\ncoati-mondi\r\ncoati-mundi\r\ncoating\r\ncoatrack\r\ncoatroom\r\ncoattail\r\ncoauthor\r\ncoax\r\ncoaxal\r\ncoaxer\r\ncoaxial\r\ncoaxing\r\ncoaxingly\r\ncob\r\ncobalamin\r\ncobalt\r\ncobaltite\r\ncobber\r\ncobble\r\ncobbler\r\ncobblers\r\ncobblestone\r\ncobbling\r\ncobia\r\ncobitidae\r\ncobnut\r\ncobol\r\ncobra\r\ncobweb\r\ncobwebby\r\ncoca\r\ncocain\r\ncocaine\r\ncocainise\r\ncocainize\r\ncocarboxylase\r\ncoccal\r\ncocci\r\ncoccidae\r\ncoccidia\r\ncoccidioidomycosis\r\ncoccidiomycosis\r\ncoccidiosis\r\ncoccidium\r\ncoccinellidae\r\ncoccobacillus\r\ncoccoid\r\ncoccoidea\r\ncoccothraustes\r\ncocculus\r\ncoccus\r\ncoccygeal\r\ncoccyx\r\ncoccyzus\r\ncochimi\r\ncochin\r\ncochineal\r\ncochise\r\ncochlea\r\ncochlear\r\ncochlearia\r\ncochlearius\r\ncochran\r\ncock\r\ncock-a-doodle-doo\r\ncock-a-hoop\r\ncock-a-leekie\r\ncockade\r\ncockaigne\r\ncockamamie\r\ncockamamy\r\ncockateel\r\ncockatiel\r\ncockatoo\r\ncockatrice\r\ncockchafer\r\ncockcroft\r\ncockcrow\r\ncocker\r\ncockerel\r\ncockeyed\r\ncockfight\r\ncockfighting\r\ncockhorse\r\ncockiness\r\ncockle\r\ncockle-bur\r\ncockle-burr\r\ncocklebur\r\ncockleburr\r\ncockleshell\r\ncockloft\r\ncockney\r\ncockpit\r\ncockroach\r\ncockscomb\r\ncocksfoot\r\ncockspur\r\ncocksucker\r\ncocksure\r\ncocksureness\r\ncocktail\r\ncockup\r\ncocky\r\ncocky-leeky\r\ncoco\r\ncocoa\r\ncocoanut\r\ncocobolo\r\ncoconspirator\r\ncoconspire\r\ncoconut\r\ncocoon\r\ncocooning\r\ncocopa\r\ncocopah\r\ncocos\r\ncocoswood\r\ncocotte\r\ncocoyam\r\ncocozelle\r\ncocteau\r\ncocus\r\ncocuswood\r\ncocytus\r\ncod\r\ncod-like\r\ncoda\r\ncodariocalyx\r\ncoddle\r\ncoddler\r\ncode\r\ncodefendant\r\ncodeine\r\ncoder\r\ncodetalker\r\ncodex\r\ncodfish\r\ncodger\r\ncodiaeum\r\ncodicil\r\ncodification\r\ncodified\r\ncodify\r\ncoding\r\ncodling\r\ncodlins-and-cream\r\ncodon\r\ncodpiece\r\ncodswallop\r\ncody\r\ncoeducate\r\ncoeducation\r\ncoeducational\r\ncoefficient\r\ncoelacanth\r\ncoelenterata\r\ncoelenterate\r\ncoelenteron\r\ncoeliac\r\ncoeloglossum\r\ncoelogyne\r\ncoelom\r\ncoelophysis\r\ncoelostat\r\ncoenobite\r\ncoenobitic\r\ncoenobitical\r\ncoenzyme\r\ncoequal\r\ncoerce\r\ncoercion\r\ncoercive\r\ncoereba\r\ncoerebidae\r\ncoetaneous\r\ncoeval\r\ncoevals\r\ncoexist\r\ncoexistence\r\ncoexistent\r\ncoexisting\r\ncoextensive\r\ncofactor\r\ncoffea\r\ncoffee\r\ncoffeeberry\r\ncoffeecake\r\ncoffeehouse\r\ncoffeepot\r\ncoffer\r\ncofferdam\r\ncoffin\r\ncofounder\r\ncog\r\ncogency\r\ncogent\r\ncogged\r\ncoggle\r\ncogitable\r\ncogitate\r\ncogitation\r\ncogitative\r\ncognac\r\ncognate\r\ncognation\r\ncognisable\r\ncognisance\r\ncognisant\r\ncognise\r\ncognition\r\ncognitive\r\ncognizable\r\ncognizance\r\ncognizant\r\ncognize\r\ncognomen\r\ncognoscenti\r\ncognoscible\r\ncogwheel\r\ncohabit\r\ncohabitation\r\ncohan\r\ncohere\r\ncoherence\r\ncoherency\r\ncoherent\r\ncoherently\r\ncohesion\r\ncohesive\r\ncohesiveness\r\ncohn\r\ncoho\r\ncohoe\r\ncohort\r\ncohosh\r\ncohune\r\ncoif\r\ncoiffe\r\ncoiffeur\r\ncoiffeuse\r\ncoiffure\r\ncoign\r\ncoigne\r\ncoigue\r\ncoil\r\ncoiled\r\ncoiling\r\ncoin\r\ncoin-operated\r\ncoinage\r\ncoincide\r\ncoincidence\r\ncoincident\r\ncoincidental\r\ncoincidentally\r\ncoincidently\r\ncoinciding\r\ncoiner\r\ncoinsurance\r\ncoinsure\r\ncoir\r\ncoital\r\ncoition\r\ncoitus\r\ncoke\r\ncol\r\ncola\r\ncolander\r\ncolaptes\r\ncolbert\r\ncolchicaceae\r\ncolchicum\r\ncolchine\r\ncolchis\r\ncold\r\ncold-blooded\r\ncold-bloodedly\r\ncold-cream\r\ncold-eyed\r\ncold-shoulder\r\ncold-temperate\r\ncoldcock\r\ncoldcream\r\ncoldhearted\r\ncoldheartedness\r\ncoldly\r\ncoldness\r\ncoldwork\r\ncole\r\ncoleonyx\r\ncoleoptera\r\ncoleridge\r\ncoleridgean\r\ncoleridgian\r\ncoleslaw\r\ncolette\r\ncoleus\r\ncolewort\r\ncolic\r\ncolicky\r\ncolicroot\r\ncolima\r\ncolinus\r\ncoliphage\r\ncoliseum\r\ncolitis\r\ncollaborate\r\ncollaboration\r\ncollaborationism\r\ncollaborationist\r\ncollaborative\r\ncollaborator\r\ncollage\r\ncollagen\r\ncollagenase\r\ncollagenic\r\ncollagenous\r\ncollapsable\r\ncollapse\r\ncollapsible\r\ncollar\r\ncollarbone\r\ncollard\r\ncollards\r\ncollarless\r\ncollate\r\ncollateral\r\ncollateralize\r\ncollation\r\ncolleague\r\ncollect\r\ncollectable\r\ncollected\r\ncollectedly\r\ncollectible\r\ncollecting\r\ncollection\r\ncollective\r\ncollectively\r\ncollectivisation\r\ncollectivise\r\ncollectivised\r\ncollectivism\r\ncollectivist\r\ncollectivistic\r\ncollectivization\r\ncollectivize\r\ncollectivized\r\ncollector\r\ncolleen\r\ncollege\r\ncollegial\r\ncollegian\r\ncollegiate\r\ncollembola\r\ncollembolan\r\ncollet\r\ncollide\r\ncollider\r\ncollie\r\ncollier\r\ncolliery\r\ncolligate\r\ncolligation\r\ncollimate\r\ncollimation\r\ncollimator\r\ncollinear\r\ncollins\r\ncollinsia\r\ncollinsonia\r\ncollision\r\ncollocalia\r\ncollocate\r\ncollocation\r\ncollodion\r\ncollogue\r\ncolloid\r\ncolloidal\r\ncolloquial\r\ncolloquialism\r\ncolloquially\r\ncolloquium\r\ncolloquy\r\ncollotype\r\ncollude\r\ncollusion\r\ncollusive\r\ncolly\r\ncollyrium\r\ncollywobbles\r\ncolobus\r\ncolocasia\r\ncologne\r\ncolombia\r\ncolombian\r\ncolombo\r\ncolon\r\ncolonel\r\ncolonial\r\ncolonialism\r\ncolonialist\r\ncolonic\r\ncolonisation\r\ncolonise\r\ncolonised\r\ncoloniser\r\ncolonist\r\ncolonization\r\ncolonize\r\ncolonized\r\ncolonizer\r\ncolonnade\r\ncolonnaded\r\ncolonoscope\r\ncolonoscopy\r\ncolony\r\ncolophon\r\ncolophony\r\ncolor\r\ncolor-blind\r\ncoloradan\r\ncoloradillo\r\ncolorado\r\ncoloration\r\ncoloratura\r\ncolorcast\r\ncolorectal\r\ncolored\r\ncolorfast\r\ncolorful\r\ncolorimeter\r\ncolorimetric\r\ncolorimetrical\r\ncolorimetry\r\ncoloring\r\ncolorise\r\ncolorist\r\ncolorize\r\ncolorless\r\ncolorlessness\r\ncolors\r\ncolossae\r\ncolossal\r\ncolosseum\r\ncolossian\r\ncolossians\r\ncolossus\r\ncolostomy\r\ncolostrum\r\ncolour\r\ncolour-blind\r\ncolouration\r\ncolourcast\r\ncoloured\r\ncolourful\r\ncolouring\r\ncolourise\r\ncolourize\r\ncolourless\r\ncolourlessness\r\ncolours\r\ncolpitis\r\ncolpocele\r\ncolpocystitis\r\ncolpocystocele\r\ncolpoxerosis\r\ncolt\r\ncoltan\r\ncolter\r\ncoltish\r\ncoltsfoot\r\ncoluber\r\ncolubrid\r\ncolubridae\r\ncolubrina\r\ncolugo\r\ncolumba\r\ncolumbarium\r\ncolumbary\r\ncolumbia\r\ncolumbian\r\ncolumbidae\r\ncolumbiformes\r\ncolumbine\r\ncolumbite\r\ncolumbite-tantalite\r\ncolumbium\r\ncolumbo\r\ncolumbus\r\ncolumella\r\ncolumn\r\ncolumnar\r\ncolumnea\r\ncolumned\r\ncolumniation\r\ncolumniform\r\ncolumnist\r\ncolumnlike\r\ncolutea\r\ncolymbiformes\r\ncolza\r\ncoma\r\ncomal\r\ncomanche\r\ncomandra\r\ncomate\r\ncomatose\r\ncomatoseness\r\ncomatula\r\ncomatulid\r\ncomatulidae\r\ncomb\r\ncomb-like\r\ncomb-out\r\ncomb-plate\r\ncombat\r\ncombat-ready\r\ncombatant\r\ncombative\r\ncombatively\r\ncombativeness\r\ncombed\r\ncombinable\r\ncombination\r\ncombinational\r\ncombinative\r\ncombinatorial\r\ncombinatory\r\ncombine\r\ncombined\r\ncombing\r\ncombining\r\ncombo\r\ncombretaceae\r\ncombretum\r\ncomburant\r\ncomburent\r\ncombust\r\ncombustibility\r\ncombustible\r\ncombustibleness\r\ncombustion\r\ncombustive\r\ncome\r\ncome-at-able\r\ncome-on\r\ncomeback\r\ncomedian\r\ncomedienne\r\ncomedo\r\ncomedown\r\ncomedy\r\ncomeliness\r\ncomely\r\ncomenius\r\ncomer\r\ncomestible\r\ncomet\r\ncomet-like\r\ncometary\r\ncometic\r\ncomeupance\r\ncomeuppance\r\ncomfit\r\ncomfort\r\ncomfortable\r\ncomfortableness\r\ncomfortably\r\ncomforted\r\ncomforter\r\ncomforting\r\ncomfortingly\r\ncomfortless\r\ncomforts\r\ncomfrey\r\ncomfy\r\ncomic\r\ncomical\r\ncomicality\r\ncoming\r\ncomint\r\ncomity\r\ncomma\r\ncommand\r\ncommandant\r\ncommandeer\r\ncommander\r\ncommandership\r\ncommandery\r\ncommanding\r\ncommandment\r\ncommando\r\ncommelina\r\ncommelinaceae\r\ncommelinales\r\ncommelinidae\r\ncommemorate\r\ncommemorating\r\ncommemoration\r\ncommemorative\r\ncommence\r\ncommencement\r\ncommend\r\ncommendable\r\ncommendation\r\ncommensal\r\ncommensalism\r\ncommensurable\r\ncommensurate\r\ncommensurateness\r\ncomment\r\ncommentary\r\ncommentate\r\ncommentator\r\ncommerce\r\ncommercial\r\ncommercialisation\r\ncommercialise\r\ncommercialised\r\ncommercialism\r\ncommercialization\r\ncommercialize\r\ncommercialized\r\ncommie\r\ncomminate\r\ncommination\r\ncomminatory\r\ncommingle\r\ncomminute\r\ncommiphora\r\ncommiserate\r\ncommiseration\r\ncommiserative\r\ncommissar\r\ncommissariat\r\ncommissary\r\ncommission\r\ncommissionaire\r\ncommissioned\r\ncommissioner\r\ncommissioning\r\ncommissure\r\ncommit\r\ncommitment\r\ncommittal\r\ncommitted\r\ncommittedness\r\ncommittee\r\ncommitteeman\r\ncommitteewoman\r\ncommix\r\ncommixture\r\ncommode\r\ncommodious\r\ncommodiousness\r\ncommodity\r\ncommodore\r\ncommon\r\ncommon-law\r\ncommonage\r\ncommonality\r\ncommonalty\r\ncommoner\r\ncommonly\r\ncommonness\r\ncommonplace\r\ncommonplaceness\r\ncommons\r\ncommonsense\r\ncommonsensible\r\ncommonsensical\r\ncommonweal\r\ncommonwealth\r\ncommotion\r\ncommove\r\ncommunal\r\ncommunalise\r\ncommunalism\r\ncommunalize\r\ncommune\r\ncommunicable\r\ncommunicant\r\ncommunicate\r\ncommunicating\r\ncommunication\r\ncommunicational\r\ncommunications\r\ncommunicative\r\ncommunicativeness\r\ncommunicator\r\ncommunicatory\r\ncommunion\r\ncommunique\r\ncommunisation\r\ncommunise\r\ncommunism\r\ncommunist\r\ncommunistic\r\ncommunity\r\ncommunization\r\ncommunize\r\ncommutability\r\ncommutable\r\ncommutate\r\ncommutation\r\ncommutative\r\ncommutator\r\ncommute\r\ncommuter\r\ncommuting\r\ncomoros\r\ncomose\r\ncomp\r\ncompact\r\ncompaction\r\ncompactly\r\ncompactness\r\ncompanion\r\ncompanionability\r\ncompanionable\r\ncompanionableness\r\ncompanionate\r\ncompanionship\r\ncompanionway\r\ncompany\r\ncomparability\r\ncomparable\r\ncomparably\r\ncomparative\r\ncomparatively\r\ncompare\r\ncomparing\r\ncomparison\r\ncomparison-shop\r\ncompart\r\ncompartment\r\ncompartmental\r\ncompartmentalisation\r\ncompartmentalise\r\ncompartmentalised\r\ncompartmentalization\r\ncompartmentalize\r\ncompartmentalized\r\ncompartmented\r\ncompass\r\ncompassion\r\ncompassionate\r\ncompassionately\r\ncompassionateness\r\ncompatibility\r\ncompatible\r\ncompatibly\r\ncompatriot\r\ncompeer\r\ncompel\r\ncompelling\r\ncompendious\r\ncompendium\r\ncompensable\r\ncompensate\r\ncompensated\r\ncompensation\r\ncompere\r\ncompete\r\ncompetence\r\ncompetency\r\ncompetent\r\ncompetently\r\ncompeting\r\ncompetition\r\ncompetitive\r\ncompetitively\r\ncompetitiveness\r\ncompetitor\r\ncompetitory\r\ncompilation\r\ncompile\r\ncompiler\r\ncompiling\r\ncomplacence\r\ncomplacency\r\ncomplacent\r\ncomplain\r\ncomplainant\r\ncomplainer\r\ncomplaining\r\ncomplainingly\r\ncomplaint\r\ncomplaintive\r\ncomplaisance\r\ncomplaisant\r\ncomplect\r\ncomplement\r\ncomplemental\r\ncomplementarity\r\ncomplementary\r\ncomplementation\r\ncomplete\r\ncompleted\r\ncompletely\r\ncompleteness\r\ncompleting\r\ncompletion\r\ncomplex\r\ncomplexifier\r\ncomplexify\r\ncomplexion\r\ncomplexity\r\ncomplexness\r\ncompliance\r\ncompliancy\r\ncompliant\r\ncomplicate\r\ncomplicated\r\ncomplicatedness\r\ncomplication\r\ncomplicity\r\ncompliment\r\ncomplimentary\r\ncompliments\r\ncomplin\r\ncompline\r\ncomplot\r\ncomply\r\ncomponent\r\ncomport\r\ncomportment\r\ncompose\r\ncomposed\r\ncomposedly\r\ncomposer\r\ncomposing\r\ncompositae\r\ncomposite\r\ncompositeness\r\ncomposition\r\ncompositional\r\ncompositor\r\ncompost\r\ncomposure\r\ncompote\r\ncompound\r\ncompounded\r\ncompounding\r\ncomprehend\r\ncomprehended\r\ncomprehendible\r\ncomprehensibility\r\ncomprehensible\r\ncomprehension\r\ncomprehensive\r\ncomprehensively\r\ncomprehensiveness\r\ncompress\r\ncompressed\r\ncompressibility\r\ncompressible\r\ncompressing\r\ncompression\r\ncompressor\r\ncomprise\r\ncompromise\r\ncompromiser\r\ncompromising\r\ncompsognathus\r\ncompton\r\ncomptonia\r\ncomptroller\r\ncomptrollership\r\ncompulsion\r\ncompulsive\r\ncompulsively\r\ncompulsiveness\r\ncompulsivity\r\ncompulsorily\r\ncompulsory\r\ncompunction\r\ncomputable\r\ncomputation\r\ncomputational\r\ncompute\r\ncomputer\r\ncomputerise\r\ncomputerised\r\ncomputerization\r\ncomputerize\r\ncomputerized\r\ncomputing\r\ncomrade\r\ncomradeliness\r\ncomradely\r\ncomradery\r\ncomradeship\r\ncomstock\r\ncomstockery\r\ncomte\r\ncomtism\r\ncon\r\nconacaste\r\nconakry\r\nconcatenate\r\nconcatenation\r\nconcave\r\nconcavely\r\nconcaveness\r\nconcavity\r\nconcavo-concave\r\nconcavo-convex\r\nconceal\r\nconcealed\r\nconcealing\r\nconcealment\r\nconcede\r\nconceding\r\nconceit\r\nconceited\r\nconceitedly\r\nconceitedness\r\nconceivability\r\nconceivable\r\nconceivableness\r\nconceive\r\nconceived\r\nconceiver\r\nconcenter\r\nconcentrate\r\nconcentrated\r\nconcentration\r\nconcentre\r\nconcentric\r\nconcentrical\r\nconcentricity\r\nconcepcion\r\nconcept\r\nconception\r\nconceptional\r\nconceptive\r\nconceptual\r\nconceptualisation\r\nconceptualise\r\nconceptualism\r\nconceptualistic\r\nconceptuality\r\nconceptualization\r\nconceptualize\r\nconceptus\r\nconcern\r\nconcerned\r\nconcert\r\nconcert-goer\r\nconcerted\r\nconcertina\r\nconcertise\r\nconcertize\r\nconcerto\r\nconcession\r\nconcessionaire\r\nconcessioner\r\nconcessive\r\nconch\r\nconcha\r\nconchfish\r\nconchologist\r\nconchology\r\nconcierge\r\nconciliable\r\nconciliate\r\nconciliation\r\nconciliative\r\nconciliator\r\nconciliatory\r\nconcise\r\nconcisely\r\nconciseness\r\nconcision\r\nconclave\r\nconclude\r\nconcluded\r\nconcluding\r\nconclusion\r\nconclusive\r\nconclusively\r\nconclusiveness\r\nconcoct\r\nconcoction\r\nconcomitance\r\nconcomitant\r\nconcord\r\nconcordance\r\nconcordant\r\nconcordat\r\nconcourse\r\nconcrete\r\nconcretely\r\nconcreteness\r\nconcretion\r\nconcretise\r\nconcretism\r\nconcretistic\r\nconcretize\r\nconcubinage\r\nconcubine\r\nconcupiscence\r\nconcupiscent\r\nconcur\r\nconcurrence\r\nconcurrency\r\nconcurrent\r\nconcurrently\r\nconcurring\r\nconcuss\r\nconcussion\r\ncondemn\r\ncondemnable\r\ncondemnation\r\ncondemnatory\r\ncondemned\r\ncondemning\r\ncondensate\r\ncondensation\r\ncondense\r\ncondenser\r\ncondensing\r\ncondescend\r\ncondescending\r\ncondescendingly\r\ncondescendingness\r\ncondescension\r\ncondign\r\ncondiment\r\ncondition\r\nconditional\r\nconditionality\r\nconditionally\r\nconditioned\r\nconditioner\r\nconditioning\r\ncondo\r\ncondole\r\ncondolence\r\ncondolent\r\ncondom\r\ncondominium\r\ncondonation\r\ncondone\r\ncondor\r\ncondorcet\r\nconduce\r\nconducive\r\nconduct\r\nconductance\r\nconducting\r\nconduction\r\nconductive\r\nconductivity\r\nconductor\r\nconductress\r\nconduit\r\ncondylar\r\ncondyle\r\ncondylion\r\ncondylura\r\ncone\r\ncone-bearing\r\ncone-shaped\r\nconeflower\r\nconelike\r\nconenose\r\nconepatus\r\nconessi\r\nconestoga\r\nconey\r\nconfab\r\nconfabulate\r\nconfabulation\r\nconfect\r\nconfection\r\nconfectionary\r\nconfectioner\r\nconfectionery\r\nconfederacy\r\nconfederate\r\nconfederation\r\nconfederative\r\nconfer\r\nconferee\r\nconference\r\nconferment\r\nconferral\r\nconferred\r\nconferrer\r\nconferva\r\nconfess\r\nconfessedly\r\nconfession\r\nconfessional\r\nconfessor\r\nconfetti\r\nconfidant\r\nconfidante\r\nconfide\r\nconfidence\r\nconfident\r\nconfidential\r\nconfidentiality\r\nconfidently\r\nconfiding\r\nconfidingly\r\nconfiguration\r\nconfigurational\r\nconfigurationism\r\nconfigure\r\nconfigured\r\nconfine\r\nconfined\r\nconfinement\r\nconfines\r\nconfining\r\nconfirm\r\nconfirmable\r\nconfirmation\r\nconfirmative\r\nconfirmatory\r\nconfirmed\r\nconfirming\r\nconfiscate\r\nconfiscated\r\nconfiscation\r\nconfit\r\nconfiture\r\nconflagrate\r\nconflagration\r\nconflate\r\nconflict\r\nconflicting\r\nconfluence\r\nconfluent\r\nconflux\r\nconform\r\nconformable\r\nconformance\r\nconformation\r\nconforming\r\nconformism\r\nconformist\r\nconformity\r\nconfound\r\nconfounded\r\nconfoundedly\r\nconfounding\r\nconfrere\r\nconfront\r\nconfrontation\r\nconfrontational\r\nconfucian\r\nconfucianism\r\nconfucianist\r\nconfucius\r\nconfusable\r\nconfuse\r\nconfused\r\nconfusedness\r\nconfusing\r\nconfusingly\r\nconfusion\r\nconfutable\r\nconfutation\r\nconfutative\r\nconfute\r\nconfuter\r\nconga\r\nconge\r\ncongeal\r\ncongealed\r\ncongealment\r\ncongee\r\ncongelation\r\ncongenator\r\ncongener\r\ncongeneric\r\ncongenerical\r\ncongenerous\r\ncongenial\r\ncongeniality\r\ncongenialness\r\ncongenital\r\nconger\r\ncongeries\r\ncongest\r\ncongested\r\ncongestion\r\ncongestive\r\ncongius\r\nconglobate\r\nconglobation\r\nconglobe\r\nconglomerate\r\nconglomeration\r\nconglutinate\r\nconglutination\r\ncongo\r\ncongolese\r\ncongou\r\ncongratulate\r\ncongratulation\r\ncongratulations\r\ncongratulatory\r\ncongregate\r\ncongregating\r\ncongregation\r\ncongregational\r\ncongregationalism\r\ncongregationalist\r\ncongress\r\ncongressional\r\ncongressman\r\ncongresswoman\r\ncongreve\r\ncongridae\r\ncongruence\r\ncongruent\r\ncongruity\r\ncongruous\r\ncongruousness\r\nconic\r\nconical\r\nconidiophore\r\nconidiospore\r\nconidium\r\nconifer\r\nconiferales\r\nconiferophyta\r\nconiferophytina\r\nconiferopsida\r\nconiferous\r\nconilurus\r\nconima\r\nconiogramme\r\nconium\r\nconjectural\r\nconjecture\r\nconjoin\r\nconjoined\r\nconjoint\r\nconjointly\r\nconjugal\r\nconjugally\r\nconjugate\r\nconjugated\r\nconjugation\r\nconjunct\r\nconjunction\r\nconjunctiva\r\nconjunctival\r\nconjunctive\r\nconjunctivitis\r\nconjuncture\r\nconjuration\r\nconjure\r\nconjurer\r\nconjuring\r\nconjuror\r\nconjury\r\nconk\r\nconker\r\nconn\r\nconnaraceae\r\nconnarus\r\nconnate\r\nconnatural\r\nconnect\r\nconnected\r\nconnectedness\r\nconnecter\r\nconnecticut\r\nconnecticuter\r\nconnecting\r\nconnection\r\nconnective\r\nconnectivity\r\nconnector\r\nconnexion\r\nconniption\r\nconnivance\r\nconnive\r\nconniving\r\nconnochaetes\r\nconnoisseur\r\nconnoisseurship\r\nconnolly\r\nconnors\r\nconnotation\r\nconnotational\r\nconnotative\r\nconnote\r\nconnubial\r\nconocarpus\r\nconoclinium\r\nconodont\r\nconodonta\r\nconodontophorida\r\nconoid\r\nconopodium\r\nconospermum\r\nconoy\r\nconquer\r\nconquerable\r\nconquering\r\nconqueror\r\nconquest\r\nconquistador\r\nconrad\r\nconradina\r\nconsanguine\r\nconsanguineal\r\nconsanguineous\r\nconsanguinity\r\nconscience\r\nconscience-smitten\r\nconscienceless\r\nconscientious\r\nconscientiously\r\nconscientiousness\r\nconscionable\r\nconscious\r\nconsciously\r\nconsciousness\r\nconscript\r\nconscription\r\nconsecrate\r\nconsecrated\r\nconsecration\r\nconsecutive\r\nconsensual\r\nconsensus\r\nconsent\r\nconsentaneous\r\nconsentient\r\nconsenting\r\nconsequence\r\nconsequent\r\nconsequential\r\nconsequentially\r\nconsequently\r\nconservancy\r\nconservation\r\nconservationist\r\nconservatism\r\nconservative\r\nconservatively\r\nconservativism\r\nconservativist\r\nconservatoire\r\nconservator\r\nconservatory\r\nconserve\r\nconserved\r\nconserves\r\nconserving\r\nconsider\r\nconsiderable\r\nconsiderably\r\nconsiderate\r\nconsiderately\r\nconsiderateness\r\nconsideration\r\nconsidered\r\nconsign\r\nconsignee\r\nconsigner\r\nconsignment\r\nconsignor\r\nconsist\r\nconsistence\r\nconsistency\r\nconsistent\r\nconsistently\r\nconsistory\r\nconsociate\r\nconsolable\r\nconsolation\r\nconsolatory\r\nconsole\r\nconsolida\r\nconsolidate\r\nconsolidated\r\nconsolidation\r\nconsolidative\r\nconsoling\r\nconsolingly\r\nconsomme\r\nconsonance\r\nconsonant\r\nconsonantal\r\nconsonate\r\nconsort\r\nconsortium\r\nconspecific\r\nconspectus\r\nconspicuous\r\nconspicuously\r\nconspicuousness\r\nconspiracy\r\nconspirative\r\nconspirator\r\nconspiratorial\r\nconspire\r\nconstable\r\nconstabulary\r\nconstance\r\nconstancy\r\nconstant\r\nconstantan\r\nconstantine\r\nconstantinople\r\nconstantly\r\nconstatation\r\nconstellate\r\nconstellation\r\nconsternate\r\nconsternation\r\nconstipate\r\nconstipated\r\nconstipating\r\nconstipation\r\nconstituency\r\nconstituent\r\nconstitute\r\nconstituted\r\nconstitution\r\nconstitutional\r\nconstitutionalise\r\nconstitutionalism\r\nconstitutionalist\r\nconstitutionalize\r\nconstitutionally\r\nconstitutive\r\nconstrain\r\nconstrained\r\nconstraining\r\nconstraint\r\nconstrict\r\nconstricted\r\nconstricting\r\nconstriction\r\nconstrictive\r\nconstrictor\r\nconstringe\r\nconstrual\r\nconstruct\r\nconstruction\r\nconstructive\r\nconstructive-metabolic\r\nconstructiveness\r\nconstructivism\r\nconstructivist\r\nconstructor\r\nconstrue\r\nconsubstantial\r\nconsubstantiate\r\nconsubstantiation\r\nconsuetude\r\nconsuetudinal\r\nconsuetudinary\r\nconsul\r\nconsular\r\nconsulate\r\nconsulship\r\nconsult\r\nconsultancy\r\nconsultant\r\nconsultation\r\nconsultative\r\nconsultatory\r\nconsultive\r\nconsumable\r\nconsume\r\nconsumed\r\nconsumer\r\nconsumerism\r\nconsuming\r\nconsummate\r\nconsummated\r\nconsummation\r\nconsumption\r\nconsumptive\r\ncontact\r\ncontadino\r\ncontagion\r\ncontagious\r\ncontagiously\r\ncontain\r\ncontained\r\ncontainer\r\ncontainerful\r\ncontainerise\r\ncontainerised\r\ncontainerize\r\ncontainerized\r\ncontainership\r\ncontainment\r\ncontaminant\r\ncontaminate\r\ncontaminated\r\ncontaminating\r\ncontamination\r\ncontaminative\r\ncontemn\r\ncontemplate\r\ncontemplation\r\ncontemplative\r\ncontemplativeness\r\ncontemporaneity\r\ncontemporaneous\r\ncontemporaneousness\r\ncontemporaries\r\ncontemporary\r\ncontemporise\r\ncontemporize\r\ncontempt\r\ncontemptibility\r\ncontemptible\r\ncontemptuous\r\ncontemptuously\r\ncontemptuousness\r\ncontend\r\ncontender\r\ncontending\r\ncontent\r\ncontented\r\ncontentedness\r\ncontention\r\ncontentious\r\ncontentiousness\r\ncontentment\r\ncontents\r\nconterminous\r\ncontest\r\ncontestable\r\ncontestant\r\ncontestation\r\ncontested\r\ncontestee\r\ncontester\r\ncontext\r\ncontextual\r\ncontiguity\r\ncontiguous\r\ncontiguousness\r\ncontinence\r\ncontinency\r\ncontinent\r\ncontinent-wide\r\ncontinental\r\ncontingence\r\ncontingency\r\ncontingent\r\ncontinual\r\ncontinuance\r\ncontinuant\r\ncontinuation\r\ncontinuative\r\ncontinue\r\ncontinued\r\ncontinuing\r\ncontinuity\r\ncontinuo\r\ncontinuous\r\ncontinuously\r\ncontinuousness\r\ncontinuum\r\nconto\r\ncontopus\r\ncontort\r\ncontorted\r\ncontortion\r\ncontortionist\r\ncontour\r\ncontraband\r\ncontrabandist\r\ncontrabass\r\ncontrabassoon\r\ncontraception\r\ncontraceptive\r\ncontraclockwise\r\ncontract\r\ncontractable\r\ncontracted\r\ncontractile\r\ncontractility\r\ncontracting\r\ncontraction\r\ncontractor\r\ncontractual\r\ncontracture\r\ncontradance\r\ncontradict\r\ncontradiction\r\ncontradictoriness\r\ncontradictory\r\ncontradistinction\r\ncontradistinguish\r\ncontrafagotto\r\ncontrail\r\ncontraindicate\r\ncontraindication\r\ncontralateral\r\ncontralto\r\ncontraption\r\ncontrapuntal\r\ncontrapuntist\r\ncontrarian\r\ncontrariety\r\ncontrarily\r\ncontrariness\r\ncontrarious\r\ncontrariwise\r\ncontrary\r\ncontrast\r\ncontrasting\r\ncontrastive\r\ncontrasty\r\ncontravene\r\ncontravention\r\ncontredanse\r\ncontretemps\r\ncontribute\r\ncontributing\r\ncontribution\r\ncontributive\r\ncontributor\r\ncontributory\r\ncontrite\r\ncontritely\r\ncontriteness\r\ncontrition\r\ncontrivance\r\ncontrive\r\ncontrived\r\ncontriver\r\ncontrol\r\ncontrollable\r\ncontrolled\r\ncontroller\r\ncontrollership\r\ncontrolling\r\ncontroversial\r\ncontroversialist\r\ncontroversially\r\ncontroversy\r\ncontrovert\r\ncontumacious\r\ncontumaciously\r\ncontumacy\r\ncontumelious\r\ncontumeliously\r\ncontumely\r\ncontuse\r\ncontused\r\ncontusion\r\ncontusioned\r\nconundrum\r\nconurbation\r\nconuropsis\r\nconvalesce\r\nconvalescence\r\nconvalescent\r\nconvallaria\r\nconvallariaceae\r\nconvect\r\nconvection\r\nconvector\r\nconvene\r\nconvener\r\nconvenience\r\nconveniences\r\nconvenient\r\nconveniently\r\nconvening\r\nconvent\r\nconventicle\r\nconvention\r\nconventional\r\nconventionalisation\r\nconventionalise\r\nconventionalised\r\nconventionalism\r\nconventionality\r\nconventionalization\r\nconventionalize\r\nconventionalized\r\nconventionally\r\nconventioneer\r\nconventual\r\nconverge\r\nconvergence\r\nconvergency\r\nconvergent\r\nconverging\r\nconversance\r\nconversancy\r\nconversant\r\nconversation\r\nconversational\r\nconversationalist\r\nconversationally\r\nconversationist\r\nconverse\r\nconversion\r\nconverso\r\nconvert\r\nconverted\r\nconverter\r\nconvertibility\r\nconvertible\r\nconvertor\r\nconvex\r\nconvexity\r\nconvexly\r\nconvexness\r\nconvexo-concave\r\nconvexo-convex\r\nconvey\r\nconveyable\r\nconveyance\r\nconveyancer\r\nconveyancing\r\nconveyed\r\nconveyer\r\nconveying\r\nconveyor\r\nconvict\r\nconvicted\r\nconvictfish\r\nconviction\r\nconvince\r\nconvinced\r\nconvincible\r\nconvincing\r\nconvincingly\r\nconvincingness\r\nconvivial\r\nconviviality\r\nconvocation\r\nconvoke\r\nconvolute\r\nconvoluted\r\nconvolution\r\nconvolve\r\nconvolvulaceae\r\nconvolvulus\r\nconvoy\r\nconvulse\r\nconvulsion\r\nconvulsive\r\nconvulsively\r\ncony\r\nconyza\r\ncoo\r\ncooccur\r\ncooccurring\r\ncook\r\ncookbook\r\ncooke\r\ncooked\r\ncooker\r\ncookery\r\ncookfire\r\ncookhouse\r\ncookie\r\ncookie-cutter\r\ncookie-sized\r\ncooking\r\ncookout\r\ncookstove\r\ncookware\r\ncooky\r\ncool\r\ncool-white\r\ncoolant\r\ncooler\r\ncoolheaded\r\ncoolidge\r\ncoolie\r\ncooling\r\ncoolly\r\ncoolness\r\ncoolwart\r\ncooly\r\ncoon\r\ncoondog\r\ncoonhound\r\ncoonskin\r\ncoontie\r\ncoop\r\ncooper\r\ncooperate\r\ncooperation\r\ncooperative\r\ncooperatively\r\ncooperativeness\r\ncooperator\r\ncooperstown\r\ncoordinate\r\ncoordinated\r\ncoordinating\r\ncoordination\r\ncoordinative\r\ncoordinator\r\ncoosa\r\ncoot\r\ncooter\r\ncootie\r\ncop\r\ncopacetic\r\ncopaiba\r\ncopal\r\ncopaline\r\ncopalite\r\ncopartner\r\ncopartnership\r\ncopasetic\r\ncope\r\ncopeck\r\ncopehan\r\ncopenhagen\r\ncopepod\r\ncopepoda\r\ncopernican\r\ncopernicia\r\ncopernicus\r\ncopesetic\r\ncopesettic\r\ncopestone\r\ncopied\r\ncopier\r\ncopilot\r\ncoping\r\ncopious\r\ncopiously\r\ncopiousness\r\ncoplanar\r\ncopland\r\ncopley\r\ncopolymer\r\ncopolymerise\r\ncopolymerize\r\ncopout\r\ncopper\r\ncopper-bottom\r\ncopper-bottomed\r\ncopperhead\r\ncopperplate\r\ncoppersmith\r\ncopperware\r\ncoppery\r\ncoppice\r\ncoppola\r\ncopra\r\ncoprinaceae\r\ncoprinus\r\ncoprolalia\r\ncoprolite\r\ncoprolith\r\ncoprophagia\r\ncoprophagy\r\ncopse\r\ncopt\r\ncoptic\r\ncoptis\r\ncopula\r\ncopular\r\ncopulate\r\ncopulation\r\ncopulative\r\ncopulatory\r\ncopy\r\ncopybook\r\ncopycat\r\ncopyedit\r\ncopyhold\r\ncopyholder\r\ncopying\r\ncopyist\r\ncopyread\r\ncopyreader\r\ncopyright\r\ncopyrighted\r\ncopywriter\r\ncoquet\r\ncoquetry\r\ncoquette\r\ncoquettish\r\ncoquettishly\r\ncoquille\r\ncora\r\ncoracan\r\ncoracias\r\ncoraciidae\r\ncoraciiformes\r\ncoracle\r\ncoragyps\r\ncorakan\r\ncoral\r\ncoral-red\r\ncoral-wood\r\ncoralbells\r\ncoralberry\r\ncorallorhiza\r\ncoralroot\r\ncoralwood\r\ncoralwort\r\ncorbel\r\ncorbett\r\ncorbie-step\r\ncorbiestep\r\ncorbina\r\ncorchorus\r\ncord\r\ncordage\r\ncordaitaceae\r\ncordaitales\r\ncordaites\r\ncordarone\r\ncordate\r\ncorday\r\ncorded\r\ncordgrass\r\ncordia\r\ncordial\r\ncordiality\r\ncordially\r\ncordierite\r\ncordiform\r\ncordite\r\ncorditis\r\ncordless\r\ncordoba\r\ncordon\r\ncordova\r\ncordovan\r\ncords\r\ncorduroy\r\ncorduroys\r\ncordwood\r\ncordylidae\r\ncordyline\r\ncordylus\r\ncore\r\ncoreference\r\ncoreferent\r\ncoreferential\r\ncoregonidae\r\ncoregonus\r\ncoreid\r\ncoreidae\r\ncoreligionist\r\ncorelli\r\ncoreopsis\r\ncorer\r\ncorespondent\r\ncorgard\r\ncorgi\r\ncoriaceous\r\ncoriander\r\ncoriandrum\r\ncoricidin\r\ncorinth\r\ncorinthian\r\ncorium\r\ncorixa\r\ncorixidae\r\ncork\r\ncorkage\r\ncorkboard\r\ncorked\r\ncorker\r\ncorking\r\ncorkscrew\r\ncorkwood\r\ncorky\r\ncorm\r\ncormorant\r\ncormose\r\ncormous\r\ncorn\r\ncorn-fed\r\ncornaceae\r\ncornbread\r\ncorncob\r\ncorncrake\r\ncorncrib\r\ncornea\r\ncorneal\r\ncorned\r\ncorneille\r\ncornel\r\ncornelian\r\ncornell\r\ncorneous\r\ncorner\r\ncornerback\r\ncornered\r\ncornerstone\r\ncornet\r\ncornetfish\r\ncornetist\r\ncorneum\r\ncornfield\r\ncornflour\r\ncornflower\r\ncornhusk\r\ncornhusker\r\ncornhusking\r\ncornice\r\ncornish\r\ncornishman\r\ncornishwoman\r\ncornmeal\r\ncornpone\r\ncornsmut\r\ncornstalk\r\ncornstarch\r\ncornu\r\ncornucopia\r\ncornus\r\ncornwall\r\ncornwallis\r\ncorny\r\ncorokia\r\ncorolla\r\ncorollary\r\ncorona\r\ncoronach\r\ncoronal\r\ncoronary\r\ncoronate\r\ncoronation\r\ncoroner\r\ncoronet\r\ncoroneted\r\ncoronilla\r\ncoronion\r\ncoropuna\r\ncorot\r\ncorozo\r\ncorp\r\ncorporal\r\ncorporality\r\ncorporate\r\ncorporation\r\ncorporeal\r\ncorporeality\r\ncorposant\r\ncorps\r\ncorpse\r\ncorpulence\r\ncorpulency\r\ncorpulent\r\ncorpus\r\ncorpuscle\r\ncorpuscular\r\ncorrade\r\ncorral\r\ncorrasion\r\ncorrect\r\ncorrectable\r\ncorrected\r\ncorrection\r\ncorrectional\r\ncorrections\r\ncorrectitude\r\ncorrective\r\ncorrectly\r\ncorrectness\r\ncorreggio\r\ncorregidor\r\ncorrelate\r\ncorrelated\r\ncorrelation\r\ncorrelational\r\ncorrelative\r\ncorrelativity\r\ncorrespond\r\ncorrespondence\r\ncorrespondent\r\ncorresponding\r\ncorrida\r\ncorridor\r\ncorrie\r\ncorrigenda\r\ncorrigendum\r\ncorrigible\r\ncorroborant\r\ncorroborate\r\ncorroborated\r\ncorroboration\r\ncorroborative\r\ncorroboratory\r\ncorrode\r\ncorroded\r\ncorrodentia\r\ncorroding\r\ncorrosion\r\ncorrosion-resistant\r\ncorrosive\r\ncorrugate\r\ncorrugated\r\ncorrugation\r\ncorrupt\r\ncorrupted\r\ncorruptedly\r\ncorruptibility\r\ncorruptible\r\ncorrupting\r\ncorruption\r\ncorruptive\r\ncorruptly\r\ncorruptness\r\ncorsage\r\ncorsair\r\ncorse\r\ncorselet\r\ncorset\r\ncorsica\r\ncorsican\r\ncorslet\r\ncortaderia\r\ncortef\r\ncortege\r\ncortes\r\ncortex\r\ncortez\r\ncortical\r\ncorticifugal\r\ncorticipetal\r\ncorticium\r\ncorticoafferent\r\ncorticoefferent\r\ncorticofugal\r\ncorticoid\r\ncorticosteroid\r\ncorticosterone\r\ncorticotrophin\r\ncorticotropin\r\ncortina\r\ncortinariaceae\r\ncortinarius\r\ncortisol\r\ncortisone\r\ncortland\r\ncorundom\r\ncorundum\r\ncoruscant\r\ncoruscate\r\ncoruscation\r\ncorvee\r\ncorvette\r\ncorvidae\r\ncorvine\r\ncorvus\r\ncoryanthes\r\ncorydalidae\r\ncorydalis\r\ncorydalus\r\ncorylaceae\r\ncorylopsis\r\ncorylus\r\ncorymb\r\ncorymbose\r\ncorynebacteriaceae\r\ncorynebacterium\r\ncorypha\r\ncoryphaenidae\r\ncoryphantha\r\ncorythosaur\r\ncorythosaurus\r\ncoryza\r\ncos\r\ncoscoroba\r\ncosec\r\ncosecant\r\ncoseismal\r\ncoseismic\r\ncosey\r\ncosh\r\ncosher\r\ncosign\r\ncosignatory\r\ncosigner\r\ncosily\r\ncosine\r\ncosiness\r\ncosmea\r\ncosmetic\r\ncosmetician\r\ncosmetologist\r\ncosmetology\r\ncosmic\r\ncosmocampus\r\ncosmogenic\r\ncosmogenical\r\ncosmogeny\r\ncosmogonic\r\ncosmogonical\r\ncosmogony\r\ncosmographer\r\ncosmographist\r\ncosmography\r\ncosmolatry\r\ncosmologic\r\ncosmological\r\ncosmologist\r\ncosmology\r\ncosmonaut\r\ncosmopolitan\r\ncosmopolite\r\ncosmos\r\ncosmotron\r\ncosponsor\r\ncoss\r\ncossack\r\ncosset\r\ncost\r\ncost-effective\r\ncost-efficient\r\ncost-plus\r\ncosta\r\ncostal\r\ncostalgia\r\ncostanoan\r\ncostate\r\ncostermonger\r\ncostia\r\ncostiasis\r\ncosting\r\ncostive\r\ncostless\r\ncostliness\r\ncostly\r\ncostmary\r\ncostochondritis\r\ncosts\r\ncostume\r\ncostumed\r\ncostumer\r\ncostumier\r\ncostusroot\r\ncosy\r\ncot\r\ncotacachi\r\ncotan\r\ncotangent\r\ncote\r\ncotenant\r\ncoterie\r\ncoterminous\r\ncothromboplastin\r\ncotilion\r\ncotillion\r\ncotinga\r\ncotingidae\r\ncotinus\r\ncotoneaster\r\ncotonou\r\ncotopaxi\r\ncotswold\r\ncotswolds\r\ncottage\r\ncottager\r\ncottar\r\ncotter\r\ncottidae\r\ncottier\r\ncotton\r\ncottonmouth\r\ncottonseed\r\ncottontail\r\ncottonweed\r\ncottonwick\r\ncottonwood\r\ncottony\r\ncottony-white\r\ncottus\r\ncotula\r\ncoturnix\r\ncotyledon\r\ncotyloid\r\ncotyloidal\r\ncoucal\r\ncouch\r\ncouchant\r\ncouchette\r\ncougar\r\ncough\r\ncoughing\r\ncoulisse\r\ncoulomb\r\ncoulter\r\ncoumadin\r\ncoumarone\r\ncoumarouna\r\ncouncil\r\ncouncillor\r\ncouncillorship\r\ncouncilman\r\ncouncilorship\r\ncouncilwoman\r\ncounsel\r\ncounseling\r\ncounselling\r\ncounsellor\r\ncounsellorship\r\ncounselor\r\ncounselor-at-law\r\ncounselorship\r\ncount\r\ncountable\r\ncountdown\r\ncountenance\r\ncounter\r\ncounter-drill\r\ncounter-revolutionist\r\ncounter-sabotage\r\ncounteract\r\ncounteraction\r\ncounteractive\r\ncounterargument\r\ncounterattack\r\ncounterattraction\r\ncounterbalance\r\ncounterbalanced\r\ncounterblast\r\ncounterblow\r\ncounterbombardment\r\ncounterbore\r\ncounterchallenge\r\ncounterchange\r\ncountercharge\r\ncountercheck\r\ncounterclaim\r\ncounterclockwise\r\ncountercoup\r\ncounterculture\r\ncountercurrent\r\ncounterdemonstration\r\ncounterdemonstrator\r\ncounterespionage\r\ncounterexample\r\ncounterfactual\r\ncounterfactuality\r\ncounterfeit\r\ncounterfeiter\r\ncounterfire\r\ncounterfoil\r\ncounterglow\r\ncounterinsurgency\r\ncounterinsurgent\r\ncounterintelligence\r\ncounterintuitive\r\ncounterirritant\r\ncounterman\r\ncountermand\r\ncountermarch\r\ncountermeasure\r\ncountermine\r\ncountermove\r\ncounteroffensive\r\ncounteroffer\r\ncounterpane\r\ncounterpart\r\ncounterperson\r\ncounterplan\r\ncounterplay\r\ncounterplea\r\ncounterplot\r\ncounterpoint\r\ncounterpoise\r\ncounterpoised\r\ncounterpoison\r\ncounterpose\r\ncounterproductive\r\ncounterproposal\r\ncounterpunch\r\ncounterreformation\r\ncounterrevolution\r\ncounterrevolutionary\r\ncounterrevolutionist\r\ncountershot\r\ncountersign\r\ncountersignature\r\ncountersink\r\ncounterspy\r\ncounterstain\r\ncounterstrike\r\ncountersubversion\r\ncountersuit\r\ncountertenor\r\ncounterterror\r\ncounterterrorism\r\ncounterterrorist\r\ncountertop\r\ncountertransference\r\ncountervail\r\ncounterweight\r\ncounterwoman\r\ncountess\r\ncounting\r\ncountinghouse\r\ncountless\r\ncountlessness\r\ncountrified\r\ncountry\r\ncountry-bred\r\ncountry-dance\r\ncountry-style\r\ncountryfied\r\ncountryfolk\r\ncountryman\r\ncountryseat\r\ncountryside\r\ncountrywide\r\ncountrywoman\r\ncounts/minute\r\ncounty\r\ncountywide\r\ncoup\r\ncoupe\r\ncouperin\r\ncouple\r\ncoupled\r\ncoupler\r\ncouplet\r\ncoupling\r\ncoupon\r\ncourage\r\ncourageous\r\ncourageously\r\ncourageousness\r\ncourbaril\r\ncourbet\r\ncourgette\r\ncourier\r\ncourlan\r\ncourse\r\ncourser\r\ncoursework\r\ncoursing\r\ncourt\r\ncourt-martial\r\ncourt-ordered\r\ncourtelle\r\ncourteous\r\ncourteously\r\ncourtesan\r\ncourtesy\r\ncourthouse\r\ncourtier\r\ncourting\r\ncourtliness\r\ncourtly\r\ncourtroom\r\ncourtship\r\ncourtyard\r\ncouscous\r\ncousin\r\ncousin-german\r\ncousinly\r\ncousteau\r\ncouth\r\ncouthie\r\ncouthy\r\ncouture\r\ncouturier\r\ncouvade\r\ncouverture\r\ncovalence\r\ncovalency\r\ncovalent\r\ncovariance\r\ncovariant\r\ncovariation\r\ncove\r\ncoven\r\ncovenant\r\ncoventry\r\ncover\r\ncover-up\r\ncoverage\r\ncoverall\r\ncovered\r\ncovering\r\ncoverlet\r\ncovert\r\ncovertly\r\ncovertness\r\ncovet\r\ncoveted\r\ncovetous\r\ncovetously\r\ncovetousness\r\ncovey\r\ncoville\r\ncow\r\ncow-like\r\ncowage\r\ncoward\r\ncowardice\r\ncowardliness\r\ncowardly\r\ncowbarn\r\ncowbell\r\ncowberry\r\ncowbird\r\ncowboy\r\ncowcatcher\r\ncowed\r\ncower\r\ncowfish\r\ncowgirl\r\ncowhand\r\ncowherb\r\ncowherd\r\ncowhide\r\ncowhouse\r\ncowl\r\ncowl-shaped\r\ncowled\r\ncowlick\r\ncowling\r\ncowman\r\ncowpea\r\ncowpens\r\ncowper\r\ncowpie\r\ncowpoke\r\ncowpox\r\ncowpuncher\r\ncowrie\r\ncowry\r\ncows\r\ncowshed\r\ncowskin\r\ncowslip\r\ncox\r\ncox-1\r\ncox-2\r\ncoxa\r\ncoxcomb\r\ncoxsackievirus\r\ncoxswain\r\ncoy\r\ncoydog\r\ncoyness\r\ncoyol\r\ncoyote\r\ncoypu\r\ncozen\r\ncozenage\r\ncozey\r\ncozie\r\ncozily\r\ncoziness\r\ncozy\r\ncpa\r\ncpi\r\ncpr\r\ncps\r\ncpu\r\ncr\r\ncrab\r\ncrabapple\r\ncrabapple-like\r\ncrabbed\r\ncrabbedness\r\ncrabbiness\r\ncrabby\r\ncrabgrass\r\ncrabmeat\r\ncrabs\r\ncrabwise\r\ncracidae\r\ncrack\r\ncrack-up\r\ncrackbrained\r\ncrackdown\r\ncracked\r\ncracker\r\ncracker-barrel\r\ncrackerberry\r\ncrackerjack\r\ncrackers\r\ncracking\r\ncrackle\r\ncrackleware\r\ncrackling\r\ncracklings\r\ncrackpot\r\ncracksman\r\ncracow\r\ncracticidae\r\ncracticus\r\ncradle\r\ncradlesong\r\ncraft\r\ncrafter\r\ncraftily\r\ncraftiness\r\ncraftsman\r\ncraftsmanship\r\ncrafty\r\ncrag\r\ncragfast\r\ncragged\r\ncraggy\r\ncragsman\r\ncraigie\r\ncrake\r\ncram\r\ncrambe\r\ncrammer\r\ncramp\r\ncrampbark\r\ncramped\r\ncrampfish\r\ncrampon\r\ncrampoon\r\ncran\r\ncranberry\r\ncranch\r\ncrane\r\ncrane-like\r\ncranelike\r\ncranesbill\r\ncrangon\r\ncrangonidae\r\ncranial\r\ncraniata\r\ncraniate\r\ncraniologist\r\ncraniology\r\ncraniometer\r\ncraniometric\r\ncraniometrical\r\ncraniometry\r\ncraniotomy\r\ncranium\r\ncrank\r\ncrankcase\r\ncrankiness\r\ncrankshaft\r\ncranky\r\ncrannied\r\ncranny\r\ncrap\r\ncrap-shooter\r\ncrapaud\r\ncrape\r\ncrapette\r\ncrapper\r\ncrappie\r\ncrappy\r\ncraps\r\ncrapshoot\r\ncrapshooter\r\ncrapulence\r\ncrapulent\r\ncrapulous\r\ncrash\r\ncrash-dive\r\ncrasher\r\ncrashing\r\ncraspedia\r\ncrass\r\ncrassitude\r\ncrassness\r\ncrassostrea\r\ncrassula\r\ncrassulaceae\r\ncrataegus\r\ncrate\r\ncrateful\r\ncrater\r\ncrateva\r\ncraton\r\ncraunch\r\ncravat\r\ncrave\r\ncraved\r\ncraven\r\ncravenness\r\ncraving\r\ncraw\r\ncrawdad\r\ncrawdaddy\r\ncrawfish\r\ncrawford\r\ncrawl\r\ncrawler\r\ncrawling\r\ncrawlspace\r\ncrax\r\ncrayfish\r\ncrayon\r\ncraze\r\ncrazed\r\ncrazily\r\ncraziness\r\ncrazy\r\ncrazyweed\r\ncreak\r\ncreakily\r\ncreaking\r\ncreakingly\r\ncreaky\r\ncream\r\ncream-colored\r\ncreamcups\r\ncreamer\r\ncreamery\r\ncreaminess\r\ncreamy\r\ncreamy-colored\r\ncreamy-white\r\ncreamy-yellow\r\ncrease\r\ncrease-resistant\r\ncreaseless\r\ncreaseproof\r\ncreashak\r\ncreate\r\ncreatin\r\ncreatine\r\ncreation\r\ncreationism\r\ncreative\r\ncreativeness\r\ncreativity\r\ncreator\r\ncreature\r\ncreche\r\ncrecy\r\ncred\r\ncredal\r\ncredence\r\ncredendum\r\ncredential\r\ncredentialed\r\ncredentials\r\ncredenza\r\ncredibility\r\ncredible\r\ncredibleness\r\ncredibly\r\ncredit\r\ncreditable\r\ncreditably\r\ncredited\r\ncreditor\r\ncredits\r\ncreditworthiness\r\ncreditworthy\r\ncredo\r\ncredulity\r\ncredulous\r\ncredulously\r\ncredulousness\r\ncree\r\ncreed\r\ncreedal\r\ncreek\r\ncreel\r\ncreep\r\ncreeper\r\ncreepiness\r\ncreeping\r\ncreeps\r\ncreepy\r\ncreepy-crawlies\r\ncreepy-crawly\r\ncreese\r\ncremains\r\ncremate\r\ncremation\r\ncrematorium\r\ncrematory\r\ncremona\r\ncrenate\r\ncrenated\r\ncrenation\r\ncrenature\r\ncrenel\r\ncrenelate\r\ncrenelated\r\ncrenelation\r\ncrenellate\r\ncrenellated\r\ncrenellation\r\ncrenelle\r\ncrenulate\r\ncrenulated\r\ncreole\r\ncreole-fish\r\ncreolize\r\ncreon\r\ncreosol\r\ncreosote\r\ncrepe\r\ncrepis\r\ncrepitate\r\ncrepitation\r\ncrepuscle\r\ncrepuscular\r\ncrepuscule\r\ncrescendo\r\ncrescent\r\ncrescent-shaped\r\ncrescentia\r\ncresol\r\ncress\r\ncresson\r\ncrest\r\ncrested\r\ncrestfallen\r\ncretaceous\r\ncretan\r\ncrete\r\ncretin\r\ncretinism\r\ncretinous\r\ncretonne\r\ncrevasse\r\ncrevice\r\ncrew\r\ncrewelwork\r\ncrewet\r\ncrewman\r\ncrex\r\ncrib\r\ncribbage\r\ncricetidae\r\ncricetus\r\ncrichton\r\ncricify\r\ncrick\r\ncricket\r\ncricket-like\r\ncricketer\r\ncrier\r\ncrime\r\ncrimea\r\ncriminal\r\ncriminalisation\r\ncriminalise\r\ncriminalism\r\ncriminality\r\ncriminalization\r\ncriminalize\r\ncriminally\r\ncriminalness\r\ncriminate\r\ncriminative\r\ncriminatory\r\ncriminological\r\ncriminologist\r\ncriminology\r\ncrimp\r\ncrimper\r\ncrimson\r\ncrimson-magenta\r\ncrimson-purple\r\ncrimson-yellow\r\ncringe\r\ncringing\r\ncringle\r\ncrinion\r\ncrinkle\r\ncrinkle-root\r\ncrinkled\r\ncrinkleroot\r\ncrinkly\r\ncrinoid\r\ncrinoidea\r\ncrinoline\r\ncriollo\r\ncripple\r\ncrippled\r\ncrippling\r\ncrisis\r\ncrisp\r\ncrispate\r\ncrispen\r\ncrispin\r\ncrispiness\r\ncrisply\r\ncrispness\r\ncrispy\r\ncrisscross\r\ncrisscrossed\r\ncristal\r\ncristobalite\r\ncriterial\r\ncriterion\r\ncriterional\r\ncrith\r\ncritic\r\ncritical\r\ncriticality\r\ncritically\r\ncriticalness\r\ncriticise\r\ncriticism\r\ncriticize\r\ncritique\r\ncritter\r\ncrius\r\ncrixivan\r\ncro\r\ncro-magnon\r\ncroak\r\ncroaker\r\ncroaking\r\ncroaky\r\ncroat\r\ncroatia\r\ncroatian\r\ncrocethia\r\ncrochet\r\ncrocheting\r\ncrock\r\ncrocked\r\ncrockery\r\ncrocket\r\ncrocketed\r\ncrockett\r\ncrocodile\r\ncrocodile-like\r\ncrocodilia\r\ncrocodilian\r\ncrocodilus\r\ncrocodylia\r\ncrocodylidae\r\ncrocodylus\r\ncrocolite\r\ncrocus\r\ncrocuta\r\ncroesus\r\ncroft\r\ncrofter\r\ncrohn\r\ncroissant\r\ncromlech\r\ncromorne\r\ncromwell\r\ncromwellian\r\ncronartium\r\ncrone\r\ncronk\r\ncronus\r\ncrony\r\ncronyism\r\ncronyn\r\ncrook\r\ncrookback\r\ncrookbacked\r\ncrooked\r\ncrookedly\r\ncrookedness\r\ncrookes\r\ncrookneck\r\ncroon\r\ncrooner\r\ncrooning\r\ncrop\r\ncrop-dusting\r\ncropped\r\ncropper\r\ncroquet\r\ncroquette\r\ncrore\r\ncrosby\r\ncrosier\r\ncross\r\ncross-banded\r\ncross-check\r\ncross-classification\r\ncross-country\r\ncross-cultural\r\ncross-division\r\ncross-dress\r\ncross-dresser\r\ncross-examination\r\ncross-examiner\r\ncross-eye\r\ncross-eyed\r\ncross-fertilisation\r\ncross-fertilise\r\ncross-fertilization\r\ncross-fertilize\r\ncross-file\r\ncross-grained\r\ncross-index\r\ncross-linguistic\r\ncross-link\r\ncross-linkage\r\ncross-modal\r\ncross-ply\r\ncross-pollinate\r\ncross-pollinating\r\ncross-pollination\r\ncross-purpose\r\ncross-question\r\ncross-questioner\r\ncross-refer\r\ncross-reference\r\ncross-section\r\ncross-sectional\r\ncross-shaped\r\ncross-stitch\r\ncross-town\r\ncrossbar\r\ncrossbeam\r\ncrossbench\r\ncrossbencher\r\ncrossbill\r\ncrossbones\r\ncrossbow\r\ncrossbred\r\ncrossbreed\r\ncrossbreeding\r\ncrosscheck\r\ncrosscurrent\r\ncrosscut\r\ncrosse\r\ncrossed\r\ncrossfire\r\ncrosshairs\r\ncrosshatch\r\ncrosshatched\r\ncrosshead\r\ncrossheading\r\ncrossing\r\ncrossjack\r\ncrossly\r\ncrossness\r\ncrossopterygian\r\ncrossopterygii\r\ncrossover\r\ncrosspatch\r\ncrosspiece\r\ncrossroad\r\ncrossroads\r\ncrossruff\r\ncrosstalk\r\ncrosstie\r\ncrosstown\r\ncrosswalk\r\ncrossway\r\ncrossways\r\ncrosswind\r\ncrosswise\r\ncrossword\r\ncrotal\r\ncrotalaria\r\ncrotalidae\r\ncrotalus\r\ncrotaphion\r\ncrotaphytus\r\ncrotch\r\ncrotchet\r\ncrotchetiness\r\ncrotchety\r\ncroton\r\ncrotonbug\r\ncrotophaga\r\ncrottal\r\ncrottle\r\ncrouch\r\ncrouched\r\ncrouching\r\ncroup\r\ncroupe\r\ncroupier\r\ncroupy\r\ncrouse\r\ncrouton\r\ncrow\r\ncrow-bait\r\ncrow-sized\r\ncrowbait\r\ncrowbar\r\ncrowberry\r\ncrowd\r\ncrowded\r\ncrowding\r\ncrowfoot\r\ncrowing\r\ncrown\r\ncrown-beard\r\ncrown-of-the-field\r\ncrownbeard\r\ncrowned\r\ncrowning\r\ncrownless\r\ncrownwork\r\ncrozier\r\ncrp\r\ncrt\r\ncrucial\r\ncruciality\r\ncruciate\r\ncrucible\r\ncrucifer\r\ncruciferae\r\ncruciferous\r\ncrucifix\r\ncrucifixion\r\ncruciform\r\ncrucify\r\ncrud\r\ncrude\r\ncrudely\r\ncrudeness\r\ncrudites\r\ncrudity\r\ncruel\r\ncruelness\r\ncruelty\r\ncruet\r\ncruet-stand\r\ncruise\r\ncruiser\r\ncruiserweight\r\ncruller\r\ncrumb\r\ncrumble\r\ncrumbliness\r\ncrumbly\r\ncrumhorn\r\ncrummy\r\ncrump\r\ncrumpet\r\ncrumple\r\ncrumpled\r\ncrunch\r\ncrunchy\r\ncrupper\r\ncrural\r\ncrus\r\ncrusade\r\ncrusader\r\ncruse\r\ncrush\r\ncrushed\r\ncrusher\r\ncrushing\r\ncrust\r\ncrustacea\r\ncrustacean\r\ncrustaceous\r\ncrustal\r\ncrusted\r\ncrustlike\r\ncrustose\r\ncrusty\r\ncrutch\r\ncrux\r\ncruzeiro\r\ncry\r\ncryaesthesia\r\ncrybaby\r\ncryesthesia\r\ncrying\r\ncryoanaesthesia\r\ncryoanesthesia\r\ncryobiology\r\ncryocautery\r\ncryogen\r\ncryogenic\r\ncryogenics\r\ncryogeny\r\ncryolite\r\ncryometer\r\ncryonic\r\ncryonics\r\ncryopathy\r\ncryophobia\r\ncryoscope\r\ncryostat\r\ncryosurgery\r\ncrypt\r\ncryptacanthodes\r\ncryptanalysis\r\ncryptanalyst\r\ncryptanalytic\r\ncryptanalytics\r\ncryptic\r\ncryptical\r\ncryptically\r\ncryptobiosis\r\ncryptobiotic\r\ncryptobranchidae\r\ncryptobranchus\r\ncryptocercidae\r\ncryptocercus\r\ncryptococcosis\r\ncryptocoryne\r\ncryptogam\r\ncryptogamia\r\ncryptogamic\r\ncryptogamous\r\ncryptogram\r\ncryptogramma\r\ncryptogrammataceae\r\ncryptograph\r\ncryptographer\r\ncryptographic\r\ncryptographical\r\ncryptography\r\ncryptologic\r\ncryptological\r\ncryptologist\r\ncryptology\r\ncryptomeria\r\ncryptomonad\r\ncryptophyceae\r\ncryptophyta\r\ncryptophyte\r\ncryptoprocta\r\ncryptorchidism\r\ncryptorchidy\r\ncryptorchism\r\ncryptotermes\r\ncryptotis\r\ncrystal\r\ncrystalise\r\ncrystalised\r\ncrystalize\r\ncrystalized\r\ncrystalline\r\ncrystallisation\r\ncrystallise\r\ncrystallised\r\ncrystallite\r\ncrystallization\r\ncrystallize\r\ncrystallized\r\ncrystallizing\r\ncrystallographer\r\ncrystallography\r\ncs\r\ncse\r\ncsis\r\ncst\r\nct\r\nctc\r\nctene\r\nctenidium\r\nctenizidae\r\nctenocephalides\r\nctenocephalus\r\nctenoid\r\nctenophora\r\nctenophore\r\ncu\r\ncub\r\ncuba\r\ncuban\r\ncubby\r\ncubbyhole\r\ncube\r\ncube-shaped\r\ncubeb\r\ncubelike\r\ncubic\r\ncubical\r\ncubicity\r\ncubicle\r\ncubiform\r\ncubism\r\ncubist\r\ncubistic\r\ncubit\r\ncubital\r\ncubitiere\r\ncubitus\r\ncuboid\r\ncuboidal\r\ncuckold\r\ncuckoldom\r\ncuckoldry\r\ncuckoo\r\ncuckoo-bumblebee\r\ncuckooflower\r\ncuckoopint\r\ncuculidae\r\ncuculiformes\r\ncuculus\r\ncucumber\r\ncucumber-shaped\r\ncucumis\r\ncucurbit\r\ncucurbita\r\ncucurbitaceae\r\ncucurbitaceous\r\ncud\r\ncudbear\r\ncuddle\r\ncuddlesome\r\ncuddling\r\ncuddly\r\ncuddy\r\ncudgel\r\ncudweed\r\ncue\r\ncuff\r\ncufflink\r\ncuirass\r\ncuirassier\r\ncuisine\r\ncuisse\r\ncuke\r\ncul\r\nculbertson\r\nculcita\r\nculdoscope\r\nculdoscopy\r\nculebra\r\nculex\r\nculiacan\r\nculicidae\r\nculinary\r\ncull\r\ncullender\r\ncullis\r\nculm\r\nculminate\r\nculmination\r\nculotte\r\nculpability\r\nculpable\r\nculpableness\r\nculpably\r\nculprit\r\ncult\r\ncultism\r\ncultist\r\ncultivable\r\ncultivar\r\ncultivatable\r\ncultivate\r\ncultivated\r\ncultivation\r\ncultivator\r\ncultural\r\nculturati\r\nculture\r\ncultured\r\ncultus\r\nculverin\r\nculvert\r\ncum\r\ncumana\r\ncumarone\r\ncumber\r\ncumberland\r\ncumbersome\r\ncumbersomeness\r\ncumbria\r\ncumbrous\r\ncumfrey\r\ncumin\r\ncuminum\r\ncummerbund\r\ncummings\r\ncumquat\r\ncumulate\r\ncumulation\r\ncumulative\r\ncumuliform\r\ncumulonimbus\r\ncumulous\r\ncumulus\r\ncunaxa\r\ncunctation\r\ncunctator\r\ncuneal\r\ncuneate\r\ncuneiform\r\ncuneus\r\ncuniculus\r\ncunner\r\ncunnilinctus\r\ncunnilingus\r\ncunning\r\ncunningham\r\ncunningly\r\ncunoniaceae\r\ncunt\r\ncuon\r\ncup\r\ncup-shaped\r\ncupbearer\r\ncupboard\r\ncupcake\r\ncupel\r\ncupflower\r\ncupful\r\ncupid\r\ncupidity\r\ncuplike\r\ncupola\r\ncuppa\r\ncupper\r\ncupping\r\ncupressaceae\r\ncupressus\r\ncupric\r\ncuprimine\r\ncuprite\r\ncupronickel\r\ncuprous\r\ncupular\r\ncupulate\r\ncupule\r\ncuquenan\r\ncur\r\ncurability\r\ncurable\r\ncurableness\r\ncuracao\r\ncuracoa\r\ncuracy\r\ncurandera\r\ncurandero\r\ncurare\r\ncurassow\r\ncurate\r\ncurative\r\ncurator\r\ncuratorial\r\ncuratorship\r\ncurb\r\ncurbed\r\ncurbing\r\ncurbside\r\ncurbstone\r\ncurculionidae\r\ncurcuma\r\ncurd\r\ncurdle\r\ncurdled\r\ncurdling\r\ncure\r\ncure-all\r\ncured\r\ncuret\r\ncurettage\r\ncurette\r\ncurettement\r\ncurfew\r\ncuria\r\ncurie\r\ncurietherapy\r\ncuring\r\ncurio\r\ncuriosa\r\ncuriosity\r\ncurious\r\ncuriously\r\ncuriousness\r\ncuritiba\r\ncurium\r\ncurl\r\ncurled\r\ncurler\r\ncurlew\r\ncurlicue\r\ncurliness\r\ncurling\r\ncurly\r\ncurly-coated\r\ncurly-grained\r\ncurly-haired\r\ncurly-heads\r\ncurly-leafed\r\ncurly-leaved\r\ncurmudgeon\r\ncurmudgeonly\r\ncurrajong\r\ncurrant\r\ncurrawong\r\ncurrency\r\ncurrent\r\ncurrently\r\ncurrentness\r\ncurricular\r\ncurriculum\r\ncurrier\r\ncurrish\r\ncurrishly\r\ncurry\r\ncurrycomb\r\ncurse\r\ncursed\r\ncursedly\r\ncursive\r\ncursor\r\ncursorial\r\ncursorily\r\ncursorius\r\ncursory\r\ncurst\r\ncurt\r\ncurtail\r\ncurtailment\r\ncurtain\r\ncurtained\r\ncurtainless\r\ncurtal\r\ncurtilage\r\ncurtis\r\ncurtisia\r\ncurtiss\r\ncurtly\r\ncurtness\r\ncurtsey\r\ncurtsy\r\ncurvaceous\r\ncurvaceously\r\ncurvaceousness\r\ncurvature\r\ncurve\r\ncurved\r\ncurvet\r\ncurvey\r\ncurvilineal\r\ncurvilinear\r\ncurving\r\ncurvy\r\ncusco\r\ncuscus\r\ncuscuta\r\ncush-cush\r\ncushat\r\ncushaw\r\ncushing\r\ncushion\r\ncushioned\r\ncushioning\r\ncushiony\r\ncushitic\r\ncushy\r\ncusk\r\ncusk-eel\r\ncusp\r\ncuspate\r\ncuspated\r\ncusped\r\ncuspid\r\ncuspidal\r\ncuspidate\r\ncuspidated\r\ncuspidation\r\ncuspidor\r\ncuss\r\ncussed\r\ncussedly\r\ncussedness\r\ncustard\r\ncustard-like\r\ncuster\r\ncustodial\r\ncustodian\r\ncustodianship\r\ncustody\r\ncustom\r\ncustom-built\r\ncustom-made\r\ncustom-make\r\ncustomary\r\ncustomer\r\ncustomhouse\r\ncustomise\r\ncustomised\r\ncustomize\r\ncustomized\r\ncustoms\r\ncustomshouse\r\ncut\r\ncut-and-dried\r\ncut-and-dry\r\ncut-and-thrust\r\ncut-in\r\ncut-price\r\ncut-rate\r\ncut-up\r\ncutaneal\r\ncutaneous\r\ncutaway\r\ncutback\r\ncutch\r\ncute\r\ncutely\r\ncuteness\r\ncuterebra\r\ncuterebridae\r\ncuticle\r\ncuticula\r\ncuticular\r\ncutin\r\ncutinize\r\ncutis\r\ncutlas\r\ncutlass\r\ncutlassfish\r\ncutler\r\ncutlery\r\ncutlet\r\ncutoff\r\ncutout\r\ncutpurse\r\ncuttable\r\ncutter\r\ncutthroat\r\ncutting\r\ncutting-edge\r\ncuttle\r\ncuttlefish\r\ncutwork\r\ncutworm\r\ncuvier\r\ncuzco\r\ncv\r\ncva\r\ncwm\r\ncwt\r\ncx\r\ncxl\r\ncxlv\r\ncxv\r\ncxx\r\ncxxv\r\ncxxx\r\ncxxxv\r\ncyamopsis\r\ncyamus\r\ncyan\r\ncyanamid\r\ncyanamide\r\ncyanide\r\ncyanite\r\ncyanobacteria\r\ncyanobacterial\r\ncyanocitta\r\ncyanocobalamin\r\ncyanogen\r\ncyanogenetic\r\ncyanogenic\r\ncyanohydrin\r\ncyanophyceae\r\ncyanophyta\r\ncyanophyte\r\ncyanosis\r\ncyanuramide\r\ncyathea\r\ncyatheaceae\r\ncybele\r\ncyber-terrorism\r\ncyber-terrorist\r\ncyberart\r\ncybercafe\r\ncybercrime\r\ncyberculture\r\ncybernate\r\ncybernation\r\ncybernaut\r\ncybernetic\r\ncybernetics\r\ncyberphobia\r\ncyberpunk\r\ncybersex\r\ncyberspace\r\ncyberwar\r\ncyborg\r\ncycad\r\ncycadaceae\r\ncycadales\r\ncycadofilicales\r\ncycadophyta\r\ncycadophytina\r\ncycadopsida\r\ncycas\r\ncyclades\r\ncyclamen\r\ncycle\r\ncycles/second\r\ncyclic\r\ncyclical\r\ncyclicity\r\ncycling\r\ncycliophora\r\ncyclist\r\ncyclobenzaprine\r\ncyclohexanol\r\ncycloid\r\ncycloidal\r\ncycloloma\r\ncyclonal\r\ncyclone\r\ncyclonic\r\ncyclonical\r\ncyclooxygenase\r\ncyclooxygenase-1\r\ncyclooxygenase-2\r\ncyclopaedia\r\ncyclopean\r\ncyclopedia\r\ncyclopes\r\ncyclophorus\r\ncyclopia\r\ncyclopropane\r\ncyclops\r\ncyclopteridae\r\ncyclopterus\r\ncyclorama\r\ncycloserine\r\ncyclosis\r\ncyclosorus\r\ncyclosporeae\r\ncyclostomata\r\ncyclostome\r\ncyclostyle\r\ncyclothymia\r\ncyclothymic\r\ncyclotron\r\ncycnoches\r\ncyder\r\ncydippea\r\ncydippida\r\ncydippidea\r\ncydonia\r\ncygnet\r\ncygnus\r\ncylinder\r\ncylindric\r\ncylindrical\r\ncylindrical-stemmed\r\ncylindricality\r\ncylindricalness\r\ncylix\r\ncyma\r\ncymatiidae\r\ncymatium\r\ncymbal\r\ncymbalist\r\ncymbid\r\ncymbidium\r\ncyme\r\ncymene\r\ncymling\r\ncymograph\r\ncymose\r\ncymric\r\ncymru\r\ncymry\r\ncymule\r\ncynancum\r\ncynara\r\ncynewulf\r\ncynic\r\ncynical\r\ncynically\r\ncynicism\r\ncynipidae\r\ncynips\r\ncynocephalidae\r\ncynocephalus\r\ncynodon\r\ncynodont\r\ncynodontia\r\ncynoglossidae\r\ncynoglossum\r\ncynomys\r\ncynophobia\r\ncynopterus\r\ncynoscephalae\r\ncynoscion\r\ncynosure\r\ncynthia\r\ncynwulf\r\ncyon\r\ncyperaceae\r\ncyperus\r\ncypher\r\ncyphomandra\r\ncypraea\r\ncypraeidae\r\ncypre\r\ncypress\r\ncyprian\r\ncyprinid\r\ncyprinidae\r\ncypriniformes\r\ncyprinodont\r\ncyprinodontidae\r\ncyprinoid\r\ncyprinus\r\ncypriot\r\ncypriote\r\ncypripedia\r\ncypripedium\r\ncyproheptadine\r\ncyprus\r\ncyrilla\r\ncyrilliaceae\r\ncyrillic\r\ncyrtomium\r\ncyrus\r\ncyst\r\ncysteine\r\ncystic\r\ncystine\r\ncystitis\r\ncystocele\r\ncystolith\r\ncystoparalysis\r\ncystophora\r\ncystoplegia\r\ncystopteris\r\ncytherea\r\ncytidine\r\ncytisus\r\ncytoarchitectonic\r\ncytoarchitectonics\r\ncytoarchitectural\r\ncytoarchitecture\r\ncytochrome\r\ncytogenesis\r\ncytogenetic\r\ncytogenetical\r\ncytogeneticist\r\ncytogenetics\r\ncytogeny\r\ncytokine\r\ncytokinesis\r\ncytokinetic\r\ncytokinin\r\ncytol\r\ncytologic\r\ncytological\r\ncytologist\r\ncytology\r\ncytolysin\r\ncytolysis\r\ncytolytic\r\ncytomegalic\r\ncytomegalovirus\r\ncytomembrane\r\ncytopathogenic\r\ncytopenia\r\ncytophotometer\r\ncytophotometric\r\ncytophotometry\r\ncytoplasm\r\ncytoplasmatic\r\ncytoplasmic\r\ncytoplast\r\ncytoplastic\r\ncytosine\r\ncytoskeleton\r\ncytosmear\r\ncytosol\r\ncytostome\r\ncytotoxic\r\ncytotoxicity\r\ncytotoxin\r\nczar\r\nczarina\r\nczarist\r\nczaristic\r\nczaritza\r\nczech\r\nczechoslovak\r\nczechoslovakia\r\nczechoslovakian\r\nczerny\r\nczestochowa\r\nd\r\nd-day\r\nd-layer\r\nd.a.\r\nd.c.\r\nd.o.a.\r\nd.p.r.k.\r\nda\r\nda'wah\r\ndab\r\ndaba\r\ndabble\r\ndabbled\r\ndabbler\r\ndabchick\r\ndaboecia\r\ndacca\r\ndace\r\ndace-like\r\ndacelo\r\ndacha\r\ndachau\r\ndachshund\r\ndachsie\r\ndacite\r\ndacitic\r\ndacninae\r\ndacoit\r\ndacoity\r\ndacron\r\ndacrycarpus\r\ndacrydium\r\ndacrymyces\r\ndacrymycetaceae\r\ndacryocyst\r\ndacryocystitis\r\ndacryon\r\ndactyl\r\ndactylic\r\ndactylis\r\ndactyloctenium\r\ndactylomegaly\r\ndactylopiidae\r\ndactylopius\r\ndactylopteridae\r\ndactylopterus\r\ndactylorhiza\r\ndactyloscopidae\r\ndad\r\ndada\r\ndadaism\r\ndaddy\r\ndado\r\ndae-han-min-gook\r\ndaedal\r\ndaedalus\r\ndaemon\r\ndaffo\r\ndaffodil\r\ndafla\r\ndaft\r\ndaftly\r\ndaftness\r\ndag\r\ndagame\r\ndagan\r\ndagda\r\ndagestani\r\ndagga\r\ndagger\r\ndagger-like\r\ndaggerboard\r\ndago\r\ndagon\r\ndaguerre\r\ndaguerreotype\r\ndah\r\ndahl\r\ndahlia\r\ndahna\r\ndahomey\r\ndaikon\r\ndail\r\ndaily\r\ndaimler\r\ndaimon\r\ndaintiness\r\ndainty\r\ndaiquiri\r\ndairy\r\ndairying\r\ndairymaid\r\ndairyman\r\ndais\r\ndaishiki\r\ndaisy\r\ndaisy-bush\r\ndaisy-chain\r\ndaisybush\r\ndaisylike\r\ndak\r\ndakar\r\ndakoit\r\ndakoity\r\ndakota\r\ndal\r\ndalasi\r\ndalbergia\r\ndale\r\ndalea\r\ndalesman\r\ndaleth\r\ndali\r\ndallas\r\ndalliance\r\ndallier\r\ndallisgrass\r\ndally\r\ndalmane\r\ndalmatia\r\ndalmatian\r\ndalo\r\ndalton\r\ndaltonism\r\ndam\r\ndama\r\ndamage\r\ndamaged\r\ndamages\r\ndamaging\r\ndamaliscus\r\ndamar\r\ndamascene\r\ndamascus\r\ndamask\r\ndame\r\ndamgalnunna\r\ndaminozide\r\ndamkina\r\ndammar\r\ndamn\r\ndamnable\r\ndamnably\r\ndamnation\r\ndamnatory\r\ndamned\r\ndamning\r\ndamocles\r\ndamoiselle\r\ndamon\r\ndamosel\r\ndamourite\r\ndamozel\r\ndamp\r\ndampen\r\ndampener\r\ndampening\r\ndamper\r\ndampish\r\ndamply\r\ndampness\r\ndamsel\r\ndamselfish\r\ndamselfly\r\ndamson\r\ndana\r\ndanaea\r\ndanaid\r\ndanaidae\r\ndanau\r\ndanaus\r\ndance\r\ndanceable\r\ndancer\r\ndancing\r\ndancing-master\r\ndandelion\r\ndander\r\ndandified\r\ndandify\r\ndandle\r\ndandruff\r\ndandy\r\ndandyish\r\ndandyism\r\ndane\r\ndanewort\r\ndangaleat\r\ndanger\r\ndangerous\r\ndangerously\r\ndangerousness\r\ndangla\r\ndangle\r\ndangle-berry\r\ndangleberry\r\ndangling\r\ndaniel\r\ndanish\r\ndank\r\ndankness\r\ndanmark\r\ndano-norwegian\r\ndanseur\r\ndanseuse\r\ndante\r\ndantean\r\ndantesque\r\ndanton\r\ndanu\r\ndanube\r\ndanzig\r\ndaoism\r\ndaphne\r\ndaphnia\r\ndapper\r\ndapperness\r\ndapple\r\ndapple-gray\r\ndapple-grey\r\ndappled\r\ndappled-gray\r\ndappled-grey\r\ndapsang\r\ndapsone\r\ndaraf\r\ndard\r\ndardan\r\ndardanelles\r\ndardanian\r\ndardanus\r\ndardic\r\ndare\r\ndaredevil\r\ndaredevilry\r\ndaredeviltry\r\ndarfur\r\ndari\r\ndaricon\r\ndaring\r\ndarjeeling\r\ndark\r\ndark-blue\r\ndark-brown\r\ndark-coated\r\ndark-colored\r\ndark-coloured\r\ndark-fruited\r\ndark-gray\r\ndark-green\r\ndark-grey\r\ndark-haired\r\ndark-skinned\r\ndark-spotted\r\ndarken\r\ndarkened\r\ndarkening\r\ndarkey\r\ndarkie\r\ndarkish\r\ndarkling\r\ndarkly\r\ndarkness\r\ndarkroom\r\ndarky\r\ndarling\r\ndarlingtonia\r\ndarmera\r\ndarmstadtium\r\ndarn\r\ndarned\r\ndarnel\r\ndarner\r\ndarning\r\ndarpa\r\ndarrow\r\ndarsana\r\ndart\r\ndartboard\r\ndarter\r\ndartmouth\r\ndarts\r\ndarvon\r\ndarwin\r\ndarwinian\r\ndarwinism\r\ndas\r\ndash\r\ndash-pot\r\ndashboard\r\ndashed\r\ndasheen\r\ndashiki\r\ndashing\r\ndasht-e-kavir\r\ndasht-e-lut\r\ndassie\r\ndastard\r\ndastardliness\r\ndastardly\r\ndasyatidae\r\ndasyatis\r\ndasymeter\r\ndasypodidae\r\ndasyprocta\r\ndasyproctidae\r\ndasypus\r\ndasyure\r\ndasyurid\r\ndasyuridae\r\ndasyurus\r\ndat\r\ndata\r\ndata-based\r\ndatabase\r\ndatable\r\ndate\r\ndate-mark\r\ndateable\r\ndated\r\ndateless\r\ndateline\r\ndatemark\r\ndating\r\ndative\r\ndatril\r\ndatum\r\ndatura\r\ndaub\r\ndaubentonia\r\ndaubentoniidae\r\ndauber\r\ndaubing\r\ndaucus\r\ndaugavpils\r\ndaughter\r\ndaughter-in-law\r\ndaughterly\r\ndaumier\r\ndaunt\r\ndaunted\r\ndaunting\r\ndauntless\r\ndauntlessly\r\ndauntlessness\r\ndauphin\r\ndavallia\r\ndavalliaceae\r\ndavenport\r\ndavid\r\ndaviesia\r\ndavis\r\ndavit\r\ndavy\r\ndavys\r\ndaw\r\ndawah\r\ndawdle\r\ndawdler\r\ndawdling\r\ndawes\r\ndawn\r\ndawning\r\ndawson\r\nday\r\nday-after-day\r\nday-and-night\r\nday-old\r\nday-to-day\r\ndayan\r\ndaybed\r\ndaybook\r\ndayboy\r\ndaybreak\r\ndaycare\r\ndaydream\r\ndaydreamer\r\ndaydreaming\r\ndayflower\r\ndayfly\r\ndaygirl\r\ndaylight\r\ndaylily\r\ndaylong\r\ndaypro\r\ndays\r\ndayspring\r\ndaystar\r\ndaytime\r\ndayton\r\ndaze\r\ndazed\r\ndazedly\r\ndazzle\r\ndazzled\r\ndazzling\r\ndb\r\ndbms\r\ndc\r\ndccp\r\ndci\r\ndd\r\ndds\r\nddt\r\nde\r\nde-access\r\nde-aerate\r\nde-emphasise\r\nde-emphasize\r\nde-energise\r\nde-energize\r\nde-escalate\r\nde-escalation\r\nde-ice\r\nde-iodinase\r\nde-iodinate\r\nde-iodinating\r\nde-iodination\r\nde-ionate\r\nde-nazification\r\nde-stalinisation\r\nde-stalinization\r\ndea\r\ndeaccession\r\ndeacon\r\ndeaconess\r\ndeactivate\r\ndeactivation\r\ndead\r\ndead-end\r\ndead-man's-fingers\r\ndead-men's-fingers\r\ndead-on\r\ndeadbeat\r\ndeadbolt\r\ndeaden\r\ndeadened\r\ndeadening\r\ndeadeye\r\ndeadhead\r\ndeadlight\r\ndeadline\r\ndeadliness\r\ndeadlock\r\ndeadlocked\r\ndeadly\r\ndeadness\r\ndeadpan\r\ndeadwood\r\ndeaerate\r\ndeaf\r\ndeaf-aid\r\ndeaf-and-dumb\r\ndeaf-mute\r\ndeaf-muteness\r\ndeaf-mutism\r\ndeafen\r\ndeafened\r\ndeafening\r\ndeafness\r\ndeal\r\ndealer\r\ndealership\r\ndealfish\r\ndealignment\r\ndealing\r\ndealings\r\ndeaminate\r\ndeamination\r\ndeaminization\r\ndeaminize\r\ndean\r\ndeanery\r\ndeanship\r\ndear\r\ndearest\r\ndearie\r\ndearly\r\ndearly-won\r\ndearness\r\ndearth\r\ndeary\r\ndeath\r\ndeath-roll\r\ndeathbed\r\ndeathblow\r\ndeathless\r\ndeathlike\r\ndeathly\r\ndeathrate\r\ndeathtrap\r\ndeathwatch\r\ndeb\r\ndebacle\r\ndebar\r\ndebark\r\ndebarkation\r\ndebarment\r\ndebase\r\ndebased\r\ndebasement\r\ndebaser\r\ndebasing\r\ndebatable\r\ndebate\r\ndebater\r\ndebauch\r\ndebauched\r\ndebauchee\r\ndebaucher\r\ndebauchery\r\ndebenture\r\ndebile\r\ndebilitate\r\ndebilitated\r\ndebilitating\r\ndebilitation\r\ndebilitative\r\ndebility\r\ndebit\r\ndebitor\r\ndebonair\r\ndebonaire\r\ndebone\r\ndeboned\r\ndebonnaire\r\ndebouch\r\ndebridement\r\ndebrief\r\ndebriefing\r\ndebris\r\ndebs\r\ndebt\r\ndebtor\r\ndebug\r\ndebugger\r\ndebunk\r\ndebunking\r\ndebussy\r\ndebut\r\ndebutante\r\ndec\r\ndecade\r\ndecadence\r\ndecadency\r\ndecadent\r\ndecadron\r\ndecaf\r\ndecaffeinate\r\ndecagon\r\ndecagram\r\ndecahedron\r\ndecal\r\ndecalcification\r\ndecalcify\r\ndecalcomania\r\ndecalescence\r\ndecalescent\r\ndecaliter\r\ndecalitre\r\ndecalogue\r\ndecameter\r\ndecametre\r\ndecamp\r\ndecampment\r\ndecant\r\ndecantation\r\ndecanter\r\ndecapitate\r\ndecapitated\r\ndecapitation\r\ndecapod\r\ndecapoda\r\ndecapterus\r\ndecarbonate\r\ndecarbonise\r\ndecarbonize\r\ndecarboxylase\r\ndecarboxylate\r\ndecarboxylation\r\ndecarburise\r\ndecarburize\r\ndecasyllabic\r\ndecasyllable\r\ndecathlon\r\ndecatur\r\ndecay\r\ndecayable\r\ndecayed\r\ndecease\r\ndeceased\r\ndecedent\r\ndeceit\r\ndeceitful\r\ndeceitfully\r\ndeceitfulness\r\ndeceive\r\ndeceiver\r\ndeceivingly\r\ndecelerate\r\ndeceleration\r\ndecember\r\ndecency\r\ndecennary\r\ndecennium\r\ndecent\r\ndecentalisation\r\ndecently\r\ndecentralisation\r\ndecentralise\r\ndecentralised\r\ndecentralising\r\ndecentralization\r\ndecentralize\r\ndecentralized\r\ndecentralizing\r\ndeception\r\ndeceptive\r\ndeceptively\r\ndeceptiveness\r\ndecerebrate\r\ndecertify\r\ndechlorinate\r\ndecibel\r\ndecide\r\ndecided\r\ndecidedly\r\ndeciding\r\ndecidua\r\ndeciduous\r\ndecigram\r\ndecile\r\ndeciliter\r\ndecilitre\r\ndecimal\r\ndecimalisation\r\ndecimalise\r\ndecimalization\r\ndecimalize\r\ndecimate\r\ndecimation\r\ndecimeter\r\ndecimetre\r\ndecipher\r\ndecipherable\r\ndecipherably\r\ndeciphered\r\ndecipherer\r\ndecipherment\r\ndecision\r\ndecisive\r\ndecisively\r\ndecisiveness\r\ndecius\r\ndeck\r\ndeck-house\r\ndecked\r\ndecker\r\ndeckhand\r\ndeckle\r\ndeckle-edged\r\ndeckled\r\ndeclaim\r\ndeclamation\r\ndeclamatory\r\ndeclarable\r\ndeclaration\r\ndeclarative\r\ndeclaratory\r\ndeclare\r\ndeclared\r\ndeclarer\r\ndeclassification\r\ndeclassified\r\ndeclassify\r\ndeclaw\r\ndeclension\r\ndeclination\r\ndecline\r\ndeclinometer\r\ndeclivitous\r\ndeclivity\r\ndeclomycin\r\ndeclutch\r\ndeco\r\ndecoagulant\r\ndecoct\r\ndecoction\r\ndecode\r\ndecoder\r\ndecoding\r\ndecoke\r\ndecollate\r\ndecolletage\r\ndecollete\r\ndecolonisation\r\ndecolonise\r\ndecolonization\r\ndecolonize\r\ndecolor\r\ndecolorise\r\ndecolorize\r\ndecolour\r\ndecolourise\r\ndecolourize\r\ndecommission\r\ndecomposable\r\ndecompose\r\ndecomposition\r\ndecompositional\r\ndecompound\r\ndecompress\r\ndecompressing\r\ndecompression\r\ndeconcentrate\r\ndecongestant\r\ndeconsecrate\r\ndeconsecrated\r\ndeconstruct\r\ndeconstruction\r\ndeconstructionism\r\ndeconstructionist\r\ndeconstructivism\r\ndecontaminate\r\ndecontamination\r\ndecontrol\r\ndecor\r\ndecorate\r\ndecorated\r\ndecoration\r\ndecorative\r\ndecorativeness\r\ndecorator\r\ndecorous\r\ndecorously\r\ndecorousness\r\ndecorticate\r\ndecortication\r\ndecorum\r\ndecoupage\r\ndecouple\r\ndecoy\r\ndecrease\r\ndecreased\r\ndecreasing\r\ndecree\r\ndecreed\r\ndecrement\r\ndecrepit\r\ndecrepitate\r\ndecrepitation\r\ndecrepitude\r\ndecrescendo\r\ndecriminalisation\r\ndecriminalise\r\ndecriminalization\r\ndecriminalize\r\ndecry\r\ndecrypt\r\ndecryption\r\ndecubitus\r\ndecuma\r\ndecumaria\r\ndecumary\r\ndecumbent\r\ndecurved\r\ndecussate\r\ndecussation\r\nded\r\ndedicate\r\ndedicated\r\ndedication\r\ndedifferentiate\r\ndedifferentiated\r\ndedifferentiation\r\ndeduce\r\ndeducible\r\ndeduct\r\ndeductible\r\ndeduction\r\ndeductive\r\ndeed\r\ndeedbox\r\ndeeds\r\ndeem\r\ndeep\r\ndeep-chested\r\ndeep-dye\r\ndeep-eyed\r\ndeep-fat-fry\r\ndeep-freeze\r\ndeep-fried\r\ndeep-fry\r\ndeep-laid\r\ndeep-lobed\r\ndeep-mined\r\ndeep-pink\r\ndeep-rooted\r\ndeep-sea\r\ndeep-seated\r\ndeep-set\r\ndeep-six\r\ndeep-water\r\ndeep-yellow\r\ndeepen\r\ndeepened\r\ndeepening\r\ndeepfreeze\r\ndeeply\r\ndeepness\r\ndeer\r\ndeer's-ear\r\ndeer's-ears\r\ndeer-like\r\ndeerberry\r\ndeere\r\ndeerhound\r\ndeerskin\r\ndeerstalker\r\ndeerstalking\r\ndeface\r\ndefaced\r\ndefacement\r\ndefalcate\r\ndefalcation\r\ndefalcator\r\ndefamation\r\ndefamatory\r\ndefame\r\ndefamer\r\ndefang\r\ndefat\r\ndefault\r\ndefaulter\r\ndefeasible\r\ndefeat\r\ndefeated\r\ndefeatism\r\ndefeatist\r\ndefecate\r\ndefecation\r\ndefecator\r\ndefect\r\ndefection\r\ndefective\r\ndefectiveness\r\ndefector\r\ndefeminise\r\ndefeminize\r\ndefence\r\ndefenceless\r\ndefencelessly\r\ndefencelessness\r\ndefend\r\ndefendable\r\ndefendant\r\ndefender\r\ndefending\r\ndefenestrate\r\ndefenestration\r\ndefense\r\ndefenseless\r\ndefenselessly\r\ndefenselessness\r\ndefensibility\r\ndefensible\r\ndefensive\r\ndefensively\r\ndefensiveness\r\ndefer\r\ndeference\r\ndeferent\r\ndeferential\r\ndeferentially\r\ndeferment\r\ndeferral\r\ndeferred\r\ndefervesce\r\ndefervescence\r\ndefervescent\r\ndefiance\r\ndefiant\r\ndefiantly\r\ndefibrillate\r\ndefibrillation\r\ndefibrillator\r\ndefibrinate\r\ndeficiency\r\ndeficient\r\ndeficit\r\ndefilade\r\ndefile\r\ndefiled\r\ndefilement\r\ndefiler\r\ndefinable\r\ndefine\r\ndefined\r\ndefining\r\ndefinite\r\ndefinitely\r\ndefiniteness\r\ndefinition\r\ndefinitive\r\ndeflagrate\r\ndeflagration\r\ndeflate\r\ndeflated\r\ndeflation\r\ndeflationary\r\ndeflator\r\ndeflect\r\ndeflection\r\ndeflective\r\ndeflector\r\ndeflexion\r\ndefloration\r\ndeflower\r\ndefoe\r\ndefog\r\ndefoliant\r\ndefoliate\r\ndefoliated\r\ndefoliation\r\ndefoliator\r\ndeforest\r\ndeforestation\r\ndeform\r\ndeformation\r\ndeformational\r\ndeformed\r\ndeformity\r\ndefraud\r\ndefrauder\r\ndefray\r\ndefrayal\r\ndefrayment\r\ndefrock\r\ndefrost\r\ndefroster\r\ndeft\r\ndeftly\r\ndeftness\r\ndefunct\r\ndefunctness\r\ndefuse\r\ndefusing\r\ndefy\r\ndegage\r\ndegas\r\ndegauss\r\ndegaussing\r\ndegeneracy\r\ndegenerate\r\ndegeneration\r\ndegenerative\r\ndeglaze\r\ndeglutition\r\ndeglycerolise\r\ndeglycerolize\r\ndegradation\r\ndegrade\r\ndegraded\r\ndegrader\r\ndegrading\r\ndegrease\r\ndegree\r\ndegressive\r\ndegust\r\ndegustation\r\ndehisce\r\ndehiscence\r\ndehiscent\r\ndehorn\r\ndehumanisation\r\ndehumanise\r\ndehumanised\r\ndehumanization\r\ndehumanize\r\ndehumanized\r\ndehumidify\r\ndehydrate\r\ndehydrated\r\ndehydration\r\ndehydrogenate\r\ndehydroretinol\r\ndeice\r\ndeicer\r\ndeictic\r\ndeific\r\ndeification\r\ndeify\r\ndeign\r\ndeimos\r\ndeinocheirus\r\ndeinonychus\r\ndeionize\r\ndeipnosophist\r\ndeism\r\ndeist\r\ndeistic\r\ndeity\r\ndeixis\r\ndeject\r\ndejected\r\ndejectedly\r\ndejectedness\r\ndejection\r\ndejeuner\r\ndekagram\r\ndekaliter\r\ndekalitre\r\ndekameter\r\ndekametre\r\ndekker\r\ndekko\r\ndelacroix\r\ndelairea\r\ndelapidate\r\ndelavirdine\r\ndelaware\r\ndelawarean\r\ndelawarian\r\ndelay\r\ndelayed\r\ndelayed-action\r\ndelayer\r\ndelbruck\r\ndelectability\r\ndelectable\r\ndelectation\r\ndelegacy\r\ndelegate\r\ndelegating\r\ndelegation\r\ndelete\r\ndeleterious\r\ndeletion\r\ndelf\r\ndelft\r\ndelhi\r\ndeli\r\ndeliberate\r\ndeliberately\r\ndeliberateness\r\ndeliberation\r\ndeliberative\r\ndelibes\r\ndelible\r\ndelicacy\r\ndelicate\r\ndelicately\r\ndelicatessen\r\ndelichon\r\ndelicious\r\ndeliciously\r\ndeliciousness\r\ndelight\r\ndelighted\r\ndelightful\r\ndelilah\r\ndelimit\r\ndelimitate\r\ndelimitation\r\ndelimited\r\ndelineate\r\ndelineated\r\ndelineation\r\ndelineative\r\ndelinquency\r\ndelinquent\r\ndeliquesce\r\ndeliquescent\r\ndeliquium\r\ndelirious\r\ndelirium\r\ndelist\r\ndelius\r\ndeliver\r\ndeliverable\r\ndeliverance\r\ndeliverer\r\ndelivery\r\ndeliveryman\r\ndell\r\ndelocalize\r\ndelonix\r\ndelorme\r\ndelouse\r\ndelphi\r\ndelphian\r\ndelphic\r\ndelphinapterus\r\ndelphinidae\r\ndelphinium\r\ndelphinus\r\ndelta\r\ndeltasone\r\ndeltoid\r\ndelude\r\ndeluge\r\ndelusion\r\ndelusional\r\ndelusive\r\ndelusory\r\ndeluxe\r\ndelve\r\ndemagnetisation\r\ndemagnetise\r\ndemagnetization\r\ndemagnetize\r\ndemagog\r\ndemagogic\r\ndemagogical\r\ndemagogue\r\ndemagoguery\r\ndemagogy\r\ndemand\r\ndemander\r\ndemanding\r\ndemantoid\r\ndemarcate\r\ndemarcation\r\ndemarche\r\ndemasculinise\r\ndemasculinize\r\ndematerialise\r\ndematerialize\r\ndematiaceae\r\ndemavend\r\ndemean\r\ndemeaning\r\ndemeaningly\r\ndemeanor\r\ndemeanour\r\ndemented\r\ndementedly\r\ndementedness\r\ndementia\r\ndemerara\r\ndemerit\r\ndemerol\r\ndemesne\r\ndemeter\r\ndemetrius\r\ndemi-glaze\r\ndemiglace\r\ndemigod\r\ndemijohn\r\ndemilitarise\r\ndemilitarize\r\ndemille\r\ndemimondaine\r\ndemimonde\r\ndemineralisation\r\ndemineralise\r\ndemineralization\r\ndemineralize\r\ndemise\r\ndemisemiquaver\r\ndemist\r\ndemister\r\ndemitasse\r\ndemiurge\r\ndemo\r\ndemob\r\ndemobilisation\r\ndemobilise\r\ndemobilization\r\ndemobilize\r\ndemocracy\r\ndemocrat\r\ndemocratic\r\ndemocratically\r\ndemocratisation\r\ndemocratise\r\ndemocratization\r\ndemocratize\r\ndemocritus\r\ndemode\r\ndemodulate\r\ndemodulation\r\ndemodulator\r\ndemogorgon\r\ndemographer\r\ndemographic\r\ndemographist\r\ndemography\r\ndemoiselle\r\ndemolish\r\ndemolished\r\ndemolishing\r\ndemolition\r\ndemon\r\ndemon-ridden\r\ndemonetisation\r\ndemonetise\r\ndemonetization\r\ndemonetize\r\ndemoniac\r\ndemoniacal\r\ndemoniacally\r\ndemonic\r\ndemonisation\r\ndemonise\r\ndemonism\r\ndemonization\r\ndemonize\r\ndemonolatry\r\ndemonstrability\r\ndemonstrable\r\ndemonstrably\r\ndemonstrate\r\ndemonstrated\r\ndemonstration\r\ndemonstrative\r\ndemonstrativeness\r\ndemonstrator\r\ndemoralisation\r\ndemoralise\r\ndemoralised\r\ndemoralising\r\ndemoralization\r\ndemoralize\r\ndemoralized\r\ndemoralizing\r\ndemosthenes\r\ndemosthenic\r\ndemote\r\ndemotic\r\ndemotion\r\ndempsey\r\ndemulcent\r\ndemulen\r\ndemulsify\r\ndemur\r\ndemure\r\ndemureness\r\ndemurrage\r\ndemurral\r\ndemurrer\r\ndemyelinate\r\ndemyelination\r\ndemystify\r\ndemythologisation\r\ndemythologise\r\ndemythologised\r\ndemythologization\r\ndemythologize\r\ndemythologized\r\nden\r\nden-mother\r\ndenali\r\ndenary\r\ndenationalisation\r\ndenationalise\r\ndenationalization\r\ndenationalize\r\ndenaturalise\r\ndenaturalize\r\ndenaturant\r\ndenature\r\ndenatured\r\ndenaturised\r\ndenaturized\r\ndenazification\r\ndenazify\r\ndendranthema\r\ndendraspis\r\ndendriform\r\ndendrite\r\ndendritic\r\ndendroaspis\r\ndendrobium\r\ndendrocalamus\r\ndendrocolaptes\r\ndendrocolaptidae\r\ndendroctonus\r\ndendroica\r\ndendroid\r\ndendroidal\r\ndendrolagus\r\ndendromecon\r\ndeneb\r\ndenebola\r\ndengue\r\ndeniable\r\ndenial\r\ndenier\r\ndenigrate\r\ndenigrating\r\ndenigration\r\ndenigrative\r\ndenigratory\r\ndenim\r\ndenisonia\r\ndenitrify\r\ndenizen\r\ndenmark\r\ndennstaedtia\r\ndennstaedtiaceae\r\ndenominate\r\ndenomination\r\ndenominational\r\ndenominationalism\r\ndenominator\r\ndenotation\r\ndenotative\r\ndenotatum\r\ndenote\r\ndenotive\r\ndenouement\r\ndenounce\r\ndenouncement\r\ndense\r\ndensely\r\ndenseness\r\ndensification\r\ndensimeter\r\ndensitometer\r\ndensitometry\r\ndensity\r\ndent\r\ndental\r\ndentaria\r\ndentate\r\ndented\r\ndenticle\r\ndenticulate\r\ndentifrice\r\ndentin\r\ndentine\r\ndentist\r\ndentistry\r\ndentition\r\ndenture\r\ndenturist\r\ndenudate\r\ndenudation\r\ndenude\r\ndenuded\r\ndenumerable\r\ndenunciation\r\ndenunciative\r\ndenunciatory\r\ndenver\r\ndeny\r\ndeodar\r\ndeodorant\r\ndeodorise\r\ndeodorize\r\ndeodourant\r\ndeodourise\r\ndeossification\r\ndeoxidise\r\ndeoxidize\r\ndeoxyadenosine\r\ndeoxycytidine\r\ndeoxyephedrine\r\ndeoxygenate\r\ndeoxyguanosine\r\ndeoxyribose\r\ndeoxythymidine\r\ndepardieu\r\ndeparia\r\ndepart\r\ndeparted\r\ndeparter\r\ndepartment\r\ndepartmental\r\ndeparture\r\ndepend\r\ndependability\r\ndependable\r\ndependableness\r\ndependably\r\ndependance\r\ndependant\r\ndependence\r\ndependency\r\ndependent\r\ndepersonalisation\r\ndepersonalise\r\ndepersonalization\r\ndepersonalize\r\ndepict\r\ndepicted\r\ndepicting\r\ndepiction\r\ndepictive\r\ndepigmentation\r\ndepilate\r\ndepilation\r\ndepilator\r\ndepilatory\r\ndepilous\r\ndeplane\r\ndepletable\r\ndeplete\r\ndepleted\r\ndepletion\r\ndeplorable\r\ndeplorably\r\ndeplore\r\ndeploy\r\ndeployment\r\ndeplumate\r\ndeplume\r\ndepokene\r\ndepolarisation\r\ndepolarise\r\ndepolarization\r\ndepolarize\r\ndepone\r\ndeponent\r\ndepopulate\r\ndepopulated\r\ndepopulation\r\ndeport\r\ndeportation\r\ndeportee\r\ndeportment\r\ndepose\r\ndeposer\r\ndeposit\r\ndepositary\r\ndeposition\r\ndepositor\r\ndepository\r\ndepot\r\ndepravation\r\ndeprave\r\ndepraved\r\ndepravity\r\ndeprecate\r\ndeprecating\r\ndeprecation\r\ndeprecative\r\ndeprecatory\r\ndepreciate\r\ndepreciating\r\ndepreciation\r\ndepreciative\r\ndepreciator\r\ndepreciatory\r\ndepredation\r\ndepress\r\ndepressant\r\ndepressed\r\ndepressing\r\ndepression\r\ndepressive\r\ndepressor\r\ndepressurise\r\ndepressurize\r\ndeprivation\r\ndeprive\r\ndeprived\r\ndepth\r\ndeputation\r\ndepute\r\ndeputise\r\ndeputize\r\ndeputy\r\nderacinate\r\nderacination\r\nderail\r\nderailment\r\nderain\r\nderange\r\nderanged\r\nderangement\r\nderate\r\nderby\r\nderecognise\r\nderecognize\r\nderegulate\r\nderegulating\r\nderegulation\r\nderelict\r\ndereliction\r\nderequisition\r\nderestrict\r\nderide\r\nderision\r\nderisive\r\nderisively\r\nderisorily\r\nderisory\r\nderivable\r\nderivation\r\nderivational\r\nderivative\r\nderive\r\nderived\r\nderiving\r\nderma\r\ndermabrasion\r\ndermacentor\r\ndermal\r\ndermaptera\r\ndermatitis\r\ndermatobia\r\ndermatoglyphic\r\ndermatoglyphics\r\ndermatologic\r\ndermatological\r\ndermatologist\r\ndermatology\r\ndermatome\r\ndermatomycosis\r\ndermatomyositis\r\ndermatophytosis\r\ndermatosclerosis\r\ndermatosis\r\ndermestidae\r\ndermic\r\ndermis\r\ndermochelyidae\r\ndermochelys\r\ndermoptera\r\nderogate\r\nderogation\r\nderogative\r\nderogatory\r\nderrick\r\nderrida\r\nderriere\r\nderring-do\r\nderringer\r\nderris\r\nderv\r\ndervish\r\ndes\r\ndesacralize\r\ndesalinate\r\ndesalination\r\ndesalinisation\r\ndesalinise\r\ndesalinization\r\ndesalinize\r\ndesalt\r\ndescale\r\ndescant\r\ndescartes\r\ndescend\r\ndescendant\r\ndescendants\r\ndescendent\r\ndescender\r\ndescending\r\ndescensus\r\ndescent\r\ndescribable\r\ndescribe\r\ndescribed\r\ndescription\r\ndescriptive\r\ndescriptivism\r\ndescriptor\r\ndescry\r\ndescurainia\r\ndesecrate\r\ndesecrated\r\ndesecration\r\ndesegrated\r\ndesegregate\r\ndesegregation\r\ndesensitisation\r\ndesensitise\r\ndesensitised\r\ndesensitising\r\ndesensitization\r\ndesensitize\r\ndesensitized\r\ndesensitizing\r\ndesert\r\ndeserted\r\ndeserter\r\ndesertification\r\ndesertion\r\ndeserts\r\ndeserve\r\ndeserved\r\ndeservedly\r\ndeserving\r\ndeservingness\r\ndesex\r\ndesexualise\r\ndesexualize\r\ndeshabille\r\ndesiccant\r\ndesiccate\r\ndesiccated\r\ndesiccation\r\ndesideratum\r\ndesign\r\ndesignate\r\ndesignated\r\ndesignation\r\ndesignative\r\ndesignatum\r\ndesigned\r\ndesignedly\r\ndesigner\r\ndesigning\r\ndesirability\r\ndesirable\r\ndesirableness\r\ndesire\r\ndesired\r\ndesirous\r\ndesist\r\ndesk\r\ndesk-bound\r\ndeskbound\r\ndeskman\r\ndesktop\r\ndesmanthus\r\ndesmid\r\ndesmidiaceae\r\ndesmidium\r\ndesmodium\r\ndesmodontidae\r\ndesmodus\r\ndesmograthus\r\ndesolate\r\ndesolately\r\ndesolation\r\ndesorb\r\ndesorption\r\ndespair\r\ndespairing\r\ndespairingly\r\ndespatch\r\ndesperado\r\ndesperate\r\ndesperately\r\ndesperation\r\ndespicability\r\ndespicable\r\ndespicableness\r\ndespiramine\r\ndespisal\r\ndespise\r\ndespised\r\ndespising\r\ndespite\r\ndespiteful\r\ndespitefully\r\ndespoil\r\ndespoilation\r\ndespoiled\r\ndespoiler\r\ndespoilment\r\ndespoina\r\ndespoliation\r\ndespond\r\ndespondence\r\ndespondency\r\ndespondent\r\ndespondently\r\ndespot\r\ndespotic\r\ndespotical\r\ndespotism\r\ndesquamate\r\ndesquamation\r\ndessert\r\ndessertspoon\r\ndessertspoonful\r\ndessiatine\r\ndestabilisation\r\ndestabilise\r\ndestabilization\r\ndestabilize\r\ndestain\r\ndestalinisation\r\ndestalinise\r\ndestalinization\r\ndestalinize\r\ndestination\r\ndestine\r\ndestined\r\ndestiny\r\ndestitute\r\ndestitution\r\ndestress\r\ndestroy\r\ndestroyable\r\ndestroyed\r\ndestroyer\r\ndestruct\r\ndestructibility\r\ndestructible\r\ndestruction\r\ndestructive\r\ndestructive-metabolic\r\ndestructiveness\r\ndesuetude\r\ndesulfurize\r\ndesulphurize\r\ndesultory\r\ndesynchronisation\r\ndesynchronise\r\ndesynchronization\r\ndesynchronize\r\ndesynchronizing\r\ndesyrel\r\ndetach\r\ndetachable\r\ndetached\r\ndetachment\r\ndetail\r\ndetailed\r\ndetailing\r\ndetails\r\ndetain\r\ndetainee\r\ndetainment\r\ndetect\r\ndetectable\r\ndetected\r\ndetecting\r\ndetection\r\ndetective\r\ndetector\r\ndetent\r\ndetente\r\ndetention\r\ndeter\r\ndeterge\r\ndetergence\r\ndetergency\r\ndetergent\r\ndeteriorate\r\ndeterioration\r\ndeterment\r\ndeterminable\r\ndeterminant\r\ndeterminate\r\ndeterminateness\r\ndetermination\r\ndeterminative\r\ndetermine\r\ndetermined\r\ndeterminedly\r\ndeterminer\r\ndetermining\r\ndeterminism\r\ndeterminist\r\ndeterministic\r\ndeterrence\r\ndeterrent\r\ndetersive\r\ndetest\r\ndetestable\r\ndetestably\r\ndetestation\r\ndetested\r\ndethaw\r\ndethrone\r\ndethronement\r\ndetick\r\ndetonate\r\ndetonation\r\ndetonative\r\ndetonator\r\ndetour\r\ndetox\r\ndetoxicate\r\ndetoxification\r\ndetoxify\r\ndetract\r\ndetraction\r\ndetractive\r\ndetractor\r\ndetrain\r\ndetransitivise\r\ndetransitivize\r\ndetribalisation\r\ndetribalise\r\ndetribalization\r\ndetribalize\r\ndetriment\r\ndetrimental\r\ndetrimentally\r\ndetrition\r\ndetritus\r\ndetroit\r\ndetumescence\r\ndetusk\r\ndeuce\r\ndeuce-ace\r\ndeuced\r\ndeucedly\r\ndeuteranopia\r\ndeuteranopic\r\ndeuterium\r\ndeuteromycetes\r\ndeuteromycota\r\ndeuteromycotina\r\ndeuteron\r\ndeuteronomy\r\ndeutschland\r\ndeutschmark\r\ndeutzia\r\ndevaluate\r\ndevaluation\r\ndevalue\r\ndevalued\r\ndevanagari\r\ndevastate\r\ndevastating\r\ndevastation\r\ndevein\r\ndevelop\r\ndeveloped\r\ndeveloper\r\ndeveloping\r\ndevelopment\r\ndevelopmental\r\ndevi\r\ndeviance\r\ndeviant\r\ndeviate\r\ndeviation\r\ndeviationism\r\ndeviationist\r\ndevice\r\ndevices\r\ndevil\r\ndevil-may-care\r\ndevil-worship\r\ndevilfish\r\ndevilise\r\ndevilish\r\ndevilishly\r\ndevilize\r\ndevilment\r\ndevilry\r\ndeviltry\r\ndevilwood\r\ndevious\r\ndeviousness\r\ndevisal\r\ndevise\r\ndevisee\r\ndeviser\r\ndevising\r\ndevisor\r\ndevitalisation\r\ndevitalise\r\ndevitalization\r\ndevitalize\r\ndevitrify\r\ndevoice\r\ndevoid\r\ndevoir\r\ndevolution\r\ndevolve\r\ndevolvement\r\ndevon\r\ndevonian\r\ndevonshire\r\ndevote\r\ndevoted\r\ndevotedness\r\ndevotee\r\ndevotion\r\ndevotional\r\ndevour\r\ndevourer\r\ndevouring\r\ndevout\r\ndevoutly\r\ndevoutness\r\ndevries\r\ndew\r\ndewar\r\ndewberry\r\ndewdrop\r\ndewey\r\ndeweyan\r\ndewlap\r\ndewy\r\ndewy-eyed\r\ndexamethasone\r\ndexedrine\r\ndexone\r\ndexter\r\ndexterity\r\ndexterous\r\ndexterously\r\ndextral\r\ndextrality\r\ndextrin\r\ndextrocardia\r\ndextroglucose\r\ndextrorotary\r\ndextrorotation\r\ndextrorotatory\r\ndextrorsal\r\ndextrorse\r\ndextrose\r\ndextrous\r\ndextrously\r\ndflp\r\ndg\r\ndhak\r\ndhaka\r\ndhal\r\ndharhan\r\ndharma\r\ndhaulagiri\r\ndhava\r\ndhawa\r\ndhegiha\r\ndhodhekanisos\r\ndhole\r\ndhoti\r\ndhow\r\ndhu'l-hijja\r\ndhu'l-hijjah\r\ndhu'l-qa'dah\r\ndi-iodotyrosine\r\ndia\r\ndiabatic\r\ndiabeta\r\ndiabetes\r\ndiabetic\r\ndiabolatry\r\ndiabolic\r\ndiabolical\r\ndiabolically\r\ndiabolise\r\ndiabolism\r\ndiabolist\r\ndiabolize\r\ndiacalpa\r\ndiacetylmorphine\r\ndiachronic\r\ndiachrony\r\ndiacritic\r\ndiacritical\r\ndiadem\r\ndiadophis\r\ndiadromous\r\ndiaeresis\r\ndiaghilev\r\ndiaglyph\r\ndiagnosable\r\ndiagnose\r\ndiagnosing\r\ndiagnosis\r\ndiagnostic\r\ndiagnostician\r\ndiagnostics\r\ndiagonal\r\ndiagonalisation\r\ndiagonalise\r\ndiagonalizable\r\ndiagonalization\r\ndiagonalize\r\ndiagram\r\ndiagrammatic\r\ndiagrammatical\r\ndiagrammatically\r\ndiagramming\r\ndiakinesis\r\ndial\r\ndialect\r\ndialectal\r\ndialectic\r\ndialectical\r\ndialectician\r\ndialectics\r\ndialectology\r\ndialeurodes\r\ndialog\r\ndialogue\r\ndialyse\r\ndialysis\r\ndialyze\r\ndialyzer\r\ndiam\r\ndiamagnet\r\ndiamagnetic\r\ndiamagnetism\r\ndiamante\r\ndiamantine\r\ndiameter\r\ndiametral\r\ndiametric\r\ndiametrical\r\ndiamine\r\ndiamond\r\ndiamondback\r\ndiamonte\r\ndiana\r\ndianoetic\r\ndianthus\r\ndiapason\r\ndiapedesis\r\ndiapensia\r\ndiapensiaceae\r\ndiapensiales\r\ndiaper\r\ndiaphanous\r\ndiapheromera\r\ndiaphone\r\ndiaphoresis\r\ndiaphoretic\r\ndiaphragm\r\ndiaphyseal\r\ndiaphysial\r\ndiaphysis\r\ndiapir\r\ndiapsid\r\ndiapsida\r\ndiarchy\r\ndiarist\r\ndiarrhea\r\ndiarrheal\r\ndiarrheic\r\ndiarrhetic\r\ndiarrhoea\r\ndiarrhoeal\r\ndiarrhoeic\r\ndiarrhoetic\r\ndiarthrosis\r\ndiary\r\ndias\r\ndiaspididae\r\ndiaspora\r\ndiastasis\r\ndiastema\r\ndiastole\r\ndiastolic\r\ndiastrophism\r\ndiathermy\r\ndiathesis\r\ndiatom\r\ndiatomic\r\ndiatomite\r\ndiatomophyceae\r\ndiatonic\r\ndiatribe\r\ndiaz\r\ndiazepam\r\ndiazo\r\ndiazonium\r\ndiazotize\r\ndiazoxide\r\ndibber\r\ndibble\r\ndibbuk\r\ndibrach\r\ndibranch\r\ndibranchia\r\ndibranchiata\r\ndibranchiate\r\ndibucaine\r\ndicamptodon\r\ndicamptodontid\r\ndicamptodontidae\r\ndicarboxylic\r\ndice\r\ndicentra\r\ndicer\r\ndiceros\r\ndicey\r\ndichloride\r\ndichlorodiphenyltrichloroethane\r\ndichloromethane\r\ndichondra\r\ndichotomisation\r\ndichotomise\r\ndichotomization\r\ndichotomize\r\ndichotomous\r\ndichotomy\r\ndichroism\r\ndichromacy\r\ndichromasy\r\ndichromat\r\ndichromate\r\ndichromatic\r\ndichromatism\r\ndichromatopsia\r\ndichromia\r\ndick\r\ndickens\r\ndickensian\r\ndicker\r\ndickey\r\ndickey-bird\r\ndickey-seat\r\ndickeybird\r\ndickhead\r\ndickie\r\ndickie-seat\r\ndickinson\r\ndicksonia\r\ndicksoniaceae\r\ndicky\r\ndicky-bird\r\ndicky-seat\r\ndickybird\r\ndiclinous\r\ndicloxacillin\r\ndicot\r\ndicotyledon\r\ndicotyledonae\r\ndicotyledones\r\ndicotyledonous\r\ndicoumarol\r\ndicranaceae\r\ndicranales\r\ndicranopteris\r\ndicranum\r\ndicrostonyx\r\ndictamnus\r\ndictaphone\r\ndictate\r\ndictated\r\ndictation\r\ndictator\r\ndictatorial\r\ndictatorially\r\ndictatorship\r\ndiction\r\ndictionary\r\ndictostylium\r\ndictum\r\ndictyophera\r\ndictyoptera\r\ndictyopteran\r\ndictyosome\r\ndicumarol\r\ndicynodont\r\ndicynodontia\r\ndidactic\r\ndidactical\r\ndidactically\r\ndidacticism\r\ndidactics\r\ndidder\r\ndiddle\r\ndiddley\r\ndiddly\r\ndiddly-shit\r\ndiddly-squat\r\ndiddlyshit\r\ndiddlysquat\r\ndidelphidae\r\ndidelphis\r\ndiderot\r\ndidion\r\ndido\r\ndidrikson\r\ndie\r\ndie-cast\r\ndie-hard\r\ndie-sinker\r\ndieback\r\ndieffenbachia\r\ndiegueno\r\ndiehard\r\ndielectric\r\ndielectrolysis\r\ndiemaker\r\ndiencephalon\r\ndieresis\r\ndiervilla\r\ndiesel\r\ndiesel-electric\r\ndiesel-hydraulic\r\ndiesinker\r\ndiesis\r\ndiestock\r\ndiestrous\r\ndiestrual\r\ndiestrum\r\ndiestrus\r\ndiet\r\ndietary\r\ndieter\r\ndietetic\r\ndietetical\r\ndietetics\r\ndiethylmalonylurea\r\ndiethylstilbesterol\r\ndiethylstilbestrol\r\ndiethylstilboestrol\r\ndietician\r\ndieting\r\ndietitian\r\ndietrich\r\ndiffer\r\ndifference\r\ndifferent\r\ndifferentia\r\ndifferentiable\r\ndifferential\r\ndifferentiate\r\ndifferentiated\r\ndifferentiation\r\ndifferentiator\r\ndifferently\r\ndifficult\r\ndifficultness\r\ndifficulty\r\ndiffidence\r\ndiffident\r\ndifflugia\r\ndiffract\r\ndiffraction\r\ndiffuse\r\ndiffused\r\ndiffuseness\r\ndiffuser\r\ndiffusing\r\ndiffusion\r\ndiffusive\r\ndiffusor\r\ndiflunisal\r\ndig\r\ndigenesis\r\ndigest\r\ndigested\r\ndigester\r\ndigestibility\r\ndigestible\r\ndigestibleness\r\ndigestion\r\ndigestive\r\ndigger\r\ndigging\r\ndiggings\r\ndighted\r\ndigit\r\ndigital\r\ndigitalin\r\ndigitalis\r\ndigitalisation\r\ndigitalise\r\ndigitalization\r\ndigitalize\r\ndigitaria\r\ndigitate\r\ndigitigrade\r\ndigitisation\r\ndigitise\r\ndigitiser\r\ndigitization\r\ndigitize\r\ndigitizer\r\ndigitoxin\r\ndignified\r\ndignify\r\ndignifying\r\ndignitary\r\ndignity\r\ndigoxin\r\ndigram\r\ndigraph\r\ndigress\r\ndigression\r\ndigressive\r\ndigs\r\ndihybrid\r\ndihydrostreptomycin\r\ndihydroxyphenylalanine\r\ndijon\r\ndik-dik\r\ndika\r\ndike\r\ndilantin\r\ndilapidate\r\ndilapidated\r\ndilapidation\r\ndilatation\r\ndilate\r\ndilated\r\ndilater\r\ndilation\r\ndilator\r\ndilatoriness\r\ndilatory\r\ndilaudid\r\ndildo\r\ndilemma\r\ndilettante\r\ndilettanteish\r\ndilettantish\r\ndiligence\r\ndiligent\r\ndill\r\ndillenia\r\ndilleniaceae\r\ndilleniidae\r\ndilly-dallier\r\ndilly-dally\r\ndillydallier\r\ndillydally\r\ndiltiazem\r\ndiluent\r\ndilutant\r\ndilute\r\ndiluted\r\ndilution\r\ndiluvial\r\ndiluvian\r\ndim\r\ndim-sighted\r\ndim-witted\r\ndimaggio\r\ndimash\r\ndime\r\ndimenhydrinate\r\ndimension\r\ndimensional\r\ndimensionality\r\ndimensioning\r\ndimer\r\ndimetane\r\ndimetapp\r\ndimethylglyoxime\r\ndimetrodon\r\ndiminish\r\ndiminished\r\ndiminishing\r\ndiminuendo\r\ndiminution\r\ndiminutive\r\ndiminutiveness\r\ndimity\r\ndimly\r\ndimmed\r\ndimmer\r\ndimness\r\ndimocarpus\r\ndimorphic\r\ndimorphism\r\ndimorphotheca\r\ndimorphous\r\ndimout\r\ndimple\r\ndimwit\r\ndin\r\ndinar\r\ndindymene\r\ndine\r\ndiner\r\ndinero\r\ndinesen\r\ndinette\r\nding\r\nding-dong\r\ndingbat\r\ndingdong\r\ndinge\r\ndinghy\r\ndingily\r\ndinginess\r\ndingle\r\ndingo\r\ndingy\r\ndining\r\ndining-hall\r\ndining-room\r\ndink\r\ndinka\r\ndinkey\r\ndinky\r\ndinner\r\ndinnertime\r\ndinnerware\r\ndinoceras\r\ndinocerata\r\ndinocerate\r\ndinoflagellata\r\ndinoflagellate\r\ndinornis\r\ndinornithidae\r\ndinornithiformes\r\ndinosaur\r\ndinosaur-like\r\ndint\r\ndiocesan\r\ndiocese\r\ndiocletian\r\ndiode\r\ndiodon\r\ndiodontidae\r\ndioecian\r\ndioecious\r\ndioestrous\r\ndioestrual\r\ndiogenes\r\ndiol\r\ndiomedeidae\r\ndionaea\r\ndionysia\r\ndionysian\r\ndionysius\r\ndionysus\r\ndioon\r\ndiophantus\r\ndiopter\r\ndioptre\r\ndior\r\ndiorama\r\ndiorite\r\ndioscorea\r\ndioscoreaceae\r\ndiospyros\r\ndioxide\r\ndioxin\r\ndip\r\ndiphenhydramine\r\ndiphenylhydantoin\r\ndiphtheria\r\ndiphthong\r\ndiphthongise\r\ndiphthongize\r\ndiphylla\r\ndipladenia\r\ndiplegia\r\ndiplococcus\r\ndiplodocus\r\ndiploid\r\ndiploidy\r\ndiploma\r\ndiplomacy\r\ndiplomat\r\ndiplomate\r\ndiplomatic\r\ndiplomatical\r\ndiplomatically\r\ndiplomatist\r\ndiplopia\r\ndiplopoda\r\ndiplopterygium\r\ndiplotaxis\r\ndiplotene\r\ndipnoi\r\ndipodidae\r\ndipodomys\r\ndipogon\r\ndipolar\r\ndipole\r\ndipped\r\ndipper\r\ndippers\r\ndipsacaceae\r\ndipsacus\r\ndipsomania\r\ndipsomaniac\r\ndipsosaurus\r\ndipstick\r\ndiptera\r\ndipteran\r\ndipterocarp\r\ndipterocarpaceae\r\ndipteron\r\ndipteronia\r\ndipterous\r\ndipteryx\r\ndiptych\r\ndipus\r\ndipylon\r\ndirac\r\ndirca\r\ndire\r\ndirect\r\ndirected\r\ndirecting\r\ndirection\r\ndirectional\r\ndirectionality\r\ndirectionless\r\ndirective\r\ndirectiveness\r\ndirectivity\r\ndirectly\r\ndirectness\r\ndirector\r\ndirectorate\r\ndirectorship\r\ndirectory\r\ndireful\r\ndirge\r\ndirham\r\ndirigible\r\ndirk\r\ndirndl\r\ndirt\r\ndirtily\r\ndirtiness\r\ndirty\r\ndirty-faced\r\ndirty-minded\r\ndirtying\r\ndis\r\ndisa\r\ndisability\r\ndisable\r\ndisabled\r\ndisablement\r\ndisabling\r\ndisabuse\r\ndisabused\r\ndisaccharidase\r\ndisaccharide\r\ndisaccord\r\ndisadvantage\r\ndisadvantaged\r\ndisadvantageous\r\ndisadvantageously\r\ndisaffect\r\ndisaffected\r\ndisaffection\r\ndisaffirmation\r\ndisafforest\r\ndisagree\r\ndisagreeable\r\ndisagreeableness\r\ndisagreeably\r\ndisagreement\r\ndisallow\r\ndisambiguate\r\ndisambiguation\r\ndisambiguator\r\ndisappear\r\ndisappearance\r\ndisappearing\r\ndisappoint\r\ndisappointed\r\ndisappointing\r\ndisappointment\r\ndisapprobation\r\ndisapproval\r\ndisapprove\r\ndisapproved\r\ndisapproving\r\ndisapprovingly\r\ndisarm\r\ndisarmament\r\ndisarmer\r\ndisarming\r\ndisarrange\r\ndisarranged\r\ndisarrangement\r\ndisarray\r\ndisarrayed\r\ndisarticulate\r\ndisassemble\r\ndisassembly\r\ndisassociate\r\ndisassociation\r\ndisaster\r\ndisastrous\r\ndisavow\r\ndisavowable\r\ndisavowal\r\ndisband\r\ndisbandment\r\ndisbar\r\ndisbarment\r\ndisbelief\r\ndisbelieve\r\ndisbeliever\r\ndisbelieving\r\ndisbelievingly\r\ndisbud\r\ndisburden\r\ndisbursal\r\ndisburse\r\ndisbursement\r\ndisburser\r\ndisc\r\ndisc-jockey\r\ndisc-shaped\r\ndiscalceate\r\ndiscalced\r\ndiscant\r\ndiscard\r\ndiscarded\r\ndiscase\r\ndisceptation\r\ndiscern\r\ndiscernability\r\ndiscernable\r\ndiscernible\r\ndiscerning\r\ndiscernment\r\ndiscerp\r\ndischarge\r\ndischarged\r\ndisciform\r\ndiscina\r\ndisciple\r\ndiscipleship\r\ndisciplinal\r\ndisciplinarian\r\ndisciplinary\r\ndiscipline\r\ndisciplined\r\ndisclaim\r\ndisclaimer\r\ndisclike\r\ndisclose\r\ndisclosed\r\ndisclosing\r\ndisclosure\r\ndisco\r\ndiscocephali\r\ndiscoglossidae\r\ndiscoid\r\ndiscoidal\r\ndiscolor\r\ndiscoloration\r\ndiscolored\r\ndiscolorise\r\ndiscolorize\r\ndiscolour\r\ndiscolouration\r\ndiscoloured\r\ndiscolourise\r\ndiscombobulate\r\ndiscombobulated\r\ndiscombobulation\r\ndiscomfit\r\ndiscomfited\r\ndiscomfiture\r\ndiscomfort\r\ndiscommode\r\ndiscompose\r\ndiscomposed\r\ndiscomposure\r\ndiscomycete\r\ndiscomycetes\r\ndiscomycetous\r\ndisconcert\r\ndisconcerted\r\ndisconcerting\r\ndisconcertion\r\ndisconcertment\r\ndisconfirming\r\ndisconnect\r\ndisconnected\r\ndisconnectedness\r\ndisconnection\r\ndisconsolate\r\ndisconsolately\r\ndisconsolateness\r\ndiscontent\r\ndiscontented\r\ndiscontentedness\r\ndiscontentment\r\ndiscontinuance\r\ndiscontinuation\r\ndiscontinue\r\ndiscontinued\r\ndiscontinuity\r\ndiscontinuous\r\ndiscord\r\ndiscordance\r\ndiscordant\r\ndiscordantly\r\ndiscorporate\r\ndiscotheque\r\ndiscount\r\ndiscountenance\r\ndiscounter\r\ndiscourage\r\ndiscouraged\r\ndiscouragement\r\ndiscouraging\r\ndiscouragingly\r\ndiscourse\r\ndiscourteous\r\ndiscourteously\r\ndiscourtesy\r\ndiscover\r\ndiscoverable\r\ndiscovered\r\ndiscoverer\r\ndiscovery\r\ndiscredit\r\ndiscreditable\r\ndiscreditably\r\ndiscredited\r\ndiscreet\r\ndiscreetly\r\ndiscreetness\r\ndiscrepancy\r\ndiscrepant\r\ndiscrete\r\ndiscreteness\r\ndiscretion\r\ndiscretional\r\ndiscretionary\r\ndiscriminable\r\ndiscriminate\r\ndiscriminating\r\ndiscrimination\r\ndiscriminative\r\ndiscriminator\r\ndiscriminatory\r\ndiscursive\r\ndiscursively\r\ndiscursiveness\r\ndiscus\r\ndiscuss\r\ndiscussant\r\ndiscussion\r\ndisdain\r\ndisdainful\r\ndisdainfully\r\ndisdainfulness\r\ndisease\r\ndiseased\r\ndisembark\r\ndisembarkation\r\ndisembarkment\r\ndisembarrass\r\ndisembarrassment\r\ndisembodied\r\ndisembody\r\ndisembowel\r\ndisembowelment\r\ndisembroil\r\ndisenable\r\ndisenchant\r\ndisenchanted\r\ndisenchanting\r\ndisenchantment\r\ndisencumber\r\ndisenfranchise\r\ndisenfranchised\r\ndisenfranchisement\r\ndisengage\r\ndisengagement\r\ndisentangle\r\ndisentangled\r\ndisentanglement\r\ndisentangler\r\ndisequilibrium\r\ndisestablish\r\ndisestablishment\r\ndisesteem\r\ndisfavor\r\ndisfavour\r\ndisfiguration\r\ndisfigure\r\ndisfigured\r\ndisfigurement\r\ndisforest\r\ndisforestation\r\ndisfranchise\r\ndisfranchised\r\ndisfranchisement\r\ndisfunction\r\ndisgorge\r\ndisgorgement\r\ndisgrace\r\ndisgraced\r\ndisgraceful\r\ndisgracefully\r\ndisgracefulness\r\ndisgruntle\r\ndisgruntled\r\ndisgruntlement\r\ndisguise\r\ndisguised\r\ndisgust\r\ndisgusted\r\ndisgustful\r\ndisgusting\r\ndisgustingly\r\ndisgustingness\r\ndish\r\ndish-shaped\r\ndishabille\r\ndisharmonious\r\ndisharmonize\r\ndisharmony\r\ndishcloth\r\ndishearten\r\ndisheartened\r\ndisheartening\r\ndisheartenment\r\ndished\r\ndishevel\r\ndisheveled\r\ndishevelled\r\ndishful\r\ndishonest\r\ndishonestly\r\ndishonesty\r\ndishonor\r\ndishonorable\r\ndishonorableness\r\ndishonorably\r\ndishonored\r\ndishonour\r\ndishonourable\r\ndishonourableness\r\ndishonourably\r\ndishpan\r\ndishrag\r\ndishtowel\r\ndishware\r\ndishwasher\r\ndishwashing\r\ndishwater\r\ndishy\r\ndisillusion\r\ndisillusioned\r\ndisillusioning\r\ndisillusionment\r\ndisincarnate\r\ndisincentive\r\ndisinclination\r\ndisincline\r\ndisinclined\r\ndisinfect\r\ndisinfectant\r\ndisinfection\r\ndisinfest\r\ndisinfestation\r\ndisinflation\r\ndisinformation\r\ndisingenuous\r\ndisingenuously\r\ndisingenuousness\r\ndisinherit\r\ndisinheritance\r\ndisinherited\r\ndisintegrable\r\ndisintegrate\r\ndisintegration\r\ndisintegrative\r\ndisinter\r\ndisinterest\r\ndisinterested\r\ndisinterestedly\r\ndisinterestedness\r\ndisinterment\r\ndisinvest\r\ndisinvestment\r\ndisinvolve\r\ndisjoin\r\ndisjoined\r\ndisjoint\r\ndisjointed\r\ndisjointedness\r\ndisjunct\r\ndisjunction\r\ndisjunctive\r\ndisjuncture\r\ndisk\r\ndisk-jockey\r\ndisk-shaped\r\ndiskette\r\ndisklike\r\ndislikable\r\ndislike\r\ndisliked\r\ndislocate\r\ndislocated\r\ndislocation\r\ndislodge\r\ndislodgement\r\ndislodgment\r\ndislogistic\r\ndisloyal\r\ndisloyally\r\ndisloyalty\r\ndismal\r\ndismally\r\ndismantle\r\ndismantled\r\ndismantlement\r\ndismantling\r\ndismay\r\ndismayed\r\ndismaying\r\ndismember\r\ndismemberment\r\ndismiss\r\ndismissal\r\ndismissed\r\ndismissible\r\ndismission\r\ndismissive\r\ndismount\r\ndisney\r\ndisneyland\r\ndisobedience\r\ndisobedient\r\ndisobediently\r\ndisobey\r\ndisoblige\r\ndisobliging\r\ndisorder\r\ndisordered\r\ndisorderliness\r\ndisorderly\r\ndisorganisation\r\ndisorganise\r\ndisorganised\r\ndisorganization\r\ndisorganize\r\ndisorganized\r\ndisorient\r\ndisorientate\r\ndisorientation\r\ndisoriented\r\ndisorienting\r\ndisown\r\ndisowned\r\ndisowning\r\ndisownment\r\ndisparage\r\ndisparagement\r\ndisparager\r\ndisparaging\r\ndisparagingly\r\ndisparate\r\ndisparateness\r\ndisparity\r\ndispassion\r\ndispassionate\r\ndispassionateness\r\ndispatch\r\ndispatched\r\ndispatcher\r\ndispel\r\ndispensability\r\ndispensable\r\ndispensableness\r\ndispensary\r\ndispensation\r\ndispense\r\ndispensed\r\ndispenser\r\ndispersal\r\ndisperse\r\ndispersed\r\ndispersion\r\ndispersive\r\ndispirit\r\ndispirited\r\ndispiritedly\r\ndispiritedness\r\ndispiriting\r\ndisplace\r\ndisplacement\r\ndisplay\r\ndisplease\r\ndispleased\r\ndispleasing\r\ndispleasure\r\ndisplume\r\ndisport\r\ndisposable\r\ndisposal\r\ndispose\r\ndisposed\r\ndisposition\r\ndispossess\r\ndispossessed\r\ndispossession\r\ndispraise\r\ndispread\r\ndisproof\r\ndisproportion\r\ndisproportional\r\ndisproportionate\r\ndisproportionately\r\ndisprove\r\ndisprover\r\ndisputable\r\ndisputant\r\ndisputation\r\ndisputatious\r\ndisputatiously\r\ndisputative\r\ndispute\r\ndisputed\r\ndisqualification\r\ndisqualified\r\ndisqualify\r\ndisqualifying\r\ndisquiet\r\ndisquieted\r\ndisquieting\r\ndisquietude\r\ndisquisition\r\ndisraeli\r\ndisregard\r\ndisregarded\r\ndisregarding\r\ndisregardless\r\ndisrepair\r\ndisreputability\r\ndisreputable\r\ndisreputableness\r\ndisreputably\r\ndisrepute\r\ndisrespect\r\ndisrespectful\r\ndisrespectfully\r\ndisrobe\r\ndisrupt\r\ndisrupted\r\ndisruption\r\ndisruptive\r\ndiss\r\ndissatisfaction\r\ndissatisfactory\r\ndissatisfied\r\ndissatisfy\r\ndissect\r\ndissected\r\ndissection\r\ndissemble\r\ndissembler\r\ndissembling\r\ndisseminate\r\ndisseminating\r\ndissemination\r\ndisseminative\r\ndisseminator\r\ndissension\r\ndissent\r\ndissenter\r\ndissentient\r\ndissenting\r\ndissentious\r\ndissertate\r\ndissertation\r\ndisservice\r\ndissever\r\ndissidence\r\ndissident\r\ndissilience\r\ndissilient\r\ndissimilar\r\ndissimilarity\r\ndissimilate\r\ndissimilation\r\ndissimilitude\r\ndissimulate\r\ndissimulating\r\ndissimulation\r\ndissimulative\r\ndissimulator\r\ndissipate\r\ndissipated\r\ndissipation\r\ndissociable\r\ndissociate\r\ndissociation\r\ndissociative\r\ndissolubility\r\ndissoluble\r\ndissolute\r\ndissolutely\r\ndissoluteness\r\ndissolution\r\ndissolvable\r\ndissolve\r\ndissolved\r\ndissolvent\r\ndissolver\r\ndissolving\r\ndissonance\r\ndissonant\r\ndissonate\r\ndissuade\r\ndissuasion\r\ndissuasive\r\ndissyllable\r\ndissymmetry\r\ndistaff\r\ndistal\r\ndistance\r\ndistant\r\ndistaste\r\ndistasteful\r\ndistastefully\r\ndistastefulness\r\ndistemper\r\ndistend\r\ndistended\r\ndistensible\r\ndistension\r\ndistention\r\ndistich\r\ndistil\r\ndistill\r\ndistillate\r\ndistillation\r\ndistiller\r\ndistillery\r\ndistillment\r\ndistinct\r\ndistinction\r\ndistinctive\r\ndistinctiveness\r\ndistinctly\r\ndistinctness\r\ndistinguish\r\ndistinguishable\r\ndistinguished\r\ndistinguishing\r\ndistomatosis\r\ndistort\r\ndistortable\r\ndistorted\r\ndistortion\r\ndistortionist\r\ndistract\r\ndistracted\r\ndistraction\r\ndistrain\r\ndistraint\r\ndistrait\r\ndistraught\r\ndistress\r\ndistressed\r\ndistressful\r\ndistressfulness\r\ndistressing\r\ndistressingly\r\ndistressingness\r\ndistributary\r\ndistribute\r\ndistributed\r\ndistributer\r\ndistribution\r\ndistributional\r\ndistributive\r\ndistributor\r\ndistrict\r\ndistrust\r\ndistrustful\r\ndistrustfully\r\ndistrustfulness\r\ndisturb\r\ndisturbance\r\ndisturbed\r\ndisturber\r\ndisturbing\r\ndisulfiram\r\ndisunify\r\ndisunion\r\ndisunite\r\ndisunited\r\ndisunity\r\ndisuse\r\ndisused\r\ndisyllabic\r\ndisyllable\r\ndit\r\ndita\r\nditch\r\nditchmoss\r\ndither\r\ndithering\r\ndithyramb\r\ndithyrambic\r\ndittany\r\nditto\r\nditty\r\ndiuresis\r\ndiuretic\r\ndiuril\r\ndiurnal\r\ndiva\r\ndivagate\r\ndivagation\r\ndivalent\r\ndivan\r\ndivaricate\r\ndivarication\r\ndive\r\ndive-bomb\r\ndive-bombing\r\ndiver\r\ndiverge\r\ndivergence\r\ndivergency\r\ndivergent\r\ndiverging\r\ndivers\r\ndiverse\r\ndiversely\r\ndiverseness\r\ndiversification\r\ndiversified\r\ndiversify\r\ndiversion\r\ndiversionary\r\ndiversionist\r\ndiversity\r\ndivert\r\ndiverted\r\ndiverticulitis\r\ndiverticulosis\r\ndiverticulum\r\ndivertimento\r\ndiverting\r\ndivertingly\r\ndivest\r\ndivestiture\r\ndivi-divi\r\ndividable\r\ndivide\r\ndivided\r\ndividend\r\ndivider\r\ndividing\r\ndivination\r\ndivinatory\r\ndivine\r\ndiviner\r\ndiving\r\ndivinity\r\ndivisibility\r\ndivisible\r\ndivision\r\ndivisional\r\ndivisive\r\ndivisor\r\ndivorce\r\ndivorced\r\ndivorcee\r\ndivorcement\r\ndivot\r\ndivulge\r\ndivulgement\r\ndivulgence\r\ndivvy\r\ndiwan\r\ndix\r\ndixie\r\ndixiecrats\r\ndixieland\r\ndizen\r\ndizygotic\r\ndizygous\r\ndizzily\r\ndizziness\r\ndizzy\r\ndj\r\ndjakarta\r\ndjanet\r\ndjibouti\r\ndjiboutian\r\ndjinni\r\ndjinny\r\ndkg\r\ndkl\r\ndkm\r\ndl\r\ndle\r\ndm\r\ndmd\r\ndmus\r\ndmz\r\ndna\r\ndneprodzerzhinsk\r\ndnieper\r\ndnipropetrovsk\r\ndo\r\ndo-gooder\r\ndo-it-yourself\r\ndo-nothing\r\ndo-or-die\r\ndo-si-do\r\ndoable\r\ndobbin\r\ndoberman\r\ndobra\r\ndobrich\r\ndobson\r\ndobsonfly\r\ndoc\r\ndocent\r\ndocetism\r\ndocile\r\ndocility\r\ndock\r\ndock-walloper\r\ndockage\r\ndocker\r\ndocket\r\ndockhand\r\ndocking\r\ndockside\r\ndockworker\r\ndockyard\r\ndoctor\r\ndoctor-fish\r\ndoctoral\r\ndoctorate\r\ndoctorfish\r\ndoctorial\r\ndoctorow\r\ndoctorspeak\r\ndoctrinaire\r\ndoctrinal\r\ndoctrine\r\ndocudrama\r\ndocument\r\ndocumental\r\ndocumentary\r\ndocumentation\r\ndocumented\r\ndod\r\ndodder\r\ndodderer\r\ndoddering\r\ndoddery\r\ndoddle\r\ndodecagon\r\ndodecahedron\r\ndodecanese\r\ndodge\r\ndodgem\r\ndodger\r\ndodging\r\ndodgson\r\ndodgy\r\ndodo\r\ndodoma\r\ndodonaea\r\ndoe\r\ndoei\r\ndoer\r\ndoeskin\r\ndoff\r\ndog\r\ndog-ear\r\ndog-eared\r\ndog-iron\r\ndog-sized\r\ndog-tired\r\ndogbane\r\ndogcart\r\ndoge\r\ndogfight\r\ndogfighter\r\ndogfish\r\ndogged\r\ndoggedly\r\ndoggedness\r\ndoggerel\r\ndoggie\r\ndogging\r\ndoggo\r\ndoggy\r\ndoghouse\r\ndogie\r\ndogleg\r\ndoglike\r\ndogma\r\ndogmatic\r\ndogmatical\r\ndogmatise\r\ndogmatism\r\ndogmatist\r\ndogmatize\r\ndogsbody\r\ndogshit\r\ndogsled\r\ndogtooth\r\ndogtrot\r\ndogwatch\r\ndogwood\r\ndogy\r\ndoh\r\ndoha\r\ndoi\r\ndoily\r\ndoings\r\ndoj\r\ndojc\r\ndol\r\ndolabrate\r\ndolabriform\r\ndolby\r\ndoldrums\r\ndole\r\ndoleful\r\ndolefully\r\ndolefulness\r\ndolichocephalic\r\ndolichocephalism\r\ndolichocephaly\r\ndolichocranial\r\ndolichocranic\r\ndolichonyx\r\ndolichos\r\ndolichotis\r\ndoliolidae\r\ndoliolum\r\ndoll\r\ndollar\r\ndollarfish\r\ndollhouse\r\ndollop\r\ndolly\r\ndolman\r\ndolmas\r\ndolmen\r\ndolobid\r\ndolomite\r\ndolomitic\r\ndolor\r\ndolorous\r\ndolour\r\ndolourous\r\ndolphin\r\ndolphinfish\r\ndolt\r\ndoltish\r\ndoltishly\r\ndomain\r\ndomatium\r\ndombeya\r\ndome\r\ndome-shaped\r\ndomed\r\ndomestic\r\ndomesticate\r\ndomesticated\r\ndomestication\r\ndomesticise\r\ndomesticity\r\ndomesticize\r\ndomicile\r\ndomiciliary\r\ndomiciliate\r\ndomiciliation\r\ndominance\r\ndominant\r\ndominate\r\ndominated\r\ndominating\r\ndomination\r\ndominatrix\r\ndomine\r\ndominee\r\ndomineer\r\ndomineering\r\ndomineeringness\r\ndomingo\r\ndominic\r\ndominica\r\ndominical\r\ndominican\r\ndominick\r\ndominicus\r\ndominie\r\ndominion\r\ndominique\r\ndomino\r\ndominoes\r\ndominos\r\ndominus\r\ndomitian\r\ndon\r\ndon't-know\r\ndona\r\ndonar\r\ndonate\r\ndonated\r\ndonatello\r\ndonation\r\ndonatism\r\ndonatist\r\ndonatus\r\ndonbas\r\ndonbass\r\ndone\r\ndonee\r\ndonetsk\r\ndonetske\r\ndong\r\ndongle\r\ndonizetti\r\ndonjon\r\ndonkey\r\ndonkeywork\r\ndonkin\r\ndonna\r\ndonne\r\ndonnean\r\ndonnian\r\ndonnish\r\ndonor\r\ndonut\r\ndoo-wop\r\ndoob\r\ndoodad\r\ndoodia\r\ndoodle\r\ndoodlebug\r\ndoodly-squat\r\ndoofus\r\ndoohickey\r\ndoojigger\r\ndoolittle\r\ndoom\r\ndoomed\r\ndoomsday\r\ndoor\r\ndoor-to-door\r\ndoorbell\r\ndoorcase\r\ndoorframe\r\ndoorhandle\r\ndoorjamb\r\ndoorkeeper\r\ndoorknob\r\ndoorknocker\r\ndoorlock\r\ndoorman\r\ndoormat\r\ndoornail\r\ndoorplate\r\ndoorpost\r\ndoorsill\r\ndoorstep\r\ndoorstop\r\ndoorstopper\r\ndoorway\r\ndooryard\r\ndopa\r\ndopamine\r\ndopastat\r\ndope\r\ndoped\r\ndopey\r\ndoppelganger\r\ndoppelzentner\r\ndoppler\r\ndopy\r\ndorado\r\ndorbeetle\r\ndorian\r\ndoric\r\ndoriden\r\ndoris\r\ndork\r\ndorking\r\ndorm\r\ndormancy\r\ndormant\r\ndormer\r\ndormie\r\ndormition\r\ndormitory\r\ndormouse\r\ndormy\r\ndoronicum\r\ndorotheanthus\r\ndorsal\r\ndorsiflexion\r\ndorsoventral\r\ndorsum\r\ndortmund\r\ndory\r\ndorylinae\r\ndoryopteris\r\ndos\r\ndosage\r\ndose\r\ndosed\r\ndosemeter\r\ndosimeter\r\ndosimetry\r\ndoss\r\ndossal\r\ndossel\r\ndosser\r\ndosshouse\r\ndossier\r\ndostoevski\r\ndostoevskian\r\ndostoevsky\r\ndostoyevskian\r\ndostoyevsky\r\ndot\r\ndot-com\r\ndotage\r\ndotard\r\ndote\r\ndoting\r\ndotrel\r\ndotted\r\ndotterel\r\ndottily\r\ndottle\r\ndotty\r\ndouala\r\ndouble\r\ndouble-barreled\r\ndouble-barrelled\r\ndouble-bass\r\ndouble-bedded\r\ndouble-bogey\r\ndouble-breasted\r\ndouble-check\r\ndouble-chinned\r\ndouble-crosser\r\ndouble-crossing\r\ndouble-date\r\ndouble-dealer\r\ndouble-dealing\r\ndouble-decker\r\ndouble-dyed\r\ndouble-edged\r\ndouble-faced\r\ndouble-geared\r\ndouble-glaze\r\ndouble-humped\r\ndouble-jointed\r\ndouble-magnum\r\ndouble-park\r\ndouble-prop\r\ndouble-quick\r\ndouble-space\r\ndouble-spaced\r\ndouble-spacing\r\ndouble-team\r\ndouble-tongued\r\ndouble-u\r\ndoubled\r\ndoubleheader\r\ndoubler\r\ndoubles\r\ndoublespeak\r\ndoublet\r\ndoublethink\r\ndoubleton\r\ndoubletree\r\ndoubling\r\ndoubloon\r\ndoubly\r\ndoubt\r\ndoubter\r\ndoubtful\r\ndoubtfully\r\ndoubtfulness\r\ndoubting\r\ndoubtless\r\ndouche\r\ndough\r\ndough-like\r\ndoughboy\r\ndoughnut\r\ndoughnut-shaped\r\ndoughty\r\ndoughy\r\ndouglas\r\ndouglass\r\ndour\r\ndoura\r\ndourah\r\ndourly\r\ndouroucouli\r\ndouse\r\ndousing\r\ndove\r\ndovecote\r\ndovekie\r\ndover\r\ndovetail\r\ndovish\r\ndovishness\r\ndovyalis\r\ndowager\r\ndowdily\r\ndowdiness\r\ndowding\r\ndowdy\r\ndowel\r\ndoweling\r\ndower\r\ndowered\r\ndowerless\r\ndowery\r\ndowitcher\r\ndowland\r\ndown\r\ndown-and-out\r\ndown-bow\r\ndown-to-earth\r\ndownbeat\r\ndownbound\r\ndowncast\r\ndowndraft\r\ndowner\r\ndownfall\r\ndownfield\r\ndowngrade\r\ndownhearted\r\ndownheartedness\r\ndownhill\r\ndowniness\r\ndowning\r\ndownlike\r\ndownload\r\ndownmarket\r\ndownplay\r\ndownpour\r\ndownright\r\ndownrightness\r\ndownriver\r\ndownscale\r\ndownside\r\ndownsizing\r\ndownslope\r\ndownspin\r\ndownstage\r\ndownstair\r\ndownstairs\r\ndownstream\r\ndownstroke\r\ndownswing\r\ndowntick\r\ndowntime\r\ndowntown\r\ndowntrodden\r\ndownturn\r\ndownward\r\ndownward-arching\r\ndownward-sloping\r\ndownwardly\r\ndownwards\r\ndownwind\r\ndowny\r\ndowry\r\ndowse\r\ndowser\r\ndowsing\r\ndoxepin\r\ndoxology\r\ndoxorubicin\r\ndoxy\r\ndoxycycline\r\ndoyen\r\ndoyenne\r\ndoyley\r\ndoyly\r\ndoze\r\ndozen\r\ndozens\r\ndozer\r\ndozy\r\ndp\r\ndph\r\ndphil\r\ndprk\r\ndr.\r\ndrab\r\ndraba\r\ndrabness\r\ndracaena\r\ndracaenaceae\r\ndracenaceae\r\ndrachm\r\ndrachma\r\ndraco\r\ndracocephalum\r\ndraconian\r\ndracontium\r\ndracula\r\ndracunculiasis\r\ndracunculidae\r\ndracunculus\r\ndraft\r\ndraftee\r\ndrafter\r\ndrafting\r\ndraftsman\r\ndraftsmanship\r\ndraftsperson\r\ndrafty\r\ndrag\r\ndragee\r\ndragger\r\ndragging\r\ndraggle\r\ndraggled\r\ndragnet\r\ndragoman\r\ndragon\r\ndragonet\r\ndragonfly\r\ndragonhead\r\ndragoon\r\ndragunov\r\ndrain\r\ndrainage\r\ndrainboard\r\ndrained\r\ndraining\r\ndrainpipe\r\ndrainplug\r\ndrake\r\ndram\r\ndrama\r\ndramamine\r\ndramatic\r\ndramatically\r\ndramatics\r\ndramatisation\r\ndramatise\r\ndramatist\r\ndramatization\r\ndramatize\r\ndramaturgic\r\ndramaturgical\r\ndramaturgy\r\ndrambuie\r\ndrape\r\ndraped\r\ndraper\r\ndrapery\r\ndrastic\r\ndraught\r\ndraughts\r\ndraughtsman\r\ndraughty\r\ndravidian\r\ndravidic\r\ndraw\r\ndrawback\r\ndrawbar\r\ndrawbridge\r\ndrawee\r\ndrawer\r\ndrawers\r\ndrawing\r\ndrawknife\r\ndrawl\r\ndrawler\r\ndrawn\r\ndrawn-out\r\ndrawnwork\r\ndrawshave\r\ndrawstring\r\ndray\r\ndrayhorse\r\ndread\r\ndreaded\r\ndreadful\r\ndreadfully\r\ndreadfulness\r\ndreadlock\r\ndreadnaught\r\ndreadnought\r\ndream\r\ndreamed\r\ndreamer\r\ndreamfully\r\ndreamily\r\ndreaminess\r\ndreaming\r\ndreamland\r\ndreamless\r\ndreamlike\r\ndreamworld\r\ndreamy\r\ndrear\r\ndrearily\r\ndreariness\r\ndreary\r\ndreck\r\ndredge\r\ndredger\r\ndreg\r\ndregs\r\ndreiser\r\ndreissena\r\ndrench\r\ndrenched\r\ndrenching\r\ndrepanididae\r\ndrepanis\r\ndresden\r\ndress\r\ndressage\r\ndressed\r\ndressed-up\r\ndresser\r\ndressing\r\ndressmaker\r\ndressmaking\r\ndressy\r\ndrew\r\ndrey\r\ndreyfus\r\ndrib\r\ndribble\r\ndribbler\r\ndribbling\r\ndriblet\r\ndried\r\ndried-out\r\ndried-up\r\ndrier\r\ndrift\r\ndriftage\r\ndrifter\r\ndriftfish\r\ndrifting\r\ndriftwood\r\ndrill\r\ndrill-like\r\ndrilled\r\ndrilling\r\ndrily\r\ndrimys\r\ndrink\r\ndrinkable\r\ndrinker\r\ndrinking\r\ndrip\r\ndrip-dry\r\ndripless\r\ndrippage\r\ndrippily\r\ndrippiness\r\ndripping\r\ndrippings\r\ndrippy\r\ndripstone\r\ndrive\r\ndrive-in\r\ndrivel\r\ndriveller\r\ndriven\r\ndriver\r\ndriveshaft\r\ndriveway\r\ndriving\r\ndrixoral\r\ndrizzle\r\ndrizzling\r\ndrizzly\r\ndrms\r\ndrogheda\r\ndrogue\r\ndroll\r\ndrollery\r\ndromaeosaur\r\ndromaeosauridae\r\ndromaius\r\ndrome\r\ndromedary\r\ndronabinol\r\ndrone\r\ndroning\r\ndrool\r\ndrooler\r\ndroop\r\ndrooping\r\ndroopy\r\ndrop\r\ndrop-kick\r\ndrop-leaf\r\ndrop-off\r\ndrop-seed\r\ndropforge\r\ndropkick\r\ndropkicker\r\ndroplet\r\ndropline\r\ndropout\r\ndropped\r\ndropper\r\ndropping\r\ndroppings\r\ndropseed\r\ndropsical\r\ndropsy\r\ndrosera\r\ndroseraceae\r\ndroshky\r\ndrosky\r\ndrosophila\r\ndrosophilidae\r\ndrosophyllum\r\ndross\r\ndrought\r\ndrouth\r\ndrove\r\ndrover\r\ndrown\r\ndrowned\r\ndrowse\r\ndrowsily\r\ndrowsiness\r\ndrowsing\r\ndrowsy\r\ndrub\r\ndrubbing\r\ndrudge\r\ndrudgery\r\ndrudging\r\ndrug\r\ndrug-addicted\r\ndrug-free\r\ndrugged\r\ndrugget\r\ndrugging\r\ndruggist\r\ndrugless\r\ndrugstore\r\ndruid\r\ndruidism\r\ndrum\r\ndrum-like\r\ndrum-shaped\r\ndrumbeat\r\ndrumbeater\r\ndrumfire\r\ndrumfish\r\ndrumhead\r\ndrumlin\r\ndrummer\r\ndrumming\r\ndrumstick\r\ndrunk\r\ndrunk-and-disorderly\r\ndrunkard\r\ndrunken\r\ndrunkenness\r\ndrupaceous\r\ndrupe\r\ndrupelet\r\ndruse\r\ndruthers\r\ndruze\r\ndry\r\ndry-cleaned\r\ndry-dock\r\ndry-eyed\r\ndry-gulching\r\ndry-nurse\r\ndry-rot\r\ndry-shod\r\ndryad\r\ndryadella\r\ndryas\r\ndryden\r\ndrydock\r\ndryer\r\ndrygoods\r\ndryly\r\ndrymarchon\r\ndrymoglossum\r\ndrynaria\r\ndryness\r\ndryopithecine\r\ndryopithecus\r\ndryopteridaceae\r\ndryopteris\r\ndrypis\r\ndrywall\r\nds\r\ndsl\r\ndtic\r\ndts\r\nduad\r\ndual\r\ndual-lane\r\ndualism\r\ndualist\r\ndualistic\r\nduality\r\ndub\r\ndubai\r\ndubbin\r\ndubbing\r\ndubiety\r\ndubious\r\ndubiously\r\ndubiousness\r\ndubitable\r\ndublin\r\ndubliner\r\ndubnium\r\ndubonnet\r\ndubrovnik\r\ndubuque\r\ndubya\r\ndubyuh\r\nducal\r\nducat\r\nduce\r\nduchamp\r\nduchess\r\nduchy\r\nduck\r\nduck-billed\r\nduck-like\r\nduckbill\r\nduckboard\r\nducking\r\nduckling\r\nduckpin\r\nduckpins\r\nduckweed\r\nducky\r\nduct\r\nductile\r\nductileness\r\nductility\r\nductless\r\nductule\r\nductulus\r\ndud\r\ndude\r\ndudeen\r\ndudgeon\r\nduds\r\ndue\r\nduel\r\ndueler\r\nduelist\r\ndueller\r\nduellist\r\nduenna\r\nduet\r\nduette\r\nduff\r\nduffel\r\nduffer\r\nduffle\r\ndufy\r\ndug\r\ndugong\r\ndugongidae\r\ndugout\r\ndukas\r\nduke\r\ndukedom\r\ndulcet\r\ndulciana\r\ndulcify\r\ndulcimer\r\ndulcinea\r\ndulcorate\r\ndull\r\ndull-purple\r\ndull-white\r\ndullard\r\ndulled\r\ndulles\r\ndullness\r\ndulse\r\nduluth\r\nduly\r\ndumas\r\ndumb\r\ndumbass\r\ndumbbell\r\ndumbfound\r\ndumbfounded\r\ndumbfounding\r\ndumbly\r\ndumbness\r\ndumbstricken\r\ndumbstruck\r\ndumbwaiter\r\ndumdum\r\ndumetella\r\ndumfounded\r\ndumfounding\r\ndummy\r\ndump\r\ndumpcart\r\ndumper\r\ndumpiness\r\ndumping\r\ndumpling\r\ndumplings\r\ndumps\r\ndumpsite\r\ndumpster\r\ndumpy\r\ndumuzi\r\ndun\r\ndun-colored\r\ndun-coloured\r\nduncan\r\ndunce\r\ndunderhead\r\ndune\r\ndung\r\ndungaree\r\ndungeon\r\ndunghill\r\ndunk\r\ndunkard\r\ndunked\r\ndunker\r\ndunkerque\r\ndunkers\r\ndunkirk\r\ndunlin\r\ndunnock\r\nduo\r\nduodecimal\r\nduodenal\r\nduodenum\r\nduologue\r\nduomo\r\ndupe\r\ndupery\r\nduple\r\nduplex\r\nduplicability\r\nduplicable\r\nduplicatable\r\nduplicate\r\nduplication\r\nduplicator\r\nduplicidentata\r\nduplicitous\r\nduplicity\r\ndura\r\ndurability\r\ndurable\r\ndurables\r\ndurabolin\r\ndural\r\nduralumin\r\nduramen\r\ndurance\r\ndurango\r\ndurant\r\ndurante\r\nduration\r\ndurative\r\ndurazzo\r\ndurban\r\ndurbar\r\ndurer\r\nduress\r\ndurga\r\ndurham\r\ndurian\r\ndurio\r\ndurion\r\ndurkheim\r\ndurmast\r\ndurra\r\ndurrell\r\ndurres\r\ndurum\r\ndusanbe\r\nduse\r\ndushanbe\r\ndusicyon\r\ndusk\r\nduskiness\r\ndusky\r\ndusky-colored\r\ndusky-coloured\r\ndusseldorf\r\ndust\r\ndust-covered\r\ndustbin\r\ndustcart\r\ndustcloth\r\nduster\r\ndustiness\r\ndustlike\r\ndustman\r\ndustmop\r\ndustpan\r\ndustpanful\r\ndustrag\r\ndustup\r\ndusty\r\ndutch\r\ndutchman\r\ndutchman's-pipe\r\nduteous\r\ndutiable\r\ndutiful\r\ndutifulness\r\nduty\r\nduty-bound\r\nduty-free\r\nduvalier\r\nduvet\r\ndvd\r\ndvorak\r\ndwarf\r\ndwarfish\r\ndwarfishness\r\ndwarfism\r\ndweeb\r\ndwell\r\ndweller\r\ndwelling\r\ndwindle\r\ndwindling\r\ndy\r\ndyad\r\ndyadic\r\ndyarchy\r\ndyaus\r\ndyaus-pitar\r\ndybbuk\r\ndye\r\ndye-works\r\ndyed\r\ndyeing\r\ndyer\r\ndyer's-broom\r\ndyestuff\r\ndyeweed\r\ndyewood\r\ndying\r\ndyirbal\r\ndyke\r\ndylan\r\ndynamic\r\ndynamical\r\ndynamics\r\ndynamise\r\ndynamism\r\ndynamite\r\ndynamiter\r\ndynamitist\r\ndynamize\r\ndynamo\r\ndynamometer\r\ndynapen\r\ndynast\r\ndynastic\r\ndynasty\r\ndyne\r\ndysaphia\r\ndysarthria\r\ndyscalculia\r\ndyschezia\r\ndyscrasia\r\ndysdercus\r\ndysentery\r\ndysfunction\r\ndysfunctional\r\ndysgenesis\r\ndysgenic\r\ndysgenics\r\ndysgraphia\r\ndyskinesia\r\ndyslectic\r\ndyslexia\r\ndyslexic\r\ndyslogia\r\ndyslogistic\r\ndysmenorrhea\r\ndysomia\r\ndysosmia\r\ndyspepsia\r\ndyspeptic\r\ndysphagia\r\ndysphasia\r\ndysphemism\r\ndysphemistic\r\ndysphonia\r\ndysphoria\r\ndysphoric\r\ndysplasia\r\ndysplastic\r\ndyspnea\r\ndyspneal\r\ndyspneic\r\ndyspnoea\r\ndyspnoeal\r\ndyspnoeic\r\ndysprosium\r\ndyssynergia\r\ndysthymia\r\ndystopia\r\ndystopian\r\ndystrophy\r\ndysuria\r\ndytiscidae\r\ndyushambe\r\ndziggetai\r\ne\r\ne'er\r\ne-bomb\r\ne-commerce\r\ne-mail\r\ne-mycin\r\ne.g.\r\ne.s.p.\r\nea\r\neach\r\neacles\r\neadwig\r\neager\r\neagerly\r\neagerness\r\neagle\r\neagle-eyed\r\neagle-like\r\neaglelike\r\neaglet\r\neagre\r\neames\r\near\r\near-like\r\near-shaped\r\near-shell\r\nearache\r\neardrop\r\neardrum\r\neared\r\nearflap\r\nearful\r\nearhart\r\nearl\r\nearlap\r\nearldom\r\nearless\r\nearlier\r\nearliest\r\nearliness\r\nearlobe\r\nearly\r\nearly-blooming\r\nearly-flowering\r\nearlyish\r\nearmark\r\nearmuff\r\nearn\r\nearned\r\nearner\r\nearnest\r\nearnestly\r\nearnestness\r\nearnings\r\nearphone\r\nearpiece\r\nearreach\r\nearring\r\nearshot\r\nearsplitting\r\nearth\r\nearth-ball\r\nearth-closet\r\nearth-god\r\nearth-goddess\r\nearth-tongue\r\nearthball\r\nearthborn\r\nearthbound\r\nearthen\r\nearthenware\r\nearthing\r\nearthlike\r\nearthling\r\nearthly\r\nearthman\r\nearthnut\r\nearthquake\r\nearthshaking\r\nearthstar\r\nearthtongue\r\nearthwork\r\nearthworm\r\nearthy\r\nearwax\r\nearwig\r\neas\r\nease\r\neased\r\neasel\r\neasement\r\neasily\r\neasiness\r\neasing\r\neast\r\neast-central\r\neast-sider\r\neastbound\r\neaster\r\neasterly\r\neastern\r\neasterner\r\neasternmost\r\neastertide\r\neastman\r\neastmost\r\neastside\r\neastward\r\neastwards\r\neasy\r\neasygoing\r\neasygoingness\r\neat\r\neatable\r\neatage\r\neater\r\neating\r\neats\r\neaves\r\neavesdrop\r\neavesdropper\r\nebb\r\nebbing\r\nebbtide\r\nebenaceae\r\nebenales\r\nebionite\r\nebitda\r\neblis\r\nebn\r\nebola\r\nebon\r\nebonics\r\nebonise\r\nebonite\r\nebonize\r\nebony\r\nebracteate\r\nebro\r\nebs\r\nebullience\r\nebullient\r\nebulliently\r\nebullition\r\neburnation\r\neburophyton\r\nebv\r\nec\r\necarte\r\necballium\r\necc\r\neccentric\r\neccentricity\r\necchymosis\r\neccles\r\necclesiastes\r\necclesiastic\r\necclesiastical\r\necclesiasticism\r\necclesiasticus\r\necclesiology\r\neccm\r\neccrine\r\neccyesis\r\necdemic\r\necdysiast\r\necdysis\r\necesis\r\necf\r\necg\r\nechelon\r\necheneididae\r\necheneis\r\nechidna\r\nechidnophaga\r\nechinacea\r\nechinocactus\r\nechinocereus\r\nechinochloa\r\nechinococcosis\r\nechinococcus\r\nechinoderm\r\nechinodermata\r\nechinoidea\r\nechinops\r\nechinus\r\nechium\r\necho\r\nechocardiogram\r\nechocardiograph\r\nechocardiography\r\nechoencephalogram\r\nechoencephalograph\r\nechoencephalography\r\nechogram\r\nechography\r\nechoic\r\nechoing\r\necholalia\r\necholess\r\necholike\r\necholocation\r\nechovirus\r\necht\r\neck\r\neckhart\r\neclair\r\neclampsia\r\neclat\r\neclectic\r\neclecticism\r\neclecticist\r\neclipse\r\neclipsis\r\necliptic\r\neclogue\r\necm\r\neco-warfare\r\necobabble\r\necologic\r\necological\r\necologist\r\necology\r\neconometric\r\neconometrician\r\neconometrics\r\neconometrist\r\neconomic\r\neconomical\r\neconomics\r\neconomise\r\neconomiser\r\neconomist\r\neconomize\r\neconomizer\r\neconomy\r\necosoc\r\necosystem\r\necoterrorism\r\necotourism\r\necphonesis\r\necrevisse\r\necru\r\necstasy\r\necstatic\r\necstatically\r\nect\r\nectasia\r\nectasis\r\nectoblast\r\nectoderm\r\nectodermal\r\nectodermic\r\nectomorph\r\nectomorphic\r\nectomorphy\r\nectoparasite\r\nectopia\r\nectopic\r\nectopistes\r\nectoplasm\r\nectoproct\r\nectoprocta\r\nectotherm\r\nectothermic\r\nectozoan\r\nectozoon\r\nectrodactyly\r\necuador\r\necuadoran\r\necuadorian\r\necumenic\r\necumenical\r\necumenicalism\r\necumenicism\r\necumenism\r\neczema\r\ned\r\nedacious\r\nedacity\r\nedam\r\nedaphosauridae\r\nedaphosaurus\r\nedd\r\nedda\r\neddington\r\neddo\r\neddy\r\nedecrin\r\nedelweiss\r\nedema\r\nedematous\r\neden\r\nedental\r\nedentata\r\nedentate\r\nedentulate\r\nedentulous\r\nederle\r\nedgar\r\nedge\r\nedged\r\nedgeless\r\nedger\r\nedgeways\r\nedgewise\r\nedginess\r\nedging\r\nedgy\r\nedibility\r\nedible\r\nedibleness\r\nedict\r\nedification\r\nedifice\r\nedified\r\nedify\r\nedifying\r\nedinburgh\r\nedirne\r\nedison\r\nedit\r\nedited\r\nediting\r\nedition\r\neditor\r\neditorial\r\neditorialise\r\neditorialist\r\neditorialize\r\neditorially\r\neditorship\r\nedmonton\r\nedmontonia\r\nedmontosaurus\r\nedo\r\nedp\r\nedronax\r\neds\r\neducate\r\neducated\r\neducatee\r\neducation\r\neducational\r\neducationalist\r\neducationist\r\neducative\r\neducator\r\neduce\r\nedulcorate\r\nedutainment\r\nedward\r\nedwardian\r\nedwards\r\nedwin\r\nedwy\r\nee\r\neec\r\neeg\r\neel\r\neel-shaped\r\neelam\r\neelblenny\r\neelgrass\r\neellike\r\neelpout\r\neelworm\r\neerie\r\neerily\r\neeriness\r\neery\r\neff\r\nefface\r\neffaceable\r\neffacement\r\neffect\r\neffected\r\neffecter\r\neffective\r\neffectively\r\neffectiveness\r\neffectivity\r\neffector\r\neffects\r\neffectual\r\neffectuality\r\neffectually\r\neffectualness\r\neffectuate\r\neffectuation\r\neffeminacy\r\neffeminate\r\neffeminateness\r\neffeminize\r\neffendi\r\nefferent\r\neffervesce\r\neffervescence\r\neffervescent\r\neffervescing\r\neffete\r\nefficacious\r\nefficaciously\r\nefficaciousness\r\nefficacy\r\nefficiency\r\nefficient\r\nefficiently\r\neffigy\r\neffleurage\r\neffloresce\r\nefflorescence\r\nefflorescent\r\neffluence\r\neffluent\r\neffluvium\r\nefflux\r\neffort\r\neffortful\r\neffortfulness\r\neffortless\r\neffortlessness\r\neffrontery\r\neffulgence\r\neffulgent\r\neffuse\r\neffusion\r\neffusive\r\neffusiveness\r\neft\r\negalitarian\r\negalitarianism\r\negalite\r\negality\r\negbert\r\negeria\r\negest\r\negg\r\negg-and-anchor\r\negg-and-dart\r\negg-and-tongue\r\negg-filled\r\negg-producing\r\negg-shaped\r\neggar\r\neggbeater\r\neggcup\r\negger\r\neggfruit\r\negghead\r\neggnog\r\neggplant\r\neggs\r\neggshake\r\neggshell\r\neggwhisk\r\negis\r\neglantine\r\neglevsky\r\nego\r\negocentric\r\negocentrism\r\negoism\r\negoist\r\negoistic\r\negoistical\r\negomania\r\negomaniac\r\negotism\r\negotist\r\negotistic\r\negotistical\r\negotistically\r\negotrip\r\negregious\r\negress\r\negression\r\negret\r\negretta\r\negtk\r\negypt\r\negyptian\r\negyptologist\r\negyptology\r\nehadhamen\r\nehf\r\nehrenberg\r\nehrlich\r\neichhornia\r\neichmann\r\neider\r\neiderdown\r\neidetic\r\neidos\r\neiffel\r\neigen\r\neigenvalue\r\neight\r\neight-day\r\neight-fold\r\neight-membered\r\neight-sided\r\neight-spot\r\neighteen\r\neighteenth\r\neighter\r\neightfold\r\neighth\r\neighties\r\neightieth\r\neightpence\r\neightpenny\r\neightsome\r\neightvo\r\neighty\r\neighty-eight\r\neighty-fifth\r\neighty-five\r\neighty-four\r\neighty-nine\r\neighty-one\r\neighty-seven\r\neighty-six\r\neighty-three\r\neighty-two\r\neijkman\r\neimeria\r\neimeriidae\r\neindhoven\r\neinstein\r\neinsteinian\r\neinsteinium\r\neinthoven\r\neira\r\neire\r\neisegesis\r\neisenhower\r\neisenstaedt\r\neisenstein\r\neisteddfod\r\nejaculate\r\nejaculation\r\nejaculator\r\neject\r\nejection\r\nejector\r\nekg\r\nekman\r\nel\r\nel-aksur\r\nela\r\nelaborate\r\nelaborated\r\nelaborately\r\nelaborateness\r\nelaboration\r\nelaeagnaceae\r\nelaeagnus\r\nelaeis\r\nelaeocarpaceae\r\nelaeocarpus\r\nelagatis\r\nelam\r\nelamite\r\nelamitic\r\nelan\r\neland\r\nelanoides\r\nelanus\r\nelaphe\r\nelaphure\r\nelaphurus\r\nelapid\r\nelapidae\r\nelapse\r\nelasmobranch\r\nelasmobranchii\r\nelastance\r\nelastase\r\nelastic\r\nelasticised\r\nelasticity\r\nelasticized\r\nelastin\r\nelastomer\r\nelastoplast\r\nelastosis\r\nelate\r\nelated\r\nelater\r\nelaterid\r\nelateridae\r\nelating\r\nelation\r\nelavil\r\nelbe\r\nelbow\r\nelbowing\r\neld\r\nelder\r\nelderberry\r\nelderly\r\neldership\r\neldest\r\neldorado\r\neldritch\r\nelecampane\r\nelect\r\nelected\r\nelection\r\nelectioneer\r\nelectioneering\r\nelective\r\nelector\r\nelectoral\r\nelectorate\r\nelectra\r\nelectric\r\nelectrical\r\nelectrician\r\nelectricity\r\nelectrification\r\nelectrify\r\nelectrifying\r\nelectrocardiogram\r\nelectrocardiograph\r\nelectrocardiographic\r\nelectrocardiography\r\nelectrocautery\r\nelectrochemical\r\nelectrochemistry\r\nelectrocute\r\nelectrocution\r\nelectrocutioner\r\nelectrode\r\nelectrodeposition\r\nelectrodynamometer\r\nelectroencephalogram\r\nelectroencephalograph\r\nelectroencephalographic\r\nelectrograph\r\nelectrologist\r\nelectrolysis\r\nelectrolyte\r\nelectrolytic\r\nelectromagnet\r\nelectromagnetic\r\nelectromagnetics\r\nelectromagnetism\r\nelectromechanical\r\nelectrometer\r\nelectromotive\r\nelectromyogram\r\nelectromyograph\r\nelectromyography\r\nelectron\r\nelectronegative\r\nelectronegativity\r\nelectroneutral\r\nelectronic\r\nelectronics\r\nelectrophoresis\r\nelectrophoretic\r\nelectrophoridae\r\nelectrophorus\r\nelectroplate\r\nelectroplater\r\nelectropositive\r\nelectroretinogram\r\nelectroscope\r\nelectroshock\r\nelectrosleep\r\nelectrostatic\r\nelectrostatics\r\nelectrosurgery\r\nelectrotherapist\r\nelectrotherapy\r\nelectrum\r\neleemosynary\r\nelegance\r\nelegant\r\nelegantly\r\nelegiac\r\nelegise\r\nelegist\r\nelegize\r\nelegy\r\nelement\r\nelemental\r\nelementary\r\nelements\r\nelemi\r\neleocharis\r\neleotridae\r\nelephant\r\nelephant's-foot\r\nelephant-like\r\nelephant-tusk\r\nelephantiasis\r\nelephantidae\r\nelephantine\r\nelephantopus\r\nelephas\r\nelettaria\r\neleusine\r\neleutherodactylus\r\nelevate\r\nelevated\r\nelevation\r\nelevator\r\neleven\r\neleven-plus\r\neleven-sided\r\neleventh\r\nelf\r\nelfin\r\nelfish\r\nelflike\r\nelgar\r\nelia\r\nelicit\r\nelicitation\r\nelicited\r\nelide\r\neligibility\r\neligible\r\nelijah\r\neliminate\r\nelimination\r\neliminator\r\nelint\r\nelinvar\r\neliomys\r\neliot\r\nelisa\r\nelisabethville\r\nelision\r\nelite\r\nelitism\r\nelitist\r\nelixir\r\nelixophyllin\r\nelizabeth\r\nelizabethan\r\nelk\r\nelk-wood\r\nelkhound\r\nelkwood\r\nell\r\nellas\r\nelli\r\nellington\r\nellipse\r\nellipsis\r\nellipsoid\r\nellipsoidal\r\nelliptic\r\nelliptical\r\nellipticity\r\nellison\r\nellsworth\r\nellul\r\nelm\r\nelmont\r\nelmwood\r\neln\r\nelocute\r\nelocution\r\nelocutionary\r\nelocutionist\r\nelodea\r\nelongate\r\nelongated\r\nelongation\r\nelope\r\nelopement\r\nelopidae\r\nelops\r\neloquence\r\neloquent\r\neloquently\r\nelsass\r\nelse\r\nelsholtzia\r\nelspar\r\neluate\r\nelucidate\r\nelucidation\r\nelucidative\r\nelude\r\neluding\r\nelul\r\nelusion\r\nelusive\r\nelusiveness\r\nelute\r\nelution\r\nelver\r\nelves\r\nelvis\r\nelvish\r\nelymus\r\nelysian\r\nelysium\r\nelytron\r\nem\r\nemaciate\r\nemaciated\r\nemaciation\r\nemail\r\nemanate\r\nemanation\r\nemancipate\r\nemancipated\r\nemancipation\r\nemancipationist\r\nemancipative\r\nemancipator\r\nemarginate\r\nemasculate\r\nemasculated\r\nemasculation\r\nembalm\r\nembalmer\r\nembalmment\r\nembank\r\nembankment\r\nembargo\r\nembark\r\nembarkation\r\nembarkment\r\nembarrass\r\nembarrassed\r\nembarrassing\r\nembarrassment\r\nembassador\r\nembassy\r\nembattled\r\nembayment\r\nembed\r\nembedded\r\nembellish\r\nembellished\r\nembellishment\r\nember\r\nemberiza\r\nemberizidae\r\nembezzle\r\nembezzled\r\nembezzlement\r\nembezzler\r\nembiodea\r\nembioptera\r\nembiotocidae\r\nembitter\r\nembitterment\r\nemblazon\r\nemblem\r\nemblematic\r\nemblematical\r\nembodied\r\nembodiment\r\nembody\r\nembolden\r\nemboldened\r\nembolectomy\r\nembolic\r\nembolism\r\nembolus\r\nembonpoint\r\nemboss\r\nembossed\r\nembossment\r\nembothrium\r\nembouchure\r\nembower\r\nembowered\r\nembrace\r\nembracement\r\nembracing\r\nembrangle\r\nembrasure\r\nembrittle\r\nembrocate\r\nembrocation\r\nembroider\r\nembroidered\r\nembroiderer\r\nembroideress\r\nembroidery\r\nembroil\r\nembroiled\r\nembroilment\r\nembrown\r\nembryo\r\nembryologic\r\nembryologist\r\nembryology\r\nembryonal\r\nembryonic\r\nembryotic\r\nemcee\r\nemda\r\nemeer\r\nemend\r\nemendation\r\nemended\r\nemerald\r\nemerge\r\nemergence\r\nemergency\r\nemergent\r\nemerging\r\nemeritus\r\nemersion\r\nemerson\r\nemery\r\nemeside\r\nemesis\r\nemetic\r\nemetrol\r\nemf\r\nemg\r\nemigrant\r\nemigrate\r\nemigration\r\nemigre\r\nemigree\r\nemile\r\nemilia\r\nemilia-romagna\r\neminence\r\neminent\r\nemir\r\nemirate\r\nemissary\r\nemission\r\nemit\r\nemitter\r\nemmanthe\r\nemmenagogue\r\nemmental\r\nemmentaler\r\nemmenthal\r\nemmenthaler\r\nemmer\r\nemmet\r\nemmetropia\r\nemmetropic\r\nemmy\r\nemollient\r\nemolument\r\nemote\r\nemoticon\r\nemotion\r\nemotional\r\nemotionalism\r\nemotionality\r\nemotionally\r\nemotionless\r\nemotionlessness\r\nemotive\r\nempale\r\nempanel\r\nempathetic\r\nempathetically\r\nempathic\r\nempathise\r\nempathize\r\nempathy\r\nempedocles\r\nempennage\r\nemperor\r\nempetraceae\r\nempetrum\r\nemphasis\r\nemphasise\r\nemphasised\r\nemphasize\r\nemphasized\r\nemphasizing\r\nemphatic\r\nemphatically\r\nemphysema\r\nemphysematous\r\nempire\r\nempiric\r\nempirical\r\nempirically\r\nempiricism\r\nempiricist\r\nempirin\r\nemplace\r\nemplacement\r\nemplane\r\nemploy\r\nemployable\r\nemployed\r\nemployee\r\nemployer\r\nemployment\r\nemporium\r\nempower\r\nempowered\r\nempowerment\r\nempress\r\nemptiness\r\nemptor\r\nempty\r\nempty-bellied\r\nempty-handed\r\nempty-headed\r\nemptying\r\nempurple\r\nempurpled\r\nempyema\r\nempyreal\r\nempyrean\r\nemu\r\nemulate\r\nemulation\r\nemulator\r\nemulous\r\nemulsified\r\nemulsifier\r\nemulsify\r\nemulsion\r\nemydidae\r\nen\r\nen-lil\r\nenable\r\nenabling\r\nenact\r\nenactment\r\nenalapril\r\nenallage\r\nenamel\r\nenameled\r\nenamelware\r\nenamine\r\nenamor\r\nenamored\r\nenamoredness\r\nenamour\r\nenanthem\r\nenanthema\r\nenantiomer\r\nenantiomorph\r\nenantiomorphism\r\nenarthrosis\r\nenate\r\nenatic\r\nenation\r\nenbrel\r\nencainide\r\nencamp\r\nencampment\r\nencapsulate\r\nencapsulation\r\nencase\r\nencased\r\nencasement\r\nencaustic\r\nenceinte\r\nencelia\r\nenceliopsis\r\nencephalartos\r\nencephalitis\r\nencephalocele\r\nencephalogram\r\nencephalography\r\nencephalomeningitis\r\nencephalomyelitis\r\nencephalon\r\nencephalopathy\r\nenchain\r\nenchained\r\nenchant\r\nenchanted\r\nenchanter\r\nenchanting\r\nenchantingly\r\nenchantment\r\nenchantress\r\nenchilada\r\nenchiridion\r\nenchondroma\r\nencipher\r\nencircle\r\nencircled\r\nencirclement\r\nencircling\r\nenclave\r\nenclose\r\nenclosed\r\nenclosing\r\nenclosure\r\nenclothe\r\nencode\r\nencoding\r\nencolure\r\nencomiastic\r\nencomium\r\nencompass\r\nencompassing\r\nencompassment\r\nencopresis\r\nencore\r\nencounter\r\nencourage\r\nencouraged\r\nencouragement\r\nencouraging\r\nencouragingly\r\nencrimson\r\nencroach\r\nencroacher\r\nencroaching\r\nencroachment\r\nencrust\r\nencrustation\r\nencrusted\r\nencrypt\r\nencryption\r\nenculturation\r\nencumber\r\nencumbered\r\nencumbrance\r\nencyclia\r\nencyclical\r\nencyclopaedia\r\nencyclopaedic\r\nencyclopaedism\r\nencyclopaedist\r\nencyclopedia\r\nencyclopedic\r\nencyclopedism\r\nencyclopedist\r\nencysted\r\nend\r\nend-all\r\nend-plate\r\nend-rhymed\r\nend-stopped\r\nend-to-end\r\nendaemonism\r\nendameba\r\nendamoeba\r\nendamoebidae\r\nendanger\r\nendangered\r\nendangerment\r\nendarterectomy\r\nendarteritis\r\nendear\r\nendearing\r\nendearingly\r\nendearment\r\nendeavor\r\nendeavour\r\nendecott\r\nended\r\nendemic\r\nendemical\r\nendemism\r\nendermatic\r\nendermic\r\nendgame\r\nendicott\r\nending\r\nendive\r\nendless\r\nendlessly\r\nendlessness\r\nendmost\r\nendoblast\r\nendocarditis\r\nendocardium\r\nendocarp\r\nendocentric\r\nendocervicitis\r\nendocranium\r\nendocrinal\r\nendocrine\r\nendocrinologist\r\nendocrinology\r\nendoderm\r\nendodontia\r\nendodontic\r\nendodontics\r\nendodontist\r\nendoergic\r\nendogamic\r\nendogamous\r\nendogamy\r\nendogen\r\nendogenetic\r\nendogenic\r\nendogenous\r\nendogeny\r\nendolymph\r\nendometrial\r\nendometriosis\r\nendometritis\r\nendometrium\r\nendomorph\r\nendomorphic\r\nendomorphy\r\nendomycetales\r\nendoneurium\r\nendonuclease\r\nendoparasite\r\nendoparasitic\r\nendoplasm\r\nendoprocta\r\nendorphin\r\nendorse\r\nendorsed\r\nendorsement\r\nendorser\r\nendoscope\r\nendoscopic\r\nendoscopy\r\nendoskeleton\r\nendosperm\r\nendospore\r\nendosteum\r\nendothelial\r\nendothelium\r\nendothermal\r\nendothermic\r\nendotoxin\r\nendovenous\r\nendow\r\nendowed\r\nendowment\r\nendozoan\r\nendozoic\r\nendplate\r\nendpoint\r\nendue\r\nendurable\r\nendurance\r\nendure\r\nenduring\r\nenduringness\r\nendways\r\nendwise\r\nene\r\nenema\r\nenemy\r\nenergetic\r\nenergid\r\nenergise\r\nenergiser\r\nenergising\r\nenergize\r\nenergizer\r\nenergizing\r\nenergy\r\nenergy-absorbing\r\nenergy-releasing\r\nenergy-storing\r\nenervate\r\nenervated\r\nenervating\r\nenervation\r\nenesco\r\nenets\r\nenfeeble\r\nenfeeblement\r\nenfeebling\r\nenfeoff\r\nenfeoffment\r\nenfilade\r\nenflurane\r\nenfold\r\nenfolding\r\nenforce\r\nenforceable\r\nenforced\r\nenforcement\r\nenforcer\r\nenfranchise\r\nenfranchised\r\nenfranchisement\r\nengage\r\nengaged\r\nengagement\r\nengaging\r\nengagingly\r\nengelmannia\r\nengels\r\nengender\r\nengild\r\nengine\r\nengineer\r\nengineering\r\nenginery\r\nengland\r\nenglish\r\nenglish-gothic\r\nenglish-speaking\r\nenglish-weed\r\nenglishman\r\nenglishwoman\r\nenglut\r\nengorge\r\nengorged\r\nengorgement\r\nengraft\r\nengram\r\nengraulidae\r\nengraulis\r\nengrave\r\nengraved\r\nengraver\r\nengraving\r\nengross\r\nengrossed\r\nengrossing\r\nengrossment\r\nengulf\r\nengulfed\r\nenhance\r\nenhanced\r\nenhancement\r\nenhancer\r\nenhancive\r\nenhydra\r\nenid\r\nenigma\r\nenigmatic\r\nenigmatical\r\nenigmatically\r\neniwetok\r\nenjambement\r\nenjambment\r\nenjoin\r\nenjoining\r\nenjoinment\r\nenjoy\r\nenjoyable\r\nenjoyableness\r\nenjoyably\r\nenjoyer\r\nenjoyment\r\nenkaid\r\nenkephalin\r\nenki\r\nenkidu\r\nenkindle\r\nenkindled\r\nenl\r\nenlace\r\nenlarge\r\nenlarged\r\nenlargement\r\nenlarger\r\nenlighten\r\nenlightened\r\nenlightening\r\nenlightenment\r\nenlil\r\nenlist\r\nenlistee\r\nenlisting\r\nenlistment\r\nenliven\r\nenlivened\r\nenlivener\r\nenlivening\r\nenmesh\r\nenmeshed\r\nenmity\r\nennead\r\nennervation\r\nennoble\r\nennoblement\r\nennobling\r\nennui\r\nenol\r\nenolic\r\nenologist\r\nenology\r\nenormity\r\nenormous\r\nenormously\r\nenormousness\r\nenosis\r\nenough\r\nenounce\r\nenovid\r\nenplane\r\nenquire\r\nenquirer\r\nenquiringly\r\nenquiry\r\nenrage\r\nenraged\r\nenragement\r\nenrapture\r\nenraptured\r\nenrich\r\nenrichment\r\nenrobe\r\nenrol\r\nenroll\r\nenrolled\r\nenrollee\r\nenrollment\r\nenrolment\r\nensconce\r\nensemble\r\nensete\r\nenshrine\r\nenshroud\r\nensiform\r\nensign\r\nensilage\r\nensile\r\nensis\r\nensky\r\nenslave\r\nenslaved\r\nenslavement\r\nensnare\r\nensnarl\r\nensorcelled\r\nensuant\r\nensue\r\nensuing\r\nensure\r\nentablature\r\nentail\r\nentailment\r\nentandrophragma\r\nentangle\r\nentangled\r\nentanglement\r\nentasis\r\nentebbe\r\nentelea\r\nentelechy\r\nentellus\r\nentente\r\nenter\r\nenteral\r\nenteric\r\nenterics\r\nentering\r\nenteritis\r\nenterobacteria\r\nenterobacteriaceae\r\nenterobiasis\r\nenterobius\r\nenteroceptor\r\nenterokinase\r\nenterolith\r\nenterolithiasis\r\nenterolobium\r\nenteron\r\nenteropathy\r\nenteroptosis\r\nenterostenosis\r\nenterostomy\r\nenterotomy\r\nenterotoxemia\r\nenterotoxin\r\nenterovirus\r\nenterprise\r\nenterpriser\r\nenterprising\r\nenterprisingness\r\nentertain\r\nentertained\r\nentertainer\r\nentertaining\r\nentertainment\r\nenthalpy\r\nenthral\r\nenthrall\r\nenthralled\r\nenthralling\r\nenthrallingly\r\nenthrallment\r\nenthrone\r\nenthronement\r\nenthronisation\r\nenthronization\r\nenthuse\r\nenthusiasm\r\nenthusiast\r\nenthusiastic\r\nenthusiastically\r\nentice\r\nenticement\r\nenticing\r\nentire\r\nentirely\r\nentireness\r\nentirety\r\nentitle\r\nentitled\r\nentitlement\r\nentoblast\r\nentoderm\r\nentoloma\r\nentolomataceae\r\nentomb\r\nentombment\r\nentomion\r\nentomologic\r\nentomological\r\nentomologist\r\nentomology\r\nentomophilous\r\nentomophobia\r\nentomophthora\r\nentomophthoraceae\r\nentomophthorales\r\nentomostraca\r\nentoparasite\r\nentoproct\r\nentoprocta\r\nentourage\r\nentozoan\r\nentozoic\r\nentozoon\r\nentr'acte\r\nentrails\r\nentrain\r\nentrance\r\nentranced\r\nentrancement\r\nentranceway\r\nentrancing\r\nentrant\r\nentrap\r\nentrapment\r\nentreat\r\nentreatingly\r\nentreaty\r\nentree\r\nentremots\r\nentrench\r\nentrenched\r\nentrenchment\r\nentrepot\r\nentrepreneur\r\nentrepreneurial\r\nentresol\r\nentric\r\nentropy\r\nentrust\r\nentry\r\nentryway\r\nentsi\r\nentsy\r\nentwine\r\nenucleate\r\nenucleation\r\nenuki\r\nenumerable\r\nenumerate\r\nenumeration\r\nenumerator\r\nenunciate\r\nenunciation\r\nenured\r\nenuresis\r\nenvelop\r\nenvelope\r\nenveloped\r\nenveloping\r\nenvelopment\r\nenvenom\r\nenviable\r\nenvious\r\nenviously\r\nenviousness\r\nenviron\r\nenvironment\r\nenvironmental\r\nenvironmentalism\r\nenvironmentalist\r\nenvirons\r\nenvisage\r\nenvision\r\nenvisioned\r\nenvisioning\r\nenvoi\r\nenvoy\r\nenvy\r\nenwrap\r\nenwrapped\r\nenzootic\r\nenzymatic\r\nenzyme\r\nenzymologist\r\nenzymology\r\neocene\r\neohippus\r\neolian\r\neolic\r\neolith\r\neolithic\r\neolotropic\r\neon\r\neonian\r\neoraptor\r\neos\r\neosin\r\neosinopenia\r\neosinophil\r\neosinophile\r\neosinophilia\r\neosinophilic\r\nepa\r\nepacridaceae\r\nepacris\r\nepanalepsis\r\nepanaphora\r\nepanodos\r\nepanorthosis\r\neparch\r\neparchial\r\neparchy\r\nepaulet\r\nepaulette\r\nepauliere\r\nepee\r\nependyma\r\nepenthesis\r\nepenthetic\r\nepergne\r\nepha\r\nephah\r\nephedra\r\nephedraceae\r\nephedrine\r\nephemera\r\nephemeral\r\nephemerality\r\nephemeralness\r\nephemerid\r\nephemerida\r\nephemeridae\r\nephemeris\r\nephemeron\r\nephemeroptera\r\nephemeropteran\r\nephesan\r\nephesian\r\nephesians\r\nephestia\r\nephesus\r\nephippidae\r\nephippiorhynchus\r\nepi\r\nepic\r\nepical\r\nepicalyx\r\nepicanthus\r\nepicardia\r\nepicardium\r\nepicarp\r\nepicarpal\r\nepicene\r\nepicenter\r\nepicentre\r\nepicine\r\nepicondyle\r\nepicondylitis\r\nepicranium\r\nepictetus\r\nepicure\r\nepicurean\r\nepicureanism\r\nepicurism\r\nepicurus\r\nepicycle\r\nepicyclic\r\nepicyclical\r\nepicycloid\r\nepideictic\r\nepideictical\r\nepidemic\r\nepidemiologic\r\nepidemiological\r\nepidemiologist\r\nepidemiology\r\nepidendron\r\nepidendrum\r\nepidermal\r\nepidermic\r\nepidermis\r\nepidiascope\r\nepididymis\r\nepididymitis\r\nepidural\r\nepigaea\r\nepigastric\r\nepigastrium\r\nepigenesis\r\nepiglottis\r\nepiglottitis\r\nepigon\r\nepigone\r\nepigram\r\nepigrammatic\r\nepigraph\r\nepigraphy\r\nepikeratophakia\r\nepilachna\r\nepilate\r\nepilation\r\nepilator\r\nepilepsy\r\nepileptic\r\nepilithic\r\nepilobium\r\nepilog\r\nepilogue\r\nepimedium\r\nepimetheus\r\nepimorphic\r\nepinephelus\r\nepinephrin\r\nepinephrine\r\nepipactis\r\nepipaleolithic\r\nepiphany\r\nepiphenomenon\r\nepiphora\r\nepiphyllum\r\nepiphyseal\r\nepiphysial\r\nepiphysis\r\nepiphyte\r\nepiphytic\r\nepiphytotic\r\nepiplexis\r\nepipremnum\r\nepirus\r\nepiscia\r\nepiscleritis\r\nepiscopacy\r\nepiscopal\r\nepiscopalian\r\nepiscopalianism\r\nepiscopate\r\nepisiotomy\r\nepisode\r\nepisodic\r\nepispadias\r\nepisperm\r\nepistasis\r\nepistaxis\r\nepisteme\r\nepistemic\r\nepistemological\r\nepistemologist\r\nepistemology\r\nepistle\r\nepistolary\r\nepistolatory\r\nepistrophe\r\nepitaph\r\nepitaxy\r\nepithalamium\r\nepithelial\r\nepitheliod\r\nepithelioma\r\nepithelium\r\nepithet\r\nepitome\r\nepitomise\r\nepitomize\r\nepitope\r\nepizoan\r\nepizoic\r\nepizoon\r\nepizootic\r\nepkwele\r\nepoch\r\nepoch-making\r\nepochal\r\nepona\r\neponym\r\neponymic\r\neponymous\r\neponymy\r\nepos\r\nepoxy\r\neprom\r\nepsilon\r\nepstein\r\neptatretus\r\neptesicus\r\neq\r\nequable\r\nequal\r\nequalisation\r\nequalise\r\nequalised\r\nequaliser\r\nequalitarian\r\nequalitarianism\r\nequality\r\nequalization\r\nequalize\r\nequalized\r\nequalizer\r\nequally\r\nequanil\r\nequanimity\r\nequanimous\r\nequatability\r\nequate\r\nequating\r\nequation\r\nequator\r\nequatorial\r\nequerry\r\nequestrian\r\nequetus\r\nequiangular\r\nequid\r\nequidae\r\nequidistant\r\nequidistribution\r\nequilateral\r\nequilibrate\r\nequilibration\r\nequilibrise\r\nequilibrium\r\nequilibrize\r\nequine\r\nequinoctial\r\nequinox\r\nequip\r\nequipage\r\nequipment\r\nequipoise\r\nequipoised\r\nequipotent\r\nequipped\r\nequipping\r\nequiprobable\r\nequipt\r\nequisetaceae\r\nequisetales\r\nequisetatae\r\nequisetum\r\nequitable\r\nequitably\r\nequitation\r\nequity\r\nequivalence\r\nequivalent\r\nequivocal\r\nequivocally\r\nequivocalness\r\nequivocate\r\nequivocation\r\nequivocator\r\nequus\r\ner\r\nera\r\neradicable\r\neradicate\r\neradication\r\neradicator\r\neragrostis\r\neranthis\r\nerasable\r\nerase\r\neraser\r\nerasmian\r\nerasmus\r\nerastianism\r\nerasure\r\nerato\r\neratosthenes\r\nerbium\r\nercilla\r\nerebus\r\nerect\r\nerectile\r\nerecting\r\nerection\r\nerectly\r\nerectness\r\neremite\r\neremitic\r\neremitical\r\neremitism\r\neresh-kigal\r\nereshkigal\r\nereshkigel\r\nerethism\r\nerethizon\r\nerethizontidae\r\neretmochelys\r\nerewhon\r\nerg\r\nergocalciferol\r\nergodic\r\nergodicity\r\nergometer\r\nergonomic\r\nergonomics\r\nergonovine\r\nergosterol\r\nergot\r\nergotamine\r\nergotic\r\nergotism\r\nergotropic\r\nergotropism\r\nerianthus\r\nerica\r\nericaceae\r\nericales\r\neridanus\r\nerie\r\nerigeron\r\nerignathus\r\nerin\r\nerinaceidae\r\nerinaceus\r\neringo\r\nerinyes\r\neriobotrya\r\neriocaulaceae\r\neriocaulon\r\neriodictyon\r\neriogonum\r\neriophorum\r\neriophyllum\r\neriosoma\r\neris\r\neristic\r\neristical\r\nerithacus\r\neritrea\r\neritrean\r\nerivan\r\nerlang\r\nerlenmeyer\r\nermine\r\nern\r\nerne\r\nernst\r\nerode\r\neroded\r\neroding\r\nerodium\r\nerogenous\r\nerolia\r\neros\r\nerose\r\nerosion\r\nerosive\r\nerotic\r\nerotica\r\neroticism\r\neroticize\r\nerotism\r\nerr\r\nerrancy\r\nerrand\r\nerrant\r\nerratic\r\nerratically\r\nerratum\r\nerreminise\r\nerrhine\r\nerring\r\nerroneous\r\nerroneously\r\nerroneousness\r\nerror\r\nerror-prone\r\nerrorless\r\nersatz\r\nerse\r\nerst\r\nerstwhile\r\nert\r\neruca\r\neruct\r\neructation\r\nerudite\r\neruditely\r\neruditeness\r\nerudition\r\nerupt\r\neruption\r\neruptive\r\nerving\r\nerwinia\r\neryngium\r\neryngo\r\nerysimum\r\nerysipelas\r\nerysiphaceae\r\nerysiphales\r\nerysiphe\r\nerythema\r\nerythematous\r\nerythrina\r\nerythrite\r\nerythroblast\r\nerythroblastosis\r\nerythrocebus\r\nerythrocin\r\nerythrocyte\r\nerythrocytolysin\r\nerythroderma\r\nerythroid\r\nerythrolysin\r\nerythromycin\r\nerythronium\r\nerythropoiesis\r\nerythropoietic\r\nerythropoietin\r\nerythroxylaceae\r\nerythroxylon\r\nerythroxylum\r\nes\r\nesaki\r\nesau\r\nescadrille\r\nescalade\r\nescalader\r\nescalate\r\nescalation\r\nescalator\r\nescallop\r\nescapade\r\nescape\r\nescaped\r\nescapee\r\nescapement\r\nescapism\r\nescapist\r\nescapologist\r\nescapology\r\nescargot\r\nescarole\r\nescarp\r\nescarpment\r\neschalot\r\neschar\r\neschatological\r\neschatologist\r\neschatology\r\nescheat\r\nescherichia\r\neschew\r\neschrichtiidae\r\neschrichtius\r\neschscholtzia\r\nescolar\r\nescort\r\nescritoire\r\nescrow\r\nescudo\r\nescutcheon\r\nese\r\nesfahan\r\nesidrix\r\neskalith\r\nesker\r\neskimo\r\neskimo-aleut\r\nesm\r\nesmolol\r\nesocidae\r\nesop\r\nesophageal\r\nesophagitis\r\nesophagoscope\r\nesophagus\r\nesoteric\r\nesoterica\r\nesotropia\r\nesox\r\nesp\r\nespadrille\r\nespalier\r\nespana\r\nespanole\r\nesparcet\r\nespecial\r\nespecially\r\nesperantido\r\nesperanto\r\nespial\r\nespionage\r\nesplanade\r\nespoo\r\nespousal\r\nespouse\r\nespresso\r\nesprit\r\nespy\r\nesq\r\nesquimau\r\nesquire\r\nesr\r\nessay\r\nessayer\r\nessayist\r\nesselen\r\nessen\r\nessence\r\nessene\r\nessential\r\nessentiality\r\nessentially\r\nessentialness\r\nessex\r\nessonite\r\nest\r\nestablish\r\nestablished\r\nestablishment\r\nestablishmentarianism\r\nestablishmentism\r\nestaminet\r\nestate\r\nestazolam\r\nesteem\r\nesteemed\r\nester\r\nesterify\r\nesther\r\nesthesia\r\nesthesis\r\nesthete\r\nesthetic\r\nesthetical\r\nesthetically\r\nesthetician\r\nesthetics\r\nesthonia\r\nesthonian\r\nestimable\r\nestimate\r\nestimation\r\nestimator\r\nestival\r\nestivate\r\nestivation\r\nestonia\r\nestonian\r\nestoppel\r\nestradiol\r\nestragon\r\nestrange\r\nestranged\r\nestrangement\r\nestranging\r\nestrilda\r\nestriol\r\nestrogen\r\nestrogenic\r\nestrone\r\nestronol\r\nestrous\r\nestrus\r\nestuarial\r\nestuarine\r\nestuary\r\nesurience\r\nesurient\r\neta\r\netagere\r\netamin\r\netamine\r\netanercept\r\netc.\r\netcetera\r\netch\r\netched\r\netcher\r\netching\r\netd\r\neternal\r\neternalise\r\neternalize\r\neternally\r\neternise\r\neternity\r\neternize\r\nethanal\r\nethanamide\r\nethane\r\nethanediol\r\nethanoate\r\nethanol\r\nethchlorvynol\r\nethelbert\r\nethelred\r\nethene\r\nether\r\nethereal\r\netherealize\r\netherialise\r\netherify\r\netherise\r\netherize\r\nethernet\r\nethic\r\nethical\r\nethically\r\nethician\r\nethicism\r\nethicist\r\nethics\r\nethiopia\r\nethiopian\r\nethmoid\r\nethnarch\r\nethnic\r\nethnical\r\nethnicity\r\nethnocentric\r\nethnocentrism\r\nethnographer\r\nethnographic\r\nethnographical\r\nethnography\r\nethnologic\r\nethnological\r\nethnologist\r\nethnology\r\nethnos\r\nethocaine\r\nethologist\r\nethology\r\nethos\r\nethosuximide\r\nethoxyethane\r\nethrane\r\nethril\r\nethyl\r\nethylene\r\nethyne\r\netiolate\r\netiolated\r\netiolation\r\netiologic\r\netiological\r\netiologist\r\netiology\r\netiquette\r\netna\r\netodolac\r\netonian\r\netropus\r\netruria\r\netruscan\r\netude\r\netui\r\netymological\r\netymologise\r\netymologist\r\netymologize\r\netymologizing\r\netymology\r\netymon\r\neu\r\neuarctos\r\neuascomycetes\r\neubacteria\r\neubacteriales\r\neubacterium\r\neubryales\r\neucalypt\r\neucalyptus\r\neucarya\r\neucaryote\r\neucaryotic\r\neucharist\r\neucharistic\r\neuchre\r\neucinostomus\r\neuclid\r\neuclidean\r\neuclidian\r\neudaemon\r\neudaemonia\r\neudaemonic\r\neudaimonia\r\neudemon\r\neudemonic\r\neudemonism\r\neuderma\r\neudiometer\r\neudyptes\r\neugene\r\neugenia\r\neugenic\r\neugenics\r\neuglena\r\neuglenaceae\r\neuglenid\r\neuglenoid\r\neuglenophyceae\r\neuglenophyta\r\neuglenophyte\r\neukaryote\r\neukaryotic\r\neuler\r\neulogise\r\neulogist\r\neulogistic\r\neulogium\r\neulogize\r\neulogy\r\neumeces\r\neumenes\r\neumenides\r\neumetopias\r\neumops\r\neumycetes\r\neumycota\r\neunectes\r\neunuch\r\neunuchoidism\r\neuonymus\r\neupatorium\r\neuphagus\r\neuphausiacea\r\neuphemise\r\neuphemism\r\neuphemistic\r\neuphemize\r\neuphonic\r\neuphonical\r\neuphonious\r\neuphonium\r\neuphonous\r\neuphony\r\neuphorbia\r\neuphorbiaceae\r\neuphorbium\r\neuphoria\r\neuphoriant\r\neuphoric\r\neuphory\r\neuphractus\r\neuphrates\r\neuphrosyne\r\neuphuism\r\neuplectella\r\neupnea\r\neupneic\r\neupnoea\r\neupnoeic\r\neuproctis\r\neurafrican\r\neurasia\r\neurasian\r\neurasiatic\r\neureka\r\neurhythmics\r\neurhythmy\r\neuripides\r\neuro\r\neurobabble\r\neurocentric\r\neurocentrism\r\neurocurrency\r\neurodollar\r\neuronithopod\r\neuronithopoda\r\neuropa\r\neuropan\r\neurope\r\neuropean\r\neuropeanisation\r\neuropeanise\r\neuropeanization\r\neuropeanize\r\neuropium\r\neuropocentric\r\neuropol\r\neurotiales\r\neurotium\r\neuryale\r\neuryalida\r\neurydice\r\neurylaimi\r\neurylaimidae\r\neurypterid\r\neurypterida\r\neurythmics\r\neurythmy\r\neusebius\r\neusporangiate\r\neusporangium\r\neustachio\r\neustoma\r\neutamias\r\neutectic\r\neuterpe\r\neuthanasia\r\neuthenics\r\neutheria\r\neutherian\r\neuthynnus\r\neutrophic\r\neutrophication\r\nev\r\nevacuant\r\nevacuate\r\nevacuated\r\nevacuation\r\nevacuee\r\nevade\r\nevaluate\r\nevaluation\r\nevaluative\r\nevaluator\r\nevanesce\r\nevanescence\r\nevanescent\r\nevangel\r\nevangelical\r\nevangelicalism\r\nevangelise\r\nevangelism\r\nevangelist\r\nevangelistic\r\nevangelize\r\nevans\r\nevansville\r\nevaporable\r\nevaporate\r\nevaporated\r\nevaporation\r\nevaporative\r\nevaporite\r\nevaporometer\r\nevasion\r\nevasive\r\nevasiveness\r\neve\r\neven\r\neven-pinnate\r\neven-tempered\r\neven-textured\r\neven-toed\r\nevenfall\r\nevenhanded\r\nevenhandedly\r\nevening\r\nevening-snow\r\neveningwear\r\nevenk\r\nevenki\r\nevenly\r\nevenness\r\nevensong\r\nevent\r\neventful\r\neventide\r\neventration\r\neventual\r\neventuality\r\neventually\r\neventuate\r\never\r\never-changing\r\never-present\r\neverest\r\neverglades\r\nevergreen\r\neverlasting\r\neverlastingly\r\neverlastingness\r\nevermore\r\nevernia\r\nevers\r\neversion\r\nevert\r\neverting\r\nevery\r\neveryday\r\neverydayness\r\neveryman\r\neveryplace\r\neverywhere\r\nevict\r\neviction\r\nevidence\r\nevidenced\r\nevident\r\nevidential\r\nevidentiary\r\nevidently\r\nevil\r\nevil-looking\r\nevil-minded\r\nevildoer\r\nevildoing\r\nevilly\r\nevilness\r\nevince\r\neviscerate\r\nevisceration\r\nevitable\r\nevocation\r\nevocative\r\nevoke\r\nevoked\r\nevolution\r\nevolutionary\r\nevolutionism\r\nevolutionist\r\nevolve\r\new\r\newe\r\newenki\r\newer\r\nex\r\nex-directory\r\nex-gambler\r\nex-husband\r\nex-mayor\r\nex-president\r\nex-serviceman\r\nex-spouse\r\nexacerbate\r\nexacerbating\r\nexacerbation\r\nexact\r\nexacta\r\nexacting\r\nexaction\r\nexactitude\r\nexactly\r\nexactness\r\nexacum\r\nexaeretodon\r\nexaggerate\r\nexaggerated\r\nexaggeratedly\r\nexaggeration\r\nexalt\r\nexaltation\r\nexalted\r\nexalting\r\nexam\r\nexamen\r\nexamination\r\nexamine\r\nexaminee\r\nexaminer\r\nexample\r\nexanimate\r\nexanthem\r\nexanthema\r\nexarch\r\nexarchate\r\nexasperate\r\nexasperated\r\nexasperating\r\nexasperation\r\nexaugural\r\nexboyfriend\r\nexcalibur\r\nexcavate\r\nexcavation\r\nexcavator\r\nexceed\r\nexceedance\r\nexceeding\r\nexceedingly\r\nexcel\r\nexcellence\r\nexcellency\r\nexcellent\r\nexcelsior\r\nexcept\r\nexception\r\nexceptionable\r\nexceptional\r\nexcerpt\r\nexcerption\r\nexcess\r\nexcessive\r\nexcessively\r\nexcessiveness\r\nexchange\r\nexchangeability\r\nexchangeable\r\nexchanged\r\nexchanger\r\nexchequer\r\nexcise\r\nexciseman\r\nexcision\r\nexcitability\r\nexcitable\r\nexcitableness\r\nexcitant\r\nexcitation\r\nexcitative\r\nexcitatory\r\nexcite\r\nexcited\r\nexcitedly\r\nexcitement\r\nexciting\r\nexcitingly\r\nexclaim\r\nexclaiming\r\nexclamation\r\nexclamatory\r\nexclude\r\nexclusion\r\nexclusive\r\nexclusively\r\nexclusiveness\r\nexcogitate\r\nexcogitation\r\nexcogitative\r\nexcogitator\r\nexcommunicate\r\nexcommunication\r\nexcoriate\r\nexcoriation\r\nexcrement\r\nexcrescence\r\nexcrescent\r\nexcreta\r\nexcrete\r\nexcreting\r\nexcretion\r\nexcretory\r\nexcruciate\r\nexcruciating\r\nexcruciatingly\r\nexcruciation\r\nexculpate\r\nexculpated\r\nexculpation\r\nexculpatory\r\nexcursion\r\nexcursionist\r\nexcursive\r\nexcursus\r\nexcusable\r\nexcusably\r\nexcusatory\r\nexcuse\r\nexcused\r\nexcuser\r\nexec\r\nexecrable\r\nexecrate\r\nexecration\r\nexecutability\r\nexecutable\r\nexecutant\r\nexecute\r\nexecuted\r\nexecuting\r\nexecution\r\nexecutioner\r\nexecutive\r\nexecutor\r\nexecutrix\r\nexegesis\r\nexegete\r\nexegetic\r\nexegetical\r\nexemplar\r\nexemplary\r\nexemplification\r\nexemplify\r\nexemplifying\r\nexempt\r\nexemption\r\nexenterate\r\nexenteration\r\nexercise\r\nexerciser\r\nexercising\r\nexercycle\r\nexert\r\nexertion\r\nexfoliate\r\nexfoliation\r\nexhalation\r\nexhale\r\nexhaust\r\nexhausted\r\nexhaustible\r\nexhausting\r\nexhaustion\r\nexhaustive\r\nexhaustively\r\nexhibit\r\nexhibition\r\nexhibitioner\r\nexhibitionism\r\nexhibitionist\r\nexhibitionistic\r\nexhibitor\r\nexhilarate\r\nexhilarated\r\nexhilarating\r\nexhilaration\r\nexhort\r\nexhortation\r\nexhortative\r\nexhortatory\r\nexhumation\r\nexhume\r\nexigency\r\nexigent\r\nexiguity\r\nexiguous\r\nexile\r\nexilic\r\nexist\r\nexistence\r\nexistent\r\nexistential\r\nexistentialism\r\nexistentialist\r\nexisting\r\nexit\r\nexmoor\r\nexobiology\r\nexocarp\r\nexocentric\r\nexocet\r\nexocoetidae\r\nexocrine\r\nexocycloida\r\nexode\r\nexoderm\r\nexodontia\r\nexodontic\r\nexodontics\r\nexodontist\r\nexodus\r\nexoergic\r\nexogamic\r\nexogamous\r\nexogamy\r\nexogen\r\nexogenic\r\nexogenous\r\nexomphalos\r\nexon\r\nexonerate\r\nexonerated\r\nexoneration\r\nexonerative\r\nexonuclease\r\nexophthalmos\r\nexopterygota\r\nexorbitance\r\nexorbitant\r\nexorbitantly\r\nexorcise\r\nexorciser\r\nexorcism\r\nexorcist\r\nexorcize\r\nexordium\r\nexoskeleton\r\nexosphere\r\nexostosis\r\nexoteric\r\nexotherm\r\nexothermal\r\nexothermic\r\nexotic\r\nexoticism\r\nexoticness\r\nexotism\r\nexotoxin\r\nexotropia\r\nexpand\r\nexpandable\r\nexpanded\r\nexpandible\r\nexpanse\r\nexpansible\r\nexpansile\r\nexpansion\r\nexpansionism\r\nexpansionist\r\nexpansive\r\nexpansively\r\nexpansiveness\r\nexpansivity\r\nexpatiate\r\nexpatiation\r\nexpatriate\r\nexpatriation\r\nexpect\r\nexpectable\r\nexpectancy\r\nexpectant\r\nexpectation\r\nexpected\r\nexpectedness\r\nexpectorant\r\nexpectorate\r\nexpectoration\r\nexpectorator\r\nexpedience\r\nexpediency\r\nexpedient\r\nexpediently\r\nexpedite\r\nexpedited\r\nexpedition\r\nexpeditionary\r\nexpeditious\r\nexpeditiously\r\nexpeditiousness\r\nexpel\r\nexpelling\r\nexpend\r\nexpendable\r\nexpended\r\nexpender\r\nexpending\r\nexpenditure\r\nexpense\r\nexpensive\r\nexpensively\r\nexpensiveness\r\nexperience\r\nexperienced\r\nexperient\r\nexperiential\r\nexperiment\r\nexperimental\r\nexperimentalism\r\nexperimentally\r\nexperimentation\r\nexperimenter\r\nexpert\r\nexpertise\r\nexpertly\r\nexpertness\r\nexpiable\r\nexpiate\r\nexpiation\r\nexpiative\r\nexpiatory\r\nexpiration\r\nexpiratory\r\nexpire\r\nexpired\r\nexpiry\r\nexplain\r\nexplainable\r\nexplanandum\r\nexplanans\r\nexplanation\r\nexplanatory\r\nexpletive\r\nexplicable\r\nexplicandum\r\nexplicate\r\nexplication\r\nexplicit\r\nexplicitly\r\nexplicitness\r\nexplode\r\nexploded\r\nexploding\r\nexploit\r\nexploitation\r\nexploitative\r\nexploitatory\r\nexploited\r\nexploiter\r\nexploitive\r\nexploration\r\nexplorative\r\nexploratory\r\nexplore\r\nexplorer\r\nexplosion\r\nexplosive\r\nexpo\r\nexponent\r\nexponential\r\nexponentiation\r\nexport\r\nexportable\r\nexportation\r\nexporter\r\nexporting\r\nexpose\r\nexposed\r\nexposit\r\nexposition\r\nexpositive\r\nexpositor\r\nexpository\r\nexpostulate\r\nexpostulation\r\nexposure\r\nexpound\r\nexpounder\r\nexpounding\r\nexpress\r\nexpress-mail\r\nexpressage\r\nexpressed\r\nexpressible\r\nexpression\r\nexpressionism\r\nexpressionist\r\nexpressionistic\r\nexpressionless\r\nexpressive\r\nexpressively\r\nexpressiveness\r\nexpressly\r\nexpressway\r\nexpropriate\r\nexpropriated\r\nexpropriation\r\nexpulsion\r\nexpunction\r\nexpunge\r\nexpunging\r\nexpurgate\r\nexpurgated\r\nexpurgation\r\nexpurgator\r\nexquisite\r\nexquisitely\r\nexquisiteness\r\nexsanguine\r\nexsanguinous\r\nexsert\r\nexsiccate\r\nextant\r\nextemporaneous\r\nextemporaneously\r\nextemporarily\r\nextemporary\r\nextempore\r\nextemporisation\r\nextemporise\r\nextemporization\r\nextemporize\r\nextend\r\nextendable\r\nextended\r\nextendible\r\nextensible\r\nextensile\r\nextension\r\nextensional\r\nextensive\r\nextensiveness\r\nextensor\r\nextent\r\nextenuate\r\nextenuating\r\nextenuation\r\nexterior\r\nexteriorisation\r\nexteriorise\r\nexteriorization\r\nexteriorize\r\nexterminable\r\nexterminate\r\nexterminated\r\nextermination\r\nexterminator\r\nextern\r\nexternal\r\nexternalisation\r\nexternalise\r\nexternality\r\nexternalization\r\nexternalize\r\nexternally\r\nexteroception\r\nexteroceptive\r\nexteroceptor\r\nexterritorial\r\nextinct\r\nextinction\r\nextinguish\r\nextinguishable\r\nextinguished\r\nextinguisher\r\nextinguishing\r\nextirpable\r\nextirpate\r\nextirpation\r\nextol\r\nextoller\r\nextolment\r\nextort\r\nextortion\r\nextortionate\r\nextortionately\r\nextortioner\r\nextortionist\r\nextra\r\nextracellular\r\nextract\r\nextractable\r\nextractible\r\nextraction\r\nextractor\r\nextracurricular\r\nextradite\r\nextradition\r\nextrados\r\nextradural\r\nextragalactic\r\nextrajudicial\r\nextralegal\r\nextralinguistic\r\nextramarital\r\nextramural\r\nextraneous\r\nextraneousness\r\nextraordinarily\r\nextraordinariness\r\nextraordinary\r\nextraorinaire\r\nextrapolate\r\nextrapolation\r\nextrasensory\r\nextrasystole\r\nextrasystolic\r\nextraterrestrial\r\nextraterritorial\r\nextravagance\r\nextravagancy\r\nextravagant\r\nextravagantly\r\nextravaganza\r\nextravasate\r\nextravasation\r\nextraversion\r\nextraversive\r\nextravert\r\nextraverted\r\nextravertive\r\nextreme\r\nextremely\r\nextremeness\r\nextremism\r\nextremist\r\nextremity\r\nextremum\r\nextricable\r\nextricate\r\nextricated\r\nextrication\r\nextrinsic\r\nextropic\r\nextropy\r\nextrospective\r\nextroversion\r\nextroversive\r\nextrovert\r\nextroverted\r\nextrovertish\r\nextrovertive\r\nextrude\r\nextrusion\r\nextrusive\r\nexuberance\r\nexuberant\r\nexuberantly\r\nexuberate\r\nexudate\r\nexudation\r\nexude\r\nexult\r\nexultant\r\nexultantly\r\nexultation\r\nexulting\r\nexultingly\r\nexurbia\r\nexuviae\r\nexuvial\r\nexuviate\r\nexwife\r\neyas\r\neyck\r\neye\r\neye-beaming\r\neye-catcher\r\neye-catching\r\neye-deceiving\r\neye-drop\r\neye-lotion\r\neye-popping\r\neyeball\r\neyebath\r\neyebrow\r\neyecup\r\neyed\r\neyedness\r\neyedrop\r\neyeful\r\neyeglass\r\neyeglasses\r\neyehole\r\neyeish\r\neyelash\r\neyeless\r\neyelessness\r\neyelet\r\neyelid\r\neyelike\r\neyeliner\r\neyepatch\r\neyepiece\r\neyes\r\neyes-only\r\neyeshade\r\neyeshadow\r\neyeshot\r\neyesight\r\neyesore\r\neyespot\r\neyestrain\r\neyetooth\r\neyewash\r\neyewitness\r\neyra\r\neyre\r\neyrie\r\neyrir\r\neyry\r\neysenck\r\nezechiel\r\nezed\r\nezekias\r\nezekiel\r\nezo\r\nezo-yama-hagi\r\nezra\r\nf\r\nf.i.s.c.\r\nfa\r\nfaa\r\nfab\r\nfabaceae\r\nfaberge\r\nfabian\r\nfabiana\r\nfabianism\r\nfable\r\nfabled\r\nfabric\r\nfabricate\r\nfabricated\r\nfabrication\r\nfabricator\r\nfabulist\r\nfabulous\r\nfabulously\r\nfacade\r\nface\r\nface-harden\r\nface-lift\r\nface-off\r\nface-saving\r\nface-to-face\r\nfaced\r\nfaceless\r\nfacelift\r\nfaceplate\r\nfacer\r\nfacet\r\nfaceted\r\nfacetious\r\nfacetiously\r\nfacetiousness\r\nfacia\r\nfacial\r\nfacile\r\nfacilitate\r\nfacilitated\r\nfacilitation\r\nfacilitative\r\nfacilitator\r\nfacilitatory\r\nfacility\r\nfacing\r\nfacsimile\r\nfact\r\nfact-finding\r\nfaction\r\nfactious\r\nfactitious\r\nfactoid\r\nfactor\r\nfactorial\r\nfactoring\r\nfactorisation\r\nfactorise\r\nfactorization\r\nfactorize\r\nfactory\r\nfactory-made\r\nfactotum\r\nfactual\r\nfactuality\r\nfactualness\r\nfacula\r\nfacultative\r\nfaculty\r\nfad\r\nfaddily\r\nfaddish\r\nfaddishly\r\nfaddist\r\nfaddy\r\nfade\r\nfaded\r\nfadeout\r\nfading\r\nfado\r\nfae\r\nfaecal\r\nfaecalith\r\nfaeces\r\nfaerie\r\nfaeroes\r\nfaeroese\r\nfaery\r\nfafnir\r\nfag\r\nfagaceae\r\nfagales\r\nfagged\r\nfaggot\r\nfaggpting\r\nfagin\r\nfagopyrum\r\nfagot\r\nfagoting\r\nfagus\r\nfahd\r\nfahrenheit\r\nfaience\r\nfail\r\nfail-safe\r\nfailed\r\nfailing\r\nfaille\r\nfailure\r\nfain\r\nfaineance\r\nfaineant\r\nfaint\r\nfaint-hearted\r\nfainthearted\r\nfaintheartedness\r\nfaintness\r\nfair\r\nfair-and-square\r\nfair-haired\r\nfair-maids-of-france\r\nfair-minded\r\nfair-mindedness\r\nfairbanks\r\nfairground\r\nfairish\r\nfairlead\r\nfairly\r\nfairness\r\nfairway\r\nfairy\r\nfairy-slipper\r\nfairyland\r\nfairytale\r\nfaisal\r\nfaisalabad\r\nfaith\r\nfaithful\r\nfaithfully\r\nfaithfulness\r\nfaithless\r\nfaithlessly\r\nfaithlessness\r\nfake\r\nfakeer\r\nfaker\r\nfakery\r\nfakir\r\nfalafel\r\nfalanga\r\nfalange\r\nfalangist\r\nfalcate\r\nfalcatifolium\r\nfalchion\r\nfalciform\r\nfalco\r\nfalcon\r\nfalcon-gentil\r\nfalcon-gentle\r\nfalconer\r\nfalconidae\r\nfalconiformes\r\nfalconine\r\nfalconry\r\nfalderol\r\nfalkner\r\nfall\r\nfall-blooming\r\nfall-board\r\nfall-flowering\r\nfalla\r\nfallacious\r\nfallaciousness\r\nfallacy\r\nfallal\r\nfallback\r\nfallboard\r\nfallen\r\nfaller\r\nfallibility\r\nfallible\r\nfalling\r\nfalloff\r\nfallopio\r\nfallopius\r\nfallot\r\nfallout\r\nfallow\r\nfalls\r\nfalse\r\nfalsehood\r\nfalsely\r\nfalseness\r\nfalsetto\r\nfalsie\r\nfalsifiable\r\nfalsification\r\nfalsifier\r\nfalsify\r\nfalsifying\r\nfalsity\r\nfalstaff\r\nfalstaffian\r\nfalter\r\nfaltering\r\nfalteringly\r\nfame\r\nfamed\r\nfamilial\r\nfamiliar\r\nfamiliarisation\r\nfamiliarise\r\nfamiliarised\r\nfamiliarising\r\nfamiliarity\r\nfamiliarization\r\nfamiliarize\r\nfamiliarized\r\nfamiliarizing\r\nfamily\r\nfamine\r\nfamish\r\nfamished\r\nfamishment\r\nfamotidine\r\nfamous\r\nfamously\r\nfamulus\r\nfan\r\nfan-jet\r\nfan-leafed\r\nfan-leaved\r\nfan-shaped\r\nfanaloka\r\nfanatic\r\nfanatical\r\nfanaticism\r\nfanatism\r\nfancied\r\nfancier\r\nfanciful\r\nfancifully\r\nfancify\r\nfancy\r\nfancy-free\r\nfancywork\r\nfandango\r\nfandom\r\nfanfare\r\nfang\r\nfang-like\r\nfanged\r\nfanion\r\nfanjet\r\nfanlight\r\nfanlike\r\nfanned\r\nfanny\r\nfantabulous\r\nfantail\r\nfantan\r\nfantasia\r\nfantasise\r\nfantasist\r\nfantasize\r\nfantasm\r\nfantast\r\nfantastic\r\nfantastical\r\nfantastically\r\nfantasy\r\nfantods\r\nfanweed\r\nfanwort\r\nfao\r\nfaq\r\nfaqir\r\nfaquir\r\nfar\r\nfar-famed\r\nfar-flung\r\nfar-off\r\nfar-out\r\nfar-right\r\nfarad\r\nfaraday\r\nfarandole\r\nfaraway\r\nfarawayness\r\nfarc\r\nfarce\r\nfarcical\r\nfardel\r\nfare\r\nfare-stage\r\nfare-thee-well\r\nfarewell\r\nfarfalle\r\nfarfetched\r\nfargo\r\nfarina\r\nfarinaceous\r\nfarkleberry\r\nfarm\r\nfarm-place\r\nfarmer\r\nfarmerette\r\nfarmhand\r\nfarmhouse\r\nfarming\r\nfarmington\r\nfarmland\r\nfarmplace\r\nfarmstead\r\nfarmyard\r\nfarness\r\nfaro\r\nfaroes\r\nfaroese\r\nfarrago\r\nfarragut\r\nfarrell\r\nfarrier\r\nfarrow\r\nfarrowing\r\nfarseeing\r\nfarsi\r\nfarsighted\r\nfarsightedness\r\nfart\r\nfarther\r\nfarthermost\r\nfarthest\r\nfarthing\r\nfarthingale\r\nfarting\r\nfartlek\r\nfasces\r\nfascia\r\nfascicle\r\nfasciculation\r\nfascicule\r\nfasciculus\r\nfascinate\r\nfascinated\r\nfascinating\r\nfascination\r\nfasciola\r\nfascioliasis\r\nfasciolidae\r\nfasciolopsiasis\r\nfasciolopsis\r\nfasciolosis\r\nfascism\r\nfascist\r\nfascista\r\nfascistic\r\nfashion\r\nfashionable\r\nfashionably\r\nfashioned\r\nfashioning\r\nfashionmonger\r\nfast\r\nfast-breaking\r\nfast-flying\r\nfast-footed\r\nfast-growing\r\nfast-paced\r\nfastball\r\nfasten\r\nfastened\r\nfastener\r\nfastening\r\nfaster\r\nfastest\r\nfastidious\r\nfastidiously\r\nfastidiousness\r\nfastigiate\r\nfasting\r\nfastnacht\r\nfastness\r\nfat\r\nfat-free\r\nfat-soluble\r\nfatah\r\nfatah-rc\r\nfatal\r\nfatalism\r\nfatalist\r\nfatalistic\r\nfatality\r\nfatback\r\nfate\r\nfated\r\nfateful\r\nfates\r\nfathead\r\nfatheaded\r\nfather\r\nfather-figure\r\nfather-god\r\nfather-in-law\r\nfatherhood\r\nfatherland\r\nfatherless\r\nfatherlike\r\nfatherliness\r\nfatherly\r\nfathom\r\nfathomable\r\nfathometer\r\nfatigability\r\nfatigue\r\nfatigued\r\nfatigues\r\nfatiha\r\nfatihah\r\nfatima\r\nfatimah\r\nfatism\r\nfatless\r\nfatness\r\nfatso\r\nfatten\r\nfattened\r\nfattening\r\nfattiness\r\nfattish\r\nfattism\r\nfatty\r\nfatuity\r\nfatuous\r\nfatuously\r\nfatuousness\r\nfatwa\r\nfatwah\r\nfaubourg\r\nfaucal\r\nfauces\r\nfaucet\r\nfauld\r\nfaulkner\r\nfault\r\nfaultfinder\r\nfaultfinding\r\nfaultiness\r\nfaulting\r\nfaultless\r\nfaultlessness\r\nfaulty\r\nfaun\r\nfauna\r\nfauntleroy\r\nfaunus\r\nfaust\r\nfaustian\r\nfaustus\r\nfauteuil\r\nfauve\r\nfauvism\r\nfauvist\r\nfaux\r\nfaveolate\r\nfavism\r\nfavor\r\nfavorable\r\nfavorableness\r\nfavorably\r\nfavored\r\nfavoring\r\nfavorite\r\nfavoritism\r\nfavour\r\nfavourable\r\nfavourableness\r\nfavourably\r\nfavourite\r\nfavouritism\r\nfavus\r\nfawkes\r\nfawn\r\nfawn-colored\r\nfawn-coloured\r\nfawner\r\nfawning\r\nfax\r\nfay\r\nfayetteville\r\nfaze\r\nfazed\r\nfbi\r\nfcc\r\nfcs\r\nfda\r\nfdic\r\nfdr\r\nfe\r\nfealty\r\nfear\r\nfearful\r\nfearfully\r\nfearfulness\r\nfearless\r\nfearlessly\r\nfearlessness\r\nfearsome\r\nfeasibility\r\nfeasible\r\nfeasibleness\r\nfeasibly\r\nfeast\r\nfeasting\r\nfeat\r\nfeather\r\nfeather-foil\r\nfeatherbed\r\nfeatherbedding\r\nfeatherbrained\r\nfeathered\r\nfeatheredge\r\nfeatheredged\r\nfeatherfoil\r\nfeatheriness\r\nfeathering\r\nfeatherless\r\nfeatherlike\r\nfeathertop\r\nfeatherweight\r\nfeathery\r\nfeature\r\nfeatured\r\nfeatureless\r\nfeb\r\nfebricity\r\nfebrifuge\r\nfebrile\r\nfebrility\r\nfebruary\r\nfecal\r\nfecalith\r\nfeces\r\nfechner\r\nfeckless\r\nfecklessly\r\nfecklessness\r\nfecula\r\nfeculence\r\nfeculent\r\nfecund\r\nfecundate\r\nfecundation\r\nfecundity\r\nfed\r\nfedayeen\r\nfedelline\r\nfederal\r\nfederalisation\r\nfederalise\r\nfederalism\r\nfederalist\r\nfederalization\r\nfederalize\r\nfederate\r\nfederated\r\nfederation\r\nfederita\r\nfedora\r\nfee\r\nfee-tail\r\nfeeble\r\nfeebleminded\r\nfeeblemindedness\r\nfeebleness\r\nfeed\r\nfeedback\r\nfeedbag\r\nfeeder\r\nfeeding\r\nfeedlot\r\nfeedstock\r\nfeel\r\nfeeler\r\nfeeling\r\nfeelingly\r\nfeelings\r\nfeifer\r\nfeign\r\nfeigned\r\nfeigning\r\nfeijoa\r\nfeint\r\nfeist\r\nfeisty\r\nfelafel\r\nfeldene\r\nfeldspar\r\nfelicia\r\nfelicitate\r\nfelicitation\r\nfelicitous\r\nfelicitously\r\nfelicitousness\r\nfelicity\r\nfelid\r\nfelidae\r\nfeline\r\nfelis\r\nfell\r\nfella\r\nfellah\r\nfellata\r\nfellate\r\nfellatio\r\nfellation\r\nfeller\r\nfellini\r\nfelloe\r\nfellow\r\nfellowship\r\nfelly\r\nfelo-de-se\r\nfelon\r\nfelonious\r\nfelony\r\nfelspar\r\nfelt\r\nfelted\r\nfelucca\r\nfelwort\r\nfema\r\nfemale\r\nfemaleness\r\nfeminine\r\nfeminineness\r\nfemininity\r\nfeminisation\r\nfeminise\r\nfeminism\r\nfeminist\r\nfeminization\r\nfeminize\r\nfemoral\r\nfemoris\r\nfemtochemistry\r\nfemtometer\r\nfemtometre\r\nfemtosecond\r\nfemtovolt\r\nfemur\r\nfen\r\nfence\r\nfence-sitter\r\nfenced\r\nfencelike\r\nfencer\r\nfencesitter\r\nfencing\r\nfend\r\nfender\r\nfender-bender\r\nfenestella\r\nfenestra\r\nfenestral\r\nfenestration\r\nfengtien\r\nfenland\r\nfennel\r\nfennic\r\nfenoprofen\r\nfenrir\r\nfentanyl\r\nfenugreek\r\nfenusa\r\nfeoff\r\nfeosol\r\nfer-de-lance\r\nferal\r\nferber\r\nferdinand\r\nfergon\r\nfergusonite\r\nferia\r\nferial\r\nferine\r\nfermat\r\nferment\r\nfermentable\r\nfermentation\r\nfermenting\r\nfermentologist\r\nfermi\r\nfermion\r\nfermium\r\nfern\r\nferned\r\nfernless\r\nfernlike\r\nferny\r\nferocactus\r\nferocious\r\nferociously\r\nferociousness\r\nferocity\r\nferrara\r\nferret\r\nferret-like\r\nferret-sized\r\nferric\r\nferricyanide\r\nferrimagnetism\r\nferrite\r\nferritin\r\nferrocerium\r\nferroconcrete\r\nferrocyanide\r\nferromagnetic\r\nferromagnetism\r\nferrous\r\nferrule\r\nferry\r\nferryboat\r\nferrying\r\nferryman\r\nfertile\r\nfertilisation\r\nfertilise\r\nfertiliser\r\nfertility\r\nfertilizable\r\nfertilization\r\nfertilize\r\nfertilizer\r\nferule\r\nfervency\r\nfervent\r\nfervently\r\nfervid\r\nfervidly\r\nfervidness\r\nfervor\r\nfervour\r\nfes\r\nfescue\r\nfess\r\nfesse\r\nfestal\r\nfester\r\nfestering\r\nfestinate\r\nfestination\r\nfestival\r\nfestive\r\nfestivity\r\nfestoon\r\nfestoonery\r\nfestuca\r\nfet\r\nfetal\r\nfetch\r\nfetching\r\nfete\r\nfeterita\r\nfetich\r\nfetichism\r\nfeticide\r\nfetid\r\nfetidness\r\nfetish\r\nfetishism\r\nfetishist\r\nfetishize\r\nfetlock\r\nfetology\r\nfetometry\r\nfetoprotein\r\nfetor\r\nfetoscope\r\nfetoscopy\r\nfetter\r\nfetterbush\r\nfettered\r\nfettle\r\nfettuccine\r\nfettuccini\r\nfetus\r\nfeud\r\nfeudal\r\nfeudalism\r\nfeudalistic\r\nfeudalize\r\nfeudatory\r\nfever\r\nfevered\r\nfeverfew\r\nfeverish\r\nfeverishness\r\nfeverous\r\nfeverroot\r\nfew\r\nfewer\r\nfewest\r\nfewness\r\nfey\r\nfeynman\r\nfez\r\nfha\r\nfhlmc\r\nfiance\r\nfiancee\r\nfiasco\r\nfiat\r\nfib\r\nfibber\r\nfibbing\r\nfiber\r\nfiber-optic\r\nfiberboard\r\nfiberglass\r\nfiberoptic\r\nfiberoptics\r\nfiberscope\r\nfibre\r\nfibre-optic\r\nfibreboard\r\nfibreglass\r\nfibreoptic\r\nfibreoptics\r\nfibril\r\nfibrillate\r\nfibrillation\r\nfibrillose\r\nfibrin\r\nfibrinase\r\nfibrinogen\r\nfibrinolysin\r\nfibrinolysis\r\nfibrinopeptide\r\nfibrinous\r\nfibroadenoma\r\nfibroblast\r\nfibrocartilage\r\nfibrocartilaginous\r\nfibroid\r\nfibroma\r\nfibromyositis\r\nfibrosis\r\nfibrositis\r\nfibrosity\r\nfibrous\r\nfibrousness\r\nfibula\r\nfica\r\nfice\r\nfichu\r\nfickle\r\nfickleness\r\nfictile\r\nfiction\r\nfictional\r\nfictionalisation\r\nfictionalise\r\nfictionalization\r\nfictionalize\r\nfictitious\r\nfictive\r\nficus\r\nfiddle\r\nfiddle-faddle\r\nfiddle-shaped\r\nfiddlehead\r\nfiddleneck\r\nfiddler\r\nfiddlestick\r\nfiddling\r\nfidelity\r\nfidget\r\nfidgetiness\r\nfidgety\r\nfiducial\r\nfiduciary\r\nfiedler\r\nfief\r\nfiefdom\r\nfield\r\nfield-crop\r\nfield-test\r\nfielder\r\nfieldfare\r\nfieldhand\r\nfielding\r\nfieldmouse\r\nfields\r\nfieldsman\r\nfieldstone\r\nfieldwork\r\nfieldworker\r\nfiend\r\nfiendish\r\nfiendishly\r\nfierce\r\nfiercely\r\nfierceness\r\nfierily\r\nfieriness\r\nfiery\r\nfiesta\r\nfife\r\nfifo\r\nfifteen\r\nfifteenth\r\nfifth\r\nfifties\r\nfiftieth\r\nfifty\r\nfifty-eight\r\nfifty-fifth\r\nfifty-fifty\r\nfifty-five\r\nfifty-four\r\nfifty-nine\r\nfifty-one\r\nfifty-seven\r\nfifty-six\r\nfifty-three\r\nfifty-two\r\nfig\r\nfig-bird\r\nfig-shaped\r\nfigeater\r\nfight\r\nfighter\r\nfighting\r\nfigment\r\nfigural\r\nfiguration\r\nfigurative\r\nfiguratively\r\nfigure\r\nfigured\r\nfigurehead\r\nfigurer\r\nfigurine\r\nfiguring\r\nfigwort\r\nfiji\r\nfijian\r\nfijis\r\nfilaggrin\r\nfilago\r\nfilagree\r\nfilament\r\nfilamentlike\r\nfilamentous\r\nfilar\r\nfilaree\r\nfilaria\r\nfilarial\r\nfilariasis\r\nfilariid\r\nfilariidae\r\nfilature\r\nfilbert\r\nfilch\r\nfile\r\nfile-like\r\nfilefish\r\nfilename\r\nfiler\r\nfilet\r\nfilial\r\nfiliate\r\nfiliation\r\nfilibuster\r\nfilibusterer\r\nfilicales\r\nfilicide\r\nfilicinae\r\nfilicopsida\r\nfiliform\r\nfiligree\r\nfiling\r\nfilipino\r\nfill\r\nfill-in\r\nfillagree\r\nfille\r\nfilled\r\nfiller\r\nfillet\r\nfilling\r\nfillip\r\nfillmore\r\nfilly\r\nfilm\r\nfilm-make\r\nfilmable\r\nfilmed\r\nfilming\r\nfilmmaker\r\nfilmy\r\nfiloviridae\r\nfilovirus\r\nfils\r\nfilter\r\nfilter-tipped\r\nfilth\r\nfilthily\r\nfilthiness\r\nfilthy\r\nfiltrate\r\nfiltration\r\nfilum\r\nfimbria\r\nfimbriate\r\nfin\r\nfinable\r\nfinagle\r\nfinagler\r\nfinal\r\nfinale\r\nfinalisation\r\nfinalise\r\nfinalist\r\nfinality\r\nfinalization\r\nfinalize\r\nfinally\r\nfinance\r\nfinanced\r\nfinances\r\nfinancial\r\nfinancier\r\nfinancing\r\nfinback\r\nfincen\r\nfinch\r\nfinch-like\r\nfind\r\nfinder\r\nfinding\r\nfindings\r\nfine\r\nfine-grained\r\nfine-leafed\r\nfine-leaved\r\nfine-looking\r\nfine-textured\r\nfine-tooth\r\nfine-toothed\r\nfine-tune\r\nfineable\r\nfined\r\nfinedraw\r\nfinely\r\nfineness\r\nfiner\r\nfinery\r\nfinespun\r\nfinesse\r\nfinger\r\nfinger-flower\r\nfinger-paint\r\nfinger-painting\r\nfinger-pointing\r\nfinger-roll\r\nfinger-root\r\nfinger-spell\r\nfingerboard\r\nfingerbreadth\r\nfingered\r\nfingerflower\r\nfingering\r\nfingerless\r\nfingerlike\r\nfingerling\r\nfingermark\r\nfingernail\r\nfingerpaint\r\nfingerpointing\r\nfingerpost\r\nfingerprint\r\nfingerprinting\r\nfingerroot\r\nfingerspell\r\nfingerspelling\r\nfingerstall\r\nfingertip\r\nfinial\r\nfinical\r\nfinicky\r\nfinis\r\nfinish\r\nfinished\r\nfinisher\r\nfinishing\r\nfinite\r\nfinitely\r\nfiniteness\r\nfinitude\r\nfink\r\nfinland\r\nfinn\r\nfinnan\r\nfinnbogadottir\r\nfinnic\r\nfinnish\r\nfinno-ugrian\r\nfinno-ugric\r\nfinno-ugric-speaking\r\nfinocchio\r\nfiord\r\nfipple\r\nfir\r\nfire\r\nfire-bush\r\nfire-eater\r\nfire-on-the-mountain\r\nfire-raising\r\nfire-resistant\r\nfire-resisting\r\nfire-resistive\r\nfire-retardant\r\nfire-swallower\r\nfire-wheel\r\nfire-worship\r\nfirearm\r\nfireball\r\nfirebase\r\nfirebird\r\nfireboat\r\nfirebomb\r\nfirebox\r\nfirebrand\r\nfirebrat\r\nfirebreak\r\nfirebrick\r\nfirebug\r\nfireclay\r\nfirecracker\r\nfired\r\nfiredamp\r\nfiredog\r\nfiredrake\r\nfirefighter\r\nfirefly\r\nfireguard\r\nfirehouse\r\nfirelight\r\nfirelighter\r\nfirelock\r\nfireman\r\nfirenze\r\nfireplace\r\nfireplug\r\nfirepower\r\nfireproof\r\nfireroom\r\nfireside\r\nfirestone\r\nfirestorm\r\nfirethorn\r\nfiretrap\r\nfirewall\r\nfirewater\r\nfireweed\r\nfirewood\r\nfirework\r\nfiring\r\nfirkin\r\nfirm\r\nfirmament\r\nfirmamental\r\nfirmiana\r\nfirmly\r\nfirmness\r\nfirmware\r\nfirst\r\nfirst-class\r\nfirst-come-first-serve\r\nfirst-nighter\r\nfirst-rate\r\nfirst-rater\r\nfirst-string\r\nfirst-year\r\nfirstborn\r\nfirsthand\r\nfirstly\r\nfirth\r\nfisa\r\nfisc\r\nfiscal\r\nfiscally\r\nfischer\r\nfish\r\nfish-fly\r\nfish-like\r\nfish-worship\r\nfishbone\r\nfishbowl\r\nfisher\r\nfisherman\r\nfishery\r\nfisheye\r\nfishgig\r\nfishhook\r\nfishily\r\nfishing\r\nfishlike\r\nfishmonger\r\nfishnet\r\nfishpaste\r\nfishplate\r\nfishpond\r\nfishtail\r\nfishwife\r\nfishworm\r\nfishy\r\nfissile\r\nfission\r\nfissionable\r\nfissiparity\r\nfissiparous\r\nfissiped\r\nfissipedia\r\nfissure\r\nfissurella\r\nfissurellidae\r\nfist\r\nfistfight\r\nfistful\r\nfisticuffs\r\nfistmele\r\nfistula\r\nfistular\r\nfistularia\r\nfistulariidae\r\nfistulate\r\nfistulina\r\nfistulinaceae\r\nfistulous\r\nfit\r\nfitch\r\nfitful\r\nfitfulness\r\nfitly\r\nfitment\r\nfitness\r\nfitter\r\nfitting\r\nfittingly\r\nfittingness\r\nfitzgerald\r\nfive\r\nfive-finger\r\nfive-fold\r\nfive-hitter\r\nfive-hundredth\r\nfive-lobed\r\nfive-membered\r\nfive-needled\r\nfive-petaled\r\nfive-petalled\r\nfive-pointed\r\nfive-sided\r\nfive-spot\r\nfive-year-old\r\nfivefold\r\nfivepence\r\nfiver\r\nfives\r\nfivesome\r\nfix\r\nfixate\r\nfixation\r\nfixative\r\nfixed\r\nfixed-income\r\nfixedness\r\nfixer\r\nfixer-upper\r\nfixing\r\nfixings\r\nfixity\r\nfixture\r\nfizgig\r\nfizz\r\nfizzing\r\nfizzle\r\nfizzy\r\nfjord\r\nfl\r\nflab\r\nflabbergast\r\nflabbergasted\r\nflabbiness\r\nflabby\r\nflaccid\r\nflaccidity\r\nflack\r\nflacourtia\r\nflacourtiaceae\r\nflag\r\nflag-waver\r\nflag-waving\r\nflagellant\r\nflagellata\r\nflagellate\r\nflagellated\r\nflagellation\r\nflagellum\r\nflageolet\r\nflagfish\r\nflagging\r\nflagitious\r\nflagon\r\nflagpole\r\nflagrant\r\nflagroot\r\nflagship\r\nflagstaff\r\nflagstone\r\nflagyl\r\nflail\r\nflair\r\nflak\r\nflake\r\nflakey\r\nflakiness\r\nflaky\r\nflambe\r\nflambeau\r\nflamboyance\r\nflamboyant\r\nflamboyantly\r\nflame\r\nflame-colored\r\nflame-coloured\r\nflame-flower\r\nflame-orange\r\nflame-out\r\nflame-retardant\r\nflamefish\r\nflameflower\r\nflamen\r\nflamenco\r\nflameproof\r\nflamethrower\r\nflaming\r\nflamingo\r\nflaminius\r\nflammability\r\nflammable\r\nflammulina\r\nflan\r\nflanders\r\nflange\r\nflank\r\nflanker\r\nflannel\r\nflannel-cake\r\nflannelbush\r\nflannelette\r\nflap\r\nflapcake\r\nflapjack\r\nflapper\r\nflapping\r\nflaps\r\nflare\r\nflare-up\r\nflared\r\nflaring\r\nflash\r\nflash-forward\r\nflash-freeze\r\nflash-frozen\r\nflashback\r\nflashboard\r\nflashboarding\r\nflashbulb\r\nflashcard\r\nflasher\r\nflashflood\r\nflashgun\r\nflashily\r\nflashiness\r\nflashing\r\nflashlight\r\nflashover\r\nflashpoint\r\nflashy\r\nflask\r\nflaskful\r\nflat\r\nflat-bellied\r\nflat-bottom\r\nflat-bottomed\r\nflat-footed\r\nflat-growing\r\nflat-hat\r\nflat-top\r\nflat-topped\r\nflatbed\r\nflatboat\r\nflatbottom\r\nflatbottomed\r\nflatbread\r\nflatbrod\r\nflatcar\r\nflatfish\r\nflatfoot\r\nflathead\r\nflatiron\r\nflatlet\r\nflatly\r\nflatmate\r\nflatness\r\nflats\r\nflatten\r\nflattened\r\nflatter\r\nflatterer\r\nflattering\r\nflattery\r\nflattop\r\nflatulence\r\nflatulency\r\nflatulent\r\nflatus\r\nflatus-relieving\r\nflatware\r\nflatwork\r\nflatworm\r\nflaubert\r\nflaunt\r\nflaunty\r\nflautist\r\nflavin\r\nflaviviridae\r\nflavivirus\r\nflavor\r\nflavorer\r\nflavorful\r\nflavoring\r\nflavorless\r\nflavorlessness\r\nflavorous\r\nflavorsome\r\nflavorsomeness\r\nflavour\r\nflavourer\r\nflavourful\r\nflavouring\r\nflavourless\r\nflavourlessness\r\nflavourous\r\nflavoursome\r\nflavoursomeness\r\nflaw\r\nflawed\r\nflawless\r\nflawlessly\r\nflawlessness\r\nflax\r\nflaxedil\r\nflaxen\r\nflaxseed\r\nflay\r\nflea\r\nflea-bitten\r\nfleabag\r\nfleabane\r\nfleapit\r\nfleawort\r\nflecainide\r\nfleck\r\nflecked\r\nflection\r\nfledge\r\nfledged\r\nfledgeless\r\nfledgeling\r\nfledgling\r\nflee\r\nfleece\r\nfleeceable\r\nfleecy\r\nfleer\r\nfleet\r\nfleeting\r\nfleetingness\r\nfleetly\r\nfleetness\r\nfleming\r\nflemish\r\nflemish-speaking\r\nflense\r\nflesh\r\nflesh-colored\r\nflesh-coloured\r\nflesh-eating\r\nfleshiness\r\nfleshly\r\nfleshy\r\nfletc\r\nfletcher\r\nfleur-de-lis\r\nfleur-de-lys\r\nflex\r\nflexeril\r\nflexibility\r\nflexible\r\nflexibleness\r\nflexibly\r\nflexile\r\nflexion\r\nflexor\r\nflexuous\r\nflexure\r\nflibbertigibbet\r\nflick\r\nflick-knife\r\nflicker\r\nflickering\r\nflickertail\r\nflier\r\nflies\r\nflight\r\nflighted\r\nflightiness\r\nflightless\r\nflighty\r\nflim-flam\r\nflimflam\r\nflimsiness\r\nflimsy\r\nflinch\r\nflinders\r\nflindersia\r\nflindosa\r\nflindosy\r\nfling\r\nflint\r\nflinthead\r\nflintlock\r\nflintstone\r\nflinty\r\nflip\r\nflip-flop\r\nflippancy\r\nflippant\r\nflippantly\r\nflipper\r\nflipper-like\r\nflirt\r\nflirtation\r\nflirtatious\r\nflirtatiously\r\nflirting\r\nflit\r\nflitch\r\nflitter\r\nflnc\r\nfloat\r\nfloatation\r\nfloater\r\nfloating\r\nfloating-moss\r\nfloatplane\r\nfloaty\r\nfloc\r\nfloccose\r\nflocculate\r\nflocculation\r\nfloccule\r\nflocculent\r\nflock\r\nflodden\r\nfloe\r\nflog\r\nflogger\r\nflogging\r\nflood\r\nflooded\r\nfloodgate\r\nfloodhead\r\nflooding\r\nfloodlight\r\nfloodlighted\r\nfloodlit\r\nfloodplain\r\nfloor\r\nfloorboard\r\nfloored\r\nflooring\r\nfloorshow\r\nfloorwalker\r\nfloozie\r\nfloozy\r\nflop\r\nflophouse\r\nfloppy\r\nflora\r\nfloral\r\nfloreal\r\nflorence\r\nflorentine\r\nflorescence\r\nfloret\r\nflorey\r\nfloricultural\r\nfloriculture\r\nflorid\r\nflorida\r\nfloridian\r\nfloridity\r\nfloridness\r\nflorilegium\r\nflorin\r\nflorio\r\nflorist\r\nflory\r\nfloss\r\nflossy\r\nflotation\r\nflotilla\r\nflotsam\r\nflounce\r\nflounder\r\nflour\r\nflourish\r\nflourishing\r\nfloury\r\nflout\r\nflouter\r\nflow\r\nflowage\r\nflowchart\r\nflower\r\nflower-of-an-hour\r\nflowerbed\r\nflowered\r\nfloweret\r\nflowering\r\nflowerless\r\nflowerpot\r\nflowers-of-an-hour\r\nflowery\r\nflowing\r\nfloxuridine\r\nflu\r\nflub\r\nfluctuate\r\nfluctuating\r\nfluctuation\r\nflue\r\nfluegelhorn\r\nfluency\r\nfluent\r\nfluff\r\nfluffiness\r\nfluffy\r\nflugelhorn\r\nfluid\r\nfluidity\r\nfluidness\r\nfluidounce\r\nfluidram\r\nfluke\r\nflukey\r\nfluky\r\nflume\r\nflummery\r\nflummox\r\nflump\r\nflunitrazepan\r\nflunk\r\nflunkey\r\nflunky\r\nfluor\r\nfluorapatite\r\nfluoresce\r\nfluorescein\r\nfluoresceine\r\nfluorescence\r\nfluorescent\r\nfluoridate\r\nfluoridation\r\nfluoride\r\nfluoridisation\r\nfluoridise\r\nfluoridization\r\nfluoridize\r\nfluorine\r\nfluorite\r\nfluoroboride\r\nfluorocarbon\r\nfluorochrome\r\nfluoroform\r\nfluoroscope\r\nfluoroscopy\r\nfluorosis\r\nfluorouracil\r\nfluorspar\r\nfluosilicate\r\nfluoxetine\r\nfluphenazine\r\nflurazepam\r\nflurbiprofen\r\nflurry\r\nflush\r\nflush-seamed\r\nflushed\r\nfluster\r\nflustered\r\nflute\r\nfluting\r\nflutist\r\nflutter\r\nfluttering\r\nfluvastatin\r\nfluvial\r\nflux\r\nfluxion\r\nfluxmeter\r\nfly\r\nfly-by\r\nfly-by-night\r\nfly-fish\r\nfly-fishing\r\nflyaway\r\nflyblown\r\nflybridge\r\nflycatcher\r\nflyer\r\nflyfish\r\nflying\r\nflyleaf\r\nflyover\r\nflypaper\r\nflypast\r\nflyspeck\r\nflyswat\r\nflyswatter\r\nflytrap\r\nflyway\r\nflyweight\r\nflywheel\r\nfm\r\nfmri\r\nfnma\r\nfo\r\nfo'c'sle\r\nfoal\r\nfoaled\r\nfoam\r\nfoamentation\r\nfoamflower\r\nfoaminess\r\nfoaming\r\nfoamy\r\nfob\r\nfocal\r\nfocalisation\r\nfocalise\r\nfocalization\r\nfocalize\r\nfocus\r\nfocused\r\nfocusing\r\nfocussed\r\nfocussing\r\nfodder\r\nfoe\r\nfoehn\r\nfoeman\r\nfoeniculum\r\nfoetal\r\nfoetid\r\nfoetology\r\nfoetometry\r\nfoetoprotein\r\nfoetor\r\nfoetoscope\r\nfoetoscopy\r\nfoetus\r\nfog\r\nfogbank\r\nfogbound\r\nfogey\r\nfogged\r\nfogginess\r\nfoggy\r\nfoghorn\r\nfoglamp\r\nfogsignal\r\nfogy\r\nfogyish\r\nfohn\r\nfoible\r\nfoil\r\nfoiled\r\nfoiling\r\nfoist\r\nfolacin\r\nfolate\r\nfold\r\nfoldable\r\nfoldaway\r\nfolder\r\nfolderal\r\nfolderol\r\nfolding\r\nfoldout\r\nfoliaceous\r\nfoliage\r\nfoliaged\r\nfoliate\r\nfoliated\r\nfoliation\r\nfolie\r\nfolio\r\nfoliolate\r\nfoliose\r\nfolium\r\nfolk\r\nfolklore\r\nfolks\r\nfolksong\r\nfolksy\r\nfolktale\r\nfollicle\r\nfollicular\r\nfolliculitis\r\nfollies\r\nfollow\r\nfollow-on\r\nfollow-through\r\nfollow-up\r\nfollower\r\nfollowers\r\nfollowing\r\nfollowup\r\nfolly\r\nfoment\r\nfomentation\r\nfomenter\r\nfomes\r\nfomite\r\nfomor\r\nfomorian\r\nfond\r\nfonda\r\nfondant\r\nfondle\r\nfondler\r\nfondling\r\nfondly\r\nfondness\r\nfondu\r\nfondue\r\nfont\r\nfontanel\r\nfontanelle\r\nfontanne\r\nfontenoy\r\nfonteyn\r\nfood\r\nfoodie\r\nfoodless\r\nfoodstuff\r\nfool\r\nfoolery\r\nfoolhardiness\r\nfoolhardy\r\nfooling\r\nfoolish\r\nfoolishly\r\nfoolishness\r\nfoolproof\r\nfoolscap\r\nfoot\r\nfoot-lambert\r\nfoot-pound\r\nfoot-poundal\r\nfoot-shaped\r\nfoot-ton\r\nfootage\r\nfootball\r\nfootball-shaped\r\nfootballer\r\nfootbath\r\nfootboard\r\nfootbridge\r\nfootcandle\r\nfooted\r\nfootedness\r\nfooter\r\nfootfall\r\nfootfault\r\nfootgear\r\nfoothill\r\nfoothold\r\nfooting\r\nfootle\r\nfootless\r\nfootlights\r\nfootling\r\nfootlocker\r\nfootloose\r\nfootman\r\nfootmark\r\nfootnote\r\nfootpad\r\nfootpath\r\nfootplate\r\nfootprint\r\nfootrace\r\nfootrest\r\nfootslog\r\nfootslogger\r\nfootsore\r\nfootstall\r\nfootstep\r\nfootsteps-of-spring\r\nfootstool\r\nfootsure\r\nfootwall\r\nfootwear\r\nfootwork\r\nfop\r\nfoppish\r\nfoppishness\r\nforage\r\nforager\r\nforaging\r\nforam\r\nforamen\r\nforaminifer\r\nforaminifera\r\nforay\r\nforbear\r\nforbearance\r\nforbearing\r\nforbid\r\nforbiddance\r\nforbidden\r\nforbidding\r\nforce\r\nforce-feed\r\nforce-land\r\nforce-out\r\nforced\r\nforceful\r\nforcefulness\r\nforceless\r\nforcemeat\r\nforceps\r\nforcible\r\nforcipate\r\nford\r\nfordable\r\nfordhooks\r\nfording\r\nfore\r\nfore-and-aft\r\nfore-and-after\r\nfore-topmast\r\nfore-topsail\r\nfore-wing\r\nforearm\r\nforebear\r\nforebode\r\nforeboding\r\nforebrain\r\nforecast\r\nforecaster\r\nforecasting\r\nforecastle\r\nforeclose\r\nforeclosure\r\nforecourt\r\nforedate\r\nforedeck\r\nforedge\r\nforedoom\r\nforefather\r\nforefinger\r\nforefoot\r\nforefront\r\nforegather\r\nforego\r\nforegoing\r\nforegone\r\nforeground\r\nforegrounding\r\nforehand\r\nforehanded\r\nforehead\r\nforeign\r\nforeign-born\r\nforeigner\r\nforeignness\r\nforeknow\r\nforeknowledge\r\nforelady\r\nforeland\r\nforeleg\r\nforelimb\r\nforelock\r\nforeman\r\nforemanship\r\nforemast\r\nforemilk\r\nforemost\r\nforemother\r\nforename\r\nforenoon\r\nforensic\r\nforeordain\r\nforeordained\r\nforeordination\r\nforepart\r\nforepaw\r\nforeperson\r\nforeplay\r\nforequarter\r\nforerunner\r\nforesail\r\nforesee\r\nforeseeable\r\nforeseen\r\nforeshadow\r\nforeshadowing\r\nforeshank\r\nforeshock\r\nforeshore\r\nforeshorten\r\nforeshow\r\nforesight\r\nforesighted\r\nforesightedness\r\nforesightful\r\nforesightfulness\r\nforeskin\r\nforest\r\nforestage\r\nforestall\r\nforestalling\r\nforestay\r\nforested\r\nforester\r\nforestiera\r\nforestry\r\nforeswear\r\nforetaste\r\nforetell\r\nforetelling\r\nforethought\r\nforethoughtful\r\nforetoken\r\nforetold\r\nforetop\r\nforever\r\nforevermore\r\nforewarn\r\nforewarning\r\nforewing\r\nforewoman\r\nforeword\r\nforfeit\r\nforfeited\r\nforfeiture\r\nforficate\r\nforficula\r\nforficulidae\r\nforgather\r\nforge\r\nforged\r\nforger\r\nforgery\r\nforget\r\nforget-me-not\r\nforgetful\r\nforgetfulness\r\nforgettable\r\nforging\r\nforgivable\r\nforgivably\r\nforgive\r\nforgiveness\r\nforgiver\r\nforgiving\r\nforgivingly\r\nforgivingness\r\nforgo\r\nforgoing\r\nforgotten\r\nforint\r\nfork\r\nfork-like\r\nforked\r\nforking\r\nforklift\r\nforlorn\r\nforlornness\r\nform\r\nform-only\r\nformal\r\nformaldehyde\r\nformalin\r\nformalisation\r\nformalise\r\nformalised\r\nformalism\r\nformalistic\r\nformalities\r\nformality\r\nformalization\r\nformalize\r\nformalized\r\nformally\r\nformalness\r\nformalwear\r\nformat\r\nformation\r\nformative\r\nformatting\r\nformed\r\nformer\r\nformerly\r\nformic\r\nformica\r\nformicariidae\r\nformicarius\r\nformicary\r\nformicate\r\nformication\r\nformicidae\r\nformidability\r\nformidable\r\nformless\r\nformol\r\nformosa\r\nformosan\r\nformula\r\nformulaic\r\nformularise\r\nformularize\r\nformulary\r\nformulate\r\nformulated\r\nformulation\r\nfornax\r\nfornicate\r\nfornication\r\nfornicator\r\nfornicatress\r\nfornix\r\nforrad\r\nforrader\r\nforrard\r\nforsake\r\nforsaking\r\nforseti\r\nforswear\r\nforswearing\r\nforsythia\r\nfort\r\nfort-lamy\r\nfortaz\r\nforte\r\nforte-piano\r\nfortemente\r\nforth\r\nforthcoming\r\nforthcomingness\r\nforthright\r\nforthrightly\r\nforthrightness\r\nforthwith\r\nforties\r\nfortieth\r\nfortification\r\nfortified\r\nfortify\r\nfortissimo\r\nfortitude\r\nfortnight\r\nfortnightly\r\nfortran\r\nfortress\r\nfortuitous\r\nfortuitously\r\nfortuitousness\r\nfortuity\r\nfortuna\r\nfortunate\r\nfortunately\r\nfortune\r\nfortunella\r\nfortuneteller\r\nfortunetelling\r\nforty\r\nforty-eight\r\nforty-eighth\r\nforty-fifth\r\nforty-first\r\nforty-five\r\nforty-four\r\nforty-fourth\r\nforty-nine\r\nforty-niner\r\nforty-ninth\r\nforty-one\r\nforty-second\r\nforty-seven\r\nforty-seventh\r\nforty-six\r\nforty-sixth\r\nforty-third\r\nforty-three\r\nforty-two\r\nforum\r\nforward\r\nforward-looking\r\nforward-moving\r\nforwarding\r\nforwardness\r\nforwards\r\nforyml\r\nfosamax\r\nfosbury\r\nfossa\r\nfosse\r\nfossil\r\nfossiliferous\r\nfossilisation\r\nfossilise\r\nfossilised\r\nfossilist\r\nfossilization\r\nfossilize\r\nfossilized\r\nfossilology\r\nfossorial\r\nfoster\r\nfoster-brother\r\nfoster-child\r\nfoster-daughter\r\nfoster-father\r\nfoster-mother\r\nfoster-nurse\r\nfoster-parent\r\nfoster-sister\r\nfoster-son\r\nfosterage\r\nfostered\r\nfostering\r\nfosterling\r\nfothergilla\r\nfots\r\nfoucault\r\nfoul\r\nfoul-mouthed\r\nfoul-smelling\r\nfoul-spoken\r\nfoul-up\r\nfoulard\r\nfouled\r\nfoully\r\nfoulmart\r\nfoulness\r\nfoumart\r\nfound\r\nfoundation\r\nfounded\r\nfounder\r\nfoundering\r\nfounding\r\nfoundling\r\nfoundress\r\nfoundry\r\nfount\r\nfountain\r\nfountainhead\r\nfouquieria\r\nfouquieriaceae\r\nfour\r\nfour-dimensional\r\nfour-flusher\r\nfour-fold\r\nfour-footed\r\nfour-hitter\r\nfour-hundredth\r\nfour-in-hand\r\nfour-lane\r\nfour-lobed\r\nfour-membered\r\nfour-needled\r\nfour-party\r\nfour-petaled\r\nfour-petalled\r\nfour-ply\r\nfour-poster\r\nfour-pounder\r\nfour-pronged\r\nfour-sided\r\nfour-spot\r\nfour-wheel\r\nfour-wheeled\r\nfour-wheeler\r\nfour-year-old\r\nfourfold\r\nfourhanded\r\nfourier\r\nfourpence\r\nfourpenny\r\nfourscore\r\nfoursome\r\nfoursquare\r\nfourteen\r\nfourteenth\r\nfourth\r\nfourth-year\r\nfourthly\r\nfovea\r\nfowl\r\nfowler\r\nfox\r\nfox-like\r\nfox-trot\r\nfoxberry\r\nfoxglove\r\nfoxhole\r\nfoxhound\r\nfoxhunt\r\nfoxily\r\nfoxiness\r\nfoxlike\r\nfoxtail\r\nfoxtrot\r\nfoxy\r\nfoyer\r\nfpd\r\nfps\r\nfr\r\nfracas\r\nfractal\r\nfraction\r\nfractional\r\nfractionate\r\nfractionation\r\nfractious\r\nfractiously\r\nfractiousness\r\nfracture\r\nfradicin\r\nfragaria\r\nfragile\r\nfragility\r\nfragment\r\nfragmental\r\nfragmentary\r\nfragmentation\r\nfragmented\r\nfragmentise\r\nfragmentize\r\nfragonard\r\nfragrance\r\nfragrancy\r\nfragrant\r\nfrail\r\nfrailness\r\nfrailty\r\nfraise\r\nframbesia\r\nframboesia\r\nframboise\r\nframe\r\nframe-up\r\nframed\r\nframer\r\nframework\r\nframing\r\nfranc\r\nfranc-tireur\r\nfrance\r\nfranche-comte\r\nfranchise\r\nfranciscan\r\nfrancisella\r\nfrancium\r\nfranck\r\nfranco\r\nfranco-american\r\nfrancoa\r\nfrancophil\r\nfrancophile\r\nfrancophobe\r\nfrangibility\r\nfrangible\r\nfrangibleness\r\nfrangipane\r\nfrangipani\r\nfrangipanni\r\nfrank\r\nfrankenstein\r\nfrankfort\r\nfrankfurt\r\nfrankfurter\r\nfrankincense\r\nfrankish\r\nfranklin\r\nfrankliniella\r\nfrankly\r\nfrankness\r\nfrantic\r\nfrap\r\nfrappe\r\nfrasera\r\nfrat\r\nfratercula\r\nfraternal\r\nfraternisation\r\nfraternise\r\nfraternity\r\nfraternization\r\nfraternize\r\nfratricide\r\nfrau\r\nfraud\r\nfraudulence\r\nfraudulent\r\nfraught\r\nfraulein\r\nfraxinella\r\nfraxinus\r\nfray\r\nfrayed\r\nfrazer\r\nfrazzle\r\nfreak\r\nfreakish\r\nfreakishly\r\nfreakishness\r\nfreaky\r\nfreckle\r\nfreckled\r\nfrederick\r\nfredericksburg\r\nfredericton\r\nfree\r\nfree-and-easy\r\nfree-associate\r\nfree-base\r\nfree-enterprise\r\nfree-flying\r\nfree-for-all\r\nfree-lance\r\nfree-liver\r\nfree-living\r\nfree-range\r\nfree-reed\r\nfree-soil\r\nfree-spoken\r\nfree-swimming\r\nfree-thinking\r\nfreebee\r\nfreebie\r\nfreebooter\r\nfreeborn\r\nfreed\r\nfreedman\r\nfreedom\r\nfreedwoman\r\nfreehand\r\nfreehanded\r\nfreehearted\r\nfreehold\r\nfreeholder\r\nfreeing\r\nfreelance\r\nfreeload\r\nfreeloader\r\nfreemail\r\nfreeman\r\nfreemason\r\nfreemasonry\r\nfreesia\r\nfreestanding\r\nfreestone\r\nfreestyle\r\nfreetail\r\nfreethinker\r\nfreethinking\r\nfreetown\r\nfreeware\r\nfreeway\r\nfreewheel\r\nfreewheeler\r\nfreewheeling\r\nfreewill\r\nfreewoman\r\nfreeze\r\nfreeze-dried\r\nfreeze-dry\r\nfreeze-drying\r\nfreezer\r\nfreezing\r\nfregata\r\nfregatidae\r\nfreight\r\nfreightage\r\nfreighter\r\nfremont\r\nfremontia\r\nfremontodendron\r\nfrench\r\nfrench-fry\r\nfrench-speaking\r\nfrenchify\r\nfrenchman\r\nfrenchwoman\r\nfrenetic\r\nfrenetically\r\nfrenzied\r\nfrenziedly\r\nfrenzy\r\nfrequence\r\nfrequency\r\nfrequent\r\nfrequentative\r\nfrequenter\r\nfrequently\r\nfresco\r\nfresh\r\nfresh-cut\r\nfreshen\r\nfreshener\r\nfresher\r\nfreshet\r\nfreshly\r\nfreshman\r\nfreshness\r\nfreshwater\r\nfresnel\r\nfresno\r\nfress\r\nfret\r\nfretful\r\nfretfulness\r\nfretsaw\r\nfretted\r\nfretwork\r\nfreud\r\nfreudian\r\nfrey\r\nfreya\r\nfreyja\r\nfreyr\r\nfrg\r\nfri\r\nfriability\r\nfriable\r\nfriar\r\nfriar's-cowl\r\nfriary\r\nfricandeau\r\nfricassee\r\nfricative\r\nfrick\r\nfriction\r\nfrictional\r\nfrictionless\r\nfriday\r\nfridge\r\nfried\r\nfriedan\r\nfriedcake\r\nfriedman\r\nfriend\r\nfriendless\r\nfriendlessness\r\nfriendliness\r\nfriendly\r\nfriendship\r\nfrier\r\nfries\r\nfriesian\r\nfriesland\r\nfrieze\r\nfrigate\r\nfrigg\r\nfrigga\r\nfright\r\nfrighten\r\nfrightened\r\nfrightening\r\nfrighteningly\r\nfrightful\r\nfrightfully\r\nfrightfulness\r\nfrigid\r\nfrigidity\r\nfrigidly\r\nfrigidness\r\nfrigorific\r\nfrijol\r\nfrijole\r\nfrijolillo\r\nfrijolito\r\nfrill\r\nfrilled\r\nfrilly\r\nfrimaire\r\nfringe\r\nfringed\r\nfringepod\r\nfringilla\r\nfringillidae\r\nfringy\r\nfrippery\r\nfrisbee\r\nfrisch\r\nfrisia\r\nfrisian\r\nfrisk\r\nfriskiness\r\nfrisking\r\nfrisky\r\nfrisson\r\nfritillaria\r\nfritillary\r\nfrittata\r\nfritter\r\nfriuli\r\nfriulian\r\nfrivol\r\nfrivolity\r\nfrivolous\r\nfrivolousness\r\nfrizz\r\nfrizzle\r\nfrizzly\r\nfrizzy\r\nfrobisher\r\nfrock\r\nfroebel\r\nfroelichia\r\nfrog\r\nfrog's-bit\r\nfrog-like\r\nfrogbit\r\nfrogfish\r\nfroghopper\r\nfrogman\r\nfrogmarch\r\nfrogmouth\r\nfrolic\r\nfrolicky\r\nfrolicsome\r\nfrolicsomeness\r\nfrond\r\nfront\r\nfront-runner\r\nfront-stall\r\nfrontage\r\nfrontal\r\nfrontbencher\r\nfrontier\r\nfrontiersman\r\nfrontierswoman\r\nfrontispiece\r\nfrontlet\r\nfrontmost\r\nfrontstall\r\nfrontward\r\nfrontwards\r\nfrore\r\nfrost\r\nfrost-bound\r\nfrost-weed\r\nfrostbite\r\nfrostbitten\r\nfrosted\r\nfrostian\r\nfrostily\r\nfrostiness\r\nfrosting\r\nfrostweed\r\nfrostwort\r\nfrosty\r\nfroth\r\nfrothiness\r\nfrothing\r\nfrothy\r\nfrottage\r\nfrotteur\r\nfroward\r\nfrown\r\nfrowning\r\nfrowsty\r\nfrowsy\r\nfrowzled\r\nfrowzy\r\nfrozen\r\nfrs\r\nfructidor\r\nfructification\r\nfructify\r\nfructose\r\nfructosuria\r\nfrugal\r\nfrugality\r\nfrugalness\r\nfruit\r\nfruit-eating\r\nfruitage\r\nfruitcake\r\nfruiterer\r\nfruitful\r\nfruitfully\r\nfruitfulness\r\nfruiting\r\nfruition\r\nfruitless\r\nfruitlessly\r\nfruitlessness\r\nfruitlet\r\nfruitwood\r\nfruity\r\nfrumenty\r\nfrump\r\nfrumpily\r\nfrumpish\r\nfrumpishly\r\nfrumpy\r\nfrunze\r\nfrustrate\r\nfrustrated\r\nfrustrating\r\nfrustration\r\nfrustrative\r\nfrustum\r\nfruticose\r\nfruticulose\r\nfry\r\nfrye\r\nfryer\r\nfrying\r\nfrypan\r\nfsb\r\nfsh\r\nft\r\nft-l\r\nftc\r\nfthm\r\nfto\r\nftp\r\nfucaceae\r\nfucales\r\nfuchs\r\nfuchsia\r\nfuck\r\nfucked-up\r\nfucker\r\nfuckhead\r\nfucking\r\nfuckup\r\nfucoid\r\nfucus\r\nfuddle\r\nfuddled\r\nfuddy-duddy\r\nfudge\r\nfuego\r\nfuel\r\nfueled\r\nfueling\r\nfuentes\r\nfug\r\nfugacious\r\nfugaciousness\r\nfugacity\r\nfugal\r\nfugard\r\nfuggy\r\nfugitive\r\nfugleman\r\nfugly\r\nfugo\r\nfugu\r\nfugue\r\nfuji\r\nfuji-san\r\nfujinoyama\r\nfujiyama\r\nfukien\r\nfukkianese\r\nfukuoka\r\nful\r\nfula\r\nfulah\r\nfulani\r\nfulbe\r\nfulbright\r\nfulcrum\r\nfulfil\r\nfulfill\r\nfulfilled\r\nfulfillment\r\nfulfilment\r\nfulgent\r\nfulgid\r\nfulgoridae\r\nfulgurant\r\nfulgurating\r\nfulgurous\r\nfulica\r\nfull\r\nfull-blood\r\nfull-blooded\r\nfull-blown\r\nfull-bodied\r\nfull-bosomed\r\nfull-clad\r\nfull-dress\r\nfull-face\r\nfull-fashioned\r\nfull-fledged\r\nfull-grown\r\nfull-length\r\nfull-of-the-moon\r\nfull-page\r\nfull-scale\r\nfull-size\r\nfull-strength\r\nfull-term\r\nfull-time\r\nfullback\r\nfuller\r\nfullerene\r\nfullness\r\nfully\r\nfulmar\r\nfulmarus\r\nfulminant\r\nfulminate\r\nfulmination\r\nfulsome\r\nfulsomely\r\nfulsomeness\r\nfulton\r\nfulvicin\r\nfumaria\r\nfumariaceae\r\nfumble\r\nfumbler\r\nfumbling\r\nfume\r\nfumed\r\nfumeroot\r\nfumes\r\nfumewort\r\nfumigant\r\nfumigate\r\nfumigation\r\nfumigator\r\nfumitory\r\nfun\r\nfunafuti\r\nfunambulism\r\nfunambulist\r\nfunction\r\nfunctional\r\nfunctionalism\r\nfunctionalist\r\nfunctionality\r\nfunctionary\r\nfunctioning\r\nfund\r\nfund-raise\r\nfundament\r\nfundamental\r\nfundamentalism\r\nfundamentalist\r\nfundamentalistic\r\nfundamentally\r\nfundamentals\r\nfunded\r\nfunding\r\nfundraise\r\nfundraiser\r\nfunds\r\nfundulus\r\nfundus\r\nfuneral\r\nfuneral-residence\r\nfunerary\r\nfunereal\r\nfunfair\r\nfungal\r\nfungi\r\nfungia\r\nfungibility\r\nfungible\r\nfungicidal\r\nfungicide\r\nfungoid\r\nfungous\r\nfungus\r\nfunguslike\r\nfunicle\r\nfunicular\r\nfuniculitis\r\nfuniculus\r\nfunk\r\nfunka\r\nfunkaceae\r\nfunky\r\nfunnel\r\nfunnel-shaped\r\nfunnies\r\nfunnily\r\nfunniness\r\nfunny\r\nfunrun\r\nfuqra\r\nfur\r\nfur-bearing\r\nfur-piece\r\nfuran\r\nfurane\r\nfurbelow\r\nfurbish\r\nfurcate\r\nfurcation\r\nfurcula\r\nfurfural\r\nfurfuraldehyde\r\nfurfuran\r\nfurious\r\nfuriousness\r\nfurl\r\nfurled\r\nfurlike\r\nfurlong\r\nfurlough\r\nfurnace\r\nfurnariidae\r\nfurnarius\r\nfurnish\r\nfurnished\r\nfurnishing\r\nfurniture\r\nfurnivall\r\nfuror\r\nfurore\r\nfurosemide\r\nfurred\r\nfurrier\r\nfurring\r\nfurrow\r\nfurrowed\r\nfurry\r\nfurther\r\nfurtherance\r\nfurthermore\r\nfurthermost\r\nfurthest\r\nfurtive\r\nfurtively\r\nfurtiveness\r\nfuruncle\r\nfurunculosis\r\nfury\r\nfurze\r\nfusain\r\nfusanus\r\nfuscoboletinus\r\nfuscous\r\nfuse\r\nfused\r\nfusee\r\nfuselage\r\nfusible\r\nfusiform\r\nfusil\r\nfusilier\r\nfusillade\r\nfusion\r\nfuss\r\nfuss-budget\r\nfussiness\r\nfusspot\r\nfussy\r\nfustian\r\nfustigate\r\nfusty\r\nfutile\r\nfutility\r\nfuton\r\nfuture\r\nfutureless\r\nfuturism\r\nfuturist\r\nfuturistic\r\nfuturistics\r\nfuturity\r\nfuturology\r\nfuze\r\nfuzee\r\nfuzz\r\nfuzzed\r\nfuzziness\r\nfuzzy\r\nfws\r\ng\r\ng-force\r\ng-jo\r\ng-man\r\ng-string\r\ng.i.\r\nga\r\ngaap\r\ngab\r\ngaba\r\ngabardine\r\ngabble\r\ngabbro\r\ngabby\r\ngaberdine\r\ngabfest\r\ngable\r\ngabled\r\ngabon\r\ngabonese\r\ngabor\r\ngaboriau\r\ngaborone\r\ngabriel\r\ngabun\r\ngad\r\ngadaba\r\ngadabout\r\ngaddafi\r\ngaddi\r\ngadfly\r\ngadget\r\ngadgeteer\r\ngadgetry\r\ngadidae\r\ngadiformes\r\ngadoid\r\ngadolinite\r\ngadolinium\r\ngadsden\r\ngadus\r\ngaea\r\ngael\r\ngaelic\r\ngaelic-speaking\r\ngaff\r\ngaffe\r\ngaffer\r\ngaffsail\r\ngafsa\r\ngag\r\ngaga\r\ngagarin\r\ngage\r\ngaggle\r\ngagman\r\ngagster\r\ngagwriter\r\ngaia\r\ngaiety\r\ngaillardia\r\ngain\r\ngainer\r\ngainesville\r\ngainful\r\ngainfulness\r\ngainlessly\r\ngainly\r\ngainsay\r\ngainsborough\r\ngaiseric\r\ngait\r\ngaiter\r\ngaius\r\ngal\r\ngala\r\ngalactagogue\r\ngalactic\r\ngalactocele\r\ngalactose\r\ngalactosemia\r\ngalactosis\r\ngalago\r\ngalahad\r\ngalan\r\ngalangal\r\ngalantine\r\ngalapagos\r\ngalatea\r\ngalatia\r\ngalatian\r\ngalatians\r\ngalax\r\ngalaxy\r\ngalbanum\r\ngalbraith\r\ngalbulidae\r\ngalbulus\r\ngale\r\ngalea\r\ngalega\r\ngalen\r\ngalena\r\ngaleocerdo\r\ngaleopsis\r\ngaleorhinus\r\ngaleras\r\ngalere\r\ngalicia\r\ngalician\r\ngalilaean\r\ngalilean\r\ngalilee\r\ngalileo\r\ngalingale\r\ngalium\r\ngall\r\ngall-berry\r\ngallamine\r\ngallant\r\ngallantly\r\ngallantry\r\ngallaudet\r\ngallberry\r\ngallbladder\r\ngalled\r\ngalleon\r\ngalleria\r\ngallery\r\ngalley\r\ngallfly\r\ngallia\r\ngalliano\r\ngallic\r\ngallican\r\ngallicanism\r\ngallicism\r\ngalliformes\r\ngallimaufry\r\ngallina\r\ngallinacean\r\ngallinaceous\r\ngallinago\r\ngalling\r\ngallinula\r\ngallinule\r\ngallirallus\r\ngallium\r\ngallivant\r\ngallon\r\ngallop\r\ngallous\r\ngalloway\r\ngallows\r\ngallows-tree\r\ngallstone\r\ngallup\r\ngallus\r\ngalois\r\ngaloot\r\ngalore\r\ngalosh\r\ngalsworthy\r\ngalton\r\ngalumph\r\ngalvani\r\ngalvanic\r\ngalvanisation\r\ngalvanise\r\ngalvaniser\r\ngalvanising\r\ngalvanism\r\ngalvanization\r\ngalvanize\r\ngalvanizer\r\ngalvanizing\r\ngalvanometer\r\ngalveston\r\ngalway\r\ngalwegian\r\ngam\r\ngamba\r\ngambelia\r\ngambia\r\ngambian\r\ngambist\r\ngambit\r\ngamble\r\ngambler\r\ngambling\r\ngamboge\r\ngambol\r\ngambrel\r\ngambusia\r\ngame\r\ngamebag\r\ngameboard\r\ngamecock\r\ngamekeeper\r\ngamelan\r\ngameness\r\ngames-master\r\ngames-mistress\r\ngamesmanship\r\ngametangium\r\ngamete\r\ngametocyte\r\ngametoecium\r\ngametogenesis\r\ngametophore\r\ngametophyte\r\ngamey\r\ngamin\r\ngamine\r\ngaminess\r\ngaming\r\ngamma\r\ngamma-interferon\r\ngammon\r\ngammopathy\r\ngammy\r\ngamopetalous\r\ngamow\r\ngamp\r\ngamut\r\ngamy\r\nganapati\r\ngand\r\ngander\r\ngandhi\r\ngandhian\r\nganef\r\nganesa\r\nganesh\r\nganesha\r\ngang\r\ngang-rape\r\ngangboard\r\ngangdom\r\nganger\r\nganges\r\ngangland\r\ngangling\r\nganglion\r\ngangly\r\ngangplank\r\ngangrene\r\ngangrenous\r\ngangsaw\r\ngangster\r\ngangway\r\nganja\r\ngannet\r\nganof\r\nganoid\r\nganoidei\r\nganoin\r\nganoine\r\ngansu\r\ngantanol\r\ngantlet\r\ngantrisin\r\ngantry\r\nganymede\r\ngao\r\ngaol\r\ngaolbird\r\ngaolbreak\r\ngaoler\r\ngap\r\ngap-toothed\r\ngape\r\ngaping\r\ngar\r\ngarage\r\ngarambulla\r\ngaramycin\r\ngarand\r\ngarb\r\ngarbage\r\ngarbageman\r\ngarbanzo\r\ngarbed\r\ngarble\r\ngarbled\r\ngarbo\r\ngarboard\r\ngarboil\r\ngarbology\r\ngarcinia\r\ngardant\r\ngarden\r\ngardener\r\ngardenia\r\ngardening\r\ngardiner\r\ngardner\r\ngarfield\r\ngarfish\r\ngarganey\r\ngargantua\r\ngargantuan\r\ngarget\r\ngargle\r\ngargoyle\r\ngargoylism\r\ngari\r\ngaribaldi\r\ngarish\r\ngarishly\r\ngarishness\r\ngarland\r\ngarlic\r\ngarlic-like\r\ngarlicky\r\ngarment\r\ngarment-worker\r\ngarmented\r\ngarmentless\r\ngarmentmaker\r\ngarner\r\ngarnet\r\ngarnet-colored\r\ngarnet-coloured\r\ngarnier\r\ngarnierite\r\ngarnish\r\ngarnished\r\ngarnishee\r\ngarnishment\r\ngaronne\r\ngarotte\r\ngarpike\r\ngarret\r\ngarrick\r\ngarrison\r\ngarrote\r\ngarroter\r\ngarrotte\r\ngarrotter\r\ngarrulinae\r\ngarrulity\r\ngarrulous\r\ngarrulously\r\ngarrulousness\r\ngarrulus\r\ngarter\r\ngaruda\r\ngary\r\ngas\r\ngas-filled\r\ngas-tight\r\ngasbag\r\ngascogne\r\ngasconade\r\ngascony\r\ngaseous\r\ngaseousness\r\ngasfield\r\ngash\r\ngashed\r\ngasherbrum\r\ngasification\r\ngasified\r\ngasify\r\ngaskell\r\ngasket\r\ngaskin\r\ngaslight\r\ngasman\r\ngasmask\r\ngasohol\r\ngasolene\r\ngasoline\r\ngasometer\r\ngasp\r\ngaspar\r\ngasping\r\ngaspingly\r\ngassing\r\ngassy\r\ngasteromycete\r\ngasteromycetes\r\ngasterophilidae\r\ngasterophilus\r\ngasteropoda\r\ngasterosteidae\r\ngasterosteus\r\ngastralgia\r\ngastrectomy\r\ngastric\r\ngastrin\r\ngastritis\r\ngastroboletus\r\ngastrocnemius\r\ngastrocybe\r\ngastroduodenal\r\ngastroenteritis\r\ngastroenterologist\r\ngastroenterology\r\ngastroenterostomy\r\ngastroesophageal\r\ngastrogavage\r\ngastrointestinal\r\ngastrolobium\r\ngastromy\r\ngastromycete\r\ngastromycetes\r\ngastronome\r\ngastronomic\r\ngastronomical\r\ngastronomy\r\ngastrophryne\r\ngastropod\r\ngastropoda\r\ngastroscope\r\ngastroscopy\r\ngastrostomy\r\ngastrula\r\ngastrulation\r\ngasworks\r\ngat\r\ngate\r\ngate-crash\r\ngateau\r\ngatecrasher\r\ngatefold\r\ngatehouse\r\ngatekeeper\r\ngatepost\r\ngates\r\ngateway\r\ngather\r\ngathered\r\ngatherer\r\ngathering\r\ngathic\r\ngatling\r\ngator\r\ngatt\r\ngauche\r\ngaucheness\r\ngaucherie\r\ngaucho\r\ngaud\r\ngaudery\r\ngaudi\r\ngaudily\r\ngaudiness\r\ngaudy\r\ngauffer\r\ngauge\r\ngauguin\r\ngauguinesque\r\ngaul\r\ngaultheria\r\ngaumless\r\ngaunt\r\ngauntlet\r\ngauntleted\r\ngauntness\r\ngauntry\r\ngaur\r\ngauri\r\ngauss\r\ngaussian\r\ngaussmeter\r\ngautama\r\ngauze\r\ngauze-like\r\ngauzy\r\ngavage\r\ngavel\r\ngavia\r\ngavial\r\ngavialidae\r\ngavialis\r\ngavidae\r\ngaviiformes\r\ngavotte\r\ngawain\r\ngawk\r\ngawker\r\ngawkiness\r\ngawky\r\ngawp\r\ngay\r\ngay-feather\r\ngay-lussac\r\ngayal\r\ngayfeather\r\ngaylussacia\r\ngayly\r\ngayness\r\ngaywings\r\ngaza\r\ngazania\r\ngaze\r\ngazebo\r\ngazella\r\ngazelle\r\ngazette\r\ngazetteer\r\ngazpacho\r\ngazump\r\ngb\r\ngbu-28\r\ngc\r\ngca\r\ngd\r\ngdansk\r\ngdp\r\nge\r\ngean\r\ngear\r\ngearbox\r\ngeared\r\ngearing\r\ngearset\r\ngearshift\r\ngearstick\r\ngeartrain\r\ngeastraceae\r\ngeastrum\r\ngeb\r\ngecko\r\ngee\r\ngee-gee\r\ngeebung\r\ngeek\r\ngeezer\r\ngeezerhood\r\ngegenschein\r\ngeglossaceae\r\ngehenna\r\ngehrig\r\ngeiger\r\ngeisel\r\ngeisha\r\ngekkonidae\r\ngel\r\ngelatin\r\ngelatine\r\ngelatinise\r\ngelatinize\r\ngelatinlike\r\ngelatinous\r\ngelatinousness\r\ngeld\r\ngelded\r\ngelding\r\ngelechia\r\ngelechiid\r\ngelechiidae\r\ngelid\r\ngelidity\r\ngelignite\r\ngell-mann\r\ngelly\r\ngelsemium\r\ngelt\r\ngem\r\ngemara\r\ngemfibrozil\r\ngeminate\r\ngemination\r\ngemini\r\ngemma\r\ngemmation\r\ngemmed\r\ngemmiferous\r\ngemonil\r\ngempylid\r\ngempylidae\r\ngempylus\r\ngemsbok\r\ngemsbuck\r\ngemstone\r\ngen\r\ngendarme\r\ngendarmerie\r\ngendarmery\r\ngender\r\ngene\r\ngene-splicing\r\ngenealogic\r\ngenealogical\r\ngenealogist\r\ngenealogy\r\ngeneral\r\ngeneral-purpose\r\ngeneralcy\r\ngeneralisation\r\ngeneralise\r\ngeneralised\r\ngeneralissimo\r\ngeneralist\r\ngenerality\r\ngeneralization\r\ngeneralize\r\ngeneralized\r\ngenerally\r\ngeneralship\r\ngenerate\r\ngeneration\r\ngenerational\r\ngenerative\r\ngenerator\r\ngeneric\r\ngenerosity\r\ngenerous\r\ngenerously\r\ngenerousness\r\ngenesis\r\ngenet\r\ngenetic\r\ngenetical\r\ngeneticism\r\ngeneticist\r\ngenetics\r\ngenetta\r\ngeneva\r\ngenevan\r\ngeneve\r\ngenf\r\ngenial\r\ngeniality\r\ngenially\r\ngenic\r\ngeniculate\r\ngenie\r\ngenip\r\ngenipa\r\ngenipap\r\ngenista\r\ngenital\r\ngenitalia\r\ngenitals\r\ngenitive\r\ngenitor\r\ngenitourinary\r\ngenius\r\ngenlisea\r\ngenoa\r\ngenocide\r\ngenoese\r\ngenoise\r\ngenome\r\ngenomics\r\ngenotype\r\ngenotypic\r\ngenotypical\r\ngenova\r\ngenovese\r\ngenre\r\ngens\r\ngenseric\r\ngent\r\ngentamicin\r\ngenteel\r\ngenteelness\r\ngentian\r\ngentiana\r\ngentianaceae\r\ngentianales\r\ngentianella\r\ngentianopsis\r\ngentile\r\ngentility\r\ngentle\r\ngentlefolk\r\ngentleman\r\ngentleman's-cane\r\ngentleman-at-arms\r\ngentlemanlike\r\ngentlemanly\r\ngentleness\r\ngentlewoman\r\ngently\r\ngentrification\r\ngentrify\r\ngentry\r\ngenu\r\ngenuflect\r\ngenuflection\r\ngenuflexion\r\ngenuine\r\ngenuinely\r\ngenuineness\r\ngenus\r\ngenus-fenusa\r\ngenus-megapodius\r\ngenus-milvus\r\ngenyonemus\r\ngeocentric\r\ngeochelone\r\ngeochemistry\r\ngeococcyx\r\ngeode\r\ngeodesic\r\ngeodesical\r\ngeodesy\r\ngeodetic\r\ngeoduck\r\ngeoffroea\r\ngeoglossaceae\r\ngeoglossum\r\ngeographer\r\ngeographic\r\ngeographical\r\ngeographics\r\ngeography\r\ngeologic\r\ngeological\r\ngeologist\r\ngeology\r\ngeomancer\r\ngeomancy\r\ngeometer\r\ngeometric\r\ngeometrical\r\ngeometrically\r\ngeometrician\r\ngeometrid\r\ngeometridae\r\ngeometry\r\ngeomorphologic\r\ngeomorphological\r\ngeomorphology\r\ngeomyidae\r\ngeomys\r\ngeophagia\r\ngeophagy\r\ngeophilidae\r\ngeophilomorpha\r\ngeophilus\r\ngeophysical\r\ngeophysicist\r\ngeophysics\r\ngeophyte\r\ngeophytic\r\ngeopolitical\r\ngeopolitics\r\ngeordie\r\ngeorge\r\ngeorgetown\r\ngeorgette\r\ngeorgia\r\ngeorgian\r\ngeosphere\r\ngeostationary\r\ngeostrategic\r\ngeostrategy\r\ngeosynchronous\r\ngeothermal\r\ngeothermic\r\ngeothlypis\r\ngeotropism\r\ngeraint\r\ngeraniaceae\r\ngeraniales\r\ngeranium\r\ngerardia\r\ngerbera\r\ngerbert\r\ngerbil\r\ngerbille\r\ngerbillinae\r\ngerbillus\r\ngerea\r\ngerenuk\r\ngerfalcon\r\ngeriatric\r\ngeriatrician\r\ngeriatrics\r\ngerm\r\ngerman\r\ngerman-american\r\ngerman-speaking\r\ngermander\r\ngermane\r\ngermaneness\r\ngermanic\r\ngermanism\r\ngermanist\r\ngermanite\r\ngermanium\r\ngermany\r\ngermfree\r\ngermicidal\r\ngermicide\r\ngerminal\r\ngerminate\r\ngermination\r\ngermy\r\ngeronimo\r\ngerontocracy\r\ngerontological\r\ngerontologist\r\ngerontology\r\ngerreidae\r\ngerres\r\ngerrhonotus\r\ngerridae\r\ngerrididae\r\ngerris\r\ngerrymander\r\ngershwin\r\ngerund\r\ngerundial\r\ngeryon\r\ngesell\r\ngesner\r\ngesneria\r\ngesneriaceae\r\ngesneriad\r\ngesso\r\ngestalt\r\ngestapo\r\ngestate\r\ngestation\r\ngestational\r\ngesticulate\r\ngesticulating\r\ngesticulation\r\ngestural\r\ngesture\r\nget\r\nget-at-able\r\nget-go\r\nget-up-and-go\r\ngeta\r\ngetable\r\ngetatable\r\ngetaway\r\ngettable\r\ngetting\r\ngettysburg\r\ngetup\r\ngeum\r\ngewgaw\r\ngeyser\r\nghana\r\nghanaian\r\nghanese\r\nghanian\r\ngharry\r\nghastliness\r\nghastly\r\nghat\r\nghatti\r\nghb\r\nghee\r\ngheg\r\nghent\r\ngherkin\r\nghetto\r\nghettoise\r\nghettoize\r\nghillie\r\nghost\r\nghostfish\r\nghostlike\r\nghostliness\r\nghostly\r\nghostwrite\r\nghostwriter\r\nghoul\r\nghoulish\r\nghq\r\nghrelin\r\nghrf\r\nghz\r\ngi\r\ngia\r\ngiacometti\r\ngiant\r\ngiantess\r\ngiantism\r\ngiardia\r\ngiardiasis\r\ngib\r\ngibber\r\ngibberellin\r\ngibberish\r\ngibbet\r\ngibbon\r\ngibbose\r\ngibbosity\r\ngibbous\r\ngibbousness\r\ngibbs\r\ngibbsite\r\ngibe\r\ngibelike\r\ngibingly\r\ngiblet\r\ngiblets\r\ngibraltar\r\ngibraltarian\r\ngibran\r\ngibson\r\ngidar\r\ngiddily\r\ngiddiness\r\ngiddy\r\ngide\r\ngidgee\r\ngielgud\r\ngift\r\ngift-wrap\r\ngifted\r\ngig\r\ngigabyte\r\ngigacycle\r\ngigahertz\r\ngigantic\r\ngigantism\r\ngigartinaceae\r\ngiggle\r\ngiggler\r\ngigo\r\ngigolo\r\ngigot\r\ngigue\r\ngikuyu\r\ngila\r\ngilbert\r\ngilbertian\r\ngild\r\ngilded\r\ngilder\r\ngildhall\r\ngilding\r\ngilgamesh\r\ngilgamish\r\ngill\r\ngill-less\r\ngill-over-the-ground\r\ngilled\r\ngillespie\r\ngillette\r\ngillie\r\ngillyflower\r\ngilman\r\ngilmer\r\ngilt\r\ngilt-edged\r\ngimbal\r\ngimbaled\r\ngimcrack\r\ngimcrackery\r\ngimel\r\ngimlet\r\ngimmick\r\ngimmickry\r\ngimp\r\ngimpiness\r\ngimpy\r\ngin\r\nginep\r\nginger\r\nginger-scented\r\ngingerbread\r\ngingerly\r\ngingerol\r\ngingerroot\r\ngingersnap\r\ngingery\r\ngingham\r\ngingiva\r\ngingival\r\ngingivitis\r\ngingko\r\nginglymostoma\r\nginglymus\r\nginkgo\r\nginkgoaceae\r\nginkgoales\r\nginkgophytina\r\nginkgopsida\r\nginmill\r\nginsberg\r\nginseng\r\nginzo\r\ngiotto\r\ngip\r\ngipsy\r\ngipsywort\r\ngiraffa\r\ngiraffe\r\ngiraffidae\r\ngirandola\r\ngirandole\r\ngirard\r\ngirasol\r\ngiraudoux\r\ngird\r\ngirder\r\ngirdle\r\ngirgenti\r\ngiriama\r\ngirl\r\ngirlfriend\r\ngirlhood\r\ngirlish\r\ngirlishness\r\ngiro\r\ngironde\r\ngirondin\r\ngirondism\r\ngirondist\r\ngirru\r\ngirt\r\ngirth\r\ngish\r\ngismo\r\ngist\r\ngit\r\ngita\r\ngitana\r\ngitano\r\ngittern\r\ngive\r\ngive-and-go\r\ngive-and-take\r\ngiveaway\r\ngiven\r\ngivenness\r\ngiver\r\ngiving\r\ngiza\r\ngizeh\r\ngizmo\r\ngizzard\r\ngjellerup\r\nglabella\r\nglabellar\r\nglabrescent\r\nglabrous\r\nglace\r\nglacial\r\nglaciate\r\nglaciated\r\nglaciation\r\nglacier\r\nglad\r\ngladden\r\ngladdened\r\ngladdon\r\nglade\r\ngladfulness\r\ngladiator\r\ngladiatorial\r\ngladiola\r\ngladiolus\r\ngladly\r\ngladness\r\ngladsome\r\ngladsomeness\r\ngladstone\r\nglamor\r\nglamorisation\r\nglamorise\r\nglamorization\r\nglamorize\r\nglamorous\r\nglamour\r\nglamourisation\r\nglamourise\r\nglamourization\r\nglamourize\r\nglamourous\r\nglance\r\ngland\r\nglanders\r\nglandular\r\nglans\r\nglare\r\nglareola\r\nglareole\r\nglareolidae\r\nglaring\r\nglary\r\nglaser\r\nglasgow\r\nglasnost\r\nglass\r\nglass-cutter\r\nglass-like\r\nglassblower\r\nglassed\r\nglasses\r\nglassful\r\nglasshouse\r\nglassless\r\nglassmaker\r\nglassware\r\nglasswork\r\nglassworker\r\nglassworks\r\nglasswort\r\nglassy\r\nglaswegian\r\nglaucium\r\nglaucoma\r\nglaucomys\r\nglauconite\r\nglaucous\r\nglaux\r\nglaze\r\nglazed\r\nglazer\r\nglazier\r\ngleam\r\ngleaming\r\nglean\r\ngleaner\r\ngleba\r\nglebe\r\nglechoma\r\ngleditsia\r\nglee\r\ngleeful\r\ngleefully\r\ngleefulness\r\ngleet\r\ngleichenia\r\ngleicheniaceae\r\nglen\r\nglendower\r\nglengarry\r\nglenn\r\nglia\r\nglial\r\nglib\r\nglib-tongued\r\nglibly\r\nglibness\r\nglide\r\nglide-bomb\r\nglider\r\ngliding\r\nglimmer\r\nglimmering\r\nglimmery\r\nglimpse\r\nglinka\r\nglint\r\nglinting\r\nglioblastoma\r\nglioma\r\nglipzide\r\ngliricidia\r\ngliridae\r\nglis\r\nglissade\r\nglissando\r\nglisten\r\nglistening\r\nglister\r\nglistering\r\nglitch\r\nglitter\r\nglittering\r\nglittery\r\nglitz\r\ngloam\r\ngloaming\r\ngloat\r\ngloating\r\nglob\r\nglobal\r\nglobalisation\r\nglobalise\r\nglobalization\r\nglobalize\r\nglobe\r\nglobe-trot\r\nglobefish\r\nglobeflower\r\nglobetrotter\r\nglobicephala\r\nglobigerina\r\nglobigerinidae\r\nglobin\r\nglobose\r\nglobosity\r\nglobular\r\nglobularness\r\nglobule\r\nglobulin\r\nglochid\r\nglochidium\r\nglockenspiel\r\nglogg\r\nglom\r\nglomerular\r\nglomerule\r\nglomerulonephritis\r\nglomerulus\r\ngloom\r\ngloomful\r\ngloominess\r\nglooming\r\ngloomy\r\nglorification\r\nglorified\r\nglorify\r\ngloriole\r\ngloriosa\r\nglorious\r\nglory\r\ngloss\r\nglossa\r\nglossalgia\r\nglossarist\r\nglossary\r\nglossina\r\nglossiness\r\nglossinidae\r\nglossitis\r\nglossodia\r\nglossodynia\r\nglossolalia\r\nglossopharyngeal\r\nglossopsitta\r\nglossoptosis\r\nglossy\r\nglossy-coated\r\nglossy-furred\r\nglossy-haired\r\nglottal\r\nglottis\r\nglottochronological\r\nglottochronology\r\ngloucester\r\ngloucestershire\r\nglove\r\ngloved\r\ngloveless\r\nglow\r\nglower\r\nglowering\r\nglowing\r\nglowworm\r\ngloxinia\r\nglucagon\r\nglucinium\r\ngluck\r\nglucocorticoid\r\nglucophage\r\nglucose\r\nglucoside\r\nglucosuria\r\nglucotrol\r\nglue\r\nglued\r\ngluey\r\nglueyness\r\nglug\r\ngluiness\r\nglum\r\nglume\r\nglumly\r\nglumness\r\ngluon\r\nglut\r\nglutamate\r\nglutamine\r\nglute\r\ngluteal\r\nglutelin\r\ngluten\r\nglutethimide\r\ngluteus\r\nglutinosity\r\nglutinous\r\nglutinousness\r\nglutted\r\nglutton\r\ngluttonise\r\ngluttonize\r\ngluttonous\r\ngluttony\r\nglyburide\r\nglyceraldehyde\r\nglyceria\r\nglyceride\r\nglycerin\r\nglycerine\r\nglycerite\r\nglycerogel\r\nglycerogelatin\r\nglycerol\r\nglycerole\r\nglycerolise\r\nglycerolize\r\nglyceryl\r\nglycine\r\nglycogen\r\nglycogenesis\r\nglycogenic\r\nglycol\r\nglycolysis\r\nglycoprotein\r\nglycoside\r\nglycosuria\r\nglycyrrhiza\r\nglyoxaline\r\nglyph\r\nglyptics\r\nglyptography\r\ngm\r\ngmt\r\ngnaphalium\r\ngnarl\r\ngnarled\r\ngnarly\r\ngnash\r\ngnat\r\ngnatcatcher\r\ngnathion\r\ngnathostomata\r\ngnathostome\r\ngnaw\r\ngnawer\r\ngneiss\r\ngnetaceae\r\ngnetales\r\ngnetophyta\r\ngnetophytina\r\ngnetopsida\r\ngnetum\r\ngnocchi\r\ngnome\r\ngnomic\r\ngnomish\r\ngnomon\r\ngnosis\r\ngnostic\r\ngnosticism\r\ngnp\r\ngnu\r\ngo\r\ngo-ahead\r\ngo-around\r\ngo-as-you-please\r\ngo-between\r\ngo-cart\r\ngo-getter\r\ngo-kart\r\ngo-slow\r\ngo-to-meeting\r\ngoa\r\ngoad\r\ngoaded\r\ngoading\r\ngoal\r\ngoal-directed\r\ngoal-kick\r\ngoalie\r\ngoalkeeper\r\ngoalless\r\ngoalmouth\r\ngoalpost\r\ngoaltender\r\ngoat\r\ngoat-like\r\ngoatee\r\ngoateed\r\ngoatfish\r\ngoatherd\r\ngoatsbeard\r\ngoatsfoot\r\ngoatskin\r\ngoatsucker\r\ngob\r\ngobbet\r\ngobble\r\ngobbledygook\r\ngobbler\r\ngobi\r\ngobiesocidae\r\ngobiesox\r\ngobiidae\r\ngobio\r\ngoblet\r\ngoblet-shaped\r\ngoblin\r\ngobs\r\ngobsmacked\r\ngoby\r\ngod\r\ngod-awful\r\ngod-fearing\r\ngodard\r\ngodchild\r\ngoddam\r\ngoddamn\r\ngoddamned\r\ngoddard\r\ngoddaughter\r\ngoddess\r\ngodel\r\ngodfather\r\ngodforsaken\r\ngodhead\r\ngodiva\r\ngodless\r\ngodlessness\r\ngodlike\r\ngodliness\r\ngodly\r\ngodmother\r\ngodown\r\ngodparent\r\ngodsend\r\ngodson\r\ngodspeed\r\ngodunov\r\ngodwit\r\ngoebbels\r\ngoer\r\ngoering\r\ngoeteborg\r\ngoethals\r\ngoethe\r\ngoethean\r\ngoethian\r\ngoethite\r\ngofer\r\ngoffer\r\ngoggle\r\ngoggle-eye\r\ngoggle-eyed\r\ngoggles\r\ngogh\r\ngogol\r\ngoidelic\r\ngoing\r\ngoing-over\r\ngoiter\r\ngoitre\r\ngoitrogen\r\ngolan\r\ngolconda\r\ngold\r\ngold-bearing\r\ngold-beater\r\ngold-colored\r\ngold-coloured\r\ngold-plate\r\ngold-worker\r\ngoldbeater\r\ngoldberg\r\ngoldbrick\r\ngoldbricking\r\ngoldcrest\r\ngoldcup\r\ngolden\r\ngolden-brown\r\ngolden-green\r\ngolden-yellow\r\ngoldenbush\r\ngoldeneye\r\ngoldenrod\r\ngoldenseal\r\ngoldfield\r\ngoldfields\r\ngoldfinch\r\ngoldfish\r\ngoldilocks\r\ngolding\r\ngoldman\r\ngoldmark\r\ngoldmine\r\ngoldoni\r\ngoldplate\r\ngoldsboro\r\ngoldsmith\r\ngoldstone\r\ngoldthread\r\ngoldworker\r\ngoldwyn\r\ngolem\r\ngolf\r\ngolf-club\r\ngolfcart\r\ngolfer\r\ngolfing\r\ngolgi\r\ngolgotha\r\ngoliard\r\ngoliath\r\ngolliwog\r\ngolliwogg\r\ngolosh\r\ngoma\r\ngombrowicz\r\ngomel\r\ngomorrah\r\ngomorrha\r\ngompers\r\ngomphothere\r\ngomphotheriidae\r\ngomphotherium\r\ngomphrena\r\ngomuti\r\ngonad\r\ngonadal\r\ngonadotrophic\r\ngonadotrophin\r\ngonadotropic\r\ngonadotropin\r\ngoncourt\r\ngond\r\ngondi\r\ngondola\r\ngondolier\r\ngondoliere\r\ngondwanaland\r\ngone\r\ngoner\r\ngong\r\ngongora\r\ngongorism\r\ngongorist\r\ngonif\r\ngoniff\r\ngoniometer\r\ngonion\r\ngoniopteris\r\ngonne\r\ngonococcus\r\ngonorhynchidae\r\ngonorhynchus\r\ngonorrhea\r\ngonorrhoea\r\ngonzo\r\ngoo\r\ngoober\r\ngood\r\ngood-by\r\ngood-bye\r\ngood-for-naught\r\ngood-for-nothing\r\ngood-hearted\r\ngood-humored\r\ngood-humoredness\r\ngood-humoured\r\ngood-humouredness\r\ngood-king-henry\r\ngood-looking\r\ngood-natured\r\ngood-naturedness\r\ngood-neighborliness\r\ngood-neighbourliness\r\ngood-tempered\r\ngood-temperedness\r\ngood-time\r\ngoodall\r\ngoodby\r\ngoodbye\r\ngoodenia\r\ngoodeniaceae\r\ngoodish\r\ngoodly\r\ngoodman\r\ngoodness\r\ngoodwill\r\ngoody\r\ngoody-goody\r\ngoodyear\r\ngoodyera\r\ngooey\r\ngoof\r\ngoof-off\r\ngoof-proof\r\ngoofball\r\ngoofproof\r\ngoofy\r\ngoogle\r\ngoogly\r\ngoogol\r\ngoogolplex\r\ngook\r\ngoon\r\ngooney\r\ngoonie\r\ngoony\r\ngoop\r\ngoosander\r\ngoose\r\ngoose-tansy\r\ngooseberry\r\ngooseberry-like\r\ngoosebump\r\ngoosefish\r\ngooseflesh\r\ngoosefoot\r\ngooselike\r\ngooseneck\r\ngoosey\r\ngoosy\r\ngop\r\ngopher\r\ngopherus\r\ngopherwood\r\ngoral\r\ngorbachev\r\ngordian\r\ngordimer\r\ngordius\r\ngore\r\ngorgas\r\ngorge\r\ngorged\r\ngorgeous\r\ngorgeously\r\ngorger\r\ngorgerin\r\ngorget\r\ngorgon\r\ngorgonacea\r\ngorgoniacea\r\ngorgonian\r\ngorgonocephalus\r\ngorgonzola\r\ngorilla\r\ngoring\r\ngorki\r\ngorkiy\r\ngorky\r\ngormandise\r\ngormandize\r\ngormless\r\ngorse\r\ngory\r\ngosainthan\r\ngosan-chiku\r\ngoshawk\r\ngosling\r\ngosmore\r\ngospel\r\ngospeler\r\ngospeller\r\ngospels\r\ngossamer\r\ngossip\r\ngossiper\r\ngossiping\r\ngossipmonger\r\ngossipmongering\r\ngossipy\r\ngossypium\r\ngoteborg\r\ngoth\r\ngothenburg\r\ngothic\r\ngothite\r\ngotterdammerung\r\ngouache\r\ngouda\r\ngoudy\r\ngouge\r\ngouger\r\ngoujon\r\ngoulash\r\ngould\r\ngounod\r\ngourd\r\ngourd-like\r\ngourde\r\ngourmand\r\ngourmandism\r\ngourmandize\r\ngourmandizer\r\ngourmet\r\ngout\r\ngouty\r\ngovern\r\ngovernable\r\ngovernance\r\ngoverned\r\ngoverness\r\ngoverning\r\ngovernment\r\ngovernment-in-exile\r\ngovernmental\r\ngovernor\r\ngovernorship\r\ngown\r\ngowned\r\ngoy\r\ngoya\r\ngp\r\ngpa\r\ngpo\r\ngps\r\ngrab\r\ngrabber\r\ngrabby\r\ngrace\r\ngraceful\r\ngracefully\r\ngracefulness\r\ngraceless\r\ngracelessly\r\ngracelessness\r\ngracie\r\ngracilariid\r\ngracilariidae\r\ngracile\r\ngracility\r\ngracillariidae\r\ngracious\r\ngraciously\r\ngraciousness\r\ngrackle\r\ngracula\r\ngrad\r\ngradable\r\ngradate\r\ngradation\r\ngradational\r\ngradatory\r\ngrade\r\ngrade-appropriate\r\ngrade-constructed\r\ngraded\r\ngrader\r\ngradient\r\ngrading\r\ngradual\r\ngraduality\r\ngradually\r\ngradualness\r\ngraduate\r\ngraduated\r\ngraduation\r\ngraeco-roman\r\ngraecophile\r\ngraecophilic\r\ngraf\r\ngraffiti\r\ngraffito\r\ngraft\r\ngrafting\r\ngraham\r\ngrahame\r\ngrail\r\ngrain\r\ngrainfield\r\ngrainger\r\ngraininess\r\ngraining\r\ngrainy\r\ngram\r\ngram-negative\r\ngram-positive\r\ngrama\r\ngramicidin\r\ngraminaceae\r\ngraminales\r\ngramineae\r\ngramma\r\ngrammar\r\ngrammarian\r\ngrammatic\r\ngrammatical\r\ngrammatically\r\ngrammatolatry\r\ngrammatophyllum\r\ngramme\r\ngramophone\r\ngramps\r\ngrampus\r\ngran\r\ngranada\r\ngranadilla\r\ngranadillo\r\ngranary\r\ngrand\r\ngrandad\r\ngrandaunt\r\ngrandchild\r\ngranddad\r\ngranddaddy\r\ngranddaughter\r\ngrandee\r\ngrandeur\r\ngrandfather\r\ngrandiloquence\r\ngrandiloquent\r\ngrandiloquently\r\ngrandiose\r\ngrandiosely\r\ngrandiosity\r\ngrandma\r\ngrandmaster\r\ngrandmother\r\ngrandnephew\r\ngrandness\r\ngrandniece\r\ngrandpa\r\ngrandparent\r\ngrandson\r\ngrandstand\r\ngrandstander\r\ngranduncle\r\ngrange\r\ngranger\r\ngranicus\r\ngranite\r\ngranitelike\r\ngraniteware\r\ngranitic\r\ngrannie\r\ngranny\r\ngranola\r\ngrant\r\ngrant-in-aid\r\ngranted\r\ngrantee\r\ngranter\r\ngranth\r\ngrantor\r\ngranular\r\ngranularity\r\ngranulate\r\ngranulated\r\ngranulation\r\ngranule\r\ngranuliferous\r\ngranulocyte\r\ngranulocytic\r\ngranulocytopenia\r\ngranuloma\r\ngranulomatous\r\ngranulose\r\ngranville-barker\r\ngrape\r\ngrape-sized\r\ngrapefruit\r\ngrapelike\r\ngrapeshot\r\ngrapevine\r\ngrapey\r\ngraph\r\ngrapheme\r\ngraphic\r\ngraphical\r\ngraphically\r\ngraphics\r\ngraphite\r\ngraphologist\r\ngraphology\r\ngraphospasm\r\ngrapnel\r\ngrapo\r\ngrappa\r\ngrappelli\r\ngrapple\r\ngrappler\r\ngrappling\r\ngraptophyllum\r\ngrapy\r\ngrasp\r\ngraspable\r\ngrasping\r\ngrass\r\ngrass-covered\r\ngrass-eating\r\ngrass-of-parnassus\r\ngrassfinch\r\ngrassfire\r\ngrasshopper\r\ngrassland\r\ngrassless\r\ngrasslike\r\ngrassroots\r\ngrassy\r\ngrassy-leafed\r\ngrassy-leaved\r\ngrate\r\ngrateful\r\ngratefully\r\ngratefulness\r\ngrater\r\ngraticule\r\ngratification\r\ngratified\r\ngratify\r\ngratifying\r\ngratifyingly\r\ngrating\r\ngratingly\r\ngratis\r\ngratitude\r\ngratuitous\r\ngratuity\r\ngratulatory\r\ngrave\r\ngravedigger\r\ngravel\r\ngravelly\r\ngravelweed\r\ngravely\r\ngraven\r\ngraveness\r\ngraver\r\ngraverobber\r\ngraves\r\ngravestone\r\ngraveyard\r\ngravid\r\ngravida\r\ngravidation\r\ngravidity\r\ngravidness\r\ngravimeter\r\ngravimetric\r\ngravimetry\r\ngravitas\r\ngravitate\r\ngravitation\r\ngravitational\r\ngravitative\r\ngraviton\r\ngravity\r\ngravity-assist\r\ngravure\r\ngravy\r\ngray\r\ngray-black\r\ngray-blue\r\ngray-brown\r\ngray-green\r\ngray-haired\r\ngray-headed\r\ngray-pink\r\ngray-white\r\ngrayback\r\ngraybeard\r\ngrayhen\r\ngrayish\r\ngrayish-black\r\ngrayish-blue\r\ngrayish-brown\r\ngrayish-green\r\ngrayish-pink\r\ngrayish-white\r\ngraylag\r\ngrayly\r\ngrayness\r\ngraz\r\ngraze\r\ngrazed\r\ngrazier\r\ngrazing\r\ngrease\r\ngrease-gun\r\ngreaseball\r\ngreased\r\ngreasepaint\r\ngreaseproof\r\ngreaser\r\ngreasewood\r\ngreasiness\r\ngreasy\r\ngreat\r\ngreat-aunt\r\ngreat-nephew\r\ngreat-niece\r\ngreat-uncle\r\ngreatcoat\r\ngreater\r\ngreatest\r\ngreathearted\r\ngreatness\r\ngreave\r\ngreaves\r\ngrebe\r\ngrecian\r\ngreco\r\ngreco-roman\r\ngreece\r\ngreed\r\ngreedily\r\ngreediness\r\ngreedy\r\ngreegree\r\ngreek\r\ngreeley\r\ngreen\r\ngreen-blind\r\ngreen-blindness\r\ngreen-eyed\r\ngreen-white\r\ngreenback\r\ngreenbelt\r\ngreenberg\r\ngreenbottle\r\ngreenbrier\r\ngreene\r\ngreenery\r\ngreeneye\r\ngreenfly\r\ngreengage\r\ngreengrocer\r\ngreengrocery\r\ngreenhood\r\ngreenhorn\r\ngreenhouse\r\ngreening\r\ngreenish\r\ngreenish-brown\r\ngreenish-gray\r\ngreenish-grey\r\ngreenish-white\r\ngreenishness\r\ngreenland\r\ngreenling\r\ngreenmail\r\ngreenmarket\r\ngreenness\r\ngreenockite\r\ngreenpeace\r\ngreenroom\r\ngreens\r\ngreensand\r\ngreensboro\r\ngreenshank\r\ngreensick\r\ngreensickness\r\ngreenside\r\ngreenskeeper\r\ngreensward\r\ngreenville\r\ngreenway\r\ngreenweed\r\ngreenwich\r\ngreenwing\r\ngreenwood\r\ngreet\r\ngreeter\r\ngreeting\r\ngregarine\r\ngregarinida\r\ngregarious\r\ngregariously\r\ngregariousness\r\ngregorian\r\ngregory\r\ngreisen\r\ngremlin\r\ngrenada\r\ngrenade\r\ngrenadian\r\ngrenadier\r\ngrenadine\r\ngrenoble\r\ngres-gris\r\ngresham\r\ngretzky\r\ngrevillea\r\ngrewia\r\ngrey\r\ngrey-black\r\ngrey-blue\r\ngrey-brown\r\ngrey-green\r\ngrey-haired\r\ngrey-headed\r\ngrey-pink\r\ngrey-white\r\ngreyback\r\ngreybeard\r\ngreyed\r\ngreyhen\r\ngreyhound\r\ngreyish\r\ngreyish-black\r\ngreyish-blue\r\ngreyish-brown\r\ngreyish-green\r\ngreyish-pink\r\ngreyish-white\r\ngreylag\r\ngreyly\r\ngreyness\r\ngri-gri\r\ngrias\r\ngrid\r\ngriddle\r\ngriddlecake\r\ngridiron\r\ngridlock\r\ngrief\r\ngrief-stricken\r\ngrieg\r\ngrievance\r\ngrieve\r\ngriever\r\ngrieving\r\ngrievous\r\ngriffin\r\ngriffith\r\ngriffon\r\ngrifter\r\ngrigri\r\ngrill\r\ngrille\r\ngrilled\r\ngrilling\r\ngrillroom\r\ngrillwork\r\ngrim\r\ngrimace\r\ngrime\r\ngriminess\r\ngrimm\r\ngrimness\r\ngrimoire\r\ngrimy\r\ngrin\r\ngrind\r\ngrindelia\r\ngrinder\r\ngrinding\r\ngrindle\r\ngrindstone\r\ngringo\r\ngrinner\r\ngrinning\r\ngriot\r\ngrip\r\ngripe\r\ngripes\r\ngriping\r\ngrippe\r\ngripping\r\ngripsack\r\ngris\r\ngrisaille\r\ngriselinia\r\ngriseofulvin\r\ngrisly\r\ngrison\r\ngrissino\r\ngrist\r\ngristle\r\ngristly\r\ngristmill\r\ngrit\r\ngritrock\r\ngrits\r\ngritstone\r\ngritty\r\ngrivet\r\ngrizzle\r\ngrizzled\r\ngrizzly\r\ngroak\r\ngroan\r\ngroaner\r\ngroaning\r\ngroat\r\ngroats\r\ngrocer\r\ngrocery\r\ngroenendael\r\ngroenlandia\r\ngrog\r\ngrogginess\r\ngroggy\r\ngrogram\r\ngroin\r\ngrok\r\ngrommet\r\ngromwell\r\ngromyko\r\ngronland\r\ngroom\r\ngroom-to-be\r\ngroomed\r\ngrooming\r\ngroomsman\r\ngroove\r\ngrooved\r\ngroover\r\ngrooving\r\ngroovy\r\ngrope\r\ngroping\r\ngropius\r\ngrosbeak\r\ngroschen\r\ngrosgrain\r\ngross\r\ngrossbeak\r\ngrossness\r\ngrossulariaceae\r\ngrosz\r\ngrot\r\ngrotesque\r\ngrotesquely\r\ngrotesqueness\r\ngrotesquerie\r\ngrotesquery\r\ngrotius\r\ngrotto\r\ngrotty\r\ngrouch\r\ngrouchily\r\ngroucho\r\ngrouchy\r\nground\r\nground-berry\r\nground-floor\r\nground-hugging\r\nground-shaker\r\ngroundball\r\ngroundberry\r\ngroundbreaker\r\ngroundbreaking\r\ngroundcover\r\ngrounder\r\ngroundfish\r\ngroundhog\r\ngrounding\r\ngroundkeeper\r\ngroundless\r\ngroundlessness\r\ngroundling\r\ngroundmass\r\ngroundnut\r\ngrounds\r\ngroundsel\r\ngroundsheet\r\ngroundskeeper\r\ngroundsman\r\ngroundspeed\r\ngroundwork\r\ngroup\r\ngrouped\r\ngrouper\r\ngroupie\r\ngrouping\r\ngroupthink\r\ngroupware\r\ngrouse\r\ngrouse-berry\r\ngrouseberry\r\ngrout\r\ngrove\r\ngrovel\r\ngroveler\r\ngroveling\r\ngroveller\r\ngrovelling\r\ngroves\r\ngrow\r\ngrower\r\ngrowing\r\ngrowl\r\ngrowler\r\ngrowling\r\ngrown\r\ngrownup\r\ngrowth\r\ngroyne\r\ngrozny\r\ngroznyy\r\ngrub\r\ngrub-like\r\ngrubbily\r\ngrubbiness\r\ngrubby\r\ngrubstake\r\ngrudge\r\ngrudging\r\ngrudgingly\r\ngruel\r\ngrueling\r\ngruelling\r\ngruesome\r\ngruesomeness\r\ngruff\r\ngruffness\r\ngrugru\r\ngruidae\r\ngruiformes\r\ngrumble\r\ngrumbler\r\ngrumbling\r\ngrume\r\ngrummet\r\ngrumose\r\ngrumous\r\ngrump\r\ngrumpily\r\ngrumpiness\r\ngrumpy\r\ngrundyism\r\ngrunge\r\ngrungily\r\ngrungy\r\ngrunt\r\ngrunt-hoot\r\ngrunter\r\ngrunting\r\ngruntle\r\ngrus\r\ngruyere\r\ngryllidae\r\ngryphon\r\ngsa\r\ngspc\r\ngsr\r\ngu\r\nguacamole\r\nguacharo\r\nguadalajara\r\nguadalcanal\r\nguadeloupe\r\nguaiac\r\nguaiacum\r\nguaira\r\nguallatiri\r\nguam\r\nguama\r\nguan\r\nguanabana\r\nguanabenz\r\nguanaco\r\nguangdong\r\nguangzhou\r\nguanine\r\nguano\r\nguanosine\r\nguantanamo\r\nguar\r\nguarani\r\nguarantee\r\nguaranteed\r\nguarantor\r\nguaranty\r\nguard\r\nguardant\r\nguarded\r\nguardedly\r\nguardhouse\r\nguardian\r\nguardianship\r\nguardrail\r\nguardroom\r\nguardsman\r\nguarneri\r\nguarnerius\r\nguarnieri\r\nguatemala\r\nguatemalan\r\nguava\r\nguayaquil\r\nguayule\r\ngubbins\r\ngubernatorial\r\nguck\r\ngudgeon\r\nguenevere\r\nguenon\r\nguerdon\r\nguereza\r\ngueridon\r\nguerilla\r\nguernsey\r\nguerrilla\r\nguess\r\nguesser\r\nguessing\r\nguesstimate\r\nguesswork\r\nguest\r\nguesthouse\r\nguestimate\r\nguestroom\r\nguestworker\r\nguevara\r\nguevina\r\nguff\r\nguffaw\r\nguggenheim\r\nguggle\r\ngui\r\nguiana\r\nguib\r\nguidance\r\nguide\r\nguidebook\r\nguided\r\nguideline\r\nguidepost\r\nguideword\r\nguiding\r\nguild\r\nguilder\r\nguildhall\r\nguile\r\nguileful\r\nguileless\r\nguillemot\r\nguilloche\r\nguillotine\r\nguilt\r\nguilt-ridden\r\nguiltiness\r\nguiltless\r\nguiltlessness\r\nguilty\r\nguimpe\r\nguine-bissau\r\nguinea\r\nguinea-bissau\r\nguinean\r\nguinevere\r\nguinness\r\nguise\r\nguitar\r\nguitar-shaped\r\nguitarfish\r\nguitarist\r\ngujarat\r\ngujarati\r\ngujerat\r\ngujerati\r\ngula\r\ngulag\r\ngulch\r\ngulden\r\ngulf\r\ngulfweed\r\ngull\r\ngull-like\r\ngullet\r\ngullibility\r\ngullible\r\ngulliver\r\ngully\r\ngulo\r\ngulp\r\ngulper\r\ngulping\r\ngulu\r\ngulyas\r\ngum\r\ngum-lac\r\ngum-like\r\ngumbo\r\ngumbo-limbo\r\ngumboil\r\ngumdrop\r\ngumma\r\ngummed\r\ngumminess\r\ngumming\r\ngummite\r\ngummosis\r\ngummy\r\ngumption\r\ngumptious\r\ngumshield\r\ngumshoe\r\ngumweed\r\ngumwood\r\ngun\r\ngun-sight\r\ngunboat\r\nguncotton\r\ngunfight\r\ngunfire\r\ngunflint\r\ngunite\r\ngunk\r\ngunlock\r\ngunman\r\ngunmetal\r\ngunnel\r\ngunner\r\ngunnery\r\ngunny\r\ngunnysack\r\ngunplay\r\ngunpoint\r\ngunpowder\r\ngunrunner\r\ngunrunning\r\ngunshot\r\ngunsight\r\ngunslinger\r\ngunsmith\r\ngunstock\r\ngunwale\r\nguomindang\r\nguppy\r\ngur\r\ngurgle\r\ngurkha\r\ngurnard\r\ngurney\r\nguru\r\ngush\r\ngusher\r\ngushing\r\ngushy\r\ngusset\r\ngusseted\r\ngussied\r\ngust\r\ngustation\r\ngustative\r\ngustatorial\r\ngustatory\r\ngustavus\r\ngusto\r\ngusty\r\ngut\r\ngutenberg\r\nguthrie\r\ngutierrezia\r\ngutless\r\ngutlessness\r\nguts\r\ngutsiness\r\ngutsy\r\ngutta-percha\r\ngutter\r\nguttersnipe\r\nguttiferae\r\nguttiferales\r\nguttle\r\nguttural\r\nguvnor\r\nguy\r\nguyana\r\nguyanese\r\nguyot\r\nguzzle\r\nguzzler\r\nguzzling\r\ngwydion\r\ngwyn\r\ngwynn\r\ngybe\r\ngym\r\ngymkhana\r\ngymnadenia\r\ngymnadeniopsis\r\ngymnasium\r\ngymnast\r\ngymnastic\r\ngymnastics\r\ngymnelis\r\ngymnocalycium\r\ngymnocarpium\r\ngymnocladus\r\ngymnogyps\r\ngymnomycota\r\ngymnophiona\r\ngymnopilus\r\ngymnorhina\r\ngymnosophical\r\ngymnosophist\r\ngymnosophy\r\ngymnosperm\r\ngymnospermae\r\ngymnospermophyta\r\ngymnospermous\r\ngymnosporangium\r\ngymnura\r\ngymslip\r\ngynaecological\r\ngynaecologist\r\ngynaecology\r\ngynaeolatry\r\ngynandromorph\r\ngynandromorphic\r\ngynandromorphous\r\ngynarchy\r\ngynecocracy\r\ngynecologic\r\ngynecological\r\ngynecologist\r\ngynecology\r\ngynecomastia\r\ngyneolatry\r\ngynne\r\ngynobase\r\ngynoecium\r\ngynogenesis\r\ngynophobia\r\ngynophore\r\ngynostegium\r\ngynura\r\ngyp\r\ngypaetus\r\ngyps\r\ngypsophila\r\ngypsum\r\ngypsy\r\ngypsyweed\r\ngypsywort\r\ngyral\r\ngyrate\r\ngyration\r\ngyre\r\ngyrfalcon\r\ngyrinidae\r\ngyro\r\ngyrocompass\r\ngyromitra\r\ngyroplane\r\ngyroscope\r\ngyroscopic\r\ngyrostabiliser\r\ngyrostabilizer\r\ngyrus\r\ngywn\r\nh\r\nh-bomb\r\nh-shaped\r\nh.p.\r\nh2o\r\nha\r\nha'p'orth\r\nha'penny\r\nha-ha\r\nhaart\r\nhaastia\r\nhabacuc\r\nhabakkuk\r\nhabanera\r\nhabenaria\r\nhaber\r\nhaberdasher\r\nhaberdashery\r\nhabergeon\r\nhabiliment\r\nhabilimented\r\nhabilitate\r\nhabit\r\nhabit-forming\r\nhabitability\r\nhabitable\r\nhabitableness\r\nhabitant\r\nhabitat\r\nhabitation\r\nhabited\r\nhabitual\r\nhabitually\r\nhabituate\r\nhabituation\r\nhabitude\r\nhabitue\r\nhabitus\r\nhabsburg\r\nhacek\r\nhachiman\r\nhachure\r\nhacienda\r\nhack\r\nhack-driver\r\nhackamore\r\nhackberry\r\nhackbut\r\nhackee\r\nhackelia\r\nhacker\r\nhackle\r\nhackles\r\nhackmatack\r\nhackney\r\nhackneyed\r\nhacksaw\r\nhackwork\r\nhadal\r\nhaddock\r\nhadean\r\nhades\r\nhadith\r\nhadj\r\nhadji\r\nhadrian\r\nhadron\r\nhadrosaur\r\nhadrosauridae\r\nhadrosaurus\r\nhaecceity\r\nhaeckel\r\nhaem\r\nhaemagglutinate\r\nhaemagglutination\r\nhaemal\r\nhaemangioma\r\nhaemanthus\r\nhaematal\r\nhaematemesis\r\nhaematic\r\nhaematinic\r\nhaematite\r\nhaematobia\r\nhaematocele\r\nhaematochezia\r\nhaematocoele\r\nhaematocolpometra\r\nhaematocolpos\r\nhaematocrit\r\nhaematocytopenia\r\nhaematocyturia\r\nhaematogenesis\r\nhaematogenic\r\nhaematohiston\r\nhaematoidin\r\nhaematological\r\nhaematologist\r\nhaematology\r\nhaematolysis\r\nhaematoma\r\nhaematopodidae\r\nhaematopoiesis\r\nhaematopoietic\r\nhaematopus\r\nhaematoxylon\r\nhaematoxylum\r\nhaematuria\r\nhaemic\r\nhaemitin\r\nhaemodialysis\r\nhaemodoraceae\r\nhaemodorum\r\nhaemogenesis\r\nhaemoglobin\r\nhaemoglobinemia\r\nhaemoglobinopathy\r\nhaemoglobinuria\r\nhaemolysin\r\nhaemolysis\r\nhaemolytic\r\nhaemophile\r\nhaemophilia\r\nhaemophiliac\r\nhaemophilic\r\nhaemopis\r\nhaemopoiesis\r\nhaemopoietic\r\nhaemoproteid\r\nhaemoproteidae\r\nhaemoprotein\r\nhaemoproteus\r\nhaemoptysis\r\nhaemorrhage\r\nhaemorrhagic\r\nhaemorrhoid\r\nhaemorrhoidectomy\r\nhaemosiderin\r\nhaemosiderosis\r\nhaemosporidia\r\nhaemosporidian\r\nhaemostasia\r\nhaemostasis\r\nhaemostat\r\nhaemothorax\r\nhaemulidae\r\nhaemulon\r\nhafnium\r\nhaft\r\nhaftarah\r\nhaftorah\r\nhag\r\nhag-ridden\r\nhagada\r\nhaganah\r\nhagberry\r\nhagbut\r\nhagerstown\r\nhagfish\r\nhaggada\r\nhaggadah\r\nhaggai\r\nhaggard\r\nhaggis\r\nhaggle\r\nhaggler\r\nhaggling\r\nhagiographa\r\nhagiographer\r\nhagiographist\r\nhagiography\r\nhagiolatry\r\nhagiologist\r\nhagiology\r\nhagridden\r\nhahn\r\nhahnium\r\nhaick\r\nhaida\r\nhaifa\r\nhaik\r\nhaiku\r\nhail\r\nhail-fellow\r\nhail-fellow-well-met\r\nhailstone\r\nhailstorm\r\nhaiphong\r\nhair\r\nhair's-breadth\r\nhair-raiser\r\nhair-raising\r\nhair-shirt\r\nhair-shirted\r\nhairball\r\nhairbrush\r\nhaircare\r\nhaircloth\r\nhaircut\r\nhairdo\r\nhairdresser\r\nhairdressing\r\nhaired\r\nhairgrip\r\nhairiness\r\nhairless\r\nhairlessness\r\nhairlike\r\nhairline\r\nhairnet\r\nhairpiece\r\nhairpin\r\nhairsbreadth\r\nhairsplitter\r\nhairsplitting\r\nhairspring\r\nhairstreak\r\nhairstyle\r\nhairstylist\r\nhairtail\r\nhairweaving\r\nhairy\r\nhaiti\r\nhaitian\r\nhaj\r\nhaji\r\nhajj\r\nhajji\r\nhake\r\nhakea\r\nhakeem\r\nhakenkreuz\r\nhakham\r\nhakim\r\nhakka\r\nhalab\r\nhalacha\r\nhalaka\r\nhalakah\r\nhalal\r\nhalberd\r\nhalberdier\r\nhalchidhoma\r\nhalcion\r\nhalcyon\r\nhaldane\r\nhaldea\r\nhaldol\r\nhale\r\nhaleness\r\nhalenia\r\nhaler\r\nhalesia\r\nhalevy\r\nhaley\r\nhalf\r\nhalf-and-half\r\nhalf-baked\r\nhalf-blooded\r\nhalf-bound\r\nhalf-bred\r\nhalf-breed\r\nhalf-brother\r\nhalf-caste\r\nhalf-century\r\nhalf-clothed\r\nhalf-cock\r\nhalf-crazed\r\nhalf-dozen\r\nhalf-evergreen\r\nhalf-hardy\r\nhalf-hearted\r\nhalf-holiday\r\nhalf-hour\r\nhalf-hourly\r\nhalf-intensity\r\nhalf-length\r\nhalf-life\r\nhalf-light\r\nhalf-mast\r\nhalf-moon\r\nhalf-pay\r\nhalf-pint\r\nhalf-relief\r\nhalf-seas-over\r\nhalf-sister\r\nhalf-size\r\nhalf-slip\r\nhalf-term\r\nhalf-timber\r\nhalf-timbered\r\nhalf-time\r\nhalf-track\r\nhalf-tracked\r\nhalf-truth\r\nhalf-wit\r\nhalf-witted\r\nhalfback\r\nhalfbeak\r\nhalfhearted\r\nhalfpenny\r\nhalfpennyworth\r\nhalftime\r\nhalftone\r\nhalfway\r\nhaliaeetus\r\nhalibut\r\nhalicarnassus\r\nhalicoeres\r\nhalictidae\r\nhalide\r\nhalifax\r\nhalimodendron\r\nhaliotidae\r\nhaliotis\r\nhalite\r\nhalitosis\r\nhalitus\r\nhall\r\nhallah\r\nhalle\r\nhalle-an-der-saale\r\nhallel\r\nhallelujah\r\nhalley\r\nhalliard\r\nhallmark\r\nhalloo\r\nhallow\r\nhallowe'en\r\nhallowed\r\nhalloween\r\nhallowmas\r\nhallowmass\r\nhallstand\r\nhallucinate\r\nhallucinating\r\nhallucination\r\nhallucinatory\r\nhallucinogen\r\nhallucinogenic\r\nhallucinosis\r\nhallux\r\nhallway\r\nhalm\r\nhalma\r\nhalo\r\nhaloalkane\r\nhalobacter\r\nhalobacteria\r\nhalobacterium\r\nhalocarbon\r\nhalocarpus\r\nhaloform\r\nhalogen\r\nhalogeton\r\nhalon\r\nhaloperidol\r\nhalophil\r\nhalophile\r\nhalophyte\r\nhaloragaceae\r\nhaloragidaceae\r\nhalothane\r\nhals\r\nhalt\r\nhalter\r\nhaltere\r\nhalting\r\nhaltingly\r\nhalve\r\nhalyard\r\nham\r\nham-fisted\r\nham-handed\r\nhamadryad\r\nhamamelidaceae\r\nhamamelidae\r\nhamamelidanthum\r\nhamamelidoxylon\r\nhamamelis\r\nhamamelites\r\nhaman\r\nhamartia\r\nhamartoma\r\nhamas\r\nhamate\r\nhamburg\r\nhamburger\r\nhame\r\nhamelia\r\nhamelin\r\nhameln\r\nhamilton\r\nhaminoea\r\nhamitic\r\nhamito-semitic\r\nhamlet\r\nhammarskjold\r\nhammer\r\nhammer-shaped\r\nhammerhead\r\nhammering\r\nhammerlock\r\nhammerstein\r\nhammertoe\r\nhammett\r\nhamming\r\nhammock\r\nhammurabi\r\nhammurapi\r\nhammy\r\nhamper\r\nhampshire\r\nhampton\r\nhamster\r\nhamstring\r\nhamsun\r\nhan\r\nhan-gook\r\nhancock\r\nhand\r\nhand-build\r\nhand-crafted\r\nhand-down\r\nhand-dye\r\nhand-held\r\nhand-hewn\r\nhand-loomed\r\nhand-me-down\r\nhand-operated\r\nhand-pick\r\nhand-picked\r\nhand-to-hand\r\nhand-to-mouth\r\nhand-wash\r\nhandbag\r\nhandball\r\nhandbarrow\r\nhandbasin\r\nhandbasket\r\nhandbell\r\nhandbill\r\nhandbook\r\nhandbow\r\nhandbreadth\r\nhandbuild\r\nhandcar\r\nhandcart\r\nhandclap\r\nhandclasp\r\nhandcolor\r\nhandcolour\r\nhandcraft\r\nhandcuff\r\nhanded\r\nhanded-down\r\nhandedness\r\nhandel\r\nhandelian\r\nhandful\r\nhandgrip\r\nhandgun\r\nhandheld\r\nhandhold\r\nhandicap\r\nhandicapped\r\nhandicapper\r\nhandicraft\r\nhandily\r\nhandiness\r\nhandiwork\r\nhandkerchief\r\nhandle\r\nhandle-bars\r\nhandlebar\r\nhandled\r\nhandleless\r\nhandler\r\nhandless\r\nhandline\r\nhandling\r\nhandlock\r\nhandloom\r\nhandmade\r\nhandmaid\r\nhandmaiden\r\nhandoff\r\nhandout\r\nhandover\r\nhandrail\r\nhandrest\r\nhands\r\nhands-down\r\nhands-off\r\nhands-on\r\nhandsaw\r\nhandsbreadth\r\nhandset\r\nhandsewn\r\nhandshake\r\nhandshaking\r\nhandsome\r\nhandsomeness\r\nhandspike\r\nhandspring\r\nhandstamp\r\nhandstand\r\nhandstitched\r\nhandwash\r\nhandwear\r\nhandwheel\r\nhandwork\r\nhandwoven\r\nhandwrite\r\nhandwriting\r\nhandwritten\r\nhandy\r\nhandyman\r\nhang\r\nhang-up\r\nhangar\r\nhangbird\r\nhangchow\r\nhangdog\r\nhanger\r\nhanger-on\r\nhanging\r\nhangman\r\nhangnail\r\nhangout\r\nhangover\r\nhangzhou\r\nhani\r\nhank\r\nhanker\r\nhankering\r\nhankey\r\nhankie\r\nhanks\r\nhanky\r\nhannibal\r\nhannover\r\nhannukah\r\nhanoi\r\nhanover\r\nhanoverian\r\nhansard\r\nhansom\r\nhanukah\r\nhanukkah\r\nhanuman\r\nhao\r\nhaoma\r\nhap\r\nhaphazard\r\nhaphazardly\r\nhaphazardness\r\nhaphtarah\r\nhaphtorah\r\nhapless\r\nhaploid\r\nhaploidic\r\nhaploidy\r\nhaplopappus\r\nhaplosporidia\r\nhaplosporidian\r\nhaply\r\nhappen\r\nhappening\r\nhappenstance\r\nhappily\r\nhappiness\r\nhappy\r\nhappy-go-lucky\r\nhapsburg\r\nhaptic\r\nhaptically\r\nhara-kiri\r\nharakiri\r\nharangue\r\nharanguer\r\nharare\r\nharass\r\nharassed\r\nharasser\r\nharassment\r\nharbinger\r\nharbor\r\nharborage\r\nharbour\r\nharbourage\r\nhard\r\nhard-and-fast\r\nhard-baked\r\nhard-bitten\r\nhard-boiled\r\nhard-core\r\nhard-fought\r\nhard-hitting\r\nhard-line\r\nhard-nosed\r\nhard-of-hearing\r\nhard-on\r\nhard-pressed\r\nhard-shelled\r\nhard-to-please\r\nhardback\r\nhardbacked\r\nhardbake\r\nhardball\r\nhardboard\r\nhardbound\r\nhardcore\r\nhardcover\r\nharden\r\nhardenbergia\r\nhardened\r\nhardening\r\nhardfisted\r\nhardheaded\r\nhardheads\r\nhardhearted\r\nhardheartedness\r\nhardihood\r\nhardiness\r\nharding\r\nhardinggrass\r\nhardline\r\nhardliner\r\nhardly\r\nhardness\r\nhardore\r\nhardpan\r\nhardscrabble\r\nhardship\r\nhardtack\r\nhardtop\r\nhardware\r\nhardwareman\r\nhardwood\r\nhardworking\r\nhardy\r\nhare\r\nhare-like\r\nharebell\r\nharebrained\r\nharedi\r\nhareem\r\nharefoot\r\nharelip\r\nharem\r\nhargeisa\r\nhargreaves\r\nharicot\r\nharijan\r\nharikari\r\nhark\r\nharkat-ul-jihad-e-islami\r\nharkat-ul-mujahidin\r\nharken\r\nharlem\r\nharlequin\r\nharlequin-snake\r\nharlequinade\r\nharlot\r\nharlotry\r\nharlow\r\nharm\r\nharmattan\r\nharmed\r\nharmful\r\nharmfully\r\nharmfulness\r\nharmless\r\nharmlessly\r\nharmonic\r\nharmonica\r\nharmonical\r\nharmonics\r\nharmonious\r\nharmoniousness\r\nharmonisation\r\nharmonise\r\nharmonised\r\nharmoniser\r\nharmonium\r\nharmonizable\r\nharmonization\r\nharmonize\r\nharmonized\r\nharmonizer\r\nharmony\r\nharmsworth\r\nharness\r\nharnessed\r\nharp\r\nharp-shaped\r\nharper\r\nharpia\r\nharpist\r\nharpo\r\nharpoon\r\nharpooneer\r\nharpooner\r\nharpsichord\r\nharpsichordist\r\nharpulla\r\nharpullia\r\nharpy\r\nharquebus\r\nharridan\r\nharried\r\nharrier\r\nharriman\r\nharris\r\nharrisburg\r\nharrisia\r\nharrison\r\nharrod\r\nharrow\r\nharrowing\r\nharry\r\nharsh\r\nharsh-voiced\r\nharshen\r\nharshly\r\nharshness\r\nhart\r\nhart's-tongue\r\nharte\r\nhartebeest\r\nhartford\r\nhartley\r\nharum-scarum\r\nharvard\r\nharvest\r\nharvest-lice\r\nharvester\r\nharvestfish\r\nharvesting\r\nharvestman\r\nharvey\r\nhas-been\r\nhaschisch\r\nhasdrubal\r\nhasek\r\nhash\r\nhasheesh\r\nhashish\r\nhashmark\r\nhasid\r\nhasidic\r\nhasidim\r\nhasidism\r\nhaslet\r\nhasp\r\nhassam\r\nhassel\r\nhassid\r\nhassidic\r\nhassidim\r\nhassidism\r\nhassium\r\nhassle\r\nhassock\r\nhastate\r\nhaste\r\nhasten\r\nhastily\r\nhastinapura\r\nhastiness\r\nhastings\r\nhasty\r\nhat\r\nhatband\r\nhatbox\r\nhatch\r\nhatchback\r\nhatched\r\nhatchel\r\nhatchery\r\nhatchet\r\nhatching\r\nhatchling\r\nhatchway\r\nhate\r\nhated\r\nhateful\r\nhatefulness\r\nhatemonger\r\nhater\r\nhatful\r\nhathaway\r\nhatiora\r\nhatless\r\nhatmaker\r\nhatoglobin\r\nhatpin\r\nhatrack\r\nhatred\r\nhatted\r\nhatter\r\nhattiesburg\r\nhauberk\r\nhaughtiness\r\nhaughty\r\nhaul\r\nhaulage\r\nhauler\r\nhaulier\r\nhauling\r\nhaulm\r\nhaunch\r\nhaunt\r\nhaunted\r\nhaunting\r\nhausa\r\nhausen\r\nhausmannite\r\nhaussa\r\nhaustorium\r\nhautbois\r\nhautboy\r\nhaute-normandie\r\nhauteur\r\nhavana\r\nhavasupai\r\nhave\r\nhave-not\r\nhavel\r\nhavelock\r\nhaven\r\nhaversack\r\nhavoc\r\nhaw\r\nhaw-haw\r\nhawai'i\r\nhawaii\r\nhawaiian\r\nhawala\r\nhawfinch\r\nhawk\r\nhawk's-beard\r\nhawk's-beards\r\nhawk-eyed\r\nhawk-like\r\nhawkbill\r\nhawkbit\r\nhawker\r\nhawking\r\nhawkins\r\nhawkish\r\nhawkishness\r\nhawklike\r\nhawkmoth\r\nhawksbill\r\nhawkshaw\r\nhawkweed\r\nhawkyns\r\nhaworth\r\nhawse\r\nhawsehole\r\nhawsepipe\r\nhawser\r\nhawthorn\r\nhawthorne\r\nhay\r\nhay-scented\r\nhayastan\r\nhaycock\r\nhaydn\r\nhayek\r\nhayes\r\nhayfield\r\nhayfork\r\nhaying\r\nhayloft\r\nhaymaker\r\nhaymaking\r\nhaymow\r\nhayrack\r\nhayrick\r\nhayrig\r\nhays\r\nhayseed\r\nhaystack\r\nhayti\r\nhaywire\r\nhaywood\r\nhazan\r\nhazard\r\nhazardia\r\nhazardous\r\nhazardously\r\nhazardousness\r\nhaze\r\nhazel\r\nhazel-brown\r\nhazelnut\r\nhazelwood\r\nhaziness\r\nhazlitt\r\nhazmat\r\nhazy\r\nhb\r\nhcfc\r\nhcg\r\nhdl\r\nhdtv\r\nhe\r\nhe-goat\r\nhe-huckleberry\r\nhe-man\r\nhead\r\nhead-in-the-clouds\r\nhead-on\r\nhead-shrinker\r\nhead-to-head\r\nheadache\r\nheadband\r\nheadboard\r\nheadcheese\r\nheadcount\r\nheadcounter\r\nheaddress\r\nheaded\r\nheader\r\nheadfast\r\nheadfirst\r\nheadfish\r\nheadful\r\nheadgear\r\nheadhunter\r\nheading\r\nheadlamp\r\nheadland\r\nheadless\r\nheadlight\r\nheadlike\r\nheadline\r\nheadliner\r\nheadlinese\r\nheadlock\r\nheadlong\r\nheadman\r\nheadmaster\r\nheadmastership\r\nheadmistress\r\nheadmistressship\r\nheadphone\r\nheadpiece\r\nheadpin\r\nheadquarters\r\nheadrace\r\nheadrest\r\nheadroom\r\nheads-up\r\nheadsail\r\nheadscarf\r\nheadset\r\nheadshake\r\nheadshaking\r\nheadship\r\nheadshot\r\nheadsman\r\nheadspace\r\nheadspring\r\nheadstall\r\nheadstand\r\nheadstock\r\nheadstone\r\nheadstream\r\nheadstrong\r\nheadwaiter\r\nheadwaters\r\nheadway\r\nheadwind\r\nheadword\r\nheady\r\nheal\r\nhealed\r\nhealer\r\nhealing\r\nhealth\r\nhealthcare\r\nhealthful\r\nhealthfulness\r\nhealthier\r\nhealthiness\r\nhealthy\r\nheap\r\nheaped\r\nheaped-up\r\nheaps\r\nhear\r\nhearable\r\nheard\r\nhearer\r\nhearing\r\nhearing-impaired\r\nhearken\r\nhearsay\r\nhearse\r\nhearst\r\nheart\r\nheart-healthy\r\nheart-leaf\r\nheart-shaped\r\nheart-to-heart\r\nheart-whole\r\nheartache\r\nheartbeat\r\nheartbreak\r\nheartbreaking\r\nheartbroken\r\nheartburn\r\nheartburning\r\nhearten\r\nheartening\r\nheartfelt\r\nhearth\r\nhearthrug\r\nhearthstone\r\nheartily\r\nheartiness\r\nheartland\r\nheartleaf\r\nheartless\r\nheartlessness\r\nheartrending\r\nheartrot\r\nhearts\r\nheartsease\r\nheartseed\r\nheartsick\r\nheartsickness\r\nheartstrings\r\nheartthrob\r\nheartwarming\r\nheartwood\r\nhearty\r\nheat\r\nheat-absorbing\r\nheat-releasing\r\nheatable\r\nheated\r\nheatedly\r\nheater\r\nheath\r\nheathen\r\nheathenish\r\nheathenism\r\nheather\r\nheathfowl\r\nheathland\r\nheathlike\r\nheating\r\nheatless\r\nheatstroke\r\nheaume\r\nheave\r\nheaven\r\nheaven-sent\r\nheavenly\r\nheavens\r\nheavenward\r\nheavenwardly\r\nheavenwards\r\nheaver\r\nheaves\r\nheavier-than-air\r\nheavily\r\nheaviness\r\nheaving\r\nheaviside\r\nheavy\r\nheavy-armed\r\nheavy-coated\r\nheavy-duty\r\nheavy-footed\r\nheavy-handed\r\nheavy-laden\r\nheavy-limbed\r\nheavyhearted\r\nheavyheartedness\r\nheavyset\r\nheavyweight\r\nhebbel\r\nhebdomad\r\nhebdomadal\r\nhebdomadally\r\nhebdomadary\r\nhebe\r\nhebei\r\nhebephrenia\r\nhebephrenic\r\nhebetude\r\nhebraic\r\nhebraical\r\nhebraism\r\nhebraist\r\nhebrew\r\nhebrews\r\nhebridean\r\nhebrides\r\nhecate\r\nhecatomb\r\nhecht\r\nheck\r\nheckelphone\r\nheckle\r\nheckler\r\nheckling\r\nhectare\r\nhectic\r\nhectically\r\nhectogram\r\nhectograph\r\nhectoliter\r\nhectolitre\r\nhectometer\r\nhectometre\r\nhector\r\nhedeoma\r\nhedera\r\nhedge\r\nhedged\r\nhedgefund\r\nhedgehog\r\nhedgehop\r\nhedger\r\nhedgerow\r\nhedging\r\nhediondilla\r\nhedjaz\r\nhedonic\r\nhedonism\r\nhedonist\r\nhedonistic\r\nhedysarum\r\nhee-haw\r\nheebie-jeebies\r\nheed\r\nheedful\r\nheedfully\r\nheedfulness\r\nheedless\r\nheedlessly\r\nheedlessness\r\nheel\r\nheelbone\r\nhefa\r\nheft\r\nheftiness\r\nhefty\r\nhegari\r\nhegel\r\nhegelian\r\nhegemony\r\nhegira\r\nheidegger\r\nheifer\r\nheight\r\nheighten\r\nheightening\r\nheights\r\nheilong\r\nheimdal\r\nheimdall\r\nheimdallr\r\nheinlein\r\nheinous\r\nheinously\r\nheinousness\r\nheinz\r\nheir\r\nheir-at-law\r\nheiress\r\nheirloom\r\nheisenberg\r\nheist\r\nhejaz\r\nhejira\r\nhel\r\nhela\r\nhelen\r\nhelena\r\nhelenium\r\nheleodytes\r\nheliac\r\nheliacal\r\nheliamphora\r\nhelianthemum\r\nhelianthus\r\nhelical\r\nhelichrysum\r\nhelicidae\r\nhelicon\r\nhelicopter\r\nhelicteres\r\nheliobacter\r\nheliocentric\r\nheliogram\r\nheliograph\r\nheliogravure\r\nheliolatry\r\nheliometer\r\nheliopause\r\nheliophila\r\nheliopsis\r\nhelios\r\nheliosphere\r\nheliotherapy\r\nheliothis\r\nheliotrope\r\nheliotropism\r\nheliotype\r\nheliozoa\r\nheliozoan\r\nheliport\r\nhelipterum\r\nhelium\r\nhelix\r\nhell\r\nhell-bent\r\nhell-kite\r\nhell-rooster\r\nhellbender\r\nhellcat\r\nhellebore\r\nhelleborine\r\nhelleborus\r\nhellene\r\nhellenic\r\nhellenism\r\nhellenistic\r\nhellenistical\r\nheller\r\nhelleri\r\nhellespont\r\nhellfire\r\nhellgrammiate\r\nhellhole\r\nhellhound\r\nhellion\r\nhellish\r\nhellishly\r\nhellman\r\nhello\r\nhelm\r\nhelmet\r\nhelmet-shaped\r\nhelmeted\r\nhelmetflower\r\nhelmholtz\r\nhelminth\r\nhelminthiasis\r\nhelminthic\r\nhelminthostachys\r\nhelmsman\r\nheloderma\r\nhelodermatidae\r\nheloise\r\nhelot\r\nhelotiaceae\r\nhelotiales\r\nhelotium\r\nhelp\r\nhelpdesk\r\nhelper\r\nhelpful\r\nhelpfully\r\nhelpfulness\r\nhelping\r\nhelpless\r\nhelplessly\r\nhelplessness\r\nhelpmate\r\nhelpmeet\r\nhelsingfors\r\nhelsinki\r\nhelter-skelter\r\nhelve\r\nhelvella\r\nhelvellaceae\r\nhelvetica\r\nhelwingia\r\nhelxine\r\nhem\r\nhemachatus\r\nhemagglutinate\r\nhemagglutination\r\nhemal\r\nhemangioma\r\nhematal\r\nhematemesis\r\nhematic\r\nhematin\r\nhematinic\r\nhematite\r\nhematocele\r\nhematochezia\r\nhematochrome\r\nhematocoele\r\nhematocolpometra\r\nhematocolpos\r\nhematocrit\r\nhematocyst\r\nhematocytopenia\r\nhematocyturia\r\nhematogenesis\r\nhematogenic\r\nhematohiston\r\nhematoidin\r\nhematologic\r\nhematological\r\nhematologist\r\nhematology\r\nhematolysis\r\nhematoma\r\nhematopoiesis\r\nhematopoietic\r\nhematuria\r\nheme\r\nhemeralopia\r\nhemerobiid\r\nhemerobiidae\r\nhemerocallidaceae\r\nhemerocallis\r\nhemiacetal\r\nhemianopia\r\nhemianopsia\r\nhemiascomycetes\r\nhemic\r\nhemicrania\r\nhemicycle\r\nhemidemisemiquaver\r\nhemiepiphyte\r\nhemigalus\r\nhemigrammus\r\nhemimetabola\r\nhemimetabolic\r\nhemimetabolism\r\nhemimetabolous\r\nhemimetaboly\r\nhemimetamorphic\r\nhemimetamorphosis\r\nhemimetamorphous\r\nhemimorphite\r\nhemin\r\nheming\r\nhemingway\r\nhemingwayesque\r\nhemiparasite\r\nhemiparasitic\r\nhemiplegia\r\nhemiplegic\r\nhemipode\r\nhemiprocnidae\r\nhemiptera\r\nhemipteran\r\nhemipteron\r\nhemipteronatus\r\nhemiramphidae\r\nhemisphere\r\nhemispheric\r\nhemispherical\r\nhemitripterus\r\nhemline\r\nhemlock\r\nhemming-stitch\r\nhemminge\r\nhemochromatosis\r\nhemodialysis\r\nhemodialyzer\r\nhemodynamic\r\nhemodynamics\r\nhemofil\r\nhemogenesis\r\nhemoglobin\r\nhemoglobinemia\r\nhemoglobinopathy\r\nhemoglobinuria\r\nhemolysin\r\nhemolysis\r\nhemolytic\r\nhemophile\r\nhemophilia\r\nhemophiliac\r\nhemophilic\r\nhemopoiesis\r\nhemopoietic\r\nhemoprotein\r\nhemoptysis\r\nhemorrhage\r\nhemorrhagic\r\nhemorrhoid\r\nhemorrhoidectomy\r\nhemosiderin\r\nhemosiderosis\r\nhemostasia\r\nhemostasis\r\nhemostat\r\nhemostatic\r\nhemothorax\r\nhemp\r\nhempen\r\nhemstitch\r\nhemstitching\r\nhen\r\nhen-of-the-woods\r\nhen-peck\r\nhenbane\r\nhenbit\r\nhence\r\nhenceforth\r\nhenceforward\r\nhenchman\r\nhencoop\r\nhendiadys\r\nhendrix\r\nhenhouse\r\nhenna\r\nhenpecked\r\nhenroost\r\nhenry\r\nhenson\r\nhep\r\nhepadnavirus\r\nheparin\r\nhepatic\r\nhepatica\r\nhepaticae\r\nhepaticopsida\r\nhepatitis\r\nhepatocarcinoma\r\nhepatoflavin\r\nhepatoma\r\nhepatomegaly\r\nhepatotoxic\r\nhepatotoxin\r\nhepburn\r\nhephaestus\r\nhephaistos\r\nheptad\r\nheptagon\r\nheptane\r\nhepworth\r\nhera\r\nheracles\r\nheracleum\r\nheraclitus\r\nherakles\r\nherald\r\nheralded\r\nheraldic\r\nheraldist\r\nheraldry\r\nherat\r\nherb\r\nherbaceous\r\nherbage\r\nherbal\r\nherbalist\r\nherbarium\r\nherbart\r\nherbert\r\nherbicide\r\nherbivore\r\nherbivorous\r\nherculaneum\r\nherculean\r\nhercules\r\nhercules'-club\r\nhercules'-clubs\r\nhercules-club\r\nherculius\r\nherd\r\nherder\r\nherdsman\r\nhere\r\nhereabout\r\nhereabouts\r\nhereafter\r\nhereby\r\nhereditament\r\nhereditarianism\r\nhereditary\r\nheredity\r\nhereford\r\nhereinafter\r\nhereness\r\nheresy\r\nheretic\r\nheretical\r\nheretofore\r\nhereunder\r\nherewith\r\nheritable\r\nheritage\r\nheritiera\r\nheritor\r\nherm\r\nherman\r\nhermann\r\nhermannia\r\nhermaphrodism\r\nhermaphrodite\r\nhermaphroditic\r\nhermaphroditism\r\nhermaphroditus\r\nhermeneutic\r\nhermeneutics\r\nhermes\r\nhermetic\r\nhermissenda\r\nhermit\r\nhermitage\r\nhermitic\r\nhermitical\r\nhermosillo\r\nhernaria\r\nhernia\r\nherniation\r\nhero\r\nhero-worship\r\nherod\r\nherodotus\r\nheroic\r\nheroical\r\nheroics\r\nheroin\r\nheroine\r\nheroism\r\nheron\r\nheronry\r\nherpangia\r\nherpes\r\nherpestes\r\nherpetologist\r\nherpetology\r\nherr\r\nherrenvolk\r\nherrerasaur\r\nherrerasaurus\r\nherrick\r\nherring\r\nherring-like\r\nherringbone\r\nherschel\r\nhershey\r\nhertfordshire\r\nhertha\r\nhertz\r\nhertzian\r\nherzberg\r\nheshvan\r\nhesiod\r\nhesitance\r\nhesitancy\r\nhesitant\r\nhesitantly\r\nhesitate\r\nhesitater\r\nhesitating\r\nhesitatingly\r\nhesitation\r\nhesitator\r\nhesperian\r\nhesperides\r\nhesperiphona\r\nhesperis\r\nhesperus\r\nhess\r\nhesse\r\nhessian\r\nhessonite\r\nhestia\r\nhet\r\nheteranthera\r\nheterobasidiomycetes\r\nheterocephalus\r\nheterocercal\r\nheterocycle\r\nheterocyclic\r\nheterodactyl\r\nheterodon\r\nheterodox\r\nheterodoxy\r\nheterodyne\r\nheteroecious\r\nheterogeneity\r\nheterogeneous\r\nheterogeneousness\r\nheterogenesis\r\nheterogenous\r\nheterograft\r\nheteroicous\r\nheterokontae\r\nheterokontophyta\r\nheterologic\r\nheterological\r\nheterologous\r\nheterology\r\nheteromeles\r\nheterometabolic\r\nheterometabolism\r\nheterometabolous\r\nheterometaboly\r\nheteromyidae\r\nheteronym\r\nheteroploid\r\nheteroploidy\r\nheteroptera\r\nheteroscelus\r\nheterosexism\r\nheterosexual\r\nheterosexualism\r\nheterosexuality\r\nheterosomata\r\nheterosporous\r\nheterospory\r\nheterostracan\r\nheterostraci\r\nheterotaxy\r\nheterotheca\r\nheterothermic\r\nheterotrichales\r\nheterotroph\r\nheterotrophic\r\nheterozygosity\r\nheterozygous\r\nheth\r\nheuchera\r\nheulandite\r\nheuristic\r\nhevea\r\nhevesy\r\nhew\r\nhewer\r\nhewn\r\nhex\r\nhexachlorophene\r\nhexad\r\nhexadecimal\r\nhexadrol\r\nhexagon\r\nhexagonal\r\nhexagram\r\nhexagrammidae\r\nhexagrammos\r\nhexahedron\r\nhexalectris\r\nhexameter\r\nhexamita\r\nhexanchidae\r\nhexanchus\r\nhexane\r\nhexangular\r\nhexapod\r\nhexapoda\r\nhexed\r\nhexenbesen\r\nhexestrol\r\nhexose\r\nheyday\r\nheyerdahl\r\nheyrovsky\r\nheyse\r\nheyward\r\nhezbollah\r\nhezekiah\r\nhf\r\nhfc\r\nhg\r\nhhs\r\nhi\r\nhi-fi\r\nhi-tech\r\nhiatus\r\nhiawatha\r\nhibachi\r\nhibbertia\r\nhibbing\r\nhibernal\r\nhibernate\r\nhibernating\r\nhibernation\r\nhibernia\r\nhibiscus\r\nhiccough\r\nhiccup\r\nhick\r\nhickey\r\nhickock\r\nhickory\r\nhidatsa\r\nhidden\r\nhiddenite\r\nhiddenness\r\nhide\r\nhide-and-seek\r\nhideaway\r\nhidebound\r\nhideous\r\nhideously\r\nhideousness\r\nhideout\r\nhiding\r\nhidrosis\r\nhidrotic\r\nhie\r\nhiemal\r\nhieracium\r\nhierarch\r\nhierarchal\r\nhierarchic\r\nhierarchical\r\nhierarchy\r\nhieratic\r\nhieratical\r\nhieroglyph\r\nhieroglyphic\r\nhieroglyphical\r\nhierolatry\r\nhieronymus\r\nhifalutin\r\nhigginson\r\nhiggle\r\nhiggledy-piggledy\r\nhigh\r\nhigh-altitude\r\nhigh-and-dry\r\nhigh-and-mighty\r\nhigh-backed\r\nhigh-ceilinged\r\nhigh-class\r\nhigh-crowned\r\nhigh-energy\r\nhigh-fidelity\r\nhigh-five\r\nhigh-flown\r\nhigh-grade\r\nhigh-handed\r\nhigh-handedness\r\nhigh-interest\r\nhigh-keyed\r\nhigh-level\r\nhigh-low\r\nhigh-low-jack\r\nhigh-minded\r\nhigh-mindedness\r\nhigh-muck-a-muck\r\nhigh-necked\r\nhigh-octane\r\nhigh-performance\r\nhigh-pitched\r\nhigh-potential\r\nhigh-power\r\nhigh-powered\r\nhigh-pressure\r\nhigh-priced\r\nhigh-principled\r\nhigh-ranking\r\nhigh-resolution\r\nhigh-rise\r\nhigh-risk\r\nhigh-sounding\r\nhigh-speed\r\nhigh-spirited\r\nhigh-spiritedness\r\nhigh-stepped\r\nhigh-stepping\r\nhigh-strung\r\nhigh-sudsing\r\nhigh-tail\r\nhigh-tech\r\nhigh-tension\r\nhigh-ticket\r\nhigh-toned\r\nhigh-top\r\nhigh-topped\r\nhigh-up\r\nhigh-velocity\r\nhigh-voltage\r\nhigh-yield\r\nhighball\r\nhighbinder\r\nhighboard\r\nhighborn\r\nhighboy\r\nhighbrow\r\nhighbrowed\r\nhighchair\r\nhigher\r\nhigher-ranking\r\nhigher-up\r\nhighfalutin\r\nhighfaluting\r\nhighflier\r\nhighflyer\r\nhighflying\r\nhighjack\r\nhighjacker\r\nhighjacking\r\nhighland\r\nhighlander\r\nhighlands\r\nhighlife\r\nhighlight\r\nhighlighter\r\nhighlighting\r\nhighly\r\nhighly-developed\r\nhighly-sexed\r\nhighness\r\nhighroad\r\nhighschool\r\nhightail\r\nhighwater\r\nhighway\r\nhighwayman\r\nhigi\r\nhijab\r\nhijack\r\nhijacker\r\nhijacking\r\nhijaz\r\nhijinks\r\nhike\r\nhiker\r\nhiking\r\nhilar\r\nhilarious\r\nhilariously\r\nhilarity\r\nhilbert\r\nhildebrand\r\nhill\r\nhillary\r\nhillbilly\r\nhillel\r\nhilliness\r\nhillock\r\nhillside\r\nhilltop\r\nhilly\r\nhilo\r\nhilt\r\nhilum\r\nhilus\r\nhimalaya\r\nhimalayan\r\nhimalayas\r\nhimalayish\r\nhimantoglossum\r\nhimantopus\r\nhimmler\r\nhin\r\nhinault\r\nhinayana\r\nhinayanism\r\nhinayanist\r\nhind\r\nhindbrain\r\nhindemith\r\nhindenburg\r\nhinder\r\nhinderance\r\nhindering\r\nhinderingly\r\nhindermost\r\nhindfoot\r\nhindgut\r\nhindi\r\nhindmost\r\nhindoo\r\nhindooism\r\nhindoostani\r\nhindostani\r\nhindquarter\r\nhindquarters\r\nhindrance\r\nhindshank\r\nhindsight\r\nhindu\r\nhinduism\r\nhindustan\r\nhindustani\r\nhinge\r\nhinny\r\nhint\r\nhinterland\r\nhip\r\nhip-hop\r\nhip-length\r\nhipbone\r\nhipflask\r\nhiplength\r\nhipless\r\nhipline\r\nhipparchus\r\nhippeastrum\r\nhipped\r\nhippie\r\nhippies\r\nhippo\r\nhippobosca\r\nhippoboscid\r\nhippoboscidae\r\nhippocampus\r\nhippocastanaceae\r\nhippocrates\r\nhippocratic\r\nhippocrepis\r\nhippodamia\r\nhippodrome\r\nhippoglossoides\r\nhippoglossus\r\nhippopotamidae\r\nhippopotamus\r\nhipposideridae\r\nhipposideros\r\nhippotragus\r\nhippy\r\nhipster\r\nhipsters\r\nhipsurus\r\nhircine\r\nhire\r\nhire-purchase\r\nhired\r\nhireling\r\nhirer\r\nhirohito\r\nhiroshima\r\nhirschfeld\r\nhirschsprung\r\nhirsute\r\nhirsuteness\r\nhirsutism\r\nhirudinea\r\nhirudinean\r\nhirudinidae\r\nhirudo\r\nhirundinidae\r\nhirundo\r\nhispanic\r\nhispaniola\r\nhispaniolan\r\nhispid\r\nhiss\r\nhisser\r\nhissing\r\nhistaminase\r\nhistamine\r\nhistidine\r\nhistiocyte\r\nhistiocytosis\r\nhistocompatibility\r\nhistogram\r\nhistoincompatibility\r\nhistologic\r\nhistological\r\nhistologist\r\nhistology\r\nhistone\r\nhistorian\r\nhistoric\r\nhistorical\r\nhistoricalness\r\nhistoried\r\nhistoriographer\r\nhistoriography\r\nhistory\r\nhistrion\r\nhistrionic\r\nhistrionics\r\nhit\r\nhit-and-run\r\nhit-or-miss\r\nhitch\r\nhitchcock\r\nhitchhike\r\nhitchhiker\r\nhitchings\r\nhitchiti\r\nhitchrack\r\nhither\r\nhitherto\r\nhitler\r\nhitlerian\r\nhitless\r\nhitman\r\nhitter\r\nhitting\r\nhittite\r\nhiv\r\nhive\r\nhives\r\nhizballah\r\nhizbollah\r\nhizbullah\r\nhl\r\nhm\r\nhmo\r\nhmong\r\nhn\r\nhnd\r\nho\r\nho-hum\r\nhoactzin\r\nhoagie\r\nhoagland\r\nhoagy\r\nhoar\r\nhoard\r\nhoarder\r\nhoarding\r\nhoarfrost\r\nhoariness\r\nhoarse\r\nhoarsely\r\nhoarseness\r\nhoary\r\nhoatzin\r\nhoax\r\nhoaxer\r\nhob\r\nhobart\r\nhobbes\r\nhobbit\r\nhobble\r\nhobbledehoy\r\nhobbler\r\nhobbs\r\nhobby\r\nhobbyhorse\r\nhobbyism\r\nhobbyist\r\nhobgoblin\r\nhobnail\r\nhobnailed\r\nhobnob\r\nhobo\r\nhock\r\nhock-joint\r\nhockey\r\nhocus-pocus\r\nhod\r\nhodeida\r\nhoder\r\nhodgepodge\r\nhodgkin\r\nhodman\r\nhodometer\r\nhodoscope\r\nhodr\r\nhodur\r\nhoe\r\nhoecake\r\nhoenir\r\nhoffa\r\nhoffman\r\nhoffmann\r\nhoffmannsthal\r\nhog\r\nhog-tie\r\nhogan\r\nhogarth\r\nhogback\r\nhogchoker\r\nhogfish\r\nhogg\r\nhogged\r\nhogget\r\nhoggish\r\nhoggishness\r\nhogmanay\r\nhogshead\r\nhogwash\r\nhogweed\r\nhohenlinden\r\nhohenzollern\r\nhoheria\r\nhohhot\r\nhoist\r\nhoister\r\nhoity-toity\r\nhoka\r\nhokan\r\nhokey\r\nhokkaido\r\nhokkianese\r\nhokum\r\nhokusai\r\nholarrhena\r\nholbein\r\nholbrookia\r\nholcus\r\nhold\r\nhold-down\r\nholdall\r\nholder\r\nholdfast\r\nholding\r\nholdout\r\nholdover\r\nholdup\r\nhole\r\nhole-and-corner\r\nhole-in-corner\r\nhole-in-the-wall\r\nholey\r\nholibut\r\nholiday\r\nholidaymaker\r\nholier-than-thou\r\nholiness\r\nholism\r\nholistic\r\nholla\r\nholland\r\nhollandaise\r\nhollander\r\nhollands\r\nholler\r\nhollering\r\nhollerith\r\nhollo\r\nholloa\r\nhollow\r\nhollow-back\r\nhollow-eyed\r\nhollow-horned\r\nholloware\r\nhollowness\r\nhollowware\r\nholly\r\nhollygrape\r\nhollyhock\r\nhollywood\r\nholmes\r\nholmium\r\nholocaust\r\nholocene\r\nholocentridae\r\nholocentrus\r\nholocephalan\r\nholocephali\r\nholofernes\r\nhologram\r\nholograph\r\nholographic\r\nholographical\r\nholography\r\nholometabola\r\nholometabolic\r\nholometabolism\r\nholometabolous\r\nholometaboly\r\nholonym\r\nholonymy\r\nholophyte\r\nholophytic\r\nholothuria\r\nholothurian\r\nholothuridae\r\nholothuroidea\r\nholotype\r\nholozoic\r\nholstein\r\nholstein-friesian\r\nholster\r\nholy\r\nholystone\r\nhomage\r\nhomaridae\r\nhomarus\r\nhombre\r\nhomburg\r\nhome\r\nhome-baked\r\nhome-brewed\r\nhome-builder\r\nhome-cured\r\nhome-farm\r\nhome-loving\r\nhome-school\r\nhome-style\r\nhomebody\r\nhomebound\r\nhomeboy\r\nhomebrew\r\nhomebuilder\r\nhomecoming\r\nhomefolk\r\nhomegirl\r\nhomegrown\r\nhomel\r\nhomeland\r\nhomeless\r\nhomelessness\r\nhomelike\r\nhomeliness\r\nhomely\r\nhomemade\r\nhomemaker\r\nhomemaking\r\nhomeobox\r\nhomeopath\r\nhomeopathic\r\nhomeopathy\r\nhomeostasis\r\nhomeostatic\r\nhomeotherm\r\nhomeothermic\r\nhomeowner\r\nhomepage\r\nhomer\r\nhomeric\r\nhomeroom\r\nhomesick\r\nhomesickness\r\nhomespun\r\nhomestead\r\nhomesteader\r\nhomestretch\r\nhometown\r\nhomeward\r\nhomeward-bound\r\nhomewards\r\nhomework\r\nhomey\r\nhomicidal\r\nhomicide\r\nhomiletic\r\nhomiletical\r\nhomiletics\r\nhomily\r\nhominal\r\nhoming\r\nhominian\r\nhominid\r\nhominidae\r\nhominine\r\nhominoid\r\nhominoidea\r\nhominy\r\nhommos\r\nhomo\r\nhomobasidiomycetes\r\nhomocentric\r\nhomocercal\r\nhomochromatic\r\nhomocyclic\r\nhomoecious\r\nhomoeopath\r\nhomoeopathy\r\nhomoerotic\r\nhomoeroticism\r\nhomogenate\r\nhomogeneity\r\nhomogeneous\r\nhomogeneousness\r\nhomogenisation\r\nhomogenise\r\nhomogenised\r\nhomogenization\r\nhomogenize\r\nhomogenized\r\nhomogenous\r\nhomogeny\r\nhomograft\r\nhomograph\r\nhomogyne\r\nhomoiotherm\r\nhomoiothermic\r\nhomologic\r\nhomological\r\nhomologise\r\nhomologize\r\nhomologous\r\nhomology\r\nhomomorphism\r\nhomomorphy\r\nhomona\r\nhomonym\r\nhomonymic\r\nhomonymous\r\nhomonymy\r\nhomophile\r\nhomophobe\r\nhomophobia\r\nhomophobic\r\nhomophone\r\nhomophonic\r\nhomophonous\r\nhomophony\r\nhomoptera\r\nhomopteran\r\nhomosexual\r\nhomosexualism\r\nhomosexuality\r\nhomosporous\r\nhomospory\r\nhomostylic\r\nhomostylous\r\nhomotherm\r\nhomothermic\r\nhomozygosity\r\nhomozygous\r\nhomunculus\r\nhomy\r\nhomyel\r\nhoncho\r\nhondo\r\nhonduran\r\nhonduras\r\nhone\r\nhonegger\r\nhonest\r\nhonest-to-god\r\nhonest-to-goodness\r\nhonestly\r\nhonestness\r\nhonesty\r\nhoney\r\nhoney-colored\r\nhoney-coloured\r\nhoney-flower\r\nhoney-scented\r\nhoneybee\r\nhoneybells\r\nhoneycomb\r\nhoneycombed\r\nhoneycreeper\r\nhoneydew\r\nhoneyed\r\nhoneyflower\r\nhoneylike\r\nhoneymoon\r\nhoneymooner\r\nhoneypot\r\nhoneysucker\r\nhoneysuckle\r\nhoniara\r\nhonied\r\nhonk\r\nhonker\r\nhonkey\r\nhonkie\r\nhonky\r\nhonky-tonk\r\nhonkytonk\r\nhonolulu\r\nhonor\r\nhonorable\r\nhonorableness\r\nhonorably\r\nhonorarium\r\nhonorary\r\nhonored\r\nhonoree\r\nhonorific\r\nhonoring\r\nhonostyled\r\nhonour\r\nhonourable\r\nhonourableness\r\nhonourably\r\nhonoured\r\nhonours\r\nhonshu\r\nhoo-ha\r\nhoo-hah\r\nhooch\r\nhood\r\nhoodlum\r\nhoodmold\r\nhoodmould\r\nhoodoo\r\nhoodooism\r\nhoodwink\r\nhooey\r\nhoof\r\nhoof-mark\r\nhoofed\r\nhoofer\r\nhoofing\r\nhooflike\r\nhoofprint\r\nhook\r\nhook-nosed\r\nhook-shaped\r\nhookah\r\nhooke\r\nhooked\r\nhooker\r\nhooking\r\nhooklike\r\nhooknose\r\nhooks\r\nhookup\r\nhookworm\r\nhooky\r\nhooligan\r\nhooliganism\r\nhoop\r\nhoopla\r\nhoopoe\r\nhoopoo\r\nhoops\r\nhoopskirt\r\nhooray\r\nhoosegow\r\nhoosgow\r\nhoosier\r\nhoot\r\nhootch\r\nhooter\r\nhooved\r\nhoover\r\nhop\r\nhop-picker\r\nhop-skip\r\nhop-step-and-jump\r\nhope\r\nhoped-for\r\nhopeful\r\nhopefully\r\nhopefulness\r\nhopeh\r\nhopei\r\nhopeless\r\nhopelessly\r\nhopelessness\r\nhoper\r\nhopi\r\nhopkins\r\nhopkinson\r\nhopped-up\r\nhopper\r\nhopple\r\nhops\r\nhopsack\r\nhopsacking\r\nhopscotch\r\nhorace\r\nhorary\r\nhorde\r\nhordeolum\r\nhordeum\r\nhorehound\r\nhorizon\r\nhorizontal\r\nhorizontality\r\nhormonal\r\nhormone\r\nhorn\r\nhorn-rimmed\r\nhorn-shaped\r\nhornbeam\r\nhornbill\r\nhornblende\r\nhornbook\r\nhorne\r\nhorned\r\nhorneophyton\r\nhornet\r\nhorney\r\nhornfels\r\nhorniness\r\nhornist\r\nhornless\r\nhornlike\r\nhornpipe\r\nhornpout\r\nhornstone\r\nhornswoggle\r\nhornwort\r\nhorny\r\nhorologe\r\nhorologer\r\nhorologist\r\nhorology\r\nhoroscope\r\nhoroscopy\r\nhorowitz\r\nhorrendous\r\nhorrible\r\nhorribly\r\nhorrid\r\nhorridly\r\nhorridness\r\nhorrific\r\nhorrified\r\nhorrify\r\nhorrifying\r\nhorripilate\r\nhorripilation\r\nhorror\r\nhorror-stricken\r\nhorror-struck\r\nhorse\r\nhorse-and-buggy\r\nhorse-brier\r\nhorse-cart\r\nhorse-drawn\r\nhorse-head\r\nhorse-like\r\nhorse-pistol\r\nhorse-race\r\nhorse-trade\r\nhorse-trail\r\nhorseback\r\nhorsebean\r\nhorsebox\r\nhorsecar\r\nhorsecloth\r\nhorsefish\r\nhorseflesh\r\nhorsefly\r\nhorsehair\r\nhorsehead\r\nhorsehide\r\nhorselaugh\r\nhorseleech\r\nhorselike\r\nhorseman\r\nhorsemanship\r\nhorsemeat\r\nhorsemint\r\nhorseplay\r\nhorsepond\r\nhorsepower\r\nhorsepower-hour\r\nhorseradish\r\nhorseshit\r\nhorseshoe\r\nhorseshoer\r\nhorseshoes\r\nhorseshow\r\nhorsetail\r\nhorseweed\r\nhorsewhip\r\nhorsewhipping\r\nhorsewoman\r\nhorst\r\nhorta\r\nhortative\r\nhortatory\r\nhortensia\r\nhorticultural\r\nhorticulture\r\nhorticulturist\r\nhorus\r\nhosanna\r\nhose\r\nhosea\r\nhosepipe\r\nhosier\r\nhosiery\r\nhospice\r\nhospitable\r\nhospitableness\r\nhospitably\r\nhospital\r\nhospitalisation\r\nhospitalise\r\nhospitality\r\nhospitalization\r\nhospitalize\r\nhost\r\nhosta\r\nhostaceae\r\nhostage\r\nhostel\r\nhosteller\r\nhostelry\r\nhostess\r\nhostile\r\nhostilely\r\nhostilities\r\nhostility\r\nhostler\r\nhot\r\nhot-blooded\r\nhot-dog\r\nhot-rod\r\nhot-tempered\r\nhot-wire\r\nhot-work\r\nhotbed\r\nhotbox\r\nhotcake\r\nhotchpotch\r\nhotdog\r\nhotei\r\nhotei-chiku\r\nhotel\r\nhotel-casino\r\nhotelier\r\nhotelkeeper\r\nhotelman\r\nhotfoot\r\nhoth\r\nhothead\r\nhotheaded\r\nhothouse\r\nhothr\r\nhotly\r\nhotness\r\nhotplate\r\nhotpot\r\nhotshot\r\nhotspot\r\nhotspur\r\nhottentot\r\nhottish\r\nhottonia\r\nhoudah\r\nhoudini\r\nhoughton\r\nhouhere\r\nhoummos\r\nhound\r\nhound's-tongue\r\nhour\r\nhourglass\r\nhourglass-shaped\r\nhouri\r\nhourlong\r\nhourly\r\nhours\r\nhousatonic\r\nhouse\r\nhouse-builder\r\nhouse-proud\r\nhouse-raising\r\nhouse-to-house\r\nhouse-train\r\nhouse-trained\r\nhouseboat\r\nhousebound\r\nhousebreak\r\nhousebreaker\r\nhousebreaking\r\nhousebroken\r\nhousebuilder\r\nhouseclean\r\nhousecleaning\r\nhousecoat\r\nhousecraft\r\nhousedog\r\nhousefather\r\nhousefly\r\nhouseful\r\nhouseguest\r\nhousehold\r\nhouseholder\r\nhousehusband\r\nhousekeep\r\nhousekeeper\r\nhousekeeping\r\nhouselights\r\nhousemaid\r\nhouseman\r\nhousemaster\r\nhousemate\r\nhousemother\r\nhousepaint\r\nhouseplant\r\nhouseroom\r\nhousetop\r\nhousewarming\r\nhousewife\r\nhousewifely\r\nhousewifery\r\nhousework\r\nhousewrecker\r\nhousing\r\nhousman\r\nhouston\r\nhouttuynia\r\nhouyhnhnm\r\nhouyhnhnms\r\nhovea\r\nhovel\r\nhover\r\nhovercraft\r\nhow-d'ye-do\r\nhow-do-you-do\r\nhoward\r\nhowdah\r\nhowdy\r\nhowe\r\nhowells\r\nhowever\r\nhowitzer\r\nhowl\r\nhowler\r\nhowling\r\nhoy\r\nhoya\r\nhoyden\r\nhoydenish\r\nhoydenism\r\nhoyle\r\nhp\r\nhq\r\nhr\r\nhrolf\r\nhrt\r\nhrvatska\r\nhryvnia\r\nhs\r\nhs1\r\nhs2\r\nhsian\r\nhsv-1\r\nhsv-2\r\nhsv-i\r\nhsv-ii\r\nhtlv-1\r\nhtml\r\nhttp\r\nhua\r\nhuainaputina\r\nhualapai\r\nhualpai\r\nhuamachil\r\nhuambo\r\nhuarache\r\nhuaraches\r\nhuascaran\r\nhub\r\nhub-and-spoke\r\nhubbard\r\nhubble\r\nhubble-bubble\r\nhubbly-bubbly\r\nhubbub\r\nhubby\r\nhubcap\r\nhubel\r\nhubris\r\nhuck\r\nhuckaback\r\nhuckleberry\r\nhuckster\r\nhud\r\nhuddle\r\nhuddled\r\nhuddler\r\nhudood\r\nhudson\r\nhudsonia\r\nhudud\r\nhue\r\nhueless\r\nhuff\r\nhuffiness\r\nhuffing\r\nhuffish\r\nhuffishness\r\nhuffy\r\nhug\r\nhug-me-tight\r\nhuge\r\nhugely\r\nhugger\r\nhugger-mugger\r\nhugging\r\nhuggins\r\nhughes\r\nhugo\r\nhugoesque\r\nhugueninia\r\nhuguenot\r\nhuisache\r\nhuitre\r\nhuji\r\nhula\r\nhula-hoop\r\nhula-hula\r\nhulk\r\nhulking\r\nhulky\r\nhull\r\nhullabaloo\r\nhullo\r\nhulsea\r\nhum\r\nhuman\r\nhuman-centered\r\nhuman-centred\r\nhuman-sized\r\nhumane\r\nhumanely\r\nhumaneness\r\nhumanisation\r\nhumanise\r\nhumanism\r\nhumanist\r\nhumanistic\r\nhumanitarian\r\nhumanitarianism\r\nhumanities\r\nhumanity\r\nhumanization\r\nhumanize\r\nhumankind\r\nhumanlike\r\nhumanness\r\nhumanoid\r\nhumans\r\nhumate\r\nhumber\r\nhumble\r\nhumblebee\r\nhumbled\r\nhumbleness\r\nhumbling\r\nhumbly\r\nhumboldt\r\nhumbug\r\nhumdinger\r\nhumdrum\r\nhume\r\nhumectant\r\nhumerus\r\nhumic\r\nhumid\r\nhumidify\r\nhumidity\r\nhumidness\r\nhumification\r\nhumified\r\nhumiliate\r\nhumiliated\r\nhumiliating\r\nhumiliatingly\r\nhumiliation\r\nhumility\r\nhumin\r\nhummer\r\nhumming\r\nhummingbird\r\nhummock\r\nhummus\r\nhumongous\r\nhumor\r\nhumoral\r\nhumoring\r\nhumorist\r\nhumorless\r\nhumorlessly\r\nhumorous\r\nhumorously\r\nhumorousness\r\nhumour\r\nhumourist\r\nhumourless\r\nhumourlessly\r\nhumourous\r\nhumous\r\nhump\r\nhumpback\r\nhumpbacked\r\nhumped\r\nhumperdinck\r\nhumulin\r\nhumulus\r\nhumus\r\nhun\r\nhunan\r\nhunch\r\nhunchback\r\nhunchbacked\r\nhunched\r\nhundred\r\nhundred-and-eightieth\r\nhundred-and-fifteenth\r\nhundred-and-fifth\r\nhundred-and-fiftieth\r\nhundred-and-fifty-fifth\r\nhundred-and-first\r\nhundred-and-fortieth\r\nhundred-and-forty-fifth\r\nhundred-and-ninetieth\r\nhundred-and-seventieth\r\nhundred-and-seventy-fifth\r\nhundred-and-sixtieth\r\nhundred-and-sixty-fifth\r\nhundred-and-tenth\r\nhundred-and-thirtieth\r\nhundred-and-thirty-fifth\r\nhundred-and-twentieth\r\nhundred-and-twenty-fifth\r\nhundred-percenter\r\nhundredfold\r\nhundredth\r\nhundredweight\r\nhung\r\nhungarian\r\nhungary\r\nhunger\r\nhungrily\r\nhungriness\r\nhungry\r\nhunk\r\nhunker\r\nhunkered\r\nhunkpapa\r\nhunky-dory\r\nhunnemannia\r\nhunt\r\nhunted\r\nhunter\r\nhunter-gatherer\r\nhunting\r\nhuntington\r\nhuntress\r\nhuntsman\r\nhuntsville\r\nhupa\r\nhurdle\r\nhurdler\r\nhurdles\r\nhurdling\r\nhurdy-gurdy\r\nhurl\r\nhurler\r\nhurling\r\nhurok\r\nhuron\r\nhurrah\r\nhurricane\r\nhurried\r\nhurriedly\r\nhurriedness\r\nhurry\r\nhurrying\r\nhurt\r\nhurtful\r\nhurting\r\nhurtle\r\nhurtling\r\nhus\r\nhusain\r\nhusayn\r\nhusband\r\nhusbandly\r\nhusbandman\r\nhusbandry\r\nhush\r\nhush-hush\r\nhushed\r\nhushed-up\r\nhushing\r\nhushpuppy\r\nhusk\r\nhuskily\r\nhuskiness\r\nhusking\r\nhusky\r\nhuss\r\nhussar\r\nhussein\r\nhusserl\r\nhussite\r\nhussy\r\nhustings\r\nhustle\r\nhustler\r\nhuston\r\nhut\r\nhutch\r\nhutchins\r\nhutchinson\r\nhutment\r\nhutton\r\nhutu\r\nhutzpah\r\nhuxleian\r\nhuxley\r\nhuxleyan\r\nhuygens\r\nhyacinth\r\nhyacinthaceae\r\nhyacinthoides\r\nhyades\r\nhyaena\r\nhyaenidae\r\nhyalin\r\nhyaline\r\nhyalinisation\r\nhyalinization\r\nhyaloid\r\nhyalophora\r\nhyaloplasm\r\nhyaloplasmic\r\nhyalosperma\r\nhyalospongiae\r\nhyaluronidase\r\nhyazyme\r\nhybanthus\r\nhybrid\r\nhybridisation\r\nhybridise\r\nhybridization\r\nhybridize\r\nhybridizing\r\nhybridoma\r\nhydantoin\r\nhydathode\r\nhydatid\r\nhydatidosis\r\nhyderabad\r\nhydnaceae\r\nhydnocarpus\r\nhydnoraceae\r\nhydnum\r\nhydra\r\nhydralazine\r\nhydramnios\r\nhydrangea\r\nhydrangeaceae\r\nhydrant\r\nhydrargyrum\r\nhydrarthrosis\r\nhydrastis\r\nhydrate\r\nhydrated\r\nhydration\r\nhydraulic\r\nhydraulically\r\nhydraulicly\r\nhydraulics\r\nhydrazine\r\nhydrazoite\r\nhydremia\r\nhydric\r\nhydride\r\nhydrilla\r\nhydrobates\r\nhydrobatidae\r\nhydrocarbon\r\nhydrocele\r\nhydrocephalic\r\nhydrocephalus\r\nhydrocephaly\r\nhydrocharidaceae\r\nhydrocharis\r\nhydrocharitaceae\r\nhydrochloride\r\nhydrochlorofluorocarbon\r\nhydrochlorothiazide\r\nhydrochoeridae\r\nhydrochoerus\r\nhydrocolloid\r\nhydrocortisone\r\nhydrocortone\r\nhydrocracking\r\nhydrodamalis\r\nhydrodiuril\r\nhydrodynamic\r\nhydrodynamics\r\nhydroelectric\r\nhydroelectricity\r\nhydroflumethiazide\r\nhydrofluorocarbon\r\nhydrofoil\r\nhydrogel\r\nhydrogen\r\nhydrogen-bomb\r\nhydrogenate\r\nhydrogenation\r\nhydrographic\r\nhydrographical\r\nhydrography\r\nhydroid\r\nhydrokinetic\r\nhydrokinetics\r\nhydrolise\r\nhydrolith\r\nhydrolize\r\nhydrologist\r\nhydrology\r\nhydrolysate\r\nhydrolyse\r\nhydrolysis\r\nhydrolyzable\r\nhydrolyze\r\nhydromancer\r\nhydromancy\r\nhydromantes\r\nhydromel\r\nhydrometer\r\nhydrometric\r\nhydrometry\r\nhydromorphone\r\nhydromyinae\r\nhydromys\r\nhydronephrosis\r\nhydropathic\r\nhydropathy\r\nhydrophidae\r\nhydrophilic\r\nhydrophobia\r\nhydrophobic\r\nhydrophobicity\r\nhydrophyllaceae\r\nhydrophyllum\r\nhydrophyte\r\nhydrophytic\r\nhydroplane\r\nhydroponic\r\nhydroponics\r\nhydrops\r\nhydrosphere\r\nhydrostatic\r\nhydrostatics\r\nhydrotherapy\r\nhydrothorax\r\nhydrous\r\nhydroxide\r\nhydroxy\r\nhydroxybenzene\r\nhydroxychloroquine\r\nhydroxyl\r\nhydroxymethyl\r\nhydroxyproline\r\nhydroxytetracycline\r\nhydroxyzine\r\nhydrozoa\r\nhydrozoan\r\nhydrus\r\nhyemoschus\r\nhyena\r\nhyerbolise\r\nhygeia\r\nhygiene\r\nhygienic\r\nhygienical\r\nhygienically\r\nhygienics\r\nhygienise\r\nhygienist\r\nhygienize\r\nhygrocybe\r\nhygrodeik\r\nhygrometer\r\nhygrophoraceae\r\nhygrophorus\r\nhygrophyte\r\nhygrophytic\r\nhygroscope\r\nhygroscopic\r\nhygroton\r\nhygrotrama\r\nhyla\r\nhylactophryne\r\nhylidae\r\nhylobates\r\nhylobatidae\r\nhylocereus\r\nhylocichla\r\nhylophylax\r\nhymen\r\nhymenaea\r\nhymenal\r\nhymenanthera\r\nhymeneal\r\nhymeneals\r\nhymenium\r\nhymenogastrales\r\nhymenomycetes\r\nhymenophyllaceae\r\nhymenophyllum\r\nhymenopter\r\nhymenoptera\r\nhymenopteran\r\nhymenopteron\r\nhymenopterous\r\nhymie\r\nhymn\r\nhymnal\r\nhymnary\r\nhymnbook\r\nhymnody\r\nhynerpeton\r\nhyoid\r\nhyoscine\r\nhyoscyamine\r\nhyoscyamus\r\nhypaethral\r\nhypallage\r\nhypanthium\r\nhypatia\r\nhype\r\nhypentelium\r\nhyperacidity\r\nhyperactive\r\nhyperactivity\r\nhyperacusia\r\nhyperacusis\r\nhyperadrenalism\r\nhyperadrenocorticism\r\nhyperaemia\r\nhyperaldosteronism\r\nhyperalimentation\r\nhyperbaton\r\nhyperbetalipoproteinemia\r\nhyperbilirubinemia\r\nhyperbola\r\nhyperbole\r\nhyperbolic\r\nhyperbolically\r\nhyperbolize\r\nhyperboloid\r\nhyperboloidal\r\nhyperborean\r\nhypercalcaemia\r\nhypercalcemia\r\nhypercalcinuria\r\nhypercalciuria\r\nhypercapnia\r\nhypercarbia\r\nhypercatalectic\r\nhypercellularity\r\nhypercholesteremia\r\nhypercholesterolemia\r\nhypercoaster\r\nhypercritical\r\nhyperdactyly\r\nhyperemesis\r\nhyperemia\r\nhyperemic\r\nhyperextend\r\nhyperextension\r\nhyperfine\r\nhyperglycaemia\r\nhyperglycemia\r\nhyperhidrosis\r\nhypericaceae\r\nhypericales\r\nhypericism\r\nhypericum\r\nhyperidrosis\r\nhyperion\r\nhyperkalemia\r\nhyperlink\r\nhyperlipaemia\r\nhyperlipemia\r\nhyperlipidaemia\r\nhyperlipidemia\r\nhyperlipoidaemia\r\nhyperlipoidemia\r\nhyperlipoproteinemia\r\nhypermarket\r\nhypermastigina\r\nhypermastigote\r\nhypermedia\r\nhypermenorrhea\r\nhypermetropia\r\nhypermetropic\r\nhypermetropy\r\nhypermotility\r\nhypernatremia\r\nhypernym\r\nhypernymy\r\nhyperoartia\r\nhyperodontidae\r\nhyperoglyphe\r\nhyperon\r\nhyperoodon\r\nhyperope\r\nhyperopia\r\nhyperopic\r\nhyperotreta\r\nhyperparathyroidism\r\nhyperpiesia\r\nhyperpiesis\r\nhyperpigmentation\r\nhyperpituitarism\r\nhyperplasia\r\nhyperpnea\r\nhyperpyrexia\r\nhypersecretion\r\nhypersensitised\r\nhypersensitive\r\nhypersensitivity\r\nhypersensitized\r\nhypersomnia\r\nhypersplenism\r\nhyperstat\r\nhypertensin\r\nhypertension\r\nhypertensive\r\nhypertext\r\nhyperthermal\r\nhyperthermia\r\nhyperthermy\r\nhyperthyroidism\r\nhypertonia\r\nhypertonic\r\nhypertonicity\r\nhypertonus\r\nhypertrophied\r\nhypertrophy\r\nhypervelocity\r\nhyperventilate\r\nhyperventilation\r\nhypervitaminosis\r\nhypervolaemia\r\nhypervolemia\r\nhypesthesia\r\nhypethral\r\nhypha\r\nhyphantria\r\nhyphema\r\nhyphen\r\nhyphenate\r\nhyphenated\r\nhyphenation\r\nhypnagogic\r\nhypnagogue\r\nhypnoanalysis\r\nhypnogenesis\r\nhypnogogic\r\nhypnoid\r\nhypnopedia\r\nhypnophobia\r\nhypnos\r\nhypnosis\r\nhypnotherapy\r\nhypnotic\r\nhypnotise\r\nhypnotised\r\nhypnotiser\r\nhypnotism\r\nhypnotist\r\nhypnotize\r\nhypnotized\r\nhypnotizer\r\nhypo\r\nhypoactive\r\nhypoadrenalism\r\nhypoadrenocorticism\r\nhypobasidium\r\nhypobetalipoproteinemia\r\nhypoblast\r\nhypocalcaemia\r\nhypocalcemia\r\nhypocapnia\r\nhypocellularity\r\nhypochaeris\r\nhypochlorite\r\nhypochoeris\r\nhypochondria\r\nhypochondriac\r\nhypochondriacal\r\nhypochondriasis\r\nhypochondrium\r\nhypocorism\r\nhypocreaceae\r\nhypocreales\r\nhypocrisy\r\nhypocrite\r\nhypocritical\r\nhypocycloid\r\nhypoderma\r\nhypodermal\r\nhypodermatidae\r\nhypodermic\r\nhypodermis\r\nhypoesthesia\r\nhypogammaglobulinemia\r\nhypoglossal\r\nhypoglycaemia\r\nhypoglycaemic\r\nhypoglycemia\r\nhypoglycemic\r\nhypognathous\r\nhypogonadism\r\nhypokalemia\r\nhypolipoproteinemia\r\nhyponatremia\r\nhyponym\r\nhyponymy\r\nhypopachus\r\nhypoparathyroidism\r\nhypophyseal\r\nhypophysectomise\r\nhypophysectomised\r\nhypophysectomize\r\nhypophysectomized\r\nhypophysectomy\r\nhypophysial\r\nhypophysis\r\nhypopigmentation\r\nhypopitys\r\nhypoplasia\r\nhypopnea\r\nhypoproteinemia\r\nhyposmia\r\nhypospadias\r\nhypostasis\r\nhypostatisation\r\nhypostatise\r\nhypostatization\r\nhypostatize\r\nhypotension\r\nhypotensive\r\nhypotenuse\r\nhypothalamic\r\nhypothalamus\r\nhypothecate\r\nhypothermia\r\nhypothermic\r\nhypothesis\r\nhypothesise\r\nhypothesize\r\nhypothetic\r\nhypothetical\r\nhypothrombinemia\r\nhypothyroidism\r\nhypotonia\r\nhypotonic\r\nhypotonicity\r\nhypotonus\r\nhypovitaminosis\r\nhypovolaemia\r\nhypovolaemic\r\nhypovolemia\r\nhypovolemic\r\nhypoxia\r\nhypoxidaceae\r\nhypoxis\r\nhypozeugma\r\nhypozeuxis\r\nhypsiglena\r\nhypsiprymnodon\r\nhypsography\r\nhypsometer\r\nhypsometry\r\nhyracoidea\r\nhyracotherium\r\nhyrax\r\nhyson\r\nhyssop\r\nhyssopus\r\nhysterectomy\r\nhysteresis\r\nhysteria\r\nhysteric\r\nhysterical\r\nhysterics\r\nhysterocatalepsy\r\nhysterosalpingogram\r\nhysteroscopy\r\nhysterotomy\r\nhystricidae\r\nhystricomorpha\r\nhytrin\r\nhz\r\ni\r\ni-beam\r\ni.d.\r\ni.e.\r\ni.e.d.\r\ni.q.\r\ni.w.w.\r\nia\r\niaa\r\niaea\r\niago\r\niamb\r\niambic\r\niambus\r\nianfu\r\niapetus\r\niatrogenic\r\nib.\r\nibadan\r\nibda-c\r\niberia\r\niberian\r\niberis\r\nibero-mesornis\r\nibert\r\nibex\r\nibid.\r\nibidem\r\nibis\r\nibn-roshd\r\nibn-sina\r\nibrahim\r\nibrd\r\nibsen\r\nibsenian\r\nibuprofen\r\nic\r\nicaco\r\nicao\r\nicarus\r\nicbm\r\nicc\r\nice\r\nice-clogged\r\nice-cold\r\nice-free\r\nice-skater\r\nice-wagon\r\niceberg\r\niceboat\r\nicebound\r\nicebox\r\nicebreaker\r\nicecap\r\nicecream\r\nicefall\r\nicehouse\r\niceland\r\nicelander\r\nicelandic\r\nicelandic-speaking\r\niceman\r\nicepick\r\nicetray\r\nichneumon\r\nichneumonidae\r\nichor\r\nichorous\r\nichthyolatry\r\nichthyologist\r\nichthyology\r\nichthyosaur\r\nichthyosauria\r\nichthyosauridae\r\nichthyosaurus\r\nichthyosis\r\nichyostega\r\nicicle\r\niciness\r\nicing\r\nicky\r\nicon\r\niconic\r\niconoclasm\r\niconoclast\r\niconoclastic\r\niconography\r\niconolatry\r\niconology\r\niconoscope\r\nicosahedral\r\nicosahedron\r\nicsh\r\nictal\r\nictalurus\r\nicteria\r\nicteric\r\nicteridae\r\nicterogenic\r\nicterus\r\nictic\r\nictiobus\r\nictodosaur\r\nictodosauria\r\nictonyx\r\nictus\r\nicu\r\nicy\r\nid\r\nida\r\nidaho\r\nidahoan\r\niddm\r\nidea\r\nideal\r\nidealisation\r\nidealise\r\nidealised\r\nidealism\r\nidealist\r\nidealistic\r\nideality\r\nidealization\r\nidealize\r\nidealized\r\nidealogue\r\nideate\r\nideation\r\nideational\r\nidempotent\r\nidentical\r\nidenticalness\r\nidentifiable\r\nidentification\r\nidentified\r\nidentifier\r\nidentify\r\nidentifying\r\nidentikit\r\nidentity\r\nideogram\r\nideograph\r\nideographic\r\nideography\r\nideologic\r\nideological\r\nideologist\r\nideologue\r\nideology\r\nides\r\nidesia\r\nidf\r\nidiocy\r\nidiographic\r\nidiolatry\r\nidiolect\r\nidiom\r\nidiomatic\r\nidiomatical\r\nidiopathic\r\nidiopathy\r\nidiosyncrasy\r\nidiosyncratic\r\nidiot\r\nidiotic\r\niditarod\r\nidle\r\nidleness\r\nidler\r\nidling\r\nidly\r\nido\r\nidocrase\r\nidol\r\nidolater\r\nidolatress\r\nidolatrous\r\nidolatry\r\nidolisation\r\nidolise\r\nidolised\r\nidoliser\r\nidolization\r\nidolize\r\nidolized\r\nidolizer\r\nidp\r\nidun\r\nidyl\r\nidyll\r\nidyllic\r\nie\r\nied\r\nifc\r\niffy\r\nig\r\niga\r\nigbo\r\nigd\r\nige\r\nigg\r\nigigi\r\niglesias\r\nigloo\r\niglu\r\nigm\r\nignatius\r\nigneous\r\nignescent\r\nignitable\r\nignite\r\nignited\r\nigniter\r\nignitible\r\nignition\r\nignitor\r\nignobility\r\nignoble\r\nignobleness\r\nignobly\r\nignominious\r\nignominiously\r\nignominiousness\r\nignominy\r\nignoramus\r\nignorance\r\nignorant\r\nignorantness\r\nignore\r\nignored\r\niguana\r\niguania\r\niguanid\r\niguanidae\r\niguanodon\r\niguanodontidae\r\niguassu\r\niguazu\r\nii\r\niii\r\niis\r\nijssel\r\nijsselmeer\r\nijtihad\r\nike\r\nikhanaton\r\nikon\r\nil\r\nilama\r\nilang-ilang\r\nile-de-france\r\nile-st-louis\r\nileitis\r\nileostomy\r\nileum\r\nileus\r\nilex\r\niliac\r\niliad\r\niliamna\r\nilion\r\nilium\r\nilk\r\nill\r\nill-advised\r\nill-affected\r\nill-being\r\nill-bred\r\nill-breeding\r\nill-chosen\r\nill-conceived\r\nill-considered\r\nill-defined\r\nill-dressed\r\nill-equipped\r\nill-famed\r\nill-fated\r\nill-favored\r\nill-favoured\r\nill-fed\r\nill-fitting\r\nill-formed\r\nill-gotten\r\nill-humored\r\nill-humoured\r\nill-judged\r\nill-mannered\r\nill-natured\r\nill-omened\r\nill-proportioned\r\nill-scented\r\nill-shapen\r\nill-smelling\r\nill-sorted\r\nill-starred\r\nill-tempered\r\nill-timed\r\nill-treat\r\nill-treated\r\nill-treatment\r\nill-usage\r\nill-use\r\nill-used\r\nillampu\r\nillation\r\nillative\r\nillecebrum\r\nillegal\r\nillegalise\r\nillegality\r\nillegalize\r\nillegally\r\nillegibility\r\nillegible\r\nillegibly\r\nillegitimacy\r\nillegitimate\r\nillegitimately\r\nilliberal\r\nilliberality\r\nilliberally\r\nillicit\r\nillicitly\r\nillicitness\r\nillicium\r\nillimani\r\nillimitable\r\nillinois\r\nillinoisan\r\nilliteracy\r\nilliterate\r\nillness\r\nillogic\r\nillogical\r\nillogicality\r\nillogically\r\nillogicalness\r\nillume\r\nilluminance\r\nilluminant\r\nilluminate\r\nilluminated\r\nilluminating\r\nillumination\r\nillumine\r\nillusion\r\nillusional\r\nillusionary\r\nillusionist\r\nillusive\r\nillusory\r\nillustrate\r\nillustration\r\nillustrative\r\nillustrator\r\nillustrious\r\nillustriousness\r\nillyria\r\nillyrian\r\nilmen\r\nilmenite\r\nilo\r\nilosone\r\nilx\r\nilxx\r\nilxxx\r\nimage\r\nimagery\r\nimaginable\r\nimaginary\r\nimagination\r\nimaginative\r\nimaginatively\r\nimaginativeness\r\nimagine\r\nimagined\r\nimaging\r\nimagism\r\nimago\r\nimam\r\nimaret\r\nimaum\r\nimavate\r\nimbalance\r\nimbalanced\r\nimbauba\r\nimbecile\r\nimbecilic\r\nimbecility\r\nimbed\r\nimbibe\r\nimbiber\r\nimbibing\r\nimbibition\r\nimbricate\r\nimbricated\r\nimbrication\r\nimbroglio\r\nimbrue\r\nimbue\r\nimf\r\nimidazole\r\nimide\r\niminazole\r\nimipramine\r\nimitate\r\nimitation\r\nimitative\r\nimitator\r\nimmaculate\r\nimmaculateness\r\nimmanence\r\nimmanency\r\nimmanent\r\nimmaterial\r\nimmaterialise\r\nimmateriality\r\nimmaterialize\r\nimmature\r\nimmaturely\r\nimmatureness\r\nimmaturity\r\nimmeasurable\r\nimmeasurably\r\nimmediacy\r\nimmediate\r\nimmediately\r\nimmediateness\r\nimmemorial\r\nimmense\r\nimmensely\r\nimmenseness\r\nimmensity\r\nimmensurable\r\nimmerse\r\nimmersion\r\nimmigrant\r\nimmigrate\r\nimmigration\r\nimminence\r\nimminency\r\nimminent\r\nimminentness\r\nimmingle\r\nimmiscible\r\nimmix\r\nimmobile\r\nimmobilisation\r\nimmobilise\r\nimmobility\r\nimmobilization\r\nimmobilize\r\nimmobilizing\r\nimmoderate\r\nimmoderately\r\nimmoderateness\r\nimmoderation\r\nimmodest\r\nimmodestly\r\nimmodesty\r\nimmolate\r\nimmolation\r\nimmoral\r\nimmorality\r\nimmorally\r\nimmortal\r\nimmortalise\r\nimmortality\r\nimmortalize\r\nimmortelle\r\nimmotile\r\nimmotility\r\nimmovability\r\nimmovable\r\nimmovableness\r\nimmoveable\r\nimmune\r\nimmunisation\r\nimmunise\r\nimmunised\r\nimmunity\r\nimmunization\r\nimmunize\r\nimmunized\r\nimmunoassay\r\nimmunochemical\r\nimmunochemistry\r\nimmunocompetence\r\nimmunocompetent\r\nimmunocompromised\r\nimmunodeficiency\r\nimmunodeficient\r\nimmunoelectrophoresis\r\nimmunofluorescence\r\nimmunogen\r\nimmunogenic\r\nimmunogenicity\r\nimmunoglobulin\r\nimmunohistochemistry\r\nimmunologic\r\nimmunological\r\nimmunologist\r\nimmunology\r\nimmunopathology\r\nimmunosuppressant\r\nimmunosuppressed\r\nimmunosuppression\r\nimmunosuppressive\r\nimmunosuppressor\r\nimmunotherapeutic\r\nimmunotherapy\r\nimmure\r\nimmurement\r\nimmutability\r\nimmutable\r\nimmutableness\r\nimmutably\r\nimo\r\nimp\r\nimpact\r\nimpacted\r\nimpaction\r\nimpair\r\nimpaired\r\nimpairer\r\nimpairment\r\nimpala\r\nimpale\r\nimpalement\r\nimpalpability\r\nimpalpable\r\nimpalpably\r\nimpanel\r\nimparipinnate\r\nimpart\r\nimpartation\r\nimpartial\r\nimpartiality\r\nimparting\r\nimpassable\r\nimpasse\r\nimpassioned\r\nimpassive\r\nimpassiveness\r\nimpassivity\r\nimpasto\r\nimpatience\r\nimpatient\r\nimpatiently\r\nimpeach\r\nimpeachability\r\nimpeachment\r\nimpeccability\r\nimpeccable\r\nimpeccant\r\nimpecunious\r\nimpecuniousness\r\nimpedance\r\nimpede\r\nimpeded\r\nimpediment\r\nimpedimenta\r\nimpeding\r\nimpel\r\nimpelled\r\nimpellent\r\nimpeller\r\nimpelling\r\nimpend\r\nimpendence\r\nimpendency\r\nimpendent\r\nimpending\r\nimpenetrability\r\nimpenetrable\r\nimpenetrableness\r\nimpenitence\r\nimpenitency\r\nimpenitent\r\nimpenitently\r\nimperative\r\nimperatively\r\nimperativeness\r\nimperceptibility\r\nimperceptible\r\nimperceptibly\r\nimperfect\r\nimperfectibility\r\nimperfectible\r\nimperfection\r\nimperfective\r\nimperfectly\r\nimperfectness\r\nimperforate\r\nimperial\r\nimperialism\r\nimperialist\r\nimperialistic\r\nimperil\r\nimperious\r\nimperiousness\r\nimperishability\r\nimperishable\r\nimperishableness\r\nimperishingness\r\nimperium\r\nimpermanence\r\nimpermanency\r\nimpermanent\r\nimpermeability\r\nimpermeable\r\nimpermeableness\r\nimpermissibility\r\nimpermissible\r\nimpermissibly\r\nimpersonal\r\nimpersonally\r\nimpersonate\r\nimpersonation\r\nimpersonator\r\nimpertinence\r\nimpertinent\r\nimpertinently\r\nimperturbability\r\nimperturbable\r\nimperturbableness\r\nimperviable\r\nimpervious\r\nimperviousness\r\nimpetiginous\r\nimpetigo\r\nimpetuosity\r\nimpetuous\r\nimpetuously\r\nimpetuousness\r\nimpetus\r\nimpiety\r\nimpinge\r\nimpingement\r\nimpinging\r\nimpious\r\nimpiously\r\nimpiousness\r\nimpish\r\nimpishly\r\nimpishness\r\nimplacable\r\nimplant\r\nimplantation\r\nimplanted\r\nimplausibility\r\nimplausible\r\nimplausibleness\r\nimplausibly\r\nimplement\r\nimplemental\r\nimplementation\r\nimplemented\r\nimplicate\r\nimplicated\r\nimplication\r\nimplicational\r\nimplicative\r\nimplicit\r\nimplicitly\r\nimplicitness\r\nimplied\r\nimplike\r\nimplode\r\nimplore\r\nimploring\r\nimploringly\r\nimplosion\r\nimply\r\nimpolite\r\nimpolitely\r\nimpoliteness\r\nimpolitic\r\nimponderable\r\nimport\r\nimportance\r\nimportant\r\nimportant-looking\r\nimportantly\r\nimportation\r\nimported\r\nimportee\r\nimporter\r\nimporting\r\nimportunate\r\nimportunately\r\nimportune\r\nimportunity\r\nimpose\r\nimposed\r\nimposing\r\nimposingly\r\nimposition\r\nimpossibility\r\nimpossible\r\nimpossibleness\r\nimpossibly\r\nimpost\r\nimposter\r\nimpostor\r\nimposture\r\nimpotence\r\nimpotency\r\nimpotent\r\nimpotently\r\nimpound\r\nimpounding\r\nimpoundment\r\nimpoverish\r\nimpoverished\r\nimpoverishment\r\nimpracticability\r\nimpracticable\r\nimpracticableness\r\nimpractical\r\nimpracticality\r\nimprecate\r\nimprecation\r\nimprecise\r\nimprecisely\r\nimpreciseness\r\nimprecision\r\nimpregnability\r\nimpregnable\r\nimpregnate\r\nimpregnation\r\nimpresario\r\nimpress\r\nimpressed\r\nimpressible\r\nimpression\r\nimpressionable\r\nimpressionism\r\nimpressionist\r\nimpressionistic\r\nimpressive\r\nimpressively\r\nimpressiveness\r\nimpressment\r\nimprimatur\r\nimprint\r\nimprinting\r\nimprison\r\nimprisoned\r\nimprisonment\r\nimprobability\r\nimprobable\r\nimprobableness\r\nimprobably\r\nimpromptu\r\nimproper\r\nimproperly\r\nimproperness\r\nimpropriety\r\nimprovable\r\nimprove\r\nimproved\r\nimprovement\r\nimprover\r\nimprovidence\r\nimprovident\r\nimprovidently\r\nimproving\r\nimprovisation\r\nimprovise\r\nimprovised\r\nimprovize\r\nimprudence\r\nimprudent\r\nimprudently\r\nimpudence\r\nimpudent\r\nimpudently\r\nimpugn\r\nimpugnable\r\nimpuissance\r\nimpuissant\r\nimpulse\r\nimpulse-buy\r\nimpulsion\r\nimpulsive\r\nimpulsively\r\nimpulsiveness\r\nimpunity\r\nimpure\r\nimpureness\r\nimpurity\r\nimputable\r\nimputation\r\nimpute\r\nimputrescible\r\nimu\r\nimuran\r\nin\r\nin-basket\r\nin-between\r\nin-bounds\r\nin-chief\r\nin-fighting\r\nin-joke\r\nin-law\r\nin-migration\r\nin-person\r\nin-situ\r\nin-tray\r\nin-your-face\r\ninability\r\ninaccessibility\r\ninaccessible\r\ninaccuracy\r\ninaccurarte\r\ninaccurate\r\ninaccurately\r\ninachis\r\ninaction\r\ninactivate\r\ninactivation\r\ninactive\r\ninactiveness\r\ninactivity\r\ninadequacy\r\ninadequate\r\ninadequately\r\ninadequateness\r\ninadmissibility\r\ninadmissible\r\ninadvertence\r\ninadvertency\r\ninadvertent\r\ninadvertently\r\ninadvisability\r\ninadvisable\r\ninadvisably\r\ninaesthetic\r\ninalienable\r\ninalterable\r\ninamorata\r\ninamorato\r\ninane\r\ninanely\r\ninanimate\r\ninanimateness\r\ninanition\r\ninanity\r\ninanna\r\ninapplicability\r\ninapplicable\r\ninapposite\r\ninappositeness\r\ninappreciable\r\ninappropriate\r\ninappropriately\r\ninappropriateness\r\ninapt\r\ninaptitude\r\ninaptness\r\ninarguable\r\ninarticulate\r\ninarticulately\r\ninartistic\r\ninattention\r\ninattentive\r\ninattentively\r\ninattentiveness\r\ninaudibility\r\ninaudible\r\ninaudibleness\r\ninaudibly\r\ninaugural\r\ninaugurate\r\ninauguration\r\ninauspicious\r\ninauspiciously\r\ninauspiciousness\r\ninauthentic\r\ninboard\r\ninborn\r\ninbound\r\ninbred\r\ninbreeding\r\ninbuilt\r\ninc\r\ninca\r\nincalculable\r\nincalescence\r\nincan\r\nincandesce\r\nincandescence\r\nincandescent\r\nincantation\r\nincapability\r\nincapable\r\nincapableness\r\nincapacitate\r\nincapacitated\r\nincapacitating\r\nincapacity\r\nincarcerate\r\nincarceration\r\nincarnadine\r\nincarnate\r\nincarnation\r\nincase\r\nincased\r\nincasement\r\nincaution\r\nincautious\r\nincautiously\r\nincautiousness\r\nincendiarism\r\nincendiary\r\nincense\r\nincensed\r\nincentive\r\ninception\r\nincertain\r\nincertitude\r\nincessancy\r\nincessant\r\nincessantly\r\nincessantness\r\nincest\r\nincestuous\r\ninch\r\nincheon\r\ninchoate\r\ninchoative\r\ninchon\r\ninchworm\r\nincidence\r\nincident\r\nincidental\r\nincidentally\r\nincienso\r\nincinerate\r\nincineration\r\nincinerator\r\nincipience\r\nincipiency\r\nincipient\r\nincise\r\nincised\r\nincision\r\nincisive\r\nincisively\r\nincisiveness\r\nincisor\r\nincisura\r\nincisure\r\nincitation\r\nincite\r\nincitement\r\ninciter\r\nincitive\r\nincivility\r\ninclemency\r\ninclement\r\ninclementness\r\ninclination\r\nincline\r\ninclined\r\ninclining\r\ninclinometer\r\ninclose\r\ninclosure\r\ninclude\r\nincluded\r\ninclusion\r\ninclusive\r\nincognito\r\nincognizable\r\nincognizance\r\nincognizant\r\nincognoscible\r\nincoherence\r\nincoherency\r\nincoherent\r\nincoherently\r\nincombustible\r\nincome\r\nincoming\r\nincommensurable\r\nincommensurate\r\nincommode\r\nincommodious\r\nincommodiousness\r\nincommunicado\r\nincommunicative\r\nincommutability\r\nincommutable\r\nincomparable\r\nincomparably\r\nincompatibility\r\nincompatible\r\nincompatibly\r\nincompetence\r\nincompetency\r\nincompetent\r\nincompetently\r\nincomplete\r\nincompleteness\r\nincomprehensibility\r\nincomprehensible\r\nincomprehension\r\nincomprehensive\r\nincompressibility\r\nincompressible\r\nincomputable\r\ninconceivability\r\ninconceivable\r\ninconceivableness\r\ninconclusive\r\ninconclusively\r\ninconclusiveness\r\ninconel\r\nincongruent\r\nincongruity\r\nincongruous\r\nincongruousness\r\ninconsequence\r\ninconsequent\r\ninconsequential\r\ninconsequentially\r\ninconsequently\r\ninconsiderable\r\ninconsiderate\r\ninconsiderately\r\ninconsiderateness\r\ninconsideration\r\ninconsistency\r\ninconsistent\r\ninconsistently\r\ninconsolable\r\ninconspicuous\r\ninconspicuously\r\ninconspicuousness\r\ninconstancy\r\ninconstant\r\nincontestable\r\nincontestible\r\nincontinence\r\nincontinency\r\nincontinent\r\nincontrovertibility\r\nincontrovertible\r\nincontrovertibleness\r\nincontrovertibly\r\ninconvenience\r\ninconvenient\r\ninconveniently\r\ninconvertibility\r\ninconvertible\r\nincoordination\r\nincorporate\r\nincorporated\r\nincorporation\r\nincorporative\r\nincorporeal\r\nincorporeality\r\nincorrect\r\nincorrectly\r\nincorrectness\r\nincorrigible\r\nincorrupt\r\nincorruptibility\r\nincorruptible\r\nincorruption\r\nincorruptness\r\nincrease\r\nincreased\r\nincreasing\r\nincreasingly\r\nincredibility\r\nincredible\r\nincredibleness\r\nincredibly\r\nincredulity\r\nincredulous\r\nincredulously\r\nincrement\r\nincremental\r\nincriminate\r\nincriminating\r\nincrimination\r\nincriminatory\r\nincrust\r\nincrustation\r\nincubate\r\nincubation\r\nincubator\r\nincubus\r\ninculcate\r\ninculcation\r\ninculpability\r\ninculpable\r\ninculpableness\r\ninculpate\r\ninculpation\r\ninculpative\r\ninculpatory\r\nincumbency\r\nincumbent\r\nincumbrance\r\nincur\r\nincurability\r\nincurable\r\nincurableness\r\nincurious\r\nincurrence\r\nincurring\r\nincursion\r\nincursive\r\nincurvate\r\nincurvation\r\nincurvature\r\nincurved\r\nincus\r\nindaba\r\nindapamide\r\nindebted\r\nindebtedness\r\nindecency\r\nindecent\r\nindecently\r\nindecipherable\r\nindecision\r\nindecisive\r\nindecisively\r\nindecisiveness\r\nindecorous\r\nindecorously\r\nindecorousness\r\nindecorum\r\nindeed\r\nindefatigability\r\nindefatigable\r\nindefatigableness\r\nindefatigably\r\nindefeasible\r\nindefensible\r\nindefinable\r\nindefinite\r\nindefiniteness\r\nindefinity\r\nindehiscent\r\nindelible\r\nindelicacy\r\nindelicate\r\nindemnification\r\nindemnify\r\nindemnity\r\nindene\r\nindent\r\nindentation\r\nindented\r\nindention\r\nindenture\r\nindentured\r\nindependence\r\nindependency\r\nindependent\r\nindependently\r\ninderal\r\nindescribable\r\nindescribably\r\nindestructibility\r\nindestructible\r\nindeterminable\r\nindeterminacy\r\nindeterminate\r\nindeterminateness\r\nindetermination\r\nindex\r\nindexation\r\nindexer\r\nindexical\r\nindexing\r\nindexless\r\nindia\r\nindiaman\r\nindian\r\nindiana\r\nindianan\r\nindianapolis\r\nindic\r\nindicant\r\nindicate\r\nindication\r\nindicative\r\nindicator\r\nindicatoridae\r\nindicatory\r\nindict\r\nindictability\r\nindictable\r\nindiction\r\nindictment\r\nindie\r\nindifference\r\nindifferent\r\nindigen\r\nindigence\r\nindigene\r\nindigenous\r\nindigenousness\r\nindigent\r\nindigestibility\r\nindigestible\r\nindigestibleness\r\nindigestion\r\nindigirka\r\nindignant\r\nindignation\r\nindignity\r\nindigo\r\nindigofera\r\nindigotin\r\nindinavir\r\nindirect\r\nindirection\r\nindirectly\r\nindirectness\r\nindiscernible\r\nindiscipline\r\nindiscreet\r\nindiscreetly\r\nindiscreetness\r\nindiscrete\r\nindiscretion\r\nindiscriminate\r\nindiscriminately\r\nindiscriminating\r\nindispensability\r\nindispensable\r\nindispensableness\r\nindispose\r\nindisposed\r\nindisposition\r\nindisputability\r\nindisputable\r\nindissoluble\r\nindistinct\r\nindistinctly\r\nindistinctness\r\nindistinguishability\r\nindistinguishable\r\nindite\r\nindium\r\nindividual\r\nindividualisation\r\nindividualise\r\nindividualised\r\nindividualism\r\nindividualist\r\nindividualistic\r\nindividuality\r\nindividualization\r\nindividualize\r\nindividualized\r\nindividually\r\nindividuate\r\nindividuation\r\nindivisible\r\nindo-aryan\r\nindo-european\r\nindo-germanic\r\nindo-hittite\r\nindo-iranian\r\nindochina\r\nindocile\r\nindocin\r\nindoctrinate\r\nindoctrination\r\nindolence\r\nindolent\r\nindomethacin\r\nindomitability\r\nindomitable\r\nindonesia\r\nindonesian\r\nindoor\r\nindoors\r\nindorse\r\nindorsement\r\nindorser\r\nindra\r\nindrawn\r\nindri\r\nindriidae\r\nindris\r\nindubitability\r\nindubitable\r\ninduce\r\ninduced\r\ninducement\r\ninducer\r\ninducing\r\ninducive\r\ninduct\r\ninductance\r\ninductee\r\ninduction\r\ninductive\r\ninductor\r\nindue\r\nindulge\r\nindulgence\r\nindulgent\r\nindulging\r\nindument\r\nindumentum\r\nindurate\r\ninduration\r\nindus\r\nindusial\r\nindusium\r\nindustrial\r\nindustrial-strength\r\nindustrialisation\r\nindustrialise\r\nindustrialised\r\nindustrialism\r\nindustrialist\r\nindustrialization\r\nindustrialize\r\nindustrialized\r\nindustrious\r\nindustriousness\r\nindustry\r\nindwell\r\nindweller\r\nindwelling\r\ninebriant\r\ninebriate\r\ninebriated\r\ninebriation\r\ninebriety\r\ninedible\r\nineffable\r\nineffably\r\nineffective\r\nineffectively\r\nineffectiveness\r\nineffectual\r\nineffectuality\r\nineffectually\r\nineffectualness\r\ninefficacious\r\ninefficaciously\r\ninefficaciousness\r\ninefficacy\r\ninefficiency\r\ninefficient\r\ninefficiently\r\ninelaborate\r\ninelastic\r\ninelasticity\r\ninelegance\r\ninelegant\r\ninelegantly\r\nineligibility\r\nineligible\r\nineloquently\r\nineluctability\r\nineluctable\r\nineluctably\r\ninept\r\nineptitude\r\nineptly\r\nineptness\r\ninequality\r\ninequitable\r\ninequitably\r\ninequity\r\nineradicable\r\ninerrable\r\ninerrancy\r\ninerrant\r\ninert\r\ninertia\r\ninertial\r\ninertness\r\ninescapable\r\ninescapably\r\ninessential\r\ninessentiality\r\ninestimable\r\ninevitability\r\ninevitable\r\ninevitableness\r\ninevitably\r\ninexact\r\ninexactitude\r\ninexactly\r\ninexactness\r\ninexcusable\r\ninexcusably\r\ninexhaustible\r\ninexhaustibly\r\ninexorability\r\ninexorable\r\ninexorableness\r\ninexpedience\r\ninexpediency\r\ninexpedient\r\ninexpediently\r\ninexpensive\r\ninexpensively\r\ninexpensiveness\r\ninexperience\r\ninexperienced\r\ninexperient\r\ninexpert\r\ninexpertly\r\ninexpiable\r\ninexplicable\r\ninexplicit\r\ninexplicitness\r\ninexpressible\r\ninexpressive\r\ninexpressively\r\ninexpugnable\r\ninexpungeable\r\ninexpungible\r\ninextensible\r\ninexterminable\r\ninextinguishable\r\ninextirpable\r\ninextricable\r\ninfallibility\r\ninfallible\r\ninfamous\r\ninfamy\r\ninfancy\r\ninfant\r\ninfant's-breath\r\ninfanticide\r\ninfantile\r\ninfantilism\r\ninfantry\r\ninfantryman\r\ninfarct\r\ninfarction\r\ninfatuate\r\ninfatuated\r\ninfatuation\r\ninfeasibility\r\ninfeasible\r\ninfect\r\ninfected\r\ninfection\r\ninfectious\r\ninfectiously\r\ninfective\r\ninfelicitous\r\ninfelicitously\r\ninfelicity\r\ninfer\r\ninference\r\ninferential\r\ninferior\r\ninferiority\r\ninfernal\r\ninfernally\r\ninferno\r\ninfertile\r\ninfertility\r\ninfest\r\ninfestation\r\ninfested\r\ninfidel\r\ninfidelity\r\ninfield\r\ninfielder\r\ninfiltrate\r\ninfiltration\r\ninfiltrator\r\ninfinite\r\ninfinitely\r\ninfiniteness\r\ninfinitesimal\r\ninfinitival\r\ninfinitive\r\ninfinitude\r\ninfinity\r\ninfirm\r\ninfirmary\r\ninfirmity\r\ninfix\r\ninflame\r\ninflamed\r\ninflaming\r\ninflammability\r\ninflammable\r\ninflammation\r\ninflammatory\r\ninflatable\r\ninflate\r\ninflated\r\ninflater\r\ninflation\r\ninflationary\r\ninflator\r\ninflect\r\ninflected\r\ninflection\r\ninflectional\r\ninflexibility\r\ninflexible\r\ninflexibleness\r\ninflexibly\r\ninflexion\r\ninflict\r\ninfliction\r\ninfliximab\r\ninflorescence\r\ninflow\r\ninflowing\r\ninfluence\r\ninfluent\r\ninfluential\r\ninfluenza\r\ninflux\r\ninfo\r\ninfolding\r\ninfomercial\r\ninform\r\ninformal\r\ninformality\r\ninformally\r\ninformant\r\ninformatics\r\ninformation\r\ninformational\r\ninformative\r\ninformatively\r\ninformatory\r\ninformed\r\ninformer\r\ninformercial\r\ninforming\r\ninfotainment\r\ninfra\r\ninfract\r\ninfraction\r\ninfrahuman\r\ninframaxillary\r\ninfrangible\r\ninfrared\r\ninfrasonic\r\ninfrastructure\r\ninfrequency\r\ninfrequent\r\ninfrequently\r\ninfrigidation\r\ninfringe\r\ninfringement\r\ninfructescence\r\ninfundibulum\r\ninfuriate\r\ninfuriated\r\ninfuriating\r\ninfuriation\r\ninfuscate\r\ninfuse\r\ninfusion\r\ninfusoria\r\ninfusorian\r\ninga\r\ningathering\r\ninge\r\ningeminate\r\ningenious\r\ningeniousness\r\ningenue\r\ningenuity\r\ningenuous\r\ningenuously\r\ningenuousness\r\ninger\r\ningerman\r\ningest\r\ningesta\r\ningestion\r\ninglenook\r\ninglorious\r\ningloriously\r\ningot\r\ningraft\r\ningrain\r\ningrained\r\ningraining\r\ningrate\r\ningratiate\r\ningratiating\r\ningratiation\r\ningratiatory\r\ningratitude\r\ningredient\r\ningres\r\ningress\r\ningrian\r\ningroup\r\ningrowing\r\ningrown\r\ningrowth\r\ninguen\r\ninguinal\r\ningurgitate\r\ninh\r\ninhabit\r\ninhabitable\r\ninhabitancy\r\ninhabitant\r\ninhabitation\r\ninhabited\r\ninhalant\r\ninhalation\r\ninhalator\r\ninhale\r\ninhaler\r\ninharmonic\r\ninharmonious\r\ninharmoniousness\r\ninhere\r\ninherence\r\ninherency\r\ninherent\r\ninherit\r\ninheritable\r\ninheritance\r\ninherited\r\ninheriting\r\ninheritor\r\ninheritress\r\ninheritrix\r\ninhibit\r\ninhibited\r\ninhibition\r\ninhibitor\r\ninhibitory\r\ninhomogeneity\r\ninhomogeneous\r\ninhospitable\r\ninhospitableness\r\ninhospitably\r\ninhospitality\r\ninhuman\r\ninhumane\r\ninhumanely\r\ninhumaneness\r\ninhumanity\r\ninhumation\r\ninhume\r\ninhumed\r\ninimical\r\ninimitable\r\ninimitably\r\ninion\r\niniquitous\r\niniquity\r\ninitial\r\ninitialisation\r\ninitialise\r\ninitialization\r\ninitialize\r\ninitially\r\ninitiate\r\ninitiation\r\ninitiative\r\ninitiator\r\ninitiatory\r\ninject\r\ninjectable\r\ninjectant\r\ninjection\r\ninjector\r\ninjudicious\r\ninjudiciously\r\ninjudiciousness\r\ninjun\r\ninjunction\r\ninjure\r\ninjured\r\ninjurious\r\ninjuriousness\r\ninjury\r\ninjustice\r\nink\r\nink-black\r\nink-jet\r\ninka\r\ninkberry\r\ninkblot\r\ninkiness\r\ninkle\r\ninkling\r\ninkpad\r\ninkpot\r\ninkstand\r\ninkwell\r\ninky\r\ninky-black\r\ninla\r\ninlaid\r\ninland\r\ninlay\r\ninlet\r\ninmarriage\r\ninmarry\r\ninmate\r\ninmost\r\ninn\r\ninnards\r\ninnate\r\ninnateness\r\ninner\r\ninnermost\r\ninnersole\r\ninnervate\r\ninnervation\r\ninning\r\ninnings\r\ninnkeeper\r\ninnocence\r\ninnocency\r\ninnocense\r\ninnocent\r\ninnocuous\r\ninnovate\r\ninnovation\r\ninnovational\r\ninnovative\r\ninnovativeness\r\ninnovator\r\ninnoxious\r\ninnsbruck\r\ninnuendo\r\ninnumerable\r\ninnumerableness\r\ninnumerate\r\ninnumerous\r\ninocor\r\ninoculant\r\ninoculate\r\ninoculating\r\ninoculation\r\ninoculator\r\ninoculum\r\ninodorous\r\ninoffensive\r\ninoffensively\r\ninoperable\r\ninoperative\r\ninopportune\r\ninopportunely\r\ninopportuneness\r\ninordinate\r\ninordinately\r\ninordinateness\r\ninorganic\r\ninorganically\r\ninosculate\r\ninosculation\r\ninosine\r\ninositol\r\ninpatient\r\ninpour\r\ninpouring\r\ninput\r\ninquest\r\ninquietude\r\ninquire\r\ninquirer\r\ninquiring\r\ninquiringly\r\ninquiry\r\ninquisition\r\ninquisitive\r\ninquisitively\r\ninquisitiveness\r\ninquisitor\r\ninquisitorial\r\ninquisitory\r\ninr\r\ninroad\r\ninrush\r\nins\r\ninsalubrious\r\ninsalubriousness\r\ninsalubrity\r\ninsane\r\ninsanely\r\ninsaneness\r\ninsanitary\r\ninsanity\r\ninsatiable\r\ninsatiably\r\ninsatiate\r\ninscribe\r\ninscribed\r\ninscription\r\ninscriptive\r\ninscrutability\r\ninscrutable\r\ninsect\r\ninsect-like\r\ninsecta\r\ninsectan\r\ninsecticidal\r\ninsecticide\r\ninsectifuge\r\ninsectivora\r\ninsectivore\r\ninsectivorous\r\ninsectlike\r\ninsecure\r\ninsecurely\r\ninsecureness\r\ninsecurity\r\ninseminate\r\ninsemination\r\ninsensate\r\ninsensibility\r\ninsensible\r\ninsensibly\r\ninsensitive\r\ninsensitively\r\ninsensitiveness\r\ninsensitivity\r\ninsentience\r\ninsentient\r\ninseparable\r\ninseparably\r\ninsert\r\ninsertion\r\ninsessores\r\ninset\r\ninshore\r\ninside\r\ninside-out\r\ninsider\r\ninsidious\r\ninsidiously\r\ninsidiousness\r\ninsight\r\ninsightful\r\ninsightfulness\r\ninsignia\r\ninsignificance\r\ninsignificant\r\ninsignificantly\r\ninsincere\r\ninsincerely\r\ninsincerity\r\ninsinuate\r\ninsinuating\r\ninsinuation\r\ninsipid\r\ninsipidity\r\ninsipidness\r\ninsist\r\ninsistence\r\ninsistency\r\ninsistent\r\ninsisting\r\ninsobriety\r\ninsofar\r\ninsolate\r\ninsolation\r\ninsole\r\ninsolence\r\ninsolent\r\ninsolubility\r\ninsoluble\r\ninsolvable\r\ninsolvency\r\ninsolvent\r\ninsomnia\r\ninsomniac\r\ninsouciance\r\ninsouciant\r\ninspan\r\ninspect\r\ninspection\r\ninspector\r\ninspectorate\r\ninspectorship\r\ninspiration\r\ninspirational\r\ninspirationally\r\ninspiratory\r\ninspire\r\ninspired\r\ninspirer\r\ninspiring\r\ninspirit\r\ninspiriting\r\ninspissate\r\ninspissation\r\ninst\r\ninstability\r\ninstal\r\ninstall\r\ninstallation\r\ninstalling\r\ninstallment\r\ninstalment\r\ninstance\r\ninstancy\r\ninstant\r\ninstantaneous\r\ninstantaneously\r\ninstantaneousness\r\ninstantiate\r\ninstantiation\r\ninstantly\r\ninstar\r\ninstauration\r\ninstead\r\ninstep\r\ninstigant\r\ninstigate\r\ninstigation\r\ninstigative\r\ninstigator\r\ninstil\r\ninstill\r\ninstillation\r\ninstillator\r\ninstilling\r\ninstillment\r\ninstilment\r\ninstinct\r\ninstinctive\r\ninstitute\r\ninstitution\r\ninstitutional\r\ninstitutionalise\r\ninstitutionalised\r\ninstitutionalize\r\ninstitutionalized\r\ninstroke\r\ninstruct\r\ninstruction\r\ninstructional\r\ninstructions\r\ninstructive\r\ninstructively\r\ninstructor\r\ninstructorship\r\ninstructress\r\ninstrument\r\ninstrumental\r\ninstrumentalism\r\ninstrumentalist\r\ninstrumentality\r\ninstrumentate\r\ninstrumentation\r\ninsubordinate\r\ninsubordination\r\ninsubstantial\r\ninsubstantiality\r\ninsubstantially\r\ninsufferable\r\ninsufficiency\r\ninsufficient\r\ninsufficiently\r\ninsufflate\r\ninsufflation\r\ninsulant\r\ninsular\r\ninsularism\r\ninsularity\r\ninsulate\r\ninsulation\r\ninsulator\r\ninsulin\r\ninsult\r\ninsulting\r\ninsultingly\r\ninsuperable\r\ninsupportable\r\ninsurability\r\ninsurable\r\ninsurance\r\ninsure\r\ninsured\r\ninsurer\r\ninsurgence\r\ninsurgency\r\ninsurgent\r\ninsurmountable\r\ninsurrection\r\ninsurrectional\r\ninsurrectionary\r\ninsurrectionism\r\ninsurrectionist\r\ninsusceptible\r\nintact\r\nintactness\r\nintaglio\r\nintake\r\nintangibility\r\nintangible\r\nintangibleness\r\ninteger\r\nintegral\r\nintegrality\r\nintegrate\r\nintegrated\r\nintegrating\r\nintegration\r\nintegrative\r\nintegrator\r\nintegrity\r\nintegument\r\nintegumental\r\nintegumentary\r\nintellect\r\nintellection\r\nintellectual\r\nintellectualisation\r\nintellectualization\r\nintelligence\r\nintelligent\r\nintelligently\r\nintelligentsia\r\nintelligibility\r\nintelligible\r\nintelligibly\r\nintelnet\r\nintemperance\r\nintemperate\r\nintemperately\r\nintemperateness\r\nintend\r\nintended\r\nintense\r\nintensification\r\nintensified\r\nintensifier\r\nintensify\r\nintensifying\r\nintension\r\nintensional\r\nintensity\r\nintensive\r\nintensiveness\r\nintent\r\nintention\r\nintentional\r\nintentionality\r\nintentionally\r\nintentness\r\ninter\r\ninteract\r\ninteraction\r\ninteractional\r\ninteractive\r\ninterahamwe\r\ninterbrain\r\ninterbred\r\ninterbreed\r\ninterbreeding\r\nintercalary\r\nintercalate\r\nintercalation\r\nintercede\r\nintercellular\r\nintercept\r\ninterception\r\ninterceptor\r\nintercession\r\nintercessor\r\ninterchange\r\ninterchangeability\r\ninterchangeable\r\ninterchangeableness\r\ninterchurch\r\nintercollegiate\r\nintercom\r\nintercommunicate\r\nintercommunication\r\nintercommunion\r\ninterconnect\r\ninterconnected\r\ninterconnectedness\r\ninterconnection\r\nintercontinental\r\nintercostal\r\nintercourse\r\nintercrossed\r\ninterdenominational\r\ninterdepartmental\r\ninterdepend\r\ninterdependence\r\ninterdependency\r\ninterdependent\r\ninterdict\r\ninterdiction\r\ninterdisciplinary\r\ninterest\r\ninterest-bearing\r\ninterested\r\ninterestedness\r\ninteresting\r\ninterestingly\r\ninterestingness\r\ninterface\r\ninterfacial\r\ninterfaith\r\ninterfere\r\ninterference\r\ninterfering\r\ninterferometer\r\ninterferon\r\nintergalactic\r\ninterim\r\ninterior\r\ninteriorise\r\ninteriorize\r\ninterject\r\ninterjection\r\ninterlace\r\ninterlaced\r\ninterlacing\r\ninterlaken\r\ninterlanguage\r\ninterlard\r\ninterlayer\r\ninterleaf\r\ninterleave\r\ninterleukin\r\ninterlineal\r\ninterlinear\r\ninterlingua\r\ninterlink\r\ninterlinking\r\ninterlock\r\ninterlocking\r\ninterlocutor\r\ninterlocutory\r\ninterlope\r\ninterloper\r\ninterlude\r\nintermarriage\r\nintermarry\r\nintermediary\r\nintermediate\r\nintermediation\r\nintermediator\r\ninterment\r\nintermeshed\r\nintermezzo\r\ninterminable\r\ninterminably\r\nintermingle\r\nintermingled\r\nintermission\r\nintermit\r\nintermittence\r\nintermittency\r\nintermittent\r\nintermix\r\nintermixture\r\nintermolecular\r\nintermural\r\nintern\r\ninternal\r\ninternalisation\r\ninternalise\r\ninternalization\r\ninternalize\r\ninternally\r\ninternational\r\ninternationale\r\ninternationalisation\r\ninternationalise\r\ninternationalism\r\ninternationalist\r\ninternationalistic\r\ninternationality\r\ninternationalization\r\ninternationalize\r\ninterne\r\ninternecine\r\ninternee\r\ninternet\r\ninternist\r\ninternment\r\ninternode\r\ninternship\r\ninternuncio\r\ninteroception\r\ninteroceptive\r\ninteroceptor\r\ninteroperability\r\ninteroperable\r\ninterpellate\r\ninterpellation\r\ninterpenetrate\r\ninterpenetration\r\ninterpersonal\r\ninterphone\r\ninterplanetary\r\ninterplay\r\ninterpol\r\ninterpolate\r\ninterpolation\r\ninterpose\r\ninterposition\r\ninterpret\r\ninterpretable\r\ninterpretation\r\ninterpretative\r\ninterpreted\r\ninterpreter\r\ninterpreting\r\ninterpretive\r\ninterracial\r\ninterred\r\ninterreflection\r\ninterregnum\r\ninterrelate\r\ninterrelated\r\ninterrelatedness\r\ninterrelation\r\ninterrelationship\r\ninterrogate\r\ninterrogation\r\ninterrogative\r\ninterrogatively\r\ninterrogator\r\ninterrogatory\r\ninterrupt\r\ninterrupted\r\ninterrupter\r\ninterruption\r\ninterscholastic\r\ninterschool\r\nintersect\r\nintersectant\r\nintersecting\r\nintersection\r\nintersex\r\nintersexual\r\ninterspecies\r\ninterspecific\r\ninterspersal\r\nintersperse\r\ninterspersion\r\ninterstate\r\ninterstellar\r\ninterstice\r\ninterstitial\r\ninterstratify\r\nintertidal\r\nintertribal\r\nintertrigo\r\nintertwine\r\nintertwined\r\ninterval\r\nintervene\r\nintervening\r\nintervenor\r\nintervention\r\nintervertebral\r\ninterview\r\ninterviewee\r\ninterviewer\r\ninterweave\r\ninterwoven\r\nintestacy\r\nintestate\r\nintestinal\r\nintestine\r\ninti\r\nintifada\r\nintifadah\r\nintima\r\nintimacy\r\nintimal\r\nintimate\r\nintimately\r\nintimation\r\nintimidate\r\nintimidated\r\nintimidating\r\nintimidation\r\nintolerable\r\nintolerably\r\nintolerance\r\nintolerant\r\nintolerantly\r\nintonate\r\nintonation\r\nintone\r\nintoned\r\nintoxicant\r\nintoxicate\r\nintoxicated\r\nintoxicating\r\nintoxication\r\nintracellular\r\nintracerebral\r\nintractability\r\nintractable\r\nintractableness\r\nintracutaneous\r\nintradepartmental\r\nintradermal\r\nintradermic\r\nintrados\r\nintragroup\r\nintralinguistic\r\nintramolecular\r\nintramural\r\nintramuscular\r\nintranet\r\nintransigence\r\nintransigency\r\nintransigent\r\nintransitive\r\nintransitively\r\nintransitiveness\r\nintransitivise\r\nintransitivity\r\nintransitivize\r\nintrapulmonary\r\nintraspecies\r\nintraspecific\r\nintrastate\r\nintravasation\r\nintravenous\r\nintraventricular\r\nintrench\r\nintrenchment\r\nintrepid\r\nintrepidity\r\nintrepidly\r\nintricacy\r\nintricate\r\nintricately\r\nintrigue\r\nintriguer\r\nintriguing\r\nintrinsic\r\nintrinsical\r\nintrinsically\r\nintro\r\nintroduce\r\nintroduction\r\nintroductory\r\nintroit\r\nintroitus\r\nintroject\r\nintrojected\r\nintrojection\r\nintromission\r\nintromit\r\nintron\r\nintropin\r\nintrospect\r\nintrospection\r\nintrospective\r\nintrospectiveness\r\nintrouvable\r\nintroversion\r\nintroversive\r\nintrovert\r\nintroverted\r\nintrovertish\r\nintrovertive\r\nintrude\r\nintruder\r\nintruding\r\nintrusion\r\nintrusive\r\nintrusiveness\r\nintrust\r\nintubate\r\nintubation\r\nintuit\r\nintuition\r\nintuitionism\r\nintuitionist\r\nintuitive\r\nintumesce\r\nintumescence\r\nintumescency\r\nintumescent\r\nintussuscept\r\nintussusception\r\ninuit\r\ninula\r\ninulin\r\ninunct\r\ninunction\r\ninundate\r\ninundated\r\ninundation\r\ninure\r\ninured\r\ninutile\r\ninutility\r\ninvade\r\ninvader\r\ninvading\r\ninvaginate\r\ninvagination\r\ninvalid\r\ninvalidate\r\ninvalidated\r\ninvalidating\r\ninvalidation\r\ninvalidator\r\ninvalidism\r\ninvalidity\r\ninvalidness\r\ninvaluable\r\ninvaluableness\r\ninvar\r\ninvariability\r\ninvariable\r\ninvariableness\r\ninvariance\r\ninvariant\r\ninvasion\r\ninvasive\r\ninvective\r\ninveigh\r\ninveigle\r\ninvent\r\ninvented\r\ninvention\r\ninventive\r\ninventiveness\r\ninventor\r\ninventory\r\ninventorying\r\ninverse\r\ninversely\r\ninversion\r\ninvert\r\ninvertase\r\ninvertebrate\r\ninverted\r\ninverter\r\ninvertible\r\ninvest\r\ninvested\r\ninvestigate\r\ninvestigating\r\ninvestigation\r\ninvestigative\r\ninvestigator\r\ninvestigatory\r\ninvesting\r\ninvestiture\r\ninvestment\r\ninvestor\r\ninveterate\r\ninveterately\r\ninvidia\r\ninvidious\r\ninvigilate\r\ninvigilation\r\ninvigilator\r\ninvigorate\r\ninvigorated\r\ninvigorating\r\ninvigoration\r\ninvigorator\r\ninvincibility\r\ninvincible\r\ninviolable\r\ninviolate\r\ninvirase\r\ninvisibility\r\ninvisible\r\ninvisibleness\r\ninvisibly\r\ninvitation\r\ninvitational\r\ninvitatory\r\ninvite\r\ninvitee\r\ninviting\r\ninvitingly\r\ninvocation\r\ninvoice\r\ninvoke\r\ninvolucrate\r\ninvolucre\r\ninvoluntarily\r\ninvoluntariness\r\ninvoluntary\r\ninvolute\r\ninvolution\r\ninvolve\r\ninvolved\r\ninvolvement\r\ninvulnerability\r\ninvulnerable\r\ninward\r\ninward-developing\r\ninward-moving\r\ninwardly\r\ninwardness\r\ninwards\r\ninweave\r\ninwrought\r\nio\r\niodide\r\niodin\r\niodinate\r\niodinated\r\niodinating\r\niodination\r\niodine\r\niodine-125\r\niodine-131\r\niodise\r\niodised\r\niodize\r\niodized\r\niodochlorhydroxyquin\r\niodocompound\r\niodoform\r\niodoprotein\r\niodopsin\r\niodothyronine\r\niodotyrosine\r\nion\r\nionate\r\nionesco\r\nionia\r\nionian\r\nionic\r\nionisation\r\nionise\r\nionised\r\nionising\r\nionization\r\nionize\r\nionized\r\nionizing\r\nionophoresis\r\nionosphere\r\niontophoresis\r\niontotherapy\r\niota\r\niou\r\niowa\r\niowan\r\nioway\r\nip\r\nipecac\r\niphigenia\r\nipidae\r\nipo\r\nipomoea\r\niproclozid\r\nipsedixitism\r\nipsilateral\r\nipsus\r\nipv\r\niq\r\nir\r\nira\r\nirak\r\niraki\r\niran\r\nirani\r\niranian\r\niraq\r\niraqi\r\nirascibility\r\nirascible\r\nirate\r\nire\r\nireful\r\nireland\r\nirelander\r\nirena\r\nirenaeus\r\nirenic\r\nirenidae\r\niresine\r\niridaceae\r\niridaceous\r\niridectomy\r\niridesce\r\niridescence\r\niridescent\r\niridic\r\niridium\r\niridocyclitis\r\niridokeratitis\r\niridoncus\r\niridoprocne\r\niridosmine\r\niridotomy\r\niris\r\nirish\r\nirishman\r\nirishwoman\r\niritic\r\niritis\r\nirk\r\nirksome\r\niron\r\niron-gray\r\niron-grey\r\niron-tree\r\nironclad\r\nironed\r\nironic\r\nironical\r\nironing\r\nironist\r\nironlike\r\nironman\r\nironmonger\r\nironmongery\r\nirons\r\nironshod\r\nironside\r\nironsides\r\nironware\r\nironweed\r\nironwood\r\nironwork\r\nironworker\r\nironworks\r\nirony\r\niroquoian\r\niroquois\r\nirradiate\r\nirradiation\r\nirrational\r\nirrationality\r\nirrationally\r\nirrawaddy\r\nirreality\r\nirreclaimable\r\nirreconcilable\r\nirrecoverable\r\nirredeemable\r\nirredenta\r\nirredentism\r\nirredentist\r\nirreducible\r\nirrefutable\r\nirregular\r\nirregularity\r\nirregularly\r\nirrelevance\r\nirrelevancy\r\nirrelevant\r\nirrelevantly\r\nirreligion\r\nirreligionist\r\nirreligious\r\nirreligiousness\r\nirremediable\r\nirremovable\r\nirreparable\r\nirreplaceable\r\nirreplaceableness\r\nirrepressibility\r\nirrepressible\r\nirreproachable\r\nirreproachably\r\nirreproducibility\r\nirreproducible\r\nirresistibility\r\nirresistible\r\nirresistibleness\r\nirresistibly\r\nirresolute\r\nirresolutely\r\nirresoluteness\r\nirresolution\r\nirrespective\r\nirresponsibility\r\nirresponsible\r\nirresponsibleness\r\nirresponsibly\r\nirretrievable\r\nirreverence\r\nirreverent\r\nirreverently\r\nirreversibility\r\nirreversible\r\nirrevocable\r\nirrevokable\r\nirridenta\r\nirridentism\r\nirridentist\r\nirrigate\r\nirrigation\r\nirritability\r\nirritable\r\nirritably\r\nirritant\r\nirritate\r\nirritated\r\nirritating\r\nirritation\r\nirritative\r\nirrupt\r\nirruption\r\nirruptive\r\nirs\r\nirtish\r\nirtysh\r\nirula\r\nirving\r\nirvingia\r\nis\r\nisaac\r\nisabella\r\nisaiah\r\nisarithm\r\nisatis\r\nischaemia\r\nischaemic\r\nischemia\r\nischemic\r\nischia\r\nischigualastia\r\nischium\r\nisentropic\r\nisere\r\niseult\r\nisfahan\r\nisherwood\r\nishmael\r\nishtar\r\nisi\r\nisinglass\r\nisis\r\niskcon\r\nislam\r\nislamabad\r\nislamic\r\nislamise\r\nislamism\r\nislamist\r\nislamize\r\nislamophobia\r\nisland\r\nisland-dweller\r\nislander\r\nislay\r\nisle\r\nislet\r\nism\r\nismaili\r\nismailian\r\nismailism\r\nisn\r\nisoagglutination\r\nisoagglutinin\r\nisoagglutinogen\r\nisoantibody\r\nisobar\r\nisobilateral\r\nisobutylene\r\nisocarboxazid\r\nisoceles\r\nisochronal\r\nisochrone\r\nisochronous\r\nisoclinal\r\nisoclinic\r\nisocrates\r\nisocyanate\r\nisocyclic\r\nisoetaceae\r\nisoetales\r\nisoetes\r\nisoflurane\r\nisogamete\r\nisogamy\r\nisogon\r\nisogone\r\nisogonic\r\nisogram\r\nisohel\r\nisolable\r\nisolate\r\nisolated\r\nisolating\r\nisolation\r\nisolationism\r\nisolationist\r\nisolationistic\r\nisolde\r\nisoleucine\r\nisomer\r\nisomerase\r\nisomeric\r\nisomerisation\r\nisomerise\r\nisomerism\r\nisomerization\r\nisomerize\r\nisometric\r\nisometrical\r\nisometrics\r\nisometropia\r\nisometry\r\nisomorphic\r\nisomorphism\r\nisomorphous\r\nisomorphy\r\nisoniazid\r\nisopleth\r\nisopod\r\nisopoda\r\nisopropanol\r\nisoproterenol\r\nisoptera\r\nisopteran\r\nisoptin\r\nisopyrum\r\nisordil\r\nisosmotic\r\nisosorbide\r\nisospondyli\r\nisostasy\r\nisotherm\r\nisothermal\r\nisothermic\r\nisothiocyanate\r\nisotonic\r\nisotope\r\nisotopic\r\nisotropic\r\nisotropous\r\nisotropy\r\nisrael\r\nisraeli\r\nisraelite\r\nisraelites\r\nissachar\r\nissuance\r\nissue\r\nissuer\r\nissuing\r\nissus\r\nistanbul\r\nisthmian\r\nisthmus\r\nistiophoridae\r\nistiophorus\r\nisuprel\r\nisuridae\r\nisurus\r\nit\r\nitalia\r\nitalian\r\nitalian-speaking\r\nitalic\r\nitalicise\r\nitalicize\r\nitaly\r\nitch\r\nitchiness\r\nitching\r\nitchy\r\nitem\r\nitem-by-item\r\nitemisation\r\nitemise\r\nitemization\r\nitemize\r\niterate\r\niteration\r\niterative\r\nithaca\r\nithaki\r\nithunn\r\nitinerant\r\nitinerary\r\nitinerate\r\nitineration\r\nitraconazole\r\nitsy-bitsy\r\nitty-bitty\r\niud\r\niv\r\niva\r\nivanov\r\nives\r\nivied\r\nivory\r\nivorybill\r\nivp\r\nivry\r\nivy\r\nivy-covered\r\niw\r\niwo\r\niww\r\nix\r\nixc\r\nixia\r\nixl\r\nixobrychus\r\nixodes\r\nixodid\r\nixodidae\r\niyar\r\niyyar\r\nizanagi\r\nizanami\r\nizar\r\nizmir\r\nizzard\r\nj\r\njab\r\njabalpur\r\njabber\r\njabberer\r\njabbering\r\njabberwocky\r\njabbing\r\njabiru\r\njaboncillo\r\njabot\r\njaboticaba\r\njacamar\r\njacaranda\r\njacinth\r\njack\r\njack-a-lantern\r\njack-by-the-hedge\r\njack-in-the-box\r\njack-in-the-pulpit\r\njack-o'-lantern\r\njack-o-lantern\r\njack-tar\r\njackal\r\njackanapes\r\njackass\r\njackboot\r\njackdaw\r\njacket\r\njackfruit\r\njackhammer\r\njackknife\r\njackknife-fish\r\njacklight\r\njackpot\r\njackrabbit\r\njacks\r\njackscrew\r\njacksmelt\r\njacksnipe\r\njackson\r\njacksonia\r\njacksonian\r\njacksonville\r\njackstones\r\njackstraw\r\njackstraws\r\njacob\r\njacobean\r\njacobi\r\njacobin\r\njacobinic\r\njacobinical\r\njacobinism\r\njacobite\r\njacobs\r\njaconet\r\njacquard\r\njacquinia\r\njactation\r\njactitate\r\njactitation\r\njaculus\r\njacuzzi\r\njade\r\njade-green\r\njaded\r\njadeite\r\njadestone\r\njaeger\r\njafar\r\njaffa\r\njaffar\r\njag\r\njagannath\r\njagannatha\r\njagatai\r\njagganath\r\njaggary\r\njagged\r\njaggedly\r\njaggedness\r\njagger\r\njaggery\r\njagghery\r\njaggy\r\njaghatai\r\njagua\r\njaguar\r\njaguarondi\r\njaguarundi\r\njahvey\r\njahweh\r\njail\r\njailbird\r\njailbreak\r\njailed\r\njailer\r\njailhouse\r\njailor\r\njain\r\njainism\r\njainist\r\njaish-e-muhammad\r\njaish-i-mohammed\r\njak\r\njakarta\r\njakes\r\njakobson\r\njalalabad\r\njalapeno\r\njalopy\r\njalousie\r\njam\r\njam-packed\r\njamaica\r\njamaican\r\njamb\r\njambalaya\r\njambeau\r\njamberry\r\njambon\r\njamboree\r\njambos\r\njambosa\r\njames\r\njamesian\r\njamesonia\r\njamestown\r\njamison\r\njamjar\r\njammed\r\njammer\r\njammies\r\njamming\r\njampack\r\njampan\r\njampot\r\njan\r\njangle\r\njangling\r\njangly\r\njanissary\r\njanitor\r\njansen\r\njansenism\r\njansenist\r\njanuary\r\njanus\r\njanus-faced\r\njap\r\njapan\r\njapanese\r\njapanese-speaking\r\njape\r\njapery\r\njapheth\r\njaponica\r\njar\r\njarful\r\njargon\r\njargoon\r\njarrell\r\njarring\r\njasmine\r\njasminum\r\njason\r\njasper\r\njaspers\r\njassid\r\njassidae\r\njat\r\njati\r\njatropha\r\njaundice\r\njaundiced\r\njaunt\r\njauntiness\r\njaunty\r\njava\r\njavan\r\njavanese\r\njavanthropus\r\njavelin\r\njavelina\r\njaw\r\njawan\r\njawbone\r\njawbreaker\r\njawed\r\njawfish\r\njawless\r\njay\r\njaybird\r\njayshullah\r\njaywalk\r\njaywalker\r\njazz\r\njazzman\r\njazzy\r\njdam\r\njealous\r\njealously\r\njealousy\r\njean\r\njed'dah\r\njeddah\r\njeep\r\njeer\r\njeerer\r\njeering\r\njeeringly\r\njeffers\r\njefferson\r\njeffersonian\r\njehad\r\njehovah\r\njejune\r\njejunely\r\njejuneness\r\njejunitis\r\njejunity\r\njejunoileitis\r\njejunostomy\r\njejunum\r\njell\r\njell-o\r\njellaba\r\njelled\r\njellied\r\njellify\r\njello\r\njelly\r\njellyfish\r\njellyleaf\r\njellylike\r\njellyroll\r\njem\r\njemmy\r\njena\r\njenner\r\njennet\r\njenny\r\njensen\r\njeopardise\r\njeopardize\r\njeopardy\r\njerboa\r\njeremiad\r\njeremiah\r\njerevan\r\njerez\r\njericho\r\njerk\r\njerk-off\r\njerker\r\njerkily\r\njerkin\r\njerkiness\r\njerking\r\njerkwater\r\njerky\r\njeroboam\r\njerome\r\njerry\r\njerry-builder\r\njerry-building\r\njerry-built\r\njersey\r\njerusalem\r\njespersen\r\njessamine\r\njest\r\njester\r\njesting\r\njestingly\r\njesuit\r\njesuitic\r\njesuitical\r\njesuitism\r\njesuitry\r\njesus\r\njet\r\njet-black\r\njet-propelled\r\njeth\r\njetliner\r\njets\r\njetsam\r\njetting\r\njettison\r\njetty\r\njevons\r\njew\r\njew's-ear\r\njew's-ears\r\njew-baiter\r\njew-bush\r\njewbush\r\njewel\r\njeweled\r\njeweler\r\njewelled\r\njeweller\r\njewellery\r\njewelry\r\njewels-of-opar\r\njewelweed\r\njewess\r\njewfish\r\njewish\r\njewish-orthodox\r\njewison\r\njewry\r\njezebel\r\njfk\r\njhvh\r\nji\r\njiao\r\njib\r\njibboom\r\njibe\r\njidda\r\njiddah\r\njiffy\r\njig\r\njigaboo\r\njigger\r\njiggered\r\njiggermast\r\njiggery-pokery\r\njiggle\r\njigsaw\r\njihad\r\njihadi\r\njihadist\r\njillion\r\njilt\r\njilted\r\njimdandy\r\njimenez\r\njimhickey\r\njimmies\r\njimmy\r\njimsonweed\r\njinghpaw\r\njinghpo\r\njingle\r\njingle-jangle\r\njingling\r\njingly\r\njingo\r\njingoism\r\njingoist\r\njingoistic\r\njinja\r\njinks\r\njinnah\r\njinnee\r\njinni\r\njinrikisha\r\njinx\r\njinxed\r\njiqui\r\njird\r\njirga\r\njirrbal\r\njitney\r\njitter\r\njitterbug\r\njitteriness\r\njittering\r\njitters\r\njittery\r\njiujitsu\r\njive\r\njnd\r\njnr\r\njoachim\r\njob\r\njobber\r\njobbery\r\njobcentre\r\njobholder\r\njobless\r\njocasta\r\njock\r\njockey\r\njockstrap\r\njocose\r\njocosely\r\njocoseness\r\njocosity\r\njocote\r\njocular\r\njocularity\r\njocund\r\njocundity\r\njodhpur\r\njodhpurs\r\njoel\r\njoewood\r\njoffre\r\njoffrey\r\njog\r\njogger\r\njogging\r\njoggle\r\njohannesburg\r\njohn\r\njohnny\r\njohnny-jump-up\r\njohnnycake\r\njohns\r\njohnson\r\njohnston\r\njoin\r\njoined\r\njoiner\r\njoinery\r\njoining\r\njoint\r\njointed\r\njointer\r\njointly\r\njointure\r\njointworm\r\njoist\r\njoke\r\njoker\r\njokester\r\njoking\r\njokingly\r\njoliet\r\njoliot\r\njoliot-curie\r\njolliet\r\njollification\r\njollify\r\njolliness\r\njollity\r\njolly\r\njolson\r\njolt\r\njolted\r\njolting\r\njolty\r\njonah\r\njonathan\r\njones\r\njonesboro\r\njong\r\njongleur\r\njonquil\r\njonson\r\njook\r\njoplin\r\njoppa\r\njordan\r\njordanella\r\njordanian\r\njorum\r\njoseph\r\njosephus\r\njosh\r\njoshua\r\njoss\r\njostle\r\njostling\r\njosue\r\njot\r\njotter\r\njotting\r\njotun\r\njotunn\r\njoule\r\njounce\r\njournal\r\njournalese\r\njournalism\r\njournalist\r\njournalistic\r\njourney\r\njourneyer\r\njourneying\r\njourneyman\r\njoust\r\njove\r\njovial\r\njoviality\r\njovian\r\njowett\r\njowl\r\njowly\r\njoy\r\njoyce\r\njoyful\r\njoyfully\r\njoyfulness\r\njoyless\r\njoylessly\r\njoylessness\r\njoyous\r\njoyously\r\njoyousness\r\njoyride\r\njoystick\r\njr\r\njr.\r\njra\r\njuarez\r\njubbulpore\r\njubilance\r\njubilancy\r\njubilant\r\njubilantly\r\njubilate\r\njubilation\r\njubilee\r\njuda\r\njudaea\r\njudah\r\njudaic\r\njudaica\r\njudaical\r\njudaism\r\njudas\r\njudder\r\njude\r\njudea\r\njudeo-christian\r\njudeo-spanish\r\njudge\r\njudgement\r\njudges\r\njudgeship\r\njudging\r\njudgment\r\njudgmental\r\njudicable\r\njudicatory\r\njudicature\r\njudicial\r\njudiciary\r\njudicious\r\njudiciously\r\njudiciousness\r\njudith\r\njudo\r\njug\r\njugale\r\njugful\r\njuggernaut\r\njuggle\r\njuggler\r\njugglery\r\njuggling\r\njuglandaceae\r\njuglandales\r\njuglans\r\njugoslav\r\njugoslavian\r\njugoslavija\r\njugular\r\njuice\r\njuiceless\r\njuicer\r\njuiciness\r\njuicy\r\njujitsu\r\njuju\r\njujube\r\njujutsu\r\njuke\r\njukebox\r\njulep\r\njulian\r\njulienne\r\njuly\r\njumbal\r\njumble\r\njumbled\r\njumbo\r\njumbojet\r\njument\r\njumentous\r\njump\r\njump-start\r\njumped-up\r\njumper\r\njumpiness\r\njumping\r\njumpstart\r\njumpsuit\r\njumpy\r\njuncaceae\r\njuncaginaceae\r\njunco\r\njunction\r\njuncture\r\njuncus\r\njund-ul-islam\r\njune\r\njuneau\r\njuneberry\r\njung\r\njungermanniaceae\r\njungermanniales\r\njungian\r\njungle\r\njungly\r\njunior\r\njunior-grade\r\njuniper\r\njuniperus\r\njunk\r\njunker\r\njunkers\r\njunket\r\njunketeer\r\njunketing\r\njunkie\r\njunky\r\njunkyard\r\njuno\r\njunoesque\r\njunta\r\njunto\r\njupati\r\njupaty\r\njupiter\r\njural\r\njurassic\r\njuridic\r\njuridical\r\njurisdiction\r\njurisdictional\r\njurisprudence\r\njurisprudential\r\njurist\r\njuristic\r\njuror\r\njury\r\njury-rigged\r\njuryman\r\njurywoman\r\njussieu\r\njust\r\njustice\r\njusticiar\r\njusticiary\r\njustifiable\r\njustifiably\r\njustification\r\njustificative\r\njustificatory\r\njustified\r\njustifiedly\r\njustifier\r\njustify\r\njustinian\r\njustly\r\njustness\r\njut\r\njute\r\njutish\r\njutland\r\njutting\r\njuvenal\r\njuvenescence\r\njuvenile\r\njuvenility\r\njuxtapose\r\njuxtaposed\r\njuxtaposition\r\njv\r\njyaistha\r\njylland\r\njynx\r\nk\r\nk-lor\r\nk-lyte\r\nk-meson\r\nk.e.\r\nk2\r\nka\r\nkaaba\r\nkabala\r\nkabbala\r\nkabbalah\r\nkabbalism\r\nkabbalist\r\nkabbalistic\r\nkabob\r\nkabolin\r\nkabul\r\nkach\r\nkachaturian\r\nkachin\r\nkachina\r\nkachinic\r\nkadai\r\nkadikoy\r\nkaffir\r\nkaffiyeh\r\nkafir\r\nkafiri\r\nkafka\r\nkafkaesque\r\nkafocin\r\nkaftan\r\nkahikatea\r\nkahlua\r\nkahn\r\nkahoolawe\r\nkail\r\nkainite\r\nkainogenesis\r\nkaiser\r\nkakatoe\r\nkakemono\r\nkaki\r\nkala-azar\r\nkalahari\r\nkalamazoo\r\nkalansuwa\r\nkalantas\r\nkalapooia\r\nkalapooian\r\nkalapuya\r\nkalapuyan\r\nkalashnikov\r\nkale\r\nkaleidoscope\r\nkaleidoscopic\r\nkaleidoscopical\r\nkalemia\r\nkali\r\nkalian\r\nkalif\r\nkalimantan\r\nkalinin\r\nkaliph\r\nkaliuresis\r\nkalka\r\nkalki\r\nkalmia\r\nkalotermes\r\nkalotermitidae\r\nkalpac\r\nkaluga\r\nkalumpang\r\nkaluresis\r\nkam-sui\r\nkam-tai\r\nkama\r\nkamarupan\r\nkamasutra\r\nkamba\r\nkameez\r\nkamet\r\nkami\r\nkamia\r\nkamikaze\r\nkampala\r\nkampong\r\nkampuchea\r\nkampuchean\r\nkanaf\r\nkanamycin\r\nkananga\r\nkanara\r\nkanarese\r\nkanawha\r\nkanchanjanga\r\nkanchenjunga\r\nkanchil\r\nkandahar\r\nkandinski\r\nkandinsky\r\nkandy\r\nkangaroo\r\nkangaroo's-foot\r\nkannada\r\nkannada-speaking\r\nkansa\r\nkansan\r\nkansas\r\nkansu\r\nkant\r\nkantian\r\nkantrex\r\nkanzu\r\nkaochlor\r\nkaoliang\r\nkaolin\r\nkaoline\r\nkaolinite\r\nkaon\r\nkaopectate\r\nkapeika\r\nkaph\r\nkapok\r\nkappa\r\nkappa-meson\r\nkapsiki\r\nkapuka\r\nkaput\r\nkarabiner\r\nkarachi\r\nkaraites\r\nkarakalpak\r\nkarakoram\r\nkarakul\r\nkaraoke\r\nkarat\r\nkarate\r\nkarbala\r\nkarelia\r\nkarelian\r\nkaren\r\nkarenic\r\nkarl-marx-stadt\r\nkarlfeldt\r\nkarloff\r\nkarma\r\nkarnataka\r\nkarok\r\nkarpov\r\nkarsavina\r\nkartik\r\nkartikeya\r\nkarttika\r\nkarttikeya\r\nkaryokinesis\r\nkaryokinetic\r\nkaryolymph\r\nkaryolysis\r\nkaryon\r\nkaryoplasm\r\nkaryotype\r\nkasai\r\nkasbah\r\nkasha\r\nkashag\r\nkashmir\r\nkashmiri\r\nkasparov\r\nkassite\r\nkastler\r\nkat\r\nkatabatic\r\nkatabolic\r\nkatabolism\r\nkatamorphism\r\nkatar\r\nkatari\r\nkatharevusa\r\nkatharobe\r\nkatharobic\r\nkatharometer\r\nkatharsis\r\nkathmandu\r\nkatmandu\r\nkatowice\r\nkatsina\r\nkatsuwonidae\r\nkatsuwonus\r\nkattegatt\r\nkatydid\r\nkatzenjammer\r\nkauai\r\nkaufman\r\nkaunas\r\nkaunda\r\nkauri\r\nkaury\r\nkava\r\nkavakava\r\nkavrin\r\nkawaka\r\nkayak\r\nkayo\r\nkayoed\r\nkazak\r\nkazakh\r\nkazakhstan\r\nkazakhstani\r\nkazakstan\r\nkazan\r\nkazoo\r\nkb\r\nkbo\r\nkc\r\nkea\r\nkean\r\nkeaton\r\nkeats\r\nkeb\r\nkebab\r\nkeble\r\nkechua\r\nkechuan\r\nkedgeree\r\nkeel\r\nkeel-shaped\r\nkeelboat\r\nkeeled\r\nkeelson\r\nkeen\r\nkeen-eyed\r\nkeen-sighted\r\nkeenness\r\nkeep\r\nkeeper\r\nkeeping\r\nkeepsake\r\nkeeshond\r\nkeflex\r\nkeflin\r\nkeftab\r\nkeg\r\nkegful\r\nkeister\r\nkekchi\r\nkekule\r\nkeller\r\nkellogg\r\nkelly\r\nkeloid\r\nkelp\r\nkelpie\r\nkelpwort\r\nkelpy\r\nkelt\r\nkelter\r\nkelvin\r\nkemadrin\r\nkempt\r\nken\r\nkenaf\r\nkenalog\r\nkendal\r\nkendall\r\nkendrew\r\nkennedia\r\nkennedy\r\nkennedya\r\nkennel\r\nkennelly\r\nkennewick\r\nkenning\r\nkeno\r\nkenogenesis\r\nkent\r\nkentan\r\nkentish\r\nkentuckian\r\nkentucky\r\nkenya\r\nkenyan\r\nkenyapithecus\r\nkenyata\r\nkeokuk\r\nkepi\r\nkepler\r\nkept\r\nkera\r\nkeratalgia\r\nkeratectasia\r\nkeratin\r\nkeratinisation\r\nkeratinise\r\nkeratinization\r\nkeratinize\r\nkeratitis\r\nkeratoacanthoma\r\nkeratocele\r\nkeratoconjunctivitis\r\nkeratoconus\r\nkeratoderma\r\nkeratodermia\r\nkeratohyalin\r\nkeratoiritis\r\nkeratomalacia\r\nkeratomycosis\r\nkeratonosis\r\nkeratonosus\r\nkeratoplasty\r\nkeratoscleritis\r\nkeratoscope\r\nkeratoscopy\r\nkeratosis\r\nkeratotomy\r\nkerb\r\nkerbala\r\nkerbela\r\nkerbstone\r\nkerchief\r\nkerensky\r\nkerfuffle\r\nkerion\r\nkern\r\nkernel\r\nkernicterus\r\nkernite\r\nkerosene\r\nkerosine\r\nkerouac\r\nkerugma\r\nkerygma\r\nkesey\r\nkestrel\r\nketalar\r\nketamine\r\nketch\r\nketchup\r\nketeleeria\r\nketembilla\r\nketoacidosis\r\nketoaciduria\r\nketohexose\r\nketone\r\nketonemia\r\nketonuria\r\nketoprofen\r\nketorolac\r\nketose\r\nketosis\r\nketosteroid\r\nkettering\r\nkettle\r\nkettledrum\r\nkettleful\r\nketubim\r\nkeurboom\r\nkey\r\nkeyboard\r\nkeyboardist\r\nkeycard\r\nkeyed\r\nkeyhole\r\nkeyless\r\nkeynes\r\nkeynesian\r\nkeynesianism\r\nkeynote\r\nkeypad\r\nkeystone\r\nkg\r\nkgb\r\nkhabarovsk\r\nkhachaturian\r\nkhadafy\r\nkhaddar\r\nkhadi\r\nkhaki\r\nkhakis\r\nkhalif\r\nkhalifah\r\nkhalka\r\nkhalkha\r\nkhalsa\r\nkhama\r\nkhamsin\r\nkhamti\r\nkhan\r\nkhanate\r\nkhanty\r\nkharkiv\r\nkharkov\r\nkhartoum\r\nkhat\r\nkhaya\r\nkhedive\r\nkhepera\r\nkhesari\r\nkhi\r\nkhimar\r\nkhios\r\nkhirghiz\r\nkhmer\r\nkhoikhoi\r\nkhoikhoin\r\nkhoisan\r\nkhomeini\r\nkhoum\r\nkhowar\r\nkhrushchev\r\nkhuen\r\nkhufu\r\nkhukuri\r\nkhz\r\nki\r\nkiaat\r\nkiang\r\nkibbitz\r\nkibble\r\nkibbutz\r\nkibbutznik\r\nkibe\r\nkibitz\r\nkibitzer\r\nkibosh\r\nkichaga\r\nkichai\r\nkick\r\nkick-start\r\nkickapoo\r\nkickback\r\nkicker\r\nkicking\r\nkickoff\r\nkickshaw\r\nkicksorter\r\nkid\r\nkid-glove\r\nkidd\r\nkiddy\r\nkidnap\r\nkidnaped\r\nkidnaper\r\nkidnapped\r\nkidnapper\r\nkidnapping\r\nkidney\r\nkidney-shaped\r\nkidskin\r\nkierkegaard\r\nkieselguhr\r\nkieserite\r\nkieslowski\r\nkiev\r\nkigali\r\nkiggelaria\r\nkike\r\nkikladhes\r\nkildeer\r\nkilderkin\r\nkiley\r\nkilimanjaro\r\nkiliwa\r\nkiliwi\r\nkill\r\nkillable\r\nkilldeer\r\nkiller\r\nkillifish\r\nkilling\r\nkillingly\r\nkilljoy\r\nkiln\r\nkiln-dried\r\nkilo\r\nkilobyte\r\nkilocalorie\r\nkilocycle\r\nkilogram\r\nkilogram-meter\r\nkilohertz\r\nkiloliter\r\nkilolitre\r\nkilometer\r\nkilometre\r\nkiloton\r\nkilovolt\r\nkilovolt-ampere\r\nkilowatt\r\nkilroy\r\nkilt\r\nkilter\r\nkimberley\r\nkimberlite\r\nkimono\r\nkin\r\nkina\r\nkinaesthesia\r\nkinaesthesis\r\nkinaesthetic\r\nkinaesthetically\r\nkinanesthesia\r\nkinase\r\nkinchinjunga\r\nkind\r\nkind-hearted\r\nkind-heartedness\r\nkinda\r\nkindergarten\r\nkindergartener\r\nkindergartner\r\nkindhearted\r\nkindheartedness\r\nkindle\r\nkindled\r\nkindliness\r\nkindling\r\nkindly\r\nkindness\r\nkindred\r\nkine\r\nkinematics\r\nkinescope\r\nkinesiology\r\nkinesis\r\nkinesthesia\r\nkinesthesis\r\nkinesthetic\r\nkinesthetically\r\nkinesthetics\r\nkinetic\r\nkinetics\r\nkinetochore\r\nkinetoscope\r\nkinetosis\r\nkinfolk\r\nking\r\nking-size\r\nking-sized\r\nkingbird\r\nkingbolt\r\nkingcup\r\nkingdom\r\nkingfish\r\nkingfisher\r\nkinglet\r\nkinglike\r\nkingly\r\nkingmaker\r\nkingpin\r\nkingship\r\nkingsnake\r\nkingston\r\nkingstown\r\nkingwood\r\nkinin\r\nkink\r\nkinkajou\r\nkinky\r\nkino\r\nkinosternidae\r\nkinosternon\r\nkinsey\r\nkinsfolk\r\nkinshasa\r\nkinship\r\nkinsman\r\nkinsperson\r\nkinswoman\r\nkinyarwanda\r\nkiosk\r\nkiowa\r\nkip\r\nkipling\r\nkiplingesque\r\nkipper\r\nkirchhoff\r\nkirchner\r\nkirghiz\r\nkirghizia\r\nkirghizstan\r\nkirgiz\r\nkirgizia\r\nkirgizstan\r\nkiribati\r\nkirk\r\nkirkia\r\nkirkuk\r\nkirpan\r\nkirsch\r\nkirtle\r\nkishar\r\nkishinev\r\nkishke\r\nkislev\r\nkismat\r\nkismet\r\nkiss\r\nkiss-me-over-the-garden-gate\r\nkisser\r\nkissing\r\nkissinger\r\nkisumu\r\nkiswahili\r\nkit\r\nkitakyushu\r\nkitambilla\r\nkitbag\r\nkitchen\r\nkitchener\r\nkitchenette\r\nkitchenware\r\nkite\r\nkitembilla\r\nkith\r\nkitsch\r\nkittee\r\nkitten\r\nkitten-tails\r\nkittenish\r\nkittiwake\r\nkittul\r\nkitty\r\nkitty-cat\r\nkitty-corner\r\nkitty-cornered\r\nkitul\r\nkivu\r\nkiwi\r\nkiwi-sized\r\nkkk\r\nklaipeda\r\nklamath\r\nklan\r\nklansman\r\nklaproth\r\nklavern\r\nklavier\r\nklaxon\r\nklebsiella\r\nklee\r\nkleenex\r\nklein\r\nkleist\r\nkleptomania\r\nkleptomaniac\r\nklick\r\nklimt\r\nkline\r\nklinefelter\r\nklondike\r\nklopstock\r\nklorvess\r\nkludge\r\nklutz\r\nkluxer\r\nklystron\r\nklyuchevskaya\r\nkm\r\nkm/h\r\nknack\r\nknacker\r\nknackered\r\nknackwurst\r\nknap\r\nknapsack\r\nknapweed\r\nknave\r\nknavery\r\nknavish\r\nknavishly\r\nknawe\r\nknawel\r\nknead\r\nknee\r\nknee-deep\r\nknee-hi\r\nknee-high\r\nknee-length\r\nkneecap\r\nkneel\r\nkneeler\r\nkneeling\r\nkneepan\r\nknell\r\nknesset\r\nknesseth\r\nknickerbockers\r\nknickers\r\nknickknack\r\nknickknackery\r\nknife\r\nknife-edge\r\nknife-handle\r\nknifelike\r\nknight\r\nknight-errant\r\nknighthood\r\nknightia\r\nknightliness\r\nknightly\r\nkniphofia\r\nknish\r\nknit\r\nknitted\r\nknitter\r\nknitting\r\nknitwear\r\nknitwork\r\nknob\r\nknobbed\r\nknobble\r\nknobbly\r\nknobby\r\nknobkerrie\r\nknobkerry\r\nknock\r\nknock-down\r\nknock-down-and-drag-out\r\nknock-knee\r\nknock-kneed\r\nknockabout\r\nknockdown\r\nknockdown-dragout\r\nknocked-out\r\nknocker\r\nknocking\r\nknockoff\r\nknockout\r\nknockwurst\r\nknoll\r\nknossos\r\nknot\r\nknotgrass\r\nknothole\r\nknotted\r\nknottiness\r\nknotty\r\nknout\r\nknow\r\nknow-all\r\nknow-how\r\nknow-it-all\r\nknowable\r\nknower\r\nknowing\r\nknowingly\r\nknowingness\r\nknowledge\r\nknowledgeability\r\nknowledgeable\r\nknowledgeableness\r\nknown\r\nknox\r\nknoxville\r\nknuckle\r\nknuckleball\r\nknucklebones\r\nknucklehead\r\nknuckler\r\nknuckles\r\nknucks\r\nknut\r\nko\r\nko'd\r\nkoala\r\nkoan\r\nkoasati\r\nkob\r\nkobe\r\nkobenhavn\r\nkobo\r\nkobus\r\nkoch\r\nkochia\r\nkodagu\r\nkodiak\r\nkoellia\r\nkoestler\r\nkogia\r\nkohl\r\nkohleria\r\nkohlrabi\r\nkoine\r\nkoinonia\r\nkok-saghyz\r\nkok-sagyz\r\nkokka\r\nkola\r\nkolam\r\nkolami\r\nkolkata\r\nkolkhoz\r\nkolkhoznik\r\nkolkwitzia\r\nkoln\r\nkolonia\r\nkomi\r\nkomondor\r\nkonakri\r\nkongfuze\r\nkongo\r\nkonini\r\nkonoe\r\nkonoye\r\nkonqueror\r\nkoodoo\r\nkook\r\nkookaburra\r\nkookie\r\nkooky\r\nkoopmans\r\nkopeck\r\nkopek\r\nkopiyka\r\nkopje\r\nkoppie\r\nkor\r\nkoran\r\nkoranic\r\nkorbut\r\nkorchnoi\r\nkorda\r\nkordofan\r\nkordofanian\r\nkore\r\nkorea\r\nkorean\r\nkorinthos\r\nkoruna\r\nkorzybski\r\nkos\r\nkosciusko\r\nkosciuszko\r\nkosher\r\nkosovo\r\nkosteletzya\r\nkota\r\nkotar\r\nkotex\r\nkoto\r\nkotoko\r\nkotow\r\nkoudou\r\nkoumiss\r\nkoussevitzky\r\nkovna\r\nkovno\r\nkoweit\r\nkowhai\r\nkowtow\r\nkph\r\nkr\r\nkraal\r\nkrafft-ebing\r\nkraft\r\nkrait\r\nkrakatao\r\nkrakatau\r\nkrakatoa\r\nkrakau\r\nkrakow\r\nkrasner\r\nkraurosis\r\nkraut\r\nkrauthead\r\nkrebs\r\nkreisler\r\nkremlin\r\nkrigia\r\nkrill\r\nkris\r\nkrishna\r\nkrishnaism\r\nkriti\r\nkroeber\r\nkrona\r\nkrone\r\nkronecker\r\nkroon\r\nkropotkin\r\nkroto\r\nkrubi\r\nkruger\r\nkrummhorn\r\nkrupp\r\nkrypterophaneron\r\nkrypton\r\nks\r\nkshatriya\r\nkt\r\nku-chiku\r\nkuangchou\r\nkubrick\r\nkuchean\r\nkudos\r\nkudu\r\nkudzu\r\nkuenlun\r\nkuhn\r\nkui\r\nkuiper\r\nkukenaam\r\nkuki\r\nkuki-chin\r\nkulanapan\r\nkulun\r\nkumasi\r\nkumis\r\nkummel\r\nkumquat\r\nkunlun\r\nkunzite\r\nkuomintang\r\nkura\r\nkurakkan\r\nkurchee\r\nkurchi\r\nkurd\r\nkurdish\r\nkurdistan\r\nkuri-chiku\r\nkurosawa\r\nkuroshio\r\nkurrajong\r\nkurrat\r\nkursk\r\nkurta\r\nkuru\r\nkurux\r\nkusan\r\nkutch\r\nkutuzov\r\nkuvasz\r\nkuvi\r\nkuwait\r\nkuwaiti\r\nkuznets\r\nkv\r\nkvass\r\nkvetch\r\nkw\r\nkw-hr\r\nkwa\r\nkwacha\r\nkwai\r\nkwajalein\r\nkwakiutl\r\nkwan-yin\r\nkwangchow\r\nkwangju\r\nkwangtung\r\nkwannon\r\nkwanza\r\nkwanzaa\r\nkwashiorkor\r\nkwazulu-natal\r\nkweek\r\nkwela\r\nkwell\r\nky\r\nkyanite\r\nkyat\r\nkyd\r\nkylie\r\nkylix\r\nkymograph\r\nkyo-chiku\r\nkyoto\r\nkyphosidae\r\nkyphosis\r\nkyphosus\r\nkyphotic\r\nkyrgyzstan\r\nkyrgyzstani\r\nkyushu\r\nkyyiv\r\nl\r\nl'aquila\r\nl'enfant\r\nl-dopa\r\nl-p\r\nl-plate\r\nl-shaped\r\nla\r\nla-di-da\r\nlaager\r\nlab\r\nlaban\r\nlabanotation\r\nlabdanum\r\nlabel\r\nlabeled\r\nlabelled\r\nlabetalol\r\nlabial\r\nlabialise\r\nlabialize\r\nlabiatae\r\nlabiate\r\nlabile\r\nlabiodental\r\nlabium\r\nlablab\r\nlablink\r\nlabor\r\nlabor-intensive\r\nlaboratory\r\nlabored\r\nlaborer\r\nlaboring\r\nlaborious\r\nlaboriousness\r\nlaborsaving\r\nlabour\r\nlabour-intensive\r\nlaboured\r\nlabourer\r\nlabouring\r\nlabourite\r\nlaboursaving\r\nlabrador\r\nlabridae\r\nlabrocyte\r\nlabrouste\r\nlaburnum\r\nlabyrinth\r\nlabyrinthian\r\nlabyrinthine\r\nlabyrinthitis\r\nlabyrinthodont\r\nlabyrinthodonta\r\nlabyrinthodontia\r\nlac\r\nlaccopetalum\r\nlace\r\nlacebark\r\nlaced\r\nlacelike\r\nlacepod\r\nlacer\r\nlacerate\r\nlacerated\r\nlaceration\r\nlacerta\r\nlacertid\r\nlacertidae\r\nlacertilia\r\nlacertilian\r\nlacewing\r\nlacewood\r\nlacework\r\nlachaise\r\nlachesis\r\nlachnolaimus\r\nlachrymal\r\nlachrymation\r\nlachrymator\r\nlachrymatory\r\nlachrymose\r\nlacing\r\nlaciniate\r\nlack\r\nlackadaisical\r\nlackey\r\nlacking\r\nlackluster\r\nlacklustre\r\nlaconia\r\nlaconian\r\nlaconic\r\nlaconically\r\nlaconicism\r\nlaconism\r\nlacquer\r\nlacquerware\r\nlacrimal\r\nlacrimation\r\nlacrimator\r\nlacrimatory\r\nlacrosse\r\nlactaid\r\nlactalbumin\r\nlactarius\r\nlactase\r\nlactate\r\nlactating\r\nlactation\r\nlacteal\r\nlactic\r\nlactifuge\r\nlactobacillaceae\r\nlactobacillus\r\nlactobacteriaceae\r\nlactoflavin\r\nlactogen\r\nlactogenic\r\nlactophrys\r\nlactose\r\nlactosuria\r\nlactuca\r\nlacuna\r\nlacustrine\r\nlacy\r\nlad\r\nladanum\r\nladder\r\nladder-back\r\nladder-proof\r\nladdie\r\nlade\r\nladen\r\nladened\r\nladies'-eardrop\r\nladies'-eardrops\r\nladin\r\nlading\r\nladino\r\nladle\r\nladoga\r\nlady\r\nlady's-eardrop\r\nlady's-eardrops\r\nlady's-finger\r\nlady-in-waiting\r\nlady-of-the-night\r\nlady-slipper\r\nladybeetle\r\nladybird\r\nladybug\r\nladyfinger\r\nladyfish\r\nladylike\r\nladylikeness\r\nladylove\r\nladyship\r\nlaelia\r\nlaertes\r\nlaetrile\r\nlaevulose\r\nlafayette\r\nlaffer\r\nlaffite\r\nlafitte\r\nlag\r\nlagan\r\nlagarostrobus\r\nlagenaria\r\nlagend\r\nlagenophera\r\nlager\r\nlagerstroemia\r\nlaggard\r\nlagger\r\nlagging\r\nlagidium\r\nlagniappe\r\nlagodon\r\nlagomorph\r\nlagomorpha\r\nlagoon\r\nlagophthalmos\r\nlagopus\r\nlagorchestes\r\nlagos\r\nlagostomus\r\nlagothrix\r\nlaguna\r\nlaguncularia\r\nlagune\r\nlah\r\nlahar\r\nlahore\r\nlahu\r\nlaic\r\nlaicise\r\nlaicize\r\nlaid\r\nlaid-back\r\nlaid-off\r\nlair\r\nlaird\r\nlaissez-faire\r\nlaity\r\nlaius\r\nlake\r\nlakefront\r\nlakeland\r\nlakeshore\r\nlakeside\r\nlakh\r\nlakota\r\nlakshmi\r\nlallans\r\nlallation\r\nlally\r\nlallygag\r\nlam\r\nlama\r\nlamaism\r\nlamaist\r\nlamarck\r\nlamarckian\r\nlamarckism\r\nlamasery\r\nlamaze\r\nlamb\r\nlamb's-quarter\r\nlamb's-quarters\r\nlamb-chop\r\nlambast\r\nlambaste\r\nlambchop\r\nlambda\r\nlambdacism\r\nlambency\r\nlambent\r\nlambert\r\nlambertia\r\nlambis\r\nlambkill\r\nlambkin\r\nlamblike\r\nlambrequin\r\nlambskin\r\nlame\r\nlamedh\r\nlamella\r\nlamellibranch\r\nlamellibranchia\r\nlamellicornia\r\nlameness\r\nlament\r\nlamentable\r\nlamentably\r\nlamentation\r\nlamentations\r\nlamented\r\nlamenter\r\nlamenting\r\nlamia\r\nlamiaceae\r\nlamina\r\nlaminal\r\nlaminar\r\nlaminaria\r\nlaminariaceae\r\nlaminariales\r\nlaminate\r\nlamination\r\nlaminator\r\nlaminectomy\r\nlaminitis\r\nlamisil\r\nlamium\r\nlamivudine\r\nlammas\r\nlammastide\r\nlammergeier\r\nlammergeyer\r\nlamna\r\nlamnidae\r\nlamp\r\nlampblack\r\nlamphouse\r\nlamplight\r\nlamplighter\r\nlamplit\r\nlampoon\r\nlampooner\r\nlamppost\r\nlamprey\r\nlampridae\r\nlampris\r\nlampropeltis\r\nlampshade\r\nlampshell\r\nlampyridae\r\nlan\r\nlanai\r\nlanate\r\nlancashire\r\nlancaster\r\nlancastrian\r\nlance\r\nlance-shaped\r\nlancelet\r\nlancelike\r\nlancelot\r\nlanceolate\r\nlancer\r\nlancers\r\nlancet\r\nlancet-shaped\r\nlancetfish\r\nlancewood\r\nlanchou\r\nlanchow\r\nlancinate\r\nlancinating\r\nland\r\nlandau\r\nlanded\r\nlander\r\nlandfall\r\nlandfill\r\nlandgrave\r\nlandholder\r\nlandholding\r\nlanding\r\nlandlady\r\nlandler\r\nlandless\r\nlandline\r\nlandlocked\r\nlandlord\r\nlandlubber\r\nlandlubberly\r\nlandman\r\nlandmark\r\nlandmass\r\nlandowner\r\nlandowska\r\nlandrover\r\nlandscape\r\nlandscaped\r\nlandscaper\r\nlandscaping\r\nlandscapist\r\nlandside\r\nlandslide\r\nlandslip\r\nlandsmal\r\nlandsman\r\nlandsteiner\r\nlandward\r\nlandwards\r\nlane\r\nlaney\r\nlangbeinite\r\nlange\r\nlanglauffer\r\nlangley\r\nlangmuir\r\nlangobard\r\nlangouste\r\nlangoustine\r\nlangsat\r\nlangset\r\nlangside\r\nlangsyne\r\nlangtry\r\nlanguage\r\nlanguedoc-roussillon\r\nlanguid\r\nlanguish\r\nlanguisher\r\nlanguor\r\nlanguorous\r\nlangur\r\nlaniard\r\nlaniary\r\nlaniidae\r\nlanius\r\nlank\r\nlankiness\r\nlanky\r\nlanolin\r\nlanoxin\r\nlansa\r\nlansat\r\nlanseh\r\nlanset\r\nlansing\r\nlansoprazole\r\nlantana\r\nlantern\r\nlantern-fly\r\nlantern-jawed\r\nlanternfish\r\nlanthanide\r\nlanthanoid\r\nlanthanon\r\nlanthanotidae\r\nlanthanotus\r\nlanthanum\r\nlanugo\r\nlanyard\r\nlanzhou\r\nlao\r\nlao-tse\r\nlao-tzu\r\nlao-zi\r\nlaocoon\r\nlaos\r\nlaotian\r\nlap\r\nlap-jointed\r\nlap-strake\r\nlap-straked\r\nlap-streak\r\nlap-streaked\r\nlaparocele\r\nlaparoscope\r\nlaparoscopy\r\nlaparotomy\r\nlapboard\r\nlapdog\r\nlapel\r\nlapful\r\nlapidarian\r\nlapidarist\r\nlapidary\r\nlapidate\r\nlapidation\r\nlapidator\r\nlapidify\r\nlapidist\r\nlapin\r\nlaplace\r\nlapland\r\nlaportea\r\nlapp\r\nlappet\r\nlappic\r\nlapping\r\nlappish\r\nlappland\r\nlapplander\r\nlappula\r\nlapse\r\nlapsed\r\nlapsing\r\nlaptop\r\nlaputa\r\nlaputan\r\nlapwing\r\nlaramie\r\nlarboard\r\nlarcener\r\nlarcenist\r\nlarcenous\r\nlarceny\r\nlarch\r\nlard\r\nlarder\r\nlardizabala\r\nlardizabalaceae\r\nlardner\r\nlaredo\r\nlarge\r\nlarge-cap\r\nlarge-capitalisation\r\nlarge-capitalization\r\nlarge-grained\r\nlarge-headed\r\nlarge-hearted\r\nlarge-leafed\r\nlarge-leaved\r\nlarge-minded\r\nlarge-mouthed\r\nlarge-scale\r\nlargely\r\nlargemouth\r\nlargeness\r\nlarger\r\nlarger-than-life\r\nlargess\r\nlargesse\r\nlarghetto\r\nlarghissimo\r\nlargish\r\nlargo\r\nlari\r\nlariat\r\nlaricariidae\r\nlarid\r\nlaridae\r\nlarium\r\nlarix\r\nlark\r\nlarkspur\r\nlarn\r\nlarodopa\r\nlarotid\r\nlarousse\r\nlarrea\r\nlarrup\r\nlarus\r\nlarva\r\nlarvacea\r\nlarvacean\r\nlarvacide\r\nlarval\r\nlarvicide\r\nlaryngeal\r\nlaryngectomy\r\nlaryngismus\r\nlaryngitis\r\nlaryngopharyngeal\r\nlaryngopharyngitis\r\nlaryngopharynx\r\nlaryngoscope\r\nlaryngospasm\r\nlaryngostenosis\r\nlaryngotracheobronchitis\r\nlarynx\r\nlasagna\r\nlasagne\r\nlasalle\r\nlascar\r\nlascaux\r\nlascivious\r\nlasciviously\r\nlasciviousness\r\nlaser\r\nlash\r\nlash-like\r\nlash-up\r\nlasher\r\nlashing\r\nlashings\r\nlashkar-e-jhangvi\r\nlashkar-e-omar\r\nlashkar-e-taiba\r\nlashkar-e-tayyiba\r\nlashkar-e-toiba\r\nlasiocampa\r\nlasiocampid\r\nlasiocampidae\r\nlasiurus\r\nlasix\r\nlass\r\nlassa\r\nlassie\r\nlassitude\r\nlasso\r\nlast\r\nlast-ditch\r\nlast-minute\r\nlast-place\r\nlastex\r\nlasthenia\r\nlasting\r\nlastingness\r\nlastly\r\nlastreopsis\r\nlat\r\nlatakia\r\nlatanier\r\nlatch\r\nlatched\r\nlatchet\r\nlatchkey\r\nlatchstring\r\nlate\r\nlate-blooming\r\nlate-flowering\r\nlate-ripening\r\nlate-spring-blooming\r\nlatecomer\r\nlateen\r\nlateen-rig\r\nlateen-rigged\r\nlately\r\nlatency\r\nlateness\r\nlatent\r\nlater\r\nlateral\r\nlateralisation\r\nlaterality\r\nlateralization\r\nlateralize\r\nlateran\r\nlaterite\r\nlatest\r\nlatex\r\nlath\r\nlathe\r\nlathee\r\nlather\r\nlathery\r\nlathi\r\nlathyrus\r\nlaticifer\r\nlatimeria\r\nlatimeridae\r\nlatin\r\nlatin-american\r\nlatinate\r\nlatinesce\r\nlatinise\r\nlatinism\r\nlatinist\r\nlatinize\r\nlatino\r\nlatish\r\nlatitude\r\nlatitudinal\r\nlatitudinarian\r\nlatium\r\nlatke\r\nlatona\r\nlatria\r\nlatrine\r\nlatrobe\r\nlatrodectus\r\nlats\r\nlatte\r\nlatten\r\nlatter\r\nlatter-day\r\nlatterly\r\nlattice\r\nlatticed\r\nlatticelike\r\nlatticework\r\nlatvia\r\nlatvian\r\nlaud\r\nlaudability\r\nlaudable\r\nlaudableness\r\nlaudably\r\nlaudanum\r\nlaudator\r\nlaudatory\r\nlauder\r\nlaudo\r\nlaugh\r\nlaughable\r\nlaughably\r\nlaugher\r\nlaughing\r\nlaughingstock\r\nlaughter\r\nlaughton\r\nlauhala\r\nlaunce\r\nlaunch\r\nlauncher\r\nlaunching\r\nlaunchpad\r\nlaunder\r\nlaunderette\r\nlaundering\r\nlaundress\r\nlaundromat\r\nlaundry\r\nlaundryman\r\nlaundrywoman\r\nlauraceae\r\nlaurasia\r\nlaureate\r\nlaurel\r\nlaurel-tree\r\nlaureled\r\nlaurelled\r\nlaurels\r\nlaurelwood\r\nlaurens\r\nlaurentius\r\nlaurus\r\nlausanne\r\nlav\r\nlava\r\nlavabo\r\nlavage\r\nlavalava\r\nlavalier\r\nlavaliere\r\nlavalliere\r\nlavandula\r\nlavatera\r\nlavation\r\nlavatory\r\nlave\r\nlavender\r\nlavender-pink\r\nlavender-tinged\r\nlaver\r\nlavish\r\nlavishly\r\nlavishness\r\nlavoisier\r\nlaw\r\nlaw-abiding\r\nlaw-breaking\r\nlaw-makers\r\nlawbreaker\r\nlawcourt\r\nlawful\r\nlawfully\r\nlawfully-begotten\r\nlawfulness\r\nlawgiver\r\nlawless\r\nlawlessly\r\nlawlessness\r\nlawmaker\r\nlawmaking\r\nlawman\r\nlawn\r\nlawrence\r\nlawrencium\r\nlaws\r\nlawsuit\r\nlawton\r\nlawyer\r\nlawyerbush\r\nlax\r\nlaxation\r\nlaxative\r\nlaxity\r\nlaxly\r\nlaxness\r\nlay\r\nlay-by\r\nlay-up\r\nlayabout\r\nlayby\r\nlayer\r\nlayered\r\nlayette\r\nlayia\r\nlaying\r\nlayman\r\nlayoff\r\nlayout\r\nlayover\r\nlayperson\r\nlayup\r\nlazar\r\nlazaret\r\nlazarette\r\nlazaretto\r\nlazarus\r\nlaze\r\nlazily\r\nlaziness\r\nlazio\r\nlazuli\r\nlazuline\r\nlazy\r\nlazybones\r\nlb\r\nlbf.\r\nlbj\r\nlcd\r\nlcm\r\nld.\r\nldl\r\nle\r\nlea\r\nleach\r\nleaching\r\nleacock\r\nlead\r\nlead-colored\r\nlead-coloured\r\nlead-free\r\nlead-in\r\nleadbelly\r\nleaded\r\nleaden\r\nleader\r\nleaders\r\nleadership\r\nleading\r\nleadless\r\nleadplant\r\nleadwort\r\nleaf\r\nleaf-book\r\nleaf-cutter\r\nleaf-like\r\nleaf-miner\r\nleaf-roller\r\nleafage\r\nleafed\r\nleafhopper\r\nleafing\r\nleafless\r\nleaflet\r\nleaflike\r\nleafstalk\r\nleafy\r\nleafy-stemmed\r\nleague\r\nleak\r\nleakage\r\nleaker\r\nleakey\r\nleakiness\r\nleakproof\r\nleaky\r\nleal\r\nlean\r\nlean-to\r\nleander\r\nleaner\r\nleaning\r\nleanness\r\nleap\r\nleaper\r\nleapfrog\r\nleaping\r\nlear\r\nlearn\r\nlearned\r\nlearnedly\r\nlearnedness\r\nlearner\r\nlearning\r\nleary\r\nlease\r\nlease-lend\r\nleased\r\nleasehold\r\nleaseholder\r\nleash\r\nleast\r\nleastways\r\nleastwise\r\nleather\r\nleather-leafed\r\nleather-leaved\r\nleatherback\r\nleathered\r\nleatherette\r\nleatherfish\r\nleatherjack\r\nleatherjacket\r\nleatherleaf\r\nleatherlike\r\nleatherneck\r\nleatherwood\r\nleatherwork\r\nleathery\r\nleave\r\nleave-taking\r\nleaved\r\nleaven\r\nleavened\r\nleavening\r\nleaver\r\nleaving\r\nlebanese\r\nlebanon\r\nlebensraum\r\nlebistes\r\nlecanopteris\r\nlecanora\r\nlecanoraceae\r\nleccinum\r\nlech\r\nlechanorales\r\nlechartelierite\r\nlechatelierite\r\nlecher\r\nlecherous\r\nlecherousness\r\nlechery\r\nlechwe\r\nlecithin\r\nlectern\r\nlectin\r\nlector\r\nlecture\r\nlecturer\r\nlectureship\r\nlecturing\r\nlecythidaceae\r\nled\r\nleda\r\nledbetter\r\nlede\r\nlederhosen\r\nledge\r\nledgeman\r\nledger\r\nledum\r\nlee\r\nleech\r\nleechee\r\nleechlike\r\nleeds\r\nleek\r\nleer\r\nleering\r\nleery\r\nlees\r\nleeuwenhoek\r\nleeward\r\nleeway\r\nleflunomide\r\nleft\r\nleft-eyed\r\nleft-hand\r\nleft-handed\r\nleft-handedess\r\nleft-handedness\r\nleft-hander\r\nleft-of-center\r\nleft-slanting\r\nleft-wing\r\nleft-winger\r\nleftfield\r\nlefthander\r\nleftish\r\nleftism\r\nleftist\r\nleftmost\r\nleftover\r\nleftovers\r\nlefty\r\nleg\r\nleg-pull\r\nleg-pulling\r\nlegacy\r\nlegal\r\nlegalese\r\nlegalisation\r\nlegalise\r\nlegalism\r\nlegality\r\nlegalization\r\nlegalize\r\nlegally\r\nlegate\r\nlegatee\r\nlegateship\r\nlegation\r\nlegato\r\nlegend\r\nlegendary\r\nleger\r\nlegerdemain\r\nlegerity\r\nlegged\r\nlegging\r\nleggy\r\nleghorn\r\nlegibility\r\nlegible\r\nlegibly\r\nlegin\r\nlegion\r\nlegionary\r\nlegionella\r\nlegionnaire\r\nlegislate\r\nlegislating\r\nlegislation\r\nlegislative\r\nlegislator\r\nlegislatorship\r\nlegislature\r\nlegitimacy\r\nlegitimate\r\nlegitimately\r\nlegitimation\r\nlegitimatise\r\nlegitimatize\r\nlegitimise\r\nlegitimize\r\nlegless\r\nleglike\r\nlego\r\nlegs\r\nlegume\r\nleguminious\r\nleguminosae\r\nleguminous\r\nlehar\r\nlei\r\nleibnitz\r\nleibnitzian\r\nleibniz\r\nleibnizian\r\nleicester\r\nleicestershire\r\nleiden\r\nleigh\r\nleiomyoma\r\nleiomyosarcoma\r\nleiopelma\r\nleiopelmatidae\r\nleiophyllum\r\nleipoa\r\nleipzig\r\nleishmania\r\nleishmaniasis\r\nleishmaniosis\r\nleister\r\nleisure\r\nleisured\r\nleisureliness\r\nleisurely\r\nleitmotif\r\nleitmotiv\r\nleitneria\r\nleitneriaceae\r\nlek\r\nlekvar\r\nlem\r\nlemaireocereus\r\nlemaitre\r\nlemanderin\r\nlemma\r\nlemming\r\nlemmon\r\nlemmus\r\nlemna\r\nlemnaceae\r\nlemniscus\r\nlemnos\r\nlemon\r\nlemon-scented\r\nlemon-wood\r\nlemonade\r\nlemongrass\r\nlemonlike\r\nlemonwood\r\nlemony\r\nlempira\r\nlemur\r\nlemuridae\r\nlemuroidea\r\nlena\r\nlenard\r\nlend\r\nlend-lease\r\nlendable\r\nlender\r\nlending\r\nlendl\r\nlength\r\nlengthen\r\nlengthened\r\nlengthening\r\nlengthily\r\nlengthiness\r\nlengthways\r\nlengthwise\r\nlengthy\r\nlenience\r\nleniency\r\nlenient\r\nleniently\r\nlenify\r\nlenin\r\nleningrad\r\nleninism\r\nlenitive\r\nlenity\r\nlennoaceae\r\nlennon\r\nlens\r\nlense\r\nlensman\r\nlent\r\nlenten\r\nlententide\r\nlentia\r\nlentibulariaceae\r\nlentic\r\nlenticel\r\nlenticular\r\nlentiform\r\nlentiginose\r\nlentiginous\r\nlentigo\r\nlentil\r\nlentinus\r\nlentisk\r\nlentissimo\r\nlento\r\nleo\r\nleon\r\nleonard\r\nleonardesque\r\nleonardo\r\nleonberg\r\nleoncita\r\nleone\r\nleonidas\r\nleonine\r\nleonotis\r\nleontief\r\nleontocebus\r\nleontodon\r\nleontopodium\r\nleonurus\r\nleopard\r\nleopard's-bane\r\nleopardbane\r\nleopardess\r\nleopoldville\r\nleotard\r\nleotards\r\nlepadidae\r\nlepanto\r\nlepas\r\nlepechinia\r\nleper\r\nlepidium\r\nlepidobotryaceae\r\nlepidobotrys\r\nlepidochelys\r\nlepidocrocite\r\nlepidocybium\r\nlepidodendraceae\r\nlepidodendrales\r\nlepidolite\r\nlepidomelane\r\nlepidophobia\r\nlepidoptera\r\nlepidopteran\r\nlepidopterist\r\nlepidopterologist\r\nlepidopterology\r\nlepidopteron\r\nlepidoptery\r\nlepidosauria\r\nlepidote\r\nlepidothamnus\r\nlepiota\r\nlepiotaceae\r\nlepisma\r\nlepismatidae\r\nlepisosteidae\r\nlepisosteus\r\nlepomis\r\nleporid\r\nleporidae\r\nleporide\r\nleppy\r\nleprechaun\r\nleprose\r\nleprosy\r\nleprous\r\nleptarrhena\r\nleptinotarsa\r\nleptocephalus\r\nleptodactylid\r\nleptodactylidae\r\nleptodactylus\r\nleptoglossus\r\nleptomeninges\r\nleptomeningitis\r\nlepton\r\nleptopteris\r\nleptoptilus\r\nleptorhine\r\nleptorrhine\r\nleptorrhinian\r\nleptorrhinic\r\nleptospira\r\nleptospirosis\r\nleptosporangiate\r\nleptosporangium\r\nleptotene\r\nleptotyphlopidae\r\nleptotyphlops\r\nlepus\r\nler\r\nleresis\r\nlermontov\r\nlerner\r\nlerot\r\nlesbian\r\nlesbianism\r\nlesbos\r\nlescol\r\nlesion\r\nlesotho\r\nlespedeza\r\nlesquerella\r\nless\r\nless-traveled\r\nlessee\r\nlessen\r\nlessened\r\nlessening\r\nlesseps\r\nlesser\r\nlessing\r\nlesson\r\nlessor\r\nlesvos\r\nlet\r\nletch\r\nletdown\r\nlethal\r\nlethality\r\nlethargic\r\nlethargically\r\nlethargy\r\nlethe\r\nleto\r\nletter\r\nletter-perfect\r\nlettercard\r\nlettered\r\nletterer\r\nletterhead\r\nlettering\r\nletterman\r\nletterpress\r\nletters\r\nletting\r\nlettish\r\nlettuce\r\nletup\r\nleu\r\nleucadendron\r\nleucaemia\r\nleucaena\r\nleucanthemum\r\nleucine\r\nleuciscus\r\nleucocyte\r\nleucocytosis\r\nleucocytozoan\r\nleucocytozoon\r\nleucogenes\r\nleucoma\r\nleucopenia\r\nleucorrhea\r\nleucothoe\r\nleucotomy\r\nleuctra\r\nleukaemia\r\nleukemia\r\nleukeran\r\nleukocyte\r\nleukocytosis\r\nleukoderma\r\nleukoencephalitis\r\nleukoma\r\nleukopenia\r\nleukorrhea\r\nleukotomy\r\nleuwenhoek\r\nlev\r\nlevallorphan\r\nlevant\r\nlevanter\r\nlevantine\r\nlevator\r\nlevee\r\nlevel\r\nlevel-headed\r\nleveler\r\nlevelheaded\r\nleveling\r\nleveller\r\nlever\r\nleverage\r\nleveraging\r\nleveret\r\nlevi\r\nlevi's\r\nlevi-strauss\r\nleviathan\r\nlevirate\r\nlevis\r\nlevisticum\r\nlevitate\r\nlevitation\r\nlevite\r\nlevitical\r\nleviticus\r\nlevitra\r\nlevity\r\nlevodopa\r\nlevorotary\r\nlevorotation\r\nlevorotatory\r\nlevulose\r\nlevy\r\nlewd\r\nlewdly\r\nlewdness\r\nlewis\r\nlewisia\r\nlewiston\r\nlexeme\r\nlexical\r\nlexicalisation\r\nlexicalise\r\nlexicalised\r\nlexicalization\r\nlexicalize\r\nlexicalized\r\nlexicographer\r\nlexicographic\r\nlexicographical\r\nlexicography\r\nlexicologist\r\nlexicology\r\nlexicon\r\nlexicostatistic\r\nlexicostatistics\r\nlexington\r\nlexis\r\nley\r\nleycesteria\r\nleyden\r\nleymus\r\nleyte\r\nlf\r\nlgb\r\nlgv\r\nlh\r\nlhasa\r\nlhotse\r\nli\r\nliabilities\r\nliability\r\nliable\r\nliaise\r\nliaison\r\nliakoura\r\nliana\r\nliao\r\nliar\r\nliatris\r\nlibation\r\nlibber\r\nlibby\r\nlibel\r\nlibeler\r\nlibellous\r\nlibelous\r\nliberal\r\nliberalisation\r\nliberalise\r\nliberalism\r\nliberalist\r\nliberalistic\r\nliberality\r\nliberalization\r\nliberalize\r\nliberally\r\nliberalness\r\nliberate\r\nliberated\r\nliberation\r\nliberator\r\nliberia\r\nliberian\r\nlibertarian\r\nlibertarianism\r\nlibertine\r\nliberty\r\nlibidinal\r\nlibidinous\r\nlibido\r\nlibocedrus\r\nlibra\r\nlibrarian\r\nlibrarianship\r\nlibrary\r\nlibrate\r\nlibration\r\nlibrettist\r\nlibretto\r\nlibreville\r\nlibritabs\r\nlibrium\r\nlibya\r\nlibyan\r\nlicence\r\nlicenced\r\nlicencee\r\nlicense\r\nlicensed\r\nlicensee\r\nlicenser\r\nlicentiate\r\nlicentious\r\nlicentiously\r\nlicentiousness\r\nlichanura\r\nlichee\r\nlichen\r\nlichenales\r\nlichenes\r\nlichgate\r\nlichi\r\nlichtenstein\r\nlicit\r\nlicitly\r\nlicitness\r\nlick\r\nlicked\r\nlicking\r\nlicorice\r\nlid\r\nlidar\r\nlidded\r\nlidless\r\nlido\r\nlidocaine\r\nlie\r\nlie-abed\r\nlie-in\r\nliebfraumilch\r\nliechtenstein\r\nliechtensteiner\r\nlied\r\nliederkranz\r\nlief\r\nliege\r\nliegeman\r\nlien\r\nlienal\r\nliepaja\r\nlietuva\r\nlieu\r\nlieutenancy\r\nlieutenant\r\nlife\r\nlife-and-death\r\nlife-giving\r\nlife-of-man\r\nlife-or-death\r\nlife-size\r\nlife-sized\r\nlife-style\r\nlife-support\r\nlife-sustaining\r\nlife-threatening\r\nlife-time\r\nlifeblood\r\nlifeboat\r\nlifeguard\r\nlifeless\r\nlifelessly\r\nlifelessness\r\nlifelike\r\nlifeline\r\nlifelong\r\nlifer\r\nlifesaver\r\nlifesaving\r\nlifesize\r\nlifespan\r\nlifestyle\r\nlifetime\r\nlifework\r\nlifo\r\nlift\r\nlifted\r\nlifter\r\nliftman\r\nliftoff\r\nligament\r\nligan\r\nligand\r\nligate\r\nligation\r\nligature\r\nliger\r\nlight\r\nlight-armed\r\nlight-blue\r\nlight-boned\r\nlight-colored\r\nlight-duty\r\nlight-fingered\r\nlight-footed\r\nlight-green\r\nlight-haired\r\nlight-handed\r\nlight-headed\r\nlight-headedly\r\nlight-hearted\r\nlight-heartedly\r\nlight-minded\r\nlight-mindedness\r\nlight-o'-love\r\nlight-of-love\r\nlight-sensitive\r\nlight-skinned\r\nlight-tight\r\nlight-year\r\nlightbulb\r\nlighted\r\nlighten\r\nlightening\r\nlighter\r\nlighter-than-air\r\nlighterage\r\nlighterman\r\nlightheaded\r\nlightheadedness\r\nlighthearted\r\nlightheartedness\r\nlighthouse\r\nlighting\r\nlighting-up\r\nlightless\r\nlightlessness\r\nlightly\r\nlightly-armed\r\nlightness\r\nlightning\r\nlightproof\r\nlights-out\r\nlightship\r\nlightsome\r\nlightsomely\r\nlightsomeness\r\nlightweight\r\nlightwood\r\nligne\r\nligneous\r\nlignified\r\nlignify\r\nlignin\r\nlignite\r\nlignosae\r\nlignum\r\nligularia\r\nligule\r\nliguria\r\nligustrum\r\nlii\r\nliii\r\nlikable\r\nlike\r\nlike-minded\r\nlikeable\r\nliked\r\nlikelihood\r\nlikeliness\r\nlikely\r\nliken\r\nlikeness\r\nlikening\r\nlikewise\r\nliking\r\nlikuta\r\nlilac\r\nlilac-blue\r\nlilac-colored\r\nlilac-pink\r\nlilac-purple\r\nlilangeni\r\nliliaceae\r\nliliaceous\r\nliliales\r\nliliidae\r\nliliopsid\r\nliliopsida\r\nlilith\r\nlilium\r\nliliuokalani\r\nlille\r\nlillie\r\nlilliput\r\nlilliputian\r\nlilo\r\nlilongwe\r\nlilt\r\nlilting\r\nlily\r\nlily-like\r\nlily-livered\r\nlily-white\r\nlilylike\r\nlilyturf\r\nlima\r\nlimacidae\r\nlimacine\r\nlimacoid\r\nliman\r\nlimanda\r\nlimax\r\nlimb\r\nlimbed\r\nlimber\r\nlimbers\r\nlimbic\r\nlimbless\r\nlimbo\r\nlimburger\r\nlimbus\r\nlime\r\nlimeade\r\nlimeira\r\nlimekiln\r\nlimelight\r\nlimen\r\nlimenitis\r\nlimerick\r\nlimestone\r\nlimewater\r\nlimey\r\nlimicolae\r\nlimit\r\nlimitation\r\nlimited\r\nlimiter\r\nlimiting\r\nlimitless\r\nlimitlessness\r\nlimn\r\nlimner\r\nlimning\r\nlimnobium\r\nlimnocryptes\r\nlimnodromus\r\nlimnological\r\nlimnologist\r\nlimnology\r\nlimnos\r\nlimo\r\nlimonene\r\nlimonite\r\nlimonium\r\nlimosa\r\nlimousin\r\nlimousine\r\nlimp\r\nlimpa\r\nlimper\r\nlimpet\r\nlimpid\r\nlimpidity\r\nlimpidly\r\nlimping\r\nlimpkin\r\nlimpness\r\nlimpopo\r\nlimulidae\r\nlimulus\r\nlin\r\nlinac\r\nlinaceae\r\nlinage\r\nlinalool\r\nlinanthus\r\nlinaria\r\nlinchpin\r\nlincocin\r\nlincoln\r\nlincolnesque\r\nlincolnian\r\nlincolnshire\r\nlincomycin\r\nlind\r\nlindane\r\nlindbergh\r\nlinden\r\nlindera\r\nlindesnes\r\nlindheimera\r\nlindsay\r\nlindy\r\nline\r\nline-shooter\r\nline-shooting\r\nlineage\r\nlineal\r\nlineament\r\nlinear\r\nlinearise\r\nlinearity\r\nlinearize\r\nlinearly\r\nlineation\r\nlinebacker\r\nlinecut\r\nlined\r\nlinelike\r\nlineman\r\nlinemen\r\nlinen\r\nlinendraper\r\nliner\r\nlinesman\r\nlineup\r\nling\r\nling-pao\r\nlingam\r\nlingberry\r\nlingcod\r\nlingenberry\r\nlinger\r\nlingerer\r\nlingerie\r\nlingering\r\nlingeringly\r\nlingo\r\nlingonberry\r\nlingua\r\nlingual\r\nlingually\r\nlingualumina\r\nlinguica\r\nlinguine\r\nlinguini\r\nlinguist\r\nlinguistic\r\nlinguistically\r\nlinguistics\r\nlingulate\r\nliniment\r\nlinin\r\nlining\r\nlink\r\nlinkage\r\nlinkboy\r\nlinked\r\nlinkman\r\nlinks\r\nlinksman\r\nlinkup\r\nlinnaea\r\nlinnaean\r\nlinnaeus\r\nlinnean\r\nlinnet\r\nlino\r\nlinocut\r\nlinoleum\r\nlinotype\r\nlinseed\r\nlinsey-woolsey\r\nlinstock\r\nlint\r\nlintel\r\nlintwhite\r\nlinum\r\nlinuron\r\nlinux\r\nlinz\r\nliomys\r\nlion\r\nlion's-ear\r\nlion-hunter\r\nlioness\r\nlionet\r\nlionfish\r\nlionhearted\r\nlionise\r\nlionize\r\nliopelma\r\nliopelmidae\r\nliothyronine\r\nlip\r\nlip-gloss\r\nlip-read\r\nlip-shaped\r\nlip-sync\r\nlip-synch\r\nlipaemia\r\nliparidae\r\nliparididae\r\nliparis\r\nlipase\r\nlipchitz\r\nlipectomy\r\nlipemia\r\nlipfern\r\nlipid\r\nlipidaemia\r\nlipide\r\nlipidemia\r\nlipidosis\r\nlipitor\r\nlipizzan\r\nlipless\r\nliplike\r\nlipmann\r\nlipo-hepin\r\nlipo-lutin\r\nlipochondrodystrophy\r\nlipogram\r\nlipoid\r\nlipoidaemia\r\nlipoidemia\r\nlipoma\r\nlipomatosis\r\nlipophilic\r\nlipoprotein\r\nliposarcoma\r\nliposcelis\r\nliposome\r\nlipotropic\r\nlipotyphla\r\nlipped\r\nlippi\r\nlippizan\r\nlippizaner\r\nlippmann\r\nlipread\r\nlipreading\r\nlipscomb\r\nlipstick\r\nliquaemin\r\nliquefaction\r\nliquefiable\r\nliquefied\r\nliquefy\r\nliquescent\r\nliqueur\r\nliquid\r\nliquid-fueled\r\nliquidambar\r\nliquidate\r\nliquidation\r\nliquidator\r\nliquidise\r\nliquidiser\r\nliquidity\r\nliquidize\r\nliquidizer\r\nliquidness\r\nliquifiable\r\nliquified\r\nliquify\r\nliquor\r\nliquorice\r\nlir\r\nlira\r\nliriodendron\r\nliriope\r\nlisboa\r\nlisbon\r\nlisinopril\r\nlisle\r\nlisp\r\nlisper\r\nlissom\r\nlissome\r\nlissomeness\r\nlist\r\nlisted\r\nlisten\r\nlistener\r\nlistening\r\nlister\r\nlistera\r\nlisteria\r\nlisteriosis\r\nlisting\r\nlistless\r\nlistlessness\r\nliston\r\nlisu\r\nliszt\r\nlit\r\nlitany\r\nlitas\r\nlitchee\r\nlitchi\r\nlite\r\nliter\r\nliteracy\r\nliteral\r\nliteralise\r\nliteralism\r\nliteralize\r\nliterally\r\nliteralness\r\nliterary\r\nliterate\r\nliterati\r\nliterature\r\nlithane\r\nlithe\r\nlithe-bodied\r\nlitheness\r\nlithesome\r\nlithiasis\r\nlithic\r\nlithium\r\nlithocarpus\r\nlithodidae\r\nlithoglyptics\r\nlithograph\r\nlithographer\r\nlithographic\r\nlithography\r\nlithology\r\nlithomancer\r\nlithomancy\r\nlithomantic\r\nlithonate\r\nlithophragma\r\nlithophyte\r\nlithophytic\r\nlithops\r\nlithospermum\r\nlithosphere\r\nlithotomy\r\nlithuania\r\nlithuanian\r\nlithuresis\r\nlitigant\r\nlitigate\r\nlitigation\r\nlitigator\r\nlitigious\r\nlitigiousness\r\nlitmus\r\nlitocranius\r\nlitoral\r\nlitotes\r\nlitre\r\nlitter\r\nlitter-basket\r\nlitter-bearer\r\nlitterateur\r\nlitterbin\r\nlitterbug\r\nlittered\r\nlitterer\r\nlittle\r\nlittle-known\r\nlittleneck\r\nlittleness\r\nlittler\r\nlittoral\r\nlittorina\r\nlittorinidae\r\nlittre\r\nliturgical\r\nliturgics\r\nliturgiology\r\nliturgist\r\nliturgy\r\nliv\r\nlivable\r\nlive\r\nlive-and-die\r\nlive-bearer\r\nlive-bearing\r\nlive-forever\r\nliveable\r\nliveborn\r\nlivedo\r\nlivelihood\r\nliveliness\r\nlivelong\r\nlively\r\nliven\r\nliveness\r\nliver\r\nliver-colored\r\nliveried\r\nliverish\r\nliverleaf\r\nlivermore\r\nliverpool\r\nliverpudlian\r\nliverwort\r\nliverwurst\r\nlivery\r\nliveryman\r\nlivestock\r\nlivid\r\nlividity\r\nlividness\r\nliving\r\nliving-room\r\nlivingston\r\nlivingstone\r\nlivistona\r\nlivonia\r\nlivonian\r\nlivonian-speaking\r\nlivy\r\nliza\r\nlizard\r\nlizard's-tail\r\nlizard-like\r\nlizardfish\r\nljubljana\r\nllama\r\nllano\r\nllb\r\nlld\r\nllm\r\nlloyd\r\nllud\r\nllullaillaco\r\nllyr\r\nlm\r\nlo/ovral\r\nloach\r\nload\r\nload-bearing\r\nload-shedding\r\nloaded\r\nloader\r\nloading\r\nloads\r\nloadstar\r\nloadstone\r\nloaf\r\nloafer\r\nloafing\r\nloam\r\nloamless\r\nloamy\r\nloan\r\nloan-blend\r\nloanblend\r\nloaner\r\nloaning\r\nloanword\r\nloasa\r\nloasaceae\r\nloath\r\nloathe\r\nloather\r\nloathing\r\nloathly\r\nloathsome\r\nloathsomeness\r\nlob\r\nlobachevsky\r\nlobar\r\nlobata\r\nlobate\r\nlobated\r\nlobby\r\nlobbyism\r\nlobbyist\r\nlobe\r\nlobectomy\r\nlobed\r\nlobefin\r\nlobelia\r\nlobeliaceae\r\nlobeliaceous\r\nlobipes\r\nlobito\r\nloblolly\r\nlobotes\r\nlobotidae\r\nlobotomy\r\nlobscouse\r\nlobscuse\r\nlobster\r\nlobster-backed\r\nlobster-like\r\nlobsterback\r\nlobsterman\r\nlobular\r\nlobularia\r\nlobularity\r\nlobule\r\nlobworm\r\nlocal\r\nlocale\r\nlocalisation\r\nlocalise\r\nlocalised\r\nlocalism\r\nlocality\r\nlocalization\r\nlocalize\r\nlocalized\r\nlocally\r\nlocate\r\nlocated\r\nlocater\r\nlocating\r\nlocation\r\nlocative\r\nlocator\r\nloch\r\nlochia\r\nlock\r\nlock-gate\r\nlockage\r\nlockbox\r\nlockdown\r\nlocke\r\nlocked\r\nlocker\r\nlocker-room\r\nlocket\r\nlocking\r\nlockjaw\r\nlockkeeper\r\nlockman\r\nlockmaster\r\nlocknut\r\nlockout\r\nlockring\r\nlocksmith\r\nlockstep\r\nlockstitch\r\nlockup\r\nloco\r\nlocoism\r\nlocomote\r\nlocomotion\r\nlocomotive\r\nlocomotor\r\nlocoweed\r\nlocule\r\nloculus\r\nlocum\r\nlocus\r\nlocust\r\nlocusta\r\nlocustidae\r\nlocution\r\nlode\r\nlodestar\r\nlodestone\r\nlodge\r\nlodgement\r\nlodgepole\r\nlodger\r\nlodging\r\nlodgings\r\nlodgment\r\nlodine\r\nlodz\r\nloeb\r\nloess\r\nloestrin\r\nloewe\r\nloewi\r\nlofortyx\r\nlofoten\r\nloft\r\nloftiness\r\nlofty\r\nlog\r\nlog-in\r\nlogagraphia\r\nlogan\r\nloganberry\r\nlogania\r\nloganiaceae\r\nlogarithm\r\nlogarithmic\r\nlogbook\r\nloge\r\nlogger\r\nloggerhead\r\nloggerheaded\r\nloggia\r\nlogginess\r\nlogging\r\nlogic\r\nlogical\r\nlogicality\r\nlogically\r\nlogicalness\r\nlogician\r\nlogicism\r\nloginess\r\nlogion\r\nlogistic\r\nlogistical\r\nlogistician\r\nlogistics\r\nlogjam\r\nlogo\r\nlogogram\r\nlogogrammatic\r\nlogograph\r\nlogographic\r\nlogomach\r\nlogomachist\r\nlogomachy\r\nlogomania\r\nlogorrhea\r\nlogos\r\nlogotype\r\nlogroll\r\nlogrolling\r\nlogrono\r\nlogwood\r\nlogy\r\nlohan\r\nloin\r\nloincloth\r\nloins\r\nloir\r\nloire\r\nloiseleuria\r\nloiter\r\nloiterer\r\nloki\r\nloligo\r\nlolita\r\nlolium\r\nloll\r\nlollipop\r\nlollop\r\nlolly\r\nlollygag\r\nlolo\r\nlolo-burmese\r\nloloish\r\nlomariopsidaceae\r\nlomatia\r\nlombard\r\nlombardia\r\nlombardy\r\nlome\r\nloment\r\nlomogramma\r\nlomotil\r\nlomustine\r\nlonas\r\nlonchocarpus\r\nlondon\r\nlondoner\r\nlone\r\nloneliness\r\nlonely\r\nloner\r\nlonesome\r\nlonesomeness\r\nlong\r\nlong-acting\r\nlong-ago\r\nlong-armed\r\nlong-beard\r\nlong-bodied\r\nlong-branched\r\nlong-chain\r\nlong-dated\r\nlong-distance\r\nlong-faced\r\nlong-familiar\r\nlong-haired\r\nlong-handled\r\nlong-headed\r\nlong-jawed\r\nlong-lasting\r\nlong-legged\r\nlong-legs\r\nlong-life\r\nlong-lived\r\nlong-play\r\nlong-playing\r\nlong-range\r\nlong-run\r\nlong-shanked\r\nlong-snouted\r\nlong-spurred\r\nlong-stalked\r\nlong-standing\r\nlong-staple\r\nlong-sufferance\r\nlong-suffering\r\nlong-term\r\nlong-wearing\r\nlong-winded\r\nlong-windedly\r\nlong-windedness\r\nlong-wool\r\nlong-wooled\r\nlongan\r\nlonganberry\r\nlonganimity\r\nlonganimous\r\nlongbeard\r\nlongboat\r\nlongbow\r\nlongbowman\r\nlonged-for\r\nlonger\r\nlongevity\r\nlongfellow\r\nlonghand\r\nlonghorn\r\nlongicorn\r\nlonging\r\nlongingly\r\nlongish\r\nlongitude\r\nlongitudinal\r\nlongitudinally\r\nlonglegs\r\nlongness\r\nlongroot\r\nlongshoreman\r\nlongshot\r\nlongsighted\r\nlongsightedness\r\nlongstanding\r\nlongtime\r\nlongueur\r\nlongways\r\nlongwise\r\nlongwool\r\nlongyi\r\nlonicera\r\nloniten\r\nlontar\r\nloo\r\nloofa\r\nloofah\r\nlook\r\nlook-alike\r\nlook-over\r\nlookdown\r\nlooker\r\nlooker-on\r\nlooking\r\nlookout\r\nlookup\r\nloom\r\nloon\r\nlooney\r\nloony\r\nloop\r\nloop-line\r\nloop-the-loop\r\nlooped\r\nlooper\r\nloophole\r\nlooping\r\nloopy\r\nloos\r\nloose\r\nloose-fitting\r\nloose-jointed\r\nloose-jowled\r\nlooseleaf\r\nloosely\r\nloosen\r\nloosened\r\nlooseness\r\nloosening\r\nloosestrife\r\nloot\r\nlooted\r\nlooter\r\nlooting\r\nlop\r\nlop-eared\r\nlope\r\nlophiidae\r\nlophius\r\nlophodytes\r\nlopholatilus\r\nlophophora\r\nlophophorus\r\nlophosoria\r\nlophosoriaceae\r\nlopid\r\nlopper\r\nlopressor\r\nlopsided\r\nlopsidedly\r\nlopsidedness\r\nloquacious\r\nloquaciously\r\nloquaciousness\r\nloquacity\r\nloquat\r\nloranthaceae\r\nloranthus\r\nlorazepam\r\nlorca\r\nlorchel\r\nlord\r\nlordless\r\nlordliness\r\nlordly\r\nlordolatry\r\nlordosis\r\nlordotic\r\nlords-and-ladies\r\nlordship\r\nlore\r\nlorelei\r\nloren\r\nlorentz\r\nlorenz\r\nlorfan\r\nlorgnette\r\nlorica\r\nloricata\r\nloriinae\r\nlorikeet\r\nlorisidae\r\nlorraine\r\nlorre\r\nlorry\r\nlory\r\nlose\r\nloser\r\nlosings\r\nloss\r\nlosses\r\nlossless\r\nlossy\r\nlost\r\nlost-and-found\r\nlot\r\nlota\r\nloth\r\nlothario\r\nlothringen\r\nloti\r\nlotic\r\nlotion\r\nlots\r\nlotte\r\nlottery\r\nlotto\r\nlotus\r\nlotus-eater\r\nlotusland\r\nlouche\r\nloud\r\nloud-hailer\r\nloud-mouthed\r\nloud-voiced\r\nlouden\r\nloudly\r\nloudmouth\r\nloudness\r\nloudspeaker\r\nlough\r\nlouis\r\nlouisiana\r\nlouisianan\r\nlouisianian\r\nlouisville\r\nlounge\r\nlounger\r\nloungewear\r\nloupe\r\nlour\r\nlouse\r\nlousiness\r\nlousy\r\nlout\r\nloutish\r\nlouvar\r\nlouver\r\nlouvered\r\nlouvre\r\nlovable\r\nlovage\r\nlovastatin\r\nlove\r\nlove-in-a-mist\r\nlove-in-idleness\r\nlove-in-winter\r\nlove-lies-bleeding\r\nlove-philter\r\nlove-philtre\r\nlove-potion\r\nlove-song\r\nlove-token\r\nloveable\r\nlovebird\r\nloved\r\nlovelace\r\nloveless\r\nloveliness\r\nlovell\r\nlovelorn\r\nlovely\r\nlovemaking\r\nlover\r\nloverlike\r\nloverly\r\nloveseat\r\nlovesick\r\nlovesickness\r\nlovesome\r\nloving\r\nloving-kindness\r\nlovingly\r\nlovingness\r\nlovoa\r\nlow\r\nlow-altitude\r\nlow-backed\r\nlow-beam\r\nlow-budget\r\nlow-cal\r\nlow-ceilinged\r\nlow-class\r\nlow-cost\r\nlow-cut\r\nlow-density\r\nlow-down\r\nlow-grade\r\nlow-growing\r\nlow-interest\r\nlow-key\r\nlow-keyed\r\nlow-level\r\nlow-lying\r\nlow-necked\r\nlow-pitched\r\nlow-powered\r\nlow-pressure\r\nlow-priced\r\nlow-resolution\r\nlow-rise\r\nlow-set\r\nlow-spirited\r\nlow-spiritedness\r\nlow-sudsing\r\nlow-tech\r\nlow-tension\r\nlow-toned\r\nlow-voltage\r\nlow-warp-loom\r\nlowan\r\nlowball\r\nlowborn\r\nlowboy\r\nlowbred\r\nlowbrow\r\nlowbrowed\r\nlowell\r\nlower\r\nlower-class\r\nlower-middle-class\r\nlower-normandy\r\nlower-ranking\r\nlowercase\r\nlowerclassman\r\nlowered\r\nlowering\r\nlowermost\r\nlowest\r\nlowland\r\nlowlander\r\nlowlands\r\nlowlife\r\nlowliness\r\nlowly\r\nlowness\r\nlowry\r\nlowset\r\nlox\r\nloxapine\r\nloxia\r\nloxitane\r\nloxodonta\r\nloxodrome\r\nloxoma\r\nloxomataceae\r\nloxostege\r\nloyal\r\nloyalist\r\nloyally\r\nloyalty\r\nloyang\r\nloyola\r\nlozal\r\nlozenge\r\nlozier\r\nlp\r\nlpn\r\nlr\r\nlsd\r\nltd.\r\nltm\r\nltte\r\nlu\r\nluanda\r\nluba\r\nlubavitch\r\nlubavitcher\r\nlubber\r\nlubberly\r\nlubbock\r\nlube\r\nlubeck\r\nlubitsch\r\nlublin\r\nlubricant\r\nlubricate\r\nlubricated\r\nlubrication\r\nlubricator\r\nlubricious\r\nlubricity\r\nlubumbashi\r\nlucania\r\nlucanidae\r\nlucas\r\nluce\r\nlucent\r\nlucerne\r\nlucid\r\nlucidity\r\nlucidly\r\nlucidness\r\nlucifer\r\nluciferin\r\nlucifugal\r\nlucifugous\r\nlucilia\r\nlucite\r\nluck\r\nluckily\r\nluckiness\r\nluckless\r\nlucknow\r\nlucky\r\nlucrative\r\nlucrativeness\r\nlucre\r\nlucretius\r\nlucubrate\r\nlucubration\r\nluculent\r\nlucullan\r\nlucullus\r\nluculus\r\nlucy\r\nluda\r\nluddite\r\nludian\r\nludicrous\r\nludicrously\r\nludo\r\nlufengpithecus\r\nluff\r\nluffa\r\nlufkin\r\nluftwaffe\r\nlug\r\nluganda\r\nluge\r\nluger\r\nluggage\r\nlugger\r\nlugh\r\nluging\r\nlugosi\r\nlugsail\r\nlugubrious\r\nlugubriousness\r\nlugworm\r\nluik\r\nluke\r\nlukewarm\r\nlukewarmly\r\nlukewarmness\r\nlull\r\nlullaby\r\nlulli\r\nlulling\r\nlully\r\nlulu\r\nluluabourg\r\nlumbago\r\nlumbar\r\nlumber\r\nlumbering\r\nlumberjack\r\nlumberman\r\nlumbermill\r\nlumberyard\r\nlumbus\r\nlumen\r\nluminal\r\nluminance\r\nluminary\r\nluminesce\r\nluminescence\r\nluminescent\r\nluminism\r\nluminosity\r\nluminous\r\nluminousness\r\nlumma\r\nlummox\r\nlump\r\nlumpectomy\r\nlumpen\r\nlumpenproletariat\r\nlumpenus\r\nlumper\r\nlumpfish\r\nlumpish\r\nlumpsucker\r\nlumpy\r\nluna\r\nlunacy\r\nlunar\r\nlunaria\r\nlunate\r\nlunatic\r\nlunation\r\nlunch\r\nluncheon\r\nluncher\r\nlunching\r\nlunchroom\r\nlunchtime\r\nlund\r\nlunda\r\nlunette\r\nlung\r\nlung-like\r\nlung-power\r\nlunge\r\nlungen\r\nlunger\r\nlungfish\r\nlungi\r\nlungyi\r\nlunisolar\r\nlunkhead\r\nlunt\r\nlunula\r\nlunule\r\nluo\r\nluoyang\r\nlupin\r\nlupine\r\nlupinus\r\nlupus\r\nlurch\r\nlurcher\r\nlure\r\nlurid\r\nluridness\r\nlurk\r\nlurker\r\nlusaka\r\nlusatian\r\nluscinia\r\nluscious\r\nlusciously\r\nlusciousness\r\nlush\r\nlushness\r\nlushun\r\nlusitania\r\nlusitanian\r\nlust\r\nluster\r\nlusterless\r\nlusterlessness\r\nlusterware\r\nlustful\r\nlustfulness\r\nlustiness\r\nlustrate\r\nlustre\r\nlustreless\r\nlustrelessness\r\nlustrous\r\nlustrum\r\nlusty\r\nluta\r\nlutanist\r\nlute\r\nluteal\r\nlutecium\r\nlutefisk\r\nlutein\r\nlutenist\r\nluteotropin\r\nlutetium\r\nlutfisk\r\nluther\r\nlutheran\r\nlutheranism\r\nluthier\r\nluting\r\nlutist\r\nlutjanidae\r\nlutjanus\r\nlutra\r\nlutrinae\r\nlutyens\r\nlutzen\r\nluvaridae\r\nluvarus\r\nluvian\r\nluwian\r\nlux\r\nluxate\r\nluxation\r\nluxe\r\nluxembourg\r\nluxembourg-ville\r\nluxembourger\r\nluxembourgian\r\nluxemburg\r\nluxemburger\r\nluxor\r\nluxuria\r\nluxuriance\r\nluxuriant\r\nluxuriate\r\nluxuriation\r\nluxurious\r\nluxuriously\r\nluxuriousness\r\nluxury\r\nluyia\r\nluzon\r\nlv\r\nlvi\r\nlvii\r\nlviii\r\nlwei\r\nlx\r\nlxi\r\nlxii\r\nlxiii\r\nlxiv\r\nlxv\r\nlxvi\r\nlxvii\r\nlxviii\r\nlxx\r\nlxxi\r\nlxxii\r\nlxxiii\r\nlxxiv\r\nlxxv\r\nlxxvi\r\nlxxvii\r\nlxxviii\r\nlxxx\r\nlxxxi\r\nlxxxii\r\nlxxxiii\r\nlxxxiv\r\nlxxxv\r\nlxxxvi\r\nlxxxvii\r\nlxxxviii\r\nlyallpur\r\nlycaena\r\nlycaenid\r\nlycaenidae\r\nlycaeon\r\nlycanthrope\r\nlycanthropy\r\nlycee\r\nlyceum\r\nlychee\r\nlychgate\r\nlychnis\r\nlycia\r\nlycian\r\nlycium\r\nlycopene\r\nlycoperdaceae\r\nlycoperdales\r\nlycoperdon\r\nlycopersicon\r\nlycopersicum\r\nlycophyta\r\nlycopod\r\nlycopodiaceae\r\nlycopodiales\r\nlycopodiate\r\nlycopodineae\r\nlycopodium\r\nlycopsida\r\nlycopus\r\nlycosa\r\nlycosidae\r\nlydia\r\nlydian\r\nlye\r\nlygaeid\r\nlygaeidae\r\nlyginopteridales\r\nlyginopteris\r\nlygodium\r\nlygus\r\nlying\r\nlying-in\r\nlyly\r\nlymantria\r\nlymantriid\r\nlymantriidae\r\nlymph\r\nlymphadenitis\r\nlymphadenoma\r\nlymphadenopathy\r\nlymphangiectasia\r\nlymphangiectasis\r\nlymphangiogram\r\nlymphangiography\r\nlymphangioma\r\nlymphangitis\r\nlymphatic\r\nlymphedema\r\nlymphoblast\r\nlymphoblast-like\r\nlymphocyte\r\nlymphocytic\r\nlymphocytopenia\r\nlymphocytosis\r\nlymphogranuloma\r\nlymphography\r\nlymphoid\r\nlymphokine\r\nlymphoma\r\nlymphopenia\r\nlymphopoiesis\r\nlymphuria\r\nlynch\r\nlynchburg\r\nlynching\r\nlynchpin\r\nlynx\r\nlynx-eyed\r\nlyon\r\nlyonia\r\nlyonnais\r\nlyonnaise\r\nlyons\r\nlyophilisation\r\nlyophilise\r\nlyophilised\r\nlyophilization\r\nlyophilize\r\nlyophilized\r\nlypressin\r\nlyra\r\nlyrate\r\nlyre\r\nlyre-flower\r\nlyre-shaped\r\nlyrebird\r\nlyreflower\r\nlyric\r\nlyrical\r\nlyricality\r\nlyricism\r\nlyricist\r\nlyrist\r\nlyrurus\r\nlysander\r\nlysenko\r\nlysichiton\r\nlysichitum\r\nlysiloma\r\nlysimachia\r\nlysimachus\r\nlysin\r\nlysine\r\nlysinemia\r\nlysippus\r\nlysis\r\nlysogenic\r\nlysogenicity\r\nlysogenisation\r\nlysogenization\r\nlysogenize\r\nlysogeny\r\nlysol\r\nlysosome\r\nlysozyme\r\nlyssa\r\nlyssavirus\r\nlythraceae\r\nlythrum\r\nlytton\r\nm\r\nm-1\r\nm-theory\r\nm.m.\r\nm1\r\nm2\r\nm3\r\nma\r\nma'am\r\nmaalox\r\nmaar\r\nmaarianhamina\r\nmac\r\nmacabre\r\nmacaca\r\nmacadam\r\nmacadamia\r\nmacadamise\r\nmacadamize\r\nmacamba\r\nmacao\r\nmacaque\r\nmacaroni\r\nmacaronic\r\nmacaroon\r\nmacarthur\r\nmacau\r\nmacaulay\r\nmacaw\r\nmacbeth\r\nmacdowell\r\nmace\r\nmacebearer\r\nmacedoine\r\nmacedon\r\nmacedonia\r\nmacedonian\r\nmacer\r\nmacerate\r\nmaceration\r\nmacerative\r\nmacgregor\r\nmacguffin\r\nmach\r\nmachaeranthera\r\nmachete\r\nmachiavelli\r\nmachiavellian\r\nmachiavellianism\r\nmachicolate\r\nmachicolation\r\nmachilid\r\nmachilidae\r\nmachinate\r\nmachination\r\nmachinator\r\nmachine\r\nmachine-accessible\r\nmachine-controlled\r\nmachine-driven\r\nmachine-made\r\nmachine-wash\r\nmachinelike\r\nmachinery\r\nmachinist\r\nmachismo\r\nmachmeter\r\nmacho\r\nmacho-man\r\nmacintosh\r\nmack\r\nmackem\r\nmackenzie\r\nmackerel\r\nmackinaw\r\nmackintosh\r\nmackle\r\nmacleaya\r\nmacleish\r\nmacleod\r\nmaclura\r\nmacon\r\nmaconnais\r\nmacoun\r\nmacowanites\r\nmacrame\r\nmacrencephalic\r\nmacrencephalous\r\nmacrencephaly\r\nmacro\r\nmacrobiotic\r\nmacrobiotics\r\nmacrocephalic\r\nmacrocephalon\r\nmacrocephalous\r\nmacrocephaly\r\nmacrocheira\r\nmacroclemys\r\nmacrocosm\r\nmacrocosmic\r\nmacrocyte\r\nmacrocytosis\r\nmacrodactylus\r\nmacrodantin\r\nmacroeconomic\r\nmacroeconomics\r\nmacroeconomist\r\nmacroevolution\r\nmacroglia\r\nmacroglossia\r\nmacromolecular\r\nmacromolecule\r\nmacron\r\nmacronectes\r\nmacrophage\r\nmacropodidae\r\nmacropus\r\nmacrorhamphosidae\r\nmacroscopic\r\nmacroscopical\r\nmacrosporangium\r\nmacrospore\r\nmacrothelypteris\r\nmacrotis\r\nmacrotus\r\nmacrotyloma\r\nmacrouridae\r\nmacrozamia\r\nmacrozoarces\r\nmacruridae\r\nmacula\r\nmaculate\r\nmaculation\r\nmacule\r\nmacumba\r\nmacushla\r\nmad\r\nmadagascan\r\nmadagascar\r\nmadake\r\nmadam\r\nmadame\r\nmadcap\r\nmadden\r\nmaddened\r\nmaddening\r\nmadder\r\nmadderwort\r\nmade\r\nmade-to-order\r\nmade-up\r\nmadeira\r\nmadeiras\r\nmademoiselle\r\nmadhouse\r\nmadia\r\nmadison\r\nmadly\r\nmadman\r\nmadnep\r\nmadness\r\nmadonna\r\nmadoqua\r\nmadras\r\nmadrasa\r\nmadrasah\r\nmadreporaria\r\nmadrepore\r\nmadrid\r\nmadrigal\r\nmadrigalist\r\nmadrilene\r\nmadrona\r\nmadrono\r\nmadwoman\r\nmadwort\r\nmaeandra\r\nmaelstrom\r\nmaenad\r\nmaestro\r\nmaeterlinck\r\nmafa\r\nmaffia\r\nmafia\r\nmafioso\r\nmag\r\nmagadhan\r\nmagazine\r\nmagdalen\r\nmagdalena\r\nmagellan\r\nmagenta\r\nmaggot\r\nmaggoty\r\nmagh\r\nmagha\r\nmaghreb\r\nmagi\r\nmagic\r\nmagical\r\nmagically\r\nmagician\r\nmagicicada\r\nmaginot\r\nmagisterial\r\nmagisterially\r\nmagistracy\r\nmagistrate\r\nmagistrature\r\nmaglev\r\nmagma\r\nmagnanimity\r\nmagnanimous\r\nmagnanimousness\r\nmagnate\r\nmagnesia\r\nmagnesite\r\nmagnesium\r\nmagnet\r\nmagnetic\r\nmagnetics\r\nmagnetisation\r\nmagnetise\r\nmagnetised\r\nmagnetism\r\nmagnetite\r\nmagnetization\r\nmagnetize\r\nmagnetized\r\nmagneto\r\nmagnetograph\r\nmagnetohydrodynamics\r\nmagnetometer\r\nmagneton\r\nmagnetosphere\r\nmagnetron\r\nmagnificat\r\nmagnification\r\nmagnificence\r\nmagnificent\r\nmagnificently\r\nmagnificio\r\nmagnified\r\nmagnifier\r\nmagnify\r\nmagniloquence\r\nmagniloquent\r\nmagniloquently\r\nmagnitude\r\nmagnolia\r\nmagnoliaceae\r\nmagnoliidae\r\nmagnoliophyta\r\nmagnoliopsid\r\nmagnoliopsida\r\nmagnum\r\nmagpie\r\nmagritte\r\nmaguey\r\nmagus\r\nmagyar\r\nmagyarorszag\r\nmah-jongg\r\nmaha\r\nmahabharata\r\nmahabharatam\r\nmahabharatum\r\nmahagua\r\nmahan\r\nmaharaja\r\nmaharajah\r\nmaharanee\r\nmaharani\r\nmaharashtra\r\nmahatma\r\nmahayana\r\nmahayanism\r\nmahayanist\r\nmahdi\r\nmahdism\r\nmahdist\r\nmahgrib\r\nmahican\r\nmahimahi\r\nmahjong\r\nmahler\r\nmahlstick\r\nmahoe\r\nmahogany\r\nmahogany-red\r\nmahomet\r\nmahonia\r\nmahound\r\nmahout\r\nmahratta\r\nmahratti\r\nmahuang\r\nmaia\r\nmaianthemum\r\nmaid\r\nmaiden\r\nmaidenhair\r\nmaidenhead\r\nmaidenhood\r\nmaidenlike\r\nmaidenliness\r\nmaidenly\r\nmaidhood\r\nmaidism\r\nmaidservant\r\nmaidu\r\nmaiduguri\r\nmaiger\r\nmaigre\r\nmaikoa\r\nmail\r\nmail-cheeked\r\nmail-clad\r\nmailbag\r\nmailboat\r\nmailbox\r\nmaildrop\r\nmailed\r\nmailer\r\nmailing\r\nmailing-card\r\nmaillol\r\nmaillot\r\nmailman\r\nmailsorter\r\nmaim\r\nmaimed\r\nmaimer\r\nmaimonides\r\nmain\r\nmain-topmast\r\nmain-topsail\r\nmaine\r\nmainer\r\nmainframe\r\nmainland\r\nmainline\r\nmainly\r\nmainmast\r\nmainsail\r\nmainsheet\r\nmainspring\r\nmainstay\r\nmainstream\r\nmainstreamed\r\nmaintain\r\nmaintainable\r\nmaintained\r\nmaintainer\r\nmaintenance\r\nmaintenon\r\nmaiolica\r\nmaisonette\r\nmaisonnette\r\nmaitland\r\nmaitreya\r\nmaize\r\nmaja\r\nmajagua\r\nmajestic\r\nmajesty\r\nmajidae\r\nmajolica\r\nmajor\r\nmajor-domo\r\nmajor-general\r\nmajorana\r\nmajorca\r\nmajorette\r\nmajority\r\nmajors\r\nmajuscular\r\nmajuscule\r\nmak\r\nmakaira\r\nmakalu\r\nmakataimeshekiakiak\r\nmake\r\nmake-believe\r\nmake-do\r\nmake-peace\r\nmake-up\r\nmake-work\r\nmakedonija\r\nmakeover\r\nmaker\r\nmakeready\r\nmakeshift\r\nmakeup\r\nmakeweight\r\nmakin\r\nmaking\r\nmako\r\nmakomako\r\nmalabo\r\nmalabsorption\r\nmalacanthidae\r\nmalacca\r\nmalachi\r\nmalachias\r\nmalachite\r\nmalacia\r\nmalaclemys\r\nmalacologist\r\nmalacology\r\nmalaconotinae\r\nmalacopterygian\r\nmalacopterygii\r\nmalacosoma\r\nmalacostraca\r\nmalacothamnus\r\nmaladaptive\r\nmaladjusted\r\nmaladjustive\r\nmaladjustment\r\nmaladroit\r\nmaladroitly\r\nmaladroitness\r\nmalady\r\nmalaga\r\nmalahini\r\nmalaise\r\nmalamud\r\nmalamute\r\nmalanga\r\nmalaprop\r\nmalapropism\r\nmalapropos\r\nmalar\r\nmalaria\r\nmalarial\r\nmalathion\r\nmalawi\r\nmalawian\r\nmalaxis\r\nmalaxis-unifolia\r\nmalay\r\nmalaya\r\nmalayalam\r\nmalayan\r\nmalayo-polynesian\r\nmalaysia\r\nmalaysian\r\nmalcolmia\r\nmalcontent\r\nmaldivan\r\nmaldives\r\nmaldivian\r\nmaldon\r\nmale\r\nmaleate\r\nmaleberry\r\nmalebranche\r\nmalecite\r\nmaledict\r\nmalediction\r\nmalefactor\r\nmalefic\r\nmaleficence\r\nmaleficent\r\nmalemute\r\nmaleness\r\nmaleo\r\nmaleseet\r\nmalevich\r\nmalevolence\r\nmalevolency\r\nmalevolent\r\nmalevolently\r\nmalfeasance\r\nmalfeasant\r\nmalformation\r\nmalformed\r\nmalfunction\r\nmalfunctioning\r\nmali\r\nmalian\r\nmalice\r\nmalicious\r\nmaliciousness\r\nmalign\r\nmalignance\r\nmalignancy\r\nmalignant\r\nmaligner\r\nmalignity\r\nmalignment\r\nmalik\r\nmalinger\r\nmalingerer\r\nmalingering\r\nmalinois\r\nmalinowski\r\nmall\r\nmallard\r\nmallarme\r\nmalleability\r\nmalleable\r\nmallee\r\nmallet\r\nmalleus\r\nmallon\r\nmallophaga\r\nmallotus\r\nmallow\r\nmalmo\r\nmalmsey\r\nmalnourish\r\nmalnourished\r\nmalnourishment\r\nmalnutrition\r\nmalocclusion\r\nmalodor\r\nmalodorous\r\nmalodorousness\r\nmalodour\r\nmalodourous\r\nmalone\r\nmalonylurea\r\nmalope\r\nmalopterurus\r\nmalory\r\nmalosma\r\nmalpighi\r\nmalpighia\r\nmalpighiaceae\r\nmalposed\r\nmalposition\r\nmalpractice\r\nmalraux\r\nmals\r\nmalt\r\nmalta\r\nmalted\r\nmaltese\r\nmaltha\r\nmalthus\r\nmalthusian\r\nmalthusianism\r\nmaltman\r\nmalto\r\nmaltose\r\nmaltreat\r\nmaltreated\r\nmaltreater\r\nmaltreatment\r\nmaltster\r\nmalus\r\nmalva\r\nmalvaceae\r\nmalvales\r\nmalvasia\r\nmalvastrum\r\nmalvaviscus\r\nmalversate\r\nmalversation\r\nmam\r\nmama\r\nmamba\r\nmambo\r\nmamet\r\nmamey\r\nmamilla\r\nmamma\r\nmammal\r\nmammal-like\r\nmammalia\r\nmammalian\r\nmammalogist\r\nmammalogy\r\nmammary\r\nmammea\r\nmammee\r\nmammilla\r\nmammillaria\r\nmammogram\r\nmammography\r\nmammon\r\nmammoth\r\nmammothermography\r\nmammut\r\nmammuthus\r\nmammutidae\r\nmammy\r\nmamo\r\nmamoncillo\r\nman\r\nman-about-town\r\nman-at-arms\r\nman-child\r\nman-eater\r\nman-made\r\nman-of-the-earth\r\nman-of-war\r\nman-on-a-horse\r\nman-portable\r\nman-sized\r\nman-to-man\r\nmanacle\r\nmanage\r\nmanageability\r\nmanageable\r\nmanageableness\r\nmanageably\r\nmanagement\r\nmanager\r\nmanageress\r\nmanagerial\r\nmanagership\r\nmanagua\r\nmanakin\r\nmanama\r\nmanannan\r\nmanat\r\nmanatee\r\nmanawydan\r\nmanawyddan\r\nmanchester\r\nmanchu\r\nmanchuria\r\nmanchurian\r\nmancunian\r\nmanda\r\nmandaean\r\nmandaeanism\r\nmandala\r\nmandalay\r\nmandamus\r\nmandara\r\nmandarin\r\nmandatary\r\nmandate\r\nmandator\r\nmandatorily\r\nmandatory\r\nmande\r\nmandean\r\nmandeanism\r\nmandela\r\nmandelamine\r\nmandelbrot\r\nmandelshtam\r\nmandelstam\r\nmandevilla\r\nmandible\r\nmandibula\r\nmandibular\r\nmandibulate\r\nmandibulofacial\r\nmandioc\r\nmandioca\r\nmandola\r\nmandolin\r\nmandragora\r\nmandrake\r\nmandrel\r\nmandril\r\nmandrill\r\nmandrillus\r\nmanduca\r\nmanducate\r\nmanduction\r\nmane\r\nmanes\r\nmanet\r\nmaneuver\r\nmaneuverability\r\nmaneuverable\r\nmaneuverer\r\nmanful\r\nmanfully\r\nmanfulness\r\nmangabey\r\nmanganate\r\nmanganese\r\nmanganite\r\nmange\r\nmangel-wurzel\r\nmanger\r\nmangey\r\nmangifera\r\nmanginess\r\nmangle\r\nmangled\r\nmangler\r\nmanglietia\r\nmango\r\nmangold\r\nmangold-wurzel\r\nmangonel\r\nmangosteen\r\nmangrove\r\nmangy\r\nmanhandle\r\nmanhattan\r\nmanhole\r\nmanhood\r\nmanhunt\r\nmania\r\nmaniac\r\nmaniacal\r\nmanic\r\nmanic-depressive\r\nmanichaean\r\nmanichaeanism\r\nmanichaeism\r\nmanichean\r\nmanichee\r\nmaniclike\r\nmanicotti\r\nmanicure\r\nmanicurist\r\nmanidae\r\nmanifest\r\nmanifestation\r\nmanifestly\r\nmanifesto\r\nmanifold\r\nmanihot\r\nmanikin\r\nmanila\r\nmanilkara\r\nmanilla\r\nmanioc\r\nmanioca\r\nmanipulability\r\nmanipulable\r\nmanipulate\r\nmanipulation\r\nmanipulative\r\nmanipulator\r\nmanipur\r\nmaniraptor\r\nmaniraptora\r\nmanis\r\nmanitoba\r\nmankato\r\nmankind\r\nmanky\r\nmanlike\r\nmanliness\r\nmanly\r\nmann\r\nmanna\r\nmanned\r\nmannequin\r\nmanner\r\nmannered\r\nmannerism\r\nmannerly\r\nmanners\r\nmannheim\r\nmannikin\r\nmannish\r\nmannitol\r\nmanoeuver\r\nmanoeuvrability\r\nmanoeuvrable\r\nmanoeuvre\r\nmanoeuvrer\r\nmanometer\r\nmanor\r\nmanorial\r\nmanpad\r\nmanpower\r\nmanque\r\nmanroot\r\nmansard\r\nmansart\r\nmanse\r\nmanservant\r\nmansfield\r\nmansi\r\nmansion\r\nmanslaughter\r\nmanslayer\r\nmanson\r\nmanta\r\nmantegna\r\nmanteidae\r\nmantel\r\nmantelet\r\nmantell\r\nmantelpiece\r\nmanteodea\r\nmantic\r\nmantichora\r\nmanticora\r\nmanticore\r\nmantid\r\nmantidae\r\nmantiger\r\nmantilla\r\nmantinea\r\nmantineia\r\nmantis\r\nmantispid\r\nmantispidae\r\nmantissa\r\nmantle\r\nmantled\r\nmantlepiece\r\nmantlet\r\nmantophasmatodea\r\nmantra\r\nmantrap\r\nmantua\r\nmanual\r\nmanubrium\r\nmanufactory\r\nmanufacture\r\nmanufactured\r\nmanufacturer\r\nmanul\r\nmanumission\r\nmanumit\r\nmanumitter\r\nmanure\r\nmanus\r\nmanuscript\r\nmanx\r\nmany\r\nmany-chambered\r\nmany-lobed\r\nmany-sided\r\nmanzanilla\r\nmanzanita\r\nmanzoni\r\nmao\r\nmaoi\r\nmaoism\r\nmaoist\r\nmaori\r\nmap\r\nmap-reader\r\nmapinguari\r\nmaple\r\nmaple-leaf\r\nmaple-like\r\nmaplelike\r\nmapmaking\r\nmapper\r\nmapping\r\nmaputo\r\nmaquiladora\r\nmaquis\r\nmaquisard\r\nmar\r\nmara\r\nmarabou\r\nmarabout\r\nmaraca\r\nmaracaibo\r\nmaracay\r\nmaraco\r\nmarang\r\nmaranta\r\nmarantaceae\r\nmarasca\r\nmaraschino\r\nmarasmius\r\nmarasmus\r\nmarat\r\nmaratha\r\nmarathi\r\nmarathon\r\nmarathoner\r\nmarattia\r\nmarattiaceae\r\nmarattiales\r\nmaraud\r\nmarauder\r\nmarauding\r\nmaravilla\r\nmarble\r\nmarble-wood\r\nmarbled\r\nmarbleisation\r\nmarbleise\r\nmarbleised\r\nmarbleising\r\nmarbleization\r\nmarbleize\r\nmarbleized\r\nmarbleizing\r\nmarbles\r\nmarblewood\r\nmarbling\r\nmarc\r\nmarceau\r\nmarcel\r\nmarch\r\nmarchantia\r\nmarchantiaceae\r\nmarchantiales\r\nmarche\r\nmarcher\r\nmarches\r\nmarching\r\nmarchioness\r\nmarchland\r\nmarchpane\r\nmarciano\r\nmarcionism\r\nmarconi\r\nmarcuse\r\nmarduk\r\nmare\r\nmarengo\r\nmargarin\r\nmargarine\r\nmargarita\r\nmargasivsa\r\nmargate\r\nmargay\r\nmarge\r\nmargin\r\nmarginal\r\nmarginalia\r\nmarginalisation\r\nmarginalise\r\nmarginality\r\nmarginalization\r\nmarginalize\r\nmarginocephalia\r\nmarginocephalian\r\nmargosa\r\nmargrave\r\nmarguerite\r\nmari\r\nmaria\r\nmariachi\r\nmarian\r\nmarianas\r\nmaricopa\r\nmariehamn\r\nmarigold\r\nmarihuana\r\nmarijuana\r\nmarimba\r\nmarina\r\nmarinade\r\nmarinara\r\nmarinate\r\nmarine\r\nmarineland\r\nmariner\r\nmarines\r\nmarini\r\nmarino\r\nmarionette\r\nmariposa\r\nmariposan\r\nmarital\r\nmariticide\r\nmaritime\r\nmaritimes\r\nmarjoram\r\nmark\r\nmarkaz-ud-dawa-wal-irshad\r\nmarked\r\nmarked-up\r\nmarker\r\nmarket\r\nmarketable\r\nmarketer\r\nmarketing\r\nmarketplace\r\nmarkhoor\r\nmarkhor\r\nmarking\r\nmarkka\r\nmarkoff\r\nmarkov\r\nmarkova\r\nmarkovian\r\nmarks\r\nmarksman\r\nmarksmanship\r\nmarkup\r\nmarkweed\r\nmarl\r\nmarlberry\r\nmarley\r\nmarlin\r\nmarline\r\nmarlinespike\r\nmarlingspike\r\nmarlinspike\r\nmarlite\r\nmarlowe\r\nmarlstone\r\nmarly\r\nmarmalade\r\nmarmara\r\nmarmite\r\nmarmora\r\nmarmoreal\r\nmarmorean\r\nmarmoset\r\nmarmot\r\nmarmota\r\nmaroc\r\nmarocain\r\nmaroon\r\nmaroon-purple\r\nmaroon-spotted\r\nmarooned\r\nmarplan\r\nmarquand\r\nmarque\r\nmarquee\r\nmarquess\r\nmarqueterie\r\nmarquetry\r\nmarquette\r\nmarquis\r\nmarquise\r\nmarrakech\r\nmarrakesh\r\nmarrano\r\nmarred\r\nmarri\r\nmarriage\r\nmarriageability\r\nmarriageable\r\nmarried\r\nmarrow\r\nmarrowbone\r\nmarrubium\r\nmarruecos\r\nmarry\r\nmars\r\nmarsala\r\nmarseillaise\r\nmarseille\r\nmarseilles\r\nmarsh\r\nmarshal\r\nmarshall\r\nmarshals\r\nmarshalship\r\nmarshland\r\nmarshmallow\r\nmarshy\r\nmarsilea\r\nmarsileaceae\r\nmarstan\r\nmarsupial\r\nmarsupialia\r\nmarsupium\r\nmart\r\nmartagon\r\nmarten\r\nmartensite\r\nmartes\r\nmarti\r\nmartial\r\nmartian\r\nmartin\r\nmartinet\r\nmartingale\r\nmartini\r\nmartinique\r\nmartinmas\r\nmartynia\r\nmartyniaceae\r\nmartyr\r\nmartyrdom\r\nmartyrise\r\nmartyrize\r\nmarum\r\nmarumi\r\nmarupa\r\nmarut\r\nmarvel\r\nmarvel-of-peru\r\nmarvell\r\nmarveller\r\nmarvellous\r\nmarvellously\r\nmarvelous\r\nmarvelously\r\nmarx\r\nmarxism\r\nmarxism-leninism\r\nmarxist\r\nmarxist-leninist\r\nmary\r\nmaryland\r\nmarylander\r\nmarzipan\r\nmasa\r\nmasai\r\nmascara\r\nmascarpone\r\nmascot\r\nmasculine\r\nmasculinisation\r\nmasculinise\r\nmasculinity\r\nmasculinization\r\nmasculinize\r\nmasdevallia\r\nmasefield\r\nmaser\r\nmaseru\r\nmash\r\nmasher\r\nmashhad\r\nmashi\r\nmashie\r\nmashriq\r\nmasjid\r\nmask\r\nmasked\r\nmasker\r\nmasking\r\nmasochism\r\nmasochist\r\nmasochistic\r\nmason\r\nmasonic\r\nmasonite\r\nmasonry\r\nmasora\r\nmasorah\r\nmasorete\r\nmasoretic\r\nmasorite\r\nmasoud\r\nmasqat\r\nmasque\r\nmasquer\r\nmasquerade\r\nmasquerader\r\nmass\r\nmass-produce\r\nmass-produced\r\nmass-spectrometric\r\nmassachuset\r\nmassachusetts\r\nmassacre\r\nmassage\r\nmassager\r\nmassasauga\r\nmassasoit\r\nmassawa\r\nmasse\r\nmassed\r\nmassenet\r\nmasses\r\nmasseter\r\nmasseur\r\nmasseuse\r\nmassicot\r\nmassicotite\r\nmassif\r\nmassine\r\nmassive\r\nmassiveness\r\nmassorete\r\nmast\r\nmastaba\r\nmastabah\r\nmastalgia\r\nmastectomy\r\nmasted\r\nmaster\r\nmaster-at-arms\r\nmastered\r\nmasterful\r\nmastering\r\nmasterless\r\nmasterly\r\nmastermind\r\nmasterpiece\r\nmasters\r\nmastership\r\nmasterstroke\r\nmasterwort\r\nmastery\r\nmasthead\r\nmastic\r\nmasticate\r\nmastication\r\nmasticophis\r\nmastiff\r\nmastigomycota\r\nmastigomycotina\r\nmastigophora\r\nmastigophoran\r\nmastigophore\r\nmastigoproctus\r\nmastitis\r\nmastocyte\r\nmastodon\r\nmastodont\r\nmastoid\r\nmastoidal\r\nmastoidale\r\nmastoidectomy\r\nmastoiditis\r\nmastopathy\r\nmastopexy\r\nmastotermes\r\nmastotermitidae\r\nmasturbate\r\nmasturbation\r\nmasturbator\r\nmat\r\nmatabele\r\nmatador\r\nmatai\r\nmatakam\r\nmatamoros\r\nmatch\r\nmatch-up\r\nmatchboard\r\nmatchbook\r\nmatchbox\r\nmatchbush\r\nmatched\r\nmatcher\r\nmatchet\r\nmatching\r\nmatchless\r\nmatchlock\r\nmatchmaker\r\nmatchmaking\r\nmatchstick\r\nmatchup\r\nmatchweed\r\nmatchwood\r\nmate\r\nmated\r\nmateless\r\nmatelote\r\nmater\r\nmaterfamilias\r\nmaterial\r\nmaterialisation\r\nmaterialise\r\nmaterialism\r\nmaterialist\r\nmaterialistic\r\nmateriality\r\nmaterialization\r\nmaterialize\r\nmateriel\r\nmaternal\r\nmaternalism\r\nmaternalistic\r\nmaternally\r\nmaternity\r\nmates\r\nmatey\r\nmath\r\nmathematical\r\nmathematician\r\nmathematics\r\nmathias\r\nmaths\r\nmatinee\r\nmating\r\nmatins\r\nmatisse\r\nmatman\r\nmatoaka\r\nmatriarch\r\nmatriarchal\r\nmatriarchate\r\nmatriarchic\r\nmatriarchy\r\nmatric\r\nmatricaria\r\nmatricentric\r\nmatricide\r\nmatriculate\r\nmatriculation\r\nmatrikin\r\nmatrilineage\r\nmatrilineal\r\nmatrilinear\r\nmatrimonial\r\nmatrimony\r\nmatrisib\r\nmatrix\r\nmatron\r\nmatronly\r\nmatronymic\r\nmatsyendra\r\nmatt\r\nmatt-up\r\nmatte\r\nmatted\r\nmatter\r\nmatter-of-course\r\nmatter-of-fact\r\nmatterhorn\r\nmatteuccia\r\nmatthew\r\nmatthiola\r\nmatting\r\nmattock\r\nmattole\r\nmattress\r\nmaturate\r\nmaturation\r\nmaturational\r\nmature\r\nmatured\r\nmaturely\r\nmaturement\r\nmatureness\r\nmaturity\r\nmatutinal\r\nmatzah\r\nmatzo\r\nmatzoh\r\nmaudlin\r\nmaugham\r\nmaui\r\nmaul\r\nmauldin\r\nmauler\r\nmaulers\r\nmaulstick\r\nmaund\r\nmaunder\r\nmaundy\r\nmaupassant\r\nmauriac\r\nmauritania\r\nmauritanian\r\nmauritanie\r\nmauritian\r\nmauritius\r\nmaurois\r\nmauser\r\nmausoleum\r\nmauve\r\nmauve-blue\r\nmauve-pink\r\nmaven\r\nmaverick\r\nmavin\r\nmavis\r\nmaw\r\nmawkish\r\nmawkishly\r\nmawkishness\r\nmawlamyine\r\nmax\r\nmaxi\r\nmaxilla\r\nmaxillaria\r\nmaxillary\r\nmaxillodental\r\nmaxillofacial\r\nmaxillomandibular\r\nmaxim\r\nmaximal\r\nmaximally\r\nmaximation\r\nmaximian\r\nmaximisation\r\nmaximise\r\nmaximising\r\nmaximization\r\nmaximize\r\nmaximizing\r\nmaximum\r\nmaxostoma\r\nmaxwell\r\nmaxzide\r\nmay\r\nmaya\r\nmayaca\r\nmayacaceae\r\nmayakovski\r\nmayan\r\nmayapple\r\nmaybe\r\nmayday\r\nmayeng\r\nmayenne\r\nmayer\r\nmayetiola\r\nmayfish\r\nmayflower\r\nmayfly\r\nmayhap\r\nmayhaw\r\nmayhem\r\nmayidism\r\nmayo\r\nmayonnaise\r\nmayor\r\nmayoral\r\nmayoralty\r\nmayoress\r\nmaypole\r\nmaypop\r\nmays\r\nmayweed\r\nmazama\r\nmazar-i-sharif\r\nmazatlan\r\nmazdaism\r\nmaze\r\nmazed\r\nmazer\r\nmazopathy\r\nmazurka\r\nmazy\r\nmazzard\r\nmazzini\r\nmb\r\nmba\r\nmbabane\r\nmbd\r\nmbeya\r\nmbundu\r\nmc\r\nmcalester\r\nmcallen\r\nmccarthy\r\nmccarthyism\r\nmccartney\r\nmccauley\r\nmccormick\r\nmccullers\r\nmcg\r\nmcgraw\r\nmcguffey\r\nmcguffin\r\nmcia\r\nmcintosh\r\nmckim\r\nmckinley\r\nmcluhan\r\nmcmaster\r\nmcpherson\r\nmd\r\nmdi\r\nmdiv\r\nmdma\r\nme\r\nmead\r\nmeade\r\nmeadow\r\nmeadowgrass\r\nmeadowlark\r\nmeager\r\nmeagerly\r\nmeagerness\r\nmeagre\r\nmeagrely\r\nmeagreness\r\nmeal\r\nmealberry\r\nmealie\r\nmealtime\r\nmealworm\r\nmealy\r\nmealy-mouthed\r\nmealybug\r\nmealymouthed\r\nmean\r\nmeander\r\nmeandering\r\nmeanie\r\nmeaning\r\nmeaningful\r\nmeaningfulness\r\nmeaningless\r\nmeaninglessness\r\nmeanly\r\nmeanness\r\nmeans\r\nmeanspirited\r\nmeantime\r\nmeanwhile\r\nmeany\r\nmearstone\r\nmeasles\r\nmeasly\r\nmeasurability\r\nmeasurable\r\nmeasurably\r\nmeasure\r\nmeasured\r\nmeasuredly\r\nmeasureless\r\nmeasurement\r\nmeasurer\r\nmeasuring\r\nmeat\r\nmeat-eating\r\nmeatball\r\nmeatless\r\nmeatloaf\r\nmeatman\r\nmeatpacking\r\nmeatus\r\nmeaty\r\nmebaral\r\nmebendazole\r\nmecca\r\nmeccano\r\nmechanic\r\nmechanical\r\nmechanically\r\nmechanics\r\nmechanisation\r\nmechanise\r\nmechanised\r\nmechanism\r\nmechanist\r\nmechanistic\r\nmechanization\r\nmechanize\r\nmechanized\r\nmecholyl\r\nmeclizine\r\nmeclofenamate\r\nmeclomen\r\nmeconium\r\nmeconopsis\r\nmecoptera\r\nmecopteran\r\nmecopterous\r\nmed\r\nmedal\r\nmedalist\r\nmedallion\r\nmedallist\r\nmedan\r\nmedawar\r\nmeddle\r\nmeddler\r\nmeddlesome\r\nmeddlesomeness\r\nmeddling\r\nmedea\r\nmedellin\r\nmedevac\r\nmedfly\r\nmedford\r\nmediacy\r\nmediaeval\r\nmedial\r\nmedian\r\nmediant\r\nmediastinum\r\nmediate\r\nmediated\r\nmediateness\r\nmediation\r\nmediator\r\nmediatorial\r\nmediatory\r\nmediatrix\r\nmedic\r\nmedicago\r\nmedicaid\r\nmedical\r\nmedicament\r\nmedicare\r\nmedicate\r\nmedication\r\nmedicative\r\nmedici\r\nmedicinal\r\nmedicine\r\nmedick\r\nmedico\r\nmedicolegal\r\nmediety\r\nmedieval\r\nmedina\r\nmedinilla\r\nmediocre\r\nmediocrity\r\nmeditate\r\nmeditation\r\nmeditative\r\nmeditativeness\r\nmediterranean\r\nmedium\r\nmedium-dry\r\nmedium-large\r\nmedium-size\r\nmedium-sized\r\nmedivac\r\nmedlar\r\nmedlars\r\nmedley\r\nmedline\r\nmedoc\r\nmedroxyprogesterone\r\nmedulla\r\nmedullary\r\nmedullated\r\nmedusa\r\nmedusan\r\nmedusoid\r\nmeed\r\nmeek\r\nmeekly\r\nmeekness\r\nmeerestone\r\nmeerkat\r\nmeerschaum\r\nmeet\r\nmeeter\r\nmeeting\r\nmeetinghouse\r\nmefloquine\r\nmefoxin\r\nmeg\r\nmegabat\r\nmegabit\r\nmegabucks\r\nmegabyte\r\nmegacardia\r\nmegacephaly\r\nmegachile\r\nmegachilidae\r\nmegachiroptera\r\nmegacolon\r\nmegacycle\r\nmegadeath\r\nmegaderma\r\nmegadermatidae\r\nmegaera\r\nmegaflop\r\nmegagametophyte\r\nmegahertz\r\nmegahit\r\nmegakaryocyte\r\nmegakaryocytic\r\nmegalith\r\nmegalithic\r\nmegalobatrachus\r\nmegaloblast\r\nmegaloblastic\r\nmegalocardia\r\nmegalocephaly\r\nmegalocyte\r\nmegalohepatia\r\nmegalomania\r\nmegalomaniac\r\nmegalomaniacal\r\nmegalomanic\r\nmegalonychidae\r\nmegalopolis\r\nmegaloptera\r\nmegalosaur\r\nmegalosauridae\r\nmegalosaurus\r\nmegalp\r\nmegaphone\r\nmegapode\r\nmegapodiidae\r\nmegapodius\r\nmegaptera\r\nmegascopic\r\nmegasporangium\r\nmegaspore\r\nmegasporophyll\r\nmegathere\r\nmegatherian\r\nmegatheriid\r\nmegatheriidae\r\nmegatherium\r\nmegaton\r\nmegawatt\r\nmegesterol\r\nmegillah\r\nmegilp\r\nmegohm\r\nmegrim\r\nmegrims\r\nmei\r\nmeiosis\r\nmeiotic\r\nmeir\r\nmeissner\r\nmeitner\r\nmeitnerium\r\nmek\r\nmekong\r\nmelaena\r\nmelagra\r\nmelamine\r\nmelampodium\r\nmelampsora\r\nmelampsoraceae\r\nmelancholia\r\nmelancholiac\r\nmelancholic\r\nmelancholy\r\nmelanchthon\r\nmelanerpes\r\nmelanesia\r\nmelanesian\r\nmelange\r\nmelanin\r\nmelanise\r\nmelanism\r\nmelanitta\r\nmelanize\r\nmelanoblast\r\nmelanocyte\r\nmelanoderma\r\nmelanogrammus\r\nmelanoma\r\nmelanoplus\r\nmelanosis\r\nmelanotis\r\nmelanthiaceae\r\nmelasma\r\nmelastoma\r\nmelastomaceae\r\nmelastomataceae\r\nmelatonin\r\nmelba\r\nmelbourne\r\nmelchior\r\nmelchite\r\nmeld\r\nmeleagrididae\r\nmeleagris\r\nmelee\r\nmelena\r\nmeles\r\nmelia\r\nmeliaceae\r\nmelicocca\r\nmelicoccus\r\nmelicytus\r\nmelilot\r\nmelilotus\r\nmelinae\r\nmeliorate\r\nmelioration\r\nmeliorative\r\nmeliorism\r\nmeliorist\r\nmeliphagidae\r\nmelissa\r\nmelkite\r\nmellaril\r\nmellifluous\r\nmellisonant\r\nmellivora\r\nmellon\r\nmellow\r\nmellowed\r\nmellowing\r\nmellowly\r\nmellowness\r\nmelocactus\r\nmelodic\r\nmelodious\r\nmelodiously\r\nmelodiousness\r\nmelodise\r\nmelodize\r\nmelodrama\r\nmelodramatic\r\nmelody\r\nmelogale\r\nmeloid\r\nmeloidae\r\nmelolontha\r\nmelolonthidae\r\nmelon\r\nmelon-like\r\nmelophagus\r\nmelopsittacus\r\nmelosa\r\nmelospiza\r\nmelphalan\r\nmelpomene\r\nmelt\r\nmeltable\r\nmeltdown\r\nmelted\r\nmelter\r\nmelting\r\nmeltwater\r\nmelursus\r\nmelville\r\nmem\r\nmember\r\nmembered\r\nmemberless\r\nmembership\r\nmembracidae\r\nmembrane\r\nmembrane-forming\r\nmembranophone\r\nmembranous\r\nmeme\r\nmemel\r\nmemento\r\nmemo\r\nmemoir\r\nmemorabilia\r\nmemorability\r\nmemorable\r\nmemorably\r\nmemoranda\r\nmemorandum\r\nmemorial\r\nmemorialisation\r\nmemorialise\r\nmemorialization\r\nmemorialize\r\nmemorisation\r\nmemorise\r\nmemoriser\r\nmemorization\r\nmemorize\r\nmemorizer\r\nmemory\r\nmemphis\r\nmemsahib\r\nmen\r\nmen's\r\nmenace\r\nmenacing\r\nmenacingly\r\nmenadione\r\nmenage\r\nmenagerie\r\nmenander\r\nmenarche\r\nmencken\r\nmend\r\nmendacious\r\nmendaciously\r\nmendacity\r\nmendel\r\nmendeleev\r\nmendelevium\r\nmendeleyev\r\nmendelian\r\nmendelianism\r\nmendelism\r\nmendelsohn\r\nmendelssohn\r\nmender\r\nmendicancy\r\nmendicant\r\nmendicity\r\nmending\r\nmenelaus\r\nmenhaden\r\nmenhir\r\nmenial\r\nmeniere\r\nmeningeal\r\nmeninges\r\nmeningioma\r\nmeningism\r\nmeningitis\r\nmeningocele\r\nmeningoencephalitis\r\nmeninx\r\nmenippe\r\nmeniscectomy\r\nmeniscium\r\nmeniscus\r\nmenispermaceae\r\nmenispermum\r\nmenninger\r\nmennonite\r\nmennonitism\r\nmenominee\r\nmenomini\r\nmenopausal\r\nmenopause\r\nmenopon\r\nmenorah\r\nmenorrhagia\r\nmenorrhea\r\nmenotti\r\nmenotyphla\r\nmensa\r\nmensal\r\nmensch\r\nmenses\r\nmensh\r\nmenshevik\r\nmenstrual\r\nmenstruate\r\nmenstruation\r\nmenstruum\r\nmensurable\r\nmensural\r\nmensurate\r\nmensuration\r\nmental\r\nmentalism\r\nmentality\r\nmentation\r\nmentha\r\nmenthol\r\nmentholated\r\nmenticirrhus\r\nmention\r\nmentioner\r\nmentor\r\nmentum\r\nmentzelia\r\nmenu\r\nmenuhin\r\nmenura\r\nmenurae\r\nmenuridae\r\nmenyanthaceae\r\nmenyanthes\r\nmenziesia\r\nmeow\r\nmepacrine\r\nmeperidine\r\nmephaquine\r\nmephenytoin\r\nmephistophelean\r\nmephistopheles\r\nmephistophelian\r\nmephitic\r\nmephitinae\r\nmephitis\r\nmephobarbital\r\nmeprin\r\nmeprobamate\r\nmeq\r\nmeralgia\r\nmerbromine\r\nmercantile\r\nmercantilism\r\nmercaptopurine\r\nmercator\r\nmercedario\r\nmercenaria\r\nmercenary\r\nmercer\r\nmercerise\r\nmercerised\r\nmercerize\r\nmercerized\r\nmerchandise\r\nmerchandiser\r\nmerchandising\r\nmerchant\r\nmerchant-venturer\r\nmerchantability\r\nmerchantable\r\nmerchantman\r\nmerciful\r\nmercifulness\r\nmerciless\r\nmercilessly\r\nmercilessness\r\nmerckx\r\nmercouri\r\nmercurial\r\nmercurialis\r\nmercuric\r\nmercurochrome\r\nmercurous\r\nmercury\r\nmercury-contaminated\r\nmercy\r\nmere\r\nmeredith\r\nmerely\r\nmerestone\r\nmeretricious\r\nmeretriciously\r\nmeretriciousness\r\nmerganser\r\nmerge\r\nmerged\r\nmergenthaler\r\nmerger\r\nmerginae\r\nmerging\r\nmergus\r\nmericarp\r\nmerida\r\nmeridian\r\nmeridional\r\nmeringue\r\nmerino\r\nmeriones\r\nmeristem\r\nmerit\r\nmeritable\r\nmerited\r\nmeriting\r\nmeritless\r\nmeritocracy\r\nmeritocratic\r\nmeritorious\r\nmeritoriousness\r\nmerl\r\nmerlangus\r\nmerle\r\nmerlin\r\nmerlon\r\nmerlot\r\nmerluccius\r\nmermaid\r\nmerman\r\nmerodach\r\nmeromelia\r\nmeronym\r\nmeronymy\r\nmeropidae\r\nmerops\r\nmerostomata\r\nmerovingian\r\nmerozoite\r\nmerrily\r\nmerrimac\r\nmerrimack\r\nmerriment\r\nmerriness\r\nmerry\r\nmerry-go-round\r\nmerrymaker\r\nmerrymaking\r\nmertensia\r\nmerthiolate\r\nmerton\r\nmeryta\r\nmesa\r\nmesalliance\r\nmesantoin\r\nmesasamkranti\r\nmescal\r\nmescaline\r\nmesembryanthemum\r\nmesencephalon\r\nmesenchyme\r\nmesenteric\r\nmesentery\r\nmesh\r\nmeshed\r\nmeshing\r\nmeshuga\r\nmeshugaas\r\nmeshugga\r\nmeshugge\r\nmeshuggeneh\r\nmeshuggener\r\nmeshwork\r\nmesial\r\nmesic\r\nmesmer\r\nmesmeric\r\nmesmerise\r\nmesmerised\r\nmesmerism\r\nmesmerist\r\nmesmerize\r\nmesmerized\r\nmesmerizer\r\nmesmerizing\r\nmesoamerica\r\nmesoamerican\r\nmesoblast\r\nmesoblastic\r\nmesocarp\r\nmesocolon\r\nmesocricetus\r\nmesoderm\r\nmesodermal\r\nmesohippus\r\nmesolithic\r\nmesomorph\r\nmesomorphic\r\nmesomorphy\r\nmeson\r\nmesonic\r\nmesophyron\r\nmesophyte\r\nmesophytic\r\nmesopotamia\r\nmesosphere\r\nmesothelioma\r\nmesothelium\r\nmesotron\r\nmesozoic\r\nmespilus\r\nmesquit\r\nmesquite\r\nmess\r\nmess-up\r\nmessage\r\nmessaging\r\nmessenger\r\nmessiah\r\nmessiahship\r\nmessianic\r\nmessidor\r\nmessily\r\nmessina\r\nmessiness\r\nmessmate\r\nmessuage\r\nmessy\r\nmestiza\r\nmestizo\r\nmestranol\r\nmesua\r\nmetabola\r\nmetabolic\r\nmetabolise\r\nmetabolism\r\nmetabolite\r\nmetabolize\r\nmetabolous\r\nmetacarpal\r\nmetacarpus\r\nmetacenter\r\nmetacentre\r\nmetacentric\r\nmetacyesis\r\nmetadata\r\nmetagenesis\r\nmetagrabolised\r\nmetagrabolized\r\nmetagrobolised\r\nmetagrobolized\r\nmetaknowledge\r\nmetal\r\nmetal-colored\r\nmetal-coloured\r\nmetal-cutting\r\nmetal-looking\r\nmetalanguage\r\nmetalepsis\r\nmetalize\r\nmetallic\r\nmetallic-colored\r\nmetallic-coloured\r\nmetallic-looking\r\nmetallike\r\nmetallize\r\nmetalloid\r\nmetallurgic\r\nmetallurgical\r\nmetallurgist\r\nmetallurgy\r\nmetalware\r\nmetalwork\r\nmetalworker\r\nmetalworking\r\nmetalworks\r\nmetamathematics\r\nmetamere\r\nmetameric\r\nmetamorphic\r\nmetamorphism\r\nmetamorphopsia\r\nmetamorphose\r\nmetamorphosis\r\nmetamorphous\r\nmetaphase\r\nmetaphor\r\nmetaphoric\r\nmetaphorical\r\nmetaphysical\r\nmetaphysics\r\nmetaphysis\r\nmetaproterenol\r\nmetarule\r\nmetasequoia\r\nmetastability\r\nmetastable\r\nmetastasis\r\nmetastasise\r\nmetastasize\r\nmetastatic\r\nmetatarsal\r\nmetatarsus\r\nmetatheria\r\nmetatherian\r\nmetathesis\r\nmetazoa\r\nmetazoan\r\nmetchnikoff\r\nmetchnikov\r\nmete\r\nmetempsychosis\r\nmetencephalon\r\nmeteor\r\nmeteoric\r\nmeteorite\r\nmeteoritic\r\nmeteoritical\r\nmeteoroid\r\nmeteorologic\r\nmeteorological\r\nmeteorologist\r\nmeteorology\r\nmeteortropism\r\nmeter\r\nmeterstick\r\nmetformin\r\nmeth\r\nmethacholine\r\nmethadon\r\nmethadone\r\nmethamphetamine\r\nmethanal\r\nmethane\r\nmethanogen\r\nmethanol\r\nmethapyrilene\r\nmethaqualone\r\nmetharbital\r\nmethedrine\r\nmetheglin\r\nmethenamine\r\nmethicillin\r\nmethionine\r\nmethocarbamol\r\nmethod\r\nmethodical\r\nmethodicalness\r\nmethodism\r\nmethodist\r\nmethodists\r\nmethodological\r\nmethodology\r\nmethotrexate\r\nmethuselah\r\nmethyl\r\nmethylated\r\nmethylbenzene\r\nmethyldopa\r\nmethylene\r\nmethylenedioxymethamphetamine\r\nmethylphenidate\r\nmethyltestosterone\r\nmetic\r\nmetical\r\nmeticorten\r\nmeticulosity\r\nmeticulous\r\nmeticulousness\r\nmetier\r\nmetis\r\nmetonym\r\nmetonymic\r\nmetonymical\r\nmetonymy\r\nmetopion\r\nmetoprolol\r\nmetralgia\r\nmetrazol\r\nmetre\r\nmetrestick\r\nmetric\r\nmetrical\r\nmetricate\r\nmetrication\r\nmetricise\r\nmetricize\r\nmetrics\r\nmetrification\r\nmetrify\r\nmetritis\r\nmetro\r\nmetrological\r\nmetrology\r\nmetronidazole\r\nmetronome\r\nmetronymic\r\nmetropolis\r\nmetropolitan\r\nmetroptosis\r\nmetrorrhagia\r\nmetroxylon\r\nmetternich\r\nmettle\r\nmettlesome\r\nmettlesomeness\r\nmetycaine\r\nmeuse\r\nmeuse-argonne\r\nmevacor\r\nmew\r\nmewl\r\nmews\r\nmexicali\r\nmexican\r\nmexican-american\r\nmexicano\r\nmexico\r\nmexiletine\r\nmexitil\r\nmeyerbeer\r\nmeyerhof\r\nmezcal\r\nmezereon\r\nmezereum\r\nmezuza\r\nmezuzah\r\nmezzanine\r\nmezzo\r\nmezzo-relievo\r\nmezzo-rilievo\r\nmezzo-soprano\r\nmezzotint\r\nmf\r\nmfa\r\nmflop\r\nmg\r\nmho\r\nmhz\r\nmi\r\nmiami\r\nmiao\r\nmiaou\r\nmiaow\r\nmiasm\r\nmiasma\r\nmiasmal\r\nmiasmic\r\nmiaul\r\nmica\r\nmicaceous\r\nmicah\r\nmicawber\r\nmicelle\r\nmichael\r\nmichaelmas\r\nmichaelmastide\r\nmicheas\r\nmichelangelesque\r\nmichelangelo\r\nmichelson\r\nmichener\r\nmichigan\r\nmichigander\r\nmick\r\nmickey\r\nmickle\r\nmicmac\r\nmiconazole\r\nmicophage\r\nmicro\r\nmicro-cook\r\nmicro-organism\r\nmicrobalance\r\nmicrobar\r\nmicrobat\r\nmicrobe\r\nmicrobial\r\nmicrobic\r\nmicrobiologist\r\nmicrobiology\r\nmicrobrachia\r\nmicrobrewery\r\nmicrocentrum\r\nmicrocephalic\r\nmicrocephalous\r\nmicrocephalus\r\nmicrocephaly\r\nmicrochip\r\nmicrochiroptera\r\nmicrocircuit\r\nmicrococcaceae\r\nmicrococcus\r\nmicrocode\r\nmicrocomputer\r\nmicrocopy\r\nmicrocosm\r\nmicrocosmic\r\nmicrocrystalline\r\nmicrocyte\r\nmicrocytosis\r\nmicrodesmidae\r\nmicrodipodops\r\nmicrodot\r\nmicroeconomic\r\nmicroeconomics\r\nmicroeconomist\r\nmicroelectronic\r\nmicroelectronics\r\nmicroevolution\r\nmicrofarad\r\nmicrofiche\r\nmicrofilm\r\nmicrofossil\r\nmicrogametophyte\r\nmicrogauss\r\nmicroglia\r\nmicrogliacyte\r\nmicrogram\r\nmicrogramma\r\nmicrogramma-piloselloides\r\nmicrohylidae\r\nmicromeria\r\nmicrometeor\r\nmicrometeoric\r\nmicrometeorite\r\nmicrometeoritic\r\nmicrometeoroid\r\nmicrometer\r\nmicrometry\r\nmicromicron\r\nmicromillimeter\r\nmicromillimetre\r\nmicromyx\r\nmicron\r\nmicronase\r\nmicronesia\r\nmicronor\r\nmicronutrient\r\nmicroorganism\r\nmicropaleontology\r\nmicropenis\r\nmicrophage\r\nmicrophallus\r\nmicrophone\r\nmicrophoning\r\nmicrophotometer\r\nmicropogonias\r\nmicroprocessor\r\nmicropterus\r\nmicropylar\r\nmicropyle\r\nmicroradian\r\nmicroscope\r\nmicroscopic\r\nmicroscopical\r\nmicroscopist\r\nmicroscopium\r\nmicroscopy\r\nmicrosecond\r\nmicroseism\r\nmicrosomal\r\nmicrosome\r\nmicrosorium\r\nmicrosporangium\r\nmicrospore\r\nmicrosporidian\r\nmicrosporophyll\r\nmicrosporum\r\nmicrostomus\r\nmicrostrobos\r\nmicrosurgery\r\nmicrotaggant\r\nmicrotome\r\nmicrotubule\r\nmicrotus\r\nmicrovolt\r\nmicrowave\r\nmicruroides\r\nmicrurus\r\nmicturate\r\nmicturition\r\nmid\r\nmid-april\r\nmid-atlantic\r\nmid-august\r\nmid-calf\r\nmid-december\r\nmid-eighties\r\nmid-february\r\nmid-fifties\r\nmid-forties\r\nmid-january\r\nmid-july\r\nmid-june\r\nmid-march\r\nmid-may\r\nmid-nineties\r\nmid-november\r\nmid-october\r\nmid-off\r\nmid-on\r\nmid-september\r\nmid-seventies\r\nmid-sixties\r\nmid-thirties\r\nmid-twenties\r\nmid-water\r\nmidafternoon\r\nmidair\r\nmidas\r\nmidazolam\r\nmidbrain\r\nmidday\r\nmidden\r\nmiddle\r\nmiddle-aged\r\nmiddle-class\r\nmiddle-level\r\nmiddle-of-the-road\r\nmiddlebreaker\r\nmiddlebrow\r\nmiddleman\r\nmiddlemost\r\nmiddleton\r\nmiddleweight\r\nmiddling\r\nmiddy\r\nmideast\r\nmidfield\r\nmidgard\r\nmidge\r\nmidget\r\nmidgrass\r\nmidi\r\nmidi-pyrenees\r\nmidinette\r\nmidiron\r\nmidland\r\nmidline\r\nmidmost\r\nmidnight\r\nmidplane\r\nmidpoint\r\nmidrash\r\nmidrib\r\nmidriff\r\nmidsection\r\nmidshipman\r\nmidships\r\nmidst\r\nmidstream\r\nmidsummer\r\nmidsummer-men\r\nmidterm\r\nmidvein\r\nmidwatch\r\nmidway\r\nmidweek\r\nmidweekly\r\nmidwest\r\nmidwestern\r\nmidwife\r\nmidwifery\r\nmidwinter\r\nmien\r\nmierkat\r\nmifepristone\r\nmiff\r\nmiffed\r\nmight\r\nmight-have-been\r\nmightiness\r\nmighty\r\nmignonette\r\nmigraine\r\nmigrant\r\nmigrate\r\nmigration\r\nmigrational\r\nmigrator\r\nmigratory\r\nmihrab\r\nmikado\r\nmikania\r\nmike\r\nmikir-meithei\r\nmikvah\r\nmil\r\nmilady\r\nmilage\r\nmilan\r\nmilanese\r\nmilano\r\nmilch\r\nmilcher\r\nmild\r\nmild-mannered\r\nmild-tasting\r\nmildew\r\nmildly\r\nmildness\r\nmile\r\nmileage\r\nmileometer\r\nmilepost\r\nmiler\r\nmilestone\r\nmilfoil\r\nmilhaud\r\nmiliaria\r\nmilieu\r\nmilitainment\r\nmilitance\r\nmilitancy\r\nmilitant\r\nmilitarisation\r\nmilitarise\r\nmilitarised\r\nmilitarism\r\nmilitarist\r\nmilitaristic\r\nmilitarization\r\nmilitarize\r\nmilitarized\r\nmilitary\r\nmilitate\r\nmilitia\r\nmilitiaman\r\nmilium\r\nmilk\r\nmilk-sick\r\nmilk-vetch\r\nmilk-white\r\nmilkcap\r\nmilker\r\nmilkless\r\nmilklike\r\nmilkmaid\r\nmilkman\r\nmilkshake\r\nmilksop\r\nmilkwagon\r\nmilkweed\r\nmilkwort\r\nmilky\r\nmill\r\nmill-girl\r\nmill-hand\r\nmillais\r\nmillay\r\nmillboard\r\nmilldam\r\nmilled\r\nmillenarian\r\nmillenarianism\r\nmillenarism\r\nmillenarist\r\nmillenary\r\nmillennial\r\nmillennian\r\nmillennium\r\nmillenniumism\r\nmillepede\r\nmiller\r\nmiller's-thumb\r\nmillerite\r\nmillet\r\nmillettia\r\nmilliammeter\r\nmilliampere\r\nmilliard\r\nmillibar\r\nmillicurie\r\nmillidegree\r\nmilliequivalent\r\nmillifarad\r\nmilligram\r\nmillihenry\r\nmillikan\r\nmilliliter\r\nmillilitre\r\nmillime\r\nmillimeter\r\nmillimetre\r\nmillimicron\r\nmilline\r\nmilliner\r\nmillinery\r\nmilling\r\nmillion\r\nmillionaire\r\nmillionairess\r\nmillionfold\r\nmillionth\r\nmilliped\r\nmillipede\r\nmilliradian\r\nmillisecond\r\nmillivolt\r\nmillivoltmeter\r\nmilliwatt\r\nmillpond\r\nmillrace\r\nmillrun\r\nmills\r\nmillstone\r\nmillwheel\r\nmillwork\r\nmillwright\r\nmilne\r\nmilo\r\nmilometer\r\nmilontin\r\nmilord\r\nmilquetoast\r\nmilt\r\nmiltiades\r\nmiltomate\r\nmilton\r\nmiltonia\r\nmiltown\r\nmilvus\r\nmilwaukee\r\nmimamsa\r\nmime\r\nmimeo\r\nmimeograph\r\nmimer\r\nmimesis\r\nmimetic\r\nmimic\r\nmimicker\r\nmimicry\r\nmimidae\r\nmimir\r\nmimosa\r\nmimosaceae\r\nmimosoideae\r\nmimus\r\nmin\r\nmina\r\nminacious\r\nminah\r\nminaret\r\nminatory\r\nmince\r\nmincemeat\r\nmincer\r\nmincing\r\nmind\r\nmind-altering\r\nmind-bending\r\nmind-blowing\r\nmind-boggling\r\nmind-expanding\r\nmind-set\r\nmindanao\r\nminded\r\nminden\r\nminder\r\nmindful\r\nmindfully\r\nmindfulness\r\nmindless\r\nmindlessly\r\nmindlessness\r\nmindoro\r\nmindset\r\nmine\r\nmined\r\nminefield\r\nminelayer\r\nminelaying\r\nminer\r\nmineral\r\nmineralize\r\nmineralized\r\nmineralocorticoid\r\nmineralogist\r\nmineralogy\r\nminerva\r\nmineshaft\r\nminestrone\r\nminesweeper\r\nminesweeping\r\nmineworker\r\nming\r\nminge\r\nminginess\r\nmingle\r\nmingle-mangle\r\nmingling\r\nmingy\r\nmini\r\nminiate\r\nminiature\r\nminiaturisation\r\nminiaturise\r\nminiaturist\r\nminiaturization\r\nminiaturize\r\nminibar\r\nminibike\r\nminibus\r\nminicab\r\nminicar\r\nminicomputer\r\nminiconju\r\nminify\r\nminim\r\nminimal\r\nminimalism\r\nminimalist\r\nminimally\r\nminimisation\r\nminimise\r\nminimization\r\nminimize\r\nminimized\r\nminimum\r\nminimus\r\nmining\r\nminion\r\nminipress\r\nminiscule\r\nminiskirt\r\nminister\r\nministerial\r\nministering\r\nministrant\r\nministration\r\nministry\r\nminisub\r\nminisubmarine\r\nminium\r\nminivan\r\nminiver\r\nmink\r\nminkowski\r\nminneapolis\r\nminnesota\r\nminnesotan\r\nminnewit\r\nminniebush\r\nminnow\r\nminoan\r\nminocin\r\nminocycline\r\nminor\r\nminority\r\nminors\r\nminos\r\nminotaur\r\nminoxidil\r\nminsk\r\nminster\r\nminstrel\r\nminstrelsy\r\nmint\r\nmint-scented\r\nmintage\r\nminter\r\nmintmark\r\nminuartia\r\nminuend\r\nminuet\r\nminuit\r\nminus\r\nminuscular\r\nminuscule\r\nminute\r\nminutely\r\nminuteman\r\nminuteness\r\nminutes\r\nminutia\r\nminx\r\nminyan\r\nmiocene\r\nmiosis\r\nmiotic\r\nmips\r\nmirabeau\r\nmirabilis\r\nmiracle\r\nmiracle-worship\r\nmiraculous\r\nmirage\r\nmirasol\r\nmire\r\nmired\r\nmiri\r\nmirid\r\nmiridae\r\nmirish\r\nmirky\r\nmiro\r\nmirounga\r\nmirror\r\nmirrored\r\nmirrorlike\r\nmirth\r\nmirthful\r\nmirthfully\r\nmirthfulness\r\nmirthless\r\nmiry\r\nmisaddress\r\nmisadventure\r\nmisadvise\r\nmisalign\r\nmisalignment\r\nmisalliance\r\nmisally\r\nmisanthrope\r\nmisanthropic\r\nmisanthropical\r\nmisanthropist\r\nmisanthropy\r\nmisapplication\r\nmisapply\r\nmisapprehend\r\nmisapprehension\r\nmisappropriate\r\nmisappropriated\r\nmisappropriation\r\nmisbegot\r\nmisbegotten\r\nmisbehave\r\nmisbehavior\r\nmisbehaviour\r\nmisbelieve\r\nmisbeliever\r\nmisbranded\r\nmiscalculate\r\nmiscalculation\r\nmiscall\r\nmiscarriage\r\nmiscarry\r\nmiscast\r\nmiscegenate\r\nmiscegenation\r\nmiscellanea\r\nmiscellaneous\r\nmiscellany\r\nmischance\r\nmischief\r\nmischief-maker\r\nmischief-making\r\nmischievous\r\nmischievously\r\nmischievousness\r\nmiscible\r\nmisconceive\r\nmisconception\r\nmisconduct\r\nmisconstrual\r\nmisconstruction\r\nmisconstrue\r\nmiscount\r\nmiscreant\r\nmiscreate\r\nmiscreation\r\nmiscue\r\nmisdate\r\nmisdating\r\nmisdeal\r\nmisdeed\r\nmisdeliver\r\nmisdemean\r\nmisdemeanor\r\nmisdemeanour\r\nmisdirect\r\nmisdirection\r\nmisdo\r\nmiser\r\nmiserable\r\nmiserableness\r\nmiserliness\r\nmiserly\r\nmisery\r\nmisestimate\r\nmisestimation\r\nmisfeasance\r\nmisfire\r\nmisfit\r\nmisfortunate\r\nmisfortune\r\nmisfunction\r\nmisgauge\r\nmisgive\r\nmisgiving\r\nmisgovern\r\nmisgovernment\r\nmisguide\r\nmisguided\r\nmishandle\r\nmishap\r\nmishegaas\r\nmishegoss\r\nmishmash\r\nmishna\r\nmishnah\r\nmishnaic\r\nmishpachah\r\nmishpocha\r\nmisidentify\r\nmisinform\r\nmisinformation\r\nmisinterpret\r\nmisinterpretation\r\nmisjudge\r\nmislabeled\r\nmislaid\r\nmislay\r\nmislead\r\nmisleader\r\nmisleading\r\nmisleadingly\r\nmismanage\r\nmismanagement\r\nmismarry\r\nmismatch\r\nmismatched\r\nmismate\r\nmismated\r\nmisname\r\nmisnomer\r\nmisocainea\r\nmisogamist\r\nmisogamy\r\nmisogynic\r\nmisogynism\r\nmisogynist\r\nmisogynous\r\nmisogyny\r\nmisology\r\nmisoneism\r\nmisopedia\r\nmisperceive\r\nmispickel\r\nmisplace\r\nmisplaced\r\nmisplacement\r\nmisplay\r\nmisprint\r\nmispronounce\r\nmispronunciation\r\nmisquotation\r\nmisquote\r\nmisread\r\nmisreading\r\nmisreckoning\r\nmisrelated\r\nmisremember\r\nmisrepresent\r\nmisrepresentaation\r\nmisrepresentation\r\nmisrepresented\r\nmisrule\r\nmiss\r\nmissal\r\nmissed\r\nmisshapen\r\nmisshapenness\r\nmissile\r\nmissing\r\nmission\r\nmissional\r\nmissionary\r\nmissioner\r\nmissis\r\nmississippi\r\nmississippian\r\nmissive\r\nmissoula\r\nmissouri\r\nmissourian\r\nmisspeka\r\nmisspell\r\nmisspelling\r\nmisspend\r\nmisstate\r\nmisstatement\r\nmisstep\r\nmissus\r\nmissy\r\nmist\r\nmist-flower\r\nmistakable\r\nmistake\r\nmistaken\r\nmistakenly\r\nmistaking\r\nmister\r\nmistflower\r\nmistily\r\nmistime\r\nmistiming\r\nmistiness\r\nmistletoe\r\nmistral\r\nmistranslate\r\nmistranslation\r\nmistreat\r\nmistreated\r\nmistreatment\r\nmistress\r\nmistrial\r\nmistrust\r\nmistrustful\r\nmistrustfully\r\nmisty\r\nmisty-eyed\r\nmisunderstand\r\nmisunderstanding\r\nmisunderstood\r\nmisuse\r\nmisused\r\nmit\r\nmitchell\r\nmitchella\r\nmitchum\r\nmite\r\nmitella\r\nmiter\r\nmiterwort\r\nmitford\r\nmithan\r\nmithra\r\nmithracin\r\nmithraic\r\nmithraicism\r\nmithraism\r\nmithraist\r\nmithraistic\r\nmithramycin\r\nmithras\r\nmithridates\r\nmitigable\r\nmitigate\r\nmitigated\r\nmitigation\r\nmitigative\r\nmitigatory\r\nmitochondrion\r\nmitogen\r\nmitomycin\r\nmitosis\r\nmitotic\r\nmitra\r\nmitral\r\nmitre\r\nmitrewort\r\nmitsvah\r\nmitt\r\nmittelschmerz\r\nmitten\r\nmitterand\r\nmitzvah\r\nmiwok\r\nmix\r\nmix-up\r\nmixable\r\nmixed\r\nmixed-blood\r\nmixed-up\r\nmixer\r\nmixing\r\nmixologist\r\nmixology\r\nmixture\r\nmizen\r\nmizenmast\r\nmizzen\r\nmizzenmast\r\nmizzle\r\nmko\r\nml\r\nmlitt\r\nmls\r\nmm\r\nmmpi\r\nmn\r\nmnemonic\r\nmnemonics\r\nmnemonist\r\nmnemosyne\r\nmnemotechnic\r\nmnemotechnical\r\nmniaceae\r\nmnium\r\nmo\r\nmoa\r\nmoan\r\nmoaner\r\nmoaning\r\nmoat\r\nmoated\r\nmob\r\nmoban\r\nmobbish\r\nmobcap\r\nmobile\r\nmobilisation\r\nmobilise\r\nmobility\r\nmobilization\r\nmobilize\r\nmobius\r\nmoblike\r\nmobocracy\r\nmobster\r\nmobula\r\nmobulidae\r\nmocambique\r\nmocassin\r\nmoccasin\r\nmocha\r\nmock\r\nmock-heroic\r\nmock-up\r\nmocker\r\nmockernut\r\nmockery\r\nmocking\r\nmockingbird\r\nmockingly\r\nmod\r\nmodal\r\nmodality\r\nmode\r\nmodel\r\nmodeled\r\nmodeler\r\nmodeling\r\nmodeller\r\nmodelling\r\nmodem\r\nmoderate\r\nmoderate-size\r\nmoderate-sized\r\nmoderated\r\nmoderately\r\nmoderateness\r\nmoderating\r\nmoderation\r\nmoderationism\r\nmoderationist\r\nmoderatism\r\nmoderato\r\nmoderator\r\nmoderatorship\r\nmodern\r\nmodern-day\r\nmoderne\r\nmodernisation\r\nmodernise\r\nmodernised\r\nmodernism\r\nmodernist\r\nmodernistic\r\nmodernity\r\nmodernization\r\nmodernize\r\nmodernized\r\nmodernness\r\nmodest\r\nmodestly\r\nmodestness\r\nmodesty\r\nmodicon\r\nmodicum\r\nmodifiable\r\nmodification\r\nmodified\r\nmodifier\r\nmodify\r\nmodigliani\r\nmodillion\r\nmodiolus\r\nmodish\r\nmodishly\r\nmodishness\r\nmodiste\r\nmods\r\nmodular\r\nmodulate\r\nmodulated\r\nmodulation\r\nmodule\r\nmodulus\r\nmoehringia\r\nmogadiscio\r\nmogadishu\r\nmoghul\r\nmogul\r\nmohair\r\nmohammad\r\nmohammed\r\nmohammedan\r\nmohammedanism\r\nmoharram\r\nmohave\r\nmohawk\r\nmohican\r\nmoho\r\nmohorovicic\r\nmohria\r\nmoiety\r\nmoil\r\nmoirae\r\nmoirai\r\nmoire\r\nmoist\r\nmoisten\r\nmoistener\r\nmoistening\r\nmoistly\r\nmoistness\r\nmoisture\r\nmoisturise\r\nmoisturize\r\nmojarra\r\nmojave\r\nmojo\r\nmoke\r\nmoksa\r\nmokulu\r\nmol\r\nmola\r\nmolal\r\nmolality\r\nmolar\r\nmolarity\r\nmolasses\r\nmold\r\nmoldable\r\nmoldavia\r\nmoldboard\r\nmolded\r\nmolder\r\nmoldiness\r\nmolding\r\nmoldova\r\nmoldovan\r\nmoldy\r\nmole\r\nmolech\r\nmolecular\r\nmolecule\r\nmolehill\r\nmoleskin\r\nmolest\r\nmolestation\r\nmolester\r\nmolidae\r\nmoliere\r\nmolindone\r\nmoline\r\nmolise\r\nmoll\r\nmollah\r\nmolle\r\nmollie\r\nmollienesia\r\nmollification\r\nmollify\r\nmolluga\r\nmollusc\r\nmollusca\r\nmolluscum\r\nmollusk\r\nmolly\r\nmollycoddle\r\nmollycoddler\r\nmollymawk\r\nmolnar\r\nmoloch\r\nmolokai\r\nmolossidae\r\nmolothrus\r\nmolotov\r\nmolt\r\nmolten\r\nmolter\r\nmolting\r\nmoluccas\r\nmolucella\r\nmolva\r\nmolybdenite\r\nmolybdenum\r\nmom\r\nmombasa\r\nmombin\r\nmoment\r\nmomentaneous\r\nmomentarily\r\nmomentary\r\nmomently\r\nmomentous\r\nmomentousness\r\nmomentum\r\nmomism\r\nmomma\r\nmommsen\r\nmommy\r\nmomordica\r\nmomos\r\nmomot\r\nmomotidae\r\nmomotus\r\nmomus\r\nmon\r\nmon-khmer\r\nmona\r\nmonacan\r\nmonaco\r\nmonaco-ville\r\nmonad\r\nmonal\r\nmonandrous\r\nmonandry\r\nmonarch\r\nmonarchal\r\nmonarchic\r\nmonarchical\r\nmonarchism\r\nmonarchist\r\nmonarchy\r\nmonarda\r\nmonardella\r\nmonario\r\nmonas\r\nmonastery\r\nmonastic\r\nmonastical\r\nmonasticism\r\nmonatomic\r\nmonaul\r\nmonaural\r\nmonaurally\r\nmonazite\r\nmonday\r\nmondrian\r\nmonecious\r\nmonegasque\r\nmonera\r\nmoneran\r\nmoneron\r\nmoneses\r\nmonestrous\r\nmonet\r\nmonetarism\r\nmonetarist\r\nmonetary\r\nmonetisation\r\nmonetise\r\nmonetization\r\nmonetize\r\nmoney\r\nmoney-spinner\r\nmoneybag\r\nmoneyed\r\nmoneyer\r\nmoneygrubber\r\nmoneylender\r\nmoneyless\r\nmoneymaker\r\nmoneymaking\r\nmoneyman\r\nmoneywort\r\nmonger\r\nmongo\r\nmongol\r\nmongolia\r\nmongolian\r\nmongolianism\r\nmongolic\r\nmongolism\r\nmongoloid\r\nmongoose\r\nmongoose-like\r\nmongrel\r\nmongrelise\r\nmongrelize\r\nmonied\r\nmoniker\r\nmonilia\r\nmoniliaceae\r\nmoniliales\r\nmoniliasis\r\nmonish\r\nmonism\r\nmonistat\r\nmonistic\r\nmonition\r\nmonitor\r\nmonitoring\r\nmonitory\r\nmonitrice\r\nmonk\r\nmonkey\r\nmonkey-like\r\nmonkey-wrench\r\nmonkeypod\r\nmonkfish\r\nmonkish\r\nmonkshood\r\nmonnet\r\nmono\r\nmono-iodotyrosine\r\nmonoamine\r\nmonoatomic\r\nmonoblast\r\nmonocanthidae\r\nmonocanthus\r\nmonocarboxylic\r\nmonocarp\r\nmonocarpic\r\nmonochamus\r\nmonochromacy\r\nmonochromasy\r\nmonochromat\r\nmonochromatic\r\nmonochromatism\r\nmonochrome\r\nmonochromia\r\nmonochromic\r\nmonochromous\r\nmonocle\r\nmonocled\r\nmonoclinal\r\nmonocline\r\nmonoclinic\r\nmonoclinous\r\nmonoclonal\r\nmonocot\r\nmonocotyledon\r\nmonocotyledonae\r\nmonocotyledones\r\nmonocotyledonous\r\nmonocracy\r\nmonoculture\r\nmonocycle\r\nmonocyte\r\nmonocytosis\r\nmonod\r\nmonodic\r\nmonodical\r\nmonodon\r\nmonodontidae\r\nmonody\r\nmonoecious\r\nmonoestrous\r\nmonogamist\r\nmonogamous\r\nmonogamousness\r\nmonogamy\r\nmonogenesis\r\nmonogenic\r\nmonogram\r\nmonograph\r\nmonogynic\r\nmonogynist\r\nmonogynous\r\nmonogyny\r\nmonohybrid\r\nmonohydrate\r\nmonoicous\r\nmonolatry\r\nmonolingual\r\nmonolith\r\nmonolithic\r\nmonologist\r\nmonologue\r\nmonologuise\r\nmonologuize\r\nmonomania\r\nmonomaniac\r\nmonomaniacal\r\nmonomer\r\nmonometallic\r\nmonomorium\r\nmononeuropathy\r\nmonongahela\r\nmononuclear\r\nmononucleate\r\nmononucleosis\r\nmonophonic\r\nmonophony\r\nmonophthalmos\r\nmonophysite\r\nmonophysitic\r\nmonophysitism\r\nmonoplane\r\nmonoplegia\r\nmonoploid\r\nmonopolisation\r\nmonopolise\r\nmonopoliser\r\nmonopolist\r\nmonopolistic\r\nmonopolization\r\nmonopolize\r\nmonopolizer\r\nmonopoly\r\nmonopsony\r\nmonopteral\r\nmonorail\r\nmonorchidism\r\nmonorchism\r\nmonosaccharide\r\nmonosaccharose\r\nmonosemous\r\nmonosemy\r\nmonosomy\r\nmonosyllabic\r\nmonosyllable\r\nmonotheism\r\nmonotheist\r\nmonotheistic\r\nmonothelitism\r\nmonotone\r\nmonotonic\r\nmonotonous\r\nmonotony\r\nmonotremata\r\nmonotreme\r\nmonotropa\r\nmonotropaceae\r\nmonotype\r\nmonotypic\r\nmonounsaturated\r\nmonovalent\r\nmonovular\r\nmonoxide\r\nmonroe\r\nmonrovia\r\nmons\r\nmonsieur\r\nmonsignor\r\nmonsoon\r\nmonster\r\nmonstera\r\nmonstrance\r\nmonstrosity\r\nmonstrous\r\nmonstrously\r\nmontage\r\nmontagu\r\nmontaigne\r\nmontana\r\nmontanan\r\nmontane\r\nmonte\r\nmontenegro\r\nmonterey\r\nmonterrey\r\nmontespan\r\nmontesquieu\r\nmontessori\r\nmonteverdi\r\nmontevideo\r\nmontez\r\nmontezuma\r\nmontfort\r\nmontgolfier\r\nmontgomery\r\nmonth\r\nmonthlong\r\nmonthly\r\nmontia\r\nmontmartre\r\nmontpelier\r\nmontrachet\r\nmontreal\r\nmontserrat\r\nmontserratian\r\nmonument\r\nmonumental\r\nmonumentalise\r\nmonumentalize\r\nmoo\r\nmoo-cow\r\nmooch\r\nmoocher\r\nmood\r\nmoodiness\r\nmoody\r\nmoolah\r\nmoon\r\nmoon-curser\r\nmoon-faced\r\nmoon-ray\r\nmoon-round\r\nmoon-splashed\r\nmoon-worship\r\nmoonbeam\r\nmooneye\r\nmoonfish\r\nmoonflower\r\nmoonie\r\nmoonily\r\nmoonless\r\nmoonlight\r\nmoonlighter\r\nmoonlike\r\nmoonlit\r\nmoonseed\r\nmoonshell\r\nmoonshine\r\nmoonshiner\r\nmoonstone\r\nmoonstruck\r\nmoonwalk\r\nmoonwort\r\nmoony\r\nmoor\r\nmoor-bird\r\nmoorage\r\nmoorbird\r\nmoorcock\r\nmoore\r\nmoorfowl\r\nmoorgame\r\nmoorhen\r\nmooring\r\nmoorish\r\nmoorland\r\nmoorwort\r\nmoose\r\nmoose-wood\r\nmoosewood\r\nmoot\r\nmop\r\nmop-headed\r\nmopboard\r\nmope\r\nmoped\r\nmopes\r\nmopper\r\nmoppet\r\nmopping\r\nmoquelumnan\r\nmoquette\r\nmoraceae\r\nmoraceous\r\nmoraine\r\nmoral\r\nmorale\r\nmoralisation\r\nmoralise\r\nmoralism\r\nmoralist\r\nmoralistic\r\nmorality\r\nmoralization\r\nmoralize\r\nmoralizing\r\nmorally\r\nmorals\r\nmorass\r\nmoratorium\r\nmoravia\r\nmoravian\r\nmoray\r\nmorbid\r\nmorbidity\r\nmorbidness\r\nmorbific\r\nmorbilli\r\nmorbilliform\r\nmorceau\r\nmorchella\r\nmorchellaceae\r\nmordacious\r\nmordacity\r\nmordant\r\nmordva\r\nmordvin\r\nmordvinian\r\nmore\r\nmoreen\r\nmorel\r\nmorello\r\nmoreover\r\nmores\r\nmoresque\r\nmorgan\r\nmorganatic\r\nmorganite\r\nmorgantown\r\nmorgen\r\nmorgue\r\nmoribund\r\nmorion\r\nmorley\r\nmormon\r\nmormonism\r\nmormons\r\nmorn\r\nmorning\r\nmoro\r\nmoroccan\r\nmorocco\r\nmoron\r\nmorone\r\nmoronic\r\nmoronity\r\nmorose\r\nmoroseness\r\nmorosoph\r\nmorph\r\nmorphallaxis\r\nmorphea\r\nmorpheme\r\nmorphemic\r\nmorpheus\r\nmorphia\r\nmorphine\r\nmorphogenesis\r\nmorphologic\r\nmorphological\r\nmorphology\r\nmorphophoneme\r\nmorphophonemic\r\nmorphophonemics\r\nmorphophysiology\r\nmorrigan\r\nmorrigu\r\nmorris\r\nmorrison\r\nmorristown\r\nmorrow\r\nmors\r\nmorse\r\nmorsel\r\nmorta\r\nmortal\r\nmortality\r\nmortar\r\nmortarboard\r\nmortgage\r\nmortgaged\r\nmortgagee\r\nmortgager\r\nmortgagor\r\nmortice\r\nmortician\r\nmortification\r\nmortified\r\nmortify\r\nmortifying\r\nmortimer\r\nmortise\r\nmortmain\r\nmorton\r\nmortuary\r\nmorula\r\nmorus\r\nmosaic\r\nmosaicism\r\nmosan\r\nmosander\r\nmoschus\r\nmoscow\r\nmoselle\r\nmoses\r\nmosey\r\nmosh\r\nmoshav\r\nmoslem\r\nmosque\r\nmosquito\r\nmosquito-like\r\nmosquitofish\r\nmoss\r\nmoss-grown\r\nmoss-like\r\nmoss-trooper\r\nmossad\r\nmossback\r\nmossbauer\r\nmosslike\r\nmosstone\r\nmossy\r\nmost\r\nmost-favored-nation\r\nmost-valuable\r\nmostaccioli\r\nmostly\r\nmosul\r\nmot\r\nmotacilla\r\nmotacillidae\r\nmote\r\nmotel\r\nmotet\r\nmoth\r\nmoth-eaten\r\nmoth-like\r\nmoth-resistant\r\nmothball\r\nmother\r\nmother-in-law\r\nmother-naked\r\nmother-of-pearl\r\nmother-of-thousands\r\nmotherese\r\nmotherfucker\r\nmotherhood\r\nmotherland\r\nmotherless\r\nmotherlike\r\nmotherliness\r\nmotherly\r\nmotherwell\r\nmotherwort\r\nmothproof\r\nmothy\r\nmotif\r\nmotile\r\nmotility\r\nmotion\r\nmotional\r\nmotionless\r\nmotionlessness\r\nmotivate\r\nmotivated\r\nmotivating\r\nmotivation\r\nmotivational\r\nmotivative\r\nmotivator\r\nmotive\r\nmotiveless\r\nmotivity\r\nmotley\r\nmotmot\r\nmotoneuron\r\nmotor\r\nmotor-assisted\r\nmotorbike\r\nmotorboat\r\nmotorbus\r\nmotorcade\r\nmotorcar\r\nmotorcoach\r\nmotorcycle\r\nmotorcycling\r\nmotorcyclist\r\nmotored\r\nmotorial\r\nmotoring\r\nmotorisation\r\nmotorise\r\nmotorised\r\nmotorist\r\nmotorization\r\nmotorize\r\nmotorized\r\nmotorless\r\nmotorman\r\nmotormouth\r\nmotortruck\r\nmotorway\r\nmotown\r\nmotrin\r\nmott\r\nmottle\r\nmottled\r\nmottling\r\nmotto\r\nmoue\r\nmoufflon\r\nmouflon\r\nmoujik\r\nmoukden\r\nmould\r\nmouldboard\r\nmoulder\r\nmoulding\r\nmouldy\r\nmoulmein\r\nmoult\r\nmoulter\r\nmoulting\r\nmound\r\nmound-bird\r\nmount\r\nmountain\r\nmountaineer\r\nmountaineering\r\nmountainous\r\nmountainside\r\nmountebank\r\nmounted\r\nmounter\r\nmountie\r\nmounties\r\nmounting\r\nmourn\r\nmourner\r\nmournful\r\nmournfulness\r\nmourning\r\nmouse\r\nmouse-colored\r\nmouse-eared\r\nmouse-sized\r\nmouselike\r\nmousepad\r\nmouser\r\nmousetrap\r\nmousey\r\nmoussaka\r\nmousse\r\nmoussorgsky\r\nmoustache\r\nmoustachio\r\nmousy\r\nmouth\r\nmouth-watering\r\nmouthbreeder\r\nmouthful\r\nmouthless\r\nmouthlike\r\nmouthpart\r\nmouthpiece\r\nmouthwash\r\nmouton\r\nmovability\r\nmovable\r\nmovableness\r\nmove\r\nmoveable\r\nmoved\r\nmovement\r\nmover\r\nmovie\r\nmoviegoer\r\nmoviemaking\r\nmoving\r\nmow\r\nmower\r\nmown\r\nmoxie\r\nmoynihan\r\nmozambican\r\nmozambique\r\nmozart\r\nmozartean\r\nmozartian\r\nmozzarella\r\nmp\r\nmph\r\nmps\r\nmr\r\nmr.\r\nmrd\r\nmri\r\nmrna\r\nmrs\r\nmrs.\r\nmrta\r\nms\r\nms-dos\r\nms.\r\nmsasa\r\nmsb\r\nmsc\r\nmsec\r\nmsg\r\nmsh\r\nmst\r\nmt\r\nmu\r\nmu-meson\r\nmuadhdhin\r\nmuazzin\r\nmubarak\r\nmuch\r\nmuchness\r\nmuciferous\r\nmucilage\r\nmucilaginous\r\nmucin\r\nmucinoid\r\nmucinous\r\nmuck\r\nmuckheap\r\nmuckhill\r\nmuckle\r\nmuckrake\r\nmuckraker\r\nmuckraking\r\nmucky\r\nmucocutaneous\r\nmucoid\r\nmucoidal\r\nmucopolysaccharide\r\nmucopolysaccharidosis\r\nmucopurulent\r\nmucor\r\nmucoraceae\r\nmucorales\r\nmucosa\r\nmucosal\r\nmucose\r\nmucous\r\nmucoviscidosis\r\nmucuna\r\nmucus\r\nmud\r\nmud-beplastered\r\nmud-brick\r\nmud-wrestle\r\nmudcat\r\nmudder\r\nmuddied\r\nmuddiness\r\nmuddle\r\nmuddled\r\nmuddleheaded\r\nmuddy\r\nmudguard\r\nmudhif\r\nmudra\r\nmudskipper\r\nmudslide\r\nmudslinger\r\nmudspringer\r\nmudwrestle\r\nmuenchen\r\nmuenster\r\nmuesli\r\nmuezzin\r\nmuff\r\nmuffin\r\nmuffle\r\nmuffled\r\nmuffler\r\nmufti\r\nmug\r\nmugful\r\nmuggee\r\nmugger\r\nmugginess\r\nmugging\r\nmuggins\r\nmuggy\r\nmugil\r\nmugilidae\r\nmugiloidea\r\nmugshot\r\nmugwort\r\nmugwump\r\nmuhammad\r\nmuhammadan\r\nmuhammadanism\r\nmuhammedan\r\nmuharram\r\nmuharrum\r\nmuhlenbergia\r\nmuir\r\nmuishond\r\nmujahadeen\r\nmujahadein\r\nmujahadin\r\nmujahedeen\r\nmujahedin\r\nmujahid\r\nmujahideen\r\nmujahidin\r\nmujik\r\nmujtihad\r\nmukalla\r\nmukataa\r\nmukden\r\nmulatto\r\nmulberry\r\nmulch\r\nmulct\r\nmule\r\nmuleteer\r\nmuliebrity\r\nmulish\r\nmulishly\r\nmulishness\r\nmull\r\nmulla\r\nmullah\r\nmullein\r\nmuller\r\nmullet\r\nmullet-like\r\nmullidae\r\nmulligan\r\nmulligatawny\r\nmullion\r\nmullioned\r\nmulloidichthys\r\nmulloway\r\nmullus\r\nmulti-billionaire\r\nmulti-color\r\nmulti-colored\r\nmulti-colour\r\nmulti-coloured\r\nmulti-ethnic\r\nmulti-seeded\r\nmulti-stemmed\r\nmulti-valued\r\nmulticellular\r\nmulticollinearity\r\nmulticolor\r\nmulticolored\r\nmulticolour\r\nmulticoloured\r\nmulticultural\r\nmulticulturalism\r\nmultidimensional\r\nmultiethnic\r\nmultifaceted\r\nmultifactorial\r\nmultifarious\r\nmultifariously\r\nmultifariousness\r\nmultiflora\r\nmultiform\r\nmultilane\r\nmultilateral\r\nmultilevel\r\nmultilingual\r\nmultimedia\r\nmultinational\r\nmultinomial\r\nmultinucleate\r\nmultiparous\r\nmultipartite\r\nmultiphase\r\nmultiple\r\nmultiple-choice\r\nmultiplex\r\nmultiplexer\r\nmultiplicand\r\nmultiplication\r\nmultiplicative\r\nmultiplicity\r\nmultiplied\r\nmultiplier\r\nmultiply\r\nmultipotent\r\nmultiprocessing\r\nmultiprocessor\r\nmultiprogramming\r\nmultipurpose\r\nmultiracial\r\nmultistage\r\nmultistorey\r\nmultistoried\r\nmultistory\r\nmultitude\r\nmultitudinous\r\nmultitudinousness\r\nmultivalence\r\nmultivalency\r\nmultivalent\r\nmultivariate\r\nmultiversity\r\nmultivitamin\r\nmulwi\r\nmum\r\nmumbai\r\nmumble\r\nmumble-the-peg\r\nmumbler\r\nmumblety-peg\r\nmumbling\r\nmummer\r\nmummery\r\nmummichog\r\nmummification\r\nmummify\r\nmummy\r\nmummy-brown\r\nmumps\r\nmumpsimus\r\nmunch\r\nmunchausen\r\nmunchener\r\nmuncher\r\nmunchhausen\r\nmuncie\r\nmunda\r\nmunda-mon-khmer\r\nmundane\r\nmundanely\r\nmundaneness\r\nmundanity\r\nmung\r\nmunich\r\nmunicipal\r\nmunicipality\r\nmunificence\r\nmunificent\r\nmunificently\r\nmuniments\r\nmunition\r\nmunj\r\nmunja\r\nmunjeet\r\nmunjuk\r\nmunro\r\nmuntiacus\r\nmuntingia\r\nmuntjac\r\nmuon\r\nmuraenidae\r\nmural\r\nmuralist\r\nmuramidase\r\nmurder\r\nmurdered\r\nmurderee\r\nmurderer\r\nmurderess\r\nmurderous\r\nmurderously\r\nmurderousness\r\nmurdoch\r\nmuridae\r\nmurillo\r\nmurine\r\nmuritaniya\r\nmurk\r\nmurkily\r\nmurkiness\r\nmurky\r\nmurmansk\r\nmurmur\r\nmurmuration\r\nmurmurer\r\nmurmuring\r\nmurmurous\r\nmuroidea\r\nmurphy\r\nmurrain\r\nmurray\r\nmurre\r\nmurrow\r\nmurrumbidgee\r\nmus\r\nmusa\r\nmusaceae\r\nmusales\r\nmusca\r\nmuscadel\r\nmuscadelle\r\nmuscadet\r\nmuscadine\r\nmuscardinus\r\nmuscari\r\nmuscat\r\nmuscatel\r\nmusci\r\nmuscicapa\r\nmuscicapidae\r\nmuscidae\r\nmuscivora\r\nmuscivora-forficata\r\nmuscle\r\nmuscle-bound\r\nmuscle-builder\r\nmusclebuilder\r\nmusclebuilding\r\nmuscleman\r\nmuscoidea\r\nmuscovite\r\nmuscovy\r\nmuscular\r\nmuscularity\r\nmusculature\r\nmusculoskeletal\r\nmusculus\r\nmusd\r\nmuse\r\nmuser\r\nmusette\r\nmuseum\r\nmusgoi\r\nmusgu\r\nmush\r\nmusher\r\nmushiness\r\nmushroom\r\nmushroom-shaped\r\nmushy\r\nmusial\r\nmusic\r\nmusical\r\nmusicality\r\nmusically\r\nmusicalness\r\nmusician\r\nmusicianship\r\nmusicological\r\nmusicologist\r\nmusicology\r\nmusing\r\nmusjid\r\nmusk\r\nmusk-scented\r\nmuskat\r\nmuskellunge\r\nmusket\r\nmusketeer\r\nmusketry\r\nmuskhogean\r\nmuskiness\r\nmuskmelon\r\nmuskogean\r\nmuskogee\r\nmuskrat\r\nmuskwood\r\nmusky\r\nmusky-scented\r\nmuslim\r\nmuslimah\r\nmuslimism\r\nmuslin\r\nmusnud\r\nmusophaga\r\nmusophagidae\r\nmusophobia\r\nmusquash\r\nmuss\r\nmussel\r\nmusset\r\nmussiness\r\nmussitate\r\nmussitation\r\nmussolini\r\nmussorgsky\r\nmussy\r\nmust\r\nmustache\r\nmustached\r\nmustachio\r\nmustachioed\r\nmustagh\r\nmustang\r\nmustard\r\nmustela\r\nmustelid\r\nmustelidae\r\nmusteline\r\nmustelus\r\nmuster\r\nmusth\r\nmustiness\r\nmusty\r\nmut\r\nmutability\r\nmutable\r\nmutableness\r\nmutafacient\r\nmutagen\r\nmutagenesis\r\nmutagenic\r\nmutamycin\r\nmutant\r\nmutate\r\nmutation\r\nmutational\r\nmutative\r\nmutawa\r\nmutawa'een\r\nmutchkin\r\nmute\r\nmuted\r\nmutely\r\nmuteness\r\nmutilate\r\nmutilated\r\nmutilation\r\nmutilator\r\nmutillidae\r\nmutineer\r\nmutinous\r\nmutinus\r\nmutiny\r\nmutisia\r\nmutism\r\nmuton\r\nmutsuhito\r\nmutt\r\nmutter\r\nmutterer\r\nmuttering\r\nmutton\r\nmuttonfish\r\nmuttonhead\r\nmutual\r\nmutualism\r\nmutualist\r\nmutuality\r\nmutually\r\nmutualness\r\nmuumuu\r\nmuybridge\r\nmuzhik\r\nmuzjik\r\nmuztag\r\nmuztagh\r\nmuzzle\r\nmuzzle-loading\r\nmuzzler\r\nmuzzy\r\nmv\r\nmvp\r\nmwanza\r\nmwera\r\nmx\r\nmya\r\nmyaceae\r\nmyacidae\r\nmyadestes\r\nmyalgia\r\nmyalgic\r\nmyanmar\r\nmyasthenia\r\nmycelium\r\nmycenae\r\nmycenaean\r\nmycenaen\r\nmycetophilidae\r\nmycobacteria\r\nmycobacteriaceae\r\nmycobacterium\r\nmycologist\r\nmycology\r\nmycomycin\r\nmycophagist\r\nmycophagy\r\nmycoplasma\r\nmycoplasmataceae\r\nmycoplasmatales\r\nmycosis\r\nmycostatin\r\nmycotoxin\r\nmycrosporidia\r\nmycteria\r\nmycteroperca\r\nmyctophidae\r\nmydriasis\r\nmydriatic\r\nmyelatelia\r\nmyelencephalon\r\nmyelic\r\nmyelin\r\nmyelinated\r\nmyeline\r\nmyelinic\r\nmyelinisation\r\nmyelinization\r\nmyelitis\r\nmyeloblast\r\nmyelocyte\r\nmyelofibrosis\r\nmyelogram\r\nmyelography\r\nmyeloid\r\nmyeloma\r\nmyelomeningocele\r\nmyg\r\nmyiasis\r\nmylanta\r\nmylar\r\nmyliobatidae\r\nmylitta\r\nmylodon\r\nmylodontid\r\nmylodontidae\r\nmym\r\nmyna\r\nmynah\r\nmyocardial\r\nmyocardiopathy\r\nmyocarditis\r\nmyocardium\r\nmyocastor\r\nmyoclonus\r\nmyodynia\r\nmyofibril\r\nmyofibrilla\r\nmyoglobin\r\nmyoglobinuria\r\nmyogram\r\nmyoid\r\nmyology\r\nmyoma\r\nmyometritis\r\nmyometrium\r\nmyomorpha\r\nmyonecrosis\r\nmyopathic\r\nmyopathy\r\nmyope\r\nmyopia\r\nmyopic\r\nmyopus\r\nmyosarcoma\r\nmyosin\r\nmyosis\r\nmyositis\r\nmyosotis\r\nmyotic\r\nmyotis\r\nmyotomy\r\nmyotonia\r\nmyotonic\r\nmyrcia\r\nmyrciaria\r\nmyrdal\r\nmyriad\r\nmyriagram\r\nmyriameter\r\nmyriametre\r\nmyriapod\r\nmyriapoda\r\nmyrica\r\nmyricaceae\r\nmyricales\r\nmyricaria\r\nmyringa\r\nmyringectomy\r\nmyringoplasty\r\nmyringotomy\r\nmyriophyllum\r\nmyristica\r\nmyristicaceae\r\nmyrmecia\r\nmyrmecobius\r\nmyrmecophaga\r\nmyrmecophagidae\r\nmyrmecophagous\r\nmyrmecophile\r\nmyrmecophilous\r\nmyrmecophyte\r\nmyrmecophytic\r\nmyrmeleon\r\nmyrmeleontidae\r\nmyrmidon\r\nmyrobalan\r\nmyroxylon\r\nmyrrh\r\nmyrrhis\r\nmyrsinaceae\r\nmyrsine\r\nmyrtaceae\r\nmyrtales\r\nmyrtillocactus\r\nmyrtle\r\nmyrtus\r\nmysidacea\r\nmysidae\r\nmysis\r\nmysoline\r\nmysophilia\r\nmysophobia\r\nmysophobic\r\nmysore\r\nmysterious\r\nmysteriously\r\nmystery\r\nmystic\r\nmystical\r\nmysticeti\r\nmysticism\r\nmystification\r\nmystified\r\nmystifier\r\nmystify\r\nmystifying\r\nmystique\r\nmyth\r\nmythic\r\nmythical\r\nmythicise\r\nmythicize\r\nmythologic\r\nmythological\r\nmythologisation\r\nmythologise\r\nmythologist\r\nmythologization\r\nmythologize\r\nmythology\r\nmytilene\r\nmytilid\r\nmytilidae\r\nmytilus\r\nmyxedema\r\nmyxine\r\nmyxinidae\r\nmyxiniformes\r\nmyxinikela\r\nmyxinoidea\r\nmyxinoidei\r\nmyxobacter\r\nmyxobacterales\r\nmyxobacteria\r\nmyxobacteriaceae\r\nmyxobacteriales\r\nmyxobacterium\r\nmyxocephalus\r\nmyxoedema\r\nmyxoma\r\nmyxomatosis\r\nmyxomycete\r\nmyxomycetes\r\nmyxomycota\r\nmyxophyceae\r\nmyxosporidia\r\nmyxosporidian\r\nmyxovirus\r\nn\r\nn'djamena\r\nn-th\r\nn.b.\r\nna\r\nna-dene\r\nnab\r\nnabalus\r\nnablus\r\nnabob\r\nnabokov\r\nnaboom\r\nnabu\r\nnabumetone\r\nnac\r\nnacelle\r\nnacho\r\nnacimiento\r\nnacre\r\nnacreous\r\nnad\r\nnada\r\nnadir\r\nnadolol\r\nnadp\r\nnaemorhedus\r\nnafcil\r\nnafcillin\r\nnafta\r\nnafud\r\nnag\r\nnaga\r\nnagami\r\nnagano\r\nnagari\r\nnagasaki\r\nnageia\r\nnagger\r\nnagging\r\nnagi\r\nnagoya\r\nnahuatl\r\nnahum\r\nnaiad\r\nnaiadaceae\r\nnaiadales\r\nnaiant\r\nnaias\r\nnaif\r\nnaiki\r\nnail\r\nnail-biting\r\nnailbrush\r\nnailer\r\nnailfile\r\nnailhead\r\nnailrod\r\nnainsook\r\nnaira\r\nnairobi\r\nnaismith\r\nnaive\r\nnaiveness\r\nnaivete\r\nnaivety\r\nnaja\r\nnajadaceae\r\nnajas\r\nnajd\r\nnaked\r\nnaked-muzzled\r\nnaked-tailed\r\nnakedness\r\nnakedwood\r\nnakuru\r\nnalchik\r\nnalfon\r\nnalline\r\nnalorphine\r\nnaloxone\r\nnaltrexone\r\nnamby-pamby\r\nname\r\nname-dropping\r\nnamed\r\nnamedrop\r\nnameko\r\nnameless\r\nnamelessness\r\nnamely\r\nnameplate\r\nnamer\r\nnames\r\nnamesake\r\nnamibia\r\nnamibian\r\nnaming\r\nnammad\r\nnammu\r\nnamoi\r\nnampa\r\nnamtar\r\nnamtaru\r\nnamur\r\nnan\r\nnan-chang\r\nnan-ning\r\nnanaimo\r\nnanak\r\nnance\r\nnancere\r\nnanchang\r\nnancy\r\nnandrolone\r\nnandu\r\nnanism\r\nnanjing\r\nnankeen\r\nnanking\r\nnanna\r\nnanning\r\nnanny\r\nnanny-goat\r\nnanocephalic\r\nnanocephaly\r\nnanogram\r\nnanometer\r\nnanometre\r\nnanomia\r\nnanophthalmos\r\nnanosecond\r\nnanotechnology\r\nnanotube\r\nnanovolt\r\nnansen\r\nnantes\r\nnanticoke\r\nnantua\r\nnantucket\r\nnanus\r\nnaomi\r\nnap\r\nnapa\r\nnapaea\r\nnapalm\r\nnape\r\nnapea\r\nnapery\r\nnaphazoline\r\nnaphtha\r\nnaphthalene\r\nnaphthol\r\nnaphthoquinone\r\nnapier\r\nnapkin\r\nnaples\r\nnapoleon\r\nnapoleonic\r\nnapoli\r\nnapped\r\nnapping\r\nnappy\r\nnaprapath\r\nnaprapathy\r\nnaprosyn\r\nnaproxen\r\nnapu\r\nnaqua\r\nnara\r\nnaranjilla\r\nnarc\r\nnarcan\r\nnarcism\r\nnarcissism\r\nnarcissist\r\nnarcissistic\r\nnarcissus\r\nnarcist\r\nnarco-state\r\nnarcolepsy\r\nnarcoleptic\r\nnarcosis\r\nnarcoterrorism\r\nnarcotic\r\nnarcotise\r\nnarcotised\r\nnarcotising\r\nnarcotize\r\nnarcotized\r\nnarcotizing\r\nnarcotraffic\r\nnard\r\nnardil\r\nnardo\r\nnardoo\r\nnarghile\r\nnargileh\r\nnarial\r\nnaris\r\nnark\r\nnarrate\r\nnarration\r\nnarrative\r\nnarrator\r\nnarrow\r\nnarrow-bodied\r\nnarrow-body\r\nnarrow-minded\r\nnarrow-mindedly\r\nnarrow-mindedness\r\nnarrow-mouthed\r\nnarrowboat\r\nnarrowed\r\nnarrowing\r\nnarrowly\r\nnarrowness\r\nnarthecium\r\nnarthex\r\nnarwal\r\nnarwhal\r\nnarwhale\r\nnary\r\nnasa\r\nnasal\r\nnasale\r\nnasalis\r\nnasalisation\r\nnasalise\r\nnasality\r\nnasalization\r\nnasalize\r\nnascence\r\nnascency\r\nnascent\r\nnasdaq\r\nnaseby\r\nnash\r\nnashville\r\nnasion\r\nnasopharyngeal\r\nnasopharynx\r\nnassau\r\nnasser\r\nnast\r\nnastily\r\nnastiness\r\nnasturtium\r\nnasty\r\nnasua\r\nnatal\r\nnatality\r\nnatantia\r\nnatation\r\nnatator\r\nnatatorium\r\nnatchez\r\nnates\r\nnaticidae\r\nnation\r\nnational\r\nnationalisation\r\nnationalise\r\nnationalism\r\nnationalist\r\nnationalistic\r\nnationality\r\nnationalization\r\nnationalize\r\nnationally\r\nnationhood\r\nnationwide\r\nnative\r\nnative-born\r\nnativeness\r\nnativism\r\nnativist\r\nnativistic\r\nnativity\r\nnato\r\nnatriuresis\r\nnatriuretic\r\nnatrix\r\nnatrolite\r\nnatta\r\nnatter\r\nnatterjack\r\nnattiness\r\nnatty\r\nnatural\r\nnaturalisation\r\nnaturalise\r\nnaturalised\r\nnaturalism\r\nnaturalist\r\nnaturalistic\r\nnaturalization\r\nnaturalize\r\nnaturalized\r\nnaturally\r\nnaturalness\r\nnature\r\nnaturism\r\nnaturist\r\nnaturistic\r\nnaturopath\r\nnaturopathy\r\nnauch\r\nnauclea\r\nnaucrates\r\nnaught\r\nnaughtily\r\nnaughtiness\r\nnaughty\r\nnaumachia\r\nnaumachy\r\nnaupathia\r\nnauru\r\nnauruan\r\nnausea\r\nnauseant\r\nnauseate\r\nnauseated\r\nnauseating\r\nnauseatingness\r\nnauseous\r\nnautch\r\nnautical\r\nnautilidae\r\nnautilus\r\nnavaho\r\nnavajo\r\nnaval\r\nnavane\r\nnavarino\r\nnave\r\nnavel\r\nnavicular\r\nnavigability\r\nnavigable\r\nnavigate\r\nnavigation\r\nnavigational\r\nnavigator\r\nnavratilova\r\nnavvy\r\nnavy\r\nnawab\r\nnawcwpns\r\nnay\r\nnaysayer\r\nnaysaying\r\nnazarene\r\nnazareth\r\nnaze\r\nnazi\r\nnazification\r\nnazify\r\nnaziism\r\nnazimova\r\nnazism\r\nnb\r\nnbe\r\nnbw\r\nnc\r\nncdc\r\nnd\r\nndebele\r\nndjamena\r\nne\r\nne'er\r\nne'er-do-well\r\nneandertal\r\nneanderthal\r\nneanderthalian\r\nneap\r\nneapolitan\r\nnear\r\nnear-blind\r\nnearby\r\nnearer\r\nnearest\r\nnearly\r\nnearness\r\nnearside\r\nnearsighted\r\nnearsightedness\r\nneat\r\nneaten\r\nneatness\r\nneb\r\nnebbech\r\nnebbish\r\nnebcin\r\nnebe\r\nnebiim\r\nnebn\r\nnebo\r\nnebraska\r\nnebraskan\r\nnebuchadnezzar\r\nnebuchadrezzar\r\nnebula\r\nnebular\r\nnebule\r\nnebuliser\r\nnebulizer\r\nnebulose\r\nnebulous\r\nnec\r\nnecessarily\r\nnecessary\r\nnecessitarian\r\nnecessitate\r\nnecessitous\r\nnecessity\r\nneck\r\nneck-deep\r\nneckar\r\nneckband\r\nneckcloth\r\nnecked\r\nnecker\r\nneckerchief\r\nnecking\r\nnecklace\r\nneckless\r\nnecklet\r\nnecklike\r\nneckline\r\nneckpiece\r\nnecktie\r\nneckwear\r\nnecrobiosis\r\nnecrology\r\nnecrolysis\r\nnecromancer\r\nnecromancy\r\nnecromania\r\nnecromantic\r\nnecromantical\r\nnecrophagia\r\nnecrophagy\r\nnecrophilia\r\nnecrophilism\r\nnecropolis\r\nnecropsy\r\nnecrose\r\nnecrosis\r\nnecrotic\r\nnectar\r\nnectar-rich\r\nnectariferous\r\nnectarine\r\nnectarous\r\nnectary\r\nnecturus\r\nnederland\r\nnee\r\nneed\r\nneeded\r\nneeder\r\nneedful\r\nneedfully\r\nneediness\r\nneedle\r\nneedle-bush\r\nneedle-shaped\r\nneedle-wood\r\nneedlebush\r\nneedlecraft\r\nneedled\r\nneedlefish\r\nneedlelike\r\nneedlepoint\r\nneedless\r\nneedlewoman\r\nneedlewood\r\nneedlework\r\nneedleworker\r\nneeds\r\nneedy\r\nneel\r\nneem\r\nneencephalon\r\nnefarious\r\nnefariousness\r\nnefazodone\r\nnefertiti\r\nnefud\r\nnegaprion\r\nnegate\r\nnegation\r\nnegative\r\nnegativeness\r\nnegativism\r\nnegativist\r\nnegativity\r\nnegatron\r\nnegev\r\nneggram\r\nneglect\r\nneglected\r\nneglecter\r\nneglectful\r\nneglectfulness\r\nneglige\r\nnegligee\r\nnegligence\r\nnegligent\r\nnegligible\r\nnegociate\r\nnegotiable\r\nnegotiant\r\nnegotiate\r\nnegotiation\r\nnegotiator\r\nnegotiatress\r\nnegotiatrix\r\nnegress\r\nnegritude\r\nnegro\r\nnegroid\r\nnegus\r\nnehemiah\r\nnehru\r\nneigh\r\nneighbor\r\nneighborhood\r\nneighboring\r\nneighborliness\r\nneighborly\r\nneighbour\r\nneighbourhood\r\nneighbouring\r\nneighbourliness\r\nneighbourly\r\nnejd\r\nnekton\r\nnelfinavir\r\nnelson\r\nnelumbo\r\nnelumbonaceae\r\nnematocera\r\nnematoda\r\nnematode\r\nnembutal\r\nnemea\r\nnemertea\r\nnemertean\r\nnemertina\r\nnemertine\r\nnemesis\r\nnemophila\r\nnenets\r\nnentsi\r\nnentsy\r\nneo\r\nneo-darwinian\r\nneo-darwinism\r\nneo-lamarckian\r\nneo-lamarckism\r\nneo-latin\r\nneobiotic\r\nneoceratodus\r\nneoclassic\r\nneoclassical\r\nneoclassicism\r\nneoclassicist\r\nneoclassicistic\r\nneocolonialism\r\nneocon\r\nneoconservatism\r\nneoconservative\r\nneocortex\r\nneocortical\r\nneodymium\r\nneoencephalon\r\nneoexpressionism\r\nneofiber\r\nneohygrophorus\r\nneolentinus\r\nneoliberal\r\nneoliberalism\r\nneolith\r\nneolithic\r\nneologism\r\nneologist\r\nneology\r\nneomycin\r\nneomys\r\nneon\r\nneonatal\r\nneonate\r\nneonatology\r\nneopallium\r\nneophobia\r\nneophron\r\nneophyte\r\nneoplasia\r\nneoplasm\r\nneoplastic\r\nneoplatonism\r\nneoplatonist\r\nneopolitan\r\nneoprene\r\nneoromanticism\r\nneosho\r\nneosporin\r\nneostigmine\r\nneotenic\r\nneotenous\r\nneoteny\r\nneotoma\r\nneotony\r\nnepa\r\nnepal\r\nnepalese\r\nnepali\r\nnepenthaceae\r\nnepenthes\r\nnepeta\r\nnepheline\r\nnephelinite\r\nnephelite\r\nnephelium\r\nnephew\r\nnephology\r\nnephoscope\r\nnephralgia\r\nnephrectomy\r\nnephrite\r\nnephritic\r\nnephritis\r\nnephroangiosclerosis\r\nnephroblastoma\r\nnephrocalcinosis\r\nnephrolepis\r\nnephrolith\r\nnephrolithiasis\r\nnephrology\r\nnephron\r\nnephropathy\r\nnephrops\r\nnephropsidae\r\nnephroptosia\r\nnephroptosis\r\nnephrosclerosis\r\nnephrosis\r\nnephrotomy\r\nnephrotoxic\r\nnephrotoxin\r\nnephthys\r\nnephthytis\r\nnepidae\r\nnepotism\r\nnepotist\r\nneptune\r\nneptunium\r\nnerd\r\nnereid\r\nnereus\r\nnergal\r\nnerita\r\nneritic\r\nneritid\r\nneritidae\r\nneritina\r\nnerium\r\nnernst\r\nnero\r\nnerodia\r\nnerthus\r\nneruda\r\nnerva\r\nnerve\r\nnerve-racking\r\nnerve-wracking\r\nnerveless\r\nnervelessly\r\nnervelessness\r\nnerveroot\r\nnerves\r\nnervi\r\nnervily\r\nnervous\r\nnervousness\r\nnervure\r\nnervus\r\nnervy\r\nnescience\r\nnescient\r\nnesokia\r\nness\r\nnesselrode\r\nnessie\r\nnest\r\nnester\r\nnestle\r\nnestled\r\nnestling\r\nnestor\r\nnestorian\r\nnestorianism\r\nnestorius\r\nnet\r\nnetball\r\nnether\r\nnetherlander\r\nnetherlands\r\nnethermost\r\nnetherworld\r\nnetkeeper\r\nnetlike\r\nnetmail\r\nnetminder\r\nnetscape\r\nnett\r\nnetted\r\nnetting\r\nnettle\r\nnettled\r\nnettlesome\r\nnetwork\r\nnetworklike\r\nneumann\r\nneural\r\nneuralgia\r\nneuralgic\r\nneuralgy\r\nneurasthenia\r\nneurasthenic\r\nneurectomy\r\nneurilemma\r\nneurilemoma\r\nneurinoma\r\nneuritis\r\nneuroanatomic\r\nneuroanatomical\r\nneuroanatomy\r\nneurobiological\r\nneurobiologist\r\nneurobiology\r\nneuroblast\r\nneuroblastoma\r\nneurochemical\r\nneurodermatitis\r\nneuroendocrine\r\nneuroepithelioma\r\nneuroepithelium\r\nneuroethics\r\nneurofibroma\r\nneurofibromatosis\r\nneurogenesis\r\nneurogenic\r\nneuroglia\r\nneurogliacyte\r\nneuroglial\r\nneurohormone\r\nneurohypophysis\r\nneurolemma\r\nneuroleptic\r\nneurolinguist\r\nneurolinguistics\r\nneurologic\r\nneurological\r\nneurologist\r\nneurology\r\nneurolysin\r\nneuroma\r\nneuromatous\r\nneuromotor\r\nneuromuscular\r\nneuron\r\nneuronal\r\nneuronic\r\nneuropathy\r\nneurophysiological\r\nneurophysiology\r\nneuroplasty\r\nneuropsychiatric\r\nneuropsychiatry\r\nneuropsychological\r\nneuropsychology\r\nneuroptera\r\nneuropteran\r\nneuropteron\r\nneurosarcoma\r\nneuroscience\r\nneuroscientist\r\nneurosis\r\nneurospora\r\nneurosurgeon\r\nneurosurgery\r\nneurosyphilis\r\nneurotic\r\nneuroticism\r\nneurotoxic\r\nneurotoxin\r\nneurotransmitter\r\nneurotrichus\r\nneurotropic\r\nneurotropism\r\nneuter\r\nneutered\r\nneutering\r\nneutral\r\nneutral-colored\r\nneutral-coloured\r\nneutralisation\r\nneutralise\r\nneutralised\r\nneutralism\r\nneutralist\r\nneutrality\r\nneutralization\r\nneutralize\r\nneutralized\r\nneutrino\r\nneutron\r\nneutropenia\r\nneutrophil\r\nneutrophile\r\nneva\r\nnevada\r\nnevadan\r\nneve\r\nnevelson\r\nnever\r\nnever-ending\r\nnever-never\r\nnever-say-die\r\nnevermore\r\nnevertheless\r\nnevirapine\r\nnevis\r\nnevus\r\nnew\r\nnew-made\r\nnew-mown\r\nnew-sprung\r\nnewari\r\nnewark\r\nnewbie\r\nnewborn\r\nnewburgh\r\nnewcastle\r\nnewcastle-upon-tyne\r\nnewcomb\r\nnewcomer\r\nnewel\r\nnewfangled\r\nnewfound\r\nnewfoundland\r\nnewgate\r\nnewly\r\nnewlywed\r\nnewman\r\nnewmarket\r\nnewness\r\nnewport\r\nnews\r\nnewsagent\r\nnewsboy\r\nnewsbreak\r\nnewscast\r\nnewscaster\r\nnewsdealer\r\nnewsflash\r\nnewsless\r\nnewsletter\r\nnewsman\r\nnewsmonger\r\nnewspaper\r\nnewspapering\r\nnewspaperman\r\nnewspaperwoman\r\nnewspeak\r\nnewsperson\r\nnewsprint\r\nnewsreader\r\nnewsreel\r\nnewsroom\r\nnewssheet\r\nnewsstand\r\nnewsvendor\r\nnewswoman\r\nnewsworthiness\r\nnewsworthy\r\nnewswriter\r\nnewsy\r\nnewt\r\nnewton\r\nnewtonian\r\nnext\r\nnext-to-last\r\nnexus\r\nney\r\nng\r\nnga\r\nnganasan\r\nngb\r\nngf\r\nngo\r\nngu\r\nngultrum\r\nnguni\r\nngwee\r\nnh\r\nni\r\nni-hard\r\nni-resist\r\nniacin\r\nniagara\r\nniamey\r\nnib\r\nnibbed\r\nnibble\r\nnibbler\r\nnibelung\r\nnibelungenlied\r\nniblick\r\nnicad\r\nnicaea\r\nnicaean\r\nnicandra\r\nnicaragua\r\nnicaraguan\r\nnice\r\nnicene\r\nniceness\r\nnicety\r\nniche\r\nnicholas\r\nnichrome\r\nnick\r\nnickel\r\nnickel-and-dime\r\nnickelodeon\r\nnicker\r\nnicklaus\r\nnicknack\r\nnickname\r\nnicolson\r\nnicosia\r\nnicotiana\r\nnicotine\r\nnictate\r\nnictation\r\nnictitate\r\nnictitation\r\nnicu\r\nnidaros\r\nnidation\r\nniddm\r\nnidicolous\r\nnidifugous\r\nnidularia\r\nnidulariaceae\r\nnidulariales\r\nnidus\r\nniebuhr\r\nniece\r\nnielson\r\nnierembergia\r\nnietzsche\r\nnifedipine\r\nniff\r\nniffy\r\nnifty\r\nnigella\r\nniger\r\nniger-congo\r\nniger-kordofanian\r\nnigeria\r\nnigerian\r\nnigerien\r\nnigga\r\nniggard\r\nniggardliness\r\nniggardly\r\nniggardness\r\nnigger\r\nniggle\r\nniggler\r\nniggling\r\nnigh\r\nnigher\r\nnighest\r\nnight\r\nnight-light\r\nnight-line\r\nnight-robe\r\nnight-sight\r\nnight-stop\r\nnightbird\r\nnightcap\r\nnightclothes\r\nnightclub\r\nnightcrawler\r\nnightdress\r\nnighted\r\nnightfall\r\nnightgown\r\nnighthawk\r\nnightie\r\nnightingale\r\nnightjar\r\nnightlife\r\nnightlong\r\nnightly\r\nnightmare\r\nnightmarish\r\nnightrider\r\nnightshade\r\nnightshirt\r\nnightspot\r\nnightstick\r\nnighttime\r\nnightwalker\r\nnightwear\r\nnightwork\r\nnigra\r\nnigrify\r\nnigroporus\r\nnih\r\nnihau\r\nnihil\r\nnihilism\r\nnihilist\r\nnihilistic\r\nnihility\r\nnihon\r\nnij\r\nnijinsky\r\nnijmegen\r\nnike\r\nnil\r\nnile\r\nnilgai\r\nnilo-saharan\r\nnilotic\r\nnilpotent\r\nnilsson\r\nnim\r\nnimble\r\nnimble-fingered\r\nnimbleness\r\nnimblewill\r\nnimbly\r\nnimbus\r\nnimby\r\nnimiety\r\nniminy-piminy\r\nnimitz\r\nnimravus\r\nnimrod\r\nnin-sin\r\nnina\r\nnincompoop\r\nnine\r\nnine-fold\r\nnine-membered\r\nnine-sided\r\nnine-spot\r\nninefold\r\nninepence\r\nninepenny\r\nninepin\r\nninepins\r\nniner\r\nnineteen\r\nnineteenth\r\nnineties\r\nninetieth\r\nninety\r\nninety-eight\r\nninety-fifth\r\nninety-five\r\nninety-four\r\nninety-nine\r\nninety-one\r\nninety-seven\r\nninety-six\r\nninety-three\r\nninety-two\r\nnineveh\r\nningal\r\nningirsu\r\nningishzida\r\nninhursag\r\nninib\r\nninigi\r\nninigino-mikoto\r\nninja\r\nninjitsu\r\nninjutsu\r\nninkharsag\r\nninkhursag\r\nninny\r\nninon\r\nninth\r\nnintoo\r\nnintu\r\nninurta\r\nniobe\r\nniobite\r\nniobium\r\nniobrara\r\nnip\r\nnipa\r\nnipper\r\nnipping\r\nnipple\r\nnipple-shaped\r\nnippon\r\nnipponese\r\nnippy\r\nnipr\r\nniqaabi\r\nniqab\r\nnirvana\r\nnisan\r\nnisi\r\nnissan\r\nnist\r\nnisus\r\nnit\r\nnitella\r\nniter\r\nnitid\r\nnitpick\r\nnitpicker\r\nnitpicking\r\nnitramine\r\nnitrate\r\nnitrazepam\r\nnitre\r\nnitric\r\nnitride\r\nnitrification\r\nnitrify\r\nnitril\r\nnitrile\r\nnitrite\r\nnitrobacter\r\nnitrobacteria\r\nnitrobacteriaceae\r\nnitrobacterium\r\nnitrobenzene\r\nnitrocalcite\r\nnitrocellulose\r\nnitrochloroform\r\nnitrochloromethane\r\nnitrocotton\r\nnitrofuran\r\nnitrofurantoin\r\nnitrogen\r\nnitrogen-bearing\r\nnitrogen-fixing\r\nnitrogenase\r\nnitrogenise\r\nnitrogenize\r\nnitrogenous\r\nnitroglycerin\r\nnitroglycerine\r\nnitrosobacteria\r\nnitrosomonas\r\nnitrospan\r\nnitrostat\r\nnitrous\r\nnitty-gritty\r\nnitweed\r\nnitwit\r\nnitwitted\r\nnivose\r\nnix\r\nnixon\r\nnj\r\nnjord\r\nnjorth\r\nnlp\r\nnlrb\r\nnm\r\nnmr\r\nnne\r\nnnrti\r\nnnw\r\nno\r\nno-account\r\nno-brainer\r\nno-count\r\nno-frills\r\nno-go\r\nno-goal\r\nno-good\r\nno-hit\r\nno-hitter\r\nno-nonsense\r\nno-see-um\r\nno-show\r\nno-trump\r\nno-win\r\nno.\r\nnoaa\r\nnoachian\r\nnoah\r\nnob\r\nnobble\r\nnobel\r\nnobelist\r\nnobelium\r\nnobility\r\nnoble\r\nnoble-minded\r\nnoble-mindedness\r\nnobleman\r\nnobleness\r\nnoblesse\r\nnoblewoman\r\nnobody\r\nnoc\r\nnocent\r\nnociceptive\r\nnock\r\nnoctambulation\r\nnoctambulism\r\nnoctambulist\r\nnoctiluca\r\nnoctilucent\r\nnoctua\r\nnoctuid\r\nnoctuidae\r\nnocturia\r\nnocturnal\r\nnocturne\r\nnod\r\nnodding\r\nnoddle\r\nnode\r\nnodular\r\nnodulated\r\nnodule\r\nnoduled\r\nnodulose\r\nnoel\r\nnoemi\r\nnoesis\r\nnoether\r\nnoetic\r\nnog\r\nnogales\r\nnoggin\r\nnogging\r\nnoguchi\r\nnohow\r\nnoise\r\nnoiseless\r\nnoiselessly\r\nnoiselessness\r\nnoisemaker\r\nnoisily\r\nnoisiness\r\nnoisome\r\nnoisomeness\r\nnoisy\r\nnoli-me-tangere\r\nnolina\r\nnoma\r\nnomad\r\nnomadic\r\nnombril\r\nnome\r\nnomenclature\r\nnomenklatura\r\nnomia\r\nnominal\r\nnominalism\r\nnominalist\r\nnominalistic\r\nnominate\r\nnominated\r\nnomination\r\nnominative\r\nnominator\r\nnominee\r\nnomogram\r\nnomograph\r\nnomothetic\r\nnon\r\nnon-aromatic\r\nnon-automatic\r\nnon-buoyant\r\nnon-catholic\r\nnon-circular\r\nnon-conducting\r\nnon-discrimination\r\nnon-elective\r\nnon-engagement\r\nnon-finite\r\nnon-invertible\r\nnon-involvement\r\nnon-issue\r\nnon-jew\r\nnon-living\r\nnon-metric\r\nnon-miscible\r\nnon-negotiable\r\nnon-paying\r\nnon-poisonous\r\nnon-profit-making\r\nnon-proliferation\r\nnon-resinous\r\nnon-resiny\r\nnon-resistant\r\nnon-slave\r\nnon-u\r\nnon-ugric\r\nnon-verbally\r\nnon-water-soluble\r\nnon-white\r\nnon-zero\r\nnona\r\nnonabsorbency\r\nnonabsorbent\r\nnonabsorptive\r\nnonacceptance\r\nnonaccomplishment\r\nnonachievement\r\nnonachiever\r\nnonadaptive\r\nnonaddictive\r\nnonadhesive\r\nnonadjacent\r\nnonadsorbent\r\nnonadsorptive\r\nnonage\r\nnonaged\r\nnonagenarian\r\nnonaggression\r\nnonaggressive\r\nnonagon\r\nnonalcoholic\r\nnonaligned\r\nnonalignment\r\nnonalinement\r\nnonallele\r\nnonappearance\r\nnonappointive\r\nnonarbitrable\r\nnonarbitrary\r\nnonarboreal\r\nnonassertive\r\nnonassociative\r\nnonastringent\r\nnonattendance\r\nnonattender\r\nnonautonomous\r\nnonbearing\r\nnonbeing\r\nnonbeliever\r\nnonbelligerent\r\nnoncaloric\r\nnoncandidate\r\nnoncarbonated\r\nnoncausal\r\nnoncausative\r\nnonce\r\nnoncellular\r\nnonchalance\r\nnonchalant\r\nnonchalantly\r\nnonchristian\r\nnonchurchgoing\r\nnoncitizen\r\nnoncivilised\r\nnoncivilized\r\nnonclassical\r\nnoncollapsable\r\nnoncollapsible\r\nnoncolumned\r\nnoncom\r\nnoncombatant\r\nnoncombinative\r\nnoncombining\r\nnoncombustible\r\nnoncommercial\r\nnoncommissioned\r\nnoncommittal\r\nnoncommunicable\r\nnoncompetitive\r\nnoncompetitively\r\nnoncompliance\r\nnoncompliant\r\nnoncomprehensive\r\nnoncomprehensively\r\nnonconcentric\r\nnonconducting\r\nnonconductive\r\nnonconductor\r\nnonconformance\r\nnonconforming\r\nnonconformism\r\nnonconformist\r\nnonconformity\r\nnonconscious\r\nnoncontagious\r\nnoncontentious\r\nnoncontinuous\r\nnoncontroversial\r\nnonconvergent\r\nnoncritical\r\nnoncrucial\r\nnoncrystalline\r\nnoncurrent\r\nnoncyclic\r\nnoncyclical\r\nnondeductible\r\nnondenominational\r\nnondescript\r\nnondevelopment\r\nnondigestible\r\nnondisjunction\r\nnondisposable\r\nnondrinker\r\nnondriver\r\nnone\r\nnonechoic\r\nnoneffervescent\r\nnonelected\r\nnonelective\r\nnonenterprising\r\nnonentity\r\nnonenzymatic\r\nnonequivalence\r\nnonequivalent\r\nnones\r\nnonessential\r\nnonesuch\r\nnonetheless\r\nnonevent\r\nnonexempt\r\nnonexistence\r\nnonexistent\r\nnonexplorative\r\nnonexploratory\r\nnonexplosive\r\nnonextant\r\nnonextensile\r\nnonfat\r\nnonfatal\r\nnonfeasance\r\nnonfiction\r\nnonfictional\r\nnonfigurative\r\nnonfinancial\r\nnonfissile\r\nnonfissionable\r\nnonflammable\r\nnonflavored\r\nnonflavoured\r\nnonflowering\r\nnonfunctional\r\nnonglutinous\r\nnongranular\r\nnongregarious\r\nnonhairy\r\nnonharmonic\r\nnonhereditary\r\nnonheritable\r\nnonhierarchic\r\nnonhierarchical\r\nnonhuman\r\nnonimitative\r\nnonimmune\r\nnonindulgence\r\nnonindulgent\r\nnonindustrial\r\nnoninfectious\r\nnoninflammatory\r\nnoninheritable\r\nnoninstitutional\r\nnoninstitutionalised\r\nnoninstitutionalized\r\nnonintegrated\r\nnonintellectual\r\nnoninterchangeable\r\nnoninterference\r\nnonintersecting\r\nnonintervention\r\nnoninvasive\r\nnonionic\r\nnonionised\r\nnonionized\r\nnonjudgmental\r\nnonkosher\r\nnonleaded\r\nnonlegal\r\nnonlethal\r\nnonlexical\r\nnonlinear\r\nnonlinguistic\r\nnonliteral\r\nnonliterary\r\nnonliterate\r\nnonliving\r\nnonmagnetic\r\nnonmalignant\r\nnonmandatory\r\nnonmaterial\r\nnonmeaningful\r\nnonmechanical\r\nnonmechanistic\r\nnonmedicinal\r\nnonmember\r\nnonmetal\r\nnonmetallic\r\nnonmetamorphic\r\nnonmigratory\r\nnonmilitary\r\nnonmodern\r\nnonmonotonic\r\nnonmoral\r\nnonmotile\r\nnonmoving\r\nnonmusical\r\nnonnative\r\nnonnatural\r\nnonnegative\r\nnonnomadic\r\nnonnormative\r\nnonobjective\r\nnonobligatory\r\nnonobservance\r\nnonobservant\r\nnonoccurrence\r\nnonopening\r\nnonoperational\r\nnonoscillatory\r\nnonparallel\r\nnonparametric\r\nnonparasitic\r\nnonpareil\r\nnonparticipant\r\nnonparticipation\r\nnonparticulate\r\nnonpartisan\r\nnonpartisanship\r\nnonpartizan\r\nnonpasserine\r\nnonpayment\r\nnonperformance\r\nnonperiodic\r\nnonperson\r\nnonpersonal\r\nnonphilosophic\r\nnonphilosophical\r\nnonphotosynthetic\r\nnonphysical\r\nnonplus\r\nnonplused\r\nnonplussed\r\nnonpoisonous\r\nnonpolar\r\nnonpolitical\r\nnonporous\r\nnonpregnant\r\nnonprehensile\r\nnonprescription\r\nnonproductive\r\nnonprofessional\r\nnonprofit\r\nnonprognosticative\r\nnonprogressive\r\nnonproliferation\r\nnonproprietary\r\nnonprotractile\r\nnonpsychoactive\r\nnonpublic\r\nnonpurulent\r\nnonracial\r\nnonracist\r\nnonradioactive\r\nnonrandom\r\nnonrational\r\nnonreader\r\nnonreciprocal\r\nnonreciprocating\r\nnonrecreational\r\nnonreflecting\r\nnonreflective\r\nnonremittal\r\nnonrenewable\r\nnonrepetitive\r\nnonrepresentational\r\nnonrepresentative\r\nnonresident\r\nnonresidential\r\nnonresilient\r\nnonresinous\r\nnonresiny\r\nnonresistance\r\nnonresistant\r\nnonresonant\r\nnonrestrictive\r\nnonreticulate\r\nnonretractable\r\nnonretractile\r\nnonreturnable\r\nnonreversible\r\nnonrhythmic\r\nnonrigid\r\nnonruminant\r\nnonsectarian\r\nnonsegmental\r\nnonsegregated\r\nnonsense\r\nnonsensical\r\nnonsensicality\r\nnonsensitive\r\nnonsexual\r\nnonsignificant\r\nnonskid\r\nnonslip\r\nnonslippery\r\nnonsmoker\r\nnonsocial\r\nnonsovereign\r\nnonspatial\r\nnonspeaking\r\nnonspecific\r\nnonspherical\r\nnonstandard\r\nnonstarter\r\nnonsteroid\r\nnonsteroidal\r\nnonstick\r\nnonstop\r\nnonstructural\r\nnonsubjective\r\nnonsubmergible\r\nnonsubmersible\r\nnonsuch\r\nnonsuppurative\r\nnonsurgical\r\nnonsweet\r\nnonsyllabic\r\nnonsymbiotic\r\nnonsynchronous\r\nnonsynthetic\r\nnontaxable\r\nnontechnical\r\nnontelescopic\r\nnontelescoping\r\nnonterritorial\r\nnonthermal\r\nnontoxic\r\nnontraditional\r\nnontransferable\r\nnontranslational\r\nnontransmissible\r\nnontricyclic\r\nnonturbulent\r\nnonuniform\r\nnonuniformity\r\nnonunion\r\nnonunionised\r\nnonunionized\r\nnonuple\r\nnonvenomous\r\nnonverbal\r\nnonverbally\r\nnonviable\r\nnonviolence\r\nnonviolent\r\nnonviolently\r\nnonviscid\r\nnonvisual\r\nnonvolatile\r\nnonvolatilisable\r\nnonvolatilizable\r\nnonvoluntary\r\nnonwashable\r\nnonwoody\r\nnonworker\r\nnoodle\r\nnook\r\nnookie\r\nnooky\r\nnoon\r\nnoonday\r\nnoontide\r\nnoose\r\nnootka\r\nnopal\r\nnopalea\r\nnor'-east\r\nnor'-nor'-east\r\nnor'-nor'-west\r\nnor'-west\r\nnor-q-d\r\nnoradrenaline\r\nnord-pas-de-calais\r\nnordic\r\nnoreaster\r\nnoreg\r\nnorepinephrine\r\nnorethandrolone\r\nnorethindrone\r\nnorethynodrel\r\nnorflex\r\nnorfolk\r\nnorge\r\nnorgestrel\r\nnoria\r\nnorinyl\r\nnorlestrin\r\nnorlutin\r\nnorm\r\nnorma\r\nnormal\r\nnormalcy\r\nnormalisation\r\nnormalise\r\nnormaliser\r\nnormality\r\nnormalization\r\nnormalize\r\nnormalizer\r\nnormally\r\nnorman\r\nnorman-french\r\nnormandie\r\nnormandy\r\nnormative\r\nnormodyne\r\nnormotensive\r\nnormothermia\r\nnorn\r\nnorris\r\nnorrish\r\nnorse\r\nnorseman\r\nnorth\r\nnorth-central\r\nnorth-east\r\nnorth-northeast\r\nnorth-northwest\r\nnorth-polar\r\nnorth-west\r\nnorthampton\r\nnorthamptonshire\r\nnorthbound\r\nnortheast\r\nnortheaster\r\nnortheasterly\r\nnortheastern\r\nnortheastward\r\nnortheastwardly\r\nnorther\r\nnortherly\r\nnorthern\r\nnortherner\r\nnorthernmost\r\nnorthernness\r\nnorthland\r\nnorthman\r\nnorthmost\r\nnorthrop\r\nnorthumberland\r\nnorthumbria\r\nnorthward\r\nnorthwards\r\nnorthwest\r\nnorthwester\r\nnorthwesterly\r\nnorthwestern\r\nnorthwestward\r\nnorthwestwardly\r\nnortriptyline\r\nnoruz\r\nnorvasc\r\nnorvir\r\nnorway\r\nnorwegian\r\nnose\r\nnosebag\r\nnosebleed\r\nnosecount\r\nnosed\r\nnosedive\r\nnosegay\r\nnoseless\r\nnosepiece\r\nnosewheel\r\nnosey\r\nnosey-parker\r\nnosh\r\nnosh-up\r\nnosher\r\nnosiness\r\nnosocomial\r\nnosology\r\nnostalgia\r\nnostalgic\r\nnostoc\r\nnostocaceae\r\nnostradamus\r\nnostril\r\nnostrum\r\nnosy\r\nnosy-parker\r\nnot\r\nnot-for-profit\r\nnotability\r\nnotable\r\nnotarise\r\nnotarize\r\nnotary\r\nnotate\r\nnotation\r\nnotch\r\nnotched\r\nnote\r\nnotebook\r\nnotecase\r\nnotechis\r\nnoted\r\nnotemigonus\r\nnotepad\r\nnotepaper\r\nnoteworthy\r\nnothing\r\nnothingness\r\nnothings\r\nnothofagus\r\nnothosaur\r\nnothosauria\r\nnotice\r\nnoticeability\r\nnoticeable\r\nnoticeableness\r\nnoticeably\r\nnoticed\r\nnoticer\r\nnotification\r\nnotify\r\nnotion\r\nnotional\r\nnotochord\r\nnotomys\r\nnotonecta\r\nnotonectidae\r\nnotophthalmus\r\nnotoriety\r\nnotorious\r\nnotornis\r\nnotoryctidae\r\nnotoryctus\r\nnotostraca\r\nnotropis\r\nnotturno\r\nnotwithstanding\r\nnouakchott\r\nnougat\r\nnought\r\nnoumenon\r\nnoun\r\nnourish\r\nnourished\r\nnourishing\r\nnourishment\r\nnous\r\nnouveau-riche\r\nnov\r\nnov-esperanto\r\nnov-latin\r\nnova\r\nnovate\r\nnovation\r\nnovel\r\nnovelette\r\nnovelisation\r\nnovelise\r\nnovelist\r\nnovelization\r\nnovelize\r\nnovella\r\nnovelty\r\nnovember\r\nnovena\r\nnovgorod\r\nnovial\r\nnovice\r\nnoviciate\r\nnovillada\r\nnovillero\r\nnovitiate\r\nnovobiocin\r\nnovocain\r\nnovocaine\r\nnovosibirsk\r\nnow\r\nnowadays\r\nnowhere\r\nnowise\r\nnowness\r\nnowrooz\r\nnowruz\r\nnox\r\nnoxious\r\nnoxiously\r\nnoxiousness\r\nnoxiptiline\r\nnoyes\r\nnozzle\r\nnp\r\nnpa\r\nnpc\r\nnra\r\nnrc\r\nnrem\r\nnrl\r\nnrna\r\nnro\r\nnrti\r\nnsa\r\nnsaid\r\nnsc\r\nnsf\r\nnsu\r\nnsw\r\nnswc\r\nnt\r\nnth\r\nntis\r\nnu\r\nnuance\r\nnub\r\nnubbin\r\nnubbiness\r\nnubble\r\nnubbly\r\nnubby\r\nnubia\r\nnubian\r\nnubile\r\nnucellus\r\nnucha\r\nnucifraga\r\nnuclear\r\nnuclease\r\nnucleate\r\nnucleated\r\nnucleole\r\nnucleolus\r\nnucleon\r\nnucleonics\r\nnucleoplasm\r\nnucleoprotein\r\nnucleoside\r\nnucleosynthesis\r\nnucleotide\r\nnucleus\r\nnuda\r\nnude\r\nnudeness\r\nnudge\r\nnudger\r\nnudibranch\r\nnudibranchia\r\nnudism\r\nnudist\r\nnudity\r\nnudnick\r\nnudnik\r\nnuffield\r\nnugatory\r\nnugget\r\nnuisance\r\nnuke\r\nnull\r\nnullah\r\nnullification\r\nnullified\r\nnullifier\r\nnullify\r\nnullipara\r\nnullity\r\nnumb\r\nnumbat\r\nnumber\r\nnumbering\r\nnumberless\r\nnumberplate\r\nnumbers\r\nnumbfish\r\nnumbing\r\nnumbly\r\nnumbness\r\nnumdah\r\nnumen\r\nnumenius\r\nnumerable\r\nnumeracy\r\nnumeral\r\nnumerate\r\nnumeration\r\nnumerator\r\nnumeric\r\nnumerical\r\nnumerological\r\nnumerologist\r\nnumerology\r\nnumerosity\r\nnumerous\r\nnumerousness\r\nnumida\r\nnumidia\r\nnumidian\r\nnumididae\r\nnumidinae\r\nnuminous\r\nnumismatics\r\nnumismatist\r\nnumismatologist\r\nnumismatology\r\nnummulite\r\nnummulitidae\r\nnumskull\r\nnun\r\nnunavut\r\nnuncio\r\nnung\r\nnunnery\r\nnuphar\r\nnuprin\r\nnuptial\r\nnuptials\r\nnuptse\r\nnuremberg\r\nnureyev\r\nnurnberg\r\nnurse\r\nnurse-midwife\r\nnursed\r\nnurseling\r\nnursemaid\r\nnurser\r\nnursery\r\nnurseryman\r\nnursing\r\nnursling\r\nnurtural\r\nnurturance\r\nnurturant\r\nnurture\r\nnusku\r\nnut\r\nnut-bearing\r\nnutate\r\nnutation\r\nnutbrown\r\nnutcase\r\nnutcracker\r\nnutgrass\r\nnuthatch\r\nnuthouse\r\nnutlet\r\nnutlike\r\nnutmeg\r\nnutmeg-shaped\r\nnutmeg-yew\r\nnutria\r\nnutrient\r\nnutrify\r\nnutriment\r\nnutrition\r\nnutritional\r\nnutritionary\r\nnutritionist\r\nnutritious\r\nnutritiousness\r\nnutritive\r\nnutritiveness\r\nnuts\r\nnutsedge\r\nnutshell\r\nnutter\r\nnuttily\r\nnutty\r\nnuwc\r\nnuytsia\r\nnuzzle\r\nnv\r\nnw\r\nnwbn\r\nnwbw\r\nny\r\nnyala\r\nnyamuragira\r\nnyamwezi\r\nnyasaland\r\nnybble\r\nnyctaginaceae\r\nnyctaginia\r\nnyctalopia\r\nnyctanassa\r\nnyctereutes\r\nnycticebus\r\nnycticorax\r\nnyctimene\r\nnyctophobia\r\nnycturia\r\nnydrazid\r\nnyiragongo\r\nnylghai\r\nnylghau\r\nnylon\r\nnylons\r\nnymph\r\nnymphaea\r\nnymphaeaceae\r\nnymphalid\r\nnymphalidae\r\nnymphalis\r\nnymphet\r\nnymphicus\r\nnympho\r\nnympholepsy\r\nnympholept\r\nnymphomania\r\nnymphomaniac\r\nnymphomaniacal\r\nnynorsk\r\nnypa\r\nnyse\r\nnyssa\r\nnyssaceae\r\nnystagmus\r\nnystan\r\nnystatin\r\nnyx\r\no\r\no'brien\r\no'casey\r\no'connor\r\no'er\r\no'flaherty\r\no'hara\r\no'keeffe\r\no'neill\r\no'toole\r\no.d.\r\no.e.d.\r\no.k.\r\noaf\r\noafish\r\noahu\r\noak\r\noaken\r\noakland\r\noakley\r\noakum\r\noar\r\noarfish\r\noarlock\r\noarsman\r\noarsmanship\r\noarswoman\r\noas\r\noasis\r\noast\r\noat\r\noatcake\r\noaten\r\noates\r\noath\r\noatmeal\r\noaxaca\r\nob\r\nobadiah\r\nobbligato\r\nobduracy\r\nobdurate\r\nobdurately\r\nobeah\r\nobeche\r\nobechi\r\nobedience\r\nobedient\r\nobediently\r\nobeisance\r\nobelion\r\nobelisk\r\noberson\r\nobese\r\nobesity\r\nobey\r\nobfuscate\r\nobfuscation\r\nobi\r\nobiism\r\nobit\r\nobituary\r\nobject\r\nobjectification\r\nobjectify\r\nobjection\r\nobjectionable\r\nobjectionableness\r\nobjectionably\r\nobjective\r\nobjectively\r\nobjectiveness\r\nobjectivity\r\nobjector\r\nobjurgate\r\nobjurgation\r\noblanceolate\r\noblate\r\noblateness\r\noblation\r\nobligate\r\nobligated\r\nobligation\r\nobligational\r\nobligato\r\nobligatorily\r\nobligatory\r\noblige\r\nobliged\r\nobliger\r\nobliging\r\nobligingly\r\nobligingness\r\noblique\r\noblique-angled\r\nobliquely\r\nobliqueness\r\nobliquity\r\nobliterable\r\nobliterate\r\nobliterated\r\nobliteration\r\nobliterator\r\noblivion\r\noblivious\r\nobliviousness\r\noblong\r\noblongness\r\nobloquy\r\nobnoxious\r\nobnoxiously\r\nobnoxiousness\r\nobnubilate\r\noboe\r\noboist\r\nobolus\r\nobovate\r\nobscene\r\nobscenely\r\nobscenity\r\nobscurantism\r\nobscurantist\r\nobscure\r\nobscureness\r\nobscurity\r\nobsequious\r\nobsequiously\r\nobsequiousness\r\nobservable\r\nobservably\r\nobservance\r\nobservant\r\nobservantly\r\nobservation\r\nobservational\r\nobservatory\r\nobserve\r\nobserved\r\nobserver\r\nobserving\r\nobservingly\r\nobsess\r\nobsessed\r\nobsession\r\nobsessional\r\nobsessionally\r\nobsessive\r\nobsessive-compulsive\r\nobsessively\r\nobsessiveness\r\nobsessivity\r\nobsidian\r\nobsolesce\r\nobsolescence\r\nobsolescent\r\nobsolete\r\nobsoleteness\r\nobstacle\r\nobstetric\r\nobstetrical\r\nobstetrician\r\nobstetrics\r\nobstinacy\r\nobstinance\r\nobstinate\r\nobstinately\r\nobstipate\r\nobstipation\r\nobstreperous\r\nobstreperously\r\nobstreperousness\r\nobstruct\r\nobstructed\r\nobstructer\r\nobstruction\r\nobstructionism\r\nobstructionist\r\nobstructive\r\nobstructively\r\nobstructor\r\nobstruent\r\nobtain\r\nobtainable\r\nobtainment\r\nobtention\r\nobtrude\r\nobtrusive\r\nobtrusively\r\nobtrusiveness\r\nobtund\r\nobturate\r\nobturator\r\nobtuse\r\nobtusely\r\nobtuseness\r\nobverse\r\nobviate\r\nobviating\r\nobviation\r\nobvious\r\nobviously\r\nobviousness\r\noca\r\nocarina\r\noccam\r\noccasion\r\noccasional\r\noccasionally\r\noccasions\r\noccident\r\noccidental\r\noccidentalise\r\noccidentalism\r\noccidentalize\r\noccipital\r\nocciput\r\noccitan\r\nocclude\r\noccluded\r\nocclusion\r\nocclusive\r\noccult\r\noccultation\r\noccultism\r\noccultist\r\noccupancy\r\noccupant\r\noccupation\r\noccupational\r\noccupied\r\noccupier\r\noccupy\r\noccur\r\noccurrence\r\noccurrent\r\nocean\r\noceanaut\r\noceanfront\r\noceangoing\r\noceania\r\noceanic\r\noceanica\r\noceanid\r\noceanites\r\noceanographer\r\noceanography\r\noceanology\r\noceanus\r\nocellated\r\nocellus\r\nocelot\r\nocher\r\nochlocracy\r\nochna\r\nochnaceae\r\nochoa\r\nochotona\r\nochotonidae\r\nochre\r\nochroma\r\nochronosis\r\nochs\r\nocimum\r\nockham\r\nocotillo\r\noct\r\noctad\r\noctagon\r\noctagonal\r\noctahedron\r\noctal\r\noctameter\r\noctane\r\noctangular\r\noctans\r\noctant\r\noctave\r\noctavian\r\noctavo\r\noctet\r\noctette\r\noctillion\r\noctober\r\noctoberfest\r\noctogenarian\r\noctonary\r\noctopod\r\noctopoda\r\noctopodidae\r\noctopus\r\noctoroon\r\noctosyllabic\r\noctosyllable\r\noctroi\r\noctuple\r\nocular\r\noculism\r\noculist\r\noculomotor\r\noculus\r\nocyurus\r\nod\r\nodalisque\r\nodd\r\nodd-job\r\nodd-pinnate\r\noddball\r\noddish\r\noddity\r\noddly\r\noddment\r\noddments\r\noddness\r\nodds\r\nodds-maker\r\nodds-on\r\node\r\noder\r\nodesa\r\nodessa\r\nodets\r\nodin\r\nodious\r\nodiously\r\nodiousness\r\nodist\r\nodium\r\nodo\r\nodoacer\r\nodobenidae\r\nodobenus\r\nodocoileus\r\nodometer\r\nodonata\r\nodonate\r\nodontalgia\r\nodontaspididae\r\nodontaspis\r\nodontiasis\r\nodontoceti\r\nodontoglossum\r\nodontology\r\nodontophorus\r\nodor\r\nodoriferous\r\nodorize\r\nodorless\r\nodorous\r\nodour\r\nodourise\r\nodourless\r\nodovacar\r\nodovakar\r\nodynophagia\r\nodysseus\r\nodyssey\r\noecanthus\r\noecumenic\r\noecumenical\r\noecumenism\r\noed\r\noedema\r\noedipus\r\noedogoniaceae\r\noedogoniales\r\noedogonium\r\noenanthe\r\noengus\r\noenologist\r\noenology\r\noenomel\r\noenophile\r\noenophilist\r\noenothera\r\noersted\r\noesophagitis\r\noesophagoscope\r\noesophagus\r\noesterreich\r\noestradiol\r\noestridae\r\noestriol\r\noestrogen\r\noestrone\r\noestrus\r\noeuvre\r\noff\r\noff-and-on\r\noff-base\r\noff-broadway\r\noff-center\r\noff-centered\r\noff-color\r\noff-colour\r\noff-day\r\noff-guard\r\noff-hand\r\noff-key\r\noff-licence\r\noff-limits\r\noff-line\r\noff-peak\r\noff-putting\r\noff-road\r\noff-roader\r\noff-season\r\noff-site\r\noff-street\r\noff-the-cuff\r\noff-the-peg\r\noff-the-rack\r\noff-the-shelf\r\noff-the-shoulder\r\noff-the-wall\r\noff-white\r\noffal\r\noffbeat\r\noffenbach\r\noffence\r\noffenceless\r\noffend\r\noffended\r\noffender\r\noffending\r\noffense\r\noffenseless\r\noffensive\r\noffensively\r\noffensiveness\r\noffer\r\nofferer\r\noffering\r\nofferor\r\noffertory\r\noffhand\r\noffhanded\r\noffhandedly\r\noffice\r\noffice-bearer\r\nofficeholder\r\nofficer\r\nofficial\r\nofficialdom\r\nofficialese\r\nofficialise\r\nofficialize\r\nofficially\r\nofficiant\r\nofficiate\r\nofficiating\r\nofficiation\r\nofficious\r\nofficiousness\r\noffing\r\noffish\r\noffload\r\noffprint\r\noffsaddle\r\noffset\r\noffshoot\r\noffshore\r\noffside\r\noffsides\r\noffspring\r\noffstage\r\nofo\r\noft\r\noften\r\noftenness\r\noftentimes\r\nofttimes\r\nogalala\r\nogcocephalidae\r\nogden\r\nogdoad\r\nogee\r\nogive\r\noglala\r\nogle\r\nogler\r\nogre\r\nogress\r\noh\r\nohio\r\nohioan\r\nohm\r\nohmage\r\nohmic\r\nohmmeter\r\noig\r\noil\r\noil-bearing\r\noil-fired\r\noil-soluble\r\noilbird\r\noilcan\r\noilcloth\r\noiled\r\noiler\r\noilfield\r\noilfish\r\noiliness\r\noilman\r\noilpaper\r\noilrig\r\noilseed\r\noilskin\r\noilstone\r\noilstove\r\noily\r\noink\r\nointment\r\noireachtas\r\nois\r\nojibwa\r\nojibway\r\nok\r\noka\r\nokapi\r\nokapia\r\nokay\r\nokeechobee\r\nokeh\r\noken\r\nokenfuss\r\nokey\r\nokinawa\r\noklahoma\r\noklahoman\r\nokra\r\noktoberfest\r\nola\r\nold\r\nold-fashioned\r\nold-fashionedness\r\nold-hat\r\nold-maidish\r\nold-man-of-the-woods\r\nold-time\r\nold-timer\r\nold-womanish\r\nold-world\r\nolden\r\noldenberg\r\nolder\r\noldfield\r\noldie\r\noldish\r\noldness\r\noldster\r\noldtimer\r\noldwench\r\noldwife\r\nolea\r\noleaceae\r\noleaceous\r\noleaginous\r\noleaginousness\r\noleales\r\noleander\r\noleandra\r\noleandraceae\r\nolearia\r\noleaster\r\nolecranon\r\noled\r\nolefin\r\nolefine\r\nolein\r\noleo\r\noleomargarine\r\noleophilic\r\noleophobic\r\noleoresin\r\nolfaction\r\nolfactive\r\nolfactory\r\nolfersia\r\nolibanum\r\noligarch\r\noligarchic\r\noligarchical\r\noligarchy\r\noligocene\r\noligochaeta\r\noligochaete\r\noligoclase\r\noligodactyly\r\noligodendria\r\noligodendrocyte\r\noligodendroglia\r\noligodontia\r\noligomenorrhea\r\noligoplites\r\noligopoly\r\noligoporus\r\noligosaccharide\r\noligospermia\r\noliguria\r\nolimbos\r\nolive\r\nolive-brown\r\nolive-colored\r\nolive-coloured\r\nolive-drab\r\nolive-gray\r\nolive-green\r\nolive-grey\r\nolive-like\r\nolive-sized\r\nolivelike\r\nolivenite\r\noliver\r\nolivier\r\nolivine\r\nolla\r\nollari\r\nolm\r\nolmec\r\nolmsted\r\nology\r\nolympia\r\nolympiad\r\nolympian\r\nolympic\r\nolympics\r\nolympus\r\nomaha\r\noman\r\nomani\r\nomasum\r\nomayyad\r\nomb\r\nombu\r\nombudsman\r\nomdurman\r\nomega\r\nomega-3\r\nomega-6\r\nomelet\r\nomelette\r\nomen\r\nomentum\r\nomeprazole\r\nomerta\r\nomicron\r\nominous\r\nomissible\r\nomission\r\nomissive\r\nomit\r\nomiya\r\nommastrephes\r\nommatidium\r\nommiad\r\nomnibus\r\nomnidirectional\r\nomnifarious\r\nomnipotence\r\nomnipotent\r\nomnipresence\r\nomnipresent\r\nomnirange\r\nomniscience\r\nomniscient\r\nomnium-gatherum\r\nomnivore\r\nomnivorous\r\nomomyid\r\nomophagia\r\nomotic\r\nomphalocele\r\nomphalos\r\nomphaloskepsis\r\nomphalotus\r\nomphalus\r\nomsk\r\non\r\non-going\r\non-key\r\non-license\r\non-line\r\non-site\r\non-street\r\non-the-job\r\non-the-scene\r\non-the-spot\r\nonager\r\nonagraceae\r\nonanism\r\nonanist\r\nonboard\r\nonce\r\nonce-over\r\nonchocerciasis\r\noncidium\r\noncogene\r\noncologic\r\noncological\r\noncologist\r\noncology\r\noncoming\r\noncorhynchus\r\noncovin\r\nondaatje\r\nondatra\r\none\r\none-and-one\r\none-armed\r\none-billionth\r\none-celled\r\none-dimensional\r\none-dimensionality\r\none-eared\r\none-eighth\r\none-eyed\r\none-fifth\r\none-fourth\r\none-half\r\none-handed\r\none-hitter\r\none-horse\r\none-humped\r\none-hundred-millionth\r\none-hundred-thousandth\r\none-hundredth\r\none-liner\r\none-man\r\none-member\r\none-millionth\r\none-ninth\r\none-off\r\none-on-one\r\none-party\r\none-person\r\none-piece\r\none-quadrillionth\r\none-quintillionth\r\none-seed\r\none-seeded\r\none-seventh\r\none-sided\r\none-sixteenth\r\none-sixth\r\none-sixtieth\r\none-sixty-fourth\r\none-step\r\none-ten-thousandth\r\none-tenth\r\none-third\r\none-thirty-second\r\none-thousandth\r\none-to-one\r\none-trillionth\r\none-twelfth\r\none-upmanship\r\none-way\r\none-winged\r\none-woman\r\none-year\r\none-year-old\r\nonega\r\noneida\r\noneiric\r\noneirism\r\noneiromancer\r\noneiromancy\r\noneness\r\nonerous\r\nonerousness\r\nonetime\r\nongoing\r\noni\r\nonion\r\nonion-like\r\nonionskin\r\noniscidae\r\noniscus\r\nonlooker\r\nonly\r\nono\r\nonobrychis\r\nonoclea\r\nonomancer\r\nonomancy\r\nonomastic\r\nonomasticon\r\nonomastics\r\nonomatomania\r\nonomatopoeia\r\nonomatopoeic\r\nonomatopoeical\r\nonomatopoetic\r\nonondaga\r\nononis\r\nonopordon\r\nonopordum\r\nonosmodium\r\nonrush\r\nonsager\r\nonset\r\nonshore\r\nonside\r\nonslaught\r\nonstage\r\nontario\r\nontogenesis\r\nontogenetic\r\nontogeny\r\nontological\r\nontology\r\nonus\r\nonward\r\nonwards\r\nonychium\r\nonychogalea\r\nonycholysis\r\nonychomys\r\nonychophora\r\nonychophoran\r\nonychosis\r\nonymous\r\nonyx\r\nonyxis\r\noocyte\r\noodles\r\noogenesis\r\nooh\r\noology\r\noolong\r\noomph\r\noomycetes\r\noophorectomy\r\noophoritis\r\noophorosalpingectomy\r\noort\r\noosphere\r\noospore\r\nootid\r\nooze\r\noozing\r\noozy\r\nopacification\r\nopacify\r\nopacity\r\nopah\r\nopal\r\nopalesce\r\nopalescence\r\nopalescent\r\nopaline\r\nopalise\r\nopalize\r\nopaque\r\nopaqueness\r\nopcw\r\nopec\r\nopel\r\nopen\r\nopen-air\r\nopen-and-shut\r\nopen-chain\r\nopen-collared\r\nopen-ended\r\nopen-eyed\r\nopen-hearth\r\nopen-minded\r\nopen-plan\r\nopen-source\r\nopenbill\r\nopencast\r\nopencut\r\nopened\r\nopener\r\nopenhanded\r\nopenhandedness\r\nopenhearted\r\nopening\r\nopenmouthed\r\nopenness\r\nopenwork\r\nopepe\r\nopera\r\noperable\r\noperagoer\r\noperand\r\noperant\r\noperate\r\noperatic\r\noperating\r\noperation\r\noperational\r\noperationalism\r\noperationalist\r\noperations\r\noperative\r\noperator\r\noperculate\r\noperculated\r\noperculum\r\noperetta\r\noperon\r\noperose\r\noperoseness\r\nopheodrys\r\nophidia\r\nophidian\r\nophidiidae\r\nophidism\r\nophiodon\r\nophiodontidae\r\nophioglossaceae\r\nophioglossales\r\nophioglossum\r\nophiolatry\r\nophiophagus\r\nophisaurus\r\nophiuchus\r\nophiurida\r\nophiuroidea\r\nophryon\r\nophrys\r\nophthalmectomy\r\nophthalmia\r\nophthalmic\r\nophthalmitis\r\nophthalmologist\r\nophthalmology\r\nophthalmoplegia\r\nophthalmoscope\r\nophthalmoscopy\r\nopiate\r\nopiliones\r\nopine\r\nopinion\r\nopinionated\r\nopinionative\r\nopisthobranchia\r\nopisthocomidae\r\nopisthocomus\r\nopisthognathidae\r\nopisthognathous\r\nopisthorchiasis\r\nopisthotonos\r\nopium\r\nopopanax\r\noporto\r\nopossum\r\noppenheimer\r\nopponent\r\nopportune\r\nopportunely\r\nopportuneness\r\nopportunism\r\nopportunist\r\nopportunistic\r\nopportunity\r\nopposable\r\noppose\r\nopposed\r\nopposer\r\nopposing\r\nopposite\r\noppositeness\r\nopposition\r\noppositive\r\noppress\r\noppressed\r\noppression\r\noppressive\r\noppressiveness\r\noppressor\r\nopprobrious\r\nopprobrium\r\noppugn\r\nops\r\nopsin\r\nopsonin\r\nopsonisation\r\nopsonization\r\nopsonize\r\nopt\r\noptative\r\noptez\r\nopthalmic\r\noptic\r\noptical\r\noptician\r\noptics\r\noptimal\r\noptimisation\r\noptimise\r\noptimism\r\noptimist\r\noptimistic\r\noptimistically\r\noptimization\r\noptimize\r\noptimum\r\noption\r\noptional\r\noptionally\r\noptometrist\r\noptometry\r\nopulence\r\nopulent\r\nopulently\r\nopuntia\r\nopuntiales\r\nopus\r\nopv\r\nor\r\norach\r\norache\r\noracle\r\noracular\r\norad\r\noradexon\r\noral\r\norally\r\noran\r\norang\r\norange\r\norange-brown\r\norange-colored\r\norange-coloured\r\norange-flowered\r\norange-hued\r\norange-red\r\norange-sized\r\norangeade\r\norangeman\r\norangeness\r\norangery\r\norangewood\r\norangish\r\norangish-red\r\norangutan\r\norangutang\r\norasone\r\norate\r\noration\r\norator\r\noratorical\r\noratorio\r\noratory\r\norb\r\norb-weaver\r\norb-weaving\r\norbicular\r\norbiculate\r\norbignya\r\norbison\r\norbit\r\norbital\r\norbitale\r\norbiter\r\norca\r\norchard\r\norchestia\r\norchestiidae\r\norchestra\r\norchestral\r\norchestrate\r\norchestrated\r\norchestration\r\norchestrator\r\norchid\r\norchid-like\r\norchidaceae\r\norchidales\r\norchidalgia\r\norchidectomy\r\norchidlike\r\norchiectomy\r\norchil\r\norchiopexy\r\norchis\r\norchitis\r\norchotomy\r\norcinus\r\norcus\r\norczy\r\nordain\r\nordained\r\nordainer\r\nordeal\r\norder\r\norder-chenopodiales\r\nordered\r\norderer\r\nordering\r\norderliness\r\norderly\r\nordinal\r\nordinance\r\nordinand\r\nordinarily\r\nordinariness\r\nordinary\r\nordinate\r\nordination\r\nordnance\r\nordovician\r\nordure\r\nore\r\noread\r\noreamnos\r\norectolobidae\r\norectolobus\r\noregano\r\noregon\r\noregonian\r\noreide\r\norelanism\r\noreo\r\noreopteris\r\noreortyx\r\norestes\r\norff\r\norgan\r\norgan-grinder\r\norgandie\r\norgandy\r\norganelle\r\norganic\r\norganically\r\norganicism\r\norganicistic\r\norganification\r\norganisation\r\norganisational\r\norganise\r\norganised\r\norganiser\r\norganism\r\norganismal\r\norganismic\r\norganist\r\norganization\r\norganizational\r\norganize\r\norganized\r\norganizer\r\norganon\r\norganophosphate\r\norgans\r\norganza\r\norgasm\r\norgiastic\r\norgy\r\noriel\r\norient\r\noriental\r\norientalise\r\norientalism\r\norientalist\r\norientalize\r\norientate\r\norientated\r\norientating\r\norientation\r\noriented\r\norienting\r\norifice\r\noriflamme\r\norigami\r\noriganum\r\norigen\r\norigin\r\noriginal\r\noriginalism\r\noriginality\r\noriginally\r\noriginate\r\norigination\r\noriginative\r\noriginator\r\norinasal\r\norinase\r\norinoco\r\noriole\r\noriolidae\r\noriolus\r\norion\r\norison\r\norissa\r\norites\r\noriya\r\norizaba\r\norlando\r\norleanais\r\norleanism\r\norleanist\r\norleans\r\norlon\r\norlop\r\norly\r\normandy\r\normazd\r\normer\r\normolu\r\normosia\r\normuzd\r\nornament\r\nornamental\r\nornamentalism\r\nornamentalist\r\nornamentation\r\nornamented\r\nornate\r\nornateness\r\norneriness\r\nornery\r\nornithine\r\nornithischia\r\nornithischian\r\nornithogalum\r\nornithological\r\nornithologist\r\nornithology\r\nornithomimid\r\nornithomimida\r\nornithopod\r\nornithopoda\r\nornithopter\r\nornithorhynchidae\r\nornithorhynchus\r\nornithosis\r\norobanchaceae\r\norogeny\r\norography\r\noroide\r\norology\r\norono\r\norontium\r\noropharyngeal\r\noropharynx\r\norotund\r\norozco\r\norphan\r\norphanage\r\norphaned\r\norphanhood\r\norphenadrine\r\norpheus\r\norphic\r\norphrey\r\norpiment\r\norpin\r\norpine\r\norpington\r\norr\r\norrery\r\norris\r\norrisroot\r\nortalis\r\nortega\r\northicon\r\northilia\r\northochorea\r\northoclase\r\northodontia\r\northodontic\r\northodontics\r\northodontist\r\northodonture\r\northodox\r\northodoxy\r\northoepist\r\northoepy\r\northogonal\r\northogonality\r\northographic\r\northography\r\northomyxovirus\r\northopaedic\r\northopaedics\r\northopaedist\r\northopedic\r\northopedical\r\northopedics\r\northopedist\r\northophosphate\r\northopnea\r\northopristis\r\northopter\r\northoptera\r\northopteran\r\northopteron\r\northoptic\r\northoptics\r\northoptist\r\northoscope\r\northostatic\r\northotomus\r\northotropous\r\nortolan\r\nortygan\r\norudis\r\norumiyeh\r\noruvail\r\norwell\r\norwellian\r\norycteropodidae\r\norycteropus\r\noryctolagus\r\noryx\r\noryza\r\noryzomys\r\noryzopsis\r\norzo\r\nos\r\nosage\r\nosaka\r\nosasco\r\nosborne\r\noscan\r\noscan-speaking\r\noscar\r\noscheocele\r\noscheocoele\r\noscillate\r\noscillating\r\noscillation\r\noscillator\r\noscillatoriaceae\r\noscillatory\r\noscillogram\r\noscillograph\r\noscilloscope\r\noscine\r\noscines\r\noscitance\r\noscitancy\r\noscitant\r\nosco-umbrian\r\nosculate\r\nosculation\r\nosculator\r\nosha\r\nosier\r\nosiris\r\noslo\r\nosmanli\r\nosmanthus\r\nosmeridae\r\nosmerus\r\nosmiridium\r\nosmitrol\r\nosmium\r\nosmoreceptor\r\nosmosis\r\nosmotic\r\nosmund\r\nosmundaceae\r\nosprey\r\nosseous\r\nossete\r\nossicle\r\nossicular\r\nossiculate\r\nossiculum\r\nossiferous\r\nossification\r\nossified\r\nossify\r\nossuary\r\nostariophysi\r\nosteal\r\nosteichthyes\r\nosteitis\r\nostensible\r\nostensibly\r\nostensive\r\nostentate\r\nostentation\r\nostentatious\r\nostentatiously\r\nostentatiousness\r\nosteoarthritis\r\nosteoblast\r\nosteoblastoma\r\nosteochondroma\r\nosteoclasis\r\nosteoclast\r\nosteocyte\r\nosteodystrophy\r\nosteologer\r\nosteologist\r\nosteology\r\nosteolysis\r\nosteoma\r\nosteomalacia\r\nosteomyelitis\r\nosteopath\r\nosteopathist\r\nosteopathy\r\nosteopetrosis\r\nosteophyte\r\nosteoporosis\r\nosteosarcoma\r\nosteosclerosis\r\nosteostracan\r\nosteostraci\r\nosteotomy\r\nostiarius\r\nostiary\r\nostinato\r\nostiole\r\nostler\r\nostomy\r\nostraciidae\r\nostracise\r\nostracism\r\nostracize\r\nostracod\r\nostracoda\r\nostracoderm\r\nostracodermi\r\nostrava\r\nostrea\r\nostreidae\r\nostrich\r\nostrich-like\r\nostrogoth\r\nostrya\r\nostryopsis\r\nostwald\r\nostyak\r\nostyak-samoyed\r\noswald\r\notalgia\r\notaria\r\notariidae\r\notc\r\nothello\r\nother\r\notherness\r\notherwise\r\notherworld\r\notherworldliness\r\notherworldly\r\notho\r\nothonna\r\notic\r\notides\r\notididae\r\notiose\r\notis\r\notitis\r\noto\r\notoe\r\notoganglion\r\notolaryngologist\r\notolaryngology\r\notologist\r\notology\r\notoplasty\r\notorhinolaryngologist\r\notorhinolaryngology\r\notorrhea\r\notosclerosis\r\notoscope\r\nototoxic\r\nottar\r\nottawa\r\notter\r\notterhound\r\nottoman\r\nottumwa\r\notus\r\nouachita\r\noubliette\r\nouguiya\r\nouija\r\noujda\r\nounce\r\nouranopithecus\r\nouranos\r\nouse\r\nousel\r\noust\r\nouster\r\nousting\r\nout\r\nout-and-out\r\nout-and-outer\r\nout-basket\r\nout-herod\r\nout-migration\r\nout-of-bounds\r\nout-of-date\r\nout-of-door\r\nout-of-doors\r\nout-of-pocket\r\nout-of-school\r\nout-of-the-way\r\nout-of-town\r\nout-tray\r\noutage\r\noutaouais\r\noutback\r\noutbalance\r\noutbid\r\noutboard\r\noutbound\r\noutbrave\r\noutbreak\r\noutbred\r\noutbuilding\r\noutburst\r\noutcall\r\noutcast\r\noutcaste\r\noutclass\r\noutclassed\r\noutcome\r\noutcrop\r\noutcropping\r\noutcry\r\noutdated\r\noutdistance\r\noutdo\r\noutdoor\r\noutdoors\r\noutdoorsman\r\noutdoorswoman\r\noutdoorsy\r\noutdraw\r\nouter\r\noutercourse\r\noutermost\r\nouterwear\r\noutface\r\noutfall\r\noutfield\r\noutfielder\r\noutfight\r\noutfit\r\noutfitted\r\noutfitter\r\noutfitting\r\noutflank\r\noutflow\r\noutflowing\r\noutfox\r\noutgeneral\r\noutgo\r\noutgoer\r\noutgoing\r\noutgrow\r\noutgrowth\r\noutguess\r\nouthouse\r\nouting\r\noutlander\r\noutlandish\r\noutlandishness\r\noutlast\r\noutlaw\r\noutlawed\r\noutlawry\r\noutlay\r\noutlet\r\noutlier\r\noutline\r\noutlined\r\noutlive\r\noutlook\r\noutlying\r\noutmaneuver\r\noutmanoeuvre\r\noutmarch\r\noutmatch\r\noutmode\r\noutmoded\r\noutmost\r\noutnumber\r\noutpace\r\noutpatient\r\noutperform\r\noutplay\r\noutpoint\r\noutport\r\noutpost\r\noutpouring\r\noutput\r\noutrage\r\noutraged\r\noutrageous\r\noutrageously\r\noutrageousness\r\noutrange\r\noutrank\r\noutre\r\noutreach\r\noutride\r\noutrider\r\noutrigged\r\noutrigger\r\noutright\r\noutrival\r\noutroar\r\noutrun\r\noutsail\r\noutscore\r\noutsell\r\noutset\r\noutshine\r\noutshout\r\noutside\r\noutsider\r\noutsize\r\noutsized\r\noutskirt\r\noutskirts\r\noutsmart\r\noutsole\r\noutsource\r\noutspan\r\noutspoken\r\noutspokenness\r\noutspread\r\noutstanding\r\noutstandingly\r\noutstare\r\noutstation\r\noutstay\r\noutstretched\r\noutstrip\r\noutstroke\r\nouttake\r\noutthrust\r\noutturn\r\noutvie\r\noutvote\r\noutward\r\noutward-bound\r\noutward-developing\r\noutward-moving\r\noutwardly\r\noutwardness\r\noutwards\r\noutwear\r\noutweigh\r\noutwit\r\noutwork\r\nouzel\r\nouzo\r\nov\r\noval\r\noval-bodied\r\noval-fruited\r\noval-shaped\r\novalbumin\r\novalipes\r\novarian\r\novariectomy\r\novaritis\r\novary\r\novate\r\novation\r\noven\r\noven-ready\r\noven-shaped\r\novenbake\r\novenbird\r\novenware\r\nover\r\nover-correct\r\nover-crowding\r\nover-embellished\r\nover-refine\r\nover-the-counter\r\nover-the-hill\r\nover-the-top\r\noverabundance\r\noverabundant\r\noverachieve\r\noverachievement\r\noverachiever\r\noveract\r\noveracting\r\noveractive\r\noveractivity\r\noverage\r\noveraged\r\noverall\r\noverambitious\r\noveranxiety\r\noveranxious\r\noverappraisal\r\noverarch\r\noverarm\r\noverawe\r\noverawed\r\noverbalance\r\noverbear\r\noverbearing\r\noverbearingness\r\noverbid\r\noverbite\r\noverblown\r\noverboil\r\noverbold\r\noverburden\r\noverburdened\r\noverbusy\r\novercall\r\novercapitalisation\r\novercapitalise\r\novercapitalization\r\novercapitalize\r\novercareful\r\novercast\r\novercasting\r\novercautious\r\novercharge\r\noverclothe\r\noverclothes\r\novercloud\r\novercoat\r\novercoating\r\novercome\r\novercomer\r\novercompensate\r\novercompensation\r\noverconfidence\r\noverconfident\r\novercook\r\novercredulity\r\novercredulous\r\novercritical\r\novercrop\r\novercrossing\r\novercrowd\r\novercultivate\r\novercurious\r\noverdelicate\r\noverdo\r\noverdone\r\noverdose\r\noverdraft\r\noverdramatise\r\noverdramatize\r\noverdraw\r\noverdress\r\noverdressed\r\noverdrive\r\noverdue\r\novereager\r\novereat\r\novereating\r\noveremotional\r\noveremphasis\r\noveremphasise\r\noveremphasize\r\noverenthusiastic\r\noverestimate\r\noverestimation\r\noverexcited\r\noverexert\r\noverexertion\r\noverexploit\r\noverexploitation\r\noverexpose\r\noverexposure\r\noverextend\r\noverfamiliar\r\noverfatigue\r\noverfed\r\noverfeed\r\noverfeeding\r\noverfill\r\noverflight\r\noverflow\r\noverflowing\r\noverfly\r\noverfond\r\noverfull\r\novergarment\r\novergeneralise\r\novergeneralize\r\novergenerous\r\novergorge\r\novergreedy\r\novergrow\r\novergrown\r\novergrowth\r\noverhand\r\noverhanded\r\noverhang\r\noverhasty\r\noverhaul\r\noverhead\r\noverhear\r\noverheat\r\noverheated\r\noverheating\r\noverindulge\r\noverindulgence\r\noverindulgent\r\noverjealous\r\noverjoy\r\noverjoyed\r\noverkill\r\noverladen\r\noverland\r\noverlap\r\noverlapping\r\noverlarge\r\noverlay\r\noverlayer\r\noverleap\r\noverlie\r\noverlip\r\noverload\r\noverloaded\r\noverlook\r\noverlooked\r\noverlooking\r\noverlord\r\noverlordship\r\noverly\r\noverlying\r\novermantel\r\novermaster\r\novermodest\r\novermuch\r\novermuchness\r\novernice\r\novernight\r\novernighter\r\noverpass\r\noverpay\r\noverpayment\r\noverplay\r\noverplus\r\noverpopulate\r\noverpopulation\r\noverpower\r\noverpowering\r\noverpoweringly\r\noverpraise\r\noverpressure\r\noverprice\r\noverpriced\r\noverprint\r\noverproduce\r\noverproduction\r\noverprotect\r\noverprotection\r\noverprotective\r\noverproud\r\noverrate\r\noverrating\r\noverreach\r\noverreaching\r\noverreact\r\noverreaction\r\noverreckoning\r\noverrefine\r\noverrefined\r\noverrefinement\r\noverride\r\noverriding\r\noverripe\r\noverrule\r\noverrun\r\noversea\r\noverseas\r\noversee\r\noverseer\r\noversensitive\r\noversensitiveness\r\noverserious\r\noversew\r\noversewn\r\noversexed\r\novershadow\r\novershielding\r\novershoe\r\novershoot\r\novershot\r\noversight\r\noversimplification\r\noversimplify\r\noversize\r\noversized\r\noverskirt\r\noversolicitous\r\noverspecialise\r\noverspecialize\r\noverspend\r\noverspill\r\noverspread\r\noverstate\r\noverstated\r\noverstatement\r\noverstay\r\noverstep\r\noverstock\r\noverstrain\r\noverstress\r\noverstretch\r\noverstrung\r\noverstuff\r\noverstuffed\r\noversubscribed\r\noversupply\r\noversuspicious\r\novert\r\novertake\r\novertaking\r\novertax\r\noverthrow\r\novertime\r\novertire\r\novertly\r\novertolerance\r\novertone\r\novertop\r\novertrump\r\noverture\r\noverturn\r\noverturned\r\noveruse\r\noverutilisation\r\noverutilization\r\novervaliant\r\novervaluation\r\novervalue\r\noverview\r\noverweary\r\noverweening\r\noverweight\r\noverwhelm\r\noverwhelming\r\noverwhelmingly\r\noverwinter\r\noverwork\r\noverworking\r\noverwrite\r\noverwrought\r\noverzealous\r\novibos\r\novid\r\noviduct\r\noviedo\r\noviform\r\novimbundu\r\novine\r\noviparous\r\novipositor\r\noviraptorid\r\novis\r\novocon\r\novoflavin\r\novoid\r\novolo\r\novotestis\r\novoviviparous\r\novral\r\novrette\r\novular\r\novulate\r\novulation\r\novule\r\novulen\r\novum\r\nowe\r\nowed\r\nowen\r\nowens\r\nowensboro\r\nowing\r\nowl\r\nowlclaws\r\nowlet\r\nowlish\r\nowlt\r\nown\r\nowned\r\nowner\r\nowner-driver\r\nowner-occupied\r\nowner-occupier\r\nownerless\r\nownership\r\nox\r\nox-eyed\r\noxacillin\r\noxalacetate\r\noxalate\r\noxalidaceae\r\noxalis\r\noxaloacetate\r\noxandra\r\noxaprozin\r\noxazepam\r\noxbow\r\noxbridge\r\noxcart\r\noxen\r\noxeye\r\noxford\r\noxford-gray\r\noxford-grey\r\noxheart\r\noxidant\r\noxidase\r\noxidate\r\noxidation\r\noxidation-reduction\r\noxidative\r\noxide\r\noxidisation\r\noxidise\r\noxidised\r\noxidiser\r\noxidizable\r\noxidization\r\noxidize\r\noxidized\r\noxidizer\r\noxidoreductase\r\noxidoreduction\r\noxime\r\noximeter\r\noxlip\r\noxonian\r\noxtail\r\noxtant\r\noxtongue\r\noxyacetylene\r\noxyacid\r\noxybelis\r\noxybenzene\r\noxycephaly\r\noxydendrum\r\noxygen\r\noxygenase\r\noxygenate\r\noxygenation\r\noxygenise\r\noxygenize\r\noxyhaemoglobin\r\noxyhemoglobin\r\noxylebius\r\noxymoron\r\noxyopia\r\noxyphenbutazone\r\noxyphencyclimine\r\noxytetracycline\r\noxytocic\r\noxytocin\r\noxytone\r\noxytropis\r\noxyura\r\noxyuranus\r\noxyuridae\r\noyabun\r\noyster\r\noyster-fish\r\noystercatcher\r\noysterfish\r\noz.\r\nozaena\r\nozarks\r\nozawa\r\nozena\r\nozocerite\r\nozokerite\r\nozone\r\nozonide\r\nozonium\r\nozonize\r\nozonosphere\r\nozothamnus\r\np\r\np.a.\r\np.e.\r\np.m.\r\np.o.\r\npa\r\npa'anga\r\npaba\r\npabir\r\npablum\r\npabulum\r\npac\r\npaca\r\npace\r\npacemaker\r\npacer\r\npacesetter\r\npacha\r\npachinko\r\npachisi\r\npachouli\r\npachuco\r\npachycephala\r\npachycephalosaur\r\npachycephalosaurus\r\npachycheilia\r\npachyderm\r\npachyderma\r\npachydermal\r\npachydermatous\r\npachydermic\r\npachydermous\r\npachyrhizus\r\npachysandra\r\npachytene\r\npacific\r\npacifically\r\npacification\r\npacificism\r\npacificist\r\npacifier\r\npacifism\r\npacifist\r\npacifistic\r\npacify\r\npacifying\r\npacing\r\npack\r\npackable\r\npackage\r\npackaged\r\npackaging\r\npacked\r\npacker\r\npackera\r\npacket\r\npackhorse\r\npacking\r\npackinghouse\r\npackman\r\npackrat\r\npacksack\r\npacksaddle\r\npackthread\r\npact\r\npad\r\npadauk\r\npadda\r\npadded\r\npadder\r\npadding\r\npaddle\r\npaddle-box\r\npaddle-shaped\r\npaddle-wheeler\r\npaddlefish\r\npaddler\r\npaddlewheel\r\npaddock\r\npaddy\r\npaddymelon\r\npademelon\r\npaderewski\r\npadlock\r\npadouk\r\npadova\r\npadre\r\npadrone\r\npadua\r\npaducah\r\npaean\r\npaederast\r\npaederastic\r\npaederasty\r\npaediatric\r\npaediatrician\r\npaediatrics\r\npaedophile\r\npaedophilia\r\npaella\r\npaeonia\r\npaeoniaceae\r\npaeony\r\npagad\r\npagan\r\npaganini\r\npaganise\r\npaganism\r\npaganize\r\npage\r\npageant\r\npageantry\r\npageboy\r\npagellus\r\npager\r\npaget\r\npaginate\r\npagination\r\npaging\r\npagoda\r\npagophila\r\npagophilus\r\npagrus\r\npaguridae\r\npagurus\r\npahautea\r\npahlavi\r\npahlevi\r\npahoehoe\r\npaid\r\npaid-up\r\npaige\r\npaigle\r\npail\r\npailful\r\npaillasse\r\npain\r\npain-free\r\npaine\r\npained\r\npainful\r\npainfully\r\npainfulness\r\npainkiller\r\npainless\r\npainlessly\r\npains\r\npainstaking\r\npainstakingly\r\npainstakingness\r\npaint\r\npaintable\r\npaintball\r\npaintbox\r\npaintbrush\r\npainted\r\npainter\r\npainterly\r\npainting\r\npair\r\npaired\r\npairing\r\npaisa\r\npaisley\r\npaiute\r\npaiwanic\r\npajama\r\npakchoi\r\npakistan\r\npakistani\r\npal\r\npalace\r\npaladin\r\npalaeencephalon\r\npalaemon\r\npalaemonidae\r\npalaeoanthropology\r\npalaeobiology\r\npalaeobotany\r\npalaeoclimatology\r\npalaeodendrology\r\npalaeoecology\r\npalaeoethnography\r\npalaeogeography\r\npalaeogeology\r\npalaeolithic\r\npalaeology\r\npalaeontological\r\npalaeontologist\r\npalaeontology\r\npalaeopathology\r\npalaeornithology\r\npalaeozoology\r\npalaestra\r\npalaetiology\r\npalaic\r\npalankeen\r\npalanquin\r\npalaquium\r\npalas\r\npalatability\r\npalatable\r\npalatableness\r\npalatably\r\npalatal\r\npalatalise\r\npalatalised\r\npalatalize\r\npalatalized\r\npalate\r\npalatial\r\npalatinate\r\npalatine\r\npalatoglossal\r\npalatopharyngoplasty\r\npalau\r\npalaver\r\npale\r\npale-colored\r\npale-faced\r\npale-hued\r\npaleacrita\r\npaleencephalon\r\npaleface\r\npalely\r\npaleness\r\npaleo-american\r\npaleo-amerind\r\npaleo-indian\r\npaleoanthropological\r\npaleoanthropology\r\npaleobiology\r\npaleobotany\r\npaleocene\r\npaleocerebellum\r\npaleoclimatology\r\npaleocortex\r\npaleocortical\r\npaleodendrology\r\npaleoecology\r\npaleoencephalon\r\npaleoethnography\r\npaleogeography\r\npaleogeology\r\npaleographer\r\npaleographist\r\npaleography\r\npaleolith\r\npaleolithic\r\npaleology\r\npaleomammalogy\r\npaleontological\r\npaleontologist\r\npaleontology\r\npaleopathology\r\npaleornithology\r\npaleostriatum\r\npaleozoic\r\npaleozoology\r\npalermo\r\npalestine\r\npalestinian\r\npalestra\r\npalestrina\r\npaletiology\r\npalette\r\npalfrey\r\npalgrave\r\npali\r\npalilalia\r\npalimony\r\npalimpsest\r\npalindrome\r\npaling\r\npalingenesis\r\npalingenetic\r\npalinuridae\r\npalinurus\r\npalisade\r\npalish\r\npaliurus\r\npall\r\npall-mall\r\npalladian\r\npalladio\r\npalladium\r\npallas\r\npallasite\r\npallbearer\r\npallet\r\npallette\r\npalliasse\r\npalliate\r\npalliation\r\npalliative\r\npallid\r\npallidity\r\npallidly\r\npallidness\r\npallidum\r\npallium\r\npallone\r\npallor\r\npally\r\npalm\r\npalm-shaped\r\npalmaceae\r\npalmae\r\npalmales\r\npalmar\r\npalmate\r\npalmately-lobed\r\npalmatifid\r\npalmature\r\npalmer\r\npalmetto\r\npalmist\r\npalmister\r\npalmistry\r\npalmitin\r\npalmlike\r\npalmy\r\npalmyra\r\npalometa\r\npalomino\r\npalooka\r\npaloverde\r\npalpability\r\npalpable\r\npalpate\r\npalpation\r\npalpatory\r\npalpebra\r\npalpebrate\r\npalpebration\r\npalpitant\r\npalpitate\r\npalpitating\r\npalpitation\r\npalsgrave\r\npalsied\r\npalsy\r\npalsy-walsy\r\npalter\r\npaltering\r\npaltriness\r\npaltry\r\npamelor\r\npamlico\r\npampas\r\npamper\r\npamperer\r\npampering\r\npamphlet\r\npamphleteer\r\npan\r\npan-broil\r\npan-fry\r\npan-hellenic\r\npanacea\r\npanache\r\npanadol\r\npanama\r\npanamanian\r\npanamica\r\npanamiga\r\npanatela\r\npanax\r\npancake\r\npancake-like\r\npancake-style\r\npancarditis\r\npanchayat\r\npanchayet\r\npancreas\r\npancreatectomy\r\npancreatic\r\npancreatin\r\npancreatitis\r\npancytopenia\r\npanda\r\npandanaceae\r\npandanales\r\npandanus\r\npandar\r\npandemic\r\npandemonium\r\npander\r\npanderer\r\npandiculation\r\npandion\r\npandionidae\r\npandora\r\npandowdy\r\npandurate\r\npanduriform\r\npane\r\npanegyric\r\npanegyrical\r\npanegyrist\r\npanel\r\npaneled\r\npaneling\r\npanelist\r\npanelling\r\npanellist\r\npanencephalitis\r\npanetela\r\npanetella\r\npanfish\r\npang\r\npanga\r\npangaea\r\npangea\r\npangloss\r\npangolin\r\npanhandle\r\npanhandler\r\npanhellenic\r\npanhysterectomy\r\npanic\r\npanic-stricken\r\npanic-struck\r\npanicked\r\npanicky\r\npanicle\r\npanicled\r\npaniculate\r\npanicum\r\npanini\r\npanipat\r\npanjabi\r\npanjandrum\r\npannier\r\npannikin\r\npanocha\r\npanoche\r\npanofsky\r\npanonychus\r\npanoplied\r\npanoply\r\npanoptic\r\npanoptical\r\npanopticon\r\npanorama\r\npanoramic\r\npanorpidae\r\npanpipe\r\npansa\r\npansexual\r\npansinusitis\r\npansy\r\npant\r\npant-hoot\r\npantaloon\r\npantalooned\r\npantechnicon\r\npantheism\r\npantheist\r\npantheistic\r\npantheon\r\npanther\r\npanthera\r\npantie\r\npantile\r\npanting\r\npantingly\r\npanto\r\npantograph\r\npantomime\r\npantomimer\r\npantomimist\r\npantothen\r\npantotheria\r\npantropic\r\npantropical\r\npantry\r\npantryman\r\npants\r\npanty\r\npantyhose\r\npantywaist\r\npanzer\r\npap\r\npapa\r\npapacy\r\npapaia\r\npapain\r\npapal\r\npaparazzo\r\npapaver\r\npapaveraceae\r\npapaverales\r\npapaverine\r\npapaw\r\npapaya\r\npapeete\r\npaper\r\npaper-pusher\r\npaperback\r\npaperbacked\r\npaperboard\r\npaperboy\r\npaperclip\r\npaperer\r\npaperhanger\r\npaperhanging\r\npapering\r\npaperknife\r\npaperlike\r\npapermaking\r\npapers\r\npaperweight\r\npaperwork\r\npapery\r\npaphiopedilum\r\npapier-mache\r\npapilionaceae\r\npapilionoideae\r\npapilla\r\npapillary\r\npapillate\r\npapilledema\r\npapilliform\r\npapilloma\r\npapillon\r\npapillose\r\npapio\r\npapism\r\npapist\r\npapistic\r\npapistical\r\npapoose\r\npapooseroot\r\npapovavirus\r\npappa\r\npappoose\r\npappose\r\npappus\r\npaprika\r\npaprilus\r\npapua\r\npapuan\r\npapule\r\npapulovesicle\r\npapyrus\r\npar\r\npara\r\nparable\r\nparabola\r\nparabolic\r\nparabolical\r\nparaboloid\r\nparaboloidal\r\nparacelsus\r\nparacentesis\r\nparacheirodon\r\nparachute\r\nparachuter\r\nparachuting\r\nparachutist\r\nparaclete\r\nparacosm\r\nparade\r\nparader\r\nparadiddle\r\nparadigm\r\nparadigmatic\r\nparadisaeidae\r\nparadisaic\r\nparadisaical\r\nparadisal\r\nparadise\r\nparadisiac\r\nparadisiacal\r\nparadox\r\nparadoxical\r\nparadoxurus\r\nparaesthesia\r\nparaffin\r\nparafovea\r\nparagon\r\nparagonite\r\nparagraph\r\nparagrapher\r\nparaguay\r\nparaguayan\r\nparakeet\r\nparalanguage\r\nparaldehyde\r\nparalegal\r\nparaleipsis\r\nparalepsis\r\nparalichthys\r\nparalipomenon\r\nparalipsis\r\nparalithodes\r\nparallax\r\nparallel\r\nparallel-park\r\nparallelepiped\r\nparallelepipedon\r\nparallelism\r\nparallelize\r\nparallelogram\r\nparallelopiped\r\nparallelopipedon\r\nparalogism\r\nparalyse\r\nparalysis\r\nparalytic\r\nparalytical\r\nparalyze\r\nparalyzed\r\nparamagnet\r\nparamagnetic\r\nparamagnetism\r\nparamaribo\r\nparamecia\r\nparamecium\r\nparamedic\r\nparamedical\r\nparameter\r\nparametric\r\nparametritis\r\nparamilitary\r\nparamnesia\r\nparamount\r\nparamountcy\r\nparamour\r\nparamyxovirus\r\nparana\r\nparanasal\r\nparang\r\nparanoia\r\nparanoiac\r\nparanoid\r\nparanormal\r\nparanthias\r\nparanthropus\r\nparaparesis\r\nparapet\r\nparaph\r\nparaphernalia\r\nparaphilia\r\nparaphrase\r\nparaphrasis\r\nparaphrastic\r\nparaphrenia\r\nparaphysis\r\nparaplegia\r\nparaplegic\r\nparapodium\r\nparapraxis\r\nparaprofessional\r\nparapsychological\r\nparapsychologist\r\nparapsychology\r\nparaquat\r\nparaquet\r\nparasail\r\nparasailing\r\nparascalops\r\nparashurama\r\nparasitaemia\r\nparasitaxus\r\nparasite\r\nparasitemia\r\nparasitic\r\nparasitical\r\nparasiticidal\r\nparasitism\r\nparasol\r\nparasympathetic\r\nparasympathomimetic\r\nparathelypteris\r\nparathion\r\nparathormone\r\nparathyroid\r\nparatrooper\r\nparatroops\r\nparatyphoid\r\nparazoa\r\nparazoan\r\nparboil\r\nparcae\r\nparcel\r\nparceling\r\nparcellation\r\nparcelling\r\nparch\r\nparched\r\nparcheesi\r\nparchment\r\npardner\r\npardon\r\npardonable\r\npardonably\r\npardoner\r\npare\r\nparegmenon\r\nparegoric\r\nparenchyma\r\nparent\r\nparentage\r\nparental\r\nparented\r\nparenteral\r\nparenthesis\r\nparenthetic\r\nparenthetical\r\nparenthood\r\nparentless\r\nparer\r\nparesis\r\nparesthesia\r\nparetic\r\npareto\r\npareve\r\nparfait\r\nparget\r\npargeting\r\npargetry\r\npargetting\r\nparheliacal\r\nparhelic\r\nparhelion\r\npariah\r\nparidae\r\nparies\r\nparietal\r\nparietales\r\nparietaria\r\nparimutuel\r\nparing\r\nparipinnate\r\nparis\r\nparish\r\nparishioner\r\nparisian\r\nparisienne\r\nparisology\r\nparity\r\nparjanya\r\nparji\r\npark\r\nparka\r\nparker\r\nparkeriaceae\r\nparkersburg\r\nparkia\r\nparking\r\nparkinson\r\nparkinson's\r\nparkinsonia\r\nparkinsonism\r\nparkland\r\nparks\r\nparkway\r\nparky\r\nparlance\r\nparlay\r\nparley\r\nparliament\r\nparliamentarian\r\nparliamentary\r\nparlor\r\nparlormaid\r\nparlour\r\nparlourmaid\r\nparlous\r\nparmelia\r\nparmeliaceae\r\nparmenides\r\nparmesan\r\nparnahiba\r\nparnaiba\r\nparnassia\r\nparnassus\r\nparnell\r\nparochetus\r\nparochial\r\nparochialism\r\nparodist\r\nparody\r\nparoicous\r\nparole\r\nparolee\r\nparonomasia\r\nparonychia\r\nparophrys\r\nparoquet\r\nparosamia\r\nparotid\r\nparotitis\r\nparous\r\nparousia\r\nparoxetime\r\nparoxysm\r\nparoxysmal\r\nparoxytone\r\nparquet\r\nparqueterie\r\nparquetry\r\nparr\r\nparrakeet\r\nparricide\r\nparrish\r\nparroket\r\nparroquet\r\nparrot\r\nparrotfish\r\nparrotia\r\nparrotiopsis\r\nparrotlike\r\nparry\r\nparse\r\nparsec\r\nparsee\r\nparseeism\r\nparser\r\nparsi\r\nparsiism\r\nparsimonious\r\nparsimoniousness\r\nparsimony\r\nparsley\r\nparsley-like\r\nparsnip\r\nparson\r\nparsonage\r\nparsons\r\npart\r\npart-owner\r\npart-singing\r\npart-time\r\npart-timer\r\npartake\r\npartaker\r\nparted\r\nparterre\r\nparthenium\r\nparthenocarpy\r\nparthenocissus\r\nparthenogenesis\r\nparthenogenetic\r\nparthenogeny\r\nparthenon\r\nparthenote\r\nparthia\r\nparthian\r\nparti-color\r\npartial\r\npartiality\r\npartially\r\npartialness\r\npartible\r\nparticipant\r\nparticipate\r\nparticipating\r\nparticipation\r\nparticipatory\r\nparticipial\r\nparticiple\r\nparticle\r\nparticolored\r\nparticoloured\r\nparticular\r\nparticularisation\r\nparticularise\r\nparticularised\r\nparticularism\r\nparticularistic\r\nparticularity\r\nparticularization\r\nparticularize\r\nparticularized\r\nparticularly\r\nparticulate\r\nparting\r\npartisan\r\npartisanship\r\npartitia\r\npartition\r\npartitioned\r\npartitioning\r\npartitionist\r\npartitive\r\npartizan\r\npartly\r\npartner\r\npartnership\r\npartridge\r\npartridgeberry\r\nparts\r\npartsong\r\nparttime\r\nparturiency\r\nparturient\r\nparturition\r\nparty\r\nparty-spirited\r\npartygoer\r\nparula\r\nparulidae\r\nparus\r\nparvati\r\nparve\r\nparvenu\r\nparvenue\r\nparvis\r\nparvo\r\nparvovirus\r\npas\r\npasadena\r\npasang\r\npascal\r\npasch\r\npascha\r\npaschal\r\npaseo\r\npasha\r\npashto\r\npashtoon\r\npashtu\r\npashtun\r\npasigraphy\r\npasiphae\r\npaspalum\r\npasqueflower\r\npasquinade\r\npass\r\npass-through\r\npassable\r\npassably\r\npassado\r\npassage\r\npassageway\r\npassamaquody\r\npassant\r\npassbook\r\npasse\r\npasse-partout\r\npassee\r\npassementerie\r\npassenger\r\npasser\r\npasser-by\r\npasserby\r\npasseres\r\npasseridae\r\npasseriformes\r\npasserina\r\npasserine\r\npassero\r\npassiflora\r\npassifloraceae\r\npassim\r\npassing\r\npassion\r\npassionate\r\npassionately\r\npassionateness\r\npassionflower\r\npassionless\r\npassive\r\npassively\r\npassiveness\r\npassivism\r\npassivity\r\npasskey\r\npassover\r\npassport\r\npassword\r\npast\r\npasta\r\npaste\r\npaste-up\r\npasteboard\r\npasted\r\npastel\r\npastel-colored\r\npastelike\r\npaster\r\npastern\r\npasternak\r\npasteur\r\npasteurellosis\r\npasteurian\r\npasteurisation\r\npasteurise\r\npasteurised\r\npasteurization\r\npasteurize\r\npasteurized\r\npastiche\r\npastil\r\npastille\r\npastime\r\npastinaca\r\npastis\r\npastness\r\npasto\r\npastor\r\npastoral\r\npastorale\r\npastorate\r\npastorship\r\npastrami\r\npastry\r\npasturage\r\npasture\r\npastureland\r\npasty\r\npat\r\npataca\r\npatagonia\r\npatas\r\npatavium\r\npatch\r\npatchboard\r\npatchcord\r\npatched\r\npatchiness\r\npatching\r\npatchouli\r\npatchouly\r\npatchwork\r\npatchy\r\npate\r\npatella\r\npatellar\r\npatellidae\r\npatency\r\npatent\r\npatented\r\npatentee\r\npatently\r\npater\r\npaterfamilias\r\npaternal\r\npaternalism\r\npaternalistic\r\npaternity\r\npaternoster\r\npaterson\r\npath\r\npathan\r\npathetic\r\npathetically\r\npathfinder\r\npathless\r\npathogen\r\npathogenesis\r\npathogenic\r\npathologic\r\npathological\r\npathologist\r\npathology\r\npathos\r\npathway\r\npatience\r\npatient\r\npatiently\r\npatina\r\npatinate\r\npatinise\r\npatinize\r\npatio\r\npatisserie\r\npatka\r\npatness\r\npatois\r\npaton\r\npatrai\r\npatras\r\npatrial\r\npatriarch\r\npatriarchal\r\npatriarchate\r\npatriarchic\r\npatriarchy\r\npatricentric\r\npatrician\r\npatricide\r\npatrick\r\npatrikin\r\npatrilineage\r\npatrilineal\r\npatrilinear\r\npatrimonial\r\npatrimony\r\npatriot\r\npatrioteer\r\npatriotic\r\npatriotically\r\npatriotism\r\npatrisib\r\npatristic\r\npatristical\r\npatristics\r\npatroclus\r\npatrol\r\npatroller\r\npatrolman\r\npatrology\r\npatron\r\npatronage\r\npatroness\r\npatronise\r\npatronised\r\npatronising\r\npatronisingly\r\npatronize\r\npatronized\r\npatronizing\r\npatronizingly\r\npatronless\r\npatronne\r\npatronym\r\npatronymic\r\npatsy\r\npatten\r\npatter\r\npattern\r\npattern-bomb\r\npatterned\r\npatternmaker\r\npatty\r\npatty-pan\r\npatwin\r\npatzer\r\npaucity\r\npaul\r\npauli\r\npauline\r\npauling\r\npaunch\r\npaunchiness\r\npaunchy\r\npauper\r\npauperisation\r\npauperise\r\npauperism\r\npauperization\r\npauperize\r\npauropoda\r\npause\r\npavage\r\npavan\r\npavane\r\npavarotti\r\npave\r\npaved\r\npavement\r\npavilion\r\npaving\r\npavior\r\npaviour\r\npavis\r\npavise\r\npavlov\r\npavlova\r\npavlovian\r\npavo\r\npavonia\r\npaw\r\npawer\r\npawky\r\npawl\r\npawn\r\npawnbroker\r\npawnee\r\npawnshop\r\npawpaw\r\npax\r\npaxil\r\npaxto\r\npaxton\r\npay\r\npay-phone\r\npay-station\r\npayable\r\npayables\r\npayback\r\npaycheck\r\npayday\r\npaye\r\npayee\r\npayena\r\npayer\r\npaygrade\r\npaying\r\npayload\r\npaymaster\r\npayment\r\npaynim\r\npayoff\r\npayola\r\npayroll\r\npaysheet\r\npayslip\r\npb\r\npbs\r\npc\r\npcp\r\npct\r\npd\r\npda\r\npdflp\r\npdl\r\npe\r\npe-tsai\r\npea\r\npea-chick\r\npea-green\r\npea-souper\r\npeabody\r\npeace\r\npeace-loving\r\npeaceable\r\npeaceableness\r\npeaceably\r\npeaceful\r\npeacefulness\r\npeacekeeper\r\npeacekeeping\r\npeacemaker\r\npeacenik\r\npeacetime\r\npeach\r\npeach-colored\r\npeach-wood\r\npeachick\r\npeachwood\r\npeachy\r\npeachy-colored\r\npeachy-coloured\r\npeacoat\r\npeacock\r\npeacock-blue\r\npeacock-throne\r\npeafowl\r\npeag\r\npeahen\r\npeak\r\npeaked\r\npeaky\r\npeal\r\npealing\r\npean\r\npeanut\r\npeanuts\r\npear\r\npear-shaped\r\npearl\r\npearl-fish\r\npearl-weed\r\npearler\r\npearlescent\r\npearlfish\r\npearlite\r\npearlweed\r\npearlwort\r\npearly\r\npearly-white\r\npearmain\r\npeary\r\npeasant\r\npeasanthood\r\npeasantry\r\npeasecod\r\npeat\r\npeaty\r\npeavey\r\npeavy\r\npeba\r\npebble\r\npebble-grained\r\npebbly\r\npecan\r\npeccable\r\npeccadillo\r\npeccant\r\npeccary\r\npeck\r\npecker\r\npeckerwood\r\npeckish\r\npecopteris\r\npecos\r\npecs\r\npectic\r\npectin\r\npectinate\r\npectineal\r\npectinibranchia\r\npectinidae\r\npectoral\r\npectoralis\r\npectus\r\npeculate\r\npeculation\r\npeculator\r\npeculiar\r\npeculiarity\r\npeculiarly\r\npecuniary\r\npedagog\r\npedagogic\r\npedagogical\r\npedagogically\r\npedagogics\r\npedagogue\r\npedagogy\r\npedal\r\npedaler\r\npedaliaceae\r\npedaller\r\npedant\r\npedantic\r\npedantry\r\npedate\r\npeddle\r\npeddler\r\npeddling\r\npederast\r\npederastic\r\npederasty\r\npedesis\r\npedestal\r\npedestrian\r\npediamycin\r\npediapred\r\npediatric\r\npediatrician\r\npediatrics\r\npediatrist\r\npedicab\r\npedicel\r\npedicle\r\npediculati\r\npediculicide\r\npediculidae\r\npediculosis\r\npediculus\r\npedicure\r\npedigree\r\npedigreed\r\npedilanthus\r\npediment\r\npediocactus\r\npedioecetes\r\npedionomus\r\npedipalpi\r\npedlar\r\npedodontist\r\npedology\r\npedometer\r\npedophile\r\npedophilia\r\npeduncle\r\npedunculate\r\npedwood\r\npee\r\npee-pee\r\npeeing\r\npeek\r\npeekaboo\r\npeel\r\npeeled\r\npeeler\r\npeeling\r\npeen\r\npeep\r\npeeper\r\npeephole\r\npeepshow\r\npeepul\r\npeer\r\npeerage\r\npeeress\r\npeerless\r\npeeve\r\npeeved\r\npeevish\r\npeevishly\r\npeevishness\r\npeewee\r\npeewit\r\npeg\r\npegasus\r\npegboard\r\npegged-down\r\npegleg\r\npegmatite\r\npei\r\npeignoir\r\npeiping\r\npeirce\r\npeireskia\r\npejorative\r\npekan\r\npeke\r\npekinese\r\npeking\r\npekingese\r\npekoe\r\npel\r\npelage\r\npelagianism\r\npelagic\r\npelagius\r\npelargonium\r\npelecanidae\r\npelecaniformes\r\npelecanoididae\r\npelecanus\r\npelecypod\r\npelecypodous\r\npeleus\r\npelew\r\npelf\r\npelham\r\npelican\r\npeliosis\r\npelisse\r\npell-mell\r\npellaea\r\npellagra\r\npellet\r\npellicle\r\npellicularia\r\npellitory\r\npellitory-of-spain\r\npellitory-of-the-wall\r\npellucid\r\npellucidity\r\npellucidly\r\npellucidness\r\npelmet\r\npelobatidae\r\npeloponnese\r\npeloponnesian\r\npeloponnesus\r\npelota\r\npelt\r\npeltandra\r\npeltate\r\npelter\r\npelting\r\npeltiphyllum\r\npeludo\r\npelvic\r\npelvimeter\r\npelvimetry\r\npelvis\r\npelycosaur\r\npelycosauria\r\npembroke\r\npemican\r\npemmican\r\npempheridae\r\npemphigous\r\npemphigus\r\npen\r\npen-and-ink\r\npen-friend\r\npen-tail\r\npenal\r\npenalisation\r\npenalise\r\npenalised\r\npenalization\r\npenalize\r\npenalized\r\npenally\r\npenalty\r\npenance\r\npenchant\r\npencil\r\npenciled\r\npencilled\r\npendant\r\npendent\r\npending\r\npendragon\r\npendulous\r\npendulum\r\npeneidae\r\npenelope\r\npeneplain\r\npeneplane\r\npenetrability\r\npenetrable\r\npenetralia\r\npenetrate\r\npenetrating\r\npenetratingly\r\npenetration\r\npenetrative\r\npenetratively\r\npenetrator\r\npeneus\r\npengo\r\npenguin\r\npenial\r\npenicillamine\r\npenicillin\r\npenicillin-resistant\r\npenicillinase\r\npenicillium\r\npenile\r\npeninsula\r\npeninsular\r\npenis\r\npenitence\r\npenitent\r\npenitential\r\npenitentially\r\npenitentiary\r\npenitently\r\npenknife\r\npenlight\r\npenman\r\npenmanship\r\npenn\r\npenn'orth\r\npennant\r\npennate\r\npennatula\r\npennatulidae\r\npenne\r\npenned\r\npenni\r\npenniless\r\npennilessness\r\npennines\r\npenning\r\npennisetum\r\npennon\r\npennoncel\r\npennoncelle\r\npennsylvania\r\npennsylvanian\r\npenny\r\npenny-pinch\r\npenny-pinching\r\npenny-wise\r\npennycress\r\npennyroyal\r\npennyweight\r\npennywhistle\r\npennyworth\r\npenobscot\r\npenoche\r\npenologist\r\npenology\r\npenoncel\r\npenpusher\r\npensacola\r\npension\r\npensionable\r\npensionary\r\npensioner\r\npensive\r\npensiveness\r\npenstemon\r\npenstock\r\npent\r\npent-up\r\npentacle\r\npentad\r\npentaerythritol\r\npentagon\r\npentagonal\r\npentagram\r\npentahedron\r\npentail\r\npentamerous\r\npentameter\r\npentamethylenetetrazol\r\npentangle\r\npentangular\r\npentastomid\r\npentastomida\r\npentasyllabic\r\npentateuch\r\npentathlete\r\npentathlon\r\npentatone\r\npentatonic\r\npentavalent\r\npentazocine\r\npentecost\r\npentecostal\r\npentecostalism\r\npentecostalist\r\npenthouse\r\npentimento\r\npentlandite\r\npentobarbital\r\npentode\r\npentose\r\npentothal\r\npentoxide\r\npentoxifylline\r\npentylenetetrazol\r\npenuche\r\npenuchle\r\npenult\r\npenultima\r\npenultimate\r\npenumbra\r\npenumbral\r\npenurious\r\npenuriousness\r\npenury\r\npenutian\r\npeon\r\npeonage\r\npeony\r\npeople\r\npeopled\r\npeoples\r\npeoria\r\npep\r\npepcid\r\npeperomia\r\npepin\r\npeplos\r\npeplum\r\npeplus\r\npepper\r\npepper-and-salt\r\npeppercorn\r\npepperidge\r\npepperiness\r\npeppermint\r\npepperoni\r\npepperwood\r\npepperwort\r\npeppery\r\npeppiness\r\npeppy\r\npepsi\r\npepsin\r\npepsinogen\r\npeptic\r\npeptidase\r\npeptide\r\npeptisation\r\npeptise\r\npeptization\r\npeptize\r\npepto-bismal\r\npeptone\r\npepys\r\nperadventure\r\nperambulate\r\nperambulating\r\nperambulation\r\nperambulator\r\nperamelidae\r\nperca\r\npercale\r\nperceivable\r\nperceive\r\nperceived\r\nperceiver\r\npercent\r\npercentage\r\npercentile\r\npercept\r\nperceptibility\r\nperceptible\r\nperceptibly\r\nperception\r\nperceptive\r\nperceptiveness\r\nperceptivity\r\nperceptual\r\nperch\r\nperch-like\r\nperchance\r\npercher\r\npercheron\r\nperchlorate\r\nperchloride\r\nperchloromethane\r\npercidae\r\nperciformes\r\npercina\r\npercipient\r\npercoid\r\npercoidea\r\npercoidean\r\npercolate\r\npercolation\r\npercolator\r\npercomorphi\r\npercophidae\r\npercuss\r\npercussion\r\npercussionist\r\npercussive\r\npercussor\r\npercutaneous\r\npercy\r\nperdicidae\r\nperdicinae\r\nperdition\r\nperdix\r\nperdurability\r\nperdurable\r\nperegrinate\r\nperegrination\r\nperegrine\r\nperejil\r\nperemptorily\r\nperemptory\r\nperennate\r\nperennation\r\nperennial\r\npereskia\r\nperestroika\r\nperfect\r\nperfecta\r\nperfected\r\nperfecter\r\nperfectibility\r\nperfectible\r\nperfection\r\nperfectionism\r\nperfectionist\r\nperfective\r\nperfectly\r\nperfervid\r\nperfidious\r\nperfidiousness\r\nperfidy\r\nperfluorocarbon\r\nperfoliate\r\nperforate\r\nperforated\r\nperforation\r\nperform\r\nperformance\r\nperformer\r\nperforming\r\nperfume\r\nperfumed\r\nperfumer\r\nperfumery\r\nperfunctorily\r\nperfunctory\r\nperfuse\r\nperfusion\r\npergamum\r\npergola\r\nperhaps\r\nperi\r\nperiactin\r\nperianal\r\nperianth\r\nperiapsis\r\nperiarteritis\r\npericallis\r\npericardiac\r\npericardial\r\npericarditis\r\npericardium\r\npericarp\r\npericementoclasia\r\npericlase\r\npericles\r\nperidinian\r\nperidiniidae\r\nperidinium\r\nperidium\r\nperidot\r\nperidotite\r\nperigee\r\nperigon\r\nperigonal\r\nperigone\r\nperigonium\r\nperihelion\r\nperijove\r\nperil\r\nperilla\r\nperilous\r\nperilously\r\nperilousness\r\nperilune\r\nperilymph\r\nperimeter\r\nperimysium\r\nperinasal\r\nperinatal\r\nperinatologist\r\nperinatology\r\nperineal\r\nperineotomy\r\nperineum\r\nperineurium\r\nperiod\r\nperiodic\r\nperiodical\r\nperiodically\r\nperiodicity\r\nperiodontal\r\nperiodontia\r\nperiodontic\r\nperiodontics\r\nperiodontist\r\nperiodontitis\r\nperiophthalmus\r\nperiosteum\r\nperipatetic\r\nperipatidae\r\nperipatopsidae\r\nperipatopsis\r\nperipatus\r\nperipeteia\r\nperipetia\r\nperipety\r\nperipheral\r\nperipherally\r\nperiphery\r\nperiphrasis\r\nperiphrastic\r\nperiplaneta\r\nperiploca\r\nperipteral\r\nperirhinal\r\nperiscope\r\nperiselene\r\nperish\r\nperishability\r\nperishable\r\nperishableness\r\nperisher\r\nperisoreus\r\nperisperm\r\nperissodactyl\r\nperissodactyla\r\nperistalsis\r\nperistediinae\r\nperistedion\r\nperistome\r\nperistylar\r\nperistyle\r\nperithecium\r\nperithelial\r\nperithelium\r\nperitoneal\r\nperitoneum\r\nperitonitis\r\nperitrate\r\nperitrichous\r\nperiwig\r\nperiwigged\r\nperiwinkle\r\nperjure\r\nperjurer\r\nperjury\r\nperk\r\nperkily\r\nperkiness\r\nperky\r\nperleche\r\nperm\r\npermafrost\r\npermalloy\r\npermanence\r\npermanency\r\npermanent\r\npermanent-press\r\npermanently\r\npermanganate\r\npermeability\r\npermeable\r\npermeableness\r\npermeant\r\npermeate\r\npermeating\r\npermeation\r\npermeative\r\npermed\r\npermian\r\npermic\r\npermissibility\r\npermissible\r\npermissibly\r\npermission\r\npermissive\r\npermissiveness\r\npermit\r\npermutability\r\npermutable\r\npermutableness\r\npermutation\r\npermute\r\npernambuco\r\npernicious\r\nperniciously\r\nperniciousness\r\npernickety\r\npernio\r\npernis\r\npernod\r\nperodicticus\r\nperognathus\r\nperomyscus\r\nperon\r\nperoneal\r\nperoneus\r\nperonospora\r\nperonosporaceae\r\nperonosporales\r\nperorate\r\nperoration\r\nperoxidase\r\nperoxide\r\nperpendicular\r\nperpendicularity\r\nperpendicularly\r\nperpetrate\r\nperpetration\r\nperpetrator\r\nperpetual\r\nperpetually\r\nperpetuate\r\nperpetuation\r\nperpetuity\r\nperphenazine\r\nperplex\r\nperplexed\r\nperplexedly\r\nperplexing\r\nperplexity\r\nperquisite\r\nperry\r\npersea\r\npersecute\r\npersecution\r\npersecutor\r\npersephone\r\npersepolis\r\nperseus\r\nperseverance\r\nperseverate\r\nperseveration\r\npersevere\r\npersevering\r\npershing\r\npersia\r\npersian\r\npersiflage\r\npersimmon\r\npersist\r\npersistence\r\npersistency\r\npersistent\r\npersisting\r\npersnickety\r\nperson\r\nperson-to-person\r\npersona\r\npersonable\r\npersonableness\r\npersonage\r\npersonal\r\npersonalise\r\npersonalised\r\npersonality\r\npersonalize\r\npersonalized\r\npersonally\r\npersonalty\r\npersonate\r\npersonation\r\npersonhood\r\npersonification\r\npersonify\r\npersonnel\r\npersoonia\r\nperspective\r\nperspex\r\nperspicacious\r\nperspicaciousness\r\nperspicacity\r\nperspicuity\r\nperspicuous\r\nperspicuously\r\nperspicuousness\r\nperspiration\r\nperspire\r\nperspirer\r\nperspiring\r\npersuadable\r\npersuade\r\npersuader\r\npersuasible\r\npersuasion\r\npersuasive\r\npersuasiveness\r\npert\r\npertain\r\npertainym\r\nperth\r\npertinacious\r\npertinacity\r\npertinence\r\npertinency\r\npertinent\r\npertly\r\npertness\r\nperturb\r\nperturbation\r\nperturbed\r\nperturbing\r\npertusaria\r\npertusariaceae\r\npertussis\r\nperu\r\nperuke\r\nperuked\r\nperusal\r\nperuse\r\nperusing\r\nperutz\r\nperuvian\r\npervade\r\npervaporate\r\npervaporation\r\npervasion\r\npervasive\r\npervasiveness\r\nperverse\r\nperversely\r\nperverseness\r\nperversion\r\nperversity\r\nperversive\r\npervert\r\nperverted\r\npervious\r\nperviousness\r\npes\r\npesach\r\npesah\r\npesantran\r\npesantren\r\npeseta\r\npesewa\r\npeshawar\r\npeshmerga\r\npesky\r\npeso\r\npessary\r\npessimal\r\npessimism\r\npessimist\r\npessimistic\r\npessimistically\r\npessimum\r\npest\r\npester\r\npestered\r\npesterer\r\npestering\r\npesthole\r\npesthouse\r\npesticide\r\npestiferous\r\npestilence\r\npestilent\r\npestilential\r\npestis\r\npestle\r\npesto\r\npet\r\npet-food\r\npetabyte\r\npetal\r\npetal-like\r\npetaled\r\npetalled\r\npetalless\r\npetallike\r\npetaloid\r\npetalous\r\npetard\r\npetasites\r\npetaurista\r\npetauristidae\r\npetaurus\r\npetchary\r\npetcock\r\npetechia\r\npeter\r\npeterburg\r\npetersburg\r\npetfood\r\npetiole\r\npetiolule\r\npetite\r\npetiteness\r\npetitio\r\npetition\r\npetitionary\r\npetitioner\r\npetrarca\r\npetrarch\r\npetrel\r\npetrifaction\r\npetrification\r\npetrified\r\npetrify\r\npetrifying\r\npetrissage\r\npetrochemical\r\npetrocoptis\r\npetrogale\r\npetrograd\r\npetrol\r\npetrolatum\r\npetroleum\r\npetrology\r\npetromyzon\r\npetromyzoniformes\r\npetromyzontidae\r\npetronius\r\npetroselinum\r\npetrous\r\npetter\r\npetteria\r\npetticoat\r\npetticoated\r\npettifog\r\npettifogger\r\npettifoggery\r\npettifogging\r\npettiness\r\npetting\r\npettish\r\npettishly\r\npettishness\r\npetty\r\npetulance\r\npetulant\r\npetulantly\r\npetunia\r\npeul\r\npew\r\npewee\r\npewit\r\npewter\r\npeyote\r\npeziza\r\npezizaceae\r\npezizales\r\npezophaps\r\npfalz\r\npfannkuchen\r\npfc\r\npfennig\r\npflp\r\npflp-gc\r\nph\r\nph.d.\r\nphacelia\r\nphacochoerus\r\nphaeochromocytoma\r\nphaeophyceae\r\nphaeophyta\r\nphaethon\r\nphaethontidae\r\nphaeton\r\nphage\r\nphagocyte\r\nphagocytic\r\nphagocytosis\r\nphagun\r\nphaius\r\nphalacrocoracidae\r\nphalacrocorax\r\nphalacrosis\r\nphalaenopsis\r\nphalaenoptilus\r\nphalangeal\r\nphalanger\r\nphalangeridae\r\nphalangida\r\nphalangiidae\r\nphalangist\r\nphalangitis\r\nphalangium\r\nphalanx\r\nphalaris\r\nphalarope\r\nphalaropidae\r\nphalaropus\r\nphalguna\r\nphallaceae\r\nphallales\r\nphallic\r\nphalloplasty\r\nphallus\r\nphalsa\r\nphanerogam\r\nphanerogamae\r\nphaneromania\r\nphanerozoic\r\nphantasm\r\nphantasma\r\nphantasmagoria\r\nphantasmagoric\r\nphantasmagorical\r\nphantasmal\r\nphantasy\r\nphantom\r\npharaoh\r\npharaonic\r\npharisaic\r\npharisaical\r\npharisee\r\npharma\r\npharmaceutic\r\npharmaceutical\r\npharmaceutics\r\npharmacist\r\npharmacogenetics\r\npharmacokinetics\r\npharmacologic\r\npharmacological\r\npharmacologist\r\npharmacology\r\npharmacopeia\r\npharmacopoeia\r\npharmacy\r\npharomacrus\r\npharos\r\npharsalus\r\npharyngeal\r\npharyngitis\r\npharynx\r\nphascogale\r\nphascolarctos\r\nphase\r\nphase-out\r\nphaseolus\r\nphasianid\r\nphasianidae\r\nphasianus\r\nphasmatidae\r\nphasmatodea\r\nphasmid\r\nphasmida\r\nphasmidae\r\nphasmidia\r\nphd\r\npheasant\r\npheasant's-eye\r\nphegopteris\r\npheidias\r\nphellem\r\nphellodendron\r\nphenacetin\r\nphenacomys\r\nphenaphen\r\nphenazopyridine\r\nphencyclidine\r\nphenelzine\r\nphenergan\r\nphenicia\r\npheniramine\r\npheno-safranine\r\nphenobarbital\r\nphenobarbitone\r\nphenol\r\nphenolic\r\nphenolphthalein\r\nphenomenal\r\nphenomenology\r\nphenomenon\r\nphenoplast\r\nphenothiazine\r\nphenotype\r\nphenotypic\r\nphenotypical\r\nphensuximide\r\nphentolamine\r\nphenylacetamide\r\nphenylalanine\r\nphenylamine\r\nphenylbutazone\r\nphenylephrine\r\nphenylethylene\r\nphenylketonuria\r\nphenylpropanolamine\r\nphenyltoloxamine\r\nphenytoin\r\npheochromocytoma\r\npheresis\r\npheromone\r\nphi\r\nphial\r\nphidias\r\nphiladelphaceae\r\nphiladelphia\r\nphiladelphus\r\nphilaenus\r\nphilander\r\nphilanderer\r\nphilanthropic\r\nphilanthropist\r\nphilanthropy\r\nphilatelic\r\nphilatelical\r\nphilatelist\r\nphilately\r\nphilemon\r\nphilharmonic\r\nphilhellene\r\nphilhellenic\r\nphilhellenism\r\nphilhellenist\r\nphilia\r\nphilip\r\nphilippi\r\nphilippian\r\nphilippians\r\nphilippic\r\nphilippine\r\nphilippines\r\nphilippopolis\r\nphilistia\r\nphilistine\r\nphilistinism\r\nphillidae\r\nphillipsite\r\nphillyrea\r\nphilodendron\r\nphilogyny\r\nphilohela\r\nphilological\r\nphilologist\r\nphilologue\r\nphilology\r\nphilomachus\r\nphilomath\r\nphilophylla\r\nphilosopher\r\nphilosophic\r\nphilosophical\r\nphilosophise\r\nphilosophiser\r\nphilosophize\r\nphilosophizer\r\nphilosophizing\r\nphilosophy\r\nphilter\r\nphiltre\r\nphimosis\r\nphintias\r\nphiz\r\nphlebectomy\r\nphlebitis\r\nphlebodium\r\nphlebogram\r\nphlebothrombosis\r\nphlebotomise\r\nphlebotomist\r\nphlebotomize\r\nphlebotomus\r\nphlebotomy\r\nphlegm\r\nphlegmatic\r\nphlegmatical\r\nphlegmy\r\nphleum\r\nphloem\r\nphlogiston\r\nphlogopite\r\nphlomis\r\nphlox\r\nphobia\r\nphobic\r\nphobophobia\r\nphobos\r\nphoca\r\nphocaena\r\nphocidae\r\nphocine\r\nphocomelia\r\nphoebe\r\nphoebus\r\nphoenicia\r\nphoenician\r\nphoenicophorium\r\nphoenicopteridae\r\nphoeniculidae\r\nphoeniculus\r\nphoenicurus\r\nphoenix\r\npholadidae\r\npholas\r\npholidae\r\npholidota\r\npholiota\r\npholis\r\npholistoma\r\nphon\r\nphonate\r\nphonation\r\nphone\r\nphone-in\r\nphonebook\r\nphoneme\r\nphonemic\r\nphonemics\r\nphoner\r\nphonetic\r\nphonetician\r\nphonetics\r\nphoney\r\nphonic\r\nphonics\r\nphonogram\r\nphonogramic\r\nphonograph\r\nphonologic\r\nphonological\r\nphonologist\r\nphonology\r\nphonophobia\r\nphony\r\nphoradendron\r\nphoronid\r\nphoronida\r\nphoronidea\r\nphosgene\r\nphosphatase\r\nphosphate\r\nphosphine\r\nphosphocreatine\r\nphospholipid\r\nphosphoprotein\r\nphosphor\r\nphosphoresce\r\nphosphorescence\r\nphosphorescent\r\nphosphoric\r\nphosphorous\r\nphosphorus\r\nphot\r\nphotalgia\r\nphotic\r\nphotinia\r\nphotius\r\nphoto\r\nphoto-offset\r\nphotoblepharon\r\nphotocathode\r\nphotocell\r\nphotochemical\r\nphotochemistry\r\nphotocoagulation\r\nphotocoagulator\r\nphotoconduction\r\nphotoconductive\r\nphotoconductivity\r\nphotocopier\r\nphotocopy\r\nphotoelectric\r\nphotoelectrical\r\nphotoelectricity\r\nphotoelectron\r\nphotoemission\r\nphotoemissive\r\nphotoengraving\r\nphotoflash\r\nphotoflood\r\nphotogenic\r\nphotograph\r\nphotographer\r\nphotographic\r\nphotography\r\nphotogravure\r\nphotojournalism\r\nphotojournalist\r\nphotolithograph\r\nphotolithography\r\nphotomechanical\r\nphotomechanics\r\nphotometer\r\nphotometric\r\nphotometrical\r\nphotometrician\r\nphotometrist\r\nphotometry\r\nphotomicrograph\r\nphotomontage\r\nphoton\r\nphotophobia\r\nphotopigment\r\nphotoplatemaking\r\nphotoretinitis\r\nphotosensitise\r\nphotosensitive\r\nphotosensitivity\r\nphotosensitize\r\nphotosphere\r\nphotostat\r\nphotosynthesis\r\nphotosynthetic\r\nphototherapy\r\nphototropism\r\nphotovoltaic\r\nphoxinus\r\nphragmacone\r\nphragmipedium\r\nphragmites\r\nphragmocone\r\nphrasal\r\nphrase\r\nphraseology\r\nphrasing\r\nphratry\r\nphreatic\r\nphrenetic\r\nphrenic\r\nphrenitis\r\nphrenological\r\nphrenologist\r\nphrenology\r\nphrontistery\r\nphrygia\r\nphrygian\r\nphrynosoma\r\nphs\r\nphthiriidae\r\nphthirius\r\nphthirus\r\nphthisis\r\nphthorimaea\r\nphycobilin\r\nphycocyanin\r\nphycoerythrin\r\nphycology\r\nphycomycetes\r\nphycomycosis\r\nphylactery\r\nphyle\r\nphyletic\r\nphyllidae\r\nphylliform\r\nphyllitis\r\nphyllium\r\nphyllo\r\nphylloclad\r\nphyllocladaceae\r\nphylloclade\r\nphyllocladus\r\nphyllode\r\nphyllodial\r\nphyllodoce\r\nphylloporus\r\nphylloquinone\r\nphyllorhynchus\r\nphylloscopus\r\nphyllostachys\r\nphyllostomatidae\r\nphyllostomidae\r\nphyllostomus\r\nphylloxera\r\nphylloxeridae\r\nphylogenesis\r\nphylogenetic\r\nphylogeny\r\nphylum\r\nphysa\r\nphysalia\r\nphysalis\r\nphysaria\r\nphyseter\r\nphyseteridae\r\nphysiatrics\r\nphysic\r\nphysical\r\nphysicalism\r\nphysicality\r\nphysicalness\r\nphysician\r\nphysicist\r\nphysicochemical\r\nphysics\r\nphysidae\r\nphysiognomy\r\nphysiography\r\nphysiologic\r\nphysiological\r\nphysiologist\r\nphysiology\r\nphysiotherapeutic\r\nphysiotherapist\r\nphysiotherapy\r\nphysique\r\nphysostegia\r\nphysostigma\r\nphysostigmine\r\nphytelephas\r\nphytohormone\r\nphytolacca\r\nphytolaccaceae\r\nphytologist\r\nphytology\r\nphytomastigina\r\nphytonadione\r\nphytophagic\r\nphytophagous\r\nphytophilous\r\nphytophthora\r\nphytoplankton\r\nphytotherapy\r\nphytotoxin\r\npi\r\npi-meson\r\npia\r\npiaf\r\npiaffe\r\npiaget\r\npiagetian\r\npianism\r\npianissimo\r\npianist\r\npianistic\r\npiano\r\npianoforte\r\npianola\r\npiaster\r\npiastre\r\npiazza\r\npibgorn\r\npibroch\r\npic\r\npica\r\npica-pica\r\npicador\r\npicaninny\r\npicardie\r\npicardy\r\npicaresque\r\npicariae\r\npicasso\r\npicayune\r\npiccalilli\r\npiccaninny\r\npiccolo\r\npicea\r\npichi\r\npichiciago\r\npichiciego\r\npicidae\r\npiciformes\r\npick\r\npick-me-up\r\npick-off\r\npickaback\r\npickaninny\r\npickax\r\npickaxe\r\npickelhaube\r\npicker\r\npickerel\r\npickerelweed\r\npickeringia\r\npicket\r\npickett\r\npickford\r\npicking\r\npickings\r\npickle\r\npickled\r\npicklepuss\r\npicknicker\r\npickpocket\r\npickup\r\npicky\r\npicnic\r\npicnicker\r\npicofarad\r\npicoides\r\npicometer\r\npicometre\r\npicornavirus\r\npicosecond\r\npicot\r\npicovolt\r\npicrasma\r\npicris\r\npictograph\r\npictographic\r\npictor\r\npictorial\r\npictural\r\npicture\r\npictured\r\npicturesque\r\npicturesqueness\r\npicturing\r\npicul\r\npiculet\r\npicumnus\r\npicus\r\npid\r\npiddle\r\npiddling\r\npiddock\r\npidgin\r\npidlimdi\r\npie\r\npie-dog\r\npie-eyed\r\npiebald\r\npiece\r\npiece-dye\r\npiecemeal\r\npiecework\r\npied\r\npied-a-terre\r\npiedmont\r\npiemonte\r\npieplant\r\npier\r\npierce\r\npierced\r\npiercing\r\npiercingly\r\npierid\r\npieridae\r\npieris\r\npierre\r\npierrot\r\npieta\r\npietism\r\npietistic\r\npietistical\r\npiety\r\npiezoelectric\r\npiezoelectricity\r\npiezometer\r\npiffle\r\npiffling\r\npig\r\npig-a-back\r\npig-headedly\r\npig-like\r\npig-sized\r\npigboat\r\npigeon\r\npigeon-breasted\r\npigeon-like\r\npigeon-toed\r\npigeonhole\r\npigeonholing\r\npigfish\r\npiggery\r\npiggish\r\npiggishness\r\npiggy\r\npiggyback\r\npigheaded\r\npigheadedness\r\npiglet\r\npigman\r\npigment\r\npigmentation\r\npigmy\r\npignolia\r\npignut\r\npigpen\r\npigskin\r\npigsticking\r\npigsty\r\npigswill\r\npigtail\r\npigwash\r\npigweed\r\npij\r\npika\r\npike\r\npike-like\r\npike-perch\r\npikeblenny\r\npikestaff\r\npilaf\r\npilaff\r\npilar\r\npilary\r\npilaster\r\npilate\r\npilau\r\npilaw\r\npilchard\r\npile\r\npilea\r\npiled\r\npiles\r\npileup\r\npileus\r\npilewort\r\npilfer\r\npilferage\r\npilferer\r\npilgrim\r\npilgrimage\r\npiling\r\npill\r\npillage\r\npillaged\r\npillager\r\npillaging\r\npillar\r\npillar-shaped\r\npillared\r\npillbox\r\npillion\r\npillock\r\npillory\r\npillow\r\npillowcase\r\npillwort\r\npilocarpine\r\npilose\r\npilosebaceous\r\npilosella\r\npilosity\r\npilot\r\npilotage\r\npilotfish\r\npilothouse\r\npiloting\r\npilotless\r\npilous\r\npilsen\r\npilsener\r\npilsner\r\npilularia\r\npilus\r\npima\r\npimenta\r\npimento\r\npimiento\r\npimlico\r\npimozide\r\npimp\r\npimpernel\r\npimpinella\r\npimple\r\npimpled\r\npimply\r\npin\r\npin-up\r\npinaceae\r\npinafore\r\npinata\r\npinatubo\r\npinball\r\npince-nez\r\npincer\r\npinch\r\npinchbeck\r\npinche\r\npinched\r\npinchgut\r\npinckneya\r\npinctada\r\npincus\r\npincushion\r\npindar\r\npindaric\r\npindolol\r\npine\r\npine-weed\r\npineal\r\npinealoma\r\npineapple\r\npinecone\r\npinesap\r\npinetum\r\npineus\r\npineweed\r\npinfish\r\npinfold\r\nping\r\nping-pong\r\npinger\r\npinguecula\r\npinguicula\r\npinguinus\r\npinhead\r\npinhole\r\npinicola\r\npining\r\npinion\r\npinioned\r\npinite\r\npink\r\npink-collar\r\npink-lavender\r\npink-orange\r\npink-purple\r\npink-red\r\npink-slipped\r\npink-tinged\r\npink-tipped\r\npinkeye\r\npinkie\r\npinkify\r\npinkish\r\npinkish-lavender\r\npinkish-orange\r\npinkish-purple\r\npinkish-white\r\npinkness\r\npinko\r\npinkroot\r\npinky\r\npinna\r\npinnace\r\npinnacle\r\npinnate\r\npinnate-leafed\r\npinnate-leaved\r\npinnated\r\npinnatifid\r\npinnatiped\r\npinnatisect\r\npinner\r\npinning\r\npinniped\r\npinnipedia\r\npinnotheres\r\npinnotheridae\r\npinnule\r\npinny\r\npinochle\r\npinocle\r\npinocytosis\r\npinole\r\npinon\r\npinophytina\r\npinopsida\r\npinot\r\npinpoint\r\npinprick\r\npinscher\r\npinsk\r\npinstripe\r\npinstriped\r\npint\r\npint-size\r\npint-sized\r\npintado\r\npintail\r\npinter\r\npintle\r\npinto\r\npinus\r\npinwheel\r\npinwheel-shaped\r\npinworm\r\npinyon\r\npiolet\r\npion\r\npioneer\r\npious\r\npiously\r\npiousness\r\npip\r\npip-squeak\r\npipa\r\npipage\r\npipal\r\npipe\r\npipe-clay\r\npipeclay\r\npipefish\r\npipefitting\r\npipeful\r\npipeline\r\npiper\r\npiperaceae\r\npiperacillin\r\npiperales\r\npiperazine\r\npiperin\r\npiperine\r\npiperocaine\r\npipet\r\npipette\r\npipework\r\npipewort\r\npipidae\r\npipile\r\npipilo\r\npiping\r\npipistrel\r\npipistrelle\r\npipistrellus\r\npipit\r\npippin\r\npipra\r\npipracil\r\npipridae\r\npipsissewa\r\npiptadenia\r\npipturus\r\npipul\r\npiquance\r\npiquancy\r\npiquant\r\npiquantly\r\npiquantness\r\npique\r\npiqueria\r\npiquet\r\npiracy\r\npirana\r\npirandello\r\npiranga\r\npiranha\r\npirate\r\npiratical\r\npirogi\r\npirogue\r\npiroplasm\r\npiroshki\r\npirouette\r\npiroxicam\r\npirozhki\r\npisa\r\npisanosaur\r\npisanosaurus\r\npiscary\r\npiscatorial\r\npiscatory\r\npisces\r\npiscidia\r\npiscine\r\npiscivorous\r\npisiform\r\npismire\r\npisonia\r\npiss\r\npiss-up\r\npissed\r\npisser\r\npissing\r\npissis\r\npistachio\r\npistacia\r\npiste\r\npistia\r\npistil\r\npistillate\r\npistillode\r\npistol\r\npistol-whip\r\npistoleer\r\npiston\r\npisum\r\npit\r\npit-a-pat\r\npita\r\npitahaya\r\npitanga\r\npitch\r\npitch-black\r\npitch-dark\r\npitchblende\r\npitched\r\npitcher\r\npitcher-shaped\r\npitcherful\r\npitchfork\r\npitching\r\npitchman\r\npitchstone\r\npitchy\r\npiteous\r\npitfall\r\npith\r\npithead\r\npithecanthropus\r\npithecellobium\r\npithecia\r\npithecolobium\r\npithily\r\npithiness\r\npithy\r\npitiable\r\npitiably\r\npitiful\r\npitiless\r\npitilessly\r\npitilessness\r\npitman\r\npitocin\r\npiton\r\npitot\r\npitprop\r\npitressin\r\npitsaw\r\npitt\r\npitta\r\npittance\r\npitted\r\npitter-patter\r\npittidae\r\npitting\r\npittsburgh\r\npittsfield\r\npitty-pat\r\npitty-patty\r\npituitary\r\npituophis\r\npity\r\npitying\r\npityingly\r\npitymys\r\npityriasis\r\npityrogramma\r\npiute\r\npivot\r\npivotal\r\npix\r\npixel\r\npixie\r\npixilated\r\npixy\r\npizarro\r\npizza\r\npizzaz\r\npizzazz\r\npizzeria\r\npizzicato\r\npj's\r\npkd\r\npku\r\nplacable\r\nplacard\r\nplacate\r\nplacating\r\nplacation\r\nplacative\r\nplacatory\r\nplace\r\nplace-kick\r\nplace-kicker\r\nplace-kicking\r\nplace-worship\r\nplaceable\r\nplacebo\r\nplaced\r\nplaceholder\r\nplacekicker\r\nplaceman\r\nplacement\r\nplacenta\r\nplacental\r\nplacentation\r\nplacer\r\nplaceseeker\r\nplacid\r\nplacidity\r\nplacidness\r\nplacidyl\r\nplacket\r\nplacoderm\r\nplacodermi\r\nplacoid\r\nplacuna\r\nplage\r\nplagianthus\r\nplagiarisation\r\nplagiarise\r\nplagiarised\r\nplagiariser\r\nplagiarism\r\nplagiarist\r\nplagiaristic\r\nplagiarization\r\nplagiarize\r\nplagiarized\r\nplagiarizer\r\nplagiocephaly\r\nplagioclase\r\nplagioclastic\r\nplague\r\nplagued\r\nplaguey\r\nplaguily\r\nplaguy\r\nplaice\r\nplaid\r\nplain\r\nplain-woven\r\nplainchant\r\nplainclothesman\r\nplainly\r\nplainness\r\nplainsman\r\nplainsong\r\nplainspoken\r\nplaint\r\nplaintiff\r\nplaintive\r\nplaintiveness\r\nplait\r\nplaiter\r\nplan\r\nplanar\r\nplanaria\r\nplanarian\r\nplanate\r\nplanation\r\nplanchet\r\nplanchette\r\nplanck\r\nplane\r\nplane-polarized\r\nplaneness\r\nplaner\r\nplanera\r\nplanet\r\nplanetal\r\nplanetarium\r\nplanetary\r\nplanetesimal\r\nplanetoid\r\nplangency\r\nplangent\r\nplanimeter\r\nplank\r\nplank-bed\r\nplanking\r\nplankton\r\nplanktonic\r\nplanless\r\nplanned\r\nplanner\r\nplanning\r\nplano\r\nplanococcus\r\nplanoconcave\r\nplanoconvex\r\nplanographic\r\nplanography\r\nplant\r\nplant-eating\r\nplant-like\r\nplantae\r\nplantagenet\r\nplantaginaceae\r\nplantaginales\r\nplantago\r\nplantain\r\nplantal\r\nplantar\r\nplantation\r\nplanted\r\nplanter\r\nplanthopper\r\nplantigrade\r\nplanting\r\nplantlet\r\nplantsman\r\nplanula\r\nplaque\r\nplaquenil\r\nplash\r\nplasm\r\nplasma\r\nplasmablast\r\nplasmacyte\r\nplasmacytoma\r\nplasmapheresis\r\nplasmid\r\nplasmin\r\nplasminogen\r\nplasmodiidae\r\nplasmodiophora\r\nplasmodiophoraceae\r\nplasmodium\r\nplassey\r\nplaster\r\nplasterboard\r\nplastered\r\nplasterer\r\nplastering\r\nplasterwork\r\nplastic\r\nplasticine\r\nplasticise\r\nplasticiser\r\nplasticity\r\nplasticize\r\nplasticizer\r\nplastid\r\nplastinate\r\nplastination\r\nplastique\r\nplastron\r\nplat\r\nplataea\r\nplatalea\r\nplataleidae\r\nplatan\r\nplatanaceae\r\nplatanistidae\r\nplatanthera\r\nplatanus\r\nplate\r\nplateau\r\nplateful\r\nplatelayer\r\nplatelet\r\nplateletpheresis\r\nplatelike\r\nplaten\r\nplater\r\nplatform\r\nplath\r\nplatichthys\r\nplating\r\nplatinize\r\nplatinum\r\nplatinum-blonde\r\nplatitude\r\nplatitudinal\r\nplatitudinarian\r\nplatitudinize\r\nplatitudinous\r\nplato\r\nplatonic\r\nplatonism\r\nplatonist\r\nplatonistic\r\nplatoon\r\nplattdeutsch\r\nplatte\r\nplattensee\r\nplatter\r\nplaty\r\nplatycephalidae\r\nplatycerium\r\nplatyctenea\r\nplatyctenean\r\nplatyhelminth\r\nplatyhelminthes\r\nplatylobium\r\nplatymiscium\r\nplatypoecilus\r\nplatypus\r\nplatyrhine\r\nplatyrhinian\r\nplatyrrhine\r\nplatyrrhini\r\nplatyrrhinian\r\nplatyrrhinic\r\nplatysma\r\nplatystemon\r\nplaudit\r\nplaudits\r\nplausibility\r\nplausible\r\nplausibleness\r\nplausibly\r\nplausive\r\nplautus\r\nplavix\r\nplay\r\nplay-actor\r\nplay-box\r\nplayable\r\nplayact\r\nplayacting\r\nplayactor\r\nplayback\r\nplaybill\r\nplaybook\r\nplaybox\r\nplayboy\r\nplayday\r\nplayer\r\nplayfellow\r\nplayful\r\nplayfulness\r\nplaygoer\r\nplayground\r\nplayhouse\r\nplaying\r\nplaylet\r\nplaylist\r\nplaymaker\r\nplaymate\r\nplayoff\r\nplaypen\r\nplayroom\r\nplayschool\r\nplayscript\r\nplaysuit\r\nplaything\r\nplaytime\r\nplaywright\r\nplaza\r\nplea\r\nplea-bargain\r\npleach\r\nplead\r\npleader\r\npleading\r\npleadingly\r\npleasance\r\npleasant\r\npleasant-smelling\r\npleasant-tasting\r\npleasantly\r\npleasantness\r\npleasantry\r\nplease\r\npleased\r\npleaser\r\npleasing\r\npleasingness\r\npleasurable\r\npleasurably\r\npleasure\r\npleat\r\npleating\r\npleb\r\nplebe\r\nplebeian\r\nplebiscite\r\nplecoptera\r\nplecopteran\r\nplecotus\r\nplectania\r\nplectognath\r\nplectognathi\r\nplectomycetes\r\nplectophera\r\nplectorrhiza\r\nplectranthus\r\nplectron\r\nplectrophenax\r\nplectrum\r\npledge\r\npledged\r\npledgee\r\npledger\r\npleiades\r\npleione\r\npleiospilos\r\npleistocene\r\nplenary\r\nplenipotentiary\r\nplenitude\r\nplenteous\r\nplenteously\r\nplenteousness\r\nplentiful\r\nplentifully\r\nplentifulness\r\nplentitude\r\nplenty\r\nplenum\r\npleochroic\r\npleochroism\r\npleomorphic\r\npleomorphism\r\npleonasm\r\npleonaste\r\npleonastic\r\npleopod\r\nplesianthropus\r\nplesiosaur\r\nplesiosauria\r\nplesiosaurus\r\nplessimeter\r\nplessor\r\nplethodon\r\nplethodont\r\nplethodontidae\r\nplethora\r\nplethoric\r\nplethysmograph\r\npleura\r\npleural\r\npleuralgia\r\npleurisy\r\npleurobrachia\r\npleurobrachiidae\r\npleurocarp\r\npleurocarpous\r\npleurodont\r\npleurodynia\r\npleuronectes\r\npleuronectidae\r\npleuropneumonia\r\npleurosorus\r\npleurothallis\r\npleurotus\r\npleven\r\nplevna\r\nplexiglas\r\nplexiglass\r\npleximeter\r\npleximetry\r\nplexor\r\nplexus\r\nplf\r\npliability\r\npliable\r\npliancy\r\npliant\r\npliantness\r\nplica\r\nplicate\r\nplication\r\nplicatoperipatus\r\nplier\r\npliers\r\nplight\r\nplimsoll\r\nplinth\r\npliny\r\npliocene\r\nplo\r\nploce\r\nploceidae\r\nploceus\r\nplod\r\nplodder\r\nplodding\r\nplonk\r\nplop\r\nplosion\r\nplosive\r\nplot\r\nplotinus\r\nplotted\r\nplotter\r\nplough\r\nploughboy\r\nploughed\r\nploughing\r\nploughland\r\nploughman\r\nploughshare\r\nploughwright\r\nplovdiv\r\nplover\r\nplover-like\r\nplow\r\nplowboy\r\nplowed\r\nplower\r\nplowing\r\nplowland\r\nplowman\r\nplowshare\r\nplowwright\r\nploy\r\nployurethan\r\npluck\r\nplucked\r\npluckiness\r\nplucky\r\nplug\r\nplug-in\r\nplug-ugly\r\nplugboard\r\nplugged\r\nplugger\r\nplughole\r\nplum\r\nplum-shaped\r\nplum-yew\r\nplumage\r\nplumaged\r\nplumate\r\nplumb\r\nplumbable\r\nplumbaginaceae\r\nplumbaginaceous\r\nplumbaginales\r\nplumbago\r\nplumbed\r\nplumber\r\nplumbery\r\nplumbic\r\nplumbing\r\nplumbism\r\nplumbous\r\nplumcot\r\nplume\r\nplume-tipped\r\nplumed\r\nplumelike\r\nplumeria\r\nplumiera\r\nplumlike\r\nplummet\r\nplummy\r\nplumose\r\nplump\r\nplumping\r\nplumpness\r\nplumule\r\nplumy\r\nplunder\r\nplunderage\r\nplundered\r\nplunderer\r\nplundering\r\nplunge\r\nplunger\r\nplunk\r\nplunker\r\npluperfect\r\nplural\r\npluralisation\r\npluralise\r\npluralism\r\npluralist\r\npluralistic\r\nplurality\r\npluralization\r\npluralize\r\nplus\r\nplush\r\nplush-like\r\nplushy\r\nplutarch\r\npluteaceae\r\npluteus\r\npluto\r\nplutocracy\r\nplutocrat\r\nplutocratic\r\nplutocratical\r\npluton\r\nplutonian\r\nplutonic\r\nplutonium\r\npluvialis\r\npluvianus\r\npluviometer\r\npluviose\r\nply\r\nplyboard\r\nplyer\r\nplyers\r\nplymouth\r\nplywood\r\nplzen\r\npm\r\npms\r\npneumatic\r\npneumatics\r\npneumatophore\r\npneumococcal\r\npneumococcus\r\npneumoconiosis\r\npneumocytosis\r\npneumoencephalogram\r\npneumogastric\r\npneumonectomy\r\npneumonia\r\npneumonic\r\npneumonitis\r\npneumonoconiosis\r\npneumothorax\r\npneumovax\r\npo\r\npo-faced\r\npoa\r\npoaceae\r\npoach\r\npoached\r\npoacher\r\npoaching\r\npob\r\npocahontas\r\npocatello\r\npochard\r\npock\r\npocked\r\npocket\r\npocket-handkerchief\r\npocket-size\r\npocket-sized\r\npocketable\r\npocketbook\r\npocketcomb\r\npocketful\r\npocketknife\r\npockmark\r\npockmarked\r\npod\r\npodalgia\r\npodalyria\r\npodargidae\r\npodargus\r\npodaxaceae\r\npodetium\r\npodgy\r\npodiatrist\r\npodiatry\r\npodiceps\r\npodicipedidae\r\npodicipediformes\r\npodicipitiformes\r\npodilymbus\r\npodium\r\npodlike\r\npodocarp\r\npodocarpaceae\r\npodocarpus\r\npodophyllum\r\npodsol\r\npodzol\r\npoe\r\npoeciliid\r\npoeciliidae\r\npoecilocapsus\r\npoecilogale\r\npoem\r\npoenology\r\npoephila\r\npoesy\r\npoet\r\npoet-singer\r\npoetess\r\npoetic\r\npoetical\r\npoetics\r\npoetise\r\npoetiser\r\npoetize\r\npoetizer\r\npoetry\r\npogey\r\npogge\r\npogonia\r\npogonion\r\npogonip\r\npogonophora\r\npogonophoran\r\npogostemon\r\npogrom\r\npogy\r\npoi\r\npoignance\r\npoignancy\r\npoignant\r\npoignantly\r\npoikilotherm\r\npoikilothermic\r\npoikilothermous\r\npoilu\r\npoinciana\r\npoinsettia\r\npoint\r\npoint-blank\r\npoint-of-sale\r\npointed\r\npointed-toe\r\npointedness\r\npointel\r\npointer\r\npointilism\r\npointilist\r\npointillism\r\npointillistic\r\npointless\r\npointlessness\r\npointrel\r\npointsman\r\npointy-toed\r\npoise\r\npoised\r\npoison\r\npoison-berry\r\npoisonberry\r\npoisoner\r\npoisoning\r\npoisonous\r\npoisonously\r\npoitier\r\npoitiers\r\npoitou\r\npoitou-charentes\r\npoivrade\r\npoke\r\npoker\r\npoker-faced\r\npokeweed\r\npokey\r\npoking\r\npokomo\r\npoky\r\npol\r\npolack\r\npoland\r\npolanisia\r\npolar\r\npolarimeter\r\npolaris\r\npolarisation\r\npolariscope\r\npolarise\r\npolarity\r\npolarization\r\npolarize\r\npolarographic\r\npolarography\r\npolaroid\r\npolder\r\npole\r\npole-handled\r\npoleax\r\npoleaxe\r\npolecat\r\npolemic\r\npolemical\r\npolemically\r\npolemicise\r\npolemicist\r\npolemicize\r\npolemics\r\npolemise\r\npolemist\r\npolemize\r\npolemoniaceae\r\npolemoniaceous\r\npolemoniales\r\npolemonium\r\npolenta\r\npoler\r\npolestar\r\npolianthes\r\npolice\r\npoliceman\r\npolicewoman\r\npolicy\r\npolicy-making\r\npolicyholder\r\npolio\r\npoliomyelitis\r\npolioptila\r\npoliosis\r\npoliovirus\r\npolish\r\npolished\r\npolisher\r\npolishing\r\npolistes\r\npolitburo\r\npolite\r\npolitely\r\npoliteness\r\npolitesse\r\npolitic\r\npolitical\r\npolitician\r\npoliticise\r\npoliticize\r\npolitick\r\npolitico\r\npolitics\r\npolity\r\npolk\r\npolka\r\npoll\r\npollachius\r\npollack\r\npollard\r\npollen\r\npollenate\r\npollenation\r\npollex\r\npollinate\r\npollination\r\npollinator\r\npollinium\r\npollinosis\r\npolliwog\r\npollock\r\npolls\r\npollster\r\npollucite\r\npollutant\r\npollute\r\npolluted\r\npolluter\r\npollution\r\npollux\r\npollyannaish\r\npollyfish\r\npollywog\r\npolo\r\npolo-neck\r\npolonaise\r\npolonium\r\npolony\r\npolska\r\npoltergeist\r\npoltroon\r\npoltroonery\r\npolyamide\r\npolyandrist\r\npolyandrous\r\npolyandry\r\npolyangiaceae\r\npolyangium\r\npolyanthus\r\npolyarteritis\r\npolyatomic\r\npolyborus\r\npolybotria\r\npolybotrya\r\npolybutene\r\npolybutylene\r\npolycarp\r\npolychaeta\r\npolychaete\r\npolychete\r\npolychromatic\r\npolychrome\r\npolychromic\r\npolychromise\r\npolychromize\r\npolycillin\r\npolycirrus\r\npolycrystalline\r\npolycythemia\r\npolydactyl\r\npolydactylous\r\npolydactylus\r\npolydactyly\r\npolydipsia\r\npolyelectrolyte\r\npolyergus\r\npolyester\r\npolyestrous\r\npolyethylene\r\npolyfoam\r\npolygala\r\npolygalaceae\r\npolygamist\r\npolygamous\r\npolygamy\r\npolygene\r\npolygenic\r\npolyglot\r\npolygon\r\npolygonaceae\r\npolygonal\r\npolygonales\r\npolygonatum\r\npolygonia\r\npolygonum\r\npolygraph\r\npolygynist\r\npolygynous\r\npolygyny\r\npolyhedral\r\npolyhedron\r\npolyhidrosis\r\npolyhymnia\r\npolymastigina\r\npolymastigote\r\npolymath\r\npolymer\r\npolymerase\r\npolymeric\r\npolymerisation\r\npolymerise\r\npolymerization\r\npolymerize\r\npolymorph\r\npolymorphic\r\npolymorphism\r\npolymorphous\r\npolymox\r\npolymyositis\r\npolymyxin\r\npolynemidae\r\npolynesia\r\npolynesian\r\npolyneuritis\r\npolynomial\r\npolynya\r\npolyodon\r\npolyodontidae\r\npolyoestrous\r\npolyoicous\r\npolyoma\r\npolyose\r\npolyp\r\npolypectomy\r\npolypedates\r\npolypedatidae\r\npolypeptide\r\npolypetalous\r\npolyphase\r\npolyphone\r\npolyphonic\r\npolyphonous\r\npolyphony\r\npolyphosphate\r\npolyplacophora\r\npolyplacophore\r\npolyploid\r\npolyploidy\r\npolypodiaceae\r\npolypodiales\r\npolypodium\r\npolypody\r\npolyporaceae\r\npolypore\r\npolyporus\r\npolyprion\r\npolypropene\r\npolypropenonitrile\r\npolypropylene\r\npolyptoton\r\npolypus\r\npolysaccharide\r\npolysemant\r\npolysemantic\r\npolysemous\r\npolysemy\r\npolysomy\r\npolystichum\r\npolystyrene\r\npolysyllabic\r\npolysyllable\r\npolysyndeton\r\npolysynthetic\r\npolytechnic\r\npolytetrafluoroethylene\r\npolytheism\r\npolytheist\r\npolytheistic\r\npolythene\r\npolytonal\r\npolytonalism\r\npolytonality\r\npolyunsaturated\r\npolyurethane\r\npolyuria\r\npolyvalence\r\npolyvalency\r\npolyvalent\r\npolyvinyl-formaldehyde\r\npolyzoa\r\npolyzoan\r\npom\r\npom-pom\r\npomacanthus\r\npomacentridae\r\npomacentrus\r\npomade\r\npomaded\r\npomaderris\r\npomatomidae\r\npomatomus\r\npomatum\r\npome\r\npomegranate\r\npomelo\r\npomeranian\r\npomfret\r\npommel\r\npommy\r\npomo\r\npomolobus\r\npomologist\r\npomology\r\npomoxis\r\npomp\r\npompadour\r\npompano\r\npompeii\r\npompey\r\npompon\r\npomposity\r\npompous\r\npompousness\r\nponca\r\nponce\r\nponcho\r\nponcirus\r\npond\r\npond-skater\r\nponder\r\nponderable\r\nponderer\r\npondering\r\nponderosa\r\nponderosity\r\nponderous\r\nponderousness\r\npondweed\r\npone\r\npong\r\npongamia\r\npongee\r\npongid\r\npongidae\r\npongo\r\nponiard\r\nponka\r\npons\r\nponselle\r\nponstel\r\npontederia\r\npontederiaceae\r\npontiac\r\npontifex\r\npontiff\r\npontifical\r\npontificate\r\npontoon\r\npontos\r\npontus\r\npony\r\npony-trekking\r\nponycart\r\nponytail\r\npooch\r\npood\r\npoodle\r\npooecetes\r\npoof\r\npooh-bah\r\npooh-pooh\r\npool\r\npooler\r\npoolroom\r\npoon\r\npoop\r\npoor\r\npoor-spirited\r\npoorhouse\r\npoorly\r\npoorness\r\npoorwill\r\npoove\r\npop\r\npop-fly\r\npop-up\r\npopcorn\r\npope\r\npopery\r\npopeyed\r\npopgun\r\npopillia\r\npopinjay\r\npopish\r\npoplar\r\npoplin\r\npopliteal\r\npopover\r\npopper\r\npoppet\r\npopping\r\npoppy\r\npoppycock\r\npopsicle\r\npopulace\r\npopular\r\npopularisation\r\npopularise\r\npopulariser\r\npopularism\r\npopularity\r\npopularization\r\npopularize\r\npopularizer\r\npopulate\r\npopulated\r\npopulation\r\npopulism\r\npopulist\r\npopulous\r\npopulus\r\nporbeagle\r\nporc\r\nporcelain\r\nporcelainize\r\nporcellio\r\nporcellionidae\r\nporch\r\nporcine\r\nporcupine\r\nporcupinefish\r\nporcupines\r\npore\r\nporgy\r\nporifera\r\nporiferan\r\nporiferous\r\npork\r\npork-barreling\r\npork-fish\r\nporkchop\r\nporker\r\nporkfish\r\nporkholt\r\nporkpie\r\nporn\r\nporno\r\npornographer\r\npornographic\r\npornography\r\nporonotus\r\nporoporo\r\nporose\r\nporosity\r\nporous\r\nporousness\r\nporphyra\r\nporphyria\r\nporphyrin\r\nporphyrio\r\nporphyritic\r\nporphyrula\r\nporphyry\r\nporpoise\r\nporridge\r\nporringer\r\nport\r\nport-au-prince\r\nport-of-spain\r\nporta\r\nportability\r\nportable\r\nportage\r\nportal\r\nportcullis\r\nporte\r\nporte-cochere\r\nportend\r\nportent\r\nportentous\r\nporter\r\nporterage\r\nporterhouse\r\nportfolio\r\nporthole\r\nportico\r\nporticoed\r\nportiere\r\nportion\r\nportland\r\nportly\r\nportmanteau\r\nporto\r\nportrait\r\nportraitist\r\nportraiture\r\nportray\r\nportrayal\r\nportrayed\r\nportrayer\r\nportraying\r\nportsmouth\r\nportugal\r\nportuguese\r\nportulaca\r\nportulacaceae\r\nportunidae\r\nportunus\r\nportwatcher\r\nporzana\r\npose\r\nposed\r\nposeidon\r\nposer\r\nposeur\r\nposeuse\r\nposh\r\nposing\r\nposit\r\nposition\r\npositionable\r\npositional\r\npositioner\r\npositioning\r\npositive\r\npositiveness\r\npositivism\r\npositivist\r\npositivistic\r\npositivity\r\npositron\r\nposology\r\nposse\r\nposseman\r\npossess\r\npossessed\r\npossession\r\npossessive\r\npossessiveness\r\npossessor\r\nposset\r\npossibility\r\npossible\r\npossibleness\r\npossibly\r\npossum\r\npossumwood\r\npost\r\npost-communist\r\npost-free\r\npost-horse\r\npost-impressionist\r\npost-it\r\npost-maturity\r\npost-menopause\r\npost-mortem\r\npost-paid\r\npostage\r\npostal\r\npostbag\r\npostbiblical\r\npostbox\r\npostcard\r\npostcava\r\npostcode\r\npostdate\r\npostdiluvian\r\npostdoc\r\npostdoctoral\r\nposter\r\nposterboard\r\nposterior\r\nposteriority\r\nposterity\r\npostern\r\npostexilic\r\npostfix\r\npostganglionic\r\npostglacial\r\npostgraduate\r\nposthitis\r\nposthole\r\nposthouse\r\nposthumous\r\npostiche\r\npostictal\r\npostilion\r\npostillion\r\npostimpressionist\r\npostindustrial\r\nposting\r\npostlude\r\npostman\r\npostmark\r\npostmaster\r\npostmenopausal\r\npostmeridian\r\npostmillennial\r\npostmistress\r\npostmodern\r\npostmodernism\r\npostmodernist\r\npostmortal\r\npostmortem\r\npostnatal\r\npostnuptial\r\npostoperative\r\npostpaid\r\npostpartum\r\npostpone\r\npostponed\r\npostponement\r\npostponer\r\npostpose\r\npostposition\r\npostpositive\r\npostprandial\r\npostscript\r\npostulant\r\npostulate\r\npostulation\r\npostulational\r\npostulator\r\npostum\r\npostural\r\nposture\r\nposturer\r\nposturing\r\npostwar\r\nposy\r\npot\r\npot-au-feu\r\npot-trained\r\npotable\r\npotage\r\npotamogale\r\npotamogalidae\r\npotamogeton\r\npotamogetonaceae\r\npotamophis\r\npotash\r\npotassium\r\npotation\r\npotato\r\npotawatomi\r\npotbellied\r\npotbelly\r\npotboiler\r\npotbound\r\npotboy\r\npoteen\r\npotence\r\npotency\r\npotent\r\npotentate\r\npotential\r\npotentiality\r\npotentially\r\npotentiate\r\npotentiation\r\npotentilla\r\npotentiometer\r\npotently\r\npoterium\r\npotful\r\npothead\r\npother\r\npotherb\r\npotholder\r\npothole\r\npotholed\r\npotholer\r\npothook\r\npothos\r\npothouse\r\npothunter\r\npotion\r\npotlatch\r\npotluck\r\npotman\r\npotomac\r\npotomania\r\npotoroinae\r\npotoroo\r\npotorous\r\npotos\r\npotpie\r\npotpourri\r\npotsherd\r\npotshot\r\npottage\r\npotted\r\npotter\r\npotterer\r\npottery\r\npottle\r\npotto\r\npotty\r\npotty-trained\r\npouch\r\npouch-shaped\r\npouched\r\npouchlike\r\npoudrin\r\npouf\r\npouffe\r\npoulenc\r\npoulet\r\npoulette\r\npoulterer\r\npoultice\r\npoultry\r\npoultryman\r\npounce\r\npound\r\npound-foolish\r\npoundage\r\npoundal\r\npounder\r\npounding\r\npour\r\npourboire\r\npouring\r\npousse-cafe\r\npoussin\r\npout\r\npouter\r\npouteria\r\npoverty\r\npoverty-stricken\r\npow\r\npowder\r\npowder-puff\r\npowdered\r\npowderer\r\npowderiness\r\npowderise\r\npowderize\r\npowderpuff\r\npowdery\r\npowdery-blue\r\npowell\r\npower\r\npower-assisted\r\npower-dive\r\npower-driven\r\npowerboat\r\npowerbroker\r\npowered\r\npowerful\r\npowerfully\r\npowerfulness\r\npowerhouse\r\npowerless\r\npowerlessness\r\npowerwash\r\npowhatan\r\npowwow\r\npowys\r\npox\r\npoxvirus\r\npoyang\r\npoyou\r\npozsony\r\nppk\r\npplo\r\nppp\r\npr\r\npracticability\r\npracticable\r\npracticableness\r\npracticably\r\npractical\r\npracticality\r\npractically\r\npractice\r\npracticed\r\npractician\r\npractise\r\npractised\r\npractitioner\r\npraenomen\r\npraesidium\r\npraetor\r\npraetorial\r\npraetorian\r\npraetorium\r\npraetorship\r\nprag\r\npragmatic\r\npragmatical\r\npragmatics\r\npragmatism\r\npragmatist\r\nprague\r\npraha\r\npraia\r\nprairial\r\nprairie\r\npraise\r\npraiseful\r\npraiseworthily\r\npraiseworthiness\r\npraiseworthy\r\npraising\r\npraisworthiness\r\nprajapati\r\nprakrit\r\nprakritic\r\npraline\r\npram\r\nprance\r\nprancer\r\nprandial\r\nprang\r\nprank\r\nprankish\r\nprankishness\r\nprankster\r\npraseodymium\r\nprat\r\nprate\r\nprater\r\npratfall\r\npratincole\r\nprattle\r\nprattler\r\npraunus\r\npravachol\r\npravastatin\r\nprawn\r\npraxis\r\npraxiteles\r\npray\r\npraya\r\nprayer\r\nprayerbook\r\nprayerful\r\nprazosin\r\nprc\r\npre-christian\r\npre-columbian\r\npre-eclampsia\r\npre-eminently\r\npre-empt\r\npre-emption\r\npre-emptive\r\npre-emptor\r\npre-existent\r\npre-existing\r\npre-jurassic\r\npre-raphaelite\r\npre-socratic\r\npreach\r\npreacher\r\npreachification\r\npreachify\r\npreaching\r\npreachment\r\npreachy\r\npreadolescent\r\npreakness\r\npreamble\r\npreanal\r\nprearrange\r\nprearranged\r\nprearrangement\r\npreassemble\r\nprebend\r\nprebendary\r\nprecambrian\r\nprecancerous\r\nprecarious\r\nprecariousness\r\nprecast\r\nprecative\r\nprecatory\r\nprecaution\r\nprecautional\r\nprecautionary\r\nprecava\r\nprecede\r\nprecedence\r\nprecedency\r\nprecedent\r\nprecedented\r\nprecedentedly\r\nprecedential\r\npreceding\r\nprecentor\r\nprecentorship\r\nprecept\r\npreceptor\r\npreceptorship\r\nprecess\r\nprecession\r\nprechlorination\r\nprecinct\r\npreciosity\r\nprecious\r\npreciously\r\npreciousness\r\nprecipice\r\nprecipitance\r\nprecipitancy\r\nprecipitant\r\nprecipitate\r\nprecipitately\r\nprecipitateness\r\nprecipitating\r\nprecipitation\r\nprecipitator\r\nprecipitin\r\nprecipitous\r\nprecipitously\r\nprecipitousness\r\nprecis\r\nprecise\r\nprecisely\r\npreciseness\r\nprecision\r\npreclinical\r\npreclude\r\npreclusion\r\npreclusive\r\nprecocial\r\nprecocious\r\nprecociousness\r\nprecocity\r\nprecognition\r\nprecognitive\r\npreconceive\r\npreconception\r\npreconcerted\r\nprecondition\r\npreconditioned\r\nprecook\r\nprecooked\r\nprecooled\r\nprecordial\r\nprecordium\r\nprecursor\r\nprecursory\r\npredaceous\r\npredacious\r\npredate\r\npredation\r\npredator\r\npredatory\r\npredecease\r\npredecessor\r\npredestinarian\r\npredestinarianism\r\npredestinate\r\npredestination\r\npredestinationist\r\npredestine\r\npredestined\r\npredeterminaation\r\npredetermination\r\npredetermine\r\npredetermined\r\npredicament\r\npredicate\r\npredication\r\npredicative\r\npredicator\r\npredict\r\npredictability\r\npredictable\r\npredicted\r\nprediction\r\npredictive\r\npredictor\r\npredigest\r\npredigested\r\npredilection\r\npredispose\r\npredisposed\r\npredisposition\r\nprednisolone\r\nprednisone\r\npredominance\r\npredominant\r\npredominantly\r\npredominate\r\npredomination\r\npreeclampsia\r\npreemie\r\npreeminence\r\npreeminent\r\npreeminently\r\npreempt\r\npreemption\r\npreemptive\r\npreemptor\r\npreen\r\npreexist\r\npreexistence\r\npreexistent\r\npreexisting\r\nprefab\r\nprefabricate\r\nprefabricated\r\nprefabrication\r\npreface\r\nprefaded\r\nprefatorial\r\nprefatory\r\nprefect\r\nprefectural\r\nprefecture\r\nprefer\r\npreferable\r\npreferably\r\npreference\r\npreferent\r\npreferential\r\npreferment\r\npreferred\r\nprefiguration\r\nprefigurative\r\nprefigure\r\nprefix\r\nprefixation\r\npreform\r\npreformation\r\nprefrontal\r\npregnancy\r\npregnanediol\r\npregnant\r\npreheat\r\nprehend\r\nprehensile\r\nprehension\r\nprehistoric\r\nprehistorical\r\nprehistory\r\npreindication\r\npreisolate\r\nprejudge\r\nprejudgement\r\nprejudgment\r\nprejudice\r\nprejudiced\r\nprejudicial\r\nprejudicious\r\nprelacy\r\nprelapsarian\r\nprelate\r\nprelature\r\nprelim\r\npreliminary\r\nprelims\r\npreliterate\r\nprelone\r\nprelude\r\npremarital\r\npremature\r\nprematurely\r\nprematureness\r\nprematurity\r\npremedical\r\npremeditate\r\npremeditated\r\npremeditation\r\npremenopausal\r\npremenstrual\r\npremie\r\npremier\r\npremiere\r\npremiership\r\npremise\r\npremises\r\npremiss\r\npremium\r\npremix\r\npremolar\r\npremonition\r\npremonitory\r\nprenanthes\r\nprenatal\r\nprenominal\r\nprentice\r\nprenuptial\r\npreoccupancy\r\npreoccupation\r\npreoccupied\r\npreoccupy\r\npreoperative\r\npreordain\r\npreordination\r\nprep\r\nprepackaged\r\nprepacked\r\nprepaid\r\npreparation\r\npreparative\r\npreparatory\r\nprepare\r\nprepared\r\npreparedness\r\nprepay\r\nprepayment\r\npreponderance\r\npreponderant\r\npreponderantly\r\npreponderate\r\npreponderating\r\nprepose\r\npreposition\r\nprepositional\r\nprepossess\r\nprepossessing\r\nprepossession\r\npreposterous\r\npreposterously\r\nprepotency\r\npreprandial\r\nprepubertal\r\nprepuberty\r\nprepubescent\r\nprepuce\r\nprepupal\r\nprerecord\r\nprerecorded\r\nprerequisite\r\nprerogative\r\npresage\r\npresbyope\r\npresbyopia\r\npresbyopic\r\npresbyter\r\npresbyterian\r\npresbyterianism\r\npresbytery\r\npresbytes\r\npreschool\r\npreschooler\r\nprescience\r\nprescient\r\npresciently\r\nprescott\r\nprescribe\r\nprescribed\r\nprescript\r\nprescription\r\nprescriptive\r\nprescriptivism\r\npreseason\r\npresence\r\npresent\r\npresent-day\r\npresentable\r\npresentation\r\npresentational\r\npresented\r\npresenter\r\npresentiment\r\npresentism\r\npresentist\r\npresently\r\npresentment\r\npresentness\r\npreservable\r\npreservation\r\npreservationist\r\npreservative\r\npreserve\r\npreserved\r\npreserver\r\npreserves\r\npreserving\r\npreset\r\npreside\r\npresidency\r\npresident\r\npresidential\r\npresidentship\r\npresidio\r\npresidium\r\npresley\r\npresocratic\r\npress\r\npress-up\r\npressburg\r\npressed\r\npressing\r\npressman\r\npressmark\r\npressor\r\npressure\r\npressure-cook\r\npressure-wash\r\npressurise\r\npressurised\r\npressurize\r\npressurized\r\nprestidigitation\r\nprestidigitator\r\nprestige\r\nprestigious\r\nprestigiousness\r\nprestissimo\r\npresto\r\npresumable\r\npresumably\r\npresume\r\npresumption\r\npresumptive\r\npresumptively\r\npresumptuous\r\npresumptuousness\r\npresuppose\r\npresupposition\r\npresymptomatic\r\npreteen\r\npreteenager\r\npretence\r\npretend\r\npretended\r\npretender\r\npretending\r\npretense\r\npretension\r\npretentious\r\npretentiously\r\npretentiousness\r\npreterist\r\npreterit\r\npreterite\r\npreterition\r\npretermission\r\npretermit\r\npreternatural\r\npreternaturally\r\npretext\r\npretor\r\npretoria\r\npretorial\r\npretorian\r\npretorium\r\npretrial\r\nprettify\r\nprettiness\r\npretty\r\npretty-pretty\r\npretzel\r\npreussen\r\nprevacid\r\nprevail\r\nprevailing\r\nprevalence\r\nprevalent\r\nprevaricate\r\nprevarication\r\nprevaricator\r\nprevenient\r\nprevent\r\npreventable\r\npreventative\r\nprevention\r\npreventive\r\npreview\r\nprevious\r\npreviously\r\nprevise\r\nprevision\r\nprevue\r\nprewar\r\nprexy\r\nprey\r\npriacanthidae\r\npriacanthus\r\npriam\r\npriapic\r\npriapism\r\npriapus\r\nprice\r\nprice-controlled\r\nprice-fixing\r\npriceless\r\npricelessness\r\npricey\r\npricing\r\nprick\r\npricker\r\npricket\r\npricking\r\nprickle\r\nprickle-weed\r\nprickleback\r\nprickliness\r\nprickling\r\nprickly\r\nprickly-leafed\r\nprickly-leaved\r\nprickteaser\r\npricy\r\npride\r\npride-of-india\r\nprideful\r\npridefulness\r\nprie-dieu\r\npriest\r\npriest-doctor\r\npriest-ridden\r\npriestcraft\r\npriestess\r\npriesthood\r\npriestley\r\npriestlike\r\npriestly\r\nprig\r\npriggish\r\npriggishness\r\nprilosec\r\nprim\r\nprima\r\nprimacy\r\nprimaeval\r\nprimal\r\nprimality\r\nprimaquine\r\nprimarily\r\nprimary\r\nprimate\r\nprimates\r\nprimateship\r\nprimatology\r\nprimaxin\r\nprime\r\nprimed\r\nprimer\r\nprimeval\r\nprimidone\r\nprimigravida\r\npriming\r\nprimipara\r\nprimiparous\r\nprimitive\r\nprimitively\r\nprimitiveness\r\nprimitivism\r\nprimly\r\nprimness\r\nprimo\r\nprimogenitor\r\nprimogeniture\r\nprimordial\r\nprimordium\r\nprimp\r\nprimping\r\nprimrose\r\nprimula\r\nprimulaceae\r\nprimulales\r\nprimus\r\nprince\r\nprince's-feather\r\nprince's-plume\r\nprince-of-wales'-heath\r\nprincedom\r\nprinceling\r\nprincely\r\nprincess\r\nprinceton\r\nprincewood\r\nprincipal\r\nprincipality\r\nprincipally\r\nprincipalship\r\nprincipe\r\nprincipen\r\nprinciple\r\nprincipled\r\nprinia\r\nprinival\r\nprink\r\nprint\r\nprintable\r\nprinted\r\nprinter\r\nprinting\r\nprintmaker\r\nprintmaking\r\nprintout\r\npriodontes\r\nprion\r\nprionace\r\nprionotus\r\nprior\r\nprioress\r\nprioritise\r\nprioritize\r\npriority\r\npriorship\r\npriory\r\npriscoan\r\nprise\r\nprism\r\nprismatic\r\nprismatoid\r\nprismoid\r\nprison\r\nprison-breaking\r\nprisonbreak\r\nprisoner\r\nprisonlike\r\nprissily\r\nprissy\r\npristidae\r\npristine\r\npristis\r\npritzelago\r\nprivacy\r\nprivate\r\nprivate-enterprise\r\nprivateer\r\nprivateersman\r\nprivately\r\nprivateness\r\nprivates\r\nprivation\r\nprivatisation\r\nprivatise\r\nprivatization\r\nprivatize\r\nprivet\r\nprivilege\r\nprivileged\r\nprivine\r\nprivy\r\nprize\r\nprizefight\r\nprizefighter\r\nprizewinning\r\nprn\r\npro\r\npro-american\r\npro-choice\r\npro-inflammatory\r\npro-life\r\npro-lifer\r\nproaccelerin\r\nproactive\r\nprobabilism\r\nprobabilistic\r\nprobability\r\nprobable\r\nprobably\r\nprobate\r\nprobation\r\nprobationary\r\nprobationer\r\nprobative\r\nprobatory\r\nprobe\r\nprobenecid\r\nprobing\r\nprobity\r\nproblem\r\nproblematic\r\nproblematical\r\nproboscidea\r\nproboscidean\r\nproboscidian\r\nproboscis\r\nprocaine\r\nprocarbazine\r\nprocardia\r\nprocaryote\r\nprocaryotic\r\nprocavia\r\nprocaviidae\r\nprocedural\r\nprocedure\r\nproceed\r\nproceeding\r\nproceedings\r\nproceeds\r\nprocellaria\r\nprocellariidae\r\nprocellariiformes\r\nprocess\r\nprocess-server\r\nprocessed\r\nprocessing\r\nprocession\r\nprocessional\r\nprocessor\r\nprochlorperazine\r\nprociphilus\r\nproclaim\r\nproclaimed\r\nproclamation\r\nproclivity\r\nprocnias\r\nproconsul\r\nproconsular\r\nproconsulate\r\nproconsulship\r\nproconvertin\r\nprocrastinate\r\nprocrastination\r\nprocrastinator\r\nprocreate\r\nprocreation\r\nprocreative\r\nprocrustean\r\nprocrustes\r\nproctalgia\r\nproctitis\r\nproctocele\r\nproctologist\r\nproctology\r\nproctoplasty\r\nproctor\r\nproctorship\r\nproctoscope\r\nproctoscopy\r\nprocumbent\r\nprocurable\r\nprocural\r\nprocurance\r\nprocurator\r\nprocure\r\nprocurement\r\nprocurer\r\nprocuress\r\nprocyclidine\r\nprocyon\r\nprocyonid\r\nprocyonidae\r\nprod\r\nprodding\r\nprodigal\r\nprodigality\r\nprodigally\r\nprodigious\r\nprodigy\r\nprodroma\r\nprodromal\r\nprodrome\r\nprodromic\r\nproduce\r\nproducer\r\nproduct\r\nproduction\r\nproductive\r\nproductively\r\nproductiveness\r\nproductivity\r\nproenzyme\r\nprof\r\nprofanation\r\nprofanatory\r\nprofane\r\nprofaned\r\nprofaneness\r\nprofanity\r\nprofess\r\nprofessed\r\nprofessedly\r\nprofessing\r\nprofession\r\nprofessional\r\nprofessionalisation\r\nprofessionalise\r\nprofessionalism\r\nprofessionalization\r\nprofessionalize\r\nprofessor\r\nprofessorial\r\nprofessorship\r\nproffer\r\nproficiency\r\nproficient\r\nprofile\r\nprofiling\r\nprofit\r\nprofit-making\r\nprofit-maximising\r\nprofit-maximizing\r\nprofitability\r\nprofitable\r\nprofitableness\r\nprofitably\r\nprofiteer\r\nprofitless\r\nprofitlessly\r\nprofits\r\nprofligacy\r\nprofligate\r\nprofligately\r\nprofound\r\nprofoundly\r\nprofoundness\r\nprofundity\r\nprofuse\r\nprofusely\r\nprofuseness\r\nprofusion\r\nprogenitor\r\nprogeny\r\nprogeria\r\nprogestational\r\nprogesterone\r\nprogestin\r\nprogestogen\r\nprognathic\r\nprognathism\r\nprognathous\r\nprogne\r\nprognosis\r\nprognostic\r\nprognosticate\r\nprognostication\r\nprognosticative\r\nprognosticator\r\nprogram\r\nprograming\r\nprogramma\r\nprogramme\r\nprogrammer\r\nprogramming\r\nprogress\r\nprogression\r\nprogressive\r\nprogressively\r\nprogressiveness\r\nprogressivism\r\nprogressivity\r\nprogymnosperm\r\nprohibit\r\nprohibited\r\nprohibition\r\nprohibitionist\r\nprohibitive\r\nprohibitory\r\nproinflammatory\r\nproject\r\nprojected\r\nprojectile\r\nprojecting\r\nprojection\r\nprojectionist\r\nprojector\r\nprokaryote\r\nprokaryotic\r\nprokayotae\r\nprokhorov\r\nprokofiev\r\nprolactin\r\nprolamine\r\nprolapse\r\nprolapsus\r\nprolate\r\nprole\r\nprolegomenon\r\nprolepsis\r\nproletarian\r\nproletariat\r\nproliferate\r\nproliferation\r\nprolific\r\nprolificacy\r\nproline\r\nprolix\r\nprolixity\r\nprolixness\r\nprolog\r\nprologise\r\nprologize\r\nprologue\r\nprologuize\r\nprolong\r\nprolongation\r\nprolonge\r\nprolonged\r\nprolusion\r\nprolusory\r\nprom\r\npromenade\r\npromethazine\r\nprometheus\r\npromethium\r\nprominence\r\nprominent\r\nprominently\r\npromiscuity\r\npromiscuous\r\npromiscuously\r\npromiscuousness\r\npromise\r\npromised\r\npromisee\r\npromiser\r\npromising\r\npromisor\r\npromissory\r\npromontory\r\npromote\r\npromoter\r\npromotion\r\npromotional\r\npromotive\r\nprompt\r\npromptbook\r\nprompter\r\nprompting\r\npromptitude\r\npromptly\r\npromptness\r\npromulgate\r\npromulgated\r\npromulgation\r\npromulgator\r\npromycelium\r\npronate\r\npronation\r\npronator\r\nprone\r\nproneness\r\nprong\r\nprongbuck\r\npronged\r\npronghorn\r\nprongy\r\npronk\r\npronominal\r\npronoun\r\npronounce\r\npronounceable\r\npronounced\r\npronouncement\r\npronto\r\npronucleus\r\npronunciamento\r\npronunciation\r\nproof\r\nproofed\r\nproofread\r\nproofreader\r\nprop\r\npropaedeutic\r\npropaedeutics\r\npropaganda\r\npropagandise\r\npropagandist\r\npropagandistic\r\npropagandize\r\npropagate\r\npropagation\r\npropagative\r\npropagator\r\npropanal\r\npropanamide\r\npropane\r\npropanediol\r\npropanol\r\npropanolol\r\npropanone\r\nproparoxytone\r\npropel\r\npropellant\r\npropellent\r\npropeller\r\npropelling\r\npropellor\r\npropenal\r\npropene\r\npropenoate\r\npropenonitrile\r\npropensity\r\nproper\r\nproperly\r\nproperness\r\npropertied\r\nproperty\r\nproperty-owning\r\npropertyless\r\nprophase\r\nprophecy\r\nprophesier\r\nprophesy\r\nprophet\r\nprophetess\r\nprophetic\r\nprophetical\r\nprophets\r\nprophylactic\r\nprophylaxis\r\nprophyll\r\npropinquity\r\npropionaldehyde\r\npropitiate\r\npropitiation\r\npropitiative\r\npropitiatory\r\npropitious\r\npropitiously\r\npropitiousness\r\npropjet\r\npropman\r\nproponent\r\nproportion\r\nproportionable\r\nproportional\r\nproportionality\r\nproportionally\r\nproportionate\r\nproportionately\r\nproportionateness\r\nproposal\r\npropose\r\nproposed\r\nproposer\r\nproposition\r\npropositus\r\npropound\r\npropoxyphene\r\nproprietary\r\nproprietor\r\nproprietorship\r\nproprietress\r\npropriety\r\nproprioception\r\nproprioceptive\r\nproprioceptor\r\nproprionamide\r\nprops\r\npropulsion\r\npropulsive\r\npropyl\r\npropylene\r\npropylthiouracil\r\nprorate\r\nproration\r\nprorogation\r\nprorogue\r\nprosaic\r\nprosaically\r\nprosaicness\r\nprosauropoda\r\nproscenium\r\nprosciuto\r\nproscribe\r\nproscribed\r\nproscription\r\nprose\r\nprosecute\r\nprosecution\r\nprosecutor\r\nproselyte\r\nproselytise\r\nproselytism\r\nproselytize\r\nprosencephalon\r\nproserpina\r\nproserpine\r\nprosimian\r\nprosimii\r\nprosiness\r\nprosodic\r\nprosodion\r\nprosody\r\nprosom\r\nprosopis\r\nprosopium\r\nprosopopoeia\r\nprospect\r\nprospective\r\nprospector\r\nprospectus\r\nprosper\r\nprospering\r\nprosperity\r\nprosperous\r\nprospicience\r\nprospicient\r\nprostaglandin\r\nprostate\r\nprostatectomy\r\nprostatic\r\nprostatitis\r\nprostheon\r\nprosthesis\r\nprosthetic\r\nprosthetics\r\nprosthetist\r\nprosthion\r\nprosthodontia\r\nprosthodontic\r\nprosthodontics\r\nprosthodontist\r\nprostigmin\r\nprostitute\r\nprostitution\r\nprostrate\r\nprostration\r\nprostyle\r\nprosy\r\nprotactinium\r\nprotagonism\r\nprotagonist\r\nprotamine\r\nprotanopia\r\nprotanopic\r\nprotea\r\nproteaceae\r\nproteales\r\nprotean\r\nprotease\r\nprotect\r\nprotected\r\nprotecting\r\nprotection\r\nprotectionism\r\nprotectionist\r\nprotective\r\nprotectively\r\nprotectiveness\r\nprotector\r\nprotectorate\r\nprotectorship\r\nprotege\r\nprotegee\r\nproteidae\r\nprotein\r\nproteinaceous\r\nproteinase\r\nproteinuria\r\nproteles\r\nproteolysis\r\nproteolytic\r\nproteome\r\nproteomics\r\nproteosome\r\nproterochampsa\r\nproterozoic\r\nprotest\r\nprotestant\r\nprotestantism\r\nprotestation\r\nprotester\r\nprotesting\r\nproteus\r\nprothalamion\r\nprothalamium\r\nprothorax\r\nprothrombin\r\nprothrombinase\r\nprotirelin\r\nprotist\r\nprotista\r\nprotistan\r\nprotium\r\nproto\r\nproto-norse\r\nproto-oncogene\r\nprotoactinium\r\nprotoanthropology\r\nprotoarchaeology\r\nprotoarcheology\r\nprotoavis\r\nprotoceratops\r\nprotocol\r\nprotoctist\r\nprotoctista\r\nprotogeometric\r\nprotoheme\r\nprotohemin\r\nprotohippus\r\nprotohistory\r\nprotology\r\nprotomammal\r\nproton\r\nprotoplasm\r\nprotoplast\r\nprototheria\r\nprototherian\r\nprototypal\r\nprototype\r\nprototypic\r\nprototypical\r\nprotozoa\r\nprotozoa-like\r\nprotozoal\r\nprotozoan\r\nprotozoic\r\nprotozoologist\r\nprotozoology\r\nprotozoon\r\nprotract\r\nprotracted\r\nprotractedly\r\nprotractible\r\nprotractile\r\nprotraction\r\nprotractor\r\nprotriptyline\r\nprotropin\r\nprotrude\r\nprotruding\r\nprotrusible\r\nprotrusile\r\nprotrusion\r\nprotrusive\r\nprotuberance\r\nprotuberant\r\nprotuberate\r\nprotura\r\nproturan\r\nproud\r\nproudhon\r\nproudly\r\nproust\r\nproustian\r\nprovability\r\nprovable\r\nprovably\r\nprove\r\nproved\r\nproven\r\nprovenance\r\nprovencal\r\nprovence\r\nprovender\r\nprovenience\r\nproventil\r\nprovera\r\nproverb\r\nproverbial\r\nproverbs\r\nprovide\r\nprovidence\r\nprovident\r\nprovidential\r\nprovidentially\r\nprovidently\r\nprovider\r\nprovince\r\nprovincial\r\nprovincialism\r\nprovision\r\nprovisional\r\nprovisionary\r\nprovisioner\r\nprovisions\r\nproviso\r\nprovisory\r\nprovitamin\r\nprovo\r\nprovocateur\r\nprovocation\r\nprovocative\r\nprovocatively\r\nprovoke\r\nprovoked\r\nprovoker\r\nprovoking\r\nprovokingly\r\nprovos\r\nprovost\r\nprow\r\nprowess\r\nprowl\r\nprowler\r\nprox\r\nproxemics\r\nproxima\r\nproximal\r\nproximate\r\nproximity\r\nproximo\r\nproxy\r\nprozac\r\nprude\r\nprudence\r\nprudent\r\nprudential\r\nprudently\r\nprudery\r\nprudish\r\nprudishly\r\nprudishness\r\nprumnopitys\r\nprune\r\nprunella\r\nprunellidae\r\npruner\r\npruning\r\npruno\r\nprunus\r\nprurience\r\npruriency\r\nprurient\r\nprurigo\r\npruritus\r\nprussia\r\nprussian\r\npry\r\nprying\r\nps\r\npsa\r\npsalm\r\npsalmist\r\npsalmody\r\npsalms\r\npsalter\r\npsalterium\r\npsaltery\r\npsaltriparus\r\npsammoma\r\npsenes\r\npsephologist\r\npsephology\r\npsephurus\r\npsetta\r\npsettichthys\r\npseud\r\npseudacris\r\npseudaletia\r\npseudechis\r\npseudemys\r\npseudepigrapha\r\npseudo\r\npseudobombax\r\npseudobulb\r\npseudocarp\r\npseudococcidae\r\npseudococcus\r\npseudocolus\r\npseudocyesis\r\npseudoephedrine\r\npseudohallucination\r\npseudohermaphrodite\r\npseudohermaphroditic\r\npseudohermaphroditism\r\npseudolarix\r\npseudomonad\r\npseudomonadales\r\npseudomonas\r\npseudomonodaceae\r\npseudonym\r\npseudonymous\r\npseudoperipteral\r\npseudophloem\r\npseudopleuronectes\r\npseudopod\r\npseudopodium\r\npseudoprostyle\r\npseudorubella\r\npseudoryx\r\npseudoscience\r\npseudoscientific\r\npseudoscorpion\r\npseudoscorpiones\r\npseudoscorpionida\r\npseudosmallpox\r\npseudotaxus\r\npseudotsuga\r\npseudovariola\r\npseudowintera\r\npsf\r\npsi\r\npsidium\r\npsilocin\r\npsilocybin\r\npsilomelane\r\npsilophytaceae\r\npsilophytales\r\npsilophyte\r\npsilophyton\r\npsilopsida\r\npsilosis\r\npsilotaceae\r\npsilotales\r\npsilotatae\r\npsilotum\r\npsithyrus\r\npsittacidae\r\npsittaciformes\r\npsittacosaur\r\npsittacosaurus\r\npsittacosis\r\npsittacula\r\npsittacus\r\npsoas\r\npsocid\r\npsocidae\r\npsocoptera\r\npsophia\r\npsophiidae\r\npsophocarpus\r\npsoralea\r\npsoriasis\r\npst\r\npsyche\r\npsychedelia\r\npsychedelic\r\npsychiatric\r\npsychiatrical\r\npsychiatrist\r\npsychiatry\r\npsychic\r\npsychical\r\npsycho\r\npsychoactive\r\npsychoanalyse\r\npsychoanalysis\r\npsychoanalyst\r\npsychoanalytic\r\npsychoanalytical\r\npsychoanalyze\r\npsychobabble\r\npsychodid\r\npsychodidae\r\npsychogenesis\r\npsychogenetic\r\npsychogenic\r\npsychokinesis\r\npsychokinetic\r\npsycholinguist\r\npsycholinguistic\r\npsycholinguistics\r\npsychological\r\npsychologist\r\npsychology\r\npsychometric\r\npsychometrics\r\npsychometrika\r\npsychometry\r\npsychomotor\r\npsychoneurosis\r\npsychoneurotic\r\npsychonomics\r\npsychopath\r\npsychopathic\r\npsychopathologic\r\npsychopathological\r\npsychopathology\r\npsychopathy\r\npsychopharmacological\r\npsychopharmacology\r\npsychophysicist\r\npsychophysics\r\npsychophysiology\r\npsychopomp\r\npsychopsis\r\npsychosexual\r\npsychosexuality\r\npsychosis\r\npsychosomatic\r\npsychosurgery\r\npsychotherapeutic\r\npsychotherapeutics\r\npsychotherapist\r\npsychotherapy\r\npsychotic\r\npsychotria\r\npsychotropic\r\npsychrometer\r\npsylla\r\npsyllid\r\npsyllidae\r\npsyllium\r\npsyop\r\npt\r\nptah\r\nptarmigan\r\npteretis\r\npteridaceae\r\npteridium\r\npteridological\r\npteridologist\r\npteridology\r\npteridophyta\r\npteridophyte\r\npteridosperm\r\npteridospermae\r\npteridospermaphyta\r\npteridospermopsida\r\npteriidae\r\npterion\r\npteris\r\npternohyla\r\npterocarpus\r\npterocarya\r\npterocles\r\npteroclididae\r\npterocnemia\r\npterodactyl\r\npterodactylidae\r\npterodactylus\r\npterois\r\npteropogon\r\npteropsida\r\npteropus\r\npterosaur\r\npterosauria\r\npterospermum\r\npterostylis\r\npterygium\r\nptilocercus\r\nptilocrinus\r\nptilonorhynchidae\r\nptilonorhynchus\r\nptloris\r\npto\r\nptolemaic\r\nptolemy\r\nptomain\r\nptomaine\r\nptosis\r\nptsd\r\nptyalin\r\nptyalise\r\nptyalism\r\nptyalith\r\nptyalize\r\nptyas\r\nptychozoon\r\npu\r\npub\r\npub-crawl\r\npubertal\r\npuberty\r\npuberulent\r\npubes\r\npubescence\r\npubescent\r\npubic\r\npubis\r\npublic\r\npublic-spirited\r\npublically\r\npublican\r\npublication\r\npublicise\r\npublicised\r\npubliciser\r\npublicist\r\npublicity\r\npublicize\r\npublicized\r\npublicizer\r\npublicizing\r\npublicly\r\npublish\r\npublishable\r\npublished\r\npublisher\r\npublishing\r\npuccini\r\npuccinia\r\npucciniaceae\r\npuccoon\r\npuce\r\npuck\r\npucka\r\npucker\r\npuckerbush\r\npuckish\r\npuckishly\r\npuckishness\r\npud\r\npudden-head\r\npudding\r\npudding-face\r\npudding-wife\r\npuddingheaded\r\npuddingwife\r\npuddle\r\npuddler\r\npudendal\r\npudendum\r\npudge\r\npudginess\r\npudgy\r\npuebla\r\npueblo\r\npueraria\r\npuerile\r\npuerility\r\npuerpera\r\npuerperal\r\npuerperium\r\npuff\r\npuffball\r\npuffbird\r\npuffed\r\npuffer\r\npufferfish\r\npuffery\r\npuffin\r\npuffiness\r\npuffing\r\npuffinus\r\npuffy\r\npug\r\npug-dog\r\npug-faced\r\npug-nose\r\npug-nosed\r\npugilism\r\npugilist\r\npugilistic\r\npugin\r\npuglia\r\npugnacious\r\npugnacity\r\npuissance\r\npuissant\r\npujunan\r\npuka\r\npuke\r\npuking\r\npukka\r\npuku\r\npul\r\npula\r\npulasan\r\npulassan\r\npulchritude\r\npulchritudinous\r\npule\r\npulex\r\npulicaria\r\npulicidae\r\npulitzer\r\npull\r\npull-in\r\npull-off\r\npull-through\r\npull-up\r\npullback\r\npuller\r\npullet\r\npulley\r\npulley-block\r\npulling\r\npullman\r\npullout\r\npullover\r\npullulate\r\npullulation\r\npulmonary\r\npulmonata\r\npulmonic\r\npulp\r\npulpiness\r\npulpit\r\npulpwood\r\npulpy\r\npulque\r\npulsar\r\npulsate\r\npulsatilla\r\npulsating\r\npulsation\r\npulse\r\npulsed\r\npulseless\r\npulsing\r\npulverisation\r\npulverise\r\npulverised\r\npulverization\r\npulverize\r\npulverized\r\npuma\r\npumice\r\npummel\r\npummelo\r\npump\r\npumped\r\npumped-up\r\npumpernickel\r\npumpkin\r\npumpkin-shaped\r\npumpkinseed\r\npun\r\npunch\r\npunch-drunk\r\npunch-up\r\npunchayet\r\npunchball\r\npunchboard\r\npuncher\r\npunctilio\r\npunctilious\r\npunctiliousness\r\npunctual\r\npunctuality\r\npunctually\r\npunctuate\r\npunctuation\r\npunctum\r\npuncturable\r\npuncture\r\npunctured\r\npunctureless\r\npundit\r\npung\r\npungapung\r\npungency\r\npungent\r\npunic\r\npunica\r\npunicaceae\r\npuniness\r\npunish\r\npunishable\r\npunished\r\npunishing\r\npunishment\r\npunitive\r\npunitively\r\npunitorily\r\npunitory\r\npunjab\r\npunjabi\r\npunk\r\npunkah\r\npunkey\r\npunkie\r\npunks\r\npunky\r\npunnet\r\npunning\r\npunster\r\npunt\r\npunter\r\npunting\r\npuny\r\npup\r\npupa\r\npupal\r\npupate\r\npupil\r\npupillary\r\npuppet\r\npuppeteer\r\npuppetry\r\npuppis\r\npuppy\r\npuppyish\r\npuppylike\r\npurace\r\npurana\r\npuranic\r\npurau\r\npurblind\r\npurcell\r\npurchasable\r\npurchase\r\npurchaser\r\npurchasing\r\npurdah\r\npure\r\npureblood\r\npureblooded\r\npurebred\r\npuree\r\npurely\r\npureness\r\npurgation\r\npurgative\r\npurgatorial\r\npurgatory\r\npurge\r\npurging\r\npurification\r\npurified\r\npurifier\r\npurify\r\npurifying\r\npurim\r\npurine\r\npurinethol\r\npurism\r\npurist\r\npuritan\r\npuritanic\r\npuritanical\r\npuritanically\r\npuritanism\r\npurity\r\npurkinje\r\npurl\r\npurlieu\r\npurloin\r\npurloined\r\npurloo\r\npurple\r\npurple-black\r\npurple-blue\r\npurple-brown\r\npurple-eyed\r\npurple-flowered\r\npurple-green\r\npurple-lilac\r\npurple-red\r\npurple-spotted\r\npurple-tinged\r\npurple-tinted\r\npurple-veined\r\npurple-white\r\npurpleness\r\npurplish\r\npurplish-black\r\npurplish-blue\r\npurplish-brown\r\npurplish-green\r\npurplish-lilac\r\npurplish-red\r\npurplish-white\r\npurport\r\npurported\r\npurportedly\r\npurpose\r\npurpose-built\r\npurpose-made\r\npurposeful\r\npurposefulness\r\npurposeless\r\npurposelessness\r\npurposely\r\npurposive\r\npurpura\r\npurpurate\r\npurr\r\npurse\r\npurse-proud\r\npurser\r\npurslane\r\npursual\r\npursuance\r\npursuant\r\npursue\r\npursued\r\npursuer\r\npursuing\r\npursuit\r\npursy\r\npurulence\r\npurulency\r\npurulent\r\npurus\r\npurvey\r\npurveyance\r\npurveyor\r\npurview\r\npus\r\npusan\r\npusey\r\npuseyism\r\npush\r\npush-bike\r\npushan\r\npushball\r\npushcart\r\npushchair\r\npusher\r\npushful\r\npushiness\r\npushing\r\npushkin\r\npushover\r\npushpin\r\npushtun\r\npushup\r\npushy\r\npusillanimity\r\npusillanimous\r\npusillanimously\r\npusillanimousness\r\npusly\r\npuss\r\npussley\r\npussy\r\npussy's-paw\r\npussy-paw\r\npussy-paws\r\npussycat\r\npussyfoot\r\npussytoes\r\npustulate\r\npustule\r\nput\r\nput-down\r\nput-on\r\nput-put\r\nput-up\r\nput-upon\r\nputamen\r\nputative\r\nputdownable\r\nputin\r\nputoff\r\nputout\r\nputrajaya\r\nputrefacient\r\nputrefaction\r\nputrefactive\r\nputrefiable\r\nputrefy\r\nputrescence\r\nputrescent\r\nputrescible\r\nputrescine\r\nputrid\r\nputrid-smelling\r\nputridity\r\nputridness\r\nputsch\r\nputt\r\nputtee\r\nputter\r\nputterer\r\nputting\r\nputty\r\nputtyroot\r\nputz\r\npuzzle\r\npuzzled\r\npuzzlement\r\npuzzler\r\npuzzling\r\npva\r\npvc\r\npwr\r\npx\r\npya\r\npyaemia\r\npyaemic\r\npycnanthemum\r\npycnidium\r\npycnodysostosis\r\npycnogonid\r\npycnogonida\r\npycnosis\r\npycnotic\r\npydna\r\npye-dog\r\npyelitis\r\npyelogram\r\npyelography\r\npyelonephritis\r\npyemia\r\npyemic\r\npygmalion\r\npygmy\r\npygopodidae\r\npygopus\r\npygoscelis\r\npyinma\r\npyjama\r\npyknic\r\npyknosis\r\npyknotic\r\npyle\r\npylodictus\r\npylon\r\npyloric\r\npylorus\r\npynchon\r\npyocyanase\r\npyocyanin\r\npyogenic\r\npyongyang\r\npyorrhea\r\npyorrhoea\r\npyracanth\r\npyracantha\r\npyralid\r\npyralidae\r\npyralididae\r\npyralis\r\npyramid\r\npyramidal\r\npyramidic\r\npyramidical\r\npyramiding\r\npyrausta\r\npyre\r\npyrectic\r\npyrene\r\npyrenees\r\npyrenomycetes\r\npyrethrum\r\npyretic\r\npyrex\r\npyrexia\r\npyridine\r\npyridium\r\npyridoxal\r\npyridoxamine\r\npyridoxine\r\npyrilamine\r\npyrimidine\r\npyrite\r\npyrites\r\npyrocellulose\r\npyrocephalus\r\npyrochemical\r\npyrochemistry\r\npyroelectric\r\npyroelectrical\r\npyroelectricity\r\npyrogallic\r\npyrogallol\r\npyrogen\r\npyrogenetic\r\npyrogenic\r\npyrogenous\r\npyrograph\r\npyrographer\r\npyrographic\r\npyrography\r\npyrola\r\npyrolaceae\r\npyrolatry\r\npyroligneous\r\npyrolignic\r\npyrolusite\r\npyrolysis\r\npyrolytic\r\npyromancer\r\npyromancy\r\npyromania\r\npyromaniac\r\npyrometer\r\npyromorphite\r\npyrope\r\npyrophobia\r\npyrophorus\r\npyrophosphate\r\npyrophyllite\r\npyroscope\r\npyrosis\r\npyrostat\r\npyrotechnic\r\npyrotechnical\r\npyrotechnics\r\npyrotechny\r\npyroxene\r\npyroxylin\r\npyroxyline\r\npyrrhic\r\npyrrhocoridae\r\npyrrhotine\r\npyrrhotite\r\npyrrhula\r\npyrrhuloxia\r\npyrrhus\r\npyrrophyta\r\npyrrosia\r\npyrularia\r\npyrus\r\npythagoras\r\npythagorean\r\npythia\r\npythiaceae\r\npythias\r\npythium\r\npythius\r\npython\r\npythoness\r\npythonidae\r\npythoninae\r\npyuria\r\npyx\r\npyxidanthera\r\npyxidium\r\npyxie\r\npyxis\r\nq\r\nqabala\r\nqabalah\r\nqabalistic\r\nqabbala\r\nqabbalah\r\nqaddafi\r\nqadhafi\r\nqadi\r\nqaeda\r\nqandahar\r\nqat\r\nqatar\r\nqatari\r\nqcd\r\nqed\r\nqepiq\r\nqi\r\nqiang\r\nqiangic\r\nqibla\r\nqindarka\r\nqing\r\nqintar\r\nqoph\r\nquaalude\r\nquack\r\nquack-quack\r\nquackery\r\nquackgrass\r\nquad\r\nquadragesima\r\nquadrangle\r\nquadrangular\r\nquadrant\r\nquadrantanopia\r\nquadraphonic\r\nquadraphony\r\nquadrasonic\r\nquadrate\r\nquadratic\r\nquadratics\r\nquadrature\r\nquadrennium\r\nquadric\r\nquadriceps\r\nquadrilateral\r\nquadrille\r\nquadrillion\r\nquadrillionth\r\nquadripara\r\nquadripartite\r\nquadriphonic\r\nquadriplegia\r\nquadriplegic\r\nquadrisonic\r\nquadrivium\r\nquadroon\r\nquadrumvirate\r\nquadruped\r\nquadrupedal\r\nquadruple\r\nquadruplet\r\nquadruplex\r\nquadruplicate\r\nquadrupling\r\nquaestor\r\nquaff\r\nquaffer\r\nquag\r\nquagga\r\nquaggy\r\nquagmire\r\nquahaug\r\nquahog\r\nquail\r\nquail-like\r\nquaint\r\nquaintness\r\nquake\r\nquaker\r\nquakerism\r\nquakers\r\nqualification\r\nqualified\r\nqualifier\r\nqualify\r\nqualifying\r\nqualitative\r\nquality\r\nqualm\r\nquamash\r\nquamassia\r\nquandang\r\nquandary\r\nquandong\r\nquango\r\nquantal\r\nquantic\r\nquantifiability\r\nquantifiable\r\nquantification\r\nquantifier\r\nquantify\r\nquantisation\r\nquantise\r\nquantitative\r\nquantity\r\nquantization\r\nquantize\r\nquantized\r\nquantong\r\nquantum\r\nquaoar\r\nquapaw\r\nquarantine\r\nquarantined\r\nquark\r\nquarrel\r\nquarreler\r\nquarreller\r\nquarrelsome\r\nquarrelsomeness\r\nquarrier\r\nquarry\r\nquarrying\r\nquarryman\r\nquart\r\nquartan\r\nquarter\r\nquarter-century\r\nquarter-circle\r\nquarter-hour\r\nquarter-tone\r\nquarter-vine\r\nquarterback\r\nquarterdeck\r\nquarterfinal\r\nquartering\r\nquarterlight\r\nquarterly\r\nquartermaster\r\nquartern\r\nquarters\r\nquarterstaff\r\nquartervine\r\nquartet\r\nquartette\r\nquartic\r\nquartile\r\nquarto\r\nquartz\r\nquartzite\r\nquartzose\r\nquasar\r\nquash\r\nquasi\r\nquasi-ngo\r\nquasi-religious\r\nquasi-royal\r\nquasiparticle\r\nquassia\r\nquat\r\nquatercentenary\r\nquatercentennial\r\nquatern\r\nquaternary\r\nquaternate\r\nquaternion\r\nquaternity\r\nquatrain\r\nquattrocento\r\nquaver\r\nquavering\r\nquay\r\nquayage\r\nqueasiness\r\nqueasy\r\nquebec\r\nquebecois\r\nquechua\r\nquechuan\r\nqueen\r\nqueen-size\r\nqueen-sized\r\nqueenfish\r\nqueenlike\r\nqueenly\r\nqueens\r\nqueensland\r\nqueer\r\nqueerly\r\nqueerness\r\nquell\r\nquelled\r\nquelling\r\nquellung\r\nquench\r\nquenched\r\nquenching\r\nquenchless\r\nquercitron\r\nquercus\r\nquerier\r\nquern\r\nquerulous\r\nquerulously\r\nquerulousness\r\nquery\r\nquest\r\nquester\r\nquestion\r\nquestionable\r\nquestionably\r\nquestioner\r\nquestioning\r\nquestioningly\r\nquestionnaire\r\nquetch\r\nquetzal\r\nquetzalcoatl\r\nqueue\r\nquiaquia\r\nquibble\r\nquibbler\r\nquibbling\r\nquiche\r\nquick\r\nquick-change\r\nquick-drying\r\nquick-eared\r\nquick-freeze\r\nquick-frozen\r\nquick-sighted\r\nquick-tempered\r\nquick-witted\r\nquick-wittedness\r\nquicken\r\nquickener\r\nquickening\r\nquicker\r\nquickest\r\nquickie\r\nquicklime\r\nquickly\r\nquickness\r\nquicksand\r\nquickset\r\nquicksilver\r\nquickstep\r\nquicky\r\nquid\r\nquiddity\r\nquidnunc\r\nquiesce\r\nquiescence\r\nquiescency\r\nquiescent\r\nquiet\r\nquieten\r\nquietening\r\nquietism\r\nquietist\r\nquietly\r\nquietness\r\nquietude\r\nquietus\r\nquiff\r\nquill\r\nquillwort\r\nquilt\r\nquilted\r\nquilting\r\nquin\r\nquinacrine\r\nquince\r\nquincentenary\r\nquincentennial\r\nquincy\r\nquine\r\nquinidex\r\nquinidine\r\nquinine\r\nquinone\r\nquinora\r\nquinquagesima\r\nquinquefoliate\r\nquinquennium\r\nquinsy\r\nquint\r\nquintal\r\nquintessence\r\nquintessential\r\nquintet\r\nquintette\r\nquintillion\r\nquintillionth\r\nquintipara\r\nquintuple\r\nquintuplet\r\nquintupling\r\nquip\r\nquipu\r\nquira\r\nquire\r\nquirk\r\nquirkiness\r\nquirky\r\nquirt\r\nquiscalus\r\nquisling\r\nquislingism\r\nquit\r\nquitclaim\r\nquite\r\nquito\r\nquits\r\nquittance\r\nquitter\r\nquiver\r\nquivering\r\nquixotic\r\nquixotism\r\nquiz\r\nquizmaster\r\nquizzer\r\nquizzical\r\nquizzically\r\nqum\r\nquodlibet\r\nquoin\r\nquoit\r\nquoits\r\nquondam\r\nquoratean\r\nquorum\r\nquota\r\nquotability\r\nquotable\r\nquotation\r\nquote\r\nquoter\r\nquotidian\r\nquotient\r\nquran\r\nqurush\r\nr\r\nr-2\r\nr.c.\r\nr.v.\r\nra\r\nrabat\r\nrabato\r\nrabbet\r\nrabbi\r\nrabbinate\r\nrabbinic\r\nrabbinical\r\nrabbit\r\nrabbit-sized\r\nrabbit-weed\r\nrabbiteye\r\nrabbitfish\r\nrabbitweed\r\nrabbitwood\r\nrabble\r\nrabble-rouser\r\nrabble-rousing\r\nrabelais\r\nrabelaisian\r\nrabid\r\nrabidity\r\nrabidness\r\nrabies\r\nraccoon\r\nraccoon-like\r\nrace\r\nraceabout\r\nracecard\r\nracecourse\r\nracehorse\r\nraceme\r\nracemose\r\nracer\r\nracerunner\r\nracetrack\r\nraceway\r\nrachel\r\nrachet\r\nrachis\r\nrachischisis\r\nrachitic\r\nrachitis\r\nrachmaninoff\r\nrachmaninov\r\nrachycentridae\r\nrachycentron\r\nracial\r\nracialism\r\nracialist\r\nracine\r\nraciness\r\nracing\r\nracism\r\nracist\r\nrack\r\nracker\r\nracket\r\nracketeer\r\nracketeering\r\nracketiness\r\nrackety\r\nracking\r\nracon\r\nraconteur\r\nracoon\r\nracquet\r\nracquetball\r\nracy\r\nrad\r\nradar\r\nraddle\r\nraddled\r\nradhakrishnan\r\nradial\r\nradial-ply\r\nradian\r\nradiance\r\nradiancy\r\nradiant\r\nradiate\r\nradiating\r\nradiation\r\nradiator\r\nradical\r\nradicalism\r\nradicalize\r\nradicchio\r\nradicle\r\nradiculitis\r\nradiigera\r\nradio\r\nradio-controlled\r\nradio-gramophone\r\nradio-opacity\r\nradio-opaque\r\nradio-phonograph\r\nradioactive\r\nradioactivity\r\nradiobiology\r\nradiocarbon\r\nradiochemist\r\nradiochemistry\r\nradiochlorine\r\nradiocommunication\r\nradiogram\r\nradiograph\r\nradiographer\r\nradiographic\r\nradiography\r\nradioimmunoassay\r\nradioisotope\r\nradiolaria\r\nradiolarian\r\nradiolocate\r\nradiolocation\r\nradiological\r\nradiologist\r\nradiology\r\nradiolucent\r\nradiolysis\r\nradiometer\r\nradiomicrometer\r\nradiopacity\r\nradiopaque\r\nradiopharmaceutical\r\nradiophone\r\nradiophonic\r\nradiophoto\r\nradiophotograph\r\nradiophotography\r\nradioprotection\r\nradioscopy\r\nradiosensitive\r\nradiosensitivity\r\nradiotelegraph\r\nradiotelegraphy\r\nradiotelephone\r\nradiotelephonic\r\nradiotelephony\r\nradiotherapist\r\nradiotherapy\r\nradiothorium\r\nradish\r\nradium\r\nradius\r\nradix\r\nradome\r\nradon\r\nradyera\r\nraetam\r\nraf\r\nraffia\r\nraffinose\r\nraffish\r\nraffishly\r\nraffle\r\nraffles\r\nrafflesiaceae\r\nraft\r\nrafter\r\nraftered\r\nraftman\r\nrafts\r\nraftsman\r\nrag\r\nragamuffin\r\nragbag\r\nrage\r\nragee\r\nragged\r\nraggedly\r\nraggedness\r\nragi\r\nraging\r\nraglan\r\nragnarok\r\nragout\r\nragpicker\r\nragsorter\r\nragtag\r\nragtime\r\nragusa\r\nragweed\r\nragwort\r\nrahu\r\nraid\r\nraider\r\nraiding\r\nrail\r\nrail-splitter\r\nrailbird\r\nrailcar\r\nrailhead\r\nrailing\r\nraillery\r\nrailroad\r\nrailroader\r\nrailroading\r\nrails\r\nrailway\r\nrailwayman\r\nraiment\r\nraimentless\r\nrain\r\nrain-giver\r\nrain-in-the-face\r\nrain-wash\r\nrainbow\r\nrainbow-like\r\nraincoat\r\nraindrop\r\nrainfall\r\nrainfly\r\nrainforest\r\nraininess\r\nraining\r\nrainless\r\nrainmaker\r\nrainmaking\r\nrainproof\r\nrainstorm\r\nrainwater\r\nrainy\r\nraisable\r\nraise\r\nraiseable\r\nraised\r\nraiser\r\nraisin\r\nraising\r\nraita\r\nraiu\r\nraj\r\nraja\r\nrajab\r\nrajah\r\nrajanya\r\nrajidae\r\nrajiformes\r\nrajpoot\r\nrajput\r\nrakaposhi\r\nrake\r\nrake-off\r\nrakehell\r\nrakish\r\nrakishly\r\nrakishness\r\nrale\r\nralegh\r\nraleigh\r\nrallentando\r\nrallidae\r\nrally\r\nrallying\r\nram\r\nram's-head\r\nrama\r\nramachandra\r\nramadan\r\nramalina\r\nramanavami\r\nramate\r\nramayana\r\nramble\r\nrambler\r\nrambling\r\nramblingly\r\nrambotan\r\nrambouillet\r\nrambunctious\r\nrambutan\r\nrameau\r\nramee\r\nramekin\r\nramequin\r\nrameses\r\nramesses\r\nramie\r\nramification\r\nramify\r\nramjet\r\nramman\r\nrammer\r\nramona\r\nramontchi\r\nramose\r\nramous\r\nramp\r\nrampage\r\nrampageous\r\nrampant\r\nrampantly\r\nrampart\r\nramphastidae\r\nramphomicron\r\nrampion\r\nramrod\r\nramses\r\nramshackle\r\nramsons\r\nramus\r\nrana\r\nranales\r\nranatra\r\nranch\r\nrancher\r\nranching\r\nrancid\r\nrancidity\r\nrancidness\r\nrancor\r\nrancorous\r\nrancour\r\nrand\r\nrandom\r\nrandomisation\r\nrandomise\r\nrandomised\r\nrandomization\r\nrandomize\r\nrandomized\r\nrandomly\r\nrandomness\r\nrandy\r\nranee\r\nrange\r\nrangefinder\r\nrangeland\r\nranger\r\nrangifer\r\nrangoon\r\nrangpur\r\nrangy\r\nrani\r\nranid\r\nranidae\r\nranier\r\nranitidine\r\nrank\r\nrank-smelling\r\nranked\r\nranker\r\nrankin\r\nrankine\r\nranking\r\nrankle\r\nrankness\r\nransack\r\nransacked\r\nransacking\r\nransom\r\nransomed\r\nrant\r\nranter\r\nranting\r\nranula\r\nranunculaceae\r\nranunculales\r\nranunculus\r\nraoulia\r\nrap\r\nrapacious\r\nrapaciousness\r\nrapacity\r\nrapateaceae\r\nrape\r\nraped\r\nraper\r\nrapeseed\r\nraphael\r\nraphanus\r\nraphe\r\nraphia\r\nraphicerus\r\nraphidae\r\nraphidiidae\r\nraphus\r\nrapid\r\nrapidity\r\nrapidly\r\nrapidness\r\nrapier\r\nrapine\r\nrapist\r\nrappahannock\r\nrappee\r\nrappel\r\nrapper\r\nrapport\r\nrapporteur\r\nrapprochement\r\nrapscallion\r\nrapt\r\nraptor\r\nraptores\r\nraptorial\r\nrapture\r\nrapturous\r\nrapturously\r\nraptus\r\nrare\r\nrare-roasted\r\nrarebit\r\nraree-show\r\nrarefaction\r\nrarefied\r\nrarefy\r\nrarely\r\nrareness\r\nrarified\r\nrarify\r\nraring\r\nrariora\r\nrarity\r\nras\r\nrascal\r\nrascality\r\nrascally\r\nrase\r\nrash\r\nrasher\r\nrashly\r\nrashness\r\nrasht\r\nrask\r\nraskolnikov\r\nrasmussen\r\nrasp\r\nraspberry\r\nraspberry-red\r\nrasping\r\nraspingly\r\nrasputin\r\nraspy\r\nrassling\r\nrasta\r\nrastafari\r\nrastafarian\r\nrastafarianism\r\nrastas\r\nraster\r\nrasterize\r\nrat\r\nrat-a-tat\r\nrat-a-tat-tat\r\nrat-catcher\r\nrat-tat\r\nratability\r\nratable\r\nratables\r\nratafee\r\nratafia\r\nratan\r\nrataplan\r\nratch\r\nratchet\r\nrate\r\nrateability\r\nrateable\r\nrateables\r\nratel\r\nratepayer\r\nrates\r\nrather\r\nrathole\r\nrathskeller\r\nratibida\r\nratification\r\nratified\r\nratifier\r\nratify\r\nrating\r\nratio\r\nratiocinate\r\nratiocination\r\nratiocinative\r\nratiocinator\r\nration\r\nrational\r\nrationale\r\nrationalisation\r\nrationalise\r\nrationalism\r\nrationalist\r\nrationalistic\r\nrationality\r\nrationalization\r\nrationalize\r\nrationally\r\nrationalness\r\nrationed\r\nrationing\r\nratitae\r\nratite\r\nratlike\r\nratlin\r\nratline\r\nratsbane\r\nrattail\r\nrattan\r\nratter\r\nrattigan\r\nratting\r\nrattle\r\nrattle-top\r\nrattlebox\r\nrattlebrained\r\nrattled\r\nrattlepated\r\nrattler\r\nrattlesnake\r\nrattling\r\nrattrap\r\nrattus\r\nratty\r\nrau-sed\r\nraucous\r\nraucously\r\nraudixin\r\nraunch\r\nraunchy\r\nrauvolfia\r\nrauwolfia\r\nravage\r\nravaged\r\nravaging\r\nrave\r\nrave-up\r\nravehook\r\nravel\r\nraveling\r\nravelling\r\nraven\r\nravenala\r\nravening\r\nravenna\r\nravenous\r\nravenously\r\nravenousness\r\nraver\r\nravigote\r\nravine\r\nraving\r\nravingly\r\nravioli\r\nravish\r\nravisher\r\nravishing\r\nravishment\r\nraw\r\nrawalpindi\r\nrawboned\r\nrawhide\r\nrawness\r\nray\r\nray-like\r\nrayleigh\r\nrayless\r\nrayon\r\nrayons\r\nrazbliuto\r\nraze\r\nrazed\r\nrazing\r\nrazmataz\r\nrazor\r\nrazor-backed\r\nrazor-fish\r\nrazor-sharp\r\nrazorback\r\nrazorbill\r\nrazorblade\r\nrazz\r\nrazzing\r\nrazzle\r\nrazzle-dazzle\r\nrazzmatazz\r\nrb\r\nrbc\r\nrbi\r\nrcmp\r\nre\r\nre-address\r\nre-afforest\r\nre-afforestation\r\nre-argue\r\nre-arm\r\nre-assume\r\nre-create\r\nre-creation\r\nre-echo\r\nre-emerge\r\nre-emphasise\r\nre-emphasize\r\nre-enter\r\nre-entrant\r\nre-equip\r\nre-establishment\r\nre-examine\r\nre-experiencing\r\nre-explain\r\nre-explore\r\nre-formation\r\nre-formed\r\nre-incorporate\r\nre-introduce\r\nre-introduction\r\nre-sentencing\r\nre-start\r\nre-uptake\r\nreabsorb\r\nreabsorption\r\nreach\r\nreachable\r\nreaching\r\nreacquaint\r\nreact\r\nreactance\r\nreactant\r\nreaction\r\nreactionary\r\nreactionism\r\nreactionist\r\nreactivate\r\nreactive\r\nreactivity\r\nreactor\r\nread\r\nread-out\r\nreadability\r\nreadable\r\nreadably\r\nreadapt\r\nreader\r\nreadership\r\nreadily\r\nreadiness\r\nreading\r\nreadjust\r\nreadjustment\r\nreadmission\r\nreadmit\r\nreadout\r\nready\r\nready-cooked\r\nready-made\r\nready-mix\r\nready-to-eat\r\nready-to-wear\r\nreadying\r\nreaffiliation\r\nreaffirm\r\nreaffirmation\r\nreagan\r\nreagent\r\nreagin\r\nreal\r\nreal-time\r\nrealgar\r\nrealign\r\nrealine\r\nrealisation\r\nrealise\r\nrealised\r\nrealism\r\nrealist\r\nrealistic\r\nrealistically\r\nreality\r\nrealizable\r\nrealization\r\nrealize\r\nrealized\r\nreallocate\r\nreallocation\r\nreallot\r\nreallotment\r\nreally\r\nrealm\r\nrealness\r\nrealpolitik\r\nrealtor\r\nrealty\r\nream\r\nreamer\r\nreanimate\r\nreanimated\r\nreap\r\nreaper\r\nreappear\r\nreappearance\r\nreapportion\r\nreapportionment\r\nreappraisal\r\nreappraise\r\nrear\r\nrear-end\r\nrearguard\r\nrearing\r\nrearm\r\nrearmament\r\nrearmost\r\nrearrange\r\nrearrangement\r\nrearward\r\nrearwards\r\nreason\r\nreasonable\r\nreasonableness\r\nreasonably\r\nreasoned\r\nreasoner\r\nreasoning\r\nreasonless\r\nreassail\r\nreassemble\r\nreassembly\r\nreassert\r\nreassertion\r\nreassess\r\nreassessment\r\nreassign\r\nreassignment\r\nreassurance\r\nreassure\r\nreassured\r\nreassuring\r\nreata\r\nreattribute\r\nreaumur\r\nreave\r\nreawaken\r\nreb\r\nrebarbative\r\nrebate\r\nrebato\r\nrebecca\r\nrebekah\r\nrebel\r\nrebellion\r\nrebellious\r\nrebelliously\r\nrebelliousness\r\nrebind\r\nrebirth\r\nreboot\r\nreborn\r\nrebound\r\nreboxetine\r\nrebozo\r\nrebroadcast\r\nrebuff\r\nrebuild\r\nrebuilding\r\nrebuke\r\nrebuked\r\nrebuker\r\nreburial\r\nrebury\r\nreburying\r\nrebus\r\nrebut\r\nrebuttal\r\nrebutter\r\nrecalcitrance\r\nrecalcitrancy\r\nrecalcitrant\r\nrecalcitrate\r\nrecalculate\r\nrecalculation\r\nrecall\r\nrecant\r\nrecantation\r\nrecap\r\nrecapitualtion\r\nrecapitulate\r\nrecapitulation\r\nrecapture\r\nrecast\r\nrecasting\r\nrecce\r\nrecco\r\nreccy\r\nrecede\r\nreceding\r\nreceipt\r\nreceipts\r\nreceivable\r\nreceivables\r\nreceive\r\nreceived\r\nreceiver\r\nreceivership\r\nrecency\r\nrecent\r\nrecently\r\nrecentness\r\nreceptacle\r\nreception\r\nreceptionist\r\nreceptive\r\nreceptiveness\r\nreceptivity\r\nreceptor\r\nrecess\r\nrecessed\r\nrecession\r\nrecessional\r\nrecessionary\r\nrecessive\r\nrecharge\r\nrechargeable\r\nrechauffe\r\nrecherche\r\nrecidivate\r\nrecidivism\r\nrecidivist\r\nrecife\r\nrecipe\r\nrecipient\r\nreciprocal\r\nreciprocality\r\nreciprocally\r\nreciprocate\r\nreciprocating\r\nreciprocation\r\nreciprocative\r\nreciprocatory\r\nreciprocity\r\nrecirculation\r\nrecission\r\nrecital\r\nrecitalist\r\nrecitation\r\nrecitative\r\nrecite\r\nreciter\r\nreckless\r\nrecklessness\r\nreckon\r\nreckoner\r\nreckoning\r\nreclaim\r\nreclaimable\r\nreclaimed\r\nreclamation\r\nreclassification\r\nreclassify\r\nrecline\r\nrecliner\r\nreclining\r\nrecluse\r\nreclusive\r\nreclusiveness\r\nrecode\r\nrecoding\r\nrecognisable\r\nrecognisance\r\nrecognise\r\nrecognised\r\nrecognition\r\nrecognizable\r\nrecognizably\r\nrecognizance\r\nrecognize\r\nrecognized\r\nrecoil\r\nrecoilless\r\nrecollect\r\nrecollection\r\nrecollective\r\nrecombination\r\nrecombine\r\nrecommence\r\nrecommencement\r\nrecommend\r\nrecommendation\r\nrecommended\r\nrecommit\r\nrecompense\r\nreconcilable\r\nreconcile\r\nreconciled\r\nreconciler\r\nreconciliation\r\nreconciling\r\nrecondite\r\nreconditeness\r\nrecondition\r\nreconfirm\r\nreconnaissance\r\nreconnoiter\r\nreconnoitering\r\nreconnoitre\r\nreconnoitring\r\nreconquer\r\nreconsecrate\r\nreconsider\r\nreconsideration\r\nreconstitute\r\nreconstruct\r\nreconstructed\r\nreconstruction\r\nreconstructive\r\nreconvene\r\nreconvert\r\nreconvict\r\nrecopy\r\nrecord\r\nrecord-breaker\r\nrecord-breaking\r\nrecord-holder\r\nrecord-keeper\r\nrecorded\r\nrecorder\r\nrecording\r\nrecount\r\nrecounting\r\nrecoup\r\nrecourse\r\nrecover\r\nrecoverable\r\nrecovered\r\nrecoverer\r\nrecovering\r\nrecovery\r\nrecreant\r\nrecreate\r\nrecreation\r\nrecreational\r\nrecriminate\r\nrecrimination\r\nrecriminative\r\nrecriminatory\r\nrecrudesce\r\nrecrudescence\r\nrecrudescent\r\nrecruit\r\nrecruiter\r\nrecruiting-sergeant\r\nrecruitment\r\nrectal\r\nrectangle\r\nrectangular\r\nrectangularity\r\nrectifiable\r\nrectification\r\nrectified\r\nrectifier\r\nrectify\r\nrectilineal\r\nrectilinear\r\nrectitude\r\nrecto\r\nrectocele\r\nrectoplasty\r\nrector\r\nrectorate\r\nrectorship\r\nrectory\r\nrectosigmoid\r\nrectum\r\nrectus\r\nrecumb\r\nrecumbent\r\nrecuperate\r\nrecuperation\r\nrecuperative\r\nrecur\r\nrecurrence\r\nrecurrent\r\nrecurring\r\nrecursion\r\nrecursive\r\nrecurvate\r\nrecurve\r\nrecurved\r\nrecurvirostra\r\nrecurvirostridae\r\nrecusal\r\nrecusancy\r\nrecusant\r\nrecusation\r\nrecuse\r\nrecyclable\r\nrecycle\r\nrecycling\r\nred\r\nred-berry\r\nred-blind\r\nred-blindness\r\nred-blooded\r\nred-brick\r\nred-brown\r\nred-carpet\r\nred-coated\r\nred-eye\r\nred-faced\r\nred-flowered\r\nred-fruited\r\nred-gray\r\nred-grey\r\nred-handed\r\nred-header\r\nred-hot\r\nred-ink\r\nred-lavender\r\nred-letter\r\nred-orange\r\nred-purple\r\nred-rimmed\r\nred-streaked\r\nred-striped\r\nred-violet\r\nredact\r\nredaction\r\nredactor\r\nredbelly\r\nredberry\r\nredbird\r\nredbone\r\nredbreast\r\nredbrick\r\nredbrush\r\nredbud\r\nredbug\r\nredcap\r\nredcoat\r\nredden\r\nreddened\r\nredding\r\nreddish\r\nreddish-brown\r\nreddish-gray\r\nreddish-grey\r\nreddish-lavender\r\nreddish-orange\r\nreddish-pink\r\nreddish-striped\r\nreddish-violet\r\nreddisn-purple\r\nreddle\r\nrede\r\nredecorate\r\nrededicate\r\nrededication\r\nredeem\r\nredeemable\r\nredeemed\r\nredeemer\r\nredeeming\r\nredefine\r\nredefinition\r\nredemption\r\nredemptional\r\nredemptive\r\nredemptory\r\nredeploy\r\nredeployment\r\nredeposit\r\nredeposition\r\nredesign\r\nredetermination\r\nredetermine\r\nredevelop\r\nredevelopment\r\nredeye\r\nredfish\r\nredford\r\nredhead\r\nredheaded\r\nredheader\r\nredhorse\r\nrediffusion\r\nredirect\r\nrediscover\r\nrediscovery\r\nredispose\r\nredisposition\r\nredistribute\r\nredistributed\r\nredistribution\r\nredline\r\nredmaids\r\nredneck\r\nredness\r\nredo\r\nredolence\r\nredolent\r\nredonda\r\nredouble\r\nredoubled\r\nredoubt\r\nredoubtable\r\nredound\r\nredox\r\nredpoll\r\nredraft\r\nredress\r\nredroot\r\nredshank\r\nredshift\r\nredskin\r\nredstart\r\nredtail\r\nreduce\r\nreduced\r\nreducer\r\nreducible\r\nreducing\r\nreductant\r\nreductase\r\nreductio\r\nreduction\r\nreductionism\r\nreductionist\r\nreductive\r\nreductivism\r\nredundance\r\nredundancy\r\nredundant\r\nreduplicate\r\nreduplication\r\nreduviid\r\nreduviidae\r\nredux\r\nredwing\r\nredwood\r\nreecho\r\nreechoing\r\nreed\r\nreedbird\r\nreedlike\r\nreedmace\r\nreedy\r\nreef\r\nreefer\r\nreefy\r\nreek\r\nreeking\r\nreel\r\nreelect\r\nreelection\r\nreeler\r\nreenact\r\nreenactment\r\nreenactor\r\nreenforce\r\nreenforcement\r\nreenlistment\r\nreentrant\r\nreentry\r\nreestablish\r\nreevaluate\r\nreevaluation\r\nreeve\r\nreexamination\r\nreexamine\r\nref\r\nrefabrication\r\nreface\r\nrefashion\r\nrefection\r\nrefectory\r\nrefer\r\nreferable\r\nreferee\r\nrefereeing\r\nreference\r\nreferenced\r\nreferendum\r\nreferent\r\nreferential\r\nreferral\r\nrefill\r\nrefilling\r\nrefinance\r\nrefine\r\nrefined\r\nrefinement\r\nrefiner\r\nrefinery\r\nrefining\r\nrefinish\r\nrefinisher\r\nrefit\r\nreflate\r\nreflation\r\nreflect\r\nreflectance\r\nreflected\r\nreflecting\r\nreflection\r\nreflective\r\nreflectiveness\r\nreflectivity\r\nreflectometer\r\nreflector\r\nreflectorise\r\nreflectorize\r\nreflex\r\nreflexed\r\nreflexion\r\nreflexive\r\nreflexiveness\r\nreflexivity\r\nrefloat\r\nreflux\r\nrefocus\r\nrefocusing\r\nreforest\r\nreforestation\r\nreforge\r\nreform\r\nreform-minded\r\nreformable\r\nreformation\r\nreformative\r\nreformatory\r\nreformed\r\nreformer\r\nreformism\r\nreformist\r\nreformulate\r\nrefract\r\nrefractile\r\nrefraction\r\nrefractive\r\nrefractiveness\r\nrefractivity\r\nrefractometer\r\nrefractoriness\r\nrefractory\r\nrefractory-lined\r\nrefracture\r\nrefrain\r\nrefresh\r\nrefreshed\r\nrefreshen\r\nrefresher\r\nrefreshful\r\nrefreshfully\r\nrefreshing\r\nrefreshingly\r\nrefreshment\r\nrefrigerant\r\nrefrigerate\r\nrefrigerated\r\nrefrigerating\r\nrefrigeration\r\nrefrigerator\r\nrefuel\r\nrefueling\r\nrefuge\r\nrefugee\r\nrefulgence\r\nrefulgency\r\nrefulgent\r\nrefund\r\nrefurbish\r\nrefurbishment\r\nrefurnish\r\nrefusal\r\nrefuse\r\nrefutable\r\nrefutal\r\nrefutation\r\nrefute\r\nrefuter\r\nregain\r\nregaining\r\nregal\r\nregale\r\nregalecidae\r\nregalia\r\nregard\r\nregardant\r\nregardful\r\nregardless\r\nregatta\r\nregency\r\nregenerate\r\nregeneration\r\nregent\r\nreggae\r\nreggane\r\nregicide\r\nregime\r\nregimen\r\nregiment\r\nregimental\r\nregimentals\r\nregimentation\r\nregimented\r\nregina\r\nregiomontanus\r\nregion\r\nregional\r\nregionalism\r\nregister\r\nregistered\r\nregistrant\r\nregistrar\r\nregistration\r\nregistry\r\nreglaecus\r\nregnant\r\nregnellidium\r\nregorge\r\nregosol\r\nregress\r\nregression\r\nregressive\r\nregret\r\nregretful\r\nregrets\r\nregrettable\r\nregrettably\r\nregroup\r\nregrow\r\nregular\r\nregularisation\r\nregularise\r\nregularised\r\nregularity\r\nregularization\r\nregularize\r\nregularized\r\nregularly\r\nregulate\r\nregulated\r\nregulating\r\nregulation\r\nregulative\r\nregulator\r\nregulatory\r\nregulus\r\nregur\r\nregurgitate\r\nregurgitation\r\nrehabilitate\r\nrehabilitation\r\nrehabilitative\r\nreharmonisation\r\nreharmonise\r\nreharmonization\r\nreharmonize\r\nrehash\r\nrehear\r\nrehearing\r\nrehearsal\r\nrehearse\r\nreheat\r\nreheel\r\nrehnquist\r\nrehouse\r\nreich\r\nreichstein\r\nreid\r\nreification\r\nreify\r\nreign\r\nreigning\r\nreignite\r\nreimburse\r\nreimbursement\r\nreimpose\r\nreimposition\r\nreims\r\nrein\r\nreincarnate\r\nreincarnation\r\nreincarnationism\r\nreindeer\r\nreinforce\r\nreinforced\r\nreinforcement\r\nreinforcer\r\nreinstall\r\nreinstate\r\nreinstatement\r\nreinsurance\r\nreinsure\r\nreintegrate\r\nreinterpret\r\nreinterpretation\r\nreintroduce\r\nreintroduction\r\nreinvent\r\nreinvigorate\r\nreinvigorated\r\nreissue\r\nreit\r\nreiter\r\nreiterate\r\nreiteration\r\nreiterative\r\nreithrodontomys\r\nreject\r\nrejected\r\nrejection\r\nrejective\r\nrejig\r\nrejoice\r\nrejoicing\r\nrejoin\r\nrejoinder\r\nrejuvenate\r\nrejuvenation\r\nrekindle\r\nrelace\r\nrelafen\r\nrelapse\r\nrelapsing\r\nrelate\r\nrelated\r\nrelatedness\r\nrelatiative\r\nrelation\r\nrelational\r\nrelations\r\nrelationship\r\nrelative\r\nrelative-in-law\r\nrelatively\r\nrelativise\r\nrelativism\r\nrelativistic\r\nrelativity\r\nrelativize\r\nrelatum\r\nrelax\r\nrelaxant\r\nrelaxation\r\nrelaxed\r\nrelaxer\r\nrelaxin\r\nrelaxing\r\nrelay\r\nrelays\r\nrelearn\r\nrelease\r\nreleased\r\nreleasing\r\nrelegate\r\nrelegating\r\nrelegation\r\nrelent\r\nrelentless\r\nrelentlessly\r\nrelentlessness\r\nrelevance\r\nrelevancy\r\nrelevant\r\nrelevantly\r\nreliability\r\nreliable\r\nreliableness\r\nreliably\r\nreliance\r\nreliant\r\nrelic\r\nrelict\r\nrelief\r\nrelieve\r\nrelieved\r\nreliever\r\nrelievo\r\nreligion\r\nreligionism\r\nreligionist\r\nreligiosity\r\nreligious\r\nreligiousism\r\nreligiously\r\nreligiousness\r\nreline\r\nrelinquish\r\nrelinquished\r\nrelinquishing\r\nrelinquishment\r\nreliquary\r\nrelish\r\nrelishing\r\nrelistening\r\nrelive\r\nreliving\r\nreload\r\nrelocate\r\nrelocated\r\nrelocation\r\nreluctance\r\nreluctant\r\nreluctivity\r\nrely\r\nrelyric\r\nrem\r\nremain\r\nremainder\r\nremaining\r\nremains\r\nremake\r\nremaking\r\nremand\r\nremark\r\nremarkable\r\nremarkably\r\nremarriage\r\nremarry\r\nrematch\r\nrembrandt\r\nrembrandtesque\r\nremediable\r\nremedial\r\nremediate\r\nremediation\r\nremedy\r\nremember\r\nremembering\r\nremembrance\r\nremicade\r\nremilegia\r\nremilitarisation\r\nremilitarise\r\nremilitarization\r\nremilitarize\r\nremind\r\nreminder\r\nremindful\r\nreminisce\r\nreminiscence\r\nreminiscent\r\nremise\r\nremiss\r\nremission\r\nremissness\r\nremit\r\nremitment\r\nremittal\r\nremittance\r\nremittent\r\nremnant\r\nremodel\r\nremold\r\nremonstrance\r\nremonstrate\r\nremonstration\r\nremora\r\nremorse\r\nremorseful\r\nremorsefully\r\nremorseless\r\nremorselessly\r\nremote\r\nremote-controlled\r\nremoteness\r\nremotion\r\nremould\r\nremount\r\nremovable\r\nremoval\r\nremove\r\nremoved\r\nremover\r\nremuda\r\nremunerate\r\nremunerated\r\nremuneration\r\nremunerative\r\nremunerator\r\nremus\r\nrenaissance\r\nrenal\r\nrename\r\nrenascence\r\nrenascent\r\nrend\r\nrender\r\nrender-set\r\nrendering\r\nrendezvous\r\nrending\r\nrendition\r\nrenegade\r\nrenege\r\nrenegociate\r\nrenegotiate\r\nrenew\r\nrenewable\r\nrenewal\r\nrenewed\r\nrenewing\r\nreniform\r\nrenin\r\nrennet\r\nrennin\r\nreno\r\nrenoir\r\nrenormalise\r\nrenormalize\r\nrenounce\r\nrenouncement\r\nrenovate\r\nrenovation\r\nrenovator\r\nrenown\r\nrenowned\r\nrensselaerite\r\nrent\r\nrent-a-car\r\nrent-free\r\nrent-rebate\r\nrent-roll\r\nrentable\r\nrental\r\nrente\r\nrenter\r\nrentier\r\nrenting\r\nrenunciant\r\nrenunciation\r\nrenunciative\r\nreopen\r\nreorder\r\nreordering\r\nreorganisation\r\nreorganise\r\nreorganised\r\nreorganization\r\nreorganize\r\nreorganized\r\nreorient\r\nreorientate\r\nreorientation\r\nreoviridae\r\nreovirus\r\nrep\r\nrepaint\r\nrepair\r\nrepairer\r\nrepairman\r\nrepand\r\nreparable\r\nreparation\r\nrepartee\r\nrepast\r\nrepatriate\r\nrepatriation\r\nrepay\r\nrepayable\r\nrepayment\r\nrepeal\r\nrepeat\r\nrepeatable\r\nrepeated\r\nrepeater\r\nrepeating\r\nrepechage\r\nrepel\r\nrepellant\r\nrepellent\r\nrepellently\r\nrepelling\r\nrepellingly\r\nrepent\r\nrepentance\r\nrepentant\r\nrepentantly\r\nrepercuss\r\nrepercussion\r\nrepertoire\r\nrepertory\r\nrepetition\r\nrepetitious\r\nrepetitiousness\r\nrepetitive\r\nrepetitiveness\r\nrephrase\r\nrephrasing\r\nrepine\r\nrepining\r\nreplace\r\nreplaceability\r\nreplaceable\r\nreplacement\r\nreplacing\r\nreplant\r\nreplay\r\nreplenish\r\nreplenishment\r\nreplete\r\nrepletion\r\nreplica\r\nreplicate\r\nreplication\r\nreply\r\nreply-paid\r\nrepoint\r\nreport\r\nreportable\r\nreportage\r\nreported\r\nreporter\r\nreporting\r\nrepose\r\nreposeful\r\nreposit\r\nrepositing\r\nreposition\r\nrepositioning\r\nrepository\r\nrepossess\r\nrepossession\r\nrepot\r\nrepp\r\nreprehend\r\nreprehensibility\r\nreprehensible\r\nreprehensibly\r\nreprehension\r\nreprehensively\r\nrepresent\r\nrepresentable\r\nrepresentation\r\nrepresentational\r\nrepresentative\r\nrepresented\r\nrepress\r\nrepressed\r\nrepresser\r\nrepressing\r\nrepression\r\nrepressive\r\nrepressor\r\nreprieve\r\nreprimand\r\nreprimanded\r\nreprint\r\nreprinting\r\nreprisal\r\nreprise\r\nreprize\r\nreproach\r\nreproacher\r\nreproachful\r\nreproachfully\r\nreprobate\r\nreprobation\r\nreprocess\r\nreproduce\r\nreproducer\r\nreproducibility\r\nreproducible\r\nreproduction\r\nreproductive\r\nreproof\r\nreproval\r\nreprove\r\nreproved\r\nreprover\r\nreproving\r\nreprovingly\r\nreptantia\r\nreptile\r\nreptile-like\r\nreptilia\r\nreptilian\r\nrepublic\r\nrepublican\r\nrepublicanism\r\nrepublication\r\nrepublish\r\nrepublishing\r\nrepudiate\r\nrepudiated\r\nrepudiation\r\nrepudiative\r\nrepugn\r\nrepugnance\r\nrepugnant\r\nrepulse\r\nrepulsion\r\nrepulsive\r\nrepulsively\r\nrepulsiveness\r\nrepurchase\r\nreputability\r\nreputable\r\nreputably\r\nreputation\r\nrepute\r\nreputed\r\nrequest\r\nrequested\r\nrequester\r\nrequiem\r\nrequiescat\r\nrequire\r\nrequired\r\nrequirement\r\nrequisite\r\nrequisiteness\r\nrequisition\r\nrequital\r\nrequite\r\nreread\r\nrerebrace\r\nreredos\r\nrerun\r\nres\r\nresale\r\nrescale\r\nreschedule\r\nrescind\r\nrescindable\r\nrescission\r\nrescript\r\nrescriptor\r\nrescue\r\nrescued\r\nrescuer\r\nreseal\r\nresearch\r\nresearcher\r\nreseat\r\nreseau\r\nresect\r\nresection\r\nreseda\r\nresedaceae\r\nreseed\r\nresell\r\nresemblance\r\nresemble\r\nresent\r\nresentful\r\nresentment\r\nreserpine\r\nreservation\r\nreserve\r\nreserved\r\nreserves\r\nreservist\r\nreservoir\r\nreset\r\nresettle\r\nresettled\r\nresettlement\r\nresew\r\nresh\r\nreshape\r\nreship\r\nreshipment\r\nreshoot\r\nresht\r\nreshuffle\r\nreshuffling\r\nresid\r\nreside\r\nresidence\r\nresidency\r\nresident\r\nresidential\r\nresidual\r\nresiduary\r\nresidue\r\nresiduum\r\nresift\r\nresign\r\nresignation\r\nresigned\r\nresignedly\r\nresile\r\nresilience\r\nresiliency\r\nresilient\r\nresin\r\nresinate\r\nresinated\r\nresinlike\r\nresinoid\r\nresinous\r\nresiny\r\nresist\r\nresistance\r\nresistant\r\nresister\r\nresistible\r\nresistive\r\nresistivity\r\nresistless\r\nresistor\r\nresize\r\nresmudge\r\nresole\r\nresolute\r\nresolutely\r\nresoluteness\r\nresolution\r\nresolvable\r\nresolve\r\nresolved\r\nresolvent\r\nresolving\r\nresonance\r\nresonant\r\nresonate\r\nresonating\r\nresonator\r\nresorb\r\nresorcinol\r\nresorcinolphthalein\r\nresorption\r\nresort\r\nresound\r\nresounding\r\nresource\r\nresourceful\r\nresourcefulness\r\nresourceless\r\nrespect\r\nrespectability\r\nrespectable\r\nrespectably\r\nrespected\r\nrespecter\r\nrespectful\r\nrespectfully\r\nrespectfulness\r\nrespective\r\nrespectively\r\nrespects\r\nrespighi\r\nrespiration\r\nrespirator\r\nrespiratory\r\nrespire\r\nrespite\r\nresplend\r\nresplendence\r\nresplendency\r\nresplendent\r\nresplendently\r\nrespond\r\nrespondent\r\nresponder\r\nresponse\r\nresponsibility\r\nresponsible\r\nresponsibleness\r\nresponsibly\r\nresponsive\r\nresponsiveness\r\nrest\r\nrest-cure\r\nrest-harrow\r\nrestart\r\nrestate\r\nrestatement\r\nrestaurant\r\nrestauranter\r\nrestaurateur\r\nrested\r\nrester\r\nrestful\r\nrestfully\r\nrestfulness\r\nrestharrow\r\nrestitute\r\nrestitution\r\nrestive\r\nrestiveness\r\nrestless\r\nrestlessness\r\nrestock\r\nrestoration\r\nrestorative\r\nrestore\r\nrestorer\r\nrestoril\r\nrestrain\r\nrestrained\r\nrestrainer\r\nrestraint\r\nrestrengthen\r\nrestrict\r\nrestricted\r\nrestricting\r\nrestriction\r\nrestrictive\r\nrestrictiveness\r\nrestroom\r\nrestructure\r\nresublime\r\nresubmit\r\nresult\r\nresultant\r\nresulting\r\nresume\r\nresumption\r\nresupine\r\nresurface\r\nresurge\r\nresurgence\r\nresurgent\r\nresurrect\r\nresurrection\r\nresurvey\r\nresuscitate\r\nresuscitated\r\nresuscitation\r\nresuscitator\r\nresuspend\r\nresuspension\r\nret\r\nretail\r\nretailer\r\nretailing\r\nretain\r\nretained\r\nretainer\r\nretake\r\nretaking\r\nretaliate\r\nretaliation\r\nretaliator\r\nretaliatory\r\nretama\r\nretard\r\nretardant\r\nretardation\r\nretarded\r\nretardent\r\nretch\r\nrete\r\nretell\r\nretem\r\nretention\r\nretentive\r\nretentiveness\r\nretentivity\r\nrethink\r\nreticence\r\nreticent\r\nretick\r\nreticle\r\nreticular\r\nreticulate\r\nreticulation\r\nreticule\r\nreticulitermes\r\nreticulocyte\r\nreticulum\r\nretie\r\nretina\r\nretinal\r\nretinene\r\nretinitis\r\nretinoblastoma\r\nretinol\r\nretinue\r\nretire\r\nretired\r\nretiree\r\nretirement\r\nretiring\r\nretool\r\nretort\r\nretouch\r\nretrace\r\nretract\r\nretractable\r\nretracted\r\nretractile\r\nretraction\r\nretractor\r\nretrain\r\nretraining\r\nretral\r\nretranslate\r\nretransmit\r\nretread\r\nretreat\r\nretreatant\r\nretreated\r\nretreating\r\nretrench\r\nretrenchment\r\nretrial\r\nretribution\r\nretributive\r\nretributory\r\nretrievable\r\nretrieval\r\nretrieve\r\nretriever\r\nretro\r\nretroactive\r\nretrofit\r\nretroflection\r\nretroflex\r\nretroflexed\r\nretroflexion\r\nretrograde\r\nretrogress\r\nretrogression\r\nretrogressive\r\nretronym\r\nretrophyllum\r\nretrorocket\r\nretrorse\r\nretrospect\r\nretrospection\r\nretrospective\r\nretrousse\r\nretroversion\r\nretrovert\r\nretrovir\r\nretrovirus\r\nretrovision\r\nretry\r\nretsina\r\nreturn\r\nreturnable\r\nreturning\r\nreuben\r\nreunification\r\nreunify\r\nreunion\r\nreunite\r\nreuptake\r\nreusable\r\nreuse\r\nrev\r\nrevaluation\r\nrevalue\r\nrevamp\r\nreveal\r\nrevealed\r\nrevealing\r\nreveille\r\nrevel\r\nrevelation\r\nrevelatory\r\nreveler\r\nreveller\r\nrevelry\r\nrevenant\r\nrevenge\r\nrevengeful\r\nrevengefully\r\nrevenue\r\nrevenuer\r\nreverberance\r\nreverberant\r\nreverberate\r\nreverberating\r\nreverberation\r\nreverberative\r\nrevere\r\nrevered\r\nreverence\r\nreverend\r\nreverent\r\nreverential\r\nreverentially\r\nreverently\r\nreverie\r\nrevers\r\nreversal\r\nreverse\r\nreversed\r\nreversibility\r\nreversible\r\nreversion\r\nreversionary\r\nreversioner\r\nreversionist\r\nreversive\r\nrevert\r\nrevertible\r\nreverting\r\nrevery\r\nrevet\r\nrevetement\r\nrevetment\r\nreview\r\nreviewer\r\nrevile\r\nrevilement\r\nrevisal\r\nrevise\r\nrevised\r\nreviser\r\nrevising\r\nrevision\r\nrevisionism\r\nrevisionist\r\nrevisit\r\nrevitalisation\r\nrevitalise\r\nrevitalised\r\nrevitalising\r\nrevitalization\r\nrevitalize\r\nrevitalized\r\nrevitalizing\r\nrevival\r\nrevivalism\r\nrevivalist\r\nrevivalistic\r\nrevive\r\nrevived\r\nrevivification\r\nrevivify\r\nreviving\r\nrevocable\r\nrevocation\r\nrevokable\r\nrevoke\r\nrevolt\r\nrevolting\r\nrevoltingly\r\nrevolution\r\nrevolutionary\r\nrevolutionise\r\nrevolutionism\r\nrevolutionist\r\nrevolutionize\r\nrevolve\r\nrevolved\r\nrevolver\r\nrevue\r\nrevulsion\r\nrewa-rewa\r\nreward\r\nrewardable\r\nrewardful\r\nrewarding\r\nrewire\r\nreword\r\nrewording\r\nrework\r\nrewrite\r\nrewriter\r\nrewriting\r\nrex\r\nreyes\r\nreykjavik\r\nreynard\r\nreynolds\r\nrf\r\nrg\r\nrh\r\nrh-negative\r\nrh-positive\r\nrhabdomancer\r\nrhabdomancy\r\nrhabdomyoma\r\nrhabdomyosarcoma\r\nrhabdosarcoma\r\nrhabdoviridae\r\nrhabdovirus\r\nrhadamanthus\r\nrhaeto-romance\r\nrhaeto-romanic\r\nrhagades\r\nrhagoletis\r\nrhamnaceae\r\nrhamnales\r\nrhamnus\r\nrhaphe\r\nrhapis\r\nrhapsodic\r\nrhapsodically\r\nrhapsodise\r\nrhapsodize\r\nrhapsody\r\nrhd\r\nrhea\r\nrheidae\r\nrheiformes\r\nrheims\r\nrhein\r\nrheinland\r\nrhenish\r\nrhenium\r\nrheologic\r\nrheological\r\nrheology\r\nrheometer\r\nrheostat\r\nrhesus\r\nrhetoric\r\nrhetorical\r\nrhetorician\r\nrheum\r\nrheumatic\r\nrheumatism\r\nrheumatoid\r\nrheumatologist\r\nrheumatology\r\nrheumy\r\nrhexia\r\nrhibhus\r\nrhinal\r\nrhincodon\r\nrhincodontidae\r\nrhine\r\nrhineland\r\nrhinencephalon\r\nrhinestone\r\nrhinion\r\nrhinitis\r\nrhino\r\nrhinobatidae\r\nrhinoceros\r\nrhinocerotidae\r\nrhinolaryngologist\r\nrhinolaryngology\r\nrhinolophidae\r\nrhinonicteris\r\nrhinopathy\r\nrhinophyma\r\nrhinoplasty\r\nrhinoptera\r\nrhinorrhea\r\nrhinoscope\r\nrhinoscopy\r\nrhinosporidiosis\r\nrhinostenosis\r\nrhinotermitidae\r\nrhinotomy\r\nrhinotracheitis\r\nrhinovirus\r\nrhipsalis\r\nrhiptoglossa\r\nrhizobiaceae\r\nrhizobium\r\nrhizoctinia\r\nrhizoid\r\nrhizoidal\r\nrhizomatous\r\nrhizome\r\nrhizomorph\r\nrhizophora\r\nrhizophoraceae\r\nrhizopod\r\nrhizopoda\r\nrhizopodan\r\nrhizopogon\r\nrhizopogonaceae\r\nrhizopus\r\nrhizotomy\r\nrho\r\nrhodanthe\r\nrhodes\r\nrhodesia\r\nrhodesian\r\nrhodium\r\nrhodochrosite\r\nrhododendron\r\nrhodolite\r\nrhodomontade\r\nrhodonite\r\nrhodophyceae\r\nrhodophyta\r\nrhodopsin\r\nrhodosphaera\r\nrhodymenia\r\nrhodymeniaceae\r\nrhoeadales\r\nrhomb\r\nrhombencephalon\r\nrhombic\r\nrhombohedral\r\nrhombohedron\r\nrhomboid\r\nrhomboidal\r\nrhombus\r\nrhonchus\r\nrhone\r\nrhone-alpes\r\nrhubarb\r\nrhumb\r\nrhumba\r\nrhus\r\nrhyacotriton\r\nrhyme\r\nrhymed\r\nrhymeless\r\nrhymer\r\nrhymester\r\nrhyming\r\nrhynchocephalia\r\nrhynchoelaps\r\nrhyncostylis\r\nrhynia\r\nrhyniaceae\r\nrhyolite\r\nrhythm\r\nrhythmic\r\nrhythmical\r\nrhythmicity\r\nrhytidectomy\r\nrhytidoplasty\r\nri\r\nrial\r\nriant\r\nriata\r\nrib\r\nribald\r\nribaldry\r\nriband\r\nribavirin\r\nribband\r\nribbed\r\nribbing\r\nribbon\r\nribbon-shaped\r\nribbonfish\r\nribbonlike\r\nribbonwood\r\nribbony\r\nribes\r\nribgrass\r\nribhus\r\nribier\r\nribless\r\nriblike\r\nriboflavin\r\nribonuclease\r\nribonucleinase\r\nribose\r\nribosome\r\nribwort\r\nricardo\r\nrice\r\nricebird\r\nricegrass\r\nricer\r\nrich\r\nrichards\r\nrichardson\r\nrichea\r\nrichelieu\r\nriches\r\nrichler\r\nrichly\r\nrichmond\r\nrichmondena\r\nrichness\r\nrichweed\r\nricin\r\nricinus\r\nrick\r\nrickenbacker\r\nricketiness\r\nrickets\r\nrickettsia\r\nrickettsiaceae\r\nrickettsial\r\nrickettsiales\r\nrickettsialpox\r\nrickettsiosis\r\nrickety\r\nrickey\r\nrickover\r\nrickrack\r\nricksha\r\nrickshaw\r\nrico\r\nricochet\r\nricotta\r\nricrac\r\nrictus\r\nrid\r\nriddance\r\nriddle\r\nriddled\r\nride\r\nrider\r\nridge\r\nridge-like\r\nridged\r\nridgel\r\nridgeline\r\nridgeling\r\nridgepole\r\nridgil\r\nridgling\r\nridicule\r\nridiculer\r\nridiculous\r\nridiculously\r\nridiculousness\r\nriding\r\nridley\r\nriel\r\nriemann\r\nriemannian\r\nriesling\r\nriesman\r\nrifadin\r\nrifampin\r\nrife\r\nriff\r\nriffian\r\nriffle\r\nriffraff\r\nrifle\r\nriflebird\r\nrifled\r\nrifleman\r\nrifling\r\nrift\r\nrig\r\nrig-veda\r\nriga\r\nrigamarole\r\nrigatoni\r\nrigel\r\nrigged\r\nrigger\r\nrigging\r\nright\r\nright-angled\r\nright-down\r\nright-eyed\r\nright-hand\r\nright-handed\r\nright-handedness\r\nright-hander\r\nright-minded\r\nright-side-out\r\nright-side-up\r\nright-wing\r\nright-winger\r\nrighteous\r\nrighteously\r\nrighteousness\r\nrightfield\r\nrightful\r\nrightfully\r\nrightfulness\r\nrighthander\r\nrightish\r\nrightism\r\nrightist\r\nrightly\r\nrightmost\r\nrightness\r\nrigid\r\nrigidification\r\nrigidify\r\nrigidifying\r\nrigidity\r\nrigidly\r\nrigidness\r\nrigil\r\nrigmarole\r\nrigor\r\nrigorous\r\nrigorously\r\nrigorousness\r\nrigour\r\nrigourousness\r\nrigout\r\nrijstafel\r\nrijstaffel\r\nrijsttaffel\r\nriksmal\r\nrile\r\nriled\r\nriley\r\nrilievo\r\nrilke\r\nrill\r\nrim\r\nrima\r\nrimactane\r\nrimbaud\r\nrime\r\nrimed\r\nrimeless\r\nriming\r\nrimless\r\nrimmed\r\nrimose\r\nrimski-korsakov\r\nrimsky-korsakov\r\nrimu\r\nrimy\r\nrind\r\nrinderpest\r\nring\r\nring-a-rosy\r\nring-around-a-rosy\r\nring-around-the-rosy\r\nring-binder\r\nring-shaped\r\nringdove\r\nringed\r\nringer\r\nringgit\r\nringhals\r\nringing\r\nringleader\r\nringlet\r\nringleted\r\nringlike\r\nringling\r\nringmaster\r\nrings\r\nringside\r\nringtail\r\nringworm\r\nrink\r\nrinkhals\r\nrinse\r\nrinsing\r\nrio\r\nrioja\r\nriot\r\nrioter\r\nrioting\r\nriotous\r\nriotously\r\nrip\r\nrip-off\r\nrip-roaring\r\nriparia\r\nriparian\r\nripcord\r\nripe\r\nripen\r\nripened\r\nripeness\r\nripening\r\nriposte\r\nripper\r\nripping\r\nripple\r\nripple-grass\r\nrippled\r\nrippling\r\nripsaw\r\nriptide\r\nrira\r\nrisc\r\nrise\r\nrisen\r\nriser\r\nrisibility\r\nrisible\r\nrising\r\nrisk\r\nrisk-free\r\nriskiness\r\nriskless\r\nrisklessness\r\nrisky\r\nrisotto\r\nrisque\r\nrissa\r\nrissole\r\nrit.\r\nritalin\r\nritardando\r\nrite\r\nritenuto\r\nritonavir\r\nrittenhouse\r\nritual\r\nritualise\r\nritualism\r\nritualist\r\nritualistic\r\nritualize\r\nritually\r\nritz\r\nritzy\r\nrival\r\nrivalrous\r\nrivalry\r\nrive\r\nriver\r\nrivera\r\nriverbank\r\nriverbed\r\nriverside\r\nrivet\r\nriveter\r\nriveting\r\nrivetter\r\nriviera\r\nrivina\r\nrivulet\r\nrivulus\r\nriyadh\r\nriyal\r\nriyal-omani\r\nrn\r\nrna\r\nrnase\r\nro\r\nroach\r\nroad\r\nroadbed\r\nroadblock\r\nroadbook\r\nroadhog\r\nroadhouse\r\nroadkill\r\nroadless\r\nroadman\r\nroadrunner\r\nroads\r\nroadside\r\nroadstead\r\nroadster\r\nroadway\r\nroadworthiness\r\nroadworthy\r\nroam\r\nroamer\r\nroan\r\nroanoke\r\nroar\r\nroarer\r\nroaring\r\nroast\r\nroasted\r\nroaster\r\nroasting\r\nrob\r\nrobaxin\r\nrobber\r\nrobbery\r\nrobbins\r\nrobe\r\nrobe-de-chambre\r\nrobed\r\nrobert\r\nroberts\r\nrobertson\r\nrobeson\r\nrobespierre\r\nrobin\r\nrobinia\r\nrobinson\r\nrobitussin\r\nroble\r\nrobolo\r\nrobot\r\nrobotics\r\nrobotlike\r\nrobust\r\nrobustious\r\nrobustness\r\nroc\r\nrocambole\r\nroccella\r\nroccellaceae\r\nroccus\r\nrocephin\r\nrochambeau\r\nrochester\r\nrock\r\nrock'n'roll\r\nrock-and-roll\r\nrock-bottom\r\nrock-inhabiting\r\nrock-loving\r\nrock-ribbed\r\nrock-steady\r\nrockabilly\r\nrockbound\r\nrockchuck\r\nrockcress\r\nrockefeller\r\nrocker\r\nrockers\r\nrockery\r\nrocket\r\nrocket-propelled\r\nrocketry\r\nrockfish\r\nrockfoil\r\nrockford\r\nrockies\r\nrockiness\r\nrockingham\r\nrocklike\r\nrockrose\r\nrockslide\r\nrockweed\r\nrockwell\r\nrocky\r\nrococo\r\nrocroi\r\nrod\r\nrod-shaped\r\nrodent\r\nrodent-like\r\nrodentia\r\nrodeo\r\nrodgers\r\nrodhos\r\nrodin\r\nrodlike\r\nrodolia\r\nrodomontade\r\nroe\r\nroebling\r\nroebuck\r\nroentgen\r\nroentgenium\r\nroentgenogram\r\nroentgenographic\r\nroentgenography\r\nroentgenoscope\r\nrofecoxib\r\nrogaine\r\nrogation\r\nrogers\r\nroget\r\nrogue\r\nroguery\r\nroguish\r\nroguishness\r\nrohypnol\r\nroi\r\nroil\r\nroiled\r\nroiling\r\nroily\r\nroister\r\nroisterer\r\nrolaids\r\nrole\r\nroleplay\r\nroleplaying\r\nrolf\r\nroll\r\nroll-on\r\nrollback\r\nrolled\r\nroller\r\nroller-skater\r\nrollerblade\r\nrollerblader\r\nrollerblading\r\nrollick\r\nrollicking\r\nrollickingly\r\nrolling\r\nrollmops\r\nrollo\r\nrollover\r\nrolodex\r\nroly-poly\r\nrolypoliness\r\nrom\r\nroma\r\nromaic\r\nromaine\r\nroman\r\nromanal\r\nromance\r\nromanesque\r\nromani\r\nromania\r\nromanian\r\nromanic\r\nromanise\r\nromanism\r\nromanist\r\nromanize\r\nromanoff\r\nromanov\r\nromans\r\nromansh\r\nromantic\r\nromantically\r\nromanticisation\r\nromanticise\r\nromanticism\r\nromanticist\r\nromanticistic\r\nromanticization\r\nromanticize\r\nromany\r\nromberg\r\nrome\r\nromeo\r\nromish\r\nrommany\r\nrommel\r\nromneya\r\nromp\r\nromper\r\nromulus\r\nron\r\nrondeau\r\nrondel\r\nrondelet\r\nrondo\r\nroneo\r\nroneograph\r\nrontgen\r\nrood\r\nrood-tree\r\nroof\r\nroofed\r\nroofer\r\nroofing\r\nroofless\r\nrooftop\r\nrooftree\r\nroofy\r\nrooibos\r\nrook\r\nrookery\r\nrookie\r\nroom\r\nroomer\r\nroomette\r\nroomful\r\nroomie\r\nroomily\r\nroominess\r\nroommate\r\nrooms\r\nroomy\r\nroosevelt\r\nrooseveltian\r\nroost\r\nrooster\r\nroot\r\nroot-like\r\nrootage\r\nrootbound\r\nrooted\r\nrooter\r\nrooting\r\nrootle\r\nrootless\r\nrootlet\r\nrootlike\r\nroots\r\nrootstalk\r\nrootstock\r\nrope\r\nrope-a-dope\r\nrope-maker\r\nropebark\r\nropedancer\r\nropemaker\r\nroper\r\nropewalk\r\nropewalker\r\nropeway\r\nropey\r\nrophy\r\nropiness\r\nroping\r\nropy\r\nroquefort\r\nroquette\r\nroridula\r\nroridulaceae\r\nrorippa\r\nrorqual\r\nrorschach\r\nrosa\r\nrosacea\r\nrosaceae\r\nrosaceous\r\nrosales\r\nrosary\r\nrose\r\nrose-cheeked\r\nrose-colored\r\nrose-lavender\r\nrose-like\r\nrose-lilac\r\nrose-mauve\r\nrose-purple\r\nrose-red\r\nrose-root\r\nrose-tinged\r\nrose-tinted\r\nroseate\r\nroseau\r\nrosebay\r\nrosebud\r\nrosebush\r\nrosefish\r\nrosehip\r\nroselike\r\nroselle\r\nrosellinia\r\nrosemaling\r\nrosemary\r\nroseola\r\nrosette\r\nrosewood\r\nrosicrucian\r\nrosicrucianism\r\nrosidae\r\nrosilla\r\nrosin\r\nrosiness\r\nrosinweed\r\nrosita\r\nrosmarinus\r\nross\r\nrossbach\r\nrossetti\r\nrossini\r\nrostand\r\nroster\r\nrostock\r\nrostov\r\nrostrate\r\nrostrum\r\nroswell\r\nrosy\r\nrosy-cheeked\r\nrosy-colored\r\nrosy-purple\r\nrot\r\nrot-resistant\r\nrota\r\nrotarian\r\nrotary\r\nrotatable\r\nrotate\r\nrotated\r\nrotation\r\nrotational\r\nrotatory\r\nrotavirus\r\nrotc\r\nrote\r\nrotenone\r\nrotgut\r\nroth\r\nrothko\r\nrothschild\r\nrotifer\r\nrotifera\r\nrotisserie\r\nrotl\r\nrotogravure\r\nrotor\r\nrotted\r\nrotten\r\nrottenly\r\nrottenness\r\nrottenstone\r\nrotter\r\nrotterdam\r\nrotting\r\nrottweiler\r\nrotund\r\nrotunda\r\nrotundity\r\nrotundly\r\nrotundness\r\nrouble\r\nroue\r\nrouge\r\nrougeberry\r\nrouged\r\nrough\r\nrough-and-ready\r\nrough-and-tumble\r\nrough-cut\r\nrough-dry\r\nrough-haired\r\nrough-hew\r\nrough-house\r\nrough-sand\r\nrough-spoken\r\nrough-textured\r\nroughage\r\nroughcast\r\nroughdried\r\nroughen\r\nroughened\r\nroughhewn\r\nroughhouse\r\nroughish\r\nroughleg\r\nroughly\r\nroughneck\r\nroughness\r\nroughrider\r\nroughshod\r\nroulade\r\nrouleau\r\nroulette\r\nroumania\r\nroumanian\r\nround\r\nround-arm\r\nround-backed\r\nround-bottom\r\nround-bottomed\r\nround-eyed\r\nround-faced\r\nround-fruited\r\nround-shouldered\r\nround-the-clock\r\nroundabout\r\nrounded\r\nroundedness\r\nroundel\r\nroundelay\r\nrounder\r\nrounders\r\nroundhead\r\nroundheaded\r\nroundhouse\r\nrounding\r\nroundish\r\nroundly\r\nroundness\r\nroundsman\r\nroundtable\r\nroundup\r\nroundworm\r\nrous\r\nrouse\r\nrouser\r\nrousing\r\nrousseau\r\nrousseauan\r\nroustabout\r\nrout\r\nroute\r\nroutemarch\r\nrouter\r\nroutine\r\nroutinely\r\nroux\r\nrove\r\nrover\r\nroving\r\nrow\r\nrowan\r\nrowanberry\r\nrowboat\r\nrowdily\r\nrowdiness\r\nrowdy\r\nrowdyism\r\nrowel\r\nrower\r\nrowing\r\nrowlock\r\nroyal\r\nroyalism\r\nroyalist\r\nroyally\r\nroyalty\r\nroystonea\r\nrozelle\r\nrpa-abb\r\nrpm\r\nrtlt\r\nru\r\nruanda\r\nruandan\r\nrub\r\nrub-a-dub\r\nrubato\r\nrubber\r\nrubber-necking\r\nrubberise\r\nrubberize\r\nrubberlike\r\nrubberneck\r\nrubbernecker\r\nrubberstamp\r\nrubbery\r\nrubbing\r\nrubbish\r\nrubbishy\r\nrubble\r\nrubdown\r\nrube\r\nrubefacient\r\nrubel\r\nrubella\r\nrubens\r\nrubeola\r\nrubia\r\nrubiaceae\r\nrubiales\r\nrubicelle\r\nrubicon\r\nrubicund\r\nrubidium\r\nrubify\r\nrubinstein\r\nruble\r\nrubor\r\nrubric\r\nrubricate\r\nrubus\r\nruby\r\nruby-red\r\nruck\r\nruckle\r\nrucksack\r\nruckus\r\nruction\r\nrudapithecus\r\nrudbeckia\r\nrudd\r\nrudder\r\nrudder-like\r\nrudderfish\r\nrudderless\r\nrudderpost\r\nrudderstock\r\nruddiness\r\nruddle\r\nruddles\r\nruddy\r\nrude\r\nrudely\r\nrudeness\r\nrudiment\r\nrudimentary\r\nrudiments\r\nrudra\r\nrue\r\nrueful\r\nruefully\r\nruefulness\r\nruf\r\nruff\r\nruffian\r\nruffianism\r\nruffianly\r\nruffle\r\nruffled\r\nrug\r\nruga\r\nrugby\r\nrugelach\r\nrugged\r\nruggedisation\r\nruggedise\r\nruggedization\r\nruggedize\r\nruggedness\r\nruggelach\r\nrugger\r\nrugose\r\nrugulah\r\nruhr\r\nruin\r\nruination\r\nruined\r\nruiner\r\nruining\r\nruinous\r\nrule\r\nrule-governed\r\nruled\r\nruler\r\nrulership\r\nruling\r\nruly\r\nrum\r\nrum-blossom\r\nrumania\r\nrumanian\r\nrumansh\r\nrumba\r\nrumble\r\nrumbling\r\nrumbustious\r\nrumen\r\nrumex\r\nruminant\r\nruminantia\r\nruminate\r\nrumination\r\nruminative\r\nruminator\r\nrummage\r\nrummer\r\nrummy\r\nrumohra\r\nrumor\r\nrumored\r\nrumormonger\r\nrumour\r\nrumourmonger\r\nrump\r\nrumpelstiltskin\r\nrumple\r\nrumpled\r\nrumpus\r\nrumrunner\r\nrun\r\nrun-down\r\nrun-in\r\nrun-of-the-mill\r\nrun-of-the-mine\r\nrun-on\r\nrun-resistant\r\nrun-through\r\nrun-time\r\nrun-up\r\nrunabout\r\nrunaway\r\nrunch\r\nruncinate\r\nrundle\r\nrundown\r\nrundstedt\r\nrune\r\nrung\r\nrunic\r\nrunnel\r\nrunner\r\nrunner-up\r\nrunniness\r\nrunning\r\nrunny\r\nrunoff\r\nrunproof\r\nrunt\r\nruntiness\r\nrunty\r\nrunup\r\nrunway\r\nrunyon\r\nrupee\r\nrupert\r\nrupestral\r\nrupiah\r\nrupicapra\r\nrupicola\r\nrupicolous\r\nruptiliocarpon\r\nrupture\r\nruptured\r\nrupturewort\r\nrural\r\nruralism\r\nruralist\r\nrurality\r\nruritania\r\nruritanian\r\nrus\r\nruscaceae\r\nruscus\r\nruse\r\nrush\r\nrush-grass\r\nrushdie\r\nrushed\r\nrusher\r\nrushing\r\nrushlight\r\nrushlike\r\nrushmore\r\nrushy\r\nrusk\r\nruskin\r\nrussell\r\nrusset\r\nrussia\r\nrussian\r\nrussian-speaking\r\nrussula\r\nrussulaceae\r\nrust\r\nrust-brown\r\nrust-colored\r\nrust-free\r\nrust-red\r\nrust-resistant\r\nrustbelt\r\nrusted\r\nrustic\r\nrusticate\r\nrustication\r\nrusticism\r\nrusticity\r\nrustiness\r\nrusting\r\nrustle\r\nrustler\r\nrustless\r\nrustling\r\nrustproof\r\nrustproofed\r\nrusty\r\nrusty-brown\r\nrusty-red\r\nrut\r\nruta\r\nrutabaga\r\nrutaceae\r\nruth\r\nruthenium\r\nrutherford\r\nrutherfordium\r\nruthful\r\nruthfulness\r\nruthless\r\nruthlessness\r\nrutile\r\nrutilus\r\nrutland\r\nrutledge\r\nrutted\r\nruttish\r\nrutty\r\nrv\r\nrwanda\r\nrwandan\r\nrya\r\nrydberg\r\nrye\r\nryegrass\r\nrynchopidae\r\nrynchops\r\nrypticus\r\nryukyuan\r\ns\r\ns-shape\r\ns-shaped\r\ns.t.p.\r\ns.u.v.\r\ns/n\r\nsa\r\nsaale\r\nsaame\r\nsaami\r\nsaarinen\r\nsaba\r\nsabah\r\nsabahan\r\nsabal\r\nsabaoth\r\nsabaton\r\nsabayon\r\nsabbat\r\nsabbatarian\r\nsabbath\r\nsabbatia\r\nsabbatic\r\nsabbatical\r\nsabbatum\r\nsabellian\r\nsaber\r\nsaber-toothed\r\nsabertooth\r\nsabertoothed\r\nsabicu\r\nsabin\r\nsabine\r\nsabinea\r\nsable\r\nsabot\r\nsabotage\r\nsaboteur\r\nsabra\r\nsabre\r\nsabre-toothed\r\nsac\r\nsacagawea\r\nsacajawea\r\nsaccade\r\nsaccadic\r\nsaccharase\r\nsaccharide\r\nsaccharify\r\nsaccharin\r\nsaccharine\r\nsaccharinity\r\nsaccharomyces\r\nsaccharomycetaceae\r\nsaccharose\r\nsaccharum\r\nsacco\r\nsacculate\r\nsacculated\r\nsaccule\r\nsacculus\r\nsacerdotal\r\nsacerdotalism\r\nsaceur\r\nsachem\r\nsachet\r\nsachsen\r\nsack\r\nsackbut\r\nsackcloth\r\nsacked\r\nsackful\r\nsacking\r\nsaclant\r\nsaclike\r\nsacque\r\nsacral\r\nsacrament\r\nsacramental\r\nsacramento\r\nsacred\r\nsacredly\r\nsacredness\r\nsacrifice\r\nsacrificeable\r\nsacrificer\r\nsacrificial\r\nsacrilege\r\nsacrilegious\r\nsacrilegiousness\r\nsacristan\r\nsacristy\r\nsacrosanct\r\nsacrum\r\nsad\r\nsad-faced\r\nsadat\r\nsaddam\r\nsadden\r\nsaddening\r\nsaddhu\r\nsaddle\r\nsaddle-shaped\r\nsaddle-sore\r\nsaddleback\r\nsaddlebag\r\nsaddlebill\r\nsaddlebow\r\nsaddlecloth\r\nsaddled\r\nsaddler\r\nsaddlery\r\nsadducean\r\nsadducee\r\nsade\r\nsadhe\r\nsadhu\r\nsadism\r\nsadist\r\nsadistic\r\nsadleria\r\nsadly\r\nsadness\r\nsadomasochism\r\nsadomasochist\r\nsadomasochistic\r\nsaek\r\nsafaqis\r\nsafar\r\nsafari\r\nsafe\r\nsafe-conduct\r\nsafe-deposit\r\nsafebreaker\r\nsafecracker\r\nsafeguard\r\nsafehold\r\nsafekeeping\r\nsafeness\r\nsafety\r\nsafety-deposit\r\nsafety-related\r\nsafflower\r\nsaffranine\r\nsaffron\r\nsafranin\r\nsafranine\r\nsag\r\nsaga\r\nsagacious\r\nsagaciously\r\nsagaciousness\r\nsagacity\r\nsagamore\r\nsage\r\nsage-green\r\nsagebrush\r\nsagely\r\nsagging\r\nsagina\r\nsaginaw\r\nsagitta\r\nsagittal\r\nsagittaria\r\nsagittariidae\r\nsagittarius\r\nsagittate\r\nsagittate-leaf\r\nsagittiform\r\nsago\r\nsaguaro\r\nsahaptin\r\nsahaptino\r\nsahara\r\nsaharan\r\nsahib\r\nsahuaro\r\nsaid\r\nsaida\r\nsaiga\r\nsaigon\r\nsail\r\nsailboat\r\nsailcloth\r\nsailfish\r\nsailing\r\nsailing-race\r\nsailmaker\r\nsailor\r\nsailor's-choice\r\nsailplane\r\nsailplaning\r\nsaimiri\r\nsainfoin\r\nsaint\r\nsaint-bernard's-lily\r\nsaint-john's-bread\r\nsaint-mihiel\r\nsaint-saens\r\nsainted\r\nsainthood\r\nsaintlike\r\nsaintliness\r\nsaintly\r\nsaintpaulia\r\nsaipan\r\nsajama\r\nsakartvelo\r\nsake\r\nsakharov\r\nsaki\r\nsakkara\r\nsakti\r\nsaktism\r\nsalaah\r\nsalaam\r\nsalaat\r\nsalability\r\nsalable\r\nsalableness\r\nsalacious\r\nsalaciously\r\nsalaciousness\r\nsalacity\r\nsalad\r\nsaladin\r\nsalafism\r\nsalah\r\nsalai\r\nsalal\r\nsalamander\r\nsalamandra\r\nsalamandridae\r\nsalamandriform\r\nsalami\r\nsalaried\r\nsalary\r\nsalat\r\nsale\r\nsaleable\r\nsalem\r\nsaleratus\r\nsalerno\r\nsaleroom\r\nsales\r\nsalesclerk\r\nsalesgirl\r\nsaleslady\r\nsalesman\r\nsalesmanship\r\nsalesperson\r\nsalesroom\r\nsaleswoman\r\nsalian\r\nsalicaceae\r\nsalicales\r\nsalicornia\r\nsalicylate\r\nsalience\r\nsaliency\r\nsalient\r\nsalientia\r\nsalientian\r\nsaliferous\r\nsalim\r\nsalina\r\nsalinate\r\nsaline\r\nsalinger\r\nsalinity\r\nsalinometer\r\nsalisbury\r\nsalish\r\nsalishan\r\nsaliva\r\nsalivary\r\nsalivate\r\nsalivation\r\nsalix\r\nsalk\r\nsallade\r\nsallet\r\nsallow\r\nsallowness\r\nsally\r\nsalmacis\r\nsalmagundi\r\nsalmi\r\nsalmo\r\nsalmon\r\nsalmon-like\r\nsalmonberry\r\nsalmonella\r\nsalmonellosis\r\nsalmonid\r\nsalmonidae\r\nsalmwood\r\nsalol\r\nsalome\r\nsalomon\r\nsalon\r\nsalonica\r\nsalonika\r\nsaloon\r\nsalp\r\nsalpa\r\nsalpichroa\r\nsalpidae\r\nsalpiglossis\r\nsalpinctes\r\nsalpingectomy\r\nsalpingitis\r\nsalpinx\r\nsalsa\r\nsalsify\r\nsalsilla\r\nsalsola\r\nsalt\r\nsalt-cured\r\nsaltate\r\nsaltation\r\nsaltbox\r\nsaltbush\r\nsaltcellar\r\nsalted\r\nsalter\r\nsaltine\r\nsaltiness\r\nsalting\r\nsaltire\r\nsaltish\r\nsaltlike\r\nsaltpan\r\nsaltpeter\r\nsaltpetre\r\nsaltshaker\r\nsaltwater\r\nsaltworks\r\nsaltwort\r\nsalty\r\nsalubrious\r\nsalubriousness\r\nsalubrity\r\nsaluki\r\nsalutary\r\nsalutation\r\nsalutatorian\r\nsalutatory\r\nsalute\r\nsaluter\r\nsalvador\r\nsalvadora\r\nsalvadoraceae\r\nsalvadoran\r\nsalvadorean\r\nsalvadorian\r\nsalvage\r\nsalvageable\r\nsalvager\r\nsalvation\r\nsalve\r\nsalvelinus\r\nsalver\r\nsalverform\r\nsalvia\r\nsalvific\r\nsalving\r\nsalvinia\r\nsalviniaceae\r\nsalvinorin\r\nsalvo\r\nsalvor\r\nsalwar\r\nsalyut\r\nsalzburg\r\nsam\r\nsama-veda\r\nsaman\r\nsamanala\r\nsamara\r\nsamarang\r\nsamarcand\r\nsamaria\r\nsamaritan\r\nsamarium\r\nsamarkand\r\nsamarskite\r\nsamba\r\nsambar\r\nsambre\r\nsambuca\r\nsambucus\r\nsambur\r\nsame\r\nsamekh\r\nsameness\r\nsamhita\r\nsami\r\nsamia\r\nsamiel\r\nsamisen\r\nsamite\r\nsamizdat\r\nsamnite\r\nsamoa\r\nsamoan\r\nsamolus\r\nsamosa\r\nsamovar\r\nsamoyed\r\nsamoyede\r\nsamoyedic\r\nsamoyedic-speaking\r\nsampan\r\nsamphire\r\nsample\r\nsampler\r\nsampling\r\nsamsara\r\nsamson\r\nsamuel\r\nsamurai\r\nsana\r\nsana'a\r\nsanaa\r\nsanatarium\r\nsanative\r\nsanatorium\r\nsanchez\r\nsanctification\r\nsanctified\r\nsanctify\r\nsanctimonious\r\nsanctimoniously\r\nsanctimoniousness\r\nsanctimony\r\nsanction\r\nsanctionative\r\nsanctioned\r\nsanctioning\r\nsanctitude\r\nsanctity\r\nsanctuary\r\nsanctum\r\nsand\r\nsand-blind\r\nsandal\r\nsandaled\r\nsandalled\r\nsandalwood\r\nsandarac\r\nsandarach\r\nsandbag\r\nsandbagger\r\nsandbank\r\nsandbar\r\nsandberry\r\nsandblast\r\nsandblaster\r\nsandbox\r\nsandboy\r\nsandbur\r\nsandburg\r\nsander\r\nsanderling\r\nsandfish\r\nsandfly\r\nsandglass\r\nsandgrouse\r\nsandhi\r\nsandhopper\r\nsandiness\r\nsandlike\r\nsandlot\r\nsandman\r\nsandpaper\r\nsandpapery\r\nsandpile\r\nsandpiper\r\nsandpiper-like\r\nsandpit\r\nsandril\r\nsands\r\nsandspur\r\nsandstone\r\nsandstorm\r\nsandwich\r\nsandwichman\r\nsandwort\r\nsandy\r\nsane\r\nsanely\r\nsaneness\r\nsanfoin\r\nsang\r\nsang-froid\r\nsangapenum\r\nsangaree\r\nsangay\r\nsanger\r\nsango\r\nsangoma\r\nsangraal\r\nsangria\r\nsanguification\r\nsanguinaria\r\nsanguinary\r\nsanguine\r\nsanguineness\r\nsanguineous\r\nsanguinity\r\nsanhedrin\r\nsanicle\r\nsanicula\r\nsanies\r\nsanious\r\nsanitariness\r\nsanitarium\r\nsanitary\r\nsanitate\r\nsanitation\r\nsanitisation\r\nsanitise\r\nsanitised\r\nsanitization\r\nsanitize\r\nsanitized\r\nsanity\r\nsannup\r\nsannyasi\r\nsannyasin\r\nsansevieria\r\nsanskrit\r\nsanta\r\nsantalaceae\r\nsantalales\r\nsantalum\r\nsantee\r\nsantiago\r\nsantims\r\nsantolina\r\nsantos\r\nsanvitalia\r\nsanyasi\r\nsaone\r\nsap\r\nsaphar\r\nsaphead\r\nsapid\r\nsapidity\r\nsapidness\r\nsapience\r\nsapiens\r\nsapient\r\nsapiential\r\nsapiently\r\nsapindaceae\r\nsapindales\r\nsapindus\r\nsapir\r\nsapless\r\nsapling\r\nsapodilla\r\nsaponaceous\r\nsaponaria\r\nsaponification\r\nsaponified\r\nsaponify\r\nsaponin\r\nsaporous\r\nsapota\r\nsapotaceae\r\nsapote\r\nsapper\r\nsapphic\r\nsapphire\r\nsapphirine\r\nsapphism\r\nsappho\r\nsapporo\r\nsappy\r\nsapraemia\r\nsapremia\r\nsaprobe\r\nsaprobic\r\nsaprolegnia\r\nsaprolegniales\r\nsaprolite\r\nsapropel\r\nsaprophagous\r\nsaprophyte\r\nsaprophytic\r\nsaprozoic\r\nsapsago\r\nsapsucker\r\nsapwood\r\nsaqqara\r\nsaqqarah\r\nsaquinavir\r\nsaraband\r\nsaracen\r\nsaragossa\r\nsarah\r\nsarajevo\r\nsaran\r\nsarape\r\nsarasota\r\nsarasvati\r\nsaratoga\r\nsaratov\r\nsarawak\r\nsarawakian\r\nsarazen\r\nsarcasm\r\nsarcastic\r\nsarcastically\r\nsarcenet\r\nsarcobatus\r\nsarcocephalus\r\nsarcochilus\r\nsarcocystidean\r\nsarcocystieian\r\nsarcocystis\r\nsarcodes\r\nsarcodina\r\nsarcodine\r\nsarcodinian\r\nsarcoid\r\nsarcoidosis\r\nsarcolemma\r\nsarcolemmal\r\nsarcolemmic\r\nsarcolemnous\r\nsarcoma\r\nsarcomere\r\nsarcophaga\r\nsarcophagus\r\nsarcophilus\r\nsarcoplasm\r\nsarcoptes\r\nsarcoptid\r\nsarcoptidae\r\nsarcorhamphus\r\nsarcoscyphaceae\r\nsarcosine\r\nsarcosomal\r\nsarcosomataceae\r\nsarcosome\r\nsarcosporidia\r\nsarcosporidian\r\nsarcostemma\r\nsarcostyle\r\nsard\r\nsarda\r\nsardegna\r\nsardina\r\nsardine\r\nsardinia\r\nsardinian\r\nsardinops\r\nsardis\r\nsardius\r\nsardonic\r\nsardonically\r\nsardonyx\r\nsaree\r\nsargasso\r\nsargassum\r\nsargent\r\nsari\r\nsarin\r\nsarnoff\r\nsarong\r\nsaroyan\r\nsarpanitu\r\nsarpedon\r\nsarracenia\r\nsarraceniaceae\r\nsarraceniales\r\nsars\r\nsarsaparilla\r\nsarsenet\r\nsartor\r\nsartorial\r\nsartorius\r\nsartre\r\nsas\r\nsash\r\nsashay\r\nsashimi\r\nsaskatchewan\r\nsaskatoon\r\nsasquatch\r\nsass\r\nsassaby\r\nsassafras\r\nsassenach\r\nsassing\r\nsassy\r\nsat\r\nsatan\r\nsatang\r\nsatanic\r\nsatanism\r\nsatanist\r\nsatanophobia\r\nsatchel\r\nsatchmo\r\nsate\r\nsated\r\nsateen\r\nsatellite\r\nsatiable\r\nsatiate\r\nsatiated\r\nsatiation\r\nsatie\r\nsatiety\r\nsatin\r\nsatinet\r\nsatinette\r\nsatinleaf\r\nsatinpod\r\nsatinwood\r\nsatiny\r\nsatire\r\nsatiric\r\nsatirical\r\nsatirise\r\nsatirist\r\nsatirize\r\nsatisfaction\r\nsatisfactorily\r\nsatisfactoriness\r\nsatisfactory\r\nsatisfiable\r\nsatisfice\r\nsatisfied\r\nsatisfier\r\nsatisfy\r\nsatisfying\r\nsatisfyingly\r\nsatori\r\nsatrap\r\nsatsuma\r\nsaturate\r\nsaturated\r\nsaturation\r\nsaturday\r\nsatureia\r\nsatureja\r\nsaturn\r\nsaturnalia\r\nsaturnia\r\nsaturniid\r\nsaturniidae\r\nsaturnine\r\nsaturnism\r\nsatyagraha\r\nsatyr\r\nsatyriasis\r\nsatyric\r\nsatyrical\r\nsatyridae\r\nsauce\r\nsauce-alone\r\nsauceboat\r\nsaucepan\r\nsaucepot\r\nsaucer\r\nsaucer-eyed\r\nsaucer-shaped\r\nsaucily\r\nsauciness\r\nsaucy\r\nsaudi\r\nsaudi-arabian\r\nsauerbraten\r\nsauerkraut\r\nsauk\r\nsaul\r\nsauna\r\nsaunter\r\nsaunterer\r\nsaurel\r\nsauria\r\nsaurian\r\nsaurischia\r\nsaurischian\r\nsauromalus\r\nsauropod\r\nsauropoda\r\nsauropodomorpha\r\nsauropterygia\r\nsaurosuchus\r\nsaururaceae\r\nsaururus\r\nsaury\r\nsausage\r\nsausage-shaped\r\nsaussure\r\nsaussurea\r\nsaute\r\nsauteed\r\nsauteing\r\nsauterne\r\nsauternes\r\nsavage\r\nsavagely\r\nsavageness\r\nsavagery\r\nsavanna\r\nsavannah\r\nsavant\r\nsavara\r\nsavarin\r\nsave\r\nsave-all\r\nsaved\r\nsaveloy\r\nsaver\r\nsavin\r\nsaving\r\nsavings\r\nsavior\r\nsaviour\r\nsavitar\r\nsavoir-faire\r\nsavonarola\r\nsavor\r\nsavoriness\r\nsavoring\r\nsavorless\r\nsavorlessness\r\nsavory\r\nsavour\r\nsavouring\r\nsavourless\r\nsavourlessness\r\nsavoury\r\nsavoy\r\nsavoyard\r\nsavvy\r\nsaw\r\nsaw-like\r\nsaw-toothed\r\nsawan\r\nsawbill\r\nsawbones\r\nsawbuck\r\nsawdust\r\nsawed-off\r\nsawfish\r\nsawfly\r\nsawhorse\r\nsawm\r\nsawmill\r\nsawn-off\r\nsawpit\r\nsawtooth\r\nsawtoothed-edged\r\nsawwort\r\nsawyer\r\nsax\r\nsaxatile\r\nsaxe\r\nsaxe-coburg-gotha\r\nsaxe-gothea\r\nsaxegothea\r\nsaxhorn\r\nsaxicola\r\nsaxicoline\r\nsaxicolous\r\nsaxifraga\r\nsaxifragaceae\r\nsaxifrage\r\nsaxist\r\nsaxitoxin\r\nsaxon\r\nsaxony\r\nsaxophone\r\nsaxophonist\r\nsay\r\nsay-so\r\nsayanci\r\nsayda\r\nsayeret\r\nsayers\r\nsaying\r\nsayonara\r\nsayornis\r\nsazerac\r\nsb\r\nsba\r\nsbe\r\nsbw\r\nsc\r\nscab\r\nscabbard\r\nscabby\r\nscabicide\r\nscabies\r\nscabiosa\r\nscabious\r\nscablands\r\nscabrous\r\nscad\r\nscads\r\nscaffold\r\nscaffolding\r\nscag\r\nscalability\r\nscalable\r\nscalage\r\nscalar\r\nscalawag\r\nscald\r\nscalding\r\nscale\r\nscaled\r\nscaleless\r\nscalelike\r\nscalene\r\nscalenus\r\nscaler\r\nscaley\r\nscalic\r\nscaliness\r\nscaling\r\nscallion\r\nscallop\r\nscalloped\r\nscallopine\r\nscallopini\r\nscallywag\r\nscalp\r\nscalpel\r\nscalper\r\nscaly\r\nscaly-tailed\r\nscam\r\nscammer\r\nscammony\r\nscammonyroot\r\nscamp\r\nscamper\r\nscampi\r\nscampo\r\nscan\r\nscandal\r\nscandalisation\r\nscandalise\r\nscandalization\r\nscandalize\r\nscandalmonger\r\nscandalmongering\r\nscandalous\r\nscandalousness\r\nscandent\r\nscandentia\r\nscandinavia\r\nscandinavian\r\nscandium\r\nscanner\r\nscanning\r\nscansion\r\nscant\r\nscantily\r\nscantiness\r\nscantling\r\nscantness\r\nscanty\r\nscape\r\nscapegoat\r\nscapegrace\r\nscaphiopus\r\nscaphocephaly\r\nscaphoid\r\nscaphopod\r\nscaphopoda\r\nscaphosepalum\r\nscapose\r\nscapula\r\nscapular\r\nscapulary\r\nscapulohumeral\r\nscar\r\nscarab\r\nscarabaean\r\nscarabaeid\r\nscarabaeidae\r\nscarabaeus\r\nscaramouch\r\nscaramouche\r\nscarce\r\nscarcely\r\nscarceness\r\nscarcity\r\nscardinius\r\nscare\r\nscarecrow\r\nscarecrowish\r\nscared\r\nscaremonger\r\nscarer\r\nscarey\r\nscarf\r\nscarface\r\nscarfpin\r\nscaridae\r\nscarify\r\nscarily\r\nscarlatina\r\nscarlet\r\nscarlet-crimson\r\nscarlet-pink\r\nscarp\r\nscarper\r\nscarred\r\nscartella\r\nscary\r\nscat\r\nscathe\r\nscathing\r\nscathingly\r\nscatological\r\nscatology\r\nscatophagy\r\nscatter\r\nscatterbrain\r\nscatterbrained\r\nscattered\r\nscattergood\r\nscattergun\r\nscattering\r\nscattershot\r\nscatty\r\nscaup\r\nscauper\r\nscavenge\r\nscavenger\r\nscd\r\nsceliphron\r\nsceloglaux\r\nsceloporus\r\nscenario\r\nscenarist\r\nscend\r\nscene\r\nscene-stealer\r\nscenery\r\nsceneshifter\r\nscenic\r\nscent\r\nscented\r\nscentless\r\nscepter\r\nsceptered\r\nsceptic\r\nsceptical\r\nsceptically\r\nscepticism\r\nsceptre\r\nsceptred\r\nscet\r\nschadenfreude\r\nschaffneria\r\nschedule\r\nscheduled\r\nscheduler\r\nscheduling\r\nscheele\r\nscheelite\r\nschefflera\r\nscheldt\r\nschema\r\nschematic\r\nschematisation\r\nschematise\r\nschematization\r\nschematize\r\nscheme\r\nschemer\r\nscheming\r\nschemozzle\r\nschenectady\r\nscheol\r\nscherzo\r\nscheuchzeriaceae\r\nschiaparelli\r\nschiller\r\nschilling\r\nschinus\r\nschipperke\r\nschism\r\nschismatic\r\nschismatical\r\nschist\r\nschistorrhachis\r\nschistosoma\r\nschistosomatidae\r\nschistosome\r\nschistosomiasis\r\nschizachyrium\r\nschizaea\r\nschizaeaceae\r\nschizanthus\r\nschizocarp\r\nschizogony\r\nschizoid\r\nschizomycetes\r\nschizopetalon\r\nschizophragma\r\nschizophrenia\r\nschizophrenic\r\nschizophyceae\r\nschizophyta\r\nschizopoda\r\nschizosaccharomyces\r\nschizosaccharomycetaceae\r\nschizothymia\r\nschleiden\r\nschlemiel\r\nschlep\r\nschlepper\r\nschlesien\r\nschlesinger\r\nschliemann\r\nschlimazel\r\nschlock\r\nschlockmeister\r\nschlumbergera\r\nschmaltz\r\nschmaltzy\r\nschmalz\r\nschmalzy\r\nschmear\r\nschmeer\r\nschmegegge\r\nschmidt\r\nschmo\r\nschmoose\r\nschmooze\r\nschmoozer\r\nschmuck\r\nschnabel\r\nschnapps\r\nschnaps\r\nschnauzer\r\nschnecken\r\nschnittlaugh\r\nschnitzel\r\nschnook\r\nschnorchel\r\nschnorkel\r\nschnorr\r\nschnorrer\r\nschnoz\r\nschnozzle\r\nschoenberg\r\nscholar\r\nscholarly\r\nscholarship\r\nscholastic\r\nscholasticism\r\nscholiast\r\nschomburgkia\r\nschonbein\r\nschonberg\r\nschool\r\nschoolbag\r\nschoolbook\r\nschoolboy\r\nschoolboyish\r\nschoolchild\r\nschoolcraft\r\nschooldays\r\nschoolfellow\r\nschoolfriend\r\nschoolgirl\r\nschoolgirlish\r\nschoolhouse\r\nschooling\r\nschoolma'am\r\nschoolman\r\nschoolmarm\r\nschoolmaster\r\nschoolmate\r\nschoolmistress\r\nschoolroom\r\nschoolteacher\r\nschooltime\r\nschoolwide\r\nschoolwork\r\nschoolyard\r\nschooner\r\nschopenhauer\r\nschorl\r\nschottische\r\nschrod\r\nschrodinger\r\nschtick\r\nschtickl\r\nschtik\r\nschtikl\r\nschubert\r\nschulz\r\nschumann\r\nschumann-heink\r\nschumpeter\r\nschuss\r\nschutzstaffel\r\nschwa\r\nschwann\r\nschwarzwald\r\nschweitzer\r\nschweiz\r\nsciadopityaceae\r\nsciadopitys\r\nsciaena\r\nsciaenid\r\nsciaenidae\r\nsciaenops\r\nsciara\r\nsciarid\r\nsciaridae\r\nsciatic\r\nsciatica\r\nscid\r\nscience\r\nscientific\r\nscientist\r\nscientology\r\nscilla\r\nscimitar\r\nscincella\r\nscincid\r\nscincidae\r\nscincus\r\nscindapsus\r\nscintilla\r\nscintillant\r\nscintillate\r\nscintillating\r\nscintillation\r\nsciolism\r\nsciolist\r\nsciolistic\r\nscion\r\nscipio\r\nscirpus\r\nscission\r\nscissor\r\nscissor-tailed\r\nscissors\r\nscissortail\r\nscissure\r\nsciuridae\r\nsciuromorpha\r\nsciurus\r\nsclaff\r\nsclera\r\nscleranthus\r\nscleredema\r\nsclerite\r\nscleritis\r\nscleroderma\r\nsclerodermataceae\r\nsclerodermatales\r\nsclerometer\r\nscleroparei\r\nscleroprotein\r\nsclerosed\r\nsclerosis\r\nsclerotic\r\nsclerotinia\r\nsclerotiniaceae\r\nsclerotium\r\nsclerotomy\r\nsclk\r\nscnt\r\nscoff\r\nscoffer\r\nscoffing\r\nscoffingly\r\nscofflaw\r\nscoke\r\nscold\r\nscolder\r\nscolding\r\nscolion\r\nscoliosis\r\nscollop\r\nscolopacidae\r\nscolopax\r\nscolopendrium\r\nscolymus\r\nscolytidae\r\nscolytus\r\nscomber\r\nscomberesocidae\r\nscomberesox\r\nscomberomorus\r\nscombresocidae\r\nscombresox\r\nscombridae\r\nscombroid\r\nscombroidea\r\nsconce\r\nscone\r\nscoop\r\nscoopful\r\nscoot\r\nscooter\r\nscopal\r\nscope\r\nscopes\r\nscophthalmus\r\nscopolamine\r\nscopolia\r\nscorbutic\r\nscorbutus\r\nscorch\r\nscorched\r\nscorcher\r\nscorching\r\nscore\r\nscoreboard\r\nscorecard\r\nscorekeeper\r\nscoreless\r\nscorer\r\nscores\r\nscoria\r\nscoring\r\nscorn\r\nscorned\r\nscorner\r\nscornful\r\nscornfully\r\nscorpaena\r\nscorpaenid\r\nscorpaenidae\r\nscorpaenoid\r\nscorpaenoidea\r\nscorper\r\nscorpio\r\nscorpion\r\nscorpion-like\r\nscorpionfish\r\nscorpionida\r\nscorpionweed\r\nscorpius\r\nscorsese\r\nscorzonera\r\nscot\r\nscotch\r\nscotchman\r\nscotchwoman\r\nscoter\r\nscotland\r\nscotoma\r\nscotomatous\r\nscots\r\nscotsman\r\nscotswoman\r\nscott\r\nscottie\r\nscottish\r\nscoundrel\r\nscoundrelly\r\nscour\r\nscoured\r\nscourer\r\nscourge\r\nscourger\r\nscouring\r\nscours\r\nscouse\r\nscouser\r\nscout\r\nscouter\r\nscouting\r\nscoutmaster\r\nscow\r\nscowl\r\nscowling\r\nscrabble\r\nscrabbly\r\nscrag\r\nscraggly\r\nscraggy\r\nscram\r\nscramble\r\nscrambled\r\nscrambler\r\nscranch\r\nscranton\r\nscrap\r\nscrapbook\r\nscrape\r\nscraped\r\nscraper\r\nscrapheap\r\nscrapie\r\nscraping\r\nscrapper\r\nscrappily\r\nscrappiness\r\nscrapple\r\nscrappy\r\nscraps\r\nscratch\r\nscratched\r\nscratcher\r\nscratchiness\r\nscratching\r\nscratchpad\r\nscratchy\r\nscraunch\r\nscrawl\r\nscrawled\r\nscrawler\r\nscrawniness\r\nscrawny\r\nscreak\r\nscreakily\r\nscreaky\r\nscream\r\nscreamer\r\nscreaming\r\nscree\r\nscreech\r\nscreecher\r\nscreeching\r\nscreechy\r\nscreed\r\nscreen\r\nscreener\r\nscreening\r\nscreenland\r\nscreenplay\r\nscreenwriter\r\nscrew\r\nscrew-loose\r\nscrew-topped\r\nscrewball\r\nscrewballer\r\nscrewbean\r\nscrewdriver\r\nscrewing\r\nscrewtop\r\nscrewup\r\nscrewy\r\nscriabin\r\nscribble\r\nscribbler\r\nscribe\r\nscriber\r\nscrim\r\nscrimmage\r\nscrimp\r\nscrimpy\r\nscrimshank\r\nscrimshanker\r\nscrimshaw\r\nscrimy\r\nscrip\r\nscripps\r\nscript\r\nscripted\r\nscriptorium\r\nscriptural\r\nscripture\r\nscriptwriter\r\nscrivened\r\nscrivener\r\nscrod\r\nscrofula\r\nscrofulous\r\nscroll\r\nscrooge\r\nscrophularia\r\nscrophulariaceae\r\nscrophulariales\r\nscrotal\r\nscrotum\r\nscrounge\r\nscrounger\r\nscrub\r\nscrub-bird\r\nscrubbed\r\nscrubber\r\nscrubbiness\r\nscrubbing\r\nscrubbird\r\nscrubby\r\nscrubland\r\nscrubs\r\nscruff\r\nscruffy\r\nscrum\r\nscrummage\r\nscrumptious\r\nscrumptiously\r\nscrumpy\r\nscrunch\r\nscruple\r\nscruples\r\nscrupulous\r\nscrupulously\r\nscrupulousness\r\nscrutineer\r\nscrutinise\r\nscrutiniser\r\nscrutinize\r\nscrutinizer\r\nscrutiny\r\nscry\r\nscsi\r\nscuba\r\nscud\r\nscudding\r\nscuff\r\nscuffer\r\nscuffle\r\nscull\r\nsculler\r\nscullery\r\nsculling\r\nscullion\r\nsculpin\r\nsculpt\r\nsculpted\r\nsculptor\r\nsculptress\r\nsculptural\r\nsculpture\r\nsculptured\r\nsculpturer\r\nsculpturesque\r\nscum\r\nscumble\r\nscummy\r\nscunner\r\nscup\r\nscupper\r\nscuppernong\r\nscurf\r\nscurfy\r\nscurrility\r\nscurrilous\r\nscurry\r\nscurrying\r\nscurvily\r\nscurvy\r\nscut\r\nscutcheon\r\nscute\r\nscutellaria\r\nscutigera\r\nscutigerella\r\nscutigeridae\r\nscuttle\r\nscuttlebutt\r\nscyliorhinidae\r\nscylla\r\nscyphozoa\r\nscyphozoan\r\nscyphus\r\nscythe\r\nscythia\r\nscythian\r\nsd\r\nse\r\nsea\r\nsea-coast\r\nsea-duty\r\nsea-ear\r\nsea-green\r\nsea-level\r\nsea-poose\r\nsea-purse\r\nsea-puss\r\nsea-rocket\r\nseabag\r\nseabed\r\nseabird\r\nseaboard\r\nseaborg\r\nseaborgium\r\nseaborne\r\nseacoast\r\nseafarer\r\nseafaring\r\nseafood\r\nseafowl\r\nseafront\r\nseagirt\r\nseagoing\r\nseagrass\r\nseagull\r\nseahorse\r\nseal\r\nsealant\r\nsealed\r\nsealer\r\nsealing\r\nsealskin\r\nsealyham\r\nseam\r\nseaman\r\nseamanlike\r\nseamanly\r\nseamanship\r\nseamed\r\nseamless\r\nseamount\r\nseamster\r\nseamstress\r\nseamy\r\nseanad\r\nseance\r\nseaplane\r\nseaport\r\nseaquake\r\nsear\r\nsearch\r\nsearcher\r\nsearching\r\nsearchlight\r\nseared\r\nsearobin\r\nseascape\r\nseashell\r\nseashore\r\nseasick\r\nseasickness\r\nseaside\r\nseasnail\r\nseason\r\nseasonable\r\nseasonableness\r\nseasonably\r\nseasonal\r\nseasoned\r\nseasoner\r\nseasoning\r\nseat\r\nseatbelt\r\nseated\r\nseating\r\nseats\r\nseattle\r\nseawall\r\nseaward\r\nseawards\r\nseawater\r\nseaway\r\nseaweed\r\nseaworthiness\r\nseaworthy\r\nseb\r\nsebaceous\r\nsebastiana\r\nsebastodes\r\nsebastopol\r\nsebe\r\nseborrhea\r\nsebs\r\nsebum\r\nsec\r\nsecale\r\nsecant\r\nsecateurs\r\nsecede\r\nsecern\r\nsecernate\r\nsecernment\r\nsecession\r\nsecessionism\r\nsecessionist\r\nsechuana\r\nseckel\r\nseclude\r\nsecluded\r\nseclusion\r\nsecobarbital\r\nseconal\r\nsecond\r\nsecond-best\r\nsecond-class\r\nsecond-guess\r\nsecond-in-command\r\nsecond-rate\r\nsecond-rater\r\nsecond-sighted\r\nsecond-string\r\nsecond-stringer\r\nsecond-year\r\nsecondarily\r\nsecondary\r\nseconder\r\nsecondhand\r\nsecondly\r\nsecondment\r\nsecondo\r\nsecotiaceae\r\nsecotiales\r\nsecpar\r\nsecrecy\r\nsecret\r\nsecretaire\r\nsecretarial\r\nsecretariat\r\nsecretariate\r\nsecretary\r\nsecretaryship\r\nsecretase\r\nsecrete\r\nsecreter\r\nsecretin\r\nsecretion\r\nsecretive\r\nsecretiveness\r\nsecretly\r\nsecretor\r\nsecretory\r\nsect\r\nsectarian\r\nsectarianism\r\nsectarist\r\nsectary\r\nsection\r\nsectional\r\nsectionalisation\r\nsectionalise\r\nsectionalism\r\nsectionalization\r\nsectionalize\r\nsectioned\r\nsector\r\nsectorial\r\nsectral\r\nsecular\r\nsecularisation\r\nsecularise\r\nsecularised\r\nsecularism\r\nsecularist\r\nsecularization\r\nsecularize\r\nsecularized\r\nsecundigravida\r\nsecure\r\nsecured\r\nsecurely\r\nsecureness\r\nsecurer\r\nsecurity\r\nsedalia\r\nsedan\r\nsedate\r\nsedated\r\nsedately\r\nsedateness\r\nsedation\r\nsedative\r\nsedative-hypnotic\r\nsedentary\r\nseder\r\nsedge\r\nsedgelike\r\nsedgy\r\nsediment\r\nsedimentary\r\nsedimentation\r\nsedition\r\nseditious\r\nsedna\r\nseduce\r\nseducer\r\nseduction\r\nseductive\r\nseductively\r\nseductress\r\nsedulity\r\nsedulous\r\nsedulousness\r\nsedum\r\nsee\r\nsee-through\r\nseeable\r\nseed\r\nseed-like\r\nseed-producing\r\nseedbed\r\nseedcake\r\nseedcase\r\nseeded\r\nseeder\r\nseediness\r\nseedless\r\nseedlike\r\nseedling\r\nseedman\r\nseedpod\r\nseedsman\r\nseedtime\r\nseedy\r\nseeger\r\nseeing\r\nseek\r\nseeker\r\nseeking\r\nseel\r\nseeland\r\nseem\r\nseeming\r\nseemingly\r\nseemliness\r\nseemly\r\nseep\r\nseepage\r\nseeping\r\nseer\r\nseersucker\r\nseesaw\r\nseethe\r\nseething\r\nsegal\r\nsegment\r\nsegmental\r\nsegmentation\r\nsegmented\r\nsegno\r\nsegovia\r\nsegregate\r\nsegregated\r\nsegregation\r\nsegregationism\r\nsegregationist\r\nsegregator\r\nsegue\r\nsegway\r\nseiche\r\nseidel\r\nseigneur\r\nseigneury\r\nseignior\r\nseigniorage\r\nseigniory\r\nseine\r\nseism\r\nseismal\r\nseismic\r\nseismogram\r\nseismograph\r\nseismography\r\nseismologic\r\nseismological\r\nseismologist\r\nseismology\r\nseismosaur\r\nseismosaurus\r\nseiurus\r\nseize\r\nseized\r\nseizer\r\nseizing\r\nseizure\r\nsekhet\r\nselachian\r\nselachii\r\nselaginella\r\nselaginellaceae\r\nselaginellales\r\nselar\r\nselcraig\r\nseldom\r\nselect\r\nselected\r\nselection\r\nselective\r\nselectively\r\nselectivity\r\nselectman\r\nselector\r\nselectwoman\r\nselenarctos\r\nselene\r\nselenicereus\r\nselenipedium\r\nselenium\r\nselenolatry\r\nselenology\r\nseles\r\nseleucus\r\nself\r\nself-abasement\r\nself-abnegating\r\nself-abnegation\r\nself-absorbed\r\nself-absorption\r\nself-abuse\r\nself-accusation\r\nself-acting\r\nself-activating\r\nself-addressed\r\nself-aggrandisement\r\nself-aggrandising\r\nself-aggrandizement\r\nself-aggrandizing\r\nself-analysis\r\nself-annihilation\r\nself-appointed\r\nself-asserting\r\nself-assertion\r\nself-assertive\r\nself-assertiveness\r\nself-assurance\r\nself-assured\r\nself-aware\r\nself-awareness\r\nself-balancing\r\nself-centered\r\nself-centeredness\r\nself-centred\r\nself-collected\r\nself-colored\r\nself-coloured\r\nself-command\r\nself-complacency\r\nself-complacent\r\nself-conceited\r\nself-conceitedly\r\nself-concern\r\nself-condemnation\r\nself-confessed\r\nself-confidence\r\nself-confident\r\nself-conscious\r\nself-consciously\r\nself-consciousness\r\nself-consistent\r\nself-constituted\r\nself-contained\r\nself-contemplation\r\nself-contradiction\r\nself-contradictory\r\nself-control\r\nself-criticism\r\nself-cultivation\r\nself-deceit\r\nself-deception\r\nself-defeating\r\nself-defence\r\nself-defense\r\nself-denial\r\nself-denying\r\nself-deprecating\r\nself-depreciation\r\nself-destroy\r\nself-destruct\r\nself-destruction\r\nself-destructive\r\nself-determination\r\nself-digestion\r\nself-directed\r\nself-direction\r\nself-discipline\r\nself-disciplined\r\nself-discovery\r\nself-disgust\r\nself-distrust\r\nself-doubt\r\nself-drive\r\nself-educated\r\nself-education\r\nself-effacement\r\nself-effacing\r\nself-employed\r\nself-enclosed\r\nself-established\r\nself-esteem\r\nself-evident\r\nself-examination\r\nself-examining\r\nself-explanatory\r\nself-expression\r\nself-feeder\r\nself-fertilisation\r\nself-fertilised\r\nself-fertilization\r\nself-fertilized\r\nself-flagellation\r\nself-forgetful\r\nself-fulfillment\r\nself-generated\r\nself-giving\r\nself-governing\r\nself-government\r\nself-gratification\r\nself-hatred\r\nself-heal\r\nself-help\r\nself-hypnosis\r\nself-importance\r\nself-important\r\nself-imposed\r\nself-improvement\r\nself-incrimination\r\nself-induced\r\nself-inductance\r\nself-induction\r\nself-indulgence\r\nself-indulgent\r\nself-insurance\r\nself-interest\r\nself-involved\r\nself-justification\r\nself-knowledge\r\nself-limited\r\nself-loader\r\nself-loading\r\nself-locking\r\nself-love\r\nself-loving\r\nself-luminous\r\nself-made\r\nself-mortification\r\nself-moving\r\nself-opinionated\r\nself-organisation\r\nself-organization\r\nself-pity\r\nself-pollinated\r\nself-pollinating\r\nself-pollination\r\nself-portrait\r\nself-possessed\r\nself-possession\r\nself-praise\r\nself-preservation\r\nself-pride\r\nself-produced\r\nself-propelled\r\nself-propelling\r\nself-protection\r\nself-punishment\r\nself-realisation\r\nself-realization\r\nself-referent\r\nself-reformation\r\nself-regard\r\nself-regulating\r\nself-reliance\r\nself-reliant\r\nself-renewal\r\nself-renewing\r\nself-renunciation\r\nself-reproach\r\nself-reproof\r\nself-respect\r\nself-respectful\r\nself-respecting\r\nself-restraining\r\nself-restraint\r\nself-righteous\r\nself-righteously\r\nself-rule\r\nself-sacrifice\r\nself-sacrificing\r\nself-satisfaction\r\nself-satisfied\r\nself-sealing\r\nself-seeded\r\nself-seeker\r\nself-seeking\r\nself-service\r\nself-serving\r\nself-sowed\r\nself-sown\r\nself-starter\r\nself-stimulation\r\nself-styled\r\nself-sufficiency\r\nself-sufficient\r\nself-sufficing\r\nself-suggestion\r\nself-supporting\r\nself-sustained\r\nself-sustaining\r\nself-torment\r\nself-torture\r\nself-whispered\r\nself-will\r\nself-willed\r\nself-winding\r\nself-worship\r\nself-worth\r\nselfish\r\nselfishly\r\nselfishness\r\nselfless\r\nselflessly\r\nselflessness\r\nselfsame\r\nselfsameness\r\nseljuk\r\nselkirk\r\nselkup\r\nsell\r\nsellable\r\nseller\r\nsellers\r\nselling\r\nselloff\r\nsellotape\r\nsellout\r\nselma\r\nselsyn\r\nseltzer\r\nselva\r\nselvage\r\nselvedge\r\nselznick\r\nsemantic\r\nsemanticist\r\nsemantics\r\nsemaphore\r\nsemarang\r\nsemasiology\r\nsemblance\r\nsemen\r\nsemester\r\nsemestral\r\nsemestrial\r\nsemi\r\nsemi-abstraction\r\nsemi-automatise\r\nsemi-automatize\r\nsemi-climber\r\nsemi-climbing\r\nsemi-dry\r\nsemi-erect\r\nsemi-evergreen\r\nsemi-formal\r\nsemi-processed\r\nsemi-prostrate\r\nsemi-tuberous\r\nsemi-upright\r\nsemi-wild\r\nsemiabstract\r\nsemiannual\r\nsemiannually\r\nsemiaquatic\r\nsemiarid\r\nsemiautobiographical\r\nsemiautomatic\r\nsemibreve\r\nsemicentenary\r\nsemicentennial\r\nsemicircle\r\nsemicircular\r\nsemicolon\r\nsemicoma\r\nsemicomatose\r\nsemiconducting\r\nsemiconductive\r\nsemiconductor\r\nsemiconscious\r\nsemiconsciousness\r\nsemidark\r\nsemidarkness\r\nsemidesert\r\nsemidetached\r\nsemidiameter\r\nsemiempirical\r\nsemiepiphyte\r\nsemifinal\r\nsemifinalist\r\nsemifluidity\r\nsemiformal\r\nsemigloss\r\nsemihard\r\nsemiliquid\r\nsemiliterate\r\nsemilunar\r\nsemimonthly\r\nseminal\r\nseminar\r\nseminarian\r\nseminarist\r\nseminary\r\nseminiferous\r\nseminole\r\nseminoma\r\nseminude\r\nsemiofficial\r\nsemiology\r\nsemiopaque\r\nsemiotic\r\nsemiotical\r\nsemiotician\r\nsemiotics\r\nsemiparasite\r\nsemiparasitic\r\nsemipermanent\r\nsemipermeable\r\nsemipolitical\r\nsemiprecious\r\nsemiprivate\r\nsemipro\r\nsemiprofessional\r\nsemipublic\r\nsemiquaver\r\nsemirigid\r\nsemiskilled\r\nsemisoft\r\nsemisolid\r\nsemisweet\r\nsemisynthetic\r\nsemite\r\nsemiterrestrial\r\nsemitic\r\nsemitic-speaking\r\nsemitone\r\nsemitrailer\r\nsemitrance\r\nsemitransparency\r\nsemitransparent\r\nsemitropic\r\nsemitropical\r\nsemitropics\r\nsemivowel\r\nsemiweekly\r\nsemolina\r\nsempatch\r\nsempiternal\r\nsempiternity\r\nsempstress\r\nsen\r\nsenate\r\nsenator\r\nsenatorial\r\nsenatorship\r\nsend\r\nsend-off\r\nsendee\r\nsender\r\nsending\r\nsendup\r\nsene\r\nseneca\r\nsenecan\r\nsenecio\r\nsenefelder\r\nsenega\r\nsenegal\r\nsenegalese\r\nsenesce\r\nsenescence\r\nsenescent\r\nseneschal\r\nsenhor\r\nsenile\r\nsenility\r\nsenior\r\nseniority\r\nseniti\r\nsenna\r\nsennacherib\r\nsennett\r\nsennit\r\nsenor\r\nsenora\r\nsenorita\r\nsens\r\nsensate\r\nsensation\r\nsensational\r\nsensationalism\r\nsensationalist\r\nsensationalistic\r\nsense\r\nsensed\r\nsenseless\r\nsenselessly\r\nsenselessness\r\nsensibilise\r\nsensibility\r\nsensibilize\r\nsensible\r\nsensibleness\r\nsensibly\r\nsensify\r\nsensing\r\nsensitisation\r\nsensitise\r\nsensitised\r\nsensitiser\r\nsensitising\r\nsensitive\r\nsensitively\r\nsensitiveness\r\nsensitivity\r\nsensitization\r\nsensitize\r\nsensitized\r\nsensitizer\r\nsensitizing\r\nsensitometer\r\nsensor\r\nsensorial\r\nsensorimotor\r\nsensorium\r\nsensory\r\nsensual\r\nsensualise\r\nsensualism\r\nsensualist\r\nsensuality\r\nsensualize\r\nsensually\r\nsensualness\r\nsensuous\r\nsensuousness\r\nsent\r\nsente\r\nsentence\r\nsentential\r\nsententious\r\nsententiously\r\nsentience\r\nsentiency\r\nsentient\r\nsentiment\r\nsentimental\r\nsentimentalisation\r\nsentimentalise\r\nsentimentalism\r\nsentimentalist\r\nsentimentality\r\nsentimentalization\r\nsentimentalize\r\nsentimentally\r\nsentimentise\r\nsentimentize\r\nsentinel\r\nsentry\r\nseoul\r\nsep\r\nsepal\r\nsepaline\r\nsepaloid\r\nseparability\r\nseparable\r\nseparably\r\nseparate\r\nseparated\r\nseparately\r\nseparateness\r\nseparation\r\nseparationism\r\nseparationist\r\nseparatism\r\nseparatist\r\nseparative\r\nseparator\r\nseparatrix\r\nsephardi\r\nsepia\r\nsepiidae\r\nsepiolite\r\nsepsis\r\nsept\r\nseptal\r\nseptate\r\nseptation\r\nseptectomy\r\nseptember\r\nseptenary\r\nseptentrion\r\nseptet\r\nseptette\r\nseptic\r\nsepticaemia\r\nsepticemia\r\nsepticemic\r\nseptillion\r\nseptobasidiaceae\r\nseptobasidium\r\nseptrional\r\nseptuagenarian\r\nseptuagesima\r\nseptuagint\r\nseptum\r\nseptuple\r\nsepulcher\r\nsepulchral\r\nsepulchre\r\nsepulture\r\nsequel\r\nsequela\r\nsequella\r\nsequenator\r\nsequence\r\nsequencer\r\nsequent\r\nsequential\r\nsequentially\r\nsequester\r\nsequestered\r\nsequestrate\r\nsequestration\r\nsequin\r\nsequined\r\nsequoia\r\nsequoiadendron\r\nsequoya\r\nsequoyah\r\nseraglio\r\nserail\r\nserape\r\nseraph\r\nseraphic\r\nseraphical\r\nserax\r\nserb\r\nserbia\r\nserbian\r\nserbo-croat\r\nserbo-croatian\r\nserdica\r\nsere\r\nserenade\r\nserendipitous\r\nserendipity\r\nserene\r\nsereness\r\nserengeti\r\nserenity\r\nserenoa\r\nserer\r\nserf\r\nserfdom\r\nserfhood\r\nserflike\r\nserge\r\nsergeant\r\nsergeant-at-law\r\nserger\r\nserial\r\nserialisation\r\nserialise\r\nserialism\r\nserialization\r\nserialize\r\nsericeous\r\nsericocarpus\r\nsericterium\r\nserictery\r\nsericultural\r\nsericulture\r\nsericulturist\r\nseriema\r\nseries\r\nserif\r\nserigraph\r\nserigraphy\r\nserin\r\nserine\r\nserinus\r\nseriocomedy\r\nseriocomic\r\nseriocomical\r\nseriola\r\nserious\r\nserious-minded\r\nserious-mindedness\r\nseriously\r\nseriousness\r\nseriph\r\nseriphidium\r\nseriphus\r\nserjeant\r\nserjeant-at-arms\r\nserjeant-at-law\r\nserkin\r\nsermon\r\nsermonise\r\nsermoniser\r\nsermonize\r\nsermonizer\r\nserologic\r\nserological\r\nserologist\r\nserology\r\nserosa\r\nserotine\r\nserotonin\r\nserous\r\nserow\r\nserpasil\r\nserpens\r\nserpent\r\nserpent-worship\r\nserpentes\r\nserpentine\r\nserra\r\nserranid\r\nserranidae\r\nserranus\r\nserrasalmus\r\nserrate\r\nserrated\r\nserratia\r\nserration\r\nserratula\r\nserratus\r\nserried\r\nserrulate\r\nsertraline\r\nsertularia\r\nsertularian\r\nserum\r\nserval\r\nservant\r\nserve\r\nserver\r\nservice\r\nserviceability\r\nserviceable\r\nserviceableness\r\nserviceberry\r\nserviceman\r\nservices\r\nservicing\r\nserviette\r\nservile\r\nservilely\r\nservility\r\nserving\r\nservitor\r\nservitude\r\nservo\r\nservomechanical\r\nservomechanism\r\nservosystem\r\nserzone\r\nsesame\r\nsesamoid\r\nsesamum\r\nsesbania\r\nseseli\r\nsesotho\r\nsesquipedalia\r\nsesquipedalian\r\nsesquipedality\r\nsess\r\nsessile\r\nsession\r\nsessions\r\nsestet\r\nset\r\nset-apart\r\nset-aside\r\nset-back\r\nset-to\r\nseta\r\nsetaceous\r\nsetaria\r\nsetback\r\nseth\r\nsetline\r\nsetoff\r\nseton\r\nsetophaga\r\nsetose\r\nsetscrew\r\nsetswana\r\nsett\r\nsettee\r\nsetter\r\nsetterwort\r\nsetting\r\nsettle\r\nsettled\r\nsettlement\r\nsettler\r\nsettling\r\nsettlings\r\nsetubal\r\nsetup\r\nseurat\r\nsevastopol\r\nseven\r\nseven-day\r\nseven-fold\r\nseven-membered\r\nseven-sided\r\nseven-spot\r\nseven-up\r\nsevener\r\nsevenfold\r\nsevens\r\nsevensome\r\nseventeen\r\nseventeenth\r\nseventh\r\nseventies\r\nseventieth\r\nseventy\r\nseventy-eight\r\nseventy-fifth\r\nseventy-five\r\nseventy-four\r\nseventy-nine\r\nseventy-one\r\nseventy-seven\r\nseventy-six\r\nseventy-three\r\nseventy-two\r\nsever\r\nseverable\r\nseveral\r\nseveral-seeded\r\nseveralise\r\nseveralize\r\nseverally\r\nseveralty\r\nseverance\r\nsevere\r\nsevered\r\nseverely\r\nsevereness\r\nsevering\r\nseverity\r\nsevern\r\nsevilla\r\nseville\r\nsew\r\nsewage\r\nseward\r\nsewed\r\nsewellel\r\nsewer\r\nsewerage\r\nsewing\r\nsewn\r\nsex\r\nsex-limited\r\nsex-linked\r\nsex-starved\r\nsexagenarian\r\nsexagesimal\r\nsexcapade\r\nsexed\r\nsexiness\r\nsexism\r\nsexist\r\nsexless\r\nsexlessness\r\nsexploitation\r\nsexpot\r\nsext\r\nsextant\r\nsextet\r\nsextette\r\nsextillion\r\nsexton\r\nsextuple\r\nsextuplet\r\nsexual\r\nsexualise\r\nsexuality\r\nsexualize\r\nsexy\r\nseychelles\r\nseychellois\r\nseyhan\r\nseymour\r\nsezession\r\nsfax\r\nsforzando\r\nsg\r\nsgml\r\nsgraffito\r\nsha'ban\r\nshaaban\r\nshabbiness\r\nshabby\r\nshabby-genteel\r\nshabu\r\nshabuoth\r\nshack\r\nshackle\r\nshackled\r\nshad\r\nshad-flower\r\nshad-like\r\nshadberry\r\nshadblow\r\nshadbush\r\nshaddock\r\nshade\r\nshaded\r\nshades\r\nshadflower\r\nshadfly\r\nshadiness\r\nshading\r\nshadow\r\nshadowbox\r\nshadowboxing\r\nshadowed\r\nshadower\r\nshadowgraph\r\nshadowiness\r\nshadowing\r\nshadowy\r\nshady\r\nshaft\r\nshag\r\nshagbark\r\nshagged\r\nshagginess\r\nshaggy\r\nshaggy-coated\r\nshaggy-haired\r\nshaggymane\r\nshah\r\nshahadah\r\nshahaptian\r\nshaheed\r\nshahn\r\nshaitan\r\nshakable\r\nshake\r\nshake-up\r\nshakeable\r\nshakedown\r\nshaken\r\nshakeout\r\nshaker\r\nshakers\r\nshakespeare\r\nshakespearean\r\nshakespearian\r\nshakeup\r\nshakiness\r\nshaking\r\nshako\r\nshakspere\r\nshakti\r\nshaktism\r\nshaktist\r\nshaky\r\nshale\r\nshall-flower\r\nshallon\r\nshallot\r\nshallow\r\nshallow-draft\r\nshallow-draught\r\nshallowness\r\nshallu\r\nshalwar\r\nsham\r\nshaman\r\nshamanise\r\nshamanism\r\nshamanist\r\nshamanistic\r\nshamanize\r\nshamash\r\nshamble\r\nshambles\r\nshambling\r\nshambolic\r\nshame\r\nshamed\r\nshamefaced\r\nshamefacedness\r\nshameful\r\nshamefully\r\nshamefulness\r\nshameless\r\nshamelessly\r\nshamelessness\r\nshamisen\r\nshammer\r\nshammy\r\nshampoo\r\nshamrock\r\nshamus\r\nshan\r\nshandy\r\nshandygaff\r\nshang\r\nshanghai\r\nshanghaier\r\nshangri-la\r\nshank\r\nshankar\r\nshannon\r\nshanny\r\nshantung\r\nshanty\r\nshantytown\r\nshape\r\nshape-up\r\nshaped\r\nshapeless\r\nshapelessness\r\nshapeliness\r\nshapely\r\nshaper\r\nshaping\r\nshapley\r\nshard\r\nshare\r\nshare-out\r\nsharecropper\r\nshared\r\nshareholder\r\nshareholding\r\nshareowner\r\nsharer\r\nshareware\r\nshari\r\nsharia\r\nshariah\r\nsharing\r\nshark\r\nsharkskin\r\nsharksucker\r\nsharp\r\nsharp-angled\r\nsharp-cornered\r\nsharp-eared\r\nsharp-eyed\r\nsharp-limbed\r\nsharp-nosed\r\nsharp-pointed\r\nsharp-set\r\nsharp-sighted\r\nsharp-sightedness\r\nsharp-tasting\r\nsharp-toothed\r\nsharp-worded\r\nsharpen\r\nsharpened\r\nsharpener\r\nsharper\r\nsharpie\r\nsharply\r\nsharpness\r\nsharpshoot\r\nsharpshooter\r\nsharpy\r\nshasta\r\nshastan\r\nshatter\r\nshattered\r\nshattering\r\nshatterproof\r\nshave\r\nshaved\r\nshaven\r\nshaver\r\nshavian\r\nshaving\r\nshavous\r\nshavuot\r\nshavuoth\r\nshaw\r\nshawl\r\nshawm\r\nshawn\r\nshawnee\r\nshawny\r\nshawwal\r\nshay\r\nshaytan\r\nshe-bop\r\nshe-devil\r\nshe-goat\r\nshe-oak\r\nsheaf\r\nshear\r\nsheared\r\nshearer\r\nshearing\r\nshears\r\nshearwater\r\nsheatfish\r\nsheath\r\nsheathe\r\nsheathed\r\nsheathing\r\nshebang\r\nshebat\r\nshebeen\r\nshed\r\nshedder\r\nshedding\r\nsheen\r\nsheeny\r\nsheep\r\nsheep-tick\r\nsheepcote\r\nsheepdog\r\nsheepfold\r\nsheepherder\r\nsheepish\r\nsheepishness\r\nsheeplike\r\nsheepman\r\nsheeprun\r\nsheepshank\r\nsheepshead\r\nsheepshearing\r\nsheepskin\r\nsheepwalk\r\nsheer\r\nsheesha\r\nsheet\r\nsheeting\r\nsheetlike\r\nsheetrock\r\nsheffield\r\nshegetz\r\nsheik\r\nsheika\r\nsheikdom\r\nsheikh\r\nsheikha\r\nsheikhdom\r\nshekel\r\nshekels\r\nsheldrake\r\nshelduck\r\nshelf\r\nshelfful\r\nshelflike\r\nshelfy\r\nshell\r\nshell-flower\r\nshell-less\r\nshellac\r\nshellack\r\nshellbark\r\nshelled\r\nsheller\r\nshelley\r\nshellfire\r\nshellfish\r\nshellflower\r\nshelling\r\nshellproof\r\nshelter\r\nshelterbelt\r\nsheltered\r\nshelve\r\nshelver\r\nshelvy\r\nshem\r\nshema\r\nshemozzle\r\nshen-pao\r\nshenanigan\r\nshenyang\r\nshepard\r\nshepherd\r\nshepherdess\r\nsheraton\r\nsherbert\r\nsherbet\r\nsherd\r\nsheridan\r\nsheriff\r\nsherlock\r\nsherman\r\nsherpa\r\nsherrington\r\nsherry\r\nsherwood\r\nshetland\r\nshevat\r\nshevchenko\r\nshew\r\nshf\r\nshi'ite\r\nshia\r\nshiah\r\nshiatsu\r\nshibah\r\nshibboleth\r\nshield\r\nshield-shaped\r\nshielded\r\nshielder\r\nshielding\r\nshift\r\nshifter\r\nshiftiness\r\nshifting\r\nshiftless\r\nshiftlessness\r\nshifty\r\nshigella\r\nshigellosis\r\nshih-tzu\r\nshiism\r\nshiitake\r\nshiite\r\nshikoku\r\nshiksa\r\nshikse\r\nshill\r\nshillalah\r\nshillelagh\r\nshilling\r\nshillyshally\r\nshiloh\r\nshim\r\nshimmer\r\nshimmery\r\nshimmy\r\nshin\r\nshina\r\nshinbone\r\nshindig\r\nshindy\r\nshine\r\nshiner\r\nshingle\r\nshingler\r\nshingles\r\nshingling\r\nshingly\r\nshingon\r\nshininess\r\nshining\r\nshinleaf\r\nshinney\r\nshinny\r\nshinpad\r\nshinplaster\r\nshinto\r\nshintoism\r\nshintoist\r\nshintoistic\r\nshiny\r\nship\r\nship-breaker\r\nshipboard\r\nshipbuilder\r\nshipbuilding\r\nshipload\r\nshipmate\r\nshipment\r\nshipowner\r\nshipper\r\nshipping\r\nshipshape\r\nshipside\r\nshipway\r\nshipworm\r\nshipwreck\r\nshipwrecked\r\nshipwright\r\nshipyard\r\nshiraz\r\nshire\r\nshirer\r\nshirk\r\nshirker\r\nshirking\r\nshirr\r\nshirring\r\nshirt\r\nshirtdress\r\nshirtfront\r\nshirting\r\nshirtlifter\r\nshirtmaker\r\nshirtsleeve\r\nshirtsleeves\r\nshirttail\r\nshirtwaist\r\nshirtwaister\r\nshirty\r\nshisha\r\nshit\r\nshite\r\nshithead\r\nshitless\r\nshitlist\r\nshittah\r\nshitter\r\nshittim\r\nshittimwood\r\nshitting\r\nshitty\r\nshitwork\r\nshiv\r\nshiva\r\nshivah\r\nshivaism\r\nshivaist\r\nshivaree\r\nshiver\r\nshivering\r\nshivery\r\nshlemiel\r\nshlep\r\nshlepper\r\nshlimazel\r\nshlock\r\nshlockmeister\r\nshmaltz\r\nshmear\r\nshmegegge\r\nshmo\r\nshmoose\r\nshmooze\r\nshmuck\r\nshnook\r\nshnorr\r\nshnorrer\r\nshoal\r\nshoaly\r\nshoat\r\nshock\r\nshock-absorbent\r\nshock-headed\r\nshockable\r\nshocked\r\nshocker\r\nshocking\r\nshockley\r\nshod\r\nshodden\r\nshoddiness\r\nshoddy\r\nshoe\r\nshoe-shop\r\nshoebill\r\nshoebird\r\nshoeblack\r\nshoebox\r\nshoed\r\nshoeful\r\nshoehorn\r\nshoelace\r\nshoeless\r\nshoemaker\r\nshoemaking\r\nshoes\r\nshoeshine\r\nshoestring\r\nshoetree\r\nshofar\r\nshogi\r\nshogun\r\nshogunate\r\nshoji\r\nshona\r\nshoo\r\nshoo-in\r\nshoofly\r\nshook\r\nshoot\r\nshoot-'em-up\r\nshoot-down\r\nshooter\r\nshooting\r\nshootout\r\nshop\r\nshopaholic\r\nshopfront\r\nshophar\r\nshopkeeper\r\nshoplift\r\nshoplifter\r\nshoplifting\r\nshopper\r\nshopping\r\nshopsoiled\r\nshopwalker\r\nshopwindow\r\nshopworn\r\nshore\r\nshorea\r\nshorebird\r\nshoreline\r\nshoring\r\nshorn\r\nshort\r\nshort-beaked\r\nshort-billed\r\nshort-bodied\r\nshort-change\r\nshort-circuit\r\nshort-dated\r\nshort-eared\r\nshort-grass\r\nshort-haired\r\nshort-handed\r\nshort-handled\r\nshort-headed\r\nshort-lived\r\nshort-nosed\r\nshort-order\r\nshort-range\r\nshort-run\r\nshort-snouted\r\nshort-spurred\r\nshort-staffed\r\nshort-stalked\r\nshort-stemmed\r\nshort-stop\r\nshort-tailed\r\nshort-tempered\r\nshort-term\r\nshort-winded\r\nshort-winged\r\nshortage\r\nshortbread\r\nshortcake\r\nshortcoming\r\nshortcut\r\nshorten\r\nshortened\r\nshortener\r\nshortening\r\nshortfall\r\nshortgrass\r\nshorthand\r\nshorthorn\r\nshortia\r\nshortish\r\nshortlist\r\nshortly\r\nshortness\r\nshorts\r\nshortsighted\r\nshortsightedness\r\nshortstop\r\nshoshone\r\nshoshonean\r\nshoshoni\r\nshoshonian\r\nshostakovich\r\nshot\r\nshote\r\nshotgun\r\nshoulder\r\nshouldered\r\nshout\r\nshouted\r\nshouter\r\nshouting\r\nshove\r\nshove-ha'penny\r\nshove-halfpenny\r\nshovel\r\nshovelboard\r\nshoveler\r\nshovelful\r\nshovelhead\r\nshoveller\r\nshover\r\nshow\r\nshow-off\r\nshow-stopper\r\nshowboat\r\nshowcase\r\nshowdown\r\nshower\r\nshowerhead\r\nshowery\r\nshowgirl\r\nshowily\r\nshowiness\r\nshowing\r\nshowjumping\r\nshowman\r\nshowmanship\r\nshowpiece\r\nshowplace\r\nshowroom\r\nshowstopper\r\nshowtime\r\nshowy\r\nshrapnel\r\nshred\r\nshredded\r\nshredder\r\nshreveport\r\nshrew\r\nshrew-sized\r\nshrewd\r\nshrewdly\r\nshrewdness\r\nshrewish\r\nshrewishness\r\nshrewmouse\r\nshriek\r\nshrieking\r\nshrift\r\nshrike\r\nshrike-like\r\nshrill\r\nshrilling\r\nshrillness\r\nshrilly\r\nshrimp\r\nshrimp-fish\r\nshrimp-like\r\nshrimper\r\nshrimpfish\r\nshrimpy\r\nshrine\r\nshrink\r\nshrink-wrap\r\nshrink-wrapped\r\nshrinkable\r\nshrinkage\r\nshrinking\r\nshrinkwrap\r\nshrive\r\nshrivel\r\nshriveled\r\nshrivelled\r\nshroud\r\nshrovetide\r\nshrub\r\nshrubbery\r\nshrubby\r\nshrublet\r\nshrug\r\nshrunk\r\nshrunken\r\nshtick\r\nshtickl\r\nshtik\r\nshtikl\r\nshtup\r\nshua\r\nshuck\r\nshucks\r\nshudder\r\nshuddering\r\nshuddery\r\nshudra\r\nshuffle\r\nshuffleboard\r\nshuffler\r\nshuffling\r\nshufti\r\nshuha\r\nshumac\r\nshun\r\nshunning\r\nshunt\r\nshunter\r\nshush\r\nshut\r\nshut-in\r\nshutdown\r\nshute\r\nshuteye\r\nshutout\r\nshutter\r\nshutterbug\r\nshuttered\r\nshutting\r\nshuttle\r\nshuttlecock\r\nshwa\r\nshy\r\nshylock\r\nshyly\r\nshyness\r\nshyster\r\nsi\r\nsial\r\nsialadenitis\r\nsialia\r\nsialidae\r\nsialis\r\nsialolith\r\nsiam\r\nsiamang\r\nsiamese\r\nsian\r\nsib\r\nsibelius\r\nsiberia\r\nsiberian\r\nsibilant\r\nsibilate\r\nsibilation\r\nsibine\r\nsibling\r\nsibyl\r\nsibyllic\r\nsibylline\r\nsic\r\nsicative\r\nsichuan\r\nsicilia\r\nsicilian\r\nsicily\r\nsick\r\nsick-abed\r\nsickbag\r\nsickbay\r\nsickbed\r\nsicken\r\nsickening\r\nsickeningly\r\nsickeningness\r\nsickish\r\nsickle\r\nsickle-shaped\r\nsicklepod\r\nsickly\r\nsickness\r\nsickroom\r\nsida\r\nsidalcea\r\nsiddhartha\r\nsiddons\r\nside\r\nside-glance\r\nside-look\r\nside-slip\r\nside-to-side\r\nside-wheeler\r\nside-whiskers\r\nsidearm\r\nsidebar\r\nsideboard\r\nsideburn\r\nsidecar\r\nsidekick\r\nsidelight\r\nsideline\r\nsidelong\r\nsidereal\r\nsiderite\r\nsideritis\r\nsideroblast\r\nsiderocyte\r\nsideropenia\r\nsiderophilin\r\nsiderosis\r\nsidesaddle\r\nsideshow\r\nsideslip\r\nsidesman\r\nsidesplitter\r\nsidesplitting\r\nsidesplittingly\r\nsidestep\r\nsidestroke\r\nsideswipe\r\nsidetrack\r\nsidewalk\r\nsidewall\r\nsideward\r\nsidewards\r\nsideway\r\nsideways\r\nsidewinder\r\nsidewise\r\nsiding\r\nsidle\r\nsidney\r\nsidon\r\nsids\r\nsiege\r\nsiegfried\r\nsiemens\r\nsienna\r\nsierra\r\nsiesta\r\nsieve\r\nsif\r\nsift\r\nsifter\r\nsifting\r\nsigeh\r\nsigh\r\nsight\r\nsight-read\r\nsight-sing\r\nsighted\r\nsightedness\r\nsighting\r\nsightless\r\nsightlessness\r\nsightly\r\nsightread\r\nsightreader\r\nsightsee\r\nsightseeing\r\nsightseer\r\nsightsing\r\nsigint\r\nsigma\r\nsigmodon\r\nsigmoid\r\nsigmoidal\r\nsigmoidectomy\r\nsigmoidoscope\r\nsigmoidoscopy\r\nsign\r\nsign-language\r\nsignage\r\nsignal\r\nsignal-to-noise\r\nsignal/noise\r\nsignaler\r\nsignaling\r\nsignalisation\r\nsignalise\r\nsignalization\r\nsignalize\r\nsignaller\r\nsignally\r\nsignalman\r\nsignatory\r\nsignature\r\nsignboard\r\nsigned\r\nsigner\r\nsignet\r\nsignificance\r\nsignificant\r\nsignificantly\r\nsignification\r\nsignificative\r\nsignified\r\nsignifier\r\nsignify\r\nsigning\r\nsignior\r\nsignor\r\nsignora\r\nsignore\r\nsignorina\r\nsignory\r\nsignpost\r\nsigurd\r\nsigyn\r\nsihasapa\r\nsika\r\nsikh\r\nsikhism\r\nsikkim\r\nsikorsky\r\nsilage\r\nsild\r\nsildenafil\r\nsilence\r\nsilenced\r\nsilencer\r\nsilene\r\nsilent\r\nsilently\r\nsilents\r\nsilenus\r\nsilesia\r\nsilex\r\nsilhouette\r\nsilica\r\nsilicate\r\nsiliceous\r\nsilicide\r\nsilicious\r\nsilicle\r\nsilicon\r\nsilicone\r\nsilicosis\r\nsiliqua\r\nsilique\r\nsilk\r\nsilk-lined\r\nsilken\r\nsilkgrass\r\nsilkiness\r\nsilklike\r\nsilks\r\nsilkscreen\r\nsilkweed\r\nsilkwood\r\nsilkworm\r\nsilky\r\nsilky-haired\r\nsilky-leafed\r\nsilky-leaved\r\nsill\r\nsillabub\r\nsillaginidae\r\nsillago\r\nsilliness\r\nsills\r\nsilly\r\nsilo\r\nsiloxane\r\nsilphium\r\nsilt\r\nsiltstone\r\nsilty\r\nsilurian\r\nsilurid\r\nsiluridae\r\nsiluriformes\r\nsilurus\r\nsilva\r\nsilvan\r\nsilvanus\r\nsilver\r\nsilver-blue\r\nsilver-bodied\r\nsilver-bush\r\nsilver-colored\r\nsilver-gray\r\nsilver-green\r\nsilver-grey\r\nsilver-haired\r\nsilver-lace\r\nsilver-leafed\r\nsilver-leaved\r\nsilver-plate\r\nsilver-scaled\r\nsilver-tip\r\nsilver-tongued\r\nsilver-white\r\nsilver-worker\r\nsilverback\r\nsilverberry\r\nsilverbush\r\nsilverfish\r\nsilverish\r\nsilvern\r\nsilverplate\r\nsilverpoint\r\nsilverrod\r\nsilverside\r\nsilversides\r\nsilversmith\r\nsilverspot\r\nsilverstein\r\nsilversword\r\nsilvertip\r\nsilvervine\r\nsilverware\r\nsilverweed\r\nsilverwork\r\nsilverworker\r\nsilvery\r\nsilvery-blue\r\nsilvery-bodied\r\nsilvery-gray\r\nsilvery-green\r\nsilvery-grey\r\nsilvery-leafed\r\nsilvery-leaved\r\nsilvery-white\r\nsilvex\r\nsilvia\r\nsilviculture\r\nsilybum\r\nsima\r\nsimal\r\nsimarouba\r\nsimaroubaceae\r\nsimazine\r\nsimenon\r\nsimeon\r\nsimian\r\nsimilar\r\nsimilarity\r\nsimilarly\r\nsimile\r\nsimilitude\r\nsimmer\r\nsimmering\r\nsimmpleness\r\nsimnel\r\nsimoleons\r\nsimon\r\nsimonise\r\nsimoniz\r\nsimonize\r\nsimony\r\nsimoom\r\nsimoon\r\nsimper\r\nsimperer\r\nsimperingly\r\nsimple\r\nsimple-minded\r\nsimpleness\r\nsimpleton\r\nsimplex\r\nsimplicity\r\nsimplification\r\nsimplified\r\nsimplify\r\nsimplism\r\nsimply\r\nsimpson\r\nsimulacrum\r\nsimulate\r\nsimulated\r\nsimulation\r\nsimulator\r\nsimulcast\r\nsimuliidae\r\nsimulium\r\nsimultaneity\r\nsimultaneous\r\nsimultaneously\r\nsimultaneousness\r\nsimvastatin\r\nsin\r\nsinai\r\nsinanthropus\r\nsinapis\r\nsinapism\r\nsinatra\r\nsinbad\r\nsincere\r\nsincerely\r\nsincerity\r\nsinciput\r\nsinclair\r\nsindhi\r\nsine\r\nsinecure\r\nsinequan\r\nsinew\r\nsinewy\r\nsinful\r\nsinfulness\r\nsing\r\nsing-kwa\r\nsingable\r\nsingalong\r\nsingan\r\nsingapore\r\nsingaporean\r\nsinge\r\nsinger\r\nsinghalese\r\nsinging\r\nsingle\r\nsingle-barreled\r\nsingle-barrelled\r\nsingle-bedded\r\nsingle-breasted\r\nsingle-celled\r\nsingle-channel\r\nsingle-foot\r\nsingle-handed\r\nsingle-handedly\r\nsingle-humped\r\nsingle-lane\r\nsingle-leaf\r\nsingle-minded\r\nsingle-mindedness\r\nsingle-seeded\r\nsingle-shelled\r\nsingle-spaced\r\nsingle-spacing\r\nsingle-stranded\r\nsingleness\r\nsingles\r\nsinglestick\r\nsinglet\r\nsingleton\r\nsingly\r\nsingsong\r\nsingular\r\nsingularise\r\nsingularity\r\nsingularize\r\nsingultus\r\nsinhala\r\nsinhalese\r\nsinister\r\nsinistral\r\nsinistrality\r\nsinistrorsal\r\nsinistrorse\r\nsinitic\r\nsink\r\nsinkable\r\nsinker\r\nsinkhole\r\nsinkiang\r\nsinking\r\nsinless\r\nsinlessness\r\nsinner\r\nsinning\r\nsinningia\r\nsino-tibetan\r\nsinologist\r\nsinology\r\nsinoper\r\nsinopia\r\nsinopis\r\nsinornis\r\nsinter\r\nsinuate\r\nsinuosity\r\nsinuous\r\nsinuousness\r\nsinus\r\nsinusitis\r\nsinusoid\r\nsinusoidal\r\nsion\r\nsiouan\r\nsiouan-speaking\r\nsioux\r\nsip\r\nsipah-e-sahaba\r\nsiphon\r\nsiphonaptera\r\nsiphonophora\r\nsiphonophore\r\nsipper\r\nsipuncula\r\nsipunculid\r\nsiqueiros\r\nsir\r\nsirach\r\nsiracusa\r\nsiraj-ud-daula\r\nsirc\r\nsirdar\r\nsire\r\nsiren\r\nsirenia\r\nsirenian\r\nsirenidae\r\nsiriasis\r\nsiris\r\nsirius\r\nsirloin\r\nsirocco\r\nsirrah\r\nsirup\r\nsis\r\nsisal\r\nsise\r\nsisham\r\nsiskin\r\nsiskin-like\r\nsison\r\nsiss\r\nsissified\r\nsissiness\r\nsissoo\r\nsissu\r\nsissy\r\nsissyish\r\nsister\r\nsister-in-law\r\nsisterhood\r\nsisterlike\r\nsisterly\r\nsistership\r\nsistrurus\r\nsisyphean\r\nsisyphus\r\nsisyridae\r\nsisyrinchium\r\nsit\r\nsit-down\r\nsit-in\r\nsit-up\r\nsita\r\nsitar\r\nsitcom\r\nsite\r\nsitka\r\nsitophylus\r\nsitotroga\r\nsitsang\r\nsitta\r\nsitter\r\nsittidae\r\nsitting\r\nsituate\r\nsituated\r\nsituation\r\nsitwell\r\nsium\r\nsiva\r\nsivaism\r\nsivan\r\nsivapithecus\r\nsiwan\r\nsix\r\nsix-fold\r\nsix-footer\r\nsix-gun\r\nsix-membered\r\nsix-pack\r\nsix-pointed\r\nsix-shooter\r\nsix-sided\r\nsix-spot\r\nsixer\r\nsixfold\r\nsixpack\r\nsixpence\r\nsixpenny\r\nsixsome\r\nsixteen\r\nsixteenth\r\nsixth\r\nsixth-former\r\nsixties\r\nsixtieth\r\nsixty\r\nsixty-eight\r\nsixty-fifth\r\nsixty-five\r\nsixty-four\r\nsixty-fourth\r\nsixty-nine\r\nsixty-one\r\nsixty-seven\r\nsixty-six\r\nsixty-three\r\nsixty-two\r\nsizable\r\nsize\r\nsizeable\r\nsizeableness\r\nsized\r\nsizing\r\nsizz\r\nsizzle\r\nsizzling\r\nsjaelland\r\nsk-ampicillin\r\nskag\r\nskagerak\r\nskagerrak\r\nskagit\r\nskagway\r\nskanda\r\nskank\r\nskanky\r\nskate\r\nskateboard\r\nskateboarder\r\nskateboarding\r\nskater\r\nskating\r\nskaw\r\nskeat\r\nskedaddle\r\nskeet\r\nskeg\r\nskein\r\nskeletal\r\nskeleton\r\nskep\r\nskepful\r\nskeptic\r\nskeptical\r\nskeptically\r\nskepticism\r\nsketch\r\nsketchbook\r\nsketcher\r\nsketchiness\r\nsketchy\r\nskew\r\nskew-eyed\r\nskew-whiff\r\nskewed\r\nskewer\r\nskewness\r\nski\r\nski-plane\r\nskiagram\r\nskiagraph\r\nskiagraphy\r\nskibob\r\nskid\r\nskidder\r\nskidpan\r\nskier\r\nskiff\r\nskiffle\r\nskiing\r\nskilful\r\nskilfully\r\nskill\r\nskilled\r\nskillet\r\nskilletfish\r\nskillful\r\nskillfully\r\nskillfulness\r\nskilly\r\nskim\r\nskimcoat\r\nskimmed\r\nskimmer\r\nskimming\r\nskimp\r\nskimpy\r\nskin\r\nskin-deep\r\nskin-dive\r\nskin-diver\r\nskin-tight\r\nskincare\r\nskinflint\r\nskinful\r\nskinhead\r\nskinheads\r\nskink\r\nskinless\r\nskinned\r\nskinner\r\nskinnerian\r\nskinniness\r\nskinny\r\nskinny-dip\r\nskinny-dipper\r\nskint\r\nskintight\r\nskip\r\nskip-bomb\r\nskipjack\r\nskipper\r\nskirl\r\nskirmish\r\nskirmisher\r\nskirret\r\nskirt\r\nskirting\r\nskit\r\nskitter\r\nskittish\r\nskittishness\r\nskittle\r\nskittles\r\nskive\r\nskivvies\r\nskivvy\r\nskopje\r\nskoplje\r\nskreak\r\nskreigh\r\nskua\r\nskuld\r\nskulduggery\r\nskulk\r\nskulker\r\nskulking\r\nskull\r\nskullcap\r\nskullduggery\r\nskunk\r\nskunk-weed\r\nskunkbush\r\nskunkweed\r\nsky\r\nsky-blue\r\nsky-high\r\nskybox\r\nskycap\r\nskydive\r\nskydiver\r\nskydiving\r\nskyhook\r\nskyjack\r\nskylab\r\nskylark\r\nskylight\r\nskyline\r\nskyrocket\r\nskysail\r\nskyscraper\r\nskywalk\r\nskyward\r\nskywards\r\nskyway\r\nskywriting\r\nsl\r\nslab\r\nslabber\r\nslack\r\nslacken\r\nslackening\r\nslacker\r\nslacking\r\nslackly\r\nslackness\r\nslacks\r\nslag\r\nslagheap\r\nslain\r\nslake\r\nslaked\r\nslalom\r\nslam\r\nslam-bang\r\nslam-dunk\r\nslammer\r\nslander\r\nslanderer\r\nslanderous\r\nslanderously\r\nslang\r\nslanginess\r\nslanguage\r\nslangy\r\nslant\r\nslant-eye\r\nslanted\r\nslanting\r\nslantingly\r\nslantways\r\nslantwise\r\nslap\r\nslap-bang\r\nslap-up\r\nslapdash\r\nslaphappy\r\nslapper\r\nslapshot\r\nslapstick\r\nslash\r\nslashed\r\nslasher\r\nslashing\r\nslask\r\nslat\r\nslate\r\nslate-black\r\nslate-gray\r\nslate-grey\r\nslater\r\nslatey\r\nslather\r\nslating\r\nslattern\r\nslatternliness\r\nslatternly\r\nslaty\r\nslaty-gray\r\nslaty-grey\r\nslaughter\r\nslaughterer\r\nslaughterhouse\r\nslaughterous\r\nslav\r\nslave\r\nslave-maker\r\nslaveholder\r\nslaveholding\r\nslaveless\r\nslavelike\r\nslaver\r\nslavery\r\nslavey\r\nslavic\r\nslavish\r\nslavonic\r\nslaw\r\nslay\r\nslayer\r\nslaying\r\nsle\r\nsleaze\r\nsleaziness\r\nsleazy\r\nsled\r\nsledder\r\nsledding\r\nsledge\r\nsledgehammer\r\nsleek\r\nsleekness\r\nsleep\r\nsleep-learning\r\nsleeper\r\nsleepiness\r\nsleeping\r\nsleepless\r\nsleeplessness\r\nsleepover\r\nsleepwalk\r\nsleepwalker\r\nsleepwalking\r\nsleepwear\r\nsleepy\r\nsleepy-eyed\r\nsleepyhead\r\nsleepyheaded\r\nsleet\r\nsleety\r\nsleeve\r\nsleeved\r\nsleeveless\r\nsleigh\r\nsleight\r\nslender\r\nslender-bodied\r\nslender-waisted\r\nslender-winged\r\nslenderise\r\nslenderize\r\nslenderly\r\nslenderness\r\nsleuth\r\nsleuthhound\r\nsleuthing\r\nslew\r\nslews\r\nslezsko\r\nslice\r\nsliced\r\nslicer\r\nslicing\r\nslick\r\nslicked\r\nslicker\r\nslickly\r\nslickness\r\nslide\r\nslider\r\nslideway\r\nsliding\r\nslight\r\nslighting\r\nslightingly\r\nslightly\r\nslightness\r\nslim\r\nslim-bodied\r\nslim-waisted\r\nslime\r\nslimed\r\nsliminess\r\nslimly\r\nslimness\r\nslimy\r\nsling\r\nslingback\r\nslinger\r\nslinging\r\nslingshot\r\nslink\r\nslip\r\nslip-on\r\nslip-up\r\nslipcover\r\nslipknot\r\nslipover\r\nslippage\r\nslipper\r\nslipper-shaped\r\nslippered\r\nslipperiness\r\nslipperwort\r\nslippery\r\nslipping\r\nslippy\r\nslipshod\r\nslipstick\r\nslipstream\r\nslipway\r\nslit\r\nslither\r\nslithering\r\nslithery\r\nsliver\r\nslivery\r\nslivovitz\r\nslo-bid\r\nsloanea\r\nslob\r\nslobber\r\nslobberer\r\nsloe\r\nslog\r\nslogan\r\nsloganeer\r\nsloganeering\r\nslogger\r\nsloop\r\nslop\r\nslop-seller\r\nslope\r\nsloped\r\nsloping\r\nslopingly\r\nslopped\r\nsloppiness\r\nsloppy\r\nslops\r\nslopseller\r\nslopshop\r\nslosh\r\nsloshed\r\nslot\r\nsloth\r\nsloth-like\r\nslothful\r\nslothfulness\r\nslouch\r\nslouched\r\nsloucher\r\nslouching\r\nslouchy\r\nslough\r\nsloughing\r\nsloughy\r\nslovak\r\nslovakia\r\nslovakian\r\nsloven\r\nslovene\r\nslovenia\r\nslovenian\r\nslovenija\r\nslovenliness\r\nslovenly\r\nslow\r\nslow-moving\r\nslow-witted\r\nslow-wittedness\r\nslowcoach\r\nslowdown\r\nslowgoing\r\nslowing\r\nslowly\r\nslowness\r\nslowpoke\r\nslowworm\r\nsls\r\nslub\r\nslubbed\r\nsludge\r\nslue\r\nslug\r\nslugabed\r\nslugfest\r\nsluggard\r\nslugger\r\nsluggish\r\nsluggishness\r\nsluice\r\nsluicegate\r\nsluiceway\r\nslum\r\nslumber\r\nslumberer\r\nslumberous\r\nslumbery\r\nslumbrous\r\nslumgullion\r\nslummy\r\nslump\r\nslumped\r\nslur\r\nslurp\r\nslurred\r\nslurry\r\nslush\r\nslushy\r\nslut\r\nsluttish\r\nsluttishness\r\nsly\r\nslyboots\r\nslyly\r\nslyness\r\nsm\r\nsmack\r\nsmacker\r\nsmacking\r\nsmall\r\nsmall-arm\r\nsmall-cap\r\nsmall-capitalisation\r\nsmall-capitalization\r\nsmall-eared\r\nsmall-fruited\r\nsmall-grained\r\nsmall-minded\r\nsmall-mindedly\r\nsmall-scale\r\nsmall-seeded\r\nsmall-time\r\nsmall-toothed\r\nsmall-winged\r\nsmaller\r\nsmalley\r\nsmallholder\r\nsmallholding\r\nsmallish\r\nsmallmouth\r\nsmallness\r\nsmallpox\r\nsmaltite\r\nsmarm\r\nsmarmily\r\nsmarminess\r\nsmarmy\r\nsmart\r\nsmarta\r\nsmarting\r\nsmartly\r\nsmartness\r\nsmash\r\nsmash-up\r\nsmashed\r\nsmasher\r\nsmashing\r\nsmashingly\r\nsmatter\r\nsmattering\r\nsmear\r\nsmegma\r\nsmell\r\nsmelling\r\nsmelly\r\nsmelt\r\nsmelter\r\nsmeltery\r\nsmetana\r\nsmew\r\nsmidge\r\nsmidgen\r\nsmidgeon\r\nsmidgin\r\nsmilacaceae\r\nsmilax\r\nsmile\r\nsmiledon\r\nsmiler\r\nsmiley\r\nsmiling\r\nsmilingly\r\nsmilo\r\nsmirch\r\nsmirk\r\nsmirker\r\nsmitane\r\nsmite\r\nsmith\r\nsmithereens\r\nsmithy\r\nsmitten\r\nsmock\r\nsmocking\r\nsmog\r\nsmogginess\r\nsmoggy\r\nsmoke\r\nsmoke-cured\r\nsmoke-dried\r\nsmoke-filled\r\nsmoke-free\r\nsmoked\r\nsmokehouse\r\nsmokeless\r\nsmoker\r\nsmokescreen\r\nsmokestack\r\nsmoking\r\nsmoky\r\nsmolder\r\nsmoldering\r\nsmolderingly\r\nsmolensk\r\nsmollett\r\nsmooch\r\nsmooching\r\nsmooth\r\nsmooth-bodied\r\nsmooth-faced\r\nsmooth-haired\r\nsmooth-shaven\r\nsmooth-shelled\r\nsmooth-skinned\r\nsmooth-spoken\r\nsmooth-textured\r\nsmooth-tongued\r\nsmoothbark\r\nsmoothbore\r\nsmoothed\r\nsmoothen\r\nsmoothened\r\nsmoother\r\nsmoothhound\r\nsmoothie\r\nsmoothly\r\nsmoothness\r\nsmoothy\r\nsmorgasbord\r\nsmother\r\nsmothered\r\nsmotherer\r\nsmothering\r\nsmoulder\r\nsmouldering\r\nsmoulderingly\r\nsmudge\r\nsmudgy\r\nsmug\r\nsmuggle\r\nsmuggled\r\nsmuggler\r\nsmuggling\r\nsmugness\r\nsmut\r\nsmutch\r\nsmuts\r\nsmuttily\r\nsmuttiness\r\nsmutty\r\nsmyrna\r\nsmyrnium\r\nsn\r\nsnack\r\nsnacker\r\nsnaffle\r\nsnafu\r\nsnag\r\nsnail\r\nsnail-flower\r\nsnail-like\r\nsnailfish\r\nsnailflower\r\nsnake\r\nsnake-fish\r\nsnake-haired\r\nsnake-head\r\nsnake-like\r\nsnake-shaped\r\nsnakeberry\r\nsnakebird\r\nsnakebite\r\nsnakeblenny\r\nsnakefish\r\nsnakefly\r\nsnakehead\r\nsnakelike\r\nsnakeroot\r\nsnakeweed\r\nsnakewood\r\nsnaky\r\nsnap\r\nsnapdragon\r\nsnapline\r\nsnapper\r\nsnappish\r\nsnappishness\r\nsnappy\r\nsnapshot\r\nsnare\r\nsnarer\r\nsnarf\r\nsnarl\r\nsnarl-up\r\nsnarled\r\nsnarly\r\nsnatch\r\nsnatcher\r\nsnazzy\r\nsnead\r\nsneak\r\nsneaker\r\nsneakily\r\nsneakiness\r\nsneaking\r\nsneaky\r\nsneer\r\nsneerer\r\nsneering\r\nsneeringly\r\nsneeze\r\nsneezer\r\nsneezeweed\r\nsneezewort\r\nsneezing\r\nsneezy\r\nsnellen\r\nsnick\r\nsnicker\r\nsnickersnee\r\nsnide\r\nsnidely\r\nsniff\r\nsniffer\r\nsniffle\r\nsniffler\r\nsniffly\r\nsniffy\r\nsnifter\r\nsnigger\r\nsnip\r\nsnipe\r\nsnipefish\r\nsniper\r\nsnippet\r\nsnipping\r\nsnips\r\nsnit\r\nsnitch\r\nsnitcher\r\nsnivel\r\nsniveler\r\nsniveling\r\nsniveller\r\nsno-cat\r\nsnob\r\nsnobbery\r\nsnobbish\r\nsnobbishly\r\nsnobbishness\r\nsnobbism\r\nsnobby\r\nsnog\r\nsnogging\r\nsnood\r\nsnook\r\nsnooker\r\nsnoop\r\nsnooper\r\nsnoopiness\r\nsnoopy\r\nsnoot\r\nsnootily\r\nsnootiness\r\nsnooty\r\nsnooze\r\nsnore\r\nsnorer\r\nsnoring\r\nsnorkel\r\nsnorkeling\r\nsnort\r\nsnorter\r\nsnorting\r\nsnorty\r\nsnot\r\nsnot-nosed\r\nsnotty\r\nsnotty-nosed\r\nsnout\r\nsnow\r\nsnow-blind\r\nsnow-blinded\r\nsnow-blindness\r\nsnow-capped\r\nsnow-clad\r\nsnow-covered\r\nsnow-in-summer\r\nsnow-on-the-mountain\r\nsnow-white\r\nsnowball\r\nsnowbank\r\nsnowbell\r\nsnowberry\r\nsnowbird\r\nsnowblindness\r\nsnowboard\r\nsnowboarder\r\nsnowboarding\r\nsnowbound\r\nsnowcap\r\nsnowdrift\r\nsnowdrop\r\nsnowfall\r\nsnowfield\r\nsnowflake\r\nsnowman\r\nsnowmobile\r\nsnowplough\r\nsnowplow\r\nsnowshoe\r\nsnowstorm\r\nsnowsuit\r\nsnowy\r\nsnub\r\nsnub-nosed\r\nsnuff\r\nsnuff-brown\r\nsnuff-color\r\nsnuff-colour\r\nsnuffbox\r\nsnuffer\r\nsnuffers\r\nsnuffle\r\nsnuffler\r\nsnuffling\r\nsnuffly\r\nsnug\r\nsnuggery\r\nsnuggle\r\nsnuggled\r\nsnuggling\r\nsnugness\r\nso\r\nso-and-so\r\nso-called\r\nso-so\r\nsoak\r\nsoakage\r\nsoaked\r\nsoaker\r\nsoaking\r\nsoap\r\nsoap-rock\r\nsoap-weed\r\nsoapberry\r\nsoapbox\r\nsoapfish\r\nsoapiness\r\nsoaprock\r\nsoapstone\r\nsoapsuds\r\nsoapweed\r\nsoapwort\r\nsoapy\r\nsoar\r\nsoaring\r\nsoave\r\nsob\r\nsobbing\r\nsober\r\nsobering\r\nsoberly\r\nsoberness\r\nsobersided\r\nsobersides\r\nsobralia\r\nsobriety\r\nsobriquet\r\nsocage\r\nsoccer\r\nsociability\r\nsociable\r\nsociableness\r\nsociably\r\nsocial\r\nsocialisation\r\nsocialise\r\nsocialised\r\nsocialiser\r\nsocialising\r\nsocialism\r\nsocialist\r\nsocialistic\r\nsocialite\r\nsociality\r\nsocialization\r\nsocialize\r\nsocialized\r\nsocializer\r\nsocializing\r\nsocietal\r\nsociety\r\nsocinian\r\nsocinus\r\nsociobiologic\r\nsociobiological\r\nsociobiologist\r\nsociobiology\r\nsociocultural\r\nsociolinguist\r\nsociolinguistic\r\nsociolinguistics\r\nsociological\r\nsociologist\r\nsociology\r\nsociometry\r\nsociopath\r\nsociopathic\r\nsock\r\nsocket\r\nsockeye\r\nsocle\r\nsocrates\r\nsocratic\r\nsod\r\nsoda\r\nsodalist\r\nsodalite\r\nsodality\r\nsodbuster\r\nsodden\r\nsodding\r\nsoddy\r\nsodium\r\nsodoku\r\nsodom\r\nsodomise\r\nsodomist\r\nsodomite\r\nsodomize\r\nsodomy\r\nsofa\r\nsoffit\r\nsofia\r\nsoft\r\nsoft-boiled\r\nsoft-cover\r\nsoft-finned\r\nsoft-footed\r\nsoft-haired\r\nsoft-nosed\r\nsoft-pedal\r\nsoft-shoe\r\nsoft-soap\r\nsoft-solder\r\nsoft-spoken\r\nsoft-witted\r\nsoftback\r\nsoftball\r\nsoften\r\nsoftened\r\nsoftener\r\nsoftening\r\nsoftheaded\r\nsofthearted\r\nsoftheartedness\r\nsoftie\r\nsoftish\r\nsoftly\r\nsoftness\r\nsoftware\r\nsoftwood\r\nsofty\r\nsogginess\r\nsoggy\r\nsoh\r\nsoho\r\nsoi-disant\r\nsoigne\r\nsoignee\r\nsoil\r\nsoil-building\r\nsoiled\r\nsoiling\r\nsoilure\r\nsoiree\r\nsoissons\r\nsoixante-neuf\r\nsoja\r\nsojourn\r\nsojourner\r\nsokoro\r\nsol\r\nsolace\r\nsolacement\r\nsolan\r\nsolanaceae\r\nsolanaceous\r\nsolandra\r\nsolanopteris\r\nsolanum\r\nsolar\r\nsolarisation\r\nsolarise\r\nsolarium\r\nsolarization\r\nsolarize\r\nsold\r\nsold-out\r\nsolder\r\nsolderer\r\nsoldering\r\nsoldier\r\nsoldier-fish\r\nsoldierfish\r\nsoldiering\r\nsoldierlike\r\nsoldierly\r\nsoldiership\r\nsoldiery\r\nsole\r\nsolea\r\nsolecism\r\nsoled\r\nsoledad\r\nsoleidae\r\nsoleirolia\r\nsoleless\r\nsolely\r\nsolemn\r\nsolemness\r\nsolemnisation\r\nsolemnise\r\nsolemnity\r\nsolemnization\r\nsolemnize\r\nsolenichthyes\r\nsolenidae\r\nsolenogaster\r\nsolenogastres\r\nsolenoid\r\nsolenopsis\r\nsolenostemon\r\nsolent\r\nsoleus\r\nsolfa\r\nsolfege\r\nsolfeggio\r\nsolferino\r\nsolicit\r\nsolicitation\r\nsolicitor\r\nsolicitorship\r\nsolicitous\r\nsolicitousness\r\nsolicitude\r\nsolid\r\nsolid-colored\r\nsolid-coloured\r\nsolid-hoofed\r\nsolid-state\r\nsolidago\r\nsolidarity\r\nsolidification\r\nsolidified\r\nsolidify\r\nsolidifying\r\nsolidity\r\nsolidness\r\nsolidus\r\nsoliloquise\r\nsoliloquize\r\nsoliloquy\r\nsolingen\r\nsolipsism\r\nsolitaire\r\nsolitariness\r\nsolitary\r\nsoliton\r\nsolitude\r\nsolitudinarian\r\nsolleret\r\nsolmisation\r\nsolmizate\r\nsolmization\r\nsolo\r\nsoloist\r\nsolomon\r\nsolomon's-seal\r\nsolomonic\r\nsolomons\r\nsolon\r\nsolresol\r\nsolstice\r\nsolubility\r\nsoluble\r\nsolubleness\r\nsolute\r\nsolution\r\nsolvability\r\nsolvable\r\nsolvate\r\nsolvation\r\nsolvay\r\nsolve\r\nsolved\r\nsolvency\r\nsolvent\r\nsolver\r\nsolving\r\nsolzhenitsyn\r\nsom\r\nsoma\r\nsomaesthesia\r\nsomaesthesis\r\nsomali\r\nsomalia\r\nsomalian\r\nsoman\r\nsomataesthesis\r\nsomateria\r\nsomatesthesia\r\nsomatic\r\nsomatogenetic\r\nsomatogenic\r\nsomatosense\r\nsomatosensory\r\nsomatotrophin\r\nsomatotropin\r\nsomatotype\r\nsomber\r\nsomberly\r\nsomberness\r\nsombre\r\nsombrely\r\nsombreness\r\nsombrero\r\nsome\r\nsomebody\r\nsomehow\r\nsomeone\r\nsomeplace\r\nsomersault\r\nsomersaulting\r\nsomerset\r\nsomesthesia\r\nsomesthesis\r\nsomething\r\nsometime\r\nsomeway\r\nsomeways\r\nsomewhat\r\nsomewhere\r\nsomite\r\nsomme\r\nsommelier\r\nsomnambulate\r\nsomnambulation\r\nsomnambulism\r\nsomnambulist\r\nsomniferous\r\nsomnific\r\nsomniloquism\r\nsomniloquist\r\nsomniloquy\r\nsomnolence\r\nsomnolent\r\nsomnolently\r\nsomrai\r\nson\r\nson-in-law\r\nsonant\r\nsonar\r\nsonata\r\nsonatina\r\nsonchus\r\nsondheim\r\nsone\r\nsong\r\nsongbird\r\nsongbook\r\nsongful\r\nsongfulness\r\nsonghai\r\nsonglike\r\nsongster\r\nsongstress\r\nsongwriter\r\nsonic\r\nsonnet\r\nsonneteer\r\nsonny\r\nsonogram\r\nsonograph\r\nsonography\r\nsonometer\r\nsonora\r\nsonority\r\nsonorous\r\nsonorously\r\nsonorousness\r\nsonsie\r\nsonsy\r\nsontag\r\nsoochong\r\nsoon\r\nsooner\r\nsoonest\r\nsoot\r\nsoot-black\r\nsooth\r\nsoothe\r\nsoothing\r\nsoothsayer\r\nsoothsaying\r\nsootiness\r\nsooty\r\nsooty-black\r\nsop\r\nsoph\r\nsophism\r\nsophist\r\nsophistic\r\nsophistical\r\nsophisticate\r\nsophisticated\r\nsophistication\r\nsophistry\r\nsophocles\r\nsophomore\r\nsophonias\r\nsophora\r\nsopor\r\nsoporiferous\r\nsoporific\r\nsopping\r\nsoppy\r\nsopranino\r\nsoprano\r\nsops\r\nsorb\r\nsorbate\r\nsorbed\r\nsorbefacient\r\nsorbent\r\nsorbet\r\nsorbian\r\nsorbonne\r\nsorbus\r\nsorcerer\r\nsorceress\r\nsorcerise\r\nsorcerize\r\nsorcerous\r\nsorcery\r\nsordid\r\nsordidly\r\nsordidness\r\nsordino\r\nsore\r\nsore-eyed\r\nsorehead\r\nsorely\r\nsoreness\r\nsorensen\r\nsorex\r\nsorgho\r\nsorghum\r\nsorgo\r\nsoricidae\r\nsororal\r\nsorority\r\nsorption\r\nsorrel\r\nsorriness\r\nsorrow\r\nsorrower\r\nsorrowful\r\nsorrowfully\r\nsorrowfulness\r\nsorrowing\r\nsorry\r\nsort\r\nsorted\r\nsorter\r\nsortie\r\nsorting\r\nsortition\r\nsorus\r\nsos\r\nsot\r\nsoteriological\r\nsoteriology\r\nsothis\r\nsotho\r\nsottish\r\nsottishness\r\nsou\r\nsou'-east\r\nsou'-sou'-east\r\nsou'-sou'-west\r\nsou'-west\r\nsou'easter\r\nsou'west\r\nsou'wester\r\nsouari\r\nsoubise\r\nsoubrette\r\nsoubriquet\r\nsouchong\r\nsoudan\r\nsouffle\r\nsouffle-like\r\nsoufflot\r\nsough\r\nsoughing\r\nsought\r\nsought-after\r\nsouk\r\nsoul\r\nsoul-destroying\r\nsoul-searching\r\nsoul-stirring\r\nsoulful\r\nsoulfulness\r\nsoulless\r\nsound\r\nsoundable\r\nsoundboard\r\nsoundbox\r\nsounded\r\nsounder\r\nsounding\r\nsoundless\r\nsoundlessly\r\nsoundlessness\r\nsoundly\r\nsoundman\r\nsoundness\r\nsoundproof\r\nsoundtrack\r\nsoup\r\nsoup-fin\r\nsoup-strainer\r\nsoupcon\r\nsoupfin\r\nsoupiness\r\nsoupspoon\r\nsoupy\r\nsour\r\nsour-tasting\r\nsourball\r\nsource\r\nsourdine\r\nsourdough\r\nsoured\r\nsouring\r\nsourish\r\nsourness\r\nsourpuss\r\nsoursop\r\nsourwood\r\nsousa\r\nsousaphone\r\nsouse\r\nsoused\r\nsousing\r\nsouslik\r\nsousse\r\nsoutache\r\nsoutane\r\nsouth\r\nsouth-central\r\nsouth-east\r\nsouth-polar\r\nsouth-southeast\r\nsouth-southwest\r\nsouth-west\r\nsouthbound\r\nsoutheast\r\nsoutheaster\r\nsoutheasterly\r\nsoutheastern\r\nsoutheastward\r\nsoutheastwardly\r\nsouther\r\nsoutherly\r\nsouthern\r\nsoutherner\r\nsouthernism\r\nsouthernmost\r\nsouthernness\r\nsouthernwood\r\nsouthey\r\nsouthland\r\nsouthmost\r\nsouthpaw\r\nsouthward\r\nsouthwards\r\nsouthwest\r\nsouthwester\r\nsouthwesterly\r\nsouthwestern\r\nsouthwestward\r\nsouthwestwardly\r\nsoutine\r\nsouvenir\r\nsouvlaki\r\nsouvlakia\r\nsovereign\r\nsovereignty\r\nsoviet\r\nsovietise\r\nsovietism\r\nsovietize\r\nsoviets\r\nsow\r\nsowbane\r\nsowbelly\r\nsowbread\r\nsower\r\nsoweto\r\nsown\r\nsoy\r\nsoya\r\nsoybean\r\nsoymilk\r\nsozzled\r\nspa\r\nspace\r\nspace-time\r\nspacecraft\r\nspaced\r\nspaced-out\r\nspacefaring\r\nspaceflight\r\nspaceman\r\nspaceship\r\nspacesuit\r\nspacewalk\r\nspacewalker\r\nspaceward\r\nspacewards\r\nspacey\r\nspacial\r\nspacing\r\nspaciotemporal\r\nspacious\r\nspaciously\r\nspaciousness\r\nspackle\r\nspacy\r\nspade\r\nspade-like\r\nspade-shaped\r\nspadefish\r\nspadefoot\r\nspadeful\r\nspadework\r\nspadix\r\nspaghetti\r\nspaghettini\r\nspain\r\nspalacidae\r\nspalax\r\nspall\r\nspallanzani\r\nspallation\r\nspam\r\nspammer\r\nspan\r\nspandau\r\nspandex\r\nspandrel\r\nspandril\r\nspang\r\nspangle\r\nspangled\r\nspangly\r\nspaniard\r\nspaniel\r\nspanish\r\nspanish-speaking\r\nspank\r\nspanker\r\nspanking\r\nspanner\r\nspar\r\nsparaxis\r\nspare\r\nspareness\r\nsparer\r\nsparerib\r\nspareribs\r\nsparganiaceae\r\nsparganium\r\nsparge\r\nsparid\r\nsparidae\r\nsparing\r\nsparingly\r\nspark\r\nsparker\r\nsparkle\r\nsparkleberry\r\nsparkler\r\nsparkling\r\nsparkly\r\nsparling\r\nsparmannia\r\nsparring\r\nsparrow\r\nsparrow-like\r\nsparrow-sized\r\nsparse\r\nsparseness\r\nsparsity\r\nsparta\r\nspartan\r\nspartina\r\nspartium\r\nspasm\r\nspasmodic\r\nspasmodically\r\nspasmolysis\r\nspasmolytic\r\nspassky\r\nspastic\r\nspasticity\r\nspat\r\nspatangoida\r\nspatchcock\r\nspate\r\nspathe\r\nspathiphyllum\r\nspatial\r\nspatiality\r\nspatiotemporal\r\nspatter\r\nspatterdock\r\nspattered\r\nspattering\r\nspatula\r\nspatula-shaped\r\nspatulate\r\nspavin\r\nspavined\r\nspawl\r\nspawn\r\nspawner\r\nspay\r\nspayed\r\nspaying\r\nspeak\r\nspeakable\r\nspeakeasy\r\nspeaker\r\nspeakerphone\r\nspeakership\r\nspeaking\r\nspear\r\nspear-point\r\nspearfish\r\nspearhead\r\nspearhead-shaped\r\nspearmint\r\nspearpoint\r\nspec\r\nspecial\r\nspecialisation\r\nspecialise\r\nspecialised\r\nspecialiser\r\nspecialism\r\nspecialist\r\nspecialistic\r\nspeciality\r\nspecialization\r\nspecialize\r\nspecialized\r\nspecializer\r\nspecially\r\nspecialness\r\nspecialty\r\nspeciate\r\nspeciation\r\nspecie\r\nspecies\r\nspecifiable\r\nspecific\r\nspecifically\r\nspecification\r\nspecificity\r\nspecified\r\nspecifier\r\nspecify\r\nspecimen\r\nspecious\r\nspeciousness\r\nspeck\r\nspecked\r\nspeckle\r\nspeckled\r\nspeckless\r\nspecs\r\nspectacle\r\nspectacled\r\nspectacles\r\nspectacular\r\nspectacularly\r\nspectate\r\nspectator\r\nspecter\r\nspectinomycin\r\nspectral\r\nspectre\r\nspectrogram\r\nspectrograph\r\nspectrographic\r\nspectrometer\r\nspectrometric\r\nspectrometry\r\nspectrophotometer\r\nspectroscope\r\nspectroscopic\r\nspectroscopical\r\nspectroscopy\r\nspectrum\r\nspecular\r\nspeculate\r\nspeculation\r\nspeculative\r\nspeculatively\r\nspeculativeness\r\nspeculator\r\nspeculum\r\nspeech\r\nspeech-endowed\r\nspeech-read\r\nspeechifier\r\nspeechify\r\nspeechless\r\nspeechlessness\r\nspeechmaker\r\nspeechmaking\r\nspeechwriter\r\nspeed\r\nspeed-reading\r\nspeedboat\r\nspeeder\r\nspeedily\r\nspeediness\r\nspeeding\r\nspeedometer\r\nspeedskater\r\nspeedup\r\nspeedway\r\nspeedwell\r\nspeedy\r\nspeer\r\nspeke\r\nspelaeologist\r\nspelaeology\r\nspeleologist\r\nspeleology\r\nspell\r\nspell-bound\r\nspell-checker\r\nspellbind\r\nspellbinder\r\nspellbinding\r\nspellbound\r\nspelldown\r\nspeller\r\nspelling\r\nspelt\r\nspelter\r\nspelunk\r\nspelunker\r\nspencer\r\nspend\r\nspend-all\r\nspendable\r\nspender\r\nspending\r\nspendthrift\r\nspengler\r\nspenser\r\nspent\r\nspergula\r\nspergularia\r\nsperm\r\nsperm-filled\r\nspermaceti\r\nspermatic\r\nspermatid\r\nspermatocele\r\nspermatocide\r\nspermatocyte\r\nspermatogenesis\r\nspermatophyta\r\nspermatophyte\r\nspermatozoan\r\nspermatozoid\r\nspermatozoon\r\nspermicidal\r\nspermicide\r\nspermophile\r\nspermophilus\r\nspermous\r\nsperry\r\nspew\r\nspewer\r\nspf\r\nsphacelate\r\nsphacele\r\nsphacelotheca\r\nsphacelus\r\nsphaeralcea\r\nsphaeriaceae\r\nsphaeriales\r\nsphaerobolaceae\r\nsphaerocarpaceae\r\nsphaerocarpales\r\nsphaerocarpos\r\nsphaerocarpus\r\nsphagnales\r\nsphagnum\r\nsphalerite\r\nsphecidae\r\nsphecius\r\nsphecoid\r\nsphecoidea\r\nsphecotheres\r\nsphenion\r\nspheniscidae\r\nsphenisciformes\r\nspheniscus\r\nsphenodon\r\nsphenoid\r\nsphenopsida\r\nsphere\r\nspheric\r\nspherical\r\nsphericalness\r\nsphericity\r\nspherocyte\r\nspheroid\r\nspheroidal\r\nspherometer\r\nspherule\r\nsphincter\r\nsphingid\r\nsphingidae\r\nsphingine\r\nsphinx\r\nsphygmomanometer\r\nsphyraena\r\nsphyraenidae\r\nsphyrapicus\r\nsphyrna\r\nsphyrnidae\r\nspic\r\nspic-and-span\r\nspica\r\nspicate\r\nspiccato\r\nspice\r\nspice-scented\r\nspiceberry\r\nspicebush\r\nspicemill\r\nspicery\r\nspicily\r\nspiciness\r\nspick\r\nspick-and-span\r\nspicule\r\nspiculum\r\nspicy\r\nspider\r\nspider-shaped\r\nspiderflower\r\nspiderlike\r\nspiderly\r\nspiderwort\r\nspidery\r\nspiegel\r\nspiegeleisen\r\nspiel\r\nspielberg\r\nspiff\r\nspiffing\r\nspiffy\r\nspigot\r\nspik\r\nspike\r\nspiked\r\nspikelet\r\nspikelike\r\nspikemoss\r\nspikenard\r\nspiky\r\nspile\r\nspill\r\nspillage\r\nspillane\r\nspiller\r\nspillikin\r\nspillikins\r\nspillover\r\nspillway\r\nspilogale\r\nspin\r\nspin-dry\r\nspin-off\r\nspinach\r\nspinacia\r\nspinal\r\nspindle\r\nspindle-legged\r\nspindle-shanked\r\nspindle-shaped\r\nspindleberry\r\nspindlelegs\r\nspindleshanks\r\nspindly\r\nspindrift\r\nspine\r\nspine-tipped\r\nspinel\r\nspineless\r\nspinelessness\r\nspinet\r\nspininess\r\nspinmeister\r\nspinnability\r\nspinnable\r\nspinnaker\r\nspinnbar\r\nspinnbarkeit\r\nspinner\r\nspinney\r\nspinning\r\nspinose\r\nspinous\r\nspinoza\r\nspinster\r\nspinsterhood\r\nspinus\r\nspiny\r\nspiny-backed\r\nspiny-edged\r\nspiny-finned\r\nspiny-leafed\r\nspiny-leaved\r\nspiny-stemmed\r\nspiracle\r\nspiraea\r\nspiral\r\nspiral-shelled\r\nspiraling\r\nspirant\r\nspiranthes\r\nspire\r\nspirea\r\nspirilla\r\nspirillaceae\r\nspirillum\r\nspirit\r\nspirited\r\nspiritedness\r\nspiritise\r\nspiritism\r\nspiritize\r\nspiritless\r\nspiritlessness\r\nspiritous\r\nspirits\r\nspiritual\r\nspiritualisation\r\nspiritualise\r\nspiritualism\r\nspiritualist\r\nspiritualistic\r\nspirituality\r\nspiritualization\r\nspiritualize\r\nspiritualty\r\nspirituous\r\nspirochaeta\r\nspirochaetaceae\r\nspirochaetales\r\nspirochaete\r\nspirochete\r\nspirodela\r\nspirogram\r\nspirograph\r\nspirogyra\r\nspirometer\r\nspirometry\r\nspironolactone\r\nspirt\r\nspirula\r\nspirulidae\r\nspit\r\nspitball\r\nspite\r\nspiteful\r\nspitefully\r\nspitefulness\r\nspitfire\r\nspitsbergen\r\nspitter\r\nspitting\r\nspittle\r\nspittlebug\r\nspittoon\r\nspitz\r\nspitz-like\r\nspitzbergen\r\nspiv\r\nspizella\r\nsplanchnic\r\nsplash\r\nsplash-guard\r\nsplashboard\r\nsplashdown\r\nsplashed\r\nsplasher\r\nsplashiness\r\nsplashing\r\nsplashy\r\nsplat\r\nsplatter\r\nsplattered\r\nsplattering\r\nsplay\r\nsplayfoot\r\nsplayfooted\r\nspleen\r\nspleenwort\r\nsplendid\r\nsplendidly\r\nsplendiferous\r\nsplendor\r\nsplendour\r\nsplenectomy\r\nsplenetic\r\nsplenic\r\nsplenitis\r\nsplenius\r\nsplenomegaly\r\nsplice\r\nsplicer\r\nsplicing\r\nspliff\r\nspline\r\nsplint\r\nsplinter\r\nsplintering\r\nsplinterless\r\nsplinterproof\r\nsplinters\r\nsplintery\r\nsplit\r\nsplit-pea\r\nsplitsaw\r\nsplitsville\r\nsplitter\r\nsplitting\r\nsplitworm\r\nsplodge\r\nsplosh\r\nsplotch\r\nsplotched\r\nsplurge\r\nsplutter\r\nspock\r\nspode\r\nspodoptera\r\nspodumene\r\nspoil\r\nspoilable\r\nspoilage\r\nspoilation\r\nspoiled\r\nspoiler\r\nspoiling\r\nspoilsport\r\nspoilt\r\nspokane\r\nspoke\r\nspoken\r\nspokeshave\r\nspokesman\r\nspokesperson\r\nspokeswoman\r\nspoliation\r\nspondaic\r\nspondaise\r\nspondaize\r\nspondee\r\nspondias\r\nspondylarthritis\r\nspondylitis\r\nspondylolisthesis\r\nsponge\r\nspongefly\r\nspongelike\r\nsponger\r\nspongillafly\r\nsponginess\r\nspongioblast\r\nspongioblastoma\r\nspongy\r\nsponsor\r\nsponsorship\r\nspontaneity\r\nspontaneous\r\nspontaneously\r\nspontaneousness\r\nspoof\r\nspook\r\nspookily\r\nspooky\r\nspool\r\nspoon\r\nspoon-shaped\r\nspoonbill\r\nspoondrift\r\nspoonerism\r\nspoonfeed\r\nspoonfeeding\r\nspoonflower\r\nspoonful\r\nspoor\r\nsporadic\r\nsporadically\r\nsporangiophore\r\nsporangium\r\nsporanox\r\nspore\r\nspore-bearing\r\nspork\r\nsporobolus\r\nsporocarp\r\nsporogenous\r\nsporophore\r\nsporophyl\r\nsporophyll\r\nsporophyte\r\nsporotrichosis\r\nsporozoa\r\nsporozoan\r\nsporozoite\r\nsporran\r\nsport\r\nsportfishing\r\nsporting\r\nsportingly\r\nsportive\r\nsportiveness\r\nsportscast\r\nsportscaster\r\nsportsman\r\nsportsmanlike\r\nsportsmanship\r\nsportswear\r\nsportswoman\r\nsportswriter\r\nsporty\r\nsporulate\r\nsporulation\r\nspot\r\nspot-check\r\nspot-weld\r\nspot-welder\r\nspot-welding\r\nspotless\r\nspotlessness\r\nspotlight\r\nspots\r\nspotsylvania\r\nspotted\r\nspotter\r\nspotting\r\nspotty\r\nspotweld\r\nspousal\r\nspouse\r\nspout\r\nspouter\r\nspouting\r\nsprachgefuhl\r\nsprag\r\nspraguea\r\nsprain\r\nsprat\r\nsprawl\r\nsprawler\r\nsprawling\r\nsprawly\r\nspray\r\nspray-dry\r\nsprayer\r\nspraying\r\nspread\r\nspread-eagle\r\nspread-out\r\nspreadeagle\r\nspreader\r\nspreadhead\r\nspreading\r\nspreadsheet\r\nsprechgesang\r\nsprechstimme\r\nspree\r\nsprig\r\nsprigged\r\nsprigger\r\nsprightliness\r\nsprightly\r\nsprigtail\r\nspring\r\nspring-blooming\r\nspring-clean\r\nspring-cleaning\r\nspring-flowering\r\nspring-loaded\r\nspringboard\r\nspringbok\r\nspringbuck\r\nspringer\r\nspringfield\r\nspringiness\r\nspringless\r\nspringlike\r\nspringtail\r\nspringtide\r\nspringtime\r\nspringy\r\nsprinkle\r\nsprinkled\r\nsprinkler\r\nsprinkles\r\nsprinkling\r\nsprint\r\nsprinter\r\nsprit\r\nsprite\r\nsprites\r\nspritsail\r\nspritz\r\nspritzer\r\nsprocket\r\nsprog\r\nsprout\r\nsprouted\r\nsprouting\r\nspruce\r\nsprucely\r\nspruceness\r\nsprue\r\nspry\r\nspud\r\nspue\r\nspume\r\nspumous\r\nspumy\r\nspunk\r\nspunky\r\nspur\r\nspur-of-the-moment\r\nspurge\r\nspurious\r\nspuriousness\r\nspurn\r\nspurned\r\nspurner\r\nspurring\r\nspurt\r\nspurting\r\nsputnik\r\nsputter\r\nsputtering\r\nsputum\r\nspy\r\nspyeria\r\nspyglass\r\nspyhole\r\nspying\r\nspymaster\r\nspyware\r\nsquab\r\nsquabble\r\nsquabbler\r\nsquabby\r\nsquad\r\nsquadron\r\nsqualid\r\nsqualidae\r\nsqualidly\r\nsqualidness\r\nsquall\r\nsqualling\r\nsqually\r\nsqualor\r\nsqualus\r\nsquama\r\nsquamata\r\nsquamule\r\nsquamulose\r\nsquander\r\nsquandered\r\nsquanderer\r\nsquandering\r\nsquandermania\r\nsquare\r\nsquare-bashing\r\nsquare-built\r\nsquare-jawed\r\nsquare-rigged\r\nsquare-rigger\r\nsquare-shaped\r\nsquare-shouldered\r\nsquare-tailed\r\nsquare-toed\r\nsquared\r\nsquared-toe\r\nsquarely\r\nsquareness\r\nsquaretail\r\nsquarish\r\nsquark\r\nsquash\r\nsquashy\r\nsquasy\r\nsquat\r\nsquatina\r\nsquatinidae\r\nsquatness\r\nsquatter\r\nsquattiness\r\nsquatting\r\nsquatty\r\nsquaw\r\nsquaw-bush\r\nsquawbush\r\nsquawk\r\nsquawker\r\nsquawky\r\nsquawroot\r\nsqueak\r\nsqueaker\r\nsqueaking\r\nsqueaky\r\nsqueal\r\nsquealer\r\nsquealing\r\nsqueamish\r\nsqueamishness\r\nsqueegee\r\nsqueezability\r\nsqueezable\r\nsqueeze\r\nsqueezer\r\nsqueezing\r\nsquelch\r\nsquelched\r\nsquelcher\r\nsquib\r\nsquid\r\nsquiffy\r\nsquiggle\r\nsquiggly\r\nsquill\r\nsquilla\r\nsquillidae\r\nsquinch\r\nsquinched\r\nsquint\r\nsquint-eye\r\nsquint-eyed\r\nsquinter\r\nsquinting\r\nsquinty\r\nsquire\r\nsquirearchy\r\nsquirm\r\nsquirmer\r\nsquirming\r\nsquirrel\r\nsquirrel-like\r\nsquirrel-sized\r\nsquirrelfish\r\nsquirt\r\nsquirter\r\nsquirting\r\nsquish\r\nsquishy\r\nsr\r\nsr.\r\nsravana\r\nsrbija\r\nss\r\nssa\r\nsse\r\nsspe\r\nssri\r\nsss\r\nssw\r\nst.-bruno's-lily\r\nstab\r\nstabbed\r\nstabber\r\nstabbing\r\nstabile\r\nstabilisation\r\nstabilise\r\nstabilised\r\nstabiliser\r\nstabilising\r\nstability\r\nstabilization\r\nstabilize\r\nstabilized\r\nstabilizer\r\nstabilizing\r\nstable\r\nstableboy\r\nstableman\r\nstablemate\r\nstableness\r\nstabling\r\nstabroek\r\nstaccato\r\nstachyose\r\nstachys\r\nstack\r\nstacked\r\nstacker\r\nstacks\r\nstacte\r\nstaddle\r\nstadium\r\nstael\r\nstaff\r\nstaffa\r\nstaffer\r\nstag\r\nstage\r\nstage-struck\r\nstagecoach\r\nstagecraft\r\nstaged\r\nstagehand\r\nstager\r\nstagey\r\nstagflation\r\nstagflationary\r\nstagger\r\nstaggerbush\r\nstaggerer\r\nstaggering\r\nstaggeringly\r\nstaggers\r\nstaghead\r\nstaghound\r\nstagily\r\nstaginess\r\nstaging\r\nstagira\r\nstagirus\r\nstagnancy\r\nstagnant\r\nstagnate\r\nstagnation\r\nstagy\r\nstaid\r\nstaidly\r\nstaidness\r\nstain\r\nstainability\r\nstainable\r\nstained\r\nstainer\r\nstaining\r\nstainless\r\nstair\r\nstair-carpet\r\nstair-rod\r\nstaircase\r\nstairhead\r\nstairs\r\nstairway\r\nstairwell\r\nstaisfise\r\nstake\r\nstakeholder\r\nstakeout\r\nstakes\r\nstalactite\r\nstalagmite\r\nstale\r\nstalemate\r\nstalemated\r\nstaleness\r\nstalin\r\nstalinabad\r\nstalingrad\r\nstalinisation\r\nstalinise\r\nstalinism\r\nstalinist\r\nstalinization\r\nstalinize\r\nstalino\r\nstalk\r\nstalk-like\r\nstalked\r\nstalker\r\nstalking\r\nstalking-horse\r\nstalkless\r\nstalklike\r\nstall\r\nstall-fed\r\nstalling\r\nstallion\r\nstalls\r\nstalwart\r\nstalwartness\r\nstamboul\r\nstambul\r\nstamen\r\nstamina\r\nstaminate\r\nstammel\r\nstammer\r\nstammerer\r\nstamp\r\nstamped\r\nstampede\r\nstamper\r\nstance\r\nstanch\r\nstanchion\r\nstanchly\r\nstand\r\nstand-alone\r\nstand-down\r\nstand-in\r\nstand-up\r\nstandard\r\nstandard-bearer\r\nstandardisation\r\nstandardise\r\nstandardised\r\nstandardiser\r\nstandardization\r\nstandardize\r\nstandardized\r\nstandardizer\r\nstandby\r\nstanddown\r\nstandee\r\nstander\r\nstanding\r\nstandish\r\nstandoff\r\nstandoffish\r\nstandoffishness\r\nstandpat\r\nstandpipe\r\nstandpoint\r\nstandstill\r\nstanford\r\nstanhope\r\nstanhopea\r\nstanislavsky\r\nstanley\r\nstanleya\r\nstannic\r\nstannite\r\nstannous\r\nstanton\r\nstanza\r\nstapedectomy\r\nstapelia\r\nstapes\r\nstaph\r\nstaphylaceae\r\nstaphylea\r\nstaphylinidae\r\nstaphylococcal\r\nstaphylococci\r\nstaphylococcus\r\nstaple\r\nstaplegun\r\nstapler\r\nstar\r\nstar-duckweed\r\nstar-glory\r\nstar-of-bethlehem\r\nstar-shaped\r\nstar-thistle\r\nstarboard\r\nstarch\r\nstarchless\r\nstarchlike\r\nstarchy\r\nstardom\r\nstardust\r\nstare\r\nstarer\r\nstarets\r\nstarfish\r\nstarfish-like\r\nstarflower\r\nstargaze\r\nstargazer\r\nstargazing\r\nstaring\r\nstaringly\r\nstark\r\nstarkers\r\nstarkey\r\nstarkness\r\nstarless\r\nstarlet\r\nstarlight\r\nstarlike\r\nstarling\r\nstarlit\r\nstarr\r\nstarred\r\nstarring\r\nstarry\r\nstarry-eyed\r\nstarship\r\nstart\r\nstart-off\r\nstarter\r\nstarting\r\nstartle\r\nstartled\r\nstartling\r\nstartup\r\nstarvation\r\nstarve\r\nstarved\r\nstarveling\r\nstarving\r\nstarwort\r\nstash\r\nstasis\r\nstatant\r\nstate\r\nstate-controlled\r\nstate-of-the-art\r\nstate-supported\r\nstatecraft\r\nstated\r\nstatehouse\r\nstateless\r\nstateliness\r\nstately\r\nstatement\r\nstater\r\nstateroom\r\nstatesman\r\nstatesmanlike\r\nstatesmanly\r\nstatesmanship\r\nstateswoman\r\nstatewide\r\nstatic\r\nstatice\r\nstatics\r\nstatin\r\nstation\r\nstationariness\r\nstationary\r\nstationer\r\nstationery\r\nstationmaster\r\nstations\r\nstatistic\r\nstatistical\r\nstatistician\r\nstatistics\r\nstative\r\nstator\r\nstatuary\r\nstatue\r\nstatuesque\r\nstatuette\r\nstature\r\nstatus\r\nstatute\r\nstatutory\r\nstaunch\r\nstaunchly\r\nstaunchness\r\nstaurikosaur\r\nstaurikosaurus\r\nstavanger\r\nstave\r\nstay\r\nstay-at-home\r\nstayer\r\nstayman\r\nstays\r\nstaysail\r\nstead\r\nsteadfast\r\nsteadfastly\r\nsteadfastness\r\nsteadied\r\nsteadily\r\nsteadiness\r\nsteady\r\nsteady-going\r\nsteadying\r\nsteak\r\nsteakhouse\r\nsteal\r\nstealer\r\nstealing\r\nstealth\r\nstealthiness\r\nstealthy\r\nsteam\r\nsteam-heat\r\nsteam-powered\r\nsteamboat\r\nsteamed\r\nsteamer\r\nsteamfitter\r\nsteaminess\r\nsteaming\r\nsteamroll\r\nsteamroller\r\nsteamship\r\nsteamy\r\nstearic\r\nstearin\r\nsteatite\r\nsteatocystoma\r\nsteatornis\r\nsteatornithidae\r\nsteatorrhea\r\nsteed\r\nsteel\r\nsteel-plated\r\nsteele\r\nsteelmaker\r\nsteelman\r\nsteelworker\r\nsteelworks\r\nsteely\r\nsteelyard\r\nsteen\r\nsteenbok\r\nsteep\r\nsteep-sided\r\nsteepen\r\nsteeper\r\nsteepish\r\nsteeple\r\nsteeplechase\r\nsteeplechaser\r\nsteeplejack\r\nsteepness\r\nsteer\r\nsteerable\r\nsteerage\r\nsteerageway\r\nsteerer\r\nsteering\r\nsteersman\r\nsteffens\r\nsteganography\r\nsteganopus\r\nstegocephalia\r\nstegosaur\r\nstegosaurus\r\nsteichen\r\nstein\r\nsteinbeck\r\nsteinberg\r\nsteinbok\r\nsteinem\r\nsteinman\r\nsteinmetz\r\nsteinway\r\nstela\r\nstele\r\nstelis\r\nstella\r\nstellar\r\nstellaria\r\nstellate\r\nsteller\r\nstellite\r\nstem\r\nstem-like\r\nstem-winder\r\nstemless\r\nstemlike\r\nstemma\r\nstemmatic\r\nstemmatics\r\nstemmatology\r\nstemmed\r\nstemmer\r\nstench\r\nstencil\r\nstendhal\r\nstengel\r\nstenocarpus\r\nstenochlaena\r\nstenograph\r\nstenographer\r\nstenographic\r\nstenographical\r\nstenography\r\nstenopelmatidae\r\nstenopelmatus\r\nstenopterygius\r\nstenosed\r\nstenosis\r\nstenotaphrum\r\nstenotic\r\nstenotomus\r\nstenotus\r\nstent\r\nstentor\r\nstentorian\r\nstep\r\nstep-by-step\r\nstep-down\r\nstep-in\r\nstep-up\r\nstepbrother\r\nstepchild\r\nstepdaughter\r\nstepfather\r\nstephanion\r\nstephanomeria\r\nstephanotis\r\nstephead\r\nstephen\r\nstephenson\r\nstepladder\r\nstepmother\r\nstepparent\r\nsteppe\r\nstepper\r\nsteprelationship\r\nsteps\r\nstepsister\r\nstepson\r\nstepwise\r\nsteradian\r\nstercobilinogen\r\nstercolith\r\nstercorariidae\r\nstercorarius\r\nsterculia\r\nsterculiaceae\r\nstereo\r\nstereophonic\r\nstereophony\r\nstereoscope\r\nstereoscopic\r\nstereoscopy\r\nstereospondyli\r\nstereotype\r\nstereotyped\r\nstereotypic\r\nstereotypical\r\nsterile\r\nsterileness\r\nsterilisation\r\nsterilise\r\nsterilised\r\nsteriliser\r\nsterility\r\nsterilization\r\nsterilize\r\nsterilized\r\nsterilizer\r\nsterling\r\nstern\r\nsterna\r\nsternal\r\nsterne\r\nsterninae\r\nsternly\r\nsternness\r\nsternocleidomastoid\r\nsternotherus\r\nsternpost\r\nsternum\r\nsternutation\r\nsternutative\r\nsternutator\r\nsternutatory\r\nsternwheeler\r\nsteroid\r\nsteroidal\r\nsterol\r\nsterope\r\nstertor\r\nstertorous\r\nstet\r\nstethoscope\r\nstetson\r\nsteuben\r\nstevedore\r\nstevens\r\nstevenson\r\nstevia\r\nstew\r\nsteward\r\nstewardess\r\nstewardship\r\nstewart\r\nstewed\r\nstewing\r\nstewpan\r\nsth\r\nsthene\r\nstheno\r\nstibnite\r\nstichaeidae\r\nsticherus\r\nstick\r\nstick-in-the-mud\r\nstick-on\r\nstickball\r\nsticker\r\nstickily\r\nstickiness\r\nsticking\r\nstickle\r\nstickleback\r\nstickler\r\nstickpin\r\nsticktight\r\nstickup\r\nstickweed\r\nsticky\r\nstictomys\r\nstictopelia\r\nstieglitz\r\nstiff\r\nstiff-backed\r\nstiff-branched\r\nstiff-haired\r\nstiff-necked\r\nstiff-tailed\r\nstiffen\r\nstiffener\r\nstiffening\r\nstiffly\r\nstiffness\r\nstifle\r\nstifled\r\nstifler\r\nstifling\r\nstigma\r\nstigmata\r\nstigmatic\r\nstigmatisation\r\nstigmatise\r\nstigmatism\r\nstigmatist\r\nstigmatization\r\nstigmatize\r\nstilbesterol\r\nstilbestrol\r\nstilboestrol\r\nstile\r\nstiletto\r\nstill\r\nstill-fish\r\nstill-hunt\r\nstillbirth\r\nstillborn\r\nstillness\r\nstillroom\r\nstilly\r\nstilt\r\nstiltbird\r\nstilted\r\nstilton\r\nstilwell\r\nstimulant\r\nstimulate\r\nstimulated\r\nstimulating\r\nstimulation\r\nstimulative\r\nstimulus\r\nsting\r\nstingaree-bush\r\nstinger\r\nstingily\r\nstinginess\r\nstinging\r\nstingless\r\nstingray\r\nstingy\r\nstink\r\nstinkbird\r\nstinker\r\nstinkhorn\r\nstinkiness\r\nstinking\r\nstinkpot\r\nstinkweed\r\nstinky\r\nstint\r\nstinter\r\nstinting\r\nstipe\r\nstipend\r\nstipendiary\r\nstipple\r\nstippled\r\nstippler\r\nstipulate\r\nstipulation\r\nstipulatory\r\nstipule\r\nstir\r\nstirk\r\nstirred\r\nstirrer\r\nstirring\r\nstirrup\r\nstirrup-shaped\r\nstitch\r\nstitched\r\nstitcher\r\nstitchery\r\nstitching\r\nstitchwort\r\nstizidae\r\nstizolobium\r\nstizostedion\r\nstm\r\nstoat\r\nstob\r\nstochastic\r\nstochasticity\r\nstock\r\nstock-in-trade\r\nstock-still\r\nstock-take\r\nstock-taker\r\nstock-taking\r\nstockade\r\nstockbroker\r\nstockcar\r\nstocked\r\nstocker\r\nstockfish\r\nstockholder\r\nstockholding\r\nstockholdings\r\nstockholm\r\nstockhorn\r\nstockinet\r\nstockinette\r\nstocking\r\nstockinged\r\nstockist\r\nstockjobber\r\nstockman\r\nstockpile\r\nstockpiling\r\nstockpot\r\nstockroom\r\nstocks\r\nstocktake\r\nstocktaker\r\nstocktaking\r\nstockton\r\nstocky\r\nstockyard\r\nstodge\r\nstodgily\r\nstodginess\r\nstodgy\r\nstoep\r\nstogie\r\nstogy\r\nstoic\r\nstoical\r\nstoichiometric\r\nstoichiometry\r\nstoicism\r\nstoke\r\nstokehold\r\nstokehole\r\nstoker\r\nstokesia\r\nstokowski\r\nstole\r\nstolen\r\nstolid\r\nstolidity\r\nstolidness\r\nstolon\r\nstoloniferous\r\nstoma\r\nstomach\r\nstomachache\r\nstomachal\r\nstomacher\r\nstomachic\r\nstomatal\r\nstomate\r\nstomatitis\r\nstomatopod\r\nstomatopoda\r\nstomatous\r\nstomp\r\nstomper\r\nstone\r\nstone-blind\r\nstone-broke\r\nstone-cold\r\nstone-dead\r\nstone-deaf\r\nstone-face\r\nstone-gray\r\nstone-grey\r\nstone-root\r\nstone-sober\r\nstone-wash\r\nstonechat\r\nstonecress\r\nstonecrop\r\nstonecutter\r\nstoned\r\nstoneface\r\nstonefish\r\nstonefly\r\nstonehenge\r\nstoneless\r\nstonelike\r\nstonemason\r\nstoner\r\nstoneroot\r\nstonewall\r\nstonewaller\r\nstonewalling\r\nstoneware\r\nstonewash\r\nstonework\r\nstonewort\r\nstoning\r\nstony\r\nstony-broke\r\nstonyhearted\r\nstooge\r\nstool\r\nstoolie\r\nstoolpigeon\r\nstoop\r\nstooped\r\nstooper\r\nstooping\r\nstop\r\nstopcock\r\nstopes\r\nstopgap\r\nstoplight\r\nstopover\r\nstoppable\r\nstoppage\r\nstoppard\r\nstopped\r\nstopped-up\r\nstopper\r\nstoppered\r\nstopping\r\nstopple\r\nstops\r\nstopwatch\r\nstorage\r\nstorax\r\nstore\r\nstore-bought\r\nstored-program\r\nstored-up\r\nstorefront\r\nstorehouse\r\nstorekeeper\r\nstoreria\r\nstoreroom\r\nstorey\r\nstoreyed\r\nstoried\r\nstork\r\nstork-like\r\nstorksbill\r\nstorm\r\nstorm-beaten\r\nstorm-tossed\r\nstormbound\r\nstormily\r\nstorminess\r\nstormproof\r\nstormy\r\nstory\r\nstorybook\r\nstoryline\r\nstoryteller\r\nstotinka\r\nstoup\r\nstout\r\nstout-billed\r\nstout-stemmed\r\nstouthearted\r\nstoutheartedness\r\nstoutness\r\nstove\r\nstovepipe\r\nstovepiped\r\nstovepiping\r\nstover\r\nstow\r\nstowage\r\nstowaway\r\nstowe\r\nstowing\r\nstp\r\nstrabismus\r\nstrabotomy\r\nstrachey\r\nstrad\r\nstradavarius\r\nstraddle\r\nstradivari\r\nstradivarius\r\nstrafe\r\nstrafer\r\nstraggle\r\nstraggler\r\nstraggling\r\nstragglingly\r\nstraggly\r\nstraight\r\nstraight-arm\r\nstraight-backed\r\nstraight-billed\r\nstraight-from-the-shoulder\r\nstraight-grained\r\nstraight-laced\r\nstraight-legged\r\nstraight-out\r\nstraightarrow\r\nstraightaway\r\nstraightedge\r\nstraighten\r\nstraightener\r\nstraightforward\r\nstraightforwardly\r\nstraightforwardness\r\nstraightjacket\r\nstraightlaced\r\nstraightness\r\nstrain\r\nstrained\r\nstrainer\r\nstraining\r\nstrait\r\nstrait-laced\r\nstraiten\r\nstraitjacket\r\nstraitlaced\r\nstraits\r\nstrake\r\nstrand\r\nstranded\r\nstrange\r\nstrangely\r\nstrangeness\r\nstranger\r\nstrangle\r\nstrangled\r\nstranglehold\r\nstrangler\r\nstrangles\r\nstrangling\r\nstrangulate\r\nstrangulation\r\nstrap\r\nstrapado\r\nstraphanger\r\nstrapless\r\nstraplike\r\nstrappado\r\nstrapper\r\nstrapping\r\nstrasberg\r\nstrasbourg\r\nstrassburg\r\nstratagem\r\nstrategian\r\nstrategic\r\nstrategical\r\nstrategics\r\nstrategist\r\nstrategy\r\nstratford-on-avon\r\nstratford-upon-avon\r\nstratification\r\nstratified\r\nstratify\r\nstratigraphy\r\nstratocracy\r\nstratosphere\r\nstratum\r\nstratus\r\nstrauss\r\nstravinskian\r\nstravinsky\r\nstravinskyan\r\nstraw\r\nstraw-colored\r\nstraw-coloured\r\nstrawberry\r\nstrawboard\r\nstrawflower\r\nstrawman\r\nstrawworm\r\nstray\r\nstrayer\r\nstraying\r\nstreak\r\nstreaked\r\nstreaker\r\nstreaky\r\nstream\r\nstreambed\r\nstreamer\r\nstreaming\r\nstreamlet\r\nstreamline\r\nstreamlined\r\nstreamliner\r\nstreep\r\nstreet\r\nstreet-walk\r\nstreetcar\r\nstreetlight\r\nstreetwalk\r\nstreetwalker\r\nstreetwise\r\nstreisand\r\nstrekelia\r\nstrelitzia\r\nstrelitziaceae\r\nstrength\r\nstrengthen\r\nstrengthened\r\nstrengthener\r\nstrengthening\r\nstrenuosity\r\nstrenuous\r\nstrenuousness\r\nstrep\r\nstrepera\r\nstrepsiceros\r\nstrepsirhini\r\nstreptobacillus\r\nstreptocarpus\r\nstreptococcal\r\nstreptococci\r\nstreptococcic\r\nstreptococcus\r\nstreptodornase\r\nstreptokinase\r\nstreptolysin\r\nstreptomyces\r\nstreptomycetaceae\r\nstreptomycin\r\nstreptopelia\r\nstreptosolen\r\nstreptothricin\r\nstress\r\nstressed\r\nstressful\r\nstressor\r\nstretch\r\nstretchability\r\nstretchable\r\nstretched\r\nstretcher\r\nstretcher-bearer\r\nstretchiness\r\nstretching\r\nstretchy\r\nstrew\r\nstrewing\r\nstria\r\nstriate\r\nstriation\r\nstriatum\r\nstricken\r\nstrickland\r\nstrickle\r\nstrict\r\nstrictly\r\nstrictness\r\nstricture\r\nstride\r\nstridence\r\nstridency\r\nstrident\r\nstrider\r\nstridor\r\nstridulate\r\nstridulation\r\nstrife\r\nstrigidae\r\nstrigiformes\r\nstrike\r\nstrikebound\r\nstrikebreaker\r\nstrikebreaking\r\nstrikeout\r\nstriker\r\nstriking\r\nstrikingness\r\nstrindberg\r\nstring\r\nstringency\r\nstringent\r\nstringently\r\nstringer\r\nstrings\r\nstringy\r\nstringybark\r\nstrip\r\nstrip-jack-naked\r\nstrip-mined\r\nstrip-search\r\nstripe\r\nstriped\r\nstriper\r\nstripes\r\nstriping\r\nstripling\r\nstripped\r\nstripped-down\r\nstripper\r\nstripping\r\nstriptease\r\nstripteaser\r\nstripy\r\nstrive\r\nstriver\r\nstriving\r\nstrix\r\nstrobe\r\nstrobile\r\nstrobilomyces\r\nstrobilus\r\nstroboscope\r\nstroheim\r\nstroke\r\nstroking\r\nstroll\r\nstroller\r\nstroma\r\nstromateid\r\nstromateidae\r\nstrombidae\r\nstrombus\r\nstrong\r\nstrong-arm\r\nstrong-armer\r\nstrong-boned\r\nstrong-flavored\r\nstrong-growing\r\nstrong-minded\r\nstrong-scented\r\nstrong-smelling\r\nstrong-willed\r\nstrongbox\r\nstronghold\r\nstrongly\r\nstrongman\r\nstrongroom\r\nstrongylodon\r\nstrontianite\r\nstrontium\r\nstrop\r\nstrophanthin\r\nstrophanthus\r\nstropharia\r\nstrophariaceae\r\nstrophe\r\nstroppy\r\nstruck\r\nstructural\r\nstructuralism\r\nstructure\r\nstructured\r\nstrudel\r\nstruggle\r\nstruggler\r\nstruggling\r\nstrum\r\nstruma\r\nstrumpet\r\nstrung-out\r\nstrut\r\nstruthio\r\nstruthiomimus\r\nstruthionidae\r\nstruthioniformes\r\nstrychnine\r\nstrymon\r\nstuart\r\nstub\r\nstubbiness\r\nstubble\r\nstubbled\r\nstubbly\r\nstubborn\r\nstubbornly\r\nstubbornness\r\nstubbs\r\nstubby\r\nstucco\r\nstuck\r\nstuck-up\r\nstud\r\nstudbook\r\nstudded\r\nstudent\r\nstudentship\r\nstudhorse\r\nstudied\r\nstudio\r\nstudious\r\nstudiousness\r\nstudy\r\nstudying\r\nstuff\r\nstuffed\r\nstuffer\r\nstuffily\r\nstuffiness\r\nstuffing\r\nstuffy\r\nstultification\r\nstultify\r\nstumble\r\nstumblebum\r\nstumbler\r\nstump\r\nstumper\r\nstumping\r\nstumpknocker\r\nstumpy\r\nstun\r\nstung\r\nstunned\r\nstunner\r\nstunning\r\nstunningly\r\nstunt\r\nstunted\r\nstuntedness\r\nstunting\r\nstupa\r\nstupe\r\nstupefaction\r\nstupefied\r\nstupefy\r\nstupefying\r\nstupendous\r\nstupid\r\nstupidity\r\nstupidly\r\nstupor\r\nstuporous\r\nsturdiness\r\nsturdy\r\nsturgeon\r\nsturmarbeiteilung\r\nsturnella\r\nsturnidae\r\nsturnus\r\nstutter\r\nstutterer\r\nstuttgart\r\nstuyvesant\r\nsty\r\nstye\r\nstygian\r\nstyle\r\nstyled\r\nstyleless\r\nstylemark\r\nstyler\r\nstylet\r\nstylisation\r\nstylise\r\nstylised\r\nstylish\r\nstylishness\r\nstylist\r\nstylistic\r\nstylite\r\nstylization\r\nstylize\r\nstylized\r\nstylomecon\r\nstylophorum\r\nstylopodium\r\nstylostixis\r\nstylus\r\nstymie\r\nstymy\r\nstyphelia\r\nstypsis\r\nstyptic\r\nstyracaceae\r\nstyracosaur\r\nstyracosaurus\r\nstyrax\r\nstyrene\r\nstyrofoam\r\nstyron\r\nstyx\r\nsuasible\r\nsuasion\r\nsuave\r\nsuaveness\r\nsuavity\r\nsub\r\nsub-assembly\r\nsub-interval\r\nsub-rosa\r\nsub-saharan\r\nsub-test\r\nsubacid\r\nsubacute\r\nsubalpine\r\nsubaltern\r\nsubaquatic\r\nsubaqueous\r\nsubarctic\r\nsubartesian\r\nsubatomic\r\nsubbase\r\nsubbing\r\nsubclass\r\nsubclavian\r\nsubcommittee\r\nsubcompact\r\nsubconscious\r\nsubconsciousness\r\nsubcontinent\r\nsubcontract\r\nsubcontractor\r\nsubcortical\r\nsubculture\r\nsubcutaneous\r\nsubdeacon\r\nsubdirectory\r\nsubdivide\r\nsubdivided\r\nsubdivider\r\nsubdivision\r\nsubdominant\r\nsubduable\r\nsubduction\r\nsubdue\r\nsubdued\r\nsubduedness\r\nsubduer\r\nsubdural\r\nsubedit\r\nsubeditor\r\nsubfamily\r\nsubfigure\r\nsubfusc\r\nsubgenus\r\nsubgross\r\nsubgroup\r\nsubhead\r\nsubheading\r\nsubhuman\r\nsubjacent\r\nsubject\r\nsubjection\r\nsubjective\r\nsubjectively\r\nsubjectiveness\r\nsubjectivism\r\nsubjectivist\r\nsubjectivity\r\nsubjoin\r\nsubjoining\r\nsubjugable\r\nsubjugate\r\nsubjugated\r\nsubjugation\r\nsubjugator\r\nsubjunction\r\nsubjunctive\r\nsubkingdom\r\nsublease\r\nsublet\r\nsublieutenant\r\nsublimate\r\nsublimated\r\nsublimation\r\nsublimaze\r\nsublime\r\nsublimed\r\nsubliminal\r\nsublimity\r\nsublingual\r\nsubliterary\r\nsublittoral\r\nsublunar\r\nsublunary\r\nsubluxate\r\nsubluxation\r\nsubmarine\r\nsubmariner\r\nsubmaxilla\r\nsubmediant\r\nsubmenu\r\nsubmerge\r\nsubmerged\r\nsubmergence\r\nsubmergible\r\nsubmerging\r\nsubmerse\r\nsubmersed\r\nsubmersible\r\nsubmersion\r\nsubmission\r\nsubmissive\r\nsubmissively\r\nsubmissiveness\r\nsubmit\r\nsubmitter\r\nsubmucosa\r\nsubnormal\r\nsubnormality\r\nsubocean\r\nsuboceanic\r\nsubocular\r\nsuborbital\r\nsuborder\r\nsubordinate\r\nsubordinateness\r\nsubordinating\r\nsubordination\r\nsubordinative\r\nsuborn\r\nsubornation\r\nsuborner\r\nsubpart\r\nsubphylum\r\nsubpoena\r\nsubpopulation\r\nsubprogram\r\nsubrogate\r\nsubrogation\r\nsubroutine\r\nsubscribe\r\nsubscribed\r\nsubscriber\r\nsubscript\r\nsubscription\r\nsubsection\r\nsubsequence\r\nsubsequent\r\nsubsequently\r\nsubsequentness\r\nsubserve\r\nsubservience\r\nsubservient\r\nsubserviently\r\nsubservientness\r\nsubset\r\nsubshrub\r\nsubside\r\nsubsidence\r\nsubsidiarity\r\nsubsidiary\r\nsubsiding\r\nsubsidisation\r\nsubsidise\r\nsubsidised\r\nsubsidiser\r\nsubsidization\r\nsubsidize\r\nsubsidized\r\nsubsidizer\r\nsubsidy\r\nsubsist\r\nsubsistence\r\nsubsister\r\nsubsoil\r\nsubsonic\r\nsubspace\r\nsubspecies\r\nsubstance\r\nsubstandard\r\nsubstantial\r\nsubstantiality\r\nsubstantially\r\nsubstantialness\r\nsubstantiate\r\nsubstantiated\r\nsubstantiating\r\nsubstantiation\r\nsubstantiative\r\nsubstantival\r\nsubstantive\r\nsubstation\r\nsubstitutability\r\nsubstitutable\r\nsubstitute\r\nsubstituting\r\nsubstitution\r\nsubstrate\r\nsubstratum\r\nsubstring\r\nsubstructure\r\nsubsume\r\nsubsumption\r\nsubsurface\r\nsubsystem\r\nsubtend\r\nsubterfuge\r\nsubterminal\r\nsubterranean\r\nsubterraneous\r\nsubthalamus\r\nsubtilin\r\nsubtilise\r\nsubtilize\r\nsubtitle\r\nsubtle\r\nsubtlety\r\nsubtonic\r\nsubtopia\r\nsubtotal\r\nsubtract\r\nsubtracter\r\nsubtraction\r\nsubtractive\r\nsubtrahend\r\nsubtreasury\r\nsubtropic\r\nsubtropical\r\nsubtropics\r\nsubularia\r\nsubunit\r\nsuburb\r\nsuburban\r\nsuburbanise\r\nsuburbanised\r\nsuburbanite\r\nsuburbanize\r\nsuburbanized\r\nsuburbia\r\nsubvent\r\nsubvention\r\nsubversion\r\nsubversive\r\nsubversiveness\r\nsubvert\r\nsubverter\r\nsubvocalise\r\nsubvocaliser\r\nsubvocalize\r\nsubvocalizer\r\nsubway\r\nsuccedaneum\r\nsucceed\r\nsucceeder\r\nsucceeding\r\nsuccess\r\nsuccessful\r\nsuccessfully\r\nsuccessfulness\r\nsuccession\r\nsuccessive\r\nsuccessively\r\nsuccessiveness\r\nsuccessor\r\nsuccinct\r\nsuccinctly\r\nsuccinctness\r\nsuccinic\r\nsuccinylcholine\r\nsuccor\r\nsuccorer\r\nsuccory\r\nsuccos\r\nsuccotash\r\nsuccoth\r\nsuccour\r\nsuccourer\r\nsuccuba\r\nsuccubus\r\nsucculence\r\nsucculency\r\nsucculent\r\nsuccumb\r\nsuccus\r\nsuccuss\r\nsuccussion\r\nsuch\r\nsuchlike\r\nsuck\r\nsucker\r\nsuckerfish\r\nsucking\r\nsuckle\r\nsuckled\r\nsuckling\r\nsucralfate\r\nsucrase\r\nsucre\r\nsucrose\r\nsuction\r\nsuctorial\r\nsudafed\r\nsudan\r\nsudanese\r\nsudate\r\nsudation\r\nsudatorium\r\nsudatory\r\nsudbury\r\nsudden\r\nsuddenly\r\nsuddenness\r\nsudor\r\nsudorific\r\nsudra\r\nsuds\r\nsudsy\r\nsue\r\nsuede\r\nsuer\r\nsuet\r\nsuety\r\nsuez\r\nsuffer\r\nsufferable\r\nsufferance\r\nsufferer\r\nsuffering\r\nsuffice\r\nsufficiency\r\nsufficient\r\nsufficiently\r\nsuffix\r\nsuffixation\r\nsuffocate\r\nsuffocating\r\nsuffocation\r\nsuffocative\r\nsuffragan\r\nsuffrage\r\nsuffragette\r\nsuffragism\r\nsuffragist\r\nsuffrutescent\r\nsuffrutex\r\nsuffuse\r\nsuffusion\r\nsuffusive\r\nsufi\r\nsufism\r\nsugar\r\nsugar-bush\r\nsugar-coated\r\nsugarberry\r\nsugarcane\r\nsugarcoat\r\nsugared\r\nsugariness\r\nsugarless\r\nsugarloaf\r\nsugarplum\r\nsugary\r\nsuggest\r\nsuggested\r\nsuggester\r\nsuggestibility\r\nsuggestible\r\nsuggestion\r\nsuggestive\r\nsugi\r\nsuharto\r\nsuicidal\r\nsuicide\r\nsuidae\r\nsuillus\r\nsuisse\r\nsuit\r\nsuitability\r\nsuitable\r\nsuitableness\r\nsuitably\r\nsuitcase\r\nsuite\r\nsuited\r\nsuiting\r\nsuitor\r\nsukarno\r\nsukiyaki\r\nsukkoth\r\nsuksdorfia\r\nsukur\r\nsula\r\nsulamyd\r\nsulawesi\r\nsulcate\r\nsulcus\r\nsulfa\r\nsulfacetamide\r\nsulfadiazine\r\nsulfamethazine\r\nsulfamethoxazole\r\nsulfamezathine\r\nsulfanilamide\r\nsulfapyridine\r\nsulfate\r\nsulfide\r\nsulfisoxazole\r\nsulfonamide\r\nsulfonate\r\nsulfonylurea\r\nsulfur\r\nsulfur-yellow\r\nsulfurette\r\nsulfuretted\r\nsulfuric\r\nsulfurized\r\nsulfurous\r\nsulidae\r\nsulindac\r\nsulk\r\nsulkiness\r\nsulky\r\nsulla\r\nsullen\r\nsullenly\r\nsullenness\r\nsullied\r\nsullivan\r\nsully\r\nsulpha\r\nsulphate\r\nsulphide\r\nsulphur\r\nsulphur-yellow\r\nsulphurette\r\nsulphuretted\r\nsulphuric\r\nsulphurous\r\nsultan\r\nsultana\r\nsultanate\r\nsultrily\r\nsultriness\r\nsultry\r\nsum\r\nsum-up\r\nsumac\r\nsumach\r\nsumatra\r\nsumatran\r\nsumer\r\nsumerian\r\nsumerology\r\nsummarisation\r\nsummarise\r\nsummarization\r\nsummarize\r\nsummary\r\nsummate\r\nsummation\r\nsummational\r\nsummative\r\nsummer\r\nsummer-blooming\r\nsummer-flowering\r\nsummercater\r\nsummercaters\r\nsummerhouse\r\nsummerise\r\nsummerize\r\nsummersault\r\nsummerset\r\nsummertime\r\nsummery\r\nsummit\r\nsummon\r\nsummoning\r\nsummons\r\nsumner\r\nsumo\r\nsump\r\nsumpsimus\r\nsumpter\r\nsumptuary\r\nsumptuosity\r\nsumptuous\r\nsumptuously\r\nsumptuousness\r\nsun\r\nsun-drenched\r\nsun-dried\r\nsun-loving\r\nsun-ray\r\nsun-worship\r\nsunbaked\r\nsunbathe\r\nsunbather\r\nsunbeam\r\nsunbelt\r\nsunberry\r\nsunblind\r\nsunblock\r\nsunbonnet\r\nsunburn\r\nsunburned\r\nsunburnt\r\nsunburst\r\nsunchoke\r\nsundacarpus\r\nsundae\r\nsundanese\r\nsunday\r\nsunday-go-to-meeting\r\nsunder\r\nsunderland\r\nsundew\r\nsundial\r\nsundog\r\nsundown\r\nsundowner\r\nsundress\r\nsundried\r\nsundries\r\nsundrops\r\nsundry\r\nsunfish\r\nsunflower\r\nsung\r\nsunglass\r\nsunglasses\r\nsunhat\r\nsunk\r\nsunken\r\nsunken-eyed\r\nsunlamp\r\nsunless\r\nsunlight\r\nsunlit\r\nsunna\r\nsunnah\r\nsunni\r\nsunnily\r\nsunniness\r\nsunnite\r\nsunny\r\nsunporch\r\nsunray\r\nsunrise\r\nsunroof\r\nsunroom\r\nsunrose\r\nsunscreen\r\nsunset\r\nsunshade\r\nsunshine\r\nsunshine-roof\r\nsunshiny\r\nsunspot\r\nsunstone\r\nsunstroke\r\nsunstruck\r\nsunsuit\r\nsuntan\r\nsuntanned\r\nsuntrap\r\nsunup\r\nsuomi\r\nsup\r\nsuper\r\nsuperable\r\nsuperabundance\r\nsuperabundant\r\nsuperannuate\r\nsuperannuated\r\nsuperannuation\r\nsuperb\r\nsuperbia\r\nsuperbly\r\nsuperbug\r\nsupercargo\r\nsupercede\r\nsupercharge\r\nsupercharged\r\nsupercharger\r\nsupercilious\r\nsuperciliously\r\nsuperciliousness\r\nsupercilium\r\nsuperclass\r\nsupercomputer\r\nsuperconductivity\r\nsupercritical\r\nsuperego\r\nsupererogation\r\nsupererogatory\r\nsuperfamily\r\nsuperfatted\r\nsuperfecta\r\nsuperfecundation\r\nsuperfetate\r\nsuperfetation\r\nsuperficial\r\nsuperficiality\r\nsuperficies\r\nsuperfine\r\nsuperfluity\r\nsuperfluous\r\nsuperfund\r\nsupergiant\r\nsupergrass\r\nsuperhet\r\nsuperhighway\r\nsuperhuman\r\nsuperimpose\r\nsuperimposed\r\nsuperincumbent\r\nsuperinfect\r\nsuperinfection\r\nsuperintend\r\nsuperintendence\r\nsuperintendent\r\nsuperior\r\nsuperiority\r\nsuperjacent\r\nsuperlative\r\nsuperload\r\nsuperlunar\r\nsuperlunary\r\nsuperman\r\nsupermarket\r\nsupermarketeer\r\nsupermarketer\r\nsupermex\r\nsupermodel\r\nsupermolecule\r\nsupermom\r\nsupernal\r\nsupernatant\r\nsupernatural\r\nsupernaturalism\r\nsupernaturalist\r\nsupernaturalistic\r\nsupernaturally\r\nsupernaturalness\r\nsupernormal\r\nsupernova\r\nsupernumerary\r\nsuperorder\r\nsuperordinate\r\nsuperordination\r\nsuperoxide\r\nsuperpatriotic\r\nsuperpatriotism\r\nsuperphylum\r\nsuperposable\r\nsuperpose\r\nsuperposition\r\nsuperpower\r\nsupersaturated\r\nsuperscribe\r\nsuperscript\r\nsuperscription\r\nsupersede\r\nsupersedure\r\nsupersensitised\r\nsupersensitive\r\nsupersensitized\r\nsupersession\r\nsuperslasher\r\nsupersonic\r\nsuperstar\r\nsuperstition\r\nsuperstitious\r\nsuperstrate\r\nsuperstratum\r\nsuperstring\r\nsuperstructure\r\nsupersymmetry\r\nsupertanker\r\nsupertax\r\nsupertitle\r\nsupertonic\r\nsupertwister\r\nsupervene\r\nsupervention\r\nsupervise\r\nsupervised\r\nsupervising\r\nsupervision\r\nsupervisor\r\nsupervisory\r\nsupinate\r\nsupination\r\nsupinator\r\nsupine\r\nsupper\r\nsupperless\r\nsuppertime\r\nsupping\r\nsupplant\r\nsupplanter\r\nsupplanting\r\nsupple\r\nsupplejack\r\nsupplement\r\nsupplemental\r\nsupplementary\r\nsupplementation\r\nsuppleness\r\nsuppliant\r\nsupplicant\r\nsupplicate\r\nsupplication\r\nsupplicatory\r\nsupplier\r\nsupply\r\nsupplying\r\nsupport\r\nsupportable\r\nsupported\r\nsupporter\r\nsupporting\r\nsupportive\r\nsupposable\r\nsupposal\r\nsuppose\r\nsupposed\r\nsupposedly\r\nsupposition\r\nsuppositional\r\nsuppositious\r\nsupposititious\r\nsuppository\r\nsuppress\r\nsuppressant\r\nsuppressed\r\nsuppresser\r\nsuppression\r\nsuppressive\r\nsuppressor\r\nsuppuku\r\nsuppurate\r\nsuppuration\r\nsuppurative\r\nsupra\r\nsuprainfection\r\nsupranational\r\nsupranormal\r\nsupraocular\r\nsupraorbital\r\nsuprarenalectomy\r\nsuprasegmental\r\nsupremacism\r\nsupremacist\r\nsupremacy\r\nsuprematism\r\nsuprematist\r\nsupreme\r\nsupremo\r\nsur\r\nsura\r\nsurbase\r\nsurcease\r\nsurcharge\r\nsurcoat\r\nsurd\r\nsure\r\nsure-enough\r\nsure-fire\r\nsure-footed\r\nsure-handed\r\nsurefooted\r\nsurely\r\nsureness\r\nsurety\r\nsurf\r\nsurface\r\nsurface-active\r\nsurface-assimilative\r\nsurface-mine\r\nsurface-to-air\r\nsurfacing\r\nsurfactant\r\nsurfbird\r\nsurfboard\r\nsurfboarder\r\nsurfboarding\r\nsurfboat\r\nsurfeit\r\nsurfeited\r\nsurfer\r\nsurffish\r\nsurficial\r\nsurfing\r\nsurfperch\r\nsurfriding\r\nsurge\r\nsurgeon\r\nsurgeonfish\r\nsurgery\r\nsurgical\r\nsurging\r\nsuricata\r\nsuricate\r\nsurinam\r\nsuriname\r\nsurlily\r\nsurliness\r\nsurly\r\nsurmisable\r\nsurmisal\r\nsurmise\r\nsurmontil\r\nsurmount\r\nsurmountable\r\nsurmounter\r\nsurmullet\r\nsurname\r\nsurnia\r\nsurpass\r\nsurpassing\r\nsurplice\r\nsurpliced\r\nsurplus\r\nsurplusage\r\nsurprint\r\nsurprisal\r\nsurprise\r\nsurprised\r\nsurpriser\r\nsurprising\r\nsurprisingly\r\nsurprisingness\r\nsurreal\r\nsurrealism\r\nsurrealist\r\nsurrealistic\r\nsurrebuttal\r\nsurrebutter\r\nsurrejoinder\r\nsurrender\r\nsurrendered\r\nsurrenderer\r\nsurreptitious\r\nsurreptitiously\r\nsurrey\r\nsurrogate\r\nsurround\r\nsurrounded\r\nsurrounding\r\nsurroundings\r\nsurtax\r\nsurtitle\r\nsurtout\r\nsurveil\r\nsurveillance\r\nsurvey\r\nsurveying\r\nsurveyor\r\nsurvival\r\nsurvivalist\r\nsurvive\r\nsurviving\r\nsurvivor\r\nsurya\r\nsus\r\nsusa\r\nsusah\r\nsusanna\r\nsusceptibility\r\nsusceptible\r\nsusceptibleness\r\nsushi\r\nsusian\r\nsusiana\r\nsuslik\r\nsuspect\r\nsuspected\r\nsuspend\r\nsuspended\r\nsuspender\r\nsuspense\r\nsuspenseful\r\nsuspension\r\nsuspensive\r\nsuspensor\r\nsuspensory\r\nsuspicion\r\nsuspicious\r\nsuspiciousness\r\nsuspiration\r\nsuspire\r\nsusquehanna\r\nsussex\r\nsustain\r\nsustainability\r\nsustainable\r\nsustained\r\nsustainer\r\nsustainment\r\nsustenance\r\nsustentacular\r\nsustentation\r\nsusurrant\r\nsusurrate\r\nsusurration\r\nsusurrous\r\nsusurrus\r\nsutherland\r\nsutler\r\nsutra\r\nsuttee\r\nsutura\r\nsuture\r\nsuturing\r\nsuv\r\nsuva\r\nsuzerain\r\nsuzerainty\r\nsvalbard\r\nsvedberg\r\nsvelte\r\nsvengali\r\nsverdrup\r\nsverige\r\nsvizzera\r\nsvoboda\r\nsvr\r\nsw\r\nswab\r\nswabbing\r\nswad\r\nswaddle\r\nswag\r\nswage\r\nswagger\r\nswaggerer\r\nswaggering\r\nswaggie\r\nswagman\r\nswahili\r\nswain\r\nswainsona\r\nswale\r\nswallow\r\nswallow-tailed\r\nswallowed\r\nswallowtail\r\nswallowwort\r\nswami\r\nswammerdam\r\nswamp\r\nswamped\r\nswamphen\r\nswampland\r\nswampy\r\nswan\r\nswan-flower\r\nswan-neck\r\nswanflower\r\nswank\r\nswanky\r\nswanneck\r\nswansea\r\nswanson\r\nswap\r\nsward\r\nswarm\r\nswart\r\nswarthiness\r\nswarthy\r\nswash\r\nswashbuckler\r\nswashbuckling\r\nswastika\r\nswat\r\nswatch\r\nswath\r\nswathe\r\nswathing\r\nswatter\r\nsway\r\nswayback\r\nswaybacked\r\nswayer\r\nswazi\r\nswaziland\r\nswbs\r\nswbw\r\nswear\r\nswearer\r\nswearing\r\nswearword\r\nsweat\r\nsweatband\r\nsweatbox\r\nsweater\r\nsweating\r\nsweatpants\r\nsweats\r\nsweatshirt\r\nsweatshop\r\nsweatsuit\r\nsweaty\r\nswede\r\nsweden\r\nswedenborg\r\nswedish\r\nsweep\r\nsweep-second\r\nsweeper\r\nsweeping\r\nsweepstakes\r\nsweet\r\nsweet-breathed\r\nsweet-faced\r\nsweet-flavored\r\nsweet-scented\r\nsweet-smelling\r\nsweet-talk\r\nsweetbread\r\nsweetbreads\r\nsweetbriar\r\nsweetbrier\r\nsweeten\r\nsweetened\r\nsweetener\r\nsweetening\r\nsweetheart\r\nsweetie\r\nsweetish\r\nsweetleaf\r\nsweetly\r\nsweetmeat\r\nsweetness\r\nsweetpea\r\nsweetsop\r\nswell\r\nswelled\r\nswellhead\r\nswelling\r\nswelter\r\nsweltering\r\nsweltry\r\nswept\r\nsweptback\r\nsweptwing\r\nswertia\r\nswerve\r\nswerving\r\nswietinia\r\nswift\r\nswift-footed\r\nswiftlet\r\nswiftly\r\nswiftness\r\nswig\r\nswill\r\nswilling\r\nswim\r\nswimmer\r\nswimmeret\r\nswimming\r\nswimmingly\r\nswimsuit\r\nswimwear\r\nswinburne\r\nswindle\r\nswindler\r\nswine\r\nswineherd\r\nswing\r\nswinge\r\nswingeing\r\nswinger\r\nswinging\r\nswingletree\r\nswingy\r\nswinish\r\nswipe\r\nswirl\r\nswirling\r\nswish\r\nswishing\r\nswishy\r\nswiss\r\nswitch\r\nswitch-hit\r\nswitch-hitter\r\nswitch-ivy\r\nswitchblade\r\nswitchboard\r\nswitcher\r\nswitcheroo\r\nswitching\r\nswitchman\r\nswither\r\nswitzerland\r\nswivel\r\nswiz\r\nswizzle\r\nswob\r\nswollen\r\nswollen-headed\r\nswoon\r\nswooning\r\nswoop\r\nswoosh\r\nswop\r\nsword\r\nsword-cut\r\nsword-shaped\r\nswordfish\r\nswordlike\r\nswordplay\r\nswordsman\r\nswordsmanship\r\nswordtail\r\nsworn\r\nswosh\r\nswot\r\nsybarite\r\nsybaritic\r\nsycamore\r\nsyconium\r\nsycophancy\r\nsycophant\r\nsycophantic\r\nsydenham\r\nsydney\r\nsyllabary\r\nsyllabic\r\nsyllabicate\r\nsyllabication\r\nsyllabicity\r\nsyllabification\r\nsyllabify\r\nsyllabise\r\nsyllabize\r\nsyllable\r\nsyllabled\r\nsyllabub\r\nsyllabus\r\nsyllepsis\r\nsyllogise\r\nsyllogiser\r\nsyllogism\r\nsyllogist\r\nsyllogistic\r\nsyllogize\r\nsyllogizer\r\nsylph\r\nsylphlike\r\nsylva\r\nsylvan\r\nsylvanite\r\nsylvanus\r\nsylviidae\r\nsylviinae\r\nsylvilagus\r\nsylvine\r\nsylvite\r\nsymbiosis\r\nsymbiotic\r\nsymbol\r\nsymbol-worship\r\nsymbolatry\r\nsymbolic\r\nsymbolical\r\nsymbolisation\r\nsymbolise\r\nsymboliser\r\nsymbolising\r\nsymbolism\r\nsymbolist\r\nsymbolization\r\nsymbolize\r\nsymbolizer\r\nsymbolizing\r\nsymbology\r\nsymbololatry\r\nsymmetric\r\nsymmetrical\r\nsymmetrically\r\nsymmetricalness\r\nsymmetrise\r\nsymmetrize\r\nsymmetry\r\nsymonds\r\nsymons\r\nsympathectomy\r\nsympathetic\r\nsympathetically\r\nsympathise\r\nsympathiser\r\nsympathize\r\nsympathizer\r\nsympathomimetic\r\nsympathy\r\nsympatric\r\nsympatry\r\nsympetalous\r\nsymphalangus\r\nsymphilid\r\nsymphonic\r\nsymphonious\r\nsymphonise\r\nsymphonist\r\nsymphonize\r\nsymphony\r\nsymphoricarpos\r\nsymphyla\r\nsymphysion\r\nsymphysis\r\nsymphytum\r\nsymplocaceae\r\nsymplocarpus\r\nsymploce\r\nsymplocus\r\nsymposiarch\r\nsymposiast\r\nsymposium\r\nsymptom\r\nsymptomatic\r\nsymptomless\r\nsynaeresis\r\nsynaesthesia\r\nsynaesthetic\r\nsynagogue\r\nsynagrops\r\nsynanceja\r\nsynapse\r\nsynapsid\r\nsynapsida\r\nsynapsis\r\nsynaptic\r\nsynaptomys\r\nsync\r\nsyncarp\r\nsyncarpous\r\nsyncategorem\r\nsyncategorematic\r\nsyncategoreme\r\nsynchro\r\nsynchrocyclotron\r\nsynchroflash\r\nsynchromesh\r\nsynchronal\r\nsynchroneity\r\nsynchronic\r\nsynchronicity\r\nsynchronisation\r\nsynchronise\r\nsynchronised\r\nsynchroniser\r\nsynchronising\r\nsynchronism\r\nsynchronization\r\nsynchronize\r\nsynchronized\r\nsynchronizer\r\nsynchronizing\r\nsynchronoscope\r\nsynchronous\r\nsynchrony\r\nsynchroscope\r\nsynchrotron\r\nsynchytriaceae\r\nsynchytrium\r\nsynclinal\r\nsyncopate\r\nsyncopated\r\nsyncopation\r\nsyncopator\r\nsyncope\r\nsyncretic\r\nsyncretical\r\nsyncretise\r\nsyncretism\r\nsyncretistic\r\nsyncretistical\r\nsyncretize\r\nsyncytium\r\nsyndactylism\r\nsyndactyly\r\nsyndetic\r\nsyndic\r\nsyndicalism\r\nsyndicalist\r\nsyndicate\r\nsyndication\r\nsyndicator\r\nsyndrome\r\nsynecdoche\r\nsynecdochic\r\nsynecdochical\r\nsynechia\r\nsynentognathi\r\nsynercus\r\nsyneresis\r\nsynergetic\r\nsynergism\r\nsynergist\r\nsynergistic\r\nsynergy\r\nsynesthesia\r\nsynesthetic\r\nsynezesis\r\nsynge\r\nsyngnathidae\r\nsyngnathus\r\nsyngonium\r\nsynizesis\r\nsynod\r\nsynodontidae\r\nsynoecious\r\nsynoicous\r\nsynonym\r\nsynonymist\r\nsynonymity\r\nsynonymous\r\nsynonymousness\r\nsynonymy\r\nsynopsis\r\nsynoptic\r\nsynoptical\r\nsynoptics\r\nsynovia\r\nsynovial\r\nsynovitis\r\nsynovium\r\nsynsemantic\r\nsynset\r\nsyntactic\r\nsyntactical\r\nsyntactician\r\nsyntagm\r\nsyntagma\r\nsyntagmatic\r\nsyntax\r\nsynthesis\r\nsynthesise\r\nsynthesiser\r\nsynthesist\r\nsynthesize\r\nsynthesizer\r\nsynthetic\r\nsynthetical\r\nsynthetism\r\nsyph\r\nsyphilis\r\nsyphilitic\r\nsyphon\r\nsyracuse\r\nsyria\r\nsyrian\r\nsyringa\r\nsyringe\r\nsyrinx\r\nsyrrhaptes\r\nsyrup\r\nsyrupy\r\nsystem\r\nsystematic\r\nsystematically\r\nsystematics\r\nsystematisation\r\nsystematise\r\nsystematised\r\nsystematiser\r\nsystematism\r\nsystematist\r\nsystematization\r\nsystematize\r\nsystematized\r\nsystematizer\r\nsystemic\r\nsystemise\r\nsystemiser\r\nsystemize\r\nsystemizer\r\nsystole\r\nsystolic\r\nsyzygium\r\nsyzygy\r\nszechuan\r\nszechwan\r\nszell\r\nszent-gyorgyi\r\nszilard\r\nt\r\nt'ien-ching\r\nt-bar\r\nt-bill\r\nt-junction\r\nt-man\r\nt-network\r\nt-scope\r\nt-shaped\r\nt-shirt\r\nt-square\r\nt.b.\r\nta\r\nta'ziyeh\r\ntaal\r\ntab\r\ntabanidae\r\ntabard\r\ntabasco\r\ntabbouleh\r\ntabby\r\ntabernacle\r\ntabernacles\r\ntabernaemontana\r\ntabes\r\ntabi\r\ntabis\r\ntablature\r\ntable\r\ntableau\r\ntablecloth\r\ntablefork\r\ntableland\r\ntablemate\r\ntablespoon\r\ntablespoonful\r\ntablet\r\ntabletop\r\ntableware\r\ntabloid\r\ntaboo\r\ntabooli\r\ntabor\r\ntabora\r\ntaboret\r\ntabour\r\ntabouret\r\ntabriz\r\ntabu\r\ntabuk\r\ntabular\r\ntabularise\r\ntabularize\r\ntabulate\r\ntabulation\r\ntabulator\r\ntabun\r\ntacamahac\r\ntacca\r\ntaccaceae\r\ntach\r\ntacheometer\r\ntachinidae\r\ntachistoscope\r\ntachogram\r\ntachograph\r\ntachometer\r\ntachycardia\r\ntachyglossidae\r\ntachyglossus\r\ntachygraphy\r\ntachylite\r\ntachymeter\r\ntachypleus\r\ntacit\r\ntaciturn\r\ntaciturnity\r\ntaciturnly\r\ntacitus\r\ntack\r\ntacker\r\ntackiness\r\ntacking\r\ntackle\r\ntackler\r\ntacky\r\ntaco\r\ntacoma\r\ntaconite\r\ntact\r\ntactful\r\ntactfully\r\ntactfulness\r\ntactic\r\ntactical\r\ntactician\r\ntactics\r\ntactile\r\ntactility\r\ntactless\r\ntactlessly\r\ntactlessness\r\ntactual\r\ntactually\r\ntad\r\ntadalafil\r\ntadarida\r\ntadjik\r\ntadorna\r\ntadpole\r\ntadpole-like\r\ntadpole-shaped\r\ntadzhik\r\ntadzhikistan\r\ntaegu\r\ntaekwondo\r\ntael\r\ntaenia\r\ntaeniidae\r\ntaffeta\r\ntaffrail\r\ntaffy\r\ntaft\r\ntag\r\ntagalog\r\ntagalong\r\ntagamet\r\ntagasaste\r\ntageteste\r\ntagged\r\ntagger\r\ntagliatelle\r\ntagore\r\ntaguan\r\ntagus\r\ntahini\r\ntahiti\r\ntahitian\r\ntai\r\ntaichi\r\ntaichichuan\r\ntaichung\r\ntaif\r\ntail\r\ntail-flower\r\ntail-shaped\r\ntailback\r\ntailboard\r\ntailcoat\r\ntailed\r\ntailfin\r\ntailflower\r\ntailgate\r\ntailgater\r\ntailing\r\ntailless\r\ntaillight\r\ntaillike\r\ntailor\r\ntailor-made\r\ntailor-make\r\ntailorbird\r\ntailored\r\ntailoring\r\ntailpiece\r\ntailpipe\r\ntailplane\r\ntailrace\r\ntails\r\ntailspin\r\ntailstock\r\ntailwind\r\ntailwort\r\ntaint\r\ntainted\r\ntaipan\r\ntaipeh\r\ntaipei\r\ntaira\r\ntaiwan\r\ntaiwanese\r\ntaiyuan\r\ntajik\r\ntajiki\r\ntajikistan\r\ntajikistani\r\ntaka\r\ntakahe\r\ntakakkaw\r\ntake\r\ntake-away\r\ntake-home\r\ntake-in\r\ntake-up\r\ntakeaway\r\ntakedown\r\ntakelma\r\ntaken\r\ntakeoff\r\ntakeout\r\ntakeover\r\ntaker\r\ntakilman\r\ntakin\r\ntaking\r\ntakings\r\ntala\r\ntalapoin\r\ntalaria\r\ntalbot\r\ntalc\r\ntalcum\r\ntale\r\ntaleban\r\ntalebearer\r\ntalebearing\r\ntalent\r\ntalented\r\ntalentless\r\ntalentlessness\r\ntaleteller\r\ntaliban\r\ntalinum\r\ntalipes\r\ntalipot\r\ntalisman\r\ntalismanic\r\ntalk\r\ntalkative\r\ntalkatively\r\ntalkativeness\r\ntalker\r\ntalkie\r\ntalkily\r\ntalking\r\ntalks\r\ntalky\r\ntall\r\ntall-grass\r\ntall-growing\r\ntall-stalked\r\ntallahassee\r\ntallapoosa\r\ntallboy\r\ntallchief\r\ntalleyrand\r\ntallgrass\r\ntallin\r\ntallinn\r\ntallis\r\ntallish\r\ntallith\r\ntallness\r\ntallow\r\ntally\r\ntallyman\r\ntalmud\r\ntalon\r\ntaloned\r\ntalpidae\r\ntalus\r\ntalwin\r\ntam\r\ntam-o'-shanter\r\ntam-tam\r\ntamable\r\ntamale\r\ntamandu\r\ntamandua\r\ntamanoir\r\ntamarack\r\ntamarao\r\ntamarau\r\ntamaricaceae\r\ntamarillo\r\ntamarin\r\ntamarind\r\ntamarindo\r\ntamarindus\r\ntamarisk\r\ntamarix\r\ntambac\r\ntambala\r\ntambocor\r\ntambour\r\ntambourine\r\ntamburlaine\r\ntame\r\ntameable\r\ntamed\r\ntameness\r\ntamer\r\ntamerlane\r\ntamias\r\ntamiasciurus\r\ntamil\r\ntamm\r\ntammany\r\ntammerfors\r\ntammuz\r\ntammy\r\ntamoxifen\r\ntamp\r\ntampa\r\ntampax\r\ntamper\r\ntampere\r\ntampering\r\ntampico\r\ntampion\r\ntampon\r\ntamponade\r\ntamponage\r\ntamus\r\ntan\r\ntanacetum\r\ntanach\r\ntanager\r\ntanakh\r\ntanbark\r\ntancred\r\ntandearil\r\ntandem\r\ntandoor\r\ntandy\r\ntanekaha\r\ntaney\r\ntang\r\ntanga\r\ntanganyika\r\ntange\r\ntangelo\r\ntangency\r\ntangent\r\ntangential\r\ntangerine\r\ntangibility\r\ntangible\r\ntangibleness\r\ntangier\r\ntangiers\r\ntanginess\r\ntangle\r\ntanglebush\r\ntangled\r\ntango\r\ntangor\r\ntangram\r\ntangshan\r\ntanguy\r\ntangy\r\ntank\r\ntanka\r\ntankage\r\ntankard\r\ntanker\r\ntankful\r\ntanned\r\ntannenberg\r\ntanner\r\ntannery\r\ntannia\r\ntannic\r\ntannin\r\ntanning\r\ntannish\r\ntannoy\r\ntanoan\r\ntansy\r\ntansy-scented\r\ntansy-smelling\r\ntantalise\r\ntantaliser\r\ntantalising\r\ntantalite\r\ntantalization\r\ntantalize\r\ntantalizer\r\ntantalizing\r\ntantalizingly\r\ntantalum\r\ntantalus\r\ntantamount\r\ntantilla\r\ntantra\r\ntantric\r\ntantrik\r\ntantrism\r\ntantrist\r\ntantrum\r\ntanzania\r\ntanzanian\r\ntanzim\r\ntao\r\ntaoism\r\ntaoist\r\ntaos\r\ntap\r\ntap-off\r\ntapa\r\ntapdance\r\ntape\r\ntape-recorded\r\ntaped\r\ntapeline\r\ntapenade\r\ntaper\r\ntapered\r\ntapering\r\ntapestried\r\ntapestry\r\ntapeworm\r\ntaphephobia\r\ntaphouse\r\ntaping\r\ntapioca\r\ntapir\r\ntapiridae\r\ntapirus\r\ntapis\r\ntapotement\r\ntappa\r\ntappan\r\ntapped\r\ntapper\r\ntappet\r\ntapping\r\ntaproom\r\ntaproot\r\ntaps\r\ntapster\r\ntar\r\ntar-and-feather\r\ntar-wood\r\ntara\r\ntarabulus\r\ntaracahitian\r\ntaradiddle\r\ntarahumara\r\ntaraktagenos\r\ntaraktogenos\r\ntarantella\r\ntarantelle\r\ntarantino\r\ntarantism\r\ntarantula\r\ntarawa\r\ntarawa-makin\r\ntaraxacum\r\ntarbell\r\ntarboosh\r\ntardigrada\r\ntardigrade\r\ntardily\r\ntardiness\r\ntardive\r\ntardy\r\ntare\r\ntarget\r\ntarget-hunting\r\ntarheel\r\ntaricha\r\ntariff\r\ntarkovsky\r\ntarmac\r\ntarmacadam\r\ntarn\r\ntarnish\r\ntarnished\r\ntaro\r\ntarot\r\ntarp\r\ntarpan\r\ntarpaulin\r\ntarpon\r\ntarquin\r\ntarquinius\r\ntarradiddle\r\ntarragon\r\ntarred-and-feathered\r\ntarriance\r\ntarrietia\r\ntarry\r\ntarsal\r\ntarsier\r\ntarsiidae\r\ntarsioidea\r\ntarsitis\r\ntarsius\r\ntarsus\r\ntart\r\ntartan\r\ntartar\r\ntartarean\r\ntartaric\r\ntartarus\r\ntartary\r\ntartlet\r\ntartness\r\ntartrate\r\ntartu\r\ntartufe\r\ntartuffe\r\ntarweed\r\ntarwood\r\ntarzan\r\ntashkent\r\ntashmit\r\ntashmitum\r\ntashunca-uitco\r\ntask\r\ntaskent\r\ntaskmaster\r\ntaskmistress\r\ntasman\r\ntasmania\r\ntasmanian\r\ntasse\r\ntassel\r\ntassel-shaped\r\ntasseled\r\ntasselled\r\ntasset\r\ntasso\r\ntaste\r\ntaste-maker\r\ntaste-tester\r\ntastebud\r\ntasteful\r\ntastefully\r\ntastefulness\r\ntasteless\r\ntastelessly\r\ntastelessness\r\ntaster\r\ntastily\r\ntastiness\r\ntasting\r\ntasty\r\ntat\r\ntatahumara\r\ntatar\r\ntatary\r\ntate\r\ntater\r\ntati\r\ntatou\r\ntatouay\r\ntatter\r\ntatterdemalion\r\ntattered\r\ntattily\r\ntatting\r\ntattle\r\ntattler\r\ntattletale\r\ntattling\r\ntattoo\r\ntatty\r\ntatu\r\ntatum\r\ntau\r\ntaunt\r\ntaunting\r\ntauntingly\r\ntauon\r\ntaupe\r\ntaurine\r\ntauromachy\r\ntaurotragus\r\ntaurus\r\ntaut\r\ntauten\r\ntautness\r\ntautog\r\ntautoga\r\ntautogolabrus\r\ntautologic\r\ntautological\r\ntautology\r\ntavern\r\ntaw\r\ntawdrily\r\ntawdriness\r\ntawdry\r\ntawney\r\ntawniness\r\ntawny\r\ntawny-brown\r\ntawny-colored\r\ntawny-coloured\r\ntawse\r\ntax\r\ntax-exempt\r\ntax-free\r\ntax-increase\r\ntaxability\r\ntaxable\r\ntaxaceae\r\ntaxales\r\ntaxation\r\ntaxer\r\ntaxi\r\ntaxicab\r\ntaxidea\r\ntaxidermist\r\ntaxidermy\r\ntaxidriver\r\ntaximan\r\ntaximeter\r\ntaxing\r\ntaxis\r\ntaxistand\r\ntaxiway\r\ntaxman\r\ntaxodiaceae\r\ntaxodium\r\ntaxon\r\ntaxonomer\r\ntaxonomic\r\ntaxonomical\r\ntaxonomist\r\ntaxonomy\r\ntaxophytina\r\ntaxopsida\r\ntaxpayer\r\ntaxpaying\r\ntaxus\r\ntay\r\ntay-sachs\r\ntayalic\r\ntayassu\r\ntayassuidae\r\ntaylor\r\ntayra\r\ntazicef\r\ntb\r\ntbilisi\r\ntc\r\ntce\r\ntchad\r\ntchaikovsky\r\ntchotchke\r\ntcp\r\ntcp/ip\r\ntdt\r\nte\r\ntea\r\ntea-scented\r\ntea-strainer\r\nteaberry\r\nteacake\r\nteacart\r\nteach\r\nteach-in\r\nteachable\r\nteacher\r\nteachership\r\nteaching\r\nteacup\r\nteacupful\r\nteahouse\r\nteak\r\nteakettle\r\nteakwood\r\nteal\r\nteam\r\nteammate\r\nteamster\r\nteamwork\r\nteapot\r\ntear\r\ntearaway\r\nteardrop\r\ntearful\r\ntearfulness\r\nteargas\r\ntearing\r\ntearjerker\r\ntearless\r\ntearoom\r\ntears\r\nteary\r\nteary-eyed\r\nteasdale\r\ntease\r\nteased\r\nteasel\r\nteaser\r\nteashop\r\nteasing\r\nteasingly\r\nteasle\r\nteaspoon\r\nteaspoonful\r\nteat\r\nteatime\r\nteazel\r\ntebaldi\r\ntebet\r\ntec\r\ntech\r\ntechie\r\ntechnetium\r\ntechnical\r\ntechnicality\r\ntechnician\r\ntechnicolor\r\ntechnique\r\ntechno\r\ntechnobabble\r\ntechnocracy\r\ntechnocrat\r\ntechnological\r\ntechnologist\r\ntechnology\r\ntechnophile\r\ntechnophilia\r\ntechnophilic\r\ntechnophobe\r\ntechnophobia\r\ntechnophobic\r\ntechy\r\ntecophilaeacea\r\ntectaria\r\ntectona\r\ntectonic\r\ntectonics\r\ntecumseh\r\ntecumtha\r\nted\r\nteddy\r\ntedious\r\ntediously\r\ntediousness\r\ntedium\r\ntee\r\nteem\r\nteeming\r\nteemingness\r\nteen\r\nteenage\r\nteenaged\r\nteenager\r\nteens\r\nteensy\r\nteensy-weensy\r\nteentsy\r\nteeny\r\nteeny-weeny\r\nteeoff\r\nteepee\r\nteeter\r\nteeter-totter\r\nteeterboard\r\nteetertotter\r\nteeth\r\nteethe\r\nteething\r\nteetotal\r\nteetotaler\r\nteetotaling\r\nteetotalism\r\nteetotalist\r\nteetotaller\r\nteetotum\r\nteff\r\ntefillin\r\nteflon\r\nteg\r\ntegu\r\ntegucigalpa\r\ntegular\r\ntegument\r\nteheran\r\ntehran\r\nteiid\r\nteiidae\r\nteju\r\ntekki\r\ntektite\r\ntelamon\r\ntelanthera\r\ntelco\r\ntelecast\r\ntelecaster\r\ntelecasting\r\ntelecom\r\ntelecommerce\r\ntelecommunicate\r\ntelecommunication\r\ntelecommuting\r\nteleconference\r\nteleconferencing\r\ntelefax\r\ntelefilm\r\ntelegnosis\r\ntelegnostic\r\ntelegram\r\ntelegraph\r\ntelegrapher\r\ntelegraphese\r\ntelegraphic\r\ntelegraphically\r\ntelegraphist\r\ntelegraphy\r\ntelekinesis\r\ntelemann\r\ntelemark\r\ntelemarketing\r\ntelemeter\r\ntelemetered\r\ntelemetry\r\ntelencephalon\r\nteleological\r\nteleologist\r\nteleology\r\nteleost\r\nteleostan\r\nteleostei\r\ntelepathic\r\ntelepathise\r\ntelepathist\r\ntelepathize\r\ntelepathy\r\ntelephone\r\ntelephoner\r\ntelephonic\r\ntelephonist\r\ntelephony\r\ntelephoto\r\ntelephotograph\r\ntelephotography\r\nteleport\r\nteleportation\r\nteleprinter\r\nteleprocessing\r\nteleprompter\r\ntelerobotics\r\ntelescope\r\ntelescoped\r\ntelescopic\r\ntelescopium\r\ntelescopy\r\nteleselling\r\ntelethermometer\r\nteletypewriter\r\ntelevangelism\r\ntelevangelist\r\ntelevise\r\ntelevision\r\nteleworking\r\ntelex\r\ntelfer\r\ntelferage\r\ntelint\r\nteliospore\r\ntell\r\nteller\r\ntellima\r\ntelling\r\ntelltale\r\ntellurian\r\ntelluric\r\ntelluride\r\ntellurium\r\ntellus\r\ntelly\r\ntelocentric\r\ntelomerase\r\ntelomere\r\ntelopea\r\ntelophase\r\ntelosporidia\r\ntelpher\r\ntelpherage\r\ntelsontail\r\ntelugu\r\ntemazepam\r\ntemblor\r\ntemerarious\r\ntemerity\r\ntemnospondyli\r\ntemp\r\ntemper\r\ntempera\r\ntemperament\r\ntemperamental\r\ntemperance\r\ntemperate\r\ntemperately\r\ntemperateness\r\ntemperature\r\ntempered\r\ntempering\r\ntempest\r\ntempest-swept\r\ntempest-tossed\r\ntempest-tost\r\ntempestuous\r\ntempestuousness\r\ntemplar\r\ntemplate\r\ntemple\r\ntemplet\r\ntempletonia\r\ntempo\r\ntemporal\r\ntemporalis\r\ntemporality\r\ntemporalty\r\ntemporarily\r\ntemporariness\r\ntemporary\r\ntemporise\r\ntemporiser\r\ntemporize\r\ntemporizer\r\ntempra\r\ntempt\r\ntemptable\r\ntemptation\r\ntempter\r\ntempting\r\ntemptingly\r\ntemptingness\r\ntemptress\r\ntempura\r\ntemuco\r\ntemujin\r\nten\r\nten-fold\r\nten-membered\r\nten-sided\r\nten-spot\r\nten-strike\r\nten-thousandth\r\ntenability\r\ntenable\r\ntenableness\r\ntenacious\r\ntenaciously\r\ntenaciousness\r\ntenacity\r\ntenancy\r\ntenant\r\ntenanted\r\ntenantry\r\ntench\r\ntend\r\ntendencious\r\ntendency\r\ntendentious\r\ntendentiousness\r\ntender\r\ntenderfoot\r\ntendergreen\r\ntenderhearted\r\ntenderheartedness\r\ntenderisation\r\ntenderise\r\ntenderised\r\ntenderiser\r\ntenderization\r\ntenderize\r\ntenderized\r\ntenderizer\r\ntenderloin\r\ntenderness\r\ntending\r\ntendinitis\r\ntendinous\r\ntendon\r\ntendonitis\r\ntendosynovitis\r\ntendrac\r\ntendril\r\ntendril-climbing\r\ntenebrific\r\ntenebrionid\r\ntenebrionidae\r\ntenebrious\r\ntenebrous\r\ntenement\r\ntenerife\r\ntenesmus\r\ntenet\r\ntenfold\r\ntenge\r\ntenia\r\ntenner\r\ntennessean\r\ntennessee\r\ntenniel\r\ntennis\r\ntenno\r\ntennyson\r\ntenon\r\ntenonitis\r\ntenor\r\ntenoretic\r\ntenorist\r\ntenormin\r\ntenoroon\r\ntenosynovitis\r\ntenpence\r\ntenpin\r\ntenpins\r\ntenpounder\r\ntenrec\r\ntenrecidae\r\ntense\r\ntensed\r\ntenseness\r\ntensile\r\ntensimeter\r\ntensiometer\r\ntension\r\ntensional\r\ntensionless\r\ntensity\r\ntensor\r\ntent\r\ntent-fly\r\ntentacle\r\ntentacled\r\ntentacular\r\ntentaculata\r\ntentative\r\ntenter\r\ntenterhook\r\ntenth\r\ntenthredinidae\r\ntenting\r\ntentmaker\r\ntentorium\r\ntenuity\r\ntenuous\r\ntenure\r\ntenured\r\ntepal\r\ntepee\r\ntephrosia\r\ntepic\r\ntepid\r\ntepidity\r\ntepidly\r\ntepidness\r\ntequila\r\ntera\r\nterabyte\r\nteraflop\r\nterahertz\r\nteras\r\nteratogen\r\nteratogenesis\r\nteratogenic\r\nteratology\r\nteratoma\r\nterazosin\r\nterbinafine\r\nterbium\r\nterce\r\ntercel\r\ntercelet\r\ntercentenary\r\ntercentennial\r\ntercet\r\nterebella\r\nterebellidae\r\nterebinth\r\nteredinid\r\nteredinidae\r\nteredo\r\nterefah\r\nterence\r\nteres\r\nteresa\r\ntereshkova\r\nterete\r\ntergiversate\r\ntergiversation\r\ntergiversator\r\nteriyaki\r\nterm\r\ntermagant\r\ntermer\r\ntermes\r\nterminable\r\nterminal\r\nterminate\r\nterminated\r\ntermination\r\nterminative\r\nterminator\r\nterminological\r\nterminology\r\nterminus\r\ntermite\r\ntermitidae\r\nterms\r\ntern\r\nternary\r\nternate\r\nternion\r\nterpene\r\nterpsichore\r\nterpsichorean\r\nterrace\r\nterrain\r\nterramycin\r\nterrapene\r\nterrapin\r\nterrarium\r\nterrasse\r\nterrene\r\nterreplein\r\nterrestrial\r\nterrestrially\r\nterrible\r\nterribleness\r\nterribly\r\nterrier\r\nterrietia\r\nterrific\r\nterrifically\r\nterrified\r\nterrify\r\nterrifying\r\nterrine\r\nterritorial\r\nterritorialisation\r\nterritorialise\r\nterritoriality\r\nterritorialization\r\nterritorialize\r\nterritory\r\nterror\r\nterror-stricken\r\nterror-struck\r\nterrorisation\r\nterrorise\r\nterrorism\r\nterrorist\r\nterrorization\r\nterrorize\r\nterry\r\nterrycloth\r\nterse\r\ntersely\r\nterseness\r\ntertian\r\ntertiary\r\ntertigravida\r\ntertry\r\ntertullian\r\nterylene\r\nterzetto\r\ntesla\r\ntesselate\r\ntessella\r\ntessellate\r\ntessellated\r\ntessellation\r\ntessera\r\ntessin\r\ntest\r\ntest-cross\r\ntesta\r\ntestacea\r\ntestacean\r\ntestaceous\r\ntestament\r\ntestamentary\r\ntestate\r\ntestator\r\ntestatrix\r\ntestcross\r\ntested\r\ntestee\r\ntester\r\ntesticle\r\ntesticular\r\ntestiere\r\ntestifier\r\ntestify\r\ntestily\r\ntestimonial\r\ntestimony\r\ntestiness\r\ntesting\r\ntestis\r\ntestosterone\r\ntestudinata\r\ntestudines\r\ntestudinidae\r\ntestudo\r\ntesty\r\ntet\r\ntetanic\r\ntetanilla\r\ntetanus\r\ntetany\r\ntetartanopia\r\ntetchiness\r\ntetchy\r\ntete-a-tete\r\nteth\r\ntether\r\ntetherball\r\ntethered\r\ntethyidae\r\ntethys\r\nteton\r\ntetra\r\ntetrabromo-phenolsulfonephthalein\r\ntetracaine\r\ntetrachlorethylene\r\ntetrachloride\r\ntetrachloroethylene\r\ntetrachloromethane\r\ntetraclinis\r\ntetracycline\r\ntetrad\r\ntetrafluoroethylene\r\ntetragon\r\ntetragonal\r\ntetragonia\r\ntetragoniaceae\r\ntetragonurus\r\ntetragram\r\ntetragrammaton\r\ntetrahalide\r\ntetrahedron\r\ntetrahydrocannabinol\r\ntetrahymena\r\ntetraiodothyronine\r\ntetralogy\r\ntetramerous\r\ntetrameter\r\ntetramethyldiarsine\r\ntetrametric\r\ntetraneuris\r\ntetranychid\r\ntetranychidae\r\ntetrao\r\ntetraodontidae\r\ntetraonidae\r\ntetrapod\r\ntetrapturus\r\ntetrasaccharide\r\ntetraskele\r\ntetraskelion\r\ntetrasporangium\r\ntetraspore\r\ntetravalent\r\ntetrazzini\r\ntetri\r\ntetrode\r\ntetrodotoxin\r\ntetrose\r\ntetroxide\r\ntetryl\r\ntetterwort\r\ntettigoniid\r\ntettigoniidae\r\nteucrium\r\nteuton\r\nteutonic\r\nteutonist\r\ntevere\r\ntevet\r\ntewkesbury\r\ntexan\r\ntexarkana\r\ntexas\r\ntext\r\ntext-matching\r\ntextbook\r\ntextile\r\ntextual\r\ntexture\r\ntextured\r\nth\r\nthackeray\r\nthaddaeus\r\nthai\r\nthailand\r\nthalamus\r\nthalarctos\r\nthalassaemia\r\nthalassemia\r\nthalassic\r\nthalassoma\r\nthales\r\nthalia\r\nthaliacea\r\nthalictrum\r\nthalidomide\r\nthalidone\r\nthallium\r\nthalloid\r\nthallophyta\r\nthallophyte\r\nthallophytic\r\nthallus\r\nthalmencephalon\r\nthalweg\r\nthames\r\nthammuz\r\nthamnophilus\r\nthamnophis\r\nthanatology\r\nthanatophobia\r\nthanatopsis\r\nthanatos\r\nthane\r\nthaneship\r\nthank\r\nthankful\r\nthankfulness\r\nthankless\r\nthanks\r\nthanksgiving\r\ntharp\r\nthatch\r\nthatcher\r\nthatcherism\r\nthatcherite\r\nthaumatolatry\r\nthaumaturge\r\nthaumaturgist\r\nthaumaturgy\r\nthaw\r\nthawed\r\nthawing\r\nthb\r\nthc\r\nthd\r\nthea\r\ntheaceae\r\ntheanthropism\r\ntheater\r\ntheatergoer\r\ntheatre\r\ntheatregoer\r\ntheatrical\r\ntheatricality\r\ntheatrically\r\ntheban\r\nthebe\r\nthebes\r\ntheca\r\nthecodont\r\nthecodontia\r\ntheelin\r\ntheft\r\ntheia\r\ntheism\r\ntheist\r\ntheistic\r\ntheistical\r\nthelarche\r\nthelephoraceae\r\nthelypteridaceae\r\nthelypteris\r\nthematic\r\ntheme\r\nthemis\r\nthemistocles\r\nthen\r\nthenal\r\nthenar\r\nthence\r\nthenceforth\r\ntheobid\r\ntheobroma\r\ntheocracy\r\ntheocratic\r\ntheodicy\r\ntheodolite\r\ntheodosius\r\ntheogony\r\ntheologian\r\ntheological\r\ntheologise\r\ntheologiser\r\ntheologist\r\ntheologize\r\ntheologizer\r\ntheology\r\ntheophany\r\ntheophrastaceae\r\ntheophrastus\r\ntheophylline\r\ntheorem\r\ntheoretic\r\ntheoretical\r\ntheoretically\r\ntheoretician\r\ntheorisation\r\ntheorise\r\ntheoriser\r\ntheorist\r\ntheorization\r\ntheorize\r\ntheorizer\r\ntheory\r\ntheory-based\r\ntheosophical\r\ntheosophism\r\ntheosophist\r\ntheosophy\r\ntheoterrorism\r\ntherapeutic\r\ntherapeutical\r\ntherapeutics\r\ntheraphosidae\r\ntherapist\r\ntherapsid\r\ntherapsida\r\ntherapy\r\ntheravada\r\nthere\r\nthereabout\r\nthereabouts\r\nthereafter\r\ntherefore\r\ntherefrom\r\ntherein\r\nthereness\r\nthereof\r\nthereon\r\ntheresa\r\nthereto\r\nthereunder\r\nthereupon\r\ntherewith\r\ntheridiid\r\ntheridiidae\r\ntherm\r\nthermal\r\nthermalgesia\r\nthermel\r\nthermic\r\nthermidor\r\nthermion\r\nthermionic\r\nthermionics\r\nthermistor\r\nthermoacidophile\r\nthermobia\r\nthermocautery\r\nthermochemistry\r\nthermocoagulation\r\nthermocouple\r\nthermodynamic\r\nthermodynamical\r\nthermodynamics\r\nthermoelectric\r\nthermoelectrical\r\nthermoelectricity\r\nthermogram\r\nthermograph\r\nthermography\r\nthermogravimeter\r\nthermogravimetric\r\nthermogravimetry\r\nthermohydrometer\r\nthermohydrometric\r\nthermojunction\r\nthermolabile\r\nthermometer\r\nthermometric\r\nthermometrograph\r\nthermometry\r\nthermonuclear\r\nthermopile\r\nthermoplastic\r\nthermopsis\r\nthermopylae\r\nthermoreceptor\r\nthermoregulator\r\nthermos\r\nthermoset\r\nthermosetting\r\nthermosphere\r\nthermostat\r\nthermostated\r\nthermostatic\r\nthermostatics\r\nthermotherapy\r\nthermotropism\r\ntheropod\r\ntheropoda\r\nthesaurus\r\ntheseus\r\nthesis\r\nthespesia\r\nthespian\r\nthespis\r\nthessalia\r\nthessalian\r\nthessalonian\r\nthessalonica\r\nthessaloniki\r\nthessaly\r\ntheta\r\nthetis\r\ntheurgy\r\nthevetia\r\nthiabendazole\r\nthiamin\r\nthiamine\r\nthiazide\r\nthiazine\r\nthibet\r\nthick\r\nthick-billed\r\nthick-bodied\r\nthick-branched\r\nthick-haired\r\nthick-knee\r\nthick-lipped\r\nthick-skinned\r\nthick-skulled\r\nthick-stemmed\r\nthicken\r\nthickened\r\nthickener\r\nthickening\r\nthicket\r\nthicket-forming\r\nthickhead\r\nthickheaded\r\nthickly\r\nthickness\r\nthickset\r\nthickspread\r\nthief\r\nthielavia\r\nthieve\r\nthievery\r\nthieving\r\nthievish\r\nthievishness\r\nthigh\r\nthigh-slapper\r\nthighbone\r\nthill\r\nthimble\r\nthimble-shaped\r\nthimbleberry\r\nthimbleful\r\nthimblerig\r\nthimbleweed\r\nthimerosal\r\nthin\r\nthin-bodied\r\nthin-shelled\r\nthin-skinned\r\nthing\r\nthing-in-itself\r\nthingamabob\r\nthingamajig\r\nthingmabob\r\nthingmajig\r\nthings\r\nthingumabob\r\nthingumajig\r\nthingummy\r\nthink\r\nthinkable\r\nthinker\r\nthinking\r\nthinly\r\nthinned\r\nthinner\r\nthinness\r\nthinning\r\nthiobacillus\r\nthiobacteria\r\nthiobacteriaceae\r\nthiocyanate\r\nthiodiphenylamine\r\nthioguanine\r\nthiopental\r\nthioridazine\r\nthiosulfil\r\nthiotepa\r\nthiothixene\r\nthiouracil\r\nthird\r\nthird-dimensional\r\nthird-dimensionality\r\nthird-rate\r\nthird-rater\r\nthird-year\r\nthirdhand\r\nthirdly\r\nthirst\r\nthirster\r\nthirstily\r\nthirstiness\r\nthirsty\r\nthirteen\r\nthirteenth\r\nthirties\r\nthirtieth\r\nthirty\r\nthirty-eight\r\nthirty-eighth\r\nthirty-fifth\r\nthirty-first\r\nthirty-five\r\nthirty-four\r\nthirty-fourth\r\nthirty-nine\r\nthirty-ninth\r\nthirty-one\r\nthirty-second\r\nthirty-seven\r\nthirty-seventh\r\nthirty-six\r\nthirty-sixth\r\nthirty-something\r\nthirty-third\r\nthirty-three\r\nthirty-two\r\nthistle\r\nthistledown\r\nthistlelike\r\nthither\r\nthlaspi\r\nthm\r\ntho\r\nthole\r\ntholepin\r\nthomas\r\nthomism\r\nthomomys\r\nthompson\r\nthomson\r\nthong\r\nthor\r\nthoracentesis\r\nthoracic\r\nthoracocentesis\r\nthoracotomy\r\nthorax\r\nthorazine\r\nthoreau\r\nthoreauvian\r\nthoriate\r\nthoriated\r\nthorite\r\nthorium\r\nthorium-228\r\nthorn\r\nthorn-tipped\r\nthornbill\r\nthorndike\r\nthorniness\r\nthornless\r\nthornton\r\nthorny\r\nthorough\r\nthoroughbred\r\nthoroughfare\r\nthoroughgoing\r\nthoroughly\r\nthoroughness\r\nthoroughwort\r\nthorpe\r\nthorshavn\r\nthortveitite\r\nthoth\r\nthou\r\nthought\r\nthought-image\r\nthought-provoking\r\nthought-reader\r\nthoughtful\r\nthoughtfully\r\nthoughtfulness\r\nthoughtless\r\nthoughtlessly\r\nthoughtlessness\r\nthousand\r\nthousand-fold\r\nthousandth\r\nthrace\r\nthracian\r\nthraco-phrygian\r\nthraldom\r\nthrall\r\nthralldom\r\nthrash\r\nthrasher\r\nthrashing\r\nthraupidae\r\nthread\r\nthread-fish\r\nthreadbare\r\nthreaded\r\nthreader\r\nthreadfin\r\nthreadfish\r\nthreadlike\r\nthreads\r\nthreadworm\r\nthready\r\nthreat\r\nthreaten\r\nthreatened\r\nthreatening\r\nthreateningly\r\nthree\r\nthree-bagger\r\nthree-cornered\r\nthree-d\r\nthree-decker\r\nthree-dimensional\r\nthree-dimensionality\r\nthree-figure\r\nthree-fold\r\nthree-fourths\r\nthree-hitter\r\nthree-hundredth\r\nthree-lane\r\nthree-legged\r\nthree-lipped\r\nthree-lobed\r\nthree-membered\r\nthree-needled\r\nthree-party\r\nthree-petaled\r\nthree-petalled\r\nthree-piece\r\nthree-ply\r\nthree-pronged\r\nthree-quarter\r\nthree-quarter-length\r\nthree-seeded\r\nthree-sided\r\nthree-way\r\nthree-wheel\r\nthree-wheeled\r\nthree-year-old\r\nthreefold\r\nthreepence\r\nthreepenny\r\nthreescore\r\nthreesome\r\nthrenody\r\nthreonine\r\nthresh\r\nthresher\r\nthreshing\r\nthreshold\r\nthreskiornis\r\nthreskiornithidae\r\nthrift\r\nthriftiness\r\nthriftless\r\nthriftlessness\r\nthriftshop\r\nthrifty\r\nthrill\r\nthrilled\r\nthriller\r\nthrillful\r\nthrilling\r\nthrinax\r\nthrip\r\nthripid\r\nthripidae\r\nthrips\r\nthrive\r\nthriving\r\nthroat\r\nthroated\r\nthroatwort\r\nthroaty\r\nthrob\r\nthrobbing\r\nthroe\r\nthroes\r\nthrombasthenia\r\nthrombectomy\r\nthrombin\r\nthrombocyte\r\nthrombocytopenia\r\nthrombocytosis\r\nthromboembolism\r\nthrombokinase\r\nthrombolysis\r\nthrombolytic\r\nthrombopenia\r\nthrombophlebitis\r\nthromboplastin\r\nthrombose\r\nthrombosed\r\nthrombosis\r\nthrombus\r\nthrone\r\nthrong\r\nthronged\r\nthrostle\r\nthrottle\r\nthrottlehold\r\nthrottler\r\nthrottling\r\nthrough\r\nthroughout\r\nthroughput\r\nthroughway\r\nthrow\r\nthrow-in\r\nthrow-weight\r\nthrowaway\r\nthrowback\r\nthrower\r\nthrown\r\nthrown-away\r\nthrowster\r\nthrum\r\nthrush\r\nthrush-like\r\nthrust\r\nthruster\r\nthrusting\r\nthruway\r\nthryothorus\r\nthucydides\r\nthud\r\nthudding\r\nthug\r\nthuggee\r\nthuggery\r\nthuja\r\nthujopsis\r\nthule\r\nthulium\r\nthumb\r\nthumbed\r\nthumbhole\r\nthumbnail\r\nthumbnut\r\nthumbprint\r\nthumbscrew\r\nthumbstall\r\nthumbtack\r\nthump\r\nthumping\r\nthunbergia\r\nthunder\r\nthunderbird\r\nthunderbolt\r\nthunderclap\r\nthundercloud\r\nthunderer\r\nthunderhead\r\nthundering\r\nthunderous\r\nthundershower\r\nthunderstorm\r\nthunderstruck\r\nthundery\r\nthunk\r\nthunnus\r\nthurber\r\nthurible\r\nthurifer\r\nthurify\r\nthuringia\r\nthursday\r\nthus\r\nthusly\r\nthwack\r\nthwart\r\nthwarted\r\nthwarter\r\nthwarting\r\nthwartwise\r\nthylacine\r\nthylacinus\r\nthylogale\r\nthyme\r\nthymelaeaceae\r\nthymelaeales\r\nthymidine\r\nthymine\r\nthymol\r\nthymosin\r\nthymus\r\nthyreophora\r\nthyreophoran\r\nthyrocalcitonin\r\nthyroglobulin\r\nthyroid\r\nthyroidal\r\nthyroidectomy\r\nthyroiditis\r\nthyromegaly\r\nthyronine\r\nthyroprotein\r\nthyrotoxic\r\nthyrotoxicosis\r\nthyrotrophin\r\nthyrotropin\r\nthyroxin\r\nthyroxine\r\nthyrse\r\nthyrsopteris\r\nthyrsus\r\nthysanocarpus\r\nthysanopter\r\nthysanoptera\r\nthysanopteron\r\nthysanura\r\nthysanuron\r\nthz\r\nti\r\ntia\r\ntiamat\r\ntianjin\r\ntiara\r\ntiarella\r\ntiber\r\ntiberius\r\ntibet\r\ntibetan\r\ntibeto-burman\r\ntibia\r\ntibial\r\ntibialis\r\ntibicen\r\ntibur\r\ntic\r\ntic-tac-toe\r\ntical\r\ntichodroma\r\ntichodrome\r\nticino\r\ntick\r\ntick-tack-toe\r\ntick-weed\r\nticker\r\nticket\r\nticket-of-leave\r\nticking\r\ntickle\r\ntickler\r\ntickling\r\nticklish\r\ntickseed\r\nticktack\r\nticktacktoe\r\nticktacktoo\r\nticktock\r\ntickweed\r\nticonderoga\r\ntictac\r\ntidal\r\ntidbit\r\ntiddler\r\ntiddley\r\ntiddly\r\ntiddlywinks\r\ntide\r\ntideland\r\ntidemark\r\ntidewater\r\ntideway\r\ntidiness\r\ntidings\r\ntidy\r\ntidytips\r\ntie\r\ntie-dye\r\ntie-in\r\ntie-on\r\ntie-up\r\ntieback\r\ntiebreaker\r\ntied\r\ntien-pao\r\ntientsin\r\ntiepin\r\ntiepolo\r\ntier\r\ntierce\r\ntiercel\r\ntiered\r\ntiff\r\ntiffany\r\ntiffin\r\ntiflis\r\ntiger\r\ntiger-striped\r\ntigerish\r\ntigers\r\ntight\r\ntight-fitting\r\ntight-knit\r\ntight-laced\r\ntighten\r\ntightened\r\ntightening\r\ntightfisted\r\ntightfistedness\r\ntightlipped\r\ntightness\r\ntightrope\r\ntights\r\ntightwad\r\ntiglon\r\ntigon\r\ntigress\r\ntigris\r\ntijuana\r\ntike\r\ntilapia\r\ntilde\r\ntilden\r\ntile\r\ntiled\r\ntilefish\r\ntiler\r\ntilia\r\ntiliaceae\r\ntiling\r\ntiliomycetes\r\ntill\r\ntillable\r\ntillage\r\ntillandsia\r\ntilled\r\ntiller\r\ntilletia\r\ntilletiaceae\r\ntillich\r\ntilling\r\ntilt\r\ntilted\r\ntilter\r\ntilth\r\ntiltyard\r\ntimalia\r\ntimaliidae\r\ntimbale\r\ntimber\r\ntimber-framed\r\ntimbered\r\ntimberland\r\ntimberline\r\ntimberman\r\ntimbre\r\ntimbrel\r\ntimbuktu\r\ntime\r\ntime-ball\r\ntime-consuming\r\ntime-fuse\r\ntime-honored\r\ntime-honoured\r\ntime-out\r\ntime-release\r\ntime-switch\r\ntime-tested\r\ntimecard\r\ntimed\r\ntimekeeper\r\ntimekeeping\r\ntimeless\r\ntimelessness\r\ntimeline\r\ntimeliness\r\ntimely\r\ntimepiece\r\ntimer\r\ntimes\r\ntimesaving\r\ntimeserver\r\ntimeserving\r\ntimetable\r\ntimework\r\ntimeworn\r\ntimgad\r\ntimid\r\ntimidity\r\ntimidly\r\ntimidness\r\ntimimoun\r\ntiming\r\ntimolol\r\ntimor\r\ntimorese\r\ntimorous\r\ntimorously\r\ntimorousness\r\ntimothy\r\ntimpani\r\ntimpanist\r\ntimucu\r\ntimur\r\ntin\r\ntin-plating\r\ntinamidae\r\ntinamiformes\r\ntinamou\r\ntinbergen\r\ntinca\r\ntinct\r\ntincture\r\ntindal\r\ntindale\r\ntinder\r\ntinderbox\r\ntine\r\ntinea\r\ntined\r\ntineid\r\ntineidae\r\ntineoid\r\ntineoidea\r\ntineola\r\ntinfoil\r\nting\r\ntinge\r\ntingidae\r\ntingle\r\ntingling\r\ntininess\r\ntink\r\ntinker\r\ntinkerer\r\ntinkle\r\ntinkling\r\ntinkly\r\ntinned\r\ntinner\r\ntinning\r\ntinnitus\r\ntinny\r\ntinpot\r\ntinsel\r\ntinseled\r\ntinselly\r\ntinsmith\r\ntinsnips\r\ntint\r\ntintack\r\ntinter\r\ntinting\r\ntintinnabulate\r\ntintinnabulation\r\ntintometer\r\ntintoretto\r\ntinware\r\ntiny\r\ntip\r\ntip-and-run\r\ntip-off\r\ntip-tilted\r\ntip-up\r\ntipi\r\ntipped\r\ntipper\r\ntippet\r\ntipple\r\ntippler\r\ntippy\r\ntippytoe\r\ntipsiness\r\ntipstaff\r\ntipster\r\ntipsy\r\ntiptoe\r\ntiptop\r\ntipu\r\ntipuana\r\ntipulidae\r\ntirade\r\ntiramisu\r\ntirana\r\ntire\r\ntired\r\ntiredly\r\ntiredness\r\ntireless\r\ntirelessly\r\ntirelessness\r\ntiresias\r\ntiresome\r\ntiresomely\r\ntiresomeness\r\ntiring\r\ntiro\r\ntirol\r\ntisane\r\ntishri\r\ntisiphone\r\ntissue\r\ntit\r\ntit-tat-toe\r\ntitan\r\ntitaness\r\ntitania\r\ntitanic\r\ntitanium\r\ntitanosaur\r\ntitanosaurian\r\ntitanosauridae\r\ntitanosaurus\r\ntitbit\r\ntiter\r\ntitfer\r\ntithe\r\ntither\r\ntithonia\r\ntiti\r\ntitian\r\ntitillate\r\ntitillated\r\ntitillating\r\ntitillation\r\ntitivate\r\ntitivation\r\ntitlark\r\ntitle\r\ntitle-holder\r\ntitled\r\ntitmouse\r\ntito\r\ntitrate\r\ntitration\r\ntitrator\r\ntitre\r\ntitter\r\ntitterer\r\ntittering\r\ntittivate\r\ntittivation\r\ntittle\r\ntittle-tattle\r\ntittup\r\ntitty\r\ntitular\r\ntitulary\r\ntitus\r\ntiu\r\ntivoli\r\ntiyin\r\ntizzy\r\ntko\r\ntl\r\ntlc\r\ntlingit\r\ntm\r\ntmv\r\ntn\r\ntnf\r\ntnt\r\nto-do\r\ntoad\r\ntoad-in-the-hole\r\ntoadfish\r\ntoadflax\r\ntoadshade\r\ntoadstool\r\ntoady\r\ntoadyish\r\ntoast\r\ntoasted\r\ntoaster\r\ntoasting\r\ntoastmaster\r\ntoastrack\r\ntobacco\r\ntobacconist\r\ntobago\r\ntobagonian\r\ntobey\r\ntobin\r\ntobit\r\ntoboggan\r\ntobogganing\r\ntobogganist\r\ntobramycin\r\ntoby\r\ntocainide\r\ntocantins\r\ntoccata\r\ntocharian\r\ntocktact\r\ntocology\r\ntocopherol\r\ntocqueville\r\ntocsin\r\ntod\r\ntoda\r\ntoday\r\ntodd\r\ntoddle\r\ntoddler\r\ntoddy\r\ntodea\r\ntodidae\r\ntodus\r\ntody\r\ntoe\r\ntoe-in\r\ntoea\r\ntoecap\r\ntoed\r\ntoehold\r\ntoeless\r\ntoenail\r\ntoetoe\r\ntoff\r\ntoffee\r\ntoffee-nosed\r\ntoffy\r\ntofieldia\r\ntofranil\r\ntofu\r\ntog\r\ntoga\r\ntogaviridae\r\ntogether\r\ntogetherness\r\ntogged\r\ntoggle\r\ntogo\r\ntogolese\r\ntogs\r\ntoil\r\ntoiler\r\ntoilet\r\ntoilet-train\r\ntoilet-trained\r\ntoiletry\r\ntoilette\r\ntoiling\r\ntoilsome\r\ntoilsomeness\r\ntoitoi\r\ntojo\r\ntokamak\r\ntokay\r\ntoke\r\ntoken\r\ntokenish\r\ntokio\r\ntoklas\r\ntokyo\r\ntolazamide\r\ntolazoline\r\ntolbooth\r\ntolbukhin\r\ntolbutamide\r\ntole\r\ntolectin\r\ntoledo\r\ntolerable\r\ntolerably\r\ntolerance\r\ntolerant\r\ntolerantly\r\ntolerate\r\ntoleration\r\ntolinase\r\ntolkien\r\ntoll\r\ntoll-free\r\ntollbar\r\ntollbooth\r\ntoller\r\ntollgate\r\ntollgatherer\r\ntollhouse\r\ntollkeeper\r\ntollman\r\ntollon\r\ntolmiea\r\ntolstoy\r\ntoltec\r\ntolu\r\ntoluene\r\ntolypeutes\r\ntom\r\ntom-tom\r\ntomahawk\r\ntomalley\r\ntomatillo\r\ntomato\r\ntomato-like\r\ntomb\r\ntombac\r\ntombak\r\ntombaugh\r\ntombigbee\r\ntombola\r\ntomboy\r\ntomboyish\r\ntomboyishness\r\ntombstone\r\ntomcat\r\ntome\r\ntomentose\r\ntomentous\r\ntomentum\r\ntomfool\r\ntomfoolery\r\ntomistoma\r\ntommyrot\r\ntomograph\r\ntomography\r\ntomorrow\r\ntompion\r\ntomtate\r\ntomtit\r\nton\r\ntonal\r\ntonality\r\ntone\r\ntone-beginning\r\ntone-deaf\r\ntoned\r\ntoneless\r\ntoner\r\ntonga\r\ntongan\r\ntongs\r\ntongue\r\ntongue-fish\r\ntongue-flower\r\ntongue-in-cheek\r\ntongue-lashing\r\ntongue-shaped\r\ntongue-tie\r\ntongue-tied\r\ntongued\r\ntonguefish\r\ntongueflower\r\ntongueless\r\ntonguelike\r\ntonic\r\ntonicity\r\ntonight\r\ntonnage\r\ntonne\r\ntonocard\r\ntonometer\r\ntons\r\ntonsil\r\ntonsilla\r\ntonsillectomy\r\ntonsillitis\r\ntonsorial\r\ntonsure\r\ntonsured\r\ntontine\r\ntonus\r\ntoo\r\ntoo-careful\r\ntoo-generous\r\ntoo-greedy\r\ntool\r\ntoolbox\r\ntoolhouse\r\ntoolmaker\r\ntoolshed\r\ntoon\r\ntoona\r\ntooshie\r\ntoot\r\ntooth\r\ntoothache\r\ntoothbrush\r\ntoothed\r\ntoothless\r\ntoothlike\r\ntoothpaste\r\ntoothpick\r\ntoothpowder\r\ntoothsome\r\ntoothsomeness\r\ntoothwort\r\ntoothy\r\ntootle\r\ntop\r\ntop-down\r\ntop-flight\r\ntop-grade\r\ntop-heavy\r\ntop-hole\r\ntop-quality\r\ntop-secret\r\ntop-up\r\ntopaz\r\ntopcoat\r\ntopdress\r\ntope\r\ntopee\r\ntopeka\r\ntoper\r\ntopgallant\r\ntophus\r\ntopi\r\ntopiary\r\ntopic\r\ntopical\r\ntopicality\r\ntopicalization\r\ntopicalize\r\ntopically\r\ntopknot\r\ntopknotted\r\ntopless\r\ntopmast\r\ntopminnow\r\ntopmost\r\ntopnotch\r\ntopognosia\r\ntopognosis\r\ntopographic\r\ntopographical\r\ntopography\r\ntopolatry\r\ntopologic\r\ntopological\r\ntopology\r\ntoponomy\r\ntoponym\r\ntoponymy\r\ntopos\r\ntopped\r\ntopper\r\ntopping\r\ntoppingly\r\ntopple\r\ntops\r\ntopsail\r\ntopside\r\ntopsoil\r\ntopspin\r\ntopsy-turvily\r\ntopsy-turvy\r\ntopsy-turvydom\r\ntopsy-turvyness\r\ntopv\r\ntoque\r\ntor\r\ntoradol\r\ntorah\r\ntorch\r\ntorchbearer\r\ntorchlight\r\ntore\r\ntoreador\r\ntorero\r\ntorino\r\ntorment\r\ntormented\r\ntormenter\r\ntormentor\r\ntorn\r\ntornado\r\ntornillo\r\ntorodal\r\ntoroid\r\ntoroidal\r\ntoronto\r\ntorpedinidae\r\ntorpediniformes\r\ntorpedo\r\ntorpid\r\ntorpidity\r\ntorpidly\r\ntorpidness\r\ntorpor\r\ntorque\r\ntorquemada\r\ntorr\r\ntorrent\r\ntorrential\r\ntorreon\r\ntorreya\r\ntorricelli\r\ntorrid\r\ntorridity\r\ntorsion\r\ntorsk\r\ntorso\r\ntort\r\ntort-feasor\r\ntorte\r\ntortellini\r\ntortfeasor\r\ntorticollis\r\ntortilla\r\ntortious\r\ntortoise\r\ntortoiseshell\r\ntortoiseshell-cat\r\ntortricid\r\ntortricidae\r\ntortrix\r\ntortuosity\r\ntortuous\r\ntortuousness\r\ntorture\r\ntortured\r\ntorturer\r\ntorturesome\r\ntorturing\r\ntorturous\r\ntorturously\r\ntorulose\r\ntorus\r\ntory\r\ntoscana\r\ntoscanini\r\ntosh\r\ntosk\r\ntoss\r\ntoss-up\r\ntosser\r\ntossing\r\ntossup\r\ntostada\r\ntot\r\ntotal\r\ntotaled\r\ntotalisator\r\ntotalise\r\ntotaliser\r\ntotalism\r\ntotalistic\r\ntotalitarian\r\ntotalitarianism\r\ntotality\r\ntotalizator\r\ntotalize\r\ntotalizer\r\ntotally\r\ntotara\r\ntote\r\ntotem\r\ntotemic\r\ntotemism\r\ntotemist\r\ntoter\r\ntotipotence\r\ntotipotency\r\ntotipotent\r\ntotter\r\ntotterer\r\ntottering\r\ntottery\r\ntoucan\r\ntoucanet\r\ntouch\r\ntouch-and-go\r\ntouch-me-not\r\ntouch-type\r\ntouch-typist\r\ntouchable\r\ntouchback\r\ntouchdown\r\ntouched\r\ntoucher\r\ntouchiness\r\ntouching\r\ntouchingly\r\ntouchline\r\ntouchscreen\r\ntouchstone\r\ntouchwood\r\ntouchy\r\ntouchy-feely\r\ntough\r\ntough-minded\r\ntough-skinned\r\ntoughen\r\ntoughened\r\ntoughie\r\ntoughness\r\ntoulon\r\ntoulouse\r\ntoulouse-lautrec\r\ntoupe\r\ntoupee\r\ntoupeed\r\ntour\r\ntouraco\r\ntourer\r\ntourette\r\ntouring\r\ntourism\r\ntourist\r\ntouristed\r\ntouristry\r\ntouristy\r\ntourmaline\r\ntournament\r\ntournedos\r\ntourney\r\ntourniquet\r\ntours\r\ntousle\r\ntousled\r\ntout\r\ntouter\r\ntovarich\r\ntovarisch\r\ntow\r\ntowage\r\ntowboat\r\ntowel\r\ntoweling\r\ntowelling\r\ntower\r\ntowering\r\ntowhead\r\ntowheaded\r\ntowhee\r\ntowline\r\ntown\r\ntownee\r\ntowner\r\ntownie\r\ntownsend\r\ntownsendia\r\ntownsfolk\r\ntownship\r\ntownsman\r\ntownspeople\r\ntowny\r\ntowpath\r\ntowrope\r\ntoxaemia\r\ntoxemia\r\ntoxic\r\ntoxicant\r\ntoxicity\r\ntoxicodendron\r\ntoxicologic\r\ntoxicological\r\ntoxicologist\r\ntoxicology\r\ntoxin\r\ntoxoid\r\ntoxoplasmosis\r\ntoxostoma\r\ntoxotes\r\ntoxotidae\r\ntoy\r\ntoying\r\ntoynbee\r\ntoyohashi\r\ntoyon\r\ntoyonaki\r\ntoyota\r\ntoyshop\r\ntpn\r\ntra-la\r\ntra-la-la\r\ntrabeate\r\ntrabeated\r\ntrabecula\r\ntrabecular\r\ntrabeculate\r\ntrablous\r\ntrace\r\ntraceable\r\ntraced\r\ntracer\r\ntracery\r\ntrachea\r\ntracheal\r\ntracheid\r\ntracheitis\r\ntrachelospermum\r\ntracheobronchitis\r\ntracheophyta\r\ntracheophyte\r\ntracheostomy\r\ntracheotomy\r\ntrachinotus\r\ntrachipteridae\r\ntrachipterus\r\ntrachodon\r\ntrachodont\r\ntrachoma\r\ntrachurus\r\ntracing\r\ntrack\r\ntrackable\r\ntrackball\r\ntracked\r\ntracker\r\ntracking\r\ntracklayer\r\ntrackless\r\ntract\r\ntractability\r\ntractable\r\ntractableness\r\ntractarian\r\ntractarianism\r\ntractile\r\ntraction\r\ntractive\r\ntractor\r\ntracy\r\ntrad\r\ntrade\r\ntrade-in\r\ntrade-last\r\ntrade-off\r\ntradecraft\r\ntraded\r\ntrademark\r\ntrademarked\r\ntradeoff\r\ntrader\r\ntradescant\r\ntradescantia\r\ntradesman\r\ntradespeople\r\ntrading\r\ntradition\r\ntraditional\r\ntraditionalism\r\ntraditionalist\r\ntraditionalistic\r\ntraditionality\r\ntraduce\r\ntraducement\r\ntraducer\r\ntrafalgar\r\ntraffic\r\ntrafficator\r\ntrafficker\r\ntragacanth\r\ntragedian\r\ntragedienne\r\ntragedy\r\ntragelaphus\r\ntragic\r\ntragical\r\ntragicomedy\r\ntragicomic\r\ntragicomical\r\ntragopan\r\ntragopogon\r\ntragulidae\r\ntragulus\r\ntragus\r\ntrail\r\ntrailblazer\r\ntrailer\r\ntrailhead\r\ntrailing\r\ntrain\r\ntrainband\r\ntrainbandsman\r\ntrainbearer\r\ntrained\r\ntrainee\r\ntraineeship\r\ntrainer\r\ntraining\r\ntrainload\r\ntrainman\r\ntrainmaster\r\ntraipse\r\ntrait\r\ntraitor\r\ntraitorous\r\ntraitorously\r\ntraitorousness\r\ntraitress\r\ntrajan\r\ntrajectory\r\ntralatitious\r\ntram\r\ntramcar\r\ntramline\r\ntrammel\r\ntramontana\r\ntramontane\r\ntramp\r\ntramper\r\ntrample\r\ntrampled\r\ntrampler\r\ntrampling\r\ntrampoline\r\ntramway\r\ntrance\r\ntrancelike\r\ntranche\r\ntrandate\r\ntranquil\r\ntranquilising\r\ntranquility\r\ntranquilize\r\ntranquilizer\r\ntranquilizing\r\ntranquillise\r\ntranquilliser\r\ntranquillity\r\ntranquillize\r\ntranquillizer\r\ntransact\r\ntransactinide\r\ntransaction\r\ntransactions\r\ntransactor\r\ntransalpine\r\ntransaminase\r\ntransaminate\r\ntransamination\r\ntranscaucasia\r\ntranscend\r\ntranscendence\r\ntranscendency\r\ntranscendent\r\ntranscendental\r\ntranscendentalism\r\ntranscendentalist\r\ntranscontinental\r\ntranscribe\r\ntranscribed\r\ntranscriber\r\ntranscript\r\ntranscriptase\r\ntranscription\r\ntranscultural\r\ntranscutaneous\r\ntransdermal\r\ntransdermic\r\ntransduce\r\ntransducer\r\ntransduction\r\ntransect\r\ntransept\r\ntranseunt\r\ntransexual\r\ntransfer\r\ntransferability\r\ntransferable\r\ntransferase\r\ntransferee\r\ntransference\r\ntransferer\r\ntransferor\r\ntransferrable\r\ntransferral\r\ntransferrer\r\ntransferrin\r\ntransfiguration\r\ntransfigure\r\ntransfix\r\ntransfixed\r\ntransform\r\ntransformable\r\ntransformation\r\ntransformed\r\ntransformer\r\ntransfuse\r\ntransfusion\r\ntransgender\r\ntransgendered\r\ntransgress\r\ntransgression\r\ntransgressor\r\ntransience\r\ntransiency\r\ntransient\r\ntransistor\r\ntransistorise\r\ntransistorised\r\ntransistorize\r\ntransistorized\r\ntransit\r\ntransition\r\ntransitional\r\ntransitive\r\ntransitively\r\ntransitiveness\r\ntransitivise\r\ntransitivity\r\ntransitivize\r\ntransitoriness\r\ntransitory\r\ntranslatable\r\ntranslate\r\ntranslation\r\ntranslational\r\ntranslator\r\ntransliterate\r\ntransliteration\r\ntranslocate\r\ntranslocation\r\ntranslucence\r\ntranslucency\r\ntranslucent\r\ntranslunar\r\ntranslunary\r\ntransmigrante\r\ntransmigrate\r\ntransmigration\r\ntransmissible\r\ntransmission\r\ntransmit\r\ntransmittable\r\ntransmittal\r\ntransmittance\r\ntransmitted\r\ntransmitter\r\ntransmitting\r\ntransmogrification\r\ntransmogrify\r\ntransmontane\r\ntransmundane\r\ntransmutability\r\ntransmutable\r\ntransmutation\r\ntransmute\r\ntransnational\r\ntransoceanic\r\ntransom\r\ntransonic\r\ntransparence\r\ntransparency\r\ntransparent\r\ntransparentness\r\ntranspirate\r\ntranspiration\r\ntranspire\r\ntransplacental\r\ntransplant\r\ntransplantable\r\ntransplantation\r\ntransplanter\r\ntransplanting\r\ntranspolar\r\ntransponder\r\ntransport\r\ntransportable\r\ntransportation\r\ntransporter\r\ntransposability\r\ntransposable\r\ntranspose\r\ntransposed\r\ntransposition\r\ntransposon\r\ntranssexual\r\ntranssexualism\r\ntransship\r\ntransshipment\r\ntransubstantiate\r\ntransubstantiation\r\ntransudate\r\ntransudation\r\ntransude\r\ntransuranic\r\ntransvaal\r\ntransversal\r\ntransversally\r\ntransverse\r\ntransversely\r\ntransvestic\r\ntransvestism\r\ntransvestite\r\ntransvestitism\r\ntranylcypromine\r\ntrap\r\ntrapa\r\ntrapaceae\r\ntrapeze\r\ntrapezium\r\ntrapezius\r\ntrapezohedron\r\ntrapezoid\r\ntrapezoidal\r\ntrapped\r\ntrapper\r\ntrapping\r\ntrappings\r\ntrappist\r\ntrapshooter\r\ntrapshooting\r\ntrash\r\ntrashiness\r\ntrashy\r\ntrasimeno\r\ntraubel\r\ntrauma\r\ntraumatic\r\ntraumatise\r\ntraumatize\r\ntraumatology\r\ntraumatophobia\r\ntrautvetteria\r\ntravail\r\ntrave\r\ntravel\r\ntravel-soiled\r\ntravel-stained\r\ntravel-worn\r\ntravelable\r\ntraveled\r\ntraveler\r\ntraveling\r\ntravelled\r\ntraveller\r\ntravelling\r\ntravelog\r\ntravelogue\r\ntraversable\r\ntraversal\r\ntraverse\r\ntraverser\r\ntravesty\r\ntrawl\r\ntrawler\r\ntray\r\ntrazodone\r\ntreacherous\r\ntreacherously\r\ntreachery\r\ntreacle\r\ntreacly\r\ntread\r\ntread-softly\r\ntread-wheel\r\ntreadle\r\ntreadmill\r\ntreadwheel\r\ntreason\r\ntreasonable\r\ntreasonably\r\ntreasonist\r\ntreasonous\r\ntreasure\r\ntreasured\r\ntreasurer\r\ntreasurership\r\ntreasuries\r\ntreasury\r\ntreat\r\ntreated\r\ntreater\r\ntreatise\r\ntreatment\r\ntreaty\r\ntreble\r\ntrebuchet\r\ntrebucket\r\ntree\r\ntree-frog\r\ntree-living\r\ntree-shaped\r\ntree-worship\r\ntreed\r\ntreehopper\r\ntreeless\r\ntreelet\r\ntreelike\r\ntreenail\r\ntreetop\r\ntref\r\ntrefoil\r\ntreillage\r\ntrek\r\ntrekker\r\ntrellis\r\ntrema\r\ntrematoda\r\ntrematode\r\ntremble\r\ntrembler\r\ntrembles\r\ntrembling\r\ntremella\r\ntremellaceae\r\ntremellales\r\ntremendous\r\ntremendously\r\ntremolite\r\ntremolo\r\ntremor\r\ntremulous\r\ntrenail\r\ntrench\r\ntrenchancy\r\ntrenchant\r\ntrencher\r\ntrencherman\r\ntrend\r\ntrend-setter\r\ntrend-setting\r\ntrendsetting\r\ntrendy\r\ntrent\r\ntrental\r\ntrente-et-quarante\r\ntrento\r\ntrenton\r\ntrepan\r\ntrepang\r\ntrephination\r\ntrephine\r\ntrephritidae\r\ntrepid\r\ntrepidation\r\ntrepidly\r\ntreponema\r\ntreponemataceae\r\ntrespass\r\ntrespasser\r\ntrespassing\r\ntress\r\ntrestle\r\ntrestlework\r\ntrevelyan\r\ntrevino\r\ntrevithick\r\ntrews\r\ntrey\r\ntrf\r\ntrh\r\ntri-chad\r\ntri-iodomethane\r\ntri-iodothyronine\r\ntriacetate\r\ntriad\r\ntriaenodon\r\ntriage\r\ntriakidae\r\ntrial\r\ntrial-and-error\r\ntrialeurodes\r\ntriamcinolone\r\ntriangle\r\ntriangular\r\ntriangularity\r\ntriangulate\r\ntriangulation\r\ntriangulum\r\ntriassic\r\ntriatoma\r\ntriavil\r\ntriazine\r\ntriazolam\r\ntribade\r\ntribadism\r\ntribadistic\r\ntribal\r\ntribalisation\r\ntribalism\r\ntribalization\r\ntribe\r\ntribesman\r\ntribolium\r\ntribologist\r\ntribology\r\ntribonema\r\ntribonemaceae\r\ntribromoethanol\r\ntribromomethane\r\ntribulate\r\ntribulation\r\ntribulus\r\ntribunal\r\ntribune\r\ntribuneship\r\ntributary\r\ntribute\r\ntributyrin\r\ntrice\r\ntricentenary\r\ntricentennial\r\ntriceps\r\ntriceratops\r\ntrichechidae\r\ntrichechus\r\ntrichina\r\ntrichiniasis\r\ntrichinosis\r\ntrichion\r\ntrichiuridae\r\ntrichloride\r\ntrichlormethiazide\r\ntrichloroethane\r\ntrichloroethylene\r\ntrichloromethane\r\ntrichobezoar\r\ntrichoceros\r\ntrichodesmium\r\ntrichodontidae\r\ntrichoglossus\r\ntricholoma\r\ntricholomataceae\r\ntrichomanes\r\ntrichomonad\r\ntrichomoniasis\r\ntrichophaga\r\ntrichophyton\r\ntrichoptera\r\ntrichopteran\r\ntrichopteron\r\ntrichostema\r\ntrichostigma\r\ntrichosurus\r\ntrichotillomania\r\ntrichotomy\r\ntrichroism\r\ntrichromacy\r\ntrichromatic\r\ntrichrome\r\ntrichuriasis\r\ntrichys\r\ntrick\r\ntricked-out\r\ntricker\r\ntrickery\r\ntrickily\r\ntrickiness\r\ntrickle\r\ntrickster\r\ntricksy\r\ntricky\r\ntriclinic\r\ntriclinium\r\ntricolor\r\ntricolour\r\ntricorn\r\ntricorne\r\ntricot\r\ntricuspid\r\ntricuspidate\r\ntricycle\r\ntricyclic\r\ntridacna\r\ntridacnidae\r\ntrident\r\ntridymite\r\ntried\r\ntriennial\r\ntrier\r\ntrifid\r\ntrifle\r\ntrifler\r\ntrifling\r\ntrifluoromethane\r\ntrifoliata\r\ntrifoliate\r\ntrifoliated\r\ntrifoliolate\r\ntrifolium\r\ntrifurcate\r\ntrifurcation\r\ntrig\r\ntriga\r\ntrigeminal\r\ntrigeminus\r\ntrigger\r\ntrigger-happy\r\ntriggerfish\r\ntriggerman\r\ntriglidae\r\ntriglinae\r\ntriglochin\r\ntriglyceride\r\ntrigon\r\ntrigonal\r\ntrigonella\r\ntrigonometric\r\ntrigonometrician\r\ntrigonometry\r\ntrigram\r\ntrihydroxy\r\ntriiodomethane\r\ntriiodothyronine\r\ntrike\r\ntrilateral\r\ntrilby\r\ntrilingual\r\ntrilisa\r\ntrill\r\ntrilled\r\ntrilliaceae\r\ntrilling\r\ntrillion\r\ntrillionth\r\ntrillium\r\ntrilobate\r\ntrilobated\r\ntrilobed\r\ntrilobite\r\ntrilogy\r\ntrim\r\ntrimaran\r\ntrimer\r\ntrimester\r\ntrimipramine\r\ntrimmed\r\ntrimmer\r\ntrimming\r\ntrimmings\r\ntrimness\r\ntrimorphodon\r\ntrimotored\r\ntrimox\r\ntrimurti\r\ntrine\r\ntrinectes\r\ntringa\r\ntrinidad\r\ntrinidadian\r\ntrinitarian\r\ntrinitarianism\r\ntrinitroglycerin\r\ntrinitrotoluene\r\ntrinity\r\ntrinket\r\ntrinketry\r\ntrinuclear\r\ntrinucleate\r\ntrinucleated\r\ntrio\r\ntriode\r\ntriolein\r\ntrionychidae\r\ntrionyx\r\ntriopidae\r\ntriops\r\ntriose\r\ntriostium\r\ntrioxide\r\ntrip\r\ntrip-up\r\ntripalmitin\r\ntripartite\r\ntripe\r\ntriphammer\r\ntriphosphopyridine\r\ntripinnate\r\ntripinnated\r\ntripinnatifid\r\ntriple\r\ntriple-crown\r\ntriple-decker\r\ntriple-space\r\ntriple-spacing\r\ntriple-tongue\r\ntriplet\r\ntripletail\r\ntripleurospermum\r\ntriplex\r\ntriplicate\r\ntriplicity\r\ntripling\r\ntriplochiton\r\ntriploid\r\ntripod\r\ntripoli\r\ntripos\r\ntripper\r\ntripping\r\ntrippingly\r\ntriptych\r\ntriquetral\r\ntrireme\r\ntrisaccharide\r\ntrisect\r\ntriskaidekaphobia\r\ntriskaidekaphobic\r\ntriskele\r\ntriskelion\r\ntrismus\r\ntrisomy\r\ntristan\r\ntristearin\r\ntristram\r\ntrisyllable\r\ntritanopia\r\ntritanopic\r\ntrite\r\ntriteness\r\ntritheism\r\ntritheist\r\ntriticum\r\ntritium\r\ntritoma\r\ntriton\r\ntriturus\r\ntriumph\r\ntriumphal\r\ntriumphant\r\ntriumvir\r\ntriumvirate\r\ntriune\r\ntrivalent\r\ntrivet\r\ntrivia\r\ntrivial\r\ntrivialise\r\ntriviality\r\ntrivialize\r\ntrivium\r\ntrm\r\ntrna\r\ntroat\r\ntrochaic\r\ntrochanter\r\ntroche\r\ntrochee\r\ntrochilidae\r\ntrochlear\r\ntrochlearis\r\ntrodden\r\ntrogium\r\ntroglodyte\r\ntroglodytes\r\ntroglodytidae\r\ntrogon\r\ntrogonidae\r\ntrogoniformes\r\ntroika\r\ntrojan\r\ntroll\r\ntroller\r\ntrolley\r\ntrolleybus\r\ntrolling\r\ntrollius\r\ntrollop\r\ntrollope\r\ntrombicula\r\ntrombiculiasis\r\ntrombiculidae\r\ntrombiculiid\r\ntrombidiid\r\ntrombidiidae\r\ntrombone\r\ntrombonist\r\ntrompe-l'oeil\r\ntrompillo\r\ntrondheim\r\ntroop\r\ntrooper\r\ntroops\r\ntroopship\r\ntropaeolaceae\r\ntropaeolum\r\ntrope\r\ntrophic\r\ntrophobiosis\r\ntrophoblast\r\ntrophoblastic\r\ntrophotropic\r\ntrophotropism\r\ntrophozoite\r\ntrophy\r\ntropic\r\ntropical\r\ntropicbird\r\ntropics\r\ntropidoclonion\r\ntropism\r\ntroponomy\r\ntroponym\r\ntroponymy\r\ntropopause\r\ntroposphere\r\ntrot\r\ntroth\r\ntrotline\r\ntrotsky\r\ntrotskyism\r\ntrotskyist\r\ntrotskyite\r\ntrotter\r\ntrou-de-loup\r\ntroubadour\r\ntrouble\r\ntrouble-free\r\ntrouble-shoot\r\ntroubled\r\ntroublemaker\r\ntroubler\r\ntroubleshooter\r\ntroublesome\r\ntroublesomeness\r\ntroubling\r\ntroublous\r\ntrough\r\ntrounce\r\ntrouncing\r\ntroupe\r\ntrouper\r\ntrouser\r\ntrousered\r\ntrousering\r\ntrousseau\r\ntrout\r\ntrout-like\r\ntroutlike\r\ntrove\r\ntrowel\r\ntroy\r\ntruancy\r\ntruant\r\ntruce\r\ntruck\r\ntruckage\r\ntrucker\r\ntrucking\r\ntruckle\r\ntruckler\r\ntruckling\r\ntruculence\r\ntruculency\r\ntruculent\r\ntrudge\r\ntrudger\r\ntrue\r\ntrue-blue\r\ntrue-false\r\ntrue-to-life\r\ntruehearted\r\ntruelove\r\ntrueness\r\ntruffaut\r\ntruffle\r\ntruism\r\ntruly\r\ntruman\r\ntrumbo\r\ntrumbull\r\ntrump\r\ntrumped-up\r\ntrumpery\r\ntrumpet\r\ntrumpet-like\r\ntrumpet-shaped\r\ntrumpet-wood\r\ntrumpeter\r\ntrumpetfish\r\ntrumpets\r\ntrumpetwood\r\ntrumping\r\ntruncate\r\ntruncated\r\ntruncation\r\ntruncheon\r\ntruncocolumella\r\ntrundle\r\ntrunk\r\ntrunkfish\r\ntrunks\r\ntrunnel\r\ntruss\r\ntrussed\r\ntrust\r\ntrustbuster\r\ntrusted\r\ntrustee\r\ntrusteeship\r\ntruster\r\ntrustful\r\ntrustfully\r\ntrustfulness\r\ntrustiness\r\ntrusting\r\ntrustingly\r\ntrustingness\r\ntrustworthiness\r\ntrustworthy\r\ntrusty\r\ntruth\r\ntruthful\r\ntruthfully\r\ntruthfulness\r\ntry\r\ntry-on\r\ntrying\r\ntryout\r\ntrypetidae\r\ntrypsin\r\ntrypsinogen\r\ntryptophan\r\ntryptophane\r\ntryst\r\ntsa\r\ntsar\r\ntsarina\r\ntsarist\r\ntsaristic\r\ntsaritsa\r\ntsaritsyn\r\ntsetse\r\ntsh\r\ntshiluba\r\ntsimshian\r\ntsine\r\ntsk\r\ntsoris\r\ntsouic\r\ntss\r\ntsuga\r\ntsunami\r\ntsuris\r\ntsushima\r\ntswana\r\ntt\r\ntuareg\r\ntuatara\r\ntub\r\ntub-cart\r\ntub-thumper\r\ntuba\r\ntubal\r\ntubbiness\r\ntubby\r\ntube\r\ntube-nosed\r\ntube-shaped\r\ntubed\r\ntubeless\r\ntubelike\r\ntuber\r\ntuberaceae\r\ntuberales\r\ntubercle\r\ntubercular\r\ntubercularia\r\ntuberculariaceae\r\ntuberculate\r\ntuberculin\r\ntuberculoid\r\ntuberculosis\r\ntuberculous\r\ntuberose\r\ntuberosity\r\ntuberous\r\ntubful\r\ntubing\r\ntubman\r\ntubocurarine\r\ntubular\r\ntubule\r\ntubulidentata\r\ntucana\r\ntuchman\r\ntuck\r\ntuckahoe\r\ntucked\r\ntucker\r\ntucker-bag\r\ntucket\r\ntucson\r\ntudor\r\ntudung\r\ntues\r\ntuesday\r\ntufa\r\ntuff\r\ntuffet\r\ntuft\r\ntufted\r\ntug\r\ntug-of-war\r\ntugboat\r\ntugela\r\ntugger\r\ntughrik\r\ntugrik\r\ntuileries\r\ntuille\r\ntuition\r\ntularaemia\r\ntularemia\r\ntulestoma\r\ntulip\r\ntulipa\r\ntulipwood\r\ntulle\r\ntully\r\ntulostoma\r\ntulostomaceae\r\ntulostomataceae\r\ntulostomatales\r\ntulsa\r\ntulu\r\ntum\r\ntumble\r\ntumble-down\r\ntumble-dryer\r\ntumblebug\r\ntumbler\r\ntumbleweed\r\ntumbling\r\ntumbrel\r\ntumbril\r\ntumefaction\r\ntumefy\r\ntumesce\r\ntumescence\r\ntumescent\r\ntumid\r\ntumidity\r\ntumidness\r\ntummy\r\ntumor\r\ntumour\r\ntums\r\ntumult\r\ntumultuous\r\ntumultuously\r\ntumultuousness\r\ntumulus\r\ntun\r\ntuna\r\ntuna-like\r\ntunaburger\r\ntundra\r\ntune\r\ntune-up\r\ntuned\r\ntuneful\r\ntunefully\r\ntunefulness\r\ntuneless\r\ntuner\r\ntung\r\ntunga\r\ntungstate\r\ntungsten\r\ntungus\r\ntungusic\r\ntunguska\r\ntunguz\r\ntunic\r\ntunica\r\ntunicata\r\ntunicate\r\ntuning\r\ntunis\r\ntunisia\r\ntunisian\r\ntunker\r\ntunnage\r\ntunnel\r\ntunney\r\ntunny\r\ntup\r\ntupaia\r\ntupaiidae\r\ntupek\r\ntupelo\r\ntupi\r\ntupi-guarani\r\ntupik\r\ntupinambis\r\ntuppence\r\ntuppeny\r\ntupungatito\r\ntupungato\r\nturaco\r\nturacou\r\nturakoo\r\nturban\r\nturbaned\r\nturbatrix\r\nturbellaria\r\nturbid\r\nturbidity\r\nturbidness\r\nturbinal\r\nturbinate\r\nturbine\r\nturbofan\r\nturbogenerator\r\nturbojet\r\nturboprop\r\nturbot\r\nturbulence\r\nturbulency\r\nturbulent\r\nturbulently\r\nturcoman\r\nturd\r\nturdidae\r\nturdinae\r\nturdus\r\ntureen\r\nturf\r\nturfan\r\nturgenev\r\nturgid\r\nturgidity\r\nturgidly\r\nturgidness\r\nturgor\r\nturgot\r\nturin\r\nturing\r\nturk\r\nturk's-cap\r\nturkestan\r\nturkey\r\nturkey-like\r\nturkey-sized\r\nturki\r\nturkic\r\nturkic-speaking\r\nturkish\r\nturkistan\r\nturkmen\r\nturkmenia\r\nturkmenistan\r\nturko-tatar\r\nturkoman\r\nturkomen\r\nturmeric\r\nturmoil\r\nturn\r\nturn-on\r\nturnabout\r\nturnaround\r\nturnbuckle\r\nturncoat\r\nturncock\r\nturndown\r\nturned\r\nturner\r\nturnery\r\nturnicidae\r\nturning\r\nturnip\r\nturnip-shaped\r\nturnix\r\nturnkey\r\nturnoff\r\nturnout\r\nturnover\r\nturnpike\r\nturnround\r\nturnspit\r\nturnstile\r\nturnstone\r\nturntable\r\nturnup\r\nturnverein\r\nturp\r\nturpentine\r\nturpin\r\nturpitude\r\nturps\r\nturquoise\r\nturreae\r\nturret\r\nturritis\r\ntursiops\r\nturtle\r\nturtledove\r\nturtlehead\r\nturtleneck\r\nturtlenecked\r\nturtler\r\ntuscaloosa\r\ntuscan\r\ntuscany\r\ntuscarora\r\ntush\r\ntushery\r\ntusk\r\ntuskegee\r\ntusker\r\ntussah\r\ntussaud\r\ntusseh\r\ntusser\r\ntussilago\r\ntussle\r\ntussock\r\ntussore\r\ntussur\r\ntut\r\ntut-tut\r\ntutankhamen\r\ntutee\r\ntutelage\r\ntutelar\r\ntutelary\r\ntutelo\r\ntutor\r\ntutorial\r\ntutorship\r\ntutsan\r\ntutsi\r\ntutti-frutti\r\ntutu\r\ntuvalu\r\ntux\r\ntuxedo\r\ntuxedoed\r\ntv\r\ntv-antenna\r\ntwaddle\r\ntwaddler\r\ntwain\r\ntwang\r\ntwat\r\ntwayblade\r\ntweak\r\ntwee\r\ntweed\r\ntweediness\r\ntweedle\r\ntweedy\r\ntweet\r\ntweeter\r\ntweeze\r\ntweezer\r\ntwelfth\r\ntwelfthtide\r\ntwelve\r\ntwelve-sided\r\ntwelvemonth\r\ntwenties\r\ntwentieth\r\ntwenty\r\ntwenty-eight\r\ntwenty-eighth\r\ntwenty-fifth\r\ntwenty-first\r\ntwenty-five\r\ntwenty-four\r\ntwenty-fourth\r\ntwenty-nine\r\ntwenty-ninth\r\ntwenty-one\r\ntwenty-second\r\ntwenty-seven\r\ntwenty-seventh\r\ntwenty-six\r\ntwenty-sixth\r\ntwenty-third\r\ntwenty-three\r\ntwenty-two\r\ntwerp\r\ntwice\r\ntwice-pinnate\r\ntwiddle\r\ntwiddler\r\ntwig\r\ntwiggy\r\ntwiglike\r\ntwilight\r\ntwilit\r\ntwill\r\ntwilled\r\ntwin\r\ntwin-bedded\r\ntwin-prop\r\ntwin-propeller-plane\r\ntwinberry\r\ntwine\r\ntwined\r\ntwiner\r\ntwinflower\r\ntwinge\r\ntwinjet\r\ntwinkle\r\ntwinkler\r\ntwinkling\r\ntwinkly\r\ntwinned\r\ntwinning\r\ntwins\r\ntwirl\r\ntwirler\r\ntwirp\r\ntwist\r\ntwisted\r\ntwister\r\ntwisting\r\ntwistwood\r\ntwisty\r\ntwit\r\ntwitch\r\ntwitching\r\ntwitter\r\ntwitterer\r\ntwo\r\ntwo-a-penny\r\ntwo-bagger\r\ntwo-baser\r\ntwo-by-four\r\ntwo-chambered\r\ntwo-channel\r\ntwo-dimensional\r\ntwo-dimensionality\r\ntwo-eared\r\ntwo-faced\r\ntwo-fold\r\ntwo-footed\r\ntwo-handed\r\ntwo-hitter\r\ntwo-humped\r\ntwo-hundredth\r\ntwo-lane\r\ntwo-leafed\r\ntwo-leaved\r\ntwo-lipped\r\ntwo-lobed\r\ntwo-needled\r\ntwo-part\r\ntwo-party\r\ntwo-piece\r\ntwo-ply\r\ntwo-pronged\r\ntwo-seater\r\ntwo-sided\r\ntwo-step\r\ntwo-thirds\r\ntwo-time\r\ntwo-timer\r\ntwo-timing\r\ntwo-toe\r\ntwo-toed\r\ntwo-way\r\ntwo-wheel\r\ntwo-wheeled\r\ntwo-year\r\ntwo-year-old\r\ntwofer\r\ntwofold\r\ntwopence\r\ntwopenny\r\ntwopenny-halfpenny\r\ntwoscore\r\ntwosome\r\ntx\r\ntyche\r\ntycoon\r\ntying\r\ntyiyn\r\ntyke\r\ntylenchidae\r\ntylenchus\r\ntylenol\r\ntyler\r\ntympan\r\ntympani\r\ntympanic\r\ntympanist\r\ntympanites\r\ntympanitic\r\ntympanitis\r\ntympanoplasty\r\ntympanuchus\r\ntympanum\r\ntyndale\r\ntyndall\r\ntyne\r\ntype\r\ntypecast\r\ntyped\r\ntypeface\r\ntypescript\r\ntypeset\r\ntypesetter\r\ntypewrite\r\ntypewriter\r\ntypewriting\r\ntypewritten\r\ntypha\r\ntyphaceae\r\ntyphlopidae\r\ntyphoeus\r\ntyphoid\r\ntyphon\r\ntyphoon\r\ntyphus\r\ntypic\r\ntypical\r\ntypicality\r\ntypically\r\ntypification\r\ntypify\r\ntyping\r\ntypist\r\ntypo\r\ntypographer\r\ntypographic\r\ntypographical\r\ntypography\r\ntypology\r\ntyr\r\ntyramine\r\ntyranni\r\ntyrannic\r\ntyrannical\r\ntyrannicide\r\ntyrannid\r\ntyrannidae\r\ntyrannise\r\ntyrannize\r\ntyrannosaur\r\ntyrannosaurus\r\ntyrannous\r\ntyrannus\r\ntyranny\r\ntyrant\r\ntyre\r\ntyro\r\ntyrocidin\r\ntyrocidine\r\ntyrol\r\ntyrolean\r\ntyrolese\r\ntyrosine\r\ntyrosinemia\r\ntyrothricin\r\ntyrr\r\ntyson\r\ntyto\r\ntytonidae\r\ntyyn\r\ntzar\r\ntzara\r\ntzarina\r\ntzarist\r\ntzetze\r\nu\r\nu-boat\r\nu-drive\r\nu-shaped\r\nu-turn\r\nu.k.\r\nu.s.\r\nu.s.a.\r\nu308\r\nuakari\r\nubermensch\r\nubiety\r\nubiquinone\r\nubiquitous\r\nubiquitousness\r\nubiquity\r\nubykh\r\nuca\r\nuda\r\nudder\r\nudmurt\r\nudometer\r\nufa\r\nufo\r\nuganda\r\nugandan\r\nugaritic\r\nugli\r\nuglify\r\nugliness\r\nugly\r\nugrian\r\nugric\r\nuhf\r\nuhland\r\nuighur\r\nuigur\r\nuintathere\r\nuintatheriidae\r\nuintatherium\r\nuk\r\nukase\r\nuke\r\nukraine\r\nukrainian\r\nukranian\r\nukrayina\r\nukulele\r\nulaanbaatar\r\nulalgia\r\nulama\r\nulanova\r\nulatrophia\r\nulcer\r\nulcerate\r\nulcerated\r\nulceration\r\nulcerative\r\nulcerous\r\nulema\r\nulemorrhagia\r\nulex\r\nulfila\r\nulfilas\r\nulitis\r\null\r\nullage\r\nullr\r\nulmaceae\r\nulmus\r\nulna\r\nulnar\r\nulster\r\nult\r\nulterior\r\nulteriority\r\nultima\r\nultimacy\r\nultimate\r\nultimately\r\nultimateness\r\nultimatum\r\nultimo\r\nultra\r\nultracef\r\nultracentrifugation\r\nultracentrifuge\r\nultraconservative\r\nultramarine\r\nultramicroscope\r\nultramicroscopic\r\nultramodern\r\nultramontane\r\nultramontanism\r\nultranationalism\r\nultranationalistic\r\nultrasonic\r\nultrasonography\r\nultrasound\r\nultrasuede\r\nultraviolet\r\nululate\r\nululation\r\nulva\r\nulvaceae\r\nulvales\r\nulvophyceae\r\nulysses\r\numa\r\numayyad\r\numbel\r\numbel-like\r\numbellales\r\numbellar\r\numbellate\r\numbellifer\r\numbelliferae\r\numbelliferous\r\numbelliform\r\numbellularia\r\number\r\numbilical\r\numbilicate\r\numbilicus\r\numbo\r\numbra\r\numbrage\r\numbrageous\r\numbrella\r\numbrella-shaped\r\numbrellalike\r\numbrellawort\r\numbria\r\numbrian\r\numbrina\r\numbundu\r\numlaut\r\numma\r\nummah\r\nump\r\numpirage\r\numpire\r\numpteen\r\numpteenth\r\numptieth\r\numteen\r\numteenth\r\nun\r\nun-american\r\nun-come-at-able\r\nun-get-at-able\r\nunabashed\r\nunabated\r\nunable\r\nunabridged\r\nunabused\r\nunaccented\r\nunacceptability\r\nunacceptable\r\nunacceptableness\r\nunacceptably\r\nunaccepted\r\nunaccessible\r\nunaccommodating\r\nunaccompanied\r\nunaccountable\r\nunaccredited\r\nunaccustomed\r\nunachievable\r\nunachievably\r\nunacknowledged\r\nunacquainted\r\nunacquisitive\r\nunactable\r\nunadaptability\r\nunadaptable\r\nunadapted\r\nunaddicted\r\nunaddressed\r\nunadjustable\r\nunadjusted\r\nunadmonished\r\nunadoptable\r\nunadorned\r\nunadulterated\r\nunadventurous\r\nunadvisable\r\nunadvised\r\nunaerated\r\nunaesthetic\r\nunaffected\r\nunaffectedness\r\nunaffecting\r\nunaffectionate\r\nunaffiliated\r\nunaffixed\r\nunafraid\r\nunaged\r\nunaggressive\r\nunagitated\r\nunai\r\nunaided\r\nunaired\r\nunairworthy\r\nunalarming\r\nunalert\r\nunalienable\r\nunalike\r\nunalloyed\r\nunalterability\r\nunalterable\r\nunalterably\r\nunaltered\r\nunambiguity\r\nunambiguous\r\nunambiguously\r\nunambitious\r\nunambitiously\r\nunamended\r\nunamused\r\nunamusing\r\nunanalyzable\r\nunanalyzed\r\nunangry\r\nunanimated\r\nunanimity\r\nunanimous\r\nunanimously\r\nunannealed\r\nunannounced\r\nunanswerable\r\nunanswered\r\nunanticipated\r\nunapologetic\r\nunappareled\r\nunapparent\r\nunappealable\r\nunappealing\r\nunappealingly\r\nunappeasable\r\nunappendaged\r\nunappetising\r\nunappetisingness\r\nunappetizing\r\nunappetizingness\r\nunappreciated\r\nunappreciative\r\nunappreciatively\r\nunapprehensive\r\nunapproachability\r\nunapproachable\r\nunarbitrary\r\nunarguable\r\nunarguably\r\nunargumentative\r\nunarm\r\nunarmed\r\nunarmored\r\nunarmoured\r\nunarticulate\r\nunarticulated\r\nunartistic\r\nunary\r\nunascertainable\r\nunascribable\r\nunashamed\r\nunashamedly\r\nunasked\r\nunassailable\r\nunassailably\r\nunassertive\r\nunassertively\r\nunassertiveness\r\nunassignable\r\nunassigned\r\nunassisted\r\nunassuming\r\nunassumingness\r\nunassured\r\nunasterisked\r\nunattached\r\nunattackable\r\nunattainable\r\nunattainableness\r\nunattainably\r\nunattended\r\nunattired\r\nunattractive\r\nunattractively\r\nunattractiveness\r\nunattributable\r\nunau\r\nunauthentic\r\nunauthorised\r\nunauthorized\r\nunavailability\r\nunavailable\r\nunavailing\r\nunavenged\r\nunavoidability\r\nunavoidable\r\nunavoidably\r\nunavowed\r\nunawakened\r\nunaware\r\nunawareness\r\nunawares\r\nunawed\r\nunbacked\r\nunbaffled\r\nunbalance\r\nunbalanced\r\nunbalconied\r\nunbanded\r\nunbaptised\r\nunbaptized\r\nunbar\r\nunbarred\r\nunbarreled\r\nunbarrelled\r\nunbearable\r\nunbeatable\r\nunbeaten\r\nunbecoming\r\nunbecomingly\r\nunbecomingness\r\nunbefitting\r\nunbeholden\r\nunbeknown\r\nunbeknownst\r\nunbelief\r\nunbelievable\r\nunbelievably\r\nunbeliever\r\nunbelieving\r\nunbelievingly\r\nunbeloved\r\nunbelt\r\nunbelted\r\nunbend\r\nunbendable\r\nunbending\r\nunbeneficed\r\nunbent\r\nunbiased\r\nunbiassed\r\nunbigoted\r\nunbind\r\nunbitter\r\nunbleached\r\nunblemished\r\nunblended\r\nunblessed\r\nunblinking\r\nunblock\r\nunbloodied\r\nunbloody\r\nunblushing\r\nunbodied\r\nunbolt\r\nunbolted\r\nunbooked\r\nunbordered\r\nunborn\r\nunbosom\r\nunbound\r\nunbounded\r\nunboundedness\r\nunbowed\r\nunbox\r\nunbrace\r\nunbraced\r\nunbraid\r\nunbrainwashed\r\nunbranched\r\nunbranching\r\nunbranded\r\nunbreakable\r\nunbreakableness\r\nunbridgeable\r\nunbridle\r\nunbridled\r\nunbroken\r\nunbrushed\r\nunbuckle\r\nunburden\r\nunburdened\r\nunburied\r\nunburned\r\nunburnished\r\nunbutton\r\nunbuttoned\r\nuncalled-for\r\nuncamphorated\r\nuncanny\r\nuncapped\r\nuncarbonated\r\nuncared-for\r\nuncaring\r\nuncarpeted\r\nuncarved\r\nuncase\r\nuncastrated\r\nuncategorised\r\nuncategorized\r\nuncaulked\r\nuncaused\r\nunceasing\r\nunceasingly\r\nuncensored\r\nunceremonial\r\nunceremonious\r\nunceremoniously\r\nunceremoniousness\r\nuncertain\r\nuncertainly\r\nuncertainness\r\nuncertainty\r\nuncertified\r\nunchain\r\nunchained\r\nunchallengeable\r\nunchallenged\r\nunchangeability\r\nunchangeable\r\nunchangeableness\r\nunchangeably\r\nunchanged\r\nunchanging\r\nunchangingness\r\nuncharacteristic\r\nuncharacteristically\r\nuncharged\r\nuncharitable\r\nuncharted\r\nunchartered\r\nunchaste\r\nunchastened\r\nuncheckable\r\nunchecked\r\nuncheerful\r\nuncheerfulness\r\nunchewable\r\nunchivalrous\r\nunchivalrously\r\nunchristian\r\nunchristianly\r\nunchristlike\r\nunchurch\r\nuncial\r\nuncivil\r\nuncivilised\r\nuncivilized\r\nuncivilly\r\nunclad\r\nunclaimed\r\nunclasp\r\nunclassifiable\r\nunclassified\r\nuncle\r\nunclean\r\nuncleanliness\r\nuncleanly\r\nuncleanness\r\nunclear\r\nuncleared\r\nunclearness\r\nunclimbable\r\nunclip\r\nunclipped\r\nuncloak\r\nunclog\r\nunclogged\r\nunclothe\r\nunclothed\r\nunclouded\r\nuncloudedness\r\nunclutter\r\nuncluttered\r\nunco\r\nuncoated\r\nuncoerced\r\nuncoil\r\nuncoiled\r\nuncollected\r\nuncollectible\r\nuncolored\r\nuncoloured\r\nuncolumned\r\nuncombable\r\nuncombed\r\nuncombined\r\nuncomely\r\nuncomfortable\r\nuncomfortableness\r\nuncomfortably\r\nuncommercial\r\nuncommercialised\r\nuncommercialized\r\nuncommitted\r\nuncommon\r\nuncommonness\r\nuncommunicative\r\nuncommunicativeness\r\nuncomparable\r\nuncomparably\r\nuncompartmented\r\nuncompassionate\r\nuncompensated\r\nuncompetitive\r\nuncomplaining\r\nuncomplainingly\r\nuncomplete\r\nuncompleted\r\nuncomplicated\r\nuncomplimentary\r\nuncompounded\r\nuncomprehended\r\nuncomprehending\r\nuncomprehensible\r\nuncompress\r\nuncompromising\r\nunconcealed\r\nunconcern\r\nunconcerned\r\nunconditional\r\nunconditionally\r\nunconditioned\r\nunconfessed\r\nunconfident\r\nunconfined\r\nunconfirmed\r\nunconformable\r\nunconformist\r\nunconfused\r\nuncongenial\r\nuncongeniality\r\nunconnected\r\nunconnectedness\r\nunconquerable\r\nunconquered\r\nunconscientious\r\nunconscientiousness\r\nunconscionable\r\nunconscious\r\nunconsciously\r\nunconsciousness\r\nunconsecrated\r\nunconsidered\r\nunconsolable\r\nunconsolidated\r\nunconstipated\r\nunconstitutional\r\nunconstitutionally\r\nunconstrained\r\nunconstraint\r\nunconstricted\r\nunconstructive\r\nunconsumed\r\nunconsummated\r\nuncontaminated\r\nuncontaminating\r\nuncontested\r\nuncontrived\r\nuncontrollable\r\nuncontrolled\r\nuncontroversial\r\nuncontroversially\r\nunconventional\r\nunconventionality\r\nunconventionally\r\nunconverted\r\nunconvertible\r\nunconvinced\r\nunconvincing\r\nunconvincingly\r\nuncooked\r\nuncool\r\nuncooperative\r\nuncoordinated\r\nuncordial\r\nuncork\r\nuncorrectable\r\nuncorrected\r\nuncorrelated\r\nuncorroborated\r\nuncorrupted\r\nuncounted\r\nuncouple\r\nuncoupled\r\nuncousinly\r\nuncouth\r\nuncouthness\r\nuncover\r\nuncovered\r\nuncovering\r\nuncrannied\r\nuncrate\r\nuncreased\r\nuncreative\r\nuncreativeness\r\nuncritical\r\nuncritically\r\nuncropped\r\nuncross\r\nuncrossed\r\nuncrowded\r\nuncrowned\r\nuncrystallised\r\nuncrystallized\r\nunction\r\nunctuous\r\nunctuously\r\nunctuousness\r\nuncultivable\r\nuncultivatable\r\nuncultivated\r\nuncultured\r\nuncurbed\r\nuncured\r\nuncurl\r\nuncurled\r\nuncurtained\r\nuncurved\r\nuncurving\r\nuncus\r\nuncut\r\nundamaged\r\nundatable\r\nundated\r\nundaunted\r\nundecagon\r\nundeceive\r\nundeceived\r\nundecided\r\nundecipherable\r\nundecipherably\r\nundeciphered\r\nundeclared\r\nundecomposable\r\nundecomposed\r\nundecorated\r\nundedicated\r\nundefeated\r\nundefendable\r\nundefended\r\nundeferential\r\nundefiled\r\nundefinable\r\nundefined\r\nundelineated\r\nundemanding\r\nundemocratic\r\nundemocratically\r\nundemonstrative\r\nundeniable\r\nundenominational\r\nundependability\r\nundependable\r\nundependableness\r\nundependably\r\nundepicted\r\nunder\r\nunder-the-counter\r\nunder-the-table\r\nunderachieve\r\nunderachievement\r\nunderachiever\r\nunderact\r\nunderactive\r\nunderage\r\nunderarm\r\nunderbelly\r\nunderbid\r\nunderbodice\r\nunderbody\r\nunderboss\r\nunderbred\r\nunderbrush\r\nundercarriage\r\nundercharge\r\nunderclass\r\nunderclassman\r\nunderclothed\r\nunderclothes\r\nunderclothing\r\nundercoat\r\nundercoated\r\nundercover\r\nundercurrent\r\nundercut\r\nunderdevelop\r\nunderdeveloped\r\nunderdevelopment\r\nunderdog\r\nunderdone\r\nunderdrawers\r\nunderdress\r\nunderdressed\r\nundereducated\r\nunderemployed\r\nunderestimate\r\nunderestimation\r\nunderevaluation\r\nunderexpose\r\nunderexposure\r\nunderfed\r\nunderfelt\r\nunderframe\r\nunderfur\r\nundergarment\r\nundergird\r\nundergo\r\nundergrad\r\nundergraduate\r\nunderground\r\nundergrow\r\nundergrowth\r\nunderhand\r\nunderhanded\r\nunderhandedly\r\nunderhung\r\nunderivative\r\nunderived\r\nunderlay\r\nunderlayment\r\nunderlie\r\nunderline\r\nunderling\r\nunderlip\r\nunderlying\r\nundermanned\r\nundermentioned\r\nundermine\r\nundernourish\r\nundernourished\r\nundernourishment\r\nunderpants\r\nunderpart\r\nunderpass\r\nunderpay\r\nunderpayment\r\nunderperform\r\nunderperformer\r\nunderpin\r\nunderplay\r\nunderpopulated\r\nunderprice\r\nunderprivileged\r\nunderproduce\r\nunderproduction\r\nunderquote\r\nunderrate\r\nunderrating\r\nunderreckoning\r\nunderscore\r\nundersea\r\nunderseal\r\nundersealed\r\nundersecretary\r\nundersell\r\nunderseller\r\nundersexed\r\nundershirt\r\nundershoot\r\nundershot\r\nundershrub\r\nunderside\r\nundersign\r\nundersize\r\nundersized\r\nunderskirt\r\nunderslung\r\nundersoil\r\nunderspend\r\nunderspent\r\nunderstaffed\r\nunderstand\r\nunderstandability\r\nunderstandable\r\nunderstandably\r\nunderstanding\r\nunderstate\r\nunderstated\r\nunderstatement\r\nunderstock\r\nunderstood\r\nunderstructure\r\nunderstudy\r\nundersurface\r\nundertake\r\nundertaker\r\nundertaking\r\nundertide\r\nundertone\r\nundertow\r\nundervaluation\r\nundervalue\r\nunderwater\r\nunderway\r\nunderwear\r\nunderweight\r\nunderwing\r\nunderwood\r\nunderworld\r\nunderwrite\r\nunderwriter\r\nundescended\r\nundescriptive\r\nundeserved\r\nundeservedly\r\nundeserving\r\nundesigned\r\nundesirability\r\nundesirable\r\nundesired\r\nundesiring\r\nundesirous\r\nundestroyable\r\nundetectable\r\nundetected\r\nundeterminable\r\nundetermined\r\nundeterred\r\nundeveloped\r\nundeviating\r\nundiagnosable\r\nundiagnosed\r\nundies\r\nundifferentiated\r\nundigested\r\nundignified\r\nundiluted\r\nundiminished\r\nundimmed\r\nundine\r\nundiplomatic\r\nundiplomatically\r\nundirected\r\nundiscerning\r\nundischarged\r\nundiscipline\r\nundisciplined\r\nundisclosed\r\nundiscouraged\r\nundiscoverable\r\nundiscovered\r\nundiscriminating\r\nundisguised\r\nundismayed\r\nundisputable\r\nundisputed\r\nundisputedly\r\nundissolved\r\nundistinguishable\r\nundistinguished\r\nundistorted\r\nundistributed\r\nundisturbed\r\nundiversified\r\nundividable\r\nundivided\r\nundo\r\nundoable\r\nundock\r\nundocumented\r\nundoer\r\nundogmatic\r\nundogmatical\r\nundoing\r\nundomestic\r\nundomesticated\r\nundone\r\nundoubtedly\r\nundrained\r\nundramatic\r\nundramatically\r\nundrape\r\nundraped\r\nundrawn\r\nundreamed\r\nundreamt\r\nundress\r\nundressed\r\nundried\r\nundrinkable\r\nundset\r\nundue\r\nundulant\r\nundulate\r\nundulation\r\nundulatory\r\nundutiful\r\nundutifulness\r\nundyed\r\nundying\r\nundynamic\r\nuneager\r\nunearned\r\nunearth\r\nunearthly\r\nunease\r\nuneasily\r\nuneasiness\r\nuneasy\r\nuneatable\r\nuneconomic\r\nuneconomical\r\nunedifying\r\nunedited\r\nuneducated\r\nuneffective\r\nunelaborate\r\nunelaborated\r\nunembarrassed\r\nunembellished\r\nunembodied\r\nunemotional\r\nunemotionality\r\nunemotionally\r\nunemphatic\r\nunemployable\r\nunemployed\r\nunemployment\r\nunenclosed\r\nunencouraging\r\nunencumbered\r\nunended\r\nunending\r\nunendingly\r\nunendowed\r\nunendurable\r\nunenergetic\r\nunenergetically\r\nunenforceable\r\nunenforced\r\nunengaged\r\nunenlightened\r\nunenlightening\r\nunenlightenment\r\nunenlivened\r\nunenterprising\r\nunentertaining\r\nunenthusiastic\r\nunenthusiastically\r\nunentitled\r\nunenviable\r\nunequal\r\nunequaled\r\nunequalised\r\nunequalized\r\nunequalled\r\nunequally\r\nunequipped\r\nunequivocal\r\nunequivocally\r\nunequivocalness\r\nunerasable\r\nunerect\r\nunergetic\r\nunerring\r\nunesco\r\nunessential\r\nunestablished\r\nunethical\r\nunethically\r\nuneven\r\nunevenly\r\nunevenness\r\nuneventful\r\nunexacting\r\nunexampled\r\nunexceeded\r\nunexcelled\r\nunexceptionable\r\nunexceptional\r\nunexchangeability\r\nunexchangeable\r\nunexcitable\r\nunexcited\r\nunexciting\r\nunexcitingly\r\nunexclusive\r\nunexcused\r\nunexhausted\r\nunexpansive\r\nunexpected\r\nunexpectedly\r\nunexpectedness\r\nunexpendable\r\nunexpended\r\nunexpired\r\nunexplainable\r\nunexplained\r\nunexploded\r\nunexploited\r\nunexplorative\r\nunexploratory\r\nunexplored\r\nunexportable\r\nunexpressed\r\nunexpressible\r\nunexpressive\r\nunexpurgated\r\nunextended\r\nunfaceted\r\nunfading\r\nunfailing\r\nunfair\r\nunfairly\r\nunfairness\r\nunfaithful\r\nunfaithfully\r\nunfaithfulness\r\nunfaltering\r\nunfalteringly\r\nunfamiliar\r\nunfamiliarity\r\nunfashionable\r\nunfashionably\r\nunfasten\r\nunfastened\r\nunfastener\r\nunfastening\r\nunfastidious\r\nunfathomable\r\nunfathomed\r\nunfattened\r\nunfavorable\r\nunfavorableness\r\nunfavorably\r\nunfavourable\r\nunfavourableness\r\nunfavourably\r\nunfearing\r\nunfeasibility\r\nunfeasible\r\nunfeathered\r\nunfed\r\nunfeeling\r\nunfeelingly\r\nunfeelingness\r\nunfeigned\r\nunfeignedly\r\nunfeminine\r\nunfenced\r\nunfermented\r\nunfertile\r\nunfertilised\r\nunfertilized\r\nunfettered\r\nunfilled\r\nunfilmed\r\nunfinished\r\nunfirm\r\nunfit\r\nunfitness\r\nunfitting\r\nunfixed\r\nunflagging\r\nunflappable\r\nunflattering\r\nunflavored\r\nunflavoured\r\nunflawed\r\nunfledged\r\nunflinching\r\nunfluctuating\r\nunflurried\r\nunflustered\r\nunfocused\r\nunfocussed\r\nunfold\r\nunfolding\r\nunforbearing\r\nunforced\r\nunforceful\r\nunforeseeable\r\nunforeseen\r\nunforesightful\r\nunforested\r\nunforethoughtful\r\nunforfeitable\r\nunforgettable\r\nunforgettably\r\nunforgivable\r\nunforgivably\r\nunforgiving\r\nunforgivingly\r\nunformed\r\nunfortunate\r\nunfortunately\r\nunfounded\r\nunframed\r\nunfree\r\nunfreeze\r\nunfrequented\r\nunfretted\r\nunfriendliness\r\nunfriendly\r\nunfrightened\r\nunfrock\r\nunfrosted\r\nunfrozen\r\nunfruitful\r\nunfueled\r\nunfulfilled\r\nunfunctional\r\nunfunded\r\nunfunny\r\nunfurl\r\nunfurnished\r\nunfurrowed\r\nungainliness\r\nungainly\r\nungallant\r\nungarbed\r\nungarmented\r\nungathered\r\nungeared\r\nungenerous\r\nungentle\r\nungentlemanlike\r\nungentlemanly\r\nungetatable\r\nunglamorous\r\nunglamourous\r\nunglazed\r\nungodliness\r\nungodly\r\nungovernable\r\nungoverned\r\nungraceful\r\nungracefully\r\nungracefulness\r\nungracious\r\nungraciously\r\nungraciousness\r\nungraded\r\nungrammatical\r\nungrammatically\r\nungrasped\r\nungrateful\r\nungratefully\r\nungratefulness\r\nungratified\r\nungratifying\r\nungreased\r\nungregarious\r\nungroomed\r\nungrudging\r\nungrudgingly\r\nungual\r\nunguaranteed\r\nunguarded\r\nunguent\r\nunguiculata\r\nunguiculate\r\nunguiculated\r\nunguided\r\nunguis\r\nungulata\r\nungulate\r\nungulated\r\nungummed\r\nungusseted\r\nunhallow\r\nunhallowed\r\nunhampered\r\nunhand\r\nunhappily\r\nunhappiness\r\nunhappy\r\nunhardened\r\nunharmed\r\nunharmonious\r\nunharmoniously\r\nunharness\r\nunhatched\r\nunhazardous\r\nunheaded\r\nunhealed\r\nunhealthful\r\nunhealthfulness\r\nunhealthiness\r\nunhealthy\r\nunhearable\r\nunheard\r\nunheard-of\r\nunhearing\r\nunheated\r\nunheeded\r\nunheeding\r\nunhelpful\r\nunhelpfully\r\nunhelpfulness\r\nunheralded\r\nunhesitating\r\nunhesitatingly\r\nunhewn\r\nunhindered\r\nunhinge\r\nunhinged\r\nunhitch\r\nunholiness\r\nunholy\r\nunhomogenised\r\nunhomogenized\r\nunhook\r\nunhoped\r\nunhoped-for\r\nunhopeful\r\nunhorse\r\nunhostile\r\nunhuman\r\nunhumorous\r\nunhurried\r\nunhurriedly\r\nunhurriedness\r\nunhurt\r\nunhygienic\r\nunhygienically\r\nuniat\r\nuniate\r\nunicameral\r\nunicef\r\nunicellular\r\nunicorn\r\nunicuspid\r\nunicycle\r\nunicyclist\r\nunidentifiable\r\nunidentified\r\nunidimensional\r\nunidirectional\r\nunifacial\r\nunification\r\nunified\r\nunifoliate\r\nuniform\r\nuniformed\r\nuniformise\r\nuniformity\r\nuniformize\r\nuniformness\r\nunify\r\nunifying\r\nunilateral\r\nunilateralism\r\nunilateralist\r\nunilaterally\r\nunilluminated\r\nunilluminating\r\nunimaginable\r\nunimaginably\r\nunimaginative\r\nunimaginatively\r\nunimagined\r\nunimodal\r\nunimpaired\r\nunimpassioned\r\nunimpeachable\r\nunimpeachably\r\nunimpeded\r\nunimportance\r\nunimportant\r\nunimposing\r\nunimpregnated\r\nunimpressed\r\nunimpressionable\r\nunimpressive\r\nunimpressively\r\nunimprisoned\r\nunimproved\r\nunincorporated\r\nunindustrialised\r\nunindustrialized\r\nuninebriated\r\nuninfected\r\nuninflected\r\nuninfluenced\r\nuninfluential\r\nuninformative\r\nuninformatively\r\nuninformed\r\nuninhabitable\r\nuninhabited\r\nuninhibited\r\nuninitiate\r\nuninitiated\r\nuninjectable\r\nuninjured\r\nuninominal\r\nuninquiring\r\nuninquisitive\r\nuninspired\r\nuninspiring\r\nuninstructed\r\nuninstructive\r\nuninstructively\r\nuninsurability\r\nuninsurable\r\nuninsured\r\nunintegrated\r\nunintelligent\r\nunintelligently\r\nunintelligibility\r\nunintelligible\r\nunintelligibly\r\nunintended\r\nunintentional\r\nunintentionally\r\nuninterested\r\nuninteresting\r\nuninterestingly\r\nuninterestingness\r\nuninterrupted\r\nunintimidated\r\nunintoxicated\r\nunintrusive\r\nuninucleate\r\nuninventive\r\nuninvited\r\nuninvitedly\r\nuninviting\r\nuninvolved\r\nunio\r\nunion\r\nunionidae\r\nunionisation\r\nunionise\r\nunionised\r\nunionism\r\nunionist\r\nunionization\r\nunionize\r\nunionized\r\nuniovular\r\nuniovulate\r\nuniparous\r\nunipolar\r\nunique\r\nuniquely\r\nuniqueness\r\nunironed\r\nunisex\r\nunisexual\r\nunison\r\nunit\r\nunitard\r\nunitarian\r\nunitarianism\r\nunitary\r\nunite\r\nunited\r\nunitedly\r\nuniting\r\nunitisation\r\nunitise\r\nunitization\r\nunitize\r\nunity\r\nunivalent\r\nunivalve\r\nuniversal\r\nuniversalise\r\nuniversalism\r\nuniversalist\r\nuniversalistic\r\nuniversality\r\nuniversalize\r\nuniverse\r\nuniversity\r\nunivocal\r\nunix\r\nunjointed\r\nunjust\r\nunjustifiable\r\nunjustifiably\r\nunjustified\r\nunjustly\r\nunjustness\r\nunkempt\r\nunkemptness\r\nunkept\r\nunkeyed\r\nunkind\r\nunkindled\r\nunkindly\r\nunkindness\r\nunknot\r\nunknowable\r\nunknowing\r\nunknowingly\r\nunknowingness\r\nunknowledgeable\r\nunknown\r\nunlabeled\r\nunlabelled\r\nunlace\r\nunlaced\r\nunlade\r\nunladylike\r\nunlamented\r\nunlash\r\nunlatched\r\nunlaureled\r\nunlaurelled\r\nunlawful\r\nunlawfully\r\nunlawfulness\r\nunlax\r\nunleaded\r\nunlearn\r\nunlearned\r\nunleash\r\nunleavened\r\nunlettered\r\nunlicenced\r\nunlicensed\r\nunlifelike\r\nunlighted\r\nunlikable\r\nunlike\r\nunlikeable\r\nunlikelihood\r\nunlikeliness\r\nunlikely\r\nunlikeness\r\nunlimited\r\nunlined\r\nunlipped\r\nunlisted\r\nunlit\r\nunliterary\r\nunlittered\r\nunlivable\r\nunlive\r\nunliveable\r\nunliveried\r\nunload\r\nunloaded\r\nunloading\r\nunlobed\r\nunlocated\r\nunlock\r\nunlocked\r\nunlogical\r\nunlooked-for\r\nunloose\r\nunloosen\r\nunlovable\r\nunloved\r\nunlovely\r\nunloving\r\nunlubricated\r\nunluckily\r\nunlucky\r\nunmade\r\nunmake\r\nunmalicious\r\nunmalleability\r\nunmalleable\r\nunmalted\r\nunman\r\nunmanageable\r\nunmanageableness\r\nunmanageably\r\nunmanful\r\nunmanfully\r\nunmanlike\r\nunmanliness\r\nunmanly\r\nunmanned\r\nunmannered\r\nunmannerly\r\nunmapped\r\nunmarked\r\nunmarketable\r\nunmarred\r\nunmarried\r\nunmask\r\nunmasking\r\nunmatchable\r\nunmatched\r\nunmated\r\nunmeaning\r\nunmeasurable\r\nunmeasured\r\nunmechanical\r\nunmechanised\r\nunmechanized\r\nunmediated\r\nunmedical\r\nunmedicative\r\nunmedicinal\r\nunmelodic\r\nunmelodious\r\nunmelodiously\r\nunmelted\r\nunmemorable\r\nunmemorably\r\nunmentionable\r\nunmercenary\r\nunmerchantable\r\nunmerciful\r\nunmercifully\r\nunmercifulness\r\nunmerited\r\nunmeritorious\r\nunmethodical\r\nunmilitary\r\nunmindful\r\nunmindfully\r\nunmindfulness\r\nunmined\r\nunmingled\r\nunmistakable\r\nunmistakably\r\nunmitigable\r\nunmitigated\r\nunmixable\r\nunmixed\r\nunmoderated\r\nunmodernised\r\nunmodernized\r\nunmodifiable\r\nunmodified\r\nunmodulated\r\nunmolested\r\nunmoral\r\nunmortgaged\r\nunmotivated\r\nunmotorised\r\nunmotorized\r\nunmourned\r\nunmovable\r\nunmoved\r\nunmoving\r\nunmown\r\nunmurmuring\r\nunmusical\r\nunmusically\r\nunmutilated\r\nunmuzzle\r\nunmyelinated\r\nunnameable\r\nunnamed\r\nunnatural\r\nunnaturalised\r\nunnaturalized\r\nunnaturally\r\nunnaturalness\r\nunnavigable\r\nunnecessarily\r\nunnecessary\r\nunneeded\r\nunneighborliness\r\nunneighborly\r\nunneighbourly\r\nunnerve\r\nunnerved\r\nunnerving\r\nunneurotic\r\nunnilquadium\r\nunnotched\r\nunnoted\r\nunnoticeable\r\nunnoticeableness\r\nunnoticeably\r\nunnoticed\r\nunnourished\r\nunnumberable\r\nunnumbered\r\nunnumerable\r\nunobjectionable\r\nunobjective\r\nunobligated\r\nunobliging\r\nunobservable\r\nunobservant\r\nunobserved\r\nunobstructed\r\nunobtainable\r\nunobtrusive\r\nunobtrusively\r\nunobtrusiveness\r\nunobvious\r\nunoccupied\r\nunoffending\r\nunofficial\r\nunofficially\r\nunoiled\r\nunopen\r\nunopened\r\nunopposable\r\nunopposed\r\nunordered\r\nunorganised\r\nunorganized\r\nunoriented\r\nunoriginal\r\nunoriginality\r\nunornamented\r\nunorthodox\r\nunorthodoxy\r\nunostentatious\r\nunowned\r\nunoxygenated\r\nunpack\r\nunpackaged\r\nunpaid\r\nunpainful\r\nunpaintable\r\nunpainted\r\nunpaired\r\nunpalatability\r\nunpalatable\r\nunpalatableness\r\nunpalatably\r\nunparallel\r\nunparalleled\r\nunpardonable\r\nunpardonably\r\nunparented\r\nunparliamentary\r\nunpartitioned\r\nunpassable\r\nunpasteurised\r\nunpasteurized\r\nunpatented\r\nunpatriotic\r\nunpatriotically\r\nunpatronised\r\nunpatronized\r\nunpatterned\r\nunpaved\r\nunpeaceable\r\nunpeaceful\r\nunpeasant-smelling\r\nunpeopled\r\nunperceivable\r\nunperceived\r\nunperceiving\r\nunperceptive\r\nunperceptiveness\r\nunperformed\r\nunpermed\r\nunpermissive\r\nunpermissiveness\r\nunperplexed\r\nunperson\r\nunpersuadable\r\nunpersuaded\r\nunpersuasive\r\nunpersuasiveness\r\nunperturbed\r\nunpick\r\nunpictured\r\nunpicturesque\r\nunpierced\r\nunpigmented\r\nunpillared\r\nunpin\r\nunpitying\r\nunplaced\r\nunplanned\r\nunplanted\r\nunplayable\r\nunplayful\r\nunpleasant\r\nunpleasantly\r\nunpleasantness\r\nunpleasing\r\nunpleasingness\r\nunpledged\r\nunploughed\r\nunplowed\r\nunplug\r\nunplumbed\r\nunpointed\r\nunpointedness\r\nunpolished\r\nunpolitical\r\nunpolluted\r\nunpompous\r\nunpopular\r\nunpopularity\r\nunpopulated\r\nunportable\r\nunposed\r\nunpotted\r\nunpowered\r\nunpracticed\r\nunpractised\r\nunprecedented\r\nunprecedentedly\r\nunpredictability\r\nunpredictable\r\nunpredictably\r\nunpredicted\r\nunpredictive\r\nunprejudiced\r\nunpremeditated\r\nunprepared\r\nunprepossessing\r\nunpresentable\r\nunpresidential\r\nunpressed\r\nunpretending\r\nunpretentious\r\nunpretentiously\r\nunpretentiousness\r\nunpreventable\r\nunpriestly\r\nunprincipled\r\nunprintable\r\nunproblematic\r\nunprocessed\r\nunprocurable\r\nunproductive\r\nunproductively\r\nunproductiveness\r\nunprofessional\r\nunprofitability\r\nunprofitable\r\nunprofitableness\r\nunprofitably\r\nunprogressive\r\nunpromised\r\nunpromising\r\nunprompted\r\nunpronounceable\r\nunprophetic\r\nunpropitious\r\nunpropitiously\r\nunpropitiousness\r\nunprotected\r\nunprotectedness\r\nunprotective\r\nunprotesting\r\nunprovable\r\nunproved\r\nunproven\r\nunprovocative\r\nunprovoked\r\nunprovoking\r\nunpublishable\r\nunpublished\r\nunpunctual\r\nunpunished\r\nunpurified\r\nunputdownable\r\nunq\r\nunqualified\r\nunquenchable\r\nunquestionability\r\nunquestionable\r\nunquestionableness\r\nunquestionably\r\nunquestioned\r\nunquestioning\r\nunquiet\r\nunquietly\r\nunquotable\r\nunraised\r\nunranked\r\nunratable\r\nunratified\r\nunravel\r\nunraveler\r\nunraveller\r\nunreachable\r\nunreached\r\nunreactive\r\nunread\r\nunreadable\r\nunreadably\r\nunready\r\nunreal\r\nunrealised\r\nunrealism\r\nunrealistic\r\nunrealistically\r\nunreality\r\nunrealizable\r\nunrealized\r\nunreason\r\nunreasonable\r\nunreasonably\r\nunreasoning\r\nunreasoningly\r\nunreassuring\r\nunrebuked\r\nunreceptive\r\nunreciprocated\r\nunrecognisable\r\nunrecognised\r\nunrecognizable\r\nunrecognizably\r\nunrecognized\r\nunreconcilable\r\nunreconciled\r\nunreconstructed\r\nunrecorded\r\nunrecoverable\r\nunredeemable\r\nunredeemed\r\nunreduced\r\nunreel\r\nunreeling\r\nunrefined\r\nunreflected\r\nunreflective\r\nunreformable\r\nunreformed\r\nunrefreshed\r\nunregenerate\r\nunregenerated\r\nunregistered\r\nunregretful\r\nunregretting\r\nunregularity\r\nunregulated\r\nunrehearsed\r\nunrelated\r\nunrelatedness\r\nunrelaxed\r\nunreleased\r\nunrelenting\r\nunrelentingly\r\nunreliability\r\nunreliable\r\nunreliableness\r\nunreliably\r\nunrelieved\r\nunremarkable\r\nunremarkably\r\nunremarked\r\nunremedied\r\nunremitting\r\nunremorseful\r\nunremunerative\r\nunrenewable\r\nunrenewed\r\nunrentable\r\nunrepaired\r\nunrepeatable\r\nunrepentant\r\nunrepentantly\r\nunreplaceable\r\nunreportable\r\nunreported\r\nunrepresentative\r\nunrepressed\r\nunreproducible\r\nunreproducibly\r\nunreproved\r\nunrequested\r\nunrequited\r\nunresentful\r\nunreserved\r\nunresistant\r\nunresisting\r\nunresolvable\r\nunresolved\r\nunrespectability\r\nunrespectable\r\nunrespected\r\nunresponsive\r\nunresponsiveness\r\nunrest\r\nunrested\r\nunrestrained\r\nunrestraint\r\nunrestricted\r\nunrestrictive\r\nunretentive\r\nunretrievable\r\nunrevealed\r\nunreverberant\r\nunrevised\r\nunrevived\r\nunrewarded\r\nunrewarding\r\nunrhetorical\r\nunrhymed\r\nunrhythmic\r\nunrhythmical\r\nunrifled\r\nunrigged\r\nunrighteous\r\nunrighteously\r\nunrighteousness\r\nunrimed\r\nunripe\r\nunripened\r\nunrivaled\r\nunrivalled\r\nunroll\r\nunromantic\r\nunromantically\r\nunroofed\r\nunrouged\r\nunruffled\r\nunruliness\r\nunruly\r\nunrusted\r\nunsaddle\r\nunsaddled\r\nunsafe\r\nunsaid\r\nunsalable\r\nunsalaried\r\nunsaleable\r\nunsalted\r\nunsanctification\r\nunsanctified\r\nunsanctify\r\nunsanctioned\r\nunsanded\r\nunsanitariness\r\nunsanitary\r\nunsaponified\r\nunsarcastic\r\nunsated\r\nunsatiable\r\nunsatiably\r\nunsatiated\r\nunsatisfactorily\r\nunsatisfactoriness\r\nunsatisfactory\r\nunsatisfiable\r\nunsatisfied\r\nunsatisfying\r\nunsaturated\r\nunsaved\r\nunsavoriness\r\nunsavory\r\nunsavoury\r\nunsay\r\nunscalable\r\nunscathed\r\nunscheduled\r\nunscholarly\r\nunschooled\r\nunscientific\r\nunscramble\r\nunscrew\r\nunscripted\r\nunscrupulous\r\nunscrupulousness\r\nunseal\r\nunsealed\r\nunseamanlike\r\nunseamed\r\nunseasonable\r\nunseasonableness\r\nunseasonably\r\nunseasoned\r\nunseat\r\nunseaworthy\r\nunsectarian\r\nunsecured\r\nunseductive\r\nunseeable\r\nunseeded\r\nunseeing\r\nunseemliness\r\nunseemly\r\nunseen\r\nunsegmented\r\nunsegregated\r\nunselected\r\nunselective\r\nunselfconscious\r\nunselfconsciously\r\nunselfconsciousness\r\nunselfish\r\nunselfishly\r\nunselfishness\r\nunsensational\r\nunsent\r\nunsentimental\r\nunsentimentally\r\nunserviceable\r\nunservile\r\nunsettle\r\nunsettled\r\nunsex\r\nunsexed\r\nunsexy\r\nunshackled\r\nunshaded\r\nunshadowed\r\nunshakable\r\nunshakably\r\nunshaken\r\nunshaped\r\nunshapely\r\nunshapen\r\nunshared\r\nunsharpened\r\nunshaved\r\nunshaven\r\nunsheared\r\nunsheathe\r\nunsheathed\r\nunshelled\r\nunshielded\r\nunshockable\r\nunshod\r\nunshoed\r\nunshorn\r\nunshrinkable\r\nunshrinking\r\nunshuttered\r\nunsighted\r\nunsightliness\r\nunsightly\r\nunsigned\r\nunsilenced\r\nunsimilarity\r\nunsinkable\r\nunsized\r\nunskilled\r\nunskillful\r\nunskillfulness\r\nunsleeping\r\nunsloped\r\nunsmiling\r\nunsmilingly\r\nunsmooth\r\nunsmoothed\r\nunsnarl\r\nunsnarled\r\nunsnarling\r\nunsociability\r\nunsociable\r\nunsociableness\r\nunsociably\r\nunsocial\r\nunsoiled\r\nunsold\r\nunsolder\r\nunsoldierly\r\nunsolicited\r\nunsoluble\r\nunsolvability\r\nunsolvable\r\nunsolved\r\nunsophisticated\r\nunsorted\r\nunsought\r\nunsound\r\nunsoundable\r\nunsounded\r\nunsoundness\r\nunsoured\r\nunsown\r\nunspaced\r\nunsparing\r\nunsparingly\r\nunspeakable\r\nunspeakably\r\nunspecialised\r\nunspecialized\r\nunspecific\r\nunspecified\r\nunspectacular\r\nunspell\r\nunspent\r\nunspoiled\r\nunspoilt\r\nunspoken\r\nunsporting\r\nunsportingly\r\nunsportsmanlike\r\nunspotted\r\nunstable\r\nunstableness\r\nunstaged\r\nunstained\r\nunstaple\r\nunstarred\r\nunstartling\r\nunstated\r\nunstatesmanlike\r\nunsteadily\r\nunsteadiness\r\nunsteady\r\nunsterilised\r\nunsterilized\r\nunstilted\r\nunstimulating\r\nunstinted\r\nunstinting\r\nunstirred\r\nunstoppable\r\nunstoppered\r\nunstrain\r\nunstrained\r\nunstrap\r\nunstratified\r\nunstressed\r\nunstring\r\nunstructured\r\nunstrung\r\nunstuck\r\nunstudied\r\nunstudious\r\nunstuff\r\nunstylish\r\nunsuasible\r\nunsubdivided\r\nunsubduable\r\nunsubdued\r\nunsubmissive\r\nunsubstantial\r\nunsubstantialise\r\nunsubstantialize\r\nunsubstantiated\r\nunsubtle\r\nunsuccessful\r\nunsuccessfully\r\nunsufferable\r\nunsugared\r\nunsuitability\r\nunsuitable\r\nunsuitableness\r\nunsuitably\r\nunsuited\r\nunsullied\r\nunsung\r\nunsupervised\r\nunsupportable\r\nunsupported\r\nunsupportive\r\nunsuppressed\r\nunsure\r\nunsurmountable\r\nunsurpassable\r\nunsurpassed\r\nunsurprised\r\nunsurprising\r\nunsusceptibility\r\nunsusceptible\r\nunsuspected\r\nunsuspecting\r\nunsuspicious\r\nunswayed\r\nunsweet\r\nunsweetened\r\nunswept\r\nunswerving\r\nunsworn\r\nunsyllabic\r\nunsyllabled\r\nunsymbolic\r\nunsymmetric\r\nunsymmetrical\r\nunsymmetrically\r\nunsympathetic\r\nunsympathetically\r\nunsympathising\r\nunsympathizing\r\nunsynchronised\r\nunsynchronized\r\nunsynchronous\r\nunsystematic\r\nunsystematically\r\nunsystematised\r\nunsystematized\r\nuntactful\r\nuntagged\r\nuntainted\r\nuntalented\r\nuntalkative\r\nuntamed\r\nuntangle\r\nuntangled\r\nuntangling\r\nuntanned\r\nuntaped\r\nuntapped\r\nuntarnished\r\nuntasted\r\nuntaught\r\nuntaxed\r\nunteach\r\nuntechnical\r\nuntellable\r\nuntempered\r\nuntempting\r\nuntenable\r\nuntenanted\r\nuntended\r\nuntermeyer\r\nuntested\r\nuntethered\r\nunthankful\r\nunthaw\r\nunthawed\r\nuntheatrical\r\nunthematic\r\nunthinkable\r\nunthinkably\r\nunthinking\r\nunthinkingly\r\nunthought\r\nunthought-of\r\nunthoughtful\r\nunthoughtfulness\r\nunthreatening\r\nuntidily\r\nuntidiness\r\nuntidy\r\nuntie\r\nuntied\r\nuntier\r\nuntilled\r\nuntimbered\r\nuntimeliness\r\nuntimely\r\nuntipped\r\nuntired\r\nuntiring\r\nuntitled\r\nuntoasted\r\nuntold\r\nuntoothed\r\nuntouchable\r\nuntouched\r\nuntoughened\r\nuntoward\r\nuntraceable\r\nuntracked\r\nuntraditional\r\nuntrained\r\nuntrammeled\r\nuntrammelled\r\nuntransferable\r\nuntranslatable\r\nuntransmutable\r\nuntraveled\r\nuntravelled\r\nuntraversable\r\nuntraversed\r\nuntreated\r\nuntried\r\nuntrimmed\r\nuntrod\r\nuntrodden\r\nuntroubled\r\nuntrue\r\nuntrustiness\r\nuntrusting\r\nuntrustworthiness\r\nuntrustworthy\r\nuntrusty\r\nuntruth\r\nuntruthful\r\nuntruthfully\r\nuntruthfulness\r\nuntucked\r\nuntufted\r\nuntune\r\nuntuneful\r\nunturned\r\nuntutored\r\nuntwine\r\nuntwist\r\nuntwisted\r\nuntying\r\nuntypical\r\nuntypicality\r\nuntypically\r\nununbium\r\nununderstandably\r\nununderstood\r\nununhexium\r\nununpentium\r\nununquadium\r\nununtrium\r\nunusable\r\nunuseable\r\nunused\r\nunusefulness\r\nunusual\r\nunusually\r\nunusualness\r\nunutterable\r\nunutterably\r\nunuttered\r\nunvaccinated\r\nunvalued\r\nunvaned\r\nunvanquishable\r\nunvanquished\r\nunvaried\r\nunvariedness\r\nunvarnished\r\nunvarying\r\nunveil\r\nunveiled\r\nunveiling\r\nunvendible\r\nunvented\r\nunventilated\r\nunverbalised\r\nunverbalized\r\nunverifiable\r\nunverified\r\nunversed\r\nunvindictive\r\nunvitrified\r\nunvoiced\r\nunvoluntary\r\nunvulcanised\r\nunvulcanized\r\nunwanted\r\nunwantedly\r\nunwarily\r\nunwariness\r\nunwarmed\r\nunwarrantable\r\nunwarranted\r\nunwary\r\nunwashed\r\nunwavering\r\nunwaveringly\r\nunwaxed\r\nunweaned\r\nunwearable\r\nunwearied\r\nunweary\r\nunwearying\r\nunweathered\r\nunweave\r\nunwebbed\r\nunwed\r\nunwedded\r\nunwelcome\r\nunwell\r\nunwellness\r\nunwholesome\r\nunwholesomeness\r\nunwieldiness\r\nunwieldy\r\nunwilled\r\nunwilling\r\nunwillingly\r\nunwillingness\r\nunwind\r\nunwinding\r\nunwire\r\nunwise\r\nunwisely\r\nunwiseness\r\nunwished\r\nunwished-for\r\nunwitting\r\nunwittingly\r\nunwomanly\r\nunwonted\r\nunwooded\r\nunworkable\r\nunworkmanlike\r\nunworldly\r\nunworried\r\nunworthiness\r\nunworthy\r\nunwounded\r\nunwoven\r\nunwrap\r\nunwrapped\r\nunwrinkled\r\nunwritten\r\nunyielding\r\nunyieldingness\r\nunyoke\r\nunzip\r\nup\r\nup-and-coming\r\nup-bow\r\nup-tick\r\nup-to-date\r\nup-to-dateness\r\nup-to-the-minute\r\nupanishad\r\nupbeat\r\nupbound\r\nupbraid\r\nupbraider\r\nupbraiding\r\nupbringing\r\nupcast\r\nupchuck\r\nupcoming\r\nupcountry\r\nupcurved\r\nupdate\r\nupdating\r\nupdike\r\nupdraft\r\nupend\r\nupended\r\nupending\r\nupfield\r\nupfront\r\nupgrade\r\nupheaval\r\nupheave\r\nuphill\r\nuphold\r\nupholder\r\nupholster\r\nupholsterer\r\nupholstery\r\nupjohn\r\nupkeep\r\nupland\r\nuplift\r\nuplifted\r\nuplifting\r\nuplink\r\nupload\r\nupmarket\r\nupmost\r\nupper\r\nupper-class\r\nupper-level\r\nupper-lower-class\r\nupper-middle-class\r\nupper-normandy\r\nuppercase\r\nuppercut\r\nuppermost\r\nuppish\r\nuppishly\r\nuppishness\r\nuppity\r\nuppityness\r\nuppp\r\nuppsala\r\nupraise\r\nupraised\r\nupright\r\nuprightly\r\nuprightness\r\nuprise\r\nuprising\r\nupriver\r\nuproar\r\nuproarious\r\nuproariously\r\nuproot\r\nuprooter\r\nupsala\r\nupscale\r\nupset\r\nupsetter\r\nupsetting\r\nupshot\r\nupside\r\nupside-down\r\nupsilon\r\nupstage\r\nupstager\r\nupstair\r\nupstairs\r\nupstanding\r\nupstart\r\nupstream\r\nupstroke\r\nupsurge\r\nuptake\r\nupthrow\r\nupthrust\r\nuptick\r\nuptight\r\nuptime\r\nuptown\r\nupturn\r\nupturned\r\nupupa\r\nupupidae\r\nupward\r\nupwardly\r\nupwards\r\nupwind\r\nur\r\nuracil\r\nuraemia\r\nuraemic\r\nural-altaic\r\nuralic\r\nurals\r\nuranalysis\r\nurania\r\nuraninite\r\nuranium\r\nuranologist\r\nuranology\r\nuranoplasty\r\nuranoscopidae\r\nuranus\r\nuranyl\r\nurarthritis\r\nurate\r\nuratemia\r\nuraturia\r\nurban\r\nurbana\r\nurbane\r\nurbanisation\r\nurbanise\r\nurbanised\r\nurbanity\r\nurbanization\r\nurbanize\r\nurbanized\r\nurceolate\r\nurceole\r\nurchin\r\nurd\r\nurdu\r\nurea\r\nurease\r\nuredinales\r\nuremia\r\nuremic\r\nureter\r\nureteritis\r\nureterocele\r\nureterostenosis\r\nurethane\r\nurethra\r\nurethral\r\nurethritis\r\nurethrocele\r\nurex\r\nurey\r\nurga\r\nurge\r\nurgency\r\nurgent\r\nurgently\r\nurginea\r\nurging\r\nuria\r\nuriah\r\nurial\r\nuric\r\nuricaciduria\r\nuricosuric\r\nurinal\r\nurinalysis\r\nurinary\r\nurinate\r\nurination\r\nurinator\r\nurine\r\nurl\r\nurmia\r\nurn\r\nurn-shaped\r\nurobilin\r\nurobilinogen\r\nurocele\r\nurochesia\r\nurochezia\r\nurochord\r\nurochorda\r\nurochordata\r\nurochordate\r\nurocyon\r\nurocystis\r\nurodele\r\nurodella\r\nurodynia\r\nurogenital\r\nurokinase\r\nurolith\r\nurologist\r\nurology\r\nuropathy\r\nurophycis\r\nuropsilus\r\nuropygi\r\nuropygium\r\nurosaurus\r\nursidae\r\nursine\r\nursinia\r\nursus\r\nurth\r\nurtica\r\nurticaceae\r\nurticales\r\nurticaria\r\nurticate\r\nurtication\r\nurubupunga\r\nuruguay\r\nuruguayan\r\nurus\r\nus\r\nusa\r\nusability\r\nusable\r\nusableness\r\nusacil\r\nusaf\r\nusage\r\nusance\r\nusbeg\r\nusbek\r\nuscb\r\nusda\r\nuse\r\nuseable\r\nuseableness\r\nused\r\nused-car\r\nused-up\r\nuseful\r\nusefully\r\nusefulness\r\nuseless\r\nuselessly\r\nuselessness\r\nuser\r\nuser-friendly\r\nushas\r\nusher\r\nusherette\r\nusing\r\nuskub\r\nusmc\r\nusn\r\nusnea\r\nusneaceae\r\nusps\r\nussher\r\nussr\r\nusss\r\nustilaginaceae\r\nustilaginales\r\nustilaginoidea\r\nustilago\r\nustinov\r\nusual\r\nusually\r\nusualness\r\nusufruct\r\nusufructuary\r\nusuli\r\nusumbura\r\nusurer\r\nusurious\r\nusuriously\r\nusurp\r\nusurpation\r\nusurped\r\nusurper\r\nusury\r\nut\r\nut1\r\nuta\r\nutah\r\nutahan\r\nutahraptor\r\nutc\r\nute\r\nutensil\r\nuterine\r\nuterus\r\nutica\r\nutile\r\nutilisation\r\nutilise\r\nutilised\r\nutiliser\r\nutilitarian\r\nutilitarianism\r\nutility\r\nutility-grade\r\nutilizable\r\nutilization\r\nutilize\r\nutilized\r\nutilizer\r\nutmost\r\nutn\r\nutnapishtim\r\nuto-aztecan\r\nutopia\r\nutopian\r\nutopianism\r\nutrecht\r\nutricle\r\nutricularia\r\nutriculus\r\nutrillo\r\nutter\r\nutterable\r\nutterance\r\nuttered\r\nutterer\r\nutterly\r\nuttermost\r\nutterness\r\nutu\r\nutug\r\nuub\r\nuuh\r\nuup\r\nuuq\r\nuut\r\nuv\r\nuvea\r\nuveal\r\nuveitis\r\nuveous\r\nuvula\r\nuvular\r\nuvularia\r\nuvulariaceae\r\nuvulitis\r\nuvulopalatopharyngoplasty\r\nux\r\nuxor\r\nuxorial\r\nuxoricide\r\nuxorious\r\nuxoriousness\r\nuygur\r\nuzbak\r\nuzbeg\r\nuzbek\r\nuzbekistan\r\nuzbekistani\r\nuzi\r\nv\r\nv-1\r\nv-day\r\nv-shaped\r\nv.p.\r\nva\r\nvac\r\nvacancy\r\nvacant\r\nvacate\r\nvacation\r\nvacationer\r\nvacationing\r\nvacationist\r\nvaccaria\r\nvaccina\r\nvaccinate\r\nvaccinated\r\nvaccinating\r\nvaccination\r\nvaccinator\r\nvaccine\r\nvaccinee\r\nvaccinia\r\nvaccinium\r\nvaccinum\r\nvacillant\r\nvacillate\r\nvacillating\r\nvacillation\r\nvacillator\r\nvacuity\r\nvacuolate\r\nvacuolated\r\nvacuolation\r\nvacuole\r\nvacuolisation\r\nvacuolization\r\nvacuous\r\nvacuousness\r\nvacuum\r\nvacuum-clean\r\nvaduz\r\nvagabond\r\nvagabondage\r\nvagal\r\nvagary\r\nvagile\r\nvagina\r\nvaginal\r\nvaginismus\r\nvaginitis\r\nvaginocele\r\nvagrancy\r\nvagrant\r\nvague\r\nvaguely\r\nvagueness\r\nvagus\r\nvain\r\nvainglorious\r\nvainglory\r\nvainly\r\nvaisakha\r\nvaishnava\r\nvaishnavism\r\nvaisnavism\r\nvaisya\r\nvajra\r\nvalance\r\nvaldez\r\nvaldosta\r\nvale\r\nvalediction\r\nvaledictorian\r\nvaledictory\r\nvalence\r\nvalencia\r\nvalenciennes\r\nvalency\r\nvalent\r\nvalentine\r\nvalerian\r\nvaleriana\r\nvalerianaceae\r\nvalerianella\r\nvalet\r\nvaletta\r\nvaletudinarian\r\nvaletudinarianism\r\nvaletudinary\r\nvalhalla\r\nvali\r\nvaliance\r\nvaliancy\r\nvaliant\r\nvaliantly\r\nvalid\r\nvalidate\r\nvalidated\r\nvalidating\r\nvalidation\r\nvalidatory\r\nvalidity\r\nvalidly\r\nvalidness\r\nvaline\r\nvalise\r\nvalium\r\nvalkyrie\r\nvallecula\r\nvalletta\r\nvalley\r\nvallisneria\r\nvalmy\r\nvalois\r\nvalor\r\nvalorous\r\nvalorously\r\nvalorousness\r\nvalour\r\nvalparaiso\r\nvalse\r\nvaluable\r\nvaluableness\r\nvaluate\r\nvaluation\r\nvaluator\r\nvalue\r\nvalue-system\r\nvalued\r\nvalueless\r\nvaluelessness\r\nvaluer\r\nvalues\r\nvalve\r\nvalved\r\nvalvelet\r\nvalvotomy\r\nvalvula\r\nvalvular\r\nvalvule\r\nvalvulitis\r\nvalvulotomy\r\nvambrace\r\nvamoose\r\nvamp\r\nvamper\r\nvampire\r\nvampirism\r\nvan\r\nvanadate\r\nvanadinite\r\nvanadium\r\nvanbrugh\r\nvancocin\r\nvancomycin\r\nvancouver\r\nvanda\r\nvandal\r\nvandalise\r\nvandalism\r\nvandalize\r\nvanderbilt\r\nvandyke\r\nvane\r\nvaned\r\nvanellus\r\nvanern\r\nvanessa\r\nvanguard\r\nvangueria\r\nvanilla\r\nvanilla-scented\r\nvanillin\r\nvanir\r\nvanish\r\nvanished\r\nvanisher\r\nvanishing\r\nvanity\r\nvanquish\r\nvanquishable\r\nvanquisher\r\nvantage\r\nvanuatu\r\nvanzetti\r\nvapid\r\nvapidity\r\nvapidness\r\nvapor\r\nvaporific\r\nvaporing\r\nvaporisation\r\nvaporise\r\nvaporiser\r\nvaporish\r\nvaporizable\r\nvaporization\r\nvaporize\r\nvaporized\r\nvaporizer\r\nvaporous\r\nvaporousness\r\nvapors\r\nvapour\r\nvapourific\r\nvapourisable\r\nvapourised\r\nvapourish\r\nvapourous\r\nvapourousness\r\nvapours\r\nvaquero\r\nvaquita\r\nvar\r\nvar.\r\nvara\r\nvaran\r\nvaranidae\r\nvaranus\r\nvardenafil\r\nvarese\r\nvargas\r\nvariability\r\nvariable\r\nvariableness\r\nvariance\r\nvariant\r\nvariate\r\nvariation\r\nvaricella\r\nvaricelliform\r\nvaricocele\r\nvaricolored\r\nvaricoloured\r\nvaricose\r\nvaricosis\r\nvaricosity\r\nvaried\r\nvariedness\r\nvariegate\r\nvariegated\r\nvariegation\r\nvarietal\r\nvariety\r\nvariform\r\nvariola\r\nvariolar\r\nvariolation\r\nvariolic\r\nvariolization\r\nvariolous\r\nvariometer\r\nvariorum\r\nvarious\r\nvariously\r\nvarix\r\nvarlet\r\nvarment\r\nvarmint\r\nvarna\r\nvarnish\r\nvarnished\r\nvarnisher\r\nvarro\r\nvarsity\r\nvaruna\r\nvary\r\nvarying\r\nvas\r\nvasarely\r\nvasari\r\nvascular\r\nvascularisation\r\nvascularise\r\nvascularity\r\nvascularization\r\nvascularize\r\nvasculitis\r\nvase\r\nvase-fine\r\nvase-shaped\r\nvasectomise\r\nvasectomize\r\nvasectomy\r\nvaseline\r\nvasiform\r\nvasoconstriction\r\nvasoconstrictive\r\nvasoconstrictor\r\nvasodilation\r\nvasodilative\r\nvasodilator\r\nvasomax\r\nvasomotor\r\nvasopressin\r\nvasopressor\r\nvasosection\r\nvasotec\r\nvasotomy\r\nvasovasostomy\r\nvasovesiculitis\r\nvassal\r\nvassalage\r\nvast\r\nvastly\r\nvastness\r\nvat\r\nvatic\r\nvatical\r\nvatican\r\nvaticinate\r\nvaticination\r\nvaticinator\r\nvaudeville\r\nvaudevillian\r\nvaudois\r\nvaughan\r\nvault\r\nvaulted\r\nvaulter\r\nvaulting\r\nvaunt\r\nvaunter\r\nvauntingly\r\nvaux\r\nvayu\r\nvcr\r\nvd\r\nvdu\r\nveadar\r\nveal\r\nveau\r\nveblen\r\nvector\r\nveda\r\nvedalia\r\nvedanga\r\nvedanta\r\nvedic\r\nvedism\r\nvedist\r\nveer\r\nveering\r\nveery\r\nvega\r\nvegan\r\nvegetable\r\nvegetal\r\nvegetarian\r\nvegetarianism\r\nvegetate\r\nvegetation\r\nvegetational\r\nvegetative\r\nvegetive\r\nveggie\r\nvehemence\r\nvehement\r\nvehicle\r\nvehicular\r\nveil\r\nveiled\r\nveiling\r\nvein\r\nveinal\r\nveined\r\nveinlike\r\nvela\r\nvelar\r\nvelazquez\r\nvelban\r\nvelcro\r\nveld\r\nveldt\r\nvelleity\r\nvellicate\r\nvellication\r\nvellum\r\nvelocipede\r\nvelociraptor\r\nvelocity\r\nvelodrome\r\nvelour\r\nvelours\r\nveloute\r\nvelum\r\nvelveeta\r\nvelvet\r\nvelvet-leaf\r\nvelvet-textured\r\nvelveteen\r\nvelvetleaf\r\nvelvetweed\r\nvelvety\r\nvelvety-furred\r\nvelvety-haired\r\nvelvety-plumaged\r\nvelvety-skinned\r\nvena\r\nvenal\r\nvenality\r\nvenally\r\nvenation\r\nvend\r\nvendable\r\nvendee\r\nvendemiaire\r\nvender\r\nvendetta\r\nvendible\r\nvending\r\nvendition\r\nvendor\r\nvendue\r\nveneer\r\nveneering\r\nvenerability\r\nvenerable\r\nvenerableness\r\nvenerate\r\nvenerating\r\nveneration\r\nvenerator\r\nvenereal\r\nveneridae\r\nvenesect\r\nvenesection\r\nvenetia\r\nvenetian\r\nveneto\r\nvenezia\r\nvenezia-euganea\r\nvenezuela\r\nvenezuelan\r\nvengeance\r\nvengeful\r\nvengefully\r\nvengefulness\r\nvenial\r\nvenice\r\nvenipuncture\r\nvenire\r\nvenison\r\nvenn\r\nvenogram\r\nvenography\r\nvenom\r\nvenomed\r\nvenomous\r\nvenomously\r\nvenose\r\nvenous\r\nvent\r\nvent-hole\r\nventail\r\nvented\r\nventer\r\nventhole\r\nventilate\r\nventilated\r\nventilation\r\nventilator\r\nventilatory\r\nventing\r\nventner\r\nventolin\r\nventose\r\nventral\r\nventricle\r\nventricose\r\nventricous\r\nventricular\r\nventriculus\r\nventriloquism\r\nventriloquist\r\nventriloquy\r\nventure\r\nventurer\r\nventuresome\r\nventuresomeness\r\nventuri\r\nventurous\r\nvenue\r\nvenula\r\nvenule\r\nvenus\r\nvenushair\r\nveps\r\nvepse\r\nvepsian\r\nveracious\r\nveracity\r\nveracruz\r\nveranda\r\nverandah\r\nverapamil\r\nveratrum\r\nverb\r\nverbal\r\nverbalisation\r\nverbalise\r\nverbalised\r\nverbaliser\r\nverbalism\r\nverbalization\r\nverbalize\r\nverbalized\r\nverbalizer\r\nverbascum\r\nverbatim\r\nverbena\r\nverbenaceae\r\nverbesina\r\nverbiage\r\nverbify\r\nverbolatry\r\nverbose\r\nverbosely\r\nverboseness\r\nverbosity\r\nverboten\r\nverdancy\r\nverdandi\r\nverdant\r\nverdi\r\nverdicchio\r\nverdict\r\nverdigris\r\nverdin\r\nverdolagas\r\nverdun\r\nverdure\r\nverge\r\nverger\r\nvergil\r\nveridical\r\nverifiable\r\nverification\r\nverificatory\r\nverified\r\nverifier\r\nverify\r\nverifying\r\nverisimilar\r\nverisimilitude\r\nveritable\r\nverity\r\nverlaine\r\nvermeer\r\nvermicelli\r\nvermicide\r\nvermicular\r\nvermiculate\r\nvermiculated\r\nvermiculation\r\nvermiculite\r\nvermiform\r\nvermifuge\r\nvermilion\r\nvermillion\r\nvermin\r\nverminous\r\nvermis\r\nvermont\r\nvermonter\r\nvermouth\r\nvernacular\r\nvernal\r\nvernation\r\nverne\r\nverner\r\nvernier\r\nvernix\r\nvernonia\r\nverona\r\nveronal\r\nveronese\r\nveronica\r\nverpa\r\nverrazano\r\nverrazzano\r\nverruca\r\nverrucose\r\nversace\r\nversailles\r\nversant\r\nversatile\r\nversatility\r\nverse\r\nversed\r\nversicle\r\nversification\r\nversifier\r\nversify\r\nversion\r\nverso\r\nverst\r\nvertebra\r\nvertebral\r\nvertebrata\r\nvertebrate\r\nvertex\r\nverthandi\r\nvertical\r\nverticality\r\nverticalness\r\nverticil\r\nverticillate\r\nverticillated\r\nverticilliosis\r\nverticillium\r\nvertiginous\r\nvertigo\r\nvertu\r\nvervain\r\nverve\r\nvervet\r\nverwoerd\r\nvery\r\nvery-light\r\nvesalius\r\nvesey\r\nvesica\r\nvesical\r\nvesicant\r\nvesicaria\r\nvesicate\r\nvesication\r\nvesicatory\r\nvesicle\r\nvesicopapule\r\nvesicular\r\nvesiculate\r\nvesiculation\r\nvesiculitis\r\nvesiculovirus\r\nvespa\r\nvespasian\r\nvesper\r\nvespers\r\nvespertilio\r\nvespertilionid\r\nvespertilionidae\r\nvespid\r\nvespidae\r\nvespucci\r\nvespula\r\nvessel\r\nvest\r\nvesta\r\nvestal\r\nvested\r\nvestiary\r\nvestibular\r\nvestibule\r\nvestige\r\nvestigial\r\nvestiture\r\nvestment\r\nvestmental\r\nvestmented\r\nvestris\r\nvestry\r\nvestryman\r\nvestrywoman\r\nvesture\r\nvesuvian\r\nvesuvianite\r\nvesuvius\r\nvet\r\nvetch\r\nvetchling\r\nvetchworm\r\nveteran\r\nveterinarian\r\nveterinary\r\nvetluga\r\nveto\r\nvex\r\nvexation\r\nvexatious\r\nvexed\r\nvexer\r\nvexing\r\nvfw\r\nvhf\r\nvi\r\nviability\r\nviable\r\nviaduct\r\nviagra\r\nvial\r\nviand\r\nviands\r\nviatical\r\nviatication\r\nviaticus\r\nvibe\r\nvibes\r\nvibist\r\nviborg\r\nvibraharp\r\nvibramycin\r\nvibrancy\r\nvibrant\r\nvibraphone\r\nvibraphonist\r\nvibrate\r\nvibrating\r\nvibration\r\nvibrational\r\nvibrato\r\nvibrator\r\nvibratory\r\nvibrio\r\nvibrion\r\nvibrionic\r\nvibrissa\r\nviburnum\r\nvicar\r\nvicar-general\r\nvicarage\r\nvicarial\r\nvicariate\r\nvicarious\r\nvicarship\r\nvice\r\nvice-presidency\r\nvice-presidential\r\nvice-regent\r\nvicegerent\r\nvicenary\r\nvicennial\r\nviceregal\r\nvicereine\r\nviceroy\r\nviceroyalty\r\nviceroyship\r\nvichy\r\nvichyssoise\r\nvicia\r\nvicinal\r\nvicinity\r\nvicious\r\nviciously\r\nviciousness\r\nvicissitude\r\nvicksburg\r\nvictim\r\nvictimisation\r\nvictimise\r\nvictimised\r\nvictimiser\r\nvictimization\r\nvictimize\r\nvictimized\r\nvictimizer\r\nvictor\r\nvictoria\r\nvictorian\r\nvictoriana\r\nvictorious\r\nvictory\r\nvictrola\r\nvictual\r\nvictualer\r\nvictualler\r\nvictuals\r\nvicugna\r\nvicuna\r\nvidal\r\nvidar\r\nvidelicet\r\nvideo\r\nvideocassette\r\nvideodisc\r\nvideodisk\r\nvideotape\r\nvidua\r\nvie\r\nvienna\r\nvienne\r\nviennese\r\nvientiane\r\nvieques\r\nvietnam\r\nvietnamese\r\nview\r\nviewable\r\nviewer\r\nviewers\r\nviewfinder\r\nviewgraph\r\nviewing\r\nviewless\r\nviewpoint\r\nvigee-lebrun\r\nvigesimal\r\nvigil\r\nvigilance\r\nvigilant\r\nvigilante\r\nvigilantism\r\nvigilantly\r\nvigna\r\nvignette\r\nvigor\r\nvigorish\r\nvigorous\r\nvigorously\r\nvigour\r\nvii\r\nviii\r\nviking\r\nvila\r\nvile\r\nvileness\r\nvilification\r\nvilifier\r\nvilify\r\nvilipend\r\nvilla\r\nvilla-lobos\r\nvillage\r\nvillager\r\nvillahermosa\r\nvillain\r\nvillainage\r\nvillainess\r\nvillainous\r\nvillainousness\r\nvillainy\r\nvillard\r\nvillein\r\nvilleinage\r\nvilloma\r\nvillon\r\nvillus\r\nvilna\r\nvilnius\r\nvilno\r\nvim\r\nviminaria\r\nvinaceous\r\nvinaigrette\r\nvinblastine\r\nvinca\r\nvincetoxicum\r\nvincible\r\nvincristine\r\nvindicate\r\nvindicated\r\nvindication\r\nvindicator\r\nvindicatory\r\nvindictive\r\nvindictively\r\nvindictiveness\r\nvine\r\nvinegar\r\nvinegariness\r\nvinegarish\r\nvinegarishness\r\nvinegarroon\r\nvinegarweed\r\nvinegary\r\nvinery\r\nvineyard\r\nvingt-et-un\r\nviniculture\r\nvinifera\r\nvinification\r\nvinify\r\nvino\r\nvinogradoff\r\nvinous\r\nvinson\r\nvintage\r\nvintager\r\nvintner\r\nvinyl\r\nvinylbenzene\r\nvinylite\r\nviocin\r\nviol\r\nviola\r\nviolable\r\nviolaceae\r\nviolate\r\nviolated\r\nviolation\r\nviolative\r\nviolator\r\nviolence\r\nviolent\r\nviolently\r\nviolet\r\nviolet-black\r\nviolet-blue\r\nviolet-colored\r\nviolet-coloured\r\nviolet-flowered\r\nviolet-pink\r\nviolet-purple\r\nviolet-scented\r\nviolet-streaked\r\nviolet-tinged\r\nviolet-tinted\r\nviolin\r\nviolinist\r\nviolist\r\nvioloncellist\r\nvioloncello\r\nviomycin\r\nviosterol\r\nvioxx\r\nvip\r\nviper\r\nvipera\r\nviperidae\r\nviracept\r\nviraemia\r\nvirago\r\nviral\r\nviramune\r\nvirazole\r\nvirchow\r\nviremia\r\nvireo\r\nvireonidae\r\nvirga\r\nvirgil\r\nvirgilia\r\nvirgin\r\nvirginal\r\nvirginia\r\nvirginian\r\nvirginity\r\nvirgo\r\nvirgule\r\nviricidal\r\nviricide\r\nviridity\r\nvirile\r\nvirilisation\r\nvirilise\r\nvirilism\r\nvirility\r\nvirilization\r\nvirilize\r\nvirino\r\nvirion\r\nviroid\r\nvirological\r\nvirologist\r\nvirology\r\nvirtu\r\nvirtual\r\nvirtually\r\nvirtue\r\nvirtuosity\r\nvirtuoso\r\nvirtuous\r\nvirtuously\r\nvirtuousness\r\nvirucidal\r\nvirucide\r\nvirulence\r\nvirulency\r\nvirulent\r\nvirus\r\nvirusoid\r\nvis-a-vis\r\nvisa\r\nvisage\r\nvisaged\r\nvisayan\r\nviscaceae\r\nviscacha\r\nviscera\r\nvisceral\r\nviscerally\r\nviscid\r\nviscidity\r\nviscidly\r\nviscidness\r\nviscoelastic\r\nviscometer\r\nviscometric\r\nviscometry\r\nvisconti\r\nviscose\r\nviscosimeter\r\nviscosimetric\r\nviscosimetry\r\nviscosity\r\nviscount\r\nviscountcy\r\nviscountess\r\nviscounty\r\nviscous\r\nviscousness\r\nviscum\r\nviscus\r\nvise\r\nviselike\r\nvishnu\r\nvishnuism\r\nvisibility\r\nvisible\r\nvisibleness\r\nvisibly\r\nvisigoth\r\nvision\r\nvisionary\r\nvisit\r\nvisitant\r\nvisitation\r\nvisiting\r\nvisitor\r\nvisken\r\nvisor\r\nvisored\r\nvista\r\nvistaril\r\nvistula\r\nvisual\r\nvisualisation\r\nvisualise\r\nvisualised\r\nvisualiser\r\nvisualization\r\nvisualize\r\nvisualized\r\nvisualizer\r\nvitaceae\r\nvital\r\nvitalisation\r\nvitalise\r\nvitaliser\r\nvitalism\r\nvitalist\r\nvitality\r\nvitalization\r\nvitalize\r\nvitalizer\r\nvitalizing\r\nvitalness\r\nvitals\r\nvitamin\r\nvitaminise\r\nvitaminize\r\nvitellus\r\nvithar\r\nvitharr\r\nvitiate\r\nvitiated\r\nvitiation\r\nviticulture\r\nviticulturist\r\nvitidaceae\r\nvitiliginous\r\nvitiligo\r\nvitis\r\nvitreous\r\nvitrification\r\nvitrified\r\nvitrify\r\nvitrine\r\nvitriol\r\nvitriolic\r\nvitriolically\r\nvittaria\r\nvittariaceae\r\nvituperate\r\nvituperation\r\nvituperative\r\nvitus\r\nviva\r\nviva-voce\r\nvivace\r\nvivacious\r\nvivacity\r\nvivaldi\r\nvivarium\r\nviverra\r\nviverricula\r\nviverridae\r\nviverrinae\r\nviverrine\r\nvivid\r\nvividness\r\nvivification\r\nvivify\r\nviviparous\r\nvivisect\r\nvivisection\r\nvivisectionist\r\nvixen\r\nvixenish\r\nviyella\r\nviz.\r\nvizcaino\r\nvizier\r\nviziership\r\nvizla\r\nvizor\r\nvladivostok\r\nvlaminck\r\nvldl\r\nvlf\r\nvocable\r\nvocabulary\r\nvocal\r\nvocalic\r\nvocalisation\r\nvocalise\r\nvocaliser\r\nvocalism\r\nvocalist\r\nvocalization\r\nvocalize\r\nvocalizer\r\nvocalizing\r\nvocation\r\nvocational\r\nvocative\r\nvociferate\r\nvociferation\r\nvociferator\r\nvociferous\r\nvodka\r\nvodoun\r\nvogue\r\nvoguish\r\nvogul\r\nvoice\r\nvoiced\r\nvoiceless\r\nvoicelessness\r\nvoicemail\r\nvoiceprint\r\nvoicer\r\nvoicing\r\nvoid\r\nvoidable\r\nvoidance\r\nvoider\r\nvoiding\r\nvoile\r\nvol-au-vent\r\nvolaille\r\nvolans\r\nvolant\r\nvolapuk\r\nvolar\r\nvolary\r\nvolatile\r\nvolatilisable\r\nvolatilise\r\nvolatilised\r\nvolatility\r\nvolatilizable\r\nvolatilize\r\nvolatilized\r\nvolcanic\r\nvolcanism\r\nvolcano\r\nvolcanology\r\nvole\r\nvole-like\r\nvolga\r\nvolgaic\r\nvolgograd\r\nvolition\r\nvolitional\r\nvolitionally\r\nvolkhov\r\nvolley\r\nvolleyball\r\nvolt\r\nvolt-ampere\r\nvolta\r\nvoltage\r\nvoltaic\r\nvoltaire\r\nvoltarean\r\nvoltaren\r\nvoltarian\r\nvolte-face\r\nvoltmeter\r\nvolubility\r\nvoluble\r\nvolubly\r\nvolume\r\nvolumed\r\nvolumeter\r\nvolumetric\r\nvolumetrical\r\nvoluminosity\r\nvoluminous\r\nvoluminousness\r\nvolund\r\nvoluntarily\r\nvoluntary\r\nvolunteer\r\nvoluptuary\r\nvoluptuous\r\nvoluptuousness\r\nvolute\r\nvoluted\r\nvolution\r\nvolva\r\nvolvaria\r\nvolvariaceae\r\nvolvariella\r\nvolvocaceae\r\nvolvocales\r\nvolvox\r\nvolvulus\r\nvombatidae\r\nvomer\r\nvomit\r\nvomiter\r\nvomiting\r\nvomitive\r\nvomitory\r\nvomitus\r\nvonnegut\r\nvoodoo\r\nvoodooism\r\nvoracious\r\nvoraciousness\r\nvoracity\r\nvortex\r\nvorticella\r\nvotary\r\nvote\r\nvoteless\r\nvoter\r\nvoting\r\nvotive\r\nvotyak\r\nvouch\r\nvouchee\r\nvoucher\r\nvouchsafe\r\nvouge\r\nvoussoir\r\nvouvray\r\nvow\r\nvowel\r\nvowelise\r\nvowelize\r\nvowellike\r\nvower\r\nvox\r\nvoyage\r\nvoyager\r\nvoyeur\r\nvoyeurism\r\nvoyeuristic\r\nvoyeuristical\r\nvoznesenski\r\nvroom\r\nvt\r\nvuillard\r\nvulcan\r\nvulcanisation\r\nvulcanise\r\nvulcanised\r\nvulcaniser\r\nvulcanite\r\nvulcanization\r\nvulcanize\r\nvulcanized\r\nvulcanizer\r\nvulcanology\r\nvulgar\r\nvulgarian\r\nvulgarisation\r\nvulgarise\r\nvulgariser\r\nvulgarism\r\nvulgarity\r\nvulgarization\r\nvulgarize\r\nvulgarizer\r\nvulgarly\r\nvulgate\r\nvulnerability\r\nvulnerable\r\nvulpecula\r\nvulpecular\r\nvulpes\r\nvulpine\r\nvultur\r\nvulture\r\nvulturine\r\nvulturous\r\nvulva\r\nvulval\r\nvulvar\r\nvulvectomy\r\nvulvitis\r\nvulvovaginitis\r\nw\r\nw-shaped\r\nw.c.\r\nw.m.d.\r\nwa\r\nwabash\r\nwac\r\nwackily\r\nwacko\r\nwacky\r\nwaco\r\nwad\r\nwadding\r\nwaddle\r\nwaddler\r\nwade\r\nwader\r\nwaders\r\nwadi\r\nwading\r\nwads\r\nwafer\r\nwafer-like\r\nwafer-thin\r\nwaffle\r\nwaffler\r\nwaft\r\nwafture\r\nwag\r\nwage\r\nwage-earning\r\nwager\r\nwagerer\r\nwages\r\nwaggery\r\nwaggish\r\nwaggishness\r\nwaggle\r\nwaggon\r\nwaggoner\r\nwaggonwright\r\nwagner\r\nwagnerian\r\nwagon\r\nwagon-lit\r\nwagoner\r\nwagonwright\r\nwagram\r\nwagtail\r\nwahabi\r\nwahabism\r\nwahhabi\r\nwahhabism\r\nwahoo\r\nwahunsonacock\r\nwahvey\r\nwaif\r\nwaikiki\r\nwail\r\nwailer\r\nwailful\r\nwailing\r\nwain\r\nwainscot\r\nwainscoted\r\nwainscoting\r\nwainscotting\r\nwainwright\r\nwaist\r\nwaist-deep\r\nwaist-high\r\nwaist-length\r\nwaistband\r\nwaistcloth\r\nwaistcoat\r\nwaistline\r\nwait\r\nwaite\r\nwaiter\r\nwaiting\r\nwaitress\r\nwaive\r\nwaiver\r\nwajda\r\nwakashan\r\nwake\r\nwake-robin\r\nwakeboard\r\nwakeful\r\nwakefulness\r\nwakeless\r\nwaken\r\nwakening\r\nwaker\r\nwaking\r\nwalapai\r\nwalbiri\r\nwaldenses\r\nwaldheim\r\nwaldmeister\r\nwale\r\nwales\r\nwalesa\r\nwalhalla\r\nwalk\r\nwalk-in\r\nwalk-on\r\nwalk-through\r\nwalk-to\r\nwalk-up\r\nwalkabout\r\nwalkaway\r\nwalker\r\nwalkie-talkie\r\nwalking\r\nwalkingstick\r\nwalkman\r\nwalkout\r\nwalkover\r\nwalkway\r\nwalky-talky\r\nwall\r\nwall-paperer\r\nwallaby\r\nwallace\r\nwallah\r\nwallboard\r\nwallenstein\r\nwaller\r\nwallet\r\nwalleye\r\nwalleyed\r\nwallflower\r\nwalloon\r\nwallop\r\nwalloper\r\nwalloping\r\nwallow\r\nwallpaper\r\nwallpaperer\r\nwally\r\nwalnut\r\nwalpole\r\nwalrus\r\nwalter\r\nwalton\r\nwaltz\r\nwaltzer\r\nwamble\r\nwampanoag\r\nwampee\r\nwampum\r\nwampumpeag\r\nwan\r\nwanamaker\r\nwand\r\nwandala\r\nwander\r\nwanderer\r\nwandering\r\nwanderlust\r\nwandflower\r\nwane\r\nwangle\r\nwangler\r\nwangling\r\nwaning\r\nwank\r\nwanker\r\nwannabe\r\nwannabee\r\nwanness\r\nwant\r\nwanted\r\nwanter\r\nwanting\r\nwanton\r\nwantonly\r\nwantonness\r\nwapiti\r\nwar\r\nwar-ridden\r\nwar-torn\r\nwar-worn\r\nwaratah\r\nwarble\r\nwarbler\r\nwarburg\r\nward\r\nward-heeler\r\nwarden\r\nwardenship\r\nwarder\r\nwardership\r\nwardress\r\nwardrobe\r\nwardroom\r\nware\r\nwarehouse\r\nwarehouseman\r\nwarehouser\r\nwarehousing\r\nwarfare\r\nwarfarin\r\nwarhead\r\nwarhol\r\nwarhorse\r\nwarily\r\nwariness\r\nwarji\r\nwarlike\r\nwarlock\r\nwarlord\r\nwarlpiri\r\nwarm\r\nwarm-blooded\r\nwarm-toned\r\nwarm-up\r\nwarmed\r\nwarmer\r\nwarmhearted\r\nwarmheartedness\r\nwarming\r\nwarmly\r\nwarmness\r\nwarmonger\r\nwarmongering\r\nwarmth\r\nwarn\r\nwarner\r\nwarning\r\nwarp\r\nwarpath\r\nwarped\r\nwarping\r\nwarplane\r\nwarragal\r\nwarrant\r\nwarranted\r\nwarrantee\r\nwarranter\r\nwarrantor\r\nwarranty\r\nwarren\r\nwarrener\r\nwarrigal\r\nwarring\r\nwarrior\r\nwarriorlike\r\nwarsaw\r\nwarship\r\nwarszawa\r\nwart\r\nwarthog\r\nwartime\r\nwartlike\r\nwartweed\r\nwartwort\r\nwarty\r\nwarwick\r\nwary\r\nwasabi\r\nwash\r\nwash-and-wear\r\nwashable\r\nwashables\r\nwashbasin\r\nwashboard\r\nwashbowl\r\nwashcloth\r\nwashday\r\nwashed\r\nwashed-out\r\nwashed-up\r\nwasher\r\nwasherman\r\nwasherwoman\r\nwashhouse\r\nwashing\r\nwashing-up\r\nwashington\r\nwashingtonian\r\nwashout\r\nwashrag\r\nwashroom\r\nwashstand\r\nwashtub\r\nwashup\r\nwashwoman\r\nwashy\r\nwasp\r\nwasp-waisted\r\nwaspish\r\nwassail\r\nwassailer\r\nwassermann\r\nwastage\r\nwaste\r\nwaste-yard\r\nwastebasket\r\nwastebin\r\nwasted\r\nwasteful\r\nwastefully\r\nwastefulness\r\nwasteland\r\nwaster\r\nwastewater\r\nwasteweir\r\nwasteyard\r\nwasting\r\nwastrel\r\nwatch\r\nwatchband\r\nwatchdog\r\nwatcher\r\nwatchful\r\nwatchfully\r\nwatchfulness\r\nwatching\r\nwatchmaker\r\nwatchman\r\nwatchstrap\r\nwatchtower\r\nwatchword\r\nwater\r\nwater-color\r\nwater-colour\r\nwater-cooled\r\nwater-insoluble\r\nwater-loving\r\nwater-mint\r\nwater-rate\r\nwater-repellent\r\nwater-resistant\r\nwater-shield\r\nwater-skiing\r\nwater-soluble\r\nwater-target\r\nwater-wash\r\nwater-washed\r\nwaterbird\r\nwaterborne\r\nwaterbuck\r\nwaterbury\r\nwatercannon\r\nwatercolor\r\nwatercolorist\r\nwatercolour\r\nwatercolourist\r\nwatercourse\r\nwatercraft\r\nwatercress\r\nwaterdog\r\nwatered\r\nwatered-silk\r\nwaterer\r\nwaterfall\r\nwaterfinder\r\nwaterford\r\nwaterfowl\r\nwaterfront\r\nwatergate\r\nwateriness\r\nwatering\r\nwaterleaf\r\nwaterless\r\nwaterlessness\r\nwaterline\r\nwaterlogged\r\nwaterloo\r\nwaterman\r\nwatermark\r\nwatermeal\r\nwatermelon\r\nwatermelon-shaped\r\nwaterpower\r\nwaterproof\r\nwaterproofed\r\nwaterproofing\r\nwaters\r\nwaterscape\r\nwatershed\r\nwaterside\r\nwaterskin\r\nwaterspout\r\nwatertight\r\nwatertown\r\nwaterway\r\nwaterweed\r\nwaterwheel\r\nwaterworks\r\nwaterworn\r\nwatery\r\nwatery-eyed\r\nwats\r\nwatson\r\nwatt\r\nwatt-hour\r\nwattage\r\nwatteau\r\nwattle\r\nwattmeter\r\nwatts\r\nwatusi\r\nwatutsi\r\nwaugh\r\nwaul\r\nwausau\r\nwave\r\nwave-off\r\nwaveband\r\nwaveform\r\nwavefront\r\nwaveguide\r\nwavelength\r\nwavelet\r\nwavelike\r\nwavell\r\nwaver\r\nwaverer\r\nwavering\r\nwaviness\r\nwaving\r\nwavy\r\nwavy-grained\r\nwaw\r\nwawl\r\nwax\r\nwax-chandler\r\nwax-coated\r\nwaxberry\r\nwaxed\r\nwaxen\r\nwaxflower\r\nwaxiness\r\nwaxing\r\nwaxlike\r\nwaxmallow\r\nwaxwing\r\nwaxwork\r\nwaxy\r\nwaxycap\r\nway\r\nway-out\r\nwaybill\r\nwayfarer\r\nwayfaring\r\nwayland\r\nwaylay\r\nwayne\r\nways\r\nwayside\r\nwayward\r\nwb\r\nwbc\r\nwbn\r\nwbs\r\nweak\r\nweak-kneed\r\nweak-stemmed\r\nweaken\r\nweakened\r\nweakener\r\nweakening\r\nweakfish\r\nweakling\r\nweakly\r\nweakness\r\nweal\r\nweald\r\nwealth\r\nwealthiness\r\nwealthy\r\nwean\r\nweaned\r\nweaning\r\nweapon\r\nweaponed\r\nweaponize\r\nweaponless\r\nweaponry\r\nweapons-grade\r\nwear\r\nwearable\r\nwearer\r\nwearied\r\nwearily\r\nweariness\r\nwearing\r\nwearisome\r\nweary\r\nwearying\r\nweasel\r\nweasel-worded\r\nweather\r\nweather-beaten\r\nweather-bound\r\nweather-stripped\r\nweatherboard\r\nweatherboarding\r\nweathercock\r\nweathered\r\nweatherglass\r\nweatherliness\r\nweatherly\r\nweatherman\r\nweatherproof\r\nweatherstrip\r\nweatherstripping\r\nweathervane\r\nweatherworn\r\nweave\r\nweaver\r\nweaverbird\r\nweaving\r\nweb\r\nweb-footed\r\nweb-toed\r\nwebb\r\nwebbed\r\nwebbing\r\nwebby\r\nwebcam\r\nweber\r\nwebfoot\r\nweblike\r\nwebmaster\r\nwebpage\r\nwebsite\r\nwebster\r\nwebworm\r\nwed\r\nwedded\r\nwedding\r\nwedel\r\nwedge\r\nwedge-shaped\r\nwedged\r\nwedgie\r\nwedgwood\r\nwedlock\r\nwednesday\r\nwee\r\nwee-wee\r\nweed\r\nweed-whacker\r\nweeded\r\nweeder\r\nweedkiller\r\nweedless\r\nweeds\r\nweedy\r\nweek\r\nweekday\r\nweekend\r\nweekender\r\nweeklong\r\nweekly\r\nweeknight\r\nweeness\r\nweenie\r\nweensy\r\nweeny\r\nweep\r\nweeper\r\nweepiness\r\nweeping\r\nweepy\r\nweevil\r\nweewee\r\nweft\r\nwegener\r\nwei\r\nweigela\r\nweigh\r\nweighbridge\r\nweigher\r\nweighing\r\nweight\r\nweight-lift\r\nweighted\r\nweightiness\r\nweighting\r\nweightless\r\nweightlessness\r\nweightlift\r\nweightlifter\r\nweightlifting\r\nweighty\r\nweil\r\nweill\r\nweimar\r\nweimaraner\r\nweinberg\r\nweir\r\nweird\r\nweirdie\r\nweirdness\r\nweirdo\r\nweirdy\r\nweisenheimer\r\nweismann\r\nweissbier\r\nweisshorn\r\nweizenbier\r\nweizenbock\r\nweizmann\r\nweka\r\nwelcher\r\nwelcome\r\nwelcomer\r\nwelcoming\r\nweld\r\nwelder\r\nwelding\r\nweldment\r\nwelfare\r\nwelfare-statist\r\nwelfarist\r\nwelkin\r\nwell\r\nwell-adjusted\r\nwell-advised\r\nwell-appointed\r\nwell-balanced\r\nwell-behaved\r\nwell-being\r\nwell-bound\r\nwell-branched\r\nwell-bred\r\nwell-chosen\r\nwell-conducted\r\nwell-connected\r\nwell-defined\r\nwell-disposed\r\nwell-done\r\nwell-dressed\r\nwell-educated\r\nwell-endowed\r\nwell-favored\r\nwell-favoured\r\nwell-fed\r\nwell-fixed\r\nwell-formed\r\nwell-found\r\nwell-founded\r\nwell-groomed\r\nwell-grooved\r\nwell-grounded\r\nwell-heeled\r\nwell-informed\r\nwell-intentioned\r\nwell-kept\r\nwell-knit\r\nwell-known\r\nwell-lighted\r\nwell-lined\r\nwell-made\r\nwell-mannered\r\nwell-marked\r\nwell-matched\r\nwell-meaning\r\nwell-meant\r\nwell-mined\r\nwell-nigh\r\nwell-nourished\r\nwell-off\r\nwell-ordered\r\nwell-preserved\r\nwell-proportioned\r\nwell-qualified\r\nwell-read\r\nwell-rounded\r\nwell-set\r\nwell-shaven\r\nwell-situated\r\nwell-spoken\r\nwell-stacked\r\nwell-thought-of\r\nwell-timed\r\nwell-to-do\r\nwell-tried\r\nwell-turned\r\nwell-wisher\r\nwell-wishing\r\nwell-worn\r\nwellbeing\r\nwellborn\r\nwellerism\r\nwelles\r\nwellhead\r\nwellington\r\nwellness\r\nwellpoint\r\nwells\r\nwellspring\r\nwelsh\r\nwelsher\r\nwelshman\r\nwelt\r\nweltanschauung\r\nwelter\r\nwelterweight\r\nweltschmerz\r\nwelty\r\nwelwitschia\r\nwelwitschiaceae\r\nwembley\r\nwen\r\nwen-ti\r\nwench\r\nwencher\r\nwend\r\nwerewolf\r\nwerfel\r\nwernicke\r\nweser\r\nwesley\r\nwesleyan\r\nwesleyanism\r\nwesleyism\r\nwessex\r\nwest\r\nwest-central\r\nwest-sider\r\nwestbound\r\nwester\r\nwesterly\r\nwestern\r\nwesterner\r\nwesternisation\r\nwesternise\r\nwesternization\r\nwesternize\r\nwesternmost\r\nwestinghouse\r\nwestminster\r\nwestmost\r\nweston\r\nwestside\r\nwestward\r\nwestwards\r\nwet\r\nwet-nurse\r\nwetback\r\nwether\r\nwetland\r\nwetness\r\nwetnurse\r\nwetter\r\nwetting\r\nwhack\r\nwhacked\r\nwhacker\r\nwhacking\r\nwhacko\r\nwhacky\r\nwhale\r\nwhaleboat\r\nwhalebone\r\nwhaler\r\nwhalesucker\r\nwham\r\nwhammy\r\nwhang\r\nwhap\r\nwharf\r\nwharfage\r\nwharton\r\nwhatchamacallit\r\nwhatchamacallum\r\nwhatever\r\nwhatnot\r\nwhatsis\r\nwhatsoever\r\nwheal\r\nwheat\r\nwheat-grass\r\nwheatear\r\nwheaten\r\nwheatfield\r\nwheatflake\r\nwheatgrass\r\nwheatley\r\nwheatstone\r\nwheatworm\r\nwheedle\r\nwheedler\r\nwheedling\r\nwheel\r\nwheel-like\r\nwheelbarrow\r\nwheelbase\r\nwheelchair\r\nwheeled\r\nwheeler\r\nwheelhouse\r\nwheeling\r\nwheelless\r\nwheelwork\r\nwheelwright\r\nwheeze\r\nwheezily\r\nwheeziness\r\nwheezing\r\nwheezingly\r\nwheezy\r\nwhelk\r\nwhelm\r\nwhelp\r\nwhelped\r\nwhereabouts\r\nwherefore\r\nwherewithal\r\nwherry\r\nwhet\r\nwhetstone\r\nwhey\r\nwhicker\r\nwhidah\r\nwhiff\r\nwhiffer\r\nwhiffletree\r\nwhig\r\nwhile\r\nwhim\r\nwhimper\r\nwhimsey\r\nwhimsical\r\nwhimsicality\r\nwhimsically\r\nwhimsy\r\nwhin\r\nwhinberry\r\nwhinchat\r\nwhine\r\nwhiner\r\nwhiney\r\nwhining\r\nwhinny\r\nwhinstone\r\nwhiny\r\nwhip\r\nwhip-round\r\nwhip-scorpion\r\nwhip-snake\r\nwhipcord\r\nwhiplash\r\nwhiplike\r\nwhipper\r\nwhipper-in\r\nwhippersnapper\r\nwhippet\r\nwhipping\r\nwhippletree\r\nwhippoorwill\r\nwhippoorwill-like\r\nwhippy\r\nwhipsaw\r\nwhipsnake\r\nwhipstitch\r\nwhipstitching\r\nwhiptail\r\nwhir\r\nwhirl\r\nwhirlaway\r\nwhirler\r\nwhirligig\r\nwhirling\r\nwhirlpool\r\nwhirlwind\r\nwhirlybird\r\nwhirr\r\nwhirring\r\nwhish\r\nwhisk\r\nwhisker\r\nwhiskered\r\nwhiskerless\r\nwhiskers\r\nwhiskery\r\nwhiskey\r\nwhisky\r\nwhisper\r\nwhispered\r\nwhisperer\r\nwhispering\r\nwhist\r\nwhistle\r\nwhistle-blower\r\nwhistleblower\r\nwhistler\r\nwhistlestop\r\nwhistling\r\nwhit\r\nwhit-tuesday\r\nwhite\r\nwhite-blotched\r\nwhite-bread\r\nwhite-collar\r\nwhite-edged\r\nwhite-flowered\r\nwhite-haired\r\nwhite-hot\r\nwhite-lipped\r\nwhite-livered\r\nwhite-out\r\nwhite-pink\r\nwhite-ribbed\r\nwhite-seeded\r\nwhite-shoe\r\nwhite-streaked\r\nwhite-tie\r\nwhitebait\r\nwhitecap\r\nwhitecup\r\nwhiteface\r\nwhitefish\r\nwhitefly\r\nwhitehall\r\nwhitehead\r\nwhitehorse\r\nwhitelash\r\nwhiten\r\nwhitened\r\nwhitener\r\nwhiteness\r\nwhitening\r\nwhiteout\r\nwhitetail\r\nwhitethorn\r\nwhitethroat\r\nwhitewash\r\nwhitewashed\r\nwhitewater\r\nwhitewood\r\nwhitey\r\nwhiting\r\nwhitish\r\nwhitlavia\r\nwhitlow\r\nwhitlowwort\r\nwhitman\r\nwhitmonday\r\nwhitney\r\nwhitsun\r\nwhitsunday\r\nwhitsuntide\r\nwhittier\r\nwhittle\r\nwhittler\r\nwhitweek\r\nwhiz\r\nwhiz-kid\r\nwhizbang\r\nwhizz\r\nwhizz-kid\r\nwhizzbang\r\nwho\r\nwhodunit\r\nwhole\r\nwhole-souled\r\nwhole-wheat\r\nwholehearted\r\nwholeheartedness\r\nwholemeal\r\nwholeness\r\nwholesale\r\nwholesaler\r\nwholesome\r\nwholesomeness\r\nwholly\r\nwhomp\r\nwhoop\r\nwhoopee\r\nwhooper\r\nwhoosh\r\nwhop\r\nwhopper\r\nwhopping\r\nwhore\r\nwhoredom\r\nwhorehouse\r\nwhoremaster\r\nwhoremonger\r\nwhoreson\r\nwhorl\r\nwhorled\r\nwhorlywort\r\nwhortleberry\r\nwhy\r\nwhydah\r\nwi\r\nwicca\r\nwiccan\r\nwichita\r\nwick\r\nwicked\r\nwickedly\r\nwickedness\r\nwicker\r\nwickerwork\r\nwicket\r\nwicket-keeper\r\nwickiup\r\nwickliffe\r\nwickup\r\nwiclif\r\nwicopy\r\nwide\r\nwide-angle\r\nwide-awake\r\nwide-body\r\nwide-cut\r\nwide-eyed\r\nwide-open\r\nwide-ranging\r\nwide-screen\r\nwideband\r\nwidely\r\nwiden\r\nwideness\r\nwidening\r\nwidespread\r\nwidgeon\r\nwidget\r\nwidow\r\nwidowed\r\nwidower\r\nwidowhood\r\nwidowman\r\nwidth\r\nwieland\r\nwield\r\nwieldy\r\nwiener\r\nwienerwurst\r\nwiesbaden\r\nwiesel\r\nwiesenboden\r\nwiesenthal\r\nwife\r\nwifelike\r\nwifely\r\nwiffle\r\nwifi\r\nwig\r\nwigeon\r\nwigged\r\nwigging\r\nwiggle\r\nwiggler\r\nwiggliness\r\nwiggling\r\nwiggly\r\nwight\r\nwigless\r\nwigmaker\r\nwigner\r\nwigwag\r\nwigwam\r\nwikiup\r\nwild\r\nwild-eyed\r\nwildcat\r\nwildcatter\r\nwilde\r\nwildebeest\r\nwilder\r\nwilderness\r\nwildfire\r\nwildflower\r\nwildfowl\r\nwilding\r\nwildlife\r\nwildness\r\nwile\r\nwilful\r\nwilfully\r\nwilfulness\r\nwiliness\r\nwilkes\r\nwilkins\r\nwilkinson\r\nwill\r\nwill-o'-the-wisp\r\nwillamette\r\nwillard\r\nwillebrand\r\nwillet\r\nwillful\r\nwillfully\r\nwillfulness\r\nwilliams\r\nwilliamstown\r\nwillies\r\nwilling\r\nwillingly\r\nwillingness\r\nwillis\r\nwillow\r\nwillow-pattern\r\nwillowherb\r\nwillowware\r\nwillowy\r\nwillpower\r\nwilly-nilly\r\nwilmington\r\nwilmut\r\nwilno\r\nwilson\r\nwilsonian\r\nwilt\r\nwilted\r\nwilting\r\nwilton\r\nwily\r\nwimble\r\nwimbledon\r\nwimp\r\nwimpish\r\nwimple\r\nwimpy\r\nwin\r\nwince\r\nwincey\r\nwinceyette\r\nwinch\r\nwinchester\r\nwinckelmann\r\nwind\r\nwindage\r\nwindaus\r\nwindbag\r\nwindblown\r\nwindbreak\r\nwindbreaker\r\nwindburn\r\nwindburned\r\nwindburnt\r\nwindcheater\r\nwinded\r\nwinder\r\nwindfall\r\nwindflower\r\nwindhoek\r\nwindily\r\nwindiness\r\nwinding\r\nwinding-clothes\r\nwinding-sheet\r\nwindjammer\r\nwindlass\r\nwindless\r\nwindlessness\r\nwindmill\r\nwindow\r\nwindow-dress\r\nwindow-shop\r\nwindow-washing\r\nwindowpane\r\nwindows\r\nwindowsill\r\nwindpipe\r\nwindscreen\r\nwindshield\r\nwindsock\r\nwindsor\r\nwindstorm\r\nwindsurf\r\nwindswept\r\nwindtalker\r\nwindup\r\nwindward\r\nwindy\r\nwine\r\nwine-colored\r\nwine-red\r\nwineberry\r\nwineglass\r\nwinemaker\r\nwinemaking\r\nwinepress\r\nwinery\r\nwinesap\r\nwineskin\r\nwiney\r\nwinfred\r\nwing\r\nwing-nut\r\nwing-shaped\r\nwingback\r\nwinged\r\nwinger\r\nwingless\r\nwinglike\r\nwingman\r\nwings\r\nwingspan\r\nwingspread\r\nwingstem\r\nwink\r\nwinker\r\nwinking\r\nwinkle\r\nwinless\r\nwinnebago\r\nwinner\r\nwinning\r\nwinnings\r\nwinnipeg\r\nwinnow\r\nwinnowing\r\nwino\r\nwinslow\r\nwinsome\r\nwinsomely\r\nwinsomeness\r\nwinston-salem\r\nwinter\r\nwinter-blooming\r\nwinter-flowering\r\nwintera\r\nwinteraceae\r\nwinterberry\r\nwintergreen\r\nwinterise\r\nwinterize\r\nwintertime\r\nwintery\r\nwintry\r\nwintun\r\nwiny\r\nwipe\r\nwipeout\r\nwiper\r\nwire\r\nwire-haired\r\nwire-puller\r\nwired\r\nwirehair\r\nwireless\r\nwireman\r\nwirer\r\nwiretap\r\nwiretapper\r\nwirework\r\nwireworm\r\nwiriness\r\nwiring\r\nwiry\r\nwiry-coated\r\nwiry-stemmed\r\nwisconsin\r\nwisconsinite\r\nwisdom\r\nwise\r\nwiseacre\r\nwisecrack\r\nwisely\r\nwiseness\r\nwisenheimer\r\nwisent\r\nwish\r\nwish-wash\r\nwishbone\r\nwished-for\r\nwishful\r\nwishfulness\r\nwishing\r\nwishy-washy\r\nwisp\r\nwisplike\r\nwispy\r\nwistaria\r\nwister\r\nwisteria\r\nwistful\r\nwistfulness\r\nwit\r\nwitch\r\nwitch-hunt\r\nwitch-hunter\r\nwitchcraft\r\nwitchery\r\nwitchgrass\r\nwitching\r\nwitchlike\r\nwith-it\r\nwithal\r\nwithdraw\r\nwithdrawal\r\nwithdrawer\r\nwithdrawing\r\nwithdrawn\r\nwithdrawnness\r\nwithe\r\nwither\r\nwithered\r\nwithering\r\nwithers\r\nwitherspoon\r\nwithhold\r\nwithholder\r\nwithholding\r\nwithin\r\nwithstand\r\nwithstander\r\nwithy\r\nwitless\r\nwitloof\r\nwitness\r\nwitnesser\r\nwits\r\nwittgenstein\r\nwittgensteinian\r\nwitticism\r\nwittiness\r\nwitting\r\nwittingly\r\nwittol\r\nwitty\r\nwitwatersrand\r\nwive\r\nwivern\r\nwiz\r\nwizard\r\nwizardly\r\nwizardry\r\nwizen\r\nwizened\r\nwlan\r\nwmd\r\nwmo\r\nwnw\r\nwoad\r\nwoadwaxen\r\nwobble\r\nwobbler\r\nwobbling\r\nwobbly\r\nwodan\r\nwodehouse\r\nwoden\r\nwoe\r\nwoebegone\r\nwoeful\r\nwoefully\r\nwoefulness\r\nwog\r\nwok\r\nwold\r\nwolf\r\nwolf-sized\r\nwolf-whistle\r\nwolfbane\r\nwolfe\r\nwolff\r\nwolffia\r\nwolffiella\r\nwolffish\r\nwolfhound\r\nwolfish\r\nwolflike\r\nwolfman\r\nwolfram\r\nwolframite\r\nwolfsbane\r\nwollaston\r\nwollastonite\r\nwollstonecraft\r\nwolof\r\nwolverine\r\nwoman\r\nwoman-worship\r\nwomanhood\r\nwomanise\r\nwomaniser\r\nwomanish\r\nwomanishness\r\nwomanize\r\nwomanizer\r\nwomankind\r\nwomanlike\r\nwomanliness\r\nwomanly\r\nwomb\r\nwomb-to-tomb\r\nwombat\r\nwon\r\nwonder\r\nwonder-struck\r\nwonderberry\r\nwonderer\r\nwonderful\r\nwonderfully\r\nwonderfulness\r\nwondering\r\nwonderingly\r\nwonderland\r\nwonderment\r\nwonderworking\r\nwondrous\r\nwondrously\r\nwonk\r\nwonky\r\nwont\r\nwonted\r\nwonton\r\nwoo\r\nwood\r\nwood-creeper\r\nwood-fern\r\nwood-frog\r\nwood-rat\r\nwoodbine\r\nwoodborer\r\nwoodbury\r\nwoodcarver\r\nwoodcarving\r\nwoodchuck\r\nwoodcock\r\nwoodcraft\r\nwoodcreeper\r\nwoodcut\r\nwoodcutter\r\nwooded\r\nwooden\r\nwooden-headed\r\nwoodenly\r\nwoodenness\r\nwoodenware\r\nwoodfern\r\nwoodgrain\r\nwoodgraining\r\nwoodhewer\r\nwoodhull\r\nwoodiness\r\nwoodland\r\nwoodlet\r\nwoodlouse\r\nwoodman\r\nwoodpecker\r\nwoodpile\r\nwoodruff\r\nwoods\r\nwoodscrew\r\nwoodshed\r\nwoodsia\r\nwoodsiness\r\nwoodsman\r\nwoodsy\r\nwoodward\r\nwoodwardia\r\nwoodwaxen\r\nwoodwind\r\nwoodwork\r\nwoodworker\r\nwoodworking\r\nwoodworm\r\nwoody\r\nwoody-stemmed\r\nwooer\r\nwoof\r\nwoofer\r\nwooing\r\nwool\r\nwoolen\r\nwoolf\r\nwoolgather\r\nwoolgatherer\r\nwoolgathering\r\nwoollcott\r\nwoollen\r\nwoolley\r\nwoolly\r\nwoolly-haired\r\nwoolly-headed\r\nwoolly-stemmed\r\nwoolsorter\r\nwoolworth\r\nwooly\r\nwooly-haired\r\nwooly-minded\r\nwoosh\r\nwoozy\r\nwop\r\nworcester\r\nworcestershire\r\nword\r\nword-blind\r\nword-of-mouth\r\nword-painter\r\nword-painting\r\nword-perfect\r\nword-splitting\r\nword-worship\r\nwordbook\r\nwordfinder\r\nwordily\r\nwordiness\r\nwording\r\nwordless\r\nwordlessly\r\nwordmonger\r\nwordnet\r\nwordplay\r\nwords\r\nwordsmith\r\nwordsworth\r\nwordsworthian\r\nwordy\r\nwork\r\nwork-board\r\nwork-clothes\r\nwork-clothing\r\nwork-in\r\nwork-shirt\r\nwork-shy\r\nworkable\r\nworkaday\r\nworkaholic\r\nworkaholism\r\nworkbag\r\nworkbasket\r\nworkbench\r\nworkboard\r\nworkbook\r\nworkbox\r\nworkday\r\nworker\r\nworkfellow\r\nworkflow\r\nworkforce\r\nworkhorse\r\nworkhouse\r\nworking\r\nworking-class\r\nworkingman\r\nworkings\r\nworkload\r\nworkman\r\nworkmanlike\r\nworkmanship\r\nworkmate\r\nworkout\r\nworkpiece\r\nworkplace\r\nworkroom\r\nworks\r\nworksheet\r\nworkshop\r\nworkspace\r\nworkstation\r\nworktable\r\nworkwear\r\nworkweek\r\nworld\r\nworld-beater\r\nworld-class\r\nworld-shaking\r\nworld-shattering\r\nworld-weariness\r\nworld-weary\r\nworld-wide\r\nworldliness\r\nworldling\r\nworldly\r\nworldly-minded\r\nworldly-wise\r\nworldwide\r\nworm\r\nworm-eaten\r\nworm-shaped\r\nwormcast\r\nwormhole\r\nwormlike\r\nwormseed\r\nwormwood\r\nwormy\r\nworn\r\nworn-out\r\nworried\r\nworrier\r\nworriment\r\nworrisome\r\nworry\r\nworrying\r\nworrywart\r\nworse\r\nworsen\r\nworsened\r\nworsening\r\nworship\r\nworshiper\r\nworshipful\r\nworshiping\r\nworshipped\r\nworshipper\r\nworshipping\r\nworst\r\nworsted\r\nwort\r\nworth\r\nworthful\r\nworthiness\r\nworthless\r\nworthlessness\r\nworthwhile\r\nworthwhileness\r\nworthy\r\nwotan\r\nwouk\r\nwould-be\r\nwound\r\nwounded\r\nwounding\r\nwoven\r\nwow\r\nwpm\r\nwrack\r\nwraith\r\nwraithlike\r\nwrangle\r\nwrangler\r\nwrangling\r\nwrap\r\nwraparound\r\nwrapped\r\nwrapper\r\nwrapping\r\nwrasse\r\nwrath\r\nwrathful\r\nwrawl\r\nwreak\r\nwreath\r\nwreathe\r\nwreathed\r\nwreck\r\nwreckage\r\nwrecked\r\nwrecker\r\nwreckfish\r\nwrecking\r\nwren\r\nwren-tit\r\nwrench\r\nwrenching\r\nwrest\r\nwrester\r\nwrestle\r\nwrestler\r\nwrestling\r\nwretch\r\nwretched\r\nwretchedness\r\nwrick\r\nwriggle\r\nwriggler\r\nwriggling\r\nwriggly\r\nwright\r\nwring\r\nwringer\r\nwrinkle\r\nwrinkle-resistant\r\nwrinkled\r\nwrinkleless\r\nwrinkleproof\r\nwrinkly\r\nwrist\r\nwristband\r\nwristlet\r\nwristwatch\r\nwrit\r\nwrite\r\nwrite-down\r\nwrite-in\r\nwrite-off\r\nwriter\r\nwrithe\r\nwrithed\r\nwrithen\r\nwrithing\r\nwriting\r\nwritings\r\nwritten\r\nwroclaw\r\nwrong\r\nwrong-side-out\r\nwrongdoer\r\nwrongdoing\r\nwrongful\r\nwrongfulness\r\nwrongheaded\r\nwrongly\r\nwrongness\r\nwroth\r\nwrothful\r\nwrought\r\nwry\r\nwrymouth\r\nwryneck\r\nwsw\r\nwtc\r\nwto\r\nwtv\r\nwu\r\nwuerzburg\r\nwuhan\r\nwulfenite\r\nwulfila\r\nwurlitzer\r\nwurzburg\r\nwuss\r\nwv\r\nwww\r\nwy\r\nwyat\r\nwyatt\r\nwycherley\r\nwyclif\r\nwycliffe\r\nwye\r\nwyeth\r\nwykeham\r\nwykehamist\r\nwyler\r\nwylie\r\nwynette\r\nwynfrith\r\nwynnea\r\nwyoming\r\nwyomingite\r\nwyrd\r\nwysiwyg\r\nwyszynski\r\nwytensin\r\nwyvern\r\nx\r\nx-axis\r\nx-linked\r\nx-radiation\r\nx-ray\r\nx-raying\r\nx-scid\r\nxanax\r\nxanthate\r\nxanthelasma\r\nxanthemia\r\nxanthine\r\nxanthium\r\nxanthoma\r\nxanthomatosis\r\nxanthomonad\r\nxanthomonas\r\nxanthophyceae\r\nxanthophyl\r\nxanthophyll\r\nxanthopsia\r\nxanthorrhoeaceae\r\nxanthorroea\r\nxanthosis\r\nxanthosoma\r\nxanthous\r\nxantusiidae\r\nxavier\r\nxc\r\nxci\r\nxcii\r\nxciii\r\nxciv\r\nxcl\r\nxcv\r\nxcvi\r\nxcvii\r\nxcviii\r\nxe\r\nxenarthra\r\nxenicidae\r\nxenicus\r\nxenogeneic\r\nxenogenesis\r\nxenograft\r\nxenolith\r\nxenon\r\nxenophanes\r\nxenophobia\r\nxenophobic\r\nxenophon\r\nxenopodidae\r\nxenopus\r\nxenorhyncus\r\nxenosauridae\r\nxenosaurus\r\nxenotime\r\nxenotransplant\r\nxenotransplantation\r\nxeranthemum\r\nxeric\r\nxerobates\r\nxeroderma\r\nxerodermia\r\nxerographic\r\nxerography\r\nxeroma\r\nxerophile\r\nxerophthalmia\r\nxerophthalmus\r\nxerophyllum\r\nxerophyte\r\nxerophytic\r\nxeroradiography\r\nxerostomia\r\nxerotes\r\nxerox\r\nxhosa\r\nxi\r\nxian\r\nxii\r\nxiii\r\nxinjiang\r\nxiphias\r\nxiphiidae\r\nxiphosura\r\nxiv\r\nxix\r\nxizang\r\nxl\r\nxli\r\nxlii\r\nxliii\r\nxliv\r\nxlv\r\nxlvi\r\nxlvii\r\nxlviii\r\nxmas\r\nxt\r\nxtc\r\nxv\r\nxvi\r\nxvii\r\nxviii\r\nxx\r\nxxi\r\nxxii\r\nxxiii\r\nxxiv\r\nxxix\r\nxxv\r\nxxvi\r\nxxvii\r\nxxviii\r\nxxx\r\nxxxi\r\nxxxii\r\nxxxiii\r\nxxxiv\r\nxxxv\r\nxxxvi\r\nxxxvii\r\nxxxviii\r\nxxy\r\nxxy-syndrome\r\nxy\r\nxylaria\r\nxylariaceae\r\nxylem\r\nxylene\r\nxylocaine\r\nxylocopa\r\nxylol\r\nxylomelum\r\nxylophone\r\nxylophonist\r\nxylopia\r\nxylose\r\nxylosma\r\nxyphophorus\r\nxyridaceae\r\nxyridales\r\nxyris\r\nxyy\r\ny\r\ny-axis\r\ny-shaped\r\ny2k\r\nyacca\r\nyacht\r\nyachting\r\nyachtsman\r\nyachtswoman\r\nyack\r\nyafo\r\nyagi\r\nyahi\r\nyahoo\r\nyahve\r\nyahveh\r\nyahwe\r\nyahweh\r\nyajur-veda\r\nyak\r\nyakety-yak\r\nyakima\r\nyakut\r\nyakuza\r\nyale\r\nyalta\r\nyaltopya\r\nyalu\r\nyam\r\nyama\r\nyamaltu\r\nyamamoto\r\nyamani\r\nyammer\r\nyamoussukro\r\nyana\r\nyanan\r\nyang\r\nyangon\r\nyangtze\r\nyank\r\nyankee\r\nyankee-doodle\r\nyanker\r\nyanquapin\r\nyaounde\r\nyap\r\nyard\r\nyardage\r\nyardarm\r\nyardbird\r\nyarder\r\nyardgrass\r\nyardie\r\nyardman\r\nyardmaster\r\nyardstick\r\nyarmelke\r\nyarmulka\r\nyarmulke\r\nyarn\r\nyarn-dye\r\nyarn-spinning\r\nyarrow\r\nyashmac\r\nyashmak\r\nyastrzemski\r\nyataghan\r\nyatobyo\r\nyaup\r\nyautia\r\nyavapai\r\nyaw\r\nyawl\r\nyawn\r\nyawner\r\nyawning\r\nyawp\r\nyaws\r\nyay\r\nyazoo\r\nyb\r\nyea\r\nyeah\r\nyear\r\nyear-around\r\nyear-end\r\nyear-round\r\nyearbook\r\nyearling\r\nyearlong\r\nyearly\r\nyearn\r\nyearned-for\r\nyearner\r\nyearning\r\nyearningly\r\nyears\r\nyeast\r\nyeastlike\r\nyeasty\r\nyeats\r\nyeatsian\r\nyeddo\r\nyedo\r\nyekaterinoslav\r\nyell\r\nyelled\r\nyeller\r\nyelling\r\nyellow\r\nyellow-banded\r\nyellow-beige\r\nyellow-bellied\r\nyellow-blindness\r\nyellow-brown\r\nyellow-gray\r\nyellow-green\r\nyellow-grey\r\nyellow-marked\r\nyellow-orange\r\nyellow-spotted\r\nyellow-striped\r\nyellow-tinged\r\nyellow-tipped\r\nyellow-white\r\nyellowbird\r\nyellowcake\r\nyellowed\r\nyellowfin\r\nyellowhammer\r\nyellowish\r\nyellowish-beige\r\nyellowish-gray\r\nyellowish-grey\r\nyellowish-orange\r\nyellowish-white\r\nyellowknife\r\nyellowlegs\r\nyellowness\r\nyellowstone\r\nyellowtail\r\nyellowthroat\r\nyellowwood\r\nyelp\r\nyelping\r\nyemen\r\nyemeni\r\nyen\r\nyenisei\r\nyenisei-samoyed\r\nyeniseian\r\nyenisey\r\nyenta\r\nyeoman\r\nyeomanry\r\nyerevan\r\nyerkes\r\nyersin\r\nyerupaja\r\nyerwa-maiduguri\r\nyes\r\nyes-man\r\nyeshiva\r\nyeshivah\r\nyesterday\r\nyesteryear\r\nyet\r\nyeti\r\nyevtushenko\r\nyew\r\nyezo\r\nygdrasil\r\nyggdrasil\r\nyhvh\r\nyhwh\r\nyi\r\nyid\r\nyiddish\r\nyield\r\nyielder\r\nyielding\r\nyieldingly\r\nyin\r\nyip\r\nyips\r\nyisrael\r\nylang-ylang\r\nylem\r\nymir\r\nyo-yo\r\nyob\r\nyobbo\r\nyobo\r\nyodel\r\nyodeling\r\nyodeller\r\nyodh\r\nyoga\r\nyogacara\r\nyoghourt\r\nyoghurt\r\nyogi\r\nyogic\r\nyogistic\r\nyogurt\r\nyoke\r\nyokel\r\nyokel-like\r\nyokelish\r\nyokohama\r\nyokuts\r\nyolk\r\nyon\r\nyonder\r\nyore\r\nyork\r\nyorkshire\r\nyorktown\r\nyorktwon\r\nyoruba\r\nyosemite\r\nyou\r\nyou-drive\r\nyoung\r\nyoung-bearing\r\nyoung-begetting\r\nyounger\r\nyoungish\r\nyoungness\r\nyoungster\r\nyoungstown\r\nyounker\r\nyouth\r\nyouth-on-age\r\nyouthful\r\nyouthfulness\r\nyowl\r\nypres\r\nyquem\r\nyr\r\nytterbite\r\nytterbium\r\nyttrium\r\nyuan\r\nyucatan\r\nyucatec\r\nyucateco\r\nyucca\r\nyucky\r\nyue\r\nyugoslav\r\nyugoslavia\r\nyugoslavian\r\nyukawa\r\nyukon\r\nyule\r\nyuletide\r\nyuma\r\nyuman\r\nyummy\r\nyunnan\r\nyuppie\r\nyurak-samoyed\r\nyurt\r\nz\r\nz-axis\r\nzaar\r\nzabaglione\r\nzabrze\r\nzacharias\r\nzaftig\r\nzag\r\nzaglossus\r\nzagreb\r\nzaharias\r\nzaire\r\nzairean\r\nzairese\r\nzakat\r\nzalophus\r\nzama\r\nzaman\r\nzamang\r\nzambezi\r\nzambia\r\nzambian\r\nzamboni\r\nzamia\r\nzamiaceae\r\nzangwill\r\nzannichellia\r\nzannichelliaceae\r\nzantac\r\nzantedeschia\r\nzanthoxylum\r\nzanuck\r\nzany\r\nzanzibar\r\nzap\r\nzapata\r\nzapodidae\r\nzapotec\r\nzapotecan\r\nzapper\r\nzapus\r\nzaragoza\r\nzarathustra\r\nzarf\r\nzaria\r\nzarontin\r\nzarpanit\r\nzarqa\r\nzayin\r\nzdv\r\nzea\r\nzeal\r\nzealand\r\nzealander\r\nzealot\r\nzealotry\r\nzealous\r\nzeaxanthin\r\nzebra\r\nzebrawood\r\nzebu\r\nzechariah\r\nzed\r\nzee\r\nzeeman\r\nzeidae\r\nzeitgeist\r\nzen\r\nzenaidura\r\nzend\r\nzend-avesta\r\nzenith\r\nzenithal\r\nzeno\r\nzeolite\r\nzeomorphi\r\nzep\r\nzephaniah\r\nzephyr\r\nzeppelin\r\nzeppo\r\nzero\r\nzeroth\r\nzest\r\nzestful\r\nzestfully\r\nzestfulness\r\nzestily\r\nzestril\r\nzesty\r\nzeta\r\nzetland\r\nzeugma\r\nzeus\r\nzhou\r\nzhuang\r\nzhukov\r\nzidovudine\r\nziegfeld\r\nziegler\r\nzig\r\nzigadene\r\nzigadenus\r\nziggurat\r\nzigzag\r\nzikkurat\r\nzikurat\r\nzilch\r\nzill\r\nzillion\r\nzimbabwe\r\nzimbabwean\r\nzimbalist\r\nzimmer\r\nzinacef\r\nzinc\r\nzinfandel\r\nzing\r\nzinger\r\nzingiber\r\nzingiberaceae\r\nzinjanthropus\r\nzinkenite\r\nzinnemann\r\nzinnia\r\nzinnwaldite\r\nzinsser\r\nzinzendorf\r\nzion\r\nzionism\r\nzionist\r\nzip\r\nziphiidae\r\nzipper\r\nzippo\r\nzippy\r\nzirbanit\r\nzircon\r\nzirconia\r\nzirconium\r\nzit\r\nzither\r\nzithern\r\nziti\r\nzizania\r\nziziphus\r\nzizz\r\nzloty\r\nzn\r\nzoanthropy\r\nzoarces\r\nzoarcidae\r\nzocor\r\nzodiac\r\nzodiacal\r\nzoftig\r\nzoic\r\nzoisia\r\nzola\r\nzolaesque\r\nzoloft\r\nzomba\r\nzombi\r\nzombie\r\nzona\r\nzonal\r\nzonary\r\nzone\r\nzoning\r\nzonotrichia\r\nzonula\r\nzonule\r\nzoo\r\nzooerastia\r\nzooerasty\r\nzooflagellate\r\nzooid\r\nzoolatry\r\nzoological\r\nzoologist\r\nzoology\r\nzoom\r\nzoomastigina\r\nzoomastigote\r\nzoomorphism\r\nzoonosis\r\nzoonotic\r\nzoophagous\r\nzoophilia\r\nzoophilism\r\nzoophobia\r\nzoophyte\r\nzooplankton\r\nzoopsia\r\nzoospore\r\nzootoxin\r\nzori\r\nzoril\r\nzoroaster\r\nzoroastrian\r\nzoroastrianism\r\nzoster\r\nzostera\r\nzosteraceae\r\nzovirax\r\nzoysia\r\nzr\r\nzsigmondy\r\nzu\r\nzubird\r\nzucchini\r\nzukerman\r\nzulu\r\nzuni\r\nzurich\r\nzurvan\r\nzurvanism\r\nzweig\r\nzwieback\r\nzwingli\r\nzworykin\r\nzydeco\r\nzygnema\r\nzygnemales\r\nzygnemataceae\r\nzygnematales\r\nzygocactus\r\nzygodactyl\r\nzygoma\r\nzygomatic\r\nzygomorphic\r\nzygomorphous\r\nzygomycetes\r\nzygomycota\r\nzygomycotina\r\nzygophyllaceae\r\nzygophyllum\r\nzygoptera\r\nzygospore\r\nzygote\r\nzygotene\r\nzygotic\r\nzyloprim\r\nzymase\r\nzymogen\r\nzymoid\r\nzymolysis\r\nzymolytic\r\nzymosis\r\nzymotic\r\nzymurgy\r\n"
  },
  {
    "path": "Quelea/fopcfg.xml",
    "content": "<fop version=\"2.0\"> \r\n    <base>.</base>\r\n    <use-cache>false</use-cache>\r\n    <renderers> \r\n        <renderer mime=\"application/pdf\"> \r\n            <fonts>\r\n                <directory>icons/bundledfonts</directory>\r\n            </fonts>\r\n        </renderer> \r\n    </renderers> \r\n</fop> \r\n"
  },
  {
    "path": "Quelea/gradle/wrapper/gradle-wrapper.properties",
    "content": "distributionBase=GRADLE_USER_HOME\ndistributionPath=wrapper/dists\ndistributionUrl=https\\://services.gradle.org/distributions/gradle-9.2.1-bin.zip\nnetworkTimeout=10000\nvalidateDistributionUrl=true\nzipStoreBase=GRADLE_USER_HOME\nzipStorePath=wrapper/dists\n"
  },
  {
    "path": "Quelea/gradle.properties",
    "content": "queleaversion=2026.0\ndistdir=dist\n"
  },
  {
    "path": "Quelea/gradlew",
    "content": "#!/bin/sh\n\n#\n# Copyright © 2015 the original authors.\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#      https://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# SPDX-License-Identifier: Apache-2.0\n#\n\n##############################################################################\n#\n#   Gradle start up script for POSIX generated by Gradle.\n#\n#   Important for running:\n#\n#   (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is\n#       noncompliant, but you have some other compliant shell such as ksh or\n#       bash, then to run this script, type that shell name before the whole\n#       command line, like:\n#\n#           ksh Gradle\n#\n#       Busybox and similar reduced shells will NOT work, because this script\n#       requires all of these POSIX shell features:\n#         * functions;\n#         * expansions «$var», «${var}», «${var:-default}», «${var+SET}»,\n#           «${var#prefix}», «${var%suffix}», and «$( cmd )»;\n#         * compound commands having a testable exit status, especially «case»;\n#         * various built-in commands including «command», «set», and «ulimit».\n#\n#   Important for patching:\n#\n#   (2) This script targets any POSIX shell, so it avoids extensions provided\n#       by Bash, Ksh, etc; in particular arrays are avoided.\n#\n#       The \"traditional\" practice of packing multiple parameters into a\n#       space-separated string is a well documented source of bugs and security\n#       problems, so this is (mostly) avoided, by progressively accumulating\n#       options in \"$@\", and eventually passing that to Java.\n#\n#       Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS,\n#       and GRADLE_OPTS) rely on word-splitting, this is performed explicitly;\n#       see the in-line comments for details.\n#\n#       There are tweaks for specific operating systems such as AIX, CygWin,\n#       Darwin, MinGW, and NonStop.\n#\n#   (3) This script is generated from the Groovy template\n#       https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt\n#       within the Gradle project.\n#\n#       You can find Gradle at https://github.com/gradle/gradle/.\n#\n##############################################################################\n\n# Attempt to set APP_HOME\n\n# Resolve links: $0 may be a link\napp_path=$0\n\n# Need this for daisy-chained symlinks.\nwhile\n    APP_HOME=${app_path%\"${app_path##*/}\"}  # leaves a trailing /; empty if no leading path\n    [ -h \"$app_path\" ]\ndo\n    ls=$( ls -ld \"$app_path\" )\n    link=${ls#*' -> '}\n    case $link in             #(\n      /*)   app_path=$link ;; #(\n      *)    app_path=$APP_HOME$link ;;\n    esac\ndone\n\n# This is normally unused\n# shellcheck disable=SC2034\nAPP_BASE_NAME=${0##*/}\n# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)\nAPP_HOME=$( cd -P \"${APP_HOME:-./}\" > /dev/null && printf '%s\\n' \"$PWD\" ) || exit\n\n# Use the maximum available, or set MAX_FD != -1 to use that value.\nMAX_FD=maximum\n\nwarn () {\n    echo \"$*\"\n} >&2\n\ndie () {\n    echo\n    echo \"$*\"\n    echo\n    exit 1\n} >&2\n\n# OS specific support (must be 'true' or 'false').\ncygwin=false\nmsys=false\ndarwin=false\nnonstop=false\ncase \"$( uname )\" in                #(\n  CYGWIN* )         cygwin=true  ;; #(\n  Darwin* )         darwin=true  ;; #(\n  MSYS* | MINGW* )  msys=true    ;; #(\n  NONSTOP* )        nonstop=true ;;\nesac\n\n\n\n# Determine the Java command to use to start the JVM.\nif [ -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    else\n        JAVACMD=$JAVA_HOME/bin/java\n    fi\n    if [ ! -x \"$JAVACMD\" ] ; then\n        die \"ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME\n\nPlease set the JAVA_HOME variable in your environment to match the\nlocation of your Java installation.\"\n    fi\nelse\n    JAVACMD=java\n    if ! command -v java >/dev/null 2>&1\n    then\n        die \"ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.\n\nPlease set the JAVA_HOME variable in your environment to match the\nlocation of your Java installation.\"\n    fi\nfi\n\n# Increase the maximum file descriptors if we can.\nif ! \"$cygwin\" && ! \"$darwin\" && ! \"$nonstop\" ; then\n    case $MAX_FD in #(\n      max*)\n        # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.\n        # shellcheck disable=SC2039,SC3045\n        MAX_FD=$( ulimit -H -n ) ||\n            warn \"Could not query maximum file descriptor limit\"\n    esac\n    case $MAX_FD in  #(\n      '' | soft) :;; #(\n      *)\n        # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.\n        # shellcheck disable=SC2039,SC3045\n        ulimit -n \"$MAX_FD\" ||\n            warn \"Could not set maximum file descriptor limit to $MAX_FD\"\n    esac\nfi\n\n# Collect all arguments for the java command, stacking in reverse order:\n#   * args from the command line\n#   * the main class name\n#   * -classpath\n#   * -D...appname settings\n#   * --module-path (only if needed)\n#   * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables.\n\n# For Cygwin or MSYS, switch paths to Windows format before running java\nif \"$cygwin\" || \"$msys\" ; then\n    APP_HOME=$( cygpath --path --mixed \"$APP_HOME\" )\n\n    JAVACMD=$( cygpath --unix \"$JAVACMD\" )\n\n    # Now convert the arguments - kludge to limit ourselves to /bin/sh\n    for arg do\n        if\n            case $arg in                                #(\n              -*)   false ;;                            # don't mess with options #(\n              /?*)  t=${arg#/} t=/${t%%/*}              # looks like a POSIX filepath\n                    [ -e \"$t\" ] ;;                      #(\n              *)    false ;;\n            esac\n        then\n            arg=$( cygpath --path --ignore --mixed \"$arg\" )\n        fi\n        # Roll the args list around exactly as many times as the number of\n        # args, so each arg winds up back in the position where it started, but\n        # possibly modified.\n        #\n        # NB: a `for` loop captures its iteration list before it begins, so\n        # changing the positional parameters here affects neither the number of\n        # iterations, nor the values presented in `arg`.\n        shift                   # remove old arg\n        set -- \"$@\" \"$arg\"      # push replacement arg\n    done\nfi\n\n\n# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.\nDEFAULT_JVM_OPTS='\"-Xmx64m\" \"-Xms64m\"'\n\n# Collect all arguments for the java command:\n#   * DEFAULT_JVM_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,\n#     and any embedded shellness will be escaped.\n#   * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be\n#     treated as '${Hostname}' itself on the command line.\n\nset -- \\\n        \"-Dorg.gradle.appname=$APP_BASE_NAME\" \\\n        -jar \"$APP_HOME/gradle/wrapper/gradle-wrapper.jar\" \\\n        \"$@\"\n\n# Stop when \"xargs\" is not available.\nif ! command -v xargs >/dev/null 2>&1\nthen\n    die \"xargs is not available\"\nfi\n\n# Use \"xargs\" to parse quoted args.\n#\n# With -n1 it outputs one arg per line, with the quotes and backslashes removed.\n#\n# In Bash we could simply go:\n#\n#   readarray ARGS < <( xargs -n1 <<<\"$var\" ) &&\n#   set -- \"${ARGS[@]}\" \"$@\"\n#\n# but POSIX shell has neither arrays nor command substitution, so instead we\n# post-process each arg (as a line of input to sed) to backslash-escape any\n# character that might be a shell metacharacter, then use eval to reverse\n# that process (while maintaining the separation between arguments), and wrap\n# the whole thing up as a single \"set\" statement.\n#\n# This will of course break if any of these variables contains a newline or\n# an unmatched quote.\n#\n\neval \"set -- $(\n        printf '%s\\n' \"$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS\" |\n        xargs -n1 |\n        sed ' s~[^-[:alnum:]+,./:=@_]~\\\\&~g; ' |\n        tr '\\n' ' '\n    )\" '\"$@\"'\n\nexec \"$JAVACMD\" \"$@\"\n"
  },
  {
    "path": "Quelea/gradlew.bat",
    "content": "@rem\r\n@rem Copyright 2015 the original author or authors.\r\n@rem\r\n@rem Licensed under the Apache License, Version 2.0 (the \"License\");\r\n@rem you may not use this file except in compliance with the License.\r\n@rem You may obtain a copy of the License at\r\n@rem\r\n@rem      https://www.apache.org/licenses/LICENSE-2.0\r\n@rem\r\n@rem Unless required by applicable law or agreed to in writing, software\r\n@rem distributed under the License is distributed on an \"AS IS\" BASIS,\r\n@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n@rem See the License for the specific language governing permissions and\r\n@rem limitations under the License.\r\n@rem\r\n@rem SPDX-License-Identifier: Apache-2.0\r\n@rem\r\n\r\n@if \"%DEBUG%\"==\"\" @echo off\r\n@rem ##########################################################################\r\n@rem\r\n@rem  Gradle startup script for Windows\r\n@rem\r\n@rem ##########################################################################\r\n\r\n@rem Set local scope for the variables with windows NT shell\r\nif \"%OS%\"==\"Windows_NT\" setlocal\r\n\r\nset DIRNAME=%~dp0\r\nif \"%DIRNAME%\"==\"\" set DIRNAME=.\r\n@rem This is normally unused\r\nset APP_BASE_NAME=%~n0\r\nset APP_HOME=%DIRNAME%\r\n\r\n@rem Resolve any \".\" and \"..\" in APP_HOME to make it shorter.\r\nfor %%i in (\"%APP_HOME%\") do set APP_HOME=%%~fi\r\n\r\n@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.\r\nset DEFAULT_JVM_OPTS=\"-Xmx64m\" \"-Xms64m\"\r\n\r\n@rem Find java.exe\r\nif defined JAVA_HOME goto findJavaFromJavaHome\r\n\r\nset JAVA_EXE=java.exe\r\n%JAVA_EXE% -version >NUL 2>&1\r\nif %ERRORLEVEL% equ 0 goto execute\r\n\r\necho. 1>&2\r\necho ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2\r\necho. 1>&2\r\necho Please set the JAVA_HOME variable in your environment to match the 1>&2\r\necho location of your Java installation. 1>&2\r\n\r\ngoto fail\r\n\r\n:findJavaFromJavaHome\r\nset JAVA_HOME=%JAVA_HOME:\"=%\r\nset JAVA_EXE=%JAVA_HOME%/bin/java.exe\r\n\r\nif exist \"%JAVA_EXE%\" goto execute\r\n\r\necho. 1>&2\r\necho ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2\r\necho. 1>&2\r\necho Please set the JAVA_HOME variable in your environment to match the 1>&2\r\necho location of your Java installation. 1>&2\r\n\r\ngoto fail\r\n\r\n:execute\r\n@rem Setup the command line\r\n\r\n\r\n\r\n@rem Execute Gradle\r\n\"%JAVA_EXE%\" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% \"-Dorg.gradle.appname=%APP_BASE_NAME%\" -jar \"%APP_HOME%\\gradle\\wrapper\\gradle-wrapper.jar\" %*\r\n\r\n:end\r\n@rem End local scope for the variables with windows NT shell\r\nif %ERRORLEVEL% equ 0 goto mainEnd\r\n\r\n:fail\r\nrem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of\r\nrem the _cmd.exe /c_ return code!\r\nset EXIT_CODE=%ERRORLEVEL%\r\nif %EXIT_CODE% equ 0 set EXIT_CODE=1\r\nif not \"\"==\"%GRADLE_EXIT_CONSOLE%\" exit %EXIT_CODE%\r\nexit /b %EXIT_CODE%\r\n\r\n:mainEnd\r\nif \"%OS%\"==\"Windows_NT\" endlocal\r\n\r\n:omega\r\n"
  },
  {
    "path": "Quelea/icons/jscolor.js",
    "content": "/**\r\n * jscolor, JavaScript Color Picker\r\n *\r\n * @version 1.4.2\r\n * @license GNU Lesser General Public License, http://www.gnu.org/copyleft/lesser.html\r\n * @author  Jan Odvarko, http://odvarko.cz\r\n * @created 2008-06-15\r\n * @updated 2013-11-25\r\n * @link    http://jscolor.com\r\n */\r\n\r\n\r\nvar jscolor = {\r\n\r\n\r\n\tdir : '', // location of jscolor directory (leave empty to autodetect)\r\n\tbindClass : 'color', // class name\r\n\tbinding : true, // automatic binding via <input class=\"...\">\r\n\tpreloading : true, // use image preloading?\r\n\r\n\r\n\tinstall : function() {\r\n\t\tjscolor.addEvent(window, 'load', jscolor.init);\r\n\t},\r\n\r\n\r\n\tinit : function() {\r\n\t\tif(jscolor.binding) {\r\n\t\t\tjscolor.bind();\r\n\t\t}\r\n\t\tif(jscolor.preloading) {\r\n\t\t\tjscolor.preload();\r\n\t\t}\r\n\t},\r\n\r\n\r\n\tgetDir : function() {\r\n\t\tif(!jscolor.dir) {\r\n\t\t\tvar detected = jscolor.detectDir();\r\n\t\t\tjscolor.dir = detected!==false ? detected : 'jscolor/';\r\n\t\t}\r\n\t\treturn jscolor.dir;\r\n\t},\r\n\r\n\r\n\tdetectDir : function() {\r\n\t\tvar base = location.href;\r\n\r\n\t\tvar e = document.getElementsByTagName('base');\r\n\t\tfor(var i=0; i<e.length; i+=1) {\r\n\t\t\tif(e[i].href) { base = e[i].href; }\r\n\t\t}\r\n\r\n\t\tvar e = document.getElementsByTagName('script');\r\n\t\tfor(var i=0; i<e.length; i+=1) {\r\n\t\t\tif(e[i].src && /(^|\\/)jscolor\\.js([?#].*)?$/i.test(e[i].src)) {\r\n\t\t\t\tvar src = new jscolor.URI(e[i].src);\r\n\t\t\t\tvar srcAbs = src.toAbsolute(base);\r\n\t\t\t\tsrcAbs.path = srcAbs.path.replace(/[^\\/]+$/, ''); // remove filename\r\n\t\t\t\tsrcAbs.query = null;\r\n\t\t\t\tsrcAbs.fragment = null;\r\n\t\t\t\treturn srcAbs.toString();\r\n\t\t\t}\r\n\t\t}\r\n\t\treturn false;\r\n\t},\r\n\r\n\r\n\tbind : function() {\r\n\t\tvar matchClass = new RegExp('(^|\\\\s)('+jscolor.bindClass+')\\\\s*(\\\\{[^}]*\\\\})?', 'i');\r\n\t\tvar e = document.getElementsByTagName('input');\r\n\t\tfor(var i=0; i<e.length; i+=1) {\r\n\t\t\tvar m;\r\n\t\t\tif(!e[i].color && e[i].className && (m = e[i].className.match(matchClass))) {\r\n\t\t\t\tvar prop = {};\r\n\t\t\t\tif(m[3]) {\r\n\t\t\t\t\ttry {\r\n\t\t\t\t\t\tprop = (new Function ('return (' + m[3] + ')'))();\r\n\t\t\t\t\t} catch(eInvalidProp) {}\r\n\t\t\t\t}\r\n\t\t\t\te[i].color = new jscolor.color(e[i], prop);\r\n\t\t\t}\r\n\t\t}\r\n\t},\r\n\r\n\r\n\tpreload : function() {\r\n\t\tfor(var fn in jscolor.imgRequire) {\r\n\t\t\tif(jscolor.imgRequire.hasOwnProperty(fn)) {\r\n\t\t\t\tjscolor.loadImage(fn);\r\n\t\t\t}\r\n\t\t}\r\n\t},\r\n\r\n\r\n\timages : {\r\n\t\tpad : [ 181, 101 ],\r\n\t\tsld : [ 16, 101 ],\r\n\t\tcross : [ 15, 15 ],\r\n\t\tarrow : [ 7, 11 ]\r\n\t},\r\n\r\n\r\n\timgRequire : {},\r\n\timgLoaded : {},\r\n\r\n\r\n\trequireImage : function(filename) {\r\n\t\tjscolor.imgRequire[filename] = true;\r\n\t},\r\n\r\n\r\n\tloadImage : function(filename) {\r\n\t\tif(!jscolor.imgLoaded[filename]) {\r\n\t\t\tjscolor.imgLoaded[filename] = new Image();\r\n\t\t\tjscolor.imgLoaded[filename].src = jscolor.getDir()+filename;\r\n\t\t}\r\n\t},\r\n\r\n\r\n\tfetchElement : function(mixed) {\r\n\t\treturn typeof mixed === 'string' ? document.getElementById(mixed) : mixed;\r\n\t},\r\n\r\n\r\n\taddEvent : function(el, evnt, func) {\r\n\t\tif(el.addEventListener) {\r\n\t\t\tel.addEventListener(evnt, func, false);\r\n\t\t} else if(el.attachEvent) {\r\n\t\t\tel.attachEvent('on'+evnt, func);\r\n\t\t}\r\n\t},\r\n\r\n\r\n\tfireEvent : function(el, evnt) {\r\n\t\tif(!el) {\r\n\t\t\treturn;\r\n\t\t}\r\n\t\tif(document.createEvent) {\r\n\t\t\tvar ev = document.createEvent('HTMLEvents');\r\n\t\t\tev.initEvent(evnt, true, true);\r\n\t\t\tel.dispatchEvent(ev);\r\n\t\t} else if(document.createEventObject) {\r\n\t\t\tvar ev = document.createEventObject();\r\n\t\t\tel.fireEvent('on'+evnt, ev);\r\n\t\t} else if(el['on'+evnt]) { // alternatively use the traditional event model (IE5)\r\n\t\t\tel['on'+evnt]();\r\n\t\t}\r\n\t},\r\n\r\n\r\n\tgetElementPos : function(e) {\r\n\t\tvar e1=e, e2=e;\r\n\t\tvar x=0, y=0;\r\n\t\tif(e1.offsetParent) {\r\n\t\t\tdo {\r\n\t\t\t\tx += e1.offsetLeft;\r\n\t\t\t\ty += e1.offsetTop;\r\n\t\t\t} while(e1 = e1.offsetParent);\r\n\t\t}\r\n\t\twhile((e2 = e2.parentNode) && e2.nodeName.toUpperCase() !== 'BODY') {\r\n\t\t\tx -= e2.scrollLeft;\r\n\t\t\ty -= e2.scrollTop;\r\n\t\t}\r\n\t\treturn [x, y];\r\n\t},\r\n\r\n\r\n\tgetElementSize : function(e) {\r\n\t\treturn [e.offsetWidth, e.offsetHeight];\r\n\t},\r\n\r\n\r\n\tgetRelMousePos : function(e) {\r\n\t\tvar x = 0, y = 0;\r\n\t\tif (!e) { e = window.event; }\r\n\t\tif (typeof e.offsetX === 'number') {\r\n\t\t\tx = e.offsetX;\r\n\t\t\ty = e.offsetY;\r\n\t\t} else if (typeof e.layerX === 'number') {\r\n\t\t\tx = e.layerX;\r\n\t\t\ty = e.layerY;\r\n\t\t}\r\n\t\treturn { x: x, y: y };\r\n\t},\r\n\r\n\r\n\tgetViewPos : function() {\r\n\t\tif(typeof window.pageYOffset === 'number') {\r\n\t\t\treturn [window.pageXOffset, window.pageYOffset];\r\n\t\t} else if(document.body && (document.body.scrollLeft || document.body.scrollTop)) {\r\n\t\t\treturn [document.body.scrollLeft, document.body.scrollTop];\r\n\t\t} else if(document.documentElement && (document.documentElement.scrollLeft || document.documentElement.scrollTop)) {\r\n\t\t\treturn [document.documentElement.scrollLeft, document.documentElement.scrollTop];\r\n\t\t} else {\r\n\t\t\treturn [0, 0];\r\n\t\t}\r\n\t},\r\n\r\n\r\n\tgetViewSize : function() {\r\n\t\tif(typeof window.innerWidth === 'number') {\r\n\t\t\treturn [window.innerWidth, window.innerHeight];\r\n\t\t} else if(document.body && (document.body.clientWidth || document.body.clientHeight)) {\r\n\t\t\treturn [document.body.clientWidth, document.body.clientHeight];\r\n\t\t} else if(document.documentElement && (document.documentElement.clientWidth || document.documentElement.clientHeight)) {\r\n\t\t\treturn [document.documentElement.clientWidth, document.documentElement.clientHeight];\r\n\t\t} else {\r\n\t\t\treturn [0, 0];\r\n\t\t}\r\n\t},\r\n\r\n\r\n\tURI : function(uri) { // See RFC3986\r\n\r\n\t\tthis.scheme = null;\r\n\t\tthis.authority = null;\r\n\t\tthis.path = '';\r\n\t\tthis.query = null;\r\n\t\tthis.fragment = null;\r\n\r\n\t\tthis.parse = function(uri) {\r\n\t\t\tvar m = uri.match(/^(([A-Za-z][0-9A-Za-z+.-]*)(:))?((\\/\\/)([^\\/?#]*))?([^?#]*)((\\?)([^#]*))?((#)(.*))?/);\r\n\t\t\tthis.scheme = m[3] ? m[2] : null;\r\n\t\t\tthis.authority = m[5] ? m[6] : null;\r\n\t\t\tthis.path = m[7];\r\n\t\t\tthis.query = m[9] ? m[10] : null;\r\n\t\t\tthis.fragment = m[12] ? m[13] : null;\r\n\t\t\treturn this;\r\n\t\t};\r\n\r\n\t\tthis.toString = function() {\r\n\t\t\tvar result = '';\r\n\t\t\tif(this.scheme !== null) { result = result + this.scheme + ':'; }\r\n\t\t\tif(this.authority !== null) { result = result + '//' + this.authority; }\r\n\t\t\tif(this.path !== null) { result = result + this.path; }\r\n\t\t\tif(this.query !== null) { result = result + '?' + this.query; }\r\n\t\t\tif(this.fragment !== null) { result = result + '#' + this.fragment; }\r\n\t\t\treturn result;\r\n\t\t};\r\n\r\n\t\tthis.toAbsolute = function(base) {\r\n\t\t\tvar base = new jscolor.URI(base);\r\n\t\t\tvar r = this;\r\n\t\t\tvar t = new jscolor.URI;\r\n\r\n\t\t\tif(base.scheme === null) { return false; }\r\n\r\n\t\t\tif(r.scheme !== null && r.scheme.toLowerCase() === base.scheme.toLowerCase()) {\r\n\t\t\t\tr.scheme = null;\r\n\t\t\t}\r\n\r\n\t\t\tif(r.scheme !== null) {\r\n\t\t\t\tt.scheme = r.scheme;\r\n\t\t\t\tt.authority = r.authority;\r\n\t\t\t\tt.path = removeDotSegments(r.path);\r\n\t\t\t\tt.query = r.query;\r\n\t\t\t} else {\r\n\t\t\t\tif(r.authority !== null) {\r\n\t\t\t\t\tt.authority = r.authority;\r\n\t\t\t\t\tt.path = removeDotSegments(r.path);\r\n\t\t\t\t\tt.query = r.query;\r\n\t\t\t\t} else {\r\n\t\t\t\t\tif(r.path === '') {\r\n\t\t\t\t\t\tt.path = base.path;\r\n\t\t\t\t\t\tif(r.query !== null) {\r\n\t\t\t\t\t\t\tt.query = r.query;\r\n\t\t\t\t\t\t} else {\r\n\t\t\t\t\t\t\tt.query = base.query;\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t} else {\r\n\t\t\t\t\t\tif(r.path.substr(0,1) === '/') {\r\n\t\t\t\t\t\t\tt.path = removeDotSegments(r.path);\r\n\t\t\t\t\t\t} else {\r\n\t\t\t\t\t\t\tif(base.authority !== null && base.path === '') {\r\n\t\t\t\t\t\t\t\tt.path = '/'+r.path;\r\n\t\t\t\t\t\t\t} else {\r\n\t\t\t\t\t\t\t\tt.path = base.path.replace(/[^\\/]+$/,'')+r.path;\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\tt.path = removeDotSegments(t.path);\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t\tt.query = r.query;\r\n\t\t\t\t\t}\r\n\t\t\t\t\tt.authority = base.authority;\r\n\t\t\t\t}\r\n\t\t\t\tt.scheme = base.scheme;\r\n\t\t\t}\r\n\t\t\tt.fragment = r.fragment;\r\n\r\n\t\t\treturn t;\r\n\t\t};\r\n\r\n\t\tfunction removeDotSegments(path) {\r\n\t\t\tvar out = '';\r\n\t\t\twhile(path) {\r\n\t\t\t\tif(path.substr(0,3)==='../' || path.substr(0,2)==='./') {\r\n\t\t\t\t\tpath = path.replace(/^\\.+/,'').substr(1);\r\n\t\t\t\t} else if(path.substr(0,3)==='/./' || path==='/.') {\r\n\t\t\t\t\tpath = '/'+path.substr(3);\r\n\t\t\t\t} else if(path.substr(0,4)==='/../' || path==='/..') {\r\n\t\t\t\t\tpath = '/'+path.substr(4);\r\n\t\t\t\t\tout = out.replace(/\\/?[^\\/]*$/, '');\r\n\t\t\t\t} else if(path==='.' || path==='..') {\r\n\t\t\t\t\tpath = '';\r\n\t\t\t\t} else {\r\n\t\t\t\t\tvar rm = path.match(/^\\/?[^\\/]*/)[0];\r\n\t\t\t\t\tpath = path.substr(rm.length);\r\n\t\t\t\t\tout = out + rm;\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t\treturn out;\r\n\t\t}\r\n\r\n\t\tif(uri) {\r\n\t\t\tthis.parse(uri);\r\n\t\t}\r\n\r\n\t},\r\n\r\n\r\n\t//\r\n\t// Usage example:\r\n\t// var myColor = new jscolor.color(myInputElement)\r\n\t//\r\n\r\n\tcolor : function(target, prop) {\r\n\r\n\r\n\t\tthis.required = true; // refuse empty values?\r\n\t\tthis.adjust = true; // adjust value to uniform notation?\r\n\t\tthis.hash = false; // prefix color with # symbol?\r\n\t\tthis.caps = true; // uppercase?\r\n\t\tthis.slider = true; // show the value/saturation slider?\r\n\t\tthis.valueElement = target; // value holder\r\n\t\tthis.styleElement = target; // where to reflect current color\r\n\t\tthis.onImmediateChange = null; // onchange callback (can be either string or function)\r\n\t\tthis.hsv = [0, 0, 1]; // read-only  0-6, 0-1, 0-1\r\n\t\tthis.rgb = [1, 1, 1]; // read-only  0-1, 0-1, 0-1\r\n\t\tthis.minH = 0; // read-only  0-6\r\n\t\tthis.maxH = 6; // read-only  0-6\r\n\t\tthis.minS = 0; // read-only  0-1\r\n\t\tthis.maxS = 1; // read-only  0-1\r\n\t\tthis.minV = 0; // read-only  0-1\r\n\t\tthis.maxV = 1; // read-only  0-1\r\n\r\n\t\tthis.pickerOnfocus = true; // display picker on focus?\r\n\t\tthis.pickerMode = 'HSV'; // HSV | HVS\r\n\t\tthis.pickerPosition = 'bottom'; // left | right | top | bottom\r\n\t\tthis.pickerSmartPosition = true; // automatically adjust picker position when necessary\r\n\t\tthis.pickerButtonHeight = 20; // px\r\n\t\tthis.pickerClosable = false;\r\n\t\tthis.pickerCloseText = 'Close';\r\n\t\tthis.pickerButtonColor = 'ButtonText'; // px\r\n\t\tthis.pickerFace = 10; // px\r\n\t\tthis.pickerFaceColor = 'ThreeDFace'; // CSS color\r\n\t\tthis.pickerBorder = 1; // px\r\n\t\tthis.pickerBorderColor = 'ThreeDHighlight ThreeDShadow ThreeDShadow ThreeDHighlight'; // CSS color\r\n\t\tthis.pickerInset = 1; // px\r\n\t\tthis.pickerInsetColor = 'ThreeDShadow ThreeDHighlight ThreeDHighlight ThreeDShadow'; // CSS color\r\n\t\tthis.pickerZIndex = 10000;\r\n\r\n\r\n\t\tfor(var p in prop) {\r\n\t\t\tif(prop.hasOwnProperty(p)) {\r\n\t\t\t\tthis[p] = prop[p];\r\n\t\t\t}\r\n\t\t}\r\n\r\n\r\n\t\tthis.hidePicker = function() {\r\n\t\t\tif(isPickerOwner()) {\r\n\t\t\t\tremovePicker();\r\n\t\t\t}\r\n\t\t};\r\n\r\n\r\n\t\tthis.showPicker = function() {\r\n\t\t\tif(!isPickerOwner()) {\r\n\t\t\t\tvar tp = jscolor.getElementPos(target); // target pos\r\n\t\t\t\tvar ts = jscolor.getElementSize(target); // target size\r\n\t\t\t\tvar vp = jscolor.getViewPos(); // view pos\r\n\t\t\t\tvar vs = jscolor.getViewSize(); // view size\r\n\t\t\t\tvar ps = getPickerDims(this); // picker size\r\n\t\t\t\tvar a, b, c;\r\n\t\t\t\tswitch(this.pickerPosition.toLowerCase()) {\r\n\t\t\t\t\tcase 'left': a=1; b=0; c=-1; break;\r\n\t\t\t\t\tcase 'right':a=1; b=0; c=1; break;\r\n\t\t\t\t\tcase 'top':  a=0; b=1; c=-1; break;\r\n\t\t\t\t\tdefault:     a=0; b=1; c=1; break;\r\n\t\t\t\t}\r\n\t\t\t\tvar l = (ts[b]+ps[b])/2;\r\n\r\n\t\t\t\t// picker pos\r\n\t\t\t\tif (!this.pickerSmartPosition) {\r\n\t\t\t\t\tvar pp = [\r\n\t\t\t\t\t\ttp[a],\r\n\t\t\t\t\t\ttp[b]+ts[b]-l+l*c\r\n\t\t\t\t\t];\r\n\t\t\t\t} else {\r\n\t\t\t\t\tvar pp = [\r\n\t\t\t\t\t\t-vp[a]+tp[a]+ps[a] > vs[a] ?\r\n\t\t\t\t\t\t\t(-vp[a]+tp[a]+ts[a]/2 > vs[a]/2 && tp[a]+ts[a]-ps[a] >= 0 ? tp[a]+ts[a]-ps[a] : tp[a]) :\r\n\t\t\t\t\t\t\ttp[a],\r\n\t\t\t\t\t\t-vp[b]+tp[b]+ts[b]+ps[b]-l+l*c > vs[b] ?\r\n\t\t\t\t\t\t\t(-vp[b]+tp[b]+ts[b]/2 > vs[b]/2 && tp[b]+ts[b]-l-l*c >= 0 ? tp[b]+ts[b]-l-l*c : tp[b]+ts[b]-l+l*c) :\r\n\t\t\t\t\t\t\t(tp[b]+ts[b]-l+l*c >= 0 ? tp[b]+ts[b]-l+l*c : tp[b]+ts[b]-l-l*c)\r\n\t\t\t\t\t];\r\n\t\t\t\t}\r\n\t\t\t\tdrawPicker(pp[a], pp[b]);\r\n\t\t\t}\r\n\t\t};\r\n\r\n\r\n\t\tthis.importColor = function() {\r\n\t\t\tif(!valueElement) {\r\n\t\t\t\tthis.exportColor();\r\n\t\t\t} else {\r\n\t\t\t\tif(!this.adjust) {\r\n\t\t\t\t\tif(!this.fromString(valueElement.value, leaveValue)) {\r\n\t\t\t\t\t\tstyleElement.style.backgroundImage = styleElement.jscStyle.backgroundImage;\r\n\t\t\t\t\t\tstyleElement.style.backgroundColor = styleElement.jscStyle.backgroundColor;\r\n\t\t\t\t\t\tstyleElement.style.color = styleElement.jscStyle.color;\r\n\t\t\t\t\t\tthis.exportColor(leaveValue | leaveStyle);\r\n\t\t\t\t\t}\r\n\t\t\t\t} else if(!this.required && /^\\s*$/.test(valueElement.value)) {\r\n\t\t\t\t\tvalueElement.value = '';\r\n\t\t\t\t\tstyleElement.style.backgroundImage = styleElement.jscStyle.backgroundImage;\r\n\t\t\t\t\tstyleElement.style.backgroundColor = styleElement.jscStyle.backgroundColor;\r\n\t\t\t\t\tstyleElement.style.color = styleElement.jscStyle.color;\r\n\t\t\t\t\tthis.exportColor(leaveValue | leaveStyle);\r\n\r\n\t\t\t\t} else if(this.fromString(valueElement.value)) {\r\n\t\t\t\t\t// OK\r\n\t\t\t\t} else {\r\n\t\t\t\t\tthis.exportColor();\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t};\r\n\r\n\r\n\t\tthis.exportColor = function(flags) {\r\n\t\t\tif(!(flags & leaveValue) && valueElement) {\r\n\t\t\t\tvar value = this.toString();\r\n\t\t\t\tif(this.caps) { value = value.toUpperCase(); }\r\n\t\t\t\tif(this.hash) { value = '#'+value; }\r\n\t\t\t\tvalueElement.value = value;\r\n\t\t\t}\r\n\t\t\tif(!(flags & leaveStyle) && styleElement) {\r\n\t\t\t\tstyleElement.style.backgroundImage = \"none\";\r\n\t\t\t\tstyleElement.style.backgroundColor =\r\n\t\t\t\t\t'#'+this.toString();\r\n\t\t\t\tstyleElement.style.color =\r\n\t\t\t\t\t0.213 * this.rgb[0] +\r\n\t\t\t\t\t0.715 * this.rgb[1] +\r\n\t\t\t\t\t0.072 * this.rgb[2]\r\n\t\t\t\t\t< 0.5 ? '#FFF' : '#000';\r\n\t\t\t}\r\n\t\t\tif(!(flags & leavePad) && isPickerOwner()) {\r\n\t\t\t\tredrawPad();\r\n\t\t\t}\r\n\t\t\tif(!(flags & leaveSld) && isPickerOwner()) {\r\n\t\t\t\tredrawSld();\r\n\t\t\t}\r\n\t\t};\r\n\r\n\r\n\t\tthis.fromHSV = function(h, s, v, flags) { // null = don't change\r\n\t\t\tif(h !== null) { h = Math.max(0.0, this.minH, Math.min(6.0, this.maxH, h)); }\r\n\t\t\tif(s !== null) { s = Math.max(0.0, this.minS, Math.min(1.0, this.maxS, s)); }\r\n\t\t\tif(v !== null) { v = Math.max(0.0, this.minV, Math.min(1.0, this.maxV, v)); }\r\n\r\n\t\t\tthis.rgb = HSV_RGB(\r\n\t\t\t\th===null ? this.hsv[0] : (this.hsv[0]=h),\r\n\t\t\t\ts===null ? this.hsv[1] : (this.hsv[1]=s),\r\n\t\t\t\tv===null ? this.hsv[2] : (this.hsv[2]=v)\r\n\t\t\t);\r\n\r\n\t\t\tthis.exportColor(flags);\r\n\t\t};\r\n\r\n\r\n\t\tthis.fromRGB = function(r, g, b, flags) { // null = don't change\r\n\t\t\tif(r !== null) { r = Math.max(0.0, Math.min(1.0, r)); }\r\n\t\t\tif(g !== null) { g = Math.max(0.0, Math.min(1.0, g)); }\r\n\t\t\tif(b !== null) { b = Math.max(0.0, Math.min(1.0, b)); }\r\n\r\n\t\t\tvar hsv = RGB_HSV(\r\n\t\t\t\tr===null ? this.rgb[0] : r,\r\n\t\t\t\tg===null ? this.rgb[1] : g,\r\n\t\t\t\tb===null ? this.rgb[2] : b\r\n\t\t\t);\r\n\t\t\tif(hsv[0] !== null) {\r\n\t\t\t\tthis.hsv[0] = Math.max(0.0, this.minH, Math.min(6.0, this.maxH, hsv[0]));\r\n\t\t\t}\r\n\t\t\tif(hsv[2] !== 0) {\r\n\t\t\t\tthis.hsv[1] = hsv[1]===null ? null : Math.max(0.0, this.minS, Math.min(1.0, this.maxS, hsv[1]));\r\n\t\t\t}\r\n\t\t\tthis.hsv[2] = hsv[2]===null ? null : Math.max(0.0, this.minV, Math.min(1.0, this.maxV, hsv[2]));\r\n\r\n\t\t\t// update RGB according to final HSV, as some values might be trimmed\r\n\t\t\tvar rgb = HSV_RGB(this.hsv[0], this.hsv[1], this.hsv[2]);\r\n\t\t\tthis.rgb[0] = rgb[0];\r\n\t\t\tthis.rgb[1] = rgb[1];\r\n\t\t\tthis.rgb[2] = rgb[2];\r\n\r\n\t\t\tthis.exportColor(flags);\r\n\t\t};\r\n\r\n\r\n\t\tthis.fromString = function(hex, flags) {\r\n\t\t\tvar m = hex.match(/^\\W*([0-9A-F]{3}([0-9A-F]{3})?)\\W*$/i);\r\n\t\t\tif(!m) {\r\n\t\t\t\treturn false;\r\n\t\t\t} else {\r\n\t\t\t\tif(m[1].length === 6) { // 6-char notation\r\n\t\t\t\t\tthis.fromRGB(\r\n\t\t\t\t\t\tparseInt(m[1].substr(0,2),16) / 255,\r\n\t\t\t\t\t\tparseInt(m[1].substr(2,2),16) / 255,\r\n\t\t\t\t\t\tparseInt(m[1].substr(4,2),16) / 255,\r\n\t\t\t\t\t\tflags\r\n\t\t\t\t\t);\r\n\t\t\t\t} else { // 3-char notation\r\n\t\t\t\t\tthis.fromRGB(\r\n\t\t\t\t\t\tparseInt(m[1].charAt(0)+m[1].charAt(0),16) / 255,\r\n\t\t\t\t\t\tparseInt(m[1].charAt(1)+m[1].charAt(1),16) / 255,\r\n\t\t\t\t\t\tparseInt(m[1].charAt(2)+m[1].charAt(2),16) / 255,\r\n\t\t\t\t\t\tflags\r\n\t\t\t\t\t);\r\n\t\t\t\t}\r\n\t\t\t\treturn true;\r\n\t\t\t}\r\n\t\t};\r\n\r\n\r\n\t\tthis.toString = function() {\r\n\t\t\treturn (\r\n\t\t\t\t(0x100 | Math.round(255*this.rgb[0])).toString(16).substr(1) +\r\n\t\t\t\t(0x100 | Math.round(255*this.rgb[1])).toString(16).substr(1) +\r\n\t\t\t\t(0x100 | Math.round(255*this.rgb[2])).toString(16).substr(1)\r\n\t\t\t);\r\n\t\t};\r\n\r\n\r\n\t\tfunction RGB_HSV(r, g, b) {\r\n\t\t\tvar n = Math.min(Math.min(r,g),b);\r\n\t\t\tvar v = Math.max(Math.max(r,g),b);\r\n\t\t\tvar m = v - n;\r\n\t\t\tif(m === 0) { return [ null, 0, v ]; }\r\n\t\t\tvar h = r===n ? 3+(b-g)/m : (g===n ? 5+(r-b)/m : 1+(g-r)/m);\r\n\t\t\treturn [ h===6?0:h, m/v, v ];\r\n\t\t}\r\n\r\n\r\n\t\tfunction HSV_RGB(h, s, v) {\r\n\t\t\tif(h === null) { return [ v, v, v ]; }\r\n\t\t\tvar i = Math.floor(h);\r\n\t\t\tvar f = i%2 ? h-i : 1-(h-i);\r\n\t\t\tvar m = v * (1 - s);\r\n\t\t\tvar n = v * (1 - s*f);\r\n\t\t\tswitch(i) {\r\n\t\t\t\tcase 6:\r\n\t\t\t\tcase 0: return [v,n,m];\r\n\t\t\t\tcase 1: return [n,v,m];\r\n\t\t\t\tcase 2: return [m,v,n];\r\n\t\t\t\tcase 3: return [m,n,v];\r\n\t\t\t\tcase 4: return [n,m,v];\r\n\t\t\t\tcase 5: return [v,m,n];\r\n\t\t\t}\r\n\t\t}\r\n\r\n\r\n\t\tfunction removePicker() {\r\n\t\t\tdelete jscolor.picker.owner;\r\n\t\t\tdocument.getElementsByTagName('body')[0].removeChild(jscolor.picker.boxB);\r\n\t\t}\r\n\r\n\r\n\t\tfunction drawPicker(x, y) {\r\n\t\t\tif(!jscolor.picker) {\r\n\t\t\t\tjscolor.picker = {\r\n\t\t\t\t\tbox : document.createElement('div'),\r\n\t\t\t\t\tboxB : document.createElement('div'),\r\n\t\t\t\t\tpad : document.createElement('div'),\r\n\t\t\t\t\tpadB : document.createElement('div'),\r\n\t\t\t\t\tpadM : document.createElement('div'),\r\n\t\t\t\t\tsld : document.createElement('div'),\r\n\t\t\t\t\tsldB : document.createElement('div'),\r\n\t\t\t\t\tsldM : document.createElement('div'),\r\n\t\t\t\t\tbtn : document.createElement('div'),\r\n\t\t\t\t\tbtnS : document.createElement('span'),\r\n\t\t\t\t\tbtnT : document.createTextNode(THIS.pickerCloseText)\r\n\t\t\t\t};\r\n\t\t\t\tfor(var i=0,segSize=4; i<jscolor.images.sld[1]; i+=segSize) {\r\n\t\t\t\t\tvar seg = document.createElement('div');\r\n\t\t\t\t\tseg.style.height = segSize+'px';\r\n\t\t\t\t\tseg.style.fontSize = '1px';\r\n\t\t\t\t\tseg.style.lineHeight = '0';\r\n\t\t\t\t\tjscolor.picker.sld.appendChild(seg);\r\n\t\t\t\t}\r\n\t\t\t\tjscolor.picker.sldB.appendChild(jscolor.picker.sld);\r\n\t\t\t\tjscolor.picker.box.appendChild(jscolor.picker.sldB);\r\n\t\t\t\tjscolor.picker.box.appendChild(jscolor.picker.sldM);\r\n\t\t\t\tjscolor.picker.padB.appendChild(jscolor.picker.pad);\r\n\t\t\t\tjscolor.picker.box.appendChild(jscolor.picker.padB);\r\n\t\t\t\tjscolor.picker.box.appendChild(jscolor.picker.padM);\r\n\t\t\t\tjscolor.picker.btnS.appendChild(jscolor.picker.btnT);\r\n\t\t\t\tjscolor.picker.btn.appendChild(jscolor.picker.btnS);\r\n\t\t\t\tjscolor.picker.box.appendChild(jscolor.picker.btn);\r\n\t\t\t\tjscolor.picker.boxB.appendChild(jscolor.picker.box);\r\n\t\t\t}\r\n\r\n\t\t\tvar p = jscolor.picker;\r\n\r\n\t\t\t// controls interaction\r\n\t\t\tp.box.onmouseup =\r\n\t\t\tp.box.onmouseout = function() { target.focus(); };\r\n\t\t\tp.box.onmousedown = function() { abortBlur=true; };\r\n\t\t\tp.box.onmousemove = function(e) {\r\n\t\t\t\tif (holdPad || holdSld) {\r\n\t\t\t\t\tholdPad && setPad(e);\r\n\t\t\t\t\tholdSld && setSld(e);\r\n\t\t\t\t\tif (document.selection) {\r\n\t\t\t\t\t\tdocument.selection.empty();\r\n\t\t\t\t\t} else if (window.getSelection) {\r\n\t\t\t\t\t\twindow.getSelection().removeAllRanges();\r\n\t\t\t\t\t}\r\n\t\t\t\t\tdispatchImmediateChange();\r\n\t\t\t\t}\r\n\t\t\t};\r\n\t\t\tif('ontouchstart' in window) { // if touch device\r\n\t\t\t\tvar handle_touchmove = function(e) {\r\n\t\t\t\t\tvar event={\r\n\t\t\t\t\t\t'offsetX': e.touches[0].pageX-touchOffset.X,\r\n\t\t\t\t\t\t'offsetY': e.touches[0].pageY-touchOffset.Y\r\n\t\t\t\t\t};\r\n\t\t\t\t\tif (holdPad || holdSld) {\r\n\t\t\t\t\t\tholdPad && setPad(event);\r\n\t\t\t\t\t\tholdSld && setSld(event);\r\n\t\t\t\t\t\tdispatchImmediateChange();\r\n\t\t\t\t\t}\r\n\t\t\t\t\te.stopPropagation(); // prevent move \"view\" on broswer\r\n\t\t\t\t\te.preventDefault(); // prevent Default - Android Fix (else android generated only 1-2 touchmove events)\r\n\t\t\t\t};\r\n\t\t\t\tp.box.removeEventListener('touchmove', handle_touchmove, false)\r\n\t\t\t\tp.box.addEventListener('touchmove', handle_touchmove, false)\r\n\t\t\t}\r\n\t\t\tp.padM.onmouseup =\r\n\t\t\tp.padM.onmouseout = function() { if(holdPad) { holdPad=false; jscolor.fireEvent(valueElement,'change'); } };\r\n\t\t\tp.padM.onmousedown = function(e) {\r\n\t\t\t\t// if the slider is at the bottom, move it up\r\n\t\t\t\tswitch(modeID) {\r\n\t\t\t\t\tcase 0: if (THIS.hsv[2] === 0) { THIS.fromHSV(null, null, 1.0); }; break;\r\n\t\t\t\t\tcase 1: if (THIS.hsv[1] === 0) { THIS.fromHSV(null, 1.0, null); }; break;\r\n\t\t\t\t}\r\n\t\t\t\tholdSld=false;\r\n\t\t\t\tholdPad=true;\r\n\t\t\t\tsetPad(e);\r\n\t\t\t\tdispatchImmediateChange();\r\n\t\t\t};\r\n\t\t\tif('ontouchstart' in window) {\r\n\t\t\t\tp.padM.addEventListener('touchstart', function(e) {\r\n\t\t\t\t\ttouchOffset={\r\n\t\t\t\t\t\t'X': e.target.offsetParent.offsetLeft,\r\n\t\t\t\t\t\t'Y': e.target.offsetParent.offsetTop\r\n\t\t\t\t\t};\r\n\t\t\t\t\tthis.onmousedown({\r\n\t\t\t\t\t\t'offsetX':e.touches[0].pageX-touchOffset.X,\r\n\t\t\t\t\t\t'offsetY':e.touches[0].pageY-touchOffset.Y\r\n\t\t\t\t\t});\r\n\t\t\t\t});\r\n\t\t\t}\r\n\t\t\tp.sldM.onmouseup =\r\n\t\t\tp.sldM.onmouseout = function() { if(holdSld) { holdSld=false; jscolor.fireEvent(valueElement,'change'); } };\r\n\t\t\tp.sldM.onmousedown = function(e) {\r\n\t\t\t\tholdPad=false;\r\n\t\t\t\tholdSld=true;\r\n\t\t\t\tsetSld(e);\r\n\t\t\t\tdispatchImmediateChange();\r\n\t\t\t};\r\n\t\t\tif('ontouchstart' in window) {\r\n\t\t\t\tp.sldM.addEventListener('touchstart', function(e) {\r\n\t\t\t\t\ttouchOffset={\r\n\t\t\t\t\t\t'X': e.target.offsetParent.offsetLeft,\r\n\t\t\t\t\t\t'Y': e.target.offsetParent.offsetTop\r\n\t\t\t\t\t};\r\n\t\t\t\t\tthis.onmousedown({\r\n\t\t\t\t\t\t'offsetX':e.touches[0].pageX-touchOffset.X,\r\n\t\t\t\t\t\t'offsetY':e.touches[0].pageY-touchOffset.Y\r\n\t\t\t\t\t});\r\n\t\t\t\t});\r\n\t\t\t}\r\n\r\n\t\t\t// picker\r\n\t\t\tvar dims = getPickerDims(THIS);\r\n\t\t\tp.box.style.width = dims[0] + 'px';\r\n\t\t\tp.box.style.height = dims[1] + 'px';\r\n\r\n\t\t\t// picker border\r\n\t\t\tp.boxB.style.position = 'absolute';\r\n\t\t\tp.boxB.style.clear = 'both';\r\n\t\t\tp.boxB.style.left = x+'px';\r\n\t\t\tp.boxB.style.top = y+'px';\r\n\t\t\tp.boxB.style.zIndex = THIS.pickerZIndex;\r\n\t\t\tp.boxB.style.border = THIS.pickerBorder+'px solid';\r\n\t\t\tp.boxB.style.borderColor = THIS.pickerBorderColor;\r\n\t\t\tp.boxB.style.background = THIS.pickerFaceColor;\r\n\r\n\t\t\t// pad image\r\n\t\t\tp.pad.style.width = jscolor.images.pad[0]+'px';\r\n\t\t\tp.pad.style.height = jscolor.images.pad[1]+'px';\r\n\r\n\t\t\t// pad border\r\n\t\t\tp.padB.style.position = 'absolute';\r\n\t\t\tp.padB.style.left = THIS.pickerFace+'px';\r\n\t\t\tp.padB.style.top = THIS.pickerFace+'px';\r\n\t\t\tp.padB.style.border = THIS.pickerInset+'px solid';\r\n\t\t\tp.padB.style.borderColor = THIS.pickerInsetColor;\r\n\r\n\t\t\t// pad mouse area\r\n\t\t\tp.padM.style.position = 'absolute';\r\n\t\t\tp.padM.style.left = '0';\r\n\t\t\tp.padM.style.top = '0';\r\n\t\t\tp.padM.style.width = THIS.pickerFace + 2*THIS.pickerInset + jscolor.images.pad[0] + jscolor.images.arrow[0] + 'px';\r\n\t\t\tp.padM.style.height = p.box.style.height;\r\n\t\t\tp.padM.style.cursor = 'crosshair';\r\n\r\n\t\t\t// slider image\r\n\t\t\tp.sld.style.overflow = 'hidden';\r\n\t\t\tp.sld.style.width = jscolor.images.sld[0]+'px';\r\n\t\t\tp.sld.style.height = jscolor.images.sld[1]+'px';\r\n\r\n\t\t\t// slider border\r\n\t\t\tp.sldB.style.display = THIS.slider ? 'block' : 'none';\r\n\t\t\tp.sldB.style.position = 'absolute';\r\n\t\t\tp.sldB.style.right = THIS.pickerFace+'px';\r\n\t\t\tp.sldB.style.top = THIS.pickerFace+'px';\r\n\t\t\tp.sldB.style.border = THIS.pickerInset+'px solid';\r\n\t\t\tp.sldB.style.borderColor = THIS.pickerInsetColor;\r\n\r\n\t\t\t// slider mouse area\r\n\t\t\tp.sldM.style.display = THIS.slider ? 'block' : 'none';\r\n\t\t\tp.sldM.style.position = 'absolute';\r\n\t\t\tp.sldM.style.right = '0';\r\n\t\t\tp.sldM.style.top = '0';\r\n\t\t\tp.sldM.style.width = jscolor.images.sld[0] + jscolor.images.arrow[0] + THIS.pickerFace + 2*THIS.pickerInset + 'px';\r\n\t\t\tp.sldM.style.height = p.box.style.height;\r\n\t\t\ttry {\r\n\t\t\t\tp.sldM.style.cursor = 'pointer';\r\n\t\t\t} catch(eOldIE) {\r\n\t\t\t\tp.sldM.style.cursor = 'hand';\r\n\t\t\t}\r\n\r\n\t\t\t// \"close\" button\r\n\t\t\tfunction setBtnBorder() {\r\n\t\t\t\tvar insetColors = THIS.pickerInsetColor.split(/\\s+/);\r\n\t\t\t\tvar pickerOutsetColor = insetColors.length < 2 ? insetColors[0] : insetColors[1] + ' ' + insetColors[0] + ' ' + insetColors[0] + ' ' + insetColors[1];\r\n\t\t\t\tp.btn.style.borderColor = pickerOutsetColor;\r\n\t\t\t}\r\n\t\t\tp.btn.style.display = THIS.pickerClosable ? 'block' : 'none';\r\n\t\t\tp.btn.style.position = 'absolute';\r\n\t\t\tp.btn.style.left = THIS.pickerFace + 'px';\r\n\t\t\tp.btn.style.bottom = THIS.pickerFace + 'px';\r\n\t\t\tp.btn.style.padding = '0 15px';\r\n\t\t\tp.btn.style.height = '18px';\r\n\t\t\tp.btn.style.border = THIS.pickerInset + 'px solid';\r\n\t\t\tsetBtnBorder();\r\n\t\t\tp.btn.style.color = THIS.pickerButtonColor;\r\n\t\t\tp.btn.style.font = '12px sans-serif';\r\n\t\t\tp.btn.style.textAlign = 'center';\r\n\t\t\ttry {\r\n\t\t\t\tp.btn.style.cursor = 'pointer';\r\n\t\t\t} catch(eOldIE) {\r\n\t\t\t\tp.btn.style.cursor = 'hand';\r\n\t\t\t}\r\n\t\t\tp.btn.onmousedown = function () {\r\n\t\t\t\tTHIS.hidePicker();\r\n\t\t\t};\r\n\t\t\tp.btnS.style.lineHeight = p.btn.style.height;\r\n\r\n\t\t\t// load images in optimal order\r\n\t\t\tswitch(modeID) {\r\n\t\t\t\tcase 0: var padImg = 'hs.png'; break;\r\n\t\t\t\tcase 1: var padImg = 'hv.png'; break;\r\n\t\t\t}\r\n\t\t\tp.padM.style.backgroundImage = \"url('\"+jscolor.getDir()+\"cross.gif')\";\r\n\t\t\tp.padM.style.backgroundRepeat = \"no-repeat\";\r\n\t\t\tp.sldM.style.backgroundImage = \"url('\"+jscolor.getDir()+\"arrow.gif')\";\r\n\t\t\tp.sldM.style.backgroundRepeat = \"no-repeat\";\r\n\t\t\tp.pad.style.backgroundImage = \"url('\"+jscolor.getDir()+padImg+\"')\";\r\n\t\t\tp.pad.style.backgroundRepeat = \"no-repeat\";\r\n\t\t\tp.pad.style.backgroundPosition = \"0 0\";\r\n\r\n\t\t\t// place pointers\r\n\t\t\tredrawPad();\r\n\t\t\tredrawSld();\r\n\r\n\t\t\tjscolor.picker.owner = THIS;\r\n\t\t\tdocument.getElementsByTagName('body')[0].appendChild(p.boxB);\r\n\t\t}\r\n\r\n\r\n\t\tfunction getPickerDims(o) {\r\n\t\t\tvar dims = [\r\n\t\t\t\t2*o.pickerInset + 2*o.pickerFace + jscolor.images.pad[0] +\r\n\t\t\t\t\t(o.slider ? 2*o.pickerInset + 2*jscolor.images.arrow[0] + jscolor.images.sld[0] : 0),\r\n\t\t\t\to.pickerClosable ?\r\n\t\t\t\t\t4*o.pickerInset + 3*o.pickerFace + jscolor.images.pad[1] + o.pickerButtonHeight :\r\n\t\t\t\t\t2*o.pickerInset + 2*o.pickerFace + jscolor.images.pad[1]\r\n\t\t\t];\r\n\t\t\treturn dims;\r\n\t\t}\r\n\r\n\r\n\t\tfunction redrawPad() {\r\n\t\t\t// redraw the pad pointer\r\n\t\t\tswitch(modeID) {\r\n\t\t\t\tcase 0: var yComponent = 1; break;\r\n\t\t\t\tcase 1: var yComponent = 2; break;\r\n\t\t\t}\r\n\t\t\tvar x = Math.round((THIS.hsv[0]/6) * (jscolor.images.pad[0]-1));\r\n\t\t\tvar y = Math.round((1-THIS.hsv[yComponent]) * (jscolor.images.pad[1]-1));\r\n\t\t\tjscolor.picker.padM.style.backgroundPosition =\r\n\t\t\t\t(THIS.pickerFace+THIS.pickerInset+x - Math.floor(jscolor.images.cross[0]/2)) + 'px ' +\r\n\t\t\t\t(THIS.pickerFace+THIS.pickerInset+y - Math.floor(jscolor.images.cross[1]/2)) + 'px';\r\n\r\n\t\t\t// redraw the slider image\r\n\t\t\tvar seg = jscolor.picker.sld.childNodes;\r\n\r\n\t\t\tswitch(modeID) {\r\n\t\t\t\tcase 0:\r\n\t\t\t\t\tvar rgb = HSV_RGB(THIS.hsv[0], THIS.hsv[1], 1);\r\n\t\t\t\t\tfor(var i=0; i<seg.length; i+=1) {\r\n\t\t\t\t\t\tseg[i].style.backgroundColor = 'rgb('+\r\n\t\t\t\t\t\t\t(rgb[0]*(1-i/seg.length)*100)+'%,'+\r\n\t\t\t\t\t\t\t(rgb[1]*(1-i/seg.length)*100)+'%,'+\r\n\t\t\t\t\t\t\t(rgb[2]*(1-i/seg.length)*100)+'%)';\r\n\t\t\t\t\t}\r\n\t\t\t\t\tbreak;\r\n\t\t\t\tcase 1:\r\n\t\t\t\t\tvar rgb, s, c = [ THIS.hsv[2], 0, 0 ];\r\n\t\t\t\t\tvar i = Math.floor(THIS.hsv[0]);\r\n\t\t\t\t\tvar f = i%2 ? THIS.hsv[0]-i : 1-(THIS.hsv[0]-i);\r\n\t\t\t\t\tswitch(i) {\r\n\t\t\t\t\t\tcase 6:\r\n\t\t\t\t\t\tcase 0: rgb=[0,1,2]; break;\r\n\t\t\t\t\t\tcase 1: rgb=[1,0,2]; break;\r\n\t\t\t\t\t\tcase 2: rgb=[2,0,1]; break;\r\n\t\t\t\t\t\tcase 3: rgb=[2,1,0]; break;\r\n\t\t\t\t\t\tcase 4: rgb=[1,2,0]; break;\r\n\t\t\t\t\t\tcase 5: rgb=[0,2,1]; break;\r\n\t\t\t\t\t}\r\n\t\t\t\t\tfor(var i=0; i<seg.length; i+=1) {\r\n\t\t\t\t\t\ts = 1 - 1/(seg.length-1)*i;\r\n\t\t\t\t\t\tc[1] = c[0] * (1 - s*f);\r\n\t\t\t\t\t\tc[2] = c[0] * (1 - s);\r\n\t\t\t\t\t\tseg[i].style.backgroundColor = 'rgb('+\r\n\t\t\t\t\t\t\t(c[rgb[0]]*100)+'%,'+\r\n\t\t\t\t\t\t\t(c[rgb[1]]*100)+'%,'+\r\n\t\t\t\t\t\t\t(c[rgb[2]]*100)+'%)';\r\n\t\t\t\t\t}\r\n\t\t\t\t\tbreak;\r\n\t\t\t}\r\n\t\t}\r\n\r\n\r\n\t\tfunction redrawSld() {\r\n\t\t\t// redraw the slider pointer\r\n\t\t\tswitch(modeID) {\r\n\t\t\t\tcase 0: var yComponent = 2; break;\r\n\t\t\t\tcase 1: var yComponent = 1; break;\r\n\t\t\t}\r\n\t\t\tvar y = Math.round((1-THIS.hsv[yComponent]) * (jscolor.images.sld[1]-1));\r\n\t\t\tjscolor.picker.sldM.style.backgroundPosition =\r\n\t\t\t\t'0 ' + (THIS.pickerFace+THIS.pickerInset+y - Math.floor(jscolor.images.arrow[1]/2)) + 'px';\r\n\t\t}\r\n\r\n\r\n\t\tfunction isPickerOwner() {\r\n\t\t\treturn jscolor.picker && jscolor.picker.owner === THIS;\r\n\t\t}\r\n\r\n\r\n\t\tfunction blurTarget() {\r\n\t\t\tif(valueElement === target) {\r\n\t\t\t\tTHIS.importColor();\r\n\t\t\t}\r\n\t\t\tif(THIS.pickerOnfocus) {\r\n\t\t\t\tTHIS.hidePicker();\r\n\t\t\t}\r\n\t\t}\r\n\r\n\r\n\t\tfunction blurValue() {\r\n\t\t\tif(valueElement !== target) {\r\n\t\t\t\tTHIS.importColor();\r\n\t\t\t}\r\n\t\t}\r\n\r\n\r\n\t\tfunction setPad(e) {\r\n\t\t\tvar mpos = jscolor.getRelMousePos(e);\r\n\t\t\tvar x = mpos.x - THIS.pickerFace - THIS.pickerInset;\r\n\t\t\tvar y = mpos.y - THIS.pickerFace - THIS.pickerInset;\r\n\t\t\tswitch(modeID) {\r\n\t\t\t\tcase 0: THIS.fromHSV(x*(6/(jscolor.images.pad[0]-1)), 1 - y/(jscolor.images.pad[1]-1), null, leaveSld); break;\r\n\t\t\t\tcase 1: THIS.fromHSV(x*(6/(jscolor.images.pad[0]-1)), null, 1 - y/(jscolor.images.pad[1]-1), leaveSld); break;\r\n\t\t\t}\r\n\t\t}\r\n\r\n\r\n\t\tfunction setSld(e) {\r\n\t\t\tvar mpos = jscolor.getRelMousePos(e);\r\n\t\t\tvar y = mpos.y - THIS.pickerFace - THIS.pickerInset;\r\n\t\t\tswitch(modeID) {\r\n\t\t\t\tcase 0: THIS.fromHSV(null, null, 1 - y/(jscolor.images.sld[1]-1), leavePad); break;\r\n\t\t\t\tcase 1: THIS.fromHSV(null, 1 - y/(jscolor.images.sld[1]-1), null, leavePad); break;\r\n\t\t\t}\r\n\t\t}\r\n\r\n\r\n\t\tfunction dispatchImmediateChange() {\r\n\t\t\tif (THIS.onImmediateChange) {\r\n\t\t\t\tvar callback;\r\n\t\t\t\tif (typeof THIS.onImmediateChange === 'string') {\r\n\t\t\t\t\tcallback = new Function (THIS.onImmediateChange);\r\n\t\t\t\t} else {\r\n\t\t\t\t\tcallback = THIS.onImmediateChange;\r\n\t\t\t\t}\r\n\t\t\t\tcallback.call(THIS);\r\n\t\t\t}\r\n\t\t}\r\n\r\n\r\n\t\tvar THIS = this;\r\n\t\tvar modeID = this.pickerMode.toLowerCase()==='hvs' ? 1 : 0;\r\n\t\tvar abortBlur = false;\r\n\t\tvar\r\n\t\t\tvalueElement = jscolor.fetchElement(this.valueElement),\r\n\t\t\tstyleElement = jscolor.fetchElement(this.styleElement);\r\n\t\tvar\r\n\t\t\tholdPad = false,\r\n\t\t\tholdSld = false,\r\n\t\t\ttouchOffset = {};\r\n\t\tvar\r\n\t\t\tleaveValue = 1<<0,\r\n\t\t\tleaveStyle = 1<<1,\r\n\t\t\tleavePad = 1<<2,\r\n\t\t\tleaveSld = 1<<3;\r\n\r\n\t\t// target\r\n\t\tjscolor.addEvent(target, 'focus', function() {\r\n\t\t\tif(THIS.pickerOnfocus) { THIS.showPicker(); }\r\n\t\t});\r\n\t\tjscolor.addEvent(target, 'blur', function() {\r\n\t\t\tif(!abortBlur) {\r\n\t\t\t\twindow.setTimeout(function(){ abortBlur || blurTarget(); abortBlur=false; }, 0);\r\n\t\t\t} else {\r\n\t\t\t\tabortBlur = false;\r\n\t\t\t}\r\n\t\t});\r\n\r\n\t\t// valueElement\r\n\t\tif(valueElement) {\r\n\t\t\tvar updateField = function() {\r\n\t\t\t\tTHIS.fromString(valueElement.value, leaveValue);\r\n\t\t\t\tdispatchImmediateChange();\r\n\t\t\t};\r\n\t\t\tjscolor.addEvent(valueElement, 'keyup', updateField);\r\n\t\t\tjscolor.addEvent(valueElement, 'input', updateField);\r\n\t\t\tjscolor.addEvent(valueElement, 'blur', blurValue);\r\n\t\t\tvalueElement.setAttribute('autocomplete', 'off');\r\n\t\t}\r\n\r\n\t\t// styleElement\r\n\t\tif(styleElement) {\r\n\t\t\tstyleElement.jscStyle = {\r\n\t\t\t\tbackgroundImage : styleElement.style.backgroundImage,\r\n\t\t\t\tbackgroundColor : styleElement.style.backgroundColor,\r\n\t\t\t\tcolor : styleElement.style.color\r\n\t\t\t};\r\n\t\t}\r\n\r\n\t\t// require images\r\n\t\tswitch(modeID) {\r\n\t\t\tcase 0: jscolor.requireImage('hs.png'); break;\r\n\t\t\tcase 1: jscolor.requireImage('hv.png'); break;\r\n\t\t}\r\n\t\tjscolor.requireImage('cross.gif');\r\n\t\tjscolor.requireImage('arrow.gif');\r\n\r\n\t\tthis.importColor();\r\n\t}\r\n\r\n};\r\n\r\n\r\njscolor.install();"
  },
  {
    "path": "Quelea/icons/reloadpage.htm",
    "content": "<!DOCTYPE html>\r\n<html>\r\n    <head>\r\n        <title>Quelea Remote Control</title>\r\n        <meta charset=\"utf-8\">\r\n        <meta name=\"apple-mobile-web-app-capable\" content=\"yes\">\r\n        <script type=\"text/javascript\">\r\n            function reloadParent() {\r\n                window.top.location.reload();\r\n            }\r\n        </script>\r\n    </head>\r\n    <body onload=\"window.top.location.reload();\">\r\n    </body>\r\n</html>"
  },
  {
    "path": "Quelea/img/IMAGE GUIDELINES.txt",
    "content": "This folder is for background images that we want to include in the release of Quelea. Before placing images in this folder, please make sure they conform to the following guidelines, remember a good photo / picture doesn't necessarily make a good worship background.\r\n\r\n - All images must be sized 1920x1080. For the general use case this is 1080p resolution, so no-one should need more than this unless they're doing multi-HD projector stuff (in which case they'll probably want to generate their own content anyway.) Most people will be using less resolution than this, sure, but space isn't an issue for storing in HD and we don't lose any quality when scaling down (but obviously we do the other way around if the images are smaller.)\r\n\r\n - JPG for photos, PNG for drawings. Keep it to these two - they're widely supported and there's no real need to introduce any others.\r\n\r\n - Contrast and colour must be relatively constant throughout the image. So sky / land photos are bad in this regard because the contrast is too different. Ask yourself whether the same colour for words on each and every part of the image will cause problems. If the answer is yes, even if it's just a small part, then it's a no go. However...\r\n\r\n - Remember that, licensing permitting, you don't have to use a photo / image stock. If there's a section that's not suitable, use paint.net / photoshop / whatever to modify it so it is suitable, or at least try to see what happens.\r\n\r\n - With natural photos, aim for landscape ones with nothing prominent in the foreground, it takes the focus away from the words if this is the case.\r\n\r\n - With abstract drawings, aim for subtle colours that blend into the background. It's the words that need to stand out, remember a background is just that - not something that draws attention away from the words.\r\n\r\n - Themed backgrounds (Easter, Christmas, etc.) are fine, even encouraged, as long as they conform to the above.\r\n\r\n - Obvious point, but be sensible. If you think it'd be controversial, take people's focus away from the words, or anything like that - don't use it.\r\n\r\n - Be mindful of licensing. Using free existing work is ok, but to be on the safe side I'd prefer it if we explicitly checked with the author beforehand to make sure it's ok to include. They may want some form of attribution, I've no problem at all with including something somewhere thanking those who have contributed images. We'll cross this bridge if we come to it.\r\n\r\n - Before each release, we'll try and audit all the new images on the development group to ensure we think they're all ok."
  },
  {
    "path": "Quelea/izpack/Unix_shortcutSpec.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\" ?>\n\n<shortcuts>\n    <skipIfNotSupported/>\n    <programGroup defaultName=\"Quelea\"\n                  location=\"applications\"/>\n    <shortcut\n            name=\"Quelea\"\n            target=\"/usr/bin/java\"\n            commandLine=\"-Xms1024m -Xmx1024m -Xdock:icon=/path/myIcon.png -jar $INSTALL_PATH/Quelea.jar\"\n            description=\"Launch MyApp\"\n            iconFile=\"$INSTALL_PATH\\icons\\logo64.png\"\n            workingDirectory=\"$INSTALL_PATH\"\n            initialState=\"normal\"\n            programGroup=\"yes\"\n            desktop=\"yes\"\n            applications=\"no\"\n            startMenu=\"no\"\n            startup=\"no\"\n            type=\"Application\"\n            terminal=\"true\"\n            encoding=\"UTF-8\">\n\n        <createForPack name=\"base\"/>\n    </shortcut>\n\n</shortcuts>"
  },
  {
    "path": "Quelea/izpack/config.xml",
    "content": "<?xml version=\"1.0\" encoding=\"iso-8859-1\" standalone=\"yes\" ?>\n\n<installation version=\"5.0\">\n\n    <info>\n        <appname>Quelea</appname>\n        <appversion>0.x</appversion>\n        <javaversion>1.7</javaversion>\n        <url>http://www.quelea.org/</url>\n        <run-privileged/>\n        <!--<pack200/>-->\n    </info>\n\n    <guiprefs width=\"640\" height=\"480\" resizable=\"no\"/>\n\n    <locale>\n        <langpack iso3=\"eng\"/>\n    </locale>\n\n    <!--\n        The resources section.\n        The ids must be these ones if you want to use the LicencePanel and/or the InfoPanel.\n    -->\n    <resources>\n        <res id=\"LicencePanel.licence\" src=\"../licenses/gplv3.txt\"/>\n        <res id=\"HTMLHelloPanel.welcome\" src=\"../izpack/welcome.html\"/>\n        <res src=\"../izpack/shortcutSpec.xml\" id=\"shortcutSpec.xml\"/>\n        <res src=\"../izpack/Unix_shortcutSpec.xml\" id=\"Unix_shortcutSpec.xml\"/>\n    </resources>\n\n    <native type=\"izpack\" name=\"ShellLink.dll\"/>\n    <native type=\"izpack\" name=\"ShellLink_x64.dll\"/>\n    <native type=\"3rdparty\" name=\"COIOSHelper.dll\" stage=\"both\">\n        <os family=\"windows\"/>\n    </native>\n\n    <listeners>\n        <listener classname=\"RegistryInstallerListener\" stage=\"install\" >\n            <os family=\"windows\"/>\n        </listener>\n        <listener classname=\"RegistryUninstallerListener\" stage=\"uninstall\" >\n            <os family=\"windows\"/>\n        </listener>\n    </listeners>\n\n    <natives>\n        <native type=\"3rdparty\" name=\"COIOSHelper.dll\" stage=\"both\">\n            <os family=\"windows\"/>\n        </native>\n        <native type=\"3rdparty\" name=\"COIOSHelper_x64.dll\" stage=\"both\">\n            <os family=\"windows\"/>\n        </native>\n        <native type=\"izpack\" name=\"ShellLink.dll\"/>\n        <native type=\"izpack\" name=\"ShellLink_x64.dll\"/>\n    </natives>\n\n    <panels>\n        <panel classname=\"HTMLHelloPanel\" id=\"welcome\"/>\n        <panel classname=\"LicencePanel\"/>\n        <panel classname=\"TargetPanel\"/>\n        <!--        <panel classname=\"PacksPanel\"/>-->\n        <panel classname=\"InstallPanel\"/>\n        <panel classname=\"ShortcutPanel\"/>\n        <panel classname=\"FinishPanel\"/>\n    </panels>\n\n    <packs>\n        <pack name=\"base\" required=\"yes\" preselected=\"yes\" hidden=\"true\">\n            <description>Core components</description>\n            <fileset dir=\"lib\" targetdir=\"$INSTALL_PATH/lib\"/>\n            <fileset dir=\"libjfx\" targetdir=\"$INSTALL_PATH/lib\"/>\n            <file src=\"vbs\" targetdir=\"$INSTALL_PATH\"/>\n            <file src=\"Quelea.jar\" targetdir=\"$INSTALL_PATH\"/>\n            <file src=\"Quelea.bat\" targetdir=\"$INSTALL_PATH\"/>\n            <file src=\"scheduleformat.xsl\" targetdir=\"$INSTALL_PATH\"/>\n            <file src=\"fopcfg.xml\" targetdir=\"$INSTALL_PATH\"/>\n            <file src=\"songformat.xsl\" targetdir=\"$INSTALL_PATH\"/>\n            <file src=\"../licenses/gplv3.txt\" targetdir=\"$INSTALL_PATH\"/>\n            <file src=\"quelea.properties\" targetdir=\"$INSTALL_PATH\"/>\n        </pack>\n        <pack name=\"dictionaries\" required=\"yes\" preselected=\"yes\" hidden=\"true\">\n            <description>Dictionaries</description>\n            <file src=\"dictionaries\" targetdir=\"$INSTALL_PATH\" override=\"false\"/>\n        </pack>\n        <pack name=\"bibles\" required=\"no\" preselected=\"yes\" hidden=\"true\">\n            <description>Bibles</description>\n            <file src=\"bibles\" targetdir=\"$INSTALL_PATH\" override=\"false\"/>\n        </pack>\n        <pack name=\"languages\" required=\"yes\" preselected=\"yes\" hidden=\"true\">\n            <description>Language files</description>\n            <file src=\"languages\" targetdir=\"$INSTALL_PATH\" override=\"true\"/>\n        </pack>\n        <pack name=\"server\" required=\"yes\" preselected=\"yes\" hidden=\"true\">\n            <description>Server files</description>\n            <file src=\"server\" targetdir=\"$INSTALL_PATH\" override=\"true\"/>\n        </pack>\n        <pack name=\"source code\" required=\"no\" preselected=\"yes\">\n            <description>Source code</description>\n            <file src=\"src\" targetdir=\"$INSTALL_PATH\"/>\n        </pack>\n        <pack name=\"themes\" required=\"yes\" preselected=\"yes\">\n            <description>Sample themes</description>\n            <file src=\"themes\" targetdir=\"$INSTALL_PATH\" override=\"false\"/>\n        </pack>\n        <pack name=\"images\" required=\"no\" preselected=\"yes\">\n            <description>Images and icons</description>\n            <file src=\"icons\" targetdir=\"$INSTALL_PATH\"/>\n            <file src=\"img\" targetdir=\"$INSTALL_PATH\" override=\"false\"/>\n        </pack>\n        <pack name=\"videos\" required=\"no\" preselected=\"yes\">\n            <description>Background videos</description>\n            <file src=\"vid\" targetdir=\"$INSTALL_PATH\" override=\"false\"/>\n        </pack>\n        <pack name=\"licenses\" required=\"no\" preselected=\"yes\">\n            <description>licenses</description>\n            <file src=\"licenses\" targetdir=\"$INSTALL_PATH\" override=\"false\"/>\n        </pack>\n    </packs>\n\n</installation>\n"
  },
  {
    "path": "Quelea/izpack/shortcutSpec.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\" ?>\n\n<shortcuts>\n    <skipIfNotSupported/>\n    <programGroup defaultName=\"Quelea\"\n                  location=\"applications\"/>\n    <shortcut\n            name=\"Quelea\"\n            target=\"$INSTALL_PATH\\Quelea.bat\"\n            description=\"Launch Quelea\"\n            workingDirectory=\"$INSTALL_PATH\"\n            iconFile=\"$INSTALL_PATH\\icons\\logo.ico\"\n            initialState=\"normal\"\n            programGroup=\"yes\"\n            desktop=\"yes\"\n            applications=\"no\"\n            startMenu=\"no\"\n            startup=\"no\">\n\n        <createForPack name=\"base\"/>\n    </shortcut>\n\n</shortcuts>"
  },
  {
    "path": "Quelea/izpack/welcome.html",
    "content": "<html>\r\n<h1>Quelea installation</h1>\r\n\r\n<p>\r\n    This will install Quelea on your system.\r\n    <b>IMPORTANT NOTE: From 2022.0 onwards, you MUST have Java 11\r\n    or newer installed on your system, or Quelea will not run. Java 8 is no longer supported.</b>\r\n</p>\r\n\r\n<p>\r\n    <i>If you have any issues with the installation or use of Quelea,\r\n        please see <a href=\"http://www.quelea.org\">the website</a> or feel free\r\n        to start a <a href=\"https://quelea.discourse.group/\">discussion topic</a>\r\n        asking for help.</i>\r\n</p>\r\n\r\n<p>\r\n    We hope you enjoy using the software!\r\n</p>\r\n</html>"
  },
  {
    "path": "Quelea/languages/README.md",
    "content": "# Translations\n\nThis directory contains Quelea's translation files. If you can speak another language and want to contribute (either updating an existing translation or creating a new one), then please see here for instructions:\n\nhttps://quelea.org/lang/\n\nThe above link is dynamically updated with any missing labels, and we'll gladly accept PR's that fix any gaps in translations. New translations are very welcome too, but they'll only be accepted if they're at least mostly complete.\n\n*Note: The only exceptions to the above are the `gb.lang` and `us.lang` files. The former is the master file we use for labels, and `us.lang` is automatically generated from it with a few spelling alterations. If you spot a mistake in either of these files, please create an issue rather than submitting a PR - we may need to deal with it in the code.*\n"
  },
  {
    "path": "Quelea/languages/bg.lang",
    "content": "LANGUAGENAME=Български (BG)\ndatabase.heading=База\nimport.heading=Импорт\nqsp.button=Quelea Song Pack\nos.button=Opensong\nolp.button=OpenLP\nolyrics.button=OpenLyrics\nzw.button=ZionWorx\nsp.button=Sunday Plus\npco.button=Planning Center Online\npco.login.import.heading=Вход в Planning Center Online\npco.loginerror.title=Грешка при влизане\npco.loginerror.warning=Неуспешен вход. Моля, проверете адреса на е-поща и паролата и опитайте отново\npco.import.heading=Planning Center Online\nelevanto.button=Elevanto\nelevanto.import.heading=Elevanto\nelevanto.loginsuccess.message=Може да затворите този прозорец и да се върнете в Quelea\nelevanto.loginerror.warning=Регистриране на грешка в Elevanto\npassword.text=Парола\nemailaddress.text=Е-поща\nlogin.text=Вход\nss.button=Survivor Songbook\nprojector.heading=Проектор\ncontrols.heading=Контроли\non.button=Вкл.\noff.button=Изкл.\ncopy=Копирай\nswitch.input.button=Промяна на входа\ngeneral.options.heading=Основни\ndisplay.options.heading=Екран\nbible.options.heading=Библия\ncheck.for.update.label=Проверка за актуализация при стартиране\n1.monitor.warn.label=Предупреждение, когато само един екран е свързан\ncapitalise.start.line.label=Направи първата буква главна в началото на всеки ред\none.line.mode.label=Покажи само един ред от избраната песен\ndisplay.song.info.label=Показване на информация за песента\ntext.border.thickness.label=Дебелина на границата на текста\nmax.chars.line.label=Максимален брой символи на ред\nadvanced.label=Разширено\nok.button=OK\noutput.text=Екран\ncontrol.screen.label=Екран на оператора\nprojector.screen.label=Екран на проектора\nstage.screen.label=Екран на сцената\ncustom.position.text=Задаване на позиция\ndefault.bible.label=По подразбиране\nmax.verses.label=Макс. брой стихове, които да бъдат показани наведнъж\nadd.bible.label=Добави\ndelete.bible.label=Изтрий текущата Библия\ndelete.bible.confirmation=Сигурни ли сте, че искате да изтриете Библия $1?\nnone.text=Никой\nnew.schedule.button=Нов план\nopen.schedule.button=Отвори план\nsave.schedule.button=Запази плана\nsave.as.schedule.button=Запази плана като\nprint.schedule.button=Отпечатай плана\noptions.title=Настройки\noptions.button=Настройки\nexit.button=Изход\nnew.schedule.text=Нов план\ncreate.new.schedule.text=Създай нов план\nopen.schedule.text=Отвори план\nopen.existing.schedule.text=Отвори съществуващ план\nsave.schedule.text=Запази плана\nsave.schedule.disk.text=Запази плана на диск\nsave.as.schedule.text=Запази плана като\nsave.as.schedule.disk.text=Запази плана с друго име\nprint.schedule.text=Отпечатай плана\nprint.current.schedule.text=Отпечатай текущия план\noptions.text=Настройки\ndisplay.options.text=Показване на диалог с настройки\nexit.text=Затвори Quelea\nquit.quelea.text=Изход от Quelea\nsave.schedule.tooltip=Запази плана\nprint.schedule.tooltip=Отпечатай плана\nlibrary.image.heading=Картинки\nlibrary.songs.heading=Песни\nlibrary.bible.heading=Библия\nbible.heading=Библия\nlibrary.song.search=Търсене\nclear.search.box=Изчисти търсенето\nadd.song.text=Добави нова песен\nremove.song.text=Премахни песента от базата\nlibrary.add.to.schedule.text=Добави към плана\nlibrary.copy.to.schedule.text=Копирай в плана\nlibrary.edit.song.text=Редактирай\nlibrary.remove.song.text=Изтрий\nlibrary.print.song.text=Отпечатай\nadd.to.schedule.text=Добави към плана\norder.service.heading=Ред на службата\nmove.down.schedule.tooltip=Премести по-надолу в плана\nmove.up.schedule.tooltip=Премести напред в плана\nremove.song.schedule.tooltip=Премахни от плана\nadjust.theme.tooltip=Нагласи темата\nedit.song.text=Редактиране на песен\nnew.theme.text=Нова тема\ntheme.select.text=Избор на тема\\:\ndefault.theme.name=По подразбиране\ndefault.theme.text=Тема по подразбиране\nremove.theme.tooltip=Премахване на тема\nedit.theme.tooltip=Редактиране на тема\nedit.theme.heading=Редактиране на темата\npreview.heading=Преглед\nlive.heading=Излъчване\ngo.live.text=Излъчване\nblack.screen.tooltip=Черен екран\nclear.text.tooltip=Празен екран\nhide.display.output.tooltip=Скрий възпроизвеждането на екрана\nschedule.heading=Текущ план\nadd.song.button=Добави песен\nedit.song.button=Редактиране на песен\nremove.item.button=Премахване\nadd.multimedia.heading=Добави мултимедия\nadd.presentation.button=Добави презентация\nadd.video.button=Добави видео\nadd.youtube.button=Добави YouTube видео\nadd.live.video.button=Добави видео за излъчване\nadd.dvd.button=Добави DVD\nadd.audio.button=Аудио\nadd.audio.tooltip=Добавяне на аудио\nshare.heading=Сподели\nemail.button=Изпрати плана по имейл\nmanage.notices.button=Съобщения\nnotices.heading=Съобщения\nnew.notice.text=Ново съобщение\nedit.notice.text=Редактиране на съобщението\nremove.notice.text=Премахване на съобщението\ndone.text=Готово\nnew.notice.heading=Ново съобщение\nnotice.text=Съобщение\nnotice.times.text=Брой показвания\nnotice.infinite.question=Безкрайно\nadd.notice.button=Добави съобщение\nedit.notice.button=Запази\nyes.text=Да\nno.text=Не\ncancel.text=Отказ\nnew.song.button=Нова песен\ndelete.song.button=Изтриване на песен\nsongs.heading=Песни\ntags.button=Управление на тагове\nsource.button=Source\neasyslides.button=EasySlides\nfreeworship.button=Freeworship\neasyworship.button=EasyWorship 2009\nplainText.button=Текстов файл\nkingsway.button=Kingsway онлайн\nsof.button=Songs of Fellowship\nexport.heading=Експорт\nfilter.tag=Филтър тагове\ntags.colon.label=Тагове\\:\nimport.button=Импорт\nimport.all.button=Import All\nimport.selection.button=Import Selection\nrefresh.button=Refresh\nclick.select.file.text=Кликнете, за да изберете файл\ncheck.duplicates.text=Проверка за дублирани\nedit.song.title=Редактиране на песен\nbasic.information.heading=Основна информация\ndetailed.info.heading=Допълнителна информация\ntheme.heading=Тема\ntitle.label=Заглавие\nauthor.label=Автор\nrun.spellcheck.label=Проверка за правописа\nfix.apos.label=Поправи апострофите\ntrim.lines.tooltip=Премахване на излишни символи\ntranspose.tooltip=Преобразуване\ncancel.button=Отказ\nccli.number.label=CCLI номер\ncopyright.label=Авторски права\nyear.label=Година\npublisher.label=Издател\ntags.label=Тагове\ntype.tag.name.here.text=<Тагове>\nkey.label=Ключ\ncapo.label=Капо/баре/\nnotes.label=Бележка\nfont.theme.label=Шрифт\nchoose.color.text=Избор на цвят\nbackground.text=Фон\nbackground.theme.label=Тема за фон\ncolor.theme.label=Цвят\nimage.theme.label=Картинка\nselect.color.title=Избор на цвят\nselect.color.button=Избор на цвят\nnew.song.title=Нова песен\ntype.lyrics.here.text=Текст на песен\nrtf.files.description=RTF файлове\nsng.files.description=SNG (SongBeamer) файлове\nvideopsalm.import.line1=Това ще импортне VideoPsalm библиотека от JSON файл.\nfreeworship.import.line1=This will import FreeWorship songs from XML files.\nsof.import.line1=Това ще зареди библиотеката SoF от RTF файл.\nplaintext.import.line1=Това ще зареди библиотеката с песни от директория, съдържаща песни в текстови файлове.\nkingsway.import.line1=Това ще зареди библиотеката с песни на Kingsway от интернет.\nsongpro.import.line1=Това ще зареди песните от база на SongPro SDB.\nkingsway.import.line2=Това ще отнеме дълго време (няколко часа\\!), затова моля, бъдете търпеливи и оставете Quelea да работи\\!\neasyslides.import.line1=Това ще зареди песни от EasySlides XML.\neasyworship.import.line1=Това ще зареди песните от Easyworship Songs.MB.\nmissionpraise.import.line1=Това ще импортне песни от Mission Praise RTF файл.\nopenlyrics.import.line1=Изберете zip архива от OpenLyrics.\nqsp.import.line1=Изберете Quelea songpack.\nos.import.line1=Изберете Opensong файл.\nzw.import.line1=Изберете ZionWorx \"MainTable.dat\" файла.\nzw.import.line2=Обикновено се намира в \"C\\:\\\\ProgramData\\\\ZionWorx\\\\2.6\\\\Data\".\nolp.import.line1=Избери файловете на OpenLP базата\nsundayplus.import.line1=Изберете мястото на базата Sunday Plus по-долу.\nsource.import.line1=Избор на ymns директория на даденото CD.\nsurvivor.import.line1=Избери Survivor Songbook PDF.\nsurvivor.import.line2=Това трябва да е acetates.pdf файл, а не е акорди за китара или  ноти.\nimport.error.message=Появи се проблем при импорта. Моля, потърсете съдействие в дискусионната група на Quelea \\: https\\://quelea.discourse.group/\nemail.error.title=Грешка при изпращане на имейл\nemail.error.text=Появи се проблем при отваряне на вашия имейл клиент. Уверете се, че имате имейл клиент, инсталиран и конфигуриран да работи с eml файлове. В противен случай ще трябва да изпратите имейла ръчно.\nemail.text=Привет\\! Quelea план е прикачен към имейла. Просто отворете плана в Quelea и всички точки от плана ше се появят.\nselect.image.button=Избор на картинка\nimage.files.description=Картинки\npng.files.description=PNG файлове\ntools.label=Инструменти\nselect.songs.title=Избор на песен\ncheck.uncheck.all.text=Маркирай/Отмаркирай всички\ndelete.theme.confirm.title=Потвърди изтриването\ndelete.theme.question=Наистина ли искате да изтриете тази тема?\ntoo.many.verses.error=Извинете, но толкова много стихове не могат да бъдат показани. Моля, изберете по-малък брой.\none.monitor.warning=Изглежда имате само един екран. Това не е проблем, ако искате да подготвите план на службата, но ако искате да излъчвате, ще са ви необходими два екрана.\none.monitor.title=Само един екран\nno.dvd.heading=Не е намерен диск\nno.dvd.error=Моля, поставете DVD или Blu-ray диск в оптичното устройство.\nadding.presentation.status=Зареждане на презентация\nadding.presentation.error.message=Грешка при импорт на презентацията. Възможно е файлът да е повреден.\nadding.presentation.error.title=Грешка при експорт на презентация\nimporting.status=Импорт\nname.label=Име\nsimilar.colors.text=Използвали сте много близки цветове за текст и фон, което ще направи четенето много трудно. Препоръчваме ви да използвате по-контрастни цветове\\!\nwarning.label=Предупреждение\nfile.menu=Файл\ntools.menu=Инструменти\nschedule.menu=План\ndatabase.menu=База\nprojector.menu=Проектор\nnew.theme.title=Нова тема\nadd.theme.label=Добави тема\ntheme.name.label=Име на темата\ntheme.select.label=Избор на тема\ntheme.copy.label=Копирай от тема\nhelp.menu=Помощ\nhelp.menu.website=Уебстраница\nhelp.menu.discussion=Поддръжка/Въпроси\nhelp.menu.feedback=Обратна връзка\nhelp.menu.download=Сваляне\nhelp.menu.update=Проверка за актуализация\nhelp.menu.about=За програмата\nhelp.menu.error.text=За съжаление страницата не може да бъде заредена. Може да я изберете ръчно: $1\nhelp.menu.error.title=Грешка\nhelp.about.title=Относно\nhelp.about.version=Версия\nhelp.about.close=Затвори\nhelp.about.line1=Quelea е лицензиран под GPL(Version 3.)\nhelp.about.line2=Безплатен е и винаги ще бъде безплатен и с отворен код.\nnew.schedule.tooltip=Нов план\nopen.schedule.tooltip=Отвори план\nnew.song.tooltip=Нова песен\nadd.presentation.tooltip= Добави презентация\nadd.dvd.tooltip=Добави на DVD\nadd.video.tooltip=Добави видео\nadd.multimedia.tooltip=Добави мултимедия\nmanage.tags.tooltip=Управление на таговете\nmanage.notices.tooltip=Съобщения\nalready.running.error=Изглежда Quelea вече е стартирана.\\nУверете се, че други процеси на програмата са спрени.\nalready.running.title=Вече е стартиран\nerror.schedule.message=Появи се проблем при отваряне на плана. Възможно е да е повреден или да не е файл, създаден от Quelea.\nerror.schedule.title=Грешка при отваряне на плана\nprint.chords.question=Включи акордите, когато отпечатваш тази песен\nprint.chords.export.question=Да включа ли акордите при експорта на песните?\nprinting.options.text=Отпечатване на песента\nspace.key=Интервал\nupdating.db=Обновяване на базата\nerror.updating.song.text=Грешка при обновяване на песента в базата.\nerror.text=Грешка\nquick.shortcut.description=Escape, за да откажете, shift+enter, за да запазите\nsave.before.exit.text=Планът е променен. Ще го запазите ли, преди да излезете от програмата?\nsave.before.exit.title=Незапазен план\nno.chords.message=Тази песен няма акорди за разместване.\nno.chords.title=Няма акорди\nerror.checking.updates.title=Проверката за актуализация е невъзможна.\nerror.checking.updates.text=Грешка при проверка за актуализация. Моля, проверете дали сте свързани с интернет и опитайте отново.\nnewer.version.available=Има по-нова версия на Quelea\nno.newer.version.available=Използвате най-новата версия на Quelea\nvisit.webpage.now=Искате ли да посетите уебсайта за сваляне сега?\ndownload.manual.update=Може да го свалите тук\nnewer.version.available.title=Нова версия е налична.\nno.newer.version.available.title=Работите с най-новата версия\\!\ncheck.kingsway.start=Вече са заредени няколко неща от библиотеката на Kingsway. Искате ли да заредя каквото е останало?\ncheck.kingsway.start.title=Вече заредени\nimport.no.songs.title=Не е намерена песен\nimport.no.songs.text=Не мога да намеря песен за импорт.\nstage.options.heading=Сцена\nstage.show.chords=Показване на акордите\nstage.line.alignment=Подравняване на текста\nstage.font.selection=Шрифт\nstage.background.colour=Цвят на фона\nstage.lyrics.colour=Цвят на текста\nstage.chord.colour=Цвят на акордите\nleft=ляво\ncentre=централно\nright=дясно\nconfirm.label=Сигурен ли сте?\nschedule.clear.text=Планът е бил променен. Ще продължите ли, без да го запазите?\npart=част\nhelp.menu.facebook=Facebook\nvideo.error=Невъзможна инициализация на видео библиотеките - видеото не работи. Моля, отворете тема в дискусионната група на Quelea (от менюто Помощ), за да ни помогнете да разрешим този проблем.\nvideo.error.title=Грешка във видеото\ntext.shadow.label=Покажи сянка на текста\nadding.images=Добавяне на картинки\nsetup.oo.failed.text=Неуспешна конфигурация на OpenOffice за презентации. Моля, уверете се, че OpenOffice е инсталиран и указаният път е правилен.\nsetup.oo.failed.title=OpenOffice не успя да стартира\nuse.oo.label=Използвай OpenOffice за презентации\noo.path=Директория на OpenOffice\nbrowse=Избери\nloading.text=Зареждане\nbuilding.bible.index=Зареждане на библии\nbible.search.title=Търсене в Библията\ninitial.search.text=<търсене>\nview.bible.button=Преглед на Библията\nsearch.bible.button=Търсене в Библията\nall.text=Всички\nbible.browser.title=Потърси в Библията\nopen.in.browser=Отвори в браузър\nkingsway.button.all=Всички песни\nkingsway.button.one=Една песен\nsong.id.selector=Моля, изберете номер на песен.\nbible.copy.error.text=Появи се грешка при копиране на Библията в определената директория.\nbible.delete.error.text=Съжаляваме, появи се грешки при изтриване на Библията от дадената директория.\nbible.copy.error.heading=Грешка\nbible.delete.error.heading=Грешка\nselect.key.label=Избор на нов клавиш\\:\ntranspose.label=Разместване\nalready.exists.overwrite.label=вече съществува. Да го презапиша ли?\noverwrite.text=Презапиши\ncant.save.schedule.title=Грешка при запазване на плана\ncant.save.schedule.text=Съжаляваме, но се появи грешка и планът не може да бъде запазен.\nerror.removing.song.db=Появи се грешка при изтриването на песента от базата.\nconfirm.remove.text=Потвърдете изтриването\nconfirm.remove.question=Наистина ли искате да премахнете $1 от базата? Това действие е необратимо.\nquick.edit.text=Бързо редактиране\nlibrary.preview.song.text=Преглед\nvideo.error.unsupported=Съжаляваме, но формата на избрания видеофайл не се поддържа.\nvideo.error.general=Има проблем с видеото, което сте избрали.\nvideo.theme.label=Видео\nselect.video.button=Избор на видео\nrefresh.images.panel=Обнови картинките\nadd.images.panel=Добави картинка\nselect.folder.images.panel=Избери папка\ntext.position.label=Позиция на текста\nimage.folder=Папка с картинки\\:\nquick.insert.text=Бързо добавяне\nconfirm.overwrite.title=Файлът вече съществува\\!\nconfirm.overwrite.text=Този файл вече съществува. Искате ли да се замени, или да продължите, без да се копира?\nfile.rename.button=Преименуване\nfile.replace.button=Преименувай\nfile.continue.button=Продължи\nfile.rename.dialog.title=Преименувай\nfile.rename.dialog.text=Моля въведете новото име на файла\\:\ninterface.language.label=Език на интерфейса\\:\nlanguage.changed=Езикът е променен\nlanguage.changed.message=Трябва да рестартирате Quelea, за да се активират езиковите настройки.\ndebug.location=Място на лога за анализ (debug)\ntop.text.position=горе\nmiddle.text.position=В средата\nbottom.text.position=долу\nshadow.color=Цвят\nshadow.x=Сянка отместване по X\nshadow.y=Сянка отместване по Y\nselect.imported.songs.line1=Следните песни бяха намерени за импорт.\nselect.imported.songs.line2=Изберете тези, които искате да бъдат добавени в базата, и натиснете \"Добави\".\nselect.imported.songs.line3=Песните, които Quelea смята за дублирани, са изключени.\nadd.text=Добави\nadd.to.database.question=Добави в базата\nselect.export.songs.line1=Следните песни са в базата.\nselect.export.songs.line2=Изберете тези, които искате за експорт, и след това натиснете \"Добави\".\nadd.to.songpack.question=Експорт на песента\nprojection.window.title=Прозорец на излъчването.\nclear.live.on.remove.schedule=Премахване от излъчване с премахването от плана\nspelling.complete.text=Проверката за правопис приключи.\ncomplete.title=Готово\nspelling.check.title=Проверка на правописа\ncorrect.text=Правилно\nignore.text=Игнорирай\nspelling.errors.in.doc.label=Има правописни грешки в документа. Натиснете \"F7\", за да отворите диалог за проверка на правописа.\nremove.image.text=Премахване на картинка\ndelete.image.title=Изтриване на картинка\ndelete.image.confirmation=Наистина ли искате да премахнете тази картинка от библиотеката? Това действие е необратимо.\nnotice.expired.title=Времетраенето на съобщението е изтекло.\nnotice.expired.text=Съобщението, което редактирате, е изтекло. Искате ли да го добавите отново?\ndictionary.language.text=Език на речника\nconfirm.entry.exit.text=Искате ли да запазите промените по тази песен?\nconfirm.entry.exit.title=Запази песента\nsave.text=Запази\ndont.save.text=Не запазвай\nvlc.warning.title=Не мога да открия VLC\nvlc.warning.message=Quelea не може да открие програмата VLC на вашия компютър. Без нея е невъзможно Quelea да възпроизвежда видео, аудио, както и песни с видеофон. Искате ли да я свалите сега? Ще е необходим рестарт на Quelea след инсталацията на VLC.\nvlc.version.message=Вашата версия на VLC е прекалено стара. Необходимо е да свалите най-новата версия на VLC, за да можете да възпроизвеждате видео, аудио и да показвате видеофон. Искате ли да я свалите сега? Ще е необходим рестарт на Quelea след инсталацията, за да се активира.\ncontinue.without.video=Продължи без VLC\ndownload.vlc=Сваляне на VLC\nstartup.error.title=Грешка при стартиране\nstartup.error.text=Поради някаква причина Quelea не може да стартира на вашия компютър. Ако искате да ни помогнете да я направим да работи, моля изпратете имейл на support@quelea.org и прикачете следния файл ($1) към имейла.\\n\\nСъщо така може да потърсите помощ в дискусионната група на Quelea (https\\://quelea.discourse.group/).\nfilefilters.description.survivor.songbook=Survivor acetates файл\nfilefilters.description.xml.bibles=XML Библия\nfilefilters.description.xml.easyslide=XML Easyslide файлове\nfilefilters.description.xml.files=XML файлове\nfilefilters.description.video.files=Видео файлове\nfilefilters.description.pmsong.files=Presentation Manager файлове\nfilefilters.description.vs.files=VideoPsalm файлове\nfilefilters.description.audio.files=Аудиофайлове\nfilefilters.description.quelea.schedules=Quelea план\nfilefilters.description.powerpoint.presentations=PowerPoint презентации\nfilefilters.description.plain.text.song=Текстов файл song\nfilefilters.description.maintable.dat=Файл на база на ZionWorx MainTable\nfilefilters.description.multimedia.files=Multimedia files\nbible.search.results.found=резултата.\nbible.search.result.found=резултата са открити.\nbible.search.keep.typing=...\nuniform.font.size.label=Използвай унифициран размер на шрифта\nmax.font.size.label=Максимален размер на шрифта\nthumbnail.size.label=Размер на умалените картинки\nadditional.line.spacing.label=Допълнително място между редовете\nlogo.screen.tooltip=Ляв клик - покажи/Десен клик - задай\nchange.graphics.label=Промяна на графичните настройки\nfont.colour.label=Цвят на шрифта\nbackground.colour.label=Фонов цвят\nmobile.lyrics.heading=Мобилни текстове\nuse.mobile.lyrics.label=Излъчване в мрежата\\:\nport.number.label=Порт\nnavigate.mob.url.label=Уеб адрес\nserver.changed.label=Настройките на сървъра са променени.\nserver.changed.message=Необходим е рестарт на Quelea, за да могат новите настройки на сървъра да влязат в сила.\nfilefilters.description.zip.files=Zip файлове\nfilefilters.description.sqlite.files=SQLite файлове\nloop.label=Интервал\nseconds.label=секунди\nchosen.fonts.explanation=Quelea само показва избрани шрифтове в прозореца на темата. Издърпайте шрифтовете, които използвате, от левия в десния панел, както и тези, които не използвате, от десния в левия панел.\nignored.fonts.label=Игнорирани шрифтове\nchosen.fonts.label=Избор на шрифтове\nfont.selection.dialog.title=Избор на шрифт\nvideo.hue.label=Нюанс\nhover.for.position.label=Изберете позиция на текста върху платното по-долу.\ntest.patterns.text=Тестови шаблони\ntest.patterns.explanation=Тестовите шаблони тук ще ви помогнат да калибрирате фокуса на екраните, както и цветовите настройки.\\nКликнете на тестовия шаблон, за да се покаже на екрана на проектора и на сцената.\nyoutube.url.label=Youtube видео URL\nno.tdb.heading=TurboDB Data Exchange не е намерен\nno.tdb.message=По технически причини ще трябва да свалите TurboDB data exchange (https\\://www.dataweb.de/en/support/downloads.html), преди Quelea да може да зареди ZionWorx базата.\\nСлед като го свалите, извлечете съдържанието на zip файла в $1.\\n\\nАко срещнете проблем, моля, споделете го в групата за дискусия на (http\\://bit.ly/1mePoeh).\nshow.verse.numbers=Показване номерата на стиховете\nadd.song.hint.text=Все още няма песни. Кликнете на \"Нова песен\" отляво, за да добавите песен.\nadd.song.hint.search.text=В базата няма песни. За да добавите нова песен, използвайте бутона \"Нова песен\".\nfilefilters.description.songs.mb=Easyworship Songs.MB база\nfilefilters.description.songs.missionpraise=Mission Praise RTF файлове\nfilefilters.description.songs.worshiphim=Worship Him MDB файлове\ntranslate.tooltip=Преводи на песента\nclose.button=Затвори\nadd.translation.button=Добавяне на превод\nenter.translation.name.label=Език на превода?\ntranslate.dialog.title=Управление на преводите\nconfirm.remove.translation.title=Премахване на превод\nconfirm.remove.translation.text=Наистина ли искате да изтриете превода?\ndefault.translation.label=Превод по подразбиране\noverwrite.lyrics.title=Презаписване на съществуващите текстове\noverwrite.lyrics.text=Текстът е преведен автоматично - искате ли да го използвате?\\nТекущият ви превод ще бъде презаписан.\nauto.translate.label=Опит за автоматичен превод на песните\nchoose.translations.text=Избери преводи\nselect.translation.label=Изберете превод, който бихте желали да се показва в допълнение към текста по подразбиране\\:\ntranslate.heading=Преводи\nremote.logo.text=Лого\nremote.black.text=Черен екран\nremote.clear.text=Само фон\nremote.next.text=Следващ слайд\nremote.prev.text=Предишен слайд\nremote.nextitem.text=Следваща песен\nremote.previtem.text=Предишна песен\nserver.settings.heading=Настройки на сървъра\nuse.remote.control.label=Дистанционно управление:\nnavigate.remote.control.label=Уеб адрес\nremote.empty.lyrics=Текстовете ще бъдат показани тук.\nremote.control.password=Парола (Малки и големи букви)\nremote.logout.text=Изход\nremote.login.text=Моля, въведете парола\nremote.submit.text=Вход\nmore.font.options.label=Още настройки на шрифта\nmore.fonts.label=Още шрифтове\ntranslation.font.text=Шрифт на превода\nshadow.text=Сянка\nsaving.schedule=Запазване на плана\nsmall.text.position.label=Позиция на информацията на песните и Библията\nbible.passage.selector.prompt=[Глава]\\:[Стих]-[Стих]\ntheme.button.tooltip=Задай основна тема за целия план\ncurrently.displaying.text=В момента показва\nplay=Възпроизвеждане\npause=Пауза\nshow.small.song.text.label=Покажи информация за песента\nshow.small.bible.text.label=Покажи информация за библейския пасаж\nuse.bible.verses=Раздели библейския пасаж по\nmax.items.per.slide=Максимален брой % на слайд\nverses=стихове\nwords=думи\nedit.bible.passage.text=Редактиране на темата на пасажа\nnotice.colour.text=Цвят на шрифта\nnotice.font.text=Шрифт\nnotice.speed.text=Скорост\nnotice.background.colour.text=Цвят на фона\nnotice.position.text=Позиция\nnotice.font.size=Размер на шрифта\nnotice.options.heading=Съобщения\nexport.pdf.button=Експорт в PDF\npdf.button=PDF\nexport.schedule.pdf.button=Експорт на плана в PDF\nfilefilters.description.pdf.files=PDF файлове\nnot.started.label=Не е стартиран\nquelea.schedule.text=Quelea план\nuser.options.options=Настройки на потребителя\ntext.options.options=Настройки на текста\nstretch.video.label=Разпъни по екрана\nexport.schedule.songs.pdf.button=Експорт на песните в PDF\nexporting.label=Експорт\nuse.shadow.label=Използвай сянка\nshadow.color.label=Цвят на сянката\nshadow.offset.label=Отместване\nshadow.radius.label=Радиус\nshadow.spread.label=Разпространение\nhelp.menu.manual=Ръководство\nedit.theme.text=Редактиране на темата\nchange.bible.version.text=Смяна на версията\nswitch.to.text=Превключи към\nsave.qr.code.text=Запази като QR код\nnonbreak.tooltip=Добави непрекъсната линия\ncopying.video.please.wait.text=Един момент... копира се видеофайлът\ntranslating.text.please.wait.text=Един момент... зареждане на превод\nfilefilters.description.usr.files=Файлове на USR (SongSelect)\nsongselect.import.line1=Изберете SongSelect файловете.\npm.import.line1=Изберете Presentation Manager файлове за импорт\nsmi.import.line1=Select the Screen Monkey songs to import.\nsongselect.button=SongSelect\nvideopsalm.button=VideoPsalm\npm.button=Presentation Manager\nsm.button=Screen Monkey\ntranslation.export.heading=Експорт на превода\ninclude.translations.question=Включване на преводите в PDF файла?\nslide.text=Слайд\nautoplay.vid.label=Автоматично пускане на видеото на екрана за излъчване\nadvance.on.live.label=Разширен план на екрана за излъчване\ndelete.translation.title=Изтриване на превод\ndelete.translation.text=Изтриване на превод $1?\nhelp.menu.wiki=Документация\npreview.on.image.change.label=Преглед при смяна на картинката\nadd.timer.tooltip=Добави таймер\nfilefilters.description.image.video.files=Файлове на видео и картинки\ntimer.duration.label=Продължителност\ntimer.file.label=Място на файла за фон\nduration.tooltip.label=\\#\\:\\#\\# или \\#\\#m\\#\\#s\ntranslation.choice.title=Избор на превод\nfont.options.title=Настройки на шрифтовете\nnew.translation.title=Нов превод\nadd.timer.title=Добави таймер\nuntitled.theme.text=Тема без заглавие\ntimer.text.label=Допълнителен текст\ntimer.text.prompt=Използвай \\# да позиционираш таймера, т.е. \"Службата започва след \\#\" ще покаже \"Службата започва след 05\\:00\"\ncountdown.label=Таймер\ntimer.theme.label=Настройки на темата\ntimer.theme.button=Промяна на темата\nembed.media.in.schedule=Вгради медията във файла на плана\nmediashout.import.line1=Избери MediaShout базата (експортната в .txt формат)\\:\nworshiphim.import.line1=Изберете директорията на Worship Him базата (в mdb формат) по-долу:\nsongbeamer.import.line1=Изберете SNG файловете, които искате да заредите\\:\nfilefilters.description.txt.files=.txt файлове\nmediashout.button=MediaShout\nworshiphim.button=Worship Him\nsongbeamer.button=SongBeamer\nclear.stage.view=Изчисти екрана на сцената заедно с този на проектора\ntop=горе\nbottom=долу\nepicworship.import.line1=Това ще зареди песните от файл на EpicWorship Song Pack (.epc).\nfilefilters.description.epc=EpicWorship .epc songpack\nepicworship.button=EpicWorship\nadd.videos.panel=Добави видео\nremove.video.text=Премахни видеото\ndelete.video.title=Изтриване на видео\ndelete.video.confirmation=Наистина ли искате да премахнете това видео от библиотеката? Действието е необратимо.\nlibrary.video.heading=Видео\ntimer.files.description=Таймери\nadd.timers.panel=Добави таймер\nlibrary.timer.heading=Таймери\ntimer.save.label=Запази таймера\ntimer.name.label=Име\nedit.timer.text=Редактирай таймера\nremove.timer.text=Изтрий таймера\nconfirm.remove.timer=Наистина ли искате да премахнете $1 от списъка с таймери? Тази операция е необратима.\nkingsway.button.range=Част\nkingsway.range.import.text=Въведете откъс от страниците с песни от уебсайта на Kingsway, за да бъдат свалени.\\nТекущият максимален брой страници е около 3600.\nkingsway.range.import.heading=Импорт на част от песните на Kingsway\nsdb.files.description=Файлове на Songpro\nsongpro.button=SongPro\noverflow.song.label=Застъпване на текущата песен със следващата\ninvalid.search=Невалидно търсене\nrcs.add.failed=Добавянето е неуспешно\nrcs.add.success=Добавено успешно\nrcs.add.song=Добави песен към плана\nrcs.search=Добави\nrcs.add.bible.error=Появи се грешка при добавянето на $1 към плана\nrcs.submit=Добави\nrcs.song.search=Песен\nrcs.bible.search=Библeйски текст\nshow.video.library.panel=Показване на раздел Видео (изисква рестарт)\nuse.24h.clock=Използвай 24-часов формат\nsplit.bible.verses=Не разделяй стиха в два слайда\nno.verse.title=Стихът не е открит\nno.verse.message=Стиховете не могат да бъдат открити. Ще продължите ли без тях?\nchorus.tooltip=Добави име на припева\nrecordings.path=Директория за записите\ndownload.path=Директория за сваляне\nconvert.mp3=Автоматично конвертиране на записите в mp3 (изисква VLC)\nrecording.warning.title=Първо задайте място за записа\nrecording.warning.message=Трябва да изберете директория за съхранение на записите в \"Настройки\", преди да започнете да записвате.\nrecording.no.devices.title=Не е открито устройство за запис\nrecording.no.devices.message=Не е намерено съвместимо устройство за запис.\\nУверете се, че устройството за запис е включено и конфигурирано.\nsave.recording.before.exit.title=Незапазени записи\nsave.recording.before.exit.message=Искате ли да запазите записа, преди да излезете от програмата?\nrecord.audio.tooltip=Запис аудио\npause.record.tooltip=Пауза на записа\nmax.lines.per.slide=Редове на слайд (приблизително)\npresentation.options.heading=Презентации\nrecordings.options.heading=Записи\ncopy.song.db.default=Копиране на песента в плана по подразбиране\nmp.button=Mission Praise\nadd.pdf.tooltip=Добави PDF\nimportexport.options.heading=Импорт/Експорт\npreview.failed=Прегледът е неуспешен\nset.loop.manually.title=Не е намерен PowerPoint\nset.loop.manually.message=Презентацията е била затворена. Ако искате да използвате функцията за повторение на Quelea с PowerPoint Viewer, е необходимо ръчно да зададете това.\npresentation.changed.message=Необходимо е да рестартирате Quelea, за да могат новите настройки да влязат в сила.\npresentation.changed.label=Настройките за презентация са променени\npresentation.not.started.label=PowerPoint не стартира\npresentation.not.started.message=Неуспешно стартиране на презентацията с PowerPoint. Възможно е файлът да е повреден.\npp.already.running.label=PowerPoint вече е стартиран\npp.already.running.message=Друг процес на PowerPoint е намерен. Моля, затворете всички стартирани процеси на PowerPoint, преди да стартирате презентация в Quelea.\nuse.pp.label=Използвай PowerPoint за презентации\nclose.all.presentations.label=Затвори всички отворени презентации\nclose.all.presentations.message=Моля, затворете всички отворени прозорци на PowerPoint, преди да натиснете ОК. В противен случай те ще бъдат затворени автоматично, за да се предотврати изпращане на презентацията на неправилния екран.\nlive.text.message=Текстът по-долу ще бъде показан на всички потребители на услугата за мобилните текстове, когато основният екран е празен. \\n\\nИзползвайте празен ред като разделител на слайдовете. Също така може да използвате бутона Изчисти (или CTRL + Return), за да нулирате и двете. Всеки слайд има ограничение до 200 символа. Символите след 200 се изрязват автоматично.\nlive.text.title=Текст на живо\nexit.live.text=Изход от текст на живо\nclear.live.text=Изчисти\ndefault.translation=По подразбиране\nselect.language=Избор на език:\nsend.live.text=Текст на живо\nconverting.to.mp3=Конвертиране в mp3\nverse.tooltip=Добави име на куплета\nbridge.tooltip=Добави име на прехода\nprechorus.tooltip=Добави име на предприпева\ntag.tooltip=Добави име на тага\nadd.website=Добави уеб страница\nfocus.switcher.title=Quelea смяна на фокуса\nfocus.switcher.message=Превключи фокуса на прозореца тук, ако е необходимо по време на презентацията.\nfocus.pp=Премести фокуса в PowerPoint\nfocus.quelea=Премести фокуса в Quelea\nwebsite.dialog.title=Адрес на уеб страницата\nwebsite.dialog.header=Въведете адреса на уеб страницата\nwebsite.dialog.content=Въведете адреса на уеб страницата, която искате да покажете:\npaste.label=Постави\nundo.label=Отмени\nredo.label=Повтори\nshow.extra.live.panel.toolbar.options.label=Покажи допълнителни опции на панела за излъчване\nsave.add.notice.button=Запази и добави\nsaved.notices=Запазени известия\ndelete.notice.button=Изтрий\nschedule.items.skipped.text=Някои елементи от плана нямат медията вградена и за това не са добавени.\nschedule.items.skipped.header=Пропуснати елементи от плана\nvideo.loop.tooltip=Превключване на повторения вкл. / изкл.\nallow.item.theme.override.global=Позволяване на персонализирани елементи на темите да презаписват тези в основната тема\nsong.default.theme.label=Песен по подразбиране\nbible.default.theme.label=Библия по подразбиране\ndb.song.preview.label=Преглед на песни в базата\ndb.song.preview.label.control=Няма\ndb.song.preview.label.databasepreview=В панела на базата\ndb.song.preview.label.previewpane=В панела за преглед\npropresenter.button=ProPresenter\npropresenter.import.line1=Това ще импортне песните от файла на ProPresenter.\nfilefilters.description.xml.openlyrics=XML openlyrics файлове\nfilefilters.description.csv.files=.csv файлове\npp.path=Път до програмата PowerPoint\nsmall.song.position.label=Позиция на информацията за песента\nsmall.bible.position.label=Позиция на информацията за Библия\nsmall.bible.size.label=Размер на информацията за Библия\nsmall.song.size.label=Размер на информацията за песента\ninterface.theme.label=Тема на приложението\ndefault.theme.label=По подразбиране\ndark.theme.label=Тъмна\ntheme.changed=Темата е променена.\ntheme.changed.message=Ще трябва да рестартирате приложението да се възприеме променената тема.\nmobile.remote.heading=Дистанционно от мобилен телефон\ninterface.options.options=Опции на интерфейса\ngeneral.interface.options=Опции на основния интерфейс\nsmall.song.text.options=Опции за малък текст на песента\nsmall.bible.text.options=Опции за малък библейски текст\ngeneral.user.options=Опции на основния потребител\ntheme.options=Опции за тема\nschedule.options=Опции за план\nfilefilters.description.propresenter=Песни от ProPresenter\nfilefilters.description.sunday.plus=Песни от Sunday plus\nsong.list=Списък на песните\npassword.empty.label=Празна парола.\npassword.empty.message=Паролата за сървъра не може да бъде празна. Ще бъде използвана парола по подразбиране \"quelea\" освен ако не въведете нова парола в полето за парола.\nsong.sequence=Поредност на песента:\nsequence.selection.dialog.title=Избор на поредност\nchosen.sequence.explanation=Изтеглете елемента от ляво на дясно или кликнете два пъти за да зададете поредност. Слайдовете с текста на песента ще се появят в този ред по-късно независимо от реда, в който песента е запазена в базата.\navailable.sections.label=Налични секции в тази песен\nremove.sequence.tooltip=Премахване на секцията от поредноста\nmove.up.sequence.tooltip=Преместване на секцията напред в поредноста\nmove.down.sequence.tooltip=Преместване на секцията назад в поредноста\nchosen.sequence.label=Избрана последователност\nsequence.tooltip=Диалог за поредноста на песента\nslide.transition.label=Използвай преливане при преход между слайдовете\n"
  },
  {
    "path": "Quelea/languages/chs.lang",
    "content": "LANGUAGENAME=简体中文 (chs)\ndatabase.heading=数据库\nimport.heading=导入\npco.login.import.heading=Planning Center 在线登录\npco.loginerror.title=登录错误\npco.loginerror.warning=登录失败, 请检查电子邮件和密码后再试。\nelevanto.loginsuccess.message=你可以关闭此窗口并回到 Quelea\nelevanto.loginerror.warning=登录 Elevanto 错误\npassword.text=密码\nemailaddress.text=电子邮件\nlogin.text=登录\nprojector.heading=投影仪\ncontrols.heading=控制\non.button=开启\noff.button=关闭\ncopy=拷贝\nswitch.input.button=切换输入\ngeneral.options.heading=一般\ndisplay.options.heading=显示\nbible.options.heading=圣经\ncheck.for.update.label=启动时检查更新\n1.monitor.warn.label=警告，只链接了一台显示器。\ncapitalise.start.line.label=自动大写每行的首字母\none.line.mode.label=只预览所选歌曲的第一行\ndisplay.song.info.label=显示歌曲信息\ntext.border.thickness.label=文本框粗细\nmax.chars.line.label=最大化每行字符数\nadvanced.label=高级\nok.button=确定\noutput.text=输出\ncontrol.screen.label=主控屏幕\nprojector.screen.label=投影屏幕\nstage.screen.label=舞台屏幕\ncustom.position.text=定制位置\ndefault.bible.label=默认\nmax.verses.label=最多一次显示的经文节数\nadd.bible.label=添加圣经...\nnone.text=无\nnew.schedule.button=新建日程\nopen.schedule.button=打开日程\nsave.schedule.button=保存日程\nsave.as.schedule.button=另存日程为...\nprint.schedule.button=打印日程\noptions.title=选项\noptions.button=选项\nexit.button=退出\nnew.schedule.text=新建日程\ncreate.new.schedule.text=创建一个新日程\nopen.schedule.text=打开日程\nopen.existing.schedule.text=打开一个现有日程\nsave.schedule.text=保存日程\nsave.schedule.disk.text=保存日程到磁盘\nsave.as.schedule.text=另存日程\nsave.as.schedule.disk.text=保存日程为不同文件\nprint.schedule.text=打印日程\nprint.current.schedule.text=打印当前日程\noptions.text=选项\ndisplay.options.text=显示选项对话框\nexit.text=退出 Quelea\nquit.quelea.text=从 Quelea 退出\nlibrary.image.heading=图片\nlibrary.songs.heading=歌曲\nlibrary.bible.heading=圣经\nbible.heading=圣经\nlibrary.song.search=搜索\nclear.search.box=清除搜索\nadd.song.text=添加歌曲到数据库\nremove.song.text=从数据库删除歌曲\nlibrary.add.to.schedule.text=添加到日程\nlibrary.copy.to.schedule.text=拷贝到日程\nlibrary.edit.song.text=编辑歌曲\nlibrary.remove.song.text=删除歌曲\nlibrary.print.song.text=打印歌曲\nadd.to.schedule.text=添加到日程\norder.service.heading=活动顺序\nmove.down.schedule.tooltip=在日程中下移\nmove.up.schedule.tooltip=在日程中上移\nremove.song.schedule.tooltip=从日程中删除\nadjust.theme.tooltip=调整主题\nedit.song.text=编辑歌曲\nnew.theme.text=新建主题...\ntheme.select.text=选择主题:\ndefault.theme.name=默认\ndefault.theme.text=默认主题\nremove.theme.tooltip=删除主题\nedit.theme.tooltip=编辑主题\nedit.theme.heading=主题管理器\npreview.heading=预览\nlive.heading=实况\ngo.live.text=发送到实况\nblack.screen.tooltip=黑屏\nclear.text.tooltip=清除屏幕\nhide.display.output.tooltip=隐藏显示输出\nschedule.heading=日程\nadd.song.button=添加歌曲\nedit.song.button=编辑歌曲\nremove.item.button=删除项目\nadd.multimedia.heading=添加多媒体\nadd.presentation.button=添加幻灯片\nadd.video.button=添加视频\nadd.youtube.button=添加 Youtube 视频\nadd.live.video.button=添加实况视频\nadd.dvd.button=添加 DVD\nadd.audio.button=音频\nadd.audio.tooltip=添加音频\nshare.heading=分享\nemail.button=用电子邮件发送日程\nmanage.notices.button=管理通知...\nnotices.heading=通知\nnew.notice.text=新建通知\nedit.notice.text=编辑通知\nremove.notice.text=删除通知\ndone.text=确定\nnew.notice.heading=新建通知\nnotice.text=通知\nnotice.times.text=显示次数\nnotice.infinite.question=无限次?\nadd.notice.button=添加通知\nedit.notice.button=编辑通知\nyes.text=是\nno.text=否\ncancel.text=取消\nnew.song.button=新建歌曲\ndelete.song.button=删除歌曲\nsongs.heading=歌曲\ntags.button=管理标签...\nsource.button=来源\nplainText.button=纯文本\nexport.heading=导出\nfilter.tag=过滤标签\ntags.colon.label=标签:\nimport.button=导入\nimport.all.button=导入所有\nimport.selection.button=导入选中的\nrefresh.button=刷新\nclick.select.file.text=点击选择文件\ncheck.duplicates.text=检查重复项目\nedit.song.title=编辑歌曲\nbasic.information.heading=基本信息\ndetailed.info.heading=详细信息\ntheme.heading=主题\ntitle.label=标题\nauthor.label=作者\nrun.spellcheck.label=拼写检查\nfix.apos.label=清理顿号\ntrim.lines.tooltip=调整行数\ntranspose.tooltip=移调...\ncancel.button=取消\nccli.number.label=CCLI 码\ncopyright.label=版权\nyear.label=年\npublisher.label=发行商\ntags.label=标签\ntype.tag.name.here.text=<在此输入标签名称>\nkey.label=调\ncapo.label=变调夹\nnotes.label=音符\nfont.theme.label=字体\nchoose.color.text=选择颜色...\nbackground.text=背景\nbackground.theme.label=背景主题\ncolor.theme.label=颜色\nimage.theme.label=图片\nselect.color.title=选择颜色\nselect.color.button=选择颜色\nnew.song.title=新建歌曲\nsof.button=团契歌曲\ntype.lyrics.here.text=在此键入歌词\nrtf.files.description=RTF 文件\nsng.files.description=SNG (SongBeamer) 文件\nvideopsalm.import.line1=本操作将从一个 JSON 文件导入 VideoPsalm 库。\nfreeworship.import.line1=本操作将从 XML 文件导入 FreeWorship 歌曲。\nsof.import.line1=本操作将从一个 RTF 文件导入 SoF 库。\nplaintext.import.line1=本操作将从纯文本文件导入歌曲。\nkingsway.import.line1=本操作将在线导入 kingsway 曲库。\nsongpro.import.line1=本操作将从 SongPro SDB 数据库导入歌曲。\nkingsway.import.line2=本操作将会很耗时 (有可能数小时!)， 请耐心等待，并保持 Quelea 的运行状态！\neasyslides.import.line1=本操作将从 EasySlides XML 文件导入歌曲。\neasyworship.import.line1=本操作将从 Easyworship Songs.MB 文件导入歌曲。\nmissionpraise.import.line1=本操作将从 Mission Praise RTF 文件导入歌曲。\nopenlyrics.import.line1=请从下面选择 openlyrics 歌曲压缩包位置。\nqsp.import.line1=请选择 Quelea 歌曲包位置。\nos.import.line1=请选择 Opensong 数据库位置。\nzw.import.line1=选择 ZionWorx \"MainTable.dat\" 文件位置。\nzw.import.line2=文件通常在 in \"C:\\\\ProgramData\\\\ZionWorx\\\\2.6\\\\Data\"。\nolp.import.line1=选择 OpenLP 数据库位置。\nsundayplus.import.line1=选择 Sunday Plus 数据库位置。\nsundayplus.import.line2=(导入功能期待在压缩包根目录下找到 PTF 文件)\nsource.import.line1=从源CD上选择 ymns 目录。\nsurvivor.import.line1=选择 Survivor Songbook PDF 文件位置。\nsurvivor.import.line2=这必须是 acetates.pdf 文件， 不是吉他和弦和乐谱。\nimport.error.message=抱歉， 导入出错。 请到 Quelea 讨论组寻求帮助: https://quelea.discourse.group\nemail.error.title=Email 错误\nemail.error.text=打开 email 客户端出错。 请安装 email 客户端来处理电子邮件, 否则你只能手动发送邮件。\nemail.text=你好！ 附件是 Quelea 日程文件。 使用 Quelea 打开，所有日程项目将会正确显示。\nselect.image.button=选择图片\nimage.files.description=图片文件\npng.files.description=PNG 图片文件\ntools.label=工具\nselect.songs.title=选择歌曲\ncheck.uncheck.all.text=选择/不选 所有\ndelete.theme.confirm.title=确认删除\ndelete.theme.question=确定删除该主题吗?\ntoo.many.verses.error=抱歉， 多处经文无法显示... 枪使用小一点的数字。\none.monitor.warning=你只连接课一台显示器。 如何你只是用来显示日程是没有问题的，但是如果要在真实环境下使用，你必须要有两台显示设备 Quelea 才能正常工作。 \none.monitor.title=只有一台显示器\nno.dvd.heading=未找到碟片\nno.dvd.error=请插入可用的 DVD 或者 Blu-ray。\nadding.presentation.status=正在导入幻灯片...\nadding.presentation.error.message=导入幻灯片出错，文件可能已经损坏？\nadding.presentation.error.title=导入幻灯片出错\nimporting.status=正在导入...\nname.label=名称\nsimilar.colors.text=你为背景和文字选择了相近的颜色，这会导致阅读困难，请选择更优化的颜色！\nwarning.label=警告\nfile.menu=文件\ntools.menu=工具\nschedule.menu=日程\ndatabase.menu=数据库\nprojector.menu=投影仪\nnew.theme.title=新建主题\nadd.theme.label=添加主题\ntheme.name.label=主题名称\ntheme.select.label=选择主题\ntheme.copy.label=从该主题拷贝\nhelp.menu=帮助\nhelp.menu.website=网站\nhelp.menu.discussion=支持 / 讨论 (提问)\nhelp.menu.feedback=反馈\nhelp.menu.download=下载\nhelp.menu.update=检查更新\nhelp.menu.about=关于...\nhelp.menu.error.text=抱歉， 我们无法载入页面。 你可以手动浏览: $1\nhelp.menu.error.title=错误\nhelp.about.title=关于\nhelp.about.version=版本\nhelp.about.close=关闭\nnew.schedule.tooltip=新建日程\nopen.schedule.tooltip=打开日程\nsave.schedule.tooltip=保存日程\nprint.schedule.tooltip=打印日程\nnew.song.tooltip=新建歌曲\nadd.presentation.tooltip=添加幻灯片\nadd.dvd.tooltip=添加 DVD\nadd.video.tooltip=添加视频\nadd.multimedia.tooltip=添加多媒体\nmanage.tags.tooltip=管理标签\nmanage.notices.tooltip=管理通知\nalready.running.error=一个 Quelea 实例已经在运行。\\n请关闭其他实例再运行 Quelea。\nalready.running.title=已经在运行\nerror.schedule.message=打开日程出错。 文件损坏或者不是 Quelea 日程文件。\nerror.schedule.title=打开日程出错\nprint.chords.question=打印歌曲时包括和弦？\nprint.chords.export.question=导出歌曲时包含和弦？\nprinting.options.text=打印歌曲\nspace.key=空格\nupdating.db=更正在新数据库\nerror.updating.song.text=更新歌曲数据库出错，数据库可能已经损坏。\nerror.text=错误\nquick.shortcut.description=按 Escape 取消, shift+enter 保存\nsave.before.exit.text=日程已经被更改。 退出前保存吗？\nsave.before.exit.title=未保存的日程\nno.chords.message=该歌曲不含邮任何可以变调的和弦。\nno.chords.title=没有和弦\nerror.checking.updates.title=无法检查更新\nerror.checking.updates.text=抱歉, 检查更新出错。请检查你的网路连接后再试。\nnewer.version.available=有新版本的 Quelea 可用\nno.newer.version.available=你在运行最新版的 Quelea\nvisit.webpage.now=下载访问网站进行下载？\ndownload.manual.update=你可以在此下载\nnewer.version.available.title=有更新可用\nno.newer.version.available.title=已经是最新版！\ncheck.kingsway.start=你已经从 Kingsway 库导入了部分项目。 你想从断开的地方继续导入吗？\ncheck.kingsway.start.title=已经导入的项目\nimport.no.songs.title=没有找到歌曲\nimport.no.songs.text=无法找到歌曲进行导入。\nstage.options.heading=舞台视图\nstage.show.chords=显示和弦？\nstage.line.alignment=文字对其\nstage.font.selection=字体\nstage.background.colour=背景颜色\nstage.lyrics.colour=歌词颜色\nstage.chord.colour=和弦颜色\nleft=左\ncentre=中\nright=右\nconfirm.label=你确定吗?\nschedule.clear.text=日程已被更改。确定不保存就继续吗?\npart=part\nhelp.menu.facebook=Facebook 主页\nvideo.error=无法初始化视频库- 视频无法工作。 请在讨论组提问 (参见帮助菜单) 来解决问题。\nvideo.error.title=视频错误\ntext.shadow.label=显示文字阴影\nadding.images=添加图片...\nsetup.oo.failed.text=设置 OpenOffice 显示幻灯片出错。 请确保已经安装 OpenOffice 并且路径正确。\nsetup.oo.failed.title=初始化 OpenOffice 失败\nuse.oo.label=使用 OpenOffice 播放幻灯片 (试验)\noo.path=OpenOffice 路径\nbrowse=浏览...\nloading.text=载入中\nbuilding.bible.index=正在载入圣经\nbible.search.title=圣经搜索\ninitial.search.text=<再次输入搜索>\nview.bible.button=查看圣经...\nsearch.bible.button=搜索圣经...\nall.text=全部\nbible.browser.title=圣经浏览器\nopen.in.browser=在浏览器中打开...\nkingsway.button.all=所有歌曲\nkingsway.button.one=一首歌曲\nsong.id.selector=请选择歌曲 ID\nbible.copy.error.text=抱歉， 拷贝圣经到指定目录出错。\nbible.copy.error.heading=错误\nselect.key.label=选择新调:\ntranspose.label=移调\nalready.exists.overwrite.label=已经存在。确定覆盖码?\noverwrite.text=覆盖\ncant.save.schedule.title=保存日程出错\ncant.save.schedule.text=抱歉，因为出错，日程无法保存。\nerror.removing.song.db=从数据库删除歌曲出错。\nconfirm.remove.text=确定删除\nconfirm.remove.question=真要从数据库删除 $1 吗？ 该操作不可逆。\nquick.edit.text=快速编辑\nlibrary.preview.song.text=预览歌曲\nvideo.error.unsupported=抱歉，你选择的视频文件不被支持。\nvideo.error.general=抱歉，你选择的视频文件有错误。\nvideo.theme.label=视频\nselect.video.button=选择视频\nrefresh.images.panel=刷新图片\nadd.images.panel=添加图片\nselect.folder.images.panel=选择文件夹...\ntext.position.label=文字位置\nimage.folder=图片文件夹:\nquick.insert.text=快速插入\nconfirm.overwrite.title=文件已经存在!\nconfirm.overwrite.text=该文件已经存在。 你想覆盖或者不拷贝就继续吗?\nfile.rename.button=重命名\nfile.replace.button=替换\nfile.continue.button=继续\nfile.rename.dialog.title=重命名\nfile.rename.dialog.text=请输入新文件名:\ninterface.language.label=界面语言:\nlanguage.changed=语言已经改变\nlanguage.changed.message=你必须重启 Quelea 语言设置才能生效。\ndebug.location=错误日志位置\ntop.text.position=顶部\nmiddle.text.position=中间\nbottom.text.position=底部\nshadow.color=阴影颜色\nshadow.x=阴影 X 偏移\nshadow.y=阴影 Y 偏移\nselect.imported.songs.line1=以下歌曲被导入。\nselect.imported.songs.line2=选择要添加到数据库的项目然后点击\"添加\"。\nselect.imported.songs.line3=Quelea 认为重复的歌曲未被选中。\nadd.text=添加\nadd.to.database.question=添加到数据库?\nselect.export.songs.line1=一下歌曲已经在数据库中。\nselect.export.songs.line2=选择要导出的项目然后点击“添加”。\nadd.to.songpack.question=导出歌曲?\nprojection.window.title=投影窗口\nclear.live.on.remove.schedule=当从日程删除时，从实况中清除显示\nspelling.complete.text=拼写检查完成。\ncomplete.title=完成\nspelling.check.title=拼写检查\ncorrect.text=纠正\nignore.text=忽略\nspelling.errors.in.doc.label=文件中有拼写错误。 点击 \"F7\" 打开拼写检查对话框。\nremove.image.text=删除图片\ndelete.image.title=删除图片\ndelete.image.confirmation=真的从库中删除该图片吗？该操作不可逆。 \nnotice.expired.title=通知已过期\nnotice.expired.text=你正编辑的通知已过期。 想重新添加该通知吗？\ndictionary.language.text=字典语言\nconfirm.entry.exit.text=要把更改保存到该歌曲吗？\nconfirm.entry.exit.title=保存歌曲？\nsave.text=Save\ndont.save.text=不要保存\nvlc.warning.title=无法找到 VLC\nvlc.warning.message=Quelea 找不到 VLC。 没有它, Quelea w无法播放视频, 音频, 和动态背景。 想下载 VLC 吗? 安装 VLC 后需要重启 Quelea 才能生效。\nvlc.version.message=你的 VLC 太旧。 你需要安装最新 VLC 才能播放视频，音频，和动态背景。 想下载 VLC 吗? 安装 VLC 后需要重启 Quelea 才能生效。\ncontinue.without.video=没有 VLC 的情况下继续\ndownload.vlc=正在下载 VLC\nstartup.error.title=启动错误\nstartup.error.text=抱歉， 由于某种原因 Quelea 无法启动。 请发邮件到 support@quelea.org 并附上错误日志文件 ($1).\\n\\n活着前往讨论组提问 (https://quelea.discourse.group)。\nfilefilters.description.survivor.songbook=Survivor acetates 文件\nfilefilters.description.xml.bibles=XML 圣经\nfilefilters.description.xml.easyslide=XML Easyslide 文件\nfilefilters.description.xml.files=XML 文件\nfilefilters.description.video.files=视频文件\nfilefilters.description.pmsong.files=Presentation Manager 歌曲\nfilefilters.description.vs.files=VideoPsalm 数据库\nfilefilters.description.audio.files=音频文件\nfilefilters.description.quelea.schedules=Quelea 日程\nfilefilters.description.powerpoint.presentations=Powerpoint 幻灯片\nfilefilters.description.plain.text.song=纯文本文件歌曲\nfilefilters.description.maintable.dat=ZionWorx MainTable 数据库文件\nfilefilters.description.multimedia.files=多媒体文件\nbible.search.results.found=找到多项结果\nbible.search.result.found=搜索结果\nbible.search.keep.typing=继续输入...\nuniform.font.size.label=使用统一字体大小\nmax.font.size.label=最大字体\nthumbnail.size.label=缩略图大小\nadditional.line.spacing.label=额外行距\nlogo.screen.tooltip=左键显示 - 右键设置\nchange.graphics.label=更改图像\nfont.colour.label=字体颜色\nbackground.colour.label=背景颜色\nuse.mobile.lyrics.label=使用 Mobile Lyrics\nport.number.label=端口号\nserver.changed.label=服务器设置已更改\nserver.changed.message=你需要重启 Quelea 服务器设置才会生效。\nfilefilters.description.zip.files=Zip 文件\nfilefilters.description.sqlite.files=SQLite 文件\nloop.label=循环\nseconds.label=秒\nchosen.fonts.explanation=Quelea 只在主题窗口显示预先选择的字体在。 从左边可用字体中拖拽字体到右边备选， 把右边的字体拖拽到左边以删除。\nignored.fonts.label=忽略的字体\nchosen.fonts.label=已选字体\nfont.selection.dialog.title=字体选择\nvideo.hue.label=色调\nhover.for.position.label=糊不上悬停设置位置\ntest.patterns.text=测试图案\ntest.patterns.explanation=测试图案可帮助您校准显示焦距。 点击图案后会显示在投影和舞台视图上。\nyoutube.url.label=Youtube 视频 URL\nno.tdb.heading=TurboDB Data Exchange 无法找到\nno.tdb.message=由于技术原因， 你需要下载 TurboDB data exchange (https\\://www.dataweb.de/en/support/downloads.html) 后 Quelea 才能导入 ZionWorx 数据库.\\n下载后, 将压缩包解压缩到 $1.\\n\\n如果有问题， 请前往讨论组提问 (https://quelea.discourse.group)。\nshow.verse.numbers=显示经节数字\nadd.song.hint.text=没有歌曲？ 没关系。 点击 \"新建歌曲\" 按钮 来创建一首。\nadd.song.hint.search.text=没有歌曲符合搜索条件。 点击\"新建歌曲\"按钮添加歌曲。\nfilefilters.description.songs.mb=Easyworship Songs.MB 数据库\nfilefilters.description.songs.missionpraise=Mission Praise RTF 文件\nfilefilters.description.songs.worshiphim=Worship Him MDB 文件\ntranslate.tooltip=歌曲翻译\nclose.button=关闭\nadd.translation.button=添加翻译...\nenter.translation.name.label=你想翻译成什么语言?\ntranslate.dialog.title=翻译过滤器\nconfirm.remove.translation.title=删除翻译?\nconfirm.remove.translation.text=真的删除该翻译吗?\ndefault.translation.label=默认翻译\noverwrite.lyrics.title=覆盖现有歌词?\noverwrite.lyrics.text=我们已经为您自动翻译了歌词 - 需要采用吗？\\nY你的当前翻译将被覆盖。\nauto.translate.label=尝试自动翻译歌曲\nchoose.translations.text=选择翻译\nselect.translation.label=选择额外歌词翻译:\ntranslate.heading=翻译\nremote.logo.text=徽标\nremote.black.text=黑色\nremote.clear.text=清除\nremote.next.text=下一张\nremote.prev.text=上一张\nremote.nextitem.text=下一个项目\nremote.previtem.text=上一个项目\nserver.settings.heading=服务器设置\nuse.remote.control.label=使用遥控\nnavigate.remote.control.label=遥控 URL\nremote.empty.lyrics=歌词会显示在此\nremote.control.password=远程控制密码 (大小写敏感)\nremote.logout.text=登出\nremote.login.text=请登录后继续\nremote.submit.text=登录\nmore.font.options.label=更多字体选项\nmore.fonts.label=更多字体\ntranslation.font.text=翻译字体\nshadow.text=阴影\nsaving.schedule=正在保存日程...\nsmall.text.position.label=歌曲和圣经信息显示位置\nbible.passage.selector.prompt=[章]:[节]-[节]\ntheme.button.tooltip=为日程选择全局主题\ncurrently.displaying.text=目前正在显示\nplay=播放\npause=暂停\nshow.small.song.text.label=显示小字歌曲信息\nshow.small.bible.text.label=显示小字圣经信息\nuse.bible.verses=分割经文到幻灯片\nmax.items.per.slide=最多 % 每张幻灯片\nverses=节\nwords=字数\nedit.bible.passage.text=编辑文章主题\nnotice.colour.text=通知颜色\nnotice.font.text=通知字体\nnotice.speed.text=通知速度\nnotice.background.colour.text=通知背景颜色\nnotice.position.text=通知位置\nnotice.font.size=通知字体大小\nnotice.options.heading=通知\nexport.pdf.button=导出到 PDF\npdf.button=PDF\nexport.schedule.pdf.button=导出日程顺序到 PDF\nfilefilters.description.pdf.files=PDF 文件\nnot.started.label=未开始的\nquelea.schedule.text=Quelea 日程\nuser.options.options=用户选项\ntext.options.options=文章选项\nstretch.video.label=拉伸视频\nexport.schedule.songs.pdf.button=导出歌曲到 PDF\nexporting.label=正在导出\nuse.shadow.label=使用阴影?\nshadow.color.label=阴影颜色\nshadow.offset.label=阴影偏移\nshadow.radius.label=阴影半径\nshadow.spread.label=阴影扩散\nhelp.menu.manual=手册\nedit.theme.text=编辑主题\nchange.bible.version.text=切换圣经版本\nswitch.to.text=切换到\nsave.qr.code.text=保存二维码（QR）\nnonbreak.tooltip=添加不断行\ncopying.video.please.wait.text=请稍后 - 正在拷贝视频文件...\ntranslating.text.please.wait.text=请稍后 - 正在获取翻译...\nfilefilters.description.usr.files=USR (SongSelect) 文件\nsongselect.import.line1=在下面选择 SongSelect 文件。\npm.import.line1=选择 Presentation Manager 歌曲进行导入。\nsmi.import.line1=选择 Screen Monkey 歌曲进行导入。\ntranslation.export.heading=翻译导出\ninclude.translations.question=要在 PDF 文件中包含翻译吗?\nslide.text=幻灯片\nautoplay.vid.label=在实况版面自动播放视频\nadvance.on.live.label=实况显示高级日程\ndelete.translation.title=删除翻译\ndelete.translation.text=删除 $1 翻译吗?\nhelp.menu.wiki=Wiki\npreview.on.image.change.label=图片更改后预览项目\nadd.timer.tooltip=添加倒数计时器\nfilefilters.description.image.video.files=视频和图片文件\ntimer.duration.label=倒数时长\ntimer.file.label=背景文件位置\ntranslation.choice.title=选择翻译\nfont.options.title=字体选项\nnew.translation.title=新建翻译\nadd.timer.title=添加计时器\nuntitled.theme.text=未命名主题\ntimer.text.label=额外文字\ntimer.text.prompt=使用 # 来放置计时器， 例如 \"敬拜在 # 分钟后开始\" 将显示为 \"敬拜在 05:00 分钟后开始\"\ncountdown.label=倒数计时器\ntimer.theme.label=主题设置\ntimer.theme.button=更改主题\nembed.media.in.schedule=在日程文件中嵌入媒体文件\nmediashout.import.line1=选择 MediaShout db 位置(导出为文本):\nworshiphim.import.line1=选择 Worship Him db 位置(mdb 格式):\nsongbeamer.import.line1=选择要导入的 SNG 文件位置:\nfilefilters.description.txt.files=.txt 文件\nclear.stage.view=使用主显示清除舞台视图\ntop=顶部\nbottom=底部\nepicworship.import.line1=本操作将从 EpicWorship 歌曲包文件(.epc)导入歌曲。\nfilefilters.description.epc=EpicWorship .epc 歌曲包\nadd.videos.panel=添加视频\nremove.video.text=删除视频\ndelete.video.title=删除视频\ndelete.video.confirmation=真的从视频库中删除该视频吗？该操作不可逆。\nlibrary.video.heading=视频\ntimer.files.description=倒数计时器\nadd.timers.panel=添加计时器\nlibrary.timer.heading=计时器\ntimer.save.label=保存计时器?\ntimer.name.label=名称\nedit.timer.text=编辑计时器\nremove.timer.text=删除计时器\nconfirm.remove.timer=真的从计时器列表删除 $1 吗？该操作不可逆。\nkingsway.button.range=范围\nkingsway.range.import.text=输入歌曲页从 Kingsway's 网站下载。\\n当前最大页数大约是3600页。\nkingsway.range.import.heading=Kingsway 歌曲导入范围\nsdb.files.description=Songpro 数据库文件\noverflow.song.label=益处当前歌曲到下一首\ninvalid.search=非法搜索\nrcs.add.failed=添加失败\nrcs.add.success=添加成功\nrcs.add.song=添加歌曲到日程\nrcs.add.bible.error=添加 $1 到日程出错\nrcs.submit=提交\nrcs.song.search=歌曲\nrcs.bible.search=圣经\nrcs.search=搜索并添加\nshow.video.library.panel=显示视频库标签页 (需重启应用)\nuse.24h.clock=使用 24 小时制\nsplit.bible.verses=在幻灯片之间保持经节完整\nno.verse.title=未找到经节\nno.verse.message=我们无法找到指定经节并且尝试了忽略并继续。\nchorus.tooltip=添加合唱标题\nrecordings.path=录音路径\ndownload.path=下载路径\nconvert.mp3=自动将录音转换为 MP3 文件 (需要 VLC)\nrecording.warning.title=请先设置录音路径\nrecording.warning.message=你必须在选项中设置录音路径后才可以开始录音。\nrecording.no.devices.title=没有找到录音设备\nrecording.no.devices.message=抱歉，没有找到兼容的录音设备。\\n确保你的录音设备已经插入并且已经开启。\nsave.recording.before.exit.title=为保存的录音\nsave.recording.before.exit.message=要在退出前保存录音吗？\nrecord.audio.tooltip=录音\npause.record.tooltip=暂停录音\nmax.lines.per.slide=每张幻灯片显示行数 (大约)\npresentation.options.heading=幻灯片\nrecordings.options.heading=录音\ncopy.song.db.default=默认拷贝歌曲到日程\nadd.pdf.tooltip=添加 PDF\nimportexport.options.heading=导入/导出\npreview.failed=预览失败\nset.loop.manually.title=没找到 PowerPoint\nset.loop.manually.message=幻灯片已经关闭。如果你想使用 Quelea's 的循环功能与 PowerPoint 查看器协同, 你需要手动将幻灯片设置为循环。\npresentation.changed.message=你需要重启 Quelea 使幻灯片播放设置生效。\npresentation.changed.label=幻灯片设置已更改\npresentation.not.started.label=PowerPoint 没有运行\npresentation.not.started.message=你的幻灯片无法使用 PowerPoint 播放，也许文件已经损坏？\npp.already.running.label=PowerPoint 已经运行\npp.already.running.message=发现 PowerPoint 已经在运行。 请在运行 Quelea 前关闭所有 PowerPoint 实例以免数据丢失。\npp.path.label=PowerPoint 主程序路径\nuse.pp.label=使用 PowerPoint 播放幻灯片\nclose.all.presentations.label=关闭所有打开的幻灯片\nclose.all.presentations.message=按 OK 之前请关闭所有 PowerPoint 窗口，否则该操作会自动关闭所有幻灯片以避免信号被送到错误的窗口。\nlive.text.message=挡住屏幕空白时，下面写入文字对 Mobile Lyrics 用户可见。\\n\\n使用空白行开始新幻灯片。 你也可以使用清除按钮 (或 CTRL + Return) 进行重置。每张幻灯片大于200个字符会自动省略。\nlive.text.title=直播文字\nexit.live.text=退出直播文字\nclear.live.text=清除\ndefault.translation=默认\nselect.language=选择语言:\nsend.live.text=直播文字\nconverting.to.mp3=正在将录音转换为 MP3\nverse.tooltip=添加经节标题\nbridge.tooltip=添加 bridge 标题\nprechorus.tooltip=添加 pre-chorus 标题\ntag.tooltip=添加标签标题\nadd.website=添加网站\nfocus.switcher.title=Quelea 窗口焦点切换\nfocus.switcher.message=在幻灯片播放期间，在此切换窗口焦点。\nfocus.pp=将焦点切换至 PowerPoint\nfocus.quelea=将焦点切换至 Quelea\nwebsite.dialog.title=网页 URL\nwebsite.dialog.header=输入网页 URL\nwebsite.dialog.content=输入要显示的网页地址:\npaste.label=黏贴\nundo.label=撤销\nredo.label=重做\nshow.extra.live.panel.toolbar.options.label=显示额外的实况控制工具选项\nsave.add.notice.button=保存并添加\nsaved.notices=已保存的通知\ndelete.notice.button=删除\nschedule.items.skipped.text=部分日程项目没有包涵媒体，所以没有备添加。\nschedule.items.skipped.header=部分日程项目被忽略。\nvideo.loop.tooltip=切换循环 开 / 关\nallow.item.theme.override.global=允许自定义项目主题优先于全局主题\nsong.default.theme.label=歌曲默认\nbible.default.theme.label=圣经默认"
  },
  {
    "path": "Quelea/languages/cht.lang",
    "content": "LANGUAGENAME=繁體中文 (cht)\n1.monitor.warn.label=警告，只連結了一台顯示器。\nadd.audio.button=音訊\nadd.audio.tooltip=新增音訊\nadd.bible.label=新增聖經...\nadd.dvd.button=新增 DVD\nadd.dvd.tooltip=新增 DVD\nadd.images.panel=新增圖片\nadd.live.video.button=新增現場視訊\nadd.multimedia.heading=新增多媒體\nadd.multimedia.tooltip=新增多媒體\nadd.notice.button=新增通知\nadd.pdf.tooltip=新增 PDF\nadd.presentation.button=新增投影片\nadd.presentation.tooltip=新增投影片\nadd.song.button=新增歌曲\nadd.song.hint.search.text=沒有歌曲符合搜尋條件。 點擊\"新增歌曲\"按鈕新增歌曲。\nadd.song.hint.text=沒有歌曲？ 沒關係。 點擊 \"新增歌曲\" 按鈕來新增。\nadd.song.text=新增歌曲到資料庫\nadd.text=新增\nadd.theme.label=新增主題\nadd.timer.title=新增計時器\nadd.timer.tooltip=新增倒數計時器\nadd.timers.panel=新增計時器\nadd.to.database.question=是否新增到資料庫?\nadd.to.schedule.text=新增到播放清單\nadd.to.songpack.question=是否匯出歌曲?\nadd.translation.button=新增翻譯...\nadd.video.button=新增視訊\nadd.video.tooltip=新增視訊\nadd.videos.panel=新增視訊\nadd.website=新增網頁\nadd.youtube.button=新增 Youtube\nadding.images=新增圖片...\nadding.presentation.error.message=匯入投影片出錯，檔案可能已經損壞？\nadding.presentation.error.title=匯入投影片出錯\nadding.presentation.status=正在匯入投影片中...\nadditional.line.spacing.label=額外行距\nadjust.theme.tooltip=調整主題\nadvance.on.live.label=現場投放-進階播放清單\nadvanced.label=進階\nall.text=全部\nallow.item.theme.override.global=允許自訂主題優先於預設主題\nalready.exists.overwrite.label=已經存在。是否確定要覆蓋?\nalready.running.error= Quelea 已經開啟。\\n確認全部關閉後再重新開啟 Quelea。\nalready.running.title=已經開啟Quelea\nauthor.label=作者\nauto.translate.label=嘗試自動翻譯歌曲\nautoplay.vid.label=在現場畫面自動播放視訊\navailable.sections.label=Available sections in this song\nbackground.colour.label=背景顏色\nbackground.text=背景\nbackground.theme.label=背景主題\nbasic.information.heading=基本資訊\nbible.browser.title=聖經瀏覽器\nbible.copy.error.heading=錯誤\nbible.copy.error.text=抱歉， 複製聖經到指定目錄出錯。\nbible.default.theme.label=聖經預設\nbible.delete.error.heading=錯誤\nbible.delete.error.text=抱歉，從指定目錄刪除聖經出錯。\nbible.heading=聖經\nbible.options.heading=聖經\nbible.passage.selector.prompt=[章]:[節]-[節]\nbible.search.keep.typing=繼續輸入...\nbible.search.result.found=搜尋結果\nbible.search.results.found=找到多項結果\nbible.search.title=聖經搜尋\nblack.screen.tooltip=使現場畫面變黑\nbottom=底部\nbottom.text.position=底部\nbridge.tooltip=新增 bridge 標題\nbrowse=瀏覽...\nbuilding.bible.index=正在載入聖經\ncancel.button=取消\ncancel.text=取消\ncant.save.schedule.text=抱歉，播放清單無法儲存。\ncant.save.schedule.title=儲存播放清單出錯\ncapitalise.start.line.label=每行句首大寫\ncapo.label=移(變)調夾\nccli.number.label=CCLI 碼\ncentre=中\nchange.bible.version.text=切換聖經版本\nchange.graphics.label=更改圖片\ncheck.duplicates.text=檢查重複專案\ncheck.for.update.label=啟動時檢查更新\ncheck.kingsway.start=你已經從 Kingsway 庫匯入了部分專案。 你想從中斷的地方繼續匯入嗎？\ncheck.kingsway.start.title=已經匯入的專案\ncheck.uncheck.all.text=全選/取消全選\nchoose.color.text=選擇顏色...\nchoose.translations.text=選擇翻譯\nchorus.tooltip=新增合唱標題\nchosen.fonts.explanation=Quelea 只在主題視窗顯示預選字體。 從左邊可用字體中拖拽字體到右邊備選， 把右邊的字體拖拽到左邊則可以刪除。\nchosen.fonts.label=已選字體\nchosen.sequence.explanation=從左向右拖動項目或點兩下以建立歌曲排序。 無論歌詞以何種順序存儲在資料庫中，稍後將以這個順序顯示歌詞投影。\nchosen.sequence.label=Chosen sequence order\nclear.live.on.remove.schedule=當從播放清單刪除時，從現場畫面中清除顯示\nclear.live.text=清除\nclear.search.box=清除搜尋\nclear.stage.view=使用主顯示清除舞臺視圖\nclear.text.tooltip=清除畫面文字\nclick.select.file.text=點擊選擇檔\nclose.all.presentations.label=關閉所有打開的投影片\nclose.all.presentations.message=按 OK 之前請關閉所有 PowerPoint 視窗，否則該操作會自動關閉所有投影片以避免信號被送到錯誤的視窗。\nclose.button=關閉\ncolor.theme.label=顏色\ncomplete.title=完成\nconfirm.entry.exit.text=要儲存變更到該歌曲嗎？\nconfirm.entry.exit.title=是否儲存歌曲？\nconfirm.label=你確定嗎?\nconfirm.overwrite.text=該檔已經存在。 你想覆蓋或者不複製就繼續嗎?\nconfirm.overwrite.title=檔案已經存在!\nconfirm.remove.question=確定要從資料庫刪除 $1 嗎？ 刪除後無法復原。\nconfirm.remove.text=確定刪除\nconfirm.remove.timer=確定要從計時器列表刪除 $1 嗎？刪除後無法復原。\nconfirm.remove.translation.text=確定要刪除該翻譯嗎?\nconfirm.remove.translation.title=刪除翻譯?\ncontinue.without.video=沒有 VLC 的情況下繼續\ncontrol.screen.label=主控螢幕\ncontrols.heading=控制\nconvert.mp3=自動將錄音轉換為 MP3 檔 (需要 VLC)\nconverting.to.mp3=正在將錄音轉換成 MP3\ncopy=複製\ncopy.song.db.default=預設複製歌曲到播放清單\ncopying.video.please.wait.text=請稍後 - 正在複製視訊檔...\ncopyright.label=版權\ncorrect.text=校正\ncountdown.label=倒數計時器\ncreate.new.schedule.text=新播放清單\ncurrently.displaying.text=目前正在顯示\ncustom.position.text=自訂位置\ndark.theme.label=Dark\ndatabase.heading=資料庫\ndatabase.menu=資料庫\ndb.song.preview.label=預覽資料庫歌曲\ndb.song.preview.label.control=None\ndb.song.preview.label.databasepreview=在資料庫窗格\ndb.song.preview.label.previewpane=在預覽窗格\ndebug.location=錯誤訊息位置\ndefault.bible.label=預設\ndefault.theme.label=預設主題\ndefault.theme.name=預設\ndefault.theme.text=預設主題\ndefault.translation=預設\ndefault.translation.label=預設翻譯\ndelete.bible.confirmation=確定要刪除聖經 $1 嗎?\ndelete.bible.label=刪除當前聖經\ndelete.image.confirmation=確定要從圖片列表中刪除該圖片嗎？刪除後無法復原。 \ndelete.image.title=刪除圖片\ndelete.notice.button=刪除\ndelete.song.button=刪除歌曲\ndelete.theme.confirm.title=確認刪除\ndelete.theme.question=確定要刪除該主題嗎?\ndelete.translation.text=刪除 $1 翻譯嗎?\ndelete.translation.title=刪除翻譯\ndelete.video.confirmation=確定要從視訊列表中刪除該視訊嗎？刪除後無法復原。\ndelete.video.title=刪除視訊\ndetailed.info.heading=詳細資訊\ndictionary.language.text=字典語言\ndisplay.options.heading=顯示\ndisplay.options.text=顯示選項對話視窗\ndisplay.song.info.label=顯示歌曲資訊\ndone.text=確定\ndont.save.text=不要儲存\ndownload.manual.update=你可以在此下載\ndownload.path=下載路徑\ndownload.vlc=正在下載 VLC\nduration.tooltip.label=#:## or ##m##s or ##:##am\neasyslides.button=EasySlides\neasyslides.import.line1=將從 EasySlides XML 檔匯入歌曲。\neasyworship.button=EasyWorship 2009\neasyworship.import.line1=將從 Easyworship Songs.MB 檔匯入歌曲。\nedit.bible.passage.text=編輯文章主題\nedit.notice.button=編輯通知\nedit.notice.text=編輯通知\nedit.song.button=編輯歌曲\nedit.song.text=編輯歌曲\nedit.song.title=編輯歌曲\nedit.theme.heading=主題管理器\nedit.theme.text=編輯主題\nedit.theme.tooltip=編輯主題\nedit.timer.text=編輯計時器\nelevanto.button=Elevanto\nelevanto.import.heading=Elevanto\nelevanto.loginerror.warning=登入 Elevanto 錯誤\nelevanto.loginsuccess.message=你可以關閉此視窗並回到 Quelea\nemail.button=用email寄送播放清單\nemail.error.text=打開 email 用戶端出錯。 請安裝 email 用戶端來處理email, 否則你只能手動寄送郵件。\nemail.error.title=Email 錯誤\nemail.text=你好！ 附件是 Quelea 播放清單檔。 使用 Quelea 打開，所有播放清單專案將會正確顯示。\nemailaddress.text=email\nembed.media.in.schedule=在播放清單檔中嵌入媒體檔案\nenter.translation.name.label=你想翻譯成什麼語言?\nepicworship.button=EpicWorship\nepicworship.import.line1=將從 EpicWorship 歌曲包檔(.epc)匯入歌曲。\nerror.checking.updates.text=抱歉, 檢查更新出錯。請檢查你的網路連接後再試。\nerror.checking.updates.title=無法檢查更新\nerror.removing.song.db=從資料庫刪除歌曲出錯。\nerror.schedule.message=打開播放清單出錯。 檔案損壞或者不是 Quelea 播放清單檔。\nerror.schedule.title=打開播放清單出錯\nerror.text=錯誤\nerror.updating.song.text=更新歌曲資料庫出錯，資料庫可能已經損壞。\nexit.button=關閉\nexit.live.text=退出直播文字\nexit.text=退出 Quelea\nexport.heading=匯出\nexport.pdf.button=匯出到 PDF\nexport.schedule.pdf.button=匯出播放清單順序到 PDF\nexport.schedule.songs.pdf.button=匯出歌曲到 PDF\nexporting.label=正在匯出\nfile.continue.button=繼續\nfile.menu=檔案\nfile.rename.button=重新命名\nfile.rename.dialog.text=請輸入新檔案名:\nfile.rename.dialog.title=重新命名\nfile.replace.button=替換\nfilefilters.description.audio.files=音訊檔\nfilefilters.description.csv.files=.csv files\nfilefilters.description.epc=EpicWorship .epc 歌曲包\nfilefilters.description.image.video.files=視訊和圖片檔\nfilefilters.description.maintable.dat=ZionWorx MainTable 資料庫檔\nfilefilters.description.multimedia.files=多媒體檔\nfilefilters.description.pdf.files=PDF 檔\nfilefilters.description.plain.text.song=純文字檔歌曲\nfilefilters.description.pmsong.files=Presentation Manager 歌曲\nfilefilters.description.powerpoint.presentations=Powerpoint 投影片\nfilefilters.description.propresenter=Propresenter songs\nfilefilters.description.quelea.schedules=Quelea 播放清單\nfilefilters.description.songs.mb=Easyworship Songs.MB 資料庫\nfilefilters.description.songs.missionpraise=Mission Praise RTF 檔\nfilefilters.description.songs.worshiphim=Worship Him MDB 檔\nfilefilters.description.sqlite.files=SQLite 檔\nfilefilters.description.sunday.plus=Sunday plus songs\nfilefilters.description.survivor.songbook=Survivor acetates 檔\nfilefilters.description.txt.files=.txt 檔\nfilefilters.description.usr.files=USR (SongSelect) 檔\nfilefilters.description.video.files=視訊檔\nfilefilters.description.vs.files=VideoPsalm 資料庫\nfilefilters.description.xml.bibles=XML 聖經\nfilefilters.description.xml.easyslide=XML Easyslide 檔\nfilefilters.description.xml.files=XML 檔\nfilefilters.description.xml.openlyrics=XML openlyrics files\nfilefilters.description.zip.files=Zip 檔\nfilter.tag=過濾標籤\nfix.apos.label=清理頓號\nfocus.pp=切換至 PowerPoint\nfocus.quelea=切換至 Quelea\nfocus.switcher.message=在投影片播放期間，在此切換視窗。\nfocus.switcher.title=Quelea 視窗切換\nfont.colour.label=字體顏色\nfont.options.title=字體選項\nfont.selection.dialog.title=字體選擇\nfont.theme.label=字體\nfreeworship.button=Freeworship\nfreeworship.import.line1=本操作將從 XML 檔匯入 FreeWorship 歌曲。\ngeneral.interface.options=介面選項\ngeneral.options.heading=一般\ngeneral.user.options=使用者選項\ngo.live.text=投放到現場畫面中\nhelp.about.close=關閉\nhelp.about.line1=Quelea is licensed under the GPL (Version 3.)\nhelp.about.line2=Quelea是免費且開源的軟體\nhelp.about.title=關於\nhelp.about.version=版本\nhelp.menu=幫助\nhelp.menu.about=關於...\nhelp.menu.discussion=支援 / 討論 (發問)\nhelp.menu.download=下載\nhelp.menu.error.text=抱歉， 我們無法載入頁面。 你可以手動瀏覽: $1\nhelp.menu.error.title=錯誤\nhelp.menu.facebook=Facebook 頁面\nhelp.menu.feedback=回饋\nhelp.menu.manual=使用手冊\nhelp.menu.update=檢查更新\nhelp.menu.website=網站\nhelp.menu.wiki=Wiki\nhide.display.output.tooltip=隱藏顯示輸出\nhover.for.position.label=選擇文字位置(上下左右或置中)\nignore.text=忽略\nignored.fonts.label=忽略的字體\nimage.files.description=圖片檔\nimage.folder=圖片資料夾:\nimage.theme.label=圖片\nimport.all.button=匯入所有\nimport.button=匯入\nimport.error.message=抱歉， 匯入出錯。 請到 Quelea 討論群組尋求幫助: https://quelea.discourse.group\nimport.heading=匯入\nimport.no.songs.text=無法找到歌曲進行匯入。\nimport.no.songs.title=沒有找到歌曲\nimport.selection.button=匯入選擇的\nimportexport.options.heading=匯入/匯出\nimporting.status=正在匯入...\ninclude.translations.question=要在 PDF 檔中包含翻譯嗎?\ninitial.search.text=<再次輸入搜尋>\ninterface.language.label=語言:\ninterface.options.options=介面選項\ninterface.theme.label=應用程式主題\ninvalid.search=非法搜尋\nkey.label=Key\nkingsway.button=Kingsway Online\nkingsway.button.all=所有歌曲\nkingsway.button.one=一首歌曲\nkingsway.button.range=範圍\nkingsway.import.line1=本操作將線上匯入 kingsway 曲庫。\nkingsway.import.line2=本操作將會很耗時 (有可能數小時!)， 請耐心等待，並保持 Quelea 的運行狀態！\nkingsway.range.import.heading=Kingsway 歌曲匯入範圍\nkingsway.range.import.text=輸入歌曲頁從 Kingsway's 網站下載。\\n當前最大頁數大約是3600頁。\nlanguage.changed=語言已經改變\nlanguage.changed.message=你必須重啟 Quelea 語言設定才能生效。\nleft=左\nlibrary.add.to.schedule.text=新增到播放清單\nlibrary.bible.heading=聖經\nlibrary.copy.to.schedule.text=複製到播放清單\nlibrary.edit.song.text=編輯歌曲\nlibrary.image.heading=圖片\nlibrary.preview.song.text=預覽歌曲\nlibrary.print.song.text=列印歌曲\nlibrary.remove.song.text=刪除歌曲\nlibrary.song.search=搜尋\nlibrary.songs.heading=歌曲\nlibrary.timer.heading=計時器\nlibrary.video.heading=視訊\nlive.heading=現場畫面\nlive.text.message=當主螢幕空白時，下面寫入文字對 Mobile Lyrics 使用者可見。\\n\\n使用空白行開始新投影片。 你也可以使用清除按鈕 (或 CTRL + Return) 進行重置。每張投影片大於200個字元會自動省略。\nlive.text.title=現場文字\nloading.text=載入中\nlogin.text=登入\nlogo.screen.tooltip=右鍵為設定 - 左鍵為顯示 \nloop.label=循環重複\nmanage.notices.button=管理通知...\nmanage.notices.tooltip=管理通知\nmanage.tags.tooltip=管理標籤\nmax.chars.line.label=最大化每行字數\nmax.font.size.label=最大字體\nmax.items.per.slide=最多 % 每張投影片\nmax.lines.per.slide=每張投影片顯示行數 (大約)\nmax.verses.label=最多一次顯示的經文節數\nmediashout.button=MediaShout\nmediashout.import.line1=選擇 MediaShout db 位置(匯出為文本):\nmiddle.text.position=中間\nmissionpraise.import.line1=本操作將從 Mission Praise RTF 檔匯入歌曲。\nmobile.lyrics.heading=行動裝置歌詞\nmobile.remote.heading=行動裝置遠端\nmore.font.options.label=更多字體選項\nmore.fonts.label=更多字體\nmove.down.schedule.tooltip=在播放清單中往下移\nmove.down.sequence.tooltip=Move section down in sequence order\nmove.up.schedule.tooltip=在播放清單中往上移\nmove.up.sequence.tooltip=Move section up in sequence order\nmp.button=Mission Praise\nname.label=名稱\nnavigate.mob.url.label=行動裝置歌詞 URL\nnavigate.remote.control.label=遠端遙控 URL\nnew.notice.heading=新增通知\nnew.notice.text=新增通知\nnew.schedule.button=新增播放清單\nnew.schedule.text=新增播放清單\nnew.schedule.tooltip=新增播放清單\nnew.song.button=新增歌曲\nnew.song.title=新增歌曲\nnew.song.tooltip=新增歌曲\nnew.theme.text=新增主題...\nnew.theme.title=新增主題\nnew.translation.title=新增翻譯\nnewer.version.available=有新版本的 Quelea 可用\nnewer.version.available.title=有更新可用\nno.chords.message=該歌曲不含有任何可以變調的和絃。\nno.chords.title=沒有和絃\nno.dvd.error=請插入可用的 DVD 或者 Blu-ray。\nno.dvd.heading=未找到光碟片\nno.newer.version.available=已經是最新版的 Quelea\nno.newer.version.available.title=已經是最新版！\nno.tdb.heading=TurboDB Data Exchange 無法找到\nno.tdb.message=由於技術原因， 你需要下載 TurboDB data exchange (https\\://www.dataweb.de/en/support/downloads.html) 後 Quelea 才能匯入 ZionWorx 資料庫.\\n下載後, 將壓縮包解壓縮到 $1.\\n\\n如果有問題， 請前往討論群組提問 (https://quelea.discourse.group)。\nno.text=否\nno.verse.message=我們無法找到指定經節並且嘗試了忽略並繼續。\nno.verse.title=未找到經節\nnonbreak.tooltip=新增不斷行\nnone.text=無\nnot.started.label=未開始的\nnotes.label=音符\nnotice.background.colour.text=通知背景顏色\nnotice.colour.text=通知顏色\nnotice.expired.text=你正編輯的通知已失效。 想重新新增該通知嗎？\nnotice.expired.title=通知已失效\nnotice.font.size=通知字體大小\nnotice.font.text=通知字體\nnotice.infinite.question=是否重覆\nnotice.options.heading=通知\nnotice.position.text=通知位置\nnotice.speed.text=通知速度\nnotice.text=通知\nnotice.times.text=顯示次數\nnotices.heading=通知\noff.button=關閉\nok.button=確定\nolp.button=OpenLP\nolp.import.line1=選擇 OpenLP 資料庫位置。\nolyrics.button=OpenLyrics\non.button=開啟\none.line.mode.label=只預覽所選歌曲的第一行\none.monitor.title=只有一台顯示器\none.monitor.warning=看來您只有一台顯示器。 如果您只是使用Quelea來準備一些波放清單，那沒問題，但是如果您在現場環境中要使用它，Quelea需要2台顯示器才能正常工作。\noo.path=OpenOffice 路徑\nopen.existing.schedule.text=打開現有播放清單\nopen.in.browser=在瀏覽器中打開...\nopen.schedule.button=開啟播放清單\nopen.schedule.text=開啟播放清單\nopen.schedule.tooltip=打開播放清單\nopenlyrics.import.line1=請從下面選擇 openlyrics 歌曲壓縮包位置。\noptions.button=選項\noptions.text=選項\noptions.title=選項\norder.service.heading=活動順序\nos.button=Opensong\nos.import.line1=請選擇 Opensong 資料庫位置。\noutput.text=輸出\noverflow.song.label=益處當前歌曲到下一首\noverwrite.lyrics.text=我們已經為您自動翻譯了歌詞 - 需要採用嗎？\\nY你的當前翻譯將被覆蓋。\noverwrite.lyrics.title=覆蓋現有歌詞?\noverwrite.text=覆蓋\npart=part\npassword.empty.label=Empty password found\npassword.empty.message=The server password cannot be empty. The default password \"quelea\" will be used unless you enter something in the password box.\npassword.text=密碼\npaste.label=黏貼\npause=暫停\npause.record.tooltip=暫停錄音\npco.button=Planning Center Online\npco.import.heading=Planning Center Online\npco.login.import.heading=Planning Center 線上登入\npco.loginerror.title=登入錯誤\npco.loginerror.warning=登入失敗, 請檢查email和密碼後再試。\npdf.button=PDF\nplainText.button=純文字\nplaintext.import.line1=本操作將從純文字檔匯入歌曲。\nplay=播放\npm.button=Presentation Manager\npm.import.line1=選擇 Presentation Manager 歌曲進行匯入。\npng.files.description=PNG 圖片檔\nport.number.label=埠號\npp.already.running.label=PowerPoint 已經運行\npp.already.running.message=發現 PowerPoint 已經在運行。 請在運行 Quelea 前關閉所有 PowerPoint 實例以免資料丟失。\npp.path=PowerPoint 主程序路徑\nprechorus.tooltip=新增 pre-chorus 標題\npresentation.changed.label=投影片設定已更改\npresentation.changed.message=你需要重啟 Quelea 使投影片播放設定生效。\npresentation.not.started.label=PowerPoint 沒有運行\npresentation.not.started.message=你的投影片無法使用 PowerPoint 播放，也許檔已經損壞？\npresentation.options.heading=投影片\npreview.failed=預覽失敗\npreview.heading=預覽\npreview.on.image.change.label=圖片更改後預覽專案\nprint.chords.export.question=匯出歌曲時包含和絃？\nprint.chords.question=列印歌曲時包括和絃？\nprint.current.schedule.text=列印當前播放清單\nprint.schedule.button=列印播放清單\nprint.schedule.text=列印播放清單\nprint.schedule.tooltip=列印播放清單\nprinting.options.text=列印歌曲\nprojection.window.title=投影窗口\nprojector.heading=投影機\nprojector.menu=投影機\nprojector.screen.label=投影螢幕\npropresenter.button=ProPresenter\npropresenter.import.line1=This will import songs from a Propresenter song file.\npublisher.label=發行商\nqsp.button=Quelea Song Pack\nqsp.import.line1=請選擇 Quelea 歌曲包位置。\nquelea.schedule.text=Quelea 播放清單\nquick.edit.text=快速編輯\nquick.insert.text=快速插入\nquick.shortcut.description=按 Escape 取消, shift+enter 儲存\nquit.quelea.text=從 Quelea 退出\nrcs.add.bible.error=新增 $1 到播放清單出錯\nrcs.add.failed=新增失敗\nrcs.add.song=新增歌曲到播放清單\nrcs.add.success=新增成功\nrcs.bible.search=聖經\nrcs.search=搜尋並新增\nrcs.song.search=歌曲\nrcs.submit=提交\nrecord.audio.tooltip=錄音\nrecording.no.devices.message=抱歉，沒有找到相容的錄音設備。\\n確保你的錄音設備已經插入並且已經開啟。\nrecording.no.devices.title=沒有找到錄音設備\nrecording.warning.message=你必須在選項中設定錄音路徑後才可以開始錄音。\nrecording.warning.title=請先設定錄音路徑\nrecordings.options.heading=錄音\nrecordings.path=錄音路徑\nredo.label=復原\nrefresh.button=重新整理\nrefresh.images.panel=重新整理圖片\nremote.about.text.app=This app is a non-profit app made to use with the open source church software Quelea (http://quelea.org). Although it's no longer in beta, it's surely not flawless yet nor is it feature complete. This is a side project and mostly meant for personal usage, but is gladly shared with anyone who might find it useful.\nremote.about.text.responsibility=I cannot guarantee a flawless experience, so I will not take responsibility for any issues that could occur in a live setting.\nremote.about.text.support=Feel free to send me an email at arvid @ quelea.org if you have any questions or are experiencing issues, but make sure you've started Quelea before the app (with both servers active), that both devices are connected to same network and that you've entered the correct URL first.\nremote.about.title=About this app\nremote.about.translating=About translating the app\nremote.action.black=Hide text with black screen\nremote.action.clear=Hide text with clear button\nremote.action.item=Move to next/previous item\nremote.action.logo=Hide text and show logo\nremote.action.nothing=Do nothing\nremote.action.slide=Move to next/previous slide\nremote.add.go.live=Add and go live\nremote.auto.progress.item=Progress to next/previous item\nremote.black.text=黑色\nremote.choose.action=Choose action for $1\nremote.clear.text=清除\nremote.connected=Connected!\nremote.control.app.name=Quelea Mobile Remote\nremote.control.password=遠端控制密碼 (大小寫不同)\nremote.disable.record=Disable the record button\nremote.donations.link=Donate\nremote.double.press.description=Select what you want to happen if you press two buttons at the same time when you are navigating with either of the two options above.\nremote.double.press.title=Double press action\nremote.dpad.navigation.description=Use dpad buttons (up/down) to navigate to next or previous slide/item. If you want to use a bluetooth keyboard or pedal (like AirTurn), activate this.\nremote.empty.lyrics=歌詞會顯示在此\nremote.enable.dpad.navigation=Enable dpad navigation\nremote.enable.volume.navigation=Enable volume navigation\nremote.failed.finding.server=Failed to find the Quelea Mobile Remote server. Please make sure Quelea is started and that you've entered the right URL.\nremote.information.title=Information\nremote.ipv6.not.supported=Unfortunately you can't use IPv6 addresses. You need to use an IPv4 address to be able to use this app. If you don't know how to find it, google 'find local ip' and the name of your operating system. Enter the IPv4 address/URL below.\nremote.login.text=請登錄後繼續\nremote.logo.text=徽標\nremote.logout.text=登出\nremote.long.press.description=Select what you want to happen if you long-press a button when you are navigating with either of the two options above. Note that this won\\'t work with AirTurn pedals.\nremote.long.press.title=Long-press action\nremote.navigation.settings.title=Navigation settings\nremote.needs.newer.version=This feature needs the server to run Quelea $1 or above\nremote.next.text=下一張\nremote.nextitem.text=下一個項目\nremote.no.wifi=You are not connected to a wifi. Please set the URL manually or connect to a wifi.\nremote.on.end.description=Select what you want the app to do when you navigate with either of the two options above and reach the end/beginning of an item.\nremote.on.end.title=Item end/beginning action\nremote.port.needed=The URL must contain the port number at the end (e.g. ':1112'). Try again.\nremote.prev.text=上一張\nremote.previtem.text=上一個項目\nremote.privacy.policy=Privacy policy\nremote.report.issue=Report an issue\nremote.search.server=Search server\nremote.search.tooltip=Add a song or a bible passage\nremote.select.book=Select book\nremote.select.chapter.verses=Select chapter and verse(s)\nremote.select.theme=Select theme\nremote.send.notice.tooltip=Add a notice\nremote.signal.failed=Failed sending the signal to the server\nremote.source.code=Source code\nremote.submit.text=登錄\nremote.swipe.navigation.description=Choose what should happen if you swipe left or right on the screen.\nremote.swipe.navigation.title=Swipe navigation\nremote.theme.was.set=$1 was set as the global theme\nremote.use.autoconnect=Automatically try to find the server URL\nremote.volume.navigation.description=Use the phone hardware volume buttons to navigate to next or previous slide/item.\nremote.wrong.content=The wrong page content was found. Try again.\nremove.image.text=刪除圖片\nremove.item.button=刪除項目\nremove.notice.text=刪除通知\nremove.sequence.tooltip=Remove section from sequence order\nremove.song.schedule.tooltip=從播放清單中刪除\nremove.song.text=從資料庫刪除歌曲\nremove.theme.tooltip=刪除主題\nremove.timer.text=刪除計時器\nremove.video.text=刪除視訊\nright=右\nrtf.files.description=RTF 檔\nrun.spellcheck.label=拼寫檢查\nsave.add.notice.button=儲存並新增\nsave.as.schedule.button=另存播放清單為...\nsave.as.schedule.disk.text=儲存播放清單為不同檔\nsave.as.schedule.text=另存播放清單\nsave.before.exit.text=播放清單已經被更改。 退出前是否儲存？\nsave.before.exit.title=未儲存的播放清單\nsave.qr.code.text=儲存QR code\nsave.recording.before.exit.message=退出前是否儲存錄音？\nsave.recording.before.exit.title=尚未儲存的錄音\nsave.schedule.button=儲存播放清單\nsave.schedule.disk.text=儲存播放清單到...\nsave.schedule.text=儲存播放清單\nsave.schedule.tooltip=儲存播放清單\nsave.text=儲存\nsaved.notices=已儲存的通知\nsaving.schedule=正在儲存播放清單...\nschedule.clear.text=播放清單已被更改。確定不儲存就繼續嗎?\nschedule.heading=播放清單\nschedule.items.skipped.header=部分播放清單專案被忽略。\nschedule.items.skipped.text=部分播放清單專案沒有包含媒體，所以沒有被新增。\nschedule.menu=播放清單\nschedule.options=播放清單選項\nsdb.files.description=Songpro 資料庫檔\nsearch.bible.button=搜尋聖經...\nseconds.label=秒\nselect.color.button=選擇顏色\nselect.color.title=選擇顏色\nselect.export.songs.line1=以下歌曲已經在資料庫中。\nselect.export.songs.line2=選擇要匯出的項目然後點 \"新增\"。\nselect.folder.images.panel=選擇資料夾...\nselect.image.button=選擇圖片\nselect.imported.songs.line1=以下歌曲被匯入。\nselect.imported.songs.line2=選擇要新增到資料庫的專案然後點擊\"新增\"。\nselect.imported.songs.line3=Quelea 認為重複的歌曲未被選中。\nselect.key.label=選擇新調:\nselect.language=選擇語言:\nselect.songs.title=選擇歌曲\nselect.translation.label=選擇額外歌詞翻譯:\nselect.video.button=選擇視訊\nsend.live.text=直播文字\nsequence.selection.dialog.title=Sequence Selection\nsequence.tooltip=Song sequence dialog\nserver.changed.label=伺服器設定已修改\nserver.changed.message=你需要重啟 Quelea 伺服器設定才會生效。\nserver.settings.heading=伺服器設定\nset.loop.manually.message=投影片已經關閉。如果你想使用 Quelea's 的迴圈功能與 PowerPoint 檢視器協同, 你需要手動將投影片設定為迴圈。\nset.loop.manually.title=沒找到 PowerPoint\nsetup.oo.failed.text=設定 OpenOffice 顯示投影片出錯。 請確保已經安裝 OpenOffice 並且路徑正確。\nsetup.oo.failed.title=初始化 OpenOffice 失敗\nshadow.color=陰影顏色\nshadow.color.label=陰影顏色\nshadow.offset.label=陰影偏移\nshadow.radius.label=陰影半徑\nshadow.spread.label=陰影擴散\nshadow.text=陰影\nshadow.x=陰影 X 偏移\nshadow.y=陰影 Y 偏移\nshare.heading=分享\nshow.extra.live.panel.toolbar.options.label=顯示額外的現場控制工具選項\nshow.small.bible.text.label=顯示小字聖經資訊\nshow.small.song.text.label=顯示小字歌曲資訊\nshow.verse.numbers=顯示經節數位\nshow.video.library.panel=顯示視訊庫標籤頁 (需重啟應用)\nsimilar.colors.text=你為背景和文字選擇了相近的顏色，這會導致閱讀困難，請選擇更優化的顏色！\nslide.text=投影片\nslide.transition.label=淡出淡入投影片\nsm.button=Screen Monkey\nsmall.bible.position.label=聖經資訊位置\nsmall.bible.size.label=聖經資訊大小\nsmall.bible.text.options=小字聖經選項\nsmall.song.position.label=歌曲資訊位置\nsmall.song.size.label=歌曲資訊大小\nsmall.song.text.options=小字歌曲選項\nsmall.text.position.label=歌曲和聖經資訊顯示位置\nsmi.import.line1=選擇 Screen Monkey 歌曲進行匯入。\nsng.files.description=SNG (SongBeamer) 檔\nsof.button=團契歌曲\nsof.import.line1=本操作將從一個 RTF 檔匯入 SoF 庫。\nsong.default.theme.label=歌曲預設\nsong.id.selector=請選擇歌曲 ID\nsong.list=歌曲清單\nsong.sequence=歌曲順序\nsongbeamer.button=SongBeamer\nsongbeamer.import.line1=選擇要匯入的 SNG 檔位置:\nsongpro.button=SongPro\nsongpro.import.line1=本操作將從 SongPro SDB 資料庫匯入歌曲。\nsongs.heading=歌曲\nsongselect.button=SongSelect\nsongselect.import.line1=在下面選擇 SongSelect 檔。\nsource.button=來源\nsource.import.line1=從CD上選擇 ymns 目錄。\nsp.button=Sunday Plus\nspace.key=空格\nspelling.check.title=拼寫檢查\nspelling.complete.text=拼寫檢查完成。\nspelling.errors.in.doc.label=檔中有拼寫錯誤。 點擊 \"F7\" 打開拼寫檢查對話方塊。\nsplit.bible.verses=在投影片之間保持經節完整\nss.button=Survivor Songbook\nstage.background.colour=背景顏色\nstage.chord.colour=和絃顏色\nstage.font.selection=字體\nstage.line.alignment=文字對其\nstage.lyrics.colour=歌詞顏色\nstage.options.heading=舞臺視圖\nstage.screen.label=舞臺螢幕\nstage.show.chords=顯示和絃？\nstartup.error.text=抱歉， 由於某種原因 Quelea 無法啟動。 請發郵件到 support@quelea.org 並附上錯誤日誌檔 ($1).\\n\\n活著前往討論群組提問 (https://quelea.discourse.group)。\nstartup.error.title=啟動錯誤\nstretch.video.label=延伸視訊\nsundayplus.import.line1=選擇 Sunday Plus 資料庫位置。\nsurvivor.import.line1=選擇 Survivor Songbook PDF 檔位置。\nsurvivor.import.line2=這必須是 acetates.pdf 檔， 不是吉他和絃和樂譜。\nswitch.input.button=切換輸入\nswitch.to.text=切換到\ntag.tooltip=新增標籤標題\ntags.button=管理標籤...\ntags.colon.label=標籤:\ntags.label=標籤\ntest.patterns.explanation=測試圖案可説明您校準顯示焦距。 點擊圖案後會顯示在投影和舞臺視圖上。\ntest.patterns.text=測試圖案\ntext.border.thickness.label=文邊框粗細\ntext.options.options=文章選項\ntext.position.label=文字位置\ntext.shadow.label=顯示文字陰影\ntheme.button.tooltip=為播放清單選擇預設主題\ntheme.changed=Theme Changed\ntheme.changed.message=重啟Quelea後主題才能生效\ntheme.copy.label=從該主題複製\ntheme.heading=主題\ntheme.name.label=主題名稱\ntheme.options=主題選項\ntheme.select.label=選擇主題\ntheme.select.text=選擇主題:\nthumbnail.size.label=縮略圖大小\ntimer.duration.label=倒數時長\ntimer.file.label=背景檔位置\ntimer.files.description=倒數計時器\ntimer.name.label=名稱\ntimer.save.label=儲存計時器?\ntimer.text.label=額外文字\ntimer.text.prompt=使用 # 來放置計時器， 例如 \"敬拜在 # 分鐘後開始\" 將顯示為 \"敬拜在 05:00 分鐘後開始\"\ntimer.theme.button=更改主題\ntimer.theme.label=主題設定\ntitle.label=標題\ntoo.many.verses.error=抱歉， 多處經文無法顯示... 請調整文字大小。\ntools.label=工具\ntools.menu=工具\ntop=頂端\ntop.text.position=頂端\ntranslate.dialog.title=翻譯管理\ntranslate.heading=翻譯\ntranslate.tooltip=歌曲翻譯\ntranslating.text.please.wait.text=請稍後 - 正在取得翻譯...\ntranslation.choice.title=選擇翻譯\ntranslation.export.heading=翻譯匯出\ntranslation.font.text=翻譯字體\ntranspose.label=移調\ntranspose.tooltip=移調...\ntrim.lines.tooltip=調整行數\ntype.lyrics.here.text=在此輸入歌詞\ntype.tag.name.here.text=<在此輸入標籤名稱>\nundo.label=恢復\nuniform.font.size.label=使用統一字體大小\nuntitled.theme.text=未命名主題\nupdating.db=更正在新資料庫\nuse.24h.clock=使用 24 小時制\nuse.bible.verses=分割經文到投影片\nuse.mobile.lyrics.label=使用 Mobile Lyrics\nuse.oo.label=使用 OpenOffice 播放投影片 (試驗)\nuse.pp.label=使用 PowerPoint 播放投影片\nuse.remote.control.label=使用遠端遙控\nuse.shadow.label=使用陰影\nuser.options.options=使用者選項\nverse.tooltip=新增經節標題\nverses=節\nvideo.error=無法初始化視訊庫- 視訊無法顯示。 請在討論群組提問 (參見説明功能表) 來解決問題。\nvideo.error.general=抱歉，你選擇的視訊檔有錯誤。\nvideo.error.title=視訊錯誤\nvideo.error.unsupported=抱歉，你選擇的視訊檔不被支援。\nvideo.hue.label=色調\nvideo.loop.tooltip=切換循環 開 / 關\nvideo.theme.label=視訊\nvideopsalm.button=VideoPsalm\nvideopsalm.import.line1=本操作將從一個 JSON 檔匯入 VideoPsalm 庫。\nview.bible.button=查看聖經...\nvisit.webpage.now=下載訪問網站進行下載？\nvlc.version.message=你的 VLC 太舊。 你需要安裝最新 VLC 才能播放視訊，音訊，和動態背景。 想下載 VLC 嗎? 安裝 VLC 後需要重啟 Quelea 才能生效。\nvlc.warning.message=Quelea 找不到 VLC。 沒有它, Quelea w無法播放視訊, 音訊, 和動態背景。 想下載 VLC 嗎? 安裝 VLC 後需要重啟 Quelea 才能生效。\nvlc.warning.title=無法找到 VLC\nwarning.label=警告\nwebsite.dialog.content=輸入要顯示的網頁位址:\nwebsite.dialog.header=輸入網頁 URL\nwebsite.dialog.title=網頁 URL\nwords=字數\nworshiphim.button=Worship Him\nworshiphim.import.line1=選擇 Worship Him db 位置(mdb 格式):\nyear.label=年\nyes.text=是\nyoutube.url.label=Youtube 視訊 URL\nzw.button=ZionWorx\nzw.import.line1=選擇 ZionWorx \"MainTable.dat\" 檔位置。\nzw.import.line2=檔通常在 in \"C:\\\\ProgramData\\\\ZionWorx\\\\2.6\\\\Data\"。\n"
  },
  {
    "path": "Quelea/languages/cs.lang",
    "content": "LANGUAGENAME=Čeština (CZ)\nLOCALE=cz\ndatabase.heading=Databáze\nimport.heading=Importovat\nqsp.button=Balíček písní Quelea\nss.button=Zpěvník Survivor\nprojector.heading=Projektor\ncontrols.heading=Ovládání\non.button=Zapnuto\noff.button=Vypnuto\nswitch.input.button=Přepnout vstup\ngeneral.options.heading=Obecné\ndisplay.options.heading=Obrazovka\nbible.options.heading=Bible\ncheck.for.update.label=Při spuštění zkontrolovat aktualizace\n1.monitor.warn.label=Upozornění, pokud je připojena jen jedna obrazovka\ncapitalise.start.line.label=Začátek každého řádku psát velkým písmenem\ndisplay.song.info.label=Zobrazit informace o písni\none.line.mode.label=Zobrazit náhled jen jednoho řádku písně\ntext.border.thickness.label=Tloušťka okraje textu\nmax.chars.line.label=Největší počet znaků na řádek\nadvanced.label=Pokročilé\nok.button=OK\noutput.text=Výstup\ncontrol.screen.label=Řídící obrazovka\nprojector.screen.label=Promítací obrazovka\nstage.screen.label=Obrazovka jeviště\ncustom.position.text=Vlastní poloha textu\ndefault.bible.label=Výchozí\nmax.verses.label=Největší počet veršů zobrazených najednou\nadd.bible.label=Přidat bibli...\nnone.text=Žádný\nnew.schedule.button=Nový rozvrh\nopen.schedule.button=Otevřít rozvrh\nsave.schedule.button=Uložit rozvrh\nsave.as.schedule.button=Uložit rozvrh jako...\nprint.schedule.button=Tisk rozvrhu\noptions.title=Nastavení\noptions.button=Nastavení\nexit.button=Ukončit\nnew.schedule.text=Nový rozvrh\ncreate.new.schedule.text=Vytvořit nový rozvrh\nopen.schedule.text=Otevřít rozvrh\nopen.existing.schedule.text=Otevřít stávající rozvrh\nsave.schedule.text=Uložit rozvrh\nsave.schedule.disk.text=Uložit rozvrh na disk\nsave.as.schedule.text=Uložit rozvrh jako...\nsave.as.schedule.disk.text=Uložit rozvrh jako jiný soubor\nprint.schedule.text=Vytisknout rozvrh\nprint.current.schedule.text=Vytisknout nynější rozvrh\noptions.text=Nastavení\ndisplay.options.text=Zobrazit dialog nastavení\nexit.text=Ukončit Quelea\nquit.quelea.text=Ukončit Quelea\nlibrary.image.heading=Obrázky\nlibrary.songs.heading=Písně\nlibrary.bible.heading=Bible\nbible.heading=Bible\nlibrary.song.search=Hledání\nclear.search.box=Smazat hledání\nadd.song.text=Přidat píseň do databáze\nremove.song.text=Odstranit píseň z databáze\nlibrary.add.to.schedule.text=Přidat do rozvrhu\nlibrary.edit.song.text=Upravit píseň\nlibrary.remove.song.text=Odstranit píseň\nlibrary.print.song.text=Vytisknout píseň\nadd.to.schedule.text=Přidat do rozvrhu\norder.service.heading=Řazení promítání\nmove.down.schedule.tooltip=Posunout v rozvrhu dolů\nmove.up.schedule.tooltip=Posunout v rozvrhu nahoru\nremove.song.schedule.tooltip=Odebrat z rozvrhu\nadjust.theme.tooltip=Přizpůsobit vzhled\nedit.song.text=Upravit píseň\nnew.theme.text=Nový vzhled...\ntheme.select.text=Vybrat vzhled:\ndefault.theme.name=Výchozí\ndefault.theme.text=Výchozí vzhled\nremove.theme.tooltip=Odstranit vzhled\nedit.theme.tooltip=Upravit vzhled\nedit.theme.heading=Upravit vzhled\npreview.heading=Náhled\nlive.heading=Naživo\ngo.live.text=Jít naživo\nblack.screen.tooltip=Černá obrazovka\nclear.text.tooltip=Vypnout text\nhide.display.output.tooltip=Skrýt výstup na obrazovku\nschedule.heading=Rozvrh\nadd.song.button=Přidat píseň\nedit.song.button=Upravit píseň\nremove.item.button=Odstranit položku\nadd.multimedia.heading=Přidat multimédia\nadd.presentation.button=Přidat prezentaci\nadd.video.button=Přidat video\nadd.youtube.button=Přidat video z Youtube\nadd.live.video.button=Přidat živý videopřenos\nadd.dvd.button=Přidat DVD\nadd.audio.button=Zvuk\nadd.audio.tooltip=Přidat zvuk\nshare.heading=Sdílet\nemail.button=E-mail\nmanage.notices.button=Spravovat upozornění...\nnotices.heading=Upozornění\nnew.notice.text=Nové upozornění\nedit.notice.text=Upravit upozornění \nremove.notice.text=Odstranit upozornění\ndone.text=Hotovo\nnew.notice.heading=Nové upozornění\nnotice.text=Upozornění\nnotice.times.text=Kolikrát ukázat?\nnotice.infinite.question=Nekonečná smyčka?\nadd.notice.button=Přidat upozornění\nedit.notice.button=Upravit upozornění\ncancel.text=Zrušit\nnew.song.button=Nová píseň\ndelete.song.button=Smazat píseň\nsongs.heading=Písně\ntags.button=Spravovat značky...\nsource.button=Zdroj\nkingsway.button=Kingsway na internetu\nsof.button=Písně společenství\nexport.heading=Vyvést\nfilter.tag=Filtrovat značky\ntags.colon.label=Značky:\nimport.button=Importovat\nclick.select.file.text=Klepnout pro výběr souboru\ncheck.duplicates.text=Prověřit duplikáty\nedit.song.title=Upravit píseň\nbasic.information.heading=Základní informace\ndetailed.info.heading=Podrobné informace\ntheme.heading=Téma\ntitle.label=Název\nauthor.label=Autor\nrun.spellcheck.label=Kontrola pravopisu\nfix.apos.label=Ošetřit odsuvníky\ntrim.lines.tooltip=Oříznout řádky\ntranspose.tooltip=Převést...\ncancel.button=Zrušit\nccli.number.label=Číslo CCLI\ncopyright.label=Autorská práva\nyear.label=Rok\npublisher.label=Vydavatel\ntags.label=Značky\ntype.tag.name.here.text=<Zde napište názvy značek>\nkey.label=Předznamenání\ncapo.label=Kapodastr\nnotes.label=Poznámky\nfont.theme.label=Font písma\nchoose.color.text=Vybrat barvu...\nbackground.theme.label=Podoba pozadí\nbackground.text=Pozadí\ncolor.theme.label=Barva\nimage.theme.label=Obrázek\nselect.color.title=Výběr barvy\nselect.color.button=Vybrat barvu\nnew.song.title=Nová píseň\ntype.lyrics.here.text=Zde pište slova písně\nkingsway.import.line1=Toto nahraje knihovnu písní Kingsway z internetu.\nkingsway.import.line2=Bude to trvat dlouho (možná i hodiny!), buďte proto, prosím, trpěliví a nechte Queleu běžet!\nqsp.import.line1=Vyberte umístění balíčku písní Quelea.\nsource.import.line1=Vyberte umístění adresáře ymns na zdrojovém CD.\nsurvivor.import.line1=Vyberte umístění PDF se zpěvníkem Survivor.\nsurvivor.import.line2=Musí to být soubor acetates.pdf, nikoli kytarové akordy nebo oskenovaný list s notami.\nemail.error.title=Chyba elektronické pošty\nemail.error.text=Při otevírání poštovního klienta se vyskytla chyba. Ujistěte se, že poštovní klient je nainstalován, soubory eml jsou přiřazeny, aby s nimi mohl pracovat. V opačném případě budete muset elektronické dopisy posílat ručně.\nemail.text=Ahoj! Vámi poslaný rozvrh Quelea je připojen jako příloha. Jednoduše jej otevřete v programu Quelea a všechny položky by se měly objevit správně. Přeji hezký den\nselect.image.button=Vybrat obrázek\nimage.files.description=Obrázkové soubory\ntools.label=Nástroje\nselect.songs.title=Vybrat písně\ncheck.uncheck.all.text=Označit/Odznačit vše\ndelete.theme.confirm.title=Potvrdit smazání\ndelete.theme.question=Opravdu smazat toto téma?\ntoo.many.verses.error=Promiňte, ale tolik veršů zobrazit nelze... Zkuste, prosím, menší počet.\none.monitor.warning=Vypadá to, že máte připojenu jen jednu obrazovku. To je v pořádku, pokud Queleu používáte na přípravu rozvrhů, ale pokud ji používáte při promítání naživo, je potřeba připojit další obrazovku v režimu rozšířit, aby pracovala správně.\none.monitor.title=Jen jedna obrazovka\nno.dvd.heading=Nenalezeno žádné DVD\nno.dvd.error=Vložte, prosím, DVD.\nadding.presentation.status=Import prezentace...\nadding.presentation.error.message=Při zavádění prezentace se vyskytla chyba. Možná je soubor poškozený.\nadding.presentation.error.title=Chyba při nahrávání prezentace.\nimporting.status=Importuje se...\nname.label=Název\nsimilar.colors.text=Barvy pozadí a textu jsou příliš podobné, změnte barvy kvůli lepší čitelnosti.\nwarning.label=Varování\nfile.menu=Soubor\ntools.menu=Nástroje\nschedule.menu=Rozvrh\ndatabase.menu=Databáze\nprojector.menu=Projektor\nnew.theme.title=Nový motiv\nadd.theme.label=Přidat motiv\ntheme.name.label=Název motivu\nhelp.menu=Nápověda\nhelp.menu.website=Internetové stránky\nhelp.menu.discussion=Podpora/Diskuze (zde pokládejte otázky)\nhelp.menu.download=Stažení\nhelp.menu.update=Ověřovat dostupnost aktualizací\nhelp.menu.about=O programu...\nhelp.menu.error.title=Chyba\nhelp.about.title=O programu\nhelp.about.version=Verze\nhelp.about.close=Zavřít\nhelp.about.line1=Quelea je licencována pod GPL (verze 3)\nhelp.about.line2=Je a vždy bude svobodný program s otevřeným zdrojovým kódem.\nnew.schedule.tooltip=Nový rozvrh\nopen.schedule.tooltip=Otevřít rozvrh\nsave.schedule.tooltip=Uložit rozvrh\nprint.schedule.tooltip=Vytisknout rozvrh\nnew.song.tooltip=Nová píseň\nadd.presentation.tooltip=Přidat prezentaci\nadd.dvd.tooltip=Přidat DVD\nadd.video.tooltip=Přidat video\nmanage.tags.tooltip=Spravovat značky\nmanage.notices.tooltip=Spravovat upozornění\nalready.running.error=Vypadá to, že Quelea už běží. Ujistěte se, že jste ji před spuštěním zavřeli a i její ostatní verze.\nalready.running.title=Quelea již běží\nerror.schedule.message=Při otevírání rozvrhu se vyskytly potíže. Možná je poškozen, nebo to není rozvrh uložený v programu Quelea.\nerror.schedule.title=Chyba při otevírání rozvrhu\nprint.chords.question=Zahrnout při tisku této písně akordy?\nprinting.options.text=Vytisknout píseň\nspace.key=mezerník\nupdating.db=Obnovuje se databáze\nerror.updating.song.text=Při aktualizaci písně v databázi se vyskytla chyba. Je možné, že je poškozena.\nerror.text=Chyba\nquick.shortcut.description=Stiskněte klávesu Escape pro zrušení, Shift+Enter pro uložení\nsave.before.exit.text=Rozvrh byl změněn. Uložit před ukončením?\nsave.before.exit.title=Neuložený rozvrh\nno.chords.message=Tato píseň nemá žádné řádky s akordy k převedení.\nno.chords.title=Žádné akordy\nerror.checking.updates.title=Nepodařilo se zkontrolovat aktualizace\nerror.checking.updates.text=Je nám líto, ale při kontrole aktualizací se vyskytla chyba. Zkontrolujte, prosím, své internetové spojení, a potom to zkuste znovu.\nnewer.version.available=Je dostupná novější verze programu Quelea!\nno.newer.version.available=Provozujete nejnovější verzi programu Quelea\nvisit.webpage.now=Navštívit stránky a stáhnout novou verzi hned?\ndownload.manual.update=Můžete ji stáhnout zde\\: \nnewer.version.available.title=Je dostupná aktualizace\nno.newer.version.available.title=Již aktualizováno!\ncheck.kingsway.start=Již jste zavedli některé položky z knihovny Kingsway. Chcete pokračovat v zavádění tam, kde jste naposledy skončili?\ncheck.kingsway.start.title=Již zavedené položky\nimport.no.songs.title=Nenalezeny žádné písně\nimport.no.songs.text=Nepodařilo se nalézt žádné písně k zavedení.\nstage.options.heading=Jeviště\nstage.show.chords=Ukázat akordy?\nstage.line.alignment=Zarovnání textu\nstage.font.selection=Font\nstage.background.colour=Barva pozadí\nstage.lyrics.colour=Barva textu písně\nstage.chord.colour=Barva akordů\nleft=Vlevo\ncentre=Na střed\nright=Vpravo\nconfirm.label=Opravdu toto chcete?\nschedule.clear.text=Rozvrh byl změněn. Pokračovat bez uložení?\npart=část\nhelp.menu.facebook=Stránka u služby Facebook\nvideo.error=Nepodařilo se inicializovat knihovny pro video - Video nepůjde přehrávat. Požádejte, prosím, v diskuzi (viz nabídka nápovědy) o pomoc, která by to vyřešila.\nvideo.error.title=Chyba videa\ntext.shadow.label=Zobrazit stín textu\nadding.images=Přidávají se obrázky...\nsetup.oo.failed.text=Nepodařilo se nastavit program OpenOffice na zobrazování prezentací. Ujistěte se, prosím, že máte program OpenOffice nainstalován a že je poskytnutá cesta správná.\nsetup.oo.failed.title=OpenOffice se nepodařilo inicializovat\nuse.oo.label=Použít OpenOffice na prezentace\noo.path=Cesta k programu OpenOffice\nbrowse=Procházet...\nbuilding.bible.index=Nahrávají se bible\nbible.search.title=Vyhledávání v bibli\ninitial.search.text=<Pro hledání pište sem>\nview.bible.button=Zobrazit bible...\nsearch.bible.button=Hledat v biblích...\nall.text=Vše\nbible.browser.title=Prohlížeč bible\nopen.in.browser=Otevřít v prohlížeči...\nkingsway.button.all=Všechny písně\nkingsway.button.one=Jedna píseň\nsong.id.selector=Vyberte, prosím, ID písně\nbible.copy.error.text=Promiňte, ale při kopírování bible do požadovaného adresáře se objevila chyba.\nbible.copy.error.heading=Chyba\nselect.key.label=Vyberte novou tóninu:\ntranspose.label=Převést\nalready.exists.overwrite.label=již existuje. Přepsat?\noverwrite.text=Přepsat\ncant.save.schedule.title=Chyba při ukládání rozvrhu\ncant.save.schedule.text=Promiňte, ale rozvrh se nepodařilo uložit - vyskytla se chyba.\nerror.removing.song.db=Při odstraňování písně z databáze se objevila chyba.\nconfirm.remove.text=Potvrdit odstranění\nconfirm.remove.question=Opravdu chcete $1 odstranit z databáze? Tento krok nelze vrátit.\nquick.edit.text=Rychlé úpravy\nlibrary.preview.song.text=Náhled písně\nvideo.error.unsupported=Promiňte, ale vaše video není podporováno.\nvideo.error.general=Promiňte, ale u vašeho videa se objevila chyba.\nvideo.theme.label=Video\nselect.video.button=Vybrat video\nrefresh.images.panel=Obnovit obrázky\nadd.images.panel=Přidat obrázky\nselect.folder.images.panel=Vybrat složku...\ntext.position.label=Poloha textu\nimage.folder=Složka s obrázky:\nquick.insert.text=Rychlé vložení\nconfirm.overwrite.title=Soubor již existuje!\nconfirm.overwrite.text=Tento soubor již existuje. Chcete jej nahradit, nebo pokračovat bez kopírování?\nfile.rename.button=Přejmenovat\nfile.replace.button=Nahradit\nfile.continue.button=Pokračovat\nfile.rename.dialog.title=Přejmenování\nfile.rename.dialog.text=Zadejte, prosím, nový název souboru:\nplainText.button=Prostý text\nplaintext.import.line1=Toto zavede knihovnu s písněmi z adresáře obsahujícího písně jako soubory s prostým textem.\neasyslides.import.line1=Toto zavede písně ze souboru XML EasySlides.\neasyslides.button=EasySlides\nshadow.y=Posun stínu v ose Y\nshadow.x=Posun stínu v ose X\nbottom.text.position=Dole\nloading.text=Nahrává se\nselect.export.songs.line2=Vyberte píseň, kterou chcete přidat do balíku s písněmi, a potom stiskněte \"Přidat\".\nselect.export.songs.line1=Následující písně jsou již v databázi\ncorrect.text=Text je správně\nadd.to.songpack.question=Přidat balíku s písněmi?\nno.text=Ne\nmiddle.text.position=Uprostřed\ntop.text.position=Nahoře\nshadow.color=Barva stínu\nyes.text=Ano\nadd.text=Přidat\ndelete.image.title=Smazat obrázek\ninterface.language.label=Jazyk rozhraní:\nspelling.errors.in.doc.label=V dokumentu jsou pravopisné chyby. Stiskněte \"F7\" pro otevření dialogu k ověření pravopisu.\nlanguage.changed=Jazyk změněn\nignore.text=Přehlížet\nclear.live.on.remove.schedule=Smazat položku z živého pohledu při odstranění z rozvrhu\ndictionary.language.text=Jazyk slovníku\nremove.image.text=Odstranit obrázek\nselect.imported.songs.line3=U písní, o kterých si Quelea myslí, že se jedná o kopie, bylo zrušeno jejich zaškrtnutí.\nselect.imported.songs.line2=Vyberte písně, jež chcete přidat do databáze, a potom stiskněte \"Přidat\".\nselect.imported.songs.line1=Byly zavedeny následující písně.\nspelling.check.title=Ověření pravopisu\ndelete.image.confirmation=Skutečně chcete tento obrázek odstranit z knihovny? Tento krok nelze vrátit zpět.\nadd.to.database.question=Přidat do databáze?\nprojection.window.title=Promítací okno\nnotice.expired.text=Vámi upravované upozornění vypršelo. Chcete ho přidat znovu?\nspelling.complete.text=Ověření pravopisu je hotovo.\ndebug.location=Umístění zápisu o ladění\ncomplete.title=Dokončeno\nlanguage.changed.message=Musíte Queleu spustit znovu, předtím než se změna jazyka projeví.\nnotice.expired.title=Upozornění vypršelo\ndownload.vlc=Stáhnout VLC\nfilefilters.description.powerpoint.presentations=Prezentace Powerpoint\nsave.text=Uložit\nconfirm.entry.exit.title=Uložit píseň?\ncontinue.without.video=Pokračovat bez VLC\nfilefilters.description.video.files=Videosoubory\nfilefilters.description.quelea.schedules=Rozvrhy Quelea\nfilefilters.description.xml.files=Soubory XML\nfilefilters.description.survivor.songbook=Soubor Survivor acetates\nvlc.warning.message=Quelea nenašla VLC ve vašem systému. Bez něj nebude Quelea moci přehrávat obrazové a zvukové záznamy a ukazovat písně s videopozadím. Chcete je stáhnout nyní? Po nainstalování VLC budete muset Queleu spustit znovu, aby se změny projevily.\nvlc.version.message=Vaše verze VLC je příliš stará. Abyste mohli přehrávat obrazové a zvukové záznamy a ukazovat pozadí videa, musíte stáhnout nejnovější verzi VLC. Chcete ji stáhnout nyní? Aby se změny projevily, je třeba Queleu po nainstalování VLC spustit znovu.\ndont.save.text=Neukládat\nvlc.warning.title=Nepodařilo se najít VLC\nfilefilters.description.xml.bibles=Bible XML\nstartup.error.text=Promiňte, ale z nějakého důvodu se Queleu na vašem systému nepodařilo spustit. Pokud byste chtěli s pokusem o její zprovoznění pomoci, pošlete, prosím, e-mail na adresu support@quelea.org a připojte soubor s ladicím zápisem ($1).\\n\\n Popřípadě se zeptejte v diskusní skupině programu (https://quelea.discourse.group).startup.error.title=Chyba při spuštění\nfilefilters.description.plain.text.song=Píseň v prostém textu\nfilefilters.description.xml.easyslide=Soubory XML Easyslide\nconfirm.entry.exit.text=Chcete uložit své změny do této písně?\nfilefilters.description.audio.files=Zvukové soubory\nbible.search.keep.typing=Pište...\nbible.search.results.found=výsledků nalezeno\nbible.search.result.found=nalezena shoda\nuniform.font.size.label=Použít stále stejnou velikost písma\nmax.font.size.label=Největší velikost písma\nadditional.line.spacing.label=Dodatečný odstup řádků\nfilefilters.description.zip.files=Soubory Zip\nos.button=Opensong\nolp.import.line1=Vyberte umístění databáze OpenLP níže.\nloop.label=Smyčka\nport.number.label=Číslo portu pro připojení\nos.import.line1=Vyberte umístění databáze Opensong níže.\nchange.graphics.label=Změnit grafiku\nseconds.label=sekund\nolp.button=OpenLP\nfont.colour.label=Barva písma\nfilefilters.description.sqlite.files=Soubory SQLite\nbackground.colour.label=Barva pozadí\nlogo.screen.tooltip=Klepnutí levým tlačítkem myši pro zobrazení - klepnutí pravým tlačítkem myši pro nastavení\nuse.mobile.lyrics.label=Povolit zobrazení textu písně v telefonu\nmobile.lyrics.heading=Zobrazení textu písně\nnavigate.mob.url.label=Adresa (URL) pro zobrazení textu písně v telefonu\nsundayplus.import.line1=Vyberte umístění databáze Sunday Plus níže.\nsp.button=Sunday Plus\nfont.selection.dialog.title=Výběr písma\nvideo.hue.label=Odstín videa\nchosen.fonts.explanation=Quelea ukazuje výběr z písem v okně s tématem vzhledu. Přetáhněte písma, která chcete používat, z levého panelu do pravého. Ta písma, která nechcete, přetáhněte z pravého panelu do levého.\ntest.patterns.text=Zkušební vzory\nchosen.fonts.label=Zvolená písma\ntest.patterns.explanation=Zde dostupné zkušební vzory vám mají pomoci se správným nastavením vyrovnání projektoru či obrazovky včetně barev. Klepněte na zkušební obrázek pro jeho ukázání jak v hlavním tak v předváděcím pohledu.\nignored.fonts.label=Přehlížená písma\nhover.for.position.label=Přejeďte nad plátnem pro stanovení polohy textu\neasyworship.button=EasyWorship 2009\nfilefilters.description.songs.mb=Databáze Easyworship Songs.MB\nzw.import.line2=Obvykle se nachází v \"C:\\ProgramData\\ZionWorx\\2.6\\Data\".\nzw.import.line1=Níže vyberte umístění souboru ZionWorx \"MainTable.dat\".\nadd.song.hint.search.text=Nejsou zde žádné písně odpovídající\\ntomuto hledání, ale neděste se!\\nPro přidání písně jednoduše klepněte na tlačítko\\n\"Nová píseň\" vlevo.\nshow.verse.numbers=Ukázat čísla veršů\nzw.button=ZionWorx\nno.tdb.heading=TurboDB Data Exchange nenalezeno\nno.tdb.message=Z technických důvodů je potřeba, abyste stáhl TurboDB data exchange (https\\://www.dataweb.de/en/support/downloads.html), předtím než bude Quelea moci importovat databáze ZionWorx.\\nAž to stáhnete, rozbalte obsah souboru zip do $1.\\nPokud máte jakékoli potíže, potom se, prosím, klidně zeptejte v diskusní skupině zde: (https://quelea.discourse.group)\nimport.error.message=Promiňte, při zavádění se vyskytly potíže. Klidně požádejte o pomoc v diskusní skupině Quelea: https://quelea.discourse.group\nfilefilters.description.maintable.dat=Soubor databáze s hlavní tabulkou ZionWorx\nadd.song.hint.text=Nejsou zde ještě žádné písně,\\nale neděste se!\\nPro přidání písně jednoduše klepněte na tlačítko\\n\"Nová píseň\" vlevo.\neasyworship.import.line1=Tímto budou zavedeny písně Easyworship ze souboru Songs.MB.\nyoutube.url.label=Adresa videa na Youtube (URL)\nopenlyrics.import.line1=Vyberte umístění archivu zip který obsahuje nevnořené(ne v složce) písně openlyrics níže.\ntranslate.dialog.title=Správce překladů\nconfirm.remove.translation.text=Opravdu smazat tento překlad?\ndefault.translation.label=Výchozí překlad\nsmall.text.position.label=Umístění informací o písni a o Bibli\nuse.remote.control.label=Použít vzdálené ovládání\nremote.logo.text=Logo\nenter.translation.name.label=Do jakého jazyka si přejete překládat?\nremote.login.text=Pro pokračování se, prosím, přihlašte\nremote.submit.text=Přihlášení\ntranslation.font.text=Písmo dalšího překladu písní\nconfirm.remove.translation.title=Odstranit překlad?\nselect.translation.label=Vyberte překlad, který chcete ukázat s výchozím textem písně:\nolyrics.button=OpenLyrics\nchoose.translations.text=Vyberte překlady\nremote.control.password=Heslo pro vzdálené ovládání (rozlišuje se velikost písmen)\nserver.settings.heading=Server\nremote.prev.text=Předchozí snímek\nshadow.text=Stín textu\nremote.nextitem.text=Další položka\nremote.next.text=Další snímek\nnavigate.remote.control.label=Adresa (URL) vzdáleného ovládání\nsaving.schedule=Ukládá se rozvrh...\nremote.logout.text=Odhlášení\nremote.black.text=Černá\nauto.translate.label=Pokusit se písně přeložit automaticky\nclose.button=Zavřít\nremote.previtem.text=Předchozí položka\nmore.fonts.label=Více písem\nserver.changed.message=Budete Queleu muset spustit znovu, aby se nová nastavení serveru projevila.\nremote.clear.text=Smazat text\nremote.empty.lyrics=Slova písně budou zobrazena zde\nserver.changed.label=Nastavení serveru změněna\ntranslate.tooltip=Překlady písní\nadd.translation.button=Přidat překlad...\noverwrite.lyrics.text=Texty písní byly pro vás přeloženy automaticky - chcete je použít?/nVáš nynější překlad bude přepsán.\nmore.font.options.label=Další nastavení fontu\ntranslate.heading=Překlady\noverwrite.lyrics.title=Přepsat stávající text písně?\nbible.passage.selector.prompt=[Kapitola]\\:[Od verše]-[Do verše]\nmax.items.per.slide=Největší počet % na snímek\ncurrently.displaying.text=Nyní se zobrazuje\npause=Pozastavit\nverses=veršů\nedit.bible.passage.text=Upravit téma pasáže\ntheme.button.tooltip=Nastavit celkové téma pro rozvrh\nwords=slov\nplay=Přehrát\nuse.bible.verses=Rozdělit snímky pasáží Bible podle čísel veršů\nshow.small.song.text.label=Ukázat malé informace o písni\nshow.small.bible.text.label=Ukázat malé informace o pasáži Bible\nnotice.options.heading=Upozornění\nnotice.speed.text=Rychlost upozornění\nnotice.font.size=Velikost písma upozornění\nnotice.font.text=Písmo upozornění\nnotice.colour.text=Barva upozornění\nnotice.position.text=Poloha upozornění\nnotice.background.colour.text=Barva pozadí upozornění\nno.pdb.heading=Ovladač JDBC Paradox nenalezen\nno.pdb.message=Z technických důvodů je potřeba, abyste stáhnul ovladač JDBC Paradox, předtím než bude Quelea moci spolehlivě importovat databáze Easyworship:\\n\\n1. Zamiřte na stránku http://www.hxtt.com/download.jsp, zaregistrujte účet zdarma a pokračujte.\\n2. Stáhněte soubor s balíčkem \"DBF JDBC 4.1 pro JDK1.7.X a JDK1.8.X\". Měl by být pojmenován Paradox_JDBC41.jar.\\n3. Zkopírujte Paradox_JDBC41.jar do $1.\\n\\nPokud máte jakékoli potíže, zeptejte se, prosím, v diskuzní skupině (https://quelea.discourse.group). Quelea se vždy pokusí importovat databázi Easyworship, aniž by byl tento soubor na místě, ale tento postup může vést k nespolehlivým výsledkům.\nexport.schedule.pdf.button=Uložit rozvrh jako PDF\nfilefilters.description.pdf.files=Soubory PDF\nexport.pdf.button=Uložit jako PDF\nquelea.schedule.text=Rozvrh Quelea\nnot.started.label=Nespuštěno\ntext.options.options=Nastavení textu\nshadow.radius.label=Poloměr stínu\nshadow.spread.label=Rozptyl stínu\npdf.button=PDF\nshadow.color.label=Barva stínu\nuse.shadow.label=Použít stín?\nshadow.offset.label=Posun stínu\nstretch.video.label=Roztáhnout obraz videa\nexport.schedule.songs.pdf.button=Uložit písně jako PDF\nuser.options.options=Uživatelská nastavení\nexporting.label=Vyvádí se...\nprint.chords.export.question=Zahrnout při exportu těchto písní akordy?\nhelp.menu.manual=Příručka\nuntitled.theme.text=Nepojmenovaný vzhled\nsongselect.import.line1=Níže vyberte soubory SongSelect.\npng.files.description=Obrázkové soubory PNG\ncopying.video.please.wait.text=Chvíli počkejte - právě se kopíruje soubor videa...\ntimer.text.prompt=Použijte # k umístění času odpočtu, např. \"Služba začíná za #\" se zobrazí jako \"Služba začíná za 05:00\"\nfilefilters.description.usr.files=Soubory USR (SongSelect)\nsongselect.button=SongSelect\nadd.timer.tooltip=Přidat odpočítávání\ncountdown.label=Odpočítávání\nadd.timer.title=Přidat odpočet\nslide.text=Snímek\ntimer.duration.label=Doba trvání odpočítávání\nedit.theme.text=Upravit vzhled\ndelete.translation.text=Smazat překlad $1?\ntranslation.choice.title=Volba překladu\ntranslating.text.please.wait.text=Chvíli počkejte - získává se překlad...\nautoplay.vid.label=Automaticky přehrávat videa v panelu pro živé zobrazení\nadvance.on.live.label=Posunout rozvrh při zmačknutí mezerníku(jit naživo s slidem)\nnonbreak.tooltip=Přidat nezalamující řádek\ninclude.translations.question=Zahrnout překlady do souboru PDF?\nhelp.menu.wiki=Wikipedie\nsave.qr.code.text=Uložit kód QR\nfilefilters.description.image.video.files=Videa a obrázkové soubory\nnew.translation.title=Nový překlad\nduration.tooltip.label=Pište ve formátu s ##:## nebo ##m##s \ntimer.file.label=Umístění souboru s pozadím\ntimer.theme.label=Nastavení témat\ntimer.theme.button=Změna téma\npreview.on.image.change.label=Náhled položky při změně obrázku\nswitch.to.text=Přepnout na\ntranslation.export.heading=Uložení překladu\ntimer.text.label=Dodatečný text\nfont.options.title=Nastavení písma\ndelete.translation.title=Smazat překlad\nchange.bible.version.text=Přepnout překlad\nmediashout.button=MediaShout\nfilefilters.description.txt.files=Soubory .txt\nembed.media.in.schedule=Vložit média do souboru s rozvrhem\nmediashout.import.line1=Vybrat umístění databáze MediaShout (uloženo do .txt ) v:\ntop=Nahoře\ndelete.video.confirmation=Opravdu chcete toto video odstranit z knihovny? Tento krok nelze vrátit zpět.\nepicworship.button=EpicWorship\ntimer.files.description=Odpočítávání\nlibrary.video.heading=Videa\nbottom=Dole\ntimer.save.label=Uložit časomíru?\nkingsway.range.import.text=Zadejte rozsah stran písně ke stažení ze stránek Kingsway.\\nNynější největší počet stran je okolo 3600.\nadd.videos.panel=Přidat obrazové záznamy\nkingsway.button.range=Rozsah\nfilefilters.description.epc=Balík písní EpicWorship (.epc)\nadd.timers.panel=Přidat časomíry\nremove.timer.text=Smazat časomíru\nkingsway.range.import.heading=Importovat rozsah písní Kingsway\nconfirm.remove.timer=Opravdu odstranit $1 ze seznamu časomír? Tento krok nelze vrátit zpět.\nclear.stage.view=Vymazat obrazovku na jevišti spolu s hlavní obrazovkou\nepicworship.import.line1=Tímto budou zavedeny písně ze souboru EpicWorship Song Pack (.epc). Pro správný import je potřeba soubor upravit. Navštivte, prosím, stranky, které vám s tím pomohou --> http://quelea.org/wiki/index.php/Czech_EpicWorship_Encoding\nstartup.error.title=Chyba při spouštění\ntimer.name.label=Název\nedit.timer.text=Upravit časomíru\nlibrary.timer.heading=Časomíry\ndelete.video.title=Smazat video\nremove.video.text=Odstranit video\nrcs.add.song=Přidat píseň do plánu promítání\nrcs.add.bible.error=Vyskytla se chyba při přidávání $1 do plánu\nsdb.files.description=Songpro databazový soubor\nrcs.song.search=Píseň \nsongbeamer.button=SongBeamer\nsng.files.description=SNG (SongBeamer soubory)\nsongpro.button=SongPro\nsongbeamer.import.line1=Vyberte umístění souborů SNG, které chcete importovat:\nrtf.files.description=Soubory RTF\nuse.24h.clock=Použít čas s 24 hodinami\nrcs.add.failed=Přidání selhalo!\nshow.video.library.panel=Zobrazit kartu obsahující videoknihovnu (vyžaduje restart)\nrcs.bible.search=Bible\nrcs.search=Vyhledat a přidat\nrcs.add.success=Přidání bylo uspěšné\nrcs.submit=Odeslat\noverflow.song.label=Povolit přejítí z nynější písně do další\nsongpro.import.line1=Toto zavede písně z databáze SongPro SDB.\nsof.import.line1=Toto zavede knihovnu SoF(Song of felowship) ze souboru RTF.\ninvalid.search=Neplatné vyhledání\nlibrary.copy.to.schedule.text=Kopírovat do rozvrhu\nvideopsalm.import.line1=Toto zavede knihovnu VideoPsalm ze souboru JSON.\nmissionpraise.import.line1=Toto zavede písně ze souborů RTF Mission Praise.\nfilefilters.description.pmsong.files=Písně správce prezentace\nfilefilters.description.vs.files=Databáze VideoPsalm\nfilefilters.description.songs.missionpraise=Soubory RTF Mission Praise\npm.import.line1=Vyberte písně správce promítání k zavedení.\nvideopsalm.button=VideoPsalm\npm.button=Správce prezentace\nsplit.bible.verses=Zachovat verše vcelku přes snímky\nno.verse.title=Nebyl nalezen žádný verš\nno.verse.message=Nepodařilo se najít jednu nebo více daných veršů. Pokoušíme se pokračovat bez nich.\nchorus.tooltip=Přidat název refrénu\nrecordings.path=Cesta k nahrávkám\nconvert.mp3=Nahrávky převést automaticky do souborů MP3 (vyžaduje VLC)\nrecording.warning.title=Nejprve nastavte cestu k nahrávkám\nrecording.warning.message=Cestu, kam se budou nahrávky ukládat, musíte před tím než bude možno nahravat nastavit v panelu Nástroje->Nastavení->Nahrávky.\nrecording.no.devices.title=Nebyla nalezena žádná nahrávací zařízení\nrecording.no.devices.message=Promiňte, nebyla nalezena žádná použitelná nahrávací zařízení.\\nUjistěte se, že je nahrávací zařízení připojeno a povoleno.\nsave.recording.before.exit.title=Neuložené nahrávky\nsave.recording.before.exit.message=Chcete nahrávku před ukončením uložit?\nrecord.audio.tooltip=Nahrávat zvuk\npause.record.tooltip=Pozastavit nahrávání\nmax.lines.per.slide=Řádků na snímek (přibližně)\npresentation.options.heading=Prezentace\nrecordings.options.heading=Nahrávky\ncopy.song.db.default=Kopírovat do rozvrhu jako výchozí nastavení\nmp.button=Mission Praise\npco.button=Plánovací středisko na internetu \npco.login.import.heading=Přihlášení se do plánovacího střediska na internetu\npco.loginerror.title=Chyba při přihlašování \npco.loginerror.warning=Nepodařilo se přihlásit. Prověřte správnost e-mailu/hesla a zkuste to znovu \npco.import.heading=Plánovací středisko na internetu \npassword.text=Heslo \nemailaddress.text=E-mail \nlogin.text=Přihlášení \nfreeworship.button=Freeworship \nimport.all.button=Zavést vše \nimport.selection.button=Zavést výběr \nrefresh.button=Obnovit \nfreeworship.import.line1=Tímto budou písně FreeWorship zavedeny ze souborů XML. \nhelp.menu.feedback=Zpětná vazba \nadd.multimedia.tooltip=Přidat multimédia \nfilefilters.description.multimedia.files=Soubory multimédií \nthumbnail.size.label=Velikost náhledu \ndownload.path=Cesta pro stahování \nadd.pdf.tooltip=Přidat PDF \nimportexport.options.heading=Zavedení/Vyvedení\npreview.failed=Nepodařilo se udělat náhled \nset.loop.manually.title=PowerPoint nebyl nalezen \nset.loop.manually.message=Prezentace byla zavřena. Pokud chcete používat smyčkovací funkci programu Quelea v prohlížečí PowerPoint, je třeba při jejím vytvoření ručně nastavit, aby se prezentace předváděla ve smyčce, dokud není zastavena. \npresentation.changed.message=Aby se nová nastavení předvádění prezentace projevila, je nutné Queleu spustit znovu. \npresentation.changed.label=Nastavení prezentace změněna \npresentation.not.started.label=PowerPoint nebyl spuštěn \npresentation.not.started.message=Bohužel se prezentaci v programu PowerPoint nepodařilo spustit. Možná je soubor poškozen? \npp.already.running.label=PowerPoint již běží \npp.already.running.message=Byla nalezena další instance programu PowerPoint. Zavřete, prosím, všechny instance programu PowerPoint, předtím než prezentaci spustíte v programu Quelea, abyste se vyhnuli ztrátě dat. \npp.path.label=Cesta k programu PowerPoint \nuse.pp.label=Používat program PowerPoint pro předvádění prezentací \nclose.all.presentations.label=Zavřít všechny otevřené prezentace \nclose.all.presentations.message=Zavřete, prosím, všechna otevřená okna programu PowerPoint, předtím než stisknete OK, nebo to bude uděláno automaticky, aby nedošlo k poslánísignálu špatnému oknu. \nlive.text.message=Všechny texty napsané níže budou viditelné uživatelům Mobile Lyrics, když bude hlavní obrazovka prázdná.\\n\\nPoužijte prázdný řádek pro stanovení začátku nového snímku. Můžete také použít tlačítko pro vyprázdnění (nebo Ctrl + klávesa Enter) pro vrácení na výchozí hodnotu na obou koncích. Více než 200 znaků v jednom snímku bude pro uživatele automaticky zkráceno. \nlive.text.title=Živý text \nexit.live.text=Opustit Živý text \nclear.live.text=Vyprázdnit \ndefault.translation=Výchozí\nselect.language=Vybrat jazyk: \nsend.live.text=Živý text \nconverting.to.mp3=Převod záznamu do MP3 \nverse.tooltip=Přidat název sloky \nbridge.tooltip=Přidat název bridge \nprechorus.tooltip=Přidat název před-sboru \ntag.tooltip=Přidat název značky \nadd.website=Přidat stránku\nfocus.switcher.title=Přepínač zaměření okna \nfocus.switcher.message=Přepnout v případě potřeby zaměření okna prezentace zde. \nfocus.pp=Přesunout zaměření na PowerPoint \nfocus.quelea=Přesunout zaměření na Quelea \nwebsite.dialog.title=Adresa (URL) internetové stránky\nwebsite.dialog.header=Zadat adresu (URL) internetové stránky \nwebsite.dialog.content=Zadat adresu internetové stránky k zobrazení: \npaste.label=Vložit \nundo.label=Zpět \nredo.label=Znovu\nsmi.import.line1=Vyberete písně programu Screen Monkey k zavedení\nsm.button=Screen Monkey\nsundayplus.import.line2=(Zavaděč očekává, že v kořenovém adresáři souboru archivu ZIP jsou soubory PTF.) \nhelp.menu.error.text=Promiňte, tuto stránku se nepodařilo nahrát. Můžete na ni přejít ručně: $1 \nfilefilters.description.songs.worshiphim=Soubory MDB Worship Him \nworshiphim.import.line1=Vyberte umístění databáze Worship Him (ve formátu mdb) níže: \nworshiphim.button=Worship Him \nshow.extra.live.panel.toolbar.options.label=Ukázat další nastavení nástrojového pruhu pro živý panel\nelevanto.button=Elevanto\ndelete.bible.confirmation=Opravdu chcete smazat Bibli $1?\nschedule.items.skipped.text=Některé položky v rozvrhu nemají vložena svá média, takže nebyly přidány.\ndelete.notice.button=Smazat\ntheme.copy.label=Kopírovat ze vzhledu\nsong.default.theme.label=Výchozí pro píseň\nelevanto.import.heading=Elevanto\nsaved.notices=Uložená oznámení\ntheme.select.label=Vybrat vzhled\nbible.default.theme.label=Výchozí pro Bibli\nbible.delete.error.heading=Chyba\nelevanto.loginsuccess.message=Můžete zavřít toto okno a vrátit se do Queley\nschedule.items.skipped.header=Položky v rozvrhu přeskočeny\nbible.delete.error.text=Promiňte. Při mazání Bible z požadovaného adresáře se vyskytla chyba.\nallow.item.theme.override.global=Povolit, aby vlastní vzhledy položek měly přednost před celkovým vzhledem\ncopy=Kopírovat\nsave.add.notice.button=Uložit a přidat\nvideo.loop.tooltip=Zapnout/Vypnout přehrávání ve smyčce\nelevanto.loginerror.warning=Chyba při přihlašování se do Elevanto\ndelete.bible.label=Smazat nynější Bibli\ndb.song.preview.label.databasepreview=V okně s databází\ndb.song.preview.label=Náhled písně v databázi\ndb.song.preview.label.control=Žádný\ndb.song.preview.label.previewpane=V okně s náhledem\ndefault.theme.label=Výchozí\ntheme.changed=Vzhled byl změněn\ninterface.theme.label=Vzhled aplikace\ntheme.changed.message=Změna vzhledu aplikace se projeví, až po opětovném spuštění Queley.\ndark.theme.label=Tmavý\nremote.select.book=Výběr knihy\nremote.search.tooltip=Vložit píseň nebo pasáž z Bible\nremote.search.server=Automatické připojení\nremote.add.go.live=Přidat a promítnout\nremote.failed.finding.server=Nelze nalézt server dálkového ovládání.\nremote.navigation.settings.title=Nastavení řízení pohybu\nremote.enable.volume.navigation=Povolit ovládání tlačítky hlasitosti\nremote.volume.navigation.description=Použít fyzická tlačítka hlasitosti k přepínání snímků či položek.\nremote.enable.dpad.navigation=Povolit dpad ovládání\nremote.dpad.navigation.description=Použít směrová tlačítka (nahoru/dolů) k pohybu na předchozí nebo na další snímek či položku. Tuto možnost povolte, pokud chcete použítat bluetooth klávesnici nebo pedál (jako AirTurn).\nremote.swipe.navigation.description=Vyberte, co se stane, když prsty rychle šoupnete doleva nebo doprava.\nremote.swipe.navigation.title=Ovládání pomoci gest\nremote.auto.progress.item=Přejít na další/předchozí položku\nremote.action.clear=Skrýt text ale nechat pozadí\nremote.action.logo=Skrýt text a přepnout na značku\nremote.action.black=Vypnout promítání\nremote.action.nothing=Nic nedělat\nremote.action.item=Přepnout na další/predchozí položku promítání\nremote.action.slide=Přepnout na další/predchozí snímek\nremote.about.title=O programu\nremote.choose.action=Vybrat činnost pro $1\nremote.control.app.name=Dálkové ovládání Queley\nremote.select.theme=Vybrat vzhled\nremote.about.text.app=Tato aplikace byla vytvořena k ovládání církevního software Quelea (http://quelea.org). I když to už není beta verze, pořád není dokonalá. Některé funkce nejsou dokončeny. Je to aplikace, kterou jsem si vytvořil pro osobní potřebu, ale rád ji poskytuju i těm, kteří ji shledají jako užitečnou.\nremote.about.text.support=Pokud máte nějaké potíže nebo se chcete na něco zeptat, nebojte se se mnou spojit na arvid @ quelea.org (pouze anglicky). Vždy se ale ujistěte že Quelea běží, má zapnuty oba servery. Že obě zařízení jsou připojena ke stejné síti nejsou blokovány firewallem a jste zadali správné udaje.\nremote.about.text.responsibility=Nelze zaručit dokonalou funkčnost, proto nenesu odpovědnost za chyby, které se mohou naskytnout při realném použití naživo.\nremote.ipv6.not.supported=Bohužel nelze použít ipv6 adresu. Je třeba ipv4 adresa, aby šla použít aplikace. Pokud nevíte, jak IP adresu najít, vyhledejte: \"Jak najít IP adresu počítače\" a \"Jméno operačního systému\". Vložte IPv4 adresu zde:\nremote.on.end.title=Činnosti při přechodu z jedné položky seznamu na druhou\nremote.on.end.description=Vyberte, co chcete po aplikaci, aby dělala, když přepíná položky pomocí uvedených možností a dojde na konec/začatek položky v seznamu\nremote.long.press.description=Vyberte, co se stane, když dlouho podržíte navigační tlačítko (z uvedených možností). Toto nebude fungovat s AirTurn pedálem.\nremote.long.press.title=Činnosti při dlouhém stisknutí\nremote.double.press.title=Činnosti při dvojitém stisknutí\nremote.double.press.description=Vyberte, co se stane, když stisknete dvě navigační tlačítka naráz (uvedenými možnostmi).\nchosen.sequence.label=Pořadí ve vybrané posloupnosti\ngeneral.user.options=Obecné uživatelské nastavení\nchosen.sequence.explanation=Táhněte položky zleva doprava nebo dvakrát klepněte pro vytvoření sledu písní. Snímky se zpěvním textem budou později ukázány v tomto pořadí bez ohledu na pořadí, v němž jsou texty písní uloženy v databázi.\nsmall.song.position.label=Umístění údajů o písni\nmove.up.sequence.tooltip=Posunout oddíl v pořadí posloupnosti nahoru\nsequence.tooltip=Dialog posloupnosti písní\nsmall.bible.text.options=Nastavení textu malé Bible\nremote.signal.failed=Signál se nepodařilo odeslat serveru\npassword.empty.message=Heslo pro server nemůže zůstat prázdné. Použije se výchozí heslo \"quelea\", dokud do pole s heslem nezadáte něco jiného.\nsequence.selection.dialog.title=Výběr posloupnosti\ninterface.options.options=Nastavení rozhraní\npp.path=Cesta k programu PowerPoint\nfilefilters.description.propresenter=Písně ProPresenter\nremote.needs.newer.version=Tato funkce potřebuje, aby server provozoval Quelea $1 nebo novější\nremote.select.chapter.verses=Vyberte kapitolu a verš(e)\nremote.send.notice.tooltip=Přidejte poznámku\npropresenter.button=ProPresenter\nremote.privacy.policy=Politika soukromí\nsong.list=Seznam písní\npassword.empty.label=Nalezeno prázdné heslo\nremote.donations.link=Darujte\nslide.transition.label=Použít mezi snímky prolínací přechody\nremote.port.needed=Adresa (URL) musí na konci obsahovat číslo portu (např. ':1112'). Zkuste to znovu.\navailable.sections.label=Dostupné oddíly v této písni\nremote.use.autoconnect=Automaticky zkusit najít adresu serveru (URL)\nremove.sequence.tooltip=Odstranit oddíl z pořadí posloupnosti\nmove.down.sequence.tooltip=Posunout oddíl v pořadí posloupnosti dolů\nfilefilters.description.sunday.plus=Písně Sunday plus\nsmall.bible.size.label=Velikost informace o Bibli\nfilefilters.description.xml.openlyrics=Soubory XML openlyrics\nfilefilters.description.csv.files=Soubory .csv\nremote.connected=Připojeno!\ngeneral.interface.options=Obecné nastavení rozhraní\nremote.disable.record=Zakázat nahrávací tlačítko\nremote.report.issue=Nahlásit problém\nremote.theme.was.set=$1 byl nastaven jako celkový vzhled\nmobile.remote.heading=Přenosné dálkové ovládání\nschedule.options=Nastavení rozvrhu\nsmall.song.size.label=Velikost informace o písni\npropresenter.import.line1=Toto zavede písně ze souboru s písní ProPresenter.\nremote.wrong.content=Byl nalezen špatný obsah stránky. Zkuste to znovu.\nremote.information.title=Informace\nsong.sequence=Posloupnost písně:\nsmall.bible.position.label=Poloha informace o Bibli\nremote.no.wifi=Nejste připojeni k WIFI. Nastavte, prosím, adresu (URL) ručně, nebo se připojte k WIFI.\ntheme.options=Nastavení vzhledu\nremote.about.translating=Překlad programu\nsmall.song.text.options=Nastavení malého text písně\nremote.source.code=Zdrojový kód\nbible.version=Překlad bible\nclick.to.add=Přidat klepnutím\nclient.id=Klientské ID\nlink.preview.and.live.dividers.label=Náhled odkazu a rozdělení živého panelu\nstage.show.clock=Zobrazit hodiny\nsong.sequence.tip=Rada: Jeden oddíl (např. sbor) můžete přidat více než jednou!\nremote.start.verse=Počáteční verš\nremote.chapter=Kapitola\nenter.valid.port=Vložte, prosím, číslo mezi 1029 a 49151\nremote.end.verse=Konečný verš\nopen.sequence.editor.tooltip=Zobrazit editor pořadí\ntranslation.text.options=Překladatelské volby pro textu\npco.days.previous.setting=Poslední dny k nahrání\ngeneral.text.options=Obecné volby pro text\nuse.default.translation.label=Použít výchozí překlad\nbible.load.error.title=Chyba při nahrávání Bible\ntranslation.name.label=Název překladu\nbible.load.error.question=Nelze nahrát Bibli - je pravděpodobně poškozena nebo v neplatném formátu."
  },
  {
    "path": "Quelea/languages/de.lang",
    "content": "LANGUAGENAME=Deutsch (DE)\nLOCALE=de\ndatabase.heading=Datenbank\nimport.heading=Importieren\nqsp.button=Quelea Song Pack\nss.button=Survivor Songbook\nprojector.heading=Projektor\ncontrols.heading=Steuerelemente\non.button=Ein\noff.button=Aus\nswitch.input.button=Eingang Umschalten\ngeneral.options.heading=Allgemein\ndisplay.options.heading=Anzeige\nbible.options.heading=Bibel\ncheck.for.update.label=Beim Programmstart nach Updates suchen\n1.monitor.warn.label=Warnung, wenn nur 1 Monitor verwendet wird\ncapitalise.start.line.label=Anfangsbuchstabe jeder Zeile groß schreiben\none.line.mode.label=Nur eine Zeile pro Lied-Sektion als Vorschau\ndisplay.song.info.label=Liedinformationen anzeigen\ntext.border.thickness.label=Rahmenbreite (Text)\nmax.chars.line.label=Maximale Zeichenanzahl pro Zeile\nadvanced.label=Experteneinstellungen\nok.button=OK\noutput.text=Ausgabe\ncontrol.screen.label=Steuerungsanzeige\nprojector.screen.label=Projektionsanzeige\nstage.screen.label=Bühnenanzeige\ncustom.position.text=Selbstdefinierte Position\ndefault.bible.label=Standard\nmax.verses.label=Maximale Anzahl angezeigter Verse\nadd.bible.label=Bibel hinzufügen...\ndelete.bible.label=Aktuelle Bibel löschen\ndelete.bible.confirmation=Wollen Sie die Bibel $1 wirklich löschen? \nnone.text=Keine\nnew.schedule.button=Neuer Ablauf\nopen.schedule.button=Öffne Ablauf\nsave.schedule.button=Speichere Ablauf\nsave.as.schedule.button=Speichere Ablauf unter...\nprint.schedule.button=Ablauf ausdrucken\noptions.title=Optionen\noptions.button=Optionen\nexit.button=Schliessen\nnew.schedule.text=Neur Ablauf\ncreate.new.schedule.text=Erstelle neuen Ablauf\nopen.schedule.text=Öffne neuen Ablauf\nopen.existing.schedule.text=Öffne vorhandenen Ablauf\nsave.schedule.text=Speichern des Ablaufes\nsave.schedule.disk.text=Speichern des Ablaufes auf Laufwerk\nsave.as.schedule.text=Speichere Ablauf unter\nsave.as.schedule.disk.text=Speichere Ablauf als eigene Datei\nprint.schedule.text=Ablauf ausdrucken\nprint.current.schedule.text=Aktuellen Ablauf ausdrucken\noptions.text=Optionen\ndisplay.options.text=Öffne Dialogfenster für Optionen\nexit.text=Quelea beenden\nquit.quelea.text=Quelea abwürgen\nlibrary.image.heading=Bilder\nlibrary.songs.heading=Lieder\nlibrary.bible.heading=Bibeln\nbible.heading=Bibeln\nlibrary.song.search=Suche\nclear.search.box=Suche löschen\nadd.song.text=Neues Lied in Datenbank erzeugen\nremove.song.text=Lied aus Datenbank entfernen\nlibrary.add.to.schedule.text=Zum Ablauf hinzufügen\nlibrary.edit.song.text=Lied bearbeiten\nlibrary.remove.song.text=Lied entfernen\nlibrary.print.song.text=Lied ausdrucken\nadd.to.schedule.text=Zum Ablauf hinzufügen\norder.service.heading=Ablauf\nmove.down.schedule.tooltip=Im Ablauf nach unten schieben\nmove.up.schedule.tooltip=Im Ablauf nach oben schieben\nremove.song.schedule.tooltip=Aus Ablauf entfernen\nadjust.theme.tooltip=Vorlage anpassen\nedit.song.text=Lied bearbeiten\nnew.theme.text=Neue Vorlage...\ntheme.select.text=Vorlage auswählen:\ndefault.theme.name=Standard\ndefault.theme.text=Standardvorlage\nremove.theme.tooltip=Vorlage löschen\nedit.theme.tooltip=Vorlage bearbeiten\nedit.theme.heading=Vorlage bearbeiten\npreview.heading=Vorschau\nlive.heading=Live\ngo.live.text=Live Präsentation\nblack.screen.tooltip=Schwarzes Bild\nclear.text.tooltip=Anzeige leeren\nhide.display.output.tooltip=Anzeige (Präsentation) ausschalten\nschedule.heading=Ablauf\nadd.song.button=Lied hinzufügen\nedit.song.button=Lied bearbeiten\nremove.item.button=Elemen löschen\nadd.multimedia.heading=Multimedia hinzufügen\nadd.presentation.button=Präsentation hinzufügen\nadd.video.button=Video hinzufügen\nadd.youtube.button=Youtube Video hinzufügen\nadd.live.video.button=Live Video hinzufügen\nadd.dvd.button=DVD hinzufügen\nadd.audio.button=Audio\nshare.heading=Teilen\nemail.button=Email\nmanage.notices.button=Mitteilungen verwalten...\nnotices.heading=Mitteilungen\nnew.notice.text=Neue Mitteilung erstellen\nedit.notice.text=Mitteilung bearbeiten\nremove.notice.text=Mitteilung entfernen\ndone.text=Fertig\nnew.notice.heading=Neue Mitteilung\nnotice.text=Mitteilungen\nnotice.times.text=Anzahl der Anzeigedurchläufe\nnotice.infinite.question=Endlos?\nadd.notice.button=Mitteilung hinzufügen\nedit.notice.button=Mitteilung bearbeiten\ncancel.text=Abbrechen\nnew.song.button=Neues Lied erstellen\ndelete.song.button=Lied löschen\nsongs.heading=Lieder\ntags.button=Markierungen bearbeiten...\nsource.button=The Source\nkingsway.button=Kingsway Online\nsof.button=Songs of Fellowship\nexport.heading=Exportieren\nfilter.tag=Markierungen filtern\ntags.colon.label=Markierungen:\nimport.button=Importieren\nclick.select.file.text=Zur Dateiauswahl klicken\ncheck.duplicates.text=Auf Duplikate prüfen\nedit.song.title=Lied bearbeiten\nbasic.information.heading=Grundinformationen\ndetailed.info.heading=Detailinformationen\ntheme.heading=Vorlage\ntitle.label=Titel\nauthor.label=Autor\nrun.spellcheck.label=Rechtschreibprüfung\nfix.apos.label=Apostrophen bereinigen\ntrim.lines.tooltip=Zeilen kürzen (Leerzeichen am Zeilenende entfernen)\ntranspose.tooltip=Transponieren...\ncancel.button=Abbrechen\nccli.number.label=CCLI Nummer\ncopyright.label=Copyright\nyear.label=Jahr\npublisher.label=Veröffentlicher\ntags.label=Markierungen / Stichwörter\ntype.tag.name.here.text=<Stichwort für Markierung hier eingeben>\nkey.label=Taste\ncapo.label=Capo\nnotes.label=Notizen\nfont.theme.label=Schriftart\nchoose.color.text=Farbe wählen...\nbackground.theme.label=Hintergrund-Vorlage\nbackground.text=Hintergrund\ncolor.theme.label=Farbe\nimage.theme.label=Bild\nselect.color.title=Farbauswahl\nselect.color.button=Farbe auswählen\nnew.song.title=Neues Lied\ntype.lyrics.here.text=Bitte geben sie den Text hier ein.\nkingsway.import.line1=Kingsway Liederdatenbank online abrufen.\nkingsway.import.line2=Dieser Vorgang kann einige Zeit in Anspruch nehmen (Eventuell einige Stunden!), bitte haben sie Geduld und lassen das Programm geöffnet.\nqsp.import.line1=Wählen sie nachfolgend den Pfad vom Quelea songpack.\nsource.import.line1=<html>Wählen sie den Pfad zum <b>hymns</b> Verzeichnis von der Installations CD.</html>\nsurvivor.import.line1=Wählen sie nachfolgend den Pfad zum Survivor Songbook PDF.\nsurvivor.import.line2=<html>Das muss die <b>acetates.pdf</b> Datei sein, <i>und nicht</i> die Datei mit Gitarrenakkorden oder Noten.</html>\nemail.error.title=Email Fehler\nemail.error.text=Beim Starten des Email-Programmes trat ein Fehler auf.\\nBitte prüfen sie, ob ein Email Programm installiert, und für das Öffnen von *.eml Dateien eingestellt ist\\n andernfalls müssen sie die Email selbständig senden.\nemail.text=Hallo! Anbei befindet sich ein Quelea Ablauf, der ihnen gesendet wurde\\nÖffnen sie diese Datei einfach mit Quelea und alle Elemente werden wie gewünscht angezeigt.\nselect.image.button=Bilddatei auswählen\nimage.files.description=Bilddateien\ntools.label=Extras\nselect.songs.title=Liederauswahl\ncheck.uncheck.all.text=Alle aus-/abwählen\ndelete.theme.confirm.title=Löschbestätigung\ndelete.theme.question=Möchten sie diese Vorlage wirklich löschen?\ntoo.many.verses.error=Leider können nicht so viele Verse gleichzeitig angezeigt werden.\\nBitte verwenden sie weniger Verse.\none.monitor.warning=Offenbar wird nur ein Monitor verwendet.\\nAbläufe können problemlos vorbereiten werden,\\nfür die volle Funktionalität im Präsentationseinsatz sind jedoch 2 Monitore notwendig.\none.monitor.title=Nur ein Monitor in Verwendung\nno.dvd.heading=DVD wurde nicht gefunden.\nno.dvd.error=Bitte legen sie eine gültige DVD ein.\nadding.presentation.status=Importieren einer Präsentation...\nadding.presentation.error.message=Beim Importieren der Präsentation trat ein Fehler auf. Möglicherweise ist die Datei defekt?\nadding.presentation.error.title=Fehler beim importieren der Präsentation\nimporting.status=Importieren...\nname.label=Name\nsimilar.colors.text=Sie haben sehr ähnliche Farben für Text und Hintergrund gewählt,was die Anzeige fürs Publikum schwer lesbar macht.\\nIch empfehle Ihnen eine kontrastreichere Farbkombination zu verwenden.\nwarning.label=Warnung\nfile.menu=Datei\ntools.menu=Extras\nschedule.menu=Ablauf\ndatabase.menu=Datenbank\nprojector.menu=Projektor\nnew.theme.title=Neue Vorlage\nadd.theme.label=Neue Vorlage erstellen\ntheme.name.label=Vorlagen Name\nhelp.menu=Hilfe\nhelp.menu.website=Website\nhelp.menu.discussion=Hilfestellung/Diskussion (Fragen direkt hier stellen)\nhelp.menu.download=Herunterladen\nhelp.menu.update=Nach Programmaktualisierungen suchen (Updates)\nhelp.menu.about=Über...\nhelp.menu.error.title=Fehler\nhelp.about.title=Programminfos\nhelp.about.version=Version\nhelp.about.close=Schliessen\nhelp.about.line1=Quelea ist lizenziert unter GPL (Version 3.)\nhelp.about.line2=Das Programm ist und wird in Zukunft immer eine kostenlose und quelloffene Software bleiben.\nnew.schedule.tooltip=Neuer Ablauf\nopen.schedule.tooltip=Ablauf Öffnen\nsave.schedule.tooltip=Ablauf Speichern\nprint.schedule.tooltip=Ablauf Ausdrucken\nnew.song.tooltip=Neues Lied\nadd.presentation.tooltip=Präsentation einfügen\nadd.dvd.tooltip=DVD einfügen\nadd.video.tooltip=Video einfügen\nmanage.tags.tooltip=Markierungen verwalten\nmanage.notices.tooltip=Mitteilungen verwalten\nalready.running.error=Eine Instanz des Programmes Quelea wird bereits ausgeführt.\\nBitte schliessen sie Quelea bevor sie es erneut starten möchten.\nalready.running.title=Wird bereits ausgeführt\nerror.schedule.message=Beim Öffnen des Ablaufes trat ein Fehler auf.\\nMöglicherweise ist die Datei beschädigt oder der Ablauf wurde nicht mit Quelea erstellt.\nerror.schedule.title=Fehler beim öffnen des Ablaufes\nprint.chords.question=Akkorde beim Ausdrucken des Liedes miteinbeziehen?\nprinting.options.text=Lied ausdrucken\nspace.key=Leertaste\nupdating.db=Datenbank aktualisieren\nerror.updating.song.text=Während der Aktualisierung des Liedes in der Datenbank trat ein Fehler auf.\\nMöglicherweise wurde das Lied dadurch beschädigt.\nerror.text=Fehler\nquick.shortcut.description=Escape zum Abbrechen, Umschalt+Enter fürs Speichern\nsave.before.exit.text=Der Ablauf wurde geändert. Wollen sie ihn speichern bevor sie das Programm beenden?\nsave.before.exit.title=Ungespeicherter Ablauf.\nno.chords.message=Dieses Lied enthält keine Akkorde zum Transponieren.\nno.chords.title=Keine Akkorde\nnewer.version.available=Eine neuere Version von Quelea ist verfügbar\\n\nno.newer.version.available=Sie besitzen die aktuelle Version von Quelea\nvisit.webpage.now=Möchten Sie die Website besuchen um mit dem Herunterladen beginnen?\ndownload.manual.update=Sie können hier herunterladen\nnewer.version.available.title=Aktualisierung verfügbar!\nno.newer.version.available.title=Auf aktuellem Stand!\ncheck.kingsway.start=Sie haben bereits einige Objekte aus der Kingsway Bibliothek importiert.\\nMöchten Sie die Lieder importieren die sie noch nicht importiert haben?\ncheck.kingsway.start.title=Bereits importierte Objekte\nimport.no.songs.title=Keine Lieder gefunden\nimport.no.songs.text=Importierbare Lieder konnten nicht gefunden werden.\nstage.options.heading=Bühnenansicht\nstage.show.chords=Gitarrenakkorde anzeigen?\nstage.line.alignment=Textausrichtung\nstage.font.selection=Schriftart\nstage.background.colour=Farbe des Hintergrundes\nstage.lyrics.colour=Farbe des Liedtextes\nstage.chord.colour=Farbe der Gitarrenakkorde\nleft=Links\ncentre=Zentriert\nright=Rechts\nconfirm.label=Sind Sie sicher?\nschedule.clear.text=Der Ablauf wurde verändert.\\nFortfahren ohne Speichern?\npart=Teil\nhelp.menu.facebook=Facebook Seite\nvideo.error=Video Bibliothek konnte nicht initialisiert werden - Videos funktionieren nicht.\\nBitte schreiben sie auf die Diskussionsseite (Info im Hilfe-Menü) um Hilfe für dieses Problem zu erhalten.\nvideo.error.title=Video Fehler\ntext.shadow.label=Textschattierung anzeigen\nadding.images=Bilder hinzufügen...\nsetup.oo.failed.title=OpenOffice konnte nicht gestartet werden\nuse.oo.label=Verwende OpenOffice für Präsentationen\noo.path=Pfad zu OpenOffice\nbrowse=Browse...\nbuilding.bible.index=Lade Bibeln\nbible.search.title=Bibel Sucher\ninitial.search.text=<Hier tippen um zu suchen>\nview.bible.button=Bibeln ansehen...\nsearch.bible.button=Suche nach Bibeln...\nall.text=Alle(s)\nbible.browser.title=Bibel Browser\nopen.in.browser=Im Browser öffnen...\nkingsway.button.all=Alle Lieder\nkingsway.button.one=Einzelnes\nsong.id.selector=Bitte LiedNr. Auswählen (songID)\nplainText.button=Textdatei importieren (.txt)\nlibrary.preview.song.text=Liedtext in Vorschau anzeigen\neasyslides.button=EasySlides\nshadow.y=Y Versatz des Schattens\nshadow.x=X Versatz des Schattens\nerror.checking.updates.title=Aktualisierungen konnten nicht geprüft werden\nquick.insert.text=Schnelles Einfügen\nquick.edit.text=Schnelles Bearbeiten\nbottom.text.position=Unten\nconfirm.remove.text=Bestätigung des Löschvorganges\nadd.images.panel=Bilder hinzufügen\nloading.text=Wird geladen...\nrefresh.images.panel=Bilder aktualisieren\nselect.export.songs.line2=Auswählen der Texte, welche zum SongPack hinzugefügt werden sollen. Bestätigen mit \"Hinzufügen\"\nselect.export.songs.line1=Die folgenden Liedtexte sind in der Datenbank.\nselect.folder.images.panel=Ordner auswählen...\nvideo.error.unsupported=Leider wird das gewählte Video nicht unterstützt.\nselect.video.button=Videoauswahl\nadd.to.songpack.question=Zum SongPack hinzufügen?\nno.text=Nein\nmiddle.text.position=Mittig\ntop.text.position=Oben\nfile.rename.dialog.title=Umbenennen\nshadow.color=Schattenfarbe\nconfirm.overwrite.title=Die Datei existiert bereits!\nyes.text=Ja\nfile.replace.button=Ersetzen\ntranspose.label=Transponieren\nadd.text=Hinzufügen\nconfirm.remove.question=Soll $1 wirklich aus der Datenbank entfernt werden? Diese Aktion kann nicht rückgängig gemacht werden.\ntext.position.label=Textposition\ncant.save.schedule.text=Leider konnte der Ablauf nicht gespeichert werden. Ein Fehler ist aufgetreten.\nbible.copy.error.heading=Fehler\nbible.delete.error.heading=Fehler\nplaintext.import.line1=Damit werden Lieder aus einem Verzeichnis importiert, welches die Liedinformationen als reine Textdateien enthält.\ninterface.language.label=Programmsprache:\nadd.audio.tooltip=Audiodatei hinzufügen\nalready.exists.overwrite.label=existiert bereits. Überschreiben?\nfile.rename.button=Umbenennen\nlanguage.changed=Sprache wurde geändert\nclear.live.on.remove.schedule=Lied aus der LiveView löschen, nachdem es aus dem Ablauf entfernt wurde?\nerror.checking.updates.text=Beim Prüfen auf Aktualisierungen trat ein Fehler auf. Bitte die Internetverbindung überprüfen und erneut versuchen.\nconfirm.overwrite.text=Diese Datei existiert bereits. Soll sie ersetzt werden, oder soll der Vorgang fortgesetzt werden, ohne die Datei zu Kopieren?\nselect.imported.songs.line3=Lieder, welche als Duplikate erkannt wurden, sind abgewählt worden. Bitte diese Auswahl zu überprüfen.\nselect.imported.songs.line2=Auswahl der Lieder, welche importiert werden sollen. Anschliessend mit \"Hinzufügen\" bestätigen.\nselect.imported.songs.line1=Die folgenden Lieder wurden importiert.\nfile.continue.button=Fortfahren\nfile.rename.dialog.text=Neuen Dateinamen eingeben:\neasyslides.import.line1=Importieren von Songs aus einer EasySlides XML Datei.\nadd.to.database.question=Zur Datenbank hinzufügen?\nprojection.window.title=Projektionsfenster\nimage.folder=Bilderverzeichnis:\nsetup.oo.failed.text=OpenOffice konnte nicht zur Anzeige von Präsentationen konfiguriert werden. Bitte um Prüfung, ob OpenOffice installiert, und der angegebene Pfad korrekt ist.\nvideo.error.general=Beim der ausgewählten Videodatei trat ein Fehler auf.\noverwrite.text=Überschreiben\nvideo.theme.label=Video\nerror.removing.song.db=Beim Löschen des Liedes aus der Datenbank trat ein Fehler auf.\ndebug.location=Ablageort der Fehleraufzeichnungsdatei - Debug Log\nbible.copy.error.text=Beim Kopieren der Bibeldatei an den gewünschten Speicherort trat ein Fehler auf.\nbible.delete.error.text=Beim Löschen der Bibeldatei trat ein Fehler auf.\nlanguage.changed.message=Quelea muss neu gestartet werden damit die Sprachänderung eine Auswirkung zeigt.\ncant.save.schedule.title=Fehler beim Speichern des Ablaufes\nselect.key.label=Neue Tonart auswählen:\ncorrect.text=Korrigieren\ndelete.image.title=Bild löschen\nspelling.errors.in.doc.label=Das Dokument enthält Schreib- oder Tippfehler. Mit \"F7\" wird das Dialogfenster Rechtschreibprüfung aufgerufen.\nignore.text=Ignorieren\ndictionary.language.text=Sprache des Wörterbuches\nremove.image.text=Bild entfernen\nspelling.check.title=Rechtschreibprüfung\ndelete.image.confirmation=Soll die Bilddatei wirklich aus der Bibliothek entfernt werden? Diese Aktion kann nicht rückgängig gemacht werden.\nnotice.expired.text=Die Mitteilung, die bearbeitet wird, ist bereits abgelaufen. Soll sie erneut angezeigt werden?\nspelling.complete.text=Rechtschreibprüfung wurde abgeschlossen.\ncomplete.title=Fertig\nnotice.expired.title=Mitteilung abgelaufen\ndownload.vlc=VLC herunterladen\nfilefilters.description.powerpoint.presentations=Powerpoint Präsentationen\nsave.text=Speichern\nconfirm.entry.exit.title=Soll das Lied gespeichert werden?\ncontinue.without.video=Ohne VLC fortfahren\nfilefilters.description.video.files=Videodateien\nfilefilters.description.quelea.schedules=Quelea Ablaufdateien\nfilefilters.description.xml.files=XML Dateien\nfilefilters.description.survivor.songbook=Survivor acetates Datei\nvlc.warning.message=Quelea kann VLC nicht finden. Ohne dieses kann Quelea keine Video/Audiodateien abspielen und keine Lieder mit Hintergrundvideos verwenden. VLC jetzt downloaden? Nach der Installation muss Quelea neu gestartet werden damit die Änderungen übernommen werden.\nvlc.version.message=Die VLC Version ist veraltet. Die aktuelle Version des VLC Players muss installiert werden, damit Videos und Musikdateien korrekt abgespielt werden. Soll VLC jetzt heruntergeladen und installiert werden? Nach der Installation muss Quelea neu gestartet werden damit die Änderungen übernommen werden.\ndont.save.text=Nicht speichern\nvlc.warning.title=VLC konnte nicht gefunden werden\nfilefilters.description.xml.bibles=XML Bibeln\nstartup.error.text=Leider konnte Quelea nicht gestartet werden. Zur Fehleranalyse und Verbesserung des Programmes bitten wir, eine email an support@quelea.org mit beigefügtem Logfile zu senden. ($1).\\n\\nAlternativ kann auch eine Frage in der Quelea Diskussionsgruppe gestellt werden(https://quelea.discourse.group).\nstartup.error.title=Fehler beim Programmstart\nfilefilters.description.plain.text.song=Lied als Textdatei\nfilefilters.description.xml.easyslide=XML Easyslide Dateien\nconfirm.entry.exit.text=Sollen die Änderungen in diesem Lied gespeichert werden?\nfilefilters.description.audio.files=Audio Dateien\nbible.search.keep.typing=Weitertippen...\nbible.search.results.found=Ergebnisse gefunden\nbible.search.result.found=Ergebnis gefunden\nmax.font.size.label=Maximale Schriftgröße\nadditional.line.spacing.label=Zusätzlicher Zeilenabstand\nuniform.font.size.label=Einheitliche Schriftgröße verwenden\nfilefilters.description.zip.files=Zip Dateien\nos.button=Opensong\nolp.import.line1=Bitte den Speicherort der OpenLP Datenbank auswählen.\nloop.label=Schleife\nport.number.label=Portnummer\nos.import.line1=Bitte den Speicherort der Opensong Datenbank auswählen.\nchange.graphics.label=Bild ändern\nseconds.label=Sekunden\nolp.button=OpenLP\nfont.colour.label=Schriftfarbe\nfilefilters.description.sqlite.files=SQLite Dateien\nbackground.colour.label=Hintergrundfarbe\nlogo.screen.tooltip=Linksklick > Anzeige, Rechtsklick > Einstellungen\nuse.mobile.lyrics.label=Mobile Liedtexte verwenden (für Tablets, Smartphones etc.)\nmobile.lyrics.heading=Mobile Liedtexte\nnavigate.mob.url.label=Mobile Liedtext - URL\nsundayplus.import.line1=Bitte den Speicherort der Sunday Plus Datenbank auswählen.\nsp.button=Sunday Plus\nfont.selection.dialog.title=Schriftartenauswahl\nvideo.hue.label=Farbton\nchosen.fonts.explanation=Quelea zeigt nur eine Auswahl an Schriftarten in der Desingvorlagenansicht. Verwendete Schriftarten durch ziehen von der linken in die rechte Spalte auswählen, nicht benötigte Schriftarten von rechts nach links ziehen zum Ignorieren.\ntest.patterns.text=Testmuster\nchosen.fonts.label=Ausgewählte Schriftarten\ntest.patterns.explanation=Die verfügbaren Testmuster helfen beim Kalibrieren der Bildschirmschärfe und Farbeinstellung. Durch Klicken auf das Bild wird dieses in der Präsentations- und Bühnenansicht angezeigt.\nignored.fonts.label=Ungenutzte Schriftarten\nhover.for.position.label=Textposition durch Verschieben am Leinwandbereich festlegen.\neasyworship.button=EasyWorship 2009\nfilefilters.description.songs.mb=Easyworship Liederdatenbank (Songs.MB)\nzw.import.line2=Der Ablageort der ZionWorx Datei ist gewöhnlich unter \"C:\\ProgramData\\ZionWorx\\2.6\\Data\" zu finden.\nzw.import.line1=Ablageort der ZionWorx Datei \"MainTable.dat\" auswählen.\nadd.song.hint.search.text=Keine Suchergebnisse in der Liederdatenbank gefunden - kein Grund zur Panik! Zum Erstellen eines Liedes einfach das Steuerelement \"Neues Lied\" auf der Linken Seite anklicken.\nshow.verse.numbers=Versnummerierung anzeigen\nzw.button=ZionWorx\nno.tdb.heading=TurboDB Data Exchange nicht gefunden\nno.tdb.message=Aus technischen Gründen muss das Programm \"TurboDB data exchange\" heruntergeladen werden bevor Quelea mit dem Import der ZionWorx Datenbank beginnen kann.\\nNach dem Herunterladen (https\\://www.dataweb.de/en/support/downloads.html) muss der Inhalt der Archivdatei (zip) an folgenden Ort entpackt werden: $1.\\n\\nSollten Fragen oder Probleme auftauchen, bitte einfach in der Diskussionsgruppe unter (https://quelea.discourse.group) um Rat fragen.\nimport.error.message=Leider trat beim Importieren ein Problem auf. Sie können auf der Quelea - Diskussionsseite um Hilfe ansuchen https://quelea.discourse.group\nfilefilters.description.maintable.dat=ZionWorx MainTable Datenbank Datei\neasyworship.import.line1=Hiermit werden Lieder aus einer EasyWorshop Datenbank (Songs.MB) Datei importiert.\nyoutube.url.label=YouTube Video - Adresse (URL)\nopenlyrics.import.line1=Speicherort der OpenLyrics Lieddatei (ZIP Archiv) auswählen\ntranslate.dialog.title=Übersetzungsverwaltung\nconfirm.remove.translation.text=Diese Übersetzung löschen?\ndefault.translation.label=Standardübersetzung\nsmall.text.position.label=Position der Lied- und Bibelinformationen\nuse.remote.control.label=Fernsteuerung verwenden\nremote.logo.text=Logo\nenter.translation.name.label=In welche Sprache möchten Sie übersetzen?\nremote.login.text=Zum Fortfahren bitte anmelden\nremote.submit.text=Anmelden\ntranslation.font.text=Schriftart der Übersetzung\nconfirm.remove.translation.title=Übersetzung löschen?\nselect.translation.label=Auswahl der Übersetzung, welche zusätzlich zur Standardübersetzung angezeigt werden soll:\nolyrics.button=OpenLyrics\nchoose.translations.text=Übersetzungsauswahl\nremote.control.password=Passwort für Fernsteuerung (Groß-/Kleinschreibung beachten)\nserver.settings.heading=Server Einstellungen\nremote.prev.text=Vorhergehende Folie\nshadow.text=Schatten\nremote.nextitem.text=Nächstes Objekt\nremote.next.text=Nächste Folie\nnavigate.remote.control.label=Fernsteuerung URL\nsaving.schedule=Ablauf wird gespeichert...\nremote.logout.text=Abmelden\nremote.black.text=Schwarz\nauto.translate.label=Automatische Liedübersetzung\nadd.song.hint.text=Kein Grund zur Panik, derzeit sind keine Lieddaten vorhanden. Zum Hinzufügen eines neuen Liedes einfach die Schaltfläche \"Neues Lied\" anklicken.\nclose.button=Schließen\nremote.previtem.text=Vorheriges Objekt\nmore.fonts.label=Mehr Schriftarten\nserver.changed.message=Quelea muss neu gestartet werden, damit die neuen Servereinstellungen übernommen werden.\nremote.clear.text=Löschen\nremote.empty.lyrics=Liedtexte werden hier angezeigt\nserver.changed.label=Servereinstellungen verändert\ntranslate.tooltip=Liedübersetzungen\nadd.translation.button=Übersetzung hinzufügen...\noverwrite.lyrics.text=Das Lied wurde automatisch übersetzt. Möchten Sie diese Übersetzung verwenden?\\nie aktuelle Übersetzungsvariante wird dadurch gelöscht\nmore.font.options.label=Weitere Schriftarteinstellungen\ntranslate.heading=Übersetzungen\noverwrite.lyrics.title=Bestehende Übersetzung überschreiben?\nbible.passage.selector.prompt=[Kapitel]:[Vers]-[Vers]\nnotice.speed.text=Lauftextgeschwindigkeit\nmax.items.per.slide=Maximalanzahl der % auf einer Seite\ncurrently.displaying.text=Aktuell angezeigt\npause=Pause\nverses=Verse\nedit.bible.passage.text=Designvorlage der Bibelpassage bearbeiten\ntheme.button.tooltip=Generelle Designvorlage für den gesamten Ablauf festlegen\nwords=Wörter\nplay=Abspielen\nuse.bible.verses=Bibelpassagen aufteilen nach Anzahl der\nnotice.font.text=Schriftart der Mitteilung\nnotice.colour.text=Farbe derMitteilung\nnotice.position.text=Position der Mitteilung\nshow.small.song.text.label=Kleine Liedinformation anzeigen\nnotice.background.colour.text=Hintergrundfarbe der Mitteilung\nno.pdb.heading=Paradox JDBC Treiber wurde nicht gefunden\nno.pdb.message=Für einen zuverlässigen Import von Easyworshop Datenbanken, muss der \"Paradox JDBC\" Treiber installiert werden. Zwar wird Quelea versuchen auch ohne den genannten Treiber die Easyworship Datenbank zu importieren, jedoch können dann unerwartete Ergebnisse, fehlerhafte Lieder zBsp., auftreten. Zum Installieren des Treibers sind folgende Schritte notwendig:\\n\\n1. Webseite http://www.hxtt.com/download.jsp aufrufen und einen kostenlosen Zugang einrichten.\\n2. Herunterladen der Datei \"DBF JDBC 4.1 Package for JDK1.7.X and JDK1.8.X\". (Der Name der Datei sollte Paradox_JDBC41.jar lauten)\\n3. Kopieren der Datei Paradox_JDBC41.jar in den Pfad $1.\\n\\nFalls Fragen oder Probleme auftreten, bitte einfach in der Diskussionsseite (https://quelea.discourse.group) melden. \nshow.small.bible.text.label=Kleine Bibelinformation anzeigen\nnotice.font.size=Schriftgröße der Mitteilung\nnotice.options.heading=Mitteilungen\nexport.schedule.pdf.button=Ablauf als PDF exportieren\nfilefilters.description.pdf.files=PDF Dateien\nexport.pdf.button=Als PDF exportieren\nquelea.schedule.text=Quelea Ablauf\nnot.started.label=Nicht gestartet\ntext.options.options=Textoptionen\nshadow.radius.label=Schattenradius\nshadow.spread.label=Schattenausdehnung\npdf.button=PDF\nshadow.color.label=Schattenfarbe\nuse.shadow.label=Textschatten verwenden?\nshadow.offset.label=Schattenabstand\nstretch.video.label=Video dehnen\nexport.schedule.songs.pdf.button=Lieder als PDF exportieren\nuser.options.options=Benutzeroptionen\nexporting.label=Exportieren\nprint.chords.export.question=Akkorde beim Export miteinbeziehen?\nhelp.menu.manual=Anleitung\nuntitled.theme.text=Unbenannte Vorlage\nsongselect.import.line1=Auswahl der SongSelect Dateien.\npng.files.description=PNG Bilddateien\ncopying.video.please.wait.text=Einen Moment - die Videodatei wird gerade kopiert...\ntimer.text.prompt=Verwende # zum definieren der Timerposition. Beispiel: \"Gottesdienst beginnt in # Minuten\" wird angezeigt als \"Gottesdienst beginnt in 5:00 Minuten\"\nfilefilters.description.usr.files=USR (SongSelect) Dateien\nsongselect.button=SongSelect\nadd.timer.tooltip=Countdown Timer hinzufügen\ncountdown.label=Countdown\nadd.timer.title=Countdown hinzufügen\ntimer.duration.label=Countdown Dauer\nslide.text=Folie\nedit.theme.text=Vorlage bearbeiten\ndelete.translation.text=$1 Übersetzung löschen?\ntranslation.choice.title=Übersetzungsauswahl\ntranslating.text.please.wait.text=Einen Moment - die automatische Übersetzung ist gerade in Arbeit...\nautoplay.vid.label=Videos in der Präsentationsansicht automatisch starten\nadvance.on.live.label=Nächsten Ablaufpunkt automatisch anwählen bei \"GoLive\"\nnonbreak.tooltip=Leerzeile ohne Absatz einfügen\ninclude.translations.question=Übersetzung in PDF übernehmen?\nhelp.menu.wiki=Wiki\nsave.qr.code.text=QR Code speichern\nfilefilters.description.image.video.files=Video und Bild Dateien\nnew.translation.title=Neue Übersetzung\nduration.tooltip.label=#:## oder ##m##s\ntimer.file.label=Speicherort der Hintergrund Datei\ntimer.theme.label=Vorlagen Einstellungen\ntimer.theme.button=Vorlage bearbeiten\npreview.on.image.change.label=Objektvorschau bei Bildwechsel\nswitch.to.text=Wechseln zu\ntranslation.export.heading=Übersetzungsexport\ntimer.text.label=Zusätzlicher Text\nfont.options.title=Schriftart - Optionen\ndelete.translation.title=Übersetzung löschen\nchange.bible.version.text=Bibelübersetzung wechseln\nmediashout.button=MediaShout\nfilefilters.description.txt.files=.txt Dateien\nembed.media.in.schedule=Mediendateien in Ablaufdatei speichern\nmediashout.import.line1=Speicherort der als txt exportierten MediaShout Datenbank auswählen:\nclear.stage.view=Bühnenansicht gemeinsam mit Präsentationsansicht löschen\ntop=Oben\ndelete.video.confirmation=Soll dieses Video wirklich aus der Videosammlung gelöscht werden? Diese Aktion kann nicht rückgängig gemacht werden.\nepicworship.button=EpicWorship\ntimer.files.description=Countdown timers\nlibrary.video.heading=Videos\nbottom=Unten\ntimer.save.label=Timer abspeichern?\nkingsway.range.import.text=Bitte den Bereich der Liedseiten angeben, die von der Kingsway Website geladen werden sollten.\\n Aktuell können maximal ca. 3600 Seiten geladen werden.\nadd.videos.panel=Videos hinzufügen\nkingsway.button.range= Bereich\nfilefilters.description.epc=EpicWorship .epc songpack\nadd.timers.panel=Timer hinzufügen\nremove.timer.text=Timer löschen\nkingsway.range.import.heading=Kingsway Lieddaten importieren\nconfirm.remove.timer=$1 wirklich aus der Timerliste löschen? Diese Aktion kann nicht rückgängig gemacht werden.\nepicworship.import.line1= Hiermit werden Liedtexte aus einer EpicWorship Song Pack (.epc) Datei geladen.\ntimer.name.label=Name\nedit.timer.text=Timer bearbeiten\nlibrary.timer.heading=Timer\ndelete.video.title=Video\nremove.video.text=Video\nrcs.add.song=Lied zum Ablauf hinzufügen\nrcs.add.bible.error=Fehler beim Hinzufügen zum Ablauf von $1\nsdb.files.description=Songpro Datenbank Dateien\nrcs.song.search=Lied\nsongbeamer.button=SongBeamer\nsng.files.description=SNG (SongBeamer) Dateien\nsongpro.button=SongPro\nsongbeamer.import.line1=Speicherort der zu importierenden SNG Dateien auswählen:\nrtf.files.description=RTF Dateien\nuse.24h.clock=Verwende 24h Uhrzeitformat\nrcs.add.failed=Hinzufügen fehlgeschlagen\nshow.video.library.panel=Video Kategorie anzeigen (Programmneustart erforderlich)\nrcs.bible.search=Bibel\nrcs.search=Suchen und Hinzufügen\nrcs.add.success=Erfolgreich hinzugefügt\nsongpro.import.line1=Hiermit werden Lieder aus einer SongPro SDB Datenbank importiert.\nsof.import.line1=Hiermit wird die SoF Lieddatenbank aus einer RTF Datei importiert.\ninvalid.search=Ungültige Suchanfrage\nrcs.submit=Einsenden\nrecording.no.devices.message=Leider konnte kein kompatibles Aufnahmegerät gefunden werden.\\nBitte prüfen, ob das Gerät korrekt angeschlossen und aktiviert ist.\nsplit.bible.verses=Gesamten Vers auf selben Folie (Seite) anzeigen\nno.verse.message=Vers konnte nicht gefunden werden und daher wurde versucht ohne ihn fortzufahren.\npause.record.tooltip=Aufnahme pausieren\nrecording.warning.message=Zuerst muss in den Optionen / Einstellungen ein Dateipfad festgelegt werden in dem die Aufnahmen abgespeichert werden sollen.\nsave.recording.before.exit.message=Möchtest du die Audio-Aufnahme abspeichern bevor Quelea beendet wird?\nrecording.no.devices.title=Kein Aufnahmegerät gefunden\nno.verse.title=Kein Vers oder keine Strophe gefunden\nrecord.audio.tooltip=Audioaufnahme\nsave.recording.before.exit.title=Nichtgespeicherte Audioaufnahme\nchorus.tooltip=Titel des Chorus (Refrain) eingeben\nrecording.warning.title=Zuerst Dateipfad festlegen\nconvert.mp3=Audioaufnahmen automatisch als MP3 Datei konvertieren (erfordert VLC)\noverflow.song.label=Vom aktuellen Lied direkt ins nächste Lied springen\nrecordings.path=Aufnahmepfad\ndownload.path=Download-Pfad\nmax.lines.per.slide=Zeilen pro Seite (ungefähr)\nfilefilters.description.pmsong.files=Presentation Manager Liederdaten\nmp.button=Mission Praise\nrecordings.options.heading=Aufnahmen\nmissionpraise.import.line1=Durch diese Aktion werden Lieder aus Mission Praise RTF Dateien importiert.\nlibrary.copy.to.schedule.text=In Ablauf kopieren\ncopy.song.db.default=Lieder standardmäßig in den Ablauf kopieren\npresentation.options.heading=Präsentationen\npm.button=Presentation Manager\nfilefilters.description.songs.missionpraise=Mission Praise RTF Dateien\npm.import.line1=Bitte die zu importierenden Presentation Manager Dateien auswählen.\nvideopsalm.import.line1=Hiermit wird die VideoPsalm Bibliothek aus einer JSON Datei importiert.\nfilefilters.description.vs.files=VideoPsalm Datenbank\nvideopsalm.button=VideoPsalm\npco.button=Planning Center Online\npco.login.import.heading=Planning Center Online Anmeldung\npco.loginerror.title=Fehler bei der Anmeldung\npco.loginerror.warning=Anmeldung fehlgeschlagen, bitte Email und Passworteingabe prüfen.\npco.import.heading=Planning Center Online\npassword.text=Passwort\nemailaddress.text=Email\nlogin.text=Anmelden\nfreeworship.button=Freeworship\nimport.all.button=Alles importieren\nimport.selection.button=Auswahl importieren\nrefresh.button=Aktualisieren\nfreeworship.import.line1=Hiermit werden die Liederdaten aus der FreeWorship XML Datei importiert.\nadd.pdf.tooltip=PDF hinzufügen\nimportexport.options.heading=Import/Export\npreview.failed=Vorschau fehlgeschlagen\nset.loop.manually.title=PowerPoint wurde nicht gefunden\nset.loop.manually.message=Die Präsentation wurde geschlossen. Falls die Quelea Funktion \"Dauerschleife\" mit PowerPointViewer verwendet werden sollte, so muss \"Folien bis zum Beenden als Schleife abspielen\" manuell in der PowerPoint Datei eingestellt werden.\npresentation.changed.message=Quelea muss neu gestartet werden damit die Änderungen in den Präsentationseinstellungen übernommen werden.\npresentation.changed.label=Präsentationseinstellungen wurden verändert\npresentation.not.started.label=PowerPoint wurde nicht gestartet\npresentation.not.started.message=Leider konnte die Präsentation nicht mit PowerPoint geöffnet werden. Ist die Datei beschädigt?\npp.already.running.label=PowerPoint wird bereits ausgeführt\npp.already.running.message=Eine weitere Programminstanz von MS PowerPoint wurde gefunden. PowerPoint muss beendet werden bevor PPT Präsentationen in Quelea angezeigt werden können.\npp.path.label=Pfad zu MS PowerPoint\nuse.pp.label=Verwende PowerPoint für Präsentationen\nclose.all.presentations.label=Geöffnete PPT Präsentationen beenden\nclose.all.presentations.message=Bitte alle geöffneten PowerPoint Fenster schliessen vor dem Drücken der OK Taste. Ansonsten werden die Fenster automatisch geschlossen um Probleme zu vermeiden.\nlive.text.message=Texte die hier eingegeben werden, sind für Anwender der Mobile Lyrics App sichtbar wenn die Hauptanzeige leer ist.\\n\\nFür das Anzeigen einer neuen Seite bitte einfach eine leere Zeile einfügen oder STRG+RETURN.\\nMehr als 200 Zeichen auf einer Seite werden automatisch gekürzt.\nlive.text.title=Live Text\nexit.live.text=Live Text beenden\nclear.live.text=Löschen\ndefault.translation=Standard\nselect.language=Sprache auswählen:\nsend.live.text=Live Text\nconverting.to.mp3=Aufnahmen als MP3 konvertieren\nverse.tooltip=Titel für den Vers hinzufügen\nbridge.tooltip=Titel für die Bridge hinzufügen\nprechorus.tooltip=Titel für den Pre-Chorus hinzufügen\ntag.tooltip=Titel für eine Markierung (tag) hinzufügen\nadd.website=Website einfügen\nhelp.menu.feedback=Feedback\nadd.multimedia.tooltip=Multimedia hinzufügen\nfilefilters.description.multimedia.files=Multimedia Dateien\nthumbnail.size.label=Größe der Vorschau\nfocus.switcher.title=Quelea Fokus Umschaltung\nfocus.switcher.message=Hier kann der Fenster - Fokus während der Präsentation umgeschaltet werden falls benötigt.\nfocus.pp=Fokus zu PowerPoint schalten\nfocus.quelea=Fokus zu Quelea schalten\nwebsite.dialog.title=Webseiten URL\nwebsite.dialog.header=Eingabe der Webseiten Adresse / URL\nwebsite.dialog.content=Eingabe der Webseite die angezeigt werden soll:\npaste.label=Einfügen\nundo.label=Rückgängig\nredo.label=Wiederherstellen\nsmi.import.line1=Bitte wähle die zu importierenden Lieddaten von Screen Monkey aus. \nsm.button=Screen Monkey\nsundayplus.import.line2=(Der Import erwartet die PTF Dateien im Hauptverzeichnis der ZIP Datei)\nhelp.menu.error.text=Die Seite konnte nicht geladen werden. Bitte manuell zur Seite navigieren: $1\nfilefilters.description.songs.worshiphim=Worship Him MDB Dateien\nworshiphim.import.line1=Bitte den Speicherort der Worship Him DB (in mdb Format) angeben\nworshiphim.button=Worship Him\nshow.extra.live.panel.toolbar.options.label=Zeige zusätzliche Optionen der Live Panel Toolbar\nschedule.items.skipped.text=Bei einigen Zeitplanelementen ist das Medium nicht eingebettet, sodass sie nicht hinzugefügt wurden.\ndelete.notice.button=Löschen\ntheme.copy.label=Vom Thema kopieren\nsong.default.theme.label=Song-Standard\nsaved.notices=Gespeicherte Benachrichtigungen\ntheme.select.label=Thema wählen\nbible.default.theme.label=Bibel Standard\nelevanto.loginsuccess.message=Sie können dieses Fenster schließen und zu Quelea zurückkehren\nschedule.items.skipped.header=Artikel planen übersprungen\nallow.item.theme.override.global=Ermöglichen Sie, dass benutzerdefinierte Elementthemen das globale Design überschreiben\ncopy=Kopieren\nsave.add.notice.button=Speichern und fügen Sie eine Benachrichtigung hinzu\nvideo.loop.tooltip=Schleifen ein- / ausschalten\nelevanto.loginerror.warning=Fehler beim Anmelden bei Elevanto\nelevanto.button=Elevanto\nelevanto.import.heading=Elevanto\ndb.song.preview.label.databasepreview=In Datenbankansicht\ndefault.theme.label=Standard\ndb.song.preview.label=Liedvorschau aus Datenbank\ntheme.changed=Theme geändert\ninterface.theme.label=Anwendungs Theme\ndb.song.preview.label.control=Keine\ndb.song.preview.label.previewpane=In der Vorschauansicht\ntheme.changed.message=Quelea muss neu gestartet warden damit die Änderung des Themes aktiviert wird.\ndark.theme.label=Dunkel\nchosen.sequence.label=Ausgewählte Ablauf Reihenfolge\ngeneral.user.options=Allgemeine Benutzereinstellungen\nslide.transition.label=Verwende Überblendungseffekt zwischen Folien\nchosen.sequence.explanation=Elemente von Links nach rechts ziehen oder Doppelklicken um einen Lied-Ablauf zu definieren. Die Liedtexte werden später in dieser Reihenfolge angezeigt, unabhängig davon in welcher Reihenfolge sie in der Lieddatenbank gespeichert wurden.\nsmall.song.position.label=Position der Liedfinformation\navailable.sections.label=Verfügbare Absätze in diesem Lied\nmove.up.sequence.tooltip=Element in der Reihenfolge nach oben schieben\nremove.sequence.tooltip=Element aus dem Lied-Ablauf entfernen\nsequence.tooltip=Dialog für Lied-Ablauf\nmove.down.sequence.tooltip=Element in der Reihenfolge nach unten schieben\nsmall.bible.text.options=Optionen für Kleine Bibeltexte\nfilefilters.description.sunday.plus=Sunday plus Lieder\nsmall.bible.size.label=Größe der Bibelinformation\nfilefilters.description.xml.openlyrics=XML openlyrics Datei\npassword.empty.message=Das Serverpasswort darf nicht leer sein. Das Standardpasswort \"quelea\" wird verwendet, sofern kein eigenes Passwort gewählt wird.\nfilefilters.description.csv.files=.csv Dateien\nsequence.selection.dialog.title=Auswahl des Liedablaufes\ngeneral.interface.options=Allgemeine Einstellungen der Programmoberfläche\ninterface.options.options=Einstellungen der Bedienerschnittstelle\npp.path=Pfad zum PowerPoint Programm\nfilefilters.description.propresenter=Propresenter Lieder\nmobile.remote.heading=Mobile Remote\nschedule.options=Ablauf Optionen\nsmall.song.size.label=Größe der Liedinformation\npropresenter.import.line1=ProPresenter Lieddateien werden hiermit importiert.\npropresenter.button=ProPresenter\nsong.sequence=Lied-Ablauf:\nsmall.bible.position.label=Position der Bibelinformation\nsong.list=LIederliste\ntheme.options=Theme Optionen\nsmall.song.text.options=Einstellungen der kleinen Liedtexte\npassword.empty.label=Leeres Passwort\nremote.action.slide=Gehe zu nächster/vorigen Folie\nremote.dpad.navigation.description=Verwende Auf/Ab Tasten um zur vorigen/nächsten Folie zu wechseln. Wenn eine Bluetooth Tastatur oder Pedal (zBsp AirTurn) verwendet werden soll, hier aktivieren.\nremote.double.press.title=Aktion bei Doppelklick\nremote.signal.failed=Signal konnte nicht zum Server gesendet werden\nremote.navigation.settings.title=Einstellungen zur Navigation\nremote.failed.finding.server=Quelea Mobile Remote Server konnte nicht gefunden werden. Sicherstellen dass Quelea gestartet ist und die korrekte URL angegeben wurde.\nremote.select.book=Buch auswählen\nremote.swipe.navigation.title=Navigation durch Wischen\nremote.about.text.responsibility=Eine einwandfreie Funktion kann nicht garantiert werden, deshalb wird keine Verantwortung übernommen für eventuell auftretende Probleme in einer Live-Situation.\nremote.about.title=Über diese App\nremote.needs.newer.version=Diese Funktion benötigt den Server mit installierter Quelea Version $1 oder neuer.\nremote.select.chapter.verses=Kapitel und Vers(e) auswählen\nbible.version=Bibel Version / Übersetzung\nremote.about.text.support=Bei Fragen oder auftretenden Problemen bitte einfach eine Email an arvid @ quelea.org senden. Bitte vorher prüfen dass Quelea vor der App gestartet wurde (mit aktivierten Servereinstellungen) und dass beide Geräte im selben Netzwerk sind und die korrekte URL eingegeben wurde.\nremote.add.go.live=Hinzufügen und Live schalten\nclick.to.add=Zum hinzufügen clicken\nremote.send.notice.tooltip=Notiz hinzufügen\nremote.privacy.policy=Datenschutzrichtlinie\nremote.enable.dpad.navigation=Navigation mit Richtungstasten aktivieren\nremote.action.item=Zum nächsten/vorigen Element\nremote.ipv6.not.supported=Leider können keine IPv6 Adressen verwendet werden. Für die Funktion dieser App müssen IPv4 Adressen werwendet werden. Die Anleitung wie man die IPv4 herausfinden kann, kann in Google und dem Suchbegriff \"lokale IP Adresse ermitteln\" und dem Namen des verwendeten Betriebssystem zBsp \"Windows 10\". IPv4 Adresse hier eingeben:\nremote.long.press.title=Aktion bei langem Drücken\nremote.start.verse=Start-Vers\nremote.donations.link=Spenden\nremote.port.needed=Die URL muss die Port-Nummer am Ende enthalten (zBsp: ':1112'). Bitte nochmals versuchen.\nremote.use.autoconnect=Automatischer Versuch die Server-URL zu ermitteln.\nremote.select.theme=Theme auswählen\nremote.long.press.description=Aktion auswählen die durch langes drücken ausgeführt wird während mit einer der angeführten Optionen navigiert wird. Diese Funktion wird von AirTurn Pedalen nicht unterstützt.\nremote.connected=Verbunden!\nremote.on.end.title=Aktion beim Ende des Elements\nremote.enable.volume.navigation=Navigation durch Lautstärkeregler aktivieren\nremote.on.end.description=Aktion auswählen welche ausgeführt wird wenn mit der ausgwählten Option navigiert wird und das Ende/Anfang eines Elements erreicht wird.\nremote.chapter=Kapitel\nremote.disable.record=Aufnahme - Knopf deaktivieren\nremote.action.logo=Logo anzeigen - Text wird ausgeblendet\nremote.action.black=Schwarzen Bildschirm anzeigen - Text wird ausgeblendet\nremote.action.nothing=Keine Aktion ausführen\nremote.about.text.app=Diese App ist nicht auf Gewinn ausgerichtet (NonProfit App) und dient zur Steuerung der OpenSource Software Quelea (http://quelea.org). Obwohl sie nicht mehr im Entwicklungsstadium ist (keine Beta-Software) kann ein reibungsloser Betrieb in einem Livebetrieb nicht sichergestellt werden. Die App dient zur persönlichen Benutzung auf eigene Gefahr, und ist hoffentlich in einigen Situationen nützlich.\nremote.report.issue=Problem melden\nremote.auto.progress.item=Zum nächsten Element weiterschalten\nremote.theme.was.set=$1 wurde als globales Theme gewählt\nremote.swipe.navigation.description=Aktion wählen die beim Links- oder Rechtswischen ausgeführt werden sollte\nremote.action.clear=Text ausblenden mit dem Löschen-Button\nremote.search.server=Server suchen\nremote.wrong.content=Ein falscher Seiteninhalt wurde gefunden. Bitte erneut versuchen.\nremote.information.title=Information\nremote.choose.action=Aktion auswählen für $1\nremote.double.press.description=Aktion auswählen die ausgeführt wird, wenn 2 Buttons gleichzeitig gedrückt werden beim Navigieren mit einer der beiden ausgewählten Optionen.\nremote.end.verse=End-Vers\nremote.control.app.name=Quelea Mobile Remote\nremote.no.wifi=Kein WLAN verbunden. Bitte URL manuell eintragen oder mit einem WiFi Netz verbinden.\nremote.search.tooltip=Lied oder Bibelvers hinzufügen\nremote.about.translating=Informationen zur Übersetzung der App\nremote.source.code=Source code\nremote.volume.navigation.description=Die Lautstärketasten des Mobilgerätes nutzen, um zum nächsten Element zu wechseln.\nclient.id=Client ID\nlink.preview.and.live.dividers.label= Vorschau und Live – Fenster Unterteilungen verbinden\nstage.show.clock=Uhr anzeigen\nsong.sequence.tip=Tip: Ein Abschnitt kann mehrmals eingegeben werden (zBsp Chorus)!\nenter.valid.port=Bitte eine Zahl eingeben zwischen 1029 und 49151\nopen.sequence.editor.tooltip=Ablaufeditor anzeigen"
  },
  {
    "path": "Quelea/languages/es.lang",
    "content": "LANGUAGENAME=Español (ES)\ndatabase.heading=Base de datos\nimport.heading=Importar\nqsp.button=Cancionero de Quelea\nos.button=Opensong\nolp.button=OpenLP\nolyrics.button=OpenLyrics\nzw.button=ZionWorx\nsp.button=Sunday Plus\nss.button=Cancionero de Survivor\nprojector.heading=Proyector\ncontrols.heading=Controles\non.button=Encendido\noff.button=Apagado\nswitch.input.button=Cambiar entrada\ngeneral.options.heading=General\ndisplay.options.heading=Mostrar\nbible.options.heading=Biblia\ncheck.for.update.label=Revisar actualizaciones al iniciar\n1.monitor.warn.label=Advertir si sólo un monitor está conectado\ncapitalise.start.line.label=Convertir en mayúscula la primer letra de cada renglón\none.line.mode.label=Vista previa de una sola línea por sección de canción\ndisplay.song.info.label=Mostrar información de la canción\ntext.border.thickness.label=Espesor del borde del texto\nmax.chars.line.label=Máximo de caracteres por línea\nadvanced.label=Avanzado\nok.button=OK\noutput.text=Salida de señal\ncontrol.screen.label=Control de pantalla\nprojector.screen.label=Pantalla del proyector\nstage.screen.label=Pantalla del escenario\ncustom.position.text=Personalizar posición\ndefault.bible.label=Por omisión\nmax.verses.label=Máximo de versículos a mostrar de una sola vez\nadd.bible.label=Añadir Biblia...\nnone.text=Ninguno\nnew.schedule.button=Nuevo guión\nopen.schedule.button=Abrir guión\nsave.schedule.button=Guardar guión\nsave.as.schedule.button=Guardar guión como...\nprint.schedule.button=Imprimir guión\noptions.title=Opciones\noptions.button=Opciones\nexit.button=Salir\nnew.schedule.text=Nuevo guión\ncreate.new.schedule.text=Crear nuevo guión\nopen.schedule.text=Abrir guión\nopen.existing.schedule.text=Abrir guión existente\nsave.schedule.text=Abrir guión\nsave.schedule.disk.text=Guardar guión en el disco\nsave.as.schedule.text=Guardar guión como...\nsave.as.schedule.disk.text=Guardar guión como un archivo diferente\nprint.schedule.text=Imprimir guión\nprint.current.schedule.text=Imprimir guión actual\noptions.text=Opciones\ndisplay.options.text=Mostrar la ventana de opciones\nexit.text=Cerrar Quelea\nquit.quelea.text=Salir de Quelea\nsave.schedule.tooltip=Guardar guión\nprint.schedule.tooltip=Imprimir guión\nlibrary.image.heading=Imágenes\nlibrary.songs.heading=Canciones\nlibrary.bible.heading=Biblias\nbible.heading=Biblias\nlibrary.song.search=Buscar\nclear.search.box=Limpiar búsqueda\nadd.song.text=Añadir canción a la base de datos\nremove.song.text=Remover canción de la base de datos\nlibrary.add.to.schedule.text=Añadir al guión\nlibrary.edit.song.text=Editar canción\nlibrary.remove.song.text=Remover canción\nlibrary.print.song.text=Imprimir canción\nadd.to.schedule.text=Añadir al guión\norder.service.heading=Guión\nmove.down.schedule.tooltip=Mover hacia abajo en el guión\nmove.up.schedule.tooltip=Mover hacia arriba en el guión\nremove.song.schedule.tooltip=Remover del guión\nadjust.theme.tooltip=Ajustar \nedit.song.text=Editar canción\nnew.theme.text=Nuevo tema...\ntheme.select.text=Seleccionar tema\ndefault.theme.name=Por omisión\ndefault.theme.text=Tema por omisión\nremove.theme.tooltip=Remover tema\nedit.theme.tooltip=Editar tema\nedit.theme.heading=Editar tema\npreview.heading=Vista previa\nlive.heading=En vivo\ngo.live.text=Ir en vivo\nblack.screen.tooltip=Pantalla en negro\nclear.text.tooltip=Pantalla en blanco\nhide.display.output.tooltip=Ocultar pantalla de salida\nschedule.heading=Guión\nadd.song.button=Añadir canción\nedit.song.button=Editar canción\nremove.item.button=Remover elemento\nadd.multimedia.heading=Añadir multimedia\nadd.presentation.button=Añadir presentación\nadd.video.button=Añadir video\nadd.youtube.button=Añadir video de Youtube\nadd.live.video.button=Añadir Live Video\nadd.dvd.button=Añadir DVD\nadd.audio.button=Audio\nadd.audio.tooltip=Añadir audio\nshare.heading=Compartir\nemail.button=Enviar guión por correo electrónico\nmanage.notices.button=Administrar avisos...\nnotices.heading=Notas\nnew.notice.text=Nueva nota\nedit.notice.text=Editar nota\nremove.notice.text=Remover nota\ndone.text=Hecho\nnew.notice.heading=Nueva nota\nnotice.text=Nota\nnotice.times.text=Número de veces a mostrar\nnotice.infinite.question=¿Infinito?\nadd.notice.button=Añadir nota\nedit.notice.button=Editar nota\nyes.text=Si\nno.text=No\ncancel.text=Cancelar\nnew.song.button=Nueva canción\ndelete.song.button=Borrar canción\nsongs.heading=Canciones\ntags.button=Administrar etiquetas...\nsource.button=The Source\neasyslides.button=EasySlides\neasyworship.button=EasyWorship 2009\nplainText.button=Texto sin formato\nkingsway.button=Kingsway en línea\nsof.button=Cancionero de Fellowship\nexport.heading=Exportar\nfilter.tag=Filtrar etiquetas\ntags.colon.label=Etiquetas:\nimport.button=Importar\nclick.select.file.text=Haga \"click\" to seleccionar archivo\ncheck.duplicates.text=Revisar duplicados\nedit.song.title=Editar canción\nbasic.information.heading=Información básica\ndetailed.info.heading=Información detallada\ntheme.heading=Tema\ntitle.label=Título\nauthor.label=Autor\nrun.spellcheck.label=Revisión ortográfica\nfix.apos.label=Eliminar apóstrofes\ntrim.lines.tooltip=Líneas de corte\ntranspose.tooltip=Incluir...\ncancel.button=Cancelar\nccli.number.label=Número CCLI\ncopyright.label=Copyright\nyear.label=Año\npublisher.label=Editor\ntags.label=Etiquetas\ntype.tag.name.here.text=<Escriba los nombres de las etiquetas aquí>\nkey.label=Key\ncapo.label=Capo\nnotes.label=Notas\nfont.theme.label=Fuente\nchoose.color.text=Elegir color...\nbackground.text=Fondo\nbackground.theme.label=Tema de fondo\ncolor.theme.label=Color\nimage.theme.label=Imagen\nselect.color.title=Seleccionar color\nselect.color.button=Elegir color\nnew.song.title=Nueva canción\ntype.lyrics.here.text=Escriba las letras aquí\nrtf.files.description=Archivos RTF\nsof.import.line1=Esto importará la biblioteca SoF de un archivo RTF.\nplaintext.import.line1=Esto importará la biblioteca del directorio que contiene los archivos de canciones en texto sin formato.\nkingsway.import.line1=Esto importará la biblioteca de canciones de Kingsway desde internet.\nsongpro.import.line1=Esto importará las canciones de la base de datos SDB de SongPro.\nkingsway.import.line2=Esto tomará un largo tiempo (¡probablemente horas!), así que por favor, sea paciente y deje a Quelea trabajando.\neasyslides.import.line1=Esto importará canciones de un archivo XML de EasySlides.\neasyworship.import.line1=Esto importará canciones de un archivo .MB de Easyworship.\nopenlyrics.import.line1=Seleccione debajo la ubicación de un archivo ZIP de canciones de OpenLyrics.\nqsp.import.line1=Seleccione debajo la ubicación de un cancionero de Quelea.\nos.import.line1=Seleccione debajo la ubicación de una base de datos de Opensong.\nzw.import.line1=Seleccione debajo la ubicación de un archivo \"MainTable.dat\" de ZionWorx.\nzw.import.line2=Este puede ser encontrado usualmente en \"C:\\\\ProgramData\\\\ZionWorx\\\\2.6\\\\Data\".\nolp.import.line1=Seleccione debajo la ubicación de la base de datos de OpenLP.\nsundayplus.import.line1=Seleccione debajo la ubicación de la base de datos de Sunday Plus.\nsource.import.line1=Seleccione la ubicación del directorio ymns en el CD de origen.\nsurvivor.import.line1=Seleccione debajo la ubicación del cancionero en PDF de Survivor.\nsurvivor.import.line2=Este debe de ser el archivo acetates.pdf, no los acordes de la guitarra o la partitura.\nimport.error.message=Lo sentimos, hubo un problema con la importación. Por favor, siéntase libre de pedir ayuda en el grupo de discusión de Quelea: https://quelea.discourse.group\nemail.error.title=Error de correo electrónico\nemail.error.text=Hubo un error al abrir su cliente de correo electrónico. Asegúrese de que tiene un cliente de correo electrónico instalado y registrado para administrar archivos eml, de otra manera tendrá que enviar el correo electrónico manualmente.\nemail.text=¡Hola! Se ha adjuntado un guión de Quelea que has enviado. Simplemente ábrelo con Quelea y todos los detalles deberán mostrarse correctamente.\nselect.image.button=Seleccionar imagen\nimage.files.description=Archivos de imagen\npng.files.description=Archivos de imagen PNG\ntools.label=Herramientas\nselect.songs.title=Seleccionar canciones\ncheck.uncheck.all.text=Marcar/Desmarcar todos\ndelete.theme.confirm.title=Confirme que desea eliminar\ndelete.theme.question=¿Realmente desea eliminar este tema?\ntoo.many.verses.error=Lo sentimos, no se pueden mostrar tantos versículos... por favor, intente con un número menor de ellos.\none.monitor.warning=Parece que tiene sólo un monitor instalado; está bien si usa Quelea para preparar sus guiones, pero si va a emplearlo en una sesión en vivo, Quelea necesita 2 monitores para desempeñarse adecuadamente.\none.monitor.title=Sólo un monitor\nno.dvd.heading=Disco no encontrado\nno.dvd.error=Por favor, inserte un DVD o Blu-Ray válido.\nadding.presentation.status=Importando presentación...\nadding.presentation.error.message=Hubo un error al importar la presentación, probablemente esté dañada.\nadding.presentation.error.title=Error al importar la presentación\nimporting.status=Importando...\nname.label=Nombre\nsimilar.colors.text=Ha elegido colores muy similares para las palabras y el fondo, lo que hará difícil para la congregación distinguir el texto. Recomendamos elegir otros colores.\nwarning.label=Advertencia\nfile.menu=Archivo\ntools.menu=Herramientas\nschedule.menu=Guión\ndatabase.menu=Base de datos\nprojector.menu=Proyector\nnew.theme.title=Nuevo tema\nadd.theme.label=Añadir tema\ntheme.name.label=Nombre del tema\nhelp.menu=Ayuda\nhelp.menu.website=Página web\nhelp.menu.discussion=Soporte / Discusión (haga sus preguntas aquí)\nhelp.menu.download=Descargar\nhelp.menu.update=Búsqueda de actualizaciones...\nhelp.menu.about=Acerca de...\nhelp.menu.error.title=Error\nhelp.about.title=Acerca de...\nhelp.about.version=Versión\nhelp.about.close=Cerrar\nhelp.about.line1=El uso de Quelea está autorizado bajo los términos de la licencia GPL (Versión 3.)\nhelp.about.line2=Este es, y siempre será, un software gratuito y de código abierto.\nnew.schedule.tooltip=Nuevo guión\nopen.schedule.tooltip=Abrir guión\nnew.song.tooltip=Nueva canción\nadd.presentation.tooltip=Añadir presentación\nadd.dvd.tooltip=Añadir DVD\nadd.video.tooltip=Añadir video\nmanage.tags.tooltip=Administrar etiquetas\nmanage.notices.tooltip=Administrar noticias\nalready.running.error=Parece que ya tiene una ventana de Quelea abierta.\\nAsegúrese de cerrar todas las demás ventanas de este programa antes de abrir una nueva.\nalready.running.title=Ya está corriendo\nerror.schedule.message=Hubo un problema al abrir el guión. Probablemente tiene fallos o no es un guión guardado por Quelea.\nerror.schedule.title=Error al abrir el guión\nprint.chords.question=¿Incluir los acordes cuando se imprima esta canción?\nprint.chords.export.question=¿Incluir los acordes cuando se exporten estas canciones?\nprinting.options.text=Imprimir canción\nspace.key=Espacio\nupdating.db=Actualizando base de datos\nerror.updating.song.text=Hubo un error al actualizar la canción en la base de datos, podría tener fallos.\nerror.text=Error\nquick.shortcut.description=ESC para cancelar, shift+enter para guardar\nsave.before.exit.text=El guión ha sido modificado. ¿Desea guardarlo antes de salir?\nsave.before.exit.title=Guión no salvado\nno.chords.message=Esta canción no tiene ninguna linea de acordes que incluir.\nno.chords.title=No hay acordes\nerror.checking.updates.title=No fue posible revisar la existencia de actualizaciones\nerror.checking.updates.text=Lo sentimos, hubo un error al revisar la existencia de actualizaciones. Por favor, revise su conexión a internet e intente de nuevo.\nnewer.version.available=Hay una nueva versión de Quelea disponible\nno.newer.version.available=Tiene instalada la versión más reciente de Quelea\nvisit.webpage.now=¿Desea visitar el sitio web para descargarla en este momento?\ndownload.manual.update=Puede descargarla aquí.\nnewer.version.available.title=Actualización disponible\nno.newer.version.available.title=¡ya se encuentra actualizado!\ncheck.kingsway.start=Ya ha importado algunos elementos de la biblioteca de Kingsway. ¿Desea reiniciar la importación en el punto donde la dejó?\ncheck.kingsway.start.title=Elementos ya importados\nimport.no.songs.title=No se encontraron canciones\nimport.no.songs.text=No se encontró alguna canción para importar.\nstage.options.heading=Vista de escenario\nstage.show.chords=¿Mostrar acordes?\nstage.line.alignment=Alineación del texto\nstage.font.selection=Fuente\nstage.background.colour=Color de fondo\nstage.lyrics.colour=Color de letras\nstage.chord.colour=Color de acordes\nleft=Izquierda\ncentre=Centro\nright=Derecha\nconfirm.label=¿Está seguro?\nschedule.clear.text=El guión ha sido modificado. ¿Desea continuar sin guardarlo?\npart=parte\nhelp.menu.facebook=Página de Facebook\nvideo.error=No pudimos iniciar las bibliotecas de video - el video no funcionará. Por favor, pida ayuda en la lista de discusión (ver el menú de ayuda).\nvideo.error.title=Error de video\ntext.shadow.label=Mostrar sombra de texto\nadding.images=Añadiendo imágenes...\nsetup.oo.failed.text=Fallo al configurar OpenOffice para mostrar presentaciones. Por favor, asegúrese de tener OpenOffice instalado y que la ruta provista es la correcta.\nsetup.oo.failed.title=Fallo al iniciar OpenOffice\nuse.oo.label=Usar OpenOffice para presentaciones\noo.path=Ruta de OpenOffice\nbrowse=Navegar...\nloading.text=Cargando\nbuilding.bible.index=Cargando Biblias\nbible.search.title=Buscador de Biblia\ninitial.search.text=<Escriba aquí para buscar>\nview.bible.button=Ver Biblias...\nsearch.bible.button=Buscar Biblias...\nall.text=Todo\nbible.browser.title=Navegador de Biblia\nopen.in.browser=Abrir en navegador...\nkingsway.button.all=Todas las canciones\nkingsway.button.one=Una canción\nsong.id.selector=Por favor, seleccione el identificador de la canción\nbible.copy.error.text=Lo sentimos, hubo un error al copiar la Biblia a través del directorio necesario.\nbible.copy.error.heading=Error\nselect.key.label=Seleccione la nueva clave:\ntranspose.label=Incluir\nalready.exists.overwrite.label=Ya existe, ¿sobrescribir?\noverwrite.text=Sobrescribir\ncant.save.schedule.title=Error al guardar el guión\ncant.save.schedule.text=Lo lamentamos, ocurrió un error y el guión no podrá ser guardado.\nerror.removing.song.db=Ocurrió un error al remover la canción de a base de datos.\nconfirm.remove.text=Confirme que desea remover\nconfirm.remove.question=¿Realmente desea remover $1 de la base de datos? Esta acción no puede ser revertida.\nquick.edit.text=Edición rápida\nlibrary.preview.song.text=Vista previa de la canción\nvideo.error.unsupported=Lo sentimos, el archivo de video que ha seleccionado no es compatible.\nvideo.error.general=Lo sentimos, hay un error con el archivo de video que seleccionó.\nvideo.theme.label=Video\nselect.video.button=Seleccionar video\nrefresh.images.panel=Renovar imágenes\nadd.images.panel=Añadir imágenes\nselect.folder.images.panel=Seleccionar fólder...\ntext.position.label=Posición del texto\nimage.folder=Imagen del fólder:\nquick.insert.text=Inserción rápida\nconfirm.overwrite.title=¡El archivo ya existe!\nconfirm.overwrite.text=Este archivo a existe. ¿Le gustaría reemplazarlo o continuar sin copiarlo?\nfile.rename.button=Renombrar\nfile.replace.button=Reemplazar\nfile.continue.button=Continuar\nfile.rename.dialog.title=Renombrar\nfile.rename.dialog.text=Por favor, ingrese el nuevo nombre del archivo:\ninterface.language.label=Idioma de la interfaz:\nlanguage.changed=Idioma modificado\nlanguage.changed.message=Debe reiniciar Quelea antes de que el cambio de idioma surta efecto.\ndebug.location=Depurar ubicación del registro\ntop.text.position=Arriba\nmiddle.text.position=En medio\nbottom.text.position=Abajo\nshadow.color=Color de la sombra\nshadow.x=Desplazamiento de la sombra X\nshadow.y=Desplazamiento de la sombra Y\nselect.imported.songs.line1=Las siguientes canciones han sido importadas.\nselect.imported.songs.line2=Seleccione las canciones que desea añadir a la base de datos, después presione \"Añadir\".\nselect.imported.songs.line3=Las canciones que Quelea considera están duplicadas han sido deseleccionadas.\nadd.text=Añadir\nadd.to.database.question=¿Añadir a la base de datos?\nselect.export.songs.line1=Las siguientes canciones están en la base de datos.\nselect.export.songs.line2=Seleccione las canciones que desea exportar y luego presione \"Añadir\".\nadd.to.songpack.question=¿Exportar canción?\nprojection.window.title=Ventana de proyección\nclear.live.on.remove.schedule=Quitar elemento de la vista en vivo o removerlo del guión\nspelling.complete.text=La revisión ortográfica se ha completado.\ncomplete.title=Completo\nspelling.check.title=Revisión ortográfica\ncorrect.text=Corregir\nignore.text=Ignorar\nspelling.errors.in.doc.label=Hay errores ortográficos en el documento. Presione \"F7\" para abrir el menú de revisión ortográfica.\nremove.image.text=Remover imagen\ndelete.image.title=Eliminar imagen\ndelete.image.confirmation=¿Realmente desea remover esta imagen de la biblioteca? Esta acción no puede ser revertida.\nnotice.expired.title=Nota caducada\nnotice.expired.text=La nota que está editando ha caducado. ¿Desea añadirla de nuevo?\ndictionary.language.text=Idioma del diccionario\nconfirm.entry.exit.text=¿Desea guardar los cambios a esta canción?\nconfirm.entry.exit.title=¿Guardar canción?\nsave.text=Guardar\ndont.save.text=No guardar\nvlc.warning.title=No se pudo encontrar VLC\nvlc.warning.message=Quelea no pudo encontrar el programa VLC en su sistema; sin él, Quelea no será capaz de reproducir videos, audio y mostrar canciones con fondos animados. ¿Desea descargarlo en este momento? Necesitará reiniciar Quelea después de que haya instalado VLC para que los cambios surtan efecto.\nvlc.version.message=Su versión de VLC es obsoleta. Necesita descargar la más reciente versión de VLC para reproducir videos, audio y mostrar canciones con fondos animados. ¿Desea descargarlo en este momento? Necesitará reiniciar Quelea después de que haya instalado VLC para que los cambios surtan efecto.\ncontinue.without.video=Continuar sin VLC\ndownload.vlc=Descargar VLC\nstartup.error.title=Error al iniciar\nstartup.error.text=Lo sentimos, Quelea no pudo iniciar por alguna razón en su sistema. Si le gustaría ayudarnos a descubrir que salió mal, por favor envíe un correo electrónico a support@quelea.org y anexe el archivo de depuración del registro ($1).\\n\\nAdemás, siéntase libre de preguntar en el grupo de discusión de Quelea (https://quelea.discourse.group).\nfilefilters.description.survivor.songbook=Archivo de acetatos de Survivor\nfilefilters.description.xml.bibles=Biblias XML\nfilefilters.description.xml.easyslide=Archivos Easyslide XML\nfilefilters.description.xml.files=Archivos XML\nfilefilters.description.video.files=Archivos de video\nfilefilters.description.audio.files=Archivos de audio\nfilefilters.description.quelea.schedules=Guión de Quelea\nfilefilters.description.powerpoint.presentations=Presentaciones de Powerpoint\nfilefilters.description.plain.text.song=Canción en texto sin formato\nfilefilters.description.maintable.dat=Base de datos MainTable de ZionWorx\nbible.search.results.found=resultados encontrados\nbible.search.result.found=resultado encontrado\nbible.search.keep.typing=Continúe escribiendo...\nuniform.font.size.label=Usar tamaño de fuente uniforme\nmax.font.size.label=Tamaño máximo de fuente\nadditional.line.spacing.label=Interlineado adicional\nlogo.screen.tooltip=Click izquierdo - Mostrar    -    Click derecho - Establecer\nchange.graphics.label=Cambiar gráficas\nfont.colour.label=Color de fuente\nbackground.colour.label=Color de fondo\nmobile.lyrics.heading=Letras para móvil\nuse.mobile.lyrics.label=Usar letras para móvil\nport.number.label=Número de puerto\nnavigate.mob.url.label=URL de letras para móvil\nserver.changed.label=Configuración del servidor modificada\nserver.changed.message=Necesitará reiniciar Quelea para que la nueva configuración del servidor surta efecto.\nfilefilters.description.zip.files=Archivos Zip\nfilefilters.description.sqlite.files=Archivos SQLite\nloop.label=Bucle\nseconds.label=segundos\nchosen.fonts.explanation=Quelea sólo muestra una selección de fuentes en la ventana de temas. Arrastre las fuentes que use desde el panel izquierdo hasta el panel derecho; arrastre las que no necesite de derecha a izquierda.\nignored.fonts.label=Fuentes ignoradas\nchosen.fonts.label=Fuentes elegidas\nfont.selection.dialog.title=Fuentes seleccionadas\nvideo.hue.label=Matiz\nhover.for.position.label=Pase el ratón sobre el lienzo para ajustar la posición del texto\ntest.patterns.text=Patrones de prueba\ntest.patterns.explanation=Los patrones de prueba aquí disponibles le ayudarán a calibrar el enfoque y color de su pantalla. Haga \"click\" en la imagen de prueba para mostrarla en las vistas principal y de escenario.\nyoutube.url.label=URL de video en Youtube\nno.tdb.heading=Datos de intercambio TurboDB no encontrados\nno.tdb.message=Por razones técnicas, necesita descargar los datos de intercambio TurboDB (https\\://www.dataweb.de/en/support/downloads.html) antes de que Quelea pueda importar las bases de datos de ZionWorx.\\nCuando las haya descargado, extraiga el contenido del archivo zip a $1.\\n\\nSi se presenta algún problema, siéntase libre de preguntar en el grupo de discusión de Quelea (https://quelea.discourse.group).\nno.pdb.heading=Controlador de Paradox JDBC no encontrado\nno.pdb.message=Por razones técnicas, necesita descargar el controlador de Paradox JDBC antes de que Quelea pueda importar adecuadamente las bases de datos de Easyworship:\\n\\n1. Diríjase a http://www.hxtt.com/download.jsp y regístrese para obtener una cuenta gratis y continúe.\\n2. Descargue el paquete \"DBF JDBC 4.1 para JDK1.7.X y el archivo JDK1.8.X\". Este debería llamarse Paradox_JDBC41.jar.\\n3. Copie Paradox_JDBC41.jar a $1.\\n\\nSi se presenta algún problema, siéntase libre de preguntar en el grupo de discusión (https://quelea.discourse.group). Quelea continuará tratando de importar las bases de datos de Easyworship sin este archivo en su lugar, pero podría arrojar resultados poco fiables.\nshow.verse.numbers=Mostrar números de versículos\nadd.song.hint.text=Todavía no hay canciones aquí, ¡pero no tema! Para agregar una canción, haga \"click\" en el botón \"añadir\" que se encuentra a la izquierda.\nadd.song.hint.search.text=Aun no hay canciones aquí que coincidan con la búsqueda. Para añadir una canción, haga \"click\" en el botón de \"Nueva canción\" aquí a la izquierda.\nfilefilters.description.songs.mb=Base de datos Easyworship Songs.MB\ntranslate.tooltip=Traducción de canciones\nclose.button=Cerrar\nadd.translation.button=Añadir traducción...\nenter.translation.name.label=¿A qué idioma le gustaría traducir?\ntranslate.dialog.title=Administrador de traducciones\nconfirm.remove.translation.title=¿Remover traducción?\nconfirm.remove.translation.text=¿Realmente desea eliminar esta traducción?\ndefault.translation.label=Traducción por omisión\noverwrite.lyrics.title=¿Sobrescribir letras existentes?\noverwrite.lyrics.text=Hemos traducido la letra automáticamente para usted, ¿desea usarla?\\nSu traducción actual será reemplazada.\nauto.translate.label=Hacer auto traducción de canciones\nchoose.translations.text=Elegir traducciones\nselect.translation.label=Seleccionar la traducción que le gustaría mostrar a la par de la letra original:\ntranslate.heading=Traducciones\nremote.logo.text=Logo\nremote.black.text=Negro\nremote.clear.text=Blanco\nremote.next.text=Diapositiva siguiente\nremote.prev.text=Diapositiva anterior\nremote.nextitem.text=Elemento siguiente\nremote.previtem.text=Elemento anterior\nserver.settings.heading=Configuración del servidor\nuse.remote.control.label=Usar control remoto\nnavigate.remote.control.label=URL del control remoto\nremote.empty.lyrics=Las letras de las canciones aparecerán aquí\nremote.control.password=Contraseña de control remoto (Sensible a las mayúsculas)\nremote.logout.text=Cerrar sesión\nremote.login.text=Por favor, inicie sesión para continuar\nremote.submit.text=Inicio de sesión\nmore.font.options.label=Más opciones de fuente\nmore.fonts.label=Más fuentes\ntranslation.font.text=Fuente de traducción\nshadow.text=Sombra\nsaving.schedule=Guardando el guión...\nsmall.text.position.label=Ubicación en la pantalla de la información de la Biblia y las canciones\nbible.passage.selector.prompt=[Capítulo]:[Versículo]-[Versículo]\ntheme.button.tooltip=Programar un tema global para el guión\ncurrently.displaying.text=Mostrando en este momento\nplay=Reproducción\npause=Pausa\nshow.small.song.text.label=Mostrar información breve de la canción\nshow.small.bible.text.label=Mostrar información breve de la cita bíblica\nuse.bible.verses=Dividir diapositivas de citas bíblicas por\nmax.items.per.slide=Número máximo de % por diapositiva\nverses=versículos\nwords=palabras\nedit.bible.passage.text=Editar tema de cita\nnotice.colour.text=Color de nota\nnotice.font.text=Fuente de nota\nnotice.speed.text=Velocidad de nota\nnotice.background.colour.text=Color de fondo de la nota\nnotice.position.text=Posición de la nota\nnotice.font.size=Tamaño de fuente de la nota\nnotice.options.heading=Notas\nexport.pdf.button=Exportar a PDF\npdf.button=PDF\nexport.schedule.pdf.button=Exportar guión a PDF\nfilefilters.description.pdf.files=Archivos PDF\nnot.started.label=No iniciado\nquelea.schedule.text=Guión de Quelea\nuser.options.options=Opciones de usuario\ntext.options.options=Opciones de texto\nstretch.video.label=Ensanchar video\nexport.schedule.songs.pdf.button=Exportar canciones a PDF\nexporting.label=Exportando\nuse.shadow.label=¿Usar sombra?\nshadow.color.label=Color de sombra\nshadow.offset.label=Desplazamiento de la sombra\nshadow.radius.label=Radio de sombra\nshadow.spread.label=Extensión de la sombra\nhelp.menu.manual=Manual\nedit.theme.text=Editar tema\nchange.bible.version.text=Cambiar versión\nswitch.to.text=Cambiar a\nsave.qr.code.text=Guardar código QR\nnonbreak.tooltip=Añadir línea de continuidad\ncopying.video.please.wait.text=Espere un momento - se está copiando el archivo de video...\ntranslating.text.please.wait.text=Espere un momento - efectuando traducción...\nfilefilters.description.usr.files=Archivos USR (SongSelect)\nsongselect.import.line1=Seleccione debajo los archivos de SongSelect.\nsongselect.button=SongSelect\ntranslation.export.heading=Exportar traducción\ninclude.translations.question=¿Incluir las traducciones en el archivo PDF?\nslide.text=Diapositiva\nautoplay.vid.label=Reproducción automática de videos en panel de transmisión en vivo\nadvance.on.live.label=Guión avanzado en pantalla de transmisión en vivo\ndelete.translation.title=Borrar traducción\ndelete.translation.text=¿Borrar la traducción $1 ?\nhelp.menu.wiki=Wiki\npreview.on.image.change.label=Vista previa de elemento en cambio de imagen\nadd.timer.tooltip=Añadir cuenta regresiva\nfilefilters.description.image.video.files=Archivos de imagen y video\ntimer.duration.label=Duración de la cuenta regresiva\ntimer.file.label=Localización del archivo de fondo\nduration.tooltip.label=#:## ó ##m##s\ntranslation.choice.title=Elección de traducción\nfont.options.title=Opciones de fuente\nnew.translation.title=Nueva traducción\nadd.timer.title=Añadir cuenta regresiva\nuntitled.theme.text=Tema sin título\ntimer.text.label=Texto adicional\ntimer.text.prompt=Use # para indicar tiempo de la cuenta regresiva, por ejemplo, \"El servicio inicia en #\" mostrará lo siguiente \"El servicio inicia en 05:00\"\ncountdown.label=Cuenta regresiva\ntimer.theme.label=Configuración del tema\ntimer.theme.button=Cambiar tema\nembed.media.in.schedule=Insertar datos multimedia en archivo de guión\nmediashout.import.line1=Seleccionar la ubicación de la base de datos MediaShout db (exportado a formato txt):\nfilefilters.description.txt.files=Archivos .txt\nmediashout.button=MediaShout\nclear.stage.view=Sincronizar vista de escenario con vista principal\ntop=Arriba\nbottom=Abajo\nepicworship.import.line1=Esto importará el archivo del cancionero de EpicWorship (.epc)\nfilefilters.description.epc=Cancionero de EpicWorship .epc\nepicworship.button=EpicWorship\nadd.videos.panel=Añadir video\nremove.video.text=Remover video\ndelete.video.title=Eliminar video\ndelete.video.confirmation=¿Realmente desea remover este video de la biblioteca? Esta acción no puede ser revertida.\nlibrary.video.heading=Videos\ntimer.files.description=Cuentas regresivas\nadd.timers.panel=Añadir cuentas regresivas\nlibrary.timer.heading=Cuentas regresivas\ntimer.save.label=¿Guardar cuenta regresiva?\ntimer.name.label=Nombre\nedit.timer.text=Editar cuenta regresiva\nremove.timer.text=Borrar cuenta regresiva\nconfirm.remove.timer=¿Realmente desea remover $1 de la lista de cuentas regresivas? Esta acción no puede ser revertida.\nkingsway.button.range=Rango\nkingsway.range.import.text=Ingrese el rango de páginas a descargar del sitio web de Kingsway.\\nActualmente el número máximo de páginas es de unas 3600.\nkingsway.range.import.heading=Importar rango de canciones de Kingsway\nsdb.files.description=Archivos en la base de datos de Songpro\nsongpro.button=SongPro\noverflow.song.label=Ligar canción actual con la siguiente canción\ninvalid.search=Búsqueda no válida\nrcs.add.failed=Fallo al añadir\nrcs.add.success=Añadido exitosamente\nrcs.add.song=Añadir canción al guión\nrcs.search=Buscar base de datos\nrcs.add.bible.error=Ocurrió un error al añadir $1 al guión\nrcs.song.search=Canción\nsongbeamer.button=SongBeamer\nsng.files.description=Archivos SNG de SongBeamer\nsongbeamer.import.line1=Seleccione aquí abajo la ubicación de los archivos SNG que desea importar:\nuse.24h.clock=Use reloj de 24 horas\nshow.video.library.panel=Muestre pestaña de biblioteca de videos (necesita reiniciar el programa)\nrcs.bible.search=Biblia\nrcs.submit=Agregar\npco.button=Centro de planificación en línea\npco.login.import.heading=Inicio de sesión del Centro de Planificación\npco.loginerror.title=Error de inicio de sesión\npco.loginerror.warning=Error al iniciar sesión, verificar el correo electrónico y la contraseña e intentarlo de nuevo\npco.import.heading=Centro de planificación en línea\npassword.text=Contraseña\nemailaddress.text=Email\nlogin.text=Entrar\nlibrary.copy.to.schedule.text=Copiar para programar\nfreeworship.button=Freeworship\nimport.all.button=Importar todo\nimport.selection.button=Importar selección\nrefresh.button=Actualizar\nvideopsalm.import.line1=Esto importará la biblioteca VideoPsalm de un archivo JSON.\nfreeworship.import.line1=Esto importará las canciones de FreeWorship de archivos XML.\nmissionpraise.import.line1=Esto importará canciones de los archivos RTF de Mission Praise.\nhelp.menu.feedback=retroalimentación\nadd.multimedia.tooltip=Añadir Multimedia\nfilefilters.description.pmsong.files=Canciones Presentacion Manager\nfilefilters.description.vs.files=Bases de datos de VideoPsalm\nfilefilters.description.multimedia.files=Archivos multimedia\nthumbnail.size.label=Tamaño de miniatura\nfilefilters.description.songs.missionpraise=Archivos RTF missionpraise\npm.import.line1=Seleccione las canciones de Presentation Manager que desea importar.\nsmi.import.line1=Seleccione las canciones de Screen Monkey que desea importar.\nvideopsalm.button=VideoPsalm\npm.button=Administrador de presentación\nsm.button=Screen Monkey\nsplit.bible.verses=Mantener versos enteros a traves las diapositivas\nno.verse.title=No se encontró verso\nno.verse.message=No pudimos encontrar uno o más de los versos especificados y hemos tratado de continuar sin ellos.\nchorus.tooltip=Añadir título de coro\nrecordings.path=Ruta de acceso para las grabaciones\ndownload.path=descargar ruta\nconvert.mp3=Convertir automáticamente grabaciones a archivos MP3 (requiere VLC)\nrecording.warning.title=Primero establecer ruta de grabación\nrecording.warning.message=Debe establecer una ruta de acceso para almacenar las grabaciones en el panel de opciones antes de comenzar a grabar.\nrecording.no.devices.title=No se han encontrado dispositivos de grabación\nrecording.no.devices.message=Lo sentimos, no se han encontrado dispositivos de grabación compatibles. \\n\\n Verifique que su dispositivo de grabación esté conectado y habilitado.\nsave.recording.before.exit.title=Grabación sin guardar\nsave.recording.before.exit.message=¿Desea guardar la grabación antes de salir?\nrecord.audio.tooltip=Grabar audio\npause.record.tooltip=Pausar grabación\nmax.lines.per.slide=Líneas por diapositiva (aproximadamente)\npresentation.options.heading=Presentaciones\nrecordings.options.heading=Grabaciones\ncopy.song.db.default=Copiar canción para programar por omisión\nmp.button=Mission Praise\nadd.pdf.tooltip=Añadir PDF\nimportexport.options.heading=Importar / Exportar\npreview.failed=Error de vista previa\nset.loop.manually.title=No se encontró PowerPoint\nset.loop.manually.message=La presentación ha sido cerrada. Si desea utilizar la función de bucle de Quelea con PowerPoint Viewer, deberá establecer manualmente la presentación en bucle hasta que se detenga al crearla.\npresentation.changed.message=Tendrás que reiniciar Quelea para que los nuevos ajustes de Configuración sea efectiva.\npresentation.changed.label=Configuración de la presentación cambiada\npresentation.not.started.label=No se ha iniciado PowerPoint\npresentation.not.started.message=Lamentablemente, su presentación no se pudo iniciar con PowerPoint. Tal vez el archivo está dañado?\npp.already.running.label=PowerPoint ya se está ejecutando\npp.already.running.message=Se encontró otro archivo de PowerPoint. Cierre todas las archivos de PowerPoint antes de iniciar una presentación en Quelea para evitar la pérdida de datos.\npp.path.label=acediendo a PowerPoint\nuse.pp.label=Usar PowerPoint para presentaciones\nclose.all.presentations.label=Cerrar todas las presentaciones abiertas\nclose.all.presentations.message=Por favor cierre todas las ventanas abiertas de PowerPoint antes de presionar OK o automáticamente se cerraran para evitar que las señales se envíen a la ventana equivocada.\nlive.text.message=Cualquier texto escrito a continuación será visible para los usuarios de Letras móvil cuando la pantalla principal está vacía. \\ n \\nUsa una línea en blanco para empezar en una nueva diapositiva. También puede utilizar el botón de borrado (o CTRL + Retun) para restablecer en ambos extremos. Más de 200 caracteres en una diapositiva se acortarán automáticamente para el usuario.\nlive.text.title=Texto en vivo\nexit.live.text=Salir de texto en vivo\nclear.live.text=Limpiar\ndefault.translation=Predeterminado\nselect.language=Seleccionar idioma:\nsend.live.text=Texto en vivo\nconvertting.to.mp3=Convertir la grabación a MP3\nverse.tooltip=Añadir título del verso\nbridge.tooltip=Añadir título del puente\nprechorus.tooltip=Añadir título de pre-coro\ntag.tooltip=Añadir el título de la etiqueta\nadd.website=Añadir sitio web\nfocus.switcher.title=Quelea Selector de enfoque\nfocus.switcher.message=La ventana de Google se centra aquí si es necesario durante la presentación.\nfocus.pp=Cambiar el enfoque a PowerPoint\nfocus.quelea=Cambiar el enfoque a Quelea\nwebsite.dialog.title=URL de la página web\nwebsite.dialog.header=Introduce la URL de la página web\nwebsite.dialog.content=Introduzca la página web que desea mostrar:\npaste.label=Pegar\nundo.label=Deshacer\nredo.label=Rehacer\nconverting.to.mp3=Convirtiendo en formato mp3\nelevanto.button=Elevanto\nshow.extra.live.panel.toolbar.options.label=Mostrar opciones adicionales en la barra de herramientas del panel en vivo\nschedule.items.skipped.text=Algunos elementos del programa no tienen añadido sus medios multimedia, por lo que no se agregaron.\ndelete.notice.button=Borrar\nfilefilters.description.songs.worshiphim=Archivos MDB Worship Him\ntheme.copy.label=Copiar del tema\nsong.default.theme.label=Canción por defecto\nelevanto.import.heading=Elevanto\nworshiphim.import.line1=A continación selecciona la ubicación de la base de datos Worship Him (en formato mdb):\nsaved.notices=Avisos guardados\ntheme.select.label=Seleccionar tema\nbible.default.theme.label=Biblia por defecto\nhelp.menu.error.text=Lo siento, no pudimos cargar esta página. Puede buscarla manualmente Sorry: $1\nelevanto.loginsuccess.message=Puede cerrar esta ventana y retornar a Quelea\nschedule.items.skipped.header=Programar elementos omitidos\nworshiphim.button=Worship Him\nallow.item.theme.override.global=Permitir temas personalizados para sobreescribir el tema global\nsundayplus.import.line2=(El importador espera que los archivos PTF estén ubicados en la raíz del archivo zip.)\ncopy=Copiar\nsave.add.notice.button=Guardar y Añadir\nvideo.loop.tooltip=Alternar bucle encender / apagar\nelevanto.loginerror.warning=Error al iniciar sesión en Elevanto\ndb.song.preview.label.databasepreview=En panel de base de datos\ndelete.bible.confirmation=¿Está seguro de eliminar la Biblia $1?\ndefault.theme.label=Default\ndb.song.preview.label=Vista previa de canción de base de datos\ntheme.changed=Cambió el tema\ninterface.theme.label=Tema de la aplicación\ndb.song.preview.label.control=Ninguno\nbible.delete.error.heading=Error\ndb.song.preview.label.previewpane=En panel de vista previa\nbible.delete.error.text=Lo sentimos, ocurrió un error al eliminar la biblia del directorio requerido.\ntheme.changed.message=Debe reiniciar Quelea para que el cambio de tema tenga efecto.\ndark.theme.label=Oscuro\ndelete.bible.label=Eliminar la Biblia actual\nremote.control.app.name=Quelea Operación Remota\nremote.select.book=Seleccionar libro\nremote.search.tooltip=Añadir una canción o una cita bíblica.\nremote.search.server=Buscar servidor\nremote.add.go.live=Añadir y mostrar en vivo\nremote.failed.finding.server=No se ha podido encontrar el servidor remoto de Quelea. Compruebe que Quelea esté iniciado y que el URL indicado esté correcto.\nremote.navigation.settings.title=Configuraciones de navigación\nremote.enable.volume.navigation=Utilizar navegación de volumen\nremote.volume.navigation.description=Utilice los botones de volumen del celular para navegar al elemento próximo/anterior.\nremote.enable.dpad.navigation=Utilizar navegación de dpad\nremote.dpad.navigation.description=Utilice los botones de dpad (arriba/abajo) para navegar al elemento próximo/anterior. Si desea emplear un teclado o un pedal de Bluetooth (p.ej. AirTurn) este tiene que estar activado.\nremote.swipe.navigation.description=Seleccione lo que desee que suceda al pasar el dedo por la pantalla a la derecha o a la izquierda.\nremote.swipe.navigation.title=Navegación por deslizamiento\nremote.auto.progress.item=Proceder al elemento siguiente/anterior\nremote.action.clear=Ocultar texto con pantalla en blanco\nremote.action.logo=Ocultar el texto y mostrar el logo\nremote.action.black=Ocultar el texto con pantalla en negro\nremote.action.nothing=No hacer nada\nremote.action.item=Proceder al elemento siguiente/anterior\nremote.action.slide=Proceder al sección siguiente/anterior\nremote.disable.record=Desactivar el botón de grabación\nremote.about.title=Acerca de la aplicación\nremote.choose.action=Seleccione una acción para $1\nremote.select.theme=Seleccione tema\nremote.about.text.app=Esta es una aplicación sin fines lucrativos desarrollada para el uso con el programa de código abierto Quelea (http://quelea.org). Aunque ya no esté en fase beta, seguramente no esté sin errores, tampoco está del todo desarrollada. Esto es un proyecto lateral y principalmente destinado al uso privado, pero que se comparte con placer con todos los que lo puedan encontrar útil.\nremote.about.text.support=No dude en mandarme un correo electrónico a arvid @ quelea.org en caso de que tenga preguntas o experimente problemas, pero anteriormente, compruebe que Quelea esté en marcha antes que la aplicación (con los dos servidores activos), que los dos dispositivos estén conectados al mismo red y que haya introducido el URL correcto.\nremote.about.text.responsibility=No puedo garantizar una experiencia de la aplicación sin errores, por eso declino toda responsabilidad de cualquier problema que pueda ocurrir al uso en vivo.\nremote.ipv6.not.supported=Desafortunadamente no puede utilizar direcciones IPv6. Debe emplear una dirección IPv4 para el uso de esta aplicación. Para saber cómo encontrar su dirección, busque en Google 'enconrar dirección IP local' y el nombre de su sistema operativo. Introduzca la dirección IPv4/el URL abajo.\nremote.on.end.title=Suceso al inicio/finales de un punto\nremote.long.press.title=Suceso de presión prolongada\nremote.double.press.title=Suceso de presión doble"
  },
  {
    "path": "Quelea/languages/fi.lang",
    "content": "LANGUAGENAME=Suomi (FI)\ndatabase.heading=Tietokanta\nimport.heading=Tuo\nqsp.button=Quelean laulupaketti\nos.button=Opensong\nolp.button=OpenLP\nolyrics.button=OpenLyrics\nzw.button=ZionWorx\nsp.button=Sunday Plus\npco.button=Planning Center Online\npco.login.import.heading=Planning Center Onlinen sisäänkirjautuminen\npco.loginerror.title=Kirjautumisvirhe\npco.loginerror.warning=Kirjautuminen epäonnistui, tarkasta s-posti ja salasana ja yritä uudelleen\npco.import.heading=Planning Center Online\npassword.text=Salasana\nemailaddress.text=Sähköposti\nlogin.text=Kirjaudu\nss.button=Survivor Songbook\nprojector.heading=Projektori\ncontrols.heading=Hallinta\non.button=Päällä\noff.button=Pois\nswitch.input.button=Switch Input\ngeneral.options.heading=Yleiset\ndisplay.options.heading=Näytöt\nbible.options.heading=Raamattu\ncheck.for.update.label=Tarkasta päivitykset käynnistyksen yhteydessä\n1.monitor.warn.label=Varoita, jos vain yksi monitori on yhdistettynä\ncapitalise.start.line.label=Aloita jokainen rivi isolla alkukirjaimella\none.line.mode.label=Näytä vain yksi rivi jokaisesta laulun osiosta\ndisplay.song.info.label=Näytä laulun tiedot\ntext.border.thickness.label=Tekstin reunuksen paksuus\nmax.chars.line.label=Kirjaimia enintään per rivi\nadvanced.label=Lisäasetukset\nok.button=OK\noutput.text=Ulostulo\ncontrol.screen.label=Hallintanäyttö\nprojector.screen.label=Projektorin näyttö\nstage.screen.label=Lavan näyttö\ncustom.position.text=Muokattu sijainti\ndefault.bible.label=Oletus\nmax.verses.label=Jakeiden enimmäismäärä kalvoa kohden\nadd.bible.label=Lisää Raamattu...\nnone.text=Ei mikään\nnew.schedule.button=Uusi aikataulu\nopen.schedule.button=Avaa aikataulu\nsave.schedule.button=Tallenna aikataulu\nsave.as.schedule.button=Tallenna aikataulu nimellä...\nprint.schedule.button=Tulosta aikataulu\noptions.title=Asetukset\noptions.button=Asetukset\nexit.button=Lopeta\nnew.schedule.text=Uusi aikataulu\ncreate.new.schedule.text=Luo uusi aikataulu\nopen.schedule.text=Avaa aikataulu\nopen.existing.schedule.text=Avaa olemassa oleva aikataulu\nsave.schedule.text=Tallenna aikataulu\nsave.schedule.disk.text=Tallenna aikataulu levylle\nsave.as.schedule.text=Tallenna aikataulu nimellä\nsave.as.schedule.disk.text=Tallenna aikataulu eri tiedostona\nprint.schedule.text=Tulosta aikataulu\nprint.current.schedule.text=Tulosta nykyinen aikataulu\noptions.text=Asetukset\ndisplay.options.text=Näytä asetukset\nexit.text=Sammuta Quelea\nquit.quelea.text=Poistu Queleasta\nsave.schedule.tooltip=Tallenna aikataulu\nprint.schedule.tooltip=Tulosta aikataulu\nlibrary.image.heading=Kuvat\nlibrary.songs.heading=Laulut\nlibrary.bible.heading=Raamatut\nbible.heading=Raamatut\nlibrary.song.search=Etsi\nclear.search.box=Tyhjennä\nadd.song.text=Lisää laulu tietokantaan\nremove.song.text=Poista laulu tietokannasta\nlibrary.add.to.schedule.text=Lisää aikatauluun\nlibrary.copy.to.schedule.text=Kopioi aikatauluun\nlibrary.edit.song.text=Muokkaa laulua\nlibrary.remove.song.text=Poista laulu\nlibrary.print.song.text=Tulosta laulu\nadd.to.schedule.text=Lisää aikatauluun\norder.service.heading=Jumalanpalveluksen järjestys\nmove.down.schedule.tooltip=Siirrä alemmas aikataulussa\nmove.up.schedule.tooltip=Siirrä ylemmäs aikataulussa\nremove.song.schedule.tooltip=Poista aikataulusta\nadjust.theme.tooltip=Säädä teemaa\nedit.song.text=Muokkaa laulua\nnew.theme.text=Uusi teema...\ntheme.select.text=Valitse teema:\ndefault.theme.name=Oletus\ndefault.theme.text=Oletusteema\nremove.theme.tooltip=Poista teema\nedit.theme.tooltip=Muokkaa teemaa\nedit.theme.heading=Muokkaa teemaa\npreview.heading=Esikatselu\nlive.heading=Live\ngo.live.text=Näytä\nblack.screen.tooltip=Musta ruutu\nclear.text.tooltip=Puhdista näyttö\nhide.display.output.tooltip=Piilota tuloste\nschedule.heading=Aikataulu\nadd.song.button=Lisää laulu\nedit.song.button=Muokkaa laulua\nremove.item.button=Poista laulu\nadd.multimedia.heading=Lisää multimedia\nadd.presentation.button=Lisää näyttöesitys\nadd.video.button=Lisää video\nadd.youtube.button=Lisää Youtube-video\nadd.live.video.button=Lisää suora lähetys\nadd.dvd.button=Lisää DVD\nadd.audio.button=Ääni\nadd.audio.tooltip=Lisää ääni\nshare.heading=Jaa\nemail.button=Lähetä aikataulu sähköpostilla\nmanage.notices.button=Hallinnoi ilmoituksia...\nnotices.heading=Ilmoitukset\nnew.notice.text=Uusi ilmoitus\nedit.notice.text=Muokkaa ilmoituksta\nremove.notice.text=Poista ilmoitus\ndone.text=Valmis\nnew.notice.heading=Uusi ilmoitus\nnotice.text=Ilmoitus\nnotice.times.text=Näyttöaika\nnotice.infinite.question=Ikuisesti?\nadd.notice.button=Lisää ilmoitus\nedit.notice.button=Muokkaa ilmoitusta\nyes.text=Kyllä\nno.text=Ei\ncancel.text=Peruuta\nnew.song.button=Uusi laulu\ndelete.song.button=Poista laulu\nsongs.heading=Laulut\ntags.button=Hallinnoi tunnisteita...\nsource.button=The Source\neasyslides.button=EasySlides\nfreeworship.button=Freeworship\neasyworship.button=EasyWorship 2009\nplainText.button=Tekstitiedosto\nkingsway.button=Kingsway Online\nsof.button=Songs of Fellowship\nexport.heading=Vie\nfilter.tag=Rajaa tunnisteita\ntags.colon.label=Tunnisteet:\nimport.button=Tuo\nimport.all.button=Tuo kaikki\nimport.selection.button=Tuo valitut\nrefresh.button=Päivitä\nclick.select.file.text=Valitse tiedosto napsauttamalla\ncheck.duplicates.text=Tarkista kaksoiskappaleet\nedit.song.title=Muokkaa laulua\nbasic.information.heading=Perustiedot\ndetailed.info.heading=Yksityiskohtaiset tiedot\ntheme.heading=Teema\ntitle.label=Otsikko\nauthor.label=Tekijä\nrun.spellcheck.label=Oikoluku\nfix.apos.label=Siisti heittomerkit\ntrim.lines.tooltip=Siisti rivit\ntranspose.tooltip=Transponoi...\ncancel.button=Peruuta\nccli.number.label=CCLI-numero\ncopyright.label=Copyright\nyear.label=Vuosi\npublisher.label=Julkaisija\ntags.label=Tunnisteet\ntype.tag.name.here.text=<Kirjoita tunnisteet tänne>\nkey.label=Sävellaji\ncapo.label=Capo\nnotes.label=Muistiinpanot\nfont.theme.label=Fontti\nchoose.color.text=Valitse väri...\nbackground.text=Tausta\nbackground.theme.label=Taustan teema\ncolor.theme.label=Väri\nimage.theme.label=Kuva\nselect.color.title=Valitse väri\nselect.color.button=Valitse väri\nnew.song.title=Uusi laulu\ntype.lyrics.here.text=Kirjoita sanat tänne\nrtf.files.description=RTF-tiedostot\nsng.files.description=SNG-tiedostot (SongBeamer)\nvideopsalm.import.line1=Tämä tuo VideoPsalmin kirjaston JSON-tiedostosta.\nfreeworship.import.line1=Tämä tuo FreeWorshipin laulut XML-tiedostosta.\nsof.import.line1=Tämä tuo SoF:n kirjaston RTF-tiedostosta.\nplaintext.import.line1=Tämä tuo lauluja hakemistosta, joka sisältää laulut yksittäisinä tekstitiedostoina.\nkingsway.import.line1=Tämä tuo Kingswayn laulukirjaston verkosta.\nsongpro.import.line1=Tämä tuo lauluja SongPro SDB -tietokannasta.\nkingsway.import.line2=Tässä voi kestää kauan (jopa tunteja!). Olethan kärsivällinen, ja jätä Quelea päälle lataamaan lauluja!\neasyslides.import.line1=Tämä tuo lauluja EasySlidesin XML-tiedostosta.\neasyworship.import.line1=Tämä tuo lauluja Easyworship Songs.MB -tiedostosta.\nmissionpraise.import.line1=Tämä tuo lauluja Mission Praise:n RTF-tiedostoista.\nopenlyrics.import.line1=Valitse Openlyricsin zip-paketin sijainti.\nqsp.import.line1=Valitse Quelean laulupaketi sijainti.\nos.import.line1=Valitse Opensongin tietokannan sijainti.\nzw.import.line1=Valitse ZionWorxin \"MainTable.dat\"-tiedoston sijainti.\nzw.import.line2=Yleensä se on \"C:\\\\ProgramData\\\\ZionWorx\\\\2.6\\\\Data\".\nolp.import.line1=Valitse OpenLP:n tietokannan sijainti.\nsundayplus.import.line1=Valitse Sunday Plussan tietokannan sijainti.\nsundayplus.import.line2=(Tuontitoiminto olettaa, että PTF-tiedostot ovat zip-paketin juuressa.)\nsource.import.line1=Valitse ymns-hakemiston sijanti CD-levyltä.\nsurvivor.import.line1=Valitse Survivor Songbook PDF:n sijainti.\nsurvivor.import.line2=Tämän pitää olla acetates.pdf-tiedosto, ei kitaran soinnut tai nuotit.\nimport.error.message=Pahoittelen, laulujen tuomisessa tapahtui virhe. Kysy rohkeasti neuvoa Quelean keskustelufoorumeilta: https://quelea.discourse.group\nemail.error.title=S-posti-virhe\nemail.error.text=Sähköpostiohjelman avaamisessa tapahtui virhe. Tarkasta, että sinulla on sähköpostiohjelma asennettuna, ja että se on asetettu avaamaan eml-tiedostoja. Muussa tapauksessa sinun täytyy lähettää s-posti itse.\nemail.text=Hei! Quelen aikataulu on liitteenä. Avaa liite Quelealla, ja kaikkien merkintöjen pitäisi näkyä ohjelmassa.\nselect.image.button=Valitse kuva\nimage.files.description=Kuvatiedostot\npng.files.description=PNG-kuvatiedostot\ntools.label=Työkalut\nselect.songs.title=Valitse lauluja\ncheck.uncheck.all.text=Valitse kaikki / poista valinnat\ndelete.theme.confirm.title=Varmista poisto\ndelete.theme.question=Haluatko varmasti poistaa tämän teeman?\ntoo.many.verses.error=Pahoittelen, näin monta jaetta ei voida näyttää... Yritä pienempää määrää.\none.monitor.warning=Näyttää siltä, että sinulla on vain yksi näyttö asennettuna. Tästä ei ole haittaa, jos käytät Queleaa vain aikataulujen valmisteluun. Jos kuitenkin haluat käyttää Queleaa sanojen esittämiseen, niin tarvitset vähintään kaksi näyttöä.\none.monitor.title=Vain yksi näyttö\nno.dvd.heading=Levyä ei löytynyt\nno.dvd.error=Aseta kelvollinen DVD tai Blu-ray.\nadding.presentation.status=Tuodaan näyttöesitystä...\nadding.presentation.error.message=Näyttöesityksen tuomisessa tapahtui virhe. Kenties tiedosto on rikki?\nadding.presentation.error.title=Näyttöesityksen tuominen epäonnistui\nimporting.status=Tuodaan...\nname.label=Nimi\nsimilar.colors.text=Olet valinnut hyvin samankaltaiset värit tekstille ja taustalle, jolloin tekstiä voi olla vaikea erottaa. Suosittelen valitsemaan paremmat värit!\nwarning.label=Varoitus\nfile.menu=Tiedosto\ntools.menu=Työkalut\nschedule.menu=Aikataulu\ndatabase.menu=Tietokanta\nprojector.menu=Projektori\nnew.theme.title=Uusi teema\nadd.theme.label=Lisää teema\ntheme.name.label=Teeman nimi\nhelp.menu=Apua\nhelp.menu.website=Verkkosivu\nhelp.menu.discussion=Tuki / keskustelu (kysy kysymykset täällä)\nhelp.menu.feedback=Palaute\nhelp.menu.download=Lataa\nhelp.menu.update=Tarkasta päivitykset\nhelp.menu.about=Tietoja...\nhelp.menu.error.title=Virhe\nhelp.about.title=Tietoja\nhelp.about.version=Versio\nhelp.about.close=Sulje\nhelp.about.line1=Quelea on julkaistu GPL-lisenssillä (Versio 3)\nhelp.about.line2=Se on nyt ja ikuisesti ilmainen, sekä avointa lähdekoodia.\nnew.schedule.tooltip=Uusi aikataulu\nopen.schedule.tooltip=Avaa aikataulu\nnew.song.tooltip=Uusi laulu\nadd.presentation.tooltip=Lisää näyttöesitys\nadd.dvd.tooltip=Lisää DVD\nadd.video.tooltip=Lisää video\nadd.multimedia.tooltip=Lisää multimedia\nmanage.tags.tooltip=Hallinnoi tunnisteita\nmanage.notices.tooltip=Hallinnoi ilmoituksia\nalready.running.error=Quelea näyttää jo olevan käynnissä.\\nTarkasta, että olet sulkenut muut instassit ennen kuin yrität käynnistää Quelean.\nalready.running.title=Quelea on jo päällä\nerror.schedule.message=Aikataulun avaamisessa tapahtui virhe. Kenties tiedosto on rikki, tai sitten se ei ole Quelean aikataulutiedosto.\nerror.schedule.title=Aikataulun avaaminen epäonnistui\nprint.chords.question=Tulosta myös soinnut kun tulostat lauluja?\nprint.chords.export.question=Sisällytä soinnut kun viet lauluja?\nprinting.options.text=Tulosta laulu\nspace.key=välilyönti\nupdating.db=Päivitetään tietokantaa\nerror.updating.song.text=Tietokannan päivittämisessä tapahtui virhe. Tietokanta voi olla rikki.\nerror.text=Virhe\nquick.shortcut.description=Peru Esc:llä, shift+enter tallentaa\nsave.before.exit.text=Aikataulua on muokattu. Haluatko tallentaa sen ennen kuin lopetat?\nsave.before.exit.title=Tallentamaton aikataulu\nno.chords.message=Tässä laulussa ei ole sointuja transpondoitavaksi.\nno.chords.title=Ei sointuja\nerror.checking.updates.title=Päivitysten tarkastaminen epäonnistui\nerror.checking.updates.text=Pahoittelen, päivitysten tarkastamisessa tapahtui virhe. Tarkasta internet-yhteytesi ja yritä uudelleen.\nnewer.version.available=Queleasta on saatavana uudempi versio.\nno.newer.version.available=Sinulla on käytössäsi uusin versio.\nvisit.webpage.now=Mene verkkosivuilla ja lataa uusin versio nyt?\ndownload.manual.update=Voit ladata sen täältä\nnewer.version.available.title=Päivitys saatavana.\nno.newer.version.available.title=Käytössä uusin versio!\ncheck.kingsway.start=Olet jo tuonut muutamia kappaleita Kingswayn kirjastosta. Haluatko jatkaa tuontia siitä mihin jäit?\ncheck.kingsway.start.title=Jo tuodut kappaleet\nimport.no.songs.title=Lauluja ei löytynyt\nimport.no.songs.text=Yhtään laulua ei löytynyt tuotavaksi.\nstage.options.heading=Lavan näkymä\nstage.show.chords=Näytä soinnut?\nstage.line.alignment=Tekstin tasaus\nstage.font.selection=Fontti\nstage.background.colour=Taustan väri\nstage.lyrics.colour=Sanojen väri\nstage.chord.colour=Sointujen väri\nleft=Vasemmalle\ncentre=Keskelle\nright=Oikealle\nconfirm.label=Oletko varma?\nschedule.clear.text=Aikataulua on muokattu. Haluatko jatkaa ilman tallentamista?\npart=osa\nhelp.menu.facebook=Facebook-sivut\nvideo.error=Videokirjastoa ei voitu alustaa - Video ei toimi. Kysy rohkeasti neuvoa keskustelupalstalta (ks. apua-valikko) ongelman ratkaisemiseksi.\nvideo.error.title=Videovirhe\ntext.shadow.label=Näytä tekstin varjo\nadding.images=Lisätään kuvia...\nsetup.oo.failed.text=OpenOfficen käyttäminen näyttöesityksiin epäonnistui. Tarkasta, että sinulla on OpenOffice asennettuna, ja sen polku on asetuksissa oikein.\nsetup.oo.failed.title=OpenOfficen alustus epäonnistui\nuse.oo.label=Käytä OpenOfficea näyttöesityksiin\noo.path=OpenOfficen polku\nbrowse=Selaa...\nloading.text=Ladataan\nbuilding.bible.index=Ladataan Raamattuja\nbible.search.title=Raamattuhaku\ninitial.search.text=<Kirjoita etsiäksesi>\nview.bible.button=Näytä Raamatut...\nsearch.bible.button=Etsi Raamatuista...\nall.text=Kaikki\nbible.browser.title=Selaa Raamattuja\nopen.in.browser=Avaa selaimessa...\nkingsway.button.all=Kaikki laulut\nkingsway.button.one=Yksi laulu\nsong.id.selector=Valitse laulun ID\nbible.copy.error.text=Pahoittelen. Kopioitaessa Raamattua vaadittuun hakemistoon tapahtui virhe.\nbible.copy.error.heading=Virhe\nselect.key.label=Valitse uusi sävellaji:\ntranspose.label=Transpondoi\nalready.exists.overwrite.label=on jo olemassa. Ylikirjoita?\noverwrite.text=Ylikirjoita\ncant.save.schedule.title=Virhe tallennettaessa aikataulua\ncant.save.schedule.text=Pahoittelen, tapahtui virhe, ja aikataulua ei voitu tallentaa.\nerror.removing.song.db=Tapahtui virhe, kun laulua poistettiin tietokannasta.\nconfirm.remove.text=Vahvista poisto\nconfirm.remove.question=Haluatko varmasti poistaa laulun '$1' tietokannasta? Tätä ei voi enää perua.\nquick.edit.text=Pikamuokkaus\nlibrary.preview.song.text=Esikatsele laulua\nvideo.error.unsupported=Pahoittelen, valitsemaasi videota ei tueta.\nvideo.error.general=Pahoittelen, valitsemasi videon kanssa oli ongelmia.\nvideo.theme.label=Video\nselect.video.button=Valitse video\nrefresh.images.panel=Päivitä kuvat\nadd.images.panel=Lisää kuvia\nselect.folder.images.panel=Valitse kansio...\ntext.position.label=Tekstin sijainti\nimage.folder=Kuvahakemisto:\nquick.insert.text=Pikalisäys\nconfirm.overwrite.title=Tiedosto on jo olemassa!\nconfirm.overwrite.text=Tiedosto on jo olemassa. Haluatko korvata sen vai jatkaa ilman kopiointia?\nfile.rename.button=Nimeä uudelleen\nfile.replace.button=Korvaa\nfile.continue.button=Jatka\nfile.rename.dialog.title=Nimeä uudelleen\nfile.rename.dialog.text=Kirjoita uuden tiedoston nimi:\ninterface.language.label=Käyttöliittymän kieli:\nlanguage.changed=Kieli vaihdettiin\nlanguage.changed.message=Quelea täytyy käynnistää uudelleen jotta muutokset tulevat voimaan.\ndebug.location=Debug-lokin sijainti\ntop.text.position=Ylös\nmiddle.text.position=Keskelle\nbottom.text.position=Alas\nshadow.color=Varjon väri\nshadow.x=Varjon X-siirros\nshadow.y=Varjon Y-siirros\nselect.imported.songs.line1=Seuraavat laulut tuotiin.\nselect.imported.songs.line2=Valitse laulut jotka haluat lisätä tietokantaan ja napsauta \"Lisää\".\nselect.imported.songs.line3=Laulut, jotka Quelean mielestä ovat jo olemassa on jätetty valitsematta.\nadd.text=Lisää\nadd.to.database.question=Lisää tietokantaan?\nselect.export.songs.line1=Seuraavat laulut ovat tietokannassa.\nselect.export.songs.line2=Valitse laulut jotka haluat viedä ja napsauta \"Lisää\".\nadd.to.songpack.question=Vie laulu?\nprojection.window.title=Projektio-ikkuna\nclear.live.on.remove.schedule=Poista nimike myös näytöltä, kun se poistetaan aikataulusta.\nspelling.complete.text=Oikoluku on valmis.\ncomplete.title=Valmis\nspelling.check.title=Oikoluku\ncorrect.text=Korjaa\nignore.text=Älä huomioi\nspelling.errors.in.doc.label=Dokumentissa on kirjoitusvirheitä. Avaa oikolukuikkuna painamalla \"F7\".\nremove.image.text=Poista kuva\ndelete.image.title=Poista kuva\ndelete.image.confirmation=Haluatko varmasti poistaa kuvan kirjastosta? Tätä ei voi enää perua.\nnotice.expired.title=Ilmoitus vanhentui\nnotice.expired.text=Muokkaamasi ilmoitus ehti vanhentua. Haluatko lisätä sen uudelleen?\ndictionary.language.text=Sanakirjan kieli\nconfirm.entry.exit.text=Haluatko tallentaa lauluun tekemäsi muutokset?\nconfirm.entry.exit.title=Tallenna laulu?\nsave.text=Tallenna\ndont.save.text=Älä tallenna\nvlc.warning.title=VLC:tä ei löytynyt\nvlc.warning.message=Quelea ei löytänyt VLC:tä. Ilman sitä Quelea ei voi toistaa videoita tai ääntä, eikä käyttää videotaustoja. Haluatko ladata VLC:n? Kun olet asentanut VLC:n niin sinun pitää käynnistää Quelea uudelleen.\nvlc.version.message=Käyttämäsi VLC:n versio on liian vanha. Lataa uusin versio VLC:stä jotta voit toistaa videoita, ääntä ja videotaustoja. Haluatko ladata sen nyt? Kun olet asentanut VLC:n niin sinun pitää käynnistää Quelea uudelleen.\ncontinue.without.video=Jatka ilman VLC:tä\ndownload.vlc=Lataa VLC\nstartup.error.title=Käynnistysvirhe\nstartup.error.text=Pahoittelen, jostain syystä Quelea ei vaan käynnisty. Jos haluat auttaa sen käyntiin saamisessa, niin lähetä s-postia osoitteeseen support@quelea.org ja liitä mukaan debug-loki ($1).\\n\\nVaihtoehtoisesti voit kysyä apua Quelean foorumilta (https://quelea.discourse.group).\nfilefilters.description.survivor.songbook=Survivor acetate -tiedostot\nfilefilters.description.xml.bibles=XML Raamatut\nfilefilters.description.xml.easyslide=XML Easyslide -tiedostot\nfilefilters.description.xml.files=XML-tiedostot\nfilefilters.description.video.files=Videotiedostot\nfilefilters.description.pmsong.files=Presentation Manager Songs\nfilefilters.description.vs.files=VideoPsalmin tietokannat\nfilefilters.description.audio.files=Äänitiedostot\nfilefilters.description.quelea.schedules=Quelean aikataulut\nfilefilters.description.powerpoint.presentations=Powerpoint-esitykset\nfilefilters.description.plain.text.song=Tekstimuotoinen laulu\nfilefilters.description.maintable.dat=ZionWorx MainTable -tietokantatiedosto\nfilefilters.description.multimedia.files=Multimedia tiedostot\nbible.search.results.found=osumaa löytyi\nbible.search.result.found=osuma löytyi\nbible.search.keep.typing=Jatka kirjoittamista...\nuniform.font.size.label=Käytä samaa fontin kokoa kaikilla kalvoilla\nmax.font.size.label=Suurin sallittu fontin koko\nthumbnail.size.label=Pikkukuvan koko\nadditional.line.spacing.label=Ylimääräinen riviväli\nlogo.screen.tooltip=Vasen napsautus: Näytä kuva\\nOikea napsautus: Aseta kuva\nchange.graphics.label=Muuta grafiikoita\nfont.colour.label=Fontin väri\nbackground.colour.label=Taustan väri\nmobile.lyrics.heading=Siirrettävät sanat\nuse.mobile.lyrics.label=Käytä siirrettäviä sanoja (Mobile Lyrics)\nport.number.label=Portti\nnavigate.mob.url.label=Sanojen URL-osoite\nserver.changed.label=Palvelimen asetuksia muutettiin\nserver.changed.message=Sinun täytyy käynnistää Quelea uudelleen jotta muutokset tulevat voimaan.\nfilefilters.description.zip.files=Zip-tiedostot\nfilefilters.description.sqlite.files=SQLite-tiedostot\nloop.label=Toisto\nseconds.label=sekuntia\nchosen.fonts.explanation=Quelea näyttää vain muutaman fontin teemaikkunassa. Raahaa fontit joita haluat käyttää vasemmasta paneelista oikeaan paneeliin. Raahaa fontit joita et halua käyttää oikeasta paneelista vasempaan paneeliin.\nignored.fonts.label=Ohitetut fontit\nchosen.fonts.label=Valitut fontit\nfont.selection.dialog.title=Fontin valinta\nvideo.hue.label=Värisävy\nhover.for.position.label=Aseta tekstin sijainti napsauttamalla haluttua aluetta kalvosta\ntest.patterns.text=Testikuviot\ntest.patterns.explanation=Testikuvioilla voit säätää näytön terävyyden ja väritasapainon kohdilleen. Näytä testikuva päänäytöllä napsauttamalla sitä.\nyoutube.url.label=Youtube-videon URL\nno.tdb.heading=TurboDB Data Exchangeä ei löytynyt\nno.tdb.message=Teknisistä syistä johtuen sinun pitää ladata TurboDB data exchange -sovellus (https\\://www.dataweb.de/en/support/downloads.html) ennen kuin voit tuoda lauluja ZionWorx-tietokannasta.\\nKun olet ladannut sen, niin pura paketin sisältö kohteeseen $1.\\n\\nJos kohtaat ongelmia, niin kysy rohkeasti apua foorumilla (https://quelea.discourse.group).\nno.pdb.heading=Paradox JDBC -ajuria ei löytynyt\nno.pdb.message=Teknisistä syistä johtuen sinun pitää ladata Paradox JDBC -ajuri ennen kuin voit tuota lauluja Easyworship:stä:\\n\\n1. Mene osoitteeseen http://www.hxtt.com/download.jsp then ja rekisteröi itsellesi ilmainen tunnus.\\n2. Lataa \"DBF JDBC 4.1 Package for JDK1.7.X and JDK1.8.X\" -tiedosto. Tiedoston nimen pitäisi olla Paradox_JDBC41.jar.\\n3. Kopioi Paradox_JDBC41.jar kohteeseen $1.\\n\\nJos kohtaat ongelmia, niin kysy rohkeasti neuvoa Quelean foorumeilla (https://quelea.discourse.group). Quelea yrittää silti tuoda lauluja Easyworshipistä ilman tätä tiedostoakin, mutta lopputulos saattaa olla epäluotettava.\nshow.verse.numbers=Näytä jakeiden numerot\nadd.song.hint.text=Ei lauluja? Ei hätää. Napsauta \"Uusi laulu\" -nappia ja voit lisätä uuden laulun!\nadd.song.hint.search.text=Yksikään laulu ei vastannut hakuasi. Jos haluat lisätä laulun, niin napsauta \"Uusi laulu\" -nappia vasemmalla.\nfilefilters.description.songs.mb=Easyworship Songs.MB -tietokanta\nfilefilters.description.songs.missionpraise=Mission Praise RTF -tiedostot\ntranslate.tooltip=Laulun käännökset\nclose.button=Sulje\nadd.translation.button=Lisää käännös...\nenter.translation.name.label=Mille kielelle haluat kääntää tämän laulun?\ntranslate.dialog.title=Käännösmanageri\nconfirm.remove.translation.title=Poista käännös?\nconfirm.remove.translation.text=Haluatko varmasti poistaa tämän käännökset?\ndefault.translation.label=Oletuskäännös\noverwrite.lyrics.title=Ylikirjoita vanhat sanat?\noverwrite.lyrics.text=Käänsimme sanat sinulle automaattisesti - Haluatko käyttää niitä?\\nNykyinen käännöksesi ylikirjoitetaan\nauto.translate.label=Yritä kääntää sanat automaattisesti\nchoose.translations.text=Valitse käännökset\nselect.translation.label=Valitse käännös jota haluat käyttää pääsanoituksen rinnalla:\ntranslate.heading=Käännökset\nremote.logo.text=Logo\nremote.black.text=Musta\nremote.clear.text=Tyhjä\nremote.next.text=Seuraava kalvo\nremote.prev.text=Edellinen kalvo\nremote.nextitem.text=Seuraava nimike\nremote.previtem.text=Edellinen nimike\nserver.settings.heading=Palvelimen asetukset\nuse.remote.control.label=Käytä kaukosäädintä\nnavigate.remote.control.label=Kaukosäätimen URL\nremote.empty.lyrics=Sanat näytetään täällä\nremote.control.password=Kaukosäätimen salasana (pienet ja isot kirjaimet merkitsevät)\nremote.logout.text=Kirjaudu ulos\nremote.login.text=Sinun pitää kirjautua sisään\nremote.submit.text=Kirjaudu sisään\nmore.font.options.label=Lisää fontin asetuksia\nmore.fonts.label=Lisää fontteja\ntranslation.font.text=Käännöksen fontti\nshadow.text=Varjo\nsaving.schedule=Tallennetaan aikataulua...\nsmall.text.position.label=Laulun ja Raamatun tietojen sijainti\nbible.passage.selector.prompt=[Luku]:[Jae]-[Jae]\ntheme.button.tooltip=Aseta aikataululle yleinen teema\ncurrently.displaying.text=Nyt näytetään\nplay=Soita\npause=Tauko\nshow.small.song.text.label=Näytä laulun tiedot pienellä\nshow.small.bible.text.label=Näytä Raamatun kohdan tiedot pienellä\nuse.bible.verses=Jaa Raamatun kohdat\nmax.items.per.slide=% enintään per kalvo\nverses=Jakeita\nwords=Sanoja\nedit.bible.passage.text=Muokkaa Raamatun kohdan teemaa\nnotice.colour.text=Ilmoituksen väri\nnotice.font.text=Ilmoituksen fontti\nnotice.speed.text=Ilmoituksen nopeus\nnotice.background.colour.text=Ilmoituksen taustaväri\nnotice.position.text=Ilmoituksen sijainti\nnotice.font.size=Ilmoituksen fontin koko\nnotice.options.heading=Ilmoitukset\nexport.pdf.button=Tallenna PDF:nä\npdf.button=PDF\nexport.schedule.pdf.button=Tallenna jumalanpalvelus PDF:nä\nfilefilters.description.pdf.files=PDF-tiedostot\nnot.started.label=Ei aloitettu\nquelea.schedule.text=Quelean aikataulu\nuser.options.options=Käyttäjän asetukset\ntext.options.options=Tekstin asetukset\nstretch.video.label=Venytä videota\nexport.schedule.songs.pdf.button=Tallenna laulut PDF:nä\nexporting.label=Vienti\nuse.shadow.label=Käytä varjoa?\nshadow.color.label=Varjon väri\nshadow.offset.label=Varjon sijainti\nshadow.radius.label=Varjon säde\nshadow.spread.label=Varjon leviäminen\nhelp.menu.manual=Manuaali\nedit.theme.text=Muokkaa teemaa\nchange.bible.version.text=Vaihda käännöstä\nswitch.to.text=Vaihda\nsave.qr.code.text=Tallenna QR-koodi\nnonbreak.tooltip=Lisää sitova rivi\ncopying.video.please.wait.text=Malta hetki - kopioidaan videotiedostoa...\ntranslating.text.please.wait.text=Malta hetki - haetaan käännöksiä...\nfilefilters.description.usr.files=USR (SongSelect) -tiedostot\nsongselect.import.line1=Valitse SongSelect-tiedosto.\npm.import.line1=Valitse Presentation Managerin laulut jotka haluat tuoda.\nsmi.import.line1=Valitse Screen Monkeyn laulut jotka haluat tuoda.\nsongselect.button=SongSelect\nvideopsalm.button=VideoPsalm\npm.button=Presentation Manager\nsm.button=Screen Monkey\ntranslation.export.heading=Käännösten vienti\ninclude.translations.question=Sisällytä käännökset PDF-tiedostoon.\nslide.text=Kalvo\nautoplay.vid.label=Toista videot automaattisesti live-paneelissa\nadvance.on.live.label=Siirrä aikataulua eteenpäin live-ikkunassa\ndelete.translation.title=Poista käännös\ndelete.translation.text=Poista $1 käännös?\nhelp.menu.wiki=Wiki\npreview.on.image.change.label=Esikatsele nimikettä kun kuva vaihtuu\nadd.timer.tooltip=Lisää laskuri\nfilefilters.description.image.video.files=Video- ja kuvatiedostot\ntimer.duration.label=Laskurin kesto\ntimer.file.label=Taustakuvan sijainti\nduration.tooltip.label=#:## tai ##m##s\ntranslation.choice.title=Käännöksen valinta\nfont.options.title=Fontin asetukset\nnew.translation.title=Uusi käännös\nadd.timer.title=Lisää laskuri\nuntitled.theme.text=Nimeämätön teema\ntimer.text.label=Ylimääräinen teksti\ntimer.text.prompt=Laita # laskurin kohdalle. Esimerkiksi \"Jumalanpalvelus alkaa # kuluttua\" näyttää \"Jumalanpalvelus alkaa 05:00 kuluttua\"\ncountdown.label=Laskuri\ntimer.theme.label=Teeman asetukset\ntimer.theme.button=Vaihda teema\nembed.media.in.schedule=Sisällytä mediat aikataulutiedostoon\nmediashout.import.line1=Valitse MediaShout db:n sijainti (viedään tekstimuotoisena):\nsongbeamer.import.line1=Valitse SNG-tiedostojen sijainti, jotka haluat tuoda:\nfilefilters.description.txt.files=.txt-tiedostot\nmediashout.button=MediaShout\nsongbeamer.button=SongBeamer\nclear.stage.view=Tyhjennä lavan näyttö päänäytön kanssa.\ntop=Ylös\nbottom=Alas\nepicworship.import.line1=Tämä tuo lauluja EpicWorship Song Pack (.epc) -tiedostosta.\nfilefilters.description.epc=EpicWorship .epc -laulupaketti\nepicworship.button=EpicWorship\nadd.videos.panel=Lisää videoita\nremove.video.text=Poista video\ndelete.video.title=Poista video\ndelete.video.confirmation=Valuatko varmasti poistaa tämän videon kirjastosta? Tätä ei voi enää perua.\nlibrary.video.heading=Videot\ntimer.files.description=Laskurit\nadd.timers.panel=Lisää laskuri\nlibrary.timer.heading=Laskurit\ntimer.save.label=Tallenna laskuri?\ntimer.name.label=Nimi\nedit.timer.text=Muokkaa laskuria\nremove.timer.text=Poista laskuri\nconfirm.remove.timer=Haluatko varmasti poistaa laskurin $1 luettelosta? Tätä ei voi enää perua.\nkingsway.button.range=Arvoalue\nkingsway.range.import.text=Kuinka monta kappaletta ladataan Kingswayn sivuilta?\\nEnimmäisarvo on jossain 3600:n hujakoilla.\nkingsway.range.import.heading=Tuontirajat Kingswayn lauluille\nsdb.files.description=Songpro database -tiedostot\nsongpro.button=SongPro\noverflow.song.label=Jatka nykyistä laulua seuraavan laulun puolelle\ninvalid.search=Epäkelpo haku\nrcs.add.failed=Lisäys epäonnistui\nrcs.add.success=Lisäys onnistui\nrcs.add.song=Lisää laulu aikatauluun\nrcs.add.bible.error=Lisättäessä kohtaa $1 aikatauluun tapahtui virhe\nrcs.submit=Lähetä\nrcs.song.search=Laulu\nrcs.bible.search=Raamattu\nrcs.search=Etsi ja lisää\nshow.video.library.panel=Näytä video-välilehti (vaatii uudelleen käynnistyksen)\nuse.24h.clock=Käytä 24:n tunnin kelloa\nsplit.bible.verses=Pidä jakeet kokonaisina eri kalvojen välillä\nno.verse.title=Yhtään jaetta ei löytynyt\nno.verse.message=Yhtä tai useampaa haettua kohtaa ei löytynyt, mutta yritettiin kuitenkin jatkaa ilman niitä.\nchorus.tooltip=Lisää kertosäkeen otsikko\nrecordings.path=Äänitteiden polku\ndownload.path=Polku latauksille\nconvert.mp3=Muuta äänitteet automaattisesti mp3-tiedostoiksi (Vaatii VLC:n)\nrecording.warning.title=Aseta ensin polku tallennuksille\nrecording.warning.message=Ennen kuin voit aloittaa tallentamisen sinun täytyy määrittää polku minne äänitykset tallennetaan.\nrecording.no.devices.title=Yhtään äänityslaitetta ei löytynyt\nrecording.no.devices.message=Pahoittelen. Yhtään sopivaa äänityslaitetta ei löytynyt.\\nTarkasta, että laite on kytketty oikein ja se on päällä.\nsave.recording.before.exit.title=Tallentamattomat äänitykset\nsave.recording.before.exit.message=Haluatko tallentaa äänityksen ennen kuin lopetat?\nrecord.audio.tooltip=Tallenna ääntä\npause.record.tooltip=Keskeytä tallennus\nmax.lines.per.slide=Riviä per kalvo (likimain)\npresentation.options.heading=Näyttöesitykset\nrecordings.options.heading=Äänitykset\ncopy.song.db.default=Oletuksena kopioi laulu aikatauluun\nimportexport.options.heading=Tuonti ja vienti\nmp.button=Mission Praise\nadd.pdf.tooltip=Lisää PDF\npreview.failed=Esikatselu epäonnistui\nset.loop.manually.title=PowerPointtia ei löytynyt\nset.loop.manually.message=Näyttöesitys on suljettu. Jos haluat käyttää Quelean automaattista toistoa PowerPoint Viewerin kanssa, niin sinun pitää laittaa esityksen asetuksista automaattinen toisto päälle kun luot esityksen.\npresentation.changed.message=Sinun täytyy käynnistää Quelea uudelleen jotta näyttöesityksen asetukset tulevat voimaan.\npresentation.changed.label=Näyttöesityksen asetuksia muutettiin\npresentation.not.started.label=PowerPoint ei ole käynnistynyt\npresentation.not.started.message=Harmillisesti näyttöesitystäsi ei voitu avata PowerPointilla. Kenties tiedosto on rikki?\npp.already.running.label=PowerPoint on jo päällä\npp.already.running.message=PowerPointista löytyi toinen instassi. Sulje kaikki PowerPointit ennen kuin avaat esityksen Quelealla. Täten vältetään tiedon häviäminen.\npp.path.label=Polku PowerPointtiin\nuse.pp.label=Käytä PowerPointtia näyttöesityksiin\nclose.all.presentations.label=Sulje kaikki avoimet näyttöesitykset\nclose.all.presentations.message=Sulje kaikki PowerPoint-ikkunat ennen kuin painat OK tai ne suljetaan automaattisesti. Tällä tavalla vältetään signaalien lähettäminen väärälle ikkunalle.\nlive.text.message=Alla oleva teksti näytetään kaikille siirrettävien tekstien käyttäjille aina kun päänäyttö on tyhjä.\\n\\nKäytä tyhjää riviä aloittaaksesi uuden kalvon. Voit myös käyttää tyhjennysnappia (tai CTRL + Return) nollataksesi molemmat päät. Jos kalvolla on yli 200 merkkiä, niin ne lyhennetään käyttäjälle automaattisesti.\nlive.text.title=Live-teksti\nexit.live.text=Lopeta live-teksti\nclear.live.text=Tyhjennä\ndefault.translation=Oletus\nselect.language=Valitse kieli:\nsend.live.text=Live-teksti\nconverting.to.mp3=Muuta äänitteet mp3-muotoon\nverse.tooltip=Lisää säkeistön otsikko\nbridge.tooltip=Lisää Bridgen otsikko\nprechorus.tooltip=Lisää esi-kertosäkeen otsikko\ntag.tooltip=Lisää nimikkeen otsikko\nadd.website=Lisää verkkosivu\nfocus.switcher.title=Quelea Focus Switcher\nfocus.switcher.message=Muuta ikkunan fokusta kesken esityksen, jos tarpeen.\nfocus.pp=Muuta fokus PowerPointtiin.\nfocus.quelea=Muuta fokus Queleaan\nwebsite.dialog.title=Verkkosivun URL\nwebsite.dialog.header=Kirjoita verkkosivun URL\nwebsite.dialog.content=Syötä sen verkkosivun URL-osoite jonka haluat näyttää:\npaste.label=Liitä\nundo.label=Peru\nredo.label=Tee uudestaan\nhelp.menu.error.text=Sivua ei voitu avata. Voit mennä sinne halutessasi itse: $1\nfilefilters.description.songs.worshiphim=Worship Him MDB -tiedostot\nworshiphim.import.line1=Valitse Worship Him -tietokannan sijainti (mdb-formaatissa):\nworshiphim.button=Worship Him\nshow.extra.live.panel.toolbar.options.label=Näytä lisäasetuksia live-paneelin työkalurivissä\nschedule.items.skipped.text=Joissakin aikataulun nimikkeissä ei ollut media-tiedostoja mukana, joten niitä ei lisätty.\nschedule.items.skipped.header=Aikataulun nimikkeitä ohitettiin\nelevanto.button=Elevanto\nelevanto.import.heading=Elevanto\nelevanto.loginsuccess.message=Voit sulkea tämän ikkunan ja palata Queleaan\nelevanto.loginerror.warning=Kirjautuessa Elevantoon tapahtui virhe\nvideo.loop.tooltip=Automaattitoisto päälle / pois\ndb.song.preview.label.databasepreview=Laululuettelossa\ndelete.bible.confirmation=Halautko varmasti poistaa raamatun $1?\ndefault.theme.label=Oletus\ndb.song.preview.label=Laulun esikatselu\ntheme.changed=Teemaa muutettiin\ndelete.notice.button=Poista\ntheme.copy.label=Kopio teemaste\ninterface.theme.label=Sovelluksen teema\nsong.default.theme.label=Laulun oletus\nsaved.notices=Tallennetut ilmoitukset\ndb.song.preview.label.control=Ei mikään\ntheme.select.label=Valitse teema\nbible.default.theme.label=Raamatun oletus\nbible.delete.error.heading=Virhe\ndb.song.preview.label.previewpane=Esikatselupaneelissa\nbible.delete.error.text=Poistettaessa Raamattua tapahtui virhe.\ntheme.changed.message=Sinun täytyy käynnistää Quelea uudelleen jotta teeman muutos astuu voimaan.\nallow.item.theme.override.global=Salli laulujen oman teeman yliajaa globaali teema\ndark.theme.label=Tumma\ncopy=Kopioi\nsave.add.notice.button=Tallenna ja lisää\ndelete.bible.label=Poista valittu Raamattu\nchosen.sequence.label=Jaksotuksen järjestys\ngeneral.user.options=Yleiset käyttäjän asetukset\nslide.transition.label=Käytä häivytys-animaatiota kalvon vaihdossa\nchosen.sequence.explanation=Luo jaksotus raahaamalla osioita vasemmalta oikealle tai kaksoisnapsauttamalla osiota. Laulun osiot näytetään jatkossa tässä järjestyksessä riippumatta siitä, missä järjestyksessä osiot on tallennettu kantaan. Voit lisätä saman osion useita kertoja.\nsmall.song.position.label=Laulun tietojen sijainti\navailable.sections.label=Laulussa olevat osiot\nmove.up.sequence.tooltip=Siirrä osiota ylöspäin jaksotuksessa\nremove.sequence.tooltip=Poista osio jaksotuksesta\nsequence.tooltip=Muokkaa jaksotusta\nmove.down.sequence.tooltip=Siirrä osiota alaspäin jaksotuksessa\nsmall.bible.text.options=Raamatun pienen tekstin asetukset\nfilefilters.description.sunday.plus=Sunday plus -laulut\nsmall.bible.size.label=Raamatun tietojen koko\nfilefilters.description.xml.openlyrics=XML openlyrics -tiedostot\npassword.empty.message=Palvelimen salasana ei saa olla tyhjä. Oletussalasanaksi asetetaan \"quelea\" ellet kirjoita jotain salasanakenttään.\nfilefilters.description.csv.files=.csv-tiedostot\nsequence.selection.dialog.title=Jaksotuksen valinta\ngeneral.interface.options=Yleiset käyttöliittymäasetukset\ninterface.options.options=Käyttöliittymän asetukset\npp.path=PowerPoint-sovelluksen sijainti\nfilefilters.description.propresenter=Propresenterin laulut\nmobile.remote.heading=Kaukosäädin\nschedule.options=Aikataulun asetukset\nsmall.song.size.label=Laulun tietojen koko\npropresenter.import.line1=Tämä tuo lauluja Propresenterin laulutiedostosta.\npropresenter.button=ProPresenter\nsong.sequence=Laulun jaksotus:\nsmall.bible.position.label=Raamatun tietojen sijainti\nsong.list=Laululuettelo\ntheme.options=Teeman asetukset\nsmall.song.text.options=Laulun pienen tekstin asetukset\npassword.empty.label=Löydettiin tyhjä salasana\n"
  },
  {
    "path": "Quelea/languages/fr.lang",
    "content": "LANGUAGENAME = Français (FR)\ndatabase.heading = Base de données\nimport.heading = Importer\nqsp.button = Pack de chants Quelea\nos.button = Opensong\nolp.button = OpenLP\nolyrics.button = OpenLyrics\nzw.button = ZionWorx\nsp.button = Sunday Plus\npco.button = Centre de planification en ligne\npco.login.import.heading = Connexion en ligne du centre de planification\npco.loginerror.title = Erreur de connexion\npco.loginerror.warning = Impossible de se connecter, vérifiez l'adresse e-mail et le mot de passe et essayez de nouveau\npco.import.heading = Centre de planification en ligne\nelevanto.button = Elevanto\nelevanto.import.heading = Elevanto\nelevanto.loginsuccess.message = Vous pouvez fermer cette fenêtre et retourner à Quelea\nelevanto.loginerror.warning = Erreur de connexion à Elevanto\npassword.text = Mot de passe\nemailaddress.text = Email\nlogin.text = Connexion\nss.button = Survivor Songbook\nprojector.heading = Projecteur\ncontrols.heading = Contrôles\non.button = Marche\noff.button = Arret\nswitch.input.button = Interrupteur d'entrée\ngeneral.options.heading = Général\ndisplay.options.heading = Afficher\nbible.options.heading = Bible\ncheck.for.update.label = Vérifier la mise à jour au démarrage\n1.monitor.warn.label = Avertir si un seul moniteur est connecté\ncapitalise.start.line.label = Capitaliser le début de chaque ligne\none.line.mode.label = Ne prévisualisez qu'une ligne par morceau\ndisplay.song.info.label = Afficher les informations sur le chant\ntext.border.thickness.label = Epaisseur de la bordure de texte\nmax.chars.line.label = Nombre maximal de caractères par ligne\nadvanced.label = Avancé\nok.button = OK\noutput.text = Sortie\ncontrol.screen.label = Ecran de controle\nprojector.screen.label = Ecran du projecteur\nstage.screen.label = Ecran de la scène\ncustom.position.text = Position personnalisée\ndefault.bible.label = Par défaut\nmax.verses.label = Nombre maximum de versets à afficher en une fois\nadd.bible.label = Ajouter une bible ...\ndelete.bible.label = Supprimer la bible actuelle\ndelete.bible.confirmation = Voulez-vous vraiment supprimer la bible $1?\nnone.text = Aucun\nnew.schedule.button = Nouveau Service\nopen.schedule.button = Ouvrir un Service\nsave.schedule.button = Enregistrer le Service\nsave.as.schedule.button = Enregistrer sous ...\nprint.schedule.button = Imprimer le Service\noptions.title = Options\noptions.button = Options\nexit.button = Quitter\nnew.schedule.text = Nouveau Service\ncreate.new.schedule.text = Créer un nouveau service\nopen.schedule.text = Ouvrir le service\nopen.existing.schedule.text = Ouvrir un service existant\nsave.schedule.text = Enregistrer le service\nsave.schedule.disk.text = Enregistrer le service sur le disque\nsave.as.schedule.text = Enregistrer le service sous\nsave.as.schedule.disk.text = Enregistrer le service dans un fichier différent\nprint.schedule.text = Imprimer le service\nprint.current.schedule.text = Imprimer le service actuel\noptions.text = Options\ndisplay.options.text = Afficher la boîte de dialogue des options\nexit.text = Quitter Quelea\nquit.quelea.text = Quitter Quelea\nlibrary.image.heading = Images\nlibrary.songs.heading = Chants\nlibrary.bible.heading = Bibles\nbible.heading = Bibles\nlibrary.song.search = Recherche\nclear.search.box = Effacer la recherche\nadd.song.text = Ajouter un chant dans la base de données\nremove.song.text = Supprimer le chant de la base de données\nlibrary.add.to.schedule.text = Ajouter dans le service\nlibrary.copy.to.schedule.text = Copier dans le service\nlibrary.edit.song.text = Editer le chant\nlibrary.remove.song.text = Supprimer le chant\nlibrary.print.song.text = Imprimer le chant\nadd.to.schedule.text = Ajouter dans le service\norder.service.heading = Organisation du service\nmove.down.schedule.tooltip = Descendre l'élément\nmove.up.schedule.tooltip = Monter l'élément\nremove.song.schedule.tooltip = Supprimer l'élément\nadjust.theme.tooltip = Ajuster le thème\nedit.song.text = Editer le chant\nnew.theme.text = Nouveau thème ...\ntheme.select.text = Selectionner le theme:\ndefault.theme.name = Par défaut\ndefault.theme.text = Thème par défaut\nremove.theme.tooltip = Supprimer le thème\nedit.theme.tooltip = Editer le thème\nedit.theme.heading = Gestionnaire de thèmes\npreview.heading = Aperçu\nlive.heading = Direct\ngo.live.text = Projeter\nblack.screen.tooltip = Ecran noir\nclear.text.tooltip = Effacer l'écran\nhide.display.output.tooltip = Masquer la sortie d'affichage\nschedule.heading = Service\nadd.song.button = Ajouter un chant\nedit.song.button = Editer le chant\nremove.item.button = Supprimer l'élément\nadd.presentation.button = Ajouter une présentation\nadd.video.button = Ajouter une vidéo\nadd.youtube.button = Ajouter une vidéo Youtube\nadd.live.video.button = Ajouter une vidéo au direct\nadd.dvd.button = Ajouter un DVD\nadd.audio.button = Audio\nadd.audio.tooltip = Ajouter un élément audio\nshare.heading = Partager\nemail.button = Email\nmanage.notices.button = Gérer les alertes ...\nnotices.heading = Alertes\nnew.notice.text = Nouvel alerte\nedit.notice.text = Modification de l'alerte\nremove.notice.text = Supprimer l'avis\ndone.text = Ok\nnew.notice.heading = Nouvelle alerte\nnotice.text = Alerte\nnotice.times.text = Durée d'affichage\nnotice.infinite.question = Infini?\nadd.notice.button = Ajouter une alerte\nedit.notice.button = Modifier l'alerte\noui.text = Oui\nno.text = Non\ncancel.text = Annuler\nnew.song.button = Nouveau chant\ndelete.song.button = Supprimer le chant\nsongs.heading = Chants\ntags.button = Gérer les étiquettes ...\nsource.button = Source\neasyslides.button = EasySlides\nfreeworship.button = FreeWorship\neasyworship.button=EasyWorship 2009\nplainText.button = Texte brut\nkingsway.button = Kingsway en ligne\nsof.button = Songs of Felloship\nexport.heading = Exporter\nfilter.tag = Filtrer les étiquettes\ntags.colon.label = Etiquettes:\nimport.button = Importer\nimport.all.button = Tout importer\nimport.selection.button = Importer la sélection\nrefresh.button = Actualiser\nclick.select.file.text = Cliquez pour sélectionner le fichier\ncheck.duplicates.text = Vérifier les doublons\nedit.song.title = Editer le chant\nbasic.information.heading = Informations de base\ndetailed.info.heading = Informations détaillées\ntheme.heading = Thème\ntitle.label = Titre\nauthor.label = Auteur\nrun.spellcheck.label = Vérification de orthographe\nfix.apos.label = Corriger les apostrophes\ntrim.lines.tooltip = Couper les lignes\ntranspose.tooltip = Transposer ...\ncancel.button = Annuler\nccli.number.label = numéro CCLI\ncopyright.label = Copyright/Droit d'Auteur\nyear.label = Année\npublisher.label = Editeur\ntags.label = Etiquettes\ntype.tag.name.here.text = <Tapez les noms de balises ici>\nkey.label = Clé\ncapo.label = Capo\nnotes.label = Notes\nfont.theme.label = Police\nChoose.color.text = Choisissez la couleur ...\nbackground.text = Fond\nbackground.theme.label = Thème du fond\ncolor.theme.label = Couleur\nimage.theme.label = Image\nselect.color.title = Sélectionner la couleur\nselect.color.button = Choisir une couleur\nnew.song.title = Nouveau chant\ntype.lyrics.here.text = Entrez les paroles ici\nrtf.files.description = Fichiers RTF\nsng.files.description = Fichiers SNG (SongBeamer)\nvideopsalm.import.line1 = Ceci importera la bibliothèque VideoPsalm à partir d'un fichier JSON.\nfreeworship.import.line1 = Ceci importera des chants FreeWorship à partir de fichiers XML.\nsof.import.line1 = Ceci importera la bibliothàque SoF depuis un fichier RTF.\nplaintext.import.line1 = Ceci importera des chants à partir de fichiers texte.\nkingsway.import.line1 = Ceci importera la bibliothèque de chants de Kingsway en ligne.\nsongpro.import.line1 = Ceci importera des chants d'une base de données SongPro SDB.\nkingsway.import.line2 = Cela prendra beaucoup de temps (potentieélément des heures!), alors soyez patient!\neasyslides.import.line1 = Ceci importera des chants d'un fichier XML EasySlides.\neasyworship.import.line1 = Ceci importera des chants d'un fichier Easyworship Songs.MB.\nmissionpraise.import.line1 = Ceci importera des chants des fichiers RTF de Mission Praise.\nopenlyrics.import.line1 = Sélectionnez l'emplacement des chants openlyrics ci-dessous.\nqsp.import.line1 = Sélectionnez l'emplacement du pack de chants Quelea ci-dessous.\nos.import.line1 = Sélectionnez l'emplacement de la base de données Opensong ci-dessous.\nzw.import.line1 = Sélectionnez l'emplacement du fichier \"MainTable.dat\" de ZionWorx ci-dessous.\nzw.import.line2 = Il se trouve générélément dans \"C: \\\\ ProgramData \\\\ ZionWorx \\\\ 2.6 \\\\ Data\".\nolp.import.line1 = Sélectionnez l'emplacement de la base de données OpenLP ci-dessous.\nsundayplus.import.line1 = Sélectionnez l'emplacement de la base de données Sunday Plus ci-dessous.\nsundayplus.import.line2 = (L'importateur s'attend à ce que les fichiers PTF se trouvent à la racine du fichier zip.)\nsource.import.line1 = Sélectionnez l'emplacement du répertoire Hymns sur le CD source.\nsurvivor.import.line1 = Sélectionnez l'emplacement du fichier PDF du livret du chant Survivor ci-dessous.\nsurvivor.import.line2 = Ceci doit être le fichier acetates.pdf, pas les accords de guitare ou la partition.\nimport.error.message = Désolé, un problème est survenu lors de l'importation. N'hésitez pas à demander de l'aide sur le groupe de discussion Quelea: http://bit.ly/1mePoeh\nemail.error.title = Erreur de messagerie\nemail.error.text = Une erreur s'est produite lors de l'ouverture de votre client de messagerie. Assurez-vous qu'un client de messagerie soit installé et enregistré pour gérer les fichiers eml, sinon vous devrez envoyer le courrier manueélément.\nemail.text = Bonjour! Vous trouverez ci-joint un programme Quelea qui vous a été envoyé. Ouvrez-le simélément avec Quelea et tous les éléments devraient apparaître correctement.\nselect.image.button = Sélectionner l'image\nimage.files.description = Fichiers d'image\npng.files.description = Fichiers image PNG\ntools.label = Outils\nselect.songs.title = Sélectionner des chants\ncheck.uncheck.all.text = Tout cocher / décocher\ndelete.theme.confirm.title = Confirmer la suppression\ndelete.theme.question = Voulez supprimer ce thème?\ntoo.many.verses.error = Désolé, impossible d'afficher autant de versets ... veuillez essayer un nombre plus petit.\none.monitor.warning = Il semblerait n'y avoir qu'un seul moniteur d'installé. Cela conviendra si vous utilisez uniquement Quelea pour plannifier un service, mais Quelea a besoin de 2 moniteurs pour fonctionner correctement en direct.\none.monitor.title = Un seul moniteur\nno.dvd.heading = Aucun disque trouvé\nno.dvd.error = Veuillez insérer un DVD ou un Blu-ray valide.\nadded.presentation.status = Importation de la présentation ...\nadded.presentation.error.message = Une erreur est survenue lors de l'importation de la présentation. Peut-être est-elle corrompue?\nadded.presentation.error.title = Erreur lors de l'importation de la présentation\nimporting.status = Importation ...\nname.label = Nom\nsimilar.colors.text = Vous avez choisi des couleurs très similaires pour les paroles et le fond, ils seront difficiles à voir pour la congrégation. Je vous conseillerais de choisir de meilleures couleurs!\nwarning.label = Avertissement\nfile.menu = Fichier\ntools.menu = Outils\nschedule.menu = Service\ndatabase.menu = Base de données\nprojecteur.menu = Projecteur\nnew.theme.title = Nouveau thème\nadd.theme.label = Ajouter un thème\ntheme.name.label = Nom du thème\ntheme.select.label = Selectionner le theme\ntheme.copy.label = Copier le thème\nhelp.menu = Aide\nhelp.menu.website = Site Web\nhelp.menu.discussion = Support / Discussion (posez les questions ici)\nhelp.menu.feedback = Commentaires\nhelp.menu.download = Télécharger\nhelp.menu.update = Rechercher les mises à jour\nhelp.menu.about = à propos de ...\nhelp.menu.error.text = Désolé, nous n'avons pas pu charger cette page. Vous pouvez y accéder manuellement: $1\nhelp.menu.error.title = Erreur\nhelp.about.title = A propos de\nhelp.about.version = Version\nhelp.about.close = Fermer\nhelp.about.line1 = Quelea est sous licence GPL (Version 3.)\nhelp.about.line2 = Il est et sera toujours un logiciel libre et open source.\nnew.schedule.tooltip = Nouveau service\nopen.schedule.tooltip = Ouvrir un service\nsave.schedule.tooltip = Enregistrer le service\nprint.schedule.tooltip = Imprimer le service\nnew.song.tooltip = Nouveau chant\nadd.presentation.tooltip = Ajouter une présentation\nadd.dvd.tooltip = Ajouter un DVD\nadd.video.tooltip = Ajouter une vidéo\nmanage.tags.tooltip = Gérer les étiquettes\nmanage.notices.tooltip = Gérer les alertes\nalready.running.error = Il semblerait qu'une instance de Quelea soit déjà en cours d'exécution. \\nAssurez-vous de fermer toutes les autres instances avant d'exécuter le programme.\nalready.running.title = Déjà en cours d'exécution\nerror.schedule.message = Un problème est survenu lors de l'ouverture du service. Peut-être est-il corrompu ou ce n'est pas un service enregistré par Quelea.\nerror.schedule.title = Erreur d'ouverture du service\nprint.chords.question = Inclure les accords lors de l'impression de ce chant?\nprint.chords.export.question = Inclure les accords lors de l'exportation de ces chants?\nprinting.options.text = Imprimer le chant\nspace.key = touche espace\nupdate.db = Mise à jour de la base de données\nerror.updating.song.text = Une erreur est survenue lors de la mise à jour du chant dans la base de données, elle est peut-être corrompue.\nerror.text = Erreur\nquick.shortcut.description = Echap pour annuler, Maj + Entrée pour enregistrer\nsave.before.exit.text = Le service a été modifié. Enregistrer avant de sortir?\nsave.before.exit.title = Service non enregistrée\nno.chords.message = Ce chant n'a aucune ligne d'accords à transposer.\nno.chords.title = Pas d'accords\nerror.checking.updates.title = Impossible de vérifier les mises à jour\nerror.checking.updates.text = Désolé, une erreur est survenue lors de la recherche de mises à jour. Veuillez vérifier votre connexion Internet, puis réessayez.\nnewer.version.available = Une version plus récente de Quelea est disponible\nno.newer.version.available = Vous utilisez la dernière version de Quelea\nvisit.webpage.now = Visitez le site web pour la télécharger maintenant?\ndownload.manual.update = Vous pouvez la télécharger ici\nnewer.version.available.title = Mise à jour disponible\nno.newer.version.available.title = Déjà à jour!\ncheck.kingsway.start = Vous avez déjà importé des éléments de la bibliothèque Kingsway. Voulez-vous commencer à importer à partir de l'endroit où vous vous êtes arrété?\ncheck.kingsway.start.title = éléments déjà importés\nimport.no.songs.title = Aucun chant trouvée\nimport.no.songs.text = Impossible de trouver les chants à importer.\nstage.options.heading = Vue de la scène\nstage.show.chords = Afficher les accords?\nstage.line.alignment = Alignement du texte\nstage.font.selection = Police\nstage.background.colour = Couleur de fond\nstage.lyrics.colour = Couleur des paroles\nstage.chord.colour = Couleur des accords\nleft = Gauche\ncenter = Centre\nright = Droite\nconfirm.label = êtes-vous sûr?\nschedule.clear.text = Le service a été modifié. Continuer sans sauvegarder?\npart = part\nhelp.menu.facebook = page Facebook\nvideo.error = Impossible d'initialiser les bibliothèques vidéo - la vidéo ne fonctionnera pas. Demandez de l'aide sur la liste de discussion (voir le menu d'aide) pour résoudre ce problème.\nvideo.error.title = Erreur vidéo\ntext.shadow.label = Afficher l'ombre du texte\nadded.images = Ajout d'images ...\nsetup.oo.failed.text = Impossible de configurer OpenOffice pour l'affichage des présentations. Assurez-vous d'avoir installé OpenOffice et que le chemin fourni est correct.\nsetup.oo.failed.title = Echec de l'initialisation d'OpenOffice\nuse.oo.label = Utiliser OpenOffice pour les présentations (expérimental)\noo.path = Chemin OpenOffice\nbrowse = Parcourir ...\nloading.text = Chargement\nbuilding.bible.index = Chargement de la bible\nbible.search.title = Rechercher une Bible\ninitial.search.text = <Tapez ici pour rechercher>\nview.bible.button = Consulter la bible ...\nsearch.bible.button = Rechercher une bible ...\nall.text = Tous\nbible.browser.title = Naviguez dans la Bible\nopen.in.browser = Ouvrir dans le navigateur ...\nkingsway.button.all = Toutes les chants\nkingsway.button.one = Un chant\nsong.id.selector = Veuillez sélectionner l'ID du chant\nbible.copy.error.text = Désolé, une erreur est survenue lors de la copie de la bible dans le répertoire requis.\nbible.delete.error.text = Désolé, une erreur est survenue lors de la suppression de la bible du répertoire requis.\nbible.copy.error.heading = Erreur\nbible.delete.error.heading = Erreur\nselect.key.label = Sélectionnez la nouvelle clé:\ntranspose.label = Transposer\nalready.exists.overwrite.label = existe déjà. écraser?\noverwrite.text = Ecraser\ncant.save.schedule.title = Erreur lors de la sauvegarde du service\ncant.save.schedule.text = Désolé, une erreur s'est produite et le service n'a pas pu être enregistrée.\nerror.removing.song.db = Une erreur est survenue lors de la suppression du morceau de la base de données.\nconfirm.remove.text = Confirmer supprimer\nconfirm.remove.question = Supprimez vraiment $1 de la base de données? Cette action ne peut pas être annulée.\nquick.edit.text = Edition rapide\nlibrary.preview.song.text = Extrait du chant\nvideo.error.unsupported = Désolé, le fichier vidéo que vous avez sélectionné n'est pas pris en charge.\nvideo.error.general = Désolé, il y a eu une erreur avec le fichier vidéo que vous avez sélectionné.\nvideo.theme.label = Vidéo\nselect.video.button = Sélectionner une vidéo\nrefresh.images.panel = Actualiser les images\nadd.images.panel = Ajouter des images\nselect.folder.images.panel = Sélectionner le dossier ...\ntext.position.label = Position du texte\nimage.folder = Dossier d'image:\nquick.insert.text = Insertion rapide\nconfirm.overwrite.title = Le fichier existe déjà!\nconfirm.overwrite.text = Ce fichier existe déjà. Voulez-vous le remplacer ou continuer sans copier?\nfile.rename.button = Renommer\nfile.replace.button = Remplacer\nfile.continue.button = Continuer\nfile.rename.dialog.title = Renommer\nfile.rename.dialog.text = Veuillez entrer le nouveau nom du fichier:\ninterface.language.label = Langue de l'interface:\nlanguage.changed = Langue changée\nlanguage.changed.message = Vous devez redémarrer Quelea avant que le changement de langue prenne effet.\ndebug.location = Emplacement du journal de débogage\ntop.text.position = Haut\nmiddle.text.position = Milieu\nbottom.text.position = Bas\nbottom = Bas\nshadow.color = Couleur de l'ombre\nshadow.x = décalage de l'ombre X\nshadow.y = décalage de l'ombre Y\nselect.imported.songs.line1 = Les chants suivants ont été importées.\nselect.imported.songs.line2 = Sélectionnez ceux que vous souhaitez ajouter à la base de données puis cliquez sur \"Ajouter\".\nselect.imported.songs.line3 = Les morceaux que Quelea considére comme des doublons ont été décochés.\nadd.text = Ajouter\nadd.to.database.question = Ajouter à la base de données?\nselect.export.songs.line1 = Les chants suivants sont dans la base de données.\nselect.export.songs.line2 = Sélectionnez ceux que vous souhaitez exporter, puis cliquez sur \"Ajouter\".\nadd.to.songpack.question = Exporter le chant?\nprojection.window.title = Fenêtre de projection\nclear.live.on.remove.schedule = Supprimer l'élément du direct lors de la suppression du service\nspelling.complete.text = La vérification de orthographe est terminée.\ncomplete.title = Complet\nspelling.check.title = Vérification de l'orthographe\ncorrect.text = Corriger\nignore.text = Ignorer\nspelling.errors.in.doc.label = Il y a des fautes d'orthographe dans le document. Appuyez sur \"F7\" pour ouvrir la boîte de dialogue de vérification de l'orthographe.\nremove.image.text = Supprimer l'image\ndelete.image.title = Supprimer l'image\ndelete.image.confirmation = Vraiment supprimer cette image de la bibliothèque? Cette action ne peut pas être annulée.\nnotice.expired.title = Alerte expiré\nnotice.expired.text = L'alerte que vous modifiez a expiré. Voulez-vous l'ajouter à nouveau?\ndictionary.language.text = Langue du dictionnaire\nconfirm.entry.exit.text = Voulez-vous enregistrer vos modifications dans cet chant?\nconfirm.entry.exit.title = Enregistrer le chant?\nsave.text = Enregistrer\ndont.save.text = Ne pas sauvegarder\nvlc.warning.title = Impossible de trouver une version 64 bits de VLC\nvlc.warning.message = Quelea n'a pas pu trouver une version 64 bits de VLC sur votre système. Sans lui, Quelea ne pourra pas lire les fichiers vidéos, audio et montrer des chants avec des arrière-plans vidéo. Voulez-vous le télécharger maintenant? Vous devrez redémarrer Quelea après avoir installé VLC pour que les modifications prennent effet.\nvlc.version.message = Votre version de VLC est trop ancienne. Vous devez télécharger la dernière version de VLC pour pouvoir lire des vidéos, de l'audio et afficher des arrière-plans vidéo. Voulez-vous le télécharger maintenant? Vous devrez redémarrer Quelea après avoir installé VLC pour que les modifications prennent effet.\ncontinue.without.video = Continuer sans VLC\ndownload.vlc = Télécharger VLC\nstartup.error.title = Erreur de démarrage\nstartup.error.text = Désolé, Quelea n'a pas pu démarrer pour une raison quelconque sur votre système. Si vous souhaitez obtenir de l'aide pour essayer de l'exécuter, envoyez un courrier électronique à support@quelea.org et joignez le fichier journal de débogage ($1). \\n\\nVous pouvez égalément contacter le groupe de discussion Quelea (http : //goo.gl/NXvIDG).\nfilefilters.description.survivor.songbook = Fichier acetates du survivor\nfilefilters.description.xml.bibles = Bibles XML\nfilefilters.description.xml.easyslide = Fichiers XML Easyslide\nfilefilters.description.xml.files = Fichiers XML\nfilefilters.description.video.files = Fichiers vidéo\nfilefilters.description.pmsong.files = Chants du gestionnaire de présentation\nfilefilters.description.vs.files = Bases de données VideoPsalm\nfilefilters.description.audio.files = Fichiers audio\nfilefilters.description.quelea.schedules = Services de Quelea\nfilefilters.description.powerpoint.presentations = Présentations PowerPoint\nfilefilters.description.plain.text.song = Chant texte brut\nfilefilters.description.maintable.dat = Fichier de base de données ZionWorx MainTable\nbible.search.results.found = résultats trouvés\nbible.search.result.found = résultat trouvé\nbible.search.keep.typing = Continuez à taper ...\nuniform.font.size.label = Utiliser une taille de police uniforme\nmax.font.size.label = Taille de police maximale\nthumbnail.size.label = Taille de la miniature\nadditional.line.spacing.label = Interligne additionnel\nlogo.screen.tooltip = Affichage du clic gauche - Définir le clic droit\nchange.graphics.label = Changer les graphiques\nfont.colour.label = Couleur de la police\nbackground.colour.label = Couleur de fond\nmobile.lyrics.heading = Serveur de diffusion des paroles en réseau\nuse.mobile.lyrics.label = Activer la diffusion des paroles en réseau\nport.number.label = Numéro de port\nbrowse.mob.url.label = Lien URL des paroles\nserver.changed.label = Paramètres du serveur modifiés\nserver.changed.message = Vous devrez redémarrer Quelea pour que les nouveaux paramètres du serveur prennent effet.\nfilefilters.description.zip.files = Fichiers Zip\nfilefilters.description.sqlite.files = Fichiers SQLite\nloop.label = Boucle\nsecondes.label = secondes\nselected.fonts.explanation = Quelea affiche uniquement une sélection de polices dans la fenêtre de thème. Faites glisser les polices que vous utilisez du panneau de gauche vers le panneau de droite, faites-les glisser de la droite vers la gauche.\nignored.fonts.label = Polices ignorées\nselected.fonts.label = Polices choisies\nfont.selection.dialog.title = Sélection de police\nvideo.hue.label = Teinte\nhover.for.position.label = Survolez le canevas pour définir la position du texte\ntest.patterns.text = Mires de calibration\ntest.patterns.explanation = Les mires disponibles ici devraient vous aider à calibrer correctement les paramètres de mise au point et de couleur de votre écran. Cliquez sur une mire pour l'afficher à la fois sur la vue principale et sur la scène.\nyoutube.url.label = URL de la vidéo Youtube\nno.tdb.heading = TurboDB Data Exchange introuvable\nno.tdb.message = Pour des raisons techniques, vous devez télécharger TurboDB Data Exchange (https\\://www.dataweb.de/en/support/downloads.html) avant que Quelea puisse importer des bases de données ZionWorx. \\nLorsque vous l'avez téléchargé, extrayez le contenu du fichier zip à 1$. \\n\\nSi vous rencontrez des problèmes, n'hésitez pas à vous renseigner sur le groupe de discussion (http://bit.ly/1mePoeh).\nshow.verse.numbers = Afficher les numéros de verset\nadd.song.hint.text = Aucun chants? Pas de problème. Pour ajouter un chant, cliquez sur le l'icone \"Ajouter un chant\" situé à gauche.\nadd.song.hint.search.text = Il n'y a aucun chants de cette catégorie qui correspondent à cette recherche. Pour ajouter un chant, cliquez sur le bouton \"Ajouter un chant\" à gauche.\nfilefilters.description.songs.mb = Base de données Easyworship Songs.MB\nfilefilters.description.songs.missionpraise = Fichiers Mission Praise RTF\nfilefilters.description.songs.worshiphim = Fichiers Worshiphim MDB\ntranslate.tooltip = Traduction de chants\nclose.button = Fermer\nadd.translation.button = Ajouter une traduction ...\nenter.translation.name.label = Dans quelle langue voulez-vous traduire?\ntranslate.dialog.title = Gestionnaire de traduction\nconfirm.remove.translation.title = Supprimer la traduction?\nconfirm.remove.translation.text = Voulez-vous vraiment supprimer cette traduction?\ndefault.translation.label = Traduction par défaut\noverwrite.lyrics.title = Remplacer les paroles existantes?\noverwrite.lyrics.text = Nous avons traduit les paroles automatiquement pour vous - voulez-vous les utiliser? \\nVotre traduction actuelle sera remplacée.\nauto.translate.label = Essayer de traduire automatiquement les chants\nChoose.translations.text = Choisir les traductions\nselect.translation.label = Sélectionnez la traduction que vous souhaitez afficher en plus des paroles par défaut:\ntranslate.heading = Traductions\nremote.logo.text = Logo\nremote.black.text = Noir\nremote.clear.text = Effacer\nremote.next.text = Diapositive suivante\nremote.prev.text = Diapositive précédente\nremote.nextitem.text = élément suivant\nremote.previtem.text = élément précédent\nserver.settings.heading = Paramètres du serveur\nuse.remote.control.label = Utiliser le contrôle à distance\nnavigate.remote.control.label = Utiliser le contrôle à distance\nnavigate.mob.url.label=URL Mobile Lyrics\nbrowse.remote.control.label = URL du contrôle à distance\nremote.empty.lyrics = Les paroles seront affichées ici\nremote.control.password = Mot de passe du contrôle à distance (sensible à la casse)\nremote.logout.text = Déconnexion\nremote.login.text = Veuillez vous connecter pour continuer\nremote.submit.text = Connexion\nmore.font.options.label = Plus d'options de polices\nmore.fonts.label = Plus de polices\ntranslation.font.text = Police de traduction\nshadow.text = Ombre\nsaving.schedule = Sauvegarde du service ...\nsmall.text.position.label = Position du chant et de la bible\nbible.passage.selector.prompt = [Chapitre]: [Verset] - [Verset]\ntheme.button.tooltip = Définir un thème global pour le service\ncurrent.displaying.text = Affichage actuel\nplay = Lecture\npause = Pause\nshow.small.song.text.label = Afficher les informations (Chant)\nshow.small.bible.text.label = Afficher les informations (Bible)\nuse.bible.verses = Les passages bibliques divisés par\nmax.items.per.slide = Nombre maximal de % par diapositive\nverse = verset\nwords = mots\nedit.bible.passage.text = Editer le thème de passage\nnotice.colour.text = Couleur de l'alerte\nnotice.font.text = Police de l'alerte\nnotice.speed.text = Durée de l'alerte\nnotice.background.colour.text = Couleur de fond de l'alerte\nnotice.position.text = Position de l'alerte\nnotice.font.size = Taille de la police de l'alerte\nnotice.options.heading = Alerte\nexport.pdf.button = Exporter au format PDF\npdf.button = PDF\nexport.schedule.pdf.button = Exporter le service au format PDF\nfilefilters.description.pdf.files = Fichiers PDF\nnot.started.label = Pas démarré\nquelea.schedule.text = Service Quelea\nuser.options.options = Options de l'utilisateur\ntext.options.options = Options du texte\nstretch.video.label = Etendre la vidéo\nexport.schedule.songs.pdf.button = Exporter des chants au format PDF\nexport.label = Exporter\nuse.shadow.label = Activer l'ombre?\nshadow.color.label = Couleur de l'ombre\nshadow.offset.label = Décalage de l'ombre\nshadow.radius.label = Rayon de l'ombre\nshadow.spread.label = Répartition de l'ombre\nhelp.menu.manual = Manuel\nedit.theme.text = Editer le thème\nchange.bible.version.text = Changer de version\nswitch.to.text = Basculer vers\nsave.qr.code.text = Enregistrer le code QR\nnonbreak.tooltip = Ajouter une ligne insécable\ncopying.video.please.wait.text = Attendez un instant - copie du fichier vidéo ...\ntranslating.text.please.wait.text = Attends un instant - récupère une traduction ...\nfilefilters.description.usr.files = Fichiers USR (SongSelect)\nsongselect.import.line1 = Sélectionnez les fichiers SongSelect ci-dessous.\npm.import.line1 = Sélectionnez les chants du gestionnaire de présentation à importer.\nsmi.import.line1 = Sélectionnez les chants Screen Monkey à importer.\nsongselect.button = SongSelect\nvideopsalm.button = VideoPsalm\npm.button = Gestionnaire de présentation\nsm.button = Screen Monkey\ntranslation.export.heading = Exportation de traduction\ninclude.translations.question = Inclure les traductions dans le fichier PDF?\nslide.text = Diapositive\nautoplay.vid.label = Lecture automatique de vidéos dans le panneau du direct\nadvance.on.live.label = Poussez le service vers l'écran du direct\ndelete.translation.title = Supprimer la traduction\ndelete.translation.text = Supprimer la traduction $1?\nhelp.menu.wiki = Documentation\npreview.on.image.change.label = Aperçu de l'objet lors du changement d'image\nadd.timer.tooltip = Ajouter un compte à rebours\nfilefilters.description.image.video.files = Fichiers vidéo et images\ntimer.duration.label = Durée du compte à rebours\ntimer.file.label = Emplacement du fichier d'arrière-plan\nduration.tooltip.label = #: ## ou ## m ## s ou ##: ## am\ntranslation.choice.title = Choix de traduction\nfont.options.title = Options de police\nnew.translation.title = Nouvelle traduction\nadd.timer.title = Ajouter un compte à rebours\nuntitled.theme.text = Thème sans titre\ntimer.text.label = Texte additionnel\ntimer.text.prompt = Utilisez # pour positionner le compte à rebours, par ex. \"Le service commencera dans # minutes\" affichera \"Le service commencera dans 05:00 minutes\"\ncountdown.label = Compte à rebours\ntimer.theme.label = Paramètres du thème\ntimer.theme.button = Changer de thème\nembed.media.in.schedule = Incorporer le média dans le fichier de planification\nworshiphim.import.line1 = Sélectionnez l'emplacement de la base de données Worshiphim (au format mdb) ci-dessous:\nsongbeamer.import.line1 = Sélectionnez l'emplacement des fichiers SNG à importer ci-dessous:\nfilefilters.description.txt.files = fichiers .txt\nworshiphim.button = Worship Him\nsongbeamer.button = SongBeamer\nclear.stage.view = Effacer la vue de la scène avec l'affichage principal\ntop = Haut\ndown = Bas\nepicworship.import.line1 = Ceci importera des chants d'un fichier EpicWorship Song Pack (.epc).\nfilefilters.description.epc = EpicWorship .epc songpack\nepicworship.button = EpicWorship\nadd.videos.panel = Ajouter des vidéos\nremove.video.text = Supprimer la vidéo\ndelete.video.title = Supprimer la vidéo\ndelete.video.confirmation = Voulez-vous vraiment supprimer cette vidéo de la bibliothèque? Cette action ne peut pas être annulée.\nlibrary.video.heading = Vidéos\ntimer.files.description = Compteur\nadd.timers.panel = Ajouter des compteurs\nlibrary.timer.heading = Compteurs\ntimer.save.label = Enregistrer le compteur?\ntimer.name.label = Nom\nedit.timer.text = Modifier le compteur\nremove.timer.text = Supprimer le compteur\nconfirm.remove.timer = Vraiment supprimer $1 de la liste des temporisateurs? Cette action ne peut pas être annulée.\nkingsway.button.range = Plage\nkingsway.range.import.text = Entrez la plage de pages de chants à télécharger du site Web de Kingsway. \\nLe nombre maximal actuel de pages est d'environ 3600.\nkingsway.range.import.heading = Importer une plage de chants Kingsway\nsdb.files.description = Fichiers de base de données Songpro\nsongpro.button = SongPro\noverflow.song.label = Déborder le chant en cours sur le prochain chant\ninvalid.search = Recherche non valide\nrcs.add.failed = Ajout échoué\nrcs.add.success = Ajout réussi\nrcs.add.song = Ajouter un chant au service\nrcs.search = Rechercher et ajouter\nrcs.add.bible.error = Une erreur s'est produite lors de l'ajout de $1 dans le service\nrcs.submit = Soumettre\nrcs.song.search = Chant\nrcs.bible.search = Bible\nshow.video.library.panel = Afficher l'onglet de la bibliothèque vidéo (redémarrage requis)\nuse.24h.clock = Utiliser l'horloge en mode 24 heures\nsplit.bible.verses = Garder les versets entiers sur les diapositives\nno.verse.title = Aucun verset trouvé\nno.verse.message = Nous n'avons pas pu trouver aucuns des versets spécifiés et avons essayé de continuer sans eux.\nchorus.tooltip = Ajouter une section refrain\nrecordings.path = Chemin pour les enregistrements\ndownload.path = chemin de téléchargement\nconvert.mp3 = Convertir automatiquement les enregistrements en fichiers MP3 (requiert VLC)\nrecording.warning.title = Définir d'abord le chemin des enregistrements\nrecording.warning.message = Vous devez définir un chemin pour le stockage des enregistrements dans le panneau des options avant de pouvoir commencer l'enregistrement.\nrecording.no.devices.title = Aucun appareil d'enregistrement trouvé\nrecording.no.devices.message = Désolé, aucun périphérique d'enregistrement compatible n'a été trouvé. \\nAssurez-vous que votre périphérique d'enregistrement soit branché et activé.\nsave.recording.before.exit.title = Enregistrement non sauvegardé\nsave.recording.before.exit.message = Voulez-vous sauvegarder l'enregistrement avant de quitter?\nrecord.audio.tooltip = Enregistrer l'audio\npause.record.tooltip = Pause de l'enregistrement\nmax.lines.per.slide = Lignes par diapositive (approximative)\npresentation.options.heading = Présentations\nrecordings.options.heading = Enregistrements\ncopy.song.db.default = Copier le chant au service par défaut\nadd.pdf.tooltip = Ajouter un PDF\nimportexport.options.heading = Importer / Exporter\nmp.button = Mission Praise\npreview.failed = échec de la prévisualisation\nset.loop.manually.title = PowerPoint introuvable\nset.loop.manually.message = La présentation a été fermée. Si vous souhaitez utiliser la fonction de boucle de Quelea avec la visionneuse PowerPoint, vous devez définir manuellement la présentation en boucle jusqu'à ce qu'elle soit arrêtée lors de sa création.\npresentation.changed.message = Vous devrez redémarrer Quelea pour que les nouveaux paramètres de présentation prennent effet.\npresentation.changed.label = Paramètres de présentation modifiés\npresentation.not.started.label = PowerPoint n'a pas été démarré\npresentation.not.started.message = Malheureusement, votre présentation n'a pas pu être démarrée avec PowerPoint. Peut-être que le fichier est corrompu?\npp.already.running.label = PowerPoint est déjà en cours d'exécution\npp.already.running.message = Une autre instance de PowerPoint a été trouvée. Veuillez fermer toutes les instances de PowerPoint avant de lancer une présentation dans Quelea pour éviter la perte de données.\npp.path = Chemin du programme PowerPoint\nuse.pp.label = Utiliser PowerPoint pour les présentations\nclose.all.presentations.label = Fermer toutes les présentations ouvertes\nclose.all.presentations.message = Veuillez fermer toutes les fenêtres ouvertes de PowerPoint avant d'appuyer sur OK, sinon cela sera fait automatiquement pour éviter que des signaux ne soient envoyés vers la mauvaise fenêtre.\nlive.text.message = Tout texte écrit ci-dessous sera visible pour les utilisateurs de Mobile Lyrics lorsque l'écran principal sera vide. \\n\\nUtilisez une ligne vierge pour commencer une nouvelle diapositive. Vous pouvez également utiliser le bouton Effacer (ou CTRL + Entrée) pour réinitialiser les deux extrêmités. Plus de 200 caractères d'une diapositive seront automatiquement raccourcis pour l'utilisateur.\nlive.text.title = Messagerie Instantanée\nexit.live.text = Quitter la Messagerie Instantanée\nclear.live.text = Effacer\ndefault.translation = Par défaut\nselect.language = Choisir la langue:\nsend.live.text = Messagerie Instantanée\nconverting.to.mp3 = Conversion de l'enregistrement en MP3\nverse.tooltip = Ajouter une section couplet\nbridge.tooltip = Ajouter une section pont\nprechorus.tooltip = Ajouter une section pré-refrain\ntag.tooltip = Ajouter une marque\nadd.website = Ajouter un site web\nfocus.switcher.title = Sélecteur de focus Quelea\nfocus.switcher.message = Basculer le focus de la fenêtre ici si nécessaire pendant la présentation.\nfocus.pp=Basculer le focus vers PowerPoint\nfocus.quelea=Basculer le focus vers Quelea\nwebsite.dialog.title=URL de la page Web\nwebsite.dialog.header=Entrez l'URL de la page Web\nwebsite.dialog.content=URL de la page Web à afficher:\npaste.label=Coller\nundo.label=Défaire\nredo.label=Refaire\nshow.extra.live.panel.toolbar.options.label=Afficher des options supplémentaire dans le panneau du direct\nsave.add.notice.button=Sauver et ajouter\nsaved.notices=Alertes sauvés\ndelete.notice.button=Supprimer\nschedule.items.skipped.text=Certains éléments du calendrier n'ont par leur média élément, aussi ils ne seront pas élément.\nschedule.items.skipped.header=éléments du calendrier ignoré\nvideo.loop.tooltip=Répétition marche / arrêt\ninterface.theme.label=Thème de l'application\nallow.item.theme.override.global=Permettre aux thèmes privé d'un élément de surcharger le thème global\nsong.default.theme.label=Chant par défaut\nbible.default.theme.label=Bible par défaut\ndb.song.preview.label=Prévisualiser chant de la base de données\ndb.song.preview.label.control=Aucun\ndb.song.preview.label.databasepreview=Dans le volet de base de données\ndb.song.preview.label.previewpane=Dans le volet de visualisation\nadding.presentation.status=Importation de la présentation...\nchosen.fonts.label=Polices choisies\ncurrently.displaying.text=Affichage actuel\ndefault.theme.label=Défaut\nadd.multimedia.heading=Ajouter Multimédia\nyes.text=Oui\nchosen.fonts.explanation=Quelea affiche uniquement une sélection de polices dans la fenêtre de thème. Faites glisser les polices que vous outilisez du panneau de gauche vers le panneau de droite, ou de la droite vers la gauche pour celles non désirés.\ntheme.changed=Thème changé\nupdating.db=Mise à jour de la base de données\nadding.images=Ajout d'images...\nseconds.label=secondes\nmediashout.button=MediaShout\nfilefilters.description.multimedia.files=Fichiers Multimédia\nmediashout.import.line1=Sélectionnez l'emplacement de la base de données MediaShout (exporté au format txt) ci-dessous:\nchoose.color.text=Choisissez la couleur...\nadd.multimedia.tooltip=Ajouter un élément multimedia\nadding.presentation.error.title=Erreur lors de l'importation de la présentation\nexporting.label=Exportation en cours\nverses=versets\nadding.presentation.error.message=Il y a eu une erreur lors de l'importation de la présentation, il est peut-être corrompu.\ntheme.changed.message=Vous devez redémarrer Quelea avant que le changement de thème prenne effet.\nchoose.translations.text=Choisissez les traductions\ndark.theme.label=Sombre\ncopy=Copie\nprojector.menu=Projecteur\ncentre=Centré\ngeneral.user.options=Options général de l'utilisateur\nsmall.song.position.label=Position de la miniature\nsmall.bible.text.options=Options des miniatures (Bible)\nsmall.bible.size.label=Taille de la miniature (Bible)\ngeneral.interface.options=Options Général de l'interface\ninterface.options.options=Options de l'interface\nmobile.remote.heading=Contrôle mobile à distance\nschedule.options=Options de plannification du service\nsmall.song.size.label=Taille de la miniature (Chant)\nsmall.bible.position.label=Position de la miniature\ntheme.options=Options du thème\nsmall.song.text.options=Options des miniatures (Chant)\nfilefilters.description.sunday.plus=Chants Sunday plus\nfilefilters.description.xml.openlyrics=Fichiers XML OpenLyrics\nfilefilters.description.csv.files=Fichiers .csv\nfilefilters.description.propresenter=Chants Propresenter\npropresenter.import.line1=Cela importera des chants à partir d'un fichier de chant ProPresenter.\npropresenter.button=ProPresenter\nsong.list=Liste de chant\npassword.empty.message=Le mot de passe du serveur ne peut-être vide. Le mot de passe par défaut sera \"quelea\" sauf si vous entrez un mot de passe différent.\npassword.empty.label=Mot de passe vide\nchosen.sequence.label=Choisir l'ordre de séquence\nslide.transition.label=Effectuer un fondu entre les diapositifs\nchosen.sequence.explanation=Déplacez les éléments de gauche à droite ou double cliquer pour créer une séquence pour ce chant. Les diapositifs des paroles seront affichés suivant l'ordre de cette séquence et non selon l'ordre dans lequel sont disposés les éléments dans la base de données.\navailable.sections.label=Sections du chant disponible\nmove.up.sequence.tooltip=Monter l'élément dans la séquence \nremove.sequence.tooltip=Supprimer l'élément de la séquence\nsequence.tooltip=Séquence du chant\nmove.down.sequence.tooltip=Déscendre l'élément dans la séquence\nsequence.selection.dialog.title=Sélection de la séquence\nsong.sequence=Séquence du chant:\nbible.version=Version de la bible\nclick.to.add=Cliquez pour ajouter\nremote.action.slide = Passer à la diapositive suivante / précédente\nremote.dpad.navigation.description = Utilisez les boutons du pavé numérique (haut / bas) pour naviguer vers la diapositive / l'élément suivant ou précédent. Si vous souhaitez utiliser un clavier ou une pédale Bluetooth (comme AirTurn), activez-la.\nremote.double.press.title = Action de double pression\nremote.signal.failed = Echec de l'envoi du signal au serveur\nremote.navigation.settings.title = Paramètres de navigation\nremote.failed.finding.server = Impossible de trouver le serveur Quelea Mobile Remote. Veuillez vous assurer que Quelea est démarré et que vous avez entré la bonne URL.\nremote.select.book = Sélectionnez un recueil\nremote.swipe.navigation.title = Navigation par balayage\nremote.about.text.responsibility = Je ne peux pas garantir une expérience sans faille, donc je n'assumerai aucune responsabilité pour les problèmes qui pourraient survenir dans un environnement en direct.\nremote.about.title = À propos de cette application\nremote.needs.newer.version = Cette fonctionnalité nécessite que le serveur exécute Quelea $1 ou supérieur\nremote.select.chapter.verses = Sélectionnez le chapitre et le(s) verset(s)\nremote.about.text.support = N'hésitez pas à m'envoyer un e-mail à arvid@quelea.org si vous avez des questions ou rencontrez des problèmes, mais assurez-vous d'avoir démarré Quelea avant l'application (avec les deux serveurs actifs), que les deux appareils sont connectés au même réseau et que vous avez d'abord saisi l'URL correcte.\nremote.add.go.live = Ajouter et mettre en ligne\nremote.send.notice.tooltip = Ajouter un avis\nremote.privacy.policy = Politique de confidentialité\nremote.enable.dpad.navigation = Activer la navigation D-pad\nremote.action.item = Passer à l'élément suivant / précédent\nremote.ipv6.not.supported = Malheureusement, vous ne pouvez pas utiliser d'adresses IPv6. Vous devez utiliser une adresse IPv4 pour pouvoir utiliser cette application. Si vous ne savez pas comment le trouver, google «trouve l'adresse IP locale» et le nom de votre système d'exploitation. Saisissez l'adresse / URL IPv4 ci-dessous.\nremote.long.press.title = Action de pression longue\nremote.donations.link = Faire un don\nremote.port.needed = L'URL doit contenir le numéro de port à la fin (par exemple ': 1112'). Réessayer.\nremote.use.autoconnect = Essayez automatiquement de trouver l'URL du serveur\nremote.select.theme = Sélectionnez le thème\nremote.long.press.description = Sélectionnez ce que vous voulez faire si vous appuyez longuement sur un bouton lorsque vous naviguez avec l'une des deux options ci-dessus. Notez que cela ne fonctionnera pas avec les pédales AirTurn.\nremote.connected = Connecté!\nremote.on.end.title = Action de fin / début de l'élément\nremote.enable.volume.navigation = Activer la navigation dans le volume\nremote.on.end.description = Sélectionnez ce que vous voulez que l'application fasse lorsque vous naviguez avec l'une des deux options ci-dessus et atteignez la fin / le début d'un élément.\nremote.disable.record = Désactiver le bouton d'enregistrement\nremote.action.logo = Cacher le texte et afficher le logo\nremote.action.black = Cacher le texte avec un écran noir\nremote.action.nothing = Ne rien faire\nremote.about.text.app = Cette application est une application à but non lucratif conçue pour être utilisée avec Quelea (http://quelea.org), logiciel de projection pour les églises. Bien que ce ne soit plus en version bêta, ce n'est sûrement pas encore parfait et cette fonctionnalité n'est pas complète. Il s'agit d'un projet parallèle et principalement destiné à un usage personnel, mais il est volontiers partagé avec tous ceux qui pourraient le trouver utile.\nremote.report.issue = Signaler un problème\nremote.auto.progress.item = Progression vers l'élément suivant / précédent\nremote.theme.was.set = $1 a été défini comme thème global\nremote.swipe.navigation.description = Choisissez ce qui doit se passer si vous glissez vers la gauche ou vers la droite sur l'ecran.\nremote.action.clear = Cacher le texte avec le bouton Effacer\nremote.search.server = Serveur de recherche\nremote.wrong.content = Un contenu de page incorrect a été trouvé. Réessayer.\nremote.information.title = Informations\nremote.choose.action = Choisissez une action pour $1\nremote.double.press.description = Sélectionnez ce que vous voulez faire si vous appuyez sur deux boutons en même temps lorsque vous naviguez avec l'une des deux options ci-dessus.\nremote.control.app.name = Commande à distance de Quelea\nremote.no.wifi = Vous n'êtes pas connecté à un wifi. Veuillez définir l'URL manuellement ou vous connecter à un réseau Wi-Fi.\nremote.search.tooltip = Ajouter un chant ou un passage biblique\nremote.about.translating = A propos de la traduction de l'application\nremote.source.code = Code source\nremote.start.verse=Début du couplet\nremote.chapter=Chapitre\nremote.end.verse=Fin du couplet\nremote.volume.navigation.description = Utilisez les boutons de volume du téléphone pour naviguer vers la diapositive / l'élément suivant ou précédent.\nclient.id=Identification Client\nsong.sequence.tip=Conseil: Vous ajouter une section (Ex: Refrain) plusieurs fois!\nenter.valid.port=Veuillez entrer un nombre entre 1029 et 49151\nopen.sequence.editor.tooltip=Afficher l'éditeur de séquence\nlink.preview.and.live.dividers.label=Lier les séparateurs de panneau Aperçu et Direct\nstage.show.clock=Afficher l'horloge\ntranslation.text.options=Options de texte de traduction\ngeneral.text.options=Options générale de texte\nuse.default.translation.label=Utiliser la traduction par défaut\ntranslation.name.label=Nom de la traduction\npco.days.previous.setting=Jours précédent à importer\nbible.load.error.title=Erreur de chargement de la bible\nbible.load.error.question=Impossible de lire la bible - Elle est probablement corrompu ou dans un format invalide\nccli.licence=Licence CCLI\ndialog.image.group.title=Renommer le groupe d'images\ndialog.image.group.header=Groupe d'images\ngstreamer.warning.message=Quelea ne trouve pas GStreamer sur votre système. Sans lui, Quelea ne peut pas lire les vidéos, l'audio, et afficher des chants sur un fond vidéo. Voulez-vous le télécharger maintenant? Vous devrez redémarrer Quelea après avoir installé GStreamer pour que les changements prennent effet.\nblack.stage.view=Vue scène en noir avec écran principale\ngstreamer.warning.title=GStreamer est introuvable\ndownload.gstreamer=Télécharger GStreamer\ncontinue.without.gstreamer=Continuer sans GStreamer\nshow.small.song.on.slides.label=Afficher sur les diapositifs\nall=Toutes\nlast=Dernière\nconfirm.remove.bulk.question=Voulez-vous vraiment supprimer $1 chants de la base de données? Cette action est irréversible.\nfirst=Première\nbible.book.titus=Tite\nbible.book.1timothy=1 Timothée\nbible.book.mark=Marc\nbible.book.1samuel=1 Samuel\nbible.book.numbers=Nombres\nbible.book.revelation=Apocalypse\nbible.book.1thessalonians=1 Thessaloniciens\nbible.book.amos=Amos\nbible.book.hebrews=Hébreux\nbible.book.songofsolomon=Cantique des cantiques\nbible.book.2thessalonians=2 Thessaloniciens\nbible.book.micah=Michée\nbible.book.lamentations=Lamentations\nbible.book.judges=Juges\nbible.book.job=Job\nbible.book.philippians=Philippiens\nbible.book.ezekiel=Ezéchiel\nbible.book.james=Jacques\nbible.book.1chronicles=1 Chroniques\nbible.book.esther=Esther\nbible.book.malachi=Malachie\nbible.book.ruth=Ruth\nbible.book.galatians=Galates\nbible.book.jonah=Jonas\nbible.book.2samuel=2 Samuel\nbible.book.leviticus=Lévitique\nbible.book.jeremiah=Jérémie\nbible.book.2corinthians=2 Corinthiens\nbible.book.2peter=2 Pierre\nbible.book.psalms=Psaumes\nbible.book.deuteronomy=Deutéronome\nbible.book.romans=Romains\nbible.book.ecclesiastes=Ecclésiaste\nbible.book.ezra=Ezra\nbible.book.daniel=Daniel\nbible.book.proverbs=Proverbes\nbible.book.joshua=Josué\nbible.book.2john=2 Jean\nbible.book.zephaniah=Sophonie\nbible.book.acts=Actes\nbible.book.nehemiah=Néhémie\nbible.book.2chronicles=2 Chroniques\nbible.book.exodus=Exode\nbible.book.1john=1 Jean\nbible.book.genesis=Genèse\nbible.book.zechariah=Zacharie\nbible.book.jude=Jude\nbible.book.haggai=Aggée\nbible.book.isaiah=Esaïe\nbible.book.3john=3 Jean\nbible.book.1kings=1 Rois\nbible.book.ephesians=Ephésiens\nbible.book.philemon=Philémon\nbible.book.joel=Joël\nbible.book.luke=Luc\nbible.book.colossians=Colossiens\nbible.book.nahum=Nahoum\nbible.book.1corinthians=1 Corinthiens\nbible.book.john=Jean\nbible.book.habakkuk=Habaquq\nbible.book.matthew=Matthieu\nbible.book.hosea=Osée\nbible.book.1peter=1 Pierre\nbible.book.2timothy=2 Timothée\nbible.book.2kings=2 Rois\nbible.book.obadiah=Abdias\n"
  },
  {
    "path": "Quelea/languages/gb.lang",
    "content": "LANGUAGENAME=English (GB)\ndatabase.heading=Database\nimport.heading=Import\nqsp.button=Quelea Song Pack\nos.button=Opensong\nolp.button=OpenLP\nolyrics.button=OpenLyrics\nzw.button=ZionWorx\nsp.button=Sunday Plus\npco.button=Planning Center Online\npco.login.import.heading=Planning Center Online Login\npco.loginerror.title=Login Error\npco.loginerror.warning=Failed to login, check email and password and try again\npco.import.heading=Planning Center Online\npco.days.previous.setting=Past days to import\nelevanto.button=Elevanto\nelevanto.import.heading=Elevanto\nelevanto.loginsuccess.message=You may close this window and return to Quelea\nelevanto.loginerror.warning=Error logging into Elevanto\npassword.text=Password\nemailaddress.text=Email\nlogin.text=Login\nss.button=Survivor Songbook\nprojector.heading=Projector\ncontrols.heading=Controls\non.button=On\noff.button=Off\ncopy=Copy\nswitch.input.button=Switch Input\ngeneral.options.heading=General\ndisplay.options.heading=Display\nbible.options.heading=Bible\ncheck.for.update.label=Check for update on startup\n1.monitor.warn.label=Warn if only one monitor is connected\ncapitalise.start.line.label=Capitalise the start of each line\none.line.mode.label=Only preview one line per song section\ndisplay.song.info.label=Display song information\ntext.border.thickness.label=Text border thickness\nmax.chars.line.label=Maximum characters per line\nadvanced.label=Advanced\nok.button=OK\noutput.text=Output\ncontrol.screen.label=Control Screen\nprojector.screen.label=Projector screen\nstage.screen.label=Stage screen\ncustom.position.text=Custom Position\ndefault.bible.label=Default\nbible.load.error.title=Error loading bible\nbible.load.error.question=Unable to load bible - it's probably corrupt or in an invalid format.\nmax.verses.label=Maximum verses to display at once\nadd.bible.label=Add bible...\ndelete.bible.label=Delete current bible\ndelete.bible.confirmation=Do you really want to delete bible $1?\nnone.text=None\nnew.schedule.button=New Schedule\nopen.schedule.button=Open Schedule\nsave.schedule.button=Save Schedule\nsave.as.schedule.button=Save Schedule as...\nprint.schedule.button=Print Schedule\noptions.title=Options\noptions.button=Options\nexit.button=Exit\nnew.schedule.text=New Schedule\ncreate.new.schedule.text=Create a new schedule\nopen.schedule.text=Open Schedule\nopen.existing.schedule.text=Open an existing schedule\nsave.schedule.text=Save Schedule\nsave.schedule.disk.text=Save the schedule to disk\nsave.as.schedule.text=Save Schedule as\nsave.as.schedule.disk.text=Save schedule as a different file\nprint.schedule.text=Print Schedule\nprint.current.schedule.text=Print the current schedule\noptions.text=Options\ndisplay.options.text=Display the options dialog\nexit.text=Quit Quelea\nquit.quelea.text=Exit from Quelea\nlibrary.image.heading=Images\nlibrary.songs.heading=Songs\nlibrary.bible.heading=Bibles\nbible.heading=Bibles\nlibrary.song.search=Search\nclear.search.box=Clear search\nadd.song.text=Add song to database\nremove.song.text=Remove song from database\nlibrary.add.to.schedule.text=Add to schedule\nlibrary.copy.to.schedule.text=Copy to schedule\nlibrary.edit.song.text=Edit song\nlibrary.remove.song.text=Remove song\nlibrary.print.song.text=Print song\nadd.to.schedule.text=Add to Schedule\norder.service.heading=Order of Service\nmove.down.schedule.tooltip=Move down in schedule\nmove.up.schedule.tooltip=Move up in schedule\nremove.song.schedule.tooltip=Remove from schedule\nadjust.theme.tooltip=Adjust theme\nedit.song.text=Edit song\nnew.theme.text=New theme...\ntheme.select.text=Select theme:\ndefault.theme.name=Default\ndefault.theme.text=Default theme\nremove.theme.tooltip=Remove theme\nedit.theme.tooltip=Edit theme\nedit.theme.heading=Theme manager\npreview.heading=Preview\nlive.heading=Live\ngo.live.text=Go Live\nblack.screen.tooltip=Black screen\nclear.text.tooltip=Clear screen\nhide.display.output.tooltip=Hide display output\nschedule.heading=Schedule\nadd.song.button=Add song\nremove.item.button=Remove item\nadd.multimedia.heading=Add Multimedia\nadd.presentation.button=Add Presentation\nadd.video.button=Add Video\nadd.youtube.button=Add Youtube Video\nadd.live.video.button=Add Live Video\nadd.dvd.button=Add DVD\nadd.audio.button=Audio\nadd.audio.tooltip=Add Audio\nshare.heading=Share\nemail.button=Email Schedule\nmanage.notices.button=Manage Notices...\nnotices.heading=Notices\nnew.notice.text=New Notice\nedit.notice.text=Edit Notice\nremove.notice.text=Remove Notice\ndone.text=Done\nnew.notice.heading=New Notice\nnotice.text=Notice\nnotice.times.text=Times to Show\nnotice.infinite.question=Infinite?\nadd.notice.button=Add notice\nedit.notice.button=Edit notice\nyes.text=Yes\nno.text=No\ncancel.text=Cancel\nnew.song.button=New Song\nedit.song.button=Edit Song\ndelete.song.button=Delete Song\nsongs.heading=Songs\ntags.button=Manage tags...\nsource.button=The Source\neasyslides.button=EasySlides\npropresenter.button=ProPresenter\nfreeworship.button=Freeworship\neasyworship.button=EasyWorship 2009\nplainText.button=Plain text\nkingsway.button=Kingsway Online\nexport.heading=Export\nfilter.tag=Filter tags\ntags.colon.label=Tags:\nimport.button=Import\nimport.all.button=Import All\nimport.selection.button=Import Selection\nrefresh.button=Refresh\nclick.select.file.text=Click to select file\ncheck.duplicates.text=Check duplicates\nedit.song.title=Edit song\nbasic.information.heading=Basic information\ndetailed.info.heading=Detailed information\ntheme.heading=Theme\ntitle.label=Title\nauthor.label=Author\nrun.spellcheck.label=Spellcheck\nfix.apos.label=Sanitise apostrophes\ntrim.lines.tooltip=Trim lines\ntranspose.tooltip=Transpose...\ncancel.button=Cancel\nccli.number.label=CCLI number\ncopyright.label=Copyright\nyear.label=Year\npublisher.label=Publisher\ntags.label=Tags\ntype.tag.name.here.text=<Type tag names here>\nkey.label=Key\ncapo.label=Capo\nnotes.label=Notes\nfont.theme.label=Font\nchoose.color.text=Choose colour...\nbackground.text=Background\nbackground.theme.label=Background theme\ncolor.theme.label=Colour\nimage.theme.label=Image\nselect.color.title=Select Colour\nselect.color.button=Choose Colour\nnew.song.title=New Song\nsof.button=Songs of Fellowship\ntype.lyrics.here.text=Type lyrics here\nrtf.files.description=RTF files\nsng.files.description=SNG (SongBeamer) files\nvideopsalm.import.line1=This will import the VideoPsalm library from a JSON file.\nfreeworship.import.line1=This will import FreeWorship songs from XML files.\nsof.import.line1=This will import the SoF library from an RTF file.\nplaintext.import.line1=This will import songs from plain text files.\nkingsway.import.line1=This will import the kingsway song library from online.\nsongpro.import.line1=This will import songs from a SongPro SDB database.\nkingsway.import.line2=This will take a long time (potentially hours!), so please be patient and leave Quelea running!\neasyslides.import.line1=This will import songs from an EasySlides XML file.\npropresenter.import.line1=This will import songs from a Propresenter song file.\neasyworship.import.line1=This will import songs from an Easyworship Songs.MB file.\nmissionpraise.import.line1=This will import songs from Mission Praise RTF files.\nopenlyrics.import.line1=Select the location of openlyrics songs below.\nqsp.import.line1=Select the location of the Quelea songpack below.\nos.import.line1=Select the location of the Opensong database below.\nzw.import.line1=Select the location of the ZionWorx \"MainTable.dat\" file below.\nzw.import.line2=It can usually be found in \"C:\\\\ProgramData\\\\ZionWorx\\\\2.6\\\\Data\".\nolp.import.line1=Select the location of the OpenLP database below.\nsundayplus.import.line1=Select the location of the Sunday Plus file below.\nsource.import.line1=Select the location of the ymns directory on the source CD.\nsurvivor.import.line1=Select the location of the Survivor Songbook PDF below.\nsurvivor.import.line2=This must be the acetates.pdf file, not the guitar chords or the sheet music.\nimport.error.message=Sorry, there was a problem with the import. Please feel free to ask for help on the Quelea forum: https://quelea.discourse.group/\nemail.error.title=Email error\nemail.error.text=There was an error opening your email client. Make sure you have an email client installed and registered to handle eml files, otherwise you'll have to send the email manually.\nemail.text=Hi! Attached is a Quelea schedule you've been sent. Simply open it with Quelea and all the items should appear correctly.\nselect.image.button=Select Image\nimage.files.description=Image files\npng.files.description=PNG image files\ntools.label=Tools\nselect.songs.title=Select Songs\ncheck.uncheck.all.text=Check/Uncheck all\ndelete.theme.confirm.title=Confirm delete\ndelete.theme.question=Really delete this theme?\ntoo.many.verses.error=Sorry, can't display this many verses... please try a smaller number.\none.monitor.warning=Looks like you've only got one monitor installed. This is fine if you're just using Quelea to prepare some schedules but if you're using it in a live setting Quelea needs 2 monitors to work properly.\none.monitor.title=Only one monitor\nno.dvd.heading=No disc found\nno.dvd.error=Please insert a valid DVD or Blu-ray.\nadding.presentation.status=Importing presentation...\nadding.presentation.error.message=There was an error importing the presentation, perhaps it's corrupt?\nadding.presentation.error.title=Error importing presentation\nimporting.status=Importing...\nname.label=Name\nsimilar.colors.text=You've chosen very similar colours for the words and background which will be hard for the congregation to see. I'd advise you choose better colours!\nwarning.label=Warning\nfile.menu=File\ntools.menu=Tools\nschedule.menu=Schedule\ndatabase.menu=Database\nprojector.menu=Projector\nnew.theme.title=New Theme\nadd.theme.label=Add Theme\ntheme.name.label=Theme Name\ntheme.select.label=Select theme\ntheme.copy.label=Copy from theme\nhelp.menu=Help\nhelp.menu.website=Website\nhelp.menu.discussion=Support / Discussion (ask questions here)\nhelp.menu.feedback=Feedback\nhelp.menu.download=Download\nhelp.menu.update=Check for updates\nhelp.menu.about=About...\nhelp.menu.error.text=Sorry, we couldn't load that page. You can browse to it manually: $1\nhelp.menu.error.title=Error\nhelp.about.title=About\nhelp.about.version=Version\nhelp.about.close=Close\nhelp.about.line1=Quelea is licensed under the GPL (Version 3.)\nhelp.about.line2=It is, and always will be, free and open source software.\nnew.schedule.tooltip=New Schedule\nopen.schedule.tooltip=Open Schedule\nsave.schedule.tooltip=Save Schedule\nprint.schedule.tooltip=Print Schedule\nnew.song.tooltip=New Song\nadd.presentation.tooltip=Add Presentation\nadd.dvd.tooltip=Add DVD\nadd.video.tooltip=Add Video\nadd.multimedia.tooltip=Add Multimedia\nmanage.tags.tooltip=Manage Tags\nmanage.notices.tooltip=Manage Notices\nalready.running.error=It looks like you already have an instance of Quelea running.\\nMake sure you close all other instances before running the program.\nalready.running.title=Already running\nerror.schedule.message=There was a problem opening the schedule. Perhaps it's corrupt, or is not a schedule saved by Quelea.\nerror.schedule.title=Error opening schedule\nprint.chords.question=Include the chords when printing this song?\nprint.chords.export.question=Include the chords when exporting these songs?\nprinting.options.text=Print song\nspace.key=space\nupdating.db=Updating Database\nerror.updating.song.text=There was an error updating the song in the database, it may be corrupted.\nerror.text=Error\nquick.shortcut.description=Escape to cancel, shift+enter to save\nsave.before.exit.text=The schedule has been modified. Save before quitting?\nsave.before.exit.title=Unsaved schedule\nno.chords.message=This song doesn't have any lines of chords to transpose.\nno.chords.title=No chords\nerror.checking.updates.title=Couldn't check for updates\nerror.checking.updates.text=Sorry, there was an error checking for updates. Please check your internet connection then try again.\nnewer.version.available=There is a newer version of Quelea available\nno.newer.version.available=You are running the latest version of Quelea\nvisit.webpage.now=Visit the website to download it now?\ndownload.manual.update=You can download it here\nnewer.version.available.title=Update available\nno.newer.version.available.title=Already up-to-date!\ncheck.kingsway.start=You've already imported some items from the Kingsway library. Do you want to start importing from where you left off?\ncheck.kingsway.start.title=Already imported items\nimport.no.songs.title=No songs found\nimport.no.songs.text=Couldn't find any songs to import.\nstage.options.heading=Stage View\nstage.show.chords=Show chords?\nstage.line.alignment=Text Alignment\nstage.font.selection=Font\nstage.background.colour=Background Colour\nstage.lyrics.colour=Lyrics Colour\nstage.chord.colour=Chord Colour\nleft=Left\ncentre=Centre\nright=Right\nconfirm.label=Are you sure?\nschedule.clear.text=The schedule has been modified. Continue without saving?\npart=part\nhelp.menu.facebook=Facebook page\nvideo.error=Couldn't initialise the video libraries - video won't work. Please ask on the discuss list (see the help menu) for help solving this.\nvideo.error.title=Video error\ntext.shadow.label=Display text shadow\nadding.images=Adding images...\nsetup.oo.failed.text=Failed to setup OpenOffice for displaying presentations. Please ensure you have OpenOffice installed and the path provided is correct.\nsetup.oo.failed.title=OpenOffice failed to initialise\nuse.oo.label=Use OpenOffice for presentations (experimental)\noo.path=OpenOffice path\nbrowse=Browse...\nloading.text=Loading\nbuilding.bible.index=Loading bibles\nbible.search.title=Bible searcher\ninitial.search.text=<Type here to search>\nview.bible.button=View bibles...\nsearch.bible.button=Search bibles...\nall.text=All\nbible.browser.title=Bible Browser\nopen.in.browser=Open in Browser...\nkingsway.button.all=All Songs\nkingsway.button.one=One Song\nsong.id.selector=Please select the song ID\nbible.copy.error.text=Sorry, there was an error copying the bible across to the required directory.\nbible.delete.error.text=Sorry, there was an error deleting the bible from the required directory.\nbible.copy.error.heading=Error\nbible.delete.error.heading=Error\nselect.key.label=Select the new key:\ntranspose.label=Transpose\nalready.exists.overwrite.label=already exists. Overwrite?\noverwrite.text=Overwrite\ncant.save.schedule.title=Error saving schedule\ncant.save.schedule.text=Sorry, an error occurred and the schedule couldn't be saved.\nerror.removing.song.db=There was an error removing the song from the database.\nconfirm.remove.text=Confirm remove\nconfirm.remove.question=Really remove $1 from the database? This action cannot be undone.\nconfirm.remove.bulk.question=Really remove $1 songs from the database? This action cannot be undone.\nquick.edit.text=Quick Edit\nlibrary.preview.song.text=Preview song\nvideo.error.unsupported=Sorry, the video file you selected isn't supported.\nvideo.error.general=Sorry, there was an error with the video file you selected.\nvideo.theme.label=Video\nselect.video.button=Select Video\nrefresh.images.panel=Refresh Images\nadd.images.panel=Add Images\nselect.folder.images.panel=Select Folder...\ntext.position.label=Text Position\nimage.folder=Image Folder:\nquick.insert.text=Quick Insert\nconfirm.overwrite.title=File already exists!\nconfirm.overwrite.text=This file already exists. Would you like to replace it or continue without copying?\nfile.rename.button=Rename\nfile.replace.button=Replace\nfile.continue.button=Continue\nfile.rename.dialog.title=Rename\nfile.rename.dialog.text=Please enter the new file name:\ninterface.language.label=Interface language:\nlanguage.changed=Language Changed\nlanguage.changed.message=You must restart Quelea before the language change will take effect.\ndebug.location=Debug Log Location\ntop.text.position=Top\nmiddle.text.position=Middle\nbottom.text.position=Bottom\nshadow.color=Shadow Colour\nshadow.x=Shadow X Offset\nshadow.y=Shadow Y Offset\nselect.imported.songs.line1=The following songs have been imported.\nselect.imported.songs.line2=Select the ones you want to add to the database then hit \"Add\".\nselect.imported.songs.line3=Songs that Quelea thinks are duplicates have been unchecked.\nadd.text=Add\nadd.to.database.question=Add to database?\nselect.export.songs.line1=The following songs are in the database.\nselect.export.songs.line2=Select the ones you want to export then hit \"Add\".\nadd.to.songpack.question=Export song?\nprojection.window.title=Projection Window\nclear.live.on.remove.schedule=Clear item from live view on removal from schedule\nspelling.complete.text=Spelling check is complete.\ncomplete.title=Complete\nspelling.check.title=Spelling check\ncorrect.text=Correct\nignore.text=Ignore\nspelling.errors.in.doc.label=There are spelling errors in the document. Hit \"F7\" to open the spell check dialog.\nremove.image.text=Remove Image\ndelete.image.title=Delete Image\ndelete.image.confirmation=Really remove this image from the library? This action cannot be undone.\nnotice.expired.title=Notice expired\nnotice.expired.text=The notice you are editing has expired. Do you want to add it again?\ndictionary.language.text=Dictionary Language\nconfirm.entry.exit.text=Do you wish to save your changes to this song?\nconfirm.entry.exit.title=Save song?\nsave.text=Save\ndont.save.text=Don't Save\ngstreamer.warning.title=Couldn't find GStreamer\ngstreamer.warning.message=Quelea couldn't find GStreamer on your system. Without it, Quelea won't be able to play videos, audio, and show songs with video backgrounds. Do you want to download it now? You'll need to restart Quelea after you've installed GStreamer for the changes to take effect.\ncontinue.without.gstreamer=Continue without GStreamer\ndownload.gstreamer=Download GStreamer\nstartup.error.title=Startup Error\nstartup.error.text=Sorry, Quelea couldn't start for some reason on your system. If you'd like help trying to get it to run, please shoot off an email to support@quelea.org and attach the debug log file ($1).\\n\\nAlternatively, feel free to ask on the Quelea discuss group (https://quelea.discourse.group).\nfilefilters.description.survivor.songbook=Survivor acetates file\nfilefilters.description.xml.bibles=XML Bibles\nfilefilters.description.xml.easyslide=XML Easyslide files\nfilefilters.description.xml.files=XML files\nfilefilters.description.xml.openlyrics=XML openlyrics files\nfilefilters.description.video.files=Video files\nfilefilters.description.pmsong.files=Presentation Manager Songs\nfilefilters.description.vs.files=VideoPsalm databases\nfilefilters.description.audio.files=Audio files\nfilefilters.description.quelea.schedules=Quelea Schedules\nfilefilters.description.powerpoint.presentations=Powerpoint Presentations\nfilefilters.description.plain.text.song=Plain text song\nfilefilters.description.maintable.dat=ZionWorx MainTable database file\nfilefilters.description.multimedia.files=Multimedia files\nbible.search.results.found=results found\nbible.search.result.found=result found\nbible.search.keep.typing=Keep typing...\nuniform.font.size.label=Use uniform font size\nmax.font.size.label=Maximum font size\nthumbnail.size.label=Thumbnail size\nadditional.line.spacing.label=Additional line spacing\nlogo.screen.tooltip=Left-click display - Right-click set\nchange.graphics.label=Change Graphics\nfont.colour.label=Font Colour\nbackground.colour.label=Background Colour\nmobile.lyrics.heading=Mobile Lyrics\nuse.mobile.lyrics.label=Use Mobile Lyrics\nport.number.label=Port Number\nnavigate.mob.url.label=Mobile Lyrics URL\nserver.changed.label=Server Settings Changed\nserver.changed.message=You will need to restart Quelea for the new Server Settings to take effect.\nfilefilters.description.zip.files=Zip Files\nfilefilters.description.sqlite.files=SQLite Files\nloop.label=Loop\nseconds.label=seconds\nchosen.fonts.explanation=Quelea only shows a selection of fonts in the theme window. Drag the fonts that you use from the left panel to the right panel, drag the ones you don't from the right to the left.\nignored.fonts.label=Ignored fonts\nchosen.fonts.label=Chosen fonts\nfont.selection.dialog.title=Font Selection\nvideo.hue.label=Hue\nhover.for.position.label=Hover over the canvas to set text position\ntest.patterns.text=Test Patterns\ntest.patterns.explanation=The test patterns available here should help you calibrate your display's focus and colour settings properly. Click on a test image to show it on both the main and stage views.\nyoutube.url.label=Youtube video URL\nno.tdb.heading=TurboDB Data Exchange not found\nno.tdb.message=For technical reasons, you need to download TurboDB data exchange (https\\://www.dataweb.de/en/support/downloads.html) before Quelea can import ZionWorx databases.\\nWhen you've downloaded it, extract the contents of the zip file to $1.\\n\\nIf you have any issues, then please feel free to ask on the discussion group (https://quelea.discourse.group).\nshow.verse.numbers=Show verse numbers\nadd.song.hint.text=No songs? No problem. To add a song, click the \"New Song\" button on the left.\nadd.song.hint.search.text=There are no songs here that match this search yet. To add a song, click the \"New Song\" button on the left.\nfilefilters.description.songs.mb=Easyworship Songs.MB database\nfilefilters.description.songs.missionpraise=Mission Praise RTF files\nfilefilters.description.songs.worshiphim=Worship Him MDB files\ntranslate.tooltip=Song translations\nclose.button=Close\nadd.translation.button=Add translation...\nenter.translation.name.label=What language would you like to translate to?\ntranslate.dialog.title=Translation manager\nconfirm.remove.translation.title=Remove translation?\nconfirm.remove.translation.text=Really delete this translation?\ndefault.translation.label=Default translation\noverwrite.lyrics.title=Overwrite existing lyrics?\noverwrite.lyrics.text=We've translated lyrics automatically for you - do you want to use them?\\nYour current translation will be overwritten.\nauto.translate.label=Attempt to auto-translate songs\nchoose.translations.text=Choose translations\nselect.translation.label=Select the translation that you'd like to show in addition to the default lyrics:\ntranslate.heading=Translations\nremote.logo.text=Logo\nremote.black.text=Black\nremote.clear.text=Clear\nremote.next.text=Next Slide\nremote.prev.text=Previous Slide\nremote.nextitem.text=Next Item\nremote.previtem.text=Previous Item\nserver.settings.heading=Server Settings\nuse.remote.control.label=Use Remote Control\nnavigate.remote.control.label=Remote Control URL\nremote.empty.lyrics=Lyrics will be displayed here\nremote.control.password=Remote Control Password (Case sensitive)\nremote.logout.text=Logout\nremote.login.text=Please log in to continue\nremote.submit.text=Login\nmore.font.options.label=More font options\nmore.fonts.label=More fonts\ntranslation.font.text=Translation font\nshadow.text=Shadow\nsaving.schedule=Saving the schedule...\nsmall.text.position.label=Song and bible information position\nbible.passage.selector.prompt=[Chapter]:[Verse]-[Verse]\ntheme.button.tooltip=Set a global theme for the schedule\ncurrently.displaying.text=Currently displaying\nplay=Play\npause=Pause\nshow.small.song.text.label=Show small song information\nshow.small.song.on.slides.label=Show on slide(s)\nfirst=First\nlast=Last\nall=All\nshow.small.bible.text.label=Show small bible passage information\nuse.bible.verses=Split Bible passage slides by\nmax.items.per.slide=Max number of % per slide\nverses=verses\nwords=words\nedit.bible.passage.text=Edit Passage Theme\nnotice.colour.text=Notice Colour\nnotice.font.text=Notice Font\nnotice.speed.text=Notice Speed\nnotice.background.colour.text=Notice background colour\nnotice.position.text=Notice position\nnotice.font.size=Notice font size\nnotice.options.heading=Notices\nexport.pdf.button=Export to PDF\npdf.button=PDF\nexport.schedule.pdf.button=Export order of service to PDF\nfilefilters.description.pdf.files=PDF Files\nnot.started.label=Not started\nquelea.schedule.text=Quelea Schedule\nuser.options.options=User Options\ntext.options.options=Text Options\nstretch.video.label=Stretch Video\nexport.schedule.songs.pdf.button=Export songs to PDF\nexporting.label=Exporting\nuse.shadow.label=Use Shadow?\nshadow.color.label=Shadow Colour\nshadow.offset.label=Shadow Offset\nshadow.radius.label=Shadow Radius\nshadow.spread.label=Shadow Spread\nhelp.menu.manual=Manual\nedit.theme.text=Edit Theme\nchange.bible.version.text=Switch Version\nswitch.to.text=Switch to\nsave.qr.code.text=Save QR Code\nnonbreak.tooltip=Add non-breaking line\ncopying.video.please.wait.text=Hang on a moment - just copying the video file...\ntranslating.text.please.wait.text=Hang on a moment - grabbing a translation...\nfilefilters.description.usr.files=USR (SongSelect) files\nsongselect.import.line1=Select the SongSelect files below.\npm.import.line1=Select the Presentation Manager songs to import.\nsmi.import.line1=Select the Screen Monkey songs to import.\nsongselect.button=SongSelect\nvideopsalm.button=VideoPsalm\npm.button=Presentation Manager\nsm.button=Screen Monkey\ntranslation.export.heading=Translation export\ninclude.translations.question=Include the translations in the PDF file?\nslide.text=Slide\nautoplay.vid.label=Autoplay videos in live panel\nadvance.on.live.label=Advance schedule on live display\ndelete.translation.title=Delete translation\ndelete.translation.text=Delete the $1 translation?\nhelp.menu.wiki=Documentation\npreview.on.image.change.label=Preview item on image change\nadd.timer.tooltip=Add countdown timer\nfilefilters.description.image.video.files=Video And Image Files\ntimer.duration.label=Countdown duration\ntimer.file.label=Background file location\nduration.tooltip.label=#:## or ##m##s or ##:##am\ntranslation.choice.title=Translation Choice\nfont.options.title=Font Options\nnew.translation.title=New Translation\nadd.timer.title=Add Timer\nuntitled.theme.text=Untitled theme\ntimer.text.label=Additional Text\ntimer.text.prompt=Use # to position timer, e.g. \"Service begins in #\" will display \"Service begins in 05:00\"\ncountdown.label=Countdown Timer\ntimer.theme.label=Theme settings\ntimer.theme.button=Change Theme\nembed.media.in.schedule=Embed media in schedule file\nmediashout.import.line1=Select the location of the MediaShout db (exported to txt format) below:\nworshiphim.import.line1=Select the location of the Worship Him db (in mdb format) below:\nsongbeamer.import.line1=Select the location of the SNG files you want to import below:\nfilefilters.description.txt.files=.txt files\nfilefilters.description.csv.files=.csv files\nmediashout.button=MediaShout\nworshiphim.button=Worship Him\nsongbeamer.button=SongBeamer\nclear.stage.view=Clear Stage View with Main Display\nblack.stage.view=Black Stage View with Main Display\ntop=Top\nbottom=Bottom\nepicworship.import.line1=This will import songs from an EpicWorship Song Pack (.epc) file.\nfilefilters.description.epc=EpicWorship .epc songpack\nepicworship.button=EpicWorship\nadd.videos.panel=Add Videos\nremove.video.text=Remove Video\ndelete.video.title=Delete Video\ndelete.video.confirmation=Really remove this video from the library? This action cannot be undone.\nlibrary.video.heading=Videos\ntimer.files.description=Countdown timers\nadd.timers.panel=Add Timers\nlibrary.timer.heading=Timers\ntimer.save.label=Save timer?\ntimer.name.label=Name\nedit.timer.text=Edit Timer\nremove.timer.text=Delete Timer\nconfirm.remove.timer=Really remove $1 from the timer list? This action cannot be undone.\nkingsway.button.range=Range\nkingsway.range.import.text=Enter the range of song pages to download from Kingsway's website.\\nThe current maximum number of pages is around 3600.\nkingsway.range.import.heading=Import range of Kingsway songs\nsdb.files.description=Songpro database files\nsongpro.button=SongPro\noverflow.song.label=Overflow current song into next song\ninvalid.search=Invalid Search\nrcs.add.failed=Add Failed\nrcs.add.success=Add Successful\nrcs.add.song=Add Song to Schedule\nrcs.add.bible.error=There was an error adding $1 to the schedule\nrcs.submit=Submit\nrcs.song.search=Song\nrcs.bible.search=Bible\nrcs.search=Search and Add\nshow.video.library.panel=Show Video Library Tab (requires restart)\nstage.show.clock=Show Clock\nuse.24h.clock=Use 24H Clock\nsplit.bible.verses=Keep verses whole across slides\nno.verse.title=No verse found\nno.verse.message=We could not find one or more of the verses specified and have tried to continue without them.\nchorus.tooltip=Add chorus title\nrecordings.path=Path for recordings\ndownload.path=Download path\nconvert.mp3=Automatically convert recordings to MP3 files (requires VLC)\nrecording.warning.title=Set recordings path first\nrecording.warning.message=You have to set a path for where the recordings should be stored in the options panel before you can start recording.\nrecording.no.devices.title=No recording devices found\nrecording.no.devices.message=Sorry, no compatible recording devices were found.\\nMake sure your recording device is plugged in and enabled.\nsave.recording.before.exit.title=Unsaved recording\nsave.recording.before.exit.message=Would you like to save the recording before exiting?\nrecord.audio.tooltip=Record Audio\npause.record.tooltip=Pause Recording\nmax.lines.per.slide=Lines per slide (approximately)\npresentation.options.heading=Presentations\nrecordings.options.heading=Recordings\ncopy.song.db.default=Copy song to schedule by default\nmp.button=Mission Praise\nadd.pdf.tooltip=Add PDF\nimportexport.options.heading=Import/Export\npreview.failed=Preview Failed\nset.loop.manually.title=PowerPoint was not found\nset.loop.manually.message=The presentation has been closed. If you want to use Quelea's loop function with PowerPoint Viewer, you need to manually set the presentation to loop until stopped when you create it.\npresentation.changed.message=You will need to restart Quelea for the new Presentation Settings to take effect.\npresentation.changed.label=Presentation Settings Changed\npresentation.not.started.label=PowerPoint was not started\npresentation.not.started.message=Unfortunately, your presentation couldn't be started with PowerPoint. Maybe the file is corrupt?\npp.already.running.label=PowerPoint is already running\npp.already.running.message=Another instance of PowerPoint was found. Please close all instances of PowerPoint before launching a presentation in Quelea to avoid data loss.\npp.path=Path to the PowerPoint program\nuse.pp.label=Use PowerPoint for presentations\nclose.all.presentations.label=Close all open presentations\nclose.all.presentations.message=Please close all open windows of PowerPoint before pressing OK or it will automatically be done to avoid signals being sent to the wrong window.\nlive.text.message=Any text written below will be visible to the users of Mobile Lyrics when the main screen is empty.\\n\\nUse a blank line to start on a new slide. You can also use the clear button (or CTRL + Return) to reset on both ends. More than 200 characters in one slide will be automatically shortened for the user.\nlive.text.title=Live Text\nexit.live.text=Exit Live Text\nclear.live.text=Clear\ndefault.translation=Default\nselect.language=Select language:\nsend.live.text=Live Text\nconverting.to.mp3=Converting recording to MP3\nverse.tooltip=Add verse title\nbridge.tooltip=Add bridge title\nprechorus.tooltip=Add pre-chorus title\ntag.tooltip=Add tag title\nadd.website=Add website\nfocus.switcher.title=Quelea Focus Switcher\nfocus.switcher.message=Toggle window focus here if needed during the presentation.\nfocus.pp=Shift focus to PowerPoint\nfocus.quelea=Shift focus to Quelea\nwebsite.dialog.title=Web page URL\nwebsite.dialog.header=Enter web page URL\nwebsite.dialog.content=Enter the web page you would like to display:\npaste.label=Paste\nundo.label=Undo\nredo.label=Redo\nshow.extra.live.panel.toolbar.options.label=Show extra live panel toolbar options\nlink.preview.and.live.dividers.label=Link preview and live panel dividers\nsave.add.notice.button=Save and add\nsaved.notices=Saved notices\ndelete.notice.button=Delete\nschedule.items.skipped.text=Some schedule items don't have their media embedded, so they weren't added.\nschedule.items.skipped.header=Schedule items skipped\nsong.sequence=Song sequence:\nsequence.selection.dialog.title=Sequence Selection\nchosen.sequence.explanation=Drag items from left to right or double click to create a song sequence. The lyrics slides will later be shown in this order, regardless of which order the lyrics are stored in the database.\navailable.sections.label=Available sections in this song\nremove.sequence.tooltip=Remove section from sequence order\nmove.up.sequence.tooltip=Move section up in sequence order\nmove.down.sequence.tooltip=Move section down in sequence order\nchosen.sequence.label=Chosen sequence order\nsequence.tooltip=Song sequence dialog\nvideo.loop.tooltip=Toggle looping on / off\nallow.item.theme.override.global=Allow custom item themes to override global theme\nsong.default.theme.label=Song default\nbible.default.theme.label=Bible default\nsmall.song.position.label=Song information position\nsmall.bible.position.label=Bible information position\nsmall.bible.size.label=Bible information size\nsmall.song.size.label=Song information size\ninterface.theme.label=Application theme\ndefault.theme.label=Default\ndark.theme.label=Dark\ntheme.changed=Theme Changed\ntheme.changed.message=You must restart Quelea before the theme change will take effect.\ndb.song.preview.label=Database song preview\ndb.song.preview.label.control=None\ndb.song.preview.label.databasepreview=In database pane\ndb.song.preview.label.previewpane=In preview pane\nmobile.remote.heading=Mobile Remote\ninterface.options.options=Interface Options\ngeneral.interface.options=General Interface Options\nsmall.song.text.options=Small Song Text Options\nsmall.bible.text.options=Small Bible Text Options\ngeneral.user.options=General User Options\ntheme.options=Theme Options\nschedule.options=Schedule Options\nfilefilters.description.propresenter=Propresenter songs\nfilefilters.description.sunday.plus=Sunday plus songs\nsong.list=Song list\npassword.empty.label=Empty password found\npassword.empty.message=The server password cannot be empty. The default password \"quelea\" will be used unless you enter something in the password box.\nclick.to.add=Click to add\nbible.version=Bible Version\nslide.transition.label=Use fade transition between slides\nopen.sequence.editor.tooltip=Show sequence editor\nsong.sequence.tip=Tip: You can add one section (e.g. chorus) more than once!\nremote.select.book=Select book\nremote.search.tooltip=Add a song or a bible passage\nremote.search.server=Search server\nremote.add.go.live=Add and go live\nremote.failed.finding.server=Failed to find the Quelea Mobile Remote server. Please make sure Quelea is started and that you've entered the right URL.\nremote.navigation.settings.title=Navigation settings\nremote.enable.volume.navigation=Enable volume navigation\nremote.volume.navigation.description=Use the phone hardware volume buttons to navigate to next or previous slide/item.\nremote.enable.dpad.navigation=Enable dpad navigation\nremote.dpad.navigation.description=Use dpad buttons (up/down) to navigate to next or previous slide/item. If you want to use a bluetooth keyboard or pedal (like AirTurn), activate this.\nremote.swipe.navigation.title=Swipe navigation\nremote.swipe.navigation.description=Choose what should happen if you swipe left or right on the screen.\nremote.auto.progress.item=Progress to next/previous item\nremote.action.clear=Hide text with clear button\nremote.action.logo=Hide text and show logo\nremote.action.black=Hide text with black screen\nremote.action.nothing=Do nothing\nremote.action.item=Move to next/previous item\nremote.action.slide=Move to next/previous slide\nremote.disable.record=Disable the record button\nremote.about.title=About this app\nremote.choose.action=Choose action for $1\nremote.control.app.name=Quelea Mobile Remote\nremote.select.theme=Select theme\nremote.about.text.app=This app is a non-profit app made to use with the open source church software Quelea (http://quelea.org). Although it's no longer in beta, it's surely not flawless yet nor is it feature complete. This is a side project and mostly meant for personal usage, but is gladly shared with anyone who might find it useful.\nremote.about.text.support=Feel free to send me an email at arvid @ quelea.org if you have any questions or are experiencing issues. Just make sure you've started Quelea before the app (with both servers active), that both devices are connected to same network and that you've entered the correct URL first.\nremote.about.text.responsibility=I cannot guarantee a flawless experience, so I will not take responsibility for any issues that could occur in a live setting.\nremote.ipv6.not.supported=Unfortunately you can't use IPv6 addresses. You need to use an IPv4 address to be able to use this app. If you don't know how to find it, google 'find local ip' and the name of your operating system. Enter the IPv4 address/URL below.\nremote.on.end.title=Item end/beginning action\nremote.on.end.description=Select what you want the app to do when you navigate with either of the two options above and reach the end/beginning of an item.\nremote.long.press.description=Select what you want to happen if you long-press a button when you are navigating with either of the two options above. Note that this won\\'t work with AirTurn pedals.\nremote.long.press.title=Long-press action\nremote.double.press.title=Double press action\nremote.double.press.description=Select what you want to happen if you press two buttons at the same time when you are navigating with either of the two options above.\nremote.select.chapter.verses=Select chapter and verse(s)\nremote.theme.was.set=$1 was set as the global theme\nremote.port.needed=The URL must contain the port number at the end (e.g. ':1112'). Try again.\nremote.connected=Connected!\nremote.wrong.content=The wrong page content was found. Try again.\nremote.no.wifi=You are not connected to a wifi. Please set the URL manually or connect to a wifi.\nremote.use.autoconnect=Automatically try to find the server URL\nremote.information.title=Information\nremote.report.issue=Report an issue\nremote.about.translating=About translating the app\nremote.privacy.policy=Privacy policy\nremote.donations.link=Donate\nremote.needs.newer.version=This feature needs the server to run Quelea $1 or above\nremote.source.code=Source code\nremote.send.notice.tooltip=Add a notice\nremote.signal.failed=Failed sending the signal to the server\nremote.chapter=Chapter\nremote.start.verse=Start verse\nremote.end.verse=End verse\nclient.id=Client ID\nenter.valid.port=Please enter a number between 1029 and 49151\ngeneral.text.options=General Text Options\ntranslation.text.options=Translation Text Options\nuse.default.translation.label=Use Default Translation\ntranslation.name.label=Translation name\nccli.licence=CCLI Licence\ndialog.image.group.header=Image Group\ndialog.image.group.title=Rename image group\nbible.book.genesis=Genesis\nbible.book.exodus=Exodus\nbible.book.leviticus=Leviticus\nbible.book.numbers=Numbers\nbible.book.deuteronomy=Deuteronomy\nbible.book.joshua=Joshua\nbible.book.judges=Judges\nbible.book.ruth=Ruth\nbible.book.1samuel=1 Samuel\nbible.book.2samuel=2 Samuel\nbible.book.1kings=1 Kings\nbible.book.2kings=2 Kings\nbible.book.1chronicles=1 Chronicles\nbible.book.2chronicles=2 Chronicles\nbible.book.ezra=Ezra\nbible.book.nehemiah=Nehemiah\nbible.book.esther=Esther\nbible.book.job=Job\nbible.book.psalms=Psalms\nbible.book.proverbs=Proverbs\nbible.book.ecclesiastes=Ecclesiastes\nbible.book.songofsolomon=Song of Solomon\nbible.book.isaiah=Isaiah\nbible.book.jeremiah=Jeremiah\nbible.book.lamentations=Lamentations\nbible.book.ezekiel=Ezekiel\nbible.book.daniel=Daniel\nbible.book.hosea=Hosea\nbible.book.joel=Joel\nbible.book.amos=Amos\nbible.book.obadiah=Obadiah\nbible.book.jonah=Jonah\nbible.book.micah=Micah\nbible.book.nahum=Nahum\nbible.book.habakkuk=Habakkuk\nbible.book.zephaniah=Zephaniah\nbible.book.haggai=Haggai\nbible.book.zechariah=Zechariah\nbible.book.malachi=Malachi\nbible.book.matthew=Matthew\nbible.book.mark=Mark\nbible.book.luke=Luke\nbible.book.john=John\nbible.book.acts=Acts\nbible.book.romans=Romans\nbible.book.1corinthians=1 Corinthians\nbible.book.2corinthians=2 Corinthians\nbible.book.galatians=Galatians\nbible.book.ephesians=Ephesians\nbible.book.philippians=Philippians\nbible.book.colossians=Colossians\nbible.book.1thessalonians=1 Thessalonians\nbible.book.2thessalonians=2 Thessalonians\nbible.book.1timothy=1 Timothy\nbible.book.2timothy=2 Timothy\nbible.book.titus=Titus\nbible.book.philemon=Philemon\nbible.book.hebrews=Hebrews\nbible.book.james=James\nbible.book.1peter=1 Peter\nbible.book.2peter=2 Peter\nbible.book.1john=1 John\nbible.book.2john=2 John\nbible.book.3john=3 John\nbible.book.jude=Jude\nbible.book.revelation=Revelation"
  },
  {
    "path": "Quelea/languages/hu.lang",
    "content": "LANGUAGENAME=Hungarian (HU)\ndatabase.heading=Adatbázis\nimport.heading=Importálás\nqsp.button=Quelea énekgyűjtemény\nos.button=Opensong\nolp.button=OpenLP\nolyrics.button=OpenLyrics\nzw.button=ZionWorx\nsp.button=Sunday Plus\npco.button=Planning Center Online\npco.login.import.heading=Planning Center Online bejelentkezés\npco.loginerror.title=Bejelentkezési hiba\npco.loginerror.warning=Sikertelen bejelentkezés, az email és jelszó ellenőrzése után próbáld újra\npco.import.heading=Planning Center Online\nelevanto.button=Elevanto\nelevanto.import.heading=Elevanto\nelevanto.loginsuccess.message=Bezárhatod ezt az ablakot és visszatérhetsz a Quelea-hoz\nelevanto.loginerror.warning=Sikertelen bejelentkezés az Elevanto-hoz\npassword.text=Jelszó\nemailaddress.text=Email\nlogin.text=Bejelentkezés\nss.button=Survivor Songbook\nprojector.heading=Projektor\ncontrols.heading=Vezérlők\non.button=Be\noff.button=Ki\ncopy=Másolás\nswitch.input.button=Kapcsoló\ngeneral.options.heading=Általános\ndisplay.options.heading=Kijelző\nbible.options.heading=Biblia\ncheck.for.update.label=Frissítések keresése induláskor\n1.monitor.warn.label=Figyelmeztessen, ha csak egy monitor van csatlakoztatva\ncapitalise.start.line.label=Minden sor kezdőbetűje legyen nagybetűs\none.line.mode.label=Az előnézetben csak egy sor látszódjon versszakonként\ndisplay.song.info.label=Az ének információinak megjelenítése\ntext.border.thickness.label=A szöveg körvonalának vastagsága\nmax.chars.line.label=A soronkénti maximális karakterek száma\nadvanced.label=Haladó\nok.button=OK\noutput.text=Kimenet\ncontrol.screen.label=Vezérlő képernyő\nprojector.screen.label=Kivetítő képernyő\nstage.screen.label=Színpad képernyő\ncustom.position.text=Egyedi pozíció\ndefault.bible.label=Alapértelmezett\nmax.verses.label=Egyszerre megjelenítendő versek száma\nadd.bible.label=Biblia hozzáadása...\ndelete.bible.label=Az aktuális biblia törlése\ndelete.bible.confirmation=Biztosan szeretnéd törölni a $1 bibliát?\nnone.text=Egyik sem\nnew.schedule.button=Új vetítéslista\nopen.schedule.button=Vetítéslista megnyitása\nsave.schedule.button=Vetítéslista mentése\nsave.as.schedule.button=Vetítéslista mentése másként...\nprint.schedule.button=Vetítéslista nyomtatása\noptions.title=Beállítások\noptions.button=Beállítások\nexit.button=Kilépés\nnew.schedule.text=Új vetítéslista\ncreate.new.schedule.text=Új vetítéslista létrehozása\nopen.schedule.text=Vetítéslista megnyitása\nopen.existing.schedule.text=Már meglévő vetítéslista megnyitása\nsave.schedule.text=Vetítéslista mentése\nsave.schedule.disk.text=Vetítéslista lemezre mentése\nsave.as.schedule.text=Vetítéslista mentése másként\nsave.as.schedule.disk.text=Vetítéslista mentése eltérő fájlként\nprint.schedule.text=Vetítéslista nyomtatása\nprint.current.schedule.text=Jelenlegi vetítéslista nyomtatása\noptions.text=Beállítások\ndisplay.options.text=Beállítások ablak megjelenítése\nexit.text=Quelea bezárása\nquit.quelea.text=Kilépés a Quelea-ból\nsave.schedule.tooltip=Vetítéslista mentése\nprint.schedule.tooltip=Vetítéslista nyomtatása\nlibrary.image.heading=Képek\nlibrary.songs.heading=Énekek\nlibrary.bible.heading=Bibliák\nbible.heading=Bibliák\nlibrary.song.search=Keresés\nclear.search.box=Keresés törlése\nadd.song.text=Ének hozzáadása az adatbázishoz\nremove.song.text=Ének törlése az adatbázisból\nlibrary.add.to.schedule.text=Hozzáadás a vetítéslistához\nlibrary.copy.to.schedule.text=Másolás a vetítéslistához\nlibrary.edit.song.text=Ének szerkesztése\nlibrary.remove.song.text=Ének törlése\nlibrary.print.song.text=Ének nyomtatása\nadd.to.schedule.text=Hozzáadás a vetítéslistához\norder.service.heading=Vetítéslista sorrendje\nmove.down.schedule.tooltip=Lejjebb a listában\nmove.up.schedule.tooltip=Feljebb a listában\nremove.song.schedule.tooltip=Törlés a listából\nadjust.theme.tooltip=Téma testreszabása\nedit.song.text=Ének szerkesztése\nnew.theme.text=Új téma...\ntheme.select.text=Téma kiválasztása:\ndefault.theme.name=Alapértelmezett\ndefault.theme.text=Alapértelmezett téma\nremove.theme.tooltip=Téma törlése\nedit.theme.tooltip=Téma szerkesztése\nedit.theme.heading=Témakezelő\npreview.heading=Előnézet\nlive.heading=Élő\ngo.live.text=Élőbe!\nblack.screen.tooltip=Fekete képernyő\nclear.text.tooltip=Üres képernyő\nhide.display.output.tooltip=Kimenő kép elrejtése\nschedule.heading=Vetítéslista\nadd.song.button=Ének hozzáadása\nedit.song.button=Ének szerkesztése\nremove.item.button=Elem törlése\nadd.multimedia.heading=Multimédia hozzáadása\nadd.presentation.button=Prezentáció hozzáadása\nadd.video.button=Videó hozzáadása\nadd.youtube.button=Youtube videó hozzáadása\nadd.live.video.button=Élő videó hozzáadása\nadd.dvd.button=DVD hozzáadása\nadd.audio.button=Audió\nadd.audio.tooltip=Audió hozzáadása\nshare.heading=Megosztás\nemail.button=Vetítéslista küldése e-mailben\nmanage.notices.button=Értesítések kezelése...\nnotices.heading=Értesítések\nnew.notice.text=Új értesítés\nedit.notice.text=Értesítés szerkesztése\nremove.notice.text=Értesítés törlése\ndone.text=Kész\nnew.notice.heading=Új értesítés\nnotice.text=Értesítés\nnotice.times.text=Hányszor jelenjen meg\nnotice.infinite.question=Végtelenített?\nadd.notice.button=Értesítés hozzáadása\nedit.notice.button=Értesítés szerkesztése\nyes.text=Igen\nno.text=Nem\ncancel.text=Mégsem\nnew.song.button=Új ének\n\ndelete.song.button=Ének törlése\nsongs.heading=Énekek\ntags.button=Címkék kezelése...\nsource.button=The Source\neasyslides.button=EasySlides\nfreeworship.button=Freeworship\neasyworship.button=EasyWorship 2009\nplainText.button=Egyszerű szöveg\nkingsway.button=Kingsway Online\nsof.button=Songs of Fellowship\nexport.heading=Exportálás\nfilter.tag=Címkék szűrése\ntags.colon.label=Címkék:\nimport.button=Importálás\nimport.all.button=Minden importálása\nimport.selection.button=A kiválasztottak importálása\nrefresh.button=Frissítés\nclick.select.file.text=Kattints a fájl kiválasztásához\ncheck.duplicates.text=Duplázódások keresése\nedit.song.title=Ének szerkesztése\nbasic.information.heading=Alap információk\ndetailed.info.heading=Részletes információk\ntheme.heading=Téma\ntitle.label=Cím\nauthor.label=Szerző\nrun.spellcheck.label=Helyesírás-ellenőrzés\nfix.apos.label=Aposztrófok kijavítása\ntrim.lines.tooltip=Sorok levágása\ntranspose.tooltip=Transzponálás...\ncancel.button=Mégsem\nccli.number.label=CCLI szám\ncopyright.label=Copyright\nyear.label=Év\npublisher.label=Kiadó\ntags.label=Címkék\ntype.tag.name.here.text=<Írd ide a címkéket>\nkey.label=Kulcs\ncapo.label=Kápó\nnotes.label=Megjegyzések\nfont.theme.label=Betűtípus\nchoose.color.text=Válassz színt...\nbackground.text=Háttér\nbackground.theme.label=Háttér téma\ncolor.theme.label=Szín\nimage.theme.label=Kép\nselect.color.title=Szín kiválasztása\nselect.color.button=Válassz színt\nnew.song.title=Új ének\n\ntype.lyrics.here.text=Ide írd az énekszöveget\nrtf.files.description=RTF fájlok\nsng.files.description=SNG (SongBeamer) fájlok\nvideopsalm.import.line1=VideoPsalm énekgyűjtemény importálása egy JSON fájlból.\nfreeworship.import.line1=FreeWorship énekgyűjtemény importálása XML fájlokból.\nsof.import.line1=Songs of Fellowship énekgyűjtemény importálása egy RTF fájlból.\nplaintext.import.line1=Egyszerű szöveges fájlokban tárolt énekszövegek importálása.\nkingsway.import.line1=A kingsway énekgyűjtemény importálása az internetről.\nsongpro.import.line1=SongPro énekgyűjtemény importálása egy SDB adatbázisból.\nkingsway.import.line2=Ez a folyamat hosszú ideig is eltarthat (akár órákig!), így kérlek légy türelmes és hagy a Quelea-t futni!\neasyslides.import.line1=EasySlides énekgyűjtemény importálása egy XML fájlból.\neasyworship.import.line1=Easyworship énekgyűjtemény importálása egy Songs.MB fájlból.\nmissionpraise.import.line1=Mission Praise énekgyűjtemény importálása  RTF fájlokból.\nopenlyrics.import.line1=Válaszd ki az openlyrics formátumú énekeket tartalmazó zip fájl helyét.\nqsp.import.line1=Válaszd ki a Quelea énekgyűjtemény helyét.\nos.import.line1=Válaszd ki az Opensong adatbázis helyét.\nzw.import.line1=Válaszd ki a ZionWorx \"MainTable.dat\" fájl helyét.\nzw.import.line2=Általában a \"C:\\\\ProgramData\\\\ZionWorx\\\\2.6\\\\Data\" mappában található.\nolp.import.line1=Válaszd ki az OpenLP adatbázis helyét.\nsundayplus.import.line1=Válaszd ki a Sunday Plus adatbázis helyét.\nsundayplus.import.line2=(Az importáló feltételezi, hogy a PTF fájlok a zip fájl gyökerében találhatók.)\nsource.import.line1=Válaszd ki a ymns könyvtárat a forrás CD-n.\nsurvivor.import.line1=Válaszd ki a Survivor Songbook PDF helyét.\nsurvivor.import.line2=Az acetates.pdf fájlt kell kiválasztani, nem a gitár akkordokat vagy a kottát tartalmazót.\nimport.error.message=Sajnálom, de probléma történt az importálás során. Kérlek kérj segítséget a Quelea fórumában: https://quelea.discourse.group/\nemail.error.title=E-mail hiba\nemail.error.text=Hiba történt az e-mail kliens megnyitása közben. Ellenőrizd, hogy van-e telepítve e-mail kliens a gépen, illetve társítva vannak-e az eml fájlok, egyébként manuálisan kell küldened az e-mailt.\nemail.text=Szia! A csatolmányban egy Quelea vetítéslistát küldtek neked. Egyszerűen csak nyisd meg a fájlt a Quelea-ban és az összes elemnek helyesen kell megjelennie.\nselect.image.button=Kép kiválasztása\nimage.files.description=Kép fájlok\npng.files.description=PNG képfájlok\ntools.label=Eszközök\nselect.songs.title=Ének kiválasztása\ncheck.uncheck.all.text=Összes kijelölése/Kijelölések törlése\ndelete.theme.confirm.title=Törlés megerősítése\ndelete.theme.question=Valóban törölni szeretnéd ezt a témát?\ntoo.many.verses.error=Sajnálom, de nem lehet ilyen sok versszakot megjeleníteni... kérlek próbálkozz egy kisebb számmal.\none.monitor.warning=Úgy tűnik csak egy telepített monitorral rendelkezel. Ez rendben van, ha csak azért használod a Quelea-t, hogy előkészítsd a vetítéslistát, azonban, ha élő vetítésre használod, akkor a helyes működéshez 2 kijelzőre lesz szükséged.\none.monitor.title=Csak egy monitor\nno.dvd.heading=Nem található lemez\nno.dvd.error=Kérlek érvényes DVD vagy Blu-ray lemezt helyezz be.\nadding.presentation.status=Prezentáció importálása...\nadding.presentation.error.message=Hiba történt a prezentáció importálása során, talán hibás a fájl?\nadding.presentation.error.title=Prezentáció importálás hiba\nimporting.status=Importálás...\nname.label=Név\nsimilar.colors.text=Nagyon hasonló színt választottál a szavaknak és háttérnek, ami nehezen olvasható lesz a gyülekezet számára. Azt tanácsolom válassz jobb színösszeállítást!\nwarning.label=Figyelmeztetés\nfile.menu=Fájl\ntools.menu=Eszközök\nschedule.menu=Vetítéslista\ndatabase.menu=Adatbázis\nprojector.menu=Projektor\nnew.theme.title=Új téma\nadd.theme.label=Téma hozzáadása\ntheme.name.label=Téma neve\ntheme.select.label=Téma választása\ntheme.copy.label=Másolás témáról\nhelp.menu=Segítség\nhelp.menu.website=Weboldal\nhelp.menu.discussion=Támogatás / Fórum (itt teheti fel kérdéseit)\nhelp.menu.feedback=Visszajelzés\nhelp.menu.download=Letöltés\nhelp.menu.update=Frissítések keresése\nhelp.menu.about=Névjegy...\nhelp.menu.error.text=Sajnálom, de ez az oldal nem nyitható meg. Kérlek nyisd meg manuálisan a következő címet: $1\nhelp.menu.error.title=Hiba\nhelp.about.title=Névjegy\nhelp.about.version=Verzió\nhelp.about.close=Bezár\nhelp.about.line1=A Quelea GPL licenc 3-as verziója alatt került kiadásra\nhelp.about.line2=Ez egy ingyenes, nyílt forráskódú szoftver, amely mindig az is marad.\nnew.schedule.tooltip=Új vetítéslista\nopen.schedule.tooltip=Vetítéslista megnyitása\n\n\nnew.song.tooltip=Új ének\nadd.presentation.tooltip=Prezentáció hozzáadása\nadd.dvd.tooltip=DVD hozzáadása\nadd.video.tooltip=Videó hozzáadása\nadd.multimedia.tooltip=Multimédia hozzáadása\nmanage.tags.tooltip=Címkék kezelése\nmanage.notices.tooltip=Értesítések kezelése\nalready.running.error=Úgy tűnik a Quelea már fut egy másik ablakban.\\Győződj meg róla, hogy bezártad-e az összes többi példányt, mielőtt futtatnád a programot.\nalready.running.title=Már fut\nerror.schedule.message=Probléma történt a vetítéslista megnyitása közben. Talán hibás a fájl, vagy ez nem egy Quelea-ban mentett vetítéslista.\nerror.schedule.title=Vetítéslista megnyitási hiba\nprint.chords.question=Az akkordokat is szeretnéd kinyomtatni az ének nyomtatásakor?\nprint.chords.export.question=Az akkordokat is szeretnéd exportálni, amikor az énekeket exportálod?\nprinting.options.text=Ének nyomtatása\nspace.key=szóköz\nupdating.db=Adatbázis frissítése\nerror.updating.song.text=Hiba történt az ének adatbázisban való frissítése során, valószínűleg meghibásodott.\nerror.text=Hiba\nquick.shortcut.description=Escape a törléshez, Shift+Enter a mentéshez\nsave.before.exit.text=A vetítéslistában módosítások történtek. Elmented kilépés előtt?\nsave.before.exit.title=Nem mentett vetítéslista\nno.chords.message=Ez az ének nem tartalmaz egyetlen sor akkordot sem a transzponáláshoz.\nno.chords.title=Nincsenek akkordok\nerror.checking.updates.title=Nem lehet frissítéseket keresni\nerror.checking.updates.text=Sajnálom, hiba történt a frissítések keresése során. Kérlek ellenőrizd az internetkapcsolatot és próbáld újra.\nnewer.version.available=Újabb Quelea verzió érhető el\nno.newer.version.available=A legfrissebb Quelea verziót futtatod\nvisit.webpage.now=Meglátogatod most a weboldalt a letöltéshez?\ndownload.manual.update=Itt lehet letölteni\nnewer.version.available.title=Elérhető frissítés\nno.newer.version.available.title=Már a legújabb!\ncheck.kingsway.start=Már importált pár elemet a Kingsway gyűjteményből. Szeretné onnan folytatni ahol abbahagyta?\ncheck.kingsway.start.title=Már importált elemek\nimport.no.songs.title=Nem találhatók énekek\nimport.no.songs.text=Nem található egyetlen ének sem az importáláshoz.\nstage.options.heading=Színpadi nézet\nstage.show.chords=Mutassa az akkordokat?\nstage.line.alignment=Szöveg igazítás\nstage.font.selection=Betűtípus\nstage.background.colour=Háttérszín\nstage.lyrics.colour=Szövegszín\nstage.chord.colour=Akkord színe\nleft=Balra\ncentre=Középre\nright=Jobbra\nconfirm.label=Biztos vagy benne?\nschedule.clear.text=A vetítéslistában módosítások történtek. Folytatod mentés nélkül?\npart=rész\nhelp.menu.facebook=Facebook oldal\nvideo.error=Nem lehet inicializálni a videó könyvtárat - a videó nem fog működni. Kérlek érdeklődj a fórumban (Segítség menüpont alatt) hogy segíthessünk megoldani a problémát.\nvideo.error.title=Videó hiba\ntext.shadow.label=Szöveg árnyékának mutatása\nadding.images=Képek hozzáadása...\nsetup.oo.failed.text=Nem sikerült beállítani az OpenOffice-t a prezentációk megjelenítéséhez. Kérlek győződj meg arról, hogy az OpenOffice telepítve van és az elérési út helyesen lett megadva.\nsetup.oo.failed.title=Sikertelen OpenOffice inicializálás\nuse.oo.label=Használja az OpenOffice-t a prezentációkhoz (kísérleti)\noo.path=OpenOffice elérési út\nbrowse=Tallózás...\nloading.text=Betöltés\nbuilding.bible.index=Bibliák betöltése\nbible.search.title=Biblia kereső\ninitial.search.text=<Ide gépelj a kereséshez>\nview.bible.button=Bibliák mutatása...\nsearch.bible.button=Bibliák keresése...\nall.text=Összes\nbible.browser.title=Biblia tallózása\nopen.in.browser=Megnyitás böngészőben...\nkingsway.button.all=Minden ének\nkingsway.button.one=Egy ének\nsong.id.selector=Kérem válaszd ki az ének ID-t\nbible.copy.error.text=Sajnálom, de hiba történt a biblia kívánt könyvtárba másolása során.\nbible.delete.error.text=Sajnálom, de hiba történt a biblia törlése során.\nbible.copy.error.heading=Hiba\nbible.delete.error.heading=Hiba\nselect.key.label=Új kulcs kiválasztása:\ntranspose.label=Transzponálás\nalready.exists.overwrite.label=Már létezik. Felülírja?\noverwrite.text=Felülírás\ncant.save.schedule.title=Vetítéslista mentés hiba\ncant.save.schedule.text=Sajnálom, hiba történt és a vetítéslista nem lett elmentve.\nerror.removing.song.db=Hiba történt az ének adatbázisból való törlése során.\nconfirm.remove.text=Törlés megerősítése\nconfirm.remove.question=Valóban törölni akarja a(z) $1 éneket az adatbázisból? Ez a művelet nem visszavonható.\nquick.edit.text=Gyors szerkesztés\nlibrary.preview.song.text=Ének előnézet\nvideo.error.unsupported=Sajnálom, a kiválasztott videó fájl nem támogatott.\nvideo.error.general=Sajnálom, hiba történt a videó fájllal amit kiválasztott.\nvideo.theme.label=Videó\nselect.video.button=Videó kiválasztása\nrefresh.images.panel=Képek frissítése\nadd.images.panel=Képek hozzáadása\nselect.folder.images.panel=Mappa kiválasztása...\ntext.position.label=Szöveg pozíció\nimage.folder=Képek mappa:\nquick.insert.text=Gyors beillesztés\nconfirm.overwrite.title=A fájl már létezik!\nconfirm.overwrite.text=Ez a fájl már létezik! Szeretnéd kicserélni, vagy folytatod másolás nélkül?\nfile.rename.button=Átnevez\nfile.replace.button=Felülír\nfile.continue.button=Folytat\nfile.rename.dialog.title=Átnevez\nfile.rename.dialog.text=Kérem írja be az új fájl nevét:\ninterface.language.label=Kezelőfelület nyelve:\nlanguage.changed=Nyelv megváltoztatva\nlanguage.changed.message=Újra kell indítanod a Quelea-t a nyelvváltoztatás érvénybe lépéséhez.\ndebug.location=A hibakeresési napló helye\ntop.text.position=Legfelül\nmiddle.text.position=Középen\nbottom.text.position=Alul\nshadow.color=Árnyék szín\nshadow.x=Árnyék X eltolás\nshadow.y=Árnyék Y eltolás\nselect.imported.songs.line1=A következő énekek lesznek importálva.\nselect.imported.songs.line2=Válaszd ki azokat, amelyeket hozzá szeretnéd adni az adatbázishoz, majd nyomd meg a \"Hozzáad\" gombot.\nselect.imported.songs.line3=Azok az énekek amelyeknél a Quelea szerint duplikáció lép fel, nem lesznek kijelölve.\nadd.text=Hozzáad\nadd.to.database.question=Hozzáadja az adatbázishoz?\nselect.export.songs.line1=A következő énekek találhatóak az adatbázisban.\nselect.export.songs.line2=Válaszd ki azokat, amelyeket exportálni szeretnéd, majd nyomd meg a \"Hozzáad\" gombot.\nadd.to.songpack.question=Exportálod az énekeket?\nprojection.window.title=Kivetítő ablak\nclear.live.on.remove.schedule=A vetítéslistából való törléssel az elem tűnjön el az Élő megjelenítőről is\nspelling.complete.text=A helyesírás-ellenőrzés befejeződött.\ncomplete.title=Befejeződött\nspelling.check.title=Helyesírás-ellenőrzés\ncorrect.text=Helyes\nignore.text=Figyelmen kívül hagy\nspelling.errors.in.doc.label=Helyesírási hibák találhatóak a dokumentumban. Üsd le az \"F7\" billentyűt a helyesírás-ellenőrző ablak megnyitásához.\nremove.image.text=Kép eltávolítása\ndelete.image.title=Kép törlése\ndelete.image.confirmation=Valóban el akarod távolítani ezt a képet a könyvtárból? Ez a művelet nem visszavonható.\nnotice.expired.title=Lejárt értesítés\nnotice.expired.text=Az éppen szerkesztett értesítés lejárt. Szeretnéd hozzáadni újra?\ndictionary.language.text=Szótár nyelve\nconfirm.entry.exit.text=Szeretnéd menteni az énekben tett változtatásokat?\nconfirm.entry.exit.title=Elmented az éneket?\nsave.text=Mentés\ndont.save.text=Nincs mentés\nvlc.warning.title=Nem található VLC\nvlc.warning.message=A Quelea nem találja a VLC-t a rendszereden. Enélkül a Quelea nem képes videó, audió és énekek mozgó hátterének lejátszására. Szeretnéd most letölteni? Miután feltelepítetted a VLC-t, újra kell indítanod a Quelea-t, hogy a módosítások érvénybe lépjenek.\nvlc.version.message=A VLC verziója elavult. Töltsd le a legújabb verziót, hogy le tudj játszani videót, audiót és az énekek mozgó háttereit. Szeretnéd most letölteni? Miután feltelepítetted a VLC-t, újra kell indítanod a Quelea-t, hogy a módosítások érvénybe lépjenek.\ncontinue.without.video=Folytatás VLC nélkül\ndownload.vlc=VLC letöltése\nstartup.error.title=Indulási hiba\nstartup.error.text=Sajnálom, de a Quelea nem tud elindulni a rendszereden. Ha szeretnél segítéget kapni, dobj egy email-t a support@quelea.org címre és csatold a hibakeresési napló fájlt ($1).\\n\\Emellett bármikor kérdezhetsz a Quelea fórumon (https://quelea.discourse.group).\nfilefilters.description.survivor.songbook=Survivor acetates fájl\nfilefilters.description.xml.bibles=XML Bibliák\nfilefilters.description.xml.easyslide=XML Easyslide fájlok\nfilefilters.description.xml.files=XML fájlok\nfilefilters.description.video.files=Videó fájlok\nfilefilters.description.pmsong.files=Presentation Manager énekek\nfilefilters.description.vs.files=VideoPsalm adatbázisok\nfilefilters.description.audio.files=Audió fájlok\nfilefilters.description.quelea.schedules=Quelea Vetítéslista\nfilefilters.description.powerpoint.presentations=Powerpoint prezentációk\nfilefilters.description.plain.text.song=Egyszerű szöveges fájl\nfilefilters.description.maintable.dat=ZionWorx MainTable adatbázis fájl\nfilefilters.description.multimedia.files=Multimédia fájlok\nbible.search.results.found=találat\nbible.search.result.found=találat\nbible.search.keep.typing=Gépelj tovább...\nuniform.font.size.label=Használj egységes betűméretet\nmax.font.size.label=Maximális betűméret\nthumbnail.size.label=Bélyegkép méret\nadditional.line.spacing.label=További sortávolság\nlogo.screen.tooltip=Bal-klikk kivetít - Jobb-klikk beállít\nchange.graphics.label=Kép módosítása\nfont.colour.label=Betűszín\nbackground.colour.label=Háttérszín\nmobile.lyrics.heading=Mobile Lyrics\nuse.mobile.lyrics.label=Használja a Mobile Lyrics-t\nport.number.label=Port szám\nnavigate.mob.url.label=Mobile Lyrics URL\nserver.changed.label=A szerver beállítások megváltoztak\nserver.changed.message=Újra kell indítanod a Quelea-t, hogy az új szerver beállítások érvénybe léphessenek.\nfilefilters.description.zip.files=Zip fájlok\nfilefilters.description.sqlite.files=SQLite fájlok\nloop.label=Végtelenít\nseconds.label=másodperc\nchosen.fonts.explanation=A Quelea csak a betűtípusok egy szűkített listáját mutatja a téma ablakban. Húzd át a használni kívánt betűtípusokat balról jobbra, illetve húzd a nemkívántakat jobbról balra.\nignored.fonts.label=Figyelmen kívül hagyott betűtípusok\nchosen.fonts.label=Kiválasztott betűtípusok\nfont.selection.dialog.title=Betűtípusok kiválasztása\nvideo.hue.label=Színárnyalat\nhover.for.position.label=Húzd az egeret a vásznon a szöveg helyzetének beállításához\ntest.patterns.text=Teszt minták\ntest.patterns.explanation=Az itt elérhető teszt minták segíthetnek a kijelzők helyes fókusz és szín beállításában. Kattints a teszt képre, hogy kivetítsd azt mind a fő, mind a színpadi megjelenítőre.\nyoutube.url.label=Youtube videó URL\nno.tdb.heading=TurboDB Data Exchange nem található\nno.tdb.message=Tecnikai okokból le kell hogy töltsd a TurboDB data exchange-t (https\\://www.dataweb.de/en/support/downloads.html) mielőtt a Quelea-ban egy ZionWorx adatbázist importálnál.\\Miután letöltötted, csomagold ki a zip fájl tartalmát ide: $1.\\n\\nHa további kérdésed maradt, kérdezz bátran a fórumban: (https://quelea.discourse.group)\nshow.verse.numbers=Mutassa a versszakok számait\nadd.song.hint.text=Még nincs itt egyetlen ének sem, de semmi probléma! Ének hozzáadásához kattints az \"Új ének\" gombra a bal oldalon.\nadd.song.hint.search.text=Nincs egyetlen ének sem, ami egyezne a keresési feltétellel. Ének hozzáadásához kattints az \"Új ének\" gombra a bal oldalon.\nfilefilters.description.songs.mb=Easyworship Songs.MB adatbázis\nfilefilters.description.songs.missionpraise=Mission Praise RTF fájlok\nfilefilters.description.songs.worshiphim=Worship Him MDB fájlok\ntranslate.tooltip=Ének fordítások\nclose.button=Bezár\nadd.translation.button=Fordítás hozzáadása...\nenter.translation.name.label=Milyen nyelvre szeretnéd lefordítani?\ntranslate.dialog.title=Fordítás kezelő\nconfirm.remove.translation.title=Eltávolítod a fordítást?\nconfirm.remove.translation.text=Valóban törlöd ezt a fordítást?\ndefault.translation.label=Alapértelmezett fordítás\noverwrite.lyrics.title=Felülírod a meglévő énekszöveget?\noverwrite.lyrics.text=Az énekszöveg automatikusan lefordításra került - szeretnéd használni?\\nA jelenlegi fordítása felül lesz írva.\nauto.translate.label=Kísérlet az énekek automatikus fordítására\nchoose.translations.text=Válassz fordítást\nselect.translation.label=Válaszd ki azt a fordítást,\\namit ki szeretnél vetíteni az alapértelmezett énekszöveg mellett:\ntranslate.heading=Fordítások\nremote.logo.text=Logó\nremote.black.text=Fekete\nremote.clear.text=Üres\nremote.next.text=Következő dia\nremote.prev.text=Előző dia\nremote.nextitem.text=Következő elem\nremote.previtem.text=Előző elem\nserver.settings.heading=Szerver beállítások\nuse.remote.control.label=Távirányító használata\nnavigate.remote.control.label=Távirányító URL\nremote.empty.lyrics=Az énekszövegek itt lesznek megjelenítve\nremote.control.password=Távirányító jelszó (kis- és nagybetű érzékeny)\nremote.logout.text=Kijelentkezés\nremote.login.text=Kérlek jelentkezz be a folytatáshoz\nremote.submit.text=Bejelentkezés\nmore.font.options.label=További betűtípus beállítások\nmore.fonts.label=További betűtípusok\ntranslation.font.text=Fordítás betűtípusa\nshadow.text=Árnyék\nsaving.schedule=Vetítéslista mentése...\nsmall.text.position.label=Az ének és biblia információ helyzete\nbible.passage.selector.prompt=[Fejezet]:[Verstől]-[Versig]\ntheme.button.tooltip=Teljes vetítéslistára vonatkozó téma beállítása\ncurrently.displaying.text=Jelenleg kivetített\nplay=Lejátszás\npause=Megállítás\nshow.small.song.text.label=Kis ének információ megjelenítése\nshow.small.bible.text.label=Kis biblia hivatkozás megjelenítése\nuse.bible.verses=Bibliaversek elosztása diák száma szerint\nmax.items.per.slide=Maximális % száma diánként\nverses=versszakok\nwords=szavak\nedit.bible.passage.text=Szakasz témájának szerkesztése\nnotice.colour.text=Értesítés színe\nnotice.font.text=Értesítés betűtípusa\nnotice.speed.text=Értesítés sebessége\nnotice.background.colour.text=Értesítés háttérszíne\nnotice.position.text=Értesítés helyzete\nnotice.font.size=Értesítés betűmérete\nnotice.options.heading=Értesítések\nexport.pdf.button=Exportálás PDF-be\npdf.button=PDF\nexport.schedule.pdf.button=Vetítéslista exportálása PDF-be\nfilefilters.description.pdf.files=PDF fájlok\nnot.started.label=Nem elkezdett\nquelea.schedule.text=Quelea Vetítéslista\nuser.options.options=Felhasználói beállítások\ntext.options.options=Szöveg beállítások\nstretch.video.label=Videó nyújtása\nexport.schedule.songs.pdf.button=Énekek exportálása PDF-be\nexporting.label=Exportálás\nuse.shadow.label=Legyen árnyék?\nshadow.color.label=Árnyék színe\nshadow.offset.label=Árnyék eltolása\nshadow.radius.label=Árnyék hatósugara\nshadow.spread.label=Árnyék vetülete\nhelp.menu.manual=Kézikönyv\nedit.theme.text=Téma szerkesztése\nchange.bible.version.text=Váltás másik fordításra\nswitch.to.text=Váltás...\nsave.qr.code.text=QR-kód mentése\nnonbreak.tooltip=Nem tördelhető sor hozzáadása\ncopying.video.please.wait.text=Várj egy pillanatot - épp másolódik a videófájl...\ntranslating.text.please.wait.text=Várj egy pillanatot - a fordítás beemelése folyamatban...\nfilefilters.description.usr.files=USR (SongSelect) fájlok\nsongselect.import.line1=Válaszd ki a SongSelect fájlokat alul.\npm.import.line1=Válaszd ki a Presentation Manager énekeket az importáláshoz.\nsmi.import.line1=Válaszd ki a Screen Monkey énekeket az importáláshoz.\nsongselect.button=SongSelect\nvideopsalm.button=VideoPsalm\npm.button=Presentation Manager\nsm.button=Screen Monkey\ntranslation.export.heading=Fordítás exportálása\ninclude.translations.question=A PDF fájl tartalmazza a fordításokat is?\nslide.text=Dia\nautoplay.vid.label=Videók automatikus lejátszása az Élő felületen\nadvance.on.live.label=A vetítéslista következő elemre léptetése az élőbe küldéskor\ndelete.translation.title=Fordítás törlése\ndelete.translation.text=Törlöd a $1 fordítást?\nhelp.menu.wiki=Dokumentáció\npreview.on.image.change.label=Elem előnézete kép változásakor\nadd.timer.tooltip=Visszaszámláló hozzáadása\nfilefilters.description.image.video.files=Videó és kép fájlok\ntimer.duration.label=Visszaszámlálás hossza\ntimer.file.label=Háttérkép fájlok helye\nduration.tooltip.label=#:## vagy ##perc##mp\ntranslation.choice.title=Fordítás választó\nfont.options.title=Betűtípus beállítások\nnew.translation.title=Új fordítás\nadd.timer.title=Időzítő hozzáadása\nuntitled.theme.text=Névtelen téma\ntimer.text.label=Kiegészítő szöveg\ntimer.text.prompt=A # segítségével helyezheted el az időzítőt, pl.: \"Az alkalom # perc múlva kezdődik\" a következőképp fog megjelenni \"Az alkalom 05:00 perc múlva kezdődik\"\ncountdown.label=Visszaszámláló\ntimer.theme.label=Téma beállítások\ntimer.theme.button=Téma változtatása\nembed.media.in.schedule=Média beágyazása a vetítéslistába\nmediashout.import.line1=Válaszd ki a MediaShout (txt formátumba exportált) adatbázis helyét az importáláshoz:\nworshiphim.import.line1=Válaszd ki a Worship Him (mdb formátumban levő) adatbázisát az importáláshoz:\nsongbeamer.import.line1=Válaszd ki az importálni kívánt SNG fájlok helyét:\nfilefilters.description.txt.files=.txt fájlok\nmediashout.button=MediaShout\nworshiphim.button=Worship Him\nsongbeamer.button=SongBeamer\nclear.stage.view=Színpadi nézet törlése a fő képernyővel együtt\ntop=Felül\nbottom=Alul\nepicworship.import.line1=Válaszd ki az EpicWorship énekgyűjteményt (.epc) az importáláshoz:\nfilefilters.description.epc=EpicWorship .epc énekgyűjtemény\nepicworship.button=EpicWorship\nadd.videos.panel=Videó hozzáadása\nremove.video.text=Videó eltávolítása\ndelete.video.title=Videó törlése\ndelete.video.confirmation=Biztos törli a videót a könyvtárból? Ez a művelet nem visszavonható.\nlibrary.video.heading=Videók\ntimer.files.description=Visszaszámlálók\nadd.timers.panel=Számláló hozzáadása\nlibrary.timer.heading=Visszaszámlálók\ntimer.save.label=Menti a számlálót?\ntimer.name.label=Név\nedit.timer.text=Számláló szerkesztése\nremove.timer.text=Számláló törlése\nconfirm.remove.timer=Biztos törli a(z) $1 számlálót a listából? Ez a művelet nem visszavonható.\nkingsway.button.range=Tartomány\nkingsway.range.import.text=Add meg a Kingsway weboldalról letölteni kívánt oldaltartományt.\\nA jelenlegi maximális oldalszám 3600 körüli.\nkingsway.range.import.heading=Kingsway énekek importálása\nsdb.files.description=Songpro adatbázis fájlok\nsongpro.button=SongPro\noverflow.song.label=Jelenlegi ének átkötése a következőbe\ninvalid.search=Érvénytelen keresés\nrcs.add.failed=Sikertelen hozzáadás\nrcs.add.success=Sikeres hozzáadás\nrcs.add.song=Ének hozzáadása a vetítéslistába\nrcs.search=Keresés az adatbázisban\nrcs.add.bible.error=Hiba történt a(z) $1 listába való hozzáadása során\nrcs.submit=Küldés\nrcs.song.search=Ének\nrcs.bible.search=Biblia\n\nshow.video.library.panel=Mutassa a videó könyvtár fület (újraindítást igényel)\nuse.24h.clock=Használjon 24 órás órát\nsplit.bible.verses=Versek egyben tartása a diákon\nno.verse.title=Vers nem található\nno.verse.message=Nem találtunk a megadott feltételeknek megfelelő verseket, megpróbáltuk folytatni nélkülük.\nchorus.tooltip=Refrén cím hozzáadása\nrecordings.path=Felvételek útvonala\ndownload.path=Letöltések útvonala\nconvert.mp3=Felvételek automatikus konvertálása MP3 fájlokká (VLC szükséges)\nrecording.warning.title=Előbb állítsd be a felvétel helyét\nrecording.warning.message=A hangfelvétel csak akkor indítható el, ha már beállítottad az Eszközök/Beállítások menüpontban, hogy hova kerüljenek mentésre a felvételek.\nrecording.no.devices.title=Nem található rögzítő eszköz\nrecording.no.devices.message=Sajnáljuk, de egy kompatibilis rögzítő eszköz sem található.\\nEllenőrizd, hogy az eszköz csatlakoztatva és engedélyezve is van.\nsave.recording.before.exit.title=Nem mentett felvétel\nsave.recording.before.exit.message=Szeretnéd elmenteni a felvételt mielőtt kilépsz?\nrecord.audio.tooltip=Hangrögzítés\npause.record.tooltip=Rögzítés felfüggesztése\nmax.lines.per.slide=Sorok száma diánként (hozzávetőlegesen)\npresentation.options.heading=Prezentációk\nrecordings.options.heading=Felvételek\ncopy.song.db.default=Az énekek alapértelmezetten másolódjanak a vetítéslistába\nmp.button=Mission Praise\nadd.pdf.tooltip=PDF hozzáadása\nimportexport.options.heading=Import/Export\n\n\npreview.failed=Sikertelen előnézet\nset.loop.manually.title=A PowerPoint nem található\nset.loop.manually.message=A prezentáció be lett zárva. Ha szeretnéd használni a Quelea végtelenített funkcióját a PowerPoint Viewer-el, akkor kézzel kell a prezentációt végteleníteni, amikor azt létrehozod.\npresentation.changed.message=Újra kell indítanod a Quelea-t a prezentációs beállítások életbe léptetéséhez.\npresentation.changed.label=A prezentációs beállítások megváltoztak\npresentation.not.started.label=A PowerPoint nem indult el\npresentation.not.started.message=Sajnos a prezentáció nem indítható el PowerPoint-al. Talán a fájl sérült?\npp.already.running.label=A PowerPoint már fut\npp.already.running.message=A PowerPointból már egy másik példány fut. Kérlek zárd be a PowerPoint összes példányát, mielőt elkezdesz egy prezentációt a Quelea-ban az adatvesztés elkerülése érdekében.\npp.path=Útvonal a PowerPoint programhoz\nuse.pp.label=PowerPoint használata a prezentációkhoz\nclose.all.presentations.label=Minden nyitott prezentáció bezárása\nclose.all.presentations.message=Kérlek zárj be minden megnyitott PowerPoint ablakot, mielőtt megnyomod az OK gombot, különben a Quelea egy kivételével mindet bezárja, de nem garantált, hogy jó ablakot zár be.\nlive.text.message=Bármilyen szöveg, ami a lenti szövegdobozba kerül, a Mobile Lyrics felhasználói számára lesz látható, amikor a fő képernyő üres.\\n\\nHasználj üres sort, ha új diát szeretnél kezdeni. Emellett használhatod a Törlés gombot (vagy a CTRL + Return kombinációt), ha mindent törölni akarsz. A 200 karaktert meghaladó diák automatikusan rövidítésre kerülnek.\nlive.text.title=Élő szöveg\nexit.live.text=Kilépés az élő szövegből\nclear.live.text=Törlés\ndefault.translation=Alapértelmezett\nselect.language=Nyelv kiválasztása:\nsend.live.text=Élő szöveg\nconverting.to.mp3=A felvétel MP3-ba alakítása\nverse.tooltip=Versszak hozzáadása\nbridge.tooltip=Átvezetés hozzáadása\nprechorus.tooltip=Elő-refrén hozzáadása\ntag.tooltip=Tag hozzáadása\nadd.website=Honlap hozzáadása\nfocus.switcher.title=Quelea fókusz váltó\nfocus.switcher.message=Itt állíthatod át az ablak fókuszát prezentáció közben.\nfocus.pp=A fókusz átállítása a PowerPoint-ra\nfocus.quelea=A fókusz átállítása a Quelea-ra\nwebsite.dialog.title=A honlap címe\nwebsite.dialog.header=A honlap címének megadása\nwebsite.dialog.content=Írd be a honlap címét, amit szeretnél megjeleníteni:\npaste.label=Beillesztés\nundo.label=Visszavonás\nredo.label=Mégis\nshow.extra.live.panel.toolbar.options.label=A további élő panel eszköztár beállításainak mutatása\nsave.add.notice.button=Mentés és hozzáadás\nsaved.notices=Elmentett értesítések\ndelete.notice.button=Törlés\nschedule.items.skipped.text=Néhány vetítéslista elemnek hiányzik a hozzá kapcsolt médiája, ezért ezek nem kerültek hozzáadásra.\nschedule.items.skipped.header=Kihagyott vetítéslista elemek\nvideo.loop.tooltip=Végtelenítés be-/kikapcsolása\nallow.item.theme.override.global=Engedélyezem, hogy a vetítéslista elemeiben beállított téma előnyt élvezzen a globális témával szemben\nsong.default.theme.label=Ének alapértelmezett\nbible.default.theme.label=Biblia alapértelmezett\nsmall.song.position.label=A kis ének információ helyzete\nsmall.bible.position.label=A kis biblia hivatkozás helyzete\nsmall.bible.size.label=A kis biblia hivatkozás mérete\nsmall.song.size.label=A kis ének információ mérete\ninterface.theme.label=Az alkalmazás felszíne\ndefault.theme.label=Alapértelmezett\ndark.theme.label=Sötét\ntheme.changed=A felszín megváltozott\ntheme.changed.message=Újra kell indítanod a Quelea-t ahhoz, hogy a felszín módosítása érvénybe lépjen.\ndb.song.preview.label=Ének előnézete az adatbázisban\ndb.song.preview.label.control=Ne legyen\ndb.song.preview.label.databasepreview=Az adatbázis panelen\ndb.song.preview.label.previewpane=Az előnézeti panelen\nmobile.remote.heading=Mobile Remote\ninterface.options.options=Felhasználói felület beállítások\ngeneral.interface.options=Általános felhasználói felület beállítások\nsmall.song.text.options=Kis ének információ beállítások\nsmall.bible.text.options=Kis biblia hivatkozás beállítások\ngeneral.user.options=Általános felhasználói beállítások\ntheme.options=Téma beállítások\nschedule.options=Vetítéslista beállítások\n"
  },
  {
    "path": "Quelea/languages/id.lang",
    "content": "LANGUAGENAME=Indonesia (ID)\ndatabase.heading=Database\nimport.heading=Import\nqsp.button=Quelea Song Pack\nos.button=Opensong\nolp.button=OpenLP\nolyrics.button=OpenLyrics\nzw.button=ZionWorx\nsp.button=Sunday Plus\npco.button=Planning Center Online\npco.login.import.heading=Login ke Planning Center Online\npco.loginerror.title=Kesalahan Login\npco.loginerror.warning=Gagal login, cek email dan password dan coba lagi\npco.import.heading=Planning Center Online\npco.days.previous.setting=Jumlah hari terakhir yang akan diimpor\nelevanto.button=Elevanto\nelevanto.import.heading=Elevanto\nelevanto.loginsuccess.message=Anda dapat menutup jendela ini dan kembali ke Quelea\nelevanto.loginerror.warning=Kesalahan login ke Elevanto\npassword.text=Kata Sandi\nemailaddress.text=Alamat Email\nlogin.text=Login\nss.button=Survivor Songbook\nprojector.heading=Proyektor\ncontrols.heading=Kontrol\non.button=Nyalakan\noff.button=Matikan\ncopy=Salin\nswitch.input.button=Ganti Input\ngeneral.options.heading=Umum\ndisplay.options.heading=Tampilan\nBible.options.heading=Bible (Opsi Alkitab)\ncheck.for.update.label=Periksa update saat mulai\n1.monitor.warn.label=Peringatkan jika hanya terhubung satu monitor\ncapitalise.start.line.label=Besarkan huruf awal pada setiap baris\none.line.mode.label=Hanya tampilkan satu baris per bagian lagu\ndisplay.song.info.label=Tampilkan informasi lagu\ntext.border.thickness.label=Ketebalan border teks\nmax.chars.line.label=Maksimum karakter per baris\nadvanced.label=Lanjutan\nok.button=OK\noutput.text=Output\ncontrol.screen.label=Layar Kontrol\nprojector.screen.label=Layar Proyektor\nstage.screen.label=Layar Panggung\ncustom.position.text=Posisi Kustom\ndefault.bible.label=Default\nbible.load.error.title=Error memuat alkitab\nbible.load.error.question=Tidak dapat memuat alkitab - kemungkinan corrupt atau dalam format yang tidak valid. \nmax.verses.label=Maksimum ayat yang akan ditampilkan sekaligus\nadd.bible.label=Tambahkan alkitab...\ndelete.bible.label=Hapus alkitab saat ini\ndelete.bible.confirmation=Apakah Anda ingin menghapus alkitab $1?\nnone.text=Tidak ada\nnew.schedule.button=Jadwal Baru\nopen.schedule.button=Buka Jadwal\nsave.schedule.button=Simpan Jadwal\nsave.as.schedule.button=Simpan Jadwal sebagai...\nprint.schedule.button=Cetak Jadwal\noptions.title=Opsi\noptions.button=Opsi\nexit.button=Keluar\nnew.schedule.text=Jadwal Baru\ncreate.new.schedule.text=Buat jadwal baru\nopen.schedule.text=Buka Jadwal\nopen.existing.schedule.text=Buka jadwal yang sudah ada\nsave.schedule.text=Simpan Jadwal\nsave.schedule.disk.text=Simpan jadwal ke disk\nsave.as.schedule.text=Simpan Jadwal sebagai\nsave.as.schedule.disk.text=Simpan jadwal sebagai file yang berbeda\nprint.schedule.text=Cetak Jadwal\nprint.current.schedule.text=Cetak jadwal saat ini\noptions.text=Opsi\ndisplay.options.text=Tampilkan dialog opsi\nexit.text=Keluar dari Quelea\nquit.quelea.text=Keluar dari Quelea\nlibrary.image.heading=Gambar\nlibrary.songs.heading=Lagu\nlibrary.bible.heading=Alkitab\nbible.heading=Alkitab\nlibrary.song.search=Cari\nclear.search.box=Hapus pencarian\nadd.song.text=Tambahkan lagu ke database\nremove.song.text=Hapus lagu dari database\nlibrary.add.to.schedule.text=Tambahkan ke jadwal\nlibrary.copy.to.schedule.text=Salin ke jadwal\nlibrary.edit.song.text=Edit lagu\nlibrary.remove.song.text=Hapus lagu\nlibrary.print.song.text=Cetak lagu\nadd.to.schedule.text=Tambahkan ke Jadwal\norder.service.heading=Urutan Pelayanan\nmove.down.schedule.tooltip=Pindah ke bawah dalam jadwal\nmove.up.schedule.tooltip=Pindah ke atas dalam jadwal\nremove.song.schedule.tooltip=Hapus dari jadwal\nadjust.theme.tooltip=Sesuaikan tema\nedit.song.text=Edit lagu\nnew.theme.text=Tema Baru...\ntheme.select.text=Pilih tema:\ndefault.theme.name=Default\ndefault.theme.text=Tema default\nremove.theme.tooltip=Hapus tema\nedit.theme.tooltip=Edit tema\nedit.theme.heading=Kelola tema\npreview.heading=Pratinjau\nlive.heading=Live\ngo.live.text=Live\nblack.screen.tooltip=Layar hitam\nclear.text.tooltip=Hapus layar\nhide.display.output.tooltip=Sembunyikan output layar\nschedule.heading=Jadwal\nadd.song.button=Tambah lagu\nremove.item.button=Hapus item\nadd.multimedia.heading=Tambah Multimedia\nadd.presentation.button=Tambah Presentasi\nadd.video.button=Tambah Video\nadd.youtube.button=Tambah Video Youtube\nadd.live.video.button=Tambah Video Live\nadd.dvd.button=Tambah DVD\nadd.audio.button=Audio\nadd.audio.tooltip=Tambah Audio\nshare.heading=Bagikan\nemail.button=Email Jadwal\nmanage.notices.button=Kelola Pemberitahuan...\nnotices.heading=Pemberitahuan\nnew.notice.text=Pemberitahuan Baru\nedit.notice.text=Edit Pemberitahuan\nremove.notice.text=Hapus Pemberitahuan\ndone.text=Selesai\nnew.notice.heading=Pemberitahuan Baru\nnotice.text=Pemberitahuan\nnotice.times.text=Jumlah Penayangan\nnotice.infinite.question=Tak terbatas?\nadd.notice.button=Tambah pemberitahuan\nedit.notice.button=Edit pemberitahuan\nyes.text=Ya\nno.text=Tidak\ncancel.text=Batal\nnew.song.button=Lagu Baru\nedit.song.button=Edit Lagu\ndelete.song.button=Hapus Lagu\nsongs.heading=Lagu\ntags.button=Kelola tag...\nsource.button=Sumber\neasyslides.button=EasySlides\npropresenter.button=ProPresenter\nfreeworship.button=Freeworship\neasyworship.button=EasyWorship 2009\nplainText.button=Teks Biasa\nkingsway.button=Kingsway Online\nexport.heading=Ekspor\nfilter.tag=Filter tag\ntags.colon.label=Tag:\nimport.button=Impor\nimport.all.button=Impor Semua\nimport.selection.button=Impor Pilihan\nrefresh.button=Refresh\nclick.select.file.text=Klik untuk pilih file\ncheck.duplicates.text=Periksa duplikat\nedit.song.title=Edit lagu\nbasic.information.heading=Informasi Dasar\ndetailed.info.heading=Informasi Detail\ntheme.heading=Tema\ntitle.label=Judul\nauthor.label=Penulis\nrun.spellcheck.label=Cek Ejaan\nfix.apos.label=Sanitasi tanda petik\ntrim.lines.tooltip=Potong baris\ntranspose.tooltip=Transpon...\ncancel.button=Batal\nccli.number.label=Nomor CCLI\ncopyright.label=Hak cipta\nyear.label=Tahun\npublisher.label=Penerbit\ntags.label=Tag\ntype.tag.name.here.text=<Ketik nama tag di sini>\nkey.label=Nada\ncapo.label=Capo\nnotes.label=Catatan\nfont.theme.label=Font\nchoose.color.text=Pilih warna...\nbackground.text=Latar belakang\nbackground.theme.label=Tema latar belakang\ncolor.theme.label=Warna\nimage.theme.label=Gambar\nselect.color.title=Pilih Warna\nselect.color.button=Pilih Warna\nnew.song.title=Lagu Baru\nsof.button=Lagu-lagu dari Fellowship\ntype.lyrics.here.text=Ketik lirik di sini\nrtf.files.description=File RTF\nsng.files.description=SNG (SongBeamer) file\nvideopsalm.import.line1=Ini akan mengimpor library VideoPsalm dari file JSON.\nfreeworship.import.line1=Ini akan mengimpor lagu-lagu FreeWorship dari file XML.\nsof.import.line1=Ini akan mengimpor library SoF dari file RTF.\nplaintext.import.line1=Ini akan mengimpor lagu-lagu dari file teks biasa.\nkingsway.import.line1=Ini akan mengimpor library lagu kingsway dari online.\nsongpro.import.line1=Ini akan mengimpor lagu-lagu dari database SongPro SDB.\nkingsway.import.line2=Ini akan membutuhkan waktu yang lama (potensi jam-jam!), jadi harap bersabar dan biarkan Quelea terus berjalan! \neasyslides.import.line1=Ini akan mengimpor lagu-lagu dari file XML EasySlides. \npropresenter.import.line1=Ini akan mengimpor lagu-lagu dari file lagu Propresenter.\neasyworship.import.line1=Ini akan mengimpor lagu-lagu dari file Lagu Easyworship.MB.\nmissionpraise.import.line1=Ini akan mengimpor lagu-lagu dari file RTF Mission Praise.\nopenlyrics.import.line1=Pilih lokasi lagu openlyrics di bawah.\nqsp.import.line1=Pilih lokasi songpack Quelea di bawah.\nos.import.line1=Pilih lokasi database Opensong di bawah.\nzw.import.line1=Pilih lokasi file \"MainTable.dat\" ZionWorx di bawah.\nzw.import.line2=Biasanya dapat ditemukan di \"C:\\\\ProgramData\\ZionWorx\\2.6\\Data\". \nolp.import.line1=Pilih lokasi database OpenLP di bawah.\nsundayplus.import.line1=Pilih lokasi file Sunday Plus di bawah.\nsource.import.line1=Pilih lokasi direktori ymns pada CD source.\nsurvivor.import.line1=Pilih lokasi file PDF Songbook Survivor di bawah.\nsurvivor.import.line2=Ini harus file acetates.pdf, bukan file cord gitar atau not musik.\nimport.error.message=Maaf, terjadi masalah dengan impor. Silakan merasa bebas untuk meminta bantuan di forum Quelea: https://quelea.discourse.group/\nemail.error.title=Kesalahan Email\nemail.error.text=Terjadi kesalahan saat membuka client email Anda. Pastikan Anda memiliki client email yang terinstall dan terdaftar untuk menangani file eml, atau Anda harus mengirim email secara manual.\nemail.text=Halo! Terlampir adalah jadwal Quelea yang telah Anda kirimkan. Cukup buka dengan Quelea dan semua item akan muncul dengan benar.\nselect.image.button=Pilih Gambar\nimage.files.description=File gambar\npng.files.description=File gambar PNG\ntools.label=Alat\nselect.songs.title=Pilih Lagu\ncheck.uncheck.all.text=Centang/Hapus centang semua\ndelete.theme.confirm.title=Konfirmasi hapus\ndelete.theme.question=Yakin ingin menghapus tema ini?\ntoo.many.verses.error=Maaf, tidak dapat menampilkan banyak ayat ini... silakan coba dengan jumlah yang lebih kecil. \none.monitor.warning=Sepertinya Anda hanya memiliki satu monitor terpasang. Ini tidak masalah jika Anda hanya menggunakan Quelea untuk menyiapkan beberapa jadwal tapi jika Anda menggunakannya dalam setting langsung, Quelea membutuhkan 2 monitor untuk bekerja dengan benar.\none.monitor.title=Hanya satu monitor\nno.dvd.heading=Tidak ditemukan disc\nno.dvd.error=Silakan masukkan DVD atau Blu-ray yang valid.\nadding.presentation.status=Mengimpor presentasi...\nadding.presentation.error.message=Terjadi kesalahan saat mengimpor presentasi, mungkin korup?\nadding.presentation.error.title=Kesalahan mengimpor presentasi\nimporting.status=Mengimpor...\nname.label=Nama\nsimilar.colors.text=Anda telah memilih warna yang sangat mirip untuk kata-kata dan latar belakang yang akan sulit dilihat oleh jemaat. Saya sarankan Anda memilih warna yang lebih baik!\nwarning.label=Peringatan\nfile.menu=Berkas\ntools.menu=Alat\nschedule.menu=Jadwal\ndatabase.menu=Basis data\nprojector.menu=Proyektor\nnew.theme.title=Tema Baru\nadd.theme.label=Tambah Tema\ntheme.name.label=Nama Tema\ntheme.select.label=Pilih tema\ntheme.copy.label=Salin dari tema\nhelp.menu=Bantuan\nhelp.menu.website=Situs Web\nhelp.menu.discussion=Dukungan / Diskusi\nhelp.menu.feedback=Umpan Balik\nhelp.menu.download=Unduh\nhelp.menu.update=Periksa pembaruan\nhelp.menu.about=Tentang...\nhelp.menu.error.text=Maaf, kami tidak bisa memuat halaman itu. Anda dapat menjelajahi secara manual: $1\nhelp.menu.error.title=Error\nhelp.about.title=Tentang\nhelp.about.version=Versi\nhelp.about.close=Tutup\nhelp.about.line1=Quelea dilisensikan di bawah GPL (Versi 3.)\nhelp.about.line2=Ini adalah, dan selalu akan menjadi, perangkat lunak bebas dan sumber terbuka.\nnew.schedule.tooltip=Jadwal Baru\nopen.schedule.tooltip=Buka Jadwal\nsave.schedule.tooltip=Simpan Jadwal\nprint.schedule.tooltip=Cetak Jadwal\nnew.song.tooltip=Lagu Baru\nadd.presentation.tooltip=Tambahkan Presentasi\nadd.dvd.tooltip=Tambahkan DVD\nadd.video.tooltip=Tambahkan Video\nadd.multimedia.tooltip=Tambahkan Multimedia\nmanage.tags.tooltip=Kelola Tag\nmanage.notices.tooltip=Kelola Pemberitahuan\nalready.running.error=Sepertinya Anda sudah memiliki instance Quelea yang berjalan.\\nPastikan Anda menutup semua instance lain sebelum menjalankan program.\nalready.running.title=Sudah berjalan\nerror.schedule.message=Terjadi masalah saat membuka jadwal. Mungkin rusak, atau bukan jadwal yang disimpan oleh Quelea.\nerror.schedule.title=Error saat membuka jadwal\nprint.chords.question=Sertakan nada saat mencetak lagu ini?\nprint.chords.export.question=Sertakan nada saat mengekspor lagu-lagu ini?\nprinting.options.text=Cetak lagu\nspace.key=spasi\nupdating.db=Memperbarui Database\nerror.updating.song.text=Terjadi error saat memperbarui lagu di database, mungkin rusak.\nerror.text=Error\nquick.shortcut.description=Escape untuk membatalkan, shift+enter untuk menyimpan\nsave.before.exit.text=Jadwal telah dimodifikasi. Simpan sebelum keluar?\nsave.before.exit.title=Jadwal tidak tersimpan\nno.chords.message=Lagu ini tidak memiliki baris nada untuk disesuaikan.\nno.chords.title=Tidak ada nada\nerror.checking.updates.title=Tidak bisa memeriksa pembaruan\nerror.checking.updates.text=Maaf, terjadi error saat memeriksa pembaruan. Mohon periksa koneksi internet Anda kemudian coba lagi.\nnewer.version.available=Ada versi terbaru Quelea yang tersedia\nno.newer.version.available=Anda menjalankan versi terbaru Quelea\nvisit.webpage.now=Kunjungi situs web untuk mengunduhnya sekarang?\ndownload.manual.update=Anda dapat mengunduhnya di sini\nnewer.version.available.title=Pembaruan tersedia\nno.newer.version.available.title=Sudah up-to-date!\ncheck.kingsway.start=Anda sudah mengimpor beberapa item dari pustaka Kingsway. Apakah Anda ingin memulai mengimpor dari tempat yang tersisa?\ncheck.kingsway.start.title=Sudah mengimpor item\nimport.no.songs.title=Tidak ditemukan lagu\nimport.no.songs.text=Tidak dapat menemukan lagu untuk diimpor.\nstage.options.heading=Tampilan Panggung\nstage.show.chords=Tampilkan nada?\nstage.line.alignment=Penjajaran Teks\nstage.font.selection=Font\nstage.background.colour=Warna Latar Belakang\nstage.lyrics.colour=Warna Lirik\nstage.chord.colour=Warna Nada\nleft=Kiri\ncentre=Tengah\nright=Kanan\nconfirm.label=Apakah Anda yakin?\nschedule.clear.text=Jadwal telah dimodifikasi. Lanjutkan tanpa menyimpan?\npart=bagian\nhelp.menu.facebook=Halaman Facebook\nvideo.error=Tidak dapat menginisialisasi pustaka video - video tidak akan bekerja. Mohon tanyakan di daftar diskusi (lihat menu bantuan) untuk meminta bantuan menyelesaikan masalah ini.\nvideo.error.title=Error video\ntext.shadow.label=Tampilkan bayangan teks\nadding.images=Menambahkan gambar...\nsetup.oo.failed.text=Gagal mengatur OpenOffice untuk menampilkan presentasi. Pastikan Anda telah menginstall OpenOffice dan jalur yang disediakan benar.\nsetup.oo.failed.title=OpenOffice gagal diinisialisasi\nuse.oo.label=Gunakan OpenOffice untuk presentasi (eksperimental)\noo.path=Jalur OpenOffice\nbrowse=Jelajahi...\nloading.text=Memuat\nbuilding.bible.index=Memuat bibles\nbible.search.title=Pencari Alkitab\ninitial.search.text=<Ketik di sini untuk mencari>\nview.bible.button=Lihat bibles...\nsearch.bible.button=Cari bibles...\nall.text=Semua\nbible.browser.title=Browser Alkitab\nopen.in.browser=Buka di Browser...\nkingsway.button.all=Semua Lagu\nkingsway.button.one=Satu Lagu\nsong.id.selector=Silakan pilih ID lagu\nbible.copy.error.text=Maaf, terjadi error saat menyalin Alkitab ke direktori yang diperlukan.\nbible.delete.error.text=Maaf, terjadi error saat menghapus Alkitab dari direktori yang diperlukan.\nbible.copy.error.heading=Error\nbible.delete.error.heading=Error\nselect.key.label=Pilih nada baru:\ntranspose.label=Sesuaikan\nalready.exists.overwrite.label=sudah ada. Timpah?\noverwrite.text=Timpah\ncant.save.schedule.title=Error saat menyimpan jadwal\ncant.save.schedule.text=Maaf, terjadi error dan jadwal tidak dapat disimpan.\nerror.removing.song.db=Terjadi error saat menghapus lagu dari database.\nconfirm.remove.text=Konfirmasi hapus\nconfirm.remove.question=Benar-benar hapus $1 dari database? Tindakan ini tidak dapat dibatalkan.\nquick.edit.text=Edit Cepat\nlibrary.preview.song.text=Pratinjau lagu\nvideo.error.unsupported=Maaf, file video yang Anda pilih tidak didukung.\nvideo.error.general=Maaf, terjadi error dengan file video yang Anda pilih.\nvideo.theme.label=Video\nselect.video.button=Pilih Video\nrefresh.images.panel=Segarkan Gambar\nadd.images.panel=Tambah Gambar\nselect.folder.images.panel=Pilih Folder...\ntext.position.label=Posisi Teks\nimage.folder=Folder Gambar:\nquick.insert.text=Sisip Cepat\nconfirm.overwrite.title=File sudah ada!\nconfirm.overwrite.text=File ini sudah ada. Apakah Anda ingin menggantinya atau lanjut tanpa menyalin?\nfile.rename.button=Ganti Nama\nfile.replace.button=Ganti\nfile.continue.button=Lanjut\nfile.rename.dialog.title=Ganti Nama\nfile.rename.dialog.text=Silakan masukkan nama file baru:\ninterface.language.label=Bahasa antarmuka:\nlanguage.changed=Bahasa Berubah\nlanguage.changed.message=Anda harus memulai ulang Quelea sebelum perubahan bahasa efektif.\ndebug.location=Lokasi Log Debug\ntop.text.position=Atas\nmiddle.text.position=Tengah\nbottom.text.position=Bawah\nshadow.color=Warna Bayangan\nshadow.x=Offset Bayangan X\nshadow.y=Offset Bayangan Y\nselect.imported.songs.line1=Lagu-lagu berikut telah diimpor.\nselect.imported.songs.line2=Pilih yang ingin Anda tambahkan ke database kemudian tekan \"Tambah\".\nselect.imported.songs.line3=Lagu-lagu yang Quelea anggap duplikat telah tidak dicentang.\nadd.text=Tambah\nadd.to.database.question=Tambahkan ke database?\nselect.export.songs.line1=Lagu-lagu berikut ada di database.\nselect.export.songs.line2=Pilih yang ingin Anda ekspor kemudian tekan \"Tambah\".\nadd.to.songpack.question=Ekspor lagu?\nprojection.window.title=Jendela Proyeksi\nclear.live.on.remove.schedule=Hapus item dari tampilan langsung saat dihapus dari jadwal\nspelling.complete.text=Pemeriksaan ejaan selesai.\ncomplete.title=Selesai\nspelling.check.title=Pemeriksaan ejaan\ncorrect.text=Benar\nignore.text=Abaikan\nspelling.errors.in.doc.label=Terdapat kesalahan ejaan dalam dokumen. Tekan \"F7\" untuk membuka dialog pemeriksaan ejaan.\nremove.image.text=Hapus Gambar\ndelete.image.title=Hapus Gambar\ndelete.image.confirmation=Benar-benar hapus gambar ini dari perpustakaan? Tindakan ini tidak dapat dibatalkan.\nnotice.expired.title=Pemberitahuan kedaluwarsa\nnotice.expired.text=Pemberitahuan yang Anda edit telah kedaluwarsa. Apakah Anda ingin menambahkannya kembali?\ndictionary.language.text=Bahasa Kamus\nconfirm.entry.exit.text=Apakah Anda ingin menyimpan perubahan pada lagu ini?\nconfirm.entry.exit.title=Simpan lagu?\nsave.text=Simpan\ndont.save.text=Jangan simpan\nvlc.warning.title=Tidak dapat menemukan 64-bit VLC\nvlc.warning.message=Quelea tidak dapat menemukan VLC 64-bit di sistem Anda. Tanpa itu, Quelea tidak akan dapat memutar video, audio, dan menampilkan lagu dengan latar belakang video. Apakah Anda ingin mengunduhnya sekarang? Anda harus memulai ulang Quelea setelah Anda menginstal VLC agar perubahan terlihat efeknya.\nvlc.version.message=Versi VLC Anda terlalu lama. Anda harus mengunduh versi terbaru VLC agar dapat memutar video, audio, dan menampilkan latar belakang video. Apakah Anda ingin mengunduhnya sekarang? Anda harus memulai ulang Quelea setelah Anda menginstal VLC agar perubahan terlihat efeknya.\ncontinue.without.video=Lanjutkan tanpa VLC\ndownload.vlc=Unduh VLC\nstartup.error.title=Kesalahan Mulai\nstartup.error.text=Maaf, Quelea tidak dapat mulai karena beberapa alasan di sistem Anda. Jika Anda ingin meminta bantuan untuk mencoba menjalankannya, silakan kirim email ke support@quelea.org dan lampirkan file log debug ($1).\\n\\nAtau, Anda juga bisa bertanya di grup diskusi Quelea (https://quelea.discourse.group).\nfilefilters.description.survivor.songbook=Berkas acetat Survivor\nfilefilters.description.xml.bibles=Biblia XML\nfilefilters.description.xml.easyslide=Berkas XML Easyslide\nfilefilters.description.xml.files=Berkas XML\nfilefilters.description.xml.openlyrics=Berkas openlyrics XML\nfilefilters.description.video.files=Berkas video\nfilefilters.description.pmsong.files=Lagu Presentation Manager\nfilefilters.description.vs.files=Basis data VideoPsalm\nfilefilters.description.audio.files=Berkas audio\nfilefilters.description.quelea.schedules=Jadwal Quelea\nfilefilters.description.powerpoint.presentations=Presentasi Powerpoint\nfilefilters.description.plain.text.song=Lagu teks sederhana\nfilefilters.description.maintable.dat=Berkas basis data ZionWorx MainTable\nfilefilters.description.multimedia.files=Berkas multimedia\nbible.search.results.found=hasil ditemukan\nbible.search.result.found=hasil ditemukan\nbible.search.keep.typing=Lanjutkan mengetik...\nuniform.font.size.label=Gunakan ukuran font yang sama\nmax.font.size.label=Ukuran font maksimum\nthumbnail.size.label=Ukuran thumbnail\nadditional.line.spacing.label=Spasi baris tambahan\nlogo.screen.tooltip=Klik kiri untuk menampilkan - Klik kanan untuk mengatur\nchange.graphics.label=Ubah Grafik\nfont.colour.label=Warna Font\nbackground.colour.label=Warna Latar Belakang\nmobile.lyrics.heading=Lirik Mobile\nuse.mobile.lyrics.label=Gunakan Lirik Mobile\nport.number.label=Nomor Port\nnavigate.mob.url.label=URL Lirik Mobile\nserver.changed.label=Pengaturan Server Diubah\nserver.changed.message=Anda harus menyalakan ulang Quelea agar pengaturan server baru berlaku.\nfilefilters.description.zip.files=Berkas Zip\nfilefilters.description.sqlite.files=Berkas SQLite\nloop.label=Langsung\nseconds.label=detik\nchosen.fonts.explanation=Quelea hanya menampilkan seleksi font di jendela tema. Sebar font yang Anda gunakan dari panel kiri ke panel kanan, sebar yang tidak Anda gunakan dari panel kanan ke panel kiri.\nignored.fonts.label=Font yang diabaikan\nchosen.fonts.label=Font yang dipilih\nfont.selection.dialog.title=Pilihan Font\nvideo.hue.label=Warna Dominan\nhover.for.position.label=Arahkan ke canvas untuk mengatur posisi teks\ntest.patterns.text=Uji Pola\ntest.patterns.explanation=Pola uji yang tersedia di sini seharusnya membantu Anda menyesuaikan pengaturan fokus dan warna layar dengan benar. Klik pada gambar uji untuk menampilkannya di kedua tampilan utama dan panggung.\nyoutube.url.label=URL video Youtube\nno.tdb.heading=TurboDB Data Exchange tidak ditemukan\nno.tdb.message=Untuk alasan teknis, Anda perlu mengunduh TurboDB data exchange (https://www.dataweb.de/en/support/downloads.html) sebelum Quelea dapat mengimpor database ZionWorx.\\nKetika Anda telah mengunduhnya, ekstrak isi file zip ke $1.\\n\\nJika Anda mengalami masalah, silakan tanyakan di grup diskusi (https://quelea.discourse.group).\nshow.verse.numbers=Tampilkan nomor ayat\nadd.song.hint.text=Tidak ada lagu? Tidak masalah. Untuk menambah lagu, klik tombol \"New Song\" di sebelah kiri.\nadd.song.hint.search.text=Belum ada lagu yang cocok dengan pencarian ini. Untuk menambah lagu, klik tombol \"New Song\" di sebelah kiri.\nfilefilters.description.songs.mb=Database Lagu Easyworship.MB\nfilefilters.description.songs.missionpraise=File RTF Misi Pujian\nfilefilters.description.songs.worshiphim=File MDB Worship Him\ntranslate.tooltip=Terjemahan lagu\nclose.button=Tutup\nadd.translation.button=Tambah terjemahan...\nenter.translation.name.label=Bahasa apa yang ingin Anda terjemahkan?\ntranslate.dialog.title=Pengelola terjemahan\nconfirm.remove.translation.title=Hapus terjemahan?\nconfirm.remove.translation.text=Yakin menghapus terjemahan ini?\ndefault.translation.label=Terjemahan default\noverwrite.lyrics.title=Timpa lirik yang ada?\noverwrite.lyrics.text=Kami telah secara otomatis menerjemahkan lirik untuk Anda - apakah Anda ingin menggunakannya?\\nTerjemahan Anda saat ini akan ditimpa.\nauto.translate.label=Coba terjemahkan lagu secara otomatis\nchoose.translations.text=Pilih terjemahan\nselect.translation.label=Pilih terjemahan yang ingin Anda tampilkan selain lirik default:\ntranslate.heading=Terjemahan\nremote.logo.text=Logo\nremote.black.text=Hitam\nremote.clear.text=Bersih\nremote.next.text=Slide Berikutnya\nremote.prev.text=Slide Sebelumnya\nremote.nextitem.text=Item Berikutnya\nremote.previtem.text=Item Sebelumnya\nserver.settings.heading=Pengaturan Server\nuse.remote.control.label=Gunakan Remote Control\nnavigate.remote.control.label=URL Remote Control\nremote.empty.lyrics=Lirik akan ditampilkan di sini\nremote.control.password=Sandi Remote Control (Sensitif terhadap huruf besar kecil)\nremote.logout.text=Keluar\nremote.login.text=Silakan masuk untuk melanjutkan\nremote.submit.text=Masuk\nmore.font.options.label=Opsi font lainnya\nmore.fonts.label=Font lainnya\ntranslation.font.text=Font terjemahan\nshadow.text=Bayangan\nsaving.schedule=Menyimpan jadwal...\nsmall.text.position.label=Posisi informasi lagu dan Alkitab\nbible.passage.selector.prompt=[Bab]:[Ayat]-[Ayat]\ntheme.button.tooltip=Tetapkan tema global untuk jadwal\ncurrently.displaying.text=Sedang ditampilkan\nplay=Putar\npause=Jeda\nshow.small.song.text.label=Tampilkan informasi lagu kecil\nshow.small.bible.text.label=Tampilkan informasi pasal Alkitab kecil\nuse.bible.verses=Bagi slide pasal Alkitab berdasarkan\nmax.items.per.slide=Jumlah maksimal % per slide\nverses=ayat\nwords=kata\nedit.bible.passage.text=Edit Tema Pasal\nnotice.colour.text=Warna Pemberitahuan\nnotice.font.text=Font Pemberitahuan\nnotice.speed.text=Kecepatan Pemberitahuan\nnotice.background.colour.text=Warna latar belakang pemberitahuan\nnotice.position.text=Posisi Pemberitahuan\nnotice.font.size=Ukuran font pemberitahuan\nnotice.options.heading=Pemberitahuan\nexport.pdf.button=Ekspor ke PDF\npdf.button=PDF\nexport.schedule.pdf.button=Ekspor urutan pelayanan ke PDF\nfilefilters.description.pdf.files=File PDF\nnot.started.label=Belum dimulai\nquelea.schedule.text=Jadwal Quelea\nuser.options.options=Opsi Pengguna\ntext.options.options=Opsi Teks\nstretch.video.label=Rentangkan Video\nexport.schedule.songs.pdf.button=Ekspor lagu ke PDF\nexporting.label=Mengekspor\nuse.shadow.label=Gunakan Bayangan?\nshadow.color.label=Warna Bayangan\nshadow.offset.label=Ofset Bayangan\nshadow.radius.label=Radius Bayangan\nshadow.spread.label=Penyebaran Bayangan\nhelp.menu.manual=Panduan\nedit.theme.text=Edit Tema\nchange.bible.version.text=Ganti Versi\nswitch.to.text=Ganti ke\nsave.qr.code.text=Simpan Kode QR\nnonbreak.tooltip=Tambah garis tanpa pemutus\ncopying.video.please.wait.text=Tunggu sebentar - sedang menyalin file video...\ntranslating.text.please.wait.text=Tunggu sebentar - sedang mengambil terjemahan...\nfilefilters.description.usr.files=File USR (SongSelect)\nsongselect.import.line1=Pilih file SongSelect di bawah.\npm.import.line1=Pilih lagu Presentation Manager yang ingin diimpor.\nsmi.import.line1=Pilih lagu Screen Monkey yang ingin diimpor.\nsongselect.button=SongSelect\nvideopsalm.button=VideoPsalm\npm.button=Presentation Manager\nsm.button=Screen Monkey\ntranslation.export.heading=Ekspor Terjemahan\ninclude.translations.question=Sertakan terjemahan di file PDF?\nslide.text=Slide\nautoplay.vid.label=Putar video secara otomatis di panel langsung\nadvance.on.live.label=Majukan jadwal di layar langsung\ndelete.translation.title=Hapus terjemahan\ndelete.translation.text=Hapus terjemahan $1?\nhelp.menu.wiki=Dokumentasi\npreview.on.image.change.label=Pratinjau item saat gambar berubah\nadd.timer.tooltip=Tambahkan pengatur waktu\nfilefilters.description.image.video.files=File Video dan Gambar\ntimer.duration.label=Durasi countdown\ntimer.file.label=Lokasi file latar belakang\nduration.tooltip.label=#:## atau ##m##s atau ##:##am\ntranslation.choice.title=Pilihan Terjemahan\nfont.options.title=Opsi Font\nnew.translation.title=Terjemahan Baru\nadd.timer.title=Tambahkan Pengatur Waktu\nuntitled.theme.text=Tema tanpa judul\ntimer.text.label=Teks Tambahan\ntimer.text.prompt=Gunakan # untuk menempatkan pengatur waktu, misalnya \"Pelayanan dimulai dalam #\" akan menampilkan \"Pelayanan dimulai dalam 05:00\"\ncountdown.label=Pengatur Waktu Countdown\ntimer.theme.label=Pengaturan tema\ntimer.theme.button=Ganti Tema\nembed.media.in.schedule=Sisipkan media di file jadwal\nmediashout.import.line1=Pilih lokasi file db MediaShout (di-ekspor ke format txt) di bawah:\nworshiphim.import.line1=Pilih lokasi file db Worship Him (dalam format mdb) di bawah:\nsongbeamer.import.line1=Pilih lokasi file SNG yang ingin Anda impor di bawah:\nfilefilters.description.txt.files=File .txt\nfilefilters.description.csv.files=File .csv\nmediashout.button=MediaShout\nworshiphim.button=Worship Him\nsongbeamer.button=SongBeamer\nclear.stage.view=Bersihkan Tampilan Panggung dengan Tampilan Utama\ntop=Atas\nbottom=Bawah\nepicworship.import.line1=Ini akan mengimpor lagu dari file Song Pack EpicWorship (.epc).\nfilefilters.description.epc=Songpack EpicWorship .epc\nepicworship.button=EpicWorship\nadd.videos.panel=Tambah Video\nremove.video.text=Hapus Video\ndelete.video.title=Hapus Video\ndelete.video.confirmation=Yakin ingin menghapus video ini dari perpustakaan? Tindakan ini tidak dapat dibatalkan.\nlibrary.video.heading=Video\ntimer.files.description=Pengatur waktu countdown\nadd.timers.panel=Tambah Pengatur Waktu\nlibrary.timer.heading=Pengatur Waktu\ntimer.save.label=Simpan pengatur waktu?\ntimer.name.label=Nama\nedit.timer.text=Edit Pengatur Waktu\nremove.timer.text=Hapus Pengatur Waktu\nconfirm.remove.timer=Yakin ingin menghapus $1 dari daftar pengatur waktu? Tindakan ini tidak dapat dibatalkan.\nkingsway.button.range=Jarak\nkingsway.range.import.text=Masukkan rentang halaman lagu untuk diunduh dari situs web Kingsway.\\nJumlah maksimum halaman saat ini sekitar 3600.\nkingsway.range.import.heading=Impor rentang lagu Kingsway\nsdb.files.description=File database lagu Songpro\nsongpro.button=SongPro\noverflow.song.label=Tumpang tindih lagu saat ini ke lagu selanjutnya\ninvalid.search=Pencarian tidak valid\nrcs.add.failed=Gagal Menambahkan\nrcs.add.success=Berhasil Ditambahkan\nrcs.add.song=Tambahkan Lagu ke Jadwal\nrcs.add.bible.error=Terjadi kesalahan saat menambahkan $1 ke jadwal\nrcs.submit=Kirim\nrcs.song.search=Lagu\nrcs.bible.search=Alkitab\nrcs.search=Cari dan Tambah\nshow.video.library.panel=Tampilkan Tab Perpustakaan Video (memerlukan restart)\nstage.show.clock=Tampilkan Jam\nuse.24h.clock=Gunakan Jam 24 Jam\nsplit.bible.verses=Jaga agar ayat tetap utuh di seluruh slide\nno.verse.title=Tidak ada ayat yang ditemukan\nno.verse.message=Kami tidak dapat menemukan satu atau lebih ayat yang ditentukan dan telah mencoba melanjutkan tanpa mereka.\nchorus.tooltip=Tambahkan judul chorus\nrecordings.path=Lokasi untuk rekaman\ndownload.path=Lokasi unduhan\nconvert.mp3=Otomatis konversi rekaman ke file MP3 (memerlukan VLC)\nrecording.warning.title=Atur lokasi rekaman terlebih dahulu\nrecording.warning.message=Anda harus menentukan lokasi tempat rekaman harus disimpan di panel opsi sebelum Anda bisa mulai merekam.\nrecording.no.devices.title=Tidak ditemukan perangkat rekaman\nrecording.no.devices.message=Maaf, tidak ditemukan perangkat rekaman yang kompatibel.\\nPastikan perangkat rekaman Anda terpasang dan diaktifkan.\nsave.recording.before.exit.title=Rekaman tidak tersimpan\nsave.recording.before.exit.message=Apakah Anda ingin menyimpan rekaman sebelum keluar?\nrecord.audio.tooltip=Rekam Audio\npause.record.tooltip=Jeda Rekaman\nmax.lines.per.slide=Baris per slide (kira-kira)\npresentation.options.heading=Presentasi\nrecordings.options.heading=Rekaman\ncopy.song.db.default=Salin lagu ke jadwal secara default\nmp.button=Mission Praise\nadd.pdf.tooltip=Tambahkan PDF\nimportexport.options.heading=Impor/Ekspor\npreview.failed=Preview Gagal\nset.loop.manually.title=PowerPoint tidak ditemukan\nset.loop.manually.message=The presentation has been closed. If you want to use Quelea's loop function with PowerPoint Viewer, you need to manually set the presentation to loop until stopped when you create it.\npresentation.changed.message=Anda harus memulai ulang Quelea agar Pengaturan Presentasi baru dapat diterapkan.\npresentation.changed.label=Pengaturan Presentasi Berubah\npresentation.not.started.label=PowerPoint tidak dimulai\npresentation.not.started.message=Sayangnya, presentasi Anda tidak dapat dimulai dengan PowerPoint. Mungkin filenya corrupt?\npp.already.running.label=PowerPoint sudah berjalan\npp.already.running.message=Another instance of PowerPoint was found. Please close all instances of PowerPoint before launching a presentation in Quelea to avoid data loss.\npp.path=Path to the PowerPoint program\nuse.pp.label=Gunakan PowerPoint untuk presentasi\nclose.all.presentations.label=Tutup semua presentasi terbuka\nclose.all.presentations.message=Tolong tutup semua jendela PowerPoint sebelum menekan OK atau akan secara otomatis dilakukan untuk menghindari sinyal yang dikirim ke jendela yang salah.\nlive.text.message=Teks apa pun yang ditulis di bawah akan terlihat oleh pengguna Mobile Lyrics saat layar utama kosong.\\n\\nGunakan baris kosong untuk memulai di slide baru. Anda juga dapat menggunakan tombol clear (atau CTRL + Return) untuk mereset di kedua ujung. Lebih dari 200 karakter dalam satu slide akan secara otomatis dipendekkan untuk pengguna.\nlive.text.title=Teks Langsung\nexit.live.text=Keluar Teks Langsung\nclear.live.text=Bersihkan\ndefault.translation=Default\nselect.language=Pilih bahasa:\nsend.live.text=Teks Langsung\nconverting.to.mp3=Mengkonversi rekaman ke MP3\nverse.tooltip=Tambahkan judul bait\nbridge.tooltip=Tambahkan judul bridge\nprechorus.tooltip=Tambahkan judul pre-chorus\ntag.tooltip=Tambahkan judul tag\nadd.website=Tambahkan website\nfocus.switcher.title=Quelea Focus Switcher\nfocus.switcher.message=Aktifkan fokus jendela di sini jika diperlukan selama presentasi.\nfocus.pp=Shift fokus ke PowerPoint\nfocus.quelea=Shift fokus ke Quelea\nwebsite.dialog.title=URL halaman web\nwebsite.dialog.header=Masukkan URL halaman web\nwebsite.dialog.content=Masukkan halaman web yang ingin Anda tampilkan:\npaste.label=Tempel\nundo.label=Batalkan\nredo.label=Ulangi\nshow.extra.live.panel.toolbar.options.label=Tampilkan opsi toolbar panel langsung tambahan\nlink.preview.and.live.dividers.label=Tautkan preview dan pembatas panel langsung\nsave.add.notice.button=Simpan dan tambah\nsaved.notices=Pemberitahuan tersimpan\ndelete.notice.button=Hapus\nschedule.items.skipped.text=Beberapa item jadwal tidak memiliki media yang disematkan, sehingga tidak ditambahkan.\nschedule.items.skipped.header=Item jadwal dilewati\nsong.sequence=Urutan lagu:\nsequence.selection.dialog.title=Pemilihan Urutan\nchosen.sequence.explanation=Seret item dari kiri ke kanan atau klik dua kali untuk membuat urutan lagu. Slides lirik akan nanti ditampilkan dalam urutan ini, terlepas dari urutan apa lirik disimpan dalam database.\navailable.sections.label=Bagian yang tersedia dalam lagu ini\nremove.sequence.tooltip=Hapus bagian dari urutan\nmove.up.sequence.tooltip=Pindahkan bagian ke atas dalam urutan\nmove.down.sequence.tooltip=Pindahkan bagian ke bawah dalam urutan\nchosen.sequence.label=Urutan yang dipilih\nsequence.tooltip=Dialog urutan lagu\nvideo.loop.tooltip=Togol pengulangan on/off\nallow.item.theme.override.global=Izinkan tema item khusus untuk menimpa tema global\nsong.default.theme.label=Tema default lagu\nbible.default.theme.label=Tema default Alkitab\nsmall.song.position.label=Posisi informasi lagu\nsmall.bible.position.label=Posisi informasi Alkitab\nsmall.bible.size.label=Ukuran informasi Alkitab\nsmall.song.size.label=Ukuran informasi lagu\ninterface.theme.label=Tema aplikasi\ndefault.theme.label=Default\ndark.theme.label=Gelap\ntheme.changed=Tema Diubah\ntheme.changed.message=Anda harus menyalakan ulang Quelea sebelum perubahan tema berlaku.\ndb.song.preview.label=Pratinjau lagu database\ndb.song.preview.label.control=Tidak ada\ndb.song.preview.label.databasepreview=Di panel database\ndb.song.preview.label.previewpane=Di panel pratinjau\nmobile.remote.heading=Remote Mobile\ninterface.options.options=Opsi Antarmuka\ngeneral.interface.options=Opsi Antarmuka Umum\nsmall.song.text.options=Opsi Teks Lagu Kecil\nsmall.bible.text.options=Opsi Teks Alkitab Kecil\ngeneral.user.options=Opsi Pengguna Umum\ntheme.options=Opsi Tema\nschedule.options=Opsi Jadwal\nfilefilters.description.propresenter=Lagu-lagu Propresenter\nfilefilters.description.sunday.plus=Lagu-lagu Sunday Plus\nsong.list=Daftar lagu\npassword.empty.label=Kata sandi kosong ditemukan\npassword.empty.message=Kata sandi server tidak boleh kosong. Kata sandi default \"quelea\" akan digunakan kecuali jika Anda mengisi kotak kata sandi.\nclick.to.add=Klik untuk menambahkan\nbible.version=Versi Alkitab\nslide.transition.label=Gunakan transisi fade antar slide\nopen.sequence.editor.tooltip=Tampilkan editor sequence\nsong.sequence.tip=Tip: Anda dapat menambahkan satu bagian (misalnya, chorus) lebih dari satu kali!\nremote.select.book=Pilih buku\nremote.search.tooltip=Tambahkan lagu atau ayat Alkitab\nremote.search.server=Cari server\nremote.add.go.live=Tambah dan tampilkan langsung\nremote.failed.finding.server=Gagal menemukan server Quelea Mobile Remote. Pastikan Quelea sudah dijalankan dan URL yang Anda masukkan benar.\nremote.navigation.settings.title=Pengaturan navigasi\nremote.enable.volume.navigation=Aktifkan navigasi volume\nremote.volume.navigation.description=Gunakan tombol volume hardware ponsel untuk berpindah ke slide/item berikutnya atau sebelumnya.\nremote.enable.dpad.navigation=Aktifkan navigasi dpad\nremote.dpad.navigation.description=Gunakan tombol dpad (atas/bawah) untuk berpindah ke slide/item berikutnya atau sebelumnya. Jika ingin menggunakan keyboard bluetooth atau pedal (seperti AirTurn), aktifkan ini.\nremote.swipe.navigation.title=Navigasi swipe\nremote.swipe.navigation.description=Pilih apa yang harus terjadi jika Anda menyapukan layar ke kiri atau kanan.\nremote.auto.progress.item=Lanjut ke item berikutnya/sebelumnya\nremote.action.clear=Sembunyikan teks dengan tombol clear\nremote.action.logo=Sembunyikan teks dan tampilkan logo\nremote.action.black=Sembunyikan teks dengan layar hitam\nremote.action.nothing=Jangan lakukan apa-apa\nremote.action.item=Pindah ke item selanjutnya/sebelumnya\nremote.action.slide=Pindah ke slide selanjutnya/sebelumnya\nremote.disable.record=Nonaktifkan tombol rekam\nremote.about.title=Tentang aplikasi ini\nremote.choose.action=Pilih tindakan untuk $1\nremote.control.app.name=Quelea Mobile Remote\nremote.select.theme=Pilih tema\nremote.about.text.app=Aplikasi ini adalah aplikasi non-profit yang dibuat untuk digunakan dengan perangkat lunak gereja open source Quelea (http://quelea.org). Meskipun sudah tidak lagi dalam tahap beta, tentu saja masih tidak sempurna dan belum lengkap fiturnya. Ini adalah proyek sampingan dan terutama dimaksudkan untuk penggunaan pribadi, tetapi dengan senang hati dibagikan dengan siapa saja yang mungkin menemukannya bermanfaat.\nremote.about.text.support=Jangan ragu untuk mengirimi saya email di arvid@quelea.org jika Anda memiliki pertanyaan atau mengalami masalah. Pastikan hanya menjalankan Quelea sebelum aplikasi (dengan kedua server aktif), kedua perangkat terhubung ke jaringan yang sama, dan Anda sudah memasukkan URL yang benar pertama kali.\nremote.about.text.responsibility=Saya tidak dapat menjamin pengalaman yang sempurna, jadi saya tidak akan menanggung tanggung jawab atas masalah apa pun yang mungkin terjadi dalam setting hidup.\nremote.ipv6.not.supported=Sayangnya Anda tidak dapat menggunakan alamat IPv6. Anda harus menggunakan alamat IPv4 untuk dapat menggunakan aplikasi ini. Jika Anda tidak tahu bagaimana menemukannya, googling 'temukan ip lokal' dan nama sistem operasi Anda. Masukkan alamat IPv4/URL di bawah ini.\nremote.on.end.title=Tindakan akhir/awal item\nremote.on.end.description=Pilih apa yang ingin Anda lakukan ketika Anda menavigasi dengan salah satu dari dua opsi di atas dan mencapai akhir/awal item.\nremote.long.press.title=Tindakan tekan lama\nremote.double.press.title=Tindakan tekan ganda\nremote.double.press.description=Pilih apa yang ingin terjadi jika Anda menekan dua tombol pada saat yang sama saat Anda menavigasi dengan salah satu dari dua opsi di atas.\nremote.select.chapter.verses=Pilih pasal dan ayat (s)\nremote.theme.was.set=$1 telah disetel sebagai tema global\nremote.port.needed=URL harus mengandung nomor port di akhir (misalnya ':1112'). Coba lagi.\nremote.connected=Tersambung!\nremote.wrong.content=Ditemukan konten halaman yang salah. Coba lagi.\nremote.no.wifi=Anda tidak terhubung ke wifi. Mohon setel URL secara manual atau hubungkan ke wifi.\nremote.use.autoconnect=Coba secara otomatis menemukan URL server\nremote.information.title=Informasi\nremote.report.issue=Laporkan masalah\nremote.about.translating=Tentang menerjemahkan aplikasi\nremote.privacy.policy=Kebijakan privasi\nremote.donations.link=Berikan donasi\nremote.needs.newer.version=Fitur ini membutuhkan server yang menjalankan Quelea $1 atau yang lebih baru\nremote.source.code=Kode sumber\nremote.send.notice.tooltip=Tambahkan pemberitahuan\nremote.signal.failed=Gagal mengirim sinyal ke server\nremote.chapter=Bab\nremote.start.verse=Mulai bait\nremote.end.verse=Akhiri bait\nclient.id=ID Klien\nenter.valid.port=Silakan masukkan angka antara 1029 dan 49151\ngeneral.text.options=Opsi Teks Umum\ntranslation.text.options=Opsi Teks Terjemahan\nuse.default.translation.label=Gunakan Terjemahan Default\ntranslation.name.label=Nama terjemahan\nccli.licence=Lisensi CCLI\n"
  },
  {
    "path": "Quelea/languages/it.lang",
    "content": "LANGUAGENAME=Italiano (IT)\ndatabase.heading=Database\nimport.heading=Importa\nqsp.button=Quelea Song Pack\nos.button=Opensong\nolp.button=OpenLP\nolyrics.button=OpenLyrics\nzw.button=ZionWorx\nsp.button=Sunday Plus\npco.button=Planning Center Online\npco.login.import.heading=Planning Center Online Login\npco.loginerror.title=Errore di Login\npco.loginerror.warning=Impossibile accedere, controlla email e password e riprova\npco.import.heading=Planning Center Online\nelevanto.button=Elevanto\nelevanto.import.heading=Elevanto\nelevanto.loginsuccess.message=Puoi chiudere questa finestra e tornare a Quelea\nelevanto.loginerror.warning=Errore di login in Elevanto\npassword.text=Password\nemailaddress.text=Email\nlogin.text=Login\nss.button=Survivor Songbook\nprojector.heading=Proiezione\ncontrols.heading=Controlli\non.button=On\noff.button=Off\ncopy=Copia\nswitch.input.button=Scambia Input\ngeneral.options.heading=Generali\ndisplay.options.heading=Display\nbible.options.heading=Bibbia\ncheck.for.update.label=Controlla aggiornamenti all'avvio\n1.monitor.warn.label=Avverti se è connesso un solo monitor\ncapitalise.start.line.label=Capitalizza l'inizio di ogni riga\none.line.mode.label=In preview mostra ogni sezione della canzone su una sola riga\ndisplay.song.info.label=Mostra info canzoni\ntext.border.thickness.label=Spessore bordo testo\nmax.chars.line.label=Numero massimo caratteri per riga\nadvanced.label=Avanzate\nok.button=OK\noutput.text=Output\ncontrol.screen.label=Schermo di controllo\nprojector.screen.label=Schermo di proiezione\nstage.screen.label=Schermo su palco\ncustom.position.text=Posizione Personalizzata\ndefault.bible.label=Bibbia Predefinita\nmax.verses.label=Numero massimo di versi da mostrare insieme\nadd.bible.label=Aggiungi bibbia...\ndelete.bible.label=Cancella bibbia corrente\ndelete.bible.confirmation=Vuoi davvero rimuovere la bibbia $1?\nnone.text=Nessuno\nnew.schedule.button=Nuova Scaletta\nopen.schedule.button=Apri Scaletta\nsave.schedule.button=Salva Scaletta\nsave.as.schedule.button=Salva Scaletta con nome...\nprint.schedule.button=Stampa Scaletta\noptions.title=Opzioni\noptions.button=Opzioni\nexit.button=Esci\nnew.schedule.text=Nuova Scaletta\ncreate.new.schedule.text=Crea una nuova scaletta\nopen.schedule.text=Apri Scaletta\nopen.existing.schedule.text=Apri scaletta esistente\nsave.schedule.text=Salva Scaletta\nsave.schedule.disk.text=Salva scaletta su disco\nsave.as.schedule.text=Salva Scaletta con nome\nsave.as.schedule.disk.text=Salva Scaletta in un file diverso\nprint.schedule.text=Stampa Scaletta\nprint.current.schedule.text=Stampa Scaletta corrente\noptions.text=Opzioni\ndisplay.options.text=Mostra la finestra di opzioni\nexit.text=Termina Quelea\nquit.quelea.text=Esci da Quelea\nlibrary.image.heading=Immagini\nlibrary.songs.heading=Canzoni\nlibrary.bible.heading=Bibbia\nbible.heading=Bibbie\nlibrary.song.search=Cerca\nclear.search.box=Cancella ricerca\nadd.song.text=Aggiungi canzone al database\nremove.song.text=Rimuovi canzone dal database\nlibrary.add.to.schedule.text=Aggiungi alla scaletta\nlibrary.copy.to.schedule.text=Copia nella scaletta\nlibrary.edit.song.text=Modifica canzone\nlibrary.remove.song.text=Rimuovi canzone\nlibrary.print.song.text=Stampa canzone\nadd.to.schedule.text=Aggiungi alla Scaletta\norder.service.heading=Scaletta\nmove.down.schedule.tooltip=Sposta giù nella scaletta\nmove.up.schedule.tooltip=Sposta su nella scaletta\nremove.song.schedule.tooltip=Rimuovi dalla scaletta\nadjust.theme.tooltip=Modifica tema\nedit.song.text=Modifica canzone\nnew.theme.text=Nuovo tema...\ntheme.select.text=Seleziona tema:\ndefault.theme.name=Predefinito\ndefault.theme.text=Tema predefinito\nremove.theme.tooltip=Rimuovi tema\nedit.theme.tooltip=Modifica tema\nedit.theme.heading=Gestore tema\npreview.heading=Preview\nlive.heading=Live\ngo.live.text=Vai Live\nblack.screen.tooltip=Schermo Nero\nclear.text.tooltip=Ripulisci Schermo\nhide.display.output.tooltip=Nascondi output display\nschedule.heading=Scaletta\nadd.song.button=Aggiungi canzone\nremove.item.button=Rimuovi elemento\nadd.multimedia.heading=Aggiungi Multimedia\nadd.presentation.button=Aggiungi Presentazione\nadd.video.button=Aggiungi Video\nadd.youtube.button=Aggiungi Video YouTube\nadd.live.video.button=Aggiungi Video Live\nadd.dvd.button=Aggiungi DVD\nadd.audio.button=Audio\nadd.audio.tooltip=Aggiungi Audio\nshare.heading=Condividi\nemail.button=Invia Scaletta via email\nmanage.notices.button=Gestisci Avvisi...\nnotices.heading=Avvisi\nnew.notice.text=Nuovo Avviso\nedit.notice.text=Modifica Avviso\nremove.notice.text=Rimuovi Avviso\ndone.text=Fatto\nnew.notice.heading=Nuovo Avviso\nnotice.text=Avviso\nnotice.times.text=Numero di volte da mostrare\nnotice.infinite.question=Mostra all'infinito\nadd.notice.button=Aggiungi Avviso\nedit.notice.button=Modifica Avviso\nyes.text=Si\nno.text=No\ncancel.text=Cancella\nnew.song.button=Nuova Canzone\nedit.song.button=Modifica Canzone\ndelete.song.button=Cancella Canzone\nsongs.heading=Canzoni\ntags.button=Gestisci tag...\nsource.button=Risorsa\neasyslides.button=EasySlides\npropresenter.button=ProPresenter\nfreeworship.button=Freeworship\neasyworship.button=EasyWorship 2009\nplainText.button=Testo normale\nkingsway.button=Kingsway Online\nexport.heading=Esporta\nfilter.tag=Filtra tag\ntags.colon.label=Tag:\nimport.button=Importa\nimport.all.button=Importa Tutti\nimport.selection.button=Importa Selezione\nrefresh.button=Aggiorna\nclick.select.file.text=Clicca per selezionare un file\ncheck.duplicates.text=Controlla duplicati\nedit.song.title=Modifica Canzone\nbasic.information.heading=Info di base\ndetailed.info.heading=Info dettagliate\ntheme.heading=Tema\ntitle.label=Titolo\nauthor.label=Autore\nrun.spellcheck.label=Controllo ortografico\nfix.apos.label=Correggi Apostrofi\ntrim.lines.tooltip=Linee di trim\ntranspose.tooltip=Trasponi...\ncancel.button=Cancella\nccli.number.label=Numero CCLI\ncopyright.label=Copyright\nyear.label=Anno\npublisher.label=Editore\ntags.label=Tag\ntype.tag.name.here.text=<Digita qui il tag>\nkey.label=Tonalità\ncapo.label=Capotasto\nnotes.label=Note\nfont.theme.label=Font\nchoose.color.text=Scegli colore...\nbackground.text=Sfondo\nbackground.theme.label=Tema di Sfondo\ncolor.theme.label=Colore\nimage.theme.label=Immagine\nselect.color.title=Seleziona Colore\nselect.color.button=Seleziona Colore\nnew.song.title=Nuova Canzone\nsof.button=Songs of Fellowship\ntype.lyrics.here.text=Digita qui il testo\nrtf.files.description=file RTF\nsng.files.description=file SNG (songbeamer)\nvideopsalm.import.line1=Questo comando importerà la libreria VideoPsalm da un file JSON.\nfreeworship.import.line1=Questo comando importerà le canzoni di Freeworship da un file XML.\nsof.import.line1=Questo comando importerà la libreria SoF da un file RTF.\nplaintext.import.line1=Questo comando importerà le canzoni da un file di testo.\nkingsway.import.line1=Questo comando importerà la libreria di canzoni kingsway da internet.\nsongpro.import.line1=Questo comando importerà canzoni da un database SDB di SongPro.\nkingsway.import.line2=Questo comando richiederà molto tempo (anche delle ore!), sii paziente e lasca lavorare Quelea!\neasyslides.import.line1=Questo comando importerà le canzoni da un file XML di EasySlides.\npropresenter.import.line1=Questo comando importerà le canzoni da un file di ProPresenter.\neasyworship.import.line1=Questo comando importerà le canzoni da un file .MB di EasyWorship.\nmissionpraise.import.line1=Questo comando importerà le canzoni da un file RTF di Mission Praise.\nopenlyrics.import.line1=Seleziona il percorso delle canzoni di openlyrics.\nqsp.import.line1=Seleziona il percorso del Quelea Song Pack.\nos.import.line1=Seleziona il percorso del database Opensong.\nzw.import.line1=Selecziona il percorso del file di ZionWorx \"MainTable.dat\".\nzw.import.line2=Di solito si trova in \"C:\\\\ProgramData\\\\ZionWorx\\\\2.6\\\\Data\".\nolp.import.line1=Seleziona il percorso del database di OpenLP.\nsundayplus.import.line1=Seleziona il percorso del database di Sunday Plus.\nsource.import.line1=Seleziona il percorso del file ymns sul CD.\nsurvivor.import.line1=Seleziona il percorso del PDF di Survivor Songbook.\nsurvivor.import.line2=Deve essere un file acetates.pdf, non accordi o spartiti.\nimport.error.message=Attenzione, c'è stato un problema con l'importazione. Sentiti libero di chiedere aiuto sul forum di Quelea: https://quelea.discourse.group/\nemail.error.title=Errore email\nemail.error.text=Impossibile aprire il client email. Assicurati di avere un client email installato e configurato per gestire file eml, oppure invia la mail manualmente.\nemail.text=Ciao! In allegato la scaletta di Quelea. Aprila con Quelea e tutti gli elementi dovrebbero apparire correttamente.\nselect.image.button=Seleziona Immagine\nimage.files.description=File immagine\npng.files.description=File immagine PNG\ntools.label=Strumenti\nselect.songs.title=Seleziona Canzoni\ncheck.uncheck.all.text=Seleziona/Deseleziona tutto\ndelete.theme.confirm.title=Conferma cancellazione\ndelete.theme.question=Vuoi cancellare questo tema?\ntoo.many.verses.error=Attenzione, impossibile mostrare così tanti versi... prova con un numero inferiore.\none.monitor.warning=Sembra tu abbia un solo monitor installato. Ciò va bene se stai usando Quelea per preparare delle scalette ma sei lo stai usando live avrai bisogno di due monitor per un uso corretto.  \none.monitor.title=Un Solo Monitor\nno.dvd.heading=Nessun disco trovato\nno.dvd.error=Per favore inserisci un DVD o un Blu-ray valido.\nadding.presentation.status=Importo la presentazione...\nadding.presentation.error.message=C'è stato un errore nell'importare la presentazione, potrebbe essere danneggiata?\nadding.presentation.error.title=Errore importazione presentazione\nimporting.status=Importo...\nname.label=Nome\nsimilar.colors.text=Hai scelto colori molto simili per sfondo e testo sarà difficile per l'assemblea distinguerli. Prova a scegliere dei colori migliori!\nwarning.label=Attenzione\nfile.menu=File\ntools.menu=Strumenti\nschedule.menu=Scaletta\ndatabase.menu=Database\nprojector.menu=Proiezione\nnew.theme.title=Nuovo Tema\nadd.theme.label=Aggiungi Tema\ntheme.name.label=Nome Tema\ntheme.select.label=Seleziona Tema\ntheme.copy.label=Copia dal tema\nhelp.menu=Aiuto\nhelp.menu.website=Sito Web\nhelp.menu.discussion=Supporto / Discussioni (fai domande qui)\nhelp.menu.feedback=Feedback\nhelp.menu.download=Download\nhelp.menu.update=Controlla aggiornamenti\nhelp.menu.about=Info...\nhelp.menu.error.text=Attenzione, non siamo riusciti a caricare la pagina. Puoi navigare manualmente: $1\nhelp.menu.error.title=Errore\nhelp.about.title=Info\nhelp.about.version=Versione\nhelp.about.close=Chiudi\nhelp.about.line1=Quelea è rilasciato con licenza GPL (Versione 3.)\nhelp.about.line2=É, e sarà sempre, software libero e open source.\nnew.schedule.tooltip=Nuova Scaletta\nopen.schedule.tooltip=Apri Scaletta\nsave.schedule.tooltip=Salva Scaletta\nprint.schedule.tooltip=Stampa Scaletta\nnew.song.tooltip=Nuova canzone\nadd.presentation.tooltip=Aggiungi Presentazione\nadd.dvd.tooltip=Aggiungendo DVD\nadd.video.tooltip=Aggiungi Video\nadd.multimedia.tooltip=Aggiungi Multimedia\nmanage.tags.tooltip=Gestisci tag\nmanage.notices.tooltip=Gestisci Avvisi\nalready.running.error=Sembra che Quelea dia già avviato.\\nAssicurati di aver chiuso tutte le altre istanze prima di avviare il programma.\nalready.running.title=Già avviato\nerror.schedule.message=C'è stato un problema nell'apertura della scaletta. Potrebbe essere danneggiata, oppure non è stata salvata da Quelea.\nerror.schedule.title=Errore nell'apertura della scaletta\nprint.chords.question=Includere gli accordi nella stampa?\nprint.chords.export.question=Includere gli accordi nell'esportazione della canzone?\nprinting.options.text=Stampa canzone\nspace.key=spazio\nupdating.db=Aggiornamento Database\nerror.updating.song.text=C'è stato un errore nell'aggiornamento della canzone nel database, potrebbe essere danneggiato.\nerror.text=Errore\nquick.shortcut.description=Esc per annullare, shift+enter per salvare\nsave.before.exit.text=La scaletta è stata modificata. Salvare prima di chiudere?\nsave.before.exit.title=Scaletta non salvata\nno.chords.message=Questa canzone non ha accordi da trasporre.\nno.chords.title=Nessun accordo\nerror.checking.updates.title=Impossibile controllare gli aggiornamenti\nerror.checking.updates.text=Attenzione, c'è stato un errore nel controllo degli aggiornamenti. Per favore controlla la connessione internet e riprova.\nnewer.version.available=C'è una nuova versione di Quelea disponibile\nno.newer.version.available=Stai usando l'ultima versione di Quelea\nvisit.webpage.now=Visitare il sito web per scaricarlo ora?\ndownload.manual.update=Puoi scaricarlo qui\nnewer.version.available.title=Aggiornamento disponibile\nno.newer.version.available.title=Non ci sono aggiornamenti disponibili!\ncheck.kingsway.start=Hai già importato elementi dalla libreria di kingsway. Vuoi importare quelli rimasti?\ncheck.kingsway.start.title=Elementi già importati\nimport.no.songs.title=Nessuna canzone trovata\nimport.no.songs.text=Impossibile trovare canzoni da importare.\nstage.options.heading=Monitor di palco\nstage.show.chords=Mostrare accordi?\nstage.line.alignment=Allineamento Testo\nstage.font.selection=Font\nstage.background.colour=Colore Sfondo\nstage.lyrics.colour=Colore Testo\nstage.chord.colour=Colore Accordi\nleft=Sinistra\ncentre=Centro\nright=Destra\nconfirm.label=Sei sicuro?\nschedule.clear.text=La scaletta è stata modificata. Continuare senza salvare?\npart=parte\nhelp.menu.facebook=Pagina Facebook\nvideo.error=Impossibile inizializzare le librerie video - i video non funzioneranno. Fare riferimento al forum(vedere menù Aiuto) per risolvere il problema.\nvideo.error.title=Errore Video\ntext.shadow.label=Mostra Ombra Testo\nadding.images=Aggiungendo le immagini...\nsetup.oo.failed.text=Impossibile impostare OpenOffice per la visualizzazione delle presentazioni. Per favore assicurati di avere OpenOffice installato e che il percorso specificato sia corretto.\nsetup.oo.failed.title=Impossibile avviare OpenOffice\nuse.oo.label=Usa OpenOffice per le presentazioni (sperimentale)\noo.path=Percorso OpenOffice\nbrowse=Esplora\nloading.text=Caricamento\nbuilding.bible.index=Caricamento bibbie\nbible.search.title=Trova bibbie\ninitial.search.text=<Digita qui per cercare>\nview.bible.button=Esplora bibbie...\nsearch.bible.button=Cerca bibbie...\nall.text=All\nbible.browser.title=Esploratore bibbia\nopen.in.browser=Apri nel Browser...\nkingsway.button.all=Tutte le canzoni\nkingsway.button.one=Una canzone\nsong.id.selector=Seleziona l'ID della canzone\nbible.copy.error.text=Attenzione, c'è stato un errore nella copia del file bibbia nel percorso.\nbible.delete.error.text=Attenzione, c'è stato un errore nell'eliminazione del file bibbia dal percorso.\nbible.copy.error.heading=Errore\nbible.delete.error.heading=Errore\nselect.key.label=Seleziona la nuova tonalità:\ntranspose.label=Trasponi\nalready.exists.overwrite.label=già esiste. Sovrascrivere?\noverwrite.text=Sovrascrivi\ncant.save.schedule.title=Errore durante il salvataggio della scaletta\ncant.save.schedule.text=Attenzione, c'è stato un errore, la scaletta non può essere salvata.\nerror.removing.song.db=C'è stato un errore nel cancellare la canzone dal database.\nconfirm.remove.text=Conferma rimozione\nconfirm.remove.question=Vuoi davvero rimuovere $1 dal database? Quest'azione non può essere annullata.\nquick.edit.text=Modifica Rapida\nlibrary.preview.song.text=Anteprima canzone\nvideo.error.unsupported=Attenzione, il file video selezionato non è supportato.\nvideo.error.general=Attenzione, c'è stato un errore con il file video selezionato.\nvideo.theme.label=Video\nselect.video.button=Seleziona Video\nrefresh.images.panel=Aggiorna Immagini\nadd.images.panel=Aggiungi Immagini\nselect.folder.images.panel=Seleziona cartella...\ntext.position.label=Posizione Testo\nimage.folder=Cartella immagine:\nquick.insert.text=Inserimento rapido\nconfirm.overwrite.title=Il file esiste già!\nconfirm.overwrite.text=Questo file esiste già. Vuoi sostituirlo o continuare senza copiare?\nfile.rename.button=Rinomina\nfile.replace.button=Sostituisci\nfile.continue.button=Continua\nfile.rename.dialog.title=Rinomina\nfile.rename.dialog.text=Inserisci il nome del nuovo file:\ninterface.language.label=Lingua:\nlanguage.changed=Lingua Modificata\nlanguage.changed.message=Devi riavviare Quelea affinché le modifiche abbiano effetto.\ndebug.location=Posizione dei log di debug\ntop.text.position=Alto\nmiddle.text.position=Centro\nbottom.text.position=Basso\nshadow.color=Colore Ombra\nshadow.x=Offset Ombra X\nshadow.y=Offset Ombra Y\nselect.imported.songs.line1=Le seguenti canzoni sono state importate.\nselect.imported.songs.line2=Seleziona quelle che vuoi inserire nel database e premi \"Aggiungi\".\nselect.imported.songs.line3=Le canzoni duplicate sono state deselezionate.\nadd.text=Aggiungi\nadd.to.database.question=Aggiungere al database?\nselect.export.songs.line1=Le seguenti canzoni sono nel database:\nselect.export.songs.line2=Seleziona quelle che vuoi esportare e premi \"Aggiungi\".\nadd.to.songpack.question=Esportare canzone?\nprojection.window.title=Proiezione\nclear.live.on.remove.schedule=Rimuovi elemento dalla vista Live alla cancellazione dalla scaletta\nspelling.complete.text=Il controllo ortografico è terminato.\ncomplete.title=Completato\nspelling.check.title=Controllo ortografico\ncorrect.text=Correggi\nignore.text=Ignora\nspelling.errors.in.doc.label=Ci sono errori ortografici nel documento. Premi \"F7\" per aprire la finestra del controllo ortografico.\nremove.image.text=Rimuovi Immagine\ndelete.image.title=Cancella Immagine\ndelete.image.confirmation=Vuoi davvero rimuovere quest'immagine dalla libreria? Quest'azione non può essere annullata.\nnotice.expired.title=Avviso scaduto\nnotice.expired.text=L'avviso che stai modificando è scaduto. Vuoi aggiungerlo di nuovo?\ndictionary.language.text=Lingua Dizionario\nconfirm.entry.exit.text=Vuoi salvare le modifiche apportate a questa canzone?\nconfirm.entry.exit.title=Salvare canzone?\nsave.text=Salva\ndont.save.text=Non salvare\nvlc.warning.title=VLC non trovato\nvlc.warning.message=Quelea non ha trovato VLC nel tuo sistema. Senza di esso, Quelea non sarà in grado di riprodurre video, audio, e mostrare canzoni con sfondo video. Vuoi scaricarlo ora? Dopo aver installato VLC dovrai riavviare Quelea affinché le modifiche abbiano effetto.\nvlc.version.message=La tua versione di VLC è troppo vecchia. Dovrai scaricare l'ultima versione di VLC per riprodurre video, audio e mostrare canzoni con sfondo video. Vuoi scaricarlo ora? Dopo aver installato VLC dovrai riavviare Quelea affinché le modifiche abbiano effetto.\ncontinue.without.video=Continua senza VLC\ndownload.vlc=Scarica VLC\nstartup.error.title=Errore di avvio\nstartup.error.text=Attenzione, Quelea non riesce ad avviarsi sul tuo sistema. Se desideri ricevere aiuto , manda una email a support@quelea.org e allega il file di log ($1).\\n\\In alternativa, sentiti libero di chiedere al gruppo di discussione di Quelea (https://quelea.discourse.group).\nfilefilters.description.survivor.songbook=File acetates di Survivor\nfilefilters.description.xml.bibles=Bibbie XML\nfilefilters.description.xml.easyslide=File XML EasySlides\nfilefilters.description.xml.files=File XML\nfilefilters.description.xml.openlyrics=File XML OpenLyrics\nfilefilters.description.video.files=File video\nfilefilters.description.pmsong.files=Canzoni Presentation Manager\nfilefilters.description.vs.files=Database VideoPsalm\nfilefilters.description.audio.files=File Audio\nfilefilters.description.quelea.schedules=Scalette Quelea\nfilefilters.description.powerpoint.presentations=Presentazioni PowerPoint\nfilefilters.description.plain.text.song=canzoni in file di testo\nfilefilters.description.maintable.dat=Database MainTable ZionWorx\nfilefilters.description.multimedia.files=File Multimediali\nbible.search.results.found=risultati trovati\nbible.search.result.found=risultato trovato\nbible.search.keep.typing=Continua a digitare...\nuniform.font.size.label=Usa dimensioni font uniformi\nmax.font.size.label=Dimensione font massima\nthumbnail.size.label=Dimensione Thumbnail\nadditional.line.spacing.label=Spaziatura righe addizionale\nlogo.screen.tooltip=Click sinistro per mostrare - Click destro per impostare\nchange.graphics.label=Cambia Grafica\nfont.colour.label=Colore Font\nbackground.colour.label=Colore Sfondo\nmobile.lyrics.heading=Mobile Lyrics\nuse.mobile.lyrics.label=Usa Mobile Lyrics\nport.number.label=Numero Porta\nnavigate.mob.url.label=URL Mobile Lyrics\nserver.changed.label=Impostazioni Server modificate\nserver.changed.message=Dovrai riavviare Quelea affinché le modifiche alle impostazioni del server abbiano effetto.\nfilefilters.description.zip.files=File Zip\nfilefilters.description.sqlite.files=File SQLite\nloop.label=Loop\nseconds.label=secondi\nchosen.fonts.explanation=Quelea mostra solo una selezione di font nella finestra del tema. Trascina i font che usi dal pannello di sinistra a quello di destra, mentre quelli che non usi da destra a sinistra.\nignored.fonts.label=Font Ignorati\nchosen.fonts.label=Font Scelti\nfont.selection.dialog.title=Selezione Font\nvideo.hue.label=Tinta\nhover.for.position.label=Passa il mouse sul pannello per impostare la posizione del testo\ntest.patterns.text=Pattern di Test\ntest.patterns.explanation=I Pattern di test disponibili qui dovrebbero aiutarti a impostare correttamente il fuoco e il colore del tuo proiettore. Clicca su un'immagine per mostrarla nella vista principale e di palco.\nyoutube.url.label=URL video Youtube\nno.tdb.heading=TurboDB Data Exchange non trovato\nno.tdb.message=Per ragioni tecniche, devi scaricare TurboDB data exchange (https\\://www.dataweb.de/en/support/downloads.html) prima che Quelea possa importare un database ZionWorx.\\nUna volta scaricato, estrai il contenuto del file zip $1.\\n\\nSe hai problemi, sentiti libero di fare una domanda al gruppo di discussione (https://quelea.discourse.group).\nshow.verse.numbers=Mostra numeri dei versi\nadd.song.hint.text=Nessuna canzone? Nessun Problema. Per aggiungere una canzone, clicca su \"Nuova canzone\" sulla sinistra.\nadd.song.hint.search.text=Non ci sono canzoni che corrispondono alla ricerca. Per aggiungere una canzone, clicca su \"Nuova Canzone\" sulla sinistra.\nfilefilters.description.songs.mb=Database Songs.MB EasyWorshipasyworship\nfilefilters.description.songs.missionpraise=File RTF Mission Praise\nfilefilters.description.songs.worshiphim=File MDB Worship Him\ntranslate.tooltip=Song traduzioni\nclose.button=Close\nadd.translation.button=Aggiungi traduzione...\nenter.translation.name.label=In quale lingua vuoi tradurre?\ntranslate.dialog.title=Gestore Traduzioni\nconfirm.remove.translation.title=Rimuovere Traduzione?\nconfirm.remove.translation.text=Vuoi davvero cancellare questa traduzione?\ndefault.translation.label=Traduzione Predefinita\noverwrite.lyrics.title=Sovrascrivere testo esistente?\noverwrite.lyrics.text=Abbiamo tradotto i testi per te automaticamente - Vuoi usarli?\\nLe traduzioni attuali saranno sovrascritte.\nauto.translate.label=Prova a tradurre automaticamente le canzoni\nchoose.translations.text=Scegli traduzioni\nselect.translation.label=Seleziona la traduzione che vuoi visualizzare insieme al testo predefinito:\ntranslate.heading=Traduzioni\nremote.logo.text=Logo\nremote.black.text=Nero\nremote.clear.text=Pulisci\nremote.next.text=Slide Successiva\nremote.prev.text=Slide Precedente\nremote.nextitem.text=Elemento Successivo\nremote.previtem.text=Elemento Precedente\nserver.settings.heading=Impostazioni Server\nuse.remote.control.label=Usa Remote Control\nnavigate.remote.control.label=Remote Control URL\nremote.empty.lyrics=I testi saranno mostrati qui\nremote.control.password=Passord per Remote Control (Attenzione alle mAiUsColE)\nremote.logout.text=Logout\nremote.login.text=Accedere per continuare\nremote.submit.text=Login\nmore.font.options.label=Opzioni aggiuntive font\nmore.fonts.label=Altri font\ntranslation.font.text=Font traduzione\nshadow.text=Ombra\nsaving.schedule=Salvataggio scaletta in corso...\nsmall.text.position.label=Posizione info canzoni e bibbia\nbible.passage.selector.prompt=[Capitolo]:[Verso]-[Verso]\ntheme.button.tooltip=Imposta tema globale per scaletta\ncurrently.displaying.text=Vista attuale\nplay=Play\npause=Pausa\nshow.small.song.text.label=Mostra info canzone in piccolo\nshow.small.bible.text.label=Mostra info bibbia in piccolo\nuse.bible.verses=Dividi le slide del testo biblico per\nmax.items.per.slide=Numero massimo di % per slide\nverses=versi\nwords=parole\nedit.bible.passage.text=Modifica Tema del passaggio\nnotice.colour.text=Colore Avvisi\nnotice.font.text=Font Avvisi\nnotice.speed.text=Velocità scorrimento Avvisi\nnotice.background.colour.text=Colore sfondo Avvisi\nnotice.position.text=Posizione Avvisi\nnotice.font.size=Dimensione testo Avvisi\nnotice.options.heading=Avvisi\nexport.pdf.button=Esporta in PDF\npdf.button=PDF\nexport.schedule.pdf.button=Esporta Scaletta in PDF\nfilefilters.description.pdf.files=File PDF\nnot.started.label=Non avviato\nquelea.schedule.text=Scaletta Quelea\nuser.options.options=Opzioni Utente\ntext.options.options=Opzioni Testo\nstretch.video.label=Stretch Video\nexport.schedule.songs.pdf.button=Esporta canzoni in PDF\nexporting.label=Esportazione\nuse.shadow.label=Usare Ombra?\nshadow.color.label=Colore Ombra\nshadow.offset.label=Offset Ombra\nshadow.radius.label=Raggio Ombra\nshadow.spread.label=Espansione Ombra\nhelp.menu.manual=Manuale\nedit.theme.text=Modifica Tema\nchange.bible.version.text=Cambia Versione\nswitch.to.text=Passa a\nsave.qr.code.text=Salva QR Code\nnonbreak.tooltip=Aggiungi non-breaking line\ncopying.video.please.wait.text=Attendere un momento - copia dei file video in corso...\ntranslating.text.please.wait.text=Attendere un momento - sto creando una traduzione...\nfilefilters.description.usr.files=File USR (SongSelect)\nsongselect.import.line1=Selezionare i file SongSelect in basso.\npm.import.line1=Seleziona le canzoni di Presentation Manager da importare.\nsmi.import.line1=Seleziona le canzoni Screen Monkey da importare.\nsongselect.button=SongSelect\nvideopsalm.button=VideoPsalm\npm.button=Presentation Manager\nsm.button=Screen Monkey\ntranslation.export.heading=Esportazione Traduzione\ninclude.translations.question=Includere le traduzioni nel file PDF?\nslide.text=Slide\nautoplay.vid.label=Riproduci automaticamente video nel pannello Live\nadvance.on.live.label=Fai avanzare automaticamente la scaletta quando vai in Live\ndelete.translation.title=Cancella traduzione\ndelete.translation.text=Cancellare la traduzione $1?\nhelp.menu.wiki=Documentazione\npreview.on.image.change.label=Preview elemento al cambio di immagine\nadd.timer.tooltip=Aggiungi Countdown\nfilefilters.description.image.video.files=File immagini e video\ntimer.duration.label=Durata countdown\ntimer.file.label=Directory file di sfondo\nduration.tooltip.label=#:## o ##m##s o ##:##am\ntranslation.choice.title=Scegli traduzione\nfont.options.title=Opzioni font\nnew.translation.title=Nuova Traduzione\nadd.timer.title=Aggiungi Timer\nuntitled.theme.text=Tema senza titolo\ntimer.text.label=Testo Addizionale\ntimer.text.prompt=Usa # per posizionare il timer, es. \"Il servizio inizierà tra #\" mostrerà \"Il servizio inizierà tra 05:00\"\ncountdown.label=Countdown\ntimer.theme.label=Impostazioni tema\ntimer.theme.button=Cambia tema\nembed.media.in.schedule=Integra media nel file di scaletta\nmediashout.import.line1=Seleziona il percorso del database MediaShout (esportato in formato txt):\nworshiphim.import.line1=Seleziona il percorso del database Worship Him (in formato mdb):\nsongbeamer.import.line1=Seleziona il percorso del file SNG da importare:\nfilefilters.description.txt.files=.file txt\nfilefilters.description.csv.files=.file csv\nmediashout.button=MediaShout\nworshiphim.button=Worship Him\nsongbeamer.button=SongBeamer\nclear.stage.view=Ripulisci monitor di palco con quello principale\ntop=Alto\nbottom=Basso\nepicworship.import.line1=Questo comando importerà un file (.epc) da un song pack di EpicWorship.\nfilefilters.description.epc=EpicWorship .epc songpack\nepicworship.button=EpicWorship\nadd.videos.panel=Aggiungi Video\nremove.video.text=Rimuovi Video\ndelete.video.title=Cancella Video\ndelete.video.confirmation=Vuoi davvero rimuovere questo video dalla libreria? Quest'azione non può essere annullata.\nlibrary.video.heading=Video\ntimer.files.description=Countdown\nadd.timers.panel=Aggiungi Timer\nlibrary.timer.heading=Timer\ntimer.save.label=Salvare Timer?\ntimer.name.label=Nome\nedit.timer.text=Modifica Timer\nremove.timer.text=Elimina Timer\nconfirm.remove.timer=Vuoi davvero rimuovere $1 dalla lista dei timer? Quest'azione non può essere annullata.\nkingsway.button.range=Quantità\nkingsway.range.import.text=Inserire la quantità di pagine di canzoni da scaricare dal sito di kingsway.\\nIl numero massimo è intorno alle 3600.\nkingsway.range.import.heading=Importa canzoni da kingsway\nsdb.files.description=Database songpro\nsongpro.button=SongPro\noverflow.song.label=Continua direttamente con la canzone successiva al termine di quella attuale\ninvalid.search=Ricerca non valida\nrcs.add.failed=Aggiunta fallita\nrcs.add.success=Aggiunta eseguita con successo\nrcs.add.song=Aggiungi canzone alla scaletta\nrcs.add.bible.error=C'è stato un errore nell'aggiunta di $1 alla scaletta\nrcs.submit=Invia\nrcs.song.search=Canzone\nrcs.bible.search=Bibbia\nrcs.search=Cerca e Aggiungi\nshow.video.library.panel=Mostra il Tab della libreria video (richiede riavvio)\nstage.show.clock=Mostra orario\nuse.24h.clock=Formato ora 24H\nsplit.bible.verses=Non suddividere i versi tra più slide\nno.verse.title=Nessun verso trovato\nno.verse.message=I versi specificati non sono stati trovati, prova a continuare senza di essi.\nchorus.tooltip=Aggiungi titolo coro\nrecordings.path=Percorso salvataggio registrazioni\ndownload.path=Percorso Download\nconvert.mp3=Converti automaticamente registrazioni in MP3 (richiede VLC)\nrecording.warning.title=Imposta percorso prima di registrare\nrecording.warning.message=Devi impostare un percorso di salvataggio delle registrazioni prima di poter iniziare a registrare.\nrecording.no.devices.title=Nessun dispositivo di registrazione rilevato\nrecording.no.devices.message=Attenzione, non sono stati rilevati dispositivi di registrazione compatibili.\\nAssicurati che sia inserito e funzionante.\nsave.recording.before.exit.title=Registrazione non salvata\nsave.recording.before.exit.message=Vuoi salvare la registrazione prima di uscire?\nrecord.audio.tooltip=Registra Audio\npause.record.tooltip=Metti in pausa la registrazione\nmax.lines.per.slide=Righe per slide (approssimativamente)\npresentation.options.heading=Presentazioni\nrecordings.options.heading=Registrazioni\ncopy.song.db.default=Copia canzone nella scaletta di default\nmp.button=Mission Praise\nadd.pdf.tooltip=Aggiungi PDF\nimportexport.options.heading=Import/Export\npreview.failed=Preview fallita\nset.loop.manually.title=PowerPoint non è stato trovato\nset.loop.manually.message=La presentazione è stata chiusa. Se vuoi usare la funzione di loop di Quelea con il viewer PowerPoint, devi impostare manualmente il loop della presentazione quando la crei.\npresentation.changed.message=Devi riavviare Quelea affinché le modifiche alle impostazioni di presentazione abbiano effetto.\npresentation.changed.label=Impostazioni di Presentazione Modificate\npresentation.not.started.label=PowerPoint non è stato avviato\npresentation.not.started.message=Purtroppo, la tua presentazione non può essere avviata con PowerPoint. Forse il file è corrotto?\npp.already.running.label=PowerPoint è già avviato\npp.already.running.message=Un'altra istanza di PowerPoint è stata rilevata. Chiudi tutte le istanze prima di avviare una presentazione con Quelea per evitare perdita di dati.\npp.path=Percorso PowerPoint\nuse.pp.label=Usa PowerPoint per le presentazioni\nclose.all.presentations.label=Chiudi tutte presentazioni aperte\nclose.all.presentations.message=Chiudi tutte le finestre di PowerPoint prima di premere OK o sarà fatto automaticamente per evitare errori di visualizzazione.\nlive.text.message=Ogni testo inserito qui sarà visibile agli utenti di Mobile Lyrics quando lo schermo principale è vuoto.\\n\\nUsa una riga vuota per iniziare una nuova slide. Puoi anche usare il tasto ripulisci (o CTRL + Return) per resettare entrambi. Se i caratteri superano i 200 per slide saranno automaticamente tagliati.\nlive.text.title=Live Text\nexit.live.text=Esci da Live Text\nclear.live.text=Ripulisci\ndefault.translation=Default\nselect.language=Seleziona lingua:\nsend.live.text=Live Text\nconverting.to.mp3=Converti registrazione in MP3\nverse.tooltip=Aggiungi titolo verso\nbridge.tooltip=Aggiungi titolo bridge\nprechorus.tooltip=Aggiungi titolo pre-coro\ntag.tooltip=Aggiungi titolo tag\nadd.website=Aggiungi Sito web\nfocus.switcher.title=Quelea Focus Switcher\nfocus.switcher.message=Metti in evidenza la finestra se necessario durante la presentazione.\nfocus.pp=Metti in evidenza PowerPoint\nfocus.quelea=Metti in evidenza Quelea\nwebsite.dialog.title=URL pagina web\nwebsite.dialog.header=Inserisci l'URL della pagina\nwebsite.dialog.content=Inserisci la pagina web da mostrare:\npaste.label=Incolla\nundo.label=Annulla\nredo.label=Ripristina\nshow.extra.live.panel.toolbar.options.label=Mostra opzioni aggiuntive pannello Live\nlink.preview.and.live.dividers.label=Collega pannelli di Preview e Live\nsave.add.notice.button=Salva e aggiungi\nsaved.notices=Avvisi salvati\ndelete.notice.button=Cancella\nschedule.items.skipped.text=Alcuni elementi della scaletta non hanno il loro file collegato, quindi non sono stati aggiunti.\nschedule.items.skipped.header=Elementi scaletta saltati\nsong.sequence=Sequenza canzone:\nsequence.selection.dialog.title=Selezione Sequenza\nchosen.sequence.explanation=Trascine elementi da sinistra a destra o fai doppio click per creare una sezione. Le slide del testo saranno mostrate in quest'ordine, indipendentemente dall'ordine con cui sono salvate nel database.\navailable.sections.label=Sezioni disponibile nella canzone\nremove.sequence.tooltip=Rimuovi sezione dalla sequenza\nmove.up.sequence.tooltip=Sposta sezione su nella sequenza\nmove.down.sequence.tooltip=Sposta sezione giù nella sequenza\nchosen.sequence.label=Ordina la sequenza\nsequence.tooltip=Finestra sequenza canzone\nvideo.loop.tooltip=Loop on / off\nallow.item.theme.override.global=Permetti ai temi personalizzati di prevalere su quello globale\nsong.default.theme.label=Predefinito Canzone\nbible.default.theme.label=Predefinito Bibbia\nsmall.song.position.label=Posizione info canzone\nsmall.bible.position.label=Posizione info bibbia\nsmall.bible.size.label=Dimensione info bibbia\nsmall.song.size.label=Dimensione info canzone\ninterface.theme.label=Tema\ndefault.theme.label=Predefinito\ndark.theme.label=Scuro\ntheme.changed=Tema modificato\ntheme.changed.message=Devi riavviare Quelea affinché le modifiche al tema abbiano effetto.\ndb.song.preview.label=Preview canzone\ndb.song.preview.label.control=Nessuno\ndb.song.preview.label.databasepreview=Nel pannello database\ndb.song.preview.label.previewpane=Nel pannello preview\nmobile.remote.heading=Mobile Remote\ninterface.options.options=Opzioni Interfaccia\ngeneral.interface.options=Opzioni Generali Interfaccia\nsmall.song.text.options=Opzioni testo piccolo canzone\nsmall.bible.text.options=Opzioni testo piccolo bibbia\ngeneral.user.options=Opzioni Generali Utente\ntheme.options=Opzioni Tema\nschedule.options=Opzioni Scaletta\nfilefilters.description.propresenter=canzoni ProPresenter\nfilefilters.description.sunday.plus=canzoni Sunday plus\nsong.list=Lista canzoni\npassword.empty.label=campo password vuoto\npassword.empty.message=La password del server non può essere vuota. Se non inserisci nulla verrà usata la password predefinita \"quelea\".\nclick.to.add=Clicca per aggiungere\nbible.version=Versione Bibbia\nslide.transition.label=Usa dissolvenza tra le slide\nopen.sequence.editor.tooltip=Mostra editor sequenza\nsong.sequence.tip=Tip: Puoi aggiungere una sezione (es. coro) più di una volta!\nremote.select.book=Seleziona libro\nremote.search.tooltip=Aggiungi una canzone o un passaggio biblico\nremote.search.server=Ricerca server\nremote.add.go.live=Aggiungi e vai Live\nremote.failed.finding.server=Server Mobile Remote non trovato. Assicurati che Quelea sia avviato e di aver inserito l'URL corretto.\nremote.navigation.settings.title=Navigazione impostazioni\nremote.enable.volume.navigation=Attiva navigazione con tasti volume\nremote.volume.navigation.description=Usa i tasti volume del telefono per navigare all'elemento o alla slide precedente o successiva.\nremote.enable.dpad.navigation=Attiva navigazione dpad\nremote.dpad.navigation.description=Usa i tasti dpad (up/down) per navigare all'elemento o alla slide precedente o successiva. Se vuoi usare una tastiera Bluetooth o un pedale (come AirTurn), attiva questa opzione.\nremote.swipe.navigation.title=Navigazione con Swipe\nremote.swipe.navigation.description=Scegli azioni allo Swipe a destra e a sinistra.\nremote.auto.progress.item=Passa a elemento precedente o successivo\nremote.action.clear=Nascondi testo con tasto ripulisci\nremote.action.logo=Nascondi testo e mostra il logo\nremote.action.black=Mostra schermata nera\nremote.action.nothing=Non fare niente\nremote.action.item=Passa all'elemento precedente o successivo\nremote.action.slide=Passa alla slide precedente o successiva\nremote.disable.record=Disabilita tasto registrazione\nremote.about.title=Indo sull'app\nremote.choose.action=Scegli azione per $1\nremote.control.app.name=Quelea Mobile Remote\nremote.select.theme=Seleziona Tema\nremote.about.text.app=Questa è un'applicazione no profit da usare con il software open souce Quelea (http://quelea.org). Sebbene non sia una beta, non è ancora impeccabile né completa di funzioni. Questo è un progetto parallelo e pensato per utilizzo personale, ma è felicemento condiviso con tutti quelli che possono trovarlo utile.\nremote.about.text.support=Sentiti libero di inviarmi una email a arvid @ quelea.org se hai domande oriscontri problemi. Assicurati di aver avviato Quelea prima dell'applicazione (con entrambi i server attivi), che entrambi i dispositivi sono connessi alla stessa rete e che hai inserito l'URL corretto.\nremote.about.text.responsibility=Non posso garantire una esperienza impeccabile, quindi non mi assumerò nessuna responsabilità per eventuali problemi in una installazione live .\nremote.ipv6.not.supported=Purtroppo non puoi usare indirizzi IPv6. Devi usare un indirizzo IPv4 per poter utilizzare l'applicazione. Se non sai come trovarlo, cerca su Google 'trovare ip locale' con il tuo sistema operativo. Inserisci l'indirizzo IPv4 o l'URL in basso.\nremote.on.end.title=Fine elemento/Comincia\nremote.on.end.description=Seleziona cosa vuoi che l'app faccia quando navighi con le due opzioni sopra e raggiungi l'inizio/fine di un elemento.\nremote.long.press.description=Selezione cosa vuoi che accada se premi a lungo un pulsante quando navighi con le due opzioni sopra. Da notare che non funzionerò con pedali AirTurn.\nremote.long.press.title=Azioni Premi a lungo\nremote.double.press.title=Azione Doppio tocco\nremote.double.press.description=Seleziona cosa vuoi che accada quando premi due tasti insieme mentre navighi con entrambe le opzioni di sopra attive.\nremote.select.chapter.verses=Seleziona capitolo e verso\nremote.theme.was.set=$1 è stato impostato come tema globale\nremote.port.needed=L'URL deve contenere il numero della porta alla fine (es ':1112'). Riprova\nremote.connected=Connected!\nremote.wrong.content=Pagina errata. Riprova.\nremote.no.wifi=Non sei connesso al wifi. Imposta l'URL manualmente o connettiti al wifi.\nremote.use.autoconnect=Cerca l'URL del server automaticamente\nremote.information.title=Informazioni\nremote.report.issue=Segnala un problema\nremote.about.translating=Traduci l'app\nremote.privacy.policy=Privacy policy\nremote.donations.link=Donazioni\nremote.needs.newer.version=Questa opzione richiede al server di usare almeno Quelea $1 \nremote.source.code=Codice sorgente\nremote.send.notice.tooltip=Aggiungi un avviso\nremote.signal.failed=Impossibile connettersi al server\nremote.chapter=Capitolo\nremote.start.verse=Verso iniziale\nremote.end.verse=Verso finale\nclient.id=Client ID\nenter.valid.port=Per favore inserisci un valore tra 1029 e 49151\n"
  },
  {
    "path": "Quelea/languages/lt.lang",
    "content": "LANGUAGENAME=Lietuvių (LT)\nLOCALE=lt\nemail.error.text=Atveriant jūsų el. pašto programą, įvyko klaida. Įsitikinkite, kad el. pašto programa įdiegta ir susieta su eml failais, kitu atveju privalėsite siųsti el. laišką patys.\nccli.number.label=CCLI numeris\neasyworship.button=EasyWorship\nnew.schedule.tooltip=Naujas tvarkaraštis\nopenlyrics.import.line1=Žemiau pasirinkite openlyrics giesmių zip archyvo vietą.\nshadow.y=Šešėlio Y poslinkis\nshadow.x=Šešėlio X poslinkis\ntranslate.dialog.title=Vertimų tvarkytuvė\ndelete.theme.question=Ar tikrai pašalinti šį apipavidalinimą?\nprint.chords.question=Spausdinant šią giesmę, įtraukti akordus?\ntitle.label=Pavadinimas\nerror.checking.updates.title=Nepavyko patikrinti ar yra atnaujinimų\nopen.existing.schedule.text=Atverti jau esantį tvarkaraštį\ntags.colon.label=Žymės\\:\nhelp.menu.manual=Naudojimo vadovas\nfilefilters.description.zip.files=Zip failai\nsource.import.line1=CD išteklyje pasirinkite ymns katalogo vietą.\nfilefilters.description.songs.mb=Easyworship Songs.MB duomenų bazė\nopen.in.browser=Atverti naršyklėje...\nquick.edit.text=Greitas redagavimas\nquick.insert.text=Greitas įterpimas\nconfirm.remove.translation.text=Ar tikrai norite ištrinti šį vertimą?\nlibrary.edit.song.text=Redaguoti giesmę\nimporting.status=Importuojama...\nuntitled.theme.text=Apipavidalinimas be pavadinimo\nqsp.button=Quelea giesmių pakuotė\nadd.youtube.button=Pridėti Youtube vaizdo įrašą\nquit.quelea.text=Išeiti iš Quelea\nbottom.text.position=Apačioje\noptions.text=Parinktys\nconfirm.label=Ar tikrai?\ncontrols.heading=Valdymo elementai\nquick.shortcut.description=Kad atšauktumėte, spauskite \"Escape\". Norėdami išsaugoti, spauskite Shift+Enter.\nadd.song.text=Pridėti naują giesmę į duomenų bazę\ncheck.for.update.label=Paleidimo metu, tikrinti ar yra atnaujinimų\nsave.schedule.text=Išsaugoti tvarkaraštį\nconfirm.remove.text=Patvirtinti šalinimą\nsongselect.import.line1=Žemiau pasirinkite SongSelect failus.\nbible.heading=Biblijos\nerror.schedule.message=Atsirado problemų, atveriant tvarkaraštį. Galbūt jis pažeistas arba tai nėra programoje Quelea išsaugotas tvarkaraštis.\npng.files.description=PNG paveikslo failai\ncheck.kingsway.start.title=Jau importuoti elementai\nos.button=Opensong\nadd.images.panel=Pridėti paveikslus\nfont.selection.dialog.title=Šrifto pasirinkimas\nerror.updating.song.text=Įvyko klaida, atnaujinant giesmę duomenų bazėje. Gali būti, kad ji pažeista.\nimage.files.description=Paveikslų failai\nzw.import.line2=Dažniausiai jį galima rasti \"C\\:\\\\ProgramData\\\\ZionWorx\\\\2.6\\\\Data\".\nzw.import.line1=Žemiau pasirinkite ZionWorx \"MainTable.dat\" failo vietą.\nstage.background.colour=Fono spalva\nremove.theme.tooltip=Šalinti apipavidalinimą\nnotice.infinite.question=Be perstojo?\nolp.import.line1=Žemiau pasirinkite OpenLP duomenų bazės vietą.\ndownload.vlc=Atsisiųsti VLC\nloading.text=Įkeliama\nrefresh.images.panel=Iš naujo įkelti paveikslus\nvideo.hue.label=Atspalvis\nsave.as.schedule.text=Išsaugoti tvarkaraštį kaip\nselect.export.songs.line2=Pasirinkite tas, kurias norite eksportuoti ir spustelėkite \"Pridėti\".\ndefault.translation.label=Numatytasis vertimas\nnotice.options.heading=Pranešimai\nselect.export.songs.line1=Šios giesmės yra duomenų bazėje.\nadd.song.hint.search.text=Kol kas nėra giesmių, atitinkančių jūsų paieškos kriterijų. Norėdami pridėti giesmę, spauskite kairėje esantį mygtuką \"Nauja giesmė\".\nhelp.about.title=Apie\nselect.folder.images.panel=Pasirinkite aplanką...\nedit.notice.button=Redaguoti pranešimą\ncopying.video.please.wait.text=Luktelėkite - kopijuojamas vaizdo failas...\nuse.mobile.lyrics.label=Naudoti mobilius giesmės žodžius\ntimer.text.prompt=Norėdami įterpti laikmatį, naudokite \\# t.y. \"Pamaldos prasideda po \\#\" bus rodoma kaip \"Pamaldos prasideda po 05\\:00\"\nstage.chord.colour=Akordų spalva\nuse.remote.control.label=Naudoti nuotolinį valdymą\nsmall.text.position.label=Giesmių ir Biblijos informacijos vieta\nvideo.error.unsupported=Atsiprašome, jūsų pasirinktas vaizdo failas nėra palaikomas.\nremote.logo.text=Logotipas\nfilefilters.description.usr.files=USR (SongSelect) failai\nvlc.version.message=Jūsų VLC versija yra pasenusi. Norėdami atkurti vaizdo bei garso įrašus ir rodyti vaizdo foną, turite atsisiųsti naujausią VLC versiją. Ar norite atsisiųsti ją dabar? Tam, kad pakeitimai įsigaliotų, įdiegę VLC, turėsite paleisti Quelea iš naujo.\nenter.translation.name.label=Į kokią kalbą norėtumėte išversti?\nmax.font.size.label=Didžiausias šrifto dydis\nadd.video.button=Pridėti vaizdo įrašą\nadd.bible.label=Pridėti Bibliją...\nremote.login.text=Norėdami tęsti, prisijunkite\nnewer.version.available.title=Yra prieinamas programos atnaujinimas\nspace.key=tarpas\nschedule.heading=Tvarkaraštis\ntrim.lines.tooltip=Apkarpyti eilutes\nwarning.label=Įspėjimas\ntools.label=Įrankiai\nchosen.fonts.explanation=Quelea apipavidalinimo lange rodo tik pasirinktus šriftus. Šriftus, kuriuos naudojate, tempkite iš kairiojo skydelio į dešinįjį. Šriftus, kurių nenaudojate, tempkite iš dešinės į kairę.\nsource.button=The Source\nhelp.menu.facebook=Facebook puslapis\nerror.schedule.title=Klaida, atveriant tvarkaraštį\nstage.line.alignment=Teksto lygiavimas\nbackground.theme.label=Fono apipavidalinimas\nlibrary.preview.song.text=Giesmės peržiūra\nkingsway.import.line2=Tai užims daug laiko (galbūt valandas\\!), būkite kantrūs ir neišjunkite Quelea\\!\nkingsway.import.line1=Čia, iš interneto bus importuojama kingsway giesmių kolekcija.\ntext.options.options=Teksto parinktys\nremote.submit.text=Prisijungti\nsof.button=Songs of Fellowship\nstage.lyrics.colour=Giesmės žodžių spalva\nmax.verses.label=Didžiausias, tuo pačiu metu rodomų, eilučių skaičius\nsongselect.button=SongSelect\nprojector.screen.label=Projektoriaus ekranas\nselect.video.button=Pasirinkite vaizdo įrašą\nstage.show.chords=Rodyti akordus?\nadd.dvd.tooltip=Pridėti DVD\nalready.running.error=Atrodo, kad vienas Quelea procesas jau yra vykdomas.\\nPrieš vykdydami programą, įsitikinkite, kad užvėrėte visus kitus Quelea procesus.\nexit.text=Išeiti iš Quelea\nnotice.speed.text=Pranešimo greitis\ntype.lyrics.here.text=Čia įrašykite giesmės žodžius\nrun.spellcheck.label=Rašybos tikrinimas\ncancel.text=Atsisakyti\ncapitalise.start.line.label=Kiekvieną eilutę pradėti didžiąja raide\nstage.font.selection=Šriftas\none.line.mode.label=Talpinti kiekvieną giesmės sekciją vienoje peržiūros eilutėje\nadd.to.schedule.text=Pridėti į tvarkaraštį\nlibrary.add.to.schedule.text=Pridėti į tvarkaraštį\ntranslation.font.text=Vertimo šriftas\nnew.notice.text=Naujas pranešimas\ntest.patterns.text=Tikrinti šablonus\nfilefilters.description.powerpoint.presentations=Powerpoint pateiktys\nloop.label=Ciklas\nno.dvd.error=Prašome įdėti teisingą DVD ar Blu-ray.\nconfirm.remove.translation.title=Šalinti vertimą?\nno.newer.version.available=Jūs naudojate naujausią Quelea versiją\ncorrect.text=Teisingas\nshadow.radius.label=Šešėlio plotas\nadd.timer.tooltip=Pridėti atvirkštinį laikmatį\nshadow.spread.label=Šešėlio išplitimas\norder.service.heading=Pamaldų tvarka\nselect.key.label=Pasirinkite naują raktą\\:\npdf.button=PDF\nsave.text=Išsaugoti\nnewer.version.available=Yra prieinama naujesnė Quelea versija\nconfirm.entry.exit.title=Išsaugoti giesmę?\nplainText.button=Grynasis tekstas\nshadow.color.label=Šešėlio spalva\nimage.theme.label=Paveikslas\nadd.theme.label=Pridėti apipavidalinimą\nnew.theme.title=Naujas apipavidalinimas\nselect.translation.label=Koks papildomas vertimas turėtų būti rodomas\\n kartu su numatytaisiais giesmės žodžiais\\:\nmax.items.per.slide=Didžiausias % skaičius skaidrėje\nadd.to.songpack.question=Eksportuoti giesmę?\nfix.apos.label=Apvalyti apostrofus\nolyrics.button=OpenLyrics\ntheme.heading=Apipavidalinimas\nport.number.label=Prievado numeris\nemail.button=Siųsti tvarkaraštį el. paštu\nadd.dvd.button=Pridėti DVD\nquelea.schedule.text=Quelea tvarkaraštis\nno.text=Ne\ncountdown.label=Atvirkštinis laikmatis\nnew.song.button=Nauja giesmė\nexit.button=Išeiti\nremove.song.schedule.tooltip=Pašalinti iš tvarkaraščio\ncurrently.displaying.text=Šiuo metu rodoma\ngo.live.text=Rodyti Gyvai\nnotice.font.size=Pranešimo šrifto dydis\nadding.presentation.error.message=Importuojant pateiktis, įvyko klaida. Galbūt jos pažeistos?\nmiddle.text.position=Vidurys\nbrowse=Naršyti...\nhelp.menu.download=Atsisiųsti\nnew.song.title=Nauja giesmė\nchoose.translations.text=Pasirinkti vertimus\nexport.heading=Eksportuoti\nremote.control.password=Nuotolinio valdymo slaptažodis (skiriant raidžių dydį)\ncontinue.without.video=Tęsti be VLC\nmove.up.schedule.tooltip=Pakelti tvarkaraštyje aukštyn\nfilefilters.description.video.files=Vaizdo įrašų failai\ntype.tag.name.here.text=<Čia įrašykite žymes>\ntop.text.position=Viršuje\nsave.schedule.disk.text=Išsaugoti tvarkaraštį į diską\nfile.rename.dialog.title=Pervadinti\nsave.before.exit.title=Neišsaugotas tvarkaraštis\ntranspose.tooltip=Transponuoti...\nnotices.heading=Pranešimai\nsave.schedule.tooltip=Išsaugoti tvarkaraštį\nserver.settings.heading=Serverio nuostatos\nuniform.font.size.label=Naudoti universalų šrifto dydį\nos.import.line1=Žemiau pasirinkite Opensong duomenų bazės vietą.\nswitch.input.button=Perjungti įvestį\nselect.color.button=Pasirinkti spalvą\nshadow.color=Šešėlio spalva\nupdating.db=Atnaujinama duomenų bazė\nlibrary.songs.heading=Giesmės\nimport.heading=Importuoti\nbasic.information.heading=Pagrindinė informacija\npause=Pauzė\ndatabase.menu=Duomenų bazė\nadd.timer.title=Pridėti laikmatį\ntools.menu=Įrankiai\nuse.shadow.label=Naudoti šešėlį?\nqsp.import.line1=Žemiau pasirinkite Quelea giesmių pakuotės vietą.\nshadow.offset.label=Šešėlio poslinkis\nbible.search.result.found=rezultatų rasta\nnone.text=Joks\nconfirm.overwrite.title=Failas jau yra\\!\nyes.text=Taip\nfile.replace.button=Pakeisti\nchoose.color.text=Pasirinkti spalvą...\nalready.running.title=Jau vykdoma\nfilefilters.description.quelea.schedules=Quelea tvarkaraščiai\ntranspose.label=Transponuoti\nslide.text=Skaidrė\nleft=Kairėje\nfilefilters.description.xml.files=XML failai\nedit.notice.text=Redaguoti pranešimą\ntimer.duration.label=Atvirkštinio skaičiavimo trukmė\ndisplay.options.heading=Ekranas\nverses=eilučių\nsave.before.exit.text=Tvarkaraštis pasikeitė. Išsaugoti prieš išeinant?\nedit.theme.text=Taisyti apipavidalinimą\nname.label=Pavadinimas\nfilefilters.description.survivor.songbook=Survivor acetates failai\ncreate.new.schedule.text=Sukurti naują tvarkaraštį\nlibrary.image.heading=Paveikslai\ncapo.label=Kapodasteris\ndefault.theme.name=Numatytasis\nuse.oo.label=Pateiktims naudoti OpenOffice\nadd.text=Pridėti\nvlc.warning.message=Quelea jūsų sistemoje nerado VLC grotuvo. Be jo, jūs negalėsite atkurti vaizdo bei garso įrašų ir rodyti vaizdo fono. Ar norite atsisiųsti VLC grotuvą dabar? Tam, kad pakeitimai įsigaliotų, įdiegę VLC, turėsite paleisti Quelea iš naujo.\nedit.bible.passage.text=Taisyti ištraukos apipavidalinimą\nadding.images=Pridedami paveikslai...\nconfirm.remove.question=Ar tikrai šalinti $1 iš duomenų bazės? Šio veiksmo nebus įmanoma atšaukti.\nsetup.oo.failed.title=OpenOffice nepavyko pasileisti\ntheme.button.tooltip=Nustatyti tvarkaraščiui visuotinį apipavidalinimą\ntext.position.label=Teksto vieta\ncolor.theme.label=Spalva\ncant.save.schedule.text=Atsiprašome, įvyko klaida ir tvarkaraštis nebuvo išsaugotas.\nremove.song.text=Pašalinti giesmę iš duomenų bazės\nwords=žodžių\nerror.text=Klaida\nprint.schedule.button=Spausdinti tvarkaraštį\nedit.song.button=Redaguoti giesmę\nright=Dešinėje\nremote.prev.text=Ankstesnė skaidrė\nplay=Groti\nbible.copy.error.heading=Klaida\nemail.text=Labas\\! Siunčiu prisegtą Quelea tvarkaraštį. Tiesiog atverk jį per Quelea ir visi elementai turėtų būti savo vietoje.\nshadow.text=Šešėlis\nbible.browser.title=Biblijos naršyklė\nselect.songs.title=Pasirinkti giesmes\nplaintext.import.line1=Čia bus importuojama giesmių kolekcija, iš katalogo su grynojo teksto giesmių failais.\ndelete.translation.text=Ištrinti $1 vertimą?\npreview.heading=Peržiūra\ntranslation.choice.title=Vertimo pasirinkimas\ncheck.duplicates.text=Tikrinti dublikatus\nfont.theme.label=Šriftas\nsearch.bible.button=Ieškoti Biblijose...\nopen.schedule.button=Atverti tvarkaraštį\nopen.schedule.tooltip=Atverti tvarkaraštį\nkingsway.button.all=Visos giesmės\nuse.bible.verses=Pagal ko skaičių dalinti Biblijos ištraukos skaidres\nshow.verse.numbers=Rodyti eilučių numerius\nimport.no.songs.title=Giesmių nerasta\nadd.song.button=Pridėti giesmę\ndisplay.song.info.label=Rodyti giesmės informaciją\nremote.nextitem.text=Kitas elementas\nzw.button=ZionWorx\nimport.button=Importuoti\nnew.schedule.text=Naujas tvarkaraštis\nremote.next.text=Kita skaidrė\nnew.theme.text=Naujas apipavidalinimas...\nbible.options.heading=Biblija\nnew.song.tooltip=Nauja giesmė\nvideo.error.title=Vaizdo įrašo klaida\nsurvivor.import.line2=Tai turi būti acetates.pdf failas, o ne gitaros akordai ar natų lapas.\nsurvivor.import.line1=Žemiau pasirinkite Survivor Songbook PDF failo vietą.\nnavigate.remote.control.label=Nuotolinio valdymo adresas (URL)\nedit.song.title=Redaguoti giesmę\ndelete.theme.confirm.title=Patvirtinti ištrynimą\nok.button=Gerai\nno.tdb.heading=TurboDB Data Exchange nerastas\nnew.schedule.button=Naujas tvarkaraštis\nadd.notice.button=Pridėti pranešimą\ndelete.image.title=Ištrinti paveikslą\ninterface.language.label=Sąsajos kalba\\:\nnotice.font.text=Pranešimo šriftas\nkingsway.button=Kingsway Online\nsaving.schedule=Tvarkaraštis išsaugomas...\nimport.no.songs.text=Importavimui nerasta jokių giesmių.\ndont.save.text=Neišsaugoti\nexport.schedule.pdf.button=Eksportuoti pamaldų tvarką kaip PDF\nadd.audio.tooltip=Pridėti garsą\ndone.text=Atlikta\nno.tdb.message=Dėl techninių priežasčių, prieš Quelea importuojant ZionWorx duomenų bazes, turite atsisiųsti TurboDB data exchange (https\\://www.dataweb.de/en/support/downloads.html).\\nAtsisiuntę, išskleiskite zip failo turinį į $1.\\n\\nIškilus problemoms, prašome drąsiai klausti diskusijų grupėje (http\\://bit.ly/1mePoeh).\nremove.notice.text=Šalinti pranešimą\nprint.current.schedule.text=Spausdinti esamą tvarkaraštį\nbible.search.keep.typing=Tęskite rašymą...\nmanage.notices.tooltip=Valdyti pranešimus\npart=dalis\ntranslating.text.please.wait.text=Luktelėkite - ruošiame vertimą...\nnotice.colour.text=Pranešimo spalva\nemail.error.title=El. pašto klaida\nalready.exists.overwrite.label=jau yra. Pakeisti?\nremote.logout.text=Atsijungti\nspelling.errors.in.doc.label=Dokumente yra rašybos klaidų. Spustelėkite \"F7\", norėdami atverti rašybos tikrinimo langą.\nhelp.about.line2=Quelea yra, ir visada bus, nemokama ir atviro kodo programinė įranga.\nhelp.about.line1=Quelea yra licencijuota pagal GPL (Version 3.)\nstretch.video.label=Ištempti vaizdo įrašą\nmove.down.schedule.tooltip=Nuleisti tvarkaraštyje žemyn\ndisplay.options.text=Rodyti parinkčių langą\nno.dvd.heading=Diskas nerastas\nkey.label=Raktas\nadding.presentation.error.title=Importuojant pateiktį, įvyko klaida\nfilefilters.description.pdf.files=PDF failai\nnot.started.label=Nepradėta\nautoplay.vid.label=Automatiškai pradėti atkurti vaizdo įrašų failus skydelyje \"Gyvai\"\nstage.options.heading=Scenos ekranas\nhelp.menu.update=Tikrinti ar yra atnaujinimų\nexport.schedule.songs.pdf.button=Eksportuoti giesmes kaip PDF\non.button=Įjungta\nbuilding.bible.index=Įkeliamos Biblijos\nadvance.on.live.label=Ankstinti tvarkaraštį ekrane \"Gyvai\"\nimport.error.message=Atsiprašome, importuojant, atsirado problemų. Prašome drąsiai prašyti pagalbos Quelea diskusijų grupėje\\: https\\://quelea.discourse.group/\nprint.schedule.tooltip=Spausdinti tvarkaraštį\nvlc.warning.title=Nepavyko rasti VLC grotuvo\nfile.menu=Failas\nfilefilters.description.maintable.dat=ZionWorx MainTable duomenų bazės failas\ncustom.position.text=Tinkinta padėtis\nremote.black.text=Juodas\nnonbreak.tooltip=Pridėti nepertraukiamą eilutę\nfilefilters.description.xml.bibles=XML Biblijos\nauto.translate.label=Mėginti automatiškai versti giesmes\nchange.graphics.label=Keisti vaizdo grafiką\ncontrol.screen.label=Valdymo ekranas\nmobile.lyrics.heading=Mobilūs giesmių žodžiai\npublisher.label=Leidėjas\nfile.rename.button=Pervadinti\nclear.search.box=Išvalyti paiešką\nlanguage.changed=Kalba pakeista\nmax.chars.line.label=Didžiausias simbolių skaičius eilutėje\nignore.text=Nepaisyti\nclear.live.on.remove.schedule=Nustoti rodyti elementą gyvai, kai jis pašalinamas iš tvarkaraščio\nno.chords.message=Šioje giesmėje nėra eilučių su akordais, kuriuos galima būtų transponuoti.\ndefault.bible.label=Numatytoji\ntags.button=Tvarkyti žymes...\nuser.options.options=Naudotojo parinktys\nnotice.position.text=Pranešimo padėtis\nlibrary.print.song.text=Spausdinti giesmę\ninclude.translations.question=Įtraukti vertimus į PDF failą?\nseconds.label=sekundės\nsundayplus.import.line1=Žemiau pasirinkite Sunday Plus duomenų bazės vietą.\nerror.checking.updates.text=Atsiprašome, tikrinant ar yra atnaujinimų, įvyko klaida. Prašome patikrinti savo interneto ryšį ir bandyti dar kartą.\nolp.button=OpenLP\ndictionary.language.text=Žodyno kalba\nexporting.label=Eksportuojama\ntext.shadow.label=Rodyti teksto šešėlį\nprojector.menu=Projektorius\nadd.song.hint.text=Čia kol kas nėra giesmių, bet nepanikuokite\\! Norėdami pridėti giesmę, spustelėkite kairėje esantį mygtuką \"Nauja giesmė\".\nbible.passage.selector.prompt=[Skyrius]\\:[Eilutė]-[Eilutė]\ncentre=Centre\nchosen.fonts.label=Pasirinkti šriftai\nmanage.tags.tooltip=Valdyti žymes\nvideo.error=Nepavyko inicijuoti vaizdo įrašų bibliotekų - vaizdo įrašai neveiks. Dėl šios problemos sprendimo, prašykite pagalbos diskusijų sąraše (žr. pagalbos meniu).\nhelp.menu.wiki=Vikis\nhelp.menu.website=Svetainė\ntheme.select.text=Pasirinkite apipavidalinimą\\:\nshow.small.song.text.label=Rodyti truputį informacijos apie giesmę\nsave.qr.code.text=Išsaugoti QR kodą\nclose.button=Užverti\nselect.image.button=Pasirinkti paveikslą\nstartup.error.text=Atsiprašome, dėl nežinomos priežasties, jūsų sistemoje nepavyko paleisti Quelea. Jei norėtumėte padėti paleisti Quelea, prašome rašyti el. laišką į support@quelea.org ir prisegti derinimo žurnalo failą ($1).\\n\\nKitu atveju, drąsiai klauskite Quelea diskusijų grupėje (https\\://quelea.discourse.group/).\nadd.presentation.tooltip=Pridėti pateiktis\nadd.presentation.button=Pridėti pateiktis\nauthor.label=Autorius\nremote.previtem.text=Ankstesnis elementas\nstartup.error.title=Paleidimo klaida\noo.path=OpenOffice vieta\ndatabase.heading=Duomenų bazė\nnotice.background.colour.text=Pranešimo fono spalva\nhelp.menu=Pagalba\neasyworship.import.line1=Čia bus importuojamos giesmės iš Easyworship Songs.MB failo.\noptions.title=Parinktys\ncheck.kingsway.start=Jūs jau esate importavę kai kuriuos elementus iš Kingsway kolekcijos. Ar norite pradėti importavimą nuo ten, kur pabaigėte praeitą kartą?\nremove.image.text=Šalinti paveikslą\nfont.colour.label=Šrifto spalva\nvisit.webpage.now=Aplankyti svetainę, kad atsisiųstumėte dabar?\ntest.patterns.explanation=Čia prieinami tikrinimo šablonai, kurie turėtų jums padėti nustatyti jūsų ekrano fokusavimo ir spalvos nustatymus. Spustelėkite ant bandomojo paveikslo, kad rodytumėte jį ant pagrindinio ir scenos ekrano.\nadd.multimedia.heading=Pridėti multimediją\nprinting.options.text=Spausdinti giesmę\ntags.label=Žymės\nconfirm.overwrite.text=Toks failas jau yra. Norite jį pakeisti ar tęsti be kopijavimo?\nhelp.about.close=Užverti\nmore.fonts.label=Daugiau šriftų\nschedule.menu=Tvarkaraštis\noutput.text=Išvestis\nserver.changed.message=Tam, kad įsigaliotų nauji serverio nustatymai, turite paleisti Quelea iš naujo.\nnotice.text=Pranešimas\nfilter.tag=Filtruoti žymes\nselect.imported.songs.line3=Quelea nuėmė žymėjimą nuo giesmių, kurios, kaip ji mano, yra dublikatai.\nselect.imported.songs.line2=Pasirinkite tas, kurias norite pridėti į duomenų bazę ir spustelėkite \"Pridėti\".\nselect.imported.songs.line1=Šios giesmės buvo importuotos.\nfilefilters.description.sqlite.files=SQLite failai\nsave.schedule.button=Išsaugoti tvarkaraštį\nfilefilters.description.image.video.files=Vaizdo įrašų ir paveikslų failai\nlibrary.bible.heading=Biblijos\nss.button=Survivor Songbook\nadjust.theme.tooltip=Priderinti apipavidalinimą\nnew.translation.title=Naujas vertimas\nfile.continue.button=Tęsti\nblack.screen.tooltip=Juodas ekranas\nignored.fonts.label=Nepaisomi šriftai\nspelling.check.title=Rašybos tikrinimas\nbible.search.results.found=rezultatų rasta\nnew.notice.heading=Naujas pranešimas\nopen.schedule.text=Atverti tvarkaraštį\nfile.rename.dialog.text=Prašome įrašyti naują failo pavadinimą\\:\nno.pdb.heading=Paradox JDBC valdyklė nerasta\nduration.tooltip.label=\\#\\:\\#\\# ar \\#\\#m\\#\\#s\nyear.label=Metai\nsong.id.selector=Prašome pasirinkti giesmės ID\nschedule.clear.text=Tvarkaraštis buvo pakeistas. Tęsti ir neišsaugoti?\ndetailed.info.heading=Išsamesnė informacija\nadd.video.tooltip=Pridėti vaizdo įrašą\nsave.as.schedule.disk.text=Išsaugoti tvarkaraštį kaip kitą failą\ninitial.search.text=<Pradėkite rašyti, kad atliktumėte paiešką>\nstage.screen.label=Scenos ekranas\nfilefilters.description.plain.text.song=Grynojo teksto giesmė\nhelp.menu.error.title=Klaida\none.monitor.warning=Atrodo, kad turite prijungtą tik vieną ekraną. Jeigu naudojate Quelea tik tvarkaraščio paruošimui, tuomet viskas gerai, bet jeigu programą naudojate gyvam pristatymui, tuomet sklandžiam darbui reikalingi du ekranai.\neasyslides.import.line1=Čia bus importuojamos giesmės iš EasySlides XML failo.\noff.button=Išjungta\nbible.search.title=Ieškoti Biblijoje\ncancel.button=Atsisakyti\nprint.chords.export.question=Eksportuojant šias giesmes, įtraukti akordus?\nfilefilters.description.xml.easyslide=XML Easyslides failai\nno.pdb.message=Dėl techninių priežasčių, prieš Quelea patikimai importuojant Easyworship duomenų bazes, turite atsisiųsti Paradox JDBC valdyklę\\:\\n\\n1. Apsilankykite adresu http\\://www.hxtt.com/download.jsp tuomet, norėdami tęsti, susikurkite nemokamą paskyrą.\\n2. Atsisiųskite \"DBF JDBC 4.1 Package for JDK1.7.X and JDK1.8.X\" failą. Jo pavadinimas turėtų būti Paradox_JDBC41.jar.\\n3. Nukopijuokite Paradox_JDBC41.jar į $1.\\n\\nIškilus problemoms, drąsiai klauskite diskusijų grupėje (https\\://quelea.discourse.group/). Quelea vis dar bandys importuoti Easyworship duomenų bazę be šio failo, tačiau rezultatas gali būti nepatikimas.\nremote.clear.text=Išvalyti\ntimer.file.label=Fono failo vieta\nadd.to.database.question=Pridėti į duomenų bazę?\ndelete.image.confirmation=Ar tikrai pašalinti šį paveikslą iš duomenų bazės? Šis veiksmas negali būti atšauktas.\nshare.heading=Bendrinti\nprojection.window.title=Projekcijos langas\nimage.folder=Paveikslų aplankas\\:\n1.monitor.warn.label=Įspėti, jei yra prijungtas tik vienas ekranas\nremove.item.button=Šalinti elementą\nhide.display.output.tooltip=Slėpti ekrano išvestį\ntimer.theme.label=Apipavidalinimo nustatymai\nkingsway.button.one=One Song\ntheme.name.label=Apipavidalinimo pavadinimas\nnotice.expired.text=Pranešimas, kurį redaguojate, nebegalioja. Ar norite jį pridėti vėl?\nadding.presentation.status=Importuojamos pateiktys...\nconfirm.entry.exit.text=Ar norite išsaugoti pakeitimus šiai giesmei?\nspelling.complete.text=Rašybos tikrinimas užbaigtas.\nremote.empty.lyrics=Giesmės žodžiai bus rodomi čia\nno.newer.version.available.title=Jau naujausia\\!\nnavigate.mob.url.label=Mobilių giesmių žodžių URL\ndefault.theme.text=Numatytasis apipavidalinimas\ntimer.theme.button=Pakeisti apipavidalinimą\nsetup.oo.failed.text=Nepavyko pateikčių rodymui nustatyti OpenOffice. Įsitikinkite, kad esate įdiegę OpenOffice ir nurodyta vieta yra teisinga.\ndelete.song.button=Pašalinti giesmę\npreview.on.image.change.label=Pakeitus paveikslą, peržiūrėti elementą\noverwrite.text=Pakeisti\nvideo.error.general=Atsiprašome, įvyko klaida su jūsų pasirinktu vaizdo failu.\nfilefilters.description.audio.files=Garso failai\nbackground.colour.label=Fono spalva\nserver.changed.label=Serverio nustatymai pakeisti\ntoo.many.verses.error=Atsiprašome, neįmanoma rodyti tiek daug eilučių... prašome pasirinkti mažesnį skaičių.\ndownload.manual.update=Galite atsisiųsti ją čia\nmanage.notices.button=Valdyti pranešimus...\nhelp.menu.about=Apie...\nlive.heading=Gyvai\ngeneral.options.heading=Bendra\ncheck.uncheck.all.text=Pažymėti visas/Nuimti žymėjimą nuo visų\nvideo.theme.label=Vaizdo įrašas\ntranslate.tooltip=Giesmės vertimai\nlogo.screen.tooltip=Rodymui, kairiojo mygtuko paspaudimas - Pasirinkimui, dešiniojo mygtuko paspaudimas\nerror.removing.song.db=Įvyko klaida, šalinant giesmę iš duomenų bazės.\nprojector.heading=Projektorius\nedit.song.text=Redaguoti giesmę\nedit.theme.tooltip=Taisyti apipavidalinimą\noptions.button=Parinktys\nno.chords.title=Nėra akordų\nselect.color.title=Pasirinkti spalvą\ndebug.location=Derinimo žurnalo vieta\nview.bible.button=Peržiūrėti Biblijas...\nbible.copy.error.text=Atsiprašome, kopijuojant Biblijas į paskirties katalogą, įvyko klaida.\nall.text=Visas\nadd.translation.button=Pridėti vertimą...\nswitch.to.text=Perjungti į\nsongs.heading=Giesmės\nhelp.about.version=Versija\noverwrite.lyrics.text=Mes jums automatiškai išvertėme giesmės žodžius - ar norite juos naudoti?\\nJūsų esamas vertimas bus pakeistas.\nmore.font.options.label=Daugiau šrifto parinkčių\nclick.select.file.text=Spustelėkite, kad pasirinktumėte failą\ncopyright.label=Autorių teisės\nadvanced.label=Išplėstinis\nprint.schedule.text=Spausdinti tvarkaraštį\ncomplete.title=Pabaigta\ntranslation.export.heading=Vertimo eksportavimas\nlibrary.remove.song.text=Šalinti giesmę\nlanguage.changed.message=Kad pakeitimai įsigaliotų, turite paleisti Quelea iš naujo.\nadd.live.video.button=Pridėti tiesioginį vaizdą\ntranslate.heading=Vertimai\ncant.save.schedule.title=Klaida, bandant išsaugoti tvarkaraštį\nadd.audio.button=Garsas\ntimer.text.label=Papildomas tekstas\nshow.small.bible.text.label=Rodyti mažą Biblijos ištraukos informaciją\nfont.options.title=Šrifto parinktys\nedit.theme.heading=Taisyti apipavidalinimą\nhover.for.position.label=Tam, kad nustatytumėte teksto vietą, užveskite ir spustelėkite pele ant paveikslo\nlibrary.song.search=Paieška\nnotice.expired.title=Pranešimo galiojimas pasibaigė\nyoutube.url.label=Youtube vaizdo įrašo adresas (URL)\nsave.as.schedule.button=Išsaugoti tvarkaraštį kaip...\nnotice.times.text=Kiek kartų rodyti\nclear.text.tooltip=Tuščias ekranas\ndelete.translation.title=Šalinti vertimą\nexport.pdf.button=Eksportuoti kaip PDF\nbackground.text=Fonas\nsimilar.colors.text=Fono ir giesmės žodžių spalvos yra labai panašios, todėl bendruomenei bus sunku įžiūrėti žodžius. Siūlyčiau pasirinkti geresnes spalvas\\!\nnotes.label=Pastabos\nsp.button=Sunday Plus\noverwrite.lyrics.title=Pakeisti esamus giesmės žodžius?\nchange.bible.version.text=Perjungti versiją\ntext.border.thickness.label=Teksto rėmelio storis\none.monitor.title=Tik vienas ekranas\neasyslides.button=EasySlides\nadditional.line.spacing.label=Papildomas intervalas tarp eilučių\nhelp.menu.discussion=Palaikymas / Diskusijos (užduokite klausimus čia)\nmediashout.button=MediaShout\nfilefilters.description.txt.files=.txt failai\nembed.media.in.schedule=Įterpta medija tvarkaraščio faile\nmediashout.import.line1=Žemiau pasirinkite MediaShout duomenų bazės (eksportuotos į txt formatą) vietą:\nrcs.add.song=Pridėti giesmę į tvarkaraštį\ntop=Viršuje\ndelete.video.confirmation=Ar tikrai norite šalinti šį vaizdo įrašą iš bibliotekos? Šio veiksmo neįmanoma bus atšaukti.\nepicworship.button=EpicWorship\nrcs.add.bible.error=Pridedant $1 į tvarkaraštį, įvyko klaida \ntimer.files.description=Atvirkštiniai laikmačiai\nlibrary.video.heading=Vaizdo įrašai\nbottom=Apačioje\nsdb.files.description=Songpro duomenų bazės failai\ntimer.save.label=Įrašyti laikmatį?\nkingsway.range.import.text=Įrašykite, iš Kingsway svetainės atsiunčiamų giesmių puslapių, rėžį.\\nDabartinis didžiausias puslapių skaičius yra apie 3600.\nadd.videos.panel=Pridėti vaizdo įrašą\nrcs.song.search=Giesmė\nkingsway.button.range=Rėžis\nfilefilters.description.epc=EpicWorship .epc giesmių paketas\nadd.timers.panel=Pridėti laikmačius\nsongbeamer.button=SongBeamer\nremove.timer.text=Ištrinti laikmatį\nsng.files.description=SNG (SongBeamer) failai\nsongpro.button=SongPro\nkingsway.range.import.heading=Importuoti Kingsway giesmių rėžį\nconfirm.remove.timer=Tikrai šalinti $1 iš laikmačių sąrašo? Šio veiksmo neįmanoma bus atšaukti.\nsongbeamer.import.line1=Žemiau pasirinkite norimų importuoti SNG failų vietą:\nrtf.files.description=RTF failai\nclear.stage.view=Rodant tuščią pagrindinį ekraną, rodyti tuščią ir scenos ekraną\nepicworship.import.line1=Tai importuos giesmes iš EpicWorship Song Pack (.epc) failo.\nuse.24h.clock=Naudoti 24 val. laikrodį\nrcs.add.failed=Nepavyko pridėti\nshow.video.library.panel=Rodyti vaizdo įrašų bibliotekos kortelę (reikalauja paleidimo iš naujo)\nrcs.bible.search=Biblija\nrcs.search=Ieškoti ir pridėti\ntimer.name.label=Pavadinimas\nrcs.add.success=Pridėjimas sėkmingas\nrcs.submit=Pateikti\noverflow.song.label=Leisti perėjimą iš esamos giesmės į kitą\nsongpro.import.line1=Tai importuos giesmes iš SongPro SDB duomenų bazės.\nsof.import.line1=Tai importuos SoF biblioteką iš RTF failo.\ninvalid.search=Neteisinga paieška\nedit.timer.text=Redaguoti laikmatį\nlibrary.timer.heading=Laikmačiai\ndelete.video.title=Ištrinti vaizdo įrašą\nremove.video.text=Šalinti vaizdo įrašą\nrecording.no.devices.message=Atleiskite, nebuvo rasta jokių suderinamų įrašymo įrenginių.\\nĮsitikinkite, kad jūsų įrašymo įrenginys yra prijungtas ir įjungtas.\nsplit.bible.verses=Išlaikyti eilutę vienoje skaidrėje\nno.verse.message=Mums nepavyko rasti vienos ar daugiau nurodytų eilučių ir mes pabandėme tęsti be jų.\npause.record.tooltip=Pristabdyti įrašymą\nrecording.warning.message=Prieš tai, kai galėsite pradėti įrašinėti, jūs turite parinkčių skydelyje nustatyti kelią, kur bus saugomi įrašai.\nsave.recording.before.exit.message=Ar prieš išeidami, norėtumėte išsaugoti įrašą?\nrecording.no.devices.title=Nerasta jokių įrašymo įrenginių\nno.verse.title=Eilutė nerasta\nrecord.audio.tooltip=Įrašyti garsą\nsave.recording.before.exit.title=Neišsaugotas įrašas\nchorus.tooltip=Pridėti priegiesmio antraštę\nrecording.warning.title=Iš pradžių, nustatykite įrašų kelią\nconvert.mp3=Automatiškai konvertuoti įrašus į MP3 failus (reikalinga VLC)\nrecordings.path=Įrašų kelias\nmax.lines.per.slide=Eilučių skaidrėje (apytiksliai)\nlibrary.copy.to.schedule.text=Kopijuoti į tvarkaraštį\nvideopsalm.import.line1=Tai importuos VideoPsalm biblioteką iš JSON failo.\nmissionpraise.import.line1=Tai importuos giesmes iš Mission Praise RTF failų.\nfilefilters.description.pmsong.files=Presentation Manager giesmės\nfilefilters.description.vs.files=VideoPsalm duomenų bazės\nfilefilters.description.songs.missionpraise=Mission Praise RTF failai\npm.import.line1=Pasirinkite Presentation Manager giesmes, kurias importuoti.\nvideopsalm.button=VideoPsalm\npm.button=Presentation Manager\npresentation.options.heading=Pateiktys\nrecordings.options.heading=Įrašai\ncopy.song.db.default=Pagal numatymą kopijuoti giesmę į tvarkaraštį\nmp.button=Mission Praise\npco.button=Planning Center Online\npco.login.import.heading=Prisijungimas prie Planning Center Online\npco.loginerror.title=Prisijungimo klaida\npco.loginerror.warning=Prisijungti nepavyko, patikrinkite el. paštą bei\nslaptažodį ir bandykite vėl\npco.import.heading=Planning Center Online\npassword.text=Slaptažodis\nemailaddress.text=El. paštas\nlogin.text=Prisijungti\nfreeworship.button=Freeworship\nimport.all.button=Importuoti visas\nimport.selection.button=Importuoti žymėjimą\nrefresh.button=Įkelti iš naujo\nfreeworship.import.line1=Tai importuos FreeWorship giesmes iš XML failų.\ndownload.path=Atsiuntimo kelias\nadd.pdf.tooltip=Pridėti PDF\nimportexport.options.heading=Importavimas/Eksportavimas\npreview.failed=Peržiūra nepavyko\nset.loop.manually.title=PowerPoint nerasta\nset.loop.manually.message=Pateiktis buvo užverta. Jeigu jūs norite su PowerPoint peržiūros programa naudoti programos Quelea ciklo funkciją, tuomet jums, kuriant pateiktį, reikės rankiniu būdu nustatyti, kad pateiktis būtų kartojama tol, kol ji bus sustabdyta.\npresentation.changed.message=Tam, kad įsigaliotų nauji pateikčių nustatymai, jums reikės iš naujo paleisti Quelea.\npresentation.changed.label=Pateikčių nustatymai pakeisti\npresentation.not.started.label=PowerPoint nebuvo paleista\npresentation.not.started.message=Deja, jūsų pateikties nepavyko paleisti su PowerPoint. Galbūt, failas yra pažeistas?\npp.already.running.label=PowerPoint jau yra vykdoma\npp.already.running.message=Buvo rastas kitas PowerPoint egzempliorius. Prašome, prieš programoje Quelea paleidžiant pateiktį, užverti visus PowerPoint programos egzempliorius, kad išvengtumėte duomenų praradimo.\npp.path.label=Kelias iki PowerPoint programos\nuse.pp.label=Pateiktims naudoti PowerPoint\nclose.all.presentations.label=Užverkite visas pateiktis\nclose.all.presentations.message=Prašome, prieš nuspaudžiant Gerai, užverti visus atvertus PowerPoint langus arba kitu atveju tai bus atlikta automatiškai, kad būtų išvengta signalų siuntimo į klaidingą langą.\nlive.text.message=Bet koks žemiau parašytas tekstas, esant tuščiam ekranui, bus matomas mobilių giesmės žodžių naudotojams.\\n\\nNorėdami pradėti naujoje skaidrėje, naudokite tuščią eilutę. Jūs taip pat galite naudoti išvalymo mygtuką (arba CTRL + Return (Vald + Įved)), kad atstatytumėte abiejuose galuose. Daugiau nei 200 simbolių skaidrėje, naudotojui bus automatiškai sutrumpinami.\nlive.text.title=Gyvas tekstas\nexit.live.text=Išeiti iš gyvo teksto\nclear.live.text=Išvalyti\ndefault.translation=Numatytasis\nselect.language=Pasirinkite kalbą:\nsend.live.text=Gyvas tekstas\nconverting.to.mp3=Įrašas konvertuojamas į MP3\nverse.tooltip=Pridėti posmelio antraštę\nbridge.tooltip=Pridėti tiltelio antraštę\nprechorus.tooltip=Pridėti prieš-priegiesmio antraštę\ntag.tooltip=Pridėti žymės antraštę\nadd.website=Pridėti svetainę\nhelp.menu.feedback=Atsiliepimai\nadd.multimedia.tooltip=Pridėti multimediją\nfilefilters.description.multimedia.files=Multimedijos failai\nthumbnail.size.label=Miniatiūrų dydis\nfocus.switcher.title=Quelea fokusavimo perjungiklis\nfocus.switcher.message=Pristatymo metu, jei reikia, čia galite perjungti lango fokusavimą.\nfocus.pp=Nukreipti fokusavimą į PowerPoint\nfocus.quelea=Nukreipti fokusavimą į Quelea\nwebsite.dialog.title=Svetainės URL\nwebsite.dialog.header=Įveskite svetainės URL\nwebsite.dialog.content=Įveskite svetainę, kurią norėtumėte rodyti:\npaste.label=Įdėti\nundo.label=Atšaukti\nredo.label=Grąžinti\nsmi.import.line1=Pasirinkite Screen Monkey giesmes, kurias importuoti.\nsm.button=Screen Monkey\nsundayplus.import.line2=(Importavimo įrankis tikisi, kad PTF failai bus šakniniame zip failo kataloge.)\nhelp.menu.error.text=Atleiskite, mums nepavyko įkelti puslapio. Galite naršyti į jį rankiniu būdu: $1\nfilefilters.description.songs.worshiphim=Worship Him MDB failai\nworshiphim.import.line1=Žemiau pasirinkite Worship Him duomenų bazės (mdb formatu) vietą:\nworshiphim.button=Worship Him\nshow.extra.live.panel.toolbar.options.label=Rodyti papildomas skydelio \"Gyvai\" įrankių juostos parinktis\nschedule.items.skipped.text=Kai kurie tvarkaraščio elementai neturi savo įtaisytos medijos, taigi, jie nebuvo pridėti.\nschedule.items.skipped.header=Praleisti tvarkaraščio elementai\nelevanto.button=Elevanto\nelevanto.import.heading=Elevanto\nelevanto.loginsuccess.message=Galite užverti šį langą ir grįžti į Quelea\nvideo.loop.tooltip=Perjungti ciklo įjungimą / išjungimą\nelevanto.loginerror.warning=Klaida prisijungiant prie Elevanto\ndelete.notice.button=Ištrinti\ntheme.copy.label=Kopijuoti iš apipavidalinimo\nsong.default.theme.label=Giesmės numatytasis\nsaved.notices=Išsaugoti pranešimai\ntheme.select.label=Pasirinkti apipavidalinimą\nbible.default.theme.label=Biblijos numatytasis\nallow.item.theme.override.global=Leisti tinkintiems elementų apipavidalinimams nustelbti visuotinį apipavidalinimą\ncopy=Kopijuoti\nsave.add.notice.button=Išsaugoti ir pridėti\ndelete.bible.confirmation=Ar tikrai norite ištrinti $1 Bibliją?\nbible.delete.error.heading=Klaida\nbible.delete.error.text=Atleiskite, ištrinant Bibliją iš reikiamo katalogo, įvyko klaida.\ndelete.bible.label=Ištrinti dabartinę Bibliją\ndb.song.preview.label.databasepreview=Duomenų bazės polangyje\ndefault.theme.label=Numatytasis\ndb.song.preview.label=Duomenų bazės giesmės peržiūra\ntheme.changed=Apipavidalinimas pakeistas\ninterface.theme.label=Programos apipavidalinimas\ndb.song.preview.label.control=Nėra\ndb.song.preview.label.previewpane=Peržiūros polangyje\ntheme.changed.message=Prieš įsigaliojant apipavidalinimo pakeitimui, turite paleisti Quelea iš naujo.\ndark.theme.label=Tamsus\nchosen.sequence.label=Pasirinkta sekos tvarka\ngeneral.user.options=Bendrosios naudotojo parinktys\nslide.transition.label=Naudoti išblukimo perėjimą tarp skaidrių\nchosen.sequence.explanation=Tempkite elementus iš kairės į dešinę arba spustelėkite du kartus, norėdami sukurti giesmės seką. Vėliau, giesmės žodžių skaidrės bus rodomos šia tvarka nepriklausomai nuo to, kokia tvarka giesmės žodžiai yra saugomi duomenų bazėje.\nsmall.song.position.label=Informacijos apie giesmę vieta\navailable.sections.label=Šioje giesmėje prieinamos sekcijos\nmove.up.sequence.tooltip=Pakelti sekciją sekos tvarkoje\nremove.sequence.tooltip=Šalinti sekciją iš sekos tvarkos\nsequence.tooltip=Giesmės sekos dialogas\nmove.down.sequence.tooltip=Nuleisti sekciją sekos tvarkoje\nsmall.bible.text.options=Mažo Biblijos teksto parinktys\nfilefilters.description.sunday.plus=Sunday plus giesmės\nsmall.bible.size.label=Informacijos apie Bibliją dydis\nfilefilters.description.xml.openlyrics=XML openlyrics failai\npassword.empty.message=Serverio slaptažodis negali būti tuščias. Jeigu į slaptažodžio lauką nieko neįvesite, tuomet bus naudojamas numatytasis slaptažodis \"quelea\".\nfilefilters.description.csv.files=.csv failai\nsequence.selection.dialog.title=Sekos pasirinkimas\ngeneral.interface.options=Bendrosios sąsajos parinktys\ninterface.options.options=Sąsajos parinktys\npp.path=Kelias į PowerPoint programą\nfilefilters.description.propresenter=Propresenter giesmės\nmobile.remote.heading=Mobilusis nuotolinis valdymas\nschedule.options=Tvarkaraščio parinktys\nsmall.song.size.label=Informacijos apie giesmę dydis\npropresenter.import.line1=Tai importuos giesmes iš Propresenter giesmių failo.\npropresenter.button=ProPresenter\nsong.sequence=Giesmės seka:\nsmall.bible.position.label=Informacijos apie Bibliją vieta\nsong.list=Giesmių sąrašas\ntheme.options=Apipavidalinimo parinktys\nsmall.song.text.options=Mažo giesmės teksto parinktys\npassword.empty.label=Rastas tuščias slaptažodis\nremote.action.slide=Pereiti prie kitos/ankstesnės skaidrės\nclient.id=Kliento ID\nremote.dpad.navigation.description=Naudoti pulto mygtukus (aukštyn/žemyn) norint naršyti į kitą ar ankstesnę skaidrę/elementą. Aktyvuokite tai, jei norite naudoti „Bluetooth“ klaviatūrą ar pedalus (kaip pvz., „AirTurn“).\nremote.double.press.title=Veiksmas paspaudus du kartus\nremote.signal.failed=Nepavyko išsiųsti signalo į serverį\nremote.navigation.settings.title=Naršymo nuostatos\nremote.failed.finding.server=Nepavyko rasti Quelea mobiliojo nuotolinio valdymo serverio. Įsitikinkite, kad Quelea yra paleista ir, kad įvedėte teisingą URL adresą.\nremote.select.book=Pasirinkti knygą\nremote.swipe.navigation.title=Naršymas perbraukimais\nremote.about.text.responsibility=Aš negaliu garantuoti nepriekaištingą patyrimą, todėl neprisiimsiu jokios atsakomybės už problemas, kurios atsiras rodant gyvai.\nremote.about.title=Apie šią programėlę\nremote.needs.newer.version=Ši ypatybė reikalauja, kad serveris naudotų Quelea $1 ar naujesnę versiją\nremote.select.chapter.verses=Pasirinkti skyrių ir eilutę(-s)\nbible.version=Biblijos versija\nremote.about.text.support=Nesivaržykite rašyti man el. paštu arvid @ quelea.org jei turite klausimų ar patiriate problemų. Tiesiog, iš pradžių, įsitikinkite, kad prieš paleidžiant programėlę buvote paleidę Quelea (su abiem veikiančiais serveriais), kad abu įrenginiai yra prisijungę prie to paties tinklo ir, kad įvedėte teisingą URL adresą.\nremote.add.go.live=Pridėti ir rodyti gyvai\nclick.to.add=Spustelėkite norėdami pridėti\nremote.send.notice.tooltip=Pridėti pranešimą\nremote.privacy.policy=Privatumo politika\nremote.enable.dpad.navigation=Įjungti naršymą pultu\nremote.action.item=Pereiti prie kito/ankstesnio elemento\nremote.ipv6.not.supported=Deja, negalite naudoti IPv6 adresų. Norėdami naudotis šia programėle, turite naudoti IPv4 adresą. Jei nežinote, kaip jį sužinoti, į paiešką internete įveskite „mano vidinis ip adresas“ ir savo operacinės sistemos pavadinimą. Įveskite IPv4 adresą/URL žemiau.\nremote.long.press.title=Veiksmas ilgai paspaudus\nsong.sequence.tip=Patarimas: Galite pridėti sekciją (pvz., priegiesmį) daugiau nei vieną kartą!\nremote.start.verse=Pradžios eilutė\nremote.donations.link=Paaukoti\nremote.port.needed=URL adreso pabaigoje privalo būti prievado numeris (pvz., „:1112“). Bandykite dar kartą.\nremote.use.autoconnect=Automatiškai bandyti rasti serverio URL\nremote.select.theme=Pasirinkti apipavidalinimą\nremote.long.press.description=Pasirinkite kas nutiks, jei ilgai spausite mygtuką, kai naršote naudodamiesi bet kuria iš aukščiau paminėta parinktimi. Turėkite omenyje, kad tai neveiks su „AirTurn“ pedalais.\nremote.connected=Prisijungta!\nremote.on.end.title=Veiksmas elemento pabaigoje/pradžioje\nremote.enable.volume.navigation=Įjungti naršymą garsumo mygtukais\nremote.on.end.description=Pasirinkite ką norite, kad programėlė darytų, kai naršote naudodamiesi bet kuria iš aukščiau paminėta parinktimi ir pasiekiate elemento pabaigą/pradžią.\nremote.chapter=Skyrius\nremote.disable.record=Išjungti įrašymo mygtuką\nremote.action.logo=Slėpti tekstą ir rodyti logotipą\nremote.action.black=Slėpti tekstą naudojant juodą ekraną\nremote.action.nothing=Nieko nedaryti\nremote.about.text.app=Ši programėlė yra nekomercinė programėlė, sukurta naudoti su bažnyčioms skirta atvirojo kodo programine įranga Quelea (http://quelea.org). Nors programėlė daugiau nebėra beta versijoje, vis dėlto, ji kol kas nėra be trūkumų ir nėra pilnai sukomplektuota. Tai yra šalutinis projektas ir daugiau yra skirtas asmeniniam naudojimui, bet juo yra mielai dalinamasi su visais, kam jis gali praversti.\nremote.report.issue=Pranešti apie klaidą\nremote.auto.progress.item=Judėti prie kito/ankstesnio elemento\nremote.theme.was.set=$1 buvo nustatytas kaip visuotinis apipavidalinimas\nremote.swipe.navigation.description=Pasirinkite kas nutiks, kai perbrauksite ekrane kairėn ar dešinėn.\nremote.action.clear=Slėpti tekstą naudojant išvalymo mygtuką\nremote.search.server=Ieškoti serverio\nremote.wrong.content=Buvo rastas neteisingas puslapio turinys. Bandykite dar kartą.\nremote.information.title=Informacija\nremote.choose.action=Pasirinkti veiksmą, skirtą $1\nremote.double.press.description=Pasirinkite kas nutiks, kai vienu metu paspausite du mygtukus tuomet, kai naršote naudodamiesi bet kuria iš aukščiau paminėta parinktimi.\nremote.end.verse=Pabaigos eilutė\nremote.control.app.name=Quelea mobilusis nuotolinis valdymas\nopen.sequence.editor.tooltip=Rodyti sekos redaktorių\nremote.no.wifi=Jūs nesate prisijungę prie belaidžio tinklo. Nustatykite URL rankiniu būdu arba prisijunkite prie belaidžio tinklo.\nremote.search.tooltip=Pridėti giesmę ar Biblijos ištrauką\nremote.about.translating=Apie programėlės vertimą\nremote.source.code=Pirminis kodas\nremote.volume.navigation.description=Naudoti telefono garsumo mygtukus, kad būtų perjungiama į kitą ar ankstesnę skaidrę/elementą.\nlink.preview.and.live.dividers.label=Nuorodos peržiūros ir skydelio „Gyvai“ dalytuvai\nstage.show.clock=Rodyti laikrodį\nenter.valid.port=Įveskite skaičių nuo 1029 iki 49151\n"
  },
  {
    "path": "Quelea/languages/nl.lang",
    "content": "LANGUAGENAME=Nederlands (NL)\ndatabase.heading=Database\nimport.heading=Importeer\nqsp.button=Quelea Lied Set\nos.button=Opensong\nolp.button=OpenLP\nolyrics.button=OpenLyrics\nzw.button=ZionWorx\nsp.button=Sunday Plus\nss.button=Survivor Songbook\nprojector.heading=Projector\ncontrols.heading=Controls\non.button=Aan\noff.button=Uit\nswitch.input.button=Wissel Ingang\ngeneral.options.heading=Algemeen\ndisplay.options.heading=Schermen\nbible.options.heading=Bijbel\ncheck.for.update.label=Controleer op updates bij starten\n1.monitor.warn.label=Waarschuw bij een enkel gekoppelde monitor\ncapitalise.start.line.label=Hoofdletter als eerste letter op iedere regel\none.line.mode.label=Toon een regel per lied in voorvertoning\ndisplay.song.info.label=Toon lied informatie\ntext.border.thickness.label=Tekstrand dikte\nmax.chars.line.label=Maximum karakters per regel\nadvanced.label=Geavanceerd\nok.button=OK\noutput.text=Uitgang\ncontrol.screen.label=Beheer Scherm\nprojector.screen.label=Projectie scherm\nstage.screen.label=Podium scherm\ncustom.position.text=Aangepaste Positie\ndefault.bible.label=Standaard\nmax.verses.label=Maximum aantal versen in een keer te tonen\nadd.bible.label=Voeg bijbel toe...\nnone.text=Geen\nnew.schedule.button=Nieuwe orde van dienst\nopen.schedule.button=Open orde van dienst\nsave.schedule.button=Sla orde van dienst op\nsave.as.schedule.button=Sla orde van dienst op als...\nprint.schedule.button=Print orde van dienst\noptions.title=Opties\noptions.button=Opties\nexit.button=Afsluiten\nnew.schedule.text=Nieuw orde van dienst\ncreate.new.schedule.text=Maak nieuw orde van dienst aan\nopen.schedule.text=Open orde van dienst\nopen.existing.schedule.text=Open een bestaande orde van dienst\nsave.schedule.text=Sla orde van dienst op\nsave.schedule.disk.text=Sla de orde van dienst op naar schijf\nsave.as.schedule.text=Sla orde van dienst op als...\nsave.as.schedule.disk.text=Sla orde van dienst op als apart bestand\nprint.schedule.text=Print orde van dienst\nprint.current.schedule.text=Print huidige orde van dienst\noptions.text=Opties\ndisplay.options.text=Toon keuzevenster\nexit.text=Sluit Quelea af\nquit.quelea.text=Sluit Quelea af\nsave.schedule.tooltip=Sla orde van dienst op\nprint.schedule.tooltip=Print orde van dienst\nlibrary.image.heading=Afbeeldingen\nlibrary.songs.heading=Liederen\nlibrary.bible.heading=Bijbels\nbible.heading=Bijbels\nlibrary.song.search=Zoeken\nclear.search.box=Schoon zoekopdracht\nadd.song.text=Nieuw lied toevoegen\nremove.song.text=Verwijder lied uit database\nlibrary.add.to.schedule.text=Voeg toe aan orde van dienst\nlibrary.edit.song.text=Wijzig lied\nlibrary.remove.song.text=Verwijder lied\nlibrary.print.song.text=Print lied\nadd.to.schedule.text=Voeg toe aan orde van dienst\norder.service.heading=Orde van dienst\nmove.down.schedule.tooltip=Verplaats naar beneden in orde van dienst\nmove.up.schedule.tooltip=Verplaats naar boven in orde van dienst\nremove.song.schedule.tooltip=Verwijderd uit orde van dienst\nadjust.theme.tooltip=Stel thema in\nedit.song.text=wijzig lied\nnew.theme.text=Nieuw thema...\ntheme.select.text=Selecteer thema:\ndefault.theme.name=Standaard\ndefault.theme.text=Standaard thema\nremove.theme.tooltip=Verwijder thema\nedit.theme.tooltip=Wijzig thema\nedit.theme.heading=Wijzig thema\npreview.heading=Voorbeeld\nlive.heading=Live\ngo.live.text=Go Live\nblack.screen.tooltip=Zwart scherm\nclear.text.tooltip=Schoon scherm\nhide.display.output.tooltip=Verberg scherm uitvoer\nschedule.heading=Orde van dienst\nadd.song.button=Voeg lied toe\nedit.song.button=Wijzig lied\nremove.item.button=Verwijder onderdeel\nadd.multimedia.heading=Voeg Multimedia toe\nadd.presentation.button=Voeg presentatie toe\nadd.video.button=Voeg video toe\nadd.youtube.button=Voeg Youtube Video toe\nadd.live.video.button=Voeg Live Video toe\nadd.dvd.button=Voeg DVD toe\nadd.audio.button=Geluidsfragment\nadd.audio.tooltip=Voeg geluidsfragment toe\nshare.heading=Deel\nemail.button=Email orde van dienst\nmanage.notices.button=Beheer Notities...\nnotices.heading=Notities\nnew.notice.text=Nieuwe Notitie\nedit.notice.text=Wijzig Notitie\nremove.notice.text=Verwijder Notitie\ndone.text=Klaar\nnew.notice.heading=Nieuwe Notitie\nnotice.text=Notitie\nnotice.times.text=Aantal keren te vertonen\nnotice.infinite.question=Steeds herhalen\nadd.notice.button=Voeg notitie toe\nedit.notice.button=Wijzig notitie\nyes.text=Ja\nno.text=Nee\ncancel.text=Annuleren\nnew.song.button=Nieuw lied\ndelete.song.button=Verwijder lied\nsongs.heading=Liederen\ntags.button=Beheer labels...\nsource.button=De bron\neasyslides.button=EasySlides\neasyworship.button=EasyWorship 2009\nplainText.button=Kale tekst\nkingsway.button=Kingsway Online\nkingsway.button.range=Serie\nsof.button=Songs of Fellowship\nexport.heading=Exporteer\nfilter.tag=Filter labels\ntags.colon.label=Tags:\nimport.button=Importeer\nclick.select.file.text=Klik om bestand te selecteren\ncheck.duplicates.text=Controleer op dubbelen\nedit.song.title=Wijzig lied\nbasic.information.heading=Basis informatie\ndetailed.info.heading=Gedetailleerde informatie\ntheme.heading=Thema\ntitle.label=Titel\nauthor.label=Auteur\nrun.spellcheck.label=Spellingcontrole\nfix.apos.label=Correctie apostroffen\ntrim.lines.tooltip=Regels trimmen\ntranspose.tooltip=Omzetten...\ncancel.button=Annuleer\nccli.number.label=CCLI nummer\ncopyright.label=Copyright\nyear.label=Jaar\npublisher.label=Uitgever\ntags.label=Labels\ntype.tag.name.here.text=<Typ tag namen hier>\nkey.label=Sleutel\ncapo.label=Capo\nnotes.label=Notities\nfont.theme.label=Font\nchoose.color.text=Kies kleur...\nbackground.text=Achtergrond\nbackground.theme.label=Achtergrond thema\ncolor.theme.label=Kleur\nimage.theme.label=Plaatje\nselect.color.title=Kies Kleur\nselect.color.button=Kies Kleur\nnew.song.title=Nieuw lied\ntype.lyrics.here.text=Type liedtekst hier\nplaintext.import.line1=Dit zorgt voor de import van liederen vanuit een map met liederen in tekstbestanden.\nkingsway.import.line1=Dit zorgt voor de import van de online kingsway liederen bibliotheek.\nkingsway.import.line2=Dit kan lang duren (mogelijk uren!), laat Quelea draaien alstublieft!\neasyslides.import.line1=Dit zorgt voor de import van liederen uit een EasySlides XML bestand.\neasyworship.import.line1=Dit zorgt voor de import van liederen uit een Easyworship Songs.MB bestand.\nopenlyrics.import.line1=Selecteer de locatie van het zip archief met openlyrics liederen hieronder.\nqsp.import.line1=Selecteer de locatie van het Quelea songpack hieronder.\nos.import.line1=Selecteer de locatie van de Opensong database hieronder.\nzw.import.line1=Selecteer de locatie van het ZionWorx \"MainTable.dat\" bestand hieronder.\nzw.import.line2=Normaal te vinden in \"C:\\\\ProgramData\\\\ZionWorx\\\\2.6\\\\Data\".\nolp.import.line1=Selecteer de locatie van de OpenLP database hieronder.\nsundayplus.import.line1=Selecteer de locatie van de Sunday Plus database hieronder.\nsource.import.line1=Selecteer de locatie van de ymns directory op de bron CD.\nsurvivor.import.line1=Selecteer de locatie van de Survivor Songbook PDF hieronder.\nsurvivor.import.line2=Dit moet een acetates.pdf bestand zijn, niet gitaar akkoorden of bladmuziek.\nimport.error.message=Sorry, er was een probleem met het importeren. Wees zo vrij om hulp te vragen bij de Quelea discussie groep: https://quelea.discourse.group\nemail.error.title=Email fout\nemail.error.text=Er was een storing bij het openen van je email programma. Zorg dat je een email programma geinstalleerd hebt en dan ook eml bestanden daarmee geopend kunnen worden. Verstuur de email anders handmatig.\nemail.text=Hallo! Bijgevoegd een orde van dienst uit Quelea. Open de bijlage met Quelea en alle regels zouden correct in beeld moeten komen.\nselect.image.button=Selecteer afbeelding\nimage.files.description=Afbeeldingen\ntools.label=Tools\nselect.songs.title=Select Liederen\ncheck.uncheck.all.text=Selecteer/deselecteer alle\ndelete.theme.confirm.title=Bevestig verwijderen\ndelete.theme.question=Wil je dit thema verwijderen?\ntoo.many.verses.error=Sorry, dit aantal versen is niet te tonen... Probeer het met een kleiner aantal versen.\none.monitor.warning=Het lijkt er op dat er maar een monitor aanwezig is. Dit is prima voor test- of voorbereidingsdoeleinden. Voor presentatie in zalen heeft Quelea twee monitoren nodig om goed te werken.\none.monitor.title=Slechts een monitor gevonden\nno.dvd.heading=Geen disk gevonden\nno.dvd.error=Plaats een correcte DVD of Blu-ray.\nadding.presentation.status=Presentatie importeren...\nadding.presentation.error.message=Er was een probleem bij het importeren van de presentatie. Misschien beschadigd?\nadding.presentation.error.title=Probleem bij importeren presentatie\nimporting.status=Importeren...\nname.label=Naam\nsimilar.colors.text=Je hebt vergelijkbare kleuren gekozen voor zowel de tekst als de achtergrond. Voor de lezers is dit lastig om te lezen. Het advies is om betere kleuren te kiezen!\nwarning.label=Waarschuwing\nfile.menu=Bestand\ntools.menu=Gereedschap\nschedule.menu=Orde van dienst\ndatabase.menu=Database\nprojector.menu=Projector\nnew.theme.title=Nieuw Thema\nadd.theme.label=Voeg Thema toe\ntheme.name.label=Thema Naam\nhelp.menu=Help\nhelp.menu.website=Website\nhelp.menu.discussion=Ondersteuning / Discussie (stel uw vraag hier)\nhelp.menu.download=Download\nhelp.menu.update=Controleer op updates\nhelp.menu.about=Over...\nhelp.menu.error.title=Error\nhelp.about.title=Over\nhelp.about.version=Versie\nhelp.about.close=Sluiten\nhelp.about.line1=Quelea is gelicenseerd onder GPL (Versie 3.)\nhelp.about.line2=Het is en zal altijd blijven: vrije en open bron software.\nnew.schedule.tooltip=Nieuwe orde van dienst\nopen.schedule.tooltip=Open orde van dienst\nnew.song.tooltip=Nieuw lied\nadd.presentation.tooltip=Voeg Presentatie toe\nadd.dvd.tooltip=Voeg DVD toe\nadd.video.tooltip=Voeg Video toe\nmanage.tags.tooltip=Beheer labels\nmanage.notices.tooltip=Beheer Notities\nalready.running.error=Het lijkt er op dat je al een instantie van Quelea hebt draaien.\\nController dat alle andere instanties gesloten zijn voordat je een nieuwe instantie start.\nalready.running.title=Draait al\nerror.schedule.message=Er was een probleem bij het openen van de orde van dienst. Mogelijk een kapot bestand of niet opgeslagen door Quelea?\nerror.schedule.title=Probleem bij openen orde van dienst\nprint.chords.question=Akkoorden toevoegen bij het printen van dit lied?\nprint.chords.export.question=Akkoorden toevoegen bij exporteren van de liederen?\nprinting.options.text=Print lied\nspace.key=spatiebalk\nupdating.db=Bijwerken Database\nerror.updating.song.text=Er was een probleem tijden het bijwerken van een lied in de database, mogelijk is het lied beschadigd.\nerror.text=Error\nquick.shortcut.description=Escape om te annuleren, shift+enter om op te slaan\nsave.before.exit.text=De orde van dienst is gewijzigd. Opslaan voor afsluiten?\nsave.before.exit.title=Nog niet opgeslagen orde van dienst\nno.chords.message=Dit lied heeft geen enkele regel of akkoorden om om te zetten.\nno.chords.title=Geen akkoorden\nerror.checking.updates.title=Kon geen controle op updates doen\nerror.checking.updates.text=Sorry, er was een probleem bij controle op updates. Controleer de internetverbinding en probeer het opnieuw.\nnewer.version.available=Er is een nieuwere versie van Quelea beschikbaar\nno.newer.version.available=Je draait de laatste versie van Quelea\nvisit.webpage.now=Ga naar de website om te downloaden?\ndownload.manual.update=Je kunt het hier downloaden\nnewer.version.available.title=Update beschikbaar\nno.newer.version.available.title=Al helemaal bijgewerkt!\ncheck.kingsway.start=Er zijn al imports vanuit de Kingsway library. Wil je verder gaan waar je gebleven was?\ncheck.kingsway.start.title=Reeds geïmporteerde gegevens\nimport.no.songs.title=Geen liederen gevonden\nimport.no.songs.text=Kon geen liederen vinden om te importeren.\nstage.options.heading=Podium\nstage.show.chords=Toon akkoorden\nstage.line.alignment=Tekst positionering\nstage.font.selection=Lettertype\nstage.background.colour=Achtergrond Kleur\nstage.lyrics.colour=Kleur liedteksten\nstage.chord.colour=Kleur Akkoorden\nclear.stage.view=Schoon Podium scherm tegelijk met Projectie scherm\nleft=Links\ncentre=Midden\nright=Rechts\nbottom=Onder\ntop=Boven\nconfirm.label=Weet je het zeker?\nschedule.clear.text=De orde van dienst is gewijzigd. Verder gaan zonder opslaan?\npart=deel\nhelp.menu.facebook=Facebook pagina\nvideo.error=Kon de video bibliotheken niet initialiseren - video zal niet werken. Los dit op of vraag op de discussie lijst (zie het help menu) voor hulp om dit probleem op te lossen.\nvideo.error.title=Video fout\ntext.shadow.label=Toon tekst schaduw\nadding.images=Toevoegen plaatjes...\nsetup.oo.failed.text=Kon de OpenOffice niet activeren om presentaties te kunnen tonen. Zorg er alstublief voor dat OpenOffice geinstalleerd is, en dat het juiste pad is ingegeven.\nsetup.oo.failed.title=OpenOffice kon niet worden geinitialiseerd\nuse.oo.label=Gebruik OpenOffice voor presentaties\noo.path=OpenOffice pad\nbrowse=Bladeren...\nloading.text=Laden\nbuilding.bible.index=Bijbels aan het laden\nbible.search.title=Bijbel zoeken\ninitial.search.text=<Typ hier om te zoeken>\nview.bible.button=Bekijk bijbels...\nsearch.bible.button=Zoek in bijbels...\nall.text=Alle\nbible.browser.title=Bijbel Bladeraar\nopen.in.browser=Open in Bladeraar...\nkingsway.button.all=Alle Liederen\nkingsway.button.one=Een lied\nsong.id.selector=Selecteer een liedcode\nbible.copy.error.text=Sorry, er was een probleem bij het kopiëren van een bijbel naar de gewenste bestandslocatie.\nbible.copy.error.heading=Error\nselect.key.label=Selecteer de nieuwe sleutel:\ntranspose.label=Omzetten\nalready.exists.overwrite.label=Bestaat al. Overschrijven?\noverwrite.text=Overschrijven\ncant.save.schedule.title=Error opslaan orde van dienst\ncant.save.schedule.text=Sorry, er was een error. De orde van dienst kon niet worden opgeslagen.\nerror.removing.song.db=Er was een probleem bij het verwijderen van het lied uit de database.\nconfirm.remove.text=Bevestig verwijdering\nconfirm.remove.question=Werkelijk verwijderen van $1 uit de database? Deze actie kan niet ongedaan worden gemaakt.\nquick.edit.text=Snelle Wijziging\nlibrary.preview.song.text=Bekijk lied\nvideo.error.unsupported=Sorry, het video bestand door jou geselecteerd wordt niet ondersteund.\nvideo.error.general=Sorry, er is wat fout met de video die je selecteerde.\nvideo.theme.label=Video\nselect.video.button=Selecteer Video\nrefresh.images.panel=Ververs afbeeldingen\nadd.images.panel=Voeg afbeelding toe\nselect.folder.images.panel=Selecteer Folder...\ntext.position.label=Tekst Positie\nimage.folder=Afbeeldingen Map:\nquick.insert.text=Snelle Invoeger\nconfirm.overwrite.title=Bestand bestaat al!\nconfirm.overwrite.text=Dit bestand bestaat al. Wil je het overschrijven of gaan we door zonder kopie?\nfile.rename.button=Hernoem\nfile.replace.button=Vervang\nfile.continue.button=Ga door\nfile.rename.dialog.title=Hernoem\nfile.rename.dialog.text=Geef nieuwe bestandsnaam:\ninterface.language.label=Scherm taal:\nlanguage.changed=Taal gewijzigd\nlanguage.changed.message=Je moet Quelea herstarten voordat de taalwijziging effect heeft.\ndebug.location=Debug Log Locatie\ntop.text.position=Boven\nmiddle.text.position=Midden\nbottom.text.position=Onder\nshadow.color=Schaduw kleur\nshadow.x=Schaduw X Afstand\nshadow.y=Schaduw Y Afstand\nselect.imported.songs.line1=De volgende liederen zijn geimporteerd.\nselect.imported.songs.line2=Selecteer de liederen die je wilt toevoegen en klik \"Voeg toe\".\nselect.imported.songs.line3=Liederen waarvan Quelea denkt dat ze dubbel zijn hebben geen vinkje (meer) staan.\nadd.text=Voeg toe\nadd.to.database.question=Voeg toe aan database?\nselect.export.songs.line1=De volgende liederen staan in de database.\nselect.export.songs.line2=Selecteer de liederen die je wilt exporteren en klik \"Voeg toe\".\nadd.to.songpack.question=Exporteer lied?\nprojection.window.title=Projectie scherm\nclear.live.on.remove.schedule=Verwijder item van live vertoning bij verwijderen uit liturgie\nspelling.complete.text=Spellingscontrole is gereed.\ncomplete.title=Compleet\nspelling.check.title=Spellingscontrole\ncorrect.text=Correct\nignore.text=Negeer\nspelling.errors.in.doc.label=Er zijn spellingsmeldingen in het document. Toets \"F7\" om de spellingscheck dialoog te starten.\nremove.image.text=Verwijder afbeelding\ndelete.image.title=Verwijder afbeelding\ndelete.image.confirmation=Wil je deze afbeelding verwijderen uit de database? De actie kan niet worden terug gedraait.\nnotice.expired.title=Notitie verlopen\nnotice.expired.text=De notitie die je bewerkt is verlopen. Wil je de notitie weer toevoegen?\ndictionary.language.text=Taal Woordenboek\nconfirm.entry.exit.text=Wil je de wijzingen in dit lied opslaan?\nconfirm.entry.exit.title=Lied opslaan?\nsave.text=Opslaan\ndont.save.text=Niet opslaan\nvlc.warning.title=Kon VLC niet vinden op het systeem\nvlc.warning.message=Quelea kon VLC niet vinden op het system. Zonder VLC kan Quelea geen video's, muziek en liederen met video achtergronden afspelen.\\n Wil je VLC nu binnenhalen? Als je VLC geinstalleerd hebt, zul je Quelea moeten herstarten om gebruik te kunnen maken van VLC.\nvlc.version.message=De geinstalleerde versie van VLC is te oud. Haal de laatste versie van VLC op om video's, muziek en liederen met video achtergronden af te spelen. Wil je VLC nu binnenhalen? Als je VLC geinstalleerd hebt, zul je Quelea moeten herstarten om gebruik te kunnen maken van VLC.\ncontinue.without.video=Ga door zonder VLC.\ndownload.vlc=VLC binnen halen\nstartup.error.title=Startup fout\nstartup.error.text=Sorry, Quelea kon om een of andere reden niet gestart worden op je systeem. Als je hulp wilt hebben om Quelea gestart te krijgen, stuur een email naar support@quelea.org en voeg het debug log bestand toe ($1).\\n\\n Als alternatief, wees zo vrij en stel je vraag in de discussiegroep (voor de link, zie menu help).\nfilefilters.description.survivor.songbook=Survivor acetates bestand\nfilefilters.description.epc=EpicWorship .epc liederen bestand\nfilefilters.description.xml.bibles=XML Bijbels\nfilefilters.description.xml.easyslide=XML Easyslide bestanden\nfilefilters.description.xml.files=XML bestanden\nfilefilters.description.video.files=Video bestanden\nfilefilters.description.audio.files=Geluidsbestanden\nfilefilters.description.quelea.schedules=Quelea Orde van diensten\nfilefilters.description.powerpoint.presentations=Powerpoint Presentaties\nfilefilters.description.plain.text.song=Liederen in platte tekst\nfilefilters.description.maintable.dat=ZionWorx database hoofdbestand\nbible.search.results.found=resultaten gevonden\nbible.search.result.found=resultaat gevonden\nbible.search.keep.typing=Blijf typen...\nuniform.font.size.label=Gebruik standaard letter grootte\nmax.font.size.label=Maximale letter grootte\nadditional.line.spacing.label=Extra regel afstand\nlogo.screen.tooltip=Linkermuisknop Toon - Rechtermuisknop - Set\nchange.graphics.label=Wijzig Afbeeldingen\nfont.colour.label=Letter kleur\nbackground.colour.label=Achtergrond kleur\nmobile.lyrics.heading=Mobiele Liedteksten\nuse.mobile.lyrics.label=Gebruik mobiele Liedteksten\nport.number.label=Poort Nummer\nnavigate.mob.url.label=URL Mobiele Liedteksten\nserver.changed.label=Server Instellingen gewijzigd\nserver.changed.message=Je moet Quelea herstarten om de nieuwe Server Instellingen te laden.\nfilefilters.description.zip.files=Zip Bestanden\nfilefilters.description.sqlite.files=SQLite Bestanden\nloop.label=Loop\nseconds.label=seconden\nchosen.fonts.explanation=Quelea toont alleen een selectie van lettertypes in het scherm met themas. Sleep een lettertype dat je wilt gebruiken van het linker naar het rechter paneel. Diegene die je niet (meer) wilt gebruiken sleep je van rechts naar links.\nignored.fonts.label=Genegeerde fonts\nchosen.fonts.label=Gekozen fonts\nfont.selection.dialog.title=Font Selectie\nvideo.hue.label=Nuance\nhover.for.position.label=Beweeg over het canvas om de tekst positie te zetten.\ntest.patterns.text=Testbeeld\ntest.patterns.explanation=De hier getoonde testbeelden zouden je kunnen helpen om de schermen (en focus) correct te calibreren.\\n Klik op een test afbeelding om het te tonen op zowel het hoofd- als podiumscherm.\nyoutube.url.label=YouTube video URL\nno.tdb.heading=TurboDB Data uitwisseling niet gevonden\nno.tdb.message=Om technische redenen zul je de TurboDB data uitwisselaar moeten ophalen (https\\://www.dataweb.de/en/support/downloads.html). Daarna kan Quelea de ZionWorx databases mogelijk importeren.\\nAls je de data uitwisselaar binnengehaald hebt, pak het bestand dan uit in $1.\\n\\nHeb je nog problemen, wees dan zo vrij en stel je vraag in de discussiegroep (voor de link, zie menu help).\nno.pdb.heading=Paradox JDBC driver niet gevonden\nno.pdb.message=Om technische redenen zul je de Paradox JDBC driver eerst moeten ophalen, voordat Quelea veilig Easyworship databases kan importeren:\\n\\n1. Ga naar http://www.hxtt.com/download.jsp registreer middels een vrij account en ga door.\\n2. Download het bestand \"DBF JDBC 4.1 Package for JDK1.7.X and JDK1.8.X\". De naam zou moeten worden: Paradox_JDBC41.jar.\\n3. Kopieer het bestand  Paradox_JDBC41.jar naar $1.\\n\\nHeb je nog problemen, wees dan zo vrij en stel je vraag in de discussiegroep (voor de link, zie menu help). Quelea zal de import van Easyworship databases zonder dit bestand ook uitvoeren. Echter de import is minder betrouwbaar\nshow.verse.numbers=Toon vers nummers\nadd.song.hint.text=Er zijn nog geen liederen, maar geen paniek! Om een lied toe te voegen hoef je alleen maar op de knop \"Nieuw lied toevoegen\" te klikken.\nadd.song.hint.search.text=Er zijn geen liederen die aan de zoekopdracht voldoen. Om een lied toe te voegen hoef je alleen maar op de knop \"Nieuw lied toevoegen\" te klikken.\nfilefilters.description.songs.mb=Easyworship Songs.MB database\ntranslate.tooltip=Lied vertalingen\nclose.button=Sluiten\nadd.translation.button=Voeg vertaling toe...\nenter.translation.name.label=Naar welke taal wil je vertalen?\ntranslate.dialog.title=Vertaal manager\nconfirm.remove.translation.title=Verwijder vertaling?\nconfirm.remove.translation.text=Wil je deze vertaling verwijderen?\ndefault.translation.label=Standaard vertaling\noverwrite.lyrics.title=Bestaande liederen overschrijven?\noverwrite.lyrics.text=We hebben liederen automatisch voor je vertaald. Wil je ze gebruiken?\\n De huidige vertaling zal overschreven worden.\nauto.translate.label=Probeer liederen automatisch te vertalen\nchoose.translations.text=Kies vertalingen\nselect.translation.label=Selecteer de vertaling die getoond moet worden\\n naast de standaard liederen:\ntranslate.heading=Vertalingen\nremote.logo.text=Logo\nremote.black.text=Zwart\nremote.clear.text=Maak leeg\nremote.next.text=Volgende dia\nremote.prev.text=Vorige dia\nremote.nextitem.text=Volgende Item\nremote.previtem.text=Vorige Item\nserver.settings.heading=Server Instellingen\nuse.remote.control.label=Gebruik Afstandsbediening\nnavigate.remote.control.label=URL Afstandsbediening\nremote.empty.lyrics=Liedteksten worden hier getoond\nremote.control.password=Wachtwoord Afstandsbediening (hoofdletter gevoelig)\nremote.logout.text=Uitloggen\nremote.login.text=Inloggen om verder te gaan\nremote.submit.text=Inloggen\nmore.font.options.label=Meer lettertype opties\nmore.fonts.label=Meer lettertypes\ntranslation.font.text=Vertaal lettertype\nshadow.text=Schaduw\nsaving.schedule=Opslaan van orde van dienst loopt...\nsmall.text.position.label=Lied en bijbel informatie positie\nbible.passage.selector.prompt=[Hoofdstuk]:[Vers]-[Vers]\ntheme.button.tooltip=Selecteer het thema voor de hele orde van dienst\ncurrently.displaying.text=Momenteel getoond\nplay=Speel af\npause=Pause\nshow.small.song.text.label=Toon korte lied informatie\nshow.small.bible.text.label=Toon korte bijbel passage informatie\nuse.bible.verses=Splits Bijbel passage dia's per aantal\nmax.items.per.slide=Max aantal van % versen per dia\nverses=versen\nwords=woorden\nedit.bible.passage.text=Wijzig Passage Thema\nnotice.colour.text=Controleer Kleur\nnotice.font.text=Controleer Lettertype\nnotice.speed.text=Controleer Snelheid\nnotice.background.colour.text=Controleer achtergrondkleur\nnotice.position.text=Controleer positie\nnotice.font.size=Controleer letter grootte\nnotice.options.heading=Notities\nexport.pdf.button=Exporteer naar PDF\npdf.button=PDF\nexport.schedule.pdf.button=Exporteer orde van dienst naar PDF\nfilefilters.description.pdf.files=PDF Bestanden\nnot.started.label=Nog niet gestart\nquelea.schedule.text=Quelea Orde van dienst\nuser.options.options=Gebruiker Opties\ntext.options.options=Tekst Opties\nstretch.video.label=Rek Video uit\nexport.schedule.songs.pdf.button=Exporteer liederen naar PDF\nexporting.label=Exporteren loopt\nuse.shadow.label=Gebruik Schaduw?\nshadow.color.label=Schaduw Kleur\nshadow.offset.label=Schaduw Offset\nshadow.radius.label=Schaduw Radius\nshadow.spread.label=Schaduw Spreiding\nhelp.menu.manual=Handmatig\nadd.timer.title=Voeg aftelklok toe\nadd.timer.tooltip=Voeg aftelklok toe\ncountdown.label=Aftelklok\nautoplay.vid.label=Automatisch afspelen van videos in live vertoning\nadvance.on.live.label=Automatische orde van dienst op de live vertoning\npreview.on.image.change.label=Voorvertoning onderdeel bij wijzigen van plaatje\nembed.media.in.schedule=Voeg media toe in orde van dienst bestand\nchange.bible.version.text=Wissel Versie\ncopying.video.please.wait.text=Moment geduld... de kopieslag van het videobestand is in volle gang...\ntranslating.text.please.wait.text=Moment geduld... - verzamel een vertaling...\ndelete.translation.text=Verwijderd de $1 vertaling?\ndelete.translation.title=Verwijder vertaling\nduration.tooltip.label=\\#\\:\\#\\# of \\#\\#m\\#\\#s\nedit.theme.text=Wijzig thema\nfilefilters.description.image.video.files=Video bestanden en Plaatjes\nfilefilters.description.usr.files=USR (SongSelect) bestanden\nfont.options.title=Lettertype Opties\nhelp.menu.wiki=Wiki\ninclude.translations.question=Vertalingen toevoegen aan het PDF bestand?\nnew.translation.title=Nieuwe vertaling\nnonbreak.tooltip=Voeg on-onderbroken regel toe\npng.files.description=PNG afbeeldingen\nsave.qr.code.text=Sla QR Code op\nslide.text=Dia\nsongselect.button=SongSelect\nsongselect.import.line1=Selecteer de SongSelect bestanden hieronder.\nswitch.to.text=Wissel naar\ntimer.text.label=aanvullende tekst\ntimer.text.prompt=Gebruik \\# voor de positie van de klok, vb. \"De dienst begint over \\#\" zal tonen \"De dienst begint over 05\\:00\"\ntimer.duration.label=Afteltijd\ntimer.file.label=Locatie achtergrondbestand\ntimer.theme.label=Thema instellingen\ntimer.theme.button=Wijzig Thema\ntranslation.choice.title=Keuze Vertaling\ntranslation.export.heading=Exporteer Vertaling\nuntitled.theme.text=Thema zonder titel\ndelete.video.confirmation=Video werkelijk verwijderen uit de database? Deze actie kan niet ongedaan worden gemaakt. \nlibrary.video.heading=Video's\nadd.videos.panel=Voeg video toe\ndelete.video.title=Verwijder video\nremove.video.text=Verwijder video\nadd.timers.panel=Voeg aftelklok toe\nconfirm.remove.timer=Weet je zeker dat je $1 wilt verwijderen uit de aftelkloklijst? Deze actie kan niet ongedaan worden gemaakt.\nedit.timer.text=Wijzig aftelklok\nepicworship.import.line1=Dit zorgt voor de import van een EpicWorship liederen (.epc) bestand.\nepicworship.button=EpicWorship\nfilefilters.description.txt.files=.txt bestanden\nkingsway.range.import.heading=Importeer een serie Kingsway liederen\nkingsway.range.import.text=Geef de serie van liederen in om te downloaden vanaf de Kingsway's website.\\nHet huidige maximum is rond de 3600.\nlibrary.timer.heading=Aftelklokken\nmediashout.import.line1=Selecteer hieronder de locatie van de MediaShout db (geexporteerd naar txt formaat)\\:\nremove.timer.text=Verwijder aftelklok\ntimer.files.description=Aftelklokken\ntimer.name.label=Naam\ntimer.save.label=Aftelklok opslaan?\nsdb.files.description=Songpro database bestanden\nsongpro.button=SongPro\nrtf.files.description=RTF bestanden\nmediashout.button=MediaShout\nsongpro.import.line1=Dit zorgt voor de import van liederen vanuit een SongPro SDB database.\nsof.import.line1=Dit zorgt voor de import van de SoF bibliotheek vanuit een RTF bestand.\nrcs.add.song=Voeg lied to aan orde van dienst\nrcs.add.bible.error=Er was een storing bij het invoegen $1 aan de orde van dienst\nrcs.song.search=Lied\nsongbeamer.button=SongBeamer\nsng.files.description=SNG (SongBeamer) bestanden\nsongbeamer.import.line1=Selecteer de locatie van de SNG bestanden die je wilt importeren:\nuse.24h.clock=Gebruik 24 uurs klok\nrcs.add.failed=Het toevoegen ging mis\nshow.video.library.panel=Toon Tab Video bibliotheek (herstart noodzakelijk)\nrcs.bible.search=Bijbel\nrcs.search=Zoek en Voeg toe\nrcs.add.success=Successvol toegevoegd\nrcs.submit=Verstuur\noverflow.song.label=Laat huidige lied overlopen in volgende lied\ninvalid.search=Foute zoekactie\nchorus.tooltip=Toevoegen refrein titel\nclear.temp=Nee, tijdelijke bestanden verwijderen\nconvert.mp3=Converteer opnames automatisch naar MP3 bestanden (VLC benodigd)\nfound.temp.title=Tijdelijke opname bestanden gevonden\nfount.temp.message=Er zijn tijdelijke opname bestanden gevonden. Wil je deze bestanden bewaren voor het opschonen van de bestandslocatie?\nmax.lines.per.slide=Regels per dia (ongeveer)\nno.verse.message=We konden geen van de opgegeven versen vinden en probeerden verder te gaan zonder deze versen.\nno.verse.title=Geen versie gevonden\npause.record.tooltip=Pauzeren Opname\nrecord.audio.tooltip=Audio Opname\nrecording.no.devices.message=Sorry, er is geen geschikt opname apparaat gevonden.\\nControleer dat het opname apparaat is gekoppeld en actief staat.\nrecording.no.devices.title=Geen opname apparaat gevonden\nrecordings.path=Bestandslocatie voor opnames\nrecording.warning.message=Er moet een bestandslocatie ingesteld worden voor de opnames in het opties scherm, voordat je kunt starten met opnames maken.\nrecording.warning.title=Wijs eerst een bestandslocatie voor opnames aan\nsave.recording.before.exit.message=Wil je de opname opslaan voor afsluiten?\nsave.recording.before.exit.title=Niet opgeslagen opname\nsave.temp=Ja, bestand opslaan voor verwijdering\nsplit.bible.verses=Alleen complete versen op de dia's\nlibrary.copy.to.schedule.text=Kopieer naar orde van dienst\nvideopsalm.import.line1=Dit zorgt voor de import van de VideoPsalm bibliotheek vanuit een JSON bestand.\nmissionpraise.import.line1=Dit zorgt voor de import van liederen vanuit Mission Praise RTF bestanden.\nfilefilters.description.pmsong.files=Presentatie Manager Liederen\nfilefilters.description.vs.files=VideoPsalm databases\nfilefilters.description.songs.missionpraise=Mission Praise RTF bestanden\npm.import.line1=Select de Presentatie Manager liederen voor import.\nvideopsalm.button=VideoPsalm\npm.button=Presentatie Manager\npresentation.options.heading=Presentaties\nrecordings.options.heading=Opnames\ncopy.song.db.default=Kopieer lied naar orde van dienst (als standaard waarde)\nmp.button=Mission Praise\npco.button=Planning Center Online\npco.login.import.heading=Planning Center Online Login\npco.loginerror.title=Login fout\npco.loginerror.warning=Niet gelukt om in te loggen, controleer email en wachtwoord en probeer het opnieuw\npco.import.heading=Import van Planning Center Online\npassword.text=Wachtwoord\nemailaddress.text=Email\nlogin.text=Login\nfreeworship.button=Freeworship\nimport.all.button=Importeer Alles\nimport.selection.button=Importeer een Selectie\nrefresh.button=Ververs\nfreeworship.import.line1=Dit zorgt voor de import van FreeWorship liederen vanuit XML bestanden.\nhelp.menu.feedback=Terugkoppeling\nadd.multimedia.tooltip=Voeg Multimedia toe\nfilefilters.description.multimedia.files=Multimedia bestanden\nthumbnail.size.label=Miniatuur formaat\ndownload.path=Download pad\nadd.pdf.tooltip=Voeg PDF toe\nimportexport.options.heading=Importeer/Exporteer\npreview.failed=Voorbeeld mislukt\nset.loop.manually.title=PowerPoint niet gevonden\nset.loop.manually.message=De presentatie is afgesloten. Wanneer je de automatisch afspeel functie binnen Quelea's met PowerPoint Viewer wilt gebruiken, zorg dan dat de afspeel functie ingesteld wordt tijdens het maken van de presentatie.\npresentation.changed.message=Je zult Quelea moeten herstarten, om de nieuwe Presentatie Instellingen te kunnen gebruiken.\npresentation.changed.label=Presentatie Instellingen zijn gewijzigd.\npresentation.not.started.label=PowerPoint werd niet gestart.\npresentation.not.started.message=Helaas, de presentatie kon niet gestart worden met PowerPoint. Is het bestand misschien corrupt?\npp.already.running.label=PowerPoint draait al\npp.already.running.message=Een andere instantie van PowerPoint is gevonden. Sluit alle instanties van PowerPoint af, voordat je de presentatie in Quelea start. Ter voorkoming van data verlies.\npp.path.label=Pad naar de PowerPoint applicatie\nuse.pp.label=Gebruik PowerPoint voor presentaties\nclose.all.presentations.label=Sluit alle open presentaties\nclose.all.presentations.message=Sluit alle open PowerPoint vensters voordat je op de OK-knop klikt. Anders gebeurt het afsluiten automatisch met het risico dat het signaal naar het verkeerde PowerPoint venster gestuurd wordt.\nlive.text.message=Elke tekst hieronder geschreven is zichtbaar voor de gebruikers van \"Mobile Lyrics\" wanneer het hoofdscherm leeg is.\\n\\nGebruik een lege regel om te starten op een nieuwe dia. Gebruik van de button \"opschonen\" is ook mogelijk (of CTRL + Enter) om beide schermen leeg te maken. Meer dan 200 karakters op een dia wordt automatisch ingekort voor de gebruiker.\nlive.text.title=Live Tekst\nexit.live.text=Sluit Live Tekst af\nclear.live.text=Opschonen\ndefault.translation=Standaard\nselect.language=Selecteer taal:\nsend.live.text=Live Tekst\nconverting.to.mp3=Converteer opname naar MP3\nverse.tooltip=Voeg vers titel toe\nbridge.tooltip=Voeg brug titel toe\nprechorus.tooltip=Voeg voor-spel titel toe\ntag.tooltip=Voeg titel label toe\nadd.website=Voeg website toe\nfocus.switcher.title=Quelea Focus Schakelaar\nfocus.switcher.message=Wijzig de scherm focus hier indien nodig tijdens de presentatie.\nfocus.pp=Schakel focus naar PowerPoint\nfocus.quelea=Schakel focus naar Quelea\nwebsite.dialog.title=Web pagina URL\nwebsite.dialog.header=Voer de web pagina URL in\nwebsite.dialog.content=Voer de web pagina die je wilt tonen in:\npaste.label=Plakken\nundo.label=Ongedaan maken\nredo.label=Herstellen\nsmi.import.line1=Selecteer de Screen Monkey liederen voor importeren.\nsm.button=Screen Monkey\nsundayplus.import.line2=(De importtool verwacht de PTF bestanden op het hoofdniveau van het zip bestand.)\nhelp.menu.error.text=Sorry, we konden de pagina niet laden. Je kunt zelf bladeren naar: $1\nfilefilters.description.songs.worshiphim=Worship Him MDB bestanden\nworshiphim.import.line1=Selecteer de locatie van de Worship Him database (in mdb formaat) hieronder:\nworshiphim.button=Worship Him\nshow.extra.live.panel.toolbar.options.label=Toon extra livepaneel werkbalk opties\nelevanto.button=Elevanto\nschedule.items.skipped.text=Orde van dienst items, met ontbrekende media, worden niet getoond.\ndelete.notice.button=Delete\ntheme.copy.label=Kopieer instellingen van globaal thema\nsong.default.theme.label=Lied standaard\nelevanto.import.heading=Elevanto\nsaved.notices=Opgeslagen Notities\ntheme.select.label=Selecteer thema\nbible.default.theme.label=Bijbel standaard\nelevanto.loginsuccess.message=Je kunt dit scherm sluiten en teruggaan naar Quelea\nschedule.items.skipped.header=Orde van dienst items overgeslagen\nallow.item.theme.override.global=Voorrang orde van dienst item thema boven globaal thema\ncopy=Kopieer\nsave.add.notice.button=Opslaan en tonen\nvideo.loop.tooltip=Herhaal video aan / uit\nelevanto.loginerror.warning=Inloggen in Elevanto is niet gelukt\ndelete.bible.confirmation=Wil je deze bijbel verwijderen: $1?\nbible.delete.error.heading=Error\nbible.delete.error.text=Sorry, er was een probleem met het verwijderen van de bijbel van de bestandslocatie.\ndelete.bible.label=Verwijder deze bijbel\ndb.song.preview.label.databasepreview=In database paneel\ndb.song.preview.label=Database voorvertoning lied\ndb.song.preview.label.control=Geen\ndb.song.preview.label.previewpane=In voorvertoning paneel\ndefault.theme.label=Standaard\ntheme.changed=Thema Gewijzigd\ninterface.theme.label=Applicatie thema\ntheme.changed.message=Je moet Qeulea herstarten zodat de wijziging van het thema effect heeft.\ndark.theme.label=Donker\nchosen.sequence.label=Gekozen volgorde\ngeneral.user.options=Algemen gebruiker opties\nslide.transition.label=Gebruik wisselingen tussen dia's\nchosen.sequence.explanation=Sleep delen van links naar rechts of dubbel klik om een lied volgorde te maken. De liedteksten zullen later in deze volgorde getoond worden, ongeacht in welke volgorde het lied is, de versen zijn opgeslagen in de database.\nsmall.song.position.label=Lied informatie positie\navailable.sections.label=Beschikbare secties in dit lied\nmove.up.sequence.tooltip=Verplaats sectie naar boven in de volgorde\nremove.sequence.tooltip=Verwijder sectie uit set volgorde\nsequence.tooltip=Lied volgorde dialoog\nmove.down.sequence.tooltip=Verplaats sectie naar beneden in de volgorde\nsmall.bible.text.options=Kleine Bijbeltekst Opties\nfilefilters.description.sunday.plus=Sunday plus liederen\nsmall.bible.size.label=Bijbel informatie formaat\nfilefilters.description.xml.openlyrics=XML openlyrics bestanden\npassword.empty.message=Het server wachtwoord mag niet leeg zijn. Het standaard wachtwoord \"quelea\" wordt gebruikt tenzij er iets getikt wordt in het wachtwoord veld.\nfilefilters.description.csv.files=.csv bestanden\nsequence.selection.dialog.title=Volgorde selectie\ngeneral.interface.options=Algemene Interface Opties\ninterface.options.options=Interface Opties\npp.path=Locatie van PowerPoint programma\nfilefilters.description.propresenter=Propresenter Liederen\nmobile.remote.heading=Afstandsbediening mobiel\nschedule.options=Orde van dienst opties\nsmall.song.size.label=Liedinformatie-formaat\npropresenter.import.line1=Importeer liederen uit een Propresenter lied bestand.\npropresenter.button=ProPresenter\nsong.sequence=Lied volgorde:\nsmall.bible.position.label=Positie Bijbel-informatie\nsong.list=Lied lijst\ntheme.options=Thema Opties\nsmall.song.text.options=Kleine liedtekst opties\npassword.empty.label=Leeg wachtwoord gevonden\nremote.action.slide=Verplaatst naar volgende/vorige dia\nremote.dpad.navigation.description=Gebruik de dpad knoppen (up/down) om te navigeren naar de volgende of vorige dia/deel. Wanneer een bluethooth toetsenbord op pedaal (zoals AirTurn) gebruikt kan worden, activeer deze.\nremote.double.press.title=Dubbelklik actie\nremote.signal.failed=Er kon geen signaal naar de server verzonden worden\nremote.navigation.settings.title=Navigatie instellingen\nremote.failed.finding.server=Kon de Quelea Mobile Remote server niet vinden. Zorg dat Quelea gestart is en dat je de juiste URL gebruikt.\nremote.select.book=Kies boek\nremote.swipe.navigation.title=Wissel navigatie\nremote.about.text.responsibility=Een super belevenis kunnen we niet garanderen. We nemen geen verantwoordelijkheid voor eventuele problemen bij een operationele omgeving.\nremote.about.title=Over deze app\nremote.needs.newer.version=Voor deze functie dient een Quelea $1 of hoger te draaien\nremote.select.chapter.verses=Kies hoofdstuk en vers(en)\nbible.version=Bijbel versie\nremote.about.text.support=Wees zo vrij om een email te sturen (arvid @ quelea.org) als je vragen hebt of problemen ervaart. Zorg wel dat Quelea gestart is (met beide servers actief). Ook moeten beide apparaten gekoppeld zijn op hetzelfde netwerk. Zorg ook voor de juiste URL.\nremote.add.go.live=Voeg toe en ga live\nclick.to.add=Klik om toe te voegen\nremote.send.notice.tooltip=Voor een notitie toe\nremote.privacy.policy=Privacybeleid\nremote.enable.dpad.navigation=Activeer dpad navigatie\nremote.action.item=Verplaats item naar volgende/vorige\nremote.ipv6.not.supported=Helaas, gebruik van IPv6 adressen niet mogelijk. Je hebt een IPv4 adres nodig om deze app te kunnen gebruiken. Als je niet weet hoe je het IP adres vind, zoek op internet met de zoekwoorden ‘find local ip’ en de naam van het besturingssystem. Geef het IPv4 adres of de URL in, hieronder.\nremote.long.press.title=Lange klik actie\nremote.start.verse=Start vers\nremote.donations.link=Donateer\nremote.port.needed=De URL moet een poortnummer bevatten, aan het einde (voorbeeld ':1112'). Probeer opnieuw.\nremote.use.autoconnect=Vind the server URL automatisch\nremote.select.theme=Select thema\nremote.long.press.description=Kies een van de acties hierboven die je wilt hebben als je een knop lang in gedrukt houd. Let wel dit werkt niet via de AirTurn pedalen.\nremote.connected=Gekoppeld!\nremote.on.end.title=Item eind/begin actie\nremote.enable.volume.navigation=Activeer volume navigatie\nremote.on.end.description=Kies wat je van de app verwacht als je navigeert met een van de beide hierboven genoemde opties. Zodra je het begin of het einde van een item bent.\nremote.chapter=Hoofdstuk\nremote.disable.record=Zet de opname knop uit\nremote.action.logo=Verberg tekst en toon logo\nremote.action.black=Verberg tekst met zwart scherm\nremote.action.nothing=Doe niks\nremote.about.text.app=Deze app is een ‘non-pofit’ app, gemaakt om samen te werken met de open source kerk software Quelea (http://quelea.org). Het is dan geen beta app meer, het is zeker nog in ontwikkeling. De werking kan beter, opties zijn niet uitputtend. Het is een aanvullend project, vooral bedoeld voor eigen gebruik. Toch graag beschikbaar gesteld, voor een ieder die het ook kan gebruiken.\nremote.report.issue=Geef een probleem door\nremote.auto.progress.item=Verder naar volgende/vorige item\nremote.theme.was.set=$1 is gezet als globaal thema\nremote.swipe.navigation.description=Kies wat er gebeurt als je naar links of rechts veegt op het scherm\nremote.action.clear=Verberg tekst via de opschoonknop\nremote.search.server=Zoek server\nremote.wrong.content=De verkeerde pagina informatie was gevonden. Probeer opnieuw.\nremote.information.title=Informatie\nremote.choose.action=Kies actie voor $1\nremote.double.press.description=Kies wat je van de app verwacht als je twee knoppen tegelijkertijd indrukt. Bij het navigeren. Kies een van de twee opties.\nremote.end.verse=Einde vers\nremote.control.app.name=Quelea Mobile Remote\nremote.no.wifi=Je bent niet verbonden met de wifi. Stel de URL handmatig in of verbind met de wifi.\nremote.search.tooltip=Voeg een lied of bijbelgedeelte toe\nremote.about.translating=Over vertalen van de app\nremote.source.code=Broncode\nremote.volume.navigation.description=Gebruik de volumeknoppen van de telefoon om te navigeren. Naar volgende/vorige dia of item.\nclient.id=Client ID\nlink.preview.and.live.dividers.label=Koppel scheidingslijnen voorvertonings- en livepaneel\nstage.show.clock=Toon Klok\nsong.sequence.tip=Tip: Je kunt een sectie meerdere keren toevoegen (bv refrein)!\nenter.valid.port=Gelieve een nummer tussen 1029 en 49151 in te toetsen\nopen.sequence.editor.tooltip=Toon volgorde opsteller\ntranslation.text.options=Vertaal tekst opties\ngeneral.text.options=Algemene tekst opties\nuse.default.translation.label=Gebruik de standaard vertaling\nbible.load.error.title=Fout bij laden bijbel\ntranslation.name.label=Naam vertaling\nbible.load.error.question=Het bijbelbestand kan niet worden ingeladen. Mogelijk is het bestand kapot of snapt Quelea het formaat niet.\nshow.small.song.on.slides.label=Toon op dia's\nbible.book.titus=Titus\nbible.book.1timothy=1 Timoteüs\nbible.book.mark=Marcus\nbible.book.1samuel=1 Samuel\nbible.book.numbers=Numeri\nbible.book.revelation=Openbaring\npco.days.previous.setting=Afgelopen dagen om te importeren\ndialog.image.group.title=Hernoem afbeeldingengroep\nbible.book.1thessalonians=1 Tessalonicenzen\nbible.book.amos=Amos\nbible.book.hebrews=Hebreeën\nbible.book.songofsolomon=Hooglied\nbible.book.2thessalonians=2 Tessalonicenzen\nbible.book.micah=Micha\nbible.book.lamentations=Klaagliederen\nall=Alle\nbible.book.judges=Rechters\nbible.book.job=Job\nbible.book.philippians=Filippenzen\nbible.book.ezekiel=Ezechiël\nbible.book.james=Jakobus\nbible.book.1chronicles=1 Kronieken\nbible.book.esther=Ester\nbible.book.malachi=Maleachi\nbible.book.ruth=Ruth\nbible.book.galatians=Galaten\nbible.book.jonah=Jona\nbible.book.2samuel=2 Samuel\nbible.book.leviticus=Leviticus\nbible.book.jeremiah=Jeremia\nlast=Laatste\nbible.book.2corinthians=2 Korintiërs\nbible.book.2peter=2 Petrus\nbible.book.psalms=Psalmen\nbible.book.deuteronomy=Deuteronomium\nbible.book.romans=Romeinen\ndialog.image.group.header=Afbeeldingengroep\nbible.book.ecclesiastes=Prediker\ngstreamer.warning.message=Quelea kan GStreamer niet vinden. Zonder GStreamer kan Quelea geen video's, audio, of liederen tonen met video achtergrond. Wil je het nu downloaden? Na het installeren van GStreamer moet Quelea opnieuw opgestart worden voordat de veranderingen effect hebben.\nbible.book.ezra=Ezra\nbible.book.daniel=Daniël\nbible.book.proverbs=Spreuken\nconfirm.remove.bulk.question=Weet je zeker dat je $1 liederen verwijderen van de database? Deze actie kan niet ongedaan worden gemaakt.\nbible.book.joshua=Jozua\nbible.book.2john=2 Johannes\nbible.book.zephaniah=Sefanja\nbible.book.acts=Handelingen\nbible.book.nehemiah=Nehemia\nbible.book.2chronicles=2 Kronieken\nblack.stage.view=Zwart Podium scherm tegelijk met Projectie Scherm\nbible.book.exodus=Exodus\nbible.book.1john=1 Johannes\ngstreamer.warning.title=GStreamer niet gevonden\nbible.book.genesis=Genesis\nbible.book.zechariah=Zechariah\nbible.book.jude=Judas\nbible.book.haggai=Haggai\nbible.book.isaiah=Jesaja\nbible.book.3john=3 Johannes\nbible.book.1kings=1 Koningen\nbible.book.ephesians=Efeziërs\nbible.book.philemon=Filemon\ndownload.gstreamer=Download GStreamer\nbible.book.joel=Joël\nbible.book.luke=Lucas\nccli.licence=CCLI Licentie\ncontinue.without.gstreamer=Doorgaan zonder GStreamer\nbible.book.colossians=Kolossenzen\nbible.book.nahum=Nahum\nbible.book.1corinthians=1 Korintiërs\nbible.book.john=Johannes\nbible.book.habakkuk=Habakuk\nbible.book.matthew=Matteüs\nbible.book.hosea=Hosea\nbible.book.1peter=1 Petrus\nfirst=Eerste\nbible.book.2timothy=2 Timoteüs\nbible.book.2kings=2 Koningen\nbible.book.obadiah=Obadja\n"
  },
  {
    "path": "Quelea/languages/no.lang",
    "content": "﻿\nLANGUAGENAME=Norsk (NO)\nLOCALE=no\ndatabase.heading=Database\nimport.heading=Importer\nqsp.button=Quelea-sangbok\nss.button=Survivor Songbook\nprojector.heading=Projektor\ncontrols.heading=Kontroller\non.button=På\noff.button=Av\nswitch.input.button=Bytt inngang\ngeneral.options.heading=Generelt\ndisplay.options.heading=Skjermer\nbible.options.heading=Bibler\ncheck.for.update.label=Søk etter oppdateringer ved oppstart\n1.monitor.warn.label=Varsle om kun en skjerm er tilknyttet\ncapitalise.start.line.label=Stor bokstav på ny linje\none.line.mode.label=Forhåndsvis en linje per sangdel\ndisplay.song.info.label=Vis sanginformasjon\ntext.border.thickness.label=Tekstrammens tykkelse\nmax.chars.line.label=Maksimalt antall tegn per linje\nadvanced.label=Avansert\nok.button=OK\noutput.text=Utgang\ncontrol.screen.label=Dataskjerm\nprojector.screen.label=Projektorskjerm\nstage.screen.label=Sceneskjerm\ncustom.position.text=Tilpasset posisjon\ndefault.bible.label=Standardbibel\nmax.verses.label=Maksimalt antall vers som vises samtidig\nadd.bible.label=Legg til bibel...\nnone.text=Ingen\nnew.schedule.button=Ny Gudstjenesteplan\nopen.schedule.button=Åpne Gudstjenesteplan\nsave.schedule.button=Lagre Gudstjenesteplan\nsave.as.schedule.button=Lagre Gudstjenesteplan som...\nprint.schedule.button=Skriv ut Gudstjenesteplan\noptions.title=Alternativer\noptions.button=Alternativer\nexit.button=Avslutt\nnew.schedule.text=Ny Gudstjenesteplan\ncreate.new.schedule.text=Lage ny Gudstjenesteplan\nopen.schedule.text=Åpne Gudstjenesteplan\nopen.existing.schedule.text=Åpne en lagret Gudstjenesteplan\nsave.schedule.text=Lagre Gudstjenesteplan\nsave.schedule.disk.text=Lagre gudstjenesteplanen på datamaskinen\nsave.as.schedule.text=Lagre Gudstjenesteplan som\nsave.as.schedule.disk.text=Lagre Gudstjenesteplan som en annen fil\nprint.schedule.text=Skriv ut Gudstjenesteplan\nprint.current.schedule.text=Skriv ut den aktuelle gudstjenesteplanen\noptions.text=Alternativer\ndisplay.options.text=Vis alternativer\nexit.text=Avslutt Quelea\nquit.quelea.text=Skru av Quelea\nlibrary.image.heading=Bilder\nlibrary.songs.heading=Sanger\nlibrary.bible.heading=Bibler\nbible.heading=Bibler\nlibrary.song.search=Søk\nclear.search.box=Tøm søkeFeilt\nadd.song.text=Legg til sang i databasen\nremove.song.text=Ta bort sang fra databasen\nlibrary.add.to.schedule.text=Legg til i gudstjenesteplanen\nlibrary.edit.song.text=Redigere sang\nlibrary.remove.song.text=Ta bort sang\nlibrary.print.song.text=Skriv ut sang\nadd.to.schedule.text=Legg til i gudstjenesteplanen\norder.service.heading=Gudstjenesteplan\nmove.down.schedule.tooltip=Flytt nedover i gudstjenesteplanen\nmove.up.schedule.tooltip=Flytt oppover i gudstjenesteplanen\nremove.song.schedule.tooltip=Ta bort fra gudstjenesteplanen\nadjust.theme.tooltip=Tilpass tema\nedit.song.text=Rediger sang\nnew.theme.text=Nytt tema...\ntheme.select.text=Velg tema:\ndefault.theme.name=Standard\ndefault.theme.text=Standardtema\nremove.theme.tooltip=Ta bort tema\nedit.theme.tooltip=Rediger tema\nedit.theme.heading=Rediger tema\npreview.heading=Forhåndsvis\nlive.heading=Live\ngo.live.text=Vis live\nblack.screen.tooltip=Svart skjerm\nclear.text.tooltip=Blank skjerm\nhide.display.output.tooltip=Stans livevisning\nschedule.heading=Gudstjenesteplan\nadd.song.button=Legg til sang\nedit.song.button=Rediger sang\nremove.item.button=Ta bort\nadd.multimedia.heading=Legg til multimedia\nadd.presentation.button=Legg til presentasjon\nadd.video.button=Legg til video\nadd.youtube.button=Legg til YouTube-video\nadd.live.video.button=Legg til live-video\nadd.dvd.button=Legg til DVD\nadd.audio.button=Legg til lyd\nadd.audio.tooltip=Legg til lyd\nshare.heading=Del\nemail.button=Send Gudstjenesteplan med e-post\nmanage.notices.button=Administrer varsler...\nnotices.heading=Varsel\nnew.notice.text=Nytt varsel\nedit.notice.text=Rediger varsel\nremove.notice.text=Ta bort varsel\ndone.text=Ferdig\nnew.notice.heading=Nytt varsel\nnotice.text=Varsel\nnotice.times.text=Tidspunkt for visning\nnotice.infinite.question=Uendelig?\nadd.notice.button=Legg til varsel\nedit.notice.button=Rediger varsel\ncancel.text=Avbryt\nnew.song.button=Ny sang\ndelete.song.button=Ta bort sang\nsongs.heading=Sanger\ntags.button=Administrer tagger...\nsource.button=The Source\neasyslides.button=EasySlides\nplainText.button=Vanlig tekst\nkingsway.button=Kingsway Online\nsof.button=Songs of Fellowship\nexport.heading=Eksporter\nfilter.tag=Filtrer tagger\ntags.colon.label=Tagger:\nimport.button=Importer\nclick.select.file.text=Trykk for å velge fil\ncheck.duplicates.text=Søk etter duplikater\nedit.song.title=Rediger sang\nbasic.information.heading=Grunnleggende informasjon\ndetailed.info.heading=Detaljert informasjon\ntheme.heading=Tema\ntitle.label=Tittel\nauthor.label=Forfatter\nrun.spellcheck.label=Stavekontroll\nfix.apos.label=Ta bort overflødige apostrofer\ntrim.lines.tooltip=Ta bort overflødige mellomrom\ntranspose.tooltip=Transponer...\ncancel.button=Avbryt\nccli.number.label=CCLI-nummer\ncopyright.label=Copyright\nyear.label=År\npublisher.label=Forlegger\ntags.label=Tagger\ntype.tag.name.here.text=<Skriv tagger her>\nkey.label=Toneart\ncapo.label=Capo\nnotes.label=Noter\nfont.theme.label=Font\nchoose.color.text=Velg farge...\nbackground.theme.label=Temabakgrunn\ncolor.theme.label=Farge\nimage.theme.label=Bilde\nselect.color.title=Velg farge\nselect.color.button=Velg farge\nnew.song.title=Ny sang\ntype.lyrics.here.text=Skriv teksten her\nplaintext.import.line1=Dette vil importere sanger fra en vanlig tekstfil.\nkingsway.import.line1=Dette vil importere kingsway song-biblioteket fra internet.\nkingsway.import.line2=Dette kommer til å ta lang tid (muligens timer!), så ha tålmodighet og avslutt ikke Quelea!\neasyslides.import.line1=Dette vil importere sanger fra en XML-fil fra EasySlides.\nqsp.import.line1=Velg sangfilen fra Quelea nedenfor.\nsource.import.line1=Velg mappen på CDen.\nsurvivor.import.line1=Velg PDF-filen fra Survivor Songbook nedenfor.\nsurvivor.import.line2=Dette må være filen acetates.pdf, ikke gitarakkordene eller notene.\nemail.error.title=E-postfeil\nemail.error.text=En feil forekom ved åpning av din e-postklient. Se til at du har en e-postklient installert som klarer å håndtere eml-filer, hvis ikke må du sende denne mailen manuelt.\nemail.text=Hei! Den vedlagte filen du har fått er en Gudstjenesteplan fra Quelea. Åpne den bare med Quelea så skal alla filer vises som de skal.\nselect.image.button=Velg bilde\nimage.files.description=Bildefiler\ntools.label=Verktøy\nselect.songs.title=Velg sanger\ncheck.uncheck.all.text=Marker/avmarker alla\ndelete.theme.confirm.title=Bekreft sletting\ndelete.theme.question=Vil du virkelig slette dette tema?\ntoo.many.verses.error=Dessverre, du kan ikke vise så mange vers... vær venlig forsøk med ett lavere antall.\none.monitor.warning=Det virker som at du bare har en skjerm koblet til. Det er ikke et problem dersom du bare skal bruke Quelea for å forberede gudstjenesteplaner men om du vil bruke programmet live behøver Quelea to skjermer for at allt skal fungere.\none.monitor.title=Bare en skjerm\nno.dvd.heading=Ingen DVD funnet\nno.dvd.error=Vær vennlig sett i en gyldig DVD-plate.\nadding.presentation.status=Importerer presentasjon...\nadding.presentation.error.message=En feil forekom ved importeringen av presentasjonen. Filen kan være korrupt?\nadding.presentation.error.title=Feil ved importering av presentasjon\nimporting.status=Importerer...\nname.label=Navn\nsimilar.colors.text=Du har valgt lignende farger for tekst og bakgrunn, som vil gjøre det vanskelig for forsamlingen å lese. Jeg vil råde deg til å velge andre farger!\nwarning.label=Advarsel\nfile.menu=Arkiv\ntools.menu=Verktøy\nschedule.menu=Gudstjenesteplan\ndatabase.menu=Database\nprojector.menu=Projektor\nnew.theme.title=Nytt tema\nadd.theme.label=Legg til tema\ntheme.name.label=Navn på tema\nhelp.menu=Hjelp\nhelp.menu.website=Hjemmeside\nhelp.menu.discussion=Support / Diskusjon (still spørsmål her) - på engelsk\nhelp.menu.download=Last ned\nhelp.menu.update=Søk etter oppdateringer\nhelp.menu.about=Om...\nhelp.menu.error.title=Feil\nhelp.about.title=Om\nhelp.about.version=Versjon\nhelp.about.close=Avslutt\nhelp.about.line1=Quelea er lisensiert under GPL (Versjon 3.)\nhelp.about.line2=Programmet er, og vil alltid være, gratis og open source.\nnew.schedule.tooltip=Ny Gudstjenesteplan\nopen.schedule.tooltip=Åpne Gudstjenesteplan\nsave.schedule.tooltip=Lagre Gudstjenesteplan\nprint.schedule.tooltip=Skriv ut Gudstjenesteplan\nnew.song.tooltip=Ny sang\nadd.presentation.tooltip=Legg til presentasjon\nadd.dvd.tooltip=Legg til DVD\nadd.video.tooltip=Legg til video\nmanage.tags.tooltip=Administrer tagger\nmanage.notices.tooltip=Administrer varsel\nalready.running.error=Det virker som at Quelea allerede kjører. Se til at du avslutter Quelea helt før du starter det igjen.\nalready.running.title=Kjører allerede\nerror.schedule.message=En feil forekom når filen skulle åpnes. Den kan være korrupt eller så er den ikke laget i Quelea.\nerror.schedule.title=Feil ved åpning av Gudstjenesteplan\nprint.chords.question=Skriv og ut akkorden ved utskrift av denne sangen?\nprinting.options.text=Skriv ut sang\nspace.key=mellomrom\nupdating.db=Oppdaterer database\nerror.updating.song.text=En feil forekom når sangen ble oppdatert i databasen, den kan vara korrupt.\nerror.text=Feil\nquick.shortcut.description=Escape for å avbryte, shift+enter for å lagre\nsave.before.exit.text=Denne Gudstjenesteplan har blitt endret. Lagre før avslutning?\nsave.before.exit.title=Ulagret Gudstjenesteplan\nno.chords.message=Denne sangen har ingen akkorder å transponere.\nno.chords.title=Ingen akkorder\nerror.checking.updates.title=Lyktes ikke å søke etter oppdateringer\nerror.checking.updates.text=Dessverre, det gikk ikke å søke etter oppdateringer. Sjekk at du er koblet til internett og prøv igen.\nnewer.version.available=Det finnes en nyere versjon av Quelea tilgjengelig\nno.newer.version.available=Du kjører den nyeste versjonen av Quelea\nvisit.webpage.now=Besøk hjemmesiden og last den ned nå?\ndownload.manual.update=Du kan laste den ned her\nnewer.version.available.title=Oppdatering tilgjengelig\nno.newer.version.available.title=Allerede oppdatert!\ncheck.kingsway.start=Du har allerede importert noen sanger fra Kingsway-biblioteket. Vil du begynne å importere fra der du avsluttet sist?\ncheck.kingsway.start.title=Allerede importerte sanger\nimport.no.songs.title=Ingen sanger funnet\nimport.no.songs.text=Kunne ikke finne noen sanger å importere.\nstage.options.heading=Sceneinnstillinger\nstage.show.chords=Vis akkorder?\nstage.line.alignment=Tekstjustering\nstage.font.selection=Font\nstage.background.colour=Bakgrunnsfarge\nstage.lyrics.colour=Tekstfarge\nstage.chord.colour=Akkordfarge\nleft=Venstre\ncentre=Midt\nright=Høyre\nconfirm.label=Er du sikker?\nschedule.clear.text=Gudstjenesteplanen har blitt endret. Fortsette uten å lagre?\npart=Del\nhelp.menu.facebook=Facebookside\nvideo.error=Kunne ikke starte videobiblioteket - video vil ikke fungere. Spør i diskusjonsforumet (se under hjelpmenyen) om hjelp til å løse dette.\nvideo.error.title=Videofeil\ntext.shadow.label=Vis tekstskygge\nadding.images=Legger til bilder...\nsetup.oo.failed.text=Mislyktes å ta i bruk OpenOffice for presentasjoner. Se til å du har installert OpenOffice og at du har angitt rett mappesti.\nsetup.oo.failed.title=OpenOffice kunne ikke startes\nuse.oo.label=Bruk OpenOffice for presentasjoner\noo.path=Mappesti til OpenOffice\nbrowse=Bla gjennom...\nbuilding.bible.index=Laster bibler\nbible.search.title=Bibelsøk\ninitial.search.text=<Skriv her for å søke>\nview.bible.button=Vis Bibler...\nsearch.bible.button=Søk i Bibler...\nall.text=Alle\nbible.browser.title=Bla gjennom bibel\nopen.in.browser=Åpne for å bla gjennom bibel...\nkingsway.button.all=Alle sanger\nkingsway.button.one=En sang\nsong.id.selector=Velg sang-ID\nbible.copy.error.text=Dessverre, en feil forekom ved kopiering av valgt bibel.\nbible.copy.error.heading=Feil\nselect.key.label=Velg ny toneart:\ntranspose.label=Transponer\nalready.exists.overwrite.label=finnes allerede. Erstatt?\noverwrite.text=Erstatt\ncant.save.schedule.title=Feil ved Lagring av Gudstjenesteplan\ncant.save.schedule.text=Dessverre, det gikk ikke å lagre gudstjenesteplanen - en feil forekom.\nerror.removing.song.db=En feil forekom ved sletting av sang fra databasen.\nconfirm.remove.text=Bekreft sletting\nconfirm.remove.question=Vil du virkelig slette $1 fra databasen? Sletting kan ikke angres.\nquick.edit.text=Hurtigredigering\nlibrary.preview.song.text=Forhåndsvis sang\nvideo.error.unsupported=Dessverre, videofilen du har valgt støttes ikke.\nvideo.error.general=Dessverre, en feil inntraff med filen du valgte.\nvideo.theme.label=Video\nselect.video.button=Velg video\nrefresh.images.panel=Oppdater bilder\nadd.images.panel=Legg til bilder\nselect.folder.images.panel=Velg mappe...\ntext.position.label=Tekstposisjon\nimage.folder=Bildemappe:\nquick.insert.text=Legg til hurtig\nconfirm.overwrite.title=Filen finnes allerede!\nconfirm.overwrite.text=Denne filen finnes allerede. Vil du erstatte den eller fortsette uten å kopiere?\nfile.rename.button=Bytt navn\nfile.replace.button=Bytt plass\nfile.continue.button=Fortsett\nfile.rename.dialog.title=Bytt navn\nfile.rename.dialog.text=Skriv inn det nye filnavnet:\ninterface.language.label=Språk:\nlanguage.changed=Bytt språk\nlanguage.changed.message=Du må starte Quelea på nytt for at språkbyttet skal tre i kraft.\ndebug.location=Debugloggens mappesti\ntop.text.position=Høyst opp\nmiddle.text.position=Midten\nbottom.text.position=Lengst ned\nshadow.color=Skyggefarge\nshadow.x=Skyggens X-forskyvning\nshadow.y=Skyggens Y-forskyvning\nyes.text=Ja\nno.text=Nei\nloading.text=Laster\nselect.imported.songs.line1=Følgende sanger har blitt importert.\nselect.imported.songs.line2=Velg hvilke du vil legge til i databasen og trykk deretter på \"Legg til\".\nselect.imported.songs.line3=sangene som Quelea tror er duplikater er markert.\nadd.text=Legg til\nadd.to.database.question=Legg til i databasen?\nselect.export.songs.line1=Følgende sanger finnes i databasen.\nselect.export.songs.line2=Velg hvilke du vil legge til i sangboken og trykk deretter på \"Legg til\".\nadd.to.songpack.question=Legg til i sangbok?\nprojection.window.title=Projeksjonsvindu\nclear.live.on.remove.schedule=Ta også bort fra live-visning når noe fjernes fra gudstjenesteplanen\nspelling.complete.text=Stavekontrollen er fullført.\ncomplete.title=Fullført\nspelling.check.title=Stavekontroll\ncorrect.text=Rett\nignore.text=Ignorer\nspelling.errors.in.doc.label=Det finnes stavefeil i dokumentet. Trykk \"F7\" for å åpne vindu for stavekontroll.\ndelete.image.title=Slett bilde\ndictionary.language.text=Rettskrivningsspråk\nremove.image.text=Ta bort bilde\ndelete.image.confirmation=Vil du virkelig ta bort bildet fra biblioteket? Denne slettingen kan ikke angres.\nnotice.expired.text=Varselet du redigerer har utløpt. Vil du legge det til igjen?\nnotice.expired.title=Varsel utløpt\nconfirm.entry.exit.text=Vil du lagre endringene du har gjort på denne sangen?\nconfirm.entry.exit.title=Lagre sang?\nsave.text=Lagre\ndont.save.text=Ikke lagre\ndownload.vlc=Last ned VLC\nfilefilters.description.powerpoint.presentations=Powerpoint-presentasjoner\ncontinue.without.video=Fortsett uten VLC\nfilefilters.description.video.files=Videofiler\nfilefilters.description.quelea.schedules=Quelea-gudstjenesteplaner\nfilefilters.description.xml.files=XML-filer\nfilefilters.description.survivor.songbook=Survivor acetates-fil\nvlc.warning.message=Quelea kunne ikke finne VLC på din datamaskin. Uten det kan ikke Quelea spille av videoer, lydfiler og vise sanger med videobakgrunner. Vil du laste det ned nå? Du må starte Quelea på nytt etter at du har installert VLC for at endringene skal tre i kraft.\nvlc.version.message=Din versjon av VLC er gammel. Du må laste ned den nyeste versjonen av VLC for å kunna spille av filmer og lyd, samt vise videobakgrunner. Vil du laste det ned nå? Du må starte Quelea på nytt etter at du har installert VLC for at endringene skal tre i kraft.\nvlc.warning.title=Kunde iikke finne VLC\nfilefilters.description.xml.bibles=XML-Bibler\nstartup.error.text=Dessverre, Quelea kunne ikke starte på din datamaskin av en eller annen grunn. Hvis du vil ha hjelp for å få det til å fungere, vennligst send en mail til support@quelea.org og legg ved debug-loggfilen ($1).\\n\\nEllers, kan du fritt stille spørsmål i Queleas diskusjonsgruppe (https://quelea.discourse.group).\nstartup.error.title=Feil ved oppstart\nfilefilters.description.plain.text.song=sanger fra en vanlig tekstfil\nfilefilters.description.xml.easyslide=XML-filer fra Easyslides\nfilefilters.description.audio.files=Lydfiler\nbible.search.keep.typing=Fortsett å skrive...\nbible.search.results.found=treff funnet\nbible.search.result.found=treff funnet\nuniform.font.size.label=Anvend vanlig tegnstørrelse\nmax.font.size.label=Maksimal tegnstørrelse\nadditional.line.spacing.label=Mellomrom mellom linjene\nmobile.lyrics.heading=Fjerntekst\nuse.mobile.lyrics.label=Anvend fjerntekst\nport.number.label=Portnummer\nnavigate.mob.url.label=Webadresse til fjerntekst\nfilefilters.description.zip.files=Zip-filer\nos.button=Opensong\nloop.label=Repeter\nos.import.line1=Angi neders hvor Opensong-databasen finnes.\nchange.graphics.label=Endre utseende\nseconds.label=sekunder\nfont.colour.label=Tekstfarge\nbackground.colour.label=Bakgrunnsfarge\nlogo.screen.tooltip=Venstreklikk for å vise – Høyreklikk for å stille inn\nolp.import.line1=Angi nedenfor hvor OpenLP-databasen finnes.\nsundayplus.import.line1=Angi nedenfor hvor Sunday Plus-databasen finnes.\nolp.button=OpenLP\nfilefilters.description.sqlite.files=SQLite-filer\nsp.button=Sunday Plus\nfont.selection.dialog.title=Fontvalg\nvideo.hue.label=Fargetone\nchosen.fonts.explanation=Quelea viser bare et utvalg av fontene i temavinduet. Dra de fontene som du vil bruke fra det venstre panelet til det høyre panelet, dra de du ikke vil bruke fra høyre til venstre.\ntest.patterns.text=Testmønster\nchosen.fonts.label=Valgte fonter\ntest.patterns.explanation=Testmønsteret her bør hjelpe deg å kalibrere din skjerms fokus- og fargeinnstillinger. Klikk på et testbilde for å vise den på både hovedskjermen og sceneskjermen.\nignored.fonts.label=Ignorerte fonter\nhover.for.position.label=Før musepekeren over bildet for å stille inn tekstposisjonen\nbackground.text=Bakgrunn\neasyworship.button=EasyWorship 2009\nfilefilters.description.songs.mb=Easyworship Songs.MB-databas\nzw.import.line2=Den kan vanligvis finnes i \"C:\\ProgramData\\ZionWorx\\2.6\\Data\".\nzw.import.line1=Velg hvor ZionWorx \"MainTable.dat\"-filen finnes nedenfor.\nadd.song.hint.search.text=Det finnes ingen sanger som matcher\\ndin søkestreng enda, men var ikke urolig!\\nFor å legga til en sang trykker du bare på\\n\"Legg til sang\"-knappen her til venstre.\nadd.song.hint.text=Det finnes ingen sanger her enda, men uroe deg ikke!\\nFor å legge til en sang trykker du bare på\\n\"Legg til sang\"-knappen her til venstre.\nshow.verse.numbers=Vis versnummer\nzw.button=ZionWorx\nno.tdb.heading=TurboDB Data Exchange ble ikke funnet\nno.tdb.message=Av tekniske grunner behøver du å laste ned TurboDB data exchange (https\\://www.dataweb.de/en/support/downloads.html) før Quelea kan importere ZionWorx-databaser.\\nNår du har lastet ned den, pakk opp i zip-filen til $1.\\n\\nOm du får noen problemer, så kjenn deg fri til å spørre i diskusjonsgruppen her: (https://quelea.discourse.group)\nimport.error.message=Dessverre, en feil oppstod ved importeringen. Kjenn deg fri til å spørre om hjelp i Quelea's diskusjonsgruppe: https://quelea.discourse.group\nfilefilters.description.maintable.dat=ZionWorx MainTable databasefil\neasyworship.import.line1=Dette vil importere sanger fra en Easyworship Songs.MB-fil.\nyoutube.url.label=Youtube-videoadresse\nopenlyrics.import.line1=Velg nedenfor hvor zip-filen med OpenLyrics-sanger er lagret.\ntranslate.dialog.title=Oversettingsvindu\nconfirm.remove.translation.text=Vil du virkelig slette denne oversettingen?\ndefault.translation.label=Standardoversetting\nuse.remote.control.label=Anvend fjernstyring\nremote.logo.text=Logg\nenter.translation.name.label=Hvilket språk vil du oversette til?\nremote.login.text=Vær vennlig å logge inn før du fortsetter\nremote.submit.text=Logg inn\nconfirm.remove.translation.title=Ta bort oversetting?\nselect.translation.label=Velg hvilke oversettinger du vil vise i tillegg til originalteksten:\nolyrics.button=OpenLyrics\nchoose.translations.text=Velg oversettinger\nremote.control.password=Passord til fjernstyring (Skiller på store og små bokstaver)\nserver.settings.heading=Serverinnstillinger\nremote.prev.text=Forrige bilde\nremote.nextitem.text=Neste sang\nremote.next.text=Neste bilde\nnavigate.remote.control.label=Webadresse til fjernstyring\nremote.logout.text=Logg ut\nremote.black.text=Svart\nauto.translate.label=Forsøk å oversette sanger automatisk\nclose.button=Avslutt\nremote.previtem.text=Forrige sang\nmore.fonts.label=Flere fonter\nserver.changed.message=Du må starte Quelea på nytt for at de nya serverinnstillingene skal tre i kraft.\nremote.clear.text=Blank\nremote.empty.lyrics=<i>Teksten vil vises her</i>\nserver.changed.label=Serverinnstillinger endret\ntranslate.tooltip=Sangoversettinger\nadd.translation.button=Legg til oversetting...\noverwrite.lyrics.text=Vi har automatisk oversatt teksten for deg. Vil du ta i bruk oversettingen? Det du har skrevet vil erstattes.\nmore.font.options.label=Flere fonter\ntranslate.heading=Oversettinger\noverwrite.lyrics.title=Skriv over eksisterende tekst?\ntranslation.font.text=Font for oversetting\nshadow.text=Skygge\nsaving.schedule=Lagrer Gudstjenesteplan...\nsmall.text.position.label=Side for informasjon om sang/bibeltekst\nbible.passage.selector.prompt=[Kapittel]:[Vers]-[Vers]\ntheme.button.tooltip=Angi et tema for allt i gudstjenesteplanen\ncurrently.displaying.text=For øyeblikket vises\nplay=Spill av\npause=Pause\nshow.small.song.text.label=Vis informasjon om sangen i hjørnet\nshow.small.bible.text.label=Vis informasjon om bibelstykket i hjørnet\nmax.items.per.slide=Maksimalt antall % per skjerm\nverses=vers\nedit.bible.passage.text=Rediger tema for bibeltekst\nwords=ord\nuse.bible.verses=Del opp bibeltekster etter antallet\nno.pdb.heading=Paradox JDBC-drivrutiner ikke funnet\nno.pdb.message=Av teknisk grunner må du laste ned Paradox JDBC-drivrutiner før Quelea pålitelig kan importere databaser fra Easyworship:\\n\\n1. Gå til http://www.hxtt.com/download.jsp og registrer deg for en gratis konto for å fortsette.\\n2. Last ned filen \"DBF JDBC 4.1 Package for JDK1.7.X and JDK1.8.X\". Den bør hete Paradox_JDBC41.jar.\\n3. Kopier Paradox_JDBC41.jar til $1.\\n\\nOm du støter på noen problemer, still gjerne et spørsmål i diskusjonsgruppen (https://quelea.discourse.group). Quelea vil fortsatt forsøke å importere Easyworship-databasen uten filen på plass, men det kan gi et upålitelig resultat.\nnotice.options.heading=Varselet\nnotice.speed.text=Hastighet på varselet\nnotice.font.size=Tekststørrelse på varselet\nnotice.font.text=Font på varselet\nexport.schedule.pdf.button=Eksporter gudstjenesteplanen til PDF\nnotice.colour.text=Farge på varselet\nnotice.position.text=Posisjon på varselet\nfilefilters.description.pdf.files=PDF-filer\nnotice.background.colour.text=Bakgrunnsfarge for varselet\nexport.pdf.button=Eksporter til PDF\nquelea.schedule.text=Gudstjenesteplan fra Quelea\nnot.started.label=Ikke startet\nuser.options.options=Brukeralternativer\ntext.options.options=Tekstalternativer\nstretch.video.label=Strekk ut video\nexport.schedule.songs.pdf.button=Eksporter sanger til PDF\nshadow.radius.label=Skyggeradius\nshadow.spread.label=Skyggespredning\npdf.button=PDF\nshadow.color.label=Skyggefarge\nuse.shadow.label=Anvend skygger?\nshadow.offset.label=Skyggeavstand\nexporting.label=Eksporterer\nprint.chords.export.question=Inkluder akkordene når sangene eksporteres?\nhelp.menu.manual=Manual\nuntitled.theme.text=Ikke navngitt tema\nsongselect.import.line1=Velg SongSelect filene nedenfor.\npng.files.description=PNG bildefiler\ncopying.video.please.wait.text=Vent et øyeblikk - kopierer videofilen...\ntimer.text.prompt=Bruk # for å stille tidtakeren, f.eks. \"Gudstjenesten begynner om #\" vil vise \"Gudstjenesten begynner om 05:00\"\nfilefilters.description.usr.files=USR (SongSelect) filer\nsongselect.button=SongSelect\nadd.timer.tooltip=Legg til nedtellingstidtaker\ncountdown.label=Nedtellingstidtaker\nadd.timer.title=Legg til tidtaker\nslide.text=Lysbilde\ntimer.duration.label=Nedtellingsvarighet\nedit.theme.text=Rediger Tema\ndelete.translation.text=Slett den $1 oversettelsen?\ntranslation.choice.title=Oversettelsesvalg\ntranslating.text.please.wait.text=Vent et øyeblikk - henter oversettelse...\nautoplay.vid.label=Spill videoer i livepanelet automatisk\nadvance.on.live.label=Avanser tidsplan ved live visning\nnonbreak.tooltip=Legg til fast mellomrom\ninclude.translations.question=Inkluder oversettelsene i PDF-filen?\nhelp.menu.wiki=Wiki\nsave.qr.code.text=Lagre QR-kode\nfilefilters.description.image.video.files=Video- og bildefiler\nnew.translation.title=Ny oversettelse\nduration.tooltip.label=#:## eller ##m##s\ntimer.file.label=Filplassering for bakgrunn\ntimer.theme.label=Temainnstillinger\ntimer.theme.button=Endre tema\npreview.on.image.change.label=Forhåndsvis objekt ved bildebytte\nswitch.to.text=Bytt til\ntranslation.export.heading=Eksporter oversettelse\ntimer.text.label=Tilleggstekst\nfont.options.title=Fontvalg\ndelete.translation.title=Slett oversettelse\nchange.bible.version.text=Bytt versjon\nmediashout.button=MediaShout\nfilefilters.description.txt.files=.txt filer\nembed.media.in.schedule=Implementer media i kjøreplanfilen\nmediashout.import.line1=Velg filbanen til MediaShout db (eksportert til txt-format) nedenfor:\nelevanto.button=Elevanto\nelevanto.import.heading=Elevanto\nelevanto.loginsuccess.message=You may close this window and return to Quelea\nelevanto.loginerror.warning=Error logging into Elevanto\npco.button=Planning Center Online \npco.login.import.heading=Planning Center Online Innlogging \npco.loginerror.title=Innloggingsfeil \npco.loginerror.warning=Kunne ikke logge inn, sjekk epost og passord og prøv igjen \npco.import.heading=Planning Center Online \npassword.text=Passord \nemailaddress.text=Epost \nlogin.text=Logg inn\nlibrary.copy.to.schedule.text=Kopier til kjøreplan\nfreeworship.button=Freeworship \nimport.all.button=Importer alle \nimport.selection.button=Importer seleksjon \nrefresh.button=Oppdater\nrtf.files.description=RTF filer \nsng.files.description=SNG (SongBeamer) filer\nvideopsalm.import.line1=Dette vil importere VideoPsalm biblioteket fra en JSON fil.\nfreeworship.import.line1=Dette vil importere FreeWorship sanger fra XML filer.  \nsof.import.line1=Dette vil importere SoF biblioteket fra en RTF fil. \nsongpro.import.line1=Dette vil importere sanger fra en SongPro SDB database. \nmissionpraise.import.line1=Dette vil importere sanger fra Mission Praise RTF filer.\nhelp.menu.feedback=Tilbakemelding\nadd.multimedia.tooltip=Legg til mediefiler\nfilefilters.description.pmsong.files=Presentation Manager sanger \nfilefilters.description.vs.files=VideoPsalm databaser \nfilefilters.description.songs.missionpraise=Mission Praise RTF filer\nthumbnail.size.label=Størrelse på forhåndsvisning av bilder \npm.import.line1=Velg Presentation Manager sangene som skal importeres. \nvideopsalm.button=VideoPsalm \npm.button=Presentation Manager \nsongbeamer.import.line1=Velg plasseringen til SNG filene du vil importere nedenfor: \nsongbeamer.button=SongBeamer \nclear.stage.view=Gjem sceneskjerm når prosjektorskjerm gjemmes \ntop=Topp \nbottom=Bunn \nepicworship.import.line1=Dette vil importere fra en EpicWorship sangpakke (.epc) fil. \nfilefilters.description.epc=EpicWorship .epc sangpakke \nepicworship.button=EpicWorship \nadd.videos.panel=Legg til videoer \nremove.video.text=Fjern video \ndelete.video.title=Slett video \ndelete.video.confirmation=Vil du virkelig fjerne denne videoen fra biblioteket? Fjerningen kan ikke angres. \nlibrary.video.heading=Videoer \ntimer.files.description=Nedtellingstidtakere \nadd.timers.panel=Legg til tidtakere \nlibrary.timer.heading=Tidtakere \ntimer.save.label=Lagre tidtaker? \ntimer.name.label=Navn \nedit.timer.text=Rediger tidtaker \nremove.timer.text=Slett tidtaker\nconfirm.remove.timer=Vil du virkelig fjerne $1 fra tidtakerlisten? Fjerningen kan ikke angres. \nkingsway.button.range=Rekke \nkingsway.range.import.text=Velg rekken med sangsider som skal lastes ned fra Kingsway's nettside\\nForeløpig maksimalt antall sider er ca. 3600. \nkingsway.range.import.heading=Importer en rekke Kingsway sanger\nsdb.files.description=Songpro database filer \nsongpro.button=SongPro \noverflow.song.label=Nåværende sang flyter over i neste sang \ninvalid.search=Ugyldig søk \nrcs.add.failed=Kunne ikke legge til \nrcs.add.success=Lagt til \nrcs.add.song=Legg sangen til kjøreplan \nrcs.search=Søk og legg til \nrcs.add.bible.error=Det oppstod et problem med å legge $1 til kjøreplanen \nrcs.submit=Send inn \nrcs.song.search=Sang \nrcs.bible.search=Bibel \nshow.video.library.panel=Vis videobibliotek (krever omstart) \nuse.24h.clock=Bruke 24 timers klokke \nsplit.bible.verses=Behold hele verset på et lysbilde \nno.verse.title=Ingen vers funnet \nno.verse.message=Vi kunne ikke finner en eller flere av versene spesifisert og har prøvd å fortsette uten dem. \nchorus.tooltip=Legg til tittel på refreng \nrecordings.path=Filsti for opptak \ndownload.path=Mappesti for nedlastning\nconvert.mp3=Automatisk omgjør opptak til MP3 filer (krever VLC) \nrecording.warning.title=Sett filsti for opptak først \nrecording.warning.message=Du må sette en filsti for hvor opptakene skal lagres i innstillingspanel før du kan begynne å ta opp. \nrecording.no.devices.title=Ingen opptaksenhet funnet \nrecording.no.devices.message=Beklager, ingen kompatible opptaksenheter ble funnet.\\nSørg for at opptaksenheten er plugget in og aktivert. \nsave.recording.before.exit.title=Ulagrede opptak \nsave.recording.before.exit.message=Vil du lagre opptaket før du avslutter? \nrecord.audio.tooltip=Ta opp lyd \npause.record.tooltip=Pause opptak \nmax.lines.per.slide=Linjer per lysbilde (omtrentlig) \npresentation.options.heading=Presentasjoner\nrecordings.options.heading=Opptak\ncopy.song.db.default=Kopier sang til kjøreplan som standard \nmp.button=Mission Praise\nadd.pdf.tooltip=Legg til PDF \nimportexport.options.heading=Importer/Eksporter \npreview.failed=Forhåndsvisning feilet \nset.loop.manually.title=PowerPoint ikke funnet \nset.loop.manually.message=Presentasjonen ble lukket. Hvis du vil bruke Queleas repetisjonsfunksjon med PowerPoint fremviseren, må du manuelt sette presentasjonen til å repetere til den blir stoppet når du oppretter den. \npresentation.changed.message=Du må starte Quelea på nytt for at de nye innstillingene for presentasjon skal tre i kraft. \npresentation.changed.label=Innstillinger for presentasjon endret \npresentation.not.started.label=PowerPoint ble ikke startet \npresentation.not.started.message=Dessverre, din presentasjon kunne ikke bli startet med PowerPoint. Kanskje filen er korrupt? \npp.already.running.label=PowerPoint kjører allerede \npp.already.running.message=En annen versjon av PowerPoint ble funnet. Vennligst lukk alle versjoner av PowerPoint før du starter en presentasjon i Quelea for å forhindre tap av data. \npp.path.label=Mappesti til PowerPoint-programmet \nuse.pp.label=Bruk PowerPoint for presentasjoner \nclose.all.presentations.label=Lukk alle åpne presentasjoner\nclose.all.presentations.message=Vennligst lukk alle PowerPoint-vinduer før du trykker OK ellers vil det gjøres automatisk for å forhinde at signaler sendes til feil vindu. \nlive.text.message=Teksten nedenfor vil bli synlig for brukere av Mobil Sangtekst når hovedskjermen er tom.\\n\\nBruk en blank linje for å starte på et nytt lysbilde. Du kan også bruke \"tømme\" knappen (eller CTRL + Return) for å tilbakestille på begge sider. Fler enn 200 tegn på et lysbilde vil bli automatisk korted ned for brukeren. \nlive.text.title=Live tekst \nexit.live.text=Gå ut av live tekst\nclear.live.text=Tømme \ndefault.translation=Standard\nselect.language=Velg språk: \nsend.live.text=Live tekst \nconverting.to.mp3=Konverter opptakt til MP3 \nverse.tooltip=Legg til tittel på vers \nbridge.tooltip=Legg til tittel på bro \nprechorus.tooltip=Legg til tittel på forvers\ntag.tooltip=Legg til tittel på merkelapp \nadd.website=Legg til nettside\nfocus.switcher.title=Quelea fokusbytter \nfocus.switcher.message=Bytt vindusfokus hit dersom nødvendig under presentasjonen. \nfocus.pp=Bytt fokus til PowerPoint \nfocus.quelea=Bytt fokus til Quelea \nwebsite.dialog.title=Nettside URL \nwebsite.dialog.header=Skriv inn URL til nettside \nwebsite.dialog.content=Skriv inn nettsiden du ønsker å vise: \npaste.label=Lim inn \nundo.label=Angre \nredo.label=Gjør om\nfilefilters.description.multimedia.files=Multimediafiler \nsmi.import.line1=Velg Screen Monkey sangene som skal importeres. \nsm.button=Screen Monkey\nsundayplus.import.line2=(Importeringen ser etter PTF-filene i rotmappen av zipfilen.) \nhelp.menu.error.text=Beklager, vi kunne ikke laste siden. Du kan navigere til den manuelt: $1 \nfilefilters.description.songs.worshiphim=Worship Him MDB-filer \nworshiphim.import.line1=Velg plasseringen til Worship Him db (i mdb-format) nedenfor: \nworshiphim.button=Worship Him \nshow.extra.live.panel.toolbar.options.label=Vis ekstra valg for live panel verktøylinjen"
  },
  {
    "path": "Quelea/languages/pj.lang",
    "content": "LANGUAGENAME= Punjabi (PJ)\ndatabase.heading=Database\nimport.heading=Import\nqsp.button=Quelea Song Pack\nos.button= Song Khol\nolp.button=OpenLP\nolyrics.button=OpenLyrics\nzw.button=ZionWorx\nsp.button=Sunday Plus\npco.button=Planning Center Online\npco.login.import.heading=Planning Center Online Login\npco.loginerror.title=Login de wich Error hegi a \npco.loginerror.warning= problem ho gi email teh password dubara check karo\npco.import.heading=Planning Center Online\nelevanto.button=Elevanto\nelevanto.import.heading=Elevanto\nelevanto.loginsuccess.message= window nu close karo teh Quelea de kol javo\nelevanto.loginerror.warning= login de witc problem he gi a Elevanto javo \npassword.text=Password\nemailaddress.text=Email\nlogin.text=Login\nss.button=Survivor Songbook\nprojector.heading=Projector\ncontrols.heading=Controls\non.button=On\noff.button=Off\ncopy=Copy\nswitch.input.button=Switch Input\ngeneral.options.heading=General\ndisplay.options.heading=Display\nbible.options.heading=Bible\ncheck.for.update.label=update check karo\n1.monitor.warn.label= warning that davo jado nal laga haan\ncapitalise.start.line.label= pehla akhar vada rako\none.line.mode.label=ek song ek line de vich rako\ndisplay.song.info.label= song de information deko\ntext.border.thickness.label=Text border thickness\nmax.chars.line.label=Maximum characters per line\nadvanced.label=Advanced\nok.button=OK\noutput.text=Output\ncontrol.screen.label=Control Screen\nprojector.screen.label=Projector screen\nstage.screen.label=Stage screen\ncustom.position.text=Custom Position\ndefault.bible.label=Default\nmax.verses.label= je tusi ek var dekhna hega window wadi karo\nadd.bible.label= bible add karo\nnone.text=None\nnew.schedule.button=New Schedule\nopen.schedule.button=Open Schedule\nsave.schedule.button=Save Schedule\nsave.as.schedule.button= schedule nu save es nam teh \nprint.schedule.button=Print karlo Schedule\noptions.title=Options\noptions.button=Options\nexit.button=Exit\nnew.schedule.text=New Schedule\ncreate.new.schedule.text= Nava schdule bano\nopen.schedule.text=Open Schedule\nopen.existing.schedule.text= Puna schedule kholo\nsave.schedule.text=Save Schedule\nsave.schedule.disk.text= dish ch save karo\nsave.as.schedule.text= dish ch save karo\nsave.as.schedule.disk.text= dish ch save karo wakri file lehi\nprint.schedule.text=Print Schedule\nprint.current.schedule.text=Print karo hale da schdule \noptions.text=Options\ndisplay.options.text= option dialog dekhavo\nexit.text=Quit Quelea\nquit.quelea.text=Exit from Quelea\nsave.schedule.tooltip=Save Schedule\nprint.schedule.tooltip=Print Schedule\nlibrary.image.heading=Images\nlibrary.songs.heading=Songs\nlibrary.bible.heading=Bibles\nbible.heading=Bibles\nlibrary.song.search=Search\nclear.search.box=Clear search\nadd.song.text= gana add karlo database de nal\nremove.song.text= gana nu database toh kat dahvo\nlibrary.add.to.schedule.text= schdule tusi add karvalo\nlibrary.copy.to.schedule.text= copy karlo schedule de nal\nlibrary.edit.song.text= gana nu vakhralo\nlibrary.remove.song.text= gana hatalo\nlibrary.print.song.text= gana print karwalo\nadd.to.schedule.text= schedule add karlo\norder.service.heading= madat da mukabla \nmove.down.schedule.tooltip= schdule de thale javo \nmove.up.schedule.tooltip= uthe javo schdule de\nremove.song.schedule.tooltip= hatwalo schedule \nadjust.theme.tooltip=theme tusi dekho \nedit.song.text= gana dekhlo\nnew.theme.text= agli theme..\ntheme.select.text=Select theme:\ndefault.theme.name=Default\ndefault.theme.text=Default theme\nremove.theme.tooltip=Remove theme\nedit.theme.tooltip=Edit theme\nedit.theme.heading=Theme manager\npreview.heading=Preview\nlive.heading=Live\ngo.live.text=Go Live\nblack.screen.tooltip=Black screen\nclear.text.tooltip=Clear screen\nhide.display.output.tooltip=Hide display output\nschedule.heading=Schedule\nadd.song.button=Add gana\nedit.song.button=Edit gana\nremove.item.button=item hatavo\nadd.multimedia.heading=Add karlo Multimedia\nadd.presentation.button=Add karlo Presentation\nadd.video.button=Add karlo Video\nadd.youtube.button=Add karlo Youtube Video\nadd.live.video.button=Add karlo qLive Video\nadd.dvd.button=Add karlo DVD\nadd.audio.button=Audio\nadd.audio.tooltip=Add Audio\nshare.heading=Share\nemail.button=Email Schedule\nmanage.notices.button=Manage Notices...\nnotices.heading=Notices\nnew.notice.text=New Notice\nedit.notice.text=Edit Notice\nremove.notice.text=Remove Notice\ndone.text=Done\nnew.notice.heading=Nava Notice\nnotice.text=Notice\nnotice.times.text=Times to Show\nnotice.infinite.question=Infinite?\nadd.notice.button=Add karlo notice\nedit.notice.button=Edit karlo notice\nyes.text=Yes\nno.text=No\ncancel.text=Cancel\nnew.song.button=New Song\ndelete.song.button=Delete Song\nsongs.heading=Songs\ntags.button=Manage tags...\nsource.button=The Source\neasyslides.button=EasySlides\nfreeworship.button=Freeworship\neasyworship.button=EasyWorship 2009\nplainText.button=Plain text\nkingsway.button=Kingsway Online\nsof.button=Songs of Fellowship\nexport.heading=Export\nfilter.tag=Filter tags\ntags.colon.label=Tags:\nimport.button=Import\nimport.all.button=Import All\nimport.selection.button=Import Selection\nrefresh.button=Refresh\nclick.select.file.text=Click to select file\ncheck.duplicates.text=Check duplicates\nedit.song.title=Gana edit karlo \nbasic.information.heading= thori information\ndetailed.info.heading= bhot jada information\ntheme.heading=Theme\ntitle.label=Title\nauthor.label=Author\nrun.spellcheck.label=Spellcheck\nfix.apos.label=Sanitise apostrophes\ntrim.lines.tooltip=Trim lines\ntranspose.tooltip=Transpose...\ncancel.button=Cancel\nccli.number.label=CCLI number\ncopyright.label=Copyright\nyear.label=Year\npublisher.label=Publisher\ntags.label=Tags\ntype.tag.name.here.text=<eder type names likho>\nkey.label=Key\ncapo.label=Capo\nnotes.label=Notes\nfont.theme.label=Font\nchoose.color.text= rang pasand karo...\nbackground.text=Background\nbackground.theme.label=Background theme\ncolor.theme.label=Colour\nimage.theme.label=Image\nselect.color.title= dekho rang\nselect.color.button= dekho rang\nnew.song.title=Nava gana\ntype.lyrics.here.text= geeth de\nrtf.files.description=RTF files\nsng.files.description=SNG (SongBeamer) files\nvideopsalm.import.line1= eh zaruri aa VideoPsalm library li JSON file.\nfreeworship.import.line1=T eh zaruri aa FreeWorship gana di XML files.\n\n"
  },
  {
    "path": "Quelea/languages/pl.lang",
    "content": "LANGUAGENAME=Polski (PL)\ndatabase.heading=Biblioteka\nimport.heading=Importuj\nqsp.button=Quelea Song Pack\nos.button=Opensong\nolp.button=OpenLP\nolyrics.button=OpenLyrics\nzw.button=ZionWorx\nsp.button=Sunday Plus\npco.button=Planning Center Online\npco.login.import.heading=Planning Center Online Login\npco.loginerror.title=Błąd logowania\npco.loginerror.warning=Logowanie nie powiodło się, sprawdź e-mail i hasło.\npco.import.heading=Planning Center Online\nelevanto.button=Elevanto\nelevanto.import.heading=Elevanto\nelevanto.loginsuccess.message=Możesz zamknąć to okno i powrócić do Quelea\nelevanto.loginerror.warning=Błąd logowania w Elevanto\npassword.text=Hasło\nemailaddress.text=E-mail\nlogin.text=Login\nss.button=Survivor Songbook\nprojector.heading=Projektor\ncontrols.heading=Sterowanie\non.button=Włącz\noff.button=Wyłącz\ncopy=Kopiuj\nswitch.input.button=Przełącz wejście\ngeneral.options.heading=Ogólne\ndisplay.options.heading=Wyświetlanie\nbible.options.heading=Biblie\ncheck.for.update.label=Sprawdzaj aktualizacje podczas uruchomienia\n1.monitor.warn.label=Ostrzegaj, gdy podłączony jest tylko jeden monitor\ncapitalise.start.line.label=Wielka litera na początku każdej linii\none.line.mode.label=Podgląd tylko jednej linii sekcji pieśni\ndisplay.song.info.label=Wyświetlaj informacje o pieśni\ntext.border.thickness.label=Grubość obramowania tekstu\nmax.chars.line.label=Maksymalna liczba znaków w linii\nadvanced.label=Zaawansowane\nok.button=OK\noutput.text=Wyjście\ncontrol.screen.label=Ekran kontrolny\nprojector.screen.label=Ekran projekcyjny\nstage.screen.label=Ekran promptera\ncustom.position.text=Pozycja tekstu\ndefault.bible.label=Domyślna\nmax.verses.label=Maksymalna liczba wersetów na jednym ekranie\nadd.bible.label=Dodaj biblie...\ndelete.bible.label=Usuń bieżącą biblię\ndelete.bible.confirmation=Na pewno chcesz usunąć biblię $1?\nnone.text=Brak\nnew.schedule.button=Nowy zestaw\nopen.schedule.button=Otwórz zestaw\nsave.schedule.button=Zapisz zestaw\nsave.as.schedule.button=Zapisz zestaw jako...\nprint.schedule.button=Drukuj zestaw\noptions.title=Ustawienia\noptions.button=Ustawienia\nexit.button=Zakończ\nnew.schedule.text=Nowy zestaw\ncreate.new.schedule.text=Utwórz nowy zestaw\nopen.schedule.text=Otwórz zestaw\nopen.existing.schedule.text=Otwórz istniejący zestaw\nsave.schedule.text=Zapisz zestaw\nsave.schedule.disk.text=Zapisz zestaw na dysku\nsave.as.schedule.text=Zapisz zestaw jako\nsave.as.schedule.disk.text=Zapisz zestaw jako inny plik\nprint.schedule.text=Drukuj zestaw\nprint.current.schedule.text=Drukuj bieżący zestaw\noptions.text=Ustawienia\ndisplay.options.text=Wyświetl okno dialogowe ustawień\nexit.text=Zakończ Quelea\nquit.quelea.text=Wyjdź z Quelea\nlibrary.image.heading=Obrazy\nlibrary.songs.heading=Pieśni\nlibrary.bible.heading=Biblia\nbible.heading=Biblia\nlibrary.song.search=Szukaj\nclear.search.box=Wyczyść wyszukiwanie\nadd.song.text=Dodaj pieśń do biblioteki\nremove.song.text=Usuń pieśń z biblioteki\nlibrary.add.to.schedule.text=Dodaj do zestawu\nlibrary.copy.to.schedule.text=Kopiuj do zestawu\nlibrary.edit.song.text=Edytuj pieśń\nlibrary.remove.song.text=Usuń pieśń\nlibrary.print.song.text=Drukuj pieśń\nadd.to.schedule.text=Dodaj do zestawu\norder.service.heading=Kolejność zestawu\nmove.down.schedule.tooltip=Przesuń w dół w zestawie\nmove.up.schedule.tooltip=Przeszuń w górę w zestawie\nremove.song.schedule.tooltip=Usuń z zestawu\nadjust.theme.tooltip=Dostosuj motyw\nedit.song.text=Edytuj pieśń\nnew.theme.text=Nowy motyw...\ntheme.select.text=Wybierz motyw:\ndefault.theme.name=Domyślny\ndefault.theme.text=Domyślny motyw\nremove.theme.tooltip=Usuń motyw\nedit.theme.tooltip=Edytuj motyw\nedit.theme.heading=Menedżer motywów\npreview.heading=Podgląd\nlive.heading=Live\ngo.live.text=Go Live\nblack.screen.tooltip=Czarny ekran\nclear.text.tooltip=Wyczyść ekran\nhide.display.output.tooltip=Ukryj wyświetlaną treść\nschedule.heading=Zestaw\nadd.song.button=Dodaj pieśń\nedit.song.button=Edytuj pieśń\nremove.item.button=Usuń pozycję\nadd.multimedia.heading=Dodaj multimedia\nadd.presentation.button=Dodaj prezentację\nadd.video.button=Dodaj wideo\nadd.youtube.button=Dodaj wideo z Youtube\nadd.live.video.button=Dodaj wideo na żywo\nadd.dvd.button=Dodaj DVD\nadd.audio.button=Dźwięk\nadd.audio.tooltip=Dodaj dźwięk\nshare.heading=Udostępnij\nemail.button=Wyślij zestaw przy pomocy e-mail\nmanage.notices.button=Zarządzaj ogłoszeniami...\nnotices.heading=Ogłoszenia\nnew.notice.text=Nowe ogłoszenie\nedit.notice.text=Edytuj ogłoszenie\nremove.notice.text=Usuń ogłoszenie\ndone.text=Gotowe\nnew.notice.heading=Nowe ogłoszenie\nnotice.text=Ogłoszenie\nnotice.times.text=Ilość wyświetleń\nnotice.infinite.question=Bez końca?\nadd.notice.button=Dodaj ogłoszenie\nedit.notice.button=Edytuj ogłoszenie\nyes.text=Tak\nno.text=Nie\ncancel.text=Anuluj\nnew.song.button=Nowa pieśń\ndelete.song.button=Usuń pieśń\nsongs.heading=Pieśni\ntags.button=Zarządzaj etykietami...\nsource.button=Source\neasyslides.button=EasySlides\nfreeworship.button=Freeworship\neasyworship.button=EasyWorship 2009\nplainText.button=Zwykły tekst\nkingsway.button=Kingsway Online\nsof.button=Songs of Fellowship\nexport.heading=Eksportuj\nfilter.tag=Filtry etykietami\ntags.colon.label=Etykiety:\nimport.button=Importuj\nimport.all.button=Importuj wszystkie\nimport.selection.button=Importuj zaznaczone\nrefresh.button=Odśwież\nclick.select.file.text=Kliknij, aby wybrać plik\ncheck.duplicates.text=Sprawdź duplikaty\nedit.song.title=Edycja pieśni\nbasic.information.heading=Podstawowe informacje\ndetailed.info.heading=Szczegółowe informacje\ntheme.heading=Motyw\ntitle.label=Tytuł\nauthor.label=Autor\nrun.spellcheck.label=Pisownia\nfix.apos.label=Formatuj apostrofy\ntrim.lines.tooltip=Przycinaj linie\ntranspose.tooltip=Transponuj...\ncancel.button=Anuluj\nccli.number.label=Numer CCLI\ncopyright.label=Prawa autorskie\nyear.label=Rok\npublisher.label=Wydawca\ntags.label=Etykiety\ntype.tag.name.here.text=<Tutaj wpisz nazwy etykiet>\nkey.label=Tonacja\ncapo.label=Kapodaster\nnotes.label=Uwagi\nfont.theme.label=Font\nchoose.color.text=Wybierz kolor...\nbackground.text=Tło\nbackground.theme.label=Motyw tła\ncolor.theme.label=Kolor\nimage.theme.label=Obrazy\nselect.color.title=Wybierz kolor\nselect.color.button=Wybierz kolor\nnew.song.title=Nowa pieśń\ntype.lyrics.here.text=Tutaj wpisz słowa\nrtf.files.description=pliki RTF\nsng.files.description=pliki SNG (SongBeamer)\nvideopsalm.import.line1=Zostanie zaimportowana biblioteka VideoPsalm z pliku JSON.\nfreeworship.import.line1=Zostanie zaimportowana biblioteka FreeWorship songs from XML files.\nsof.import.line1=Zostanie zaimportowana biblioteka SoF library from an RTF file.\nplaintext.import.line1=Import pieśni z plików tekstowych.\nkingsway.import.line1=Import pieśni z biblioteki online Kingsway.\nsongpro.import.line1=Import pieśni z bazy SongPro SDB.\nkingsway.import.line2=Może to zająć dużo czasu (możliwe kilka godzin!), więc proszę uzbroić się w cierpliwość.\neasyslides.import.line1=Import pieśni z pliku EasySlides XML.\neasyworship.import.line1=Import pieśni z pliku Easyworship Songs.MB.\nmissionpraise.import.line1=Import pieśni z plików Mission Praise RTF.\nopenlyrics.import.line1=Poniżej wybierz miejsce przechowywania archiwów zip pieśni openlyrics.\nqsp.import.line1=Poniżej wybierz miejsce przechowywania paczek pieśni Quelea.\nos.import.line1=Poniżej wybierz miejsce przechowywania bazy Opensong.\nzw.import.line1=Poniżej wybierz miejsce przechowywania pliku \"MainTable.dat\" ZionWorx.\nzw.import.line2=Najczęściej może być znaleziony w \"C:\\\\ProgramData\\\\ZionWorx\\\\2.6\\\\Data\".\nolp.import.line1=Poniżej wybierz miejsce przechowywania bazy OpenLP.\nsundayplus.import.line1=Poniżej wybierz miejsce przechowywania bazy Sunday Plus.\nsundayplus.import.line2=(Skrypt importujący oczekuje plików PTF w głównym katalogu archiwum ZIP.)\nsource.import.line1=Poniżej wybierz miejsce przechowywania folderu ymns na nośniku CD.\nsurvivor.import.line1=Poniżej wybierz miejsce przechowywania śpiewnika Survivorw w formacie PDF.\nsurvivor.import.line2=Musi to być plik acetates.pdf, bez akordów gitarowych ani nut.\nimport.error.message=Przepraszamy, wystąpił problem podczas importu. Poproś o pomoc w grupie dyskusyjnej Quelea: https://quelea.discourse.group\nemail.error.title=Błąd Email\nemail.error.text=Wystąpił błąd przy otwieraniu Twojego klienta poczty. Upewnij się, że masz zainstalowany program pocztowy oraz zarejestrowaną dla niego obsługę plików eml, w przeciwnym przypadku musisz wysłać pocztę ręcznie.\nemail.text=Witaj! W załączniku znajduje się zestaw Quelea. Możesz otworzyć go przy pomocy Quelea i wszystko powinno wyświetlać się prawidłowo.\nselect.image.button=Wybierz obraz\nimage.files.description=Pliki obrazów\npng.files.description=pliki obrazów PNG\ntools.label=Narzędzia\nselect.songs.title=Wybierz pieśni\ncheck.uncheck.all.text=Zaznacz/Odznacz wszystkie\ndelete.theme.confirm.title=Potwierdź usunięcie\ndelete.theme.question=Na pewno chcesz usunąć ten motyw?\ntoo.many.verses.error=Niestety, nie można wyświetlić tak dyżej ilości wersów... spróbuj mniejszą ilość.\none.monitor.warning=Wygląda na to, że jest podłączony tylko jeden monitor. Nie ma problemu, jeśli chcesz użyć Quelea do przygotowania zestawów pieśni. Jeśli jednak chcesz korzystać z funkcji wyświetlania tekstów potrzebne są 2 monitory.\none.monitor.title=Tylko jeden monitor\nno.dvd.heading=Brak dysku\nno.dvd.error=Proszę włożyć płytę DVD lub Blu-ray do napędu.\nadding.presentation.status=Trwa importowanie prezentacji...\nadding.presentation.error.message=Wystąpił błąd podczas importu prezentacji, prawdopodobnie plik jest uszkodzony.\nadding.presentation.error.title=Błąd importu prezentacji\nimporting.status=Trwa importowanie...\nname.label=Nazwa\nsimilar.colors.text=Zostały wybrane podobne kolory dla liter i tła, co może skutkować złą czytelnością tekstu. Radzimy wybrać lepsze kolory!\nwarning.label=Ostrzeżenie\nfile.menu=Plik\ntools.menu=Narzędzia\nschedule.menu=Zestaw\ndatabase.menu=Biblioteka\nprojector.menu=Projektor\nnew.theme.title=Nowy motyw\nadd.theme.label=Dodaj motyw\ntheme.name.label=Nazwa motywu\ntheme.select.label=Wybierz motyw\ntheme.copy.label=Kopiuj z motywu\nhelp.menu=Pomoc\nhelp.menu.website=Witryna\nhelp.menu.discussion=Wsparcie / Dyskusje (tutaj zadawaj pytania)\nhelp.menu.feedback=Feedback\nhelp.menu.download=Pobierz\nhelp.menu.update=Sprawdź uaktualnienia\nhelp.menu.about=O programie...\nhelp.menu.error.text=Niestety, nie udało się załadować strony. Mozesz przeglądać ją pod adresem: $1\nhelp.menu.error.title=Błąd\nhelp.about.title=O programie\nhelp.about.version=Wersja\nhelp.about.close=Zamknij\nhelp.about.line1=Quelea jest udostępniana na licencji GPL (Wersja 3.)\nhelp.about.line2=Jest i zawsze będzie oprogramowaniem wolnym i o otwartych źródłach.\nnew.schedule.tooltip=Nowy zestaw\nopen.schedule.tooltip=Otwórz zestaw\nsave.schedule.tooltip=Zapisz zestaw\nprint.schedule.tooltip=Drukuj zestaw\nnew.song.tooltip=Nowa pieśń\nadd.presentation.tooltip=Dodaj prezentację\nadd.dvd.tooltip=Dodaj DVD\nadd.video.tooltip=Dodaj wideo\nadd.multimedia.tooltip=Dodaj multimedia\nmanage.tags.tooltip=Zarządzaj etykietami\nmanage.notices.tooltip=Zarządzaj ogłoszeniami\nalready.running.error=Wygląda na to, że Quelea już działa.\\nPrzed uruchomieniem programu upewnij się, że poprzednio został zamknięty.\nalready.running.title=Quelea już pracuje\nerror.schedule.message=Wystąpił problem z załadowaniem zestawu. Prawdopodobnie jest uszkodzony lub plik nie była zapisany przy pomocy programu Quelea.\nerror.schedule.title=Błąd pliku zestawu\nprint.chords.question=Czy dołączyć akordy do wydruku?\nprint.chords.export.question=Czy dołączyć akordy do pliku?\nprinting.options.text=Drukuj pieśń\nspace.key=spacja\nupdating.db=Aktualizacja biblioteki\nerror.updating.song.text=Wystąpił błąd podczas aktualizacji pieśni w bibliotece, biblioteka może być uszkodzona.\nerror.text=Błąd\nquick.shortcut.description=Naciśnij Escape, aby anulować, shift+enter, aby zapisać.\nsave.before.exit.text=Zestaw został zmodyfikowany. Zapisać przed zamknięciem?\nsave.before.exit.title=Niezapisany zestaw\nno.chords.message=Ta pieśń nie posiada żadnych linii zawierających akordy do transpozycji.\nno.chords.title=Brak akordów\nerror.checking.updates.title=Nie można sprawdzić aktualizacji\nerror.checking.updates.text=Niestety, wystąpił błąd podczas sprawdzania aktualizacji. Sprawdź połączenie internetowe i spróbuj ponownie.\nnewer.version.available=Dostępna jest nowsza wersja Quelea\nno.newer.version.available=Posiadasz najnowszą wersję Quelea\nvisit.webpage.now=Czy odwiedzić witrynę Quelea w celu pobrania teraz?\ndownload.manual.update=Możesz pobrać ją tutaj\nnewer.version.available.title=Dostępna aktualizacja\nno.newer.version.available.title=Zainstalowana jest najnowsza wersja!\ncheck.kingsway.start=Zostały już zaimportowane pozycje z biblioteki Kingsway. Czy chcesz rozpocząć z poprzedniego miejsca?\ncheck.kingsway.start.title=Częściowo zaimportowane pozycje\nimport.no.songs.title=Brak pieśni\nimport.no.songs.text=Nie znaleziono żadnych pieśni do zaimportowania.\nstage.options.heading=Widok promptera\nstage.show.chords=Wyświetlać akordy?\nstage.line.alignment=Wyrównanie tekstu\nstage.font.selection=Font\nstage.background.colour=Kolor tła\nstage.lyrics.colour=Kolor tekstu\nstage.chord.colour=Kolor akordów\nleft=Do lewej\ncentre=Do środka\nright=Do prawej\nconfirm.label=Jesteś pewien?\nschedule.clear.text=Zestaw został zmodyfikowany. Kontynuować bez zapisu?\npart=część\nhelp.menu.facebook=Strona Facebook\nvideo.error=Nie można zainicjalizować bibliotek wideo - odtwarzanie wideo nie będzie działać. Zadaj pytanie na forum dyskusyjnym (menu Pomoc) jak rozwiązać problem.\nvideo.error.title=Błąd wideo\ntext.shadow.label=Wyświetlaj cień tekstu\nadding.images=Dodawanie obrazów...\nsetup.oo.failed.text=Błąd w ustawieniu OpenOffice do wyświetlania prezentacji. Upewnij się, że OpenOffice został prawidłowo zainstalowany i jego ścieżka jest prawidłowa.\nsetup.oo.failed.title=Błąd inicjalizacji OpenOffice\nuse.oo.label=Używaj OpenOffice do prezentacji (eksperymentanie)\noo.path=Ścieżka do programu OpenOffice\nbrowse=Przeglądaj...\nloading.text=Ładowanie\nbuilding.bible.index=Ładowanie biblii\nbible.search.title=Wyszukiwacz biblii\ninitial.search.text=<Wprowadź tekst do wyszukania>\nview.bible.button=Przeglądaj biblie...\nsearch.bible.button=Przeszukaj biblie...\nall.text=Wszystkie\nbible.browser.title=Przeglądarka biblii\nopen.in.browser=Otwórz w przeglądarce...\nkingsway.button.all=Wszystkie pieśni\nkingsway.button.one=Jedna pieśń\nsong.id.selector=Wybierz ID pieśni\nbible.copy.error.text=Niestety, wystąpił błąd podczas kopiowania biblii do katalogu.\nbible.delete.error.text=Niestety, wystąpił błąd podczas usuwania biblii z katalogu.\nbible.copy.error.heading=Błąd\nbible.delete.error.heading=Błąd\nselect.key.label=Wybierz nową tonację:\ntranspose.label=Transponuj\nalready.exists.overwrite.label=już istnieje. Nadpisać?\noverwrite.text=Nadpisz\ncant.save.schedule.title=Błąd podczas zapisu zestawu\ncant.save.schedule.text=Niestety, wystąpił błąd podczas zapisu zestawu.\nerror.removing.song.db=Wystąpił błąd podcza usuwania pieśni z biblioteki.\nconfirm.remove.text=Potwierdzenie usunięcia\nconfirm.remove.question=Na pewno usunąć $1 z biblioteki? Ta operacja nie może być cofnięta.\nquick.edit.text=Szybka edycja\nlibrary.preview.song.text=Podgląd pieśni\nvideo.error.unsupported=Przepraszamy, wybrany plik wideo nie jest wspierany.\nvideo.error.general=Przepraszamy, wybrany plik nie może być odtworzony.\nvideo.theme.label=Wideo\nselect.video.button=Wybierz wideo\nrefresh.images.panel=Odśwież obrazy\nadd.images.panel=Dodaj obrazy\nselect.folder.images.panel=Wybierz folder...\ntext.position.label=Pozycja tekstu\nimage.folder=Folder obrazów:\nquick.insert.text=Szybka wstawka\nconfirm.overwrite.title=Plik już istnieje!\nconfirm.overwrite.text=Plik o takiej nazwie już istnieje. Chcesz zastąpić czy kontynuować bez kopiowania?\nfile.rename.button=Zmień nazwę\nfile.replace.button=Zamień\nfile.continue.button=Kontynuuj\nfile.rename.dialog.title=Zmień nazwę\nfile.rename.dialog.text=Wprowadź nową nazwę pliku:\ninterface.language.label=Język interfejsu\nlanguage.changed=Język został zmieniony\nlanguage.changed.message=Musisz uruchomić ponownie Quelea, aby język został zmieniony.\ndebug.location=Miejsce przechowywania plików Debug Log\ntop.text.position=Na górze\nmiddle.text.position=W środku\nbottom.text.position=Na dole\nshadow.color=Kolor cienia\nshadow.x=Przesunięcie X cienia\nshadow.y=Przesunięcie Y cienia\nselect.imported.songs.line1=Następujące pieśni zostały zaimportowane.\nselect.imported.songs.line2=Wybierz te, które chcesz dodać do biblioteki i kliknij \"Dodaj\".\nselect.imported.songs.line3=Pieśni, które mogą się duplikować są odznaczone.\nadd.text=Dodaj\nadd.to.database.question=Dodać do biblioteki?\nselect.export.songs.line1=Dostępne pieśni w bibliotece\nselect.export.songs.line2=Wybierz te, które chcesz wyeksportować i kliknij \"Dodaj\".\nadd.to.songpack.question=Eksportować pieśń?\nprojection.window.title=Okno projekcji\nclear.live.on.remove.schedule=Wyczyść pozycje z widoku Live podczas usuwania z zestawu\nspelling.complete.text=Sprawdzanie pisowni zostało zakończone.\ncomplete.title=Zakończono\nspelling.check.title=Sprawdzanie pisowni\ncorrect.text=Popraw\nignore.text=Ignoruj\nspelling.errors.in.doc.label=Znaleziono błędy podczas sprawdzania pisowni w dokumencie. Kliknij \"F7\", aby otworzyć okno dialogowe poprawiania pisowni.\nremove.image.text=Usuń obraz\ndelete.image.title=Usuń obraz\ndelete.image.confirmation=Na pewno usunąć ten obraz z biblioteki? Ta operacja nie może być cofnięta.\nnotice.expired.title=Ogłoszenie przeterminowane\nnotice.expired.text=Edytowane ogłoszenie jest przeterminowane. Chcesz je dodać ponownie?\ndictionary.language.text=Język słownika\nconfirm.entry.exit.text=Czy chcesz zapisać zmiany w tej pieśni?\nconfirm.entry.exit.title=Zapisać pieśń?\nsave.text=Zapisz\ndont.save.text=Nie zapisuj\nvlc.warning.title=Nie znaleziono VLC\nvlc.warning.message=Quelea nie mogła znaleźć zainstalowanego VLC w twoim systemie. Bez tego, Quelea nie będzie w stanie odtwarzać wideo, dźwięków ani wyświetlać tekstów z tłem wideo. Czy chcesz teraz pobrać? Konieczny będzie restart Quelea po instalacji VLC.\nvlc.version.message=Wersja VLC jest przestarzała. Konieczna jest aktualizacja, jeśli chcesz odtwarzać wideo, dźwięki lub wyświetlać teksty z tłem wideo. Czy chcesz teraz pobrać? Konieczny będzie restart Quelea po instalacji VLC.\ncontinue.without.video=Kontynuuj bez VLC\ndownload.vlc=Pobierz VLC\nstartup.error.title=Błąd uruchamiania\nstartup.error.text=Niestety, Quelea nie może być uruchomiona z jakiegoś powodu na tym komputerze. Jeśli chcesz pomóc w rozwiązaniu tego problemu wyślij wiadomość na adres  support@quelea.org i dołącz plik raportem o błędach ($1).\\n\\nMożesz także zadać pytanie na forum dyskusyjnym Qelea (https://quelea.discourse.group).\nfilefilters.description.survivor.songbook=plik Survivor acetates\nfilefilters.description.xml.bibles=pliki biblii XML\nfilefilters.description.xml.easyslide=pliki XML Easyslide\nfilefilters.description.xml.files=pliki XML\nfilefilters.description.video.files=pliki wideo\nfilefilters.description.pmsong.files=pieśni Presentation Manager\nfilefilters.description.vs.files=bazy VideoPsalm\nfilefilters.description.audio.files=pliki audio\nfilefilters.description.quelea.schedules=zestawy Quelea\nfilefilters.description.powerpoint.presentations=prezentacje Powerpoint\nfilefilters.description.plain.text.song=pieśń w formacie tekstowym\nfilefilters.description.maintable.dat=pliki bazy ZionWorx MainTable\nfilefilters.description.multimedia.files=pliki multimedialne\nbible.search.results.found=wyników\nbible.search.result.found=wynik\nbible.search.keep.typing=Kontynuuj pisanie...\nuniform.font.size.label=Używaj jednakowej wielkości fontu dla całej pieśni\nmax.font.size.label=Maksymalny rozmiar fontu\nthumbnail.size.label=Rozmiar miniatur\nadditional.line.spacing.label=Dodatkowy odstęp między liniami\nlogo.screen.tooltip=Lewe kliknięcie wyświetla - Prawe kliknięcie wybiera grafikę\nchange.graphics.label=Zmiana wyglądu\nfont.colour.label=Kolor fontu\nbackground.colour.label=Kolor tła\nmobile.lyrics.heading=Mobile Lyrics\nuse.mobile.lyrics.label=Używaj aplikacji Mobile Lyrics\nport.number.label=Numer portu\nnavigate.mob.url.label=Adres URL Mobile Lyrics\nserver.changed.label=Zmiany ustwień serwera\nserver.changed.message=Musisz uruchomić ponownie Quelea, aby zmiany ustawień serwera były aktywne.\nfilefilters.description.zip.files=pliki Zip\nfilefilters.description.sqlite.files=pliki SQLite\nloop.label=Pętla\nseconds.label=sekund\nchosen.fonts.explanation=Quelea wyświetla wybór fontów w oknie motywu. Przeciągnij używane fonty z lewego do prawego panelu, nieużywane z prawego do lewego.\nignored.fonts.label=Dostępne fonty\nchosen.fonts.label=Wybrane fonty\nfont.selection.dialog.title=Wybór fontów\nvideo.hue.label=Odcień\nhover.for.position.label=Wybierz pole, aby ustawić pozycję tekstu\ntest.patterns.text=Obrazy testowe\ntest.patterns.explanation=Dostępne tu obrazy testowe pomogą skalibrować ustawienia ostorści i kolorów ekranu projekcyjnego. Kliknij dowolny, aby wyświetlić je na ekranie głównym i promptera.\nyoutube.url.label=Adres URL YouTube\nno.tdb.heading=Nie znlaneziono TurboDB Data Exchange\nno.tdb.message=Z powodów technicznych najpierw należy pobrać TurboDB data exchange (https\\://www.dataweb.de/en/support/downloads.html) zanim Quelea będzie w stanie importować bazy ZionWorx.\\nJeśli już zostało pobrane, rozpakuj zawartość pliku zip do $1.\\n\\nJeśli są problemy poproś o pomoc na forum (https://quelea.discourse.group).\nshow.verse.numbers=Wyświetlaj numery wersetów\nadd.song.hint.text=Brak pieśni? Nie ma problemu. Aby dodać, kliknij \"Nowa pieśń\" po lewej stronie.\nadd.song.hint.search.text=Brak pieśni odpowiadających warunkom wyszukiwania. Aby dodać, kliknij \"Nowa pieśń\" po lewej stronie.\nfilefilters.description.songs.mb=Baza Easyworship Songs.MB\nfilefilters.description.songs.missionpraise=pliki RTF Mission Praise\nfilefilters.description.songs.worshiphim=pliki MDB Worship Him\ntranslate.tooltip=Tłumaczenia pieśni\nclose.button=Zamknij\nadd.translation.button=Dodaj tłumaczenie...\nenter.translation.name.label=Na jaki język chcesz przetłumaczyć?\ntranslate.dialog.title=Mededżer tłumaczeń\nconfirm.remove.translation.title=Usunąć tłumaczenie?\nconfirm.remove.translation.text=Na pewno usunąć to tłumaczenie?\ndefault.translation.label=Tekst pieśni\noverwrite.lyrics.title=Nadpisać istniejące teksty?\noverwrite.lyrics.text=Automatycznie przetłumaczyliśmy teksty dla Ciebie - chcesz ich użyć?\\nTwoje bieżące tłumaczenie zostanie zastąpione.\nauto.translate.label=Próbuj automatycznie przetłumaczyć teksty\nchoose.translations.text=Wybierz tłumaczenie\nselect.translation.label=Wybierz tłumaczenie, które chcesz dołączyć do domyślnego tekstu:\ntranslate.heading=Tłumaczenia\nremote.logo.text=Logo\nremote.black.text=Czarny<br />ekran\nremote.clear.text=Wyczyść\nremote.next.text=Następny<br />slajd\nremote.prev.text=Poprzedni<br />slajd\nremote.nextitem.text=Następna<br />pozycja\nremote.previtem.text=Poprzednia<br />pozycja\nserver.settings.heading=Serwer\nuse.remote.control.label=Używaj aplikacji pilota Mobile Remote\nnavigate.remote.control.label=Adres URL Mobile Remote\nremote.empty.lyrics=Tekst będzie wyświetlany tutaj\nremote.control.password=Hasło pilota (z uwzględnieniem wielkości liter)\nremote.logout.text=Wyloguj\nremote.login.text=Podaj hasło pilota Mobile Remote, aby kontynuować\nremote.submit.text=Zaloguj\nmore.font.options.label=Więcej ustawień fontów\nmore.fonts.label=Więcej fontów\ntranslation.font.text=Font dla tłumaczeń\nshadow.text=Cień\nsaving.schedule=Zapisywanie zestawu...\nsmall.text.position.label=Pozycja informacji o pieśni i biblii\nbible.passage.selector.prompt=[Rozdział]:[Werset]-[Werset]\ntheme.button.tooltip=Ustaw ogólny motyw dla zestawu\ncurrently.displaying.text=Obecnie wyświetlane\nplay=Odtwórz\npause=Pauza\nshow.small.song.text.label=Wyświetlaj małe info pieśni\nshow.small.song.on.slides.label=Wyświetlaj na slajdzie\nfirst=Pierwszym\nlast=Ostatnim\nall=Każdym\nshow.small.bible.text.label=Wyświetlaj małe info wersetu biblii\nuse.bible.verses=Dziel cytaty z biblii na\nmax.items.per.slide=Maksymalna liczba % na slajd\nverses=wersetów\nwords=słów\nedit.bible.passage.text=Edytuj motyw cytatów\nnotice.colour.text=Kolor fontu\nnotice.font.text=Font\nnotice.speed.text=Prędkość przewijania\nnotice.background.colour.text=Kolor tła\nnotice.position.text=Pozycja ogłoszeń\nnotice.font.size=Wielkość fontu\nnotice.options.heading=Ogłoszenia\nexport.pdf.button=Eksportuj do PDF\npdf.button=PDF\nexport.schedule.pdf.button=Eksportuj kolejność do PDF\nfilefilters.description.pdf.files=pliki PDF\nnot.started.label=Nie uruchomione\nquelea.schedule.text=Zestaw Quelea\nuser.options.options=Opcje użytkownika\ntext.options.options=Opcje tekstu\nstretch.video.label=Rozciągnij wideo\nexport.schedule.songs.pdf.button=Eksportuj pieśni do PDF\nexporting.label=Eksportowanie\nuse.shadow.label=Użyć cienia?\nshadow.color.label=Kolor\nshadow.offset.label=Przesunięcie\nshadow.radius.label=Rozmycie\nshadow.spread.label=Intensywność\nhelp.menu.manual=Podręcznik\nedit.theme.text=Edytuj motyw\nchange.bible.version.text=Przełącz wersję\nswitch.to.text=Przełącz na\nsave.qr.code.text=Zapisz kod QR\nnonbreak.tooltip=Wstaw niełamliwą linię\ncopying.video.please.wait.text=Proszę czekać - trwa kopiowanie pliku wideo file...\ntranslating.text.please.wait.text=Zaczekaj chwilę - trwa tłumaczenie...\nfilefilters.description.usr.files=pliki USR (SongSelect)\nsongselect.import.line1=Poniżej wybierz pliki SongSelect.\npm.import.line1=Wybierz pieśni do zaimportowania z Presentation Manager.\nsmi.import.line1=Wybierz pieśni do zaimportowania z Screen Monkey.\nsongselect.button=SongSelect\nvideopsalm.button=VideoPsalm\npm.button=Presentation Manager\nsm.button=Screen Monkey\ntranslation.export.heading=Eksport tłumaczenia\ninclude.translations.question=Dołączyć tłumaczenia w pliku PDF?\nslide.text=Slajd\nautoplay.vid.label=Automatyczne odtwarzanie wideo w panelu Live\nadvance.on.live.label=Podgląd następnej pozycji po wyświetleniu bieżącej w panelu Live\ndelete.translation.title=Usuń tłumaczenie\ndelete.translation.text=Usunąć tłumaczenie $1?\nhelp.menu.wiki=Dokumentacja\npreview.on.image.change.label=Podgląd pozycji przy zmianie obrazu\nadd.timer.tooltip=Dodaj timer\nfilefilters.description.image.video.files=Pliki wideo i obrazów\ntimer.duration.label=Czas odliczania\ntimer.file.label=Plik tła\nduration.tooltip.label=#:## lub ##m##s lub ##:##am\ntranslation.choice.title=Wybór tłumaczenia\nfont.options.title=Opcje fontu\nnew.translation.title=Nowe tłumaczenie\nadd.timer.title=Dodaj timer\nuntitled.theme.text=Motyw bez nazwy\ntimer.text.label=Dodatkowy tekst\ntimer.text.prompt=Użyj #, aby wstawić timer, np. \"Nabożeństwo rozpocznie się za #\" wyswietli \"Nabożeństwo rozpocznie się za 05:00\"\ncountdown.label=Timer\ntimer.theme.label=Ustawienia motywu\ntimer.theme.button=Zmień motyw\nembed.media.in.schedule=Zapisuj media w pliku zestawu\nmediashout.import.line1=Poniżej wybierz miejsce bazy MediaShout (eksportowane do formatu txt):\nworshiphim.import.line1=Poniżej wybierz miejsce bazy Worship Him (w formacie mdb):\nsongbeamer.import.line1=Poniżej wybierz miejsce plików SNG, które chcesz zaimportować:\nfilefilters.description.txt.files=pliki .txt\nmediashout.button=MediaShout\nworshiphim.button=Worship Him\nsongbeamer.button=SongBeamer\nclear.stage.view=Wyczyść ekran promptera wraz z głównym projektorem\ntop=Góra\nbottom=Dół\nepicworship.import.line1=Import pieśni z pliku (.epc) EpicWorship.\nfilefilters.description.epc=pieśni EpicWorship .epc\nepicworship.button=EpicWorship\nadd.videos.panel=Dodaj wideo\nremove.video.text=Usuń wideo\ndelete.video.title=Usuń wideo\ndelete.video.confirmation=Czy chcesz usunąć ten klip wideo z biblioteki? Tego polecenia nie można cofnąć.\nlibrary.video.heading=Wideo\ntimer.files.description=Timery\nadd.timers.panel=Dodaj timery\nlibrary.timer.heading=Timery\ntimer.save.label=Zapisać timer?\ntimer.name.label=Nazwa\nedit.timer.text=Edytuj timer\nremove.timer.text=Usuń timer\nconfirm.remove.timer=Usunąć $1 z listy timerów? Ta operacja nie może być cofnięta.\nkingsway.button.range=Zakres\nkingsway.range.import.text=Wprowadź zakres stron pieśni do pobrania z witryny Kingsway.\\nBieżąca makszymalna ilość stron to około 3600.\nkingsway.range.import.heading=Importuj zakres pieśni Kingsway\nsdb.files.description=pliki bazy Songpro\nsongpro.button=SongPro\noverflow.song.label=Przechodź do następnej pieśni po zakończeniu bieżącej\ninvalid.search=Błąd wyszukiwania\nrcs.add.failed=Dodawanie nie powiodło się\nrcs.add.success=Pomyślnie dodano\nrcs.add.song=Dodaj pieśń do zestawu\nrcs.add.bible.error=Wystąpił błąd podczas dodawania $1 do zestawu\nrcs.submit=Prześlij\nrcs.song.search=Pieśń\nrcs.bible.search=Biblia\nrcs.search=Znajdź i dodaj\nshow.video.library.panel=Wyświetlaj zakładkę wideo w panelu biblioteki (wymaga restartu)\nuse.24h.clock=Używaj zegara 24-godzinnego\nsplit.bible.verses=Nie dziel wersetów pomiędzy slajdami\nno.verse.title=Brak wersetów\nno.verse.message=Nie znaleziono jednego lub więcej wersetów. Kontynuuję bez nich.\nchorus.tooltip=Dodaj znacznik refrenu\nrecordings.path=Ścieżka do folderu nagrań\ndownload.path=Ścieżka folderu pobrań\nconvert.mp3=Automatycznie konwertuj nagrania do MP3 (wymaga VLC)\nrecording.warning.title=Najpierw ustaw ścieżkę dla nagrań\nrecording.warning.message=Musisz ustawić miejsce zapisu nagrań w panelu ustawień.\nrecording.no.devices.title=Brak urządzeń z możliwością nagrywania\nrecording.no.devices.message=Niestety, brak kompatybilnych urządzeń do nagrywania.\\nUpewnij się, że odpowiednie urządzenie jest włączone i aktywne.\nsave.recording.before.exit.title=Niezapisane nagrania\nsave.recording.before.exit.message=Chcesz zapisać nagranie przed wyjściem?\nrecord.audio.tooltip=Nagraj dźwięk\npause.record.tooltip=Wstrzymaj nagranie\nmax.lines.per.slide=Linii na slajd (w przybliżeniu)\npresentation.options.heading=Prezentacje\nrecordings.options.heading=Nagrania\ncopy.song.db.default=Domyślnie kopiuj pieśni do zestawu\nimportexport.options.heading=Import/Eksport\nmp.button=Mission Praise\nadd.pdf.tooltip=Dodaj PDF\npreview.failed=Błąd podglądu\nset.loop.manually.title=Nie znaleziono PowerPoint\nset.loop.manually.message=Prezentacja została zamknięta. Jeśli chcesz użyć funkcji pętli Quelea wraz z PowerPoint Viewer, musisz ręcznie ustawić pętlę prezentacji podczas jej tworzenia.\npresentation.changed.message=Musisz uruchomić ponownie Quelea, aby nowe ustawienia prezentacji zaczęły działać.\npresentation.changed.label=Zmiana ustawień prezentacji\npresentation.not.started.label=PowerPoint nie został uruchomiony\npresentation.not.started.message=Niestety, prezentacja nie mogła zostać odtworzona z PowerPoint. Możliwe jest uszkodzenie pliku?\npp.already.running.label=PowerPoint już został uruchomiony\npp.already.running.message=PowerPoint już został uruchomiony. Proszę zamknąć wszystkie prezentacje PowerPoint zanim zostaną uruchomione w Quelea, aby zapobiec utracie danych.\npp.path.label=Ścieżka do programu PowerPoint\nuse.pp.label=Użyj PowerPoint do prezentacji\nclose.all.presentations.label=Zamknij wszystkie otwarte prezentacje\nclose.all.presentations.message=Przed naciśnięciem OK zamknij wszystkie okna PowerPoint lub zostanie zrobione to automatycznie, aby uniknąć wyświetlenia nieprawidłowego sygnału.\nlive.text.message=Tekst wprowadzony poniżej będzie wyświetlony użytkownikom Mobile Lyrics, gdy główny ekran jest pusty.\\n\\nUżyj pustej linii, aby rozpocząć nowy slajd. Możesz również nacisnąć przycisk Wyczyść (or CTRL + Enter), aby zresetować. Możesz wprowadzić maksymalnie 200 znaków.\nlive.text.title=Live Text\nexit.live.text=Wyjdź z Live Text\nclear.live.text=Wyczyść\ndefault.translation=Domyślny\nselect.language=Wybierz język:\nsend.live.text=Live Text\nconverting.to.mp3=Konwertowanie nagrania do MP3\nverse.tooltip=Dodaj znacznik zwrotki\nbridge.tooltip=Dodaj znacznik mostu\nprechorus.tooltip=Dodaj znacznik przedrefrenu\ntag.tooltip=Dodaj nazwę etykiety\nadd.website=Dodaj witrynę internetową\nfocus.switcher.title=Przełącznik aktywnych okien Quelea\nfocus.switcher.message=W razie potrzeby tutaj przełączaj aktywne okna podczas prezentacji.\nfocus.pp=Uaktywnij okno PowerPoint\nfocus.quelea=Uaktywnij okno Quelea\nwebsite.dialog.title=Nazwa witryny\nwebsite.dialog.header=Wprowadź adres URL\nwebsite.dialog.content=Wprowadź witrynę, którą chcesz wyświetlić:\npaste.label=Wklej\nundo.label=Cofnij\nredo.label=Ponów\nshow.extra.live.panel.toolbar.options.label=Wyświetlaj dodatkowy pasek narzędzi panelu Live\nsave.add.notice.button=Zapisz i dodaj\nsaved.notices=Zapisane ogłoszenia\ndelete.notice.button=Usuń\nschedule.items.skipped.text=Niektóre elementy zestawu nie mają dołączonych mediów, więc nie będą dodane.\nschedule.items.skipped.header=Pominięte pozycje zestawu\nvideo.loop.tooltip=Wyłącz / włącz odtwarzanie w pętli\nallow.item.theme.override.global=Zezwalaj motywom pozycji nadpisywać ogólny motyw\nsong.default.theme.label=Domyślny pieśni\nbible.default.theme.label=Domyślny biblii\ninterface.theme.label=Motyw aplikacji\ndefault.theme.label=Domyślny\ndark.theme.label=Ciemny\ntheme.changed=Motyw został zmieniony\ntheme.changed.message=Musisz uruchomić ponownie Quelea, aby zmiana motywu została zastosowana.\ndb.song.preview.label=Podgląd pieśni z biblioteki\ndb.song.preview.label.control=Brak\ndb.song.preview.label.databasepreview=W panelu biblioteki\ndb.song.preview.label.previewpane=W panelu podglądu\ntranslation.text.options=Opcje tłumaczenia tekstu\nchosen.sequence.label=Wybrana kolejność\ngeneral.user.options=Główne opcje użytkownika\nremote.action.slide=Przejdź do następnego/poprzedniego slajdu\nclient.id=Identyfikator klienta\nremote.signal.failed=Nastąpił problem podczas przesyłania informacji do serwera\nremote.double.press.title=Akcja przy podwójnym kliknięciu\nsequence.selection.dialog.title=Wybór kolejności\ninterface.options.options=Opcje interfejsu\npp.path=Ścieżka do programu PowerPoint\nremote.select.book=Wybierz książkę\nremote.about.title=O aplikacji\nremote.select.chapter.verses=Wybierz rozdzial i wers(y)\ngeneral.text.options=Główne ustawienia tekstu\nremote.needs.newer.version=Ta funkcja potrzebuje wersji Quelea $1 lub wyższej\nclick.to.add=Kliknij aby dodać\nstage.show.clock=Pokaż zegar\nremote.privacy.policy=Polityka prywatności\nsong.list=Lista utworów\nremote.enable.dpad.navigation=Włącz nawigację padem\nuse.default.translation.label=Użyj domyślnej translacji\nremote.action.item=Przejdź do następnego/poprzedniego\npassword.empty.label=Wykryto puste hasło\nremote.start.verse=Zacznij wers\nremote.donations.link=Wesprzyj\nremote.port.needed=Adres URL musi posiadać number portu na końcu adresu (np. ':1112'). Spróbuj ponownie.\nfilefilters.description.csv.files=Pliki .csv\nremote.connected=Połączono!\nremote.use.autoconnect=Wykryj adres URL serwera automatycznie\nremote.select.theme=Wybierz motyw\nremote.chapter=Rozdział\nremote.disable.record=Wyłącz przycisk nagrywania\nremote.action.logo=Ukryj tekst i pokaż logo\nenter.valid.port=Wprowadź numer z przedziału od 1029 do 49151\nremote.action.black=Ukryj tekst za czarnym tłem\nremote.action.nothing=Nic nie rób\nremote.report.issue=Zgłoś problem\ntranslation.name.label=Nazwa tłumaczenia\nsmall.song.size.label=Informacje o rozmiarze utworu\nremote.search.server=Przeszukaj serwer\nremote.information.title=Informacje\nsong.sequence=Kolejność utworów:\nremote.choose.action=Wybierz akcję dla $1\nremote.auto.progress.item=Przejdź do następnego/poprzedniego widoku\nremote.end.verse=Koniec wersu\nopen.sequence.editor.tooltip=Pokaż edytor kolejności\nremote.no.wifi=Nie jesteś połączony do wifi. ProszęYou are not connected to a wifi. Please set the URL manually or connect to a wifi.\ntheme.options=Opcje motywu\nremote.about.translating=O tłumaczeniu aplikacji\nremote.source.code=Kod źródłowy\nremote.volume.navigation.description=Użyj klawiszy do sterowania dźwiękiem, aby poruszać się pomiędzy następnym/poprzednim widokiem.\nremote.send.notice.tooltip=Dodaj notatkę"
  },
  {
    "path": "Quelea/languages/pt.lang",
    "content": "LANGUAGENAME=Português (AO)\ndatabase.heading=Banco de Dados\nimport.heading=Importar\nqsp.button=Quelea Song Pack\nos.button=Opensong\nolp.button=OpenLP\nolyrics.button=OpenLyrics\nzw.button=ZionWorx\nsp.button=Sunday Plus\nss.button=Survivor Songbook\nprojector.heading=Projector\ncontrols.heading=Controlos\non.button=On\noff.button=Off\nswitch.input.button=Mudar entrada\ngeneral.options.heading=Geral\ndisplay.options.heading=Exibição\nbible.options.heading=Bíblia\ncheck.for.update.label=Verificar se há actualização na inicialização\n1.monitor.warn.label=Avisar se apenas um monitor está conectado\ncapitalise.start.line.label=Beneficiar o início de cada linha\none.line.mode.label=Apenas mostrar uma linha por secção de cada canção\ndisplay.song.info.label=Mostrar informações sobre a música\ntext.border.thickness.label=Espessura da borda do texto\nmax.chars.line.label=Máximo de caracteres por linha\nadvanced.label=Avançado\nok.button=OK\noutput.text=Saída\ncontrol.screen.label=Ecrã de controlo\nprojector.screen.label=Tela de Projecção\nstage.screen.label=Tela de Púlpito\ncustom.position.text=Posição Personalizada\ndefault.bible.label=Biblia Padrão\nmax.verses.label=Máximo de versos para mostrar de uma vez\nadd.bible.label=Add Bíblia...\nnone.text=Nenhum\nnew.schedule.button=Novo culto\nopen.schedule.button=Abrir culto\nsave.schedule.button=Guardar culto\nsave.as.schedule.button=Guardar culto como...\nprint.schedule.button=Imprimir culto\noptions.title=Opções\noptions.button=Opções\nexit.button=Sair\nnew.schedule.text=Novo Culto\ncreate.new.schedule.text=Criar um culto novo \nopen.schedule.text=Abrir culto\nopen.existing.schedule.text=Abrir culto existente\nsave.schedule.text=Guardar culto\nsave.schedule.disk.text=Guarar culto no disco\nsave.as.schedule.text=Guardar culto como\nsave.as.schedule.disk.text=Guardar culto como arquivo diferente\nprint.schedule.text=Imprimir culto\nprint.current.schedule.text=Imprimir culto actual\noptions.text=Opções\ndisplay.options.text=Mostrar a caixa de diálogo opções\nexit.text=Fechar Quelea\nquit.quelea.text=Fechar o Quelea\nsave.schedule.tooltip=Guardar culto\nprint.schedule.tooltip=Imprimir culto\nlibrary.image.heading=Imagens\nlibrary.songs.heading=Músicas\nlibrary.bible.heading=Bíblias\nbible.heading=Bíblias\nlibrary.song.search=Procurar\nclear.search.box=Limpar pesquisa\nadd.song.text=Adicionar música a base de dados\nremove.song.text=Remover música do banco de dados\nlibrary.add.to.schedule.text=Adicionar ao culto\nlibrary.edit.song.text=Editar música\nlibrary.remove.song.text=Remover música\nlibrary.print.song.text=Imprimir música\nadd.to.schedule.text=Add para culto\norder.service.heading=Ordem de Culto\nmove.down.schedule.tooltip=Mover para baixo no culto\nmove.up.schedule.tooltip=Mover para cima no culto\nremove.song.schedule.tooltip=Remover do culto\nadjust.theme.tooltip=Ajustar tema\nedit.song.text=Editar música\nnew.theme.text=Novo tema...\ntheme.select.text=Selecionar tema:\ndefault.theme.name=Padrão\ndefault.theme.text=Tema padrão\nremove.theme.tooltip=Remover tema\nedit.theme.tooltip=Editar tema\nedit.theme.heading=Editar tema\npreview.heading=Pré-Visualização\nlive.heading=Ao vivo\ngo.live.text=Ao Vivo\nblack.screen.tooltip=Tela preta\nclear.text.tooltip=Limpar tela\nhide.display.output.tooltip=Ocultar exibição\nschedule.heading=Culto\nadd.song.button=Add música\nedit.song.button=Editar música\nremove.item.button=Remover ítem\nadd.multimedia.heading=Add Multimedia\nadd.presentation.button=Add Apresentação\nadd.video.button=Add Video\nadd.youtube.button=Add Video do Youtube \nadd.live.video.button=Add Video ao Vivo\nadd.dvd.button=Add DVD\nadd.audio.button=Audio\nadd.audio.tooltip=Add Audio\nshare.heading=Compartilhar\nemail.button=Enviar Culto por E-mail\nmanage.notices.button=Gerir avisos\nnotices.heading=Avisos\nnew.notice.text=Novo Aviso\nedit.notice.text=Editar Aviso\nremove.notice.text=Remover Aviso\ndone.text=Concluído\nnew.notice.heading=Novo Aviso\nnotice.text=Aviso\nnotice.times.text=Repetir\nnotice.infinite.question=Infinito?\nadd.notice.button=Add aviso\nedit.notice.button=Editar aviso\nyes.text=Sim\nno.text=Não\ncancel.text=Cancelar\nnew.song.button=Nova música\ndelete.song.button=Apagar Música\nsongs.heading=Músicas\ntags.button=Gerir marcas...\nsource.button=A Fonte \neasyslides.button=EasySlides\neasyworship.button=EasyWorship 2009\nplainText.button=Plain text\nkingsway.button=Kingsway Online\nsof.button=Songs of Fellowship\nexport.heading=Exportar\nfilter.tag=Filtrar etiquetas\ntags.colon.label=Etiquetas:\nimport.button=Importar\nclick.select.file.text=Clique para selecionar ficheiro\ncheck.duplicates.text=Verificar duplicados\nedit.song.title=Editar música\nbasic.information.heading=Informação básica\ndetailed.info.heading=Informação detalhada\ntheme.heading=Tema\ntitle.label=Título \nauthor.label=Autor\nrun.spellcheck.label=Verficação ortográfica\nfix.apos.label=Sanitizar apóstrofos\ntrim.lines.tooltip=Linhas de corte\ntranspose.tooltip=Transposição...\ncancel.button=Cancelar\nccli.number.label=Número CCLI \ncopyright.label=Copyright\nyear.label=Ano\npublisher.label=Editor\ntags.label=Tags\ntype.tag.name.here.text=<Nome dos tipos de etiquetas aqui>\nkey.label=Chave\ncapo.label=Capo\nnotes.label=Notas\nfont.theme.label=Fonte\nchoose.color.text=Mudar cor...\nbackground.text=Fundo\nbackground.theme.label=Tema de fundo\ncolor.theme.label=Cor\nimage.theme.label=Imagem\nselect.color.title=Seleccionar Cor\nselect.color.button=Escolher Cor\nnew.song.title=Nova Música\ntype.lyrics.here.text=Digite as letras aqui\nplaintext.import.line1=Importar músicas da biblioteca no directório que contêm músicas como ficheiros de texto simples.\nkingsway.import.line1=Importar a biblioteca de música do Kingsway online.\nkingsway.import.line2=Isso vai demorar muito tempo (potencialmente horas!) Por favor, seja paciente e deixe o Quelea processar!\neasyslides.import.line1=Importar músicas de um arquivo XML EasySlides.\neasyworship.import.line1=Importar músicas de um arquivo EasyWorship Songs.MB.\nopenlyrics.import.line1=Importar música de um arquivo zip do openlyrics abaixo.\nqsp.import.line1=Seleccione o local do ficheiro do SongPack abaixo.\nos.import.line1=Seleccione a localização da base de dados OpenSong abaixo.\nzw.import.line1=Seleccione o local do arquivo ZionWorx \"MainTable.dat\" abaixo.\nzw.import.line2=Geralmente pode ser encontrada em \"C:\\\\ProgramData\\\\ZionWorx\\\\2.6\\\\Data\".\nolp.import.line1=Seleccione a localização da base de dados do OpenLP abaixo.\nsundayplus.import.line1=Seleccione a localização da base de dados do Sunday Plus indicados a seguir.\nsource.import.line1=Seleccione a localização do diretório ymns no CD de origem.\nsurvivor.import.line1=Seleccione o local do PDF Survivor Songbook abaixo.\nsurvivor.import.line2=Este deve ser o arquivo acetates.pdf, não os acordes de guitarra ou a partitura.\nimport.error.message=Desculpe, houve um problema com a importação. Por favor, sinta-se livre para pedir ajuda no grupo de discussão do Quelea: https://quelea.discourse.group\nemail.error.title=Email error\nemail.error.text=Houve um erro ao abrir o seu cliente de e-mail. Certifique-se de que você tem um cliente de e-mail instalado e registrado para lidar com Ficheiros EML, caso contrário, você terá que enviar o e-mail manualmente.\nemail.text=Oi! Em anexo está um ficheiro do culto. Basta abri-lo com o Quelea e todos os itens devem aparecer correctamente.\nselect.image.button=Seleccionar Imagem\nimage.files.description=Ficheiros de imagem\ntools.label=Ferramentas\nselect.songs.title=Seleccionar músicas\ncheck.uncheck.all.text=Marcar/Desmarcar todos\ndelete.theme.confirm.title=Confirmar eliminar\ndelete.theme.question=Tem certeza de que pretende eliminar o tema?\ntoo.many.verses.error=Desculpe, não pode exibir muitos versos ... tente um número menor.\none.monitor.warning=Parece que só tem um monitor ligado. Use um apenas se estiver a para preparar o culto, mas se você estiver usando-o ao vivo precisa de 2 monitores para funcionar correctamente.\none.monitor.title=Monitor\nno.dvd.heading=Disco não encontrado\nno.dvd.error=Por favor, insira um DVD válido ou Blu-ray.\nadding.presentation.status=A importar apresentação...\nadding.presentation.error.message=Houve um erro ao importar a apresentação, talvez esteja corrompido?\nadding.presentation.error.title=Erro ao importar apresentação\nimporting.status=A importar...\nname.label=Nome\nsimilar.colors.text=Você optou por cores muito semelhantes para as palavras e o fundo, será difícil para a congregação ver. Eu aconselho você a escolher as melhores cores!\nwarning.label=Atenção\nfile.menu=Ficheiro\ntools.menu=Ferramentas\nschedule.menu=Culto\ndatabase.menu=Banco de Dados\nprojector.menu=Projector\nnew.theme.title=NovoTema\nadd.theme.label=Add Tema\ntheme.name.label=Nome do Tema\nhelp.menu=Ajuda\nhelp.menu.website=Website\nhelp.menu.discussion=Supporte / Discussão (perguntas frequentes aqui)\nhelp.menu.download=Download\nhelp.menu.update=Verificar Se Há Actualizações\nhelp.menu.about=Sobre...\nhelp.menu.error.title=Erro\nhelp.about.title=Sobre\nhelp.about.version=Versão\nhelp.about.close=Fechar\nhelp.about.line1=O Quelea está licenciado sob a GPL (Version 3.)\nhelp.about.line2=É, e sempre será, software livre e de código aberto.\nnew.schedule.tooltip=Novo Culto\nopen.schedule.tooltip=Abrir Culto\nnew.song.tooltip=Nova Música\nadd.presentation.tooltip=Add Apresentação\nadd.dvd.tooltip=Add DVD\nadd.video.tooltip=Add Video\nmanage.tags.tooltip=Gerir Etiquetas\nmanage.notices.tooltip=Gerir Avisos\nalready.running.error=Parece que você já tem uma instância do Quelea em execução. \\nCertifique-se de fechar todas as outras instâncias antes de executar o programa.\nalready.running.title=Já em execução\nerror.schedule.message=Houve um problema ao abrir o culto. Talvez esteja corrompido, ou não é um culto salvo pelo Quelea.\nerror.schedule.title=Erro ao abrir culto\nprint.chords.question=Incluir os acordes ao imprimir essa música?\nprinting.options.text=Imprimir música\nspace.key=espaço\nupdating.db=A Actualizar Banco de dados\nerror.updating.song.text=Houve um erro ao actualizar a canção no banco de dados, pode estar corrompido.\nerror.text=Erro\nquick.shortcut.description=Escape para cancelar, Shift+Enter para Guardar\nsave.before.exit.text=O culto foi modificado. Guarda antes de sair?\nsave.before.exit.title=Culto não salvo\nno.chords.message=Esta canção não tem nenhuma linha de acordes para a transposição.\nno.chords.title=Nenhuma cifra\nerror.checking.updates.title=Não foi possível verificar actualizações\nerror.checking.updates.text=Desculpe, houve um erro de verificação de atualizações. Por favor, verifique sua conexão com a internet e tente novamente.\nnewer.version.available=Está uma versão mais recente do Quelea disponível\nno.newer.version.available=Você está executando a versão mais recente de Quelea\nvisit.webpage.now=Visitar o site para baixá-lo agora?\ndownload.manual.update=Você pode baixá-lo aqui\nnewer.version.available.title=Actualização disponível\nno.newer.version.available.title=Já foi actualizado!\ncheck.kingsway.start=Você já importou alguns itens da biblioteca Kingsway. Você quer começar a importar a partir de onde você parou?\ncheck.kingsway.start.title=Itens já importados\nimport.no.songs.title=Músicas não encontradas\nimport.no.songs.text=Não conseguimos encontrar músicas para importar.\nstage.options.heading=Tela de Púlpito\nstage.show.chords=Mostrar acordes?\nstage.line.alignment=Alinhamento de texto\nstage.font.selection=Tipo de letra\nstage.background.colour=Cor do fundo \nstage.lyrics.colour=Cor da letra\nstage.chord.colour=Cor do acorde\nleft=Esquerda\ncentre=Centro\nright=Direita\nconfirm.label=Você tem certeza?\nschedule.clear.text=O culto foi modificado. Continuar sem Guardar?\npart=parte\nhelp.menu.facebook=Facebook \nvideo.error=Não foi possível inicializar as bibliotecas de vídeo - o vídeo não vai funcionar. Por favor, pergunte na lista de discussão (veja o menu de ajuda) para obter ajuda par resolver isso.\nvideo.error.title=Erro de Video\ntext.shadow.label=Ver somba no texto\nadding.images=A adicionar imagens...\nsetup.oo.failed.text=Falha ao configurar o OpenOffice para exibir apresentações. Por favor, verifique se você tem o OpenOffice instalado e se o caminho fornecido está correcto.\nsetup.oo.failed.title=O OpenOffice falhou ao inicializar\nuse.oo.label=Usar o OpenOffice para apresentações\noo.path=Caminho para o OpenOffice\nbrowse=Procurar...\nloading.text=A carregar\nbuilding.bible.index=A carregar biblias\nbible.search.title=Pesquisar na Biblia\ninitial.search.text=<Digite aqui para pesquisar>\nview.bible.button=Navegar na Biblia...\nsearch.bible.button=Pesquisar na Biblia...\nall.text=Todas\nbible.browser.title=Navegar na Bíblia\nopen.in.browser=Abrir no navegador...\nkingsway.button.all=Todas as músicas\nkingsway.button.one=Uma canção\nsong.id.selector=Por favor, selecione a ID da canção\nbible.copy.error.text=Desculpe, houve um erro ao copiar a Bíblia para o diretório pretendido.\nbible.copy.error.heading=Erro\nselect.key.label=Selecionar nova chave:\ntranspose.label=Transporte\nalready.exists.overwrite.label=Já existe. Substituir?\noverwrite.text=Substituir\ncant.save.schedule.title=Erro ao Guardar culto\ncant.save.schedule.text=Desculpe, ocorreu um erro e o culto não pode ser salvo.\nerror.removing.song.db=Houve um erro ao remover a canção do banco de dados.\nconfirm.remove.text=Confirme remover\nconfirm.remove.question=Tem certeza que quer remover $1 do banco de dados? Esta acção não pode ser desfeita.\nquick.edit.text=Edição Rápida\nlibrary.preview.song.text=Previsualizar canção\nvideo.error.unsupported=Desculpe, o arquivo de vídeo que você seleccionou não é suportado.\nvideo.error.general=Desculpe, houve um erro com o arquivo de vídeo que você selecionou.\nvideo.theme.label=Video\nselect.video.button=Seleccionar Video\nrefresh.images.panel=Actualizar Imagens\nadd.images.panel=Add Images\nselect.folder.images.panel=Seleccionar pasta...\ntext.position.label=Posição do Texto\nimage.folder=Pasta da Imagem:\nquick.insert.text=Inserção Rápida\nconfirm.overwrite.title=O ficheiro já existe!\nconfirm.overwrite.text=Este ficheiro já existe. Você gostaria de substituí-lo ou continuar sem copiar?\nfile.rename.button=Renomear\nfile.replace.button=Substituir\nfile.continue.button=Continuar\nfile.rename.dialog.title=Renomear\nfile.rename.dialog.text=Digite o novo nome do ficheiro:\ninterface.language.label=Idioma da Interface:\nlanguage.changed=Idioma alterado\nlanguage.changed.message=Você deve reiniciar o Quelea para a alteração surtir efeito.\ndebug.location=Debug Log Location\ntop.text.position=Topo\nmiddle.text.position=Meio\nbottom.text.position=Inferior\nshadow.color=Cor da Sombra\nshadow.x=Deslocamento da Sombra em X\nshadow.y=Deslocamento da Sombra em Y\nselect.imported.songs.line1=As seguintes canções foram importados.\nselect.imported.songs.line2=Escolha o que você deseja adicionar à base de dados, em seguida, clique em \"Add\".\nselect.imported.songs.line3=Canções que o Quelea pensa serem duplicadas foram desmarcadas.\nadd.text=Add\nadd.to.database.question=Adicionar ao banco de dados?\nselect.export.songs.line1=As seguintes músicas estão no banco de dados.\nselect.export.songs.line2=Escolha o que você deseja exportar, em seguida, clique em \"Add\".\nadd.to.songpack.question=Exportar canção?\nprojection.window.title=Tela de Projecção\nclear.live.on.remove.schedule=Limpar item da exibição ao vivo na remoção do culto\nspelling.complete.text=Verificação ortográfica concluída.\ncomplete.title=Completo\nspelling.check.title=Verificação ortográfica\ncorrect.text=Correcto\nignore.text=Ignorar\nspelling.errors.in.doc.label=Há erros de ortografia no documento. Aperte \"F7\" para abrir a caixa de diálogo de verificação ortográfica.\nremove.image.text=Remover Imagem\ndelete.image.title=Excluir Imagem\ndelete.image.confirmation=Quer remover esta imagem da biblioteca? Esta acção não pode ser desfeita.\nnotice.expired.title=Aviso terminado\nnotice.expired.text=O anúncio que você está editando terminou. Você deseja adicioná-lo novamente?\ndictionary.language.text=Dicionário Língua\nconfirm.entry.exit.text=Você deseja guardar as alterações nesta canção?\nconfirm.entry.exit.title=Guardar música?\nsave.text=Guardar\ndont.save.text=Não Guardar\nvlc.warning.title=Não foi possível encontrar VLC\nvlc.warning.message=O Quelea não pode encontrar o VLC no seu sistema. Sem ele, o Quelea não será capaz de reproduzir vídeos, áudio e mostrar canções com fundos de vídeo. Você quer baixá-lo agora? Você precisará reiniciar o Quelea depois de ter instalado o VLC para que as alterações tenham efeito.\nvlc.version.message=Sua versão do VLC é muito antiga. Você vai precisar fazer o download da última para reproduzir vídeos, áudio e vídeo de fundo. Você quer baixá-lo agora? Você precisará reiniciar o Quelea depois de ter instalado o VLC para que as alterações tenham efeito.\ncontinue.without.video=Continuar sem o VLC\ndownload.vlc=Download VLC\nstartup.error.title=Erro ao iniciar\nstartup.error.text=Desculpe, o Quelea não pode iniciar por algum motivo em seu sistema. Se você quiser ajudar, por favor envie um e-mail para support@quelea.org e anexa o arquivo de log de debug ($1).\\n\\nAlternativamente, não hesite em perguntar no grupo de discução do Quelea (https://quelea.discourse.group).\nfilefilters.description.survivor.songbook=Ficheiros Survivor acetates\nfilefilters.description.xml.bibles=Biblias XML \nfilefilters.description.xml.easyslide=Ficheiros Easyslide XML \nfilefilters.description.xml.files=Ficheiros XML\nfilefilters.description.video.files=Ficheiros de Video\nfilefilters.description.audio.files=Ficheiros de Audio \nfilefilters.description.quelea.schedules=Quelea Cultos\nfilefilters.description.powerpoint.presentations=Apresentações do Powerpoint \nfilefilters.description.plain.text.song=Canção de texto simples\nfilefilters.description.maintable.dat=Arquivo de banco de dados do ZionWorx MainTable\nbible.search.results.found=Resultados encontrados\nbible.search.result.found=Resultado encontrado\nbible.search.keep.typing=A digitar...\nuniform.font.size.label=Usar tamanho uniforme de letra\nmax.font.size.label=Tamanho máximo da letra\nadditional.line.spacing.label=Espaçamento entre linhas adicionais\nlogo.screen.tooltip=Clique com o botão esquerdo para exibir- botão direito do mouse para escolher\nchange.graphics.label=Mudar gráficos\nfont.colour.label=Cor da letra\nbackground.colour.label=Cor do Background \nmobile.lyrics.heading=Letras de músicas para Mobille\nuse.mobile.lyrics.label=Usar músicas para Mobille\nport.number.label=Porta Número\nnavigate.mob.url.label=URL da Música Para Mobille\nserver.changed.label=Modificar Configurações do Servidor\nserver.changed.message=Você precisará reiniciar o Quelea para que as novas configurações do servidor possam ter efeito.\nfilefilters.description.zip.files=Ficheiros Zip \nfilefilters.description.sqlite.files=Ficheiros SQLite \nloop.label=Loop\nseconds.label=segundos\nchosen.fonts.explanation=O Quelea só mostra uma selecção de fontes na janela do tema. Arraste as fontes que você usa no painel esquerdo para o painel direito, remover aquelas que não usas a partir da direita para a esquerda.\nignored.fonts.label=Ignorar letra\nchosen.fonts.label=Letras escolhidas\nfont.selection.dialog.title=Letras seleccionadas\nvideo.hue.label=Tom\nhover.for.position.label=Passe o mouse sobre a tela para definir a posição do texto\ntest.patterns.text=Padrões de Teste\ntest.patterns.explanation=Os padrões de teste disponíveis aqui devem ajudar a calibrar o foco e a cor das configurações do seu monitor correctamente. Clique na imagem de um teste para calibrar a Tela de Projecção e a Tela de púlpito.\nno.tdb.heading=TurboDB Data Exchange não encontrado\nno.tdb.message=Por razões técnicas, você precisa baixar o intercâmbio de dados TurboDB (https\\://www.dataweb.de/en/support/downloads.html) antes do Quelea poder importar bases de dados ZionWorx.\\nQuando você baixar, extraia o conteúdo do arquivo zip para $1.\\n\\n Se você tiver quaisquer problemas, então sinta-se livre para perguntar no grupo de discussão (https://quelea.discourse.group).\nno.pdb.heading=Paradox JDBC driver não encontrado\nno.pdb.message=Por razões técnicas, você precisa baixar o driver JDBC Paradox antes do Quelea poder importar de forma confiável os bancos de dados do EasyWorship :\\n\\n1. Vá até http://www.hxtt.com/download.jsp e se inscreva numa conta gratuita para continuar. \\n2. Faça o download do Pacote \"DBF JDBC 4.1 e o arquivo JDK1.7.X e JDK1.8.X\" Ele deve ser chamado Paradox_JDBC41.jar. \\n3. Copiar Paradox_JDBC41.jar para $1. \\n\\n Se você tiver quaisquer problemas, então sinta-se livre para perguntar no grupo de discussão (https://quelea.discourse.group). O Quelea ainda vai tentar importar o banco de dados EasyWorship sem este ficheiro no lugar, mas pode dar resultados não confiáveis.\nshow.verse.numbers=Mostrar o número do verso (versículo)\nadd.song.hint.text=Não há músicas aqui ainda, mas não se preocupe! Para adicionar uma música, basta clicar no botão \"Nova Música\" no lado esquerdo.\nadd.song.hint.search.text=Não há músicas aqui combinando com esta pesquisa ainda, mas não entre em pânico! Para adicionar uma música, basta clicar no botão \"Nova Música\" no lado esquerdo.\nfilefilters.description.songs.mb=Banco de dados EasyWorship Songs.MB\ntranslate.tooltip=Traduções de músicas\nclose.button=Fechar\nadd.translation.button=Add tradução...\nenter.translation.name.label=Que idioma você gostaria de traduzir para a música?\ntranslate.dialog.title=Gerenciador de tradução\nconfirm.remove.translation.title=Remover tradução?\nconfirm.remove.translation.text=Quer mesmo excluir esta tradução?\ndefault.translation.label=Tradução padrão\noverwrite.lyrics.title=Substituir letras existentes?\noverwrite.lyrics.text=Traduzimos as letras automaticamente para você - se você quiser usá-las \\nA tradução actual será substituída?.\nauto.translate.label=Tentativa de auto-traduzir músicas\nchoose.translations.text=Mudar tradução\nselect.translation.label=Selecione a tradução que você gostaria de \\n ver projectada, além das letras padrão:\ntranslate.heading=Traduções\nremote.logo.text=Logo\nremote.black.text=Preto\nremote.clear.text=Limpo\nremote.next.text=Próximo Slide\nremote.prev.text=Slide anterior\nremote.nextitem.text=Próximo Item\nremote.previtem.text=Item anterior\nserver.settings.heading=Configurações do Servidor\nuse.remote.control.label=Usar o Controlo Remoto\nnavigate.remote.control.label=URL do Controlo Remoto\nremote.empty.lyrics=As Letras de músicas serão exibidas aqui\nremote.control.password=Senha do Controlo Remoto (maiúsculas e minúsculas)\nremote.logout.text=Sair\nremote.login.text=Por favor, faça o login para continuar\nremote.submit.text=Login\nmore.font.options.label=Mais opções de letra\nmore.fonts.label=Mais letras\ntranslation.font.text=Traduzir letras\nshadow.text=Sombra\nsaving.schedule=Salvando a programação...\nsmall.text.position.label=Posição da informação da música e da Bíblia\nbible.passage.selector.prompt=[Capítulo]:[Verso]-[Verso]\ntheme.button.tooltip=Definir um tema global para o culto\ncurrently.displaying.text=Actualmente exibindo\nplay=Play\npause=Pause\nshow.small.song.text.label=Mostrar pequenas informações da canção\nshow.small.bible.text.label=Mostrar pequenas informações da passagem bíblica\nuse.bible.verses=A divisão da passagem Bíblica desliza pelo número de\nmax.items.per.slide=Número máximo de % por slide\nverses=versos\nwords=palavras\nedit.bible.passage.text=Editar Passages de Temas\nhelp.menu.manual=Manual\nuntitled.theme.text=Tema sem título\nsongselect.import.line1=Seleccione o arquivo SongSelect abaixo..\npng.files.description=Ficheiros de imagem PNG\nnotice.options.heading=Avisos\ncopying.video.please.wait.text=Espere um momento - basta copiar o arquivo de vídeo...\ntimer.text.prompt=Em duração do Temporizador coloque o tempo previsto, por exemplo \"5:00\" para exibir a partir de \"5:00\"\nfilefilters.description.usr.files=Ficheiros USR (SongSelect)\ntext.options.options=Opções de Texto\nsongselect.button=SongSelect\nnotice.speed.text=Velocidade do Aviso\nshadow.radius.label=Raio da Sombra\nadd.timer.tooltip=Add Temporizador (Cont. Regressiva)\nshadow.spread.label=Propagação da Sombra\npdf.button=PDF\nshadow.color.label=Cor da Sombra\ncountdown.label=Temporizador \nquelea.schedule.text=Quelea Culto\nnotice.font.size=Tamanho do texto do Aviso\nadd.timer.title=Add Temporizador\nuse.shadow.label=Usar Sombra?\nshadow.offset.label=Deslocamento da Sombra\nslide.text=Deslizar\ntimer.duration.label=Duração do temporizador\nedit.theme.text=Editar Tema\ndelete.translation.text=Apagar a tradução $1?\ntranslation.choice.title=Escolher Tradução \nnotice.font.text=Tipo de Letra\nexport.schedule.pdf.button=Exportar ordem de culto para PDF\ntranslating.text.please.wait.text=Espere um momento - a aplicar uma tradução...\nnotice.colour.text=Cor do Aviso\nstretch.video.label=Alongar Video\nnot.started.label=Não iniciar\nfilefilters.description.pdf.files=Ficheiros PDF\nautoplay.vid.label=Reprodução automática no painel ao vivo\nexport.schedule.songs.pdf.button=Exportar canções para PDF\nadvance.on.live.label=Avançar culto em exibição ao vivo\nnonbreak.tooltip=Add linha sem quebra \nuser.options.options=Opções do Usuário\nnotice.position.text=Posição do Aviso\ninclude.translations.question=Incluir as traduções no arquivo PDF?\nexporting.label=Exportando\nhelp.menu.wiki=Wiki\nsave.qr.code.text=Guardar QR Code\nnotice.background.colour.text=Cor do Fundo do Aviso\nfilefilters.description.image.video.files=Ficheiros de Video e Imagem\nnew.translation.title=Nova Tradução\nduration.tooltip.label=#:## ou ##m##s\nprint.chords.export.question=Incluir os acordes ao exportar essas músicas?\ntimer.file.label=Localização do ficheiro Background\ntimer.theme.label=Configurar Tema \ntimer.theme.button=Mudar Tema\nembed.media.in.schedule=Incorporar media no ficheiro de culto\npreview.on.image.change.label=Pré-visualizar mudanças no item da imagem\nswitch.to.text=Mudar para\ntranslation.export.heading=Exportar tradução\ntimer.text.label=Texto Adicional\nfont.options.title=Opções do Tipo de letra\nyoutube.url.label=Youtube video URL\ndelete.translation.title=Apagar Tradução\nexport.pdf.button=Exportar para PDF\nchange.bible.version.text=Mudar Versão\nmediashout.button=MediaShout\nfilefilters.description.txt.files=Ficheiros .txt\nmediashout.import.line1=Selecione a localização do MediaShout db (exportado para o formato txt) abaixo:\ntop = Topo\ndelete.video.confirmation=Quer remover este vídeo da biblioteca? Essa acção não pode ser desfeita.\nepicworship.button=EpicWorship\ntimer.files.description=Temporizadores contagem regressiva \nlibrary.video.heading=Vídeos\nbottom = Inferior\nsdb.files.description=Ficheiros de banco de dados Songpro\ntimer.save.label=Guardar tempo?\nkingsway.range.import.text=Digite o intervalo de páginas de músicas para download no site da Kingsway. \\nO número máximo actual de páginas é em torno de 3600.\nadd.videos.panel=Adicionar vídeos\nkingsway.button.range=Range\nfilefilters.description.epc=EpicWorship .epc SongPack\nadd.timers.panel = Adicionar Tempo\nremove.timer.text=Apagar Temporizador\nsongpro.button=SongPro\nkingsway.range.import.heading=Importar gama de canções Kingsway\nconfirm.remove.timer=Quer remover $1 da lista de tempos? Essa acção não pode ser desfeita.\nclear.stage.view=Limpar Vista de Palco no Visor principal\nepicworship.import.line1=Irá importar músicas de um arquivo EpicWorship Pack (.epc).\ntimer.name.label=Nome\nsongpro.import.line1=Irá importar músicas de um banco de dados SongPro SDB.\nedit.timer.text=Editar temporizador\nlibrary.timer.heading=Temporizadores\ndelete.video.title=Excluir Vídeo \nremove.video.text=Remover vídeo\nrtf.files.description=Ficheiros RTF\nsof.import.line1=Irá importar a biblioteca SoF de um arquivo RTF\nrcs.add.song=Adicionar Canção para o Culto\nrcs.add.bible.error=Houve um erro ao adicionar $1 para o Culto\nrcs.song.search=Canção\nsongbeamer.button=SongBeamer\nsng.files.description=Ficheiros SNG (SongBeamer)\nsongbeamer.import.line1=Seleccione a localização dos ficheiros SNG que pretende importar abaixo:\nuse.24h.clock=Usar Relógio de 24h\nrcs.add.failed=Adicionar arquivado\nshow.video.library.panel=Exibir o separador Biblioteca de Videos (requer reinicialização)\nrcs.bible.search=Bíblia\nrcs.search=Pesquisar e adicionar\nrcs.add.success=A adicionar com Sucesso\nrcs.submit=Enviar\noverflow.song.label=Transpor a música actual para próxima música\ninvalid.search=Busca inválida\nrecording.no.devices.message=Desculpe, nenhum dispositivo de gravação compatível foi encontrado.\\n Certifique-se de que seu dispositivo de gravação esteja conectado e activado.\nsplit.bible.verses=Mantenha os versos inteiros em todos os slides.\nno.verse.message=Não conseguimos encontrar um ou mais dos versos especificados e tentamos continuar sem eles.\npause.record.tooltip=Pausar gravação\nrecording.warning.message=Você deve definir um caminho para onde as gravações devem ser armazenadas no painel de opções antes de começar a gravar.\nsave.recording.before.exit.message=Gostarias de Guardar a gravação antes de sair?\nrecording.no.devices.title=Nenhum despositivo de gravação encontrado\nno.verse.title=Nenhum verso encontrado\nrecord.audio.tooltip=Gravar Audio\nsave.recording.before.exit.title=Gravação não guardada\nchorus.tooltip=Add título do coro\nrecording.warning.title=Defina primeiro o caminho das gravações.\nconvert.mp3=Converter automáticamente as gravações para MP3 (Requer o VLC)\nrecordings.path=Caminho para as gravações\nmax.lines.per.slide=Linhas por slide (aproximadamente)\npco.button=Centro de Planejamento Online \npco.login.import.heading=Centro de Planejamento Online Login \npco.loginerror.title=Erro no Login \npco.loginerror.warning=O login falhou, verifique o e-mail e a senha e tente de novo \npco.import.heading=Centro de Planejamento Online \npassword.text=Senha \nemailaddress.text=Email \nlogin.text=Login \nfreeworship.button=Freeworship \nimport.all.button=Importar Tudo \nimport.selection.button=Importar Seleção \nrefresh.button=Actualizar \nfreeworship.import.line1=Isto irá importar músicas do FreeWorship à partir de ficheiros XML. \nhelp.menu.feedback=Comentários \nadd.multimedia.tooltip=Adicionar Multimídia \nfilefilters.description.multimedia.files=Ficheiros Multimídia \nthumbnail.size.label=Tamanho do Ícone \ndownload.path=Caminho para Download \nadd.pdf.tooltip=Adicionar PDF \nimportexport.options.heading=Importar/Exportar \npreview.failed=A Pré Visualização Falhou \nset.loop.manually.title=O PowerPoint não foi encontrado \nset.loop.manually.message=A apresentação foi encerrada. Se você deseja usar a função de repetição do Quelea com o Visualizador do PowerPoint, será necessário marcar a opção de repetir até ESC ser pressionada na apresentação quando criá-la. \npresentation.changed.message=Será necessário reiniciar o Quelea para que as alterações nas apresentações façam efeito. \npresentation.changed.label=Configurações de Apresentação Modificadas \npresentation.not.started.label=O PowerPoint não foi iniciado \npresentation.not.started.message=Infelizmente sua apresentação não pôde ser aberta com o PowerPoint. Talvez o arquivo esteja corrompido. \npp.already.running.label=O PowerPoint já foi iniciado \npp.already.running.message=Outra instância do PowerPoint foi encontrada. Por favor feche todas as instâncias antes de iniciar uma apresentação no Quelea para evitar perda de dados. \npp.path.label=Caminho para o PowerPoint \nuse.pp.label=Usar o PowerPoint para apresentações \nclose.all.presentations.label=Feche todas as apresentações ab\nremote.select.book=Selecione o livro\nremote.search.tooltip=Adicione uma música ou passagem bíblica\nremote.search.server=Pesquisar Servidor\nremote.add.go.live=Adicionar e ir ao vivo\nremote.failed.finding.server=Falha ao localizar o servidor do Quelea Mobile Remote. Por favor, certifique-se de que o Quelea foi iniciado e que você digitou o URL correto.\nremote.navigation.settings.title=Configurações de navegação\nremote.enable.volume.navigation=Ativar navegação por volume\nremote.volume.navigation.description=Use os botões de volume do seu aparelho para navegar para o slide/item seguinte ou anterior.\nremote.enable.dpad.navigation=Ativar navegação do dpad\nremote.dpad.navigation.description=Use os botões do dpad (para cima/baixo) para navegar para o slide/item seguinte ou anterior. Se você quiser usar um teclado ou pedal bluetooth (como AirTurn), ative isso.\nremote.swipe.navigation.description=Escolha o que deve acontecer se você deslizar a tela para a direita ou para a esquerda.\nremote.swipe.navigation.title=Navegação Swipe\nremote.auto.progress.item=Andamento para o item seguinte/anterior\nremote.action.clear=Ocultar texto com o botão Limpar\nremote.action.logo=Ocultar texto e mostrar o Logotipo\nremote.action.black=Ocultar texto com Tela Preta\nremote.action.nothing=Não faça nada\nremote.action.item=Mover para o item seguinte/anterior\nremote.action.slide=Mover para o próximo slide/anterior\nremote.disable.record=Desativar botão de gravação\nremote.about.title=Sobre este app\nremote.choose.action=Escolha uma ação para $1\nremote.control.app.name=Quelea Controle Remoto\nremote.select.theme=Selecionar o tema\nremote.about.text.app=Este é um aplicativo sem fins lucrativos, feito para ser usado com o software de projeção da igreja chamado Quelea (http://quelea.org). Embora não esteja mais na versão beta, certamente este aplicativo pode apresentar falhas, e nem está completo. Este é um projeto paralelo e destina-se principalmente para uso pessoal, mas é com prazer que compartilhado com qualquer um que possa achar útil.\nremote.about.text.support=Sinta-se à vontade para enviar um e-mail para arvid @ quelea.org se tiver alguma dúvida ou tiver problemas, mas certifique-se de ter iniciado o Quelea antes do aplicativo (com os dois servidores ativos), que ambos os dispositivos estejam conectados à mesma rede e que você tenha inserido o URL correto primeiro.\nremote.about.text.responsibility=Não posso garantir uma experiência sem falhas, por isso não me responsabilizarei por quaisquer problemas que possam ocorrer em uma apresentação ao vivo.\nremote.ipv6.not.supported=Infelizmente você não pode usar endereços IPv6. Você precisa usar um endereço IPv4 para poder usar este aplicativo. Se você não sabe como encontrá-lo, pesquise no google 'como encontrar ip local' e o nome do seu sistema operacional. Digite o endereço IPV4/URL abaixo.\nremote.on.end.title= Fim do item/ação inicial\nremote.long.press.title=Ação de longa duração\nremote.double.press.title=Pressione duas vezes a ação\nexit.live.text=Sair do Texto ao Vivo\nchosen.sequence.label=Ordem de sequência escolhida\ndb.song.preview.label.databasepreview=No Painel do banco de dados\nfocus.switcher.message=Alterne o foco da janela aqui se necessário durante a apresentação.\nselect.language=Selecinone o idioma:\nvideopsalm.button=VideoPsalm\npm.button=Presentation Manager\ndelete.bible.confirmation=Deseja realmente excluir a Bíblia $1?\ngeneral.user.options=Opções Gerais do Utilizador\nchosen.sequence.explanation=Arraste itens da esquerda para a direita ou clique duas vezes para criar uma sequência de músicas. Os slides das letras serão exibidos posteriormente nesta ordem, independentemente da ordem em que as letras são armazenadas no banco de dados.\nsmall.song.position.label=Posição de informação da música\ndefault.theme.label=Default(Padrão)\nmove.up.sequence.tooltip=Mover secção para cima em ordem sequencial\nmissionpraise.import.line1=Importará músicas dos ficheiros RTF do Mission Praise.\ntag.tooltip=Add título da tag\nsequence.tooltip=Caixa de diálogo da sequência de músicas\nsmall.bible.text.options=Opções de Texto pequeno para Bíblia\ndelete.notice.button=Delete\nremote.signal.failed=Falha ao enviar sinal para o servidor\nfilefilters.description.songs.worshiphim=Ficheiros Worship Him MDB\npassword.empty.message=A senha do servidor não pode estar vazia. A senha padrão \"quelea\" será usada, a menos que você insira algo na caixa de senha.\nsequence.selection.dialog.title=Selecção de Sequências\nsong.default.theme.label=Padrão de Música\nelevanto.import.heading=Elevanto\nsm.button=Screen Monkey\nsaved.notices=Avisos Salvos\nfilefilters.description.vs.files=Banco de Dados do VideoPsalm\ninterface.options.options=Opções de Interface\npp.path=Caminho para o programa PowerPoint\nsmi.import.line1=Selecione as músicas do Screen Monkey para importar.\nhelp.menu.error.text=Desculpe, não foi possível carregar esta página. Pode navegar até ela manualmente: $1\nconverting.to.mp3=Convertendo a gravação para MP3\nclose.all.presentations.message=Feche todas as janelas abertas do PowerPoint antes de pressionar OK ou isso será feito automaticamente para evitar que os sinais sejam enviados para a janela errada.\nfilefilters.description.propresenter=Músicas do Propresenter\nundo.label=Desfazer\ncopy.song.db.default=Copiar música para agendar por padrão\nremote.needs.newer.version=Este recurso precisa do servidor para executar Quelea $1 ou superior\nremote.select.chapter.verses=Selecione o capítulo e verso(s)\ndb.song.preview.label.previewpane=No painel de visualização\nbible.version=Versão da Bíblia\nworshiphim.button=Worship Him\nclick.to.add=Clique para add\npm.import.line1=Selecione as músicas do Presentation Manager para importar.\nremote.send.notice.tooltip=Add um aviso\nbible.delete.error.text=Desculpe, ocorreu um erro ao excluir a Bíblia do directório requerido.\npropresenter.button=ProPresenter\nremote.privacy.policy=Política de privacidade\nallow.item.theme.override.global=Permitir que temas de itens personalizados substituam o tema global\nsong.list=Lista de músicas\nlibrary.copy.to.schedule.text=Copiar para o culto\nmp.button=Mission Praise\nfilefilters.description.songs.missionpraise=Ficheiros RTF do Mission Praise\npassword.empty.label=Encontrada Senha vazia\npaste.label=Colar\nvideo.loop.tooltip=Activar looping on / off\nfocus.quelea=Mudar o foco para Quelea\nelevanto.button=Elevanto\nremote.donations.link=Doe\nshow.extra.live.panel.toolbar.options.label=Mostrar opções extras da barra de ferramentas do painel ao vivo\nslide.transition.label=Usar fade na transição entre slides\nremote.port.needed=O URL deve conter o número da porta no final (ex.: ':1112'). Tente de novo.\navailable.sections.label=Secções disponíveis nesta música\nprechorus.tooltip=Add título pre-chorus\nsend.live.text=Texto ao Vivo\ndb.song.preview.label=Prévisualizar música do banco de dados\nremote.use.autoconnect=Tentar encontrar automaticamente o URL do servidor\nremove.sequence.tooltip=Remover secção na ordem do culto\nfocus.switcher.title=Trocar o foco para o Quelea\ndefault.translation=Default (Padrão)\nschedule.items.skipped.text=Alguns itens do culto não têm sua mídia incorporada, portanto, não foram adicionados.\ntheme.changed=Tema alterado\nmove.down.sequence.tooltip=Mover secção para baixo na ordem de culto\nfilefilters.description.sunday.plus=Música do Sunday plus\nremote.long.press.description=Selecione o que deseja que aconteça se pressionar longamente um botão enquanto estiver navegando com uma das duas opções acima. Observe que isso não funciona com pedais AirTurn.\nsmall.bible.size.label=Tamanho da informação da Bíblia\nfilefilters.description.xml.openlyrics=Ficheiros XML openlyrics\ntheme.copy.label=Copiar do tema\nlive.text.message=Qualquer texto escrito abaixo ficará visível para os usuários do Mobile Lyrics quando a tela principal estiver vazia.\\n\\nUse uma linha em branco para iniciar um novo slide. Você também pode usar o botão limpar (ou CTRL + Return) para redefinir em ambas as extremidades. Mais de 200 caracteres em um slide serão encurtados automaticamente para o utilizador.\nfilefilters.description.csv.files=Ficheiros .csv\ninterface.theme.label=Aplicação do tema\nremote.connected=Conectado!\ngeneral.interface.options=Opções Gerais da Interface\nfilefilters.description.pmsong.files=Músicas do Presentation Manager\nwebsite.dialog.title=URL da página Web\nworshiphim.import.line1=Selecione a localização do Worship Him db (no formato mdb) abaixo:\nverse.tooltip=Add título ao verso\nremote.on.end.description=Selecione o que você deseja que o aplicativo faça quando você navegar com qualquer uma das duas opções acima e chegar ao final/início de um item.\ndb.song.preview.label.control=Nenhum\ntheme.select.label=Selecionar o tema\nadd.website=Add website\nbible.default.theme.label=Bíblia padrão\nremote.report.issue=Reportar um problema\nfocus.pp=Mudar o foco para PowerPoint\nbible.delete.error.heading=Error\nremote.theme.was.set=$1 foi definido como tema global\nmobile.remote.heading=Mobile Remote\nschedule.options=Opções de Programação do culto\nelevanto.loginsuccess.message=Você pode fechar esta janela e retornar ao Quelea\nsmall.song.size.label=Tamanho da informação da música\nschedule.items.skipped.header=Itens do culto ignorados\npropresenter.import.line1=Isso importará músicas de um ficheiro de música do Propresenter.\nremote.wrong.content=The O conteúdo da página errada foi encontrado. Tente de novo.\nremote.information.title=Informação\nlive.text.title=Texto ao vivo\nvideopsalm.import.line1=Importará a biblioteca VideoPsalm de uma ficheiro JSON.\npresentation.options.heading=Apresentaçõess\nwebsite.dialog.content=Insira a págia da web que deseja exibir:\nsong.sequence=Sequencia de música:\ntheme.changed.message=Deve reiniciar o Quelea antes que a mudança do tema tenha efeito.\nsmall.bible.position.label=Posição das informações da Bíblia\nremote.double.press.description=Selecione o que você deseja que aconteça se você pressionar dois botões ao mesmo tempo quando estiver navegando com uma das duas opções acima.\nbridge.tooltip=Add título bridge(ponte)\nredo.label=Refazer\ndark.theme.label=Dark(Escuro)\ncopy=Copiar\nclear.live.text=Limpar\nremote.no.wifi=Você não está conectado a um wi-fi. Defina o URL manualmente ou conecte-se a um wi-fi.\ntheme.options=Opções de Tema\nwebsite.dialog.header=Insira o URL da página web\nremote.about.translating=Sobre a tradução do aplicativo\nrecordings.options.heading=Gravações\nsmall.song.text.options=Opções de texto pequenos para músicas\nremote.source.code=Códifo fonte\nsave.add.notice.button=Salvar e add\nelevanto.loginerror.warning=Error ao entrar no Elevanto\ndelete.bible.label=Excluir Bíblia actual\nremote.chapter=Capítulo\nremote.start.verse=Verso Inicial\nremote.end.verse=Verso Final\nclient.id=Client ID\nlink.preview.and.live.dividers.label=Visualização do link e divisores do Painel ao Vivo\nstage.show.clock=Mostrar Relógio\nsong.sequence.tip=Tip: Pode adicionar uma secção (Ex. chorus) mais de uma vez!\nenter.valid.port=Por favor, digite um número entre 1029 e 49151\nopen.sequence.editor.tooltip=Mostrar editor de sequência\ntranslation.text.options=Opções de Texto da Tradução\npco.days.previous.setting=Últimos dias para importar\ngeneral.text.options=Opções Gerais de Texto\nuse.default.translation.label=Usar Tradução Padrão\nbible.load.error.title=Erro ao carregar a Bíblia\ntranslation.name.label=Nome de Tradução\nbible.load.error.question=Incapaz de carregar a Bíblia - está corrompida ou em um formato inválido."
  },
  {
    "path": "Quelea/languages/ptbr.lang",
    "content": "LANGUAGENAME=Português (PT)\nLOCALE=pt-br\ndatabase.heading=Banco de Dados\nimport.heading=Importar\nqsp.button=Pacote de Canções do Quelea\nos.button=Opensong\nolp.button=OpenLP\nolyrics.button=OpenLyrics\nzw.button=ZionWorx\nsp.button=Sunday Plus\nss.button=Survivor Songbook\nprojector.heading=Projetor\ncontrols.heading=Controles\non.button=Ligado\noff.button=Desligado\nswitch.input.button=Alterar Entrada\ngeneral.options.heading=Geral\ndisplay.options.heading=Monitor\nbible.options.heading=Bíblia\ncheck.for.update.label=Verificar atualizações na inicialização\n1.monitor.warn.label=Alertar-me se apenas 1 monitor estiver conectado\ncapitalise.start.line.label=Inicializar cada linha com letra maiúscula\none.line.mode.label=Fazer a previsualização de apenas uma linha da letra por seção\ndisplay.song.info.label=Mostrar informações das canções\ntext.border.thickness.label=Espessura da borda do texto\nmax.chars.line.label=Número máximo de caracteres por linha\nadvanced.label=Avançado\nok.button=OK\noutput.text=Saída\ncontrol.screen.label=Controle de Telas\nprojector.screen.label=Tela do Projetor\nstage.screen.label=Tela do Palco\ncustom.position.text=Posição Personalizada\ndefault.bible.label=Padrão\nmax.verses.label=Número máximo de versículos a serem mostrados de uma única vez\nadd.bible.label=Adicionar bíblia...\nnone.text=Nenhum\nnew.schedule.button=Nova programação\nopen.schedule.button=Abrir Programação\nsave.schedule.button=Salvar Programação\nsave.as.schedule.button=Salvar Programação como...\nprint.schedule.button=Imprimir Programação\noptions.title=Opções\noptions.button=Opções\nexit.button=Saída\nnew.schedule.text=Nova Programação\ncreate.new.schedule.text=Criar uma nova programação\nopen.schedule.text=Abrir Programação\nopen.existing.schedule.text=Abrir uma programação existente\nsave.schedule.text=Salvar Programação\nsave.schedule.disk.text=Salvar a programação\nsave.as.schedule.text=Salvar Programação como\nsave.as.schedule.disk.text=Salvar programação em um arquivo diferente\nprint.schedule.text=Imprimir Programação\nprint.current.schedule.text=Imprimir a programação atual\noptions.text=Opções\ndisplay.options.text=Mostrar diálogo de opções\nexit.text=Sair do Quelea\nquit.quelea.text=Sair do Quelea\nsave.schedule.tooltip=Salvar Programação\nprint.schedule.tooltip=Imprimir Programação\nlibrary.image.heading=Imagens\nlibrary.songs.heading=Canções\nlibrary.bible.heading=Bíblias\nbible.heading=Bíblias\nlibrary.song.search=Procurar\nclear.search.box=Limpar pesquisa\nadd.song.text=Adicionar canção ao banco de dados\nremove.song.text=Remover canção do banco de dados\nlibrary.add.to.schedule.text=Adicionar à programação\nlibrary.edit.song.text=Editar canção\nlibrary.remove.song.text=Remover canção\nlibrary.print.song.text=Imprimir canção\nadd.to.schedule.text=Adicionar à programação\norder.service.heading=Ordem do Culto\nmove.down.schedule.tooltip=Mover para baixo na programação\nmove.up.schedule.tooltip=Mover para cima na Programação\nremove.song.schedule.tooltip=Remover da programação\nadjust.theme.tooltip=Ajustar tema\nedit.song.text=Editar canção\nnew.theme.text=Novo tema...\ntheme.select.text=Selecionar tema\\:\ndefault.theme.name=Padrão\ndefault.theme.text=Tema padrão\nremove.theme.tooltip=Remover tema\nedit.theme.tooltip=Editar tema\nedit.theme.heading=Editar tema\npreview.heading=Pré-visualização\nlive.heading=Ao Vivo\ngo.live.text=Projetar\nblack.screen.tooltip=Tela escura\nclear.text.tooltip=Limpar Tela\nhide.display.output.tooltip=Ocultar saída do monitor\nschedule.heading=Programação\nadd.song.button=Adicionar letras\nedit.song.button=Editar Canção\nremove.item.button=Remover item\nadd.multimedia.heading=Adicionar Mídia\nadd.presentation.button=Adicionar Apresentação\nadd.video.button=Adicionar Vídeo\nadd.youtube.button=Adicionar Vídeo do Youtube\nadd.live.video.button=Adicionar Vídeo ao vivo\nadd.dvd.button=Adicionar DVD\nadd.audio.button=Áudio\nadd.audio.tooltip=Adicionar Áudio\nshare.heading=Compartilhar\nemail.button=Enviar Programação por e-mail\nmanage.notices.button=Gerenciar Notificações...\nnotices.heading=Notificações\nnew.notice.text=Nova Notificação\nedit.notice.text=Editar Notificação\nremove.notice.text=Remover Notificação\ndone.text=Feito\nnew.notice.heading=Nova Notificação\nnotice.text=Notificações\nnotice.times.text=Vezes para Exibir\nnotice.infinite.question=Infinito?\nadd.notice.button=Adicionar notificação\nedit.notice.button=Editar notificação\nyes.text=Sim\nno.text=Não\ncancel.text=Cancelar\nnew.song.button=Nova Canção\ndelete.song.button=Apagar Canção\nsongs.heading=Letras\ntags.button=Gerenciar marcadores...\nsource.button=The Source\neasyslides.button=EasySlides\neasyworship.button=EasyWorship 2009\nplainText.button=Texto puro\nkingsway.button=Kingsway Online\nsof.button=Canções do Fellowship\nexport.heading=Exportar\nfilter.tag=Filtro de marcadores\ntags.colon.label=Marcadores\\:\nimport.button=Importar\nclick.select.file.text=Clique para selecionar arquivo\ncheck.duplicates.text=Verificar duplicados\nedit.song.title=Editar Canção\nbasic.information.heading=Informações básicas\ndetailed.info.heading=Informações Detalhadas\ntheme.heading=Tema\ntitle.label=Título\nauthor.label=Autor\nrun.spellcheck.label=Verificação Ortográfica\nfix.apos.label=Tratar apóstrofes\ntrim.lines.tooltip=Podar espaços\ntranspose.tooltip=Transpor...\ncancel.button=Cancelar\nccli.number.label=Número CCLI\ncopyright.label=Copyright\nyear.label=Ano\npublisher.label=Publicador\ntags.label=Etiquetas\ntype.tag.name.here.text=<Digite nomes de marcadores aqui>\nkey.label=Chave\ncapo.label=Capo\nnotes.label=Notas\nfont.theme.label=Fonte\nchoose.color.text=Escolha a cor...\nbackground.text=Plano de Fundo\nbackground.theme.label=Tema do plano de fundo\ncolor.theme.label=Cor\nimage.theme.label=Imagem\nselect.color.title=Selecionar cor\nselect.color.button=Escolha a Cor\nnew.song.title=Nova Canção\ntype.lyrics.here.text=Digite as letras aqui\nrtf.files.description=Arquivos RTF\nsng.files.description=Arquivos SNG (SongBeamer)\nsof.import.line1=Isto irá importar a biblioteca SoF a partir de um arquivo RTF.\nplaintext.import.line1=Isto irá importar as bibliotecas de letras da pasta que contenha as letras em arquivos de formato texto.\nkingsway.import.line1=Isto irá importar a biblioteca de letras da kingsway online.\nsongpro.import.line1=Isto irá importar letras do banco de dados do SongPro SDB.\nkingsway.import.line2=Isto pode levar bastante tempo (até mesmo horas\\!), seja paciente e deixe o Quelea executando\\!\neasyslides.import.line1=Isto irá importar letras de um arquivo XML do EasySlides.\neasyworship.import.line1=Isto irá importar letras do arquivo Songs.MB do Easyworship.\nopenlyrics.import.line1=Selecione abaixo a localização do arquivo zip das letras do OpenLyrics.\nqsp.import.line1=Selecione abaixo a localização do pacote de letras Quelea.\nos.import.line1=Selecione abaixo a localização do banco de dados Opensong.\nzw.import.line1=Selecione abaixo a localização do arquivo \"MainTable.dat\" do ZionWorx.\nzw.import.line2=Ele geralmente pode ser encontrado em \"C\\:\\\\ProgramData\\\\ZionWorx\\\\2.6\\\\Data\".\nolp.import.line1=Selecione a localização do banco de dados OpenLP abaixo.\nsundayplus.import.line1=Selecione abaixo a localização do banco de dados do Sunday Plus.\nsource.import.line1=Selecione a localização da pasta ymns do CD.\nsurvivor.import.line1=Selecione abaixo a localização do PDF Survivor Songbook.\nsurvivor.import.line2=É necessário que seja o arquivo acetates.pdf e não acordes de violão ou partitura.\nimport.error.message=Desculpe, houve um problema no processo de importação. Esteja à vontade para pedir ajuda no grupo de discussão do Quelea\\: https\\://quelea.discourse.group/\nemail.error.title=Erro de e-mail\nemail.error.text=Aconteceu um erro ao abrir seu cliente de e-mail. Assegure-se que você tenha um cliente de e-mail instalado e que suporte arquivos eml. Caso contrário, você terá que mandar e-mails manualmente.\nemail.text=Olá\\! Em anexo se encontra uma programação do Quelea. Simplesmente abra-o com o Quelea e todos os itens da programação deverão aparecer corretamente.\nselect.image.button=Selecionar Imagem\nimage.files.description=Arquivos de imagem\npng.files.description=Arquivos de imagem PNG\ntools.label=Ferramentas\nselect.songs.title=Selecionar Canções\ncheck.uncheck.all.text=Marcar/Desmarcar tudo\ndelete.theme.confirm.title=Confirmar remoção\ndelete.theme.question=Você realmente quer apagar esse tema?\ntoo.many.verses.error=Desculpe, há muitos versos para serem mostrados... tente um número menor de versos.\none.monitor.warning=Parece que você tem apenas 1 monitor instalado. Não há nenhum problema se você está apenas preparando a programação do culto.\\nO modo ao vivo necessita de 2 monitores para funcionar corretamente.\none.monitor.title=Somente um monitor\nno.dvd.heading=Nenhum disco encontrado\nno.dvd.error=Favor inserir um DVD ou Blu-ray válido.\nadding.presentation.status=Importando apresentação...\nadding.presentation.error.message=Houve um erro ao importar a apresentação, pode estar corrompido?\nadding.presentation.error.title=Erro ao importar apresentação\nimporting.status=Importando...\nname.label=Nenhum\nsimilar.colors.text=Você escolheu cores muito próximas para as letras e para o fundo, ocasionando dificuldade de leitura para a congregação. É aconselhado que você escolha cores com maior contraste\\!\nwarning.label=Alerta\nfile.menu=Arquivo\ntools.menu=Ferramentas\nschedule.menu=Programação\ndatabase.menu=Banco de dados\nprojector.menu=Projetor\nnew.theme.title=Novo Tema\nadd.theme.label=Adicionar Tema\ntheme.name.label=Nome do Tema\nhelp.menu=Ajuda\nhelp.menu.website=Página Web\nhelp.menu.discussion=Suporte / Discussão (pergunte aqui)\nhelp.menu.download=Baixar\nhelp.menu.update=Verificar atualizações\nhelp.menu.about=Sobre...\nhelp.menu.error.title=Erro\nhelp.about.title=Sobre\nhelp.about.version=Versão\nhelp.about.close=Fechar\nhelp.about.line1=Quelea é licenciado através da licensa GPL (Versão 3).\nhelp.about.line2=Ele é, e sempre será, software livre e de código aberto.\nnew.schedule.tooltip=Nova Programação\nopen.schedule.tooltip=Abrir Programação\nnew.song.tooltip=Nova Canção\nadd.presentation.tooltip=Adicionar Apresentação\nadd.dvd.tooltip=Adicionar DVD\nadd.video.tooltip=Adicionar Vídeo\nmanage.tags.tooltip=Gerenciar Marcadores\nmanage.notices.tooltip=Gerenciar Notificação\nalready.running.error=Parece que existe uma outra instância do Quelea sendo executada.\\nEsteja certo de que você encerrou todas as outras instâncias antes de tentar executar novamente.\nalready.running.title=Já executando\nerror.schedule.message=Houve um problema para abrir a programação. Provavelmente o arquivo está corrompido ou não foi salvo pelo Quelea.\nerror.schedule.title=Erro ao abrir a programação\nprint.chords.question=Incluir as cifras quando imprimir essa canção?\nprint.chords.export.question=Incluir as cifras quando exportar estas canções?\nprinting.options.text=Imprimir Canção\nspace.key=espaço\nupdating.db=Atualizando Banco de Dados\nerror.updating.song.text=Houve um erro ao atualizar a canção no banco de dados, ele pode estar corrompido.\nerror.text=Erro\nquick.shortcut.description=ESC para cancelar, SHIFT+ENTER para salvar\nsave.before.exit.text=A programação foi alterada. Salvar antes de sair?\nsave.before.exit.title=Programações não salvas\nno.chords.message=Esta canção não tem cifras para transposição.\nno.chords.title=Sem cifras\nerror.checking.updates.title=Erro ao checar atualizações\nerror.checking.updates.text=Desculpe, houve um erro ao checar as atualização. Verifique sua conexão com a Internet e tente de novo.\nnewer.version.available=Há uma nova versão do Quelea disponível\nno.newer.version.available=Você já está utilizando a última versão do Quelea\nvisit.webpage.now=Visitar a página para baixar agora?\ndownload.manual.update=Você pode baixar ele aqui\nnewer.version.available.title=Atualização disponível\nno.newer.version.available.title=Já atualizado\\!\ncheck.kingsway.start=Você já importou alguns itens da biblioteca Kingsway. Você quer continuar a importar a partir de onde você parou?\ncheck.kingsway.start.title=Itens já importados\nimport.no.songs.title=Nenhuma letra encontrada\nimport.no.songs.text=Nenhuma letra encontrada para importar.\nstage.options.heading=Visualização no Palco\nstage.show.chords=Mostrar cifras?\nstage.line.alignment=Alinhamento do Texto\nstage.font.selection=Fonte\nstage.background.colour=Cor de Fundo\nstage.lyrics.colour=Cor das Letras\nstage.chord.colour=Cor das Cifras\nleft=Esquerda\ncentre=Centro\nright=Direita\nconfirm.label=Você tem certeza?\nschedule.clear.text=A programação foi alterada. Continuar sem salvar?\npart=parte\nhelp.menu.facebook=Página do Facebook\nvideo.error=As bibliotecas de vídeo não puderam ser iniciadas - vídeo não funcionará. Por favor, pergunte na lista de discussão (ver menu Ajuda) para auxiliar na solução deste caso.\nvideo.error.title=Vídeo com erro\ntext.shadow.label=Mostrar sombra no texto\nadding.images=Adicionando imagens...\nsetup.oo.failed.text=Falha ao configurar OpenOffice para mostras apresentações. Por favor, assegure-se de que o OpenOffice esteja instalado e de que o caminho fornecido esteja correto.\nsetup.oo.failed.title=Falha ao iniciar o OpenOffice\nuse.oo.label=Usar OpenOffice para apresentações\noo.path=Caminho do OpenOffice\nbrowse=Navegar...\nloading.text=Carregando\nbuilding.bible.index=Carregando bíblias\nbible.search.title=Localizador bíblico\ninitial.search.text=<Digite aqui para pesquisar>\nview.bible.button=Visualizar Bíblias...\nsearch.bible.button=Procurar Bíblias...\nall.text=Todos\nbible.browser.title=Navegador Bíblico\nopen.in.browser=Abrir no Navegador...\nkingsway.button.all=Todas as Canções\nkingsway.button.one=Uma Canção\nsong.id.selector=Selecione o identificador da canção\nbible.copy.error.text=Desculpe, aconteceu um erro na cópia da bíblia para o diretório solicitado.\nbible.copy.error.heading=Erro\nselect.key.label=Selecione o novo tom\\:\ntranspose.label=Transpor\nalready.exists.overwrite.label=já existe. Sobrescrever?\noverwrite.text=Sobrescrever\ncant.save.schedule.title=Erro ao salvar programação\ncant.save.schedule.text=Um erro ocorreu e a programação não pôde ser gravada.\nerror.removing.song.db=Houve um erro ao remover a canção do banco de dados.\nconfirm.remove.text=Confirmar remoção\nconfirm.remove.question=Realmente quer remover $1 do banco de dados? Essa operação não poderá ser desfeita.\nquick.edit.text=Edição Rápida\nlibrary.preview.song.text=Previsualização da canção\nvideo.error.unsupported=O arquivo de vídeo que você selecionou não é suportado.\nvideo.error.general=Desculpe, houve um erro com o arquivo de vídeo que você selecionou.\nvideo.theme.label=Vídeo\nselect.video.button=Selecionar Vídeo\nrefresh.images.panel=Atualizar Imagens\nadd.images.panel=Adicionar Imagens\nselect.folder.images.panel=Selecionar Pasta...\ntext.position.label=Posição do Texto\nimage.folder=Pasta das Imagens\\:\nquick.insert.text=Inserir Rapidamente\nconfirm.overwrite.title=Arquivo já existe\\!\nconfirm.overwrite.text=Esse arquivo já existe. Você quer subsituí-lo ou continuar sem copiar?\nfile.rename.button=Renomear\nfile.replace.button=Substituir\nfile.continue.button=Seguinte\nfile.rename.dialog.title=Renomear\nfile.rename.dialog.text=Digite o novo nome do arquivo\\:\ninterface.language.label=Linguagem da interface\\:\nlanguage.changed=Linguagem Alterada\nlanguage.changed.message=Você deve reiniciar o Quelea para aplicar as alterações.\ndebug.location=Localização dos registro de Debug\ntop.text.position=Topo\nmiddle.text.position=Meio\nbottom.text.position=Abaixo\nshadow.color=Cor da Sombra\nshadow.x=Sombra eixo X\nshadow.y=Sombra eixo Y\nselect.imported.songs.line1=As seguintes canções foram importadas.\nselect.imported.songs.line2=Selecione as que você quer adicionar ao banco de dados e clique em \"Adicionar\".\nselect.imported.songs.line3=Canções que o Quelea acha que são duplicadas foram desmarcadas.\nadd.text=Adicionar\nadd.to.database.question=Adicionar ao banco de dados?\nselect.export.songs.line1=As seguintes canções estão no banco de dados.\nselect.export.songs.line2=Selecione a que você quer exportar e então clique em \"Adicionar\".\nadd.to.songpack.question=Exportar canção?\nprojection.window.title=Janela do Projetor\nclear.live.on.remove.schedule=Limpar item do painel ao vivo ao remover da programação.\nspelling.complete.text=Correção ortográfica completa.\ncomplete.title=Completo\nspelling.check.title=Verificação ortográfica\ncorrect.text=Correto\nignore.text=Ignorar\nspelling.errors.in.doc.label=Existem erros de ortografia neste documento. Aperte \"F7\" para abrir a caixa de diálogo de correção.\nremove.image.text=Remover Imagem\ndelete.image.title=Apagar Imagem\ndelete.image.confirmation=Você quer realmente remover a imagem da biblioteca? Esta ação não poderá ser desfeita.\nnotice.expired.title=Notificação expirada\nnotice.expired.text=A notificação de que você está editando expirou. Você quer adicioná-la novamente?\ndictionary.language.text=Linguagem do Dicionário\nconfirm.entry.exit.text=Você deseja salvar as alterações desta canção?\nconfirm.entry.exit.title=Salvar canção?\nsave.text=Salvar\ndont.save.text=Não Salvar\nvlc.warning.title=VLC não encontrado\nvlc.warning.message=Quelea não pôde encontrar VLC no seu sistema. Sem o VLC, Quelea não reproduzirá vídeos, áudios e nem mostrará fundos com animação. Você quer baixar o VLC agora? Quelea precisa ser reinicado após a instalação do VLC.\nvlc.version.message=Sua versão do VLC é muito antiga. Você precisa ter a versão mais recente do VLC para que o Quelea não reproduza vídeos, áudios e fundos com animação. Você quer baixar o VLC agora? Quelea precisa ser reinicado após a instalação do VLC.\ncontinue.without.video=Continuar sem o VLC\ndownload.vlc=Baixar VLC\nstartup.error.title=Erro de Inicialização\nstartup.error.text=Desculpe, por alguma razão o Quelea não pôde ser iniciado. Se você quiser ajuda, mande um e-mail para support@quelea.org anexando o arquivo de log do debug ($1).\\n\\nOutra opção é criar uma pergunta no grupo de discussão do Quelea (https\\://quelea.discourse.group/).\nfilefilters.description.survivor.songbook=Arquivos acetates do Survivor\nfilefilters.description.xml.bibles=Bíblias XML\nfilefilters.description.xml.easyslide=Arquivos XML do Easyslide\nfilefilters.description.xml.files=Arquivos XML\nfilefilters.description.video.files=Arquivos de Vídeos\nfilefilters.description.audio.files=Arquivos de Áudio\nfilefilters.description.quelea.schedules=Programações do Quelea\nfilefilters.description.powerpoint.presentations=Apresentações do Powerpoint\nfilefilters.description.plain.text.song=Canção em texto puro\nfilefilters.description.maintable.dat=Arquivo de banco de dados MainTable do ZionWorx \nbible.search.results.found=resultados encontrados\nbible.search.result.found=resultado encontrado\nbible.search.keep.typing=Continue digitando...\nuniform.font.size.label=Utilizar tamanho de fonte uniforme\nmax.font.size.label=Tamanho máximo da fonte\nadditional.line.spacing.label=Espaçamente de linha adicional\nlogo.screen.tooltip=Projetar botão esquerdo - Configurar botão direito\nchange.graphics.label=Alterar Gráficos\nfont.colour.label=Cor da Fonte\nbackground.colour.label=Cor do Plano de Fundo\nmobile.lyrics.heading=Letras para aparelhos Móveis\nuse.mobile.lyrics.label=Habilitar Letras para aparelhos Móveis\nport.number.label=Número da Porta\nnavigate.mob.url.label=URL de Letras para aparelhos Móveis\nserver.changed.label=Configurações do Servidor Alteradas\nserver.changed.message=Você precisará reiniciar o Quelea para que as novas configurações do servidor tenham efeito.\nfilefilters.description.zip.files=Arquivos Zip\nfilefilters.description.sqlite.files=Arquivos SQLite\nloop.label=Loop\nseconds.label=segundos\nchosen.fonts.explanation=O Quelea apenas mostra a seleção de fontes na janela de temas. Arraste as fontes que você usa do painel à esquerda para o da direita, arraste os que você não deseja da direta para a esquerda.\nignored.fonts.label=Fontes ignoradas\nchosen.fonts.label=Fontes escolhidas\nfont.selection.dialog.title=Seleção de fontes\nvideo.hue.label=Tonalidade\nhover.for.position.label=Passe o mouse sobre a imagem para definir posição do texto.\ntest.patterns.text=Padrões de Teste\ntest.patterns.explanation=Os padrões de teste disponíveis servem para ajudá-lo a calibrar as cores e o foco do projetor. Clique numa imagem de teste para mostrá-la tanto na saída principal quanto no palco.\nyoutube.url.label=URL do vídeo do Youtube\nno.tdb.heading=TurboDB Data Exchange não encontrado\nno.tdb.message=Por razões técnicas, você precisa baixar o TurboDB Data exchange (https\\://www.dataweb.de/en/support/downloads.html) antes do Quelea importar o banco de dados ZionWorx.\\nQhando você baixar ele, extraia o conteúdo do arquivo zip para $1.\\n\\nSe você tiver quanquer problema, sinta-se livre para perguntar no grupo de discussão (http\\://bit.ly/1mePoeh).\nno.pdb.heading=Paradox JDBC driver não encontrado\nno.pdb.message=Por razões técnicas, você precisa baixar o driver JDBC Paradox antes para que o Quelea possa importar bancos de dados do Easyworship\\:\\n\\n1. Acesse http\\://www.hxtt.com/download.jsp e registre uma conta para continuar.\\n2. Baixe o arquivo \"DBF JDBC 4.1 Package for JDK1.7.X and JDK1.8.X\". Ele deve ter o nome Paradox_JDBC41.jar.\\n3. Copie Paradox_JDBC41.jar para $1.\\n\\nSe você tiver problemas, sinta-se à vontade para perguntar no grupo de discussão (https\\://quelea.discourse.group/). Quelea tentará importar o banco do EasyWorship mesmo sem o arquivo no lugar devido, mas isso pode gerar resultados inesperados.\nshow.verse.numbers=Mostrar números do versículo\nadd.song.hint.text=Não há canções aqui ainda, mas não se desespere\\! Para adicionar uma canção, simplesmente clique no botão \"Nova Canção\" à esquerda.\nadd.song.hint.search.text=Não há nenhuma canção aqui ainda. Você pode adicionar novas clicando em \"Nova Canção\" no botão à esquerda.\nfilefilters.description.songs.mb=Banco de dados Songs.MB do Easyworship\ntranslate.tooltip=Traduções das canções\nclose.button=Fechar\nadd.translation.button=Adicionar tradução...\nenter.translation.name.label=Para qual linguagem você gostaria de traduzir?\ntranslate.dialog.title=Geranciador de traduções\nconfirm.remove.translation.title=Remover tradução?\nconfirm.remove.translation.text=Você realmente quer apagar essa tradução?\ndefault.translation.label=Tradução padrão\noverwrite.lyrics.title=Sobrescrever letra existente?\noverwrite.lyrics.text=Nós traduzimos as letras automaticamente para você - você quer usá-las?\\nSua tradução atual será sobrescrita.\nauto.translate.label=Tentar traduzir canções automaticamente\nchoose.translations.text=Escolher traduções\nselect.translation.label=Selecione a tradução que você gostaria de mostrar além da padrão\\:\ntranslate.heading=Traduções\nremote.logo.text=Logo\nremote.black.text=Escura\nremote.clear.text=Limpar\nremote.next.text=Próximo Slide\nremote.prev.text=Slide Anterior\nremote.nextitem.text=Próximo Item\nremote.previtem.text=Item Anterior\nserver.settings.heading=Configurações do Servidor\nuse.remote.control.label=Usar Controle Remoto\nnavigate.remote.control.label=URL do Controle Remoto \nremote.empty.lyrics=As letras serão mostradas aqui\nremote.control.password=Senha do Acesso Remoto (diferencia maúsculas e minúsculas)\nremote.logout.text=Logout\nremote.login.text=Faça login para continuar\nremote.submit.text=Login\nmore.font.options.label=Mais opções de fontes\nmore.fonts.label=Mais fontes\ntranslation.font.text=Fonte de Tradução\nshadow.text=Sombra\nsaving.schedule=Salvando a programação...\nsmall.text.position.label=Posição da informação da letra e bíblia\nbible.passage.selector.prompt=[Capítulo]\\:[Versículo]-[Versículo]\ntheme.button.tooltip=Configure um tema global para a programação\ncurrently.displaying.text=Sendo projetado\nplay=Tocar\npause=Pausa\nshow.small.song.text.label=Mostrar em miniatura detalhes das canções\nshow.small.bible.text.label=Mostrar em miniatura detalhes da passagem bíblica\nuse.bible.verses=Separar as passagens bíblicas por slides de\nmax.items.per.slide=Número máximo de % por slide\nverses=versículos\nwords=palavras\nedit.bible.passage.text=Editar Tema da Passagem\nnotice.colour.text=Cor da Notificação\nnotice.font.text=Fonte da Notificação\nnotice.speed.text=Velocidade das Notificações\nnotice.background.colour.text=Cor de fundo da Notificação\nnotice.position.text=Posição das Notificações\nnotice.font.size=Tamanho da fonte para notificações\nnotice.options.heading=Notificações\nexport.pdf.button=Exportar para PDF\npdf.button=PDF\nexport.schedule.pdf.button=Exportar Programação para PDF\nfilefilters.description.pdf.files=Arquivos PDF\nnot.started.label=Não iniciado\nquelea.schedule.text=Programação Quelea\nuser.options.options=Opções do Usuário\ntext.options.options=Opções de Texto\nstretch.video.label=Ampliar o Vídeo\nexport.schedule.songs.pdf.button=Exportar letras para PDF\nexporting.label=Exportando\nuse.shadow.label=Usar Sombra?\nshadow.color.label=Cor da Sombra\nshadow.offset.label=Tamanho da Sombra\nshadow.radius.label=Raio da Sombra\nshadow.spread.label=Largura da Sombra\nhelp.menu.manual=Manual\nedit.theme.text=Editar Tema\nchange.bible.version.text=Trocar Versão\nswitch.to.text=Alternar para\nsave.qr.code.text=Salvar QR Code\nnonbreak.tooltip=Adicionar linha sem quebra\ncopying.video.please.wait.text=Aguarde um momento - copiando o arquivo de vídeo...\ntranslating.text.please.wait.text=Aguarde um momento - localizando a tradução...\nfilefilters.description.usr.files=Arquivos USR (SongSelect)\nsongselect.import.line1=Selecione abaixo arquivo do SongSelect.\nsongselect.button=SongSelect\ntranslation.export.heading=Tradução exportada\ninclude.translations.question=Incluir a tradução no arquivo PDF?\nautoplay.vid.label=Reproduzir automaticamente vídeos no painel ao vivo\nadvance.on.live.label=Avançar programação no painel ao vivo\ndelete.translation.title=Apagar tradução\ndelete.translation.text=Apagar a tradução $1?\nhelp.menu.wiki=Wiki\npreview.on.image.change.label=Pré-visualizar item na mudança de imagem\nadd.timer.tooltip=Adicionar Contador Regressivo\nfilefilters.description.image.video.files=Arquivos de Vídeos e Imagens\ntimer.duration.label=Duração do contador\ntimer.file.label=Localização do arquivo de fundo\nduration.tooltip.label=#:## ou ##m##s\ntranslation.choice.title=Seleção da Tradução\nfont.options.title=Opções de Fonte\nnew.translation.title=Nova Tradução\nadd.timer.title=Adicionar Contador\nuntitled.theme.text=Tema sem Título\ntimer.text.label=Texto Adicional\ntimer.text.prompt=Use # para mencionar o contador, p.ex. \"O culto começa em #\" mostrará \"O culto começa em 05:00\"\ncountdown.label=Contador regressivo\ntimer.theme.label=Configurações de Tema\ntimer.theme.button=Mudar Tema\nembed.media.in.schedule=Incoporar mídia no arquivo de programação\nmediashout.import.line1=Selecione abaixo a localização do banco do MediaShout (exportado para o formato texto):\nsongbeamer.import.line1=Selecione abaixo a localização dos arquivo SNG que você quer importar:\nfilefilters.description.txt.files=Arquivos .txt\nmediashout.button=MediaShout\nsongbeamer.button=SongBeamer\nclear.stage.view=Limpar a visualização de Palco com a Projeção Principal\ntop=Início\nbottom=Fim\nepicworship.import.line1=Isto importará canções de um arquivo EpicWorship Song Pack (.epc).\nfilefilters.description.epc=EpicWorship .epc songpack\nepicworship.button=EpicWorship\nadd.videos.panel=Adicionar Vídeos\nremove.video.text=Remover Vídeo\ndelete.video.title=Apagar Vídeo\ndelete.video.confirmation=Você quer realmente remover esse vídeo da biblioteca? Esta operação não poderá ser desfeita.\nlibrary.video.heading=Vídeos\ntimer.files.description=Contadores regressivos\nadd.timers.panel=Adicionar Contadores\nlibrary.timer.heading=Contadores\ntimer.save.label=Salvar contador?\ntimer.name.label=Nome\nedit.timer.text=Editar contador\nremove.timer.text=Apagar contador\nconfirm.remove.timer=Você quer realmente remover $1 da lista de contadores? Esta operação não poderá ser desfeita.\nkingsway.button.range=Intervalo\nkingsway.range.import.text=Entre o intervalo de páginas de canções para serem baixadas do site Kingsway.\\nO número máximo de páginas suportadas atualmente é cerca de 3600.\nkingsway.range.import.heading=Importar canções do Kingsway contidas no intervalo\nsdb.files.description=Arquivo de banco de dados do Songpro\nsongpro.button=SongPro\noverflow.song.label=Navegar programação no painel ao vivo usando a tecla Page Down\ninvalid.search=Pesquisa inválida\nrcs.add.failed=Falha ao Adicionar\nrcs.add.success=Adicionado com Sucesso\nrcs.add.song=Adicionar canção à Programação\nrcs.search=Pesquisar no Banco de Dados\nrcs.add.bible.error=Houve um erro ao adicionar $1 à programação\nrcs.submit=Submeter\nrcs.song.search=Canção\nrcs.bible.search=Bíblia\nshow.video.library.panel=Mostrar Guia Biblioteca de Vídeos (é necessário reinicar o aplicativo)\nuse.24h.clock=Usar relógio 24h\nsplit.bible.verses=Manter versículos completos nos slides\nno.verse.title=Nenhum versículo encontrado\nno.verse.message=Não foi possível encontrar um ou mais dos versículos especificados. O sistema tentará continuar sem eles.\nchorus.tooltip=Adicionar título do coro\nrecordings.path=Caminho para as gravações\nconvert.mp3=Automaticamente converter gravações para arquivos MP3 (requer VLC)\nrecording.warning.title=Configurar primeiramente o caminho das gravações\nrecording.warning.message=Você tem que configurar nas opções um caminho para onde as gravações devem ser armazenadas antes de iniciar a gravação.\nrecording.no.devices.title=Não foram encontrados dispositivos de gravação\nrecording.no.devices.message=Desculpe, não foram encontrados dispositivos de gravação compatíveis.\\nCertifique-se que seu dispositivo esteja instalado e habilitado.\nsave.recording.before.exit.title=Gravação não salva\nsave.recording.before.exit.message=Você gostaria de salvar a gravação antes de sair?\nfound.temp.title=Arquivos temporários de gravação encontrados\nfount.temp.message=Alguns arquivos de gravação temporários foram encontrados. Você gostaria de salvá-los antes de limpar a pasta?\nsave.temp=Sim, salve antes de de apagá-los\nclear.temp=Não, remova os arquivos temporários\nrecord.audio.tooltip=Gravar Áudio\npause.record.tooltip=Pausar Gravação\nmax.lines.per.slide=Linhas por slide (aproximadamente)\nlibrary.copy.to.schedule.text=Copiar para OC \nvideopsalm.import.line1=Isso vai importar a bilbioteca VideoPsalm do arquivo JSON. \nmissionpraise.import.line1=Isso vai importar as músicas dos arquivos Mission Praise RTF. \nfilefilters.description.pmsong.files=Gerenciador do Apresentador de Músicas \nfilefilters.description.vs.files=Base de dados VideoSalmos \nfilefilters.description.songs.missionpraise=Arquivos Mission Praise RTF\npm.import.line1=Selecione o Gerenciador do Apresentador de Músicas para importar. \nvideopsalm.button=VideoSalmos \npm.button=Gerenciador do Apresentador \nslide.text=Slide \npresentation.options.heading=Apresentações \nrecordings.options.heading=Gravações \ncopy.song.db.default=Copiar Música para a OC como padrão \nmp.button=Mission Praise\nsmi.import.line1=Seleccione as músicas do Screen Monkey para importar. \nsm.button=Screen Monkey\nrefresh.button=Atualizar\nredo.label=Voltar\nclose.all.presentations.label=Fechar todas as apresentações abertas\ncopy=Copiar\npaste.label=Colar\nsave.add.notice.button=Salvar e adicionar\nconverting.to.mp3=Convertendo gravação para MP3\nremote.select.book=Selecione o livro\nremote.search.tooltip=Adicione uma música ou uma passagem bíblica\nremote.search.server=Procurar servidor\nremote.add.go.live=Adicionar e ir ao vivo\nremote.failed.finding.server=Falha ao localizar o servidor remoto do Quelea Mobile. Por favor, certifique-se Quelea é iniciado e que você digitou o URL correto.\nremote.navigation.settings.title=Configurações de navegação\nremote.enable.volume.navigation=Ativar navegação por volume\nremote.volume.navigation.description=Use os botões de volume do seu aparelho para navegar para o slide/item seguinte ou anterior.\nremote.enable.dpad.navigation=Ativar navegação no dpad\nremote.dpad.navigation.description=Use os botões do dpad (para cima/para baixo) para navegar para o próximo/anterior slide/item. Se você quiser usar um teclado ou pedal bluetooth (como AirTurn), ative isso.\nremote.swipe.navigation.description=Escolha o que deve acontecer se você deslizar para a esquerda ou para a direita na tela.\nremote.swipe.navigation.title=Navegação Swipe\nremote.auto.progress.item=Progresso para o item seguinte/anterior\nremote.action.clear=Ocultar texto com botão Limpar\nremote.action.logo=Ocultar texto e mostrar o Logotipo\nremote.action.black=Ocultar texto com Tela Preta\nremote.action.nothing=Não faça nada\nremote.action.item=Mover para o item seguinte/anterior\nremote.action.slide=Mover para o próximo slide/anterior\nremote.disable.record=Desativar o botão de gravação\nremote.about.title=Sobre este aplicativo\nremote.choose.action=Escolha uma ação para $1\nremote.control.app.name=Quelea Mobile Remote\nremote.select.theme=Selecione o tema\nremote.about.text.app=Este é um aplicativo sem fins lucrativos, feito para ser usado com o software de projeção da igreja chamado Quelea (http://quelea.org). Embora não esteja mais na versão beta, certamente este aplicativo pode apresentar falhas, e nem está completo. Este é um projeto paralelo e destina-se principalmente para uso pessoal, mas é com prazer que compartilhado com qualquer um que possa achar útil.\nremote.about.text.support=Sinta-se à vontade para me enviar um email para arvid @ quelea.org se tiver alguma dúvida ou tiver problemas, mas certifique-se de ter iniciado o Quelea antes do aplicativo (com os dois servidores ativos), que ambos os dispositivos estejam conectados à mesma rede e que você digitou o URL correto primeiro.\nremote.about.text.responsibility=Não posso garantir uma experiência sem falhas, por isso não me responsabilizarei por quaisquer problemas que possam ocorrer em um ambiente ao vivo.\nremote.ipv6.not.supported=Infelizmente você não pode usar endereços IPv6. Você precisa usar um endereço IPv4 para ser capaz de usar este aplicativo. Se você não sabe como encontrá-lo, o google encontrará o IP local e o nome do seu sistema operacional. Digite o endereço/URL IPv4 abaixo.\nremote.on.end.title=Fim do item/ação inicial\nremote.long.press.title=Ação de longa duração\nremote.double.press.title=Pressione duas vezes a ação\ntranslation.text.options=Opções de tradução de texto\nexit.live.text=Sair do Texto Ao Vivo\nchosen.sequence.label=Ordem de sequência escolhida\ndb.song.preview.label.databasepreview=No painel do banco de dados\nfocus.switcher.message=Alterne o foco da janela aqui, se necessário, durante a apresentação.\nselect.language=Selecione o idioma:\ndelete.bible.confirmation=Você realmente deseja excluir a Bíblia $1?\ngeneral.user.options=Opções Gerais do Usuário\nchosen.sequence.explanation=Arraste os itens da esquerda para a direita ou clique duas vezes para criar uma sequência de músicas. Os slides das letras serão mostrados posteriormente nesta ordem, independentemente da ordem em que as letras estão armazenadas no banco de dados.\nsmall.song.position.label=Posição de informação da música\ndefault.theme.label=Padrão\nclient.id=ID do Cliente\nmove.up.sequence.tooltip=Mover a seção para cima em ordem sequencial\ntag.tooltip=Adicionar título da tag\nsequence.tooltip=Diálogo de sequência de músicas\npco.days.previous.setting=Últimos dias para importar\npassword.text=Senha\nsmall.bible.text.options=Opções de textos bíblicos pequenos\ndelete.notice.button=Deletar\nremote.signal.failed=Falha ao enviar o sinal para o servidor\nfilefilters.description.songs.worshiphim=Arquivos MDB do Worship Him\npassword.empty.message=A senha do servidor não pode estar vazia. A senha padrão \"quelea\" será usada a menos que você digite algo na caixa de senha.\nsequence.selection.dialog.title=Seleção de sequência\npresentation.not.started.message=Infelizmente, não foi possível iniciar sua apresentação com o PowerPoint. Talvez o arquivo esteja corrompido?\nsong.default.theme.label=Padrão de música\nelevanto.import.heading=Elevanto\nsaved.notices=Avisos salvos\npco.loginerror.title=Erro de login\nset.loop.manually.message=A apresentação foi encerrada. Se quiser usar a função de loop do Quelea com o PowerPoint Viewer, você precisará definir manualmente a apresentação para repetir até parar ao criá-la.\ninterface.options.options=Opções de Interface\npp.path=Caminho para o programa PowerPoint\npp.already.running.label=O PowerPoint já está em execução\nfreeworship.import.line1=Isso importará músicas do FreeWorship de arquivos XML.\nhelp.menu.error.text=Desculpe, não foi possível carregar essa página. Você pode navegar até ela manualmente: $1\nclose.all.presentations.message=Feche todas as janelas abertas do PowerPoint antes de pressionar OK ou isso será feito automaticamente para evitar que sinais sejam enviados para a janela errada.\nfilefilters.description.propresenter=Músicas do Propresenter\nhelp.menu.feedback=Feedback\nundo.label=Desfazer\nremote.needs.newer.version=Este recurso precisa que o servidor execute o Quelea $1 ou superior\ngeneral.text.options=Opções gerais de texto\nremote.select.chapter.verses=Selecione capítulo e versículo(s)\ndb.song.preview.label.previewpane=No painel de visualização\nbible.version=Versão da Bíblia\nadd.multimedia.tooltip=Adicionar Multimídia\nworshiphim.button=Worship Him\nlink.preview.and.live.dividers.label=Visualização do link e divisores de painel ao vivo\nclick.to.add=Clique para adicionar\nstage.show.clock=Mostrar relógio\nremote.send.notice.tooltip=Adicionar um aviso\nbible.delete.error.text=Desculpe, ocorreu um erro ao excluir a Bíblia do diretório necessário.\npropresenter.button=ProPresenter\nremote.privacy.policy=Política de Privacidade\nallow.item.theme.override.global=Permitir que temas de itens personalizados substituam o tema global\nsong.list=Lista de musicas\nuse.default.translation.label=Usar tradução padrão\nthumbnail.size.label=Tamanho da miniatura\nadd.pdf.tooltip=Adicionar PDF\nsong.sequence.tip=Dica: você pode adicionar uma seção (por exemplo, refrão) mais de uma vez!\nbible.load.error.title=Erro ao carregar a Bíblia\npassword.empty.label=Senha vazia encontrada\nvideo.loop.tooltip=Ativar/desativar loop\nfocus.quelea=Mude o foco para Quelea\npp.already.running.message=Outra instância do PowerPoint foi encontrada. Feche todas as instâncias do PowerPoint antes de iniciar uma apresentação no Quelea para evitar perda de dados.\nremote.start.verse=Começar verso\nimportexport.options.heading=Importar/Exportar\npco.loginerror.warning=Falha ao fazer login, verifique e-mail e senha e tente novamente\nelevanto.button=Elevanto\nremote.donations.link=Doar\nshow.extra.live.panel.toolbar.options.label=Mostrar opções extras da barra de ferramentas do painel ao vivo\nslide.transition.label=Use transição de fade entre slides\npreview.failed=Falha na visualização\nremote.port.needed=A URL deve conter o número da porta no final (por exemplo, ':1112'). Tente novamente.\navailable.sections.label=Seções disponíveis nesta música\nprechorus.tooltip=Adicionar título pré-refrão\nimport.selection.button=Seleção de importação\nsend.live.text=Texto ao vivo\ndb.song.preview.label=Visualização da música do banco de dados\nremote.use.autoconnect=Tentar encontrar automaticamente o URL do servidor\nimport.all.button=Importar tudo\nremove.sequence.tooltip=Remover seção da ordem de sequência\nfocus.switcher.title=Comutador de foco Quelea\ndefault.translation=Padrão\npco.button=Centro de planejamento on-line\nschedule.items.skipped.text=Alguns itens da programação não possuem mídia incorporada e, portanto, não foram adicionados.\ntheme.changed=Tema alterado\nmove.down.sequence.tooltip=Mover a seção para baixo em ordem sequencial\nfilefilters.description.sunday.plus=Domingo mais músicas\nremote.long.press.description=Selecione o que deseja que aconteça se você pressionar um botão por um longo tempo enquanto estiver navegando com qualquer uma das duas opções acima. Observe que isso não funcionará com pedais AirTurn.\nsmall.bible.size.label=Tamanho da informação bíblica\nfilefilters.description.xml.openlyrics=Arquivos XML de letras abertas\ntheme.copy.label=Copiar do tema\nlive.text.message=Qualquer texto escrito abaixo ficará visível para os usuários do Mobile Lyrics quando a tela principal estiver vazia.\\n\\nUse uma linha em branco para iniciar um novo slide. Você também pode usar o botão limpar (ou CTRL + Return) para redefinir em ambas as extremidades. Mais de 200 caracteres em um slide serão automaticamente encurtados para o usuário.\nfilefilters.description.csv.files=arquivos .csv\ninterface.theme.label=Tema do aplicativo\nremote.connected=Conectado!\npco.import.heading=Centro de planejamento on-line\ngeneral.interface.options=Opções gerais de interface\nset.loop.manually.title=PowerPoint não foi encontrado\nwebsite.dialog.title=URL da página da web\nworshiphim.import.line1=Selecione o local do banco de dados Worship Him (em formato mdb) abaixo:\nverse.tooltip=Adicionar título do verso\nremote.on.end.description=Selecione o que você deseja que o aplicativo faça ao navegar com qualquer uma das duas opções acima e chegar ao final/início de um item.\ndb.song.preview.label.control=Nenhum\ntheme.select.label=Selecione o tema\nremote.chapter=Capítulo\nlogin.text=Login\nenter.valid.port=Por favor insira um número entre 1029 e 49151\nadd.website=Adicionar site\npresentation.changed.message=Você precisará reiniciar o Quelea para que as novas configurações de apresentação tenham efeito.\nbible.default.theme.label=Padrão da Bíblia\nremote.report.issue=Reportar um problema\nfocus.pp=Mude o foco para o PowerPoint\nfilefilters.description.multimedia.files=Arquivos multimídia\nuse.pp.label=Use o PowerPoint para apresentações\ntranslation.name.label=Nome da tradução\nemailaddress.text=Email\nbible.delete.error.heading=Erro\nremote.theme.was.set=$1 foi definido como tema global\nschedule.options=Opções de agendamento\nelevanto.loginsuccess.message=Você pode fechar esta janela e voltar para Quelea\nsmall.song.size.label=Tamanho das informações da música\nschedule.items.skipped.header=Itens de agendamento ignorados\npropresenter.import.line1=Isso importará músicas de um arquivo de músicas do Propresenter.\nremote.wrong.content=O conteúdo da página errado foi encontrado. Tente novamente.\npresentation.changed.label=Configurações de apresentação alteradas\npco.login.import.heading=Login on-line do Centro de planejamento\nremote.information.title=Informação\nlive.text.title=Texto ao vivo\nccli.licence=Licença CCLI\ndownload.path=Caminho de download\nwebsite.dialog.content=Digite a página da web que você deseja exibir:\nsong.sequence=Sequência da música:\ntheme.changed.message=Você deve reiniciar o Quelea antes que a mudança de tema entre em vigor.\npresentation.not.started.label=O PowerPoint não foi iniciado\nsmall.bible.position.label=Posição de informação bíblica\nremote.double.press.description=Selecione o que deseja que aconteça se você pressionar dois botões ao mesmo tempo enquanto estiver navegando com qualquer uma das duas opções acima.\nbridge.tooltip=Adicionar título da ponte\nremote.end.verse=Verso final\ndark.theme.label=Escuro\nopen.sequence.editor.tooltip=Mostrar editor de sequência\nclear.live.text=Limpar\nremote.no.wifi=Você não está conectado a um wifi. Defina o URL manualmente ou conecte-se a um wifi.\ntheme.options=Opções de Temas\nwebsite.dialog.header=Insira o URL da página da web\nremote.about.translating=Sobre a tradução do aplicativo\nsmall.song.text.options=Opções de texto de música pequena\nbible.load.error.question=Não foi possível carregar a Bíblia - provavelmente ela está corrompida ou em um formato inválido.\nremote.source.code=Código fonte\nelevanto.loginerror.warning=Erro ao fazer login no Elevanto\nfreeworship.button=Freeworship\ndelete.bible.label=Excluir a Bíblia atual\n"
  },
  {
    "path": "Quelea/languages/ru.lang",
    "content": "LANGUAGENAME=Русский (RU)\ndatabase.heading=База данных\nimport.heading=Импорт\nqsp.button=Quelea Song Pack\nos.button=Opensong\nolp.button=OpenLP\nolyrics.button=OpenLyrics\nzw.button=ZionWorx\nsp.button=Sunday Plus\npco.button=Planning Center Online\npco.login.import.heading=Planning Center Online Login\npco.loginerror.title=Ошибка входа\npco.loginerror.warning=Не удалось авторизоваться, проверьте адрес и пароль.\npco.import.heading=Planning Center Online\npassword.text=Пароль\nemailaddress.text=Email\nlogin.text=Логин\nss.button=Survivor Songbook\nprojector.heading=Проектор\ncontrols.heading=Controls\non.button=Вкл.\noff.button=Выкл.\nswitch.input.button=Переключить ввод\ngeneral.options.heading=Основное\ndisplay.options.heading=Дисплей\nbible.options.heading=Библия\ncheck.for.update.label=Проверять обновления при запуске\n1.monitor.warn.label=Предупреждать если подключен только один монитор\ncapitalise.start.line.label=Заглавная буква в начале каждой строки\none.line.mode.label=Показывать только первую строку песни в обзоре\ndisplay.song.info.label=Информация о песни\ntext.border.thickness.label=Толщина обводки текста\nmax.chars.line.label=Макс. количество символов в строке\nadvanced.label=Продвинутый\nok.button=Ок\noutput.text=Вывод\ncontrol.screen.label=Экран управления\nprojector.screen.label=Экран проектора\nstage.screen.label=Экран сцены\ncustom.position.text=Точное положение\ndefault.bible.label=По умолчанию\nmax.verses.label=Макс. количество одновременно отображаемых стихов\nadd.bible.label=Добавить Библию...\nnone.text=Нет\nnew.schedule.button=Новое расписание\nopen.schedule.button=Открыть расписание\nsave.schedule.button=Сохранить расписание\nsave.as.schedule.button=Сохранить расписание как...\nprint.schedule.button=Печать расписания\noptions.title=Настройки\noptions.button=Настройки\nexit.button=Выход\nnew.schedule.text=Новое расписание\ncreate.new.schedule.text=Создать расписание\nopen.schedule.text=Открыть расписание\nopen.existing.schedule.text=Открыть существующее расписание\nsave.schedule.text=Сохранить расписание\nsave.schedule.disk.text=Сохранить расписание на диск\nsave.as.schedule.text=Сохранить расписание как\nsave.as.schedule.disk.text=Сохранить расписание в другой файл\nprint.schedule.text=Печать расписания\nprint.current.schedule.text=Печать текущего расписания\noptions.text=Настройки\ndisplay.options.text=Показать окно настроек\nexit.text=Выход из Quelea\nquit.quelea.text=Выход из Quelea\nsave.schedule.tooltip=Сохранить расписание\nprint.schedule.tooltip=Печать расписания\nlibrary.image.heading=Картинки\nlibrary.songs.heading=Песни\nlibrary.bible.heading=Библия\nbible.heading=Библия\nlibrary.song.search=Поиск\nclear.search.box=Очистить поиск\nadd.song.text=Добавить песню в базу данных\nremove.song.text=Удалить песню из базы данных\nlibrary.add.to.schedule.text=Добавить в расписание\nlibrary.copy.to.schedule.text=Копировать в расписание\nlibrary.edit.song.text=Редактировать песню\nlibrary.remove.song.text=Удалить песню\nlibrary.print.song.text=Напечатать песню\nadd.to.schedule.text=Добавить в расписание\norder.service.heading=План служения\nmove.down.schedule.tooltip=Опустить в расписании\nmove.up.schedule.tooltip=Поднять в расписании\nremove.song.schedule.tooltip=Удалить из расписания\nadjust.theme.tooltip=Настроить тему\nedit.song.text=Редактировать песню\nnew.theme.text=Новая тема...\ntheme.select.text=Выберите тему\\:\ndefault.theme.name=По умолчанию\ndefault.theme.text=Тема по умолчанию\nremove.theme.tooltip=Удалить тему\nedit.theme.tooltip=Редактировать тему\nedit.theme.heading=Редактирование темы\npreview.heading=Предпросмотр\nlive.heading=Эфир\ngo.live.text=В Эфир\nblack.screen.tooltip=Черный экран\nclear.text.tooltip=Очистить экран\nhide.display.output.tooltip=Спрятать вывод дисплея\nschedule.heading=Расписание\nadd.song.button=Добавить песню\nedit.song.button=Сохранить\nremove.item.button=Удалить элемент\nadd.multimedia.heading=Добавить мультимедиа\nadd.presentation.button=Добавить презентацию\nadd.video.button=Добавить видео\nadd.youtube.button=Добавить видео с Youtube\nadd.live.video.button=Добавить видео\nadd.dvd.button=Добавить DVD\nadd.audio.button=Аудио\nadd.audio.tooltip=Добавить аудио\nshare.heading=Поделиться\nemail.button=Отправить расписание на Email\nmanage.notices.button=Управление объявлениями...\nnotices.heading=Объявления\nnew.notice.text=Новое объявление\nedit.notice.text=Редактировать\nremove.notice.text=Удалить\ndone.text=Готово\nnew.notice.heading=Новое объявление\nnotice.text=Объявление\nnotice.times.text=Количество показов\nnotice.infinite.question=Бесконечно?\nadd.notice.button=Добавить объявление\nedit.notice.button=Редактировать\nyes.text=Да\nno.text=Нет\ncancel.text=Отмена\nnew.song.button=Новая песня\ndelete.song.button=Удалить песню\nsongs.heading=Песни\ntags.button=Управление тегами...\nsource.button=Источник\neasyslides.button=EasySlides\nfreeworship.button=Freeworship\neasyworship.button=EasyWorship 2009\nplainText.button=Простой текст\nkingsway.button=Kingsway Online\nsof.button=Songs of Fellowship\nexport.heading=Экспорт\nfilter.tag=Фильтр тегов\ntags.colon.label=Теги\\:\nimport.button=Импорт\nimport.all.button=Импортировать все\nimport.selection.button=Импортировать выбранное\nrefresh.button=Обновить\nclick.select.file.text=Нажмите для выбора файла\ncheck.duplicates.text=Проверять дубликаты\nedit.song.title=Редактирование песни\nbasic.information.heading=Основная информация\ndetailed.info.heading=Подробная информация\ntheme.heading=Тема\ntitle.label=Название\nauthor.label=Автор\nrun.spellcheck.label=Правописание\nfix.apos.label=Убрать апострофы\ntrim.lines.tooltip=Обрезать строки\ntranspose.tooltip=Транспонировать...\ncancel.button=Отмена\nccli.number.label=Номер CCLI\ncopyright.label=Копирайт\nyear.label=Год\npublisher.label=Издатель\ntags.label=Теги\ntype.tag.name.here.text=<Напишите здесь названия тегов>\nkey.label=Ключ\ncapo.label=Capo\nnotes.label=Заметки\nfont.theme.label=Шрифт\nchoose.color.text=Выбрать цвет...\nbackground.text=Фон\nbackground.theme.label=Тема фона\ncolor.theme.label=Цвет\nimage.theme.label=Изображение\nselect.color.title=Выбрать цвет\nselect.color.button=Выбрать цвет\nnew.song.title=Новая песня\ntype.lyrics.here.text=Вводите текст здесь\nrtf.files.description=Файлы RTF\nsng.files.description=Файлы SNG (SongBeamer)\nvideopsalm.import.line1=Импорт из VideoPsalm в формате JSON.\nfreeworship.import.line1=Импорт файлов FreeWorship в формате XML.\nsof.import.line1=Импорт библиотеки SoF из файла RTF.\nplaintext.import.line1=Импорт песен из библиотеки в формате простого текста.\nkingsway.import.line1=Импорт библиотеки kingsway.\nsongpro.import.line1=Импорт песен из SongPro в формате SDB.\nkingsway.import.line2=Это займет много времени (скорее всего часы\\!), позвольте Quelea работать дальше\\!\neasyslides.import.line1=Импорт песен из EasySlides в формате XML.\neasyworship.import.line1=Импорт песен из Easyworship в формате Songs.MB.\nmissionpraise.import.line1=Импорт песен из Mission Praise в формате RTF.\nopenlyrics.import.line1=Выберите расположение zip архива с песнями openlyrics.\nqsp.import.line1=Выберите расположение файла Quelea songpack.\nos.import.line1=Выберите расположение базы данных Opensong.\nzw.import.line1=Выберите расположение файла ZionWorx \"MainTable.dat\".\nzw.import.line2=Обычно располагается здесь \"C\\:\\\\ProgramData\\\\ZionWorx\\\\2.6\\\\Data\".\nolp.import.line1=Выберите расположение базы данных OpenLP.\nsundayplus.import.line1=Выберите расположение базы данных Sunday Plus.\nsource.import.line1=Выберите расположение папки ymns на диске CD.\nsurvivor.import.line1=Выберите расположение базы данных Survivor Songbook PDF.\nsurvivor.import.line2=Это должен быть файл acetates.pdf, не аккорды и не песни.\nimport.error.message=Извините, при импорте возникла проблема. Вы можете задать вопрос по этому поводу в нашей группе\\: http\\://bit.ly/1mePoeh\nemail.error.title=Ошибка Email\nemail.error.text=Возникла ошибка при открытии почтовой программы.\nemail.text=Привет\\! Во вложении расписание Quelea. Просто откройте его в Quelea и все элементы должны появиться в расписании.\nselect.image.button=Выбрать картинку\nimage.files.description=Файлы картинок\npng.files.description=Изображения PNG\ntools.label=Инструменты\nselect.songs.title=Выбрать песни\ncheck.uncheck.all.text=Все/Ни одного\ndelete.theme.confirm.title=Подтвердите удаление\ndelete.theme.question=Удалить эту тему?\ntoo.many.verses.error=Извините, нельзя отобразить так много стихов... попробуйте уменьшить количество.\none.monitor.warning=Похоже что у вас подключен только один дисплей. Это нормально если вы используете Quelea только для подготовки расписаний, но если вы используете программу для служения, то для нормальной работы необходимы два дисплея.\none.monitor.title=Только один монитор\nno.dvd.heading=Диск не найден\nno.dvd.error=Пожалуйста вставьте DVD или Blu-ray.\nadding.presentation.status=Импорт презентации...\nadding.presentation.error.message=При импорте презентации возникла ошибка, возможно файл поврежден?\nadding.presentation.error.title=Ошибка импорта презентации\nimporting.status=Импорт...\nname.label=Название\nsimilar.colors.text=Вы выбрали очень схожие цвета для текста и фона, читать текст будет затруднительно, рекомендуем подобрать цвета получше\\!\nwarning.label=Внимание\nfile.menu=Файл\ntools.menu=Инструменты\nschedule.menu=Расписание\ndatabase.menu=База данных\nprojector.menu=Проектор\nnew.theme.title=Новая тема\nadd.theme.label=Добавить тему\ntheme.name.label=Название темы\nhelp.menu=Помощь\nhelp.menu.website=Сайт\nhelp.menu.discussion=Поддержка / Обсуждения (вопросы задаются здесь)\nhelp.menu.feedback=Обратная связь\nhelp.menu.download=Скачать\nhelp.menu.update=Проверить обновления\nhelp.menu.about=О программе...\nhelp.menu.error.title=Ошибка\nhelp.about.title=О программе\nhelp.about.version=Версия\nhelp.about.close=Закрыть\nhelp.about.line1=Лицензия Quelea GPL (Версия 3.)\nhelp.about.line2=Есть и всегда будет бесплатным приложением с открытым исходным кодом.\nnew.schedule.tooltip=Новое расписание\nopen.schedule.tooltip=Открыть расписание\nnew.song.tooltip=Новая песня\nadd.presentation.tooltip=Добавить презентацию\nadd.dvd.tooltip=Добавить DVD\nadd.video.tooltip=Добавить видео\nadd.multimedia.tooltip=Добавить мультимедиа\nmanage.tags.tooltip=Управление тегами\nmanage.notices.tooltip=Управление объявлениями\nalready.running.error=Похоже, что уже запущена одна копия Quelea.\\nЗакройте все другие копии для использования программы.\nalready.running.title=Уже запущено\nerror.schedule.message=Во время открытия расписания возникла проблема. Возможно файл поврежден.\nerror.schedule.title=Ошибка открытия расписания\nprint.chords.question=Печатать аккорды вместе с песней?\nprint.chords.export.question=Включить аккорды в экспорт песен?\nprinting.options.text=Печать песни\nspace.key=пробел\nupdating.db=Обновление базы данных\nerror.updating.song.text=При удалении песни из базы данных возникла ошибка, возможно она повреждена.\nerror.text=Ошибка\nquick.shortcut.description=Esc для отмены, shift+enter чтобы сохранить\nsave.before.exit.text=Расписание было изменено. Сохранить перед выходом?\nsave.before.exit.title=Несохраненное расписание\nno.chords.message=В этой песне нет ни одной строки с аккордами для транспонирования.\nno.chords.title=Нет аккордов\nerror.checking.updates.title=Не удалось проверить обновления\nerror.checking.updates.text=Извините, во время проверки обновлений возникла ошибка. Пожалуйста проверьте соединение с Интернетом и попробуйте снова.\nnewer.version.available=Доступна новая версия Quelea\nno.newer.version.available=У вас установлена самая новая версия Quelea\nvisit.webpage.now=Посетить сайт для загрузки?\ndownload.manual.update=Вы можете загрузить файл здесь\nnewer.version.available.title=Доступно обновление\nno.newer.version.available.title=Последняя версия\\!\ncheck.kingsway.start=Вы уже импортировали элементы из библиотеки Kingsway. Вы желаете продолжить с того места, где остановились?\ncheck.kingsway.start.title=Импортированные элементы\nimport.no.songs.title=Песни не найдены\nimport.no.songs.text=Не найдено ни одной песни для импорта.\nstage.options.heading=Сцена\nstage.show.chords=Показывать аккорды?\nstage.line.alignment=Выравнивание текста\nstage.font.selection=Шрифт\nstage.background.colour=Цвет фона\nstage.lyrics.colour=Цвет текста\nstage.chord.colour=Цвет аккордов\nleft=Слева\ncentre=Центр\nright=Справа\nconfirm.label=Вы уверены?\nschedule.clear.text=Расписание было изменено. Продолжить без сохранения?\npart=часть\nhelp.menu.facebook=страница в Facebook\nvideo.error=Не удалось инициализировать видео библиотеки - видео не будет работать. Пожалуйста попросите помощи в дискуссионной группе (смотрите раздел Справка).\nvideo.error.title=Ошибка видео\ntext.shadow.label=Показывать тень текста\nadding.images=Добавление картинок...\nsetup.oo.failed.text=Не удалось настроить OpenOffice для показа презентаций. Убедитесь что OpenOffice установлен и путь к нему верный.\nsetup.oo.failed.title=Не удалось инициализировать OpenOffice\nuse.oo.label=Использовать OpenOffice для презентаций\noo.path=Путь к программе OpenOffice\nbrowse=Обзор...\nloading.text=Загрузка\nbuilding.bible.index=Загрузка Библии\nbible.search.title=Поиск в Библии\ninitial.search.text=<Печатайте для поиска>\nview.bible.button=Обзор Библий...\nsearch.bible.button=Поиск в Библии...\nall.text=Все\nbible.browser.title=Просмотр Библии\nopen.in.browser=Открыть в браузере...\nkingsway.button.all=Все песни\nkingsway.button.one=One Song\nsong.id.selector=Пожалуйста выберите ID песни\nbible.copy.error.text=Извините, возникла ошибка при копировании Библии.\nbible.copy.error.heading=Ошибка\nselect.key.label=Новая тональность\\:\ntranspose.label=Транспонировать\nalready.exists.overwrite.label=уже существует. Перезаписать?\noverwrite.text=Перезаписать\ncant.save.schedule.title=Ошибка сохранения расписания\ncant.save.schedule.text=Извините, во время сохранения расписания возникла ошибка.\nerror.removing.song.db=При удалении песни из базы данных возникла ошибка.\nconfirm.remove.text=Подтвердите удаление\nconfirm.remove.question=Удалить $1 из базы данных? Это действие нельзя отменить.\nquick.edit.text=Быстрая правка\nlibrary.preview.song.text=Предпросмотр песни\nvideo.error.unsupported=Извините, но выбранный вами видео файл не поддерживается.\nvideo.error.general=Извините, но выбранный вами видео файл вызвал ошибку.\nvideo.theme.label=Видео\nselect.video.button=Выбрать видео\nrefresh.images.panel=Обвновить картинки\nadd.images.panel=Добавить изображения\nselect.folder.images.panel=Выбрать папку...\ntext.position.label=Положение текста\nimage.folder=Папка изображений\\:\nquick.insert.text=Быстрая вставка\nconfirm.overwrite.title=Файл уже существует\\!\nconfirm.overwrite.text=Этот файл уже существует. Желаете ли заменить его или продолжить без копирования?\nfile.rename.button=Переименовать\nfile.replace.button=Заменить\nfile.continue.button=Продолжить\nfile.rename.dialog.title=Переименовать\nfile.rename.dialog.text=Пожалуйста укажите новое имя файла\\:\ninterface.language.label=Язык интерфейса\\:\nlanguage.changed=Изменен язык\nlanguage.changed.message=Вы должны перезапустить Quelea чтобы изменить язык интерфейса.\ndebug.location=Расположение лог-файла\ntop.text.position=Наверху\nmiddle.text.position=Середина\nbottom.text.position=Внизу\nshadow.color=Цвет тени\nshadow.x=Сдвиг тени X\nshadow.y=Сдвиг тени Y\nselect.imported.songs.line1=Следующие песни были импортированы.\nselect.imported.songs.line2=Выберите песни, которые хотите импортировать и нажмите \"Добавить\".\nselect.imported.songs.line3=Отмечены только те песни, которые не являются дубликатами по мнению Quelea.\nadd.text=Добавить\nadd.to.database.question=Добавить в базу данных?\nselect.export.songs.line1=Эти песни есть в базе данных.\nselect.export.songs.line2=Выберите песни для экспорта и нажмите \"Добавить\".\nadd.to.songpack.question=Экспортировать песню?\nprojection.window.title=Окно проектора\nclear.live.on.remove.schedule=Удалять элемент из эфира при удалении из расписания\nspelling.complete.text=Проверка орфографии закончена.\ncomplete.title=Завершено\nspelling.check.title=Проверка орфографии\ncorrect.text=Исправить\nignore.text=Игнорировать\nspelling.errors.in.doc.label=В документе есть грамматические ошибки. Нажмите \"F7\" чтобы открыть окно проверки правописания.\nremove.image.text=Удалить картинку\ndelete.image.title=Удалить картинку\ndelete.image.confirmation=Удалить изображение из библиотеки? Это действие нельзя отменить.\nnotice.expired.title=Объявление просрочено\nnotice.expired.text=Объявление, которое вы редактируете уже просрочено. Желаете добавить его снова?\ndictionary.language.text=Язык словаря\nconfirm.entry.exit.text=Вы хотите сохранить изменения в песне?\nconfirm.entry.exit.title=Сохранить песню?\nsave.text=Сохранить\ndont.save.text=Не сохранять\nvlc.warning.title=Не найден VLC\nvlc.warning.message=Quelea не смогла найти VLC в системе. Без него Quelea не сможет воспроизводить видео, аудио и видео-фоны для песен. Желаете загрузить его сейчас? Вам нужно будет перезапустить Quelea после установки VLC.\nvlc.version.message=Ваша версия VLC слишком старая. Вам придется скачать актуальную версию, чтобы воспроизводить видео, аудио и использовать видео в качестве фона. Желаете скачать сейчас? После установки VLC нужно будет перезапустить Quelea.\ncontinue.without.video=Продолжить без VLC\ndownload.vlc=Скачать VLC\nstartup.error.title=Ошибка запуска\nstartup.error.text=Извините, по какой-то причине Quelea не смогла запуститься на вашей системе. Если вы хотите помочь нам разобраться с этой проблемой, то напишите нам письмо на support@quelea.org и прикрепите лог-файл ($1).\\n\\nКроме того, вы можете присоединиться к обсуждению в группе (https\\://quelea.discourse.group/).\nfilefilters.description.survivor.songbook=Файл Survivor acetates\nfilefilters.description.xml.bibles=XML Библии\nfilefilters.description.xml.easyslide=XML файлы Easyslide\nfilefilters.description.xml.files=файлы XML\nfilefilters.description.video.files=Видео файлы\nfilefilters.description.pmsong.files=Presentation Manager Songs\nfilefilters.description.vs.files=Базы данных VideoPsalm\nfilefilters.description.audio.files=Аудио файлы\nfilefilters.description.quelea.schedules=Расписания Quelea\nfilefilters.description.powerpoint.presentations=Презентации Powerpoint\nfilefilters.description.plain.text.song=Простой текст\nfilefilters.description.maintable.dat=Файл ZionWorx MainTable\nfilefilters.description.multimedia.files=Мультимедиа файлы\nbible.search.results.found=найдено\nbible.search.result.found=найдено\nbible.search.keep.typing=Продолжайте печатать...\nuniform.font.size.label=Использовать единый размер шрифта\nmax.font.size.label=Максимальный размер шрифта\nthumbnail.size.label=Размер эскизов\nadditional.line.spacing.label=Межстрочный интервал\nlogo.screen.tooltip=Левый клик показать - Правый клик установить\nchange.graphics.label=Настройка цветов\nfont.colour.label=Цвет шрифта\nbackground.colour.label=Цвет фона\nmobile.lyrics.heading=Мобильная трансляция\nuse.mobile.lyrics.label=Трансляция по сети\nport.number.label=Номер порта\nnavigate.mob.url.label=Адрес сервера\nserver.changed.label=Настройки сервера изменены\nserver.changed.message=Нужно перезапустить Quelea чтобы применить новые настройки сервера.\nfilefilters.description.zip.files=Файлы Zip\nfilefilters.description.sqlite.files=Файлы SQLite\nloop.label=Повтор\nseconds.label=секунды\nchosen.fonts.explanation=Quelea отображает список выбранных шрифтов ниже. Перетащите нужные шрифты с левой панели в правую, а ненужные перетащите справа налево.\nignored.fonts.label=Игнорируемые шрифты\nchosen.fonts.label=Выбранные шрифты\nfont.selection.dialog.title=Выбор шрифта\nvideo.hue.label=Тон\nhover.for.position.label=Наведите курсор на экран чтобы выбрать положение текста\ntest.patterns.text=Калибровка экрана\ntest.patterns.explanation=Эти паттерны помогут вам откалибровать настройки цвета и фокуса для дисплея. Нажмите на изображение ниже чтобы отобразить его на обоих экранах.\nyoutube.url.label=Адрес видео на Youtube\nno.tdb.heading=TurboDB Data Exchange не найден\nno.tdb.message=По техническим причинам вам нужно скачать TurboDB (http\\://bit.ly/1gwoPLX) прежде чем Quelea сможет импортировать данные ZionWorx .\\nПосле загрузки распакуйте содержимое архива сюда $1.\\n\\nЕсли у вас возникнут какие-либо проблемы, напишите нам в группу (http\\://bit.ly/1mePoeh).\nno.pdb.heading=Не найден драйвер Paradox JDBC\nno.pdb.message=По техническим причинам вам нужно скачать драйвер Paradox JDBC прежде чем Quelea сможет импортировать данные Easyworship\\:\\n\\n1. Перейдите по ссылке http\\://www.hxtt.com/download.jsp и зарегистрируйте бесплатный аккаунт.\\n2. Скачайте \"DBF JDBC 4.1 Package for JDK1.7.X and JDK1.8.X\". Файл должен называться Paradox_JDBC41.jar.\\n3. Скопируйте Paradox_JDBC41.jar в $1.\\n\\nЕсли у вас возникнуть какие-либо проблемы, напишите в нашу группу (http\\://bit.ly/1mePoeh). Quelea все равно попытается импортировать данные, но результат не гарантирован.\nshow.verse.numbers=Показывать номера стихов\nadd.song.hint.text=Пока нет ни одной песни, но без паники\\! Для добавления песни нажмите слева на кнопку \"Добавить песню\".\nadd.song.hint.search.text=По этому запросу ничего не нашлось. Чтобы добавить песню, нажмите \"Добавить песню\" слева.\nfilefilters.description.songs.mb=База данных Easyworship Songs.MB\nfilefilters.description.songs.missionpraise=Файлы Mission Praise RTF\ntranslate.tooltip=Переводы песни\nclose.button=Закрыть\nadd.translation.button=Добавить перевод...\nenter.translation.name.label=На какой язык вы хотите перевести?\ntranslate.dialog.title=Менеджер переводов\nconfirm.remove.translation.title=Удалить перевод?\nconfirm.remove.translation.text=Удалить этот перевод?\ndefault.translation.label=Основной перевод\noverwrite.lyrics.title=перезаписать существующие тексты?\noverwrite.lyrics.text=Мы автоматически перевели текст, желаете использовать перевод?\\nВаш текущий перевод будет перезаписан.\nauto.translate.label=Пытаться переводить песни автоматически\nchoose.translations.text=Выбрать переводы\nselect.translation.label=Выберите перевод, который вы хотите отображать дополнительно к основному\\:\ntranslate.heading=Переводы\nremote.logo.text=Логотип\nremote.black.text=Черный\nremote.clear.text=Очистить\nremote.next.text=Следующий слайд\nremote.prev.text=Предыдущий слайд\nremote.nextitem.text=Следующий элемент\nremote.previtem.text=Предыдущий элемент\nserver.settings.heading=Настройки сервера\nuse.remote.control.label=Удаленное управление\nnavigate.remote.control.label=Адрес сервера\nremote.empty.lyrics=Тексты появятся здесь\nremote.control.password=Пароль (чувствителен к регистру)\nremote.logout.text=Выход\nremote.login.text=Пожалуйста авторизуйтесь чтобы продолжить\nremote.submit.text=Логин\nmore.font.options.label=Больше настроек шрифта\nmore.fonts.label=Больше шрифтов\ntranslation.font.text=Шрифт перевода\nshadow.text=Тень\nsaving.schedule=Сохранение расписания...\nsmall.text.position.label=Положение информации о Библии и песне\nbible.passage.selector.prompt=[Глава]\\:[Стих]-[Стих]\ntheme.button.tooltip=Установить основную тему для расписания\ncurrently.displaying.text=Сейчас отображается\nplay=Пуск\npause=Пауза\nshow.small.song.text.label=Показывать название песни в углу\nshow.small.bible.text.label=Показывать ссылку на место писания в углу\nuse.bible.verses=Разбивать стихи Библии по\nmax.items.per.slide=Макс. количество % на слайд\nverses=стихов\nwords=слова\nedit.bible.passage.text=Редактировать тему\nnotice.colour.text=Цвет объявления\nnotice.font.text=Шрифт объявления\nnotice.speed.text=Скорость объявления\nnotice.background.colour.text=Фон объявлений\nnotice.position.text=Положение\nnotice.font.size=Размер шрифта\nnotice.options.heading=Объявления\nexport.pdf.button=Экспорт в PDF\npdf.button=PDF\nexport.schedule.pdf.button=Экспорт служения в PDF\nfilefilters.description.pdf.files=Файлы PDF\nnot.started.label=Не запущен\nquelea.schedule.text=Расписание Quelea\nuser.options.options=Настройки пользователя\ntext.options.options=Настройки текста\nstretch.video.label=Растягивать видео\nexport.schedule.songs.pdf.button=Экспорт песен в PDF\nexporting.label=Экспорт\nuse.shadow.label=Тень?\nshadow.color.label=Цвет тени\nshadow.offset.label=Сдвиг тени\nshadow.radius.label=Радиус тени\nshadow.spread.label=Размер тени\nhelp.menu.manual=Справка\nedit.theme.text=Редактировать тему\nchange.bible.version.text=Сменить перевод\nswitch.to.text=Переключить на\nsave.qr.code.text=Сохранить QR Код\nnonbreak.tooltip=Добавить неразрывную строку\ncopying.video.please.wait.text=Подождите минутку - копируем видео...\ntranslating.text.please.wait.text=Подождите пожалуйста, обрабатываем перевод...\nfilefilters.description.usr.files=Файлы USR (SongSelect)\nsongselect.import.line1=Выберите файлы SongSelect.\npm.import.line1=Выберите песни Presentation Manager для импорта.\nsmi.import.line1=Выберите песни Screen Monkey для импорта.\nsongselect.button=SongSelect\nvideopsalm.button=VideoPsalm\npm.button=Менеджер презентаций\nsm.button=Screen Monkey\ntranslation.export.heading=Экспорт перевода\ninclude.translations.question=Включить переводы в PDF?\nslide.text=Слайд\nautoplay.vid.label=Автовоспроизведение видео в эфире\nadvance.on.live.label=Авто предпросмотр следующего элемента\ndelete.translation.title=Удалить перевод\ndelete.translation.text=Удалить перевод $1?\nhelp.menu.wiki=Wiki\npreview.on.image.change.label=Предпросмотр элемента при смене картинки\nadd.timer.tooltip=Добавить таймер\nfilefilters.description.image.video.files=Видео и изображения\ntimer.duration.label=Длительность\ntimer.file.label=Расположение файла с фоном\nduration.tooltip.label=\\#\\:## или ##м##с\ntranslation.choice.title=Выбранный перевод\nfont.options.title=Настройки шрифта\nnew.translation.title=Новый перевод\nadd.timer.title=Добавить таймер\nuntitled.theme.text=Безымянная тема\ntimer.text.label=Дополнительный текст\ntimer.text.prompt=Используйте символ решетка \\# для указания места для таймера, например \"Служение начнется через \\#\" выведет \"Служение начнется через 05\\:00\"\ncountdown.label=Таймер\ntimer.theme.label=Настройки темы\ntimer.theme.button=Сменить тему\nembed.media.in.schedule=Включать медиа файлы в файл расписания\nmediashout.import.line1=Выберите расположение базы данных MediaShout (в формате txt) ниже\\:\nsongbeamer.import.line1=Выберите расположение файлов SNG для импорта\\:\nfilefilters.description.txt.files=Файлы .txt\nmediashout.button=MediaShout\nsongbeamer.button=SongBeamer\nclear.stage.view=Очищать вид сцены вместе с основным экраном\ntop=Наверху\nbottom=Внизу\nepicworship.import.line1=Импорт песен из EpicWorship в формате (.epc).\nfilefilters.description.epc=EpicWorship .epc songpack\nepicworship.button=EpicWorship\nadd.videos.panel=Добавить видео\nremove.video.text=Удалить видео\ndelete.video.title=Удалить видео\ndelete.video.confirmation=Удалить видео из библиотеки? Это действие нельзя отменить.\nlibrary.video.heading=Видео\ntimer.files.description=Таймеры\nadd.timers.panel=Добавить таймеры\nlibrary.timer.heading=Таймеры\ntimer.save.label=Сохранить таймер?\ntimer.name.label=Название\nedit.timer.text=Редактировать таймер\nremove.timer.text=Удалить таймер\nconfirm.remove.timer=Удалить $1 из списка таймеров? Это действие нельзя отменить.\nkingsway.button.range=Диапазон\nkingsway.range.import.text=Введите диапазон страниц с песнями для загрузки с сайта Kingsway's.\\nМаксимальное количество страниц 3600.\nkingsway.range.import.heading=Импорт диапазона песен Kingsway\nsdb.files.description=Файл Songpro\nsongpro.button=SongPro\noverflow.song.label=Переход текущей песни в следующую\ninvalid.search=Не верный поиск\nrcs.add.failed=Не удалось добавить\nrcs.add.success=Добавлено в расписание\nrcs.add.song=Добавить песню в расписание\nrcs.add.bible.error=Возникла ошибка при добавлении $1 в расписание\nrcs.submit=Применить\nrcs.song.search=Песня\nrcs.bible.search=Библия\nrcs.search=Поиск и добавление\nshow.video.library.panel=Показывать вкладку видео (требуется перезапуск)\nuse.24h.clock=Использовать 24ч формат\nsplit.bible.verses=Не разбивать стихи на слайды\nno.verse.title=Стих не найден\nno.verse.message=Мы не смогли найти один или более стихов и попытались продолжить без них.\nchorus.tooltip=Добавить припев\nrecordings.path=Путь для записей\ndownload.path=Папка для загрузок\nconvert.mp3=Автоматически конвертировать записи в формат MP3 (требуется VLC)\nrecording.warning.title=Укажите путь записей\nrecording.warning.message=Вам нужно указать папку в настройках, в которую будут сохраняться записи.\nrecording.no.devices.title=Не найдено записывающих устройств\nrecording.no.devices.message=Извините, но совместимых устройств записи не найдено.\\nУбедитесь в том, что устройство записи подключено и активно.\nsave.recording.before.exit.title=Несохраненная запись\nsave.recording.before.exit.message=Вы желаете сохранить запись перед выходом?\nrecord.audio.tooltip=Запись аудио\npause.record.tooltip=Пауза\nmax.lines.per.slide=Строк на слайд (примерно)\npresentation.options.heading=Презентации\nrecordings.options.heading=Записи\ncopy.song.db.default=По умолчанию копировать песню в расписание\nadd.pdf.tooltip=Добавить PDF\nimportexport.options.heading=Импорт/Экспорт\nmp.button=Mission Praise\npreview.failed=Предпорсмотр не удался\nset.loop.manually.title=PowerPoint не найден\nset.loop.manually.message=Презентация была закрыта. Если желаете использовать функцию повтора в PowerPoint, вам нужно вручную установить функцию повтора в презентации во время ее создания.\npresentation.changed.message=Нужно перезапустить Quelea чтобы применить новые настройки презентации.\npresentation.changed.label=Настройки презентации изменены\npresentation.not.started.label=PowerPoint не был запущен\npresentation.not.started.message=К сожалению ваша презентация не может быть открыта в PowerPoint. Может быть файл поврежден?\npp.already.running.label=PowerPoint уже запущен\npp.already.running.message=Другая копия PowerPoint уже запущена. Пожалуйста закройте все окна PowerPoint перед открытием презентации в Quelea чтобы избежать потери данных.\npp.path.label=Путь до программы PowerPoint\nuse.pp.label=Использовать PowerPoint для презентаций\nclose.all.presentations.label=Закрыть все открытые презентации\nclose.all.presentations.message=Пожалуйста закройте все окна PowerPoint прежде чем нажать OK иначе это будет сделано автоматически.\nlive.text.message=Любой текст написанный ниже будет виден пользователям мобильной трансляции когда основной экран пуст.\\n\\nИспользуйте пустую строку чтобы начать на следующем слайде. Так же вы можете использовать кнопку Очистить (или CTRL + Return) чтобы удалить весь текст. Строки более 200 символов будут автоматически обрезаны для пользователей.\nlive.text.title=Текст в эфире\nexit.live.text=Закрыть\nclear.live.text=Очистить\ndefault.translation=По умолчанию\nselect.language=Выберите язык\\:\nsend.live.text=Текст в эфире\nconverting.to.mp3=Преобразование записей в MP3\nverse.tooltip=Добавить куплет\nbridge.tooltip=Добавить мост\nprechorus.tooltip=Добавить пред-припев\ntag.tooltip=Добавить тег\nadd.website=Добавить сайт\nfocus.switcher.title=Переключатель фокуса Quelea\nfocus.switcher.message=Переключите фокус на это окно если нужно будет во время презентации.\nfocus.pp=Переключить фокус на PowerPoint\nfocus.quelea=Переключить фокус на Quelea\nwebsite.dialog.title=Адрес сайта URL\nwebsite.dialog.header=Введите адрес сайта\nwebsite.dialog.content=Введите адрес страницы для отображения\\:\npaste.label=Вставить\nundo.label=Отменить\nredo.label=Повторить\nsundayplus.import.line2=(Файлы PTF должны находиться в корне zip-архива.) \nhelp.menu.error.text=Извините, нам не удалось загрузить страницу. Вы можете открыть ее вручную: $1 \nfilefilters.description.songs.worshiphim=Файлы Worship Him MDB\nworshiphim.import.line1=Выберите расположение базы данных Worship Him (в формате mdb) ниже: \nworshiphim.button=Worship Him \nshow.extra.live.panel.toolbar.options.label=Показать опции дополнительной панели эфира\nelevanto.button=Elevanto\nschedule.items.skipped.text=Некоторые элементы расписания не были добавлены, т.к. в них нет встроенного медиа.\ndelete.notice.button=Удалить\ntheme.copy.label=Скопировать с темы\nsong.default.theme.label=Тема по умолчанию\nelevanto.import.heading=Elevanto\nsaved.notices=Уведомления сохранены\ntheme.select.label=Выбор темы\nbible.default.theme.label=Тема по умолчанию\nelevanto.loginsuccess.message=Вы можете закрыть это окно и вернуться в Quelea\nschedule.items.skipped.header=Элементы, не добавленные в расписание\nallow.item.theme.override.global=Разрешить пользовательским темам переопределять глобальную тему\ncopy=Копировать\nsave.add.notice.button=Сохранить и добавить\nvideo.loop.tooltip=Переключатель повтора вкл / выкл\nelevanto.loginerror.warning=Не удалось авторизоваться в Elevanto\ndb.song.preview.label.databasepreview=В разделе базы данных\ndelete.bible.confirmation=Вы действительно хотите удалить Библию $1?\ndb.song.preview.label=Предпросмотр песни в базе данных\ndb.song.preview.label.control=Нет\nbible.delete.error.heading=Ошибка\ndb.song.preview.label.previewpane=В разделе предпросмотра\nbible.delete.error.text=Извините, возникла ошибка при удалении Библии из требуемой директории.\ndelete.bible.label=Удалить текущую Библию\ndefault.theme.label=По умолчанию\ntheme.changed=Тема изменена\ninterface.theme.label=Тема приложения\ntheme.changed.message=Вы должны перезапустить Quelea для применения изменений темы.\ndark.theme.label=Темная\nchosen.sequence.label=Выбранный порядок\ngeneral.user.options=Основные настройки пользователя\nchosen.sequence.explanation=Перетащите элементы из левой части в правую или дважды кликните, чтобы создать последовательность песен. Слайды с текстами песен будут показаны в этом порядке, независимо от порядка, в котором песни хранятся в базе данных.\nremote.action.slide=Переключить на следующий/предыдущий слайд\nsmall.song.position.label=Положение информации о песне\nmove.up.sequence.tooltip=Передвинуть секцию выше\nremote.dpad.navigation.description=Используйте кнопки на dpad (вверх/вниз) для навигации по слайдам. Активируе эту функцию для использования клавиатуры bluetooth или педали (например AirTurn).\nsequence.tooltip=Подсказка последовательности песен\nsmall.bible.text.options=Настройки текста для Small Bible\nremote.double.press.title=Действие по двойному нажатию\nremote.signal.failed=Не удаллось отправить сигнал на сервер\nremote.navigation.settings.title=Настройки навигации\npassword.empty.message=Пароль сервера не может быть пустым. Будет использован пароль по умолчанию \"quelea\" пока вы не укажете свой.\nsequence.selection.dialog.title=Выбор последовательности\nremote.failed.finding.server=Не удалось найти мобильный сервер Quelea. Пожалуйста, убедитесь, что сервер Quelea запущен и вы указали верный URL.\nremote.select.book=Выбор книги\nremote.swipe.navigation.title=Навигация свайпами\ninterface.options.options=Настройки интерфейса\npp.path=Путь к программе PowerPoint\nfilefilters.description.propresenter=Песни Propresenter\nremote.about.text.responsibility=Я не могу гарантировать безупречную работу, по-этому я не беру на себя ответсвенности за неполадки, которые могут возникнуть в текущих настройках.\nremote.about.title=О приложении\nremote.needs.newer.version=Эта функция требует запущенного сервера Quelea $1 или выше\nremote.select.chapter.verses=Выбор главы и стиха(ов)\nbible.version=Версия Библии\nremote.about.text.support=Если у вас есть вопросы или замечания, напишите мне по адресу arvid @ quelea.org , но перед этим убедитесь в правильности настроек обоих серверов и в том, что они оба запущены.\nremote.add.go.live=Добавить и перейти в эфир\nclick.to.add=Нажмите чтобы добавить\nremote.send.notice.tooltip=Добавить заметку\npropresenter.button=ProPresenter\nremote.privacy.policy=Политика конфиденциальности\nremote.enable.dpad.navigation=Активировать навигацию через dpad\nsong.list=Список песен\nremote.action.item=Переключить на следующий/предыдущий слайд\nremote.ipv6.not.supported=К сожалению, вы не можете использовать IPv6. Вам нужно использовать IPv4 чтобы использовать это приложение. Если вы не знаете как его узнать, наберите в поиске 'узнать локальный ip' и вашу операционную систему. Введите ниже адрес IPv4.\nremote.long.press.title=Действие по долгому нажатию\npassword.empty.label=Найден пустой пароль\nremote.donations.link=Пожертвовать\nslide.transition.label=Использовать эффект затухания между слайдами\nremote.port.needed=Адрес должен сожержать номер порта на конце (например ':1112'). Попробуйте еще раз.\navailable.sections.label=Секции достпуные в этой песне\nremote.use.autoconnect=Пытаться автоматически определить адрес сервера\nremove.sequence.tooltip=Удалить секцию из последовательности\nmove.down.sequence.tooltip=Переместить секцию ниже\nremote.select.theme=Выбрать тему\nfilefilters.description.sunday.plus=Песни Sunday plus\nremote.long.press.description=Выберите что должно произойти по долгому нажатию на кнопку когда вы используете навигацию с одной из опций выше. Обратите внимание, что это не будет работать с педалями AirTurn.\nsmall.bible.size.label=Размер информации о библии\nfilefilters.description.xml.openlyrics=Файлы XML openlyrics\nfilefilters.description.csv.files=Файлы .csv\nremote.connected=Подключено!\nremote.on.end.title=Действие в начале/в конце\ngeneral.interface.options=Основные настройки интерфейса\nremote.enable.volume.navigation=Активировать навигацию громкостью\nremote.on.end.description=Выберите что приложение должно делать когда вы используете навигацию с одной из опций выше при достижении конца/начала.\nremote.disable.record=Отключить кнопку записи\nremote.action.logo=Спрятать текст и показать лого\nremote.action.black=Спрятать текст черным экраном\nremote.action.nothing=Ничего не делать\nremote.about.text.app=Это некоммерческое приложение, предназначенное для использования с церковным программным обеспечением с открытым исходным кодом Quelea (http://quelea.org). Приложение больше не находится в стадии бета-тестирования, но оно все еще не идеально. Это любительский проект, в основном предназначенный для личного использования, но свободно распространяется для всех желающих.\nremote.report.issue=Отчет о проблеме\nremote.auto.progress.item=Перейти к следующему/предыдущему объекту\nremote.theme.was.set=$1 была установлена в качестве глобальной темы\nremote.swipe.navigation.description=Выберите что должно произойти при свайпе влево или вправо по экрану.\nmobile.remote.heading=Мобильное управление\nschedule.options=Опции расписания\nsmall.song.size.label=Размер информации о песне\nremote.action.clear=Спрятать текст кнопкой очистки\npropresenter.import.line1=Будут импортированы песни из файла Propresenter.\nremote.search.server=Поиск сервера\nremote.wrong.content=Обнаружене неверное содержание страницы. Попробуйте снова.\nremote.information.title=Информация\nremote.choose.action=Выберите действие для $1\nsong.sequence=Последовательность:\nsmall.bible.position.label=Положение информации о Библии\nremote.double.press.description=Выберите, что вы хотите сделать, если вы нажмете две кнопки одновременно, когда вы используете любой из двух вариантов, указанных выше.\nremote.control.app.name=Quelea Mobile Remote\nremote.no.wifi=Вы не подключены к Wi-Fi. Укажите URL вручную или подключитесь к Wi-Fi.\ntheme.options=Настройки темы\nremote.search.tooltip=Добавить песню или отрывок из Библии\nremote.about.translating=О переводе приложения\nsmall.song.text.options=Настройки текста Small Song\nremote.source.code=Исходный код\nremote.volume.navigation.description=Используйте аппаратные кнопки громкости телефона для перехода к следующему или предыдущему слайду/элементу.\nremote.chapter=Глава\nremote.start.verse=Первый стих\nremote.end.verse=Последний стих\nclient.id=ID Клиента\nlink.preview.and.live.dividers.label=Связать разделители панелей предпросмотра и эфира\nstage.show.clock=Показать часы\nsong.sequence.tip=Подсказка: Вы можете добавить одну секцию (например припев) несколько раз!\nenter.valid.port=Пожалуйста, введите число между 1029 и 49151\nopen.sequence.editor.tooltip=Показать редактор очереди\ntranslation.text.options=Параметры текста перевода\ngeneral.text.options=Параметры основного текста\nuse.default.translation.label=Использовать перевод по-умолчанию\nbible.load.error.title=Ошибка загрузки Библии\ntranslation.name.label=Название перевода\nbible.load.error.question=Невозможно загрузить Библию, возможно файл поврежден или имеет неверный формат.\nbible.book.genesis=Бытие\nbible.book.exodus=Исход\nbible.book.leviticus=Левит\nbible.book.numbers=Числа\nbible.book.deuteronomy=Второзаконие\nbible.book.joshua=Иисус Навин\nbible.book.judges=Судьи\nbible.book.ruth=Руфь\nbible.book.1samuel=1 Царств\nbible.book.2samuel=2 Царств\nbible.book.1kings=3 Царств\nbible.book.2kings=4 Царств\nbible.book.1chronicles=1 Паралипоменон\nbible.book.2chronicles=2 Паралипоменон\nbible.book.ezra=Ездра\nbible.book.nehemiah=Неемия\nbible.book.esther=Есфирь\nbible.book.job=Иов\nbible.book.psalms=Псалтырь\nbible.book.proverbs=Притчи\nbible.book.ecclesiastes=Екклезиаст\nbible.book.songofsolomon=Песнь песней\nbible.book.isaiah=Исаия\nbible.book.jeremiah=Иеремия\nbible.book.lamentations=Плач Иеремии\nbible.book.ezekiel=Иезекииль\nbible.book.daniel=Даниил\nbible.book.hosea=Осия\nbible.book.joel=Иоиль\nbible.book.amos=Амос\nbible.book.obadiah=Авдий\nbible.book.jonah=Иона\nbible.book.micah=Михей\nbible.book.nahum=Наум\nbible.book.habakkuk=Аввакум\nbible.book.zephaniah=Софония\nbible.book.haggai=Аггей\nbible.book.zechariah=Захария\nbible.book.malachi=Малахия\nbible.book.matthew=Матфей\nbible.book.mark=Марк\nbible.book.luke=Лука\nbible.book.john=Иоанн\nbible.book.acts=Деяния\nbible.book.romans=Римлянам\nbible.book.1corinthians=1 Коринфянам\nbible.book.2corinthians=2 Коринфянам\nbible.book.galatians=Галатам\nbible.book.ephesians=Ефесянам\nbible.book.philippians=Филиппийцам\nbible.book.colossians=Колоссянам\nbible.book.1thessalonians=1 Фессалоникийцам\nbible.book.2thessalonians=2 Фессалоникийцам\nbible.book.1timothy=1 Тимофею\nbible.book.2timothy=2 Тимофею\nbible.book.titus=Титу\nbible.book.philemon=Филемону\nbible.book.hebrews=Евреям\nbible.book.james=Иакова\nbible.book.1peter=1 Петра\nbible.book.2peter=2 Петра\nbible.book.1john=1 Иоанна\nbible.book.2john=2 Иоанна\nbible.book.3john=3 Иоанна\nbible.book.jude=Иуды\nbible.book.revelation=Откровение\n"
  },
  {
    "path": "Quelea/languages/si.lang",
    "content": "LANGUAGENAME=Slovenščina (SI)\ndatabase.heading=Podatkovna zbirka\nimport.heading=Uvozi\nqsp.button=Quelein nabor pesmi\nos.button=Opensong\nolp.button=OpenLP\nolyrics.button=OpenLyrics\nzw.button=ZionWorx\nsp.button=Sunday Plus\npco.button=Spletno središče načrtovanja\npco.login.import.heading=Vpis v spletno središče načrtovanja\npco.loginerror.title=Napaka vpisa\npco.loginerror.warning=Vpis je spodletel. Preverite epošto in geslo ter ponovno poskusite\npco.import.heading=Spletno središče načrtovanje\nelevanto.button=Elevanto\nelevanto.import.heading=Elevanto\nelevanto.loginsuccess.message=Lahko zaprete to okno in se vrnete v Queleao\nelevanto.loginerror.warning=Napaka pri vpisovanju v Elevanto\npassword.text=Geslo\nemailaddress.text=Enaslov\nlogin.text=Vpis\nss.button=Pesmarica Survivor\nprojector.heading=Naslikovalnik\ncontrols.heading=Upravljanje\non.button=Vključeno\noff.button=Izključeno\ncopy=Kopiraj\nswitch.input.button=Preklopi vhod\ngeneral.options.heading=Splošno\ndisplay.options.heading=Prikaz\nbible.options.heading=Sveto pismo\ncheck.for.update.label=Preveri razpoložljivost posodobitev ob zagonu\n1.monitor.warn.label=Opozori, če je priključen le en zaslon\ncapitalise.start.line.label=Velika začetnica v vsaki vrsti\none.line.mode.label=Predogled ene vrstice na del pesmi\ndisplay.song.info.label=Prikaži podatke o pesmi\ntext.border.thickness.label=Debelina meje besedila\nmax.chars.line.label=Največje število znakov na vrstico\nadvanced.label=Napredno\nok.button=V redu\noutput.text=Izhod\ncontrol.screen.label=Upravljalni zaslon\nprojector.screen.label=Naslikovalni zaslon\nstage.screen.label=Odrski zaslon\ncustom.position.text=Položaj po meri\ndefault.bible.label=Privzeto\nmax.verses.label=Največ na enkrat prikazanih vrstic\nadd.bible.label=Dodaj sveto pismo ...\ndelete.bible.label=Izbriši obstoječe sveto pismo\ndelete.bible.confirmation=Ali res želite izbrisati Sveto pismo $1?\nnone.text=Brez\nnew.schedule.button=Nov razpored\nopen.schedule.button=Odpri razpored\nsave.schedule.button=Shrani razpored\nsave.as.schedule.button=Shrani razpored kot ...\nprint.schedule.button=Natisni razpored\noptions.title=Možnosti\noptions.button=Možnosti\nexit.button=Izhod\nnew.schedule.text=Nov razpored\ncreate.new.schedule.text=Ustvari nov razpored\nopen.schedule.text=Odpri razpored\nopen.existing.schedule.text=Odpri obstoječi razpored\nsave.schedule.text=Shrani razpored\nsave.schedule.disk.text=Shrani razpored na disk\nsave.as.schedule.text=Shrani razpored kot\nsave.as.schedule.disk.text=Shrani razpored kot drugo datoteko\nprint.schedule.text=Natisni razpored\nprint.current.schedule.text=Natisni trenutni razpored\noptions.text=Možnosti\ndisplay.options.text=Prikaži pogovorno okno z možnostmi\nexit.text=Zapri Queleao\nquit.quelea.text=Zapusti Queleao\nlibrary.image.heading=Slike\nlibrary.songs.heading=Pesmi\nlibrary.bible.heading=Sveto pismo\nbible.heading=Sveta pisma\nlibrary.song.search=Iskanje\nclear.search.box=Počisti iskanje\nadd.song.text=Dodaj pesem v podatkovni zbir\nremove.song.text=Odstrani pesem iz podatkovnega zbira\nlibrary.add.to.schedule.text=Dodaj na razpored\nlibrary.copy.to.schedule.text=Kopiraj na razpored\nlibrary.edit.song.text=Uredi pesem\nlibrary.remove.song.text=Odstrani pesem\nlibrary.print.song.text=Natisni pesem\nadd.to.schedule.text=Dodaj na razpored\norder.service.heading=Zaporedje pri bogoslužju\nmove.down.schedule.tooltip=Pomakni nižje po razporedu\nmove.up.schedule.tooltip=Pomakni višje po razporedu\nremove.song.schedule.tooltip=Odstrani z razporeda\nadjust.theme.tooltip=Prilagodi temo\nedit.song.text=Uredi pesem\nnew.theme.text=Nova tema ...\ntheme.select.text=Izberite temo:\ndefault.theme.name=Privzeta\ndefault.theme.text=Privzeta tema\nremove.theme.tooltip=Odstrani temo\nedit.theme.tooltip=Uredi temo\nedit.theme.heading=Upravljalnik tem\npreview.heading=Predogled\nlive.heading=V živo\ngo.live.text=V živo\nblack.screen.tooltip=Črnina\nclear.text.tooltip=Prazen zaslon\nhide.display.output.tooltip=Skrij izhod zaslona\nschedule.heading=Razpored\nadd.song.button=Dodaj pesem\nremove.item.button=Odstrani predmet\nadd.multimedia.heading=Dodaj večpredstavnost\nadd.presentation.button=Dodaj predstavitev\nadd.video.button=Dodaj video\nadd.youtube.button=Dodaj posnetek z Youtuba\nadd.live.video.button=Dodaj posnetek v živo\nadd.dvd.button=Dodaj DVD\nadd.audio.button=Zvok\nadd.audio.tooltip=Dodaj zvok\nshare.heading=Deli\nemail.button=Pošilji razpored po epošti\nmanage.notices.button=Upravljanje opomb ...\nnotices.heading=Opombe\nnew.notice.text=Nova opomba\nedit.notice.text=Uredi opombo\nremove.notice.text=Odstrani opombo\ndone.text=Končano\nnew.notice.heading=Nova opomba\nnotice.text=Opomba\nnotice.times.text=Število prikazovanj\nnotice.infinite.question=Neskončno?\nadd.notice.button=Dodaj opombo\nedit.notice.button=Uredi opombo\nyes.text=Da\nno.text=Ne\ncancel.text=Prekliči\nnew.song.button=Nova pesem\nedit.song.button=Uredi pesem\ndelete.song.button=Izbriši pesem\nsongs.heading=Pesmi\ntags.button=Upravljanje oznak ...\nsource.button=Vir\neasyslides.button=EasySlides\npropresenter.button=ProPresenter\nfreeworship.button=Freeworship\neasyworship.button=EasyWorship 2009\nplainText.button=Navadno besedilo\nkingsway.button=Kingsway Online\nexport.heading=Izvozi\nfilter.tag=Presejalne oznake\ntags.colon.label=Oznake:\nimport.button=Uvozi\nimport.all.button=Uvozi vse\nimport.selection.button=Uvozi izbrane\nrefresh.button=Osveži\nclick.select.file.text=Kliknite željeno datoteko\ncheck.duplicates.text=Preveri podvajanje\nedit.song.title=Uredi pesem\nbasic.information.heading=Osnovni podaki\ndetailed.info.heading=Podrobni podatki\ntheme.heading=Tema\ntitle.label=Naslov\nauthor.label=Avtor\nrun.spellcheck.label=Črkovalnik\nfix.apos.label=Počisti opuščaje in narekovaje\ntrim.lines.tooltip=Poreži vrstice\ntranspose.tooltip=Spremeni tonaliteto...\ncancel.button=Prekliči\nccli.number.label=CCLI številka\ncopyright.label=Avtorske pravice\nyear.label=Leto\npublisher.label=Izdajatelj\ntags.label=Oznake\ntype.tag.name.here.text=<Sem vtipkajte oznake>\nkey.label=Tonalitete\ncapo.label=Kapodaster\nnotes.label=Opombe\nfont.theme.label=Pisava\nchoose.color.text=Izberite barvo ...\nbackground.text=Ozadje\nbackground.theme.label=Tema ozadja\ncolor.theme.label=Barva\nimage.theme.label=Slika\nselect.color.title=Izberite barvo\nselect.color.button=Določite barvo\nnew.song.title=Nova pesem\nsof.button=Pesmi o tovarištvu\ntype.lyrics.here.text=Sem vtipkajte besedilo\nrtf.files.description=Datoteke RTF\nsng.files.description=Datoteke SNG (SongBeamer)\nvideopsalm.import.line1=S tem uvozite knjižnico VideoPsalma iz datoteke JSON.\nfreeworship.import.line1=S tem uvozite pesmi FreeWorshipa iz datotek XML.\nsof.import.line1=S tem uvozite knjižnico SoF-a iz datoteke RTF.\nplaintext.import.line1=S tem uvozite pesmi iz navadne besedilne datoteke.\nkingsway.import.line1=S tem uvozite Kinsway-evo spletno knjižnico.\nsongpro.import.line1=S tem uvozite pesmi iz SongPro-jeve SDB podatkovne zbirke.\nkingsway.import.line2=To lahko dolgo traja (tudi več ur!), zato bodite potrpežljivi in pustite Queleo delati!\neasyslides.import.line1=S tem uvozite pesmi iz EasySlide-ove datoteke XML.\npropresenter.import.line1=S tem uvozite pesmi iz Propresenterjeve pesemske datoteke.\neasyworship.import.line1=S tem uvozite pesmi iz Easyworship-ove pesmske datoteke .MB\nmissionpraise.import.line1=S tem uvozite pesmi iz Mission Prais-ovih datotek RTF.\nopenlyrics.import.line1=Spodaj izberite mesto Openlyrics-ovih pesmi.\nqsp.import.line1=Spodaj izberite mesto Queleve pesemske zbirke.\nos.import.line1=Spodaj izberite mesto Opensong-ove podatkovne zbirke.\nzw.import.line1=Spodaj izberite mesto ZionWorx-ove datoteke \"MainTable.dat\".\nzw.import.line2=Običajno jo lahko najdete na \"C:\\\\ProgramData\\\\ZionWorx\\\\2.6\\\\Data\".\nolp.import.line1=Spodaj izberite mesto OpenLP-jev podatkovne zbirke.\nsundayplus.import.line1=Spodaj izberite mesto Sunday Plus-ove datoteke.\nsource.import.line1=Izberite mesto mape s hvalnicami na izvorni zgoščenki.\nsurvivor.import.line1=Spodaj izberite mesto PDF-ja pesmarice Survivor Songbook.\nsurvivor.import.line2=Biti mora acetates.pdf brez kitarskih sozvokov ali notnega zapisa.\nimport.error.message=Žal je prišlo do napake pri uvažanju. Za pomoč se lahko obrnete na Queleino razpravljalnico: https://quelea.discourse.group/\nemail.error.title=Napaka epošte\nemail.error.text=Pri odpiranju vašega epoštnega odjemalca je prišlo do napake. Preverite ali imate epoštni odjemalec nameščen in prijavljen, da lahko upravlja z epošto, sicer boste morali sporočilo poslati ročno.\nemail.text=Lep pozdrav! V priponki je Quelein razpored. Enostavno ga odprite s Queleo in vsi predmeti bi morali biti pravilno prikazani.\nselect.image.button=Izberite sliko\nimage.files.description=Slikovne datoteke\npng.files.description=PNG slike\ntools.label=Orodja\nselect.songs.title=Izberite pesmi\ncheck.uncheck.all.text=Označi/odoznači vse\ndelete.theme.confirm.title=Potrdite brisanje\ndelete.theme.question=Ali res želite izbrisati to temo?\ntoo.many.verses.error=Žal ni mogoče prikazati toliko vrstic ... poskusite z manjšim številom.\none.monitor.warning=Kaže, da imate nameščen le en zaslon. To zadostuje, če Queleo uporabljate le za pripravljanje razporedov, če pa jo uporabljati v živo, morata biti za pravilno delovanje priklopljena dva zaslona.\none.monitor.title=Le en zaslon\nno.dvd.heading=Diska ni mogoče najti\nno.dvd.error=Vstavite veljaven DVD ali Blu-ray.\nadding.presentation.status=Uvažanje predstvitve ...\nadding.presentation.error.message=Pri uvažanju predstavitve je prišlo do napake. Mogoče je okvarjena?\nadding.presentation.error.title=Napaka pri uvažanju predstavitve.\nimporting.status=Uvažanje ...\nname.label=Ime\nsimilar.colors.text=Za ozadje in besedilo ste izbrali dve zelo podbni barvi, ki ju bosta za ljudstvo težko berljivi. Priporočamo, da izberete primernejšo barvno dvojico!\nwarning.label=Opozorilo\nfile.menu=Datoteka\ntools.menu=Orodja\nschedule.menu=Razpored\ndatabase.menu=Podatkovna zbirka\nprojector.menu=Naslikovalnik\nnew.theme.title=Nova tema\nadd.theme.label=Dodaj temo\ntheme.name.label=Ime teme\ntheme.select.label=Izberite temo\ntheme.copy.label=Povzami po temi\nhelp.menu=Pomoč\nhelp.menu.website=Spletna stran\nhelp.menu.discussion=Podpora / Razprava (tukaj lahko zastavite vprašanje)\nhelp.menu.feedback=Odziv\nhelp.menu.download=Prenos\nhelp.menu.update=Preveri posodobitve\nhelp.menu.about=O programu ...\nhelp.menu.error.text=Žal te strani ni bilo mogoče naložiti. Do nje lahko pribrskate ročno: $1\nhelp.menu.error.title=Napaka\nhelp.about.title=O programu\nhelp.about.version=Različica\nhelp.about.close=Zapri\nhelp.about.line1=Quelea je registrirana pod Splošno dovoljenje (GPL različica 3.)\nhelp.about.line2=Je in bo ostala brezplačen in odprtokoden program.\nnew.schedule.tooltip=Nov razpored\nopen.schedule.tooltip=Odpri razpored\nsave.schedule.tooltip=Shrani razpored\nprint.schedule.tooltip=Natisni razpored\nnew.song.tooltip=Nova pesem\nadd.presentation.tooltip=Dodaj predstavitev\nadd.dvd.tooltip=Dodaj DVD\nadd.video.tooltip=Dodaj video\nadd.multimedia.tooltip=Dodaj večpredstavnost\nmanage.tags.tooltip=Upravljanje oznak\nmanage.notices.tooltip=Upravljanje obvestil\nalready.running.error=Kaže, da imate Queleo že odprto.\\nPreden zaženete program je treba vse ostale Queleje zapreti.\nalready.running.title=Že odprta\nerror.schedule.message=Pri odpiranju razporeda je prišlo do težave. Lahko da je okvarjen ali pa ni bil shranjen s Queleo.\nerror.schedule.title=Napa pri odpirnanju razporeda\nprint.chords.question=Ali se pri tiskanju te pesmi natisnejo tudi sozvoki?\nprint.chords.export.question=Ali se s pesmijo izvozijo tudi sozvoki?\nprinting.options.text=Natisni pesem\nspace.key=preslednica\nupdating.db=Posodabljanje podatkovne zbirke\nerror.updating.song.text=Pri posodabljanju pesmi v podatkovni zbirki je prišlo do napake. Zato je lahko okvarjena.\nerror.text=Napaka\nquick.shortcut.description=Esc za preklic in dvigaka+potrdi za shranjevanje\nsave.before.exit.text=Razpored je bil spremenjen. Ali ga želite pred izhodom shraniti?\nsave.before.exit.title=Neshranjen razpored\nno.chords.message=V tej pesmi ni nobene vrstice s sozvoki, da bi jim spremenili višino.\nno.chords.title=Brez sozvokov\nerror.checking.updates.title=Ni mogoče preveriti posodobitev\nerror.checking.updates.text=Žal je pri iskanju posodobitev prišlo do napake. Preverite vašo spletno povezavo in ponovno poskusite.\nnewer.version.available=Na voljo je novejša različica Queleje\nno.newer.version.available=Vaša različica Queleje je najnovejša\nvisit.webpage.now=Želite sedaj na spletno stran, da bi jo prenesli?\ndownload.manual.update=Prenesete jo lahko tukaj\nnewer.version.available.title=Posodobitev na voljo\nno.newer.version.available.title=Že posodobljena!\ncheck.kingsway.start=S Kingsway-eve knjižnice ste že nekaj uvažali. Ali želite nadaljevati, kjer ste končali?\ncheck.kingsway.start.title=Že uvoženo\nimport.no.songs.title=Ni nobene pesmi\nimport.no.songs.text=Za uvoz ni bilo mogoče najti nobene pesmi.\nstage.options.heading=Odrski pogled\nstage.show.chords=Prikaži sozvoke?\nstage.line.alignment=Poravnava besedila\nstage.font.selection=Pisava\nstage.background.colour=Barva ozadja\nstage.lyrics.colour=Barva besedila\nstage.chord.colour=Barva sozvokov\nleft=Levo\ncentre=Sredinsko\nright=Desno\nconfirm.label=Ali ste prepričani?\nschedule.clear.text=Razpored je bil spremenjene. Ali želite nadaljevati brez shranjevanja?\npart=del\nhelp.menu.facebook=Stran na Facebooku\nvideo.error=Videoknjižnic ni mogoče zagnati, zato video ne bo deloval. Na razpravljalnem seznamu postavite vprašanje (poglejte na kazalo pomoči) za razrešitev te težave.\nvideo.error.title=Napaka videa\ntext.shadow.label=Prikaži senco črk\nadding.images=Dodajanje slik ...\nsetup.oo.failed.text=OpenOffica ni bilo mogoče nastaviti za prikazovanje predstavitev. Preverite, ali imate OpenOffice nameščen in ali je pot prava.\nsetup.oo.failed.title=OpenOffice se ni zagnal\nuse.oo.label=Za predstavitve uporabi OpenOffice (preizkusno)\noo.path=Pot OpenOffica\nbrowse=Prebrskaj...\nloading.text=Nalaganje\nbuilding.bible.index=Nalaganje Svetih pisem\nbible.search.title=Iskalnik po Svetem pismu\ninitial.search.text=<Tukaj vtipkajte iskano>\nview.bible.button=Poglej Sveta pisma...\nsearch.bible.button=Išči po Svetih pismih ...\nall.text=Vsa\nbible.browser.title=Brskalnik po Svetih pismih\nopen.in.browser=Odpri v brskalniku ...\nkingsway.button.all=Vse pesmi\nkingsway.button.one=Ena pesem\nsong.id.selector=Izberite ID pesmi\nbible.copy.error.text=Žal je pri kopiranju Svetega pisma v željeno mapo prišlo do napake.\nbible.delete.error.text=Žal je pri brisanju Svetega pisma iz mape prišlo do napake.\nbible.copy.error.heading=Napaka\nbible.delete.error.heading=Napaka\nselect.key.label=Izbrite novo tonaliteto:\ntranspose.label=Spremeni višino\nalready.exists.overwrite.label=že obstaja. Želite prepisati?\noverwrite.text=Prepiši\ncant.save.schedule.title=Napaka pri shranjevanju razporeda\ncant.save.schedule.text=Žal je prišlo do napake, zato razporeda ni bilo mogoče shraniti.\nerror.removing.song.db=Pri odstranjevanju pesmi iz podatkovne zbirke je prišlo do napake.\nconfirm.remove.text=Potrdite odstranitev\nconfirm.remove.question=Ali res želite odstraniti $1 iz podatkovne zbirke? Tega ni mogoče več razveljaviti.\nquick.edit.text=Hitro urejanje\nlibrary.preview.song.text=Predogled pesmi\nvideo.error.unsupported=Žal video-datoteka, ki ste jo izbrali, ni podprta.\nvideo.error.general=Žal je pri video-datoteki, ki ste jo izbrali, prišlo do napake.\nvideo.theme.label=Video\nselect.video.button=Izberite videoposnetek\nrefresh.images.panel=Osveži slike\nadd.images.panel=Dodaj slike\nselect.folder.images.panel=Izberite mapo ...\ntext.position.label=Položaj besedila\nimage.folder=Slikovna mapa:\nquick.insert.text=Hitro vstavljanje\nconfirm.overwrite.title=Datoteka že obstaja!\nconfirm.overwrite.text=Ta datoteka že obstaja. Ali jo želite nadomestiti ali nadaljevati brez kopiranja?\nfile.rename.button=Preimenuj\nfile.replace.button=Nadomesti\nfile.continue.button=Nadaljuj\nfile.rename.dialog.title=Preimenuj\nfile.rename.dialog.text=Vnesite novo ime datoteke:\ninterface.language.label=Vmesniški jezik:\nlanguage.changed=Spremenjen jezik\nlanguage.changed.message=Da bi spremembe jezika stopile v veljavo, morate ponovno zagnati Queleo\ndebug.location=Mesto razhroščevalnega zapis\ntop.text.position=Zgoraj\nmiddle.text.position=Sredinsko\nbottom.text.position=Spodaj\nshadow.color=Barva sence\nshadow.x=X zamika senca\nshadow.y=Y zamika sence\nselect.imported.songs.line1=Uvožene so bile naslednje pesmi.\nselect.imported.songs.line2=Izberite tiste, ki jih želite dodati v podatkovno zbirko in nato pritisnite \"Dodaj\".\nselect.imported.songs.line3=Pesmi, za katere Quelea ocenjuje, da so podvojene, so bile odznačene.\nadd.text=Dodaj\nadd.to.database.question=Dodaj v podatkovno zbirko?\nselect.export.songs.line1=V podatkovni zbirki so naslednje pesmi.\nselect.export.songs.line2=Izberite tiste, ki jih želite izvoziti, in pritisnite \"Dodaj\".\nadd.to.songpack.question=Izvozi pesem?\nprojection.window.title=Naslikovalno okno\nclear.live.on.remove.schedule=Odstrani predmet iz pogleda v živo, ko je odstranjen iz razporeda\nspelling.complete.text=Črkovanje je končano.\ncomplete.title=Končano\nspelling.check.title=Preverjanje črkovanja\ncorrect.text=Pravilno\nignore.text=Prezri\nspelling.errors.in.doc.label=V dokumentu so napake črkovanja. Za odprtje črkovalnega pogovornega okna pritisnite \"F7\".\nremove.image.text=Odstrani sliko\ndelete.image.title=Izbriši slik\ndelete.image.confirmation=Ali res želite odstraniti to sliko s knjižnice? Tega ni več mogoče razveljaviti.\nnotice.expired.title=Opomba pretekla\nnotice.expired.text=Opomba, ki jo urejate, je pretekla. Ali jo želite ponovno dodati?\ndictionary.language.text=Jezik slovarja\nconfirm.entry.exit.text=Ali želite shraniti spremembe v tej pesmi?\nconfirm.entry.exit.title=Shrani pesem?\nsave.text=Shrani\ndont.save.text=Ne shrani\nvlc.warning.title=Ni mogoče najti 64-bitnega VLC\nvlc.warning.message=Quelea ni mogla najti 64-bitnega VLC na vašem sistemu. Brez njega Quelea ne bo mogola predvajati videoposnetkov, zvoka ali prikazati pesmi z video-ozadjem. Ali ga želite prenesti sedaj? Če želite, da spremembe po namestitvi VLC-ja stopijo v veljavo, morate Queleo ponovno zagnati.\nvlc.version.message=Vaša rezličica VLC-ja je prestara. You'll need to download the latest version of VLC rez njega Da bi Quelea mogola predvajati videoposnetke, zvoke ali prikazati pesmi z video-ozadjem, boste morali prenesti najnovejšo različico VLC-ja. Ali ga želite prenesti sedaj? Če želite, da spremembe po namestitvi VLC-ja stopijo v veljavo, morate Queleo ponovno zagnati.\ncontinue.without.video=Nadaljuj brez VLC-ja\ndownload.vlc=Prenesi VLC\nstartup.error.title=Napaka zagona\nstartup.error.text=Žale se Quelea iz določenega vzroka ni mogla zagnati na vašem sistemu. Če želite pomogati pri odpravljanju napake, pošljite epošto na support@quelea.org in priložite razhročevalni zapis ($1).\\n\\nVpršanje lahko postavite tudi v Queleini pogovorni skupini (https://quelea.discourse.group).\nfilefilters.description.survivor.songbook=Survivor acetates datoteka\nfilefilters.description.xml.bibles=XML Sveta pisma\nfilefilters.description.xml.easyslide=XML Easyslide datoteke\nfilefilters.description.xml.files=XML datoteke\nfilefilters.description.xml.openlyrics=XML OpenLyrics datoteke\nfilefilters.description.video.files=Video datoteke\nfilefilters.description.pmsong.files=Presentation Manager pesmi\nfilefilters.description.vs.files=VideoPsalm podatkovne zbirke\nfilefilters.description.audio.files=Zvočne datoteke\nfilefilters.description.quelea.schedules=Quelea razporedi\nfilefilters.description.powerpoint.presentations=Powerpoint predstavitve\nfilefilters.description.plain.text.song=Pesmi v golem besedilu\nfilefilters.description.maintable.dat=ZionWorx MainTable datoteka podatkovne zbirke\nfilefilters.description.multimedia.files=Večpredstavnostne datoteke\nbible.search.results.found=najdeno\nbible.search.result.found=najdeno\nbible.search.keep.typing=Nadaljujte s tipkanjem ...\nuniform.font.size.label=Uporabi enotno velikost pisave\nmax.font.size.label=Navečja pisava\nthumbnail.size.label=Velikost sličice\nadditional.line.spacing.label=Dodatni medvrstični razmiki\nlogo.screen.tooltip=Levi klik za prikaz - Desni klik za nastavitve\nchange.graphics.label=Spremeni grafiko\nfont.colour.label=Barva pisave\nbackground.colour.label=Barva ozadja\nmobile.lyrics.heading=Tele-besedilo (Mobile Lyrics)\nuse.mobile.lyrics.label=Uporabi Telebesedilo (Mobile Lyrics)\nport.number.label=Številka vrat\nnavigate.mob.url.label=URL telebesedila (Mobile Lyrics)\nserver.changed.label=Spremenjene nastavitve strežnika\nserver.changed.message=Če želite, da spremembe strežnika stopijo v veljavo, morate Queleo ponovno zagnati.\nfilefilters.description.zip.files=Datoteke Zip\nfilefilters.description.sqlite.files=Datotke SQLite\nloop.label=Zanka\nseconds.label=sekund\nchosen.fonts.explanation=Quelea v oknu teme prikaže le izbor pisav. Povlecite pisave, ki jih uporabljate, z levega v desno polje in tiste, ki jih ne, iz desnega v levo polje.\nignored.fonts.label=Prezrte pisave\nchosen.fonts.label=Izbrane pisave\nfont.selection.dialog.title=Nabor pisav\nvideo.hue.label=Barvitost\nhover.for.position.label=Podržite nad platnom, da določite položaj besedila\ntest.patterns.text=Preizkusni vzorci\ntest.patterns.explanation=Vzorci, ki so tukaj na voljo, bi vam morali pomagati pri nastavljanju ostrine in barvnih nastavitev prikaza. Kliknite na preizkusno sliko, da se prikaže tako na glavnem, kot na odrskem zaslonu.\nyoutube.url.label=URL Youtube videa\nno.tdb.heading=TurboDB izmenjave podatkov ni mogoče najti not found\nno.tdb.message=Iz tehhničnih razlogov morate, preden lahko Quelea uvaža ZionWorxove podatkovne zbirke, prenesti TurboDB izmenjavo podatkov (https\\://www.dataweb.de/en/support/downloads.html). \\nKo jo prenesete, razširite vsebino zip mape v $1.\\n\\nČe prihaja do težav, brez oklevanja postavite vprašanje v pogovorno skupin (https://quelea.discourse.group).\nshow.verse.numbers=Pokaži številke kitic\nadd.song.hint.text=Ni pesmi? Ni težave. Če želite dodati pesem, kliknite gumb \"Nova pesem\" na levi strani.\nadd.song.hint.search.text=Trenutno ni nobene pesmi, ki bi odgovarjala vašemu iskanju. Za dodajanje pesmi, kliknite levo gumb \"Nova pesem\".\nfilefilters.description.songs.mb=Easyworship pesmi.MB podatovna baza\nfilefilters.description.songs.missionpraise=Mission Praise datoteke RTF\nfilefilters.description.songs.worshiphim=Worship Him datoteke MDB\ntranslate.tooltip=Prevod pesmi\nclose.button=Zapri\nadd.translation.button=Dodaj prevod ...\nenter.translation.name.label=V kateri jezik želite prevesti?\ntranslate.dialog.title=Prevajalni upravljalnik\nconfirm.remove.translation.title=Odstrani prevod?\nconfirm.remove.translation.text=Ali res želite izbrisati ta prevod?\ndefault.translation.label=Privzeti prevod\noverwrite.lyrics.title=Povozi obstoječe besedilo?\noverwrite.lyrics.text=Za vas smo besedilo prevedli samodejno - ali ga želite uporabiti?\\nVaš trenutni prevdo bo povožen.\nauto.translate.label=Poskusi s samodejnim prevodom\nchoose.translations.text=Izberite prevode\nselect.translation.label=Izberite prevod, ki bi ga radi prikazali poleg izvornega besedila:\ntranslate.heading=Prevodi\nremote.logo.text=Znak\nremote.black.text=Črn\nremote.clear.text=Prazen\nremote.next.text=Naslednja prosojnica\nremote.prev.text=Prejšnja prosojnica\nremote.nextitem.text=Naslednje\nremote.previtem.text=Prejšnje\nserver.settings.heading=Nastavitve strežnika\nuse.remote.control.label=Uporabi daljinec\nnavigate.remote.control.label=URL za daljinec\nremote.empty.lyrics=Tukaj bodo prikazana besedila\nremote.control.password=Geslo daljinca (razlikovanje velikosti črk)\nremote.logout.text=Izpis\nremote.login.text=Za nadaljevanje se vpišite\nremote.submit.text=Vpis\nmore.font.options.label=Več možnosti pisave\nmore.fonts.label=Več pisav\ntranslation.font.text=Pisava prevoda\nshadow.text=Senca\nsaving.schedule=Shranjevanje razporeda ...\nsmall.text.position.label=Položaj podatka o pesmi ali Svetem pismu\nbible.passage.selector.prompt=[Poglavje]:[Vrstica]-[Vrstica]\ntheme.button.tooltip=Določi razporedu občo temo\ncurrently.displaying.text=Trenutno prikazano\nplay=Predvajaj\npause=Premor\nshow.small.song.text.label=Prikaži pomanjšane podatke o pesmi\nshow.small.bible.text.label=Pokaži pomanjšane podatke o navedku Svetega pisma\nuse.bible.verses=Razdeli odlomek iz svetega pisma na\nmax.items.per.slide=Največ % na prosojnico\nverses=vrstic\nwords=besed\nedit.bible.passage.text=Uredi temo navedka\nnotice.colour.text=Barva opombe\nnotice.font.text=Pisava opombe\nnotice.speed.text=Hitrost opombe\nnotice.background.colour.text=Ozadna barva opombe\nnotice.position.text=Položaj opombe\nnotice.font.size=Velikost pisave opombe\nnotice.options.heading=Opombe\nexport.pdf.button=Izvozi v PDF\npdf.button=PDF\nexport.schedule.pdf.button=Izvozi razpored bogoslužja v PDF\nfilefilters.description.pdf.files=Datoteke PDF\nnot.started.label=Ni pričelo\nquelea.schedule.text=Quelein razpored\nuser.options.options=Uporabniške možnosti\ntext.options.options=Možnosti napisov\nstretch.video.label=Raztegni Video\nexport.schedule.songs.pdf.button=Izvozi pesmi v PDF\nexporting.label=Izvažanje\nuse.shadow.label=Uporabi sence?\nshadow.color.label=Barva sence\nshadow.offset.label=Zamik sence\nshadow.radius.label=Polmer sence\nshadow.spread.label=Razlezanje sence\nhelp.menu.manual=Priročnik\nedit.theme.text=Uredi temo\nchange.bible.version.text=Preklopi med različicami\nswitch.to.text=Preklopi na\nsave.qr.code.text=Shrani QR kodo\nnonbreak.tooltip=Dodaj nedeljivo vrstico\ncopying.video.please.wait.text=Samo trenutek - ravno sredi kopiranja video datoteke ...\ntranslating.text.please.wait.text=Samo trenutek - pridobivanje prevoda ...\nfilefilters.description.usr.files=USR (SongSelect) datoteke\nsongselect.import.line1=Izberite spodaj datoteke SongSelect.\npm.import.line1=Izberite pesmi Presentation Manager-ja za uvoz.\nsmi.import.line1=Izberite pesmi Screen Monkey-ja za uvoz.\nsongselect.button=SongSelect\nvideopsalm.button=VideoPsalm\npm.button=Presentation Manager\nsm.button=Screen Monkey\ntranslation.export.heading=Izvoz prevoda\ninclude.translations.question=Vključim v datoteko PDF tudi prevode?\nslide.text=Prosojnica\nautoplay.vid.label=Samodejno predvajanje videov v plošči za živi prenos\nadvance.on.live.label=Napredni razpored na zaslonu v živo\ndelete.translation.title=Izbriši prevod\ndelete.translation.text=Izbriši $1 prevod?\nhelp.menu.wiki=Dokumentacija\npreview.on.image.change.label=Predogled predmeta pri spremembi slike\nadd.timer.tooltip=Dodaj odštevalnik\nfilefilters.description.image.video.files=Video in slikovne datoteke\ntimer.duration.label=Trajanje odštevalnika\ntimer.file.label=Mesto datoteke ozadja\nduration.tooltip.label=#:## ali ##m##s ali ##:##am\ntranslation.choice.title=Izbira prevoda\nfont.options.title=Možnosti pisave\nnew.translation.title=Nov prevod\nadd.timer.title=Dodaj časovnik\nuntitled.theme.text=Nepoimenovana tema\ntimer.text.label=Dodatni napis\ntimer.text.prompt=Uporabi # za umeščanje časovnika, npr. \"Bogoslužje se prične čez #\" bo prikazano kot \"Bogoslužje se prične čez 05:00\"\ncountdown.label=Odštevalnik\ntimer.theme.label=Nastavitve teme\ntimer.theme.button=Spremeni temo\nembed.media.in.schedule=Zapiši predstavnosti v datoteko razporeda\nmediashout.import.line1=Izberite spodaj mesto MediaShout db (izvoz v txt zapis):\nworshiphim.import.line1=Izberite spodaj mestoWorship Him db (v mdb zapis):\nsongbeamer.import.line1=Izberite spodaj mesto datotek SNG, ki jih želite uvoziti:\nfilefilters.description.txt.files=datoteke .txt\nfilefilters.description.csv.files=datoteke .csv\nmediashout.button=MediaShout\nworshiphim.button=Worship Him\nsongbeamer.button=SongBeamer\nclear.stage.view=Počisti odrski pogled in glavni zaslon\ntop=Zgoraj\nbottom=Spodaj\nepicworship.import.line1=S tem se uvozijo pesmi iz EpicWorship datoteke pesemske zbirke (.epc).\nfilefilters.description.epc=EpicWorship pesemska zbirka .epc\nepicworship.button=EpicWorship\nadd.videos.panel=Dodaj videe\nremove.video.text=Odstrani video\ndelete.video.title=Izbriši video\ndelete.video.confirmation=Ali res želite ta video odstraniti iz knjižnice? Tega ne bo več mogoče razveljaviti.\nlibrary.video.heading=Videi\ntimer.files.description=Odštevalniki\nadd.timers.panel=Dodaj časovnik\nlibrary.timer.heading=Časovniki\ntimer.save.label=Shrani časovnik?\ntimer.name.label=Ime\nedit.timer.text=Uredi časovnik\nremove.timer.text=Izbriši časovnik\nconfirm.remove.timer=Ali res želite odstraniti $1 s seznama časovnikov? Tega ne bo več mogoče razveljaviti.\nkingsway.button.range=Razpon\nkingsway.range.import.text=Vnesite razpon strani pesmi, ki se prenašajo s Kingsway-eve spletne strani.\\nTrenutno je največje število strani okoli 3600.\nkingsway.range.import.heading=Obseg uvažanja Kingsway-evih pesmi\nsdb.files.description=Songpro datoteke podatkovnih zbirk\nsongpro.button=SongPro\noverflow.song.label=Preliv trenutne pesmi v naslednjo\ninvalid.search=Neveljavno iskanje\nrcs.add.failed=Dodajanje spodletelo\nrcs.add.success=Dodajanje uspelo\nrcs.add.song=Dodaj pesem v razpored\nrcs.add.bible.error=Pri dodajanju $1 v razpored je prišlo do napake\nrcs.submit=Pošlji\nrcs.song.search=Pesem\nrcs.bible.search=Sveto pismo\nrcs.search=Poišči in dodaj\nshow.video.library.panel=Pokaži zavihek videoknjižnicie (potreben ponoven zagon)\nstage.show.clock=Pokaži uro\nuse.24h.clock=Uporabi 24-urno uro\nsplit.bible.verses=Ohrani vrstice na prosojnicah cele\nno.verse.title=Ni kitic\nno.verse.message=Ni bilo mogoče najti ene ali več določenih kitic. Poskusilo se je nadaljevati tudi brez njih.\nchorus.tooltip=Dodaj naslov odpeva\nrecordings.path=Pot posnetkov\ndownload.path=Pot prenosov\nconvert.mp3=Samodejno pretvori posnetke v mp3 datoteke (potreben VLC)\nrecording.warning.title=Določite najprej pot posnetkov\nrecording.warning.message=Preden pričnete s snemanjem morate v možnostih določiti mesto njihovega shranjevanja.\nrecording.no.devices.title=Ni mogoče najti snemalne naprave\nrecording.no.devices.message=Žal ni bilo mogoče najti nobene združljive snemalne naprave.\\nPreverite, ali je vaša snemalna naprava priključena in omogočena.\nsave.recording.before.exit.title=Neshranjen posnetek\nsave.recording.before.exit.message=Ali želite pred izhodom shraniti posnetek?\nrecord.audio.tooltip=Snemanje zvoka\npause.record.tooltip=Premor snemanja\nmax.lines.per.slide=Vrstic na prosojnico (približno)\npresentation.options.heading=Predstavitev\nrecordings.options.heading=Posnetki\ncopy.song.db.default=Privzeto kopiraj pesem v razpored\nmp.button=Mission Praise\nadd.pdf.tooltip=Dodaj PDF\nimportexport.options.heading=Uvoz/Izvoz\npreview.failed=Predogled spodletel\nset.loop.manually.title=PowerPoint-a ni bilo mogoče najti\nset.loop.manually.message=Predstavitev se je zaprla. Če želite uporabljati Queleino zmožnost zankanje s PoerPoin pregledovalnikom, morate pri ustvarjanju predstavitve ročno nastaviti na zankanje do zaustavitve.\npresentation.changed.message=Če želite, da nove nastavitev predstavitve stopijo v veljavo, morate Queleo ponovno zagnati.\npresentation.changed.label=Nastavitve predstavitve spremenjene\npresentation.not.started.label=PowerPoint se ni začel\npresentation.not.started.message=Žal vaše predstavitve ni bilo mogoče začeti s PowerPointom. Lahko, da je datoteka okvarjena?\npp.already.running.label=PowerPoint je že odprt\npp.already.running.message=Najden je bil še en primerek PowerPointa. Preden zaženete predstavitev v Quelei, zaprite vse primerke, če ne želite izgubiti podatkov.\npp.path=Pot do programa Powerpint\nuse.pp.label=Za predstavitve uporabi PowerPoint\nclose.all.presentations.label=Zapri vse odprte predstavitve\nclose.all.presentations.message=Zaprite vsa odprta okna PowerPointa preden pritisnete V redu, sicer se bodo v izogib pošiljanju signalov v napačno okno samodejno zaprla vsa okna PowerPointa.\nlive.text.message=Katerokoli spodaj napisano besedilo bo vidno uporabnikom tele-besedila (Mobile Lyrics), ko je glavni zaslon prazen.\\n\\nZa prehod na novo prosojnico uporabite prazno vrstico. Prav tako lahko uporabite gumb počisti (ali CTRL + vnašalka) za ponastavitev obeh koncev. Če je na prosojnici več kot 200 znakov, bo za uporabnika samodejno skrajšana.\nlive.text.title=Napis v živo\nexit.live.text=Izhod iz napisa v živo\nclear.live.text=Počisti\ndefault.translation=Privzeto\nselect.language=Izberite jezik:\nsend.live.text=Napis v živo\nconverting.to.mp3=Pretvarjanje posnetka v MP3\nverse.tooltip=Dodaj naslov kitice\nbridge.tooltip=Dodaj naslov prehoda\nprechorus.tooltip=Dodaj naslov predodpeva\ntag.tooltip=Dodaj naslov oznake\nadd.website=Dodaj spletno stran\nfocus.switcher.title=Quelein izostrilnik\nfocus.switcher.message=Če je treba med predstavitvijo prilagoditi ostrino, lahko to storite tukaj.\nfocus.pp=Preusmeri pozornostn na PowerPoint\nfocus.quelea=Preusmeri pozornost na Queleo\nwebsite.dialog.title=URL spletne strani\nwebsite.dialog.header=Vnesite URL spletne strani\nwebsite.dialog.content=Vnesite spletno stran, ki jo želite prikazati:\npaste.label=Prilepi\nundo.label=Razveljavi\nredo.label=Povrni\nshow.extra.live.panel.toolbar.options.label=Prikaži možnosti dodate orodne vrstice vživo polja\nlink.preview.and.live.dividers.label=Zveži ločilnike predoglednega in vživo polja\nsave.add.notice.button=Shrani in dodaj\nsaved.notices=Shranjene opombe\ndelete.notice.button=Izbriši\nschedule.items.skipped.text=Za nekatere predmete z razporeda niso bile zapisane predstavnosti, zato niso dodani.\nschedule.items.skipped.header=Preskočeni predmeti z razporeda\nsong.sequence=Zaporedje pesmi:\nsequence.selection.dialog.title=Izbira zaporedja\nchosen.sequence.explanation=Povleci predmete z leve na desno ali dvokliknite nanje, da ustvarite zaporedje pesmi. Prosojnice besedila si bodo sledile v izbranem zaporedju, neglede na zaporedje, v katerem so besedila shranjena v podatkovni zbirki.\navailable.sections.label=Deli, ki so na voljo v tej pesmi\nremove.sequence.tooltip=Odstrani del iz zaporedja\nmove.up.sequence.tooltip=Pomakni del višje po vrstnem redu\nmove.down.sequence.tooltip=Pomakni del nižje po vrstnem redu\nchosen.sequence.label=Izbrani vrstni red\nsequence.tooltip=Pogovorno okno zaporedja pesmi\nvideo.loop.tooltip=Preklopi med vključenim/izključenim zankanjem\nallow.item.theme.override.global=Dovoli, da teme posameznih predmetov preglasijo občo temo\nsong.default.theme.label=Privzeto za pesem\nbible.default.theme.label=Privzeto za Sveto pismo\nsmall.song.position.label=Položaj podatka o pesmi\nsmall.bible.position.label=Položaj podatka o Svetem pismu\nsmall.bible.size.label=Velikost podatka o Svetem pismu\nsmall.song.size.label=Velikost podatka o pesmi\ninterface.theme.label=Tema programa\ndefault.theme.label=Privzeta\ndark.theme.label=Temna\ntheme.changed=Tema spremenjena\ntheme.changed.message=Če želite, da sprememba teme stopi v veljavo, morate Queleo ponovno zagnati.\ndb.song.preview.label=Predogled pesmi v podatkovni zbirki\ndb.song.preview.label.control=Brez\ndb.song.preview.label.databasepreview=V polju podatkovne zbirke\ndb.song.preview.label.previewpane=V predoglednem polju\nmobile.remote.heading=Daljinec (Mobile remote)\ninterface.options.options=Možnosti vmesnika\ngeneral.interface.options=Splošne možnosti vmesnika\nsmall.song.text.options=Možnosti drobnega tiska pesmi\nsmall.bible.text.options=Možnosti drobnega tiska Svetega pisma\ngeneral.user.options=Splošne uporabniške možnosti\ntheme.options=Možnosti teme\nschedule.options=Možnosti razporeda\nfilefilters.description.propresenter=Pesmi Propresenter-ja\nfilefilters.description.sunday.plus=Pesmi Sunday plus-a\nsong.list=Seznam pesmi\npassword.empty.label=Najdeno prazno geslo\npassword.empty.message=Geslo strežnika ne more biti prazno. Če ničesar ne vnesete v polje, bo uporabljeno privzeto geslo \"quelea\".\nclick.to.add=Kliknite za dodajanje\nbible.version=Izdaja Svetega pisma\nslide.transition.label=Med prosojnicami uporabi pojemajoče prehode\nopen.sequence.editor.tooltip=Prikaži urejevalnik zaporedja\nsong.sequence.tip=Namig: Posamezen del (npr. odpev) lahko dodate večkrat!\nremote.select.book=Izberite knjigo\nremote.search.tooltip=Dodaj pesem ali navedek Svetega pisma\nremote.search.server=Iskanje strežnika\nremote.add.go.live=Dodaj in pojdi v živo\nremote.failed.finding.server=Iskanje strežnika Quelea daljinca (Mobile Remote) je spodletelo. Preverite, ali je Quelea prižgana in ali ste vnesli pravi URL.\nremote.navigation.settings.title=Nastavitve krmiljenja\nremote.enable.volume.navigation=Omogoči upravljanje z glasnostnimi tipkami\nremote.volume.navigation.description=Za krmiljenje med prosojnicami oz. predmeti uporabi stvarne glasnostne tipke telefona. S stvarnimi tipkami telefona prikliči nalednjo oz predhodno prosojnico/predmet.\nremote.enable.dpad.navigation=Omogoči krmiljenje s smernikom\nremote.dpad.navigation.description=Za prehod na naslednjo ali predhodno prosojnico/predmet uporabi tipke smernika (gor/dol). Če želite uporabiti bluetooth tipkovnico ali pedal (kot je AirTurn), omogočite to možnost.\nremote.swipe.navigation.title=Krmiljenje s podrsanjem\nremote.swipe.navigation.description=Izberite kaj se zgodi, če podrsate po zaslonu levo ali desno.\nremote.auto.progress.item=Preidi na naslednji/prejšnji predmet\nremote.action.clear=Skrij besedilo z gumbom počisti\nremote.action.logo=Skrij besedilo in pokaži znak\nremote.action.black=Počrni zaslon\nremote.action.nothing=Ničesar ne naredi\nremote.action.item=Pojdi na naslednji/predhodni predmet\nremote.action.slide=Pojdi na naslednjo/predhodno prosojnico\nremote.disable.record=Onemogoči snemalni gumb\nremote.about.title=O tej aplikaciji\nremote.choose.action=Izberite dejanje za $1\nremote.control.app.name=Quelea daljinec (Mobile Remote)\nremote.select.theme=Izberite temo\nremote.about.text.app=To je brezplačna aplikacija za uporabo ob odprtokodnem programu za bogoslužje, Quelea (http://quelea.org). Čeprav ni več preizkusna različica, še vedno ni brez napak niti nima še vseh zmožnosti. Je postranski projekt, načeloma narejen za zasebno rabo, vendar ga lahko uporabi vsak, komur se bo zdel uporaben.\nremote.about.text.support=Če boste imeli kakšno vprašanje ali ste naleteli na težavo, mi brez težave lahko pošljete epošto na arvid @ quelea.org. Preverite le, da ste Queleo zagnali (z omogočenima obema strežnikoma) še pred zagonom aplikacije, da sta obe napravi na istem omrežju in da ste vnesli najprej pravi URL.\nremote.about.text.responsibility=Nej jamčim izkušnje brez napak, zato ne prevzemam odgovornosti za kakršne koli težave, če bi nastale pri postavitvi v živo.\nremote.ipv6.not.supported=Žal ne morete uporabljati IPv6 naslova. Za uporabo te aplikacije morati nastaviti IPv4 naslov. Če ga ne znate najti, pobrskajte po spletu \"find local ip\" in ime vašega operacijskega sistema. Spodaj vnesite IPv4 naslov/URL.\nremote.on.end.title=Dejanje ob koncu/začetku predmeta\nremote.on.end.description=Izberite, kaj naj aplikacija naredi, ko z eno izmed zgornjih možnosti pridete do konca/začetka predmeta.\nremote.long.press.description=Izberite, kaj naj se zgodi če tiščite gumb med krmiljenjem z eno izmed zgoraj naštetih možnosti. Opomba: to ne bo delovalo s pedali AirTurn.\nremote.long.press.title=Dejenje ob tiščanju\nremote.double.press.title=Dejanje ob dvotapu\nremote.double.press.description=Izberite, kaj naj se zgodi ob sočasnem pritisku na dva gumba med krmiljenjem z eno od zgornjih dveh možnosti.\nremote.select.chapter.verses=Izberite poglavje in vrstico(e)\nremote.theme.was.set=$1 je bila nastavljena kot obča tema\nremote.port.needed=URL mora na koncu vsebovati številko vrat (npr.':1112'). Poskusi ponovno.\nremote.connected=Povezano!\nremote.wrong.content=Najdena je bil napačna vsebina strani. Poskusi ponovno.\nremote.no.wifi=Niste povezani s Wi-fijem. Nastavitev URL ročno ali se povežite v Wi-fi.\nremote.use.autoconnect=Poskusi najti URL strežnika samodejno.\nremote.information.title=Informacija\nremote.report.issue=Javi težavo\nremote.about.translating=O prevajanju palikacije\nremote.privacy.policy=Pravila zasebnosti\nremote.donations.link=Darujte\nremote.needs.newer.version=Za delovanje te zmožnosti mora biti različica Queleje $1 ali novejša\nremote.source.code=Izvorna koda\nremote.send.notice.tooltip=Dodaj opombo\nremote.signal.failed=Pošiljanje signala strežniku je spodletelo\nremote.chapter=Poglavje\nremote.start.verse=Začetna vrstica\nremote.end.verse=Končna vrstica\nclient.id=Odjemalčev določilnik\nenter.valid.port=Vnesite številko med 1029 in 49151\ngeneral.text.options=Splošne možnosti besedila\ntranslation.text.options=Možnosti prevedenega besedila\nuse.default.translation.label=Uporabi privzeti prevod\ntranslation.name.label=Ime prevoda\nbible.load.error.title=Napaka pri nalaganju Svetega pisma\nbible.load.error.question=Svetega pisma ni mogoče naložiti - najverjetneje je zapis okvarjen ali neveljaven.\n"
  },
  {
    "path": "Quelea/languages/sk.lang",
    "content": "LANGUAGENAME=Slovenčina (SK)\nLOCALE=sk\ndatabase.heading=Databáza\nimport.heading=Importovať\nqsp.button=Balík piesní Quelea\nss.button=Spevník Survivor\nprojector.heading=Projektor\ncontrols.heading=Ovládanie\non.button=Zapnuté\noff.button=Vypnuté\nswitch.input.button=Prepnúť vstup\ngeneral.options.heading=Všeobecné\ndisplay.options.heading=Obrazovka\nbible.options.heading=Bible\ncheck.for.update.label=Pri spustení skontrolovať aktualizácie\n1.monitor.warn.label=Upozornenie, ak je pripojená len jedna obrazovka\ncapitalise.start.line.label=Začiatok každého riadku písať veľkým písmenom\ndisplay.song.info.label=Zobraziť informácie o piesni\none.line.mode.label=Zobraziť v náhľade len jedného riadku piesne\ntext.border.thickness.label=Hrúbka hranice textu\nmax.chars.line.label=Najväčší počet znakov na riadok\nadvanced.label=Pokročilé\nok.button=OK\noutput.text=Výstup\ncontrol.screen.label=Riadiaci obrazovka\nprojector.screen.label=Premietacie obrazovka\nstage.screen.label=obrazovka javiska\ncustom.position.text=Vlastná poloha\ndefault.bible.label=východzí\nmax.verses.label=Najväčší počet veršov zobrazených naraz\nadd.bible.label=Pridať bibli...\nnone.text=Žiadna\nnew.schedule.button=Nový rozvrh\nopen.schedule.button=Otvoriť rozvrh\nsave.schedule.button=Uložiť rozvrh\nsave.as.schedule.button=Uložiť rozvrh ako...\nprint.schedule.button=Tisk rozvrhu\noptions.title=Nastavenie\noptions.button=Nastavenie\nexit.button=Ukončiť\nnew.schedule.text=Nový rozvrh\ncreate.new.schedule.text=Vytvoriť nový rozvrh\nopen.schedule.text=Otvoriť rozvrh\nopen.existing.schedule.text=Otvoriť stávající rozvrh\nsave.schedule.text=Uložiť rozvrh\nsave.schedule.disk.text=Uložiť rozvrh na disk\nsave.as.schedule.text=Uložiť rozvrh ako\nsave.as.schedule.disk.text=Uložiť rozvrh ako iný soubor\nprint.schedule.text=Vytlačiť rozvrh\nprint.current.schedule.text=Vytlačiť terajšej rozvrh\noptions.text=Nastavenie\ndisplay.options.text=Zobraziť dialóg nastavenia\nexit.text=Ukončiť Quelea\nquit.quelea.text=Ukončiť Quelea\nlibrary.image.heading=Obrázky\nlibrary.songs.heading=Piesne\nlibrary.bible.heading=Bible\nbible.heading=Bible\nlibrary.song.search=hľadanie\nclear.search.box=Zmazať hľadanie\nadd.song.text=Pridať pieseň do databázy\nremove.song.text=Odstrániť pieseň z databázy\nlibrary.add.to.schedule.text=Pridať do rozvrhu\nlibrary.edit.song.text=Upraviť pieseň\nlibrary.remove.song.text=Odstraniť pieseň\nlibrary.print.song.text=Vytlačiť pieseň\nadd.to.schedule.text=Pridať do rozvrhu\norder.service.heading=Radenie premietanie\nmove.down.schedule.tooltip=Posunúť v rozvrhu nadol\nmove.up.schedule.tooltip=Posunúť v rozvrhu nahor\nremove.song.schedule.tooltip=Odstrániť z rozvrhu\nadjust.theme.tooltip=Prispôsobiť vzhľad\nedit.song.text=Upraviť pieseň\nnew.theme.text=Nový vzhľad ...\ntheme.select.text=Vybrať vzhľad:\ndefault.theme.name=Východzí\ndefault.theme.text=Východzí vzhľad\nremove.theme.tooltip=Odstraniť vzhľad\nedit.theme.tooltip=Upraviť vzhľad\nedit.theme.heading=Upraviť vzhľad\npreview.heading=Náhľad\nlive.heading=Naživo\ngo.live.text=Jít naživo\nblack.screen.tooltip=Černá obrazovka\nclear.text.tooltip=Vypnouť text\nhide.display.output.tooltip=Skryť výstup na obrazovku\nschedule.heading=Rozvrh\nadd.song.button=Pridať pieseň\nedit.song.button=Upraviť pieseň\nremove.item.button=Odstraniť položku\nadd.multimedia.heading=Pridať multimédia\nadd.presentation.button=Pridať prezentaciu\nadd.video.button=Pridať video\nadd.youtube.button=Pridať video z Youtube\nadd.live.video.button=Pridať živý videoprenos\nadd.dvd.button=Pridať DVD\nadd.audio.button=Zvuk\nadd.audio.tooltip=Pridať zvuk\nshare.heading=Zdieľať\nemail.button=E-mail\nmanage.notices.button=Spravovať upozornenia ...\nnotices.heading=Upozornenia\nnew.notice.text=Nové upozornenia\nedit.notice.text=Upraviť upozornenia \nremove.notice.text=Odstraniť upozornenia\ndone.text=Hotovo\nnew.notice.heading=Nové upozornenia\nnotice.text=Upozornenia\nnotice.times.text=Koľkokrát ukázať?\nnotice.infinite.question=Nekonečná smyčka?\nadd.notice.button=Pridať upozornenie\nedit.notice.button=Upravit upozornenie\ncancel.text=Zrušiť\nnew.song.button=Nová pieseň\ndelete.song.button=Smazať pieseň\nsongs.heading=Piesne\ntags.button=Spravovať značky...\nsource.button=Zdroj\nkingsway.button=Kingsway na internetu\nsof.button=Piesne Spoločenstva(Song of felowship)\nexport.heading=Exportovať\nfilter.tag=Filtrovať značky\ntags.colon.label=Značky:\nimport.button=Importovať\nclick.select.file.text=Kliknúť na výber súboru\ncheck.duplicates.text=Preveriť duplikáty\nedit.song.title=Upraviť pieseň\nbasic.information.heading=Základné informacie\ndetailed.info.heading=Podrobné informacie\ntheme.heading=Témy\ntitle.label=Názov\nauthor.label=Autor\nrun.spellcheck.label=Kontrola pravopisu\nfix.apos.label=Ošetriť odsuvníky\ntrim.lines.tooltip=orezať riadky\ntranspose.tooltip=Previesť ...\ncancel.button=Zrušiť\nccli.number.label=Číslo CCLI\ncopyright.label=Autorské práva\nyear.label=Rok\npublisher.label=Vydavateľ\ntags.label=Značky\ntype.tag.name.here.text=<Tu napíšte názvy značek>\nkey.label=Posuvy tóniny\ncapo.label=Kapodastre\nnotes.label=Poznámky\nfont.theme.label=Písmo\nchoose.color.text=Vybrať barvu...\nbackground.theme.label=Podoba pozadie\nbackground.text=Pozadie\ncolor.theme.label=Barva\nimage.theme.label=Obrázok\nselect.color.title=Výber farvy\nselect.color.button=Vybrať farvu\nnew.song.title=Nová pieseň\ntype.lyrics.here.text=Tu píšte slová piesne\nkingsway.import.line1=Toto nahrá knižnicu piesní Kingsway z internetu.\nkingsway.import.line2=Bude to trvať dlho (možno aj hodiny!), Buďte preto, prosím, trpezliví a nechajte Queleu bežať!\nqsp.import.line1=Vyberte umiestnenie balíčka piesní Quelea.\nsource.import.line1=Vyberte umiestnenie adresára ymns na zdrojovom CD.\nsurvivor.import.line1=Vyberte umiestnenie PDF sa spevníkom Survivor.\nsurvivor.import.line2=Musí to byť súbor acetates.pdf, nie gitarové akordy alebo skenovaný list s notami.\nemail.error.title=Chyba elektronickej pošty\nemail.error.text=Pri otváraní poštového klienta sa vyskytla chyba. Uistite sa, že poštový klient je nainštalovaný, súbory eml sú priradené, aby s nimi mohol pracovať. V opačnom prípade budete musieť elektronickej listy posielať ručne.\nemail.text=Ahoj! Posielam adresovaný rozvrh Quelea je pripojený ako príloha. Jednoducho ho otvoríte v programe Quelea a všetky položky by sa mali objaviť správne. Prajem pekný deň\nselect.image.button=Vybrať obrázok\nimage.files.description=obrázkové súbory\ntools.label=Nástroje\nselect.songs.title=Vybrať piesne\ncheck.uncheck.all.text=Označiť / Odznačiť všetko\ndelete.theme.confirm.title=potvrdiť zmazanie\ndelete.theme.question=Naozaj zmazať túto tému?\ntoo.many.verses.error=Prepáčte, ale toľko veršov zobraziť nejde ... Skúste, prosím, menší počet.\none.monitor.warning=Vyzerá to, že máte pripojenú len jednu obrazovku. To je v poriadku, ak Queleu používate na prípravu rozvrhov, ale ak ju používate pri premietaní naživo, je potreba pripojiť ďalšie obrazovku v režime rozšíriť, aby pracovala správne.\none.monitor.title=Len jedna obrazovka\nno.dvd.heading=Nenájdené žiadne DVD\nno.dvd.error=Vložte, prosím, DVD.\nadding.presentation.status=Import prezentace...\nadding.presentation.error.message=Pri zavádzaní prezentácie sa vyskytla chyba. Možno je súbor poškodený.\nadding.presentation.error.title=Chyba pri nahrávaní prezentácie.\nimporting.status=Importuje sa...\nname.label=Názov\nsimilar.colors.text=Farby pozadia a textu sú príliš podobné, zmeňte farby kvôli lepšej čitateľnosti.\nwarning.label=Varovanie\nfile.menu=Súbor\ntools.menu=Nástroje\nschedule.menu=Rozvrh\ndatabase.menu=Databáza\nprojector.menu=Projektor\nnew.theme.title=Nový motiv\nadd.theme.label=Pridať motiv\ntheme.name.label=Název motivu\nhelp.menu=Nápoveda\nhelp.menu.website=Internetové stránky\nhelp.menu.discussion=Podpora/Diskusia (tu klaďte otázky)\nhelp.menu.download=Stiahnutie\nhelp.menu.update=Overovať dostupnosť aktualizácií\nhelp.menu.about=O programe ...\nhelp.menu.error.title=Chyba\nhelp.about.title=O programe\nhelp.about.version=Verze\nhelp.about.close=Zatvoriť\nhelp.about.line1=Quelea je licencována pod GPL (verzia 3)\nhelp.about.line2=Je a vždy bude slobodný program s otvoreným zdrojovým kódom.\nnew.schedule.tooltip=Nový rozvrh\nopen.schedule.tooltip=Otvoriť rozvrh\nsave.schedule.tooltip=Uložiť rozvrh\nprint.schedule.tooltip=Vytlačiť rozvrh\nnew.song.tooltip=Nová pieseň\nadd.presentation.tooltip=Pridať prezentaci\nadd.dvd.tooltip=Pridať DVD\nadd.video.tooltip=Pridať video\nmanage.tags.tooltip=Spravovať značky\nmanage.notices.tooltip=Spravovať upozornenie\nalready.running.error=Vyzerá to, že Quelea už beží. Uistite sa, že ste ju pred spustením zavreli a aj jej ostatné verzie.\nalready.running.title=Již beží\nerror.schedule.message=Pri otváraní rozvrhu sa vyskytli ťažkosti. Možno je poškodený, alebo to nie je rozvrh uložený v programe Quelea.\nerror.schedule.title=Chyba pri otváraní rozvrhu\nprint.chords.question=Zahrnúť do tlače tejto piesne akordy?\nprinting.options.text=Vytlačiť pieseň\nspace.key=?edzerník\nupdating.db=Obnovuje sa databáza\nerror.updating.song.text=Pri aktualizácii piesne v databáze sa vyskytla chyba. Je možné, že je poškodená.\nerror.text=Chyba\nquick.shortcut.description=Stlačte klávesu Escape pre zrušenie, Shift + Enter pre uloženie\nsave.before.exit.text=Rozvrh bol zmenený. Uložiť pred ukončením?\nsave.before.exit.title=Neuložený rozvrh\nno.chords.message=Táto pieseň nemá žiadne riadky s akordy na prevedenie.\nno.chords.title=Žiadné akordy\nerror.checking.updates.title=Nedalo sa skontrolovať aktualizácie\nerror.checking.updates.text=Je nám ľúto, ale pri kontrole aktualizácií sa vyskytla chyba. Skontrolujte, prosím, svoje internetové spojenie, a potom to skúste znova.\nnewer.version.available=Je dostupná novšia verzia programu Quelea\nno.newer.version.available=Prevádzkujete najnovšiu verziu programu Quelea\nvisit.webpage.now=Navštíviť stránky a stiahnuť novú verziu hneď?\ndownload.manual.update=Môžete ju stiahnuť tu\nnewer.version.available.title=aktualizácia je dostupná\nno.newer.version.available.title=Už aktualizované!\ncheck.kingsway.start=Už ste Importovaly niektoré položky z knižnice Kingsway. Chcete pokračovať v zavádzaní tam, kde ste naposledy skončili?\ncheck.kingsway.start.title=Již importované položky\nimport.no.songs.title=Nenalezeny žiadne piesne\nimport.no.songs.text=Nepodarilo sa nájsť ziadna piesne na import.\nstage.options.heading=Javisko\nstage.show.chords=Ukázať akordy?\nstage.line.alignment=Zarovnanie textu\nstage.font.selection=Písmo\nstage.background.colour=Barva pozadie\nstage.lyrics.colour=Barva textu piesne\nstage.chord.colour=Barva akordú\nleft=Vľavo\ncentre=Na stred\nright=Vpravo\nconfirm.label=Naozaj toto chcete?\nschedule.clear.text=Rozvrh bol zmenený. Pokračovať bez uloženia?\npart=časť\nhelp.menu.facebook=Stránka na Facebooku\nvideo.error=Nepodarilo sa inicializovať knižnice pre video - Video nepôjde prehrávať. Požiadajte, prosím, v diskusii (viď ponuka pomocníka) o pomoc, ktorá by to vyriešila.\nvideo.error.title=Chyba videa\ntext.shadow.label=Zobraziť tieň textu\nadding.images=Pridávajú sa obrázky ...\nsetup.oo.failed.text=Nepodarilo sa nastaviť program OpenOffice na zobrazovanie prezentácií. Uistite sa, prosím, že máte program OpenOffice nainštalovaný a že je poskytnutá cesta správna.\nsetup.oo.failed.title=OpenOffice sa nepodarilo inicializovať\nuse.oo.label=Použiť OpenOffice na prezentácie\noo.path=Cesta k programu OpenOffice\nbrowse=Prechádzať ...\nbuilding.bible.index=Nahrávajú sa biblie\nbible.search.title=Vyhľadávanie v biblii\ninitial.search.text=<Pre hľadanie píšte sem>\nview.bible.button=Zobrazit biblie...\nsearch.bible.button=Hledať v biblích...\nall.text=Všetko\nbible.browser.title=Prehliadač biblie\nopen.in.browser=Otvoriť v prehliadači...\nkingsway.button.all=Všetky piesne\nkingsway.button.one=Jedna pieseň\nsong.id.selector=Vyberte, prosím, ID piesne\nbible.copy.error.text=Prepáčte, ale pri kopírovaní biblie do požadovaného adresára sa objavila chyba.\nbible.copy.error.heading=Chyba\nselect.key.label=Vyberte novou tóninu:\ntranspose.label=Previesť\nalready.exists.overwrite.label=Už existuje. Prepísať?\noverwrite.text=Prepísať\ncant.save.schedule.title=Chyba pri ukladaní rozvrhu\ncant.save.schedule.text=Prepačte, ale rozvrh sa nepodarilo uložiť - vyskytla sa chyba.\nerror.removing.song.db=Pri odstraňovaní piesne z databázy sa objavila chyba.\nconfirm.remove.text=Potvrdiť odstranení\nconfirm.remove.question=Naozaj chcete toto: $ 1 odstrániť z databázy? Tento krok nie je možné vrátiť.\nquick.edit.text=Rychlé úpravy\nlibrary.preview.song.text=Náhľad piesne\nvideo.error.unsupported=Prepáčte, ale vaše video nie je podporované.\nvideo.error.general=Prepáčte, ale u vášho videa sa objavila chyba.\nvideo.theme.label=Video\nselect.video.button=Vybrať video\nrefresh.images.panel=Obnoviť obrázky\nadd.images.panel=Pridať obrázky\nselect.folder.images.panel=Vybrať zložku...\ntext.position.label=Poloha textu\nimage.folder=Zložka s obrázky:\nquick.insert.text=Rychlé vloženie\nconfirm.overwrite.title=Súbor už existuje!\nconfirm.overwrite.text=Tento súbor už existuje. Chcete ho nahradiť, alebo pokračovať bez kopírovania?\nfile.rename.button=Premenovať\nfile.replace.button=Nahradiť\nfile.continue.button=Pokračovať\nfile.rename.dialog.title=Premenování\nfile.rename.dialog.text=Zadajte, prosím, nový názov súboru:\nplainText.button=obyčajný text(*.txt)\nplaintext.import.line1=Toto zavede knihovnu s piesnemi z adresáre obsahujícího piesne ako súbory s prostým textem.(*.txt)\neasyslides.import.line1=Toto zavedie piesne zo súboru XML EasySlides.\neasyslides.button=EasySlides\nshadow.y=Posun tieňa Y\nshadow.x=Posun tieňa X\nbottom.text.position=Dole\nloading.text=Nahráva sa\nselect.export.songs.line2=Vyberte pieseň, ktorú chcete pridať do balíka s Piesne, a potom stlačte \"Pridať\".\nselect.export.songs.line1=Nasledujúce piesne sú už v databáze\ncorrect.text=Text je správne\nadd.to.songpack.question=Pridať do balíka s Piesne?\nno.text=Ne\nmiddle.text.position=Uprostred\ntop.text.position=Hore\nshadow.color=Farva tieňa\nyes.text= Áno\nadd.text=Pridať\ndelete.image.title=Zmazať obrázok\ninterface.language.label=Jazyk rozhrania:\nspelling.errors.in.doc.label=V dokumente sú pravopisné chyby. Stlačte \"F7\" pre otvorenie dialógu na overenie pravopisu.\nlanguage.changed=Jazyk zmenený\nignore.text=Ignorovať\nclear.live.on.remove.schedule=Zmazať položku z živého pohľadu pri odstránení z rozvrhu\ndictionary.language.text=Jazyk slovníka\nremove.image.text=Odstraniť obrázek\nselect.imported.songs.line3=U piesní, o ktorých si Quelea myslí, že už ich máte, bolo zrušené ich začiarknutie.\nselect.imported.songs.line2=Vyberte piesne, ktoré chcete pridať do databázy, a potom stlačte \"Pridať\".\nselect.imported.songs.line1=Boli pridané nasledujúce piesne.\nspelling.check.title=Overení pravopisu\ndelete.image.confirmation=Naozaj chcete tento obrázok odstrániť z knižnice? Tento krok nie je možné vrátiť späť.\nadd.to.database.question=Pridať do databázy?\nprojection.window.title=Premietacie okno\nnotice.expired.text=Vami upravované Upozornenie vypršalo. Chcete ho pridat opätovne?\nspelling.complete.text=Overení pravopisu je hotovo.\ndebug.location=Umiestnenie zápisu o ladení\ncomplete.title=Dokončené\nlanguage.changed.message=Musíte Queleu spustiť znova, predtým než sa zmena jazyka prejaví.\nnotice.expired.title=Upozornenie vypršalolo\ndownload.vlc=Stáhnuť VLC\nfilefilters.description.powerpoint.presentations=Prezentacia Powerpoint\nsave.text=Uložiť\nconfirm.entry.exit.title=Uložiť pieseň?\ncontinue.without.video=Pokračovať bez VLC\nfilefilters.description.video.files=Videosúbory\nfilefilters.description.quelea.schedules=Rozvrhy Quelea\nfilefilters.description.xml.files=Súbory XML\nfilefilters.description.survivor.songbook=Súbor Survivor acetates\nvlc.warning.message=Quelea nenašla VLC vo vašom systéme. Bez neho nebude Quelea môcť prehrávať obrazové a zvukové záznamy a ukazovať piesne s videopozadím. Chcete ich stiahnuť teraz? Po nainštalovaní VLC budete musieť Queleu spustiť znovu, aby sa zmeny prejavili.\nvlc.version.message=Vaša verzia VLC je príliš stará. Aby ste mohli prehrávať obrazové a zvukové záznamy a ukazovať pozadia videá, musíte stiahnuť najnovšiu verziu VLC. Chcete ju stiahnuť teraz? Aby sa zmeny prejavili, je treba Queleu po nainštalovaní VLC spustiť znovu.\ndont.save.text=Neukladať\nvlc.warning.title=Nepodarilo sa nájsť VLC\nfilefilters.description.xml.bibles=Biblia XML\nstartup.error.text=Prepáčte, ale z nejakého dôvodu sa Queleu na vašom systéme nepodarilo spustiť. Ak by ste chceli s pokusom o jej sprevádzkovanie pomôcť, pošlite, prosím, e-mail na adresu support@quelea.org a pripojte súbor s ladiacim zápisom ($ 1). \\ N \\ n prípadne sa spýtajte v diskusnej skupine programu (http: // goo.gl/NXvIDG).startup.error.title=Chyba pri spustení\nfilefilters.description.plain.text.song=Pieseň v obyčajném textu\nfilefilters.description.xml.easyslide=Súbory XML Easyslide\nconfirm.entry.exit.text=Chcete uložit svoje zmeny do tejto piesne?\nfilefilters.description.audio.files=Zvukové súbory\nbible.search.keep.typing=Pište...\nbible.search.results.found=Výsledky nájdených\nbible.search.result.found=Najdena zhoda\nuniform.font.size.label=Použiť stále rovnakú veľkosť písma\nmax.font.size.label=Najväčší veľkosť písma\nadditional.line.spacing.label=Dodatočný odstup riadkov\nfilefilters.description.zip.files=Súbory Zip\nos.button=Opensong\nolp.import.line1=Vyberte umiestnenie databázy OpenLP nižšie.\nloop.label=Slučka\nport.number.label=Číslo portu pre pripojenie\nos.import.line1=Vyberte umiestnenie databázy Opensong nižšie.\nchange.graphics.label=Zmeniť grafiku\nseconds.label=sekúnd\nolp.button=OpenLP\nfont.colour.label=Farva písma\nfilefilters.description.sqlite.files=Súbory SQLite\nbackground.colour.label=Farva pozadia\nlogo.screen.tooltip=Kliknutí ľavým tlačidlom myši pre zobrazenie - kliknutí pravým tlačidlom myši pre nastavenie\nuse.mobile.lyrics.label=Povoliť zobrazenie textu piesne v telefóne\nmobile.lyrics.heading=Zobrazenie textu piesne\nnavigate.mob.url.label=Adresa (URL) pre zobrazenie textu piesne v telefóne\nsundayplus.import.line1=Vyberte umiestnenie databázy Sunday Plus nižšie.\nsp.button=Sunday Plus\nfont.selection.dialog.title=Výber písma\nvideo.hue.label=Odtieň videa\nchosen.fonts.explanation=Quelea ukazuje výber z písiem v okne s témou vzhľadu. Presuňte písma, ktoré chcete používať, z ľavého panelu do pravého. Tá písma, ktoré nechcete, presuňte z pravého panelu do ľavého.\ntest.patterns.text=Skúšobné vzory\nchosen.fonts.label=Zvolená písma\ntest.patterns.explanation=Tu dostupné skúšobné vzory vám majú pomôcť so správnym nastavením vyrovnanie projektora alebo obrazovky vrátane farieb. Kliknete na skúšobnú obrázok pre jeho ukázanie ako v hlavnom tak v predvádzacom pohľadu.\nignored.fonts.label=Ignorovná písma\nhover.for.position.label=Prejdite nad plátnom pre stanovenie polohy textu.\neasyworship.button=EasyWorship 2009\nfilefilters.description.songs.mb=Databáza Easyworship Songs.MB\nzw.import.line2=Zvyčajne sa nachádza v \"C:\\ProgramData\\ZionWorx\\2.6\\Data\".\nzw.import.line1=Nižšie vyberte umiestnenie súboru ZionWorx \"MainTable.dat\".\nadd.song.hint.search.text=Nie sú tu ziadna piesne zodpovedajúce \\ ntomuto hľadanie, ale neľakajte sa! \\ NPre pridania piesne jednoducho kliknete na tlačidlo \\ n \"Nová pieseň\" vľavo.\nshow.verse.numbers=Ukázať čísla veršoch\nzw.button=ZionWorx\nno.tdb.heading=TurboDB Data Exchange nenájdené\nno.tdb.message=Z technických dôvodu je potrebné, aby ste stiahol TurboDB dáta exchange (https\\://www.dataweb.de/en/support/downloads.html), predtým než bude Quelea môcť zaviesť databázy ZionWorx. \\ NKeď to stiahnete, rozbaľte obsah súboru zip do $ 1. \\ nAk naozaj máte akékoľvek ťažkosti, potom sa, prosím, kľudne opýtajte v diskusnej skupine tu: (https://quelea.discourse.group)\nimport.error.message=Prepáčte, pri zavedení sa vyskytli ťažkosti. Klidne požiadajte o pomoc v diskusnej skupine Quelea: https://quelea.discourse.group\nfilefilters.description.maintable.dat=Súbor databázy s hlavnou tabuľkou ZionWorx\nadd.song.hint.text=Nie sú tu ešte ziadna piesne, \\ nale neľakajte sa! \\ NPre pridania piesne jednoducho kliknete na tlačidlo \\ n \"Nová pieseň\" vľavo.\neasyworship.import.line1=Týmto budú zavedené piesne Easyworship zo súboru Songs.MB\nyoutube.url.label=Adresa videa na Youtube (URL)\nopenlyrics.import.line1=Vyberte umiestnenie archívu zips piesní openlyrics nižšie.\ntranslate.dialog.title=Správca prekladov\nconfirm.remove.translation.text=Naozaj zmazať tento preklad?\ndefault.translation.label=Východzí preklad\nsmall.text.position.label=Umiestnenie informácií o piesni a o Biblii\nuse.remote.control.label=Použiť vzdialené ovládanie\nremote.logo.text=Logo\nenter.translation.name.label=Do akého jazyka si prajete prekladať?\nremote.login.text=Pre pokračovanie sa, prosím, prihláste\nremote.submit.text=Prihlásenie\ntranslation.font.text=Písmo ďalšieho prekladu piesní\nconfirm.remove.translation.title=Odstraniť preklad?\nselect.translation.label=Vyberte preklad, ktorý chcete ukázať s východiskovým textom piesne:\nolyrics.button=OpenLyrics\nchoose.translations.text=Vyberte preklady\nremote.control.password=Heslo pre vzdialené ovládanie (rozlišuje sa veľkosť písmen)\nserver.settings.heading=Server\nremote.prev.text=Predchozí snímok\nshadow.text=Tieň textu\nremote.nextitem.text=Ďalšia položka\nremote.next.text=Ďalši snímok\nnavigate.remote.control.label=Adresa (URL) vzdialeného ovládania\nsaving.schedule=Ukladá se rozvrh...\nremote.logout.text=odhlásenie\nremote.black.text=Čiernaerná\nauto.translate.label=Pokusíme se piesne preložiť automaticky\nclose.button=Zavtvorit\nremote.previtem.text=Predchádzajúci položka\nmore.fonts.label=Viac písem\nserver.changed.message=Budete Queleu musieť spustiť znovu, aby sa nové nastavenia servera prejavila.\nremote.clear.text=Zmazat text\nremote.empty.lyrics=Slová piesne budú zobrazená tu\nserver.changed.label=Nastavenie servera zmenená\ntranslate.tooltip=Preklady piesní\nadd.translation.button=Pridať preklad...\noverwrite.lyrics.text=Texty piesní boli pre vás preložený automaticky - chcete ich použiť? / NVaše terajší preklad bude prepísaný.\nmore.font.options.label=Viac volieb pre písmo\ntranslate.heading=Preklady\noverwrite.lyrics.title=Prepísať existujúci text piesne?\nbible.passage.selector.prompt=[Kapitola]\\:[Od verše]-[Do verše]\nmax.items.per.slide=Najväčší počet% na snímku\ncurrently.displaying.text=Teraz sa zobrazuje\npause=Pozastaviť\nverses=veršoch\nedit.bible.passage.text=Upraviť tému pasáže\ntheme.button.tooltip=Nastaviť celkovú tému pre rozvrh\nwords=slov\nplay=Prehrat\nuse.bible.verses=Rozdelit zábery pasáží Biblie podľa čísel veršoch\nshow.small.song.text.label=Ukázať malej informácie o piesni\nshow.small.bible.text.label=Ukázať malej informácie o pasáži Biblie\nnotice.options.heading=Upozornenia\nnotice.speed.text=Rýchlosť Upozornenie\nnotice.font.size=Veľkosť písma Upozornenie\nnotice.font.text=Písmo upozornenie\nnotice.colour.text=Farva upozornenie\nnotice.position.text=Poloha upozornenie\nnotice.background.colour.text=Farva pozadí upozornenie\nno.pdb.heading=Ovládač JDBC Paradox nenalezen\nno.pdb.message=Z technických dôvodu je potrebné, aby ste stiahol ovládač JDBC Paradox, predtým než bude Quelea môcť spolahlivo zaviesť databázy Easyworship: \\ n \\ n1. Zamieri na stránku http://www.hxtt.com/download.jsp, zaregistrujte účet zdarma a pokračujte. \\ N2. Stiahnete súbor s balíčkom \"DBF JDBC 4.1 pre JDK1.7.X a JDK1.8.X\". Mel by byť pomenovaný Paradox_JDBC41.jar. \\ N3. Skopírujte Paradox_JDBC41.jar do $ 1. \\ N \\ nAk naozaj máte akékoľvek problémy, spýtajte sa, prosím, v diskusnej skupine (https://quelea.discourse.group). Quelea sa vždy pokúsi zaviesť databázu Easyworship, bez toho by bol tento súbor na mieste, ale tento postup môže viesť k nespoľahlivým výsledkom.\nexport.schedule.pdf.button=Uložiť rozvrh ako PDF\nfilefilters.description.pdf.files=Súbory PDF\nexport.pdf.button=Uložiť ako PDF\nquelea.schedule.text=Rozvrh Quelea\nnot.started.label=Nespustenie\ntext.options.options=Nastavenia textu\nshadow.radius.label=Polomer tieňa\nshadow.spread.label=Hrubka tieňa\npdf.button=PDF\nshadow.color.label=Farva tieňa\nuse.shadow.label=Použíť tieň?\nshadow.offset.label=Posun tieňa\nstretch.video.label=Roztiahnuť obraz videa\nexport.schedule.songs.pdf.button=Uložiť piesne ako PDF\nuser.options.options=Užívateľské voľby\nexporting.label=Exportuje sa...\nprint.chords.export.question=Zahrnúť pri exporte tychto piesní akordy?\nhelp.menu.manual=Príručka\nuntitled.theme.text=Nepojmenované téma\nsongselect.import.line1=Nižšie vyberte subory SongSelect.\npng.files.description=Obrázkové súbory PNG\ncopying.video.please.wait.text=Chvíľu počkajte - práve sa kopíruje súbor videa ...\ntimer.text.prompt=Použite # k umiestnenie času odpočtu, napr. \"Služba začína za #\" sa zobrazí ako \"Služba začína za 05:00\"\nfilefilters.description.usr.files=Súbory USR (SongSelect)\nsongselect.button=SongSelect\nadd.timer.tooltip=Pridať odpočítavanie\ncountdown.label=Odpočítavanie\nadd.timer.title=Pridať odpočet\nslide.text=Snímek\ntimer.duration.label=Doba trvania odpočítavanie\nedit.theme.text=Upraviť tému\ndelete.translation.text=Zmazať preklad $1?\ntranslation.choice.title=Volba prekladu\ntranslating.text.please.wait.text=Chvíľu počkajte - získava sa preklad ...\nautoplay.vid.label=Automaticky prehrávať videá v paneli pre živé zobrazenie\nadvance.on.live.label=Pokročilý rozvrh pre živé zobrazenie\nnonbreak.tooltip=Pridať nezalamující riadok\ninclude.translations.question=Zahrnúť preklady do súboru PDF?\nhelp.menu.wiki=Wikipedia\nsave.qr.code.text=Uložiť kód QR\nfilefilters.description.image.video.files=Videa a obrázkové súbory\nnew.translation.title=Nový preklad\nduration.tooltip.label=Píšte vo formáte mm:ss nebo ##m##s \ntimer.file.label=Umiestnenia súboru s pozadím\ntimer.theme.label=Nastavenie tém\ntimer.theme.button=Zmena témy\npreview.on.image.change.label=Náhľad položky pri zmene obrázku\nswitch.to.text=Prepnúť na\ntranslation.export.heading=Uloženie prekladu\ntimer.text.label=Dodatočný text\nfont.options.title=Nastavenia písma\ndelete.translation.title=Zmazat preklad\nchange.bible.version.text=Prepnúť preklad\nmediashout.button=MediaShout\nfilefilters.description.txt.files=Súbory .txt\nembed.media.in.schedule=Vložiť média do súboru s rozvrhem\nmediashout.import.line1=Vybrať miesto databázy MediaShout (uložené do .txt) v:\ntop=Hore\ndelete.video.confirmation=Naozaj chcete toto video odstrániť z knižnice? Tento krok nie je možné vrátiť spät.\nepicworship.button=EpicWorship\ntimer.files.description=Odpočty\nlibrary.video.heading=Videa\nbottom=Dole\ntimer.save.label=Uložiť odpočet?\nkingsway.range.import.text=Zadajte rozsah strán piesne na stiahnutie zo stránok Kingsway. \\n Nynejší najväcšou počet strán je okolo 3600.\nadd.videos.panel=Pridať obrazové záznamy\nkingsway.button.range=Rozsah\nfilefilters.description.epc=Balík písní EpicWorship (.epc)\nadd.timers.panel=Pridať odpočty\nremove.timer.text=Smazat odpočet\nkingsway.range.import.heading=Importovať rozsah piesní Kingsway\nconfirm.remove.timer=Opravdu odstraniť $1 ze zoznamu Odpočtů? Tento krok nie je možné vrátiť spät.\nclear.stage.view=Vymazať obrazovku na javisku spolu s hlavnou obrazovkou\nepicworship.import.line1=Týmto budú zavedené piesne zo súboru EpicWorship Song Pack (.epc).\nstartup.error.title=Chyba pri spúšťaní\ntimer.name.label=Název\nedit.timer.text=Upraviť odpočet\nlibrary.timer.heading=Odpočty\ndelete.video.title=Zmazat video\nremove.video.text=Odstraniť video\nrcs.add.song=Pridať pieseň do plánu premietanie\nrcs.add.bible.error=Vyskytla sa chyba pri pridávání $1 do plánu\nsdb.files.description=Songpro databazový súbor\nrcs.song.search=Pieseň\nsongbeamer.button=SongBeamer\nsng.files.description=SNG (SongBeamer súbory)\nsongpro.button=SongPro\nsongbeamer.import.line1=vyberte lokáciu SNG súbor ktoré chcete importovať:\nrtf.files.description=RTF súbory\nuse.24h.clock=Použiť čas s 24 hodinami\nrcs.add.failed=Pridania zlyhalo!\nshow.video.library.panel=Zobraziť Tab obsahujúce videosúborov (vyžaduje reštart)\nrcs.bible.search=Bibia\nrcs.search=Vyhľadať a pridat\nrcs.add.success=Pridania bolo uspešné\nrcs.submit=Odoslať\noverflow.song.label=Povoliť prejsť z aktuálnej piesne do ďalšej\nsongpro.import.line1=Tohle importuje piesne z SongPro SDB databazy.\nsof.import.line1=Tohle importuje Sof (Song of felowship) knižnicu z RTF súboru.\ninvalid.search=Neplatné vyhľadanie\nremote.select.book=Vybrať knihu\nremote.search.tooltip=Pridať pieseň či pazaž z Biblie\nremote.add.go.live=Pridať a premietnút\nremote.failed.finding.server=Nie je možné nájsť server diaľkového ovládania.\nremote.navigation.settings.title=Nastavení navigacie\nremote.enable.volume.navigation=Povoliť ovládanie tlačidlami hlasitosti\nremote.volume.navigation.description=Použiť fyzická tlačidlá hlasitosti na prepínanie slidov alebo položiek.\nremote.enable.dpad.navigation=Povoliť dpad ovládanie\nremote.dpad.navigation.description=Použít směrová tlačítka (nahoru/dolů) k navigaci na předchozí nebo další slide či položku. Pokud chcete použítat bluetooth klavesnici  nebo pedal (jako AirTurn), povolte tuto možnost.\nremote.swipe.navigation.description=Vyber čo sa zrobí keď šupneš do leva či v pravo na obrazovke.\nremote.swipe.navigation.title=Šúpací navigaca\nremote.auto.progress.item=Preisť na dalšú/predchozů položku\nremote.action.clear=Zakriť text\nremote.action.logo=Zakriť text a ukázať logo\nremote.action.black=Zakriť text a prezmietať černo\nremote.action.nothing=Nič nerobiť\nremote.action.item=Posunuť na  další/predchozí položku\nremote.action.slide=Posunuť na  další/predchozí slide\nremote.about.title=O aplikacii\nremote.control.app.name=Quelea Dialkové ovládánie\nremote.about.text.app=Tato aplikacia je nezisková Zrobená k použitie s programom Quelea (http://quelea.org). Aj keď už to něje vývojová verzia stale nieje perfektná ani některé schopnosti nejsů kopletné. Toto je vedlejší projekt a hlavně myšlený pro osobnů potrebu, ale je sdielen s všemy ktorý by ho mohly mýt za užitečný.\nremote.about.text.support=Niehambitese poslat vívojárovy email (v Angličtině) na arvid @ quelea.org aj keď máte otázky či niejaké problémy, ale ujistiete se že Quelea funguje pred tím ak aplikacia (a oba servery sů funkčné), a že obe zariaděnia sů tej istej sieti a zadaly jste správnú adresu\nremote.about.text.responsibility=Nelze garantovať perfeknú funkčnosť. Takže niemožem ručť za akykolvek problém který sa v reálu prejeví.\nremote.ipv6.not.supported=Bohuž nelze použít IPv6 adresu. Je treba ipv4 adresa aby išlo použít aplikaciu. Pokud nevieš ako to nalezť vygoogluj \" najisť mistnu adressu spolu s menom operačného sustena  a vlož adesu tu:\nremote.long.press.title=akce pri dlhom slačenie\nremote.double.press.title=Akce pri dvojtom stlačenie\nremote.on.end.title=Akcia na konci/začiatku položky"
  },
  {
    "path": "Quelea/languages/sv.lang",
    "content": "﻿\nLANGUAGENAME=Svenska (SV)\nLOCALE=sv\ndatabase.heading=Databas\nimport.heading=Importera\nqsp.button=Quelea-sångbok\nss.button=Survivor Songbook\nprojector.heading=Projektor\ncontrols.heading=Kontroller\non.button=På\noff.button=Av\nswitch.input.button=Byt ingång\ngeneral.options.heading=Allmänt\ndisplay.options.heading=Skärmar\nbible.options.heading=Biblar\ncheck.for.update.label=Sök efter uppdateringar vid uppstart\n1.monitor.warn.label=Varna om endast en skärm är ansluten\ncapitalise.start.line.label=Stor bokstav vid varje ny rad\none.line.mode.label=Förhandsgranska bara en rad per sångdel\ndisplay.song.info.label=Visa sånginformation\ntext.border.thickness.label=Textramens tjocklek\nmax.chars.line.label=Maximalt antal tecken per rad\nadvanced.label=Avancerat\nok.button=OK\noutput.text=Utgång\ncontrol.screen.label=Datorskärm\nprojector.screen.label=Projektorskärm\nstage.screen.label=Scenskärm\ncustom.position.text=Anpassad position\ndefault.bible.label=Standardbibel\nmax.verses.label=Maximalt antal verser att visa samtidigt\nadd.bible.label=Lägg till bibel...\nnone.text=Ingen\nnew.schedule.button=Ny gudstjänstordning\nopen.schedule.button=Öppna gudstjänstordning\nsave.schedule.button=Spara gudstjänstordning\nsave.as.schedule.button=Spara gudstjänstordning som...\nprint.schedule.button=Skriv ut gudstjänstordning\noptions.title=Alternativ\noptions.button=Alternativ\nexit.button=Avsluta\nnew.schedule.text=Ny gudstjänstordning\ncreate.new.schedule.text=Skapa en ny gudstjänstordning\nopen.schedule.text=Öppna gudstjänstordning\nopen.existing.schedule.text=Öppna en sparad gudstjänstordning\nsave.schedule.text=Spara gudstjänstordning\nsave.schedule.disk.text=Spara gudstjänstordningen på datorn\nsave.as.schedule.text=Spara gudstjänstordning som\nsave.as.schedule.disk.text=Spara gudstjänstordning som en annan fil\nprint.schedule.text=Skriv ut gudstjänstordning\nprint.current.schedule.text=Skriv ut den aktuella gudstjänstordningen\noptions.text=Alternativ\ndisplay.options.text=Visa alternativrutan\nexit.text=Avsluta Quelea\nquit.quelea.text=Stäng av Quelea\nlibrary.image.heading=Bilder\nlibrary.songs.heading=Sånger\nlibrary.bible.heading=Biblar\nbible.heading=Biblar\nlibrary.song.search=Sök\nclear.search.box=Töm sökning\nadd.song.text=Lägg till sång i databasen\nremove.song.text=Ta bort sång från databasen\nlibrary.add.to.schedule.text=Lägg till i gudstjänstordningen\nlibrary.edit.song.text=Redigera sång\nlibrary.remove.song.text=Ta bort sång\nlibrary.print.song.text=Skriv ut sång\nadd.to.schedule.text=Lägg till i gudstjänstordningen\norder.service.heading=Gudstjänstordning\nmove.down.schedule.tooltip=Flytta neråt i gudstjänstordningen\nmove.up.schedule.tooltip=Flytta uppåt i gudstjänstordningen\nremove.song.schedule.tooltip=Ta bort från gudstjänstordningen\nadjust.theme.tooltip=Anpassa tema\nedit.song.text=Redigera sång\nnew.theme.text=Nytt tema...\ntheme.select.text=Välj tema:\ndefault.theme.name=Standard\ndefault.theme.text=Standardtema\nremove.theme.tooltip=Ta bort tema\nedit.theme.tooltip=Redigera tema\nedit.theme.heading=Redigera tema\npreview.heading=Förhandsgranska\nlive.heading=Live\ngo.live.text=Visa live\nblack.screen.tooltip=Svart skärm\nclear.text.tooltip=Blank skärm\nhide.display.output.tooltip=Sluta visa live\nschedule.heading=Gudstjänstordning\nadd.song.button=Lägg till sång\nedit.song.button=Redigera sång\nremove.item.button=Ta bort\nadd.multimedia.heading=Lägg till multimedia\nadd.presentation.button=Lägg till presentation\nadd.video.button=Lägg till video\nadd.youtube.button=Lägg till YouTube-video\nadd.live.video.button=Lägg till live-video\nadd.dvd.button=Lägg till DVD\nadd.audio.button=Lägg till ljud\nadd.audio.tooltip=Lägg till ljud\nshare.heading=Dela\nemail.button=E-posta gudstjänstordning\nmanage.notices.button=Hantera meddelanden...\nnotices.heading=Meddelanden\nnew.notice.text=Nytt meddelande\nedit.notice.text=Redigera meddelande\nremove.notice.text=Ta bort meddelande\ndone.text=Klar\nnew.notice.heading=Nytt meddelande\nnotice.text=Meddelande\nnotice.times.text=Tid att visa\nnotice.infinite.question=Oändligt?\nadd.notice.button=Lägg till meddelande\nedit.notice.button=Redigera meddelande\ncancel.text=Avbryt\nnew.song.button=Ny sång\ndelete.song.button=Ta bort sång\nsongs.heading=Sånger\ntags.button=Hantera taggar...\nsource.button=The Source\neasyslides.button=EasySlides\nplainText.button=Vanlig text\nkingsway.button=Kingsway Online\nsof.button=Songs of Fellowship\nexport.heading=Exportera\nfilter.tag=Filtrera taggar\ntags.colon.label=Taggar:\nimport.button=Importera\nclick.select.file.text=Klicka för att välja fil\ncheck.duplicates.text=Sök efter dubbletter\nedit.song.title=Redigera sång\nbasic.information.heading=Grundläggande information\ndetailed.info.heading=Utökad information\ntheme.heading=Tema\ntitle.label=Titel\nauthor.label=Författare\nrun.spellcheck.label=Stavningskontroll\nfix.apos.label=Ta bort överflödiga apostrofer\ntrim.lines.tooltip=Ta bort överflödiga mellanrum\ntranspose.tooltip=Transponera...\ncancel.button=Avbryt\nccli.number.label=CCLI-nummer\ncopyright.label=Copyright\nyear.label=År\npublisher.label=Förläggare\ntags.label=Taggar\ntype.tag.name.here.text=<Skriv taggar här>\nkey.label=Tonart\ncapo.label=Capo\nnotes.label=Anteckningar\nfont.theme.label=Typsnitt\nchoose.color.text=Välj färg...\nbackground.theme.label=Temabakgrund\ncolor.theme.label=Färg\nimage.theme.label=Bild\nselect.color.title=Välj färg\nselect.color.button=Välj färg\nnew.song.title=Ny sång\ntype.lyrics.here.text=Skriv texten här\nplaintext.import.line1=Detta kommer importera sånger från en vanlig textfil.\nkingsway.import.line1=Detta kommer att importera kingsway song-biblioteket från internet.\nkingsway.import.line2=Detta kommer ta lång tid (möjligtvis timmar!), så ha tålamod och stäng inte av Quelea!\neasyslides.import.line1=Detta kommer att importera sånger från en XML-fil från EasySlides.\nqsp.import.line1=Välj sångfilen från Quelea nedan.\nsource.import.line1=Välj ymns-mappen på CD:n.\nsurvivor.import.line1=Välj PDF-filen från Survivor Songbook nedan.\nsurvivor.import.line2=Detta måste vara filen acetates.pdf, inte gitarrackorden eller noterna.\nemail.error.title=E-postfel\nemail.error.text=Ett fel inträffade vid öppnandet av din e-postklient. Se till att du har en e-postklient installerad som klarar av att hantera eml-filer, annars måste du sända detta mejl manuellt.\nemail.text=Hej! Den bifogade filen du fått är en gudstjänstordning från Quelea. Öppna den bara med Quelea så ska alla filer visas som de ska.\nselect.image.button=Välj bild\nimage.files.description=Bildfiler\ntools.label=Verktyg\nselect.songs.title=Välj sånger\ncheck.uncheck.all.text=Markera/avmarkera alla\ndelete.theme.confirm.title=Bekräfta borttagning\ndelete.theme.question=Vill du verkligen ta bort detta tema?\ntoo.many.verses.error=Tyvärr, du kan inte visa så här många verser... var vänlig försök med ett lägre antal.\none.monitor.warning=Det verkar som om du bara har en skärm ansluten. Det är inga problem om du bara ska använda Quelea för att förbereda gudstjänstordningar men om du vill använda programmet live behöver Quelea två skärmar för att allt ska fungera.\none.monitor.title=Bara en skärm\nno.dvd.heading=Ingen DVD hittad\nno.dvd.error=Var vänlig sätt i en gilltig DVD-skiva.\nadding.presentation.status=Importerar presentation...\nadding.presentation.error.message=Ett fel inträffade vid importen av presentationen. Filen kanske är trasig?\nadding.presentation.error.title=Fel vid import av presentation\nimporting.status=Importerar...\nname.label=Namn\nsimilar.colors.text=Du har valt väldigt snarlika färger för text och bakgrund, vilket kommer göra det svårt för församlingen att läsa. Jag skulle råda dig att välja andra färger!\nwarning.label=Varning\nfile.menu=Arkiv\ntools.menu=Verktyg\nschedule.menu=Gudstjänstordning\ndatabase.menu=Databas\nprojector.menu=Projektor\nnew.theme.title=Nytt tema\nadd.theme.label=Lägg till tema\ntheme.name.label=Namn på tema\nhelp.menu=Hjälp\nhelp.menu.website=Hemsida\nhelp.menu.discussion=Support / Diskussion (ställ frågor här) - på engelska\nhelp.menu.download=Ladda hem\nhelp.menu.update=Sök efter uppdateringar\nhelp.menu.about=Om...\nhelp.menu.error.title=Fel\nhelp.about.title=Om\nhelp.about.version=Version\nhelp.about.close=Stäng\nhelp.about.line1=Quelea är licenserad under GPL (Version 3.)\nhelp.about.line2=Programmet är, och kommer alltid vara, gratis och open source.\nnew.schedule.tooltip=Ny gudstjänstordning\nopen.schedule.tooltip=Öppna gudstjänstordning\nsave.schedule.tooltip=Spara gudstjänstordning\nprint.schedule.tooltip=Skriv ut gudstjänstordning\nnew.song.tooltip=Ny sång\nadd.presentation.tooltip=Lägg till presentation\nadd.dvd.tooltip=Lägg till DVD\nadd.video.tooltip=Lägg till video\nmanage.tags.tooltip=Hantera taggar\nmanage.notices.tooltip=Hantera meddelanden\nalready.running.error=Det verkar som om Quelea redan körs. Se till att du stängt av Quelea helt innan du startar det igen.\nalready.running.title=Körs redan\nerror.schedule.message=Ett fel inträffade när filen skulle öppnas. Den kan vara trasig eller också är den inte skapad av Quelea.\nerror.schedule.title=Fel vid öppnande av gudstjänstordning\nprint.chords.question=Skriv även ut ackorden vid utskrift av denna sång?\nprinting.options.text=Skriv ut sång\nspace.key=mellanslag\nupdating.db=Uppdaterar databas\nerror.updating.song.text=Ett fel inträffade när sången uppdaterades i databasen, den kan vara trasig.\nerror.text=Fel\nquick.shortcut.description=Escape för att avbryta, shift+enter för att spara\nsave.before.exit.text=Denna gudstjänstordning har blivit ändrad. Spara före avstängning?\nsave.before.exit.title=Osparad gudstjänstordning\nno.chords.message=Denna sång har inga ackord att transponera.\nno.chords.title=Inga ackord\nerror.checking.updates.title=Lyckades inte söka efter uppdateringar\nerror.checking.updates.text=Tyvärr, det gick inte att söka efter uppdateringar. Kolla din internetanslutning och försök igen.\nnewer.version.available=Det finns en nyare version av Quelea tillgänglig\nno.newer.version.available=Du kör den senaste versionen Quelea\nvisit.webpage.now=Besök hemsidan och ladda hem den nu?\ndownload.manual.update=Du kan ladda hem den här\nnewer.version.available.title=Uppdatering tillgänglig\nno.newer.version.available.title=Redan uppdaterad!\ncheck.kingsway.start=Du har redan importerat några sånger från Kingsway-biblioteket. Vill du börja importera från där du slutade senast?\ncheck.kingsway.start.title=Redan importerade sånger\nimport.no.songs.title=Inga sånger funna\nimport.no.songs.text=Kunde inte hitta några sånger att importera.\nstage.options.heading=Scenläge\nstage.show.chords=Visa ackord?\nstage.line.alignment=Textjustering\nstage.font.selection=Typsnitt\nstage.background.colour=Bakgrundsfärg\nstage.lyrics.colour=Textfärg\nstage.chord.colour=Ackordfärg\nleft=Vänster\ncentre=Centrerat\nright=Höger\nconfirm.label=Är du säker?\nschedule.clear.text=Gudstjänstordningen har blivit ändrad. Fortsätt utan att spara?\npart=Del\nhelp.menu.facebook=Facebook-sida\nvideo.error=Kunde inte starta videobiblioteket - video kommer inte fungera. Fråga i diskussionslistan (se under hjälpmenyn) om hjälp att lösa detta.\nvideo.error.title=Videofel\ntext.shadow.label=Visa textskugga\nadding.images=Lägger till bilder...\nsetup.oo.failed.text=Misslyckades att använda OpenOffice för presentationer. Se till att du har installerat OpenOffice och att du angett rätt sökväg.\nsetup.oo.failed.title=OpenOffice kunde inte startas\nuse.oo.label=Använd OpenOffice för presentationer\noo.path=Sökväg till OpenOffice\nbrowse=Bläddra...\nbuilding.bible.index=Laddar biblar\nbible.search.title=Bibelsök\ninitial.search.text=<Skriv här for att söka>\nview.bible.button=Visa biblar...\nsearch.bible.button=Sök biblar...\nall.text=Alla\nbible.browser.title=Bibelbläddrare\nopen.in.browser=Öppna i bibelbläddrare...\nkingsway.button.all=Alla sånger\nkingsway.button.one=En sång\nsong.id.selector=Välj sång-ID\nbible.copy.error.text=Tyvärr, ett fel inträffade vid kopieringen av vald bibel.\nbible.copy.error.heading=Fel\nselect.key.label=Välj ny tonart:\ntranspose.label=Transponera\nalready.exists.overwrite.label=finns redan. Ersätt?\noverwrite.text=Ersätt\ncant.save.schedule.title=Fel vid sparande av gudstjänstordning\ncant.save.schedule.text=Tyvärr, det gick inte att spara gudstjänstordningen - ett fel inträffade.\nerror.removing.song.db=Ett fel inträffade vid borttagning av sång från databasen.\nconfirm.remove.text=Bekräfta borttagning\nconfirm.remove.question=Vill du verkligen ta bort $1 från databasen? Borttagningen går inte att ångra.\nquick.edit.text=Snabbredigera\nlibrary.preview.song.text=Förhandsgranska sång\nvideo.error.unsupported=Tyvärr, videofilen du har valt stöds inte.\nvideo.error.general=Tyvärr, ett fel har inträffat med filen du valt.\nvideo.theme.label=Video\nselect.video.button=Välj video\nrefresh.images.panel=Uppdatera bilder\nadd.images.panel=Lägg till bilder\nselect.folder.images.panel=Välj mapp...\ntext.position.label=Textposition\nimage.folder=Bildmapp:\nquick.insert.text=Lägg till snabbt\nconfirm.overwrite.title=Filen finns redan!\nconfirm.overwrite.text=Denna fil finns redan. Vill du ersätta den eller fortsätta utan att kopiera?\nfile.rename.button=Byt namn\nfile.replace.button=Byt plats\nfile.continue.button=Fortsätt\nfile.rename.dialog.title=Byt namn\nfile.rename.dialog.text=Skriv in det nya filnamnet:\ninterface.language.label=Språk:\nlanguage.changed=Språk bytt\nlanguage.changed.message=Du måste starta om Quelea innan språkbytet träder i kraft.\ndebug.location=Debugloggens sökväg\ntop.text.position=Högst upp\nmiddle.text.position=Mitten\nbottom.text.position=Längst ner\nshadow.color=Skuggfärg\nshadow.x=Skuggans X-förskjutning\nshadow.y=Skuggans Y-förskjutning\nyes.text=Ja\nno.text=Nej\nloading.text=Laddar\nselect.imported.songs.line1=Följande sånger har importerats.\nselect.imported.songs.line2=Välj vilka du vill lägga till i databasen och tryck sedan på \"Lägg till\".\nselect.imported.songs.line3=Sångerna som Quelea tror är dubbletter har blivit avmarkerade.\nadd.text=Lägg till\nadd.to.database.question=Lägg till i databasen?\nselect.export.songs.line1=Följande sånger finns i databasen.\nselect.export.songs.line2=Välj vilka du vill lägga till i sångboken och tryck sedan på \"Lägg till\".\nadd.to.songpack.question=Lägg till i sångbok?\nprojection.window.title=Projektionsfönster\nclear.live.on.remove.schedule=Ta även bort från live-visning när något raderas från gudstjänstordningen\nspelling.complete.text=Stavningskontrollen är slutförd.\ncomplete.title=Slutfört\nspelling.check.title=Stavningskontroll\ncorrect.text=Rätta\nignore.text=Ignorera\nspelling.errors.in.doc.label=Det finns stavfel i dokumentet. Tryck \"F7\" för att öppna rutan för stavningskontroll.\ndelete.image.title=Radera bild\ndictionary.language.text=Rättstavningsspråk\nremove.image.text=Ta bort bild\ndelete.image.confirmation=Vill du verkligen ta bort bilden från biblioteket? Denna borttagning kan inte ångras.\nnotice.expired.text=Meddelandet du redigerar har löpt ut. Vill du lägga till det igen?\nnotice.expired.title=Meddelande löpt ut\nconfirm.entry.exit.text=Vill du spara ändringarna du gjort på denna sång?\nconfirm.entry.exit.title=Spara sång?\nsave.text=Spara\ndont.save.text=Spara inte\ndownload.vlc=Ladda ner VLC\nfilefilters.description.powerpoint.presentations=Powerpoint-presentationer\ncontinue.without.video=Fortsätt utan VLC\nfilefilters.description.video.files=Videofiler\nfilefilters.description.quelea.schedules=Quelea-gudstjänstordningar\nfilefilters.description.xml.files=XML-filer\nfilefilters.description.survivor.songbook=Survivor acetates-fil\nvlc.warning.message=Quelea kunde inte hitta VLC på din dator. Utan det kommer Quelea inte kunna spela upp videor, ljudfiler och visa sånger med videobakgrunder. Vill du ladda hem det nu? Du måste starta om Quelea efter att du har installerat VLC för att ändringarna ska träda i kraft.\nvlc.version.message=Din version av VLC är gammal. Du behöver ladda hem den senaste versionen av VLC för att kunna spela upp filmer och ljud, samt visa videobakgrunder. Vill du ladda hem det nu? Du måste starta om Quelea efter att du har installerat VLC för att ändringarna ska träda i kraft.\nvlc.warning.title=Kunde inte hitta VLC\nfilefilters.description.xml.bibles=XML-biblar\nstartup.error.text=Tyvärr, Quelea kunde inte starta på din dator av någon anledning. Om du vill ha hjälp att få det fungera, var vänlig skicka ett mail till support@quelea.org och bifoga debug-loggfilen ($1).\\n\\nAnnars, känn dig fri att ställa en fråga i Queleas diskussionsgrupp (https://quelea.discourse.group).\nstartup.error.title=Fel vid uppstart\nfilefilters.description.plain.text.song=Sånger från en vanlig textfil\nfilefilters.description.xml.easyslide=XML-filer från Easyslides\nfilefilters.description.audio.files=Ljudfiler\nbible.search.keep.typing=Fortsätt skriva...\nbible.search.results.found=träffar hittade\nbible.search.result.found=träff hittad\nuniform.font.size.label=Använd enhetlig teckenstorlek\nmax.font.size.label=Maximal teckenstorlek\nadditional.line.spacing.label=Mellanrum mellan rader\nmobile.lyrics.heading=Fjärrtext\nuse.mobile.lyrics.label=Använd fjärrtext\nport.number.label=Portnummer\nnavigate.mob.url.label=Webbadress till fjärrtext\nfilefilters.description.zip.files=Zip-filer\nos.button=Opensong\nloop.label=Loopa\nos.import.line1=Ange nedan var Opensong-databasen finns.\nchange.graphics.label=Ändra utseende\nseconds.label=sekunder\nfont.colour.label=Textfärg\nbackground.colour.label=Bakgrundsfärg\nlogo.screen.tooltip=Vänsterklicka för att visa – Högerklicka för att ställa in\nolp.import.line1=Ange nedan var OpenLP-databasen finns.\nsundayplus.import.line1=Ange nedan var Sunday Plus-databasen finns.\nolp.button=OpenLP\nfilefilters.description.sqlite.files=SQLite-filer\nsp.button=Sunday Plus\nfont.selection.dialog.title=Typsnittsurval\nvideo.hue.label=Färgton\nchosen.fonts.explanation=Quelea visar bara ett urval av typsnitt i temafönstret. Dra de typsnitt som du vill använda från den vänstra panelen till den högra panelen, dra dem du inte vill använda från höger till vänster.\ntest.patterns.text=Testmönster\nchosen.fonts.label=Valda typsnitt\ntest.patterns.explanation=Testmönstret här bör hjälpa dig kalibrera din skärms fokus- och färginställningar. Klicka på en testbild för att visa den på både huvudskärmen och scenskärmen.\nignored.fonts.label=Ignorerade typsnitt\nhover.for.position.label=För muspekaren över bilden för att ställa in textposition\nbackground.text=Bakgrund\neasyworship.button=EasyWorship 2009\nfilefilters.description.songs.mb=Easyworship Songs.MB-databas\nzw.import.line2=Den kan vanligtvis hittas i \"C:\\ProgramData\\ZionWorx\\2.6\\Data\".\nzw.import.line1=Välj var ZionWorx \"MainTable.dat\"-fil finns nedan.\nadd.song.hint.search.text=Det finns inga sånger som matchar\\ndin sökning än, men var inte orolig!\\nFör att lägga till en sång klickar du bara på\\n\"Lägg till sång\"-knappen här till vänster.\nadd.song.hint.text=Det finns inga sånger här än, men oroa dig inte!\\nFör att lägga till en sång klickar du bara på\\n\"Lägg till sång\"-knappen här till vänster.\nshow.verse.numbers=Visa versnummer\nzw.button=ZionWorx\nno.tdb.heading=TurboDB Data Exchange hittades inte\nno.tdb.message=Av tekniska anledningar behöver du ladda ner TurboDB data exchange (https\\://www.dataweb.de/en/support/downloads.html) innan Quelea kan importera ZionWorx-databaser.\\nNär du har laddat hem den, packa då upp i zip-filen till $1.\\n\\nOm du får några problem, så känn dig fri att fråga i diskussionsgruppen här: (https://quelea.discourse.group)\nimport.error.message=Tyvärr, ett fel uppstod vid importeringen. Känn dig fri att fråga om hjälp i Quelea's diskussiongrupp: https://quelea.discourse.group\nfilefilters.description.maintable.dat=ZionWorx MainTable databas-fil\neasyworship.import.line1=Detta kommer att importera sånger från en Easyworship Songs.MB-fil.\nyoutube.url.label=Youtube-videoadress\nopenlyrics.import.line1=Välj nedan var zip-filen med OpenLyrics-sånger är sparad.\ntranslate.dialog.title=Översättningshanterare\nconfirm.remove.translation.text=Vill du verkligen ta bort denna översättning?\ndefault.translation.label=Standardöversättning\nuse.remote.control.label=Använd fjärrstyrning\nremote.logo.text=Logga\nenter.translation.name.label=Vilket språk skulle du vilja översätta till?\nremote.login.text=Var vänlig logga in för att fortsätta\nremote.submit.text=Logga in\nconfirm.remove.translation.title=Ta bort översättning?\nselect.translation.label=Välj vilka översättningar du vill visa utöver originaltexten:\nolyrics.button=OpenLyrics\nchoose.translations.text=Välj översättningar\nremote.control.password=Lösenord till fjärrstyrning (Gör skillnad på stora och små bokstäver)\nserver.settings.heading=Serverinställningar\nremote.prev.text=Föregående bild\nremote.nextitem.text=Nästa sång\nremote.next.text=Nästa bild\nnavigate.remote.control.label=Webbadress till fjärrstyrning\nremote.logout.text=Logga ut\nremote.black.text=Svart\nauto.translate.label=Försök översätta sånger automatiskt\nclose.button=Stäng\nremote.previtem.text=Föregående sång\nmore.fonts.label=Fler typsnitt\nserver.changed.message=Du måste starta om Quelea för att de nya serverinställningarna ska träda i kraft.\nremote.clear.text=Blank\nremote.empty.lyrics=<i>Texten kommer att visas här</i>\nserver.changed.label=Serverinställningar ändrade\ntranslate.tooltip=Sångöversättningar\nadd.translation.button=Lägg till översättning...\noverwrite.lyrics.text=Vi har automatiskt översatt texten åt dig. Vill du använda översättningen? Det du har skrivit kommer att ersättas.\nmore.font.options.label=Fler typsnitt\ntranslate.heading=Översättningar\noverwrite.lyrics.title=Skriv över existerande text?\ntranslation.font.text=Typsnitt för översättning\nshadow.text=Skugga\nsaving.schedule=Sparar gudstjänstordning...\nsmall.text.position.label=Sida för information om sång/bibeltext\nbible.passage.selector.prompt=[Kapitel]:[Vers]-[Vers]\ntheme.button.tooltip=Ange ett tema för allt i gudstjänstordningen\ncurrently.displaying.text=För närvarande visas\nplay=Play\npause=Pause\nshow.small.song.text.label=Visa information om sången i hörnet\nshow.small.bible.text.label=Visa information om bibelstycket i hörnet\nmax.items.per.slide=Maximalt antal % per skärm\nverses=verser\nedit.bible.passage.text=Redigera tema för bibeltext\nwords=ord\nuse.bible.verses=Dela upp bibeltexter efter antalet\nno.pdb.heading=Paradox JDBC-drivrutiner inte hittade\nno.pdb.message=Av tekniska skäl behöver du ladda hem Paradox JDBC-drivrutiner innan Quelea på ett pålitligt sätt kan importera databaser från Easyworship:\\n\\n1. Gå till http://www.hxtt.com/download.jsp och registrera dig för ett gratis konto för att fortsätta.\\n2. Ladda hem filen \"DBF JDBC 4.1 Package for JDK1.7.X and JDK1.8.X\". Den bör heta Paradox_JDBC41.jar.\\n3. Kopiera Paradox_JDBC41.jar till $1.\\n\\nOm du stöter på några problem, känn dig fri att ställa en fråga i diskussionsgruppen (https://quelea.discourse.group). Quelea kommer ändå att försöka importera Easyworship-databasen utan filen på plats, men det kan ge ett opålitligt resultat.\nnotice.options.heading=Meddelanden\nnotice.speed.text=Hastighet på meddelanden\nnotice.font.size=Textstorlek på meddelanden\nnotice.font.text=Typsnitt på meddelanden\nexport.schedule.pdf.button=Exportera gudstjänstordning till PDF\nnotice.colour.text=Färg på meddelanden\nnotice.position.text=Position på meddelanden\nfilefilters.description.pdf.files=PDF-filer\nnotice.background.colour.text=Bakgrundsfärg för meddelanden\nexport.pdf.button=Exportera till PDF\nquelea.schedule.text=Gudstjänstordning från Quelea\nnot.started.label=Inte startad\nuser.options.options=Användaralternativ\ntext.options.options=Textalternativ\nstretch.video.label=Sträck ut video\nexport.schedule.songs.pdf.button=Exportera sånger till PDF\nshadow.radius.label=Skuggradie\nshadow.spread.label=Skuggspridning\npdf.button=PDF\nshadow.color.label=Skuggfärg\nuse.shadow.label=Använd skuggor?\nshadow.offset.label=Skuggavstånd\nexporting.label=Exporterar\nprint.chords.export.question=Inkludera ackorden när sångerna exporteras?\nhelp.menu.manual=Manual\nedit.theme.text=Redigera tema\nchange.bible.version.text=Byt översättning\nswitch.to.text=Byt till\nsave.qr.code.text=Spara QR-kod\nnonbreak.tooltip=Lägg till en ny rad utan att skapa ny skärmbild\ncopying.video.please.wait.text=Vänta ett litet tag - videofilen kopieras bara...\ntranslating.text.please.wait.text=Vänta ett litet tag - hämtar en översättning...\nfilefilters.description.usr.files=USR-filer (SongSelect)\nsongselect.import.line1=Bläddra till SongSelect-filen nedan.\nsongselect.button=SongSelect\ntranslation.export.heading=Exportera översättning\ninclude.translations.question=Inkludera översättningar i PDF-filen?\nslide.text=PowerPoint-bild\nautoplay.vid.label=Spela upp videor automatiskt när de kommer till livepanelen\nadvance.on.live.label=Förhandsgranska nästa punkt i gudstjänstordningen automatiskt\npng.files.description=PNG-bildfil\ndelete.translation.text=Ta bort översättningen till $1?\nhelp.menu.wiki=Wiki\ndelete.translation.title=Ta bort översättning\npreview.on.image.change.label=Förhandsgranska när bakgrundsbild har ändrats\nadd.timer.tooltip=Lägg till nedräkningstimer\nfilefilters.description.image.video.files=Video- och bildfiler\ntimer.duration.label=Tid för nedräkning\ntimer.file.label=Plats för bakgrundsfil\nduration.tooltip.label=#:## eller ##m##s\ntranslation.choice.title=Översättningsval\nfont.options.title=Typsnittsinställningar\nnew.translation.title=Ny översättning\nadd.timer.title=Lägg till timer\nuntitled.theme.text=Namnlöst tema\ntimer.text.label=Ytterligare text\ntimer.text.prompt=Använd # för att ange timerns position. T.ex. kommer \"Gudstjänsten börjar om #\" visa \"Gudstjänsten börjar om 05:00\"\ncountdown.label=Nedräkningstimer\ntimer.theme.label=Temainställningar\ntimer.theme.button=Byt tema\nmediashout.button=MediaShout\nfilefilters.description.txt.files=.txt-filer\nembed.media.in.schedule=Bädda in mediafiler i sparade gudstjänstordningar\nmediashout.import.line1=Ange nedan var MediaShout db-filen finns (exporterad till txt-format):\nclear.stage.view=Göm text på scenskärm med huvudskärmen\ntop=Högst upp\ndelete.video.confirmation=Vill du verkligen ta bort denna video från biblioteket? Denna åtgärd går inte att ångra.\nepicworship.button=EpicWorship\ntimer.files.description=Nedräkningstimers\nlibrary.video.heading=Videor\nbottom=Längst ner\ntimer.save.label=Spara timer?\nkingsway.range.import.text=Ange antalet sångsidor att ladda hem från Kingsway's hemsida.\\nFör närvarande är maximala antalet sidor runt 3600.\nadd.videos.panel=Lägg till videor\nkingsway.button.range=Antal\nfilefilters.description.epc=EpicWorship-sångdatabas .epc\nadd.timers.panel=Lägg till timers\nremove.timer.text=Radera timer\nkingsway.range.import.heading=Importantal av Kingswaysånger\nconfirm.remove.timer=Vill du verkligen ta bort $1 från timerlistan? Denna åtgärd går inte att ångra.\nepicworship.import.line1=Detta kommer att importera sånger från en EpicWorship Song Pack-fil (.epc).\ntimer.name.label=Namn\nedit.timer.text=Redigera timer\nlibrary.timer.heading=Timers\ndelete.video.title=Radera video\nremove.video.text=Ta bort video\nrcs.add.song=Lägg till sång i gudstjänstordningen\nrcs.add.bible.error=Ett fel uppstod när $1 skulle läggas till i gudstjänstordningen\nsdb.files.description=Songpro-databasfil\nrcs.song.search=Sång\nsongbeamer.button=SongBeamer\nsng.files.description=SNG-filer (SongBeamer)\nsongpro.button=SongPro\nsongbeamer.import.line1=Ange nedan var SNG-filerna finns som du vill importera:\nrtf.files.description=RTF-filer\nrcs.add.failed=Misslyckades att lägga till\nshow.video.library.panel=Visa videofliken (kräver omstart)\nrcs.bible.search=Bibel\nrcs.search=Sök och lägg till\nrcs.add.success=Lyckades lägga till utan problem\nrcs.submit=Skicka\nsongpro.import.line1=Detta kommer att importera sånger från en SongPro SDB-databas.\nsof.import.line1=Detta kommer importera SoF-biblioteket från en RTF-fil.\ninvalid.search=Ogiltig sökning\noverflow.song.label=Fortsätt automatiskt till första textdelen i nästa punkt\nuse.24h.clock=Använd 24-timmarsklocka\nsplit.bible.verses=Dela inte upp verser mellan textrutor\nno.verse.title=Inga verser hittade\nno.verse.message=Vi kunde inte hitta en eller flera av de specificerade verserna och har försökt fortsätta utan dem.\nchorus.tooltip=Lägg till en refräng-rubrik\nrecordings.path=Sökväg för inspelningar\nconvert.mp3=Konvertera automatiskt inspelningar till MP3-filer (kräver VLC)\nrecording.warning.title=Ställ in inspelningsmapp först\nrecording.warning.message=Du måste ställa in en sökväg i inställningar för var inspelningarna ska sparas innan du kan påbörja en inspelning.\nrecording.no.devices.title=Ingen inspelningsenhet hittades\nrecording.no.devices.message=Tyvärr, ingen kompatibel inspelningsenhet hittades.\\nSe till att din inspelningsenhet är inkopplad och aktiverad.\nsave.recording.before.exit.title=Osparad inspelning\nsave.recording.before.exit.message=Vill du spara inspelningen innan du avslutar?\nrecord.audio.tooltip=Spela in ljud\npause.record.tooltip=Pausa inspelningen\nmax.lines.per.slide=Rader per stycke (ungefärligt)\ncopy.song.db.default=Kopiera sånger till gudstjänstordningen som standard\nmp.button=Mission Praise\nfilefilters.description.pmsong.files=Presentation Manager-sånger\nrecordings.options.heading=Inspelningar\nmissionpraise.import.line1=Detta kommer att importera sånger från Mission Praise RTF-filer.\nlibrary.copy.to.schedule.text=Kopiera till gudstjänstordningen\npresentation.options.heading=Presentationer\npm.button=Presentation Manager\nfilefilters.description.songs.missionpraise=Mission Praise RTF-filer\npm.import.line1=Välj Presentation Manager-sånger att importera.\nvideopsalm.import.line1=Detta kommer importera VideoPsalm-biblioteket från en JSON-fil. \nfilefilters.description.vs.files=VideoPsalm-databaser\nvideopsalm.button=VideoPsalm\npco.button=Planning Center Online\npco.login.import.heading=Planning Center Online Login\npco.loginerror.title=Login misslyckades\npco.loginerror.warning=Misslyckades att logga in. Kontrollera email och lösenord och försök igen\npco.import.heading=Planning Center Online\npassword.text=Lösenord\nemailaddress.text=Email\nlogin.text=Login\nfreeworship.button=Freeworship\nimport.all.button=Importera allt\nimport.selection.button=Importera markering\nrefresh.button=Uppdatera\nfreeworship.import.line1=Detta kommer importera FreeWorship-sånger från XML-filer.\nhelp.menu.feedback=Feedback\nadd.multimedia.tooltip=Lägg till multimedia\nfilefilters.description.multimedia.files=Multimedia-filer\nthumbnail.size.label=Minibildsstorlek\ndownload.path=Nedladdningsmapp\nadd.pdf.tooltip=Lägg till PDF-fil\nimportexport.options.heading=Importera/Exportera\npreview.failed=Förhandsgranskning misslyckades\nset.loop.manually.title=PowerPoint hittades inte\nset.loop.manually.message=Presentationen har stängts av. Om du vill använda Queleas loop-funktion med PowerPoint Viewer behöver du manuellt ställa in att presentationen ska loopa tills den stoppas när du skapar den.\npresentation.changed.message=Du behöver starta om Quelea för att de nya presentationsinställningarna ska träda i kraft.\npresentation.changed.label=Presentationsinställningar ändrade\npresentation.not.started.label=PowerPoint startades inte\npresentation.not.started.message=Tyvärr kunde din presentation inte startas med PowerPoint. Filen kanske är korrupt?\npp.already.running.label=PowerPoint körs redan\npp.already.running.message=En annan instans av PowerPoint hittades. Stäng alla instanser av PowerPoint innan du öppnar en presentation i Quelea för att undvika dataförlust.\npp.path.label=Sökväg till PowerPoint\nuse.pp.label=Använd PowerPoint för presentationer\nclose.all.presentations.label=Stäng alla öppna presentationer\nclose.all.presentations.message=Stäng alla öppna PowerPoint-fönster innan du trycker OK, annars kommer detta automatiskt att göras för att undvika att skicka signaler till fel fönster.\nlive.text.message=Allt text som skrivs här kommer att ses för användare av fjärrtext när huvudskärmen är tom.\\n\\nAnvänd en tom rad för att starta ett nytt stycke. Du kan även använda Töm-knappen (eller CTRL + Enter) för att nollställa i båda ändar. Mer än 200 tecken i ett stycke kommer automatiskt att kortas ner för användaren.\nlive.text.title=Live-text\nexit.live.text=Avsluta live-text\nclear.live.text=Töm\ndefault.translation=Original\nselect.language=Välj språk:\nsend.live.text=Live-text\nconverting.to.mp3=Konvertera inspelningar till MP3-filer\nverse.tooltip=Lägg till en vers-rubrik\nbridge.tooltip=Lägg till en stick-rubrik\nprechorus.tooltip=Lägg till en brygga-rubrik\ntag.tooltip=Lägg till en coda-rubrik\nadd.website=Lägg till en hemsida\nfocus.switcher.title=Quelea fokusskiftare\nfocus.switcher.message=Skifta fönsterfokus här om du behöver under presentationen.\nfocus.pp=Skifta fokus till PowerPoint\nfocus.quelea=Skifta fokus till Quelea\nwebsite.dialog.title=Webbsideadress\nwebsite.dialog.header=Skriv in webbadress\nwebsite.dialog.content=Skriv in vilken hemsida du vill visa:\npaste.label=Klistra in\nundo.label=Ångra\nredo.label=Gör om\nsmi.import.line1=Välj vilka Screen Monkey-sånger du vill importera.\nsm.button=Screen Monkey\nsundayplus.import.line2=(Importeraren förväntar sig att PTF-filerna ligger direkt i en ZIP-fil.)\nhelp.menu.error.text=Tyvärr, vi kunde inte ladda den sidan. Du kan navigera till den manuellt: $1\nfilefilters.description.songs.worshiphim=Worship Him MDB-filer\nworshiphim.import.line1=Bläddra till Worship Him db-filen (i mdb-format) nedan:\nworshiphim.button=Worship Him\nshow.extra.live.panel.toolbar.options.label=Visa extra knapp för att gömma livefönster\nelevanto.button=Elevanto\ndelete.bible.confirmation=Vill du verkligen ta bort bibeln $1?\nschedule.items.skipped.text=Vissa gudstjänstpunkter hade inte sina mediafiler inbäddade så de har inte lagts till.\ndelete.notice.button=Ta bort\ntheme.copy.label=Kopiera from tema\nsong.default.theme.label=Sångstandard\nelevanto.import.heading=Elevanto\nsaved.notices=Sparade meddelanden\ntheme.select.label=Välj tema\nbible.default.theme.label=Bibelstandard\nbible.delete.error.heading=Error\nelevanto.loginsuccess.message=Du kan nu stänga detta fönster och återvända till Quelea\nschedule.items.skipped.header=Punkter i gudstjänstordningen hoppades över\nbible.delete.error.text=Tyvärr, ett problem uppstod när bibeln skulle raderas från mappen.\nallow.item.theme.override.global=Tillåt individuella teman att gå före globala teman\ncopy=Kopiera\nsave.add.notice.button=Spara och lägg till\nvideo.loop.tooltip=Starta/stanna loopning\nelevanto.loginerror.warning=Ett problem uppstod vid inloggning till Elevanto\ndelete.bible.label=Ta bort vald bibel\ndb.song.preview.label.databasepreview=Som ruta i databasen\ndb.song.preview.label=Förhandsgranskning av sånger i databasen\ndb.song.preview.label.control=Ingen\ndb.song.preview.label.previewpane=I förhandsgranskningspanelen\nchosen.sequence.label=Vald songordning\ngeneral.user.options=Allmänna användarinställningar\nslide.transition.label=Använd toning mellan textdelar\nchosen.sequence.explanation=Dra delar från vänster till höger eller dubbelklicka för att skapa en sångordning. Textdelarna kommer sedan att visas i den ordningen, oavsett vilken i ordning sångtexten är lagrad i databasen.\nsmall.song.position.label=Plats för sånginformation\navailable.sections.label=Tillgängliga delar i denna sång\ndefault.theme.label=Standard\nmove.up.sequence.tooltip=Flytta upp i sångordningen\nremove.sequence.tooltip=Ta bort från sångordningen\nsequence.tooltip=Sångordningsdialog\ntheme.changed=Temat bytt\nmove.down.sequence.tooltip=Flytta ner i sångordningen\nsmall.bible.text.options=Inställningar för liten bibelinformationstext\nfilefilters.description.sunday.plus=Sunday plus-sånger\nsmall.bible.size.label=Storlek på bibelinformation\nfilefilters.description.xml.openlyrics=XML openlyrics-filer\npassword.empty.message=Serverlösenordet kan inte vara tomt. Standardlösenordet \"quelea\" kommer att användas om du inte skriver in något annat i lösenordsrutan.\nfilefilters.description.csv.files=.csv-filer\ninterface.theme.label=Applikationstema\nsequence.selection.dialog.title=Sångordningsval\ngeneral.interface.options=Allmänna utseendesinställningar\ninterface.options.options=Utseendesinställningar\npp.path=Sökväg till PowerPoint-programmet\nfilefilters.description.propresenter=Propresenter-sånger\nmobile.remote.heading=Fjärrstyrning\nschedule.options=Gudstjänstordningsinställningar\nsmall.song.size.label=Sånginformationsstorlek\npropresenter.import.line1=Detta kommer att importera sånger från en Propresenter-sångfil.\npropresenter.button=ProPresenter\nsong.sequence=Sångordning:\ntheme.changed.message=Du måste starta om Quelea innan temaförädringarna träder i kraft.\nsmall.bible.position.label=Bibelinformationsplats\nsong.list=Sånglista\ndark.theme.label=Mörk\ntheme.options=Temainställningar\nsmall.song.text.options=Inställningar för liten sånginformationstext\npassword.empty.label=Tomt lösenord funnet\nremote.select.book=Välj bok\nremote.search.tooltip=Lägg till en sång eller en bibeltext\nremote.search.server=Sök server\nremote.add.go.live=Lägg till och visa live\nremote.failed.finding.server=Hittade inte Quelea's fjärrstyrningsserver. Se till att Quelea är startad och att du har skrivit in rätt URL.\nremote.navigation.settings.title=Navigationsinställningar\nremote.enable.volume.navigation=Använd volymnavigation\nremote.volume.navigation.description=Använd telefonens volymknappar för att navigera till nästa eller föregående textdel/punkt.\nremote.enable.dpad.navigation=Använd dpad-navigation\nremote.dpad.navigation.description=Använd dpad-knappar (upp/ner) för att navigera till nästa eller föregående textdel/punkt. Om du vill använda ett Bluetooth-tangentbord eller -pedal (som AirTurn), aktiverar du detta.\nremote.swipe.navigation.description=Välj vad som ska hända när du sveper höger eller vänster på skärmen.\nremote.swipe.navigation.title=Svepnavigation\nremote.auto.progress.item=Gå till nästa/föregående punkt\nremote.action.clear=Göm texten med blankknappen\nremote.action.logo=Göm texten och visa logga\nremote.action.black=Göm texten med svart skärm\nremote.action.nothing=Gör ingenting\nremote.action.item=Gå till nästa/föregående punkt\nremote.action.slide=Gå till nästa/föregående textdel\nremote.disable.record=Avaktivera inspelningsknappen\nremote.about.title=Om appen\nremote.choose.action=Välj händelse för $1\nremote.control.app.name=Quelea Fjärrstyrning\nremote.select.theme=Välj tema\nremote.about.text.app=Detta är en gratisapp gjord för att användas med open source-programmet Quelea (http://quelea.org). Även om den inte längre är i en betafas är den säkerligen inte buggfri och inte heller färdigutvecklad. Detta är ett sidoprojekt och främst ämnat för eget bruk men som delas gärna med alla som kan finna användning för det.\nremote.about.text.support=Känn dig fri att skicka ett e-mail till mig på arvid @ quelea.org om du har några frågor eller upplever några problem, men se till att du har startat Quelea före appen (med båda servrarna aktiva), att båda enheterna är anslutna till samma nätverk och att du har skrivit in rätt URL först.\nremote.about.text.responsibility=Jag kan inte garantera en felfri upplevelse av appen så jag tar inget ansvar för några problem som kan uppstå vid live-användning.\nremote.select.chapter.verses=Välj kapitel och vers(er)\nremote.theme.was.set=$1 har valts som huvudtema\nremote.port.needed=Länken måste innehålla portnummret på slutet (t.ex. ':1112'). Försök igen.\nremote.connected=Ansluten!\nremote.wrong.content=Fel sidoinnehåll hittades. Försök igen.\nremote.no.wifi=Du är inte ansluten till ett wifi. Skriv in URL:en manuellt eller anslut till ett wifi.\nremote.use.autoconnect=Försök att automatiskt hitta serverns URL\nremote.information.title=Information\nremote.report.issue=Rapportera ett problem\nremote.about.translating=Om översättning av appen\nremote.privacy.policy=Integritetspolicy\nremote.donations.link=Donera\nremote.needs.newer.version=Denna funktion kräver att servern kör Quelea $1 eller nyare\nremote.source.code=Källkod\nremote.ipv6.not.supported=Tyvärr kan du inte använda IPv6-adresser. Du måste använda en IPv4-adress för att kunna använda denna app. Om du inte vet hur du hittar det, googla 'hitta lokal ip-adress' och namnet på ditt operativsystem. Skriv in IPv4-adressen/URL:en nedan.\nremote.on.end.title=Händelse vid början/slutet av en punkt\nremote.on.end.description=Välj vad appen ska göra när du navigerar med volymknapparna och du når början/slutet av en punkt.\nremote.long.press.description=Välj vad du vill ska hända när du gör en lång tryckning på en av volymknapparna.\nremote.long.press.title=Långtryckshändelse\nremote.double.press.title=Dubbeltryckshändelse\nremote.double.press.description=Välj vad du vill ska hända när du trycker ner båda volymknapparna samtidigt.\nremote.signal.failed=Misslyckades att sända signalen till servern\nremote.send.notice.tooltip=Lägg till ett meddelande\nremote.chapter=Kapitel\nremote.start.verse=Startvers\nremote.end.verse=Slutvers\nbible.version=Bibelversion\nclick.to.add=Klicka för att lägga till"
  },
  {
    "path": "Quelea/languages/sw.lang",
    "content": "LANGUAGENAME=Kiswahili (SW)\ndatabase.heading=Hifadhidata\nimport.heading=Letesha\nqsp.button=Quelea Song Pack\nos.button=Opensong\nolp.button=OpenLP\nolyrics.button=OpenLyrics\nzw.button=ZionWorx\nsp.button=Sunday Plus\nss.button=Survivor Songbook\nprojector.heading=Kionyeshaji\ncontrols.heading=Vidhibiti\non.button=Washa\noff.button=Zima\nswitch.input.button=Badilisha Kiingizo\ngeneral.options.heading=Kiujumla\ndisplay.options.heading=Uonyesho\nbible.options.heading=Bibilia\ncheck.for.update.label=Tafuta visasisho wakati wa kuwashwa\n1.monitor.warn.label=Onya kama kiwaa kimoja tu kimeunganishwa\ncapitalise.start.line.label=Weka kwenye herufi kubwa kibambo cha kwanza cha kila mstari\none.line.mode.label=Onyesha mstari moja kama kihakiki cha kifungu\ndisplay.song.info.label=Onyesha taarifa ya wimbo\ntext.border.thickness.label=Unene wa ukingo wa matini\nmax.chars.line.label=Idadi ya juu ya vibambo kwa mstari\nadvanced.label=Kiwango cha juu\nok.button=Sawa\noutput.text=Towe\ncontrol.screen.label=Skrini dhibiti\nprojector.screen.label=Skrini towe\nstage.screen.label=Skrini jukwaa\ncustom.position.text=Sehemu Maalum\ndefault.bible.label=Chaguo-Msingi\nmax.verses.label=Maximum verses to display at once=Idadi ya juu ya aya kuonyesha pamoja\nadd.bible.label=Add bible...=Ongeza Bibilia...\nnone.text=Hakuna chochote\nnew.schedule.button=Ratiba Mpya\nopen.schedule.button=Fungua Ratiba\nsave.schedule.button=Hifadhi Ratiba\nsave.as.schedule.button=Hifadhi Ratiba kama...\nprint.schedule.button=Chapisha Ratiba\noptions.title=Chaguo\noptions.button=Chaguo\nexit.button=Toka\nnew.schedule.text=Ratiba Mpya\ncreate.new.schedule.text=Tengeneza ratiba mpya\nopen.schedule.text=Fungua Ratiba\nopen.existing.schedule.text=Fungua ratiba iliyopo\nsave.schedule.text=Hifadhi Ratiba\nsave.schedule.disk.text=Hifadhi ratiba kwa diski\nsave.as.schedule.text=Hifadhi Ratiba kama\nsave.as.schedule.disk.text=Hifadhi ratiba kama faili tofauti\nprint.schedule.text=Chapisha Ratiba\nprint.current.schedule.text=Chapisha ratiba ya sasa\noptions.text=Chaguo\ndisplay.options.text=Onyesha kisanduku kidadisi\nexit.text=Toka Quelea\nquit.quelea.text=Toka kutoka Quelea\nlibrary.image.heading=Picha\nlibrary.songs.heading=Nyimbo\nlibrary.bible.heading=Bibilia\nbible.heading=Bibilia\nlibrary.song.search=Tafuta\nclear.search.box=Futa utafiti\nadd.song.text=Ongeza wimbo kwenye ratiba\nremove.song.text=Ondoa wimbo kwenye ratiba\nlibrary.add.to.schedule.text=Ongeza kwenye ratiba\nlibrary.edit.song.text=Hariri wimbo\nlibrary.remove.song.text=Ondoa wimbo\nlibrary.print.song.text=Chapisha wimbo\nadd.to.schedule.text=Ongeza kwenye ratiba\norder.service.heading=Utaratibu wa Ibada\nmove.down.schedule.tooltip=Sogeza chini kwenye ratiba\nmove.up.schedule.tooltip=sogeza juu kwenye ratiba\nremove.song.schedule.tooltip=Ondoa kwenye ratiba\nadjust.theme.tooltip=Rekebisha mandhari\nedit.song.text=Hariri wimbo\nnew.theme.text=Mandhari mpya...\ntheme.select.text=Chagua mandhari:\ndefault.theme.name=Chaguo-msingi\ndefault.theme.text=Mandhari iliyo chaguo-msingi\nremove.theme.tooltip=Ondoa mandhari\nedit.theme.tooltip=Hariri mandhari\nedit.theme.heading=Hariri mandhari\npreview.heading=Hakiki\nlive.heading=Hewani\ngo.live.text=Peleka hewani\nblack.screen.tooltip=Skrini nyeusi\nclear.text.tooltip=Futa skrini\nhide.display.output.tooltip=Ficha onyesho towe\nschedule.heading=Ratiba\nadd.song.button=Ongeza wimbo\nedit.song.button=Hariri wimbo\nremove.item.button=Ondoa kipengee\nadd.multimedia.heading=Ongeza Media-Anuai\nadd.presentation.button=Ongeza Wasilisho\nadd.video.button=Ongeza Video\nadd.youtube.button=Ongeza Video ya Youtube\nadd.live.video.button=Ongeza Live Video\nadd.dvd.button=Ongeza DVD\nadd.audio.button=Kisikizi\nadd.audio.tooltip=Ongeza Kisikizi\nshare.heading=Gawiza\nemail.button=Tarifalisha Ratiba\nmanage.notices.button=Simamia Taarifa...\nnotices.heading=Taarifa\nnew.notice.text=Taarifa Mpya\nedit.notice.text=Hariri Taarifa\nremove.notice.text=Ondoa Taarifa\ndone.text=Imefanyika\nnew.notice.heading=Taarifa Mpya\nnotice.text=Taarifa\nnotice.times.text=Nyakati za Kuonyesha\nnotice.infinite.question=Milele?\nadd.notice.button=Ongeza taarifa\nedit.notice.button=Hariri taarifa\nyes.text=Ndio\nno.text=La\ncancel.text=Katisha\nnew.song.button=Wimbo Mpya\ndelete.song.button=Futa Wimbo\nsongs.heading=Nyimbo\ntags.button=Simamia lebo...\nsource.button=The Source\neasyslides.button=EasySlides\neasyworship.button=EasyWorship 2009\nplainText.button=Matini ghafi\nkingsway.button=Kingsway Online\nsof.button=Songs of Fellowship\nexport.heading=Hamisha\nfilter.tag=Lebo za uchujaji\ntags.colon.label=Lebo\nimport.button=Letesha\nclick.select.file.text=Bofya kuchagua faili\ncheck.duplicates.text=Kagua zilizo na nakala\nedit.song.title=Hariri wimbo\nbasic.information.heading=Taarifa msingi\ndetailed.info.heading=Taarifa ya kina\ntheme.heading=Mandhari\ntitle.label=Kichwa\nauthor.label=Mwandishi\nrun.spellcheck.label=Spellcheck\nfix.apos.label=Safisha ritifaa\ntrim.lines.tooltip=Pogoa mistari\ntranspose.tooltip=Pindua...\ncancel.button=Katisha\nccli.number.label=Nambari ya CCLI\ncopyright.label=Hakimiliki\nyear.label=Mwaka\npublisher.label=Mchapishaji\ntags.label=Lebo\ntype.tag.name.here.text=<Andika majina ya lebo hapa>\nkey.label=Kifunguo\ncapo.label=Capo\nnotes.label=Vidokezo\nfont.theme.label=Matini\nchoose.color.text=Chagua rangi...\nbackground.text=Mandharinyuma\nbackground.theme.label=Mandhari ya mandharinyuma\ncolor.theme.label=Rangi\nimage.theme.label=Picha\nselect.color.title=Chagua Rangi\nselect.color.button=Chagua Rangi\nnew.song.title=Wimbo Mpya\ntype.lyrics.here.text=Andika maneno hapa\nrtf.files.description=Faili za RTF\nsng.files.description=Faili za SNG (SongBeamer)\nsof.import.line1=Hii italetesha faili za SoF kutoka kwenye faili ya RTF.\nplaintext.import.line1=Hii italetesha maktaba ya nyimbo kutoka kwenye folda iliyo na faili za matini ghafi za nyimbo.\nkingsway.import.line1=Hii italetesha maktaba ya nyimbo ya Kingsway kutoka mtandaoni.\nsongpro.import.line1=Hii italetesha nyimbo kutoka hifadhidata ya Songpro SDB.\nkingsway.import.line2=Hii inaweza kuchukua muda mrefu (labda hata masaa!), kwa hivyo, tafadhali subiri na uwache Quelea ikiwa wazi!\neasyslides.import.line1=Hii italetesha nyimbo kutoka faili ya XML ya EasySlides.\neasyworship.import.line1=Hii italetesha nyimbo kutoka faili aina ya Songs.MB ya Easyworship\nopenlyrics.import.line1=Chagua pahali palipo na nyaraka ya maneno ya openlyrics hapo chini.\nqsp.import.line1=Chagua pahali palipo na fungasha ya nyimbo za Quelea hapo chini.\nos.import.line1=Chagua pahali palipo na hifadhidata ya Opensong hapo chini.\nzw.import.line1=Chagua pahali palipo na \"MainTable.dat\" ya ZionWorx hapo chini.\nzw.import.line2=Kwa kawaida, inawezapatikana kwa \"C:\\\\ProgramData\\\\ZionWorx\\\\2.6\\\\Data\".\nolp.import.line1=Chagua pahali palipo na hifadhidata ya OpenLP hapo chini.\nsundayplus.import.line1=Chagua pahali palipo na hifadhidata ya \"Sunday Plus\" hapo chini.\nsource.import.line1=Chagua pahali palipo na folda ya ymns kwenye CD asilia.\nsurvivor.import.line1=Chagua pahali palipo na PDF ya Songbook ya Survivor hapo chini.\nsurvivor.import.line2=Hii lazima iwe ile faili ya acetates.pdf, sio laini za gitaa ama muziki wa shiti.\nimport.error.message=Pole, kulikuwa na shida na uleteshaji. Uko huru kuitisha usaidizi kwenye kundi la Quelea: https://quelea.discourse.group\nemail.error.title=Kosa la barua pepe\nemail.error.text=Kulikuwa na kosa katika kufungua programu ya barua pepe. Hakikisha kuwa programu hiyo imesakinishwa na imesajilishwa kuzingatia faili za eml, la sivyo, itabidi utume barua kwa njia zako mwenyewe.\nemail.text=Vipi! Kilichoambatishwa ni ratiba ya Quelea ambayao umetumiwa. Ifungue tu na Quelea na vipengee vyote vitaonekana sawa.\nselect.image.button=Chagua Picha\nimage.files.description=Faili za picha\npng.files.description=Faili za picha za PNG\ntools.label=Zana\nselect.songs.title=Chagua Nyimbo\ncheck.uncheck.all.text=Tiki/Toa zote\ndelete.theme.confirm.title=Thibitisha ufutaji?\ndelete.theme.question=Kwa kweli, futa mandhari hii?\ntoo.many.verses.error=Pole, kuonyesha aya hizi zote haiwezekani... Tafadhali jaribu nambari ndogo zaidi.\none.monitor.warning=Ni kana kwamba unayo skrini moja tu. Hii ni sawa kama unatumia Quelea kutayarisha ratiba tu lakini kama utaitumia kwa mipangilio live, unahitaji skrini mbili ili ifanye kazi vizuri.\none.monitor.title=Skrini moja tu\nno.dvd.heading=Diski haipatikani\nno.dvd.error=Tafadhali chomeka DVD au Blu-ray nzuri.\nadding.presentation.status=Inaletesha wasilisho\nadding.presentation.error.message=Palitokea kosa katika kuletesha wasilisho, labda imeharibika?\nadding.presentation.error.title=Kosa katika kuletesha wasilisho\nimporting.status=Inaletesha\nname.label=Jina\nsimilar.colors.text=Umechagua rangi zinazofanana sana kama maneno na mndharinyuma na itakuwa ngumu kwa halaiki kuona vizuri. Ni vizuri kuchagua rangi zingine.\nwarning.label=Onyo\nfile.menu=Faili\ntools.menu=Vifaa\nschedule.menu=Ratiba\ndatabase.menu=Hifadhidata\nprojector.menu=Kionyeshaji\nnew.theme.title=Mandhari Mpya\nadd.theme.label=Ongeza Mandhari\ntheme.name.label=Jina ya Mandhari\nhelp.menu=Usaidizi\nhelp.menu.website=Tovuti\nhelp.menu.discussion=Usaidizi / Majadiliano (uliza maswali hapa)\nhelp.menu.download=Pakua\nhelp.menu.update=Tafuta visasishi\nhelp.menu.about=Kuhusu...\nhelp.menu.error.title=Hitilafu\nhelp.about.title=Kuhusu\nhelp.about.version=Toleo\nhelp.about.close=Funga\nhelp.about.line1=Quelea imepewa leseni chini ya GPL (Toleo la 3.)\nhelp.about.line2=Ni bure, na daima itakuwa programu ya bure.\nnew.schedule.tooltip=Ratiba Mpya\nopen.schedule.tooltip=Fungua Ratiba\nsave.schedule.tooltip=Hifadhi Ratiba\nprint.schedule.tooltip=Chapisha Ratiba\nnew.song.tooltip=Wimbo Mpya\nadd.presentation.tooltip=Ongeza Wasilisho\nadd.dvd.tooltip=Ongeza DVD\nadd.video.tooltip=Ongeza Video\nmanage.tags.tooltip=Simamia Lebo\nmanage.notices.tooltip=Simamia Taarifa\nalready.running.error=Inaokena kwamba tayarikipindi cha Quelea kinachofanya kazi.\\nHakikisha kwamba umefunga vipindi vyote vingine kabla ya kufungua programu.\nalready.running.title=Tayari inafanya kazi.\nerror.schedule.message=Kulikuwa na tatizo katika kufungua ratiba. Labda imeharibika, ama si ratiba iliyoundwa na Quelea.\nerror.schedule.title=Tatizo katika kufungua ratiba\nprint.chords.question=Shirikisha mistari ya nyimbo katika uchapishaji wa wimbo huu? \nprint.chords.export.question=Shirikisha mistari ya nyimbo katika uhamishaji wa nyimbo hizi?\nprinting.options.text=Chapisha wimbo\nspace.key=nafasi\nupdating.db=Sasisha Hifadhidata\nerror.updating.song.text=Kulikuwa na hitifalu katika kusasisha wimbo huo kwenye hifadhidata, inaweza kuwa ni mbaya.\nerror.text=Hitilafu\nquick.shortcut.description=Escape kukatiza, Shift+Enter kuhifadhi\nsave.before.exit.text=Ratiba imebadilika. Hifadhi kabla kufunga?\nsave.before.exit.title=Ratiba isiyohifadhiwa\nno.chords.message=Wimbo huu hauna mistari yoyote ya nyimbo kupindua.\nno.chords.title=Hakuna mistari ya nyimbo\nerror.checking.updates.title=Utafutaji wa visasisho haukukamilika\nerror.checking.updates.text=Pole, kulikuwa na kosa katika kutafuta visasishi. Tafadhali zingatia muunganisho wako kisha jaribu tena.\nnewer.version.available=Kuna toleo jipya la Quelea imeyopatikana\nno.newer.version.available=Unatumia toleo la mwisho la Quelea\nvisit.webpage.now=Tembelea tovuti sasa ili kuipakua?\ndownload.manual.update=Unaweza kuipakua hapa\nnewer.version.available.title=Sasisho imepatikana\nno.newer.version.available.title=Tayari imesasishwa!\ncheck.kingsway.start=Tayari umeshaletesha baadhi ya vipengee kutoka maktaba ya Kingsway. Je, ungependa kuanza uleteshaji kutoka ulipowachia? \ncheck.kingsway.start.title=Vipenge vilivyoleteshwa tayari\nimport.no.songs.title=Hakuna nyimbo zilizopatikana\nimport.no.songs.text=Hakuna nyimbo zozote zilizopatikana kuleteshwa.\nstage.options.heading=Muonekano wa Jukwaa\nstage.show.chords=Onyesha mistari ya nyimbo?\nstage.line.alignment=Mpangilio wa Matini\nstage.font.selection=Matini\nstage.background.colour=Rangi ya Mandharinyuma\nstage.lyrics.colour=Rangi ya Maneno\nstage.chord.colour=Rangi ya Mistari ya Nyimbo\nleft=Kushoto\ncentre=Katikati\nright=Kulia\nconfirm.label=Una hakika?\nschedule.clear.text=Ratiba imebadilishwa. Endelea bila kuhifadhi?\npart=sehemu\nhelp.menu.facebook=Ukurasa wa Facebook\nvideo.error=Kuanzilisha maktaba ya video haikuwezekana - video haitafanya. Tafadhali uliza kwenye orodha ya majadiliano (ona menyu ya usaidizi) kupata usaidizi kutatua jambo hili.\nvideo.error.title=Hitilafu ya video\ntext.shadow.label=Onyesha kivuli cha matini\nadding.images=Picha zinaongezwa\nsetup.oo.failed.text=Muundo wa OpenOffice wa kuonyesha mawasilisho ulikosa. Tafadhali hakikisha una OpenOffice imesakinishwa na anwani uliyopea ni sawa.\nsetup.oo.failed.title=OpenOffice haikuanza.\nuse.oo.label=Tumia OpenOffice kwa mawasilisho\noo.path=Anwani ya OpenOffice\nbrowse=Vinjari...\nloading.text=Inapakia\nbuilding.bible.index=Bibilia zinapakiwa\nbible.search.title=Kitafutaji-Bibilia\ninitial.search.text=<Andika hapa ili kutafuta>\nview.bible.button=Tazama bibilia...\nsearch.bible.button=Tafuta bibilia\nall.text=Zote\nbible.browser.title=Vinjari Bibilia\nopen.in.browser=Fungua Kwenye Kivinjari...\nkingsway.button.all=Nyimbo Zote\nkingsway.button.one=Wimbo Moja\nsong.id.selector=Tafadhali chagua ID ya wimbo\nbible.copy.error.text=Pole, kulikuwa na kosa kunakili bibilia hadi mpangili orodha unaohitajika\nbible.copy.error.heading=Hitilafu\nselect.key.label=Chagua kifunguo kipya:\ntranspose.label=Pindua\nalready.exists.overwrite.label=tayari ipo. Andikisha upya?\noverwrite.text=Andikisha upya?\ncant.save.schedule.title=Hitilafu katika kuhifadhi ratiba\ncant.save.schedule.text=Pole, kosa lilitokea na ratiba haikuweza kuhifadhiwa.\nerror.removing.song.db=Kulikuwa na kosa katika kutoa wimbo kwenye hifadhidata\nconfirm.remove.text=Hakikisha utoaji\nconfirm.remove.question=Kwa kweli, toa $1 kutoka kwenye hifadhidata?\nquick.edit.text=Hariri ya Haraka\nlibrary.preview.song.text=Hakiki wimbo\nvideo.error.unsupported=Pole, video uliyochagua haikubaliki.\nvideo.error.general=Pole, kuna kosa kwenye faili ya video uliyochagua\nvideo.theme.label=Video\nselect.video.button=Chagua Video\nrefresh.images.panel=Onyesha Picha Upya\nadd.images.panel=Ongeza Picha\nselect.folder.images.panel=Chagua Folda...\ntext.position.label=Sehemu ya Matini\nimage.folder=Folda ya Picha:\nquick.insert.text=Ingizio la Haraka\nconfirm.overwrite.title=Faili tayari ipo!\nconfirm.overwrite.text=Faili tayari ipo. Je, ungependa kuibadilisha bila kunakili?\nfile.rename.button=Badilisha jina\nfile.replace.button=Badilisha\nfile.continue.button=Endelea\nfile.rename.dialog.title=Badilisha jina\nfile.rename.dialog.text=Tafadhali andika jina mpya ya faili:\ninterface.language.label=Lugha ya kiolesura:\nlanguage.changed=Lugha Imebadilishwa\nlanguage.changed.message=Unapaswa kuanzisha Quelea upya kabla mabadiliko ya lugha yatendeke\ndebug.location=Pahali pa Batli ya Kueua\ntop.text.position=Juu\nmiddle.text.position=Katikati\nbottom.text.position=Chini\nshadow.color=Rangi ya Kivuli\nshadow.x=X Offset ya Kivuli\nshadow.y=Y Offset ya Kivuli\nselect.imported.songs.line1=Nyimbo zifuatazo zimeleteshwa.\nselect.imported.songs.line2=Chagua zile ungezotaka kuongeza kwenye hifadhidata, kisha bonyeza \"Ongeza\".\nselect.imported.songs.line3=Nyimbo ambazo Quelea inafikiri zimerudiwa.\nadd.text=Ongeza\nadd.to.database.question=Ongeza kwenye hifadhidata?\nselect.export.songs.line1=Nyimbo zifuatazo ziko kwenye hifadhidata.\nselect.export.songs.line2=Chagua zile ungezopenda kuhamisha, kisha bonyeza \"Ongeza\"\nadd.to.songpack.question=Hamisha wimbo?\nprojection.window.title=Dirisha la Kionyeshaji\nclear.live.on.remove.schedule=Futa kipengee kutoka mwonekano wa live kinapotolewa kwenye ratiba\nspelling.complete.text=Kiangalia muktadha kimekamilika.\ncomplete.title=Tayari\nspelling.check.title=Kiangalia-muktadha\ncorrect.text=Sahihi\nignore.text=Puuza\nspelling.errors.in.doc.label=Kuna kosa za muktadha kwenye waraka. Bonyeza \"F7\" kufungua kidadisi cha kusahihisha.\nremove.image.text=Ondoa Picha\ndelete.image.title=Futa Picha\ndelete.image.confirmation=Kweli, ondoa picha hii kutoka maktaba?\nnotice.expired.title=Taarifa imeisha\nnotice.expired.text=Taarifa unayohariri imeisha. Je, ungependa kuiongeza tena?\ndictionary.language.text=Lugha ya Kamusi\nconfirm.entry.exit.text=Je, ungependa kuhifadhi mabadilisho yako ya wimbo huu?\nconfirm.entry.exit.title=Hifadhi wimbo?\nsave.text=Hifadhi\ndont.save.text=Usihifadhi\nvlc.warning.title=VLC haikupatikana\nvlc.warning.message=Quelea haikuweza kupata VLC kwenye mfumo wako. Bila VLC, Quelea haitaweza kucheza video na visauti, wala kuonyesha nyimbo zenye mandharinyuma ya video. Je, ungependa kuipakua saa hii? Utapaswa kuanzisha Quelea upya baada ya kuisakinisha ili mabadiliko yaonekane.\nvlc.version.message=Toleo lako la VLC ni nzee sana. Itakubidi upakue toleo la mwisho ili kucheza video na visauti, na kuonyesha mandharinyuma ya video. Je, ungependa kuipakua saa hii? Utapaswa kuanzisha Quelea baada ya kuisakinisha ili mabadiliko yaonekane.\ncontinue.without.video=Endelea bila VLC\ndownload.vlc=Pakua VLC\nstartup.error.title=Hitilafu katika Kuanza\nstartup.error.text=Pole, Quelea haikuweza kuanza kwa sababu moja au nyingine iliyopo kwenye mfumo wako. Kama ungetaka usaidizi kuifanya ianze, tafadhali tuma barua pepe kwenda kwa support@quelea.org ukiambatisha faili ya batli ya kueua ($1).\\n\\nPia, uko huru kuuliza kwenye kikundi cha majadiliano (https://quelea.discourse.group).\nfilefilters.description.survivor.songbook=Faili ya Survivor acetates\nfilefilters.description.xml.bibles=Bibilia za XML\nfilefilters.description.xml.easyslide=Faili za XML za Easyslide\nfilefilters.description.xml.files=Faili za XML\nfilefilters.description.video.files=Faili za Video\nfilefilters.description.audio.files=Faili za Visikizi\nfilefilters.description.quelea.schedules=Ratiba za Quelea\nfilefilters.description.powerpoint.presentations=Viwasilisho vya Powerpoint\nfilefilters.description.plain.text.song=Wimbo wa matini ghafiPlain text song\nfilefilters.description.maintable.dat=Faili ya hifadhidata ya ZionWorx MainTable\nbible.search.results.found=matokeo yamepatikana\nbible.search.result.found=tokeo imepatikana\nbible.search.keep.typing=Endelea kuandika...\nuniform.font.size.label=Tumia ukubwa mmoja wa matini\nmax.font.size.label=Ukubwa wa juu wa matini\nadditional.line.spacing.label=Umbali zaidi wa mistari\nlogo.screen.tooltip=Left-click display - Right-click set\nchange.graphics.label=Badilisha Michoro\nfont.colour.label=Rangi ya Matini\nbackground.colour.label=Rangi ya mandharinyuma\nmobile.lyrics.heading=Maneno ya Simu\nuse.mobile.lyrics.label=Tumia Maneno ya Simu\nport.number.label=Nambari ya Kituo Tarishi\nnavigate.mob.url.label=Utambulisho Nyezo Linganifu ya Maneno ya Simu\nserver.changed.label=Mipangilio ya Seva Imebadilika\nserver.changed.message=Itakubidi uanzishe Quelea upya ndipo mipangilio mipya ya seva yatokee.\nfilefilters.description.zip.files=Faili za Zip\nfilefilters.description.sqlite.files=Faili za SQLite\nloop.label=Rejeleza\nseconds.label=sekunde\nchosen.fonts.explanation=Quelea huonyesha tu baadhi ya matini kwenye dirisha la mandharinyuma. Kokota matini utumiayo kutoka paneli ya kushoto hadi ya kulia, na yale usiyoyatumia kutoka paneli ya kulia hadi ya kushoto.\nignored.fonts.label=Matini puuzi\nchosen.fonts.label=Matini chaguzi\nfont.selection.dialog.title=Chaguo la Matini\nvideo.hue.label=Hue\nhover.for.position.label=Ambaa juu ya turubai kutega sehemu ya matini\ntest.patterns.text=Ruwaza za Upimaji\ntest.patterns.explanation=Ruwaza za upimaji zilizopo hapa zinafaa kukusaidia kulengesha onyesho lako, na kuweka rangi zake sawia. Bofya picha kipimishaji ili kuionyesha kwenye mwonekano mkuu na mwonekano wa jukwaa.\nyoutube.url.label=Utambulisho Nyezo Linganifu ya video ya Youtube\nno.tdb.heading=TurboDB Data Exchange haikupatikana\nno.tdb.message=Kwa sababu za kiteknolojia, unafaa kupakua TurboDB data exchange (https\\://www.dataweb.de/en/support/downloads.html) kabla Quele iweze kuletesha hifadhidata za ZionWorx.\\nUkishaipakua, sindika yaliyomo kwenye faili zip hadi 1.\\n\\nUkipata kosa, kuwa huru kuuliza kwenye kikundi cha mjadala (https://quelea.discourse.group).\nno.pdb.heading=Kiendeshaji cha Paradox JDBC hakikupatikana\nno.pdb.message=Kwa sababu za kiteknolojia, unafaa kupakua kiendeshaji cha Paradox JDBC kabla Quelea iweze kuletesha hifadhidata za Easyworship kwa ufani:\\n\\n1. Nenda http://www.hxtt.com/download.jsp halafu jisajilishie akaunti ya bure ili kuendelea.\\n2. Pakua faili ya \"DBF JDBC 4.1 Package for JDK1.7.X and JDK1.8.X\". Inafaa iitwe Paradox_JDBC41.jar.\\n3. Nakili Paradox_JDBC41.jar hadi $1.\\n\\nUkipata kosa, kuwa huru kuuliza kwenye kikundi cha mjadala (https://quelea.discourse.group). Hata hivyo, Quelea itajaribu kuletesha hifadhidata hiyo ya Easyworship bila faili hii ikiwepo, lakini matokeo yasiyotarajika yanaweza kutokea.\nshow.verse.numbers=Onyesha hesabu za aya\nadd.song.hint.text=Hakuna nyimbo zozote hapa kwa sasa, lakini usitishike! Kuongeza wimbo, bonyeza kitufe cha \"Wimbo Mpya\" hapo kushoto.\nadd.song.hint.search.text=Kwa sasa, hakuna nyimbo hapa zinazolingana na utafutaji huu. Kuongeza wimbo, bonyeza kitufe cha \"Wimbo Mpya\" hapo kushoto.\nfilefilters.description.songs.mb=Hifadhidata ya Easyworship Songs.MB\ntranslate.tooltip=Tafsiri za nyimbo\nclose.button=Funga\nadd.translation.button=Ongeza tafsiri...\nenter.translation.name.label=Ungependa kutafsiri hadi lugha ipi?\ntranslate.dialog.title=Msimamizi wa tafsiri\nconfirm.remove.translation.title=Futa tafsiri?\nconfirm.remove.translation.text=Futa tafsiri hii kwa ukweli?\ndefault.translation.label=Tafsiri la chaguo-msingi\noverwrite.lyrics.title=Futa maneno ambayo tayari yalipo ili kutumia mapya?\noverwrite.lyrics.text=Tumekutafsiria maneno kiotomatiki - je, ungependa kuzitumia?\\nTafsiri yako iliyopo itafutwa na kuandikiwa hii.\nauto.translate.label=Jaribu kutafsiri nyimbo kiotomatiki\nchoose.translations.text=Chagua tafsiri\nselect.translation.label=Chagua tafsiri ambayo ungetaka kuonyesha pamoja na maneno ya chaguo-msingi:\ntranslate.heading=Matafsiri\nremote.logo.text=Logo\nremote.black.text=Nyeusi\nremote.clear.text=Futa\nremote.next.text=Slaidi ijayo\nremote.prev.text=Slaidi Iliyopita\nremote.nextitem.text=Kipengee Kijayo\nremote.previtem.text=Kipengee Kilichopita\nserver.settings.heading=Mipangilio ya Seva\nuse.remote.control.label=Tumia kidhibiti-safa\nnavigate.remote.control.label=URL ya kidhibiti-safa\nremote.empty.lyrics=Maneno yataonyeshwa hapa\nremote.control.password=Nywila ya kidhibiti-safa (Herufi huzingatiwa)\nremote.logout.text=Aga\nremote.login.text=Tafadhali ingia ili kuendelea\nremote.submit.text=Ingi\nmore.font.options.label=Chaguo zaidi za matini\nmore.fonts.label=Matini zaidi\ntranslation.font.text=Matini ya tafsiri\nshadow.text=Kivuli\nsaving.schedule=Ratiba inahifadhiwa...\nsmall.text.position.label=Sehemu ya taarifa ya nyimbo na Bibilia\nbible.passage.selector.prompt=[Mlango]:[Mstari]-[Mstari]\ntheme.button.tooltip=Weka mandhari ya ratiba nzima\ncurrently.displaying.text=Kwa sasa, inaonyesha\nplay=Chezesha\npause=Sitisha\nshow.small.song.text.label=Onyesha taarifa ndogondogo kuhusu nyimbo\nshow.small.bible.text.label=Onyesha taarifa ndogondogo kuhusu aya za Bibilia\nuse.bible.verses=Gawanya aya za Bibilia kwa\nmax.items.per.slide=Idadi ya juu ya % kwa kila slaidi\nverses=aya\nwords=maneno\nedit.bible.passage.text=Hariri Mandhari ya Aya\nnotice.colour.text=Rangi ya Taarifa\nnotice.font.text=Matini ya Taarifa\nnotice.speed.text=Kasi ya taarifa\nnotice.background.colour.text=Rangi ya mandharinyuma ya taarifa\nnotice.position.text=Sehemu ya taarifa\nnotice.font.size=Ukubwa wa fonti wa taarifa\nnotice.options.heading=Taarifa\nexport.pdf.button=Hamisha hadi PDF\npdf.button=PDF\nexport.schedule.pdf.button=Hamisha utaratibu wa ibada hadi PDF\nfilefilters.description.pdf.files=Faili za PDF\nnot.started.label=Bado kuanzishwa\nquelea.schedule.text=Ratiba ya Quelea\nuser.options.options=Chaguo za Mtumiaji\ntext.options.options=Chaguo za Matini\nstretch.video.label=Nyoosha video\nexport.schedule.songs.pdf.button=Hamisha nyimbo hadi PDF\nexporting.label=Inahamisha\nuse.shadow.label=Tumia Kivuli?\nshadow.color.label=Rangi ya Kivuli\nshadow.offset.label=Offset ya Kivuli\nshadow.radius.label=Radius ya Kivuli\nshadow.spread.label=Enezi ya Kivuli\nhelp.menu.manual=Mwongozo\nedit.theme.text=Hariri mandhari\nchange.bible.version.text=Badilisha toleo\nswitch.to.text=Badili hadi\nsave.qr.code.text=Hifadi Msimbo wa QR\nnonbreak.tooltip=Ongeza mstari usiovunjika\ncopying.video.please.wait.text=Tulia kidogo - faili-video inanakiliwa\ntranslating.text.please.wait.text=Tulia kidogo - tafsiri inachopokwa...\nfilefilters.description.usr.files=Faili za USR (SongSelect)\nsongselect.import.line1=Chagua faili za SongSelect hapo chini.\nsongselect.button=SongSelect\ntranslation.export.heading=Hamisha tafsiri\ninclude.translations.question=Ongeza tafsiri zilizo kwenye faili ya PDF?\nslide.text=Slaidi\nautoplay.vid.label=Chezesha video kiotomatiki kwenye paneli live\nadvance.on.live.label=Sogeza ratiba mbele onyesho ikiwekwa hewani\ndelete.translation.title=Futa tafsiri\ndelete.translation.text=Futa tafsiri la $1\nhelp.menu.wiki=Wiki\npreview.on.image.change.label=Hakiki kipengee picha ibadilikapo\nadd.timer.tooltip=Ongeta kihesabisha-chini\nfilefilters.description.image.video.files=Faili za Video na Sauti\ntimer.duration.label=Muda wa kuhesabu kwenda chini\ntimer.file.label=Pahali palipo na faili ya mandharinyuma\nduration.tooltip.label=#:## or ##m##s\ntranslation.choice.title=Uteuzi wa tafsiri\nfont.options.title=Chaguo za Fonti\nnew.translation.title=Tafsiri Mpya\nadd.timer.title=Ongeza timer\nuntitled.theme.text=Mandhari isiyo na jina\ntimer.text.label=Matini zaidi\ntimer.text.prompt=Tumia # kupimia timer, k.m. \"Misa itaanza kwa dakika #\" itaonyesha \"Misa itaanza kwa 05:00\"\ncountdown.label=Timer ya kuhesabu kwenda chini\ntimer.theme.label=Mipangilio ya mandhari\ntimer.theme.button=Badilisha mandhari\nembed.media.in.schedule=Pachika midia kwenye faili ya ratiba\nmediashout.import.line1=Chagua pahali palipo hifadhidata ya MediaShout (iliyohamishwa hadi umbizo wa txt) hapo chini:\nsongbeamer.import.line1=Chagua pahali palipo faili za SNG unazotaka kuleteshaa hapo chini: \nfilefilters.description.txt.files=faili za .txt\nmediashout.button=MediaShout\nsongbeamer.button=SongBeamer\nclear.stage.view=Futa Stage View kutumia Main Display\ntop=Juu\nbottom=Chini\nepicworship.import.line1=Hii italeteshaa nyimbo kutoka faili ya furushi la EpicWorship (.epc)\nfilefilters.description.epc=Furushi la wimbo za EpicWorship .epc\nepicworship.button=EpicWorship\nadd.videos.panel=Ongeza Videos\nremove.video.text=Ondoa Video\ndelete.video.title=Futa Video\ndelete.video.confirmation=Una hakika ungependa kutoa video hii kutoka maktaba? Tendo hili haliwezi kutenduliwa.\nlibrary.video.heading=Video\ntimer.files.description=Hesabu timers kuenda chini\nadd.timers.panel=Ongeza Timers\nlibrary.timer.heading=Timers\ntimer.save.label=Hifadhi timer?\ntimer.name.label=Jina\nedit.timer.text=Hariri Timer\nremove.timer.text=Futa Timer\nconfirm.remove.timer=Una hakika ungependa kutoa $1 kutoka orodha ya timer? Tendo hili haliwezi kutenduliwa.\nkingsway.button.range=Upana\nkingsway.range.import.text=Enter the range of song pages to download from Kingsway's website.\\nThe current maximum number of pages is around 3600.\nkingsway.range.import.heading=Letesha masafa ya nyimbo za Kingsway\nsdb.files.description=Faili za hifadhidata za Songpro\nsongpro.button=SongPro\noverflow.song.label=Ongeza wimbo uliopo kwenye wimbo ufuatao\ninvalid.search=Utafiti Batili\nrcs.add.failed=Ongezeo kulikosa\nrcs.add.success=Ongezeo ulifanikika\nrcs.add.song=Ongeza Wimbo kwenye Ratiba \nrcs.add.bible.error=Palitokea kosa kwenye kuongeza $1 kwenye ratiba\nrcs.submit=Wasilisha\nrcs.song.search=Wimbo\nrcs.bible.search=Bibilia\nrcs.search=Tafuta na Ongeza\nshow.video.library.panel=Onyesha kichupo cha Maktaba ya Video (huhitaji uwashaji upya)\nuse.24h.clock=Tumia saa ya masaa 24\nsplit.bible.verses=Hifadhi aya kwenye slaidi zote\nno.verse.title=Hakuna aya iliyopatikana\nno.verse.message=Hatukuweza kupata mojawapo au zaidi ya aya zilizobainishwa na tumejaribu kuendelea bila aya hizo."
  },
  {
    "path": "Quelea/languages/us.lang",
    "content": "#THIS IS AN AUTO GENERATED FILE, AND WILL BE OVERWRITTEN EACH TIME QUELEA IS REBUILT. DO NOT EDIT MANUALLY!\n#Sun May 27 09:40:18 BST 2018\nignore.text=Ignore\nimport.no.songs.text=Couldn't find any songs to import.\nlibrary.edit.song.text=Edit song\nrefresh.images.panel=Refresh Images\non.button=On\nsave.qr.code.text=Save QR Code\nolp.button=OpenLP\ncountdown.label=Countdown Timer\nlibrary.print.song.text=Print song\ndefault.theme.name=Default\nsdb.files.description=Songpro database files\nlogo.screen.tooltip=Left-click display - Right-click set\nadd.to.songpack.question=Export song?\none.monitor.title=Only one monitor\nmore.font.options.label=More font options\nhelp.menu=Help\ndetailed.info.heading=Detailed information\nnotice.infinite.question=Infinite?\ndelete.translation.text=Delete the $1 translation?\ncorrect.text=Correct\nvideo.error.general=Sorry, there was an error with the video file you selected.\noutput.text=Output\nedit.notice.button=Edit notice\nrecording.no.devices.message=Sorry, no compatible recording devices were found.\\nMake sure your recording device is plugged in and enabled.\nselect.export.songs.line2=Select the ones you want to export then hit \"Add\".\nfilefilters.description.quelea.schedules=Quelea Schedules\nselect.export.songs.line1=The following songs are in the database.\nsaving.schedule=Saving the schedule...\ndont.save.text=Don't Save\nadd.song.button=Add song\nnew.translation.title=New Translation\nremote.prev.text=Previous Slide\nnotice.expired.title=Notice expired\neasyworship.import.line1=This will import songs from an Easyworship Songs.MB file.\nbible.options.heading=Bible\nadvanced.label=Advanced\nos.import.line1=Select the location of the Opensong database below.\ntop=Top\ncentre=Centre\ncancel.button=Cancel\nserver.settings.heading=Server Settings\nuse.pp.label=Use PowerPoint for presentations\nsong.id.selector=Please select the song ID\ntranspose.tooltip=Transpose...\nremote.logo.text=Logo\nwebsite.dialog.header=Enter web page URL\nlibrary.songs.heading=Songs\ndownload.vlc=Download VLC\nselect.color.title=Select Color\nvideo.theme.label=Video\nworshiphim.import.line1=Select the location of the Worship Him db (in mdb format) below\\:\ndelete.video.title=Delete Video\nstage.font.selection=Font\nepicworship.import.line1=This will import songs from an EpicWorship Song Pack (.epc) file.\nsource.import.line1=Select the location of the ymns directory on the source CD.\nlibrary.image.heading=Images\nprint.schedule.text=Print Schedule\ndefault.translation=Default\nnewer.version.available.title=Update available\nfilefilters.description.maintable.dat=ZionWorx MainTable database file\nuniform.font.size.label=Use uniform font size\nclose.all.presentations.label=Close all open presentations\nsend.live.text=Live Text\nfilefilters.description.txt.files=.txt files\npreview.heading=Preview\nserver.changed.label=Server Settings Changed\nadd.pdf.tooltip=Add PDF\nlive.heading=Live\ncreate.new.schedule.text=Create a new schedule\nselect.video.button=Select Video\nsp.button=Sunday Plus\nedit.song.text=Edit song\nmediashout.import.line1=Select the location of the MediaShout db (exported to txt format) below\\:\nsplit.bible.verses=Keep verses whole across slides\nqsp.button=Quelea Song Pack\nprinting.options.text=Print song\nnotice.background.colour.text=Notice background color\ntimer.text.prompt=Use \\# to position timer, e.g. \"Service begins in \\#\" will display \"Service begins in 05\\:00\"\ncomplete.title=Complete\nprojector.screen.label=Projector screen\npp.already.running.label=PowerPoint is already running\nselect.color.button=Choose Color\nadd.theme.label=Add Theme\ncheck.kingsway.start=You've already imported some items from the Kingsway library. Do you want to start importing from where you left off?\nrcs.search=Search and Add\norder.service.heading=Order of Service\nadd.text=Add\nblack.screen.tooltip=Black screen\nremote.submit.text=Login\nerror.schedule.title=Error opening schedule\ninclude.translations.question=Include the translations in the PDF file?\ntags.button=Manage tags...\nthumbnail.size.label=Thumbnail size\nprojector.heading=Projector\npco.login.import.heading=Planning Center Online Login\ntext.shadow.label=Display text shadow\ndelete.theme.confirm.title=Confirm delete\ntimer.duration.label=Countdown duration\nvideo.error.unsupported=Sorry, the video file you selected isn't supported.\nautoplay.vid.label=Autoplay videos in live panel\npco.loginerror.warning=Failed to login, check email and password and try again\nadd.multimedia.heading=Add Multimedia\nnotices.heading=Notices\nbottom=Bottom\nworshiphim.button=Worship Him\nuse.remote.control.label=Use Remote Control\ntimer.theme.button=Change Theme\nadd.website=Add website\nremote.login.text=Please log in to continue\nswitch.input.button=Switch Input\ntools.menu=Tools\ntags.label=Tags\nfilefilters.description.audio.files=Audio files\nhelp.menu.error.title=Error\nkey.label=Key\ntranslation.font.text=Translation font\ncustom.position.text=Custom Position\nelevanto.button=Elevanto\nelevanto.import.heading=Elevanto\nelevanto.loginsuccess.message=You may close this window and return to Quelea\nelevanto.loginerror.warning=Error logging into Elevanto\npco.button=Planning Center Online\nprechorus.tooltip=Add pre-chorus title\nedit.song.title=Edit song\nrcs.bible.search=Bible\ntheme.heading=Theme\nslide.text=Slide\nfilefilters.description.usr.files=USR (SongSelect) files\nsof.import.line1=This will import the SoF library from an RTF file.\nzw.button=ZionWorx\nimportexport.options.heading=Import/Export\nlive.text.title=Live Text\nstartup.error.text=Sorry, Quelea couldn't start for some reason on your system. If you'd like help trying to get it to run, please shoot off an email to support@quelea.org and attach the debug log file ($1).\\n\\nAlternatively, feel free to ask on the Quelea discuss group (https\\://quelea.discourse.group/).\nshadow.color.label=Shadow Color\nstage.show.chords=Show chords?\nhelp.about.title=About\nnonbreak.tooltip=Add non-breaking line\nadd.bible.label=Add bible...\ndelete.bible.label=Delete current bible\ndelete.bible.confirmation=Do you really want to delete bible $1?\none.monitor.warning=Looks like you've only got one monitor installed. This is fine if you're just using Quelea to prepare some schedules but if you're using it in a live setting Quelea needs 2 monitors to work properly.\npublisher.label=Publisher\nimage.files.description=Image files\nemailaddress.text=Email\nadd.videos.panel=Add Videos\nadd.multimedia.tooltip=Add Multimedia\nnotice.text=Notice\ntimer.text.label=Additional Text\ndatabase.menu=Database\nquit.quelea.text=Exit from Quelea\npart=part\nremove.image.text=Remove Image\nfilefilters.description.pmsong.files=Presentation Manager Songs\nedit.song.button=Edit Song\nfont.colour.label=Font Color\ndefault.translation.label=Default translation\nquick.edit.text=Quick Edit\nnew.theme.title=New Theme\ncopying.video.please.wait.text=Hang on a moment - just copying the video file...\nadd.live.video.button=Add Live Video\ntranslating.text.please.wait.text=Hang on a moment - grabbing a translation...\noptions.title=Options\nrcs.song.search=Song\nsmi.import.line1=Select the Screen Monkey songs to import.\npresentation.not.started.message=Unfortunately, your presentation couldn't be started with PowerPoint. Maybe the file is corrupt?\nsof.button=Songs of Fellowship\ngeneral.options.heading=General\noff.button=Off\nfilefilters.description.survivor.songbook=Survivor acetates file\nstage.screen.label=Stage screen\nsave.schedule.button=Save Schedule\npp.path.label=Path to the PowerPoint program\nexit.text=Quit Quelea\nmanage.tags.tooltip=Manage Tags\nshow.video.library.panel=Show Video Library Tab (requires restart)\nsave.schedule.tooltip=Save Schedule\nwarning.label=Warning\ncontinue.without.video=Continue without VLC\nseconds.label=seconds\nmiddle.text.position=Middle\nhelp.about.line2=It is, and always will be, free and open source software.\nmanage.notices.tooltip=Manage Notices\nimport.button=Import\nhelp.about.line1=Quelea is licensed under the GPL (Version 3.)\npaste.label=Paste\nvideopsalm.button=VideoPsalm\ninterface.language.label=Interface language\\:\nremove.song.text=Remove song from database\nselect.songs.title=Select Songs\nadd.to.schedule.text=Add to Schedule\nmp.button=Mission Praise\nyear.label=Year\nsng.files.description=SNG (SongBeamer) files\nquelea.schedule.text=Quelea Schedule\nuntitled.theme.text=Untitled theme\nprint.current.schedule.text=Print the current schedule\nfilefilters.description.image.video.files=Video And Image Files\nadding.images=Adding images...\nsave.before.exit.title=Unsaved schedule\nopen.schedule.tooltip=Open Schedule\nright=Right\ndebug.location=Debug Log Location\nno.verse.message=We could not find one or more of the verses specified and have tried to continue without them.\nexport.pdf.button=Export to PDF\nsave.before.exit.text=The schedule has been modified. Save before quitting?\nhelp.menu.manual=Manual\nsetup.oo.failed.text=Failed to setup OpenOffice for displaying presentations. Please ensure you have OpenOffice installed and the path provided is correct.\ndelete.image.title=Delete Image\nvlc.warning.message=Quelea couldn't find VLC on your system. Without it, Quelea won't be able to play videos, audio, and show songs with video backgrounds. Do you want to download it now? You'll need to restart Quelea after you've installed VLC for the changes to take effect.\noverwrite.text=Overwrite\nremote.empty.lyrics=Lyrics will be displayed here\nyes.text=Yes\nyoutube.url.label=Youtube video URL\nselect.language=Select language\\:\nlibrary.bible.heading=Bibles\nfile.rename.dialog.title=Rename\nedit.notice.text=Edit Notice\nbrowse=Browse...\ntimer.file.label=Background file location\nbible.search.result.found=result found\nlibrary.song.search=Search\nnotice.expired.text=The notice you are editing has expired. Do you want to add it again?\nedit.bible.passage.text=Edit Passage Theme\nuse.mobile.lyrics.label=Use Mobile Lyrics\nimporting.status=Importing...\npause.record.tooltip=Pause Recording\nnotice.options.heading=Notices\nclose.button=Close\nadd.notice.button=Add notice\nshare.heading=Share\nsimilar.colors.text=You've chosen very similar colors for the words and background which will be hard for the congregation to see. I'd advise you choose better colors\\!\nadd.timer.tooltip=Add countdown timer\nfilter.tag=Filter tags\npassword.text=Password\nfile.continue.button=Continue\npco.import.heading=Planning Center Online\nerror.text=Error\nnone.text=None\ntheme.button.tooltip=Set a global theme for the schedule\nnew.notice.heading=New Notice\nno.chords.message=This song doesn't have any lines of chords to transpose.\nfocus.switcher.message=Toggle window focus here if needed during the presentation.\nexport.heading=Export\ngo.live.text=Go Live\npp.already.running.message=Another instance of PowerPoint was found. Please close all instances of PowerPoint before launching a presentation in Quelea to avoid data loss.\nkingsway.range.import.text=Enter the range of song pages to download from Kingsway's website.\\nThe current maximum number of pages is around 3600.\nuse.bible.verses=Split Bible passage slides by\ntext.position.label=Text Position\nname.label=Name\nremote.control.password=Remote Control Password (Case sensitive)\nsave.as.schedule.button=Save Schedule as...\ntimer.files.description=Countdown timers\nrecording.warning.message=You have to set a path for where the recordings should be stored in the options panel before you can start recording.\nmore.fonts.label=More fonts\nschedule.heading=Schedule\nfilefilters.description.xml.easyslide=XML Easyslide files\nadjust.theme.tooltip=Adjust theme\nfilefilters.description.vs.files=VideoPsalm databases\nlibrary.remove.song.text=Remove song\nolp.import.line1=Select the location of the OpenLP database below.\nedit.theme.heading=Edit theme\nconfirm.remove.translation.text=Really delete this translation?\nuser.options.options=User Options\nsave.as.schedule.text=Save Schedule as\nclear.text.tooltip=Clear screen\ntools.label=Tools\ncapo.label=Capo\nimage.folder=Image Folder\\:\nlibrary.add.to.schedule.text=Add to schedule\nadd.youtube.button=Add Youtube Video\nedit.theme.text=Edit Theme\nuse.shadow.label=Use Shadow?\nnavigate.mob.url.label=Mobile Lyrics URL\nadd.song.hint.text=No songs? No problem. To add a song, click the \"New Song\" button on the left.\nmax.font.size.label=Maximum font size\ncant.save.schedule.title=Error saving schedule\nport.number.label=Port Number\nenter.translation.name.label=What language would you like to translate to?\nuse.24h.clock=Use 24H Clock\nshadow.text=Shadow\nset.loop.manually.title=PowerPoint was not found\ndownload.manual.update=You can download it here\nsave.schedule.disk.text=Save the schedule to disk\nalready.exists.overwrite.label=already exists. Overwrite?\nfreeworship.button=Freeworship\nLANGUAGENAME=English (US)\ntag.tooltip=Add tag title\nbible.search.results.found=results found\nremote.previtem.text=Previous Item\nsundayplus.import.line2=(The importer expects the PTF files to be in the root of the zip file.)\nsundayplus.import.line1=Select the location of the Sunday Plus database below.\nlibrary.video.heading=Videos\nchange.graphics.label=Change Graphics\nadd.video.tooltip=Add Video\nfile.replace.button=Replace\nedit.theme.tooltip=Edit theme\nwebsite.dialog.content=Enter the web page you would like to display\\:\nno.tdb.heading=TurboDB Data Exchange not found\ncurrently.displaying.text=Currently displaying\nfix.apos.label=Sanitize apostrophes\nnotice.speed.text=Notice Speed\nsave.recording.before.exit.message=Would you like to save the recording before exiting?\nccli.number.label=CCLI number\nss.button=Survivor Songbook\nprint.chords.export.question=Include the chords when exporting these songs?\nselect.image.button=Select Image\nhelp.menu.feedback=Feedback\nadd.presentation.button=Add Presentation\nexit.button=Exit\nvideo.hue.label=Hue\nadd.dvd.button=Add DVD\ncopyright.label=Copyright\nbible.copy.error.heading=Error\nbible.delete.error.heading=Error\ninitial.search.text=<Type here to search>\nrcs.submit=Submit\nupdating.db=Updating Database\npreview.on.image.change.label=Preview item on image change\nmax.verses.label=Maximum verses to display at once\nemail.button=Email Schedule\nclear.live.text=Clear\nbible.search.keep.typing=Keep typing...\nopenlyrics.import.line1=Select the location of a zip archive of openlyrics songs below.\nselect.folder.images.panel=Select Folder...\nbackground.colour.label=Background Color\nremote.black.text=Black\nsource.button=The Source\nfilefilters.description.xml.bibles=XML Bibles\nadding.presentation.error.message=There was an error importing the presentation, perhaps it's corrupt?\none.line.mode.label=Only preview one line per song section\nrtf.files.description=RTF files\nchosen.fonts.label=Chosen fonts\nimport.error.message=Sorry, there was a problem with the import. Please feel free to ask for help on the Quelea discussion group\\: https\\://quelea.discourse.group/\nfocus.quelea=Shift focus to Quelea\ntranslate.heading=Translations\nremote.clear.text=Clear\nedit.timer.text=Edit Timer\nlibrary.timer.heading=Timers\nselect.imported.songs.line3=Songs that Quelea thinks are duplicates have been unchecked.\nselect.imported.songs.line2=Select the ones you want to add to the database then hit \"Add\".\nselect.imported.songs.line1=The following songs have been imported.\nadding.presentation.error.title=Error importing presentation\neasyworship.button=EasyWorship 2009\nmove.up.schedule.tooltip=Move up in schedule\nrecording.no.devices.title=No recording devices found\nno.verse.title=No verse found\nnotice.colour.text=Notice Color\nopen.existing.schedule.text=Open an existing schedule\nadd.song.text=Add song to database\nview.bible.button=View bibles...\nhelp.menu.facebook=Facebook page\ntheme.name.label=Theme Name\nprint.schedule.tooltip=Print Schedule\nstartup.error.title=Startup Error\nepicworship.button=EpicWorship\nselect.translation.label=Select the translation that you'd like to show in addition to the default lyrics\\:\nlanguage.changed.message=You must restart Quelea before the language change will take effect.\npco.loginerror.title=Login Error\nlogin.text=Login\nsearch.bible.button=Search bibles...\nexport.schedule.pdf.button=Export order of service to PDF\nvideo.error=Couldn't initialize the video libraries - video won't work. Please ask on the discuss list (see the help menu) for help solving this.\nnew.song.title=New Song\nvideopsalm.import.line1=This will import the VideoPsalm library from a JSON file.\nstage.lyrics.colour=Lyrics Color\nemail.text=Hi\\! Attached is a Quelea schedule you've been sent. Simply open it with Quelea and all the items should appear correctly.\ncheck.uncheck.all.text=Check/Uncheck all\neasyslides.import.line1=This will import songs from an EasySlides XML file.\ntranslate.tooltip=Song translations\nstage.line.alignment=Text Alignment\nrecordings.options.heading=Recordings\nmax.items.per.slide=Max number of % per slide\nremove.item.button=Remove item\nconverting.to.mp3=Converting recording to MP3\nadd.presentation.tooltip=Add Presentation\ntimer.name.label=Name\nconfirm.remove.timer=Really remove $1 from the timer list? This action cannot be undone.\npresentation.changed.label=Presentation Settings Changed\nok.button=OK\nuse.oo.label=Use OpenOffice for presentations (experimental)\nsongs.heading=Songs\nnotice.times.text=Times to Show\nfilefilters.description.plain.text.song=Plain text song\nshadow.spread.label=Shadow Spread\nprint.chords.question=Include the chords when printing this song?\nshow.small.song.text.label=Show small song information\npresentation.not.started.label=PowerPoint was not started\ntype.tag.name.here.text=<Type tag names here>\nnew.schedule.text=New Schedule\nadd.song.hint.search.text=There are no songs here that match this search yet. To add a song, click the \"New Song\" button on the left.\nclear.live.on.remove.schedule=Clear item from live view on removal from schedule\ntranslate.dialog.title=Translation manager\nfont.selection.dialog.title=Font Selection\nmissionpraise.import.line1=This will import songs from Mission Praise RTF files.\nrecord.audio.tooltip=Record Audio\nhelp.about.version=Version\nhelp.menu.update=Check for updates\nleft=Left\nremove.song.schedule.tooltip=Remove from schedule\nsave.recording.before.exit.title=Unsaved recording\nsave.text=Save\nsongbeamer.import.line1=Select the location of the SNG files you want to import below\\:\nopen.schedule.button=Open Schedule\nstretch.video.label=Stretch Video\nchorus.tooltip=Add chorus title\nspelling.complete.text=Spelling check is complete.\nimport.all.button=Import All\nexporting.label=Exporting\ntop.text.position=Top\nno.chords.title=No chords\nschedule.menu=Schedule\ndownload.path=Download path\nchoose.translations.text=Choose translations\ncapitalise.start.line.label=Capitalize the start of each line\nvlc.version.message=Your version of VLC is too old. You'll need to download the latest version of VLC in order to play videos, audio, and show video backgrounds. Do you want to download it now? You'll need to restart Quelea after you've installed VLC for the changes to take effect.\nfilefilters.description.songs.mb=Easyworship Songs.MB database\nno.text=No\nno.pdb.heading=Paradox JDBC driver not found\n1.monitor.warn.label=Warn if only one monitor is connected\npresentation.changed.message=You will need to restart Quelea for the new Presentation Settings to take effect.\nemail.error.title=Email error\nadd.audio.button=Audio\ntranslation.export.heading=Translation export\nkingsway.import.line2=This will take a long time (potentially hours\\!), so please be patient and leave Quelea running\\!\nkingsway.import.line1=This will import the kingsway song library from online.\nrecording.warning.title=Set recordings path first\nloop.label=Loop\nbible.heading=Bibles\nwebsite.dialog.title=Web page URL\nadditional.line.spacing.label=Additional line spacing\nnotes.label=Notes\nhelp.menu.about=About...\nsongbeamer.button=SongBeamer\ntoo.many.verses.error=Sorry, can't display this many verses... please try a smaller number.\ncolor.theme.label=Color\nfont.theme.label=Font\nfocus.switcher.title=Quelea Focus Switcher\nlibrary.copy.to.schedule.text=Copy to schedule\nrcs.add.bible.error=There was an error adding $1 to the schedule\nsave.as.schedule.disk.text=Save schedule as a different file\nnotice.position.text=Notice position\nrcs.add.song=Add Song to Schedule\nmanage.notices.button=Manage Notices...\nplay=Play\nadd.images.panel=Add Images\nerror.checking.updates.title=Couldn't check for updates\nclear.search.box=Clear search\nhelp.menu.website=Website\nno.dvd.error=Please insert a valid DVD or Blu-ray.\nfont.options.title=Font Options\nplaintext.import.line1=This will import songs library from directory contains songs as plain text files.\ntype.lyrics.here.text=Type lyrics here\nalready.running.title=Already running\nredo.label=Redo\nvlc.warning.title=Couldn't find VLC\npdf.button=PDF\ntags.colon.label=Tags\\:\ndictionary.language.text=Dictionary Language\ndisplay.options.heading=Display\nkingsway.button=Kingsway Online\nkingsway.button.all=All Songs\nbottom.text.position=Bottom\nshow.verse.numbers=Show verse numbers\noo.path=OpenOffice path\ncopy.song.db.default=Copy song to schedule by default\nrun.spellcheck.label=Spellcheck\nzw.import.line2=It can usually be found in \"C\\:\\\\ProgramData\\\\ZionWorx\\\\2.6\\\\Data\".\nclick.select.file.text=Click to select file\nremote.logout.text=Logout\nzw.import.line1=Select the location of the ZionWorx \"MainTable.dat\" file below.\nquick.shortcut.description=Escape to cancel, shift+enter to save\nswitch.to.text=Switch to\nremote.nextitem.text=Next Item\nimport.heading=Import\nnotice.font.size=Notice font size\nhelp.menu.wiki=Wiki\ntranslation.choice.title=Translation Choice\nshadow.radius.label=Shadow Radius\ncontrol.screen.label=Control Screen\ndisplay.options.text=Display the options dialog\nconvert.mp3=Automatically convert recordings to MP3 files (requires VLC)\nfilefilters.description.xml.files=XML files\nremove.notice.text=Remove Notice\nstage.chord.colour=Chord Color\nadding.presentation.status=Importing presentation...\nno.dvd.heading=No disc found\nshow.small.bible.text.label=Show small bible passage information\nerror.checking.updates.text=Sorry, there was an error checking for updates. Please check your internet connection then try again.\nerror.removing.song.db=There was an error removing the song from the database.\noptions.button=Options\nno.tdb.message=For technical reasons, you need to download TurboDB data exchange (https\\://www.dataweb.de/en/support/downloads.html) before Quelea can import ZionWorx databases.\\nWhen you've downloaded it, extract the contents of the zip file to $1.\\n\\nIf you have any issues, then please feel free to ask on the discussion group (http\\://bit.ly/1mePoeh).\nclear.stage.view=Clear Stage View with Main Display\ntext.options.options=Text Options\nmobile.lyrics.heading=Mobile Lyrics\nstage.background.colour=Background Color\ninvalid.search=Invalid Search\ndelete.image.confirmation=Really remove this image from the library? This action cannot be undone.\npreview.failed=Preview Failed\nremove.theme.tooltip=Remove theme\nerror.updating.song.text=There was an error updating the song in the database, it may be corrupted.\ndefault.bible.label=Default\nadd.dvd.tooltip=Add DVD\ntest.patterns.explanation=The test patterns available here should help you calibrate your display's focus and color settings properly. Click on a test image to show it on both the main and stage views.\ndisplay.song.info.label=Display song information\nsongselect.import.line1=Select the SongSelect files below.\nprojection.window.title=Projection Window\nconfirm.overwrite.text=This file already exists. Would you like to replace it or continue without copying?\nopen.schedule.text=Open Schedule\nhelp.menu.error.text=Sorry, we couldn't load that page. You can browse to it manually\\: $1\nsongpro.button=SongPro\nno.newer.version.available=You are running the latest version of Quelea\ntrim.lines.tooltip=Trim lines\ndatabase.heading=Database\nbridge.tooltip=Add bridge title\ncheck.kingsway.start.title=Already imported items\npresentation.options.heading=Presentations\ndelete.theme.question=Really delete this theme?\nset.loop.manually.message=The presentation has been closed. If you want to use Quelea's loop function with PowerPoint Viewer, you need to manually set the presentation to loop until stopped when you create it.\nconfirm.remove.text=Confirm remove\nconfirm.overwrite.title=File already exists\\!\nfilefilters.description.epc=EpicWorship .epc songpack\nsave.schedule.text=Save Schedule\nshow.extra.live.panel.toolbar.options.label=Show extra live panel toolbar options\ntimer.save.label=Save timer?\nnew.song.tooltip=New Song\nshadow.y=Shadow Y Offset\nshadow.x=Shadow X Offset\ndelete.video.confirmation=Really remove this video from the library? This action cannot be undone.\nlibrary.preview.song.text=Preview song\nchosen.fonts.explanation=Quelea only shows a selection of fonts in the theme window. Drag the fonts that you use from the left panel to the right panel, drag the ones you don't from the right to the left.\nconfirm.remove.translation.title=Remove translation?\nsm.button=Screen Monkey\nquick.insert.text=Quick Insert\nnew.song.button=New Song\npng.files.description=PNG image files\nfilefilters.description.songs.worshiphim=Worship Him MDB files\npm.button=Presentation Manager\nhelp.menu.download=Download\nduration.tooltip.label=\\#\\:\\#\\# or \\#\\#m\\#\\#s or \\#\\#\\:\\#\\#am\nnew.schedule.tooltip=New Schedule\nauto.translate.label=Attempt to auto-translate songs\ncant.save.schedule.text=Sorry, an error occurred and the schedule couldn't be saved.\nclose.all.presentations.message=Please close all open windows of PowerPoint before pressing OK or it will automatically be done to avoid signals being sent to the wrong window.\nimport.selection.button=Import Selection\nbible.search.title=Bible searcher\ncheck.for.update.label=Check for update on startup\nprojector.menu=Projector\nexport.schedule.songs.pdf.button=Export songs to PDF\ndelete.song.button=Delete Song\nrcs.add.failed=Add Failed\nadvance.on.live.label=Advance schedule on live display\nwords=words\ncontrols.heading=Controls\nalready.running.error=It looks like you already have an instance of Quelea running.\\nMake sure you close all other instances before running the program.\nserver.changed.message=You will need to restart Quelea for the new Server Settings to take effect.\ndefault.theme.text=Default theme\nnotice.font.text=Notice Font\nsetup.oo.failed.title=OpenOffice failed to initialize\ncheck.duplicates.text=Check duplicates\neasyslides.button=EasySlides\nvisit.webpage.now=Visit the website to download it now?\nplainText.button=Plain text\nmediashout.button=MediaShout\noptions.text=Options\nnew.schedule.button=New Schedule\nfilefilters.description.pdf.files=PDF Files\nspelling.check.title=Spelling check\nopen.in.browser=Open in Browser...\nremote.next.text=Next Slide\nkingsway.range.import.heading=Import range of Kingsway songs\nundo.label=Undo\nremove.timer.text=Delete Timer\npause=Pause\nlive.text.message=Any text written below will be visible to the users of Mobile Lyrics when the main screen is empty.\\n\\nUse a blank line to start on a new slide. You can also use the clear button (or CTRL + Return) to reset on both ends. More than 200 characters in one slide will be automatically shortened for the user.\nadd.timer.title=Add Timer\nfilefilters.description.songs.missionpraise=Mission Praise RTF files\nprint.schedule.button=Print Schedule\nchoose.color.text=Choose color...\nno.newer.version.available.title=Already up-to-date\\!\nconfirm.entry.exit.text=Do you wish to save your changes to this song?\nchange.bible.version.text=Switch Version\ntitle.label=Title\nmove.down.schedule.tooltip=Move down in schedule\nhelp.about.close=Close\ntheme.select.text=Select theme\\:\ntimer.theme.label=Theme settings\nemail.error.text=There was an error opening your email client. Make sure you have an email client installed and registered to handle eml files, otherwise you'll have to send the email manually.\nnew.theme.text=New theme...\nhelp.menu.discussion=Support / Discussion (ask questions here)\nfilefilters.description.powerpoint.presentations=Powerpoint Presentations\ntranspose.label=Transpose\nsmall.text.position.label=Song and bible information position\nselect.key.label=Select the new key\\:\nlanguage.changed=Language Changed\nkingsway.button.one=One Song\nadd.translation.button=Add translation...\nshadow.offset.label=Shadow Offset\ndone.text=Done\nschedule.clear.text=The schedule has been modified. Continue without saving?\nnew.notice.text=New Notice\nconfirm.remove.question=Really remove $1 from the database? This action cannot be undone.\nbasic.information.heading=Basic information\nbackground.theme.label=Background theme\nauthor.label=Author\ndelete.translation.title=Delete translation\nfilefilters.description.multimedia.files=Multimedia files\noverwrite.lyrics.title=Overwrite existing lyrics?\nrefresh.button=Refresh\nno.pdb.message=For technical reasons, you need to download the Paradox JDBC driver before Quelea can reliably import Easyworship databases\\:\\n\\n1. Head to http\\://www.hxtt.com/download.jsp then register for a free account to continue.\\n2. Download the \"DBF JDBC 4.1 Package for JDK1.7.X and JDK1.8.X\" file. It should be called Paradox_JDBC41.jar.\\n3. Copy Paradox_JDBC41.jar to $1.\\n\\nIf you have any issues, then please feel free to ask on the discussion group (https\\://quelea.discourse.group/). Quelea will still try to import the Easyworship database without this file in place, but it may give unreliable results.\nadd.timers.panel=Add Timers\nfilefilters.description.zip.files=Zip Files\nerror.schedule.message=There was a problem opening the schedule. Perhaps it's corrupt, or is not a schedule saved by Quelea.\nsongselect.button=SongSelect\nfocus.pp=Shift focus to PowerPoint\ntext.border.thickness.label=Text border thickness\nvideo.error.title=Video error\nall.text=All\nadd.video.button=Add Video\nbackground.text=Background\ncancel.text=Cancel\nbuilding.bible.index=Loading bibles\nloading.text=Loading\nadd.to.database.question=Add to database?\nconfirm.label=Are you sure?\nshadow.color=Shadow Color\nnavigate.remote.control.label=Remote Control URL\noverwrite.lyrics.text=We've translated lyrics automatically for you - do you want to use them?\\nYour current translation will be overwritten.\nsongpro.import.line1=This will import songs from a SongPro SDB database.\nmax.chars.line.label=Maximum characters per line\nadd.audio.tooltip=Add Audio\nfilefilters.description.video.files=Video files\nverse.tooltip=Add verse title\nrcs.add.success=Add Successful\noverflow.song.label=Overflow current song into next song\nbible.copy.error.text=Sorry, there was an error copying the bible across to the required directory.\nbible.delete.error.text=Sorry, there was an error deleting the bible from the required directory.\nkingsway.button.range=Range\nbible.passage.selector.prompt=[Chapter]\\:[Verse]-[Verse]\nfreeworship.import.line1=This will import FreeWorship songs from XML files.\nfile.rename.dialog.text=Please enter the new file name\\:\nnewer.version.available=There is a newer version of Quelea available\nfile.rename.button=Rename\nbible.browser.title=Bible Browser\nsurvivor.import.line2=This must be the acetates.pdf file, not the guitar chords or the sheet music.\nsurvivor.import.line1=Select the location of the Survivor Songbook PDF below.\nverses=verses\nimage.theme.label=Image\nembed.media.in.schedule=Embed media in schedule file\ntest.patterns.text=Test Patterns\nos.button=Opensong\nhover.for.position.label=Hover over the canvas to set text position\nrecordings.path=Path for recordings\nconfirm.entry.exit.title=Save song?\nimport.no.songs.title=No songs found\nexit.live.text=Exit Live Text\nolyrics.button=OpenLyrics\nfile.menu=File\nstage.options.heading=Stage View\nignored.fonts.label=Ignored fonts\nqsp.import.line1=Select the location of the Quelea songpack below.\nmax.lines.per.slide=Lines per slide (approximately)\nfilefilters.description.sqlite.files=SQLite Files\nspace.key=space\nnot.started.label=Not started\npm.import.line1=Select the Presentation Manager songs to import.\nhide.display.output.tooltip=Hide display output\nremove.video.text=Remove Video\nspelling.errors.in.doc.label=There are spelling errors in the document. Hit \"F7\" to open the spell check dialog.\n"
  },
  {
    "path": "Quelea/launch.sh",
    "content": "#!/bin/sh\ncd $SNAP/app\nexport GST_PLUGIN_PATH=$SNAP/usr/lib/x86_64-linux-gnu/gstreamer-1.0\nexport GST_PLUGIN_SCANNER=$SNAP/usr/lib/x86_64-linux-gnu/gstreamer-1.0/gst-plugin-scanner\nexport G_FILENAME_ENCODING=UTF-8\njvm/bin/java --add-opens java.base/java.nio=ALL-UNNAMED --add-exports=javafx.graphics/com.sun.javafx.scene.traversal=ALL-UNNAMED --add-exports=javafx.graphics/com.sun.javafx.scene=ALL-UNNAMED --add-exports=javafx.graphics/com.sun.javafx.css=ALL-UNNAMED --add-exports=javafx.base/com.sun.javafx.runtime=ALL-UNNAMED --add-exports=javafx.base/com.sun.javafx.event=ALL-UNNAMED --add-opens java.base/java.lang=ALL-UNNAMED --add-opens javafx.controls/javafx.scene.control=ALL-UNNAMED -Djdk.gtk.verbose=true -DVLCJ_INITX=no -Duser.dir=$SNAP/app -Dfile.encoding=UTF-8 -Dprism.dirtyopts=false -Djavafx.cachedir=$SNAP_USER_COMMON -jar $SNAP/app/Quelea.jar --userhome=$SNAP_USER_COMMON\n"
  },
  {
    "path": "Quelea/launch4jperms.sh",
    "content": "#!/bin/sh\nchmod +x launch4j/bin/ld\nchmod +x launch4j/bin/windres\n"
  },
  {
    "path": "Quelea/licenses/copyright",
    "content": "Copyright 2011 Michael Berry <michael@quelea.org>"
  },
  {
    "path": "Quelea/licenses/gplv3.txt",
    "content": "                    GNU GENERAL PUBLIC LICENSE\r\n                       Version 3, 29 June 2007\r\n\r\n Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>\r\n Everyone is permitted to copy and distribute verbatim copies\r\n of this license document, but changing it is not allowed.\r\n\r\n                            Preamble\r\n\r\n  The GNU General Public License is a free, copyleft license for\r\nsoftware and other kinds of works.\r\n\r\n  The licenses for most software and other practical works are designed\r\nto take away your freedom to share and change the works.  By contrast,\r\nthe GNU General Public License is intended to guarantee your freedom to\r\nshare and change all versions of a program--to make sure it remains free\r\nsoftware for all its users.  We, the Free Software Foundation, use the\r\nGNU General Public License for most of our software; it applies also to\r\nany other work released this way by its authors.  You can apply it to\r\nyour programs, too.\r\n\r\n  When we speak of free software, we are referring to freedom, not\r\nprice.  Our General Public Licenses are designed to make sure that you\r\nhave the freedom to distribute copies of free software (and charge for\r\nthem if you wish), that you receive source code or can get it if you\r\nwant it, that you can change the software or use pieces of it in new\r\nfree programs, and that you know you can do these things.\r\n\r\n  To protect your rights, we need to prevent others from denying you\r\nthese rights or asking you to surrender the rights.  Therefore, you have\r\ncertain responsibilities if you distribute copies of the software, or if\r\nyou modify it: responsibilities to respect the freedom of others.\r\n\r\n  For example, if you distribute copies of such a program, whether\r\ngratis or for a fee, you must pass on to the recipients the same\r\nfreedoms that you received.  You must make sure that they, too, receive\r\nor can get the source code.  And you must show them these terms so they\r\nknow their rights.\r\n\r\n  Developers that use the GNU GPL protect your rights with two steps:\r\n(1) assert copyright on the software, and (2) offer you this License\r\ngiving you legal permission to copy, distribute and/or modify it.\r\n\r\n  For the developers' and authors' protection, the GPL clearly explains\r\nthat there is no warranty for this free software.  For both users' and\r\nauthors' sake, the GPL requires that modified versions be marked as\r\nchanged, so that their problems will not be attributed erroneously to\r\nauthors of previous versions.\r\n\r\n  Some devices are designed to deny users access to install or run\r\nmodified versions of the software inside them, although the manufacturer\r\ncan do so.  This is fundamentally incompatible with the aim of\r\nprotecting users' freedom to change the software.  The systematic\r\npattern of such abuse occurs in the area of products for individuals to\r\nuse, which is precisely where it is most unacceptable.  Therefore, we\r\nhave designed this version of the GPL to prohibit the practice for those\r\nproducts.  If such problems arise substantially in other domains, we\r\nstand ready to extend this provision to those domains in future versions\r\nof the GPL, as needed to protect the freedom of users.\r\n\r\n  Finally, every program is threatened constantly by software patents.\r\nStates should not allow patents to restrict development and use of\r\nsoftware on general-purpose computers, but in those that do, we wish to\r\navoid the special danger that patents applied to a free program could\r\nmake it effectively proprietary.  To prevent this, the GPL assures that\r\npatents cannot be used to render the program non-free.\r\n\r\n  The precise terms and conditions for copying, distribution and\r\nmodification follow.\r\n\r\n                       TERMS AND CONDITIONS\r\n\r\n  0. Definitions.\r\n\r\n  \"This License\" refers to version 3 of the GNU General Public License.\r\n\r\n  \"Copyright\" also means copyright-like laws that apply to other kinds of\r\nworks, such as semiconductor masks.\r\n\r\n  \"The Program\" refers to any copyrightable work licensed under this\r\nLicense.  Each licensee is addressed as \"you\".  \"Licensees\" and\r\n\"recipients\" may be individuals or organizations.\r\n\r\n  To \"modify\" a work means to copy from or adapt all or part of the work\r\nin a fashion requiring copyright permission, other than the making of an\r\nexact copy.  The resulting work is called a \"modified version\" of the\r\nearlier work or a work \"based on\" the earlier work.\r\n\r\n  A \"covered work\" means either the unmodified Program or a work based\r\non the Program.\r\n\r\n  To \"propagate\" a work means to do anything with it that, without\r\npermission, would make you directly or secondarily liable for\r\ninfringement under applicable copyright law, except executing it on a\r\ncomputer or modifying a private copy.  Propagation includes copying,\r\ndistribution (with or without modification), making available to the\r\npublic, and in some countries other activities as well.\r\n\r\n  To \"convey\" a work means any kind of propagation that enables other\r\nparties to make or receive copies.  Mere interaction with a user through\r\na computer network, with no transfer of a copy, is not conveying.\r\n\r\n  An interactive user interface displays \"Appropriate Legal Notices\"\r\nto the extent that it includes a convenient and prominently visible\r\nfeature that (1) displays an appropriate copyright notice, and (2)\r\ntells the user that there is no warranty for the work (except to the\r\nextent that warranties are provided), that licensees may convey the\r\nwork under this License, and how to view a copy of this License.  If\r\nthe interface presents a list of user commands or options, such as a\r\nmenu, a prominent item in the list meets this criterion.\r\n\r\n  1. Source Code.\r\n\r\n  The \"source code\" for a work means the preferred form of the work\r\nfor making modifications to it.  \"Object code\" means any non-source\r\nform of a work.\r\n\r\n  A \"Standard Interface\" means an interface that either is an official\r\nstandard defined by a recognized standards body, or, in the case of\r\ninterfaces specified for a particular programming language, one that\r\nis widely used among developers working in that language.\r\n\r\n  The \"System Libraries\" of an executable work include anything, other\r\nthan the work as a whole, that (a) is included in the normal form of\r\npackaging a Major Component, but which is not part of that Major\r\nComponent, and (b) serves only to enable use of the work with that\r\nMajor Component, or to implement a Standard Interface for which an\r\nimplementation is available to the public in source code form.  A\r\n\"Major Component\", in this context, means a major essential component\r\n(kernel, window system, and so on) of the specific operating system\r\n(if any) on which the executable work runs, or a compiler used to\r\nproduce the work, or an object code interpreter used to run it.\r\n\r\n  The \"Corresponding Source\" for a work in object code form means all\r\nthe source code needed to generate, install, and (for an executable\r\nwork) run the object code and to modify the work, including scripts to\r\ncontrol those activities.  However, it does not include the work's\r\nSystem Libraries, or general-purpose tools or generally available free\r\nprograms which are used unmodified in performing those activities but\r\nwhich are not part of the work.  For example, Corresponding Source\r\nincludes interface definition files associated with source files for\r\nthe work, and the source code for shared libraries and dynamically\r\nlinked subprograms that the work is specifically designed to require,\r\nsuch as by intimate data communication or control flow between those\r\nsubprograms and other parts of the work.\r\n\r\n  The Corresponding Source need not include anything that users\r\ncan regenerate automatically from other parts of the Corresponding\r\nSource.\r\n\r\n  The Corresponding Source for a work in source code form is that\r\nsame work.\r\n\r\n  2. Basic Permissions.\r\n\r\n  All rights granted under this License are granted for the term of\r\ncopyright on the Program, and are irrevocable provided the stated\r\nconditions are met.  This License explicitly affirms your unlimited\r\npermission to run the unmodified Program.  The output from running a\r\ncovered work is covered by this License only if the output, given its\r\ncontent, constitutes a covered work.  This License acknowledges your\r\nrights of fair use or other equivalent, as provided by copyright law.\r\n\r\n  You may make, run and propagate covered works that you do not\r\nconvey, without conditions so long as your license otherwise remains\r\nin force.  You may convey covered works to others for the sole purpose\r\nof having them make modifications exclusively for you, or provide you\r\nwith facilities for running those works, provided that you comply with\r\nthe terms of this License in conveying all material for which you do\r\nnot control copyright.  Those thus making or running the covered works\r\nfor you must do so exclusively on your behalf, under your direction\r\nand control, on terms that prohibit them from making any copies of\r\nyour copyrighted material outside their relationship with you.\r\n\r\n  Conveying under any other circumstances is permitted solely under\r\nthe conditions stated below.  Sublicensing is not allowed; section 10\r\nmakes it unnecessary.\r\n\r\n  3. Protecting Users' Legal Rights From Anti-Circumvention Law.\r\n\r\n  No covered work shall be deemed part of an effective technological\r\nmeasure under any applicable law fulfilling obligations under article\r\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\r\nsimilar laws prohibiting or restricting circumvention of such\r\nmeasures.\r\n\r\n  When you convey a covered work, you waive any legal power to forbid\r\ncircumvention of technological measures to the extent such circumvention\r\nis effected by exercising rights under this License with respect to\r\nthe covered work, and you disclaim any intention to limit operation or\r\nmodification of the work as a means of enforcing, against the work's\r\nusers, your or third parties' legal rights to forbid circumvention of\r\ntechnological measures.\r\n\r\n  4. Conveying Verbatim Copies.\r\n\r\n  You may convey verbatim copies of the Program's source code as you\r\nreceive it, in any medium, provided that you conspicuously and\r\nappropriately publish on each copy an appropriate copyright notice;\r\nkeep intact all notices stating that this License and any\r\nnon-permissive terms added in accord with section 7 apply to the code;\r\nkeep intact all notices of the absence of any warranty; and give all\r\nrecipients a copy of this License along with the Program.\r\n\r\n  You may charge any price or no price for each copy that you convey,\r\nand you may offer support or warranty protection for a fee.\r\n\r\n  5. Conveying Modified Source Versions.\r\n\r\n  You may convey a work based on the Program, or the modifications to\r\nproduce it from the Program, in the form of source code under the\r\nterms of section 4, provided that you also meet all of these conditions:\r\n\r\n    a) The work must carry prominent notices stating that you modified\r\n    it, and giving a relevant date.\r\n\r\n    b) The work must carry prominent notices stating that it is\r\n    released under this License and any conditions added under section\r\n    7.  This requirement modifies the requirement in section 4 to\r\n    \"keep intact all notices\".\r\n\r\n    c) You must license the entire work, as a whole, under this\r\n    License to anyone who comes into possession of a copy.  This\r\n    License will therefore apply, along with any applicable section 7\r\n    additional terms, to the whole of the work, and all its parts,\r\n    regardless of how they are packaged.  This License gives no\r\n    permission to license the work in any other way, but it does not\r\n    invalidate such permission if you have separately received it.\r\n\r\n    d) If the work has interactive user interfaces, each must display\r\n    Appropriate Legal Notices; however, if the Program has interactive\r\n    interfaces that do not display Appropriate Legal Notices, your\r\n    work need not make them do so.\r\n\r\n  A compilation of a covered work with other separate and independent\r\nworks, which are not by their nature extensions of the covered work,\r\nand which are not combined with it such as to form a larger program,\r\nin or on a volume of a storage or distribution medium, is called an\r\n\"aggregate\" if the compilation and its resulting copyright are not\r\nused to limit the access or legal rights of the compilation's users\r\nbeyond what the individual works permit.  Inclusion of a covered work\r\nin an aggregate does not cause this License to apply to the other\r\nparts of the aggregate.\r\n\r\n  6. Conveying Non-Source Forms.\r\n\r\n  You may convey a covered work in object code form under the terms\r\nof sections 4 and 5, provided that you also convey the\r\nmachine-readable Corresponding Source under the terms of this License,\r\nin one of these ways:\r\n\r\n    a) Convey the object code in, or embodied in, a physical product\r\n    (including a physical distribution medium), accompanied by the\r\n    Corresponding Source fixed on a durable physical medium\r\n    customarily used for software interchange.\r\n\r\n    b) Convey the object code in, or embodied in, a physical product\r\n    (including a physical distribution medium), accompanied by a\r\n    written offer, valid for at least three years and valid for as\r\n    long as you offer spare parts or customer support for that product\r\n    model, to give anyone who possesses the object code either (1) a\r\n    copy of the Corresponding Source for all the software in the\r\n    product that is covered by this License, on a durable physical\r\n    medium customarily used for software interchange, for a price no\r\n    more than your reasonable cost of physically performing this\r\n    conveying of source, or (2) access to copy the\r\n    Corresponding Source from a network server at no charge.\r\n\r\n    c) Convey individual copies of the object code with a copy of the\r\n    written offer to provide the Corresponding Source.  This\r\n    alternative is allowed only occasionally and noncommercially, and\r\n    only if you received the object code with such an offer, in accord\r\n    with subsection 6b.\r\n\r\n    d) Convey the object code by offering access from a designated\r\n    place (gratis or for a charge), and offer equivalent access to the\r\n    Corresponding Source in the same way through the same place at no\r\n    further charge.  You need not require recipients to copy the\r\n    Corresponding Source along with the object code.  If the place to\r\n    copy the object code is a network server, the Corresponding Source\r\n    may be on a different server (operated by you or a third party)\r\n    that supports equivalent copying facilities, provided you maintain\r\n    clear directions next to the object code saying where to find the\r\n    Corresponding Source.  Regardless of what server hosts the\r\n    Corresponding Source, you remain obligated to ensure that it is\r\n    available for as long as needed to satisfy these requirements.\r\n\r\n    e) Convey the object code using peer-to-peer transmission, provided\r\n    you inform other peers where the object code and Corresponding\r\n    Source of the work are being offered to the general public at no\r\n    charge under subsection 6d.\r\n\r\n  A separable portion of the object code, whose source code is excluded\r\nfrom the Corresponding Source as a System Library, need not be\r\nincluded in conveying the object code work.\r\n\r\n  A \"User Product\" is either (1) a \"consumer product\", which means any\r\ntangible personal property which is normally used for personal, family,\r\nor household purposes, or (2) anything designed or sold for incorporation\r\ninto a dwelling.  In determining whether a product is a consumer product,\r\ndoubtful cases shall be resolved in favor of coverage.  For a particular\r\nproduct received by a particular user, \"normally used\" refers to a\r\ntypical or common use of that class of product, regardless of the status\r\nof the particular user or of the way in which the particular user\r\nactually uses, or expects or is expected to use, the product.  A product\r\nis a consumer product regardless of whether the product has substantial\r\ncommercial, industrial or non-consumer uses, unless such uses represent\r\nthe only significant mode of use of the product.\r\n\r\n  \"Installation Information\" for a User Product means any methods,\r\nprocedures, authorization keys, or other information required to install\r\nand execute modified versions of a covered work in that User Product from\r\na modified version of its Corresponding Source.  The information must\r\nsuffice to ensure that the continued functioning of the modified object\r\ncode is in no case prevented or interfered with solely because\r\nmodification has been made.\r\n\r\n  If you convey an object code work under this section in, or with, or\r\nspecifically for use in, a User Product, and the conveying occurs as\r\npart of a transaction in which the right of possession and use of the\r\nUser Product is transferred to the recipient in perpetuity or for a\r\nfixed term (regardless of how the transaction is characterized), the\r\nCorresponding Source conveyed under this section must be accompanied\r\nby the Installation Information.  But this requirement does not apply\r\nif neither you nor any third party retains the ability to install\r\nmodified object code on the User Product (for example, the work has\r\nbeen installed in ROM).\r\n\r\n  The requirement to provide Installation Information does not include a\r\nrequirement to continue to provide support service, warranty, or updates\r\nfor a work that has been modified or installed by the recipient, or for\r\nthe User Product in which it has been modified or installed.  Access to a\r\nnetwork may be denied when the modification itself materially and\r\nadversely affects the operation of the network or violates the rules and\r\nprotocols for communication across the network.\r\n\r\n  Corresponding Source conveyed, and Installation Information provided,\r\nin accord with this section must be in a format that is publicly\r\ndocumented (and with an implementation available to the public in\r\nsource code form), and must require no special password or key for\r\nunpacking, reading or copying.\r\n\r\n  7. Additional Terms.\r\n\r\n  \"Additional permissions\" are terms that supplement the terms of this\r\nLicense by making exceptions from one or more of its conditions.\r\nAdditional permissions that are applicable to the entire Program shall\r\nbe treated as though they were included in this License, to the extent\r\nthat they are valid under applicable law.  If additional permissions\r\napply only to part of the Program, that part may be used separately\r\nunder those permissions, but the entire Program remains governed by\r\nthis License without regard to the additional permissions.\r\n\r\n  When you convey a copy of a covered work, you may at your option\r\nremove any additional permissions from that copy, or from any part of\r\nit.  (Additional permissions may be written to require their own\r\nremoval in certain cases when you modify the work.)  You may place\r\nadditional permissions on material, added by you to a covered work,\r\nfor which you have or can give appropriate copyright permission.\r\n\r\n  Notwithstanding any other provision of this License, for material you\r\nadd to a covered work, you may (if authorized by the copyright holders of\r\nthat material) supplement the terms of this License with terms:\r\n\r\n    a) Disclaiming warranty or limiting liability differently from the\r\n    terms of sections 15 and 16 of this License; or\r\n\r\n    b) Requiring preservation of specified reasonable legal notices or\r\n    author attributions in that material or in the Appropriate Legal\r\n    Notices displayed by works containing it; or\r\n\r\n    c) Prohibiting misrepresentation of the origin of that material, or\r\n    requiring that modified versions of such material be marked in\r\n    reasonable ways as different from the original version; or\r\n\r\n    d) Limiting the use for publicity purposes of names of licensors or\r\n    authors of the material; or\r\n\r\n    e) Declining to grant rights under trademark law for use of some\r\n    trade names, trademarks, or service marks; or\r\n\r\n    f) Requiring indemnification of licensors and authors of that\r\n    material by anyone who conveys the material (or modified versions of\r\n    it) with contractual assumptions of liability to the recipient, for\r\n    any liability that these contractual assumptions directly impose on\r\n    those licensors and authors.\r\n\r\n  All other non-permissive additional terms are considered \"further\r\nrestrictions\" within the meaning of section 10.  If the Program as you\r\nreceived it, or any part of it, contains a notice stating that it is\r\ngoverned by this License along with a term that is a further\r\nrestriction, you may remove that term.  If a license document contains\r\na further restriction but permits relicensing or conveying under this\r\nLicense, you may add to a covered work material governed by the terms\r\nof that license document, provided that the further restriction does\r\nnot survive such relicensing or conveying.\r\n\r\n  If you add terms to a covered work in accord with this section, you\r\nmust place, in the relevant source files, a statement of the\r\nadditional terms that apply to those files, or a notice indicating\r\nwhere to find the applicable terms.\r\n\r\n  Additional terms, permissive or non-permissive, may be stated in the\r\nform of a separately written license, or stated as exceptions;\r\nthe above requirements apply either way.\r\n\r\n  8. Termination.\r\n\r\n  You may not propagate or modify a covered work except as expressly\r\nprovided under this License.  Any attempt otherwise to propagate or\r\nmodify it is void, and will automatically terminate your rights under\r\nthis License (including any patent licenses granted under the third\r\nparagraph of section 11).\r\n\r\n  However, if you cease all violation of this License, then your\r\nlicense from a particular copyright holder is reinstated (a)\r\nprovisionally, unless and until the copyright holder explicitly and\r\nfinally terminates your license, and (b) permanently, if the copyright\r\nholder fails to notify you of the violation by some reasonable means\r\nprior to 60 days after the cessation.\r\n\r\n  Moreover, your license from a particular copyright holder is\r\nreinstated permanently if the copyright holder notifies you of the\r\nviolation by some reasonable means, this is the first time you have\r\nreceived notice of violation of this License (for any work) from that\r\ncopyright holder, and you cure the violation prior to 30 days after\r\nyour receipt of the notice.\r\n\r\n  Termination of your rights under this section does not terminate the\r\nlicenses of parties who have received copies or rights from you under\r\nthis License.  If your rights have been terminated and not permanently\r\nreinstated, you do not qualify to receive new licenses for the same\r\nmaterial under section 10.\r\n\r\n  9. Acceptance Not Required for Having Copies.\r\n\r\n  You are not required to accept this License in order to receive or\r\nrun a copy of the Program.  Ancillary propagation of a covered work\r\noccurring solely as a consequence of using peer-to-peer transmission\r\nto receive a copy likewise does not require acceptance.  However,\r\nnothing other than this License grants you permission to propagate or\r\nmodify any covered work.  These actions infringe copyright if you do\r\nnot accept this License.  Therefore, by modifying or propagating a\r\ncovered work, you indicate your acceptance of this License to do so.\r\n\r\n  10. Automatic Licensing of Downstream Recipients.\r\n\r\n  Each time you convey a covered work, the recipient automatically\r\nreceives a license from the original licensors, to run, modify and\r\npropagate that work, subject to this License.  You are not responsible\r\nfor enforcing compliance by third parties with this License.\r\n\r\n  An \"entity transaction\" is a transaction transferring control of an\r\norganization, or substantially all assets of one, or subdividing an\r\norganization, or merging organizations.  If propagation of a covered\r\nwork results from an entity transaction, each party to that\r\ntransaction who receives a copy of the work also receives whatever\r\nlicenses to the work the party's predecessor in interest had or could\r\ngive under the previous paragraph, plus a right to possession of the\r\nCorresponding Source of the work from the predecessor in interest, if\r\nthe predecessor has it or can get it with reasonable efforts.\r\n\r\n  You may not impose any further restrictions on the exercise of the\r\nrights granted or affirmed under this License.  For example, you may\r\nnot impose a license fee, royalty, or other charge for exercise of\r\nrights granted under this License, and you may not initiate litigation\r\n(including a cross-claim or counterclaim in a lawsuit) alleging that\r\nany patent claim is infringed by making, using, selling, offering for\r\nsale, or importing the Program or any portion of it.\r\n\r\n  11. Patents.\r\n\r\n  A \"contributor\" is a copyright holder who authorizes use under this\r\nLicense of the Program or a work on which the Program is based.  The\r\nwork thus licensed is called the contributor's \"contributor version\".\r\n\r\n  A contributor's \"essential patent claims\" are all patent claims\r\nowned or controlled by the contributor, whether already acquired or\r\nhereafter acquired, that would be infringed by some manner, permitted\r\nby this License, of making, using, or selling its contributor version,\r\nbut do not include claims that would be infringed only as a\r\nconsequence of further modification of the contributor version.  For\r\npurposes of this definition, \"control\" includes the right to grant\r\npatent sublicenses in a manner consistent with the requirements of\r\nthis License.\r\n\r\n  Each contributor grants you a non-exclusive, worldwide, royalty-free\r\npatent license under the contributor's essential patent claims, to\r\nmake, use, sell, offer for sale, import and otherwise run, modify and\r\npropagate the contents of its contributor version.\r\n\r\n  In the following three paragraphs, a \"patent license\" is any express\r\nagreement or commitment, however denominated, not to enforce a patent\r\n(such as an express permission to practice a patent or covenant not to\r\nsue for patent infringement).  To \"grant\" such a patent license to a\r\nparty means to make such an agreement or commitment not to enforce a\r\npatent against the party.\r\n\r\n  If you convey a covered work, knowingly relying on a patent license,\r\nand the Corresponding Source of the work is not available for anyone\r\nto copy, free of charge and under the terms of this License, through a\r\npublicly available network server or other readily accessible means,\r\nthen you must either (1) cause the Corresponding Source to be so\r\navailable, or (2) arrange to deprive yourself of the benefit of the\r\npatent license for this particular work, or (3) arrange, in a manner\r\nconsistent with the requirements of this License, to extend the patent\r\nlicense to downstream recipients.  \"Knowingly relying\" means you have\r\nactual knowledge that, but for the patent license, your conveying the\r\ncovered work in a country, or your recipient's use of the covered work\r\nin a country, would infringe one or more identifiable patents in that\r\ncountry that you have reason to believe are valid.\r\n\r\n  If, pursuant to or in connection with a single transaction or\r\narrangement, you convey, or propagate by procuring conveyance of, a\r\ncovered work, and grant a patent license to some of the parties\r\nreceiving the covered work authorizing them to use, propagate, modify\r\nor convey a specific copy of the covered work, then the patent license\r\nyou grant is automatically extended to all recipients of the covered\r\nwork and works based on it.\r\n\r\n  A patent license is \"discriminatory\" if it does not include within\r\nthe scope of its coverage, prohibits the exercise of, or is\r\nconditioned on the non-exercise of one or more of the rights that are\r\nspecifically granted under this License.  You may not convey a covered\r\nwork if you are a party to an arrangement with a third party that is\r\nin the business of distributing software, under which you make payment\r\nto the third party based on the extent of your activity of conveying\r\nthe work, and under which the third party grants, to any of the\r\nparties who would receive the covered work from you, a discriminatory\r\npatent license (a) in connection with copies of the covered work\r\nconveyed by you (or copies made from those copies), or (b) primarily\r\nfor and in connection with specific products or compilations that\r\ncontain the covered work, unless you entered into that arrangement,\r\nor that patent license was granted, prior to 28 March 2007.\r\n\r\n  Nothing in this License shall be construed as excluding or limiting\r\nany implied license or other defenses to infringement that may\r\notherwise be available to you under applicable patent law.\r\n\r\n  12. No Surrender of Others' Freedom.\r\n\r\n  If conditions are imposed on you (whether by court order, agreement or\r\notherwise) that contradict the conditions of this License, they do not\r\nexcuse you from the conditions of this License.  If you cannot convey a\r\ncovered work so as to satisfy simultaneously your obligations under this\r\nLicense and any other pertinent obligations, then as a consequence you may\r\nnot convey it at all.  For example, if you agree to terms that obligate you\r\nto collect a royalty for further conveying from those to whom you convey\r\nthe Program, the only way you could satisfy both those terms and this\r\nLicense would be to refrain entirely from conveying the Program.\r\n\r\n  13. Use with the GNU Affero General Public License.\r\n\r\n  Notwithstanding any other provision of this License, you have\r\npermission to link or combine any covered work with a work licensed\r\nunder version 3 of the GNU Affero General Public License into a single\r\ncombined work, and to convey the resulting work.  The terms of this\r\nLicense will continue to apply to the part which is the covered work,\r\nbut the special requirements of the GNU Affero General Public License,\r\nsection 13, concerning interaction through a network will apply to the\r\ncombination as such.\r\n\r\n  14. Revised Versions of this License.\r\n\r\n  The Free Software Foundation may publish revised and/or new versions of\r\nthe GNU General Public License from time to time.  Such new versions will\r\nbe similar in spirit to the present version, but may differ in detail to\r\naddress new problems or concerns.\r\n\r\n  Each version is given a distinguishing version number.  If the\r\nProgram specifies that a certain numbered version of the GNU General\r\nPublic License \"or any later version\" applies to it, you have the\r\noption of following the terms and conditions either of that numbered\r\nversion or of any later version published by the Free Software\r\nFoundation.  If the Program does not specify a version number of the\r\nGNU General Public License, you may choose any version ever published\r\nby the Free Software Foundation.\r\n\r\n  If the Program specifies that a proxy can decide which future\r\nversions of the GNU General Public License can be used, that proxy's\r\npublic statement of acceptance of a version permanently authorizes you\r\nto choose that version for the Program.\r\n\r\n  Later license versions may give you additional or different\r\npermissions.  However, no additional obligations are imposed on any\r\nauthor or copyright holder as a result of your choosing to follow a\r\nlater version.\r\n\r\n  15. Disclaimer of Warranty.\r\n\r\n  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\r\nAPPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\r\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\r\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\r\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\r\nPURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\r\nIS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\r\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\r\n\r\n  16. Limitation of Liability.\r\n\r\n  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\r\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\r\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\r\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\r\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\r\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\r\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\r\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\r\nSUCH DAMAGES.\r\n\r\n  17. Interpretation of Sections 15 and 16.\r\n\r\n  If the disclaimer of warranty and limitation of liability provided\r\nabove cannot be given local legal effect according to their terms,\r\nreviewing courts shall apply local law that most closely approximates\r\nan absolute waiver of all civil liability in connection with the\r\nProgram, unless a warranty or assumption of liability accompanies a\r\ncopy of the Program in return for a fee.\r\n\r\n                     END OF TERMS AND CONDITIONS\r\n\r\n            How to Apply These Terms to Your New Programs\r\n\r\n  If you develop a new program, and you want it to be of the greatest\r\npossible use to the public, the best way to achieve this is to make it\r\nfree software which everyone can redistribute and change under these terms.\r\n\r\n  To do so, attach the following notices to the program.  It is safest\r\nto attach them to the start of each source file to most effectively\r\nstate the exclusion of warranty; and each file should have at least\r\nthe \"copyright\" line and a pointer to where the full notice is found.\r\n\r\n    <one line to give the program's name and a brief idea of what it does.>\r\n    Copyright (C) <year>  <name of author>\r\n\r\n    This program is free software: you can redistribute it and/or modify\r\n    it under the terms of the GNU General Public License as published by\r\n    the Free Software Foundation, either version 3 of the License, or\r\n    (at your option) any later version.\r\n\r\n    This program is distributed in the hope that it will be useful,\r\n    but WITHOUT ANY WARRANTY; without even the implied warranty of\r\n    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r\n    GNU General Public License for more details.\r\n\r\n    You should have received a copy of the GNU General Public License\r\n    along with this program.  If not, see <http://www.gnu.org/licenses/>.\r\n\r\nAlso add information on how to contact you by electronic and paper mail.\r\n\r\n  If the program does terminal interaction, make it output a short\r\nnotice like this when it starts in an interactive mode:\r\n\r\n    <program>  Copyright (C) <year>  <name of author>\r\n    This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\r\n    This is free software, and you are welcome to redistribute it\r\n    under certain conditions; type `show c' for details.\r\n\r\nThe hypothetical commands `show w' and `show c' should show the appropriate\r\nparts of the General Public License.  Of course, your program's commands\r\nmight be different; for a GUI interface, you would use an \"about box\".\r\n\r\n  You should also get your employer (if you work as a programmer) or school,\r\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\r\nFor more information on this, and how to apply and follow the GNU GPL, see\r\n<http://www.gnu.org/licenses/>.\r\n\r\n  The GNU General Public License does not permit incorporating your program\r\ninto proprietary programs.  If your program is a subroutine library, you\r\nmay consider it more useful to permit linking proprietary applications with\r\nthe library.  If this is what you want to do, use the GNU Lesser General\r\nPublic License instead of this License.  But first, please read\r\n<http://www.gnu.org/philosophy/why-not-lgpl.html>."
  },
  {
    "path": "Quelea/packr.json",
    "content": "{\n    \"platform\": \"mac\",\n    \"jdk\": \"bundlejre/macjre.zip\",\n    \"executable\": \"Quelea\",\n    \"classpath\": [\n        \"dist/Quelea.jar\"\n    ],\n    \"mainclass\": \"org.quelea.windows.main.Main\",\n    \"vmargs\": [\n        \"Xmx2G\",\n        \"XX:+UseParallelGC\",\n        \"add-exports\",\"javafx.graphics/com.sun.javafx.scene.traversal=ALL-UNNAMED\",\n        \"add-exports\",\"javafx.graphics/com.sun.javafx.scene=ALL-UNNAMED\",\n        \"add-exports\",\"javafx.graphics/com.sun.javafx.css=ALL-UNNAMED\",\n        \"add-exports\",\"javafx.base/com.sun.javafx.runtime=ALL-UNNAMED\",\n        \"add-exports\",\"javafx.base/com.sun.javafx.event=ALL-UNNAMED\",\n        \"add-opens\",\"java.base/java.lang=ALL-UNNAMED\",\n        \"add-opens\",\"javafx.controls/javafx.scene.control=ALL-UNNAMED\",\n        \"add-opens\",\"java.base/java.nio=ALL-UNNAMED\"\n    ],\n    \"resources\": [\n        \"dist/bibles\",\n        \"dist/dictionaries\",\n        \"dist/icons\",\n        \"dist/img\",\n        \"dist/languages\",\n        \"dist/lib\",\n        \"dist/licenses\",\n        \"dist/server\",\n        \"dist/src\",\n        \"dist/themes\",\n        \"dist/vid\",\n        \"dist/fopcfg.xml\",\n        \"dist/quelea.properties\",\n        \"dist/scheduleformat.xsl\",\n        \"dist/songformat.xsl\"\n    ],\n    \"icon\": \"dist/icons/mac-logo.icns\",\n    \"output\": \"out-mac/Quelea.app\",\n    \"verbose\": true\n}"
  },
  {
    "path": "Quelea/quelea-debuglog.txt",
    "content": "Oct 16, 2018 8:55:25 PM org.quelea.services.languages.LabelGrabber <init>\nINFO: Using languages file C:\\Users\\Michael\\Documents\\NetBeansProjects\\Quelea\\Quelea\\languages\\gb.lang\n\nOct 16, 2018 8:55:25 PM org.quelea.services.languages.LabelGrabber <init>\nINFO: Setting en-uk locale\n\nOct 16, 2018 8:55:25 PM org.quelea.windows.main.Main start\nINFO: Started, version 2019.0\n\nOct 16, 2018 8:55:25 PM org.quelea.windows.main.Main start\nINFO: OS name: Windows 10\n\nOct 16, 2018 8:55:25 PM org.quelea.windows.main.Main start\nINFO: Using JAVA version 9.0.4\n\nOct 16, 2018 8:55:25 PM org.quelea.windows.main.Main start\nINFO: 64-bit: true\n\nOct 16, 2018 8:55:25 PM org.quelea.windows.main.Main start\nINFO: Couldn't set icon, probably an unsupported platform and nothing to worry about\njava.lang.UnsupportedOperationException: The ICON_IMAGE feature is not supported on the current platform!\n\tat java.desktop/java.awt.Taskbar.checkFeatureSupport(Taskbar.java:175)\n\tat java.desktop/java.awt.Taskbar.setIconImage(Taskbar.java:335)\n\tat org.quelea.windows.main.Main.start(Main.java:98)\n\tat javafx.graphics/com.sun.javafx.application.LauncherImpl.lambda$launchApplication1$9(LauncherImpl.java:919)\n\tat javafx.graphics/com.sun.javafx.application.PlatformImpl.lambda$runAndWait$11(PlatformImpl.java:449)\n\tat javafx.graphics/com.sun.javafx.application.PlatformImpl.lambda$runLater$9(PlatformImpl.java:418)\n\tat java.base/java.security.AccessController.doPrivileged(Native Method)\n\tat javafx.graphics/com.sun.javafx.application.PlatformImpl.lambda$runLater$10(PlatformImpl.java:417)\n\tat javafx.graphics/com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:96)\n\tat javafx.graphics/com.sun.glass.ui.win.WinApplication._runLoop(Native Method)\n\tat javafx.graphics/com.sun.glass.ui.win.WinApplication.lambda$runLoop$3(WinApplication.java:175)\n\tat java.base/java.lang.Thread.run(Thread.java:844)\n\n\nOct 16, 2018 8:55:26 PM org.quelea.windows.multimedia.VLCWindowEmbed lambda$new$2\nINFO: Video initialised ok\n\nOct 16, 2018 8:55:27 PM org.quelea.services.utils.FontInstaller lambda$setupBundledFonts$0\nINFO: Loaded bundled font C:\\Users\\Michael\\Documents\\NetBeansProjects\\Quelea\\Quelea\\icons\\bundledfonts\\NotoSans-Bold.ttf\n\nOct 16, 2018 8:55:27 PM org.quelea.services.utils.FontInstaller lambda$setupBundledFonts$0\nINFO: Loaded bundled font C:\\Users\\Michael\\Documents\\NetBeansProjects\\Quelea\\Quelea\\icons\\bundledfonts\\NotoSans-BoldItalic.ttf\n\nOct 16, 2018 8:55:27 PM org.quelea.services.utils.FontInstaller lambda$setupBundledFonts$0\nINFO: Loaded bundled font C:\\Users\\Michael\\Documents\\NetBeansProjects\\Quelea\\Quelea\\icons\\bundledfonts\\NotoSans-Italic.ttf\n\nOct 16, 2018 8:55:27 PM org.quelea.services.utils.FontInstaller lambda$setupBundledFonts$0\nINFO: Loaded bundled font C:\\Users\\Michael\\Documents\\NetBeansProjects\\Quelea\\Quelea\\icons\\bundledfonts\\NotoSans-Regular.ttf\n\nOct 16, 2018 8:55:27 PM org.quelea.services.utils.FontInstaller lambda$setupBundledFonts$0\nINFO: Loaded bundled font C:\\Users\\Michael\\Documents\\NetBeansProjects\\Quelea\\Quelea\\icons\\bundledfonts\\Oxygen-Bold.otf\n\nOct 16, 2018 8:55:27 PM org.quelea.services.utils.FontInstaller lambda$setupBundledFonts$0\nINFO: Loaded bundled font C:\\Users\\Michael\\Documents\\NetBeansProjects\\Quelea\\Quelea\\icons\\bundledfonts\\Oxygen-BoldItalic.otf\n\nOct 16, 2018 8:55:27 PM org.quelea.services.utils.FontInstaller lambda$setupBundledFonts$0\nINFO: Loaded bundled font C:\\Users\\Michael\\Documents\\NetBeansProjects\\Quelea\\Quelea\\icons\\bundledfonts\\Oxygen-Italic.otf\n\nOct 16, 2018 8:55:27 PM org.quelea.services.utils.FontInstaller lambda$setupBundledFonts$0\nINFO: Loaded bundled font C:\\Users\\Michael\\Documents\\NetBeansProjects\\Quelea\\Quelea\\icons\\bundledfonts\\Oxygen.otf\n\nOct 16, 2018 8:55:27 PM org.quelea.services.utils.FontInstaller lambda$setupBundledFonts$0\nINFO: Loaded bundled font C:\\Users\\Michael\\Documents\\NetBeansProjects\\Quelea\\Quelea\\icons\\bundledfonts\\Vegur-Bold.otf\n\nOct 16, 2018 8:55:27 PM org.quelea.services.utils.FontInstaller lambda$setupBundledFonts$0\nINFO: Loaded bundled font C:\\Users\\Michael\\Documents\\NetBeansProjects\\Quelea\\Quelea\\icons\\bundledfonts\\Vegur-Regular.otf\n\nOct 16, 2018 8:55:27 PM org.quelea.services.utils.UserFileChecker checkUserFiles\nINFO: Checking user files\n\nOct 16, 2018 8:55:27 PM org.quelea.windows.main.Main$1 run\nINFO: Number of displays: 2\n\nOct 16, 2018 8:55:27 PM org.quelea.windows.main.Main$1 run\nINFO: Starting lyric server on 1,111\n\nOct 16, 2018 8:55:27 PM org.quelea.windows.main.Main$1 run\nINFO: Starting remote control server on 1,112\n\nOct 16, 2018 8:55:27 PM org.quelea.windows.main.Main$1 run\nINFO: Starting auto-detection server on 50,015\n\nOct 16, 2018 8:55:27 PM org.quelea.windows.main.Main$1 run\nINFO: Hiding projector display on monitor 0 (base 0!)\n\nOct 16, 2018 8:55:27 PM org.quelea.windows.main.Main$1 run\nINFO: Hiding stage display on monitor 0 (base 0!)\n\nOct 16, 2018 8:55:27 PM org.quelea.data.db.HibernateUtil init\nINFO: Initialising hibernate\n\nOct 16, 2018 8:55:27 PM org.quelea.windows.main.Main$1 lambda$run$8\nINFO: Loading bibles\n\nOct 16, 2018 8:55:27 PM org.quelea.data.db.HibernateUtil init\nINFO: Initialised hibernate properties\n\nOct 16, 2018 8:55:27 PM org.quelea.data.bible.Bible parseXML\nINFO: Parsed bible: American Standard Version. Contains 66 books.\n\nOct 16, 2018 8:55:28 PM org.quelea.data.db.HibernateUtil init\nINFO: Initialised hibernate service registry\n\nOct 16, 2018 8:55:29 PM org.quelea.services.utils.VersionChecker getLatestVersion\nINFO: Checking for an updated version...\n\nOct 16, 2018 8:55:30 PM org.quelea.windows.options.ServerSettingsPanel getIP\nINFO: Found v4: 192.168.1.91\n\nOct 16, 2018 8:55:30 PM org.quelea.windows.options.ServerSettingsPanel getIP\nINFO: Found v4: 192.168.1.91\n\nOct 16, 2018 8:55:30 PM org.quelea.windows.main.MainPanel <init>\nINFO: Creating schedule panel\n\nOct 16, 2018 8:55:31 PM org.quelea.windows.main.MainPanel <init>\nINFO: Creating library panel\n\nOct 16, 2018 8:55:31 PM org.quelea.windows.library.LibraryPanel <init>\nINFO: Creating library panel\n\nOct 16, 2018 8:55:31 PM org.quelea.windows.library.LibraryPanel <init>\nINFO: Creating library song panel\n\nOct 16, 2018 8:55:31 PM org.quelea.windows.library.LibraryPanel <init>\nINFO: Creating library bible panel\n\nOct 16, 2018 8:55:31 PM org.quelea.windows.library.LibraryPanel <init>\nINFO: Creating library image panel\n\nOct 16, 2018 8:55:31 PM org.quelea.windows.library.LibraryPanel <init>\nINFO: Creating library video panel\n\nOct 16, 2018 8:55:31 PM org.quelea.windows.library.LibraryPanel <init>\nINFO: Creating library timer panel\n\nOct 16, 2018 8:55:31 PM org.quelea.windows.main.MainPanel <init>\nINFO: Creating preview panel\n\nOct 16, 2018 8:55:32 PM org.quelea.windows.library.VideoListPanel$1 lambda$run$3\nINFO: Grabbing frame for C:\\Users\\Michael\\.quelea\\vid\\abstract blue.mp4\n\nOct 16, 2018 8:55:32 PM org.quelea.windows.main.MainPanel <init>\nINFO: Creating live panel\n\nOct 16, 2018 8:55:32 PM org.quelea.windows.main.MainPanel <init>\nINFO: Creating split panels\n\nOct 16, 2018 8:55:32 PM org.quelea.windows.library.VideoListPanel$1 lambda$run$3\nINFO: Grabbed frame for C:\\Users\\Michael\\.quelea\\vid\\abstract blue.mp4\n\nOct 16, 2018 8:55:32 PM org.quelea.windows.library.VideoListPanel$1 lambda$run$3\nINFO: Grabbing frame for C:\\Users\\Michael\\.quelea\\vid\\earth and sun.mp4\n\nOct 16, 2018 8:55:32 PM org.quelea.windows.main.MainPanel <init>\nINFO: Created main panel\n\nOct 16, 2018 8:55:32 PM org.quelea.windows.library.VideoListPanel$1 lambda$run$3\nINFO: Grabbed frame for C:\\Users\\Michael\\.quelea\\vid\\earth and sun.mp4\n\nOct 16, 2018 8:55:59 PM org.quelea.windows.main.actionhandlers.ExitActionHandler exit\nINFO: exit() called\n\nOct 16, 2018 8:56:00 PM org.quelea.windows.main.actionhandlers.ExitActionHandler exit\nINFO: Saving window position...\n\nOct 16, 2018 8:56:00 PM org.quelea.windows.main.actionhandlers.ExitActionHandler exit\nINFO: Hiding main window...\n\nOct 16, 2018 8:56:00 PM org.quelea.windows.main.actionhandlers.ExitActionHandler exit\nINFO: Cleaning up displayables before exiting..\n\nOct 16, 2018 8:56:00 PM org.quelea.windows.main.actionhandlers.ExitActionHandler exit\nINFO: Cleaning up class org.quelea.data.displayable.SongDisplayable\n\nOct 16, 2018 8:56:00 PM org.quelea.windows.main.actionhandlers.ExitActionHandler exit\nINFO: Try to close OOfice if opened\n\nOct 16, 2018 8:56:00 PM org.quelea.windows.main.actionhandlers.ExitActionHandler exit\nINFO: Stopping mobile lyrics server\n\nOct 16, 2018 8:56:00 PM org.quelea.windows.main.actionhandlers.ExitActionHandler exit\nINFO: Stopping remote control server\n\nOct 16, 2018 8:56:00 PM org.quelea.windows.main.actionhandlers.ExitActionHandler exit\nINFO: Checking if Quelea currently is recording audio\n\n"
  },
  {
    "path": "Quelea/quelea.properties",
    "content": "#Auto save\n#Sat Aug 06 19:07:39 BST 2011\nprojector.screen=1\nprojector.coords=0,0,100,100\nprojector.mode=screen\nstage.screen=-1\nstage.coords=0,0,100,100\nstage.mode=screen\nsingle.monitor.warning=true\ndownload.location=http\\://quelea.org/download\ndefault.bible=American Standard Version\ncapital.first=false\ndiscuss.location=https\\://groups.google.com/group/quelea-discuss\nmax.chars=35\nmax.verses=100\nquelea.songpack.extension=qsp\nwebsite.location=http\\://www.quelea.org/\ncheck.update=true\nquelea.schedule.extension=qsch\ncontrol.screen=0\nupdate.url=http\\://code.google.com/p/quelea-projection/\nmin.lines=10\ndisplay.songinfotext=true\noutline.thickness=2\nnotice.box.height=40\nnotice.box.speed=8\ngod.words=god,God,jesus,Jesus,christ,Christ,you,You,he,He,lamb,Lamb,lord,Lord,him,Him,son,Son,i,I,his,His,your,Your,king,King,saviour,Saviour,savior,Savior,majesty,Majesty,alpha,Alpha,omega,Omega\none.line.mode=false\nlanguage.file=gb.lang\nactive.selection.color=30,160,225\ninactive.selection.color=150,150,150\nstage.chord.color=200,200,200\nstage.lyrics.color=255,255,255\nstage.background.color=0,0,0\nstage.show.chords=true\nstage.text.alignment=LEFT\nstage.font=SansSerif\nfacebook.page=http://www.facebook.com/quelea.projection\ntext.shadow=false\nenable.drag.and.drop=true\nuniform.font.size=true\nfade.duration=1\nlogo.image.location=icons/logo default.png\nchosen.fonts=Arial|Liberation Sans|Noto Sans|Oxygen|Roboto|Vegur|Roboto Mono|Ubuntu Mono\nuse.remote.control=true\nsmall.song.text.h.position=Right\nsmall.song.text.v.position=Bottom\nsmall.song.text.size=0.07\nsmall.song.text.show.on.slides=all\nsmall.bible.text.h.position=Left\nsmall.bible.text.v.position=Top\nsmall.bible.text.size=0.1\nshow.small.bible.text=true\nshow.small.song.text=true\nuse.max.bible.verses=true\nmax.bible.items=5\nlogo.fade.duration=1000\nblack.fade.duration=1000\nclear.fade.duration=1000\ntranslate.client.id=quelea-projection\ntranslate.client.secret=wk4+wd9YJkjIHmz2qwD1oR7pP9/kuHOL6OsaOKEi80U=\nclear.stageview.with.main=true"
  },
  {
    "path": "Quelea/quelea64.iss",
    "content": "; Script generated by the Inno Setup Script Wizard.\n; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!\n\n#define MyAppName \"Quelea\"\n#define MyAppPublisher \"Michael Berry\"\n#define MyAppURL \"http://www.quelea.org\"\n#define MyAppExeName \"quelea64.exe\"\n\n[Setup]\n; NOTE: The value of AppId uniquely identifies this application.\n; Do not use the same AppId value in installers for other applications.\n; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)\nAppId={{5A8934E9-7C09-4BA1-82A8-A572960C2B4B}\nArchitecturesInstallIn64BitMode=x64\nAppName={#MyAppName}\nAppVersion={#MyAppVersion}\nAppMutex=queleamutex\n;AppVerName={#MyAppName} {#MyAppVersion}\nAppPublisher={#MyAppPublisher}\nAppPublisherURL={#MyAppURL}\nAppSupportURL={#MyAppURL}\nAppUpdatesURL={#MyAppURL}\nDefaultDirName={pf}\\{#MyAppName}\nDefaultGroupName={#MyAppName}\nAllowNoIcons=yes\nLicenseFile=licenses/gplv3.txt\nOutputBaseFilename=setup64\nCompression=lzma\nSolidCompression=yes\nChangesAssociations=yes\n\n[Registry]\nRoot: HKCR; Subkey: \".qsch\"; ValueType: string; ValueName: \"\"; ValueData: \"Quelea Schedule\"; Flags: uninsdeletevalue\nRoot: HKCR; Subkey: \"Quelea Schedule\"; ValueType: string; ValueName: \"\"; ValueData: \"Quelea Schedule\"; Flags: uninsdeletekey\nRoot: HKCR; Subkey: \"Quelea Schedule\\DefaultIcon\"; ValueType: string; ValueName: \"\"; ValueData: \"{app}\\icons\\logo.ico,0\"\nRoot: HKCR; Subkey: \"Quelea Schedule\\shell\\open\\command\"; ValueType: string; ValueName: \"\"; ValueData: \"\"\"{app}\\Quelea64.exe\"\" \"\"%1\"\"\"\n\n[Languages]\nName: \"english\"; MessagesFile: \"compiler:Default.isl\"\n\n[Tasks]\nName: \"desktopicon\"; Description: \"{cm:CreateDesktopIcon}\"; GroupDescription: \"{cm:AdditionalIcons}\"\nName: \"quicklaunchicon\"; Description: \"{cm:CreateQuickLaunchIcon}\"; GroupDescription: \"{cm:AdditionalIcons}\"; Flags: unchecked\n\n[Dirs]  \nName: \"{app}\"; Permissions: everyone-modify;  \n\n[InstallDelete]\nType: filesandordirs; Name: \"{app}/lib\"\nType: filesandordirs; Name: \"{app}/vbs\"\nType: filesandordirs; Name: \"{app}/src\"\nType: filesandordirs; Name: \"{app}/server\"\nType: filesandordirs; Name: \"{app}/dictionaries\"\nType: filesandordirs; Name: \"{app}/bibles\"\nType: filesandordirs; Name: \"{app}/icons\"\nType: filesandordirs; Name: \"{app}/img\"\nType: filesandordirs; Name: \"{app}/vid\"\nType: filesandordirs; Name: \"{app}/licenses\"\nType: filesandordirs; Name: \"{app}/themes\"\nType: filesandordirs; Name: \"{app}/winjre\"\nType: filesandordirs; Name: \"{app}/winjre64\"\n\n[Files]\nSource: gs.msi; DestDir: {tmp}; Flags: deleteafterinstall;\nSource: \"build/launch4j/Quelea64.exe\"; DestDir: \"{app}\"; Flags: ignoreversion\nSource: \"dist/Quelea.jar\"; DestDir: \"{app}\"; Flags: ignoreversion\nSource: \"fopcfg.xml\"; DestDir: \"{app}\"; Flags: ignoreversion\nSource: \"quelea.properties\"; DestDir: \"{app}\"; Flags: ignoreversion\nSource: \"scheduleformat.xsl\"; DestDir: \"{app}\"; Flags: ignoreversion\nSource: \"songformat.xsl\"; DestDir: \"{app}\"; Flags: ignoreversion\nSource: \"dist/lib\\*\"; DestDir: \"{app}\\lib\"; Flags: ignoreversion recursesubdirs createallsubdirs\nSource: \"dist/vbs\\*\"; DestDir: \"{app}\\vbs\"; Flags: ignoreversion recursesubdirs createallsubdirs\nSource: \"server\\*\"; DestDir: \"{app}\\server\"; Flags: ignoreversion recursesubdirs createallsubdirs\nSource: \"dictionaries\\*\"; DestDir: \"{app}\\dictionaries\"; Flags: ignoreversion recursesubdirs createallsubdirs\nSource: \"languages\\*\"; DestDir: \"{app}\\languages\"; Flags: ignoreversion recursesubdirs createallsubdirs\nSource: \"dictionaries\\*\"; DestDir: \"{app}\\dictionaries\"; Flags: ignoreversion recursesubdirs createallsubdirs\nSource: \"bibles\\*\"; DestDir: \"{app}\\bibles\"; Flags: ignoreversion recursesubdirs createallsubdirs\nSource: \"src\\*\"; DestDir: \"{app}\\src\"; Flags: ignoreversion recursesubdirs createallsubdirs\nSource: \"icons\\*\"; DestDir: \"{app}\\icons\"; Flags: ignoreversion recursesubdirs createallsubdirs\nSource: \"img\\*\"; DestDir: \"{app}\\img\"; Flags: ignoreversion recursesubdirs createallsubdirs\nSource: \"vid\\*\"; DestDir: \"{app}\\vid\"; Flags: ignoreversion recursesubdirs createallsubdirs\nSource: \"licenses\\*\"; DestDir: \"{app}\\licenses\"; Flags: ignoreversion recursesubdirs createallsubdirs\nSource: \"themes\\*\"; DestDir: \"{app}\\themes\"; Flags: ignoreversion recursesubdirs createallsubdirs\nSource: \"dist\\winjre64\\*\"; DestDir: \"{app}\\winjre64\"; Flags: ignoreversion recursesubdirs createallsubdirs\n; NOTE: Don't use \"Flags: ignoreversion\" on any shared system files\n\n[Icons]\nName: \"{group}\\{#MyAppName}\"; Filename: \"{app}\\{#MyAppExeName}\"; IconFilename: \"{app}\\icons\\logo.ico\"\nName: \"{commondesktop}\\{#MyAppName}\"; Filename: \"{app}\\{#MyAppExeName}\"; IconFilename: \"{app}\\icons\\logo.ico\"; Tasks: desktopicon\nName: \"{userappdata}\\Microsoft\\Internet Explorer\\Quick Launch\\{#MyAppName}\"; IconFilename: \"{app}\\icons\\logo.ico\"; Filename: \"{app}\\{#MyAppExeName}\"; Tasks: quicklaunchicon\n\n[Run]\nFilename: \"msiexec.exe\"; Parameters: \"/i \"\"{tmp}\\gs.msi\"\" /qb- INSTALLLEVEL=1000\"; WorkingDir: {tmp};\nFilename: \"{app}\\{#MyAppExeName}\"; Description: \"{cm:LaunchProgram,{#StringChange(MyAppName, \"&\", \"&&\")}}\"; Flags: shellexec postinstall skipifsilent"
  },
  {
    "path": "Quelea/scheduleformat.xsl",
    "content": "<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n<xsl:stylesheet version=\"1.1\" xmlns:xsl=\"http://www.w3.org/1999/XSL/Transform\"\n                xmlns:fo=\"http://www.w3.org/1999/XSL/Format\" xmlns:xslt=\"http://www.w3.org/1999/XSL/Transform\"\n                exclude-result-prefixes=\"fo\">\n    <xsl:template match=\"*\"></xsl:template>\n    <xsl:template match=\"schedule\">\n        <fo:root xmlns:fo=\"http://www.w3.org/1999/XSL/Format\" font-family=\"Roboto\">\n            <fo:layout-master-set>\n                <fo:simple-page-master master-name=\"my-page\">\n                    <fo:region-body margin=\"1in\"/>\n                </fo:simple-page-master>\n            </fo:layout-master-set>\n            <fo:page-sequence master-reference=\"my-page\">\n                <fo:flow flow-name=\"xsl-region-body\">\n                    <fo:block font-size=\"18pt\" font-weight=\"bold\" space-after=\"12pt\">\n                        <xsl:value-of select=\"title\"/>\n                    </fo:block>\n                    <xsl:apply-templates select=\"*\"/>\n                </fo:flow>\n            </fo:page-sequence>\n        </fo:root>\n    </xsl:template>\n    <xsl:template name=\"row\">\n        <xsl:param name = \"content\" />\n        <xsl:param name = \"details\" />\n        <fo:block space-after=\"24pt\">\n            <xsl:value-of select=\"position() -1\"/>.\n            <fo:inline font-size=\"12pt\" padding-left=\"4mm\" >\n            <xsl:value-of select = \"$content\" />\n            </fo:inline>\n            <fo:inline font-size=\"8pt\" padding-left=\"22mm\" font-style=\"italic\">\n                <xsl:value-of select = \"$details\" />\n            </fo:inline>\n        </fo:block>\n    </xsl:template>\n    <xsl:template match=\"song\">\n        <xsl:call-template name=\"row\">\n            <xsl:with-param name=\"content\">\n                <xsl:value-of select=\"title\"/>\n            </xsl:with-param>\n            <xsl:with-param name=\"details\">\n                <xsl:choose>\n                    <xsl:when test=\"author != ''\"><xsl:value-of select=\"author\"/></xsl:when>\n                </xsl:choose>\n                <xsl:choose>\n                    <xsl:when test=\"ccli != ''\">(CCLI <xsl:value-of select=\"ccli\"/>)</xsl:when>\n                </xsl:choose>\n            </xsl:with-param>\n        </xsl:call-template>\n    </xsl:template>\n    <xsl:template match=\"passage\">\n        <xsl:call-template name=\"row\">\n            <xsl:with-param name=\"content\">\n                <xsl:value-of select=\"@summary\"/>\n            </xsl:with-param>\n            <xsl:with-param name=\"details\">\n                <xsl:choose>\n                    <xsl:when test=\"@bible != ''\">(<xsl:value-of select=\"@bible\"/>) </xsl:when>\n                </xsl:choose>\n            </xsl:with-param>\n        </xsl:call-template>\n    </xsl:template>\n    <xsl:template name=\"file\">\n        <xsl:param name = \"filetype\" />\n        <xsl:call-template name=\"row\">\n            <xsl:with-param name=\"content\">\n                <xsl:value-of select=\"$filetype\"/>\n            </xsl:with-param>\n            <xsl:with-param name=\"details\">\n                <fo:inline font-family=\"monospace\"><xsl:value-of select=\"text()\"/></fo:inline>\n            </xsl:with-param>\n        </xsl:call-template>\n    </xsl:template>\n    <xsl:template match=\"fileaudio\">\n        <xsl:call-template name=\"file\">\n            <xsl:with-param name=\"filetype\">\n                Audio\n            </xsl:with-param>\n        </xsl:call-template>\n    </xsl:template>\n    <xsl:template match=\"fileimage\">\n        <xsl:call-template name=\"file\">\n            <xsl:with-param name=\"filetype\">\n                Image\n            </xsl:with-param>\n        </xsl:call-template>\n    </xsl:template>\n    <xsl:template match=\"filepdf\">\n        <xsl:call-template name=\"file\">\n            <xsl:with-param name=\"filetype\">\n                PDF\n            </xsl:with-param>\n        </xsl:call-template>\n    </xsl:template>\n    <xsl:template match=\"filepresentation\">\n        <xsl:call-template name=\"file\">\n            <xsl:with-param name=\"filetype\">\n                Presentation\n            </xsl:with-param>\n        </xsl:call-template>\n    </xsl:template>\n    <xsl:template match=\"filevideo\">\n        <xsl:call-template name=\"file\">\n            <xsl:with-param name=\"filetype\">\n                Video\n            </xsl:with-param>\n        </xsl:call-template>\n    </xsl:template>\n    <xsl:template match=\"url\">\n        <xsl:call-template name=\"file\">\n            <xsl:with-param name=\"filetype\">\n                Web\n            </xsl:with-param>\n        </xsl:call-template>\n    </xsl:template>\n    <xsl:template match=\"fileimagegroup\">\n        <xsl:call-template name=\"file\">\n            <xsl:with-param name=\"filetype\">\n                Image Group\n            </xsl:with-param>\n        </xsl:call-template>\n    </xsl:template>\n</xsl:stylesheet>"
  },
  {
    "path": "Quelea/server/addpassagercspage.htm",
    "content": "<!DOCTYPE html>\r\n<html>\r\n    <head>\r\n        <title>Quelea Remote Control</title>\r\n        <meta charset=\"utf-8\">\r\n        <meta name=\"apple-mobile-web-app-capable\" content=\"yes\">\r\n        <style type=\"text/css\">\r\n\r\n        </style>\r\n        <script>\r\n            function setup() {\r\n                document.passageselect.translations.options.length = 0\r\n\r\n                var request = new XMLHttpRequest();\r\n                request.open('GET', '/translations', true);\r\n                request.onload = function () {\r\n                    if (request.status >= 200 && request.status < 400) {\r\n                        var resp = request.responseText;\r\n                        var list = resp.split(\"\\n\");\r\n                        for (i = 0; i < list.length; i++) {\r\n                            if (list[i] !== \"\") {\r\n                                if (list[i][0] === '*') {\r\n                                    var item = list[i].substring(1);\r\n                                    document.passageselect.translations.options[i] = new Option(item, item, true, true);\r\n                                }\r\n                                else {\r\n                                    document.passageselect.translations.options[i] = new Option(list[i], list[i]);\r\n                                }\r\n                            }\r\n                        }\r\n                    }\r\n                    bookLoad();\r\n                };\r\n                request.send();\r\n\r\n            }\r\n\r\n            function bookLoad() {\r\n                document.passageselect.books.options.length = 0\r\n                var selected = document.passageselect.translations.options[document.passageselect.translations.options.selectedIndex].value;\r\n                var request = new XMLHttpRequest();\r\n                request.open('GET', '/books/' + selected, true);\r\n                request.onload = function () {\r\n                    if (request.status >= 200 && request.status < 400) {\r\n                        var resp = request.responseText;\r\n                        var list = resp.split(\"\\n\");\r\n                        for (i = 0; i < list.length; i++) {\r\n                            if (list[i] !== \"\") {\r\n                                document.passageselect.books.options[i] = new Option(list[i], list[i]);\r\n                            }\r\n                        }\r\n                    }\r\n                };\r\n                request.send();\r\n            }\r\n\r\n            function addPassage() {\r\n                var translation = document.passageselect.translations.options[document.passageselect.translations.options.selectedIndex].value;\r\n                var book = document.passageselect.books.options[document.passageselect.books.options.selectedIndex].value;\r\n                var verses = document.passageselect.verses.value;\r\n\r\n                window.location.href = '/addbible/' + translation + '/' + book + '/' + verses;\r\n            }\r\n\r\n\r\n            window.onload = setup;\r\n        </script>\r\n    </head>\r\n    <body>\r\n        <form name=\"passageselect\" onsubmit=\"addPassage()\" >\r\n            <select name=\"translations\" onchange=\"bookLoad()\">\r\n\r\n            </select>\r\n            <select name=\"books\">\r\n\r\n            </select>\r\n            <input name=\"verses\" placeholder=\"$2\" />\r\n            <button type=\"submit\" form=\"passageselect\" value=\"Submit\" onclick=\"addPassage()\">$1</button>\r\n        </form>\r\n\r\n    </body>\r\n</html>"
  },
  {
    "path": "Quelea/server/addsongrcspage.htm",
    "content": "<!DOCTYPE html>\r\n<html>\r\n    <head>\r\n        <title>Quelea Remote Control</title>\r\n        <meta charset=\"utf-8\">\r\n        <meta name=\"apple-mobile-web-app-capable\" content=\"yes\">\r\n        <style type=\"text/css\">\r\n\r\n        </style>\r\n        <script>\r\n            function addSong() {\r\n                window.location.href = '/search/' + document.songselect.song.value;\r\n            }\r\n        </script>\r\n    </head>\r\n    <body>\r\n        <form name=\"songselect\" onsubmit=\"addSong()\">\r\n            <input name=\"song\" />\r\n            <button type=\"submit\" form=\"songselect\" value=\"Submit\" onclick=\"addSong()\">$1</button>\r\n        </form>\r\n\r\n    </body>\r\n</html>"
  },
  {
    "path": "Quelea/server/defaultpage.htm",
    "content": "<!DOCTYPE html>\n<html>\n    <head>\n        <title>Quelea Lyrics Display</title>\n        <meta charset=\"utf-8\">\n        <meta name=\"apple-mobile-web-app-capable\" content=\"yes\">\n        <meta name=\"mobile-web-app-capable\" content=\"yes\">\n        <link rel=\"icon\" type=\"image/png\" href=\"data:image/png;base64,iVBORw0KGgo=\">\n        <style type=\"text/css\">\n            #child {\n                white-space: nowrap;\n            }\n\n            #child .bible {\n                white-space: normal;\n            }\n\n            .line {\n                line-height: 3;\n            }\n\n            .chord {\n                display: inline-block;\n                transform: translateY(-33%);\n                position: absolute;\n                font-style: italic;\n            }\n            \n            .button {\n                display: block;\n                width: 10px;\n                height: 10px;\n                background: #4E9CAF;\n                padding: 10px;\n                border-radius: 20px;\n                color: white;\n                font-weight: bold;\n                text-decoration:none;\n                font-size: 20px;\n                opacity:0.6;\n                font-family: 'DejaVu Sans',sans-serif;\n            }\n            .modalDialog {\n                position: fixed;\n                font-family: Arial, Helvetica, sans-serif;\n                top: 0;\n                right: 0;\n                bottom: 0;\n                left: 0;\n                background: rgba(0,0,0,0.8);\n                z-index: 1;\n                opacity:0;\n                -webkit-transition: opacity 400ms ease-in;\n                -moz-transition: opacity 400ms ease-in;\n                transition: opacity 400ms ease-in;\n                pointer-events: none;\n            }\n\n            .modalDialog:target {\n                opacity:1;\n                pointer-events: auto;\n            }\n\n            .modalDialog > div {\n                width: 80%;\n                max-width: 400px;\n                position: relative;\n                margin: 10% auto;\n                padding: 5px 20px 13px 20px;\n                border-radius: 10px;\n                background: #fff;\n                background: -moz-linear-gradient(#fff, #999);\n                background: -webkit-linear-gradient(#fff, #999);\n                background: -o-linear-gradient(#fff, #999);\n            }\n\n            .close {\n                background: #606061;\n                color: #FFFFFF;\n                line-height: 25px;\n                position: absolute;\n                right: -12px;\n                text-align: center;\n                top: -10px;\n                width: 24px;\n                text-decoration: none;\n                font-weight: bold;\n                -webkit-border-radius: 12px;\n                -moz-border-radius: 12px;\n                border-radius: 12px;\n                -moz-box-shadow: 1px 1px 3px #000;\n                -webkit-box-shadow: 1px 1px 3px #000;\n                box-shadow: 1px 1px 3px #000;\n            }\n\n            .close:hover { background: #00d9ff; }\n            #dynamicDiv\n            {\n                background: #CCCCCC;\n                min-height: 100%;\n                overflow: hidden;\n                color: #111111;\n                font-family:\"Helvetica\";\n                font-weight:bold;\n            }\n        </style>\n        <script type=\"text/javascript\" src=\"jscolor.js\"></script>\n        <script>\n            var xmlhttp;\n            var translationhttp;\n            var translations;\n            var translations = \"\";\n            var currentText = \"\";\n            function setup()\n            {\n                setInterval(function () {\n                    loadXMLDoc();\n                    shrink();\n                    checkTranslation();\n                }, 500);\n                xmlhttp = new XMLHttpRequest();\n                xmlhttp.onreadystatechange = function ()\n                {\n                    if (xmlhttp.readyState === 4 && xmlhttp.status === 200)\n                    {\n                        if (xmlhttp.responseText !== \"\")\n                        {\n                            if (currentText != xmlhttp.responseText) {\n                                document.getElementById(\"child\").innerHTML = xmlhttp.responseText;\n                                currentText = xmlhttp.responseText;\n                            }\n\n                        } else\n                        {\n                            getLiveText();\n                        }\n                        shrink();\n                    }\n                }\n                translationhttp = new XMLHttpRequest();\n                translationhttp.onreadystatechange = function ()\n                {\n                    if (translationhttp.readyState === 4 && translationhttp.status === 200)\n                    {\n                        var str = translationhttp.responseText;\n                        if (str !== \"\" && str !== \"None\")\n                        {\n                            document.getElementById(\"translationButton\").style.visibility = \"visible\";\n                            if (translations !== str) {\n                                console.log(\"New languages\");\n                                translations = str;\n                                if (str.indexOf(getCookie(\"translation\")) === -1)\n                                {\n                                    setCookie(\"translation\", \"default\", 100);\n                                }\n                                var x = document.getElementById(\"selectLanguage\");\n                                removeOptions(x);\n                                var res = str.split(\"\\n\");\n                                var arrayLength = res.length;\n                                for (var i = 0; i < arrayLength - 1; i++) {\n                                    var c = document.createElement(\"option\");\n                                    c.text = res[i];\n                                    x.options.add(c, 1);\n                                }\n                            }\n                        } else\n                        {\n                            document.getElementById(\"translationButton\").style.visibility = \"hidden\";\n                        }\n                    }\n                }\n                var fontcolor = getCookie(\"fontcolor\");\n                if (!fontcolor) {\n                    fontcolor = '#000000';\n                }\n                document.getElementById('dynamicDiv').style.color = fontcolor;\n                document.getElementById('font-color').color.fromString(fontcolor);\n                var backcolor = getCookie(\"backcolor\");\n                if (!backcolor) {\n                    backcolor = '#CCCCCC';\n                }\n                document.body.style.background = backcolor;\n                document.getElementById('dynamicDiv').style.background = backcolor;\n                document.getElementById('back-color').color.fromString(backcolor);\n                var chords = getCookie(\"chords\");\n                if (chords) {\n                    document.getElementById('chords').checked = chords;\n                }\n            }\n            function shrink()\n            {\n                var textDiv = document.getElementById(\"dynamicDiv\");\n                textDiv.style.fontSize = \"200px\";\n                var size = 200;\n//                var style = window.getComputedStyle(textDiv, null).getPropertyValue('font-size');\n//                var fontSize = parseFloat(style);\n                while (document.body.clientHeight > window.innerHeight)\n                {\n                    size = size - 5;\n                    textDiv.style.fontSize = (size) + \"px\";\n                }\n                while (dynamicDiv.scrollWidth > document.body.clientWidth)\n                {\n                    size = size - 5;\n                    textDiv.style.fontSize = (size) + \"px\";\n                }\n            }\n            window.onload = setup;\n            function loadXMLDoc()\n            {\n                var translation = getCookie(\"translation\");\n                if ((!translation) || (translation === \"default\"))\n                {\n                    if (document.getElementById(\"chords\").checked) {\n                        xmlhttp.open(\"GET\", \"/chordsv2\", true);\n                    } else {\n                        xmlhttp.open(\"GET\", \"/lyrics\", true);\n                    }\n                } else\n                {\n                    xmlhttp.open(\"GET\", \"/gettranslation/\" + translation, true);\n                }\n                xmlhttp.timeout = 4000;\n                xmlhttp.ontimeout = function () {\n                    document.getElementById(\"child\").innerHTML = \"\";\n                }\n                xmlhttp.send();\n            }\n            function setCookie(cname, cvalue, exdays)\n            {\n                var d = new Date();\n                d.setTime(d.getTime() + (exdays * 24 * 60 * 60 * 1000));\n                var expires = \"expires=\" + d.toGMTString();\n                document.cookie = cname + \"=\" + cvalue + \"; \" + expires;\n            }\n            function getCookie(cname)\n            {\n                var name = cname + \"=\";\n                var ca = document.cookie.split(';');\n                for (var i = 0; i < ca.length; i++)\n                {\n                    var c = ca[i].trim();\n                    if (c.indexOf(name) == 0)\n                        return c.substring(name.length, c.length);\n                }\n                return \"\";\n            }\n            function getLiveText()\n            {\n                var livetext;\n                livetext = new XMLHttpRequest();\n                livetext.onreadystatechange = function ()\n                {\n                    if (livetext.readyState === 4 && livetext.status === 200)\n                    {\n                        if (livetext.responseText != currentText) {\n                            document.getElementById(\"child\").innerHTML = livetext.responseText;\n                        }\n\n                    }\n                }\n                livetext.open(\"GET\", \"/livetext\", true); // livetext\n                livetext.timeout = 4000;\n                livetext.ontimeout = function () {\n                    document.getElementById(\"child\").innerHTML = \"\";\n                }\n                livetext.send();\n            }\n            function checkTranslation()\n            {\n                translationhttp.open(\"GET\", \"/songtranslations\", true);\n                translationhttp.timeout = 4000;\n                translationhttp.ontimeout = function () {\n                    document.getElementById(\"translationButton\").style.visibility = \"hidden\";\n                }\n                translationhttp.send();\n            }\n            function removeOptions(selectbox)\n            {\n                var i;\n                for (i = selectbox.options.length - 1; i >= 1; i--)\n                {\n                    selectbox.remove(i);\n                }\n            }\n            function setLanguage()\n            {\n                var myselect = document.getElementById(\"selectLanguage\");\n                setCookie(\"translation\", myselect.options[myselect.selectedIndex].value, 100);\n                window.location = \"/#close\";\n            }\n        </script>\n    </head>\n    <body>\n        <div id=\"dynamicDiv\" aria-live=\"assertive\"><div id=\"child\">[loading.text]...</div></div>\n        <div style=\"position: absolute; top: 10px; right: 10px;\">\n            <a style=\"\" class=\"button\" href=\"#openModal\" aria-hidden=\"true\"></a>\n            <a href=\"#openModal\" aria-hidden=\"true\"><img style=\"font-family: 'DejaVu Sans',sans-serif;position: absolute; top: 5px; right: 5px;font-size:30px;text-decoration:none;\" src=\"gear.png\" alt=\"&#9881;\" height=\"20\" width=\"20\"/></a>\n        </div>\n        <div id=\"translationButton\" style=\"position: absolute; bottom: 50px; right: 10px; visibility: hidden\">\n            <a href=\"#selectTranslation\"><img style=\"font-family: 'DejaVu Sans',sans-serif;position: absolute; top: 5px; right: 5px;font-size:30px;text-decoration:none;\" src=\"translate.png\" alt=\"&#9881;\" height=\"40\" width=\"40\"/></a>\n        </div>\n        <div id=\"openModal\" class=\"modalDialog\" aria-hidden=\"true\">\n            <div>\n                <a href=\"#close\" title=\"Close\" class=\"close\">X</a>\n                <h2>[change.graphics.label]</h2>\n                <div><p>[font.colour.label]: <input id=\"font-color\" type=\"text\" readonly class=\"color\" onchange=\"javascript:document.getElementById('dynamicDiv').style.color = '#' + document.getElementById('font-color').value;\n                        setCookie('fontcolor', '#' + document.getElementById('font-color').value, 100);\"></p></div>\n\n                <div><p>[background.colour.label]: <input id=\"back-color\" type=\"text\" readonly class=\"color\" onchange=\"javascript:document.getElementById('dynamicDiv').style.background = '#' + document.getElementById('back-color').value;\n                        setCookie('backcolor', '#' + document.getElementById('back-color').value, 100); document.body.style.background ='#' + document.getElementById('back-color').value\"></p></div>\n\n                <div><p>[show.chords.label] <input type=\"checkbox\" name=\"chords\" id=\"chords\" onchange=\"setCookie('chords', document.getElementById('chords').checked, 100);\n                        shrink();\"></p></div>\n\n            </div>\n        </div>\n        <div id=\"selectTranslation\" class=\"modalDialog\" aria-hidden=\"true\">\n            <div>\n                <a href=\"#close\" title=\"Close\" class=\"close\">X</a>\n                <h2>[select.language]</h2>\n                <select id=\"selectLanguage\" onChange=\"setLanguage()\" style=\"width: 100%\">\n                    <option value=\"default\">[default.translation]</option>\n                </select>\n            </div>\n        </div>\n    </body>\n</html>\n"
  },
  {
    "path": "Quelea/server/defaultpasswordpage.htm",
    "content": "<!DOCTYPE html>\r\n<html>\r\n    <head>\r\n        <title>Quelea Remote Control</title>\r\n        <meta charset=\"utf-8\">\r\n        <meta name=\"viewport\" content=\"width=device-width, initial-scale=1, shrink-to-fit=no\">\r\n        <meta name=\"apple-mobile-web-app-capable\" content=\"yes\">\r\n        <style type=\"text/css\">\r\n            body {\r\n                font-family: 'DejaVu Sans',sans-serif;\r\n                width: 100%;\r\n                text-align: center;\r\n            }\r\n\r\n            h4 {\r\n                color:red;\r\n                font-style: italic;\r\n            }\r\n        </style>\r\n    </head>\r\n    <body>\r\n        <h4>[remote.login.text]</h4><br/>\r\n        <form>\r\n            <input name=\"password\">\r\n            <button type=\"submit\" formmethod=\"POST\" formaction=\"/\">[submit.button.text]</button>\r\n        </form>\r\n\r\n    </body>\r\n</html>\r\n"
  },
  {
    "path": "Quelea/server/defaultrcspage.htm",
    "content": "<!DOCTYPE html>\r\n<html>\r\n<head>\r\n    <title>Quelea Remote Control</title>\r\n    <meta charset=\"utf-8\">\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1, shrink-to-fit=no\">\r\n    <meta name=\"apple-mobile-web-app-capable\" content=\"yes\">\r\n    <style type=\"text/css\">\r\n            body {\r\n                font-family: 'DejaVu Sans',sans-serif;\r\n                width: 100%;\r\n                text-align: center;\r\n                margin: 0;\r\n            }\r\n\r\n            .toggleButton {\r\n                width: 5em;\r\n                height: 5em;\r\n                margin-right: 2em;\r\n                -webkit-border-radius: 50%;\r\n                -moz-border-radius: 50%;\r\n                border-radius: 50%;\r\n                -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.52);\r\n                -moz-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.52);\r\n                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.52);\r\n                position: sticky;\r\n                background-repeat: no-repeat;\r\n                background-position: center;\r\n                background-size: contain;\r\n                background-color: #dfdfdf;\r\n            }\r\n\r\n            .navButton {\r\n                margin-bottom: 10px;\r\n                width: 1.2em;\r\n                max-width: 150px;\r\n                max-height: none;\r\n                background-color: #dfdfdf;\r\n                -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.52);\r\n                -moz-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.52);\r\n                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.52);\r\n                -webkit-border-radius: 10%;\r\n                -moz-border-radius: 0;\r\n                border-radius: 10%;\r\n                font-size: 3em;\r\n                text-align: center;\r\n            }\r\n\r\n            .navButtonContainer {\r\n                position: fixed;\r\n                width: 3em;\r\n                right: 0;\r\n                margin-right: 2em;\r\n                text-align: right;\r\n                margin-top:25vh;\r\n                padding-bottom:4vh;\r\n            }\r\n\r\n            .toggleButtonContainer {\r\n                position: fixed;\r\n                padding-top: 1em;\r\n                padding-bottom: 1em;\r\n                margin-top: 4em;\r\n                width: 100%;\r\n                height: auto;\r\n                text-align: center;\r\n                background-color: white;\r\n            }\r\n\r\n            .slideButton {\r\n                height: 20vh;\r\n            }\r\n\r\n            .itemButton {\r\n                height: 13vh;\r\n            }\r\n\r\n            .unselected {\r\n                border: solid 1em #dfdfdf;\r\n            }\r\n\r\n            .active {\r\n                border: solid 1em #777777;\r\n            }\r\n\r\n            .smallbutton {\r\n                border:1px solid #cacaca;\r\n                -webkit-border-radius: 10px;\r\n                -moz-border-radius: 10px;\r\n                border-radius: 8px;\r\n                min-height: 40px;\r\n                max-height: 40px;\r\n                min-width: 80px;\r\n                max-width: 150px;\r\n                margin: 5px;\r\n                margin-left:auto;\r\n                padding: 0px;\r\n                font-size:1em;\r\n                vertical-align: middle;\r\n                color: black;\r\n            }\r\n\r\n            #center {\r\n                margin-top: 10em;\r\n                text-align: center;\r\n                display: block;\r\n                width: 60%;\r\n                margin-left:auto;\r\n                margin-right:auto;\r\n                height: auto;\r\n                padding-bottom: 6em;\r\n            }\r\n\r\n            #lyrics {\r\n                display: inline-block;\r\n                font-size: 1em;\r\n            }\r\n\r\n            a {\r\n                color: black;\r\n                text-decoration: none;\r\n            }\r\n\r\n            a:active {\r\n                color: black;\r\n            }\r\n\r\n            a:hover {\r\n                text-decoration: underline;\r\n\r\n            }\r\n\r\n            a:visited {\r\n                color: black;\r\n            }\r\n\r\n            .inner {\r\n                padding-top: 20px;\r\n                padding-bottom: 20px;\r\n            }\r\n\r\n            iframe {\r\n                border: none;\r\n            }\r\n\r\n            #logout {\r\n                text-align: right;\r\n                position: fixed;\r\n                margin-bottom: 20px;\r\n            }\r\n\r\n            #logout button {\r\n                text-align:center;\r\n                width:25%;\r\n                height:20%;\r\n                min-height: 100px;\r\n                min-width: 100px;\r\n                max-width: 200px;\r\n                margin-top: 25px;\r\n                margin: 10px;\r\n                margin-left:auto;\r\n                padding: 0px;\r\n                font-size: 2em;\r\n            }\r\n\r\n            .empty {\r\n                font-size: 100%;\r\n                cursor: pointer;\r\n                margin: 0px;\r\n            }\r\n\r\n            #slider {\r\n                width:500px;\r\n                top:100px;\r\n                position:absolute;\r\n                z-index:2;\r\n            }\r\n\r\n            #scheduleHeader {\r\n                width:18em;\r\n                height:100%;\r\n                position:absolute;\r\n                left:0;\r\n            }\r\n\r\n            #scheduleHeader h3 {\r\n                background-color:#111111;\r\n                height: auto;\r\n                color: white;\r\n                margin: 0;\r\n                padding: 1.1em;\r\n            }\r\n\r\n            #sidebar {\r\n                position:absolute;\r\n                top:180px;\r\n                left:18px;\r\n            }\r\n\r\n            #sidebar1 {\r\n                position:absolute;\r\n                top:180px;\r\n                left:18px;\r\n            }\r\n\r\n            #schedule {\r\n                text-align: left;\r\n                height: auto;\r\n                overflow: auto;\r\n            }\r\n\r\n            #searcharea {\r\n                text-align: left;\r\n                height: 200px;\r\n                overflow: auto;\r\n            }\r\n\r\n            .title {\r\n\t\t\t\tcolor: #ff4141;\r\n\t\t\t}\r\n\r\n            .drawer {\r\n              height: 100vh;\r\n              width: 0px;\r\n              box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);\r\n              position: fixed;\r\n              z-index: 1;\r\n              top: 0;\r\n              left: 0;\r\n              background-color: #fff;\r\n              overflow-x: hidden;\r\n              transition: 0.5s;\r\n            }\r\n\r\n            #drawerButtonContainer {\r\n                transition: 0.5s;\r\n                position: fixed;\r\n                text-align: right;\r\n                margin-left: 1em;\r\n                left: 0;\r\n            }\r\n\r\n            #drawerButtonContainer span {\r\n                transition: 0.5s;\r\n            }\r\n\r\n            #searchBox {\r\n                transition: 0.5s;\r\n                z-index: 2;\r\n            }\r\n\r\n            #titlebar {\r\n                width: 100%;\r\n                height: 4em;\r\n                background: #111111;\r\n                text-align: left;\r\n                position: fixed;\r\n            }\r\n\r\n            .titlebarIcons {\r\n                color: white;\r\n                font-size: 3em;\r\n                cursor: pointer;\r\n                text-align: left;\r\n            }\r\n\r\n            #actionButtonContainer {\r\n                position: absolute;\r\n                text-align: right;\r\n                margin-right: 1em;\r\n                right: 0;\r\n                transition: 0.5s;\r\n            }\r\n\r\n            #resultList {\r\n\t\t\t\tposition: fixed;\r\n                text-align: right;\r\n                margin-right: 1em;\r\n                right: 0;\r\n                top:4em;\r\n                width: 16em;\r\n                background: white;\r\n                visibility: hidden;\r\n                padding: 1em;\r\n                box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);\r\n                z-index: 1;\r\n\t\t\t}\r\n\r\n            .scheduleItem {\r\n                font-size: 1em;\r\n                padding: 20px 0 20px 18px;\r\n                margin: 0;\r\n                background-color: #fff;\r\n            }\r\n\r\n            .current {\r\n                font-weight: bold;\r\n                background: #90CAF9;\r\n            }\r\n\r\n            .preview {\r\n                background: #E0E0E0;\r\n            }\r\n\r\n            #schedule>hr {\r\n                margin: 0;\r\n                padding: 0;\r\n            }\r\n\r\n            #suggestions {\r\n\t\t\t\tz-index: 3;\r\n\t\t\t\tbox-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);\r\n\t\t\t\twidth: 16em;\r\n\t\t\t\tpadding: 0.02em;\r\n\t\t\t\tposition: fixed;\r\n\t\t\t\ttop: 4em;\r\n\t\t\t\tright: 1em;\r\n\t\t\t\tbackground: white;\r\n\t\t\t\tvisibility: hidden;\r\n\t\t\t}\r\n\r\n\t\t\t#suggestions p:hover {\r\n\t\t\t\tcolor:grey;\r\n\t\t\t}\r\n\r\n\t\t\t#songResults {\r\n\t\t\t    width:16em;\r\n\t\t\t    height: 250px;\r\n\t\t\t}\r\n\r\n\t\t\t#bibleFlex {\r\n\t\t\t    display:flex;\r\n\t\t\t    flex-direction: row;\r\n\t\t\t    justify-content: left;\r\n\t\t\t    align-items: left;\r\n\t\t\t}\r\n\r\n\t\t\t@media screen and (max-width: 500px) {\r\n\t\t\t\t#center {\r\n\t\t\t\t\tpadding-right: 3em;\r\n\t\t\t\t}\r\n            }\r\n\r\n    </style>\r\n</head>\r\n<body>\r\n<div id=\"leftDrawer\" class=\"drawer\">\r\n    <div id=\"scheduleHeader\">\r\n        <h3>[schedule]</h3>\r\n        <div id=\"schedule\">\r\n\r\n        </div>\r\n    </div>\r\n</div>\r\n\r\n<div id=\"titlebar\">\r\n    <div id=\"drawerButtonContainer\">\r\n        <span id=\"drawerIcon\" onclick=\"toggleDrawer()\" class=\"titlebarIcons\">&#9776;</span>\r\n    </div>\r\n    <div id=\"actionButtonContainer\">\r\n        <span id=\"searchIcon\" class=\"titlebarIcons\" onclick=\"toggleSearch()\">🔍</span>\r\n        <input id=\"searchBox\" type=\"text\" style=\"width:0; height:2.5em; display:none;\" onkeyup=\"search()\"/>\r\n    </div>\r\n</div>\r\n<div id=\"mainContent\" onclick=\"closeDrawer()\">\r\n\r\n    <div class=\"toggleButtonContainer\">\r\n        <button type=\"button\" onclick=\"logo();\" id=\"logoButton\" class=\"unselected toggleButton\"\r\n                style=\"background-image: url(logo.png);\"></button>\r\n        <button type=\"button\" onclick=\"black();\" id=\"blackButton\" class=\"unselected toggleButton\"\r\n                style=\"background: black;\"></button>\r\n        <button type=\"button\" onclick=\"clears();\" id=\"clearButton\" class=\"unselected toggleButton\"\r\n                style=\"background: white;\"></button>\r\n        <br/>\r\n    </div>\r\n    <div class=\"navButtonContainer\">\r\n        <button type=\"button\" onclick=\"previousItem();\" class=\"navButton itemButton\">⤒</button>\r\n        <br/>\r\n        <button type=\"button\" onclick=\"previousSlide();\" class=\"navButton slideButton\">↑</button>\r\n        <br/>\r\n        <button type=\"button\" onclick=\"nextSlide();\" class=\"navButton slideButton\">↓</button>\r\n        <br/>\r\n        <button type=\"button\" onclick=\"nextItem();\" class=\"navButton itemButton\">⤓</button>\r\n        <br/>\r\n    </div>\r\n    &nbsp;\r\n    <div id=\"center\">\r\n        <div id=\"lyrics\">\r\n\r\n        </div>\r\n    </div>\r\n</div>\r\n<div id=\"suggestions\">\r\n\r\n</div>\r\n<div id=\"resultList\">\r\n    <div style=\"text-align: left;\">\r\n        <p>Song Results</p>\r\n        <embed id=\"songResults\"/>\r\n        <div id=\"bibleFlex\">\r\n            <p style=\"margin-right:1em;\">[bible.version]</p>\r\n            <select id=\"translations\">\r\n\r\n            </select>\r\n        </div>\r\n    </div>\r\n    <div>\r\n    </div>\r\n</div>\r\n<script>\r\n            var xmlhttp = new XMLHttpRequest();\r\n            var schhttp = new XMLHttpRequest();\r\n            var biblehttp = new XMLHttpRequest();\r\n            var statushttp = new XMLHttpRequest();\r\n            var lyriccache;\r\n            var statuscache;\r\n            var schedulecache;\r\n            function setup()\r\n            {\r\n                getTranslations();\r\n                setInterval(function () {\r\n                    loadXMLDoc();\r\n                    stateCheck();\r\n                    scheduleCheck();\r\n                }, 400);\r\n\r\n                xmlhttp.onreadystatechange = function ()\r\n                {\r\n                    if (xmlhttp.readyState == 4 && xmlhttp.status == 200)\r\n                    {\r\n                        if (lyriccache !== xmlhttp.responseText) {\r\n                            document.getElementById(\"lyrics\").innerHTML = xmlhttp.responseText;\r\n                            lyriccache = xmlhttp.responseText;\r\n                            getSectionTitles();\r\n                        }\r\n\r\n                    }\r\n                }\r\n                statushttp.onreadystatechange = function ()\r\n                {\r\n                    if (statushttp.readyState == 4 && statushttp.status == 200)\r\n                    {\r\n                        if (statuscache !== statushttp.responseText) {\r\n                            statuscache = statushttp.responseText;\r\n                            var logo = document.getElementById(\"logoButton\");\r\n                            var black = document.getElementById(\"blackButton\");\r\n                            var clear = document.getElementById(\"clearButton\");\r\n\r\n                            var st = statuscache.split(\",\");\r\n                            if (st[0] === \"true\") {\r\n                                logo.className = logo.className.replace(/\\unselected\\b/g, \"active\");\r\n                            }\r\n                            else {\r\n                                logo.className = logo.className.replace(/\\active\\b/g, \"unselected\");\r\n                            }\r\n                            if (st[1] === \"true\") {\r\n                                black.className = black.className.replace(/\\unselected\\b/g, \"active\");\r\n                            }\r\n                            else {\r\n                                black.className = black.className.replace(/\\active\\b/g, \"unselected\");\r\n                            }\r\n                            if (st[2] === \"true\") {\r\n                                clear.className = clear.className.replace(/\\unselected\\b/g, \"active\");\r\n                            }\r\n                            else {\r\n                                clear.className = clear.className.replace(/\\active\\b/g, \"unselected\");\r\n                            }\r\n                            if (document.getElementById(\"playbutton\") !== null) {\r\n                                document.getElementById(\"playbutton\").innerHTML = st[3];\r\n                            }\r\n                        }\r\n                    }\r\n                }\r\n            }\r\n            window.onload = setup;\r\n            function loadXMLDoc()\r\n            {\r\n                xmlhttp.open(\"GET\", \"/lyrics\", true);\r\n                xmlhttp.timeout = 4000;\r\n                xmlhttp.ontimeout = function () {\r\n                    document.getElementById(\"lyrics\").innerHTML = \"\";\r\n                }\r\n                xmlhttp.send();\r\n            }\r\n            function stateCheck()\r\n            {\r\n                statushttp.open(\"GET\", \"/status\", true);\r\n                statushttp.timeout = 4000;\r\n                statushttp.ontimeout = function () {\r\n                    var logo = document.getElementById(\"logoButton\");\r\n                    logo.className = logo.className.replace(/\\active\\b/g, \"unselected\");\r\n                    var black = document.getElementById(\"blackButton\");\r\n                    black.className = black.className.replace(/\\active\\b/g, \"unselected\");\r\n                    var clear = document.getElementById(\"clearButton\");\r\n                    clear.className = clear.className.replace(/\\active\\b/g, \"unselected\");\r\n                }\r\n                statushttp.send();\r\n            }\r\n            function scheduleCheck()\r\n            {\r\n                schhttp.open(\"GET\", \"/schedule\", true);\r\n                schhttp.timeout = 4000;\r\n                schhttp.ontimeout = function () {\r\n                    document.getElementById(\"schedule\").innerHTML = \"\";\r\n                }\r\n                schhttp.onreadystatechange = function ()\r\n                {\r\n                    if (schhttp.readyState == 4 && schhttp.status == 200)\r\n                    {\r\n                        if (schedulecache !== schhttp.responseText) {\r\n                            document.getElementById(\"schedule\").innerHTML = \"\";\r\n                            var lines = schhttp.responseText.split(\"<br/>\");\r\n                            for (var i = 0; i < lines.length; i++) {\r\n                                var regex = /(<([^>]+)>)/ig;\r\n                                if (lines[i].trim().replace(regex, \"\") !== \"\") {\r\n                                    var style = \"\";\r\n                                    if (lines[i].indexOf('i>') !== -1) {\r\n                                        style = ' preview';\r\n                                        }\r\n                                    if (lines[i].indexOf('b>') !== -1) {\r\n                                        style = ' current';\r\n                                        console.log(lines[i]);\r\n                                        }\r\n                                    document.getElementById(\"schedule\").innerHTML += \"<p class='scheduleItem\" + style + \"'><span onclick='gotoItem(\" + i + \")'>\" + lines[i] + \"</span></p><hr>\";\r\n                                }\r\n                            }\r\n                            schedulecache = schhttp.responseText;\r\n                        }\r\n\r\n                    }\r\n                }\r\n                schhttp.send();\r\n            }\r\n            function nextSlide() {\r\n                var request = new XMLHttpRequest();\r\n                request.open('GET', '/next', true);\r\n                request.send();\r\n                request = null;\r\n            }\r\n            function previousSlide() {\r\n                var request = new XMLHttpRequest();\r\n                request.open('GET', '/prev', true);\r\n                request.send();\r\n                request = null;\r\n            }\r\n            function nextItem() {\r\n                var request = new XMLHttpRequest();\r\n                request.open('GET', '/nextitem', true);\r\n                request.send();\r\n                request = null;\r\n            }\r\n            function previousItem() {\r\n                var request = new XMLHttpRequest();\r\n                request.open('GET', '/previtem', true);\r\n                request.send();\r\n                request = null;\r\n            }\r\n            function logo() {\r\n                var request = new XMLHttpRequest();\r\n                request.open('GET', '/tlogo', true);\r\n                request.send();\r\n                request = null;\r\n            }\r\n            function black() {\r\n                var request = new XMLHttpRequest();\r\n                request.open('GET', '/black', true);\r\n                request.send();\r\n                request = null;\r\n            }\r\n            function clears() {\r\n                var request = new XMLHttpRequest();\r\n                request.open('GET', '/clear', true);\r\n                request.send();\r\n                request = null;\r\n            }\r\n            function play() {\r\n                var request = new XMLHttpRequest();\r\n                request.open('GET', '/play', true);\r\n                request.send();\r\n                request = null;\r\n            }\r\n            function section(i) {\r\n                var request = new XMLHttpRequest();\r\n                request.open('GET', '/section' + i, true);\r\n                request.send();\r\n                request = null;\r\n            }\r\n            function gotoItem(i) {\r\n                closeDrawer();\r\n                var request = new XMLHttpRequest();\r\n                request.open('GET', '/gotoitem' + i, true);\r\n                request.send();\r\n                request = null;\r\n            }\r\n            function getSectionTitles() {\r\n\t\t\t\tvar sections = document.getElementsByTagName(\"p\");\r\n\t\t\t\tvar title;\r\n\t\t\t\tvar i;\r\n\t\t\t\tfor (i = 0; i < sections.length; i++) {\r\n\t\t\t\t\ttitle = sections[i].getAttribute(\"data-type\");\r\n\t\t\t\t\tif (title != null) {\r\n\t\t\t\t\t\tsections[i].innerHTML = \"<div class='title'>\" + title + \"</div>\" + sections[i].innerHTML;\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t}\r\n            function toggleDrawer() {\r\n                if (document.getElementById(\"leftDrawer\").style.width !== \"18em\") {\r\n                    openDrawer();\r\n                } else {\r\n                    closeDrawer();\r\n                }\r\n            }\r\n            function openDrawer() {\r\n                document.getElementById(\"leftDrawer\").style.width = \"18em\";\r\n                document.getElementById(\"drawerButtonContainer\").style.transform = \"translate(18em, 0px)\";\r\n                document.getElementById(\"drawerButtonContainer\").style.WebkitTransform = \"translate(18em, 0px)\";\r\n                document.getElementById(\"drawerButtonContainer\").style.msTransform = \"translate(18em, 0px)\";\r\n            }\r\n            function closeDrawer() {\r\n                document.getElementById(\"leftDrawer\").style.width = \"0px\";\r\n                document.getElementById(\"drawerButtonContainer\").style.transform = \"translate(0px, 0px)\";\r\n                document.getElementById(\"drawerButtonContainer\").style.WebkitTransform = \"translate(0px, 0px)\";\r\n                document.getElementById(\"drawerButtonContainer\").style.msTransform = \"translate(0px, 0px)\";\r\n            }\r\n            function toggleSearch(close) {\r\n\t\t\t\tvar searchBox = document.getElementById(\"searchBox\");\r\n\t\t\t\tvar searchIcon = document.getElementById(\"searchIcon\");\r\n\t\t\t\tvar navBarIcon = document.getElementById(\"drawerIcon\");\r\n\t\t\t\tvar actionButtonContainer = document.getElementById(\"actionButtonContainer\");\r\n\t\t\t\tvar suggestions = document.getElementById(\"suggestions\");\r\n\t\t\t\tvar width = \"0px\";\r\n\t\t\t\tif (searchBox.style.width !== \"16em\" && !close) {\r\n\t\t\t\t\twidth = \"16em\";\r\n\t\t\t\t\tsearchBox.style.display = \"inline\";\r\n\t\t\t\t\tsearchIcon.innerHTML = \"✕\";\r\n\t\t\t\t\tresultList.style.visibility = \"visible\";\r\n\t\t\t\t} else {\r\n\t\t\t\t\tsearchBox.style.display = \"none\";\r\n\t\t\t\t\tsearchIcon.innerHTML = \"🔍\";\r\n\t\t\t\t\tresultList.style.visibility = \"hidden\";\r\n\t\t\t\t\tsearchBox.value = \"\";\r\n\t\t\t\t\tloadSearch(\"\");\r\n\t\t\t\t\tsuggestions.style.visibility = \"hidden\";\r\n\t\t\t\t}\r\n                searchBox.style.width = width;\r\n                actionButtonContainer.style.transform = \"translate(-\" + width/2 +\", 0px)\";\r\n                actionButtonContainer.style.WebkitTransform = \"translate(-\" + width/2 + \", 0px)\";\r\n                actionButtonContainer.style.msTransform = \"translate(-\" + width/2 + \", 0px)\";\r\n            }\r\n           function search() {\r\n\t\t\t\tvar searchBox = document.getElementById(\"searchBox\");\r\n\t\t\t\tloadSearch(\"/search/\" + searchBox.value);\r\n\t\t\t\tgetBooks(searchBox.value);\r\n\t\t\t}\r\n\r\n\t\t\tfunction getTranslations()\r\n\t\t\t{\r\n\t\t\t\tvar xmlhttp=new XMLHttpRequest();\r\n\t\t\t\txmlhttp.onreadystatechange=function()\r\n\t\t\t\t{\r\n\t\t\t\t\tif (xmlhttp.readyState==4 && xmlhttp.status==200)\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\tvar lines = xmlhttp.responseText.split(\"\\n\");\r\n\r\n\t\t\t\t\t\tfor (var i = 0; i < lines.length; i++) {\r\n\t\t\t\t\t\t\tif (lines[i].length > 0)\r\n\t\t\t\t\t\t\t\tdocument.getElementById(\"translations\").innerHTML += \"<option value=\\\"\"+ lines[i] +\"\\\">\"+ lines[i] + \"</option>\";\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t\treturn xmlhttp.responseText;\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t\txmlhttp.open(\"GET\", \"/translations\", false);\r\n\t\t\t\txmlhttp.send();\r\n\t\t\t}\r\n\t\t\tfunction getBooks(query)\r\n\t\t\t{\r\n\t\t\t\tvar xmlhttp=new XMLHttpRequest();\r\n\t\t\t\txmlhttp.onreadystatechange=function()\r\n\t\t\t\t{\r\n\t\t\t\t\tif (xmlhttp.readyState==4 && xmlhttp.status==200)\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\tvar lines = xmlhttp.responseText.split(\"\\n\");\r\n\t\t\t\t\t\tvar suggestions = document.getElementById(\"suggestions\");\r\n\t\t\t\t\t\tsuggestions.innerHTML = \"\";\r\n\t\t\t\t\t\tsuggestions.style.visibility = \"hidden\";\r\n\t\t\t\t\t\tfor (var i = 0; i < lines.length; i++) {\r\n\t\t\t\t\t\t\tif (lines[i].length > 0) {\r\n\t\t\t\t\t\t\t\tif (lines[i].toLowerCase().indexOf(query.toLowerCase()) >= 0) {\r\n\t\t\t\t\t\t\t\t\tsuggestions.style.visibility = \"visible\";\r\n\t\t\t\t\t\t\t\t\tsuggestions.innerHTML += \"<p onclick=\\\"setSearch('\"+ lines[i] +\"')\\\">\"+ lines[i] + \"</p>\";\r\n\t\t\t\t\t\t\t\t} else if (query.indexOf(\" \") > 0 && query.match(/([^\\x00-\\x7F]|\\w)+\\s\\d(:\\d+)?(-\\d+)?/)) {\r\n\t\t\t\t\t\t\t\t\tsuggestions.style.visibility = \"visible\";\r\n\t\t\t\t\t\t\t\t\tsuggestions.innerHTML = \"<p onclick=\\\"getMessageFromServer('/addbible/\" + document.getElementById(\"translations\").value + \"/\"+ query.split(/[\\s\\d]/)[0] + \"/\" + query.match(/([^\\x00-\\x7F]|\\w)+\\s(\\d(:\\d+)?(-\\d+)?)/m)[2] + \"');\\\">[click.to.add]: \" + query + \"</p>\";\r\n\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t\treturn xmlhttp.responseText;\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t\txmlhttp.open(\"GET\", \"/books/\" + document.getElementById(\"translations\").value, false);\r\n\t\t\t\txmlhttp.send();\r\n\t\t\t}\r\n\t\t\tfunction loadSearch(url){\r\n\t\t\t    var songResults=document.getElementById(\"songResults\");\r\n\t\t\t    var clone=songResults.cloneNode(true);\r\n\t\t\t    clone.setAttribute('src',url);\r\n\t\t\t    songResults.parentNode.replaceChild(clone,songResults)\r\n\t\t\t}\r\n\t\t\tfunction setSearch(query) {\r\n\t\t\t\tvar searchBox = document.getElementById(\"searchBox\");\r\n\t\t\t\tsearchBox.value = query;\r\n\t\t\t\tdocument.getElementById(\"suggestions\").style.visibility = \"hidden\";\r\n\t\t\t\tsetCaretPosition(query);\r\n\t\t\t}\r\n\t\t\tfunction getMessageFromServer(url)\r\n\t\t\t{\r\n\t\t\t\tdocument.getElementById(\"suggestions\").style.visibility = \"hidden\";\r\n\t\t\t\tvar xmlhttp=new XMLHttpRequest();\r\n\t\t\t\txmlhttp.onreadystatechange=function()\r\n\t\t\t\t{\r\n\t\t\t\t\tif (xmlhttp.readyState==4 && xmlhttp.status==200)\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\talert(xmlhttp.responseText);\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t\txmlhttp.open(\"GET\", url, false);\r\n\t\t\t\txmlhttp.send();\r\n\t\t\t\treturn true;\r\n\t\t\t}\r\n\t\t\tfunction setCaretPosition(query) {\r\n\t\t\t\tvar elem = document.getElementById(\"searchBox\");\r\n\t\t\t\tvar caretPos = query.length;\r\n\t\t        elem.focus();\r\n\t\t\t\telem.setSelectionRange(caretPos, caretPos);\r\n\t\t\t}\r\n</script>\r\n</body>\r\n</html>"
  },
  {
    "path": "Quelea/settings.gradle",
    "content": "rootProject.name = 'Quelea'"
  },
  {
    "path": "Quelea/songformat.xsl",
    "content": "<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n<xsl:stylesheet version=\"1.1\" xmlns:xsl=\"http://www.w3.org/1999/XSL/Transform\" xmlns:fo=\"http://www.w3.org/1999/XSL/Format\" exclude-result-prefixes=\"fo\">\n    <xsl:template match=\"songs\">\n        <fo:root xmlns:fo=\"http://www.w3.org/1999/XSL/Format\" font-family=\"Courier, Roboto Mono, Ubuntu Mono\">\n            <fo:layout-master-set>\n                <fo:simple-page-master master-name=\"my-page\">\n                    <fo:region-body margin=\"1in\"/>\n                </fo:simple-page-master>\n            </fo:layout-master-set>\n            <fo:page-sequence master-reference=\"my-page\">\n                <fo:flow flow-name=\"xsl-region-body\">\n                    <xsl:for-each select=\"song\">\n                        <fo:block font-size=\"18pt\" font-weight=\"bold\">\n                            <xsl:value-of select=\"title\"/>\n                        </fo:block>\n                        <fo:block font-size=\"15pt\" font-style=\"italic\">\n                            <xsl:value-of select=\"author\"/>\n                        </fo:block>\n                        <fo:block break-after=\"page\" space-before=\"12pt\" linefeed-treatment=\"preserve\" font-size=\"12pt\">\n                            <xsl:value-of select=\"lyrics\"/>\n                        </fo:block>\n                    </xsl:for-each>\n                </fo:flow>\n            </fo:page-sequence>\n        </fo:root>\n    </xsl:template>\n</xsl:stylesheet>"
  },
  {
    "path": "Quelea/src/main/java/log4j.properties",
    "content": "# A1 is set to be a ConsoleAppender.\nlog4j.appender.stoutAppender=org.apache.log4j.ConsoleAppender\n\n# A1 uses PatternLayout.\nlog4j.appender.stoutAppender.layout=org.apache.log4j.PatternLayout\nlog4j.appender.stoutAppender.layout.ConversionPattern=%-4r [%t] %-5p %c %x - %m%n\nlog4j.logger.org.hibernate=ERROR, stoutAppender"
  },
  {
    "path": "Quelea/src/main/java/org/javafx/dialog/Dialog.java",
    "content": "package org.javafx.dialog;\n\nimport java.io.PrintWriter;\nimport java.io.StringWriter;\nimport java.util.HashMap;\nimport java.util.Map;\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport javafx.geometry.Insets;\nimport javafx.geometry.Pos;\nimport javafx.scene.Scene;\nimport javafx.scene.control.Button;\nimport javafx.scene.control.Label;\nimport javafx.scene.control.ScrollPane;\nimport javafx.scene.control.ToggleButton;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.input.Clipboard;\nimport javafx.scene.input.DataFormat;\nimport javafx.scene.layout.BorderPane;\nimport javafx.scene.layout.HBox;\nimport javafx.scene.layout.VBox;\nimport javafx.stage.Modality;\nimport javafx.stage.Stage;\nimport javafx.stage.Window;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.windows.presentation.PowerPointHandler;\n\n/**\n *\n * @author Anton Smirnov (dev@antonsmirnov.name), Michael Berry\n */\npublic class Dialog extends Stage {\n\n    protected String stacktrace;\n    protected double originalWidth, originalHeight;\n    protected Scene scene;\n    protected BorderPane borderPanel;\n    protected ImageView icon;\n    protected VBox messageBox;\n    protected Label messageLabel;\n    protected boolean stacktraceVisible;\n    protected HBox stacktraceButtonsPanel;\n    protected ToggleButton viewStacktraceButton;\n    protected Button copyStacktraceButton;\n    protected ScrollPane scrollPane;\n    protected Label stackTraceLabel;\n    protected HBox buttonsPanel;\n    protected Button okButton;\n\n    /**\n     * Extracts stack trace from Throwable\n     */\n    protected static class StacktraceExtractor {\n\n        public String extract(Throwable t) {\n            StringWriter sw = new StringWriter();\n            PrintWriter pw = new PrintWriter(sw);\n            t.printStackTrace(pw);\n            return sw.toString();\n        }\n    }\n\n    /**\n     * Dialog builder\n     */\n    public static class Builder {\n\n        protected static final int STACKTRACE_LABEL_MAXHEIGHT = 240;\n        protected static final int MESSAGE_MIN_WIDTH = 180;\n        protected static final int MESSAGE_MAX_WIDTH = 800;\n        protected static final int BUTTON_WIDTH = 60;\n        protected static final double MARGIN = 10;\n        protected static final String ICON_PATH = \"/org/javafx/dialog/\";\n        protected Dialog stage;\n\n        public Builder create() {\n            stage = new Dialog();\n            stage.initOwner(QueleaApp.get().getMainWindow());\n            stage.initModality(Modality.APPLICATION_MODAL);\n            stage.setIconified(false);\n            stage.centerOnScreen();\n            stage.borderPanel = new BorderPane();\n\n            // icon\n            stage.icon = new ImageView();\n            stage.borderPanel.setLeft(stage.icon);\n            BorderPane.setMargin(stage.icon, new Insets(MARGIN));\n\n            // message\n            stage.messageBox = new VBox();\n            stage.messageBox.setAlignment(Pos.CENTER_LEFT);\n\n            stage.messageLabel = new Label();\n            stage.messageLabel.setWrapText(true);\n            stage.messageLabel.setMinWidth(MESSAGE_MIN_WIDTH);\n            stage.messageLabel.setMaxWidth(MESSAGE_MAX_WIDTH);\n\n            stage.messageBox.getChildren().add(stage.messageLabel);\n            stage.borderPanel.setCenter(stage.messageBox);\n            BorderPane.setAlignment(stage.messageBox, Pos.CENTER);\n            BorderPane.setMargin(stage.messageBox, new Insets(MARGIN, MARGIN, MARGIN, 2 * MARGIN));\n\n            // buttons\n            stage.buttonsPanel = new HBox();\n            stage.buttonsPanel.setSpacing(MARGIN);\n            stage.buttonsPanel.setAlignment(Pos.BOTTOM_CENTER);\n            BorderPane.setMargin(stage.buttonsPanel, new Insets(0, 0, 1.5 * MARGIN, 0));\n            stage.borderPanel.setBottom(stage.buttonsPanel);\n            stage.borderPanel.widthProperty().addListener((ov, t, t1) -> stage.buttonsPanel.layout());\n\n            stage.scene = new Scene(stage.borderPanel);\n            if (QueleaProperties.get().getUseDarkTheme()) {\n                stage.scene.getStylesheets().add(\"org/modena_dark.css\");\n            }\n            stage.setScene(stage.scene);\n            return this;\n        }\n\n        public Builder setOwner(Window owner) {\n            if (owner != null) {\n                stage.initOwner(owner);\n                stage.borderPanel.setMaxWidth(owner.getWidth());\n                stage.borderPanel.setMaxHeight(owner.getHeight());\n            }\n            return this;\n        }\n\n        public Builder setTitle(String title) {\n            stage.setTitle(title);\n            return this;\n        }\n\n        public Builder setMessage(String message) {\n            stage.messageLabel.setText(message);\n            return this;\n        }\n\n        private void alignScrollPane() {\n            stage.setWidth(\n                    stage.icon.getImage().getWidth()\n                    + Math.max(\n                            stage.messageLabel.getWidth(),\n                            (stage.stacktraceVisible\n                                    ? Math.max(\n                                            stage.stacktraceButtonsPanel.getWidth(),\n                                            stage.stackTraceLabel.getWidth())\n                                    : stage.stacktraceButtonsPanel.getWidth()))\n                    + 5 * MARGIN);\n\n            stage.setHeight(\n                    Math.max(\n                            stage.icon.getImage().getHeight(),\n                            stage.messageLabel.getHeight()\n                            + stage.stacktraceButtonsPanel.getHeight()\n                            + (stage.stacktraceVisible\n                                    ? Math.min(\n                                            stage.stackTraceLabel.getHeight(),\n                                            STACKTRACE_LABEL_MAXHEIGHT)\n                                    : 0))\n                    + stage.buttonsPanel.getHeight()\n                    + 3 * MARGIN);\n            if (stage.stacktraceVisible) {\n                stage.scrollPane.setPrefHeight(\n                        stage.getHeight()\n                        - stage.messageLabel.getHeight()\n                        - stage.stacktraceButtonsPanel.getHeight()\n                        - 2 * MARGIN);\n            }\n\n            stage.centerOnScreen();\n        }\n\n        // NOTE: invoke once during Dialog creating\n        private Builder setStackTrace(Throwable t) {\n            // view button\n            stage.viewStacktraceButton = new ToggleButton(\"View stacktrace\");\n\n            // copy button\n            stage.copyStacktraceButton = new Button(\"Copy to clipboard\");\n            HBox.setMargin(stage.copyStacktraceButton, new Insets(0, 0, 0, MARGIN));\n\n            stage.stacktraceButtonsPanel = new HBox();\n            stage.stacktraceButtonsPanel.getChildren().addAll(\n                    stage.viewStacktraceButton, stage.copyStacktraceButton);\n            VBox.setMargin(stage.stacktraceButtonsPanel, new Insets(MARGIN, MARGIN, MARGIN, 0));\n            stage.messageBox.getChildren().add(stage.stacktraceButtonsPanel);\n\n            // stacktrace text\n            stage.stackTraceLabel = new Label();\n            stage.stackTraceLabel.widthProperty().addListener((ov, oldValue, newValue) -> alignScrollPane());\n\n            stage.stackTraceLabel.heightProperty().addListener((ov, oldValue, newValue) -> alignScrollPane());\n\n            StacktraceExtractor extractor = new StacktraceExtractor();\n            stage.stacktrace = extractor.extract(t);\n\n            stage.scrollPane = new ScrollPane();\n            stage.scrollPane.setContent(stage.stackTraceLabel);\n\n            stage.viewStacktraceButton.setOnAction(t1 -> {\n                stage.stacktraceVisible = !stage.stacktraceVisible;\n                if (stage.stacktraceVisible) {\n                    stage.messageBox.getChildren().add(stage.scrollPane);\n                    stage.stackTraceLabel.setText(stage.stacktrace);\n\n                    alignScrollPane();\n                } else {\n                    stage.messageBox.getChildren().remove(stage.scrollPane);\n\n                    //alignScrollPane();\n                    stage.setWidth(stage.originalWidth);\n                    stage.setHeight(stage.originalHeight);\n                    stage.stackTraceLabel.setText(null);\n                    stage.centerOnScreen();\n                }\n                stage.messageBox.layout();\n            });\n\n            stage.copyStacktraceButton.setOnAction(t12 -> {\n                Clipboard clipboard = Clipboard.getSystemClipboard();\n                Map<DataFormat, Object> map = new HashMap<>();\n                map.put(DataFormat.PLAIN_TEXT, stage.stacktrace);\n                clipboard.setContent(map);\n            });\n\n            stage.showingProperty().addListener((ov, oldValue, newValue) -> {\n                if (newValue) {\n                    stage.originalWidth = stage.getWidth();\n                    stage.originalHeight = stage.getHeight();\n                }\n            });\n\n            return this;\n        }\n\n        protected void setIconFromResource(String resourceName) {\n            final Image image = new Image(getClass().getResourceAsStream(resourceName));\n            stage.icon.setImage(image);\n        }\n\n        public Builder setWarningIcon() {\n            setIconFromResource(ICON_PATH + \"warningIcon.png\");\n            return this;\n        }\n\n        public Builder setErrorIcon() {\n            setIconFromResource(ICON_PATH + \"errorIcon.png\");\n            return this;\n        }\n\n        protected Builder setThrowableIcon() {\n            setIconFromResource(ICON_PATH + \"bugIcon.png\");\n            return this;\n        }\n\n        protected Builder setInfoIcon() {\n            setIconFromResource(ICON_PATH + \"infoIcon.png\");\n            return this;\n        }\n\n        protected Builder setConfirmationIcon() {\n            setIconFromResource(ICON_PATH + \"confirmationIcon.png\");\n            return this;\n        }\n\n        protected Builder addOkButton() {\n            stage.okButton = new Button(\"OK\");\n            stage.okButton.setPrefWidth(BUTTON_WIDTH);\n            stage.okButton.setOnAction(t -> stage.close());\n            stage.buttonsPanel.getChildren().add(stage.okButton);\n            return this;\n        }\n\n        protected Builder addConfirmationButton(String buttonCaption, final EventHandler<ActionEvent> actionHandler) {\n            Button confirmationButton = new Button(buttonCaption);\n            confirmationButton.setMinWidth(BUTTON_WIDTH);\n            confirmationButton.setOnAction(t -> {\n                stage.close();\n                if (actionHandler != null) {\n                    actionHandler.handle(t);\n                }\n            });\n\n            stage.buttonsPanel.getChildren().add(confirmationButton);\n            return this;\n        }\n        \n        \n        protected Builder addApplyButton(String buttonCaption, final EventHandler<ActionEvent> actionHandler) {\n            Button applyButton = new Button(buttonCaption);\n            applyButton.setMinWidth(BUTTON_WIDTH);\n            applyButton.setOnAction(t -> {\n                if (actionHandler != null) {\n                    actionHandler.handle(t);\n                }\n            });\n\n            stage.buttonsPanel.getChildren().add(applyButton);\n            return this;\n        }\n\n        /**\n         * Add Yes button to confirmation dialog\n         * <p/>\n         * @param actionHandler action handler\n         * @return\n         */\n        public Builder addYesButton(EventHandler<ActionEvent> actionHandler) {\n            return addConfirmationButton(LabelGrabber.INSTANCE.getLabel(\"yes.text\"), actionHandler);\n        }\n\n        /**\n         * Add No button to confirmation dialog\n         * <p/>\n         * @param actionHandler action handler\n         * @return\n         */\n        public Builder addNoButton(EventHandler<ActionEvent> actionHandler) {\n            return addConfirmationButton(LabelGrabber.INSTANCE.getLabel(\"no.text\"), actionHandler);\n        }\n\n        /**\n         * Add Cancel button to confirmation dialog\n         * <p/>\n         * @param actionHandler action handler\n         * @return\n         */\n        public Builder addCancelButton(EventHandler<ActionEvent> actionHandler) {\n            return addConfirmationButton(LabelGrabber.INSTANCE.getLabel(\"cancel.text\"), actionHandler);\n        }\n\n        public Builder addLabelledButton(String label, EventHandler<ActionEvent> actionHandler) {\n            return addConfirmationButton(label, actionHandler);\n        }\n\n        /**\n         * Build dialog\n         * <p/>\n         * @return dialog instance\n         */\n        public Dialog build() {\n            if (stage.buttonsPanel.getChildren().size() == 0) {\n                throw new RuntimeException(\"Add one dialog button at least\");\n            }\n\n            stage.buttonsPanel.getChildren().get(0).requestFocus();\n            return stage;\n        }\n    }\n\n    /**\n     * Show information dialog box as parentWindow child\n     * <p/>\n     * @param title dialog title\n     * @param message dialog message\n     * @param owner parent window\n     */\n    public static void showInfo(String title, String message, Window owner) {\n        new Builder()\n                .create()\n                .setOwner(owner)\n                .setTitle(title)\n                .setInfoIcon()\n                .setMessage(message)\n                .addOkButton()\n                .build()\n                .show();\n    }\n\n    /**\n     * Show information dialog box as parentStage child\n     * <p/>\n     * @param title dialog title\n     * @param message dialog message\n     */\n    public static void showInfo(String title, String message) {\n        showInfo(title, message, null);\n    }\n\n    /**\n     * Show warning dialog box as parentStage child\n     * <p/>\n     * @param title dialog title\n     * @param message dialog message\n     * @param owner parent window\n     */\n    public static void showWarning(String title, String message, Window owner) {\n        new Builder()\n                .create()\n                .setOwner(owner)\n                .setTitle(title)\n                .setWarningIcon()\n                .setMessage(message)\n                .addOkButton()\n                .build()\n                .show();\n    }\n\n    /**\n     * Show warning dialog box\n     * <p/>\n     * @param title dialog title\n     * @param message dialog message\n     */\n    public static void showWarning(String title, String message) {\n        showWarning(title, message, null);\n    }\n\n    /**\n     * Show error dialog box\n     * <p/>\n     * @param title dialog title\n     * @param message dialog message\n     * @param owner parent window\n     */\n    public static void showError(String title, String message, Window owner) {\n        new Builder()\n                .create()\n                .setOwner(owner)\n                .setTitle(title)\n                .setErrorIcon()\n                .setMessage(message)\n                .addOkButton()\n                .build()\n                .show();\n    }\n\n    /**\n     * Show error dialog box\n     * <p/>\n     * @param title dialog title\n     * @param message dialog message\n     * @param owner parent window\n     */\n    public static void showAndWaitError(String title, String message, Window owner) {\n        new Builder()\n                .create()\n                .setOwner(owner)\n                .setTitle(title)\n                .setErrorIcon()\n                .setMessage(message)\n                .addOkButton()\n                .build()\n                .showAndWait();\n    }\n\n    /**\n     * Show error dialog box\n     * <p/>\n     * @param title dialog title\n     * @param message dialog message\n     */\n    public static void showError(String title, String message) {\n        showError(title, message, null);\n    }\n\n    /**\n     * Show error dialog box\n     * <p/>\n     * @param title dialog title\n     * @param message dialog message\n     */\n    public static void showAndWaitError(String title, String message) {\n        showAndWaitError(title, message, null);\n    }\n\n    /**\n     * Show error dialog box with stacktrace\n     * <p/>\n     * @param title dialog title\n     * @param message dialog message\n     * @param t throwable\n     * @param owner parent window\n     */\n    public static void showThrowable(String title, String message, Throwable t, Window owner) {\n        new Builder()\n                .create()\n                .setOwner(owner)\n                .setTitle(title)\n                .setThrowableIcon()\n                .setMessage(message)\n                .setStackTrace(t)\n                .addOkButton()\n                .build()\n                .show();\n    }\n\n    /**\n     * Show error dialog box with stacktrace\n     * <p/>\n     * @param title dialog title\n     * @param message dialog message\n     * @param t throwable\n     */\n    public static void showThrowable(String title, String message, Throwable t) {\n        showThrowable(title, message, t, null);\n    }\n\n    /**\n     * Build confirmation dialog builder\n     * <p/>\n     * @param title dialog title\n     * @param message dialog message\n     * @param owner parent window\n     * @return\n     */\n    public static Builder buildConfirmation(String title, String message, Window owner) {\n        return new Builder()\n                .create()\n                .setOwner(owner)\n                .setTitle(title)\n                .setConfirmationIcon()\n                .setMessage(message);\n    }\n\n    /**\n     * Build confirmation dialog builder\n     * <p/>\n     * @param title dialog title\n     * @param message dialog message\n     * @return\n     */\n    public static Builder buildConfirmation(String title, String message) {\n        return buildConfirmation(title, message, null);\n    }\n\n    /**\n     * Build focus switcher\n     * <p/>\n     * @return\n     */\n    public static Builder buildFocusSwitcher() {\n        return new Builder()\n                .create()\n                .setTitle(LabelGrabber.INSTANCE.getLabel(\"focus.switcher.title\"))\n                .setMessage(LabelGrabber.INSTANCE.getLabel(\"focus.switcher.message\"))\n                .addApplyButton(LabelGrabber.INSTANCE.getLabel(\"focus.quelea\"), (ActionEvent event) -> {\n                    PowerPointHandler.focusQuelea();\n                })\n                .addApplyButton(LabelGrabber.INSTANCE.getLabel(\"focus.pp\"), (ActionEvent event) -> {\n                    PowerPointHandler.focusPowerPoint();\n                });\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/javafx/dialog/InputDialog.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * (C) 2012 Michael Berry\n *\n * This program is free software: you can redistribute it and/or modify it under\n * the terms of the GNU General Public License as published by the Free Software\n * Foundation, either version 3 of the License, or (at your option) any later\n * version.\n *\n * This program is distributed in the hope that it will be useful, but WITHOUT\n * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\n * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License along with\n * this program. If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.javafx.dialog;\n\n\nimport javafx.geometry.Insets;\nimport javafx.geometry.Pos;\nimport javafx.scene.Scene;\nimport javafx.scene.control.Button;\nimport javafx.scene.control.Label;\nimport javafx.scene.control.TextField;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.layout.BorderPane;\nimport javafx.stage.Modality;\nimport javafx.stage.Stage;\n\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\n\n/**\n * A JavaFX simple input dialog - since one isn't provided for us.\n *\n * @author Michael\n */\npublic class InputDialog extends Stage {\n\n    private static InputDialog dialog;\n    private final TextField textField;\n    private final Label messageLabel;\n    private final Button okButton;\n\n    /**\n     * Create our input dialog.\n     */\n    private InputDialog() {\n        initModality(Modality.APPLICATION_MODAL);\n        setResizable(false);\n        BorderPane mainPane = new BorderPane();\n        messageLabel = new Label();\n        BorderPane.setMargin(messageLabel, new Insets(5));\n        mainPane.setTop(messageLabel);\n        textField = new TextField();\n        BorderPane.setMargin(textField, new Insets(5));\n        mainPane.setCenter(textField);\n        okButton = new Button(LabelGrabber.INSTANCE.getLabel(\"ok.button\"), new ImageView(new Image(\"file:icons/tick.png\")));\n        okButton.setDefaultButton(true);\n        okButton.setOnAction(t -> hide());\n        BorderPane.setMargin(okButton, new Insets(5));\n        BorderPane.setAlignment(okButton, Pos.CENTER);\n        mainPane.setBottom(okButton);\n        Scene scene = new Scene(mainPane);\n        if (QueleaProperties.get().getUseDarkTheme()) {\n            scene.getStylesheets().add(\"org/modena_dark.css\");\n        }\n        setScene(scene);\n    }\n\n    /**\n     * Display a dialog grabbing the user's input.\n     *\n     * @param message the message to display to the user on the dialog.\n     * @param title the title of the dialog.\n     * @return the user entered text.\n     */\n    public static String getUserInput(final String message, final String title) {\n        Utils.fxRunAndWait(() -> {\n            dialog = new InputDialog();\n            dialog.setTitle(title);\n            dialog.textField.clear();\n            dialog.messageLabel.setText(message);\n            dialog.showAndWait();\n        });\n        while(dialog.isShowing()) {\n            try {\n                Thread.sleep(10);\n            }\n            catch(InterruptedException ex) {\n            }\n        }\n        return dialog.textField.getText();\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/Background.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data;\n\nimport java.io.File;\nimport java.util.Collection;\nimport javafx.scene.control.CheckBox;\nimport javafx.scene.control.ColorPicker;\nimport javafx.scene.control.ComboBox;\nimport javafx.scene.control.Slider;\nimport javafx.scene.control.TextField;\n\n/**\n * A visual background.\n * <p/>\n * @author Michael\n */\npublic interface Background {\n\n    /**\n     * Get the DB string of this background to store in the database.\n     * <p/>\n     * @return the background's DB string.\n     */\n    String getString();\n    \n    /**\n     * Get any resources this background may possess.\n     * @return any resources this background depends on.\n     */\n    Collection<File> getResources();\n    \n    /**\n     * Set the given elements on the theme form to the correct values for this background.\n     * @param backgroundColorPicker the colour picker\n     * @param backgroundTypeSelect the ComboBox to select the background type.\n     * @param backgroundImgLocation the text field representing the background \"location\".\n     */\n    void setThemeForm(ColorPicker backgroundColorPicker, ComboBox<String> backgroundTypeSelect, TextField backgroundImgLocation, TextField backgroundVidLocation, Slider vidHueSlider, CheckBox vidStretchCheckbox);\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/ColourBackground.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data;\n\nimport java.io.File;\nimport java.io.Serializable;\nimport java.util.ArrayList;\nimport java.util.Collection;\nimport java.util.List;\nimport java.util.Objects;\nimport javafx.scene.control.CheckBox;\nimport javafx.scene.control.ColorPicker;\nimport javafx.scene.control.ComboBox;\nimport javafx.scene.control.Slider;\nimport javafx.scene.control.TextField;\nimport javafx.scene.paint.Color;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.SerializableColor;\n\n/**\n *\n * @author Michael\n */\npublic class ColourBackground implements Background, Serializable {\n\n    private SerializableColor colour;\n\n    /**\n     * Create a new background that's a certain colour.\n     * <p/>\n     * @param colour the colour of the background.\n     */\n    public ColourBackground(Color colour) {\n        this.colour = new SerializableColor(colour);\n    }\n\n    /**\n     * Get the current colour of this background, or null if the background is\n     * currently an image.\n     * <p/>\n     * @return the colour of the background.\n     */\n    public Color getColour() {\n        return colour.getColor();\n    }\n    \n    /**\n     * Get the DB string of this background to store in the database.\n     * <p/>\n     * @return the background's DB string.\n     */\n    @Override\n    public String getString() {\n        return getColour().toString();\n    }\n    \n    /**\n     * We don't depend on any resources.\n     * <p/>\n     * @return empty collection.\n     */\n    @Override\n    public Collection<File> getResources() {\n        List<File> ret = new ArrayList<>();\n        return ret;\n    }\n\n    @Override\n    public void setThemeForm(ColorPicker backgroundColorPicker, ComboBox<String> backgroundTypeSelect, TextField backgroundLocation, TextField backgroundVidLocation, Slider vidHueSlider, CheckBox vidStretchCheckbox) {\n        backgroundTypeSelect.getSelectionModel().select(LabelGrabber.INSTANCE.getLabel(\"color.theme.label\"));\n        backgroundColorPicker.setValue(getColour());\n        backgroundLocation.clear();\n        backgroundVidLocation.clear();\n        vidHueSlider.setValue(0);\n        vidStretchCheckbox.setSelected(false);\n    }\n\n    @Override\n    public int hashCode() {\n        int hash = 5;\n        hash = 47 * hash + Objects.hashCode(this.colour);\n        return hash;\n    }\n\n    @Override\n    public boolean equals(Object obj) {\n        if(obj == null) {\n            return false;\n        }\n        if(getClass() != obj.getClass()) {\n            return false;\n        }\n        final ColourBackground other = (ColourBackground) obj;\n        if(!Objects.equals(this.colour, other.colour)) {\n            return false;\n        }\n        return true;\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/GlobalThemeStore.java",
    "content": "/*\r\n * To change this license header, choose License Headers in Project Properties.\r\n * To change this template file, choose Tools | Templates\r\n * and open the template in the editor.\r\n */\r\npackage org.quelea.data;\r\n\r\nimport org.quelea.data.displayable.BiblePassage;\r\nimport org.quelea.data.displayable.SongDisplayable;\r\nimport org.quelea.data.displayable.TextDisplayable;\r\nimport org.quelea.data.displayable.TextSection;\r\nimport org.quelea.services.utils.QueleaProperties;\r\n\r\n/**\r\n *\r\n * @author Michael\r\n */\r\npublic class GlobalThemeStore {\r\n    \r\n    private ThemeDTO songThemeOverride;\r\n    private ThemeDTO bibleThemeOverride;\r\n\r\n    public void setSongThemeOverride(ThemeDTO songTheme) {\r\n        this.songThemeOverride = songTheme;\r\n    }\r\n\r\n    public void setBibleThemeOverride(ThemeDTO bibleTheme) {\r\n        this.bibleThemeOverride = bibleTheme;\r\n    }\r\n    \r\n    public ThemeDTO getTheme(TextDisplayable displayable, TextSection section) {\r\n        if(QueleaProperties.get().getItemThemeOverride() && section.getTheme()!=null && !section.getTheme().equalsIgnoreNameAndFontSize(ThemeDTO.DEFAULT_THEME)) {\r\n            return section.getTheme();\r\n        }\r\n        if(songThemeOverride!=null && displayable instanceof SongDisplayable) {\r\n            return songThemeOverride;\r\n        }\r\n        else if(bibleThemeOverride!=null && displayable instanceof BiblePassage) {\r\n            return bibleThemeOverride;\r\n        }\r\n        return section.getTheme();\r\n    }\r\n    \r\n}\r\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/ImageBackground.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data;\n\nimport java.io.File;\nimport java.io.Serializable;\nimport java.lang.ref.SoftReference;\nimport java.util.ArrayList;\nimport java.util.Collection;\nimport java.util.List;\nimport java.util.Objects;\nimport javafx.event.ActionEvent;\nimport javafx.scene.control.CheckBox;\nimport javafx.scene.control.ColorPicker;\nimport javafx.scene.control.ComboBox;\nimport javafx.scene.control.Slider;\nimport javafx.scene.control.TextField;\nimport javafx.scene.image.Image;\nimport javafx.scene.paint.Color;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.ImageManager;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\n\n/**\n * An image background.\n * <p>\n * @author Michael\n */\npublic class ImageBackground implements Background, Serializable {\n\n    private final String imageName;\n    private transient SoftReference<Image> originalImage;\n\n    /**\n     * Create a new background that's a certain image.\n     * <p/>\n     * @param imageName the name of the background image in the user img folder.\n     */\n    public ImageBackground(String imageName) {\n        this.imageName = imageName;\n        initImage();\n    }\n\n    private Image initImage() {\n        File f = new File(QueleaProperties.get().getImageDir(), imageName);\n        File rawPath = new File(imageName);\n        Image img;\n        if(!imageName.trim().isEmpty() && rawPath.exists()) {\n            img = ImageManager.INSTANCE.getImage(rawPath.toURI().toString());\n            originalImage = new SoftReference<>(img);\n        }\n        else if(f.exists() && !imageName.trim().isEmpty()) {\n            img = ImageManager.INSTANCE.getImage(f.toURI().toString());\n            originalImage = new SoftReference<>(img);\n        }\n        else {\n            img = Utils.getImageFromColour(Color.BLACK);\n            originalImage = new SoftReference<>(img);\n        }\n        return img;\n    }\n\n    /**\n     * Get the background image.\n     * <p>\n     * @return the background image.\n     */\n    public Image getImage() {\n        Image img = null;\n        if(originalImage != null) {\n            img = originalImage.get();\n        }\n        if(img == null) {\n            img = initImage();\n        }\n        return img;\n    }\n\n    /**\n     * Get the image background file.\n     * <p/>\n     * @return the file representing the image background.\n     */\n    public File getImageFile() {\n        File ret = new File(imageName.trim());\n        if(!ret.exists()) {\n            ret = new File(QueleaProperties.get().getImageDir(), imageName.trim());\n        }\n        return ret;\n    }\n\n    /**\n     * Get the DB string of this background to store in the database.\n     * <p/>\n     * @return the background's DB string.\n     */\n    @Override\n    public String getString() {\n        return new File(imageName).getName().trim();\n    }\n\n    /**\n     * Return any resources we depend upon, in this case the background image.\n     * <p/>\n     * @return the background image.\n     */\n    @Override\n    public Collection<File> getResources() {\n        List<File> ret = new ArrayList<>();\n        ret.add(getImageFile());\n        return ret;\n    }\n\n    @Override\n    public void setThemeForm(ColorPicker backgroundColorPicker, ComboBox<String> backgroundTypeSelect, TextField backgroundImgLocation, TextField backgroundVidLocation, Slider vidHueSlider, CheckBox vidStretchCheckbox) {\n        backgroundTypeSelect.getSelectionModel().select(LabelGrabber.INSTANCE.getLabel(\"image.theme.label\"));\n        backgroundImgLocation.setText(imageName);\n        backgroundColorPicker.setValue(Color.BLACK);\n        backgroundColorPicker.fireEvent(new ActionEvent());\n        backgroundVidLocation.clear();\n        vidHueSlider.setValue(0);\n        vidStretchCheckbox.setSelected(false);\n    }\n\n    @Override\n    public int hashCode() {\n        int hash = 5;\n        hash = 71 * hash + Objects.hashCode(this.imageName);\n        hash = 71 * hash + Objects.hashCode(this.originalImage);\n        return hash;\n    }\n\n    @Override\n    public boolean equals(Object obj) {\n        if(obj == null) {\n            return false;\n        }\n        if(getClass() != obj.getClass()) {\n            return false;\n        }\n        final ImageBackground other = (ImageBackground) obj;\n        if(!Objects.equals(this.imageName, other.imageName)) {\n            return false;\n        }\n        if(!Objects.equals(this.originalImage, other.originalImage)) {\n            return false;\n        }\n        return true;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/SaveCallback.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data;\n\n/**\n * A callback to signal whether a save was successful.\n * @author Michael\n */\npublic interface SaveCallback {\n    \n    /**\n     * Called when a save has completed.\n     * @param success true if the save was successful, false otherwise.\n     */\n    void saved(boolean success);\n    \n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/Schedule.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify it under\n * the terms of the GNU General Public License as published by the Free Software\n * Foundation, either version 3 of the License, or (at your option) any later\n * version.\n *\n * This program is distributed in the hope that it will be useful, but WITHOUT\n * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\n * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License along with\n * this program. If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data;\n\nimport java.io.BufferedInputStream;\nimport java.io.BufferedOutputStream;\nimport java.io.BufferedReader;\nimport java.io.ByteArrayInputStream;\nimport java.io.File;\nimport java.io.FileInputStream;\nimport java.io.FileOutputStream;\nimport java.io.IOException;\nimport java.io.InputStream;\nimport java.io.InputStreamReader;\nimport java.nio.charset.Charset;\nimport java.nio.file.Files;\nimport java.nio.file.Path;\nimport java.nio.file.Paths;\nimport java.nio.file.StandardCopyOption;\nimport java.util.ArrayList;\nimport java.util.Arrays;\nimport java.util.Enumeration;\nimport java.util.HashMap;\nimport java.util.HashSet;\nimport java.util.Iterator;\nimport java.util.List;\nimport java.util.Map;\nimport java.util.Set;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport java.util.regex.Pattern;\nimport java.util.zip.Deflater;\nimport java.util.zip.ZipEntry;\nimport java.util.zip.ZipFile;\nimport java.util.zip.ZipOutputStream;\nimport javafx.application.Platform;\nimport javax.xml.parsers.DocumentBuilder;\nimport javax.xml.parsers.DocumentBuilderFactory;\nimport javax.xml.parsers.ParserConfigurationException;\nimport org.javafx.dialog.Dialog;\nimport org.quelea.data.displayable.AudioDisplayable;\nimport org.quelea.data.displayable.BiblePassage;\nimport org.quelea.data.displayable.Displayable;\nimport org.quelea.data.displayable.ImageDisplayable;\nimport org.quelea.data.displayable.ImageGroupDisplayable;\nimport org.quelea.data.displayable.PdfDisplayable;\nimport org.quelea.data.displayable.PresentationDisplayable;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.data.displayable.TimerDisplayable;\nimport org.quelea.data.displayable.VideoDisplayable;\nimport org.quelea.data.displayable.WebDisplayable;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\nimport org.w3c.dom.Document;\nimport org.w3c.dom.Node;\nimport org.w3c.dom.NodeList;\nimport org.xml.sax.SAXException;\n\n/**\n * A schedule that consists of a number of displayable objects displayed by\n * Quelea.\n *\n * @author Michael\n */\npublic class Schedule implements Iterable<Displayable> {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    private final List<Displayable> displayables;\n    private File file;\n    private boolean modified;\n\n    /**\n     * Create a new schedule.\n     */\n    public Schedule() {\n        displayables = new ArrayList<>();\n        modified = false;\n    }\n\n    /**\n     * Generate a schedule object from a saved file.\n     *\n     * @param file the file where the schedule is saved.\n     * @return the schedule object.\n     */\n    public static Schedule fromFile(File file) {\n        try {\n            LOGGER.log(Level.INFO, \"Loading schedule from file: \" + file.getAbsolutePath());\n            ZipFile zipFile = new ZipFile(file, Charset.forName(\"UTF-8\"));\n            final int BUFFER = 2048;\n            try {\n                Enumeration<? extends ZipEntry> enumeration = zipFile.entries();\n                Map<String, String> fileChanges = new HashMap<>();\n                while (enumeration.hasMoreElements()) {\n                    ZipEntry entry = enumeration.nextElement();\n                    if (!entry.getName().startsWith(\"resources/\")) {\n                        continue;\n                    }\n                    try (BufferedInputStream is = new BufferedInputStream(zipFile.getInputStream(entry))) {\n                        int count;\n                        byte[] data = new byte[BUFFER];\n                        File writeFile = new File(entry.getName().substring(\"resources/\".length()));\n                        if (writeFile.exists()) {\n                            LOGGER.log(Level.INFO, \"Skipping \" + writeFile.getAbsolutePath() + \", already exists\");\n                            continue;\n                        }\n                        if (!writeFile.canWrite()) {\n                            LOGGER.log(Level.INFO, \"Can't write to \" + writeFile.getAbsolutePath() + \", creating temp file\");\n                            String[] localPathParts = new File(\".\").toPath().relativize(writeFile.toPath()).toString().split(Pattern.quote(System.getProperty(\"file.separator\")));\n                            LOGGER.log(Level.INFO, \"Write file local path: \" + Arrays.toString(localPathParts));\n                            String[] parts = writeFile.getAbsolutePath().split(\"\\\\.\");\n                            String extension = parts[parts.length - 1];\n                            File tempWriteFile = File.createTempFile(\"resource\", \".\" + extension);\n                            LOGGER.log(Level.INFO, \"Created file \" + tempWriteFile.getAbsolutePath());\n                            Path tempResourceFile = Paths.get(tempWriteFile.getParentFile().getAbsolutePath(), localPathParts);\n                            Files.deleteIfExists(tempResourceFile);\n                            Files.createDirectories(tempResourceFile);\n                            tempWriteFile = Files.move(tempWriteFile.toPath(), tempResourceFile, StandardCopyOption.REPLACE_EXISTING).toFile();\n                            LOGGER.log(Level.INFO, \"Moved to \" + tempWriteFile.getAbsolutePath());\n                            tempWriteFile.deleteOnExit();\n                            LOGGER.log(Level.INFO, \"Writing out {0} to {1}\", new Object[]{writeFile.getAbsolutePath(), tempWriteFile.getAbsolutePath()});\n                            fileChanges.put(writeFile.getAbsolutePath(), tempWriteFile.getAbsolutePath());\n                            writeFile = tempWriteFile;\n                        }\n                        FileOutputStream fos = new FileOutputStream(writeFile);\n                        try (BufferedOutputStream dest = new BufferedOutputStream(fos, BUFFER)) {\n                            while ((count = is.read(data, 0, BUFFER)) != -1) {\n                                dest.write(data, 0, count);\n                            }\n                            dest.flush();\n                        }\n                        LOGGER.log(Level.INFO, \"Opening schedule - written file {0}\", writeFile.getAbsolutePath());\n                    }\n                }\n                Schedule ret = parseXML(zipFile.getInputStream(zipFile.getEntry(\"schedule.xml\")), fileChanges);\n                if (ret == null) {\n                    return null;\n                }\n                ret.setFile(file);\n                ret.modified = false;\n                return ret;\n            } finally {\n                zipFile.close();\n            }\n        } catch (IOException ex) {\n            LOGGER.log(Level.WARNING, \"Couldn't read the schedule from file\", ex);\n            return null;\n        }\n    }\n\n    /**\n     * Parse some given XML from an inputstream to create a schedule.\n     *\n     * @param inputStream the inputstream where the xml is being read from.\n     * @return the schedule.\n     */\n    private static Schedule parseXML(InputStream inputStream, Map<String, String> fileChanges) {\n        try {\n            /*\n             * TODO: This should solve a problem some people were having with\n             * entering schedules - though I'm not really sure *why* they're\n             * having this problem (it seems to be that there's some funny\n             * characters that end up in the XML file which shouldn't be there.\n             * Character encoding bug perhaps? Oh joy.\n             *\n             * Start bodge.\n             */\n            BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream, \"UTF-8\"));\n            StringBuilder contentsBuilder = new StringBuilder();\n            String line;\n            while ((line = reader.readLine()) != null) {\n                contentsBuilder.append(line).append('\\n');\n            }\n            String contents = contentsBuilder.toString();\n            contents = contents.replace(new String(new byte[]{11}), \"\\n\");\n            contents = contents.replace(new String(new byte[]{-3}), \" \");\n            contents = contents.replace(new String(new byte[]{0}), \"\");\n            InputStream strInputStream = new ByteArrayInputStream(contents.getBytes(\"UTF-8\"));\n            /*\n             * End bodge.\n             */\n\n            DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();\n            DocumentBuilder builder = factory.newDocumentBuilder();\n            Document doc = builder.parse(strInputStream); //Read from our \"bodged\" stream.\n            NodeList nodes = doc.getFirstChild().getChildNodes();\n            Schedule newSchedule = new Schedule();\n            boolean skipped = false;\n            for (int i = 0; i < nodes.getLength(); i++) {\n                Node node = nodes.item(i);\n                String name = node.getNodeName();\n                //The non-shortcircuit (single bar) \"or\" is deliberate here, otherwise after \"skipped\" is set to true, nothing else will get added.\n                if (name.equalsIgnoreCase(\"song\")) {\n                    skipped = skipped | !newSchedule.add(SongDisplayable.parseXML(node, fileChanges));\n                } else if (name.equalsIgnoreCase(\"passage\")) {\n                    skipped = skipped | !newSchedule.add(BiblePassage.parseXML(node));\n                } else if (name.equalsIgnoreCase(\"fileimage\")) {\n                    skipped = skipped | !newSchedule.add(ImageDisplayable.parseXML(node, fileChanges));\n                } else if (name.equalsIgnoreCase(\"filevideo\")) {\n                    skipped = skipped | !newSchedule.add(VideoDisplayable.parseXML(node, fileChanges));\n                } else if (name.equalsIgnoreCase(\"fileaudio\")) {\n                    skipped = skipped | !newSchedule.add(AudioDisplayable.parseXML(node, fileChanges));\n                } else if (name.equalsIgnoreCase(\"filepresentation\")) {\n                    PresentationDisplayable disp = PresentationDisplayable.parseXML(node, fileChanges);\n                    skipped = skipped | !newSchedule.add(disp);\n                } else if (name.equalsIgnoreCase(\"timer\")) {\n                    skipped = skipped | !newSchedule.add(TimerDisplayable.parseXML(node));\n                } else if (name.equalsIgnoreCase(\"filepdf\")) {\n                    skipped = skipped | !newSchedule.add(PdfDisplayable.parseXML(node, fileChanges));\n                } else if (name.equalsIgnoreCase(\"fileimagegroup\")) {\n                    skipped = skipped | !newSchedule.add(ImageGroupDisplayable.parseXML(node, fileChanges));\n                } else if (name.equalsIgnoreCase(\"url\")) {\n                    skipped = skipped | !newSchedule.add(WebDisplayable.parseXML(node));\n                }\n            }\n            if (skipped) {\n                Platform.runLater(() -> {\n                    Dialog.showWarning(LabelGrabber.INSTANCE.getLabel(\"schedule.items.skipped.header\"), LabelGrabber.INSTANCE.getLabel(\"schedule.items.skipped.text\"));\n                });\n            }\n            newSchedule.modified = false;\n            return newSchedule;\n        } catch (ParserConfigurationException | SAXException | IOException ex) {\n            LOGGER.log(Level.WARNING, \"Couldn't parse the schedule\", ex);\n            return null;\n        }\n    }\n\n    /**\n     * Determine if this schedule has been modified since it was last saved.\n     *\n     * @return true if it's been modified, false if it hasn't.\n     */\n    public boolean isModified() {\n        return modified;\n    }\n\n    /**\n     * Get the file where this schedule is being saved.\n     *\n     * @return the file.\n     */\n    public File getFile() {\n        return file;\n    }\n\n    /**\n     * Set the file that this schedule should be saved to.\n     *\n     * @param file the file.\n     */\n    public void setFile(File file) {\n        this.file = file;\n    }\n\n    /**\n     * Clear all the displayables in this schedule.\n     */\n    public void clear() {\n        displayables.clear();\n        modified = true;\n    }\n\n    /**\n     * Add a displayable to this schedule.\n     *\n     * @param displayable the displayable to add.\n     */\n    public boolean add(Displayable displayable) {\n        if (displayable != null) {\n            displayables.add(displayable);\n            modified = true;\n            return true;\n        }\n        return false;\n    }\n\n    /**\n     * Write this schedule to a file.\n     *\n     * @return true if the write was successful, false otherwise.\n     */\n    public synchronized boolean writeToFile() {\n        if (file == null) {\n            return false;\n        }\n        try {\n            ZipOutputStream zos = new ZipOutputStream(new FileOutputStream(file), Charset.forName(\"UTF-8\"));\n            zos.setLevel(Deflater.NO_COMPRESSION);\n            final int BUFFER = 2048;\n            byte[] data = new byte[BUFFER];\n            try {\n                zos.putNextEntry(new ZipEntry(\"schedule.xml\"));\n                zos.write(getXML().getBytes(\"UTF8\"));\n                zos.closeEntry();\n                if (QueleaProperties.get().getEmbedMediaInScheduleFile()) {\n                    Set<String> entries = new HashSet<>();\n                    for (Displayable displayable : displayables) {\n                        for (File displayableFile : displayable.getResources()) {\n                            if (displayableFile.exists()) {\n                                String zipPath = \"resources/\" + Utils.toRelativeStorePath(displayableFile);\n                                if (!entries.contains(zipPath)) {\n                                    entries.add(zipPath);\n                                    ZipEntry entry = new ZipEntry(zipPath);\n                                    zos.putNextEntry(entry);\n                                    FileInputStream fi = new FileInputStream(displayableFile);\n                                    try (BufferedInputStream origin = new BufferedInputStream(fi, BUFFER)) {\n                                        int count;\n                                        while ((count = origin.read(data, 0, BUFFER)) != -1) {\n                                            zos.write(data, 0, count);\n                                        }\n                                        zos.closeEntry();\n                                    }\n                                }\n                            }\n                        }\n                    }\n                }\n                modified = false;\n                return true;\n            } finally {\n                zos.close();\n            }\n        } catch (IOException ex) {\n            LOGGER.log(Level.WARNING, \"Couldn't write the schedule to file\", ex);\n            return false;\n        }\n    }\n\n    /**\n     * Get this schedule as XML.\n     *\n     * @return XML describing this schedule.\n     */\n    public String getXML() {\n        StringBuilder xml = new StringBuilder();\n        xml.append(\"<schedule>\");\n        for (Displayable displayable : displayables) {\n            if (displayable != null) {\n                xml.append(displayable.getXML());\n            }\n        }\n        xml.append(\"</schedule>\");\n        return xml.toString();\n    }\n\n    /**\n     * Get this schedule as XML.\n     *\n     * @return XML describing this schedule.\n     */\n    public String getPrintXML() {\n        StringBuilder xml = new StringBuilder();\n        xml.append(\"<schedule>\");\n        xml.append(\"<title>\");\n        xml.append(LabelGrabber.INSTANCE.getLabel(\"order.service.heading\"));\n        xml.append(\"</title>\");\n        for (Displayable displayable : displayables) {\n            xml.append(displayable.getXML());\n        }\n        xml.append(\"</schedule>\");\n        return xml.toString();\n    }\n\n    /**\n     * Get an iterator over the displayables in the schedule.\n     *\n     * @return the iterator.\n     */\n    @Override\n    public Iterator<Displayable> iterator() {\n        return displayables.iterator();\n    }\n\n    /**\n     * Get the displayable at the given index.\n     *\n     * @param index the index to get the displayable at.\n     * @return the displayable at the given index.\n     */\n    public Displayable getDisplayable(int index) {\n        return displayables.get(index);\n    }\n\n    /**\n     * Get the size of this schedule.\n     *\n     * @return the schedule size.\n     */\n    public int getSize() {\n        return displayables.size();\n    }\n\n    /**\n     * Determine whether this schedule is empty.\n     *\n     * @return true if it's empty, false otherwise.\n     */\n    public boolean isEmpty() {\n        return getSize() == 0;\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/ScheduleSaver.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data;\n\nimport java.io.File;\nimport javafx.application.Platform;\nimport javafx.stage.FileChooser;\nimport org.javafx.dialog.Dialog;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.FileFilters;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.windows.main.MainPanel;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.windows.main.StatusPanel;\n\n/**\n * Responsible for saving a schedule.\n *\n * @author Michael\n */\npublic class ScheduleSaver {\n\n    private boolean yes = false;\n\n    /**\n     * Save the current schedule. This will execute on a new thread.\n     *\n     * @param saveAs true if the file location should be specified, false if the\n     * current one should be used.\n     * @param callback the callback to use to signal if the save was successful.\n     * Can be null.\n     */\n    public void saveSchedule(boolean saveAs, final SaveCallback callback) {\n        MainPanel mainpanel = QueleaApp.get().getMainWindow().getMainPanel();\n        final Schedule schedule = mainpanel.getSchedulePanel().getScheduleList().getSchedule();\n        File file = schedule.getFile();\n        if (saveAs || file == null) {\n            FileChooser chooser = new FileChooser();\n            if (QueleaProperties.get().getLastScheduleFileDirectory() != null) {\n                chooser.setInitialDirectory(QueleaProperties.get().getLastScheduleFileDirectory());\n            }\n            chooser.getExtensionFilters().add(FileFilters.SCHEDULE);\n            File selectedFile = chooser.showSaveDialog(QueleaApp.get().getMainWindow());\n            if (selectedFile != null) {\n                QueleaProperties.get().setLastScheduleFileDirectory(selectedFile.getParentFile());\n                String extension = QueleaProperties.get().getScheduleExtension();\n                if (!selectedFile.getName().endsWith(\".\" + extension)) {\n                    selectedFile = new File(selectedFile.getAbsoluteFile() + \".\" + extension);\n                }\n                if (selectedFile.exists() && !Utils.isWindows()) {\n                    yes = false;\n                    Dialog confirm = Dialog.buildConfirmation(LabelGrabber.INSTANCE.getLabel(\"overwrite.text\"), selectedFile.getName() + \" \" + LabelGrabber.INSTANCE.getLabel(\"already.exists.overwrite.label\")).addYesButton(t -> yes = true).addNoButton(t -> {}).build();\n                    confirm.showAndWait();\n                    if (!yes) {\n                        selectedFile = null;\n                    }\n                }\n                schedule.setFile(selectedFile);\n            }\n        }\n        final StatusPanel statusPanel = QueleaApp.get().getStatusGroup().addPanel(LabelGrabber.INSTANCE.getLabel(\"saving.schedule\"));\n        new Thread(() -> {\n            boolean success = false;\n            if (schedule.getFile() != null) {\n                success = schedule.writeToFile();\n                if (!success) {\n                    Platform.runLater(() -> Dialog.showError(LabelGrabber.INSTANCE.getLabel(\"cant.save.schedule.title\"), LabelGrabber.INSTANCE.getLabel(\"cant.save.schedule.text\")));\n                }\n            }\n            if (callback != null) {\n                callback.saved(success);\n            }\n            statusPanel.done();\n        }).start();\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/ThemeDTO.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data;\n\nimport java.io.File;\nimport java.io.Serializable;\nimport java.util.Map;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport javafx.scene.paint.Color;\nimport javafx.scene.text.Font;\nimport javafx.scene.text.FontPosture;\nimport javafx.scene.text.FontWeight;\nimport org.quelea.data.db.model.TextShadow;\nimport org.quelea.data.db.model.Theme;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.SerializableColor;\nimport org.quelea.services.utils.SerializableDropShadow;\nimport org.quelea.services.utils.SerializableFont;\nimport org.quelea.services.utils.Utils;\n\n/**\n * A theme data transfer object used to deliver theme data from DB to view layer\n * <p/>\n * @author Michael\n */\npublic class ThemeDTO implements Serializable {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    public static final SerializableFont DEFAULT_FONT = new SerializableFont(Font.font(\"Noto Sans\", FontWeight.BOLD, FontPosture.REGULAR, QueleaProperties.get().getMaxFontSize()));\n    public static final Color DEFAULT_FONT_COLOR = Color.WHITE;\n    public static final Color DEFAULT_TRANSLATE_FONT_COLOR = Color.WHITESMOKE;\n    public static final SerializableDropShadow DEFAULT_SHADOW = new SerializableDropShadow(Color.BLACK, 0, 0, 2, 0, true);\n    public static final ColourBackground DEFAULT_BACKGROUND = new ColourBackground(Color.BLACK);\n    public static final ThemeDTO DEFAULT_THEME = new ThemeDTO(DEFAULT_FONT, DEFAULT_FONT_COLOR, DEFAULT_FONT, DEFAULT_TRANSLATE_FONT_COLOR, DEFAULT_BACKGROUND, DEFAULT_SHADOW, DEFAULT_FONT.getFont().getStyle().toLowerCase().contains(\"bold\"), DEFAULT_FONT.getFont().getStyle().toLowerCase().contains(\"italic\"), DEFAULT_FONT.getFont().getStyle().toLowerCase().contains(\"bold\"), true, -1, 0);\n    private final SerializableFont font;\n    private final SerializableColor fontColor;\n    private final SerializableFont translateFont;\n    private final SerializableColor translateFontColor;\n    private final Background background;\n    private final SerializableDropShadow textShadow;\n    private String themeName;\n    private File file;\n    private Boolean isFontBold = false;\n    private Boolean isFontItalic = false;\n    private Boolean isTranslateFontBold = false;\n    private Boolean isTranslateFontItalic = false;\n    private int textPosition = -1;\n    private int textAlignment = 0;\n\n    /**\n     * Create a new theme with a specified font, font colour and background.\n     * <p/>\n     * @param font the font to use for the theme.\n     * @param fontPaint the font colour to use for the theme.\n     * @param background the background to use for the page.\n     */\n    public ThemeDTO(SerializableFont font, Color fontPaint, SerializableFont translatefont, Color translatefontPaint, Background background,\n            SerializableDropShadow shadow, Boolean isFontBold, Boolean isFontItalic, Boolean isTranslateFontBold, Boolean isTranslateFontItalic,\n            Integer textPosition, Integer textAlignment) {\n        this.font = font;\n        this.translateFont = translatefont;\n        this.fontColor = new SerializableColor(fontPaint);\n        this.translateFontColor = new SerializableColor(translatefontPaint);\n        this.background = background;\n        themeName = \"\";\n        this.textShadow = shadow;\n        this.isFontBold = isFontBold;\n        this.isFontItalic = isFontItalic;\n        this.isTranslateFontBold = isTranslateFontBold;\n        this.isTranslateFontItalic = isTranslateFontItalic;\n        this.textPosition = textPosition;\n        this.textAlignment = textAlignment;\n    }\n\n    public int getTextPosition() {\n        return textPosition;\n    }\n\n    public void setTextPosition(int textPosition) {\n        this.textPosition = textPosition;\n    }\n\n    public int getTextAlignment() {\n        return textAlignment;\n    }\n\n    public void setTextAlignment(int textAlignment) {\n        this.textAlignment = textAlignment;\n    }\n\n    /**\n     * Get the file associated with this theme.\n     * <p/>\n     * @return the theme file, or null if one hasn't been set.\n     */\n    public File getFile() {\n        return file;\n    }\n\n    /**\n     * Set the file associated with this theme.\n     * <p/>\n     * @param file the file to set as the theme file.\n     */\n    public void setFile(File file) {\n        this.file = file;\n    }\n\n    /**\n     * Get the name of the theme.\n     * <p/>\n     * @return the name of the theme.\n     */\n    public String getThemeName() {\n        return themeName;\n    }\n\n    /**\n     * Set the theme name.\n     * <p/>\n     * @param themeName the theme name.\n     */\n    public void setThemeName(String themeName) {\n        this.themeName = themeName;\n    }\n\n    /**\n     * Get the background of the theme.\n     * <p/>\n     * @return the theme background.\n     */\n    public Background getBackground() {\n        return background;\n    }\n\n    /**\n     * Get the font of the theme.\n     * <p/>\n     * @return the theme font.\n     */\n    public Font getFont() {\n        if (font == null) {\n            return null;\n        }\n        return font.getFont();\n    }\n\n    /**\n     * Get the translate font of the theme.\n     * <p/>\n     * @return the translate theme font.\n     */\n    public Font getTranslateFont() {\n        if (translateFont == null) {\n            return null;\n        }\n        return translateFont.getFont();\n    }\n\n    /**\n     * Get the font in its raw serializable form.\n     * <p>\n     * @return the serializable font.\n     */\n    public SerializableFont getSerializableFont() {\n        return font;\n    }\n\n    /**\n     * Get the translate font in its raw serializable form.\n     * <p>\n     * @return the translate serializable font.\n     */\n    public SerializableFont getTranslateSerializableFont() {\n        return translateFont;\n    }\n\n    /**\n     * Get the paint of the font.\n     * <p/>\n     * @return the theme font paint.\n     */\n    public Color getFontPaint() {\n        if (fontColor == null) {\n            return null;\n        }\n        return fontColor.getColor();\n    }\n\n    /**\n     * Get the paint of the translate font.\n     * <p/>\n     * @return the theme translate font paint.\n     */\n    public Color getTranslateFontPaint() {\n        if (translateFontColor == null) {\n            return null;\n        }\n        return translateFontColor.getColor();\n    }\n\n    /**\n     * Determine if this theme is equal to another object.\n     * <p/>\n     * @param obj the other object.\n     * @return true if the two objects are meaningfully equal, false otherwise.\n     */\n    public boolean equals(Object obj, boolean ignoreName, boolean ignoreFontSize) {\n        if (obj == null) {\n            return false;\n        }\n        if (getClass() != obj.getClass()) {\n            return false;\n        }\n        final ThemeDTO other = (ThemeDTO) obj;\n        if (this.font != other.font && (this.font == null || !this.font.equals(other.font, ignoreFontSize))) {\n            return false;\n        }\n        if (this.fontColor != other.fontColor && (this.fontColor == null || !this.fontColor.equals(other.fontColor))) {\n            return false;\n        }\n        if (this.background != other.background && (this.background == null || !this.background.equals(other.background))) {\n            return false;\n        }\n        if (!ignoreName) {\n            if (this.themeName != other.themeName && (this.themeName == null || !this.themeName.equals(other.themeName))) {\n                return false;\n            }\n        }\n        return true;\n    }\n\n    @Override\n    public boolean equals(Object obj) {\n        return equals(obj, false, false);\n    }\n\n    public boolean equalsIgnoreNameAndFontSize(ThemeDTO obj) {\n        return equals(obj, true, true);\n    }\n\n    /**\n     * Determine a hashcode for this theme.\n     * <p/>\n     * @return the theme's hashcode.\n     */\n    @Override\n    public int hashCode() {\n        int hash = 7;\n        hash = 67 * hash + (this.font != null ? this.font.hashCode() : 0);\n        hash = 67 * hash + (this.fontColor != null ? this.fontColor.hashCode() : 0);\n        hash = 67 * hash + (this.background != null ? this.background.hashCode() : 0);\n        return hash;\n    }\n\n    /**\n     * Get a string representation of this theme for storing in the database.\n     * <p/>\n     * @return the string to store in the database.\n     */\n    public Theme getTheme() {\n        String backgroundColor = \"\";\n        String backgroundVideo = \"\";\n        String backgroundImage = \"\";\n        double vidHue = 0;\n        boolean vidStretch = false;\n        if (background instanceof VideoBackground) {\n            backgroundVideo = background.getString();\n            vidHue = ((VideoBackground) background).getHue();\n            vidStretch = ((VideoBackground) background).getStretch();\n        } else if (background instanceof ImageBackground) {\n            backgroundImage = background.getString();\n        } else if (background instanceof ColourBackground) {\n            backgroundColor = background.getString();\n        }\n        final TextShadow shadow = new TextShadow(textShadow.getColor().toString(),\n                textShadow.getOffsetX(), textShadow.getOffsetY(), textShadow.getRadius(), textShadow.getSpread(), textShadow.getUse());\n        final Theme theme = new Theme(themeName, font.getFont().getName(), fontColor.toString(), translateFont.getFont().getName(), translateFontColor.toString(), backgroundColor,\n                backgroundVideo, backgroundImage, shadow, isFontBold, isFontItalic, isTranslateFontBold, isTranslateFontItalic, vidHue, vidStretch, textPosition, textAlignment);\n        return theme;\n    }\n\n    /**\n     * Get a themeDTO from a Theme which is DB table mapping\n     * <p/>\n     */\n    public static ThemeDTO getDTO(Theme theme) {\n        SerializableFont font = new SerializableFont(new Font(theme.getFontname(), QueleaProperties.get().getMaxFontSize()));\n        SerializableFont translateFont = new SerializableFont(new Font(theme.getTranslateFontname(), QueleaProperties.get().getMaxFontSize()));\n        Background background;\n        if (!theme.getBackgroundcolour().isEmpty()) {\n            background = new ColourBackground(Utils.parseColour(theme.getBackgroundcolour()));\n        } else if (!theme.getBackgroundimage().isEmpty()) {\n            background = new ImageBackground(theme.getBackgroundimage());\n        } else if (!theme.getBackgroundvid().isEmpty()) {\n            background = new VideoBackground(theme.getBackgroundvid(), theme.getVideoHue(), theme.getVideoStretch());\n        } else {\n            background = new ColourBackground(Color.BLACK);\n        }\n        TextShadow givenShadow = theme.getTextShadow();\n        SerializableDropShadow shadow = new SerializableDropShadow(Utils.parseColour(givenShadow.getShadowColor()),\n                givenShadow.getOffsetX(), givenShadow.getOffsetY(), givenShadow.getRadius(), givenShadow.getSpread(), givenShadow.getUse());\n        ThemeDTO ret = new ThemeDTO(font, Utils.parseColour(theme.getFontcolour()), translateFont, Utils.parseColour(theme.getTranslateFontcolour()),\n                background, shadow, theme.isFontBold(), theme.isFontItalic(), theme.isTranslateFontBold(), theme.isTranslateFontItalic(), theme.getTextPosition(), theme.getTextAlignment());\n        ret.themeName = theme.getName();\n        return ret;\n    }\n\n    public SerializableDropShadow getShadow() {\n        return textShadow;\n    }\n\n    /**\n     * Presents theme as string representation //\n     * <p/>\n     * @todo move to SimpleXML framework.\n     * @return theme as string representation\n     */\n    public String asString() {\n        StringBuilder ret = new StringBuilder();\n        ret.append(\"fontname:\").append(font.getFont().getFamily());\n        ret.append(\"$translatefontname:\").append(translateFont.getFont().getFamily());\n        ret.append(\"$fontcolour:\").append(fontColor.toString());\n        ret.append(\"$translatefontcolour:\").append(translateFontColor.toString());\n        if (!themeName.isEmpty()) {\n            ret.append(\"$themename:\").append(themeName);\n        }\n        ret.append(\"$isFontBold:\").append(isFontBold);\n        ret.append(\"$isFontItalic:\").append(isFontItalic);\n        ret.append(\"$isTranslateFontBold:\").append(isTranslateFontBold);\n        ret.append(\"$isTranslateFontItalic:\").append(isTranslateFontItalic);\n        if (background instanceof VideoBackground) {\n            ret.append(\"$backgroundvideo:\").append(((VideoBackground) background).getString());\n            ret.append(\"$vidhue:\").append(((VideoBackground) background).getHue());\n            ret.append(\"$vidstretch:\").append(((VideoBackground) background).getStretch());\n        } else if (background instanceof ImageBackground) {\n            ret.append(\"$backgroundimage:\").append(((ImageBackground) background).getString());\n        } else if (background instanceof ColourBackground) {\n            ret.append(\"$backgroundcolour:\").append(((ColourBackground) background).getString());\n        }\n        ret.append(\"$shadowcolor:\").append(textShadow.getColor().toString());\n        ret.append(\"$shadowX:\").append(textShadow.getOffsetX());\n        ret.append(\"$shadowY:\").append(textShadow.getOffsetY());\n        ret.append(\"$shadowradius:\").append(textShadow.getRadius());\n        ret.append(\"$shadowspread:\").append(textShadow.getSpread());\n        ret.append(\"$shadowuse:\").append(textShadow.getUse());\n        ret.append(\"$textposition:\").append(textPosition);\n        ret.append(\"$textalignment:\").append(textAlignment);\n        return ret.toString();\n    }\n\n    public String asXMLString() {\n        return Utils.escapeXML(asString());\n    }\n\n    /**\n     * Create Theme DTO form its String representation\n     * <p/>\n     * @param content Theme String representation\n     * @return theme DTO\n     */\n    public static ThemeDTO fromString(String content, Map<String, String> fileChanges) {\n        if (content == null || content.isEmpty()) {\n            return ThemeDTO.DEFAULT_THEME;\n        }\n        String fontname = \"\";\n        String fontcolour = \"\";\n        String translatefontname = \"\";\n        String translatefontcolour = \"\";\n        String isFontBold = \"\";\n        String isFontItalic = \"\";\n        String isTranslateFontBold = \"\";\n        String isTranslateFontItalic = \"\";\n        String backgroundcolour = \"\";\n        String backgroundvid = \"\";\n        String backgroundimage = \"\";\n        String themeName = \"\";\n        String shadowColor = \"\";\n        String shadowRadius = \"2\";\n        String shadowSpread = \"0\";\n        String shadowUse = \"true\";\n        String shadowOffsetX = \"0\";\n        String shadowOffsetY = \"0\";\n        String vidHue = \"0\";\n        String vidStretch = \"false\";\n        String textPosition = \"-1\";\n        String textAlignment = \"0\";\n        for (String part : content.split(\"\\\\$\")) {\n            if (!part.contains(\":\")) {\n                continue;\n            }\n            String[] parts = part.split(\":\");\n            if (parts[0].equalsIgnoreCase(\"fontname\")) {\n                fontname = parts[1];\n            } else if (parts[0].equalsIgnoreCase(\"fontcolour\")) {\n                fontcolour = parts[1];\n            } else if (parts[0].equalsIgnoreCase(\"translatefontname\")) {\n                translatefontname = parts[1];\n            } else if (parts[0].equalsIgnoreCase(\"translatefontcolour\")) {\n                translatefontcolour = parts[1];\n            } else if (parts[0].equalsIgnoreCase(\"isFontBold\")) {\n                isFontBold = parts[1];\n            } else if (parts[0].equalsIgnoreCase(\"isTranslateFontBold\")) {\n                isTranslateFontBold = parts[1];\n            } else if (parts[0].equalsIgnoreCase(\"isTranslateFontItalic\")) {\n                isTranslateFontItalic = parts[1];\n            } else if (parts[0].equalsIgnoreCase(\"isFontItalic\")) {\n                isFontItalic = parts[1];\n            } else if (parts[0].equalsIgnoreCase(\"backgroundcolour\")) {\n                backgroundcolour = parts[1];\n            } else if (parts[0].equalsIgnoreCase(\"backgroundimage\")) {\n                String potentialSwap = fileChanges.get(new File(parts[1]).getAbsolutePath());\n                if (potentialSwap != null && new File(potentialSwap).exists()) {\n                    backgroundimage = potentialSwap;\n                } else {\n                    backgroundimage = parts[1];\n                }\n            } else if (parts[0].equalsIgnoreCase(\"backgroundvideo\")) {\n                String potentialSwap = fileChanges.get(new File(parts[1]).getAbsolutePath());\n                if (potentialSwap != null && new File(potentialSwap).exists()) {\n                    backgroundvid = potentialSwap;\n                } else {\n                    backgroundvid = parts[1];\n                }\n            } else if (parts[0].equalsIgnoreCase(\"themename\")) {\n                themeName = parts[1];\n            } else if (parts[0].equalsIgnoreCase(\"shadowcolor\")) {\n                shadowColor = parts[1];\n            } else if (parts[0].equalsIgnoreCase(\"shadowradius\")) {\n                shadowRadius = parts[1];\n            } else if (parts[0].equalsIgnoreCase(\"shadowspread\")) {\n                shadowSpread = parts[1];\n            } else if (parts[0].equalsIgnoreCase(\"shadowuse\")) {\n                shadowUse = parts[1];\n            } else if (parts[0].equalsIgnoreCase(\"vidhue\")) {\n                vidHue = parts[1];\n            } else if (parts[0].equalsIgnoreCase(\"vidstretch\")) {\n                vidStretch = parts[1];\n            } else if (parts[0].equalsIgnoreCase(\"textposition\")) {\n                textPosition = parts[1];\n            } else if (parts[0].equalsIgnoreCase(\"textalignment\")) {\n                textAlignment = parts[1];\n            } else if (parts[0].equalsIgnoreCase(\"shadowX\")) {\n                shadowOffsetX = defaultIfEmpty(parts[1], \"0\");\n            } else if (parts[0].equalsIgnoreCase(\"shadowY\")) {\n                shadowOffsetY = defaultIfEmpty(parts[1], \"0\");\n            }\n        }\n        Font sysFont = Font.font(fontname,\n                Boolean.parseBoolean(isFontBold) ? FontWeight.BOLD : FontWeight.NORMAL,\n                Boolean.parseBoolean(isFontItalic) ? FontPosture.ITALIC : FontPosture.REGULAR,\n                QueleaProperties.get().getMaxFontSize());\n        SerializableFont font = new SerializableFont(sysFont);\n        Font sysTranslateFont = Font.font(translatefontname,\n                Boolean.parseBoolean(isTranslateFontBold) ? FontWeight.BOLD : FontWeight.NORMAL,\n                Boolean.parseBoolean(isTranslateFontItalic) ? FontPosture.ITALIC : FontPosture.REGULAR,\n                QueleaProperties.get().getMaxFontSize());\n        SerializableFont translateFont = new SerializableFont(sysTranslateFont);\n        Background background;\n        if (!backgroundcolour.trim().isEmpty()) {\n            background = new ColourBackground(Utils.parseColour(backgroundcolour));\n        } else if (!backgroundimage.trim().isEmpty()) {\n            background = new ImageBackground(backgroundimage);\n        } else if (!backgroundvid.trim().isEmpty()) {\n            background = new VideoBackground(backgroundvid, Double.parseDouble(vidHue), Boolean.parseBoolean(vidStretch));\n        } else {\n            LOGGER.log(Level.WARNING, \"WARNING: Unhandled or empty background, using default background. Raw content: \" + content, new RuntimeException(\"DEBUG EXCEPTION FOR STACK TRACE\"));\n            background = ThemeDTO.DEFAULT_BACKGROUND;\n        }\n        SerializableDropShadow shadow = new SerializableDropShadow(Utils.parseColour(shadowColor), Double.parseDouble(shadowOffsetX), Double.parseDouble(shadowOffsetY), Double.parseDouble(shadowRadius), Double.parseDouble(shadowSpread), Boolean.parseBoolean(shadowUse));\n        ThemeDTO ret = new ThemeDTO(font, Utils.parseColour(fontcolour), translateFont, Utils.parseColour(translatefontcolour),\n                background, shadow, Boolean.valueOf(isFontBold), Boolean.valueOf(isFontItalic),\n                Boolean.valueOf(isTranslateFontBold), Boolean.valueOf(isTranslateFontItalic), Integer.parseInt(textPosition), Integer.parseInt(textAlignment.trim()));\n        ret.themeName = themeName;\n        return ret;\n    }\n\n    /**\n     * Return a set value if the given string is empty.\n     * <p/>\n     * @param val the string to check.\n     * @param defaultVal the value to return if the string is empty.\n     * @return val, or defaultVal if the string is empty (or just whitespace.)\n     */\n    private static String defaultIfEmpty(String val, String defaultVal) {\n        if (val == null) {\n            return defaultVal;\n        }\n        if (val.trim().isEmpty()) {\n            return defaultVal;\n        }\n        return val;\n    }\n\n    /**\n     * @return the italic\n     */\n    public boolean isItalic() {\n        return isFontItalic;\n    }\n\n    /**\n     * @return the bold\n     */\n    public boolean isBold() {\n        return isFontBold;\n    }\n\n    /**\n     * @return the italic\n     */\n    public boolean isTranslateItalic() {\n        return isTranslateFontItalic;\n    }\n\n    /**\n     * @return the bold\n     */\n    public boolean isTranslateBold() {\n        return isTranslateFontBold;\n    }\n\n    @Override\n    public String toString() {\n        return themeName;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/VideoBackground.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data;\n\nimport java.io.File;\nimport java.io.Serializable;\nimport java.util.ArrayList;\nimport java.util.Collection;\nimport java.util.List;\nimport java.util.Objects;\nimport javafx.event.ActionEvent;\nimport javafx.scene.control.CheckBox;\nimport javafx.scene.control.ColorPicker;\nimport javafx.scene.control.ComboBox;\nimport javafx.scene.control.Slider;\nimport javafx.scene.control.TextField;\nimport javafx.scene.paint.Color;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\n\n/**\n * A background comprising of a video.\n * <p/>\n * @author Michael\n */\npublic class VideoBackground implements Background, Serializable {\n\n    private String vidLocation;\n    private final double hue;\n    private final boolean stretch;\n\n    /**\n     * Create a new video background.\n     *\n     * @param vidLocation the location of the video to use.\n     * @param hue the hue adjustment of the video.\n     * @param stretch true if the video should be stretched to fill the screen,\n     * false otherwise.\n     */\n    public VideoBackground(String vidLocation, double hue, boolean stretch) {\n        this.vidLocation = vidLocation;\n        this.hue = hue;\n        this.stretch = stretch;\n    }\n\n    /**\n     * Get the hue adjustment, a double between 0-1.\n     *\n     * @return the hue adjustment.\n     */\n    public double getHue() {\n        return hue;\n    }\n\n    /**\n     * Determine if the video background should be stretched.\n     * @return true if it should be stretched, false otherwise.\n     */\n    public boolean getStretch() {\n        return stretch;\n    }\n    \n    /**\n     * Get the video background file.\n     * <p/>\n     * @return the file representing the video background\n     */\n    public File getVideoFile() {\n        File vidDirFile = new File(QueleaProperties.get().getVidDir(), vidLocation.trim());\n        File absFile = new File(vidLocation.trim());\n        if(absFile.exists()) {\n            return absFile;\n        }\n        else {\n            return vidDirFile;\n        }\n    }\n\n    public String getVLCVidString() {\n        return Utils.getVLCStringFromFile(getVideoFile());\n    }\n\n    @Override\n    public String getString() {\n        return new File(vidLocation).getName().trim();\n    }\n\n    @Override\n    public Collection<File> getResources() {\n        List<File> ret = new ArrayList<>();\n        ret.add(getVideoFile());\n        return ret;\n    }\n\n    @Override\n    public void setThemeForm(ColorPicker backgroundColorPicker, ComboBox<String> backgroundTypeSelect, TextField backgroundImgLocation, TextField backgroundVidLocation, Slider vidHueSlider, CheckBox vidStretchCheckbox) {\n        backgroundTypeSelect.getSelectionModel().select(LabelGrabber.INSTANCE.getLabel(\"video.theme.label\"));\n        backgroundVidLocation.setText(getVideoFile().getName());\n        vidHueSlider.setValue(hue);\n        vidStretchCheckbox.setSelected(stretch);\n        backgroundColorPicker.setValue(Color.BLACK);\n        backgroundColorPicker.fireEvent(new ActionEvent());\n        backgroundImgLocation.clear();\n    }\n\n    @Override\n    public int hashCode() {\n        int hash = 7;\n        hash = 17 * hash + Objects.hashCode(this.vidLocation);\n        return hash;\n    }\n\n    @Override\n    public boolean equals(Object obj) {\n        if (obj == null) {\n            return false;\n        }\n        if (getClass() != obj.getClass()) {\n            return false;\n        }\n        final VideoBackground other = (VideoBackground) obj;\n        if (!Objects.equals(this.vidLocation, other.vidLocation)) {\n            return false;\n        }\n        return true;\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/bible/Bible.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data.bible;\n\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.UnicodeReader;\nimport org.quelea.services.utils.Utils;\nimport org.w3c.dom.Document;\nimport org.w3c.dom.Node;\nimport org.w3c.dom.NodeList;\nimport org.xml.sax.InputSource;\nimport org.xml.sax.SAXException;\n\nimport javax.xml.parsers.DocumentBuilder;\nimport javax.xml.parsers.DocumentBuilderFactory;\nimport javax.xml.parsers.ParserConfigurationException;\nimport java.io.File;\nimport java.io.FileInputStream;\nimport java.io.IOException;\nimport java.io.Serializable;\nimport java.util.ArrayList;\nimport java.util.List;\nimport java.util.Objects;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport java.util.stream.Collectors;\nimport java.util.stream.Stream;\n\n/**\n * A bible containing a number of books as well as some information.\n * <p/>\n * @author Michael\n */\npublic final class Bible implements BibleInterface, Serializable {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    private final String name;\n    private BibleInfo information;\n    private final List<BibleBook> books;\n    private String filePath;\n\n    /**\n     * Create a new bible.\n     * <p/>\n     * @param name the name of the bible.\n     */\n    private Bible(String name) {\n        books = new ArrayList<>();\n        this.name = name;\n    }\n    \n    /**\n     * @return the path of the file this bible has been read from on null if n.a.\n     */\n    public String getFilePath() {\n        return filePath;\n    }\n    \n    public void setFilePath(String filePath) {\n        this.filePath = filePath;\n    }\n\n    @Override\n    public int hashCode() {\n        int hash = 5;\n        hash = 19 * hash + Objects.hashCode(this.name);\n        hash = 19 * hash + Objects.hashCode(this.information);\n        hash = 19 * hash + Objects.hashCode(this.books);\n        return hash;\n    }\n\n    @Override\n    public boolean equals(Object obj) {\n        if (obj == null) {\n            return false;\n        }\n        if (getClass() != obj.getClass()) {\n            return false;\n        }\n        final Bible other = (Bible) obj;\n        if (!Objects.equals(this.name, other.name)) {\n            return false;\n        }\n        if (!Objects.equals(this.information, other.information)) {\n            return false;\n        }\n        if (!Objects.equals(this.books, other.books)) {\n            return false;\n        }\n        return true;\n    }\n\n    /**\n     * Parse a bible from a specified bible and return it as an object.\n     * <p/>\n     * @param file the file where the XML bible is stored.\n     * @return the bible as a java object, or null if an error occurred.\n     */\n    public static Bible parseBible(final File file) {\n        LOGGER.log(Level.INFO, \"Parsing bible: \" + file.getAbsolutePath());\n        try {\n            if (file.exists()) {\n                DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();\n                DocumentBuilder builder = factory.newDocumentBuilder();\n                Document doc = builder.parse(new InputSource(new UnicodeReader(new FileInputStream(file), Utils.getEncoding(file))));\n                NodeList list = doc.getChildNodes();\n                for (int i = 0; i < list.getLength(); i++) {\n                    if (list.item(i).getNodeName().equalsIgnoreCase(\"xmlbible\")\n                            || list.item(i).getNodeName().equalsIgnoreCase(\"bible\")) {\n                        return parseXML(list.item(i), Utils.getFileNameWithoutExtension(file.getName()));\n                    }\n                    else if (list.item(i).getNodeName().equalsIgnoreCase(\"osis\")) {\n                        NodeList innerList = list.item(i).getChildNodes();\n                        for (int j = 0; j < innerList.getLength(); j++) {\n                            if (innerList.item(j).getNodeName().equalsIgnoreCase(\"osisText\")) {\n                                return parseXML(innerList.item(j), Utils.getFileNameWithoutExtension(file.getName()));\n                            }\n                        }\n                    }\n                }\n                LOGGER.log(Level.WARNING, \"Couldn''t parse the bible {0} because I couldn''t find any <bible> or <xmlbible> root tags :-(\", file);\n                return null;\n            } else {\n                LOGGER.log(Level.WARNING, \"Couldn''t parse the bible {0} because the file doesn''t exist!\", file);\n                return null;\n            }\n        } catch (ParserConfigurationException | SAXException | IOException ex) {\n            LOGGER.log(Level.WARNING, \"Couldn't parse the bible \" + file, ex);\n            return null;\n        }\n    }\n\n    /**\n     * Parse some XML representing this object and return the object it\n     * represents.\n     * <p/>\n     * @param node the XML node representing this object.\n     * @param defaultName the name of the bible if none is specified in the XML\n     * file.\n     * @return the object as defined by the XML.\n     */\n    public static Bible parseXML(Node node, String defaultName) {\n        String name = \"\";\n        if (node.getAttributes().getNamedItem(\"biblename\") != null) {\n            name = node.getAttributes().getNamedItem(\"biblename\").getNodeValue();\n        } else if (node.getAttributes().getNamedItem(\"name\") != null) {\n            name = node.getAttributes().getNamedItem(\"name\").getNodeValue();\n        } else {\n            name = defaultName;\n        }\n        Bible ret = new Bible(name);\n        List<Node> list = toList(node.getChildNodes());\n        list = list.stream().flatMap(n -> {\n                    if (n.getNodeName().equalsIgnoreCase(\"testament\")) {\n                        return toList(n.getChildNodes()).stream();\n                    } else {\n                        return Stream.of(n);\n                    }\n                })\n                .filter(item -> ret.isBibleBookNode(item))\n                .collect(Collectors.toList());\n        for (int i = 0; i < list.size(); i++) {\n            Node item = list.get(i);\n            if (item.getNodeName().equalsIgnoreCase(\"information\")) {\n                ret.information = BibleInfo.parseXML(item);\n            } else if (ret.isBibleBookNode(item)) {\n                BibleBook book = BibleBook.parseXML(item, i, BibleBookNameUtil.getBookNameForIndex(i, list.size()));\n                book.setBible(ret);\n                ret.addBook(book);\n            }\n        }\n        LOGGER.log(Level.INFO, \"Parsed bible: {0}. Contains {1} books.\", new Object[]{ret.getName(), list.size()});\n        return ret;\n    }\n\n    private boolean isBibleBookNode(Node n) {\n        return n.getNodeName().equalsIgnoreCase(\"biblebook\")\n                || n.getNodeName().equalsIgnoreCase(\"b\")\n                || n.getNodeName().equalsIgnoreCase(\"book\")\n                || (n.getNodeName().equalsIgnoreCase(\"div\") && n.getAttributes().getNamedItem(\"type\") != null && n.getAttributes().getNamedItem(\"type\").getNodeValue().equals(\"book\"));\n    }\n\n    private static List<Node> toList(NodeList nodeList) {\n        List<Node> ret = new ArrayList<>();\n        for (int i = 0; i < nodeList.getLength(); i++) {\n            ret.add(nodeList.item(i));\n        }\n        return ret;\n    }\n\n    /**\n     * Generate an XML representation of this bible.\n     * <p/>\n     * @return an XML representation of this bible.\n     */\n    public String toXML() {\n        StringBuilder ret = new StringBuilder();\n        ret.append(\"<xmlbible xmlns:xsi=\\\"http://www.w3.org/2001/XMLSchema-instance\\\" xsi:noNamespaceSchemaLocation=\\\"zef2005.xsd\\\" version=\\\"2.0.1.18\\\" status=\\\"v\\\" biblename=\\\"\");\n        ret.append(Utils.escapeXML(name));\n        ret.append(\"\\\" type=\\\"x-bible\\\" revision=\\\"0\\\">\");\n        if (information != null) {\n            ret.append(information.toXML());\n        }\n        for (BibleBook book : books) {\n            ret.append(book.toXML());\n        }\n        ret.append(\"</xmlbible>\");\n        return ret.toString();\n    }\n\n    /**\n     * Get general information about this bible.\n     * <p/>\n     * @return the bibleinfo object providing general information about the\n     * bible.\n     */\n    public BibleInfo getInformation() {\n        return information;\n    }\n\n    /**\n     * The name of the bible.\n     * <p/>\n     * @return the name of the bible.\n     */\n    public String getBibleName() {\n        return name;\n    }\n\n    /**\n     * Get a summary of the bible.\n     * <p/>\n     * @return a summary of the bible.\n     */\n    @Override\n    public String toString() {\n        String abbrev = Utils.getAbbreviation(getName());\n        StringBuilder ret = new StringBuilder(getName());\n        if (!(getName().contains(\"(\") || getName().contains(\")\")) && abbrev.length() > 1) {\n            ret.append(\" (\").append(abbrev).append(\")\");\n        }\n        return ret.toString();\n    }\n\n    /**\n     * Add a book to the bible.\n     * <p/>\n     * @param book the book to add.\n     */\n    public void addBook(BibleBook book) {\n        books.add(book);\n    }\n\n    /**\n     * Get all the books currently contained within this bible.\n     * <p/>\n     * @return all the books in the bible.\n     */\n    public BibleBook[] getBooks() {\n        return books.toArray(new BibleBook[books.size()]);\n    }\n\n    @Override\n    public int getNum() {\n        return -1;\n    }\n\n    @Override\n    public String getText() {\n        return toString();\n    }\n\n    @Override\n    public String getName() {\n        return getBibleName();\n    }\n\n    @Override\n    public BibleInterface getParent() {\n        return null;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/bible/BibleBook.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data.bible;\n\nimport java.io.Serializable;\nimport java.util.ArrayList;\nimport java.util.List;\nimport java.util.Objects;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.Utils;\nimport org.w3c.dom.Node;\nimport org.w3c.dom.NodeList;\n\n/**\n * A book in the bible.\n *\n * @author Michael\n */\npublic final class BibleBook implements BibleInterface, Serializable {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    private int bookNumber;\n    private String bookName;\n    private final List<BibleChapter> chapters;\n    private String htmlText;\n    private List<Integer> caretPosList;\n    private Bible bible;\n    private String bsname;\n\n    /**\n     * Create a new book.\n     */\n    private BibleBook() {\n        chapters = new ArrayList<>();\n        caretPosList = new ArrayList<>();\n    }\n\n    @Override\n    public int hashCode() {\n        int hash = 7;\n        hash = 43 * hash + this.bookNumber;\n        hash = 43 * hash + Objects.hashCode(this.bookName);\n        hash = 43 * hash + Objects.hashCode(this.chapters);\n        return hash;\n    }\n\n    @Override\n    public boolean equals(Object obj) {\n        if (obj == null) {\n            return false;\n        }\n        if (getClass() != obj.getClass()) {\n            return false;\n        }\n        final BibleBook other = (BibleBook) obj;\n        if (this.bookNumber != other.bookNumber) {\n            return false;\n        }\n        if (!Objects.equals(this.bookName, other.bookName)) {\n            return false;\n        }\n        if (!Objects.equals(this.chapters, other.chapters)) {\n            return false;\n        }\n        return true;\n    }\n\n    /**\n     * Set the bible this book is part of.\n     *\n     * @param bible the bible this book is part of.\n     */\n    public void setBible(Bible bible) {\n        this.bible = bible;\n    }\n\n    /**\n     * Get the text of this chapter as nicely formatted HTML.\n     *\n     * @return the text of this chapter.\n     */\n    public String getFullText() {\n        if (htmlText == null) {\n            caretPosList.clear();\n            int pos = 0;\n            StringBuilder ret = new StringBuilder(1000);\n            for (BibleChapter chapter : getChapters()) {\n                caretPosList.add(pos);\n                String numStr = Integer.toString(chapter.getNum());\n                pos += numStr.length();\n                ret.append(\"Chapter \").append(numStr);\n                ret.append(\"\\n\");\n                for (BibleVerse verse : chapter.getVerses()) {\n                    String verseText = verse.getText();\n                    pos += verseText.length();\n                    ret.append(verseText).append(' ');\n                }\n                ret.append(\"\\n\");\n            }\n            htmlText = ret.toString();\n        }\n        return htmlText;\n    }\n\n    /**\n     * Get the caret index of the chapter when used with the getHTML() method.\n     *\n     * @param num the number of the chapter in which to get the index.\n     * @return\n     */\n    public int getCaretIndexOfChapter(int num) {\n        return caretPosList.get(num - 1);\n    }\n\n    /**\n     * Get the bible this book is part of.\n     *\n     * @return the bible this book is part of.\n     */\n    public Bible getBible() {\n        return bible;\n    }\n\n    /**\n     * Parse some XML representing this object and return the object it\n     * represents.\n     *\n     * @param node the XML node representing this object.\n     * @param defaultBookNum the default book number if none is available on the\n     * XML file.\n     * @return the object as defined by the XML.\n     */\n    public static BibleBook parseXML(Node node, int defaultBookNum, String defaultBookName) {\n        BibleBook ret = new BibleBook();\n\n        NodeList list = node.getChildNodes();\n        for (int i = 0; i < list.getLength(); i++) {\n            if (list.item(i).getNodeName().equalsIgnoreCase(\"chapter\")\n                    || list.item(i).getNodeName().equalsIgnoreCase(\"c\")) {\n                BibleChapter chapter = BibleChapter.parseXML(list.item(i), i);\n                chapter.setBook(ret);\n                ret.addChapter(chapter);\n            }\n        }\n\n        if (node.getAttributes().getNamedItem(\"bnumber\") != null) {\n            ret.bookNumber = Integer.parseInt(node.getAttributes().getNamedItem(\"bnumber\").getNodeValue().trim());\n        } else if (node.getAttributes().getNamedItem(\"number\") != null) {\n            ret.bookNumber = Integer.parseInt(node.getAttributes().getNamedItem(\"number\").getNodeValue().trim());\n        } else if (node.getAttributes().getNamedItem(\"id\") != null) {\n            ret.bookNumber = Integer.parseInt(node.getAttributes().getNamedItem(\"id\").getNodeValue().trim());\n        } else {\n            ret.bookNumber = defaultBookNum;\n        }\n\n        if (node.getAttributes().getNamedItem(\"bname\") != null) {\n            ret.bookName = node.getAttributes().getNamedItem(\"bname\").getNodeValue();\n        } else if (node.getAttributes().getNamedItem(\"n\") != null) {\n            ret.bookName = node.getAttributes().getNamedItem(\"n\").getNodeValue();\n        } else if (node.getAttributes().getNamedItem(\"name\") != null) {\n            ret.bookName = node.getAttributes().getNamedItem(\"name\").getNodeValue();\n        } else if (node.getAttributes().getNamedItem(\"osisID\") != null) {\n            ret.bookName = node.getAttributes().getNamedItem(\"osisID\").getNodeValue();\n        } else if (ret.getChapters().length > 0 && ret.getChapter(0).getCaptions().length > 0) {\n            ret.bookName = ret.getChapter(0).getCaptions()[0];\n        }\n\n        if (node.getAttributes().getNamedItem(\"bsname\") != null) {\n            ret.bsname = node.getAttributes().getNamedItem(\"bsname\").getNodeValue();\n        } else {\n            ret.bsname = ret.bookName;\n        }\n\n        LOGGER.log(Level.INFO, \"Parsed \" + ret.getChapters().length + \" chapters in \" + ret.bookName);\n        return ret;\n    }\n\n    /**\n     * Generate an XML representation of this book.\n     *\n     * @return an XML representation of this book.\n     */\n    public String toXML() {\n        StringBuilder ret = new StringBuilder();\n        ret.append(\"<biblebook bnumber=\\\"\");\n        ret.append(bookNumber);\n        ret.append(\"\\\" bname=\\\"\");\n        ret.append(Utils.escapeXML(bookName));\n        ret.append(\"\\\">\");\n        for (BibleChapter chapter : chapters) {\n            ret.append(chapter.toXML());\n        }\n        ret.append(\"</biblebook>\");\n        return ret.toString();\n    }\n\n    /**\n     * Get the name of the book.\n     *\n     * @return the book's name.\n     */\n    public String getBookName() {\n        return bookName;\n    }\n\n    /**\n     * Get the name of the book.\n     *\n     * @return the book's name.\n     */\n    @Override\n    public String toString() {\n        return bookName;\n    }\n\n    /**\n     * Get the number of the book.\n     *\n     * @return the book's number.\n     */\n    public int getBookNumber() {\n        return bookNumber;\n    }\n\n    /**\n     * Add a chapter to this book.\n     *\n     * @param chapter the chapter to add.\n     */\n    public void addChapter(BibleChapter chapter) {\n        chapters.add(chapter);\n    }\n\n    /**\n     * Get a specific chapter from this book.\n     *\n     * @param i the chapter number to get.\n     * @return the chapter at the specified number, or null if it doesn't exist.\n     */\n    public BibleChapter getChapter(int i) {\n        if (i < chapters.size() && i >= 0) {\n            return chapters.get(i);\n        } else {\n            return null;\n        }\n    }\n\n    /**\n     * Get all the chapters in this book.\n     *\n     * @return all the chapters in the book.\n     */\n    public BibleChapter[] getChapters() {\n        return chapters.toArray(new BibleChapter[chapters.size()]);\n    }\n\n    @Override\n    public int getNum() {\n        return getBookNumber();\n    }\n\n    @Override\n    public String getName() {\n        return getBookName();\n    }\n\n    public String getBSName() {\n        return bsname;\n    }\n\n    @Override\n    public String getText() {\n        return getFullText();\n    }\n\n    @Override\n    public BibleInterface getParent() {\n        return getBible();\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/bible/BibleBookNameUtil.java",
    "content": "package org.quelea.data.bible;\n\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.LoggerUtils;\nimport java.util.Arrays;\nimport java.util.HashMap;\nimport java.util.List;\nimport java.util.Map;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\n\npublic class BibleBookNameUtil {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    private static Map<Integer, List<String>> BOOK_NAME_STRATEGIES = new HashMap<>();\n\n    static {\n        BOOK_NAME_STRATEGIES.put(66, Arrays.asList(\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.genesis\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.exodus\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.leviticus\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.numbers\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.deuteronomy\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.joshua\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.judges\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.ruth\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.1samuel\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.2samuel\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.1kings\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.2kings\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.1chronicles\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.2chronicles\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.ezra\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.nehemiah\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.esther\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.job\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.psalms\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.proverbs\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.ecclesiastes\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.songofsolomon\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.isaiah\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.jeremiah\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.lamentations\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.ezekiel\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.daniel\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.hosea\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.joel\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.amos\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.obadiah\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.jonah\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.micah\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.nahum\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.habakkuk\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.zephaniah\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.haggai\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.zechariah\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.malachi\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.matthew\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.mark\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.luke\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.john\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.acts\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.romans\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.1corinthians\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.2corinthians\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.galatians\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.ephesians\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.philippians\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.colossians\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.1thessalonians\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.2thessalonians\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.1timothy\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.2timothy\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.titus\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.philemon\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.hebrews\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.james\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.1peter\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.2peter\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.1john\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.2john\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.3john\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.jude\"),\n            LabelGrabber.INSTANCE.getLabel(\"bible.book.revelation\")\n        ));\n    }\n\n    public static String getBookNameForIndex(int index, int length) {\n        LOGGER.log(Level.INFO, \"Getting book name if possible: length \" + length + \" index \" + index);\n        List<String> bookNames = BOOK_NAME_STRATEGIES.get(length);\n        if(bookNames==null) {\n            LOGGER.log(Level.INFO, \"No book names known for length\" + length);\n            return \"Book \" + (index+1);\n        }\n        else {\n            return bookNames.get(index);\n        }\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/bible/BibleBrowseDialog.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data.bible;\n\nimport javafx.geometry.Insets;\nimport javafx.scene.Scene;\nimport javafx.scene.control.ComboBox;\nimport javafx.scene.control.Label;\nimport javafx.scene.control.ListView;\nimport javafx.scene.control.TextArea;\nimport javafx.scene.image.Image;\nimport javafx.scene.layout.BorderPane;\nimport javafx.scene.layout.HBox;\nimport javafx.stage.Stage;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.QueleaProperties;\n\n/**\n * A dialog where the user can browse through the installed bibles.\n * <p/>\n * @author Michael\n */\npublic class BibleBrowseDialog extends Stage implements BibleChangeListener {\n\n    private ComboBox<Bible> bibles;\n    private ListView<BibleBook> books;\n    private TextArea bibleText;\n\n    /**\n     * Create the bible browse dialog.\n     */\n    public BibleBrowseDialog() {\n        BorderPane mainPane = new BorderPane();\n        setTitle(LabelGrabber.INSTANCE.getLabel(\"bible.browser.title\"));\n        getIcons().add(new Image(\"file:icons/bible.png\"));\n\n        HBox northPanel = new HBox();\n        bibles = new ComboBox<>();\n        bibles.setEditable(false);\n        bibles.setOnAction((javafx.event.ActionEvent t) -> updateBooks());\n        BibleManager.get().registerBibleChangeListener(this);\n        Label selectBibleLabel = new Label(LabelGrabber.INSTANCE.getLabel(\"bible.heading\"));\n        selectBibleLabel.setLabelFor(bibles);\n        northPanel.getChildren().add(selectBibleLabel);\n        northPanel.getChildren().add(bibles);\n        northPanel.setSpacing(5);\n        BorderPane.setMargin(northPanel, new Insets(0, 5, 5, 5));\n        mainPane.setTop(northPanel);\n\n        books = new ListView<>();\n        books.getSelectionModel().selectedItemProperty().addListener((ov, t, t1) -> {\n            BibleBook book = books.getSelectionModel().getSelectedItem();\n            if(book != null) {\n                bibleText.setText(book.getText());\n            }\n        });\n        mainPane.setLeft(books);\n        bibleText = new TextArea();\n        bibleText.setWrapText(true);\n        bibleText.setEditable(false);\n        \n        mainPane.setCenter(bibleText);\n        updateBibles();\n\n        Scene scene = new Scene(mainPane);\n        if (QueleaProperties.get().getUseDarkTheme()) {\n            scene.getStylesheets().add(\"org/modena_dark.css\");\n        }\n        setScene(scene);\n    }\n\n    /**\n     * Set the current selected bible on this dialog.\n     * <p/>\n     * @param bible the bible to select.\n     */\n    public void setBible(Bible bible) {\n        bibles.getSelectionModel().select(bible);\n    }\n\n    /**\n     * Set the current selected book on this dialog.\n     * <p/>\n     * @param book the book to select.\n     */\n    public void setBook(BibleBook book) {\n        setBible(book.getBible());\n        books.getSelectionModel().select(book);\n    }\n\n    /**\n     * Set the current chapter on this dialog.\n     * <p/>\n     * @param chapter the chapter to select.\n     */\n    public void setChapter(BibleChapter chapter) {\n        setBook(chapter.getBook());\n    }\n\n    /**\n     * Update the books based on the bible selection\n     */\n    public final void updateBooks() {\n        int index = books.getSelectionModel().getSelectedIndex();\n        Bible currentBible = bibles.getSelectionModel().getSelectedItem();\n        books.itemsProperty().get().clear();\n        if(currentBible != null) {\n            for(BibleBook book : currentBible.getBooks()) {\n                books.itemsProperty().get().add(book);\n            }\n            books.getSelectionModel().select(index);\n        }\n    }\n\n    /**\n     * Update the list of bibles on this dialog.\n     */\n    @Override\n    public final void updateBibles() {\n        bibles.itemsProperty().get().clear();\n        for(Bible bible : BibleManager.get().getBibles()) {\n            bibles.itemsProperty().get().add(bible);\n        }\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/bible/BibleChangeListener.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data.bible;\n\n/**\n * An interface for when the state of the bible changes.\n * @author Michael\n */\npublic interface BibleChangeListener {\n\n    /**\n     * Called to update bibles.\n     */\n    void updateBibles();\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/bible/BibleChapter.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data.bible;\n\nimport java.io.Serializable;\nimport java.lang.ref.SoftReference;\nimport java.util.ArrayList;\nimport java.util.HashMap;\nimport java.util.List;\nimport java.util.Map;\nimport java.util.Objects;\nimport org.quelea.services.utils.Utils;\nimport org.w3c.dom.Node;\nimport org.w3c.dom.NodeList;\n\n/**\n * A chapter in the bible.\n * <p/>\n * @author Michael\n */\npublic final class BibleChapter implements BibleInterface, Serializable {\n\n    private static int statId = 0;\n    private final int num;\n    private final Map<Integer, BibleVerse> verses;\n    private final List<String> captions;\n    private transient SoftReference<String> softRefText;\n    private final int id = statId++;\n    private BibleBook book;\n\n    /**\n     * Create a new bible chapter.\n     * <p/>\n     * @param num the chapter number (or -1 if it's unknown.)\n     */\n    private BibleChapter(int num) {\n        this.num = num;\n        verses = new HashMap<>();\n        captions = new ArrayList<>();\n    }\n\n    @Override\n    public int hashCode() {\n        int hash = 3;\n        hash = 67 * hash + this.num;\n        hash = 67 * hash + Objects.hashCode(this.verses);\n        return hash;\n    }\n\n    @Override\n    public boolean equals(Object obj) {\n        if (obj == null) {\n            return false;\n        }\n        if (getClass() != obj.getClass()) {\n            return false;\n        }\n        final BibleChapter other = (BibleChapter) obj;\n        if (this.num != other.num) {\n            return false;\n        }\n        if (!Objects.equals(this.verses, other.verses)) {\n            return false;\n        }\n        return true;\n    }\n\n    /**\n     * Set the bible book this chapter is part of.\n     * <p/>\n     * @param book the book this chapter is part of.\n     */\n    public void setBook(BibleBook book) {\n        this.book = book;\n    }\n\n    /**\n     * Get the book this chapter is part of.\n     * <p/>\n     * @return the book this chapter is part of.\n     */\n    public BibleBook getBook() {\n        return book;\n    }\n\n    /**\n     * Parse some XML representing this object and return the object it\n     * represents.\n     * <p/>\n     * @param node the XML node representing this object.\n     * @param defaultNum the default chapter number if no other information is\n     * available.\n     * @return the object as defined by the XML.\n     */\n    public static BibleChapter parseXML(Node node, int defaultNum) {\n        int num = -1;\n        if (node.getAttributes().getNamedItem(\"cnumber\") != null) {\n            try {\n                num = Integer.parseInt(node.getAttributes().getNamedItem(\"cnumber\").getNodeValue().trim());\n            } catch (NumberFormatException ex) {\n            }\n        } else if (node.getAttributes().getNamedItem(\"number\") != null) {\n            try {\n                num = Integer.parseInt(node.getAttributes().getNamedItem(\"number\").getNodeValue().trim());\n            } catch (NumberFormatException ex) {\n            }\n        } else if (node.getAttributes().getNamedItem(\"n\") != null) {\n            try {\n                num = Integer.parseInt(node.getAttributes().getNamedItem(\"n\").getNodeValue().trim());\n            } catch (NumberFormatException ex) {\n            }\n        } else if (node.getAttributes().getNamedItem(\"id\") != null) {\n            try {\n                num = Integer.parseInt(node.getAttributes().getNamedItem(\"id\").getNodeValue().trim());\n            } catch (NumberFormatException ex) {\n            }\n        }\n        if (num == -1) {\n            num = defaultNum;\n        }\n        BibleChapter ret = new BibleChapter(num);\n        NodeList list = node.getChildNodes();\n        for (int i = 0; i < list.getLength(); i++) {\n            if (list.item(i).getNodeName().equalsIgnoreCase(\"verse\")\n                    || list.item(i).getNodeName().equalsIgnoreCase(\"vers\")\n                    || list.item(i).getNodeName().equalsIgnoreCase(\"v\")) {\n                BibleVerse verse = BibleVerse.parseXML(list.item(i));\n                if (verse != null) {\n                    verse.setChapter(ret);\n                    ret.addVerse(verse);\n                }\n            }\n            else if (list.item(i).getNodeName().equalsIgnoreCase(\"caption\")) {\n                String caption = list.item(i).getTextContent();\n                if (caption != null) {\n                    ret.addCaption(caption);\n                }\n            }\n        }\n        return ret;\n    }\n\n    /**\n     * Generate an XML representation of this chapter.\n     * <p/>\n     * @return an XML representation of this chapter.\n     */\n    public String toXML() {\n        StringBuilder ret = new StringBuilder();\n        ret.append(\"<chapter\");\n        if (num != -1) {\n            ret.append(\" cnumber=\\\"\");\n            ret.append(num);\n            ret.append('\\\"');\n        }\n        ret.append(\">\");\n        for (BibleVerse verse : verses.values()) {\n            ret.append(Utils.escapeXML(verse.toXML()));\n        }\n        ret.append(\"</chapter>\");\n        return ret.toString();\n    }\n\n    /**\n     * Return the chapter number as a string in this chapter.\n     *\n     * @return the chapter number as a string.\n     */\n    @Override\n    public String toString() {\n        return Integer.toString(num);\n    }\n\n    /**\n     * Add a verse to this chapter.\n     * <p/>\n     * @param verse the verse to add.\n     */\n    private void addVerse(BibleVerse verse) {\n        verses.put(verse.getNum(), verse);\n    }\n\n\n    /**\n     * Add a caption to this chapter.\n     * <p/>\n     * @param caption the caption to add.\n     */\n    private void addCaption(String caption) {\n        captions.add(caption);\n    }\n\n    /**\n     * Get all the verses in this chapter .\n     * <p/>\n     * @return all the verses in the chapter.\n     */\n    public BibleVerse[] getVerses() {\n        return verses.values().toArray(new BibleVerse[verses.size()]);\n    }\n\n    /**\n     * Get all the captions in this chapter .\n     * <p/>\n     * @return all the captions in the chapter.\n     */\n    public String[] getCaptions() {\n        return captions.toArray(new String[captions.size()]);\n    }\n\n    /**\n     * Get a specific verse from this chapter.\n     * <p/>\n     * @param i the verse number to get.\n     * @return the verse at the specified number, or null if it doesn't exist.\n     */\n    public BibleVerse getVerse(int i) {\n        return verses.get(i);\n    }\n\n    /**\n     * Get all the text in this chapter as a string.\n     * <p/>\n     * @return all the text in this chapter as a string.\n     */\n    public String getFullText() {\n        if (softRefText == null || softRefText.get() == null) {\n            StringBuilder ret = new StringBuilder();\n            for (BibleVerse verse : getVerses()) {\n                ret.append(verse.toString()).append(' ');\n            }\n            String hardText = ret.toString();\n            this.softRefText = new SoftReference<>(hardText);\n        }\n        return softRefText.get();\n    }\n\n    /**\n     * Get the unique ID for this bible chapter.\n     * <p/>\n     * @return the unique ID for this bible chapter.\n     */\n    public int getID() {\n        return id;\n    }\n\n    /**\n     * Get the number of this chapter (or -1 if no number has been set.)\n     * <p/>\n     * @return the chapter number.\n     */\n    @Override\n    public int getNum() {\n        return num;\n    }\n\n    @Override\n    public String getName() {\n        return toString();\n    }\n\n    @Override\n    public String getText() {\n        return getFullText();\n    }\n\n    @Override\n    public BibleInterface getParent() {\n        return getBook();\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/bible/BibleInfo.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data.bible;\n\nimport java.io.Serializable;\nimport java.util.HashMap;\nimport java.util.Map;\nimport java.util.Objects;\nimport java.util.Set;\nimport org.quelea.services.utils.Utils;\nimport org.w3c.dom.Node;\nimport org.w3c.dom.NodeList;\n\n/**\n * General information about a specified bible.\n *\n * @author Michael\n */\npublic class BibleInfo implements Serializable {\n\n    private final Map<String, String> attributes;\n\n    /**\n     * Create a new bible info object.\n     *\n     * @param title the title of the bible, eg. \"King James Version\"\n     */\n    public BibleInfo(String title) {\n        this();\n        attributes.put(\"title\", title);\n        attributes.put(\"format\", \"Zefania XML Bible Markup Language\");\n    }\n\n    /**\n     * For internal use only.\n     */\n    private BibleInfo() {\n        attributes = new HashMap<>();\n    }\n\n    /**\n     * Put an attribute into the bible info object.\n     *\n     * @param attribute\n     * @param value\n     */\n    public void putAttribute(String attribute, String value) {\n        attributes.put(attribute, value);\n    }\n\n    /**\n     * Get all the attributes as name and value pairs.\n     *\n     * @return all the attributes as name and value pairs.\n     */\n    public Set<Map.Entry<String, String>> getAtributes() {\n        return attributes.entrySet();\n    }\n\n    @Override\n    public int hashCode() {\n        int hash = 3;\n        hash = 37 * hash + Objects.hashCode(this.attributes);\n        return hash;\n    }\n\n    @Override\n    public boolean equals(Object obj) {\n        if (obj == null) {\n            return false;\n        }\n        if (getClass() != obj.getClass()) {\n            return false;\n        }\n        final BibleInfo other = (BibleInfo) obj;\n        if (!Objects.equals(this.attributes, other.attributes)) {\n            return false;\n        }\n        return true;\n    }\n\n    /**\n     * Parse some XML representing this object and return the object it\n     * represents.\n     *\n     * @param info the XML node representing this object.\n     * @return the object as defined by the XML.\n     */\n    public static BibleInfo parseXML(Node info) {\n        NodeList list = info.getChildNodes();\n        BibleInfo ret = new BibleInfo();\n        for (int i = 0; i < list.getLength(); i++) {\n            Node node = list.item(i);\n            if (!node.getNodeName().contains(\"#\")) {\n                ret.putAttribute(node.getNodeName(), node.getTextContent());\n            }\n        }\n        return ret;\n    }\n\n    /**\n     * Generate an XML representation of this bible info object.\n     *\n     * @return an XML representation of this bible info object.\n     */\n    public String toXML() {\n        StringBuilder ret = new StringBuilder();\n        ret.append(\"<information>\");\n        for (Map.Entry<String, String> attrib : getAtributes()) {\n            ret.append('<');\n            ret.append(Utils.escapeXML(attrib.getKey()));\n            ret.append('>');\n            ret.append(Utils.escapeXML(attrib.getValue()));\n            ret.append(\"</\");\n            ret.append(Utils.escapeXML(attrib.getKey()));\n            ret.append('>');\n        }\n        ret.append(\"</information>\");\n        return ret.toString();\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/bible/BibleInterface.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data.bible;\n\n/**\n *\n * @author Ben Goodwin\n */\n\n\npublic interface BibleInterface {\n    \n    /**\n     * Returns the number associated - book/chapter/verse only\n     * <p/>\n     * @return book/chapter/verse number\n     */\n    int getNum();\n    \n    /**\n     * Returns Name of the bible section. Bible title, book name, chapter first verse.\n     * <p/>\n     * @return Name of the bible/book/chapter\n     */\n    String getName();\n    \n    /**\n     * Returns the text associated with the bible section\n     * <p/>\n     * @return Text of the whole bible section\n     */\n    String getText();\n    \n    /**\n     * Returns the bible section containing this item\n     * <p/>\n     * @return bible/book/chapter\n     */\n    BibleInterface getParent();\n    \n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/bible/BibleManager.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data.bible;\n\nimport java.io.File;\nimport java.util.ArrayList;\nimport java.util.Arrays;\nimport java.util.List;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport javafx.application.Platform;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.lucene.BibleSearchIndex;\nimport org.quelea.services.lucene.SearchIndex;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.windows.main.StatusPanel;\n\n/**\n * Loads and manages the available getBibles.\n * <p/>\n * @author Michael\n */\npublic final class BibleManager {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    private static final BibleManager INSTANCE = new BibleManager();\n    private final List<Bible> bibles;\n    private final List<BibleChangeListener> listeners;\n    private final SearchIndex<BibleChapter> index;\n    private boolean indexInit;\n    private final List<Runnable> onIndexInit;\n\n    /**\n     * Create a new bible manager.\n     */\n    private BibleManager() {\n        bibles = new ArrayList<>();\n        listeners = new ArrayList<>();\n        index = new BibleSearchIndex();\n        indexInit = false;\n        onIndexInit = new ArrayList<>();\n        loadBibles(false);\n    }\n\n    /**\n     * Get the instance of this singleton class.\n     * <p/>\n     * @return the instance of this singleton class.\n     */\n    public static BibleManager get() {\n        return INSTANCE;\n    }\n\n    /**\n     * Run the given runnable as soon as the index is initialised, or\n     * immediately if the index is currently initialised.\n     * <p/>\n     * @param r the runnable to run.\n     */\n    public void runOnIndexInit(Runnable r) {\n        if(indexInit) {\n            r.run();\n        }\n        else {\n            onIndexInit.add(r);\n        }\n    }\n\n    /**\n     * Register a bible change listener on this bible manager. The listener will\n     * be activated whenever a change occurs.\n     * <p/>\n     * @param listener the listener to register.\n     */\n    public void registerBibleChangeListener(BibleChangeListener listener) {\n        listeners.add(listener);\n    }\n\n    /**\n     * Notify all the listeners that a change has occurred.\n     */\n    private void updateListeners() {\n        for(BibleChangeListener listener : listeners) {\n            listener.updateBibles();\n        }\n    }\n\n    /**\n     * Get all the bibles held in this manager.\n     * <p/>\n     * @return all the getBibles.\n     */\n    public Bible[] getBibles() {\n        return bibles.toArray(new Bible[bibles.size()]);\n    }\n\n    public Bible getBibleFromName(String name) {\n        for (Bible b : bibles) {\n            if (b.getName().equals(name))\n                return b;\n        }\n        return null;\n    }\n\n    /**\n     * Get the underlying search index used by this bible manager.\n     * <p/>\n     * @return the search index.\n     */\n    public SearchIndex<BibleChapter> getIndex() {\n        return index;\n    }\n    \n    /**\n     * Reload bibles and trigger listeners.\n     * <p/>\n     */\n    public void refresh() {\n        loadBibles(false);\n        updateListeners();\n    }\n    \n    /**\n     * Reload bibles, update search index and trigger listeners\n     * <p/>\n     */\n    public void refreshAndLoad() {\n        loadBibles(true);\n        updateListeners();\n    }\n\n    /**\n     * Reload all the bibles from the bibles directory into this bible manager.\n     * <p/>\n     * @param updateIndex update the search index with new bible structure\n     */\n    public void loadBibles(boolean updateIndex) {\n        if(updateIndex) {\n            indexInit = false;\n        }\n        bibles.clear();\n        File biblesFile = QueleaProperties.get().getBibleDir();\n        if(!biblesFile.exists()) {\n            biblesFile.mkdir();\n        }\n        for(File file : biblesFile.listFiles()) {\n            if(file.getName().toLowerCase().endsWith(\".xml\") || file.getName().toLowerCase().endsWith(\".xmm\")) {\n                final Bible bible = Bible.parseBible(file);\n                if(bible != null) {\n                    bible.setFilePath(file.getAbsolutePath());\n                    bibles.add(bible);\n                }\n            }\n        }\n        if(updateIndex) {\n            buildIndex();\n        }\n    }\n\n    /**\n     * Determine if the search index is initialised.\n     * <p/>\n     * @return true if the index is initialised, false otherwise.\n     */\n    public boolean isIndexInit() {\n        return indexInit;\n    }\n\n    /**\n     * Builds the search index from the current bibles.\n     */\n    public void buildIndex() {\n        indexInit = false;\n        final StatusPanel[] panel = new StatusPanel[1];\n        if(QueleaApp.get().getMainWindow() != null\n                && QueleaApp.get().getMainWindow().getMainPanel() != null\n                && QueleaApp.get().getMainWindow().getMainPanel().getStatusPanelGroup() != null) {\n            Utils.fxRunAndWait(() -> {\n                panel[0] = QueleaApp.get().getStatusGroup().addPanel(LabelGrabber.INSTANCE.getLabel(\"building.bible.index\"));\n                panel[0].removeCancelButton();\n                panel[0].getProgressBar().setProgress(-1);\n            });\n        }\n        new Thread(() -> {\n            LOGGER.log(Level.INFO, \"Adding bibles to index\");\n            List<BibleChapter> chapters = new ArrayList<>(bibles.size() * 66);\n            for(Bible bible : bibles) {\n                LOGGER.log(Level.FINE, \"Adding {0} bible to index\", bible.getName());\n                index.clear();\n                for(BibleBook book : bible.getBooks()) {\n                    chapters.addAll(Arrays.asList(book.getChapters()));\n                }\n                LOGGER.log(Level.FINE, \"Added {0}.\", bible.getName());\n            }\n            index.addAll(chapters);\n            LOGGER.log(Level.INFO, \"Finished Adding bibles to index\");\n            indexInit = true;\n            for(Runnable r : onIndexInit) {\n                r.run();\n            }\n            onIndexInit.clear();\n\n            Platform.runLater(() -> {\n                if(panel[0] != null) {\n                    panel[0].done();\n                }\n            });\n        }).start();\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/bible/BibleSearchDialog.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data.bible;\n\nimport java.util.concurrent.ExecutorService;\nimport java.util.concurrent.Executors;\nimport javafx.application.Platform;\nimport javafx.beans.value.ChangeListener;\nimport javafx.beans.value.ObservableValue;\nimport javafx.event.ActionEvent;\nimport javafx.geometry.Insets;\nimport javafx.scene.Scene;\nimport javafx.scene.control.Button;\nimport javafx.scene.control.ComboBox;\nimport javafx.scene.control.ScrollPane;\nimport javafx.scene.control.SplitPane;\nimport javafx.scene.control.TextField;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.layout.BorderPane;\nimport javafx.scene.layout.FlowPane;\nimport javafx.scene.layout.HBox;\nimport javafx.scene.layout.StackPane;\nimport javafx.scene.text.Font;\nimport javafx.scene.text.Text;\nimport javafx.stage.Stage;\nimport javafx.stage.WindowEvent;\nimport org.quelea.data.displayable.BiblePassage;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.windows.main.widgets.LoadingPane;\n\n/**\n * A dialog that can be used for searching for bible passages.\n * <p/>\n * @author mjrb5\n */\npublic class BibleSearchDialog extends Stage implements BibleChangeListener {\n\n    private TextField searchField;\n    private BibleSearchTreeView searchResults;\n    private ComboBox<String> bibles;\n    private ScrollPane scrollPane;\n    private LoadingPane overlay;\n    private FlowPane chapterPane;\n    private final Button addToSchedule;\n    private final Text resultsField;\n\n    /**\n     * Create a new bible searcher dialog.\n     */\n    public BibleSearchDialog() {\n        BorderPane mainPane = new BorderPane();\n        setTitle(LabelGrabber.INSTANCE.getLabel(\"bible.search.title\"));\n        getIcons().add(new Image(\"file:icons/search.png\"));\n\n        overlay = new LoadingPane();\n        searchField = new TextField();\n        bibles = new ComboBox<>();\n        bibles.setEditable(false);\n        chapterPane = new FlowPane();\n        scrollPane = new ScrollPane();\n        scrollPane.setContent(chapterPane);\n        searchResults = new BibleSearchTreeView(scrollPane, bibles);\n        resultsField = new Text(\" \" + LabelGrabber.INSTANCE.getLabel(\"bible.search.keep.typing\"));\n        resultsField.setFont(Font.font(\"Sans\", 14));\n        resultsField.getStyleClass().add(\"text\");\n        addToSchedule = new Button(LabelGrabber.INSTANCE.getLabel(\"add.to.schedule.text\"), new ImageView(new Image(\"file:icons/tick.png\")));\n\n        BibleManager.get().registerBibleChangeListener(this);\n        updateBibles();\n\n        //top panel\n        HBox northPanel = new HBox();\n        northPanel.setPadding(new Insets(5, 5, 5, 5));\n        northPanel.getChildren().addAll(bibles, searchField, addToSchedule, resultsField);\n        mainPane.setTop(northPanel);\n\n        //center panel\n        StackPane searchPane = new StackPane();\n        searchPane.getChildren().addAll(searchResults, overlay);\n\n        SplitPane centerPanel = new SplitPane();\n        centerPanel.setDividerPosition(0, 0.3);\n        centerPanel.getItems().addAll(searchPane, scrollPane);\n        mainPane.setCenter(centerPanel);\n\n        //Sizing\n        this.setHeight(600);\n        this.setWidth(800);\n        this.setMinHeight(300);\n        this.setMinWidth(500);\n\n        // Event handlers\n        bibles.setOnAction((javafx.event.ActionEvent t) -> {\n            searchResults.resetRoot();\n            update();\n        });\n        searchField.textProperty().addListener((ObservableValue<? extends String> ov, String t, String t1) -> {\n            update();\n        });\n        addToSchedule.setOnAction((ActionEvent t) -> {\n            if (searchResults.getSelectionModel().getSelectedItem().getValue() instanceof BibleVerse) {\n                BibleChapter chap = (BibleChapter) searchResults.getSelectionModel().getSelectedItem().getValue().getParent();\n                Bible bib = (Bible) chap.getParent().getParent();\n                BiblePassage passage = new BiblePassage(bib.getBibleName(), chap.getBook() + \" \" + chap.toString(), chap.getVerses(), false);\n                QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getScheduleList().add(passage);\n            }\n        });\n        setOnShown((WindowEvent event) -> {\n            if (!BibleManager.get().isIndexInit()) {\n                BibleManager.get().refreshAndLoad();\n            }\n        });\n\n        reset();\n        Scene scene = new Scene(mainPane);\n        if (QueleaProperties.get().getUseDarkTheme()) {\n            scene.getStylesheets().add(\"org/modena_dark.css\");\n        }\n        setScene(scene);\n    }\n\n    /**\n     * Reset this dialog.\n     */\n    public final void reset() {\n//        searchResults.itemsProperty().get().clear();\n        searchField.setText(LabelGrabber.INSTANCE.getLabel(\"initial.search.text\"));\n        searchField.focusedProperty().addListener(new ChangeListener<Boolean>() {\n            @Override\n            public void changed(ObservableValue<? extends Boolean> ov, Boolean t, Boolean t1) {\n                if (t1) {\n                    searchField.setText(\"\");\n                    searchField.focusedProperty().removeListener(this);\n                }\n            }\n        });\n        searchField.setDisable(true);\n        BibleManager.get().runOnIndexInit(() -> {\n            searchField.setDisable(false);\n        });\n    }\n\n    private ExecutorService updateExecutor = Executors.newSingleThreadExecutor();\n    private ExecRunnable lastUpdateRunnable = null;\n\n    private interface ExecRunnable extends Runnable {\n\n        void cancel();\n    }\n\n    /**\n     * Update the results based on the entered text.\n     */\n    private void update() {\n        final String text = searchField.getText();\n        if (text.length() > 3) {\n            if (BibleManager.get().isIndexInit()) {\n                searchResults.reset();\n                overlay.show();\n                ExecRunnable execRunnable = new ExecRunnable() {\n                    private volatile boolean cancel = false;\n\n                    public void cancel() {\n                        cancel = true;\n                    }\n\n                    public void run() {\n                        if (cancel) {\n                            return;\n                        }\n                        final BibleChapter[] results = BibleManager.get().getIndex().filter(text, null);\n                        Platform.runLater(() -> {\n                            searchResults.reset();\n                            if (!text.trim().isEmpty()) {\n                                for (BibleChapter chapter : results) {\n                                    if (bibles.getSelectionModel().getSelectedIndex() == 0 || chapter.getBook().getBible().getName().equals(bibles.getSelectionModel().getSelectedItem())) {\n                                        for (BibleVerse verse : chapter.getVerses()) {\n                                            if (verse.getText().toLowerCase().contains(text.toLowerCase())) {\n                                                searchResults.add(verse);\n                                            }\n                                        }\n                                    }\n                                }\n                            }\n                            overlay.hide();\n                            String resultsfoundSuffix = LabelGrabber.INSTANCE.getLabel(\"bible.search.results.found\");\n                            if (searchResults.size() == 1 && LabelGrabber.INSTANCE.isLocallyDefined(\"bible.search.result.found\")) {\n                                resultsfoundSuffix = LabelGrabber.INSTANCE.getLabel(\"bible.search.result.found\");\n                            }\n                            resultsField.setText(\" \" + searchResults.size() + \" \" + resultsfoundSuffix);\n                        });\n                    }\n                };\n                if (lastUpdateRunnable != null) {\n                    lastUpdateRunnable.cancel();\n                }\n                lastUpdateRunnable = execRunnable;\n                updateExecutor.submit(execRunnable);\n            }\n        }\n        searchResults.reset();\n        resultsField.setText(\" \" + LabelGrabber.INSTANCE.getLabel(\"bible.search.keep.typing\"));\n        chapterPane.getChildren().clear();\n    }\n\n    /**\n     * Update the list of bibles on this search dialog.\n     */\n    @Override\n    public final void updateBibles() {\n        bibles.itemsProperty().get().clear();\n        bibles.itemsProperty().get().add(LabelGrabber.INSTANCE.getLabel(\"all.text\"));\n        for (Bible bible : BibleManager.get().getBibles()) {\n            bibles.itemsProperty().get().add(bible.getName());\n        }\n        bibles.getSelectionModel().selectFirst();\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/bible/BibleSearchPopupMenu.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data.bible;\n\nimport javafx.scene.control.ContextMenu;\nimport javafx.scene.control.MenuItem;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.windows.main.QueleaApp;\n\n/**\n * The popup menu that appears on a \"searched\" bible chapter.\n *\n * @author Michael\n */\npublic class BibleSearchPopupMenu extends ContextMenu {\n\n    private MenuItem viewVerseItem;\n    private BibleChapter currentChapter;\n\n    /**\n     * Create the bible search popup menu.\n     */\n    public BibleSearchPopupMenu() {\n        viewVerseItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"open.in.browser\"));\n        viewVerseItem.setOnAction(t -> trigger());\n        getItems().add(viewVerseItem);\n    }\n\n    /**\n     * Event trigger\n     */\n    private void trigger() {\n        if (currentChapter != null) {\n            BibleBrowseDialog dialog = QueleaApp.get().getMainWindow().getBibleBrowseDialog();\n            dialog.setChapter(currentChapter);\n            dialog.show();\n        }\n    }\n\n    /**\n     * Set the current chapter the menu should jump to.\n     *\n     * @param currentChapter the current chapter.\n     */\n    public void setCurrentChapter(BibleChapter currentChapter) {\n        this.currentChapter = currentChapter;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/bible/BibleSearchTreeView.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data.bible;\n\nimport java.util.Collection;\nimport javafx.event.Event;\nimport javafx.scene.control.ComboBox;\nimport javafx.scene.control.ScrollPane;\nimport javafx.scene.control.SelectionMode;\nimport javafx.scene.control.TreeItem;\nimport javafx.scene.control.TreeView;\nimport javafx.scene.input.KeyCode;\nimport javafx.scene.layout.FlowPane;\nimport javafx.scene.text.Font;\nimport javafx.scene.text.FontWeight;\nimport javafx.scene.text.Text;\n\n/**\n * The TreeView responsible for showing search results in a TreeView model\n *\n * @author Ben\n */\npublic class BibleSearchTreeView extends TreeView<BibleInterface> {\n\n    private TreeItem<BibleInterface> root;\n    private FlowPane textPane;\n    private ScrollPane sp;\n    private ComboBox bibles;\n    private boolean all = true;\n    private int size;\n\n    /**\n     * Constructs a TreeView object with a blank root BibleInterface item.\n     * <p/>\n     * @param chapterPane the scroll pane that will display the verse selected\n     * @param bibles the combobox of bibles to filter with.\n     */\n    public BibleSearchTreeView(ScrollPane chapterPane, ComboBox bibles) {\n        this.bibles = bibles;\n        setRoot(new TreeItem<BibleInterface>());\n        root = getRoot();\n        root.setExpanded(true);\n        this.getSelectionModel().setSelectionMode(SelectionMode.SINGLE);\n        sp = chapterPane;\n        textPane = (FlowPane) sp.getContent();\n        this.setOnKeyTyped(t -> {\n            if (t.getCode() == KeyCode.RIGHT) {\n                trigger(t);\n            }\n        });\n        this.setOnMouseClicked(this::trigger);\n    }\n\n    private void trigger(Event t) {\n        BibleSearchTreeView tv = (BibleSearchTreeView) t.getSource();\n        TreeItem<BibleInterface> ti = tv.getSelectionModel().getSelectedItem();\n        if (ti != null) {\n            if (ti.getValue() instanceof BibleVerse) {\n                textPane.getChildren().clear();\n                BibleChapter chapter = (BibleChapter) ti.getValue().getParent();\n                BibleVerse[] verses = chapter.getVerses();\n                BibleVerse selected = (BibleVerse) ti.getValue();\n\n                int x = selected.getNum() - 1;\n                for (int i = 0; i < verses.length; i++) {\n                    Text text = new Text(verses[i].toString() + \" \");\n                    text.getStyleClass().add(\"text\");\n                    if (i == x) {\n                        text.setFont(Font.font(\"Sans\", FontWeight.BOLD, 14));\n                    } else {\n                        text.setFont(Font.font(\"Sans\", 14));\n                    }\n                    textPane.getChildren().add(text);\n                    text.wrappingWidthProperty().bind(sp.widthProperty().subtract(20)); //-20 to account for scroll bar width\n                }\n            } else {\n                ti.setExpanded(!ti.isExpanded());\n            }\n        } else {\n            tv.selectionModelProperty().get().selectFirst();\n        }\n    }\n\n    /**\n     * Resets the root and expands it.\n     * <p/>\n     */\n    public void reset() {\n        this.setShowRoot(false);\n        resetRoot();\n        root.setExpanded(true);\n    }\n\n    /**\n     * Adds the filtered results into the treeview. Sorts them from the verse's\n     * parents\n     * <p/>\n     * @param verse The bible verse to add into the tree.\n     */\n    public void add(BibleVerse verse) {\n        BibleChapter chapter = (BibleChapter) verse.getParent();\n        BibleBook book = (BibleBook) chapter.getParent();\n        Bible bible = (Bible) book.getParent();\n\n        // Get the current bible\n        TreeItem<BibleInterface> cbible;\n        if (all) {\n            cbible = existsOrCreateInt(root.getChildren(), bible);\n        } else {\n            cbible = root;\n        }\n\n        // Get the current book\n        TreeItem<BibleInterface> cbook = existsOrCreateInt(cbible.getChildren(), book);\n\n        //Get the current chapter.\n        TreeItem<BibleInterface> cchapter = existsOrCreateInt(cbook.getChildren(), chapter);\n\n        //See if verse is in results, or add it.\n        TreeItem<BibleInterface> cverse = new TreeItem<BibleInterface>(verse);\n        if (!cchapter.getChildren().contains(cverse)) {\n            cchapter.getChildren().add(cverse);\n            size++;\n        }\n    }\n\n    public int size() {\n        return size;\n    }\n    /**\n     * Checks if the bible section is already listed in the current tree\n     */\n    private TreeItem<BibleInterface> existsOrCreateInt(Collection<TreeItem<BibleInterface>> coll, BibleInterface toFind) {\n        for (TreeItem<BibleInterface> i : coll) {\n            if (i.getValue().getName().equals(toFind.getName())) {\n                return i;\n            }\n        }\n        TreeItem<BibleInterface> temp = new TreeItem<>(toFind);\n        coll.add(temp);\n        return temp;\n    }\n\n    /**\n     * Resets the root based on the current selected index of the combobox. If\n     * all, a blank root is created, if a bible is selected it becomes the root\n     */\n    public void resetRoot() {\n        if (bibles.getSelectionModel().getSelectedIndex() != 0) {\n            String bib = (String) bibles.getSelectionModel().getSelectedItem();\n            for (Bible b : BibleManager.get().getBibles()) {\n                if (b.getName().equals(bib)) {\n                    setRoot(new TreeItem<BibleInterface>(b));\n                    all = false;\n                }\n            }\n        } else {\n            setRoot(new TreeItem<BibleInterface>());\n            all = true;\n        }\n        root = getRoot();\n        size = 0;\n        this.setShowRoot(false);\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/bible/BibleVerse.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data.bible;\n\nimport java.io.Serializable;\nimport java.util.Objects;\nimport org.quelea.services.utils.Utils;\nimport org.w3c.dom.Node;\n\n/**\n * A verse in the bible.\n *\n * @author Michael\n */\npublic final class BibleVerse implements BibleInterface, Serializable {\n\n    private String verse;\n    private int num;\n    private BibleChapter chapter;\n    private int chapterNum;\n\n    /**\n     * For internal use only.\n     */\n    private BibleVerse() {\n        //For internal use\n    }\n\n    @Override\n    public int hashCode() {\n        int hash = 5;\n        hash = 97 * hash + Objects.hashCode(this.verse);\n        hash = 97 * hash + this.num;\n        return hash;\n    }\n\n    @Override\n    public boolean equals(Object obj) {\n        if (obj == null) {\n            return false;\n        }\n        if (getClass() != obj.getClass()) {\n            return false;\n        }\n        final BibleVerse other = (BibleVerse) obj;\n        if (!Objects.equals(this.verse, other.verse)) {\n            return false;\n        }\n        if (this.num != other.num) {\n            return false;\n        }\n        return true;\n    }\n\n    /**\n     * Set the chapter this verse is part of.\n     *\n     * @param chapter the chapter this verse is part of.\n     */\n    void setChapter(BibleChapter chapter) {\n        this.chapter = chapter;\n        this.chapterNum = chapter.getNum();\n    }\n\n    /**\n     * Get the chapter this verse is part of.\n     *\n     * @return the chapter this verse is part of.\n     */\n    public BibleChapter getChapter() {\n        return chapter;\n    }\n\n    /**\n     * Parse some XML representing this object and return the object it\n     * represents.\n     *\n     * @param node the XML node representing this object.\n     * @return the object as defined by the XML.\n     */\n    public static BibleVerse parseXML(Node node) {\n        BibleVerse ret = new BibleVerse();\n        if (node.getAttributes().getNamedItem(\"cnumber\") != null) {\n            ret.setChapterNum(Integer.parseInt(node.getAttributes().getNamedItem(\"cnumber\").getTextContent()));\n            ret.setChapter(BibleChapter.parseXML(node, ret.getChapterNum()));\n        }\n        try {\n            if (node.getAttributes().getNamedItem(\"vnumber\") != null) {\n                ret.num = Integer.parseInt(node.getAttributes().getNamedItem(\"vnumber\").getNodeValue().trim());\n            } else if (node.getAttributes().getNamedItem(\"number\") != null) {\n                ret.num = Integer.parseInt(node.getAttributes().getNamedItem(\"number\").getNodeValue().trim());\n            } else if (node.getAttributes().getNamedItem(\"n\") != null) {\n                ret.num = Integer.parseInt(node.getAttributes().getNamedItem(\"n\").getNodeValue().trim());\n            } else if (node.getAttributes().getNamedItem(\"id\") != null) {\n                ret.num = Integer.parseInt(node.getAttributes().getNamedItem(\"id\").getNodeValue().trim());\n            } else if (node.getAttributes().getNamedItem(\"osisID\") != null) {\n                String[] osisIdParts = node.getAttributes().getNamedItem(\"osisID\").getNodeValue().trim().split(\"\\\\.\");\n                ret.num = Integer.parseInt(osisIdParts[osisIdParts.length-1]);\n            }\n            ret.verse = node.getTextContent().replace(\"\\n\", \" \").trim();\n            return ret;\n        } catch (NumberFormatException nfe) {\n            return null;\n        }\n    }\n\n    /**\n     * Generate an XML representation of this verse.\n     *\n     * @return an XML representation of this verse.\n     */\n    public String toXML() {\n        StringBuilder ret = new StringBuilder();\n        ret.append(\"<vers cnumber=\\\"\");\n        ret.append(chapterNum);\n        ret.append(\"\\\" vnumber=\\\"\");\n        ret.append(num);\n        ret.append(\"\\\">\");\n        ret.append(Utils.escapeXML(verse));\n        ret.append(\"</vers>\");\n        return ret.toString();\n    }\n\n    /**\n     * Get this verse as a string.\n     *\n     * @return this verse as a string.\n     */\n    @Override\n    public String toString() {\n        return num + \" \" + verse;\n    }\n\n    /**\n     * Get the textual content of the verse.\n     *\n     * @return the textual content of the verse.\n     */\n    public String getVerseText() {\n        return verse;\n    }\n\n    @Override\n    public String getName() {\n        return getNum() + \" \" + getText();\n    }\n\n    @Override\n    public String getText() {\n        return getVerseText();\n    }\n\n    @Override\n    public int getNum() {\n        return num;\n    }\n\n    @Override\n    public BibleInterface getParent() {\n        return getChapter();\n    }\n\n    private void setChapterNum(int num) {\n        chapterNum = num;\n    }\n\n    public int getChapterNum() {\n        return chapterNum;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/bible/ChapterVerseParser.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data.bible;\n\n/**\n * Parses an input string into from / to chapter / verse. This class accepts an input string that's base 1 (i.e. 1:1 is\n * the first verse of the first chapter) but for ease of transition gives output in base 0 (so the above input would\n * give all values returning as 0.)\n * @author Michael\n */\npublic class ChapterVerseParser {\n\n    private int fromChapter = -1;\n    private int fromVerse = -1;\n    private int toChapter = -1;\n    private int toVerse = -1;\n\n    /**\n     * Create the parser and parse the given string. Strings must be in the format fromchapter:fromverse-tochapter:toverse\n     * - the entire \"to\" section can be omitted if it's just one verse. The tochapter can also be left out if the from\n     * and to chapters are the same.\n     * @param str the string to parse.\n     */\n    public ChapterVerseParser(String str) {\n        try {\n            parseFull(str.trim());\n        }\n        catch (Exception ex) {\n            //Just ignore, invalid input\n        }\n    }\n\n    /**\n     * Get the starting chapter.\n     * @return the starting chapter.\n     */\n    public int getFromChapter() {\n        return fromChapter - 1;\n    }\n\n    /**\n     * Get the starting verse.\n     * @return the starting verse.\n     */\n    public int getFromVerse() {\n        if (fromVerse == -1) {\n            return 0;\n        }\n        else {\n            return fromVerse;\n        }\n    }\n\n    /**\n     * Get the ending chapter.\n     * @return the ending chapter.\n     */\n    public int getToChapter() {\n        if (toChapter == -1) {\n            return fromChapter - 1;\n        }\n        else {\n            return toChapter - 1;\n        }\n    }\n\n    /**\n     * Get the ending verse.\n     * @return the ending verse.\n     */\n    public int getToVerse() {\n        if (toVerse == -1) {\n            return fromVerse;\n        }\n        else {\n            return toVerse;\n        }\n    }\n\n    /**\n     * Parse a full string (mustn't have whitespace, call trim() first)\n     * @param str the string to parse.\n     */\n    private void parseFull(String str) {\n        if (str.endsWith(\":\")) {\n            str = str.substring(0, str.length() - 1);\n        }\n        else if (str.endsWith(\"-\")) {\n            str += \"1000\";\n        }\n        if (str.charAt(str.length() - 1) != '-' && str.contains(\"-\")) {\n            String toStr = str.substring(str.indexOf('-') + 1);\n            parseToStr(toStr);\n            str = str.substring(0, str.indexOf('-'));\n        }\n        parseFromStr(str);\n    }\n\n    /**\n     * Parse the part of the string that sets the \"to\" chapter and verse.\n     * @param str the string to parse.\n     */\n    private void parseToStr(String str) {\n        toChapter = getChapterTo(str);\n        toVerse = getVerseTo(str);\n    }\n\n    /**\n     * Parse the part of the string that sets the \"from\" chapter and verse.\n     * @param str the string to parse.\n     */\n    private void parseFromStr(String str) {\n        fromChapter = getChapterFrom(str);\n        fromVerse = getVerseFrom(str);\n    }\n\n    /**\n     * Get the \"from chapter\" part of a single chapter:verse declaration.\n     * @param str the string to parse.\n     */\n    private int getChapterFrom(String str) {\n        str = str.trim();\n        if (str.contains(\":\")) {\n            str = str.split(\":\")[0].trim();\n        }\n        return Integer.parseInt(str);\n    }\n\n    /**\n     * Get the \"from verse\" part of a single chapter:verse declaration.\n     * @param str the string to parse.\n     */\n    private int getVerseFrom(String str) {\n        str = str.trim();\n        if (str.contains(\":\")) {\n            return Integer.parseInt(str.split(\":\")[1].trim());\n        }\n        else {\n            return -1;\n        }\n    }\n\n    /**\n     * Get the \"to chapter\" part of a single chapter:verse declaration.\n     * @param str the string to parse.\n     */\n    private int getChapterTo(String str) {\n        str = str.trim();\n        if (str.contains(\":\")) {\n            return Integer.parseInt(str.split(\":\")[0].trim());\n        }\n        else {\n            return -1;\n        }\n    }\n\n    /**\n     * Get the \"to verse\" part of a single chapter:verse declaration.\n     * @param str the string to parse.\n     */\n    private int getVerseTo(String str) {\n        str = str.trim();\n        if (str.contains(\":\")) {\n            str = str.split(\":\")[1].trim();\n        }\n        return Integer.parseInt(str);\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/chord/ChordLineTransposer.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data.chord;\n\n/**\n * Transposes a line of chords down or up a certain amount of semitones.\n * @author Michael\n */\npublic class ChordLineTransposer {\n\n    private String line;\n\n    /**\n     * Create a new chord line transposer.\n     * @param line the line to transpose.\n     */\n    public ChordLineTransposer(String line) {\n        this.line = line;\n    }\n\n    /**\n     * Transpose the line by the given number of semitones.\n     * @param semitones the number of semitones to transpose by, positive or\n     * negative.\n     * @param newKey the new key to transpose to. This can be null if not known\n     * but if it is known it means we can properly transpose chords (otherwise \n     * we can end up with things like E/Ab rather than E/G#.\n     * @return the transposed line.\n     */\n    public String transpose(int semitones, String newKey) {\n        boolean startSpace = line.startsWith(\" \");\n        boolean chordsComment = line.endsWith(\"//chords\");\n        if(!startSpace) {\n            line = \" \" + line;\n        }\n        if(chordsComment) {\n            line = line.substring(0,line.indexOf(\"//chords\"));\n        }\n        String[] chords = line.split(\"\\\\s+\");\n        String[] whitespace = line.split(\"[A-Za-z0-9#/]+\");\n        StringBuilder ret = new StringBuilder();\n        for (int i = 0; i < chords.length; i++) {\n            ret.append(new ChordTransposer(chords[i]).transpose(semitones, newKey));\n            if (i < whitespace.length) {\n                ret.append(whitespace[i]);\n            }\n        }\n        if(!startSpace) {\n            line = line.substring(1);\n        }\n        String str = ret.toString();\n        if(!startSpace) {\n            str = str.substring(1);\n        }\n        if(chordsComment) {\n            line = line + \"//chords\";\n        }\n        return str;\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/chord/ChordTransposer.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data.chord;\n\nimport java.util.ArrayList;\nimport java.util.Arrays;\nimport java.util.List;\n\n/**\n * Transposes a chord down or up a certain number of semitones.\n *\n * @author Michael\n */\npublic class ChordTransposer {\n\n    /**\n     * Internal class containing the actual chord letter and the \"tail\"\n     * (whatever comes after the chord letter.)\n     */\n    private static class ChordTail {\n\n        private String chord;\n        private String tail;\n\n        /**\n         * Create a new chord tail object.\n         *\n         * @param chord the chord.\n         * @param tail the tail.\n         */\n        public ChordTail(String chord, String tail) {\n            this.chord = chord;\n            this.tail = tail;\n        }\n    }\n    /**\n     * The most natural keys in order, starting at A.\n     */\n    private static final List<String> TRANSPOSE_STEPS = new ArrayList<String>() {\n\n        {\n            addAll(Arrays.asList(\"A\", \"Bb\", \"B\", \"C\", \"C#\", \"D\", \"Eb\", \"E\", \"F\", \"F#\", \"G\", \"Ab\"));\n        }\n    };\n    /*\n     * Sometimes we have E/G# like chords, the second part (after the forward\n     * slash) is the chord2, tail2 variables.\n     */\n    private String chord;\n    private String chord2;\n    private String tail;\n    private String tail2;\n\n    /**\n     * Create a new chord transposer.\n     *\n     * @param chord the chord to transpose.\n     */\n    public ChordTransposer(String chord) {\n        if(chord == null) {\n            return;\n        }\n        chord = chord.trim();\n        if(chord.contains(\"/\")) {\n            String[] parts = chord.split(\"/\");\n\n            ChordTail ct = sanitise(parts[0]);\n            this.chord = ct.chord;\n            tail = ct.tail;\n\n            ChordTail ct2 = sanitise(parts[1]);\n            chord2 = ct2.chord;\n            tail2 = ct2.tail;\n        }\n        else {\n            ChordTail ct = sanitise(chord);\n            this.chord = ct.chord;\n            tail = ct.tail;\n            chord2 = null;\n            tail2 = null;\n        }\n    }\n\n    /**\n     * Put the correct capitalisation on the input and set the tail.\n     *\n     * @param chord the chord to sanitise\n     * @return sanitised chord.\n     */\n    private ChordTail sanitise(String chord) {\n        if(chord == null || chord.isEmpty()) {\n            return new ChordTail(\"\", \"\");\n        }\n        chord = Character.toUpperCase(chord.charAt(0)) + chord.substring(1);\n        String localTail;\n        if(chord.length() > 1) {\n            if(Character.toLowerCase(chord.charAt(1)) == 'b' || chord.charAt(1) == '#') {\n                localTail = chord.substring(2);\n                chord = chord.substring(0, 2);\n            }\n            else {\n                localTail = chord.substring(1);\n                chord = chord.substring(0, 1);\n            }\n        }\n        else {\n            localTail = \"\";\n        }\n        String newChord;\n        /*\n         * \"Naturalise\" the chords - A# is more commonly represented as Bb for\n         * instance.\n         */\n        switch(chord) {\n            case \"A#\":\n                newChord = \"Bb\";\n                break;\n            case \"B#\":\n                newChord = \"C\";\n                break;\n            case \"Cb\":\n                newChord = \"B\";\n                break;\n            case \"Db\":\n                newChord = \"C#\";\n                break;\n            case \"D#\":\n                newChord = \"Eb\";\n                break;\n            case \"E#\":\n                newChord = \"F\";\n                break;\n            case \"Fb\":\n                newChord = \"E\";\n                break;\n            case \"Gb\":\n                newChord = \"F#\";\n                break;\n            case \"G#\":\n                newChord = \"Ab\";\n                break;\n            default:\n                newChord = chord;\n        }\n        return new ChordTail(newChord, localTail);\n    }\n\n    /**\n     * Transpose the given chord by the given number of semitones.\n     *\n     * @param semitones the number of semitones to transpose by, positive or\n     * negative.\n     * @param newKey the new key to transpose to.\n     * @return the new, transposed chord.\n     */\n    public String transpose(int semitones, String newKey) {\n        if(chord == null || chord.isEmpty()) {\n            return chord;\n        }\n        int index = TRANSPOSE_STEPS.indexOf(chord);\n        index += semitones;\n        index %= TRANSPOSE_STEPS.size();\n        if(index < 0) {\n            index = TRANSPOSE_STEPS.size() + index;\n        }\n        String transposedChord = TRANSPOSE_STEPS.get(index);\n        if(newKey != null) {\n            transposedChord = toSharpFlat(isSharpKey(newKey), transposedChord);\n        }\n        transposedChord += tail;\n        boolean sharpKey = isSharpKey(transposedChord);\n        if(chord2 != null) {\n            index = TRANSPOSE_STEPS.indexOf(chord2);\n            index += semitones;\n            index %= TRANSPOSE_STEPS.size();\n            if(index < 0) {\n                index = TRANSPOSE_STEPS.size() + index;\n            }\n            String transposedChord2 = TRANSPOSE_STEPS.get(index) + tail2;\n            transposedChord += \"/\" + toSharpFlat(sharpKey, transposedChord2);\n        }\n        return transposedChord;\n    }\n\n    /**\n     * Convert a certain chord that's either a sharp or a flat into a sharp or a\n     * flat chord (A# into Bb for instance.) Chords that are already in their\n     * form proposed for conversion are returned unchanged.\n     *\n     * @param sharp true if this chord should be converted into a sharp chord,\n     * false if it should be converted into a flat chord.\n     * @param chord the chord to convert.\n     * @return the converted chord.\n     */\n    private String toSharpFlat(boolean sharp, String chord) {\n        if(sharp && isSharpKey(chord)) {\n            return chord;\n        }\n        else if(!sharp && !isSharpKey(chord)) {\n            return chord;\n        }\n        else if(sharp && !isSharpKey(chord)) {\n            return toSharp(chord);\n        }\n        else if(!sharp && isSharpKey(chord)) {\n            return toFlat(chord);\n        }\n        //Bug in program if we reach here.\n        else {\n            throw new AssertionError(\"Bug with \" + sharp + \" and \" + chord);\n        }\n    }\n\n    /**\n     * Return the sharp version of a given \"flat\" chord.\n     *\n     * @param chord the flat chord.\n     * @return the equivalent sharp chord.\n     */\n    private String toSharp(String chord) {\n        switch(chord) {\n            case \"Db\":\n                return \"C#\";\n            case \"Eb\":\n                return \"D#\";\n            case \"Fb\":\n                return \"E\";\n            case \"Gb\":\n                return \"F#\";\n            case \"Ab\":\n                return \"G#\";\n            case \"Bb\":\n                return \"A#\";\n            case \"Cb\":\n                return \"B\";\n            default:\n                return chord;\n        }\n    }\n\n    /**\n     * Return the flat version of a given \"sharp\" chord.\n     *\n     * @param chord the sharp chord.\n     * @return the equivalent flat chord.\n     */\n    private String toFlat(String chord) {\n        switch(chord) {\n            case \"D#\":\n                return \"Eb\";\n            case \"E#\":\n                return \"F\";\n            case \"F#\":\n                return \"Gb\";\n            case \"G#\":\n                return \"Ab\";\n            case \"A#\":\n                return \"Bb\";\n            case \"B#\":\n                return \"C\";\n            case \"C#\":\n                return \"Db\";\n            default:\n                return chord;\n        }\n    }\n\n    /**\n     * Determine if the given key should use mainly sharps or flats. For\n     * instance, A contains 5 sharps so is a sharp key, F contains 1 flat so is\n     * a flat key. For keys like Am and C with no sharps or flats, at present\n     * just return sharp.\n     *\n     * @param chord the chord to check.\n     * @return true if the key is sharp, false if it's flat.\n     */\n    private boolean isSharpKey(String chord) {\n        if(chord.contains(\"#\")) {\n            return true;\n        }\n        if(chord.contains(\"b\")) {\n            return false;\n        }\n        String[] sharpKeys = new String[]{\"D\", \"E\", \"G\", \"A\", \"B\", \"C\", \"Em\", \"Bm\", \"Am\"};\n        for(String key : sharpKeys) {\n            if(chord.equals(key)) {\n                return true;\n            }\n        }\n        return false;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/chord/TransposeDialog.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data.chord;\n\nimport javafx.geometry.Pos;\nimport javafx.scene.Scene;\nimport javafx.scene.control.Button;\nimport javafx.scene.control.ComboBox;\nimport javafx.scene.control.Label;\nimport javafx.scene.layout.HBox;\nimport javafx.scene.layout.VBox;\nimport javafx.stage.Modality;\nimport javafx.stage.Stage;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.QueleaProperties;\n\n/**\n * The dialog shown to the user when choosing how to transpose the chords of \n * a song.\n * @author Michael\n */\npublic class TransposeDialog extends Stage {\n\n    private ComboBox<String> keySelection;\n    private int semitones = 0;\n\n    /**\n     * Create a new transpose dialog.\n     */\n    public TransposeDialog() {\n        initModality(Modality.WINDOW_MODAL);\n        setTitle(LabelGrabber.INSTANCE.getLabel(\"transpose.label\"));\n        \n        VBox contentPane = new VBox();\n        contentPane.setSpacing(5);\n        \n        keySelection = new ComboBox<>();\n        Label label = new Label(LabelGrabber.INSTANCE.getLabel(\"select.key.label\"));\n        label.setAlignment(Pos.BASELINE_LEFT);\n        contentPane.getChildren().add(label);\n        contentPane.getChildren().add(keySelection);\n\n        HBox buttonPanel = new HBox();\n        Button okButton = new Button(LabelGrabber.INSTANCE.getLabel(\"transpose.label\"));\n        okButton.setOnAction(t -> {\n            semitones = keySelection.getSelectionModel().getSelectedIndex() - 4;\n            if(semitones <= 0) {\n                semitones--;\n            }\n            hide();\n        });\n        buttonPanel.getChildren().add(okButton);\n        Button cancelButton = new Button(LabelGrabber.INSTANCE.getLabel(\"cancel.text\"));\n        cancelButton.setOnAction(t -> hide());\n        buttonPanel.getChildren().add(cancelButton);\n        buttonPanel.setAlignment(Pos.BASELINE_LEFT);\n        contentPane.getChildren().add(buttonPanel);\n\n        Scene scene = new Scene(contentPane);\n        if (QueleaProperties.get().getUseDarkTheme()) {\n            scene.getStylesheets().add(\"org/modena_dark.css\");\n        }\n        setScene(scene);\n    }\n\n    /**\n     * Set the root key of the dialog, adjusting the options accordingly.\n     * @param key the key the song is currently in.\n     */\n    public void setKey(String key) {\n        keySelection.itemsProperty().get().clear();\n        for (int i = -5; i < 7; i++) {\n            if (i == 0) {\n                continue;\n            }\n            String transKey = new ChordTransposer(key).transpose(i, null);\n            String istr = Integer.toString(i);\n            if (i > 0) {\n                istr = \"+\" + istr;\n            }\n            keySelection.itemsProperty().get().add(transKey + \" (\" + istr + \")\");\n        }\n\n        keySelection.getSelectionModel().select(5);\n    }\n\n    /**\n     * Get the amount of semitones the user has selected to transpose by.\n     * @return the amount of semitones to transpose by.\n     */\n    public int getSemitones() {\n        return semitones;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/db/HibernateUtil.java",
    "content": "package org.quelea.data.db;\n\nimport java.io.File;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport org.hibernate.Session;\nimport org.hibernate.SessionFactory;\nimport org.hibernate.cfg.Configuration;\nimport org.hibernate.service.ServiceRegistry;\nimport org.hibernate.boot.registry.StandardServiceRegistryBuilder;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.utils.EJB3ImplicitNamingStrategy;\n\n/**\n * Hibernate Utility class with a convenient method to get Session Factory\n * object.\n * <p/>\n * @author tomaszpio@gmail.com\n */\npublic class HibernateUtil {\n\n    private static SessionFactory sessionFactory;\n    private static ServiceRegistry serviceRegistry;\n    private static boolean init = false;\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n\n    public interface SessionCallback {\n\n        void execute(Session session);\n    }\n\n    public static boolean init() {\n        try {\n            LOGGER.info(\"Initialising hibernate\");\n            final String location = new File(new File(QueleaProperties.get().getQueleaUserHome(), \"database_new\"), \"database_new\").getAbsolutePath();\n            final Configuration cfg = new Configuration();\n            cfg.setProperty(\"hibernate.connection.url\", \"jdbc:hsqldb:\" + location);\n            cfg.setProperty(\"hibernate.connection.dialect\", \"org.hibernate.dialect.HSQLDialect\");\n            cfg.setProperty(\"hibernate.connection.driver_class\", \"org.hsqldb.jdbcDriver\");\n            cfg.setProperty(\"hibernate.show_sql\", \"false\");\n            cfg.setProperty(\"hibernate.hbm2ddl.auto\", \"update\");\n            cfg.setProperty(\"hibernate.implicit_naming_strategy\", \"legacy-hbm\");\n            cfg.setProperty(\"hibernate.connection.characterEncoding\", \"utf8\");\n            cfg.setImplicitNamingStrategy(new EJB3ImplicitNamingStrategy());\n            cfg.addAnnotatedClass(org.quelea.data.db.model.Song.class);\n            cfg.addAnnotatedClass(org.quelea.data.db.model.Theme.class);\n            cfg.addAnnotatedClass(org.quelea.data.db.model.TextShadow.class);\n            LOGGER.info(\"Initialised hibernate properties\");\n            serviceRegistry = new StandardServiceRegistryBuilder().applySettings(cfg.getProperties()).build();\n            LOGGER.info(\"Initialised hibernate service registry\");\n            sessionFactory = cfg.buildSessionFactory(serviceRegistry);\n            LOGGER.info(\"Initialised hibernate session factory\");\n            init = true;\n            return true;\n        } catch (Throwable ex) {\n            LOGGER.log(Level.INFO, \"Initial SessionFactory creation failed. Quelea is probably already running.\", ex);\n            return false;\n        }\n    }\n\n    /**\n     * Encapsulate session management operations. All db operation code should\n     * be implemented in callback execute method implementation.\n     * <p/>\n     * @param callback\n     */\n    public static void execute(SessionCallback callback) {\n        if (!init) {\n            throw new IllegalStateException(\"Database must be initialised first\");\n        }\n\n        Session session = null;\n        try {\n            session = sessionFactory.openSession();\n            session.getTransaction().begin();\n            callback.execute(session);\n            session.getTransaction().commit();\n            session.close();\n        } catch (Exception ex) {\n            if (session != null) {\n                session.close();\n            }\n            throw new IllegalStateException(\"Couldn't update database\", ex);\n        }\n    }\n}"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/db/SongDao.java",
    "content": "package org.quelea.data.db;\n\nimport java.util.ArrayList;\nimport java.util.Iterator;\nimport java.util.List;\nimport org.hibernate.Query;\nimport org.hibernate.Session;\nimport org.quelea.data.db.model.Song;\n\n/**\n * Implements song entities retrieval operations.\n *\n * @author tomaszpio@gmail.com\n */\npublic class SongDao {\n\n    private Session session = null;\n\n    public SongDao(Session session) {\n        this.session = session;\n    }\n\n    public Song getSongById(long id) {\n        return (Song) session.load(Song.class, id);\n    }\n\n    @SuppressWarnings(\"unchecked\")\n    public List<Song> getSongs() {\n        Query getAllSongQuery = session.createQuery(\"from Song\");\n        /*\n         * We use an iterator here (rather then just doing getAllSongQuery.list()\n         * because the latter will fall over if there are any corrupt songs in \n         * the database. This will force it to go through, and we can remove\n         * the corrupt individual songs manually later.\n         */\n        Iterator<Song> iter = getAllSongQuery.iterate();\n        List<Song> ret = new ArrayList<>();\n        while (iter.hasNext()) {\n            ret.add(iter.next());\n        }\n        return ret;\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/db/SongManager.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data.db;\n\nimport java.lang.ref.SoftReference;\nimport java.util.ArrayList;\nimport java.util.Collection;\nimport java.util.HashSet;\nimport java.util.List;\nimport java.util.Set;\nimport java.util.TreeSet;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport java.util.stream.Collectors;\n\nimport javafx.application.Platform;\nimport org.hibernate.ObjectNotFoundException;\nimport org.hibernate.Session;\nimport org.quelea.data.ThemeDTO;\nimport org.quelea.data.db.model.Song;\nimport org.quelea.data.db.model.Theme;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.data.displayable.TextSection;\nimport org.quelea.services.lucene.SongSearchIndex;\nimport org.quelea.services.utils.DatabaseListener;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.windows.main.widgets.LoadingPane;\n\n/**\n * Manage songs persistent operations.\n * <p/>\n *\n * @author Michael\n */\npublic final class SongManager {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    private static volatile SongManager INSTANCE;\n    private final SongSearchIndex index;\n    private boolean indexIsClear;\n    private SoftReference<SongDisplayable[]> cacheSongs = new SoftReference<>(null);\n    private final Set<DatabaseListener> listeners;\n\n    /**\n     * Initialise the song database.\n     */\n    private SongManager() {\n        listeners = new HashSet<>();\n        indexIsClear = true;\n        index = new SongSearchIndex();\n    }\n\n    /**\n     * Get the singleton instance of this class. Return null if there was an\n     * error with the database.\n     * <p/>\n     *\n     * @return the singleton instance of this class.\n     */\n    public static synchronized SongManager get() {\n        if (INSTANCE == null) {\n            if (HibernateUtil.init()) {\n                INSTANCE = new SongManager();\n            } else {\n                return null;\n            }\n        }\n        return INSTANCE;\n    }\n\n    /**\n     * Get the underlying search index used by this database.\n     * <p/>\n     *\n     * @return the search index.\n     */\n    public SongSearchIndex getIndex() {\n        return index;\n    }\n\n    /**\n     * Register a database listener with this database.\n     * <p/>\n     *\n     * @param listener the listener.\n     */\n    public void registerDatabaseListener(DatabaseListener listener) {\n        listeners.add(listener);\n    }\n\n    /**\n     * Fire off the database listeners.\n     */\n    public synchronized void fireUpdate() {\n        for (DatabaseListener listener : listeners) {\n            listener.databaseChanged();\n        }\n    }\n\n    public synchronized SongDisplayable[] getSongs() {\n        return getSongs(null);\n    }\n\n    /**\n     * Get all the songs in the database.\n     * <p/>\n     *\n     * @return an array of all the songs in the database.\n     */\n    public synchronized SongDisplayable[] getSongs(LoadingPane loadingPane) {\n        if (cacheSongs.get() != null) {\n            return cacheSongs.get();\n        }\n        final Set<SongDisplayable> songs = new TreeSet<>();\n        HibernateUtil.execute((Session session) -> {\n            List<Song> songsList = new SongDao(session).getSongs();\n            for (int si = 0; si < songsList.size(); si++) {\n                final int finalSi = si;\n                if (loadingPane != null) {\n                    Platform.runLater(() -> {\n                        loadingPane.setProgress((double) finalSi / songsList.size());\n                    });\n                }\n                Song song = songsList.get(si);\n                try {\n                    song.getTitle();\n                } catch (Exception ex) {\n                    /*\n                     * Sometimes (rarely) a song can become corrupt - not entirely\n                     * sure why, but this allows us to load the database ok whilst\n                     * still skipping over the corrupt entries.\n                     */\n                    LOGGER.log(Level.WARNING, \"Song with id \" + song.getId() + \" is corrupt, skipping...\", ex);\n                    continue;\n                }\n                final SongDisplayable songDisplayable = new SongDisplayable.Builder(song.getTitle(),\n                        song.getAuthor())\n                        .ccli(song.getCcli())\n                        .year(song.getYear())\n                        .publisher(song.getPublisher())\n                        .copyright(song.getCopyright())\n                        .key(song.getKey())\n                        .info(song.getInfo())\n                        .capo(song.getCapo())\n                        .translations(song.getTranslations())\n                        .sequence(song.getSequence())\n                        .lyrics(song.getLyrics())\n                        .id(song.getId()).get();\n                final Theme theme = song.getTheme();\n                final ThemeDTO themedto = ThemeDTO.getDTO(theme);\n                for (TextSection section : songDisplayable.getSections()) {\n                    section.setTheme(themedto);\n                }\n                songDisplayable.setTheme(themedto);\n                songs.add(songDisplayable);\n            }\n            if (loadingPane != null) {\n                Platform.runLater(() -> {\n                    loadingPane.setProgress(-1);\n                });\n            }\n        });\n\n        if (indexIsClear) {\n            indexIsClear = false;\n            LOGGER.log(Level.INFO, \"Adding {0} songs to index\", songs.size());\n            index.addAll(songs);\n        }\n        SongDisplayable[] songArr = songs.toArray(new SongDisplayable[songs.size()]);\n        cacheSongs = new SoftReference<>(songArr);\n        return songArr;\n    }\n\n    public boolean addSong(final SongDisplayable song, final boolean fireUpdate) {\n        return addSong(new SongDisplayable[]{song}, fireUpdate);\n    }\n\n    public boolean addSong(final Collection<SongDisplayable> song, final boolean fireUpdate) {\n        return addSong(song.toArray(new SongDisplayable[song.size()]), fireUpdate);\n    }\n\n    /**\n     * Add a song to the database.\n     * <p/>\n     *\n     * @param songs      the songs to add.\n     * @param fireUpdate true if the update should be fired to listeners when\n     *                   adding this song, false otherwise.\n     * @return true if the operation succeeded, false otherwise.\n     */\n    public synchronized boolean addSong(final SongDisplayable[] songs, final boolean fireUpdate) {\n        cacheSongs.clear();\n        clearIndex();\n        final List<SongDisplayable> adjustedSongs = new ArrayList<>();\n        for (SongDisplayable song : songs) {\n            if (song.getSectionsWithoutSequence().length > 0) {\n                adjustedSongs.add(song);\n            }\n        }\n        if (adjustedSongs.isEmpty()) {\n            return false;\n        }\n        try {\n            HibernateUtil.execute((Session session) -> {\n                for (SongDisplayable song : adjustedSongs) {\n                    final boolean nullTheme = song.getSections()[0].getTheme() == null;\n                    Song newSong = new Song(song.getTitle(),\n                            song.getAuthor(),\n                            song.getLyrics(true, true, false),\n                            song.getCcli(),\n                            song.getCopyright(),\n                            song.getYear(),\n                            song.getPublisher(),\n                            song.getKey(),\n                            song.getCapo(),\n                            song.getInfo(),\n                            nullTheme ? ThemeDTO.DEFAULT_THEME.getTheme() : new Theme(song.getSections()[0].getTheme().getTheme()),\n                            song.getTranslations(),\n                            song.getSequence());\n                    session.save(newSong);\n                }\n            });\n        } catch (IllegalStateException ex) {\n            LOGGER.log(Level.WARNING, \"Couldn't add song\", ex);\n        }\n        getSongs();\n        if (fireUpdate) {\n            fireUpdate();\n        }\n        return true;\n    }\n\n    /**\n     * Update a song in the database.\n     * <p/>\n     *\n     * @param song the song to update.\n     * @return true if the operation succeeded, false otherwise.\n     */\n    public synchronized boolean updateSong(final SongDisplayable song) {\n        return updateSong(song, true);\n    }\n\n    /**\n     * Update a song in the database.\n     * <p/>\n     *\n     * @param song          the song to update.\n     * @param addIfNotFound true if the song should be added if it's not found,\n     *                      false otherwise.\n     * @return true if the operation succeeded, false otherwise.\n     */\n    public synchronized boolean updateSong(final SongDisplayable song, boolean addIfNotFound) {\n        index.remove(song);\n        try {\n            HibernateUtil.execute((Session session) -> {\n                Song updatedSong;\n                final boolean nullTheme = song.getSections()[0].getTheme() == null;\n                try {\n                    updatedSong = new SongDao(session).getSongById(song.getID());\n                    updatedSong.setAuthor(song.getAuthor());\n                    updatedSong.setYear(song.getYear());\n                    updatedSong.setCapo(song.getCapo());\n                    updatedSong.setCcli(song.getCcli());\n                    updatedSong.setCopyright(song.getCopyright());\n                    updatedSong.setInfo(song.getInfo());\n                    updatedSong.setSequence(song.getSequence());\n                    updatedSong.setLyrics(song.getLyrics(true, true, false));\n                    updatedSong.setKey(song.getKey());\n                    updatedSong.setPublisher(song.getPublisher());\n                    updatedSong.setTitle(song.getTitle());\n                    updatedSong.setTranslations(song.getTranslations());\n                    updatedSong.setTheme(nullTheme ? ThemeDTO.DEFAULT_THEME.getTheme() : new Theme(song.getSections()[0].getTheme().getTheme()));\n                    session.update(updatedSong);\n                    index.add(song);\n                } catch (ObjectNotFoundException e) {\n                    LOGGER.log(Level.INFO, \"Updating song that doesn't exist, adding instead\");\n                    addSong(song, true);\n                }\n            });\n        } catch (IllegalStateException ex) {\n            LOGGER.log(Level.WARNING, \"Error with database update, try to remove and add...\", ex);\n            try {\n                removeSong(song);\n                LOGGER.log(Level.WARNING, \"Try to add...\", ex);\n                addSong(song, false);\n                return true;\n            } catch (IllegalStateException ex2) {\n                LOGGER.log(Level.WARNING, \"Remove / add trick not working.\", ex2);\n                return false;\n            }\n        }\n\n        return true;\n    }\n\n    /**\n     * Remove a song from the database.\n     * <p/>\n     *\n     * @param song the song to remove.\n     * @return true if the operation succeeded, false otherwise.\n     */\n    public synchronized boolean removeSong(final SongDisplayable song) {\n        return removeSongs(List.of(song));\n    }\n\n    /**\n     * Remove songs from the database.\n     * <p/>\n     *\n     * @param songs the songs to remove.\n     * @return true if the operation succeeded, false otherwise.\n     */\n    public synchronized boolean removeSongs(final List<SongDisplayable> songs) {\n        List<Long> ids = songs.stream().map(SongDisplayable::getID).collect(Collectors.toList());\n        LOGGER.log(Level.INFO, \"Removing songs {0}\", ids);\n        cacheSongs.clear();\n        try {\n            HibernateUtil.execute((Session session) -> {\n                for (SongDisplayable song : songs) {\n                    Song deletedSong = new SongDao(session).getSongById(song.getID());\n                    session.delete(deletedSong);\n                }\n            });\n        } catch (IllegalStateException ex) {\n            LOGGER.log(Level.WARNING, \"Couldn't remove songs \" + ids, ex);\n            return false;\n        }\n        for (SongDisplayable song : songs) {\n            index.remove(song);\n        }\n        fireUpdate();\n        LOGGER.log(Level.INFO, \"Removed song {0}\", ids);\n        return true;\n    }\n\n    private void clearIndex() {\n        index.clear();\n        indexIsClear = true;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/db/ThemeDao.java",
    "content": "package org.quelea.data.db;\n\nimport java.util.List;\nimport org.hibernate.Query;\nimport org.hibernate.Session;\nimport org.quelea.data.db.model.Theme;\n\n/**\n * Implements theme entities retrieval operations.\n * @author tomaszpio@gmail.com\n */\npublic class ThemeDao {\n    private Session session = null;\n    public ThemeDao(Session session) {\n        this.session = session;\n    }\n    \n    public Theme getThemeById(long id){\n       return (Theme) session.load(Theme.class, id);\n    }\n    \n    @SuppressWarnings(\"unchecked\")\n    public List<Theme> getThemes() {\n        Query getAllTheme = session.createQuery(\"from Theme\");\n        return (List<Theme>)getAllTheme.list();\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/db/model/DBConstants.java",
    "content": "package org.quelea.data.db.model;\n\n/**\n * Define constants used to db mappings\n *\n * @author tomaszpio@gmail.com\n */\npublic class DBConstants {\n\n    public static final int STRING_LENGTH = 200_000_000;\n\n    private DBConstants() {\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/db/model/Song.java",
    "content": "package org.quelea.data.db.model;\n\nimport java.util.HashMap;\nimport javax.persistence.CascadeType;\nimport javax.persistence.Column;\nimport javax.persistence.Entity;\nimport javax.persistence.GeneratedValue;\nimport javax.persistence.GenerationType;\nimport javax.persistence.Id;\nimport javax.persistence.Lob;\nimport javax.persistence.ManyToOne;\nimport javax.persistence.Table;\n\n/**\n * Song table mapping\n *\n * @author tomaszpio@gmail.com\n */\n@Entity\n@Table(name = \"songs\")\npublic class Song {\n\n    private static final int STRING_LENGTH = DBConstants.STRING_LENGTH;\n    private Long id;\n    private String title;\n    private String author;\n    private String lyrics;\n    private String ccli;\n    private String copyright;\n    private String year;\n    private String publisher;\n    private String key;\n    private String capo;\n    private String info;\n    private Theme theme;\n    private HashMap<String, String> translations;\n    private String sequence;\n\n    public Song() {\n    }\n\n    public Song(String title, String author, String lyrics, String ccli, String copyright,\n                String year, String publisher, String key, String capo, String info,\n                Theme theme, HashMap<String, String> translations, String sequence) {\n        this.id = null;\n        this.title = title;\n        this.author = author;\n        this.lyrics = lyrics;\n        this.ccli = ccli;\n        this.copyright = copyright;\n        this.year = year;\n        this.publisher = publisher;\n        this.key = key;\n        this.capo = capo;\n        this.info = info;\n        this.theme = theme;\n        this.translations = translations;\n        this.sequence = sequence;\n    }\n\n    /**\n     * @return the id\n     */\n    @Id\n    @GeneratedValue(strategy = GenerationType.IDENTITY)\n    @Column(name = \"id\", nullable = false, unique = true)\n    public Long getId() {\n        return id;\n    }\n\n    /**\n     * @param id the id to set\n     */\n    public void setId(Long id) {\n        this.id = id;\n    }\n\n    /**\n     * @return the title\n     */\n    @Column(name = \"title\", nullable = false, length = STRING_LENGTH)\n    public String getTitle() {\n        return title;\n    }\n\n    /**\n     * @param title the title to set\n     */\n    public void setTitle(String title) {\n        this.title = title;\n    }\n\n    /**\n     * @return the author\n     */\n    @Column(name = \"author\", length = STRING_LENGTH)\n    public String getAuthor() {\n        return author;\n    }\n\n    /**\n     * @param author the author to set\n     */\n    public void setAuthor(String author) {\n        this.author = author;\n    }\n\n    /**\n     * @return the lyrics\n     */\n    @Column(name = \"lyrics\", length = STRING_LENGTH)\n    public String getLyrics() {\n        return lyrics;\n    }\n\n    /**\n     * @param lyrics the lyrics to set\n     */\n    public void setLyrics(String lyrics) {\n        this.lyrics = lyrics;\n    }\n\n    /**\n     * @return the theme\n     */\n    @ManyToOne(cascade = CascadeType.ALL)\n    public Theme getTheme() {\n        return theme;\n    }\n\n    /**\n     * @param theme the theme to set\n     */\n    public void setTheme(Theme theme) {\n        this.theme = theme;\n    }\n\n    /**\n     * @return the ccli\n     */\n    @Column(name = \"ccli\", length = STRING_LENGTH)\n    public String getCcli() {\n        return ccli;\n    }\n\n    /**\n     * @param ccli the ccli to set\n     */\n    public void setCcli(String ccli) {\n        this.ccli = ccli;\n    }\n\n    /**\n     * @return the copyright\n     */\n    @Column(name = \"copyright\", length = STRING_LENGTH)\n    public String getCopyright() {\n        return copyright;\n    }\n\n    /**\n     * @param copyright the copyright to set\n     */\n    public void setCopyright(String copyright) {\n        this.copyright = copyright;\n    }\n\n    /**\n     * @return the year\n     */\n    @Column(name = \"year\", length = STRING_LENGTH)\n    public String getYear() {\n        return year;\n    }\n\n    /**\n     * @param year the year to set\n     */\n    public void setYear(String year) {\n        this.year = year;\n    }\n\n    /**\n     * @return the publisher\n     */\n    @Column(name = \"publisher\", length = STRING_LENGTH)\n    public String getPublisher() {\n        return publisher;\n    }\n\n    /**\n     * @param publisher the publisher to set\n     */\n    public void setPublisher(String publisher) {\n        this.publisher = publisher;\n    }\n\n    /**\n     * @return the key\n     */\n    @Column(name = \"key\", length = STRING_LENGTH)\n    public String getKey() {\n        return key;\n    }\n\n    /**\n     * @param key the key to set\n     */\n    public void setKey(String key) {\n        this.key = key;\n    }\n\n    /**\n     * @return the capo\n     */\n    @Column(name = \"capo\", length = STRING_LENGTH)\n    public String getCapo() {\n        return capo;\n    }\n\n    /**\n     * @param capo the capo to set\n     */\n    public void setCapo(String capo) {\n        this.capo = capo;\n    }\n\n    /**\n     * @return the info\n     */\n    @Column(name = \"info\", length = STRING_LENGTH)\n    public String getInfo() {\n        return info;\n    }\n\n    /**\n     * @param info the info to set\n     */\n    public void setInfo(String info) {\n        this.info = info;\n    }\n\n    @Lob\n    @Column(name=\"translations\", length=STRING_LENGTH)\n    public HashMap<String, String> getTranslations() {\n        return translations;\n    }\n\n    public void setTranslations(HashMap<String, String> translations) {\n        this.translations = translations;\n    }\n\n    /**\n     * @return the sequence\n     */\n    @Column(name = \"songsequence\", length = STRING_LENGTH)\n    public String getSequence() {\n        return sequence;\n    }\n\n    /**\n     * @param sequence the sequence to set\n     */\n    public void setSequence(String sequence) {\n        this.sequence = sequence;\n    }\n\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/db/model/TextShadow.java",
    "content": "package org.quelea.data.db.model;\n\nimport javax.persistence.Column;\nimport javax.persistence.Entity;\nimport javax.persistence.GeneratedValue;\nimport javax.persistence.GenerationType;\nimport javax.persistence.Id;\nimport javax.persistence.Table;\n\n/**\n * textshadow table  mapping\n * @author tomaszpio@gmail.com\n */\n@Entity\n@Table(name = \"textShadow\")\npublic class TextShadow {\n    private static final int STRING_LENGTH = DBConstants.STRING_LENGTH;\n    private Long id;\n    private String shadowColor;\n    private Double offsetX;\n    private Double offsetY;\n    private Double radius;\n    private Double width;\n    private Double spread;\n    private Boolean use;\n\n    public TextShadow(TextShadow textShadow) {\n        this(textShadow.getShadowColor(), textShadow.getOffsetX(), textShadow.getOffsetY(), textShadow.getRadius(), textShadow.getSpread(), textShadow.getUse());\n    }\n\n    public TextShadow(String shadowColor, Double offsetX, Double offsetY, Double radius, Double spread, Boolean use) {\n        this.id = null;\n        this.shadowColor = shadowColor;\n        this.offsetX = offsetX;\n        this.offsetY = offsetY;\n        this.radius = radius;\n        this.width = 2.0;\n        this.spread = spread;\n        this.use = use;\n    }\n\n    public TextShadow() {\n    }\n\n    /**\n     * @return the id\n     */\n    @Id\n    @GeneratedValue(strategy = GenerationType.IDENTITY)\n    @Column(name = \"id\", nullable = false, unique = true)\n    public Long getId() {\n        return id;\n    }\n\n    /**\n     * @param id the id to set\n     */\n    public void setId(Long id) {\n        this.id = id;\n    }\n\n    /**\n     * @return the shadowColor\n     */\n    @Column(name = \"shadowcolor\", nullable = false, length = STRING_LENGTH)\n    public String getShadowColor() {\n        return shadowColor;\n    }\n\n    /**\n     * @param shadowColor the shadowColor to set\n     */\n    public void setShadowColor(String shadowColor) {\n        this.shadowColor = shadowColor;\n    }\n\n    /**\n     * @return the offsetX\n     */\n    @Column(name = \"offsetx\", nullable = false)\n    public Double getOffsetX() {\n        return offsetX;\n    }\n\n    /**\n     * @param offsetX the offsetX to set\n     */\n    public void setOffsetX(Double offsetX) {\n        this.offsetX = offsetX;\n    }\n\n    /**\n     * @return whether to use a shadow\n     */\n    @Column(name = \"use\")\n    public Boolean getUse() {\n        if(use==null) {\n            return true;\n        }\n        return use;\n    }\n\n    /**\n     * @param use whether to use this shadow\n     */\n    public void setUse(Boolean use) {\n        this.use = use;\n    }\n\n    /**\n     * @return the offsetY\n     */\n    @Column(name = \"offsety\", nullable = false)\n    public Double getOffsetY() {\n        return offsetY;\n    }\n\n    /**\n     * @param offsetY the offsetY to set\n     */\n    public void setOffsetY(Double offsetY) {\n        this.offsetY = offsetY;\n    }\n\n    /**\n     * @return the radius\n     */\n    @Column(name = \"radius\")\n    public Double getRadius() {\n        if (radius == null) {\n            return 2.0;\n        }\n        return radius;\n    }\n\n    /**\n     * @param radius the radius to set\n     */\n    public void setRadius(Double radius) {\n        this.radius = radius;\n    }\n\n    /**\n     * @return the spread\n     */\n    @Column(name = \"spread\")\n    public Double getSpread() {\n        if (spread == null) {\n            return 0.0;\n        }\n        return spread;\n    }\n\n    /**\n     * @param spread the spread to set\n     */\n    public void setSpread(Double spread) {\n        this.spread = spread;\n    }\n\n    /**\n     * @return the width\n     */\n    @Column(name = \"width\", nullable = false)\n    public Double getWidth() {\n        return width;\n    }\n\n    /**\n     * @param width the width to set\n     */\n    public void setWidth(Double width) {\n        this.width = width;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/db/model/Theme.java",
    "content": "package org.quelea.data.db.model;\n\nimport javax.persistence.CascadeType;\nimport javax.persistence.Column;\nimport javax.persistence.Entity;\nimport javax.persistence.GeneratedValue;\nimport javax.persistence.GenerationType;\nimport javax.persistence.Id;\nimport javax.persistence.ManyToOne;\nimport javax.persistence.Table;\nimport org.quelea.data.ThemeDTO;\n\n/**\n * theme table mapping\n * <p>\n * @author tomaszpio@gmail.com\n */\n@Entity\n@Table(name = \"theme\")\npublic class Theme {\n\n    private static final int STRING_LENGTH = DBConstants.STRING_LENGTH;\n    private Long id;\n    private String name;\n    private String fontname;\n    private String fontcolour;\n    private String translateFontname;\n    private String translateFontcolour;\n    private String backgroundcolour;\n    private String backgroundvid;\n    private String backgroundimage;\n    private Boolean fontBold;\n    private Boolean fontItalic;\n    private Boolean translateFontBold;\n    private Boolean translateFontItalic;\n    private Double videoHue;\n    private Boolean videoStretch;\n    private Integer textPosition;\n    private Integer textAlignment;\n    private TextShadow textShadow = new TextShadow();\n\n    public Theme() {\n    }\n\n    public Theme(String name, String fontname, String fontcolour, String translateFontname, String translateFontcolour,\n            String backgroundcolour, String backgroundvid, String backgroundimage,\n            TextShadow shadow, boolean isFontBold, boolean isFontitalic, boolean isTranslateFontBold, boolean isTranslateFontitalic, double videoHue, boolean videoStretch, int textPosition, int textAlignment) {\n        this.name = name;\n        this.fontname = fontname;\n        this.fontcolour = fontcolour;\n        this.translateFontname = translateFontname;\n        this.translateFontcolour = translateFontcolour;\n        this.backgroundcolour = backgroundcolour;\n        this.backgroundvid = backgroundvid;\n        this.backgroundimage = backgroundimage;\n        this.textShadow = shadow;\n        this.fontBold = isFontBold;\n        this.fontItalic = isFontitalic;\n        this.translateFontBold = isTranslateFontBold;\n        this.translateFontItalic = isTranslateFontitalic;\n        this.videoHue = videoHue;\n        this.videoStretch = videoStretch;\n        this.textPosition = textPosition;\n        this.textAlignment = textAlignment;\n    }\n\n    public Theme(Theme theme) {\n        this.id = null;\n        this.name = theme.name;\n        this.fontname = theme.fontname;\n        this.fontcolour = theme.fontcolour;\n        this.translateFontname = theme.translateFontname;\n        this.translateFontcolour = theme.translateFontcolour;\n        this.backgroundcolour = theme.backgroundcolour;\n        this.backgroundvid = theme.backgroundvid;\n        this.backgroundimage = theme.backgroundimage;\n        this.textShadow = new TextShadow(theme.textShadow);\n        this.fontBold = theme.fontBold;\n        this.fontItalic = theme.fontItalic;\n        this.translateFontBold = theme.translateFontBold;\n        this.translateFontItalic = theme.translateFontItalic;\n        this.videoHue = theme.videoHue;\n        this.videoStretch = theme.videoStretch;\n        this.textPosition = theme.textPosition;\n        this.textAlignment = theme.textAlignment;\n    }\n\n    /**\n     * @return the id\n     */\n    @Id\n    @GeneratedValue(strategy = GenerationType.IDENTITY)\n    @Column(name = \"id\", nullable = false, unique = true)\n    public Long getId() {\n        return id;\n    }\n\n    /**\n     * @param id the id to set\n     */\n    public void setId(Long id) {\n        this.id = id;\n    }\n\n    /**\n     * @return the name\n     */\n    @Column(name = \"name\", nullable = false, length = STRING_LENGTH)\n    public String getName() {\n        return name;\n    }\n\n    /**\n     * @param name the name to set\n     */\n    public void setName(String name) {\n        this.name = name;\n    }\n\n    @Column(name = \"videoHue\")\n    public Double getVideoHue() {\n        if(videoHue == null) {\n            return 0.0;\n        }\n        return videoHue;\n    }\n\n    public void setVideoHue(Double videoHue) {\n        this.videoHue = videoHue;\n    }\n\n    @Column(name = \"videoStretch\")\n    public Boolean getVideoStretch() {\n        if(videoStretch == null) {\n            return false;\n        }\n        return videoStretch;\n    }\n    \n    public void setVideoStretch(Boolean videoStretch) {\n        this.videoStretch = videoStretch;\n    }\n    \n    @Column(name=\"textPosition\")\n    public Integer getTextPosition() {\n        if(textPosition==null) {\n            return -1;\n        }\n        return textPosition;\n    }\n    \n    public void setTextPosition(Integer textPosition) {\n        this.textPosition = textPosition;\n    }\n    \n    @Column(name=\"textAlignment\")\n    public Integer getTextAlignment() {\n        if(textAlignment==null) {\n            return 0;\n        }\n        return textAlignment;\n    }\n    \n    public void setTextAlignment(Integer textAlignment) {\n        this.textAlignment = textAlignment;\n    }\n\n    /**\n     * @return the fontname\n     */\n    @Column(name = \"fontname\", length = STRING_LENGTH)\n    public String getFontname() {\n        return fontname;\n    }\n\n    /**\n     * @param fontname the fontname to set\n     */\n    public void setFontname(String fontname) {\n        this.fontname = fontname;\n    }\n\n    /**\n     * @return the fontcolour\n     */\n    @Column(name = \"fontcolour\", length = STRING_LENGTH)\n    public String getFontcolour() {\n        return fontcolour;\n    }\n\n    /**\n     * @param fontcolour the fontcolour to set\n     */\n    public void setFontcolour(String fontcolour) {\n        this.fontcolour = fontcolour;\n    }\n\n    /**\n     * @return the translatefontname\n     */\n    @Column(name = \"translatefontname\", length = STRING_LENGTH)\n    public String getTranslateFontname() {\n        return translateFontname;\n    }\n\n    /**\n     * @param translateFontname the translatefontname to set\n     */\n    public void setTranslateFontname(String translateFontname) {\n        this.translateFontname = translateFontname;\n    }\n\n    /**\n     * @return the translatefontcolour\n     */\n    @Column(name = \"translatefontcolour\", length = STRING_LENGTH)\n    public String getTranslateFontcolour() {\n        return translateFontcolour;\n    }\n\n    /**\n     * @param translateFontcolour the fontcolour to set\n     */\n    public void setTranslateFontcolour(String translateFontcolour) {\n        this.translateFontcolour = translateFontcolour;\n    }\n\n    /**\n     * @return the backgroundcolour\n     */\n    @Column(name = \"backgroundcolor\", length = STRING_LENGTH)\n    public String getBackgroundcolour() {\n        return backgroundcolour;\n    }\n\n    /**\n     * @param backgroundcolour the backgroundcolour to set\n     */\n    public void setBackgroundcolour(String backgroundcolour) {\n        this.backgroundcolour = backgroundcolour;\n    }\n\n    /**\n     * @return the backgroundvid\n     */\n    @Column(name = \"backgroundvid\", length = STRING_LENGTH)\n    public String getBackgroundvid() {\n        return backgroundvid;\n    }\n\n    /**\n     * @param backgroundvid the backgroundvid to set\n     */\n    public void setBackgroundvid(String backgroundvid) {\n        this.backgroundvid = backgroundvid;\n    }\n\n    /**\n     * @return the backgroundimage\n     */\n    @Column(name = \"backgroundimage\", length = STRING_LENGTH)\n    public String getBackgroundimage() {\n        return backgroundimage;\n    }\n\n    /**\n     * @param backgroundimage the backgroundimage to set\n     */\n    public void setBackgroundimage(String backgroundimage) {\n        this.backgroundimage = backgroundimage;\n    }\n\n    /**\n     * @return the shadow\n     */\n    @ManyToOne(cascade = CascadeType.ALL)\n    public TextShadow getTextShadow() {\n        return textShadow;\n    }\n\n    /**\n     * @param textShadow the shadow to set\n     */\n    public void setTextShadow(TextShadow textShadow) {\n        this.textShadow = textShadow;\n    }\n\n    /**\n     * @return the isFontBold\n     */\n    @Column(name = \"isfontbold\")\n    public Boolean isFontBold() {\n        return fontBold == null ? false : fontBold;\n    }\n\n    /**\n     * @param isFontBold the isFontBold to set\n     */\n    public void setFontBold(Boolean isFontBold) {\n        this.fontBold = isFontBold;\n    }\n\n    /**\n     * @return the isFontItalic\n     */\n    @Column(name = \"isfontitalic\")\n    public Boolean isFontItalic() {\n        return fontItalic == null ? false : fontItalic;\n    }\n\n    /**\n     * @param isFontItalic the isFontItalic to set\n     */\n    public void setFontItalic(Boolean isFontItalic) {\n        this.fontItalic = isFontItalic;\n    }\n\n    /**\n     * @return the isFontBold\n     */\n    @Column(name = \"istranslatefontbold\")\n    public Boolean isTranslateFontBold() {\n        return translateFontBold == null ? false : translateFontBold;\n    }\n\n    /**\n     * @param translateFontBold the isFontBold to set\n     */\n    public void setTranslateFontBold(Boolean translateFontBold) {\n        this.translateFontBold = translateFontBold;\n    }\n\n    /**\n     * @return the isFontItalic\n     */\n    @Column(name = \"istranslatefontitalic\")\n    public Boolean isTranslateFontItalic() {\n        return translateFontItalic == null ? false : translateFontItalic;\n    }\n\n    /**\n     * @param translateFontItalic the isFontItalic to set\n     */\n    public void setTranslateFontItalic(Boolean translateFontItalic) {\n        this.translateFontItalic = translateFontItalic;\n    }\n\n    @Override\n    public String toString() {\n        return ThemeDTO.getDTO(this).asString();\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/displayable/AudioDisplayable.java",
    "content": "package org.quelea.data.displayable;\n\nimport java.io.File;\nimport java.io.Serializable;\nimport java.util.ArrayList;\nimport java.util.Collection;\nimport java.util.List;\nimport java.util.Map;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\nimport org.w3c.dom.Node;\n\n/**\n *\n * @author tomaszpio@gmail.com\n */\npublic class AudioDisplayable implements MultimediaDisplayable, Serializable {\n\n    private final File file;\n\n    /**\n     * create audio dsiplayable instance\n     *\n     * @param file\n     */\n    public AudioDisplayable(File file) {\n        this.file = file;\n    }\n\n    /**\n     * Parse some XML representing this object and return the object it\n     * represents.\n     *\n     * @param node the XML node representing this object.\n     * @return the object as defined by the XML.\n     */\n    public static AudioDisplayable parseXML(Node node, Map<String, String> fileChanges) {\n        return new AudioDisplayable(Utils.getChangedFile(node, fileChanges));\n    }\n\n    /**\n     * Get the displayable file location.\n     *\n     * @return the displayable file location.\n     */\n    @Override\n    public String getLocation() {\n        return file.getAbsolutePath();\n    }\n\n    /**\n     * Get the displayable name.\n     * <p>\n     * @return the displayable name.\n     */\n    @Override\n    public String getName() {\n        return file.getName();\n    }\n\n    /**\n     * Determine whether videos support clearing, which they don't.\n     *\n     * @return false, always.\n     */\n    @Override\n    public boolean supportClear() {\n        return true;\n    }\n\n    /**\n     * Get the XML that forms this image displayable.\n     *\n     * @return the XML.\n     */\n    @Override\n    public String getXML() {\n        StringBuilder ret = new StringBuilder();\n        ret.append(\"<fileaudio>\");\n        if (QueleaProperties.get().getEmbedMediaInScheduleFile()) {\n            ret.append(Utils.escapeXML(Utils.toRelativeStorePath(file)));\n        } else {\n            ret.append(Utils.escapeXML(file.getAbsolutePath()));\n        }\n        ret.append(\"</fileaudio>\");\n        return ret.toString();\n    }\n\n    /**\n     * Get the preview icon of this audio.\n     *\n     * @return the video's preview icon.\n     */\n    @Override\n    public ImageView getPreviewIcon() {\n        return new ImageView(new Image(\"file:icons/audio30.png\"));\n    }\n\n    /**\n     * Get the preview text for the image.\n     *\n     * @return the file name.\n     */\n    @Override\n    public String getPreviewText() {\n        return file.getName();\n    }\n\n    /**\n     * Get any resources this displayable needs.\n     *\n     * @return the image backing this displayable.\n     */\n    @Override\n    public Collection<File> getResources() {\n        List<File> files = new ArrayList<>();\n        files.add(file);\n        return files;\n    }\n\n    @Override\n    public void dispose() {\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/displayable/BiblePassage.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data.displayable;\n\nimport java.awt.Dimension;\nimport java.io.File;\nimport java.io.Serializable;\nimport java.util.ArrayList;\nimport java.util.Arrays;\nimport java.util.Collection;\nimport java.util.Collections;\nimport java.util.HashMap;\nimport java.util.List;\nimport java.util.Map;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport org.javafx.dialog.Dialog;\nimport org.quelea.data.Background;\nimport org.quelea.data.ThemeDTO;\nimport org.quelea.data.bible.Bible;\nimport org.quelea.data.bible.BibleBook;\nimport org.quelea.data.bible.BibleBookNameUtil;\nimport org.quelea.data.bible.BibleManager;\nimport org.quelea.data.bible.BibleVerse;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.QueleaApp;\nimport org.w3c.dom.Node;\nimport org.w3c.dom.NodeList;\n\n/**\n * A displayable passage from the bible.\n * <p>\n * @author Michael\n */\npublic class BiblePassage implements TextDisplayable, Serializable {\n\n    private String summary;\n    private String[] smallText;\n    private List<TextSection> textSections;\n    private BibleVerse[] verses;\n    private ThemeDTO theme;\n    private final boolean multi;\n    private Map<Dimension,Double> fontSizeCache;\n\n    /**\n     * Create a new bible passage.\n     * <p>\n     * @param biblename the bible that the passage comes from.\n     * @param location the location of the passage in the bible.\n     * @param verses the verses, in order, that make up the passage.\n     */\n    public BiblePassage(String biblename, String location, BibleVerse[] verses, boolean multi) {\n        this(location + \"\\n\" + biblename, verses, new ThemeDTO(ThemeDTO.DEFAULT_FONT,\n                ThemeDTO.DEFAULT_FONT_COLOR, ThemeDTO.DEFAULT_FONT, ThemeDTO.DEFAULT_TRANSLATE_FONT_COLOR,\n                ThemeDTO.DEFAULT_BACKGROUND, ThemeDTO.DEFAULT_SHADOW, false, false, false, true, 3, -1), multi);\n    }\n\n    /**\n     * Create a new bible passage from a summary and an array of verses.\n     * <p>\n     * @param summary the summary to display in the schedule.\n     * @param verses the verses in the passage.\n     * @param theme the theme of the passage.\n     */\n    public BiblePassage(String summary, BibleVerse[] verses, ThemeDTO theme, boolean multi) {\n        fontSizeCache = new HashMap<>();\n        this.summary = summary;\n        this.multi = multi;\n        this.smallText = summary.split(\"\\n\");\n        for (int i = 0; i < smallText.length; i++) {\n            smallText[i] = Utils.removeTags(smallText[i]);\n        }\n        this.verses = Arrays.copyOf(verses, verses.length);\n        this.theme = theme;\n        textSections = new ArrayList<>();\n        fillTextSections();\n        for (TextSection ts : getSections()) {\n            ts.setTheme(theme);\n        }\n    }\n    \n    @Override\n    public Double getCachedUniformFontSize(Dimension dimension) {\n        return fontSizeCache.get(dimension);\n    }\n\n    @Override\n    public void setCachedUniformFontSize(Dimension dimension, double size) {\n        fontSizeCache.put(dimension, size);\n    }\n\n    /**\n     * Fill the text sections with the verses.\n     */\n    private void fillTextSections() {\n        final int MAX_CHARS = QueleaProperties.get().getMaxChars();\n        final int MAX_VERSES = QueleaProperties.get().getMaxBibleVerses();\n        final boolean SPLIT_VERSES = QueleaProperties.get().getBibleSplitVerses();\n        final boolean USE_CHARS = !QueleaProperties.get().getBibleUsingMaxChars();\n\n        StringBuilder section = new StringBuilder();\n        StringBuilder line = new StringBuilder();\n        int lines = 0;\n        int count = 0;\n        boolean verseError = false;\n        for (BibleVerse verse : verses) {\n            if (verse == null) {\n                verseError = true;\n            } else {\n                if (QueleaProperties.get().getShowVerseNumbers()) {\n                    line.append(\"<sup>\");\n                    if (multi) {\n                        line.append(verse.getChapterNum()).append(\":\");\n                    }\n                    line.append(verse.getNum());\n                    line.append(\"</sup>\");\n                }\n                String verseText = verse.getText();\n                String[] verseWords = verseText.split(\" \");\n                for (String verseWord : verseWords) {\n                    if (line.toString().replaceAll(\"\\\\<sup\\\\>[0-9]+\\\\<\\\\/sup\\\\>\", \"\").length() + verseWord.length() > MAX_CHARS) {\n                        section.append(line);\n                        lines++;\n                        line.setLength(0);\n                    }\n                    line.append(verseWord).append(\" \");\n                }\n                count++;\n                if (USE_CHARS) {\n                    if (!SPLIT_VERSES) {\n                        if (lines >= MAX_CHARS / 4) {\n                            lines = 0;\n                            textSections.add(new TextSection(\"\", new String[]{section.toString().trim()}, smallText, false));\n                            section.setLength(0);\n                        }\n                    }\n                    if (SPLIT_VERSES) {\n                        if (!line.toString().trim().isEmpty()) {\n                            lines++;\n                        }\n                        if (lines >= MAX_CHARS / 4) {\n                            if (!line.toString().isEmpty()) {\n                                section.append(line);\n                                line.setLength(0);\n                                lines++;\n                            }\n                            lines = 0;\n                            textSections.add(new TextSection(\"\", new String[]{section.toString().trim()}, smallText, false));\n                            section.setLength(0);\n                        }\n                    }\n\n                } else { // using verses\n                    if (count >= MAX_VERSES && count > 0) {\n                        if (!line.toString().isEmpty()) {\n                            section.append(line);\n                            line.setLength(0);\n                        }\n                        textSections.add(new TextSection(\"\", new String[]{section.toString().trim()}, smallText, false));\n                        section = new StringBuilder();\n                        count = 0;\n                    }\n                }\n            }\n        }\n\n        // Clean up anything left by the for loop (possible extra verses)\n        if (!line.toString().isEmpty()) {\n//            line.append(\"\\n\");\n            section.append(line);\n        }\n\n        if (!section.toString().isEmpty()) {\n            textSections.add(new TextSection(\"\", new String[]{section.toString().trim()}, smallText, false));\n        }\n\n        if (verseError) {\n            Dialog.showInfo(LabelGrabber.INSTANCE.getLabel(\"no.verse.title\"), LabelGrabber.INSTANCE.getLabel(\"no.verse.message\"), QueleaApp.get().getMainWindow());\n        }\n    }\n\n    /**\n     * Get (a copy of) the verses shown in this passage.\n     *\n     * @return A copy of the verses shown in this passage.\n     */\n    public BibleVerse[] getVerses() {\n        return Arrays.copyOf(verses, verses.length);\n    }\n\n    /**\n     * Get the XML behind this bible passage.\n     * <p/>\n     * @return the XML.\n     */\n    @Override\n    public String getXML() {\n        StringBuilder ret = new StringBuilder();\n        ret.append(\"<passage summary=\\\"\");\n        String summaryText = \"\";\n        String bible = \"\";\n        //Handle old schedules...\n        if (summary.split(\"\\n\").length == 1) {\n            summaryText = summary.split(\"(?<=\\\\d)\\\\s\")[0];\n            bible = summary.split(\"(?<=\\\\d)\\\\s\")[1];\n        } else {\n            summaryText = summary.split(\"\\n\")[0];\n            bible = summary.split(\"\\n\")[1];\n        }\n        ret.append(Utils.escapeXML(summaryText));\n        ret.append(\"\\\" multi=\\\"\").append(multi);\n        ret.append(\"\\\" bible=\\\"\");\n        ret.append(Utils.escapeXML(bible));\n        ret.append(\"\\\">\");\n        for (BibleVerse verse : verses) {\n            ret.append(verse.toXML());\n        }\n        ret.append(\"<theme>\");\n        ret.append(theme.asString());\n        ret.append(\"</theme>\");\n        ret.append(\"</passage>\");\n        return ret.toString();\n    }\n\n    /**\n     * Return the first verse in this passage as a \"preview\".\n     * <p>\n     * @return the first verse in this passage as a \"preview\".\n     */\n    @Override\n    public String toString() {\n        if (textSections.isEmpty()) {\n            return \"\";\n        } else {\n            return textSections.get(0).getText(false, false)[0];\n        }\n    }\n\n    /**\n     * Retrieve assigned theme\n     * <p/>\n     * @return assigned theme\n     */\n    @Override\n    public ThemeDTO getTheme() {\n        return this.theme;\n    }\n\n    /**\n     * Set assigned theme\n     * <p/>\n     * @param theme new theme\n     */\n    @Override\n    public void setTheme(ThemeDTO theme) {\n        fontSizeCache.clear();\n        this.theme = theme;\n        for (TextSection ts : getSections()) {\n            ts.setTheme(theme);\n        }\n    }\n\n    /**\n     * Parse the xml from a bible passage and return the passage.\n     * <p>\n     * @param passage the passage to parse.\n     * @return the passage object.\n     */\n    public static BiblePassage parseXML(Node passage) {\n        NodeList list = passage.getChildNodes();\n        String passageSummary = passage.getAttributes().getNamedItem(\"summary\").getTextContent();\n        String bibleSummary = \"\";\n        if (passage.getAttributes().getNamedItem(\"bible\") != null) {\n            bibleSummary = passage.getAttributes().getNamedItem(\"bible\").getTextContent();\n        }\n        boolean multi = false;\n        if (passage.getAttributes().getNamedItem(\"multi\") != null) {\n            multi = Boolean.parseBoolean(passage.getAttributes().getNamedItem(\"multi\").getTextContent());\n        }\n        String summary = passageSummary + \"\\n\" + bibleSummary;\n        ThemeDTO tempTheme = ThemeDTO.DEFAULT_THEME;\n        List<BibleVerse> verses = new ArrayList<>();\n        for (int i = 0; i < list.getLength(); i++) {\n            Node node = list.item(i);\n            if (node.getNodeName().equals(\"vers\")) {\n                BibleVerse bv = BibleVerse.parseXML(node);\n                if (bv != null) {\n                    for (Bible b : BibleManager.get().getBibles()) {\n                        if (b.getBibleName().equals(bibleSummary)) {\n                            int ii = 1;\n                            for (BibleBook bb : b.getBooks()) {\n                                String p = passageSummary.split(\" \\\\d\")[0];\n                                if (bb.getBookName().equals(p)) {\n                                    bv.getChapter().setBook(BibleBook.parseXML(node, ii, BibleBookNameUtil.getBookNameForIndex(ii-1, b.getBooks().length)));\n                                    bv.getChapter().getBook().setBible(b);\n                                    verses.add(bv);\n                                }\n                                ii++;\n                            }\n                        }\n                    }\n                }\n            } else if (node.getNodeName().equals(\"theme\")) {\n                tempTheme = ThemeDTO.fromString(node.getTextContent(), Collections.emptyMap());\n            }\n        }\n        return new BiblePassage(summary, verses.toArray(new BibleVerse[verses.size()]), tempTheme, multi);\n    }\n\n    /**\n     * Get the bible preview icon.\n     * <p>\n     * @return the bible preview icon.\n     */\n    @Override\n    public ImageView getPreviewIcon() {\n        return new ImageView(new Image(\"file:icons/bible.png\"));\n    }\n\n    /**\n     * Get the preview text.\n     * <p>\n     * @return the preview text.\n     */\n    @Override\n    public String getPreviewText() {\n        return summary;\n    }\n\n    /**\n     * Get the text sections in this passage.\n     * <p>\n     * @return the text sections in this passage.\n     */\n    @Override\n    public TextSection[] getSections() {\n        return textSections.toArray(new TextSection[textSections.size()]);\n    }\n\n    /**\n     * Bible passages don't need any resources, return an empty collection.\n     * <p>\n     * @return an empty list, always.\n     */\n    @Override\n    public Collection<File> getResources() {\n        ArrayList<File> ret = new ArrayList<>();\n        for (TextSection section : getSections()) {\n            ThemeDTO sectionTheme = section.getTheme();\n            if (sectionTheme != null) {\n                Background background = sectionTheme.getBackground();\n                ret.addAll(background.getResources());\n            }\n        }\n        return ret;\n    }\n\n    /**\n     * We support clear, so return true.\n     * <p>\n     * @return true, always.\n     */\n    @Override\n    public boolean supportClear() {\n        return true;\n    }\n\n    @Override\n    public void dispose() {\n        //Nothing needed here.\n    }\n\n    public void updateBibleLines() {\n        fontSizeCache.clear();\n        textSections.clear();\n        fillTextSections();\n        for (TextSection ts : getSections()) {\n            ts.setTheme(theme);\n        }\n    }\n\n    public boolean getMulti() {\n        return multi;\n    }\n\n    public String getLocation() {\n        return summary.split(\"\\n\")[0];\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/displayable/DiskDisplayable.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data.displayable;\n\n/**\n * A displayable that shows a DVD or Blu-ray.\n * <p>\n * @author Michael\n */\npublic class DiskDisplayable extends VideoDisplayable {\n\n    /**\n     * Construct a new disk displayable with the VLC based path to the disk -\n     * eg. simpledvd:///D:/\n     * <p>\n     * @param path the VLC path to the disk.\n     */\n    public DiskDisplayable(String path) {\n        super(path);\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/displayable/Displayable.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data.displayable;\n\nimport java.io.File;\nimport java.io.Serializable;\nimport java.util.Collection;\nimport javafx.scene.Node;\nimport javafx.scene.image.ImageView;\n\n/**\n * An item such as a song that can be displayed on the projection screen.\n *\n * @author Michael\n */\npublic interface Displayable extends Serializable {\n\n    /**\n     * Determine if this displayable can be \"cleared\" in some way.\n     *\n     * @return true if it can be cleared, false otherwise.\n     */\n    boolean supportClear();\n\n    /**\n     * Get the XML describing this displayable.\n     *\n     * @return the xml.\n     */\n    String getXML();\n\n    /**\n     * Get the preview icon to be displayed in the schedule.\n     *\n     * @return the preview icon.\n     */\n    Node getPreviewIcon();\n\n    /**\n     * Get the preview text to be displayed in the schedule.\n     *\n     * @return the preview text.\n     */\n    String getPreviewText();\n\n    /**\n     * Get any file resources that this displayable needs to work. For songs\n     * this can be backgrounds, for videos this is the video file, etc.\n     *\n     * @return any files that this displayable relies upon.\n     */\n    Collection<File> getResources();\n\n    /**\n     * Free any resources used by this displayable when it's no longer needed.\n     */\n    void dispose();\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/displayable/ImageDisplayable.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data.displayable;\n\nimport java.io.File;\nimport java.util.ArrayList;\nimport java.util.Collection;\nimport java.util.List;\nimport java.util.Map;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\nimport org.w3c.dom.Node;\n\n/**\n * A displayable that's an image.\n *\n * @author Michael\n */\npublic class ImageDisplayable implements Displayable {\n\n    public static final int ICON_WIDTH = 60;\n    public static final int ICON_HEIGHT = 60;\n    private final File file;\n    private Image image;\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n\n    /**\n     * Create a new image displayable.\n     *\n     * @param file the file for the displayable.\n     */\n    public ImageDisplayable(File file) {\n        this.file = file;\n        image = new Image(\"file:\" + file.getAbsolutePath());\n    }\n\n    public ImageDisplayable(Image image) {\n        this.file = null;\n        this.image = image;\n    }\n\n    /**\n     * Get the displayable file.\n     *\n     * @return the displayable file.\n     */\n    public File getFile() {\n        return file;\n    }\n\n    /**\n     * Get the displayable image.\n     *\n     * @return the displayable image.\n     */\n    public Image getImage() {\n        return image;\n    }\n\n    /**\n     * Parse some XML representing this object and return the object it\n     * represents.\n     *\n     * @param node the XML node representing this object.\n     * @return the object as defined by the XML.\n     */\n    public static ImageDisplayable parseXML(Node node, Map<String, String> fileChanges) {\n        File file = new File(node.getTextContent());\n        File imgFile = Utils.getChangedFile(node, fileChanges);\n        if (!imgFile.exists()) {\n            imgFile = new File(QueleaProperties.get().getImageDir(), file.getName());\n        }\n        if (!imgFile.exists()) {\n            imgFile = new File(QueleaProperties.get().getDownloadPath(), file.getName());\n        }\n        if (!imgFile.exists()) {\n            LOGGER.log(Level.WARNING, \"Image file {0} doesn''t exist.\", imgFile.getAbsolutePath());\n            return null;\n        }\n        return new ImageDisplayable(imgFile);\n    }\n\n    /**\n     * Get the XML that forms this image displayable.\n     *\n     * @return the XML.\n     */\n    @Override\n    public String getXML() {\n        StringBuilder ret = new StringBuilder();\n        ret.append(\"<fileimage>\");\n        if (QueleaProperties.get().getEmbedMediaInScheduleFile()) {\n            ret.append(Utils.escapeXML(Utils.toRelativeStorePath(file)));\n        } else {\n            ret.append(Utils.escapeXML(file.getAbsolutePath()));\n        }\n        ret.append(\"</fileimage>\");\n        return ret.toString();\n    }\n\n    /**\n     * Get the preview icon for this displayable (30x30.)\n     *\n     * @return the preview icon.\n     */\n    @Override\n    public ImageView getPreviewIcon() {\n        ImageView small = new ImageView(new Image(\"file:\" + file.getAbsolutePath(), 30, 30, false, true));\n        return small;\n    }\n\n    /**\n     * Get the preview text for the image.\n     *\n     * @return the file name.\n     */\n    @Override\n    public String getPreviewText() {\n        return file.getName();\n    }\n\n    /**\n     * Get any resources this displayable needs (in this case the image.)\n     *\n     * @return the image backing this displayable.\n     */\n    @Override\n    public Collection<File> getResources() {\n        List<File> files = new ArrayList<>();\n        files.add(file);\n        return files;\n    }\n\n    /**\n     * Images don't support clearing of text (they contain no text) so false,\n     * always.\n     *\n     * @return false, always.\n     */\n    @Override\n    public boolean supportClear() {\n        return false;\n    }\n\n    @Override\n    public void dispose() {\n        //Nothing needed here.\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/displayable/ImageGroupDisplayable.java",
    "content": " /*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data.displayable;\n\n import java.io.File;\n import java.io.IOException;\n import java.util.ArrayList;\n import java.util.Arrays;\n import java.util.Collection;\n import java.util.Collections;\n import java.util.List;\n import java.util.Map;\n import javafx.scene.image.Image;\n import javafx.scene.image.ImageView;\n import org.quelea.data.imagegroup.ImageGroup;\n import org.quelea.data.imagegroup.ImageGroupFactory;\n import org.quelea.services.utils.QueleaProperties;\n import org.quelea.services.utils.Utils;\n import org.w3c.dom.Node;\n import org.w3c.dom.NodeList;\n\n /**\n * A displayable that's an image group.\n * <p/>\n * @author Arvid, based on PresentationDisplayable\n */\npublic class ImageGroupDisplayable implements Displayable {\n    private final File[] files;\n    private final ImageGroup presentation;\n    private final String title;\n\n     public ImageGroupDisplayable(File[] file, String groupTitle) throws IOException {\n        this.files = file;\n        this.title = groupTitle;\n        presentation = new ImageGroupFactory().getPresentation(file);\n        if (presentation == null) {\n            throw new IOException(\"Error with image group, couldn't open \" + Arrays.toString(file));\n        }\n    }\n\n    /**\n     * Image group presentations cannot be meaningfully cleared, so return\n     * false.\n     * <p/>\n     * @return false, always.\n     */\n    @Override\n    public boolean supportClear() {\n        return false;\n    }\n\n    /**\n     * Get the XML that forms this image group displayable.\n     * <p/>\n     * @return the XML.\n     */\n    @Override\n    public String getXML() {\n        StringBuilder ret = new StringBuilder();\n        ret.append(\"<fileimagegroup>\");\n        ret.append(\"<title>\");\n        ret.append(Utils.escapeXML(title));\n        ret.append(\"</title>\");\n        ret.append(\"<files>\");\n        for (File f : files) {\n            String loc;\n            if (QueleaProperties.get().getEmbedMediaInScheduleFile()) {\n                loc = Utils.escapeXML(Utils.toRelativeStorePath(f));\n            } else {\n                loc = f.getAbsolutePath();\n            }\n            ret.append(Utils.escapeXML(loc)).append(\";\");\n        }\n        ret.append(\"</files>\");\n        ret.append(\"</fileimagegroup>\");\n        return ret.toString();\n    }\n\n    /**\n     * Parse some XML representing this object and return the object it\n     * represents.\n     *\n     * @param node the XML node representing this object.\n     * @return the object as defined by the XML.\n     */\n    public static ImageGroupDisplayable parseXML(Node node, Map<String, String> fileChanges) throws IOException {\n        // Check for the title node. Since title is a later update, we want to maintain compatibility with older exports.\n        String title = null;\n        NodeList childNodes = node.getChildNodes();\n        if (childNodes.getLength() > 0) {\n            for (int i = 0; i < childNodes.getLength(); i++) {\n                Node childNode = childNodes.item(i);\n                if (\"title\".equals(childNode.getNodeName())) {\n                    title = childNode.getTextContent();\n                } else if (\"files\".equals(childNode.getNodeName())) {\n                    node = childNode;\n                }\n            }\n        }\n        return imageGroupFromXml(node, fileChanges, title);\n    }\n\n\n     private static ImageGroupDisplayable imageGroupFromXml(Node node, Map<String, String> fileChanges, String title) throws IOException {\n         String[] files = node.getTextContent().split(\";\");\n         ArrayList<File> tmp = new ArrayList<>();\n         for (String f : files) {\n             tmp.add(Utils.getChangedFile(f, fileChanges));\n         }\n         File[] fileArray = tmp.toArray(new File[0]);\n         if (title == null) title = concatenatedFileNames(fileArray);\n         return new ImageGroupDisplayable(fileArray, title);\n     }\n\n     /**\n     * Get the preview icon of this image group.\n     * <p/>\n     * @return the imagegroup preview icon.\n     */\n    @Override\n    public ImageView getPreviewIcon() {\n        return new ImageView(new Image(\"file:icons/image-group-schedule.png\", 30, 30, false, true));\n    }\n\n    /**\n     * Get the preview text to display in the schedule.\n     * <p/>\n     * @return the preview text.\n     */\n    @Override\n    public String getPreviewText() {\n        return this.title;\n    }\n\n    public static String concatenatedFileNames(File[] files) {\n        StringBuilder sb = new StringBuilder();\n        for (File f : files) {\n            sb.append(f.getName()).append(\", \");\n        }\n        return \"Image Group: \" + sb.substring(0, sb.toString().lastIndexOf(\",\"));\n    }\n\n    /**\n     * Give a list of the file(s)\n     * <p/>\n     * @return the file(s)\n     */\n    @Override\n    public Collection<File> getResources() {\n        List<File> f = new ArrayList<>();\n        Collections.addAll(f, files);\n        return f;\n    }\n\n    /**\n     * Get rid of this presentation displayable.\n     */\n    @Override\n    public void dispose() {\n    }\n\n    /**\n     * Get the displayable file.\n     * <p/>\n     * @return the displayable file.\n     */\n    public ImageGroup getPresentation() {\n        return presentation;\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/displayable/IndexedDisplayable.java",
    "content": "package org.quelea.data.displayable;\n\nimport java.io.Serializable;\nimport java.util.Objects;\n\npublic class IndexedDisplayable implements Serializable {\n\n    private final Displayable displayable;\n    private int index;\n\n    public IndexedDisplayable(Displayable displayable, int index) {\n        this.displayable = displayable;\n        this.index = index;\n    }\n\n    public Displayable displayable() {\n        return displayable;\n    }\n\n    public int index() {\n        return index;\n    }\n\n    public void setIndex(int index) {\n        this.index = index;\n    }\n\n    @Override\n    public boolean equals(Object o) {\n        if (o == null || getClass() != o.getClass()) return false;\n        IndexedDisplayable that = (IndexedDisplayable) o;\n        return index == that.index && Objects.equals(displayable, that.displayable);\n    }\n\n    @Override\n    public int hashCode() {\n        return Objects.hash(displayable, index);\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/displayable/MultimediaDisplayable.java",
    "content": "package org.quelea.data.displayable;\n\n/**\n *\n * @author tomaszpio@gmail.com\n */\npublic interface MultimediaDisplayable extends Displayable {\n\n    String getLocation();\n    \n    String getName();\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/displayable/PdfDisplayable.java",
    "content": " /* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data.displayable;\n\nimport java.io.File;\nimport java.io.IOException;\nimport java.util.ArrayList;\nimport java.util.Collection;\nimport java.util.List;\nimport java.util.Map;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport org.quelea.data.pdf.*;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\nimport org.w3c.dom.Node;\n\n/**\n * A displayable that's a PDF.\n * <p/>\n * @author Arvid, based on PresentationDisplayable\n */\npublic class PdfDisplayable implements Displayable {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    private final File file;\n    private final Pdf presentation;\n\n    /**\n     * Create a new PDF displayable\n     * <p/>\n     * @param file the file to create the PDF presentation from.\n     */\n    public PdfDisplayable(File file) throws IOException {\n        this.file = file;\n        presentation = new PdfFactory().getPresentation(file);\n        if (presentation == null) {\n            throw new IOException(\"Error with PDF, couldn't open \" + file);\n        }\n    }\n\n    /**\n     * PDF presentations cannot be meaningfully cleared, so return false.\n     * <p/>\n     * @return false, always.\n     */\n    @Override\n    public boolean supportClear() {\n        return false;\n    }\n\n    /**\n     * Get the XML that forms this PDF displayable.\n     * <p/>\n     * @return the XML.\n     */\n    @Override\n    public String getXML() {\n        StringBuilder ret = new StringBuilder();\n        ret.append(\"<filepdf>\");\n        if (QueleaProperties.get().getEmbedMediaInScheduleFile()) {\n            ret.append(Utils.escapeXML(Utils.toRelativeStorePath(file)));\n        } else {\n            ret.append(Utils.escapeXML(file.getAbsolutePath()));\n        }\n        ret.append(\"</filepdf>\");\n        return ret.toString();\n    }\n\n    /**\n     * Parse some XML representing this object and return the object it\n     * represents.\n     *\n     * @param node the XML node representing this object.\n     * @return the object as defined by the XML.\n     */\n    public static PdfDisplayable parseXML(Node node, Map<String, String> fileChanges) throws IOException {\n        try {\n            return new PdfDisplayable(Utils.getChangedFile(node, fileChanges));\n        } catch (IOException ex) {\n            LOGGER.log(Level.INFO, \"Couldn't create presentation for schedule\", ex);\n            return null;\n        }\n    }\n\n    /**\n     * Get the preview icon of this PDF.\n     * <p/>\n     * @return the PDF preview icon.\n     */\n    @Override\n    public ImageView getPreviewIcon() {\n        return new ImageView(new Image(QueleaProperties.get().getUseDarkTheme() ? \"file:icons/add_pdf-light.png\" : \"file:icons/add_pdf.png\", 30, 30, false, true));\n    }\n\n    /**\n     * Get the preview text to display in the schedule.\n     * <p/>\n     * @return the preview text.\n     */\n    @Override\n    public String getPreviewText() {\n        return file.getName();\n    }\n\n    /**\n     * Give a list of the file(s)\n     * <p/>\n     * @return the file(s)\n     */\n    @Override\n    public Collection<File> getResources() {\n        List<File> files = new ArrayList<>();\n        files.add(file);\n        return files;\n    }\n\n    /**\n     * Get rid of this presentation displayable.\n     */\n    @Override\n    public void dispose() {\n    }\n\n    /**\n     * Get the displayable file.\n     * <p/>\n     * @return the displayable file.\n     */\n    public Pdf getPresentation() {\n        return presentation;\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/displayable/PresentationDisplayable.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data.displayable;\n\nimport java.io.File;\nimport java.io.IOException;\nimport java.util.ArrayList;\nimport java.util.Collection;\nimport java.util.List;\nimport java.util.Map;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport org.quelea.data.powerpoint.OOPresentation;\nimport org.quelea.data.powerpoint.Presentation;\nimport org.quelea.data.powerpoint.PresentationFactory;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\nimport org.w3c.dom.Node;\n\n/**\n * A displayable that's a presentation.\n * <p/>\n * @author Michael\n */\npublic class PresentationDisplayable implements Displayable {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    private final File file;\n    private final Presentation presentation;\n    private OOPresentation ooPresentation;\n\n    /**\n     * Create a new presentation displayable\n     * <p/>\n     * @param file the file to create the presentation from.\n     */\n    public PresentationDisplayable(File file) throws IOException {\n        this.file = file;\n        presentation = new PresentationFactory().getPresentation(file);\n        if(presentation == null) {\n            throw new IOException(\"Error with presentation, couldn't open \" + file);\n        }\n        if(QueleaProperties.get().getUseOO()) {\n            try {\n                ooPresentation = new OOPresentation(file.getAbsolutePath());\n            }\n            catch(Exception ex) {\n                LOGGER.log(Level.WARNING, \"Couldn't create OO presentation\", ex);\n                ooPresentation = null;\n            }\n        }\n    }\n\n    /**\n     * Get the displayable file.\n     * <p/>\n     * @return the displayable file.\n     */\n    public Presentation getPresentation() {\n        return presentation;\n    }\n\n    /**\n     * Get the OO presentation object.\n     * <p/>\n     * @return the openoffice API backed presentation.\n     */\n    public OOPresentation getOOPresentation() {\n        return ooPresentation;\n    }\n\n    /**\n     * Parse some XML representing this object and return the object it\n     * represents.\n     * <p/>\n     * @param node the XML node representing this object.\n     * @param fileChanges a map of any file changes that may have occurred.\n     * @return the object as defined by the XML.\n     */\n    public static PresentationDisplayable parseXML(Node node, Map<String, String> fileChanges) {\n        try {\n            return new PresentationDisplayable(Utils.getChangedFile(node, fileChanges));\n        }\n        catch(IOException ex) {\n            LOGGER.log(Level.INFO, \"Couldn't create presentation for schedule\", ex);\n            return null;\n        }\n    }\n\n    /**\n     * Get the XML that forms this presentation displayable.\n     * <p/>\n     * @return the XML.\n     */\n    @Override\n    public String getXML() {\n        StringBuilder ret = new StringBuilder();\n        ret.append(\"<filepresentation>\");\n        if (QueleaProperties.get().getEmbedMediaInScheduleFile()) {\n            ret.append(Utils.escapeXML(Utils.toRelativeStorePath(file)));\n        }\n        else {\n            ret.append(Utils.escapeXML(file.getAbsolutePath()));            \n        }\n        ret.append(\"</filepresentation>\");\n        return ret.toString();\n    }\n\n    /**\n     * Get the preview icon of this video.\n     * <p/>\n     * @return the powerpoint preview icon.\n     */\n    @Override\n    public ImageView getPreviewIcon() {\n        return new ImageView(new Image(\"file:icons/powerpoint.png\", 30, 30, false, true));\n    }\n\n    /**\n     * Get the preview text to display in the schedule.\n     * <p/>\n     * @return the preview text.\n     */\n    @Override\n    public String getPreviewText() {\n        return file.getName();\n    }\n\n    /**\n     * Give a blank list (no resources.) TODO: Include powerpoint as resource\n     * <p/>\n     * @return blank list since presentations at the moment contain no resources\n     */\n    @Override\n    public Collection<File> getResources() {\n        List<File> files = new ArrayList<>();\n        files.add(file);\n        return files;\n    }\n\n    /**\n     * Presentations cannot be meaningfully cleared, so return false.\n     * <p/>\n     * @return false, always.\n     */\n    @Override\n    public boolean supportClear() {\n        return false;\n    }\n\n    /**\n     * Get rid of this presentation displayable.\n     */\n    @Override\n    public void dispose() {\n        if(ooPresentation != null) {\n            ooPresentation.dispose();\n        }\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/displayable/SongDisplayable.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data.displayable;\n\nimport java.awt.Dimension;\nimport java.io.ByteArrayInputStream;\nimport java.io.File;\nimport java.io.IOException;\nimport java.io.InputStream;\nimport java.io.Serializable;\nimport java.text.Collator;\nimport java.util.ArrayList;\nimport java.util.Collection;\nimport java.util.Collections;\nimport java.util.HashMap;\nimport java.util.HashSet;\nimport java.util.List;\nimport java.util.Map;\nimport java.util.Map.Entry;\nimport java.util.Set;\nimport java.util.TreeMap;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\n\nimport javafx.geometry.Insets;\nimport javafx.geometry.Pos;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.input.DataFormat;\n\nimport javax.xml.parsers.DocumentBuilder;\nimport javax.xml.parsers.DocumentBuilderFactory;\nimport javax.xml.parsers.ParserConfigurationException;\n\nimport javafx.scene.layout.BackgroundFill;\nimport javafx.scene.layout.CornerRadii;\nimport javafx.scene.layout.StackPane;\nimport javafx.scene.paint.Color;\nimport javafx.scene.text.Text;\nimport org.quelea.data.Background;\nimport org.quelea.data.ThemeDTO;\nimport org.quelea.data.db.SongManager;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.LineTypeChecker;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\nimport org.w3c.dom.Document;\nimport org.w3c.dom.Node;\nimport org.w3c.dom.NodeList;\nimport org.xml.sax.SAXException;\n\n/**\n * A song that contains a number of sections (verses, choruses, etc.)\n * <p/>\n *\n * @author Michael\n */\npublic class SongDisplayable implements TextDisplayable, Comparable<SongDisplayable>, Serializable {\n\n    public int count = 0;\n    public static final DataFormat SONG_DISPLAYABLE_FORMAT = new DataFormat(\"songdisplayable\");\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    private boolean updateInDB = true;\n    private String title = \"\";\n    private String author = \"\";\n    private String ccli = \"\";\n    private String year = \"\";\n    private String publisher = \"\";\n    private String copyright = \"\";\n    private String key = \"\";\n    private String capo = \"\";\n    private String info = \"\";\n    private boolean quickInsert;\n    private List<TextSection> sectionsInSequence = new ArrayList<>();\n    private List<TextSection> sectionsWithoutSequence = new ArrayList<>();\n    private HashMap<String, String> translations = new HashMap<>();\n    private String currentTranslation;\n    private ThemeDTO theme;\n    private long id = 0;\n    private boolean printChords;\n    private String lastSearch = \"\";\n    private String sequence = \"\";\n    private Map<Dimension, Double> fontSizeCache;\n\n    /**\n     * The builder responsible for building this song.\n     */\n    public static class Builder {\n\n        private final SongDisplayable song;\n\n        /**\n         * Create a new builder with the required fields.\n         * <p/>\n         *\n         * @param title  the title of the song.\n         * @param author the author of the song.\n         */\n        public Builder(String title, String author) {\n            song = new SongDisplayable(title, author);\n        }\n\n        /**\n         * Set the id of the song.\n         * <p/>\n         *\n         * @param id the song's id.\n         * @return this builder.\n         */\n        public Builder id(long id) {\n            song.id = id;\n            return this;\n        }\n\n        /**\n         * Set the ccli number of the song.\n         * <p/>\n         *\n         * @param ccli the song's ccli number.\n         * @return this builder.\n         */\n        public Builder ccli(String ccli) {\n            if (ccli == null) {\n                ccli = \"\";\n            }\n            song.ccli = ccli;\n            return this;\n        }\n\n        /**\n         * Set the year of the song.\n         * <p/>\n         *\n         * @param year the song's year.\n         * @return this builder.\n         */\n        public Builder year(String year) {\n            if (year == null) {\n                year = \"\";\n            }\n            song.year = year;\n            return this;\n        }\n\n        /**\n         * Set the publisher of the song.\n         * <p/>\n         *\n         * @param publisher the song's publisher.\n         * @return this builder.\n         */\n        public Builder publisher(String publisher) {\n            if (publisher == null) {\n                publisher = \"\";\n            }\n            song.publisher = publisher;\n            return this;\n        }\n\n        /**\n         * Set the theme of this song..\n         * <p/>\n         *\n         * @param theme the song's theme.\n         * @return this builder.\n         */\n        public Builder theme(ThemeDTO theme) {\n            song.theme = theme;\n            return this;\n        }\n\n        /**\n         * Set the lyrics of this song..\n         * <p/>\n         *\n         * @param lyrics the song's lyrics.\n         * @return this builder.\n         */\n        public Builder lyrics(String lyrics) {\n            song.setLyrics(lyrics);\n            return this;\n        }\n\n        /**\n         * Set the copyright info of this song..\n         * <p/>\n         *\n         * @param copyright the song's copyright info.\n         * @return this builder.\n         */\n        public Builder copyright(String copyright) {\n            if (copyright == null) {\n                copyright = \"\";\n            }\n            song.copyright = copyright;\n            return this;\n        }\n\n        /**\n         * Set the key of this song..\n         * <p/>\n         *\n         * @param key the song's key.\n         * @return this builder.\n         */\n        public Builder key(String key) {\n            if (key == null) {\n                key = \"\";\n            }\n            song.key = key;\n            return this;\n        }\n\n        public Builder translations(HashMap<String, String> translations) {\n            song.translations = translations;\n            return this;\n        }\n\n        /**\n         * Set the capo of this song..\n         * <p/>\n         *\n         * @param capo the song's capo.\n         * @return this builder.\n         */\n        public Builder capo(String capo) {\n            if (capo == null) {\n                capo = \"\";\n            }\n            song.capo = capo;\n            return this;\n        }\n\n        /**\n         * Set the info string of this song..\n         * <p/>\n         *\n         * @param info the song's information field.\n         * @return this builder.\n         */\n        public Builder info(String info) {\n            if (info == null) {\n                info = \"\";\n            }\n            song.info = info;\n            return this;\n        }\n\n        /**\n         * Set the song sequence of this song.\n         * <p/>\n         *\n         * @param sequence the song's sequence order.\n         * @return this builder.\n         */\n        public Builder sequence(String sequence) {\n            song.sequence = sequence == null ? \"\" : sequence;\n            return this;\n        }\n\n        /**\n         * Get the song from this builder with all the fields set appropriately.\n         * <p/>\n         *\n         * @return the song.\n         */\n        public SongDisplayable get() {\n            return song;\n        }\n    }\n\n    /**\n     * Copy constructor - creates a shallow copy.\n     * <p/>\n     *\n     * @param song the song to copy to create the new song.\n     */\n    public SongDisplayable(SongDisplayable song) {\n        this.fontSizeCache = new HashMap<>();\n        this.title = song.title;\n        this.author = song.author;\n        this.sectionsInSequence = new ArrayList<>();\n        this.sectionsWithoutSequence = new ArrayList<>();\n        for (TextSection section : song.getSectionsWithoutSequence()) {\n            this.sectionsWithoutSequence.add(new TextSection(section));\n        }\n        this.theme = song.theme;\n        this.id = song.id;\n        this.ccli = song.ccli;\n        this.year = song.year;\n        this.publisher = song.publisher;\n        this.copyright = song.copyright;\n        this.key = song.key;\n        this.info = song.info;\n        this.capo = song.capo;\n        this.lastSearch = song.lastSearch;\n        this.translations = song.translations;\n        this.count = song.count++;\n        this.sequence = song.sequence;\n    }\n\n    /**\n     * Create a new, empty song.\n     * <p/>\n     *\n     * @param title  the title of the song.\n     * @param author the author of the song.\n     */\n    public SongDisplayable(String title, String author) {\n        this(title, author, new ThemeDTO(ThemeDTO.DEFAULT_FONT,\n                ThemeDTO.DEFAULT_FONT_COLOR, ThemeDTO.DEFAULT_FONT, ThemeDTO.DEFAULT_TRANSLATE_FONT_COLOR,\n                ThemeDTO.DEFAULT_BACKGROUND, ThemeDTO.DEFAULT_SHADOW, false, false, false, true, -1, 0));\n    }\n\n    /**\n     * Create a new, empty song.\n     * <p/>\n     *\n     * @param title  the title of the song.\n     * @param author the author of the song.\n     * @param theme  the theme of the song.\n     */\n    public SongDisplayable(String title, String author, ThemeDTO theme) {\n        this.fontSizeCache = new HashMap<>();\n        id = -1;\n        this.title = title;\n        this.author = author;\n        this.theme = theme;\n        sectionsInSequence = new ArrayList<>();\n        sectionsWithoutSequence = new ArrayList<>();\n        sequence = \"\";\n    }\n\n    @Override\n    public Double getCachedUniformFontSize(Dimension dimension) {\n        return fontSizeCache.get(dimension);\n    }\n\n    @Override\n    public void setCachedUniformFontSize(Dimension dimension, double size) {\n        fontSizeCache.put(dimension, size);\n    }\n\n    /**\n     * Ensure changes to this song are not updated in the database.\n     */\n    public void setNoDBUpdate() {\n        updateInDB = false;\n    }\n\n    /**\n     * Check whether changes to this song should be persisted to the database.\n     *\n     * @return true if changes should be persisted, false otherwise.\n     */\n    public boolean checkDBUpdate() {\n        return updateInDB;\n    }\n\n    /**\n     * Set that this song is a quick insert song, and should not be updated in\n     * the database.\n     */\n    public void setQuickInsert() {\n        quickInsert = true;\n    }\n\n    /**\n     * Determine if this song was entered via quick insert, and thus should not\n     * be updated in the database.\n     * <p>\n     *\n     * @return true if this is a \"quick insert\" song, false otherwise.\n     */\n    public boolean isQuickInsert() {\n        return quickInsert;\n    }\n\n    /**\n     * Get the current translation lyrics that should be displayed for this song\n     * and section, or null if none should be displayed.\n     *\n     * @param index the index of the section.\n     * @return the current translation that should be displayed for this song\n     * and section.\n     */\n    public String getCurrentTranslationSection(int index) {\n        String val = getCurrentTranslationLyrics();\n        if (val == null) {\n            return null;\n        }\n        index = sectionsWithoutSequence.indexOf(sectionsInSequence.get(index));\n        String[] parts = val.split(\"\\n\\n\");\n        if (parts.length > index) {\n            return parts[index].trim();\n        }\n        return null;\n    }\n\n    /**\n     * Set the translation that should be displayed alongside the default\n     * lyrics. It should match a key in the translations map.\n     *\n     * @param currentTranslation the translation that should be displayed\n     *                           alongside the default lyrics.\n     */\n    public void setCurrentTranslationLyrics(String currentTranslation) {\n        this.currentTranslation = currentTranslation;\n    }\n\n    /**\n     * Get the full translation lyrics for this song, or null if no translation\n     * is selected.\n     *\n     * @return the full translation lyrics for this song, or null if no\n     * translation is selected.\n     */\n    public String getCurrentTranslationLyrics() {\n        if (translations == null) {\n            return null;\n        }\n        String val = translations.get(currentTranslation);\n        if (val == null) {\n            return null;\n        }\n        return val;\n    }\n\n    /**\n     * Get the name of the current translation in use, or null if none exists.\n     *\n     * @return the name of the current translation in use, or null if none\n     * exists.\n     */\n    public String getCurrentTranslationName() {\n        if (getCurrentTranslationLyrics() != null) {\n            return currentTranslation;\n        }\n        return null;\n    }\n\n    /**\n     * Try and give this song an ID based on the ID in the database. If this\n     * can't be done, leave it as -1.\n     */\n    public void matchID() {\n        if (id == -1 && updateInDB) {\n            for (SongDisplayable song : SongManager.get().getSongs()) {\n                if (this.title.equals(song.title) && getLyrics(true, true, false).equals(song.getLyrics(true, true, false)) && this.author.equals(song.author)) {\n                    id = song.getID();\n                }\n            }\n        }\n    }\n\n    /**\n     * Determine whether this song contains any lines of chords.\n     * <p/>\n     *\n     * @return true if it contains chords, false otherwise.\n     */\n    public boolean hasChords() {\n        String[] lyrics = getLyrics(true, true, false).split(\"\\n\");\n        for (String line : lyrics) {\n            if (new LineTypeChecker(line).getLineType() == LineTypeChecker.Type.CHORDS) {\n                return true;\n            }\n        }\n        return false;\n    }\n\n    /**\n     * Get the unique ID of the song.\n     * <p/>\n     *\n     * @return the ID of the song.\n     */\n    public long getID() {\n        return id;\n    }\n\n    /**\n     * Set the unique ID of this song.\n     * <p/>\n     *\n     * @param id the id of the song.\n     */\n    public void setID(long id) {\n        this.id = id;\n    }\n\n    /**\n     * Get the title of this song.\n     * <p/>\n     *\n     * @return the title of this song.\n     */\n    public String getTitle() {\n        return title;\n    }\n\n    /**\n     * Set the title of the song.\n     * <p/>\n     *\n     * @param title the new song title.\n     */\n    public void setTitle(String title) {\n        this.title = title;\n        refreshLyrics();\n    }\n\n    public void setTranslations(HashMap<String, String> translations) {\n        fontSizeCache.clear();\n        this.translations = translations;\n    }\n\n    /**\n     * Get the author of this song.\n     * <p/>\n     *\n     * @return the author of the song.\n     */\n    public String getAuthor() {\n        return author;\n    }\n\n    /**\n     * Set the author of the song.\n     * <p/>\n     *\n     * @param author the new song author.\n     */\n    public void setAuthor(String author) {\n        this.author = author;\n        refreshLyrics();\n    }\n\n    /**\n     * Return true because songs can be cleared.\n     * <p/>\n     *\n     * @return true, always.\n     */\n    @Override\n    public boolean supportClear() {\n        return true;\n    }\n\n    /**\n     * Get the CCLI number of this song.\n     * <p/>\n     *\n     * @return the CCLI number of this song.\n     */\n    public String getCcli() {\n        return ccli;\n    }\n\n    /**\n     * Get the publisher of this song.\n     * <p/>\n     *\n     * @return the publisher of this song.\n     */\n    public String getPublisher() {\n        return publisher;\n    }\n\n    /**\n     * Get the year of this song.\n     * <p/>\n     *\n     * @return the year of this song.\n     */\n    public String getYear() {\n        return year;\n    }\n\n    /**\n     * Retrieve assigned theme\n     * <p/>\n     *\n     * @return assigned theme\n     */\n    public ThemeDTO getTheme() {\n        return this.theme;\n    }\n\n    /**\n     * Get the copyright information of this song.\n     * <p/>\n     *\n     * @return the copyright information of this song.\n     */\n    public String getCopyright() {\n        return copyright;\n    }\n\n    /**\n     * Get the key of this song.\n     * <p/>\n     *\n     * @return the key of this song.\n     */\n    public String getKey() {\n        return key;\n    }\n\n    /**\n     * Get the general information about this song.\n     * <p/>\n     *\n     * @return the general information about this song.\n     */\n    public String getInfo() {\n        return info;\n    }\n\n    /**\n     * Get the capo of this song.\n     * <p/>\n     *\n     * @return the capo of this song.\n     */\n    public String getCapo() {\n        return capo;\n    }\n\n    /**\n     * Set the capo of this song.\n     * <p/>\n     *\n     * @param capo the capo of this song.\n     */\n    public void setCapo(String capo) {\n        this.capo = capo;\n    }\n\n    /**\n     * Set whether to print the chords of this song - temporary field used when\n     * printing chords.\n     * <p/>\n     *\n     * @param printChords true if chords should be printed, false otherwise.\n     */\n    public void setPrintChords(boolean printChords) {\n        this.printChords = printChords;\n    }\n\n    /**\n     * Set the info of this song.\n     * <p/>\n     *\n     * @param info the info of this song.\n     */\n    public void setInfo(String info) {\n        this.info = info;\n    }\n\n    /**\n     * Set the key of this song.\n     * <p/>\n     *\n     * @param key the key of this song.\n     */\n    public void setKey(String key) {\n        this.key = key;\n    }\n\n    /**\n     * Set the ccli number of this song.\n     * <p/>\n     *\n     * @param ccli the ccli number of this song.\n     */\n    public void setCcli(String ccli) {\n        this.ccli = ccli;\n    }\n\n    /**\n     * Set the publisher of this song.\n     * <p/>\n     *\n     * @param publisher the publisher of this song.\n     */\n    public void setPublisher(String publisher) {\n        this.publisher = publisher;\n    }\n\n    /**\n     * Set the year of this song.\n     * <p/>\n     *\n     * @param year the year of this song.\n     */\n    public void setYear(String year) {\n        this.year = year;\n    }\n\n    /**\n     * Set the copyright field of this song.\n     * <p/>\n     *\n     * @param copyright the copyright field of this song.\n     */\n    public void setCopyright(String copyright) {\n        this.copyright = copyright;\n        refreshLyrics();\n    }\n\n    /**\n     * Set the sequence order of this song.\n     * <p/>\n     *\n     * @param sequence the copyright field of this song.\n     */\n    public void setSequence(String sequence) {\n        this.sequence = sequence;\n    }\n\n    /**\n     * Get the sequence order of this song.\n     * <p/>\n     *\n     * @return the song sequence order\n     */\n    public String getSequence() {\n        return sequence;\n    }\n\n    private void refreshLyrics() {\n        fontSizeCache.clear();\n        ThemeDTO theme = ThemeDTO.DEFAULT_THEME;\n        for (TextSection section : sectionsInSequence) {\n            theme = section.getTheme();\n        }\n        setLyrics(getLyrics(true, true, false));\n        for (TextSection section : sectionsInSequence) {\n            section.setTheme(theme);\n        }\n    }\n\n    /**\n     * Get all the lyrics to this song as a string. This can be parsed using the\n     * setLyrics() method.\n     * <p/>\n     *\n     * @param chords     true if any chords should be included, false otherwise.\n     * @param comments   true if any comments should be included, false otherwise.\n     * @param inSequence true if lyrics should be returned according to stored sequence, false otherwise.\n     * @return the lyrics to this song.\n     */\n    public String getLyrics(boolean chords, boolean comments, boolean inSequence) {\n        StringBuilder ret = new StringBuilder();\n        for (TextSection section : inSequence ? sectionsInSequence : sectionsWithoutSequence) {\n            if (section.getTitle() != null && !section.getTitle().equals(\"\")) {\n                ret.append(section.getTitle()).append(\"\\n\");\n            }\n            for (String line : section.getText(chords, comments)) {\n                ret.append(line).append(\"\\n\");\n            }\n            ret.append(\"\\n\");\n        }\n        return ret.toString().replaceAll(\"\\\\s+$\", \"\").replace(\" \", \"<>\");\n    }\n\n    public void addTranslation(String translationName, String translationText) {\n        fontSizeCache.clear();\n        translations.put(translationName, translationText.trim());\n    }\n\n    public HashMap<String, String> getTranslations() {\n        return translations;\n    }\n\n    /**\n     * Set the lyrics to this song as a string. This will erase any sections\n     * currently in the song and parse the given lyrics into a number of song\n     * sections.\n     * <p/>\n     *\n     * @param lyrics the lyrics to set as this song's lyrics.\n     */\n    public void setLyrics(String lyrics) {\n        sectionsWithoutSequence.clear();\n        sectionsInSequence.clear();\n        fontSizeCache.clear();\n        boolean foundTitle = !(title == null || title.isEmpty());\n        lyrics = lyrics.replaceAll(\"\\n\\n+\", \"\\n\\n\");\n        lyrics = lyrics.replace(\"<>\", \" \");\n\n        // Remove lines that contain only whitespace characers\n        // so they are used as e section-split\n        lyrics = lyrics.replaceAll(\"\\\\n\\\\s+\\\\n\", \"\\n\\n\");\n        lyrics = lyrics.replaceAll(\"\\\\r\\\\s+\\\\r\", \"\\r\\r\");\n        lyrics = lyrics.replaceAll(\"\\\\r\\\\n\\\\s+\\\\r\\\\n\", \"\\r\\n\\r\\n\");\n        \n        for (String section : lyrics.split(\"(\\n\\n)|(\\r\\r)|(\\r\\n\\r\\n)\")) {\n            String[] sectionLines = section.split(\"\\n\");\n            String[] newLyrics = section.split(\"\\n\");\n            String sectionTitle = \"\";\n            if (sectionLines.length == 0) {\n                continue;\n            }\n            if (new LineTypeChecker(sectionLines[0]).getLineType() == LineTypeChecker.Type.TITLE) {\n                sectionTitle = sectionLines[0];\n                newLyrics = new String[sectionLines.length - 1];\n                System.arraycopy(sectionLines, 1, newLyrics, 0, newLyrics.length);\n            }\n            if (!foundTitle) {\n                for (String line : sectionLines) {\n                    if (new LineTypeChecker(line).getLineType() == LineTypeChecker.Type.NORMAL) {\n                        title = line;\n                        foundTitle = true;\n                        break;\n                    }\n                }\n            }\n            String churchCcliNum = QueleaProperties.get().getChurchCcliNum();\n            String[] smallLines;\n            if (churchCcliNum == null || churchCcliNum.isEmpty()) {\n                smallLines = new String[]{\n                        title,\n                        author + ((ccli.equals(\"\")) ? \" \" : (\" (\" + ccli + \")\"))\n                };\n            } else {\n                String cpText = null;\n                if (copyright != null) {\n                    cpText = copyright.trim();\n                }\n                if (cpText != null && !cpText.trim().isEmpty() && !cpText.startsWith(\"©\")) {\n                    cpText = \"©\" + cpText;\n                }\n                String firstLine = \"\\\"\" + title + \"\\\"\";\n                if (author != null && !author.trim().isEmpty()) {\n                    firstLine += \" by \" + author;\n                }\n                List<String> smallLinesList = new ArrayList<>();\n                smallLinesList.add(firstLine);\n                if (cpText != null && !cpText.isEmpty()) {\n                    smallLinesList.add(cpText);\n                }\n                smallLinesList.add(LabelGrabber.INSTANCE.getLabel(\"ccli.licence\") + \" #\" + churchCcliNum);\n                smallLines = smallLinesList.toArray(new String[smallLinesList.size()]);\n            }\n            sectionsWithoutSequence.add(new TextSection(sectionTitle, newLyrics, smallLines, true));\n        }\n        setSectionsInSequence(sectionsWithoutSequence);\n    }\n\n    private void setSectionsInSequence(List<TextSection> sectionsWithoutSequence) {\n        sectionsInSequence.clear();\n        if (sequence != null && !sequence.equals(\"\")) {\n            for (String s : sequence.split(\" \")) {\n                for (TextSection ts : sectionsWithoutSequence) {\n                    if (ts.getTitle() != null && !ts.getTitle().equals(\"\")) {\n                        String[] title = ts.getTitle().split(\" \");\n                        StringBuilder sb = new StringBuilder();\n                        for (String t : title) {\n                            sb.append(t.charAt(0));\n                        }\n                        if (sb.toString().equals(s)) {\n                            sectionsInSequence.add(ts);\n                        }\n                    }\n                }\n            }\n        } else {\n            sectionsInSequence.addAll(sectionsWithoutSequence);\n        }\n    }\n\n    /**\n     * Add a section to this song.\n     * <p/>\n     *\n     * @param section the section to add.\n     */\n    public void addSection(TextSection section) {\n        fontSizeCache.clear();\n        if (section.getTheme() == null) {\n            section.setTheme(theme);\n        }\n        sectionsWithoutSequence.add(section);\n    }\n\n    /**\n     * Add a section to this song at the specified index.\n     * <p/>\n     *\n     * @param index   the index to add the song at.\n     * @param section the section to add.\n     */\n    public void addSection(int index, TextSection section) {\n        sectionsInSequence.clear();\n        fontSizeCache.clear();\n        if (section.getTheme() == null) {\n            section.setTheme(theme);\n        }\n        sectionsWithoutSequence.add(index, section);\n    }\n\n    /**\n     * Add a number of sections to this song.\n     * <p/>\n     *\n     * @param sections the sections to add.\n     */\n    public void addSections(TextSection[] sections) {\n        fontSizeCache.clear();\n        for (TextSection section : sections) {\n            addSection(section);\n        }\n        getSections(); //Initialise sequence order\n    }\n\n    /**\n     * Replace the text section at the given index with the new section.\n     * <p/>\n     *\n     * @param newSection the new section to use to replace the existing one.\n     * @param index      the index of the section to replace.\n     */\n    public void replaceSection(TextSection newSection, int index) {\n        sectionsInSequence.clear();\n        sectionsWithoutSequence.set(index, newSection);\n        fontSizeCache.clear();\n    }\n\n    /**\n     * Remove the given text section.\n     * <p/>\n     *\n     * @param index the index of the text section to remove.\n     */\n    public void removeSection(int index) {\n        sectionsInSequence.clear();\n        sectionsWithoutSequence.remove(index);\n        fontSizeCache.clear();\n    }\n\n    /**\n     * Get an array of all the sections in this song, including sequence order.\n     * <p/>\n     *\n     * @return the song sections.\n     */\n    @Override\n    public TextSection[] getSections() {\n        if (sectionsInSequence.isEmpty()) {\n            setSectionsInSequence(sectionsWithoutSequence);\n        }\n        return sectionsInSequence.toArray(new TextSection[sectionsInSequence.size()]);\n    }\n\n    /**\n     * Get an array of all the sections in this song, excluding sequence order.\n     * <p/>\n     *\n     * @return the song sections.\n     */\n    public TextSection[] getSectionsWithoutSequence() {\n        return sectionsWithoutSequence.toArray(new TextSection[sectionsWithoutSequence.size()]);\n    }\n\n    /**\n     * Set the last search text (for highlighting.)\n     * <p/>\n     *\n     * @param lastSearch\n     */\n    public void setLastSearch(String lastSearch) {\n        this.lastSearch = lastSearch;\n    }\n\n    /**\n     * Get the HTML that should be displayed in the library song list. This\n     * depends on what was searched for last, it bolds the search term in the\n     * title (if it appears as such.)\n     * <p/>\n     *\n     * @return the appropriate HTML to display the song in the list.\n     */\n    public String getListHTML() {//@todo wrong method name\n        return getTitle();\n    }\n\n    public String getLastSearch() {\n        return lastSearch;\n    }\n\n    /**\n     * Get a representation of this song in XML format.\n     * <p/>\n     *\n     * @return the song in XML format.\n     */\n    @Override\n    public String getXML() {\n        StringBuilder xml = new StringBuilder();\n        xml.append(\"<song>\");\n        xml.append(\"<updateInDB>\");\n        xml.append(updateInDB);\n        xml.append(\"</updateInDB>\");\n        xml.append(\"<title>\");\n        xml.append(Utils.escapeXML(title));\n        xml.append(\"</title>\");\n        xml.append(\"<author>\");\n        xml.append(Utils.escapeXML(author));\n        xml.append(\"</author>\");\n        xml.append(\"<ccli>\");\n        xml.append(Utils.escapeXML(ccli));\n        xml.append(\"</ccli>\");\n        xml.append(\"<copyright>\");\n        xml.append(Utils.escapeXML(copyright));\n        xml.append(\"</copyright>\");\n        xml.append(\"<year>\");\n        xml.append(Utils.escapeXML(year));\n        xml.append(\"</year>\");\n        xml.append(\"<publisher>\");\n        xml.append(Utils.escapeXML(publisher));\n        xml.append(\"</publisher>\");\n        xml.append(\"<key>\");\n        xml.append(Utils.escapeXML(key));\n        xml.append(\"</key>\");\n        xml.append(\"<capo>\");\n        xml.append(Utils.escapeXML(capo));\n        xml.append(\"</capo>\");\n        xml.append(\"<notes>\");\n        xml.append(Utils.escapeXML(info));\n        xml.append(\"</notes>\");\n        xml.append(\"<sequence>\");\n        xml.append(Utils.escapeXML(sequence));\n        xml.append(\"</sequence>\");\n        xml.append(\"<lyrics>\");\n        for (TextSection section : sectionsWithoutSequence) {\n            xml.append(section.getXML());\n        }\n        xml.append(\"</lyrics>\");\n\n        xml.append(\"<translation>\");\n        if (getCurrentTranslationLyrics() != null) {\n            xml.append(\"<name>\");\n            xml.append(currentTranslation);\n            xml.append(\"</name>\");\n            xml.append(\"<tlyrics>\");\n            xml.append(Utils.escapeXML(translations.get(currentTranslation)));\n            xml.append(\"</tlyrics>\");\n        } else {\n            xml.append(\"\");\n        }\n        xml.append(\"</translation>\");\n\n        xml.append(\"<translationoptions>\");\n        if (translations != null) {\n            for (Entry<String, String> translation : translations.entrySet()) {\n                String translationLang = translation.getKey();\n                String translationLyrics = translation.getValue();\n                xml.append(\"<lang>\");\n                xml.append(Utils.escapeXML(translationLang));\n                xml.append(\"</lang>\");\n                xml.append(\"<lyrics>\");\n                xml.append(Utils.escapeXML(translationLyrics));\n                xml.append(\"</lyrics>\");\n            }\n        }\n        xml.append(\"</translationoptions>\");\n\n        xml.append(\"</song>\");\n        return xml.toString();\n    }\n\n    /**\n     * Get the XML used to print the song (will be transferred via XSLT.)\n     *\n     * @param includeTranslations true if translations should be included in the\n     *                            export, false otherwise.\n     * @return the XML used to print the song.\n     */\n    public String getPrintXML(boolean includeTranslations) {\n        StringBuilder xml = new StringBuilder();\n        Map<String, String> lyricsMap = new TreeMap<>((String o1, String o2) -> { //Ensure \"Default\" translation is first\n            if (o1.equals(\"Default\")) {\n                return -1;\n            }\n            if (o2.equals(\"Default\")) {\n                return 1;\n            }\n            return o1.compareTo(o2);\n        });\n        StringBuilder mainLyrics = new StringBuilder();\n        for (TextSection section : sectionsInSequence) {\n            mainLyrics.append(section.getTitle()).append(\"\\n\");\n            for (String line : section.getText(printChords, false)) {\n                mainLyrics.append(Utils.escapeXML(line)).append(\"\\n\");\n            }\n            mainLyrics.append(\"\\n\");\n        }\n        lyricsMap.put(\"Default\", mainLyrics.toString().trim());\n        if (includeTranslations) {\n            lyricsMap.putAll(getTranslations());\n        }\n        xml.append(\"<songs>\");\n        for (Entry<String, String> lyricsEntry : lyricsMap.entrySet()) {\n            xml.append(\"<song>\");\n            xml.append(\"<title>\");\n            xml.append(Utils.escapeXML(title));\n            if (!lyricsEntry.getKey().equals(\"Default\")) {\n                xml.append(\" (\").append(lyricsEntry.getKey()).append(\")\");\n            }\n            xml.append(\"</title>\");\n            xml.append(\"<author>\");\n            xml.append(Utils.escapeXML(author));\n            xml.append(\"</author>\");\n            xml.append(\"<lyrics>\");\n            xml.append(lyricsEntry.getValue().replace(\" \", Character.toString((char) 160)));\n            xml.append(\"</lyrics>\");\n            xml.append(\"</song>\");\n        }\n        xml.append(\"</songs>\");\n        return xml.toString();\n    }\n\n    /**\n     * Parse a song in XML format and return the song object.\n     * <p/>\n     *\n     * @param xml the xml string to parse.\n     * @return the song, or null if an error occurs.\n     */\n    public static SongDisplayable parseXML(String xml) {\n        try {\n            InputStream inputStream = new ByteArrayInputStream(xml.getBytes(\"UTF8\"));\n            DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();\n            DocumentBuilder builder = factory.newDocumentBuilder();\n            Document doc = builder.parse(inputStream);\n            return parseXML(doc.getFirstChild(), Collections.emptyMap());\n        } catch (ParserConfigurationException | SAXException | IOException ex) {\n            return null;\n        }\n    }\n\n    /**\n     * Parse a song in XML format and return the song object.\n     * <p/>\n     *\n     * @param inputStream the input stream containing the xml.\n     * @return the song, or null if an error occurs.\n     */\n    public static SongDisplayable parseXML(InputStream inputStream) {\n        try {\n            DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();\n            DocumentBuilder builder = factory.newDocumentBuilder();\n            Document doc = builder.parse(inputStream);\n            return parseXML(doc.getChildNodes().item(0), Collections.emptyMap());\n        } catch (ParserConfigurationException | SAXException | IOException ex) {\n            LOGGER.log(Level.INFO, \"Couldn't parse the schedule\", ex);\n            return null;\n        }\n    }\n\n    /**\n     * Parse a song in XML format and return the song object.\n     * <p/>\n     *\n     * @param song the song node to parse.\n     * @return the song, or null if an error occurs.\n     */\n    public static SongDisplayable parseXML(Node song, Map<String, String> fileChanges) {\n        NodeList list = song.getChildNodes();\n        String title = \"\";\n        String author = \"\";\n        String ccli = \"\";\n        String copyright = \"\";\n        String year = \"\";\n        String publisher = \"\";\n        String key = \"\";\n        String capo = \"\";\n        String notes = \"\";\n        String currentTranslation = \"\";\n        String translationLyrics = \"\";\n        String sequence = \"\";\n        HashMap<String, String> translationOpts = new HashMap<>();\n        boolean updateInDB = true;\n        List<TextSection> songSections = new ArrayList<>();\n        for (int i = 0; i < list.getLength(); i++) {\n            Node node = list.item(i);\n            if (node.getNodeName().equals(\"updateInDB\")) {\n                if (node.getTextContent().equals(\"false\")) {\n                    updateInDB = false;\n                }\n            }\n            if (node.getNodeName().equals(\"title\")) {\n                title = node.getTextContent();\n            }\n            if (node.getNodeName().equals(\"ccli\")) {\n                ccli = node.getTextContent();\n            }\n            if (node.getNodeName().equals(\"copyright\")) {\n                copyright = node.getTextContent();\n            }\n            if (node.getNodeName().equals(\"year\")) {\n                year = node.getTextContent();\n            }\n            if (node.getNodeName().equals(\"publisher\")) {\n                publisher = node.getTextContent();\n            }\n            if (node.getNodeName().equals(\"key\")) {\n                key = node.getTextContent();\n            }\n            if (node.getNodeName().equals(\"capo\")) {\n                capo = node.getTextContent();\n            }\n            if (node.getNodeName().equals(\"notes\")) {\n                notes = node.getTextContent();\n            }\n            if (node.getNodeName().equals(\"author\")) {\n                author = node.getTextContent();\n            }\n            if (node.getNodeName().equals(\"lyrics\")) {\n                NodeList sections = node.getChildNodes();\n                for (int j = 0; j < sections.getLength(); j++) {\n                    Node sectionNode = sections.item(j);\n                    if (sectionNode.getNodeName().equals(\"section\")) {\n                        songSections.add(TextSection.parseXML(sectionNode, fileChanges));\n                    }\n                }\n            }\n            if (node.getNodeName().equals(\"translation\")) {\n                if (node.hasChildNodes()) {\n                    NodeList nl = node.getChildNodes();\n                    currentTranslation = nl.item(0).getTextContent();\n                    translationLyrics = nl.item(1).getTextContent();\n                }\n            }\n            if (node.getNodeName().equals(\"translationoptions\")) {\n                NodeList translations = node.getChildNodes();\n                String translationOptLang = null;\n                String translationOptLyrics = null;\n                for (int j = 0; j < translations.getLength(); j++) {\n                    Node translationNode = translations.item(j);\n                    if (translationNode.getNodeName().equals(\"lang\")) {\n                        translationOptLang = translationNode.getTextContent();\n                    }\n                    if (translationNode.getNodeName().equals(\"lyrics\")) {\n                        translationOptLyrics = translationNode.getTextContent();\n                        if (translationOptLang != null && translationOptLyrics != null) {\n                            translationOpts.put(translationOptLang, translationOptLyrics);\n                        }\n                    }\n                }\n            }\n            if (node.getNodeName().equals(\"sequence\")) {\n                sequence = node.getTextContent();\n            }\n        }\n        SongDisplayable ret = new SongDisplayable(title, author,\n                new ThemeDTO(ThemeDTO.DEFAULT_FONT, ThemeDTO.DEFAULT_FONT_COLOR, ThemeDTO.DEFAULT_FONT, ThemeDTO.DEFAULT_TRANSLATE_FONT_COLOR,\n                        ThemeDTO.DEFAULT_BACKGROUND, ThemeDTO.DEFAULT_SHADOW, false, false, false, true, -1, 0));\n        if (!updateInDB) {\n            ret.setNoDBUpdate();\n        }\n        ret.addSections(songSections.toArray(new TextSection[songSections.size()]));\n        ret.setCcli(ccli);\n        ret.setCopyright(copyright);\n        ret.setYear(year);\n        ret.setPublisher(publisher);\n        ret.setKey(key);\n        ret.setCapo(capo);\n        ret.setInfo(notes);\n        ret.setTranslations(translationOpts);\n        if (!currentTranslation.equals(\"\")) {\n            ret.setCurrentTranslationLyrics(currentTranslation);\n            ret.addTranslation(currentTranslation, translationLyrics);\n        }\n        ret.setSequence(sequence);\n        ret.refreshLyrics();\n        return ret;\n    }\n\n    /**\n     * Generate a hashcode for this song.\n     * <p/>\n     *\n     * @return the hashcode.\n     */\n    @Override\n    public int hashCode() {\n        int hash = 7;\n        hash = 29 * hash + (this.title != null ? this.title.hashCode() : 0);\n        hash = 29 * hash + (this.author != null ? this.author.hashCode() : 0);\n        hash = 29 * hash + (this.sectionsWithoutSequence != null ? this.sectionsWithoutSequence.hashCode() : 0);\n        hash = 29 * hash + (this.theme != null ? this.theme.hashCode() : 0);\n        hash = hash + count;\n        return hash;\n    }\n\n    /**\n     * Determine whether this song equals another object.\n     * <p/>\n     *\n     * @param obj the other object.\n     * @return true if the objects are equal, false otherwise.\n     */\n    @Override\n    public boolean equals(Object obj) {\n        if (obj == null) {\n            return false;\n        }\n        if (!(obj instanceof SongDisplayable)) {\n            return false;\n        }\n        final SongDisplayable other = (SongDisplayable) obj;\n        if ((this.title == null) ? (other.title != null) : !this.title.equals(other.title)) {\n            return false;\n        }\n        if ((this.author == null) ? (other.author != null) : !this.author.equals(other.author)) {\n            return false;\n        }\n        if (this.sectionsWithoutSequence != other.sectionsWithoutSequence && (this.sectionsWithoutSequence == null || !this.sectionsWithoutSequence.equals(other.sectionsWithoutSequence))) {\n            return false;\n        }\n        if (this.theme != other.theme && (this.theme == null || !this.theme.equals(other.theme))) {\n            return false;\n        }\n        return true;\n    }\n\n    /**\n     * Compare this song to another song, first by title and then by author.\n     * <p/>\n     *\n     * @param other the other song.\n     * @return 1 if this song is greater than the other song, 0 if they're the\n     * same, and -1 if this is less than the other song.\n     */\n    @Override\n    public int compareTo(SongDisplayable other) {\n        Collator collator = Collator.getInstance();\n        int result = collator.compare(getTitle(), other.getTitle());\n        if (result == 0) {\n            if (getAuthor() != null && other.getAuthor() != null) {\n                result = collator.compare(getAuthor(), other.getAuthor());\n            }\n            if (result == 0 && getLyrics(false, false, false) != null && other.getLyrics(false, false, false) != null) {\n                result = collator.compare(getLyrics(false, false, false), other.getLyrics(false, false, false));\n            }\n        }\n        return result;\n    }\n\n    /**\n     * Get a string representation of this song.\n     * <p/>\n     *\n     * @return a string representation of the song.\n     */\n    @Override\n    public String toString() {\n        return getXML();\n    }\n\n    /**\n     * Get the preview icon of this song.\n     * <p/>\n     *\n     * @return the song's preview icon.\n     */\n    @Override\n    public javafx.scene.Node getPreviewIcon() {\n        ImageView iv;\n        if (getID() < 0) {\n            iv = new ImageView(new Image(\"file:icons/lyricscopy.png\"));\n        } else if (hasChords()) {\n            iv = new ImageView(new Image(\"file:icons/lyricsandchords.png\"));\n        } else {\n            iv = new ImageView(new Image(\"file:icons/lyrics.png\"));\n        }\n        StackPane stackPane = new StackPane();\n        stackPane.getChildren().add(iv);\n        if (!getTranslations().isEmpty()) {\n            stackPane.getChildren().add(getTranslationPart());\n            stackPane.setAlignment(Pos.BOTTOM_LEFT);\n        }\n        return stackPane;\n    }\n\n    private StackPane getTranslationPart() {\n        StackPane ret = new StackPane();\n        ImageView iv = new ImageView(\"file:icons/translate small.png\");\n        iv.setFitWidth(13);\n        iv.setPreserveRatio(true);\n        ret.setPadding(new Insets(0,3,0,3));\n        ret.getChildren().add(iv);\n        ret.setMaxWidth(5);\n        ret.setMaxHeight(5);\n        ret.setAlignment(Pos.CENTER);\n        ret.setStyle(\"-fx-background-color: #333333;\");\n        ret.setOpacity(0.9);\n        return ret;\n    }\n\n    /**\n     * Get the preview text of this song.\n     * <p/>\n     *\n     * @return the song's preview text.\n     */\n    @Override\n    public String getPreviewText() {\n        String ret = getTitle();\n        if (getCurrentTranslationName() != null) {\n            ret += \" (+ \" + getCurrentTranslationName() + \")\";\n        }\n        ret += \"\\n\" + getAuthor();\n        return ret;\n    }\n\n    /**\n     * Remove any duplicate sections in this song.\n     */\n    public void removeDuplicateSections() {\n        Utils.removeDuplicateWithOrder(sectionsWithoutSequence);\n        fontSizeCache.clear();\n    }\n\n    /**\n     * Get all the files used by this song.\n     * <p/>\n     *\n     * @return all the files used by this song.\n     */\n    @Override\n    public Collection<File> getResources() {\n        Set<File> ret = new HashSet<>();\n        for (TextSection section : getSections()) {\n            ThemeDTO sectionTheme = section.getTheme();\n            if (sectionTheme != null) {\n                Background background = sectionTheme.getBackground();\n                ret.addAll(background.getResources());\n            }\n        }\n        return ret;\n    }\n\n    public void setTheme(ThemeDTO theme) {\n        fontSizeCache.clear();\n        this.theme = theme;\n    }\n\n    @Override\n    public void dispose() {\n        //Nothing needed here.\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/displayable/TextAlignment.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data.displayable;\n\nimport org.quelea.services.languages.LabelGrabber;\n\n/**\n * Used for describing the position the alignment of text can take.\n *\n * @author mjrb5\n */\npublic enum TextAlignment {\n\n    LEFT(LabelGrabber.INSTANCE.getLabel(\"left\")),\n    CENTRE(LabelGrabber.INSTANCE.getLabel(\"centre\"));\n//    RIGHT(LabelGrabber.INSTANCE.getLabel(\"right\"));\n    \n    private String friendlyString;\n\n    TextAlignment(String friendlyString) {\n        this.friendlyString = friendlyString;\n    }\n\n    /**\n     * Get the \"friendly\" string to show for this enum constant.\n     *\n     * @return the \"friendly\" string to show for this enum constant.\n     */\n    public String toFriendlyString() {\n        return friendlyString;\n    }\n\n    /**\n     * Parse a TextAlignment based on its friendly string.\n     *\n     * @param val the friendly string.\n     * @return the text alignment object.\n     */\n    public static TextAlignment parse(String val) {\n        if(val.equalsIgnoreCase(LabelGrabber.INSTANCE.getLabel(\"left\"))) {\n            return TextAlignment.LEFT;\n        }\n//        else if(val.equals(LabelGrabber.INSTANCE.getLabel(\"right\"))) {\n//            return TextAlignment.RIGHT;\n//        }\n        else if(val.equalsIgnoreCase(LabelGrabber.INSTANCE.getLabel(\"centre\"))) {\n            return TextAlignment.CENTRE;\n        }\n        else {\n            return TextAlignment.LEFT;\n        }\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/displayable/TextDisplayable.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data.displayable;\n\nimport java.awt.Dimension;\nimport org.quelea.data.ThemeDTO;\n\n/**\n * A displayable object that displays text such as liturgy, songs or bible passages.\n * @author Michael\n */\npublic interface TextDisplayable extends Displayable {\n\n    /**\n     * Get the text sections in this displayable.\n     * @return the text sections.\n     */\n    TextSection[] getSections();\n    \n    Double getCachedUniformFontSize(Dimension dimension);\n    void setCachedUniformFontSize(Dimension dimension, double size);\n    \n    /**\n     * Get the current theme\n     * @return the theme\n     */\n    ThemeDTO getTheme();\n    \n    /**\n     * Set the current theme\n     * @param theme the theme to set \n     */\n    void setTheme(ThemeDTO theme);\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/displayable/TextSection.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data.displayable;\n\nimport java.io.Serializable;\nimport java.io.UnsupportedEncodingException;\nimport java.util.ArrayList;\nimport java.util.Arrays;\nimport java.util.List;\nimport java.util.Map;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport org.quelea.data.ThemeDTO;\nimport org.quelea.services.utils.LineTypeChecker;\nimport org.quelea.services.utils.Utils;\nimport org.w3c.dom.NamedNodeMap;\nimport org.w3c.dom.Node;\nimport org.w3c.dom.NodeList;\n\n/**\n * Represents a section of text in a song or passage.\n *\n * @author Michael\n */\npublic class TextSection implements Serializable {\n\n    private final String title;\n    private final String[] lines;\n    private final String[] smallLines;\n    private ThemeDTO theme;\n    private final boolean capitaliseFirst;\n\n    public TextSection(TextSection orig) {\n        this.title = orig.title;\n        this.lines = orig.lines;\n        this.smallLines = orig.smallLines;\n        this.theme = orig.theme;\n        this.capitaliseFirst = orig.capitaliseFirst;\n    }\n\n    /**\n     * Create a new text section with the specified title and lyrics.\n     *\n     * @param title the title of the section.\n     * @param lines the lines of the section, one line per array entry.\n     * @param smallLines the lines to be displayed in the bottom left of the\n     * canvas for this text section\n     * @param capitaliseFirst true if the first character of each line should be\n     * a capital, false otherwise.\n     */\n    public TextSection(String title, String[] lines, String[] smallLines, boolean capitaliseFirst) {\n        this(title, lines, smallLines, capitaliseFirst, null);\n    }\n\n    /**\n     * Create a new song section with the specified title and lyrics.\n     *\n     * @param title the title of the section.\n     * @param lines the lines of the section, one line per array entry.\n     * @param smallLines the lines to be displayed in the bottom left of the\n     * canvas for this text section\n     * @param capitaliseFirst true if the first character of each line should be\n     * a capital, false otherwise.\n     * @param theme the theme of this song section.\n     */\n    public TextSection(String title, String[] lines, String[] smallLines, boolean capitaliseFirst, ThemeDTO theme) {\n        this.capitaliseFirst = capitaliseFirst;\n        this.title = title;\n        this.lines = Arrays.copyOf(lines, lines.length);\n        if (smallLines == null) { //Guard against NPE\n            smallLines = new String[0];\n        }\n        this.smallLines = Arrays.copyOf(smallLines, smallLines.length);\n        this.theme = theme;\n    }\n\n    /**\n     * Get a representation of this section in XML format.\n     *\n     * @return the section in XML format.\n     */\n    public String getXML() {\n        StringBuilder xml = new StringBuilder();\n        xml.append(\"<section \").append(\"title=\\\"\").append(Utils.escapeXML(getTitle())).append(\"\\\" capitalise=\\\"\").append(shouldCapitaliseFirst()).append(\"\\\">\");\n        if (theme != null) {\n            xml.append(\"<theme>\");\n            xml.append(Utils.escapeXML(theme.asString()));\n            xml.append(\"</theme>\");\n        }\n        if (smallLines != null) {\n            xml.append(\"<smalllines>\");\n            for (String line : smallLines) {\n                try {\n                    xml.append(new String(Utils.escapeXML(line).getBytes(\"UTF8\"), \"UTF-8\")).append('\\n');\n                } catch (UnsupportedEncodingException ex) {\n                    Logger.getLogger(TextSection.class.getName()).log(Level.SEVERE, null, ex);\n                }\n            }\n            xml.append(\"</smalllines>\");\n        }\n        xml.append(\"<lyrics>\");\n        for (String line : getText(true, true)) {\n            try {\n                xml.append(new String(Utils.escapeXML(line).getBytes(\"UTF8\"), \"UTF-8\")).append('\\n');\n            } catch (UnsupportedEncodingException ex) {\n                Logger.getLogger(TextSection.class.getName()).log(Level.SEVERE, null, ex);\n            }\n        }\n        xml.append(\"</lyrics></section>\");\n        return xml.toString();\n    }\n\n    /**\n     * Parse the given node to create a new song section.\n     *\n     * @param sectionNode the section node.\n     * @return the song section.\n     */\n    public static TextSection parseXML(Node sectionNode, Map<String, String> fileChanges) {\n        NamedNodeMap attributes = sectionNode.getAttributes();\n        String sectionTitle = null;\n        String[] lyrics = null;\n        String[] smallLines = null;\n        ThemeDTO theme = null;\n        boolean capitalise = true;\n\n        if (attributes != null) {\n            Node titleNode = attributes.getNamedItem(\"title\");\n            if (titleNode != null) {\n                sectionTitle = titleNode.getTextContent();\n            }\n            Node capitaliseNode = attributes.getNamedItem(\"capitalise\");\n            if (capitaliseNode != null) {\n                capitalise = Boolean.parseBoolean(capitaliseNode.getTextContent());\n            }\n        }\n        NodeList nodelist = sectionNode.getChildNodes();\n        for (int i = 0; i < nodelist.getLength(); i++) {\n            //try {\n            Node node = nodelist.item(i);\n            switch (node.getNodeName()) {\n                case \"theme\":\n                    theme = ThemeDTO.fromString(node.getTextContent(), fileChanges);\n                    break;\n                case \"lyrics\":\n                    //String[] rawLyrics = new String(node.getTextContent().getBytes(), \"UTF-8\").split(\"\\n\");\n                    String[] rawLyrics = node.getTextContent().split(\"\\n\");\n                    List<String> newLyrics = new ArrayList<>();\n                    for (String line : rawLyrics) {\n                        if (!line.isEmpty()) {\n                            newLyrics.add(line);\n                        }\n                    }\n                    lyrics = newLyrics.toArray(new String[newLyrics.size()]);\n                    break;\n                case \"smalllines\":\n                    //String[] rawSmallLines = new String(node.getTextContent().getBytes(), \"UTF-8\").split(\"\\n\");\n                    String[] rawSmallLines = node.getTextContent().split(\"\\n\");\n                    List<String> newSmallLines = new ArrayList<>();\n                    for (String line : rawSmallLines) {\n                        if (!line.isEmpty()) {\n                            newSmallLines.add(line);\n                        }\n                    }\n                    smallLines = newSmallLines.toArray(new String[newSmallLines.size()]);\n                    break;\n            }\n            //} catch (UnsupportedEncodingException ex) {\n            //    Logger.getLogger(TextSection.class.getName()).log(Level.SEVERE, null, ex);\n            //}\n        }\n        TextSection ret = new TextSection(sectionTitle, lyrics, smallLines, capitalise);\n        if (theme != null) {\n            ret.setTheme(theme);\n        }\n        return ret;\n    }\n\n    /**\n     * Get the title of the section.\n     *\n     * @return the title of the section.\n     */\n    public String getTitle() {\n        return title;\n    }\n\n    /**\n     * Get the lyrics of the section.\n     *\n     * @param chords true if any chords should be included in the text (if\n     * present), false otherwise.\n     * @param comments true if any comments should be included, false otherwise.\n     * @return the lyrics of the section.\n     */\n    public String[] getText(boolean chords, boolean comments) {\n        List<String> ret = new ArrayList<>(lines.length);\n        for (String str : lines) {\n            String toAdd = null;\n            if (chords) {\n                if (comments) {\n                    toAdd = str;\n                } else {\n                    toAdd = removeComments(str);\n                }\n            } else {\n                if (new LineTypeChecker(str).getLineType() != LineTypeChecker.Type.CHORDS) {\n                    if (comments) {\n                        toAdd = str;\n                    } else {\n                        toAdd = removeComments(str);\n                    }\n                    toAdd = toAdd.replace(\"_\", \"\");\n                }\n            }\n            if (toAdd != null) {\n                ret.add(toAdd);\n            }\n        }\n        return ret.toArray(new String[ret.size()]);\n    }\n\n    /**\n     * Remove comments from a string.\n     *\n     * @param line the line to remove comments from.\n     * @return the string without comments.\n     */\n    private String removeComments(String line) {\n        line = trimFromEnd(line);\n        if (line.toLowerCase().endsWith(\"//lyrics\")) {\n            return line.substring(0, line.indexOf(\"//lyrics\"));\n        }\n        if (line.toLowerCase().endsWith(\"//chords\")) {\n            return line.substring(0, line.indexOf(\"//chords\"));\n        }\n        if (line.toLowerCase().endsWith(\"//title\")) {\n            return line.substring(0, line.indexOf(\"//title\"));\n        }\n        return line;\n    }\n\n    /**\n     * Trim whitespace from the end of the string (but not the start.)\n     *\n     * @param str the string to trim.\n     * @return the trimmed string.\n     */\n    private String trimFromEnd(String str) {\n        int pos = 0;\n        for (int i = str.length() - 1; i >= 0; i--) {\n            if (str.charAt(i) != ' ') {\n                pos = i + 1;\n                break;\n            }\n        }\n        return str.substring(0, pos);\n    }\n\n    /**\n     * Get the small text of the section.\n     *\n     * @return the small text of the section.\n     */\n    public String[] getSmallText() {\n        return Arrays.copyOf(smallLines, smallLines.length);\n    }\n\n    /**\n     * Get the theme of the section.\n     *\n     * @return the theme of the section.\n     */\n    public ThemeDTO getTheme() {\n        return theme;\n    }\n\n    /**\n     * Set the theme of the section.\n     *\n     * @param theme the new theme.\n     */\n    public void setTheme(ThemeDTO theme) {\n        this.theme = theme;\n    }\n\n    /**\n     * Determine if this text section is equal to another object.\n     *\n     * @param obj the other object\n     * @return true if it's equal, false otherwise.\n     */\n    @Override\n    public boolean equals(Object obj) {\n        if (obj == null) {\n            return false;\n        }\n        if (getClass() != obj.getClass()) {\n            return false;\n        }\n        final TextSection other = (TextSection) obj;\n        if (!Arrays.deepEquals(this.lines, other.lines)) {\n            return false;\n        }\n        return true;\n    }\n\n    /**\n     * Generate a hashcode of this text section.\n     *\n     * @return the hashcode.\n     */\n    @Override\n    public int hashCode() {\n        int hash = 3;\n        hash = 47 * hash + Arrays.deepHashCode(this.lines);\n        return hash;\n    }\n\n    /**\n     * Get a string representation of this song section.\n     *\n     * @return a string representation.\n     */\n    @Override\n    public String toString() {\n        StringBuilder ret = new StringBuilder();\n        ret.append(title).append('\\n');\n        for (String str : lines) {\n            ret.append(str).append('\\n');\n        }\n        return ret.toString();\n    }\n\n    /**\n     * Determine whether the first word of each line should be a capital (if\n     * Quelea allows it.)\n     *\n     * @return whether this text section should capitalise the beginning of\n     * every line.\n     */\n    public boolean shouldCapitaliseFirst() {\n        return capitaliseFirst;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/displayable/TimerDisplayable.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data.displayable;\n\nimport java.io.File;\nimport java.io.Serializable;\nimport java.text.ParseException;\nimport java.text.SimpleDateFormat;\nimport java.util.ArrayList;\nimport java.util.Calendar;\nimport java.util.Collection;\nimport java.util.Collections;\nimport java.util.List;\nimport java.util.logging.Level;\n\nimport javafx.geometry.Pos;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport org.quelea.data.Background;\nimport org.quelea.data.ThemeDTO;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.timer.TimerDrawer;\nimport org.w3c.dom.DOMException;\nimport org.w3c.dom.Node;\nimport org.w3c.dom.NodeList;\n\n/**\n * A displayable that's a countdown timer.\n * <p>\n *\n * @author Ben Goodwin\n */\npublic class TimerDisplayable implements MultimediaDisplayable, Serializable {\n\n    private final Background background;\n    private final int seconds;\n    private Pos pos = Pos.CENTER;\n    private final String pretext;\n    private final String posttext;\n    private ThemeDTO theme;\n    private final String location = \"\";\n    private TimerDrawer drawer;\n    private String name = \"\";\n    private Calendar timeToFinish;\n\n    /**\n     * Create a new timer displayable.\n     * <p>\n     *\n     * @param name\n     * @param background The background of the timer\n     * @param seconds    the duration of the countdown timer\n     * @param pretext    any text to go before the timer\n     * @param posttext   and text to go after the timer\n     * @param theme      the theme to use for this displayable when displayed\n     */\n    public TimerDisplayable(String name, Background background, int seconds, String pretext, String posttext, ThemeDTO theme) {\n        this.name = name;\n        this.background = background;\n        this.seconds = seconds;\n        this.pretext = pretext;\n        this.posttext = posttext;\n        this.theme = theme;\n        this.timeToFinish = null;\n    }\n\n    /**\n     * Create a new timer displayable.\n     * <p/>\n     *\n     * @param seconds  the duration of the countdown timer\n     * @param pretext  any text to go before the timer\n     * @param posttext and text to go after the timer\n     * @param theme    the theme to use for this displayable when displayed\n     */\n    public TimerDisplayable(String name, int seconds, String pretext, String posttext, ThemeDTO theme) {\n        this(name, theme.getBackground(), seconds, pretext, posttext, theme);\n    }\n\n    /**\n     * Create a new timer displayable.\n     * <p>\n     *\n     * @param name\n     * @param background   The background of the timer\n     * @param timeToFinish The time to countdown to\n     * @param pretext      any text to go before the timer\n     * @param posttext     and text to go after the timer\n     * @param theme        the theme to use for this displayable when displayed\n     */\n    public TimerDisplayable(String name, Background background, Calendar timeToFinish, String pretext, String posttext, ThemeDTO theme) {\n        this.name = name;\n        this.background = background;\n        this.seconds = -1;\n        this.pretext = pretext;\n        this.posttext = posttext;\n        this.theme = theme;\n        this.timeToFinish = timeToFinish;\n    }\n\n    /**\n     * Create a new timer displayable.\n     * <p/>\n     * @param timeToFinish the time at which the timer will be 0\n     * @param pretext any text to go before the timer\n     * @param posttext and text to go after the timer\n     * @param theme    the theme to use for this displayable when displayed\n     */\n    public TimerDisplayable(String name, Calendar timeToFinish, String pretext, String posttext, ThemeDTO theme) {\n        this(name, theme.getBackground(), timeToFinish, pretext, posttext, theme);\n    }\n\n    /**\n     * Get the displayable location.\n     * <p>\n     *\n     * @return the displayable location.\n     */\n    @Override\n    public String getLocation() {\n        return location;\n    }\n\n    /**\n     * Get the displayable name.\n     * <p>\n     *\n     * @return the displayable name.\n     */\n    @Override\n    public String getName() {\n        if (name != null || !name.equals(\"\")) {\n            return name;\n        } else {\n            if (seconds < 0) {\n                return timeToFinish.get(Calendar.HOUR) + \":\" + (timeToFinish.get(Calendar.MINUTE) > 9 ? \"\" : \"0\") + timeToFinish.get(Calendar.AM_PM) + \" \" + LabelGrabber.INSTANCE.getLabel(\"countdown.label\");\n            } else {\n                return secondsToTime(seconds) + \" \" + LabelGrabber.INSTANCE.getLabel(\"countdown.label\");\n            }\n        }\n    }\n\n    /**\n     * Parse some XML representing this object and return the object it\n     * represents.\n     * <p>\n     *\n     * @param node the XML node representing this object.\n     * @return the object as defined by the XML.\n     */\n    public static TimerDisplayable parseXML(Node node) {\n        NodeList list = node.getChildNodes();\n\n        int i = 0;\n        String name = \"\";\n        int duration = -1;\n        Calendar timeToFinish = null;\n        String pretext, posttext, theme;\n        if (list.getLength() == 5) {\n            i = 1;\n            name = list.item(0).getTextContent();\n        }\n\n        try {\n            duration = Integer.parseInt(list.item(i).getTextContent());\n        } catch (NumberFormatException e) {\n            try {\n                SimpleDateFormat ft = new SimpleDateFormat(\"HH:mm\");\n                Calendar now = Calendar.getInstance();\n                Calendar time = Calendar.getInstance();\n                time.setTime(ft.parse(list.item(i).getTextContent()));\n                time.set(now.get(Calendar.YEAR), now.get(Calendar.MONTH), now.get(Calendar.DATE));\n                timeToFinish = time;\n            } catch (NumberFormatException | ParseException | DOMException ex) {\n                LoggerUtils.getLogger().log(Level.WARNING, \"Could not parse datetime for timer\");\n            }\n        }\n        pretext = list.item(i + 1).getTextContent();\n        posttext = list.item(i + 2).getTextContent();\n        theme = list.item(i + 3).getTextContent();\n        ThemeDTO tempTheme = ThemeDTO.fromString(theme, Collections.emptyMap());\n        if (duration != -1) {\n            return new TimerDisplayable(name, duration, pretext, posttext, tempTheme);\n        } else {\n            return new TimerDisplayable(name, timeToFinish, pretext, posttext, tempTheme);\n        }\n    }\n\n    /**\n     * Get the XML that forms this image displayable.\n     * <p>\n     *\n     * @return the XML.\n     */\n    @Override\n    public String getXML() {\n        StringBuilder ret = new StringBuilder();\n        ret.append(\"<timer>\");\n        ret.append(\"<name>\");\n        ret.append(Utils.escapeXML(getName()));\n        ret.append(\"</name>\");\n        if (seconds != -1) {\n            ret.append(\"<duration>\");\n            ret.append(seconds);\n            ret.append(\"</duration>\");\n        } else {\n            ret.append(\"<time>\");\n            ret.append(timeToFinish.get(Calendar.HOUR_OF_DAY)).append(\":\").append(timeToFinish.get(Calendar.MINUTE));\n            ret.append(\"</time>\");\n        }\n        ret.append(\"<pretext>\");\n        ret.append(Utils.escapeXML(pretext));\n        ret.append(\"</pretext>\");\n        ret.append(\"<posttext>\");\n        ret.append(Utils.escapeXML(posttext));\n        ret.append(\"</posttext>\");\n        ret.append(\"<theme>\");\n        ret.append(theme.asXMLString());\n        ret.append(\"</theme>\");\n        ret.append(\"</timer>\");\n        return ret.toString();\n    }\n\n    /**\n     * Get the preview icon of this video.\n     * <p>\n     *\n     * @return the timer's preview icon.\n     */\n    @Override\n    public ImageView getPreviewIcon() {\n        return new ImageView(new Image(QueleaProperties.get().getUseDarkTheme() ? \"file:icons/timer-small-light.png\" : \"file:icons/timer-small.png\", 30, 30, false, true));\n    }\n\n    /**\n     * Get the preview text for the image.\n     * <p>\n     *\n     * @return the file name.\n     */\n    @Override\n    public String getPreviewText() {\n        return getName();\n    }\n\n    /**\n     * Get any resources this displayable needs.\n     * <p>\n     *\n     * @return the image backing this displayable.\n     */\n    @Override\n    public Collection<File> getResources() {\n        List<File> files = new ArrayList<>();\n        files.addAll(theme.getBackground().getResources());\n        if (theme.getFile() != null) {\n            files.add(theme.getFile());\n        }\n        return files;\n    }\n\n    /**\n     * Determine whether videos support clearing, which they don't.\n     * <p>\n     *\n     * @return false, always.\n     */\n    @Override\n    public boolean supportClear() {\n        return false;\n    }\n\n    @Override\n    public void dispose() {\n        //Nothing needed here.\n    }\n\n    public String secondsToTime(int seconds) {\n        if (seconds < 0) {\n            return \"00:00\";\n        }\n        return seconds / 60 + \":\" + ((seconds % 60) > 9 ? \"\" : \"0\") + seconds % 60;\n    }\n\n    public int getSeconds() {\n        return seconds;\n    }\n\n    public void setTextPosition(Pos posFromIndex) {\n        this.pos = posFromIndex;\n    }\n\n    public Pos getTextPosition() {\n        return pos;\n    }\n\n    public String getPretext() {\n        return pretext;\n    }\n\n    public String getPosttext() {\n        return posttext;\n    }\n\n    public ThemeDTO getTheme() {\n        return theme;\n    }\n\n    public void setTheme(ThemeDTO theme) {\n        this.theme = theme;\n        if (drawer != null) {\n            drawer.setTheme(theme);\n        }\n    }\n\n    public void setDrawer(TimerDrawer drawer) {\n        this.drawer = drawer;\n    }\n\n    public void setName(String name) {\n        this.name = name;\n    }\n\n    public Calendar getTimeToFinish() {\n        return this.timeToFinish;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/displayable/TransferDisplayable.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data.displayable;\n\nimport java.awt.datatransfer.DataFlavor;\nimport java.awt.datatransfer.Transferable;\nimport java.awt.datatransfer.UnsupportedFlavorException;\nimport java.io.IOException;\n\n/**\n * Decorates a displayable by providing transfer options.\n * @author Michael\n */\npublic class TransferDisplayable implements Transferable {\n\n    public static final DataFlavor DISPLAYABLE_FLAVOR = new DataFlavor(Displayable.class, \"Displayable\");\n    private final Displayable displayable;\n\n    /**\n     * Create a new transfer displayable from the given displayable.\n     * @param displayable the displayable to use.\n     */\n    public TransferDisplayable(Displayable displayable) {\n        this.displayable = displayable;\n    }\n\n    /**\n     * @inheritDoc\n     */\n    public DataFlavor[] getTransferDataFlavors() {\n        return new DataFlavor[]{DISPLAYABLE_FLAVOR};\n    }\n\n    /**\n     * @inheritDoc\n     */\n    public boolean isDataFlavorSupported(DataFlavor flavor) {\n        return flavor.equals(DISPLAYABLE_FLAVOR);\n    }\n\n    /**\n     * @inheritDoc\n     * @return the transfer data if the flavor is DISPLAYABLE_FLAVOR, else null.\n     */\n    public Object getTransferData(DataFlavor flavor) throws UnsupportedFlavorException, IOException {\n        if(flavor.equals(DISPLAYABLE_FLAVOR)) {\n            return displayable;\n        }\n        else {\n            return null;\n        }\n    }\n\n    /**\n     * Get the displayable backing this transfer displayable.\n     * @return the displayable backing this transfer displayable.\n     */\n    public Displayable getDisplayable() {\n        return displayable;\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/displayable/VideoDisplayable.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data.displayable;\n\nimport java.io.File;\nimport java.io.Serializable;\nimport java.util.ArrayList;\nimport java.util.Collection;\nimport java.util.List;\nimport java.util.Map;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\nimport org.w3c.dom.Element;\nimport org.w3c.dom.Node;\n\n/**\n * A displayable that's a video.\n * <p>\n * @author Michael\n */\npublic class VideoDisplayable implements MultimediaDisplayable, Serializable {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    private final String location;\n\n    /**\n     * Create a new video displayable.\n     * <p>\n     * @param location the location of the displayable.\n     */\n    public VideoDisplayable(String location) {\n        this.location = location;\n    }\n\n    /**\n     * Get the displayable location.\n     * <p>\n     * @return the displayable location.\n     */\n    @Override\n    public String getLocation() {\n        return location;\n    }\n\n    /**\n     * Get the displayable location (as a file.)\n     * <p>\n     * @return the displayable location (as a file.)\n     */\n    public File getLocationAsFile() {\n        return new File(location);\n    }\n\n    /**\n     * Get the displayable name.\n     * <p>\n     * @return the displayable name.\n     */\n    @Override\n    public String getName() {\n        return new File(location).getName();\n    }\n\n    /**\n     * Parse some XML representing this object and return the object it\n     * represents.\n     * <p>\n     * @param node the XML node representing this object.\n     * @return the object as defined by the XML.\n     */\n    public static VideoDisplayable parseXML(Node node, Map<String, String> fileChanges) {\n        if (node instanceof Element) {\n            String youtubeTitle = ((Element) node).getAttribute(\"youtubetitle\");\n            if (youtubeTitle != null && !youtubeTitle.trim().isEmpty()) {\n                return null; //Youtube no longer supported\n            }\n        }\n        File file = Utils.getChangedFile(node, fileChanges);\n        if (!file.exists()) {\n            LOGGER.log(Level.WARNING, \"Video file {0} doesn't exist.\", file.getAbsolutePath());\n            return null;\n        }\n        return new VideoDisplayable(file.getAbsolutePath());\n    }\n\n    /**\n     * Get the XML that forms this image displayable.\n     * <p>\n     * @return the XML.\n     */\n    @Override\n    public String getXML() {\n        StringBuilder ret = new StringBuilder();\n        ret.append(\"<filevideo>\");\n        if (QueleaProperties.get().getEmbedMediaInScheduleFile()) {\n            ret.append(Utils.escapeXML(Utils.toRelativeStorePath(new File(location))));\n        } else {\n            ret.append(Utils.escapeXML(location));\n        }\n        ret.append(\"</filevideo>\");\n        return ret.toString();\n    }\n\n    /**\n     * Get the preview icon of this video.\n     * <p>\n     * @return the video's preview icon.\n     */\n    @Override\n    public ImageView getPreviewIcon() {\n        if (Utils.fileIsVideo(getLocationAsFile())) {\n            return new ImageView(new Image(\"file:icons/video.png\"));\n        } else {\n            return new ImageView(new Image(\"file:icons/audio30.png\"));\n        }\n    }\n\n    /**\n     * Get the preview text for the image.\n     * <p>\n     * @return the file name.\n     */\n    @Override\n    public String getPreviewText() {\n        return getName();\n    }\n\n    /**\n     * Get any resources this displayable needs.\n     * <p>\n     * @return the image backing this displayable.\n     */\n    @Override\n    public Collection<File> getResources() {\n        List<File> files = new ArrayList<>();\n        files.add(new File(location));\n        return files;\n    }\n\n    /**\n     * Determine whether videos support clearing, which they don't.\n     * <p>\n     * @return false, always.\n     */\n    @Override\n    public boolean supportClear() {\n        return false;\n    }\n\n    @Override\n    public void dispose() {\n        //Nothing needed here.\n    }\n\n    public boolean isVideo() {\n        if (Utils.fileIsVideo(getLocationAsFile())) {\n            return true;\n        } else {\n            return false;\n        }\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/displayable/WebDisplayable.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data.displayable;\n\nimport java.io.File;\nimport java.net.URI;\nimport java.net.URISyntaxException;\nimport java.util.Collection;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport javafx.beans.value.ObservableValue;\nimport javafx.scene.Cursor;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.web.WebEngine;\nimport javafx.scene.web.WebView;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.Utils;\nimport org.w3c.dom.Node;\n\n/**\n * A displayable that's an webpage.\n *\n * @author Arvid\n */\npublic class WebDisplayable implements Displayable {\n\n    public static final int ICON_WIDTH = 60;\n    public static final int ICON_HEIGHT = 60;\n    private String url;\n    private final WebView webView;\n    private final WebEngine webEngine;\n    private double zoomLevel = 1;\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n\n    /**\n     * Create a new web displayable.\n     *\n     * @param url the url for the displayable.\n     */\n    public WebDisplayable(String url) {\n        this.url = url;\n        webView = new WebView();\n        webEngine = webView.getEngine();\n        webEngine.setJavaScriptEnabled(true);\n        webView.setCursor(Cursor.NONE);\n        webView.setZoom(zoomLevel);\n        webEngine.load(getUrl());\n        webEngine.getLoadWorker().exceptionProperty().addListener((ObservableValue<? extends Throwable> ov, Throwable t, Throwable t1) -> {\n            LOGGER.log(Level.WARNING, \"Website loading exception: \", t1);\n        });\n    }\n\n    /**\n     * Get the displayable url.\n     *\n     * @return the displayable image.\n     */\n    public String getUrl() {\n        return url;\n    }\n\n    /**\n     * Parse some XML representing this object and return the object it\n     * represents.\n     *\n     * @param node the XML node representing this object.\n     * @return the object as defined by the XML.\n     */\n    public static WebDisplayable parseXML(Node node) {\n        return new WebDisplayable(node.getTextContent());\n    }\n\n    /**\n     * Get the XML that forms this image displayable.\n     *\n     * @return the XML.\n     */\n    @Override\n    public String getXML() {\n        StringBuilder ret = new StringBuilder();\n        ret.append(\"<url>\");\n        ret.append(Utils.escapeXML(url));\n        ret.append(\"</url>\");\n        return ret.toString();\n    }\n\n    /**\n     * Get the preview icon for this displayable (30x30.)\n     *\n     * @return the preview icon.\n     */\n    @Override\n    public ImageView getPreviewIcon() {\n        ImageView small = new ImageView(new Image(\"file:icons/website.png\"));\n        return small;\n    }\n\n    /**\n     * Get the preview text for the web displayable.\n     *\n     * @return the file name.\n     */\n    @Override\n    public String getPreviewText() {\n        return url;\n    }\n\n    /**\n     * Get any resources this displayable needs\n     *\n     * @return null, nothing is needed.\n     */\n    @Override\n    public Collection<File> getResources() {\n        return null;\n    }\n\n    /**\n     * Webpages don't support clearing of text so false, always.\n     *\n     * @return false, always.\n     */\n    @Override\n    public boolean supportClear() {\n        return false;\n    }\n\n    @Override\n    public void dispose() {\n        // Do nothing to be able to keep the page loaded in the background\n    }\n\n    public void updatePreview() {\n\n    }\n\n    /**\n     * Get the webview for web displayables.\n     *\n     * @return the webview\n     */\n    public WebView getWebView() {\n        return webView;\n    }\n\n    /**\n     * Get the webengine for web displayables.\n     *\n     * @return the webengine\n     */\n    public WebEngine getWebEngine() {\n        return webEngine;\n    }\n\n    public void back() {\n        if (webView.getEngine().getHistory().getCurrentIndex() != 0) {\n            webView.getEngine().getHistory().go(-1);\n        }\n    }\n\n    public void forward() {\n        if (webView.getEngine().getHistory().getCurrentIndex() < webView.getEngine().getHistory().getEntries().size() - 1) {\n            webView.getEngine().getHistory().go(+1);\n        }\n    }\n\n    public void reload() {\n        webEngine.reload();\n    }\n\n    public void setUrl(String url) {\n        url = sanitiseUrl(url);\n        this.url = url;\n        webEngine.load(url);\n    }\n\n    public static String sanitiseUrl(String unsafeUrl) {\n        try {\n            URI uri = new URI(unsafeUrl);\n            if ( uri.getScheme() == null ){\n                uri = new URI(\"http://\"+unsafeUrl);\n            }\n            return uri.toString();\n        }catch(URISyntaxException e){\n            LOGGER.warning(\"Failed to parse url \\\"\"+unsafeUrl+\"\\\" \"+e.getMessage());\n            return \"https://quelea.org/\";\n        }\n    }\n\n    public void zoom(boolean zoomIn) {\n        if (!zoomIn) {\n            zoomLevel = webView.getZoom() * 0.9;\n        } else {\n            zoomLevel = webView.getZoom() * 1.1;\n        }\n        webView.setZoom(zoomLevel);\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/imagegroup/ImageGroup.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data.imagegroup;\n\n/**\n * A common interface for image groups\n * @author Arvid\n */\npublic interface ImageGroup {\n    \n    /**\n     * Get the presentation slide at the given index.\n     * @param index the index of the slide to get.\n     * @return the slide at the given index.\n     */\n    ImageGroupSlide getSlide(int index);\n    \n    /**\n     * Get all the presentation slides in this presentation.\n     * @return an array of all the presentation slides in this presentation,\n     * in order.\n     */\n    ImageGroupSlide[] getSlides();\n    \n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/imagegroup/ImageGroupFactory.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data.imagegroup;\n\nimport java.io.File;\nimport java.io.IOException;\nimport java.util.ArrayList;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.Utils;\n\n/**\n * Responsible for generating an image group\n *\n * @author Arvid\n */\npublic class ImageGroupFactory {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n\n    /**\n     * Generates a image group object from a group of files.\n     *\n     * @param files the files to generate the image group from.\n     * @return the presentation object, or null if a problem occurs.\n     */\n    public ImageGroup getPresentation(File[] files) throws IOException {\n        ArrayList<File> al = new ArrayList<>();\n        for (File f : files) {\n            if (Utils.fileIsImage(f)) {\n                al.add(f);\n            } else {\n                LOGGER.log(Level.WARNING, \"Illegal file type: {0}\", f.getName());\n            }\n        }\n        return new ImageGroupPresentation(al.toArray(new File[al.size()]));\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/imagegroup/ImageGroupPresentation.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data.imagegroup;\n\nimport java.io.File;\nimport java.io.IOException;\nimport java.util.ArrayList;\n\n/**\n * An image group that can be displayed.\n *\n * @author Arvid, based on PresentationDisplayable\n */\npublic class ImageGroupPresentation implements ImageGroup {\n\n    private ImageGroupSlide[] slides;\n    public File[] files;\n\n    /**\n     * Create a presentation from a file.\n     *\n     * @param files the images\n     */\n    public ImageGroupPresentation(File[] files) throws IOException {\n        this.files = files;\n        slides = makeSlides();\n    }\n\n    /**\n     * Get the presentation slide at the given index in the image group.\n     *\n     * @param index the index of the slide.\n     * @return the slide at the given index.\n     */\n    @Override\n    public ImageGroupSlide getSlide(int index) {\n        return slides[index];\n    }\n\n    /**\n     * Get all the slides in the presentation.\n     *\n     * @return all the slides.\n     */\n    @Override\n    public ImageGroupSlide[] getSlides() {\n        return slides;\n    }\n\n    /**\n     * Make the slides that go in this image group, this is what takes time and\n     * should only be done once.\n     *\n     * @return all the slides.\n     */\n    private ImageGroupSlide[] makeSlides() throws IOException {\n        ArrayList<ImageGroupSlide> ret = new ArrayList<>();\n        int i = 0;\n        for (File f : files) {\n            ret.add(new ImageGroupSlide(i + 1, f));\n            i++;\n        }\n        return ret.toArray(new ImageGroupSlide[ret.size()]);\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/imagegroup/ImageGroupSlide.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data.imagegroup;\n\nimport java.io.File;\nimport java.io.IOException;\nimport javafx.scene.image.Image;\n\n/**\n * A slide in an image group.\n *\n * @author Arvid, based on PresentationSlide\n */\npublic class ImageGroupSlide {\n\n    private final Image image;\n\n\n    /**\n     * Create a new image group slide.\n     *\n     * @param numSlide slide number\n     * @param image the name of the file\n     */\n    public ImageGroupSlide(int numSlide, File image) throws IOException {\n        this.image = new Image(image.toURI().toURL().toString());\n    }\n\n    /**\n     * Get the image from this slide.\n     *\n     * @return the image of this slide.\n     */\n    public final Image getImage() {\n        return image;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/pdf/PDFPresentation.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data.pdf;\n\nimport java.io.File;\nimport java.io.IOException;\nimport java.nio.file.Files;\nimport java.nio.file.Path;\nimport java.util.ArrayList;\nimport org.apache.pdfbox.pdmodel.PDDocument;\nimport org.apache.pdfbox.rendering.PDFRenderer;\n\n/**\n * A PDF presentation that can be displayed.\n *\n * @author Arvid\n */\npublic class PDFPresentation implements Pdf {\n\n    private PdfSlide[] slides;\n    public String file;\n\n    /**\n     * Create a presentation from a file.\n     *\n     * @param file the PDF containing the presentation.\n     */\n    public PDFPresentation(String file) throws IOException {\n        this.file = file;\n        slides = makeSlides();\n    }\n\n    /**\n     * Get the presentation slide at the given index in the PDF.\n     *\n     * @param index the index of the slide.\n     * @return the slide at the given index.\n     */\n    @Override\n    public PdfSlide getSlide(int index) {\n        return slides[index];\n    }\n\n    /**\n     * Get all the slides in the presentation.\n     *\n     * @return all the slides.\n     */\n    @Override\n    public PdfSlide[] getSlides() {\n        return slides;\n    }\n\n    /**\n     * Make the slides that go in this PDF, this is what takes time and should\n     * only be done once.\n     *\n     * @return all the slides.\n     */\n    private PdfSlide[] makeSlides() throws IOException {\n        File pdf = new File(file);\n        PDDocument document = PDDocument.load(pdf.getAbsoluteFile());\n        Path f = Files.createTempDirectory(null);\n        f.toFile().deleteOnExit();\n        ArrayList<PdfSlide> ret = new ArrayList<>();\n        PDFRenderer pdfRenderer = new PDFRenderer(document);\n        int totalPages = document.getNumberOfPages();\n        for (int i = 0; i < totalPages; i++) {\n            ret.add(new PdfSlide(i + 1, pdfRenderer));\n        }\n        document.close();\n        return ret.toArray(new PdfSlide[ret.size()]);\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/pdf/Pdf.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data.pdf;\n\n/**\n * A common interface for PDFs.\n * @author Arvid\n */\npublic interface Pdf {\n    \n    /**\n     * Get the presentation slide at the given index.\n     * @param index the index of the slide to get.\n     * @return the slide at the given index.\n     */\n    PdfSlide getSlide(int index);\n    \n    /**\n     * Get all the presentation slides in this presentation.\n     * @return an array of all the presentation slides in this presentation,\n     * in order.\n     */\n    PdfSlide[] getSlides();\n    \n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/pdf/PdfFactory.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data.pdf;\n\nimport java.io.File;\nimport java.io.IOException;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.Utils;\n\n/**\n * Responsible for generating PDF presentations.\n *\n * @author Arvid, based on PresentationFactory\n */\npublic class PdfFactory {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n\n    /**\n     * Generates a PDF presentation object from a file.\n     *\n     * @param file the file to generate the PDF presentation from.\n     * @return the presentation object, or null if a problem occurs.\n     */\n    public Pdf getPresentation(File file) throws IOException {\n        Pdf ret = null;\n        if(Utils.hasExtension(file, \"pdf\")) {\n                ret = new PDFPresentation(file.getAbsolutePath());\n        }\n        else {\n            LOGGER.log(Level.WARNING, \"Illegal file type: {0}\", file.getName());\n        }\n        return ret;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/pdf/PdfSlide.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data.pdf;\n\nimport java.awt.Graphics2D;\nimport java.awt.RenderingHints;\nimport java.awt.image.BufferedImage;\nimport java.io.File;\nimport java.io.IOException;\nimport javafx.scene.image.Image;\nimport javax.imageio.ImageIO;\nimport org.apache.pdfbox.rendering.ImageType;\nimport org.apache.pdfbox.rendering.PDFRenderer;\nimport org.quelea.services.utils.QueleaProperties;\n\n/**\n * A slide in a PDF presentation.\n *\n * @author Arvid\n */\npublic class PdfSlide {\n\n    private BufferedImage thumbnail;\n    private BufferedImage originalImage;\n    private final File outputfile;\n    private final File thumbnailFile;\n    private final int BIG_SIZE = 1920;\n\n    /**\n     * Create a new PDF slide.\n     *\n     * @param numSlide slide number\n     * @param pdfRenderer the renderer of the file\n     */\n    public PdfSlide(int numSlide, PDFRenderer pdfRenderer) throws IOException {\n        originalImage = resizeImage(pdfRenderer.renderImageWithDPI(numSlide - 1, 200, ImageType.RGB), BIG_SIZE, BIG_SIZE);\n        outputfile = File.createTempFile(\"slide\" + numSlide, \".png\");\n        outputfile.deleteOnExit();\n        ImageIO.write(originalImage, \"png\", outputfile);\n\n        thumbnail = resizeImage(originalImage, QueleaProperties.get().getThumbnailSize(), QueleaProperties.get().getThumbnailSize());\n        thumbnailFile = File.createTempFile(\"thumb\" + numSlide, \".png\");\n        thumbnailFile.deleteOnExit();\n        ImageIO.write(thumbnail, \"png\", thumbnailFile);\n        \n        originalImage.flush();\n        originalImage = null;\n        thumbnail.flush();\n        thumbnail = null;\n    }\n\n    /**\n     * Get the image from this slide.\n     *\n     * @return the image of this slide.\n     */\n    public final Image getImage() {\n        return new Image(\"file:\" + outputfile.getAbsolutePath());\n    }\n\n    /**\n     * Get the thumbnail of this slide.\n     *\n     * @return the image of this slide.\n     */\n    public final Image getThumbnail() {\n        return new Image(\"file:\" + thumbnailFile.getAbsolutePath());\n    }\n\n    /**\n     * Scale image to a smaller size of this slide.\n     *\n     * @param originalImage source image to scale\n     * @param width desired width\n     * @param height desired height\n     * @return the resixed image\n     */\n    private BufferedImage resizeImage(BufferedImage originalImage, int width, int height) {\n        int finalw = width;\n        int finalh = height;\n        double factor;\n        if (originalImage.getWidth() > originalImage.getHeight()) {\n            factor = ((double) originalImage.getHeight() / (double) originalImage.getWidth());\n            finalh = (int) (finalw * factor);\n        } else {\n            factor = ((double) originalImage.getWidth() / (double) originalImage.getHeight());\n            finalw = (int) (finalh * factor);\n        }\n\n        BufferedImage scaledImage = new BufferedImage(finalw, finalh, BufferedImage.TYPE_INT_RGB);\n        Graphics2D g2 = scaledImage.createGraphics();\n        g2.setRenderingHint(RenderingHints.KEY_INTERPOLATION, RenderingHints.VALUE_INTERPOLATION_BILINEAR);\n        g2.drawImage(originalImage, 0, 0, finalw, finalh, null);\n        g2.dispose();\n        return scaledImage;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/powerpoint/OOPresentation.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data.powerpoint;\n\nimport com.sun.star.animations.XAnimationNode;\nimport com.sun.star.awt.PosSize;\nimport com.sun.star.beans.PropertyValue;\nimport com.sun.star.beans.PropertyVetoException;\nimport com.sun.star.beans.UnknownPropertyException;\nimport com.sun.star.bridge.XBridge;\nimport com.sun.star.bridge.XBridgeFactory;\nimport com.sun.star.comp.helper.Bootstrap;\nimport com.sun.star.comp.helper.BootstrapException;\nimport com.sun.star.connection.XConnection;\nimport com.sun.star.connection.XConnector;\nimport com.sun.star.document.XEventBroadcaster;\nimport com.sun.star.document.XEventListener;\nimport com.sun.star.frame.XComponentLoader;\nimport com.sun.star.frame.XController;\nimport com.sun.star.frame.XModel;\nimport com.sun.star.lang.DisposedException;\nimport com.sun.star.lang.EventObject;\nimport com.sun.star.lang.IllegalArgumentException;\nimport com.sun.star.lang.WrappedTargetException;\nimport com.sun.star.lang.XComponent;\nimport com.sun.star.lang.XMultiComponentFactory;\nimport com.sun.star.presentation.XPresentation;\nimport com.sun.star.presentation.XPresentation2;\nimport com.sun.star.presentation.XPresentationSupplier;\nimport com.sun.star.presentation.XSlideShowController;\nimport com.sun.star.presentation.XSlideShowListener;\nimport com.sun.star.sdbc.SQLException;\nimport com.sun.star.sdbc.XCloseable;\nimport com.sun.star.uno.UnoRuntime;\nimport com.sun.star.uno.XComponentContext;\nimport java.io.File;\nimport java.io.IOException;\nimport java.util.ArrayList;\nimport java.util.List;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport ooo.connector.BootstrapSocketConnector;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\n\n/**\n * A presentation to be displayed using the openoffice API. This requries\n * openoffice to be installed.\n *\n * @author Michael\n */\npublic class OOPresentation implements XEventListener {\n\n    private static final Logger LOGGER = Logger.getLogger(OOPresentation.class.getName());\n    private static XComponentContext xOfficeContext;\n    private static boolean init;\n    private XPresentation2 xPresentation;\n    private XSlideShowController controller;\n    private XComponent doc;\n    private boolean disposed;\n    private List<SlideChangedListener> slideListeners;\n\n    /**\n     * Initialise the library - this involves connecting to openoffice to\n     * initialise the office context object (which is used to create\n     * presentations.)\n     *\n     * @param ooPath the path to the the \"program\" folder inside the openoffice\n     * directory.\n     * @return true if successfully initialised, false if an error occurs.\n     */\n    public static boolean init(String ooPath) {\n        try {\n            xOfficeContext = Helper.connect(ooPath);\n            init = true;\n            LOGGER.log(Level.INFO, \"Openoffice initialised ok\");\n            return true;\n        } catch (BootstrapException ex) {\n            LOGGER.log(Level.SEVERE, \"Couldn't connect to openoffice instance\", ex);\n            return false;\n        } catch (Exception ex) {\n            LOGGER.log(Level.SEVERE, \"Couldn't connect to openoffice instance\", ex);\n            return false;\n        }\n\n    }\n\n    public static void closeOOApp() {\n        Helper.dispose();\n    }\n\n    /**\n     * Determine if the library is initialised.\n     *\n     * @return true if it's already initialised, false otherwise.\n     */\n    public static boolean isInit() {\n        return init;\n    }\n\n    /**\n     * Create a new presentation from a particular file. This must be the path\n     * to a presentation file that openoffice supports - so either odp, ppt or\n     * pptx at the time of writing. Note that the static init() method on this\n     * class must be called successfully before attempting to create any\n     * presentation objects, otherwise an IllegalStateException will be thrown.\n     *\n     * @param file the path to the presentation file.\n     * @throws Exception if something goes wrong creating the presentation.\n     */\n    public OOPresentation(String file) throws Exception {\n        if (!init) {\n            LOGGER.log(Level.SEVERE, \"BUG: Tried to create OOPresentation before it was initialised\");\n            throw new IllegalStateException(\"I'm not initialised yet! init() needs to be called before creating presentations.\");\n        }\n        slideListeners = new ArrayList<>();\n        File sourceFile = new File(file);\n        StringBuilder sURL = new StringBuilder(\"file:///\");\n        sURL.append(sourceFile.getCanonicalPath().replace('\\\\', '/'));\n        PropertyValue[] props = new PropertyValue[1];\n        props[0] = new PropertyValue();\n        props[0].Name = \"Silent\";\n        props[0].Value = true;\n\n        doc = Helper.createDocument(xOfficeContext, sURL.toString(), \"_blank\", 0, props);\n        XModel xModel = UnoRuntime.queryInterface(XModel.class, doc);\n        XEventBroadcaster xDocEventBroadcaster = UnoRuntime.queryInterface(com.sun.star.document.XEventBroadcaster.class, xModel);\n        xDocEventBroadcaster.addEventListener(this);\n        xModel.getCurrentController().getFrame().getContainerWindow().setPosSize(0, 0, 1, 1, PosSize.SIZE);\n        xModel.getCurrentController().getFrame().getContainerWindow().setVisible(false);\n        XPresentationSupplier xPresSupplier = UnoRuntime.queryInterface(XPresentationSupplier.class, doc);\n        XPresentation xPresentation_ = xPresSupplier.getPresentation();\n        xPresentation = UnoRuntime.queryInterface(XPresentation2.class, xPresentation_);\n\n        Runtime.getRuntime().addShutdownHook(new Thread() {\n            @Override\n            public void run() {\n                checkDisposed();\n            }\n        });\n\n    }\n\n    /**\n     * Add a slide listener to this presentation.\n     *\n     * @param listener the listener to add.\n     */\n    public void setSlideListener(SlideChangedListener listener) {\n        slideListeners.clear();\n        slideListeners.add(listener);\n    }\n\n    /**\n     * Start the presentation, displaying it in a full screen window.\n     *\n     * @param display the 0 based index of the display to display the\n     * presentation on.\n     */\n    public void start(int display) {\n        if (display < 0) {\n            LOGGER.log(Level.INFO, \"Not starting presentation, negative display selected\");\n            return;\n        }\n        display++; //Openoffice requires base 1, we want base 0.\n        try {\n            xPresentation.setPropertyValue(\"Display\", display);\n            xPresentation.setPropertyValue(\"IsAutomatic\", true);\n            xPresentation.setPropertyValue(\"StartWithNavigator\", true);\n            if (QueleaProperties.get().getOOPresOnTop()) {\n                xPresentation.setPropertyValue(\"IsAlwaysOnTop\", true);\n            }\n        } catch (UnknownPropertyException | PropertyVetoException | IllegalArgumentException | WrappedTargetException ex) {\n            LOGGER.log(Level.SEVERE, \"Error setting presentation properties\", ex);\n        }\n        if (!xPresentation.isRunning()) {\n            xPresentation.start();\n        }\n        while (controller == null) { //Block until we get a controller.\n            controller = xPresentation.getController();\n            Utils.sleep(50);\n        }\n        controller.addSlideShowListener(new XSlideShowListener() {\n            @Override\n            public void paused() {\n            }\n\n            @Override\n            public void resumed() {\n            }\n\n            @Override\n            public void slideTransitionStarted() {\n                for (SlideChangedListener listener : slideListeners) {\n                    listener.slideChanged(controller.getCurrentSlideIndex());\n                }\n            }\n\n            @Override\n            public void slideTransitionEnded() {\n//                System.out.println(\"slide transition end\");\n            }\n\n            @Override\n            public void slideAnimationsEnded() {\n//                System.out.println(\"slide animations end\");\n            }\n\n            @Override\n            public void slideEnded(boolean bln) {\n//                System.out.println(\"slide end\");\n            }\n\n            @Override\n            public void hyperLinkClicked(String string) {\n//                throw new UnsupportedOperationException(\"Not supported yet.\");\n            }\n\n            @Override\n            public void beginEvent(XAnimationNode xan) {\n//                System.out.println(\"begin event\");\n            }\n\n            @Override\n            public void endEvent(XAnimationNode xan) {\n//                System.out.println(\"end event\");\n            }\n\n            @Override\n            public void repeat(XAnimationNode xan, int i) {\n//                System.out.println(\"repeat\");\n            }\n\n            @Override\n            public void disposing(EventObject eo) {\n//                System.out.println(\"disposing\");\n            }\n        });\n    }\n\n    /**\n     * Determine if this presentation is running.\n     *\n     * @return true if its running, false otherwise.\n     */\n    public boolean isRunning() {\n        if (xPresentation != null) {\n            return xPresentation.isRunning();\n        } else {\n            return false;\n        }\n    }\n\n    /**\n     * Stop the presentation if it's running.\n     */\n    public void stop() {\n        if (controller != null) {\n            xPresentation.end();\n            controller.deactivate();\n            controller = null;\n        }\n    }\n\n    /**\n     * Advance forward one step. This will involve either advancing to the next\n     * animation in the slide, or advancing to the next slide (depending on the\n     * presentation.)\n     */\n    public void goForward() {\n        if (controller != null && controller.getNextSlideIndex() != -1) {\n            int idx = controller.getCurrentSlideIndex();\n            controller.gotoNextEffect();\n            Utils.sleep(50);\n            if(controller.getCurrentSlideIndex()!=idx) {\n                controller.gotoSlideIndex(controller.getCurrentSlideIndex());\n            }\n            Utils.sleep(50);\n        }\n    }\n\n    /**\n     * Go backwards one step.\n     */\n    public void goBack() {\n        if (controller != null) {\n            controller.gotoPreviousEffect();\n            Utils.sleep(50);\n        }\n    }\n\n    /**\n     * Navigate directly to the slide at the given index.\n     *\n     * @param index the index of the slide to navigate to.\n     */\n    public void gotoSlide(int index) {\n        if (controller != null) {\n            controller.gotoSlideIndex(index);\n        }\n    }\n\n    /**\n     * Clear up this presentation, releasing all the resources associated with\n     * it (all the underlying OO library objects.) This must be called before\n     * this presentation is eligible for GC to prevent memory leaks. In the\n     * event that it isn't called before it's garbage collected, a warning will\n     * be printed since this should be classed as a bug.\n     */\n    public void dispose() {\n        if (!disposed) {\n            if (controller != null && controller.isActive()) {\n                controller.deactivate();\n            }\n            if (xPresentation != null) {\n                xPresentation.end();\n            }\n            if (doc != null) {\n                XCloseable xcloseable = UnoRuntime.queryInterface(XCloseable.class, doc);\n                try {\n                    if (xcloseable != null) {\n                        xcloseable.close();\n                    }\n                } catch (SQLException ex) {\n                    LOGGER.log(Level.WARNING, \"Error occured when closing presentation\", ex);\n                }\n                doc.dispose();\n            }\n            disposed = true;\n        }\n    }\n\n    /**\n     * If the object hasn't been disposed, clean it up at this point and display\n     * a warning.\n     *\n     * @throws Throwable if something goes wrong in finalisation.\n     */\n    @Override\n    @SuppressWarnings( \"deprecation\" )\n    protected void finalize() throws Throwable {\n        super.finalize();\n        checkDisposed();\n    }\n\n    /**\n     * If the object hasn't been disposed, clean it up at this point and display\n     * a warning.\n     */\n    private void checkDisposed() {\n        if (!disposed) {\n            LOGGER.log(Level.WARNING, \"BUG: Presentation was not correctly disposed!\");\n            dispose();\n        }\n    }\n\n    @Override\n    public void disposing(EventObject ev) {\n        //Nothing needed here\n    }\n\n    @Override\n    public void notifyEvent(com.sun.star.document.EventObject ev) {\n        XModel xModel = UnoRuntime.queryInterface(XModel.class, ev.Source);\n        XController xController = xModel.getCurrentController();\n        xController.getFrame().getContainerWindow().setEnable(false);\n    }\n\n    /**\n     * Helper methods for doing openoffice specific stuff.\n     */\n    private static class Helper {\n\n        private static XComponent bridgeComponent;\n        private static XBridge bridge;\n        private static XConnection connection;\n        public static final String DEFAULT_HOST = \"localhost\";\n        public static final int DEFAULT_PORT = 8100;\n        public static final String RUN_ARGS = \"socket,host=\" + DEFAULT_HOST + \",port=\" + DEFAULT_PORT + \",tcpNoDelay=1\";\n\n        /**\n         * Connect to an office, if no office is running a new instance is\n         * started. A new connection is established and the service manger from\n         * the running office is returned.\n         *\n         * @param path the path to the openoffice install.\n         */\n        private static XComponentContext connect(String path) throws Exception {\n            File progPath = new File(path, \"program\");\n            xOfficeContext = BootstrapSocketConnector.bootstrap(progPath.getAbsolutePath());\n            XComponentContext localContext = Bootstrap.createInitialComponentContext(null);\n            XMultiComponentFactory localServiceManager = localContext.getServiceManager();\n            XConnector connector = UnoRuntime.queryInterface(XConnector.class,\n                    localServiceManager.createInstanceWithContext(\"com.sun.star.connection.Connector\",\n                            localContext));\n            connection = connector.connect(RUN_ARGS);\n            XBridgeFactory bridgeFactory = UnoRuntime.queryInterface(XBridgeFactory.class,\n                    localServiceManager.createInstanceWithContext(\"com.sun.star.bridge.BridgeFactory\", localContext));\n            bridge = bridgeFactory.createBridge(\"\", \"urp\", connection, null);\n            bridgeComponent = UnoRuntime.queryInterface(XComponent.class, bridge);\n            bridgeComponent.addEventListener(new com.sun.star.lang.XEventListener() {\n                @Override\n                public void disposing(EventObject eo) {\n                }\n            });\n            return xOfficeContext;\n\n        }\n\n        public static void dispose() {\n            try {\n                if (bridgeComponent != null) {\n                    connection.flush();\n                    connection.close();\n                    bridgeComponent.dispose();\n                    bridgeComponent = null;\n                    try {\n                        Process p = Runtime.getRuntime().exec(\"taskkill /F /IM soffice.bin\");\n                        //@todo the only way to kill this process. to be added other system support\n                    } catch (IOException e) {\n                    }\n\n                }\n            } catch (DisposedException | com.sun.star.io.IOException ex) {\n                throw new RuntimeException(ex.getMessage());\n            }\n        }\n\n        /**\n         * Creates and instantiates a new document\n         *\n         * @throws Exception if something goes wrong creating the document.\n         */\n        private static XComponent createDocument(XComponentContext xOfficeContext, String sURL, String sTargetFrame, int nSearchFlags, PropertyValue[] aArgs) throws Exception {\n            XComponentLoader aLoader = UnoRuntime.queryInterface(XComponentLoader.class, xOfficeContext.getServiceManager().createInstanceWithContext(\"com.sun.star.frame.Desktop\", xOfficeContext));\n            XComponent xComponent = UnoRuntime.queryInterface(XComponent.class, aLoader.loadComponentFromURL(sURL, sTargetFrame, nSearchFlags, aArgs));\n\n            if (xComponent == null) {\n                throw new Exception(\"Could not create document: \" + sURL);\n            }\n            return xComponent;\n        }\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/powerpoint/OOUtils.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data.powerpoint;\n\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport javafx.application.Platform;\nimport org.javafx.dialog.Dialog;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\n\n/**\n * Static methods useful for the openoffice world of presentations.\n *\n * @author Michael\n */\npublic class OOUtils {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n\n    /**\n     * No instantiation.\n     */\n    private OOUtils() {\n        throw new AssertionError();\n    }\n\n    /**\n     * Attempt to initialise the openoffice presentation system, if the relevant\n     * properties are set. If initialisation fails an appropriate message will\n     * be displayed to the user.\n     */\n    public static void attemptInit() {\n        if (QueleaProperties.get().getUseOO()) {\n            LOGGER.log(Level.INFO, \"Setting up openoffice\");\n            OOPresentation.init(QueleaProperties.get().getOOPath());\n            if (OOPresentation.isInit()) {\n                LOGGER.log(Level.INFO, \"Successfully set up openoffice\");\n            } else {\n                LOGGER.log(Level.INFO, \"Failed to set up openoffice\");\n                Platform.runLater(() -> {\n                    Dialog.showWarning(LabelGrabber.INSTANCE.getLabel(\"setup.oo.failed.title\"), LabelGrabber.INSTANCE.getLabel(\"setup.oo.failed.text\"));\n                });\n            }\n        } else {\n            LOGGER.log(Level.INFO, \"Not setting up openoffice, option not selected\");\n        }\n    }\n\n    public static void closeOOApp() {\n        OOPresentation.closeOOApp();\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/powerpoint/PPTPresentation.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data.powerpoint;\n\nimport java.io.File;\nimport java.io.FileInputStream;\nimport java.io.IOException;\nimport java.util.List;\nimport org.apache.poi.hslf.usermodel.HSLFSlide;\nimport org.apache.poi.hslf.usermodel.HSLFSlideShow;\nimport org.apache.poi.xslf.usermodel.XMLSlideShow;\n\n/**\n * A presentation that can be displayed. At the moment represents a powerpoint\n * presentation though other formats may be supported in future.\n *\n * @author Michael\n */\npublic class PPTPresentation implements Presentation {\n\n    private HSLFSlideShow slideshow;\n    private PresentationSlide[] slides;\n\n    /**\n     * Create a presentation from a file.\n     *\n     * @param file the file containing the presentation.\n     */\n    public PPTPresentation(String file) throws IOException {\n        try(FileInputStream fis = new FileInputStream(file)) {\n            slideshow = new HSLFSlideShow(fis);\n            slides = makeSlides();\n        }\n    }\n\n    /**\n     * Get the presentation slide at the given index in the presentation.\n     *\n     * @param index the index of the slide.\n     * @return the slide at the given index.\n     */\n    @Override\n    public PresentationSlide getSlide(int index) {\n        return slides[index];\n    }\n\n    /**\n     * Get all the slides in the presentation.\n     *\n     * @return all the slides.\n     */\n    @Override\n    public PresentationSlide[] getSlides() {\n        return slides;\n    }\n\n    /**\n     * Make the slides that go in this presentation, this is what takes time and\n     * should only be done once.\n     *\n     * @return all the slides.\n     */\n    private PresentationSlide[] makeSlides() {\n        List<HSLFSlide> lSlides = slideshow.getSlides();\n        PresentationSlide[] ret = new PresentationSlide[lSlides.size()];\n        for (int i = 0; i < lSlides.size(); i++) {\n            ret[i] = new PresentationSlide(lSlides.get(i), i + 1);\n        }\n        return ret;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/powerpoint/PPTXPresentation.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data.powerpoint;\n\nimport java.io.File;\nimport java.io.FileInputStream;\nimport java.io.IOException;\nimport java.util.ArrayList;\nimport java.util.List;\nimport org.apache.poi.xslf.usermodel.XMLSlideShow;\nimport org.apache.poi.xslf.usermodel.XSLFSlide;\n\n/**\n * A presentation that uses the newer PPTX file format.\n *\n * @author Michael\n */\npublic class PPTXPresentation implements Presentation {\n\n    private XMLSlideShow slideshow;\n    private PresentationSlide[] slides;\n\n    /**\n     * Create a new XML presentation.\n     *\n     * @param file the file containing the presentation.\n     */\n    public PPTXPresentation(String file) throws IOException {\n        try(FileInputStream fis = new FileInputStream(file)) {\n            slideshow = new XMLSlideShow(fis);\n            slides = makeSlides();\n        }\n    }\n\n    /**\n     * Get the presentation slide at the given index in the presentation.\n     *\n     * @param index the index of the slide.\n     * @return the slide at the given index.\n     */\n    @Override\n    public PresentationSlide getSlide(int index) {\n        return slides[index];\n    }\n\n    /**\n     * Get all the slides in the presentation.\n     *\n     * @return all the slides.\n     */\n    @Override\n    public PresentationSlide[] getSlides() {\n        return slides;\n    }\n\n    /**\n     * Make the slides that go in this presentation, this is what takes time and\n     * should only be done once.\n     *\n     * @return all the slides.\n     */\n    private PresentationSlide[] makeSlides() {\n        List<XSLFSlide> lSlides = slideshow.getSlides();\n        ArrayList<PresentationSlide> ret = new ArrayList<>();\n        for (int i = 0; i < lSlides.size(); i++) {\n            if (lSlides.get(i) != null) {\n                ret.add(new PresentationSlide(lSlides.get(i), i + 1));\n            }\n        }\n        return ret.toArray(new PresentationSlide[ret.size()]);\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/powerpoint/Presentation.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data.powerpoint;\n\n/**\n * A common interface for different presentation types.\n * @author mjrb5\n */\npublic interface Presentation {\n    \n    /**\n     * Get the presentation slide at the given index.\n     * @param index the index of the slide to get.\n     * @return the slide at the given index.\n     */\n    PresentationSlide getSlide(int index);\n    \n    /**\n     * Get all the presentation slides in this presentation.\n     * @return an array of all the presentation slides in this presentation,\n     * in order.\n     */\n    PresentationSlide[] getSlides();\n    \n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/powerpoint/PresentationFactory.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data.powerpoint;\n\nimport java.io.File;\nimport java.io.IOException;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport org.apache.poi.poifs.filesystem.OfficeXmlFileException;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.Utils;\n\n/**\n * Responsible for generating presentations.\n *\n * @author mjrb5\n */\npublic class PresentationFactory {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n\n    /**\n     * Generates a presentation object from a file.\n     *\n     * @param file the file to generate the presentation from.\n     * @return the presentation object, or null if a problem occurs.\n     */\n    public Presentation getPresentation(File file) throws IOException {\n        Presentation ret = null;\n        if(Utils.hasExtension(file, \"ppt\") || Utils.hasExtension(file, \"pptx\")) {\n            try {\n                ret = new PPTPresentation(file.getAbsolutePath());\n            }\n            catch(OfficeXmlFileException ex) {\n                ret = new PPTXPresentation(file.getAbsolutePath());\n            }\n        }\n        else {\n            LOGGER.log(Level.WARNING, \"Illegal file type: {0}\", file.getName());\n        }\n        return ret;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/powerpoint/PresentationSlide.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data.powerpoint;\n\nimport java.awt.Color;\nimport java.awt.Dimension;\nimport java.awt.Font;\nimport java.awt.Graphics2D;\nimport java.awt.RenderingHints;\nimport java.awt.geom.AffineTransform;\nimport java.awt.image.BufferedImage;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport javafx.embed.swing.SwingFXUtils;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.WritableImage;\nimport org.apache.poi.sl.usermodel.Slide;\nimport org.apache.poi.sl.usermodel.SlideShow;\nimport org.apache.poi.xslf.usermodel.XSLFSlide;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\n\n/**\n * A slide in a powerpoint presentation.\n *\n * @author Michael\n */\npublic class PresentationSlide {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    private WritableImage image;\n    private static final int WIDTH = 1920;\n    private static final int HEIGHT = 1080;\n    private static double scaleWidth = 0;\n    private static double scaleHeight = 0;\n\n    /**\n     * Create a new presentation slide.\n     *\n     * @param slide the underlying apache POI slide.\n     */\n    public PresentationSlide(Slide slide, int numSlide) {\n        SlideShow slideshow = slide.getSlideShow();\n        if (Math.abs(slideshow.getPageSize().getHeight() - HEIGHT) > 0.1) {\n            int adjustHeight = HEIGHT;\n            int adjustWidth = (int) ((adjustHeight / slideshow.getPageSize().getHeight()) * slideshow.getPageSize().getWidth());\n            scaleWidth = (double) adjustWidth / slideshow.getPageSize().getWidth();\n            scaleHeight = (double) adjustHeight / slideshow.getPageSize().getHeight();\n            slideshow.setPageSize(new Dimension(adjustWidth, adjustHeight));\n        }\n        BufferedImage originalImage = new BufferedImage((int) slideshow.getPageSize().getWidth(), (int) slideshow.getPageSize().getHeight(), BufferedImage.TYPE_INT_ARGB);\n        Graphics2D g2 = originalImage.createGraphics();\n        g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);\n        try {\n            g2.setTransform(AffineTransform.getScaleInstance(scaleWidth, scaleHeight));\n            slide.draw(g2);\n        } catch (Exception ex) {\n            if (QueleaProperties.get().getUsePP()) {\n                LOGGER.log(Level.INFO, \"Couldn't use library to generate thumbnail, using default\");\n                draw(g2, originalImage.getWidth(), originalImage.getHeight(), numSlide);\n            } else {\n                throw ex;\n            }\n        }\n        image = new WritableImage(originalImage.getWidth(), originalImage.getHeight());\n        SwingFXUtils.toFXImage(originalImage, image);\n        originalImage.flush();\n        originalImage = null;\n    }\n\n    /**\n     * Create a new presentation slide.\n     *\n     * @param slide the underlying apache POI slide.\n     */\n    public PresentationSlide(XSLFSlide slide, int numSlide) {\n        org.apache.poi.xslf.usermodel.XMLSlideShow slideshow = slide.getSlideShow();\n        if (Math.abs(slideshow.getPageSize().getHeight() - HEIGHT) > 0.1) {\n            int adjustHeight = HEIGHT;\n            int adjustWidth = (int) ((adjustHeight / slideshow.getPageSize().getHeight()) * slideshow.getPageSize().getWidth());\n            scaleWidth = (double) adjustWidth / slideshow.getPageSize().getWidth();\n            scaleHeight = (double) adjustHeight / slideshow.getPageSize().getHeight();\n            slideshow.setPageSize(new Dimension(adjustWidth, adjustHeight));\n        }\n        BufferedImage originalImage = new BufferedImage((int) slideshow.getPageSize().getWidth(), (int) slideshow.getPageSize().getHeight(), BufferedImage.TYPE_INT_ARGB);\n        Graphics2D g2 = originalImage.createGraphics();\n        g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);\n        try {\n            g2.setTransform(AffineTransform.getScaleInstance(scaleWidth, scaleHeight));\n            slide.draw(g2);\n        } catch (NullPointerException ex) {\n            if (QueleaProperties.get().getUsePP()) {\n                LOGGER.log(Level.INFO, \"Couldn't use library to generate thumbnail, using default\");\n                draw(g2, originalImage.getWidth(), originalImage.getHeight(), numSlide);\n            } else {\n                throw ex;\n            }\n        }\n        image = new WritableImage(originalImage.getWidth(), originalImage.getHeight());\n        SwingFXUtils.toFXImage(originalImage, image);\n    }\n\n    private void draw(Graphics2D graphics, int width, int height, int num) {\n        String slideText = LabelGrabber.INSTANCE.getLabel(\"preview.failed\");\n        graphics.setColor(new Color(174, 167, 159));\n        graphics.fillRect(0, 0, width, height);\n        graphics.setFont(new Font(\"Calibri\", Font.PLAIN, 1000));\n        graphics.setColor(new Color(250, 250, 250));\n        while (graphics.getFontMetrics().stringWidth(slideText) > width - 1000) {\n            graphics.setFont(new Font(\"Calibri\", Font.PLAIN, graphics.getFont().getSize() - 2));\n        }\n        graphics.drawString(slideText, 10, height / 2 - graphics.getFontMetrics().getHeight() / 4);\n    }\n\n    /**\n     * Get the image from this slide.\n     *\n     * @return the image of this slide.\n     */\n    public final Image getImage() {\n        return image;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/data/powerpoint/SlideChangedListener.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.data.powerpoint;\n\n/**\n * An interface called when a running presentation slide is updated.\n *\n * @author Michael\n */\npublic interface SlideChangedListener {\n\n    /**\n     * Called to indicate that a slide has changed.\n     *\n     * @param newSlideIndex the 0 based index of the new slide that is now being\n     * displayed.\n     */\n    void slideChanged(int newSlideIndex);\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/server/AutoDetectServer.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.server;\n\nimport com.sun.net.httpserver.HttpExchange;\nimport com.sun.net.httpserver.HttpHandler;\nimport com.sun.net.httpserver.HttpServer;\nimport java.io.IOException;\nimport java.io.OutputStream;\nimport java.net.InetSocketAddress;\nimport org.quelea.windows.main.QueleaApp;\n\n/**\n * The mobile lyrics server, responsible for handling the mobile HTTP calls and\n * pushing out the correct content.\n * <p>\n * @author Michael\n */\npublic class AutoDetectServer {\n\n    private final HttpServer server;\n    private boolean running;\n\n    /**\n     * Create a new mobile lyrics server on a specified port. The port must not\n     * be in use.\n     * <p>\n     * @param port the port to use\n     * @throws IOException if something goes wrong.\n     */\n    public AutoDetectServer(int port) throws IOException {\n        server = HttpServer.create(new InetSocketAddress(port), 0);\n        server.createContext(\"/\", new RootHandler());\n    }\n\n    /**\n     * Start the server.\n     */\n    public void start() {\n        if (server != null) {\n            server.start();\n            running = true;\n        }\n    }\n\n    /**\n     * Stop the server. If the server is stopped, it cannot be restarted - a new\n     * server must be created.\n     */\n    public void stop() {\n        if (server != null) {\n            running = false;\n            server.stop(0);\n        }\n    }\n\n    /**\n     * Determine if the server is running.\n     * <p>\n     * @return true if the server is running, false otherwise.\n     */\n    public boolean isRunning() {\n        return running;\n    }\n\n    private class RootHandler implements HttpHandler {\n\n        @Override\n        public void handle(HttpExchange t) throws IOException {\n            String response;\n            response = \"\" + QueleaApp.get().getMainWindow().getPreferencesDialog().getOptionsServerSettingsPanel().getLyricsPreference().getMLURL() + \"\\n\";\n            response = response + QueleaApp.get().getMainWindow().getPreferencesDialog().getOptionsServerSettingsPanel().getRemotePreference().getRCURL();\n            t.sendResponseHeaders(200, response.length());\n            try (OutputStream os = t.getResponseBody()) {\n                os.write(response.getBytes());\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/server/MobileLyricsServer.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.server;\n\nimport com.sun.net.httpserver.HttpExchange;\nimport com.sun.net.httpserver.HttpHandler;\nimport com.sun.net.httpserver.HttpServer;\nimport java.io.IOException;\nimport java.io.OutputStream;\nimport java.io.UnsupportedEncodingException;\nimport java.net.InetSocketAddress;\nimport java.net.URLDecoder;\nimport java.nio.ByteBuffer;\nimport java.nio.charset.Charset;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\nimport java.util.ArrayList;\nimport java.util.HashMap;\nimport java.util.List;\nimport java.util.Map;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport org.quelea.data.bible.BibleBook;\nimport org.quelea.data.displayable.BiblePassage;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.data.displayable.TextDisplayable;\nimport org.quelea.data.displayable.TextSection;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.LineTypeChecker;\nimport org.quelea.services.utils.LineTypeChecker.Type;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.utils.Chord;\nimport org.quelea.windows.library.LibraryBiblePanel;\nimport org.quelea.windows.main.LivePanel;\nimport org.quelea.windows.main.MainPanel;\nimport org.quelea.windows.main.QueleaApp;\n\n/**\n * The mobile lyrics server, responsible for handling the mobile HTTP calls and\n * pushing out the correct content.\n * <p>\n * @author Michael\n */\npublic class MobileLyricsServer {\n\n    private static final boolean USE_CACHE = true;\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    private final HttpServer server;\n    private boolean running;\n    private String pageContent;\n    private final Map<String, byte[]> fileCache;\n    private String text = \"\";\n\n    /**\n     * Create a new mobile lyrics server on a specified port. The port must not\n     * be in use.\n     * <p>\n     * @param port the port to use\n     * @throws IOException if something goes wrong.\n     */\n    public MobileLyricsServer(int port) throws IOException {\n        fileCache = new HashMap<>();\n        server = HttpServer.create(new InetSocketAddress(port), 0);\n        server.createContext(\"/\", new RootHandler());\n        server.createContext(\"/lyrics\", new LyricsHandler());\n        server.createContext(\"/chords\", new ChordsHandler());\n        server.createContext(\"/chordsv2\", new ChordsHandlerv2());\n        server.createContext(\"/title\", new TitleHandler());\n        server.createContext(\"/songtranslations\", new SongTranslationsHandler());\n        server.createContext(\"/gettranslation\", new SongTranslationsHandler());\n        server.createContext(\"/livetext\", new LiveTextHandler());\n        server.createContext(\"/jscolor.js\", new FileHandler(\"icons/jscolor.js\"));\n        server.createContext(\"/arrow.gif\", new FileHandler(\"icons/arrow.gif\"));\n        server.createContext(\"/gear.png\", new FileHandler(\"icons/gear.png\"));\n        server.createContext(\"/translate.png\", new FileHandler(\"icons/translate_on.png\"));\n        server.createContext(\"/cross.gif\", new FileHandler(\"icons/cross.gif\"));\n        server.createContext(\"/hs.png\", new FileHandler(\"icons/hs.png\"));\n        server.createContext(\"/hv.png\", new FileHandler(\"icons/hv.png\"));\n        server.setExecutor(null);\n    }\n\n    /**\n     * Start the server.\n     */\n    public void start() {\n        if (server != null) {\n            server.start();\n            running = true;\n        }\n    }\n\n    /**\n     * Stop the server. If the server is stopped, it cannot be restarted - a new\n     * server must be created.\n     */\n    public void stop() {\n        if (server != null) {\n            running = false;\n            server.stop(0);\n        }\n    }\n\n    /**\n     * Determine if the server is running.\n     * <p>\n     * @return true if the server is running, false otherwise.\n     */\n    public boolean isRunning() {\n        return running;\n    }\n\n    private String sortLabels(String content) {\n        content = content.replace(\"[loading.text]\", LabelGrabber.INSTANCE.getLabel(\"loading.text\"));\n        content = content.replace(\"[font.colour.label]\", LabelGrabber.INSTANCE.getLabel(\"font.colour.label\"));\n        content = content.replace(\"[background.colour.label]\", LabelGrabber.INSTANCE.getLabel(\"background.colour.label\"));\n        content = content.replace(\"[change.graphics.label]\", LabelGrabber.INSTANCE.getLabel(\"change.graphics.label\"));\n        content = content.replace(\"[show.chords.label]\", LabelGrabber.INSTANCE.getLabel(\"stage.show.chords\"));\n        content = content.replace(\"[default.translation]\", LabelGrabber.INSTANCE.getLabel(\"default.translation.label\"));\n        content = content.replace(\"[select.language]\", LabelGrabber.INSTANCE.getLabel(\"translation.choice.title\"));\n        return content;\n    }\n\n    private class RootHandler implements HttpHandler {\n\n        @Override\n        public void handle(HttpExchange t) throws IOException {\n            if (pageContent == null || !USE_CACHE) {\n                pageContent = readFile(\"server/defaultpage.htm\");\n                pageContent = sortLabels(pageContent);\n            }\n            byte[] bytes = pageContent.getBytes(Charset.forName(\"UTF-8\"));\n            t.getResponseHeaders().add(\"Cache-Control\", \"no-cache, no-store, must-revalidate\");\n            t.getResponseHeaders().add(\"Access-Control-Allow-Origin\", \"*\");\n            t.sendResponseHeaders(200, bytes.length);\n            try (OutputStream os = t.getResponseBody()) {\n                os.write(bytes);\n            }\n        }\n\n    }\n\n    private class FileHandler implements HttpHandler {\n\n        private String file;\n\n        public FileHandler(String file) {\n            this.file = file;\n        }\n\n        @Override\n        public void handle(HttpExchange t) throws IOException {\n            byte[] ret = fileCache.get(file);\n            if (ret == null) {\n                ret = Files.readAllBytes(Paths.get(file));\n                if (USE_CACHE) {\n                    fileCache.put(file, ret);\n                }\n            }\n            t.sendResponseHeaders(200, ret.length);\n            try (OutputStream os = t.getResponseBody()) {\n                os.write(ret);\n            }\n        }\n\n    }\n\n    private class LyricsHandler implements HttpHandler {\n\n        @Override\n        public void handle(HttpExchange t) throws IOException {\n            String response;\n            if (t.getRequestURI().toString().contains(\"all\")) {\n                response = allLyrics();\n            } else {\n                response = getLyrics(false);\n            }\n            byte[] bytes = response.getBytes(\"UTF-8\");\n            t.getResponseHeaders().add(\"Cache-Control\", \"no-cache, no-store, must-revalidate\");\n            t.getResponseHeaders().add(\"Access-Control-Allow-Origin\", \"*\");\n            t.sendResponseHeaders(200, bytes.length);\n            try (OutputStream os = t.getResponseBody()) {\n                os.write(bytes);\n            }\n        }\n    }\n\n    private class ChordsHandlerv2 implements HttpHandler {\n\n        @Override\n        public void handle(HttpExchange t) throws IOException {\n            String[] arr = getRawLiveLyrics();\n            List<Chord> chords = new ArrayList<>();\n            StringBuilder html = new StringBuilder();\n            for (int i = 0; i < arr.length; i++) {\n                String line = arr[i];\n                if (new LineTypeChecker(line).getLineType() == Type.CHORDS && i < arr.length - 1) {\n                    chords = Chord.getChordsFromLine(line);\n                } else {\n                    html.append(mergeChords(line, chords));\n                    html.append(\"\\n\");\n                    chords = null;\n                }\n            }\n            \n            byte[] bytes = html.toString().getBytes(\"UTF-8\");\n            t.getResponseHeaders().add(\"Cache-Control\", \"no-cache, no-store, must-revalidate\");\n            t.getResponseHeaders().add(\"Access-Control-Allow-Origin\", \"*\");\n            t.sendResponseHeaders(200, bytes.length);\n            try (OutputStream os = t.getResponseBody()) {\n                os.write(bytes);\n            }\n        }\n        \n        private String mergeChords(String line, List<Chord> chords) {\n            if (chords == null || chords.isEmpty()) {\n                return line;\n            }\n\n            String ret = \"<div class=\\\"line\\\">\";\n            int chordidx = 0;\n            boolean initialWhitespace = true;\n            Chord chord = chords.get(chordidx);\n            for (int i = 0; i < line.length(); i++) {\n                if (line.charAt(i) != ' ') {\n                    initialWhitespace = false;\n                }\n                if (chord != null && i == chord.getIdx()) {\n                    ret += \"<span class=\\\"chord\\\">\" + chord.getChord() + \"</span>\";\n                    chordidx++;\n                    if (chordidx < chords.size()) {\n                        chord = chords.get(chordidx);\n                    } else {\n                        chord = null;\n                    }\n                }\n                if(initialWhitespace && line.charAt(i)==' ') {\n                    ret += \"\\u2000\";\n                }\n                else {\n                    ret += line.charAt(i);                    \n                }\n            }\n            while (chordidx < chords.size()) {\n                ret += \"<span class=\\\"chord\\\">\" + chords.get(chordidx++).getChord() + \"</span>\";\n            }\n            ret += \"</div>\";\n            return ret;\n        }\n    }\n\n    private class ChordsHandler implements HttpHandler {\n\n        @Override\n        public void handle(HttpExchange t) throws IOException {\n            String response = getLyrics(true);\n            byte[] bytes = response.getBytes(\"UTF-8\");\n            t.getResponseHeaders().add(\"Cache-Control\", \"no-cache, no-store, must-revalidate\");\n            t.getResponseHeaders().add(\"Access-Control-Allow-Origin\", \"*\");\n            t.sendResponseHeaders(200, bytes.length);\n            try (OutputStream os = t.getResponseBody()) {\n                os.write(bytes);\n            }\n        }\n    }\n\n    private class LiveTextHandler implements HttpHandler {\n\n        @Override\n        public void handle(HttpExchange t) throws IOException {\n            String response = getText();\n            byte[] bytes = response.getBytes(\"UTF-8\");\n            t.getResponseHeaders().add(\"Cache-Control\", \"no-cache, no-store, must-revalidate\");\n            t.getResponseHeaders().add(\"Access-Control-Allow-Origin\", \"*\");\n            t.sendResponseHeaders(200, bytes.length);\n            try (OutputStream os = t.getResponseBody()) {\n                os.write(bytes);\n            }\n        }\n    }\n\n    private class TitleHandler implements HttpHandler {\n\n        @Override\n        public void handle(HttpExchange t) throws IOException {\n            String response = getTitle();\n            byte[] bytes = response.getBytes(\"UTF-8\");\n            t.getResponseHeaders().add(\"Cache-Control\", \"no-cache, no-store, must-revalidate\");\n            t.getResponseHeaders().add(\"Access-Control-Allow-Origin\", \"*\");\n            t.sendResponseHeaders(200, bytes.length);\n            try (OutputStream os = t.getResponseBody()) {\n                os.write(bytes);\n            }\n        }\n    }\n\n    private class SongTranslationsHandler implements HttpHandler {\n\n        @Override\n        public void handle(HttpExchange he) throws IOException {\n            String response = \"\";\n            LivePanel lp = QueleaApp.get().getMainWindow().getMainPanel().getLivePanel();\n            if (running && lp.getDisplayable() instanceof TextDisplayable) {\n                if (he.getRequestURI().toString().contains(\"/songtranslations\")) {\n                    response = listSongTranslations(he);\n                } else {\n                    response = getSongTranslation(he);\n                }\n                if (getLyrics(false).equals(\"\")) {\n                    response = \"\";\n                }\n            }\n            he.getResponseHeaders().add(\"Cache-Control\", \"no-cache, no-store, must-revalidate\");\n            he.getResponseHeaders().add(\"Access-Control-Allow-Origin\", \"*\");\n            he.sendResponseHeaders(200, response.getBytes(Charset.forName(\"UTF-8\")).length);\n            OutputStream os = he.getResponseBody();\n            os.write(response.getBytes(Charset.forName(\"UTF-8\")));\n            os.close();\n        }\n    }\n    \n    private String[] getRawLiveLyrics() {\n        try {\n            if (!checkInitialised()) {\n                return new String[0];\n            }\n            LivePanel lp = QueleaApp.get().getMainWindow().getMainPanel().getLivePanel();\n            if (running && lp.isContentShowing() && lp.getDisplayable() instanceof TextDisplayable) {\n                TextSection currentSection = lp.getLyricsPanel().getLyricsList().getSelectionModel().getSelectedItem();\n                return currentSection.getText(true, false);\n            } else {\n                return new String[0];\n            }\n        } catch (Exception ex) {\n            LOGGER.log(Level.WARNING, \"Error getting lyrics\", ex);\n            return new String[0];\n        }\n    }\n\n    private String getLyrics(boolean chords) {\n        try {\n            if (!checkInitialised()) {\n                return \"\";\n            }\n            LivePanel lp = QueleaApp.get().getMainWindow().getMainPanel().getLivePanel();\n            if (running && lp.isContentShowing() && lp.getDisplayable() instanceof TextDisplayable) {\n                TextSection currentSection = lp.getLyricsPanel().getLyricsList().getSelectionModel().getSelectedItem();\n                StringBuilder ret = new StringBuilder();\n                for (String line : currentSection.getText(chords, false)) {\n                    if (lp.getDisplayable() instanceof BiblePassage) {\n                        ret.append(\"<span class=\\\"bible\\\">\").append(line);\n                    } else if (new LineTypeChecker(line).getLineType() == LineTypeChecker.Type.CHORDS) {\n                        ret.append(\"<span class=\\\"chord\\\">\").append(line.replace(\" \", \"&#160;\"));\n                    } else if (new LineTypeChecker(line).getLineType() == LineTypeChecker.Type.TITLE) {\n                        ret.append(\"<span class=\\\"title\\\">\").append(line);\n                    } else {\n                        ret.append(\"<span class=\\\"lyric\\\">\").append(line);\n                    }\n                    ret.append(\"</span>\").append(\"<br/>\");\n                }\n//                if(chords) {\n//                    return ret.toString().replace(\" \", \"&#160;\");\n//                }\n                return ret.toString();\n            } else {\n                return \"\";\n            }\n        } catch (Exception ex) {\n            LOGGER.log(Level.WARNING, \"Error getting lyrics\", ex);\n            return \"\";\n        }\n    }\n\n    public String allLyrics() {\n        StringBuilder sb = new StringBuilder();\n        sb.append(\"<div id=\\\"outer\\\">\");\n        int i = 0;\n        for (String lyricBlock : getAllLyrics()) {\n            if (i == RCHandler.currentLyricSection()) {\n                sb.append(\"<div class=\\\"inner current\\\">\");\n            } else {\n                sb.append(\"<div class=\\\"inner\\\">\");\n            }\n            sb.append(lyricBlock);\n            sb.append(\"</div>\");\n            i++;\n        }\n        sb.append(\"</div>\");\n        return sb.toString();\n    }\n\n    //Method returns all lyrics as an ArrayList of slides\n    private List<String> getAllLyrics() {\n        try {\n            if (!checkInitialised()) {\n                List<String> tmp = new ArrayList<>();\n                tmp.add(\"\");\n                return tmp;\n            }\n            LivePanel lp = QueleaApp.get().getMainWindow().getMainPanel().getLivePanel();\n            if (running && lp.getDisplayable() instanceof TextDisplayable) {\n                ArrayList<String> als = new ArrayList<>();\n                lp.getLyricsPanel().getLyricsList().getItems().stream().map((currentSection) -> {\n                    StringBuilder ret = new StringBuilder();\n                    for (String line : currentSection.getText(false, false)) {\n                        ret.append(\"<span class=\\\"lyric\\\">\").append(line).append(\"</span>\").append(\"<br/>\");\n                    }\n                    return ret;\n                }).forEach((ret) -> {\n                    als.add(ret.toString());\n                });\n                return als;\n            } else {\n                String response = \"<i>\" + LabelGrabber.INSTANCE.getLabel(\"remote.empty.lyrics\") + \"</i>\";\n                ArrayList<String> als = new ArrayList<>();\n                als.add(response);\n                return als;\n            }\n        } catch (Exception ex) {\n            LOGGER.log(Level.WARNING, \"Error getting lyrics\", ex);\n            return null;\n        }\n    }\n\n    private String getTitle() {\n        try {\n            if (!checkInitialised()) {\n                return \"\";\n            }\n            LivePanel lp = QueleaApp.get().getMainWindow().getMainPanel().getLivePanel();\n            if (running && lp.isContentShowing() && lp.getDisplayable() instanceof TextDisplayable) {\n                String response = lp.getDisplayable().getPreviewText();\n                if (lp.getDisplayable() instanceof BiblePassage) {\n                    final LibraryBiblePanel lbp = QueleaApp.get().getMainWindow().getMainPanel().getLibraryPanel().getBiblePanel();\n                    int chapterPos = 0;\n\n                    for (int i = 1; i < response.length(); i++) {\n                        char c = response.charAt(i);\n                        if (Character.isDigit(c)) {\n                            chapterPos = i - 1;\n                            break;\n                        }\n                    }\n                    String bible = response.substring(response.indexOf(\"\\n\") + 1);\n                    String book = response.substring(0, chapterPos);\n                    int bookNumber = 0;\n                    int bibleNumber = 0;\n\n                    for (int i = 0; i < lbp.getBibleSelector().getItems().size(); i++) {\n                        if (lbp.getBibleSelector().getItems().get(i).toString().toLowerCase().contains(bible.toLowerCase())) {\n                            bibleNumber = i;\n                        }\n                    }\n\n                    BibleBook[] books = lbp.getBibleSelector().getItems().get(bibleNumber).getBooks();\n                    for (int i = 0; i < books.length; i++) {\n                        if (books[i].getBookName().equalsIgnoreCase(book)) {\n                            bookNumber = i + 1;\n                        }\n                    }\n\n                    response = bookNumber + \"<br/>\" + response;\n                }\n                return response;\n            } else {\n                return \"\";\n            }\n        } catch (Exception ex) {\n            LOGGER.log(Level.WARNING, \"Error getting title\", ex);\n            return \"\";\n        }\n    }\n\n    public static String listSongTranslations(HttpExchange he) {\n        StringBuilder ret = new StringBuilder();\n        final MainPanel p = QueleaApp.get().getMainWindow().getMainPanel();\n        int current = p.getSchedulePanel().getScheduleList().getItems().indexOf(p.getLivePanel().getDisplayable());\n        SongDisplayable d = ((SongDisplayable) QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getScheduleList().getItems().get(current).displayable());\n        for (String b : d.getTranslations().keySet()) {\n            ret.append(b).append(\"\\n\");\n        }\n        if (d.getTranslations().size() < 1) {\n            ret.append(\"None\");\n        }\n        return ret.toString();\n    }\n\n    public static String getSongTranslation(HttpExchange he) throws UnsupportedEncodingException {\n        String language;\n        StringBuilder lyrics = new StringBuilder();\n        StringBuilder sb = new StringBuilder();\n        if (he.getRequestURI().toString().contains(\"/gettranslation/\")) {\n            String uri = URLDecoder.decode(he.getRequestURI().toString(), \"UTF-8\");\n            language = uri.split(\"/gettranslation/\", 2)[1];\n            final MainPanel p = QueleaApp.get().getMainWindow().getMainPanel();\n            int currentSong = p.getSchedulePanel().getScheduleList().getItems().indexOf(p.getLivePanel().getDisplayable());\n            SongDisplayable d = ((SongDisplayable) QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getScheduleList().getItems().get(currentSong).displayable());\n            for (String b : d.getTranslations().keySet()) {\n                if (b.equals(language)) {\n                    lyrics.append(d.getTranslations().get(language));\n                }\n            }\n            String[] translation = lyrics.toString().split(\"\\n\\n\");\n\n            int i = 0;\n            for (String currentSlide : translation) {\n                if (i == RCHandler.currentLyricSection()) {\n                    sb.append(\"<div class=\\\"inner current\\\">\");\n                    sb.append(currentSlide);\n                    sb.append(\"</div>\");\n                }\n                i++;\n            }\n        }\n        return sb.toString().replaceAll(\"\\n\", \"<br/>\");\n    }\n\n    public String getText() {\n        return text;\n    }\n    \n    public void setText(String text) {\n        this.text = text;\n    }\n\n    /**\n     * A bunch of checks to check whether the live panel that we grab the lyrics\n     * from has fully initialised. Rather hacky but works for now at least.\n     * <p>\n     * @return true if we're initialised properly and ok to continue, false if\n     * not.\n     */\n    private boolean checkInitialised() {\n        if (QueleaApp.get() == null) {\n            return false;\n        }\n        if (QueleaApp.get().getMainWindow() == null) {\n            return false;\n        }\n        if (QueleaApp.get().getMainWindow().getMainPanel() == null) {\n            return false;\n        }\n        if (QueleaApp.get().getMainWindow().getMainPanel().getLivePanel() == null) {\n            return false;\n        }\n        if (QueleaApp.get().getMainWindow().getMainPanel().getLivePanel() == null) {\n            return false;\n        }\n        if (QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().getLyricsPanel() == null) {\n            return false;\n        }\n        if (QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().getLyricsPanel().getLyricsList() == null) {\n            return false;\n        }\n        if (QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().getLyricsPanel().getLyricsList().getSelectionModel() == null) {\n            return false;\n        }\n        if (QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().getLyricsPanel().getLyricsList().getSelectionModel().getSelectedItem() == null) {\n            return false;\n        }\n        return true;\n    }\n\n    /**\n     * Read a file and return it as a string.\n     * <p>\n     * @param path the path to read the file from.\n     * @return a string with the file contents.\n     * @throws IOException if something goes wrong.\n     */\n    private static String readFile(String path) throws IOException {\n        byte[] encoded = Files.readAllBytes(Paths.get(path));\n        return Charset.forName(\"UTF-8\").decode(ByteBuffer.wrap(encoded)).toString();\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/server/RCHandler.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.server;\n\nimport com.sun.net.httpserver.HttpExchange;\n\nimport java.awt.image.BufferedImage;\nimport java.io.ByteArrayOutputStream;\nimport java.io.IOException;\nimport java.io.UnsupportedEncodingException;\nimport java.net.URLDecoder;\nimport java.util.ArrayList;\nimport java.util.Arrays;\nimport java.util.TreeSet;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport java.util.regex.Pattern;\n\nimport javafx.application.Platform;\nimport javafx.embed.swing.SwingFXUtils;\n\nimport javax.imageio.ImageIO;\n\nimport org.quelea.data.ThemeDTO;\nimport org.quelea.data.bible.Bible;\nimport org.quelea.data.bible.BibleBook;\nimport org.quelea.data.db.SongManager;\nimport org.quelea.data.displayable.Displayable;\nimport org.quelea.data.displayable.ImageGroupDisplayable;\nimport org.quelea.data.displayable.PdfDisplayable;\nimport org.quelea.data.displayable.PresentationDisplayable;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.data.displayable.TimerDisplayable;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.lucene.SongSearchIndex;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.utils.ThemeUtils;\nimport org.quelea.windows.library.LibraryBiblePanel;\nimport org.quelea.windows.main.LivePanel;\nimport org.quelea.windows.main.MainPanel;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.windows.main.actionhandlers.RecordingsHandler;\nimport org.quelea.windows.main.schedule.ScheduleList;\nimport org.quelea.windows.main.schedule.ScheduleThemeNode;\nimport org.quelea.windows.main.toolbars.MainToolbar;\nimport org.quelea.windows.newsong.SongEntryWindow;\n\n/**\n * Handles the RemoteControlServer commands.\n *\n * @author Ben Goodwin\n */\npublic class RCHandler {\n\n    private static final ArrayList<String> devices = new ArrayList<>();\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n\n    public static void logo() {\n        Platform.runLater(QueleaApp.get().getMainWindow().getMainPanel().getLivePanel()::toggleLogo);\n    }\n\n    public static void black() {\n        Platform.runLater(QueleaApp.get().getMainWindow().getMainPanel().getLivePanel()::toggleBlack);\n    }\n\n    public static void clear() {\n        Platform.runLater(QueleaApp.get().getMainWindow().getMainPanel().getLivePanel()::toggleClear);\n\n    }\n\n    public static void next() {\n        Platform.runLater(QueleaApp.get().getMainWindow().getMainPanel().getLivePanel()::advance);\n    }\n\n    public static void prev() {\n        Platform.runLater(QueleaApp.get().getMainWindow().getMainPanel().getLivePanel()::previous);\n\n    }\n\n    public static void nextItem() {\n        Platform.runLater(() -> {\n            final MainPanel p = QueleaApp.get().getMainWindow().getMainPanel();\n            int current = p.getSchedulePanel().getScheduleList().getItems().indexOf(p.getLivePanel().getDisplayable());\n            current++;\n            p.getSchedulePanel().getScheduleList().getSelectionModel().clearSelection();\n            if (current < p.getSchedulePanel().getScheduleList().getItems().size()) {\n                p.getSchedulePanel().getScheduleList().getSelectionModel().select(current);\n            } else {\n                p.getSchedulePanel().getScheduleList().getSelectionModel().select(p.getSchedulePanel().getScheduleList().getItems().size() - 1);\n            }\n            p.getPreviewPanel().goLive();\n        });\n    }\n\n    public static void prevItem() {\n        Platform.runLater(() -> {\n            final MainPanel p = QueleaApp.get().getMainWindow().getMainPanel();\n            int current = p.getSchedulePanel().getScheduleList().getItems().indexOf(p.getLivePanel().getDisplayable());\n            current--;\n            p.getSchedulePanel().getScheduleList().getSelectionModel().clearSelection();\n            p.getSchedulePanel().getScheduleList().getSelectionModel().select(Math.max(current,0));\n            p.getPreviewPanel().goLive();\n        });\n    }\n\n    public static void gotoItem(String index) {\n        Platform.runLater(() -> {\n            final MainPanel p = QueleaApp.get().getMainWindow().getMainPanel();\n            p.getSchedulePanel().getScheduleList().getSelectionModel().clearSelection();\n            int item = Integer.parseInt(index.split(\"gotoitem\")[1]);\n            if (item < p.getSchedulePanel().getScheduleList().getItems().size()) {\n                p.getSchedulePanel().getScheduleList().getSelectionModel().select(item);\n            } else {\n                p.getSchedulePanel().getScheduleList().getSelectionModel().select(p.getSchedulePanel().getScheduleList().getItems().size() - 1);\n            }\n            p.getPreviewPanel().goLive();\n        });\n    }\n\n    public static void moveUp(String index) {\n        int item = Integer.parseInt(index.split(\"moveup/\")[1]);\n        Platform.runLater(() -> {\n            final MainPanel p = QueleaApp.get().getMainWindow().getMainPanel();\n            p.getSchedulePanel().getScheduleList().getSelectionModel().select(item);\n            QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getScheduleList().moveCurrentItem(ScheduleList.Direction.UP);\n        });\n    }\n\n    public static void moveDown(String index) {\n        int item = Integer.parseInt(index.split(\"movedown/\")[1]);\n        Platform.runLater(() -> {\n            final MainPanel p = QueleaApp.get().getMainWindow().getMainPanel();\n            p.getSchedulePanel().getScheduleList().getSelectionModel().select(item);\n            QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getScheduleList().moveCurrentItem(ScheduleList.Direction.DOWN);\n        });\n    }\n\n    public static int currentLyricSection() {\n        return QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().getLyricsPanel().getCurrentIndex();\n    }\n\n    public static void setLyrics(final String index) {\n        Platform.runLater(() -> {\n            int num = Integer.parseInt(index.split(\"section\")[1]);\n            LivePanel lp = QueleaApp.get().getMainWindow().getMainPanel().getLivePanel();\n            if (lp.getDisplayable() instanceof PresentationDisplayable) {\n                lp.getPresentationPanel().getPresentationPreview().select(num + 1);\n            } else if (lp.getDisplayable() instanceof PdfDisplayable) {\n                lp.getPdfPanel().getPresentationPreview().select(num + 1);\n            } else if (lp.getDisplayable() instanceof ImageGroupDisplayable) {\n                lp.getImageGroupPanel().getPresentationPreview().select(num + 1);\n            } else {\n                lp.getLyricsPanel().select(num);\n            }\n        });\n    }\n\n    public static boolean authenticate(final String password) {\n        return password.equals(QueleaProperties.get().getRemoteControlPassword());\n    }\n\n    public static void addDevice(String ip) {\n        devices.add(ip);\n    }\n\n    public static boolean isLoggedOn(String ip) {\n        boolean found = false;\n        for (String s : devices) {\n            if (s.equals(ip)) {\n                found = true;\n            }\n        }\n        return found;\n    }\n\n    public static void logout(String ip) {\n        devices.remove(ip);\n    }\n\n    public static void logAllOut() {\n        devices.clear();\n    }\n\n    public static boolean getLogo() {\n        return QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().getLogoed();\n    }\n\n    public static boolean getBlack() {\n        return QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().getBlacked();\n    }\n\n    public static boolean getClear() {\n        return QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().getCleared();\n    }\n\n    public static String videoStatus() {\n        LivePanel lp = QueleaApp.get().getMainWindow().getMainPanel().getLivePanel();\n        if (lp.getDisplayable() instanceof TimerDisplayable) {\n            if (lp.getTimerPanel().status()) {\n                return LabelGrabber.INSTANCE.getLabel(\"pause\");\n            } else {\n                return LabelGrabber.INSTANCE.getLabel(\"play\");\n            }\n        }\n        return LabelGrabber.INSTANCE.getLabel(\"play\");\n//        else if (lp.getVideoPanel().isPlaying()) {\n//            return LabelGrabber.INSTANCE.getLabel(\"pause\");\n//        } else {\n//            return LabelGrabber.INSTANCE.getLabel(\"play\");\n//        }\n    }\n\n    public static void play() {\n        LivePanel lp = QueleaApp.get().getMainWindow().getMainPanel().getLivePanel();\n        if (lp.getDisplayable() instanceof TimerDisplayable) {\n            lp.getTimerPanel().togglePause();\n        }\n    }\n\n    static void record() {\n        MainToolbar toolbar = QueleaApp.get().getMainWindow().getMainToolbar();\n        RecordingsHandler recHandler = toolbar.getRecordButtonHandler().getRecordingsHandler();\n        if (toolbar.getRecordButtonHandler() != null && recHandler != null) {\n            if (recHandler.getIsRecording()) {\n                Utils.fxRunAndWait(() -> {\n                    toolbar.stopRecording();\n                });\n            } else {\n                Utils.fxRunAndWait(() -> {\n                    toolbar.startRecording();\n                });\n            }\n        } else {\n            Utils.fxRunAndWait(() -> {\n                toolbar.startRecording();\n            });\n        }\n    }\n\n    public static String schedule() {\n        Displayable preview = QueleaApp.get().getMainWindow().getMainPanel().getPreviewPanel().getDisplayable();\n        Displayable live = QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().getDisplayable();\n\n        String display = \"<!DOCTYPE html>\\n<html>\\n<head>\\n<meta charset=\\\"UTF-8\\\">\\n</head>\\n\";\n        for (int i = 0; i < QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getScheduleList().getItems().size(); i++) {\n            Displayable d = ((Displayable) QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getScheduleList().getItems().get(i).displayable());\n            if (d.equals(preview)) {\n                display += \"<i>\";\n            }\n            if (d.equals(live)) {\n                display += \"<b>\";\n            }\n            display += d.getPreviewText().replace(\"\\n\", \" - \");\n            if (d.equals(live)) {\n                display += \"</b>\";\n            }\n            if (d.equals(preview)) {\n                display += \"</i>\";\n            }\n            display += \"<br/>\";\n        }\n        display += \"</html>\";\n        return display;\n    }\n\n    public static String databaseSearch(HttpExchange he) throws IOException {\n        String searchString;\n        if (he.getRequestURI().toString().contains(\"/search/\")) {\n            String uri = URLDecoder.decode(he.getRequestURI().toString(), \"UTF-8\");\n            searchString = uri.split(\"/search/\", 2)[1];\n            TreeSet<SongDisplayable> songs = new TreeSet<>();\n            if (searchString == null || searchString.trim().isEmpty() || Pattern.compile(\"[^\\\\w ]\", Pattern.UNICODE_CHARACTER_CLASS).matcher(searchString).replaceAll(\"\").isEmpty()) {\n                return LabelGrabber.INSTANCE.getLabel(\"invalid.search\");\n            } else {\n                SongDisplayable[] titleSongs = SongManager.get().getIndex().filter(searchString, SongSearchIndex.FilterType.TITLE);\n                for (SongDisplayable song : titleSongs) {\n                    song.setLastSearch(searchString);\n                    songs.add(song);\n                }\n\n                SongDisplayable[] lyricSongs = SongManager.get().getIndex().filter(searchString, SongSearchIndex.FilterType.BODY);\n                for (SongDisplayable song : lyricSongs) {\n                    song.setLastSearch(null);\n                    songs.add(song);\n                }\n\n                SongDisplayable[] authorSongs = SongManager.get().getIndex().filter(searchString, SongSearchIndex.FilterType.AUTHOR);\n                songs.addAll(Arrays.asList(authorSongs));\n            }\n\n            StringBuilder response = new StringBuilder();\n            response.append(\"<!DOCTYPE html><html>\");\n            response.append(\"<head><meta charset=\\\"UTF-8\\\"></head>\");\n            for (SongDisplayable sd : songs) {\n                response.append(\"<a href=\\\"/song/\").append(sd.getID()).append(\"\\\">\");\n                response.append(sd.getTitle()).append(\" - \").append(sd.getAuthor());\n                response.append(\"</a>\").append(\"<br/>\");\n            }\n            response.append(\"</html>\");\n            return response.toString();\n        } else {\n            return \"\";\n        }\n    }\n\n    public static String addSongToSchedule(HttpExchange he) {\n        String songIDString;\n        long songID;\n        if (he.getRequestURI().toString().contains(\"/add/\")) {\n            songIDString = he.getRequestURI().toString().split(\"/add/\", 2)[1];\n            songID = Long.parseLong(songIDString);\n            SongDisplayable sd = SongManager.get().getIndex().getByID(songID);\n\n            if (QueleaProperties.get().getUseDefaultTranslation()) {\n                String defaultTranslation = QueleaProperties.get().getDefaultTranslationName();\n                if (defaultTranslation != null && !defaultTranslation.trim().isEmpty()) {\n                    sd.setCurrentTranslationLyrics(defaultTranslation);\n                }\n            }\n            Utils.fxRunAndWait(() -> {\n                QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getScheduleList().add(sd);\n            });\n\n            return LabelGrabber.INSTANCE.getLabel(\"rcs.add.success\");\n        }\n        return LabelGrabber.INSTANCE.getLabel(\"rcs.add.failed\");\n    }\n\n    public static String removeItemFromSchedule(HttpExchange he) {\n        String songIDString;\n        int songID;\n        if (he.getRequestURI().toString().contains(\"/remove/\")) {\n            final MainPanel p = QueleaApp.get().getMainWindow().getMainPanel();\n            songIDString = he.getRequestURI().toString().split(\"/remove/\", 2)[1];\n            songID = Integer.parseInt(songIDString);\n\n            Utils.fxRunAndWait(() -> {\n                p.getSchedulePanel().getScheduleList().getSelectionModel().select(songID);\n                QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getScheduleList().removeCurrentItem();\n            });\n\n            return LabelGrabber.INSTANCE.getLabel(\"Item removal was succsessful\");\n        }\n        return LabelGrabber.INSTANCE.getLabel(\"Item removal failed\");\n    }\n\n    public static String songDisplay(HttpExchange he) {\n        String songIDString;\n        long songID;\n        if (he.getRequestURI().toString().contains(\"/song/\")) {\n            songIDString = he.getRequestURI().toString().split(\"/song/\")[1];\n            songID = Long.parseLong(songIDString);\n            if (SongManager.get().getIndex().getByID(songID) != null) {\n                SongDisplayable sd = SongManager.get().getIndex().getByID(songID);\n                StringBuilder response = new StringBuilder();\n                response.append(\"<!DOCTYPE html><html>\");\n                response.append(\"<head><meta charset=\\\"UTF-8\\\"></head>\");\n                response.append(sd.getTitle()).append(\"<br/>\");\n                response.append(sd.getAuthor()).append(\"<br/><br/>\");\n                response.append(sd.getLyrics(false, false, true).replaceAll(\"\\n\", \"<br/>\")).append(\"<br/><br/>\");\n                response.append(\"<a href=\\\"/add/\").append(songID).append(\"\\\">\").append(LabelGrabber.INSTANCE.getLabel(\"rcs.add.song\")).append(\"</a>\");\n                response.append(\"</html>\");\n                return response.toString();\n            }\n        }\n        return \"\";\n    }\n\n    public static String addBiblePassage(HttpExchange he) throws UnsupportedEncodingException {\n        String searchString;\n        if (he.getRequestURI().toString().contains(\"/addbible/\")) {\n            String uri = URLDecoder.decode(he.getRequestURI().toString(), \"UTF-8\");\n            searchString = uri.split(\"/addbible/\")[1];\n            String translation = searchString.split(\"/\")[0];\n            String book = searchString.split(\"/\")[1];\n            String cv = searchString.split(\"/\")[2];\n            String error = LabelGrabber.INSTANCE.getLabel(\"rcs.add.bible.error\").replace(\"$1\", book + \" \" + cv);\n            final LibraryBiblePanel lbp = QueleaApp.get().getMainWindow().getMainPanel().getLibraryPanel().getBiblePanel();\n            boolean success = false;\n            for (int i = 0; i < lbp.getBibleSelector().getItems().size(); i++) {\n                if (lbp.getBibleSelector().getItems().get(i).getBibleName().replaceAll(\"/\", \" - \").equalsIgnoreCase(translation)) {\n                    final int j = i;\n                    Utils.fxRunAndWait(() -> {\n                        lbp.getBibleSelector().selectionModelProperty().get().clearAndSelect(j);\n                    });\n                    success = true;\n                }\n            }\n            if (!success) {\n                return error;\n            }\n            success = false;\n            for (int i = 0; i < lbp.getBookSelector().getItems().size(); i++) {\n                if (lbp.getBookSelector().getItems().get(i).getBookName().equalsIgnoreCase(book)) {\n                    final int j = i;\n                    Utils.fxRunAndWait(() -> {\n                        lbp.getBookSelector().selectionModelProperty().get().clearAndSelect(j);\n                    });\n                    success = true;\n                }\n            }\n            if (!success) {\n                return error;\n            }\n\n            int before = QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getScheduleList().getItems().size();\n            Utils.fxRunAndWait(() -> {\n                lbp.getPassageSelector().setText(cv);\n                lbp.getAddToSchedule().fire();\n            });\n            int after = QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getScheduleList().getItems().size();\n\n            if (after > before) {\n                return LabelGrabber.INSTANCE.getLabel(\"rcs.add.success\");\n            } else {\n                return error;\n            }\n        } else {\n            return \"\";\n        }\n    }\n\n    public static String getThemes(HttpExchange he) {\n        StringBuilder ret = new StringBuilder();\n        for (ThemeDTO t : ThemeUtils.getThemes()) {\n            ret.append(t.getThemeName()).append(\"\\n\");\n        }\n        ret.append(LabelGrabber.INSTANCE.getLabel(\"default.theme.text\")).append(\"\\n\");\n        return ret.toString();\n    }\n\n    public static String setTheme(HttpExchange he) throws UnsupportedEncodingException {\n        String themeName;\n        if (he.getRequestURI().toString().contains(\"/settheme/\")) {\n            final MainPanel p = QueleaApp.get().getMainWindow().getMainPanel();\n            String uri = URLDecoder.decode(he.getRequestURI().toString(), \"UTF-8\");\n            themeName = uri.split(\"/settheme/\", 2)[1];\n            ScheduleThemeNode stn = QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getThemeNode();\n\n            Utils.fxRunAndWait(() -> {\n                int i = 0;\n                for (ThemeDTO t : ThemeUtils.getThemes()) {\n                    i++;\n                    if (t.getThemeName().equals(themeName)) {\n                        stn.selectSongTheme(t);\n                        stn.selectBibleTheme(t);\n                        break;\n                    } else if (i == ThemeUtils.getThemes().size()) {\n                        stn.selectSongTheme(ThemeDTO.DEFAULT_THEME);\n                        stn.selectBibleTheme(ThemeDTO.DEFAULT_THEME);\n                    }\n                }\n            });\n\n            return \"\";\n        }\n        return \"\";\n    }\n\n    public static byte[] getPresentationSlides(HttpExchange he) {\n        String targetPath = he.getRequestURI().getPath().replace(\"/slides\", \"\");\n        Displayable d = QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().getDisplayable();\n        if (d instanceof PresentationDisplayable || d instanceof PdfDisplayable || d instanceof ImageGroupDisplayable) {\n            if (targetPath.contains(\"/\")) {\n                try {\n                    BufferedImage image;\n                    int slide = Integer.parseInt(targetPath.replace(\"/slide\", \"\").replace(\".png\", \"\"));\n                    if (d instanceof PresentationDisplayable) {\n                        image = SwingFXUtils.fromFXImage(((PresentationDisplayable) d).getPresentation().getSlide(slide - 1).getImage(), null);\n                    } else if (d instanceof PdfDisplayable) {\n                        image = SwingFXUtils.fromFXImage(((PdfDisplayable) d).getPresentation().getSlide(slide - 1).getImage(), null);\n                    } else {\n                        image = SwingFXUtils.fromFXImage(((ImageGroupDisplayable) d).getPresentation().getSlide(slide - 1).getImage(), null);\n                    }\n                    ByteArrayOutputStream output = new ByteArrayOutputStream();\n                    ImageIO.write(image, \"png\", output);\n                    return output.toByteArray();\n                } catch (IOException ex) {\n                    LOGGER.log(Level.WARNING, \"Error getting PowerPoint slides\", ex);\n                }\n            } else {\n                StringBuilder sb = new StringBuilder();\n                sb.append(\"\\n<html>\");\n                int numberOfFiles;\n                if (d instanceof PresentationDisplayable)\n                    numberOfFiles = ((PresentationDisplayable) d).getPresentation().getSlides().length;\n                else if (d instanceof PdfDisplayable)\n                    numberOfFiles = ((PdfDisplayable) d).getPresentation().getSlides().length;\n                else\n                    numberOfFiles = ((ImageGroupDisplayable) d).getPresentation().getSlides().length;\n                for (int i = 0; i < numberOfFiles; i++) {\n                    if (currentLyricSection() == i) {\n                        sb.append(\"<div class=\\\"inner current\\\">\");\n                    }\n                    sb.append(\"<p class=\\\"empty\\\" onclick=\\\"section(\").append(i).append(\");\\\">\");\n                    sb.append(\"<a href='\").append(\"/\").append(\"slides/slide\").append(i).append(\"'>\").append(\"</a>\");\n                    sb.append(\"</p>\");\n                }\n                sb.append(\"\\n</html>\");\n                return sb.toString().getBytes();\n            }\n        }\n        return \"\".getBytes();\n    }\n\n    public static String listBibleTranslations(HttpExchange he) {\n        StringBuilder ret = new StringBuilder();\n        final LibraryBiblePanel lbp = QueleaApp.get().getMainWindow().getMainPanel().getLibraryPanel().getBiblePanel();\n        for (Bible b : lbp.getBibleSelector().getItems()) {\n            if (b.getBibleName().equals(QueleaProperties.get().getDefaultBible())) {\n                ret.append(\"*\");\n            }\n            ret.append(b.getBibleName().replaceAll(\"/\", \" - \")).append(\"\\n\");\n        }\n        return ret.toString();\n    }\n\n    public static String listBibleBooks(HttpExchange he) throws UnsupportedEncodingException {\n        String searchString;\n        if (he.getRequestURI().toString().contains(\"/books/\")) {\n            String uri = URLDecoder.decode(he.getRequestURI().toString(), \"UTF-8\");\n            searchString = uri.split(\"/books/\")[1];\n            final LibraryBiblePanel lbp = QueleaApp.get().getMainWindow().getMainPanel().getLibraryPanel().getBiblePanel();\n            boolean success = false;\n            for (int i = 0; i < lbp.getBibleSelector().getItems().size(); i++) {\n                if (lbp.getBibleSelector().getItems().get(i).getBibleName().replaceAll(\"/\", \" - \").equalsIgnoreCase(searchString)) {\n                    final int j = i;\n                    Utils.fxRunAndWait(() -> {\n                        lbp.getBibleSelector().selectionModelProperty().get().clearAndSelect(j);\n                    });\n                    success = true;\n                }\n            }\n            if (!success) {\n                return \"\";\n            }\n            StringBuilder ret = new StringBuilder();\n            for (BibleBook bb : lbp.getBookSelector().getItems()) {\n                ret.append(bb.getBookName()).append(\"\\n\");\n            }\n            return ret.toString();\n        }\n        return \"\";\n    }\n\n    public static String listSongTranslations(HttpExchange he) {\n        StringBuilder ret = new StringBuilder();\n        final MainPanel p = QueleaApp.get().getMainWindow().getMainPanel();\n        int current = p.getSchedulePanel().getScheduleList().getItems().indexOf(p.getLivePanel().getDisplayable());\n        SongDisplayable d = ((SongDisplayable) QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getScheduleList().getItems().get(current).displayable());\n        for (String b : d.getTranslations().keySet()) {\n            ret.append(b).append(\"\\n\");\n        }\n        if (d.getTranslations().size() < 1) {\n            ret.append(\"None\");\n        }\n        return ret.toString();\n    }\n\n    public static String getSongTranslation(HttpExchange he) throws UnsupportedEncodingException {\n        String language;\n        StringBuilder ret = new StringBuilder();\n        if (he.getRequestURI().toString().contains(\"/gettranslation/\")) {\n            String uri = URLDecoder.decode(he.getRequestURI().toString(), \"UTF-8\");\n            language = uri.split(\"/gettranslation/\", 2)[1];\n            final MainPanel p = QueleaApp.get().getMainWindow().getMainPanel();\n            int current = p.getSchedulePanel().getScheduleList().getItems().indexOf(p.getLivePanel().getDisplayable());\n            SongDisplayable d = ((SongDisplayable) QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getScheduleList().getItems().get(current).displayable());\n            for (String b : d.getTranslations().keySet()) {\n                if (b.equals(language)) {\n                    ret.append(d.getTranslations().get(language));\n                }\n            }\n        }\n        return ret.toString();\n    }\n\n    public static void transposeSong(HttpExchange he) throws UnsupportedEncodingException {\n        String semiTones;\n        if (he.getRequestURI().toString().contains(\"/transpose/\")) {\n            String uri = URLDecoder.decode(he.getRequestURI().toString(), \"UTF-8\");\n            semiTones = uri.split(\"/transpose/\", 2)[1];\n            final MainPanel p = QueleaApp.get().getMainWindow().getMainPanel();\n            Displayable d = p.getLivePanel().getDisplayable();\n            if (d instanceof SongDisplayable) {\n                Utils.fxRunAndWait(() -> {\n                    SongEntryWindow songEntryWindow = QueleaApp.get().getMainWindow().getSongEntryWindow();\n                    songEntryWindow.resetEditSong((SongDisplayable) d);\n                    songEntryWindow.getBasicSongPanel().transposeSong(Integer.parseInt(semiTones));\n                    songEntryWindow.saveSong();\n                    int current = p.getSchedulePanel().getScheduleList().getItems().indexOf(d);\n                    p.getSchedulePanel().getScheduleList().getSelectionModel().clearSelection();\n                    p.getSchedulePanel().getScheduleList().getSelectionModel().select(current);\n                    p.getPreviewPanel().goLive();\n                });\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/server/RemoteControlServer.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.server;\n\nimport com.sun.net.httpserver.Filter;\nimport com.sun.net.httpserver.HttpContext;\nimport com.sun.net.httpserver.HttpExchange;\nimport com.sun.net.httpserver.HttpHandler;\nimport com.sun.net.httpserver.HttpServer;\n\nimport java.awt.image.BufferedImage;\nimport java.io.BufferedReader;\nimport java.io.ByteArrayOutputStream;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\nimport java.io.OutputStream;\nimport java.io.UnsupportedEncodingException;\nimport java.net.FileNameMap;\nimport java.net.InetSocketAddress;\nimport java.net.URI;\nimport java.net.URLConnection;\nimport java.net.URLDecoder;\nimport java.nio.ByteBuffer;\nimport java.nio.charset.Charset;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\nimport java.util.ArrayList;\nimport java.util.HashMap;\nimport java.util.List;\nimport java.util.Map;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\n\nimport javafx.embed.swing.SwingFXUtils;\n\nimport javax.imageio.ImageIO;\n\nimport org.quelea.data.displayable.Displayable;\nimport org.quelea.data.displayable.ImageGroupDisplayable;\nimport org.quelea.data.displayable.MultimediaDisplayable;\nimport org.quelea.data.displayable.PdfDisplayable;\nimport org.quelea.data.displayable.PresentationDisplayable;\nimport org.quelea.data.displayable.TextDisplayable;\nimport org.quelea.data.displayable.TextSection;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.LineTypeChecker;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.LivePanel;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.windows.main.ThemePreviewPanel;\nimport org.quelea.windows.main.actionhandlers.RecordingsHandler;\nimport org.quelea.windows.main.schedule.ScheduleThemeNode;\nimport org.quelea.windows.main.toolbars.MainToolbar;\n\n/**\n * The remote control server, responsible for handling the mobile HTTP calls and\n * changing the correct content.\n * <p>\n *\n * @author Ben\n */\npublic class RemoteControlServer {\n\n    private static final boolean USE_CACHE = true;\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    private final HttpServer server;\n    private boolean running;\n    private String pageContent;\n    private final Map<String, byte[]> fileCache;\n    public int count = 0;\n\n    /**\n     * Create a new mobile lyrics server on a specified port. The port must not\n     * be in use.\n     * <p>\n     *\n     * @param port the port to use\n     * @throws IOException if something goes wrong.\n     */\n    public RemoteControlServer(int port) throws IOException {\n        fileCache = new HashMap<>();\n        server = HttpServer.create(new InetSocketAddress(port), 0);\n        HttpContext rootcontext = server.createContext(\"/\", new RootHandler());\n        server.createContext(\"/logout\", new LogoutHandler());\n        server.createContext(\"/tlogo\", new LogoToggleHandler());\n        server.createContext(\"/black\", new BlackToggleHandler());\n        server.createContext(\"/clear\", new ClearToggleHandler());\n        server.createContext(\"/next\", new NextSlideHandler());\n        server.createContext(\"/prev\", new PreviousSlideHandler());\n        server.createContext(\"/nextitem\", new NextItemHandler());\n        server.createContext(\"/previtem\", new PreviousItemHandler());\n        server.createContext(\"/play\", new PlayHandler());\n        server.createContext(\"/lyrics\", new LyricsHandler());\n        server.createContext(\"/chords\", new ChordsHandler());\n        server.createContext(\"/status\", new StatusHandler());\n        server.createContext(\"/schedule\", new ScheduleHandler());\n        server.createContext(\"/songsearch\", new SongSearchHandler());\n        server.createContext(\"/search\", new DatabaseSearchHandler());\n        server.createContext(\"/song\", new SongDisplayHandler());\n        server.createContext(\"/add\", new AddSongHandler());\n        server.createContext(\"/addbible\", new AddBibleHandler());\n        server.createContext(\"/translations\", new ListBibleTranslationsHandler());\n        server.createContext(\"/books\", new ListBibleBooksHandler());\n        server.createContext(\"/passage\", new PassageSelecterHandler());\n        server.createContext(\"/sidebar.png\", new FileHandler(\"icons/sidebar.png\"));\n        server.createContext(\"/logo.png\", new FileHandler(\"icons/logo-square.png\"));\n        server.createContext(\"/section\", new SectionHandler());\n        server.createContext(\"/songtranslations\", new SongTranslationsHandler());\n        server.createContext(\"/gettranslation\", new SongTranslationsHandler());\n        server.createContext(\"/record\", new RecordToggleHandler());\n        server.createContext(\"/gotoitem\", new GotoItemHandler());\n        server.createContext(\"/remove\", new RemoveItemHandler());\n        server.createContext(\"/getthemes\", new GetThemesHandler());\n        server.createContext(\"/settheme\", new SetThemeHandler());\n        server.createContext(\"/moveup\", new MoveItemUpHandler());\n        server.createContext(\"/movedown\", new MoveItemDownHandler());\n        server.createContext(\"/themethumb\", new ThemeThumbnailsHandler());\n        server.createContext(\"/slides\", new PresentationSlidesHandler());\n        server.createContext(\"/transpose\", new TransposeSongHandler());\n        rootcontext.getFilters().add(new ParameterFilter());\n        server.setExecutor(null);\n    }\n\n    /**\n     * Start the server.\n     */\n    public void start() {\n        if (server != null) {\n            server.start();\n            running = true;\n        }\n    }\n\n    /**\n     * Stop the server. If the server is stopped, it cannot be restarted - a new\n     * server must be created.\n     */\n    public void stop() {\n        if (server != null) {\n            running = false;\n            server.stop(0);\n        }\n    }\n\n    /**\n     * Determine if the server is running.\n     * <p/>\n     *\n     * @return true if the server is running, false otherwise.\n     */\n    public boolean isRunning() {\n        return running;\n    }\n\n    private class SongSearchHandler implements HttpHandler {\n\n        @Override\n        public void handle(HttpExchange he) throws IOException {\n            if (RCHandler.isLoggedOn(he.getRemoteAddress().getAddress().toString())) {\n                String pageContent = readFile(\"server/addsongrcspage.htm\");\n                pageContent = pageContent.replace(\"$1\", LabelGrabber.INSTANCE.getLabel(\"rcs.submit\"));\n                byte[] bytes = pageContent.getBytes(Charset.forName(\"UTF-8\"));\n                he.getResponseHeaders().add(\"Cache-Control\", \"no-cache, no-store, must-revalidate\");\n                he.sendResponseHeaders(200, bytes.length);\n                try (OutputStream os = he.getResponseBody()) {\n                    os.write(bytes);\n                }\n            } else {\n                passwordPage(he);\n            }\n        }\n    }\n\n    private class AddBibleHandler implements HttpHandler {\n\n        @Override\n        public void handle(HttpExchange he) throws IOException {\n            if (RCHandler.isLoggedOn(he.getRemoteAddress().getAddress().toString())) {\n                final String response;\n                response = RCHandler.addBiblePassage(he);\n                he.getResponseHeaders().add(\"Cache-Control\", \"no-cache, no-store, must-revalidate\");\n                he.sendResponseHeaders(200, response.getBytes(Charset.forName(\"UTF-8\")).length);\n                try (OutputStream os = he.getResponseBody()) {\n                    os.write(response.getBytes(Charset.forName(\"UTF-8\")));\n                }\n            } else {\n                passwordPage(he);\n            }\n        }\n    }\n\n    private class ListBibleTranslationsHandler implements HttpHandler {\n\n        @Override\n        public void handle(HttpExchange he) throws IOException {\n            if (RCHandler.isLoggedOn(he.getRemoteAddress().getAddress().toString())) {\n                final String response;\n                response = RCHandler.listBibleTranslations(he);\n                he.getResponseHeaders().add(\"Cache-Control\", \"no-cache, no-store, must-revalidate\");\n                he.sendResponseHeaders(200, response.getBytes(Charset.forName(\"UTF-8\")).length);\n                try (OutputStream os = he.getResponseBody()) {\n                    os.write(response.getBytes(Charset.forName(\"UTF-8\")));\n                }\n            } else {\n                passwordPage(he);\n            }\n        }\n    }\n\n    private class ListBibleBooksHandler implements HttpHandler {\n\n        @Override\n        public void handle(HttpExchange he) throws IOException {\n            if (RCHandler.isLoggedOn(he.getRemoteAddress().getAddress().toString())) {\n                final String response;\n                response = RCHandler.listBibleBooks(he);\n                he.getResponseHeaders().add(\"Cache-Control\", \"no-cache, no-store, must-revalidate\");\n                he.sendResponseHeaders(200, response.getBytes(Charset.forName(\"UTF-8\")).length);\n                try (OutputStream os = he.getResponseBody()) {\n                    os.write(response.getBytes(Charset.forName(\"UTF-8\")));\n                }\n            } else {\n                passwordPage(he);\n            }\n        }\n    }\n\n    private class SongTranslationsHandler implements HttpHandler {\n\n        @Override\n        public void handle(HttpExchange he) throws IOException {\n            String response = \"\";\n            LivePanel lp = QueleaApp.get().getMainWindow().getMainPanel().getLivePanel();\n            if (running && lp.getDisplayable() instanceof TextDisplayable) {\n                if (RCHandler.isLoggedOn(he.getRemoteAddress().getAddress().toString())) {\n\n                    if (he.getRequestURI().toString().contains(\"/songtranslations\")) {\n                        response = RCHandler.listSongTranslations(he);\n                    } else {\n                        response = RCHandler.getSongTranslation(he);\n                    }\n                } else {\n                    passwordPage(he);\n                }\n            }\n            he.getResponseHeaders().add(\"Cache-Control\", \"no-cache, no-store, must-revalidate\");\n            he.sendResponseHeaders(200, response.getBytes(Charset.forName(\"UTF-8\")).length);\n            try (OutputStream os = he.getResponseBody()) {\n                os.write(response.getBytes(Charset.forName(\"UTF-8\")));\n            }\n        }\n    }\n\n    private class PassageSelecterHandler implements HttpHandler {\n\n        @Override\n        public void handle(HttpExchange he) throws IOException {\n            if (RCHandler.isLoggedOn(he.getRemoteAddress().getAddress().toString())) {\n                String pageContent = readFile(\"server/addpassagercspage.htm\");\n                pageContent = pageContent.replace(\"$1\", LabelGrabber.INSTANCE.getLabel(\"rcs.submit\"));\n                pageContent = pageContent.replace(\"$2\", LabelGrabber.INSTANCE.getLabel(\"bible.passage.selector.prompt\"));\n                byte[] bytes = pageContent.getBytes(Charset.forName(\"UTF-8\"));\n                he.getResponseHeaders().add(\"Cache-Control\", \"no-cache, no-store, must-revalidate\");\n                he.sendResponseHeaders(200, bytes.length);\n                try (OutputStream os = he.getResponseBody()) {\n                    os.write(bytes);\n                }\n            } else {\n                passwordPage(he);\n            }\n        }\n    }\n\n    private class SongDisplayHandler implements HttpHandler {\n\n        @Override\n        public void handle(HttpExchange he) throws IOException {\n            if (RCHandler.isLoggedOn(he.getRemoteAddress().getAddress().toString())) {\n                final String response;\n                response = RCHandler.songDisplay(he);\n                he.getResponseHeaders().add(\"Cache-Control\", \"no-cache, no-store, must-revalidate\");\n                he.sendResponseHeaders(200, response.getBytes(Charset.forName(\"UTF-8\")).length);\n                try (OutputStream os = he.getResponseBody()) {\n                    os.write(response.getBytes(Charset.forName(\"UTF-8\")));\n                }\n            } else {\n                passwordPage(he);\n            }\n        }\n\n    }\n\n    private class ThemeThumbnailsHandler implements HttpHandler {\n\n        FileNameMap fileNameMap = URLConnection.getFileNameMap();\n\n        public void handle(HttpExchange t) {\n            Utils.fxRunAndWait(() -> {\n                try {\n                    ScheduleThemeNode stn = QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getThemeNode();\n                    int themeNum = Integer.parseInt(t.getRequestURI().getPath().replace(\"/themethumb\", \"\"));\n                    BufferedImage image = SwingFXUtils.fromFXImage(((ThemePreviewPanel) stn.getThemePreviews().getChildren().get(themeNum)).getThemePreviewImage(), null);\n                    ByteArrayOutputStream output = new ByteArrayOutputStream();\n                    ImageIO.write(image, \"png\", output);\n                    byte[] byteArray = output.toByteArray();\n                    t.sendResponseHeaders(200, byteArray.length);\n                    try (OutputStream out = t.getResponseBody()) {\n                        out.write(byteArray);\n                    }\n\n                } catch (IOException e) {\n                    System.out.println(\"Failed saving\");\n                } catch (Exception e) {\n                    System.out.println(\"Exception \" + e);\n                }\n            });\n        }\n    }\n\n    private class PresentationSlidesHandler implements HttpHandler {\n\n        @Override\n        public void handle(HttpExchange t) throws IOException {\n            if (RCHandler.isLoggedOn(t.getRemoteAddress().getAddress().toString())) {\n                byte[] byteArray = RCHandler.getPresentationSlides(t);\n                t.getResponseHeaders().add(\"Cache-Control\", \"no-cache, no-store, must-revalidate\");\n                t.sendResponseHeaders(200, byteArray.length);\n                try (OutputStream out = t.getResponseBody()) {\n                    out.write(byteArray);\n                }\n            } else {\n                passwordPage(t);\n            }\n        }\n    }\n\n    private class AddSongHandler implements HttpHandler {\n\n        @Override\n        public void handle(HttpExchange he) throws IOException {\n            if (RCHandler.isLoggedOn(he.getRemoteAddress().getAddress().toString())) {\n                final String response;\n                response = RCHandler.addSongToSchedule(he);\n                he.getResponseHeaders().add(\"Cache-Control\", \"no-cache, no-store, must-revalidate\");\n                he.sendResponseHeaders(200, response.getBytes(Charset.forName(\"UTF-8\")).length);\n                try (OutputStream os = he.getResponseBody()) {\n                    os.write(response.getBytes(Charset.forName(\"UTF-8\")));\n                }\n            } else {\n                passwordPage(he);\n            }\n        }\n\n    }\n\n    private class RemoveItemHandler implements HttpHandler {\n\n        @Override\n        public void handle(HttpExchange he) throws IOException {\n            if (RCHandler.isLoggedOn(he.getRemoteAddress().getAddress().toString())) {\n                final String response;\n                response = RCHandler.removeItemFromSchedule(he);\n                he.getResponseHeaders().add(\"Cache-Control\", \"no-cache, no-store, must-revalidate\");\n                he.sendResponseHeaders(200, response.getBytes(Charset.forName(\"UTF-8\")).length);\n                try (OutputStream os = he.getResponseBody()) {\n                    os.write(response.getBytes(Charset.forName(\"UTF-8\")));\n                }\n            } else {\n                passwordPage(he);\n            }\n        }\n    }\n\n    private class DatabaseSearchHandler implements HttpHandler {\n\n        @Override\n        public void handle(HttpExchange he) throws IOException {\n            if (RCHandler.isLoggedOn(he.getRemoteAddress().getAddress().toString())) {\n                final String response;\n                response = RCHandler.databaseSearch(he);\n                he.getResponseHeaders().add(\"Cache-Control\", \"no-cache, no-store, must-revalidate\");\n                he.sendResponseHeaders(200, response.getBytes(Charset.forName(\"UTF-8\")).length);\n                try (OutputStream os = he.getResponseBody()) {\n                    os.write(response.getBytes(Charset.forName(\"UTF-8\")));\n                }\n            } else {\n                passwordPage(he);\n            }\n        }\n    }\n\n    private class GetThemesHandler implements HttpHandler {\n\n        @Override\n        public void handle(HttpExchange he) throws IOException {\n            if (RCHandler.isLoggedOn(he.getRemoteAddress().getAddress().toString())) {\n                final String response;\n                response = RCHandler.getThemes(he);\n                he.getResponseHeaders().add(\"Cache-Control\", \"no-cache, no-store, must-revalidate\");\n                he.sendResponseHeaders(200, response.getBytes(Charset.forName(\"UTF-8\")).length);\n                try (OutputStream os = he.getResponseBody()) {\n                    os.write(response.getBytes(Charset.forName(\"UTF-8\")));\n                }\n            } else {\n                passwordPage(he);\n            }\n        }\n    }\n\n    private class SetThemeHandler implements HttpHandler {\n\n        @Override\n        public void handle(HttpExchange he) throws IOException {\n            if (RCHandler.isLoggedOn(he.getRemoteAddress().getAddress().toString())) {\n                final String response;\n                response = RCHandler.setTheme(he);\n                he.getResponseHeaders().add(\"Cache-Control\", \"no-cache, no-store, must-revalidate\");\n                he.sendResponseHeaders(200, response.getBytes(Charset.forName(\"UTF-8\")).length);\n                try (OutputStream os = he.getResponseBody()) {\n                    os.write(response.getBytes(Charset.forName(\"UTF-8\")));\n                }\n            } else {\n                passwordPage(he);\n            }\n        }\n    }\n\n    /**\n     * Return a basically formatted schedule list with bold and italics\n     * <p/>\n     */\n    private class ScheduleHandler implements HttpHandler {\n\n        @Override\n        public void handle(HttpExchange he) throws IOException {\n            byte[] bytes = RCHandler.schedule().getBytes(Charset.forName(\"UTF-8\"));\n            he.getResponseHeaders().set(\"Cache-Control\", \"no-cache, no-store, must-revalidate\");\n            he.sendResponseHeaders(200, bytes.length);\n            try (OutputStream os = he.getResponseBody()) {\n                os.write(bytes);\n            }\n        }\n    }\n\n    //Handles logo display\n    private class LogoToggleHandler implements HttpHandler {\n\n        @Override\n        public void handle(HttpExchange he) throws IOException {\n            if (RCHandler.isLoggedOn(he.getRemoteAddress().getAddress().toString())) {\n                he.getResponseHeaders().add(\"Cache-Control\", \"no-cache, no-store, must-revalidate\");\n                he.sendResponseHeaders(200, -1);\n                RCHandler.logo();\n            } else {\n                reload(he);\n            }\n        }\n    }\n\n    //Handles black display\n    private class BlackToggleHandler implements HttpHandler {\n\n        @Override\n        public void handle(HttpExchange he) throws IOException {\n            if (RCHandler.isLoggedOn(he.getRemoteAddress().getAddress().toString())) {\n                he.getResponseHeaders().add(\"Cache-Control\", \"no-cache, no-store, must-revalidate\");\n                he.sendResponseHeaders(200, -1);\n                RCHandler.black();\n            } else {\n                reload(he);\n            }\n        }\n    }\n\n    //Handles clear display\n    private class ClearToggleHandler implements HttpHandler {\n\n        @Override\n        public void handle(HttpExchange he) throws IOException {\n            if (RCHandler.isLoggedOn(he.getRemoteAddress().getAddress().toString())) {\n                he.getResponseHeaders().add(\"Cache-Control\", \"no-cache, no-store, must-revalidate\");\n                he.sendResponseHeaders(200, -1);\n                RCHandler.clear();\n            } else {\n                reload(he);\n            }\n        }\n    }\n\n    //Handles next slide\n    private class NextSlideHandler implements HttpHandler {\n\n        @Override\n        public void handle(HttpExchange he) throws IOException {\n            if (RCHandler.isLoggedOn(he.getRemoteAddress().getAddress().toString())) {\n                he.getResponseHeaders().add(\"Cache-Control\", \"no-cache, no-store, must-revalidate\");\n                he.sendResponseHeaders(200, -1);\n                RCHandler.next();\n            } else {\n                reload(he);\n            }\n        }\n    }\n\n    //Handles previous slide\n    private class PreviousSlideHandler implements HttpHandler {\n\n        @Override\n        public void handle(HttpExchange he) throws IOException {\n            if (RCHandler.isLoggedOn(he.getRemoteAddress().getAddress().toString())) {\n                he.getResponseHeaders().add(\"Cache-Control\", \"no-cache, no-store, must-revalidate\");\n                he.sendResponseHeaders(200, -1);\n                RCHandler.prev();\n            } else {\n                reload(he);\n            }\n        }\n    }\n\n    //Handles next schedule item\n    private class NextItemHandler implements HttpHandler {\n\n        @Override\n        public void handle(HttpExchange he) throws IOException {\n            if (RCHandler.isLoggedOn(he.getRemoteAddress().getAddress().toString())) {\n                he.getResponseHeaders().add(\"Cache-Control\", \"no-cache, no-store, must-revalidate\");\n                he.sendResponseHeaders(200, -1);\n                RCHandler.nextItem();\n            } else {\n                reload(he);\n            }\n        }\n    }\n\n    //Handles previous schedule item\n    private class PreviousItemHandler implements HttpHandler {\n\n        @Override\n        public void handle(HttpExchange he) throws IOException {\n            if (RCHandler.isLoggedOn(he.getRemoteAddress().getAddress().toString())) {\n                he.getResponseHeaders().add(\"Cache-Control\", \"no-cache, no-store, must-revalidate\");\n                he.sendResponseHeaders(200, -1);\n                RCHandler.prevItem();\n            } else {\n                reload(he);\n            }\n        }\n    }\n\n    //Handles jumping to a schedule item\n    private class GotoItemHandler implements HttpHandler {\n\n        @Override\n        public void handle(HttpExchange he) throws IOException {\n            if (RCHandler.isLoggedOn(he.getRemoteAddress().getAddress().toString())) {\n                he.getResponseHeaders().add(\"Cache-Control\", \"no-cache, no-store, must-revalidate\");\n                he.sendResponseHeaders(200, -1);\n                RCHandler.gotoItem(he.getRequestURI().toString());\n            } else {\n                reload(he);\n            }\n        }\n    }\n\n    //Handles item moves up\n    private class MoveItemUpHandler implements HttpHandler {\n\n        @Override\n        public void handle(HttpExchange he) throws IOException {\n            if (RCHandler.isLoggedOn(he.getRemoteAddress().getAddress().toString())) {\n                final String response = \"\";\n                he.getResponseHeaders().add(\"Cache-Control\", \"no-cache, no-store, must-revalidate\");\n                he.sendResponseHeaders(200, response.getBytes(Charset.forName(\"UTF-8\")).length);\n                try (OutputStream os = he.getResponseBody()) {\n                    os.write(response.getBytes(Charset.forName(\"UTF-8\")));\n                }\n                RCHandler.moveUp(he.getRequestURI().toString());\n            } else {\n                reload(he);\n            }\n        }\n    }\n\n    //Handles item moves down\n    private class MoveItemDownHandler implements HttpHandler {\n\n        @Override\n        public void handle(HttpExchange he) throws IOException {\n            if (RCHandler.isLoggedOn(he.getRemoteAddress().getAddress().toString())) {\n                final String response = \"\";\n                he.getResponseHeaders().add(\"Cache-Control\", \"no-cache, no-store, must-revalidate\");\n                he.sendResponseHeaders(200, response.getBytes(Charset.forName(\"UTF-8\")).length);\n                try (OutputStream os = he.getResponseBody()) {\n                    os.write(response.getBytes(Charset.forName(\"UTF-8\")));\n                }\n                RCHandler.moveDown(he.getRequestURI().toString());\n            } else {\n                reload(he);\n            }\n        }\n    }\n\n    //Handles button status\n    private class StatusHandler implements HttpHandler {\n\n        @Override\n        public void handle(HttpExchange he) throws IOException {\n            MainToolbar toolbar = QueleaApp.get().getMainWindow().getMainToolbar();\n            RecordingsHandler recHandler = toolbar.getRecordButtonHandler().getRecordingsHandler();\n            if (RCHandler.isLoggedOn(he.getRemoteAddress().getAddress().toString())) {\n                StringBuilder sb = new StringBuilder();\n                sb.append(RCHandler.getLogo()).append(\",\");\n                sb.append(RCHandler.getBlack()).append(\",\");\n                sb.append(RCHandler.getClear()).append(\",\");\n                sb.append(RCHandler.videoStatus()).append(\",\");\n                if (toolbar.getRecordButtonHandler() != null && recHandler != null) {\n                    sb.append(recHandler.getIsRecording());\n                } else {\n                    sb.append(\"false\");\n                }\n                byte[] bytes = sb.toString().getBytes(Charset.forName(\"UTF-8\"));\n                he.getResponseHeaders().add(\"Cache-Control\", \"no-cache, no-store, must-revalidate\");\n                he.sendResponseHeaders(200, bytes.length);\n                try (OutputStream os = he.getResponseBody()) {\n                    os.write(bytes);\n                }\n            } else {\n                reload(he);\n            }\n        }\n    }\n\n    //Handles clicking on a section\n    private class SectionHandler implements HttpHandler {\n\n        @Override\n        public void handle(HttpExchange he) throws IOException {\n            if (RCHandler.isLoggedOn(he.getRemoteAddress().getAddress().toString())) {\n                he.getResponseHeaders().add(\"Cache-Control\", \"no-cache, no-store, must-revalidate\");\n                he.sendResponseHeaders(200, -1);\n                RCHandler.setLyrics(he.getRequestURI().toString());\n            } else {\n                reload(he);\n            }\n        }\n    }\n\n    //Handles the play button for multimedia\n    private class PlayHandler implements HttpHandler {\n\n        @Override\n        public void handle(HttpExchange he) throws IOException {\n            if (RCHandler.isLoggedOn(he.getRemoteAddress().getAddress().toString())) {\n                he.getResponseHeaders().add(\"Cache-Control\", \"no-cache, no-store, must-revalidate\");\n                he.sendResponseHeaders(200, -1);\n                RCHandler.play();\n            } else {\n                reload(he);\n            }\n        }\n    }\n\n    //Handles recordings\n    private class RecordToggleHandler implements HttpHandler {\n\n        @Override\n        public void handle(HttpExchange he) throws IOException {\n            if (RCHandler.isLoggedOn(he.getRemoteAddress().getAddress().toString())) {\n                he.getResponseHeaders().add(\"Cache-Control\", \"no-cache, no-store, must-revalidate\");\n                he.sendResponseHeaders(200, -1);\n                RCHandler.record();\n            } else {\n                reload(he);\n            }\n        }\n    }\n\n    //Handles logo display\n    private class LogoutHandler implements HttpHandler {\n\n        @Override\n        public void handle(HttpExchange he) throws IOException {\n            RCHandler.logout(he.getRemoteAddress().getAddress().toString());\n            passwordPage(he);\n        }\n    }\n\n    //Handles song transposing\n    private class TransposeSongHandler implements HttpHandler {\n\n        @Override\n        public void handle(HttpExchange he) throws IOException {\n            if (RCHandler.isLoggedOn(he.getRemoteAddress().getAddress().toString())) {\n                final String response = \"\";\n                he.getResponseHeaders().add(\"Cache-Control\", \"no-cache, no-store, must-revalidate\");\n                he.sendResponseHeaders(200, response.getBytes(Charset.forName(\"UTF-8\")).length);\n                try(OutputStream os = he.getResponseBody()) {\n                    os.write(response.getBytes(Charset.forName(\"UTF-8\")));\n                }\n                RCHandler.transposeSong(he);\n            } else {\n                reload(he);\n            }\n            he.close();\n        }\n    }\n\n    //Handles \n    private class RootHandler implements HttpHandler {\n\n        @Override\n        public void handle(HttpExchange he) throws IOException {\n            if (RCHandler.isLoggedOn(he.getRemoteAddress().getAddress().toString())) {\n                if (pageContent == null || !USE_CACHE) {\n                    pageContent = readFile(\"server/defaultrcspage.htm\");\n                    pageContent = langStrings(pageContent);\n                }\n                byte[] bytes = pageContent.getBytes(Charset.forName(\"UTF-8\"));\n                he.sendResponseHeaders(200, bytes.length);\n                try (OutputStream os = he.getResponseBody()) {\n                    os.write(bytes);\n                }\n            } else {\n                passwordPage(he);\n            }\n        }\n    }\n\n    @SuppressWarnings(\"unchecked\")\n    private String passParams(HttpExchange he) {\n        Map<String, Object> params = (Map<String, Object>) he.getAttribute(\"parameters\");\n        return (String) params.get(\"password\");\n    }\n\n    private void passwordPage(HttpExchange he) throws IOException {\n        if (he.getRequestMethod().equals(\"POST\")) {\n            String password = passParams(he);\n            if (password != null && RCHandler.authenticate(password)) {\n                RCHandler.addDevice(he.getRemoteAddress().getAddress().toString());\n                if (pageContent == null || !USE_CACHE) {\n                    pageContent = readFile(\"server/defaultrcspage.htm\");\n                    pageContent = langStrings(pageContent);\n                }\n                byte[] bytes = pageContent.getBytes(Charset.forName(\"UTF-8\"));\n                he.sendResponseHeaders(200, bytes.length);\n                try (OutputStream os = he.getResponseBody()) {\n                    os.write(bytes);\n                }\n                return;\n            }\n\n        }\n        String content = readFile(\"server/defaultpasswordpage.htm\");\n        content = content.replace(\"[remote.login.text]\", LabelGrabber.INSTANCE.getLabel(\"remote.login.text\"));\n        content = content.replace(\"[submit.button.text]\", LabelGrabber.INSTANCE.getLabel(\"remote.submit.text\"));\n        byte[] bytes = content.getBytes(Charset.forName(\"UTF-8\"));\n        he.getResponseHeaders().add(\"Cache-Control\", \"no-cache, no-store, must-revalidate\");\n        he.sendResponseHeaders(200, bytes.length);\n        try (OutputStream os = he.getResponseBody()) {\n            os.write(bytes);\n        }\n    }\n\n    private void reload(HttpExchange he) throws IOException {\n        byte[] bytes = readFile(\"icons/reloadpage.htm\").getBytes(\"UTF-8\");\n        he.getResponseHeaders().add(\"Cache-Control\", \"no-cache, no-store, must-revalidate\");\n        he.sendResponseHeaders(307, bytes.length);\n        try (OutputStream os = he.getResponseBody()) {\n            os.write(bytes);\n        }\n    }\n\n    //Takes the lyrics (if they're a Song or Bible passage and inserts them into the page\n    private class LyricsHandler implements HttpHandler {\n\n        @Override\n        public void handle(HttpExchange t) throws IOException {\n            String response = \"<i>\" + LabelGrabber.INSTANCE.getLabel(\"remote.empty.lyrics\") + \"</i>\";\n            Displayable d = QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().getDisplayable();\n            if (d instanceof TextDisplayable) {\n                response = \"<i>\" + LabelGrabber.INSTANCE.getLabel(\"currently.displaying.text\") + \": \" + d.getPreviewText() + \"<br/>\" + \"</i>\";\n                response += lyrics(false);\n            } else if (d instanceof MultimediaDisplayable) {\n                response = \"<i>\" + LabelGrabber.INSTANCE.getLabel(\"currently.displaying.text\") + \": \" + d.getPreviewText() + \"<br/>\" + \"</i>\";\n                response += \"<button type=\\\"button\\\" onclick=\\\"play();\\\" id=\\\"playbutton\\\">\" + LabelGrabber.INSTANCE.getLabel(\"play\") + \"</button><br/><br/>\";\n                response += \"<i>\" + LabelGrabber.INSTANCE.getLabel(\"remote.empty.lyrics\") + \"</i>\";\n            } else if (d instanceof PresentationDisplayable || d instanceof PdfDisplayable || d instanceof ImageGroupDisplayable) {\n                StringBuilder sb = new StringBuilder();\n                sb.append(\"\\n<html><i>\").append(LabelGrabber.INSTANCE.getLabel(\"currently.displaying.text\")).append(\": \").append(d.getPreviewText()).append(\"<br/>\" + \"</i>\");\n                int numberOfImages;\n                if (d instanceof PresentationDisplayable) {\n                    numberOfImages = ((PresentationDisplayable) d).getPresentation().getSlides().length;\n                } else if (d instanceof PdfDisplayable) {\n                    numberOfImages = ((PdfDisplayable) d).getPresentation().getSlides().length;\n                } else {\n                    numberOfImages = ((ImageGroupDisplayable) d).getPresentation().getSlides().length;\n                }\n                for (int i = 0; i < numberOfImages; i++) {\n                    int currentIndex;\n                    if (d instanceof PresentationDisplayable) {\n                        currentIndex = QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().getPresentationPanel().getCurrentIndex() - 1;\n                    } else if (d instanceof PdfDisplayable) {\n                        currentIndex = QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().getPdfPanel().getCurrentIndex() - 1;\n                    } else {\n                        currentIndex = QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().getImageGroupPanel().getCurrentIndex() - 1;\n                    }\n                    if (i == currentIndex) {\n                        sb.append(\"<div class=\\\"inner current\\\">\");\n                    } else {\n                        sb.append(\"<div class=\\\"inner\\\">\");\n                    }\n                    sb.append(\"<p class=\\\"empty\\\" onclick=\\\"section(\").append(i).append(\");\\\"><img src=\\\"/slides/slide\").append(i + 1).append(\".png\\\" style=\\\"width:192px;height:108px;\\\">\");\n                    sb.append(\"<br/>Slide \").append(i + 1).append(\"</p></div><br/><br/>\");\n                }\n                response = sb.append(\"\\n</html>\").toString();\n            } else if (d != null) {\n                response = \"<i>\" + LabelGrabber.INSTANCE.getLabel(\"currently.displaying.text\") + \": \" + d.getPreviewText() + \"<br/><br/>\" + \"</i>\";\n                response += \"<i>\" + LabelGrabber.INSTANCE.getLabel(\"remote.empty.lyrics\") + \"</i>\";\n            }\n            byte[] bytes = response.getBytes(\"UTF-8\");\n\n            t.getResponseHeaders().add(\"Cache-Control\", \"no-cache, no-store, must-revalidate\");\n            t.sendResponseHeaders(200, bytes.length);\n            try (OutputStream os = t.getResponseBody()) {\n                os.write(bytes);\n            }\n        }\n    }\n\n    //Takes the chords (if there are any) and inserts them into the page\n    private class ChordsHandler implements HttpHandler {\n\n        @Override\n        public void handle(HttpExchange t) throws IOException {\n            String response = \"<i>\" + LabelGrabber.INSTANCE.getLabel(\"remote.empty.lyrics\") + \"</i>\";\n            LivePanel lp = QueleaApp.get().getMainWindow().getMainPanel().getLivePanel();\n            if (lp.getDisplayable() instanceof TextDisplayable) {\n                response = \"<i>\" + LabelGrabber.INSTANCE.getLabel(\"currently.displaying.text\") + \": \" + lp.getDisplayable().getPreviewText() + \"<br/>\" + \"</i>\";\n                response += lyrics(true);\n            } else if (lp.getDisplayable() instanceof MultimediaDisplayable) {\n                response = \"<i>\" + LabelGrabber.INSTANCE.getLabel(\"currently.displaying.text\") + \": \" + lp.getDisplayable().getPreviewText() + \"<br/>\" + \"</i>\";\n                response += \"<button type=\\\"button\\\" onclick=\\\"play();\\\" id=\\\"playbutton\\\">\" + LabelGrabber.INSTANCE.getLabel(\"play\") + \"</button><br/><br/>\";\n                response += \"<i>\" + LabelGrabber.INSTANCE.getLabel(\"remote.empty.lyrics\") + \"</i>\";\n            } else if (lp.getDisplayable() != null) {\n                response = \"<i>\" + LabelGrabber.INSTANCE.getLabel(\"currently.displaying.text\") + \": \" + lp.getDisplayable().getPreviewText() + \"<br/><br/>\" + \"</i>\";\n                response += \"<i>\" + LabelGrabber.INSTANCE.getLabel(\"remote.empty.lyrics\") + \"</i>\";\n            }\n            byte[] bytes = response.getBytes(\"UTF-8\");\n\n            t.getResponseHeaders().add(\"Cache-Control\", \"no-cache, no-store, must-revalidate\");\n            t.sendResponseHeaders(200, bytes.length);\n            try (OutputStream os = t.getResponseBody()) {\n                os.write(bytes);\n            }\n        }\n    }\n\n    /**\n     * Get the HTML formatted Lyrics for display. Formatted as a table, with one\n     * row and one cell per lyric slide. The current slide has class current. To\n     * understand target=\"empty\" see comment in defaultrcspage.htm\n     * <p/>\n     *\n     * @return All lyrics formatted in a HTML table\n     */\n    public String lyrics(boolean chords) {\n        StringBuilder sb = new StringBuilder();\n        sb.append(\"<div id=\\\"outer\\\">\");\n        int i = 0;\n        List<TextSection> textSections = QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().getLyricsPanel().getLyricsList().getItems();\n        for (String lyricBlock : getLyrics(chords)) {\n            if (i == RCHandler.currentLyricSection()) {\n                sb.append(\"<div class=\\\"inner current\\\">\");\n            } else {\n                sb.append(\"<div class=\\\"inner\\\">\");\n            }\n            sb.append(\"<p class=\\\"empty\\\" onclick=\\\"section(\").append(i).append(\");\\\"\");\n            if (textSections.get(i).getTitle() != null && !textSections.get(i).getTitle().isEmpty()) {\n                sb.append(\" data-type=\\\"\").append(textSections.get(i).getTitle()).append(\"\\\"\");\n            }\n            sb.append(\">\");\n            sb.append(lyricBlock);\n            sb.append(\"</p></div>\");\n            i++;\n        }\n        sb.append(\"</div>\");\n        return sb.toString();\n    }\n\n    //Method returns all lyrics as an ArrayList of slides\n    private List<String> getLyrics(boolean chords) {\n        try {\n            if (!checkInitialised()) {\n                List<String> tmp = new ArrayList<>();\n                tmp.add(\"\");\n                return tmp;\n            }\n            LivePanel lp = QueleaApp.get().getMainWindow().getMainPanel().getLivePanel();\n            if (running && lp.getDisplayable() instanceof TextDisplayable) {\n                ArrayList<String> als = new ArrayList<>();\n                for (TextSection currentSection : lp.getLyricsPanel().getLyricsList().getItems()) {\n                    StringBuilder ret = new StringBuilder();\n                    for (String line : currentSection.getText(chords, false)) {\n                        if (chords) {\n                            if (new LineTypeChecker(line).getLineType() == LineTypeChecker.Type.CHORDS) {\n                                ret.append(\"<span class=\\\"chord\\\">\").append(line.replace(\" \", \"&#160;\"));\n                            } else {\n                                ret.append(\"<span class=\\\"lyric\\\">\").append(line.replaceAll(\"\\\\s\", \"&#160;\"));\n                            }\n                            ret.append(\"</span>\").append(\"<br/>\");\n                        } else {\n                            ret.append(\"<span class=\\\"lyric\\\">\").append(line).append(\"</span>\").append(\"<br/>\");\n                        }\n                    }\n                    als.add(ret.toString());\n                }\n                return als;\n            } else {\n                String response = \"<i>\" + LabelGrabber.INSTANCE.getLabel(\"remote.empty.lyrics\") + \"</i>\";\n                ArrayList<String> als = new ArrayList<>();\n                als.add(response);\n                return als;\n            }\n        } catch (Exception ex) {\n            LOGGER.log(Level.WARNING, \"Error getting lyrics\", ex);\n            return null;\n        }\n    }\n\n    //Handles replacing of the language strings\n    private String langStrings(String pageContent) {\n        pageContent = pageContent.replace(\"[logo.text]\", LabelGrabber.INSTANCE.getLabel(\"remote.logo.text\"));\n        pageContent = pageContent.replace(\"[black.text]\", LabelGrabber.INSTANCE.getLabel(\"remote.black.text\"));\n        pageContent = pageContent.replace(\"[clear.text]\", LabelGrabber.INSTANCE.getLabel(\"remote.clear.text\"));\n        pageContent = pageContent.replace(\"[next.text]\", LabelGrabber.INSTANCE.getLabel(\"remote.next.text\"));\n        pageContent = pageContent.replace(\"[prev.text]\", LabelGrabber.INSTANCE.getLabel(\"remote.prev.text\"));\n        pageContent = pageContent.replace(\"[nextitem.text]\", LabelGrabber.INSTANCE.getLabel(\"remote.nextitem.text\"));\n        pageContent = pageContent.replace(\"[previtem.text]\", LabelGrabber.INSTANCE.getLabel(\"remote.previtem.text\"));\n        pageContent = pageContent.replace(\"[logout.text]\", LabelGrabber.INSTANCE.getLabel(\"remote.logout.text\"));\n        pageContent = pageContent.replace(\"[schedule]\", LabelGrabber.INSTANCE.getLabel(\"schedule.heading\"));\n        pageContent = pageContent.replace(\"[search]\", LabelGrabber.INSTANCE.getLabel(\"rcs.search\"));\n        pageContent = pageContent.replace(\"[songsearch]\", LabelGrabber.INSTANCE.getLabel(\"rcs.song.search\"));\n        pageContent = pageContent.replace(\"[biblesearch]\", LabelGrabber.INSTANCE.getLabel(\"rcs.bible.search\"));\n        pageContent = pageContent.replace(\"[click.to.add]\", LabelGrabber.INSTANCE.getLabel(\"click.to.add\"));\n        pageContent = pageContent.replace(\"[bible.version]\", LabelGrabber.INSTANCE.getLabel(\"bible.version\"));\n        return pageContent;\n    }\n\n    /**\n     * A bunch of checks to check whether the live panel that we grab the lyrics\n     * from has fully initialised. Rather hacky but works for now at least.\n     * <p>\n     *\n     * @return true if we're initialised properly and ok to continue, false if\n     * not.\n     */\n    private boolean checkInitialised() {\n        if (QueleaApp.get() == null) {\n            return false;\n        }\n        if (QueleaApp.get().getMainWindow() == null) {\n            return false;\n        }\n        if (QueleaApp.get().getMainWindow().getMainPanel() == null) {\n            return false;\n        }\n        if (QueleaApp.get().getMainWindow().getMainPanel().getLivePanel() == null) {\n            return false;\n        }\n        if (QueleaApp.get().getMainWindow().getMainPanel().getLivePanel() == null) {\n            return false;\n        }\n        if (QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().getLyricsPanel() == null) {\n            return false;\n        }\n        if (QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().getLyricsPanel().getLyricsList() == null) {\n            return false;\n        }\n        if (QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().getLyricsPanel().getLyricsList().getSelectionModel() == null) {\n            return false;\n        }\n        if (QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().getLyricsPanel().getLyricsList().getSelectionModel().getSelectedItem() == null) {\n            return false;\n        }\n        return true;\n    }\n\n    /**\n     * Read a file and return it as a string.\n     * <p>\n     *\n     * @param path the path to read the file from.\n     * @return a string with the file contents.\n     * @throws IOException if something goes wrong.\n     */\n    public static String readFile(String path) throws IOException {\n        byte[] encoded = Files.readAllBytes(Paths.get(path));\n        return Charset.forName(\"UTF-8\").decode(ByteBuffer.wrap(encoded)).toString();\n\n    }\n\n    private class ParameterFilter extends Filter {\n\n        @Override\n        public String description() {\n            return \"Parses the requested URI for parameters\";\n        }\n\n        @Override\n        public void doFilter(HttpExchange exchange, Chain chain)\n                throws IOException {\n            parseGetParameters(exchange);\n            parsePostParameters(exchange);\n            chain.doFilter(exchange);\n        }\n\n        private void parseGetParameters(HttpExchange exchange)\n                throws UnsupportedEncodingException {\n\n            Map<String, Object> parameters = new HashMap<>();\n            URI requestedUri = exchange.getRequestURI();\n            String query = requestedUri.getRawQuery();\n            parseQuery(query, parameters);\n            exchange.setAttribute(\"parameters\", parameters);\n        }\n\n        private void parsePostParameters(HttpExchange exchange)\n                throws IOException {\n\n            if (\"post\".equalsIgnoreCase(exchange.getRequestMethod())) {\n                @SuppressWarnings(\"unchecked\")\n                Map<String, Object> parameters\n                        = (Map<String, Object>) exchange.getAttribute(\"parameters\");\n                InputStreamReader isr\n                        = new InputStreamReader(exchange.getRequestBody(), \"utf-8\");\n                BufferedReader br = new BufferedReader(isr);\n                String query = br.readLine();\n                parseQuery(query, parameters);\n            }\n        }\n\n        @SuppressWarnings(\"unchecked\")\n        private void parseQuery(String query, Map<String, Object> parameters)\n                throws UnsupportedEncodingException {\n\n            if (query != null) {\n                String[] pairs = query.split(\"[&]\");\n\n                for (String pair : pairs) {\n                    String[] param = pair.split(\"[=]\");\n\n                    String key = null;\n                    String value = null;\n                    if (param.length > 0) {\n                        key = URLDecoder.decode(param[0],\n                                System.getProperty(\"file.encoding\"));\n                    }\n\n                    if (param.length > 1) {\n                        value = URLDecoder.decode(param[1],\n                                System.getProperty(\"file.encoding\"));\n                    }\n\n                    if (parameters.containsKey(key)) {\n                        Object obj = parameters.get(key);\n                        if (obj instanceof List<?>) {\n                            List<String> values = (List<String>) obj;\n                            values.add(value);\n                        } else if (obj instanceof String) {\n                            List<String> values = new ArrayList<>();\n                            values.add((String) obj);\n                            values.add(value);\n                            parameters.put(key, values);\n                        }\n                    } else {\n                        parameters.put(key, value);\n                    }\n                }\n            }\n        }\n    }\n\n    private class FileHandler implements HttpHandler {\n\n        private final String file;\n\n        public FileHandler(String file) {\n            this.file = file;\n        }\n\n        @Override\n        public void handle(HttpExchange t) throws IOException {\n            byte[] ret = fileCache.get(file);\n            if (ret == null) {\n                ret = Files.readAllBytes(Paths.get(file));\n                if (USE_CACHE) {\n                    fileCache.put(file, ret);\n                }\n            }\n            t.sendResponseHeaders(200, ret.length);\n            try (OutputStream os = t.getResponseBody()) {\n                os.write(ret);\n            }\n        }\n\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/EasySlidesImportDialog.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.FileFilters;\n\n/**\n * The easyslides import dialog, used for importing songs from easyslides.\n * @author Michael\n */\npublic class EasySlidesImportDialog extends ImportDialog {\n    \n    public EasySlidesImportDialog() {\n        super(new String[]{\n                    LabelGrabber.INSTANCE.getLabel(\"easyslides.import.line1\")\n                }, FileFilters.XML_EASYSLIDES, new EasySlidesParser(), ImportDialogOptions.allowZip());\n    }\n    \n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/EasySlidesParser.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * Copyright (C) 2012 Michael Berry\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport java.io.File;\nimport java.io.FileInputStream;\nimport java.io.IOException;\nimport java.util.ArrayList;\nimport java.util.List;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport javax.xml.parsers.DocumentBuilder;\nimport javax.xml.parsers.DocumentBuilderFactory;\nimport javax.xml.parsers.ParserConfigurationException;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.UnicodeReader;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.StatusPanel;\nimport org.w3c.dom.DOMException;\nimport org.w3c.dom.Document;\nimport org.w3c.dom.Node;\nimport org.w3c.dom.NodeList;\nimport org.xml.sax.InputSource;\nimport org.xml.sax.SAXException;\n\n/**\n *\n * @author Michael\n */\npublic class EasySlidesParser implements SongParser {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n\n    @Override\n    public List<SongDisplayable> getSongs(File file, StatusPanel statusPanel) throws IOException {\n        try {\n            ArrayList<SongDisplayable> ret = new ArrayList<>();\n            DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();\n            DocumentBuilder builder = factory.newDocumentBuilder();\n            Document doc = builder.parse(new InputSource(new UnicodeReader(new FileInputStream(file), Utils.getEncoding(file))));\n            NodeList songs = doc.getChildNodes().item(0).getChildNodes();\n            for (int i = 0; i < songs.getLength(); i++) {\n                NodeList attribNodes = songs.item(i).getChildNodes();\n                String title = null, author = \"\", capo = \"\", copyright = \"\", lyrics = \"\";\n                for (int j = 0; j < attribNodes.getLength(); j++) {\n                    Node curNode = attribNodes.item(j);\n                    if (curNode.getNodeName().equalsIgnoreCase(\"title1\")) {\n                        title = curNode.getTextContent();\n                    }\n                    if (curNode.getNodeName().equalsIgnoreCase(\"writer\")) {\n                        author = curNode.getTextContent();\n                    }\n                    if (curNode.getNodeName().equalsIgnoreCase(\"capo\")) {\n                        capo = curNode.getTextContent();\n                    }\n                    if (curNode.getNodeName().equalsIgnoreCase(\"copyright\")) {\n                        copyright = curNode.getTextContent();\n                    }\n                    if (curNode.getNodeName().equalsIgnoreCase(\"contents\")) {\n                        lyrics = curNode.getTextContent();\n                    }\n                }\n                if (title == null) {\n                    continue;\n                }\n                SongDisplayable song = new SongDisplayable(title, author);\n                song.setCopyright(copyright);\n                if (!capo.equalsIgnoreCase(\"-1\")) {\n                    song.setCapo(capo);\n                }\n                song.setLyrics(getLyrics(lyrics));\n                ret.add(song);\n            }\n            return ret;\n        } catch (ParserConfigurationException | SAXException | IOException | DOMException ex) {\n            LOGGER.log(Level.WARNING, \"Something went wrong importing easyslides songs\", ex);\n            return null;\n        }\n    }\n\n    private String getLyrics(String lyrics) {\n        String[] sections = lyrics.split(\"\\\\[.+?\\\\]\");\n        StringBuilder ret = new StringBuilder();\n        for (String section : sections) {\n            section = section.trim();\n            if (section.isEmpty()) {\n                continue;\n            }\n            ret.append(section).append(\"\\n\\n\");\n        }\n        return ret.toString().trim();\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/EasyWorshipImportDialog.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.FileFilters;\n\n/**\n * The easyworship import dialog, used for importing songs from easyworship.\n * @author Michael\n */\npublic class EasyWorshipImportDialog extends ImportDialog {\n    \n    public EasyWorshipImportDialog() {\n        super(new String[]{\n                    LabelGrabber.INSTANCE.getLabel(\"easyworship.import.line1\")\n                }, FileFilters.SONGS_MB, new EasyWorshipParser(), ImportDialogOptions.disallow());\n    }\n    \n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/EasyWorshipParser.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * Copyright (C) 2012 Michael Berry\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport java.io.File;\nimport java.io.IOException;\nimport java.nio.charset.Charset;\nimport java.sql.Connection;\nimport java.sql.DriverManager;\nimport java.sql.ResultSet;\nimport java.sql.SQLException;\nimport java.util.ArrayList;\nimport java.util.List;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport java.util.regex.Matcher;\nimport java.util.regex.Pattern;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.windows.main.StatusPanel;\n\n/**\n * A parser for parsing the Easyworship database. Easyworship uses the Paradox\n * database format.\n * <p>\n * @author Michael\n */\npublic class EasyWorshipParser implements SongParser {\n\n    private static final String FNT = \"\\\\fntnamaut\";\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n\n    /**\n     * Parse the file to get the songs.\n     * <p>\n     * @param file the Songs.MB file.\n     * @param statusPanel the status panel to update.\n     * @return a list of the songs found in the Songs.MB file.\n     * @throws IOException if something went wrong with the import.\n     */\n    @Override\n    public List<SongDisplayable> getSongs(File file, StatusPanel statusPanel) throws IOException {\n        List<SongDisplayable> ret = new ArrayList<>();\n        try {\n            Class.forName(\"com.googlecode.paradox.Driver\");\n            LOGGER.log(Level.INFO, \"Easyworship importer from {0}\", file.getParent());\n            Connection conn = DriverManager.getConnection(\"jdbc:paradox:/\" + file.getParent());\n            ResultSet rs = conn.createStatement().executeQuery(\"SELECT * FROM \\\"Songs.DB\\\"\");\n            while(rs.next()) {\n                String title = rs.getString(\"Title\");\n                String author = rs.getString(\"Author\");\n                if(author == null) {\n                    author = \"\";\n                }\n                String lyrics = rs.getString(\"Words\");\n                String copyright = rs.getString(\"Copyright\");\n                String num = rs.getString(\"Song Number\");\n                ret.add(getSong(title, author, lyrics, copyright, num));\n            }\n\n        }\n        catch(ClassNotFoundException | SQLException ex) {\n            LOGGER.log(Level.INFO, \"Couldn't import using SQL from \" + file.getParent(), ex);\n        }\n        return ret;\n    }\n\n    private SongDisplayable getSong(String title, String author, String songContent, String copyright, String ccli) {\n        if(songContent.contains(FNT)) {\n            int fntInd = songContent.indexOf(FNT) + FNT.length();\n            songContent = songContent.substring(fntInd);\n        }\n        songContent = songContent.replace(\"\\\\line\", \"\\n\");\n        songContent = songContent.replaceAll(\"\\\\\\\\[a-z0-9]+[ ]?\", \"\");\n        if(songContent.contains(\"{{\")) {\n            songContent = songContent.substring(0, songContent.indexOf(\"{{\"));\n        }\n        songContent = trimLines(songContent);\n        songContent = songContent.replaceAll(\"\\n[\\n]+\", \"\\n\\n\");\n        Matcher matcher = Pattern.compile(\"(\\\\\\\\\\\\'([0-9a-f][0-9a-f]))\").matcher(songContent);\n        while(matcher.find()) {\n            String num = matcher.group(2);\n            int b = Integer.parseInt(num, 16);\n            char val = new String(new byte[]{(byte) b}, Charset.forName(\"windows-1252\")).charAt(0);\n            songContent = songContent.replace(matcher.group(1), Character.toString(val));\n        }\n        songContent = songContent.replace(\"{\", \"\");\n        songContent = songContent.replace(\"}\", \"\");\n        songContent = trimLines(songContent);\n        SongDisplayable song = new SongDisplayable(title, author);\n        song.setLyrics(songContent);\n        song.setCopyright(copyright);\n        song.setCcli(ccli);\n        if(song.getTitle() == null || song.getTitle().isEmpty()) { //Invalid song, so forget it\n            song = null;\n        }\n        return song;\n    }\n\n    private String trimLines(String oldContent) {\n        StringBuilder ret = new StringBuilder();\n        for(String line : oldContent.split(\"\\n\")) {\n            ret.append(line.trim()).append(\"\\n\");\n        }\n        return ret.toString().trim();\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/ElevantoImportDialog.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport java.text.DateFormat;\nimport java.text.SimpleDateFormat;\nimport java.util.Calendar;\nimport java.util.Date;\nimport java.util.HashMap;\nimport java.util.Map;\nimport java.util.TimeZone;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport javafx.beans.value.ChangeListener;\nimport javafx.beans.value.ObservableValue;\nimport javafx.concurrent.Task;\nimport javafx.event.ActionEvent;\nimport javafx.fxml.FXML;\nimport javafx.fxml.FXMLLoader;\nimport javafx.scene.Parent;\nimport javafx.scene.Scene;\nimport javafx.scene.control.Button;\nimport javafx.scene.control.TreeItem;\nimport javafx.scene.control.TreeView;\nimport javafx.scene.image.Image;\nimport javafx.scene.layout.Pane;\nimport javafx.stage.Modality;\nimport javafx.stage.Stage;\nimport org.json.simple.JSONArray;\nimport org.json.simple.JSONObject;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.windows.main.QueleaApp;\n\n/**\n *\n * @author Fabian Mathews\n */\npublic class ElevantoImportDialog extends Stage {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    private final Map<TreeItem<String>, ElevantoPlanDialog> treeViewItemPlanDialogMap = new HashMap<TreeItem<String>, ElevantoPlanDialog>();\n    private final ElevantoParser parser;\n    private final ElevantoLoginDialog loginDialog;\n    \n    @FXML private TreeView serviceView;\n    @FXML private Pane planPane;\n    @FXML private Button okButton;\n    \n    @SuppressWarnings(\"unchecked\")\n    public ElevantoImportDialog() {\n        parser = new ElevantoParser();\n        loginDialog = new ElevantoLoginDialog(this);\n        \n        initModality(Modality.APPLICATION_MODAL);\n        initOwner(QueleaApp.get().getMainWindow());\n        setTitle(LabelGrabber.INSTANCE.getLabel(\"elevanto.import.heading\"));\n\n        try {\n            FXMLLoader loader = new FXMLLoader();\n            loader.setController(this);\n            loader.setResources(LabelGrabber.INSTANCE);\n            Parent root = loader.load(getClass().getResourceAsStream(\"PlanningCenterOnlineImportDialog.fxml\"));\n            Scene scene = new Scene(root);\n            if (QueleaProperties.get().getUseDarkTheme()) {\n                scene.getStylesheets().add(\"org/modena_dark.css\");\n            }\n            setScene(scene);\n\n            serviceView.getSelectionModel().selectedItemProperty()\n                    .addListener((ChangeListener<TreeItem<String>>) this::onServiceViewSelectedItem);\n\n        } catch (Exception e) {\n            LOGGER.log(Level.WARNING, \"Couldn't create planning import dialog\", e);\n        }\n\n        centerOnScreen();\n        getIcons().add(new Image(\"file:icons/elevanto.png\"));        \n    }\n    \n    public ElevantoParser getParser() {\n        return parser;\n    }\n    \n    public void start() {\n        show();\n        loginDialog.start();\n    }\n    \n    // Disable/enable appropriate widgets while a import task is in operation\n    public void enablePlanProgressBars(boolean enable) {        \n        // stop user being able to try to change to another plan and do bad!\n        serviceView.setDisable(enable);     \n        okButton.setDisable(enable);\n    }\n    \n    protected void onServiceViewSelectedItem(ObservableValue<? extends TreeItem<String>> observable,\n                        TreeItem<String> old_val, TreeItem<String> new_val) {\n        TreeItem<String> selectedItem = new_val;        \n        planPane.getChildren().clear();\n        ElevantoPlanDialog planDialog = treeViewItemPlanDialogMap.get(selectedItem);\n        if (planDialog != null) {\n            planPane.getChildren().clear();\n            planPane.getChildren().add(planDialog);\n        }\n    }\n    \n    protected void onLogin() {\n        // update ui to retreive plans and populate the list\n        updatePlans();\n    }\n    \n    @FXML public void onAcceptAction(ActionEvent event) {\n        event.consume();\n        hide();\n    }\n    \n    \n    class UpdatePlanTask extends Task<Void> {\n\n        UpdatePlanTask() {\n        }\n\n        @SuppressWarnings(\"unchecked\")\n        @Override \n        protected Void call() throws Exception {\n            JSONObject response = parser.getServices();\n            processServices(response, serviceView.getRoot());\n            return null;\n        }\n               \n        public String convertToCurrentTimeZone(String p_date) {\n            String convertedDate = \"\";\n            try {\n                DateFormat utcFormat = new SimpleDateFormat(\"yyyy-MM-dd HH:mm:ss\");\n                utcFormat.setTimeZone(TimeZone.getTimeZone(\"UTC\"));\n\n                Date date = utcFormat.parse(p_date);\n\n                DateFormat currentTFormat = new SimpleDateFormat(\"yyyy-MM-dd HH:mm:ss\");\n                currentTFormat.setTimeZone(TimeZone.getTimeZone(getCurrentTimeZone()));\n\n                convertedDate = currentTFormat.format(date);\n            }catch (Exception e){\n                // error\n                LOGGER.log(Level.WARNING, \"Error\", e);\n            }\n\n            return convertedDate;\n        }\n\n        //get the current time zone\n        public String getCurrentTimeZone(){\n            TimeZone tz = Calendar.getInstance().getTimeZone();\n            return tz.getID();\n        }\n    \n        @SuppressWarnings(\"unchecked\")\n        protected void processServices(JSONObject response, TreeItem<String> parentItem)\n        {\n            JSONObject services = (JSONObject)response.get(\"services\");\n            JSONArray serviceJsonArray = (JSONArray)services.get(\"service\");\n            for (Object serviceTypeObj : serviceJsonArray) {\n                JSONObject service = (JSONObject)serviceTypeObj;\n                String serviceTypeId = (String)service.get(\"id\");\n                String serviceName = (String)service.get(\"name\");\n                \n                String date = convertToCurrentTimeZone((String)service.get(\"date\"));\n                if (date != null) {\n                    // grab the date, ignore the time\n                    String[] dateParts = date.split(\" \");\n                    if (dateParts.length >= 1) {\n                        date = dateParts[0];\n                    }\n                }\n                \n                JSONObject plans;\n                try {\n                    plans = (JSONObject)service.get(\"plans\");\n                }\n                catch (Exception e) {\n                    // no plans\n                    continue;\n                }\n                \n                if (plans == null) {\n                    continue;\n                }\n                JSONArray servicePlanArray = (JSONArray)plans.get(\"plan\");\n\n                for (Object planObj : servicePlanArray) {\n                    JSONObject plan = (JSONObject)planObj;\n\n                    TreeItem<String> planItem = new TreeItem<String>(date + \" \" + serviceName);\n                    parentItem.getChildren().add(planItem);\n                    ElevantoPlanDialog planDialog = new ElevantoPlanDialog(ElevantoImportDialog.this, plan);\n                    treeViewItemPlanDialogMap.put(planItem, planDialog);\n                }\n            }\n        }\n    }\n        \n    @SuppressWarnings(\"unchecked\")\n    protected void updatePlans() {\n        \n        serviceView.setShowRoot(false);\n        TreeItem<String> rootItem = new TreeItem<String>();\n        serviceView.setRoot(rootItem);\n        \n        UpdatePlanTask task = new UpdatePlanTask();\n        new Thread(task).start();\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/ElevantoLoginDialog.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport com.sun.net.httpserver.Headers;\nimport com.sun.net.httpserver.HttpContext;\nimport com.sun.net.httpserver.HttpExchange;\nimport com.sun.net.httpserver.HttpHandler;\nimport com.sun.net.httpserver.HttpServer;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport javafx.stage.Stage;\nimport org.javafx.dialog.Dialog;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.LoggerUtils;\nimport java.awt.Desktop;\nimport java.io.ByteArrayOutputStream;\nimport java.io.IOException;\nimport java.io.InputStream;\nimport java.io.OutputStream;\nimport java.net.InetSocketAddress;\nimport java.net.URI;\nimport java.net.URISyntaxException;\nimport java.util.HashMap;\nimport java.util.Map;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\n\n/**\n *\n * @author Fabian Mathews\n */\npublic class ElevantoLoginDialog extends Stage {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    private boolean isLoggedIn = false;\n    private final ElevantoImportDialog importDialog;\n    private HttpServer server;\n        \n    class ElevantoHttpHandler implements HttpHandler {\n        @Override\n        public void handle(HttpExchange t) throws IOException {\n            if (isLoggedIn) {\n                return;\n            }\n           \n            URI uri = t.getRequestURI();\n            String path = uri.getPath();\n            \n            // this work around send a javascript which calls a POST with the URL arguments so we can obtain them as \n            // HttpServer isnt passing them too us!\n            if (path.equals(\"/oauth\")){\n                String msg = LabelGrabber.INSTANCE.getLabel(\"elevanto.loginsuccess.message\");\n                String response = \"<html>\\n\" +\n                    \"<script>\\n\" +\n                    \"\\n\" +\n                    \"   function closeWindow() {\\n\" +\n                    \"        window.open('','_parent','');\\n\" +\n                    \"        window.close();\\n\" +\n                    \"   }\\n\" + \n                    \"\\n\" +\n                    \"    function script() {\\n\" +\n                    \"        var str = window.location.href;\\n\" +\n                    \"        \\n\" +\n                    \"        var xhttp = new XMLHttpRequest();\\n\" +\n                    \"        xhttp.open(\\\"POST\\\", \\\"oauth_post\\\", true);\\n\" +\n                    \"        xhttp.setRequestHeader(\\\"Content-type\\\", \\\"application/x-www-form-urlencoded\\\");\\n\" +\n                    \"        xhttp.send(str);\\n\" +\n                    \"        console.log(str);\\n\" +\n                    \"        closeWindow();\\n\" +\n                    \"    }\\n\" +\n                    \"</script>\\n\" +\n                    \"\\n\" +\n                    \"<body onload=\\\"script();\\\">\\n\" +\n                    msg + \"\\n\" + \n                    \"</body>\\n\" +\n                    \"</html>\";\n                t.sendResponseHeaders(200, response.length());\n                OutputStream os = t.getResponseBody();\n                os.write(response.getBytes());\n                os.close();\n                return;\n            }\n            \n            // source: https://stackoverflow.com/questions/3409348/read-post-request-values-httphandler\n            Headers reqHeaders = t.getRequestHeaders();\n            String contentType = reqHeaders.getFirst(\"Content-Type\");\n            String encoding = \"ISO-8859-1\";\n            \n            // read the query string from the request body\n            String qry;\n            InputStream in = t.getRequestBody();\n            try {\n                ByteArrayOutputStream out = new ByteArrayOutputStream();\n                byte[] buf = new byte[4096];\n                for (int n = in.read(buf); n > 0; n = in.read(buf)) {\n                    out.write(buf, 0, n);\n                }\n                qry = new String(out.toByteArray(), encoding);\n            } finally {\n                in.close();\n            }\n            \n            String[] urlSplit = qry.split(\"[#]\");\n            String[] paramSplit = urlSplit[1].split(\"[&]\");\n            \n            Map <String,String> params = new HashMap<String, String>();\n            for (int i = 0; i < paramSplit.length; ++i) {\n                String[] pair = paramSplit[i].split(\"=\");\n                if (pair.length>1) {\n                    params.put(pair[0], pair[1]);\n                }else{\n                    params.put(pair[0], \"\");\n                }\n            }\n            \n            if (params.containsKey(\"access_token\")) {\n                String accessToken = (String)params.get(\"access_token\");\n                String refreshToken = (String)params.get(\"refresh_token\");\n                int expiresIn = Integer.parseInt(params.get(\"expires_in\"));\n                \n                importDialog.getParser().setAccessToken(accessToken);\n                isLoggedIn = true;\n                importDialog.onLogin();\n                hide();\n            }\n            else if (params.containsKey(\"error\")) {\n                String error = (String)params.get(\"error\");\n                String errorDesc = (String)params.get(\"error_description\");\n                \n                LOGGER.log(Level.WARNING, \"Error logging into Elevanto\", errorDesc);\n                Dialog.showWarning(LabelGrabber.INSTANCE.getLabel(\"pco.loginerror.title\"), LabelGrabber.INSTANCE.getLabel(\"elevanto.loginerror.warning\") + \":\" + errorDesc);\n            }\n\n            shutdownServer();            \n        }\n    }\n    \n    public ElevantoLoginDialog() {\n        importDialog = null;\n    }\n    \n    public ElevantoLoginDialog(ElevantoImportDialog importDlg) {\n        importDialog = importDlg;\n        initOwner(importDialog);\n    }  \n    \n    private void shutdownServer() {\n        server.stop(1);\n    }\n    \n    public void start() {\n        if (isLoggedIn) {\n            return;\n        }\n\n        // host a local server to intercept the elevanto redirect\n        // https://stackoverflow.com/questions/3732109/simple-http-server-in-java-using-only-java-se-api\n        try {\n            server = HttpServer.create(new InetSocketAddress(7070), 0);\n            HttpContext context = server.createContext(\"/\", new ElevantoHttpHandler());\n            server.setExecutor(null); // creates a default executor\n            server.start();\n        }\n        catch (Exception e) {\n            LOGGER.log(Level.WARNING, \"Error\", e);\n        }\n        \n        // redirect url: http://localhost:7070/oauth\n        String url = \"https://api.elvanto.com/oauth?type=user_agent&client_id=\" + QueleaProperties.get().getElevantoClientId() + \"&redirect_uri=http%3A%2F%2Flocalhost%3A7070%2Foauth&scope=ManageServices%2CManageSongs%2CManageCalendar\";\n\n        // https://stackoverflow.com/questions/5226212/how-to-open-the-default-webbrowser-using-java\n        if(Desktop.isDesktopSupported() && !Utils.isLinux()){\n            Desktop desktop = Desktop.getDesktop();\n            try {\n                desktop.browse(new URI(url));\n            } catch (IOException | URISyntaxException e) {\n                LOGGER.log(Level.WARNING, \"Error\", e);\n            }\n        }else{\n            Runtime runtime = Runtime.getRuntime();\n            try {\n                runtime.exec(\"xdg-open \" + url);\n            } catch (IOException e) {\n                LOGGER.log(Level.WARNING, \"Error\", e);\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/ElevantoParser.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n *\n * This program is free software: you can redistribute it and/or modify it under\n * the terms of the GNU General Public License as published by the Free Software\n * Foundation, either version 3 of the License, or (at your option) any later\n * version.\n *\n * This program is distributed in the hope that it will be useful, but WITHOUT\n * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\n * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License along with\n * this program. If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport java.text.DateFormat;\nimport java.text.SimpleDateFormat;\nimport java.util.Arrays;\nimport java.util.Calendar;\nimport java.util.Date;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport org.apache.http.Header;\nimport org.apache.http.HttpEntity;\nimport org.apache.http.HttpResponse;\nimport org.apache.http.client.HttpClient;\nimport org.apache.http.client.methods.HttpPost;\nimport org.apache.http.entity.StringEntity;\nimport org.apache.http.impl.client.HttpClients;\nimport org.apache.http.protocol.BasicHttpContext;\nimport org.apache.http.protocol.HttpContext;\nimport org.apache.http.util.EntityUtils;\nimport org.json.simple.JSONObject;\nimport org.json.simple.parser.JSONParser;\nimport org.quelea.services.utils.LoggerUtils;\n\n/**\n *\n * @author Fabian Mathews\n */\npublic class ElevantoParser {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    private final HttpClient httpClient;\n    private final HttpContext httpContext;\n    \n    private String accessToken;\n\n    public ElevantoParser() {\n        httpClient = HttpClients.createDefault();\n        httpContext = new BasicHttpContext();\n    }\n\n    public void setAccessToken(String at) {\n        accessToken = at;\n    }\n\n    private String post(String urlString, JSONObject content) {\n        try {\n            HttpPost httpost = new HttpPost(urlString);\n            httpost.setHeader(\"Authorization\",\"Bearer \" + accessToken);\n          \n            StringEntity params = new StringEntity(content.toString());\n            httpost.addHeader(\"content-type\", \"application/json\");\n            httpost.setEntity(params);\n            LOGGER.log(Level.INFO, \"Params: {0}\", params);\n            \n            HttpResponse response = httpClient.execute(httpost, httpContext);\n\n            LOGGER.log(Level.INFO, \"Response code {0}\", response.getStatusLine().getStatusCode());\n            for (Header header : response.getAllHeaders()) {\n                LOGGER.log(Level.INFO, \"Response header ({0}:{1})\", new Object[]{header.getName(), header.getValue()});\n            }\n\n            HttpEntity entity = response.getEntity();\n            String text = EntityUtils.toString(entity);\n            EntityUtils.consume(entity);\n            return text;\n        } catch (Exception e) {\n            LOGGER.log(Level.WARNING, \"Error\", e);\n        }\n\n        return null;\n    }\n    \n    private JSONObject postJson(String urlString, JSONObject content) {\n        try {\n            String jsonStr = post(urlString, content);\n\n            // fix up arrays JSONParser wont handle\n            if (jsonStr.startsWith(\"[\") && jsonStr.endsWith(\"]\")) {\n                jsonStr = \"{\\\"array\\\":\" + jsonStr + \"}\";\n            }\n\n            JSONParser parser = new JSONParser();\n            JSONObject json = (JSONObject) parser.parse(jsonStr);\n            \n            // check for error, just log them\n            try {\n                String status = (String)json.get(\"status\");\n                if (status.equals(\"fail\")) {                    \n                    String errorMsg = (String)((JSONObject)json.get(\"error\")).get(\"message\");\n                    LOGGER.log(Level.WARNING, \"Error\", errorMsg);\n                }\n            }\n            catch (Exception e) {\n            }\n            \n            return json;\n        } catch (Exception e) {\n            LOGGER.log(Level.WARNING, \"Error\", e);\n        }\n\n        return null;\n    }\n\n    // Contains organisation data - service types\n    @SuppressWarnings(\"unchecked\")\n    public JSONObject getServices() {\n        JSONObject json = new JSONObject();\n        json.put(\"page\", \"1\");\n        json.put(\"page_size\", \"100\");\n        json.put(\"status\", \"published\");\n        \n        // set suitable start and end date\n        Date date = Calendar.getInstance().getTime();        \n        DateFormat df = new SimpleDateFormat(\"yyyy-MM-dd\");\n        String startDate = df.format(date);  \n  \n        Calendar c = Calendar.getInstance();\n        c.add(Calendar.DATE, 14);\n        date = c.getTime();\n        String endDate = df.format(date);  \n\n        json.put(\"start\", startDate);\n        json.put(\"end\", endDate);\n                \n        json.put(\"fields\", Arrays.asList(\"series_name\", \"service_times\", \"plans\", \"volunteers\", \"songs\", \"files\", \"notes\"));\n        return postJson(\"https://api.elvanto.com/v1/services/getAll.json\", json);\n    }\n\n    // Arrangement data\n    @SuppressWarnings(\"unchecked\")\n    public JSONObject arrangement(String arrangementId) {\n        JSONObject json = new JSONObject();\n        json.put(\"id\", arrangementId);\n        return postJson(\"https://api.elvanto.com/v1/songs/arrangements/getInfo.json\", json);\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/ElevantoPlanDialog.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport java.util.ArrayList;\nimport java.util.HashMap;\nimport java.util.List;\nimport java.util.Map;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport java.util.regex.Matcher;\nimport java.util.regex.Pattern;\nimport javafx.event.ActionEvent;\nimport javafx.fxml.FXML;\nimport javafx.fxml.FXMLLoader;\nimport javafx.scene.Parent;\nimport javafx.scene.control.ProgressBar;\nimport javafx.scene.control.SelectionMode;\nimport javafx.scene.control.TreeItem;\nimport javafx.scene.control.TreeView;\nimport javafx.scene.layout.BorderPane;\nimport javafx.concurrent.Task;\nimport javafx.scene.layout.VBox;\nimport org.apache.commons.io.FilenameUtils;\nimport org.json.simple.JSONArray;\nimport org.json.simple.JSONObject;\nimport org.quelea.data.displayable.Displayable;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.FileFilters;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.QueleaApp;\n\n/**\n *\n * @author Fabian Mathews\n */\npublic class ElevantoPlanDialog extends BorderPane {\n    \n    enum PlanType {\n        MEDIA,\n        SONG,\n        CUSTOM_SLIDES,\n        UNKNOWN,\n    }\n    \n    enum MediaType {\n        PRESENTATION,\n        PDF,\n        VIDEO,\n        IMAGE,        \n        UNKNOWN,\n    }\n    \n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    private final Map<TreeItem<String>, JSONObject> treeViewItemMap = new HashMap<>();\n    private final ElevantoImportDialog importDialog;\n    \n    private JSONObject  planJSON;\n    \n    @FXML private TreeView planView;\n    @FXML private ProgressBar totalProgress;\n    @FXML private ProgressBar itemProgress;\n    @FXML private VBox buttonBox;\n    @FXML private VBox progressBox;\n    \n    public ElevantoPlanDialog() {   \n        importDialog = null;\n    }\n    \n    public ElevantoPlanDialog(ElevantoImportDialog importDlg, JSONObject plan) {\n        importDialog = importDlg;\n        planJSON = plan;\n              \n        try {\n            FXMLLoader loader = new FXMLLoader();\n            loader.setController(this);\n            loader.setResources(LabelGrabber.INSTANCE);\n            Parent root = loader.load(getClass().getResourceAsStream(\"PlanningCenterOnlinePlanDialog.fxml\"));\n            setCenter(root);\n            planView.getSelectionModel().setSelectionMode(SelectionMode.MULTIPLE);\n            enablePlanProgressBars(false);\n            LOGGER.log(Level.INFO, \"Initialised dialog, updating view\");\n            updateView();\n        \n        } catch (Exception e) {\n            LOGGER.log(Level.WARNING, \"Error\", e);\n        }       \n    }\n    \n    protected PlanType getItemPlanType(JSONObject item) {\n        // valid song object is a song\n        try {\n            JSONObject song = (JSONObject)item.get(\"song\");\n            return PlanType.SONG;\n        }\n        catch (Exception e) {\n            \n        }\n        \n        return PlanType.UNKNOWN;\n    }\n            \n    @SuppressWarnings(\"unchecked\")\n    protected void updateView() {\n        LOGGER.log(Level.INFO, \"JSON is {0}\", planJSON);\n        \n        planView.setShowRoot(false);\n        TreeItem<String> rootTreeItem = new TreeItem<>();\n        planView.setRoot(rootTreeItem);\n        \n        JSONObject itemsObj = (JSONObject)planJSON.get(\"items\");\n        JSONArray itemArray = (JSONArray)itemsObj.get(\"item\");\n        for (Object itemObj : itemArray) {\n            JSONObject item = (JSONObject)itemObj;\n            \n            PlanType planType = getItemPlanType(item);\n            switch (planType)\n            {\n                case MEDIA:\n                    addToView_PlanMedia(item, rootTreeItem);\n                    break;\n                    \n                case SONG:\n                    addToView_PlanSong(item, rootTreeItem);\n                    break;\n                    \n                case CUSTOM_SLIDES:\n                    addToView_CustomSlides(item, rootTreeItem);\n                    break;\n                    \n                default:\n                    break;\n            }\n        }\n    }\n    \n    protected void addToView_PlanMedia(JSONObject item, TreeItem<String> parentTreeItem) {\n    }\n    \n    protected void addToView_PlanSong(JSONObject item, TreeItem<String> parentTreeItem) {\n        JSONObject song = (JSONObject)item.get(\"song\");\n        String title = \"Song: \" + (String)song.get(\"title\");\n        TreeItem<String> treeItem = new TreeItem<>(title);\n        parentTreeItem.getChildren().add(treeItem);\n        treeViewItemMap.put(treeItem, item);\n    }\n    \n    protected void addToView_CustomSlides(JSONObject item, TreeItem<String> parentTreeItem) {\n    }\n    \n    @SuppressWarnings(\"unchecked\")\n    @FXML private void onImportAllAction(ActionEvent event) {\n        List<TreeItem<String> > allTreeItems = (List<TreeItem<String> >)planView.getRoot().getChildren();\n        importSelected(allTreeItems);\n    }\n    \n    @SuppressWarnings(\"unchecked\")\n    @FXML private void onImportSelectedAction(ActionEvent event) {\n        List<TreeItem<String> > selectedTreeItems = (List<TreeItem<String> >)planView.getSelectionModel().getSelectedItems();\n        importSelected(selectedTreeItems);\n    }\n    \n    @FXML private void onRefreshAction(ActionEvent event) {\n        updateView();\n    }\n    \n    // Disable/enable appropriate widgets while a import task is in operation\n    private void enablePlanProgressBars(boolean enable) {\n        buttonBox.setDisable(enable);\n        progressBox.setVisible(enable);\n        planView.setDisable(enable);\n        \n        // stop user being able to try to change to another plan and do bad!\n        importDialog.enablePlanProgressBars(enable);        \n    }\n    \n    class ImportTask extends Task<Void> {\n\n        List<TreeItem<String> > selectedTreeItems;\n        List<Displayable>       importItems = new ArrayList<>();\n\n        ImportTask(List<TreeItem<String> > selectedTreeItems) {\n            this.selectedTreeItems = selectedTreeItems;\n        }\n\n        @Override \n        protected Void call() throws Exception {\n            enablePlanProgressBars(true);\n            totalProgress.setProgress(0);\n\n            int index = 0;\n            for (TreeItem<String> treeItem : selectedTreeItems) {\n                JSONObject item = treeViewItemMap.get(treeItem);\n\n                itemProgress.setProgress(0);\n\n                PlanType planType = getItemPlanType(item);\n                switch (planType)\n                {\n                    case MEDIA:\n                        prepare_PlanMedia(item, treeItem);\n                        break;\n\n                    case SONG:\n                        prepare_PlanSong(item, treeItem);\n                        break;\n\n                    case CUSTOM_SLIDES:\n                        prepare_CustomSlides(item, treeItem);\n                        break;\n\n                    default:\n                        break;\n                }\n\n                ++index;                \n                totalProgress.setProgress((double)index / (double)selectedTreeItems.size());\n            }\n\n            enablePlanProgressBars(false);\n            return null;\n        }\n        \n        @Override \n        protected void succeeded() { \n            importTaskSucceeded(this);\n            super.succeeded();\n        }\n        \n        protected void prepare_PlanMedia(JSONObject item, TreeItem<String> treeItem) {\n        }\n        \n        protected void prepare_PlanMedia_fromMediaJSON(JSONObject mediaJSON) {\n        }\n        \n        protected void prepare_PlanSong(JSONObject item, TreeItem<String> treeItem) {\n            JSONObject songJSON = (JSONObject)item.get(\"song\");\n            String title = (String)songJSON.get(\"title\");\n            String author = (String)songJSON.get(\"artist\");\n\n            String arrangementId = (String)((JSONObject)songJSON.get(\"arrangement\")).get(\"id\");\n            JSONObject response = importDialog.getParser().arrangement(arrangementId);\n            JSONObject arrangement = (JSONObject)((JSONArray)response.get(\"arrangement\")).get(0);\n            String lyrics = cleanLyrics((String)arrangement.get(\"lyrics\"));\n            //JSONArray sequence = (JSONArray)arrangement.get(\"sequence\");\n\n            String ccli = (String)songJSON.get(\"ccli_number\");\n            String copyright = (String)arrangement.get(\"copyright\");\n\n            SongDisplayable song = new SongDisplayable(title, author);\n            song.setLyrics(lyrics);\n            song.setCopyright(copyright);\n            song.setCcli(ccli);     \n\n            Utils.updateSongInBackground(song, true, false);\n            importItems.add(song);\n        }\n\n        protected void prepare_CustomSlides(JSONObject item, TreeItem<String> treeItem) {\n        }\n    }\n    \n    // This MUST be run in the main thread\n    // This adds the prepared displayable items into Quelea\n    private void importTaskSucceeded(ImportTask importTask) {\n        for (Displayable displayable : importTask.importItems) {\n            QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getScheduleList().add(displayable);\n        }\n        \n        QueleaApp.get().getMainWindow().getMainPanel().getPreviewPanel().refresh();\n    }\n    \n    private void importSelected(List<TreeItem<String> > selectedTreeItems) {\n        ImportTask task = new ImportTask(selectedTreeItems);\n        new Thread(task).start();\n    }\n    \n    protected MediaType classifyMedia(String fileName) {                \n        String extension = \"*.\" + FilenameUtils.getExtension(fileName);\n        if (FileFilters.POWERPOINT.getExtensions().contains(extension)) {\n            return MediaType.PRESENTATION;\n        }\n        \n        if (FileFilters.PDF_GENERIC.getExtensions().contains(extension)) {\n            return MediaType.PDF;\n        }\n                \n        if (FileFilters.VIDEOS.getExtensions().contains(extension)) {\n            return MediaType.VIDEO;\n        }\n        \n        if (FileFilters.IMAGES.getExtensions().contains(extension)) {\n            return MediaType.IMAGE;\n        }\n        \n        return MediaType.UNKNOWN;\n    }\n            \n    // clean up things like (C2) transform it to (Chorus 2)\n    // so Quelea can handle it\n    protected String cleanLyrics(String lyrics) {\n        Pattern titleExp = Pattern.compile(\"^\\\\(?(Verse|Chorus|Pre-Chorus|Pre Chorus|Tag|Outro|Bridge|Misc|Interlude|Ending)\\\\)?\\\\s?(\\\\d?)|\\\\(?(\\\\S)(\\\\d+)\\\\)?$\", Pattern.MULTILINE | Pattern.CASE_INSENSITIVE);\n        \n        // allows us to expand abbreviations to full name (ensure Key value is all uppercase)\n        Map<String, String> titleDict = new HashMap<String, String>();\n        titleDict.put(\"C\", \"Chorus\");\n        titleDict.put(\"PC\", \"Pre-Chorus\");\n        titleDict.put(\"V\", \"Verse\");\n        titleDict.put(\"T\", \"Tag\");\n        titleDict.put(\"O\", \"Outro\");\n        titleDict.put(\"B\", \"Bridge\");\n        titleDict.put(\"M\", \"Misc\");\n        titleDict.put(\"E\", \"Ending\");\n        titleDict.put(\"I\", \"Interlude\");\n        \n        class TitleTextBlock\n        {\n            public String title;\n            public String text;\n            \n            public TitleTextBlock(String title, String text) {\n                this.title = title;\n                this.text = text;\n            }\n        }\n        List<TitleTextBlock> titleTextBlockList = new ArrayList<TitleTextBlock>();\n        \n       \n        // lets clean up some funky stuff we don't want the audience to know about:\n        // remove line repat X time tags - (5X) \n        // and (REPEAT) tags\n        Pattern removeExp = Pattern.compile(\"\\\\(\\\\d+X\\\\)|\\\\(REPEAT\\\\)\", Pattern.CASE_INSENSITIVE);\n        Matcher m = removeExp.matcher(lyrics);\n        lyrics = m.replaceAll(\"\").trim();\n        \n        // remove embedded choords (wrapped in brackets)\n        Pattern removeChoordsExp = Pattern.compile(\"(?m)(^| |\\\\[|\\\\b)([A-G](##?|bb?)?((sus|maj|min|aug|dim)\\\\d?)?(\\\\/[A-G](##?|bb?)?)?)(\\\\]| (?!\\\\w)|$)\");\n        Matcher m2 = removeChoordsExp.matcher(lyrics);\n        lyrics = m2.replaceAll(\"\");\n        \n        int lastMatchEnd = -1;\n        String lastTitle = \"\";\n        Matcher match = titleExp.matcher(lyrics);        \n        while (match.find()) {            \n            try {\n                int groupCount = match.groupCount();\n                String title = (match.group(1) != null) ? match.group(1) : \"\";\n                title = (match.group(3) != null) ? match.group(3) : title;\n                if (!title.isEmpty()) {\n                    // expand abbreviations\n                    if (titleDict.containsKey(title.toUpperCase())) {\n                        title = titleDict.get(title);\n                    }\n                }\n\t\t\t\t\n                String number =  (match.group(2) != null) ? match.group(2) : \"\";\n                number = (match.group(4) != null) ? match.group(4) : number;\n\n                title = title + \" \" + number;\n                title = title.trim();\n\n\t\t\t\tint matchStart = match.start();\n                if (lastMatchEnd != -1) {\n                    String text = lyrics.substring(lastMatchEnd, matchStart).trim();\n                    titleTextBlockList.add(new TitleTextBlock(lastTitle, text));\n                }\n\t\t\t\telse {\n\t\t\t\t\t// if the first title is malformed, at least this will pull down the text for the user to be able to fix it up\n\t\t\t\t\tif (matchStart != 0) {\n\t\t\t\t\t\tString text = lyrics.substring(0, matchStart).trim();\n\t\t\t\t\t\ttitleTextBlockList.add(new TitleTextBlock(\"Unknown\", text));\n\t\t\t\t\t}\n\t\t\t\t}\n                \n                lastTitle = title;\n            }\n            catch (Exception e) {\n                LOGGER.log(Level.WARNING, \"Error\", e);\n            }\n            \n            lastMatchEnd = match.end();\n        }\n        \n        if (lastMatchEnd != -1) {\n            String text = lyrics.substring(lastMatchEnd).trim();\n            titleTextBlockList.add(new TitleTextBlock(lastTitle, text));\n        }\n\t\telse {\n\t\t\t// the whole song is malformed, at least this will pull down the text for the user to be able to fix it up\n\t\t\tString text = lyrics;\n\t\t\ttitleTextBlockList.add(new TitleTextBlock(\"Unknown\", text));\n\t\t}\n        \n        // now the song has been divided into titled text blocks, time to bring it together nicely\n        // for Quelea\n        String cleanedLyrics = \"\";\n        for (int i = 0; i < titleTextBlockList.size(); ++i) {\n            TitleTextBlock titleTextBlock = titleTextBlockList.get(i);\n            if (titleTextBlock.text.isEmpty()) {\n                continue;\n            }\n            \n            // newlines separating previous from current\n            if (i != 0) {\n                cleanedLyrics += System.lineSeparator() + System.lineSeparator();\n            }\n            \n            cleanedLyrics += \"(\" + titleTextBlock.title + \")\" + System.lineSeparator() + titleTextBlock.text;\n         }\n\n        return cleanedLyrics;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/EpicWorshipImportDialog.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.FileFilters;\n\n/**\n * The epicworship import dialog, used for importing songs from epicworship.\n * @author Ben\n */\npublic class EpicWorshipImportDialog extends ImportDialog {\n    \n    public EpicWorshipImportDialog() {\n        super(new String[]{\n                    LabelGrabber.INSTANCE.getLabel(\"epicworship.import.line1\")\n                }, FileFilters.EPC, new EpicWorshipParser(), ImportDialogOptions.allowZip());\n    }\n    \n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/EpicWorshipParser.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport java.io.BufferedReader;\nimport java.io.File;\nimport java.io.FileInputStream;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\nimport java.util.ArrayList;\nimport java.util.List;\nimport java.util.regex.Matcher;\nimport java.util.regex.Pattern;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.data.displayable.TextSection;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.StatusPanel;\n\n/**\n * A parser for the EpicWorship Song Pack file\n * <p/>\n * @author Ben\n */\npublic class EpicWorshipParser implements SongParser {\n\n    Pattern NAME = Pattern.compile(\"\\\"name\\\":\\\"?.+?\\\"(?=,)\");\n    Pattern AUTHOR = Pattern.compile(\"\\\"author\\\":\\\".+?\\\"(?=,)\");\n    Pattern LYRICS = Pattern.compile(\"\\\"content\\\":\\\"?.+?\\\"\");\n\n    @Override\n    public List<SongDisplayable> getSongs(File location, StatusPanel statusPanel) throws IOException {\n        ArrayList<SongDisplayable> ret = new ArrayList<>();\n        try (BufferedReader bfr = new BufferedReader(new InputStreamReader(new FileInputStream(location), Utils.getEncoding(location)))){\n            String fullContents = bfr.readLine();\n            String songsWhole = fullContents.substring(10, fullContents.length() - 2);\n            String[] songInfoList = songsWhole.split(\"\\\\},\\\\{\");\n            for (String songInfo : songInfoList) {\n                songInfo = songInfo.replace(\"{\", \"\").replace(\"{\", \"\");\n                Matcher m1 = NAME.matcher(songInfo);\n                String name = \"\";\n                String author = \"\";\n                String lyrics = \"\";\n                if (m1.find()) {\n                    name = m1.group(0);\n                    name = format(name);\n                }\n\n                Matcher m2 = AUTHOR.matcher(songInfo);\n                if (m2.find()) {\n                    author = m2.group(0);\n                    author = format(author);\n                }\n\n                Matcher m3 = LYRICS.matcher(songInfo);\n                if (m3.find()) {\n                    lyrics = m3.group(0);\n                    lyrics = format(lyrics);\n                }\n\n                SongDisplayable s = new SongDisplayable(name, author);\n\n                ArrayList<String> section = new ArrayList<>();\n                int sectionCount = 0;\n                String[] lines = lyrics.split(\"\\\\\\\\n\");\n                for (String line : lines) {\n                    if (!line.isEmpty()) {\n                        section.add(line);\n                    } else {\n                        String[] sectionsArray = new String[section.size()];\n                        s.addSection(sectionCount, new TextSection(\"\", section.toArray(sectionsArray), section.toArray(sectionsArray), true));\n                        sectionCount++;\n                        section.clear();\n                    }\n                }\n                String[] sectionsArray = new String[section.size()];\n                s.addSection(sectionCount, new TextSection(\"\", section.toArray(sectionsArray), section.toArray(sectionsArray), true));\n\n                ret.add(s);\n            }\n        }\n        return ret;\n    }\n\n    private String format(String s) {\n        String n;\n        n = s.split(\":\", 2)[1];\n        n = n.replace(\"\\\"\", \"\");\n        return n;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/Exporter.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport java.io.File;\nimport java.util.List;\nimport javafx.stage.FileChooser;\nimport org.quelea.data.displayable.SongDisplayable;\n\n/**\n * A generic exporter interface whose implementations provide functionality to\n * export to particular formats.\n *\n * @author Michael\n */\npublic interface Exporter {\n\n    /**\n     * Get a file chooser to select the file to export to.\n     *\n     * @return a file chooser to select the file to export to.\n     */\n    FileChooser getChooser();\n\n    /**\n     * Write the song pack to the specified file.\n     * <p/>\n     * @param file the file to write the song pack to.\n     * @param songDisplayables the songs to write to the file.\n     */\n    void exportSongs(final File file, final List<SongDisplayable> songDisplayables);\n\n    /**\n     * Get the file extension this exporter exports to.\n     *\n     * @return the file extension this exporter exports to.\n     */\n    String getStrExtension();\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/FreeWorshipImportDialog.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.FileFilters;\n\n/**\n * The freeworship import dialog, used for importing songs from freeworship.\n * @author Michael\n */\npublic class FreeWorshipImportDialog extends ImportDialog {\n    \n    public FreeWorshipImportDialog() {\n        super(new String[]{\n                    LabelGrabber.INSTANCE.getLabel(\"freeworship.import.line1\")\n                }, FileFilters.XML_GENERIC, new FreeWorshipParser(), ImportDialogOptions.allowZip().andAllowMultiple());\n    }\n    \n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/FreeWorshipParser.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * Copyright (C) 2012 Michael Berry\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport java.io.File;\nimport java.io.IOException;\nimport java.util.ArrayList;\nimport java.util.List;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport javax.xml.parsers.DocumentBuilder;\nimport javax.xml.parsers.DocumentBuilderFactory;\nimport javax.xml.parsers.ParserConfigurationException;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.windows.main.StatusPanel;\nimport org.w3c.dom.DOMException;\nimport org.w3c.dom.Document;\nimport org.w3c.dom.Node;\nimport org.w3c.dom.NodeList;\nimport org.w3c.dom.ls.DOMImplementationLS;\nimport org.w3c.dom.ls.LSSerializer;\nimport org.xml.sax.SAXException;\n\n/**\n * A parser for FreeWorship XML files\n *\n * @author Michael\n */\npublic class FreeWorshipParser implements SongParser {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n\n    @Override\n    public List<SongDisplayable> getSongs(File file, StatusPanel statusPanel) throws IOException {\n        try {\n            List<SongDisplayable> ret = new ArrayList<>();\n            DocumentBuilderFactory dbFactory = DocumentBuilderFactory.newInstance();\n            DocumentBuilder dBuilder = dbFactory.newDocumentBuilder();\n            Document doc = dBuilder.parse(file);\n            Node root = doc.getDocumentElement();\n            Node props = getChildByName(root, \"properties\");\n            String title = \"\";\n            String author = \"\";\n            String copyright = \"\";\n            String publisher = \"\";\n            String ccli = \"\";\n            for (int i = 0; i < props.getChildNodes().getLength(); i++) {\n                Node propNode = props.getChildNodes().item(i);\n                switch (propNode.getNodeName()) {\n                    case \"titles\":\n                        title = getChildByName(propNode, \"title\").getTextContent();\n                        break;\n                    case \"authors\":\n                        author = getChildByName(propNode, \"author\").getTextContent();\n                        break;\n                    case \"copyright\":\n                        copyright = propNode.getTextContent();\n                        break;\n                    case \"ccliNo\":\n                        ccli = propNode.getTextContent();\n                        break;\n                    case \"publisher\":\n                        publisher = propNode.getTextContent();\n                        break;\n                }\n            }\n            SongDisplayable song = new SongDisplayable(title, author);\n            song.setCopyright(copyright);\n            song.setPublisher(publisher);\n            song.setCcli(ccli);\n            StringBuilder lyricsBuilder = new StringBuilder();\n            Node lyrics = getChildByName(root, \"lyrics\");\n            for (int i = 0; i < lyrics.getChildNodes().getLength(); i++) {\n                Node verseNode = lyrics.getChildNodes().item(i);\n                if (!verseNode.getNodeName().equals(\"verse\")) {\n                    continue;\n                }\n                Node lines = getChildByName(verseNode, \"lines\");\n                lyricsBuilder.append(innerXml(lines)).append(\"\\n\\n\");\n            }\n            song.setLyrics(lyricsBuilder.toString());\n            ret.add(song);\n            return ret;\n        } catch (ParserConfigurationException | SAXException | IOException | DOMException ex) {\n            LOGGER.log(Level.WARNING, \"Something went wrong importing FreeWorship songs\", ex);\n            return null;\n        }\n    }\n\n    private Node getChildByName(Node parent, String name) {\n        for (int i = 0; i < parent.getChildNodes().getLength(); i++) {\n            if (parent.getChildNodes().item(i).getNodeName().equals(name)) {\n                return parent.getChildNodes().item(i);\n            }\n        }\n        return null;\n    }\n\n    private String innerXml(Node node) {\n        DOMImplementationLS lsImpl = (DOMImplementationLS) node.getOwnerDocument().getImplementation().getFeature(\"LS\", \"3.0\");\n        LSSerializer lsSerializer = lsImpl.createLSSerializer();\n        NodeList childNodes = node.getChildNodes();\n        StringBuilder sb = new StringBuilder();\n        for (int i = 0; i < childNodes.getLength(); i++) {\n            String str = lsSerializer.writeToString(childNodes.item(i));\n            if (str.endsWith(\"<br/>\")) {\n                str = \"\\n\";\n            }\n            sb.append(str);\n        }\n        return sb.toString().replaceAll(\"<\\\\?xml.*\\\\?>\", \"\");\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/ImportDialog.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport java.beans.PropertyChangeEvent;\nimport java.beans.PropertyChangeListener;\nimport java.io.File;\nimport java.io.IOException;\nimport java.util.ArrayList;\nimport java.util.Collections;\nimport java.util.HashMap;\nimport java.util.List;\nimport java.util.Map;\nimport java.util.concurrent.ExecutorService;\nimport java.util.concurrent.Executors;\nimport java.util.concurrent.TimeUnit;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport javafx.application.Platform;\nimport javafx.geometry.Insets;\nimport javafx.geometry.Pos;\nimport javafx.scene.Scene;\nimport javafx.scene.control.Button;\nimport javafx.scene.control.CheckBox;\nimport javafx.scene.control.Label;\nimport javafx.scene.control.TextField;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.layout.HBox;\nimport javafx.scene.layout.StackPane;\nimport javafx.scene.layout.VBox;\nimport javafx.stage.FileChooser;\nimport javafx.stage.FileChooser.ExtensionFilter;\nimport javafx.stage.Modality;\nimport javafx.stage.Stage;\nimport org.javafx.dialog.Dialog;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.FileFilters;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.SongDuplicateChecker;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.windows.main.StatusPanel;\n\n/**\n * An import dialog used for importing songs.\n * <p/>\n * @author Michael\n */\npublic abstract class ImportDialog extends Stage implements PropertyChangeListener {\n\n\tprivate static final Logger LOGGER = LoggerUtils.getLogger();\n\tprivate final TextField locationField;\n\tprivate final Button importButton;\n\tprivate final Button closeButton;\n\tprivate final CheckBox checkDuplicates;\n\tprivate final SelectSongsDialog importedDialog;\n\tprivate final List<File> files;\n\tprivate StatusPanel statusPanel;\n\tprivate boolean halt;\n\n\t/**\n\t * Create a new import dialog.\n\t * <p/>\n\t * @param dialogLabels the labels to contain on the dialog as text to the\n\t * user before the file box.\n\t * @param fileFilter the filefilter to use in the file dialog, or null if\n\t * there should be no file dialog.\n\t * @param parser the parser to use for this import dialog.\n\t * @param options import dialog options\n\t */\n\tpublic ImportDialog(String[] dialogLabels, ExtensionFilter fileFilter,\n\t\t\tfinal SongParser parser, final ImportDialogOptions options) {\n\t\tinitModality(Modality.APPLICATION_MODAL);\n                initOwner(QueleaApp.get().getMainWindow());\n\t\tsetTitle(LabelGrabber.INSTANCE.getLabel(\"import.heading\"));\n\t\tfiles = new ArrayList<>();\n\t\thalt = false;\n\t\timportedDialog = new SelectImportedSongsDialog();\n\t\timportButton = new Button(LabelGrabber.INSTANCE.getLabel(\"import.button\"), new ImageView(new Image(\"file:icons/import.png\", 16, 16, true, false)));\n\n\t\tVBox mainPane = new VBox();\n\t\tfinal FileChooser locationChooser = new FileChooser();\n\t\tif (QueleaProperties.get().getLastDirectory() != null) {\n\t\t\tlocationChooser.setInitialDirectory(QueleaProperties.get().getLastDirectory());\n\t\t}\n\t\tlocationChooser.getExtensionFilters().add(fileFilter);\n\t\tif (options.isAllowZip()) {\n\t\t\tlocationChooser.getExtensionFilters().add(FileFilters.ZIP);\n\t\t}\n\n\t\tVBox textPane = new VBox();\n\t\tfor (String str : dialogLabels) {\n\t\t\ttextPane.getChildren().add(new Label(str));\n\t\t}\n\t\tVBox.setMargin(textPane, new Insets(10));\n\t\tmainPane.getChildren().add(textPane);\n\n\t\tcheckDuplicates = new CheckBox(LabelGrabber.INSTANCE.getLabel(\"check.duplicates.text\"));\n\t\tVBox.setMargin(checkDuplicates, new Insets(0, 0, 10, 12));\n\t\tmainPane.getChildren().add(checkDuplicates);\n\n\t\tlocationField = new TextField();\n\t\tVBox.setMargin(locationField, new Insets(0, 10, 0, 10));\n\t\tif (fileFilter != null) {\n\t\t\tlocationField.setEditable(false);\n\t\t\tlocationField.setText(LabelGrabber.INSTANCE.getLabel(\"click.select.file.text\"));\n\t\t\tlocationField.setOnMouseClicked(evt -> {\n\t\t\t\tif (!locationField.isDisable()) {\n\t\t\t\t\tfiles.clear();\n\t\t\t\t\tif (options.isAllowMultiple()) {\n\t\t\t\t\t\tList<File> f = locationChooser.showOpenMultipleDialog(ImportDialog.this);\n\t\t\t\t\t\tif (f != null) {\n\t\t\t\t\t\t\tfiles.addAll(f);\n\t\t\t\t\t\t}\n\t\t\t\t\t} else {\n\t\t\t\t\t\tFile f = locationChooser.showOpenDialog(ImportDialog.this);\n\t\t\t\t\t\tif (f != null) {\n\t\t\t\t\t\t\tfiles.add(f);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif(options.isAllowZip()) {\n\t\t\t\t\t\tList<File> tempList = new ArrayList<>();\n\t\t\t\t\t\tfor(File file : files) {\n\t\t\t\t\t\t\tif(file.getName().endsWith(\".zip\")) {\n\t\t\t\t\t\t\t\ttempList.addAll(Utils.extractZip(file));\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\ttempList.add(file);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tfiles.clear();\n\t\t\t\t\t\tfiles.addAll(tempList);\n\t\t\t\t\t}\n\t\t\t\t\tif (!files.isEmpty()) {\n\t\t\t\t\t\tQueleaProperties.get().setLastDirectory(files.get(0).getParentFile());\n\t\t\t\t\t\tStringBuilder locationContent = new StringBuilder();\n\t\t\t\t\t\tfor (int i = 0; i < files.size(); i++) {\n\t\t\t\t\t\t\tlocationContent.append(files.get(0).getAbsolutePath());\n\t\t\t\t\t\t\tif (i < files.size() - 1) {\n\t\t\t\t\t\t\t\tlocationContent.append(\"; \");\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tlocationField.setText(locationContent.toString());\n\t\t\t\t\t\timportButton.setDisable(false);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t});\n\t\t\tmainPane.getChildren().add(locationField);\n\t\t}\n\n\t\tcloseButton = new Button(LabelGrabber.INSTANCE.getLabel(\"cancel.button\"), new ImageView(new Image(\"file:icons/cross.png\")));\n\t\tcloseButton.setOnAction(evt -> {\n\t\t\thide();\n\t\t});\n\t\tif (fileFilter != null) {\n\t\t\timportButton.setDisable(true);\n\t\t}\n\t\tHBox buttonPane = new HBox(10);\n\t\tbuttonPane.setAlignment(Pos.CENTER);\n\t\tStackPane.setMargin(importButton, new Insets(10));\n\t\tbuttonPane.getChildren().add(importButton);\n\t\tbuttonPane.getChildren().add(closeButton);\n\t\tVBox.setMargin(buttonPane, new Insets(10));\n\t\tmainPane.getChildren().add(buttonPane);\n\t\timportButton.setOnAction(evt -> {\n\t\t\tstatusPanel = QueleaApp.get().getStatusGroup().addPanel(LabelGrabber.INSTANCE.getLabel(\"importing.status\"));\n\t\t\tstatusPanel.getCancelButton().setOnAction(evt2 -> {\n\t\t\t\tstatusPanel.done();\n\t\t\t\thalt = true;\n\t\t\t});\n\t\t\tsetActive();\n\t\t\tThread worker = new Thread() {\n\t\t\t\tprivate List<SongDisplayable> localSongs;\n\t\t\t\tprivate Map<SongDisplayable, Boolean> localSongsDuplicate;\n\t\t\t\tprivate final ExecutorService checkerService = Executors.newFixedThreadPool(Runtime.getRuntime().availableProcessors());\n\n\t\t\t\t@Override\n\t\t\t\tpublic void run() {\n\t\t\t\t\ttry {\n\t\t\t\t\t\tlocalSongs = new ArrayList<>();\n\t\t\t\t\t\tlocalSongsDuplicate = new HashMap<>();\n\t\t\t\t\t\tfor (File file : files) {\n\t\t\t\t\t\t\tlocalSongs.addAll(parser.getSongs(file, statusPanel));\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif (halt) {\n\t\t\t\t\t\t\tlocalSongs = null;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tCollections.sort(localSongs);\n\t\t\t\t\t\tstatusPanel.setProgress(0);\n\t\t\t\t\t\tif (checkDuplicates.isSelected()) {\n\t\t\t\t\t\t\tfor (int i = 0; i < (localSongs == null ? 0 : localSongs.size()); i++) {\n\t\t\t\t\t\t\t\tfinal int finali = i;\n\t\t\t\t\t\t\t\tcheckerService.submit(() -> {\n\t\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\t\tif (!halt) {\n\t\t\t\t\t\t\t\t\t\t\tfinal boolean result = new SongDuplicateChecker().checkSong(localSongs.get(finali));\n\t\t\t\t\t\t\t\t\t\t\tlocalSongsDuplicate.put(localSongs.get(finali), result);\n\t\t\t\t\t\t\t\t\t\t\tfinal double progress = ((double) finali / localSongs.size());\n\t\t\t\t\t\t\t\t\t\t\tif (statusPanel.getProgress() < progress) {\n\t\t\t\t\t\t\t\t\t\t\t\tstatusPanel.setProgress(progress);\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t} catch (Throwable ex) {\n\t\t\t\t\t\t\t\t\t\tex.printStackTrace();\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\tcheckerService.shutdown();\n\t\t\t\t\t\t\t\tcheckerService.awaitTermination(365, TimeUnit.DAYS); //Year eh? ;-)\n\t\t\t\t\t\t\t} catch (InterruptedException ex) {\n\t\t\t\t\t\t\t\tLOGGER.log(Level.WARNING, \"Interrupted?!\", ex);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tPlatform.runLater(() -> {\n\t\t\t\t\t\t\tif ((localSongs == null || localSongs.isEmpty()) && !halt) {\n\t\t\t\t\t\t\t\tDialog.showWarning(LabelGrabber.INSTANCE.getLabel(\"import.no.songs.title\"), LabelGrabber.INSTANCE.getLabel(\"import.no.songs.text\"));\n\t\t\t\t\t\t\t} else if (!(localSongs == null || localSongs.isEmpty())) {\n\t\t\t\t\t\t\t\tgetImportedDialog().setSongs(localSongs, localSongsDuplicate, true);\n\t\t\t\t\t\t\t\tgetImportedDialog().show();\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tsetIdle();\n\t\t\t\t\t\t});\n\t\t\t\t\t} catch (IOException ex) {\n\t\t\t\t\t\tPlatform.runLater(() -> {\n\t\t\t\t\t\t\tDialog.showError(LabelGrabber.INSTANCE.getLabel(\"error.text\"), LabelGrabber.INSTANCE.getLabel(\"import.error.message\"));\n\t\t\t\t\t\t});\n\t\t\t\t\t\tLOGGER.log(Level.WARNING, \"Error importing songs\", ex);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t};\n\t\t\tworker.start();\n\t\t});\n\t\tsetResizable(false);\n\n\t\tScene scene = new Scene(mainPane);\n\t\tif (QueleaProperties.get().getUseDarkTheme()) {\n\t\t\tscene.getStylesheets().add(\"org/modena_dark.css\");\n\t\t}\n\t\tsetScene(scene);\n\t}\n\n\t/**\n\t * Get the import button.\n\t * <p/>\n\t * @return the import button.\n\t */\n\tpublic Button getImportButton() {\n\t\treturn importButton;\n\t}\n\n\t/**\n\t * Get the dialog that appears after the songs have been imported.\n\t * <p/>\n\t * @return the imported songs dialog.\n\t */\n\tpublic SelectSongsDialog getImportedDialog() {\n\t\treturn importedDialog;\n\t}\n\n\t/**\n\t * Called when the import is taking place, this disables the appropriate\n\t * controls.\n\t */\n\tpublic void setActive() {\n\t\tstatusPanel.getProgressBar().setProgress(-1);\n\t\thide();\n\t\tresetDialog();\n\t}\n\n\t/**\n\t * Called when the import has finished taking place, this resets the\n\t * controls.\n\t */\n\tpublic void setIdle() {\n\t\tstatusPanel.done();\n\t\thalt = false;\n\t\tresetDialog();\n\t}\n\n\tprivate void resetDialog() {\n\t\tlocationField.setText(LabelGrabber.INSTANCE.getLabel(\"click.select.file.text\"));\n\t\tlocationField.setDisable(false);\n\t\tgetImportButton().setText(LabelGrabber.INSTANCE.getLabel(\"import.button\"));\n\t\thide();\n\t}\n\n\t/**\n\t * Update the progress bar.\n\t * <p/>\n\t * @param evt the property change event.\n\t */\n\t@Override\n\tpublic void propertyChange(PropertyChangeEvent evt) {\n\t\tString strPropertyName = evt.getPropertyName();\n\t\tif (\"progress\".equals(strPropertyName) && statusPanel != null) {\n\t\t\tint progress = (Integer) evt.getNewValue();\n\t\t\tstatusPanel.getProgressBar().setProgress(progress);\n\t\t}\n\t}\n\n\tpublic void setAll(boolean all) {\n\t\t//to be overwritten\n\t}\n\n\tpublic void setRange(boolean range) {\n\t\t//to be overwritten\n\t}\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/ImportDialogOptions.java",
    "content": "/*\n * To change this license header, choose License Headers in Project Properties.\n * To change this template file, choose Tools | Templates\n * and open the template in the editor.\n */\npackage org.quelea.services.importexport;\n\n/**\n * Import dialog options wrapper class.\n * @author Michael\n */\npublic class ImportDialogOptions {\n\t\n\tprivate final boolean allowMultipleFileSelection;\n\tprivate final boolean allowZipFileSelection;\n\n\tprivate ImportDialogOptions(boolean allowMultipleFileSelection, boolean allowZipFileSelection) {\n\t\tthis.allowMultipleFileSelection = allowMultipleFileSelection;\n\t\tthis.allowZipFileSelection = allowZipFileSelection;\n\t}\n\t\n\tpublic static ImportDialogOptions disallow() {\n\t\treturn new ImportDialogOptions(false, false);\n\t}\n\t\n\tpublic static ImportDialogOptions allowMultiple() {\n\t\treturn new ImportDialogOptions(true, true);\n\t}\n\t\n\tpublic static ImportDialogOptions allowZip() {\n\t\treturn new ImportDialogOptions(false, true);\n\t}\n\t\n\tpublic ImportDialogOptions andAllowMultiple() {\n\t\treturn new ImportDialogOptions(true, allowZipFileSelection);\n\t}\n\t\n\tpublic ImportDialogOptions andAllowZip() {\n\t\treturn new ImportDialogOptions(allowMultipleFileSelection, true);\n\t}\n\n\tpublic boolean isAllowMultiple() {\n\t\treturn allowMultipleFileSelection;\n\t}\n\n\tpublic boolean isAllowZip() {\n\t\treturn allowZipFileSelection;\n\t}\n\t\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/MediaShoutImportDialog.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.FileFilters;\n\n/**\n * The MediaShout import dialog, used for importing songs from the MediaShout\n * library.\n * @author Michael\n */\npublic class MediaShoutImportDialog extends ImportDialog {\n    \n    /**\n     * Create a new MediaShout import dialog.\n     */\n    public MediaShoutImportDialog() {\n        super(new String[]{\n            LabelGrabber.INSTANCE.getLabel(\"mediashout.import.line1\")\n        }, FileFilters.TXT, new MediaShoutParser(), ImportDialogOptions.allowZip());\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/MediaShoutParser.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport java.io.File;\nimport java.util.ArrayList;\nimport java.util.List;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.StatusPanel;\n\n/**\n * A parser for parsing MediaShout databases, exported to txt format.\n * @author Michael\n */\npublic class MediaShoutParser implements SongParser {\n\n    /**\n     * Get a list of the songs contained in the given pack.\n     * @param location the location of the txt file.\n     * @return a list of the songs found.\n     */\n    @Override\n    public List<SongDisplayable> getSongs(File location, StatusPanel statusPanel) {\n        List<SongDisplayable> ret = new ArrayList<>();\n        String contents = Utils.getTextFromFile(location.getAbsolutePath(), null);\n        if(contents==null) {\n            return ret;\n        }\n        String[] songSplit = contents.split(\"Title\\\\:\");\n        for (int i = 1; i < songSplit.length; i++) {\n            String title = \"\";\n            String author = \"\";\n            String copyright = \"\";\n            String ccli = \"\";\n            String playorder = \"\"; //Not yet used\n            String lyrics = \"\";\n            String rawSongText = songSplit[i];\n            String[] lines = rawSongText.split(\"\\n\");\n            for (int j = 0; j < lines.length; j++) {\n                String line = lines[j].trim();\n                if (j == 0) {\n                    title = line.trim();\n                } else if (line.toLowerCase().startsWith(\"author:\")) {\n                    author = line.substring(\"author:\".length()).trim();\n                } else if (line.toLowerCase().startsWith(\"copyright:\")) {\n                    copyright = line.substring(\"copyright:\".length()).trim();\n                } else if (line.toLowerCase().startsWith(\"ccli:\")) {\n                    ccli = line.substring(\"ccli:\".length()).trim();\n                } else if (line.toLowerCase().startsWith(\"playorder:\")) {\n                    playorder = line.substring(\"playorder:\".length()).trim();\n                }\n            }\n            lyrics = rawSongText.substring(rawSongText.indexOf(\"\\n\\n\")).trim();\n            if(!(title.isEmpty()||lyrics.isEmpty())) {\n                SongDisplayable song = new SongDisplayable(title, author);\n                song.setCopyright(copyright);\n                song.setCcli(ccli);\n                song.setLyrics(lyrics);\n                ret.add(song);\n            }\n        }\n        return ret;\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/MissionPraiseImportDialog.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.FileFilters;\n\n/**\n * The Mission Praise import dialog, used for importing songs from Mission Praise.\n * @author Michael\n */\npublic class MissionPraiseImportDialog extends ImportDialog {\n    \n    public MissionPraiseImportDialog() {\n        super(new String[]{\n                    LabelGrabber.INSTANCE.getLabel(\"missionpraise.import.line1\")\n                }, FileFilters.MISSION_PRAISE_RTF, new MissionPraiseParser(), ImportDialogOptions.allowZip().andAllowMultiple());\n    }\n    \n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/MissionPraiseParser.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * Copyright (C) 2016 Michael Berry\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport java.io.ByteArrayInputStream;\nimport java.io.File;\nimport java.io.IOException;\nimport java.util.ArrayList;\nimport java.util.List;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport javax.swing.text.BadLocationException;\nimport javax.swing.text.Document;\nimport javax.swing.text.rtf.RTFEditorKit;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.StatusPanel;\n\n/**\n * A parser for parsing the Mission Praise RTF files\n * <p>\n * @author Michael\n */\npublic class MissionPraiseParser implements SongParser {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n\n    /**\n     * Parse the file to get the songs.\n     * <p>\n     * @param file the RTF file.\n     * @param statusPanel the status panel to update.\n     * @return a list of the songs found in the Songs.MB file.\n     * @throws IOException if something went wrong with the import.\n     */\n    @Override\n    public List<SongDisplayable> getSongs(File file, StatusPanel statusPanel) throws IOException {\n        List<SongDisplayable> ret = new ArrayList<>();\n        String text = Utils.getTextFromFile(file.getAbsolutePath(), \"\", \"CP1250\");\n        text = text.replace(\"’\", \"'\");\n        try {\n            if (!text.isEmpty()) {\n                RTFEditorKit rtfParser = new RTFEditorKit();\n                Document document = rtfParser.createDefaultDocument();\n                rtfParser.read(new ByteArrayInputStream(text.getBytes(\"CP1250\")), document, 0);\n                String plainText = document.getText(0, document.getLength());\n                String title = getTitle(plainText);\n                String lyrics = getLyrics(plainText);\n                String author = getAuthor(plainText);\n                String copyright = getCopyright(plainText);\n                \n                SongDisplayable song = new SongDisplayable(title, author);\n                song.setLyrics(lyrics);\n                song.setCopyright(copyright);\n                ret.add(song);\n            }\n        } catch (IOException | BadLocationException ex) {\n            LOGGER.log(Level.WARNING, \"Error importing mission praise\", ex);\n        }\n        return ret;\n    }\n    \n    private String getTitle(String plainText) {\n        String line = plainText.split(\"\\n\")[0].trim();\n        return line.replace(\" \", \" \").trim();\n//        return line.replace(\" \", \" \").replaceAll(\"^[0-9]+\\\\s+\", \"\").trim();\n    }\n    \n    private String getLyrics(String plainText) {\n        String[] arr = plainText.split(\"\\n\");\n        int endIdx = arr.length;\n        for(int i=1 ; i<arr.length ; i++) {\n            if(arr[i].startsWith(\"©\")) {\n                endIdx = i;\n                break;\n            }\n        }\n        StringBuilder ret = new StringBuilder();\n        for(int i=1 ; i<endIdx ; i++) {\n            ret.append(arr[i].replaceAll(\"^[0-9]+\\\\s+\", \"\").replace(\" \", \" \").trim()).append(\"\\n\");\n        }\n        return ret.toString().trim();\n    }\n    \n    private String getAuthor(String plainText) {\n        for(String str : plainText.split(\"\\n\")) {\n            if(str.matches(\"^[a-zA-z].+\")) {\n                return str.trim();\n            }\n        }\n        return \"\";\n    }\n    \n    private String getCopyright(String plainText) {\n        for(String str : plainText.split(\"\\n\")) {\n            if(str.startsWith(\"©\")) {\n                return str.trim();\n            }\n        }\n        return \"\";\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/OpenLPImportDialog.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * Copyright (C) 2012 Michael Berry\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.FileFilters;\n\n/**\n * An import dialog for OpenLP databases.\n * <p>\n * @author Michael\n */\npublic class OpenLPImportDialog extends ImportDialog {\n\n    /**\n     * Create a new OpenLP import dialog.\n     * <p>\n     */\n    public OpenLPImportDialog() {\n        super(new String[]{LabelGrabber.INSTANCE.getLabel(\"olp.import.line1\")\n        }, FileFilters.SQLITE, new OpenLPParser(), ImportDialogOptions.disallow());\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/OpenLPParser.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport java.io.ByteArrayInputStream;\nimport java.io.File;\nimport java.io.IOException;\nimport java.sql.Connection;\nimport java.sql.DriverManager;\nimport java.sql.ResultSet;\nimport java.sql.SQLException;\nimport java.util.ArrayList;\nimport java.util.List;\nimport javax.xml.parsers.DocumentBuilder;\nimport javax.xml.parsers.DocumentBuilderFactory;\nimport javax.xml.parsers.ParserConfigurationException;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.windows.main.StatusPanel;\nimport org.w3c.dom.DOMException;\nimport org.w3c.dom.Document;\nimport org.w3c.dom.Node;\nimport org.w3c.dom.NodeList;\nimport org.xml.sax.SAXException;\n\n/**\n * A parser for parsing OpenLP databases.\n * <p>\n * @author Michael\n */\npublic class OpenLPParser implements SongParser {\n\n    /**\n     * Get a list of the songs contained in the given OpenLP database.\n     * <p>\n     * @param location the location of the OpenLP database.\n     * @return a list of the songs found.\n     * @throws IOException if something goes wrong.\n     */\n    @Override\n    public List<SongDisplayable> getSongs(File location, StatusPanel statusPanel) throws IOException {\n        List<SongDisplayable> ret = new ArrayList<>();\n        try {\n            Class.forName(\"org.sqlite.JDBC\");\n            Connection conn = DriverManager.getConnection(\"jdbc:sqlite:\" + location.getAbsolutePath());\n            ResultSet rs = conn.createStatement().executeQuery(\"SELECT * FROM songs\");\n            while(rs.next()) {\n                String lyrics = getLyricsFromXML(rs.getString(\"lyrics\"));\n                String title = rs.getString(\"title\");\n                String ccli = rs.getString(\"ccli_number\");\n                String comments = rs.getString(\"comments\");\n                String copyright = rs.getString(\"copyright\");\n                if(title != null && lyrics != null && !title.isEmpty() && !lyrics.isEmpty()) {\n                    SongDisplayable displayable = new SongDisplayable(title, \"\");\n                    displayable.setLyrics(lyrics);\n                    if(ccli != null) {\n                        displayable.setCcli(ccli.trim());\n                    }\n                    if(comments != null) {\n                        displayable.setInfo(comments.trim());\n                    }\n                    if(copyright != null) {\n                        displayable.setCopyright(copyright.trim());\n                    }\n                    ret.add(displayable);\n                }\n            }\n            return ret;\n        }\n        catch(ClassNotFoundException | SQLException ex) {\n            return ret;\n        }\n    }\n\n    private String getLyricsFromXML(String lyricsXML) {\n        try {\n            DocumentBuilderFactory dbFactory = DocumentBuilderFactory.newInstance();\n            DocumentBuilder dBuilder = dbFactory.newDocumentBuilder();\n            Document doc = dBuilder.parse(new ByteArrayInputStream(lyricsXML.getBytes(\"UTF8\")));\n            Node root = doc.getElementsByTagName(\"song\").item(0).getFirstChild();\n            StringBuilder lyrics = new StringBuilder();\n            NodeList verses = root.getChildNodes();\n            for(int j = 0; j < verses.getLength(); j++) {\n                lyrics.append(verses.item(j).getTextContent()).append(\"\\n\\n\");\n            }\n            return lyrics.toString().trim();\n        }\n        catch(ParserConfigurationException | SAXException | IOException | DOMException ex) {\n            return null;\n        }\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/OpenLyricsExporter.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport java.io.File;\nimport java.io.FileOutputStream;\nimport java.io.IOException;\nimport java.io.StringWriter;\nimport java.nio.charset.Charset;\nimport java.util.ArrayList;\nimport java.util.HashSet;\nimport java.util.List;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport java.util.zip.ZipEntry;\nimport java.util.zip.ZipOutputStream;\nimport javafx.stage.FileChooser;\nimport javax.xml.parsers.DocumentBuilder;\nimport javax.xml.parsers.DocumentBuilderFactory;\nimport javax.xml.parsers.ParserConfigurationException;\nimport javax.xml.transform.Transformer;\nimport javax.xml.transform.TransformerException;\nimport javax.xml.transform.TransformerFactory;\nimport javax.xml.transform.dom.DOMSource;\nimport javax.xml.transform.stream.StreamResult;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.data.displayable.TextSection;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.FileFilters;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.windows.main.StatusPanel;\nimport org.w3c.dom.DOMException;\nimport org.w3c.dom.Document;\nimport org.w3c.dom.Element;\n\n/**\n * An exporter for the openlyrics format.\n *\n * @author Michael\n */\npublic class OpenLyricsExporter implements Exporter {\n\n    public static final Logger LOGGER = LoggerUtils.getLogger();\n\n    /**\n     * Get the file chooser to be used.\n     * <p/>\n     * @return the zip file chooser..\n     */\n    @Override\n    public FileChooser getChooser() {\n        FileChooser chooser = new FileChooser();\n        chooser.getExtensionFilters().add(FileFilters.ZIP);\n        return chooser;\n    }\n\n    /**\n     * Export the given songs to the given file.\n     *\n     * @param file the zip file to export to.\n     * @param songDisplayables the songs to export to the zip file.\n     */\n    @Override\n    public void exportSongs(final File file, List<SongDisplayable> songDisplayables) {\n        final List<SongDisplayable> songDisplayablesThreadSafe = new ArrayList<>(songDisplayables);\n        final StatusPanel panel = QueleaApp.get().getMainWindow().getMainPanel().getStatusPanelGroup().addPanel(LabelGrabber.INSTANCE.getLabel(\"exporting.label\") + \"...\");\n        new Thread() {\n            public void run() {\n                try {\n                    final HashSet<String> names = new HashSet<>();\n                    try (ZipOutputStream out = new ZipOutputStream(new FileOutputStream(file), Charset.forName(\"UTF-8\"))) {\n                        for (int i = 0; i < songDisplayablesThreadSafe.size(); i++) {\n                            SongDisplayable song = songDisplayablesThreadSafe.get(i);\n                            String name = song.getTitle() + \".xml\";\n                            while (names.contains(name)) {\n                                name = Utils.incrementExtension(name, \"xml\");\n                            }\n                            names.add(name);\n                            out.putNextEntry(new ZipEntry(name));\n                            out.write(getXML(song).getBytes(Charset.forName(\"UTF-8\")));\n                            panel.setProgress((double) i / songDisplayablesThreadSafe.size());\n                        }\n                        panel.done();\n                    }\n                } catch (IOException ex) {\n                    LOGGER.log(Level.WARNING, \"Couldn't export openlyrics songs\", ex);\n                }\n            }\n        }.start();\n\n    }\n\n    /**\n     * Convert a particular song to Openlyrics standard XML. Doesn't do chords\n     * or translations at present - that should be implemented at a later stage.\n     *\n     * @param song the song to convert to XML.\n     * @return the openlyrics XML for the given song.\n     */\n    private static String getXML(SongDisplayable song) {\n        try {\n            DocumentBuilderFactory docFactory = DocumentBuilderFactory.newInstance();\n            DocumentBuilder docBuilder = docFactory.newDocumentBuilder();\n\n            Document doc = docBuilder.newDocument();\n\n            Element rootElement = doc.createElement(\"song\");\n            rootElement.setAttribute(\"xmlns\", \"http://openlyrics.info/namespace/2009/song\");\n            rootElement.setAttribute(\"version\", \"0.9\");\n            doc.appendChild(rootElement);\n\n            Element propertiesElement = doc.createElement(\"properties\");\n            rootElement.appendChild(propertiesElement);\n\n            Element titlesElement = doc.createElement(\"titles\");\n            propertiesElement.appendChild(titlesElement);\n            Element titleElement = doc.createElement(\"title\");\n            titleElement.appendChild(doc.createTextNode(song.getTitle()));\n            titlesElement.appendChild(titleElement);\n\n            if (song.getAuthor() != null && !song.getAuthor().trim().isEmpty()) {\n                Element authorsElement = doc.createElement(\"authors\");\n                propertiesElement.appendChild(authorsElement);\n                Element authorElement = doc.createElement(\"author\");\n                authorElement.appendChild(doc.createTextNode(song.getAuthor()));\n                authorsElement.appendChild(authorElement);\n            }\n\n            if (song.getCcli() != null && !song.getCcli().trim().isEmpty()) {\n                Element ccliElement = doc.createElement(\"ccliNo\");\n                propertiesElement.appendChild(ccliElement);\n                ccliElement.appendChild(doc.createTextNode(song.getCcli()));\n            }\n\n            Element lyricsElement = doc.createElement(\"lyrics\");\n            rootElement.appendChild(lyricsElement);\n\n            int sectionNum = 1;\n            for (TextSection section : song.getSections()) {\n                Element verseElement = doc.createElement(\"verse\");\n                verseElement.setAttribute(\"name\", \"v\" + sectionNum);\n                lyricsElement.appendChild(verseElement);\n                Element linesElement = doc.createElement(\"lines\");\n                verseElement.appendChild(linesElement);\n\n                for (String line : section.getText(false, false)) {\n                    linesElement.appendChild(doc.createTextNode(line));\n                    linesElement.appendChild(doc.createElement(\"br\"));\n                }\n                sectionNum++;\n            }\n\n            TransformerFactory tf = TransformerFactory.newInstance();\n            Transformer transformer = tf.newTransformer();\n            StringWriter writer = new StringWriter();\n            transformer.transform(new DOMSource(doc), new StreamResult(writer));\n            return writer.getBuffer().toString();\n\n        } catch (ParserConfigurationException | TransformerException | DOMException ex) {\n            LOGGER.log(Level.WARNING, \"Couldn't export openlyrics songs\", ex);\n            return null;\n        }\n    }\n\n    @Override\n    public String getStrExtension() {\n        return \"zip\";\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/OpenLyricsImportDialog.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.FileFilters;\n\n/**\n * An import dialog for openlyrics.\n * <p>\n * @author Michael\n */\npublic class OpenLyricsImportDialog extends ImportDialog {\n\n    /**\n     * Create a new openlyrics import dialog.\n     */\n    public OpenLyricsImportDialog() {\n        super(new String[]{\n            LabelGrabber.INSTANCE.getLabel(\"openlyrics.import.line1\")\n        }, FileFilters.XML_OPENLYRICS, new OpenLyricsParser(), ImportDialogOptions.allowZip().andAllowMultiple());\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/OpenLyricsParser.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport com.github.berry120.jopenlyrics.OpenLyricsException;\nimport com.github.berry120.jopenlyrics.OpenLyricsObject;\nimport com.github.berry120.jopenlyrics.Verse;\nimport com.github.berry120.jopenlyrics.VerseLine;\nimport com.github.berry120.jopenlyrics.properties.TitleProperty;\nimport java.io.File;\nimport java.io.FileInputStream;\nimport java.io.IOException;\nimport java.util.ArrayList;\nimport java.util.Collections;\nimport java.util.List;\nimport java.util.Locale;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport java.util.stream.Collectors;\nimport javax.xml.parsers.ParserConfigurationException;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.windows.main.StatusPanel;\nimport org.xml.sax.SAXException;\n\n/**\n * A parser for parsing zip files of openlyrics.\n *\n * @author Michael\n */\npublic class OpenLyricsParser implements SongParser {\n\n\tprivate static final Logger LOGGER = LoggerUtils.getLogger();\n\n\t/**\n\t * Get a list of the openlyrics songs contained in the given zip file.\n\t *\n\t * @param file the xml file.\n\t * @return a list of the songs found.\n\t * @throws IOException if something goes wrong.\n\t */\n\t@Override\n\tpublic List<SongDisplayable> getSongs(File file, StatusPanel statusPanel) throws IOException {\n\t\ttry {\n\t\t\tOpenLyricsObject ol = new OpenLyricsObject(new FileInputStream(file));\n\t\t\tString lyrics = getLyrics(ol);\n\t\t\tString title = getTitle(ol.getProperties().getTitleProperty());\n\t\t\tString comments = getComments(ol.getProperties().getComments());\n\t\t\tString ccli = ol.getProperties().getCcliNo();\n\t\t\tString copyright = ol.getProperties().getCopyright();\n\t\t\tList<String> verseOrder = ol.getProperties().getVerseOrder();\n\t\t\tString author = getAuthor(ol);\n\t\t\tif (!lyrics.isEmpty()) {\n\t\t\t\tSongDisplayable displayable = new SongDisplayable(title, author);\n\t\t\t\tdisplayable.setSequence( getSequenceAsString(verseOrder));\n\t\t\t\t// this is required before setLyrics is called so the sequence is used correctly\n\t\t\t\tdisplayable.setLyrics(lyrics);\n\t\t\t\tdisplayable.setInfo(comments);\n\t\t\t\tdisplayable.setCopyright(copyright);\n\t\t\t\tdisplayable.setCcli(ccli);\n\t\t\t\treturn Collections.singletonList(displayable);\n\t\t\t} else {\n\t\t\t\tLOGGER.log(Level.INFO, \"Song had empty lyrics\");\n\t\t\t\treturn Collections.emptyList();\n\t\t\t}\n\t\t} catch (OpenLyricsException | IOException | ParserConfigurationException | SAXException ex) {\n\t\t\tLOGGER.log(Level.WARNING, \"Parse error\", ex);\n\t\t\treturn Collections.emptyList();\n\t\t}\n\t}\n\n\tprivate String getSequenceAsString(List<String> verseOrder) {\n\t\tif (verseOrder==null){\n\t\t\treturn \"\";\n\t\t}else{\n\t\t\treturn verseOrder.stream()\n\t\t\t\t\t.filter( x->!x.isBlank() ) // we remove extra blank entries.\n\t\t\t\t\t.map(String::toUpperCase) //  toUpperCase required as OpenLyrics labels are lower case\n\t\t\t\t\t.collect(Collectors.joining(\" \"));\n\t\t}\n\t}\n\n\tprivate String getComments(List<String> comments) {\n\t\tStringBuilder ret = new StringBuilder();\n\t\tif (comments != null) {\n\t\t\tfor (String comment : comments) {\n\t\t\t\tret.append(comment).append('\\n');\n\t\t\t}\n\t\t}\n\t\treturn ret.toString().trim();\n\t}\n\n\tprivate String getTitle(TitleProperty titleProp) {\n\t\tStringBuilder ret = new StringBuilder();\n\t\tList<String> titles = new ArrayList<>();\n\t\tfor (Locale locale : titleProp.getTitleLocales()) {\n\t\t\ttitles.add(titleProp.getTitle(locale));\n\t\t}\n\t\tfor (int i = 0; i < titles.size(); i++) {\n\t\t\tString title = titles.get(i);\n\t\t\tif (title.matches(\"[0-9]+\\\\.\")) { //Deal with \"number\" titles\n\t\t\t\ttitle = title.substring(0, title.length() - 1);\n\t\t\t\twhile (title.length() < 4) {\n\t\t\t\t\ttitle = \"0\" + title;\n\t\t\t\t}\n\t\t\t}\n\t\t\tret.append(title);\n\t\t\tif (i < titles.size() - 1) {\n\t\t\t\tret.append(\" - \");\n\t\t\t}\n\t\t}\n\t\treturn ret.toString();\n\t}\n\n\tprivate String getAuthor(OpenLyricsObject ol) {\n\t\tStringBuilder ret = new StringBuilder();\n\t\tList<String> authors = ol.getProperties().getAuthors();\n\t\tfor (int i = 0; i < authors.size(); i++) {\n\t\t\tret.append(authors.get(i));\n\t\t\tif (i < authors.size() - 1) {\n\t\t\t\tret.append(\", \");\n\t\t\t}\n\t\t}\n\t\treturn ret.toString().trim();\n\t}\n\n\t/**\n\t * Get lyrics as a string from an openlyrics object.\n\t *\n\t * @param ol the openlyrics POJO\n\t * @return the lyrics as a string\n\t */\n\tprivate String getLyrics(OpenLyricsObject ol) {\n\t\tStringBuilder ret = new StringBuilder();\n\t\tif (ol == null || ol.getVerses() == null) {\n\t\t\tLOGGER.log(Level.WARNING, \"Couldn't create openlyrics object\");\n\t\t} else {\n\t\t\tfor (Verse verse : ol.getVerses()) {\n\t\t\t\tif (!verse.getName().isEmpty()) {\n\t\t\t\t\tret.append(parseVerseName(verse.getName()));\n\t\t\t\t}\n\t\t\t\tfor (VerseLine line : verse.getLines()) {\n\t\t\t\t\tret.append(line.getText().trim()).append('\\n');\n\t\t\t\t}\n\t\t\t\tret.append('\\n');\n\t\t\t}\n\t\t}\n\t\treturn ret.toString().trim();\n\t}\n\n\t/**\n\t * Parse verse name as a section title string.\n\t *\n\t * @param verseName the openlyrics verse name\n\t * @return the section title as a string, or an empty string if the name\n\t * could not be parsed\n\t */\n\tprivate String parseVerseName(String verseName) {\n\t\tString ret = \"\";\n\t\tif (verseName.toLowerCase().startsWith(\"v\")) {\n\t\t\t// This is a verse, e.g. \"v1\".\n\t\t\tif (verseName.length() > 1) {\n\t\t\t\tret = \"Verse \" + verseName.substring(1) + \"\\n\";\n\t\t\t} else {\n\t\t\t\tret = \"Verse\\n\";\n\t\t\t}\n\t\t} else if (verseName.toLowerCase().startsWith(\"c\")) {\n\t\t\t// This is a chorus, e.g. \"c1\".\n\t\t\tif (verseName.length() > 1) {\n\t\t\t\tret = \"Chorus \" + verseName.substring(1) + \"\\n\";\n\t\t\t} else {\n\t\t\t\tret = \"Chorus\\n\";\n\t\t\t}\n\t\t} else if (verseName.toLowerCase().startsWith(\"b\")) {\n\t\t\t// This is a bridge, e.g. \"b1\".\n\t\t\tif (verseName.length() > 1) {\n\t\t\t\tret = \"Bridge \" + verseName.substring(1) + \"\\n\";\n\t\t\t} else {\n\t\t\t\tret = \"Bridge\\n\";\n\t\t\t}\n\t\t} else if (verseName.toLowerCase().startsWith(\"p\")) {\n\t\t\t// This is a pre-chorus, e.g. \"p1\".\n\t\t\tif (verseName.length() > 1) {\n\t\t\t\tret = \"Pre-chorus \" + verseName.substring(1) + \"\\n\";\n\t\t\t} else {\n\t\t\t\tret = \"Pre-chorus\\n\";\n\t\t\t}\n\t\t} else if (verseName.toLowerCase().startsWith(\"i\")) {\n\t\t\t// This is an intro, e.g. \"i1\".\n\t\t\tif (verseName.length() > 1) {\n\t\t\t\tret = \"Intro \" + verseName.substring(1) + \"\\n\";\n\t\t\t} else {\n\t\t\t\tret = \"Intro\\n\";\n\t\t\t}\n\t\t} else if (verseName.toLowerCase().startsWith(\"e\")) {\n\t\t\t// This is an ending, e.g. \"e1\".\n\t\t\tif (verseName.length() > 1) {\n\t\t\t\tret = \"Ending \" + verseName.substring(1) + \"\\n\";\n\t\t\t} else {\n\t\t\t\tret = \"Ending\\n\";\n\t\t\t}\n\t\t}\n\t\treturn ret;\n\t}\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/OpenSongImportDialog.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * Copyright (C) 2012 Michael Berry\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.FileFilters;\n\n/**\n * An import dialog for Opensong databases.\n * <p>\n * @author Michael\n */\npublic class OpenSongImportDialog extends ImportDialog {\n\n    /**\n     * Create a new opensong import dialog.\n     * <p>\n     */\n    public OpenSongImportDialog() {\n        super(new String[]{LabelGrabber.INSTANCE.getLabel(\"os.import.line1\")\n        }, FileFilters.ZIP, new OpensongParser(), ImportDialogOptions.disallow());\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/OpensongParser.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport java.io.File;\nimport java.io.IOException;\nimport java.nio.charset.Charset;\nimport java.util.ArrayList;\nimport java.util.Enumeration;\nimport java.util.List;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport java.util.zip.ZipEntry;\nimport java.util.zip.ZipFile;\nimport javax.xml.parsers.DocumentBuilder;\nimport javax.xml.parsers.DocumentBuilderFactory;\nimport javax.xml.parsers.ParserConfigurationException;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.UnicodeReader;\nimport org.quelea.windows.main.StatusPanel;\nimport org.w3c.dom.Document;\nimport org.w3c.dom.Node;\nimport org.w3c.dom.NodeList;\nimport org.xml.sax.InputSource;\nimport org.xml.sax.SAXException;\n\n/**\n * A parser for importing Opensong databases\n * <p>\n * @author Michael\n */\npublic class OpensongParser implements SongParser {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n\n    @Override\n    public List<SongDisplayable> getSongs(File location, StatusPanel statusPanel) throws IOException {\n        try (ZipFile file = new ZipFile(location, Charset.forName(\"Cp437\"))) {\n            List<SongDisplayable> ret = new ArrayList<>();\n            final Enumeration<? extends ZipEntry> entries = file.entries();\n            while (entries.hasMoreElements()) {\n                String fileName = null;\n                try {\n                    final ZipEntry entry = entries.nextElement();\n                    fileName = entry.getName();\n                    DocumentBuilderFactory dbFactory = DocumentBuilderFactory.newInstance();\n                    DocumentBuilder dBuilder = dbFactory.newDocumentBuilder();\n                    Document doc = dBuilder.parse(new InputSource(new UnicodeReader(file.getInputStream(entry), \"UTF-8\")));\n                    NodeList list = doc.getChildNodes();\n                    for (int i = 0; i < list.getLength(); i++) {\n                        if (list.item(i).getNodeName().equalsIgnoreCase(\"song\")) {\n                            SongDisplayable displayable = getDisplayable(list.item(i));\n                            if (displayable != null) {\n                                ret.add(displayable);\n                            }\n                        }\n                    }\n                } catch (IOException | ParserConfigurationException | SAXException ex) {\n                    LOGGER.log(Level.WARNING, \"Error importing opensong: \" + fileName, ex);\n                }\n            }\n            return ret;\n        }\n    }\n\n    /**\n     * Get a song displayable from a song node.\n     *\n     * @param root the \"song\" root node\n     * @return the SongDisplayable represented by this node.\n     */\n    private SongDisplayable getDisplayable(Node root) {\n        NodeList nl = root.getChildNodes();\n        String title = \"\";\n        String author = \"\";\n        String lyrics = \"\";\n        String copyright = \"\";\n        String key = \"\";\n        String ccli = \"\";\n        String capo = \"\";\n        for (int i = 0; i < nl.getLength(); i++) {\n            Node node = nl.item(i);\n            if (node.getNodeName().equalsIgnoreCase(\"title\")) {\n                title = node.getTextContent();\n            } else if (node.getNodeName().equalsIgnoreCase(\"author\")) {\n                author = node.getTextContent();\n            } else if (node.getNodeName().equalsIgnoreCase(\"copyright\")) {\n                copyright = node.getTextContent();\n            } else if (node.getNodeName().equalsIgnoreCase(\"key\")) {\n                key = node.getTextContent();\n            } else if (node.getNodeName().equalsIgnoreCase(\"ccli\")) {\n                ccli = node.getTextContent();\n            } else if (node.getNodeName().equalsIgnoreCase(\"capo\")) {\n                capo = node.getTextContent();\n            } else if (node.getNodeName().equalsIgnoreCase(\"lyrics\")) {\n                lyrics = node.getTextContent();\n            }\n        }\n        if (title.isEmpty()) {\n            return null;\n        }\n        SongDisplayable ret = new SongDisplayable(title, author);\n        ret.setLyrics(processLyrics(lyrics));\n        ret.setCopyright(copyright);\n        ret.setKey(key);\n        ret.setCcli(ccli);\n        ret.setCapo(capo);\n        return ret;\n    }\n\n    private String processLyrics(String lyrics) {\n        StringBuilder ret = new StringBuilder();\n        String[] arr = lyrics.split(\"\\n\");\n        boolean ignoreVerse = false;\n        for (String line : arr) {\n            line = line.trim();\n            if (line.startsWith(\"[\") && line.endsWith(\"]\") && line.length() > 2) {\n                ignoreVerse = false;\n                String sectionTitle = line.substring(1, line.length() - 1);\n                if (sectionTitle.startsWith(\"V\")) {\n                    if (sectionTitle.length() > 1) {\n                        line = \"Verse \" + sectionTitle.substring(1);\n                    } else {\n                        line = \"Verse\";\n                    }\n                } else if (sectionTitle.startsWith(\"C\")) {\n                    if (sectionTitle.length() > 1) {\n                        line = \"Chorus \" + sectionTitle.substring(1);\n                    } else {\n                        line = \"Chorus\";\n                    }\n                } else if (sectionTitle.startsWith(\"T\")) {\n                    if (sectionTitle.length() > 1) {\n                        line = \"Tag \" + sectionTitle.substring(1);\n                    } else {\n                        line = \"Tag\";\n                    }\n                } else if (sectionTitle.startsWith(\"B\")) {\n                    if (sectionTitle.length() > 1) {\n                        line = \"Bridge \" + sectionTitle.substring(1);\n                    } else {\n                        line = \"Bridge\";\n                    }\n                } else {\n                    line = \"Verse\";\n                }\n            } else if (line.startsWith(\".\")) {\n                line = line.substring(1);\n            } else if (line.endsWith(\"||\")) {\n                line = line.substring(0, line.length() - 2) + \"\\n\";\n            } else if (line.equals(\"---\")) {\n                line = \"\";\n            } else if (line.startsWith(\";\")) {\n                ignoreVerse = true;\n            }\n            line = line.replace(\"|\", \"\\n\");\n\n            if (!ignoreVerse) {\n                ret.append(line).append(\"\\n\");\n            }\n        }\n        return ret.toString();\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/PDFExporter.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport java.io.File;\nimport java.io.FileOutputStream;\nimport java.io.IOException;\nimport java.nio.charset.Charset;\nimport java.nio.file.Files;\nimport java.util.ArrayList;\nimport java.util.HashSet;\nimport java.util.List;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport java.util.zip.ZipEntry;\nimport java.util.zip.ZipOutputStream;\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport javafx.stage.FileChooser;\nimport org.javafx.dialog.Dialog;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.print.SongPDFPrinter;\nimport org.quelea.services.utils.FileFilters;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.windows.main.StatusPanel;\n\n/**\n * An exporter for the PDF format.\n *\n * @author Michael\n */\npublic class PDFExporter implements Exporter {\n\n    public static final Logger LOGGER = LoggerUtils.getLogger();\n    private boolean printChords;\n\n    /**\n     * Get the file chooser to be used.\n     * <p/>\n     * @return the zip file chooser..\n     */\n    @Override\n    public FileChooser getChooser() {\n        FileChooser chooser = new FileChooser();\n        chooser.getExtensionFilters().add(FileFilters.ZIP);\n        return chooser;\n    }\n\n    /**\n     * Export the given songs to the given file.\n     *\n     * @param file the zip file to export to.\n     * @param songDisplayables the songs to export to the zip file.\n     */\n    @Override\n    public void exportSongs(final File file, final List<SongDisplayable> songDisplayables) {\n        Dialog.buildConfirmation(LabelGrabber.INSTANCE.getLabel(\"printing.options.text\"), LabelGrabber.INSTANCE.getLabel(\"print.chords.export.question\")).addYesButton(new EventHandler<ActionEvent>() {\n\n            @Override\n            public void handle(ActionEvent t) {\n                printChords = true;\n            }\n        }).addNoButton(new EventHandler<ActionEvent>() {\n\n            @Override\n            public void handle(ActionEvent t) {\n                printChords = false;\n            }\n        }).build().showAndWait();\n        final StatusPanel panel = QueleaApp.get().getMainWindow().getMainPanel().getStatusPanelGroup().addPanel(LabelGrabber.INSTANCE.getLabel(\"exporting.label\") + \"...\");\n        final List<SongDisplayable> songDisplayablesThreadSafe = new ArrayList<>(songDisplayables);\n        new Thread() {\n            public void run() {\n                final HashSet<String> names = new HashSet<>();\n                try (ZipOutputStream out = new ZipOutputStream(new FileOutputStream(file), Charset.forName(\"UTF-8\"))) {\n                    for (int i = 0; i < songDisplayablesThreadSafe.size(); i++) {\n                        SongDisplayable song = songDisplayablesThreadSafe.get(i);\n                        String name = sanitise(song.getTitle()) + \".pdf\";\n                        while (names.contains(name)) {\n                            name = Utils.incrementExtension(name, \"pdf\");\n                        }\n                        names.add(name);\n                        out.putNextEntry(new ZipEntry(name));\n                        out.write(getPDF(song, printChords));\n                        panel.setProgress((double) i / songDisplayablesThreadSafe.size());\n                    }\n                    panel.done();\n                } catch (IOException ex) {\n                    LOGGER.log(Level.WARNING, \"Couldn't export PDF songs\", ex);\n                }\n            }\n        }.start();\n    }\n\n    public static String sanitise(String name) {\n        name = name.replace(\":\", \"\");\n        name = name.replace(\"/\", \"\");\n        name = name.replace(\"\\\\\", \"\");\n        return name;\n    }\n\n    /**\n     * Get the bytes that make up a PDF file for each song.\n     *\n     * @param song the song to get the PDF bytes for.\n     * @param printChords\n     * @return the bytes that make up a PDF file for each song.\n     */\n    public static byte[] getPDF(SongDisplayable song, boolean printChords) {\n        song.setPrintChords(printChords);\n        File temp = null;\n        try {\n            temp = File.createTempFile(\"queleasong\", \".pdf\");\n            temp.deleteOnExit();\n            if (song == null) {\n                return new byte[0];\n            } else {\n                SongPDFPrinter.INSTANCE.print(song, temp, false);\n                return Files.readAllBytes(temp.toPath());\n            }\n        } catch (IOException ex) {\n            LOGGER.log(Level.WARNING, \"Couldn't get PDF bytes for song\", ex);\n            return new byte[0];\n        }\n    }\n\n    @Override\n    public String getStrExtension() {\n        return \"zip\";\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/PlainTextParser.java",
    "content": "package org.quelea.services.importexport;\n\nimport java.io.BufferedReader;\nimport java.io.File;\nimport java.io.FileInputStream;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\nimport java.util.ArrayList;\nimport java.util.Arrays;\nimport java.util.List;\nimport java.util.regex.Matcher;\nimport java.util.regex.Pattern;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.services.utils.LineTypeChecker;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.StatusPanel;\n\n/**\n * A parser for plain text files - also supports some tags and chordpro chords.\n *\n * @author tomaszpio, Michael Berry\n */\npublic class PlainTextParser implements SongParser {\n\n    private static final String DEFAULT_TITLE = \"(Unknown)\";\n    private static final List<String> TITLE_PREFIXES = Arrays.asList(\"Title:\");\n    private static final List<String> AUTHOR_PREFIXES = Arrays.asList(\"Author:\");\n    private static final List<String> CCLI_PREFIXES = Arrays.asList(\"CCLI Song #\", \"CCLI number:\", \"CCLI:\");\n    private static final List<String> COPYRIGHT_PREFIXES = Arrays.asList(\"Copyright:\", \"©\");\n    private static final List<String> YEAR_PREFIXES = Arrays.asList(\"Year:\");\n    private static final List<String> PUBLISHER_PREFIXES = Arrays.asList(\"Publisher:\");\n    private static final List<String> KEY_PREFIXES = Arrays.asList(\"Key:\");\n    private static final List<String> CAPO_PREFIXES = Arrays.asList(\"Capo:\");\n    private static final List<String> NOTES_PREFIXES = Arrays.asList(\"Notes:\", \"Info:\");\n\n    private static void setAttribute(SongDisplayable song, String line) {\n        assert isAttributeLine(line);\n        if (getAttrFromPrefixes(line, TITLE_PREFIXES) != null) {\n            song.setTitle(getAttrFromPrefixes(line, TITLE_PREFIXES));\n        }\n        if (getAttrFromPrefixes(line, AUTHOR_PREFIXES) != null) {\n            song.setAuthor(getAttrFromPrefixes(line, AUTHOR_PREFIXES));\n        }\n        if (getAttrFromPrefixes(line, CCLI_PREFIXES) != null) {\n            song.setCcli(getAttrFromPrefixes(line, CCLI_PREFIXES));\n        }\n        if (getAttrFromPrefixes(line, COPYRIGHT_PREFIXES) != null) {\n            song.setCopyright(getAttrFromPrefixes(line, COPYRIGHT_PREFIXES));\n        }\n        if (getAttrFromPrefixes(line, YEAR_PREFIXES) != null) {\n            song.setYear(getAttrFromPrefixes(line, YEAR_PREFIXES));\n        }\n        if (getAttrFromPrefixes(line, PUBLISHER_PREFIXES) != null) {\n            song.setPublisher(getAttrFromPrefixes(line, PUBLISHER_PREFIXES));\n        }\n        if (getAttrFromPrefixes(line, KEY_PREFIXES) != null) {\n            song.setKey(getAttrFromPrefixes(line, KEY_PREFIXES));\n        }\n        if (getAttrFromPrefixes(line, CAPO_PREFIXES) != null) {\n            song.setCapo(getAttrFromPrefixes(line, CAPO_PREFIXES));\n        }\n        if (getAttrFromPrefixes(line, NOTES_PREFIXES) != null) {\n            song.setInfo(getAttrFromPrefixes(line, NOTES_PREFIXES));\n        }\n    }\n\n    private static boolean isAttributeLine(String line) {\n        List<String> allPrefixes = new ArrayList<>();\n        allPrefixes.addAll(TITLE_PREFIXES);\n        allPrefixes.addAll(AUTHOR_PREFIXES);\n        allPrefixes.addAll(CCLI_PREFIXES);\n        allPrefixes.addAll(COPYRIGHT_PREFIXES);\n        allPrefixes.addAll(YEAR_PREFIXES);\n        allPrefixes.addAll(PUBLISHER_PREFIXES);\n        allPrefixes.addAll(KEY_PREFIXES);\n        allPrefixes.addAll(CAPO_PREFIXES);\n        allPrefixes.addAll(NOTES_PREFIXES);\n\n        for (String prefix : allPrefixes) {\n            if (startsWithIgnoreCase(line, prefix)) {\n                return true;\n            }\n        }\n        return false;\n    }\n\n    private static String getAttrFromPrefixes(String str, List<String> startsWith) {\n        for (String sw : startsWith) {\n            if (startsWithIgnoreCase(str, sw)) {\n                return str.substring(sw.length()).trim();\n            }\n        }\n        return null;\n    }\n\n    private static boolean startsWithIgnoreCase(String str, String startsWith) {\n        return str.toLowerCase().startsWith(startsWith.toLowerCase());\n    }\n    \n    private void addSectionToLyrics(List<String> section, StringBuilder lyrics) {\n        for (String sectionLine : section) {\n            Pattern pattern = Pattern.compile(\"\\\\[\" + LineTypeChecker.CHORD_REGEX + \"\\\\]\");\n            Matcher matcher = pattern.matcher(sectionLine);\n            \n            sectionLine = sectionLine.replaceAll(\"\\\\[\" + LineTypeChecker.CHORD_REGEX + \"\\\\]\", \"\");\n\n            StringBuilder chordLine = new StringBuilder();\n            int offset = 0;\n            while (matcher.find()) {\n                int chordPos = matcher.start() - offset;\n                while (chordLine.length() < chordPos) {\n                    chordLine.append(' ');\n                }\n                if (chordLine.length() > chordPos) {\n                    chordLine.append(' ');\n                    \n                    String startStr = sectionLine.substring(0,chordPos);\n                    String endStr = sectionLine.substring(chordPos);\n                    \n                    sectionLine = startStr;\n                    for(int i=0 ; i<chordLine.length() - chordPos ; i++) {\n                        sectionLine += \"_\";\n                        offset--;\n                    }\n                    sectionLine += endStr;\n                }\n                offset += matcher.group().length();\n                chordLine.append(matcher.group().substring(1, matcher.group().length() - 1));\n            }\n\n            if (!chordLine.toString().isEmpty()) {\n                lyrics.append(chordLine.toString()).append('\\n');\n            }\n\n            lyrics.append(sectionLine).append('\\n');\n        }\n    }\n\n    @Override\n    public List<SongDisplayable> getSongs(File f, StatusPanel statusPanel) throws IOException {\n        List<SongDisplayable> ret = new ArrayList<>();\n        File[] listOfSongs;\n        if (f.isDirectory()) {\n            listOfSongs = f.listFiles();\n        } else {\n            listOfSongs = new File[]{f};\n        }\n        for (int i = 0; i < listOfSongs.length; i++) {\n            if (listOfSongs[i].isFile()) {\n                final String fileName = listOfSongs[i].getName();\n                if (fileName.endsWith(\".txt\")) {\n                    List<String> section = new ArrayList<>();\n                    StringBuilder lyrics = new StringBuilder();\n                    String defaultSongTitle = fileName.substring(0,fileName.length()-4);\n                    if(defaultSongTitle.isEmpty()) {\n                        defaultSongTitle = DEFAULT_TITLE;\n                    }\n                    SongDisplayable song = new SongDisplayable(defaultSongTitle, \"\");\n                    try (BufferedReader bfr = new BufferedReader(new InputStreamReader(new FileInputStream(listOfSongs[i]), Utils.getEncoding(listOfSongs[i])))) {\n                        String line;\n                        while ((line = bfr.readLine()) != null) {\n                            line = line.replace('\\f', '\\n');\n                            if (!line.isEmpty()) {\n                                if (isAttributeLine(line)) {\n                                    setAttribute(song, line);\n                                } else {\n                                    section.add(line);\n                                }\n                            } else {\n                                if (song.getTitle().equals(DEFAULT_TITLE) && section.size() == 1) {\n                                    song.setTitle(section.get(0));\n                                } else if (!isBlankLines(section)) {\n                                    addSectionToLyrics(section, lyrics);\n                                    lyrics.append('\\n');\n                                }\n                                section.clear();\n                            }\n                        }\n                        if (!isBlankLines(section)) {\n                            addSectionToLyrics(section, lyrics);\n                            lyrics.append('\\n');\n                        }\n                        song.setLyrics(lyrics.toString());\n                        ret.add(song);\n                    }\n                }\n            }\n        }\n        return ret;\n    }\n\n    private static boolean isBlankLines(List<String> section) {\n        for (String str : section) {\n            if (!str.trim().isEmpty()) {\n                return false;\n            }\n        }\n        return true;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/PlainTextSongsImportDialog.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.FileFilters;\n\n/**\n *\n * @author tomaszpio@gmail.com\n */\npublic class PlainTextSongsImportDialog extends ImportDialog {\n\n    public PlainTextSongsImportDialog() {\n        super(new String[]{\n            LabelGrabber.INSTANCE.getLabel(\"plaintext.import.line1\")\n        }, FileFilters.PLAIN_TEXT, new PlainTextParser(), ImportDialogOptions.allowZip().andAllowMultiple());\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/PlanningCenterAuthenticator.java",
    "content": "/*\n * To change this license header, choose License Headers in Project Properties.\n * To change this template file, choose Tools | Templates\n * and open the template in the editor.\n */\npackage org.quelea.services.importexport;\n\nimport java.time.Duration;\nimport java.util.Optional;\nimport java.util.function.Consumer;\nimport javafx.application.Platform;\nimport org.quelea.planningcenter.auth.AuthToken;\nimport org.quelea.planningcenter.auth.ClientDetails;\nimport org.quelea.planningcenter.auth.OAuthRedirectFlow;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.utils.DesktopApi;\n\n/**\n *\n * @author Michael\n */\npublic class PlanningCenterAuthenticator {\n\n    private static final String CLIENT_ID = \"894f896c547874179ec8c68d997fd97f8b06af8bfced24b88ff29476c584f88a\";\n    private static final String CLIENT_SECRET = \"7733176ce41c85cd82cfee297292ded6a99d5a57ae9cfa105159d1467d708cac\"; //Doesn't need to be secret for desktop apps\n    private static final String REDIRECT = \"http://localhost:61937\";\n    \n    public static ClientDetails getClientDetails() {\n        return ClientDetails.builder()\n                .clientId(CLIENT_ID)\n                .clientSecret(CLIENT_SECRET)\n                .build();\n    }\n\n    public void authenticate(Consumer<Optional<AuthToken>> callback) {\n        new Thread(() -> {\n            Optional<AuthToken> opt = OAuthRedirectFlow.builder()\n                    .clientDetails(getClientDetails())\n                    .redirect(REDIRECT)\n                    .build()\n                    .listenLocally(Duration.ofSeconds(60), DesktopApi::browse)\n                    .map(tok -> tok.withRefreshTokenUpdater(t -> QueleaProperties.get().setPlanningCenterRefreshToken(t)));\n\n            Platform.runLater(() -> callback.accept(opt));\n        }).start();\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/PlanningCenterOnlineImportDialog.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport java.io.IOException;\nimport java.time.LocalDate;\nimport java.time.format.DateTimeFormatter;\nimport java.util.Collections;\nimport java.util.Comparator;\nimport java.util.HashMap;\nimport java.util.List;\nimport java.util.Map;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport java.util.stream.Collectors;\nimport javafx.application.Platform;\nimport javafx.beans.value.ChangeListener;\nimport javafx.beans.value.ObservableValue;\nimport javafx.concurrent.Task;\nimport javafx.event.ActionEvent;\nimport javafx.fxml.FXML;\nimport javafx.fxml.FXMLLoader;\nimport javafx.scene.Parent;\nimport javafx.scene.Scene;\nimport javafx.scene.control.Button;\nimport javafx.scene.control.TreeItem;\nimport javafx.scene.control.TreeView;\nimport javafx.scene.image.Image;\nimport javafx.scene.layout.Pane;\nimport javafx.stage.Modality;\nimport javafx.stage.Stage;\nimport org.quelea.planningcenter.PlanningCenterClient;\nimport org.quelea.planningcenter.auth.AuthToken;\nimport org.quelea.planningcenter.model.services.Folder;\nimport org.quelea.planningcenter.model.services.Item;\nimport org.quelea.planningcenter.model.services.Plan;\nimport org.quelea.planningcenter.model.services.ServiceType;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.windows.main.QueleaApp;\n\n/**\n * @author Bronson\n */\npublic class PlanningCenterOnlineImportDialog extends Stage {\n\n    public static final DateTimeFormatter STANDARD_DATE_FORMAT = DateTimeFormatter.ofPattern(\"yyyy-MM-dd\");\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    private final Map<TreeItem<String>, PlanningCenterOnlinePlanDialog> treeViewItemPlanDialogMap = new HashMap<TreeItem<String>, PlanningCenterOnlinePlanDialog>();\n    private final PlanningCenterOnlineParser parser;\n    private final PlanningCenterAuthenticator authenticator;\n\n    @FXML\n    private TreeView serviceView;\n    @FXML\n    private Pane planPane;\n    @FXML\n    private Button okButton;\n\n    @SuppressWarnings(\"unchecked\")\n    public PlanningCenterOnlineImportDialog() {\n        parser = new PlanningCenterOnlineParser();\n        authenticator = new PlanningCenterAuthenticator();\n\n        initModality(Modality.APPLICATION_MODAL);\n        initOwner(QueleaApp.get().getMainWindow());\n        setTitle(LabelGrabber.INSTANCE.getLabel(\"pco.import.heading\"));\n\n        try {\n            FXMLLoader loader = new FXMLLoader();\n            loader.setController(this);\n            loader.setResources(LabelGrabber.INSTANCE);\n            Parent root = loader.load(getClass().getResourceAsStream(\"PlanningCenterOnlineImportDialog.fxml\"));\n            Scene scene = new Scene(root);\n            if (QueleaProperties.get().getUseDarkTheme()) {\n                scene.getStylesheets().add(\"org/modena_dark.css\");\n            }\n            setScene(scene);\n\n            serviceView.getSelectionModel().selectedItemProperty()\n                    .addListener((ChangeListener<TreeItem<String>>) this::onServiceViewSelectedItem);\n\n        } catch (Exception e) {\n            LOGGER.log(Level.WARNING, \"Couldn't create planning import dialog\", e);\n        }\n\n        centerOnScreen();\n        getIcons().add(new Image(\"file:icons/planningcenteronline.png\"));\n    }\n\n    public PlanningCenterOnlineParser getParser() {\n        return parser;\n    }\n\n    public void start() {\n        String currentToken = QueleaProperties.get().getPlanningCenterRefreshToken();\n        PlanningCenterClient existingClient = new PlanningCenterClient(\n                new AuthToken(PlanningCenterAuthenticator.getClientDetails(), currentToken)\n                        .withRefreshTokenUpdater(t -> QueleaProperties.get().setPlanningCenterRefreshToken(t))\n        );\n        if (currentToken == null || !existingClient.isConnected()) {\n            authenticator.authenticate(token -> {\n                if (token.isPresent()) {\n                    QueleaProperties.get().setPlanningCenterRefreshToken(token.get().getCurrentRefreshToken());\n                    parser.setClient(new PlanningCenterClient(token.get()));\n                    show();\n                    updatePlans();\n                } else {\n                    hide();\n                }\n            });\n        } else {\n            parser.setClient(existingClient);\n            show();\n            updatePlans();\n        }\n    }\n\n    // Disable/enable appropriate widgets while a import task is in operation\n    public void enablePlanProgressBars(boolean enable) {\n        // stop user being able to try to change to another plan and do bad!\n        serviceView.setDisable(enable);\n        okButton.setDisable(enable);\n    }\n\n    protected void onServiceViewSelectedItem(ObservableValue<? extends TreeItem<String>> observable,\n                                             TreeItem<String> old_val, TreeItem<String> new_val) {\n        TreeItem<String> selectedItem = new_val;\n        planPane.getChildren().clear();\n        PlanningCenterOnlinePlanDialog planDialog = treeViewItemPlanDialogMap.get(selectedItem);\n        if (planDialog != null) {\n            planPane.getChildren().clear();\n            planPane.getChildren().add(planDialog);\n        }\n    }\n\n    @FXML\n    public void onAcceptAction(ActionEvent event) {\n        event.consume();\n        hide();\n    }\n\n    @SuppressWarnings(\"unchecked\")\n    protected void updatePlans() {\n        serviceView.setShowRoot(false);\n        TreeItem<String> rootItem = new TreeItem<>();\n        serviceView.setRoot(rootItem);\n\n        UpdatePlanTask task = new UpdatePlanTask();\n        new Thread(task).start();\n    }\n\n    class UpdatePlanTask extends Task<Void> {\n\n        UpdatePlanTask() {\n        }\n\n        @SuppressWarnings(\"unchecked\")\n        @Override\n        protected Void call() throws Exception {\n            try {\n                processServiceTypeFolder(serviceView.getRoot());\n            } catch (Throwable t) {\n                LOGGER.log(Level.WARNING, \"Exception with parser\", t);\n            }\n            return null;\n        }\n\n        @SuppressWarnings(\"unchecked\")\n        protected void processServiceTypeFolder(TreeItem<String> parentItem) throws IOException {\n            try {\n                String orgName = parser.getPlanningCenterClient().services().api().get().execute().body().get().getName();\n                List<Folder> folders = parser.getPlanningCenterClient().services().folders().api().get().execute().body().get();\n                Map<String, TreeItem<String>> treeItemMap = folders.stream()\n                        .collect(Collectors.toMap(Folder::getId, f -> new TreeItem<>(f.getName() == null ? orgName : f.getName())));\n\n\n                for (Folder folder : folders) {\n                    if (folder.getParent().isPresent()) {\n                        Folder parent = folder.getParent().get();\n                        treeItemMap.get(parent.getId()).getChildren().add(treeItemMap.get(folder.getId()));\n                    } else {\n                        parentItem.getChildren().add(treeItemMap.get(folder.getId()));\n                    }\n                    treeItemMap.get(folder.getId()).setExpanded(true);\n                }\n\n                List<ServiceType> serviceTypes = parser.getPlanningCenterClient().services().serviceTypes().api().get().execute().body().get();\n\n                for (ServiceType serviceType : serviceTypes) {\n                    TreeItem<String> serviceTypeItem = new TreeItem<>(serviceType.getName());\n                    serviceTypeItem.setExpanded(true);\n\n                    TreeItem<String> serviceTypeParentItem;\n                    if (serviceType.getParent() == null) {\n                        serviceTypeParentItem = parentItem;\n\n                    } else {\n                        serviceTypeParentItem = treeItemMap.get(serviceType.getParent().getId());\n                    }\n                    Platform.runLater(() -> serviceTypeParentItem.getChildren().add(serviceTypeItem));\n\n                    int pastDays = QueleaProperties.get().getPlanningCentrePrevDays();\n                    Map<String, String> planQueryMap = new HashMap<>();\n                    planQueryMap.put(\"include\", \"contributors,my_schedules,plan_times,series\");\n                    if(pastDays>=0) {\n                        planQueryMap.put(\"filter\", \"after\");\n                        planQueryMap.put(\"after\", STANDARD_DATE_FORMAT.format(LocalDate.now().minusDays(QueleaProperties.get().getPlanningCentrePrevDays())));\n                    }\n                    List<Plan> serviceTypePlans = parser.getPlanningCenterClient().services().serviceType(serviceType.getId()).plans().api().get(planQueryMap).execute().body().get();\n                    for (Plan plan : serviceTypePlans) {\n                        String date = plan.getDates();\n                        if (date.isEmpty() || date.equals(\"No dates\")) {\n                            continue;\n                        }\n\n                        List<Item> planItems = parser.getPlanningCenterClient().services().serviceType(plan.getServiceType().getId()).plan(plan.getId()).items().api().get().execute().body().get();\n\n                        TreeItem<String> planItem = new TreeItem<>(date);\n                        serviceTypeItem.getChildren().add(planItem);\n                        PlanningCenterOnlinePlanDialog planDialog = new PlanningCenterOnlinePlanDialog(PlanningCenterOnlineImportDialog.this, plan, planItems);\n                        treeViewItemPlanDialogMap.put(planItem, planDialog);\n                    }\n\n                }\n            } catch (Exception ex) {\n                ex.printStackTrace();\n            }\n\n        }\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/PlanningCenterOnlineParser.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n *\n * This program is free software: you can redistribute it and/or modify it under\n * the terms of the GNU General Public License as published by the Free Software\n * Foundation, either version 3 of the License, or (at your option) any later\n * version.\n *\n * This program is distributed in the hope that it will be useful, but WITHOUT\n * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\n * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License along with\n * this program. If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport java.io.BufferedOutputStream;\nimport java.io.File;\nimport java.io.FileOutputStream;\nimport java.io.InputStream;\nimport java.time.LocalDateTime;\nimport java.time.ZoneOffset;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport javafx.scene.control.ProgressBar;\nimport org.apache.commons.io.FilenameUtils;\nimport org.apache.http.HttpEntity;\nimport org.apache.http.HttpResponse;\nimport org.apache.http.client.HttpClient;\nimport org.apache.http.client.methods.HttpGet;\nimport org.apache.http.impl.client.HttpClients;\nimport org.apache.http.util.EntityUtils;\nimport org.quelea.planningcenter.PlanningCenterClient;\nimport org.quelea.planningcenter.model.services.Attachment;\nimport org.quelea.planningcenter.model.services.AttachmentActivity;\nimport org.quelea.planningcenter.model.services.Media;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\n\n/**\n *\n * @author Bronson\n */\npublic class PlanningCenterOnlineParser {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    private PlanningCenterClient planningCenterClient;\n    private final HttpClient httpClient;\n\n    public PlanningCenterOnlineParser() {\n        httpClient = HttpClients.createDefault();\n    }\n\n    public void setClient(PlanningCenterClient client) {\n        this.planningCenterClient = client;\n    }\n\n    public PlanningCenterClient getPlanningCenterClient() {\n        return planningCenterClient;\n    }\n\n    // Download file from url to fileName, putting the file into the download directory\n    // if the file exists it wont be downloaded\n    // will give the file a temporary name until the download is fully complete at\n    // which point it will rename to indicate the file is downloaded properly\n    public String downloadFile(Media media, Attachment attachment, String fileName, ProgressBar progressBar, LocalDateTime lastUpdated) {\n        try {\n            QueleaProperties props = QueleaProperties.get();\n            String fullFileName = FilenameUtils.concat(props.getDownloadPath(), fileName);\n            File file = new File(fullFileName);\n            if (file.exists()) {\n                long lastModified = file.lastModified();\n                if (lastUpdated == null || lastUpdated.atZone(ZoneOffset.UTC).toInstant().toEpochMilli() <= lastModified) {\n                    LOGGER.log(Level.INFO, \"{0} exists, using existing file\", file.getAbsolutePath());\n                    return file.getAbsolutePath();\n                }\n\n                // file is going to get overridden as it failed the timestamp check\n                if (!file.delete()) {\n                    // deletion of exiting file failed! just use the existing file then\n                    LOGGER.log(Level.INFO, \"Couldn''t delete existing file: {0}\", file.getAbsolutePath());\n                    return file.getAbsolutePath();\n                }\n            }\n\n            String partFullFileName = fullFileName + \".part\";\n            File partFile = new File(partFullFileName);\n\n            AttachmentActivity attachmentActivity = planningCenterClient.services().media(media.getId()).attachment(attachment.getId()).api().open().execute().body().get();\n            HttpResponse response = httpClient.execute(new HttpGet(attachmentActivity.getAttachmentUrl()));\n            HttpEntity entity = response.getEntity();\n            if (entity != null) {\n\n                long contentLength = entity.getContentLength();\n\n                InputStream is = entity.getContent();\n                try (BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(partFile))) {\n                    Long totalBytesRead = 0L;\n\n                    byte[] buffer = new byte[1024 * 1024];\n                    int count;\n                    while ((count = is.read(buffer)) != -1) {\n                        bos.write(buffer, 0, count);\n\n                        totalBytesRead += count;\n                        progressBar.setProgress((double) totalBytesRead / (double) contentLength);\n                    }\n                }\n\n                EntityUtils.consume(entity);\n            }\n\n            boolean success = partFile.renameTo(file);\n            if (success && lastUpdated != null) {\n                file.setLastModified(lastUpdated.atZone(ZoneOffset.UTC).toInstant().toEpochMilli()); // set file timestamp to same as on PCO\n            }\n            return file.getAbsolutePath();\n        } catch (Exception e) {\n            LOGGER.log(Level.WARNING, \"Error\", e);\n        }\n\n        return \"\";\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/PlanningCenterOnlinePlanDialog.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport java.io.File;\nimport java.io.IOException;\nimport java.time.LocalDateTime;\nimport java.util.ArrayList;\nimport java.util.HashMap;\nimport java.util.List;\nimport java.util.Map;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport java.util.regex.Matcher;\nimport java.util.regex.Pattern;\nimport javafx.event.ActionEvent;\nimport javafx.fxml.FXML;\nimport javafx.fxml.FXMLLoader;\nimport javafx.scene.Parent;\nimport javafx.scene.control.ProgressBar;\nimport javafx.scene.control.SelectionMode;\nimport javafx.scene.control.TreeItem;\nimport javafx.scene.control.TreeView;\nimport javafx.scene.layout.BorderPane;\nimport javafx.concurrent.Task;\nimport javafx.scene.layout.VBox;\nimport org.apache.commons.io.FilenameUtils;\nimport org.quelea.data.ThemeDTO;\nimport org.quelea.data.displayable.Displayable;\nimport org.quelea.data.displayable.ImageDisplayable;\nimport org.quelea.data.displayable.PresentationDisplayable;\nimport org.quelea.data.displayable.PdfDisplayable;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.data.displayable.VideoDisplayable;\nimport org.quelea.planningcenter.model.services.Arrangement;\nimport org.quelea.planningcenter.model.services.Attachment;\nimport org.quelea.planningcenter.model.services.CustomSlide;\nimport org.quelea.planningcenter.model.services.Item;\nimport org.quelea.planningcenter.model.services.Media;\nimport org.quelea.planningcenter.model.services.Plan;\nimport org.quelea.planningcenter.model.services.Song;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.FileFilters;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.QueleaApp;\n\n/**\n *\n * @author Fabian\n */\npublic class PlanningCenterOnlinePlanDialog extends BorderPane {\n\n    enum PlanType {\n        MEDIA,\n        SONG,\n        CUSTOM_SLIDES,\n        UNKNOWN,\n    }\n\n    enum MediaType {\n        PRESENTATION,\n        PDF,\n        VIDEO,\n        IMAGE,\n        UNKNOWN,\n    }\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    private final Map<TreeItem<String>, Item> treeViewItemMap = new HashMap<>();\n    private final PlanningCenterOnlineImportDialog importDialog;\n    private final Plan plan;\n    private final List<Item> planItems;\n\n    @FXML\n    private TreeView<String> planView;\n    @FXML\n    private ProgressBar totalProgress;\n    @FXML\n    private ProgressBar itemProgress;\n    @FXML\n    private VBox buttonBox;\n    @FXML\n    private VBox progressBox;\n\n    public PlanningCenterOnlinePlanDialog() {\n        importDialog = null;\n        this.plan = null;\n        this.planItems = new ArrayList<>();\n    }\n\n    public PlanningCenterOnlinePlanDialog(PlanningCenterOnlineImportDialog importDlg, Plan plan, List<Item> planItems) {\n        importDialog = importDlg;\n        this.plan = plan;\n        this.planItems = planItems;\n\n        try {\n            FXMLLoader loader = new FXMLLoader();\n            loader.setController(this);\n            loader.setResources(LabelGrabber.INSTANCE);\n            Parent root = loader.load(getClass().getResourceAsStream(\"PlanningCenterOnlinePlanDialog.fxml\"));\n            setCenter(root);\n            planView.getSelectionModel().setSelectionMode(SelectionMode.MULTIPLE);\n            enablePlanProgressBars(false);\n            LOGGER.log(Level.INFO, \"Initialised dialog, updating view\");\n            updateView();\n\n        } catch (Exception e) {\n            LOGGER.log(Level.WARNING, \"Error\", e);\n        }\n    }\n\n    protected PlanType getItemPlanType(Item item) {\n        String itemType = item.getItemType();\n        if (\"media\".equals(itemType)) {\n            return PlanType.MEDIA;\n        } else if (\"song\".equals(itemType)) {\n            return PlanType.SONG;\n        }\n//        else if (itemType.equals(\"item\") && (boolean) item.get(\"using_custom_slides\") == true) {\n//            return PlanType.CUSTOM_SLIDES;\n//        } else if (itemType.equals(\"item\") && ((JSONArray) item.get(\"plan_item_medias\")).size() > 0) {\n//            return PlanType.MEDIA;\n//        }\n        return PlanType.UNKNOWN;\n    }\n\n    @SuppressWarnings(\"unchecked\")\n    protected void updateView() {\n        LOGGER.log(Level.INFO, \"Updating view with id {0}\", plan.getId());\n\n        planView.setShowRoot(false);\n        TreeItem<String> rootTreeItem = new TreeItem<>();\n        planView.setRoot(rootTreeItem);\n\n        for (Item item : planItems) {\n\n            PlanType planType = getItemPlanType(item);\n            switch (planType) {\n                case MEDIA:\n                    addToView_PlanMedia(item, rootTreeItem);\n                    break;\n\n                case SONG:\n                    addToView_PlanSong(item, rootTreeItem);\n                    break;\n\n                case CUSTOM_SLIDES:\n                    addToView_CustomSlides(item, rootTreeItem);\n                    break;\n\n                default:\n                    break;\n            }\n        }\n    }\n\n    protected void addToView_PlanMedia(Item item, TreeItem<String> parentTreeItem) {\n        String title = \"Media: \" + item.getTitle();\n        TreeItem<String> treeItem = new TreeItem<>(title);\n        parentTreeItem.getChildren().add(treeItem);\n        treeViewItemMap.put(treeItem, item);\n    }\n\n    protected void addToView_PlanSong(Item item, TreeItem<String> parentTreeItem) {\n        String title = \"Song: \" + item.getTitle();\n        TreeItem<String> treeItem = new TreeItem<>(title);\n        parentTreeItem.getChildren().add(treeItem);\n        treeViewItemMap.put(treeItem, item);\n    }\n\n    protected void addToView_CustomSlides(Item item, TreeItem<String> parentTreeItem) {\n        String title = \"Custom Slides: \" + item.getTitle();\n        TreeItem<String> treeItem = new TreeItem<>(title);\n        parentTreeItem.getChildren().add(treeItem);\n        treeViewItemMap.put(treeItem, item);\n    }\n\n    @FXML\n    private void onImportAllAction(ActionEvent event) {\n        List<TreeItem<String>> allTreeItems = planView.getRoot().getChildren();\n        importSelected(allTreeItems);\n    }\n\n    @FXML\n    private void onImportSelectedAction(ActionEvent event) {\n        List<TreeItem<String>> selectedTreeItems = planView.getSelectionModel().getSelectedItems();\n        importSelected(selectedTreeItems);\n    }\n\n    @FXML\n    private void onRefreshAction(ActionEvent event) {\n        updateView();\n    }\n\n    // Disable/enable appropriate widgets while a import task is in operation\n    private void enablePlanProgressBars(boolean enable) {\n        buttonBox.setDisable(enable);\n        progressBox.setVisible(enable);\n        planView.setDisable(enable);\n\n        // stop user being able to try to change to another plan and do bad!\n        importDialog.enablePlanProgressBars(enable);\n    }\n\n    class ImportTask extends Task<Void> {\n\n        List<TreeItem<String>> selectedTreeItems;\n        List<Displayable> importItems = new ArrayList<>();\n\n        ImportTask(List<TreeItem<String>> selectedTreeItems) {\n            this.selectedTreeItems = selectedTreeItems;\n        }\n\n        @Override\n        protected Void call() throws Exception {\n            try {\n                enablePlanProgressBars(true);\n                totalProgress.setProgress(0);\n\n                int index = 0;\n                for (TreeItem<String> treeItem : selectedTreeItems) {\n                    Item item = treeViewItemMap.get(treeItem);\n\n                    itemProgress.setProgress(0);\n\n                    PlanType planType = getItemPlanType(item);\n                    switch (planType) {\n                        case MEDIA:\n                            prepare_PlanMedia(item, treeItem);\n                            break;\n\n                        case SONG:\n                            prepare_PlanSong(item, treeItem);\n                            break;\n\n                        case CUSTOM_SLIDES:\n                            prepare_CustomSlides(item, treeItem);\n                            break;\n\n                        default:\n                            break;\n                    }\n\n                    ++index;\n                    totalProgress.setProgress((double) index / (double) selectedTreeItems.size());\n                }\n\n                enablePlanProgressBars(false);\n            } catch (Throwable t) {\n                t.printStackTrace();\n            }\n            return null;\n\n        }\n\n        @Override\n        protected void succeeded() {\n            importTaskSucceeded(this);\n            super.succeeded();\n        }\n\n        protected void prepare_PlanMedia(Item item, TreeItem<String> treeItem) {\n            try {\n                List<Media> customMedia = importDialog.getParser().getPlanningCenterClient().services().serviceType(plan.getServiceType().getId()).plan(plan.getId()).item(item.getId()).media().api().get().execute().body().get();\n\n                for (Media media : customMedia) {\n                    prepare_PlanMedia_fromMediaJSON(media);\n                }\n            } catch (IOException ex) {\n                LOGGER.log(Level.WARNING, \"Error preparing media\", ex);\n            }\n        }\n\n        protected void prepare_PlanMedia_fromMediaJSON(Media media) {\n            List<Attachment> attachments = media.getAttachments();\n            Attachment firstAttachment = attachments.get(0);\n\n            if (firstAttachment.isDownloadable()) {\n                String fileName = firstAttachment.getFilename();\n\n                // work out when file was last updated in PCO\n                LocalDateTime updatedAt = firstAttachment.getUpdatedAt();\n\n                fileName = importDialog.getParser().downloadFile(media, firstAttachment, fileName, itemProgress, updatedAt);\n\n                \n                Displayable displayable = null;\n                MediaType mediaType = classifyMedia(fileName);\n                switch (mediaType) {\n                    case PRESENTATION:\n                        try {\n                            displayable = new PresentationDisplayable(new File(fileName));\n                        } catch (Exception e) {\n                            LOGGER.log(Level.WARNING, \"Error\", e);\n                        }\n                        break;\n\n                    case PDF:\n                        try {\n                            displayable = new PdfDisplayable(new File(fileName));\n                        } catch (Exception e) {\n                            LOGGER.log(Level.WARNING, \"Error\", e);\n                        }\n                        break;\n\n                    case VIDEO:\n                        displayable = new VideoDisplayable(fileName);\n                        break;\n\n                    case IMAGE:\n                        displayable = new ImageDisplayable(new File(fileName));\n                        break;\n\n                    default:\n                    case UNKNOWN:\n                        break;\n                }\n\n                if (displayable != null) {\n                    importItems.add(displayable);\n                }\n            }\n        }\n\n        protected void prepare_PlanSong(Item item, TreeItem<String> treeItem) {\n            Song song = item.getSong();\n            Arrangement arrangement = item.getArrangement();\n\n            String lyrics = arrangement.getChordChart();\n            if (lyrics == null) {\n                lyrics = \"\";\n            } else {\n                lyrics = cleanLyrics(lyrics);\n            }\n\n            SongDisplayable songDisplayable = new SongDisplayable(song.getTitle(), song.getAuthor());\n            songDisplayable.setTheme(ThemeDTO.DEFAULT_THEME);\n            songDisplayable.setLyrics(lyrics);\n            songDisplayable.setCopyright(song.getCopyright());\n            songDisplayable.setCcli(Integer.toString(song.getCcliNumber()));\n\n            Utils.updateSongInBackground(songDisplayable, true, false);\n            importItems.add(songDisplayable);\n        }\n\n        protected void prepare_CustomSlides(Item item, TreeItem<String> treeItem) {\n\n            try {\n                String title = item.getTitle();\n                List<String> slideTextArray = new ArrayList<>();\n                List<CustomSlide> customSlides = importDialog.getParser().getPlanningCenterClient().services().serviceType(plan.getServiceType().getId()).plan(plan.getId()).item(item.getId()).customSlides().api().get()\n                        .execute().body().get();\n\n                for (CustomSlide slide : customSlides) {\n                    String body = slide.getBody();\n\n                    // might need something like this in future:\n                    // depending on how often we use custom slides with an empty line which I think is rare\n                    // enough to ignore for now\n                    //String body = \"(\" + (String)slide.get(\"label\") + \")\" + System.lineSeparator() + (String)slide.get(\"body\");\n                    slideTextArray.add(body);\n                }\n\n                // double line separator so SongDisplayable knows where to break the slides apart\n                String joinedSlidesText = String.join(System.lineSeparator() + System.lineSeparator(), slideTextArray);\n\n                SongDisplayable slides = new SongDisplayable(title, \"Unknown\");\n                slides.setLyrics(joinedSlidesText);\n                importItems.add(slides);\n            } catch (IOException ex) {\n                LOGGER.log(Level.WARNING, \"Can't prepare custom slides\", ex);\n            }\n        }\n    }\n\n    // This MUST be run in the main thread\n    // This adds the prepared displayable items into Quelea\n    private void importTaskSucceeded(ImportTask importTask) {\n        for (Displayable displayable : importTask.importItems) {\n            QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getScheduleList().add(displayable);\n        }\n\n        QueleaApp.get().getMainWindow().getMainPanel().getPreviewPanel().refresh();\n    }\n\n    private void importSelected(List<TreeItem<String>> selectedTreeItems) {\n        ImportTask task = new ImportTask(selectedTreeItems);\n        new Thread(task).start();\n    }\n\n    protected MediaType classifyMedia(String fileName) {\n        String extension = \"*.\" + FilenameUtils.getExtension(fileName);\n        if (FileFilters.POWERPOINT.getExtensions().contains(extension)) {\n            return MediaType.PRESENTATION;\n        }\n\n        if (FileFilters.PDF_GENERIC.getExtensions().contains(extension)) {\n            return MediaType.PDF;\n        }\n\n        if (FileFilters.VIDEOS.getExtensions().contains(extension)) {\n            return MediaType.VIDEO;\n        }\n\n        if (FileFilters.IMAGES.getExtensions().contains(extension)) {\n            return MediaType.IMAGE;\n        }\n\n        return MediaType.UNKNOWN;\n    }\n\n    // clean up things like (C2) transform it to (Chorus 2)\n    // so Quelea can handle it\n    protected String cleanLyrics(String lyrics) {\n        Pattern titleExp = Pattern.compile(\"^\\\\(?(Verse|Chorus|Pre-Chorus|Pre Chorus|Tag|Outro|Bridge|Misc|Interlude|Ending)\\\\)?\\\\s?(\\\\d?)|\\\\(?(\\\\S)(\\\\d+)\\\\)?$\", Pattern.MULTILINE | Pattern.CASE_INSENSITIVE);\n\n        // allows us to expand abbreviations to full name (ensure Key value is all uppercase)\n        Map<String, String> titleDict = new HashMap<String, String>();\n        titleDict.put(\"C\", \"Chorus\");\n        titleDict.put(\"PC\", \"Pre-Chorus\");\n        titleDict.put(\"V\", \"Verse\");\n        titleDict.put(\"T\", \"Tag\");\n        titleDict.put(\"O\", \"Outro\");\n        titleDict.put(\"B\", \"Bridge\");\n        titleDict.put(\"M\", \"Misc\");\n        titleDict.put(\"E\", \"Ending\");\n        titleDict.put(\"I\", \"Interlude\");\n\n        class TitleTextBlock {\n\n            public String title;\n            public String text;\n\n            public TitleTextBlock(String title, String text) {\n                this.title = title;\n                this.text = text;\n            }\n        }\n        List<TitleTextBlock> titleTextBlockList = new ArrayList<>();\n\n        // lets clean up some funky stuff we don't want the audience to know about:\n        // remove line repat X time tags - (5X) \n        // and (REPEAT) tags\n        Pattern removeExp = Pattern.compile(\"\\\\(\\\\d+X\\\\)|\\\\(REPEAT\\\\)\", Pattern.CASE_INSENSITIVE);\n        Matcher m = removeExp.matcher(lyrics);\n        lyrics = m.replaceAll(\"\").trim();\n\n        // remove embedded choords (wrapped in brackets)\n        Pattern removeChoordsExp = Pattern.compile(\"(?m)(^| |\\\\[|\\\\b)([A-G](##?|bb?)?((sus|maj|min|aug|dim)\\\\d?)?(\\\\/[A-G](##?|bb?)?)?)(\\\\]| (?!\\\\w)|$)\");\n        Matcher m2 = removeChoordsExp.matcher(lyrics);\n        lyrics = m2.replaceAll(\"\");\n\n        int lastMatchEnd = -1;\n        String lastTitle = \"\";\n        Matcher match = titleExp.matcher(lyrics);\n        while (match.find()) {\n            try {\n                int groupCount = match.groupCount();\n                String title = (match.group(1) != null) ? match.group(1) : \"\";\n                title = (match.group(3) != null) ? match.group(3) : title;\n                if (!title.isEmpty()) {\n                    // expand abbreviations\n                    if (titleDict.containsKey(title.toUpperCase())) {\n                        title = titleDict.get(title);\n                    }\n                }\n\n                String number = (match.group(2) != null) ? match.group(2) : \"\";\n                number = (match.group(4) != null) ? match.group(4) : number;\n\n                title = title + \" \" + number;\n                title = title.trim();\n\n                int matchStart = match.start();\n                if (lastMatchEnd != -1) {\n                    String text = lyrics.substring(lastMatchEnd, matchStart).trim();\n                    titleTextBlockList.add(new TitleTextBlock(lastTitle, text));\n                } else {\n                    // if the first title is malformed, at least this will pull down the text for the user to be able to fix it up\n                    if (matchStart != 0) {\n                        String text = lyrics.substring(0, matchStart).trim();\n                        titleTextBlockList.add(new TitleTextBlock(\"Unknown\", text));\n                    }\n                }\n\n                lastTitle = title;\n            } catch (Exception e) {\n                LOGGER.log(Level.WARNING, \"Error\", e);\n            }\n\n            lastMatchEnd = match.end();\n        }\n\n        if (lastMatchEnd != -1) {\n            String text = lyrics.substring(lastMatchEnd).trim();\n            titleTextBlockList.add(new TitleTextBlock(lastTitle, text));\n        } else {\n            // the whole song is malformed, at least this will pull down the text for the user to be able to fix it up\n            String text = lyrics;\n            titleTextBlockList.add(new TitleTextBlock(\"Unknown\", text));\n        }\n\n        // now the song has been divided into titled text blocks, time to bring it together nicely\n        // for Quelea\n        String cleanedLyrics = \"\";\n        for (int i = 0; i < titleTextBlockList.size(); ++i) {\n            TitleTextBlock titleTextBlock = titleTextBlockList.get(i);\n            if (titleTextBlock.text.isEmpty()) {\n                continue;\n            }\n\n            // newlines separating previous from current\n            if (i != 0) {\n                cleanedLyrics += System.lineSeparator() + System.lineSeparator();\n            }\n\n            cleanedLyrics += \"(\" + titleTextBlock.title + \")\" + System.lineSeparator() + titleTextBlock.text;\n        }\n\n        return cleanedLyrics;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/PresentationManagerImportDialog.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * Copyright (C) 2012 Michael Berry\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.FileFilters;\n\n/**\n * An import dialog for Presentation Manager databases.\n * <p>\n * @author Michael\n */\npublic class PresentationManagerImportDialog extends ImportDialog {\n\n    /**\n     * Create a new Presentation Manager import dialog.\n     * <p>\n     */\n    public PresentationManagerImportDialog() {\n        super(new String[]{LabelGrabber.INSTANCE.getLabel(\"pm.import.line1\")\n        }, FileFilters.PM_SONG, new PresentationManagerParser(), ImportDialogOptions.allowZip().andAllowMultiple());\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/PresentationManagerParser.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport java.io.ByteArrayInputStream;\nimport java.io.File;\nimport java.io.IOException;\nimport java.util.ArrayList;\nimport java.util.List;\nimport javax.xml.parsers.DocumentBuilder;\nimport javax.xml.parsers.DocumentBuilderFactory;\nimport javax.xml.parsers.ParserConfigurationException;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.StatusPanel;\nimport org.w3c.dom.DOMException;\nimport org.w3c.dom.Document;\nimport org.w3c.dom.Node;\nimport org.w3c.dom.NodeList;\nimport org.xml.sax.SAXException;\n\n/**\n * A parser for parsing Presentation Manager databases.\n * <p>\n * @author Michael\n */\npublic class PresentationManagerParser implements SongParser {\n\n    /**\n     * Get a list of the songs contained in the given Presentation Manager\n     * database.\n     * <p>\n     * @throws IOException if something goes wrong.\n     */\n    @Override\n    public List<SongDisplayable> getSongs(File location, StatusPanel statusPanel) throws IOException {\n        List<SongDisplayable> ret = new ArrayList<>();\n        String rawXML = Utils.getTextFromFile(location.getAbsolutePath(), \"\", \"UTF-16LE\");\n        String[] lines = rawXML.split(\"\\n\");\n        StringBuilder xmlText = new StringBuilder();\n        boolean first = true;\n        for (String line : lines) {\n            if (first) {\n                first = false;\n                continue;\n            }\n            if (!line.startsWith(\"<?xml\")) {\n                xmlText.append(line.trim()).append(\"\\n\");\n            }\n        }\n        String xmlStr = xmlText.toString();\n        if (!xmlStr.trim().endsWith(\"</song>\")) {\n            xmlStr += \"</song>\";\n        }\n        SongDisplayable song = getSongFromXML(xmlStr);\n        if (song != null) {\n            ret.add(song); //Format seems to miss out the end tag...\n        }\n        return ret;\n    }\n\n    private SongDisplayable getSongFromXML(String lyricsXML) {\n        try {\n            DocumentBuilderFactory dbFactory = DocumentBuilderFactory.newInstance();\n            DocumentBuilder dBuilder = dbFactory.newDocumentBuilder();\n            Document doc = dBuilder.parse(new ByteArrayInputStream(lyricsXML.getBytes(\"UTF-8\")));\n            Node root = doc.getElementsByTagName(\"song\").item(0);\n            StringBuilder lyrics = new StringBuilder();\n            String title = \"Presentation Manager Song\";\n            String author = \"\";\n            NodeList rootChildren = root.getChildNodes();\n            for (int i = 0; i < rootChildren.getLength(); i++) {\n                if (rootChildren.item(i).getNodeName().equalsIgnoreCase(\"verses\")) {\n                    NodeList verses = rootChildren.item(i).getChildNodes();\n                    for (int j = 0; j < verses.getLength(); j++) {\n                        String verseText = verses.item(j).getTextContent().trim();\n                        if (!verseText.isEmpty()) {\n                            String[] verseLines = verseText.split(\"\\n\");\n                            StringBuilder verseBuilder = new StringBuilder();\n                            for (String verseLine : verseLines) {\n                                verseLine = verseLine.trim();\n                                if (verseLine.isEmpty()) {\n                                    verseLine = \" \"; //Alt + 0160, non breaking space\n                                }\n                                verseBuilder.append(verseLine).append(\"\\n\");\n                            }\n                            lyrics.append(verseBuilder.toString().trim()).append(\"\\n\\n\");\n                        }\n                    }\n                }\n\n                if (rootChildren.item(i).getNodeName().equalsIgnoreCase(\"attributes\")) {\n                    NodeList attributes = rootChildren.item(i).getChildNodes();\n                    for (int j = 0; j < attributes.getLength(); j++) {\n                        String name = attributes.item(j).getNodeName();\n                        if (name.equalsIgnoreCase(\"Title\")) {\n                            title = attributes.item(j).getTextContent();\n                        }\n                        if (name.equalsIgnoreCase(\"Author\")) {\n                            author = attributes.item(j).getTextContent();\n                        }\n                    }\n                }\n            }\n            SongDisplayable ret = new SongDisplayable(title, author);\n            ret.setLyrics(lyrics.toString().trim());\n            return ret;\n        } catch (ParserConfigurationException | SAXException | IOException | DOMException ex) {\n            return null;\n        }\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/ProPresenterImportDialog.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.FileFilters;\n\n/**\n * The propresenter import dialog, used for importing songs from propresenter.\n * @author Michael\n */\npublic class ProPresenterImportDialog extends ImportDialog {\n    \n    public ProPresenterImportDialog() {\n        super(new String[]{\n                    LabelGrabber.INSTANCE.getLabel(\"propresenter.import.line1\")\n                }, FileFilters.PROPRESENTER, new ProPresenterParser(), ImportDialogOptions.allowZip().andAllowMultiple());\n    }\n    \n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/ProPresenterParser.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * Copyright (C) 2012 Michael Berry\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.StatusPanel;\nimport org.w3c.dom.DOMException;\nimport org.w3c.dom.Document;\nimport org.w3c.dom.Element;\nimport org.w3c.dom.Node;\nimport org.w3c.dom.NodeList;\nimport org.xml.sax.SAXException;\nimport javax.swing.text.BadLocationException;\nimport javax.swing.text.rtf.RTFEditorKit;\nimport javax.xml.parsers.DocumentBuilder;\nimport javax.xml.parsers.DocumentBuilderFactory;\nimport javax.xml.parsers.ParserConfigurationException;\nimport javax.xml.xpath.XPathConstants;\nimport javax.xml.xpath.XPathExpression;\nimport javax.xml.xpath.XPathExpressionException;\nimport javax.xml.xpath.XPathFactory;\nimport java.io.ByteArrayInputStream;\nimport java.io.File;\nimport java.io.IOException;\nimport java.nio.charset.Charset;\nimport java.util.Base64;\nimport java.util.Collections;\nimport java.util.HashMap;\nimport java.util.List;\nimport java.util.Map;\nimport java.util.Optional;\nimport java.util.function.BiFunction;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\n\n/**\n * Parses ProPrsenter 4, 5 and 6 XML files.\n *\n * @author Michael\n */\npublic class ProPresenterParser implements SongParser {\n\n\tprivate static final Logger LOGGER = LoggerUtils.getLogger();\n\tprivate final Map<Integer, BiFunction<String, Node, Optional<String>>> slideTransformers;\n\n\tpublic ProPresenterParser() {\n\t\tthis.slideTransformers=Map.of(4, this::getSectionTextLegacy,\n\t\t\t\t5, this::getSectionTextLegacy,\n\t\t\t\t6, this::getSectionText6\n\t\t\t\t);\n\t}\n\n\t@Override\n\tpublic List<SongDisplayable> getSongs(File file, StatusPanel statusPanel) throws IOException {\n\t\treturn getSong(file).map(Collections::singletonList).orElse(Collections.emptyList());\n\t}\n\n\tprivate Optional<SongDisplayable> getSong(File file) {\n\t\tString encoding = Utils.getEncoding(file);\n\t\tint ppVersion = getVersion(file.getAbsolutePath());\n\t\tif (ppVersion < 4 || ppVersion > 6) {\n\t\t\tLOGGER.log(Level.WARNING, \"Can only parse versions 4-6\");\n\t\t\treturn Optional.empty();\n\t\t}\n\n\t\ttry {\n\t\t\tDocumentBuilderFactory dbFactory = DocumentBuilderFactory.newInstance();\n\t\t\tDocumentBuilder dBuilder = dbFactory.newDocumentBuilder();\n\t\t\tDocument doc = dBuilder.parse(file);\n\t\t\tString title = getTitle(doc.getDocumentElement());\n\t\t\tString author = getAuthor(doc.getDocumentElement());\n\n\t\t\tStringBuilder lyrics = new StringBuilder();\n\n\t\t\tNodeList slideList = doc.getElementsByTagName(\"RVDisplaySlide\");\n\t\t\tLOGGER.log(Level.INFO, \"Found {0} slides\", slideList.getLength());\n\t\t\tfor (int i = 0; i < slideList.getLength(); i++) {\n\t\t\t\tslideTransformers\n\t\t\t\t\t\t.getOrDefault(ppVersion, (s,n) -> Optional.empty())\n\t\t\t\t\t\t.apply(encoding, slideList.item(i))\n\t\t\t\t\t\t.map(this::appendNewline)\n\t\t\t\t\t\t.ifPresent(lyrics::append);\n\t\t\t}\n\t\t\tSongDisplayable song = new SongDisplayable(title, author);\n\t\t\tsong.setLyrics(lyrics.toString().trim());\n\t\t\treturn Optional.of(song);\n\t\t} catch (IOException | ParserConfigurationException | DOMException | SAXException ex) {\n\t\t\tLOGGER.log(Level.SEVERE, \"Error with import\", ex);\n\t\t\treturn Optional.empty();\n\t\t}\n\t}\n\n\tprivate String getAuthor(Element rootElement) {\n\t\tString[] attrsToTry = {\"artist\", \"CCLIAuthor\", \"CCLIArtistCredits\"};\n\t\treturn tryAttrs(rootElement, attrsToTry).orElse(\"\");\n\t}\n\n\tprivate String getTitle(Element rootElement) {\n\t\tString[] attrsToTry = {\"CCLISongTitle\"};\n\t\treturn tryAttrs(rootElement, attrsToTry).orElse(\"Unknown\");\n\t}\n\n\tprivate Optional<String> tryAttrs(Element ele, String[] attrsToTry) {\n\t\tfor (String attrToTry : attrsToTry) {\n\t\t\tString attrValue = ele.getAttribute(attrToTry);\n\t\t\tif (attrValue != null && !attrValue.isEmpty()) {\n\t\t\t\treturn Optional.of(attrValue);\n\t\t\t}\n\t\t}\n\t\treturn Optional.empty();\n\t}\n\n\tprivate Optional<String> getSectionTextLegacy(String encoding, Node slideNode) {\n\t\ttry {\n\t\t\tXPathFactory xPathfactory = XPathFactory.newInstance();\n\t\t\tStringBuilder ret = new StringBuilder();\n\t\t\tXPathExpression expr = xPathfactory.newXPath().compile(\".//RVTextElement\");\n\t\t\tNodeList lines = (NodeList) expr.evaluate(slideNode, XPathConstants.NODESET);\n\t\t\tLOGGER.log(Level.INFO, \"Found {0} lines\", lines.getLength());\n\t\t\tfor (int j = 0; j < lines.getLength(); j++) {\n\t\t\t\tNode lineNode = lines.item(j);\n\t\t\t\tString line = new String(Base64.getDecoder().decode(lineNode.getAttributes().getNamedItem(\"RTFData\").getTextContent()), Charset.forName(encoding));\n\t\t\t\tline = stripRtfTags(line).trim();\n\t\t\t\tret.append(line).append('\\n');\n\t\t\t}\n\t\t\treturn Optional.of(ret.toString());\n\t\t} catch (XPathExpressionException | DOMException ex) {\n\t\t\tLOGGER.log(Level.SEVERE, \"Error with import legacy\", ex);\n\t\t\treturn Optional.empty();\n\t\t}\n\t}\n\n\tprivate Optional<String> getSectionText6(String encoding, Node slideNode) {\n\t\ttry {\n\t\t\tXPathFactory xPathfactory = XPathFactory.newInstance();\n\t\t\tStringBuilder ret = new StringBuilder();\n\t\t\tXPathExpression expr = xPathfactory.newXPath().compile(\".//NSString[@rvXMLIvarName=\\\"PlainText\\\"]\");\n\t\t\tNodeList lines = (NodeList) expr.evaluate(slideNode, XPathConstants.NODESET);\n\t\t\tfor (int j = 0; j < lines.getLength(); j++) {\n\t\t\t\tNode lineNode = lines.item(j);\n\t\t\t\tString line = new String(Base64.getDecoder().decode(lineNode.getTextContent()), Charset.forName(encoding));\n\t\t\t\tret.append(line).append('\\n');\n\t\t\t}\n\t\t\treturn Optional.of(ret.toString());\n\t\t} catch (XPathExpressionException | DOMException ex) {\n\t\t\tLOGGER.log(Level.SEVERE, \"Error with import v6\", ex);\n\t\t\treturn Optional.empty();\n\t\t}\n\t}\n\n\tprivate int getVersion(String filePath) {\n\t\ttry {\n\t\t\treturn Integer.parseInt(Character.toString(filePath.charAt(filePath.length() - 1)));\n\t\t} catch (NumberFormatException ex) {\n\t\t\tLOGGER.log(Level.SEVERE, \"Can''t work out version of {0}\", filePath);\n\t\t\treturn -1;\n\t\t}\n\t}\n\n\tprivate String stripRtfTags(String text) {\n\t\tRTFEditorKit rtfParser = new RTFEditorKit();\n\t\tjavax.swing.text.Document document = rtfParser.createDefaultDocument();\n\t\ttry {\n\t\t\trtfParser.read(new ByteArrayInputStream(text.getBytes(\"UTF-8\")), document, 0);\n\t\t\treturn document.getText(0, document.getLength());\n\t\t} catch (IOException | BadLocationException ex) {\n\t\t\tLOGGER.log(Level.SEVERE, \"Error stripping RTF tags\", ex);\n\t\t\treturn text;\n\t\t}\n\t}\n\n\tprivate String appendNewline(String text) {\n\t\treturn text + \"\\n\";\n\t}\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/QSPExporter.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport java.io.File;\nimport java.util.List;\nimport javafx.stage.FileChooser;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.services.utils.FileFilters;\nimport org.quelea.services.utils.SongPack;\n\n/**\n * An exporter for writing QSP files.\n * @author Michael\n */\npublic class QSPExporter implements Exporter {\n    \n    /**\n     * Get the file chooser to be used.\n     * <p/>\n     * @return the song pack file chooser.\n     */\n    @Override\n    public FileChooser getChooser() {\n        FileChooser chooser = new FileChooser();\n        chooser.getExtensionFilters().add(FileFilters.SONG_PACK);\n        return chooser;\n    }\n\n    /**\n     * Write the song pack to the specified file, closing the window when done.\n     * <p/>\n     * @param file the file to write the song pack to.\n     */\n    @Override\n    public void exportSongs(final File file, final List<SongDisplayable> songDisplayables) {\n        final SongPack pack = new SongPack();\n        pack.addSongs(songDisplayables);\n        pack.writeToFile(file);\n\n    }\n\n    @Override\n    public String getStrExtension() {\n        return \"qsp\";\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/QSPImportDialog.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.FileFilters;\n\n/**\n * An import dialog for Quelea song packs.\n * <p>\n * @author Michael\n */\npublic class QSPImportDialog extends ImportDialog {\n\n    /**\n     * Create a new QSP import dialog.\n     */\n    public QSPImportDialog() {\n        super(new String[]{\n            LabelGrabber.INSTANCE.getLabel(\"qsp.import.line1\")\n        }, FileFilters.SONG_PACK, new QSPParser(), ImportDialogOptions.allowZip().andAllowMultiple());\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/QSPParser.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport java.io.File;\nimport java.io.IOException;\nimport java.util.List;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.services.utils.SongPack;\nimport org.quelea.windows.main.StatusPanel;\n\n/**\n * A parser for parsing song packs. Not really a parser, but here for \n * completeness.\n * @author Michael\n */\npublic class QSPParser implements SongParser {\n\n    /**\n     * Get a list of the songs contained in the given pack.\n     * @param location the location of the QSP file.\n     * @return a list of the songs found.\n     * @throws IOException if something goes wrong.\n     */\n    @Override\n    public List<SongDisplayable> getSongs(File location, StatusPanel statusPanel) throws IOException {\n        return SongPack.fromFile(location).getSongs();\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/ScreenMonkeyImportDialog.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * Copyright (C) 2012 Michael Berry\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.FileFilters;\n\n/**\n * An import dialog for Screen monkey databases.\n * <p>\n * @author Michael\n */\npublic class ScreenMonkeyImportDialog extends ImportDialog {\n\n    /**\n     * Create a new Screen monkey import dialog.\n     * <p>\n     */\n    public ScreenMonkeyImportDialog() {\n        super(new String[]{LabelGrabber.INSTANCE.getLabel(\"smi.import.line1\")\n        }, FileFilters.XML_GENERIC, new ScreenMonkeyParser(), ImportDialogOptions.allowZip().andAllowMultiple());\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/ScreenMonkeyParser.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport java.io.ByteArrayInputStream;\nimport java.io.File;\nimport java.io.IOException;\nimport java.util.ArrayList;\nimport java.util.List;\nimport javax.xml.parsers.DocumentBuilder;\nimport javax.xml.parsers.DocumentBuilderFactory;\nimport javax.xml.parsers.ParserConfigurationException;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.StatusPanel;\nimport org.w3c.dom.DOMException;\nimport org.w3c.dom.Document;\nimport org.w3c.dom.Node;\nimport org.w3c.dom.NodeList;\nimport org.xml.sax.SAXException;\n\n/**\n * A parser for parsing Screen Monkey databases.\n * <p>\n * @author Michael\n */\npublic class ScreenMonkeyParser implements SongParser {\n\n    /**\n     * Get a list of the songs contained in the given Screen Monkey\n     * database.\n     * <p>\n     * @throws IOException if something goes wrong.\n     */\n    @Override\n    public List<SongDisplayable> getSongs(File location, StatusPanel statusPanel) throws IOException {\n        List<SongDisplayable> ret = new ArrayList<>();\n        String encoding = Utils.getEncoding(location);\n        String rawXML = Utils.getTextFromFile(location.getAbsolutePath(), \"\", encoding);\n        SongDisplayable song = getSongFromXML(rawXML, encoding);\n        if (song != null) {\n            ret.add(song);\n        }\n        return ret;\n    }\n\n    private SongDisplayable getSongFromXML(String lyricsXML, String encoding) {\n        try {\n            DocumentBuilderFactory dbFactory = DocumentBuilderFactory.newInstance();\n            DocumentBuilder dBuilder = dbFactory.newDocumentBuilder();\n            Document doc = dBuilder.parse(new ByteArrayInputStream(lyricsXML.getBytes(encoding)));\n            Node root = doc.getElementsByTagName(\"Song\").item(0);\n            StringBuilder lyrics = new StringBuilder();\n            String title = \"Screen Money Song\";\n            String author = \"\";\n            String capo = \"\";\n            String tempo = \"\";\n            String timesig = \"\";\n            String ccli = \"\";\n            String theme = \"\";\n            String comments = \"\";\n            NodeList rootChildren = root.getChildNodes();\n            for (int i = 0; i < rootChildren.getLength(); i++) {\n                if (rootChildren.item(i).getNodeName().equalsIgnoreCase(\"Lyrics\")) {\n                    NodeList verses = rootChildren.item(i).getChildNodes();\n                    for (int j = 0; j < verses.getLength(); j++) {\n                        String verseText = verses.item(j).getTextContent().trim();\n                        if (!verseText.isEmpty()) {\n                            String[] verseLines = verseText.split(\"\\n\");\n                            StringBuilder verseBuilder = new StringBuilder();\n                            for (String verseLine : verseLines) {\n                                verseLine = verseLine.trim();\n                                if (verseLine.isEmpty()) {\n                                    verseLine = \" \"; //Alt + 0160, non breaking space\n                                }\n                                verseBuilder.append(verseLine).append(\"\\n\");\n                            }\n                            lyrics.append(verseBuilder.toString().trim()).append(\"\\n\\n\");\n                        }\n                    }\n                }\n\n                if (rootChildren.item(i).getNodeName().equalsIgnoreCase(\"Title\")) {\n                    title = rootChildren.item(i).getTextContent();\n                }\n                if (rootChildren.item(i).getNodeName().equalsIgnoreCase(\"Author\")) {\n                    author = rootChildren.item(i).getTextContent();\n                }\n                if (rootChildren.item(i).getNodeName().equalsIgnoreCase(\"Capo\")) {\n                    capo = rootChildren.item(i).getTextContent();\n                }\n                if (rootChildren.item(i).getNodeName().equalsIgnoreCase(\"Tempo\")) {\n                    tempo = rootChildren.item(i).getTextContent();\n                }\n                if (rootChildren.item(i).getNodeName().equalsIgnoreCase(\"timesig\")) {\n                    timesig = rootChildren.item(i).getTextContent();\n                }\n                if (rootChildren.item(i).getNodeName().equalsIgnoreCase(\"ccli\")) {\n                    ccli = rootChildren.item(i).getTextContent();\n                }\n                if (rootChildren.item(i).getNodeName().equalsIgnoreCase(\"theme\")) {\n                    theme = rootChildren.item(i).getTextContent();\n                }\n                if (rootChildren.item(i).getNodeName().equalsIgnoreCase(\"comments\")) {\n                    comments = rootChildren.item(i).getTextContent();\n                }\n            }\n            SongDisplayable ret = new SongDisplayable(title, author);\n            ret.setLyrics(lyrics.toString());\n            ret.setCapo(capo);\n            ret.setCcli(ccli);\n            return ret;\n        } catch (ParserConfigurationException | SAXException | IOException | DOMException ex) {\n            return null;\n        }\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/SelectExportedSongsDialog.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport java.io.File;\nimport java.util.List;\nimport java.util.Map;\nimport javafx.application.Platform;\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport javafx.stage.FileChooser;\nimport org.javafx.dialog.Dialog;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.QueleaProperties;\n\n/**\n * A dialog used for selecting the songs to be put in the song pack after\n * export.\n * <p/>\n * @author Michael\n */\npublic class SelectExportedSongsDialog extends SelectSongsDialog {\n\n    /**\n     * Create a new exported songs dialog.\n     * @param songs the songs to display in this dialog.\n     * @param exporter the exporter to use.\n     */\n    public SelectExportedSongsDialog(List<SongDisplayable> songs, final Exporter exporter) {\n        super(new String[]{\n            LabelGrabber.INSTANCE.getLabel(\"select.export.songs.line1\"),\n            LabelGrabber.INSTANCE.getLabel(\"select.export.songs.line2\")\n        }, LabelGrabber.INSTANCE.getLabel(\"add.text\"), LabelGrabber.INSTANCE.getLabel(\"add.to.songpack.question\"));\n\n        setSongs(songs, (Map<SongDisplayable, Boolean>)null, false);\n\n        getAddButton().setOnAction(new EventHandler<javafx.event.ActionEvent>() {\n            @Override\n            public void handle(javafx.event.ActionEvent t) {\n                final String extension = exporter.getStrExtension();\n                FileChooser chooser = exporter.getChooser();\n                if (QueleaProperties.get().getLastDirectory() != null) {\n                    chooser.setInitialDirectory(QueleaProperties.get().getLastDirectory());\n                }\n                File file = chooser.showSaveDialog(SelectExportedSongsDialog.this);\n                if(file != null) {\n                    QueleaProperties.get().setLastDirectory(file.getParentFile());\n                    QueleaProperties.get().setLastDirectory(file.getParentFile());\n                    if(!file.getName().endsWith(\".\" + extension)) {\n                        file = new File(file.getAbsoluteFile() + \".\" + extension);\n                    }\n                    if(file.exists()) {\n                        final File theFile = file;\n                        Dialog.buildConfirmation(LabelGrabber.INSTANCE.getLabel(\"overwrite.text\"), file.getName() + \" \" + LabelGrabber.INSTANCE.getLabel(\"already.exists.overwrite.label\")).addYesButton(new EventHandler<ActionEvent>() {\n                            @Override\n                            public void handle(ActionEvent t) {\n                                getAddButton().setDisable(true);\n                                exporter.exportSongs(theFile, getSelectedSongs());\n                                Platform.runLater(new Runnable() {\n                                    @Override\n                                    public void run() {\n                                        hide();\n                                        getAddButton().setDisable(false);\n                                    }\n                                });\n                            }\n                        }).addNoButton(new EventHandler<ActionEvent>() {\n                            @Override\n                            public void handle(ActionEvent t) {\n                            }\n                        }).build().showAndWait();\n                    }\n                    else {\n                        getAddButton().setDisable(true);\n                        exporter.exportSongs(file, getSelectedSongs());\n                        Platform.runLater(new Runnable() {\n                            @Override\n                            public void run() {\n                                hide();\n                                getAddButton().setDisable(false);\n                            }\n                        });\n                    }\n                }\n            }\n        });\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/SelectImportedSongsDialog.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport java.util.ArrayList;\nimport java.util.List;\nimport javafx.application.Platform;\nimport javafx.event.EventHandler;\nimport org.quelea.data.db.SongManager;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.windows.main.StatusPanel;\n\n/**\n * A dialog used for selecting the songs to be entered into the database after\n * they've been imported.\n * <p/>\n * @author Michael\n */\npublic class SelectImportedSongsDialog extends SelectSongsDialog {\n\n    private StatusPanel statusPanel;\n\n    /**\n     * Create a new imported songs dialog.\n     */\n    public SelectImportedSongsDialog() {\n        super(new String[]{\n            LabelGrabber.INSTANCE.getLabel(\"select.imported.songs.line1\"),\n            LabelGrabber.INSTANCE.getLabel(\"select.imported.songs.line2\"),\n            LabelGrabber.INSTANCE.getLabel(\"select.imported.songs.line3\")\n        }, LabelGrabber.INSTANCE.getLabel(\"add.text\"), LabelGrabber.INSTANCE.getLabel(\"add.to.database.question\"));\n\n        getAddButton().setOnAction(new EventHandler<javafx.event.ActionEvent>() {\n            @Override\n            public void handle(javafx.event.ActionEvent t) {\n                getAddButton().setDisable(true);\n                new Thread() {\n                    @Override\n                    public void run() {\n                        Platform.runLater(new Runnable() {\n                            @Override\n                            public void run() {\n                                hide();\n                                getAddButton().setDisable(false);\n                                statusPanel = QueleaApp.get().getStatusGroup().addPanel(LabelGrabber.INSTANCE.getLabel(\"importing.status\"));\n                                statusPanel.removeCancelButton();\n                            }\n                        });\n                        List<SongDisplayable> songDisplayables = new ArrayList<>();\n                        songDisplayables.addAll(getSelectedSongs());\n                        SongManager.get().addSong(songDisplayables, false);\n                        SongManager.get().fireUpdate();\n                        if(statusPanel != null) {\n                            statusPanel.done();\n                        }\n                    }\n                }.start();\n            }\n        });\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/SelectSongsDialog.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport java.util.ArrayList;\nimport java.util.List;\nimport java.util.Map;\nimport javafx.beans.value.ChangeListener;\nimport javafx.beans.value.ObservableValue;\nimport javafx.geometry.Insets;\nimport javafx.geometry.Pos;\nimport javafx.scene.Node;\nimport javafx.scene.Scene;\nimport javafx.scene.control.Button;\nimport javafx.scene.control.CheckBox;\nimport javafx.scene.control.Control;\nimport javafx.scene.control.Label;\nimport javafx.scene.control.ScrollPane;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.layout.ColumnConstraints;\nimport javafx.scene.layout.GridPane;\nimport javafx.scene.layout.HBox;\nimport javafx.scene.layout.Pane;\nimport javafx.scene.layout.Priority;\nimport javafx.scene.layout.StackPane;\nimport javafx.scene.layout.VBox;\nimport javafx.stage.Modality;\nimport javafx.stage.Stage;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.QueleaProperties;\n\n/**\n * A dialog where given songs can be selected.\n * <p/>\n * @author Michael\n */\npublic class SelectSongsDialog extends Stage {\n\n    private final Button addButton;\n    private final CheckBox selectAllCheckBox;\n    private final GridPane gridPane;\n    private List<SongDisplayable> songs;\n    private final List<CheckBox> checkBoxes;\n    private final ScrollPane gridScroll;\n\n    /**\n     * Create a new imported songs dialog.\n     * <p/>\n     * @param text a list of lines to be shown in the dialog.\n     * @param acceptText text to place on the accpet button.\n     * @param checkboxText text to place in the column header for the\n     * checkboxes.\n     */\n    public SelectSongsDialog(String[] text, String acceptText, String checkboxText) {\n        initModality(Modality.APPLICATION_MODAL);\n        setTitle(LabelGrabber.INSTANCE.getLabel(\"select.songs.title\"));\n\n        checkBoxes = new ArrayList<>();\n        selectAllCheckBox = new CheckBox();\n        selectAllCheckBox.selectedProperty().addListener(new ChangeListener<Boolean>() {\n\n            @Override\n            public void changed(ObservableValue<? extends Boolean> ov, Boolean t, Boolean t1) {\n                for(CheckBox checkBox : checkBoxes) {\n                    checkBox.setSelected(t1);\n                }\n            }\n        });\n\n        VBox mainPanel = new VBox(5);\n        VBox textBox = new VBox();\n        for(String str : text) {\n            textBox.getChildren().add(new Label(str));\n        }\n        VBox.setMargin(textBox, new Insets(10));\n        mainPanel.getChildren().add(textBox);\n        gridPane = new GridPane();\n        gridPane.setHgap(5);\n        gridPane.setVgap(5);\n        gridScroll = new ScrollPane();\n        VBox.setVgrow(gridScroll, Priority.ALWAYS);\n        VBox scrollContent = new VBox(10);\n        HBox topBox = new HBox(5);\n        Label checkAllLabel = new Label(LabelGrabber.INSTANCE.getLabel(\"check.uncheck.all.text\"));\n        checkAllLabel.setStyle(\"-fx-font-weight: bold;\");\n        topBox.getChildren().add(selectAllCheckBox);\n        topBox.getChildren().add(checkAllLabel);\n        scrollContent.getChildren().add(topBox);\n        scrollContent.getChildren().add(gridPane);\n        StackPane intermediatePane = new StackPane();\n        StackPane.setMargin(scrollContent, new Insets(10));\n        intermediatePane.getChildren().add(scrollContent);\n        gridScroll.setContent(intermediatePane);\n        gridScroll.setFitToWidth(true);\n        gridScroll.setFitToHeight(true);\n        mainPanel.getChildren().add(gridScroll);\n        addButton = new Button(acceptText, new ImageView(new Image(\"file:icons/tick.png\")));\n        StackPane stackAdd = new StackPane();\n        stackAdd.getChildren().add(addButton);\n        VBox.setMargin(stackAdd, new Insets(10));\n        mainPanel.getChildren().add(stackAdd);\n\n        Scene scene = new Scene(mainPanel, 800, 600);\n        if (QueleaProperties.get().getUseDarkTheme()) {\n            scene.getStylesheets().add(\"org/modena_dark.css\");\n        }\n        setScene(scene);\n    }\n\n    /**\n     * Set the songs to be shown in the dialog.\n     * <p/>\n     * @param songs the list of songs to be shown.\n     * @param checkList a list corresponding to the song list - each position is\n     * true if the checkbox should be selected, false otherwise.\n     * @param defaultVal the default value to use for the checkbox if checkList\n     * is null or smaller than the songs list.\n     */\n    public void setSongs(final List<SongDisplayable> songs, final Map<SongDisplayable, Boolean> checkList, final boolean defaultVal) {\n        this.songs = songs;\n        gridPane.getChildren().clear();\n        checkBoxes.clear();\n        gridPane.getColumnConstraints().add(new ColumnConstraints(20));\n        ColumnConstraints titleConstraints = new ColumnConstraints();\n        titleConstraints.setHgrow(Priority.ALWAYS);\n        titleConstraints.setPercentWidth(50);\n        gridPane.getColumnConstraints().add(titleConstraints);\n        ColumnConstraints authorConstraints = new ColumnConstraints();\n        authorConstraints.setHgrow(Priority.ALWAYS);\n        authorConstraints.setPercentWidth(45);\n        gridPane.getColumnConstraints().add(authorConstraints);\n\n        Label titleHeader = new Label(LabelGrabber.INSTANCE.getLabel(\"title.label\"));\n        titleHeader.setAlignment(Pos.CENTER);\n        Label authorHeader = new Label(LabelGrabber.INSTANCE.getLabel(\"author.label\"));\n        authorHeader.setAlignment(Pos.CENTER);\n        gridPane.add(titleHeader, 1, 0);\n        gridPane.add(authorHeader, 2, 0);\n\n        for(int i = 0; i < songs.size(); i++) {\n            SongDisplayable song = songs.get(i);\n            CheckBox checkBox = new CheckBox();\n            checkBox.selectedProperty().addListener(new ChangeListener<Boolean>() {\n\n                @Override\n                public void changed(ObservableValue<? extends Boolean> ov, Boolean t, Boolean t1) {\n                    checkEnableButton();\n                }\n            });\n            if(checkList != null) {\n                final Boolean result = checkList.get(song);\n                if(result!=null) {\n                    checkBox.setSelected(!result);\n                }\n            }\n            checkBoxes.add(checkBox);\n            gridPane.add(checkBox, 0, i + 1);\n            gridPane.add(new Label(song.getTitle()), 1, i + 1);\n            gridPane.add(new Label(song.getAuthor()), 2, i + 1);\n        }\n\n        for(int i = 0; i < 2; i++) {\n            Node n = gridPane.getChildren().get(i);\n            if(n instanceof Control) {\n                Control control = (Control) n;\n                control.setMaxSize(Double.MAX_VALUE, Double.MAX_VALUE);\n                control.setStyle(\"-fx-alignment: center;-fx-font-weight: bold;\");\n            }\n            if(n instanceof Pane) {\n                Pane pane = (Pane) n;\n                pane.setMaxSize(Double.MAX_VALUE, Double.MAX_VALUE);\n                pane.setStyle(\"-fx-alignment: center;-fx-font-weight: bold;\");\n            }\n        }\n        gridScroll.setVvalue(0);\n        checkEnableButton();\n    }\n\n    /**\n     * Disable / enable the add button depending on if anything is selected.\n     */\n    private void checkEnableButton() {\n        for(CheckBox checkBox : checkBoxes) {\n            if(checkBox.isSelected()) {\n                addButton.setDisable(false);\n                return;\n            }\n        }\n        addButton.setDisable(true);\n    }\n\n    /**\n     * Get the list of selected songs.\n     * <p/>\n     * @return the list of selected songs.\n     */\n    public List<SongDisplayable> getSelectedSongs() {\n        List<SongDisplayable> ret = new ArrayList<>();\n        for(int i = 0; i < songs.size(); i++) {\n            if(checkBoxes.get(i).isSelected()) {\n                ret.add(songs.get(i));\n            }\n        }\n        return ret;\n    }\n\n    /**\n     * Get the add button.\n     * <p/>\n     * @return the add button.\n     */\n    public Button getAddButton() {\n        return addButton;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/SoFImportDialog.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.FileFilters;\n\n/**\n * The SoF import dialog, used for importing songs from SoF RTF documents.\n * @author Michael\n */\npublic class SoFImportDialog extends ImportDialog {\n    \n    public SoFImportDialog() {\n        super(new String[]{\n                    LabelGrabber.INSTANCE.getLabel(\"sof.import.line1\")\n                }, FileFilters.RTF, new SoFParser(), ImportDialogOptions.allowZip().andAllowMultiple());\n    }\n    \n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/SoFParser.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * Copyright (C) 2012 Michael Berry\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport java.io.ByteArrayInputStream;\nimport java.io.File;\nimport java.io.IOException;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\nimport java.util.ArrayList;\nimport java.util.Arrays;\nimport java.util.List;\nimport java.util.logging.Logger;\nimport java.util.regex.Matcher;\nimport java.util.regex.Pattern;\nimport java.util.stream.Collectors;\nimport javax.swing.text.BadLocationException;\nimport javax.swing.text.rtf.RTFEditorKit;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.windows.main.StatusPanel;\n\n/**\n * Parsers SoF RTF files.\n *\n * @author Michael\n */\npublic class SoFParser implements SongParser {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n\n    @Override\n    public List<SongDisplayable> getSongs(File file, StatusPanel statusPanel) throws IOException {\n        List<SongDisplayable> ret = new ArrayList<>();\n        if (file == null) {\n            return ret;\n        }\n\n        String fileText = new String(Files.readAllBytes(Paths.get(file.getAbsolutePath())))\n                .replace(\"\\\\page\", \"%PAGEMARKER%\")\n                .replaceAll(\"(\\\\\\\\par[\\\\s]*\\n){3,}\", \"%PAGEMARKER%\")\n                .replace(\"1691\", \"%PAGEMARKER%1691\")\n                .replace(\"\\\\line\", \"\\\\par\\n\");\n\n        RTFEditorKit rtfParser = new RTFEditorKit();\n        javax.swing.text.Document document = rtfParser.createDefaultDocument();\n        String rawText;\n        try {\n            rtfParser.read(new ByteArrayInputStream(fileText.getBytes()), document, 0);\n            rawText = document.getText(0, document.getLength());\n        } catch (BadLocationException ex) {\n            statusPanel.done();\n            throw new IOException(\"Error importing SOF\", ex);\n        }\n\n        String[] songs = rawText.split(\"%PAGEMARKER%\");\n\n        for (int i = 0; i < songs.length; i++) {\n            statusPanel.setProgress((double) i / songs.length);\n\n            String songText = songs[i];\n            if (songText.toLowerCase().contains(\"regrettably, permission has not been granted\")) {\n                continue;\n            }\n            songText = songText.replaceFirst(\"x?[0-9]+\", \"\");\n            int endIdx = songText.indexOf(\"A Songs of Fellowship Worship Resource\");\n            if (endIdx == -1) {\n                endIdx = songText.length();\n            }\n            songText = songText.substring(0, endIdx).trim();\n\n            Pattern p = Pattern.compile(\"\\n[\\\\s]*(([A-Z]+[^a-zA-Z\\\\.]+){2,})\");\n            Matcher m = p.matcher(songText);\n            if (m.find()) {\n                String title = m.group(1);\n                title = replaceLast(title, \"[^a-zA-z]+\", \"\");\n                if (title.length() > 2) {\n                    title = title.charAt(0) + title.substring(1).toLowerCase();\n                }\n                int position = m.start();\n                String header = songText.substring(0, position).trim();\n                String[] headerParts = header.split(\"\\n\");\n                String author = headerParts[0].trim();\n                author = replaceLast(author, \"[^a-zA-z]+\", \"\");\n                String copyright = null;\n                for (String headerPart : headerParts) {\n                    if (headerPart.toLowerCase().contains(\"copyright\")) {\n                        copyright = headerPart.trim();\n                        break;\n                    }\n                }\n\n                String lyrics = songText.substring(position).trim();\n\n                SongDisplayable song = new SongDisplayable(title, author);\n                song.setLyrics(lyrics);\n                song.setCopyright(copyright);\n                ret.add(song);\n            } else {\n                String lyrics = Arrays.stream(songText.split(\"\\n\\n\"))\n                        .filter(s -> !s.toLowerCase().contains(\"copyright\"))\n                        .filter(s -> !s.toLowerCase().contains(\"ccli number\"))\n                        .map(s -> s.trim())\n                        .collect(Collectors.joining(\"\\n\\n\")).trim();\n                if (lyrics.contains(\"\\n\")) {\n                    String title = lyrics.substring(0, lyrics.indexOf(\"\\n\")).trim();\n                    if(title.endsWith(\",\")) {\n                        title = title.substring(0, title.length()-1);\n                    }\n                    SongDisplayable song = new SongDisplayable(title, \"\");\n                    song.setLyrics(lyrics);\n                    ret.add(song);\n                }\n            }\n        }\n        statusPanel.done();\n        return ret;\n    }\n\n    private static String replaceLast(String text, String regex, String replacement) {\n        return text.replaceFirst(\"(?s)\" + regex + \"(?!.*?\" + regex + \")\", replacement);\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/SongBeamerImportDialog.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.FileFilters;\n\n/**\n * The SongBeamer import dialog, used for importing songs from SongBeamer.\n * @author Michael\n */\npublic class SongBeamerImportDialog extends ImportDialog {\n    \n    public SongBeamerImportDialog() {\n        super(new String[]{\n                    LabelGrabber.INSTANCE.getLabel(\"songbeamer.import.line1\")\n                }, FileFilters.SNG, new SongBeamerParser(), ImportDialogOptions.allowZip().andAllowMultiple());\n    }\n    \n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/SongBeamerParser.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * Copyright (C) 2012 Michael Berry\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport java.io.BufferedReader;\nimport java.io.File;\nimport java.io.FileInputStream;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\nimport java.nio.charset.Charset;\nimport java.util.ArrayList;\nimport java.util.HashMap;\nimport java.util.List;\nimport java.util.Map;\nimport java.util.logging.Logger;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.services.utils.LineTypeChecker;\nimport org.quelea.services.utils.LineTypeChecker.Type;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.windows.main.StatusPanel;\n\n/**\n * A parser for parsing SongBeamer songs.\n * <p>\n * @author Michael\n */\npublic class SongBeamerParser implements SongParser {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n\n    /**\n     * Parse the file to get the songs.\n     * <p>\n     * @param file the SNG file.\n     * @param statusPanel the status panel to update.\n     * @return a song from the SNG file\n     * @throws IOException if something went wrong with the import.\n     */\n    @Override\n    public List<SongDisplayable> getSongs(File file, StatusPanel statusPanel) throws IOException {\n        List<SongDisplayable> ret = new ArrayList<>();\n        String rawLines;\n        try(BufferedReader reader = new BufferedReader(new InputStreamReader(new FileInputStream(file), Charset.forName(\"Cp1250\")))){\n            String fileLine;\n            StringBuilder rawLinesBuilder = new StringBuilder();\n            while ((fileLine = reader.readLine()) != null) {\n                rawLinesBuilder.append(fileLine).append(\"\\n\");\n            }\n            rawLines = rawLinesBuilder.toString();\n        }\n\n        Map<String, String> songProps = new HashMap<>();\n        for (String line : rawLines.split(\"\\n\")) {\n            if (line.trim().startsWith(\"#\")) {\n                String propName = line.substring(1, line.indexOf(\"=\"));\n                String propValue = line.substring(line.indexOf(\"=\") + 1);\n                songProps.put(propName, propValue);\n            } else {\n                rawLines = rawLines.substring(rawLines.indexOf(line));\n                break;\n            }\n        }\n        int numTranslations = 1;\n        while (songProps.get(\"TitleLang\" + (numTranslations + 1)) != null) {\n            numTranslations++;\n        }\n\n        List<List<String>> translations = new ArrayList<>();\n        for (int i = 0; i < numTranslations; i++) {\n            translations.add(i, new ArrayList<>());\n        }\n\n        for (String section : rawLines.split(\"---\")) {\n            if (!section.isEmpty()) {\n                section = section.trim();\n                boolean title = new LineTypeChecker(section.split(\"\\n\")[0]).getLineType() == Type.TITLE;\n                int translationNum = 0;\n                for (String line : section.split(\"\\n\")) {\n                    if (line.trim().isEmpty()) {\n                        if (!title) {\n                            for (int i = 0; i < numTranslations; i++) {\n                                translations.get(i).add(\"<>\");\n                            }\n                        }\n                        continue;\n                    }\n                    if (title) {\n                        title = false;\n                        for (int i = 0; i < numTranslations; i++) {\n                            translations.get(i).add(line.trim());\n                        }\n                    } else {\n                        translations.get(translationNum).add(line.trim());\n                        translationNum = (translationNum + 1) % numTranslations;\n                    }\n                }\n                while (translationNum != 0) {\n                    translations.get(translationNum).add(\"\");\n                    translationNum = (translationNum + 1) % numTranslations;\n                }\n                for (int i = 0; i < numTranslations; i++) {\n                    translations.get(i).add(\"\");\n                }\n            }\n        }\n        String title = songProps.get(\"Title\");\n        if (title == null) {\n            title = \"Untitled\";\n        }\n        String author = songProps.get(\"Author\");\n        if (author == null) {\n            author = \"\";\n        }\n        SongDisplayable song = new SongDisplayable(title, author);\n        if (songProps.get(\"#(c)\") != null) {\n            song.setCopyright(songProps.get(\"#(c)\"));\n        }\n        if (songProps.get(\"key\") != null) {\n            song.setKey(songProps.get(\"key\"));\n        }\n        song.setLyrics(arrToString(translations.get(0)));\n        for (int i = 1; i < numTranslations; i++) {\n            song.getTranslations().put(songProps.get(\"TitleLang\" + (i + 1)), arrToString(translations.get(i)));\n        }\n        ret.add(song);\n        return ret;\n    }\n\n    private static String arrToString(List<String> list) {\n        StringBuilder ret = new StringBuilder();\n        for (String str : list) {\n            ret.append(str).append(\"\\n\");\n        }\n        return ret.toString();\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/SongListExporter.java",
    "content": "/*\n * To change this license header, choose License Headers in Project Properties.\n * To change this template file, choose Tools | Templates\n * and open the template in the editor.\n */\npackage org.quelea.services.importexport;\n\nimport org.quelea.data.db.SongManager;\nimport org.quelea.services.utils.LoggerUtils;\nimport java.io.File;\nimport java.io.IOException;\nimport java.nio.charset.StandardCharsets;\nimport java.nio.file.Files;\nimport java.nio.file.StandardOpenOption;\nimport java.util.Arrays;\nimport java.util.List;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport java.util.stream.Collectors;\n\n/**\n * Export a list of song titles and authors to a particular file.\n *\n * @author Michael\n */\npublic class SongListExporter {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n\n    public void exportToFile(File file) {\n        final List<String> songNames = Arrays.stream(SongManager.get().getSongs())\n                .map(s -> {\n                    String out = escape(s.getTitle()) + \",\" + escape(s.getAuthor());\n                    if (s.getCcli() != null && !s.getCcli().isEmpty()) {\n                        out += \",\" + s.getCcli();\n                    }\n                    return out;\n                })\n                .collect(Collectors.toList());\n\n        try {\n            Files.write(file.toPath(), String.join(\"\\n\", songNames).getBytes(StandardCharsets.UTF_8), StandardOpenOption.CREATE);\n        } catch (IOException ex) {\n            LOGGER.log(Level.INFO, \"Exception exporting song list\", ex);\n        }\n    }\n\n    private String escape(String csvEle) {\n        return \"\\\"\" + csvEle.replace(\"\\\"\", \"\\\\\\\"\") + \"\\\"\";\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/SongParser.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport java.io.File;\nimport java.io.IOException;\nimport java.util.List;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.windows.main.StatusPanel;\n\n/**\n * The interface for all the different song parsers that parse songs from \n * various sources.\n * @author Michael\n */\npublic interface SongParser {\n\n    /**\n     * Get all the songs from a particular location.\n     * @param location the location to search for the songs.\n     * @param statusPanel the status panel used when parsing this song. It can\n     * be updated or ignored.\n     * @return a list of all the songs found in the given location that have \n     * been parsed.\n     * @throws IOException if something goes wrong accessing the given location.\n     */\n    List<SongDisplayable> getSongs(File location, StatusPanel statusPanel) throws IOException;\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/SongProImportDialog.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.FileFilters;\n\n/**\n * The SongPro import dialog, used for importing songs from the SongPro\n * library.\n * @author Michael\n */\npublic class SongProImportDialog extends ImportDialog {\n    \n    /**\n     * Create a new SongPro import dialog.\n     */\n    public SongProImportDialog() {\n        super(new String[]{\n            LabelGrabber.INSTANCE.getLabel(\"songpro.import.line1\")\n        }, FileFilters.SDB, new SongProParser(), ImportDialogOptions.disallow());\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/SongProParser.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * Copyright (C) 2012 Michael Berry\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport com.healthmarketscience.jackcess.Database;\nimport com.healthmarketscience.jackcess.DatabaseBuilder;\nimport com.healthmarketscience.jackcess.Row;\nimport com.healthmarketscience.jackcess.Table;\nimport java.io.File;\nimport java.io.IOException;\nimport java.nio.charset.Charset;\nimport java.util.ArrayList;\nimport java.util.List;\nimport java.util.logging.Logger;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.windows.main.StatusPanel;\n\n/**\n * A parser for parsing the SongParser Songs.MB database. This is in the access\n * DB (Jet engine) format.\n * <p>\n * @author Michael\n */\npublic class SongProParser implements SongParser {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n\n    /**\n     * Parse the file to get the songs.\n     * <p>\n     * @param file the Songs.SDB file.\n     * @param statusPanel the status panel to update.\n     * @return a list of the songs found in the Songs.SDB file.\n     * @throws IOException if something went wrong with the import.\n     */\n    @Override\n    public List<SongDisplayable> getSongs(File file, StatusPanel statusPanel) throws IOException {\n        List<SongDisplayable> ret = new ArrayList<>();\n        Database db = new DatabaseBuilder(file).setCharset(Charset.forName(\"ISO-8859-1\")).setReadOnly(true).open();\n        Table table = db.getTable(\"Chorus\");\n        int total = table.getRowCount();\n        int iter = 0;\n        for (Row r1 : table) {\n            statusPanel.setProgress((double) iter / total);\n            String title = r1.getString(\"Title\");\n            String author = r1.getString(\"Author\");\n            String copyright = r1.getString(\"Copyright\");\n            String key = r1.getString(\"Key\");\n            String comments = r1.getString(\"Comments\");\n//                String sequence = r1.getString(\"Sequence\"); //TODO: For future use when we implement song sequences?\n\n            StringBuilder lyrics = new StringBuilder();\n            for (int i = 1; i <= 8; i++) {\n                String versesec = getSection(\"Verse \" + i, r1.getString(\"Verse\" + i));\n                if (versesec != null && !versesec.trim().isEmpty()) {\n                    lyrics.append(versesec);\n                }\n            }\n            String chorussec = getSection(\"Chorus\", r1.getString(\"Chorus\"));\n            if (chorussec != null && !chorussec.trim().isEmpty()) {\n                lyrics.append(chorussec);\n            }\n            String bridgesec = getSection(\"Bridge\", r1.getString(\"Bridge\"));\n            if (bridgesec != null && !bridgesec.trim().isEmpty()) {\n                lyrics.append(bridgesec);\n            }\n\n            SongDisplayable song = new SongDisplayable(title, author);\n            song.setLyrics(lyrics.toString().trim());\n            song.setKey(key);\n            song.setInfo(comments);\n            song.setCopyright(copyright);\n            ret.add(song);\n            iter++;\n        }\n        statusPanel.done();\n        return ret;\n    }\n\n    private String getSection(String secName, String sec) {\n        if (sec == null || sec.trim().isEmpty()) {\n            return null;\n        }\n        if (sec.contains(\"\\\\rtf1\")) {\n            sec = sec.replaceAll(\"\\\\\\\\\\\\w+|\\\\{.*?\\\\}|}\", \"\").trim();\n        }\n        StringBuilder ret = new StringBuilder();\n        sec = sec.replace(\"\\n\\n\", \"\\n<>\\n\");\n        sec = sec.replace(\"\\r\\n\\r\\n\", \"\\r\\n<>\\r\\n\");\n        ret.append(secName).append(\"\\n\");\n        ret.append(sec);\n        ret.append(\"\\n\\n\");\n        return ret.toString();\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/SourceImportDialog.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport org.quelea.services.languages.LabelGrabber;\n\n/**\n * An import dialog for the source song books.\n * @author Michael\n */\npublic class SourceImportDialog extends ImportDialog {\n\n    /**\n     * Create a new source import dialog.\n     */\n    public SourceImportDialog() {\n        super(new String[]{\n                LabelGrabber.INSTANCE.getLabel(\"source.import.line1\")\n        }, null, new SourceParser(), ImportDialogOptions.allowMultiple().andAllowZip());\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/SourceParser.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport java.io.File;\nimport java.io.IOException;\nimport java.util.ArrayList;\nimport java.util.List;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport java.util.regex.Matcher;\nimport java.util.regex.Pattern;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.StatusPanel;\n\n/**\n * A parser for songs in the source songbook in HTML format.\n * @author Michael\n */\npublic class SourceParser implements SongParser {\n\n    private static final String START_PARSE_LYRICS = \"<!-- InstanceBeginEditable name=\\\"content\\\" -->\";\n    private static final String START_PARSE_AUTHOR = \"<!-- InstanceBeginEditable name=\\\"Author\\\" -->\";\n    private static final String END_PARSE = \"<!-- InstanceEndEditable -->\";\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n\n    /**\n     * Get all the songs from the given location.\n     * @param location the directory containing all the HTML files containing\n     * the songs.\n     * @return a list of parsed songs.\n     * @throws IOException if something went wrong.\n     */\n    @Override\n    public List<SongDisplayable> getSongs(File location, StatusPanel statusPanel) throws IOException {\n        if (!location.isDirectory()) {\n            throw new RuntimeException(\"Must be a directory.\");\n        }\n        File[] files = location.listFiles();\n        List<SongDisplayable> ret = new ArrayList<>();\n        for (File file : files) {\n            if (file.getName().endsWith(\"htm\") || file.getName().endsWith(\"html\")) {\n                String contents = Utils.getTextFromFile(file.getAbsolutePath(), null);\n                contents = contents.replaceAll(\"(&nbsp;)+\", \" \");\n                contents = contents.replaceAll(\" +\", \" \");\n                contents = contents.replace(\"&amp;\", \"&\");\n                contents = contents.replace(\"&quot;\", \"'\");\n                contents = contents.replace(\"&lsquo;\", \"\\\"\");\n                contents = contents.replace(\"&rsquo;\", \"\\\"\");\n                contents = contents.replace(\"&lt;\", \"<\");\n                contents = contents.replace(\"&gt;\", \">\");\n                String lyrics = getLyrics(contents);\n                if (lyrics == null) {\n                    continue;\n                }\n                String title = getTitle(lyrics, 0);\n                SongDisplayable newSong = new SongDisplayable(title, getAuthor(contents));\n                newSong.setLyrics(lyrics);\n                ret.add(newSong);\n            }\n            else {\n                LOGGER.log(Level.WARNING, \"Invalid file {0}\", file.getName());\n            }\n        }\n        return ret;\n    }\n\n    /**\n     * Get the title given the lyrics at the given line\n     * @param lyrics the lyrics to use to search for the title.\n     * @param line the line number to use for the title.\n     * @return a non-blank title.\n     */\n    private String getTitle(String lyrics, int line) {\n        String splitStr = lyrics.split(\"\\n\")[line];\n        if(splitStr==null) {\n            return \"\";\n        }\n        String title = splitStr.trim();\n        if (title.endsWith(\",\")) {\n            title = title.substring(0, title.length() - 1);\n        }\n        if (title.endsWith(\";\")) {\n            title = title.substring(0, title.length() - 1);\n        }\n        if (title.startsWith(\"'\")) {\n            title = title.substring(1);\n        }\n        if (title.startsWith(\".\")) {\n            title = title.substring(1);\n        }\n        title = title.replaceAll(\"\\\\(.+?\\\\)\", \"\");\n        title = title.trim();\n        if (title.isEmpty()) {\n            return getTitle(lyrics, line + 1);\n        }\n        return title;\n    }\n\n    /**\n     * Get the author of the song from the raw HTML.\n     * @param contents raw HTML.\n     * @return the author.\n     */\n    private String getAuthor(String contents) {\n        int beginIndex = contents.indexOf(START_PARSE_AUTHOR) + START_PARSE_AUTHOR.length();\n        if (beginIndex == -1) {\n            return \"\";\n        }\n        contents = contents.substring(beginIndex);\n        contents = contents.substring(0, contents.indexOf(END_PARSE));\n        return contents.trim();\n    }\n    \n    /**\n     * Get the lyrics of the song from the raw HTML.\n     * @param contents raw HTML.\n     * @return the lyrics.\n     */\n    private String getLyrics(String contents) {\n        int beginIndex = contents.indexOf(START_PARSE_LYRICS) + START_PARSE_LYRICS.length();\n        if (beginIndex == -1) {\n            return null;\n        }\n        contents = contents.substring(beginIndex);\n        contents = contents.substring(0, contents.indexOf(END_PARSE));\n        contents = contents.replace(\"\\n\", \"\");\n        StringBuilder lyrics = new StringBuilder();\n        Pattern pattern = Pattern.compile(\"\\\\<p\\\\>(.+?)\\\\</p\\\\>\", Pattern.DOTALL);\n        Matcher matcher = pattern.matcher(contents);\n        while (matcher.find()) {\n            String section = matcher.group(0);\n            section = section.replace(\"<br>\", \"\\n\");\n            section = section.replace(\"<br/>\", \"\\n\");\n            section = Utils.removeTags(section);\n            String[] lines = section.split(\"\\n\");\n            for (int i = 0; i < lines.length; i++) {\n                lines[i] = lines[i].trim();\n            }\n            StringBuilder verseBuilder = new StringBuilder();\n            for (String line : lines) {\n                verseBuilder.append(line).append(\"\\n\");\n            }\n            lyrics.append(verseBuilder.toString()).append(\"\\n\");\n        }\n        String ret = lyrics.toString().trim();\n        if (ret.isEmpty()) {\n            return null;\n        }\n        return ret;\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/SundayPlusImportDialog.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.FileFilters;\n\n/**\n * The Sunday Plus import dialog, used for importing songs from Sunday Plus.\n * @author Michael\n */\npublic class SundayPlusImportDialog extends ImportDialog {\n    \n    public SundayPlusImportDialog() {\n        super(new String[]{\n                    LabelGrabber.INSTANCE.getLabel(\"sundayplus.import.line1\"),\n                }, FileFilters.SUNDAY_PLUS, new SundayPlusParser(), ImportDialogOptions.allowZip().andAllowMultiple());\n    }\n    \n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/SundayPlusParser.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * Copyright (C) 2012 Michael Berry\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport java.io.ByteArrayInputStream;\nimport java.io.File;\nimport java.io.FileInputStream;\nimport java.io.IOException;\nimport java.util.ArrayList;\nimport java.util.List;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport java.util.regex.Matcher;\nimport java.util.regex.Pattern;\nimport javax.swing.text.Document;\nimport javax.swing.text.rtf.RTFEditorKit;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.windows.main.StatusPanel;\n\n/**\n * A parser for sunday plus files.\n *\n * @author Michael\n */\npublic class SundayPlusParser implements SongParser {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n\n    @Override\n    public List<SongDisplayable> getSongs(File file, StatusPanel statusPanel) throws IOException {\n        List<SongDisplayable> ret = new ArrayList<>();\n                String title = file.getName();\n                LOGGER.log(Level.INFO, \"Found {0}\", title);\n                if (title.contains(\".\")) {\n                    String[] parts = title.split(\"\\\\.\");\n                    StringBuilder titleBuilder = new StringBuilder();\n                    for (int i = 0; i < parts.length - 1; i++) {\n                        titleBuilder.append(parts[i]);\n                        if (i < parts.length - 2) {\n                            titleBuilder.append(\".\");\n                        }\n                    }\n                    title = titleBuilder.toString().replace(\"_\", \" \");\n                    if (title.endsWith(\"[1]\")) {\n                        title = title.substring(0, title.length() - 3);\n                    }\n                }\n\n                try (java.util.Scanner s = new java.util.Scanner(new FileInputStream(file))) {\n                    //This gets the string from the inputstream without messing up line endings...\n                    String fileContents = s.useDelimiter(\"\\\\A\").hasNext() ? s.next() : \"\";\n                    //And this replaces all \"pard\" RTF control words with \"par\" control words, so Swing's RTF parser can understand it and extract the plain text.\n                    fileContents = fileContents.replaceAll(\"\\\\\\\\pard\", \"\\\\\\\\par\");\n                    String lyrics = getLyrics(fileContents);\n                    if (!lyrics.isEmpty()) {\n                        LOGGER.log(Level.INFO, \"Adding song\");\n                        SongDisplayable displayable = new SongDisplayable(title, \"\");\n                        displayable.setLyrics(lyrics);\n                        ret.add(displayable);\n                    }\n                }\n        return ret;\n    }\n\n    private String getLyrics(String raw) {\n        try {\n            RTFEditorKit rtfParser = new RTFEditorKit();\n            Document document = rtfParser.createDefaultDocument();\n            rtfParser.read(new ByteArrayInputStream(raw.getBytes()), document, 0);\n            String text = document.getText(0, document.getLength());\n            StringBuilder textBuilder = new StringBuilder();\n            for (String line : text.split(\"\\n\")) {\n                textBuilder.append(line.trim()).append(\"\\n\");\n            }\n            return textBuilder.toString().replaceAll(\"[\\n]{2,}\", \"\\n\\n\").replace(\"^\", \"'\").trim();\n        } catch (Exception ex) {\n            LOGGER.log(Level.WARNING, \"Invalid RTF string, trying old method\");\n            return getLyricsOld(raw);\n        }\n    }\n\n    private String getLyricsOld(String raw) {\n        Pattern p = Pattern.compile(\"\\\\{\\\\\\\\pard.+?\\\\}\", Pattern.DOTALL | Pattern.CASE_INSENSITIVE);\n        Matcher m = p.matcher(raw);\n        StringBuilder sections = new StringBuilder();\n        while (m.find()) {\n            String verse = m.group();\n            if (verse.contains(\"\\\\qc\")) {\n                verse = verse.substring(verse.indexOf(\"\\\\qc\") + \"\\\\qc\".length(), verse.length() - 1);\n            }\n            verse = verse.replace(\"\\\\par\", \"\\n\");\n            verse = verse.replace(\"^\", \"'\");\n            verse = verse.trim();\n            if (!verse.isEmpty()) {\n                sections.append(verse).append(\"\\n\\n\");\n            }\n        }\n        return sections.toString().trim();\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/SurvivorImportDialog.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.FileFilters;\n\n/**\n * An import dialog for the survivor song books in PDF format.\n * @author Michael\n */\npublic class SurvivorImportDialog extends ImportDialog {\n\n    /**\n     * Create a new survivor import dialog.\n     */\n    public SurvivorImportDialog() {\n        super(new String[]{\n                LabelGrabber.INSTANCE.getLabel(\"survivor.import.line1\"),\n                LabelGrabber.INSTANCE.getLabel(\"survivor.import.line2\")\n        }, FileFilters.SURVIVOR_SONGBOOK, new SurvivorSongbookParser(), ImportDialogOptions.allowZip().andAllowMultiple());\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/SurvivorSongbookParser.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport java.io.File;\nimport java.io.IOException;\nimport java.io.StringWriter;\nimport java.util.ArrayList;\nimport java.util.List;\nimport org.apache.pdfbox.pdmodel.PDDocument;\nimport org.apache.pdfbox.text.PDFTextStripper;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.windows.main.StatusPanel;\nimport java.util.Objects;\n\n/**\n * Parses a PDF from the survivor songbook, this must be the acetates PDF containing only the lyrics (not the guitar\n * chords or sheet music!)\n * @author Michael\n */\npublic class SurvivorSongbookParser implements SongParser {\n\n    /**\n     * Get all the songs in the PDF document.\n     * @return a list of all the songs.\n     * @throws IOException if something went wrong.\n     */\n    @Override\n    public List<SongDisplayable> getSongs(File location, StatusPanel statusPanel) throws IOException {\n        PDDocument document = PDDocument.load(location);\n        List<SongDisplayable> pdfSongs = new ArrayList<>();\n        PDFTextStripper stripper = new PDFTextStripper();\n        List<String> songParts = new ArrayList<>();\n        for (int i = 0; i < document.getNumberOfPages(); i++) {\n            String pageText = getPageText(document, stripper, i);\n            if (pageText.trim().isEmpty()) {\n                continue;\n            }\n            songParts.add(pageText);\n            boolean twoPart = pageText.contains(\"(1 of\");\n            if (i < document.getNumberOfPages() - 1) { //This section in case the original (1 of x) is missed out\n                String nextPageText = getPageText(document, stripper, i + 1);\n                if (nextPageText.contains(\"(2 of\")) {\n                    twoPart = true;\n                }\n            }\n            if (!twoPart) {\n                SongDisplayable song = processSong(songParts.toArray(new String[songParts.size()]));\n                if (song != null) {\n                    pdfSongs.add(song);\n                }\n                songParts.clear();\n            }\n        }\n        document.close();\n        return Objects.requireNonNullElseGet(pdfSongs, () -> new ArrayList<>());\n    }\n\n    /**\n     * Get the text on a page in the PDF document.\n     * @param document the document.\n     * @param stripper the PDF stripper used to get the text.\n     * @param page     the page number.\n     * @return the text on the given page.\n     * @throws IOException if something went wrong.\n     */\n    private String getPageText(PDDocument document, PDFTextStripper stripper, int page) throws IOException {\n        stripper.setStartPage(page);\n        stripper.setEndPage(page);\n        StringWriter textWriter = new StringWriter();\n        stripper.writeText(document, textWriter);\n        return textWriter.toString().replace(\"’\", \"'\").replace(\"`\", \"'\");\n    }\n\n    /**\n     * Given a number of parts, get a song.\n     * @param parts the parts (one part per page in the PDF) of the song.\n     * @return the song object from these parts.\n     */\n    private SongDisplayable processSong(String[] parts) {\n        //May look like I'm checking the same thing twice, but I'm not I promise!!!\n        if (parts[0].contains(\"first line\")\n                || parts[0].contains(\"first line\")\n                || parts[0].contains(\"Thank you for your support!\")\n                || parts[0].contains(\"Thank you for your support!\")) {\n            return null;\n        }\n        String author = \"\";\n        for (int i = 0; author.isEmpty() && i < parts.length; i++) {\n            author = getAuthor(parts[i]);\n        }\n        for (int i = 0; i < parts.length; i++) {\n            parts[i] = parts[i].replaceAll(\"\\\\([0-9] of [0-9]\\\\)\", \"\\n\"); //Remove (x of x) text\n            parts[i] = removeFooter(parts[i]);\n        }\n        StringBuilder songLyrics = new StringBuilder();\n        for (String part : parts) {\n            for (String line : part.split(\"\\n\")) {\n                String trimLine = line.trim();\n                if (!trimLine.isEmpty() && trimLine.charAt(0) == '(') { //Remove brackets from first words\n                    trimLine = trimLine.replace(\"(\", \"\");\n                    trimLine = trimLine.replace(\")\", \"\");\n                }\n                if (!trimLine.isEmpty() && trimLine.charAt(0) == '_') { //Remove starting underscores\n                    trimLine = trimLine.substring(1);\n                }\n                if (!trimLine.toLowerCase().contains(\"(chorus)\")) { //Remove starting chorus markers\n                    songLyrics.append(trimLine).append(\"\\n\");\n                }\n            }\n            songLyrics.append(\"\\n\");\n        }\n        String songLyricsStr = songLyrics.toString().trim();\n        String title = songLyricsStr.split(\"\\n\")[0];\n        if (!title.isEmpty() && !Character.isLetterOrDigit(title.charAt(title.length() - 1))) { //Remove ending punctuation from titles\n            title = title.substring(0, title.length() - 1);\n        }\n        SongDisplayable song = new SongDisplayable(title, author);\n        song.setLyrics(songLyricsStr);\n        song.removeDuplicateSections();\n        return song;\n    }\n\n    /**\n     * Remove the footer (copyright information, ccli number, all that jazz.)\n     * @param text the page.\n     * @return the text with the footer removed.\n     */\n    private String removeFooter(String text) {\n        String[] parts = text.split(\"\\n\");\n        int endIndex = -1;\n        for (int i = parts.length - 1; i >= 0; i--) {\n            if (parts[i].toLowerCase().contains(\"ccl licence no.\")\n                    || parts[i].contains(\"©\")\n                    || parts[i].toLowerCase().contains(\"copyright\")\n                    || parts[i].toLowerCase().contains(\"(c)\")\n                    || parts[i].toLowerCase().contains(\"kingswaysongs\")) {\n                endIndex = i;\n                break;\n            }\n        }\n        if (endIndex == -1) {\n            return text;\n        }\n        int startIndex = endIndex - 1;\n        while (parts[startIndex].trim().isEmpty()) {\n            startIndex--;\n        }\n        while (!parts[startIndex].trim().isEmpty()) {\n            startIndex--;\n        }\n        while (parts[startIndex].trim().isEmpty()) {\n            startIndex--;\n        }\n        StringBuilder ret = new StringBuilder();\n        for (int i = 0; i <= startIndex; i++) {\n            ret.append(parts[i]).append(\"\\n\");\n        }\n        return ret.toString();\n    }\n\n    /**\n     * Get the author from the text. Footer must be on when this method is called!\n     * @param text the page text.\n     * @return the author.\n     */\n    private String getAuthor(String text) {\n        String[] parts = text.split(\"\\n\");\n        int index = -1;\n        for (int i = parts.length - 1; i >= 0; i--) {\n            if (parts[i].toLowerCase().contains(\"copyright\")\n                    || parts[i].contains(\"©\")) {\n                index = i - 1;\n                break;\n            }\n        }\n        if (index > -1) {\n            return parts[index].trim();\n        }\n        else {\n            int i = parts.length - 5;\n            if (i < 0) {\n                i = 0;\n            }\n            for (; i < parts.length; i++) {\n                if (parts[i].trim().equalsIgnoreCase(\"Traditional\")) {\n                    return parts[i];\n                }\n            }\n            return \"\";\n        }\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/VideoPsalmImportDialog.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.FileFilters;\n\n/**\n * The VideoPsalm import dialog, used for importing songs from the VideoPsalm\n * library.\n * @author Michael\n */\npublic class VideoPsalmImportDialog extends ImportDialog {\n    \n    /**\n     * Create a new VideoPsalm import dialog.\n     */\n    public VideoPsalmImportDialog() {\n        super(new String[]{\n            LabelGrabber.INSTANCE.getLabel(\"videopsalm.import.line1\")\n        }, FileFilters.VS_DB, new VideoPsalmParser(), ImportDialogOptions.allowZip().andAllowMultiple());\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/VideoPsalmParser.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport com.google.gson.JsonArray;\nimport com.google.gson.JsonElement;\nimport com.google.gson.JsonParser;\nimport java.io.File;\nimport java.util.ArrayList;\nimport java.util.List;\nimport java.util.logging.Logger;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.StatusPanel;\n\n/**\n * A parser for parsing VideoPsalm databases, exported to json format.\n *\n * @author Michael\n */\npublic class VideoPsalmParser implements SongParser {\n\n\tprivate static final Logger LOGGER = LoggerUtils.getLogger();\n\tprivate static final String UTF8_BOM = \"\\uFEFF\";\n\n\t/**\n\t * Get a list of the songs contained in the given pack.\n\t *\n\t * @param location the location of the json or vpc file.\n\t * @return a list of the songs found.\n\t */\n\t@Override\n\tpublic List<SongDisplayable> getSongs(File location, StatusPanel statusPanel) {\n\t\tList<SongDisplayable> resultSongs = new ArrayList<>();\n\n\t\tString contents = Utils.getTextFromFile(location.getAbsolutePath(), null, Utils.getEncoding(location));\n\t\tif (contents == null) {\n\t\t\treturn resultSongs;\n\t\t}\n\t\tif (contents.startsWith(UTF8_BOM)) {\n\t\t\tcontents = contents.substring(1);\n\t\t}\n\t\tJsonElement jElement = JsonParser.parseString(contents);\n\n\t\tif (jElement == null) {\n\t\t\treturn resultSongs;\n\t\t}\n\n\t\tJsonArray jArray = jElement.getAsJsonObject().get(\"Songs\").getAsJsonArray();\n\n\t\tfor (JsonElement element : jArray) {\n\t\t\tString title = \"Unknown title\";\n\t\t\tif (element.getAsJsonObject().has(\"Text\")) {\n\t\t\t\ttitle = element.getAsJsonObject().get(\"Text\").getAsString();\n\t\t\t}\n\t\t\tString author = \"\";\n\t\t\tif (element.getAsJsonObject().has(\"Author\")) {\n\t\t\t\tauthor = element.getAsJsonObject().get(\"Author\").getAsString();\n\t\t\t}\n\t\t\tSongDisplayable song = new SongDisplayable(title, author);\n\t\t\tStringBuilder lyrics = new StringBuilder();\n\t\t\tfor (JsonElement verseObj : element.getAsJsonObject().getAsJsonArray(\"Verses\")) {\n\t\t\t\tif (verseObj.getAsJsonObject().has(\"Text\")) {\n\t\t\t\t\tlyrics.append(verseObj.getAsJsonObject().get(\"Text\").getAsString().replaceAll(\"<[^>]+>\", \"\"));\n\t\t\t\t\tlyrics.append(\"\\n\\n\");\n\t\t\t\t}\n\t\t\t}\n\t\t\tsong.setLyrics(lyrics.toString().trim());\n\t\t\tresultSongs.add(song);\n\t\t}\n\t\treturn resultSongs;\n\t}\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/WorshipHimImportDialog.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.FileFilters;\n\n/**\n * The WorshipHymn import dialog, used for importing songs from the WorshipHymn\n * library.\n * @author Michael\n */\npublic class WorshipHimImportDialog extends ImportDialog {\n    \n    /**\n     * Create a new MediaShout import dialog.\n     */\n    public WorshipHimImportDialog() {\n        super(new String[]{\n            LabelGrabber.INSTANCE.getLabel(\"worshiphim.import.line1\")\n        }, FileFilters.WORSHIP_HYMN_MDB, new WorshipHimParser(), ImportDialogOptions.disallow());\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/WorshipHimParser.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport com.healthmarketscience.jackcess.Database;\nimport com.healthmarketscience.jackcess.DatabaseBuilder;\nimport com.healthmarketscience.jackcess.Row;\nimport com.healthmarketscience.jackcess.Table;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.windows.main.StatusPanel;\nimport java.io.File;\nimport java.io.IOException;\nimport java.util.ArrayList;\nimport java.util.List;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\n\n/**\n * A parser for parsing MediaShout databases, exported to txt format.\n *\n * @author Michael\n */\npublic class WorshipHimParser implements SongParser {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n\n    /**\n     * Get a list of the songs contained in the given pack.\n     *\n     * @param location the location of the txt file.\n     * @return a list of the songs found.\n     */\n    @Override\n    public List<SongDisplayable> getSongs(File location, StatusPanel statusPanel) {\n        List<SongDisplayable> ret = new ArrayList<>();\n        try {\n            Database d = new DatabaseBuilder()\n                    .setReadOnly(true)\n                    .setFile(location)\n                    .open();\n\n            Table table = d.getTable(\"Songs\");\n            for (Row row : table) {\n                String title = row.get(\"Title\").toString();\n                if (title.trim().isEmpty()) continue; //Ignore empty titled songs\n                String author = row.get(\"Author\").toString();\n                String lyrics = row.get(\"Lyrics\").toString()\n                        .replace(\"\\u0001\", \"\\n\")\n                        .replaceAll(\"\\n\\n+\", \"\\n\\n\")\n                        .trim();\n\n                SongDisplayable song = new SongDisplayable(title, author);\n                song.setLyrics(lyrics);\n                ret.add(song);\n            }\n        } catch (IOException ex) {\n            LOGGER.log(Level.WARNING, \"Error importing worship hymn library\", ex);\n        }\n        return ret;\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/ZWCsvConverter.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * Copyright (C) 2012 Michael Berry\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport java.io.File;\nimport java.io.IOException;\nimport org.quelea.services.utils.QueleaProperties;\n\n/**\n * Responsible for converting the MainTable.dat ZionWorx database into a CSV\n * file.\n * <p>\n * @author Michael\n */\npublic class ZWCsvConverter {\n\n    private File tdbExe;\n    private File mainTable;\n\n    /**\n     * Create a new ZionWorx CSV converter for a particular table.\n     * @param mainTable the file pointing to \"MainTable.dat\"\n     */\n    public ZWCsvConverter(File mainTable) {\n        this.mainTable = mainTable;\n        tdbExe = QueleaProperties.get().getTurboDBExe();\n    }\n\n    /**\n     * Get the CSV file converted using TurboDB.\n     * @return the CSV file from the ZionWorx database.\n     * @throws IOException if something went wrong.\n     */\n    public File getCSV() throws IOException {\n        File csvTemp = File.createTempFile(\"queleazionworximport\", \".csv\");\n        csvTemp.deleteOnExit();\n        Process process = new ProcessBuilder(tdbExe.getAbsolutePath(), mainTable.getAbsolutePath(), csvTemp.getAbsolutePath(), \"-fsdf\", \"-s,\", \"-q\\\\\").start();\n        try {\n            process.waitFor();\n        }\n        catch(InterruptedException ex) {\n            ex.printStackTrace();\n        }\n        return csvTemp;\n    }\n\n}"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/ZWTurboDBChecker.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport org.javafx.dialog.Dialog;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.windows.main.QueleaApp;\n\n/**\n * Check if the TurboDB data exchange program is in place.\n * <p>\n * @author Michael\n */\npublic class ZWTurboDBChecker {\n\n    private Dialog warningDialog;\n\n    /**\n     * Determine if the turbo db data exchange exe is present. If not, show a\n     * message about what to do.\n     * <p>\n     * @return true if the exe is present and ok, false otherwise.\n     */\n    public boolean runChecks() {\n        if(QueleaProperties.get().getTurboDBExe().exists()) {\n            return true;\n        }\n        else {\n            warningDialog = new Dialog.Builder().create()\n                    .setWarningIcon()\n                    .setMessage(LabelGrabber.INSTANCE.getLabel(\"no.tdb.message\").replace(\"$1\", \"\\\"\"+QueleaProperties.get().getQueleaUserHome().getAbsolutePath()+\"\\\"\"))\n                    .setTitle(LabelGrabber.INSTANCE.getLabel(\"no.tdb.heading\"))\n                    .addLabelledButton(LabelGrabber.INSTANCE.getLabel(\"ok.button\"), t -> warningDialog.hide())\n                    .setOwner(QueleaApp.get().getMainWindow())\n                    .build();\n            warningDialog.centerOnScreen();\n            warningDialog.showAndWait();\n            return false;\n        }\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/ZionWorxImportDialog.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * Copyright (C) 2012 Michael Berry\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.FileFilters;\n\n/**\n * An import dialog for ZionWorx databases.\n * <p>\n * @author Michael\n */\npublic class ZionWorxImportDialog extends ImportDialog {\n\n    /**\n     * Create a new ZionWorx import dialog.\n     */\n    public ZionWorxImportDialog() {\n        super(new String[]{LabelGrabber.INSTANCE.getLabel(\"zw.import.line1\"), LabelGrabber.INSTANCE.getLabel(\"zw.import.line2\")\n        }, FileFilters.MAINTABLE_DAT, new ZionWorxParser(), ImportDialogOptions.disallow());\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/importexport/ZionWorxParser.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.importexport;\n\nimport java.io.File;\nimport java.io.IOException;\nimport java.util.ArrayList;\nimport java.util.List;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport java.util.regex.Matcher;\nimport java.util.regex.Pattern;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.StatusPanel;\n\n/**\n * A parser for parsing ZionWorx databases.\n * <p>\n * @author Michael\n */\npublic class ZionWorxParser implements SongParser {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n\n    /**\n     * Get a list of the songs contained in the given ZionWorx database.\n     * <p>\n     * @param location the location of the ZionWorx MainTable.dat file.\n     * @return a list of the songs found.\n     * @throws IOException if something goes wrong.\n     */\n    @Override\n    public List<SongDisplayable> getSongs(File location, StatusPanel statusPanel) throws IOException {\n        List<SongDisplayable> songs = new ArrayList<>();\n        File csvLocation = new ZWCsvConverter(location).getCSV();\n        String fileContent = Utils.getTextFromFile(csvLocation.getAbsolutePath(), null);\n        RawTextWrapper rawText;\n        while ((rawText = getRawText(fileContent)) != null) {\n            SongDisplayable song = getSong(rawText.rawText);\n            if (song != null) {\n                songs.add(song);\n            }\n            fileContent = fileContent.substring(rawText.endIndex);\n        }\n        return songs;\n    }\n\n    /**\n     * Get a song displayable for one section of raw text.\n     * <p>\n     * @param rawText the raw text for one particular song.\n     * @return the song obtained from this raw text.\n     */\n    private SongDisplayable getSong(String rawText) {\n        try {\n            int startTitleIndex = rawText.indexOf(\"\\\\\");\n            int endTitleIndex = rawText.indexOf(\"\\\\\", startTitleIndex + 1);\n            String title = rawText.substring(startTitleIndex + 1, endTitleIndex);\n            if (title.startsWith(\"\\\\\")) {\n                title = title.substring(1);\n            }\n            if (title.startsWith(\",\")) {\n                title = title.substring(1);\n            }\n            SongDisplayable song = new SongDisplayable(title, \"\");\n            rawText = rawText.substring(endTitleIndex);\n            int lastIndex = rawText.lastIndexOf(\"\\\\,\");\n            String sub = rawText.substring(0, lastIndex);\n            rawText = rawText.substring(sub.lastIndexOf(\"\\\\,\") + 2, lastIndex);\n            if (rawText.startsWith(\",\")) {\n                rawText = rawText.substring(1);\n            }\n            if (rawText.startsWith(\"\\\\\")) {\n                rawText = rawText.substring(1);\n            }\n            rawText = rawText.trim(); //It should now be the lyrics\n            song.setLyrics(rawText);\n            return song;\n        } catch (Exception ex) {\n            LOGGER.log(Level.INFO, \"ZWP error with text: \" + rawText, ex);\n            return null;\n        }\n    }\n\n    /**\n     * Get the raw text for a particular number song (starting at 1.)\n     * <p>\n     * @param fileContent the full CSV file content.\n     * @return the raw CSV text just for one song.\n     */\n    private RawTextWrapper getRawText(String fileContent) {\n        Pattern patt = Pattern.compile(\"\\\\\\\\[0-9]+\\\\\\\\\");\n        Matcher matcher = patt.matcher(fileContent);\n        if (matcher.find()) {\n            int startIndex = matcher.start();\n            if (startIndex == -1) {\n                return null;\n            }\n            startIndex += matcher.end(); //Chop off index number / comma / backslashes\n            int endIndex = fileContent.length();\n            if (matcher.find()) {\n                endIndex = matcher.start();\n            }\n            return new RawTextWrapper(fileContent.substring(startIndex, endIndex), endIndex);\n        }\n        return null;\n    }\n\n    /**\n     * Wraps the raw text retrieved from the CSV file for a particular song, as\n     * well as the end index (so the correct amount of the string can be cut off\n     * ready for the next song.)\n     */\n    static class RawTextWrapper {\n\n        private String rawText;\n        private int endIndex;\n\n        public RawTextWrapper(String str, int endIndex) {\n            this.rawText = str;\n            this.endIndex = endIndex;\n        }\n\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/languages/LabelChecker.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * Copyright (C) 2019 Michael Berry\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.languages;\n\nimport com.google.gson.Gson;\nimport java.io.File;\nimport java.io.FileInputStream;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\nimport java.io.PrintWriter;\nimport java.nio.charset.StandardCharsets;\nimport java.util.ArrayList;\nimport java.util.HashMap;\nimport java.util.List;\nimport java.util.Map;\nimport org.quelea.utils.TrackDuplicateProperties;\n\n/**\n * Run as a standalone script - checks to see whether the language files are\n * complete, and for those that aren't shows the missing labels that need\n * translating.\n * <p/>\n * @author Michael\n */\npublic class LabelChecker {\n\n    private TrackDuplicateProperties labels;\n    private TrackDuplicateProperties engLabels;\n    private String name;\n    private String langName;\n\n    public LabelChecker(String name) {\n        this.name = name;\n        labels = new TrackDuplicateProperties();\n        engLabels = new TrackDuplicateProperties();\n        File langFile = new File(\"languages\", name);\n        try (InputStreamReader reader = new InputStreamReader(new FileInputStream(langFile), \"UTF-8\")) {\n            labels.loadNoDuplicates(reader);\n            langName = labels.getProperty(\"LANGUAGENAME\");\n        } catch (IOException ex) {\n            ex.printStackTrace();\n        }\n        File englangFile = new File(\"languages\", \"gb.lang\");\n        try (InputStreamReader reader = new InputStreamReader(new FileInputStream(englangFile), \"UTF-8\")) {\n            engLabels.loadNoDuplicates(reader);\n        } catch (IOException ex) {\n            ex.printStackTrace();\n        }\n    }\n\n    public List<String> getMissingLabels() {\n        List<String> missing = new ArrayList<>();\n        boolean first = false;\n        System.err.print(\"\\nChecking \\\"\" + name + \"\\\"...\");\n        for (Object okey : engLabels.keySet()) {\n            String key = (String) okey;\n            String prop = labels.getProperty(key);\n            if (prop == null) {\n                if (!first) {\n                    first = true;\n                    System.err.println();\n                    System.err.println(\"MISSING LABELS:\");\n                }\n                String val = key + \"=\" + engLabels.getProperty(key).replace(\"\\n\", \"\\\\n\");\n                missing.add(val);\n                System.err.println(val);\n            }\n        }\n        if (missing.isEmpty()) {\n            System.err.println(\"All good.\");\n        }\n        return missing;\n    }\n\n    public static void main(String[] args) throws Exception {\n        System.out.println(\"Checking language files:\");\n        boolean someLabelsMissing = false;\n        Map<String, List<String>> missingMap = new HashMap<>();\n        for (File file : new File(\"languages\").listFiles()) {\n            if (file.getName().endsWith(\"lang\")\n                    && !file.getName().equals(\"gb.lang\")\n                    && !file.getName().equals(\"us.lang\")) { //Exclude GB english file since this is what we work from, and US file because it gets translated automatically!\n                System.out.println(\"Checking \" + file.getName());\n                LabelChecker lc = new LabelChecker(file.getName());\n                List<String> missingLabels = lc.getMissingLabels();\n                missingMap.put(lc.langName, missingLabels);\n                if (!missingLabels.isEmpty()) {\n                    someLabelsMissing = true;\n                }\n            }\n        }\n        String json = new Gson().toJson(missingMap);\n        \n        File missingLabelFile = new File(\"dist/missinglabels.js\");\n        new File(\"dist\").mkdir();\n        missingLabelFile.createNewFile();\n        try (PrintWriter out = new PrintWriter(missingLabelFile, StandardCharsets.UTF_8.displayName())) {\n            out.println(\"var mls = \" + json + \";\");\n        }\n        \n        if (someLabelsMissing) {\n            System.err.println(\"\\nWARNING: Some language files have missing labels. \"\n                    + \"This is normal for intermediate builds and development releases, \"\n                    + \"but for final releases this should be fixed if possible. \");\n        }\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/languages/LabelGrabber.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify it under\n * the terms of the GNU General Public License as published by * the Free\n * Software Foundation, either version 3 of the License, or (at your option) any\n * later version.\n *\n * This program is distributed in the hope that it will be useful, but WITHOUT\n * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\n * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License along with\n * this program. If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.languages;\n\nimport java.io.File;\nimport java.io.IOException;\nimport java.io.StringReader;\nimport java.util.Collections;\nimport java.util.Enumeration;\nimport java.util.HashSet;\nimport java.util.Locale;\nimport java.util.Properties;\nimport java.util.ResourceBundle;\nimport java.util.Set;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\n\n/**\n * Responsible for grabbing the appropriate labels from the current langauges\n * file based on keys.\n * <p/>\n * @author Michael\n */\npublic class LabelGrabber extends ResourceBundle {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    public static final LabelGrabber INSTANCE = new LabelGrabber();\n    private Properties labels;\n    private Properties engLabels;\n    private boolean english;\n\n    /**\n     * Create the label grabber.\n     */\n    private LabelGrabber() {\n        labels = new Properties();\n        engLabels = new Properties();\n        File langFile = QueleaProperties.get().getLanguageFile();\n        if (langFile == null) {\n            LOGGER.log(Level.SEVERE, \"Couldn't load languages file, file was null\");\n            return;\n        }\n        LOGGER.log(Level.INFO, \"Using languages file {0}\", langFile.getAbsolutePath());\n        try (StringReader reader = new StringReader(Utils.getTextFromFile(langFile.getAbsolutePath(), \"\"))) {\n            labels.load(reader);\n        } catch (IOException ex) {\n            LOGGER.log(Level.SEVERE, \"Couldn't load languages file\", ex);\n        }\n        if (langFile.getName().equals(\"gb.lang\")) {\n            LOGGER.log(Level.INFO, \"Setting en-uk locale\");\n            Locale.setDefault(Locale.UK);\n        } else {\n            LOGGER.log(Level.INFO, \"Setting {0} locale\", labels.getProperty(\"LOCALE\", \"en\"));\n            Locale.setDefault(new Locale(labels.getProperty(\"LOCALE\", \"en\")));\n        }\n\n        if (langFile.getName().equals(\"gb.lang\")) {\n            english = true;\n        } else {\n            english = false;\n            File englangFile = QueleaProperties.get().getEnglishLanguageFile();\n            if (englangFile == null) {\n                LOGGER.log(Level.SEVERE, \"No english language file!\");\n            } else {\n                try (StringReader reader = new StringReader(Utils.getTextFromFile(englangFile.getAbsolutePath(), \"\"))) {\n                    engLabels.load(reader);\n                    LOGGER.log(Level.INFO, \"Using english language file as backup\");\n                } catch (IOException ex) {\n                    LOGGER.log(Level.SEVERE, \"Couldn't load english language file\", ex);\n                }\n            }\n        }\n    }\n\n    /**\n     * Determine if a particular key has an entry in the currently selected\n     * language.\n     *\n     * @param key the label key to check.\n     * @return true if a definition exists, false otherwise.\n     */\n    public boolean isLocallyDefined(String key) {\n        return labels.getProperty(key) != null;\n    }\n\n    /**\n     * Get a label from the language file.\n     * <p/>\n     * @param key the key to use to get the label.\n     * @return the textual string in the appropriate language.\n     */\n    public String getLabel(String key) {\n        String ret = labels.getProperty(key);\n        if (ret == null) {\n            ret = engLabels.getProperty(key);\n            if (english) { //Only a warning for the default english lang file - others will probably have stuff missing.\n                LOGGER.log(Level.WARNING, \"Missing label in language file: {0}\", key);\n            }\n            if (ret == null) {\n                return key;\n            }\n        }\n        return ret;\n    }\n\n    public String getEngKey(String label) {\n        if (english) {\n            return label;\n        }\n\n        int pos = 0;\n        var labArr = labels.keySet().toArray();\n        for (String s : labels.stringPropertyNames()) {\n            if (getLabel(s).equalsIgnoreCase(label)) {\n                Object foundKey = engLabels.get(labArr[pos]);\n                if (foundKey != null) {\n                    return foundKey.toString();\n                }\n            }\n            pos++;\n        }\n\n        return label;\n    }\n\n    @Override\n    public Enumeration<String> getKeys() {\n        return Collections.enumeration(keySet());\n    }\n\n    @Override\n    public Object handleGetObject(String key) {\n        return getLabel(key);\n    }\n\n    // Overrides handleKeySet() so that the getKeys() implementation\n    // can rely on the keySet() value.\n    @Override\n    protected Set<String> handleKeySet() {\n        Set<String> result = labels.stringPropertyNames();\n        Set<String> resultEng = engLabels.stringPropertyNames();\n        Set<String> ret = new HashSet<>();\n        ret.addAll(result);\n        ret.addAll(resultEng);\n        return ret;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/languages/LanguageFile.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * Copyright (C) 2012 Michael Berry\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.languages;\n\nimport java.io.File;\nimport java.io.IOException;\nimport java.io.StringReader;\nimport java.text.Collator;\nimport java.util.Objects;\nimport java.util.Properties;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.Utils;\n\n/**\n * A language file used by Quelea to display interface labels.\n * <p/>\n * @author Michael\n */\npublic class LanguageFile implements Comparable<LanguageFile> {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    private String languageName;\n    private File languageFile;\n\n    /**\n     * Create a language file from a specified file.\n     * <p/>\n     * @param file the file to create the language file from.\n     */\n    public LanguageFile(File file) {\n        this.languageFile = file;\n        Properties props = new Properties();\n        try(StringReader reader = new StringReader(Utils.getTextFromFile(file.getAbsolutePath(), \"\"))) {\n            props.load(reader);\n        }\n        catch(IOException ex) {\n            LOGGER.log(Level.WARNING, \"Couldn't read in language file as property file: \" + file.getAbsolutePath(), ex);\n        }\n        languageName = props.getProperty(\"LANGUAGENAME\");\n        if(languageName == null || languageName.trim().isEmpty()) {\n            LOGGER.log(Level.WARNING, \"{0} doesn''t have a language name!\", file.getAbsolutePath());\n        }\n    }\n\n    /**\n     * The name of the language represented by this file.\n     */\n    public String getLanguageName() {\n        return languageName;\n    }\n\n    public File getFile() {\n        return languageFile;\n    }\n\n    @Override\n    public String toString() {\n        return languageName;\n    }\n\n    @Override\n    public int hashCode() {\n        int hash = 5;\n        hash = 97 * hash + Objects.hashCode(this.languageFile);\n        return hash;\n    }\n\n    @Override\n    public boolean equals(Object obj) {\n        if(obj == null) {\n            return false;\n        }\n        if(getClass() != obj.getClass()) {\n            return false;\n        }\n        final LanguageFile other = (LanguageFile) obj;\n        if(!Objects.equals(this.languageFile, other.languageFile)) {\n            return false;\n        }\n        return true;\n    }\n\n    @Override\n    public int compareTo(LanguageFile o) {\n        Collator collator = Collator.getInstance();\n        if(languageName == null && o.languageName == null) {\n            return 0;\n        }\n        if(languageName == null) {\n            return -1;\n        }\n        if(o.languageName == null) {\n            return 1;\n        }\n        return collator.compare(languageName, o.languageName);\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/languages/LanguageFileManager.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * Copyright (C) 2012 Michael Berry\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.languages;\n\nimport java.io.File;\nimport java.util.Set;\nimport java.util.TreeSet;\nimport org.quelea.services.utils.QueleaProperties;\n\n/**\n * Knows about all language files currently available in Quelea.\n * <p>\n * @author Michael\n */\npublic class LanguageFileManager {\n\n    public static final LanguageFileManager INSTANCE = new LanguageFileManager();\n    private Set<LanguageFile> languageFiles;\n\n    private LanguageFileManager() {\n        languageFiles = new TreeSet<>();\n        for(File file : new File(\"languages\").listFiles()) {\n            if(file.getName().endsWith(\".lang\")) {\n                languageFiles.add(new LanguageFile(file));\n            }\n        }\n    }\n\n    /**\n     * Get the language file Quelea is currently using.\n     * <p>\n     * @return\n     */\n    public LanguageFile getCurrentFile() {\n        return new LanguageFile(QueleaProperties.get().getLanguageFile());\n    }\n\n    /**\n     * Get a set of all language files currently available to Quelea.\n     * <p>\n     * @return the set of language files.\n     */\n    public Set<LanguageFile> languageFiles() {\n        return new TreeSet<>(languageFiles);\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/languages/USEnglishConverter.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * Copyright (C) 2012 Michael Berry\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.languages;\n\nimport java.io.FileReader;\nimport java.io.FileWriter;\nimport java.io.IOException;\nimport java.util.Properties;\nimport java.util.regex.Pattern;\n\n/**\n * Utility class to loosely convert the default British English languages file\n * to a separate American English languages file. There's only a few minor\n * changes, so this can probably be done automatically.\n * <p/>\n * @author Michael\n */\npublic class USEnglishConverter {\n\n    public static void main(String[] args) {\n        try {\n            System.out.println(\"Converting language file to American English...\");\n            Properties gb = new Properties();\n            gb.load(new FileReader(\"languages/gb.lang\"));\n            Properties usa = new Properties();\n            for(Object k : gb.keySet()) {\n                String key = (String) k;\n                usa.setProperty(key, translateToUS(gb.getProperty(key)));\n            }\n            usa.setProperty(\"LANGUAGENAME\", \"English (US)\");\n            usa.store(new FileWriter(\"languages/us.lang\"), \"THIS IS AN AUTO GENERATED FILE, AND WILL BE OVERWRITTEN EACH TIME QUELEA IS REBUILT. DO NOT EDIT MANUALLY!\");\n            System.out.println(\"Successfully converted language file to American English.\");\n        }\n        catch(IOException ex) {\n            ex.printStackTrace();\n        }\n    }\n\n    /**\n     * Translate a string from GB to US english. At present, just deals with\n     * colour because I think that's the only difference we have...\n     * <p/>\n     * @param gb the string in GB english\n     * @return the string in US engligh\n     */\n    private static String translateToUS(final String gb) {\n        String us = gb;\n        us = Pattern.compile(\"colour\").matcher(us).replaceAll(\"color\");\n        us = Pattern.compile(\"Colour\").matcher(us).replaceAll(\"Color\");\n        us = Pattern.compile(\"sanitise\").matcher(us).replaceAll(\"sanitize\");\n        us = Pattern.compile(\"Sanitise\").matcher(us).replaceAll(\"Sanitize\");\n        us = Pattern.compile(\"initialise\").matcher(us).replaceAll(\"initialize\");\n        us = Pattern.compile(\"Initialise\").matcher(us).replaceAll(\"Initialize\");\n        us = Pattern.compile(\"capitalise\").matcher(us).replaceAll(\"capitalize\");\n        us = Pattern.compile(\"Capitalise\").matcher(us).replaceAll(\"Capitalize\");\n        if(!us.equals(gb)) {\n            System.out.println(\"Translated \\\"\" + gb + \"\\\" ==> \\\"\" + us + \"\\\"\");\n        }\n        return us;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/languages/spelling/Dictionary.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * Copyright (C) 2012 Michael Berry\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.languages.spelling;\n\nimport java.io.File;\n\n/**\n *\n * @author Michael\n */\npublic class Dictionary {\n    \n    private String lang;\n    private File dictFile;\n\n    public Dictionary(String lang, File dictFile) {\n        this.lang = lang;\n        this.dictFile = dictFile;\n    }\n\n    public String getLang() {\n        return lang;\n    }\n\n    public File getDictFile() {\n        return dictFile;\n    }\n    \n    @Override\n    public String toString() {\n        return lang;\n    }\n    \n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/languages/spelling/DictionaryManager.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * Copyright (C) 2012 Michael Berry\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.languages.spelling;\n\nimport java.io.File;\nimport java.io.IOException;\nimport java.io.StringReader;\nimport java.util.HashMap;\nimport java.util.HashSet;\nimport java.util.Map;\nimport java.util.Properties;\nimport java.util.Set;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\n\n/**\n * Responsible for managing and loading the spelling dictionaries.\n *\n * @author Michael\n */\npublic class DictionaryManager {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    public static final DictionaryManager INSTANCE = new DictionaryManager();\n    private Map<String, Dictionary> dictionaries;\n    private Properties props = new Properties();\n\n    /**\n     * Singleton constructor.\n     */\n    private DictionaryManager() {\n        try (StringReader reader = new StringReader(Utils.getTextFromFile(new File(QueleaProperties.get().getDictionaryDir(), \"dictionaries.properties\").getAbsolutePath(), \"\"))) {\n            props.load(reader);\n        } catch (IOException ex) {\n            LOGGER.log(Level.WARNING, \"Couldn't load dictionaries\", ex);\n        }\n        dictionaries = new HashMap<>();\n        Speller init = new Speller(null);\n        for (String propName : props.stringPropertyNames()) {\n            File file = new File(QueleaProperties.get().getDictionaryDir(), propName);\n            if (!file.exists()) {\n                LOGGER.log(Level.WARNING, \"Dictionary {0} doesn't exist.\", propName);\n                continue;\n            }\n            Dictionary dict = new Dictionary(props.getProperty(propName), file);\n            dictionaries.put(propName, dict);\n            init.setDictionary(dict);\n        }\n    }\n\n    /**\n     * Get a set of all the dictionaries loaded byt he manager.\n     *\n     * @return a set of all the dictionaries loaded byt he manager.\n     */\n    public Set<Dictionary> getDictionaries() {\n        return new HashSet<>(dictionaries.values());\n    }\n\n    /**\n     * Get a dictionary from a particular file name (not full path!) located in\n     * the dictionaries folder.\n     *\n     * @param name the file name of the dictionary.\n     * @return the dictionary (if the filename existed when this manager was\n     * initialised), null otherwise.\n     */\n    public Dictionary getFromFilename(String name) {\n        return dictionaries.get(name);\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/languages/spelling/LevenshteinDistance.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.languages.spelling;\n\n/**\n * Utility class for calculating Levenshtein distance between two strings.\n * <p/>\n * @author Michael\n */\npublic class LevenshteinDistance {\n\n    private static int minimum(int a, int b, int c) {\n        return Math.min(Math.min(a, b), c);\n    }\n\n    /**\n     * Calculate the Levenshtein distance between two strings.\n     * <p/>\n     * @param str1 the first string.\n     * @param str2 the second string.\n     * @return the distance.\n     */\n    public static int computeLevenshteinDistance(CharSequence str1,\n            CharSequence str2) {\n        int[][] distance = new int[str1.length() + 1][str2.length() + 1];\n\n        for(int i = 0; i <= str1.length(); i++) {\n            distance[i][0] = i;\n        }\n        for(int j = 1; j <= str2.length(); j++) {\n            distance[0][j] = j;\n        }\n\n        for(int i = 1; i <= str1.length(); i++) {\n            for(int j = 1; j <= str2.length(); j++) {\n                distance[i][j] = minimum(\n                        distance[i - 1][j] + 1,\n                        distance[i][j - 1] + 1,\n                        distance[i - 1][j - 1]\n                        + ((str1.charAt(i - 1) == str2.charAt(j - 1)) ? 0\n                        : 1));\n            }\n        }\n\n        return distance[str1.length()][str2.length()];\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/languages/spelling/SpellTextArea.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.languages.spelling;\n\nimport javafx.animation.FadeTransition;\nimport javafx.application.Platform;\nimport javafx.beans.property.BooleanProperty;\nimport javafx.beans.property.SimpleBooleanProperty;\nimport javafx.beans.value.ChangeListener;\nimport javafx.beans.value.ObservableValue;\nimport javafx.geometry.Insets;\nimport javafx.geometry.Pos;\nimport javafx.scene.control.MenuItem;\nimport javafx.scene.control.Tooltip;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.input.KeyCode;\nimport javafx.scene.input.KeyEvent;\nimport javafx.scene.layout.StackPane;\nimport javafx.util.Duration;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.LineTypeChecker;\nimport org.quelea.services.utils.LineTypeChecker.Type;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.UndoHandler;\nimport org.quelea.windows.lyrics.LyricsTextArea;\n\n/**\n * The spell text area component - wraps a text area to provide spell check\n * capabilities.\n * <p/>\n *\n * @author Michael\n */\npublic class SpellTextArea extends StackPane {\n\n    private static final int CHECK_FREQ = 1000;\n    private static final double WARNING_OPACITY = 0.5;\n    private SpellingDialog dialog;\n    private LyricsTextArea area;\n    private KeyCode runSpellKey;\n    private Speller speller;\n    private ImageView warning;\n    private Thread checkerThread;\n    private volatile SimpleBooleanProperty spellingOkProperty;\n    private UndoHandler undoHandler;\n\n    /**\n     * Create a new spell text area.\n     */\n    public SpellTextArea() {\n        runSpellKey = KeyCode.F7;\n        undoHandler = new UndoHandler();\n        if (QueleaProperties.get().isDictionaryEnabled()) {\n            speller = new Speller(QueleaProperties.get().getDictionary());\n        } else {\n            speller = new Speller(null);\n        }\n        area = new LyricsTextArea();\n        spellingOkProperty = new SimpleBooleanProperty(speller.checkText(area.getTextArea().getText(), true));\n        getChildren().add(area);\n        warning = new ImageView(\"file:icons/warning.png\");\n        Tooltip.install(warning, new Tooltip(LabelGrabber.INSTANCE.getLabel(\"spelling.errors.in.doc.label\")));\n        StackPane.setAlignment(warning, Pos.TOP_RIGHT);\n        StackPane.setMargin(warning, new Insets(5));\n        warning.setOpacity(0);\n        getChildren().add(warning);\n        dialog = new SpellingDialog(speller);\n\n        MenuItem undoItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"undo.label\"));\n        undoItem.setOnAction(e -> {\n            undo();\n        });\n        area.getTextArea().getContextMenu().getItems().add(undoItem);\n        MenuItem redoItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"redo.label\"));\n        redoItem.setOnAction(e -> {\n            redo();\n        });\n        area.getTextArea().getContextMenu().getItems().add(redoItem);\n        area.getTextArea().getContextMenu().setOnShown(e -> {\n            undoItem.setDisable(!undoHandler.canUndo());\n            redoItem.setDisable(!undoHandler.canRedo());\n        });\n\n        area.setOnKeyPressed((KeyEvent t) -> {\n            if (t.getCode() == runSpellKey) {\n                runSpellCheck();\n            }\n            if (t.getCode() == KeyCode.ENTER && t.isShiftDown()) {\n                area.getTextArea().replaceText(area.getTextArea().getCaretPosition(), area.getTextArea().getCaretPosition(), \"\\n<>\");\n                area.refreshStyle();\n            }\n            if (t.getCode() == KeyCode.Z && t.isShortcutDown()) {\n                undo();\n            }\n            if (t.getCode() == KeyCode.Y && t.isShortcutDown()) {\n                redo();\n            }\n        });\n        area.getTextArea().textProperty().addListener(new ChangeListener<String>() {\n            @Override\n            public void changed(ObservableValue<? extends String> ov, String t, final String t1) {\n                updateSpelling(false);\n                if (!undoHandler.isUndo()) {\n                    undoHandler.add(t, t1);\n                } else {\n                    undoHandler.setUndo(false);\n                }\n\n                if (checkerThread != null && checkerThread.isAlive()) {\n                    checkerThread.interrupt();\n                }\n                checkerThread = new Thread() {\n                    public void run() {\n                        try {\n                            Thread.sleep(CHECK_FREQ);\n                            Platform.runLater(new Runnable() {\n                                @Override\n                                public void run() {\n                                    updateSpelling(true);\n                                }\n                            });\n                        } catch (InterruptedException ex) {\n                            //Quit silently if interrupted\n                        }\n                    }\n                };\n                checkerThread.start();\n            }\n        });\n    }\n\n    /**\n     * Activate a spell check for this area.\n     */\n    public void runSpellCheck() {\n        dialog.check(SpellTextArea.this);\n    }\n\n    public void setDictionary(Dictionary dict) {\n        speller.setDictionary(dict);\n        updateSpelling(true);\n    }\n\n    /**\n     * Check the spelling on this text area - called internally to update state,\n     * but can be fired externally also.\n     * <p/>\n     *\n     * @param lastWord true if the last word should be included in the spell\n     *                 check.\n     */\n    public void updateSpelling(boolean lastWord) {\n        spellingOkProperty.set(speller.checkText(getText(), lastWord));\n        FadeTransition transition = new FadeTransition(Duration.seconds(0.2), warning);\n        if (spellingOkProperty.get()) {\n            transition.setFromValue(warning.getOpacity());\n            transition.setToValue(0);\n        } else {\n            transition.setFromValue(warning.getOpacity());\n            transition.setToValue(WARNING_OPACITY);\n        }\n        transition.play();\n    }\n\n    /**\n     * Get the boolean property representing whether the spelling is ok.\n     *\n     * @return true if the spelling is ok, false otherwise.\n     */\n    public BooleanProperty spellingOkProperty() {\n        return spellingOkProperty;\n    }\n\n    /**\n     * Get the underlying text area object used in this control.\n     * <p/>\n     *\n     * @return the text area object.\n     */\n    public LyricsTextArea getArea() {\n        return area;\n    }\n\n    /**\n     * Get the text on this text area, excluding any chords.\n     * <p/>\n     *\n     * @return the text area's text, without chord lines.\n     */\n    public String getText() {\n        String[] lines = area.getTextArea().getText().split(\"\\n\");\n        StringBuilder ret = new StringBuilder();\n        for (String line : lines) {\n            if (new LineTypeChecker(line).getLineType() != Type.CHORDS) {\n                ret.append(line).append(\"\\n\");\n            }\n        }\n        return ret.toString();\n    }\n\n    /**\n     * Get the text on this text area, including any chords.\n     * <p/>\n     *\n     * @return the text area's text, with chord lines.\n     */\n    public String getTextAndChords() {\n        String[] lines = area.getTextArea().getText().split(\"\\n\");\n        StringBuilder ret = new StringBuilder();\n        for (String line : lines) {\n            ret.append(line).append(\"\\n\");\n        }\n        return ret.toString();\n    }\n\n    /**\n     * Get the key used to run the spell check. F7 by default.\n     * <p/>\n     *\n     * @return the key used to run the spell check.\n     */\n    public KeyCode getRunSpellKey() {\n        return runSpellKey;\n    }\n\n    /**\n     * Set the keycode used to run the spell check. F7 by default.\n     * <p/>\n     *\n     * @param runSpellKey the key used to run the spell check.\n     */\n    public void setRunSpellKey(KeyCode runSpellKey) {\n        this.runSpellKey = runSpellKey;\n    }\n\n    public void clearUndo() {\n        if (undoHandler != null) {\n            undoHandler.clearUndo();\n        }\n    }\n\n    private void undo() {\n        if (undoHandler.canUndo()) {\n            String newText = undoHandler.undo();\n            if (!newText.equals(getTextAndChords())) {\n                area.getTextArea().replaceText(0, area.getTextArea().getText().length(), newText);\n                int pos = undoHandler.getCaretPos(true);\n                area.getTextArea().selectRange(pos, pos);\n            }\n        }\n    }\n\n    private void redo() {\n        if (undoHandler.canRedo()) {\n            String newText = undoHandler.redo();\n            if (!newText.equals(getTextAndChords())) {\n                area.getTextArea().replaceText(0, area.getTextArea().getText().length(), newText);\n                int pos = undoHandler.getCaretPos(false);\n                area.getTextArea().selectRange(pos, pos);\n            }\n        }\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/languages/spelling/Speller.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.languages.spelling;\n\nimport java.io.BufferedReader;\nimport java.io.BufferedWriter;\nimport java.io.File;\nimport java.io.FileInputStream;\nimport java.io.FileOutputStream;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\nimport java.io.OutputStreamWriter;\nimport java.util.ArrayList;\nimport java.util.Arrays;\nimport java.util.HashMap;\nimport java.util.HashSet;\nimport java.util.List;\nimport java.util.PriorityQueue;\nimport java.util.Set;\nimport java.util.regex.Pattern;\n\n/**\n * Checks text for spelling errors, and provides correction suggestions.\n * <p/>\n * @author Michael\n */\npublic class Speller {\n\n    public static final String SPELLING_REGEX = \"([^\\\\p{Alnum}'\\\\-])+\";\n    private static HashMap<File, HashSet<String>> dictionaries = new HashMap<>();\n    private HashSet<String> ignoreWords;\n    private HashSet<String> words;\n    private Dictionary dict;\n\n    /**\n     * Create a new speller with a specified dictionary file. Must exist.\n     * <p/>\n     * @param dict the dictionary file. Must be a list of words in the\n     * dictionary, one per line.\n     */\n    public Speller(Dictionary dict) {\n        ignoreWords = new HashSet<>();\n        setDictionary(dict);\n    }\n\n    /**\n     * Set this speller to use a dictionary.\n     * <p/>\n     * @param dict the dictionary to use.\n     */\n    public final void setDictionary(Dictionary dict) {\n        if(dict == null) {\n            return;\n        }\n        this.dict = dict;\n        if(dictionaries.containsKey(dict.getDictFile())) {\n            words = dictionaries.get(dict.getDictFile());\n        }\n        else {\n            words = new HashSet<>();\n            dictionaries.put(dict.getDictFile(), words);\n            try {\n                BufferedReader reader = new BufferedReader(new InputStreamReader(new FileInputStream(dict.getDictFile()), \"UTF-8\"));\n                String line;\n                while((line = reader.readLine()) != null) {\n                    line = sanitiseWord(line);\n                    if(!line.isEmpty()) {\n                        dictionaries.get(dict.getDictFile()).add(line);\n                    }\n                }\n            }\n            catch(IOException ex) {\n                throw new IllegalArgumentException(\"Error reading dictionary file\", ex);\n            }\n        }\n    }\n\n    /**\n     * Check to see if a particular word is in the dictionary.\n     * <p/>\n     * @param word the word to check.\n     * @return true if it is correct, false if not.\n     */\n    public boolean checkWord(String word) {\n        word = sanitiseWord(word);\n        if(ignoreWords == null || words == null || word.length()==1) {\n            return true;\n        }\n        return words.contains(word) || ignoreWords.contains(word);\n    }\n\n    /**\n     * Add a word to the ignore list.\n     * <p/>\n     * @param word the word to add.\n     */\n    public void addIgnoreWord(String word) {\n        word = sanitiseWord(word);\n        ignoreWords.add(word);\n    }\n\n    /**\n     * Get the list of misspelt words, if any, in the given text.\n     * <p/>\n     * @param text the text to check.\n     * @return the list of misspelt words.\n     */\n    public Set<String> getMisspeltWords(String text) {\n        Set<String> ret = new HashSet<>();\n        if(text.trim().isEmpty()) {\n            return ret;\n        }\n        String[] tempWords = Pattern.compile(SPELLING_REGEX, Pattern.UNICODE_CHARACTER_CLASS).split(text);\n        for(String word : tempWords) {\n            if(!checkWord(word)) {\n                ret.add(word);\n            }\n        }\n        return ret;\n    }\n\n    /**\n     * Get suggestions for a misspelt word.\n     * <p/>\n     * @param misspell the misspelt word.\n     * @return the best suggestions from the dictionary file.\n     */\n    public List<String> getSuggestions(String misspell) {\n        PriorityQueue<Suggestion> list = new PriorityQueue<>();\n        for(String word : words) {\n            int distance = LevenshteinDistance.computeLevenshteinDistance(word, misspell);\n            if(word.length() == misspell.length()) {\n                distance--;\n            }\n            if(anagram(word, misspell)) {\n                distance -= word.length();\n            }\n            if(distance < 5) {\n                list.add(new Suggestion(word, distance));\n            }\n        }\n        List<String> ret = new ArrayList<>();\n        int count = 0;\n        for(Suggestion word : list) {\n            ret.add(word.getWord());\n            count++;\n            if(count == 6) {\n                break;\n            }\n        }\n        return ret;\n    }\n\n    /**\n     * Check a block of text to see if the spelling is ok.\n     * <p/>\n     * @param text the text to check for correctness.\n     * @param checkLastWord true if the last word should be checked, false if it\n     * should be ignored (since the user may be part way through typing it.)\n     * @return true if the check is all ok, false if there are misspelt words.\n     */\n    public boolean checkText(String text, boolean checkLastWord) {\n        if(text.trim().isEmpty()) {\n            return true;\n        }\n        String[] tempWords = Pattern.compile(SPELLING_REGEX, Pattern.UNICODE_CHARACTER_CLASS).split(text);\n        for(int i = 0; i < tempWords.length; i++) {\n            if(i == tempWords.length - 1 && !checkLastWord) {\n                break;\n            }\n            String word = tempWords[i];\n            if(!checkWord(word)) {\n                return false;\n            }\n        }\n        return true;\n    }\n\n    /**\n     * Add a word to the dictionary file.\n     * <p/>\n     * @param word the word to add.\n     */\n    public void addWord(String word) {\n        word = sanitiseWord(word);\n        try {\n            if(!words.contains(word)) {\n                words.add(word);\n                BufferedWriter out = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(dict.getDictFile(), true), \"UTF-8\"));\n                out.append(System.getProperty(\"line.separator\") + word).close();\n            }\n        }\n        catch(IOException ex) {\n            throw new RuntimeException(\"Couldn't add word to dictionary file\", ex);\n        }\n    }\n\n    private String sanitiseWord(String word) {\n        word = word.trim().toLowerCase();\n        word = Pattern.compile(\"[^\\\\p{Alnum}'\\\\- ]\", Pattern.UNICODE_CHARACTER_CLASS).matcher(word).replaceAll(\"\");\n        return word;\n    }\n\n    private boolean anagram(String firstWord, String secondWord) {\n        char[] word1 = firstWord.toLowerCase().toCharArray();\n        char[] word2 = secondWord.toLowerCase().toCharArray();\n        Arrays.sort(word1);\n        Arrays.sort(word2);\n        return Arrays.equals(word1, word2);\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/languages/spelling/SpellingDialog.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.languages.spelling;\n\nimport java.util.Arrays;\nimport java.util.HashMap;\nimport java.util.List;\nimport java.util.Map;\nimport java.util.Set;\nimport java.util.regex.Pattern;\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport javafx.geometry.Insets;\nimport javafx.geometry.Pos;\nimport javafx.scene.Scene;\nimport javafx.scene.control.Button;\nimport javafx.scene.control.Label;\nimport javafx.scene.control.ListView;\nimport javafx.scene.layout.BorderPane;\nimport javafx.scene.layout.FlowPane;\nimport javafx.scene.layout.HBox;\nimport javafx.scene.layout.VBox;\nimport javafx.scene.paint.Color;\nimport javafx.scene.text.Text;\nimport javafx.stage.Modality;\nimport javafx.stage.Stage;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.LineTypeChecker;\nimport org.quelea.services.utils.LineTypeChecker.Type;\nimport org.quelea.services.utils.QueleaProperties;\n\n/**\n * The spelling dialog used for correcting misspelt words.\n * <p/>\n * @author Michael\n */\npublic class SpellingDialog {\n\n    private Stage dialogStage;\n    private FlowPane textPane;\n    private ListView<String> suggestions;\n    private Speller speller;\n    private Set<String> wordsToCorrect;\n    private Map<String, String> correctedWords;\n    private String origText;\n    private SpellTextArea area;\n\n    /**\n     * Create a spelling dialog with a particular speller (used for managing the\n     * corrections.)\n     * <p/>\n     * @param speller the speller to use for checking the spelling.\n     */\n    public SpellingDialog(final Speller speller) {\n        this.speller = speller;\n        textPane = new FlowPane();\n        suggestions = new ListView<>();\n        correctedWords = new HashMap<>();\n        Button ignoreButton = new Button(LabelGrabber.INSTANCE.getLabel(\"ignore.text\"));\n        ignoreButton.setMaxWidth(Double.MAX_VALUE);\n        ignoreButton.setMinWidth(60);\n        ignoreButton.setOnAction(new EventHandler<ActionEvent>() {\n            @Override\n            public void handle(ActionEvent t) {\n                String replaceWord = wordsToCorrect.iterator().next();\n                speller.addIgnoreWord(replaceWord);\n                wordsToCorrect.remove(replaceWord);\n                nextWord();\n            }\n        });\n        Button addButton = new Button(LabelGrabber.INSTANCE.getLabel(\"add.text\"));\n        addButton.setMaxWidth(Double.MAX_VALUE);\n        addButton.setOnAction(new EventHandler<ActionEvent>() {\n            @Override\n            public void handle(ActionEvent t) {\n                String replaceWord = wordsToCorrect.iterator().next();\n                speller.addWord(replaceWord);\n                wordsToCorrect.remove(replaceWord);\n                nextWord();\n            }\n        });\n        Button correctButton = new Button(LabelGrabber.INSTANCE.getLabel(\"correct.text\"));\n        correctButton.setMaxWidth(Double.MAX_VALUE);\n        correctButton.setOnAction(new EventHandler<ActionEvent>() {\n            @Override\n            public void handle(ActionEvent t) {\n                String replaceWord = wordsToCorrect.iterator().next();\n                correctedWords.put(replaceWord, suggestions.getSelectionModel().getSelectedItem());\n                StringBuilder replaceText = new StringBuilder();\n                for(String line : area.getArea().getTextArea().getText().split(\"\\n\")) {\n                    if(new LineTypeChecker(line).getLineType() != Type.CHORDS) {\n                        line = line.replace(replaceWord, suggestions.getSelectionModel().getSelectedItem());\n                    }\n                    replaceText.append(line).append(\"\\n\");\n                }\n                area.getArea().getTextArea().replaceText(replaceText.toString().trim());\n                wordsToCorrect.remove(replaceWord);\n                nextWord();\n            }\n        });\n        correctButton.disableProperty().bind(suggestions.getSelectionModel().selectedItemProperty().isNull());\n        Button cancelButton = new Button(LabelGrabber.INSTANCE.getLabel(\"cancel.text\"));\n        cancelButton.setOnAction(new EventHandler<ActionEvent>() {\n            @Override\n            public void handle(ActionEvent t) {\n                dialogStage.hide();\n            }\n        });\n        dialogStage = new Stage();\n//        dialogStage.setResizable(false);\n        dialogStage.initModality(Modality.APPLICATION_MODAL);\n//        dialogStage.initStyle(StageStyle.UTILITY);\n        dialogStage.setTitle(LabelGrabber.INSTANCE.getLabel(\"spelling.check.title\"));\n        BorderPane mainPane = new BorderPane();\n        VBox rightPanel = new VBox(5);\n        rightPanel.setAlignment(Pos.CENTER);\n        BorderPane.setMargin(rightPanel, new Insets(10));\n        rightPanel.getChildren().add(ignoreButton);\n        rightPanel.getChildren().add(addButton);\n        rightPanel.getChildren().add(correctButton);\n        rightPanel.setFillWidth(true);\n        mainPane.setCenter(rightPanel);\n        HBox southPanel = new HBox();\n        southPanel.setAlignment(Pos.CENTER_RIGHT);\n        BorderPane.setMargin(southPanel, new Insets(5));\n        southPanel.getChildren().add(cancelButton);\n        mainPane.setBottom(southPanel);\n        VBox centrePanel = new VBox(10);\n        centrePanel.getChildren().add(textPane);\n        centrePanel.getChildren().add(suggestions);\n        mainPane.setLeft(centrePanel);\n        mainPane.setPadding(new Insets(5));\n        Scene scene = new Scene(mainPane, 300, 200);\n        if (QueleaProperties.get().getUseDarkTheme()) {\n            scene.getStylesheets().add(\"org/modena_dark.css\");\n        }\n        dialogStage.setScene(scene);\n    }\n\n    /**\n     * Run a check on a particular spell text area.\n     * <p/>\n     * @param area the area to use to correct the text.\n     */\n    public void check(SpellTextArea area) {\n        wordsToCorrect = speller.getMisspeltWords(area.getText());\n        if(wordsToCorrect.isEmpty()) {\n            return;\n        }\n        dialogStage.show();\n        this.area = area;\n        this.origText = area.getText();\n        correctedWords.clear();\n        nextWord();\n    }\n\n    /**\n     * Navigate to the next misspelt word, or break out if complete.\n     */\n    private void nextWord() {\n        if(wordsToCorrect.isEmpty()) {\n            dialogStage.hide();\n            area.updateSpelling(true);\n            Button ok = new Button(LabelGrabber.INSTANCE.getLabel(\"ok.button\"));\n            VBox.setMargin(ok, new Insets(10));\n            final Stage doneSpellingStage = new Stage();\n            doneSpellingStage.setTitle(LabelGrabber.INSTANCE.getLabel(\"complete.title\"));\n            ok.setOnAction(new EventHandler<ActionEvent>() {\n                @Override\n                public void handle(ActionEvent t) {\n                    doneSpellingStage.hide();\n                }\n            });\n            doneSpellingStage.initModality(Modality.WINDOW_MODAL);\n            VBox spellingBox = new VBox();\n            spellingBox.getChildren().add(new Label(LabelGrabber.INSTANCE.getLabel(\"spelling.complete.text\")));\n            spellingBox.getChildren().add(ok);\n            spellingBox.setAlignment(Pos.CENTER);\n            spellingBox.setPadding(new Insets(15));\n            Scene scene = new Scene(spellingBox);\n            if (QueleaProperties.get().getUseDarkTheme()) {\n                scene.getStylesheets().add(\"org/modena_dark.css\");\n            }\n            doneSpellingStage.setScene(scene);\n            doneSpellingStage.show();\n            return;\n        }\n        List<String> origPieces = Arrays.asList(Pattern.compile(Speller.SPELLING_REGEX, Pattern.UNICODE_CHARACTER_CLASS).split(origText));\n        String replaceWord = wordsToCorrect.iterator().next();\n        int index = origPieces.indexOf(replaceWord);\n        int lower = index - 6;\n        if(lower < 0) {\n            lower = 0;\n        }\n        int upper = index + 6;\n        if(upper > origPieces.size() - 1) {\n            upper = origPieces.size() - 1;\n        }\n        textPane.getChildren().clear();\n        textPane.getChildren().add(new Label(\"...\"));\n        for(String str : origPieces.subList(lower, upper + 1)) {\n            Text text = new Text(str + \" \");\n            text.getStyleClass().add(\"text\");\n            if(str.equals(replaceWord)) {\n                text.setFill(Color.RED);\n            }\n            textPane.getChildren().add(text);\n        }\n        textPane.getChildren().add(new Label(\"...\"));\n        suggestions.getItems().clear();\n        for(String suggestion : speller.getSuggestions(replaceWord)) {\n            suggestions.getItems().add(suggestion);\n        }\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/languages/spelling/Suggestion.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.languages.spelling;\n\nimport java.util.Objects;\n\n/**\n * A particular suggestion - wrapper of the suggestion and its Levenshtein\n * distance.\n * <p/>\n * @author Michael\n */\npublic class Suggestion implements Comparable<Suggestion> {\n\n    private String word;\n    private int distance;\n\n    /**\n     * Create a new suggestion.\n     * <p/>\n     * @param word the suggestion word.\n     * @param distance the distance from whatever the misspelt word was.\n     */\n    public Suggestion(String word, int distance) {\n        this.word = word;\n        this.distance = distance;\n    }\n\n    /**\n     * Get the suggestion word (string.)\n     * <p/>\n     * @return the suggestion word (string.)\n     */\n    public String getWord() {\n        return word;\n    }\n\n    /**\n     * Get the suggestion distance (levenshtein.)\n     * <p/>\n     * @return the suggestion distance (levenshtein.)\n     */\n    public int getDistance() {\n        return distance;\n    }\n\n    /**\n     * Compare to another suggestion - suggestions with a lower distance are\n     * ranked lower (sorted first.)\n     * <p/>\n     * @param o the other suggestion.\n     * @return 1 if this suggestion is greater than the other suggestion, 0 if\n     * they are equal, -1 if it is less than the other suggestion.\n     */\n    @Override\n    public int compareTo(Suggestion o) {\n        return Integer.compare(distance, o.distance);\n    }\n\n    @Override\n    public int hashCode() {\n        int hash = 5;\n        hash = 83 * hash + Objects.hashCode(this.word);\n        hash = 83 * hash + this.distance;\n        return hash;\n    }\n\n    @Override\n    public boolean equals(Object obj) {\n        if(obj == null) {\n            return false;\n        }\n        if(getClass() != obj.getClass()) {\n            return false;\n        }\n        final Suggestion other = (Suggestion) obj;\n        if(!Objects.equals(this.word, other.word)) {\n            return false;\n        }\n        if(this.distance != other.distance) {\n            return false;\n        }\n        return true;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/livetext/LiveTextDialog.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * (C) 2012 Michael Berry\n *\n * This program is free software: you can redistribute it and/or modify it under\n * the terms of the GNU General Public License as published by the Free Software\n * Foundation, either version 3 of the License, or (at your option) any later\n * version.\n *\n * This program is distributed in the hope that it will be useful, but WITHOUT\n * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\n * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License along with\n * this program. If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.livetext;\n\nimport javafx.event.ActionEvent;\nimport javafx.geometry.Insets;\nimport javafx.geometry.Pos;\nimport javafx.scene.Scene;\nimport javafx.scene.control.Button;\nimport javafx.scene.control.Label;\nimport javafx.scene.control.TextArea;\nimport javafx.scene.image.Image;\nimport javafx.scene.input.KeyCode;\nimport javafx.scene.input.KeyEvent;\nimport javafx.scene.layout.BorderPane;\nimport javafx.scene.layout.HBox;\nimport javafx.scene.layout.VBox;\nimport javafx.stage.Modality;\nimport javafx.stage.Stage;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.QueleaApp;\n\n/**\n * An input dialog for Live Text.\n *\n * @author Arvid\n */\npublic class LiveTextDialog extends Stage {\n\n    private static LiveTextDialog dialog;\n    private final TextArea textField;\n    private final Label messageLabel;\n    private final Button clear;\n    private int caretPosition;\n\n    /**\n     * Create our live text dialog.\n     */\n    public LiveTextDialog() {\n\n        initModality(Modality.APPLICATION_MODAL);\n        setResizable(false);\n        BorderPane mainPane = new BorderPane();\n        mainPane.setMaxSize(500, 300);\n        messageLabel = new Label();\n        BorderPane.setMargin(messageLabel, new Insets(5));\n        mainPane.setTop(messageLabel);\n        textField = new TextArea();\n        textField.setPrefColumnCount(5);\n        textField.setMinSize(250, 150);\n        textField.setWrapText(true);\n\n        // Update the text for each punctuation or space character\n        textField.setOnKeyTyped((KeyEvent event) -> {\n            if (event.getCharacter().matches(\"\\\\p{Blank}\") || event.getCharacter().matches(\"\\\\p{Punct}\")) {\n                event.consume();\n                textField.insertText(textField.getCaretPosition(), event.getCharacter());\n                setLiveText(textField.getText());\n            }\n        });\n\n        // Use ctrl + enter to clear the text\n        textField.addEventHandler(KeyEvent.KEY_RELEASED, (KeyEvent event) -> {\n            if (event.getCode().equals(KeyCode.ENTER) && event.isControlDown()) {\n                setLiveText(\"\");\n                textField.setText(\"\");\n            }\n        });\n\n        // Select section to display by clicking\n        textField.setOnMouseClicked(e -> {\n            setLiveText(textField.getText());\n        });\n\n        BorderPane.setMargin(textField, new Insets(5));\n        mainPane.setCenter(textField);\n        clear = new Button(LabelGrabber.INSTANCE.getLabel(\"clear.live.text\"));\n        clear.setDefaultButton(true);\n        clear.setOnAction((ActionEvent t) -> {\n            setLiveText(\"\");\n            textField.setText(\"\");\n        });\n\n        Button exit = new Button(LabelGrabber.INSTANCE.getLabel(\"exit.live.text\"));\n        exit.setOnAction((ActionEvent t) -> {\n            setLiveText(\"\");\n            dialog.close();\n        });\n\n        HBox okPane = new HBox(10);\n        VBox.setMargin(okPane, new Insets(10));\n        okPane.setAlignment(Pos.CENTER);\n        okPane.getChildren().add(clear);\n        okPane.getChildren().add(exit);\n        BorderPane.setMargin(okPane, new Insets(5));\n        BorderPane.setAlignment(okPane, Pos.CENTER);\n        mainPane.setBottom(okPane);\n        Scene scene = new Scene(mainPane);\n        if (QueleaProperties.get().getUseDarkTheme()) {\n            scene.getStylesheets().add(\"org/modena_dark.css\");\n        }\n        setScene(scene);\n    }\n\n    /**\n     * Display a dialog grabbing the user's input.\n     *\n     * @param message the message to display to the user on the dialog.\n     * @param title the title of the dialog.\n     * @return the user entered text.\n     */\n    public static String getUserInput(final String message, final String title) {\n        Utils.fxRunAndWait(() -> {\n            dialog = new LiveTextDialog();\n            dialog.setTitle(title);\n            dialog.textField.clear();\n            dialog.messageLabel.setText(message);\n            dialog.messageLabel.setWrapText(true);\n            dialog.getIcons().add(new Image(\"file:icons/live_text.png\"));\n            dialog.showAndWait();\n        });\n        while (dialog.isShowing()) {\n            try {\n                Thread.sleep(10);\n            } catch (InterruptedException ex) {\n            }\n        }\n        if (!dialog.isShowing()) {\n            QueleaApp.get().getMobileLyricsServer().setText(\"\");\n        }\n        return dialog.textField.getText();\n    }\n\n    /**\n     * Send text to Mobile Lyrics.\n     * @param text String to send to Mobile Lyrics.\n     */\n    private void setLiveText(String text) {\n        if (text.contains(\"\\n\\n\")) {\n            caretPosition = textField.getCaretPosition();\n            String[] slides = text.split(\"\\n\\n\");\n            int length = 0;\n            for (String slide : slides) {\n                length += slide.length();\n                if (caretPosition <= length) {\n                    text = slide;\n                    break;\n                }\n                length += 2;\n            }\n        }\n        if (text.length() > 200) {\n            text = text.substring(text.indexOf(\" \", text.length() - 200));\n        }\n        QueleaApp.get().getMobileLyricsServer().setText(text);\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/lucene/BibleSearchIndex.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.lucene;\n\nimport java.io.IOException;\nimport java.nio.file.Files;\nimport java.util.ArrayList;\nimport java.util.Collection;\nimport java.util.HashMap;\nimport java.util.List;\nimport java.util.Map;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport org.apache.lucene.analysis.Analyzer;\nimport org.apache.lucene.analysis.core.LowerCaseFilterFactory;\nimport org.apache.lucene.analysis.custom.CustomAnalyzer;\nimport org.apache.lucene.analysis.miscellaneous.ASCIIFoldingFilterFactory;\nimport org.apache.lucene.analysis.standard.StandardTokenizerFactory;\nimport org.apache.lucene.document.Document;\nimport org.apache.lucene.document.Field;\nimport org.apache.lucene.document.TextField;\nimport org.apache.lucene.index.DirectoryReader;\nimport org.apache.lucene.index.IndexWriter;\nimport org.apache.lucene.index.IndexWriterConfig;\nimport org.apache.lucene.index.Term;\nimport org.apache.lucene.queryparser.classic.ParseException;\nimport org.apache.lucene.queryparser.complexPhrase.ComplexPhraseQueryParser;\nimport org.apache.lucene.search.BooleanQuery;\nimport org.apache.lucene.search.IndexSearcher;\nimport org.apache.lucene.search.Query;\nimport org.apache.lucene.search.ScoreDoc;\nimport org.apache.lucene.search.TopScoreDocCollector;\nimport org.apache.lucene.store.Directory;\nimport org.apache.lucene.store.MMapDirectory;\nimport org.quelea.data.bible.BibleChapter;\nimport org.quelea.services.utils.LoggerUtils;\n\n/**\n * Search index used for indexing the bibles.\n * @author Michael\n */\npublic class BibleSearchIndex implements SearchIndex<BibleChapter> {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    private Analyzer analyzer;\n    private Directory index;\n    private Map<Integer, BibleChapter> chapters;\n\n    /**\n     * Create a new empty search index.\n     */\n    public BibleSearchIndex() {\n        chapters = new HashMap<>();\n        try {\n            analyzer = CustomAnalyzer.builder()\n                    .withTokenizer(StandardTokenizerFactory.class)\n                    .addTokenFilter(LowerCaseFilterFactory.class)\n                    .addTokenFilter(ASCIIFoldingFilterFactory.class)\n                    .build();\n            index = new MMapDirectory(Files.createTempDirectory(\"quelea-mmap-bible\").toAbsolutePath());\n        } catch (IOException ex) {\n            LOGGER.log(Level.SEVERE, \"Couldn't create song search index\");\n            throw new RuntimeException(\"Couldn't create song search index\", ex);\n        }\n    }\n    \n    @Override\n    public int size() {\n        return chapters.size();\n    }\n\n    /**\n     * Add a bible chapter to the index.\n     *\n     * @param chapter the chapter to add.\n     */\n    @Override\n    public void add(BibleChapter chapter) {\n        List<BibleChapter> list = new ArrayList<>();\n        list.add(chapter);\n        addAll(list);\n    }\n\n    /**\n     * Add a number of chapters to the index. This is much more efficient than\n     * calling add() repeatedly because it just uses one writer rather than\n     * opening and closing one for each individual operation.\n     *\n     * @param bibleList the list of chapters to add.\n     */\n    @Override\n    public void addAll(Collection<? extends BibleChapter> bibleList) {\n        try (IndexWriter writer = new IndexWriter(index, new IndexWriterConfig(analyzer))) {\n            for(BibleChapter chapter : bibleList) {\n                Document doc = new Document();\n                doc.add(new TextField(\"text\", chapter.getText(), Field.Store.NO));\n                doc.add(new TextField(\"number\", Integer.toString(chapter.getID()), Field.Store.YES));\n                writer.addDocument(doc);\n                chapters.put(chapter.getID(), chapter);\n                LOGGER.log(Level.FINE, \"Added bible chapter to index: {0}\", chapter.getID());\n            }\n        }\n        catch (IOException ex) {\n            LOGGER.log(Level.SEVERE, \"Couldn't add value to index\", ex);\n        }\n    }\n\n    /**\n     * Remove the given bible chapter from the index.\n     *\n     * @param chapter the chapter to remove.\n     */\n    @Override\n    public void remove(BibleChapter chapter) {\n        try (IndexWriter writer = new IndexWriter(index, new IndexWriterConfig(analyzer))) {\n            writer.deleteDocuments(new Term(\"number\", Integer.toString(chapter.getID())));\n        }\n        catch (IOException ex) {\n            LOGGER.log(Level.SEVERE, \"Couldn't remove value from index\", ex);\n        }\n    }\n\n    /**\n     * Update the given bible chapter in the index.\n     *\n     * @param chapter the chapter to update.\n     */\n    @Override\n    public void update(BibleChapter chapter) {\n        remove(chapter);\n        add(chapter);\n    }\n\n    /**\n     * Search for bible chapters that match the given filter.\n     *\n     * @param queryString the query string to filter.\n     * @param type ignored - may be null.\n     * @return a list of all bible chapters that match the given filter.\n     */\n    @Override\n    public BibleChapter[] filter(String queryString, FilterType type) {\n        String sanctifyQueryString = SearchIndexUtils.makeLuceneQuery(queryString);\n        if(chapters.isEmpty() || sanctifyQueryString.isEmpty()) {\n            return chapters.values().toArray(new BibleChapter[chapters.size()]);\n        }\n        List<BibleChapter> ret;\n        try (DirectoryReader dr = DirectoryReader.open(index)) {\n            IndexSearcher searcher = new IndexSearcher(dr);\n            BooleanQuery.setMaxClauseCount(Integer.MAX_VALUE);\n            Query q = new ComplexPhraseQueryParser(\"text\", analyzer).parse(sanctifyQueryString);\n            TopScoreDocCollector collector = TopScoreDocCollector.create(10000,10000);\n            searcher.search(q, collector);\n            ScoreDoc[] hits = collector.topDocs().scoreDocs;\n            ret = new ArrayList<>();\n            for(int i = 0; i < hits.length; ++i) {\n                int docId = hits[i].doc;\n                Document d = searcher.doc(docId);\n                BibleChapter chapter = chapters.get(Integer.parseInt(d.get(\"number\")));\n                ret.add(chapter);\n            }\n            return ret.toArray(new BibleChapter[ret.size()]);\n        }\n        catch (ParseException | IOException ex) {\n            LOGGER.log(Level.WARNING, \"Invalid query string: \" + sanctifyQueryString, ex);\n            return new BibleChapter[0];\n        }\n    }\n    \n    /**\n     * Remove everything from this index.\n     */\n    @Override\n    public void clear() {\n        SearchIndexUtils.clearIndex(index);\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/lucene/SearchIndex.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.lucene;\n\nimport java.util.Collection;\n\n/**\n * The top level interface for search indexes.\n *\n * @author Michael\n * @param <T> the type of class we want to search.\n */\npublic interface SearchIndex<T> {\n    /**\n     * Filter the songs based on the contents of the lyrics or the title.\n     */\n    enum FilterType {\n\n        TITLE, AUTHOR, BODY\n    }\n    \n    /**\n     * Add an item to this search index.\n     * @param t the item to add.\n     */\n    void add(T t);\n    \n    /**\n     * Add all of the items in this collection to this search index.\n     * @param t the collection of items to add.\n     */\n    void addAll(Collection<? extends T> t);\n    \n    /**\n     * Remove the given item from this search index.\n     * @param t the item to remove.\n     */\n    void remove(T t);\n    \n    /**\n     * Remove everything from the given search index.\n     */\n    void clear();\n    \n    /**\n     * Update the given item in this search index.\n     * @param t the item to update.\n     */\n    void update(T t);\n    \n    /**\n     * Get the number of entries in this search index.\n     * @return the number of entries in this search index.\n     */\n    int size();\n    \n    /**\n     * Get an array of results based on the given query string and filter type.\n     * FilterType may be ignored where appropriate.\n     * @param queryString the string on which the results should be queried.\n     * @param type the type to search.\n     * @return an array of results in the index that match the given query \n     * string and type.\n     */\n    T[] filter(String queryString, FilterType type);\n    \n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/lucene/SearchIndexUtils.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.lucene;\n\nimport java.io.IOException;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport java.util.regex.Pattern;\nimport org.apache.lucene.analysis.CharArraySet;\nimport org.apache.lucene.analysis.standard.StandardAnalyzer;\nimport org.apache.lucene.index.IndexWriter;\nimport org.apache.lucene.index.IndexWriterConfig;\nimport org.apache.lucene.store.Directory;\nimport org.quelea.services.utils.LoggerUtils;\n\n/**\n * General utility methods for search indexes.\n * <p/>\n * @author Michael\n */\npublic class SearchIndexUtils {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n\n    /**\n     * Don't make me...\n     */\n    private SearchIndexUtils() {\n        throw new AssertionError();\n    }\n\n    /**\n     * Clear the given index.\n     * <p/>\n     * @param index the index to clear.\n     */\n    public static void clearIndex(Directory index) {\n        try(IndexWriter writer = new IndexWriter(index, new IndexWriterConfig(new StandardAnalyzer(CharArraySet.EMPTY_SET)))) {\n            writer.deleteAll();\n            writer.commit();\n        }\n        catch(IOException ex) {\n            LOGGER.log(Level.SEVERE, \"Couldn't clear the index\", ex);\n        }\n    }\n\n    /**\n     * Sanitise the given query so it's \"lucene-safe\". Make sure it's what we\n     * want as well - treat as a phrase with a partial match for the last word.\n     * <p/>\n     * @param query the query to sanitise.\n     * @return the sanitised query.\n     */\n    public static String makeLuceneQuery(String query) {\n        query = Pattern.compile(\"[^\\\\w ]\", Pattern.UNICODE_CHARACTER_CLASS).matcher(query).replaceAll(\"\");\n//        query = QueryParserUtil.escape(query);\n        query = query.trim();\n        if(query.isEmpty()) {\n            return query;\n        }\n        if(query.contains(\" \")) {\n            query = \"\\\"\" + query + \"*\\\"\";\n        }\n        else {\n            query = query + \"*\";\n        }\n        return query;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/lucene/SongSearchIndex.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.lucene;\n\nimport java.io.IOException;\nimport java.nio.channels.ClosedByInterruptException;\nimport java.nio.file.Files;\nimport java.util.ArrayList;\nimport java.util.Collection;\nimport java.util.HashMap;\nimport java.util.List;\nimport java.util.Map;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport java.util.regex.Pattern;\nimport org.apache.lucene.analysis.Analyzer;\nimport org.apache.lucene.analysis.core.LowerCaseFilterFactory;\nimport org.apache.lucene.analysis.custom.CustomAnalyzer;\nimport org.apache.lucene.analysis.miscellaneous.ASCIIFoldingFilterFactory;\nimport org.apache.lucene.analysis.standard.StandardTokenizerFactory;\nimport org.apache.lucene.document.Document;\nimport org.apache.lucene.document.Field;\nimport org.apache.lucene.document.TextField;\nimport org.apache.lucene.index.DirectoryReader;\nimport org.apache.lucene.index.IndexWriter;\nimport org.apache.lucene.index.IndexWriterConfig;\nimport org.apache.lucene.index.Term;\nimport org.apache.lucene.queryparser.classic.ParseException;\nimport org.apache.lucene.queryparser.complexPhrase.ComplexPhraseQueryParser;\nimport org.apache.lucene.search.IndexSearcher;\nimport org.apache.lucene.search.Query;\nimport org.apache.lucene.search.ScoreDoc;\nimport org.apache.lucene.search.TopScoreDocCollector;\nimport org.apache.lucene.store.Directory;\nimport org.apache.lucene.store.MMapDirectory;\nimport org.apache.lucene.util.ThreadInterruptedException;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.services.utils.LoggerUtils;\n\n/**\n * The search index of songs.\n *\n * @author Michael\n */\npublic class SongSearchIndex implements SearchIndex<SongDisplayable> {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    private final Analyzer analyzer;\n    private final Directory index;\n    private final Map<Long, SongDisplayable> songs;\n\n    /**\n     * Create a new empty search index.\n     */\n    public SongSearchIndex() {\n        songs = new HashMap<>();\n        try {\n            analyzer = CustomAnalyzer.builder()\n                    .withTokenizer(StandardTokenizerFactory.class)\n                    .addTokenFilter(LowerCaseFilterFactory.class)\n                    .addTokenFilter(ASCIIFoldingFilterFactory.class)\n                    .build();\n            index = new MMapDirectory(Files.createTempDirectory(\"quelea-mmap-song\").toAbsolutePath());\n        }\n        catch(IOException ex) {\n            LOGGER.log(Level.SEVERE, \"Couldn't create song search index\");\n            throw new RuntimeException(\"Couldn't create song search index\", ex);\n        }\n    }\n\n    @Override\n    public int size() {\n        return songs.size();\n    }\n\n    /**\n     * Add a song to the index.\n     *\n     * @param song the song to add.\n     */\n    @Override\n    public void add(SongDisplayable song) {\n        List<SongDisplayable> songList = new ArrayList<>();\n        songList.add(song);\n        addAll(songList);\n    }\n\n    /**\n     * Add a number of songs to the index. This is much more efficient than\n     * calling add() repeatedly because it just uses one writer rather than\n     * opening and closing one for each individual operation.\n     *\n     * @param songList the song list to add.\n     */\n    @Override\n    public synchronized void addAll(Collection<? extends SongDisplayable> songList) {\n        Pattern p = Pattern.compile(\"[^\\\\w\\\\s]\", Pattern.UNICODE_CHARACTER_CLASS);\n        try (IndexWriter writer = new IndexWriter(index, new IndexWriterConfig(analyzer))) {\n            for (SongDisplayable song : songList) {\n                Document doc = new Document();\n                if (song.getTitle() != null) {\n                    doc.add(new TextField(\"title\", p.matcher(song.getTitle()).replaceAll(\"\"), Field.Store.NO));\n                }\n                if (song.getAuthor() != null) {\n                    doc.add(new TextField(\"author\", p.matcher(song.getAuthor()).replaceAll(\"\"), Field.Store.NO));\n                }\n                if (song.getLyrics(false, false, false) != null) {\n                    doc.add(new TextField(\"lyrics\", p.matcher(song.getLyrics(false, false, false)).replaceAll(\"\"), Field.Store.NO));\n                }\n                doc.add(new TextField(\"number\", p.matcher(Long.toString(song.getID())).replaceAll(\"\"), Field.Store.YES));\n                writer.addDocument(doc);\n                songs.put(song.getID(), song);\n                LOGGER.log(Level.FINE, \"Added song to index: {0}\", song.getTitle());\n            }\n        } catch (IOException ex) {\n            LOGGER.log(Level.SEVERE, \"Couldn't add value to index\", ex);\n        }\n    }\n\n    /**\n     * Remove the given song from the index.\n     *\n     * @param song the song to remove.\n     */\n    @Override\n    public synchronized void remove(SongDisplayable song) {\n        try (IndexWriter writer = new IndexWriter(index, new IndexWriterConfig(analyzer))) {\n            writer.deleteDocuments(new Term(\"number\", Long.toString(song.getID())));\n        } catch (IOException ex) {\n            LOGGER.log(Level.SEVERE, \"Couldn't remove value from index\", ex);\n        }\n    }\n\n    /**\n     * Update the given song in the index.\n     *\n     * @param song the song to update.\n     */\n    @Override\n    public void update(SongDisplayable song) {\n        remove(song);\n        add(song);\n    }\n\n    /**\n     * Get a song by its ID.\n     *\n     * @param id the id of the song.\n     * @return the song with the given id.\n     */\n    public synchronized SongDisplayable getByID(long id) {\n        return songs.get(id);\n    }\n\n    /**\n     * Search for songs that match the given filter.\n     *\n     * @param queryString the query to use to search.\n     * @param type TITLE or BODY, depending on what to search in. BODY is\n     * equivalent to the lyrics, TITLE the title.\n     * @return an array of songs that match the filter.\n     */\n    @Override\n    public synchronized SongDisplayable[] filter(String queryString, FilterType type) {\n        String sanctifyQueryString = SearchIndexUtils.makeLuceneQuery(queryString);\n        if (songs.isEmpty() || sanctifyQueryString.trim().isEmpty()) {\n            return songs.values().toArray(new SongDisplayable[songs.size()]);\n        }\n        String typeStr;\n        if (type == FilterType.BODY) {\n            typeStr = \"lyrics\";\n        } else if (type == FilterType.TITLE) {\n            typeStr = \"title\";\n        } else if (type == FilterType.AUTHOR) {\n            typeStr = \"author\";\n        } else {\n            LOGGER.log(Level.SEVERE, \"Unknown type: {0}\", type);\n            return new SongDisplayable[0];\n        }\n        List<SongDisplayable> ret;\n        try (DirectoryReader dr = DirectoryReader.open(index)) {\n            IndexSearcher searcher = new IndexSearcher(dr);\n            Query q = new ComplexPhraseQueryParser(typeStr, analyzer).parse(sanctifyQueryString);\n            TopScoreDocCollector collector = TopScoreDocCollector.create(1000,10000);\n            searcher.search(q, collector);\n            ScoreDoc[] hits = collector.topDocs().scoreDocs;\n            ret = new ArrayList<>();\n            for (int i = 0; i < hits.length; ++i) {\n                int docId = hits[i].doc;\n                Document d = searcher.doc(docId);\n                final Long songNumber = Long.parseLong(d.get(\"number\"));\n                SongDisplayable song = songs.get(songNumber);\n                ret.add(song);\n            }\n            if (type == FilterType.BODY) {\n                for (SongDisplayable song : filter(queryString, FilterType.TITLE)) {\n                    ret.remove(song);\n                }\n            }\n            return ret.toArray(new SongDisplayable[ret.size()]);\n        }\n        catch(ClosedByInterruptException|ThreadInterruptedException ex) {\n            //Ignore, thread is being shut down by other character being typed\n            return new SongDisplayable[0];\n        }\n        catch (ParseException | IOException ex) {\n            LOGGER.log(Level.WARNING, \"Invalid query string: \" + sanctifyQueryString, ex);\n            return new SongDisplayable[0];\n        }\n    }\n\n    /**\n     * Remove everything from this index.\n     */\n    @Override\n    public synchronized void clear() {\n        SearchIndexUtils.clearIndex(index);\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/notice/Notice.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.notice;\n\nimport java.util.Objects;\nimport javafx.scene.paint.Color;\nimport javafx.scene.text.Font;\nimport org.quelea.services.utils.SerializableColor;\nimport org.quelea.services.utils.SerializableFont;\nimport org.quelea.services.utils.Utils;\nimport org.w3c.dom.Node;\nimport org.w3c.dom.NodeList;\n\n/**\n * A notice to be displayed on the bottom of the main projection screen.\n *\n * @author Michael\n */\npublic class Notice {\n\n    private SerializableColor color;\n    private SerializableFont font;\n    private String text;\n    private int times;\n    private int originalDuration;\n    private long creationTime = 0;\n\n    /**\n     * Create a new notice.\n     *\n     * @param str the notice text.\n     * @param times the number of times to display the notice.\n     * @param color the font color.\n     * @param font the notice font.\n     */\n    public Notice(String str, int times, SerializableColor color, SerializableFont font) {\n        this.text = str;\n        this.times = times;\n        this.color = color;\n        this.font = font;\n        originalDuration = times;\n        if (creationTime == 0) {\n            creationTime = System.currentTimeMillis();\n        }\n    }\n\n    /**\n     * Copy attributes from one notice to this notice.\n     *\n     * @param other the other notice.\n     */\n    public void copyAttributes(Notice other) {\n        this.text = other.text;\n        this.times = other.times;\n        this.color = other.color;\n        this.font = other.font;\n    }\n\n    /**\n     * Get the notice text.\n     *\n     * @return the notice text.\n     */\n    public String getText() {\n        return text;\n    }\n\n    /**\n     * Get the number of times this notice should be displayed.\n     *\n     * @return the number of times this notice should be displayed.\n     */\n    public int getTimes() {\n        return times;\n    }\n\n    /**\n     * Decrement the times - call after the notice has been displayed once.\n     */\n    public void decrementTimes() {\n        times--;\n    }\n\n    /**\n     * Set the notice text.\n     *\n     * @param text the notice text.\n     */\n    public void setText(String text) {\n        this.text = text;\n    }\n\n    /**\n     * Get the time of creation.\n     *\n     * @return creation time of the notice-\n     */\n    public long getCreationTime() {\n        return creationTime;\n    }\n\n    /**\n     * Set the time of creation.\n     *\n     * @param time creation time as a long value.\n     */\n    public void setCreationTime(long time) {\n        creationTime = time;\n    }\n\n    /**\n     * Set the number of times this notice should display.\n     *\n     * @param times the number of times this notice should display.\n     */\n    public void setTimes(int times) {\n        this.times = times;\n        originalDuration = times;\n    }\n\n    public int getOriginalTimes() {\n        return originalDuration;\n    }\n\n    public SerializableColor getColor() {\n        return color;\n    }\n\n    public void setColor(SerializableColor color) {\n        this.color = color;\n    }\n\n    public SerializableFont getFont() {\n        return font;\n    }\n\n    public void setFont(SerializableFont font) {\n        this.font = font;\n    }\n\n    /**\n     * Convert to a string.\n     *\n     * @return the notice text.\n     */\n    public String toString() {\n        return text;\n    }\n\n    @Override\n    public int hashCode() {\n        int hash = 7;\n        hash = 11 * hash + Objects.hashCode(this.color);\n        hash = 11 * hash + Objects.hashCode(this.font);\n        hash = 11 * hash + Objects.hashCode(this.text);\n        hash = 11 * hash + this.times;\n        return hash;\n    }\n\n    @Override\n    public boolean equals(Object obj) {\n        if (obj == null) {\n            return false;\n        }\n        if (getClass() != obj.getClass()) {\n            return false;\n        }\n        final Notice other = (Notice) obj;\n        if (!Objects.equals(this.color, other.color)) {\n            return false;\n        }\n        if (!Objects.equals(this.font, other.font)) {\n            return false;\n        }\n        if (!Objects.equals(this.text, other.text)) {\n            return false;\n        }\n        if (this.times != other.times) {\n            return false;\n        }\n        return true;\n    }\n\n    /**\n     * Get the XML that forms this notice.\n     * <p>\n     * @return the XML.\n     */\n    public String getXML() {\n        StringBuilder ret = new StringBuilder();\n        ret.append(\"<notice>\");\n        ret.append(\"<text>\");\n        ret.append(Utils.escapeXML(text));\n        ret.append(\"</text>\");\n        ret.append(\"<duration>\");\n        int times = originalDuration;\n        if (times == Integer.MAX_VALUE) {\n            times = 0;\n        }\n        ret.append(times);\n        ret.append(\"</duration>\");\n        ret.append(\"<color>\");\n        ret.append(getColor().getColor());\n        ret.append(\"</color>\");\n        ret.append(\"<font>\");\n        ret.append(getFont().getFont().getName());\n        ret.append(\",\");\n        ret.append(getFont().getFont().getSize());\n        ret.append(\"</font>\");\n        ret.append(\"</notice>\");\n        return ret.toString();\n    }\n\n    /**\n     * Parse some XML representing this object and return the object it\n     * represents.\n     * <p>\n     * @param node the XML node representing this object.\n     * @return the object as defined by the XML.\n     */\n    public static Notice parseXML(Node node) {\n        NodeList list = node.getChildNodes();\n        String text = \"\";\n        int duration = 0;\n        String colorString = \"0xffffffff\";\n        String fontString = \"System Regular,50.0\";\n        for (int i = 0; i < list.getLength(); i++) {\n            switch (list.item(i).getNodeName()) {\n                case \"text\":\n                    text = list.item(i).getTextContent();\n                    break;\n                case \"duration\":\n                    duration = Integer.parseInt(list.item(i).getTextContent());\n                    if (duration == 0) {\n                        duration = Integer.MAX_VALUE;\n                    }\n                    break;\n                case \"color\":\n                    colorString = list.item(i).getTextContent();\n                    break;\n                case \"font\":\n                    fontString = list.item(i).getTextContent();\n                    break;\n            }\n        }\n\n        SerializableColor color = new SerializableColor(Color.web(colorString));\n        String[] fontTemp = fontString.split(\",\");\n        SerializableFont font = new SerializableFont(new Font(fontTemp[0], Double.parseDouble(fontTemp[1])));\n        return new Notice(text, duration, color, font);\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/notice/NoticeDialog.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.notice;\n\nimport java.io.File;\nimport java.util.ArrayList;\nimport java.util.HashSet;\nimport java.util.List;\nimport java.util.Set;\nimport javafx.application.Platform;\nimport javafx.beans.value.ChangeListener;\nimport javafx.beans.value.ObservableValue;\nimport javafx.collections.ListChangeListener;\nimport javafx.event.EventHandler;\nimport javafx.geometry.Insets;\nimport javafx.geometry.Pos;\nimport javafx.scene.Scene;\nimport javafx.scene.control.Button;\nimport javafx.scene.control.ListView;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.layout.BorderPane;\nimport javafx.scene.layout.VBox;\nimport javafx.scene.text.Text;\nimport javafx.stage.Stage;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.windows.main.DisplayCanvas;\n\n/**\n * The dialog used to manage the notices.\n * <p/>\n * @author Michael\n */\npublic class NoticeDialog extends Stage {\n\n    private Button newNoticeButton;\n    private Button removeNoticeButton;\n    private Button editNoticeButton;\n    private Button doneButton;\n    private ListView<Notice> noticeList;\n    private ListView<Notice> noticeTemplates;\n    private List<NoticeDrawer> noticeDrawers;\n    private final Text savedNoticesLabel;\n    private Thread noticeTemplatesUpdateThread;\n\n    /**\n     * Create a new notice dialog.\n     */\n    public NoticeDialog() {\n        BorderPane mainPane = new BorderPane();\n        getIcons().add(new Image(\"file:icons/info.png\"));\n        noticeDrawers = new ArrayList<>();\n        setTitle(LabelGrabber.INSTANCE.getLabel(\"notices.heading\"));\n        newNoticeButton = new Button(LabelGrabber.INSTANCE.getLabel(\"new.notice.text\"));\n        newNoticeButton.setAlignment(Pos.CENTER);\n        newNoticeButton.setOnAction(new EventHandler<javafx.event.ActionEvent>() {\n            @Override\n            public void handle(javafx.event.ActionEvent t) {\n                Notice notice = NoticeEntryDialog.getNotice(null, false);\n                if (notice != null) {\n                    noticeList.getItems().add(notice);\n                    for (NoticeDrawer drawer : noticeDrawers) {\n                        drawer.addNotice(notice);\n                    }\n                }\n            }\n        });\n        editNoticeButton = new Button(LabelGrabber.INSTANCE.getLabel(\"edit.notice.text\"));\n        editNoticeButton.setAlignment(Pos.CENTER);\n        editNoticeButton.setDisable(true);\n        editNoticeButton.setOnAction(new EventHandler<javafx.event.ActionEvent>() {\n            @Override\n            public void handle(javafx.event.ActionEvent t) {\n                Notice notice = NoticeEntryDialog.getNotice(noticeList.getSelectionModel().getSelectedItem(), false);\n                if (notice != null) {\n                    noticeList.getItems().add(notice);\n                    for (NoticeDrawer drawer : noticeDrawers) {\n                        drawer.addNotice(notice);\n                    }\n                }\n            }\n        });\n        removeNoticeButton = new Button(LabelGrabber.INSTANCE.getLabel(\"remove.notice.text\"));\n        removeNoticeButton.setAlignment(Pos.CENTER);\n        removeNoticeButton.setDisable(true);\n        removeNoticeButton.setOnAction(new EventHandler<javafx.event.ActionEvent>() {\n            @Override\n            public void handle(javafx.event.ActionEvent t) {\n                Notice notice = noticeList.getSelectionModel().getSelectedItem();\n                noticeList.getItems().remove(noticeList.getSelectionModel().getSelectedIndex());\n                for (NoticeDrawer drawer : noticeDrawers) {\n                    drawer.removeNotice(notice);\n                }\n            }\n        });\n        getNoticesFromFile();\n        VBox leftPanel = new VBox(5);\n        newNoticeButton.setMaxWidth(Double.MAX_VALUE);\n        editNoticeButton.setMaxWidth(Double.MAX_VALUE);\n        removeNoticeButton.setMaxWidth(Double.MAX_VALUE);\n        noticeTemplates.setMaxWidth(Double.MAX_VALUE);\n        savedNoticesLabel = new Text(LabelGrabber.INSTANCE.getLabel(\"saved.notices\"));\n        leftPanel.getChildren().add(newNoticeButton);\n        leftPanel.getChildren().add(editNoticeButton);\n        leftPanel.getChildren().add(removeNoticeButton);\n        leftPanel.getChildren().add(savedNoticesLabel);\n        leftPanel.getChildren().add(noticeTemplates);\n        BorderPane leftPanelBorder = new BorderPane();\n        BorderPane.setMargin(leftPanelBorder, new Insets(5));\n        leftPanelBorder.setTop(leftPanel);\n        mainPane.setLeft(leftPanelBorder);\n        savedNoticesLabel.getStyleClass().add(\"text\");\n\n        noticeList = new ListView<>();\n        noticeList.getSelectionModel().selectedItemProperty().addListener(new ChangeListener<Notice>() {\n            @Override\n            public void changed(ObservableValue<? extends Notice> ov, Notice t, Notice t1) {\n                boolean disable = noticeList.getSelectionModel().getSelectedItem() == null;\n                if (!noticeList.getItems().contains(noticeList.getSelectionModel().getSelectedItem())) {\n                    disable = true;\n                }\n                editNoticeButton.setDisable(disable);\n                removeNoticeButton.setDisable(disable);\n            }\n        });\n        noticeList.getItems().addListener(new ListChangeListener<Notice>() {\n            @Override\n            public void onChanged(ListChangeListener.Change<? extends Notice> change) {\n                boolean disable = noticeList.getSelectionModel().getSelectedItem() == null;\n                editNoticeButton.setDisable(disable);\n                removeNoticeButton.setDisable(disable);\n                if (disable) {\n                    noticeList.getSelectionModel().clearSelection();\n                }\n            }\n        });\n\n        mainPane.setCenter(noticeList);\n\n        noticeTemplates.setOnMouseClicked(e -> {\n            if (noticeTemplates.getSelectionModel().getSelectedItem() != null) {\n                Notice n = noticeTemplates.getSelectionModel().getSelectedItem();\n                n.setTimes(n.getOriginalTimes());\n                Notice notice = NoticeEntryDialog.getNotice(n, true);\n                if (notice != null && NoticeEntryDialog.closed) {\n                    noticeList.getItems().add(notice);\n                    for (NoticeDrawer drawer : noticeDrawers) {\n                        drawer.addNotice(notice);\n                    }\n                }\n                noticeTemplates.getSelectionModel().clearSelection();\n            }\n        });\n\n        doneButton = new Button(LabelGrabber.INSTANCE.getLabel(\"done.text\"), new ImageView(new Image(\"file:icons/tick.png\")));\n        doneButton.setOnAction(new EventHandler<javafx.event.ActionEvent>() {\n            @Override\n            public void handle(javafx.event.ActionEvent t) {\n                hide();\n            }\n        });\n        BorderPane.setAlignment(doneButton, Pos.CENTER);\n        BorderPane.setMargin(doneButton, new Insets(5));\n        mainPane.setBottom(doneButton);\n        Scene scene = new Scene(mainPane);\n        if (QueleaProperties.get().getUseDarkTheme()) {\n            scene.getStylesheets().add(\"org/modena_dark.css\");\n        }\n        setScene(scene);\n    }\n\n    /**\n     * Called when the notice status has updated, i.e. it's removed or the\n     * counter is decremented.\n     */\n    public void noticesUpdated() {\n        Notice selected = noticeList.getSelectionModel().getSelectedItem();\n        noticeList.getItems().clear();\n        Set<Notice> noticesSet = new HashSet<>();\n        for (NoticeDrawer drawer : noticeDrawers) {\n            noticesSet.addAll(drawer.getNotices());\n        }\n        for (Notice notice : noticesSet) {\n            noticeList.getItems().add(notice);\n        }\n        NoticeEntryDialog.noticesUpdated(noticesSet);\n        noticeList.getSelectionModel().select(selected);\n    }\n\n    /**\n     * Register a canvas to be updated using this notice dialog.\n     * <p/>\n     * @param canvas the canvas to register.\n     */\n    public void registerCanvas(DisplayCanvas canvas) {\n        noticeDrawers.add(canvas.getNoticeDrawer());\n    }\n\n    /**\n     * Get the list of stored notices.\n     * @return list of notice templates\n     */\n    public ListView<Notice> getTemplates() {\n        return noticeTemplates;\n    }\n\n    /**\n     * Read the stored notice files and add them to the list.\n     */\n    private void getNoticesFromFile() {\n        noticeTemplates = new ListView<>();\n        final File[] files = new File(QueleaProperties.get().getNoticeDir().getAbsolutePath()).listFiles();\n        if (noticeTemplatesUpdateThread != null && noticeTemplatesUpdateThread.isAlive()) {\n            return;\n        }\n        noticeTemplatesUpdateThread = new Thread() {\n            @Override\n            public void run() {\n                if (files != null) {\n                    for (final File file : files) {\n                        Platform.runLater(() -> {\n                            Notice n = NoticeFileHandler.noticeFromFile(file);\n                            if (n != null) {\n                                noticeTemplates.getItems().add(n);\n                            }\n                        });\n                    }\n                }\n            }\n        };\n        noticeTemplatesUpdateThread.start();\n    }\n\n}"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/notice/NoticeDrawer.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.notice;\n\nimport java.util.ArrayList;\nimport java.util.Collections;\nimport java.util.List;\nimport javafx.animation.FadeTransition;\nimport javafx.animation.KeyFrame;\nimport javafx.animation.KeyValue;\nimport javafx.animation.Timeline;\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport javafx.geometry.Pos;\nimport javafx.scene.layout.HBox;\nimport javafx.scene.layout.StackPane;\nimport javafx.scene.shape.Rectangle;\nimport javafx.scene.text.Text;\nimport javafx.util.Duration;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.windows.main.DisplayCanvas;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.utils.FXFontMetrics;\n\n/**\n * Responsible for drawing the notice animation on a particular canvas.\n * <p/>\n * @author Michael\n */\npublic class NoticeDrawer {\n    \n    public enum NoticePosition {\n        \n        TOP(\"top\"), BOTTOM(\"bottom\");\n    \n        private String text;\n        \n        NoticePosition(String text) {\n            this.text = text;\n        }\n        \n        public String getText() {\n            return text;\n        }\n    }\n\n    private static final double BACKGROUND_OPACITY = 0.6;\n    private static final double BACKGROUND_FADE_DURATION = 0.5;\n    private NoticeOverlay overlay;\n    private DisplayCanvas canvas;\n    private List<Notice> notices;\n    private boolean playing;\n    private Rectangle backing;\n\n    /**\n     * Create a new notice drawer.\n     * <p/>\n     * @param canvas the canvas to draw on.\n     */\n    public NoticeDrawer(DisplayCanvas canvas) {\n        this.canvas = canvas;\n        notices = Collections.synchronizedList(new ArrayList<Notice>());\n        overlay = new NoticeOverlay();\n        playing = false;\n    }\n\n    public NoticeOverlay getOverlay() {\n        return overlay;\n    }\n\n    /**\n     * Add a given notice.\n     * <p/>\n     * @param notice the notice to add.\n     */\n    public synchronized void addNotice(Notice notice) {\n        notices.add(notice);\n        playNotices();\n    }\n\n    private void playNotices() {\n        canvas.ensureNoticesVisible(); //Shouldn't need this, but guards against any cases where the notice overlay may have been removed.\n        if (!playing) {\n            playing = true;\n            final List<Notice> oldNotices = new ArrayList<>();\n            if (notices.isEmpty()) {\n                return;\n            }\n            oldNotices.add(notices.get(0));\n            final HBox textGroup = new HBox(notices.get(0).getFont().getFont().getSize() * 2);\n            final StringBuilder builder = new StringBuilder();\n            for (int i = 0; i < oldNotices.size(); i++) {\n                Notice notice = oldNotices.get(i);\n                builder.append(notice.getText());\n                Text noticeText = new Text(notice.getText());\n                noticeText.setFill(notice.getColor().getColor());\n                noticeText.setFont(notice.getFont().getFont());\n                textGroup.getChildren().add(noticeText);\n            }\n            FXFontMetrics metrics = new FXFontMetrics(oldNotices.get(0).getFont().getFont());\n            double displayWidth = QueleaApp.get().getProjectionWindow().getWidth();\n            double width = metrics.computeStringWidth(builder.toString()) + textGroup.getSpacing() * (notices.size() - 1);\n            if (QueleaProperties.get().getNoticePosition()==NoticePosition.BOTTOM) {\n                StackPane.setAlignment(overlay, Pos.BOTTOM_CENTER);\n                overlay.setAlignment(Pos.BOTTOM_CENTER);\n                textGroup.setAlignment(Pos.BOTTOM_LEFT);\n            } else {\n                StackPane.setAlignment(overlay, Pos.TOP_CENTER);\n                overlay.setAlignment(Pos.TOP_CENTER);\n                textGroup.setAlignment(Pos.TOP_LEFT);\n            }\n            if (!overlay.getChildren().contains(backing)) {\n                backing = new Rectangle(displayWidth, metrics.getLineHeight()+5, QueleaProperties.get().getNoticeBackgroundColour());\n                backing.setOpacity(0);\n                overlay.getChildren().add(backing);\n                FadeTransition fadeTrans = new FadeTransition(Duration.seconds(BACKGROUND_FADE_DURATION), backing);\n                fadeTrans.setFromValue(0);\n                fadeTrans.setToValue(BACKGROUND_OPACITY);\n                fadeTrans.play();\n            }\n            double excessWidth = width - displayWidth;\n            double stopPoint = -width;\n            if (excessWidth <= 0) {\n                textGroup.setTranslateX(displayWidth);\n            } else {\n                stopPoint += excessWidth / 2;\n                textGroup.setTranslateX(displayWidth + excessWidth / 2);\n            }\n            overlay.getChildren().add(textGroup);\n            Timeline timeline = new Timeline(25);\n            timeline.getKeyFrames().add(new KeyFrame(Duration.ZERO, new KeyValue(textGroup.translateXProperty(), textGroup.getTranslateX())));\n            double baseDuration = 30.0/QueleaProperties.get().getNoticeSpeed();\n            if (excessWidth <= 0) {\n                timeline.getKeyFrames().add(new KeyFrame(Duration.seconds(baseDuration), new KeyValue(textGroup.translateXProperty(), 0)));\n                timeline.getKeyFrames().add(new KeyFrame(Duration.seconds(baseDuration + baseDuration / (displayWidth / width)), new KeyValue(textGroup.translateXProperty(), stopPoint)));\n            } else {\n                timeline.getKeyFrames().add(new KeyFrame(Duration.seconds(baseDuration), new KeyValue(textGroup.translateXProperty(), excessWidth / 2)));\n                timeline.getKeyFrames().add(new KeyFrame(Duration.seconds(baseDuration + baseDuration / (displayWidth / width)), new KeyValue(textGroup.translateXProperty(), stopPoint)));\n            }\n            timeline.play();\n            timeline.setOnFinished(new EventHandler<ActionEvent>() {\n                @Override\n                public void handle(ActionEvent t) {\n                    playing = false;\n                    overlay.getChildren().remove(textGroup);\n                    for (int i = notices.size() - 1; i >= 0; i--) {\n                        Notice notice = notices.get(i);\n                        if (oldNotices.contains(notice)) {\n                            notice.decrementTimes();\n                        }\n                        if (notice.getTimes() == 0) {\n                            notices.remove(notice);\n                        }\n                    }\n                    QueleaApp.get().getMainWindow().getNoticeDialog().noticesUpdated();\n                    if (!notices.isEmpty()) {\n                        playNotices();\n                    } else {\n                        FadeTransition fadeTrans = new FadeTransition(Duration.seconds(BACKGROUND_FADE_DURATION), backing);\n                        fadeTrans.setFromValue(BACKGROUND_OPACITY);\n                        fadeTrans.setToValue(0);\n                        fadeTrans.play();\n                        fadeTrans.setOnFinished(new EventHandler<ActionEvent>() {\n                            @Override\n                            public void handle(ActionEvent t) {\n                                overlay.getChildren().remove(backing);\n                            }\n                        });\n                    }\n                }\n            });\n        }\n    }\n\n    /**\n     * Remove a given notice.\n     * <p/>\n     * @param notice notice to remove.\n     */\n    public synchronized void removeNotice(Notice notice) {\n        notices.remove(notice);\n    }\n\n    /**\n     * Get all the notices.\n     * <p/>\n     * @return a list of all the notices.\n     */\n    public synchronized List<Notice> getNotices() {\n        return new ArrayList<>(notices);\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/notice/NoticeEntryDialog.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.notice;\n\nimport java.util.Collections;\nimport java.util.Set;\nimport javafx.beans.value.ObservableValue;\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport javafx.geometry.Insets;\nimport javafx.geometry.Pos;\nimport javafx.scene.Scene;\nimport javafx.scene.control.Button;\nimport javafx.scene.control.CheckBox;\nimport javafx.scene.control.ColorPicker;\nimport javafx.scene.control.ComboBox;\nimport javafx.scene.control.Label;\nimport javafx.scene.control.TextField;\nimport javafx.scene.control.Tooltip;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.layout.BorderPane;\nimport javafx.scene.layout.GridPane;\nimport javafx.scene.layout.HBox;\nimport javafx.scene.layout.Priority;\nimport javafx.scene.paint.Color;\nimport javafx.scene.text.Font;\nimport javafx.scene.text.FontPosture;\nimport javafx.scene.text.FontWeight;\nimport javafx.stage.Modality;\nimport javafx.stage.Stage;\nimport org.javafx.dialog.Dialog;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.SerializableColor;\nimport org.quelea.services.utils.SerializableFont;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.windows.main.widgets.NumberSpinner;\nimport org.quelea.windows.newsong.FontSelectionDialog;\n\n/**\n * The entry dialog for creating a notice.\n * <p/>\n * @author Michael\n */\npublic class NoticeEntryDialog extends Stage {\n\n    private static FontSelectionDialog fontSelectionDialog;\n    private final ComboBox<String> fontSelection;\n    private final Button fontExpandButton;\n    private static NoticeEntryDialog dialog;\n    private TextField text;\n    private NumberSpinner times;\n    private ColorPicker colourPicker;\n    private CheckBox infinite;\n    private Button addButton;\n    private Button cancelButton;\n    private Button saveButton;\n    private final Button deleteButton;\n    private Notice notice;\n    private boolean noticeRemoved;\n    private boolean template = false;\n    public static boolean closed = false;\n\n    /**\n     * Create a new notice entry dialog.\n     */\n    public NoticeEntryDialog() {\n        setTitle(LabelGrabber.INSTANCE.getLabel(\"new.notice.heading\"));\n        initModality(Modality.APPLICATION_MODAL);\n        setResizable(false);\n        getIcons().add(new Image(\"file:icons/info.png\"));\n        colourPicker = new ColorPicker(Color.WHITE);\n        colourPicker.setStyle(\"-fx-color-label-visible: false ;\");\n        if (fontSelectionDialog == null) {\n            fontSelectionDialog = new FontSelectionDialog();\n        }\n        fontSelection = new ComboBox<>();\n        fontSelection.setMaxWidth(Integer.MAX_VALUE);\n        fontSelection.getItems().addAll(fontSelectionDialog.getChosenFonts());\n        Collections.sort(fontSelection.getItems());\n        HBox.setHgrow(fontSelection, Priority.ALWAYS);\n        fontExpandButton = new Button(\"...\");\n        fontExpandButton.setTooltip(new Tooltip(LabelGrabber.INSTANCE.getLabel(\"more.fonts.label\") + \"...\"));\n        Utils.setToolbarButtonStyle(fontExpandButton);\n        fontExpandButton.setOnAction((ActionEvent t) -> {\n            fontSelectionDialog.showAndWait();\n            String selected = fontSelection.getSelectionModel().getSelectedItem();\n            fontSelection.getItems().clear();\n            fontSelection.getItems().addAll(fontSelectionDialog.getChosenFonts());\n            Collections.sort(fontSelection.getItems());\n            fontSelection.getSelectionModel().select(selected);\n        });\n        HBox fontBox = new HBox(5);\n        fontBox.getChildren().add(fontSelection);\n        fontBox.getChildren().add(fontExpandButton);\n\n        text = new TextField();\n        text.textProperty().addListener((ObservableValue<? extends String> ov, String t, String t1) -> {\n            addButton.setDisable(t1.trim().isEmpty());\n            saveButton.setDisable(t1.trim().isEmpty());\n        });\n        times = new NumberSpinner(1, 1);\n        infinite = new CheckBox();\n        infinite.selectedProperty().addListener((ObservableValue<? extends Boolean> ov, Boolean t, Boolean t1) -> {\n            times.setDisable(infinite.isSelected());\n        });\n\n        GridPane mainPanel = new GridPane();\n        mainPanel.setHgap(5);\n        mainPanel.setVgap(5);\n\n        Label noticeText = new Label(LabelGrabber.INSTANCE.getLabel(\"notice.text\"));\n        GridPane.setConstraints(noticeText, 0, 0);\n        mainPanel.getChildren().add(noticeText);\n        GridPane.setConstraints(text, 1, 0);\n        mainPanel.getChildren().add(text);\n\n        Label noticeTimesText = new Label(LabelGrabber.INSTANCE.getLabel(\"notice.times.text\"));\n        GridPane.setConstraints(noticeTimesText, 0, 1);\n        mainPanel.getChildren().add(noticeTimesText);\n        GridPane.setConstraints(times, 1, 1);\n        mainPanel.getChildren().add(times);\n\n        Label noticeInfiniteText = new Label(LabelGrabber.INSTANCE.getLabel(\"notice.infinite.question\"));\n        GridPane.setConstraints(noticeInfiniteText, 0, 2);\n        mainPanel.getChildren().add(noticeInfiniteText);\n        GridPane.setConstraints(infinite, 1, 2);\n        mainPanel.getChildren().add(infinite);\n\n        Label noticeColorText = new Label(LabelGrabber.INSTANCE.getLabel(\"notice.colour.text\"));\n        GridPane.setConstraints(noticeColorText, 0, 3);\n        mainPanel.getChildren().add(noticeColorText);\n        GridPane.setConstraints(colourPicker, 1, 3);\n        mainPanel.getChildren().add(colourPicker);\n\n        Label noticeFontText = new Label(LabelGrabber.INSTANCE.getLabel(\"notice.font.text\"));\n        GridPane.setConstraints(noticeFontText, 0, 4);\n        mainPanel.getChildren().add(noticeFontText);\n        GridPane.setConstraints(fontBox, 1, 4);\n        mainPanel.getChildren().add(fontBox);\n\n        HBox southPanel = new HBox();\n        addButton = new Button(LabelGrabber.INSTANCE.getLabel(\"add.notice.button\"), new ImageView(new Image(\"file:icons/tick.png\")));\n        addButton.setDefaultButton(true);\n        addButton.setOnAction(new EventHandler<javafx.event.ActionEvent>() {\n            @Override\n            public void handle(javafx.event.ActionEvent t) {\n                if (template) {\n                    notice = null;\n                }\n                addNotice(false);\n                hide();\n                closed = true;\n            }\n        });\n        southPanel.getChildren().add(addButton);\n        cancelButton = new Button(LabelGrabber.INSTANCE.getLabel(\"cancel.text\"), new ImageView(new Image(\"file:icons/cross.png\")));\n        cancelButton.setOnAction(new EventHandler<javafx.event.ActionEvent>() {\n            @Override\n            public void handle(javafx.event.ActionEvent t) {\n                notice = null;\n                hide();\n                closed = true;\n            }\n        });\n        southPanel.getChildren().add(cancelButton);\n        saveButton = new Button(LabelGrabber.INSTANCE.getLabel(\"save.add.notice.button\"), new ImageView(new Image(\"file:icons/filesave.png\")));\n        saveButton.setOnAction(new EventHandler<javafx.event.ActionEvent>() {\n            @Override\n            public void handle(javafx.event.ActionEvent t) {\n                addNotice(true);\n                hide();\n                closed = true;\n            }\n        });\n        southPanel.getChildren().add(saveButton);\n        deleteButton = new Button(LabelGrabber.INSTANCE.getLabel(\"delete.notice.button\"), new ImageView(new Image(\"file:icons/removedb.png\")));\n        deleteButton.setOnAction(e -> {\n            QueleaApp.get().getMainWindow().getNoticeDialog().getTemplates().getItems().remove(notice);\n            NoticeFileHandler.deleteNotice(notice);\n            notice = null;\n            hide();\n            closed = true;\n        });\n        southPanel.getChildren().add(deleteButton);\n        southPanel.setSpacing(5);\n        southPanel.setAlignment(Pos.CENTER);\n        BorderPane.setMargin(southPanel, new Insets(5));\n\n        BorderPane mainPane = new BorderPane();\n        BorderPane.setMargin(mainPanel, new Insets(5));\n        mainPane.setCenter(mainPanel);\n        mainPane.setBottom(southPanel);\n        Scene scene = new Scene(mainPane);\n        if (QueleaProperties.get().getUseDarkTheme()) {\n            scene.getStylesheets().add(\"org/modena_dark.css\");\n        }\n        setScene(scene);\n    }\n\n    private void setNoticeRemoved() {\n        noticeRemoved = true;\n    }\n\n    /**\n     * Show the notice.\n     * @param save true if notice should be saved, false otherwise\n     */\n    private void addNotice(boolean save) {\n        int numberTimes;\n        if (infinite.isSelected()) {\n            numberTimes = Integer.MAX_VALUE;\n        } else {\n            numberTimes = times.getNumber();\n        }\n        boolean edit = true;\n        if (notice == null) {\n            edit = false;\n            notice = new Notice(text.getText(), numberTimes, new SerializableColor(colourPicker.getValue()), new SerializableFont(Font.font(fontSelection.getValue(), FontWeight.NORMAL, FontPosture.REGULAR, QueleaProperties.get().getNoticeFontSize())));\n        } else {\n            notice.setText(text.getText());\n            notice.setTimes(numberTimes);\n            notice.setColor(new SerializableColor(colourPicker.getValue()));\n            notice.setFont(new SerializableFont(Font.font(fontSelection.getValue(), FontWeight.NORMAL, FontPosture.REGULAR, QueleaProperties.get().getNoticeFontSize())));\n        }\n        if (save) {\n            NoticeFileHandler.saveNotice(notice);\n            if (template) {\n                QueleaApp.get().getMainWindow().getNoticeDialog().getTemplates().getItems().set(QueleaApp.get().getMainWindow().getNoticeDialog().getTemplates().getSelectionModel().getSelectedIndex(), notice);\n            } else if (!QueleaApp.get().getMainWindow().getNoticeDialog().getTemplates().getItems().contains(notice)) {\n                QueleaApp.get().getMainWindow().getNoticeDialog().getTemplates().getItems().add(notice);\n            }\n            edit = false;\n        }\n        if (edit && noticeRemoved) {\n            Dialog.buildConfirmation(LabelGrabber.INSTANCE.getLabel(\"notice.expired.title\"), LabelGrabber.INSTANCE.getLabel(\"notice.expired.text\")).addYesButton(new EventHandler<ActionEvent>() {\n                @Override\n                public void handle(ActionEvent t) {\n                }\n            }).addNoButton(new EventHandler<ActionEvent>() {\n                @Override\n                public void handle(ActionEvent t) {\n                    notice = null;\n                }\n            }).build().showAndWait();\n        } else if (edit) {\n            notice = null;\n        }\n    }\n\n    /**\n     * Get the notice text.\n     * <p/>\n     * @return the notice text.\n     */\n    public String getNoticeText() {\n        return text.getText();\n    }\n\n    /**\n     * Get the number of times remaining (Integer.MAX_VALUE) if infinite.\n     * <p/>\n     * @return the number of times remaining (Integer.MAX_VALUE) if infinite.\n     */\n    public int getTimes() {\n        if (infinite.isSelected()) {\n            return Integer.MAX_VALUE;\n        }\n        return (int) times.getNumber();\n    }\n\n    /**\n     * Set the dialog to show the given notice.\n     * <p/>\n     * @param notice the notice to show.\n     */\n    private void setNotice(Notice notice, boolean template) {\n        this.template = template;\n        closed = false;\n        deleteButton.setVisible(template);\n        this.notice = notice;\n        if (notice == null) {\n            infinite.setSelected(false);\n            times.setNumber(1);\n            text.setText(\"\");\n            colourPicker.setValue(Color.WHITE);\n            colourPicker.fireEvent(new ActionEvent());\n            fontSelection.setValue(\"Arial\");\n            addButton.setText(LabelGrabber.INSTANCE.getLabel(\"add.notice.button\"));\n            addButton.setDisable(true);\n            saveButton.setDisable(true);\n        } else {\n            infinite.setSelected(notice.getTimes() == Integer.MAX_VALUE);\n            if (!infinite.isSelected()) {\n                times.setNumber(notice.getTimes());\n            }\n            text.setText(notice.getText());\n            colourPicker.setValue(notice.getColor().getColor());\n            colourPicker.fireEvent(new ActionEvent());\n            fontSelection.setValue(notice.getFont().getFont().getFamily());\n            if (!template) {\n                addButton.setText(LabelGrabber.INSTANCE.getLabel(\"edit.notice.button\"));\n            } else {\n                addButton.setText(LabelGrabber.INSTANCE.getLabel(\"add.notice.button\"));\n                saveButton.setText(LabelGrabber.INSTANCE.getLabel(\"save.add.notice.button\"));\n            }\n        }\n    }\n\n    /**\n     * Get a notice that the user enters.\n     * <p/>\n     * @param existing any existing notice to fill the dialog with.\n     * @param template if the notice is loaded from a template\n     * @return the user-entered notice.\n     */\n    public static Notice getNotice(Notice existing, boolean template) {\n        if (dialog == null) {\n            dialog = new NoticeEntryDialog();\n        }\n        dialog.noticeRemoved = false;\n        dialog.setNotice(existing, template);\n        dialog.text.requestFocus();\n        dialog.showAndWait();\n        return dialog.notice;\n    }\n\n    public static void noticesUpdated(Set<Notice> noticeSet) {\n        if (dialog != null && dialog.notice != null && !noticeSet.contains(dialog.notice)) {\n            dialog.setNoticeRemoved();\n        }\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/notice/NoticeFileHandler.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.notice;\n\nimport java.io.BufferedReader;\nimport java.io.BufferedWriter;\nimport java.io.ByteArrayInputStream;\nimport java.io.File;\nimport java.io.FileInputStream;\nimport java.io.FileOutputStream;\nimport java.io.IOException;\nimport java.io.InputStream;\nimport java.io.InputStreamReader;\nimport java.io.OutputStreamWriter;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport javax.xml.parsers.DocumentBuilder;\nimport javax.xml.parsers.DocumentBuilderFactory;\nimport javax.xml.parsers.ParserConfigurationException;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.w3c.dom.Document;\nimport org.w3c.dom.Node;\nimport org.xml.sax.SAXException;\n\n/**\n *\n * @author Arvid\n */\nclass NoticeFileHandler {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n\n    /**\n     * Method to save the notice as a file.\n     *\n     * @param notice the notice to save\n     */\n    static void saveNotice(Notice notice) {\n        String fileName = QueleaProperties.get().getNoticeDir().getAbsolutePath() + \"/\" + notice.getCreationTime() + \".qnf\";\n        File f = new File(fileName);\n        try {\n            if (!f.exists()) {\n                f.createNewFile();\n            }\n            try (BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(f), \"UTF-8\"))) {\n                bw.write(notice.getXML());\n            }\n        } catch (IOException ex) {\n            LoggerUtils.getLogger().log(Level.WARNING, \"Could not save notice to file\");\n        }\n    }\n\n    static boolean deleteNotice(Notice notice) {\n        String fileName = QueleaProperties.get().getNoticeDir().getAbsolutePath() + \"/\" + notice.getCreationTime() + \".qnf\";\n        File f = new File(fileName);\n        return f.delete();\n    }\n\n    /**\n     * Method to load the notice from a file\n     * <p/>\n     * @param f the file to load the notice from\n     * @return the notice if the operation was successful, null otherwise.\n     */\n    static Notice noticeFromFile(File f) {\n        if (f.isFile()) {\n            try {\n                StringBuilder contentsBuilder;\n                try (BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream(f)))) {\n                    contentsBuilder = new StringBuilder();\n                    String line;\n                    while ((line = br.readLine()) != null) {\n                        contentsBuilder.append(line).append('\\n');\n                    }\n                }\n                String contents = contentsBuilder.toString();\n                contents = contents.replace(new String(new byte[]{11}), \"\\n\");\n                contents = contents.replace(new String(new byte[]{-3}), \" \");\n                InputStream strInputStream = new ByteArrayInputStream(contents.getBytes(\"UTF-8\"));\n\n                DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();\n                DocumentBuilder builder = factory.newDocumentBuilder();\n                Document doc = builder.parse(strInputStream); //Read from our \"bodged\" stream.\n                Node node = doc.getFirstChild();\n                Notice notice = Notice.parseXML(node);\n                try {\n                    notice.setCreationTime(Long.parseLong(f.getName().replaceAll(\".qnf\", \"\")));\n                } catch (NumberFormatException e) {\n                    LOGGER.log(Level.WARNING, \"Error getting notice file name\", e);\n                }\n                return notice;\n            } catch (IOException | ParserConfigurationException | SAXException e) {\n                LOGGER.log(Level.WARNING, \"Error grabbing notice from file\", e);\n                return null;\n            }\n\n        } else {\n            LOGGER.log(Level.WARNING, \"Can't get notice from folder: {0}\", f.getAbsolutePath());\n            return null;\n        }\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/notice/NoticeOverlay.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * Copyright (C) 2012 Michael Berry\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.notice;\n\nimport javafx.geometry.Pos;\nimport javafx.scene.layout.StackPane;\nimport org.quelea.services.notice.NoticeDrawer.NoticePosition;\nimport org.quelea.services.utils.QueleaProperties;\n\n/**\n * The notice overlay, just used for displaying any notice text that might\n * appear. Little more than a stack pane at present.\n * <p/>\n * @author Michael\n */\npublic class NoticeOverlay extends StackPane {\n\n    public NoticeOverlay() {\n        if (QueleaProperties.get().getNoticePosition()==NoticePosition.TOP) {\n            StackPane.setAlignment(this, Pos.BOTTOM_CENTER);\n            setAlignment(Pos.BOTTOM_CENTER);\n        } else {\n            StackPane.setAlignment(this, Pos.TOP_CENTER);\n            setAlignment(Pos.TOP_CENTER);\n        }\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/print/PDFPrinter.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.print;\n\nimport java.io.ByteArrayInputStream;\nimport java.io.ByteArrayOutputStream;\nimport java.io.File;\nimport java.io.FileOutputStream;\nimport java.io.IOException;\nimport java.io.InputStream;\nimport java.net.URI;\nimport java.net.URISyntaxException;\nimport java.nio.charset.StandardCharsets;\nimport javax.xml.transform.Result;\nimport javax.xml.transform.Transformer;\nimport javax.xml.transform.TransformerException;\nimport javax.xml.transform.TransformerFactory;\nimport javax.xml.transform.sax.SAXResult;\nimport javax.xml.transform.stream.StreamSource;\nimport org.apache.avalon.framework.configuration.Configuration;\nimport org.apache.avalon.framework.configuration.ConfigurationException;\nimport org.apache.avalon.framework.configuration.DefaultConfigurationBuilder;\nimport org.apache.fop.apps.FOUserAgent;\nimport org.apache.fop.apps.Fop;\nimport org.apache.fop.apps.FopFactory;\nimport org.apache.fop.apps.FopFactoryBuilder;\nimport org.xml.sax.SAXException;\nimport org.xml.sax.helpers.DefaultHandler;\n\n/**\n * Responsible for printing to PDF (using xml and xslt.)\n *\n * @author Michael\n */\npublic class PDFPrinter {\n\n    private static FopFactory fopFactory;\n    private static FopFactoryBuilder builder;\n    private static FOUserAgent foUserAgent;\n    private static TransformerFactory tranFactory;\n\n    /**\n     * Print a PDF file.\n     *\n     * @param xml the content to use for printing.\n     * @param xsltfile the stylesheet to use for printing.\n     * @param pdfFile the file to print to.\n     * @throws IOException if anything goes wrong.\n     */\n    @SuppressWarnings(\"unchecked\")\n    public void print(String xml, File xsltfile, File pdfFile) throws IOException {\n        try {\n            InputStream stream = new ByteArrayInputStream(xml.getBytes(StandardCharsets.UTF_8));\n            StreamSource source = new StreamSource(stream);\n            StreamSource transformSource = new StreamSource(xsltfile);\n            DefaultConfigurationBuilder cfgBuilder = new DefaultConfigurationBuilder();\n            Configuration cfg = cfgBuilder.buildFromFile(new File(\"fopcfg.xml\"));\n\n            if (builder == null) {\n                builder = new FopFactoryBuilder(new URI(\".\"));\n                builder.setConfiguration(cfg);\n                fopFactory = builder.build();\n                foUserAgent = fopFactory.newFOUserAgent();\n                tranFactory = TransformerFactory.newInstance();\n            }\n\n            ByteArrayOutputStream outStream = new ByteArrayOutputStream();\n            Transformer xslfoTransformer = tranFactory.newTransformer(transformSource);\n\n            Fop fop = fopFactory.newFop(\"application/pdf\", foUserAgent, outStream);\n            Result res = new SAXResult((DefaultHandler) fop.getDefaultHandler());\n            xslfoTransformer.transform(source, res);\n\n            try (FileOutputStream str = new FileOutputStream(pdfFile)) {\n                str.write(outStream.toByteArray());\n            }\n        } catch (IOException | URISyntaxException | TransformerException | ConfigurationException | SAXException ex) {\n            throw new IOException(\"Error printing to PDF\", ex);\n        }\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/print/Printer.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.print;\n\nimport java.io.File;\nimport java.io.IOException;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport org.quelea.data.Schedule;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.utils.DesktopApi;\n\n/**\n * Used for printing.\n * @author Michael\n */\npublic class Printer {\n\n    private static volatile Printer instance;\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n\n    /**\n     * Create the printer.\n     */\n    private Printer() {\n        //Internal only\n    }\n\n    /**\n     * Get the singleton instance of this class.\n     * @return the singleton instance.\n     */\n    public static Printer getInstance() {\n        if (instance == null) {\n            synchronized (Printer.class) {\n                if (instance == null) {\n                    instance = new Printer();\n                }\n            }\n        }\n        return instance;\n    }\n    \n    public void print(SongDisplayable song) {\n        try {\n            File temp = File.createTempFile(song.getTitle(), \".pdf\");\n            temp.deleteOnExit();\n            SongPDFPrinter.INSTANCE.print(song, temp, false);\n            DesktopApi.print(temp);\n        } catch (IOException ex) {\n            LOGGER.log(Level.SEVERE, \"Couldn't print song\", ex);\n        }\n    }\n    \n    public void print(Schedule schedule) {\n        try {\n            File temp = File.createTempFile(\"schedule\", \".pdf\");\n            temp.deleteOnExit();\n            new SchedulePDFPrinter().print(schedule, temp);\n            DesktopApi.print(temp);\n        } catch (IOException ex) {\n            LOGGER.log(Level.SEVERE, \"Couldn't print song\", ex);\n        }\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/print/SchedulePDFPrinter.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.print;\n\nimport java.io.File;\nimport java.io.IOException;\nimport org.quelea.data.Schedule;\n\n/**\n * Responsible for exporting a schedule to a PDF file.\n *\n * @author Michael\n */\npublic class SchedulePDFPrinter extends PDFPrinter {\n    \n    public void print(Schedule schedule, File pdfFile) throws IOException {\n        print(schedule.getPrintXML(), new File(\"scheduleformat.xsl\"), pdfFile);\n    }\n    \n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/print/SongPDFPrinter.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.print;\n\nimport java.io.File;\nimport java.io.IOException;\nimport org.quelea.data.displayable.SongDisplayable;\n\n/**\n * Responsible for exporting a song to a PDF file.\n *\n * @author Michael\n */\npublic class SongPDFPrinter extends PDFPrinter {\n\n    public static SongPDFPrinter INSTANCE = new SongPDFPrinter();\n\n    private SongPDFPrinter() {\n    }\n\n    public void print(SongDisplayable song, File pdfFile, boolean includeTranslations) throws IOException {\n        print(song.getPrintXML(includeTranslations), new File(\"songformat.xsl\"), pdfFile);\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/utils/AparapiLevenshteinDistance.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.utils;\n\nimport com.aparapi.Kernel;\nimport com.aparapi.device.Device;\nimport com.aparapi.internal.kernel.KernelManager;\nimport java.util.ArrayList;\nimport java.util.Arrays;\nimport java.util.LinkedHashSet;\nimport java.util.List;\n\n/**\n *\n * @author Michael\n */\npublic class AparapiLevenshteinDistance {\n\n    public int leastCompare(String s1, String[] s2) {\n        String[] arr = new String[s2.length];\n        Arrays.fill(arr,s1);\n\n        int[] results = compare(arr, s2);\n        int min = Integer.MAX_VALUE;\n\n        for(int val : results) {\n            if(val < min) {\n                val = min;\n            }\n        }\n        return min;\n\n    }\n\n    public int[] compare(String[] s1, String[] s2) {\n\n        if(s1.length != s2.length) {\n            throw new IllegalArgumentException(\"Array lengths must be equal!\");\n        }\n\n        final int[] result = new int[s1.length];\n        ArrStart s1Box = toIntArr(s1);\n        final int[] s1Arr = s1Box.arr;\n        final int[] s1Starts = s1Box.starts;\n        final int[] s1Lengths = lengths(s1);\n        ArrStart s2Box = toIntArr(s2);\n        final int[] s2Arr = s2Box.arr;\n        final int[] s2Starts = s2Box.starts;\n        final int[] s2Lengths = lengths(s2);\n\n        final int[] dumpPositions = getDumpPositions(s1, s2);\n        int dumpSize = getDumpSize(s1, s2);\n\n//        System.out.println(dumpSize);\n\n        final int[] dump = new int[dumpSize]; //Yeah...\n        Kernel kernel = new Kernel() {\n            @Override\n            public void run() {\n                result[getGlobalId()] = ld(s1Arr, s2Arr, s1Starts[getGlobalId()], s2Starts[getGlobalId()], s1Lengths[getGlobalId()], s2Lengths[getGlobalId()], dumpPositions[getGlobalId()]);\n            }\n\n            public int ld(int[] s, int[] t, int sStart, int tStart, int sLength, int tLength, int dumpOffset) {\n                int i; // iterates through s\n                int j; // iterates through t\n                int s_i; // ith character of s\n                int t_j; // jth character of t\n                int cost; // cost\n\n                if(sLength == 0) {\n                    return tLength;\n                }\n                if(tLength == 0) {\n                    return sLength;\n                }\n                int firstSize = sLength + 1;\n\n                for(i = 0; i <= sLength; i++) {\n                    dump[dumpOffset + (firstSize * i + 0)] = i;\n                }\n\n                for(j = 0; j <= tLength; j++) {\n                    dump[dumpOffset + (firstSize * 0 + j)] = j;\n                }\n\n                for(i = 1; i <= sLength; i++) {\n                    s_i = s[sStart + (i - 1)];\n                    for(j = 1; j <= tLength; j++) {\n                        t_j = t[tStart + (j - 1)];\n                        cost = s_i == t_j ? 0 : 1;\n                        int a = dump[dumpOffset + (firstSize * (i - 1) + j)] + 1;\n                        int b = dump[dumpOffset + (firstSize * i + (j - 1))] + 1;\n                        int c = dump[dumpOffset + (firstSize * (i - 1) + (j - 1))] + cost;\n\n                        int mi = a;\n                        if(b < mi) {\n                            mi = b;\n                        }\n                        if(c < mi) {\n                            mi = c;\n                        }\n                        dump[dumpOffset + (firstSize * i + j)] = mi;\n                    }\n                }\n                return dump[dumpOffset + (firstSize * sLength + tLength)];\n            }\n        };\n        KernelManager km = KernelManager.instance();\n        km.setDefaultPreferredDevices(new LinkedHashSet<>(Arrays.asList(new Device[] {km.bestDevice()})));\n        kernel.execute(s1.length);\n        return result;\n    }\n\n    private int[] getDumpPositions(String[] s1, String[] s2) {\n        int[] ret = new int[s1.length];\n        for(int i = 0; i < s1.length; i++) {\n            int prev;\n            if(i == 0) {\n                prev = 0;\n            }\n            else {\n                prev = ret[i - 1];\n            }\n            ret[i] = prev + (s1[i].length() + 2) * (s2[i].length() + 2);\n\n        }\n        return ret;\n    }\n\n    private int getDumpSize(String[] s1, String[] s2) {\n        int size = 0;\n        for(int i = 0; i < s1.length; i++) {\n            size += (s1[i].length() + 2) * (s2[i].length() + 2);\n\n        }\n        return size;\n    }\n\n    private static class ArrStart {\n\n        public int[] arr;\n        public int[] starts;\n    }\n\n    private ArrStart toIntArr(String[] strArr) {\n        ArrStart ret = new ArrStart();\n        List<Integer> starts = new ArrayList<>();\n        List<Integer> arr = new ArrayList<>();\n        int i = 0;\n        for(String str : strArr) {\n            starts.add(i);\n            for(int character : str.toCharArray()) {\n                arr.add(character);\n                i++;\n            }\n        }\n        ret.arr = toPrimitiveInt(arr);\n        ret.starts = toPrimitiveInt(starts);\n        return ret;\n    }\n\n    private int[] toPrimitiveInt(List<Integer> list) {\n        int[] ret = new int[list.size()];\n        for(int i = 0; i < list.size(); i++) {\n            ret[i] = list.get(i);\n        }\n        return ret;\n    }\n\n    private int[] lengths(String[] arr) {\n        int[] ret = new int[arr.length];\n        for(int i = 0; i < arr.length; i++) {\n            ret[i] = arr[i].length();\n        }\n        return ret;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/utils/Cancellable.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.utils;\n\n/**\n * An interface for something that can be cancelled.\n * @author Michael\n */\npublic interface Cancellable {\n    \n    /**\n     * Cancel the task.\n     */\n    void cancelOp();\n    \n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/utils/DatabaseListener.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.utils;\n\n/**\n * The update method on this interface should be called whenever the database has updated.\n * @author Michael\n */\npublic interface DatabaseListener {\n\n    /**\n     * Signifies that the database has been updated.\n     */\n    void databaseChanged();\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/utils/FileFilters.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.utils;\n\nimport javafx.stage.FileChooser;\nimport org.quelea.services.languages.LabelGrabber;\n\n/**\n * A class that contains all the file filters as a number of static final\n * fields.\n * <p/>\n * @author Michael\n */\npublic final class FileFilters {\n\n    /**\n     * The file filter used for the survivor songbooks.\n     */\n    public static final FileChooser.ExtensionFilter SURVIVOR_SONGBOOK = new FileChooser.ExtensionFilter(LabelGrabber.INSTANCE.getLabel(\"filefilters.description.survivor.songbook\") + \" (acetates.pdf)\", \"acetates.pdf\");\n    /**\n     * The file filter used for the sunday plus files.\n     */\n    public static final FileChooser.ExtensionFilter SUNDAY_PLUS = new FileChooser.ExtensionFilter(LabelGrabber.INSTANCE.getLabel(\"filefilters.description.sunday.plus\") + \" (*.ptf)\", \"*.ptf\");\n    /**\n     * Accept XML bbibles.\n     */\n    public static final FileChooser.ExtensionFilter XML_BIBLE = new FileChooser.ExtensionFilter(LabelGrabber.INSTANCE.getLabel(\"filefilters.description.xml.bibles\") + \" (*.xml, *.xmm)\", \"*.xml\", \"*.xmm\");\n    /**\n     * Accept XML easyslide files.\n     */\n    public static final FileChooser.ExtensionFilter XML_EASYSLIDES = new FileChooser.ExtensionFilter(LabelGrabber.INSTANCE.getLabel(\"filefilters.description.xml.easyslide\") + \" (*.xml)\", \"*.xml\");\n    /**\n     * Accept openlyrics XML files.\n     */\n    public static final FileChooser.ExtensionFilter XML_OPENLYRICS = new FileChooser.ExtensionFilter(LabelGrabber.INSTANCE.getLabel(\"filefilters.description.xml.openlyrics\") + \" (*.xml)\", \"*.xml\");\n    /**\n     * Accept generic XML files.\n     */\n    public static final FileChooser.ExtensionFilter XML_GENERIC = new FileChooser.ExtensionFilter(LabelGrabber.INSTANCE.getLabel(\"filefilters.description.xml.files\") + \" (*.xml)\", \"*.xml\");\n    /**\n     * Accept generic PDF files.\n     */\n    public static final FileChooser.ExtensionFilter PDF_GENERIC = new FileChooser.ExtensionFilter(LabelGrabber.INSTANCE.getLabel(\"filefilters.description.pdf.files\") + \" (*.pdf)\", \"*.pdf\");\n    /**\n     * Accept video files.\n     */\n    public static final FileChooser.ExtensionFilter VIDEOS = new FileChooser.ExtensionFilter(LabelGrabber.INSTANCE.getLabel(\"filefilters.description.video.files\"), Utils.getFileExtensions(Utils.getVideoExtensions()));\n    /**\n     * Accept video files.\n     */\n    public static final FileChooser.ExtensionFilter IMAGE_VIDEOS = new FileChooser.ExtensionFilter(LabelGrabber.INSTANCE.getLabel(\"filefilters.description.image.video.files\"), Utils.getFileExtensions(Utils.getImageAndVideoExtensions()));\n    /**\n     * Accept audio files.\n     */\n    public static final FileChooser.ExtensionFilter AUDIOS = new FileChooser.ExtensionFilter(LabelGrabber.INSTANCE.getLabel(\"filefilters.description.audio.files\"), Utils.getFileExtensions(Utils.getAudioExtensions()));\n    /**\n     * Accept powerpoint files.\n     */\n    public static final FileChooser.ExtensionFilter POWERPOINT = new FileChooser.ExtensionFilter(LabelGrabber.INSTANCE.getLabel(\"filefilters.description.powerpoint.presentations\") + \" (*.ppt, *.pptx)\", \"*.ppt\", \"*.pptx\");\n    /**\n     * Only accept images.\n     */\n    public static final FileChooser.ExtensionFilter IMAGES = new FileChooser.ExtensionFilter(LabelGrabber.INSTANCE.getLabel(\"image.files.description\"), Utils.getFileExtensions(Utils.getImageExtensions()));\n    /**\n     * Only accept timers.\n     */\n    public static final FileChooser.ExtensionFilter TIMERS = new FileChooser.ExtensionFilter(LabelGrabber.INSTANCE.getLabel(\"timer.files.description\") +  \"(*.cdt)\", \"*.cdt\");\n    /**\n     * Only accept png files.\n     */\n    public static final FileChooser.ExtensionFilter PNG = new FileChooser.ExtensionFilter(LabelGrabber.INSTANCE.getLabel(\"png.files.description\"), \"*.png\");\n    /**\n     * Only accept png files.\n     */\n    public static final FileChooser.ExtensionFilter RTF = new FileChooser.ExtensionFilter(LabelGrabber.INSTANCE.getLabel(\"rtf.files.description\"), \"*.rtf\");\n    /**\n     * Only accept SDB (songpro database) files.\n     */\n    public static final FileChooser.ExtensionFilter SDB = new FileChooser.ExtensionFilter(LabelGrabber.INSTANCE.getLabel(\"sdb.files.description\"), \"*.sdb\", \"*.spdb\");\n    /**\n     * The file filter used for Quelea song packs.\n     */\n    public static final FileChooser.ExtensionFilter SONG_PACK = new FileChooser.ExtensionFilter(LabelGrabber.INSTANCE.getLabel(\"qsp.button\") + \" (*.qsp)\", \"*.qsp\");\n    /**\n     * The file filter used for SongBeamer songs.\n     */\n    public static final FileChooser.ExtensionFilter SNG = new FileChooser.ExtensionFilter(LabelGrabber.INSTANCE.getLabel(\"sng.files.description\") + \" (*.sng)\", \"*.sng\");\n    /**\n     * The file filter used for Quelea schedules.\n     */\n    public static final FileChooser.ExtensionFilter SCHEDULE = new FileChooser.ExtensionFilter(LabelGrabber.INSTANCE.getLabel(\"filefilters.description.quelea.schedules\"), \"*.\" + QueleaProperties.get().getScheduleExtension());\n    /**\n     * The file filter used for plain text files.\n     */\n    public static final FileChooser.ExtensionFilter PLAIN_TEXT = new FileChooser.ExtensionFilter(LabelGrabber.INSTANCE.getLabel(\"filefilters.description.plain.text.song\"), \"*.txt\");\n    /**\n     * The file filter used for zip files.\n     */\n    public static final FileChooser.ExtensionFilter ZIP = new FileChooser.ExtensionFilter(LabelGrabber.INSTANCE.getLabel(\"filefilters.description.zip.files\") + \" (*.zip)\", \"*.zip\");\n    /**\n     * The file filter used for txt files.\n     */\n    public static final FileChooser.ExtensionFilter TXT = new FileChooser.ExtensionFilter(LabelGrabber.INSTANCE.getLabel(\"filefilters.description.txt.files\") + \" (*.txt)\", \"*.txt\");\n    /**\n     * The file filter used for csv files.\n     */\n    public static final FileChooser.ExtensionFilter CSV = new FileChooser.ExtensionFilter(LabelGrabber.INSTANCE.getLabel(\"filefilters.description.csv.files\") + \" (*.csv)\", \"*.csv\");\n    /**\n     * The file filter used for SQLite files.\n     */\n    public static final FileChooser.ExtensionFilter SQLITE = new FileChooser.ExtensionFilter(LabelGrabber.INSTANCE.getLabel(\"filefilters.description.sqlite.files\") + \" (*.sqlite)\", \"*.sqlite\");\n    /**\n     * The file filter used for Presentation Manager songs.\n     */\n    public static final FileChooser.ExtensionFilter PM_SONG = new FileChooser.ExtensionFilter(LabelGrabber.INSTANCE.getLabel(\"filefilters.description.pmsong.files\") + \" (*.sng)\", \"*.sng\");\n    /**\n     * The file filter used for VideoPsalm databases.\n     */\n    public static final FileChooser.ExtensionFilter VS_DB = new FileChooser.ExtensionFilter(LabelGrabber.INSTANCE.getLabel(\"filefilters.description.vs.files\") + \" (*.json)\", \"*.json\");\n    /**\n     * The file filter used for MainTable.dat.\n     */\n    public static final FileChooser.ExtensionFilter MAINTABLE_DAT = new FileChooser.ExtensionFilter(LabelGrabber.INSTANCE.getLabel(\"filefilters.description.maintable.dat\") + \" (MainTable.dat)\", \"MainTable.dat\");\n    /**\n     * The file filter used for ProPresenter songs.\n     */\n    public static final FileChooser.ExtensionFilter PROPRESENTER = new FileChooser.ExtensionFilter(LabelGrabber.INSTANCE.getLabel(\"filefilters.description.propresenter\") + \" (*.pro4, *.pro5, *.pro6)\", \"*.pro4\", \"*.pro5\", \"*.pro6\");\n    /**\n     * The file filter used for Songs.MB (the easyworship database.)\n     */\n    public static final FileChooser.ExtensionFilter SONGS_MB = new FileChooser.ExtensionFilter(LabelGrabber.INSTANCE.getLabel(\"filefilters.description.songs.mb\") + \" (Songs.MB)\", \"Songs.MB\", \"Songs.db\");\n    /**\n     * The file filter used for the mission praise importer.\n     */\n    public static final FileChooser.ExtensionFilter MISSION_PRAISE_RTF = new FileChooser.ExtensionFilter(LabelGrabber.INSTANCE.getLabel(\"filefilters.description.songs.missionpraise\") + \" (*.rtf)\", \"*.rtf\", \"*.rtf'\");\n    /**\n     * The file filter used for the Worshiphymn  importer.\n     */\n    public static final FileChooser.ExtensionFilter WORSHIP_HYMN_MDB = new FileChooser.ExtensionFilter(LabelGrabber.INSTANCE.getLabel(\"filefilters.description.songs.worshiphim\") + \" (*.mdb)\", \"*.mdb\");\n    /**\n     * The file filter used for *.epc (the epicworship songpack.)\n     */\n    public static final FileChooser.ExtensionFilter EPC = new FileChooser.ExtensionFilter(LabelGrabber.INSTANCE.getLabel(\"filefilters.description.epc\") + \" (*.epc)\", \"*.epc\");\n    /**\n     * Accept multimedia files.\n     */\n    public static final FileChooser.ExtensionFilter MULTIMEDIA = new FileChooser.ExtensionFilter(LabelGrabber.INSTANCE.getLabel(\"filefilters.description.multimedia.files\"), Utils.getFileExtensions(Utils.getMultimediaExtensions()));\n    \n\n    /**\n     * No instantiation for me thanks.\n     */\n    private FileFilters() {\n        throw new AssertionError();\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/utils/FontInstaller.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n *  * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.utils;\n\nimport java.awt.Font;\nimport java.awt.FontFormatException;\nimport java.awt.GraphicsEnvironment;\nimport java.io.File;\nimport java.io.FileInputStream;\nimport java.io.IOException;\nimport java.nio.file.Files;\nimport java.nio.file.Path;\nimport java.nio.file.Paths;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\n\n/**\n * Registers the Quelea bundled fonts with the JVM.\n *\n * @author Michael\n */\npublic class FontInstaller {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n\n    /**\n     * Register the bundled fonts.\n     */\n    public void setupBundledFonts() {\n        GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();\n        try {\n            Files.list(Paths.get(\"icons\", \"bundledfonts\")).forEach((Path path) -> {\n                File file = path.toFile();\n                if (file.getName().toLowerCase().endsWith(\"otf\") || file.getName().toLowerCase().endsWith(\"ttf\")) {\n                    try {\n                        javafx.scene.text.Font fxFont;\n                        try (FileInputStream fis = new FileInputStream(file.getAbsoluteFile())) {\n                            fxFont = javafx.scene.text.Font.loadFont(fis, 72);\n                        }\n                        if (fxFont == null) {\n                            LOGGER.log(Level.WARNING, \"Couldn't load font {0}\", file.getAbsolutePath());\n                        }\n                        boolean geSuccess = ge.registerFont(Font.createFont(Font.TRUETYPE_FONT, file));\n                        if (geSuccess && fxFont != null) {\n                            LOGGER.log(Level.INFO, \"Loaded bundled font {0}\", file.getAbsolutePath());\n                        }\n                    } catch (FontFormatException | IOException ex) {\n                        LOGGER.log(Level.WARNING, \"Couldn't load font \" + file.getAbsolutePath(), ex);\n                    }\n                }\n            });\n        } catch (IOException ex) {\n            LOGGER.log(Level.WARNING, \"Couldn't load fonts\", ex);\n        }\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/utils/GStreamerInitState.java",
    "content": "package org.quelea.services.utils;\n\npublic class GStreamerInitState {\n\n    public static boolean INIT_SUCCESS = false;\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/utils/GStreamerUtils.java",
    "content": "package org.quelea.services.utils;\n\nimport com.sun.jna.Platform;\nimport com.sun.jna.platform.win32.Kernel32;\nimport org.freedesktop.gstreamer.PluginFeature;\nimport org.freedesktop.gstreamer.Registry;\n\nimport java.io.File;\nimport java.nio.file.Files;\nimport java.nio.file.Path;\nimport java.util.ArrayList;\nimport java.util.List;\nimport java.util.Objects;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport java.util.stream.Stream;\n\nimport static java.lang.System.getenv;\n\npublic class GStreamerUtils {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n\n    private GStreamerUtils() {\n    }\n\n    /**\n     * Sometimes the default plugin priorities cause issues on some systems.\n     * <p>\n     * This method will reorganise plugin priorities for maximum compatibility.\n     * It can be overridden by various properties defined in quelea.properties.\n     */\n    public static void setFeaturePriorities() {\n        if (QueleaProperties.get().getDisableDirectShowForWVC1()) {\n            try (var feature = Registry.get().lookupFeature(\"dshowvdec_wvc1\")) {\n                if (feature != null) {\n                    feature.setRank(PluginFeature.Rank.NONE.intValue());\n                }\n            }\n        }\n    }\n\n    /**\n     * Configures paths to the GStreamer libraries. On Windows queries various\n     * GStreamer environment variables, and then sets up the PATH environment\n     * variable. On macOS, adds the location to jna.library.path (macOS binaries\n     * link to each other). On both, the gstreamer.path system property can be\n     * used to override. On Linux, assumes GStreamer is in the path already.\n     */\n    public static void configurePaths() {\n        System.setProperty(\"jna.debug_load\", \"true\");\n        if (Platform.isWindows()) {\n            LOGGER.log(Level.INFO, \"Detected Windows\");\n            String gstPath = System.getProperty(\"gstreamer.path\", findWindowsLocation());\n            LOGGER.log(Level.INFO, \"gst path is \" + gstPath);\n            if (!gstPath.isEmpty()) {\n                String systemPath = getenv(\"PATH\");\n                if (systemPath == null || systemPath.trim().isEmpty()) {\n                    Kernel32.INSTANCE.SetEnvironmentVariable(\"PATH\", gstPath);\n                } else {\n                    Kernel32.INSTANCE.SetEnvironmentVariable(\"PATH\", gstPath + File.pathSeparator + systemPath);\n                }\n            }\n        } else if (Platform.isMac()) {\n            LOGGER.log(Level.INFO, \"Detected Mac OS\");\n            String gstPath = System.getProperty(\"gstreamer.path\", \"/Library/Frameworks/GStreamer.framework/Libraries/\");\n            LOGGER.log(Level.INFO, \"gst path is \" + gstPath);\n            if (!gstPath.isEmpty()) {\n                String jnaPath = System.getProperty(\"jna.library.path\", \"\").trim();\n                if (jnaPath.isEmpty()) {\n                    System.setProperty(\"jna.library.path\", gstPath);\n                } else {\n                    System.setProperty(\"jna.library.path\", jnaPath + File.pathSeparator + gstPath);\n                }\n            }\n        } else if (getenv(\"SNAP\") != null) {\n            LOGGER.log(Level.INFO, \"Detected Snap Linux\");\n            System.setProperty(\"jna.tmpdir\", System.getProperty(\"java.io.tmpdir\"));\n\n            String gstPath = new File(getenv(\"SNAP\"), System.getProperty(\"gstreamer.path\", \"/usr/lib/x86_64-linux-gnu/\")).getAbsolutePath();\n            LOGGER.log(Level.INFO, \"gst path is \" + gstPath);\n\n            if (!gstPath.isEmpty()) {\n                String jnaPath = System.getProperty(\"jna.library.path\", \"\").trim();\n                LOGGER.log(Level.INFO, \"JNA path is: \" + jnaPath);\n                if (jnaPath.isEmpty()) {\n                    System.setProperty(\"jna.library.path\", gstPath);\n                    LOGGER.log(Level.INFO, \"JNA path was empty, is now: \" + System.getProperty(\"jna.library.path\"));\n                } else {\n                    System.setProperty(\"jna.library.path\", jnaPath + File.pathSeparator + gstPath);\n                    LOGGER.log(Level.INFO, \"JNA path is now: \" + System.getProperty(\"jna.library.path\"));\n                }\n            }\n            LOGGER.log(Level.INFO, \"jna.library.path is: \" + System.getProperty(\"jna.library.path\"));\n        }\n    }\n\n    /**\n     * Query over a stream of possible environment variables for GStreamer\n     * location, filtering on the first non-null result, and adding \\bin\\ to the\n     * value.\n     *\n     * @return location or empty string\n     */\n    private static String findWindowsLocation() {\n        List<String> options = new ArrayList<>();\n        options.add(getenv(\"GSTREAMER_1_0_ROOT_MSVC_X86_64\"));\n        options.add(getenv(\"GSTREAMER_1_0_ROOT_MINGW_X86_64\"));\n        options.add(getenv(\"GSTREAMER_1_0_ROOT_X86_64\"));\n        options.add(\"C:\\\\Program Files\\\\gstreamer\\\\1.0\\\\msvc_x86_64\");\n        options.add(\"C:\\\\Program Files\\\\gstreamer\\\\1.0\\\\mingw_x86_64\");\n        options.add(\"C:\\\\gstreamer\\\\1.0\\\\msvc_x86_64\");\n        options.add(\"C:\\\\gstreamer\\\\1.0\\\\mingw_x86_64\");\n\n        if (Platform.is64Bit()) {\n            return options.stream().filter(Objects::nonNull).map(p -> p.endsWith(\"\\\\\") ? p + \"bin\\\\\" : p + \"\\\\bin\\\\\").filter(p -> Files.exists(Path.of(p))).findFirst().orElse(\"\");\n        } else {\n            return \"\";\n        }\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/utils/GZMaxFileCompressor.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.utils;\n\nimport java.io.File;\nimport java.io.FileInputStream;\nimport java.io.FileOutputStream;\nimport java.io.IOException;\nimport java.util.zip.Deflater;\n\n/**\n * Compresses a file using the GZip format and maximum compression.\n *\n * @author mjrb5\n */\npublic class GZMaxFileCompressor {\n\n    /**\n     * Compresses the given file with maximum compression.\n     *\n     * @param input the input file to compress.\n     * @param output the compressed file.\n     * @return true if the operation completed successfully, false otherwise.\n     */\n    public boolean compress(File input, File output) {\n        try(FileInputStream inputStream = new FileInputStream(input);\n                GZipOutputStreamEx outputStream = new GZipOutputStreamEx(new FileOutputStream(output), 1024, Deflater.BEST_COMPRESSION)) {\n            byte[] buf = new byte[1024];\n            int length;\n            while ((length = inputStream.read(buf)) > 0) {\n                outputStream.write(buf, 0 ,length);\n            }\n        }\n        catch (IOException ex) {\n            ex.printStackTrace();\n            return false;\n        }\n        System.out.println(\"Compressed \" + input.getAbsolutePath() + \" to \" + output.getAbsolutePath() + \" successfully.\");\n        return true;\n    }\n    \n    /**\n     * Compress a file with maximum compression based on arguments.\n     * @param args first argument is source file, second is destination file.\n     */\n    public static void main(String[] args) {\n        boolean success = new GZMaxFileCompressor().compress(new File(args[0]), new File(args[1]));\n        if(!success) {\n            System.exit(1);\n        }\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/utils/GZipOutputStreamEx.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.utils;\n\nimport java.io.IOException;\nimport java.io.OutputStream;\nimport java.util.zip.CRC32;\nimport java.util.zip.Deflater;\nimport java.util.zip.DeflaterOutputStream;\n\n/**\n * This class essentially copies sources of original GZIPOutputStream, just adds\n * ability to pass in desired compression level into constructor\n */\npublic class GZipOutputStreamEx extends DeflaterOutputStream {\n\n    /**\n     * CRC-32 of uncompressed data.\n     */\n    protected CRC32 crc = new CRC32();\n    /*\n     * GZIP header magic number.\n     */\n    private final static int GZIP_MAGIC = 0x8b1f;\n\n    /**\n     * Creates a new output stream with the specified buffer size.\n     *\n     * @param out the output stream\n     * @param size the output buffer size\n     * @exception IOException If an I/O error has occurred.\n     * @exception IllegalArgumentException if size is <= 0\n     */\n    public GZipOutputStreamEx(OutputStream out, int size, int compression) throws IOException {\n        super(out, new Deflater(compression, true), size);\n        writeHeader();\n        crc.reset();\n    }\n\n    /**\n     * Creates a new output stream with a default buffer size.\n     *\n     * @param out the output stream\n     * @exception IOException If an I/O error has occurred.\n     */\n    public GZipOutputStreamEx(OutputStream out, int compression) throws IOException {\n        this(out, 512, compression);\n    }\n\n    /**\n     * Writes array of bytes to the compressed output stream. This method will\n     * block until all the bytes are written.\n     *\n     * @param buf the data to be written\n     * @param off the start offset of the data\n     * @param len the length of the data\n     * @exception IOException If an I/O error has occurred.\n     */\n    @Override\n    public synchronized void write(byte[] buf, int off, int len)\n            throws IOException {\n        super.write(buf, off, len);\n        crc.update(buf, off, len);\n    }\n\n    /**\n     * Finishes writing compressed data to the output stream without closing the\n     * underlying stream. Use this method when applying multiple filters in\n     * succession to the same output stream.\n     *\n     * @exception IOException if an I/O error has occurred\n     */\n    @Override\n    public void finish() throws IOException {\n        if (!def.finished()) {\n            def.finish();\n            while (!def.finished()) {\n                deflate();\n            }\n            writeTrailer();\n        }\n    }\n\n    /**\n     * Writes remaining compressed data to the output stream and closes the\n     * underlying stream.\n     *\n     * @exception IOException if an I/O error has occurred\n     */\n    @Override\n    public void close() throws IOException {\n        finish();\n        out.close();\n    }\n\n    /*\n     * Writes GZIP member header.\n     */\n    private void writeHeader() throws IOException {\n        writeShort(GZIP_MAGIC);     // Magic number\n        out.write(Deflater.DEFLATED);    // Compression method (CM)\n        out.write(0);          // Flags (FLG)\n        writeInt(0);            // Modification time (MTIME)\n        out.write(0);          // Extra flags (XFL)\n        out.write(0);          // Operating system (OS)\n    }\n\n    /*\n     * Writes GZIP member trailer.\n     */\n    private void writeTrailer() throws IOException {\n        writeInt((int) crc.getValue());  // CRC-32 of uncompressed data\n        writeInt(def.getTotalIn());     // Number of uncompressed bytes\n    }\n\n    /*\n     * Writes integer in Intel byte order.\n     */\n    private void writeInt(int i) throws IOException {\n        writeShort(i & 0xffff);\n        writeShort((i >> 16) & 0xffff);\n    }\n\n    /*\n     * Writes short integer in Intel byte order.\n     */\n    private void writeShort(int s) throws IOException {\n        out.write(s & 0xff);\n        out.write((s >> 8) & 0xff);\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/utils/GraphicsUtils.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.utils;\n\nimport java.awt.Color;\nimport java.awt.Graphics;\n\n/**\n * Responsible for drawing things with a Graphics2D that aren't supported in \n * standard methods. Like drawing a string with an outline.\n * @author Michael\n */\npublic class GraphicsUtils {\n\n    private Graphics graphics;\n\n    /**\n     * Create a new graphics utils object.\n     * @param graphics the graphics to use for the modifications.\n     */\n    public GraphicsUtils(Graphics graphics) {\n        this.graphics = graphics;\n    }\n\n    /**\n     * Get the inverse color of the one currently in use.\n     * @return the inverse color of the one currently in use.\n     */\n    public Color getInverseColor() {\n        int r = 255 - graphics.getColor().getRed();\n        int g = 255 - graphics.getColor().getGreen();\n        int b = 255 - graphics.getColor().getBlue();\n        return new Color(r, g, b);\n    }\n\n    /**\n     * Draw a string with an outline.\n     * @param str the string to draw.\n     * @param x the x position of the string.\n     * @param y the y position of the string.\n     * @param outlineColor the colour of the outline.\n     * @param outlineThickness the thickness of the outline (in pixels.)\n     */\n    public void drawStringWithOutline(String str, int x, int y, Color outlineColor, int outlineThickness) {\n        if (outlineThickness > 0) {\n            Color originalColor = graphics.getColor();\n            graphics.setColor(outlineColor);\n            graphics.drawString(str, shiftWest(x, outlineThickness), shiftNorth(y, outlineThickness));\n            graphics.drawString(str, shiftWest(x, outlineThickness), shiftSouth(y, outlineThickness));\n            graphics.drawString(str, shiftEast(x, outlineThickness), shiftNorth(y, outlineThickness));\n            graphics.drawString(str, shiftEast(x, outlineThickness), shiftSouth(y, outlineThickness));\n            graphics.setColor(originalColor);\n        }\n        graphics.drawString(str, x, y);\n    }\n    \n    /**\n     * Draw a string with a shadow.\n     * @param str the string to draw.\n     * @param x the x position of the string.\n     * @param y the y position of the string.\n     * @param shadowColor the colour of the shadow.\n     */\n    public void drawStringWithShadow(String str, int x, int y, Color shadowColor) {\n        Color originalColor = graphics.getColor();\n        graphics.setColor(shadowColor);\n        graphics.drawString(str, shiftEast(x, 2), shiftSouth(y, 2));\n        graphics.setColor(originalColor);\n        graphics.drawString(str, x, y);\n    }\n\n    /**\n     * Used for outline measurements. Shift north a certain distance.\n     * @param p the initial point.\n     * @param distance the distance to shift.\n     * @return the point after shifting.\n     */\n    private int shiftNorth(int p, int distance) {\n        return (p - distance);\n    }\n\n    /**\n     * Used for outline measurements. Shift south a certain distance.\n     * @param p the initial point.\n     * @param distance the distance to shift.\n     * @return the point after shifting.\n     */\n    private int shiftSouth(int p, int distance) {\n        return (p + distance);\n    }\n\n    /**\n     * Used for outline measurements. Shift east a certain distance.\n     * @param p the initial point.\n     * @param distance the distance to shift.\n     * @return the point after shifting.\n     */\n    private int shiftEast(int p, int distance) {\n        return (p + distance);\n    }\n\n    /**\n     * Used for outline measurements. Shift west a certain distance.\n     * @param p the initial point.\n     * @param distance the distance to shift.\n     * @return the point after shifting.\n     */\n    private int shiftWest(int p, int distance) {\n        return (p - distance);\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/utils/ImageChecker.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.utils;\n\nimport java.awt.image.BufferedImage;\nimport java.io.File;\nimport java.io.IOException;\nimport java.util.ArrayList;\nimport java.util.List;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport javax.imageio.ImageIO;\n\n/**\n * Check that the images in the \"img\" folder conform to the requirements. At the\n * moment this just involves checking they're the right size, but could be\n * expanded later to check other things like constrast and colour matching as\n * well.\n *\n * @author Michael\n */\npublic class ImageChecker {\n\n    /**\n     * The height that all the images should be.\n     */\n    private static final int HEIGHT = 1080;\n    /**\n     * The width that all the images should be.\n     */\n    private static final int WIDTH = 1920;\n    /**\n     * Only formats (file extensions) specified in this array are permitted.\n     */\n    private static final String[] ALLOWED_FORMATS = {\"png\", \"jpg\"};\n    /**\n     * The image directory to check.\n     */\n    private File imageDir;\n\n    /**\n     * Create a new image checker to check the specified directory.\n     *\n     * @param imageDir the directory to check.\n     */\n    public ImageChecker(File imageDir) {\n        this.imageDir = imageDir;\n    }\n\n    /**\n     * Run the image checker.\n     */\n    public void runCheck() {\n        boolean ok = true;\n        System.out.println(\"\\nChecking images:\");\n        List<String> badFileNames = new ArrayList<>();\n        for(File file : imageDir.listFiles()) {\n            if(Utils.fileIsImage(file)) {\n                boolean thisok = true;\n                BufferedImage image=null;\n                try {\n                    image = ImageIO.read(file);\n                }\n                catch(IOException ex) {\n                    Logger.getLogger(ImageChecker.class.getName()).log(Level.SEVERE, null, ex);\n                }\n                if(image == null) {\n                    System.err.println(\"ERROR: \" + file.getName() + \" appears to be corrupt.\");\n                    thisok = false;\n                }\n                else { //If not corrupt\n                    if(!formatOK(file.getName())) {\n                        System.err.println(\"ERROR: \" + file.getName() + \" is not in a required format. It must be in one of the following: \" + getFormatsString());\n                        thisok = false;\n                    }\n                    if(image.getWidth() != WIDTH) {\n                        System.err.println(\"ERROR: \" + file.getName() + \" width should be \" + WIDTH + \" but is \" + image.getWidth());\n                        thisok = false;\n                    }\n                    if(image.getHeight() != HEIGHT) {\n                        System.err.println(\"ERROR: \" + file.getName() + \" height should be \" + HEIGHT + \" but is \" + image.getHeight());\n                        thisok = false;\n                    }\n                }\n\n                if(!thisok) { //If something is wrong with the image\n                    ok = false;\n                    if(!badFileNames.contains(file.getName())) {\n                        badFileNames.add(file.getName());\n                    }\n                }\n            }\n            else {\n                System.out.println(\"Skipping \" + file.getName() + \", not an image file\");\n            }\n        }\n        System.out.println();\n        if(ok) {\n            System.out.println(\"All images ok.\\n\");\n        }\n        else {\n            System.err.println(\"Some images don't conform to the requirements:\");\n            for(String name : badFileNames) {\n                System.err.println(name);\n            }\n            System.err.println(\"Please read IMAGE GUIDELINES.txt in the \\\"img\\\" folder, correct these images according to the guidelines and then try again.\\n\");\n            System.exit(1);\n        }\n    }\n\n    /**\n     * Get a single string of all the formats we allow. Enables easy printing.\n     *\n     * @return a single string of all the formats we allow.\n     */\n    private static String getFormatsString() {\n        StringBuilder ret = new StringBuilder();\n        for(int i = 0; i < ALLOWED_FORMATS.length; i++) {\n            ret.append(ALLOWED_FORMATS[i]);\n            if(i != ALLOWED_FORMATS.length - 1) {\n                ret.append(\", \");\n            }\n        }\n        return ret.toString();\n    }\n\n    /**\n     * Determine if the given file name is in a format we accept.\n     *\n     * @param fileName the file name to check.\n     * @return true if it's in an accepted format, false otherwise.\n     */\n    private static boolean formatOK(String fileName) {\n        String suffix = fileName.split(\"\\\\.\")[fileName.split(\"\\\\.\").length - 1].toLowerCase().trim();\n        for(String format : ALLOWED_FORMATS) {\n            if(suffix.equals(format.toLowerCase())) {\n                return true;\n            }\n        }\n        return false;\n    }\n\n    /**\n     * Run the image checker. If an argument is specified this will be used as\n     * the image directory to check, otherwise the default \"img\" directory will\n     * be chosen.\n     *\n     * @param args command line arguments.\n     */\n    public static void main(String[] args) {\n        String dir = \"img\";\n        if(args.length > 0) {\n            dir = args[0];\n        }\n        new ImageChecker(new File(dir)).runCheck();\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/utils/ImageManager.java",
    "content": "/*\n * To change this license header, choose License Headers in Project Properties.\n * To change this template file, choose Tools | Templates\n * and open the template in the editor.\n */\npackage org.quelea.services.utils;\n\nimport java.util.WeakHashMap;\nimport javafx.scene.image.Image;\nimport javafx.scene.paint.Color;\n\n/**\n * An image manager that should be used to deal with all large images (to keep\n * memory overhead to a minimum.)\n * <p>\n * @author Michael\n */\npublic class ImageManager {\n\n    public static final ImageManager INSTANCE = new ImageManager();\n    /**\n     * Could possibly be a soft hashmap in future to aid with caching even when\n     * a reference isn't elsewhere? Not sure we need this for now though, so\n     * leaving as is.\n     */\n    private final WeakHashMap<String, Image> images;\n\n    private ImageManager() {\n        images = new WeakHashMap<>();\n    }\n\n    /**\n     * Get an image from a uri. This will load the full image into memory,\n     * whatever its size. If you just need a preview of an image, then use the\n     * other method in this class to load a smaller version! Images returned\n     * using this method are cached, so if the same image is being used\n     * elsewhere that points to this file, you'll get the same image object back\n     * (as long as the previous image was obtained through this method.)\n     * <p>\n     * @param uri the URI to load.\n     * @return the image at this URI.\n     */\n    public Image getImage(String uri) {\n        if(uri == null) {\n            return Utils.getImageFromColour(Color.BLACK);\n        }\n        Image img = images.get(uri);\n        if(img == null) {\n            img = new Image(uri);\n            images.put(uri, img);\n        }\n        return img;\n    }\n\n    /**\n     * Get an image with a particular size. Images using this method are not\n     * cached at present, so only use for small images. (We could cache in the\n     * future if necessary.)\n     * <p>\n     * @param uri the URI of the image to load.\n     * @param width the width of the image.\n     * @param height the height of the image.\n     * @param preserveRatio true if the aspect ratio should be preserved, false\n     * otherwise.\n     * @return\n     */\n    public Image getImage(String uri, double width, double height, boolean preserveRatio) {\n        return new Image(uri, width, height, preserveRatio, true);\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/utils/LanguageNameMap.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n *\n * This program is free software: you can redistribute it and/or modify it under\n * the terms of the GNU General Public License as published by the Free Software\n * Foundation, either version 3 of the License, or (at your option) any later\n * version.\n *\n * This program is distributed in the hope that it will be useful, but WITHOUT\n * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\n * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License along with\n * this program. If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.utils;\n\nimport com.memetix.mst.language.Language;\nimport java.util.HashMap;\n\n/**\n * Provides a map between common language names and the actual language objects\n * used by the translator API.\n *\n * @author Michael\n */\npublic class LanguageNameMap {\n\n    public static final LanguageNameMap INSTANCE = new LanguageNameMap();\n    private final HashMap<String, Language> map;\n\n    /**\n     * Initialise the mappings.\n     */\n    private LanguageNameMap() {\n        map = new HashMap<>();\n        putNativeLanguages();\n        putEnglishLanguages();\n        putSwedishLanguages();\n    }\n    \n    /**\n     * Put names of the languages (in Swedish) into the map.\n     */\n    private void putSwedishLanguages() {\n        map.put(\"arabiska\", Language.ARABIC);\n        map.put(\"bulgariska\", Language.BULGARIAN);\n        map.put(\"katalanska\", Language.CATALAN);\n        map.put(\"kinesiska\", Language.CHINESE_SIMPLIFIED);\n        map.put(\"mandarin\", Language.CHINESE_SIMPLIFIED);\n        map.put(\"standardkinesiska\", Language.CHINESE_SIMPLIFIED);\n        map.put(\"tjeckiska\", Language.CZECH);\n        map.put(\"danska\", Language.DANISH);\n        map.put(\"nederlänska\", Language.DUTCH);\n        map.put(\"hollänska\", Language.DUTCH);\n        map.put(\"engelska\", Language.ENGLISH);\n        map.put(\"estlänska\", Language.ESTONIAN);\n        map.put(\"finska\", Language.FINNISH);\n        map.put(\"franska\", Language.FRENCH);\n        map.put(\"tyska\", Language.GERMAN);\n        map.put(\"grekiska\", Language.GREEK);\n        map.put(\"hebreiska\", Language.HEBREW);\n        map.put(\"hindi\", Language.HINDI);\n        map.put(\"ungerska\", Language.HUNGARIAN);\n        map.put(\"indonesiska\", Language.INDONESIAN);\n        map.put(\"italienska\", Language.ITALIAN);\n        map.put(\"japanska\", Language.JAPANESE);\n        map.put(\"koreanska\", Language.KOREAN);\n        map.put(\"lettiska\", Language.LATVIAN);\n        map.put(\"litauiska\", Language.LITHUANIAN);\n        map.put(\"malajiska\", Language.MALAY);\n        map.put(\"norska\", Language.NORWEGIAN);\n        map.put(\"persiska\", Language.PERSIAN);\n        map.put(\"polska\", Language.POLISH);\n        map.put(\"portugisiska\", Language.PORTUGUESE);\n        map.put(\"rumänska\", Language.ROMANIAN);\n        map.put(\"slovakiska\", Language.SLOVAK);\n        map.put(\"ryska\", Language.RUSSIAN);\n        map.put(\"slovenska\", Language.SLOVENIAN);\n        map.put(\"spanska\", Language.SPANISH);\n        map.put(\"svenska\", Language.SWEDISH);\n        map.put(\"thailändska\", Language.THAI);\n        map.put(\"turkiska\", Language.TURKISH);\n        map.put(\"urdu\", Language.URDU);\n        map.put(\"ukrainska\", Language.UKRAINIAN);\n        map.put(\"vietnamesiska\", Language.VIETNAMESE);\n    }\n\n    /**\n     * Put names of the languages (in English) into the map.\n     */\n    private void putEnglishLanguages() {\n        map.put(\"arabic\", Language.ARABIC);\n        map.put(\"bulgarian\", Language.BULGARIAN);\n        map.put(\"catalan\", Language.CATALAN);\n        map.put(\"chinese\", Language.CHINESE_SIMPLIFIED);\n        map.put(\"mandarin\", Language.CHINESE_SIMPLIFIED);\n        map.put(\"mandarin chinese\", Language.CHINESE_SIMPLIFIED);\n        map.put(\"czech\", Language.CZECH);\n        map.put(\"danish\", Language.DANISH);\n        map.put(\"dutch\", Language.DUTCH);\n        map.put(\"estonian\", Language.ESTONIAN);\n        map.put(\"finnish\", Language.FINNISH);\n        map.put(\"french\", Language.FRENCH);\n        map.put(\"german\", Language.GERMAN);\n        map.put(\"greek\", Language.GREEK);\n        map.put(\"hebrew\", Language.HEBREW);\n        map.put(\"hindi\", Language.HINDI);\n        map.put(\"hungarian\", Language.HUNGARIAN);\n        map.put(\"indonesian\", Language.INDONESIAN);\n        map.put(\"italian\", Language.ITALIAN);\n        map.put(\"japanese\", Language.JAPANESE);\n        map.put(\"korean\", Language.KOREAN);\n        map.put(\"latvian\", Language.LATVIAN);\n        map.put(\"lithuanian\", Language.LITHUANIAN);\n        map.put(\"malay\", Language.MALAY);\n        map.put(\"norwegian\", Language.NORWEGIAN);\n        map.put(\"persian\", Language.PERSIAN);\n        map.put(\"polish\", Language.POLISH);\n        map.put(\"portuguese\", Language.PORTUGUESE);\n        map.put(\"romanian\", Language.ROMANIAN);\n        map.put(\"slovak\", Language.SLOVAK);\n        map.put(\"russian\", Language.RUSSIAN);\n        map.put(\"slovenian\", Language.SLOVENIAN);\n        map.put(\"spanish\", Language.SPANISH);\n        map.put(\"swedish\", Language.SWEDISH);\n        map.put(\"thai\", Language.THAI);\n        map.put(\"turkish\", Language.TURKISH);\n        map.put(\"urdu\", Language.URDU);\n        map.put(\"ukranian\", Language.UKRAINIAN);\n        map.put(\"vietnamese\", Language.VIETNAMESE);\n    }\n\n    /**\n     * Put names of the languages (in their native language) into the map.\n     */\n    private void putNativeLanguages() {\n        map.put(\"العربية\", Language.ARABIC);\n        map.put(\"български\", Language.BULGARIAN);\n        map.put(\"català\", Language.CATALAN);\n        map.put(\"官话\", Language.CHINESE_SIMPLIFIED);\n        map.put(\"čeština\", Language.CZECH);\n        map.put(\"dansk\", Language.DANISH);\n        map.put(\"nederlands\", Language.DUTCH);\n        map.put(\"english\", Language.ENGLISH);\n        map.put(\"eesti\", Language.ESTONIAN);\n        map.put(\"suomalainen\", Language.FINNISH);\n        map.put(\"français\", Language.FRENCH);\n        map.put(\"deutsch\", Language.GERMAN);\n        map.put(\"ελληνικά\", Language.GREEK);\n        map.put(\"עברית\", Language.HEBREW);\n        map.put(\"हिंदी\", Language.HINDI);\n        map.put(\"magyar\", Language.HUNGARIAN);\n        map.put(\"indonesia\", Language.INDONESIAN);\n        map.put(\"italiano\", Language.ITALIAN);\n        map.put(\"日本の\", Language.JAPANESE);\n        map.put(\"한국의\", Language.KOREAN);\n        map.put(\"latvijas\", Language.LATVIAN);\n        map.put(\"lietuvos\", Language.LITHUANIAN);\n        map.put(\"melayu\", Language.MALAY);\n        map.put(\"norsk\", Language.NORWEGIAN);\n        map.put(\"فارسی\", Language.PERSIAN);\n        map.put(\"polski\", Language.POLISH);\n        map.put(\"português\", Language.PORTUGUESE);\n        map.put(\"român\", Language.ROMANIAN);\n        map.put(\"русский\", Language.RUSSIAN);\n        map.put(\"slovenská\", Language.SLOVAK);\n        map.put(\"slovenščina\", Language.SLOVENIAN);\n        map.put(\"español\", Language.SPANISH);\n        map.put(\"svenska\", Language.SWEDISH);\n        map.put(\"ภาษาไทย\", Language.THAI);\n        map.put(\"türk\", Language.TURKISH);\n        map.put(\"اردو\", Language.URDU);\n        map.put(\"український\", Language.UKRAINIAN);\n        map.put(\"việt\", Language.VIETNAMESE);\n    }\n\n    /**\n     * Get a particular language from text.\n     *\n     * @param text the text representing the language.\n     * @return the language, or null if none was found.\n     */\n    public Language getLanguage(String text) {\n        Language lang = map.get(text.toLowerCase());\n        if (lang == null) {\n            return Language.fromString(text);\n        } else {\n            return lang;\n        }\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/utils/LineTypeChecker.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.utils;\n\nimport java.util.Comparator;\nimport java.util.TreeMap;\n\n/**\n * Checks the type of the line.\n *\n * @author Michael\n */\npublic class LineTypeChecker {\n    \n    public static final String CHORD_REGEX = \"(\\\\s*(((([a-hA-H](#|b|♯|♭?)[0-9]*)|\\\\/)*((sus|dim|º|ø|\\\\+|maj|dom|min|m|M|aug|add)?[0-9]*){3}(#|b|♯|♭)?[0-9]*)\\\\s*)+)\";\n\n    /**\n     * The type of the line.\n     */\n    public enum Type {\n\n        NORMAL, TITLE, CHORDS, NONBREAK\n\n    }\n\n    private final String line;\n\n    /**\n     * Create a new line type checker to check a particular line.\n     *\n     * @param line the line to check.\n     */\n    public LineTypeChecker(String line) {\n        this.line = line;\n    }\n    \n    /**\n     * Get the line type.\n     *\n     * @return the type of the line.\n     */\n    public Type getLineType() {\n        if(line==null) {\n            return null;\n        }\n        if (checkTitle()) {\n            return Type.TITLE;\n        } else if (checkChords()) {\n            return Type.CHORDS;\n        } else if (checkNonBreak()) {\n            return Type.NONBREAK;\n        } else {\n            return Type.NORMAL;\n        }\n    }\n\n    private boolean checkNonBreak() {\n        return line.trim().equals(\"<>\")\n                || line.trim().equals(\"\\\\u00A0\")\n                || (line.length() == 1 && line.charAt(0) == 160);\n    }\n\n    /**\n     * Check whether this line is a line containing only chords.\n     *\n     * @return true if it's a chord line, false otherwise.\n     */\n    private boolean checkChords() {\n        if (line.trim().isEmpty()) {\n            return false;\n        }\n        if (line.toLowerCase().endsWith(\"//chords\")) {\n            return true;\n        }\n        if (line.toLowerCase().endsWith(\"//lyrics\")) {\n            return false;\n        }\n        String checkLine = line.replace('-', ' ');\n        checkLine = checkLine.replace('(', ' ');\n        checkLine = checkLine.replace(')', ' ');\n        checkLine = checkLine.replaceAll(\"[xX][0-9]+\", \"\");\n        checkLine = checkLine.replaceAll(\"[0-9]+[xX]\", \"\");\n        for (String s : checkLine.split(\"\\\\s\")) {\n            if (s.trim().isEmpty()) {\n                continue;\n            }\n            if (!s.matches(\"^\" + CHORD_REGEX + \"$\")) {\n                return false;\n            }\n        }\n\n        return true;\n    }\n\n    /**\n     * Check whether this line is the title of a section.\n     *\n     * @return true if it's the title of a section, false otherwise.\n     */\n    private boolean checkTitle() {\n        String processedLine = line.toLowerCase().trim()\n                .replace(\"{\", \"\").replace(\"}\", \"\")\n                .replace(\"[\", \"\").replace(\"]\", \"\")\n                .replace(\"<\", \"\").replace(\">\", \"\")\n                .replace(\"(\", \"\").replace(\")\", \"\");\n        if (processedLine.endsWith(\"//title\")) {\n            return true;\n        }\n        return processedLine.toLowerCase().startsWith(\"verse\")\n                || processedLine.toLowerCase().startsWith(\"chorus\")\n                || processedLine.toLowerCase().startsWith(\"tag\")\n                || processedLine.toLowerCase().startsWith(\"pre-chorus\")\n                || processedLine.toLowerCase().startsWith(\"pre chorus\")\n                || processedLine.toLowerCase().startsWith(\"coda\")\n                || processedLine.toLowerCase().startsWith(\"bridge\")\n                || processedLine.toLowerCase().startsWith(\"intro\")\n                || processedLine.toLowerCase().startsWith(\"outro\")\n                || processedLine.toLowerCase().startsWith(\"interlude\")\n                || processedLine.toLowerCase().startsWith(\"ending\");\n    }\n\n    private static final TreeMap<String, String> titleMap = new TreeMap<>();\n    private static final TreeMap<String, String> titleMapRev = new TreeMap<>((o1, o2) -> Integer.compare(o2.length(), o1.length()));\n\n    private static int hashLength = 3;\n\n    private static String nextHash() {\n        StringBuilder ret = new StringBuilder(hashLength);\n        ret.append(\"#\".repeat(hashLength));\n        hashLength++;\n        return ret.toString();\n    }\n\n    public synchronized static String[] encodeSpecials(String[] toEncode) {\n        titleMap.clear();\n        titleMapRev.clear();\n        hashLength = 3;\n        String[] ret = new String[toEncode.length];\n        for (int i = 0; i < ret.length; i++) {\n            String line = toEncode[i];\n            if (new LineTypeChecker(line).getLineType() != Type.NORMAL) {\n                if (!titleMap.containsKey(line)) {\n                    String hash = nextHash();\n                    titleMap.put(line, hash);\n                    titleMapRev.put(hash, line);\n                }\n                line = titleMap.get(line);\n            }\n            ret[i] = line;\n        }\n        return ret;\n    }\n\n    public synchronized static String[] decodeSpecials(String[] toDecode) {\n        for (String key : titleMapRev.keySet()) {\n            for (int i = 0; i < toDecode.length; i++) {\n                String line = toDecode[i];\n                if (line.trim().equalsIgnoreCase(key.trim())) {\n                    toDecode[i] = titleMapRev.get(key);\n                }\n            }\n        }\n        return toDecode;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/utils/LoggerUtils.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.utils;\n\nimport java.io.BufferedWriter;\nimport java.io.File;\nimport java.io.FileWriter;\nimport java.io.IOException;\nimport java.io.PrintWriter;\nimport java.util.HashMap;\nimport java.util.Map;\nimport java.util.logging.Handler;\nimport java.util.logging.Level;\nimport java.util.logging.LogRecord;\nimport java.util.logging.Logger;\nimport java.util.logging.SimpleFormatter;\n\n/**\n * Provides some static utility methods to do with logging.\n * <p/>\n * @author Michael\n */\npublic final class LoggerUtils {\n\n    /**\n     * The default level for loggers.\n     */\n    public static final Level DEFAULT_LEVEL = Level.INFO;\n    private static final Map<String, Logger> loggers;\n    private static volatile File handlerFile;\n\n    static {\n        loggers = new HashMap<>();\n    }\n\n    /**\n     * Initialise the handlers.\n     */\n    private static void initialise() {\n        if(handlerFile == null) {\n            synchronized (LoggerUtils.class) {\n                if (handlerFile == null && QueleaProperties.get() != null) {\n                    handlerFile = Utils.getDebugLog();\n                    handlerFile.delete();\n                }\n            }\n        }\n    }\n\n    /**\n     * No instantiation for me thanks.\n     */\n    private LoggerUtils() {\n        throw new AssertionError();\n    }\n\n    public static String getHandlerFileLocation() {\n        return handlerFile.getAbsolutePath();\n    }\n\n    /**\n     * Get a logger with its appropriate class name.\n     * <p/>\n     * @return a logger that uses the called class as its name.\n     */\n    public static synchronized Logger getLogger() {\n        initialise();\n        StackTraceElement[] ele = new Throwable().getStackTrace();\n        String name;\n        if(ele == null || ele.length < 3 || ele[2] == null || ele[2].getClassName() == null) {\n            name = \"DEFAULT\";\n        }\n        else {\n            name = ele[2].getClassName();\n        }\n        Logger logger = loggers.get(name);\n        if(logger == null) {\n            logger = Logger.getLogger(name);\n            logger.addHandler(new Handler() {\n                @Override\n                public void publish(LogRecord record) {\n                    synchronized(this) {\n                        writeToLog(new SimpleFormatter().format(record));\n                    }\n                }\n\n                @Override\n                public void flush() {\n                    //Norhing needed here\n                }\n\n                @Override\n                public void close() throws SecurityException {\n                    //Norhing needed here\n                }\n            });\n            logger.setLevel(DEFAULT_LEVEL);\n            loggers.put(name, logger);\n        }\n        return logger;\n    }\n\n    private static void writeToLog(String message) {\n        try(PrintWriter out = new PrintWriter(new BufferedWriter(new FileWriter(handlerFile, true)))) {\n            out.println(message);\n        }\n        catch(IOException ex) {\n            ex.printStackTrace();\n        }\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/utils/LyricLine.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.utils;\n\n/**\n * A line of lyrics - wrapper class for the line itself, and whether it's a\n * translated line or not.\n *\n * @author Michael\n */\npublic class LyricLine {\n\n    private final boolean isTranslateLine;\n    private final String line;\n\n    /**\n     * Create a new lyric line.\n     * @param isTranslateLine true if the line is translated, false otherwise.\n     * @param line \n     */\n    public LyricLine(boolean isTranslateLine, String line) {\n        this.isTranslateLine = isTranslateLine;\n        this.line = line;\n    }\n\n    /**\n     * Create a new lyric line that's not translated.\n     * @param line the text for the non-translated line.\n     */\n    public LyricLine(String line) {\n        this.isTranslateLine = false;\n        this.line = line;\n    }\n\n    /**\n     * Determine if thi line is translated.\n     * @return true if the line is translated, false otherwise.\n     */\n    public boolean isTranslateLine() {\n        return isTranslateLine;\n    }\n\n    /**\n     * Get the line's text as a string.\n     * @return the line's text as a string.\n     */\n    public String getLine() {\n        return line;\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/utils/PropertyPanel.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.utils;\n\n/**\n * Classes using this interface write some properties to Quelea's properties file, and read these properties to set\n * their contents.\n * @author Michael\n */\npublic interface PropertyPanel {\n\n    /**\n     * Write the chosen properties based on the contents of this object.\n     */\n    void setProperties();\n\n    /**\n     * Update the contents of the object based on the properties.\n     */\n    void readProperties();\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/utils/QueleaProperties.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.utils;\n\nimport javafx.geometry.BoundingBox;\nimport javafx.geometry.Bounds;\nimport javafx.scene.paint.Color;\nimport org.quelea.data.bible.Bible;\nimport org.quelea.data.displayable.TextAlignment;\nimport org.quelea.services.languages.spelling.Dictionary;\nimport org.quelea.services.languages.spelling.DictionaryManager;\nimport org.quelea.services.notice.NoticeDrawer.NoticePosition;\n\nimport java.io.File;\nimport java.io.FileWriter;\nimport java.io.IOException;\nimport java.io.StringReader;\nimport java.util.ArrayList;\nimport java.util.List;\nimport java.util.logging.Level;\n\nimport static org.quelea.services.utils.QueleaPropertyKeys.activeSelectionColorKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.additionalLineSpacingKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.advanceOnLiveKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.autoDetectPortKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.autoTranslateKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.autoplayVidKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.blackFadeDurationKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.blackStageviewWithMainKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.canvasDivposKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.capitalFirstKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.checkUpdateKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.chosenFontsKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.churchCcliNumKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.clearFadeDurationKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.clearLiveOnRemoveKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.clearStageviewWithMainKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.controlScreenKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.convertMp3Key;\nimport static org.quelea.services.utils.QueleaPropertyKeys.darkThemeKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.dbSongPreviewKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.defaultBibleKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.defaultSongDbUpdateKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.defaultTranslationName;\nimport static org.quelea.services.utils.QueleaPropertyKeys.disableDirectShowForWVC1Key;\nimport static org.quelea.services.utils.QueleaPropertyKeys.disableVideoKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.discussLocationKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.displaySonginfotextKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.downloadPathKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.elevantoClientIdKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.enableDictKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.facebookPageKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.feedbackLocationKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.globalBibleThemeFileKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.globalSongThemeFileKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.godWordsKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.inactiveSelectionColorKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.itemThemeOverrideKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.languageFileKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.lastDirectoryKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.lastSchedulefileDirectoryKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.lastVideoDirectoryKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.libraryDivposKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.linkPreviewAndLiveDividers;\nimport static org.quelea.services.utils.QueleaPropertyKeys.logoFadeDurationKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.logoImageLocationKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.lyricHeightBoundKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.lyricWidthBoundKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.lyricsTextBackgroundColor;\nimport static org.quelea.services.utils.QueleaPropertyKeys.lyricsTextBackgroundEnable;\nimport static org.quelea.services.utils.QueleaPropertyKeys.mainDivposKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.maxBibleCharsKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.maxBibleVersesKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.maxCharsKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.maxFontSizeKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.minLinesKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.mobLyricsPortKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.noticeBackgroundColourKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.noticeBoxHeightKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.noticeBoxSpeedKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.noticeFontSizeKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.noticePositionKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.noticeSpeedKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.oneLineModeKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.ooOntopKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.ooPathKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.outlineThicknessKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.phonehomeKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.planningCenterRefreshToken;\nimport static org.quelea.services.utils.QueleaPropertyKeys.planningCentrePrevDaysKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.ppPathKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.preliveDivposKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.previewDivposKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.previewOnImageChangeKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.projectorCoordsKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.projectorModeKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.projectorScreenKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.queleaScheduleExtensionKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.queleaSongpackExtensionKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.recPathKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.remoteControlPasswordKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.remoteControlPortKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.sceneInfoKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.scheduleEmbedMediaKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.showExtraLivePanelToolbarOptionsKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.showSmallBibleTextKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.showSmallSongTextKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.showVerseNumbersKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.singleMonitorWarningKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.slideTransitionInDurationKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.slideTransitionOutDurationKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.smallBibleTextHPositionKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.smallBibleTextSizeKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.smallBibleTextVPositionKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.smallSongTextHPositionKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.smallSongTextShowOnSlidesKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.smallSongTextSizeKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.smallSongTextVPositionKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.songOverflowKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.splitBibleVersesKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.stageBackgroundColorKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.stageChordColorKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.stageCoordsKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.stageFontKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.stageLyricsColorKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.stageModeKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.stageScreenKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.stageShowChordsKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.stageShowClockKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.stageTextAlignmentKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.textShadowKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.thumbnailSizeKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.translateClientIdKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.translateClientSecretKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.translationFontSizeOffsetKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.uniformFontSizeKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.use24hClockKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.useAutoExtendKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.useDefaultTranslation;\nimport static org.quelea.services.utils.QueleaPropertyKeys.useMaxBibleCharsKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.useMobLyricsKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.useOoKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.usePpKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.useRemoteControlKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.useSlideTransitionKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.useVlcJavafxRenderingKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.videoTabKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.webProxyHostKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.webProxyPasswordKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.webProxyPortKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.webProxyUserKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.webRefreshRateKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.websiteLocationKey;\nimport static org.quelea.services.utils.QueleaPropertyKeys.wikiPageKey;\n\n/**\n * Manages the properties specific to Quelea.\n * <p>\n *\n * @author Michael\n */\npublic final class QueleaProperties extends SortedProperties {\n\n    public static final Version VERSION = new Version(\"2026.0\", VersionType.CI);\n    private static QueleaProperties INSTANCE;\n    private String userHome;\n\n    public static void init(String userHome) {\n        INSTANCE = new QueleaProperties(userHome);\n        try {\n            if (!get().getPropFile().exists()) {\n                get().getPropFile().createNewFile();\n            }\n            try (StringReader reader = new StringReader(Utils.getTextFromFile(get().getPropFile().getAbsolutePath(), \"\"))) {\n                get().load(reader);\n            }\n        } catch (IOException ex) { //Never mind.\n        }\n    }\n\n    /**\n     * Load the properties from the properties file.\n     */\n    private QueleaProperties(String userHome) {\n        if (userHome != null && !userHome.isEmpty()) {\n            this.userHome = userHome;\n        } else {\n            this.userHome = System.getProperty(\"user.home\");\n        }\n    }\n\n    /**\n     * Get the properties file.\n     * <p>\n     *\n     * @return the properties file.\n     */\n    private File getPropFile() {\n        return new File(getQueleaUserHome(), \"quelea.properties\");\n    }\n\n    /**\n     * Save these properties to the file.\n     */\n    private void write() {\n        try (FileWriter writer = new FileWriter(getPropFile())) {\n            store(writer, \"Auto save\");\n        } catch (IOException ex) {\n//            LOGGER.log(Level.WARNING, \"Couldn't store properties\", ex);\n        }\n    }\n\n    /**\n     * Get the singleton instance of this class.\n     * <p>\n     *\n     * @return the instance.\n     */\n    public static QueleaProperties get() {\n        return INSTANCE;\n    }\n\n    /**\n     * Get the languages file that should be used as specified in the properties\n     * file.\n     * <p>\n     *\n     * @return the languages file for the GUI.\n     */\n    public File getLanguageFile() {\n        return new File(\"languages\", getProperty(languageFileKey, \"gb.lang\"));\n    }\n\n    public boolean isDictionaryEnabled() {\n        return Boolean.parseBoolean(getProperty(enableDictKey, \"false\"));\n    }\n\n    /**\n     * Get the languages file that should be used as specified in the properties\n     * file.\n     * <p>\n     *\n     * @return the languages file for the GUI.\n     */\n    public Dictionary getDictionary() {\n        String dict = getProperty(languageFileKey, \"gb.lang\");\n        String[] parts = dict.split(\"\\\\.\");\n        StringBuilder builder = new StringBuilder();\n        for (int i = 0; i < parts.length - 1; i++) {\n            builder.append(parts[i]);\n            builder.append(\".\");\n        }\n        builder.append(\"words\");\n        return DictionaryManager.INSTANCE.getFromFilename(builder.toString());\n    }\n\n    /**\n     * Set the name of the language file to use.\n     * <p>\n     *\n     * @param file the name of the language file to use.\n     */\n    public void setLanguageFile(String file) {\n        setProperty(languageFileKey, file);\n        write();\n    }\n\n    /**\n     * Get the english languages file that should be present on all\n     * installations. We can default to this if labels are missing in other\n     * languages.\n     * <p>\n     *\n     * @return the english languages file for the GUI.\n     */\n    public File getEnglishLanguageFile() {\n        return new File(\"languages\", \"gb.lang\");\n    }\n\n    /**\n     * Determine whether or not to display the video tab.\n     *\n     * @return true if the video tab should be displayed, false otherwise.\n     */\n    public boolean getDisplayVideoTab() {\n        try {\n            return Boolean.parseBoolean(getProperty(videoTabKey, \"false\"));\n        } catch (Exception ex) {\n            return true;\n        }\n    }\n\n    public void setDisplayVideoTab(boolean videoTab) {\n        setProperty(videoTabKey, Boolean.toString(videoTab));\n        write();\n    }\n\n    /**\n     * Get the scene info as stored from the last exit of Quelea (or some\n     * default values if it doesn't exist in the properties file.)\n     * <p>\n     *\n     * @return the scene info.\n     */\n    public SceneInfo getSceneInfo() {\n        try {\n            String[] parts = getProperty(sceneInfoKey, \"461,15,997,995,false\").split(\",\");\n            if (parts.length == 4) {\n                return new SceneInfo(Integer.parseInt(parts[0]), Integer.parseInt(parts[1]), Integer.parseInt(parts[2]), Integer.parseInt(parts[3]), false);\n            } else if (parts.length == 5) {\n                return new SceneInfo(Integer.parseInt(parts[0]), Integer.parseInt(parts[1]), Integer.parseInt(parts[2]), Integer.parseInt(parts[3]), Boolean.parseBoolean(parts[4]));\n            } else {\n                return null;\n            }\n        } catch (Exception ex) {\n            LoggerUtils.getLogger().log(Level.WARNING, \"Invalid scene info: \" + getProperty(sceneInfoKey), ex);\n            return null;\n        }\n    }\n\n    /**\n     * Set the scene info for Quelea's main window - generally called just\n     * before exit so the next invocation of the program can display the window\n     * in the same position.\n     * <p>\n     *\n     * @param info the scene info.\n     */\n    public void setSceneInfo(SceneInfo info) {\n        setProperty(sceneInfoKey, info.toString());\n        write();\n    }\n\n    /**\n     * Get the main splitpane divider position property.\n     *\n     * @return the main splitpane divider position property, or -1 if none is\n     * set.\n     */\n    public double getMainDivPos() {\n        return Double.parseDouble(getProperty(mainDivposKey, \"-1\"));\n    }\n\n    public String getElevantoClientId() {\n        return getProperty(elevantoClientIdKey, \"91955\");\n    }\n\n    /**\n     * Get the library / schedule splitpane divider position property.\n     *\n     * @return the library / schedule splitpane divider position property, or -1\n     * if none is set.\n     */\n    public double getLibraryDivPos() {\n        return Double.parseDouble(getProperty(libraryDivposKey, \"-1\"));\n    }\n\n    /**\n     * Get the preview / live splitpane divider position property.\n     *\n     * @return the preview / live splitpane divider position property, or -1 if\n     * none is set.\n     */\n    public double getPrevLiveDivPos() {\n        return Double.parseDouble(getProperty(preliveDivposKey, \"-1\"));\n    }\n\n    /**\n     * Get the canvas divider position property.\n     *\n     * @return the canvas divider position property, or -1 if none is set.\n     */\n    public double getCanvasDivPos() {\n        return Double.parseDouble(getProperty(canvasDivposKey, \"-1\"));\n    }\n\n    /**\n     * Get the preview panel divider position property.\n     *\n     * @return the preview panel divider position property, or -1 if none is set.\n     */\n    public double getPreviewDivposKey() {\n        return Double.parseDouble(getProperty(previewDivposKey, \"-1\"));\n    }\n\n    /**\n     * Set the main divider position property.\n     *\n     * @param val the position of the divider 0-1.\n     */\n    public void setMainDivPos(double val) {\n        setProperty(mainDivposKey, Double.toString(val));\n        write();\n    }\n\n    /**\n     * Set the preview / live divider position property.\n     *\n     * @param val the position of the divider 0-1.\n     */\n    public void setPrevLiveDivPos(double val) {\n        setProperty(preliveDivposKey, Double.toString(val));\n        write();\n    }\n\n    /**\n     * Set the canvas divider position property.\n     *\n     * @param val the position of the divider 0-1.\n     */\n    public void setCanvasDivPos(double val) {\n        setProperty(canvasDivposKey, Double.toString(val));\n        write();\n    }\n\n    /**\n     * Set the preview panel divider position property.\n     *\n     * @param val the position of the preview panel divider 0-1.\n     */\n    public void setPreviewDivPos(double val) {\n        setProperty(previewDivposKey, Double.toString(val));\n        write();\n    }\n\n    /**\n     * Set the library divider position property.\n     *\n     * @param val the position of the divider 0-1.\n     */\n    public void setLibraryDivPos(double val) {\n        setProperty(libraryDivposKey, Double.toString(val));\n        write();\n    }\n\n    /**\n     * Get a list of user chosen fonts to appear in the theme dialog.\n     * <p>\n     *\n     * @return a list of user chosen fonts to appear in the theme dialog.\n     */\n    public List<String> getChosenFonts() {\n        String fontStr = getProperty(chosenFontsKey, \"Arial|Liberation Sans|Noto Sans|Oxygen|Roboto|Vegur|Roboto Mono|Ubuntu Mono\");\n        List<String> ret = new ArrayList<>();\n        for (String str : fontStr.split(\"\\\\|\")) {\n            if (!str.trim().isEmpty()) {\n                ret.add(str);\n            }\n        }\n        return ret;\n    }\n\n    /**\n     * Set a list of user chosen fonts to appear in the theme dialog.\n     * <p>\n     *\n     * @param fonts the list of user chosen fonts to appear in the theme dialog.\n     */\n    public void setChosenFonts(List<String> fonts) {\n        StringBuilder fontBuilder = new StringBuilder();\n        for (int i = 0; i < fonts.size(); i++) {\n            fontBuilder.append(fonts.get(i));\n            if (i < fonts.size() - 1) {\n                fontBuilder.append(\"|\");\n            }\n        }\n        setProperty(chosenFontsKey, fontBuilder.toString());\n        write();\n    }\n\n    /**\n     * Determine if the same font size should be used for each section in a\n     * displayable - this can stop the sizes jumping all over the place\n     * depending on how much text there is per slide.\n     * <p>\n     *\n     * @return true if the uniform font size should be used, false otherwise.\n     */\n    public boolean getUseUniformFontSize() {\n        return Boolean.parseBoolean(getProperty(uniformFontSizeKey, \"true\"));\n    }\n\n    /**\n     * Set if the same font size should be used for each section in a\n     * displayable - this can stop the sizes jumping all over the place\n     * depending on how much text there is per slide.\n     * <p>\n     *\n     * @param val true if the uniform font size should be used, false otherwise.\n     */\n    public void setUseUniformFontSize(boolean val) {\n        setProperty(uniformFontSizeKey, Boolean.toString(val));\n    }\n\n    /**\n     * Determine if we should show verse numbers for bible passages.\n     * <p>\n     *\n     * @return true if we should show verse numbers, false otherwise.\n     */\n    public boolean getShowVerseNumbers() {\n        return Boolean.parseBoolean(getProperty(showVerseNumbersKey, \"true\"));\n    }\n\n    /**\n     * Set if we should show verse numbers for bible passages.\n     * <p>\n     *\n     * @param val true if we should show verse numbers, false otherwise.\n     */\n    public void setShowVerseNumbers(boolean val) {\n        setProperty(showVerseNumbersKey, Boolean.toString(val));\n    }\n\n    /**\n     * Get the colour to use for notice backgrounds.\n     *\n     * @return the colour to use for notice backgrounds.\n     */\n    public Color getNoticeBackgroundColour() {\n        return getColor(getProperty(noticeBackgroundColourKey, getStr(Color.BROWN)));\n    }\n\n    /**\n     * Set the colour to use for notice backgrounds.\n     *\n     * @param colour the colour to use for notice backgrounds.\n     */\n    public void setNoticeBackgroundColour(Color colour) {\n        setProperty(noticeBackgroundColourKey, getStr(colour));\n    }\n\n    /**\n     * Get the position at which to display the notices.\n     *\n     * @return the position at which to display the notices.\n     */\n    public NoticePosition getNoticePosition() {\n        if (getProperty(noticePositionKey, \"Bottom\").equalsIgnoreCase(\"top\")) {\n            return NoticePosition.TOP;\n        } else {\n            return NoticePosition.BOTTOM;\n        }\n    }\n\n    /**\n     * Set the position at which to display the notices.\n     *\n     * @param position the position at which to display the notices.\n     */\n    public void setNoticePosition(NoticePosition position) {\n        setProperty(noticePositionKey, position.getText());\n    }\n\n    /**\n     * Get the speed at which to display the notices.\n     *\n     * @return the speed at which to display the notices.\n     */\n    public double getNoticeSpeed() {\n        return Double.parseDouble(getProperty(noticeSpeedKey, \"10\"));\n    }\n\n    /**\n     * Set the speed at which to display the notices.\n     *\n     * @param speed the speed at which to display the notices.\n     */\n    public void setNoticeSpeed(double speed) {\n        setProperty(noticeSpeedKey, Double.toString(speed));\n    }\n\n    /**\n     * Get the last directory used in the general file chooser.\n     *\n     * @return the last directory used in the general file chooser.\n     */\n    public File getLastDirectory() {\n        String path = getProperty(lastDirectoryKey);\n        if (path == null) {\n            return null;\n        }\n        File f = new File(path);\n        if (f.isDirectory()) {\n            return f;\n        } else {\n            LoggerUtils.getLogger().log(Level.INFO, \"Cannot find last directory, reverting to default location\");\n            return null;\n        }\n    }\n\n    /**\n     * Set the last directory used in the general file chooser.\n     *\n     * @param directory the last directory used in the general file chooser.\n     */\n    public void setLastDirectory(File directory) {\n        setProperty(lastDirectoryKey, directory.getAbsolutePath());\n    }\n\n    /**\n     * Get the last directory used in the schedule file chooser.\n     *\n     * @return the last directory used in the schedule file chooser.\n     */\n    public File getLastScheduleFileDirectory() {\n        String path = getProperty(lastSchedulefileDirectoryKey);\n        if (path == null) {\n            return null;\n        }\n        File f = new File(path);\n        if (f.isDirectory()) {\n            return f;\n        } else {\n            LoggerUtils.getLogger().log(Level.INFO, \"Cannot find last schedule directory, reverting to default location\");\n            return null;\n        }\n    }\n\n    /**\n     * Sets whether the schedule should embed videos when saving\n     *\n     * @param embed true if should embed, false otherwise\n     */\n    public void setEmbedMediaInScheduleFile(boolean embed) {\n        setProperty(scheduleEmbedMediaKey, embed + \"\");\n    }\n\n    /**\n     * Gets whether the schedule should embed videos when saving\n     *\n     * @return true if should embed, false otherwise\n     */\n    public boolean getEmbedMediaInScheduleFile() {\n        boolean ret = Boolean.parseBoolean(getProperty(scheduleEmbedMediaKey, \"true\"));\n        return ret;\n    }\n\n    /**\n     * Sets whether item themes can override the global theme.\n     *\n     * @param val true if should override, false otherwise\n     */\n    public void setItemThemeOverride(boolean val) {\n        setProperty(itemThemeOverrideKey, val + \"\");\n    }\n\n    /**\n     * Gets whether item themes can override the global theme.\n     *\n     * @return true if should override, false otherwise\n     */\n    public boolean getItemThemeOverride() {\n        boolean ret = Boolean.parseBoolean(getProperty(itemThemeOverrideKey, \"false\"));\n        return ret;\n    }\n\n    /**\n     * Set the currently selected global theme file.\n     */\n    public void setGlobalSongThemeFile(File file) {\n        if (file == null) {\n            setProperty(globalSongThemeFileKey, \"\");\n        } else {\n            setProperty(globalSongThemeFileKey, file.getAbsolutePath());\n        }\n    }\n\n    /**\n     * Get the currently selected global theme file.\n     */\n    public File getGlobalSongThemeFile() {\n        String path = getProperty(globalSongThemeFileKey);\n        if (path == null || path.isEmpty()) {\n            return null;\n        }\n        return new File(path);\n    }\n\n    /**\n     * Set the currently selected global theme file.\n     */\n    public void setGlobalBibleThemeFile(File file) {\n        if (file == null) {\n            setProperty(globalBibleThemeFileKey, \"\");\n        } else {\n            setProperty(globalBibleThemeFileKey, file.getAbsolutePath());\n        }\n    }\n\n    /**\n     * Get the currently selected global theme file.\n     */\n    public File getGlobalBibleThemeFile() {\n        String path = getProperty(globalBibleThemeFileKey);\n        if (path == null || path.isEmpty()) {\n            return null;\n        }\n        return new File(path);\n    }\n\n    /**\n     * Set the last directory used in the schedule file chooser.\n     *\n     * @param directory the last directory used in the schedule file chooser.\n     */\n    public void setLastScheduleFileDirectory(File directory) {\n        setProperty(lastSchedulefileDirectoryKey, directory.getAbsolutePath());\n    }\n\n    /**\n     * Get the last directory used in the video file chooser.\n     *\n     * @return the last directory used in the video file chooser.\n     */\n    public File getLastVideoDirectory() {\n        String path = getProperty(lastVideoDirectoryKey);\n        if (path == null) {\n            return null;\n        }\n        File f = new File(path);\n        if (f.isDirectory()) {\n            return f;\n        } else {\n            LoggerUtils.getLogger().log(Level.INFO, \"Cannot find last video directory, reverting to default location\");\n            return null;\n        }\n    }\n\n    /**\n     * Set the last directory used in the video file chooser.\n     *\n     * @param directory the last directory used in the video file chooser.\n     */\n    public void setLastVideoDirectory(File directory) {\n        setProperty(lastVideoDirectoryKey, directory.getAbsolutePath());\n    }\n\n    /**\n     * Determine whether to auto-play videos after they have been set in live\n     * view.\n     *\n     * @return true if auto play is enabled, false otherwise.\n     */\n    public boolean getAutoPlayVideo() {\n        return Boolean.parseBoolean(getProperty(autoplayVidKey, \"false\"));\n    }\n\n    /**\n     * Set whether to auto-play videos after they have been set in live view.\n     *\n     * @param val true to enable auto play, false otherwise.\n     */\n    public void setAutoPlayVideo(boolean val) {\n        setProperty(autoplayVidKey, Boolean.toString(val));\n    }\n\n    /**\n     * Determine whether to use Java FX rendering for video playback with VLC.\n     * This approach is totally cross-platform capable.\n     *\n     * @return true if should use java fx for VLC Rendering, false otherwise\n     */\n    public boolean getUseJavaFXforVLCRendering() {\n        return Boolean.parseBoolean(getProperty(useVlcJavafxRenderingKey, \"false\"));\n    }\n\n    /**\n     * Set whether to use Java FX rendering for video playback with VLC. This\n     * approach is totally cross-platform capable.\n     *\n     * @param val true if should use java fx for VLC Rendering, false otherwise.\n     */\n    public void setUseJavaFXforVLCRendering(boolean val) {\n        setProperty(useVlcJavafxRenderingKey, Boolean.toString(val));\n    }\n\n    /**\n     * Get the font size at which to display the notices.\n     *\n     * @return the font size at which to display the notices.\n     */\n    public double getNoticeFontSize() {\n        return Double.parseDouble(getProperty(noticeFontSizeKey, \"50\"));\n    }\n\n    /**\n     * Set the font size at which to display the notices.\n     *\n     * @param fontSize the font size at which to display the notices.\n     */\n    public void setNoticeFontSize(double fontSize) {\n        setProperty(noticeFontSizeKey, Double.toString(fontSize));\n    }\n\n    /**\n     * Determine if we should attempt to fetch translations automatically.\n     * <p>\n     *\n     * @return true if we should translate automatically, false otherwise.\n     */\n    public boolean getAutoTranslate() {\n        return Boolean.parseBoolean(getProperty(autoTranslateKey, \"true\"));\n    }\n\n    /**\n     * Set if we should attempt to fetch translations automatically.\n     * <p>\n     *\n     * @param val true if we should translate automatically, false otherwise.\n     */\n    public void setAutoTranslate(boolean val) {\n        setProperty(autoTranslateKey, Boolean.toString(val));\n    }\n\n    /**\n     * Get the maximum font size used by text displayables.\n     * <p>\n     *\n     * @return the maximum font size used by text displayables.\n     */\n    public double getMaxFontSize() {\n        return Double.parseDouble(getProperty(maxFontSizeKey, \"1000\"));\n    }\n\n    /**\n     * Set the maximum font size used by text displayables.\n     * <p>\n     *\n     * @param fontSize the maximum font size used by text displayables.\n     */\n    public void setMaxFontSize(double fontSize) {\n        setProperty(maxFontSizeKey, Double.toString(fontSize));\n    }\n\n    /**\n     * Get the additional line spacing (in pixels) to be used between each line.\n     * <p>\n     *\n     * @return the additional line spacing.\n     */\n    public double getAdditionalLineSpacing() {\n        return Double.parseDouble(getProperty(additionalLineSpacingKey, \"10\"));\n    }\n\n    /**\n     * Set the additional line spacing (in pixels) to be used between each line.\n     * <p>\n     *\n     * @param spacing the additional line spacing.\n     */\n    public void setAdditionalLineSpacing(double spacing) {\n        setProperty(additionalLineSpacingKey, Double.toString(spacing));\n    }\n\n    /**\n     * Get the thumbnail size.\n     * <p>\n     *\n     * @return the thumbnail size.\n     */\n    public int getThumbnailSize() {\n        return Integer.parseInt(getProperty(thumbnailSizeKey, \"200\"));\n    }\n\n    /**\n     * Set the thumbnail size.\n     * <p>\n     *\n     * @param thumbnailSize the thumbnail size.\n     */\n    public void setThumbnailSize(int thumbnailSize) {\n        setProperty(thumbnailSizeKey, Integer.toString(thumbnailSize));\n    }\n\n    public int getPlanningCentrePrevDays() {\n        return Integer.parseInt(getProperty(planningCentrePrevDaysKey, \"31\"));\n    }\n\n    public void setPlanningCentrePrevDays(int days) {\n        setProperty(planningCentrePrevDaysKey, Integer.toString(days));\n    }\n\n    public boolean getUseDefaultTranslation() {\n        return Boolean.parseBoolean(getProperty(useDefaultTranslation, \"false\"));\n    }\n\n    public void setUseDefaultTranslation(boolean val) {\n        setProperty(useDefaultTranslation, Boolean.toString(val));\n    }\n\n    public String getDefaultTranslationName() {\n        return getProperty(defaultTranslationName, \"\");\n    }\n\n    public void setDefaultTranslationName(String val) {\n        setProperty(defaultTranslationName, val);\n    }\n\n    /**\n     * Get the show extra live panel toolbar options setting.\n     * <p>\n     *\n     * @return the true to show extra toolbar options.\n     */\n    public boolean getShowExtraLivePanelToolbarOptions() {\n        return Boolean.parseBoolean(getProperty(showExtraLivePanelToolbarOptionsKey, \"false\"));\n    }\n\n    /**\n     * Set the show extra live panel toolbar options setting.\n     * <p>\n     *\n     * @param show the extra options or leave them hidden.\n     */\n    public void setShowExtraLivePanelToolbarOptions(boolean show) {\n        setProperty(showExtraLivePanelToolbarOptionsKey, Boolean.toString(show));\n    }\n\n    /**\n     * Get the setting for whether the preview and live dividers should be linked. eg move together\n     * <p>\n     *\n     * @return true if the preview and live dividers should be linked, else false\n     */\n    public boolean getLinkPreviewAndLiveDividers() {\n        return Boolean.parseBoolean(getProperty(linkPreviewAndLiveDividers, \"true\"));\n    }\n\n    /**\n     * Determine if, when an item is removed from the schedule and displayed on\n     * the live view, whether it should be removed from the live view or kept\n     * until something replaces it.\n     * <p>\n     *\n     * @return true if it should be cleared, false otherwise.\n     */\n    public boolean getClearLiveOnRemove() {\n        return Boolean.parseBoolean(getProperty(clearLiveOnRemoveKey, \"true\"));\n    }\n\n    /**\n     * Set if, when an item is removed from the schedule and displayed on the\n     * live view, whether it should be removed from the live view or kept until\n     * something replaces it.\n     * <p>\n     *\n     * @param val true if it should be cleared, false otherwise.\n     */\n    public void setClearLiveOnRemove(boolean val) {\n        setProperty(clearLiveOnRemoveKey, Boolean.toString(val));\n    }\n\n    /**\n     * Get the location of Quelea's Facebook page.\n     * <p>\n     *\n     * @return the location of the facebook page.\n     */\n    public String getFacebookPageLocation() {\n        return getProperty(facebookPageKey, \"http://www.facebook.com/quelea.projection\");\n    }\n\n    /**\n     * Get the location of Quelea's Facebook page.\n     * <p>\n     *\n     * @return the location of the facebook page.\n     */\n    public String getWikiPageLocation() {\n        return getProperty(wikiPageKey, \"http://quelea.org/wiki/\");\n    }\n\n    /**\n     * Get the Quelea home directory in the user's directory.\n     * <p>\n     *\n     * @return the Quelea home directory.\n     */\n    public File getQueleaUserHome() {\n        File ret = new File(new File(userHome), \".quelea\");\n        if (!ret.exists()) {\n            ret.mkdir();\n        }\n        return ret;\n    }\n\n    /**\n     * Get the user's turbo db exe converter file.\n     * <p>\n     *\n     * @return the user's turbo db exe converter.\n     */\n    public File getTurboDBExe() {\n        return new File(getQueleaUserHome(), \"TdbDataX.exe\");\n    }\n\n    public int getTranslationFontSizeOffset() {\n        return Integer.parseInt(getProperty(translationFontSizeOffsetKey, \"3\"));\n    }\n\n    /**\n     * Get the font to use for stage text.\n     * <p>\n     *\n     * @return the font to use for stage text.\n     */\n    public String getStageTextFont() {\n        return getProperty(stageFontKey, \"SansSerif\");\n    }\n\n    /**\n     * Set the font to use for stage text.\n     * <p>\n     *\n     * @param font the font to use for stage text.\n     */\n    public void setStageTextFont(String font) {\n        setProperty(stageFontKey, font);\n        write();\n    }\n\n    /**\n     * Get the alignment of the text on stage view.\n     * <p>\n     *\n     * @return the alignment of the text on stage view.\n     */\n    public String getStageTextAlignment() {\n        return TextAlignment.parse(getProperty(stageTextAlignmentKey, \"LEFT\")).toFriendlyString();\n    }\n\n    /**\n     * Set the alignment of the text on stage view.\n     * <p>\n     *\n     * @param alignment the alignment of the text on stage view.\n     */\n    public void setStageTextAlignment(TextAlignment alignment) {\n        setProperty(stageTextAlignmentKey, alignment.toString());\n        write();\n    }\n\n    /**\n     * Get whether we should display the chords in stage view.\n     * <p>\n     *\n     * @return true if they should be displayed, false otherwise.\n     */\n    public boolean getShowChords() {\n        return Boolean.parseBoolean(getProperty(stageShowChordsKey, \"true\"));\n    }\n\n    /**\n     * Set whether we should display the chords in stage view.\n     * <p>\n     *\n     * @param showChords true if they should be displayed, false otherwise.\n     */\n    public void setShowChords(boolean showChords) {\n        setProperty(stageShowChordsKey, Boolean.toString(showChords));\n        write();\n    }\n\n    /**\n     * Determine whether we should phone home at startup with anonymous\n     * information. Simply put phonehome=false in the properties file to disable\n     * phonehome.\n     * <p>\n     *\n     * @return true if we should phone home, false otherwise.\n     */\n    public boolean getPhoneHome() {\n        return Boolean.parseBoolean(getProperty(phonehomeKey, \"true\"));\n    }\n\n    /**\n     * Get the directory used for storing the bibles.\n     * <p>\n     *\n     * @return the bibles directory.\n     */\n    public File getBibleDir() {\n        return new File(getQueleaUserHome(), \"bibles\");\n    }\n\n    /**\n     * Get the directory used for storing images.\n     * <p>\n     *\n     * @return the img directory\n     */\n    public File getImageDir() {\n        return new File(getQueleaUserHome(), \"img\");\n    }\n\n    /**\n     * Get the directory used for storing dictionaries.\n     * <p>\n     *\n     * @return the dictionaries directory\n     */\n    public File getDictionaryDir() {\n        return new File(getQueleaUserHome(), \"dictionaries\");\n    }\n\n    /**\n     * Get the directory used for storing videos.\n     * <p>\n     *\n     * @return the vid directory\n     */\n    public File getVidDir() {\n        return new File(getQueleaUserHome(), \"vid\");\n    }\n\n    /**\n     * Get the directory used for storing temporary recordings.\n     * <p>\n     *\n     * @return the temp directory\n     */\n    public File getTempDir() {\n        return new File(getQueleaUserHome(), \"temp\");\n    }\n\n    /**\n     * Get the extension used for quelea schedules.\n     * <p>\n     *\n     * @return the extension used for quelea schedules.\n     */\n    public String getScheduleExtension() {\n        return getProperty(queleaScheduleExtensionKey, \"qsch\");\n    }\n\n    /**\n     * Get the extension used for quelea song packs.\n     * <p>\n     *\n     * @return the extension used for quelea song packs.\n     */\n    public String getSongPackExtension() {\n        return getProperty(queleaSongpackExtensionKey, \"qsp\");\n    }\n\n    /**\n     * Get the number of the screen used for the control screen. This is the\n     * screen that the main Quelea operator window will be displayed on.\n     * <p>\n     *\n     * @return the control screen number.\n     */\n    public int getControlScreen() {\n        return Integer.parseInt(getProperty(controlScreenKey, \"0\"));\n    }\n\n    /**\n     * Set the control screen output.\n     * <p>\n     *\n     * @param screen the number of the screen to use for the output.\n     */\n    public void setControlScreen(int screen) {\n        setProperty(controlScreenKey, Integer.toString(screen));\n        write();\n    }\n\n    /**\n     * Get the one line mode.\n     * <p>\n     *\n     * @return true if one line mode should be enabled, false otherwise.\n     */\n    public boolean getOneLineMode() {\n        return Boolean.parseBoolean(getProperty(oneLineModeKey, \"false\"));\n    }\n\n    /**\n     * Set the one line mode property.\n     * <p>\n     *\n     * @param val the value of the one linde mode.\n     */\n    public void setOneLineMode(boolean val) {\n        setProperty(oneLineModeKey, Boolean.toString(val));\n        write();\n    }\n\n    /**\n     * Get the text shadow property.\n     * <p>\n     *\n     * @return true if text shadows are enabled, false otherwise.\n     */\n    public boolean getTextShadow() {\n        return Boolean.parseBoolean(getProperty(textShadowKey, \"false\"));\n    }\n\n    /**\n     * Set the text shadow property.\n     * <p>\n     *\n     * @param val true if text shadows are enabled, false otherwise.\n     */\n    public void setTextShadow(boolean val) {\n        setProperty(textShadowKey, Boolean.toString(val));\n        write();\n    }\n\n    /**\n     * Get the number of the projector screen. This is the screen that the\n     * projected output will be displayed on.\n     * <p>\n     *\n     * @return the projector screen number.\n     */\n    public int getProjectorScreen() {\n        return Integer.parseInt(getProperty(projectorScreenKey, \"1\"));\n    }\n\n    /**\n     * Set the control screen output.\n     * <p>\n     *\n     * @param screen the number of the screen to use for the output.\n     */\n    public void setProjectorScreen(int screen) {\n        setProperty(projectorScreenKey, Integer.toString(screen));\n        write();\n    }\n\n    /**\n     * Determine whether the projection screen automatically should be moved to\n     * a recently inserted monitor.\n     * * <p/>\n     *\n     * @return true if the projector screen should be moved, false otherwise.\n     */\n    public boolean getUseAutoExtend() {\n        return Boolean.parseBoolean(getProperty(useAutoExtendKey, \"false\"));\n    }\n\n    /**\n     * Set whether the projection screen automatically should be moved to a\n     * recently inserted monitor.\n     * * <p/>\n     *\n     * @param extend true if it should automatically move projection screen,\n     *               false otherwise.\n     */\n    public void setUseAutoExtend(boolean extend) {\n        setProperty(useAutoExtendKey, Boolean.toString(extend));\n    }\n\n    /**\n     * Get the maximum number of characters allowed on any one line of projected\n     * text. If the line is longer than this, it will be split up intelligently.\n     * <p>\n     *\n     * @return the maximum number of characters allowed on any one line of\n     * projected text.\n     */\n    public int getMaxChars() {\n        return Integer.parseInt(getProperty(maxCharsKey, \"30\"));\n    }\n\n    /**\n     * Set the max chars value.\n     * <p>\n     *\n     * @param maxChars the maximum number of characters allowed on any one line\n     *                 of projected text.\n     */\n    public void setMaxChars(int maxChars) {\n        setProperty(maxCharsKey, Integer.toString(maxChars));\n        write();\n    }\n\n    /**\n     * Get the custom projector co-ordinates.\n     * <p>\n     *\n     * @return the co-ordinates.\n     */\n    public Bounds getProjectorCoords() {\n        String[] prop = getProperty(projectorCoordsKey, \"0,0,0,0\").trim().split(\",\");\n        return new BoundingBox(Integer.parseInt(prop[0]),\n                Integer.parseInt(prop[1]),\n                Integer.parseInt(prop[2]),\n                Integer.parseInt(prop[3]));\n    }\n\n    /**\n     * Set the custom projector co-ordinates.\n     * <p>\n     *\n     * @param coords the co-ordinates to set.\n     */\n    public void setProjectorCoords(Bounds coords) {\n        String rectStr = Integer.toString((int) coords.getMinX())\n                + \",\" + Integer.toString((int) coords.getMinY())\n                + \",\" + Integer.toString((int) coords.getWidth())\n                + \",\" + Integer.toString((int) coords.getHeight());\n\n        setProperty(projectorCoordsKey, rectStr);\n        write();\n    }\n\n    public void setXProjectorCoord(String x) {\n        String[] prop = getProperty(projectorCoordsKey, \"0,0,0,0\").trim().split(\",\");\n        String rectStr = x\n                + \",\" + prop[1]\n                + \",\" + prop[2]\n                + \",\" + prop[3];\n        setProperty(projectorCoordsKey, rectStr);\n        write();\n    }\n\n    public void setYProjectorCoord(String y) {\n        String[] prop = getProperty(projectorCoordsKey, \"0,0,0,0\").trim().split(\",\");\n        String rectStr = prop[0]\n                + \",\" + y\n                + \",\" + prop[2]\n                + \",\" + prop[3];\n        setProperty(projectorCoordsKey, rectStr);\n        write();\n    }\n\n    public void setWidthProjectorCoord(String width) {\n        String[] prop = getProperty(projectorCoordsKey, \"0,0,0,0\").trim().split(\",\");\n        String rectStr = prop[0]\n                + \",\" + prop[1]\n                + \",\" + width\n                + \",\" + prop[3];\n        setProperty(projectorCoordsKey, rectStr);\n        write();\n    }\n\n    public void setHeightProjectorCoord(String height) {\n        String[] prop = getProperty(projectorCoordsKey, \"0,0,0,0\").trim().split(\",\");\n        String rectStr = prop[0]\n                + \",\" + prop[1]\n                + \",\" + prop[2]\n                + \",\" + height;\n        setProperty(projectorCoordsKey, rectStr);\n        write();\n    }\n\n    public void setXStageCoord(String x) {\n        String[] prop = getProperty(stageCoordsKey, \"0,0,0,0\").trim().split(\",\");\n        String rectStr = x\n                + \",\" + prop[1]\n                + \",\" + prop[2]\n                + \",\" + prop[3];\n        setProperty(stageCoordsKey, rectStr);\n        write();\n    }\n\n    public void setYStageCoord(String y) {\n        String[] prop = getProperty(stageCoordsKey, \"0,0,0,0\").trim().split(\",\");\n        String rectStr = prop[0]\n                + \",\" + y\n                + \",\" + prop[2]\n                + \",\" + prop[3];\n        setProperty(stageCoordsKey, rectStr);\n        write();\n    }\n\n    public void setWidthStageCoord(String width) {\n        String[] prop = getProperty(stageCoordsKey, \"0,0,0,0\").trim().split(\",\");\n        String rectStr = prop[0]\n                + \",\" + prop[1]\n                + \",\" + width\n                + \",\" + prop[3];\n        setProperty(stageCoordsKey, rectStr);\n        write();\n    }\n\n    public void setHeightStageCoord(String height) {\n        String[] prop = getProperty(stageCoordsKey, \"0,0,0,0\").trim().split(\",\");\n        String rectStr = prop[0]\n                + \",\" + prop[1]\n                + \",\" + prop[2]\n                + \",\" + height;\n        setProperty(stageCoordsKey, rectStr);\n        write();\n    }\n\n    /**\n     * Determine if the projector mode is set to manual co-ordinates or a screen\n     * number.\n     * <p>\n     *\n     * @return true if it's set to manual co-ordinates, false if it's a screen\n     * number.\n     */\n    public boolean isProjectorModeCoords() {\n        return \"coords\".equals(getProperty(projectorModeKey));\n    }\n\n    /**\n     * Set the projector mode to be manual co-ordinates.\n     */\n    public void setProjectorModeCoords() {\n        setProperty(projectorModeKey, \"coords\");\n        write();\n    }\n\n    /**\n     * Set the projector mode to be a screen number.\n     */\n    public void setProjectorModeScreen() {\n        setProperty(projectorModeKey, \"screen\");\n        write();\n    }\n\n    /**\n     * Get the number of the stage screen. This is the screen that the projected\n     * output will be displayed on.\n     * <p>\n     *\n     * @return the stage screen number.\n     */\n    public int getStageScreen() {\n        return Integer.parseInt(getProperty(stageScreenKey, \"-1\"));\n    }\n\n    /**\n     * Set the stage screen output.\n     * <p>\n     *\n     * @param screen the number of the screen to use for the output.\n     */\n    public void setStageScreen(int screen) {\n        setProperty(stageScreenKey, Integer.toString(screen));\n        write();\n    }\n\n    /**\n     * Get the custom stage screen co-ordinates.\n     * <p>\n     *\n     * @return the co-ordinates.\n     */\n    public Bounds getStageCoords() {\n        String[] prop = getProperty(stageCoordsKey, \"0,0,0,0\").trim().split(\",\");\n        return new BoundingBox(Integer.parseInt(prop[0]),\n                Integer.parseInt(prop[1]),\n                Integer.parseInt(prop[2]),\n                Integer.parseInt(prop[3]));\n    }\n\n    /**\n     * Set the custom stage screen co-ordinates.\n     * <p>\n     *\n     * @param coords the co-ordinates to set.\n     */\n    public void setStageCoords(Bounds coords) {\n        String rectStr = Integer.toString((int) coords.getMinX())\n                + \",\" + Integer.toString((int) coords.getMinY())\n                + \",\" + Integer.toString((int) coords.getWidth())\n                + \",\" + Integer.toString((int) coords.getHeight());\n\n        setProperty(stageCoordsKey, rectStr);\n        write();\n    }\n\n    /**\n     * Determine if the stage mode is set to manual co-ordinates or a screen\n     * number.\n     * <p>\n     *\n     * @return true if it's set to manual co-ordinates, false if it's a screen\n     * number.\n     */\n    public boolean isStageModeCoords() {\n        return \"coords\".equals(getProperty(stageModeKey));\n    }\n\n    /**\n     * Set the stage mode to be manual co-ordinates.\n     */\n    public void setStageModeCoords() {\n        setProperty(stageModeKey, \"coords\");\n        write();\n    }\n\n    /**\n     * Set the stage mode to be a screen number.\n     */\n    public void setStageModeScreen() {\n        setProperty(stageModeKey, \"screen\");\n        write();\n    }\n\n    /**\n     * Get the minimum number of lines that should be displayed on each page.\n     * This purely applies to font sizes, the font will be adjusted so this\n     * amount of lines can fit on. This stops small lines becoming huge in the\n     * preview window rather than displaying normally.\n     * <p>\n     *\n     * @return the minimum line count.\n     */\n    public int getMinLines() {\n        return Integer.parseInt(getProperty(minLinesKey, \"10\"));\n    }\n\n    /**\n     * Set the min lines value.\n     * <p>\n     *\n     * @param minLines the minimum line count.\n     */\n    public void setMinLines(int minLines) {\n        setProperty(minLinesKey, Integer.toString(minLines));\n        write();\n    }\n\n    /**\n     * Determine whether the single monitor warning should be shown (this warns\n     * the user they only have one monitor installed.)\n     * <p>\n     *\n     * @return true if the warning should be shown, false otherwise.\n     */\n    public boolean showSingleMonitorWarning() {\n        return Boolean.parseBoolean(getProperty(singleMonitorWarningKey, \"true\"));\n    }\n\n    /**\n     * Set whether the single monitor warning should be shown.\n     * <p>\n     *\n     * @param val true if the warning should be shown, false otherwise.\n     */\n    public void setSingleMonitorWarning(boolean val) {\n        setProperty(singleMonitorWarningKey, Boolean.toString(val));\n        write();\n    }\n\n    /**\n     * Get the URL to download Quelea.\n     * <p>\n     *\n     * @return the URL to download Quelea.\n     */\n    public String getDownloadLocation() {\n        return \"https://github.com/quelea-projection/Quelea/releases/\";\n    }\n\n    /**\n     * Get the URL to the Quelea website.\n     * <p>\n     *\n     * @return the URL to the Quelea website.\n     */\n    public String getWebsiteLocation() {\n        return getProperty(websiteLocationKey, \"http://www.quelea.org/\");\n    }\n\n    /**\n     * Get the URL to the Quelea discussion forum.\n     * <p>\n     *\n     * @return the URL to the Quelea discussion forum.\n     */\n    public String getDiscussLocation() {\n        return getProperty(discussLocationKey, \"https://quelea.discourse.group/\");\n    }\n\n    /**\n     * Get the URL to the Quelea feedback form.\n     * <p>\n     *\n     * @return the URL to the Quelea feedback form.\n     */\n    public String getFeedbackLocation() {\n        return getProperty(feedbackLocationKey, \"https://quelea.org/feedback/\");\n    }\n\n    /**\n     * Get the URL used for checking the latest version.\n     * <p>\n     *\n     * @return the URL used for checking the latest version.\n     */\n    public String getUpdateURL() {\n        return \"https://quelea-projection.github.io/changelog\";\n    }\n\n    /**\n     * Determine whether we should check for updates each time the program\n     * starts.\n     * <p>\n     *\n     * @return true if we should check for updates, false otherwise.\n     */\n    public boolean checkUpdate() {\n        return Boolean.parseBoolean(getProperty(checkUpdateKey, \"true\"));\n    }\n\n    /**\n     * Set whether we should check for updates each time the program starts.\n     * <p>\n     *\n     * @param val true if we should check for updates, false otherwise.\n     */\n    public void setCheckUpdate(boolean val) {\n        setProperty(checkUpdateKey, Boolean.toString(val));\n        write();\n    }\n\n    /**\n     * Determine whether the first letter of all displayed lines should be a\n     * capital.\n     * <p>\n     *\n     * @return true if it should be a capital, false otherwise.\n     */\n    public boolean checkCapitalFirst() {\n        return Boolean.parseBoolean(getProperty(capitalFirstKey, \"false\"));\n    }\n\n    /**\n     * Set whether the first letter of all displayed lines should be a capital.\n     * <p>\n     *\n     * @param val true if it should be a capital, false otherwise.\n     */\n    public void setCapitalFirst(boolean val) {\n        setProperty(capitalFirstKey, Boolean.toString(val));\n        write();\n    }\n\n    /**\n     * Determine whether the song info text should be displayed.\n     * <p>\n     *\n     * @return true if it should be a displayed, false otherwise.\n     */\n    public boolean checkDisplaySongInfoText() {\n        return Boolean.parseBoolean(getProperty(displaySonginfotextKey, \"true\"));\n    }\n\n    /**\n     * Set whether the song info text should be displayed.\n     * <p>\n     *\n     * @param val true if it should be displayed, false otherwise.\n     */\n    public void setDisplaySongInfoText(boolean val) {\n        setProperty(displaySonginfotextKey, Boolean.toString(val));\n        write();\n    }\n\n    /**\n     * Get the default bible to use.\n     * <p>\n     *\n     * @return the default bible.\n     */\n    public String getDefaultBible() {\n        return getProperty(defaultBibleKey);\n    }\n\n    /**\n     * Set the default bible.\n     * <p>\n     *\n     * @param bible the default bible.\n     */\n    public void setDefaultBible(Bible bible) {\n        setProperty(defaultBibleKey, bible.getName());\n        write();\n    }\n\n    /**\n     * Get the colour used to display chords in stage view.\n     * <p>\n     *\n     * @return the colour used to display chords in stage view.\n     */\n    public Color getStageChordColor() {\n        return getColor(getProperty(stageChordColorKey, \"200,200,200\"));\n    }\n\n\n    /**\n     * Get the colour used to display chords in stage view.\n     * <p>\n     *\n     * @return the colour used to display chords in stage view.\n     */\n    public Color getTextBackgroundColor() {\n        return getColor(getProperty(lyricsTextBackgroundColor));\n    }\n\n\n    /**\n     * Determine whether to advance the scheudle item when the current item is\n     * sent live.\n     * <p>\n     *\n     * @return true if we should auto-advance, false otherwise.\n     */\n    public boolean getTextBackgroundEnable() {\n        return Boolean.parseBoolean(getProperty(lyricsTextBackgroundEnable, \"false\"));\n    }\n\n    /**\n     * Set the colour used to display chords in stage view.\n     * <p>\n     *\n     * @param color the colour used to display chords in stage view.\n     */\n    public void setStageChordColor(Color color) {\n        setProperty(stageChordColorKey, getStr(color));\n    }\n\n    /**\n     * Get the colour used to display lyrics in stage view.\n     * <p>\n     *\n     * @return the colour used to display lyrics in stage view.\n     */\n    public Color getStageLyricsColor() {\n        return getColor(getProperty(stageLyricsColorKey, \"255,255,255\"));\n    }\n\n    /**\n     * Set the colour used to display lyrics in stage view.\n     * <p>\n     *\n     * @param color the colour used to display lyrics in stage view.\n     */\n    public void setStageLyricsColor(Color color) {\n        setProperty(stageLyricsColorKey, getStr(color));\n    }\n\n    /**\n     * Set the colour used for the background in stage view.\n     * <p>\n     *\n     * @param color the colour used for the background in stage view.\n     */\n    public void setStageBackgroundColor(Color color) {\n        setProperty(stageBackgroundColorKey, getStr(color));\n    }\n\n    /**\n     * Get the colour used for the background in stage view.\n     * <p>\n     *\n     * @return the colour used for the background in stage view.\n     */\n    public Color getStageBackgroundColor() {\n        return getColor(getProperty(stageBackgroundColorKey, \"0,0,0\"));\n    }\n\n    /**\n     * Get a color from a string.\n     * <p>\n     *\n     * @param str the string to use to get the color value.\n     * @return the color.\n     */\n    private Color getColor(String str) {\n        String[] color = str.split(\",\");\n        double red = Double.parseDouble(color[0].trim());\n        double green = Double.parseDouble(color[1].trim());\n        double blue = Double.parseDouble(color[2].trim());\n        if (red > 1 || green > 1 || blue > 1) {\n            red /= 255;\n            green /= 255;\n            blue /= 255;\n        }\n        return new Color(red, green, blue, 1);\n    }\n\n    /**\n     * Get a color value as a string.\n     * <p>\n     *\n     * @param color the color to get as a string.\n     * @return the color as a string.\n     */\n    public String getStr(Color color) {\n        return color.getRed() + \",\" + color.getGreen() + \",\" + color.getBlue();\n    }\n\n    /**\n     * Get the colour used to signify an active list.\n     * <p>\n     *\n     * @return the colour used to signify an active list.\n     */\n    public Color getActiveSelectionColor() {\n        return getColor(getProperty(activeSelectionColorKey, \"30,160,225\"));\n    }\n\n    /**\n     * Get the colour used to signify an active list.\n     * <p>\n     *\n     * @return the colour used to signify an active list.\n     */\n    public Color getInactiveSelectionColor() {\n        return getColor(getProperty(inactiveSelectionColorKey, \"150,150,150\"));\n    }\n\n    /**\n     * Get the thickness of the outline to use for displaying the text.\n     * <p>\n     *\n     * @return the outline thickness in pixels.\n     */\n    public int getOutlineThickness() {\n        return Integer.parseInt(getProperty(outlineThicknessKey, \"2\"));\n    }\n\n    /**\n     * Set the outline thickness.\n     * <p>\n     *\n     * @param px the outline thickness in pixels.\n     */\n    public void setOutlineThickness(int px) {\n        setProperty(outlineThicknessKey, Integer.toString(px));\n        write();\n    }\n\n    /**\n     * Get the notice box height (px).\n     * <p>\n     *\n     * @return the notice box height.\n     */\n    public int getNoticeBoxHeight() {\n        return Integer.parseInt(getProperty(noticeBoxHeightKey, \"40\"));\n    }\n\n    /**\n     * Set the notice box height (px).\n     * <p>\n     *\n     * @param height the notice box height.\n     */\n    public void setNoticeBoxHeight(int height) {\n        setProperty(noticeBoxHeightKey, Integer.toString(height));\n        write();\n    }\n\n    /**\n     * Get the notice box speed.\n     * <p>\n     *\n     * @return the notice box speed.\n     */\n    public int getNoticeBoxSpeed() {\n        return Integer.parseInt(getProperty(noticeBoxSpeedKey, \"8\"));\n    }\n\n    /**\n     * Set the notice box speed.\n     * <p>\n     *\n     * @param speed the notice box speed.\n     */\n    public void setNoticeBoxSpeed(int speed) {\n        setProperty(noticeBoxSpeedKey, Integer.toString(speed));\n        write();\n    }\n\n    /**\n     * Get the specially treated words that are auto-capitalised by the song\n     * importer when deciding how to un-caps-lock a line of text.\n     * <p>\n     *\n     * @return the array of God words, separated by commas in the properties\n     * file.\n     */\n    public String[] getGodWords() {\n        return getProperty(godWordsKey,\n                \"god,God,jesus,Jesus,christ,Christ,you,You,he,He,lamb,Lamb,\"\n                        + \"lord,Lord,him,Him,son,Son,i,I,his,His,your,Your,king,King,\"\n                        + \"saviour,Saviour,savior,Savior,majesty,Majesty,alpha,Alpha,omega,Omega\") //Yeah.. default testing properties.\n                .trim().split(\",\");\n    }\n\n    /**\n     * Determine whether to advance the scheudle item when the current item is\n     * sent live.\n     * <p>\n     *\n     * @return true if we should auto-advance, false otherwise.\n     */\n    public boolean getAdvanceOnLive() {\n        return Boolean.parseBoolean(getProperty(advanceOnLiveKey, \"false\"));\n    }\n\n    /**\n     * Set whether to advance the scheudle item when the current item is sent\n     * live.\n     * <p>\n     *\n     * @param val true if we should auto-advance, false otherwise.\n     */\n    public void setAdvanceOnLive(boolean val) {\n        setProperty(advanceOnLiveKey, Boolean.toString(val));\n        write();\n    }\n\n    /**\n     * Determine whether to preview the scheudle item when the background image\n     * has been updated.\n     * <p>\n     *\n     * @return true if we should preview, false otherwise.\n     */\n    public boolean getPreviewOnImageUpdate() {\n        return Boolean.parseBoolean(getProperty(previewOnImageChangeKey, \"false\"));\n    }\n\n    /**\n     * Determine whether to preview the scheudle item when the background image\n     * has been updated.\n     * <p>\n     *\n     * @param val true if we should preview, false otherwise.\n     */\n    public void setPreviewOnImageUpdate(boolean val) {\n        setProperty(previewOnImageChangeKey, Boolean.toString(val));\n        write();\n    }\n\n    /**\n     * Get whether to use openoffice for presentations.\n     * <p>\n     *\n     * @return true if we should use openoffice, false if we should just use the\n     * basic POI images.\n     */\n    public boolean getUseOO() {\n        return Boolean.parseBoolean(getProperty(useOoKey, \"false\"));\n    }\n\n    /**\n     * Set whether to use openoffice for presentations.\n     * <p>\n     *\n     * @param val if we should use openoffice, false if we should just use the\n     *            basic POI images.\n     */\n    public void setUseOO(boolean val) {\n        setProperty(useOoKey, Boolean.toString(val));\n        write();\n    }\n\n    /**\n     * Get the path to the openoffice installation on this machine.\n     * <p>\n     *\n     * @return the path to the openoffice installation on this machine.\n     */\n    public String getOOPath() {\n        return getProperty(ooPathKey, \"\");\n    }\n\n    /**\n     * Set the path to the openoffice installation on this machine.\n     * <p>\n     *\n     * @param path the path to the openoffice installation on this machine.\n     */\n    public void setOOPath(String path) {\n        setProperty(ooPathKey, path);\n        write();\n    }\n\n    /**\n     * Get whether to use PowerPoint for presentations.\n     * <p/>\n     *\n     * @return true if we should use PowerPoint, false if we should just use the\n     * basic POI images or openoffice.\n     */\n    public boolean getUsePP() {\n        return Boolean.parseBoolean(getProperty(usePpKey, \"false\"));\n    }\n\n    /**\n     * Set whether to use PowerPoint for presentations.\n     * <p/>\n     *\n     * @param val if we should use PowerPoint, false if we should just use the\n     *            basic POI images or openoffice.\n     */\n    public void setUsePP(boolean val) {\n        setProperty(usePpKey, Boolean.toString(val));\n        write();\n    }\n\n    /**\n     * Get the path to the PowerPoint installation on this machine.\n     * <p/>\n     *\n     * @return the path to the PowerPoint installation on this machine.\n     */\n    public String getPPPath() {\n        return getProperty(ppPathKey, \"\");\n    }\n\n    /**\n     * Set the path to the PowerPoint installation on this machine.\n     * <p/>\n     *\n     * @param path the path to the PowerPoint installation on this machine.\n     */\n    public void setPPPath(String path) {\n        setProperty(ppPathKey, path);\n        write();\n    }\n\n    /**\n     * Get the path to the desired directory for recordings.\n     * <p>\n     *\n     * @return the path to the desired directory for recordings.\n     */\n    public String getRecordingsPath() {\n        return getProperty(recPathKey, \"\");\n    }\n\n    /**\n     * Set the path to the desired directory for recordings.\n     * <p>\n     *\n     * @param path the path to the desired directory for recordings.\n     */\n    public void setRecordingsPath(String path) {\n        setProperty(recPathKey, path);\n        write();\n    }\n\n    /**\n     * Get the path to the desired directory for downloading.\n     * <p/>\n     *\n     * @return the path to the desired directory for recordings.\n     */\n    public String getDownloadPath() {\n        return getProperty(downloadPathKey, \"\");\n    }\n\n    /**\n     * Set the path to the desired directory for downloading.\n     * <p/>\n     *\n     * @param path the path to the desired directory for downloading.\n     */\n    public void setDownloadPath(String path) {\n        setProperty(downloadPathKey, path);\n        write();\n    }\n\n    /**\n     * Determine if the recordings should be converted to MP3 files.\n     * <p>\n     *\n     * @return true if recordings should be converted, false otherwise.\n     */\n    public boolean getConvertRecordings() {\n        return Boolean.parseBoolean(getProperty(convertMp3Key, \"false\"));\n    }\n\n    /**\n     * Set whether to automatically convert the recordings to MP3 files.\n     * <p>\n     *\n     * @param val if we should use covert to MP#, false if we should just store\n     *            recordings as WAV files.\n     */\n    public void setConvertRecordings(boolean val) {\n        setProperty(convertMp3Key, Boolean.toString(val));\n        write();\n    }\n\n    /**\n     * Determine if the OO presentation should be always on top or not. Not user\n     * controlled, but useful for testing.\n     * <p>\n     *\n     * @return true if the presentation should be always on top, false\n     * otherwise.\n     */\n    public boolean getOOPresOnTop() {\n        return Boolean.parseBoolean(getProperty(ooOntopKey, \"true\"));\n    }\n\n    /**\n     * Sets the logo image location for persistent use\n     * <p>\n     *\n     * @param location File location\n     */\n    public void setLogoImage(String location) {\n        setProperty(logoImageLocationKey, location);\n        write();\n    }\n\n    /**\n     * Return the location of the logo image\n     * <p>\n     *\n     * @return the logo image\n     */\n    public String getLogoImageURI() {\n        return new File(getProperty(logoImageLocationKey, \"icons/logo default.png\")).toURI().toString();\n    }\n\n    /**\n     * Sets the port used for mobile lyrics display.\n     * <p>\n     *\n     * @param port the port used for mobile lyrics display.\n     */\n    public void setMobLyricsPort(int port) {\n        setProperty(mobLyricsPortKey, Integer.toString(port));\n        write();\n    }\n\n    /**\n     * Gets the port used for mobile lyrics display.\n     * <p>\n     *\n     * @return the port used for mobile lyrics display.\n     */\n    public int getMobLyricsPort() {\n        return Integer.parseInt(getProperty(mobLyricsPortKey, \"1111\"));\n    }\n\n    /**\n     * Determine if we should use mobile lyrics.\n     * <p>\n     *\n     * @return true if we should, false otherwise.\n     */\n    public boolean getUseMobLyrics() {\n        return Boolean.parseBoolean(getProperty(useMobLyricsKey, \"false\"));\n    }\n\n    /**\n     * Set if we should use mobile lyrics.\n     * <p>\n     *\n     * @param val true if we should, false otherwise.\n     */\n    public void setUseMobLyrics(boolean val) {\n        setProperty(useMobLyricsKey, Boolean.toString(val));\n        write();\n    }\n\n    public void setUseRemoteControl(boolean val) {\n        setProperty(useRemoteControlKey, Boolean.toString(val));\n        write();\n    }\n\n    /**\n     * Determine if we should set up remote control server.\n     * <p>\n     *\n     * @return true if we should, false otherwise.\n     */\n    public boolean getUseRemoteControl() {\n        return Boolean.parseBoolean(getProperty(useRemoteControlKey, \"false\"));\n    }\n\n    /**\n     * Gets the port used for remote control server.\n     * <p>\n     *\n     * @return the port used for mobile lyrics display.\n     */\n    public int getRemoteControlPort() {\n        try {\n            return Integer.parseInt(getProperty(remoteControlPortKey, \"1112\"));\n        } catch (NumberFormatException e) {\n            return 1112;\n        }\n    }\n\n    public void setRemoteControlPort(int port) {\n        setProperty(remoteControlPortKey, Integer.toString(port));\n        write();\n    }\n\n    public void setRemoteControlPassword(String text) {\n        setProperty(remoteControlPasswordKey, text);\n        write();\n    }\n\n    public String getRemoteControlPassword() {\n        return getProperty(remoteControlPasswordKey, \"quelea\");\n    }\n\n    public void setPlanningCenterRefreshToken(String text) {\n        setProperty(planningCenterRefreshToken, text);\n        write();\n    }\n\n    public String getPlanningCenterRefreshToken() {\n        return getProperty(planningCenterRefreshToken, null);\n    }\n\n    public String getSmallSongTextPositionH() {\n        return getProperty(smallSongTextHPositionKey, \"right\");\n    }\n\n    public void setSmallSongTextPositionH(String position) {\n        setProperty(smallSongTextHPositionKey, position);\n        write();\n    }\n\n    public String getSmallSongTextPositionV() {\n        return getProperty(smallSongTextVPositionKey, \"bottom\");\n    }\n\n    public void setSmallSongTextPositionV(String position) {\n        setProperty(smallSongTextVPositionKey, position);\n        write();\n    }\n\n    public Double getSmallSongTextSize() {\n        return Double.parseDouble(getProperty(smallSongTextSizeKey, \"0.1\"));\n    }\n\n    public void setSmallSongTextSize(double size) {\n        setProperty(smallSongTextSizeKey, Double.toString(size));\n        write();\n    }\n\n    public String getSmallSongTextShowOnSlides() {\n        return getProperty(smallSongTextShowOnSlidesKey, \"all\");\n    }\n\n    public void setSmallSongTextShowOnSlides(String showOnSlides) {\n        setProperty(smallSongTextShowOnSlidesKey, showOnSlides);\n        write();\n    }\n\n    public String getSmallBibleTextPositionH() {\n        return getProperty(smallBibleTextHPositionKey, \"right\");\n    }\n\n    public void setSmallBibleTextPositionH(String position) {\n        setProperty(smallBibleTextHPositionKey, position);\n        write();\n    }\n\n    public String getSmallBibleTextPositionV() {\n        return getProperty(smallBibleTextVPositionKey, \"bottom\");\n    }\n\n    public void setSmallBibleTextPositionV(String position) {\n        setProperty(smallBibleTextVPositionKey, position);\n        write();\n    }\n\n    public Double getSmallBibleTextSize() {\n        return Double.parseDouble(getProperty(smallBibleTextSizeKey, \"0.1\"));\n    }\n\n    public void setSmallBibleTextSize(double size) {\n        setProperty(smallBibleTextSizeKey, Double.toString(size));\n        write();\n    }\n\n    public boolean getSmallSongTextShow() {\n        return Boolean.parseBoolean(getProperty(showSmallSongTextKey, \"true\"));\n    }\n\n    public void setSmallSongTextShow(boolean show) {\n        setProperty(showSmallSongTextKey, Boolean.toString(show));\n        write();\n    }\n\n    public boolean getSmallBibleTextShow() {\n        return Boolean.parseBoolean(getProperty(showSmallBibleTextKey, \"true\"));\n    }\n\n    public void setSmallBibleTextShow(boolean show) {\n        setProperty(showSmallBibleTextKey, Boolean.toString(show));\n        write();\n    }\n\n    /**\n     * Get how many words or verses to show per slide\n     *\n     * @return number of words or verses (depends on use.max.bible.verses)\n     */\n    public int getMaxBibleVerses() {\n        return Integer.parseInt(getProperty(maxBibleVersesKey, \"5\"));\n    }\n\n    public void setMaxBibleVerses(int number) {\n        setProperty(maxBibleVersesKey, Integer.toString(number));\n        write();\n    }\n\n    /**\n     * Get whether the max items is verses or words\n     *\n     * @return true if using maximum verses per slide\n     */\n    public boolean getBibleUsingMaxChars() {\n        return Boolean.parseBoolean(getProperty(useMaxBibleCharsKey, \"true\"));\n    }\n\n    public void setBibleUsingMaxChars(boolean useChars) {\n        setProperty(useMaxBibleCharsKey, Boolean.toString(useChars));\n        write();\n    }\n\n    /**\n     * Get the maximum number of characters allowed on any one line of bible\n     * text.\n     * <p>\n     *\n     * @return the maximum number of characters allowed on any one line of bible\n     * text.\n     */\n    public int getMaxBibleChars() {\n        return Integer.parseInt(getProperty(maxBibleCharsKey, \"80\"));\n    }\n\n    /**\n     * Set the max bible chars value.\n     * <p>\n     *\n     * @param maxChars the maximum number of characters allowed on any one line\n     *                 of bible text.\n     */\n    public void setMaxBibleChars(int maxChars) {\n        setProperty(maxBibleCharsKey, Integer.toString(maxChars));\n        write();\n    }\n\n    /**\n     * Get the fade duration of the logo button text.\n     * <p>\n     *\n     * @return the duration of the fade in milliseconds text.\n     */\n    public int getLogoFadeDuration() {\n        String t = getProperty(logoFadeDurationKey, \"\");\n        if (t.equals(\"\")) {\n            t = \"1000\";\n            setProperty(logoFadeDurationKey, t);\n            write();\n        }\n        return Integer.parseInt(t);\n    }\n\n    /**\n     * Get the fade duration of the black button text.\n     * <p>\n     *\n     * @return the duration of the fade in milliseconds text.\n     */\n    public int getBlackFadeDuration() {\n        String t = getProperty(blackFadeDurationKey, \"\");\n        if (t.equals(\"\")) {\n            t = \"1000\";\n            setProperty(blackFadeDurationKey, t);\n            write();\n        }\n        return Integer.parseInt(t);\n    }\n\n    /**\n     * Get the fade duration of the clear button text.\n     * <p>\n     *\n     * @return the duration of the fade in milliseconds text.\n     */\n    public int getClearFadeDuration() {\n        String t = getProperty(clearFadeDurationKey, \"\");\n        if (t.equals(\"\")) {\n            t = \"1000\";\n            setProperty(clearFadeDurationKey, t);\n            write();\n        }\n        return Integer.parseInt(t);\n    }\n\n    /**\n     * Get the Translate ID from the properties file\n     * <p>\n     *\n     * @return the translate ID\n     */\n    public String getTranslateClientID() {\n        String t = getProperty(translateClientIdKey, \"\");\n        if (t.equals(\"\")) {\n            t = \"quelea-projection\";\n            setProperty(translateClientIdKey, t);\n            write();\n        }\n        return t;\n    }\n\n    /**\n     * Get the Translate secret key from the properties file\n     * <p>\n     *\n     * @return the translate secret key\n     */\n    public String getTranslateClientSecret() {\n        String t = getProperty(translateClientSecretKey, \"\");\n        if (t.equals(\"\")) {\n            t = \"wk4+wd9YJkjIHmz2qwD1oR7pP9/kuHOL6OsaOKEi80U=\";\n            setProperty(translateClientSecretKey, t);\n            write();\n        }\n        return t;\n    }\n\n    public boolean getClearStageWithMain() {\n        return Boolean.parseBoolean(getProperty(clearStageviewWithMainKey, \"true\"));\n    }\n\n    public void setClearStageWithMain(boolean clear) {\n        setProperty(clearStageviewWithMainKey, Boolean.toString(clear));\n        write();\n    }\n\n    public boolean getBlackStageWithMain() {\n        return Boolean.parseBoolean(getProperty(blackStageviewWithMainKey, \"true\"));\n    }\n\n    public void setBlackStageWithMain(boolean black) {\n        setProperty(blackStageviewWithMainKey, Boolean.toString(black));\n        write();\n    }\n\n    public boolean getDisableVideo() {\n        return Boolean.parseBoolean(getProperty(disableVideoKey, \"false\"));\n    }\n\n    /**\n     * Get the directory used for storing countdown timers.\n     * <p>\n     *\n     * @return the timer directory\n     */\n    public File getTimerDir() {\n        return new File(getQueleaUserHome(), \"timer\");\n    }\n\n    public boolean getSongOverflow() {\n        return Boolean.parseBoolean(getProperty(songOverflowKey, \"false\"));\n    }\n\n    public void setSongOverflow(boolean overflow) {\n        setProperty(songOverflowKey, Boolean.toString(overflow));\n        write();\n    }\n\n    public int getAutoDetectPort() {\n        return Integer.parseInt(getProperty(autoDetectPortKey, \"50015\"));\n    }\n\n    public boolean getStageShowClock() {\n        return Boolean.parseBoolean(getProperty(stageShowClockKey, \"true\"));\n    }\n\n    public boolean getUse24HourClock() {\n        return Boolean.parseBoolean(getProperty(use24hClockKey, \"true\"));\n    }\n\n    public void setUse24HourClock(boolean s24h) {\n        setProperty(use24hClockKey, Boolean.toString(s24h));\n        write();\n    }\n\n    public boolean getBibleSplitVerses() {\n        return Boolean.parseBoolean(getProperty(splitBibleVersesKey, \"false\"));\n    }\n\n    public void setBibleSplitVerses(boolean selected) {\n        setProperty(splitBibleVersesKey, Boolean.toString(selected));\n        write();\n    }\n\n    public double getLyricWidthBounds() {\n        return Double.parseDouble(getProperty(lyricWidthBoundKey, \"0.92\"));\n    }\n\n    public double getLyricHeightBounds() {\n        return Double.parseDouble(getProperty(lyricHeightBoundKey, \"0.9\"));\n    }\n\n    public boolean getDefaultSongDBUpdate() {\n        return Boolean.parseBoolean(getProperty(defaultSongDbUpdateKey, \"true\"));\n    }\n\n    public boolean getShowDBSongPreview() {\n        return Boolean.parseBoolean(getProperty(dbSongPreviewKey, \"false\"));\n    }\n\n    public void setShowDBSongPreview(boolean val) {\n        setProperty(dbSongPreviewKey, Boolean.toString(val));\n    }\n\n    public boolean getImmediateSongDBPreview() {\n        return Boolean.parseBoolean(getProperty(\"db.song.immediate.preview\", \"false\"));\n    }\n\n    public void setImmediateSongDBPreview(boolean val) {\n        setProperty(\"db.song.immediate.preview\", Boolean.toString(val));\n    }\n\n    public void setDefaultSongDBUpdate(boolean updateInDB) {\n        setProperty(defaultSongDbUpdateKey, Boolean.toString(updateInDB));\n        write();\n    }\n\n    public int getWebDisplayableRefreshRate() {\n        return Integer.parseInt(getProperty(webRefreshRateKey, \"500\"));\n    }\n\n    public String getWebProxyHost() {\n        return getProperty(webProxyHostKey, null);\n    }\n\n    public String getWebProxyPort() {\n        return getProperty(webProxyPortKey, null);\n    }\n\n    public String getWebProxyUser() {\n        return getProperty(webProxyUserKey, null);\n    }\n\n    public String getWebProxyPassword() {\n        return getProperty(webProxyPasswordKey, null);\n    }\n\n    public String getChurchCcliNum() {\n        return getProperty(churchCcliNumKey, null);\n    }\n\n    /**\n     * Get the directory used for storing notices.\n     * <p>\n     *\n     * @return the notice directory\n     */\n    public File getNoticeDir() {\n        return new File(getQueleaUserHome(), \"notices\");\n    }\n\n    public String[] getAddAndGoLiveKeys() {\n        return getProperty(\"add.and.go.live.keys\", \"Ctrl,Alt,L\").split(\",\");\n    }\n    public String[] getNewSongKeys() {\n        return getProperty(\"new.song.keys\", \"Ctrl,Alt,N\").split(\",\");\n    }\n\n    public String[] getSearchKeys() {\n        return getProperty(\"search.keys\", \"Ctrl,L\").split(\",\");\n    }\n\n    public String[] getOptionsKeys() {\n        return getProperty(\"options.keys\", \"Shortcut,T\").split(\",\");\n    }\n\n    public String[] getLiveTextKeys() {\n        return getProperty(\"live.text.keys\", \"Shortcut,Shift,L\").split(\",\");\n    }\n\n    public String[] getLogoKeys() {\n        return getProperty(\"logo.keys\", \"F5\").split(\",\");\n    }\n\n    public String[] getBlackKeys() {\n        return getProperty(\"black.keys\", \"F6\").split(\",\");\n    }\n\n    public String[] getClearKeys() {\n        return getProperty(\"clear.keys\", \"F7\").split(\",\");\n    }\n\n    public String[] getHideKeys() {\n        return getProperty(\"hide.keys\", \"F8\").split(\",\");\n    }\n\n    public String[] getAdvanceKeys() {\n        return getProperty(\"advance.keys\", \"Page Down\").split(\",\");\n    }\n\n    public String[] getPreviousKeys() {\n        return getProperty(\"previous.keys\", \"Page Up\").split(\",\");\n    }\n\n    public String[] getNoticesKeys() {\n        return getProperty(\"notices.keys\", \"Ctrl,M\").split(\",\");\n    }\n\n    public String[] getScheduleFocusKeys() {\n        return getProperty(\"schedule.focus.keys\", \"Ctrl,D\").split(\",\");\n    }\n\n    public String[] getBibleFocusKeys() {\n        return getProperty(\"bible.focus.keys\", \"Ctrl,B\").split(\",\");\n    }\n\n    /**\n     * Set whether fade should be used.\n     *\n     * @param useFade true if fade should be used\n     */\n    public void setUseSlideTransition(boolean useFade) {\n        setProperty(useSlideTransitionKey, Boolean.toString(useFade));\n    }\n\n    /**\n     * Determine whether fade should be used.\n     *\n     * @return true if fade is enabled, false otherwise.\n     */\n    public boolean getUseSlideTransition() {\n        return Boolean.parseBoolean(getProperty(useSlideTransitionKey, \"false\"));\n    }\n\n    /**\n     * Set the slide transition in duration.\n     *\n     * @param millis milliseconds for fade-in effect.\n     */\n    public void setSlideTransitionInDuration(int millis) {\n        setProperty(slideTransitionInDurationKey, Integer.toString(millis));\n    }\n\n    /**\n     * Get the slide transition in duration.\n     *\n     * @return milliseconds for fade-in effect.\n     */\n    public int getSlideTransitionInDuration() {\n        return Integer.parseInt(getProperty(slideTransitionInDurationKey, \"750\"));\n    }\n\n    /**\n     * Get the slide transition out duration.\n     *\n     * @return milliseconds for fade-out effect.\n     */\n    public int getSlideTransitionOutDuration() {\n        return Integer.parseInt(getProperty(slideTransitionOutDurationKey, \"400\"));\n    }\n\n    /**\n     * Set the slide transition out duration.\n     *\n     * @param millis milliseconds for fade-out effect.\n     */\n    public void setSlideTransitionOutDuration(int millis) {\n        setProperty(slideTransitionOutDurationKey, Integer.toString(millis));\n    }\n\n    public boolean getUseDarkTheme() {\n        return Boolean.parseBoolean(getProperty(darkThemeKey, \"false\"));\n    }\n\n    public void setUseDarkTheme(boolean useDarkTheme) {\n        setProperty(darkThemeKey, String.valueOf(useDarkTheme));\n    }\n\n    public boolean getDisableDirectShowForWVC1() {\n        return Boolean.parseBoolean(getProperty(disableDirectShowForWVC1Key, \"true\"));\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/utils/QueleaPropertyKeys.java",
    "content": "package org.quelea.services.utils;\n\npublic class QueleaPropertyKeys {\n    public static final String languageFileKey = \"language.file\";\n    public static final String enableDictKey = \"enable.dict\";\n    public static final String videoTabKey = \"video.tab\";\n    public static final String sceneInfoKey = \"scene.info\";\n    public static final String mainDivposKey = \"main.divpos\";\n    public static final String elevantoClientIdKey = \"elevanto.client.id\";\n    public static final String libraryDivposKey = \"library.divpos\";\n    public static final String preliveDivposKey = \"prelive.divpos\";\n    public static final String canvasDivposKey = \"canvas.divpos\";\n    public static final String previewDivposKey = \"preview.divpos\";\n    public static final String chosenFontsKey = \"chosen.fonts\";\n    public static final String uniformFontSizeKey = \"uniform.font.size\";\n    public static final String showVerseNumbersKey = \"show.verse.numbers\";\n    public static final String noticeBackgroundColourKey = \"notice.background.colour\";\n    public static final String noticePositionKey = \"notice.position\";\n    public static final String noticeSpeedKey = \"notice.speed\";\n    public static final String lastDirectoryKey = \"last.directory\";\n    public static final String lastSchedulefileDirectoryKey = \"last.schedulefile.directory\";\n    public static final String scheduleEmbedMediaKey = \"schedule.embed.media\";\n    public static final String itemThemeOverrideKey = \"item.theme.override\";\n    public static final String globalSongThemeFileKey = \"global.song.theme.file\";\n    public static final String globalBibleThemeFileKey = \"global.bible.theme.file\";\n    public static final String lastVideoDirectoryKey = \"last.video.directory\";\n    public static final String autoplayVidKey = \"autoplay.vid\";\n    public static final String useVlcJavafxRenderingKey = \"use.vlc.javafx.rendering\";\n    public static final String noticeFontSizeKey = \"notice.font.size\";\n    public static final String autoTranslateKey = \"auto.translate\";\n    public static final String maxFontSizeKey = \"max.font.size\";\n    public static final String additionalLineSpacingKey = \"additional.line.spacing\";\n    public static final String thumbnailSizeKey = \"thumbnail.size\";\n    public static final String planningCentrePrevDaysKey = \"planning.center.prev.days\";\n    public static final String showExtraLivePanelToolbarOptionsKey = \"show.extra.live.panel.toolbar.options\";\n    public static final String linkPreviewAndLiveDividers = \"link.preview.and.live.dividers\";\n    public static final String clearLiveOnRemoveKey = \"clear.live.on.remove\";\n    public static final String facebookPageKey = \"facebook.page\";\n    public static final String wikiPageKey = \"wiki.page\";\n    public static final String translationFontSizeOffsetKey = \"translation.font.size.offset\";\n    public static final String stageFontKey = \"stage.font\";\n    public static final String stageTextAlignmentKey = \"stage.text.alignment\";\n    public static final String stageShowChordsKey = \"stage.show.chords\";\n    public static final String phonehomeKey = \"phonehome\";\n    public static final String queleaScheduleExtensionKey = \"quelea.schedule.extension\";\n    public static final String queleaSongpackExtensionKey = \"quelea.songpack.extension\";\n    public static final String controlScreenKey = \"control.screen\";\n    public static final String oneLineModeKey = \"one.line.mode\";\n    public static final String textShadowKey = \"text.shadow\";\n    public static final String projectorScreenKey = \"projector.screen\";\n    public static final String useAutoExtendKey = \"use.auto.extend\";\n    public static final String maxCharsKey = \"max.chars\";\n    public static final String projectorCoordsKey = \"projector.coords\";\n    public static final String projectorModeKey = \"projector.mode\";\n    public static final String stageScreenKey = \"stage.screen\";\n    public static final String stageCoordsKey = \"stage.coords\";\n    public static final String stageModeKey = \"stage.mode\";\n    public static final String minLinesKey = \"min.lines\";\n    public static final String singleMonitorWarningKey = \"single.monitor.warning\";\n    public static final String websiteLocationKey = \"website.location\";\n    public static final String discussLocationKey = \"discuss.location\";\n    public static final String feedbackLocationKey = \"feedback.location\";\n    public static final String checkUpdateKey = \"check.update\";\n    public static final String capitalFirstKey = \"capital.first\";\n    public static final String displaySonginfotextKey = \"display.songinfotext\";\n    public static final String defaultBibleKey = \"default.bible\";\n    public static final String stageChordColorKey = \"stage.chord.color\";\n    public static final String lyricsTextBackgroundEnable = \"lyrics.text.background.enable\";\n    public static final String lyricsTextBackgroundColor = \"lyrics.text.background.color\";\n    public static final String stageLyricsColorKey = \"stage.lyrics.color\";\n    public static final String stageBackgroundColorKey = \"stage.background.color\";\n    public static final String activeSelectionColorKey = \"active.selection.color\";\n    public static final String inactiveSelectionColorKey = \"inactive.selection.color\";\n    public static final String outlineThicknessKey = \"outline.thickness\";\n    public static final String noticeBoxHeightKey = \"notice.box.height\";\n    public static final String noticeBoxSpeedKey = \"notice.box.speed\";\n    public static final String godWordsKey = \"god.words\";\n    public static final String advanceOnLiveKey = \"advance.on.live\";\n    public static final String previewOnImageChangeKey = \"preview.on.image.change\";\n    public static final String useOoKey = \"use.oo\";\n    public static final String ooPathKey = \"oo.path\";\n    public static final String usePpKey = \"use.pp\";\n    public static final String ppPathKey = \"pp.path\";\n    public static final String recPathKey = \"rec.path\";\n    public static final String downloadPathKey = \"download.path\";\n    public static final String convertMp3Key = \"convert.mp3\";\n    public static final String ooOntopKey = \"oo.ontop\";\n    public static final String logoImageLocationKey = \"logo.image.location\";\n    public static final String mobLyricsPortKey = \"mob.lyrics.port\";\n    public static final String useMobLyricsKey = \"use.mob.lyrics\";\n    public static final String planningCenterRefreshToken = \"planning.center.refresh.token\";\n    public static final String useRemoteControlKey = \"use.remote.control\";\n    public static final String remoteControlPortKey = \"remote.control.port\";\n    public static final String remoteControlPasswordKey = \"remote.control.password\";\n    public static final String smallSongTextHPositionKey = \"small.song.text.h.position\";\n    public static final String smallSongTextVPositionKey = \"small.song.text.v.position\";\n    public static final String smallSongTextSizeKey = \"small.song.text.size\";\n    public static final String smallSongTextShowOnSlidesKey = \"small.song.text.show.on.slides\";\n    public static final String smallBibleTextHPositionKey = \"small.bible.text.h.position\";\n    public static final String smallBibleTextVPositionKey = \"small.bible.text.v.position\";\n    public static final String smallBibleTextSizeKey = \"small.bible.text.size\";\n    public static final String showSmallSongTextKey = \"show.small.song.text\";\n    public static final String showSmallBibleTextKey = \"show.small.bible.text\";\n    public static final String maxBibleVersesKey = \"max.bible.verses\";\n    public static final String useMaxBibleCharsKey = \"use.max.bible.chars\";\n    public static final String maxBibleCharsKey = \"max.bible.chars\";\n    public static final String logoFadeDurationKey = \"logo.fade.duration\";\n    public static final String blackFadeDurationKey = \"black.fade.duration\";\n    public static final String clearFadeDurationKey = \"clear.fade.duration\";\n    public static final String translateClientIdKey = \"translate.client.id\";\n    public static final String translateClientSecretKey = \"translate.client.secret\";\n    public static final String clearStageviewWithMainKey = \"clear.stageview.with.main\";\n    public static final String blackStageviewWithMainKey = \"black.stageview.with.main\";\n    public static final String disableVideoKey = \"disable.video\";\n    public static final String songOverflowKey = \"song.overflow\";\n    public static final String autoDetectPortKey = \"auto.detect.port\";\n    public static final String stageShowClockKey = \"stage.show.clock\";\n    public static final String use24hClockKey = \"use.24h.clock\";\n    public static final String splitBibleVersesKey = \"split.bible.verses\";\n    public static final String lyricWidthBoundKey = \"lyric.width.bound\";\n    public static final String lyricHeightBoundKey = \"lyric.height.bound\";\n    public static final String defaultSongDbUpdateKey = \"default.song.db.update\";\n    public static final String dbSongPreviewKey = \"db.song.preview\";\n    public static final String webRefreshRateKey = \"web.refresh.rate\";\n    public static final String webProxyHostKey = \"web.proxy.host\";\n    public static final String webProxyPortKey = \"web.proxy.port\";\n    public static final String webProxyUserKey = \"web.proxy.user\";\n    public static final String webProxyPasswordKey = \"web.proxy.password\";\n    public static final String churchCcliNumKey = \"church.ccli.num\";\n    public static final String projectorXCoordKey = \"projector.x.coord\";\n    public static final String projectorYCoordKey = \"projector.y.coord\";\n    public static final String projectorWCoordKey = \"projector.width.coord\";\n    public static final String projectorHCoordKey = \"projector.height.coord\";\n    public static final String stageXCoordKey = \"stage.x.coord\";\n    public static final String stageYCoordKey = \"stage.y.coord\";\n    public static final String stageWCoordKey = \"stage.width.coord\";\n    public static final String stageHCoordKey = \"stage.height.coord\";\n    public static final String darkThemeKey = \"use.dark.theme\";\n    public static final String useSlideTransitionKey = \"use.fade\";\n    public static final String slideTransitionInDurationKey = \"slide.transition.duration.in\";\n    public static final String slideTransitionOutDurationKey = \"slide.transition.duration.out\";\n    public static final String useDefaultTranslation = \"use.default.translation\";\n    public static final String defaultTranslationName = \"default.translation.name\";\n    public static final String disableDirectShowForWVC1Key = \"disable.directshow.for.wvc1\";\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/utils/ReleaseSummaryGenerator.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.utils;\n\nimport java.io.File;\nimport java.io.IOException;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\nimport java.security.MessageDigest;\nimport java.security.NoSuchAlgorithmException;\nimport java.util.HashMap;\nimport java.util.Map;\nimport java.util.Map.Entry;\n\n/**\n * Generates release summary information in markdown.\n * @author Michael\n */\npublic class ReleaseSummaryGenerator {\n    \n    public static void main(String[] args) throws IOException, NoSuchAlgorithmException {\n        Map<String, String> hashes = new HashMap<>();\n        for(File releaseFile : new File(\"dist/standalone\").listFiles()) {\n            if(releaseFile.getName().toLowerCase().contains(\"windows\") && releaseFile.getName().toLowerCase().contains(\"x64\")) {\n                hashes.put(\"Windows x64\", sha256(releaseFile.getAbsolutePath()));\n            }\n            else if(releaseFile.getName().toLowerCase().contains(\"crossplatform\")) {\n                hashes.put(\"Crossplatform\", sha256(releaseFile.getAbsolutePath()));\n            }\n            else if(releaseFile.getName().toLowerCase().contains(\"mac\")) {\n                hashes.put(\"Mac\", sha256(releaseFile.getAbsolutePath()));\n            }\n        }\n        \n        String snapFlag = \"\";\n        switch (QueleaProperties.VERSION.getUnstableName()) {\n            case BETA:\n                snapFlag = \"--beta \";\n                break;\n            case CI:\n                snapFlag = \"--edge \";\n                break;\n        }\n        \n        String release = \"Quelea is also distributed as a Linux snap package. To install it, make sure snap is installed then run:\"\n                + \"<pre>sudo snap install \" + snapFlag + \"quelea</pre>\"\n                + \"<h3>SHA256 hashes:</h3>\"\n                + \"<table>\";\n        \n        for(Entry<String, String> hash : hashes.entrySet()) {\n            release += \"<tr><th>\" + hash.getKey() + \"</th><td>\" + hash.getValue() + \"</td></tr>\";\n        }\n        release += \"</table>\";\n        \n        String changelogFile = \"changelogs/changelog-\" + QueleaProperties.VERSION.getVersionString()+ \".txt\";\n        if(new File(changelogFile).exists() && QueleaProperties.VERSION.getUnstableName()!=VersionType.CI) {\n            release += \"\\n\\nFull changelog:\\n\";\n            release += getVersionFileText(changelogFile);\n        }\n        \n        System.out.println(\"Release documentation (to paste into Markdown):\\n\");\n        System.out.println(release);\n    }\n    \n    private static String getVersionFileText(String str) throws IOException {\n        byte[] encoded = Files.readAllBytes(Paths.get(str));\n        String ret = new String(encoded);\n        ret = ret.substring(ret.indexOf('\\n')+1);\n        return ret;\n    }\n    \n    private static String sha256(String input) throws NoSuchAlgorithmException {\n        MessageDigest mDigest = MessageDigest.getInstance(\"SHA-256\");\n        byte[] result = mDigest.digest(input.getBytes());\n        StringBuilder sb = new StringBuilder();\n        for (int i = 0; i < result.length; i++) {\n            sb.append(Integer.toString((result[i] & 0xff) + 0x100, 16).substring(1));\n        }\n        return sb.toString();\n    }\n    \n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/utils/SceneInfo.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * Copyright (C) 2012 Michael Berry\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.utils;\n\nimport javafx.geometry.Rectangle2D;\n\n/**\n * The scene info used for storing the position and size of the main window\n * between runs of Quelea. Just a convenience class really; nothing fancy going\n * on here.\n * <p/>\n * @author Michael\n */\npublic class SceneInfo {\n\n    private int x;\n    private int y;\n    private int w;\n    private int h;\n    private boolean max;\n\n    public SceneInfo(double x, double y, double w, double h, boolean max) {\n        this.x = (int) x;\n        this.y = (int) y;\n        this.w = (int) w;\n        this.h = (int) h;\n        this.max = max;\n    }\n\n    public int getX() {\n        return x;\n    }\n\n    public int getY() {\n        return y;\n    }\n\n    public int getWidth() {\n        return w;\n    }\n\n    public int getHeight() {\n        return h;\n    }\n    \n    public Rectangle2D getBounds() {\n        return new Rectangle2D(x, y, w, h);\n    }\n    \n    public boolean isMaximised() {\n        return max;\n    }\n\n    @Override\n    public String toString() {\n        return x + \",\" + y + \",\" + w + \",\" + h + \",\" + max;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/utils/SerializableColor.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * Copyright (C) 2012 Michael Berry\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.utils;\n\nimport java.io.Serializable;\nimport javafx.scene.paint.Color;\n\n/**\n * A class that wraps the JavaFX colour so it can be serialized.\n *\n * @author Michael\n */\npublic class SerializableColor implements Serializable {\n\n    private double r, g, b, a = 1;\n\n    public SerializableColor(Color color) {\n        if (color != null) {\n            r = color.getRed();\n            g = color.getGreen();\n            b = color.getBlue();\n            a = color.getOpacity();\n        }\n    }\n\n    public Color getColor() {\n        return new Color(r, g, b, a);\n    }\n\n    @Override\n    public int hashCode() {\n        int hash = 7;\n        hash = 37 * hash + (int) (Double.doubleToLongBits(this.r) ^ (Double.doubleToLongBits(this.r) >>> 32));\n        hash = 37 * hash + (int) (Double.doubleToLongBits(this.g) ^ (Double.doubleToLongBits(this.g) >>> 32));\n        hash = 37 * hash + (int) (Double.doubleToLongBits(this.b) ^ (Double.doubleToLongBits(this.b) >>> 32));\n        hash = 37 * hash + (int) (Double.doubleToLongBits(this.a) ^ (Double.doubleToLongBits(this.a) >>> 32));\n        return hash;\n    }\n\n    @Override\n    public boolean equals(Object obj) {\n        if (obj == null) {\n            return false;\n        }\n        if (getClass() != obj.getClass()) {\n            return false;\n        }\n        final SerializableColor other = (SerializableColor) obj;\n        if (Double.doubleToLongBits(this.r) != Double.doubleToLongBits(other.r)) {\n            return false;\n        }\n        if (Double.doubleToLongBits(this.g) != Double.doubleToLongBits(other.g)) {\n            return false;\n        }\n        if (Double.doubleToLongBits(this.b) != Double.doubleToLongBits(other.b)) {\n            return false;\n        }\n        if (Double.doubleToLongBits(this.a) != Double.doubleToLongBits(other.a)) {\n            return false;\n        }\n        return true;\n    }\n\n    @Override\n    public String toString() {\n        return getColor().toString();\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/utils/SerializableDropShadow.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * Copyright (C) 2012 Michael Berry\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.utils;\n\nimport java.io.Serializable;\nimport javafx.scene.effect.BlurType;\nimport javafx.scene.effect.DropShadow;\nimport javafx.scene.paint.Color;\n\n/**\n * A class that wraps DropShadow to make it serializable.\n *\n * @author Michael\n */\npublic class SerializableDropShadow implements Serializable {\n\n    private final SerializableColor color;\n    private final double xOffset;\n    private final double yOffset;\n    private final double radius;\n    private final double spread;\n    private final boolean use;\n\n    public SerializableDropShadow(Color color, double xOffset, double yOffset, double radius, double spread, boolean use) {\n        this.color = new SerializableColor(color);\n        this.xOffset = xOffset;\n        this.yOffset = yOffset;\n        this.radius = radius;\n        this.spread = spread;\n        this.use = use;\n    }\n\n    public Color getColor() {\n        return color.getColor();\n    }\n\n    public double getOffsetX() {\n        return xOffset;\n    }\n\n    public double getOffsetY() {\n        return yOffset;\n    }\n\n    public double getRadius() {\n        return radius;\n    }\n\n    public double getSpread() {\n        return spread;\n    }\n\n    public boolean getUse() {\n        return use;\n    }\n\n    @Override\n    public String toString() {\n        return getColor().toString() + \" X: \" + xOffset + \" Y: \" + yOffset + \" Radius: \" + radius + \" Spread: \" + spread + \" Use: \" + use;\n    }\n\n    public DropShadow getDropShadow() {\n        DropShadow shadow = new DropShadow();\n        if (use) {\n            shadow.setColor(getColor());\n        } else {\n            shadow.setColor(Color.TRANSPARENT);\n        }\n        shadow.setOffsetX(getOffsetX());\n        shadow.setOffsetY(getOffsetY());\n        shadow.setSpread(getSpread());\n        shadow.setRadius(getRadius());\n        shadow.setBlurType(BlurType.GAUSSIAN);\n        return shadow;\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/utils/SerializableFont.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * Copyright (C) 2012 Michael Berry\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.utils;\n\nimport java.io.Serializable;\nimport java.util.Objects;\nimport javafx.scene.text.Font;\nimport javafx.scene.text.FontPosture;\nimport javafx.scene.text.FontWeight;\n\n/**\n *\n * @author Michael\n */\npublic class SerializableFont implements Serializable {\n\n    private String family;\n    private String name;\n    private double size;\n    private String style;\n\n    public SerializableFont(Font font) {\n        family = font.getFamily();\n        name = font.getName();\n        size = font.getSize();\n        style = font.getStyle();\n    }\n    \n    public boolean isBold() {\n        return style.toLowerCase().contains(\"bold\");\n    }\n    \n    public boolean isItalic() {\n        return style.toLowerCase().contains(\"italic\");\n    }\n\n    public Font getFont() {\n        Font ret;\n        if(isBold() && isItalic()) {\n            ret = Font.font(family, FontWeight.BOLD, FontPosture.ITALIC, size);\n        }\n        else if(isBold()) {\n            ret = Font.font(family, FontWeight.BOLD, FontPosture.REGULAR, size);\n        }\n        else if(isItalic()) {\n            ret = Font.font(family, FontWeight.NORMAL, FontPosture.ITALIC, size);\n        }\n        else {\n            ret = Font.font(family, size);\n        }\n        return ret;\n    }\n\n    @Override\n    public int hashCode() {\n        int hash = 5;\n        hash = 41 * hash + Objects.hashCode(this.family);\n        hash = 41 * hash + (int) (Double.doubleToLongBits(this.size) ^ (Double.doubleToLongBits(this.size) >>> 32));\n        return hash;\n    }\n\n    public boolean equals(Object obj, boolean ignoreSize) {\n        if(obj == null) {\n            return false;\n        }\n        if(getClass() != obj.getClass()) {\n            return false;\n        }\n        final SerializableFont other = (SerializableFont) obj;\n        if(!Objects.equals(this.family, other.family)) {\n            return false;\n        }\n        if(!ignoreSize && Double.doubleToLongBits(this.size) != Double.doubleToLongBits(other.size)) {\n            return false;\n        }\n        return true;\n    }\n\n    @Override\n    public boolean equals(Object obj) {\n        return equals(obj, false);\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/utils/ShortcutManager.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.utils;\n\nimport javafx.scene.input.KeyCode;\nimport javafx.scene.input.KeyCodeCombination;\nimport javafx.scene.input.KeyCombination;\nimport javafx.scene.input.KeyEvent;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.windows.main.MainPanel;\nimport org.quelea.windows.main.MainWindow;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.windows.newsong.SongEntryWindow;\n\nimport java.util.ArrayList;\n\n/**\n * Manage adding the shortcuts for the application. This is responsible for\n * adding the sort of shortcuts that do things such as focus the user on a\n * particular node. Shortcuts for buttons or menu items are declared in the same\n * place as the corresponding node.\n * <p/>\n *\n * @author Michael\n */\npublic class ShortcutManager {\n    private ArrayList<String> keyCodeBuilder = new ArrayList<>();\n\n    /**\n     * Add in the shortcuts.\n     *\n     * @param mainWindow the main window\n     */\n    public void addShortcuts(final MainWindow mainWindow) {\n        final MainPanel mainPanel = QueleaApp.get().getMainWindow().getMainPanel();\n        mainPanel.addEventFilter(KeyEvent.KEY_PRESSED, event -> {\n            if (!keyCodeBuilder.contains(event.getCode().getName()))\n                keyCodeBuilder.add(event.getCode().getName());\n            if (checkCombination(QueleaProperties.get().getAdvanceKeys())) {\n                event.consume();\n            } else if (checkCombination(QueleaProperties.get().getPreviousKeys())) {\n                event.consume();\n            }\n        });\n\n        mainPanel.addEventFilter(KeyEvent.KEY_RELEASED, event -> {\n            if (checkCombination(QueleaProperties.get().getSearchKeys())) {\n                mainPanel.getLibraryPanel().getTabPane().getSelectionModel().select(0);\n                mainPanel.getLibraryPanel().getLibrarySongPanel().getSearchBox().requestFocus();\n            } else if (checkCombination(QueleaProperties.get().getLogoKeys())) {\n                mainWindow.getMainPanel().getLivePanel().toggleLogo();\n            } else if (checkCombination(QueleaProperties.get().getBlackKeys())) {\n                mainWindow.getMainPanel().getLivePanel().toggleBlack();\n            } else if (checkCombination(QueleaProperties.get().getClearKeys())) {\n                mainWindow.getMainPanel().getLivePanel().toggleClear();\n            } else if (checkCombination(QueleaProperties.get().getHideKeys())) {\n                mainWindow.getMainPanel().getLivePanel().toggleHide();\n            } else if (checkCombination(QueleaProperties.get().getAdvanceKeys())) {\n                mainWindow.getMainPanel().getLivePanel().advance();\n            } else if (checkCombination(QueleaProperties.get().getPreviousKeys())) {\n                mainWindow.getMainPanel().getLivePanel().previous();\n            } else if (checkCombination(QueleaProperties.get().getNewSongKeys())) {\n                SongEntryWindow songEntryWindow = QueleaApp.get().getMainWindow().getSongEntryWindow();\n                songEntryWindow.resetNewSong();\n                songEntryWindow.show();\n            } else if (checkCombination(QueleaProperties.get().getScheduleFocusKeys())) {\n                mainPanel.getSchedulePanel().getScheduleList().getListView().requestFocus();\n            } else if (checkCombination(QueleaProperties.get().getBibleFocusKeys())) {\n                mainPanel.getLibraryPanel().getTabPane().getSelectionModel().select(1);\n                mainPanel.getLibraryPanel().getBiblePanel().getBookSelector().requestFocus();\n            } else if (checkCombination(QueleaProperties.get().getAddAndGoLiveKeys())) {\n                if (mainPanel.getLibraryPanel().getTabPane().getSelectionModel().isSelected(0) && mainPanel.getLibraryPanel().getLibrarySongPanel().getSongList().getSelectedValues().size() == 1) {\n                    SongDisplayable displayable = mainPanel.getLibraryPanel().getLibrarySongPanel().getSongList().getSelectedValues().getFirst();\n                    mainPanel.getSchedulePanel().getScheduleList().add(displayable, true);\n                    mainPanel.getPreviewPanel().goLive();\n                }\n            }\n            keyCodeBuilder.clear();\n        });\n    }\n\n    private boolean checkCombination(String[] keyCombination) {\n        if (keyCombination.length != keyCodeBuilder.size())\n            return false;\n        for (String kc : keyCombination) {\n            if (!keyCodeBuilder.contains(kc)) {\n                return false;\n            }\n        }\n        return true;\n    }\n\n    public static KeyCodeCombination getKeyCodeCombination(String[] keys) {\n        ArrayList<KeyCombination.Modifier> modifiers = new ArrayList<>();\n        String character = \"\";\n        for (String s : keys) {\n            if (s.contains(\"Ctrl\"))\n                modifiers.add(KeyCombination.CONTROL_DOWN);\n            else if (s.contains(\"Alt\"))\n                modifiers.add(KeyCombination.ALT_DOWN);\n            else if (s.contains(\"Shift\"))\n                modifiers.add(KeyCombination.SHIFT_DOWN);\n            else if (s.contains(\"Shortcut\"))\n                modifiers.add(KeyCombination.SHORTCUT_DOWN);\n            else\n                character = s;\n        }\n        if (modifiers.size() == 4)\n            return new KeyCodeCombination(KeyCode.getKeyCode(character), modifiers.get(0), modifiers.get(1), modifiers.get(2), modifiers.get(3));\n        if (modifiers.size() == 3)\n            return new KeyCodeCombination(KeyCode.getKeyCode(character), modifiers.get(0), modifiers.get(1), modifiers.get(2));\n        if (modifiers.size() == 2)\n            return new KeyCodeCombination(KeyCode.getKeyCode(character), modifiers.get(0), modifiers.get(1));\n        if (modifiers.size() == 1)\n            return new KeyCodeCombination(KeyCode.getKeyCode(character), modifiers.get(0));\n        return new KeyCodeCombination(KeyCode.getKeyCode(character));\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/utils/SoftHashMap.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * Copyright (C) 2012 Michael Berry\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.utils;\n\nimport java.io.Serializable;\nimport java.lang.ref.Reference;\nimport java.lang.ref.ReferenceQueue;\nimport java.lang.ref.SoftReference;\nimport java.util.AbstractMap;\nimport java.util.HashMap;\nimport java.util.LinkedHashSet;\nimport java.util.Map;\nimport java.util.Set;\n\npublic class SoftHashMap<K, V> extends AbstractMap<K, V> implements Serializable {\n\n    /**\n     * The internal HashMap that will hold the SoftReference.\n     */\n    private final Map<K, SoftReference<V>> hash = new HashMap<>();\n    private final Map<SoftReference<V>, K> reverseLookup = new HashMap<>();\n    /**\n     * Reference queue for cleared SoftReference objects.\n     */\n    private final ReferenceQueue<V> queue = new ReferenceQueue<>();\n\n    @Override\n    public V get(Object key) {\n        expungeStaleEntries();\n        V result = null;\n        // We get the SoftReference represented by that key\n        SoftReference<V> soft_ref = hash.get(key);\n        if(soft_ref != null) {\n            // From the SoftReference we get the value, which can be\n            // null if it has been garbage collected\n            result = soft_ref.get();\n            if(result == null) {\n                // If the value has been garbage collected, remove the\n                // entry from the HashMap.\n                hash.remove(key);\n                reverseLookup.remove(soft_ref);\n            }\n        }\n        return result;\n    }\n\n    private void expungeStaleEntries() {\n        Reference<? extends V> sv;\n        while((sv = queue.poll()) != null) {\n            hash.remove(reverseLookup.remove(sv));\n        }\n    }\n\n    @Override\n    public V put(K key, V value) {\n        expungeStaleEntries();\n        SoftReference<V> soft_ref = new SoftReference<>(value, queue);\n        reverseLookup.put(soft_ref, key);\n        SoftReference<V> result = hash.put(key, soft_ref);\n        if(result == null) {\n            return null;\n        }\n        reverseLookup.remove(result);\n        return result.get();\n    }\n\n    @Override\n    public V remove(Object key) {\n        expungeStaleEntries();\n        SoftReference<V> result = hash.remove(key);\n        if(result == null) {\n            return null;\n        }\n        return result.get();\n    }\n\n    @Override\n    public void clear() {\n        hash.clear();\n        reverseLookup.clear();\n    }\n\n    @Override\n    public int size() {\n        expungeStaleEntries();\n        return hash.size();\n    }\n\n    /**\n     * Returns a copy of the key/values in the map at the point of calling.\n     * However, setValue still sets the value in the actual SoftHashMap.\n     */\n    @Override\n    public Set<Entry<K, V>> entrySet() {\n        expungeStaleEntries();\n        Set<Entry<K, V>> result = new LinkedHashSet<>();\n        for(final Entry<K, SoftReference<V>> entry : hash.entrySet()) {\n            final V value = entry.getValue().get();\n            if(value != null) {\n                result.add(new Entry<K, V>() {\n                    @Override\n                    public K getKey() {\n                        return entry.getKey();\n                    }\n\n                    @Override\n                    public V getValue() {\n                        return value;\n                    }\n\n                    @Override\n                    public V setValue(V v) {\n                        entry.setValue(new SoftReference<>(v, queue));\n                        return value;\n                    }\n                });\n            }\n        }\n        return result;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/utils/SongDuplicateChecker.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.utils;\n\nimport org.apache.commons.text.similarity.LevenshteinDistance;\nimport org.quelea.data.db.SongManager;\nimport org.quelea.data.displayable.SongDisplayable;\n\n/**\n * A class responsible for checking a new song against existing songs in the\n * database to see whether it is similar or the same.\n *\n * @author Michael\n */\npublic class SongDuplicateChecker {\n\n    public static void main(String[] args) {\n        new SongDuplicateChecker().checkSongs(null);\n    }\n\n    public boolean[] checkSongs(SongDisplayable[] newSongs) {\n        final SongDisplayable[] songs = SongManager.get().getSongs();\n        final String[] songLyrics = new String[songs.length];\n        for (int i = 0; i < songLyrics.length; i++) {\n            songLyrics[i] = songs[i].getLyrics(false, false, false).replaceAll(\"[^\\\\p{L}]\", \"\");\n        }\n        boolean[] sameArr = new boolean[newSongs.length];\n        for(int i=0 ; i<newSongs.length ; i++) {\n            //System.out.println(i + \" of \" + newSongs.length);\n            SongDisplayable newSong = newSongs[i];\n            String newLyrics = newSong.getLyrics(false, false, false).replaceAll(\"[^\\\\p{L}]\", \"\");\n            int distance = new AparapiLevenshteinDistance().leastCompare(newLyrics, songLyrics);\n            if(distance<30) {\n                sameArr[i] = true;\n            }\n            else {\n                sameArr[i] = false;\n            }\n        }\n        return sameArr;\n    }\n\n    /**\n     * Checks whether the given new song is the same or similar to a song\n     * already existing in the database.\n     *\n     * @param newSong the new song to check.\n     * @return true if the song is the same or similar to an existing song,\n     * false otherwise.\n     */\n    public boolean checkSong(SongDisplayable newSong) {\n        for(SongDisplayable databaseSong : SongManager.get().getSongs()) {\n            String databaseLyrics = databaseSong.getLyrics(false, false, false).replaceAll(\"[^\\\\p{L}]\", \"\");\n            String newLyrics = newSong.getLyrics(false, false, false).replaceAll(\"[^\\\\p{L}]\", \"\");\n            int maxDistance;\n            if(newLyrics.length() < databaseLyrics.length()) {\n                maxDistance = newLyrics.length() / 10;\n            }\n            else {\n                maxDistance = databaseLyrics.length() / 10;\n            }\n            if(new LevenshteinDistance().apply(databaseLyrics, newLyrics) <= maxDistance) {\n                return true;\n            }\n        }\n        return false;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/utils/SongPack.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.utils;\n\nimport java.io.File;\nimport java.io.FileOutputStream;\nimport java.io.IOException;\nimport java.nio.charset.Charset;\nimport java.nio.charset.StandardCharsets;\nimport java.util.ArrayList;\nimport java.util.Collection;\nimport java.util.Enumeration;\nimport java.util.HashSet;\nimport java.util.List;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport java.util.zip.ZipEntry;\nimport java.util.zip.ZipFile;\nimport java.util.zip.ZipOutputStream;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.windows.main.StatusPanel;\n\n/**\n * A song pack that contains a number of songs and can be written to a\n * compressed archive.\n *\n * @author Michael\n */\npublic class SongPack {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    private final List<SongDisplayable> songs;\n\n    /**\n     * Create a new song pack.\n     */\n    public SongPack() {\n        songs = new ArrayList<>();\n    }\n\n    /**\n     * Add a song to this pack.\n     *\n     * @param song the song to add.\n     */\n    public void addSong(SongDisplayable song) {\n        songs.add(song);\n    }\n\n    public void addSongs(Collection<SongDisplayable> songsToAdd) {\n        songs.addAll(songsToAdd);\n    }\n\n    /**\n     * Create a new song pack from a file.\n     *\n     * @param file the file to create the song pack from.\n     * @return the song pack that's been created\n     * @throws IOException if something went wrong.\n     */\n    public static SongPack fromFile(File file) throws IOException {\n        try (ZipFile zipFile = new ZipFile(file, Charset.forName(\"UTF-8\"))) {\n            SongPack ret = new SongPack();\n            Enumeration<? extends ZipEntry> entries = zipFile.entries();\n            while (entries.hasMoreElements()) {\n                try {\n                    ZipEntry entry = entries.nextElement();\n                    SongDisplayable song = SongDisplayable.parseXML(zipFile.getInputStream(entry));\n                    if (song != null) {\n                        ret.addSong(song);\n                    }\n                } catch (Exception ex) {\n                    //Skipping malformed song...\n                }\n            }\n            return ret;\n        }\n    }\n\n    /**\n     * Write this song pack to a file.\n     *\n     * @param file the file to write to.\n     */\n    public void writeToFile(final File file) {\n        if (file == null) {\n            return;\n        }\n\n        final StatusPanel panel = QueleaApp.get().getMainWindow().getMainPanel().getStatusPanelGroup().addPanel(LabelGrabber.INSTANCE.getLabel(\"exporting.label\") + \"...\");\n        final List<SongDisplayable> songDisplayablesThreadSafe = new ArrayList<>(songs);\n        new Thread() {\n            public void run() {\n                final HashSet<String> names = new HashSet<>();\n                try (ZipOutputStream zos = new ZipOutputStream(new FileOutputStream(file), Charset.forName(\"UTF-8\"))) {\n                    for (int i = 0; i < songDisplayablesThreadSafe.size(); i++) {\n                        SongDisplayable song = songDisplayablesThreadSafe.get(i);\n                        String name = song.getTitle() + \".xml\";\n                        while (names.contains(name)) {\n                            name = Utils.incrementExtension(name, \"xml\");\n                        }\n                        names.add(name);\n                        zos.putNextEntry(new ZipEntry(name));\n                        zos.write(song.getXML().getBytes(StandardCharsets.UTF_8));\n                        zos.closeEntry();\n                        panel.setProgress((double) i / songDisplayablesThreadSafe.size());\n                    }\n                    panel.done();\n                } catch (IOException ex) {\n                    LOGGER.log(Level.WARNING, \"Couldn't write the song pack to file\", ex);\n                }\n            }\n        }.start();\n\n    }\n\n    /**\n     * Get the songs in this song pack.\n     *\n     * @return the songs in this song pack.\n     */\n    public List<SongDisplayable> getSongs() {\n        return new ArrayList<>(songs);\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/utils/SortedProperties.java",
    "content": "package org.quelea.services.utils;\n\nimport org.apache.commons.collections4.iterators.IteratorEnumeration;\nimport java.util.AbstractMap;\nimport java.util.ArrayList;\nimport java.util.Collections;\nimport java.util.Enumeration;\nimport java.util.LinkedHashSet;\nimport java.util.List;\nimport java.util.Map;\nimport java.util.Properties;\nimport java.util.Set;\n\nclass SortedProperties extends Properties {\n\n    @Override\n    public synchronized Enumeration<Object> keys() {\n        final Set<Object> keySet = keySet();\n        final List<String> keys = new ArrayList<>(keySet.size());\n        for (final Object key : keySet) {\n            keys.add(key.toString());\n        }\n        Collections.sort(keys);\n        return new IteratorEnumeration<>(keys.iterator());\n    }\n\n    @Override\n    public Set<Map.Entry<Object, Object>> entrySet() {\n        Enumeration<Object> keys = keys();\n        Set<Map.Entry<Object, Object>> entrySet = new LinkedHashSet<>();\n        while (keys.hasMoreElements()) {\n            Object key = keys.nextElement();\n            entrySet.add(new AbstractMap.SimpleEntry<>(key, getProperty((String) key)));\n        }\n        return entrySet;\n    }\n}"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/utils/UndoHandler.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.utils;\n\nimport java.util.ArrayList;\n\n/**\n * Class for handling undo/redo actions for a set of strings.\n *\n * @author Arvid\n */\npublic class UndoHandler {\n\n    private final ArrayList<String> changes = new ArrayList<>();\n    private int undoCount = 0;\n    private boolean undo = false;\n\n    /**\n     * Reverse one step in the change list.\n     *\n     * @return Previous text.\n     */\n    public String undo() {\n        if (undoCount > 0) {\n            undo = true;\n            undoCount--;\n            return changes.get(undoCount);\n        }\n        return changes.get(0);\n    }\n\n    /**\n     * Move forward one step in the change list.\n     *\n     * @return Next text.\n     */\n    public String redo() {\n        if (undoCount < changes.size() - 1) {\n            undo = true;\n            undoCount++;\n            return changes.get(undoCount);\n        }\n        return changes.get(changes.size() - 1);\n    }\n\n    /**\n     * Add text to the change list.\n     *\n     * @param oldText The pre-edited text (only relevant for first entry).\n     * @param newText The recently changed text.\n     */\n    public void add(String oldText, String newText) {\n        if (undoCount == 0) {\n            changes.add(0, oldText);\n        }\n        undoCount++;\n        changes.add(undoCount, newText);\n        if (undoCount < changes.size() - 1) {\n            while (undoCount + 1 < changes.size()) {\n                changes.remove(undoCount + 1);\n            }\n        }\n    }\n\n    /**\n     * Check if text is updated by an undo action or by re-styling (e.g. for SpellTextArea).\n     *\n     * @return true if text is changed by undo, false otherwise.\n     */\n    public boolean isUndo() {\n        return undo;\n    }\n\n    /**\n     * Set if text is updated by an undo action or by re-styling (e.g. for SpellTextArea).\n     *\n     * @param undo true if text is changed by undo, false otherwise.\n     */\n    public void setUndo(boolean undo) {\n        this.undo = undo;\n    }\n\n    /**\n     * Get current change count.\n     *\n     * @return change count.\n     */\n    public int getCount() {\n        return undoCount;\n    }\n\n    /**\n     * Get caret position for the changed line.\n     *\n     * @param undo true if last change was undo, false if it was redo.\n     * @return caret postion for the end of the changed line.\n     */\n    public int getCaretPos(boolean undo) {\n        int prev = 0;\n        if (undo && undoCount != changes.size() - 1) {\n            prev = undoCount + 1;\n        } else if (!undo && undoCount != 0) {\n            prev = undoCount - 1;\n        }\n        String[] partsOld = changes.get(prev).split(\"\\n\");\n        String[] partsNew = changes.get(undoCount).split(\"\\n\");\n        int caretPos = 0;\n        int i = 0;\n        for (String s : partsOld) {\n            if (partsNew.length - 1 >= i) {\n                if (!s.equals(partsNew[i])) {\n                    int j = 0;\n                    for (char c : partsNew[i].toCharArray()) {\n                        if (j < s.length() && s.length() > 0 && c != s.charAt(j)) {\n                            break;\n                        }\n                        caretPos++;\n                        j++;\n                    }\n                    if (partsNew[i].length() > s.length() && j < s.length()) {\n                        caretPos += (partsNew[i].length() - s.length());\n                    }\n                    break;\n                }\n                caretPos += partsNew[i].length();\n            }\n            i++;\n        }\n        return caretPos + i;\n    }\n\n    /**\n     * Clear the change list.\n     */\n    public void clearUndo() {\n        changes.clear();\n        undoCount = 0;\n    }\n\n    /**\n     * Check if undo is possible.\n     *\n     * @return true if change list has another undo value.\n     */\n    public boolean canUndo() {\n        return undoCount > 0;\n    }\n\n    /**\n     * Check if redo is possible.\n     *\n     * @return true if change list has another redo value.\n     */\n    public boolean canRedo() {\n        return undoCount < changes.size() - 1;\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/utils/UnicodeReader.java",
    "content": "package org.quelea.services.utils;\n\nimport java.io.IOException;\nimport java.io.InputStream;\nimport java.io.InputStreamReader;\nimport java.io.PushbackInputStream;\nimport java.io.Reader;\n\npublic class UnicodeReader extends Reader {\n\n    private static final int BOM_SIZE = 4;\n    private final InputStreamReader reader;\n\n    /**\n     * Construct UnicodeReader\n     *\n     * @param in Input stream.\n     * @param defaultEncoding Default encoding to be used if BOM is not found,\n     * or <code>null</code> to use system default encoding.\n     * @throws IOException If an I/O error occurs.\n     */\n    public UnicodeReader(InputStream in, String defaultEncoding) throws IOException {\n        byte[] bom = new byte[BOM_SIZE];\n        String encoding;\n        int unread;\n        PushbackInputStream pushbackStream = new PushbackInputStream(in, BOM_SIZE);\n        int n = pushbackStream.read(bom, 0, bom.length);\n\n        // Read ahead four bytes and check for BOM marks.\n        if ((bom[0] == (byte) 0xEF) && (bom[1] == (byte) 0xBB) && (bom[2] == (byte) 0xBF)) {\n            encoding = \"UTF-8\";\n            unread = n - 3;\n        } else if ((bom[0] == (byte) 0xFE) && (bom[1] == (byte) 0xFF)) {\n            encoding = \"UTF-16BE\";\n            unread = n - 2;\n        } else if ((bom[0] == (byte) 0xFF) && (bom[1] == (byte) 0xFE)) {\n            encoding = \"UTF-16LE\";\n            unread = n - 2;\n        } else if ((bom[0] == (byte) 0x00) && (bom[1] == (byte) 0x00) && (bom[2] == (byte) 0xFE) && (bom[3] == (byte) 0xFF)) {\n            encoding = \"UTF-32BE\";\n            unread = n - 4;\n        } else if ((bom[0] == (byte) 0xFF) && (bom[1] == (byte) 0xFE) && (bom[2] == (byte) 0x00) && (bom[3] == (byte) 0x00)) {\n            encoding = \"UTF-32LE\";\n            unread = n - 4;\n        } else {\n            encoding = defaultEncoding;\n            unread = n;\n        }\n\n        // Unread bytes if necessary and skip BOM marks.\n        if (unread > 0) {\n            pushbackStream.unread(bom, (n - unread), unread);\n        } else if (unread < -1) {\n            pushbackStream.unread(bom, 0, 0);\n        }\n\n        // Use given encoding.\n        if (encoding == null) {\n            reader = new InputStreamReader(pushbackStream);\n        } else {\n            reader = new InputStreamReader(pushbackStream, encoding);\n        }\n    }\n\n    public String getEncoding() {\n        return reader.getEncoding();\n    }\n\n    @Override\n    public int read(char[] cbuf, int off, int len) throws IOException {\n        return reader.read(cbuf, off, len);\n    }\n\n    @Override\n    public void close() throws IOException {\n        reader.close();\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/utils/UpdateChecker.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.utils;\n\nimport java.awt.Desktop;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport javafx.application.Platform;\nimport org.javafx.dialog.Dialog;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.utils.DesktopApi;\n\n/**\n * Checks for any updates to Quelea.\n * @author Michael\n */\npublic class UpdateChecker {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n\n    /**\n     * Check whether there's an update to Quelea, display a message if so.\n     * @param showIfLatest true if the user should see a message even if they're running the latest version.\n     * @param showIfError  true if the user should see a message if there is an error.\n     * @param forceCheck   true if we should check even if the properties state otherwise.\n     */\n    public void checkUpdate(boolean showIfLatest, final boolean showIfError, boolean forceCheck) {\n        if(forceCheck || QueleaProperties.get().checkUpdate()) {\n            Version latestVersion = new VersionChecker(QueleaProperties.get().getUpdateURL()).getLatestVersion();\n            if(latestVersion == null) {\n                if(showIfError) {\n                    showUpdateError();\n                }\n                return;\n            }\n            Version curVersion = QueleaProperties.VERSION;\n            LOGGER.log(Level.INFO, \"Checked updates, current version is {0} and latest version is {1}\",\n                    new Object[]{curVersion.getVersionString(), latestVersion.getVersionString()});\n            if(curVersion.compareTo(latestVersion) < 0) {\n                if(Desktop.isDesktopSupported()) {\n                    Dialog.buildConfirmation(LabelGrabber.INSTANCE.getLabel(\"newer.version.available.title\"), LabelGrabber.INSTANCE.getLabel(\"newer.version.available\")+\" (\" + latestVersion.getVersionString() + \"). \"\n                                    + LabelGrabber.INSTANCE.getLabel(\"visit.webpage.now\")).addYesButton(t -> DesktopApi.browse(QueleaProperties.get().getDownloadLocation())).addNoButton(t -> {\n                        //Nothing needed\n                    }).build().showAndWait();\n\n                }\n                else {\n                    Dialog.showInfo(LabelGrabber.INSTANCE.getLabel(\"newer.version.available.title\"), LabelGrabber.INSTANCE.getLabel(\"newer.version.available\")+\" (\" + latestVersion.getVersionString() + \"). \"\n                                    + LabelGrabber.INSTANCE.getLabel(\"download.manual.update\")+\": \" + QueleaProperties.get().getDownloadLocation());\n                }\n            }\n            else if(showIfLatest) {\n                Dialog.showInfo(LabelGrabber.INSTANCE.getLabel(\"no.newer.version.available.title\"), LabelGrabber.INSTANCE.getLabel(\"no.newer.version.available\")+\" (\"\n                        + curVersion.getVersionString() + \").\");\n            }\n        }\n    }\n\n    /**\n     * Show a message saying there was an error checking for updates.\n     */\n    private void showUpdateError() {\n        Platform.runLater(() -> Dialog.showError(LabelGrabber.INSTANCE.getLabel(\"error.checking.updates.title\"),\n                    LabelGrabber.INSTANCE.getLabel(\"error.checking.updates.text\")));\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/utils/UserFileChecker.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n *  * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.utils;\n\nimport java.io.File;\nimport java.io.IOException;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\n\n/**\n * Checks to see whether the user has the theme / properties / etc. files in\n * their home directory and if they don't, copies them across. This is useful\n * since the installer doesn't touch the user's directory, so if this is the\n * first time the user runs the program we want to copy across the default\n * settings.\n * <p>\n * @author Michael\n */\npublic class UserFileChecker {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    private File userDir;\n\n    /**\n     * Create a new user file checker.\n     * <p>\n     * @param userDir the user directory to check.\n     */\n    public UserFileChecker(File userDir) {\n        this.userDir = userDir;\n    }\n\n    /**\n     * Check the user files to see if they exist, if they don't then copy them\n     * over from the master files of the same name in the current directory.\n     */\n    public void checkUserFiles() {\n        LOGGER.log(Level.INFO, \"Checking user files\");\n        checkPropertiesFile();\n        checkDir(\"themes\");\n        checkDir(\"vid\");\n        checkDir(\"img\");\n        checkDir(\"bibles\");\n        checkDir(\"dictionaries\");\n        checkDir(\"timer\");\n        checkDir(\"notices\");\n    }\n\n    /**\n     * Check the properties file to see if it needs to be copied.\n     */\n    private void checkPropertiesFile() {\n        File file = new File(userDir, \"quelea.properties\");\n        if(file.exists() && Utils.getTextFromFile(file.getAbsolutePath(), \"error\").trim().isEmpty()) {\n            copyPropertiesFile();\n        }\n        else if(!file.exists()) {\n            copyPropertiesFile();\n        }\n    }\n\n    /**\n     * Check a directory to see if it needs to be copied, copy it over if\n     * necessary.\n     * @param dirName the name of the directory to copy.\n     */\n    private void checkDir(String dirName) {\n        File file = new File(userDir, dirName);\n        if(!file.exists()) {\n            copyDir(dirName);\n        }\n    }\n\n    /**\n     * Copy the theme directory over to the user's Quelea home directory.\n     */\n    private void copyDir(String dirName) {\n        LOGGER.log(Level.INFO, \"{0} dir doesn't exist in user home, copying\", dirName);\n        File masterThemes = new File(dirName);\n        if(masterThemes.exists()) {\n            try {\n                Utils.copyFile(masterThemes, new File(userDir, dirName));\n                LOGGER.log(Level.INFO, \"{0} copied successfully\", dirName);\n            }\n            catch(IOException ex) {\n                LOGGER.log(Level.INFO, \"Couldn't copy \" + dirName + \", creating instead\", ex);\n                boolean created = new File(userDir, dirName).mkdir();\n                if(!created) {\n                    LOGGER.log(Level.WARNING, \"Can't copy, can't create.\", ex);\n                }\n            }\n        }\n        else {\n            LOGGER.log(Level.WARNING, \"{0} dir {1} doesn't exist\", new Object[]{dirName, masterThemes.getAbsolutePath()});\n            new File(userDir, dirName).mkdir();\n        }\n    }\n\n    /**\n     * Copy the properties file over to the user's Quelea home directory.\n     */\n    private void copyPropertiesFile() {\n        LOGGER.log(Level.INFO, \"Properties file doesn't exist in user home, copying\");\n        File masterProps = new File(\"quelea.properties\");\n        if(masterProps.exists()) {\n            try {\n                Utils.copyFile(masterProps, new File(userDir, \"quelea.properties\"));\n                LOGGER.log(Level.INFO, \"Properties file copied successfully\");\n            }\n            catch(IOException ex) {\n                LOGGER.log(Level.WARNING, \"Couldn't copy properties file\", ex);\n            }\n        }\n        else {\n            LOGGER.log(Level.WARNING, \"Master properties file {0} doesn't exist\", masterProps.getAbsolutePath());\n        }\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/utils/Utils.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n *\n * This program is free software: you can redistribute it and/or modify it under\n * the terms of the GNU General Public License as published by the Free Software\n * Foundation, either version 3 of the License, or (at your option) any later\n * version.\n *\n * This program is distributed in the hope that it will be useful, but WITHOUT\n * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\n * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License along with\n * this program. If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.utils;\n\nimport java.awt.Font;\nimport java.awt.FontMetrics;\nimport java.awt.Graphics;\nimport java.awt.Graphics2D;\nimport java.awt.GraphicsDevice;\nimport java.awt.GraphicsEnvironment;\nimport java.awt.Rectangle;\nimport java.awt.RenderingHints;\nimport java.awt.Toolkit;\nimport java.awt.font.TextAttribute;\nimport java.awt.image.BufferedImage;\nimport java.io.BufferedInputStream;\nimport java.io.BufferedOutputStream;\nimport java.io.BufferedReader;\nimport java.io.File;\nimport java.io.FileInputStream;\nimport java.io.FileOutputStream;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\nimport java.nio.channels.FileChannel;\nimport java.nio.charset.Charset;\nimport java.nio.charset.StandardCharsets;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\nimport java.nio.file.StandardCopyOption;\nimport java.util.ArrayList;\nimport java.util.Arrays;\nimport java.util.Collections;\nimport java.util.Enumeration;\nimport java.util.HashMap;\nimport java.util.HashSet;\nimport java.util.List;\nimport java.util.Map;\nimport java.util.Map.Entry;\nimport java.util.Set;\nimport java.util.concurrent.ExecutionException;\nimport java.util.concurrent.locks.Condition;\nimport java.util.concurrent.locks.Lock;\nimport java.util.concurrent.locks.ReentrantLock;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport java.util.regex.Matcher;\nimport java.util.regex.Pattern;\nimport java.util.stream.Collectors;\nimport java.util.zip.ZipEntry;\nimport java.util.zip.ZipFile;\nimport javafx.application.Platform;\nimport javafx.beans.value.ChangeListener;\nimport javafx.beans.value.ObservableValue;\nimport javafx.collections.ObservableList;\nimport javafx.embed.swing.SwingFXUtils;\nimport javafx.event.EventHandler;\nimport javafx.geometry.BoundingBox;\nimport javafx.geometry.Bounds;\nimport javafx.geometry.Rectangle2D;\nimport javafx.scene.Node;\nimport javafx.scene.control.ToggleButton;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.PixelWriter;\nimport javafx.scene.image.WritableImage;\nimport javafx.scene.input.MouseEvent;\nimport javafx.scene.paint.Color;\nimport javafx.stage.Screen;\nimport javafx.stage.Stage;\nimport org.apache.commons.text.StringEscapeUtils;\nimport org.javafx.dialog.Dialog;\nimport org.mozilla.universalchardet.UniversalDetector;\nimport org.quelea.data.ThemeDTO;\nimport org.quelea.data.db.SongManager;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.windows.main.StatusPanel;\n\n/**\n * General utility class containing a bunch of static methods.\n * <p/>\n * @author Michael, Ben\n */\npublic final class Utils {\n\n\tprivate static final Logger LOGGER = LoggerUtils.getLogger();\n\tpublic static final String TOOLBAR_BUTTON_STYLE = \"-fx-background-insets: 0;-fx-background-color: rgba(0, 0, 0, 0);-fx-padding:3,6,3,6;-fx-text-fill: grey;\";\n\tpublic static final String HOVER_TOOLBAR_BUTTON_STYLE = \"-fx-background-insets: 0;-fx-padding:3,6,3,6;-fx-text-fill: grey;\";\n\n\t/**\n\t * Don't instantiate me. I bite.\n\t */\n\tprivate Utils() {\n\t\tthrow new AssertionError();\n\t}\n\n    public static Class<?> getOutermostEnclosingClass(Class<?> clazz) {\n        Class<?> enclosing = clazz;\n        for (int i = 0; i < 100; i++) {\n            if (enclosing.getEnclosingClass() == null) {\n                return enclosing;\n            }\n            enclosing = enclosing.getEnclosingClass();\n        }\n        throw new RuntimeException(\"Enclosing class limit reached\");\n    }\n\n\tpublic static File getChangedFile(org.w3c.dom.Node node, Map<String, String> fileChanges) {\n\t\treturn getChangedFile(node.getTextContent(), fileChanges);\n\t}\n\n\tpublic static File getChangedFile(String filePath, Map<String, String> fileChanges) {\n\t\tFile file = new File(filePath);\n\t\tString changedFile = fileChanges.get(file.getAbsolutePath());\n\t\tif (!file.exists() && changedFile != null) {\n\t\t\tLOGGER.log(Level.INFO, \"Changing {0} to {1}\", new Object[]{file.getAbsolutePath(), changedFile});\n\t\t\tfile = new File(changedFile);\n\t\t}\n\t\treturn file;\n\t}\n\n\tpublic static String toRelativeStorePath(File f) {\n\t\tString[] parts = f.getAbsolutePath().split(Pattern.quote(System.getProperty(\"file.separator\")));\n\t\tparts = Arrays.copyOfRange(parts, 1, parts.length);\n\t\treturn String.join(System.getProperty(\"file.separator\"), parts);\n\t}\n\n\t/**\n\t * Get the debug log file, useful for debugging if something goes wrong (the\n\t * log is printed out to this location.)\n\t * <p>\n\t * @return the debug log file.\n\t */\n\tpublic static File getDebugLog() {\n\t\treturn new File(QueleaProperties.get().getQueleaUserHome(), \"quelea-debuglog.txt\");\n\t}\n\n\t/**\n\t * Check if a given file is in a given directory. (Doesn't include\n\t * subfolders.)\n\t * <p>\n\t * @param dir the directory to check.\n\t * @param file the file to check.\n\t * @return true if the given file is in the given directory, false\n\t * otherwise.\n\t */\n\tpublic static boolean isInDir(File dir, File file) {\n\t\tFile[] files = QueleaProperties.get().getImageDir().listFiles();\n\t\tfor (File listFile : files) {\n\t\t\tif (file.equals(listFile)) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\t\treturn false;\n\t}\n\n\t/**\n\t * Set the button style for any buttons that are to be placed on a toolbar.\n\t * Change the padding and remove the default border.\n\t * <p/>\n\t * @param button the button to style.\n\t */\n\tpublic static void setToolbarButtonStyle(final Node button) {\n\t\tbutton.setStyle(Utils.TOOLBAR_BUTTON_STYLE);\n\t\tif (button instanceof ToggleButton) {\n\t\t\tToggleButton toggle = (ToggleButton) button;\n\t\t\ttoggle.selectedProperty().addListener(new ChangeListener<Boolean>() {\n\t\t\t\t@Override\n\t\t\t\tpublic void changed(ObservableValue<? extends Boolean> ov, Boolean t, Boolean t1) {\n\t\t\t\t\tif (t1) {\n\t\t\t\t\t\tbutton.setStyle(Utils.HOVER_TOOLBAR_BUTTON_STYLE);\n\t\t\t\t\t} else {\n\t\t\t\t\t\tbutton.setStyle(Utils.TOOLBAR_BUTTON_STYLE);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\t\tbutton.setOnMouseEntered(new EventHandler<MouseEvent>() {\n\t\t\t@Override\n\t\t\tpublic void handle(MouseEvent mouseEvent) {\n\t\t\t\tbutton.setStyle(Utils.HOVER_TOOLBAR_BUTTON_STYLE);\n\t\t\t}\n\t\t});\n\t\tbutton.setOnMouseExited(new EventHandler<MouseEvent>() {\n\t\t\t@Override\n\t\t\tpublic void handle(MouseEvent mouseEvent) {\n\t\t\t\tif (!(button instanceof ToggleButton && ((ToggleButton) button).isSelected())) {\n\t\t\t\t\tbutton.setStyle(Utils.TOOLBAR_BUTTON_STYLE);\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t}\n\n\t/**\n\t * Sleep ignoring the exception.\n\t * <p/>\n\t * @param millis milliseconds to sleep.\n\t */\n\tpublic static void sleep(long millis) {\n\t\ttry {\n\t\t\tThread.sleep(millis);\n\t\t} catch (InterruptedException ex) {\n\t\t\t//Nothing\n\t\t}\n\t}\n\n\tpublic static boolean isOffscreen(SceneInfo info) {\n\t\tfor (Screen screen : Screen.getScreens()) {\n\t\t\tif (screen.getBounds().intersects(info.getBounds())) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}\n\t\treturn true;\n\t}\n\n\tpublic static String incrementExtension(String name, String ext) {\n\t\tname = name.substring(0, name.length() - 4).trim();\n\t\tPattern p = Pattern.compile(\".*\\\\(([0-9]+)\\\\)\");\n\t\tMatcher matcher = p.matcher(name);\n\t\tif (matcher.matches()) {\n\t\t\tint suffixLength = matcher.group(1).length() + 2;\n\t\t\tint nextNum = Integer.parseInt(matcher.group(1)) + 1;\n\t\t\treturn name.substring(0, name.length() - suffixLength) + \"(\" + nextNum + \").\" + ext;\n\t\t} else {\n\t\t\treturn name + \"(2).\" + ext;\n\t\t}\n\t}\n\n\t/**\n\t * Run something on the JavaFX platform thread and wait for it to complete.\n\t * <p/>\n\t * @param runnable the runnable to run.\n\t */\n\tpublic static void fxRunAndWait(final Runnable runnable) {\n\t\ttry {\n\t\t\tif (Platform.isFxApplicationThread()) {\n\t\t\t\ttry {\n\t\t\t\t\trunnable.run();\n\t\t\t\t} catch (Exception e) {\n\t\t\t\t\tthrow new ExecutionException(e);\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfinal Lock lock = new ReentrantLock();\n\t\t\t\tfinal Condition condition = lock.newCondition();\n\t\t\t\tlock.lock();\n\t\t\t\ttry {\n\t\t\t\t\tPlatform.runLater(new Runnable() {\n\n\t\t\t\t\t\t@Override\n\t\t\t\t\t\tpublic void run() {\n\t\t\t\t\t\t\tlock.lock();\n\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\trunnable.run();\n\t\t\t\t\t\t\t} finally {\n\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\tcondition.signal();\n\t\t\t\t\t\t\t\t} finally {\n\t\t\t\t\t\t\t\t\tlock.unlock();\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t\tcondition.await();\n\t\t\t\t} finally {\n\t\t\t\t\tlock.unlock();\n\t\t\t\t}\n\t\t\t}\n\t\t} catch (Exception ex) {\n\t\t\tLOGGER.log(Level.SEVERE, \"Execution error\", ex);\n\t\t}\n\t}\n\n\t/**\n\t * Add the Quelea icon(s) to a stage.\n\t * <p/>\n\t * @param stage the stage to add the icons to.\n\t */\n\tpublic static void addIconsToStage(Stage stage) {\n//        stage.getIcons().add(new Image(\"file:icons/logo64.png\"));\n//        stage.getIcons().add(new Image(\"file:icons/logo48.png\"));\n\t\tstage.getIcons().add(new Image(\"file:icons/logo32.png\"));\n//        stage.getIcons().add(new Image(\"file:icons/logo16.png\"));\n\t}\n\n\t/**\n\t * Get the string to pass VLC from the given video file. In many cases this\n\t * is just the path, in the case of vlcarg files it is the contents of the\n\t * file to pass VLC.\n\t *\n\t * @param file the file to grab the VLC path from.\n\t * @return the VLC path.\n\t */\n\tpublic static String getVLCStringFromFile(File file) {\n\t\tfinal String path = file.getAbsolutePath();\n\t\tfinal String[] parts = path.split(\"\\\\.\");\n\t\tif (parts[parts.length - 1].trim().equalsIgnoreCase(\"vlcarg\")) {\n\t\t\ttry {\n\t\t\t\tbyte[] encoded = Files.readAllBytes(Paths.get(path));\n\t\t\t\treturn new String(encoded, \"UTF-8\");\n\t\t\t} catch (IOException ex) {\n\t\t\t\tLOGGER.log(Level.WARNING, \"Couldn't get VLC string from file\", ex);\n\t\t\t\treturn path;\n\t\t\t}\n\t\t} else {\n\t\t\treturn path;\n\t\t}\n\t}\n\n\t/**\n\t * Converts a JavaFX Rectangle2D to a JavaFX bounds object.\n\t * <p/>\n\t * @param rect the Rectangle2D to convert.\n\t * @return the equivalent bounds.\n\t * <p/>\n\t */\n\tpublic static Bounds getBoundsFromRect2D(Rectangle2D rect) {\n\t\treturn new BoundingBox(rect.getMinX(), rect.getMinY(), rect.getWidth(), rect.getHeight());\n\t}\n\n\t/**\n\t * Determine if we're running in a 64 bit JVM.\n\t * <p/>\n\t * @return true if it's a 64 bit JVM, false if it's 32 bit (or something\n\t * else.)\n\t */\n\tpublic static boolean is64Bit() {\n\t\treturn System.getProperty(\"os.arch\").contains(\"64\"); //Rudimentary...\n\t}\n\n\t/**\n\t * Determine if we're running on a mac.\n\t * <p/>\n\t * @return true if we're running on a mac, false otherwise.\n\t */\n\tpublic static boolean isMac() {\n\t\treturn System.getProperty(\"os.name\").toLowerCase().contains(\"mac\");\n\t}\n\n\t/**\n\t * Determine if we're running on Linux.\n\t * <p/>\n\t * @return true if we're running on Linux, false otherwise.\n\t */\n\tpublic static boolean isLinux() {\n\t\treturn System.getProperty(\"os.name\").toLowerCase().contains(\"linux\");\n\t}\n\n\t/**\n\t * Determine if we're running on Windows.\n\t * <p/>\n\t * @return true if we're running on Windows, false otherwise.\n\t */\n\tpublic static boolean isWindows() {\n\t\treturn System.getProperty(\"os.name\").toLowerCase().contains(\"windows\");\n\t}\n\n\t/**\n\t * Get a file name without its extension.\n\t * <p/>\n\t * @param nameWithExtension the file name with the extension.\n\t * @return the file name without the extension.\n\t */\n\tpublic static String getFileNameWithoutExtension(String nameWithExtension) {\n\t\tif (!nameWithExtension.contains(\".\")) {\n\t\t\treturn nameWithExtension;\n\t\t}\n\t\tString[] parts = nameWithExtension.split(\"\\\\.\");\n\t\tStringBuilder ret = new StringBuilder();\n\t\tfor (int i = 0; i < parts.length - 1; i++) {\n\t\t\tret.append(parts[i]);\n\t\t\tif (i != parts.length - 2) {\n\t\t\t\tret.append(\".\");\n\t\t\t}\n\t\t}\n\t\treturn ret.toString();\n\t}\n\n\t/**\n\t * Update a song in the background.\n\t * <p/>\n\t * @param song the song to update.\n\t * @param showError true if an error should be shown if there's a problem\n\t * updating the song, false otherwise.\n\t * @param silent true if we should update the song without showing a bar on\n\t * the status panel.\n\t */\n\tpublic static void updateSongInBackground(final SongDisplayable song, final boolean showError, final boolean silent) {\n\t\tif (!song.checkDBUpdate() || song.isQuickInsert()) {\n\t\t\treturn;\n\t\t}\n\t\tfinal Runnable updateRunner = new Runnable() {\n\t\t\t@Override\n\t\t\tpublic void run() {\n\t\t\t\tboolean result = SongManager.get().updateSong(song);\n\t\t\t\tif (result && song.checkDBUpdate()) {\n\t\t\t\t\tObservableList<SongDisplayable> songs = QueleaApp.get().getMainWindow().getMainPanel().getLibraryPanel().getLibrarySongPanel().getSongList().getListView().getItems();\n\t\t\t\t\tint replaceIdx = -1;\n\t\t\t\t\tfor (int i = 0; i < songs.size(); i++) {\n\t\t\t\t\t\tif (song.getID() == songs.get(i).getID()) {\n\t\t\t\t\t\t\treplaceIdx = i;\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tfinal int replaceIdxFi = replaceIdx;\n\t\t\t\t\tif (replaceIdx != -1) {\n\t\t\t\t\t\tPlatform.runLater(new Runnable() {\n\t\t\t\t\t\t\t@Override\n\t\t\t\t\t\t\tpublic void run() {\n\t\t\t\t\t\t\t\tsongs.remove(replaceIdxFi);\n\t\t\t\t\t\t\t\tsongs.add(replaceIdxFi, song);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif (!result && showError) {\n\t\t\t\t\tPlatform.runLater(new Runnable() {\n\t\t\t\t\t\t@Override\n\t\t\t\t\t\tpublic void run() {\n\t\t\t\t\t\t\tDialog.showError(LabelGrabber.INSTANCE.getLabel(\"error.text\"), LabelGrabber.INSTANCE.getLabel(\"error.udpating.song.text\"));\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t\tif (silent) {\n\t\t\tnew Thread(updateRunner).start();\n\t\t} else {\n\t\t\tUtils.fxRunAndWait(new Runnable() {\n\t\t\t\t@Override\n\t\t\t\tpublic void run() {\n\t\t\t\t\tfinal StatusPanel statusPanel = QueleaApp.get().getStatusGroup().addPanel(LabelGrabber.INSTANCE.getLabel(\"updating.db\"));\n\t\t\t\t\tstatusPanel.removeCancelButton();\n\t\t\t\t\tnew Thread() {\n\t\t\t\t\t\t@Override\n\t\t\t\t\t\tpublic void run() {\n\t\t\t\t\t\t\tupdateRunner.run();\n\t\t\t\t\t\t\tPlatform.runLater(statusPanel::done);\n\t\t\t\t\t\t}\n\t\t\t\t\t}.start();\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\t}\n\n\t/**\n\t * Get the difference between two colours, from 0 to 100 where 100 is most\n\t * difference and 0 is least different.\n\t * <p/>\n\t * @param a the first colour\n\t * @param b the second colour\n\t * @return the difference between the colours.\n\t */\n\tpublic static double getColorDifference(Color a, Color b) {\n\t\tdouble ret = Math.abs(a.getRed() - b.getRed()) + Math.abs(a.getGreen() - b.getGreen()) + Math.abs(a.getBlue() - b.getBlue());\n\t\treturn (ret / (255 * 3)) * 100;\n\t}\n\n\t/**\n\t * Remove all HTML tags from a string.\n\t * <p/>\n\t * @param str the string to remove the tags from.\n\t * @return the string with the tags removed.\n\t */\n\tpublic static String removeTags(String str) {\n\t\treturn str.replaceAll(\"\\\\<.*?>\", \"\");\n\t}\n\n\tpublic static boolean fxThread() {\n\t\treturn Platform.isFxApplicationThread();\n\t}\n\n\tpublic static void checkFXThread() {\n\t\tif (!fxThread()) {\n\t\t\tLOGGER.log(Level.WARNING, \"Not on FX Thread!\", new AssertionError());\n\t\t}\n\t}\n\n\t/**\n\t * Remove duplicates in a list whilst maintaining the order.\n\t * <p/>\n\t * @param <T> the type of the list.\n\t * @param list the list to remove duplicates.\n\t */\n\tpublic static <T> void removeDuplicateWithOrder(List<T> list) {\n\t\tSet<T> set = new HashSet<>();\n\t\tList<T> newList = new ArrayList<>();\n\t\tfor (T element : list) {\n\t\t\tif (set.add(element)) {\n\t\t\t\tnewList.add(element);\n\t\t\t}\n\t\t}\n\t\tlist.clear();\n\t\tlist.addAll(newList);\n\t}\n\n\t/**\n\t * Copy a file from one place to another.\n\t * <p/>\n\t * @param sourceFile the source file\n\t * @param destFile the destination file\n\t * @throws IOException if something goes wrong.\n\t */\n\tpublic static void copyFile(File sourceFile, File destFile) throws IOException {\n\t\tif (sourceFile.isDirectory()) {\n\t\t\tif (sourceFile.getName().equals(\".svn\")) {\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tFiles.copy(sourceFile.toPath(), destFile.toPath(), StandardCopyOption.REPLACE_EXISTING);\n\t\t\tfor (File file : sourceFile.listFiles()) {\n\t\t\t\tcopyFile(file, new File(destFile, file.getName()));\n\t\t\t}\n\t\t\treturn;\n\t\t}\n\t\tif (!destFile.exists()) {\n\t\t\tdestFile.createNewFile();\n\t\t}\n\n\t\tFileChannel source = null;\n\t\tFileChannel destination = null;\n\t\ttry {\n\t\t\tsource = new FileInputStream(sourceFile).getChannel();\n\t\t\tdestination = new FileOutputStream(destFile).getChannel();\n\t\t\tdestination.transferFrom(source, 0, source.size());\n\t\t} finally {\n\t\t\tif (source != null) {\n\t\t\t\tsource.close();\n\t\t\t}\n\t\t\tif (destination != null) {\n\t\t\t\tdestination.close();\n\t\t\t}\n\t\t}\n\t}\n\n\t/**\n\t * Capitalise the first letter of a string.\n\t * <p/>\n\t * @param line the input string.\n\t * @return the the string with the first letter capitalised.\n\t */\n\tpublic static String capitaliseFirst(String line) {\n\t\tif (line.isEmpty()) {\n\t\t\treturn line;\n\t\t}\n\t\tStringBuilder ret = new StringBuilder(line);\n\t\tret.setCharAt(0, Character.toUpperCase(line.charAt(0)));\n\t\treturn ret.toString();\n\t}\n\n\t/**\n\t * Get an abbreviation from a name based on the first letter of each word of\n\t * the name.\n\t * <p/>\n\t * @param name the name to use for the abbreviation.\n\t * @return the abbreviation.\n\t */\n\tpublic static String getAbbreviation(String name) {\n\t\tStringBuilder ret = new StringBuilder();\n\t\tString[] parts = name.split(\" \");\n\t\tfor (String str : parts) {\n\t\t\tif (!str.isEmpty()) {\n\t\t\t\tret.append(Character.toUpperCase(str.charAt(0)));\n\t\t\t}\n\t\t}\n\t\treturn ret.toString();\n\t}\n\n\t/**\n\t * Escape the XML special characters.\n\t * <p/>\n\t * @param s the string to escape.\n\t * @return the escaped string.\n\t */\n\tpublic static String escapeXML(String s) {\n\t\treturn StringEscapeUtils.escapeXml11(s);\n\t}\n\n\tpublic static synchronized String getTextFromFile(String fileName, String errorText) {\n\t\treturn getTextFromFile(fileName, errorText, \"UTF-8\");\n\t}\n\n\t/**\n\t * Get the textual content from a file as a string, returning the given\n\t * error string if a problem occurs retrieving the content.\n\t * <p/>\n\t * @param fileName the filename to get the text from.\n\t * @param errorText the error string to return if things go wrong.\n\t * @return hopefully the text content of the file, or the errorText string\n\t * if we can't get the text content for some reason.\n\t */\n\tpublic static synchronized String getTextFromFile(String fileName, String errorText, String encoding) {\n\t\ttry (BufferedReader reader = new BufferedReader(new InputStreamReader(new FileInputStream(fileName), encoding))) {\n\t\t\tStringBuilder content = new StringBuilder();\n\t\t\tString line;\n\t\t\twhile ((line = reader.readLine()) != null) {\n\t\t\t\tcontent.append(line).append('\\n');\n\t\t\t}\n\t\t\treturn content.toString();\n\t\t} catch (IOException ex) {\n\t\t\tLOGGER.log(Level.WARNING, \"Couldn't get the contents of \" + fileName, ex);\n\t\t\treturn errorText;\n\t\t}\n\t}\n\n\t/**\n\t * Determine whether a file is an image file.\n\t * <p/>\n\t * @param file the file to check.\n\t * @return true if the file is an image, false otherwise.\n\t */\n\tpublic static boolean fileIsImage(File file) {\n\t\tif (file.isDirectory() && !file.isHidden()) {\n\t\t\treturn true;\n\t\t} else {\n\t\t\tfor (String ext : getImageExtensions()) {\n\t\t\t\tif (hasExtension(file, ext)) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t}\n\t}\n\n\t/**\n\t * Determine whether a file is an video file.\n\t * <p/>\n\t * @param file the file to check.\n\t * @return true if the file is an video, false otherwise.\n\t */\n\tpublic static boolean fileIsVideo(File file) {\n\t\tif (file.isDirectory() && !file.isHidden()) {\n\t\t\treturn true;\n\t\t} else {\n\t\t\tfor (String ext : getVideoExtensions()) {\n\t\t\t\tif (hasExtension(file, ext)) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t}\n\t}\n\n\t/**\n\t * Determine whether a file is a timer file.\n\t * <p/>\n\t * @param file the file to check.\n\t * @return true if the file is an timer, false otherwise.\n\t */\n\tpublic static boolean fileIsTimer(File file) {\n\t\tif (file.isDirectory() && !file.isHidden()) {\n\t\t\treturn true;\n\t\t} else {\n\t\t\tif (hasExtension(file, \"*.cdt\")) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\treturn false;\n\t\t}\n\t}\n\n\t/**\n\t * Get a list of all supported image extensions.\n\t * <p/>\n\t * @return a list of all supported image extensions.\n\t */\n\tpublic static List<String> getImageExtensions() {\n\t\tList<String> ret = new ArrayList<>();\n\t\tret.add(\"png\");\n\t\tret.add(\"PNG\");\n\t\tret.add(\"tiff\");\n\t\tret.add(\"TIFF\");\n\t\tret.add(\"jpg\");\n\t\tret.add(\"JPG\");\n\t\tret.add(\"jpeg\");\n\t\tret.add(\"JPEG\");\n\t\tret.add(\"gif\");\n\t\tret.add(\"GIF\");\n\t\tret.add(\"bmp\");\n\t\tret.add(\"BMP\");\n\t\treturn ret;\n\t}\n\n\t/**\n\t * Get a list of all supported video extensions.\n\t * <p/>\n\t * @return a list of all supported video extensions.\n\t */\n\tpublic static List<String> getVideoExtensions() {\n\t\tList<String> ret = new ArrayList<>();\n\t\tret.add(\"mkv\");\n\t\tret.add(\"MKV\");\n\t\tret.add(\"mp4\");\n\t\tret.add(\"MP4\");\n\t\tret.add(\"m4v\");\n\t\tret.add(\"M4V\");\n\t\tret.add(\"flv\");\n\t\tret.add(\"FLV\");\n\t\tret.add(\"avi\");\n\t\tret.add(\"AVI\");\n\t\tret.add(\"mov\");\n\t\tret.add(\"MOV\");\n\t\tret.add(\"rm\");\n\t\tret.add(\"RM\");\n\t\tret.add(\"mpg\");\n\t\tret.add(\"MPG\");\n\t\tret.add(\"mpeg\");\n\t\tret.add(\"MPEG\");\n\t\tret.add(\"wmv\");\n\t\tret.add(\"WMV\");\n\t\tret.add(\"ogm\");\n\t\tret.add(\"OGM\");\n\t\tret.add(\"ogg\");\n\t\tret.add(\"OGG\");\n\t\tret.add(\"mrl\");\n\t\tret.add(\"MRL\");\n\t\tret.add(\"asx\");\n\t\tret.add(\"ASX\");\n\t\tret.add(\"m2ts\");\n\t\tret.add(\"M2TS\");\n\t\tret.add(\"ts\");\n\t\tret.add(\"TS\");\n\t\treturn ret;\n\t}\n\n\t/**\n\t * Get a list of all supported audio extensions.\n\t * <p/>\n\t * @return a list of all supported audio extensions.\n\t */\n\tpublic static List<String> getAudioExtensions() {\n\t\tList<String> ret = new ArrayList<>();\n\t\tret.add(\"mp3\");\n\t\tret.add(\"MP3\");\n\t\tret.add(\"wav\");\n\t\tret.add(\"WAV\");\n\t\tret.add(\"wma\");\n\t\tret.add(\"WMA\");\n\t\t// TODO: Add more extensions\n\t\treturn ret;\n\t}\n\n\t/**\n\t * Get a list of all supported multimedia extensions.\n\t * <p/>\n\t * @return a list of all supported multimedia extensions.\n\t */\n\tpublic static List<String> getMultimediaExtensions() {\n\t\tList<String> ret = new ArrayList<>();\n\t\tret.addAll(getVideoExtensions());\n\t\tret.addAll(getAudioExtensions());\n\t\treturn ret;\n\t}\n\n\tpublic static List<String> getImageAndVideoExtensions() {\n\t\tList<String> ret = new ArrayList<>();\n\t\tret.addAll(getVideoExtensions());\n\t\tret.addAll(getImageExtensions());\n\t\treturn ret;\n\t}\n\n\t/**\n\t * Get file extensions (in *.ext format) from a list of normal extensions.\n\t * <p/>\n\t * @param extensions the list of normal extensions.\n\t * @return a list of file extensions.\n\t */\n\tpublic static List<String> getFileExtensions(List<String> extensions) {\n\t\tList<String> ret = new ArrayList<>();\n\t\tfor (String str : extensions) {\n\t\t\tret.add(\"*.\" + str);\n\t\t}\n\t\treturn ret;\n\t}\n\n\t/**\n\t * Determine whether the given file has the given case insensitive\n\t * extension.\n\t * <p/>\n\t * @param file the file to check.\n\t * @param ext the extension to check.\n\t * @return true if it has the given extension, false otherwise.\n\t */\n\tpublic static boolean hasExtension(File file, String ext) {\n\t\tString name = file.getName().toLowerCase();\n\t\tif (!name.contains(\".\")) {\n\t\t\treturn false;\n\t\t}\n\t\tString[] parts = name.split(\"\\\\.\");\n\t\tString suffix = parts[parts.length - 1].toLowerCase().trim();\n\t\treturn suffix.equals(ext.trim().toLowerCase());\n\t}\n\n\t/**\n\t * Get the names of all the fonts available on the current system.\n\t * <p/>\n\t * @return the names of all the fonts available.\n\t */\n\tpublic static String[] getAllFonts() {\n\t\tFont[] fonts = GraphicsEnvironment.getLocalGraphicsEnvironment().getAllFonts();\n\t\tSet<String> names = new HashSet<>();\n\t\tfor (Font font : fonts) {\n\t\t\tnames.add(font.getFamily());\n\t\t}\n\t\tList<String> namesList = new ArrayList<>(names.size());\n\t\tfor (String name : names) {\n\t\t\tnamesList.add(name);\n\t\t}\n\t\tCollections.sort(namesList);\n\t\treturn namesList.toArray(new String[namesList.size()]);\n\t}\n\n\t/**\n\t * Get an image filled with the specified colour.\n\t * <p/>\n\t * @param color the colour of the image.\n\t * @return the image.\n\t */\n\tpublic static Image getImageFromColour(final Color color) {\n\t\tWritableImage image = new WritableImage(2, 2);\n\t\tPixelWriter writer = image.getPixelWriter();\n\t\tfor (int i = 0; i < image.getWidth(); i++) {\n\t\t\tfor (int j = 0; j < image.getHeight(); j++) {\n\t\t\t\twriter.setColor(i, j, color);\n\t\t\t}\n\t\t}\n\t\treturn image;\n\t}\n\n\t/**\n\t * Parse a colour string to a colour.\n\t * <p/>\n\t * @param colour the colour string.\n\t * @return the colour.\n\t */\n\tpublic static Color parseColour(String colour) {\n\t\tif (colour == null || colour.trim().isEmpty()) {\n\t\t\treturn ThemeDTO.DEFAULT_FONT_COLOR;\n\t\t}\n\t\tif (!colour.contains(\"[\")) {\n\t\t\ttry {\n\t\t\t\treturn Color.web(colour);\n\t\t\t} catch (IllegalArgumentException ex) {\n\t\t\t\treturn ThemeDTO.DEFAULT_FONT_COLOR;\n\t\t\t}\n\t\t}\n\t\tcolour = colour.substring(colour.indexOf('[') + 1, colour.indexOf(']'));\n\t\tString[] parts = colour.split(\",\");\n\t\tdouble red = Double.parseDouble(parts[0].split(\"=\")[1]);\n\t\tdouble green = Double.parseDouble(parts[1].split(\"=\")[1]);\n\t\tdouble blue = Double.parseDouble(parts[2].split(\"=\")[1]);\n\t\tif (red > 1.0) {\n\t\t\tred /= 255;\n\t\t}\n\t\tif (green > 1.0) {\n\t\t\tgreen /= 255;\n\t\t}\n\t\tif (blue > 1.0) {\n\t\t\tblue /= 255;\n\t\t}\n\t\treturn new Color(red, green, blue, 1);\n\t}\n\n\t/**\n\t * Extract a zip file to a temporary location and retrieve a list of all\n\t * extracted files.\n\t *\n\t * @param zip the zip file to extract\n\t * @return a list of all extracted files.\n\t */\n\tpublic static List<File> extractZip(File zip) {\n\t\ttry {\n\t\t\treturn extractZipWithCharset(zip, null);\n\t\t} catch (Exception ex) {\n\t\t\treturn extractZipWithCharset(zip, Charset.forName(\"CP866\"));\n\t\t}\n\t}\n\n\t/**\n\t * Extract a zip file to a temporary location and retrieve a list of all\n\t * extracted files.\n\t *\n\t * @param zip the zip file to extract\n\t * @param charset the charset to use on this zip file\n\t * @return a list of all extracted files.\n\t */\n\tprivate static List<File> extractZipWithCharset(File zip, Charset charset) {\n\t\tLOGGER.log(Level.INFO, \"Extracting zip file {0}\", zip.getAbsolutePath());\n\t\tint BUFFER = 2048;\n\t\tif (charset == null) {\n\t\t\tcharset = StandardCharsets.UTF_8;\n\t\t}\n\t\ttry (ZipFile zipFile = new ZipFile(zip, charset)) {\n\t\t\tFile tempFolder = Files.createTempDirectory(\"qzipextract\").toFile();\n\t\t\ttempFolder.deleteOnExit();\n\n\t\t\tEnumeration zipFileEntries = zipFile.entries();\n\n\t\t\twhile (zipFileEntries.hasMoreElements()) {\n\t\t\t\tZipEntry entry = (ZipEntry) zipFileEntries.nextElement();\n\t\t\t\tString currentEntry = entry.getName();\n\t\t\t\tFile destFile = new File(tempFolder, currentEntry);\n\t\t\t\tFile destinationParent = destFile.getParentFile();\n\n\t\t\t\tdestinationParent.mkdirs();\n\n\t\t\t\tif (!entry.isDirectory()) {\n\t\t\t\t\ttry (BufferedInputStream is = new BufferedInputStream(zipFile.getInputStream(entry))) {\n\t\t\t\t\t\tint currentByte;\n\t\t\t\t\t\tbyte[] data = new byte[BUFFER];\n\n\t\t\t\t\t\tFileOutputStream fos = new FileOutputStream(destFile);\n\t\t\t\t\t\ttry (BufferedOutputStream dest = new BufferedOutputStream(fos, BUFFER)) {\n\t\t\t\t\t\t\twhile ((currentByte = is.read(data, 0, BUFFER)) != -1) {\n\t\t\t\t\t\t\t\tdest.write(data, 0, currentByte);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tdest.flush();\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t\treturn Files.find(Paths.get(tempFolder.getAbsolutePath()), 999, (p, bfa) -> bfa.isRegularFile()).map(path -> path.toFile())\n\t\t\t\t\t.collect(Collectors.toList());\n\t\t} catch (IOException ex) {\n\t\t\tLOGGER.log(Level.WARNING, \"Error extracting zip\", ex);\n\t\t\treturn Collections.emptyList();\n\t\t}\n\t}\n\n\tpublic static String getEncoding(File file) {\n\t\tString encoding;\n\t\ttry {\n\t\t\tencoding = UniversalDetector.detectCharset(file);\n\t\t}\n\t\tcatch (IOException ex) {\n\t\t\tencoding = null;\n\t\t}\n\t\tif (encoding == null) {\n\t\t\tencoding = \"UTF-8\";\n\t\t\tLOGGER.log(Level.WARNING, \"Couldn't detect encoding, defaulting to \" + encoding + \" for \" + file.getAbsolutePath());\n\t\t}\n\t\telse\n\t\t{\n\t\t\tLOGGER.log(Level.INFO, \"Detected \" + encoding + \" encoding for \" + file.getAbsolutePath());\n\t\t}\n\n\t\treturn encoding;\n\t}\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/utils/Version.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.utils;\n\n/**\n * A version number that can be compared against another version to see what one\n * is greatest.\n * <p/>\n * @author Michael\n */\npublic class Version implements Comparable<Version> {\n    \n    private final String versionStr;\n    private final VersionType versionType;\n\n    /**\n     * Create a new version.\n     * <p/>\n     * @param version the version number in the form x.x.x.x (all x's must be\n     * positive integers.)\n     * @param versionType\n     */\n    public Version(String version, VersionType versionType) {\n        this.versionStr = version;\n        this.versionType = versionType;\n    }\n\n    /**\n     * Get the version string.\n     * <p/>\n     * @return the version string.\n     */\n    public String getVersionString() {\n        return versionStr;\n    }\n\n    /**\n     * Get the minor \"name\" for this particular version - eg. Genesis, Exodus,\n     * etc.\n     * <p>\n     * @return the minor \"name\" for this particular version.\n     */\n    public String getMinorName() {\n        String[] parts = versionStr.split(\"\\\\.\");\n        if(parts.length > 1) {\n            switch(parts[1]) {\n                case \"0\":\n                    return \"Genesis\";\n                case \"1\":\n                    return \"Exodus\";\n                default:\n                    return parts[1];\n            }\n        }\n        else {\n            return \"\";\n        }\n    }\n\n    /**\n     * Get the major version number (eg. 2014.)\n     * <p>\n     * @return the major version number.\n     */\n    public String getMajorVersionNumber() {\n        return versionStr.split(\"\\\\.\")[0];\n    }\n\n    /**\n     * Get the minor version string.\n     * <p/>\n     * @return the minor version string.\n     */\n    public VersionType getUnstableName() {\n        return versionType;\n    }\n\n    /**\n     * Determine if this version is equal to another.\n     * <p/>\n     * @param obj the other object.\n     * @return true if the objects are equal, false otherwise.\n     */\n    @Override\n    public boolean equals(Object obj) {\n        if(obj == null) {\n            return false;\n        }\n        if(getClass() != obj.getClass()) {\n            return false;\n        }\n        final Version other = (Version) obj;\n        if((this.versionStr == null) ? (other.versionStr != null) : !this.versionStr.equals(other.versionStr)) {\n            return false;\n        }\n        return true;\n    }\n\n    /**\n     * Generate a hashcode for this version.\n     */\n    @Override\n    public int hashCode() {\n        int hash = 3;\n        hash = 29 * hash + (this.versionStr != null ? this.versionStr.hashCode() : 0);\n        return hash;\n    }\n\n    /**\n     * Generate a string representation of this version.\n     * <p/>\n     * @return a string representation of this version.\n     */\n    @Override\n    public String toString() {\n        return \"Version{\" + \"versionStr=\" + versionStr + '}';\n    }\n\n    /**\n     * Compare this version to another.\n     * <p/>\n     * @param o the other version.\n     * @return -1 if this version is less than the other one, 0 if they are the\n     * same and 1 if this version is greater.\n     */\n    @Override\n    public int compareTo(Version o) {\n        String[] theseParts = versionStr.split(\"\\\\.\");\n        String[] otherParts = o.versionStr.split(\"\\\\.\");\n        int minLength = Math.min(theseParts.length, otherParts.length);\n        for(int i = 0; i < minLength; i++) {\n            int thisNum = Integer.parseInt(theseParts[i]);\n            int otherNum = Integer.parseInt(otherParts[i]);\n            if(thisNum > otherNum) {\n                return 1;\n            }\n            else if(thisNum < otherNum) {\n                return -1;\n            }\n        }\n        return Integer.valueOf(versionStr.length()).compareTo(o.versionStr.length());\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/utils/VersionChecker.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.services.utils;\n\nimport java.io.BufferedReader;\nimport java.io.InputStreamReader;\nimport java.net.URL;\nimport java.net.URLConnection;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\n\n/**\n * Checks the latest version number online to see if an upgrade is required.\n * @author Michael\n */\npublic class VersionChecker {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    private static final String PREFIX = \"Latest version:\";\n    private final String urlStr;\n\n    /**\n     * Create a new version checker that checks the specified url for the version number.\n     * @param url the URL to use to check the version.\n     */\n    public VersionChecker(String url) {\n        this.urlStr = url;\n    }\n\n    /**\n     * Get the latest version, or null if an error occured and it couldn't be found.\n     * @return the latest version.\n     */\n    public Version getLatestVersion() {\n        LOGGER.log(Level.INFO, \"Checking for an updated version...\");\n        try {\n            URL url = new URL(urlStr);\n            URLConnection connection = url.openConnection();\n            connection.setConnectTimeout(5000);\n            connection.setReadTimeout(5000);\n            try (BufferedReader reader = new BufferedReader(new InputStreamReader(connection.getInputStream()))) {\n                StringBuilder content = new StringBuilder();\n                String line;\n                while((line = reader.readLine()) != null) {\n                    content.append(line);\n                }\n                return extractVersion(content.toString());\n            }\n        }\n        catch(Exception ex) {\n            LOGGER.log(Level.INFO, \"Couldn't get version\", ex);\n            return null;\n        }\n    }\n\n    /**\n     * Extract a version from the specified content.\n     * @param content the content to use to get the specified version.\n     * @return the version.\n     */\n    private Version extractVersion(String content) {\n        try {\n            int startIndex = content.indexOf(PREFIX);\n            return new Version(content.substring(startIndex + PREFIX.length(), content.indexOf('<', startIndex)).trim(), VersionType.RELEASE);\n        }\n        catch(Exception ex) {\n            LOGGER.log(Level.WARNING, \"Couldn't extract version from string: \" + content, ex);\n            return null;\n        }\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/services/utils/VersionType.java",
    "content": "/*\n * To change this license header, choose License Headers in Project Properties.\n * To change this template file, choose Tools | Templates\n * and open the template in the editor.\n */\npackage org.quelea.services.utils;\n\n/**\n *\n * @author Michael\n */\npublic enum VersionType {\n\n    BETA(\"icons/splash-beta.png\"), CI(\"icons/splash-bare-nightly.png\"), RELEASE(\"icons/splash-bare.png\");\n\n    VersionType(String splashPath) {\n        this.splashPath = splashPath;\n    }\n\n    private String splashPath;\n\n    public String getSplashPath() {\n        return splashPath;\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/utils/BigDecimalSpinner.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.utils;\n\nimport java.math.BigDecimal;\nimport java.text.NumberFormat;\nimport javafx.beans.binding.NumberBinding;\nimport javafx.beans.property.ObjectProperty;\nimport javafx.beans.property.SimpleObjectProperty;\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport javafx.geometry.Pos;\nimport javafx.scene.control.Button;\nimport javafx.scene.input.KeyCode;\nimport javafx.scene.input.KeyEvent;\nimport javafx.scene.layout.HBox;\nimport javafx.scene.layout.StackPane;\nimport javafx.scene.layout.VBox;\nimport javafx.scene.shape.LineTo;\nimport javafx.scene.shape.MoveTo;\nimport javafx.scene.shape.Path;\nimport org.quelea.utils.BigDecimalTextField;\n\nimport javax.swing.JSpinner;\n\n/**\n * JavaFX Control that behaves like a {@link JSpinner} known in Swing. The\n * number in the textfield can be incremented or decremented by a configurable\n * stepWidth using the arrow buttons in the control or the up and down arrow\n * keys.\n *\n * @author Thomas Bolz http://java.dzone.com/articles/javafx-numbertextfield-and\n */\npublic class BigDecimalSpinner extends HBox {\n\n    public static final String ARROW = \"NumberSpinnerArrow\";\n    public static final String NUMBER_FIELD = \"NumberField\";\n    public static final String NUMBER_SPINNER = \"NumberSpinner\";\n    public static final String SPINNER_BUTTON_UP = \"SpinnerButtonUp\";\n    public static final String SPINNER_BUTTON_DOWN = \"SpinnerButtonDown\";\n    private final String BUTTONS_BOX = \"ButtonsBox\";\n    private BigDecimalTextField numberField;\n    private ObjectProperty<BigDecimal> stepWitdhProperty = new SimpleObjectProperty<>();\n    private final double ARROW_SIZE = 4;\n    private final Button incrementButton;\n    private final Button decrementButton;\n    private final NumberBinding buttonHeight;\n    private final NumberBinding spacing;\n    private BigDecimal min, max;\n\n    public BigDecimalSpinner(BigDecimal min, BigDecimal max, BigDecimal stepWidth, NumberFormat nf) {\n        super();\n        this.min = min;\n        this.max = max;\n        this.setId(NUMBER_SPINNER);\n        this.stepWitdhProperty.set(stepWidth);\n\n        // TextField\n        numberField = new BigDecimalTextField(min, nf);\n        numberField.setId(NUMBER_FIELD);\n\n        // Enable arrow keys for dec/inc\n        numberField.addEventFilter(KeyEvent.KEY_PRESSED, (KeyEvent keyEvent) -> {\n            if (keyEvent.getCode() == KeyCode.DOWN) {\n                decrement();\n                keyEvent.consume();\n            }\n            if (keyEvent.getCode() == KeyCode.UP) {\n                increment();\n                keyEvent.consume();\n            }\n        });\n\n        // Painting the up and down arrows\n        Path arrowUp = new Path();\n        arrowUp.setId(ARROW);\n        arrowUp.getElements().addAll(new MoveTo(-ARROW_SIZE, 0), new LineTo(ARROW_SIZE, 0),\n                new LineTo(0, -ARROW_SIZE), new LineTo(-ARROW_SIZE, 0));\n        // mouse clicks should be forwarded to the underlying button\n        arrowUp.setMouseTransparent(true);\n\n        Path arrowDown = new Path();\n        arrowDown.setId(ARROW);\n        arrowDown.getElements().addAll(new MoveTo(-ARROW_SIZE, 0), new LineTo(ARROW_SIZE, 0),\n                new LineTo(0, ARROW_SIZE), new LineTo(-ARROW_SIZE, 0));\n        arrowDown.setMouseTransparent(true);\n\n        // the spinner buttons scale with the textfield size\n        // TODO: the following approach leads to the desired result, but it is\n        // not fully understood why and obviously it is not quite elegant\n        buttonHeight = numberField.heightProperty().subtract(3).divide(2);\n        // give unused space in the buttons VBox to the incrementBUtton\n        spacing = numberField.heightProperty().subtract(2).subtract(buttonHeight.multiply(2));\n\n        // inc/dec buttons\n        VBox buttons = new VBox();\n        buttons.setId(BUTTONS_BOX);\n        incrementButton = new Button();\n        incrementButton.setId(SPINNER_BUTTON_UP);\n        incrementButton.prefWidthProperty().bind(numberField.heightProperty());\n        incrementButton.minWidthProperty().bind(numberField.heightProperty());\n        incrementButton.maxHeightProperty().bind(buttonHeight.add(spacing));\n        incrementButton.prefHeightProperty().bind(buttonHeight.add(spacing));\n        incrementButton.minHeightProperty().bind(buttonHeight.add(spacing));\n        incrementButton.setFocusTraversable(false);\n        incrementButton.setOnAction(ae -> {\n            increment();\n            ae.consume();\n        });\n\n        // Paint arrow path on button using a StackPane\n        StackPane incPane = new StackPane();\n        incPane.getChildren().addAll(incrementButton, arrowUp);\n        incPane.setAlignment(Pos.CENTER);\n\n        decrementButton = new Button();\n        decrementButton.setId(SPINNER_BUTTON_DOWN);\n        decrementButton.prefWidthProperty().bind(numberField.heightProperty());\n        decrementButton.minWidthProperty().bind(numberField.heightProperty());\n        decrementButton.maxHeightProperty().bind(buttonHeight);\n        decrementButton.prefHeightProperty().bind(buttonHeight);\n        decrementButton.minHeightProperty().bind(buttonHeight);\n\n        decrementButton.setFocusTraversable(false);\n        decrementButton.setOnAction(ae -> {\n            decrement();\n            ae.consume();\n        });\n\n        StackPane decPane = new StackPane();\n        decPane.getChildren().addAll(decrementButton, arrowDown);\n        decPane.setAlignment(Pos.CENTER);\n\n        buttons.getChildren().addAll(incPane, decPane);\n        this.getChildren().addAll(numberField, buttons);\n    }\n\n    /**\n     * increment number value by stepWidth\n     */\n    private void increment() {\n        BigDecimal value = numberField.getNumber();\n        if (value.doubleValue() < max.doubleValue()) {\n            value = value.add(stepWitdhProperty.get());\n        }\n        numberField.setNumber(value);\n    }\n\n    /**\n     * decrement number value by stepWidth\n     */\n    private void decrement() {\n        BigDecimal value = numberField.getNumber();\n        if (value.doubleValue() > min.doubleValue()) {\n            value = value.subtract(stepWitdhProperty.get());\n        }\n        numberField.setNumber(value);\n    }\n\n    public final void setNumber(BigDecimal value) {\n        numberField.setNumber(value);\n    }\n\n    public ObjectProperty<BigDecimal> numberProperty() {\n        return numberField.numberProperty();\n    }\n\n    public final BigDecimal getNumber() {\n        return numberField.getNumber();\n    }\n\n    // debugging layout bounds\n    public void dumpSizes() {\n        System.out.println(\"numberField (layout)=\" + numberField.getLayoutBounds());\n        System.out.println(\"buttonInc (layout)=\" + incrementButton.getLayoutBounds());\n        System.out.println(\"buttonDec (layout)=\" + decrementButton.getLayoutBounds());\n        System.out.println(\"binding=\" + buttonHeight.toString());\n        System.out.println(\"spacing=\" + spacing.toString());\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/utils/BigDecimalTextField.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.utils;\n\nimport java.math.BigDecimal;\nimport java.text.NumberFormat;\nimport java.text.ParseException;\nimport javafx.beans.property.ObjectProperty;\nimport javafx.beans.property.SimpleObjectProperty;\nimport javafx.beans.value.ChangeListener;\nimport javafx.beans.value.ObservableValue;\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport javafx.scene.control.TextField;\n\n/**\n * Textfield implementation that accepts formatted number and stores them in a\n * BigDecimal property The user input is formatted when the focus is lost or the\n * user hits RETURN.\n *\n * @author Thomas Bolz\n */\npublic class BigDecimalTextField extends TextField {\n\n    private final NumberFormat nf;\n    private ObjectProperty<BigDecimal> number = new SimpleObjectProperty<>();\n\n    public final BigDecimal getNumber() {\n        return number.get();\n    }\n\n    public final void setNumber(BigDecimal value) {\n        number.set(value);\n    }\n\n    public ObjectProperty<BigDecimal> numberProperty() {\n        return number;\n    }\n\n    public BigDecimalTextField() {\n        this(BigDecimal.ZERO);\n    }\n\n    public BigDecimalTextField(BigDecimal value) {\n        this(value, NumberFormat.getInstance());\n        initHandlers();\n    }\n\n    public BigDecimalTextField(BigDecimal value, NumberFormat nf) {\n        super();\n        this.nf = nf;\n        initHandlers();\n        setNumber(value);\n    }\n\n    private void initHandlers() {\n\n        // try to parse when focus is lost or RETURN is hit\n        setOnAction(arg0 -> parseAndFormatInput());\n\n        focusedProperty().addListener((observable, oldValue, newValue) -> {\n            if (!newValue) {\n                parseAndFormatInput();\n            }\n        });\n\n        // Set text in field if BigDecimal property is changed from outside.\n        numberProperty().addListener((obserable, oldValue, newValue) -> setText(nf.format(newValue)));\n    }\n\n    /**\n     * Tries to parse the user input to a number according to the provided\n     * NumberFormat\n     */\n    private void parseAndFormatInput() {\n        try {\n            String input = getText();\n            if (input == null || input.length() == 0) {\n                return;\n            }\n            Number parsedNumber = nf.parse(input);\n            BigDecimal newValue = new BigDecimal(parsedNumber.toString());\n            setNumber(newValue);\n            selectAll();\n        } catch (ParseException ex) {\n            // If parsing fails keep old number\n            setText(nf.format(number.get()));\n        }\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/utils/Chord.java",
    "content": "/*\n * To change this license header, choose License Headers in Project Properties.\n * To change this template file, choose Tools | Templates\n * and open the template in the editor.\n */\npackage org.quelea.utils;\n\nimport java.util.ArrayList;\nimport java.util.List;\n\n/**\n *\n * @author Michael\n */\npublic class Chord {\n\n    private int idx;\n    private String chord;\n\n    public Chord(int idx, String chord) {\n        this.idx = idx;\n        this.chord = chord;\n    }\n\n    public int getIdx() {\n        return idx;\n    }\n\n    public String getChord() {\n        return chord;\n    }\n    \n    @Override\n    public String toString() {\n        return \"Chord{\" + \"chord=\" + chord + \", idx=\" + idx + '}';\n    }\n    \n    public static List<Chord> getChordsFromLine(String chordLine) {\n        List<Chord> ret = new ArrayList<>();\n        int cindex = -1;\n        for (int i = 0; i < chordLine.length(); i++) {\n            if (!Character.isWhitespace(chordLine.charAt(i))) {\n                cindex = i;\n                while (!Character.isWhitespace(chordLine.charAt(i))) {\n                    i++;\n                    if (i >= chordLine.length()) {\n                        break;\n                    }\n                }\n                ret.add(new Chord(cindex, chordLine.substring(cindex, i)));\n            }\n        }\n        return ret;\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/utils/DesktopApi.java",
    "content": "/*\n * Copyright © 2017 jjYBdx4IL (https://github.com/jjYBdx4IL)\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 */\npackage org.quelea.utils;\n\n//CHECKSTYLE:OFF\nimport java.awt.Desktop;\nimport java.io.File;\nimport java.io.IOException;\nimport java.net.URI;\nimport java.net.URISyntaxException;\nimport java.util.ArrayList;\nimport java.util.List;\n\nimport org.apache.commons.lang3.SystemUtils;\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\n\n/**\n *\n * @author jjYBdx4IL\n */\npublic class DesktopApi {\n\n    private static final Logger LOG = LoggerFactory.getLogger(DesktopApi.class);\n    \n    public static boolean browse(String uri) {\n        try {\n            return browse(new URI(uri));\n        } catch (URISyntaxException ex) {\n            return false;\n        }\n    }\n\n    public static boolean browse(URI uri) {\n\n        if (browseDESKTOP(uri)) {\n            return true;\n        }\n\n        if (openSystemSpecific(uri.toString())) {\n            return true;\n        }\n\n        LOG.warn(String.format(\"failed to browse %s\", uri));\n\n        return false;\n    }\n\n    public static boolean open(File file) {\n\n        if (openDESKTOP(file)) {\n            return true;\n        }\n\n        if (openSystemSpecific(file.getPath())) {\n            return true;\n        }\n\n        LOG.warn(String.format(\"failed to open %s\", file.getAbsolutePath()));\n\n        return false;\n    }\n\n    public static boolean edit(File file) {\n\n        if (editDESKTOP(file)) {\n            return true;\n        }\n\n        if (openSystemSpecific(file.getPath())) {\n            return true;\n        }\n\n        LOG.warn(String.format(\"failed to edit %s\", file.getAbsolutePath()));\n\n        return false;\n    }\n    \n    public static void print(File file) {\n        new Thread(() -> {\n            try {\n                Desktop.getDesktop().print(file);\n            } catch (Exception ex) {\n                ex.printStackTrace();\n                LOG.warn(\"Err\", ex);\n            }\n        }).start();\n    }\n\n    private static boolean openSystemSpecific(String what) {\n\n        if (SystemUtils.IS_OS_LINUX) {\n            if (isXDG()) {\n                if (runCommand(\"xdg-open\", \"%s\", what)) {\n                    return true;\n                }\n            }\n            if (isKDE()) {\n                if (runCommand(\"kde-open\", \"%s\", what)) {\n                    return true;\n                }\n            }\n            if (isGNOME()) {\n                if (runCommand(\"gnome-open\", \"%s\", what)) {\n                    return true;\n                }\n            }\n            if (runCommand(\"kde-open\", \"%s\", what)) {\n                return true;\n            }\n            if (runCommand(\"gnome-open\", \"%s\", what)) {\n                return true;\n            }\n        }\n\n        if (SystemUtils.IS_OS_MAC) {\n            if (runCommand(\"open\", \"%s\", what)) {\n                return true;\n            }\n        }\n\n        if (SystemUtils.IS_OS_WINDOWS) {\n            if (runCommand(\"explorer\", \"%s\", what)) {\n                return true;\n            }\n        }\n\n        return false;\n    }\n\n    private static boolean browseDESKTOP(URI uri) {\n\n        try {\n            if (!java.awt.Desktop.isDesktopSupported()) {\n                LOG.debug(\"Platform is not supported.\");\n                return false;\n            }\n\n            if (!java.awt.Desktop.getDesktop().isSupported(java.awt.Desktop.Action.BROWSE)) {\n                LOG.debug(\"BROWSE is not supported.\");\n                return false;\n            }\n\n            LOG.info(\"Trying to use Desktop.getDesktop().browse() with \" + uri.toString());\n            new Thread(() -> {\n                try {\n                    java.awt.Desktop.getDesktop().browse(uri);\n                } catch (Exception ex) {\n                    LOG.warn(\"Err\", ex);\n                }\n            }).start();\n\n            return true;\n        } catch (Throwable t) {\n            LOG.error(\"Error using desktop browse.\", t);\n            return false;\n        }\n    }\n\n    private static boolean openDESKTOP(File file) {\n        try {\n            if (!java.awt.Desktop.isDesktopSupported()) {\n                LOG.debug(\"Platform is not supported.\");\n                return false;\n            }\n\n            if (!java.awt.Desktop.getDesktop().isSupported(java.awt.Desktop.Action.OPEN)) {\n                LOG.debug(\"OPEN is not supported.\");\n                return false;\n            }\n\n            LOG.info(\"Trying to use Desktop.getDesktop().open() with \" + file.toString());\n            new Thread(() -> {\n                try {\n                    java.awt.Desktop.getDesktop().open(file);\n                } catch (Exception ex) {\n                    LOG.warn(\"Err\", ex);\n                }\n            }).start();\n\n            return true;\n        } catch (Throwable t) {\n            LOG.error(\"Error using desktop open.\", t);\n            return false;\n        }\n    }\n\n    private static boolean editDESKTOP(File file) {\n        try {\n            if (!java.awt.Desktop.isDesktopSupported()) {\n                LOG.debug(\"Platform is not supported.\");\n                return false;\n            }\n\n            if (!java.awt.Desktop.getDesktop().isSupported(java.awt.Desktop.Action.EDIT)) {\n                LOG.debug(\"EDIT is not supported.\");\n                return false;\n            }\n\n            LOG.info(\"Trying to use Desktop.getDesktop().edit() with \" + file);\n            java.awt.Desktop.getDesktop().edit(file);\n\n            return true;\n        } catch (Throwable t) {\n            LOG.error(\"Error using desktop edit.\", t);\n            return false;\n        }\n    }\n\n    private static boolean runCommand(String command, String args, String file) {\n\n        LOG.info(\"Trying to exec:\\n   cmd = \" + command + \"\\n   args = \" + args + \"\\n   %s = \" + file);\n\n        String[] parts = prepareCommand(command, args, file);\n\n        try {\n            Process p = Runtime.getRuntime().exec(parts);\n            if (p == null) {\n                return false;\n            }\n\n            try {\n                int retval = p.exitValue();\n                if (retval == 0) {\n                    LOG.error(\"Process ended immediately.\");\n                    return false;\n                } else {\n                    LOG.error(\"Process crashed.\");\n                    return false;\n                }\n            } catch (IllegalThreadStateException itse) {\n                LOG.error(\"Process is running.\");\n                return true;\n            }\n        } catch (IOException e) {\n            LOG.error(\"Error running command.\", e);\n            return false;\n        }\n    }\n\n    private static String[] prepareCommand(String command, String args, String file) {\n\n        List<String> parts = new ArrayList<>();\n        parts.add(command);\n\n        if (args != null) {\n            for (String s : args.split(\" \")) {\n                s = String.format(s, file); // put in the filename thing\n\n                parts.add(s.trim());\n            }\n        }\n\n        return parts.toArray(new String[parts.size()]);\n    }\n\n    private static boolean isXDG() {\n        String xdgSessionId = System.getenv(\"XDG_SESSION_ID\");\n        return xdgSessionId != null && !xdgSessionId.isEmpty();\n    }\n\n    private static boolean isGNOME() {\n        String gdmSession = System.getenv(\"GDMSESSION\");\n        return gdmSession != null && gdmSession.toLowerCase().contains(\"gnome\");\n    }\n\n    private static boolean isKDE() {\n        String gdmSession = System.getenv(\"GDMSESSION\");\n        return gdmSession != null && gdmSession.toLowerCase().contains(\"kde\");\n    }\n\n    private DesktopApi() {\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/utils/EJB3ImplicitNamingStrategy.java",
    "content": "package org.quelea.utils;\n\nimport org.hibernate.boot.model.naming.Identifier;\nimport org.hibernate.boot.model.naming.ImplicitCollectionTableNameSource;\nimport org.hibernate.boot.model.naming.ImplicitConstraintNameSource;\nimport org.hibernate.boot.model.naming.ImplicitForeignKeyNameSource;\nimport org.hibernate.boot.model.naming.ImplicitIndexNameSource;\nimport org.hibernate.boot.model.naming.ImplicitJoinColumnNameSource;\nimport org.hibernate.boot.model.naming.ImplicitNamingStrategyLegacyJpaImpl;\nimport org.hibernate.boot.model.naming.ImplicitUniqueKeyNameSource;\nimport org.hibernate.boot.model.naming.NamingHelper;\n\n/**\n * Custom implicit naming strategy for hibernate 5.\n * <p/>\n * Necessary because the new hibernate version introduced new semantics and new interfaces and configuration of\n * the naming strategy which is responsible for the determination of the names of database objects (tables, fields,\n * constraints, indices and others) that are not explicitly named.\n * <p/>\n * Unfortunately the new naming strategies do not replicate the exact same behaviour of each of the\n * old ones - because the new strategies use more context knowledge than the old ones which\n * ignored some of it.\n * <p/>\n * The new naming strategy that is closest to the EJB3NamingStrategy which we we used before is the\n * ImplicitNamingStrategyLegacyJpaImpl (its javadoc says it corresponds \"roughly\" to it) which is what we use as\n * a base for further customization in order to work around some remaining differences.\n */\npublic class EJB3ImplicitNamingStrategy extends ImplicitNamingStrategyLegacyJpaImpl {\n\n    /**\n     * the original strategy would use the table name which often is set explicitly (e.g. \"USERS\" for the \"User\" class)\n     * but we need the original class name which is what EJB3NamingStrategy seemingly was using (\"USER\" instead of \"USERS\").\n     * <p/>\n     * Following code is copy of superclass which only changes this detail.\n     */\n    @Override\n    public Identifier determineCollectionTableName(ImplicitCollectionTableNameSource source) {\n        String owningClassName = source.getOwningEntityNaming().getClassName();\n        String owningTableName = owningClassName.substring(owningClassName.lastIndexOf('.') + 1);\n        Identifier identifier = toIdentifier(\n                owningTableName + \"_\" + transformAttributePath(source.getOwningAttributePath()),\n                source.getBuildingContext()\n        );\n        if (source.getOwningPhysicalTableName().isQuoted()) {\n            identifier = Identifier.quote(identifier);\n        }\n        return identifier;\n\n    }\n\n    /**\n     * Same as above, base new identifier on class name instead of declared table name. Again copied\n     * and changed code from superclass.\n     */\n    @Override\n    public Identifier determineJoinColumnName(ImplicitJoinColumnNameSource source) {\n        final String name;\n\n        if (source.getNature() == ImplicitJoinColumnNameSource.Nature.ELEMENT_COLLECTION\n                || source.getAttributePath() == null) {\n\n            String referencedClassName = source.getEntityNaming().getClassName();\n            String referencedTableName = referencedClassName.substring(referencedClassName.lastIndexOf('.') + 1);\n\n            name = referencedTableName\n                    + '_'\n                    + source.getReferencedColumnName().getText();\n        } else {\n            name = transformAttributePath(source.getAttributePath())\n                    + '_'\n                    + source.getReferencedColumnName().getText();\n        }\n\n        return toIdentifier(name, source.getBuildingContext());\n    }\n\n    /**\n     * Replicate hibernate 4.3's constraint naming strategy in EJBNamingStrategy, which differs in the following\n     * ways:\n     * - include underscore between prefix and hash value\n     * - prefix unique indices also with UK_ instead of IDX_\n     * - do not include the referenced table name in the hash value generation for foreign keys (do not use\n     * generateHashedFkName method but instead stay with generateHashedConstraintName).\n     */\n    @Override\n    public Identifier determineForeignKeyName(ImplicitForeignKeyNameSource source) {\n        return generateHashedConstraintName(source, \"FK_\");\n    }\n\n    @Override\n    public Identifier determineUniqueKeyName(ImplicitUniqueKeyNameSource source) {\n        return generateHashedConstraintName(source, \"UK_\");\n    }\n\n    @Override\n    public Identifier determineIndexName(ImplicitIndexNameSource source) {\n        return generateHashedConstraintName(source, \"UK_\");\n    }\n\n    private Identifier generateHashedConstraintName(ImplicitConstraintNameSource source, String prefix) {\n        return toIdentifier(\n                NamingHelper.INSTANCE.generateHashedConstraintName(\n                        prefix,\n                        source.getTableName(),\n                        source.getColumnNames()\n                ),\n                source.getBuildingContext()\n        );\n    }\n\n}"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/utils/ExceptionRunnable.java",
    "content": "package org.quelea.utils;\n\n/**\n *\n * @author Michael\n */\npublic interface ExceptionRunnable {\n    \n    void run(Throwable t);\n    \n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/utils/FXFontMetrics.java",
    "content": "package org.quelea.utils;\n\nimport javafx.scene.text.Font;\nimport javafx.scene.text.Text;\n\n/**\n * A replacement for the deprecated / removed Fontmetrics class in JavaFX.\n * @author Michael\n */\npublic class FXFontMetrics {\n\n    private final Text uiText;\n    private final double lineHeight;\n\n    public FXFontMetrics(Font fnt) {\n        uiText = new Text();\n        uiText.setFont(fnt);\n        lineHeight = uiText.getLayoutBounds().getHeight();\n    }\n\n    public double getLineHeight() {\n        return lineHeight;\n    }\n\n    public double computeStringWidth(String txt) {\n        uiText.setText(txt);\n        return uiText.getLayoutBounds().getWidth();\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/utils/OpenLyricsWriter.java",
    "content": "/*\n * Author: Bo Maryniuk <bo@suse.de>\n *\n * Copyright (c) 2013 Bo Maryniuk. All Rights Reserved.\n *\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions are\n * met:\n *\n *     1. Redistributions of source code must retain the above copyright notice,\n *     this list of conditions and the following disclaimer.\n *\n *     2. Redistributions in binary form must reproduce the above copyright\n *     notice, this list of conditions and the following disclaimer in the\n *     documentation and/or other materials provided with the distribution.\n *\n *     3. The name of the author may not be used to endorse or promote products\n *     derived from this software without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY BO MARYNIUK \"AS IS\" AND ANY EXPRESS OR IMPLIED\n * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\n * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO\n * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED\n * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n */\n\n\npackage org.quelea.utils;\n\nimport com.github.berry120.jopenlyrics.Chord;\nimport com.github.berry120.jopenlyrics.OpenLyricsObject;\nimport com.github.berry120.jopenlyrics.Verse;\nimport com.github.berry120.jopenlyrics.VerseLine;\nimport java.io.File;\nimport java.io.IOException;\nimport java.text.SimpleDateFormat;\nimport java.util.Date;\nimport java.util.List;\nimport java.util.Locale;\nimport javax.xml.parsers.DocumentBuilderFactory;\nimport javax.xml.parsers.ParserConfigurationException;\nimport javax.xml.transform.Transformer;\nimport javax.xml.transform.TransformerConfigurationException;\nimport javax.xml.transform.TransformerException;\nimport javax.xml.transform.TransformerFactory;\nimport javax.xml.transform.dom.DOMSource;\nimport javax.xml.transform.stream.StreamResult;\nimport org.w3c.dom.Document;\nimport org.w3c.dom.Element;\n\n/**\n * Store OpenLyrics object into XML DOM.\n *\n * @author bo\n */\npublic class OpenLyricsWriter {\n    private OpenLyricsObject ol;\n    private Document doc;\n\n    /**\n     * IO Exception of the OpenLyrics Writer object when file exists.\n     */\n    public static class OpenLyricsWriterFileExistsException extends IOException {\n        public OpenLyricsWriterFileExistsException(String message) {\n            super(message);\n        }\n    }\n\n\n    /**\n     * IO Exception of the OpenLyrics Write object when file cannot be written.\n     */\n    public static class OpenLyricsWriterWriteErrorException extends IOException {\n        public OpenLyricsWriterWriteErrorException(String message) {\n            super(message);\n        }\n    }\n\n\n    /**\n     * Constructor.\n     * \n     * @param ol\n     * @throws ParserConfigurationException\n     */\n    public OpenLyricsWriter(OpenLyricsObject ol) \n            throws ParserConfigurationException {\n        this.doc = DocumentBuilderFactory.newInstance().newDocumentBuilder().newDocument();\n        this.ol = ol;\n        this.createDOM();\n    }\n\n\n    /**\n     * Write the XML into the file on the filesystem.\n     *\n     * @param xfile\n     */\n    public void writeToFile(File xfile, boolean overwrite)\n            throws OpenLyricsWriterFileExistsException,\n                   OpenLyricsWriterWriteErrorException, \n                   TransformerException {\n        if (!overwrite && xfile.exists()) {\n            throw new OpenLyricsWriterFileExistsException(String.format(\"The file %s exists.\", xfile.getAbsolutePath()));\n        }\n\n        if (overwrite && xfile.exists() && !xfile.canWrite()) {\n            throw new OpenLyricsWriterWriteErrorException(String.format(\"Write access denied file %s exists.\", xfile.getAbsolutePath()));\n        }\n\n        // Write XML\n        Transformer transformer = TransformerFactory.newInstance().newTransformer();\n        DOMSource source = new DOMSource(this.doc);\n        StreamResult result = new StreamResult(xfile);\n\n        //transformer.transform(source, result);\n        transformer.transform(source, new StreamResult(System.out));\n    }\n\n\n    /**\n     * Create DOM from the OpenLyrics object.\n     */\n    private void createDOM() {\n        // Root\n        Element songElement = this.doc.createElement(\"song\");\n        songElement.setAttribute(\"xmlns\", \"http://openlyrics.info/namespace/2009/song\");\n        songElement.setAttribute(\"createdIn\", \"JOpenLyricsLib\");\n        songElement.setAttribute(\"modifiedDate\", new SimpleDateFormat(\"yyyy-MM-dd'T'HH:mmZ\").format(new Date()));\n        this.doc.appendChild(songElement);\n\n        // Assemble properties\n        songElement.appendChild(this.getProperties());\n\n        // Assemble lyrics\n        songElement.appendChild(this.getLyrics());\n    }\n\n\n    /**\n     * Get all the properties.\n     *\n     */\n    private Element getProperties() {\n        Element properties = this.doc.createElement(\"properties\");\n        properties.appendChild(this.getTitles());\n        properties.appendChild(this.getAuthors());\n        properties.appendChild(this.getCopyright());\n        properties.appendChild(this.getComments());\n        properties.appendChild(this.getVerseOrder());\n        properties.appendChild(this.getKey());\n        properties.appendChild(this.getPublisher());\n        properties.appendChild(this.getTempo());\n\n        return properties;\n    }\n\n\n    /**\n     * Get tempo of the song.\n     *\n     * @return\n     */\n    private Element getTempo() {\n        Element tempoElement = this.doc.createElement(\"tempo\");\n        if (this.ol.getProperties().getTempo() != null) {\n            tempoElement.setAttribute(\"type\", this.ol.getProperties().getTempo().getType());\n            tempoElement.appendChild(this.doc.createTextNode(this.ol.getProperties().getTempo().getTempo()));\n        }\n\n        return tempoElement;\n    }\n\n\n    /**\n     * Get publisher of the song.\n     * \n     * @return\n     */\n    private Element getPublisher() {\n        Element publisherElement = this.doc.createElement(\"publisher\");\n        if (this.ol.getProperties().getPublisher() != null && !this.ol.getProperties().getPublisher().isEmpty()) {\n            publisherElement.appendChild(this.doc.createTextNode(this.ol.getProperties().getPublisher()));\n        }\n\n        return publisherElement;\n    }\n\n\n    /**\n     * Get key tonality.\n     *\n     * @return\n     */\n    private Element getKey() {\n        Element keyElement = this.doc.createElement(\"key\");\n        if (this.ol.getProperties().getKey() != null && !this.ol.getProperties().getKey().isEmpty()) {\n            keyElement.appendChild(this.doc.createTextNode(this.ol.getProperties().getKey()));\n        }\n\n        return keyElement;\n    }\n\n\n    /**\n     * Get verse order.\n     *\n     * @return\n     */\n    private Element getVerseOrder() {\n        // XXX: Verse order needs to be redesigned entirely.\n\n        Element verseOrderElement = this.doc.createElement(\"verseOrder\");\n        List<String> verseOrderList = this.ol.getProperties().getVerseOrder();\n        StringBuilder verseOrderText = new StringBuilder();\n        if (verseOrderList != null && !verseOrderList.isEmpty()) {\n            for (int i = 0; i < verseOrderList.size(); i++) {\n                verseOrderText.append(verseOrderList.get(i)).append(\" \");\n            }\n        } else {\n            // Plain from XML\n            List<Verse> verses = this.ol.getVerses();\n            for (int i = 0; i < verses.size(); i++) {\n                verseOrderText.append(verses.get(i).getName()).append(\" \");\n            }\n        }\n\n        verseOrderElement.appendChild(this.doc.createTextNode(verseOrderText.toString().trim()));\n\n        return verseOrderElement;\n    }\n\n\n    /**\n     * Get comments to the song.\n     *\n     * @return\n     */\n    private Element getComments() {\n        Element commentsBlockElement = this.doc.createElement(\"comments\");\n        List<String> comments = this.ol.getProperties().getComments();\n        if (comments != null && !comments.isEmpty()) {\n            for (int i = 0; i < comments.size(); i++) {\n                Element commentElement = this.doc.createElement(\"comment\");\n                commentElement.appendChild(this.doc.createTextNode(comments.get(i)));\n                commentsBlockElement.appendChild(commentElement);\n            }\n        }\n\n        return commentsBlockElement;\n    }\n\n\n    /**\n     * Get copyright.\n     * \n     * @return\n     */\n    private Element getCopyright() {\n        Element copyrightElement = this.doc.createElement(\"copyright\");\n        String copyrightNotice = this.ol.getProperties().getCopyright();\n        copyrightElement.appendChild(this.doc.createTextNode((copyrightNotice != null && !copyrightNotice.isEmpty())\n                                                             ? copyrightNotice : \"Unknown\"));\n        return copyrightElement;\n    }\n\n\n    /**\n     * Get authors of the song.\n     *\n     * @return\n     */\n    private Element getAuthors() {\n        Element authorsElement = this.doc.createElement(\"authors\");\n\n        // Gather authors\n        List<Locale> titleLocales = this.ol.getProperties().getTitleProperty().getTitleLocales();\n        for (int i = 0; i < titleLocales.size(); i++) {\n            Element authorElement = this.doc.createElement(\"author\");\n            authorElement.appendChild(this.doc.createTextNode(this.ol.getProperties().getTitleProperty().getTitle(titleLocales.get(i))));\n            authorsElement.appendChild(authorElement);\n        }\n\n        return authorsElement;\n    }\n\n\n    /**\n     * Get titles of the song.\n     * \n     * @return\n     */\n    private Element getTitles() {\n        Element titlesElement = this.doc.createElement(\"titles\");\n\n        // Gather titles\n        List<Locale> titleLocales = this.ol.getProperties().getTitleProperty().getTitleLocales();\n        for (int i = 0; i < titleLocales.size(); i++) {\n            Element titleElement = this.doc.createElement(\"title\");\n            titleElement.setAttribute(\"lang\", titleLocales.get(i).getLanguage());\n            titleElement.appendChild(this.doc.createTextNode(this.ol.getProperties().getTitleProperty().getTitle(titleLocales.get(i))));\n            titlesElement.appendChild(titleElement);\n        }\n\n        return titlesElement;\n    }\n\n\n    /**\n     * Get all the lyrics with chords.\n     * \n     * @return\n     */\n    private Element getLyrics() {\n        Element lyrics = this.doc.createElement(\"lyrics\");\n\n        // Get verses\n        for (int i = 0; i < this.ol.getVerses().size(); i++) {\n            Verse verse = this.ol.getVerses().get(i);\n\n            // Create verse element\n            Element verseElement = this.doc.createElement(\"verse\");\n            if (verse.getName() != null) {\n                verseElement.setAttribute(\"name\", verse.getName());\n            }\n\n            // Lines (I have no idea why they do exists at all if we already have verse!)\n            Element linesElement = this.doc.createElement(\"lines\");\n            verseElement.appendChild(linesElement);\n\n            // Add lines to the verse\n            for (int j = 0; j < verse.getLines().size(); j++) {\n                VerseLine line = verse.getLines().get(j);\n\n                // Create line element with chords\n                int substroffset = 0;\n                for (int cidx = 0; cidx < line.getChords().size(); cidx++) {\n                    Chord chord = line.getChords().get(cidx);\n                    linesElement.appendChild(this.doc.createTextNode(line.getText().substring(substroffset, chord.getLineOffset())));\n                    substroffset = chord.getLineOffset();\n\n                    // Add chord to DOM\n                    Element chordElement = this.doc.createElement(\"chord\");\n                    chordElement.setAttribute(\"name\", chord.getRoot()); // XXX: Needs a proper chord render\n                    linesElement.appendChild(chordElement);\n                }\n                // Add the rest of the text left after chords.\n                linesElement.appendChild(this.doc.createTextNode(line.getText().substring(substroffset)));\n\n                // Do not <br/> to the last line in the verse\n                if ((j + 1) < verse.getLines().size()) {\n                    linesElement.appendChild(this.doc.createElement(\"br\"));\n                }\n            }\n\n            // Add verse to DOM\n            lyrics.appendChild(verseElement);\n        }\n\n        return lyrics;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/utils/PlatformUtils.java",
    "content": "package org.quelea.utils;\n\nimport com.sun.jna.Native;\nimport com.sun.jna.NativeLong;\nimport com.sun.jna.platform.unix.X11;\n\nimport java.awt.*;\nimport javafx.stage.Stage;\nimport org.quelea.services.utils.Utils;\n\n/**\n * Author: Vladimir Kravets E-Mail: vova.kravets@gmail.com Date: 4/10/13 Time:\n * 12:19 AM based on code from VLCJ\n * http://code.google.com/p/vlcj/source/browse/trunk/vlcj/src/main/java/uk/co/caprica/vlcj/runtime/x/LibXUtil.java\n */\npublic class PlatformUtils {\n\n    /**\n     * Ask the window manager to make a window full-screen.\n     * <p>\n     * This method sends a low-level event to an X window to request that the\n     * window be made 'real' full-screen - i.e. the window will be sized to fill\n     * the entire screen bounds, and will appear <em>above</em> any window\n     * manager screen furniture such as panels and menus.\n     * <p>\n     * This method should only be called on platforms where X is supported.\n     * <p>\n     * The implementation makes use of the JNA X11 platform binding.\n     *\n     * @param w window to make full-screen\n     * @param fullScreen <code>true</code> to make the window full-screen;\n     * <code>false</code> to restore the window to it's original size and\n     * position\n     * @return <code>true</code> if the message was successfully sent to the\n     * window; <code>false</code> otherwise\n     */\n    public static boolean setFullScreenWindow(Window w, boolean fullScreen) {\n        if (!Utils.isLinux()) {\n            return false;\n        }\n\n        return setFullScreenWindow(Native.getWindowID(w), fullScreen);\n    }\n\n    /**\n     * Same as setFullScreenWindow but modified to take a javafx Stage Also sets\n     * up always on top\n     */\n    public static boolean setFullScreenAlwaysOnTop(Stage stage, boolean fullScreen) {\n        if (!Utils.isLinux()) {\n            return false;\n        }\n\n        stage.setFullScreenExitHint(\"\");\n        stage.setFullScreenExitKeyCombination(null);\n        stage.setFullScreen(fullScreen);\n        stage.setAlwaysOnTop(fullScreen);\n\n        return setFullScreenWindow(getWindowID(stage), fullScreen);\n    }\n\n    private static boolean setFullScreenWindow(long wid, boolean fullScreen) {\n        //Ignore this method for now. Doesn't work with snaps.\n        if(true) return false;\n        \n        // Use the JNA platform X11 binding\n        X11 x = X11.INSTANCE;\n        X11.Display display = null;\n        try {\n            // Open the display\n            display = x.XOpenDisplay(null);\n            // Send the message\n\n            int result = sendClientMessage(\n                    display,\n                    wid,\n                    \"_NET_WM_STATE\",\n                    new NativeLong[]{\n                        new NativeLong(fullScreen ? _NET_WM_STATE_ADD : _NET_WM_STATE_REMOVE),\n                        x.XInternAtom(display, \"_NET_WM_STATE_FULLSCREEN\", false),\n                        x.XInternAtom(display, \"_NET_WM_STATE_ABOVE\", false),\n                        new NativeLong(0L),\n                        new NativeLong(0L)\n                    }\n            );\n            return (result != 0);\n        } finally {\n            if (display != null) {\n                // Close the display\n                x.XCloseDisplay(display);\n            }\n        }\n    }\n\n    /**\n     * Get native window handle of a Stage. We can't do this anymore in Java 10\n     * as the internal library we used has disappeared. Leave this here in case\n     * a solution appears in future.\n     */\n    private static long getWindowID(Stage stage) {\n        return -1;\n    }\n\n    /**\n     * Helper method to send a client message to an X window.\n     *\n     * @param display display\n     * @param wid native window identifier\n     * @param msg type of message to send\n     * @param data message data\n     * @return <code>1</code> if the message was successfully sent to the\n     * window; <code>0</code> otherwise\n     */\n    private static int sendClientMessage(X11.Display display, long wid, String msg, NativeLong[] data) {\n        // Use the JNA platform X11 binding\n        assert (data.length == 5);\n        X11 x = X11.INSTANCE;\n        // Create and populate a client-event structure\n        X11.XEvent event = new X11.XEvent();\n        event.type = X11.ClientMessage;\n        // Select the proper union structure for the event type and populate it\n        event.setType(X11.XClientMessageEvent.class);\n        event.xclient.type = X11.ClientMessage;\n        event.xclient.serial = new NativeLong(0L);\n        event.xclient.send_event = 1;\n        event.xclient.message_type = x.XInternAtom(display, msg, false);\n        event.xclient.window = new X11.Window(wid);\n        event.xclient.format = 32;\n        // Select the proper union structure for the event data and populate it\n        event.xclient.data.setType(NativeLong[].class);\n        System.arraycopy(data, 0, event.xclient.data.l, 0, 5);\n\n        // Send the event\n        NativeLong mask = new NativeLong(X11.SubstructureRedirectMask | X11.SubstructureNotifyMask);\n        int result = x.XSendEvent(display, x.XDefaultRootWindow(display), 0, mask, event);\n        // Flush, since we're not processing an X event loop\n        x.XFlush(display);\n        // Finally, return the result of sending the event\n        return result;\n    }\n\n    // X window message definitions\n    private static final int _NET_WM_STATE_REMOVE = 0;\n    private static final int _NET_WM_STATE_ADD = 1;\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/utils/SongBeamerUtil.java",
    "content": "/*\n * Author: Bo Maryniuk <bo@suse.de>\n *\n * Copyright (c) 2013 Bo Maryniuk. All Rights Reserved.\n *\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions are\n * met:\n *\n *     1. Redistributions of source code must retain the above copyright notice,\n *     this list of conditions and the following disclaimer.\n *\n *     2. Redistributions in binary form must reproduce the above copyright\n *     notice, this list of conditions and the following disclaimer in the\n *     documentation and/or other materials provided with the distribution.\n *\n *     3. The name of the author may not be used to endorse or promote products\n *     derived from this software without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY BO MARYNIUK \"AS IS\" AND ANY EXPRESS OR IMPLIED\n * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\n * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO\n * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED\n * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n */\n\n\npackage org.quelea.utils;\n\n/**\n *\n * @author bo\n */\npublic class SongBeamerUtil {\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/utils/SongDisplayableList.java",
    "content": "package org.quelea.utils;\n\nimport org.quelea.data.displayable.IndexedDisplayable;\nimport org.quelea.data.displayable.SongDisplayable;\n\nimport java.io.Serializable;\nimport java.util.ArrayList;\nimport java.util.List;\n\n/**\n * Utility class to wrap a song displayable list to avoid generic type warnings on drag/drop operations.\n */\npublic class SongDisplayableList implements Serializable {\n\n    private final List<IndexedDisplayable> songDisplayables;\n\n    public SongDisplayableList(List<IndexedDisplayable> songDisplayables) {\n        this.songDisplayables = new ArrayList<>(songDisplayables);\n    }\n\n    public SongDisplayableList(IndexedDisplayable songDisplayable) {\n        this(List.of(songDisplayable));\n    }\n\n    public List<IndexedDisplayable> getSongDisplayables() {\n        return songDisplayables;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/utils/ThemeUtils.java",
    "content": "/*\n * To change this license header, choose License Headers in Project Properties.\n * To change this template file, choose Tools | Templates\n * and open the template in the editor.\n */\npackage org.quelea.utils;\n\nimport java.io.File;\nimport java.util.ArrayList;\nimport java.util.Collections;\nimport java.util.List;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport javafx.collections.FXCollections;\nimport javafx.collections.ObservableList;\nimport org.quelea.data.ThemeDTO;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\n\n/**\n *\n * @author Michael\n */\npublic class ThemeUtils {\n    \n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    \n    /**\n     * Get a list of themes currently in use on this window.\n     * <p/>\n     * @return the list of themes displayed.\n     */\n    public static ObservableList<ThemeDTO> getThemes() {\n        List<ThemeDTO> themesList = new ArrayList<>();\n        File themeDir = new File(QueleaProperties.get().getQueleaUserHome(), \"themes\");\n        if (!themeDir.exists()) {\n            themeDir.mkdir();\n        }\n        for (File file : themeDir.listFiles()) {\n            if (file.getName().endsWith(\".th\")) {\n                String fileText = Utils.getTextFromFile(file.getAbsolutePath(), \"\");\n                if (fileText.trim().isEmpty()) {\n                    continue;\n                }\n                final ThemeDTO theme = ThemeDTO.fromString(fileText, Collections.emptyMap());\n                if (theme == ThemeDTO.DEFAULT_THEME) {\n                    LOGGER.log(Level.WARNING, \"Error parsing theme file: {0}\", fileText);\n                    continue;  //error\n                }\n                theme.setFile(file);\n                themesList.add(theme);\n            }\n        }\n        return FXCollections.observableArrayList(themesList);\n    }\n    \n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/utils/TrackDuplicateProperties.java",
    "content": "package org.quelea.utils;\n\nimport java.io.IOException;\nimport java.io.Reader;\nimport java.util.ArrayList;\nimport java.util.Collections;\nimport java.util.List;\nimport java.util.Properties;\n\n/**\n * Overrides properties to throw an exception on a duplicate key.\n * @author Michael\n */\npublic class TrackDuplicateProperties extends Properties {\n\t\n\tprivate List<Object> duplicateKeys = new ArrayList<>();\n    \n    @Override\n    public synchronized Object put(Object key, Object value) {\n        if (get(key) != null) {\n            duplicateKeys.add(key);\n        }\n        return super.put(key, value);\n    }\n\t\n\tpublic void loadNoDuplicates(Reader reader) throws IOException {\n\t\tsuper.load(reader);\n\t\tif(!getDuplicateKeys().isEmpty()) {\n\t\t\tthrow new IllegalArgumentException(\"Duplicate keys found: \" + duplicateKeys);\n\t\t}\n\t}\n\t\n\tpublic List<Object> getDuplicateKeys() {\n\t\treturn Collections.unmodifiableList(duplicateKeys);\n\t}\n    \n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/utils/WrapTextResult.java",
    "content": "/*\n * To change this license header, choose License Headers in Project Properties.\n * To change this template file, choose Tools | Templates\n * and open the template in the editor.\n */\npackage org.quelea.utils;\n\nimport java.util.List;\nimport org.quelea.services.utils.LyricLine;\n\n/**\n *\n * @author Michael\n */\npublic class WrapTextResult {\n\n    List<LyricLine> newText;\n    double fontSize;\n\n    public WrapTextResult(List<LyricLine> newText, double fontSize) {\n        this.newText = newText;\n        this.fontSize = fontSize;\n    }\n    \n    public List<LyricLine> getNewText() {\n        return newText;\n    }\n\n    public double getFontSize() {\n        return fontSize;\n    }\n    \n    \n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/help/AboutDialog.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.help;\n\nimport java.awt.Desktop;\nimport java.io.File;\nimport java.util.logging.Logger;\nimport javafx.geometry.Insets;\nimport javafx.geometry.Pos;\nimport javafx.scene.Cursor;\nimport javafx.scene.Scene;\nimport javafx.scene.control.Button;\nimport javafx.scene.control.Label;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.layout.BorderPane;\nimport javafx.scene.layout.HBox;\nimport javafx.scene.layout.VBox;\nimport javafx.scene.paint.Color;\nimport javafx.scene.text.Font;\nimport javafx.scene.text.FontPosture;\nimport javafx.scene.text.FontWeight;\nimport javafx.scene.text.Text;\nimport javafx.stage.Modality;\nimport javafx.stage.Stage;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.utils.DesktopApi;\n\n/**\n * Quelea's about Dialog, displaying general features about the program and the\n * debug log location (so we can point any users here who may be looking for\n * it.)\n * <p/>\n * @author Michael\n */\npublic class AboutDialog extends Stage {\n    \n    private static final Logger LOGGER = LoggerUtils.getLogger();\n\n    /**\n     * Create a new about dialog.\n     */\n    public AboutDialog() {\n        initModality(Modality.APPLICATION_MODAL);\n        setResizable(false);\n        setTitle(LabelGrabber.INSTANCE.getLabel(\"help.about.title\"));\n\n        BorderPane newLayout = new BorderPane();\n        ImageView logo = new ImageView(new Image(\"file:icons/full logo.png\"));\n        BorderPane.setAlignment(logo, Pos.CENTER);\n        newLayout.setTop(logo);\n\n        VBox subLayout = new VBox();\n        Text headingText = new Text(LabelGrabber.INSTANCE.getLabel(\"help.about.version\") + \" \" + QueleaProperties.VERSION.getVersionString());\n        headingText.setFont(Font.font(\"Arial\", FontWeight.BOLD, FontPosture.REGULAR, 20));\n        headingText.getStyleClass().add(\"text\");\n        subLayout.getChildren().add(headingText);\n        subLayout.getChildren().add(new Text(\" \"));\n        Text text1 = new Text(LabelGrabber.INSTANCE.getLabel(\"help.about.line1\"));\n        text1.getStyleClass().add(\"text\");\n        subLayout.getChildren().add(text1);\n        Text text2 = new Text(LabelGrabber.INSTANCE.getLabel(\"help.about.line2\"));\n        text2.getStyleClass().add(\"text\");\n        subLayout.getChildren().add(text2);\n        subLayout.getChildren().add(new Text(\" \"));\n        subLayout.getChildren().add(new Label(\"Java: \" + System.getProperty(\"java.version\")));\n        HBox debugBox = new HBox(5);\n        debugBox.getChildren().add(new Label(LabelGrabber.INSTANCE.getLabel(\"debug.location\") + \":\"));\n        Text debugLogText = new Text(LoggerUtils.getHandlerFileLocation());\n        debugLogText.getStyleClass().add(\"text\");\n        if(Desktop.isDesktopSupported()) {\n            debugLogText.setCursor(Cursor.HAND);\n            debugLogText.setFill(Color.BLUE);\n            debugLogText.setStyle(\"-fx-underline: true;\");\n            debugLogText.setOnMouseClicked(t -> {\n                DesktopApi.open(new File(LoggerUtils.getHandlerFileLocation()));\n            });\n        }\n        debugBox.getChildren().add(debugLogText);\n        subLayout.getChildren().add(debugBox);\n        Button closeButton = new Button(LabelGrabber.INSTANCE.getLabel(\"help.about.close\"));\n        closeButton.setOnAction(t -> {\n            hide();\n        });\n        newLayout.setCenter(subLayout);\n        BorderPane.setMargin(subLayout, new Insets(10));\n        BorderPane.setAlignment(closeButton, Pos.CENTER);\n        BorderPane.setMargin(closeButton, new Insets(10));\n        newLayout.setBottom(closeButton);\n\n        Scene scene = new Scene(newLayout);\n        if (QueleaProperties.get().getUseDarkTheme()) {\n            scene.getStylesheets().add(\"org/modena_dark.css\");\n        }\n        setScene(scene);\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/image/ImageDrawer.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.image;\n\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.layout.StackPane;\nimport org.quelea.data.displayable.Displayable;\nimport org.quelea.data.displayable.ImageDisplayable;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.DisplayableDrawer;\nimport org.quelea.windows.main.QueleaApp;\n\n/**\n * Responsible for drawing an image onto the DisplayCanvas.\n * <p/>\n * @author tomaszpio@gmail.com\n * @author berry120@gmail.com\n */\npublic class ImageDrawer extends DisplayableDrawer {\n\n    private ImageView imageView;\n    private Image image;\n\n    @Override\n    public void draw(Displayable displayable) {\n        clear();\n        imageView = getCanvas().getNewImageView();\n        imageView.setFitWidth(getCanvas().getWidth());\n        if(getCanvas().isStageView()) {\n            image = Utils.getImageFromColour(QueleaProperties.get().getStageBackgroundColor());\n        }\n        else {\n            image = ((ImageDisplayable) displayable).getImage();\n            imageView.setPreserveRatio(true);\n        }\n        imageView.setImage(image);\n        StackPane imageBox = new StackPane();\n        imageBox.getChildren().add(imageView);\n        if(getCanvas() != QueleaApp.get().getProjectionWindow().getCanvas()\n                && getCanvas() != QueleaApp.get().getStageWindow().getCanvas()) {\n            imageBox.setStyle(\"-fx-background-color:#dddddd;\");\n        }\n        imageBox.setVisible(false);\n        getCanvas().getChildren().add(imageBox);\n        getCanvas().pushLogoNoticeToFront();\n        imageBox.setVisible(true);\n        getCanvas().setOpacity(1);\n    }\n\n    @Override\n    public void clear() {\n        if(getCanvas().getChildren() != null) {\n            getCanvas().clearNonPermanentChildren();\n        }\n    }\n\n    @Override\n    public void requestFocus() {\n        imageView.requestFocus();\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/image/ImagePanel.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.image;\n\n\nimport javafx.scene.input.KeyCode;\nimport javafx.scene.input.KeyEvent;\nimport org.quelea.data.displayable.ImageDisplayable;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.windows.main.AbstractPanel;\nimport org.quelea.windows.main.DisplayCanvas;\nimport org.quelea.windows.main.DisplayCanvas.Priority;\nimport org.quelea.windows.main.DisplayableDrawer;\nimport org.quelea.windows.main.MainPanel;\nimport org.quelea.windows.main.QueleaApp;\n\n/**\n * A panel used in the live / preview panels for displaying images.\n * <p/>\n * @author Michael\n */\npublic class ImagePanel extends AbstractPanel {\n\n    private final DisplayCanvas previewCanvas;\n    private final ImageDrawer drawer = new ImageDrawer();\n\n    /**\n     * Create a new image panel.\n     */\n    public ImagePanel() {\n        setStyle(\"-fx-background-color: rgba(0, 0, 0);\");\n        previewCanvas = new DisplayCanvas(false, super::updateCanvas, Priority.LOW);\n        registerDisplayCanvas(previewCanvas);\n        setCenter(previewCanvas);\n        addEventFilter(KeyEvent.KEY_PRESSED, (KeyEvent t) -> {\n            if (t.getCode().equals(KeyCode.PAGE_DOWN) || t.getCode().equals(KeyCode.DOWN)) {\n                t.consume();\n                QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().advance();\n            } else if (t.getCode().equals(KeyCode.PAGE_UP) || t.getCode().equals(KeyCode.UP)) {\n                t.consume();\n                QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().previous();\n            }\n        });\n    }\n\n    @Override\n    public DisplayableDrawer getDrawer(DisplayCanvas canvas) {\n        drawer.setCanvas(canvas);\n        return drawer;\n    }\n\n    /**\n     * Clear the panel and all canvases associated with it.\n     */\n    @Override\n    public void removeCurrentDisplayable() {\n        super.removeCurrentDisplayable();\n    }\n\n    /**\n     * Show a given image displayable on the panel.\n     * <p/>\n     * @param displayable the image displayable.\n     */\n    public void showDisplayable(ImageDisplayable displayable) {\n        setCurrentDisplayable(displayable);\n        updateCanvas();\n    }\n\n    @Override\n    public int getCurrentIndex() {\n        return 0;\n    }\n\n    /**\n     * Advances the current slide.\n     * <p/>\n     */\n    public void advance() {\n        MainPanel qmp = QueleaApp.get().getMainWindow().getMainPanel();\n        boolean lastItemTest = qmp.getLivePanel().getDisplayable() == qmp.getSchedulePanel().getScheduleList().getItems().get(qmp.getSchedulePanel().getScheduleList().getItems().size() - 1).displayable();\n        if (QueleaProperties.get().getAdvanceOnLive() && QueleaProperties.get().getSongOverflow() && !lastItemTest) {\n            qmp.getPreviewPanel().goLive();\n        }\n    }\n\n    /**\n     * Moves to the previous slide.\n     * <p/>\n     */\n    public void previous() {\n        MainPanel qmp = QueleaApp.get().getMainWindow().getMainPanel();\n        boolean firstItemTest = qmp.getSchedulePanel().getScheduleList().getItems().get(0).displayable() == qmp.getLivePanel().getDisplayable();\n        if (QueleaProperties.get().getAdvanceOnLive() && QueleaProperties.get().getSongOverflow() && !firstItemTest) {\n            //Assuming preview panel is one ahead, and should be one behind\n            int index = qmp.getSchedulePanel().getScheduleList().getSelectionModel().getSelectedIndex();\n            if(qmp.getLivePanel().getDisplayable() == qmp.getSchedulePanel().getScheduleList().getItems().get(qmp.getSchedulePanel().getScheduleList().getItems().size() - 1).displayable()) {\n                index -= 1;\n            }\n            else{\n                index -= 2;\n            }\n            if (index >= 0) {\n                qmp.getSchedulePanel().getScheduleList().getSelectionModel().clearAndSelect(index);\n                qmp.getPreviewPanel().selectLastLyric();\n                qmp.getPreviewPanel().goLive();\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/imagegroup/ImageGroupDrawer.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.imagegroup;\n\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.layout.StackPane;\nimport org.quelea.data.displayable.Displayable;\nimport org.quelea.data.displayable.ImageDisplayable;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.DisplayableDrawer;\nimport org.quelea.windows.main.QueleaApp;\n\n/**\n *\n * @author Arvid\n */\npublic class ImageGroupDrawer extends DisplayableDrawer {\n    private ImageView imageView;\n    private Image image;\n\n    @Override\n    public void draw(Displayable displayable) {\n        clear();\n        imageView = getCanvas().getNewImageView();\n        imageView.setFitWidth(getCanvas().getWidth());\n        if(getCanvas().isStageView()) {\n            image = Utils.getImageFromColour(QueleaProperties.get().getStageBackgroundColor());\n        }\n        else {\n            image = ((ImageDisplayable) displayable).getImage();\n            imageView.setPreserveRatio(true);\n        }\n        imageView.setImage(image);\n        StackPane imageBox = new StackPane();\n        imageBox.getChildren().add(imageView);\n        if(getCanvas() != QueleaApp.get().getProjectionWindow().getCanvas()\n                && getCanvas() != QueleaApp.get().getStageWindow().getCanvas()) {\n            imageBox.setStyle(\"-fx-background-color:#dddddd;\");\n        }\n        imageBox.setVisible(false);\n        getCanvas().getChildren().add(imageBox);\n        getCanvas().pushLogoNoticeToFront();\n        imageBox.setVisible(true);\n        getCanvas().setOpacity(1);\n    }\n\n    @Override\n    public void clear() {\n        if(getCanvas().getChildren() != null) {\n            getCanvas().clearNonPermanentChildren();\n        }\n    }\n\n    @Override\n    public void requestFocus() {\n        imageView.requestFocus();\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/imagegroup/ImageGroupPanel.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.imagegroup;\n\nimport javafx.animation.Animation;\nimport javafx.animation.KeyFrame;\nimport javafx.animation.Timeline;\nimport javafx.application.Platform;\nimport javafx.beans.value.ChangeListener;\nimport javafx.beans.value.ObservableValue;\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport javafx.scene.image.Image;\nimport javafx.scene.input.KeyCode;\nimport javafx.scene.input.KeyEvent;\nimport javafx.scene.layout.BorderPane;\nimport javafx.util.Duration;\nimport org.quelea.data.displayable.ImageDisplayable;\nimport org.quelea.data.displayable.ImageGroupDisplayable;\nimport org.quelea.data.imagegroup.ImageGroupSlide;\nimport org.quelea.windows.main.AbstractPanel;\nimport org.quelea.windows.main.DisplayCanvas;\nimport org.quelea.windows.main.DisplayableDrawer;\nimport org.quelea.windows.main.LivePanel;\nimport org.quelea.windows.main.LivePreviewPanel;\nimport org.quelea.windows.main.QueleaApp;\n\n/**\n * The panel for displaying a group of images in the live / preview panels.\n * <p/>\n * @author Arvid, based on PresentationPanel\n */\npublic class ImageGroupPanel extends AbstractPanel {\n\n    private ImageGroupPreview imageGroupPreview;\n    private ImageGroupDisplayable displayable;\n    private boolean live;\n    private ImageGroupDrawer drawer = new ImageGroupDrawer();\n    private ImageGroupSlide currentSlide = null;\n    private LivePreviewPanel containerPanel;\n    private Timeline loopTimeline;\n\n    /**\n     * Create a new presentation panel.\n     * <p/>\n     * @param containerPanel the panel to create.\n     */\n    public ImageGroupPanel(final LivePreviewPanel containerPanel) {\n        this.containerPanel = containerPanel;\n        BorderPane mainPanel = new BorderPane();\n        imageGroupPreview = new ImageGroupPreview();\n        imageGroupPreview.addSlideChangedListener(newSlide -> {\n            if (live) {\n                LivePanel lp = QueleaApp.get().getMainWindow().getMainPanel().getLivePanel();\n                if (newSlide != null && displayable != null) {\n                        currentSlide = newSlide;\n                        updateCanvas();\n                }\n            }\n        });\n        imageGroupPreview.select(0);\n\n        imageGroupPreview.addEventHandler(KeyEvent.KEY_PRESSED, t -> {\n            if (t.getCode().equals(KeyCode.PAGE_DOWN) || t.getCode().equals(KeyCode.DOWN)) {\n                t.consume();\n                QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().advance();\n            } else if (t.getCode().equals(KeyCode.PAGE_UP) || t.getCode().equals(KeyCode.UP)) {\n                t.consume();\n                QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().previous();\n            }\n        });\n        mainPanel.setCenter(imageGroupPreview);\n        setCenter(mainPanel);\n    }\n\n    @Override\n    public void requestFocus() {\n        imageGroupPreview.requestFocus();\n    }\n\n    public void buildLoopTimeline() {\n        loopTimeline = new Timeline(\n                new KeyFrame(Duration.seconds(0),\n                        actionEvent -> {\n                            if (containerPanel instanceof LivePanel) {\n                                LivePanel livePanel = ((LivePanel) containerPanel);\n                                if (livePanel.isLoopSelected()) {\n                                    imageGroupPreview.advanceSlide(true);\n                                }\n                            }\n                        }\n                ),\n                new KeyFrame(Duration.seconds(10))\n        );\n        loopTimeline.setCycleCount(Animation.INDEFINITE);\n        loopTimeline.play();\n        QueleaApp.get().doOnLoad(() -> QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().getLoopDurationTextField().textProperty().addListener((ov, t, t1) -> {\n            int newTime;\n            try {\n                newTime = Integer.parseInt(t1);\n            } catch (NumberFormatException ex) {\n                return;\n            }\n            loopTimeline.stop();\n            loopTimeline = new Timeline(\n                    new KeyFrame(Duration.seconds(0),\n                            actionEvent -> {\n                                if (containerPanel instanceof LivePanel) {\n                                    LivePanel livePanel = ((LivePanel) containerPanel);\n                                    if (livePanel.isLoopSelected()) {\n                                        imageGroupPreview.advanceSlide(true);\n                                    }\n                                }\n                            }\n                    ),\n                    new KeyFrame(Duration.seconds(newTime))\n            );\n            loopTimeline.setCycleCount(Animation.INDEFINITE);\n            loopTimeline.play();\n        }));\n    }\n\n    private void drawSlide(ImageGroupSlide newSlide, DisplayCanvas canvas) {\n        Image displayImage = newSlide.getImage();\n        ImageDisplayable imageDisplayable = new ImageDisplayable(displayImage);\n        drawer.setCanvas(canvas);\n        drawer.draw(imageDisplayable);\n    }\n\n    public void stopCurrent() {\n    }\n\n    /**\n     * Let this panel know it is live and should update accordingly.\n     */\n    public void setLive() {\n        live = true;\n    }\n\n    /**\n     * Set the displayable to be on this presentation panel.\n     * <p/>\n     * @param displayable the presentation displayable to display.\n     * @param index the index to display.\n     */\n    public void showDisplayable(final ImageGroupDisplayable displayable, final int index) {\n        if (this.displayable == displayable) {\n            return;\n        }\n        this.displayable = displayable;\n        if (displayable == null) {\n            imageGroupPreview.clear();\n            return;\n        }\n        ImageGroupSlide[] slides = displayable.getPresentation().getSlides();\n        imageGroupPreview.setSlides(slides);\n        Platform.runLater(new Runnable() {\n            @Override\n            public void run() {\n                imageGroupPreview.select(Math.max(index,1), true);\n            }\n        });\n\n        /*\n         * TODO\n         * For some reason the following scroll to line causes a bug whereby \n         * the contents are only registered the second time of viewing? So \n         * leave commented out until we can get to the bottom of it.\n         */\n//        presentationList.scrollTo(getIndex());\n        updateCanvas();\n    }\n\n    /**\n     * Get the currently selected index on this panel.\n     * <p/>\n     * @return the currently selected index on this panel.\n     */\n    public int getIndex() {\n        return imageGroupPreview.getSelectedIndex();\n    }\n    \n    /**\n     * Get the length of the item on this panel.\n     * <p/>\n     * @return the length of the item on this panel.\n     */\n    public int getSlideCount() {\n        return imageGroupPreview.getSlidesCount();\n    }\n\n    /**\n     * Clear this panel (well, actually don't do anything because we can't clear\n     * a presentation.)\n     */\n    @Override\n    public void removeCurrentDisplayable() {\n        //Doesn't apply\n    }\n\n    @Override\n    public int getCurrentIndex() {\n        return imageGroupPreview.getSelectedIndex();\n    }\n\n    @Override\n    public void updateCanvas() {\n        for (DisplayCanvas canvas : getCanvases()) {\n            if (currentSlide != null) {\n                drawSlide(currentSlide, canvas);\n            }\n        }\n    }\n\n    @Override\n    public DisplayableDrawer getDrawer(DisplayCanvas canvas) {\n        return drawer;\n    }\n\n    public void advance() {\n        imageGroupPreview.advanceSlide(false);\n    }\n\n    public void previous() {\n        imageGroupPreview.previousSlide();\n    }\n\n    public void selectLast() {\n        imageGroupPreview.selectLast();\n    }\n    \n    public void selectFirst() {\n        imageGroupPreview.select(1, true);\n    }\n\n    public ImageGroupPreview getPresentationPreview() {\n        return imageGroupPreview;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/imagegroup/ImageGroupPreview.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.imagegroup;\n\nimport javafx.geometry.BoundingBox;\nimport javafx.geometry.Bounds;\nimport javafx.geometry.Pos;\nimport javafx.scene.control.ScrollPane;\nimport javafx.scene.input.KeyCode;\nimport javafx.scene.layout.FlowPane;\nimport org.quelea.data.imagegroup.ImageGroupSlide;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.windows.main.MainPanel;\nimport org.quelea.windows.main.QueleaApp;\nimport java.util.ArrayList;\nimport java.util.List;\n\n/**\n * A JList for specifically displaying image group slides.\n * <p/>\n * @author Arvid, based on PresentationPreview\n */\npublic class ImageGroupPreview extends ScrollPane {\n\n    private FlowPane flow;\n    private List<SlideThumbnail> thumbnails = new ArrayList<>();\n    private ImageGroupSlide[] slides;\n    private ImageGroupSlide selectedSlide;\n    private int selectedIndex = -1;\n    private List<SlideChangedListener> listeners = new ArrayList<>();\n\n    /**\n     * Create a new presentation list.\n     */\n    public ImageGroupPreview() {\n        setStyle(\"-fx-focus-color: transparent;-fx-background-color:linear-gradient(to bottom right, #c0c0c0, #e8e8e8);\");\n        flow = new FlowPane(20, 20);\n        flow.setAlignment(Pos.CENTER);\n        viewportBoundsProperty().addListener((bounds, oldBounds, newBounds) ->\n                flow.setPrefWidth(newBounds.getWidth()));\n        setContent(flow);\n        setOnMousePressed(mouseEvent -> {\n            int selected = -1;\n            for (int i = 0; i < thumbnails.size(); i++) {\n                SlideThumbnail thumbnail = thumbnails.get(i);\n                Bounds bounds = new BoundingBox(thumbnail.getLayoutX(), thumbnail.getLayoutY() + getScrollOffset(), thumbnail.getWidth(), thumbnail.getHeight());\n                if (bounds.contains(mouseEvent.getX(), mouseEvent.getY())) {\n                    selected = i;\n                }\n            }\n            if (selected != -1) {\n                select(selected + 1, true);\n            }\n        });\n        setOnKeyPressed(keyEvent -> {\n            if (keyEvent.getCode() == KeyCode.RIGHT) {\n                keyEvent.consume();\n                if (selectedIndex > 0 && selectedIndex <= slides.length - 1) {\n                    select(selectedIndex + 1);\n                }\n            }\n            if (keyEvent.getCode() == KeyCode.LEFT) {\n                keyEvent.consume();\n                if (selectedIndex >= 2) {\n                    select(selectedIndex - 1);\n                }\n            }\n        });\n        focusedProperty().addListener((ov, t, focused) -> {\n            for (SlideThumbnail slide : thumbnails) {\n                slide.setActive(focused);\n            }\n        });\n    }\n\n    @Override\n    public void requestFocus() {\n        super.requestFocus();\n    }\n\n    public void addSlideChangedListener(SlideChangedListener listener) {\n        listeners.add(listener);\n    }\n\n    private void fireSlideChangedListeners() {\n        for (SlideChangedListener listener : listeners) {\n            listener.slideChanged(selectedSlide);\n        }\n    }\n\n    /**\n     * Clear all current slides and set the slides in the list.\n     * <p/>\n     *\n     * @param slides the slides to put in the list.\n     */\n    public void setSlides(ImageGroupSlide[] slides) {\n        if (this.slides == slides) {\n            return;\n        }\n        this.slides = slides;\n        flow.getChildren().clear();\n        thumbnails.clear();\n        for (int i = 0; i < slides.length; i++) {\n            SlideThumbnail thumbnail = new SlideThumbnail(slides[i], i + 1);\n            if (i == 0) {\n                thumbnail.setSelected(true);\n            }\n            thumbnails.add(thumbnail);\n            flow.getChildren().add(thumbnail);\n            thumbnail.setActive(focusedProperty().get());\n        }\n    }\n\n    public int getSelectedIndex() {\n        return selectedIndex;\n    }\n\n    public ImageGroupSlide getSelectedSlide() {\n        return selectedSlide;\n    }\n    \n    public int getSlidesCount() {\n        return slides.length;\n    }\n\n    /**\n     * Advances the current slide.\n     * <p/>\n     * @param loopback true if the presentation should loop to the beginning if\n     * at the last slide.\n     */\n    public void advanceSlide(boolean loopback) {\n        if (loopback) {\n            if (selectedIndex > 0) {\n                select(((selectedIndex) % slides.length) + 1);\n            }\n        } else if (!loopback && selectedIndex > 0 && selectedIndex <= slides.length - 1) {\n            select(selectedIndex + 1);\n        } else if (selectedIndex == slides.length && QueleaProperties.get().getSongOverflow()) {\n            MainPanel qmp = QueleaApp.get().getMainWindow().getMainPanel();\n            boolean lastItemTest = qmp.getLivePanel().getDisplayable() == qmp.getSchedulePanel().getScheduleList().getItems().get(qmp.getSchedulePanel().getScheduleList().getItems().size() - 1).displayable();            if (QueleaProperties.get().getAdvanceOnLive() && QueleaProperties.get().getSongOverflow() && !lastItemTest) {\n                qmp.getPreviewPanel().goLive();\n            }\n        }\n    }\n\n    /**\n     * Moves to the previous slide.\n     * <p/>\n     */\n    public void previousSlide() {\n        if (selectedIndex >= 2) {\n            select(selectedIndex - 1);\n        } else {\n            MainPanel qmp = QueleaApp.get().getMainWindow().getMainPanel();\n            boolean firstItemTest = qmp.getSchedulePanel().getScheduleList().getItems().get(0).displayable() == qmp.getLivePanel().getDisplayable();\n            if (QueleaProperties.get().getAdvanceOnLive() && QueleaProperties.get().getSongOverflow() && !firstItemTest) {\n                //Assuming preview panel is one ahead, and should be one behind\n                int index = qmp.getSchedulePanel().getScheduleList().getSelectionModel().getSelectedIndex();\n                if (qmp.getLivePanel().getDisplayable() == qmp.getSchedulePanel().getScheduleList().getItems().get(qmp.getSchedulePanel().getScheduleList().getItems().size() - 1).displayable()) {\n                    index -= 1;\n                } else {\n                    index -= 2;\n                }\n                if (index >= 0) {\n                    qmp.getSchedulePanel().getScheduleList().getSelectionModel().clearAndSelect(index);\n                    qmp.getPreviewPanel().selectLastLyric();\n                    qmp.getPreviewPanel().goLive();\n                }\n            }\n        }\n    }\n\n    public int size() {\n        return thumbnails.size();\n    }\n\n    public void select(int index) {\n        select(index, true);\n    }\n\n    public void select(int index, boolean fireUpdate) {\n        if (selectedIndex == index) {\n            return;\n        }\n        for (int i = 0; i < thumbnails.size(); i++) {\n            SlideThumbnail thumbnail = thumbnails.get(i);\n            boolean selected = thumbnail.getNum() == index;\n            thumbnail.setSelected(selected);\n            if (selected) {\n                selectedIndex = index;\n                if (selectedIndex >= 1) {\n                    selectedSlide = slides[i];\n                } else {\n                    selectedSlide = null;\n                }\n            }\n            ensureVisible(selectedIndex);\n        }\n        if (fireUpdate) {\n            fireSlideChangedListeners();\n        }\n    }\n\n    private void ensureVisible(int index) {\n        if (index < 1) {\n            return;\n        }\n        Bounds slideBounds = thumbnails.get(index - 1).getBoundsInParent();\n        Bounds scrollBounds = new BoundingBox(0, getScrollFraction() * (flow.getHeight() - getHeight()), getWidth(), getHeight());\n        if (!scrollBounds.contains(slideBounds)) {\n            while (slideBounds.getMinY() < scrollBounds.getMinY() && getVvalue() > getVmin()) {\n                slideBounds = thumbnails.get(index - 1).getBoundsInParent();\n                scrollBounds = new BoundingBox(0, getScrollFraction() * (flow.getHeight() - getHeight()), getWidth(), getHeight());\n                setVvalue(getVvalue() - 0.01);\n            }\n            while (slideBounds.getMaxY() > scrollBounds.getMaxY() && getVvalue() < getVmax()) {\n                slideBounds = thumbnails.get(index - 1).getBoundsInParent();\n                scrollBounds = new BoundingBox(0, getScrollFraction() * (flow.getHeight() - getHeight()), getWidth(), getHeight());\n                setVvalue(getVvalue() + 0.01);\n            }\n        }\n    }\n\n    private double getScrollOffset() {\n        return getScrollFraction() * (getHeight() - flow.getHeight());\n    }\n\n    private double getScrollFraction() {\n        double vMin = getVmin();\n        double vMax = getVmax();\n        double vFrac = (getVvalue() - vMin) * (vMax - vMin);\n        return vFrac;\n    }\n\n    public void clear() {\n        thumbnails.clear();\n        flow.getChildren().clear();\n        this.slides = null;\n        selectedIndex = -1;\n        selectedSlide = null;\n    }\n\n    public void selectLast() {\n        selectedIndex = slides.length;\n        select(selectedIndex);\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/imagegroup/SlideChangedListener.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * Copyright (C) 2012 Michael Berry\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.imagegroup;\n\nimport org.quelea.data.imagegroup.ImageGroupSlide;\n\n\n/**\n *\n * @author Arvid\n */\npublic interface SlideChangedListener {\n    \n    void slideChanged(ImageGroupSlide newSlide);\n    \n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/imagegroup/SlideThumbnail.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * Copyright (C) 2012 Michael Berry\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.imagegroup;\n\nimport javafx.scene.control.Label;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.layout.BorderPane;\nimport org.quelea.data.imagegroup.ImageGroupSlide;\nimport org.quelea.services.utils.QueleaProperties;\n\n/**\n *\n * @author Arvid, based on presentation.SlideThumbnail\n */\npublic class SlideThumbnail extends BorderPane {\n\n    private static final String BORDER_STYLE_SELECTED_ACTIVE = \"-fx-padding: 0.2em;-fx-border-color: #0093ff;-fx-border-radius: 5;-fx-border-width: 0.1em;\";\n    private static final String BORDER_STYLE_SELECTED_INACTIVE = \"-fx-padding: 0.2em;-fx-border-color: #999999;-fx-border-radius: 5;-fx-border-width: 0.1em;\";\n    private static final String BORDER_STYLE_DESELECTED = \"-fx-padding: 0.2em;-fx-border-color: rgb(0,0,0,0);-fx-border-radius: 5;-fx-border-width: 0.1em;\";\n    private int num;\n    private ImageGroupSlide slide;\n    private ImageView image;\n    private boolean selected;\n    private boolean active;\n    \n    public SlideThumbnail(ImageGroupSlide slide, int num) {\n        this.num = num;\n        this.slide = slide;\n        image = new ImageView(slide.getImage());\n        image.setFitWidth(QueleaProperties.get().getThumbnailSize());\n        image.setPreserveRatio(true);\n        image.setSmooth(true);\n        image.setCache(true);\n        setTop(image);\n        setCenter(new Label(Integer.toString(num)));\n    }\n\n    public void setSelected(boolean selected) {\n        this.selected=selected;\n        recalcBorder();\n    }\n\n    public void setActive(boolean active) {\n        this.active=active;\n        image.setFitWidth(QueleaProperties.get().getThumbnailSize());\n        recalcBorder();\n    }\n    \n    private void recalcBorder() {\n        if(selected) {\n            if(active) {\n                setStyle(BORDER_STYLE_SELECTED_ACTIVE);\n            }\n            else {\n                setStyle(BORDER_STYLE_SELECTED_INACTIVE);\n            }\n        }\n        else {\n            setStyle(BORDER_STYLE_DESELECTED);\n        }\n    }\n\n    public int getNum() {\n        return num;\n    }\n\n    public ImageGroupSlide getSlide() {\n        return slide;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/library/Constraint.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * Copyright (C) 2012 Michael Berry\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.library;\n\n/**\n * Used for checking a constraint.\n * @author Michael\n */\npublic interface Constraint<T> {\n    \n    /**\n     * Return true if this constraint passes, false otherwise.\n     * @param data the data to pass into the constraint.\n     * @return true if this constraint passes, false otherwise.\n     */\n    boolean isTrue(T data);\n    \n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/library/ContextMenuListCell.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.library;\n\nimport javafx.scene.control.ContextMenu;\nimport javafx.scene.control.ListCell;\nimport javafx.scene.control.ListView;\nimport javafx.util.Callback;\n\n/**\n * A fully fleshed out class that allows for context menus to be shown on right\n * click.\n */\npublic class ContextMenuListCell<T> extends ListCell<T> {\n\n    public static <T> Callback<ListView<T>, ListCell<T>> forListView(ContextMenu contextMenu) {\n        return forListView(contextMenu, null);\n    }\n\n    public static <T> Callback<ListView<T>, ListCell<T>> forListView(final ContextMenu contextMenu, final Callback<ListView<T>, ListCell<T>> cellFactory) {\n        return listView -> {\n            ListCell<T> cell = cellFactory == null ? new DefaultListCell<T>() : cellFactory.call(listView);\n            cell.setContextMenu(contextMenu);\n            return cell;\n        };\n    }\n\n    public ContextMenuListCell(ContextMenu contextMenu) {\n        setContextMenu(contextMenu);\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/library/DefaultListCell.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.library;\n\nimport javafx.scene.Node;\nimport javafx.scene.control.ListCell;\n\npublic class DefaultListCell<T> extends ListCell<T> {\n\n    @Override\n    public void updateItem(T item, boolean empty) {\n        super.updateItem(item, empty);\n\n        if(empty) {\n            setText(null);\n            setGraphic(null);\n        }\n        else if(item instanceof Node) {\n            setText(null);\n            Node currentNode = getGraphic();\n            Node newNode = (Node) item;\n            if(currentNode == null || !currentNode.equals(newNode)) {\n                setGraphic(newNode);\n            }\n        }\n        else {\n            setText(item == null ? \"null\" : item.toString());\n            setGraphic(null);\n        }\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/library/DisplayableListCell.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.library;\n\nimport javafx.beans.value.ChangeListener;\nimport javafx.beans.value.ObservableValue;\nimport javafx.scene.control.ContextMenu;\nimport javafx.scene.control.ListCell;\nimport javafx.scene.control.ListView;\nimport javafx.util.Callback;\n\n/**\n * A fully fleshed out class that allows for context menus to be shown on right\n * click.\n * <p/>\n * @author Michael\n */\npublic class DisplayableListCell<T> extends ListCell<T> {\n\n    /**\n     * Provide a callback that sets the given context menu on each cell.\n     * <p/>\n     * @param <T> the generic type of the cell.\n     * @param contextMenu the context menu to show.\n     * @return a callback that sets the given context menu on each cell.\n     */\n    public static <T> Callback<ListView<T>, ListCell<T>> forListView(ContextMenu contextMenu) {\n        return forListView(contextMenu, null, null);\n    }\n\n    /**\n     * Provide a callback that sets the given context menu on each cell, if and\n     * only if the constraint given passes. If the constraint is null, it will\n     * always pass.\n     * <p/>\n     * @param <T> the generic type of the cell.\n     * @param contextMenu the context menu to show.\n     * @param cellFactory the cell factory to use.\n     * @param constraint the constraint placed on showing the context menu - it\n     * will only be shown if this constraint passes, or it is null.\n     * @return a callback that sets the given context menu on each cell.\n     */\n    public static <T> Callback<ListView<T>, ListCell<T>> forListView(final ContextMenu contextMenu, final Callback<ListView<T>, ListCell<T>> cellFactory,\n            final Constraint<T> constraint) {\n        return listView -> {\n            final ListCell<T> cell = cellFactory == null ? new DefaultListCell<T>() : cellFactory.call(listView);\n            cell.itemProperty().addListener((ov, oldVal, newVal) -> {\n                if(newVal == null || (constraint != null && !constraint.isTrue(newVal))) {\n                    cell.setContextMenu(null);\n                }\n                else {\n                    cell.setContextMenu(contextMenu);\n                }\n            });\n            return cell;\n        };\n    }\n}"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/library/ImageListPanel.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.library;\n\nimport java.io.File;\nimport java.io.IOException;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\nimport java.nio.file.StandardCopyOption;\nimport java.util.List;\nimport java.util.logging.Level;\nimport javafx.application.Platform;\nimport javafx.geometry.Orientation;\nimport javafx.geometry.Pos;\nimport javafx.scene.Node;\nimport javafx.scene.control.ContextMenu;\nimport javafx.scene.control.MenuItem;\nimport javafx.scene.control.ScrollPane;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.input.Clipboard;\nimport javafx.scene.input.ClipboardContent;\nimport javafx.scene.input.Dragboard;\nimport javafx.scene.input.MouseButton;\nimport javafx.scene.input.MouseEvent;\nimport javafx.scene.input.TransferMode;\nimport javafx.scene.layout.BorderPane;\nimport javafx.scene.layout.HBox;\nimport javafx.scene.layout.TilePane;\nimport org.javafx.dialog.Dialog;\nimport org.quelea.data.displayable.ImageDisplayable;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.ImageManager;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.QueleaApp;\n\n/**\n * The panel displayed on the library to select the list of images.\n * <p/>\n * @author Michael\n */\npublic class ImageListPanel extends BorderPane {\n\n    private static final String BORDER_STYLE_SELECTED = \"-fx-padding: 0.2em;-fx-border-color: #0093ff;-fx-border-radius: 5;-fx-border-width: 0.1em;\";\n    private static final String BORDER_STYLE_DESELECTED = \"-fx-padding: 0.2em;-fx-border-color: rgb(0,0,0,0);-fx-border-radius: 5;-fx-border-width: 0.1em;\";\n    private final TilePane imageList;\n    private String dir;\n    private Thread updateThread;\n\n    /**\n     * Create a new image list panel.\n     * <p/>\n     * @param dir the directory to use.\n     */\n    public ImageListPanel(String dir) {\n        this.dir = dir;\n        imageList = new TilePane();\n        imageList.setAlignment(Pos.CENTER);\n        imageList.setHgap(15);\n        imageList.setVgap(15);\n        imageList.setOrientation(Orientation.HORIZONTAL);\n        imageList.setOnDragOver(dragEvent -> dragEvent.acceptTransferModes(TransferMode.COPY_OR_MOVE));\n        imageList.setOnDragDropped(dragEvent -> {\n            if(dragEvent.getGestureSource() == null) {\n                Clipboard cb = dragEvent.getDragboard();\n                if(cb.hasFiles()) {\n                    List<File> files = cb.getFiles();\n                    for(File f : files) {\n                        if(Utils.fileIsImage(f) && !f.isDirectory()) {\n                            try {\n                                Files.copy(f.getAbsoluteFile().toPath(), Paths.get(getDir(), f.getName()), StandardCopyOption.COPY_ATTRIBUTES);\n                            }\n                            catch(IOException ex) {\n                                LoggerUtils.getLogger().log(Level.WARNING, \"Could not copy file into ImagePanel through system drag and drop.\", ex);\n                            }\n                        }\n                    }\n                }\n            }\n        });\n        updateImages();\n        ScrollPane scroll = new ScrollPane();\n        scroll.setFitToWidth(true);\n        scroll.setContent(imageList);\n        setCenter(scroll);\n    }\n\n    /**\n     * Returns the absolute path of the currently selected directory\n     * <p/>\n     */\n    public String getDir() {\n        return dir;\n    }\n\n    /**\n     * Refresh the contents of this image list panel.\n     */\n    public void refresh() {\n        updateImages();\n    }\n\n    /**\n     * Add the files.\n     * <p/>\n     */\n    private void updateImages() {\n        imageList.getChildren().clear();\n        final File[] files = new File(dir).listFiles();\n        if(updateThread != null && updateThread.isAlive()) {\n            return;\n        }\n        updateThread = new Thread(() -> {\n            for(final File file : files) {\n                if(Utils.fileIsImage(file) && !file.isDirectory()) {\n                    final HBox viewBox = new HBox();\n                    final ImageView view = new ImageView(ImageManager.INSTANCE.getImage(file.toURI().toString(), 160, 90, false));\n                    view.setPreserveRatio(true);\n                    view.setFitWidth(160);\n                    view.setFitHeight(90);\n                    view.setOnMouseClicked((MouseEvent t) -> {\n                        if(t.getButton() == MouseButton.PRIMARY && t.getClickCount() > 1) {\n                            QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getScheduleList().add(new ImageDisplayable(file));\n                        }\n                        else if(t.getButton() == MouseButton.SECONDARY) {\n                            ContextMenu removeMenu = new ContextMenu();\n                            MenuItem removeItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"remove.image.text\"));\n                            removeItem.setOnAction(actionEvent -> {\n                                final boolean[] reallyDelete = new boolean[]{false};\n                                Dialog.buildConfirmation(LabelGrabber.INSTANCE.getLabel(\"delete.image.title\"),\n                                        LabelGrabber.INSTANCE.getLabel(\"delete.image.confirmation\"))\n                                        .addYesButton(actionEvent1 -> reallyDelete[0] = true)\n                                        .addNoButton(actionEvent1 -> {\n                                        }).build().showAndWait();\n                                if(reallyDelete[0]) {\n                                    file.delete();\n                                    imageList.getChildren().remove(viewBox);\n                                }\n                            });\n                            removeMenu.getItems().add(removeItem);\n                            removeMenu.show(view, t.getScreenX(), t.getScreenY());\n                        }\n                    });\n                    view.setOnDragDetected(mouseEvent -> {\n                        Dragboard db = startDragAndDrop(TransferMode.ANY);\n                        ClipboardContent content = new ClipboardContent();\n                        content.putString(file.getAbsolutePath());\n                        db.setContent(content);\n                        mouseEvent.consume();\n                    });\n                    viewBox.getChildren().add(view);\n                    setupHover(viewBox);\n                    Platform.runLater(() -> imageList.getChildren().add(viewBox));\n                }\n            }\n        });\n        updateThread.start();\n    }\n\n    private void setupHover(final Node view) {\n        view.setStyle(BORDER_STYLE_DESELECTED);\n        view.setOnMouseEntered(mouseEvent -> view.setStyle(BORDER_STYLE_SELECTED));\n        view.setOnMouseExited(mouseEvent -> view.setStyle(BORDER_STYLE_DESELECTED));\n    }\n\n    public void changeDir(File absoluteFile) {\n        dir = absoluteFile.getAbsolutePath();\n    }\n}"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/library/LibraryBiblePanel.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.library;\n\nimport java.util.ArrayList;\nimport java.util.List;\nimport java.util.concurrent.Executors;\nimport java.util.concurrent.ScheduledExecutorService;\nimport java.util.concurrent.TimeUnit;\n\nimport javafx.application.Platform;\nimport javafx.collections.FXCollections;\nimport javafx.collections.ObservableList;\nimport javafx.scene.control.ComboBox;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.input.KeyCode;\nimport javafx.scene.input.KeyEvent;\nimport javafx.scene.layout.BorderPane;\nimport javafx.scene.layout.Priority;\nimport org.quelea.data.bible.Bible;\nimport org.quelea.data.bible.BibleBook;\nimport org.quelea.data.bible.BibleChangeListener;\nimport org.quelea.data.bible.BibleManager;\nimport org.quelea.data.bible.BibleVerse;\nimport org.quelea.data.bible.ChapterVerseParser;\nimport org.quelea.data.displayable.BiblePassage;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.windows.main.QueleaApp;\nimport javafx.beans.value.ObservableValue;\nimport javafx.concurrent.Worker.State;\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport javafx.scene.control.Button;\nimport javafx.scene.control.TextField;\nimport javafx.scene.layout.HBox;\nimport javafx.scene.layout.VBox;\nimport javafx.scene.web.WebEngine;\nimport javafx.scene.web.WebView;\nimport netscape.javascript.JSObject;\n\n/**\n * The panel used to get bible verses.\n * <p/>\n *\n * @author Michael\n */\npublic class LibraryBiblePanel extends VBox implements BibleChangeListener {\n\n    private final ComboBox<Bible> bibleSelector;\n    private final ComboBox<BibleBook> bookSelector;\n    private final TextField passageSelector;\n    private final WebView preview;\n    private final Button addToSchedule;\n    private final List<BibleVerse> verses;\n    private boolean multi;\n    private ObservableList<BibleBook> master;\n    private WebEngine webEngine;\n    private ChapterVerseParser cvp;\n\n    /**\n     * Create and populate a new library bible panel.\n     */\n    public LibraryBiblePanel() {\n        verses = new ArrayList<>();\n        BibleManager.get().registerBibleChangeListener(this);\n        bibleSelector = new ComboBox<>(FXCollections.observableArrayList(BibleManager.get().getBibles()));\n        String selectedBibleName = QueleaProperties.get().getDefaultBible();\n        for (int i = 0; i < bibleSelector.itemsProperty().get().size(); i++) {\n            Bible bible = bibleSelector.itemsProperty().get().get(i);\n            if (bible.getName().equals(selectedBibleName)) {\n                bibleSelector.selectionModelProperty().get().select(i);\n                break;\n            }\n        }\n        this.setSpacing(5.0);\n        getChildren().add(bibleSelector);\n        HBox chapterPanel = new HBox();\n        chapterPanel.setSpacing(5.0);\n        preview = new WebView();\n        webEngine = preview.getEngine();\n        clearWebView();\n        if (bibleSelector.getItems().isEmpty()) {\n            bookSelector = new ComboBox<>();\n        } else {\n            Bible bible = bibleSelector.selectionModelProperty().get().getSelectedItem();\n            if (bible == null) {\n                bible = bibleSelector.getItems().get(0);\n                bibleSelector.setValue(bibleSelector.getItems().get(0));\n            }\n            bookSelector = new ComboBox<>(FXCollections.observableArrayList(bible.getBooks()));\n            bookSelector.selectionModelProperty().get().select(0);\n        }\n        chapterPanel.getChildren().add(bookSelector);\n        passageSelector = new TextField();\n        passageSelector.setPromptText(LabelGrabber.INSTANCE.getLabel(\"bible.passage.selector.prompt\"));\n        chapterPanel.getChildren().add(passageSelector);\n        passageSelector.setOnAction(new EventHandler<javafx.event.ActionEvent>() {\n            @Override\n            public void handle(javafx.event.ActionEvent t) {\n                if (!addToSchedule.isDisable()) {\n                    addToSchedule.fire();\n                    passageSelector.setText(\"\");\n                }\n            }\n        });\n        getChildren().add(chapterPanel);\n        BorderPane bottomPane = new BorderPane();\n        VBox.setVgrow(bottomPane, Priority.SOMETIMES);\n        bottomPane.setCenter(preview);\n        addToSchedule = new Button(LabelGrabber.INSTANCE.getLabel(\"add.to.schedule.text\"), new ImageView(new Image(\"file:icons/tick.png\")));\n        addToSchedule.setOnAction((ActionEvent t) -> {\n            BiblePassage passage = new BiblePassage(bibleSelector.getSelectionModel().getSelectedItem().getName(), getBibleLocation(), getVerses(), multi);\n            QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getScheduleList().add(passage);\n            passageSelector.setText(\"\");\n        });\n        addToSchedule.setDisable(true);\n        chapterPanel.getChildren().add(addToSchedule);\n        getChildren().add(bottomPane);\n\n        addUpdateListeners();\n        bibleSelector.valueProperty().addListener((ObservableValue<? extends Bible> ov, Bible t, Bible t1) -> {\n            if (bibleSelector.selectionModelProperty().get().isEmpty()) { //Nothing selected\n                return;\n            }\n            ObservableList<BibleBook> books = FXCollections.observableArrayList(bibleSelector.getSelectionModel().getSelectedItem().getBooks());\n            int selectedIndex = bookSelector.getSelectionModel().getSelectedIndex();\n            bookSelector.itemsProperty().set(books);\n            if (bookSelector.getItems().size() > selectedIndex) {\n                bookSelector.getSelectionModel().select(selectedIndex);\n            }\n            update();\n        });\n\n        bookSelector.setOnKeyReleased(new EventHandler<KeyEvent>() {\n\n            String search = \"\";\n            ScheduledExecutorService executor = Executors.newSingleThreadScheduledExecutor();\n            Runnable task = this::clear;\n\n            @Override\n            public void handle(KeyEvent event) {\n                if (event.getCode().isLetterKey() || event.getCode().isDigitKey() || event.getCode() == KeyCode.BACK_SPACE || event.getCode() == KeyCode.SPACE) {\n\n                    if (!executor.isShutdown()) {\n                        executor.shutdownNow();\n                    }\n                    executor = Executors.newSingleThreadScheduledExecutor();\n                    executor.schedule(task, 5, TimeUnit.SECONDS);\n\n                    if (event.getCode() == KeyCode.BACK_SPACE) {\n                        if (search.length() > 0) {\n                            search = search.substring(0, search.length() - 1);\n                        }\n                    } else {\n                        search += event.getText();\n                    }\n\n                    Platform.runLater(() -> {\n                        refreshMaster();\n                        bookSelector.setItems(master.filtered((BibleBook b) -> b.getBookName().toLowerCase().startsWith(search.toLowerCase())\n                                || b.getBSName().toLowerCase().startsWith(search.toLowerCase())));\n                        bookSelector.getSelectionModel().selectFirst();\n                    });\n\n                }\n            }\n\n            private void clear() {\n                search = \"\";\n                executor.shutdown();\n                Platform.runLater(() -> {\n                    bookSelector.setItems(master);\n                });\n            }\n        });\n        bookSelector.focusedProperty().addListener((ObservableValue<? extends Boolean> observable, Boolean oldValue, Boolean newValue) -> {\n            if (!newValue) {\n                Platform.runLater(() -> {\n                    refreshMaster();\n                    bookSelector.setItems(master);\n                });\n            }\n        });\n    }\n\n    private void clearWebView() {\n        if (!QueleaProperties.get().getUseDarkTheme()) {\n            webEngine.loadContent(getBibleViewHead() + \"<body/></html>\");\n        } else {\n            webEngine.loadContent(getBibleViewHead().replace(\"#000\", \"#FFF\").replace(\"white\", \"black\") + \"<body/></html>\");\n        }\n    }\n\n    public ChapterVerseParser getCVP() {\n        return cvp;\n    }\n\n    // Should be on FX thread at all times\n    private void refreshMaster() {\n        if (bibleSelector.selectionModelProperty().get().isEmpty()) { //Nothing selected\n            return;\n        }\n        master = FXCollections.observableArrayList(bibleSelector.getSelectionModel().getSelectedItem().getBooks());\n    }\n\n    /**\n     * Update the bibles in the panel based on the current bibles the bible\n     * manager is aware of.\n     */\n    @Override\n    public void updateBibles() {\n        Platform.runLater(() -> {\n            ObservableList<Bible> bibles = FXCollections.observableArrayList(BibleManager.get().getBibles());\n            bibleSelector.itemsProperty().set(bibles);\n            Bible selectedBible = null;\n            for (Bible bible : bibles) {\n                if (bible.getBibleName().equals(QueleaProperties.get().getDefaultBible())) {\n                    selectedBible = bible;\n                }\n            }\n            if (selectedBible == null) {\n                bibleSelector.selectionModelProperty().get().selectFirst();\n            } else {\n                bibleSelector.selectionModelProperty().get().select(selectedBible);\n            }\n        });\n    }\n\n    /**\n     * Add the listeners that should call the update() method.\n     */\n    private void addUpdateListeners() {\n        passageSelector.textProperty().addListener((ObservableValue<? extends String> ov, String t, String t1) -> {\n            update();\n        });\n        bookSelector.valueProperty().addListener((ObservableValue<? extends BibleBook> ov, BibleBook t, BibleBook t1) -> {\n            update();\n        });\n    }\n\n    /**\n     * Update the text in the preview panel based on the contents of the fields.\n     */\n    private void update() {\n        verses.clear();\n        String[] sections;\n        if (!passageSelector.getText().contains(\":\") && passageSelector.getText().contains(\"-\")) {\n            String[] temp = passageSelector.getText().split(\"-\");\n            StringBuilder sb = new StringBuilder();\n            for (int i = Integer.parseInt(temp[0]); i <= Integer.parseInt(temp[1]); i++) {\n                sb.append(i).append(\",\");\n            }\n            sections = sb.toString().split(\",\");\n        } else {\n            sections = passageSelector.getText().split(\"([;,])\");\n        }\n        ArrayList<BiblePassage> passages = new ArrayList<>();\n        if (passageSelector.getText().isEmpty()) {\n            getAddToSchedule().setDisable(true);\n            webEngine.loadContent(\"\");\n        }\n        StringBuilder previewText = new StringBuilder();\n        multi = (sections.length > 1);\n        previewText.append(QueleaProperties.get().getUseDarkTheme() ? getBibleViewHead().replace(\"#000\", \"#FFF\").replace(\"white\", \"black\") : getBibleViewHead());\n\n        // Setup JavaScript/Java bridge\n        webEngine.getLoadWorker().stateProperty().addListener((ObservableValue<? extends State> ov, State oldState, State newState) -> {\n            if (newState == State.SUCCEEDED) {\n                JSObject window = (JSObject) webEngine.executeScript(\"window\");\n                window.setMember(\"java\", new JavaScriptBridge());\n            }\n        });\n\n        for (String s : sections) {\n            cvp = new ChapterVerseParser(s);\n            BibleBook book = bookSelector.selectionModelProperty().get().getSelectedItem();\n            if (book != null\n                    && book.getChapter(cvp.getFromChapter()) != null\n                    && book.getChapter(cvp.getToChapter()) != null\n                    && book.getChapter(cvp.getFromChapter()).getVerses() != null) {\n\n                getAddToSchedule().setDisable(false);\n                int toVerse = book.getChapter(cvp.getFromChapter()).getVerses().length;\n                if ((cvp.getFromChapter() == cvp.getToChapter()) && cvp.getToVerse() >= 0 && cvp.getToVerse() < book.getChapter(cvp.getFromChapter()).getVerses().length) {\n                    toVerse = cvp.getToVerse();\n                }\n\n                previewText.append(\"<b><h3><span id=\\\"\").append(cvp.getFromChapter() + 1).append(\"\\\">\").append(cvp.getFromChapter() + 1).append(\"</span></h3></b>\");\n                String oldText = passageSelector.getText();\n                for (BibleVerse verse : book.getChapter(cvp.getFromChapter()).getVerses()) {\n                    if (verse != null) {\n                        // Scroll to selected verse\n                        if (!previewText.toString().contains(\"<body\")) {\n\n                            String firstVerse = oldText.replaceAll(\"((\\\\d+)(:\\\\d+)?-?(\\\\d+)?([;,]))+((\\\\d+)(:\\\\d+)?)(-?\\\\d+)?\", \"$6\");\n                            // Remove any non-numeric character in the end\n                            if (firstVerse.substring(firstVerse.length() - 1).matches(\"[-,;]\")) {\n                                firstVerse = firstVerse.substring(0, firstVerse.length() - 1);\n                            }\n                            // Find the last number entered for passages separated with a hyphen\n                            String lastVerse = \"\";\n                            if (firstVerse.contains(\"-\") && firstVerse.contains(\":\")) {\n                                lastVerse = firstVerse.substring(0, firstVerse.indexOf(\":\") + 1) + firstVerse.substring(firstVerse.indexOf(\"-\") + 1);\n                                firstVerse = firstVerse.substring(0, firstVerse.indexOf(\"-\"));\n                            }\n                            // Delete the last character if it is a colon\n                            if (firstVerse.length() > 1 && firstVerse.substring(firstVerse.length() - 1).contains(\":\")) {\n                                firstVerse = firstVerse.replaceAll(\":\", \"\");\n                            }\n\n                            // Scroll so that the most recent verse entered always is visible\n                            if (lastVerse.length() > 0) {\n                                previewText.append(\"    <body onload=\\\"scrollToBottom('\").append(lastVerse).append(\"')\\\">\");\n                            } else {\n                                previewText.append(\"    <body onload=\\\"scrollTo('\").append(firstVerse).append(\"')\\\">\");\n                            }\n                        }\n\n                        // Only add and mark the selected verses but load the others from the chapter as well\n                        String id = (cvp.getFromChapter() + 1) + \":\" + verse.getNum();\n                        if ((verse.getNum() >= cvp.getFromVerse() && verse.getNum() <= toVerse) || cvp.getFromVerse() == 0) {\n                            verses.add(verse);\n                            previewText.append(\"<mark>\");\n                            previewText.append(\"<span onclick=\\\"java.send('\").append(verse.getNum()).append(\"')\\\" id=\\\"\").append(id).append(\"\\\"><sup>\").append(verse.getNum()).append(\"</sup>\").append(' ').append(verse.getText()).append(' ').append(\"</span>\");\n                            previewText.append(\"</mark>\");\n                        } else {\n                            previewText.append(\"<span onclick=\\\"java.send('\").append(verse.getNum()).append(\"')\\\" id=\\\"\").append(id).append(\"\\\"><sup>\").append(verse.getNum()).append(\"</sup>\").append(' ').append(verse.getText()).append(' ').append(\"</span>\");\n                        }\n                    } else {\n                        previewText.append(\"<body>\");\n                    }\n                }\n                for (int c = cvp.getFromChapter() + 1; c < cvp.getToChapter(); c++) {\n                    for (BibleVerse verse : book.getChapter(c).getVerses()) {\n                        previewText.append(verse.getText()).append(' ');\n                        verses.add(verse);\n                    }\n                }\n                if (cvp.getFromChapter() != cvp.getToChapter()) {\n                    for (int v = 0; v <= cvp.getToVerse(); v++) {\n                        BibleVerse verse = book.getChapter(cvp.getToChapter()).getVerse(v);\n                        if (verse != null) {\n                            previewText.append(verse.getText()).append(' ');\n                            verses.add(verse);\n                        }\n                    }\n                }\n\n            } else {\n                getAddToSchedule().setDisable(true);\n                clearWebView();\n                return;\n            }\n        }\n        if (previewText.toString().trim().isEmpty()) {\n            getAddToSchedule().setDisable(true);\n        } else {\n            getAddToSchedule().setDisable(false);\n        }\n\n        previewText.append(\"    </body>\\n\"\n                + \"</html>\");\n\n        webEngine.loadContent(previewText.toString());\n    }\n\n    private String getBibleViewHead() {\n        return \"<!DOCTYPE html>\\n\"\n                + \"<html>\\n\"\n                + \"    <head>\\n\"\n                + \"        <title>Bible Browser</title>\\n\"\n                + \"        <meta charset=\\\"utf-8\\\">\\n\"\n                + \"        <meta name=\\\"apple-mobile-web-app-capable\\\" content=\\\"yes\\\">\\n\"\n                + \"        <meta name=\\\"mobile-web-app-capable\\\" content=\\\"yes\\\">\\n\"\n                + \"     <style>\\n\"\n                + \"         mark {\\n\"\n                + \"         background-color: #D7D7D7;\\n\"\n                + \"         color: black;\\n\"\n                + \"         }\\n\"\n                + \"         h3 {\\n\"\n                + \"             display: block;\\n\"\n                + \"             font-size: 1.67em;\\n\"\n                + \"             margin-top: 0.67em;\\n\"\n                + \"             margin-bottom: 0.0em;\\n\"\n                + \"             margin-left: 0;\\n\"\n                + \"             margin-right: 0;\\n\"\n                + \"             color: #000;\\n\"\n                + \"         }\\n\"\n                + \"         body {\\n\" +\n                \"               background-color: white;\\n\" +\n                \"               color: #000;\\n\" +\n                \"           }\\n\"\n                + \"     </style>\\n\"\n                + \"     <script>\\n\"\n                + \"     function scrollTo(eleID) {\\n\"\n                + \"         var e = document.getElementById(eleID);\\n\"\n                + \"         if (!!e && e.scrollIntoView) {\\n\"\n                + \"             e.scrollIntoView();\\n\"\n                + \"         }\\n\"\n                + \"        }\\n\"\n                + \"     function scrollToBottom(elementID) {\\n\"\n                + \"         var el = document.getElementById(elementID);\\n\"\n                + \"         if (!!el && el.scrollIntoView) {\\n\"\n                + \"\t\t\tel.scrollIntoView(false);\\n\"\n                + \"         }\\n\"\n                + \"     }\\n\"\n                + \"     </script>\\n\"\n                + \"    </head>\\n\";\n    }\n\n    /**\n     * Class to receive the clicked verses in the WebView\n     */\n    public class JavaScriptBridge {\n\n        public void send(String verse) {\n            String oldText = passageSelector.getText();\n            int verseNum = Integer.parseInt(verse);\n            String chapterNum;\n            if (!oldText.contains(\":\")) {\n                chapterNum = oldText;\n            } else {\n                chapterNum = oldText.substring(0, oldText.lastIndexOf(\":\"));\n            }\n            ChapterVerseParser cvp = QueleaApp.get().getMainWindow().getMainPanel().getLibraryPanel().getBiblePanel().getCVP();\n            if (cvp != null) {\n                final String chapter = chapterNum;\n                final int fromVerse = cvp.getFromVerse();\n                Platform.runLater(() -> {\n                    StringBuilder sb = new StringBuilder();\n                    sb.append(chapter).append(\":\");\n                    if (fromVerse == 0) {\n                        sb.append(verseNum);\n                    } else if (verseNum > cvp.getToVerse()) {\n                        sb.append(fromVerse).append(\"-\").append(verseNum);\n                    } else {\n                        sb.append(verseNum).append(\"-\").append(cvp.getToVerse());\n                    }\n                    passageSelector.setText(sb.toString());\n                });\n\n            }\n\n        }\n    }\n\n    /**\n     * Get all the verses currently shown in this panel.\n     * <p/>\n     *\n     * @return all the verses in the current preview\n     */\n    public BibleVerse[] getVerses() {\n        return verses.toArray(new BibleVerse[verses.size()]);\n    }\n\n    /**\n     * Return the book, chapter and verse numbers as a string.\n     * <p/>\n     *\n     * @return the location of the current passage.\n     */\n    public String getBibleLocation() {\n        StringBuilder ret = new StringBuilder();\n        ret.append(bookSelector.selectionModelProperty().get().getSelectedItem()).append(\" \");\n        ret.append(passageSelector.getText());\n        return ret.toString();\n    }\n\n    /**\n     * Get the bible selector used to select the type of bible to use.\n     * <p/>\n     *\n     * @return the bible selector used to select the type of bible to use.\n     */\n    public ComboBox<Bible> getBibleSelector() {\n        return bibleSelector;\n    }\n\n    /**\n     * Get the preview text area.\n     * <p/>\n     *\n     * @return the preview text area.\n     */\n    public WebView getPreview() {\n        return preview;\n    }\n\n    /**\n     * Get the add to schedule button.\n     * <p/>\n     *\n     * @return the add to schedule button.\n     */\n    public Button getAddToSchedule() {\n        return addToSchedule;\n    }\n\n    /**\n     * Get the book selector.\n     * <p/>\n     *\n     * @return the book selector.\n     */\n    public ComboBox<BibleBook> getBookSelector() {\n        return bookSelector;\n    }\n\n    /**\n     * Get the passage selector.\n     * <p/>\n     *\n     * @return the passage selector.\n     */\n    public TextField getPassageSelector() {\n        return passageSelector;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/library/LibraryImagePanel.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.library;\n\nimport java.io.File;\nimport java.io.IOException;\nimport java.nio.file.Files;\nimport java.nio.file.Path;\nimport java.nio.file.Paths;\nimport java.nio.file.StandardCopyOption;\nimport java.util.List;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport javafx.geometry.Orientation;\nimport javafx.scene.control.Button;\nimport javafx.scene.control.ToolBar;\nimport javafx.scene.control.Tooltip;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.layout.BorderPane;\nimport javafx.scene.layout.HBox;\nimport javafx.stage.FileChooser;\nimport org.javafx.dialog.Dialog;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.FileFilters;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.QueleaApp;\n\n/**\n * The image panel in the library.\n * <p/>\n * @author Michael\n */\npublic class LibraryImagePanel extends BorderPane {\n\n    private final ImageListPanel imagePanel;\n    private final ToolBar toolbar;\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n\n    /**\n     * Create a new library image panel.\n     */\n    public LibraryImagePanel() {\n        imagePanel = new ImageListPanel(QueleaProperties.get().getImageDir().getAbsolutePath());\n        setCenter(imagePanel);\n        toolbar = new ToolBar();\n\n        Button addButton = new Button(\"\", new ImageView(new Image(\"file:icons/add.png\")));\n        addButton.setTooltip(new Tooltip(LabelGrabber.INSTANCE.getLabel(\"add.images.panel\")));\n        addButton.setOnAction(new EventHandler<ActionEvent>() {\n            @Override\n            public void handle(ActionEvent t) {\n                FileChooser chooser = new FileChooser();\n                if (QueleaProperties.get().getLastDirectory() != null) {\n                    chooser.setInitialDirectory(QueleaProperties.get().getLastDirectory());\n                }\n                chooser.getExtensionFilters().add(FileFilters.IMAGES);\n                chooser.setInitialDirectory(QueleaProperties.get().getImageDir().getAbsoluteFile());\n                List<File> files = chooser.showOpenMultipleDialog(QueleaApp.get().getMainWindow());\n                if(files != null) {\n                    final boolean[] refresh = new boolean[]{false};\n                    for(final File f : files) {\n                        QueleaProperties.get().setLastDirectory(f.getParentFile());\n                        try {\n                            final Path sourceFile = f.getAbsoluteFile().toPath();\n\n                            if(new File(imagePanel.getDir(), f.getName()).exists()) {\n                                Dialog d = Dialog.buildConfirmation(LabelGrabber.INSTANCE.getLabel(\"confirm.overwrite.title\"), f.getName() + \"\\n\" + LabelGrabber.INSTANCE.getLabel(\"confirm.overwrite.text\"))\n                                        .addLabelledButton(LabelGrabber.INSTANCE.getLabel(\"file.replace.button\"), new EventHandler<ActionEvent>() {\n                                            @Override\n                                            public void handle(ActionEvent t) {\n                                                try {\n                                                    Files.delete(Paths.get(imagePanel.getDir(), f.getName()));\n                                                    Files.copy(sourceFile, Paths.get(imagePanel.getDir(), f.getName()), StandardCopyOption.COPY_ATTRIBUTES);\n                                                    refresh[0] = true;\n                                                }\n                                                catch(IOException e) {\n                                                    LOGGER.log(Level.WARNING, \"Could not delete or copy file back into directory.\", e);\n                                                }\n                                            }\n                                        }).addLabelledButton(LabelGrabber.INSTANCE.getLabel(\"file.continue.button\"), new EventHandler<ActionEvent>() {\n                                            @Override\n                                            public void handle(ActionEvent t) {\n                                                // DO NOTHING\n                                            }\n                                        }).build();\n                                d.showAndWait();\n                            }\n                            else {\n                                Files.copy(sourceFile, Paths.get(imagePanel.getDir(), f.getName()), StandardCopyOption.COPY_ATTRIBUTES);\n                                refresh[0] = true;\n                            }\n                        }\n                        catch(IOException ex) {\n                            LOGGER.log(Level.WARNING, \"Could not copy file into ImagePanel from FileChooser selection\", ex);\n                        }\n                    }\n                    if(refresh[0]) {\n                        imagePanel.refresh();\n                    }\n                }\n            }\n        });\n        HBox toolbarBox = new HBox();\n        toolbar.setOrientation(Orientation.VERTICAL);\n        toolbarBox.getChildren().add(toolbar);\n        Utils.setToolbarButtonStyle(addButton);\n        toolbar.getItems().add(addButton);\n        setLeft(toolbarBox);\n    }\n\n    /**\n     * Get the image list panel.\n     * <p/>\n     * @return the image list panel.\n     */\n    public ImageListPanel getImagePanel() {\n        return imagePanel;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/library/LibraryPanel.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.library;\n\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport javafx.scene.control.Tab;\nimport javafx.scene.control.TabPane;\nimport javafx.scene.layout.Priority;\nimport javafx.scene.layout.VBox;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\n\n/**\n * The panel that's used to display the library of media (pictures, video) and\n * songs. Items can be selected from here and added to the order of service.\n *\n * @author Michael\n */\npublic class LibraryPanel extends VBox {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    private final LibrarySongPanel songPanel;\n    private final LibraryBiblePanel biblePanel;\n    private final LibraryImagePanel imagePanel;\n    private final LibraryVideoPanel videoPanel;\n    private final LibraryTimerPanel timerPanel;\n    private final Tab timerTab;\n    private final TabPane tabPane;\n\n    /**\n     * Create a new library panel.\n     */\n    public LibraryPanel() {\n        LOGGER.log(Level.INFO, \"Creating library panel\");\n        tabPane = new TabPane();\n\n        LOGGER.log(Level.INFO, \"Creating library song panel\");\n        songPanel = new LibrarySongPanel();\n        Tab songTab = new Tab();\n        songTab.setClosable(false);\n        songTab.setText(LabelGrabber.INSTANCE.getLabel(\"library.songs.heading\"));\n        songTab.setContent(songPanel);\n        tabPane.getTabs().add(songTab);\n\n        LOGGER.log(Level.INFO, \"Creating library bible panel\");\n        biblePanel = new LibraryBiblePanel();\n        Tab bibleTab = new Tab();\n        bibleTab.setClosable(false);\n        bibleTab.setText(LabelGrabber.INSTANCE.getLabel(\"library.bible.heading\"));\n        bibleTab.setContent(biblePanel);\n        tabPane.getTabs().add(bibleTab);\n\n        LOGGER.log(Level.INFO, \"Creating library image panel\");\n        imagePanel = new LibraryImagePanel();\n        Tab imageTab = new Tab();\n        imageTab.setClosable(false);\n        imageTab.setText(LabelGrabber.INSTANCE.getLabel(\"library.image.heading\"));\n        imageTab.setContent(imagePanel);\n        tabPane.getTabs().add(imageTab);\n\n        if (QueleaProperties.get().getDisplayVideoTab()) {\n            LOGGER.log(Level.INFO, \"Creating library video panel\");\n            videoPanel = new LibraryVideoPanel();\n            Tab videoTab = new Tab();\n            videoTab.setClosable(false);\n            videoTab.setText(LabelGrabber.INSTANCE.getLabel(\"library.video.heading\"));\n            videoTab.setContent(videoPanel);\n            tabPane.getTabs().add(videoTab);\n        }\n        else {\n            videoPanel = null;\n        }\n\n        LOGGER.log(Level.INFO, \"Creating library timer panel\");\n        timerPanel = new LibraryTimerPanel();\n        timerTab = new Tab();\n        timerTab.setClosable(false);\n        timerTab.setText(LabelGrabber.INSTANCE.getLabel(\"library.timer.heading\"));\n        timerTab.setContent(timerPanel);\n        if (QueleaProperties.get().getTimerDir().listFiles() != null\n                && QueleaProperties.get().getTimerDir().listFiles().length > 0) {\n            tabPane.getTabs().add(timerTab);\n        }\n\n        VBox.setVgrow(tabPane, Priority.ALWAYS);\n        getChildren().add(tabPane);\n    }\n\n    /**\n     * Get the library song panel.\n     *\n     * @return the library song panel.\n     */\n    public LibrarySongPanel getLibrarySongPanel() {\n        return songPanel;\n    }\n\n    /**\n     * Get the library bible panel.\n     *\n     * @return the library bible panel.\n     */\n    public LibraryBiblePanel getBiblePanel() {\n        return biblePanel;\n    }\n\n    /**\n     * Get the library image panel.\n     *\n     * @return the library image panel.\n     */\n    public LibraryImagePanel getImagePanel() {\n        return imagePanel;\n    }\n\n    /**\n     * Get the library video panel.\n     *\n     * @return the library video panel.\n     */\n    public LibraryVideoPanel getVideoPanel() {\n        return videoPanel;\n    }\n\n    /**\n     * Get the library timer panel.\n     *\n     * @return the library timer panel.\n     */\n    public LibraryTimerPanel getTimerPanel() {\n        return timerPanel;\n    }\n\n    /**\n     * Method to force the display of timers folder\n     */\n    public void forceTimer() {\n        if (!tabPane.getTabs().contains(timerTab)) {\n            tabPane.getTabs().add(timerTab);\n        }\n        timerPanel.getTimerPanel().refresh();\n    }\n\n    public TabPane getTabPane() {\n        return tabPane;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/library/LibraryPopupMenu.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.library;\n\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport javafx.scene.control.ContextMenu;\nimport javafx.scene.control.MenuItem;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport org.javafx.dialog.Dialog;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.print.Printer;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.windows.main.actionhandlers.AddSongActionHandler;\nimport org.quelea.windows.main.actionhandlers.EditSongDBActionHandler;\nimport org.quelea.windows.main.actionhandlers.ExportPDFSongActionHandler;\nimport org.quelea.windows.main.actionhandlers.PreviewSongActionHandler;\nimport org.quelea.windows.main.actionhandlers.RemoveSongDBActionHandler;\n\n/**\n * The popup menu that displays when someone right clicks on a song in the\n * library.\n *\n * @author Michael\n */\npublic class LibraryPopupMenu extends ContextMenu {\n\n    private final MenuItem addToSchedule;\n    private final MenuItem copyToSchedule;\n    private final MenuItem preview;\n    private final MenuItem editDB;\n    private final MenuItem removeFromDB;\n    private final MenuItem exportToPDF;\n    private final MenuItem print;\n\n    /**\n     * Create and initialise the popup menu.\n     */\n    public LibraryPopupMenu() {\n        addToSchedule = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"library.add.to.schedule.text\"), new ImageView(new Image(\"file:icons/add.png\", 16, 16, false, true)));\n        addToSchedule.setOnAction(new AddSongActionHandler(true));\n        copyToSchedule = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"library.copy.to.schedule.text\"), new ImageView(new Image(\"file:icons/add.png\", 16, 16, false, true)));\n        copyToSchedule.setOnAction(new AddSongActionHandler(false));\n        preview = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"library.preview.song.text\"), new ImageView(new Image(\"file:icons/prev.png\", 16, 16, false, true)));\n        preview.setOnAction(new PreviewSongActionHandler());\n        editDB = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"library.edit.song.text\"), new ImageView(new Image(\"file:icons/edit.png\", 16, 16, false, true)));\n        editDB.setOnAction(new EditSongDBActionHandler());\n        removeFromDB = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"library.remove.song.text\"), new ImageView(new Image(\"file:icons/removedb.png\", 16, 16, false, true)));\n        removeFromDB.setOnAction(new RemoveSongDBActionHandler());\n        exportToPDF = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"export.pdf.button\"), new ImageView(new Image(\"file:icons/fileexport.png\", 16, 16, false, true)));\n        exportToPDF.setOnAction(new ExportPDFSongActionHandler());\n        print = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"library.print.song.text\"), new ImageView(new Image(\"file:icons/fileprint.png\", 16, 16, false, true)));\n        print.setOnAction(t -> {\n            final SongDisplayable song = QueleaApp.get().getMainWindow().getMainPanel().getLibraryPanel().getLibrarySongPanel().getSongList().getSelectedValues().get(0);\n            if (song != null) {\n                if (song.hasChords()) {\n                    Dialog.buildConfirmation(LabelGrabber.INSTANCE.getLabel(\"printing.options.text\"), LabelGrabber.INSTANCE.getLabel(\"print.chords.question\")).addYesButton(t12 -> song.setPrintChords(true)).addNoButton(t1 -> song.setPrintChords(false)).build().showAndWait();\n                }\n                Printer.getInstance().print(song);\n            }\n        });\n\n        getItems().add(addToSchedule);\n        getItems().add(copyToSchedule);\n        getItems().add(preview);\n        getItems().add(editDB);\n        getItems().add(removeFromDB);\n        getItems().add(exportToPDF);\n        getItems().add(print);\n    }\n\n    public void setMultipleSelected(boolean multipleSelected) {\n        addToSchedule.setDisable(false);\n        copyToSchedule.setDisable(false);\n        preview.setDisable(multipleSelected);\n        editDB.setDisable(multipleSelected);\n        removeFromDB.setDisable(false);\n        exportToPDF.setDisable(multipleSelected);\n        print.setDisable(multipleSelected);\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/library/LibrarySongList.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.library;\n\nimport java.util.List;\nimport java.util.TreeSet;\nimport java.util.concurrent.ExecutorService;\nimport java.util.concurrent.Executors;\nimport java.util.concurrent.Future;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport java.util.regex.Pattern;\nimport javafx.application.Platform;\nimport javafx.collections.FXCollections;\nimport javafx.collections.ObservableList;\nimport javafx.geometry.Insets;\nimport javafx.geometry.Pos;\nimport javafx.scene.control.ListCell;\nimport javafx.scene.control.ListView;\nimport javafx.scene.control.SelectionMode;\nimport javafx.scene.input.ClipboardContent;\nimport javafx.scene.input.Dragboard;\nimport javafx.scene.input.KeyCode;\nimport javafx.scene.input.KeyEvent;\nimport javafx.scene.input.MouseEvent;\nimport javafx.scene.input.TransferMode;\nimport javafx.scene.layout.HBox;\nimport javafx.scene.layout.StackPane;\nimport javafx.scene.text.Text;\nimport javafx.util.Callback;\nimport org.quelea.data.db.SongManager;\nimport org.quelea.data.displayable.IndexedDisplayable;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.services.lucene.SongSearchIndex;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.utils.SongDisplayableList;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.windows.main.actionhandlers.AddSongActionHandler;\nimport org.quelea.windows.main.widgets.AddSongPromptOverlay;\nimport org.quelea.windows.main.widgets.LoadingPane;\n\n/**\n * The list that displays the songs in the library.\n * <p/>\n * @author Michael\n */\npublic class LibrarySongList extends StackPane {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    private final LibraryPopupMenu popupMenu;\n    private final ListView<SongDisplayable> songList;\n    private final LoadingPane loadingOverlay;\n    private final LibrarySongPreviewCanvas previewCanvas;\n    private final AddSongPromptOverlay addSongOverlay;\n\n    /**\n     * Create a new library song list.\n     * <p/>\n     * @param popup true if we want a popup menu to appear on items in this list\n     * when right-clicked, false if not.\n     */\n    public LibrarySongList(boolean popup) {\n        songList = new ListView<>();\n        songList.getSelectionModel().setSelectionMode(SelectionMode.MULTIPLE);\n        loadingOverlay = new LoadingPane();\n        addSongOverlay = new AddSongPromptOverlay();\n        setAlignment(Pos.CENTER);\n        getChildren().add(songList);\n        getChildren().add(addSongOverlay);\n        addSongOverlay.show();\n        songList.itemsProperty().addListener((val, oldList, newList) -> {\n            if (songList.getItems().isEmpty()) {\n                addSongOverlay.show();\n            } else {\n                addSongOverlay.hide();\n            }\n        });\n        getChildren().add(loadingOverlay);\n            previewCanvas = new LibrarySongPreviewCanvas();\n            StackPane.setAlignment(previewCanvas, Pos.BOTTOM_RIGHT);\n            StackPane.setMargin(previewCanvas, new Insets(10));\n            getChildren().add(previewCanvas);\n            songList.focusedProperty().addListener((observable, oldFocused, focused) -> {\n                if (QueleaProperties.get().getShowDBSongPreview() && focused && songList.getSelectionModel().getSelectedItem() != null) {\n                    previewCanvas.show();\n                } else {\n                    previewCanvas.hide();\n                }\n            });\n        Callback<ListView<SongDisplayable>, ListCell<SongDisplayable>> callback = (lv) -> {\n            final ListCell<SongDisplayable> cell = new ListCell<>() {\n                @Override\n                protected void updateItem(SongDisplayable item, boolean empty) {\n                    super.updateItem(item, empty);\n                    if (empty) {\n                        setGraphic(null);\n                    } else {\n                        HBox textBox = new HBox();\n                        if (item.getLastSearch() == null) {\n                            Text text = new Text(item.getTitle());\n                            text.getStyleClass().add(\"text\");\n                            textBox.getChildren().add(text);\n                        } else {\n                            int startIndex = item.getTitle().toLowerCase().indexOf(item.getLastSearch().toLowerCase());\n                            if (startIndex == -1) {\n                                Text text = new Text(item.getTitle());\n                                text.getStyleClass().add(\"text\");\n                                textBox.getChildren().add(text);\n                            } else {\n                                Text initText = new Text(item.getTitle().substring(0, startIndex));\n                                initText.getStyleClass().add(\"text\");\n                                textBox.getChildren().add(initText);\n                                String boldTextStr = item.getTitle().substring(startIndex, startIndex + item.getLastSearch().length());\n                                Text boldText = new Text(boldTextStr);\n                                boldText.setStyle(\"-fx-font-weight:bold;\");\n                                boldText.getStyleClass().add(\"text\");\n                                textBox.getChildren().add(boldText);\n                                Text plainText = new Text(item.getTitle().substring(startIndex + item.getLastSearch().length()));\n                                plainText.getStyleClass().add(\"text\");\n                                textBox.getChildren().add(plainText);\n                            }\n                        }\n                        setGraphic(textBox);\n                    }\n                }\n            };\n            cell.setOnDragDetected((event) -> {\n                SongDisplayable draggedDisplayable = cell.getItem();\n                List<SongDisplayable> selectedDisplayables = getSelectedValues();\n\n                List<SongDisplayable> toDrag;\n                if(!selectedDisplayables.isEmpty()) {\n                    toDrag = selectedDisplayables;\n                }\n                else if(draggedDisplayable!=null){\n                    toDrag = List.of(draggedDisplayable);\n                } else {\n                    toDrag = List.of();\n                }\n                \n                if (!toDrag.isEmpty()) {\n                    Dragboard db = cell.startDragAndDrop(TransferMode.ANY);\n                    ClipboardContent content = new ClipboardContent();\n                    content.put(SongDisplayable.SONG_DISPLAYABLE_FORMAT, new SongDisplayableList(toDrag.stream().map(x->new IndexedDisplayable(x, -1)).toList()));\n                    db.setContent(content);\n                }\n                event.consume();\n            });\n            return cell;\n        };\n        popupMenu = new LibraryPopupMenu();\n        songList.setOnMouseClicked((MouseEvent t) -> {\n            if (t.getClickCount() == 2 && songList.getSelectionModel().getSelectedItem() != null) {\n                new AddSongActionHandler(QueleaProperties.get().getDefaultSongDBUpdate()).handle(null);\n            } else if (t.getClickCount() == 1 && (t.isControlDown())) {\n                QueleaApp.get().getMainWindow().getMainPanel().getPreviewPanel().setDisplayable(songList.getSelectionModel().getSelectedItem(), 0);\n            }\n        });\n        songList.selectionModelProperty().get().selectedItemProperty().addListener((observable, oldSong, song) -> {\n            popupMenu.setMultipleSelected(songList.getSelectionModel().getSelectedIndices().size()>1);\n            previewCanvas.setSong(song);\n            if (song != null && QueleaProperties.get().getShowDBSongPreview()) {\n                previewCanvas.show();\n            } else {\n                previewCanvas.hide();\n            }\n            if(QueleaProperties.get().getImmediateSongDBPreview()) {\n                QueleaApp.get().getMainWindow().getMainPanel().getPreviewPanel().setDisplayable(songList.getSelectionModel().getSelectedItem(), 0);\n            }\n        });\n        songList.setOnKeyPressed((KeyEvent t) -> {\n            if (t.getCode() == KeyCode.ENTER) {\n                new AddSongActionHandler(QueleaProperties.get().getDefaultSongDBUpdate()).handle(null);\n            }\n        });\n        if (popup) {\n            songList.setCellFactory(DisplayableListCell.forListView(popupMenu, callback, null));\n        }\n        new Thread(this::refresh).start();\n        SongManager.get().registerDatabaseListener(this::refresh);\n    }\n    private ExecutorService filterService = Executors.newSingleThreadExecutor();\n    private Future<?> filterFuture;\n\n    /**\n     * Filter the results in this list by a specific search term.\n     * <p/>\n     * @param search the search term to use.\n     */\n    public void filter(final String search) {\n        if (filterFuture != null) {\n            filterFuture.cancel(true);\n        }\n        Platform.runLater(() -> {\n            setLoading(true);\n        });\n        LOGGER.log(Level.INFO, \"Performing search for {0}\", search);\n        filterFuture = filterService.submit(() -> {\n            final ObservableList<SongDisplayable> songs = FXCollections.observableArrayList();\n\n            // empty or null search strings do not need to be filtered - lest they get added twice\n            if (search == null || search.trim().isEmpty() || Pattern.compile(\"[^\\\\w ]\", Pattern.UNICODE_CHARACTER_CLASS).matcher(search).replaceAll(\"\").isEmpty()) {\n                TreeSet<SongDisplayable> m = new TreeSet<>();\n                LOGGER.log(Level.INFO, \"Empty song search performed\");\n                for (SongDisplayable song : SongManager.get().getSongs()) {\n                    song.setLastSearch(null);\n                    m.add(song);\n                }\n                songs.addAll(m);\n                LOGGER.log(Level.INFO, \"{0} songs in list\", songs.size());\n            } else {\n                TreeSet<SongDisplayable> m = new TreeSet<>();\n                LOGGER.log(Level.INFO, \"Filtering songs by title\");\n                SongDisplayable[] titleSongs = SongManager.get().getIndex().filter(search, SongSearchIndex.FilterType.TITLE);\n                LOGGER.log(Level.INFO, \"Filtered songs by title\");\n                for (SongDisplayable song : titleSongs) {\n                    song.setLastSearch(search);\n                    m.add(song);\n                }\n                songs.addAll(m);\n                m.clear();\n                LOGGER.log(Level.INFO, \"{0} songs in list\", songs.size());\n\n                LOGGER.log(Level.INFO, \"Filtering songs by lyrics\");\n                SongDisplayable[] lyricSongs = SongManager.get().getIndex().filter(search, SongSearchIndex.FilterType.BODY);\n                LOGGER.log(Level.INFO, \"Filtered songs by lyrics\");\n                for (SongDisplayable song : lyricSongs) {\n                    song.setLastSearch(null);\n                    m.add(song);\n                }\n                songs.addAll(m);\n                m.clear();\n                LOGGER.log(Level.INFO, \"{0} songs in list\", songs.size());\n\n                LOGGER.log(Level.INFO, \"Filtering songs by author\");\n                SongDisplayable[] authorSongs = SongManager.get().getIndex().filter(search, SongSearchIndex.FilterType.AUTHOR);\n                LOGGER.log(Level.INFO, \"Filtered songs by author\");\n                for (SongDisplayable song : authorSongs) {\n                    m.add(song);\n                }\n                songs.addAll(m);\n                m.clear();\n                LOGGER.log(Level.INFO, \"{0} songs in list\", songs.size());\n            }\n\n            Platform.runLater(() -> {\n                LOGGER.log(Level.INFO, \"Setting song list\");\n                songList.setItems(FXCollections.observableArrayList()); //Force search display update\n                songList.setItems(songs);\n                if (!songs.isEmpty()) {\n                    LOGGER.log(Level.INFO, \"Selecting first song\");\n                    songList.getSelectionModel().select(0);\n                }\n                LOGGER.log(Level.INFO, \"Setting no longer loading\");\n                setLoading(false);\n                LOGGER.log(Level.INFO, \"Song search done\");\n            });\n        });\n\n    }\n\n    /**\n     * Get the currently selected songs.\n     * <p/>\n     * @return the currently selected song, or an empty list if none is selected.\n     */\n    public List<SongDisplayable> getSelectedValues() {\n        return songList.selectionModelProperty().get().getSelectedItems();\n    }\n\n    /**\n     * Get the popup menu associated with this list.\n     * <p/>\n     * @return the popup menu.\n     */\n    public LibraryPopupMenu getPopupMenu() {\n        return popupMenu;\n    }\n\n    /**\n     * Get the actual list view in this song list.\n     * <p>\n     * @return the list view object.\n     */\n    public ListView<SongDisplayable> getListView() {\n        return songList;\n    }\n\n    private void refresh() {\n        Platform.runLater(() -> {\n            setLoading(true);\n        });\n        final ObservableList<SongDisplayable> songs = FXCollections.observableArrayList(SongManager.get().getSongs(loadingOverlay));\n        Platform.runLater(() -> {\n            songList.itemsProperty().set(songs);\n            setLoading(false);\n        });\n    }\n\n    private boolean hasMultipleSelected() {\n        return songList.getSelectionModel().getSelectedItems().size() > 1;\n    }\n\n    public void setLoading(boolean loading) {\n        if (loading) {\n            loadingOverlay.show();\n        } else {\n            loadingOverlay.hide();\n        }\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/library/LibrarySongPanel.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.library;\n\nimport javafx.beans.value.ChangeListener;\nimport javafx.beans.value.ObservableValue;\nimport javafx.collections.ObservableList;\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport javafx.geometry.Insets;\nimport javafx.geometry.Orientation;\nimport javafx.geometry.Pos;\nimport javafx.scene.control.Button;\nimport javafx.scene.control.Label;\nimport javafx.scene.control.ScrollPane;\nimport javafx.scene.control.TextField;\nimport javafx.scene.control.ToolBar;\nimport javafx.scene.control.Tooltip;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.input.KeyCode;\nimport javafx.scene.input.KeyEvent;\nimport javafx.scene.layout.BorderPane;\nimport javafx.scene.layout.HBox;\nimport javafx.scene.layout.Priority;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.actionhandlers.NewSongActionHandler;\nimport org.quelea.windows.main.actionhandlers.RemoveSongDBActionHandler;\n\n/**\n * The panel used for browsing the database of songs and adding any songs to the\n * order of service.\n * <p/>\n *\n * @author Michael\n */\npublic class LibrarySongPanel extends BorderPane {\n\n    private final TextField searchBox;\n    private final Button searchCancelButton;\n    private final LibrarySongList songList;\n    private final Button removeButton;\n    private final Button addButton;\n\n    /**\n     * Create and initialise the library song panel.\n     */\n    public LibrarySongPanel() {\n        boolean darkTheme = QueleaProperties.get().getUseDarkTheme();\n        songList = new LibrarySongList(true);\n        songList.getListView().getSelectionModel().selectedIndexProperty().addListener(new ChangeListener<Number>() {\n            @Override\n            public void changed(ObservableValue<? extends Number> ov, Number t, Number t1) {\n                checkRemoveButton();\n            }\n        });\n        songList.getListView().itemsProperty().addListener(new ChangeListener<ObservableList<SongDisplayable>>() {\n            @Override\n            public void changed(ObservableValue<? extends ObservableList<SongDisplayable>> ov, ObservableList<SongDisplayable> t, ObservableList<SongDisplayable> t1) {\n                checkRemoveButton();\n            }\n        });\n        ScrollPane listScrollPane = new ScrollPane();\n        setCenter(listScrollPane);\n\n        HBox northPanel = new HBox(3);\n        Label searchLabel = new Label(LabelGrabber.INSTANCE.getLabel(\"library.song.search\"));\n        searchLabel.setMaxHeight(Double.MAX_VALUE);\n        searchLabel.setAlignment(Pos.CENTER);\n        northPanel.getChildren().add(searchLabel);\n        searchBox = new TextField();\n        HBox.setHgrow(searchBox, Priority.SOMETIMES);\n        searchBox.setMaxWidth(Double.MAX_VALUE);\n        searchBox.setOnKeyPressed(new EventHandler<KeyEvent>() {\n            @Override\n            public void handle(KeyEvent t) {\n                if (t.getCode() == KeyCode.ESCAPE) {\n                    searchCancelButton.fire();\n                }\n            }\n        });\n        searchBox.textProperty().addListener(new ChangeListener<String>() {\n            @Override\n            public void changed(ObservableValue<? extends String> ov, String t, String t1) {\n                searchCancelButton.setDisable(searchBox.getText().isEmpty());\n                songList.filter(searchBox.getText());\n            }\n        });\n        northPanel.getChildren().add(searchBox);\n        searchCancelButton = new Button(\"\", new ImageView(new Image(darkTheme ? \"file:icons/cross-light.png\" : \"file:icons/cross.png\")));\n        Utils.setToolbarButtonStyle(searchCancelButton);\n        searchCancelButton.setTooltip(new Tooltip(LabelGrabber.INSTANCE.getLabel(\"clear.search.box\")));\n        searchCancelButton.setDisable(true);\n        searchCancelButton.setOnAction(new EventHandler<ActionEvent>() {\n            @Override\n            public void handle(ActionEvent t) {\n                searchBox.clear();\n            }\n        });\n        northPanel.getChildren().add(searchCancelButton);\n        BorderPane.setMargin(northPanel, new Insets(0, 5, 0, 5));\n        setTop(northPanel);\n\n        ToolBar toolbar = new ToolBar();\n        toolbar.setOrientation(Orientation.VERTICAL);\n\n        ImageView addIV = new ImageView(new Image(darkTheme ? \"file:icons/newsongdb-light.png\" : \"file:icons/newsongdb.png\"));\n        addIV.setFitWidth(16);\n        addIV.setFitHeight(16);\n        addButton = new Button(\"\", addIV);\n        Utils.setToolbarButtonStyle(addButton);\n        addButton.setTooltip(new Tooltip(LabelGrabber.INSTANCE.getLabel(\"add.song.text\")));\n        addButton.setOnAction(new NewSongActionHandler());\n        toolbar.getItems().add(addButton);\n        ImageView removeIV = new ImageView(new Image(darkTheme ? \"file:icons/removedb-light.png\" : \"file:icons/removedb.png\"));\n        removeIV.setFitWidth(16);\n        removeIV.setFitHeight(16);\n        removeButton = new Button(\"\", removeIV);\n        Utils.setToolbarButtonStyle(removeButton);\n        removeButton.setTooltip(new Tooltip(LabelGrabber.INSTANCE.getLabel(\"remove.song.text\")));\n        removeButton.setDisable(true);\n        removeButton.setOnAction(new RemoveSongDBActionHandler());\n        toolbar.getItems().add(removeButton);\n        setLeft(toolbar);\n        setCenter(songList);\n\n    }\n\n    /**\n     * Check whether the remove button should be enabled or disabled and set it\n     * accordingly.\n     */\n    private void checkRemoveButton() {\n        if (songList.getListView().getSelectionModel().selectedIndexProperty().getValue() == -1 || songList.getListView().itemsProperty().get().size() == 0) {\n            removeButton.setDisable(true);\n        } else {\n            removeButton.setDisable(false);\n        }\n    }\n\n    /**\n     * Get the song list behind this panel.\n     * <p/>\n     *\n     * @return the song list.\n     */\n    public LibrarySongList getSongList() {\n        return songList;\n    }\n\n    /**\n     * Get the search box in this panel.\n     * <p/>\n     *\n     * @return the search box.\n     */\n    public TextField getSearchBox() {\n        return searchBox;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/library/LibrarySongPreviewCanvas.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * Copyright (C) 2012 Michael Berry\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.library;\n\nimport javafx.animation.FadeTransition;\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport javafx.scene.layout.StackPane;\nimport javafx.util.Duration;\nimport org.quelea.data.ThemeDTO;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.data.displayable.TextSection;\nimport org.quelea.windows.lyrics.LyricDrawer;\nimport org.quelea.windows.main.DisplayCanvas;\nimport org.quelea.windows.main.WordDrawer;\n\n/**\n * A pane that can be overlaid on a component when it's loading something.\n * <p/>\n * @author Michael\n */\npublic class LibrarySongPreviewCanvas extends StackPane {\n\n    private FadeTransition trans;\n    private DisplayCanvas canvas;\n    private SongDisplayable displayable;\n\n    /**\n     * Create the loading pane.\n     */\n    public LibrarySongPreviewCanvas() {\n        setMaxSize(250, 167);\n        canvas = new DisplayCanvas(false, this::updateCanvas, DisplayCanvas.Priority.LOW);\n        canvas.setMaxSize(250, 167);\n        getChildren().add(canvas);\n        setOpacity(0);\n        setVisible(false);\n        setMouseTransparent(true);\n    }\n\n    public void updateCanvas() {\n        WordDrawer drawer = new LyricDrawer();\n        drawer.setCanvas(canvas);\n        if (displayable == null || displayable.getSections().length == 0) {\n            drawer.eraseText();\n        } else {\n            TextSection currentSection = displayable.getSections()[0];\n            ThemeDTO newTheme = currentSection.getTheme();\n            drawer.setTheme(newTheme);\n            drawer.setCapitaliseFirst(currentSection.shouldCapitaliseFirst());\n            drawer.setText(displayable, 0);\n        }\n    }\n\n    public void setSong(SongDisplayable displayable) {\n        this.displayable = displayable;\n        canvas.update();\n    }\n\n    /**\n     * Show (fade in) the loading pane.\n     */\n    public synchronized void show() {\n        setVisible(true);\n        if (trans != null) {\n            trans.stop();\n        }\n        trans = new FadeTransition(Duration.seconds(0.2), this);\n        trans.setFromValue(getOpacity());\n        trans.setToValue(0.8);\n        trans.play();\n    }\n\n    /**\n     * Hide (fade out) the loading pane.\n     */\n    public synchronized void hide() {\n        setVisible(false);\n        if (trans != null) {\n            trans.stop();\n        }\n        trans = new FadeTransition(Duration.seconds(0.2), this);\n        trans.setFromValue(getOpacity());\n        trans.setToValue(0);\n        trans.play();\n        trans.setOnFinished(new EventHandler<ActionEvent>() {\n            @Override\n            public void handle(ActionEvent t) {\n                setVisible(false);\n            }\n        });\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/library/LibraryTimerPanel.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.library;\n\nimport java.io.File;\nimport java.io.IOException;\nimport java.nio.file.Files;\nimport java.nio.file.Path;\nimport java.nio.file.Paths;\nimport java.nio.file.StandardCopyOption;\nimport java.util.List;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport javafx.beans.value.ObservableValue;\nimport javafx.collections.ObservableList;\nimport javafx.event.ActionEvent;\nimport javafx.geometry.Orientation;\nimport javafx.scene.control.Button;\nimport javafx.scene.control.ToolBar;\nimport javafx.scene.control.Tooltip;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.layout.BorderPane;\nimport javafx.scene.layout.HBox;\nimport javafx.stage.FileChooser;\nimport org.javafx.dialog.Dialog;\nimport org.quelea.data.displayable.TimerDisplayable;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.FileFilters;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.windows.main.actionhandlers.AddTimerActionHandler;\nimport org.quelea.windows.main.actionhandlers.RemoveTimerActionHandler;\n\n/**\n * The timer panel in the library.\n * <p/>\n * @author Ben\n */\npublic class LibraryTimerPanel extends BorderPane {\n\n    private final TimerListPanel timerPanel;\n    private final ToolBar toolbar;\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    private final Button removeButton;\n\n    /**\n     * Create a new library timer panel.\n     */\n    public LibraryTimerPanel() {\n        timerPanel = new TimerListPanel(QueleaProperties.get().getTimerDir().getAbsolutePath());\n        setCenter(timerPanel);\n        toolbar = new ToolBar();\n\n        timerPanel.getListView().getSelectionModel().selectedIndexProperty().addListener((ObservableValue<? extends Number> observable, Number oldValue, Number newValue) -> {\n            checkRemoveButton();\n        });\n        timerPanel.getListView().itemsProperty().addListener((ObservableValue<? extends ObservableList<TimerDisplayable>> observable, ObservableList<TimerDisplayable> oldValue, ObservableList<TimerDisplayable> newValue) -> {\n            checkRemoveButton();\n        });\n\n        Button addButton = new Button(\"\", new ImageView(new Image(\"file:icons/add.png\")));\n        addButton.setTooltip(new Tooltip(LabelGrabber.INSTANCE.getLabel(\"add.timers.panel\")));\n        addButton.setOnAction(new AddTimerActionHandler());\n        \n        Button importButton = new Button(\"\", new ImageView(new Image(\"file:icons/importbw.png\")));\n        importButton.setTooltip(new Tooltip(LabelGrabber.INSTANCE.getLabel(\"import.heading\")));\n        importButton.setOnAction((ActionEvent t) -> {\n            FileChooser chooser = new FileChooser();\n            if (QueleaProperties.get().getLastDirectory() != null) {\n                chooser.setInitialDirectory(QueleaProperties.get().getLastDirectory());\n            }\n            chooser.getExtensionFilters().add(FileFilters.TIMERS);\n            chooser.setInitialDirectory(QueleaProperties.get().getTimerDir().getAbsoluteFile());\n            List<File> files = chooser.showOpenMultipleDialog(QueleaApp.get().getMainWindow());\n            if (files != null) {\n                final boolean[] refresh = new boolean[]{false};\n                for (final File f : files) {\n                    QueleaProperties.get().setLastDirectory(f.getParentFile());\n                    try {\n                        final Path sourceFile = f.getAbsoluteFile().toPath();\n\n                        if (new File(timerPanel.getDir(), f.getName()).exists()) {\n                            Dialog d = Dialog.buildConfirmation(LabelGrabber.INSTANCE.getLabel(\"confirm.overwrite.title\"), f.getName() + \"\\n\" + LabelGrabber.INSTANCE.getLabel(\"confirm.overwrite.text\"))\n                                    .addLabelledButton(LabelGrabber.INSTANCE.getLabel(\"file.replace.button\"), (ActionEvent t1) -> {\n                                        try {\n                                            Files.delete(Paths.get(timerPanel.getDir(), f.getName()));\n                                            Files.copy(sourceFile, Paths.get(timerPanel.getDir(), f.getName()), StandardCopyOption.COPY_ATTRIBUTES);\n                                            refresh[0] = true;\n                                        } catch (IOException e) {\n                                            LOGGER.log(Level.WARNING, \"Could not delete or copy file back into directory.\", e);\n                                        }\n                                    }).addLabelledButton(LabelGrabber.INSTANCE.getLabel(\"file.continue.button\"), (ActionEvent t1) -> {\n                                        // DO NOTHING\n                                    }).build();\n                            d.showAndWait();\n                        } else {\n                            Files.copy(sourceFile, Paths.get(timerPanel.getDir(), f.getName()), StandardCopyOption.COPY_ATTRIBUTES);\n                            refresh[0] = true;\n                        }\n                    } catch (IOException ex) {\n                        LOGGER.log(Level.WARNING, \"Could not copy file into TimerPanel from FileChooser selection\", ex);\n                    }\n                }\n                if (refresh[0]) {\n                    timerPanel.refresh();\n                }\n            }\n        });\n        ImageView removeIV = new ImageView(new Image(\"file:icons/removedb.png\"));\n        removeButton = new Button(\"\", removeIV);\n        Utils.setToolbarButtonStyle(removeButton);\n        removeButton.setTooltip(new Tooltip(LabelGrabber.INSTANCE.getLabel(\"remove.timer.text\")));\n        removeButton.setDisable(true);\n        removeButton.setOnAction(new RemoveTimerActionHandler());\n        HBox toolbarBox = new HBox();\n        toolbar.setOrientation(Orientation.VERTICAL);\n        toolbarBox.getChildren().add(toolbar);\n        Utils.setToolbarButtonStyle(addButton);\n        Utils.setToolbarButtonStyle(importButton);\n        toolbar.getItems().addAll(addButton, importButton, removeButton);\n        setLeft(toolbarBox);\n    }\n\n    /**\n     * Get the timer list panel.\n     * <p/>\n     * @return the timer list panel.\n     */\n    public TimerListPanel getTimerPanel() {\n        return timerPanel;\n    }\n\n    /**\n     * Check whether the remove button should be enabled or disabled and set it\n     * accordingly.\n     */\n    private void checkRemoveButton() {\n        if (timerPanel.getListView().getSelectionModel().selectedIndexProperty().getValue() == -1 || timerPanel.getListView().itemsProperty().get().size() == 0) {\n            removeButton.setDisable(true);\n        } else {\n            removeButton.setDisable(false);\n        }\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/library/LibraryVideoPanel.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.library;\n\nimport java.io.File;\nimport java.io.IOException;\nimport java.nio.file.Files;\nimport java.nio.file.Path;\nimport java.nio.file.Paths;\nimport java.nio.file.StandardCopyOption;\nimport java.util.ArrayList;\nimport java.util.List;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport javafx.event.ActionEvent;\nimport javafx.geometry.Orientation;\nimport javafx.scene.control.Button;\nimport javafx.scene.control.ToolBar;\nimport javafx.scene.control.Tooltip;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.layout.BorderPane;\nimport javafx.scene.layout.HBox;\nimport javafx.stage.FileChooser;\nimport org.javafx.dialog.Dialog;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.FileFilters;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.QueleaApp;\n\n/**\n * The video panel in the library.\n * <p/>\n * @author Ben\n */\npublic class LibraryVideoPanel extends BorderPane {\n\n    private final VideoListPanel videoPanel;\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n\n    /**\n     * Create a new library video panel.\n     */\n    public LibraryVideoPanel() {\n        videoPanel = new VideoListPanel(QueleaProperties.get().getVidDir().getAbsolutePath());\n        setCenter(videoPanel);\n        ToolBar toolbar = new ToolBar();\n        Button addButton = new Button(\"\", new ImageView(new Image(\"file:icons/add.png\")));\n        addButton.setTooltip(new Tooltip(LabelGrabber.INSTANCE.getLabel(\"add.videos.panel\")));\n        addButton.setOnAction((ActionEvent t) -> {\n            FileChooser chooser = new FileChooser();\n            if (QueleaProperties.get().getLastDirectory() != null) {\n                chooser.setInitialDirectory(QueleaProperties.get().getLastDirectory());\n            }\n            chooser.getExtensionFilters().add(FileFilters.VIDEOS);\n            chooser.setInitialDirectory(QueleaProperties.get().getVidDir().getAbsoluteFile());\n            List<File> files = chooser.showOpenMultipleDialog(QueleaApp.get().getMainWindow());\n            if(files != null) {\n                List<Path> copiedPaths = new ArrayList<>();\n                for(final File f : files) {\n                    QueleaProperties.get().setLastDirectory(f.getParentFile());\n                    try {\n                        final Path sourceFile = f.getAbsoluteFile().toPath();\n                        \n                        if(new File(videoPanel.getDir(), f.getName()).exists()) {\n                            Dialog d = Dialog.buildConfirmation(LabelGrabber.INSTANCE.getLabel(\"confirm.overwrite.title\"), f.getName() + \"\\n\" + LabelGrabber.INSTANCE.getLabel(\"confirm.overwrite.text\"))\n                                    .addLabelledButton(LabelGrabber.INSTANCE.getLabel(\"file.replace.button\"), (ActionEvent t1) -> {\n                                        try {\n                                            Files.delete(Paths.get(videoPanel.getDir(), f.getName()));\n                                            Path targetFile = Files.copy(sourceFile, Paths.get(videoPanel.getDir(), f.getName()), StandardCopyOption.COPY_ATTRIBUTES);\n                                            copiedPaths.add(targetFile);\n                                        }\n                                        catch(IOException e) {\n                                            LOGGER.log(Level.WARNING, \"Could not delete or copy file back into directory.\", e);\n                                        }\n                            }).addLabelledButton(LabelGrabber.INSTANCE.getLabel(\"file.continue.button\"), (ActionEvent t1) -> {\n                                // DO NOTHING\n                            }).build();\n                            d.showAndWait();\n                        }\n                        else {\n                            Path targetFile = Files.copy(sourceFile, Paths.get(videoPanel.getDir(), f.getName()), StandardCopyOption.COPY_ATTRIBUTES);\n                            LOGGER.log(Level.INFO, \"Copied file to \" + targetFile);\n                            copiedPaths.add(targetFile);\n                        }\n                    }\n                    catch(IOException ex) {\n                        LOGGER.log(Level.WARNING, \"Could not copy file into VideoPanel from FileChooser selection\", ex);\n                    }\n                }\n                for(Path path : copiedPaths) {\n                    videoPanel.addVideoFile(path.toFile());\n                }\n            }\n        });\n        HBox toolbarBox = new HBox();\n        toolbar.setOrientation(Orientation.VERTICAL);\n        toolbarBox.getChildren().add(toolbar);\n        Utils.setToolbarButtonStyle(addButton);\n        toolbar.getItems().add(addButton);\n        setLeft(toolbarBox);\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/library/TimerListPanel.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.library;\n\nimport java.io.File;\nimport java.io.IOException;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\nimport java.nio.file.StandardCopyOption;\nimport java.util.List;\nimport java.util.logging.Level;\nimport javafx.application.Platform;\nimport javafx.scene.control.ContextMenu;\nimport javafx.scene.control.ListCell;\nimport javafx.scene.control.ListView;\nimport javafx.scene.control.MenuItem;\nimport javafx.scene.control.ScrollPane;\nimport javafx.scene.control.cell.TextFieldListCell;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.input.Clipboard;\nimport javafx.scene.input.DragEvent;\nimport javafx.scene.input.MouseEvent;\nimport javafx.scene.input.TransferMode;\nimport javafx.scene.layout.BorderPane;\nimport javafx.util.Callback;\nimport javafx.util.StringConverter;\nimport org.quelea.data.displayable.TimerDisplayable;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.windows.main.actionhandlers.RemoveTimerActionHandler;\nimport org.quelea.windows.timer.TimerIO;\n\n/**\n * The panel displayed on the library to select the list of videos..\n * <p/>\n * @author Ben\n */\npublic class TimerListPanel extends BorderPane {\n\n    private static final String BORDER_STYLE_SELECTED = \"-fx-padding: 0.2em;-fx-border-color: #0093ff;-fx-border-radius: 5;-fx-border-width: 0.1em;\";\n    private static final String BORDER_STYLE_DESELECTED = \"-fx-padding: 0.2em;-fx-border-color: rgb(0,0,0,0);-fx-border-radius: 5;-fx-border-width: 0.1em;\";\n    private final ListView<TimerDisplayable> timerList;\n    private String dir;\n    private Thread updateThread;\n\n    /**\n     * Create a new video list panel.\n     * <p/>\n     * @param dir the directory to use.\n     */\n    public TimerListPanel(String dir) {\n        this.dir = dir;\n        timerList = new ListView<>();\n        timerList.setOnDragOver((DragEvent t) -> {\n            t.acceptTransferModes(TransferMode.COPY_OR_MOVE);\n        });\n        timerList.setOnDragDropped((DragEvent t) -> {\n            if (t.getGestureSource() == null) {\n                Clipboard cb = t.getDragboard();\n                if (cb.hasFiles()) {\n                    List<File> files = cb.getFiles();\n                    for (File f : files) {\n                        if (Utils.fileIsTimer(f) && !f.isDirectory()) {\n                            try {\n                                Files.copy(f.getAbsoluteFile().toPath(), Paths.get(getDir(), f.getName()), StandardCopyOption.COPY_ATTRIBUTES);\n                            } catch (IOException ex) {\n                                LoggerUtils.getLogger().log(Level.WARNING, \"Could not copy file into TimerPanel through system drag and drop.\", ex);\n                            }\n                            updateTimers();\n                        }\n                    }\n                }\n            }\n        });\n        Callback<ListView<TimerDisplayable>, ListCell<TimerDisplayable>> callback = (ListView<TimerDisplayable> p) -> {\n            final TextFieldListCell<TimerDisplayable> cell = new TextFieldListCell<>(new StringConverter<TimerDisplayable>() {\n                @Override\n                public String toString(TimerDisplayable timer) {\n                    return timer.getPreviewText();\n                }\n\n                @Override\n                public TimerDisplayable fromString(String string) {\n                    //Implementation not needed.\n                    return null;\n                }\n            });\n            return cell;\n        };\n\n        timerList.setOnMouseClicked((MouseEvent t) -> {\n            if (t.getClickCount() == 2) {\n                QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getScheduleList().add(getSelectedValue());\n            }\n        });\n\n        ContextMenu removeMenu = new ContextMenu();\n        MenuItem removeItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"remove.timer.text\"), new ImageView(new Image(\"file:icons/removedb.png\", 16, 16, false, false)));\n        removeItem.setOnAction(new RemoveTimerActionHandler());\n        removeMenu.getItems().add(removeItem);\n        timerList.setCellFactory(DisplayableListCell.forListView(removeMenu, callback, null));\n\n        updateTimers();\n        ScrollPane scroll = new ScrollPane();\n        scroll.setFitToWidth(true);\n        scroll.setContent(timerList);\n        setCenter(scroll);\n    }\n\n    /**\n     * Returns the absolute path of the currently selected directory\n     * <p/>\n     * @return Returns the directory path\n     */\n    public String getDir() {\n        return dir;\n    }\n\n    /**\n     * Refresh the contents of this video list panel.\n     */\n    public void refresh() {\n        updateTimers();\n    }\n\n    /**\n     * Add the files.\n     * <p/>\n     */\n    private void updateTimers() {\n        timerList.getItems().clear();\n        final File[] files = new File(dir).listFiles();\n        if (updateThread != null && updateThread.isAlive()) {\n            return;\n        }\n        updateThread = new Thread() {\n            @Override\n            public void run() {\n                if (files != null) {\n                    for (final File file : files) {\n                        Platform.runLater(() -> {\n                            TimerDisplayable td = TimerIO.timerFromFile(file);\n                            if (td != null) {\n                                timerList.getItems().add(td);\n                            }\n                        });\n                    }\n                }\n            }\n        };\n        updateThread.start();\n    }\n\n    public void changeDir(File absoluteFile) {\n        dir = absoluteFile.getAbsolutePath();\n    }\n\n    private TimerDisplayable getSelectedValue() {\n        return timerList.selectionModelProperty().get().getSelectedItem();\n    }\n\n    public ListView<TimerDisplayable> getListView() {\n        return timerList;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/library/VideoListPanel.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.library;\n\nimport javafx.application.Platform;\nimport javafx.embed.swing.SwingFXUtils;\nimport javafx.event.ActionEvent;\nimport javafx.geometry.Bounds;\nimport javafx.geometry.Orientation;\nimport javafx.geometry.Pos;\nimport javafx.scene.Node;\nimport javafx.scene.control.*;\nimport javafx.scene.control.Label;\nimport javafx.scene.control.MenuItem;\nimport javafx.scene.control.ScrollPane;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.input.*;\nimport javafx.scene.layout.BorderPane;\nimport javafx.scene.layout.TilePane;\nimport javafx.scene.layout.VBox;\nimport org.javafx.dialog.Dialog;\nimport org.quelea.data.displayable.VideoDisplayable;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.windows.video.VidPreviewDisplay;\n\nimport java.awt.*;\nimport java.awt.image.BufferedImage;\nimport java.io.File;\nimport java.io.IOException;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\nimport java.nio.file.StandardCopyOption;\nimport java.util.List;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\n\n/**\n * The panel displayed on the library to select the list of videos..\n * <p/>\n *\n * @author Ben\n */\npublic class VideoListPanel extends BorderPane {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    private static final String BORDER_STYLE_SELECTED = \"-fx-padding: 0.2em;-fx-border-color: #0093ff;-fx-border-radius: 5;-fx-border-width: 0.1em;\";\n    private static final String BORDER_STYLE_DESELECTED = \"-fx-padding: 0.2em;-fx-border-color: rgb(0,0,0,0);-fx-border-radius: 5;-fx-border-width: 0.1em;\";\n    private final TilePane videoList;\n    private final String dir;\n    private Thread updateThread;\n    private final VidPreviewDisplay vidPreviewDisplay;\n    public static final Image BLANK = new Image(\"file:icons/vid preview.png\");\n    public static final Image UNSUPPORTED = new Image(\"file:icons/unsupported vid preview.png\");\n\n    /**\n     * Create a new video list panel.\n     * <p/>\n     *\n     * @param dir the directory to use.\n     */\n    public VideoListPanel(String dir) {\n        this.dir = dir;\n        vidPreviewDisplay = new VidPreviewDisplay();\n        videoList = new TilePane();\n        videoList.setAlignment(Pos.CENTER);\n        videoList.setHgap(15);\n        videoList.setVgap(15);\n        videoList.setOrientation(Orientation.HORIZONTAL);\n        videoList.setOnDragOver((DragEvent t) -> t.acceptTransferModes(TransferMode.COPY_OR_MOVE));\n        videoList.setOnDragDropped((DragEvent t) -> {\n            if (t.getGestureSource() == null) {\n                Clipboard cb = t.getDragboard();\n                if (cb.hasFiles()) {\n                    List<File> files = cb.getFiles();\n                    for (File f : files) {\n                        if (Utils.fileIsVideo(f) && !f.isDirectory()) {\n                            try {\n                                Files.copy(f.getAbsoluteFile().toPath(), Paths.get(getDir(), f.getName()), StandardCopyOption.COPY_ATTRIBUTES);\n                            } catch (IOException ex) {\n                                LoggerUtils.getLogger().log(Level.WARNING, \"Could not copy file into VideoPanel through system drag and drop.\", ex);\n                            }\n                            updateVideos();\n                        }\n                    }\n                }\n            }\n        });\n        updateVideos();\n        ScrollPane scroll = new ScrollPane();\n        scroll.setFitToWidth(true);\n        scroll.setContent(videoList);\n        setCenter(scroll);\n    }\n\n    /**\n     * Returns the absolute path of the currently selected directory\n     * <p/>\n     */\n    public String getDir() {\n        return dir;\n    }\n\n    /**\n     * Refresh the contents of this video list panel.\n     */\n    public void refresh() {\n        updateVideos();\n    }\n\n    /**\n     * Add the files.\n     * <p/>\n     */\n    private void updateVideos() {\n        LOGGER.log(Level.INFO, \"Updating videos\");\n        videoList.getChildren().clear();\n        final File[] files = new File(dir).listFiles();\n        if (updateThread != null && updateThread.isAlive()) {\n            return;\n        }\n        updateThread = new Thread(() -> {\n            for (int i = 0; i < files.length; i++) {\n                File file = files[i];\n                LOGGER.log(Level.INFO, \"Checking file {0}\", file);\n                if (Utils.fileIsVideo(file) && !file.isDirectory()) {\n                    addVideoFile(file);\n                }\n            }\n        });\n        updateThread.start();\n    }\n\n    public void addVideoFile(File file) {\n        LOGGER.log(Level.INFO, \"Adding video file {0} to panel\", file);\n        final ImageView view = new ImageView();\n        final Label fileLabel = new Label(trim17(file.getName()));\n\n        view.setImage(resize(vidPreviewDisplay.getPreviewImg(file.toURI())));\n\n        Platform.runLater(() -> {\n            final VBox viewBox = new VBox();\n            viewBox.setAlignment(Pos.CENTER);\n            view.setPreserveRatio(true);\n            view.setFitWidth(160);\n            view.setFitHeight(90);\n            view.setOnMouseClicked((MouseEvent t) -> {\n                if (t.getButton() == MouseButton.PRIMARY && t.getClickCount() > 1) {\n                    QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getScheduleList().add(new VideoDisplayable(file.getAbsolutePath()));\n                } else if (t.getButton() == MouseButton.SECONDARY) {\n                    ContextMenu removeMenu = new ContextMenu();\n                    MenuItem removeItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"remove.video.text\"));\n                    removeItem.setOnAction((ActionEvent t1) -> {\n                        final boolean[] reallyDelete = new boolean[]{false};\n                        Dialog.buildConfirmation(LabelGrabber.INSTANCE.getLabel(\"delete.video.title\"),\n                                LabelGrabber.INSTANCE.getLabel(\"delete.video.confirmation\")).addYesButton((ActionEvent t2) -> {\n                            reallyDelete[0] = true;\n                        }).addNoButton((ActionEvent t3) -> {\n                        }).build().showAndWait();\n                        if (reallyDelete[0]) {\n                            file.delete();\n                            videoList.getChildren().remove(viewBox);\n                        }\n                    });\n                    removeMenu.getItems().add(removeItem);\n                    removeMenu.show(view, t.getScreenX(), t.getScreenY());\n                }\n            });\n            view.setOnDragDetected((MouseEvent t) -> {\n                Dragboard db = startDragAndDrop(TransferMode.ANY);\n                ClipboardContent content = new ClipboardContent();\n                content.putString(file.getAbsolutePath());\n                db.setContent(content);\n                t.consume();\n            });\n            viewBox.getChildren().add(view);\n            viewBox.getChildren().add(fileLabel);\n            setupHover(viewBox, file.getName());\n            videoList.getChildren().add(viewBox);\n        });\n    }\n\n    private void setupHover(final Node view, String fileName) {\n        Tooltip tt = new Tooltip(fileName);\n        view.setStyle(BORDER_STYLE_DESELECTED);\n        view.setOnMouseEntered((MouseEvent t) -> {\n            view.setStyle(BORDER_STYLE_SELECTED);\n            Bounds b = view.localToScreen(view.getLayoutBounds());\n            tt.show(view, b.getMaxX(), b.getMinY());\n        });\n        view.setOnMouseExited((MouseEvent t) -> {\n            view.setStyle(BORDER_STYLE_DESELECTED);\n            tt.hide();\n        });\n    }\n\n    private static String trim17(String toTrim) {\n        if (toTrim.length() > 17) {\n            return toTrim.substring(0, 16) + \"..\";\n        }\n        return toTrim;\n    }\n\n    private Image resize(Image image) {\n        var sImg = SwingFXUtils.fromFXImage(image, null).getScaledInstance(160, 90, 0);\n        BufferedImage bimage = new BufferedImage(sImg.getWidth(null), sImg.getHeight(null), BufferedImage.TYPE_INT_ARGB);\n        Graphics2D bGr = bimage.createGraphics();\n        bGr.drawImage(sImg, 0, 0, null);\n        bGr.dispose();\n        return SwingFXUtils.toFXImage(bimage, null);\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/lyrics/FormattedText.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.lyrics;\n\nimport javafx.scene.Node;\nimport javafx.scene.layout.HBox;\nimport javafx.scene.paint.Paint;\nimport javafx.scene.text.Font;\nimport javafx.scene.text.Text;\n\n/**\n * Basic formatted text that takes a (very) restricted subset of formatting tags\n * and applies them.\n * <p>\n * @author Michael\n */\npublic class FormattedText extends HBox {\n\n    /**\n     * Create new formatted text from a string.\n     * <p>\n     * @param line the string to create formatted text from.\n     */\n    public FormattedText(String line) {\n        super(0);\n        while(true) {\n            int startSup = line.indexOf(\"<sup>\");\n            if(startSup == -1) {\n                getChildren().add(new Text(line));\n                break;\n            }\n            else {\n                String normalStr = line.substring(0, startSup);\n                if(!normalStr.isEmpty()) {\n                    getChildren().add(new Text(normalStr));\n                }\n                line = line.substring(startSup + 5);\n                int endSup = line.indexOf(\"</sup>\");\n                if(endSup == -1) {\n                    endSup = 0;\n                }\n                String supStr = line.substring(0, endSup);\n                if(!supStr.isEmpty()) {\n                    Text supText = new Text(supStr);\n                    line = line.substring(endSup + 6);\n                    supText.setScaleX(0.5);\n                    supText.setScaleY(0.5);\n                    getChildren().add(supText);\n                }\n            }\n        }\n    }\n\n    /**\n     * Set the font of this formatted text.\n     * <p>\n     * @param font the font.\n     */\n    public void setFont(Font font) {\n        for(Node node : getChildren()) {\n            if(node instanceof Text) {\n                ((Text) node).setFont(font);\n            }\n        }\n    }\n\n    /**\n     * Set the fill of this formatted text.\n     * <p>\n     * @param paint the fill.\n     */\n    public void setFill(Paint paint) {\n        for(Node node : getChildren()) {\n            if(node instanceof Text) {\n                ((Text) node).setFill(paint);\n            }\n        }\n    }\n\n    /**\n     * Strip a string of all its formatting tags used to format text. This is\n     * required when performed font metrics calculations.\n     * <p>\n     * @param text the text to strip tags from.\n     * @return the string without formatting tags.\n     */\n    public static String stripFormatTags(String text) {\n        if(text == null) {\n            return null;\n        }\n        text = text.replace(\"<sup>\", \"\");\n        return text.replace(\"</sup>\", \"\");\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/lyrics/InputMethodRequestsObject.java",
    "content": "package org.quelea.windows.lyrics;\n\nimport javafx.geometry.Bounds;\nimport javafx.geometry.Point2D;\nimport javafx.scene.input.InputMethodRequests;\nimport org.fxmisc.richtext.InlineCssTextArea;\n\nimport java.util.Optional;\n\n/**\n * Workaround for entering non-latin characters in the lyrics area.\n * Copied from https://github.com/FXMisc/RichTextFX/issues/146\n *\n * @author Arvid\n */\npublic class InputMethodRequestsObject implements InputMethodRequests {\n    private InlineCssTextArea textArea;\n\n    /**\n     * Create a InputMethodRequest as a workaround for non-latin characters.\n     *\n     * @param textArea the InlineCssTextArea the object will be used on.\n     */\n    public InputMethodRequestsObject(InlineCssTextArea textArea) {\n        this.textArea = textArea;\n    }\n\n    @Override\n    public String getSelectedText() {\n        return \"\";\n    }\n\n    @Override\n    public int getLocationOffset(int x, int y) {\n        return 0;\n    }\n\n    @Override\n    public void cancelLatestCommittedText() {\n\n    }\n\n    @Override\n    public Point2D getTextLocation(int offset) {\n        // Method for supporting Pinyin input on Mac.\n        // TODO: Apparently only tested on MacOS, so might need more testing.\n        //  Doesn't seem to affect any other language input as far as I can tell.\n        Optional<Bounds> caretPositionBounds = textArea.getCaretBounds();\n        if (caretPositionBounds.isPresent()) {\n            Bounds bounds = caretPositionBounds.get();\n            return new Point2D(bounds.getMaxX() - 5, bounds.getMaxY());\n        }\n\n        throw new NullPointerException();\n    }\n}"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/lyrics/LyricDrawer.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.lyrics;\n\nimport java.awt.Dimension;\nimport java.util.ArrayList;\nimport java.util.Arrays;\nimport java.util.HashMap;\nimport java.util.List;\nimport java.util.Objects;\nimport java.util.logging.Level;\n\nimport javafx.animation.FadeTransition;\nimport javafx.animation.ParallelTransition;\nimport javafx.geometry.Insets;\nimport javafx.geometry.Pos;\nimport javafx.scene.Group;\nimport javafx.scene.Node;\nimport javafx.scene.effect.ColorAdjust;\nimport javafx.scene.effect.DropShadow;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.layout.Background;\nimport javafx.scene.layout.BackgroundFill;\nimport javafx.scene.layout.CornerRadii;\nimport javafx.scene.layout.StackPane;\nimport javafx.scene.paint.Color;\nimport javafx.scene.text.Font;\nimport javafx.scene.text.FontPosture;\nimport javafx.scene.text.FontWeight;\nimport javafx.util.Duration;\nimport org.quelea.data.ColourBackground;\nimport org.quelea.data.ImageBackground;\nimport org.quelea.data.ThemeDTO;\nimport org.quelea.data.VideoBackground;\nimport org.quelea.data.displayable.BiblePassage;\nimport org.quelea.data.displayable.Displayable;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.data.displayable.TextDisplayable;\nimport org.quelea.data.displayable.TextSection;\nimport org.quelea.services.utils.LineTypeChecker;\nimport org.quelea.services.utils.LineTypeChecker.Type;\nimport org.quelea.services.utils.LyricLine;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.windows.main.WordDrawer;\nimport org.quelea.windows.main.widgets.DisplayPositionSelector;\nimport org.quelea.utils.FXFontMetrics;\nimport org.quelea.utils.WrapTextResult;\nimport org.quelea.windows.video.VidDisplay;\n\n/**\n * Responsible for drawing lyrics and their background.\n * <p/>\n *\n * @author Ben Goodwin, tomaszpio@gmail.com, Michael\n */\npublic class LyricDrawer extends WordDrawer {\n\n    private String[] text;\n    private String[] translations;\n    private Group textGroup;\n    private Group smallTextGroup;\n    private ThemeDTO theme;\n    private TextDisplayable curDisplayable;\n    private boolean capitaliseFirst;\n    private String[] smallText;\n    private Group oldTextGroup;\n    private String[] oldText;\n    private boolean newItem;\n    private VidDisplay vidDisplay;\n\n    public LyricDrawer() {\n        text = new String[]{};\n        theme = ThemeDTO.DEFAULT_THEME;\n        textGroup = new Group();\n        smallTextGroup = new Group();\n        lastClearedState = new HashMap<>();\n        vidDisplay = new VidDisplay();\n        vidDisplay.setLoop(true);\n    }\n\n    protected void drawText(double defaultFontSize, boolean dumbWrap) {\n        Utils.checkFXThread();\n        if (defaultFontSize < 1) {\n            defaultFontSize = QueleaProperties.get().getMaxFontSize();\n\n            // Scale the default font size for this canvas\n            defaultFontSize *= canvasScalingFactor();\n        }\n        if (getCanvas().getCanvasBackground() != null) {\n            if (!getCanvas().getChildren().contains(getCanvas().getCanvasBackground())\n                    && !getCanvas().getChildren().contains(textGroup) && !getCanvas().getChildren().contains(smallTextGroup)) {\n                getCanvas().getChildren().add(0, getCanvas().getCanvasBackground());\n                getCanvas().getChildren().add(textGroup);\n                getCanvas().getChildren().add(smallTextGroup);\n            }\n        }\n\n        if (getCanvas().equals(QueleaApp.get().getProjectionWindow().getCanvas())) {\n            newItem = oldText != null && !Arrays.deepEquals(getText(), oldText) && textGroup != null;\n            oldText = getText();\n        } else {\n            oldTextGroup = textGroup;\n        }\n\n        Font font = Font.font(theme.getFont().getFamily(),\n                theme.isBold() ? FontWeight.BOLD : FontWeight.NORMAL,\n                theme.isItalic() ? FontPosture.ITALIC : FontPosture.REGULAR,\n                defaultFontSize);\n        String translateFamily = theme.getFont().getFamily();\n        if (theme.getTranslateFont() != null) {\n            translateFamily = theme.getTranslateFont().getFamily();\n        }\n        Font translateFont = Font.font(translateFamily,\n                theme.isTranslateBold() ? FontWeight.BOLD : FontWeight.NORMAL,\n                theme.isTranslateItalic() ? FontPosture.ITALIC : FontPosture.REGULAR,\n                defaultFontSize);\n\n        if (font == null) {\n            font = ThemeDTO.DEFAULT_FONT.getFont();\n        }\n        DropShadow shadow = new DropShadow();\n        if (theme.getShadow() != null) {\n            shadow = theme.getShadow().getDropShadow();\n        }\n        if (shadow == null) {\n            shadow = ThemeDTO.DEFAULT_SHADOW.getDropShadow();\n        }\n\n        List<LyricLine> newText;\n        double fontSize = -1;\n        if (dumbWrap) {\n            if (text.length == 0) {\n                fontSize = 1;\n                newText = new ArrayList<>();\n            } else {\n                WrapTextResult result = normalWrapText(font, text[0], getCanvas().getWidth() * QueleaProperties.get().getLyricWidthBounds(), getCanvas().getHeight() * QueleaProperties.get().getLyricHeightBounds());\n                newText = result.getNewText();\n                fontSize = result.getFontSize();\n            }\n        } else {\n            newText = sanctifyText(text, translations);\n        }\n        if (fontSize == -1) {\n            fontSize = pickFontSize(font, newText, getCanvas().getWidth() * QueleaProperties.get().getLyricWidthBounds(), getCanvas().getHeight() * QueleaProperties.get().getLyricHeightBounds());\n        }\n        font = Font.font(font.getFamily(),\n                theme.isBold() ? FontWeight.BOLD : FontWeight.NORMAL,\n                theme.isItalic() ? FontPosture.ITALIC : FontPosture.REGULAR,\n                fontSize);\n        translateFont = Font.font(translateFont.getFamily(),\n                theme.isTranslateBold() ? FontWeight.BOLD : FontWeight.NORMAL,\n                theme.isTranslateItalic() ? FontPosture.ITALIC : FontPosture.REGULAR,\n                fontSize - QueleaProperties.get().getTranslationFontSizeOffset());\n        double smallFontSize;\n        Font smallTextFont = Font.font(\"Arial\", FontWeight.BOLD, FontPosture.REGULAR, 500);\n\n        if (curDisplayable instanceof BiblePassage) {\n            smallFontSize = pickSmallFontSize(smallTextFont, smallText, getCanvas().getWidth() * 0.8,\n                    (getCanvas().getHeight() * (QueleaProperties.get().getSmallBibleTextSize())) - 5); //-5 for insets\n        } else {\n            smallFontSize = pickSmallFontSize(smallTextFont, smallText, getCanvas().getWidth() * 0.8,\n                    (getCanvas().getHeight() * (QueleaProperties.get().getSmallSongTextSize())) - 5); //-5 for insets\n        }\n        smallTextFont = Font.font(\"Arial\", FontWeight.BOLD, FontPosture.REGULAR, smallFontSize);\n\n        FXFontMetrics metrics = new FXFontMetrics(font);\n        FXFontMetrics translateMetrics = new FXFontMetrics(translateFont);\n        FXFontMetrics smallTextMetrics = new FXFontMetrics(smallTextFont);\n        final Group newTextGroup = new Group();\n        shadow.setOffsetX(metrics.getLineHeight() * shadow.getOffsetX() * 0.003);\n        shadow.setOffsetY(metrics.getLineHeight() * shadow.getOffsetY() * 0.003);\n        shadow.setRadius(shadow.getRadius() * metrics.getLineHeight() * 0.0015);\n        newTextGroup.setEffect(shadow);\n        StackPane.setAlignment(newTextGroup, Pos.CENTER);\n        smallTextGroup = new Group();\n        DropShadow smallshadow = theme.getShadow().getDropShadow();\n        if (smallshadow == null) {\n            smallshadow = new DropShadow();\n        }\n        smallshadow.setOffsetX(smallTextMetrics.getLineHeight() * shadow.getOffsetX() * 0.03);\n        smallshadow.setOffsetY(smallTextMetrics.getLineHeight() * shadow.getOffsetY() * 0.03);\n        smallshadow.setRadius(shadow.getRadius() * smallTextMetrics.getLineHeight() * 0.015);\n        smallTextGroup.setEffect(smallshadow);\n\n        if (curDisplayable instanceof BiblePassage) {\n            if (QueleaProperties.get().getSmallBibleTextPositionV().equalsIgnoreCase(\"top\")) {\n                if (QueleaProperties.get().getSmallBibleTextPositionH().equalsIgnoreCase(\"left\")) {\n                    StackPane.setAlignment(smallTextGroup, Pos.TOP_LEFT);\n                } else {\n                    StackPane.setAlignment(smallTextGroup, Pos.TOP_RIGHT);\n                }\n            } else {\n                if (QueleaProperties.get().getSmallBibleTextPositionH().equalsIgnoreCase(\"left\")) {\n                    StackPane.setAlignment(smallTextGroup, Pos.BOTTOM_LEFT);\n                } else {\n                    StackPane.setAlignment(smallTextGroup, Pos.BOTTOM_RIGHT);\n                }\n            }\n        } else {\n            if (QueleaProperties.get().getSmallSongTextPositionV().equalsIgnoreCase(\"top\")) {\n                if (QueleaProperties.get().getSmallSongTextPositionH().equalsIgnoreCase(\"left\")) {\n                    StackPane.setAlignment(smallTextGroup, Pos.TOP_LEFT);\n                } else {\n                    StackPane.setAlignment(smallTextGroup, Pos.TOP_RIGHT);\n                }\n            } else {\n                if (QueleaProperties.get().getSmallSongTextPositionH().equalsIgnoreCase(\"left\")) {\n                    StackPane.setAlignment(smallTextGroup, Pos.BOTTOM_LEFT);\n                } else {\n                    StackPane.setAlignment(smallTextGroup, Pos.BOTTOM_RIGHT);\n                }\n            }\n        }\n        getCanvas().getChildren().removeIf(node -> node instanceof Group);\n\n        getCanvas().getChildren().add(newTextGroup);\n        if (curDisplayable instanceof BiblePassage && QueleaProperties.get().getSmallBibleTextShow()) {\n            getCanvas().getChildren().add(smallTextGroup);\n        } else if (curDisplayable instanceof SongDisplayable && QueleaProperties.get().getSmallSongTextShow()) {\n            getCanvas().getChildren().add(smallTextGroup);\n        }\n        getCanvas().pushLogoNoticeToFront();\n\n        int y = 0;\n        ParallelTransition paintTransition = new ParallelTransition();\n        for (LyricLine line : newText) {\n            FXFontMetrics loopMetrics;\n            if (line.isTranslateLine()) {\n                loopMetrics = translateMetrics;\n            } else {\n                loopMetrics = metrics;\n            }\n            FormattedText t;\n            if (QueleaProperties.get().getTextBackgroundEnable()) {\n                t = new FormattedText(\" \" + line.getLine() + \" \");\n                t.setBackground(new Background(new BackgroundFill(QueleaProperties.get().getTextBackgroundColor(), CornerRadii.EMPTY, Insets.EMPTY)));\n            } else {\n                t = new FormattedText(line.getLine());\n            }\n            if (line.isTranslateLine()) {\n                t.setFont(translateFont);\n            } else {\n                t.setFont(font);\n            }\n\n            setPositionX(t, loopMetrics, line.getLine(), curDisplayable instanceof BiblePassage);\n            t.setLayoutY(y);\n\n            Color lineColor;\n            if (line.isTranslateLine()) {\n                lineColor = theme.getTranslateFontPaint();\n            } else {\n                lineColor = theme.getFontPaint();\n            }\n            if (lineColor == null) {\n                LOGGER.log(Level.WARNING, \"Warning: Font Color not initialised correctly. Using default font colour.\");\n                lineColor = ThemeDTO.DEFAULT_FONT_COLOR;\n            }\n            t.setFill(lineColor);\n            y += loopMetrics.getLineHeight() + getLineSpacing();\n\n            newTextGroup.getChildren().add(t);\n        }\n\n        int sy = 0;\n        for (String stext : smallText) {\n            stext = stext.trim();\n            FormattedText ft = new FormattedText(stext);\n            ft.setFont(smallTextFont);\n            ft.setFill(theme.getFontPaint());\n            if (curDisplayable instanceof BiblePassage) {\n                if (QueleaProperties.get().getSmallBibleTextPositionH().equalsIgnoreCase(\"right\")) {\n                    ft.setLayoutX(getCanvas().getWidth() - smallTextMetrics.computeStringWidth(stext));\n                }\n                if (QueleaProperties.get().getSmallBibleTextPositionV().equalsIgnoreCase(\"top\")) {\n                    ft.setLayoutY(getCanvas().getHeight() - sy);\n                } else {\n                    ft.setLayoutY(sy);\n                }\n            } else {\n                if (QueleaProperties.get().getSmallSongTextPositionH().equalsIgnoreCase(\"right\")) {\n                    ft.setLayoutX(getCanvas().getWidth() - smallTextMetrics.computeStringWidth(stext));\n                }\n                if (QueleaProperties.get().getSmallSongTextPositionV().equalsIgnoreCase(\"top\")) {\n                    ft.setLayoutY(getCanvas().getHeight() - sy);\n                } else {\n                    ft.setLayoutY(sy);\n                }\n            }\n            smallTextGroup.getChildren().add(ft);\n            sy += smallTextMetrics.getLineHeight() + 2;\n        }\n        if (!paintTransition.getChildren().isEmpty()) {\n            paintTransition.play();\n        }\n        textGroup = newTextGroup;\n        StackPane.setMargin(textGroup, new Insets(10));\n        StackPane.setAlignment(textGroup, DisplayPositionSelector.getPosFromIndex(theme.getTextPosition()));\n\n        StackPane.setMargin(smallTextGroup, new Insets(5));\n\n        if (getCanvas().isCleared() && !getLastClearedState()) {\n            setLastClearedState(true);\n            FadeTransition t = new FadeTransition(Duration.millis(QueleaProperties.get().getClearFadeDuration()), textGroup);\n            FadeTransition t2 = new FadeTransition(Duration.millis(QueleaProperties.get().getClearFadeDuration()), smallTextGroup);\n            t.setToValue(0);\n            t.play();\n            t2.setToValue(0);\n            t2.play();\n        } else if (getCanvas().isCleared()) {\n            textGroup.setOpacity(0);\n            smallTextGroup.setOpacity(0);\n        } else if (!getCanvas().isCleared() && getLastClearedState()) {\n            setLastClearedState(false);\n            FadeTransition t = new FadeTransition(Duration.millis(QueleaProperties.get().getClearFadeDuration()), textGroup);\n            FadeTransition t2 = new FadeTransition(Duration.millis(QueleaProperties.get().getClearFadeDuration()), smallTextGroup);\n            t.setFromValue(0);\n            t.setToValue(1);\n            t.play();\n            t2.setFromValue(0);\n            t2.setToValue(1);\n            t2.play();\n        } else if (QueleaProperties.get().getUseSlideTransition()\n                && !getCanvas().isBlacked() && !getCanvas().isCleared()\n                && !getCanvas().isShowingLogo()\n                && getCanvas().equals(QueleaApp.get().getProjectionWindow().getCanvas())) {\n            if (oldTextGroup != null) {\n                FadeTransition fadeOut = new FadeTransition(Duration.millis(QueleaProperties.get().getSlideTransitionOutDuration()), oldTextGroup);\n                fadeOut.setFromValue(1.0);\n                fadeOut.setToValue(0.0);\n                fadeOut.setOnFinished(e -> {\n                    if (getCanvas().getChildren().contains(oldTextGroup)) {\n                        getCanvas().getChildren().remove(oldTextGroup);\n                        oldTextGroup = null;\n                    }\n                });\n                getCanvas().getChildren().add(oldTextGroup);\n                fadeOut.play();\n            }\n            if (oldTextGroup == null && Arrays.deepToString(oldText).equals(\"[]\") || newItem) {\n                FadeTransition fadeIn = new FadeTransition(Duration.millis(QueleaProperties.get().getSlideTransitionInDuration()), textGroup);\n                fadeIn.setFromValue(0.0);\n                fadeIn.setToValue(1.0);\n                fadeIn.play();\n            }\n        }\n    }\n\n    private void setPositionX(FormattedText t, FXFontMetrics metrics, String line, boolean biblePassage) {\n        Utils.checkFXThread();\n        String strippedLine = line.replaceAll(\"\\\\<\\\\/?sup\\\\>\", \"\");\n        double width = metrics.computeStringWidth(strippedLine);\n        double leftOffset = 0;\n        double centreOffset = (getCanvas().getWidth() - width) / 2;\n        double rightOffset = (getCanvas().getWidth() - width);\n        if (theme.getTextAlignment() == -1) {\n            t.setLayoutX(leftOffset);\n        } else if (theme.getTextAlignment() == 0) {\n            t.setLayoutX(centreOffset);\n        } else if (theme.getTextAlignment() == 1) {\n            t.setLayoutX(rightOffset);\n        }\n    }\n\n    static int iter = 0;\n\n    /**\n     * Set the theme of this getCanvas().\n     * <p/>\n     *\n     * @param theme the theme to place on the getCanvas().\n     */\n    @Override\n    public void setTheme(ThemeDTO theme) {\n        if (theme == null) {\n            theme = ThemeDTO.DEFAULT_THEME;\n        }\n        this.theme = theme;\n        Image image = null;\n        ColorAdjust colourAdjust = null;\n        final ImageView newImageView = getCanvas().getNewImageView();\n        if (theme.getBackground() instanceof ImageBackground) {\n            image = ((ImageBackground) theme.getBackground()).getImage();\n        } else if (theme.getBackground() instanceof ColourBackground) {\n            Color color = ((ColourBackground) theme.getBackground()).getColour();\n            image = Utils.getImageFromColour(color);\n        } else if (theme.getBackground() instanceof VideoBackground) {\n            var uri = ((VideoBackground) theme.getBackground()).getVideoFile().toURI();\n            if(!Objects.equals(vidDisplay.getUri(), uri)) {\n                vidDisplay.stop();\n                vidDisplay.setURI(uri);\n                vidDisplay.play();\n            }\n            newImageView.imageProperty().bind(vidDisplay.imageProperty());\n\n        } else {\n            LOGGER.log(Level.SEVERE, \"Bug: Unhandled theme background case, trying to use default background: \" + theme.getBackground(), new RuntimeException(\"DEBUG EXCEPTION FOR STACK TRACE\"));\n            image = Utils.getImageFromColour(ThemeDTO.DEFAULT_BACKGROUND.getColour());\n        }\n\n        Node newBackground;\n        newImageView.setFitHeight(getCanvas().getHeight());\n        newImageView.setFitWidth(getCanvas().getWidth());\n        if (image != null) {\n            newImageView.setImage(image);\n        }\n\n//        if (colourAdjust != null) {\n//            newImageView.setEffect(colourAdjust);\n//        }\n        getCanvas().getChildren().add(newImageView);\n        newBackground = newImageView;\n        getCanvas().getChildren().remove(getCanvas().getCanvasBackground());\n        getCanvas().setOpacity(1);\n        getCanvas().setCanvasBackground(newBackground);\n    }\n\n    /**\n     * Get the theme currently in use on the getCanvas().\n     * <p/>\n     *\n     * @return the current theme\n     */\n    @Override\n    public ThemeDTO getTheme() {\n        return theme;\n    }\n\n    @Override\n    public void requestFocus() {\n    }\n\n    /**\n     * Set whether the first of each line should be capitalised.\n     * <p/>\n     *\n     * @param val true if the first character should be, false otherwise.\n     */\n    @Override\n    public void setCapitaliseFirst(boolean val) {\n        this.capitaliseFirst = val;\n    }\n\n    /**\n     * Take the raw text and format it into a number of lines nicely, where the\n     * lines aren't more than the maximum length.\n     * <p/>\n     *\n     * @return processed, sanctified text that can be displayed nicely.\n     */\n    private List<LyricLine> sanctifyText(String[] linesArr, String[] translationArr) {\n        List<LyricLine> finalLines = new ArrayList<>();\n        int translationOffset = 0;\n        for (int i = 0; i < linesArr.length; i++) {\n            finalLines.add(new LyricLine(linesArr[i]));\n            if (new LineTypeChecker(linesArr[i]).getLineType() == Type.NONBREAK) {\n                continue;\n            }\n            if (translationArr != null && i < translationArr.length) {\n                while (i + translationOffset < translationArr.length && new LineTypeChecker(translationArr[i + translationOffset]).getLineType() != Type.NORMAL) {\n                    translationOffset++;\n                }\n                if (i + translationOffset < translationArr.length && new LineTypeChecker(translationArr[i + translationOffset]).getLineType() == Type.NORMAL) {\n                    finalLines.add(new LyricLine(true, translationArr[i + translationOffset]));\n                }\n            }\n        }\n\n        List<LyricLine> ret = new ArrayList<>();\n        int maxLength = QueleaProperties.get().getMaxChars();\n        for (LyricLine line : finalLines) {\n            if ((translationArr != null && translationArr.length > 0)) {\n                ret.add(line);\n            } else {\n                List<String> splits = splitLine(line.getLine(), maxLength);\n                for (String split : splits) {\n                    ret.add(new LyricLine(split));\n                }\n            }\n        }\n        return ret;\n    }\n\n    /**\n     * Given a line of any length, sensibly split it up into several lines.\n     * <p/>\n     *\n     * @param line the line to split.\n     * @return the split line (or the unaltered line if it is less than or equal\n     * to the allowed length.\n     */\n    private List<String> splitLine(String line, int maxLength) {\n        List<String> sections = new ArrayList<>();\n        if (line.length() > maxLength) {\n            if (containsNotAtEnd(line, \";\")) {\n                for (String s : splitMiddle(line, ';')) {\n                    sections.addAll(splitLine(s, maxLength));\n                }\n            } else if (containsNotAtEnd(line, \",\")) {\n                for (String s : splitMiddle(line, ',')) {\n                    sections.addAll(splitLine(s, maxLength));\n                }\n            } else if (containsNotAtEnd(line, \" \")) {\n                for (String s : splitMiddle(line, ' ')) {\n                    sections.addAll(splitLine(s, maxLength));\n                }\n            } else {\n                sections.addAll(splitLine(new StringBuilder(line).insert(line.length() / 2, \" \").toString(), maxLength));\n            }\n        } else {\n            line = line.trim();\n            if (capitaliseFirst && QueleaProperties.get().checkCapitalFirst()) {\n                line = Utils.capitaliseFirst(line);\n            }\n            sections.add(line);\n        }\n        return sections;\n    }\n\n    /**\n     * Determine the largest font size we can safely use for every section of a\n     * text displayable.\n     * <p>\n     *\n     * @param displayable the displayable to check.\n     * @return the font size to use\n     */\n    private double getUniformFontSize(TextDisplayable displayable) {\n        if (!QueleaProperties.get().getUseUniformFontSize()) {\n            return -1;\n        }\n\n        // Retrieve and scale the max font size for this canvas\n        double maxFontSizeForCanvas = QueleaProperties.get().getMaxFontSize();\n        maxFontSizeForCanvas *= canvasScalingFactor();\n\n        int width = (int) (getCanvas().getWidth() * QueleaProperties.get().getLyricWidthBounds());\n        int height = (int) (getCanvas().getHeight() * QueleaProperties.get().getLyricHeightBounds());\n\n        if (displayable instanceof BiblePassage) {\n            height *= 1 - QueleaProperties.get().getSmallBibleTextSize();\n        } else {\n            height *= 1 - QueleaProperties.get().getSmallSongTextSize();\n        }\n\n        Double cachedSize = displayable.getCachedUniformFontSize(new Dimension(width, height));\n        if (cachedSize != null) {\n            return cachedSize;\n        }\n        Font font = theme.getFont();\n        font = Font.font(font.getName(),\n                theme.isBold() ? FontWeight.BOLD : FontWeight.NORMAL,\n                theme.isItalic() ? FontPosture.ITALIC : FontPosture.REGULAR,\n                maxFontSizeForCanvas);\n        double fontSize = Double.POSITIVE_INFINITY;\n        for (int i = 0; i < displayable.getSections().length; i++) {\n            TextSection section = displayable.getSections()[i];\n            String[] textArr;\n            textArr = section.getText(false, false);\n            List<LyricLine> processedText;\n            double newSize;\n            if (displayable instanceof BiblePassage) {\n                WrapTextResult result = normalWrapText(font, textArr[0], width, height);\n                if (result.getFontSize() < fontSize) {\n                    fontSize = result.getFontSize();\n                }\n            } else {\n                String[] translationArr = null;\n                String translationLyrics = ((SongDisplayable) displayable).getCurrentTranslationSection(i);\n                if (translationLyrics != null) {\n                    translationArr = translationLyrics.split(\"\\n\");\n                }\n                processedText = sanctifyText(textArr, translationArr);\n                newSize = pickFontSize(font, processedText, width, height);\n                if (newSize < fontSize) {\n                    fontSize = newSize;\n                }\n            }\n        }\n        if (fontSize == Double.POSITIVE_INFINITY) {\n            fontSize = -1;\n        }\n        displayable.setCachedUniformFontSize(new Dimension(width, height), fontSize);\n        return fontSize;\n    }\n\n    @Override\n    public void setText(TextDisplayable displayable, int index) {\n        boolean fade = curDisplayable != displayable;\n        double uniformFontSize = getUniformFontSize(displayable);\n        curDisplayable = displayable;\n        String[] bigText;\n        bigText = displayable.getSections()[index].getText(false, false);\n        String[] translationArr = null;\n        if (displayable instanceof SongDisplayable) {\n            String translationText = ((SongDisplayable) displayable).getCurrentTranslationSection(index);\n            if (translationText != null) {\n                translationArr = translationText.split(\"\\n\");\n            }\n        }\n\n        String[] smallText = displayable.getSections()[index].getSmallText();\n        if (QueleaProperties.get().getSmallSongTextShowOnSlides().equals(\"first\") && index > 0) {\n            smallText = new String[0];\n        }\n        if (QueleaProperties.get().getSmallSongTextShowOnSlides().equals(\"last\") && index < displayable.getSections().length - 1) {\n            smallText = new String[0];\n        }\n\n        setText(bigText, translationArr, smallText, fade, uniformFontSize);\n    }\n\n    /**\n     * Set the text to appear on the getCanvas(). The lines will be\n     * automatically wrapped and if the text is too large to fit on the screen\n     * in the current font, the size will be decreased until all the text fits.\n     * <p/>\n     *\n     * @param text         an array of the lines to display on the canvas, one entry in\n     *                     the array is one line.\n     * @param translations the translation to use for the current section, or\n     *                     null if none should be used.\n     * @param smallText    an array of the small lines to be displayed on the\n     *                     getCanvas().\n     * @param fade         true if the text should fade, false otherwise.\n     * @param fontSize     the font size to use to draw this text.\n     */\n    @Override\n    public void setText(String[] text, String[] translations, String[] smallText, boolean fade, double fontSize) {\n        if (text == null) {\n            text = new String[0];\n        }\n        if (smallText == null) {\n            smallText = new String[0];\n        }\n        if (translations == null) {\n            translations = new String[0];\n        }\n        this.text = Arrays.copyOf(text, text.length);\n        this.translations = Arrays.copyOf(translations, translations.length);\n        this.smallText = Arrays.copyOf(smallText, smallText.length);\n        draw(curDisplayable, fontSize);\n    }\n\n    /**\n     * Get the text currently set to appear on the getCanvas(). The text may or\n     * may not be shown depending on whether the canvas is blacked or cleared.\n     * <p/>\n     *\n     * @return the current text.\n     */\n    public String[] getText() {\n        return Arrays.copyOf(text, text.length);\n    }\n\n    @Override\n    public void draw(Displayable displayable) {\n        draw(displayable, -1);\n    }\n\n    public void draw(Displayable displayable, double fontSize) {\n        drawText(fontSize, displayable instanceof BiblePassage);\n        if (getCanvas().getCanvasBackground() instanceof ImageView) {\n            ImageView imgBackground = (ImageView) getCanvas().getCanvasBackground();\n            imgBackground.setFitHeight(getCanvas().getHeight());\n            imgBackground.setFitWidth(getCanvas().getWidth());\n        } else if (getCanvas().getCanvasBackground() != null) {\n            LOGGER.log(Level.WARNING, \"BUG: Unrecognised image background - \" + getCanvas().getCanvasBackground().getClass(), new RuntimeException(\"DEBUG EXCEPTION\"));\n        }\n    }\n\n    @Override\n    public void clear() {\n        if (getCanvas().getChildren() != null) {\n            getCanvas().clearNonPermanentChildren();\n        }\n        setTheme(ThemeDTO.DEFAULT_THEME);\n        eraseText();\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/lyrics/LyricListCell.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n *\n * This program is free software: you can redistribute it and/or modify it under\n * the terms of the GNU General Public License as published by the Free Software\n * Foundation, either version 3 of the License, or (at your option) any later\n * version.\n *\n * This program is distributed in the hope that it will be useful, but WITHOUT\n * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\n * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License along with\n * this program. If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.lyrics;\n\nimport javafx.beans.value.ObservableValue;\nimport javafx.scene.control.ListCell;\nimport javafx.scene.input.MouseEvent;\nimport javafx.scene.layout.VBox;\nimport javafx.scene.paint.Color;\nimport javafx.scene.text.Font;\nimport javafx.scene.text.FontWeight;\nimport javafx.scene.text.Text;\nimport org.quelea.data.displayable.TextSection;\nimport org.quelea.services.utils.QueleaProperties;\n\n/**\n * List cell for SelectLyricsList\n *\n * @author Michael\n */\npublic class LyricListCell extends ListCell<TextSection> {\n\n    private final VBox layout;\n    private final Text header;\n    private final Text lyrics;\n    private boolean selected, focused;\n    private SelectLyricsList selectLyricsList;\n\n    public LyricListCell(SelectLyricsList sll) {\n        selectLyricsList = sll;\n        layout = new VBox(3);\n        header = new Text();\n        header.setFont(Font.font(\"Verdana\", FontWeight.BOLD, 11.5));\n        lyrics = new Text();\n        lyrics.getStyleClass().add(\"text\");\n        layout.getChildren().addAll(header, lyrics);\n//        lyrics.setFill(Color.BLACK);\n        selectedProperty().addListener((ObservableValue<? extends Boolean> observable, Boolean oldValue, Boolean newValue) -> {\n            selected = newValue;\n            updateState();\n        });\n        setOnMouseEntered((MouseEvent t) -> {\n            updateState();\n        });\n        setOnMouseExited((MouseEvent t) -> {\n            updateState();\n        });\n        focused = sll.focusedProperty().get();\n        sll.focusedProperty().addListener((ObservableValue<? extends Boolean> observable, Boolean oldValue, Boolean newValue) -> {\n            focused = newValue;\n            updateState();\n        });\n    }\n\n    @Override\n    public void updateItem(TextSection section, boolean empty) {\n        super.updateItem(section, empty);\n        if (empty) {\n            setText(null);\n            setGraphic(null);\n        } else {\n            setContent(section);\n        }\n    }\n\n    private void setContent(TextSection section) {\n        setText(null);\n        String[] text = section.getText(false, false);\n        StringBuilder builder = new StringBuilder();\n        final boolean oneLineMode = QueleaProperties.get().getOneLineMode();\n        for (String str : text) {\n            str = FormattedText.stripFormatTags(str);\n            builder.append(str);\n            if (oneLineMode) {\n                builder.append(\" \");\n            } else {\n                builder.append(\"\\n\");\n            }\n        }\n        String str = builder.toString().trim();\n        if (!oneLineMode) {\n            lyrics.wrappingWidthProperty().bind(selectLyricsList.widthProperty().subtract(15));\n        }\n        lyrics.setText(str);\n        String title = section.getTitle();\n        if (title == null || title.isEmpty()) {\n            layout.getChildren().remove(header);\n        } else {\n            if (!layout.getChildren().contains(header)) {\n                layout.getChildren().add(0, header);\n            }\n            header.setText(section.getTitle());\n            if (section.getTitle().toLowerCase().startsWith(\"chorus\")) {\n                header.setFill(QueleaProperties.get().getUseDarkTheme() ? Color.RED : Color.DARKRED);\n            } else if (section.getTitle().toLowerCase().startsWith(\"verse\")) {\n                header.setFill(QueleaProperties.get().getUseDarkTheme() ? Color.LIGHTBLUE : Color.DARKBLUE);\n            } else {\n                header.setFill(QueleaProperties.get().getUseDarkTheme() ? Color.LIGHTGREEN : Color.DARKGREEN);\n            }\n        }\n        lyrics.getStyleClass().add(\"cell-text\");\n        setGraphic(layout);\n    }\n\n    private void updateState() {\n        if (!QueleaProperties.get().getUseDarkTheme()) {\n            if (selected && focused) {\n                lyrics.setFill(Color.WHITE);\n                setStyle(\"-fx-background-color:#0093ff;\");\n            } else if (selected) {\n                lyrics.setFill(Color.BLACK);\n                setStyle(\"-fx-background-color:#D3D3D3;\");\n            } else {\n                lyrics.setFill(Color.BLACK);\n                setStyle(\"-fx-background-color:none;\");\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/lyrics/LyricsTextArea.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.lyrics;\n\nimport javafx.application.Platform;\nimport javafx.beans.value.ObservableValue;\nimport javafx.scene.control.ContextMenu;\nimport javafx.scene.control.MenuItem;\nimport javafx.scene.input.Clipboard;\nimport javafx.scene.input.DataFormat;\nimport javafx.scene.layout.StackPane;\nimport org.fxmisc.flowless.VirtualizedScrollPane;\nimport org.fxmisc.richtext.InlineCssTextArea;\nimport org.fxmisc.undo.UndoManagerFactory;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.LineTypeChecker;\nimport org.quelea.services.utils.LineTypeChecker.Type;\nimport org.quelea.services.utils.QueleaProperties;\n\n/**\n * @author Michael\n */\npublic class LyricsTextArea extends StackPane {\n\n    private InlineCssTextArea textArea;\n\n    public LyricsTextArea() {\n        textArea = new InlineCssTextArea();\n        ContextMenu contextMenu = new ContextMenu();\n        Clipboard systemClipboard = Clipboard.getSystemClipboard();\n        MenuItem paste = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"paste.label\"));\n        contextMenu.setOnShown(e -> {\n            paste.setDisable(!systemClipboard.hasContent(DataFormat.PLAIN_TEXT));\n        });\n\n        paste.setOnAction(e -> {\n            String clipboardText = systemClipboard.getString();\n            textArea.insertText(textArea.getCaretPosition(), clipboardText);\n        });\n\n        contextMenu.getItems().add(paste);\n        textArea.setContextMenu(contextMenu);\n        textArea.textProperty().addListener((ObservableValue<? extends String> observable, String oldValue, String newValue) -> {\n            Platform.runLater(this::refreshStyle);\n        });\n\n        textArea.setStyle(\"-fx-font-family: monospace; -fx-font-size: 10pt;\");\n        textArea.setUndoManager(UndoManagerFactory.zeroHistorySingleChangeUM(textArea.richChanges()));\n        getChildren().add(new VirtualizedScrollPane<>(textArea));\n        textArea.getStyleClass().add(\"text-area\");\n    }\n\n    public InlineCssTextArea getTextArea() {\n        return textArea;\n    }\n\n    public void refreshStyle() {\n        setStyles(textArea.getText());\n    }\n\n    private String[] oldLines;\n\n    private void setStyles(String text) {\n        String[] lines = text.split(\"\\n\");\n        int charPos = 0;\n        for (int i = 0; i < lines.length; i++) {\n            String line = lines[i];\n            String oldLine = null;\n            if (oldLines != null && i < oldLines.length) {\n                oldLine = oldLines[i];\n            }\n            if (new LineTypeChecker(line).getLineType() == Type.TITLE) {\n                textArea.clearStyle(charPos, charPos + line.length());\n                if (QueleaProperties.get().getUseDarkTheme()) {\n                    textArea.setStyle(charPos, charPos + line.length(), \"-fx-fill: rgb(50,160,255); -fx-font-weight: bold;\");\n                } else {\n                    textArea.setStyle(charPos, charPos + line.length(), \"-fx-fill: blue; -fx-font-weight: bold;\");\n                }\n            } else if (new LineTypeChecker(line).getLineType() == Type.CHORDS) {\n                textArea.clearStyle(charPos, charPos + line.length());\n                if (QueleaProperties.get().getUseDarkTheme()) {\n                    textArea.setStyle(charPos, charPos + line.length(), \"-fx-fill: rgb(200,200,200); -fx-font-style: italic;\");\n                } else {\n                    textArea.setStyle(charPos, charPos + line.length(), \"-fx-fill: grey; -fx-font-style: italic;\");\n                }\n            } else if (new LineTypeChecker(line).getLineType() == Type.NONBREAK) {\n                textArea.clearStyle(charPos, charPos + line.length());\n                textArea.setStyle(charPos, charPos + line.length(), \"-fx-fill: red; -fx-font-weight: bold;\");\n            } else if (new LineTypeChecker(line).getLineType() != new LineTypeChecker(oldLine).getLineType()) {\n                textArea.clearStyle(charPos, charPos + line.length());\n                textArea.setStyle(charPos, charPos + line.length(), \"\");\n            }\n            charPos += line.length() + 1;\n        }\n        oldLines = lines;\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/lyrics/NewTranslationDialog.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n *\n * This program is free software: you can redistribute it and/or modify it under\n * the terms of the GNU General Public License as published by the Free Software\n * Foundation, either version 3 of the License, or (at your option) any later\n * version.\n *\n * This program is distributed in the hope that it will be useful, but WITHOUT\n * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\n * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License along with\n * this program. If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.lyrics;\n\nimport java.util.List;\nimport javafx.beans.value.ChangeListener;\nimport javafx.beans.value.ObservableValue;\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport javafx.geometry.Insets;\nimport javafx.geometry.Pos;\nimport javafx.scene.Scene;\nimport javafx.scene.control.Button;\nimport javafx.scene.control.Label;\nimport javafx.scene.control.TextField;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.layout.HBox;\nimport javafx.scene.layout.Priority;\nimport javafx.scene.layout.Region;\nimport javafx.scene.layout.StackPane;\nimport javafx.scene.layout.VBox;\nimport javafx.stage.Modality;\nimport javafx.stage.Stage;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\n\n/**\n * Simple dialog to get the name of a new translation from the user.\n *\n * @author Michael\n */\npublic class NewTranslationDialog extends Stage {\n\n    private static final NewTranslationDialog dialog = new NewTranslationDialog();\n    private final TextField nameField;\n    private final Button okButton;\n    private final Button cancelButton;\n    private List<String> existingNames;\n    /**\n     * Field used to set if the ok button was pressed.\n     */\n    private boolean ok;\n\n    /**\n     * Create a new NewTranslationDialog.\n     */\n    private NewTranslationDialog() {\n        initModality(Modality.APPLICATION_MODAL);\n        setTitle(LabelGrabber.INSTANCE.getLabel(\"new.translation.title\"));\n        Utils.addIconsToStage(this);\n        StackPane root = new StackPane();\n        VBox rootVBox = new VBox();\n        StackPane.setMargin(rootVBox, new Insets(10));\n        root.getChildren().add(rootVBox);\n        rootVBox.setSpacing(10);\n        Label label = new Label(LabelGrabber.INSTANCE.getLabel(\"enter.translation.name.label\"));\n        rootVBox.getChildren().add(label);\n        nameField = new TextField();\n        nameField.textProperty().addListener(new ChangeListener<String>() {\n\n            @Override\n            public void changed(ObservableValue<? extends String> ov, String t, String newStr) {\n                if (newStr.isEmpty()) {\n                    okButton.setDisable(true);\n                    return;\n                }\n                for (String str : existingNames) {\n                    if (newStr.trim().equalsIgnoreCase(str.trim())) {\n                        okButton.setDisable(true);\n                        return;\n                    }\n                }\n                okButton.setDisable(false);\n            }\n        });\n        rootVBox.getChildren().add(nameField);\n        StackPane buttonWrapperPane = new StackPane();\n        HBox buttonPane = new HBox(5);\n        buttonPane.setAlignment(Pos.CENTER);\n        okButton = new Button(LabelGrabber.INSTANCE.getLabel(\"ok.button\"), new ImageView(new Image(\"file:icons/tick.png\", 16, 16, true, true)));\n        okButton.setDisable(true);\n        okButton.setDefaultButton(true);\n        okButton.setOnAction(new EventHandler<ActionEvent>() {\n\n            @Override\n            public void handle(ActionEvent t) {\n                ok = true;\n                hide();\n            }\n        });\n        buttonPane.getChildren().add(okButton);\n        cancelButton = new Button(LabelGrabber.INSTANCE.getLabel(\"cancel.button\"), new ImageView(new Image(\"file:icons/cross.png\", 16, 16, true, true)));\n        cancelButton.setOnAction(new EventHandler<ActionEvent>() {\n\n            @Override\n            public void handle(ActionEvent t) {\n                ok = false;\n                hide();\n            }\n        });\n        buttonPane.getChildren().add(cancelButton);\n        buttonWrapperPane.getChildren().add(buttonPane);\n        Region spacer = new Region();\n        VBox.setVgrow(buttonWrapperPane, Priority.ALWAYS);\n        rootVBox.getChildren().add(spacer);\n        rootVBox.getChildren().add(buttonWrapperPane);\n        Scene scene = new Scene(root);\n        if (QueleaProperties.get().getUseDarkTheme()) {\n            scene.getStylesheets().add(\"org/modena_dark.css\");\n        }\n        setScene(scene);\n        setResizable(false);\n    }\n\n    /**\n     * Pop up the dialog and get the name of the translation.\n     *\n     * @param existingNames names of translations that already exist.\n     * @return the name of the new translation.\n     */\n    public static String getTranslationName(List<String> existingNames) {\n        dialog.existingNames = existingNames;\n        dialog.nameField.clear();\n        dialog.okButton.setDisable(true);\n        dialog.ok = false;\n        dialog.showAndWait();\n        if (dialog.ok) {\n            return dialog.nameField.getText();\n        } else {\n            return null;\n        }\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/lyrics/SelectLyricsList.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n *\n * This program is free software: you can redistribute it and/or modify it under\n * the terms of the GNU General Public License as published by the Free Software\n * Foundation, either version 3 of the License, or (at your option) any later\n * version.\n *\n * This program is distributed in the hope that it will be useful, but WITHOUT\n * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\n * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License along with\n * this program. If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.lyrics;\n\nimport java.util.ArrayList;\nimport java.util.List;\nimport javafx.scene.Cursor;\nimport javafx.scene.ImageCursor;\nimport javafx.scene.control.ListCell;\nimport javafx.scene.control.ListView;\nimport javafx.scene.image.Image;\nimport javafx.scene.input.KeyEvent;\nimport javafx.scene.input.MouseEvent;\nimport org.quelea.data.displayable.TextSection;\nimport org.quelea.services.utils.QueleaProperties;\n\n/**\n * A list displaying the different sections in the song.\n * <p/>\n * @author Michael\n */\npublic class SelectLyricsList extends ListView<TextSection> {\n\n    private static final Cursor Q_CURSOR = new ImageCursor(new Image(\"file:icons/edit32.png\"), 6, 27);\n    private boolean oneLineMode;\n    private boolean showQuickEdit;\n    private int quickEditIndex;\n\n    /**\n     * Create a new schedule list.\n     */\n    public SelectLyricsList() {\n        oneLineMode = QueleaProperties.get().getOneLineMode();\n        setOnMouseMoved((MouseEvent t) -> {\n            if (showQuickEdit && (t.isShiftDown() || t.isControlDown()) && !itemsProperty().get().isEmpty()) {\n                setCursor(Q_CURSOR);\n            } else {\n                setCursor(Cursor.DEFAULT);\n            }\n            getScene().setOnKeyPressed((KeyEvent t1) -> {\n                if (showQuickEdit && (t1.isShiftDown() || t1.isControlDown()) && !itemsProperty().get().isEmpty()) {\n                    setCursor(Q_CURSOR);\n                } else {\n                    setCursor(Cursor.DEFAULT);\n                }\n            });\n            getScene().setOnKeyReleased((KeyEvent t1) -> {\n                if (showQuickEdit && (t1.isShiftDown() || t1.isControlDown()) && !itemsProperty().get().isEmpty()) {\n                    setCursor(Q_CURSOR);\n                } else {\n                    setCursor(Cursor.DEFAULT);\n                }\n            });\n        });\n        setCellFactory((ListView<TextSection> p) -> {\n            ListCell<TextSection> cell = new LyricListCell(this);\n            cell.addEventFilter(MouseEvent.MOUSE_PRESSED, event -> {\n                if (event.isControlDown() || event.isShiftDown()) {\n                    if (!cell.isEmpty()) {\n                        quickEditIndex = getItems().indexOf(cell.getItem());\n                        event.consume();\n                    }\n                }\n            });\n            return cell;\n        });\n    }\n\n    public int getQuickEditIndex() {\n        return quickEditIndex;\n    }\n\n    public void setShowQuickEdit(boolean showQuickEdit) {\n        this.showQuickEdit = showQuickEdit;\n    }\n\n    /**\n     * Set whether this list should use one line mode.\n     * <p/>\n     * @param val true if it should be in one line mode, false otherwise.\n     */\n    public void setOneLineMode(boolean val) {\n        if (this.oneLineMode == val) {\n            return;\n        }\n        this.oneLineMode = val;\n        int selectedIndex = selectionModelProperty().get().getSelectedIndex();\n        List<TextSection> elements = new ArrayList<>(itemsProperty().get().size());\n        for (int i = 0; i < itemsProperty().get().size(); i++) {\n            elements.add(itemsProperty().get().get(i));\n        }\n        itemsProperty().get().clear();\n        for (TextSection section : elements) {\n            itemsProperty().get().add(section);\n        }\n        selectionModelProperty().get().select(selectedIndex);\n        scrollTo(selectedIndex);\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/lyrics/SelectLyricsPanel.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.lyrics;\n\nimport javafx.geometry.Orientation;\nimport javafx.scene.control.SplitPane;\nimport org.quelea.data.GlobalThemeStore;\nimport org.quelea.data.ThemeDTO;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.data.displayable.TextDisplayable;\nimport org.quelea.data.displayable.TextSection;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.windows.main.AbstractPanel;\nimport org.quelea.windows.main.DisplayCanvas;\nimport org.quelea.windows.main.DisplayCanvas.Priority;\nimport org.quelea.windows.main.DisplayableDrawer;\nimport org.quelea.windows.main.LivePreviewPanel;\nimport org.quelea.windows.main.MainPanel;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.windows.main.WordDrawer;\nimport org.quelea.windows.main.widgets.DisplayPreview;\nimport org.quelea.windows.stage.StageDrawer;\n\nimport java.util.logging.Logger;\n\n/**\n * The panel where the lyrics for different songs can be selected.\n * <p/>\n *\n * @author Michael\n */\npublic class SelectLyricsPanel extends AbstractPanel {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    private final SelectLyricsList lyricsList;\n    private final DisplayCanvas previewCanvas;\n    private final SplitPane splitPane;\n    private final LyricDrawer lyricDrawer;\n    private final StageDrawer stageDrawer;\n\n    /**\n     * Create a new lyrics panel.\n     * <p/>\n     *\n     * @param containerPanel the container panel this panel is contained within.\n     */\n    public SelectLyricsPanel(LivePreviewPanel containerPanel) {\n        lyricDrawer = new LyricDrawer();\n        stageDrawer = new StageDrawer();\n        splitPane = new SplitPane();\n        splitPane.setOrientation(Orientation.VERTICAL);\n        lyricsList = new SelectLyricsList();\n        previewCanvas = new DisplayCanvas(false, this::updateCanvas, Priority.LOW);\n        DisplayPreview preview = new DisplayPreview(previewCanvas);\n        splitPane.getItems().add(lyricsList);\n        splitPane.getItems().add(preview);\n        setCenter(splitPane);\n        registerDisplayCanvas(previewCanvas);\n        lyricsList.getSelectionModel().selectedItemProperty().addListener((ov, t1, t2) -> {\n            updateCanvas();\n        });\n        lyricsList.itemsProperty().addListener((ov, t1, t2) -> {\n            updateCanvas();\n        });\n//        \n    }\n\n    public void selectFirst() {\n        if (lyricsList.getItems().size() > 0) {\n            lyricsList.selectionModelProperty().get().clearAndSelect(0);\n        }\n    }\n\n    public void selectLast() {\n        if (lyricsList.getItems().size() > 0) {\n            lyricsList.selectionModelProperty().get().clearSelection();\n            lyricsList.selectionModelProperty().get().selectLast();\n        }\n    }\n\n    public void select(int index) {\n        if (index >= 0 && index < lyricsList.getItems().size()) {\n            lyricsList.selectionModelProperty().get().select(index);\n        }\n    }\n\n    /**\n     * Set one line mode on or off.\n     * <p/>\n     *\n     * @param on if one line mode should be turned on, false otherwise.\n     */\n    public void setOneLineMode(boolean on) {\n        lyricsList.setOneLineMode(on);\n    }\n\n    @Override\n    public void requestFocus() {\n        lyricsList.requestFocus();\n    }\n\n    /**\n     * Show a given text displayable on this panel.\n     * <p/>\n     *\n     * @param displayable the displayable to show.\n     * @param index       the index of the displayable to show.\n     */\n    public void showDisplayable(TextDisplayable displayable, int index) {\n        setCurrentDisplayable(displayable);\n        lyricsList.itemsProperty().get().clear();\n        lyricsList.setShowQuickEdit(displayable instanceof SongDisplayable);\n        for (TextSection section : displayable.getSections()) {\n            lyricsList.itemsProperty().get().add(section);\n        }\n        lyricsList.selectionModelProperty().get().select(index);\n        lyricsList.scrollTo(index);\n    }\n\n    /**\n     * Get the current displayed index.\n     * <p/>\n     *\n     * @return the current displayed index.\n     */\n    public int getIndex() {\n        return lyricsList.selectionModelProperty().get().getSelectedIndex();\n    }\n\n    /**\n     * Get the length of the item on this panel.\n     * <p/>\n     *\n     * @return the length of the item on this panel.\n     */\n    public int getSlideCount() {\n        return lyricsList.getItems().size();\n    }\n\n    /**\n     * Advances the current slide.\n     * <p/>\n     */\n    public void advance() {\n        int start = getIndex();\n        lyricsList.selectionModelProperty().get().selectNext();\n        updateCanvas();\n\n        int end = getIndex();\n        MainPanel qmp = QueleaApp.get().getMainWindow().getMainPanel();\n        boolean lastSongTest = qmp.getLivePanel().getDisplayable() == qmp.getSchedulePanel().getScheduleList().getItems().get(qmp.getSchedulePanel().getScheduleList().getItems().size() - 1).displayable();\n        if (start == end && QueleaProperties.get().getAdvanceOnLive() && QueleaProperties.get().getSongOverflow() && !lastSongTest) {\n            qmp.getPreviewPanel().goLive();\n        }\n    }\n\n    /**\n     * Moves to the previous slide.\n     * <p/>\n     */\n    public void previous() {\n        int start = getIndex();\n        lyricsList.selectionModelProperty().get().selectPrevious();\n        updateCanvas();\n\n        int end = getIndex();\n        MainPanel qmp = QueleaApp.get().getMainWindow().getMainPanel();\n        //Check to see if first song first verse\n        boolean fsfv = qmp.getSchedulePanel().getScheduleList().getItems().get(0).displayable() == qmp.getLivePanel().getDisplayable()\n                && (qmp.getLivePanel().getLyricsPanel().getLyricsList().getSelectionModel().getSelectedIndex() == 0);\n        if ((start == end || qmp.getLivePanel().getLyricsPanel().getLyricsList().getItems().size() == 1)\n                && QueleaProperties.get().getAdvanceOnLive() && QueleaProperties.get().getSongOverflow() && !fsfv) {\n            //Assuming preview panel is one ahead, and should be one behind\n            int index = qmp.getSchedulePanel().getScheduleList().getSelectionModel().getSelectedIndex();\n            if (qmp.getLivePanel().getDisplayable() == qmp.getSchedulePanel().getScheduleList().getItems().get(qmp.getSchedulePanel().getScheduleList().getItems().size() - 1).displayable()) {\n                index -= 1;\n            } else {\n                index -= 2;\n            }\n            if (index >= 0) {\n                qmp.getSchedulePanel().getScheduleList().getSelectionModel().clearAndSelect(index);\n                qmp.getPreviewPanel().selectLastLyric();\n                qmp.getPreviewPanel().goLive();\n                //qmp.getSchedulePanel().getScheduleList().getSelectionModel().clearAndSelect(index);\n\n            }\n        }\n    }\n\n    /**\n     * Get the lyrics list on this panel.\n     * <p/>\n     *\n     * @return the select lyrics list.\n     */\n    public SelectLyricsList getLyricsList() {\n        return lyricsList;\n    }\n\n    /**\n     * Clear the current panel.\n     */\n    @Override\n    public void removeCurrentDisplayable() {\n        super.removeCurrentDisplayable();\n        lyricsList.itemsProperty().get().clear();\n        lyricDrawer.clear();\n    }\n\n    /**\n     * Called to updateOnSizeChange the contents of the canvases when the list\n     * selection changes.\n     */\n    @Override\n    public void updateCanvas() {\n        int selectedIndex = lyricsList.selectionModelProperty().get().getSelectedIndex();\n        for (DisplayCanvas canvas : getCanvases()) {\n            WordDrawer drawer;\n            if (canvas.isStageView()) {\n                drawer = stageDrawer;\n            } else {\n                drawer = lyricDrawer;\n            }\n            drawer.setCanvas(canvas);\n            if (selectedIndex == -1 || selectedIndex >= lyricsList.itemsProperty().get().size()) {\n                drawer.setTheme(ThemeDTO.DEFAULT_THEME);\n                drawer.eraseText();\n                continue;\n            }\n            TextSection currentSection = lyricsList.itemsProperty().get().get(selectedIndex);\n            GlobalThemeStore themeStore = QueleaApp.get().getMainWindow().getGlobalThemeStore();\n\n            drawer.setTheme(themeStore.getTheme((TextDisplayable) getCurrentDisplayable(), currentSection));\n\n            drawer.setCapitaliseFirst(currentSection.shouldCapitaliseFirst());\n            drawer.setText((TextDisplayable) getCurrentDisplayable(), selectedIndex);\n        }\n    }\n\n    @Override\n    public int getCurrentIndex() {\n        return lyricsList.getSelectionModel().getSelectedIndex();\n    }\n\n    public SplitPane getSplitPane() {\n        return splitPane;\n    }\n\n    @Override\n    public DisplayableDrawer getDrawer(DisplayCanvas canvas) {\n        if (canvas.isStageView()) {\n            return stageDrawer;\n        } else {\n            return lyricDrawer;\n        }\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/lyrics/TranslatePanel.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n *\n * This program is free software: you can redistribute it and/or modify it under\n * the terms of the GNU General Public License as published by the Free Software\n * Foundation, either version 3 of the License, or (at your option) any later\n * version.\n *\n * This program is distributed in the hope that it will be useful, but WITHOUT\n * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\n * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License along with\n * this program. If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.lyrics;\n\nimport com.memetix.mst.detect.Detect;\nimport com.memetix.mst.language.Language;\nimport com.memetix.mst.translate.Translate;\nimport java.util.ArrayList;\nimport java.util.HashMap;\nimport java.util.List;\nimport java.util.Map.Entry;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport java.util.regex.Pattern;\nimport javafx.application.Platform;\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport javafx.geometry.Insets;\nimport javafx.geometry.Pos;\nimport javafx.scene.control.Button;\nimport javafx.scene.control.SplitPane;\nimport javafx.scene.control.Tab;\nimport javafx.scene.control.TabPane;\nimport javafx.scene.control.Tooltip;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.layout.BorderPane;\nimport javafx.scene.layout.StackPane;\nimport javafx.scene.paint.Color;\nimport javafx.scene.text.Text;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.Cancellable;\nimport org.quelea.services.utils.LanguageNameMap;\nimport org.quelea.services.utils.LineTypeChecker;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.ModalCancellableStage;\n\n/**\n * The translation dialog that manages all the translations - translations can\n * be added or removed from here.\n *\n * @author Michael\n */\npublic class TranslatePanel extends BorderPane implements Cancellable {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    private final SplitPane splitPane;\n    private final TabPane tabPane;\n    private final LyricsTextArea defaultLyricsArea;\n    private final Button addTranslationButton;\n    private Thread translateThread;\n    private final ModalCancellableStage copyStage = new ModalCancellableStage(LabelGrabber.INSTANCE.getLabel(\"translating.text.please.wait.text\"));\n    private boolean interrupted = false;\n\n    /**\n     * Create the translation dialog.\n     */\n    public TranslatePanel() {\n        splitPane = new SplitPane();\n        defaultLyricsArea = new LyricsTextArea();\n        StackPane translationPane = new StackPane();\n        tabPane = new TabPane();\n        translationPane.getChildren().add(tabPane);\n        addTranslationButton = new Button(\"\", new ImageView(new Image(\"file:icons/newstar.png\", 16, 16, false, true)));\n        Utils.setToolbarButtonStyle(addTranslationButton);\n        addTranslationButton.setOnAction(new EventHandler<ActionEvent>() {\n\n            @Override\n            public void handle(ActionEvent t) {\n                final String name = NewTranslationDialog.getTranslationName(getExistingNames());\n                if (name != null) {\n                    final TranslateTab tab = new TranslateTab(name, \"\");\n                    tabPane.getTabs().add(tab);\n                    copyStage.showAndAssociate(TranslatePanel.this);\n                    translateThread = new Thread() {\n                        @Override\n                        public void run() {\n                            interrupted = false;\n                            String lyrics = null;\n                            try {\n                                lyrics = getTranslatedLyrics(name);\n                            } catch (Exception ex) {\n                                LOGGER.log(Level.INFO, \"Interrupted translating\", ex);\n                                interrupted = true;\n                            }\n\n                            if (!interrupted) {\n                                final String fiLyrics = lyrics;\n                                Platform.runLater(new Runnable() {\n                                    @Override\n                                    public void run() {\n                                        copyStage.hide();\n                                        if (fiLyrics != null && !fiLyrics.isEmpty()) {\n                                            tab.setLyrics(fiLyrics);\n                                        }\n                                    }\n                                });\n                            }\n                        }\n                    };\n                    translateThread.start();\n                }\n            }\n        });\n        addTranslationButton.setTooltip(new Tooltip(LabelGrabber.INSTANCE.getLabel(\"add.translation.button\")));\n        StackPane.setAlignment(addTranslationButton, Pos.TOP_RIGHT);\n        translationPane.getChildren().add(addTranslationButton);\n        StackPane.setMargin(addTranslationButton, new Insets(5));\n        BorderPane leftArea = new BorderPane();\n        StackPane topRegion = new StackPane();\n        Text defaultTranslationLabel = new Text(LabelGrabber.INSTANCE.getLabel(\"default.translation.label\"));\n        defaultTranslationLabel.setFill(Color.WHITE);\n        StackPane.setAlignment(defaultTranslationLabel, Pos.CENTER_LEFT);\n        StackPane.setMargin(defaultTranslationLabel, new Insets(5));\n        topRegion.getChildren().add(defaultTranslationLabel);\n        topRegion.setPrefHeight(31);\n        topRegion.setStyle(\"-fx-background-color:rgb(166,166,166);\"); //Match the tabpane header background.\n        topRegion.setMaxWidth(Double.MAX_VALUE);\n        leftArea.setTop(topRegion);\n        leftArea.setCenter(defaultLyricsArea);\n        splitPane.getItems().add(leftArea);\n        splitPane.getItems().add(translationPane);\n\n        setCenter(splitPane);\n    }\n\n    /**\n     * Cancel the copying.\n     */\n    @Override\n    public void cancelOp() {\n        interrupted = true;\n        translateThread.interrupt();\n    }\n\n    /**\n     * Clear any lyrics from this dialog (default and translations.)\n     */\n    public void clearSong() {\n        tabPane.getTabs().clear();\n    }\n\n    /**\n     * Set the song to display in this panel - updates the translations and the\n     * default lyrics view.\n     *\n     * @param song the song to display.\n     */\n    public void setSong(SongDisplayable song) {\n        tabPane.getTabs().clear();\n        if (song.getTranslations() != null) {\n            for (Entry<String, String> translation : song.getTranslations().entrySet()) {\n                tabPane.getTabs().add(new TranslateTab(translation.getKey(), translation.getValue()));\n            }\n        }\n    }\n\n    /**\n     * Get the text area where the deafult lyrics are displayed.\n     *\n     * @return the text area where the deafult lyrics are displayed.\n     */\n    public LyricsTextArea getDefaultLyricsArea() {\n        return defaultLyricsArea;\n    }\n\n    /**\n     * Get the translations as a hashmap from this dialog.\n     *\n     * @return the translations, with the name as the key and the lyrics as the\n     * value.\n     */\n    public HashMap<String, String> getTranslations() {\n        HashMap<String, String> ret = new HashMap<>();\n        for (Tab tab : tabPane.getTabs()) {\n            if (tab instanceof TranslateTab) {\n                TranslateTab ttab = (TranslateTab) tab;\n                ret.put(ttab.getName(), ttab.getLyrics());\n            } else {\n                LOGGER.log(Level.WARNING, \"Non-translate tab!\");\n            }\n        }\n        return ret;\n    }\n\n    /**\n     * Attempt to get automatically translated lyrics from the translation\n     * service. May fail for various reasons, in which case it will return an\n     * empty string. This method will take a while to execute so must not be\n     * called on the platform thread.\n     *\n     * @param langName the language name to translate to.\n     * @return the translated text, or an empty string if translation failed for\n     * some reason.\n     */\n    private String getTranslatedLyrics(String langName) {\n        if (!QueleaProperties.get().getAutoTranslate()) {\n            return \"\";\n        }\n        try {\n            Language newLang = LanguageNameMap.INSTANCE.getLanguage(langName);\n            if (newLang != null) {\n                Language origLang = Detect.execute(defaultLyricsArea.getTextArea().getText());\n                if (origLang != null) {\n                    String[] origArr = LineTypeChecker.encodeSpecials(defaultLyricsArea.getTextArea().getText().split(\"\\n\"));\n                    ArrayList<String> translatedList = new ArrayList<>();\n                    for (String str : LineTypeChecker.decodeSpecials(Translate.execute(origArr, origLang, newLang))) {\n                        translatedList.add(str);\n                    }\n                    for (int i = 0; i < origArr.length; i++) {\n                        if (origArr[i].trim().isEmpty()) {\n                            translatedList.add(i, \"\\n\");\n                        }\n                    }\n                    StringBuilder ret = new StringBuilder();\n                    for (String translatedLine : translatedList) {\n                        ret.append(translatedLine).append(\"\\n\");\n                    }\n                    Pattern p = Pattern.compile(\"\\n\\n+\");\n                    LOGGER.log(Level.INFO, \"Translated successfully\");\n                    return p.matcher(ret.toString().trim()).replaceAll(\"\\n\\n\").trim();\n                }\n            }\n            return \"\";\n        } catch (Exception ex) {\n            LOGGER.log(Level.INFO, \"Error translating\", ex);\n            return \"\";\n        }\n    }\n\n    /**\n     * Get a list of the existing names used for translations on tabs.\n     *\n     * @return a list of the existing names used for translations on tabs.\n     */\n    private List<String> getExistingNames() {\n        List<String> ret = new ArrayList<>();\n        for (Tab tab : tabPane.getTabs()) {\n            ret.add(((TranslateTab) tab).getName());\n        }\n        return ret;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/lyrics/TranslateTab.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n *\n * This program is free software: you can redistribute it and/or modify it under\n * the terms of the GNU General Public License as published by the Free Software\n * Foundation, either version 3 of the License, or (at your option) any later\n * version.\n *\n * This program is distributed in the hope that it will be useful, but WITHOUT\n * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\n * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License along with\n * this program. If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.lyrics;\n\nimport javafx.event.ActionEvent;\nimport javafx.event.Event;\nimport javafx.event.EventHandler;\nimport javafx.scene.control.Tab;\nimport org.javafx.dialog.Dialog;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.QueleaProperties;\n\n/**\n * A tab specifically designed for a translation for a song - holds the\n * translated lyrics.\n *\n * @author Michael\n */\npublic class TranslateTab extends Tab {\n\n    private final String name;\n    private final LyricsTextArea lyricsArea;\n\n    /**\n     * Create a new translate tab.\n     * @param name the name of the tab (usually the language.)\n     * @param lyrics the translated lyrics (can be blank.)\n     */\n    public TranslateTab(String name, String lyrics) {\n        super(name);\n        setOnCloseRequest(new EventHandler<Event>() {\n\n            @Override\n            public void handle(Event tabEvent) {\n                String nameReplace = name;\n                if(QueleaProperties.get().getLanguageFile().getName().equalsIgnoreCase(\"sv.lang\")) { //Language names should be in lower case for Swedish\n                    nameReplace = nameReplace.toLowerCase();\n                }\n                Dialog.buildConfirmation(LabelGrabber.INSTANCE.getLabel(\"delete.translation.title\"), LabelGrabber.INSTANCE.getLabel(\"delete.translation.text\").replace(\"$1\", nameReplace))\n                        .addYesButton((event1) -> {}).addNoButton((ActionEvent buttonEvent) -> {\n                            tabEvent.consume();\n                }).build().showAndWait();\n            }\n        });\n        this.name = name;\n        setClosable(true);\n        lyricsArea = new LyricsTextArea();\n        lyricsArea.getTextArea().replaceText(lyrics);\n        setContent(lyricsArea);\n    }\n\n    /**\n     * Get the translation's name.\n     * @return the translation's name.\n     */\n    public String getName() {\n        return name;\n    }\n\n    /**\n     * Get the translation's lyrics.\n     * @return the translation's lyrics.\n     */\n    public String getLyrics() {\n        return lyricsArea.getTextArea().getText();\n    }\n    \n    /**\n     * Set the lyrics.\n     * @param lyrics the lyrics to set on the lyrics area.\n     */\n    public void setLyrics(String lyrics) {\n        lyricsArea.getTextArea().replaceText(lyrics);\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/lyrics/TranslationChoiceDialog.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.lyrics;\n\nimport java.util.ArrayList;\nimport java.util.List;\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport javafx.geometry.Insets;\nimport javafx.geometry.Pos;\nimport javafx.scene.Node;\nimport javafx.scene.Scene;\nimport javafx.scene.control.Button;\nimport javafx.scene.control.Label;\nimport javafx.scene.control.RadioButton;\nimport javafx.scene.control.ToggleGroup;\nimport javafx.scene.layout.BorderPane;\nimport javafx.scene.layout.StackPane;\nimport javafx.scene.layout.VBox;\nimport javafx.stage.Modality;\nimport javafx.stage.Stage;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.QueleaApp;\n\n/**\n * Dialog where users can select the translations to be displayed.\n *\n * @author Michael\n */\npublic class TranslationChoiceDialog extends Stage {\n\n    private SongDisplayable currentSong;\n    private final VBox content;\n\n    /**\n     * Create the translation choice dialog.\n     */\n    public TranslationChoiceDialog() {\n        initModality(Modality.APPLICATION_MODAL);\n        setTitle(LabelGrabber.INSTANCE.getLabel(\"translation.choice.title\"));\n        Utils.addIconsToStage(this);\n        BorderPane root = new BorderPane();\n        content = new VBox(5);\n        BorderPane.setMargin(content, new Insets(10));\n        root.setCenter(content);\n\n        Label selectTranslationLabel = new Label(LabelGrabber.INSTANCE.getLabel(\"select.translation.label\"));\n        selectTranslationLabel.setWrapText(true);\n        content.getChildren().add(selectTranslationLabel);\n\n        Button okButton = new Button(LabelGrabber.INSTANCE.getLabel(\"close.button\"));\n        okButton.setOnAction(new EventHandler<ActionEvent>() {\n\n            @Override\n            public void handle(ActionEvent t) {\n                hide();\n            }\n        });\n        okButton.setDefaultButton(true);\n        StackPane.setMargin(okButton, new Insets(5));\n        StackPane buttonPane = new StackPane();\n        buttonPane.setAlignment(Pos.CENTER);\n        buttonPane.getChildren().add(okButton);\n        root.setBottom(buttonPane);\n\n        Scene scene = new Scene(root);\n        if (QueleaProperties.get().getUseDarkTheme()) {\n            scene.getStylesheets().add(\"org/modena_dark.css\");\n        }\n        setScene(scene);\n    }\n\n    /**\n     * Select a song for this dialog to show.\n     *\n     * @param song a song for this dialog to show.\n     */\n    public void selectSong(final SongDisplayable song) {\n        this.currentSong = song;\n        List<Node> removes = new ArrayList<>();\n        for (Node node : content.getChildren()) {\n            if (node instanceof RadioButton) {\n                removes.add(node);\n            }\n        }\n        for (Node node : removes) {\n            content.getChildren().remove(node);\n        }\n        ToggleGroup group = new ToggleGroup();\n        RadioButton noneBut = new RadioButton(LabelGrabber.INSTANCE.getLabel(\"none.text\"));\n        noneBut.setOnAction(new EventHandler<ActionEvent>() {\n\n            @Override\n            public void handle(ActionEvent t) {\n                song.setCurrentTranslationLyrics(null);\n                QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getScheduleList().refreshSong(song);\n            }\n        });\n        noneBut.setToggleGroup(group);\n        content.getChildren().add(noneBut);\n        if (song.getCurrentTranslationLyrics() == null) {\n            noneBut.setSelected(true);\n        }\n        if (song.getTranslations() != null) {\n            for (String translationName : song.getTranslations().keySet()) {\n                final RadioButton radBut = new RadioButton(translationName);\n                radBut.setOnAction(new EventHandler<ActionEvent>() {\n\n                    @Override\n                    public void handle(ActionEvent t) {\n                        if (!radBut.getText().equals(LabelGrabber.INSTANCE.getLabel(\"none.text\"))) {\n                            song.setCurrentTranslationLyrics(radBut.getText());\n                            QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getScheduleList().refreshSong(song);\n                        }\n                    }\n                });\n                if (song.getCurrentTranslationName() != null && song.getCurrentTranslationName().equals(translationName)) {\n                    radBut.setSelected(true);\n                }\n                radBut.setToggleGroup(group);\n                content.getChildren().add(radBut);\n            }\n        }\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/AbstractPanel.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main;\n\nimport java.util.Comparator;\nimport java.util.Set;\nimport java.util.SortedSet;\nimport java.util.TreeSet;\nimport java.util.logging.Logger;\nimport javafx.scene.layout.BorderPane;\nimport org.quelea.data.displayable.Displayable;\nimport org.quelea.data.displayable.MultimediaDisplayable;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.Utils;\n\n/**\n * Implements ContainedPanel with additional canvas registering\n * <p/>\n * @author tomaszpio@gmail.com\n */\npublic abstract class AbstractPanel extends BorderPane implements ContainedPanel {\n\n    private static class PriorityComparator implements Comparator<DisplayCanvas> {\n\n        @Override\n        public int compare(DisplayCanvas o1, DisplayCanvas o2) {\n            return o2.getDrawingPriority().getPriority() - o1.getDrawingPriority().getPriority();\n        }\n    }\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    private SortedSet<DisplayCanvas> canvases = new TreeSet<>(new PriorityComparator());\n    private Displayable currentDisplayable = null;\n\n    public void setCurrentDisplayable(Displayable currentDisplayable) {\n        this.currentDisplayable = currentDisplayable;\n    }\n\n    public Displayable getCurrentDisplayable() {\n        return currentDisplayable;\n    }\n\n    @Override\n    public Set<DisplayCanvas> getCanvases() {\n        return canvases;\n    }\n\n    @Override\n    public void registerDisplayCanvas(DisplayCanvas canvas) {\n        canvases.add(canvas);\n    }\n\n    /**\n     * Show a given video displayable on the panel.\n     * <p/>\n     * @param displayable the video displayable.\n     */\n    public void showDisplayable(MultimediaDisplayable displayable) {\n        currentDisplayable = displayable;\n        updateCanvas();\n    }\n\n    public void updateCanvas() {\n        assert Utils.fxThread();\n        for (DisplayCanvas canvas : getCanvases()) {\n            getDrawer(canvas).draw(currentDisplayable);\n        }\n    }\n\n    @Override\n    public void removeCurrentDisplayable() {\n        assert Utils.fxThread();\n        for (DisplayCanvas canvas : getCanvases()) {\n            /*if(!canvas.isLogoShowing()) {\n             canvas.clearCurrentDisplayable();\n             }*/\n            canvas.clearNonPermanentChildren();\n        }\n    }\n\n    @Override\n    public abstract int getCurrentIndex();\n\n    public abstract DisplayableDrawer getDrawer(DisplayCanvas canvas);\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/ContainedPanel.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main;\n\nimport java.util.Set;\n\n/**\n * A panel that's contained within the live / preview panels.\n * @author Michael\n */\npublic interface ContainedPanel {\n\n    /**\n     * Clear the panel.\n     */\n    void removeCurrentDisplayable();\n    \n    /**\n     * Get the current index of this contained panel.\n     */\n    int getCurrentIndex();\n    \n    /**\n     * register canvas in panel\n     * @param canvas \n     */\n    void registerDisplayCanvas(DisplayCanvas canvas);\n    \n    Set<DisplayCanvas> getCanvases();\n    \n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/DisplayCanvas.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main;\n\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\n\nimport javafx.animation.FadeTransition;\nimport javafx.application.Platform;\nimport javafx.collections.FXCollections;\nimport javafx.collections.ListChangeListener;\nimport javafx.collections.ObservableList;\nimport javafx.geometry.Pos;\nimport javafx.scene.Node;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.layout.StackPane;\nimport javafx.scene.paint.Color;\nimport javafx.scene.shape.Rectangle;\nimport javafx.util.Duration;\nimport org.quelea.services.notice.NoticeDrawer;\nimport org.quelea.services.notice.NoticeOverlay;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.widgets.LogoImage;\n\n/**\n * The canvas where the lyrics / images / media are drawn.\n * <p/>\n *\n * @author Michael\n */\npublic class DisplayCanvas extends StackPane {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    private boolean cleared;\n    private boolean blacked;\n    private boolean logoUsed;\n    private final NoticeDrawer noticeDrawer;\n    private final boolean stageView;\n    private Node background;\n    private final LogoImage logoImage;\n    private final Rectangle black = new Rectangle();\n    private final Node noticeOverlay;\n    private final CanvasUpdater updater;\n    private Priority drawingPriority;\n\n    public enum Type {\n\n        STAGE,\n        PREVIEW,\n        FULLSCREEN\n    }\n\n    public enum Priority {\n\n        HIGH(0),\n        MID(1),\n        LOW(2);\n        private final int priority;\n\n        Priority(int priority) {\n            this.priority = priority;\n        }\n\n        public int getPriority() {\n            return priority;\n        }\n    }\n\n    /**\n     * Create a new canvas where the lyrics should be displayed.\n     * <p/>\n     *\n     * @param stageView       true if this canvas is on a stage view, false if it's on\n     *                        a main projection view.\n     * @param updater         the updater that will update this canvas.\n     * @param drawingPriority the drawing priority of this canvas when it's\n     *                        updating.\n     */\n    public DisplayCanvas(boolean stageView, final CanvasUpdater updater, Priority drawingPriority) {\n        setStyle(\"-fx-background-color: rgba(0, 0, 0, 0);\");\n        this.stageView = stageView;\n        this.drawingPriority = drawingPriority;\n        setMinHeight(0);\n        setMinWidth(0);\n        background = getNewImageView();\n        this.updater = updater;\n        heightProperty().addListener((ov, t, t1) -> updateCanvas(updater));\n        widthProperty().addListener((ov, t, t1) -> updateCanvas(updater));\n        getChildren().add(background);\n\n        black.setFill(Color.BLACK);\n        black.widthProperty().bind(this.widthProperty());\n        black.heightProperty().bind(this.heightProperty());\n        black.setOpacity(0);\n        black.setCache(true);\n        getChildren().add(black);\n\n        logoImage = new LogoImage(stageView);\n\n        logoImage.minWidthProperty().bind(widthProperty());\n        logoImage.maxWidthProperty().bind(widthProperty());\n        logoImage.minHeightProperty().bind(heightProperty());\n        logoImage.maxHeightProperty().bind(heightProperty());\n        logoImage.setOpacity(0);\n        logoImage.setCache(true);\n        getChildren().add(logoImage);\n\n        if (stageView) {\n            black.setFill(QueleaProperties.get().getStageBackgroundColor());\n        }\n\n        noticeDrawer = new NoticeDrawer(this);\n        noticeOverlay = noticeDrawer.getOverlay();\n        final Runnable[] r = new Runnable[1];\n        final ListChangeListener<Node> listener = change -> {\n            while (change.next()) {\n                if (!change.wasRemoved()) {\n                    try {\n                        /**\n                         * Platform.runLater() is necessary here to avoid\n                         * exceptions on some implementations, including\n                         * JFX8 at the time of writing. You can't modify a\n                         * list inside its listener, so the\n                         * Platform.runLater() delays it until after the\n                         * listener is complete (this is necessary even\n                         * though we're on the EDT.)\n                         * <p>\n                         * https://javafx-jira.kenai.com/browse/RT-35275\n                         */\n                        if (r[0] != null) {\n                            Platform.runLater(r[0]);\n                        }\n                    } catch (Exception ex) {\n                        LOGGER.log(Level.WARNING, \"Can't move notice overlay to front\", ex);\n                    }\n                }\n            }\n        };\n        getChildren().addListener(listener);\n        r[0] = () -> {\n            getChildren().removeListener(listener);\n            pushLogoNoticeToFront();\n            getChildren().addListener(listener);\n        };\n        noticeOverlay.setCache(true);\n        getChildren().add(noticeOverlay);\n    }\n\n    /**\n     * If the notice overlay has been removed from this canvas, add it. This\n     * shouldn't ever be the case, but means the notices will still work if it\n     * has been removed somehow. Otherwise, notices would require a restart to\n     * work.\n     */\n    public void ensureNoticesVisible() {\n        if (!getChildren().contains(noticeOverlay)) {\n            LOGGER.log(Level.WARNING, \"Notice overlay was removed\");\n            getChildren().add(noticeOverlay);\n        }\n    }\n\n    public void clearNonPermanentChildren() {\n        ObservableList<Node> list = FXCollections.observableArrayList(getChildren());\n        for (Node node : list) {\n            if (!(node instanceof NoticeOverlay) && node != logoImage && node != black) {\n                getChildren().remove(node);\n            }\n        }\n    }\n\n    /**\n     * @return the drawingPriority\n     */\n    public Priority getDrawingPriority() {\n        return drawingPriority;\n    }\n\n    public interface CanvasUpdater {\n\n        void updateCallback();\n    }\n\n    private void updateCanvas(final CanvasUpdater updater) {\n        Platform.runLater(() -> {\n            if (isVisibleInScene() && updater != null) {\n                updater.updateCallback();\n            }\n        });\n    }\n\n    private boolean isVisibleInScene() {\n        Node parent = DisplayCanvas.this;\n        boolean visible = isVisible();\n        if (!visible) {\n            return visible;\n        }\n        while ((parent = parent.getParent()) != null) {\n            if (!parent.isVisible()) {\n                visible = false;\n                break;\n            }\n        }\n        return visible;\n    }\n\n    /**\n     * @return the background\n     */\n    public Node getCanvasBackground() {\n        return background;\n    }\n\n    /**\n     * @param background the background to set\n     */\n    public void setCanvasBackground(Node background) {\n        this.background = background;\n    }\n\n    public final ImageView getNewImageView() {\n        ImageView ret = new ImageView(Utils.getImageFromColour(Color.BLACK));\n        ret.setFitHeight(getHeight());\n        ret.setFitWidth(getWidth());\n        StackPane.setAlignment(ret, Pos.CENTER);\n        return ret;\n    }\n\n    /**\n     * Determine if this canvas is part of a stage view.\n     * <p/>\n     *\n     * @return true if its a stage view, false otherwise.\n     */\n    public boolean isStageView() {\n        return stageView;\n    }\n\n    public void update() {\n        if (this.updater != null) {\n            updateCanvas(this.updater);\n        }\n    }\n\n    /**\n     * Toggle the clearing of this canvas - if cleared, still leave the\n     * background image in place but remove all the text. Otherwise display as\n     * normal.\n     * <p>\n     *\n     * @param cleared cleared if the text on this canvas should be cleared,\n     *                false otherwise.\n     */\n    public void setCleared(boolean cleared) {\n        if (this.cleared == cleared) {\n            return;\n        }\n        this.cleared = cleared;\n        if (this.updater != null) {\n            updateCanvas(this.updater);\n        }\n    }\n\n    /**\n     * Determine whether this canvas is cleared.\n     * <p/>\n     *\n     * @return true if the canvas is cleared, false otherwise.\n     */\n    public boolean isCleared() {\n        return cleared;\n    }\n\n    /**\n     * Determine whether this canvas is hidden by logo.\n     * <p/>\n     *\n     * @return true if the canvas is behind logo, false otherwise.\n     */\n    public boolean isShowingLogo() {\n        return logoUsed;\n    }\n\n    /**\n     * Toggle the blacking of this canvas - if blacked, remove the text and\n     * background image (if any) just displaying a black screen. Otherwise\n     * display as normal.\n     * <p>\n     *\n     * @param blacked true if this canvas should be set blacked, false\n     *                otherwise.\n     */\n    public void setBlacked(boolean blacked) {\n        this.blacked = blacked;\n        if (blacked) {\n            black.toFront();\n            FadeTransition ft = new FadeTransition(Duration.millis(QueleaProperties.get().getBlackFadeDuration()), black);\n            ft.setToValue(1);\n            ft.play();\n        } else {\n            FadeTransition ft = new FadeTransition(Duration.millis(QueleaProperties.get().getBlackFadeDuration()), black);\n            ft.setToValue(0);\n            ft.play();\n        }\n    }\n\n    /**\n     * Determine whether this canvas is blacked.\n     * <p/>\n     *\n     * @return true if the canvas is blacked, false otherwise.\n     */\n    public boolean isBlacked() {\n        return blacked;\n    }\n\n    /**\n     * Get the notice drawer, used for drawing notices onto this lyrics canvas.\n     * <p/>\n     *\n     * @return the notice drawer.\n     */\n    public NoticeDrawer getNoticeDrawer() {\n        return noticeDrawer;\n    }\n\n    /**\n     * This method fades the logo in and out of view when the logo display\n     * button is used.\n     * <p>\n     *\n     * @param selected true to display the logo screen, false to remove it.\n     */\n    public void setLogoDisplaying(boolean selected) {\n        logoUsed = selected;\n        if (selected) {\n            logoImage.toFront();\n            FadeTransition ft = new FadeTransition(Duration.millis(QueleaProperties.get().getLogoFadeDuration()), logoImage);\n            ft.setToValue(1);\n            ft.play();\n        } else {\n            FadeTransition ft = new FadeTransition(Duration.millis(QueleaProperties.get().getLogoFadeDuration()), logoImage);\n            ft.setToValue(0);\n            ft.play();\n        }\n    }\n\n    public void pushLogoNoticeToFront() {\n        black.toFront();\n        logoImage.toFront();\n        noticeOverlay.toFront();\n    }\n\n    /**\n     * Update logo removes, reloads, and re-adds the logo image from the quelea\n     * properties file. This method is triggered when a successful right-click\n     * is completed on the lyric panel logo button.\n     */\n    public void updateLogo() {\n        logoImage.refresh();\n    }\n\n    public void makeClickable(boolean clickable) {\n        // Make webview clickable\n        if (black != null) {\n            black.setMouseTransparent(clickable);\n        }\n        if (logoImage != null) {\n            logoImage.setMouseTransparent(clickable);\n        }\n        if (background != null) {\n            background.setMouseTransparent(clickable);\n        }\n        if (noticeOverlay != null) {\n            noticeOverlay.setMouseTransparent(clickable);\n        }\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/DisplayStage.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify it under\n * the terms of the GNU General Public License as published by the Free Software\n * Foundation, either version 3 of the License, or (at your option) any later\n * version.\n *\n * This program is distributed in the hope that it will be useful, but WITHOUT\n * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\n * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License along with\n * this program. If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main;\n\nimport javafx.application.Platform;\nimport javafx.beans.value.ChangeListener;\nimport javafx.geometry.Bounds;\nimport javafx.geometry.Pos;\nimport javafx.scene.Cursor;\nimport javafx.scene.Scene;\nimport javafx.scene.image.Image;\nimport javafx.scene.layout.StackPane;\nimport javafx.stage.Stage;\nimport javafx.stage.StageStyle;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.utils.PlatformUtils;\nimport org.quelea.windows.main.DisplayCanvas.Priority;\nimport org.quelea.windows.main.widgets.Clock;\nimport org.quelea.windows.main.widgets.TestImage;\n\nimport java.util.logging.Logger;\n\n/**\n * The full screen window used for displaying the projection.\n * <p/>\n * @author Michael\n */\npublic class DisplayStage extends Stage {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    private static final Cursor BLANK_CURSOR;\n    private final DisplayCanvas canvas;\n    private final TestImage testImage;\n\n    /**\n     * Initialise cursor hiding.\n     */\n    static {\n        BLANK_CURSOR = javafx.scene.Cursor.NONE;\n    }\n\n    /**\n     * Create a new display window positioned to fill the given rectangle.\n     * <p/>\n     * @param area the area in which the window should be drawn.\n     * @param stageView true if the display stage is a stage view, false if it's\n     * a normal projection view.\n     */\n    public DisplayStage(Bounds area, boolean stageView) {\n        initStyle(StageStyle.TRANSPARENT);\n        Utils.addIconsToStage(this);\n        setTitle(LabelGrabber.INSTANCE.getLabel(\"projection.window.title\"));\n        setAreaImmediate(area);\n        StackPane scenePane = new StackPane();\n        scenePane.setStyle(\"-fx-background-color: transparent;\");\n        canvas = new DisplayCanvas(stageView, null, stageView ? Priority.HIGH : Priority.MID);\n        canvas.setCursor(BLANK_CURSOR);\n        scenePane.getChildren().add(canvas);\n        if (stageView) {\n            final Clock clock = new Clock();\n            ChangeListener<Number> cl = (ov, t, t1) -> {\n                double size = getWidth();\n                if (getHeight() < size) {\n                    size = getHeight();\n                }\n                clock.setFontSize(size / 24);\n            };\n            widthProperty().addListener(cl);\n            heightProperty().addListener(cl);\n            StackPane.setAlignment(clock, Pos.BOTTOM_RIGHT);\n            scenePane.getChildren().add(clock);\n            clock.toFront();\n        }\n        testImage = new TestImage();\n        testImage.getImageView().setPreserveRatio(true);\n        testImage.getImageView().fitWidthProperty().bind(widthProperty());\n        testImage.getImageView().fitHeightProperty().bind(heightProperty());\n        scenePane.getChildren().add(testImage);\n        testImage.setVisible(false);\n        testImage.toFront();\n        Scene scene = new Scene(scenePane);\n        if (!stageView) {\n            scene.setFill(null);\n        }\n        setScene(scene);\n    }\n\n    /**\n     * Set a test image to appear on this stage.\n     * <p>\n     * @param img the test img, or null to clear.\n     * @param preserveAspect true if the aspect ratio should be preserved, false\n     * if it should be stretched to fit.\n     */\n    public void setTestImage(Image img, boolean preserveAspect) {\n        testImage.getImageView().setPreserveRatio(preserveAspect);\n        testImage.setVisible(img != null);\n        testImage.setImage(img);\n    }\n\n    /**\n     * Set the Stage to be fullscreen or to make it non-fullscreen.\n     * <p/>\n     * @param fullscreen the area of the window.\n     */\n    public final void setFullScreenAlwaysOnTopImmediate(boolean fullscreen) {\n        PlatformUtils.setFullScreenAlwaysOnTop(this, fullscreen);\n    }\n\n    /**\n     * Set the Stage to be fullscreen or to make it non-fullscreen using run later.\n     * <p/>\n     * @param fullscreen the area of the window.\n     */\n    public final void setFullScreenAlwaysOnTop(boolean fullscreen) {\n        Platform.runLater(() -> setFullScreenAlwaysOnTopImmediate(fullscreen));\n    }\n\n    /**\n     * Set the area of the display window.\n     * <p/>\n     * @param area the area of the window.\n     */\n    public final void setAreaImmediate(final Bounds area) {\n        setWidth(area.getMaxX() - area.getMinX());\n        setHeight(area.getMaxY() - area.getMinY());\n        setX(area.getMinX());\n        setY(area.getMinY());\n    }\n\n    /**\n     * Set the area of the display window using run later.\n     * <p/>\n     * @param area the area of the window.\n     */\n    public final void setArea(final Bounds area) {\n        Platform.runLater(() -> {\n            // ensure the window is not fullscreen always on top here\n            setFullScreenAlwaysOnTopImmediate(false);\n            setAreaImmediate(area);\n        });\n    }\n\n    /**\n     * Get the canvas object that underlines this display window.\n     * <p/>\n     * @return the lyric canvas backing this window.\n     */\n    public DisplayCanvas getCanvas() {\n        return canvas;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/DisplayableDrawer.java",
    "content": "package org.quelea.windows.main;\n\nimport org.quelea.data.displayable.Displayable;\n\npublic abstract class DisplayableDrawer {\n\n    private DisplayCanvas canvas;\n\n    public DisplayableDrawer() {\n        this.canvas = null;\n    }\n\n    public void setCanvas(DisplayCanvas canvas) {\n        this.canvas = canvas;\n    }\n\n    public DisplayCanvas getCanvas() {\n        return canvas;\n    }\n\n    public abstract void draw(Displayable displayable);\n\n    public abstract void clear();\n\n    public abstract void requestFocus();\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/GraphicsDeviceListener.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main;\n\nimport javafx.collections.ObservableList;\n\n/**\n * Provides an interface for a callback when the graphics devices have changed.\n * @author Michael\n */\npublic interface GraphicsDeviceListener {\n    \n    /**\n     * Called when the graphics devices have changed.\n     * @param devices the new devices.\n     */\n    //void devicesChanged(GraphicsDevice[] devices);\n    void devicesChanged(ObservableList<javafx.stage.Screen> devices);\n    \n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/GraphicsDeviceWatcher.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main;\n\nimport java.util.ArrayList;\nimport java.util.List;\nimport java.util.concurrent.Executors;\nimport java.util.concurrent.ScheduledExecutorService;\nimport java.util.concurrent.TimeUnit;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport javafx.collections.ObservableList;\nimport javafx.stage.Screen;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\n//import sun.awt.X11.Screen;\n\n/**\n * A singleton class that watches graphics devices. Any other class can register\n * a listener on this class to receive notifications when the list of devices\n * changes.\n *\n * @author Michael\n */\npublic class GraphicsDeviceWatcher {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    public static GraphicsDeviceWatcher INSTANCE = new GraphicsDeviceWatcher();\n    private List<GraphicsDeviceListener> listeners;\n    private ScheduledExecutorService poller;\n    private int lastDeviceCount;\n\n    /**\n     * Create a new device watcher. Internal use only (singleton.)\n     */\n    private GraphicsDeviceWatcher() {\n        //lastDeviceCount = GraphicsEnvironment.getLocalGraphicsEnvironment().getScreenDevices().length;\n        lastDeviceCount = javafx.stage.Screen.getScreens().size();\n        listeners = new ArrayList<>();\n        poller = Executors.newScheduledThreadPool(1);\n        poller.scheduleAtFixedRate(() -> {\n            //GraphicsDevice[] devices = GraphicsEnvironment.getLocalGraphicsEnvironment().getScreenDevices();\n            ObservableList<Screen> monitors = Screen.getScreens();\n            int thisDeviceCount = monitors.size();  // devices.length;\n            if(thisDeviceCount != lastDeviceCount) {\n                for(GraphicsDeviceListener listener : listeners) {\n                    LOGGER.log(Level.INFO, \"Number of devices changed, was {0} now {1}\", new Object[]{lastDeviceCount, thisDeviceCount});\n                    if (thisDeviceCount > lastDeviceCount && QueleaProperties.get().getUseAutoExtend()) {\n                        QueleaProperties.get().setProjectorScreen(thisDeviceCount - 1);\n                    }\n                    lastDeviceCount = thisDeviceCount;\n                    listener.devicesChanged(monitors);\n                }\n            }\n        }, 0, 3, TimeUnit.SECONDS);\n    }\n\n    /**\n     * Add a graphics device listener to this watcher.\n     *\n     * @param listener the listener to add.\n     */\n    public void addGraphicsDeviceListener(GraphicsDeviceListener listener) {\n        listeners.add(listener);\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/LivePanel.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main;\n\nimport java.awt.image.BufferedImage;\nimport java.io.File;\nimport java.util.HashSet;\nimport java.util.concurrent.Executors;\nimport java.util.concurrent.ScheduledExecutorService;\nimport java.util.concurrent.TimeUnit;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\n\nimport javafx.application.Platform;\nimport javafx.collections.ObservableList;\nimport javafx.embed.swing.SwingFXUtils;\nimport javafx.event.EventHandler;\nimport javafx.scene.SnapshotParameters;\nimport javafx.scene.control.*;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.image.WritableImage;\nimport javafx.scene.input.KeyCode;\nimport javafx.scene.input.KeyEvent;\nimport javafx.scene.input.MouseButton;\nimport javafx.scene.input.MouseEvent;\nimport javafx.scene.layout.HBox;\nimport javafx.scene.layout.Priority;\nimport javafx.scene.layout.Region;\nimport javafx.scene.paint.Color;\nimport javafx.scene.web.WebView;\nimport javafx.stage.FileChooser;\nimport javafx.stage.Modality;\nimport javafx.stage.Screen;\nimport org.javafx.dialog.Dialog;\nimport org.quelea.data.displayable.BiblePassage;\nimport org.quelea.data.displayable.Displayable;\nimport org.quelea.data.displayable.ImageGroupDisplayable;\nimport org.quelea.data.displayable.PdfDisplayable;\nimport org.quelea.data.displayable.PresentationDisplayable;\nimport org.quelea.data.displayable.TextDisplayable;\nimport org.quelea.data.displayable.TextSection;\nimport org.quelea.data.displayable.WebDisplayable;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.FileFilters;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.actionhandlers.AddBibleVerseHandler;\nimport org.quelea.windows.presentation.PowerPointHandler;\n\n/**\n * The panel displaying the live lyrics selection - changes made on this panel\n * are reflected on the live projection.\n * <p/>\n *\n * @author Michael\n */\npublic class LivePanel extends LivePreviewPanel {\n\n    private final HBox loopBox;\n    private final ToggleButton loop;\n    private final TextField loopDuration;\n\n    private final ToggleButton logo;\n    private final ToggleButton black;\n    private final ToggleButton clear;\n    private final ToggleButton hide;\n\n    private final ToolBar header;\n    private Displayable oldD;\n    private WritableImage webPreviewImage;\n    private ScheduledExecutorService updateWebPreview;\n    private Dialog focusDialog;\n\n    /**\n     * Create a new live lyrics panel.\n     */\n    public LivePanel() {\n        getPresentationPanel().setLive();\n        getPdfPanel().setLive();\n        getVideoPanel().setLive();\n        getImageGroupPanel().setLive();\n        header = new ToolBar();\n        Label headerLabel = new Label(LabelGrabber.INSTANCE.getLabel(\"live.heading\"));\n        headerLabel.setStyle(\"-fx-font-weight: bold;\");\n        header.getItems().add(headerLabel);\n        ImageView liveIcon = new ImageView(new Image(\"file:icons/recordingssettingsicon.png\"));\n        liveIcon.setFitHeight(10);\n        liveIcon.setFitWidth(10);\n        header.getItems().add(liveIcon);\n        loop = new ToggleButton(LabelGrabber.INSTANCE.getLabel(\"loop.label\") + \":\");\n        loop.setOnMouseClicked(e -> {\n            if (isLoopSelected()) {\n                PowerPointHandler.loopPresentation();\n            } else {\n                PowerPointHandler.stopLoop();\n            }\n        });\n        loopDuration = new TextField(\"10\");\n        loopDuration.setMaxWidth(40);\n        loopDuration.setMinWidth(40);\n        loopDuration.addEventFilter(KeyEvent.KEY_TYPED, new EventHandler<KeyEvent>() {\n            @Override\n            public void handle(KeyEvent t) {\n                String text = t.getCharacter();\n                if (text.isEmpty()) {\n                    return;\n                }\n                char[] arr = text.toCharArray();\n                char ch = arr[text.toCharArray().length - 1];\n                if (!(ch >= '0' && ch <= '9')) {\n                    t.consume();\n                }\n                try {\n                    String newText = loopDuration.getText() + ch;\n                    int num = Integer.parseInt(newText);\n                    if (num > 100 || num <= 0) {\n                        t.consume();\n                    }\n                } catch (NumberFormatException ex) {\n                    t.consume();\n                }\n            }\n        });\n        loopBox = new HBox(5);\n        loopBox.getChildren().add(new Label(\"   \"));\n        loopBox.getChildren().add(loop);\n        loopBox.getChildren().add(loopDuration);\n        loopBox.getChildren().add(new Label(LabelGrabber.INSTANCE.getLabel(\"seconds.label\")));\n        Region spacer = new Region();\n        HBox.setHgrow(spacer, Priority.ALWAYS);\n        header.getItems().add(spacer);\n        ImageView logoIV;\n        if (Utils.isMac()) {\n            logoIV = new ImageView(new Image(\"file:icons/logo48.png\"));\n        } else {\n            logoIV = new ImageView(new Image(\"file:icons/logo16.png\"));\n        }\n        logoIV.setFitHeight(16);\n        logoIV.setFitWidth(16);\n        ToggleGroup group = new ToggleGroup();\n        logo = new ToggleButton(\"\", logoIV);\n        logo.setToggleGroup(group);\n        Utils.setToolbarButtonStyle(logo);\n        logo.setTooltip(new Tooltip(LabelGrabber.INSTANCE.getLabel(\"logo.screen.tooltip\") + \" (F5)\"));\n        logo.setOnMouseClicked(new EventHandler<javafx.scene.input.MouseEvent>() {\n            @Override\n            public void handle(MouseEvent t) {\n                if (t.getButton().equals(MouseButton.SECONDARY) || t.isControlDown()) {\n                    FileChooser chooser = new FileChooser();\n                    if (QueleaProperties.get().getLastDirectory() != null) {\n                        chooser.setInitialDirectory(QueleaProperties.get().getLastDirectory());\n                    }\n                    chooser.getExtensionFilters().add(FileFilters.IMAGE_VIDEOS);\n                    chooser.setInitialDirectory(QueleaProperties.get().getImageDir().getAbsoluteFile());\n                    File file = chooser.showOpenDialog(QueleaApp.get().getMainWindow());\n                    if (file != null) {\n                        QueleaProperties.get().setLastDirectory(file.getParentFile());\n                        QueleaProperties.get().setLogoImage(file.getAbsolutePath());\n                        updateLogo();\n                    }\n                }\n                QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().getLyricsPanel().requestFocus();\n            }\n        });\n        logo.setOnAction(new EventHandler<javafx.event.ActionEvent>() {\n            @Override\n            public void handle(javafx.event.ActionEvent t) {\n                HashSet<DisplayCanvas> canvases = new HashSet<>();\n                canvases.addAll(getCanvases());\n                for (DisplayCanvas canvas : canvases) {\n                    canvas.setLogoDisplaying(logo.isSelected());\n                }\n            }\n        });\n        header.getItems().add(logo);\n        black = new ToggleButton(\"\", new ImageView(new Image(\"file:icons/black.png\")));\n        black.setToggleGroup(group);\n        Utils.setToolbarButtonStyle(black);\n        black.setTooltip(new Tooltip(LabelGrabber.INSTANCE.getLabel(\"black.screen.tooltip\") + \" (F6)\"));\n        black.setOnAction(t -> {\n            if (getDisplayable() instanceof PresentationDisplayable && QueleaProperties.get().getUsePP()) {\n                PowerPointHandler.screenBlack();\n            }\n            HashSet<DisplayCanvas> canvases = new HashSet<>();\n            canvases.addAll(getCanvases());\n            for (DisplayCanvas canvas : canvases) {\n                if(!canvas.isStageView() || QueleaProperties.get().getBlackStageWithMain()) {\n                    canvas.setBlacked(black.isSelected());\n                }\n                else {\n                    canvas.setBlacked(false);\n                }\n            }\n            QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().getLyricsPanel().requestFocus();\n        });\n        header.getItems().add(black);\n        ImageView clearIV = new ImageView(new Image(\"file:icons/clear.png\"));\n        clearIV.setFitWidth(16);\n        clearIV.setFitHeight(16);\n        clear = new ToggleButton(\"\", clearIV);\n        clear.setToggleGroup(group);\n        Utils.setToolbarButtonStyle(clear);\n        clear.setTooltip(new Tooltip(LabelGrabber.INSTANCE.getLabel(\"clear.text.tooltip\") + \" (F7)\"));\n        clear.setOnAction((javafx.event.ActionEvent t) -> {\n            HashSet<DisplayCanvas> canvases = new HashSet<>();\n            canvases.addAll(getCanvases());\n            for (DisplayCanvas canvas : canvases) {\n                if (canvas.isStageView() && !QueleaProperties.get().getClearStageWithMain()) {\n                    canvas.setCleared(false);\n                } else {\n                    canvas.setCleared(clear.isSelected());\n                }\n            }\n            QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().getLyricsPanel().requestFocus();\n        });\n        header.getItems().add(clear);\n        ImageView hideIV = new ImageView(new Image(QueleaProperties.get().getUseDarkTheme() ? \"file:icons/cross-light.png\" : \"file:icons/cross.png\"));\n        hideIV.setFitWidth(16);\n        hideIV.setFitHeight(16);\n        hide = new ToggleButton(\"\", hideIV);\n        Utils.setToolbarButtonStyle(hide);\n        hide.setToggleGroup(group);\n        hide.setTooltip(new Tooltip(LabelGrabber.INSTANCE.getLabel(\"hide.display.output.tooltip\") + \" (F8)\"));\n        hide.setOnAction(t -> {\n            int projectorScreen = QueleaProperties.get().getProjectorScreen();\n            int stageScreen = QueleaProperties.get().getStageScreen();\n            final ObservableList<Screen> monitors = Screen.getScreens();\n\n            DisplayStage appWindow = QueleaApp.get().getProjectionWindow();\n            DisplayStage stageWindow = QueleaApp.get().getStageWindow();\n\n            final boolean lyricsHidden;\n            if (!QueleaProperties.get().isProjectorModeCoords() && (projectorScreen >= monitors.size() || projectorScreen < 0)) {\n                lyricsHidden = true;\n            } else {\n                lyricsHidden = false;\n            }\n\n            final boolean stageHidden;\n            if (!QueleaProperties.get().isStageModeCoords() && (stageScreen >= monitors.size() || stageScreen < 0)) {\n                stageHidden = true;\n            } else {\n                stageHidden = false;\n            }\n\n            if (!lyricsHidden) {\n                if (hide.isSelected()) {\n                    appWindow.hide();\n                } else {\n                    appWindow.show();\n                }\n            }\n            if (!stageHidden) {\n                if (hide.isSelected()) {\n                    stageWindow.hide();\n                } else {\n                    stageWindow.show();\n                }\n            }\n        });\n        //header.getItems().add(hide);\n        showExtraToolbarOptions(QueleaProperties.get().getShowExtraLivePanelToolbarOptions());\n        setTop(header);\n        setOnKeyTyped(new EventHandler<KeyEvent>() {\n            @Override\n            public void handle(KeyEvent t) {\n                LivePanel lp = QueleaApp.get().getMainWindow().getMainPanel().getLivePanel();\n                if (t.getCharacter().equals(\" \")) {\n                    QueleaApp.get().getMainWindow().getMainPanel().getPreviewPanel().goLive();\n                }\n                if (getDisplayable() instanceof PresentationDisplayable) {\n                    if (t.getCharacter().matches(\"\\\\d\")) {\n                        try {\n                            int i = Integer.parseInt(t.getCharacter());\n                            if (i > 0 && i < 10) {\n                                if (QueleaProperties.get().getUsePP()) {\n                                    PowerPointHandler.gotoSlide(i);\n                                    String result = PowerPointHandler.getCurrentSlide();\n                                    if (!result.contains(\"not running\") && !result.equals(\"\")) {\n                                        int slide = Integer.parseInt(result);\n                                        QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().getPresentationPanel().getPresentationPreview().select(slide, true);\n                                    }\n                                } else {\n                                    QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().getPresentationPanel().getPresentationPreview().select(i);\n                                }\n                            }\n                        } catch (Exception ex) {\n                            LoggerUtils.getLogger().log(Level.INFO, \"Could not cast keycode into integer for slide selection.\", ex);\n                        }\n                    }\n                } else if (t.getCharacter().matches(\"c\") || t.getCharacter().matches(\"b\") || t.getCharacter().matches(\"p\") || t.getCharacter().matches(\"t\") || t.getCharacter().matches(\"\\\\d\")) {\n                    final int selectedIndex = lp.getLyricsPanel().getCurrentIndex();\n                    final int slideIndex = getSlideIndex(selectedIndex, t.getCharacter());\n                    if (slideIndex > -1) {\n                        Platform.runLater(() -> {\n                            lp.getLyricsPanel().select(slideIndex);\n                        });\n                    } else if (t.getCharacter().matches(\"\\\\d\")) {\n                        try {\n                            int i = Integer.parseInt(t.getCharacter());\n                            final int index = (i > 0) ? (i - 1) : 10;\n                            Platform.runLater(() -> {\n                                if (lp.getDisplayable() instanceof PresentationDisplayable) {\n                                    lp.getPresentationPanel().getPresentationPreview().select(i);\n                                } else if (lp.getDisplayable() instanceof PdfDisplayable) {\n                                    lp.getPdfPanel().getPresentationPreview().select(i);\n                                } else {\n                                    lp.getLyricsPanel().select(index);\n                                }\n                            });\n                        } catch (Exception ex) {\n                            LoggerUtils.getLogger().log(Level.INFO, \"Could not cast keycode into integer for slide selection.\", ex);\n                        }\n                    }\n                }\n                if (t.getCharacter().matches(\"\\\\+\")) {\n                    if (getDisplayable() instanceof BiblePassage) {\n                        new AddBibleVerseHandler().add();\n                        QueleaApp.get().getMainWindow().getMainPanel().getPreviewPanel().goLive();\n                        int last = lp.getLyricsPanel().getLyricsList().getItems().size() - 1;\n                        lp.getLyricsPanel().select(last);\n                    }\n                }\n            }\n\n            private boolean matches(String shortcut, String sectionTitle) {\n                if (shortcut.equalsIgnoreCase(\"c\") && sectionTitle.toLowerCase().startsWith(\"chorus\")) {\n                    return true;\n                }\n                if (shortcut.equalsIgnoreCase(\"p\") && sectionTitle.toLowerCase().contains(\"pre-chorus\")) {\n                    return true;\n                }\n                if (shortcut.equalsIgnoreCase(\"b\") && sectionTitle.toLowerCase().contains(\"bridge\")) {\n                    return true;\n                }\n                if (shortcut.equalsIgnoreCase(\"t\") && sectionTitle.toLowerCase().contains(\"tag\")) {\n                    return true;\n                }\n                if (shortcut.matches(\"\\\\d\") && sectionTitle.toLowerCase().contains(\"verse \" + shortcut)) {\n                    return true;\n                }\n                if (shortcut.equalsIgnoreCase(\"i\") && sectionTitle.toLowerCase().contains(\"interlude\")) {\n                    return true;\n                }\n                if (shortcut.equalsIgnoreCase(\"e\") && sectionTitle.toLowerCase().contains(\"ending\")) {\n                    return true;\n                }\n                return false;\n            }\n\n            private String getTitle(int idx) {\n                if (getDisplayable() instanceof TextDisplayable) {\n                    TextDisplayable displayable = (TextDisplayable) getDisplayable();\n                    TextSection[] sections = displayable.getSections();\n                    String runningTitle = null;\n                    for(int i=0 ; i<sections.length ; i++) {\n                        if(sections[i].getTitle()!=null && !sections[i].getTitle().isEmpty()) {\n                            runningTitle = sections[i].getTitle();\n                        }\n                        if(idx==i) {\n                            return runningTitle;\n                        }\n                    }\n                }\n                return null;\n            }\n\n            private int getSlideIndex(int selectedIndex, String shortcutKey) {\n                if (getDisplayable() instanceof TextDisplayable) {\n                    TextDisplayable displayable = (TextDisplayable) getDisplayable();\n                    TextSection[] sections = displayable.getSections();\n                    for(int it=0 ; it<sections.length+1 ; it++) {\n                        int i = (selectedIndex + 1 + it) % sections.length;\n                        if (matches(shortcutKey, getTitle(i))) {\n                            return i;\n                        }\n                    }\n                    return -1;\n                } else {\n                    return -1;\n                }\n            }\n        });\n        this.getLyricsPanel().getLyricsList().addEventFilter(KeyEvent.KEY_PRESSED, new EventHandler<KeyEvent>() {\n            @Override\n            public void handle(KeyEvent t) {\n                if (t.getCode().equals(KeyCode.PAGE_DOWN)) { // || t.getCode().equals(KeyCode.DOWN)) {\n                    t.consume();\n                    QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().advance();\n                } else if (t.getCode().equals(KeyCode.PAGE_UP)) { // || t.getCode().equals(KeyCode.UP)) {\n                    t.consume();\n                    QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().previous();\n                }\n            }\n        });\n    }\n\n    /**\n     * Show/hide extra toolbar options.\n     * <p/>\n     *\n     * @param show display the extra options.\n     */\n    public void showExtraToolbarOptions(boolean show) {\n        if (show){\n            if (!header.getItems().contains(hide)){\n                header.getItems().add(hide);\n            }\n        }else{\n               header.getItems().remove(hide);     \n        }\n    }\n    /**\n     * Set the displayable to be shown on this live panel.\n     * <p/>\n     *\n     * @param d     the displayable to show.\n     * @param index the index to use for the displayable, if relevant.\n     */\n    @Override\n    public void setDisplayable(Displayable d, int index) {\n        super.setDisplayable(d, index);\n        loop.setSelected(false);\n        if (d instanceof PresentationDisplayable || d instanceof PdfDisplayable || d instanceof ImageGroupDisplayable) {\n            if (!header.getItems().contains(loopBox)) {\n                header.getItems().add(1, loopBox);\n            }\n            if (d instanceof PresentationDisplayable) {\n                if (QueleaProperties.get().getUsePP() && (oldD == null || !oldD.equals(d))) {\n                    startPowerPoint(d);\n                }\n            }\n        } else {\n            header.getItems().remove(loopBox);\n            if (oldD != null && oldD instanceof PresentationDisplayable) {\n                PowerPointHandler.closePresentation();\n            }\n            if (focusDialog != null) {\n                focusDialog.close();\n            }\n        }\n        if (d == null) {\n            clear.setSelected(false);\n            clear.setDisable(true);\n        } else {\n            clear.setDisable(!d.supportClear());\n            if (!d.supportClear()) {\n                clear.setSelected(false);\n            }\n        }\n        if (d instanceof WebDisplayable) {\n            updateWebPreview = Executors.newSingleThreadScheduledExecutor();\n            updateWebPreview.scheduleAtFixedRate(() -> Platform.runLater(() -> {\n                if (d != null && d instanceof WebDisplayable) {\n                    getWebPanel().setLoading();\n                    getWebPanel().getImagePreview().setImage(geWebPreviewImage());\n                }\n            }), 0, QueleaProperties.get().getWebDisplayableRefreshRate(), TimeUnit.MILLISECONDS);\n        }\n        if (oldD instanceof WebDisplayable) {\n            ((WebDisplayable) oldD).dispose();\n            updateWebPreview.shutdown();\n        }\n        HashSet<DisplayCanvas> canvases = new HashSet<>();\n        canvases.addAll(getCanvases());\n        for (DisplayCanvas canvas : canvases) {\n            canvas.setLogoDisplaying(logo.isSelected());\n            canvas.setBlacked(black.isSelected());\n            if (canvas.isStageView() && !QueleaProperties.get().getClearStageWithMain()) {\n                canvas.setCleared(false);\n            } else {\n                canvas.setCleared(clear.isSelected());\n            }\n            if (d instanceof WebDisplayable) {\n                canvas.makeClickable(true);\n            } else {\n                canvas.makeClickable(false);\n            }\n        }\n        oldD = d;\n    }\n\n    /**\n     * Toggle the \"black\" button.\n     */\n    public void toggleBlack() {\n        if (!black.isDisable()) {\n            black.fire();\n        }\n    }\n\n    /**\n     * Toggle the \"clear\" button.\n     */\n    public void toggleClear() {\n        if (!clear.isDisable()) {\n            clear.fire();\n        }\n    }\n\n    /**\n     * Toggle the \"hide\" button.\n     */\n    public void toggleHide() {\n        if (!hide.isDisable()) {\n            hide.fire();\n        }\n    }\n\n    /**\n     * Toggle the \"logo\" button.\n     */\n    public void toggleLogo() {\n        if (!logo.isDisable()) {\n            logo.fire();\n        }\n    }\n\n    /**\n     * Determine if the loop button is selected.\n     * <p>\n     *\n     * @return true if it's selected, false otherwise.\n     */\n    public boolean isLoopSelected() {\n        return loop.isSelected();\n    }\n\n    public TextField getLoopDurationTextField() {\n        return loopDuration;\n    }\n\n    /**\n     * Get the hide button.\n     * <p>\n     *\n     * @return the hide button.\n     */\n    public ToggleButton getHide() {\n        return hide;\n    }\n\n    /**\n     * Calls updateLogo() on each canvas. A tidy method.\n     */\n    private void updateLogo() {\n        HashSet<DisplayCanvas> canvases = new HashSet<>();\n        canvases.addAll(getCanvases());\n        for (DisplayCanvas canvas : canvases) {\n            canvas.updateLogo();\n        }\n    }\n\n    public void updateCanvases() {\n        HashSet<DisplayCanvas> canvases = new HashSet<>();\n        canvases.addAll(getCanvases());\n        for (DisplayCanvas canvas : canvases) {\n            canvas.update();\n        }\n    }\n\n    /**\n     * Determine if content is currently being shown on this panel, if not it\n     * may be showing the logo, cleared, blacked or hidden.\n     * <p>\n     *\n     * @return true if content is showing, false otherwise.\n     */\n    public boolean isContentShowing() {\n        return !(logo.isSelected() || clear.isSelected() || black.isSelected() || hide.isSelected());\n    }\n\n    public boolean getLogoed() {\n        return logo.isSelected();\n    }\n\n    public boolean getBlacked() {\n        return black.isSelected();\n    }\n\n    public boolean getCleared() {\n        return clear.isSelected();\n    }\n\n    public void setBlacked(boolean isBlack) {\n        this.black.setSelected(isBlack);\n    }\n\n    public void clickBlacked() {\n        this.black.fire();\n    }\n\n    public void clickLogoed() {\n        this.logo.fire();\n    }\n\n    public void stopLoop() {\n        loop.setSelected(false);\n    }\n\n    /**\n     * Get a preview image of the web view or move it to the main panel if it's\n     * not visible.\n     *\n     * @return a screenshot image of the web view\n     */\n    private Image geWebPreviewImage() {\n        DisplayCanvas canvas = QueleaApp.get().getProjectionWindow().getCanvas();\n        if (QueleaApp.get().getProjectionWindow().isShowing() && isContentShowing()) {\n            Double d = canvas.getBoundsInLocal().getHeight();\n            int h = d.intValue();\n            Double d2 = canvas.getBoundsInLocal().getWidth();\n            int w = d2.intValue();\n            webPreviewImage = new WritableImage(w, h);\n            SnapshotParameters params = new SnapshotParameters();\n            params.setFill(Color.TRANSPARENT);\n            canvas.snapshot(params, webPreviewImage);\n            BufferedImage bi = SwingFXUtils.fromFXImage((WritableImage) webPreviewImage, null);\n            SwingFXUtils.toFXImage(bi, webPreviewImage);\n            WebView wv = getWebPanel().removeWebView();\n            if (wv != null && !canvas.getChildren().contains(wv)) {\n                canvas.getChildren().add(wv);\n            }\n            return webPreviewImage;\n        } else {\n            getWebPanel().addWebView((WebDisplayable) getDisplayable());\n            return new Image(\"file:icons/web preview.png\");\n        }\n    }\n\n    /**\n     * Start native PowerPoint service.\n     *\n     * @param d a Presentation displayable to show in PowerPoint\n     */\n    private void startPowerPoint(Displayable d) {\n        String filePath;\n        filePath = \"\\\"\" + d.getResources().toString().replace(\"[\", \"\").replace(\"]\", \"\") + \"\\\"\";\n        String openPP = PowerPointHandler.openPresentation(filePath);\n        if (openPP.contains(\"not started\")) {\n            Dialog.showInfo(LabelGrabber.INSTANCE.getLabel(\"presentation.not.started.label\"), LabelGrabber.INSTANCE.getLabel(\"presentation.not.started.message\"));\n            LoggerUtils.getLogger().log(Level.INFO, \"PowerPoint couldn't be started.\");\n        } else if (openPP.contains(\"running\")) {\n            if (!(oldD instanceof PresentationDisplayable)) {\n                Dialog.showAndWaitError(LabelGrabber.INSTANCE.getLabel(\"close.all.presentations.label\"), LabelGrabber.INSTANCE.getLabel(\"close.all.presentations.message\"));\n            }\n            PowerPointHandler.closePresentation();\n            try {\n                Thread.sleep(500);\n            } catch (InterruptedException ex) {\n                Logger.getLogger(LivePanel.class.getName()).log(Level.SEVERE, null, ex);\n            }\n            openPP = PowerPointHandler.openPresentation(filePath);\n            if (openPP.contains(\"not started\")) {\n                Dialog.showInfo(LabelGrabber.INSTANCE.getLabel(\"presentation.not.started.label\"), LabelGrabber.INSTANCE.getLabel(\"presentation.not.started.message\"));\n                LoggerUtils.getLogger().log(Level.INFO, \"PowerPoint couldn't be started.\");\n            }\n        }\n        if (!openPP.contains(\"not started\")) {\n            focusDialog = Dialog.buildFocusSwitcher().build();\n            focusDialog.setAlwaysOnTop(true);\n            focusDialog.initModality(Modality.NONE);\n            focusDialog.setResizable(false);\n            focusDialog.setY(20);\n            focusDialog.setX(20);\n            focusDialog.show();\n            QueleaApp.get().getMainWindow().requestFocus();\n        }\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/LivePreviewPanel.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main;\n\nimport java.util.HashSet;\nimport java.util.List;\nimport java.util.Set;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport javafx.scene.Node;\nimport javafx.scene.input.KeyCode;\nimport javafx.scene.input.TransferMode;\nimport javafx.scene.layout.BorderPane;\nimport org.quelea.data.displayable.AudioDisplayable;\nimport org.quelea.data.displayable.Displayable;\nimport org.quelea.data.displayable.ImageDisplayable;\nimport org.quelea.data.displayable.ImageGroupDisplayable;\nimport org.quelea.data.displayable.IndexedDisplayable;\nimport org.quelea.data.displayable.MultimediaDisplayable;\nimport org.quelea.data.displayable.PdfDisplayable;\nimport org.quelea.data.displayable.PresentationDisplayable;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.data.displayable.TextDisplayable;\nimport org.quelea.data.displayable.TimerDisplayable;\nimport org.quelea.data.displayable.VideoDisplayable;\nimport org.quelea.data.displayable.WebDisplayable;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.utils.SongDisplayableList;\nimport org.quelea.windows.image.ImagePanel;\nimport org.quelea.windows.imagegroup.ImageGroupPanel;\nimport org.quelea.windows.lyrics.SelectLyricsPanel;\nimport org.quelea.windows.main.quickedit.QuickEditDialog;\nimport org.quelea.windows.main.widgets.CardPane;\nimport org.quelea.windows.multimedia.MultimediaPanel;\nimport org.quelea.windows.pdf.PdfPanel;\nimport org.quelea.windows.timer.TimerPanel;\nimport org.quelea.windows.presentation.PresentationPanel;\nimport org.quelea.windows.web.WebPanel;\n\n/**\n * The common superclass of the live / preview panels used for selecting the\n * lyrics / picture.\n * <p/>\n *\n * @author Michael\n */\npublic abstract class LivePreviewPanel extends BorderPane {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    private final Set<DisplayStage> windows = new HashSet<>();\n    private Displayable displayable;\n    private final CardPane<AbstractPanel> cardPanel = new CardPane<>();\n    private static final String LYRICS_LABEL = \"LYRICS\";\n    private static final String IMAGE_LABEL = \"IMAGE\";\n    private static final String VIDEO_LABEL = \"VIDEO\";\n    private static final String TIMER_LABEL = \"TIMER\";\n    private static final String AUDIO_LABEL = \"AUDIO\";\n    private static final String PRESENTATION_LABEL = \"PPT\";\n    private static final String PDF_LABEL = \"PDF\";\n    private static final String WEB_LABEL = \"WEB\";\n    private static final String IMAGE_GROUP_LABEL = \"IMAGE_GROUP\";\n    private String currentLabel;\n    private SelectLyricsPanel lyricsPanel = new SelectLyricsPanel(this);\n    private final ImagePanel imagePanel = new ImagePanel();\n    private final PresentationPanel presentationPanel = new PresentationPanel(this);\n    private final PdfPanel pdfPanel = new PdfPanel(this);\n    private final MultimediaPanel videoPanel = new MultimediaPanel();\n    private final MultimediaPanel audioPanel = new MultimediaPanel();\n    private final TimerPanel timerPanel = new TimerPanel();\n    private final WebPanel webPanel = new WebPanel();\n    private final ImageGroupPanel imageGroupPanel = new ImageGroupPanel(this);\n    private final QuickEditDialog quickEditDialog = new QuickEditDialog();\n\n    /**\n     * Create the live preview panel, common superclass of live and preview\n     * panels.\n     */\n    public LivePreviewPanel() {\n        setCenter(cardPanel);\n        cardPanel.add(lyricsPanel, LYRICS_LABEL);\n        cardPanel.add(imagePanel, IMAGE_LABEL);\n        cardPanel.add(videoPanel, VIDEO_LABEL);\n        cardPanel.add(timerPanel, TIMER_LABEL);\n        cardPanel.add(audioPanel, AUDIO_LABEL);\n        cardPanel.add(presentationPanel, PRESENTATION_LABEL);\n        cardPanel.add(pdfPanel, PDF_LABEL);\n        cardPanel.add(webPanel, WEB_LABEL);\n        cardPanel.add(imageGroupPanel, IMAGE_GROUP_LABEL);\n        cardPanel.show(LYRICS_LABEL);\n        lyricsPanel.getLyricsList().setOnMouseClicked(me -> {\n            if (me.isControlDown() || me.isShiftDown()) {\n                doQuickEdit(lyricsPanel.getLyricsList().getQuickEditIndex());\n            }\n        });\n\n        lyricsPanel.getLyricsList().setOnKeyPressed(ke -> {\n            if (ke.isControlDown() && ke.getCode() == KeyCode.Q) {\n                doQuickEdit(lyricsPanel.getCurrentIndex());\n            }\n        });\n        presentationPanel.buildLoopTimeline();\n        setOnDragOver(event -> {\n            if (event.getDragboard().getContent(SongDisplayable.SONG_DISPLAYABLE_FORMAT) != null) {\n                event.acceptTransferModes(TransferMode.ANY);\n            }\n        });\n        setOnDragDropped(event -> {\n            if (event.getDragboard().getContent(SongDisplayable.SONG_DISPLAYABLE_FORMAT) instanceof SongDisplayableList) {\n                final List<IndexedDisplayable> displayables = ((SongDisplayableList) event.getDragboard().getContent(SongDisplayable.SONG_DISPLAYABLE_FORMAT)).getSongDisplayables();\n                if (!displayables.isEmpty()) {\n                    setDisplayable(displayables.get(0).displayable(), 0);\n                }\n            }\n            event.consume();\n        });\n    }\n\n    public void selectFirstLyric() {\n        if (LYRICS_LABEL.equals(currentLabel)) {\n            lyricsPanel.selectFirst();\n        } else if (PDF_LABEL.equals(currentLabel)) {\n            pdfPanel.selectFirst();\n        } else if (IMAGE_GROUP_LABEL.equals(currentLabel)) {\n            imageGroupPanel.selectFirst();\n        }\n    }\n\n    public void selectLastLyric() {\n        if (PRESENTATION_LABEL.equals(currentLabel)) {\n            presentationPanel.selectLast();\n        } else if (LYRICS_LABEL.equals(currentLabel)) {\n            lyricsPanel.selectLast();\n        } else if (PDF_LABEL.equals(currentLabel)) {\n            pdfPanel.selectLast();\n        } else if (IMAGE_GROUP_LABEL.equals(currentLabel)) {\n            imageGroupPanel.selectLast();\n        }\n    }\n\n    /**\n     * Get the video panel on this live / preview panel.\n     * <p/>\n     *\n     * @return the presentation panel.\n     */\n    public MultimediaPanel getVideoPanel() {\n        return videoPanel;\n    }\n\n    /**\n     * Get the presentation panel on this live / preview panel.\n     * <p/>\n     *\n     * @return the presentation panel.\n     */\n    public PresentationPanel getPresentationPanel() {\n        return presentationPanel;\n    }\n\n    /**\n     * Get the PDF panel on this live / preview panel.\n     * <p/>\n     *\n     * @return the PDF panel.\n     */\n    public PdfPanel getPdfPanel() {\n        return pdfPanel;\n    }\n\n    /**\n     * Get the image group panel on this live / preview panel.\n     * <p/>\n     *\n     * @return the image group panel.\n     */\n    public ImageGroupPanel getImageGroupPanel() {\n        return imageGroupPanel;\n    }\n\n    /**\n     * Perform a quick edit on the given index.\n     * <p/>\n     *\n     * @param index the index on which to perform the quick edit.\n     */\n    public void doQuickEdit(int index) {\n        if (displayable instanceof SongDisplayable) {\n            SongDisplayable song = (SongDisplayable) displayable;\n            quickEditDialog.setSongSection(song, index);\n            quickEditDialog.show();\n            setDisplayable(song, getIndex());\n        }\n    }\n\n    /**\n     * Update the one line mode for the lyrics panel from the properties file.\n     */\n    public void updateOneLineMode() {\n        lyricsPanel.setOneLineMode(QueleaProperties.get().getOneLineMode());\n    }\n\n    /**\n     * Get the container panel (the one using the cardlayout that flips between\n     * the various available panels.\n     * <p/>\n     *\n     * @return the container panel.\n     */\n    public Node getCurrentPane() {\n        return cardPanel.getCurrentPane();\n    }\n\n    /**\n     * Clear all the contained panels to a null displayable.\n     */\n    public void removeDisplayable() {\n        displayable = null;\n        if (PRESENTATION_LABEL.equals(currentLabel)) {\n            presentationPanel.showDisplayable(null, 0);\n        }\n        if (PDF_LABEL.equals(currentLabel)) {\n            pdfPanel.showDisplayable(null, 0);\n        }\n        if (IMAGE_GROUP_LABEL.equals(currentLabel)) {\n            imageGroupPanel.showDisplayable(null, 0);\n        }\n        if (VIDEO_LABEL.equals(currentLabel)) {\n            videoPanel.showDisplayable(null, 0);\n        }\n        if (WEB_LABEL.equals(currentLabel)) {\n            webPanel.showDisplayable((WebDisplayable) null);\n        }\n        for (Node panel : cardPanel) {\n            if (panel instanceof ContainedPanel) {\n                ((ContainedPanel) panel).removeCurrentDisplayable();\n            } else {\n                LOGGER.log(Level.WARNING, \"Panel was {0} which isn't a ContainedPanel... can't clear it.\", panel.getClass());\n            }\n        }\n        if (currentLabel == null || !currentLabel.equals(LYRICS_LABEL)) {\n            cardPanel.show(LYRICS_LABEL);\n            currentLabel = LYRICS_LABEL;\n        }\n    }\n\n    /**\n     * Get the currently selected displayable index. Only suitable for\n     * powerpoint / PDF / image group / lyrics panels.\n     * <p/>\n     *\n     * @return the currently selected displayable index.\n     */\n    public int getIndex() {\n        if (PRESENTATION_LABEL.equals(currentLabel)) {\n            return presentationPanel.getIndex();\n        } else if (PDF_LABEL.equals(currentLabel)) {\n            return pdfPanel.getIndex();\n        } else if (IMAGE_GROUP_LABEL.equals(currentLabel)) {\n            return imageGroupPanel.getIndex();\n        } else {\n            return lyricsPanel.getIndex();\n        }\n    }\n\n    /**\n     * Get the length of the current displayable. Only suitable for\n     * powerpoint / PDF / image group / lyrics panels.\n     * <p/>\n     *\n     * @return the currently selected displayable index.\n     */\n\n    public int getLength() {\n        if (PRESENTATION_LABEL.equals(currentLabel)) {\n            return presentationPanel.getSlideCount();\n        } else if (PDF_LABEL.equals(currentLabel)) {\n            return pdfPanel.getSlideCount();\n        } else if (IMAGE_GROUP_LABEL.equals(currentLabel)) {\n            return imageGroupPanel.getSlideCount();\n        } else {\n            return lyricsPanel.getSlideCount();\n        }\n    }\n\n    /**\n     * Advances currently selected displayable index. Only suitable for\n     * powerpoint / lyrics panels.\n     * <p/>\n     */\n    public void advance() {\n        if (PRESENTATION_LABEL.equals(currentLabel)) {\n            presentationPanel.advance();\n        } else if (PDF_LABEL.equals(currentLabel)) {\n            pdfPanel.advance();\n        } else if (IMAGE_GROUP_LABEL.equals(currentLabel)) {\n            imageGroupPanel.advance();\n        } else if (LYRICS_LABEL.equals(currentLabel)) {\n            lyricsPanel.advance();\n        } else if (IMAGE_LABEL.equals(currentLabel)) {\n            imagePanel.advance();\n        } else if (VIDEO_LABEL.equals(currentLabel)) {\n            videoPanel.advance();\n        } else if (TIMER_LABEL.equals(currentLabel)) {\n            timerPanel.advance();\n        } else if (WEB_LABEL.equals(currentLabel)) {\n            webPanel.advance();\n        }\n    }\n\n    /**\n     * Moves to previous slide in currently selected displayable index. Only\n     * suitable for powerpoint / lyrics panels.\n     * <p/>\n     */\n    public void previous() {\n        if (PRESENTATION_LABEL.equals(currentLabel)) {\n            presentationPanel.previous();\n        } else if (PDF_LABEL.equals(currentLabel)) {\n            pdfPanel.previous();\n        } else if (IMAGE_GROUP_LABEL.equals(currentLabel)) {\n            imageGroupPanel.previous();\n        } else if (LYRICS_LABEL.equals(currentLabel)) {\n            lyricsPanel.previous();\n        } else if (IMAGE_LABEL.equals(currentLabel)) {\n            imagePanel.previous();\n        } else if (VIDEO_LABEL.equals(currentLabel)) {\n            videoPanel.previous();\n        } else if (TIMER_LABEL.equals(currentLabel)) {\n            timerPanel.previous();\n        } else if (WEB_LABEL.equals(currentLabel)) {\n            webPanel.previous();\n        }\n    }\n\n    /**\n     * Get the select lyrics panel on this panel.\n     * <p/>\n     *\n     * @return the select lyrics panel.\n     */\n    public SelectLyricsPanel getLyricsPanel() {\n        return lyricsPanel;\n    }\n\n    /**\n     * Set the displayable shown on this panel.\n     * <p/>\n     *\n     * @param displayable the displayable to show.\n     * @param index       the index of the displayable to show, if relevant.\n     */\n    public void setDisplayable(final Displayable displayable, final int index) {\n        Utils.checkFXThread();\n        if (!(this.displayable instanceof TextDisplayable && displayable instanceof TextDisplayable)) {\n            lyricsPanel.removeCurrentDisplayable();\n        }\n\n        QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getScheduleList().getListView().refresh();\n\n        this.displayable = displayable;\n        presentationPanel.stopCurrent();\n        pdfPanel.stopCurrent();\n        imageGroupPanel.stopCurrent();\n        videoPanel.stopCurrent();\n\n        audioPanel.removeCurrentDisplayable();\n        videoPanel.removeCurrentDisplayable();\n        timerPanel.removeCurrentDisplayable();\n        imagePanel.removeCurrentDisplayable();\n        presentationPanel.removeCurrentDisplayable();\n        pdfPanel.removeCurrentDisplayable();\n        webPanel.removeCurrentDisplayable();\n        imageGroupPanel.removeCurrentDisplayable();\n        if (PRESENTATION_LABEL.equals(currentLabel)) {\n            presentationPanel.showDisplayable(null, 0);\n        }\n        if (PDF_LABEL.equals(currentLabel)) {\n            pdfPanel.showDisplayable(null, 0);\n        }\n        if (IMAGE_GROUP_LABEL.equals(currentLabel)) {\n            imageGroupPanel.showDisplayable(null, 0);\n        }\n        if (VIDEO_LABEL.equals(currentLabel)) {\n            videoPanel.showDisplayable(null, 0);\n        }\n        if (WEB_LABEL.equals(currentLabel)) {\n            webPanel.showDisplayable((WebDisplayable) null);\n        }\n        if (displayable instanceof TextDisplayable) {\n            lyricsPanel.showDisplayable((TextDisplayable) displayable, index);\n            cardPanel.show(LYRICS_LABEL);\n            currentLabel = LYRICS_LABEL;\n        } else if (displayable instanceof ImageDisplayable) {\n            imagePanel.showDisplayable((ImageDisplayable) displayable);\n            cardPanel.show(IMAGE_LABEL);\n            currentLabel = IMAGE_LABEL;\n        } else if (displayable instanceof VideoDisplayable) {\n            videoPanel.showDisplayable((MultimediaDisplayable) displayable, index);\n            cardPanel.show(VIDEO_LABEL);\n            currentLabel = VIDEO_LABEL;\n            if (QueleaProperties.get().getAutoPlayVideo() && LivePreviewPanel.this instanceof LivePanel) {\n                videoPanel.play();\n            }\n        } else if (displayable instanceof TimerDisplayable) {\n            timerPanel.showDisplayable((MultimediaDisplayable) displayable);\n            cardPanel.show(TIMER_LABEL);\n            currentLabel = TIMER_LABEL;\n            if (LivePreviewPanel.this instanceof LivePanel) {\n                timerPanel.play();\n            }\n        } else if (displayable instanceof AudioDisplayable) {\n            audioPanel.showDisplayable((MultimediaDisplayable) displayable);\n            cardPanel.show(AUDIO_LABEL);\n            currentLabel = AUDIO_LABEL;\n        } else if (displayable instanceof PresentationDisplayable) {\n            presentationPanel.showDisplayable((PresentationDisplayable) displayable, index);\n            cardPanel.show(PRESENTATION_LABEL);\n            currentLabel = PRESENTATION_LABEL;\n        } else if (displayable instanceof PdfDisplayable) {\n            pdfPanel.showDisplayable((PdfDisplayable) displayable, index);\n            cardPanel.show(PDF_LABEL);\n            currentLabel = PDF_LABEL;\n        } else if (displayable instanceof WebDisplayable) {\n            webPanel.showDisplayable((WebDisplayable) displayable);\n            cardPanel.show(WEB_LABEL);\n            currentLabel = WEB_LABEL;\n            webPanel.setText();\n        } else if (displayable instanceof ImageGroupDisplayable) {\n            imageGroupPanel.showDisplayable((ImageGroupDisplayable) displayable, index);\n            cardPanel.show(IMAGE_GROUP_LABEL);\n            currentLabel = IMAGE_GROUP_LABEL;\n        } else if (displayable == null) {\n//            LOGGER.log(Level.WARNING, \"BUG: Called showDisplayable(null), should probably call clear() instead.\", \n//                    new RuntimeException(\"BUG: Called showDisplayable(null), should probably call clear() instead.\")); clear();\n        } else {\n            throw new RuntimeException(\"Displayable type not implemented: \" + displayable.getClass());\n        }\n    }\n\n    /**\n     * Refresh the current content of this panel, if any exists.\n     */\n    public void refresh() {\n        if (getDisplayable() != null) {\n            setDisplayable(getDisplayable(), getIndex());\n        }\n    }\n\n    /**\n     * Get the displayable currently being displayed, or null if there isn't\n     * one.\n     * <p/>\n     *\n     * @return the current displayable.\n     */\n    public Displayable getDisplayable() {\n        return displayable;\n    }\n\n    /**\n     * Register a display canvas with this lyrics panel.\n     * <p/>\n     *\n     * @param canvas the canvas to register.\n     */\n    public final void registerDisplayCanvas(final DisplayCanvas canvas) {\n        if (canvas == null) {\n            return;\n        }\n        for (AbstractPanel panel : cardPanel.getPanels()) {\n            panel.registerDisplayCanvas(canvas);\n        }\n    }\n\n    /**\n     * Register a display window with this lyrics panel.\n     * <p/>\n     *\n     * @param window the window to register.\n     */\n    public final void registerDisplayWindow(final DisplayStage window) {\n        if (window == null) {\n            return;\n        }\n        windows.add(window);\n    }\n\n    /**\n     * Get the canvases registered to this panel.\n     * <p/>\n     *\n     * @return the canvases.\n     */\n    public Set<DisplayCanvas> getCanvases() {\n        return ((AbstractPanel) getCurrentPane()).getCanvases();\n    }\n\n    /**\n     * Get the windows registered to this panel.\n     * <p/>\n     *\n     * @return the windows.\n     */\n    public Set<DisplayStage> getWindows() {\n        return windows;\n    }\n\n    /**\n     * Get the timer panel.\n     * <p/>\n     *\n     * @return the timer panel.\n     */\n    public TimerPanel getTimerPanel() {\n        return timerPanel;\n    }\n\n    /**\n     * Get the web panel.\n     * <p/>\n     *\n     * @return the web panel.\n     */\n    public WebPanel getWebPanel() {\n        return webPanel;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/Main.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify it under\n * the terms of the GNU General Public License as published by the Free Software\n * Foundation, either version 3 of the License, or (at your option) any later\n * version.\n *\n * This program is distributed in the hope that it will be useful, but WITHOUT\n * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\n * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License along with\n * this program. If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main;\n\nimport javafx.application.Application;\nimport javafx.application.Platform;\nimport javafx.collections.ObservableList;\nimport javafx.stage.Screen;\nimport javafx.stage.Stage;\nimport org.freedesktop.gstreamer.Gst;\nimport org.freedesktop.gstreamer.Version;\nimport org.javafx.dialog.Dialog;\nimport org.quelea.data.bible.BibleManager;\nimport org.quelea.data.db.SongManager;\nimport org.quelea.data.powerpoint.OOUtils;\nimport org.quelea.server.AutoDetectServer;\nimport org.quelea.server.MobileLyricsServer;\nimport org.quelea.server.RemoteControlServer;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.FontInstaller;\nimport org.quelea.services.utils.GStreamerInitState;\nimport org.quelea.services.utils.GStreamerUtils;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.ShortcutManager;\nimport org.quelea.services.utils.UpdateChecker;\nimport org.quelea.services.utils.UserFileChecker;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.utils.DesktopApi;\nimport org.quelea.windows.splash.SplashStage;\n\nimport javax.imageio.ImageIO;\nimport java.awt.*;\nimport java.awt.image.BufferedImage;\nimport java.io.File;\nimport java.io.IOException;\nimport java.util.List;\nimport java.util.concurrent.ExecutorService;\nimport java.util.concurrent.Executors;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\n\n/**\n * The main class, sets everything in motion...\n *\n * @author Michael\n */\npublic final class Main extends Application {\n\n    private static Logger LOGGER;\n    private MainWindow mainWindow;\n    private DisplayStage fullScreenWindow;\n    private DisplayStage stageWindow;\n    private Dialog gstreamerWarningDialog;\n\n    public static void main(String[] args) {\n        Application.launch(args);\n    }\n\n    /**\n     * Starts the program off, this is the first thing that is executed by\n     * Quelea when the program starts.\n     * <p>\n     *\n     * @param stage the stage JavaFX provides that we don't use (ignored)\n     */\n    @Override\n    public void start(Stage stage) {\n        QueleaProperties.init(getParameters().getNamed().get(\"userhome\"));\n        LOGGER = LoggerUtils.getLogger();\n        System.setProperty(\"glass.accessible.force\", \"false\");\n        setupExceptionHandling();\n        setupTranslator();\n        final SplashStage splashWindow = new SplashStage();\n        splashWindow.show();\n        LOGGER.log(Level.INFO, \"Started, version {0}\", QueleaProperties.VERSION.getVersionString());\n        LOGGER.log(Level.INFO, \"OS name: {0}\", System.getProperty(\"os.name\"));\n        LOGGER.log(Level.INFO, \"Using JAVA version {0}\", System.getProperty(\"java.version\"));\n        LOGGER.log(Level.INFO, \"64-bit: {0}\", Utils.is64Bit());\n        BufferedImage img;\n        try {\n            img = ImageIO.read(new File(\"icons/logo64.png\"));\n            Taskbar.getTaskbar().setIconImage(img);\n        } catch (Exception ex) {\n            LOGGER.log(Level.INFO, \"Couldn't set icon, probably an unsupported platform and nothing to worry about: {0}\", ex.getMessage());\n        }\n        ExecutorService backgroundExecutor = Executors.newSingleThreadExecutor();\n\n        new Thread(() -> {\n            try {\n                boolean gok;\n\n                if(QueleaProperties.get().getDisableVideo()) {\n                    gok = false;\n                }\n                else {\n                    GStreamerUtils.configurePaths();\n                    try {\n                        Gst.init(Version.BASELINE, \"Quelea\");\n                        GStreamerUtils.setFeaturePriorities();\n                        gok = true;\n                    } catch (UnsatisfiedLinkError err) {\n                        LOGGER.log(Level.WARNING, \"No GStreamer\", err);\n                        gok = false;\n                    }\n                }\n                GStreamerInitState.INIT_SUCCESS = gok;\n                final boolean gstreamerOk = gok;\n\n                new FontInstaller().setupBundledFonts();\n                new UserFileChecker(QueleaProperties.get().getQueleaUserHome()).checkUserFiles();\n\n                final ObservableList<Screen> monitors = Screen.getScreens();\n                LOGGER.log(Level.INFO, \"Number of displays: {0}\", monitors.size());\n\n                final int projectorScreen = QueleaProperties.get().getProjectorScreen();\n                final int stageScreen = QueleaProperties.get().getStageScreen();\n                final int monitorNumber = monitors.size();\n\n                final boolean lyricsHidden = !QueleaProperties.get().isProjectorModeCoords() && (projectorScreen >= monitorNumber || projectorScreen < 0);\n                final boolean stageHidden = !QueleaProperties.get().isStageModeCoords() && (stageScreen >= monitorNumber || stageScreen < 0);\n\n                if (QueleaProperties.get().getUseMobLyrics()) {\n                    LOGGER.log(Level.INFO, \"Starting lyric server on {0}\", QueleaProperties.get().getMobLyricsPort());\n                    try {\n                        MobileLyricsServer mls = new MobileLyricsServer(QueleaProperties.get().getMobLyricsPort());\n                        mls.start();\n                        QueleaApp.get().setMobileLyricsServer(mls);\n                    } catch (IOException ex) {\n                        LOGGER.log(Level.INFO, \"Couldn't create lyric server\", ex);\n                    }\n                } else {\n                    LOGGER.log(Level.INFO, \"Mobile lyrics disabled\");\n                }\n\n                if (QueleaProperties.get().getUseRemoteControl()) {\n                    LOGGER.log(Level.INFO, \"Starting remote control server on {0}\", QueleaProperties.get().getRemoteControlPort());\n                    try {\n                        RemoteControlServer rcs = new RemoteControlServer(QueleaProperties.get().getRemoteControlPort());\n                        rcs.start();\n                        QueleaApp.get().setRemoteControlServer(rcs);\n                    } catch (IOException ex) {\n                        LOGGER.log(Level.INFO, \"Couldn't create remote control server\", ex);\n                    }\n                } else {\n                    LOGGER.log(Level.INFO, \"Remote control disabled\");\n                }\n\n                if (QueleaProperties.get().getUseMobLyrics() || QueleaProperties.get().getUseRemoteControl()) {\n                    LOGGER.log(Level.INFO, \"Starting auto-detection server on {0}\", QueleaProperties.get().getAutoDetectPort());\n                    try {\n                        AutoDetectServer ads = new AutoDetectServer(QueleaProperties.get().getAutoDetectPort());\n                        ads.start();\n                        QueleaApp.get().setAutoDetectServer(ads);\n                    } catch (IOException ex) {\n                        LOGGER.log(Level.INFO, \"Couldn't create auto-detect server\", ex);\n                    }\n                } else {\n                    LOGGER.log(Level.INFO, \"Auto-detect servers disabled\");\n                }\n\n                if (QueleaProperties.get().getWebProxyHost() != null && QueleaProperties.get().getWebProxyPort() != null && QueleaProperties.get().getWebProxyUser() != null && QueleaProperties.get().getWebProxyPassword() != null) {\n                    System.setProperty(\"http.proxyHost\", QueleaProperties.get().getWebProxyHost());\n                    System.setProperty(\"http.proxyPort\", QueleaProperties.get().getWebProxyPort());\n                    System.setProperty(\"http.proxyUser\", QueleaProperties.get().getWebProxyUser());\n                    System.setProperty(\"http.proxyPassword\", QueleaProperties.get().getWebProxyPassword());\n                }\n                if (lyricsHidden) {\n                    LOGGER.log(Level.INFO, \"Hiding projector display on monitor 0 (base 0!)\");\n                    Platform.runLater(() -> {\n                        fullScreenWindow = new DisplayStage(Utils.getBoundsFromRect2D(monitors.get(0).getVisualBounds()), false);\n                        fullScreenWindow.hide();\n                    });\n                } else if (QueleaProperties.get().isProjectorModeCoords()) {\n                    LOGGER.log(Level.INFO, \"Starting projector display: \", QueleaProperties.get().getProjectorCoords());\n                    Platform.runLater(() -> {\n                        fullScreenWindow = new DisplayStage(QueleaProperties.get().getProjectorCoords(), false);\n                    });\n                } else {\n                    LOGGER.log(Level.INFO, \"Starting projector display on monitor {0} (base 0!)\", projectorScreen);\n                    Platform.runLater(() -> {\n                        fullScreenWindow = new DisplayStage(Utils.getBoundsFromRect2D(monitors.get(projectorScreen).getBounds()), false);\n                        fullScreenWindow.setFullScreenAlwaysOnTop(true);\n                    });\n                }\n\n                Platform.runLater(() -> {\n                    QueleaApp.get().setProjectionWindow(fullScreenWindow);\n                });\n\n                if (stageHidden) {\n                    LOGGER.log(Level.INFO, \"Hiding stage display on monitor 0 (base 0!)\");\n                    Platform.runLater(() -> {\n                        stageWindow = new DisplayStage(Utils.getBoundsFromRect2D(monitors.get(0).getVisualBounds()), true);\n                        stageWindow.hide();\n                    });\n                } else if (QueleaProperties.get().isStageModeCoords()) {\n                    Platform.runLater(() -> {\n                        LOGGER.log(Level.INFO, \"Starting stage display: \", QueleaProperties.get().getStageCoords());\n                        stageWindow = new DisplayStage(QueleaProperties.get().getStageCoords(), true);\n                    });\n                } else {\n                    Platform.runLater(() -> {\n                        LOGGER.log(Level.INFO, \"Starting stage display on monitor {0} (base 0!)\", stageScreen);\n                        stageWindow = new DisplayStage(Utils.getBoundsFromRect2D(monitors.get(stageScreen).getVisualBounds()), true);\n                    });\n                }\n\n                Platform.runLater(() -> {\n                    QueleaApp.get().setStageWindow(stageWindow);\n                });\n\n                backgroundExecutor.submit(() -> {\n                    LOGGER.log(Level.INFO, \"Loading bibles\");\n                    BibleManager.get();\n                    LOGGER.log(Level.INFO, \"Loading bibles done\");\n                });\n\n                if (SongManager.get() == null) {\n                    Platform.runLater(() -> {\n                        Dialog.showAndWaitError(LabelGrabber.INSTANCE.getLabel(\"already.running.title\"), LabelGrabber.INSTANCE.getLabel(\"already.running.error\"));\n                        System.exit(1);\n                    });\n                }\n                OOUtils.attemptInit();\n                Platform.runLater(() -> {\n                    mainWindow = new MainWindow(true, gstreamerOk);\n                });\n\n                backgroundExecutor.submit(() -> {\n                    new UpdateChecker().checkUpdate(false, false, false); //Check updates\n                });\n\n                LOGGER.log(Level.INFO, \"Registering canvases\");\n                Platform.runLater(() -> {\n                    mainWindow.getMainPanel().getLivePanel().registerDisplayCanvas(fullScreenWindow.getCanvas());\n                    mainWindow.getMainPanel().getLivePanel().registerDisplayWindow(fullScreenWindow);\n                    mainWindow.getNoticeDialog().registerCanvas(fullScreenWindow.getCanvas());\n                    if (lyricsHidden) {\n                        fullScreenWindow.hide();\n                    } else {\n                        fullScreenWindow.show();\n                    }\n                    mainWindow.getMainPanel().getLivePanel().registerDisplayCanvas(stageWindow.getCanvas());\n                    mainWindow.getMainPanel().getLivePanel().registerDisplayWindow(stageWindow);\n                    if (stageHidden) {\n                        stageWindow.hide();\n                    } else {\n                        stageWindow.show();\n                    }\n                });\n\n                LOGGER.log(Level.INFO, \"Adding shortcuts.\");\n                Platform.runLater(() -> {\n                    new ShortcutManager().addShortcuts(mainWindow);\n                });\n                LOGGER.log(Level.INFO, \"Loaded everything.\");\n\n                List<String> cmdParams = getParameters().getRaw();\n                if (!cmdParams.isEmpty()) {\n                    String schedulePath = cmdParams.get(cmdParams.size() - 1);\n                    if (!schedulePath.contains(\"--userhome=\") && !schedulePath.contains(\"-psn_\")) {\n                        LOGGER.log(Level.INFO, \"Opening schedule through argument: {0}\", schedulePath);\n                        Platform.runLater(() -> {\n                            QueleaApp.get().openSchedule(new File(schedulePath));\n                        });\n                    }\n                }\n\n                if (Desktop.isDesktopSupported()) {\n                    Desktop desktop = Desktop.getDesktop();\n                    if (desktop.isSupported(Desktop.Action.APP_OPEN_FILE)) {\n                        desktop.setOpenFileHandler((e) -> {\n                            List<File> files = e.getFiles();\n                            if (files != null && files.size() > 0) {\n                                Platform.runLater(() -> {\n                                    QueleaApp.get().openSchedule(files.get(0));\n                                });\n                            }\n                        });\n                    }\n                }\n\n                Platform.runLater(() -> {\n                    splashWindow.hide();\n                    mainWindow.getMainPanel().setSliderPos();\n                    if (!Utils.isLinux()) {\n                        mainWindow.show();\n                    }\n                    showMonitorWarning(monitorNumber);\n                    if (!gstreamerOk && !QueleaProperties.get().getDisableVideo()) {\n                        QueleaProperties.get().setConvertRecordings(false);\n                        String message = LabelGrabber.INSTANCE.getLabel(\"gstreamer.warning.message\");\n                        Dialog.Builder gstreamerWarningDialogBuilder = new Dialog.Builder()\n                                .create()\n                                .setTitle(LabelGrabber.INSTANCE.getLabel(\"gstreamer.warning.title\"))\n                                .setMessage(message)\n                                .addLabelledButton(LabelGrabber.INSTANCE.getLabel(\"continue.without.gstreamer\"), (t) -> {\n                                    gstreamerWarningDialog.hide();\n                                });\n                        gstreamerWarningDialogBuilder.addLabelledButton(LabelGrabber.INSTANCE.getLabel(\"download.gstreamer\"), (t) -> {\n                            String url = \"https://gstreamer.freedesktop.org/download/\";\n                            DesktopApi.browse(url);\n                            gstreamerWarningDialog.hide();\n                        });\n                        gstreamerWarningDialog = gstreamerWarningDialogBuilder.setWarningIcon().build();\n                        gstreamerWarningDialog.showAndWait();\n                    }\n                    mainWindow.show();\n                    QueleaApp.get().doneLoading();\n                });\n            } catch (Throwable ex) {\n                LOGGER.log(Level.SEVERE, \"Uncaught exception during application start-up\", ex);\n                Platform.runLater(() -> {\n                    Dialog.showAndWaitError(LabelGrabber.INSTANCE.getLabel(\"startup.error.title\"), LabelGrabber.INSTANCE.getLabel(\"startup.error.text\").replace(\"$1\", Utils.getDebugLog().getAbsolutePath()));\n                    System.exit(1);\n                });\n            }\n        }).start();\n    }\n\n    /**\n     * If it's appropriate, show the warning about only having 1 monitor.\n     * <p/>\n     *\n     * @param numMonitors the number of monitors.\n     */\n    private void showMonitorWarning(int numMonitors) {\n        if (numMonitors <= 1 && QueleaProperties.get().showSingleMonitorWarning()) {\n            Dialog.showWarning(LabelGrabber.INSTANCE.getLabel(\"one.monitor.title\"), LabelGrabber.INSTANCE.getLabel(\"one.monitor.warning\"));\n        }\n    }\n\n    private void setupExceptionHandling() {\n        Thread.setDefaultUncaughtExceptionHandler(new UncaughtExceptionHandler());\n    }\n\n    private void setupTranslator() {\n        com.memetix.mst.translate.Translate.setClientId(QueleaProperties.get().getTranslateClientID());\n        com.memetix.mst.translate.Translate.setClientSecret(QueleaProperties.get().getTranslateClientSecret());\n    }\n\n    private class UncaughtExceptionHandler implements Thread.UncaughtExceptionHandler {\n\n        @Override\n        public void uncaughtException(Thread t, Throwable e) {\n            LOGGER.log(Level.SEVERE, \"Uncaught exception on thread: \" + t.getName(), e);\n        }\n    }\n}"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/MainPanel.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main;\n\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport javafx.geometry.Orientation;\nimport javafx.scene.control.SplitPane;\nimport javafx.scene.layout.BorderPane;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.windows.library.LibraryPanel;\nimport org.quelea.windows.main.schedule.SchedulePanel;\n\n/**\n * The main body of the main window, containing the schedule, the media bank,\n * the preview and the live panels.\n *\n * @author Michael\n */\npublic class MainPanel extends BorderPane {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    private final SchedulePanel schedulePanel;\n    private final LibraryPanel libraryPanel;\n    private final PreviewPanel previewPanel;\n    private final LivePanel livePanel;\n    private final StatusPanelGroup statusPanelGroup;\n    private final SplitPane mainSplit;\n    private final SplitPane scheduleAndLibrary;\n\n    /**\n     * Create the new main panel.\n     */\n    public MainPanel() {\n        LOGGER.log(Level.INFO, \"Creating schedule panel\");\n        schedulePanel = new SchedulePanel();\n        LOGGER.log(Level.INFO, \"Creating library panel\");\n        libraryPanel = new LibraryPanel();\n        LOGGER.log(Level.INFO, \"Creating preview panel\");\n        previewPanel = new PreviewPanel();\n        LOGGER.log(Level.INFO, \"Creating live panel\");\n        livePanel = new LivePanel();\n\n        LOGGER.log(Level.INFO, \"Creating split panels\");\n        scheduleAndLibrary = new SplitPane();\n        scheduleAndLibrary.setMinWidth(160);\n        scheduleAndLibrary.setOrientation(Orientation.VERTICAL);\n        scheduleAndLibrary.getItems().add(schedulePanel);\n        scheduleAndLibrary.getItems().add(libraryPanel);\n\n        // Link the preview and live dividers on the main window if the user wants them to move together\n        if(  QueleaProperties.get().getLinkPreviewAndLiveDividers() ) {\n            previewPanel.getLyricsPanel().getSplitPane().getDividers().get(0).positionProperty().\n                    bindBidirectional(livePanel.getLyricsPanel().getSplitPane().getDividers().get(0).positionProperty());\n        }\n\n        previewPanel.getLyricsPanel().getSplitPane().setDividerPositions(0.58);\n        livePanel.getLyricsPanel().getSplitPane().setDividerPositions(0.58);\n\n        mainSplit = new SplitPane();\n        mainSplit.setOrientation(Orientation.HORIZONTAL);\n        mainSplit.getItems().add(scheduleAndLibrary);\n        mainSplit.getItems().add(previewPanel);\n        mainSplit.getItems().add(livePanel);\n        setCenter(mainSplit);\n        statusPanelGroup = new StatusPanelGroup();\n        setBottom(statusPanelGroup);\n        LOGGER.log(Level.INFO, \"Created main panel\");\n    }\n\n    /**\n     * Set the position of the dividers based on the properties file.\n     */\n    public void setSliderPos() {\n        double mainPos = QueleaProperties.get().getMainDivPos();\n        double prevLivePos = QueleaProperties.get().getPrevLiveDivPos();\n        double canvasPos = QueleaProperties.get().getCanvasDivPos();\n        double previewPos = QueleaProperties.get().getPreviewDivposKey();\n        double libraryPos = QueleaProperties.get().getLibraryDivPos();\n        if (prevLivePos != -1 && mainPos != -1) {\n            mainSplit.setDividerPositions(mainPos, prevLivePos);\n        } else {\n            mainSplit.setDividerPositions(0.2717, 0.6384);\n        }\n\n        if (canvasPos != -1 && (QueleaProperties.get().getLinkPreviewAndLiveDividers() || previewPos == -1 ) ) {\n            // live divider pos is found and either the preview and live dividers are linked, or we don't have a\n            // position saved for the preview divider so set both live and preview to saved value for live\n            previewPanel.getLyricsPanel().getSplitPane().setDividerPositions(canvasPos);\n            livePanel.getLyricsPanel().getSplitPane().setDividerPositions(canvasPos);\n        } else if (canvasPos != -1) {\n            // live and preview dividers not linked, and we have a position saved for the live divider so just set live\n            livePanel.getLyricsPanel().getSplitPane().setDividerPositions(canvasPos);\n        }\n\n        if (previewPos != -1 && !QueleaProperties.get().getLinkPreviewAndLiveDividers()) {\n            // preview divider pos is found, and not linked with live divider, so just set preview divider position\n            previewPanel.getLyricsPanel().getSplitPane().setDividerPositions(previewPos);\n        }\n\n        if (libraryPos != -1) {\n            scheduleAndLibrary.setDividerPositions(libraryPos);\n        } else {\n            scheduleAndLibrary.setDividerPositions(0.5);\n        }\n    }\n\n    /**\n     * Get the main splitpane divider position.\n     *\n     * @return the main splitpane divider position.\n     */\n    public double getMainDivPos() {\n        return mainSplit.getDividerPositions()[0];\n    }\n\n    /**\n     * Get the preview / live splitpane divider position.\n     *\n     * @return the preview / live splitpane divider position.\n     */\n    public double getPrevLiveDivPos() {\n        return mainSplit.getDividerPositions()[1];\n    }\n\n    /**\n     * Get the library / schedule splitpane divider position.\n     *\n     * @return the library / schedule splitpane divider position.\n     */\n    public double getLibraryDivPos() {\n        return scheduleAndLibrary.getDividerPositions()[0];\n    }\n\n    /**\n     * Get the panel displaying the selection of the preview lyrics.\n     *\n     * @return the panel displaying the selection of the preview lyrics.\n     */\n    public PreviewPanel getPreviewPanel() {\n        return previewPanel;\n    }\n\n    /**\n     * Get the panel displaying the selection of the live lyrics.\n     *\n     * @return the panel displaying the selection of the live lyrics.\n     */\n    public LivePanel getLivePanel() {\n        return livePanel;\n    }\n\n    /**\n     * Get the panel displaying the order of service.\n     *\n     * @return the panel displaying the order of service.\n     */\n    public SchedulePanel getSchedulePanel() {\n        return schedulePanel;\n    }\n\n    /**\n     * Get the panel displaying the library of media.\n     *\n     * @return the library panel.\n     */\n    public LibraryPanel getLibraryPanel() {\n        return libraryPanel;\n    }\n\n    /**\n     * Get the status panel.\n     *\n     * @return the status panel.\n     */\n    public StatusPanelGroup getStatusPanelGroup() {\n        return statusPanelGroup;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/MainStub.java",
    "content": "package org.quelea.windows.main;\n\n/**\n * For various reasons, with Java/OpenJFX 11+, we\n * can't use a main class that extends the JavaFX\n * Application class. This stub is therefore in\n * place simply to act as an execution point, to\n * then delegate to the real JavaFX main class.\n */\npublic class MainStub {\n\n    public static void main(String[] args) {\n        Main.main(args);\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/MainWindow.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main;\n\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\n\nimport javafx.event.EventHandler;\nimport javafx.scene.Scene;\nimport javafx.scene.layout.BorderPane;\nimport javafx.scene.layout.HBox;\nimport javafx.scene.layout.Priority;\nimport javafx.scene.layout.VBox;\nimport javafx.stage.Stage;\nimport org.quelea.data.GlobalThemeStore;\nimport org.quelea.data.bible.BibleBrowseDialog;\nimport org.quelea.data.bible.BibleSearchDialog;\nimport org.quelea.services.notice.NoticeDialog;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.SceneInfo;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.lyrics.TranslationChoiceDialog;\nimport org.quelea.windows.main.actionhandlers.ExitActionHandler;\nimport org.quelea.windows.main.menus.MainMenuBar;\nimport org.quelea.windows.main.toolbars.MainToolbar;\nimport org.quelea.windows.newsong.SongEntryWindow;\nimport org.quelea.windows.options.PreferencesDialog;\n\nimport javafx.scene.Parent;\n\n/**\n * The main window used to control the projection.\n * <p/>\n *\n * @author Michael\n */\npublic class MainWindow extends Stage {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    private final MainPanel mainpanel;\n    private SongEntryWindow songEntryWindow;\n    private final TranslationChoiceDialog translationChoiceDialog;\n    private final NoticeDialog noticeDialog;\n    private final MainMenuBar menuBar;\n    private final MainToolbar mainToolbar;\n    private final PreferencesDialog preferencesDialog;\n    private final BibleSearchDialog bibleSearchDialog;\n    private final BibleBrowseDialog bibleBrowseDialog;\n    private final GlobalThemeStore globalThemeStore;\n\n    /**\n     * Create a new main window.\n     * <p/>\n     *\n     * @param setApplicationWindow true if this main window should be set as the\n     *                             application-wide main window, false otherwise.\n     */\n    public MainWindow(boolean setApplicationWindow, boolean hasVLC) {\n        setTitle(\"Quelea \" + QueleaProperties.VERSION.getVersionString());\n        Utils.addIconsToStage(this);\n        BorderPane mainPane = new BorderPane();\n        VBox.setVgrow(mainPane, Priority.SOMETIMES);\n        noticeDialog = new NoticeDialog();\n        globalThemeStore = new GlobalThemeStore();\n        LOGGER.log(Level.INFO, \"Creating main window\");\n        if (setApplicationWindow) {\n            QueleaApp.get().setMainWindow(this);\n        }\n        setOnCloseRequest(new EventHandler<javafx.stage.WindowEvent>() {\n            @Override\n            public void handle(javafx.stage.WindowEvent t) {\n                new ExitActionHandler().exit(t);\n            }\n        });\n        LOGGER.log(Level.INFO, \"Creating options dialog\");\n        preferencesDialog = new PreferencesDialog(QueleaApp.get().getClass(), hasVLC);\n\n        LOGGER.log(Level.INFO, \"Creating bible search dialog\");\n        bibleSearchDialog = new BibleSearchDialog();\n        LOGGER.log(Level.INFO, \"Creating bible browse dialog\");\n        bibleBrowseDialog = new BibleBrowseDialog();\n        mainpanel = new MainPanel();\n        LOGGER.log(Level.INFO, \"Creating translation dialog\");\n        translationChoiceDialog = new TranslationChoiceDialog();\n\n        menuBar = new MainMenuBar();\n\n        HBox toolbarPanel = new HBox();\n        mainToolbar = new MainToolbar();\n        HBox.setHgrow(mainToolbar, Priority.ALWAYS);\n        toolbarPanel.getChildren().add(mainToolbar);\n\n        if (Utils.isMac()) {\n            LOGGER.log(Level.INFO, \"Is mac: true, using system menu bar\");\n            menuBar.setUseSystemMenuBar(true);\n        }\n\n        LOGGER.log(Level.INFO, \"Creating menu box\");\n        VBox menuBox = new VBox();\n        menuBox.setFillWidth(true);\n        menuBox.getChildren().add(menuBar);\n        menuBox.getChildren().add(toolbarPanel);\n        menuBox.getChildren().add(mainPane);\n\n        mainPane.setCenter(mainpanel);\n        \n        LOGGER.log(Level.INFO, \"Setting scene info\");\n        SceneInfo sceneInfo = QueleaProperties.get().getSceneInfo();\n        if (sceneInfo != null && !Utils.isOffscreen(sceneInfo)) { //Shouldn't be null unless something goes wrong, but guard against it anyway\n            setScene(getScene(menuBox, (double)sceneInfo.getWidth(), (double)sceneInfo.getHeight()));\n            setWidth(sceneInfo.getWidth());\n            setHeight(sceneInfo.getHeight());\n            setX(sceneInfo.getX());\n            setY(sceneInfo.getY());\n            if (Utils.isMac()) {\n                setMinWidth(400);\n                setMinHeight(300);\n\n            } else {\n                setMaximized(sceneInfo.isMaximised());\n            }\n        }\n        else {\n            setScene(getScene(menuBox));\n        }\n        LOGGER.log(Level.INFO, \"Created main window.\");\n    }\n\n    private Scene getScene(Parent root, double width, double height) {\n        Scene scene = new Scene(root, width, height);\n        if (QueleaProperties.get().getUseDarkTheme()) {\n            scene.getStylesheets().add(\"org/modena_dark.css\");\n        }\n        return scene;\n    }\n\n    private Scene getScene(Parent root) {\n        Scene scene = new Scene(root);\n        if (QueleaProperties.get().getUseDarkTheme()) {\n            scene.getStylesheets().add(\"org/modena_dark.css\");\n        }\n        return scene;\n    }\n\n    /**\n     * Get the main panel on this window.\n     * <p/>\n     *\n     * @return the main panel part of this window.\n     */\n    public MainPanel getMainPanel() {\n        return mainpanel;\n    }\n\n    /**\n     * Get the notice dialog on this main window.\n     * <p/>\n     *\n     * @return the notice dialog.\n     */\n    public NoticeDialog getNoticeDialog() {\n        return noticeDialog;\n    }\n\n    /**\n     * Get the options dialog on this main window.\n     * <p/>\n     *\n     * @return the options dialog.\n     */\n    public PreferencesDialog getPreferencesDialog() {\n        return preferencesDialog;\n    }\n\n    /**\n     * Get the toolbar.\n     * <p>\n     *\n     * @return the toolbar.\n     */\n    public MainToolbar getMainToolbar() {\n        return mainToolbar;\n    }\n\n    /**\n     * Get the main menu bar.\n     *\n     * @return MainMenuBar.\n     */\n    public MainMenuBar getMainMenuBar() {\n        return menuBar;\n    }\n\n    /**\n     * Get the bible search dialog on this main window.\n     * <p/>\n     *\n     * @return the bible search dialog.\n     */\n    public BibleSearchDialog getBibleSearchDialog() {\n        return bibleSearchDialog;\n    }\n\n    /**\n     * Get the bible browse dialog on this main window.\n     * <p/>\n     *\n     * @return the bible browse dialog.\n     */\n    public BibleBrowseDialog getBibleBrowseDialog() {\n        return bibleBrowseDialog;\n    }\n\n    /**\n     * Get the new song window used for this window.\n     * <p/>\n     *\n     * @return the song entry window.\n     */\n    public SongEntryWindow getSongEntryWindow() {\n        if (songEntryWindow == null) {\n            LOGGER.log(Level.INFO, \"Creating song entry window\");\n            songEntryWindow = new SongEntryWindow();\n        }\n        return songEntryWindow;\n    }\n\n    /**\n     * Get the translation choice dialog for this window.\n     *\n     * @return the translation choice dialog for this window.\n     */\n    public TranslationChoiceDialog getTranslationChoiceDialog() {\n        return translationChoiceDialog;\n    }\n\n    public GlobalThemeStore getGlobalThemeStore() {\n        return globalThemeStore;\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/ModalCancellableStage.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main;\n\nimport javafx.geometry.Insets;\nimport javafx.geometry.Pos;\nimport javafx.scene.Scene;\nimport javafx.scene.control.Button;\nimport javafx.scene.control.Label;\nimport javafx.scene.control.ProgressBar;\nimport javafx.scene.layout.StackPane;\nimport javafx.scene.layout.VBox;\nimport javafx.stage.Modality;\nimport javafx.stage.Stage;\nimport javafx.stage.StageStyle;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.Cancellable;\nimport org.quelea.services.utils.QueleaProperties;\n\n/**\n * A stage displayed when a lengthy, cancellable operation is taking place.\n * @author Michael\n */\npublic class ModalCancellableStage extends Stage {\n\n    private boolean cancel = false;\n    private Cancellable cancellable;\n\n    public ModalCancellableStage(String displayText) {\n        initModality(Modality.APPLICATION_MODAL);\n        initStyle(StageStyle.UNDECORATED);\n        setOnShowing((event) -> {\n            centerOnScreen();\n            cancel = false;\n        });\n        StackPane root = new StackPane();\n        VBox items = new VBox(10);\n        Label label = new Label(displayText);\n        label.setAlignment(Pos.CENTER);\n        items.getChildren().add(label);\n        StackPane barPane = new StackPane();\n        ProgressBar bar = new ProgressBar();\n        bar.setMaxWidth(Double.MAX_VALUE);\n        bar.prefWidthProperty().bind(widthProperty().subtract(50));\n        StackPane.setAlignment(bar, Pos.CENTER);\n        barPane.getChildren().add(bar);\n        barPane.setAlignment(Pos.CENTER);\n        items.getChildren().add(barPane);\n        StackPane buttonPane = new StackPane();\n        Button cancelButton = new Button(LabelGrabber.INSTANCE.getLabel(\"cancel.text\"));\n        StackPane.setAlignment(buttonPane, Pos.CENTER);\n        buttonPane.setAlignment(Pos.CENTER);\n        buttonPane.getChildren().add(cancelButton);\n        cancelButton.setAlignment(Pos.CENTER);\n        cancelButton.setOnAction((event) -> {\n            cancel = true;\n            hide();\n            cancellable.cancelOp();\n        });\n        items.getChildren().add(buttonPane);\n        StackPane.setMargin(items, new Insets(10));\n        root.getChildren().add(items);\n        Scene scene = new Scene(root);\n        if (QueleaProperties.get().getUseDarkTheme()) {\n            scene.getStylesheets().add(\"org/modena_dark.css\");\n        }\n        setScene(scene);\n    }\n\n    public void showAndAssociate(Cancellable cancellable) {\n        this.cancellable = cancellable;\n        show();\n    }\n\n    public boolean isCancel() {\n        return cancel;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/NullDrawer.java",
    "content": "package org.quelea.windows.main;\n\nimport org.quelea.data.displayable.Displayable;\n\n/**\n *\n * @author tomaszpio@gmail.com\n */\npublic class NullDrawer extends DisplayableDrawer {\n\n    @Override\n    public void draw(Displayable displayable) {\n    }\n\n    @Override\n    public void clear() {\n    }\n\n    @Override\n    public void requestFocus(){\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/PreviewPanel.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main;\n\nimport javafx.application.Platform;\nimport javafx.scene.control.Button;\nimport javafx.scene.control.Label;\nimport javafx.scene.control.ListView;\nimport javafx.scene.control.ToolBar;\nimport javafx.scene.control.Tooltip;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.input.KeyCode;\nimport javafx.scene.layout.HBox;\nimport javafx.scene.layout.Priority;\nimport javafx.scene.layout.Region;\nimport org.quelea.data.displayable.Displayable;\nimport org.quelea.data.displayable.WebDisplayable;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.QueleaProperties;\n\n/**\n * The panel displaying the preview lyrics selection - this is viewed before\n * displaying the actual lyrics on the projector.\n */\npublic class PreviewPanel extends LivePreviewPanel {\n\n    private final Button liveButton;\n\n    /**\n     * Create a new preview lyrics panel.\n     */\n    public PreviewPanel() {\n        ToolBar header = new ToolBar();\n        Label headerLabel = new Label(LabelGrabber.INSTANCE.getLabel(\"preview.heading\"));\n        headerLabel.setStyle(\"-fx-font-weight: bold;\");\n        header.getItems().add(headerLabel);\n        Region spacer = new Region();\n        HBox.setHgrow(spacer, Priority.ALWAYS);\n        header.getItems().add(spacer);\n        ImageView goLiveIV = new ImageView(\n                new Image(QueleaProperties.get().getUseDarkTheme() ? \"file:icons/golivearrow-light.png\"\n                        : \"file:icons/golivearrow.png\"));\n        goLiveIV.setFitHeight(16);\n        goLiveIV.setFitWidth(16);\n        liveButton = new Button(LabelGrabber.INSTANCE.getLabel(\"go.live.text\"), goLiveIV);\n        liveButton.setTooltip(new Tooltip(LabelGrabber.INSTANCE.getLabel(\"go.live.text\") + \" (\"\n                + LabelGrabber.INSTANCE.getLabel(\"space.key\") + \")\"));\n        liveButton.setOnAction(t -> {\n            QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().setDisplayable(getDisplayable(),\n                    ((ContainedPanel) getCurrentPane()).getCurrentIndex());\n            QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().getCurrentPane().requestFocus();\n            ListView<?> list = QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel()\n                    .getScheduleList().getListView();\n            if (list.getSelectionModel().getSelectedIndex() < list.getItems().size() - 1\n                    && QueleaProperties.get().getAdvanceOnLive()) {\n                list.getSelectionModel().clearAndSelect(list.getSelectionModel().getSelectedIndex() + 1);\n            }\n        });\n        header.getItems().add(liveButton);\n        liveButton.setDisable(true);\n        setTop(header);\n        setOnKeyTyped(t -> {\n            if (t.getCharacter().equals(\" \")) {\n                goLive();\n            }\n        });\n        setOnKeyPressed(t -> {\n            if (t.getCode() == KeyCode.RIGHT) {\n                QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().requestFocus();\n            } else if (t.getCode() == KeyCode.LEFT) {\n                QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().requestFocus();\n            }\n        });\n    }\n\n    /**\n     * Transfer the current preview to live.\n     */\n    public void goLive() {\n        liveButton.fire();\n    }\n\n    /**\n     * Set the given displayable to be shown on the panel.\n     * <p/>\n     *\n     * @param d     the displayable to show.\n     * @param index an index that may be used or ignored depending on the\n     *              displayable.\n     */\n    @Override\n    public void setDisplayable(Displayable d, int index) {\n        super.setDisplayable(d, index);\n        liveButton.setDisable(false);\n        if (d instanceof WebDisplayable) {\n            final WebDisplayable webDisplayable = (WebDisplayable) d;\n            Platform.runLater(() -> {\n                if (!webDisplayable\n                        .equals(QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().getDisplayable())) {\n                    getWebPanel().addWebView(webDisplayable);\n                    getWebPanel().blockButtons(false);\n                } else {\n                    getWebPanel().removeWebView();\n                    getWebPanel().blockButtons(true);\n                }\n            });\n        }\n    }\n\n    /**\n     * Clear the preview panel.\n     */\n    @Override\n    public void removeDisplayable() {\n        super.removeDisplayable();\n        liveButton.setDisable(true);\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/QueleaApp.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main;\n\nimport java.io.File;\nimport java.util.ArrayList;\nimport java.util.List;\nimport org.javafx.dialog.Dialog;\nimport org.quelea.data.Schedule;\nimport org.quelea.server.AutoDetectServer;\nimport org.quelea.server.MobileLyricsServer;\nimport org.quelea.server.RemoteControlServer;\nimport org.quelea.services.languages.LabelGrabber;\n\n/**\n * A singleton class for grabbing application wide objects with ease such as the main window.\n *\n * @author Michael\n */\npublic class QueleaApp {\n\n    private static final QueleaApp INSTANCE = new QueleaApp();\n    private MainWindow mainWindow;\n    private DisplayStage projectionWindow;\n    private DisplayStage stageWindow;\n    private MobileLyricsServer mls;\n    private RemoteControlServer rcs;\n    private AutoDetectServer ads;\n    private List<Runnable> runnables = new ArrayList<>();\n    private volatile boolean loaded;\n\n    /**\n     * Get the singleton instance.\n     *\n     * @return the instance.\n     */\n    public static QueleaApp get() {\n        return INSTANCE;\n    }\n\n    public synchronized void doOnLoad(Runnable r) {\n        if (loaded) {\n            r.run();\n        } else {\n            runnables.add(r);\n        }\n    }\n\n    public synchronized void doneLoading() {\n        loaded = true;\n        for (Runnable r : runnables) {\n            r.run();\n        }\n    }\n\n    /**\n     * Open a given schedule file in Quelea.\n     *\n     * @param file the file to open.\n     */\n    public void openSchedule(File file) {\n        Schedule schedule = Schedule.fromFile(file);\n        if (schedule == null) {\n            Dialog.showError(LabelGrabber.INSTANCE.getLabel(\"error.schedule.title\"), LabelGrabber.INSTANCE.getLabel(\"error.schedule.message\"));\n        } else {\n            QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getScheduleList().setSchedule(schedule);\n        }\n    }\n\n    /**\n     * Get the projection window.\n     *\n     * @return the projection window.\n     */\n    public DisplayStage getProjectionWindow() {\n        return projectionWindow;\n    }\n\n    /**\n     * Set the projection window.\n     *\n     * @param projectionWindow the projection window.\n     */\n    public void setProjectionWindow(DisplayStage projectionWindow) {\n        this.projectionWindow = projectionWindow;\n    }\n\n    /**\n     * Get the stage window.\n     *\n     * @return the stage window.\n     */\n    public DisplayStage getStageWindow() {\n        return stageWindow;\n    }\n\n    /**\n     * Set the stage window.\n     *\n     * @param lyricWindow the stage window.\n     */\n    public void setStageWindow(DisplayStage lyricWindow) {\n        this.stageWindow = lyricWindow;\n    }\n\n    /**\n     * Get the main window.\n     *\n     * @return the main window.\n     */\n    public MainWindow getMainWindow() {\n        return mainWindow;\n    }\n\n    /**\n     * Set the main window.\n     *\n     * @param mainWindow the main window.\n     */\n    public void setMainWindow(MainWindow mainWindow) {\n        this.mainWindow = mainWindow;\n    }\n\n    /**\n     * Get the status panel group. Shortcut method but provided here for\n     * convenience.\n     *\n     * @return the status panel group.\n     */\n    public StatusPanelGroup getStatusGroup() {\n        return mainWindow.getMainPanel().getStatusPanelGroup();\n    }\n\n    /**\n     * Get the current mobile lyrics server in use. Null if none is in use.\n     * <p>\n     *\n     * @return the current mobile lyrics server in use.\n     */\n    public MobileLyricsServer getMobileLyricsServer() {\n        return mls;\n    }\n\n    /**\n     * Set the mobile lyrics server currently in use.\n     *\n     * @param mls the mobile lyrics server.\n     */\n    public void setMobileLyricsServer(MobileLyricsServer mls) {\n        this.mls = mls;\n    }\n\n    /**\n     * Get the current remote control server in use. Null if none is in use.\n     * <p>\n     *\n     * @return the current remote control server in use.\n     */\n    public RemoteControlServer getRemoteControlServer() {\n        return rcs;\n    }\n\n    /**\n     * Set the remote control server currently in use.\n     *\n     * @param rcs the mobile lyrics server.\n     */\n    public void setRemoteControlServer(RemoteControlServer rcs) {\n        this.rcs = rcs;\n    }\n\n    public void setAutoDetectServer(AutoDetectServer ads) {\n        this.ads = ads;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/StatusPanel.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main;\n\nimport javafx.application.Platform;\nimport javafx.geometry.Insets;\nimport javafx.geometry.Pos;\nimport javafx.scene.control.Button;\nimport javafx.scene.control.Label;\nimport javafx.scene.control.ProgressBar;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.layout.HBox;\nimport javafx.scene.layout.Priority;\nimport org.quelea.services.utils.Utils;\n\n/**\n * A status panel that denotes a background task in Quelea.\n * <p/>\n * @author Michael\n */\npublic class StatusPanel extends HBox {\n\n    private ProgressBar progressBar;\n    private Label label;\n    private Button cancelButton;\n    private StatusPanelGroup group;\n    private int index;\n\n    /**\n     * Create a new status panel.\n     * <p/>\n     * @param group the group this panel is part of.\n     * @param labelText the text to put on the label on this panel.\n     * @param index the index of this panel on the group.\n     */\n    StatusPanel(StatusPanelGroup group, String labelText, int index) {\n        setAlignment(Pos.CENTER);\n        setSpacing(5);\n        this.group = group;\n        this.index = index;\n        label = new Label(labelText);\n        label.setAlignment(Pos.CENTER);\n        label.setMaxHeight(Double.MAX_VALUE);\n        HBox.setMargin(label, new Insets(5));\n        progressBar = new ProgressBar();\n        progressBar.setMaxWidth(Double.MAX_VALUE); //Allow progress bar to fill space.\n        HBox.setHgrow(progressBar, Priority.ALWAYS);\n        cancelButton = new Button(\"\", new ImageView(new Image(\"file:icons/cross.png\", 13, 13, false, true)));\n        Utils.setToolbarButtonStyle(cancelButton);\n        cancelButton.setAlignment(Pos.CENTER);\n        getChildren().add(label);\n        getChildren().add(progressBar);\n        getChildren().add(cancelButton);\n    }\n    \n    /**\n     * Remove the cancel button from this status bar.\n     */\n    public void removeCancelButton() {\n        getChildren().remove(cancelButton);\n    }\n    \n    /**\n     * Convenience method to set the progress of the progress bar. Thread safe.\n     * @param progress the progress to set the bar to, between 0-1.\n     */\n    public void setProgress(final double progress) {\n        Platform.runLater(new Runnable() {\n\n            @Override\n            public void run() {\n                progressBar.setProgress(progress);\n            }\n        });\n    }\n    \n    private double progressVal = 0;\n    /**\n     * Convenience method to get the current progress. Thread safe.\n     * @return the current progress.\n     */\n    public double getProgress() {\n        progressVal = 0;\n        Utils.fxRunAndWait(new Runnable() {\n\n            @Override\n            public void run() {\n                progressVal = progressBar.getProgress();\n            }\n        });\n        return progressVal;\n    }\n\n    /**\n     * Called to indicate that the task associated with this panel has finished,\n     * and therefore the panel can be removed.\n     */\n    public void done() {\n        Platform.runLater(new Runnable() {\n            @Override\n            public void run() {\n                group.removePanel(index);\n            }\n        });\n    }\n\n    /**\n     * Set the label text for this panel.\n     * <p/>\n     * @param text the text on this panel's label.\n     */\n    public void setLabelText(String text) {\n        label.setText(text);\n    }\n\n    /**\n     * Get the progress bar associated with this panel.\n     * <p/>\n     * @return the progress bar associated with this panel.\n     */\n    public ProgressBar getProgressBar() {\n        return progressBar;\n    }\n\n    /**\n     * Get the cancel button on this panel.\n     * <p/>\n     * @return the cancel button on this panel.\n     */\n    public Button getCancelButton() {\n        return cancelButton;\n    }\n\n    /**\n     * Set whether this panel is active.\n     * <p/>\n     * @param active true if active, false otherwise.\n     */\n    public void setActive(boolean active) {\n        setVisible(active);\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/StatusPanelGroup.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main;\n\nimport java.util.ArrayList;\nimport java.util.List;\nimport javafx.scene.layout.VBox;\n\n/**\n * A group of status panels that shows all the background tasks Quelea is\n * currently processing.\n * <p>\n * @author Michael\n */\npublic class StatusPanelGroup extends VBox {\n\n    private final List<StatusPanel> panels;\n\n    /**\n     * Create a new status panel group.\n     */\n    public StatusPanelGroup() {\n        panels = new ArrayList<>();\n    }\n\n    /**\n     * Add a status panel to the given group.\n     * <p>\n     * @param label the label to put on the status panel.\n     * @return the status panel.\n     */\n    public synchronized StatusPanel addPanel(String label) {\n        StatusPanel panel = new StatusPanel(this, label, panels.size());\n        getChildren().add(panel);\n        panels.add(panel);\n        return panel;\n    }\n\n    /**\n     * Remove a status panel at the given index.\n     * <p>\n     * @param index the index of the panel to remove.\n     */\n    public void removePanel(int index) {\n        StatusPanel panel = panels.get(index);\n        if(panel != null) {\n            getChildren().remove(panel);\n            panels.set(index, null);\n        }\n    }\n\n    /**\n     * Remove a status panel.\n     * <p>\n     * @param panel the panel to remove.\n     */\n    public void removePanel(StatusPanel panel) {\n        removePanel(panels.indexOf(panel));\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/SwitchBibleVersionDialog.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main;\n\nimport javafx.geometry.Insets;\nimport javafx.geometry.Pos;\nimport javafx.scene.Scene;\nimport javafx.scene.control.Button;\nimport javafx.scene.control.ComboBox;\nimport javafx.scene.control.Label;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.layout.HBox;\nimport javafx.scene.layout.StackPane;\nimport javafx.scene.layout.VBox;\nimport javafx.stage.Stage;\nimport org.quelea.data.bible.Bible;\nimport org.quelea.data.bible.BibleManager;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\n\n/**\n * Dialog used for switching between bible translations.\n *\n * @author Michael\n */\npublic class SwitchBibleVersionDialog extends Stage {\n\n    private ComboBox<Bible> comboBox = new ComboBox<>();\n    private final Button okButton;\n    private final Button cancelButton;\n    private Bible selectedVersion;\n\n    /**\n     * Create the dialog to switch bible versions.\n     */\n    public SwitchBibleVersionDialog() {\n        Utils.addIconsToStage(this);\n        setOnShowing(event -> {\n            selectedVersion = null;\n        });\n        VBox root = new VBox(5);\n        Label switchToLabel = new Label(LabelGrabber.INSTANCE.getLabel(\"switch.to.text\") + \"...\");\n        root.getChildren().add(switchToLabel);\n        root.getChildren().add(comboBox);\n        okButton = new Button(LabelGrabber.INSTANCE.getLabel(\"ok.button\"), new ImageView(new Image(\"file:icons/tick.png\")));\n        okButton.setDefaultButton(true);\n        okButton.setOnAction(t -> {\n            selectedVersion = comboBox.getValue();\n            hide();\n        });\n        cancelButton = new Button(LabelGrabber.INSTANCE.getLabel(\"cancel.button\"), new ImageView(new Image(\"file:icons/cross.png\")));\n        cancelButton.setOnAction(t -> {\n            hide();\n        });\n        HBox buttonPanel = new HBox(5);\n        buttonPanel.setAlignment(Pos.CENTER);\n        buttonPanel.getChildren().addAll(okButton, cancelButton);\n        root.getChildren().add(buttonPanel);\n        StackPane containerPane = new StackPane();\n        StackPane.setMargin(root, new Insets(10));\n        containerPane.getChildren().add(root);\n        Scene scene = new Scene(containerPane);\n        if (QueleaProperties.get().getUseDarkTheme()) {\n            scene.getStylesheets().add(\"org/modena_dark.css\");\n        }\n        setScene(scene);\n        setResizable(false);\n    }\n\n    /**\n     * Show the dialog and get the bible version to switch to (null if\n     * cancelled.)\n     *\n     * @param exclude a bible to exclude (useful to exclude the current\n     * translation sometimes.)\n     * @return the bible version to switch to (null if cancelled.)\n     */\n    public Bible getSwitchVersion(Bible exclude) {\n        Bible[] bibles = BibleManager.get().getBibles();\n        for (Bible bible : bibles) {\n            if (bible != exclude) {\n                comboBox.getItems().add(bible);\n            }\n        }\n        if (!comboBox.getItems().isEmpty()) {\n            comboBox.getSelectionModel().select(0);\n            showAndWait();\n            return selectedVersion;\n        } else {\n            return null;\n        }\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/ThemePreviewPanel.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main;\n\nimport java.awt.image.BufferedImage;\nimport java.io.IOException;\nimport java.io.PrintWriter;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport javafx.embed.swing.SwingFXUtils;\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport javafx.geometry.Insets;\nimport javafx.geometry.Pos;\nimport javafx.scene.SnapshotParameters;\nimport javafx.scene.control.Button;\nimport javafx.scene.control.Label;\nimport javafx.scene.control.RadioButton;\nimport javafx.scene.control.Tooltip;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.image.WritableImage;\nimport javafx.scene.input.MouseEvent;\nimport javafx.scene.layout.HBox;\nimport javafx.scene.layout.StackPane;\nimport javafx.scene.layout.VBox;\nimport javafx.stage.Modality;\nimport javafx.stage.Window;\nimport org.javafx.dialog.Dialog;\nimport org.quelea.data.ThemeDTO;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.windows.lyrics.LyricDrawer;\nimport org.quelea.windows.main.DisplayCanvas.Priority;\nimport org.quelea.windows.main.schedule.ScheduleThemeNode;\nimport org.quelea.windows.newsong.EditThemeDialog;\nimport org.quelea.windows.newsong.ThemePanel;\nimport org.quelea.windows.stage.StageDrawer;\n\n/**\n * Panel that displays a preview of a particular theme. This is part of the\n * theme select popup window.\n * <p/>\n * @author Michael\n */\npublic class ThemePreviewPanel extends VBox {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    private ThemeDTO theme;\n    private DisplayCanvas canvas;\n    private RadioButton songSelectButton;\n    private RadioButton bibleSelectButton;\n    private Button removeButton;\n    private Button editButton;\n    private EditThemeDialog themeDialog;\n    private Window popup;\n    private ScheduleThemeNode parent;\n    private WritableImage previewImage;\n\n    /**\n     * Create a new theme preview panel.\n     * <p/>\n     * @param theme the theme to preview.\n     */\n    public ThemePreviewPanel(ThemeDTO theme, final Window popup, final ScheduleThemeNode parent) {\n        this.popup = popup;\n        this.theme = theme;\n        this.parent = parent;\n        if (theme == null) {\n            theme = ThemeDTO.DEFAULT_THEME;\n        }\n        final ThemeDTO updateTheme = theme;\n        canvas = new DisplayCanvas( false, () -> updateThemePreviewCanvas(updateTheme), Priority.LOW);\n        canvas.setPrefSize(200, 160);\n        updateThemePreviewCanvas(theme);\n        String name;\n        if (theme == ThemeDTO.DEFAULT_THEME) {\n            name = LabelGrabber.INSTANCE.getLabel(\"default.theme.text\");\n        } else {\n            name = theme.getThemeName();\n        }\n        themeDialog = new EditThemeDialog();\n        themeDialog.initModality(Modality.APPLICATION_MODAL);\n        songSelectButton = new RadioButton(LabelGrabber.INSTANCE.getLabel(\"song.default.theme.label\"));\n        bibleSelectButton = new RadioButton(LabelGrabber.INSTANCE.getLabel(\"bible.default.theme.label\"));\n        if (theme != ThemeDTO.DEFAULT_THEME) {\n            editButton = new Button(\"\", new ImageView(new Image(\"file:icons/edit32.png\", 16, 16, false, true)));\n            editButton.setTooltip(new Tooltip(LabelGrabber.INSTANCE.getLabel(\"edit.theme.tooltip\")));\n            editButton.setOnAction(new EventHandler<javafx.event.ActionEvent>() {\n                @Override\n                public void handle(javafx.event.ActionEvent t) {\n                    themeDialog.setTheme(ThemePreviewPanel.this.theme);\n                    popup.hide();\n                    themeDialog.showAndWait();\n                    ThemeDTO ret = themeDialog.getTheme();\n                    if (ret != null) {\n                        try (PrintWriter pw = new PrintWriter(ret.getFile())) {\n                            pw.println(ret.getTheme());\n                            ThemePreviewPanel.this.theme = ret;\n                        } catch (IOException ex) {\n                            LOGGER.log(Level.WARNING, \"Couldn't edit theme\", ex);\n                        }\n                    }\n                    parent.refresh();\n                }\n            });\n\n            removeButton = new Button(\"\", new ImageView(new Image(\"file:icons/delete.png\", 16, 16, false, true)));\n            removeButton.setTooltip(new Tooltip(LabelGrabber.INSTANCE.getLabel(\"remove.theme.tooltip\")));\n            removeButton.setOnAction(new EventHandler<javafx.event.ActionEvent>() {\n                @Override\n                public void handle(javafx.event.ActionEvent t) {\n                    popup.hide();\n                    final boolean[] deleted = new boolean[1];\n                    Dialog.buildConfirmation(LabelGrabber.INSTANCE.getLabel(\"delete.theme.confirm.title\"), LabelGrabber.INSTANCE.getLabel(\"delete.theme.question\"), null).addYesButton(new EventHandler<ActionEvent>() {\n                        @Override\n                        public void handle(ActionEvent t) {\n                            ThemePreviewPanel.this.theme.getFile().delete();\n                            deleted[0] = true;\n                        }\n                    }).addNoButton(new EventHandler<ActionEvent>() {\n                        @Override\n                        public void handle(ActionEvent t) {\n                            //Nothing needed here\n                        }\n                    }).build().showAndWait();\n                    if (deleted[0]) {\n                        parent.getThemePreviews().getChildren().remove(ThemePreviewPanel.this);\n                    }\n                }\n            });\n        }\n        HBox buttonPanel = new HBox();\n        buttonPanel.setSpacing(5);\n        buttonPanel.getChildren().add(songSelectButton);\n        buttonPanel.getChildren().add(bibleSelectButton);\n\n        HBox canvasPanel = new HBox();\n        canvasPanel.getChildren().add(canvas);\n\n        StackPane canvasOverlay = new StackPane();\n        StackPane.setAlignment(canvasPanel, Pos.CENTER);\n        canvasOverlay.getChildren().add(canvasPanel);\n\n        HBox editRemovePanel = new HBox();\n        editRemovePanel.setSpacing(2);\n        editRemovePanel.setPadding(new Insets(3));\n        editRemovePanel.setAlignment(Pos.BOTTOM_RIGHT);\n        if (theme != ThemeDTO.DEFAULT_THEME) {\n            editRemovePanel.getChildren().addAll(editButton, removeButton);\n        }\n        canvasOverlay.getChildren().add(editRemovePanel);\n        \n        Label themeLabel = new Label(name);\n        themeLabel.setPadding(new Insets(3));\n        themeLabel.setStyle(\"-fx-text-fill: white; -fx-background-color: black;\");\n        StackPane.setAlignment(themeLabel, Pos.TOP_CENTER);\n        canvasOverlay.getChildren().add(themeLabel);\n        \n        if (canvas != null) {\n            canvasOverlay.setOnMouseClicked((MouseEvent t) -> {\n                t.consume();\n                songSelectButton.fire();\n                bibleSelectButton.fire();\n            });\n        }\n\n        getChildren().add(canvasOverlay);\n        getChildren().add(buttonPanel);\n    }\n\n    public RadioButton getSongSelectButton() {\n        return songSelectButton;\n    }\n\n    public RadioButton getBibleSelectButton() {\n        return bibleSelectButton;\n    }\n\n    /**\n     * Get the theme in use on this preview panel.\n     * <p/>\n     * @return the theme in use on this preview panel.\n     */\n    public ThemeDTO getTheme() {\n        return theme;\n    }\n\n    private void updateThemePreviewCanvas(ThemeDTO theme) {\n        WordDrawer drawer;\n        if (canvas.isStageView()) {\n            drawer = new StageDrawer();\n        } else {\n            drawer = new LyricDrawer();\n        }\n        drawer.setCanvas(canvas);\n        drawer.setTheme(theme);\n        drawer.setText(ThemePanel.SAMPLE_LYRICS, new String[0], new String[0], false, -1);\n    }\n\n    public Image getThemePreviewImage() {\n        previewImage = new WritableImage(200, 150);\n        canvas.snapshot(new SnapshotParameters(), previewImage);\n        BufferedImage bi = SwingFXUtils.fromFXImage((WritableImage) previewImage, null);\n        SwingFXUtils.toFXImage(bi, previewImage);\n\n        return previewImage;\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/WordDrawer.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main;\n\nimport java.util.ArrayList;\nimport java.util.Arrays;\nimport java.util.List;\nimport java.util.Map;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.text.Font;\nimport org.quelea.data.ThemeDTO;\nimport org.quelea.data.displayable.BiblePassage;\nimport org.quelea.data.displayable.Displayable;\nimport org.quelea.data.displayable.TextDisplayable;\nimport org.quelea.services.utils.LineTypeChecker;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.LyricLine;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.utils.Chord;\nimport org.quelea.utils.FXFontMetrics;\nimport org.quelea.utils.WrapTextResult;\n\n/**\n *\n * @author Ben\n */\npublic abstract class WordDrawer extends DisplayableDrawer {\n\n    protected Map<DisplayCanvas, Boolean> lastClearedState;\n    protected static final Logger LOGGER = LoggerUtils.getLogger();\n\n    public abstract void setTheme(ThemeDTO theme);\n\n    public abstract void setText(String[] text, String[] translations, String[] smallText, boolean fade, double fontSize);\n\n    public abstract ThemeDTO getTheme();\n\n    public abstract void setCapitaliseFirst(boolean shouldCapitaliseFirst);\n\n    public abstract void setText(TextDisplayable textDisplayable, int selectedIndex);\n\n    protected boolean getLastClearedState() {\n        Boolean val = lastClearedState.get(getCanvas());\n        if (val == null) {\n            return false;\n        }\n        return val;\n    }\n\n    protected void setLastClearedState(boolean val) {\n        lastClearedState.put(getCanvas(), val);\n    }\n    \n    private WrapTextResult getWrapTextProps(Font font, String lineToWrap, double width) {\n        FXFontMetrics metrics = new FXFontMetrics(font);\n        String[] words = lineToWrap.split(\" \");\n        StringBuilder lineBuilder = new StringBuilder();\n        List<LyricLine> lines = new ArrayList<>();\n        for (int i = 0; i < words.length; i++) {\n            String word = words[i];\n            String potentialStr = lineBuilder.toString() + word;\n            if (metrics.computeStringWidth(potentialStr.replace(\"<sup>\", \"\").replace(\"</sup>\", \"\")) > width) {\n                lines.add(new LyricLine(lineBuilder.toString()));\n                lineBuilder = new StringBuilder(word + \" \");\n            }\n            else {\n                lineBuilder.append(word).append(\" \");\n            }\n        }\n        lines.add(new LyricLine(lineBuilder.toString()));\n        //We're using the \"fontsize\" part of wraptextresult here as the height instead to reuse the same class, bit of a fudge...\n        return new WrapTextResult(lines, metrics.getLineHeight() * lines.size());\n    }\n    \n    protected WrapTextResult normalWrapText(Font font, String lineToWrap, double width, double height) {\n        double min = 1;\n        double max = font.getSize();\n        \n        double cur = (max-min)/2;\n        \n        font = new Font(font.getName(), cur);\n        WrapTextResult result = getWrapTextProps(font, lineToWrap, width);\n        \n        int i=0;\n        while(result.getFontSize()>height || result.getFontSize()<height-50) {\n            i++;\n            if(i>20) {\n                break;\n            }\n            if (result.getFontSize() > height) {\n                max = cur;\n            } else if (result.getFontSize() < height) {\n                min = cur;\n            } else {\n                throw new AssertionError(\"Shouldn't be here\");\n            }\n            cur = ((max-min)/2)+min;\n            font = new Font(font.getName(), cur);\n            result = getWrapTextProps(font, lineToWrap, width);\n        }\n        return new WrapTextResult(result.getNewText(), cur);\n    }\n\n    /**\n     * Pick a font size for the specified font that fits the given text into the\n     * width and height provided.\n     * <p>\n     * @param font the font to use for calculations.\n     * @param text the text to fit.\n     * @param width the fit width.\n     * @param height the fit height.\n     * @return a font size for the specified font that fits the text into the\n     * width and height provided.\n     */\n    protected double pickFontSize(Font font, List<LyricLine> text, double width, double height) {\n        FXFontMetrics metrics = new FXFontMetrics(font);\n        double totalHeight = ((metrics.getLineHeight() + getLineSpacing()) * text.size());\n        while (totalHeight > height) {\n            font = new Font(font.getName(), font.getSize() - 0.5);\n            if (font.getSize() < 1) {\n                return 1;\n            }\n            metrics = new FXFontMetrics(font);\n            totalHeight = (metrics.getLineHeight() + getLineSpacing()) * text.size();\n        }\n\n        double totalWidth = longestLine(font, text);\n        while (totalWidth > width) {\n            font = new Font(font.getName(), font.getSize() - 0.5);\n            if (font.getSize() < 1) {\n                return 1;\n            }\n            totalWidth = longestLine(font, text);\n        }\n        return font.getSize();\n    }\n\n    /**\n     * Erase all the text on the getCanvas().\n     */\n    public void eraseText() {\n        setText(null, null, null, true, -1);\n    }\n\n    protected double getLineSpacing() {\n        double space = QueleaProperties.get().getAdditionalLineSpacing();\n        double factor = getCanvas().getHeight() / 1000.0;\n        return space * factor;\n    }\n\n    protected int longestLine(Font font, List<LyricLine> text) {\n        FXFontMetrics metrics = new FXFontMetrics(font);\n        int longestLine = 0;\n        for (int i = 0; i < text.size(); i++) {\n            LyricLine line = text.get(i);\n            if (new LineTypeChecker(line.getLine()).getLineType() == LineTypeChecker.Type.CHORDS && i < text.size() - 1) {\n                List<Chord> chords = Chord.getChordsFromLine(line.getLine());\n                String nextLine = text.get(i + 1).getLine();\n\n                while (nextLine.length() < line.getLine().length()) {\n                    nextLine += \" \";\n                }\n\n                int maxX = 0;\n                for (Chord chord : chords) {\n                    int x = (int) metrics.computeStringWidth(nextLine.substring(0, chord.getIdx())) + (int) metrics.computeStringWidth(chord.getChord());\n                    if (x > maxX) {\n                        maxX = x;\n                    }\n                }\n                if (maxX > longestLine) {\n                    longestLine = maxX;\n                }\n\n            } else {\n                int lineWidth = (int)metrics.computeStringWidth(line.getLine());\n                if(lineWidth>longestLine) {\n                    longestLine = lineWidth;\n                }\n            }\n        }\n        return longestLine;\n    }\n\n    protected String longestLine(Font font, ArrayList<String> text) {\n        FXFontMetrics metrics = new FXFontMetrics(font);\n        double longestWidth = -1;\n        String longestStr = null;\n        for (String line : text) {\n            double width = metrics.computeStringWidth(line);\n            if (width > longestWidth) {\n                longestWidth = width;\n                longestStr = line;\n            }\n        }\n        return longestStr;\n    }\n\n    /**\n     * Determine if the given line contains the given string in the middle 80%\n     * of the line.\n     * <p/>\n     * @param line the line to check.\n     * @param str the string to use.\n     * @return true if the line contains the delimiter, false otherwise.\n     */\n    protected static boolean containsNotAtEnd(String line, String str) {\n        final int percentage = 80;\n        int removeChars = (int) ((double) line.length() * ((double) (100 - percentage) / 100));\n        return line.substring(removeChars, line.length() - removeChars).contains(str);\n    }\n\n    /**\n     * Split a string with the given delimiter into two parts, using the\n     * delimiter closest to the middle of the string.\n     * <p/>\n     * @param line the line to split.\n     * @param delimiter the delimiter.\n     * @return an array containing two strings split in the middle by the\n     * delimiter.\n     */\n    protected static String[] splitMiddle(String line, char delimiter) {\n        final int middle = (int) (((double) line.length() / 2) + 0.5);\n        int nearestIndex = -1;\n        for (int i = 0; i < line.length(); i++) {\n            if (line.charAt(i) == delimiter) {\n                int curDistance = Math.abs(nearestIndex - middle);\n                int newDistance = Math.abs(i - middle);\n                if (newDistance < curDistance || nearestIndex < 0) {\n                    nearestIndex = i;\n                }\n            }\n        }\n        return new String[]{line.substring(0, nearestIndex + 1), line.substring(nearestIndex + 1)};\n    }\n\n    protected abstract void drawText(double defaultFontSize, boolean dumbWrap);\n\n    @Override\n    public void draw(Displayable displayable) {\n        draw(displayable, -1);\n    }\n\n    protected void draw(Displayable displayable, double fontSize) {\n        drawText(fontSize, displayable instanceof BiblePassage);\n        if (getCanvas().getCanvasBackground() instanceof ImageView) {\n            ImageView imgBackground = (ImageView) getCanvas().getCanvasBackground();\n            imgBackground.setFitHeight(getCanvas().getHeight());\n            imgBackground.setFitWidth(getCanvas().getWidth());\n        } else if (getCanvas().getCanvasBackground() != null) {\n            LOGGER.log(Level.WARNING, \"BUG: Unrecognised image background - \" + getCanvas().getCanvasBackground().getClass(), new RuntimeException(\"DEBUG EXCEPTION\"));\n        }\n    }\n\n    protected double pickSmallFontSize(Font font, String[] text, double width, double height) {\n        FXFontMetrics metrics = new FXFontMetrics(font);\n        ArrayList<String> al = new ArrayList<>();\n        for (String te : text) {\n            if (al.contains(\"\\n\")) {\n                String[] te2 = te.split(\"\\n\");\n                al.addAll(Arrays.asList(te2));\n            } else {\n                al.add(te);\n            }\n        }\n        double totalHeight = ((metrics.getLineHeight() + getLineSpacing()) * al.size());\n        while (totalHeight > height) {\n            font = new Font(font.getName(), font.getSize() - 0.5);\n            if (font.getSize() < 1) {\n                return 1;\n            }\n            metrics = new FXFontMetrics(font);\n            totalHeight = (metrics.getLineHeight() + getLineSpacing()) * al.size();\n        }\n\n        String longestLine = longestLine(font, al);\n        double totalWidth = metrics.computeStringWidth(longestLine);\n        while (totalWidth > width) {\n            font = new Font(font.getName(), font.getSize() - 0.5);\n            if (font.getSize() < 1) {\n                return 1;\n            }\n            metrics = new FXFontMetrics(font);\n            totalWidth = metrics.computeStringWidth(longestLine);\n        }\n\n        return font.getSize();\n    }\n\n    /**\n     * Returns a scaling factor for the canvas of this WordDrawer. This is the scale of this canvas when\n     * compared to the canvas of the Projection Window. Using this scaling factor is it possible to\n     * calculate the sizes of things on a preview/live when compared to the Projection Window.\n     * For example the Maximum Font Size needs to be scaled for the preview/live displays.\n     * <p>\n     * @return The scaling factor for this canvas\n     */\n    protected double canvasScalingFactor() {\n        double scalingFactor = 1;\n\n        // If there is a projection window, and it has some size (avoid divide by zero errors!)\n        if (QueleaApp.get().getProjectionWindow() != null && QueleaApp.get().getProjectionWindow().getWidth() != 0) {\n            scalingFactor = getCanvas().getWidth() / QueleaApp.get().getProjectionWindow().getWidth();\n        }\n\n        return scalingFactor;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/actionhandlers/AddBibleVerseHandler.java",
    "content": " /* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.actionhandlers;\n\nimport java.util.ArrayList;\nimport java.util.HashSet;\nimport java.util.IdentityHashMap;\nimport java.util.List;\nimport java.util.Map;\nimport java.util.Set;\nimport org.quelea.data.ThemeDTO;\nimport org.quelea.data.bible.Bible;\nimport org.quelea.data.bible.BibleVerse;\nimport org.quelea.data.displayable.BiblePassage;\nimport org.quelea.data.displayable.Displayable;\nimport org.quelea.data.displayable.IndexedDisplayable;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.windows.main.schedule.ScheduleList;\n\n/**\n *\n * @author Arvid\n */\npublic class AddBibleVerseHandler {\n\n    public void add() {\n        ScheduleList sl = QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getScheduleList();\n        Set<Bible> current = new HashSet<>();\n        Displayable d = QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().getDisplayable();\n        if (d instanceof BiblePassage) {\n            current.add(((BiblePassage) d).getVerses()[0].getChapter().getBook().getBible());\n        }\n        Bible b = null;\n        if (current.size() == 1) {\n            b = current.iterator().next();\n        }\n        if (b == null) {\n            return;\n        }\n        Map<BiblePassage, BiblePassage> replaceMap = new IdentityHashMap<>();\n        BiblePassage passage = (BiblePassage) d;\n        ThemeDTO theme = passage.getTheme();\n        List<BibleVerse> newVerses = new ArrayList<>();\n        int lastNumber = 0;\n        int chapter = 0;\n        int i = 0;\n        for (BibleVerse bv : passage.getVerses()) {\n            int verseNum = bv.getNum();\n            int chapterNum = bv.getChapter().getNum();\n            int bookNum = bv.getChapter().getBook().getBookNumber();\n            newVerses.add(b.getBooks()[bookNum - 1].getChapter(chapterNum - 1).getVerse(verseNum));\n            if (i == passage.getVerses().length - 1) {\n                newVerses.add(b.getBooks()[bookNum - 1].getChapter(chapterNum - 1).getVerse(verseNum + 1));\n            }\n            if (newVerses.get(newVerses.size() - 1) != null) {\n                lastNumber = verseNum + 1;\n            } else if (newVerses.get(newVerses.size() - 1) == null) {\n                newVerses.remove(newVerses.size() - 1);\n                newVerses.add(b.getBooks()[bookNum - 1].getChapter(chapterNum).getVerse(1));\n                chapter = bv.getChapter().getNum() + 1;\n                lastNumber = 1;\n            }\n            i++;\n        }\n        BibleVerse firstVerse = newVerses.getFirst();\n        String passageNumber = passage.getLocation().split(\" (?=\\\\d)\")[1];\n        if (chapter > 0) {\n            passageNumber = passageNumber + \";\" + chapter + \":\" + lastNumber;\n        } else if (passageNumber.contains(\";\") || (passageNumber.contains(\",\"))) {\n            if (passageNumber.contains(\";\")) {\n                if (passageNumber.substring(passageNumber.lastIndexOf(\";\")).contains(\"-\")) {\n                    passageNumber = passageNumber.substring(0, passageNumber.lastIndexOf(\"-\") + 1) + lastNumber;\n                } else\n                    passageNumber = passageNumber + \"-\" + lastNumber;\n            } else {\n                if (passageNumber.substring(passageNumber.lastIndexOf(\",\")).contains(\"-\")) {\n                    passageNumber = passageNumber.substring(0, passageNumber.lastIndexOf(\"-\") + 1) + lastNumber;\n                } else\n                    passageNumber = passageNumber + \"-\" + lastNumber;\n            }\n        } else {\n            if (passageNumber.contains(\"-\")) {\n                passageNumber = passageNumber.substring(0, passageNumber.indexOf(\"-\") + 1) + lastNumber;\n            } else if (passageNumber.contains(\":\")) {\n                passageNumber = passageNumber + \"-\" + lastNumber;\n            }\n        }\n        String summary = firstVerse.getChapter().getBook() + \" \" + passageNumber + \"\\n\" + b.getBibleName();\n        replaceMap.put(passage, new BiblePassage(summary, newVerses.toArray(new BibleVerse[0]), theme, passage.getMulti()));\n        sl.getSelectionModel().clearSelection();\n        int index = -1;\n        for (BiblePassage key : replaceMap.keySet()) {\n            index = sl.indexOf(key);\n            if (index != -1) {\n                sl.getItems().remove(index);\n                sl.getItems().add(index, new IndexedDisplayable(replaceMap.get(key), index));\n            }\n        }\n        if (index != -1) {\n            sl.getSelectionModel().clearAndSelect(index);\n        }\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/actionhandlers/AddDVDActionHandler.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.actionhandlers;\n\nimport java.io.IOException;\nimport java.nio.file.FileStore;\nimport java.nio.file.FileSystem;\nimport java.nio.file.FileSystems;\nimport java.nio.file.Files;\nimport java.nio.file.Path;\nimport javafx.application.Platform;\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport org.javafx.dialog.Dialog;\nimport org.quelea.data.displayable.DiskDisplayable;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.windows.main.QueleaApp;\n\n/**\n * The action handler responsible for letting the user add a DVD to the\n * schedule.\n * <p>\n * @author Michael\n */\npublic class AddDVDActionHandler implements EventHandler<ActionEvent> {\n\n    private Dialog warningDialog;\n\n    @Override\n    public void handle(ActionEvent t) {\n        QueleaApp.get().getMainWindow().getMainToolbar().setDVDLoading(true);\n        new Thread(() -> {\n            final String dvdLocation = getLocation();\n            Platform.runLater(() -> {\n                if(dvdLocation == null) {\n                    warningDialog = new Dialog.Builder().create()\n                            .setWarningIcon()\n                            .setMessage(LabelGrabber.INSTANCE.getLabel(\"no.dvd.error\"))\n                            .setTitle(LabelGrabber.INSTANCE.getLabel(\"no.dvd.heading\"))\n                            .addLabelledButton(LabelGrabber.INSTANCE.getLabel(\"ok.button\"), t1 -> warningDialog.hide())\n                            .setOwner(QueleaApp.get().getMainWindow())\n                            .build();\n                    warningDialog.centerOnScreen();\n                    warningDialog.showAndWait();\n                }\n                else {\n                    DiskDisplayable displayable = new DiskDisplayable(dvdLocation);\n                    QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getScheduleList().add(displayable);\n                }\n                QueleaApp.get().getMainWindow().getMainToolbar().setDVDLoading(false);\n            });\n        }).start();\n    }\n\n    /**\n     * Get the location of the DVD, or null if no DVD can be found.\n     * <p>\n     * @return the DVD location.\n     */\n    private String getLocation() {\n        FileSystem fs = FileSystems.getDefault();\n        for(Path rootPath : fs.getRootDirectories()) {\n            try {\n                FileStore store = Files.getFileStore(rootPath);\n                if(store.type().toLowerCase().contains(\"udf\")) {\n                    if(store.getTotalSpace()>10000000000L) { //Blu-ray\n                        return \"bluray:///\" + rootPath.toString();\n                    }\n                    else {\n                        return \"dvdsimple:///\" + rootPath.toString(); //DVD\n                    }\n                }\n            }\n            catch(IOException ex) {\n                //Never mind\n            }\n        }\n        return null;\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/actionhandlers/AddImageActionHandler.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.actionhandlers;\n\nimport javafx.application.Platform;\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport javafx.scene.control.TextInputDialog;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.stage.FileChooser;\nimport org.javafx.dialog.Dialog;\nimport org.quelea.data.displayable.ImageDisplayable;\nimport org.quelea.data.displayable.ImageGroupDisplayable;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.FileFilters;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.windows.main.StatusPanel;\n\nimport java.io.File;\nimport java.io.IOException;\nimport java.util.List;\nimport java.util.Optional;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\n\n/**\n * The action handler for adding images.\n *\n * @author Arvid\n */\npublic class AddImageActionHandler implements EventHandler<ActionEvent> {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n\n    @Override\n    public void handle(ActionEvent t) {\n        FileChooser fileChooser = new FileChooser();\n        fileChooser.getExtensionFilters().add(FileFilters.IMAGES);\n        final List<File> files = fileChooser.showOpenMultipleDialog(QueleaApp.get().getMainWindow());\n\n        if (files != null) {\n            if (files.size() > 1) {\n                new Thread() {\n\n                    private StatusPanel panel;\n                    private boolean halt;\n\n                    @Override\n                    public void run() {\n                        Platform.runLater(() -> {\n                            panel = QueleaApp.get().getStatusGroup().addPanel(LabelGrabber.INSTANCE.getLabel(\"adding.images\"));\n                            panel.getProgressBar().setProgress(-1);\n                            panel.getCancelButton().setOnAction(t1 -> {\n                                panel.done();\n                                halt = true;\n                            });\n                        });\n                        try {\n                            if (!halt) {\n                                Platform.runLater(() -> {\n                                    File[] filesArray = files.toArray(new File[0]);\n\n                                    TextInputDialog dialog = new TextInputDialog();\n                                    dialog.setTitle(LabelGrabber.INSTANCE.getLabel(\"dialog.image.group.title\"));\n                                    dialog.setHeaderText(LabelGrabber.INSTANCE.getLabel(\"dialog.image.group.header\"));\n                                    dialog.setGraphic(new ImageView(new Image(\"file:icons/image-group-schedule.png\")));\n\n                                    String fallbackTitle = ImageGroupDisplayable.concatenatedFileNames(filesArray);\n                                    dialog.getEditor().setText(fallbackTitle);\n                                    Optional<String> result = dialog.showAndWait();\n                                    String imageGroupTitle = result.orElse(fallbackTitle);\n                                    try {\n                                        ImageGroupDisplayable displayable = new ImageGroupDisplayable(filesArray, imageGroupTitle);\n                                        QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getScheduleList().add(displayable);\n                                    } catch (IOException ex) {\n                                        System.err.println(\"IO \" + ex);\n                                        if (!halt) {\n                                            Platform.runLater(() -> Dialog.showError(LabelGrabber.INSTANCE.getLabel(\"adding.presentation.error.imageGroupTitle\"), LabelGrabber.INSTANCE.getLabel(\"adding.presentation.error.message\")));\n                                        }\n                                    }\n                                });\n                            }\n                        } catch (RuntimeException ex) {\n                            System.err.println(\"RE \" + ex);\n                            LOGGER.log(Level.WARNING, \"Couldn't import presentation\", ex);\n                            Platform.runLater(() -> Dialog.showError(LabelGrabber.INSTANCE.getLabel(\"adding.presentation.error.title\"), LabelGrabber.INSTANCE.getLabel(\"adding.presentation.error.message\")));\n                        }\n                        while (panel == null) {\n                            Utils.sleep(1000); //Quick bodge but hey, it works\n                        }\n                        panel.done();\n                    }\n                }\n                        .start();\n            } else {\n                ImageDisplayable displayable = new ImageDisplayable(files.get(0));\n                QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getScheduleList().add(displayable);\n            }\n        }\n\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/actionhandlers/AddPdfActionHandler.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.actionhandlers;\n\nimport java.io.File;\nimport java.io.IOException;\nimport java.util.List;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport javafx.application.Platform;\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport javafx.stage.FileChooser;\nimport org.javafx.dialog.Dialog;\nimport org.quelea.data.displayable.PdfDisplayable;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.FileFilters;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.windows.main.StatusPanel;\n\n/**\n * The action listener for adding a PDF presentation.\n * <p>\n * @author Arvid, based on AddPowerpointActionHandler\n */\npublic class AddPdfActionHandler implements EventHandler<ActionEvent> {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n\n    /**\n     * Add the PDF\n     * <p>\n     * @param t the event.\n     */\n    @Override\n    public void handle(ActionEvent t) {\n        FileChooser chooser = new FileChooser();\n        if (QueleaProperties.get().getLastDirectory() != null) {\n            chooser.setInitialDirectory(QueleaProperties.get().getLastDirectory());\n        }\n        chooser.getExtensionFilters().add(FileFilters.PDF_GENERIC);\n        final List<File> files = chooser.showOpenMultipleDialog(QueleaApp.get().getMainWindow());\n        addPDF(files);\n    }\n\n    public void addPDF(List<File> files) {\n        if(files != null) {\n            new Thread() {\n\n                private StatusPanel panel;\n                private boolean halt;\n\n                @Override\n                public void run() {\n                    Platform.runLater(() -> {\n                        panel = QueleaApp.get().getStatusGroup().addPanel(LabelGrabber.INSTANCE.getLabel(\"adding.presentation.status\"));\n                        panel.getProgressBar().setProgress(-1);\n                        panel.getCancelButton().setOnAction(t -> {\n                            panel.done();\n                            halt = true;\n                        });\n                    });\n                    try {\n                        for(File file : files) {\n                            final PdfDisplayable displayable = new PdfDisplayable(file);\n                            if(!halt) {\n                                Platform.runLater(() -> {\n                                    QueleaProperties.get().setLastDirectory(file.getParentFile());\n                                    QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getScheduleList().add(displayable);\n                                });\n                            }\n                        }\n                    }\n                    catch(IOException ex) {\n                        System.err.println(\"IO \" + ex);\n                        if(!halt) {\n                            Platform.runLater(() -> Dialog.showError(LabelGrabber.INSTANCE.getLabel(\"adding.presentation.error.title\"), LabelGrabber.INSTANCE.getLabel(\"adding.presentation.error.message\")));\n                        }\n                    }\n                    catch(RuntimeException ex) {\n                        System.err.println(\"RE \" + ex);\n                        LOGGER.log(Level.WARNING, \"Couldn't import presentation\", ex);\n                        Platform.runLater(() -> Dialog.showError(LabelGrabber.INSTANCE.getLabel(\"adding.presentation.error.title\"), LabelGrabber.INSTANCE.getLabel(\"adding.presentation.error.message\")));\n                    }\n                    while(panel == null) {\n                        Utils.sleep(1000); //Quick bodge but hey, it works\n                    }\n                    panel.done();\n                }\n            }.start();\n        }\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/actionhandlers/AddPowerpointActionHandler.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.actionhandlers;\n\nimport java.io.File;\nimport java.io.IOException;\nimport java.util.List;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport javafx.application.Platform;\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport javafx.stage.FileChooser;\nimport org.javafx.dialog.Dialog;\nimport org.quelea.data.displayable.PresentationDisplayable;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.FileFilters;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.windows.main.StatusPanel;\n\n/**\n * The action listener for adding a powerpoint presentation.\n * <p>\n * @author Michael\n */\npublic class AddPowerpointActionHandler implements EventHandler<ActionEvent> {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n\n    /**\n     * Add the presentation\n     * <p>\n     * @param t the event.\n     */\n    @Override\n    public void handle(ActionEvent t) {\n        FileChooser chooser = new FileChooser();\n        if (QueleaProperties.get().getLastDirectory() != null) {\n            chooser.setInitialDirectory(QueleaProperties.get().getLastDirectory());\n        }\n        chooser.getExtensionFilters().add(FileFilters.POWERPOINT);\n        final List<File> files = chooser.showOpenMultipleDialog(QueleaApp.get().getMainWindow());\n        addPresentation(files);\n    }\n\n    public void addPresentation(List<File> files) {\n        if(files != null) {\n            new Thread() {\n\n                private StatusPanel panel;\n                private boolean halt;\n\n                @Override\n                public void run() {\n                    Platform.runLater(() -> {\n                        panel = QueleaApp.get().getStatusGroup().addPanel(LabelGrabber.INSTANCE.getLabel(\"adding.presentation.status\"));\n                        panel.getProgressBar().setProgress(-1);\n                        panel.getCancelButton().setOnAction(t -> {\n                            panel.done();\n                            halt = true;\n                        });\n                    });\n                    try {\n                        for(File file : files) {\n                            final PresentationDisplayable displayable = new PresentationDisplayable(file);\n                            if(!halt) {\n                                Platform.runLater(() -> {\n                                    QueleaProperties.get().setLastDirectory(file.getParentFile());\n                                    QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getScheduleList().add(displayable);\n                                });\n                            }\n                        }\n                    }\n                    catch(IOException ex) {\n                        if(!halt) {\n                            Platform.runLater(() -> Dialog.showError(LabelGrabber.INSTANCE.getLabel(\"adding.presentation.error.title\"), LabelGrabber.INSTANCE.getLabel(\"adding.presentation.error.message\")));\n                        }\n                    }\n                    catch(RuntimeException ex) {\n                        LOGGER.log(Level.WARNING, \"Couldn't import presentation\", ex);\n                        Platform.runLater(() -> Dialog.showError(LabelGrabber.INSTANCE.getLabel(\"adding.presentation.error.title\"), LabelGrabber.INSTANCE.getLabel(\"adding.presentation.error.message\")));\n                    }\n                    while(panel == null) {\n                        Utils.sleep(1000); //Quick bodge but hey, it works\n                    }\n                    panel.done();\n                }\n            }.start();\n        }\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/actionhandlers/AddSongActionHandler.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.actionhandlers;\n\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport org.quelea.data.VideoBackground;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.library.LibraryPanel;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.windows.main.schedule.SchedulePanel;\n\nimport java.util.List;\n\n/**\n * The action listener for adding a song, called when something fires off an\n * action that adds a song from the library to the schedule.\n * <p/>\n * @author Michael\n */\npublic class AddSongActionHandler implements EventHandler<ActionEvent> {\n    \n    private final boolean updateInDB;\n    \n    public AddSongActionHandler(boolean updateInDB) {\n        this.updateInDB = updateInDB;\n    }\n\n    /**\n     * Get the current selected song from the library to the schedule.\n     * <p/>\n     * @param t the event.\n     */\n    @Override\n    public void handle(ActionEvent t) {\n        LibraryPanel libraryPanel = QueleaApp.get().getMainWindow().getMainPanel().getLibraryPanel();\n        SchedulePanel schedulePanel = QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel();\n        List<SongDisplayable> songs = libraryPanel.getLibrarySongPanel().getSongList().getSelectedValues();\n        for(SongDisplayable song : songs) {\n            if (QueleaProperties.get().getSongOverflow() || !updateInDB) {\n                song = new SongDisplayable(song);\n            }\n            if (!updateInDB) {\n                song.setID(-1);\n                song.setNoDBUpdate();\n            }\n            if (QueleaProperties.get().getUseDefaultTranslation()) {\n                String defaultTranslation = QueleaProperties.get().getDefaultTranslationName();\n                if (defaultTranslation != null && !defaultTranslation.trim().isEmpty()) {\n                    song.setCurrentTranslationLyrics(defaultTranslation);\n                }\n            }\n            schedulePanel.getScheduleList().add(song);\n            libraryPanel.getLibrarySongPanel().getSearchBox().clear();\n        }\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/actionhandlers/AddTimerActionHandler.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.actionhandlers;\n\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport javafx.stage.Stage;\nimport org.quelea.windows.timer.CreateTimerPanel;\n\n/**\n * The action handler for adding a timer.\n *\n * @author Ben\n */\npublic class AddTimerActionHandler implements EventHandler<ActionEvent> {\n\n    @Override\n    public void handle(ActionEvent t) {\n        Stage s = new CreateTimerPanel(null);\n        s.showAndWait();\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/actionhandlers/AddVideoActionHandler.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.actionhandlers;\n\nimport java.io.File;\nimport java.util.List;\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport javafx.stage.FileChooser;\nimport org.quelea.data.displayable.VideoDisplayable;\nimport org.quelea.services.utils.FileFilters;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.QueleaApp;\n\n/**\n * The action handler for adding a multimedia file.\n *\n * @author Michael\n */\npublic class AddVideoActionHandler implements EventHandler<ActionEvent> {\n\n    @Override\n    public void handle(ActionEvent t) {\n        FileChooser fileChooser = new FileChooser();\n        if (QueleaProperties.get().getLastVideoDirectory() != null) {\n            fileChooser.setInitialDirectory(QueleaProperties.get().getLastVideoDirectory());\n        }\n        fileChooser.getExtensionFilters().add(FileFilters.MULTIMEDIA);\n        final List<File> files = fileChooser.showOpenMultipleDialog(QueleaApp.get().getMainWindow());\n\n        if (files != null) {\n            for (File file : files) {\n                QueleaProperties.get().setLastVideoDirectory(file.getParentFile());\n                VideoDisplayable displayable = new VideoDisplayable(file.getAbsolutePath());\n                QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getScheduleList().add(displayable);\n            }\n        }\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/actionhandlers/AddWebActionHandler.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.actionhandlers;\n\nimport java.util.Optional;\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport javafx.scene.control.TextInputDialog;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.stage.Stage;\nimport org.quelea.data.displayable.WebDisplayable;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.windows.main.QueleaApp;\n\n/**\n * The action handler responsible for letting the user add a websites to the\n * schedule.\n * <p>\n * @author Arvid\n */\npublic class AddWebActionHandler implements EventHandler<ActionEvent> {\n\n    @Override\n    public void handle(ActionEvent t) {\n        TextInputDialog dialog = new TextInputDialog(\"http://\");\n        dialog.setTitle(LabelGrabber.INSTANCE.getLabel(\"website.dialog.title\"));\n        dialog.setHeaderText(LabelGrabber.INSTANCE.getLabel(\"website.dialog.header\"));\n        dialog.setContentText(LabelGrabber.INSTANCE.getLabel(\"website.dialog.content\"));\n        dialog.setGraphic(new ImageView(new Image(\"file:icons/website.png\")));\n        Stage stage = (Stage) dialog.getDialogPane().getScene().getWindow();\n        stage.getIcons().add(new Image(\"file:icons/web-small.png\"));\n\n        Optional<String> result = dialog.showAndWait();\n        if (result.isPresent()) {\n            String url = result.get();\n            WebDisplayable displayable = new WebDisplayable(WebDisplayable.sanitiseUrl( url ));\n            QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getScheduleList().add(displayable);\n        }\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/actionhandlers/ClearingEventHandler.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.actionhandlers;\n\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport org.javafx.dialog.Dialog;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.windows.main.MainPanel;\nimport org.quelea.windows.main.QueleaApp;\n\n/**\n * An action listener that needs to check whether to clear the schedule before\n * doing so. Common examples include creating a new schedule or opening a\n * schedule - anything that clears the current content.\n *\n * @author Michael\n */\npublic abstract class ClearingEventHandler implements EventHandler<ActionEvent> {\n\n    private boolean yes = false;\n\n    /**\n     * Confirm whether it's ok to clear the current schedule.\n     *\n     * @return true if this is ok, false otherwise.\n     */\n    public boolean confirmClear() {\n        MainPanel mainpanel = QueleaApp.get().getMainWindow().getMainPanel();\n        if (mainpanel.getSchedulePanel().getScheduleList().isEmpty()) {\n            return true;\n        }\n        yes = true;\n        if(mainpanel.getSchedulePanel().getScheduleList().getSchedule().isModified()) {\n            final Dialog dialog = Dialog.buildConfirmation(LabelGrabber.INSTANCE.getLabel(\"confirm.label\"), LabelGrabber.INSTANCE.getLabel(\"schedule.clear.text\")).addYesButton(t -> {\n            }).addNoButton(t -> yes = false).build();\n            dialog.showAndWait();\n        }\n        return yes;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/actionhandlers/EditSongDBActionHandler.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.actionhandlers;\n\nimport javafx.application.Platform;\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.windows.newsong.SongEntryWindow;\n\n/**\n * Called when the current song in the library should be edited.\n *\n * @author Michael\n */\npublic class EditSongDBActionHandler implements EventHandler<ActionEvent> {\n\n    /**\n     * Edit the currently selected song in the library.\n     *\n     * @param t the action event.\n     */\n    @Override\n    public void handle(ActionEvent t) {\n        Platform.runLater(() -> {\n            SongEntryWindow songEntryWindow = QueleaApp.get().getMainWindow().getSongEntryWindow();\n            SongDisplayable song = QueleaApp.get().getMainWindow().getMainPanel().getLibraryPanel().getLibrarySongPanel().getSongList().getSelectedValues().get(0);\n            if(song != null) {\n                songEntryWindow.resetEditSong(song);\n                songEntryWindow.show();\n                songEntryWindow.toFront();\n            }\n        });\n\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/actionhandlers/EditSongScheduleActionHandler.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.actionhandlers;\n\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.windows.newsong.SongEntryWindow;\n\n/**\n * Called when the current song in the schedule should be edited.\n * @author Michael\n */\npublic class EditSongScheduleActionHandler implements EventHandler<ActionEvent> {\n\n    /**\n     * Edit the currently selected song in the library.\n     * @param t the action event.\n     */\n    @Override\n    public void handle(ActionEvent t) {\n        SongEntryWindow songEntryWindow = QueleaApp.get().getMainWindow().getSongEntryWindow();\n        songEntryWindow.resetEditSong((SongDisplayable) QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getScheduleList().getSelectionModel().getSelectedItem().displayable());\n        songEntryWindow.show();\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/actionhandlers/EditThemeScheduleActionHandler.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.actionhandlers;\n\nimport java.util.ArrayList;\nimport java.util.List;\n\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport javafx.geometry.Insets;\nimport javafx.geometry.Pos;\nimport javafx.scene.Scene;\nimport javafx.scene.control.Button;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.layout.BorderPane;\nimport javafx.scene.layout.HBox;\nimport javafx.stage.Modality;\nimport javafx.stage.Stage;\nimport org.fxmisc.richtext.InlineCssTextArea;\nimport org.quelea.data.displayable.Displayable;\nimport org.quelea.data.displayable.IndexedDisplayable;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.data.displayable.TextDisplayable;\nimport org.quelea.data.displayable.TextSection;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.windows.main.schedule.ScheduleList;\nimport org.quelea.windows.newsong.ThemePanel;\n\n/**\n * Called when the theme of the current item in the schedule should be edited.\n *\n * @author Ben\n */\npublic class EditThemeScheduleActionHandler implements EventHandler<ActionEvent> {\n\n    private final TextDisplayable selectedDisplayable;\n\n    public EditThemeScheduleActionHandler() {\n        this(null);\n    }\n\n    public EditThemeScheduleActionHandler(TextDisplayable selectedDisplayable) {\n        this.selectedDisplayable = selectedDisplayable;\n    }\n\n    /**\n     * Edit the theme of the currently selected item in the schedule.\n     *\n     * @param t the action event.\n     */\n    @Override\n    public void handle(ActionEvent t) {\n        TextDisplayable firstSelected = selectedDisplayable;\n        if (selectedDisplayable == null) {\n            firstSelected = (TextDisplayable) QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getScheduleList().getSelectionModel().getSelectedItem().displayable();\n        }\n        InlineCssTextArea wordsArea = new InlineCssTextArea();\n        wordsArea.replaceText(firstSelected.getSections()[0].toString().trim());\n        Button confirmButton = new Button(LabelGrabber.INSTANCE.getLabel(\"ok.button\"), new ImageView(new Image(\"file:icons/tick.png\")));\n        Button cancelButton = new Button(LabelGrabber.INSTANCE.getLabel(\"cancel.button\"), new ImageView(new Image(\"file:icons/cross.png\")));\n        final Stage s = new Stage();\n        s.initModality(Modality.APPLICATION_MODAL);\n        s.initOwner(QueleaApp.get().getMainWindow());\n        s.resizableProperty().setValue(false);\n        final BorderPane bp = new BorderPane();\n        final ThemePanel tp = new ThemePanel(wordsArea, confirmButton, true);\n        tp.setPrefSize(500, 500);\n        if (firstSelected.getSections().length > 0) {\n            tp.setTheme(firstSelected.getSections()[0].getTheme());\n        }\n        confirmButton.setOnAction(e -> {\n            if (tp.getTheme() != null) {\n                ScheduleList sl = QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getScheduleList();\n                tp.updateTheme(false);\n                List<Displayable> displayableList;\n                if (selectedDisplayable == null) {\n                    displayableList = sl.getSelectionModel().getSelectedItems().stream().map(IndexedDisplayable::displayable).toList();\n                } else {\n                    displayableList = new ArrayList<>();\n                    displayableList.add(selectedDisplayable);\n                }\n                for (Displayable eachDisplayable : displayableList) {\n                    if (eachDisplayable instanceof TextDisplayable) {\n                        ((TextDisplayable) eachDisplayable).setTheme(tp.getTheme());\n                        for (TextSection ts : ((TextDisplayable) eachDisplayable).getSections()) {\n                            ts.setTheme(tp.getTheme());\n                        }\n                        if (eachDisplayable instanceof SongDisplayable) {\n                            Utils.updateSongInBackground((SongDisplayable) eachDisplayable, true, false);\n                        }\n                    }\n                }\n                QueleaApp.get().getMainWindow().getMainPanel().getPreviewPanel().refresh();\n            }\n            s.hide();\n        });\n        cancelButton.setOnAction(e -> {\n            s.hide();\n        });\n        bp.setCenter(tp);\n\n        HBox hb = new HBox(10);\n        hb.setPadding(new Insets(10));\n        BorderPane.setAlignment(hb, Pos.CENTER);\n        hb.setAlignment(Pos.CENTER);\n        hb.getChildren().addAll(confirmButton, cancelButton);\n        bp.setBottom(hb);\n\n        Scene scene = new Scene(bp);\n        if (QueleaProperties.get().getUseDarkTheme()) {\n            scene.getStylesheets().add(\"org/modena_dark.css\");\n        }\n        s.setScene(scene);\n        s.setMinHeight(600);\n        s.setMinWidth(250);\n        s.showAndWait();\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/actionhandlers/EditTimerActionHandler.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.actionhandlers;\n\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport javafx.stage.Stage;\nimport org.quelea.data.displayable.TimerDisplayable;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.windows.timer.CreateTimerPanel;\n\n/**\n * The action handler for editing a timer.\n *\n * @author Ben\n */\npublic class EditTimerActionHandler implements EventHandler<ActionEvent> {\n\n    @Override\n    public void handle(ActionEvent t) {\n        Stage s = new CreateTimerPanel((TimerDisplayable)QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getScheduleList().getSelectionModel().getSelectedItem().displayable());\n        s.showAndWait();\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/actionhandlers/EditTimerThemeActionHandler.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.actionhandlers;\n\nimport java.util.Calendar;\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport javafx.geometry.Insets;\nimport javafx.geometry.Pos;\nimport javafx.scene.Scene;\nimport javafx.scene.control.Button;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.layout.BorderPane;\nimport javafx.scene.layout.HBox;\nimport javafx.stage.Modality;\nimport javafx.stage.Stage;\nimport org.fxmisc.richtext.InlineCssTextArea;\nimport org.quelea.data.displayable.TimerDisplayable;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.windows.newsong.ThemePanel;\n\n/**\n * Called when the theme of the current timer in the schedule should be edited.\n *\n * @author Ben\n */\npublic class EditTimerThemeActionHandler implements EventHandler<ActionEvent> {\n\n    private TimerDisplayable selectedDisplayable;\n\n    public EditTimerThemeActionHandler() {\n        this(null);\n    }\n\n    public EditTimerThemeActionHandler(TimerDisplayable selectedDisplayable) {\n        this.selectedDisplayable = selectedDisplayable;\n    }\n\n    /**\n     * Edit the theme of the currently selected item in the schedule.\n     *\n     * @param t the action event.\n     */\n    @Override\n    public void handle(ActionEvent t) {\n        InlineCssTextArea wordsArea = new InlineCssTextArea();\n        if(selectedDisplayable == null) {\n            selectedDisplayable = (TimerDisplayable) QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getScheduleList().getSelectionModel().getSelectedItem().displayable();\n        }\n        int seconds = selectedDisplayable.getSeconds();\n        if (seconds < 0) {\n            Calendar timer = selectedDisplayable.getTimeToFinish();\n            String text = timer.get(Calendar.HOUR) + \":\" + (timer.get(Calendar.MINUTE) > 9 ? \"\" : \"0\") + timer.get(Calendar.MINUTE) + timer.get(Calendar.AM_PM);\n            System.out.println(text);\n            wordsArea.replaceText(selectedDisplayable.getPretext() + text + selectedDisplayable.getPosttext());\n        } else {\n            wordsArea.replaceText(selectedDisplayable.getPretext() + selectedDisplayable.secondsToTime(seconds) + selectedDisplayable.getPosttext());\n        }\n        \n        Button confirmButton = new Button(LabelGrabber.INSTANCE.getLabel(\"ok.button\"), new ImageView(new Image(\"file:icons/tick.png\")));\n        Button cancelButton = new Button(LabelGrabber.INSTANCE.getLabel(\"cancel.button\"), new ImageView(new Image(\"file:icons/cross.png\")));\n        final Stage s = new Stage();\n        s.initModality(Modality.APPLICATION_MODAL);\n        s.initOwner(QueleaApp.get().getMainWindow());\n        s.resizableProperty().setValue(false);\n        s.setTitle(LabelGrabber.INSTANCE.getLabel(\"edit.theme.text\"));\n        final BorderPane bp = new BorderPane();\n        final ThemePanel tp = new ThemePanel(wordsArea, confirmButton, true);\n        tp.setPrefSize(500, 500);\n        tp.setTheme(selectedDisplayable.getTheme());\n        confirmButton.setOnAction((ActionEvent event) -> {\n            if (tp.getTheme() != null) {\n                tp.setTheme(tp.getTheme());\n                selectedDisplayable.setTheme(tp.getTheme());\n                QueleaApp.get().getMainWindow().getMainPanel().getPreviewPanel().refresh();\n            }\n            s.hide();\n        });\n        cancelButton.setOnAction((ActionEvent event) -> {\n            s.hide();\n        });\n        bp.setCenter(tp);\n\n        HBox hb = new HBox(10);\n        hb.setPadding(new Insets(10));\n        BorderPane.setAlignment(hb, Pos.CENTER);\n        hb.setAlignment(Pos.CENTER);\n        hb.getChildren().addAll(confirmButton, cancelButton);\n        bp.setBottom(hb);\n\n        Scene scene = new Scene(bp);\n        if (QueleaProperties.get().getUseDarkTheme()) {\n            scene.getStylesheets().add(\"org/modena_dark.css\");\n        }\n        s.setScene(scene);\n        s.setMinHeight(600);\n        s.setMinWidth(250);\n        s.showAndWait();\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/actionhandlers/ExitActionHandler.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.actionhandlers;\n\n\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport javafx.application.Platform;\nimport javafx.event.ActionEvent;\nimport javafx.event.Event;\nimport javafx.event.EventHandler;\nimport javafx.stage.WindowEvent;\nimport org.javafx.dialog.Dialog;\nimport org.quelea.data.Schedule;\nimport org.quelea.data.ScheduleSaver;\nimport org.quelea.data.displayable.Displayable;\nimport org.quelea.data.displayable.IndexedDisplayable;\nimport org.quelea.data.displayable.PresentationDisplayable;\nimport org.quelea.data.powerpoint.OOUtils;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.SceneInfo;\nimport org.quelea.windows.main.MainWindow;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.windows.main.toolbars.MainToolbar;\nimport org.quelea.windows.presentation.PowerPointHandler;\n\n/**\n * The exit action listener - called when the user requests they wish to exit\n * Quelea.\n * <p/>\n * @author Michael\n */\npublic class ExitActionHandler implements EventHandler<ActionEvent> {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    private boolean cancel = false;\n\n    /**\n     * Call this method when the event is fired.\n     */\n    @Override\n    public void handle(ActionEvent t) {\n        exit(t);\n    }\n\n    private boolean block = false;\n\n    /**\n     * Process the necessary logic to cleanly exit from Quelea.\n     *\n     * @param t the event that caused the exit.\n     */\n    public void exit(Event t) {\n        LOGGER.log(Level.INFO, \"exit() called\");\n        block = false;\n        MainWindow mainWindow = QueleaApp.get().getMainWindow();\n        t.consume();\n        Schedule schedule = mainWindow.getMainPanel().getSchedulePanel().getScheduleList().getSchedule();\n        if (!schedule.isEmpty() && schedule.isModified()) {\n            cancel = true;\n            Dialog d = Dialog.buildConfirmation(LabelGrabber.INSTANCE.getLabel(\"save.before.exit.title\"), LabelGrabber.INSTANCE.getLabel(\"save.before.exit.text\")).addYesButton(t14 -> {\n                //Save schedule\n                block = true;\n                new ScheduleSaver().saveSchedule(false, success -> {\n                    cancel = !success;\n                    block = false;\n                });\n            }).addNoButton(t13 -> cancel = false).addCancelButton(t12 -> {\n                //No need to do anything\n            }).build();\n            d.showAndWait();\n            while (block) {\n                try {\n                    Thread.sleep(5);\n                } catch (InterruptedException ex) {\n                    //Meh.\n                }\n            }\n            if (cancel) {\n                return; //Don't exit\n            }\n        }\n        LOGGER.log(Level.INFO, \"Saving window position...\");\n        QueleaProperties.get().setSceneInfo(new SceneInfo(mainWindow.getX(), mainWindow.getY(), mainWindow.getWidth(), mainWindow.getHeight(), mainWindow.isMaximized()));\n        QueleaProperties.get().setMainDivPos(mainWindow.getMainPanel().getMainDivPos());\n        QueleaProperties.get().setPrevLiveDivPos(mainWindow.getMainPanel().getPrevLiveDivPos());\n        QueleaProperties.get().setCanvasDivPos(mainWindow.getMainPanel().getLivePanel().getLyricsPanel().getSplitPane().getDividerPositions()[0]);\n        QueleaProperties.get().setPreviewDivPos(mainWindow.getMainPanel().getPreviewPanel().getLyricsPanel().getSplitPane().getDividerPositions()[0]);\n        QueleaProperties.get().setLibraryDivPos(mainWindow.getMainPanel().getLibraryDivPos());\n        LOGGER.log(Level.INFO, \"Hiding main window...\");\n        mainWindow.hide();\n        LOGGER.log(Level.INFO, \"Cleaning up displayables before exiting..\");\n        for (IndexedDisplayable d : mainWindow.getMainPanel().getSchedulePanel().getScheduleList().itemsProperty().get()) {\n            if (d != null) {\n                LOGGER.log(Level.INFO, \"Cleaning up {0}\", d.getClass());\n                d.displayable().dispose();\n            }\n        }\n\n        LOGGER.log(Level.INFO, \"Try to close OOfice if opened\");\n        OOUtils.closeOOApp();\n        if (QueleaApp.get().getMobileLyricsServer() != null) {\n            LOGGER.log(Level.INFO, \"Stopping mobile lyrics server\");\n            QueleaApp.get().getMobileLyricsServer().stop();\n        }\n        if (QueleaApp.get().getRemoteControlServer() != null) {\n            LOGGER.log(Level.INFO, \"Stopping remote control server\");\n            QueleaApp.get().getRemoteControlServer().stop();\n        }\n        if (QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().getDisplayable() instanceof PresentationDisplayable) {\n            LOGGER.log(Level.INFO, \"Closing open PowerPoint presentations\");\n            PowerPointHandler.closePresentation();\n        }\n\n        LOGGER.log(Level.INFO, \"Checking if Quelea currently is recording audio\");\n        MainToolbar toolbar = mainWindow.getMainToolbar();\n        RecordingsHandler recHandler = toolbar.getRecordButtonHandler().getRecordingsHandler();\n        if (toolbar.getRecordButtonHandler() != null && recHandler != null) {\n            if (recHandler.getIsRecording()) {\n                block = true;\n                Dialog d = Dialog.buildConfirmation(LabelGrabber.INSTANCE.getLabel(\"save.recording.before.exit.title\"), LabelGrabber.INSTANCE.getLabel(\"save.recording.before.exit.message\"))\n                        .addYesButton((ActionEvent t1) -> toolbar.stopRecording()).addNoButton((ActionEvent t1) -> System.exit(0)).build();\n                d.setOnCloseRequest((WindowEvent we) -> System.exit(0));\n                Thread thread = new Thread(() -> {\n                    while (block) {\n                        try {\n                            Thread.sleep(500);\n                            if (recHandler.getFinishedSaving()) {\n                                Platform.runLater(() -> d.close());\n                                if (QueleaProperties.get().getConvertRecordings()) {\n                                    boolean converting = recHandler.isConverting();\n                                    if (!converting) {\n                                        block = false;\n                                        System.exit(0);\n                                    }\n                                } else {\n                                    block = false;\n                                    System.exit(0);\n                                }\n                            }\n                        } catch (InterruptedException ex) {\n                        }\n                    }\n                });\n                thread.setDaemon(true);\n                thread.start();\n                d.showAndWait();\n                return; //Don't exit until the recording is saved and converted\n            }\n        }\n        System.exit(0);\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/actionhandlers/ExportPDFScheduleActionHandler.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.actionhandlers;\n\nimport java.io.File;\nimport java.io.IOException;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport javafx.stage.FileChooser;\nimport org.quelea.data.Schedule;\nimport org.quelea.services.print.SchedulePDFPrinter;\nimport org.quelea.services.utils.FileFilters;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.utils.DesktopApi;\nimport org.quelea.windows.main.QueleaApp;\n\n/**\n * An event handler that exports the current schedule to a PDF file.\n *\n * @author Michael\n */\npublic class ExportPDFScheduleActionHandler implements EventHandler<ActionEvent> {\n    \n    private static final Logger LOGGER = LoggerUtils.getLogger();\n\n    @Override\n    public void handle(ActionEvent t) {\n        Schedule schedule = QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getScheduleList().getSchedule();\n        try {\n            FileChooser fileChooser = new FileChooser();\n            if (QueleaProperties.get().getLastDirectory() != null) {\n                fileChooser.setInitialDirectory(QueleaProperties.get().getLastDirectory());\n            }\n            fileChooser.getExtensionFilters().add(FileFilters.PDF_GENERIC);\n            File file = fileChooser.showSaveDialog(QueleaApp.get().getMainWindow());\n            if (file != null) {\n                QueleaProperties.get().setLastDirectory(file.getParentFile());\n                if (!file.getName().toLowerCase().endsWith(\".pdf\")) {\n                    file = new File(file.getAbsolutePath() + \".pdf\");\n                }\n                new SchedulePDFPrinter().print(schedule, file);\n                String path = file.getAbsolutePath();\n                DesktopApi.open(file);\n            }\n        } catch (IOException ex) {\n            LOGGER.log(Level.SEVERE, \"Couldn't export schedule as pdf\", ex);\n        }\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/actionhandlers/ExportPDFScheduleSongsActionHandler.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.actionhandlers;\n\nimport java.io.File;\nimport java.io.FileOutputStream;\nimport java.io.IOException;\nimport java.nio.charset.Charset;\nimport java.util.ArrayList;\nimport java.util.HashSet;\nimport java.util.List;\nimport java.util.logging.Level;\nimport java.util.zip.ZipEntry;\nimport java.util.zip.ZipOutputStream;\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport javafx.stage.FileChooser;\nimport org.javafx.dialog.Dialog;\nimport org.quelea.data.Schedule;\nimport org.quelea.data.displayable.Displayable;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.services.importexport.PDFExporter;\nimport static org.quelea.services.importexport.PDFExporter.LOGGER;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.FileFilters;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.windows.main.StatusPanel;\n\n/**\n * An event handler that exports the current schedule to a PDF file.\n *\n * @author Michael\n */\npublic class ExportPDFScheduleSongsActionHandler implements EventHandler<ActionEvent> {\n\n    private boolean printChords;\n\n    @Override\n    public void handle(ActionEvent t) {\n        Schedule schedule = QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getScheduleList().getSchedule();\n        FileChooser fileChooser = new FileChooser();\n        if (QueleaProperties.get().getLastDirectory() != null) {\n            fileChooser.setInitialDirectory(QueleaProperties.get().getLastDirectory());\n        }\n        fileChooser.getExtensionFilters().add(FileFilters.ZIP);\n        File file = fileChooser.showSaveDialog(QueleaApp.get().getMainWindow());\n        if (file != null) {\n            QueleaProperties.get().setLastDirectory(file.getParentFile());\n            if (!file.getName().toLowerCase().endsWith(\".zip\")) {\n                file = new File(file.getAbsolutePath() + \".zip\");\n            }\n            Dialog.buildConfirmation(LabelGrabber.INSTANCE.getLabel(\"printing.options.text\"), LabelGrabber.INSTANCE.getLabel(\"print.chords.export.question\")).addYesButton(new EventHandler<ActionEvent>() {\n\n                @Override\n                public void handle(ActionEvent t) {\n                    printChords = true;\n                }\n            }).addNoButton(t1 -> printChords = false).build().showAndWait();\n            final StatusPanel panel = QueleaApp.get().getMainWindow().getMainPanel().getStatusPanelGroup().addPanel(LabelGrabber.INSTANCE.getLabel(\"exporting.label\") + \"...\");\n            final List<SongDisplayable> songDisplayablesThreadSafe = getSongs(schedule);\n            final File threadSafeFile = new File(file.getAbsolutePath());\n            new Thread(() -> {\n                try (ZipOutputStream out = new ZipOutputStream(new FileOutputStream(threadSafeFile), Charset.forName(\"UTF-8\"))) {\n                    for (int i = 0; i < songDisplayablesThreadSafe.size(); i++) {\n                        Displayable d = songDisplayablesThreadSafe.get(i);\n                        if (!(d instanceof SongDisplayable)) {\n                            continue;\n                        }\n                        SongDisplayable song = (SongDisplayable) d;\n                        String name = PDFExporter.sanitise(song.getTitle()) + \".pdf\";\n                        out.putNextEntry(new ZipEntry(name));\n                        out.write(PDFExporter.getPDF(song, printChords));\n                        panel.setProgress((double) i / songDisplayablesThreadSafe.size());\n                    }\n                    panel.done();\n                } catch (IOException ex) {\n                    LOGGER.log(Level.WARNING, \"Couldn't export PDF songs\", ex);\n                }\n            }).start();\n        }\n    }\n\n    private List<SongDisplayable> getSongs(Schedule schedule) {\n        List<SongDisplayable> ret = new ArrayList<>();\n        for (int i = 0; i < schedule.getSize(); i++) {\n            if (schedule.getDisplayable(i) instanceof SongDisplayable) {\n                ret.add((SongDisplayable) schedule.getDisplayable(i));\n            }\n        }\n        return ret;\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/actionhandlers/ExportPDFSongActionHandler.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.actionhandlers;\n\nimport java.io.File;\nimport java.io.IOException;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport javafx.stage.FileChooser;\nimport org.javafx.dialog.Dialog;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.print.SongPDFPrinter;\nimport org.quelea.services.utils.FileFilters;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.utils.DesktopApi;\nimport org.quelea.windows.library.LibrarySongList;\nimport org.quelea.windows.main.MainWindow;\nimport org.quelea.windows.main.QueleaApp;\n\n/**\n * An event handler that exports the currently selected song to a PDF file.\n *\n * @author Michael\n */\npublic class ExportPDFSongActionHandler implements EventHandler<ActionEvent> {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n\n    private boolean exportTranslations;\n\n    @Override\n    public void handle(ActionEvent t) {\n        MainWindow mainWindow = QueleaApp.get().getMainWindow();\n        final LibrarySongList songList = mainWindow.getMainPanel().getLibraryPanel().getLibrarySongPanel().getSongList();\n        final SongDisplayable song = songList.getListView().itemsProperty().get().get(songList.getListView().getSelectionModel().getSelectedIndex());\n        if (song == null) {\n            return;\n        }\n        try {\n            FileChooser fileChooser = new FileChooser();\n            if (QueleaProperties.get().getLastDirectory() != null) {\n                fileChooser.setInitialDirectory(QueleaProperties.get().getLastDirectory());\n            }\n            fileChooser.getExtensionFilters().add(FileFilters.PDF_GENERIC);\n            File file = fileChooser.showSaveDialog(QueleaApp.get().getMainWindow());\n            if (file != null) {\n                QueleaProperties.get().setLastDirectory(file.getParentFile());\n                if (song.hasChords()) {\n                    Dialog.buildConfirmation(LabelGrabber.INSTANCE.getLabel(\"printing.options.text\"), LabelGrabber.INSTANCE.getLabel(\"print.chords.question\")).addYesButton(t12 -> song.setPrintChords(true)).addNoButton(t1 -> song.setPrintChords(false)).build().showAndWait();\n                }\n                exportTranslations = false;\n                if (!song.getTranslations().isEmpty()) {\n                    Dialog.buildConfirmation(LabelGrabber.INSTANCE.getLabel(\"translation.export.heading\"), LabelGrabber.INSTANCE.getLabel(\"include.translations.question\")).addYesButton(t13 -> exportTranslations = true).addNoButton(new EventHandler<ActionEvent>() {\n\n                        @Override\n                        public void handle(ActionEvent t) {\n                            exportTranslations = true;\n                        }\n                    }).build().showAndWait();\n                }\n                if (!file.getName().toLowerCase().endsWith(\".pdf\")) {\n                    file = new File(file.getAbsolutePath() + \".pdf\");\n                }\n                SongPDFPrinter.INSTANCE.print(song, file, exportTranslations);\n                DesktopApi.open(file);\n            }\n        } catch (IOException ex) {\n            LOGGER.log(Level.SEVERE, \"Couldn't export song as PDF\", ex);\n        }\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/actionhandlers/LiveTextActionHandler.java",
    "content": " /* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.actionhandlers;\n\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport org.quelea.services.livetext.LiveTextDialog;\nimport org.quelea.services.languages.LabelGrabber;\n\n\n\npublic class LiveTextActionHandler implements EventHandler<ActionEvent> {\n\n    /**\n     * Popup the dialog to write live text...\n     * <p/>\n     * @param t the action event.\n     */\n    @Override\n    public void handle(ActionEvent t) {\n        LiveTextDialog.getUserInput(LabelGrabber.INSTANCE.getLabel(\"live.text.message\"), LabelGrabber.INSTANCE.getLabel(\"live.text.title\"));\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/actionhandlers/NewScheduleActionHandler.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.actionhandlers;\n\nimport javafx.event.ActionEvent;\nimport org.quelea.windows.main.QueleaApp;\n\n/**\n * The new schedule action listener.\n *\n * @author Michael\n */\npublic class NewScheduleActionHandler extends ClearingEventHandler {\n\n    @Override\n    public void handle(ActionEvent t) {\n        if(confirmClear()) {\n            QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getScheduleList().clearSchedule();\n        }\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/actionhandlers/NewSongActionHandler.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.actionhandlers;\n\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.windows.newsong.SongEntryWindow;\n\n/**\n * The action listener used when creating a new song.\n * @author Michael\n */\npublic class NewSongActionHandler implements EventHandler<ActionEvent> {\n\n    /**\n     * Popup the dialog to create a new song...\n     * <p/>\n     * @param t the action event.\n     */\n    @Override\n    public void handle(ActionEvent t) {\n        SongEntryWindow songEntryWindow = QueleaApp.get().getMainWindow().getSongEntryWindow();\n        songEntryWindow.resetNewSong();\n        songEntryWindow.show();\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/actionhandlers/OpenScheduleActionHandler.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.actionhandlers;\n\nimport java.io.File;\nimport javafx.stage.FileChooser;\nimport org.quelea.services.utils.FileFilters;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.windows.main.QueleaApp;\n\n/**\n * The open schedule action listener.\n * @author Michael\n */\npublic class OpenScheduleActionHandler extends ClearingEventHandler {\n\n    @Override\n    public void handle(javafx.event.ActionEvent t) {\n        if(confirmClear()) {\n            FileChooser chooser = new FileChooser();\n            if (QueleaProperties.get().getLastScheduleFileDirectory() != null) {\n                chooser.setInitialDirectory(QueleaProperties.get().getLastScheduleFileDirectory());\n            }\n            chooser.getExtensionFilters().add(FileFilters.SCHEDULE);\n            File file = chooser.showOpenDialog(QueleaApp.get().getMainWindow());\n            if(file!=null) {\n                QueleaProperties.get().setLastScheduleFileDirectory(file.getParentFile());\n                QueleaApp.get().openSchedule(file);\n                QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getThemeNode().refresh();\n            }\n        }\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/actionhandlers/PreviewSongActionHandler.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.actionhandlers;\n\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.windows.library.LibraryPanel;\nimport org.quelea.windows.main.PreviewPanel;\nimport org.quelea.windows.main.QueleaApp;\n\n\n/**\n * Action handler to preview the currently selected song in the library.\n * @author Michael\n */\npublic class PreviewSongActionHandler implements EventHandler<ActionEvent> {\n\n    @Override\n    public void handle(ActionEvent t) {\n        LibraryPanel libraryPanel = QueleaApp.get().getMainWindow().getMainPanel().getLibraryPanel();\n        PreviewPanel prevPanel = QueleaApp.get().getMainWindow().getMainPanel().getPreviewPanel();\n        SongDisplayable song = libraryPanel.getLibrarySongPanel().getSongList().getSelectedValues().get(0);\n        prevPanel.setDisplayable(song, 0);\n    }\n    \n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/actionhandlers/PrintScheduleActionHandler.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.actionhandlers;\n\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport org.quelea.services.print.Printer;\nimport org.quelea.windows.main.QueleaApp;\n\n/**\n * The print action listener.\n * <p/>\n * @author Michael\n */\npublic class PrintScheduleActionHandler implements EventHandler<ActionEvent> {\n\n    @Override\n    public void handle(ActionEvent t) {\n        Printer.getInstance().print(QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getScheduleList().getSchedule());\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/actionhandlers/QuickInsertActionHandler.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.actionhandlers;\n\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.windows.newsong.SongEntryWindow;\n\n/**\n * The action handler for adding a video.\n * <p/>\n * @author Michael\n */\npublic class QuickInsertActionHandler implements EventHandler<ActionEvent> {\n\n    /**\n     * Show the song displayable window and grab the resulting song entered,\n     * entering it into the schedule.\n     * <p/>\n     * @param t the action event.\n     */\n    @Override\n    public void handle(ActionEvent t) {\n        SongEntryWindow sew = QueleaApp.get().getMainWindow().getSongEntryWindow();\n        sew.resetQuickInsert();\n        sew.showAndWait();\n        if(!sew.wasCancelled()) {\n            SongDisplayable quickSong = sew.getSong();\n            quickSong.setQuickInsert();\n            quickSong.setNoDBUpdate();\n            if(!quickSong.getTitle().trim().isEmpty()) {\n                QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getScheduleList().add(quickSong);\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/actionhandlers/RecordButtonHandler.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.actionhandlers;\n\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport javafx.scene.control.ProgressBar;\nimport javafx.scene.control.TextField;\nimport javafx.scene.control.ToggleButton;\nimport javax.sound.sampled.UnsupportedAudioFileException;\n\n/**\n * Class to handle record button changes.\n *\n * @author Arvid\n */\npublic class RecordButtonHandler {\n\n    private RecordingsHandler recorder;\n    private String in;\n    private ProgressBar pb;\n    private TextField textField;\n    private ToggleButton tb;\n\n    /**\n     * Method to pass varibles to the class.\n     *\n     * @param in Text for switch: \"rec\", \"stop\", \"pause\" or \"resume\"\n     * @param pb ProgressBar to update sound level\n     * @param textField TextField for getting name of file\n     * @param tb ToggleButton to set recording time\n     */\n    public void passVariables(String in, ProgressBar pb, TextField textField, ToggleButton tb) {\n        this.in = in;\n        this.pb = pb;\n        this.textField = textField;\n        this.tb = tb;\n        handler();\n    }\n\n    public void handler() {\n\n        switch (in) {\n            case \"rec\": {\n                recorder = new RecordingsHandler();\n                Runnable r = () -> {\n                    recorder.start(pb, textField, tb);\n                };\n                new Thread(r).start();\n                break;\n            }\n            case \"stop\": {\n                Runnable r = () -> {\n                    if (recorder != null) {\n                        try {\n                            recorder.finish(textField, tb);\n                        } catch (UnsupportedAudioFileException ex) {\n                            Logger.getLogger(RecordButtonHandler.class.getName()).log(Level.SEVERE, null, ex);\n                        }\n                    }\n                };\n                new Thread(r).start();\n                break;\n            }\n        }\n    }\n\n    public RecordingsHandler getRecordingsHandler() {\n        return recorder;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/actionhandlers/RecordingsHandler.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.actionhandlers;\n\nimport java.io.File;\nimport java.io.IOException;\nimport java.nio.file.DirectoryNotEmptyException;\nimport java.nio.file.Files;\nimport java.nio.file.NoSuchFileException;\nimport java.nio.file.Path;\nimport java.nio.file.Paths;\nimport java.text.SimpleDateFormat;\nimport java.util.ArrayList;\nimport java.util.Calendar;\nimport java.util.List;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport javafx.application.Platform;\nimport javafx.event.ActionEvent;\nimport javafx.scene.control.ProgressBar;\nimport javafx.scene.control.TextField;\nimport javafx.scene.control.ToggleButton;\nimport javax.sound.sampled.AudioFileFormat;\nimport javax.sound.sampled.AudioFormat;\nimport javax.sound.sampled.AudioInputStream;\nimport javax.sound.sampled.AudioSystem;\nimport javax.sound.sampled.DataLine;\nimport javax.sound.sampled.LineUnavailableException;\nimport javax.sound.sampled.TargetDataLine;\nimport javax.sound.sampled.UnsupportedAudioFileException;\nimport org.javafx.dialog.Dialog;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.windows.main.StatusPanel;\nimport org.quelea.windows.multimedia.RecordingEncoder;\n\n/**\n * Class to handle the recordings.\n *\n * @author Arvid\n */\npublic class RecordingsHandler {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    private Dialog noDevicesDialog;\n    private File wavFile;\n    private final String timeStamp = new SimpleDateFormat(\"yyyy-MM-dd HH.mm.ss\").format(Calendar.getInstance().getTime());\n    private final String path = QueleaProperties.get().getRecordingsPath(); // Get path from settings\n    private final AudioFileFormat.Type fileType = AudioFileFormat.Type.WAVE; // format of audio file\n    private AudioInputStream ais;\n    private TargetDataLine targetLine; // the line from which audio data is captured\n    private AudioFormat format;\n    //Sound level variables\n//    private Thread captureThread;\n//    private float level;\n//    private final static float MAX_8_BITS_SIGNED = Byte.MAX_VALUE;\n//    private final static float MAX_8_BITS_UNSIGNED = 0xff;\n//    private final static float MAX_16_BITS_SIGNED = Short.MAX_VALUE;\n//    private final static float MAX_16_BITS_UNSIGNED = 0xffff;\n    private boolean isRecording;\n    private boolean finishedSaving;\n    private StatusPanel statusPanel;\n    private RecordingEncoder encoder;\n\n    /**\n     * Defines an audio format\n     */\n    private AudioFormat getAudioFormat() {\n        float sampleRate = 44100;\n        int sampleSizeInBits = 16;\n        int channels = 2;\n        boolean signed = true;\n        boolean bigEndian = true;\n        AudioFormat format = new AudioFormat(sampleRate, sampleSizeInBits, channels, signed, bigEndian);\n        return format;\n    }\n\n    /**\n     * Initialize a new recording. Captures the sound and saves it to a WAV file\n     *\n     * @param pb\n     * @param textField\n     * @param tb\n     */\n    public void start(ProgressBar pb, TextField textField, ToggleButton tb) {\n        try {\n            isRecording = true;\n            String fileName = timeStamp;\n            wavFile = new File(path, fileName + \".wav\");\n            Platform.runLater(() -> {\n                textField.setText(fileName);\n            });\n            format = getAudioFormat();\n            DataLine.Info info = new DataLine.Info(TargetDataLine.class, format);\n\n            // checks if system supports the data line\n            if (AudioSystem.isLineSupported(info)) {\n                LOGGER.log(Level.INFO, \"Capturing audio\");\n                targetLine = (TargetDataLine) AudioSystem.getLine(info);\n                targetLine.open(format);\n                targetLine.start();   // start capturing\n                ais = new AudioInputStream(targetLine);\n                startBuffering(pb, tb);\n            } else {\n                LOGGER.log(Level.INFO, \"No recording device found\");\n                Platform.runLater(() -> {\n                    Dialog.Builder setRecordingWarningBuilder = new Dialog.Builder()\n                            .create()\n                            .setTitle(LabelGrabber.INSTANCE.getLabel(\"recording.no.devices.title\"))\n                            .setMessage(LabelGrabber.INSTANCE.getLabel(\"recording.no.devices.message\"))\n                            .addLabelledButton(LabelGrabber.INSTANCE.getLabel(\"ok.button\"), (ActionEvent t) -> {\n                                noDevicesDialog.hide();\n                                noDevicesDialog = null;\n                            });\n                    noDevicesDialog = setRecordingWarningBuilder.setWarningIcon().build();\n                    noDevicesDialog.show();\n                });\n                Platform.runLater(() -> {\n                    QueleaApp.get().getMainWindow().getMainToolbar().stopRecording();\n                });\n            }\n        } catch (LineUnavailableException ex) {\n            LOGGER.log(Level.WARNING, \"Line unavailable\", ex);\n        }\n    }\n\n    /**\n     * Closes the target data line to finish capturing and recording\n     *\n     * @param textField\n     * @param tb\n     * @throws UnsupportedAudioFileException\n     */\n    public void finish(TextField textField, ToggleButton tb) throws UnsupportedAudioFileException {\n        try {\n            if (targetLine == null) { //Means we never started recording, probably no available devices\n                return;\n            }\n            targetLine.stop();\n            targetLine.close();\n            try {\n                ais.close();\n            } catch (IOException ex) {\n                Logger.getLogger(RecordingsHandler.class.getName()).log(Level.SEVERE, null, ex);\n            }\n            File newName = new File(path, textField.getText().replaceAll(\"[^\\\\p{L}0-9.-]\", \"_\") + \".wav\");\n            wavFile.renameTo(newName);\n\n            // Convert to MP3 if setting is checked\n            if (QueleaProperties.get().getConvertRecordings()) {\n                if (!Utils.isMac()) {\n                    String[] options = {\":sout=#transcode{vcodec=none,acodec=mp3,ab=128,channels=2,samplerate=44100}:std{access=file{no-overwrite},mux=mp3,dst='\" + newName.getAbsolutePath().replace(\".wav\", \".mp3\") + \"'} vlc://quit\"};\n                    new RecordingEncoder(newName.getAbsolutePath(), options).run();\n                } else {\n                    convertOSX(newName.getAbsolutePath());\n                }\n            }\n\n            LOGGER.log(Level.INFO, \"Saved\");\n        } finally {\n            isRecording = false;\n            finishedSaving = true;\n        }\n    }\n\n    /**\n     * Method to start capturing sound.\n     *\n     * @param pb ProgressBar to display sound input level\n     * @param tb ToggleButton to display time\n     */\n    private void startBuffering(ProgressBar pb, ToggleButton tb) {\n        new Thread() {\n            public void run() {\n                try {\n                    AudioSystem.write(ais, fileType, wavFile);\n                } catch (IOException ex) {\n                    LOGGER.log(Level.WARNING, \"Error writing to wav\", ex);\n                }\n            }\n        }.start();\n//        Runnable runner = new Runnable() {\n//\n//            @Override\n//            public void run() {\n//                running = true;\n//        while (running) {\n//                    calculateLevel(buffer, 0, 0);\n//                    Platform.runLater(() -> {\n//                        pb.setProgress(level);\n//                    });\n//                    long elapsedTimeMillis;\n//                    elapsedTimeMillis = System.currentTimeMillis() - startTime + tempTime;\n//                    setTime(elapsedTimeMillis, tb);\n//\n//                    // Change the color of the ProgressBar depending on level\n//                    // Proper limits should be checked\n//                    Platform.runLater(() -> {\n//                        if (level > 0.9f) {\n//                            pb.setStyle(\"-fx-accent: red;\");\n//                        } else if (level > 0.7) {\n//                            pb.setStyle(\"-fx-accent: orange;\");\n//                        } else {\n//                            pb.setStyle(\"-fx-accent: green;\");\n//                        }\n//                    });\n//\n//                }\n//                Platform.runLater(() -> {\n//                    tb.setText(\"\");\n//                });\n//            }\n//\n//        };\n//        captureThread = new Thread(runner);\n//        captureThread.start();\n        }\n\n//    /**\n//     * Method to calculate input level.\n//     *\n//     * @param buffer\n//     * @param readPoint\n//     * @param leftOver\n//     */\n//    private void calculateLevel(byte[] buffer,\n//            int readPoint,\n//            int leftOver) {\n//        int max = 0;\n//        boolean use16Bit = (format.getSampleSizeInBits() == 16);\n//        boolean signed = (format.getEncoding()\n//                == AudioFormat.Encoding.PCM_SIGNED);\n//        boolean bigEndian = (format.isBigEndian());\n//        if (use16Bit) {\n//            for (int i = readPoint; i < buffer.length - leftOver; i += 2) {\n//                int value = 0;\n//                // deal with endianness\n//                int hiByte = (bigEndian ? buffer[i] : buffer[i + 1]);\n//                int loByte = (bigEndian ? buffer[i + 1] : buffer[i]);\n//                if (signed) {\n//                    short shortVal = (short) hiByte;\n//                    shortVal = (short) ((shortVal << 8) | (byte) loByte);\n//                    value = shortVal;\n//                } else {\n//                    value = (hiByte << 8) | loByte;\n//                }\n//                max = Math.max(max, value);\n//            } // for\n//        } else {\n//            // 8 bit - no endianness issues, just sign\n//            for (int i = readPoint; i < buffer.length - leftOver; i++) {\n//                int value = 0;\n//                if (signed) {\n//                    value = buffer[i];\n//                } else {\n//                    short shortVal = 0;\n//                    shortVal = (short) (shortVal | buffer[i]);\n//                    value = shortVal;\n//                }\n//                max = Math.max(max, value);\n//            } // for\n//        } // 8 bit\n//        // express max as float of 0.0 to 1.0 of max value\n//        // of 8 or 16 bits (signed or unsigned)\n//        if (signed) {\n//            if (use16Bit) {\n//                level = (float) max / MAX_16_BITS_SIGNED;\n//            } else {\n//                level = (float) max / MAX_8_BITS_SIGNED;\n//            }\n//        } else if (use16Bit) {\n//            level = (float) max / MAX_16_BITS_UNSIGNED;\n//        } else {\n//            level = (float) max / MAX_8_BITS_UNSIGNED;\n//        }\n//    } // calculateLevel\n\n\n    public boolean getIsRecording() {\n        return isRecording;\n    }\n\n    public boolean getFinishedSaving() {\n        return finishedSaving;\n    }\n\n    /**\n     * @return the status\n     */\n    public boolean isConverting() {\n        if (encoder != null) {\n            return encoder.isConverting();\n        } else {\n            return false;\n        }\n    }\n\n    /**\n     * Use Mac command line to convert recording to MP3 and delete old file.\n     *\n     * @param file original to convert.\n     */\n    private void convertOSX(String file) {\n        Platform.runLater(() -> {\n            statusPanel = QueleaApp.get().getStatusGroup().addPanel(LabelGrabber.INSTANCE.getLabel(\"Converting recording to MP3\"));\n        });\n        Process vlcProcess;\n        List<String> vlcArgs = new ArrayList<>();\n        {\n            vlcArgs.add(\"/Applications/VLC.app/Contents/MacOS/VLC\");\n            vlcArgs.add(file);\n            vlcArgs.add(\"-I\");\n            vlcArgs.add(\"dummy\");\n            vlcArgs.add(\"--sout=#transcode{vcodec=none,acodec=mp3,ab=128,channels=2,samplerate=44100}:std{access=file{no-overwrite},mux=mp3,dst=\" + file.replace(\"wav\", \"mp3\") + \"}\");\n            vlcArgs.add(\"vlc://quit\");\n        }\n\n        try {\n            vlcProcess = Runtime.getRuntime().exec(vlcArgs.toArray(new String[0]));\n        } catch (Exception exc) {\n            LOGGER.log(Level.INFO, \"Failed to start VLC\", exc);\n        } finally {\n            // Wait a second to make sure the conversion starts before deleting the old file\n            try {\n                Thread.sleep(1000);\n            } catch (InterruptedException ignored) {\n            }\n            String error;\n            Path oldFile = Paths.get(file);\n            do {\n                try {\n                    if (new File(file.replace(\"wav\", \"mp3\")).exists()) {\n                        Files.delete(oldFile);\n                    }\n                    error = \"\";\n                } catch (NoSuchFileException | DirectoryNotEmptyException x) {\n                    error = \"\";\n                } catch (IOException x) {\n                    // If the file is still being read by the system,\n                    // keep trying to delete until it's avaiable again.\n                    error = \"busy\";\n                }\n            } while (!error.equals(\"\"));\n            if (statusPanel != null) {\n                Platform.runLater(() -> {\n                    statusPanel.done();\n                });\n            }\n        }\n    }\n    \n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/actionhandlers/RemoveScheduleItemActionHandler.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.actionhandlers;\n\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.windows.main.schedule.ScheduleList;\n\n/**\n * Action listener to remove a song from the schedule.\n * <p/>\n * @author Michael\n */\npublic class RemoveScheduleItemActionHandler implements EventHandler<ActionEvent> {\n\n    /**\n     * Remove the currently selected song from the schedule.\n     * <p/>\n     * @param t the action event (ignored.)\n     */\n    @Override\n    public void handle(ActionEvent t) {\n        ScheduleList scheduleList = QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getScheduleList();\n        int selectedIndex = scheduleList.getSelectionModel().getSelectedIndex();\n        scheduleList.removeCurrentItem();\n        if(selectedIndex == scheduleList.itemsProperty().get().size()) {\n            selectedIndex--;\n        }\n        if(selectedIndex >= 0) {\n            scheduleList.getSelectionModel().select(selectedIndex);\n        }\n        QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().updateScheduleDisplay();\n//        QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().updateCanvases(); //This stops a playing video when an item is deleted, which isn't what we want.\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/actionhandlers/RemoveSongDBActionHandler.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.actionhandlers;\n\nimport javafx.application.Platform;\nimport javafx.collections.ObservableList;\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport org.javafx.dialog.Dialog;\nimport org.quelea.data.db.SongManager;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.windows.library.LibrarySongList;\nimport org.quelea.windows.main.MainWindow;\nimport org.quelea.windows.main.QueleaApp;\n\nimport java.util.List;\n\n/**\n * Action listener that removes the selected song from the database.\n * <p/>\n *\n * @author Michael\n */\npublic class RemoveSongDBActionHandler implements EventHandler<ActionEvent> {\n\n    private boolean yes = false;\n\n    /**\n     * Remove the selected song from the database.\n     * <p/>\n     *\n     * @param t the action event.\n     */\n    @Override\n    public void handle(ActionEvent t) {\n        MainWindow mainWindow = QueleaApp.get().getMainWindow();\n        final LibrarySongList songList = mainWindow.getMainPanel().getLibraryPanel().getLibrarySongPanel().getSongList();\n        List<Integer> indices = songList.getListView().getSelectionModel().getSelectedIndices();\n        if (indices.isEmpty()) {\n            return;\n        }\n\n        String confirmRemoveQuestion;\n        if (indices.size() == 1) {\n            final SongDisplayable song = songList.getListView().itemsProperty().get().get(indices.get(0));\n            confirmRemoveQuestion = LabelGrabber.INSTANCE.getLabel(\"confirm.remove.question\").replace(\"$1\", song.getTitle());\n        } else {\n            confirmRemoveQuestion = LabelGrabber.INSTANCE.getLabel(\"confirm.remove.bulk.question\").replace(\"$1\", Integer.toString(indices.size()));\n        }\n\n        yes = false;\n        Dialog.buildConfirmation(LabelGrabber.INSTANCE.getLabel(\"confirm.remove.text\"),\n                        confirmRemoveQuestion)\n                .addYesButton(t1 -> yes = true).addNoButton(t12 -> {\n                }).build().showAndWait();\n        if (yes) {\n            songList.setLoading(true);\n            new Thread(() -> {\n                ObservableList<SongDisplayable> items = songList.getListView().getSelectionModel().getSelectedItems();\n                if (!SongManager.get().removeSongs(items)) {\n                    Platform.runLater(() -> Dialog.showError(LabelGrabber.INSTANCE.getLabel(\"error.text\"), LabelGrabber.INSTANCE.getLabel(\"error.removing.song.db\")));\n                } else {\n                    items.forEach(s -> s.setID(-1));\n                }\n                Platform.runLater(() -> {\n                    songList.getListView().itemsProperty().get().removeAll(items);\n                    songList.setLoading(false);\n                });\n            }).start();\n        }\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/actionhandlers/RemoveTimerActionHandler.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.actionhandlers;\n\nimport java.io.File;\nimport javafx.application.Platform;\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport org.javafx.dialog.Dialog;\nimport org.quelea.data.displayable.TimerDisplayable;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.windows.library.TimerListPanel;\nimport org.quelea.windows.main.MainWindow;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.windows.timer.TimerIO;\n\n/**\n * Action listener that removes the selected timer from the folder\n * <p/>\n * @author Ben\n */\npublic class RemoveTimerActionHandler implements EventHandler<ActionEvent> {\n\n    private boolean yes = false;\n\n    /**\n     * Remove the selected song from the database.\n     * <p/>\n     * @param t the action event.\n     */\n    @Override\n    public void handle(ActionEvent t) {\n        MainWindow mainWindow = QueleaApp.get().getMainWindow();\n        final TimerListPanel tlp = mainWindow.getMainPanel().getLibraryPanel().getTimerPanel().getTimerPanel();\n        int index = tlp.getListView().getSelectionModel().getSelectedIndex();\n        if (index == -1) {\n            return;\n        }\n        final TimerDisplayable td = tlp.getListView().itemsProperty().get().get(index);\n        if (td == null) {\n            return;\n        }\n        yes = false;\n        Dialog.buildConfirmation(LabelGrabber.INSTANCE.getLabel(\"confirm.remove.text\"),\n                LabelGrabber.INSTANCE.getLabel(\"confirm.remove.timer\").replace(\"$1\", td.getName()))\n                .addYesButton((ActionEvent t1) -> {\n                    yes = true;\n                }).addNoButton((ActionEvent t1) -> {\n                }).build().showAndWait();\n\n        if (yes) {\n            new Thread() {\n                @Override\n                public void run() {\n                    File f = QueleaProperties.get().getTimerDir();\n                    for (int i = 0; i < f.listFiles().length; i++) {\n                        File file = f.listFiles()[i];\n                        TimerDisplayable t = TimerIO.timerFromFile(file);\n                        if (t!=null && t.getName().equals(td.getName())) {\n                            file.delete();\n                            Platform.runLater(() -> {\n                                QueleaApp.get().getMainWindow().getMainPanel().getLibraryPanel().getTimerPanel().getTimerPanel().refresh();\n                            });\n                            i = f.listFiles().length + 1;\n                        }\n                    }\n                }\n            }.start();\n        }\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/actionhandlers/SaveScheduleActionHandler.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.actionhandlers;\n\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport org.quelea.data.ScheduleSaver;\n\n/**\n * The save schedule action listener.\n * @author Michael\n */\npublic class SaveScheduleActionHandler implements EventHandler<ActionEvent> {\n    \n    private boolean saveas;\n    \n    /**\n     * Create a new save schedule action listener.\n     * @param saveas true if we're doing a \"save as\", false if it's just a\n     * save.\n     */\n    public SaveScheduleActionHandler(boolean saveas) {\n        this.saveas = saveas;\n    }\n    \n    @Override\n    public void handle(ActionEvent t) {\n        new ScheduleSaver().saveSchedule(saveas, null);\n    }\n    \n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/actionhandlers/SearchBibleActionHandler.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.actionhandlers;\n\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport org.quelea.windows.main.QueleaApp;\n\n/**\n * Action listener called to display the bible search dialog.\n *\n * @author Michael\n */\npublic class SearchBibleActionHandler implements EventHandler<ActionEvent> {\n    \n    @Override\n    public void handle(javafx.event.ActionEvent t) {\n        QueleaApp.get().getMainWindow().getBibleSearchDialog().show();\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/actionhandlers/SelectTranslationsActionHandler.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.actionhandlers;\n\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.windows.lyrics.TranslationChoiceDialog;\nimport org.quelea.windows.main.QueleaApp;\n\n/**\n * The action handler for selecting what translation to display (if any) for a\n * particular song.\n *\n * @author Michael\n */\npublic class SelectTranslationsActionHandler implements EventHandler<ActionEvent> {\n\n    @Override\n    public void handle(ActionEvent t) {\n        TranslationChoiceDialog translationDialog = QueleaApp.get().getMainWindow().getTranslationChoiceDialog();\n        translationDialog.selectSong((SongDisplayable) QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getScheduleList().getSelectionModel().getSelectedItem().displayable());\n        translationDialog.show();\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/actionhandlers/ShowNoticesActionHandler.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.actionhandlers;\n\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport org.quelea.windows.main.QueleaApp;\n\n/**\n * Action listener to show the notices.\n * @author Michael\n */\npublic class ShowNoticesActionHandler implements EventHandler<ActionEvent> {\n\n    @Override\n    public void handle(ActionEvent t) {\n        QueleaApp.get().getMainWindow().getNoticeDialog().show();\n        QueleaApp.get().getMainWindow().getNoticeDialog().toFront();\n    }\n    \n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/actionhandlers/ShowOptionsActionHandler.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.actionhandlers;\n\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport org.quelea.windows.main.QueleaApp;\n\n/**\n * The action listener called to show the options dialog.\n * @author Michael\n */\npublic class ShowOptionsActionHandler implements EventHandler<ActionEvent> {\n    \n    @Override\n    public void handle(javafx.event.ActionEvent t) {\n        QueleaApp.get().getMainWindow().getPreferencesDialog().show();\n    }\n    \n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/actionhandlers/SwitchBibleVersionActionHandler.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.actionhandlers;\n\nimport java.util.ArrayList;\nimport java.util.HashSet;\nimport java.util.IdentityHashMap;\nimport java.util.List;\nimport java.util.Map;\nimport java.util.Set;\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport org.quelea.data.ThemeDTO;\nimport org.quelea.data.bible.Bible;\nimport org.quelea.data.bible.BibleVerse;\nimport org.quelea.data.displayable.BiblePassage;\nimport org.quelea.data.displayable.Displayable;\nimport org.quelea.data.displayable.IndexedDisplayable;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.windows.main.SwitchBibleVersionDialog;\nimport org.quelea.windows.main.schedule.ScheduleList;\n\n/**\n * The action handler used when switching bible versions.\n *\n * @author Michael\n */\npublic class SwitchBibleVersionActionHandler implements EventHandler<ActionEvent> {\n\n    private final SwitchBibleVersionDialog dialog = new SwitchBibleVersionDialog();\n\n    @Override\n    public void handle(ActionEvent event) {\n        ScheduleList sl = QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getScheduleList();\n        Set<Bible> excludes = new HashSet<>();\n        for (IndexedDisplayable d : sl.getSelectionModel().getSelectedItems()) {\n            if (d.displayable() instanceof BiblePassage) {\n                excludes.add(((BiblePassage) d.displayable()).getVerses()[0].getChapter().getBook().getBible());\n            }\n        }\n        Bible exclude = null;\n        if (excludes.size() == 1) {\n            exclude = excludes.iterator().next();\n        }\n        Bible b = dialog.getSwitchVersion(exclude);\n        if (b == null) {\n            return;\n        }\n        Map<BiblePassage, BiblePassage> replaceMap = new IdentityHashMap<>();\n        for (IndexedDisplayable d : sl.getSelectionModel().getSelectedItems()) {\n            if (d.displayable() instanceof BiblePassage passage) {\n                ThemeDTO theme = passage.getTheme();\n                List<BibleVerse> newVerses = new ArrayList<>();\n                for (BibleVerse verse : passage.getVerses()) {\n                    int verseNum = verse.getNum();\n                    int chapterNum = verse.getChapter().getNum();\n                    int bookNum = verse.getChapter().getBook().getBookNumber();\n                    newVerses.add(b.getBooks()[bookNum - 1].getChapter(chapterNum - 1).getVerse(verseNum));\n                }\n                BibleVerse firstVerse = newVerses.get(0);\n                String summary = firstVerse.getChapter().getBook() + \" \" + passage.getLocation().split(\" (?=\\\\d)\")[1] + \"\\n\" + b.getBibleName();\n                replaceMap.put(passage, new BiblePassage(summary, newVerses.toArray(new BibleVerse[newVerses.size()]), theme, passage.getMulti()));\n            }\n        }\n        List<Integer> selected = new ArrayList<>(sl.getSelectionModel().getSelectedIndices());\n        sl.getSelectionModel().clearSelection();\n        for (BiblePassage key : replaceMap.keySet()) {\n            int index = sl.indexOf(key);\n            if (index != -1) {\n                sl.getItems().remove(index);\n                sl.getItems().add(index, new IndexedDisplayable(replaceMap.get(key), index));\n            }\n        }\n        if (!selected.isEmpty()) {\n            int[] selectRange = new int[selected.size() - 1];\n            for (int i = 1; i < selected.size(); i++) {\n                selectRange[i - 1] = selected.get(i);\n            }\n            sl.getSelectionModel().selectIndices(selected.get(0), selectRange);\n        }\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/actionhandlers/ViewBibleActionHandler.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.actionhandlers;\n\nimport javafx.event.EventHandler;\nimport org.quelea.windows.main.QueleaApp;\n\n/**\n * Action handler for displaying the dialog to view the contents of bibles.\n * @author Michael\n */\npublic class ViewBibleActionHandler implements EventHandler<javafx.event.ActionEvent> {\n\n    @Override\n    public void handle(javafx.event.ActionEvent t) {\n        QueleaApp.get().getMainWindow().getBibleBrowseDialog().show();\n    }\n    \n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/menus/DatabaseMenu.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.menus;\n\nimport javafx.scene.control.Menu;\nimport javafx.scene.control.MenuItem;\nimport javafx.scene.control.SeparatorMenuItem;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.input.KeyCode;\nimport javafx.scene.input.KeyCodeCombination;\nimport javafx.scene.input.KeyCombination;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.windows.main.actionhandlers.NewSongActionHandler;\n\n/**\n * Quelea's database menu.\n *\n * @author Michael\n */\npublic class DatabaseMenu extends Menu {\n\n    private final MenuItem newSongItem;\n    private final ImportMenu importMenu;\n    private final ExportMenu exportMenu;\n\n    /**\n     * Create the database menu.\n     */\n    public DatabaseMenu() {\n        super(LabelGrabber.INSTANCE.getLabel(\"database.heading\"));\n\n        newSongItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"new.song.button\"), new ImageView(new Image(QueleaProperties.get().getUseDarkTheme() ? \"file:icons/newsong-light.png\" : \"file:icons/newsong.png\", 16, 16, false, true)));\n        newSongItem.setOnAction(new NewSongActionHandler());\n        newSongItem.setAccelerator(new KeyCodeCombination(KeyCode.N, KeyCombination.SHORTCUT_DOWN, KeyCombination.SHIFT_DOWN));\n        getItems().add(newSongItem);\n\n        getItems().add(new SeparatorMenuItem());\n        importMenu = new ImportMenu();\n        getItems().add(importMenu);\n        exportMenu = new ExportMenu();\n        getItems().add(exportMenu);\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/menus/ExportMenu.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.menus;\n\n\nimport java.util.Arrays;\nimport java.util.List;\nimport javafx.scene.control.Menu;\nimport javafx.scene.control.MenuItem;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.stage.FileChooser;\nimport org.quelea.data.db.SongManager;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.services.importexport.OpenLyricsExporter;\nimport org.quelea.services.importexport.PDFExporter;\nimport org.quelea.services.importexport.QSPExporter;\nimport org.quelea.services.importexport.SelectExportedSongsDialog;\nimport org.quelea.services.importexport.SongListExporter;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.FileFilters;\nimport org.quelea.windows.main.QueleaApp;\n\n/**\n * Quelea's export menu.\n * <p>\n * @author Michael\n */\npublic class ExportMenu extends Menu {\n\n    private final MenuItem qspItem;\n    private final MenuItem pdfItem;\n    private final MenuItem listItem;\n    private final MenuItem openLyricsItem;\n\n    /**\n     * Create the export menu.\n     */\n    public ExportMenu() {\n        super(LabelGrabber.INSTANCE.getLabel(\"export.heading\"), new ImageView(new Image(\"file:icons/right.png\", 16, 16, false, true)));\n\n        qspItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"qsp.button\"), new ImageView(new Image(\"file:icons/logo16.png\", 16, 16, false, true)));\n        qspItem.setOnAction(evt -> {\n\t\t\tfinal List<SongDisplayable> songs = Arrays.asList(SongManager.get().getSongs());\n\t\t\t//TODO: Determine if number of songs is above some threshold, then display warning that Quelea might be unresponsive while dialog is built.\n\t\t\tSelectExportedSongsDialog dialog = new SelectExportedSongsDialog(songs, new QSPExporter());\n\t\t\tdialog.showAndWait(); //This line is what takes the time for a large number of songs.\n\t\t});\n        getItems().add(qspItem);\n\n        openLyricsItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"olyrics.button\"));\n        openLyricsItem.setOnAction(evt -> {\n\t\t\tfinal List<SongDisplayable> songs = Arrays.asList(SongManager.get().getSongs());\n\t\t\t//TODO: Determine if number of songs is above some threshold, then display warning that Quelea might be unresponsive while dialog is built.\n\t\t\tSelectExportedSongsDialog dialog = new SelectExportedSongsDialog(songs, new OpenLyricsExporter());\n\t\t\tdialog.showAndWait(); //This line is what takes the time for a large number of songs.\n\t\t});\n        getItems().add(openLyricsItem);\n\n        pdfItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"pdf.button\"), new ImageView(new Image(\"file:icons/pdf.png\", 16, 16, false, true)));\n        pdfItem.setOnAction(evt -> {\n\t\t\tfinal List<SongDisplayable> songs = Arrays.asList(SongManager.get().getSongs());\n\t\t\t//TODO: Determine if number of songs is above some threshold, then display warning that Quelea might be unresponsive while dialog is built.\n\t\t\tSelectExportedSongsDialog dialog = new SelectExportedSongsDialog(songs, new PDFExporter());\n\t\t\tdialog.showAndWait(); //This line is what takes the time for a large number of songs.\n\t\t});\n        getItems().add(pdfItem);\n\n        listItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"song.list\"), new ImageView(new Image(\"file:icons/list.png\", 16, 16, false, true)));\n        listItem.setOnAction(evt -> {\n\t\t\tFileChooser fc = new FileChooser();\n\t\t\tfc.getExtensionFilters().add(FileFilters.CSV);\n\t\t\tfc.setSelectedExtensionFilter(FileFilters.CSV);\n\t\t\tnew SongListExporter().exportToFile(fc.showSaveDialog(QueleaApp.get().getMainWindow()));\n\t\t});\n        getItems().add(listItem);\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/menus/FileMenu.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.menus;\n\n\nimport javafx.scene.control.Menu;\nimport javafx.scene.control.MenuItem;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.input.KeyCode;\nimport javafx.scene.input.KeyCodeCombination;\nimport javafx.scene.input.KeyCombination;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.actionhandlers.ExitActionHandler;\nimport org.quelea.windows.main.actionhandlers.ExportPDFScheduleActionHandler;\nimport org.quelea.windows.main.actionhandlers.NewScheduleActionHandler;\nimport org.quelea.windows.main.actionhandlers.OpenScheduleActionHandler;\nimport org.quelea.windows.main.actionhandlers.PrintScheduleActionHandler;\nimport org.quelea.windows.main.actionhandlers.SaveScheduleActionHandler;\n\n/**\n * Quelea's file menu.\n *\n * @author Michael\n */\npublic class FileMenu extends Menu {\n\n    private MenuItem newItem;\n    private MenuItem openItem;\n    private MenuItem saveItem;\n    private MenuItem saveAsItem;\n    private MenuItem exportToPDFItem;\n    private MenuItem printItem;\n    private MenuItem exitItem;\n\n    /**\n     * Create the file menu.\n     */\n    public FileMenu() {\n        super(LabelGrabber.INSTANCE.getLabel(\"file.menu\"));\n        boolean darkTheme = QueleaProperties.get().getUseDarkTheme();\n\n        newItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"new.schedule.button\"));\n        if (!Utils.isMac()) {\n            newItem.setGraphic(getImage(\"file:icons/filenew.png\"));\n        }\n        newItem.setOnAction(new NewScheduleActionHandler());\n        newItem.setAccelerator(new KeyCodeCombination(KeyCode.N, KeyCombination.SHORTCUT_DOWN));\n        getItems().add(newItem);\n\n        openItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"open.schedule.button\"));\n        if (!Utils.isMac()) {\n            openItem.setGraphic(getImage(\"file:icons/fileopen.png\"));\n        }\n        openItem.setOnAction(new OpenScheduleActionHandler());\n        openItem.setAccelerator(new KeyCodeCombination(KeyCode.O, KeyCombination.SHORTCUT_DOWN));\n        getItems().add(openItem);\n\n        saveItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"save.schedule.button\"));\n        if (!Utils.isMac()) {\n            saveItem.setGraphic(getImage(\"file:icons/filesave.png\"));\n        }\n        saveItem.setOnAction(new SaveScheduleActionHandler(false));\n        saveItem.setAccelerator(new KeyCodeCombination(KeyCode.S, KeyCombination.SHORTCUT_DOWN));\n        getItems().add(saveItem);\n\n        saveAsItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"save.as.schedule.button\"));\n        if (!Utils.isMac()) {\n            saveAsItem.setGraphic(getImage(\"file:icons/filesaveas.png\"));\n        }\n        saveAsItem.setOnAction(new SaveScheduleActionHandler(true));\n        getItems().add(saveAsItem);\n\n        exportToPDFItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"export.schedule.pdf.button\"));\n        if(!Utils.isMac()) {\n            exportToPDFItem.setGraphic(new ImageView(new Image(\"file:icons/fileexport.png\", 20, 20, true, false)));\n        }\n        exportToPDFItem.setOnAction(new ExportPDFScheduleActionHandler());\n        getItems().add(exportToPDFItem);\n\n        printItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"print.schedule.button\"));\n        if (!Utils.isMac()) {\n            printItem.setGraphic(getImage(\"file:icons/fileprint.png\"));\n        }\n        printItem.setOnAction(new PrintScheduleActionHandler());\n        printItem.setAccelerator(new KeyCodeCombination(KeyCode.P, KeyCombination.SHORTCUT_DOWN));\n        getItems().add(printItem);\n\n        exitItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"exit.button\"));\n        if(!Utils.isMac()) {\n            exitItem.setGraphic(new ImageView(new Image(\"file:icons/exit.png\", 20, 20, true, false)));\n        }\n        exitItem.setOnAction(new ExitActionHandler());\n        getItems().add(exitItem);\n    }\n\n    private ImageView getImage(String path) {\n        if (QueleaProperties.get().getUseDarkTheme())\n            path = path.replace(\".png\", \"-light.png\");\n        return new ImageView(new Image(path, 20, 20, true, false));\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/menus/HelpMenu.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.menus;\n\nimport java.awt.Desktop;\nimport java.util.logging.Logger;\nimport javafx.application.Platform;\nimport javafx.scene.control.Menu;\nimport javafx.scene.control.MenuItem;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport org.javafx.dialog.Dialog;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.UpdateChecker;\nimport org.quelea.utils.DesktopApi;\nimport org.quelea.windows.help.AboutDialog;\n\n/**\n * Quelea's help menu.\n * <p/>\n * @author Michael\n */\npublic class HelpMenu extends Menu {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    private final MenuItem queleaFacebook;\n    private final MenuItem queleaDiscuss;\n    private final MenuItem queleaWiki;\n    private final MenuItem updateCheck;\n    private final MenuItem about;\n    private AboutDialog aboutDialog;\n\n    /**\n     * Create a new help menu\n     */\n    public HelpMenu() {\n        super(LabelGrabber.INSTANCE.getLabel(\"help.menu\"));\n\n        Platform.runLater(() -> {\n            aboutDialog = new AboutDialog();\n        });\n\n        if (Desktop.isDesktopSupported()) {\n            queleaFacebook = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"help.menu.facebook\"), new ImageView(new Image(\"file:icons/facebook.png\", 16, 16, false, true)));\n            queleaFacebook.setOnAction(t -> {\n                launchPage(QueleaProperties.get().getFacebookPageLocation());\n            });\n            getItems().add(queleaFacebook);\n            queleaDiscuss = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"help.menu.discussion\"), new ImageView(new Image(\"file:icons/discuss.png\", 16, 16, false, true)));\n            queleaDiscuss.setOnAction(t -> {\n                launchPage(QueleaProperties.get().getDiscussLocation());\n            });\n            getItems().add(queleaDiscuss);\n            queleaWiki = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"help.menu.wiki\"), new ImageView(new Image(\"file:icons/wiki.png\", 16, 16, false, true)));\n            queleaWiki.setOnAction(t -> {\n                launchPage(QueleaProperties.get().getWikiPageLocation());\n            });\n            getItems().add(queleaWiki);\n        } else {\n            queleaDiscuss = null;\n            queleaFacebook = null;\n            queleaWiki = null;\n        }\n        updateCheck = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"help.menu.update\"), new ImageView(new Image(\"file:icons/update.png\", 16, 16, false, true)));\n        updateCheck.setOnAction(t -> {\n            new UpdateChecker().checkUpdate(true, true, true);\n        });\n        getItems().add(updateCheck);\n        about = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"help.menu.about\"), new ImageView(new Image(\"file:icons/about.png\", 16, 16, false, true)));\n        about.setOnAction(t -> {\n            aboutDialog.show();\n        });\n        getItems().add(about);\n    }\n\n    private void launchPage(String page) {\n        DesktopApi.browse(page);\n    }\n\n    /**\n     * Show a dialog saying we couldn't open the given location.\n     * <p/>\n     * @param page the location that failed to open.\n     */\n    private void showError(String page) {\n        Platform.runLater(() -> {\n            Dialog.showError(LabelGrabber.INSTANCE.getLabel(\"help.menu.error.title\"), LabelGrabber.INSTANCE.getLabel(\"help.menu.error.text\").replace(\"$1\", page));\n        });\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/menus/ImportMenu.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.menus;\n\nimport javafx.event.ActionEvent;\nimport javafx.scene.control.Menu;\nimport javafx.scene.control.MenuItem;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport org.quelea.services.importexport.EasySlidesImportDialog;\nimport org.quelea.services.importexport.EasyWorshipImportDialog;\nimport org.quelea.services.importexport.EpicWorshipImportDialog;\nimport org.quelea.services.importexport.FreeWorshipImportDialog;\nimport org.quelea.services.importexport.ImportDialog;\nimport org.quelea.services.importexport.MediaShoutImportDialog;\nimport org.quelea.services.importexport.MissionPraiseImportDialog;\nimport org.quelea.services.importexport.OpenLPImportDialog;\nimport org.quelea.services.importexport.OpenLyricsImportDialog;\nimport org.quelea.services.importexport.OpenSongImportDialog;\nimport org.quelea.services.importexport.PlainTextSongsImportDialog;\nimport org.quelea.services.importexport.PresentationManagerImportDialog;\nimport org.quelea.services.importexport.QSPImportDialog;\nimport org.quelea.services.importexport.SoFImportDialog;\nimport org.quelea.services.importexport.SongBeamerImportDialog;\nimport org.quelea.services.importexport.SongProImportDialog;\nimport org.quelea.services.importexport.SourceImportDialog;\nimport org.quelea.services.importexport.SundayPlusImportDialog;\nimport org.quelea.services.importexport.SurvivorImportDialog;\nimport org.quelea.services.importexport.VideoPsalmImportDialog;\nimport org.quelea.services.importexport.ZWTurboDBChecker;\nimport org.quelea.services.importexport.ZionWorxImportDialog;\nimport org.quelea.services.importexport.PlanningCenterOnlineImportDialog;\nimport org.quelea.services.importexport.ElevantoImportDialog;\nimport org.quelea.services.importexport.ProPresenterImportDialog;\nimport org.quelea.services.importexport.ScreenMonkeyImportDialog;\nimport org.quelea.services.importexport.WorshipHimImportDialog;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.Utils;\n\n/**\n * Quelea's import menu.\n * <p>\n * @author Michael\n */\npublic class ImportMenu extends Menu {\n\n    private final ImportDialog sImportDialog;\n    private final ImportDialog qspImportDialog;\n    private final ImportDialog openSongImportDialog;\n    private final ImportDialog missionPraiseImportDialog;\n    private final ImportDialog openLPImportDialog;\n    private final ImportDialog openLyricsImportDialog;\n    private final ImportDialog zionWorxImportDialog;\n    private final ImportDialog sourceImportDialog;\n    private final ImportDialog plainTextImportDialog;\n    private final ImportDialog easySlidesImportDialog;\n    private final ImportDialog proPresenterImportDialog;\n    private final ImportDialog freeWorshipImportDialog;\n    private final ImportDialog easyWorshipImportDialog;\n    private final ImportDialog sundayPlusImportDialog;\n    private final ImportDialog songproImportDialog;\n    private final ImportDialog videoPsalmImportDialog;\n    private final ImportDialog mediaShoutImportDialog;\n    private final ImportDialog worshipHimImportDialog;\n    private final ImportDialog songBeamerImportDialog;\n    private final ImportDialog epicWorshipImportDialog;\n    private final ImportDialog presentationManagerImportDialog;\n    private final ImportDialog screenMonkeyImportDialog;\n    private final ImportDialog sofImportDialog;\n    private final PlanningCenterOnlineImportDialog planningCenterOnlineImportDialog;\n    private final ElevantoImportDialog elevantoImportDialog;\n    private final MenuItem qspItem;\n    private final MenuItem osItem;\n    private final MenuItem mpItem;\n    private final MenuItem spItem;\n    private final MenuItem olItem;\n    private final MenuItem freeWorshipItem;\n    private final MenuItem olpItem;\n    private final MenuItem zwItem;\n    private final MenuItem ssItem;\n    private final MenuItem sbItem;\n    private final MenuItem sofItem;\n    private final MenuItem sourceItem;\n    private final MenuItem pmItem;\n    private final MenuItem smItem;\n    private final MenuItem mediaShoutItem;\n    private final MenuItem worshipHimItem;\n    private final MenuItem plainTextItem;\n    private final MenuItem easySlidesItem;\n    private final MenuItem proPresenterItem;\n    private final MenuItem easyWorshipItem;\n    private final MenuItem songproItem;\n    private final MenuItem vsItem;\n    private final MenuItem epicWorshipItem;\n    private final MenuItem pcoItem;\n    private final MenuItem elevantoItem;\n\n    /**\n     * Create the import menu.\n     */\n    public ImportMenu() {\n        super(LabelGrabber.INSTANCE.getLabel(\"import.heading\"), new ImageView(new Image(\"file:icons/left.png\", 16, 16, false, true)));\n\n        qspImportDialog = new QSPImportDialog();\n        openSongImportDialog = new OpenSongImportDialog();\n        missionPraiseImportDialog = new MissionPraiseImportDialog();\n        openLPImportDialog = new OpenLPImportDialog();\n        openLyricsImportDialog = new OpenLyricsImportDialog();\n        zionWorxImportDialog = new ZionWorxImportDialog();\n        sImportDialog = new SurvivorImportDialog();\n        sourceImportDialog = new SourceImportDialog();\n        plainTextImportDialog = new PlainTextSongsImportDialog();\n        easySlidesImportDialog = new EasySlidesImportDialog();\n        proPresenterImportDialog = new ProPresenterImportDialog();\n        freeWorshipImportDialog = new FreeWorshipImportDialog();\n        easyWorshipImportDialog = new EasyWorshipImportDialog();\n        songproImportDialog = new SongProImportDialog();\n        videoPsalmImportDialog = new VideoPsalmImportDialog();\n        sundayPlusImportDialog = new SundayPlusImportDialog();\n        mediaShoutImportDialog = new MediaShoutImportDialog();\n        worshipHimImportDialog = new WorshipHimImportDialog();\n        songBeamerImportDialog = new SongBeamerImportDialog();\n        epicWorshipImportDialog = new EpicWorshipImportDialog();\n        presentationManagerImportDialog = new PresentationManagerImportDialog();\n        screenMonkeyImportDialog = new ScreenMonkeyImportDialog();\n        sofImportDialog = new SoFImportDialog();\n        planningCenterOnlineImportDialog = new PlanningCenterOnlineImportDialog();\n        elevantoImportDialog = new ElevantoImportDialog();\n\n        qspItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"qsp.button\"), new ImageView(new Image(\"file:icons/logo16.png\", 16, 16, false, true)));\n        qspItem.setOnAction((ActionEvent t) -> {\n            qspImportDialog.show();\n        });\n\n        osItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"os.button\"), new ImageView(new Image(\"file:icons/opensong.png\", 16, 16, false, true)));\n        osItem.setOnAction((ActionEvent t) -> {\n            openSongImportDialog.show();\n        });\n\n        mpItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"mp.button\"), new ImageView(new Image(\"file:icons/missionpraise.png\", 16, 16, false, true)));\n        mpItem.setOnAction((ActionEvent t) -> {\n            missionPraiseImportDialog.show();\n        });\n        \n        // planning center online\n        pcoItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"pco.button\"), new ImageView(new Image(\"file:icons/planningcenteronline.png\", 16, 16, false, true)));\n        pcoItem.setOnAction((ActionEvent t) -> {\n            planningCenterOnlineImportDialog.start();\n        });\n//        pcoItem.setAccelerator(new KeyCodeCombination(KeyCode.P, KeyCombination.SHORTCUT_DOWN, KeyCombination.ALT_DOWN));\n        \n        // elevanto\n        elevantoItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"elevanto.button\"), new ImageView(new Image(\"file:icons/elevanto.png\", 16, 16, false, true)));\n        elevantoItem.setOnAction((ActionEvent t) -> {\n            elevantoImportDialog.start();\n        });\n//        elevantoItem.setAccelerator(new KeyCodeCombination(KeyCode.E, KeyCombination.SHORTCUT_DOWN, KeyCombination.ALT_DOWN));\n\n        olpItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"olp.button\"), new ImageView(new Image(\"file:icons/openlp.png\", 16, 16, false, true)));\n        olpItem.setOnAction((ActionEvent t) -> {\n            openLPImportDialog.show();\n        });\n\n        olItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"olyrics.button\"));\n        olItem.setOnAction((ActionEvent t) -> {\n            openLyricsImportDialog.show();\n        });\n\n        zwItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"zw.button\"), new ImageView(new Image(\"file:icons/zionworx.png\", 16, 16, false, true)));\n        zwItem.setOnAction((ActionEvent t) -> {\n            boolean ok = new ZWTurboDBChecker().runChecks();\n            if (ok) {\n                zionWorxImportDialog.show();\n            }\n        });\n\n        spItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"sp.button\"), new ImageView(new Image(\"file:icons/sundayplus.png\", 16, 16, false, true)));\n        spItem.setOnAction((ActionEvent t) -> {\n            sundayPlusImportDialog.show();\n        });\n\n        ssItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"ss.button\"), new ImageView(new Image(\"file:icons/survivor.jpg\", 16, 16, false, true)));\n        ssItem.setOnAction((ActionEvent t) -> {\n            sImportDialog.show();\n        });\n\n        mediaShoutItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"mediashout.button\"), new ImageView(new Image(\"file:icons/mediashout.png\", 16, 16, false, true)));\n        mediaShoutItem.setOnAction((ActionEvent t) -> {\n            mediaShoutImportDialog.show();\n        });\n\n        worshipHimItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"worshiphim.button\"), new ImageView(new Image(\"file:icons/worshiphim.png\", 16, 16, false, true)));\n        worshipHimItem.setOnAction((ActionEvent t) -> {\n            worshipHimImportDialog.show();\n        });\n\n        sbItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"songbeamer.button\"), new ImageView(new Image(\"file:icons/songbeamer.png\", 16, 16, false, true)));\n        sbItem.setOnAction((ActionEvent t) -> {\n            songBeamerImportDialog.show();\n        });\n\n        sourceItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"source.button\"), new ImageView(new Image(\"file:icons/source.jpg\", 16, 16, false, true)));\n        sourceItem.setOnAction((ActionEvent t) -> {\n            sourceImportDialog.show();\n        });\n\n        easySlidesItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"easyslides.button\"), new ImageView(new Image(\"file:icons/easyslides.png\", 16, 16, false, true)));\n        easySlidesItem.setOnAction((ActionEvent t) -> {\n            easySlidesImportDialog.show();\n        });\n\n        proPresenterItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"propresenter.button\"), new ImageView(new Image(\"file:icons/propresenter.png\", 16, 16, false, true)));\n        proPresenterItem.setOnAction((ActionEvent t) -> {\n            proPresenterImportDialog.show();\n        });\n\n        freeWorshipItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"freeworship.button\"), new ImageView(new Image(\"file:icons/freeworship.png\", 16, 16, false, true)));\n        freeWorshipItem.setOnAction((ActionEvent t) -> {\n            freeWorshipImportDialog.show();\n        });\n\n        easyWorshipItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"easyworship.button\"), new ImageView(new Image(\"file:icons/easyworship.png\", 16, 16, false, true)));\n        easyWorshipItem.setOnAction((ActionEvent t) -> {\n            easyWorshipImportDialog.show();\n        });\n\n        songproItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"songpro.button\"), new ImageView(new Image(\"file:icons/songpro.png\", 16, 16, false, true)));\n        songproItem.setOnAction((ActionEvent t) -> {\n            songproImportDialog.show();\n        });\n\n        vsItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"videopsalm.button\"));\n        vsItem.setOnAction((ActionEvent t) -> {\n            videoPsalmImportDialog.show();\n        });\n\n        epicWorshipItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"epicworship.button\"), new ImageView(new Image(\"file:icons/epicworship.png\", 16, 16, false, true)));\n        epicWorshipItem.setOnAction((ActionEvent t) -> {\n            epicWorshipImportDialog.show();\n        });\n\n        pmItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"pm.button\"), new ImageView(new Image(\"file:icons/pm.png\", 16, 16, false, true)));\n        pmItem.setOnAction((ActionEvent t) -> {\n            presentationManagerImportDialog.show();\n        });\n\n        smItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"sm.button\"), new ImageView(new Image(\"file:icons/sm.png\", 16, 16, false, true)));\n        smItem.setOnAction((ActionEvent t) -> {\n            screenMonkeyImportDialog.show();\n        });\n\n        sofItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"sof.button\"), new ImageView(new Image(\"file:icons/sof.png\", 16, 16, false, true)));\n        sofItem.setOnAction((ActionEvent t) -> {\n            sofImportDialog.show();\n        });\n\n        plainTextItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"plainText.button\"), new ImageView(new Image(\"file:icons/text.png\", 16, 16, false, true)));\n        plainTextItem.setOnAction((ActionEvent t) -> {\n            plainTextImportDialog.show();\n        });\n\n        getItems().add(easySlidesItem);\n        getItems().add(easyWorshipItem);\n        getItems().add(elevantoItem);\n        getItems().add(epicWorshipItem);\n        getItems().add(freeWorshipItem);\n        getItems().add(mediaShoutItem);\n        getItems().add(mpItem);\n        getItems().add(olpItem);\n        getItems().add(olItem);\n        getItems().add(osItem);\n        getItems().add(pcoItem);\n        getItems().add(plainTextItem);\n        getItems().add(pmItem);\n        getItems().add(proPresenterItem);\n        getItems().add(qspItem);\n        getItems().add(smItem);\n        getItems().add(sbItem);\n        getItems().add(songproItem);\n        getItems().add(sofItem);\n        getItems().add(spItem);\n        getItems().add(ssItem);\n        getItems().add(sourceItem);\n        getItems().add(vsItem);\n        getItems().add(worshipHimItem);\n        if (Utils.isWindows()) {\n            getItems().add(zwItem);\n        }\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/menus/MainMenuBar.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.menus;\n\nimport javafx.scene.control.MenuBar;\n\n/**\n * Quelea's main menu bar. Contains all the sub-menus.\n * @author Michael\n */\npublic class MainMenuBar extends MenuBar {\n    \n    private FileMenu fileMenu;\n    private ScheduleMenu scheduleMenu;\n    private DatabaseMenu databaseMenu;\n    private ToolsMenu toolsMenu;\n    private HelpMenu helpMenu;\n    \n    public MainMenuBar() {\n        fileMenu = new FileMenu();\n        getMenus().add(fileMenu);\n        \n        scheduleMenu = new ScheduleMenu();\n        getMenus().add(scheduleMenu);\n        \n        databaseMenu = new DatabaseMenu();\n        getMenus().add(databaseMenu);\n        \n        toolsMenu = new ToolsMenu();\n        getMenus().add(toolsMenu);\n        \n        helpMenu = new HelpMenu();\n        getMenus().add(helpMenu);\n    }\n    \n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/menus/ScheduleMenu.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.menus;\n\nimport java.util.logging.Logger;\nimport javafx.scene.control.Menu;\nimport javafx.scene.control.MenuItem;\nimport javafx.scene.control.SeparatorMenuItem;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.layout.StackPane;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.ShortcutManager;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.MainPanel;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.windows.main.actionhandlers.AddDVDActionHandler;\nimport org.quelea.windows.main.actionhandlers.AddImageActionHandler;\nimport org.quelea.windows.main.actionhandlers.AddPdfActionHandler;\nimport org.quelea.windows.main.actionhandlers.AddPowerpointActionHandler;\nimport org.quelea.windows.main.actionhandlers.AddTimerActionHandler;\nimport org.quelea.windows.main.actionhandlers.AddVideoActionHandler;\nimport org.quelea.windows.main.actionhandlers.AddWebActionHandler;\nimport org.quelea.windows.main.actionhandlers.ExportPDFScheduleSongsActionHandler;\nimport org.quelea.windows.main.actionhandlers.ShowNoticesActionHandler;\nimport org.quelea.windows.main.schedule.ScheduleList;\n\n/**\n * Quelea's schedule menu.\n * <p/>\n *\n * @author Michael\n */\npublic class ScheduleMenu extends Menu {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    private final MenuItem addPowerpointItem;\n    private final MenuItem addVideoItem;\n    private final MenuItem addTimerItem;\n    private final MenuItem addDVDItem;\n    private final MenuItem addPDFItem;\n    private final MenuItem addWebItem;\n    private final MenuItem addImageItem;\n    private final StackPane dvdImageStack;\n    private final MenuItem manageNoticesItem;\n    private final MenuItem exportScheduleItem;\n\n    /**\n     * Create the scheudle menu\n     */\n    public ScheduleMenu() {\n        super(LabelGrabber.INSTANCE.getLabel(\"schedule.menu\"));\n\n        final MainPanel mainPanel = QueleaApp.get().getMainWindow().getMainPanel();\n        final ScheduleList scheduleList = mainPanel.getSchedulePanel().getScheduleList();\n        boolean darkTheme = QueleaProperties.get().getUseDarkTheme();\n\n        addPowerpointItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"add.presentation.button\"));\n        if (!Utils.isMac()) {\n            addPowerpointItem.setGraphic(new ImageView(new Image(darkTheme ? \"file:icons/powerpoint-light.png\" : \"file:icons/powerpoint.png\", 20, 20, true, false)));\n        }\n        addPowerpointItem.setOnAction(new AddPowerpointActionHandler());\n        getItems().add(addPowerpointItem);\n\n        addVideoItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"add.video.button\"));\n        if (!Utils.isMac()) {\n            addVideoItem.setGraphic(new ImageView(new Image(darkTheme ? \"file:icons/video file-light.png\" : \"file:icons/video file.png\", 20, 20, true, false)));\n        }\n        addVideoItem.setOnAction(new AddVideoActionHandler());\n        getItems().add(addVideoItem);\n\n        addTimerItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"add.timer.tooltip\"), new ImageView(new Image(darkTheme ? \"file:icons/timer-dark-light.png\" : \"file:icons/timer-dark.png\", 16, 16, false, true)));\n        addTimerItem.setOnAction(new AddTimerActionHandler());\n        getItems().add(addTimerItem);\n\n        addPDFItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"add.pdf.tooltip\"), new ImageView(new Image(darkTheme ? \"file:icons/add_pdf-light.png\" : \"file:icons/add_pdf.png\", 16, 16, false, true)));\n        addPDFItem.setOnAction(new AddPdfActionHandler());\n        getItems().add(addPDFItem);\n\n        dvdImageStack = new StackPane();\n        dvdImageStack.getChildren().add(new ImageView(new Image(darkTheme ? \"file:icons/dvd-light.png\" : \"file:icons/dvd.png\", 16, 16, false, true)));\n        addDVDItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"add.dvd.button\"), dvdImageStack);\n        addDVDItem.setOnAction(new AddDVDActionHandler());\n        if (!Utils.isMac()) {\n            getItems().add(addDVDItem);\n        }\n\n        addWebItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"add.website\"), new ImageView(new Image(darkTheme ? \"file:icons/web-small-light.png\" : \"file:icons/web-small.png\", 16, 16, false, true)));\n        addWebItem.setOnAction(new AddWebActionHandler());\n        getItems().add(addWebItem);\n\n        addImageItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"add.images.panel\"), new ImageView(new Image(darkTheme ? \"file:icons/image-light.png\" : \"file:icons/image.png\", 16, 16, false, true)));\n        addImageItem.setOnAction(new AddImageActionHandler());\n        getItems().add(addImageItem);\n\n        getItems().add(new SeparatorMenuItem());\n\n        manageNoticesItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"manage.notices.button\"), new ImageView(new Image(darkTheme ? \"file:icons/info-light.png\" : \"file:icons/info.png\", 16, 16, false, true)));\n        manageNoticesItem.setOnAction(new ShowNoticesActionHandler());\n        manageNoticesItem.setAccelerator(ShortcutManager.getKeyCodeCombination(QueleaProperties.get().getNoticesKeys()));\n        getItems().add(manageNoticesItem);\n\n        exportScheduleItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"export.schedule.songs.pdf.button\"), new ImageView(new Image(darkTheme ? \"file:icons/pdf-light.png\" : \"file:icons/pdf.png\", 16, 16, false, true)));\n        exportScheduleItem.setOnAction(new ExportPDFScheduleSongsActionHandler());\n        getItems().add(exportScheduleItem);\n\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/menus/ToolsMenu.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.menus;\n\nimport java.lang.ref.SoftReference;\n\nimport javafx.scene.control.Menu;\nimport javafx.scene.control.MenuItem;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.input.KeyCode;\nimport javafx.scene.input.KeyCodeCombination;\nimport javafx.scene.input.KeyCombination;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.ShortcutManager;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.windows.main.actionhandlers.LiveTextActionHandler;\nimport org.quelea.windows.main.actionhandlers.SearchBibleActionHandler;\nimport org.quelea.windows.main.actionhandlers.ShowOptionsActionHandler;\nimport org.quelea.windows.main.actionhandlers.ViewBibleActionHandler;\nimport org.quelea.windows.main.widgets.TestPaneDialog;\n\n/**\n * Quelea's tools menu.\n * <p>\n *\n * @author Michael\n */\npublic class ToolsMenu extends Menu {\n\n    private final MenuItem searchBibleItem;\n    private final MenuItem viewBibleItem;\n    private final MenuItem liveTextItem;\n    private final MenuItem testItem;\n    private final MenuItem optionsItem;\n    private SoftReference<TestPaneDialog> testDialog = new SoftReference<>(null);\n\n    /**\n     * Create the tools menu.\n     */\n    public ToolsMenu() {\n        super(LabelGrabber.INSTANCE.getLabel(\"tools.menu\"));\n        boolean darkTheme = QueleaProperties.get().getUseDarkTheme();\n\n        viewBibleItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"view.bible.button\"), new ImageView(new Image(darkTheme ? \"file:icons/bible-light.png\" : \"file:icons/bible.png\", 20, 20, false, true)));\n        viewBibleItem.setOnAction(new ViewBibleActionHandler());\n        getItems().add(viewBibleItem);\n\n        searchBibleItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"search.bible.button\"), new ImageView(new Image(darkTheme ? \"file:icons/bible-light.png\" : \"file:icons/bible.png\", 20, 20, false, true)));\n        searchBibleItem.setOnAction(new SearchBibleActionHandler());\n        getItems().add(searchBibleItem);\n\n        testItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"test.patterns.text\"), new ImageView(new Image(\"file:icons/testbars.png\", 20, 20, false, true)));\n        testItem.setOnAction(t -> {\n            TestPaneDialog dialog = testDialog.get();\n            if (dialog == null) {\n                dialog = new TestPaneDialog();\n                testDialog = new SoftReference<>(dialog);\n            }\n            dialog.show();\n        });\n        getItems().add(testItem);\n\n        liveTextItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"send.live.text\"), new ImageView(new Image(darkTheme ? \"file:icons/live_text-light.png\" : \"file:icons/live_text.png\", 20, 20, false, true)));\n        liveTextItem.setAccelerator(new KeyCodeCombination(KeyCode.L, KeyCombination.SHORTCUT_DOWN, KeyCombination.SHIFT_DOWN));\n        liveTextItem.setOnAction(new LiveTextActionHandler());\n        if (QueleaApp.get().getMobileLyricsServer() == null) {\n            liveTextItem.setDisable(true);\n        }\n        getItems().add(liveTextItem);\n\n        optionsItem = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"options.button\"), new ImageView(new Image(\"file:icons/options.png\", 20, 20, false, true)));\n        optionsItem.setAccelerator(ShortcutManager.getKeyCodeCombination(QueleaProperties.get().getOptionsKeys()));\n        optionsItem.setOnAction(new ShowOptionsActionHandler());\n\n        getItems().add(optionsItem);\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/quickedit/QuickEditDialog.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.quickedit;\n\nimport javafx.event.EventHandler;\nimport javafx.geometry.Insets;\nimport javafx.geometry.Pos;\nimport javafx.scene.Scene;\nimport javafx.scene.control.Button;\nimport javafx.scene.control.Label;\nimport javafx.scene.control.TextArea;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.input.KeyCode;\nimport javafx.scene.layout.BorderPane;\nimport javafx.scene.layout.HBox;\nimport javafx.stage.Modality;\nimport javafx.stage.Stage;\nimport javafx.stage.StageStyle;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.data.displayable.TextSection;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.QueleaApp;\n\n/**\n * A frame used for quickly editing a song.\n *\n * @author Michael\n */\npublic class QuickEditDialog extends Stage {\n\n    private TextArea sectionArea;\n    private Label statusLabel;\n    private Button okButton;\n    private Button cancelButton;\n    private SongDisplayable currentSong;\n    private int currentIndex;\n\n    /**\n     * Construct a quick edit dialog.\n     */\n    public QuickEditDialog() {\n        setTitle(LabelGrabber.INSTANCE.getLabel(\"quick.edit.text\"));\n        currentIndex = -1;\n        BorderPane mainPane = new BorderPane();\n        \n        statusLabel = new Label();\n        HBox statusPanel = new HBox();\n        statusPanel.getChildren().add(statusLabel);\n        mainPane.setTop(statusPanel);\n        sectionArea = new TextArea();\n        \n        sectionArea.setOnKeyPressed(new EventHandler<javafx.scene.input.KeyEvent>() {\n\n            @Override\n            public void handle(javafx.scene.input.KeyEvent t ){\n                if(t.isShiftDown() && t.getCode()==KeyCode.ENTER) {\n                    okButton.fire();\n                }\n                else if(t.getCode()==KeyCode.ESCAPE) {\n                    hide();\n                }\n            }\n        });\n        mainPane.setCenter(sectionArea);\n        HBox buttonPanel = new HBox();\n        buttonPanel.setAlignment(Pos.CENTER);\n        BorderPane.setMargin(buttonPanel, new Insets(5,0,5,0));\n        buttonPanel.setSpacing(5);\n        okButton = new Button(LabelGrabber.INSTANCE.getLabel(\"ok.button\"), new ImageView(new Image(\"file:icons/tick.png\")));\n        okButton.setOnAction(new EventHandler<javafx.event.ActionEvent>() {\n\n            @Override\n            public void handle(javafx.event.ActionEvent t) {\n                TextSection oldSection = currentSong.getSections()[currentIndex];\n                String[] sectionLyrics = sectionArea.getText().replace(\"<>\", \" \").split(\"\\n\\n\");\n                currentSong.replaceSection(new TextSection(oldSection.getTitle(), sectionLyrics[0].split(\"\\n\"), oldSection.getSmallText(), oldSection.shouldCapitaliseFirst(), oldSection.getTheme()), currentIndex);\n                for(int i = 1; i < sectionLyrics.length; i++) {\n                    String[] lyrics = sectionLyrics[i].split(\"\\n\");\n                    String newTitle = \"\";\n                    if(oldSection.getTitle() != null && !oldSection.getTitle().trim().isEmpty()) {\n                        newTitle = oldSection.getTitle() + \" (\" + LabelGrabber.INSTANCE.getLabel(\"part\") + \" \" + (i + 1) + \")\";\n                    }\n                    currentSong.addSection(currentIndex + i, new TextSection(newTitle, lyrics, oldSection.getSmallText(), oldSection.shouldCapitaliseFirst(), oldSection.getTheme()));\n                }\n                if(sectionArea.getText().trim().isEmpty()) {\n                    currentSong.removeSection(currentIndex);\n                }\n                hide();\n                QueleaApp.get().getMainWindow().getMainPanel().getPreviewPanel().refresh();\n                Utils.updateSongInBackground(currentSong, false, true);\n            }\n        });\n        cancelButton = new Button(LabelGrabber.INSTANCE.getLabel(\"cancel.button\"), new ImageView(new Image(\"file:icons/cross.png\")));\n        cancelButton.setOnAction(new EventHandler<javafx.event.ActionEvent>() {\n\n            @Override\n            public void handle(javafx.event.ActionEvent t) {\n                hide();\n            }\n        });\n        buttonPanel.getChildren().add(okButton);\n        buttonPanel.getChildren().add(cancelButton);\n        mainPane.setBottom(buttonPanel);\n\n        Scene scene = new Scene(mainPane);\n        if (QueleaProperties.get().getUseDarkTheme()) {\n            scene.getStylesheets().add(\"org/modena_dark.css\");\n        }\n        setScene(scene);\n    }\n\n    /**\n     * Set the song and section of this dialog.\n     *\n     * @param song the song to set the dialog to.\n     * @param sectionIndex the section to set the dialog to.\n     */\n    public void setSongSection(SongDisplayable song, int sectionIndex) {\n        currentSong = song;\n        setStatusLabel(song);\n        if(song == null) {\n            currentIndex = -1;\n            sectionArea.setText(\"\");\n            return;\n        }\n        currentIndex = sectionIndex;\n        StringBuilder text = new StringBuilder();\n        String[] lines = song.getSections()[sectionIndex].getText(true, true);\n        for(int i = 0; i < lines.length; i++) {\n            String str = lines[i];\n            text.append(str);\n            if(i < lines.length - 1) {\n                text.append('\\n');\n            }\n        }\n        sectionArea.setText(text.toString());\n    }\n\n    /**\n     * Set the status label to a particular song.\n     *\n     * @param song the song to use.\n     */\n    private void setStatusLabel(SongDisplayable song) {\n        if(song == null) {\n            statusLabel.setText(\"\");\n        }\n        else {\n            statusLabel.setText(song.getTitle() + \"  (\" + LabelGrabber.INSTANCE.getLabel(\"quick.shortcut.description\") + \")\");\n        }\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/schedule/ScheduleList.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.schedule;\n\nimport javafx.application.Platform;\nimport javafx.beans.property.ObjectProperty;\nimport javafx.collections.ObservableList;\nimport javafx.geometry.Pos;\nimport javafx.scene.Group;\nimport javafx.scene.Scene;\nimport javafx.scene.SnapshotParameters;\nimport javafx.scene.control.ListCell;\nimport javafx.scene.control.ListView;\nimport javafx.scene.control.MultipleSelectionModel;\nimport javafx.scene.control.SelectionMode;\nimport javafx.scene.image.WritableImage;\nimport javafx.scene.input.ClipboardContent;\nimport javafx.scene.input.DragEvent;\nimport javafx.scene.input.Dragboard;\nimport javafx.scene.input.KeyCode;\nimport javafx.scene.input.TransferMode;\nimport javafx.scene.layout.StackPane;\nimport javafx.scene.paint.Color;\nimport javafx.scene.shape.Rectangle;\nimport javafx.util.Callback;\nimport org.quelea.data.Background;\nimport org.quelea.data.ImageBackground;\nimport org.quelea.data.Schedule;\nimport org.quelea.data.ThemeDTO;\nimport org.quelea.data.VideoBackground;\nimport org.quelea.data.displayable.BiblePassage;\nimport org.quelea.data.displayable.Displayable;\nimport org.quelea.data.displayable.ImageDisplayable;\nimport org.quelea.data.displayable.IndexedDisplayable;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.data.displayable.TextDisplayable;\nimport org.quelea.data.displayable.TextSection;\nimport org.quelea.data.displayable.TimerDisplayable;\nimport org.quelea.data.displayable.VideoDisplayable;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.SerializableDropShadow;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.utils.SongDisplayableList;\nimport org.quelea.windows.library.DisplayableListCell;\nimport org.quelea.windows.lyrics.LyricDrawer;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.windows.main.WordDrawer;\nimport org.quelea.windows.main.actionhandlers.AddPdfActionHandler;\nimport org.quelea.windows.main.actionhandlers.AddPowerpointActionHandler;\nimport org.quelea.windows.main.actionhandlers.RemoveScheduleItemActionHandler;\nimport org.quelea.windows.stage.StageDrawer;\n\nimport java.io.File;\nimport java.io.IOException;\nimport java.util.ArrayList;\nimport java.util.Collections;\nimport java.util.List;\nimport java.util.Optional;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\n\n/**\n * The schedule list, all the items that are to be displayed in the service.\n * <p/>\n *\n * @author Michael\n */\npublic class ScheduleList extends StackPane {\n\n    //Fudge to get markerRect to line up properly in the face of JavaFX listview bugs\n    public static final double STATIC_FULL_HEIGHT = 36.0;\n\n    private final ListView<IndexedDisplayable> listView;\n    private Schedule schedule;\n    private final Rectangle markerRect;\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    private IndexedDisplayable tempDisp = null;\n    private IndexedDisplayable displayableThatSeesMouse = null;\n\n    /**\n     * A direction; either up or down. Used for rearranging the order of items\n     * in the service.\n     */\n    public enum Direction {\n\n        UP, DOWN\n    }\n\n    /**\n     * Create a new schedule list.\n     */\n    public ScheduleList() {\n        setAlignment(Pos.TOP_LEFT);\n        listView = new ListView<>();\n        listView.getSelectionModel().setSelectionMode(SelectionMode.SINGLE);\n        getChildren().add(listView);\n        markerRect = new Rectangle(200, 3, Color.GRAY);\n        markerRect.setVisible(false);\n        getChildren().add(markerRect);\n        markerRect.toFront();\n        Callback<ListView<IndexedDisplayable>, ListCell<IndexedDisplayable>> callback = new Callback<>() {\n            @Override\n            public ListCell<IndexedDisplayable> call(ListView<IndexedDisplayable> p) {\n\n                return new ListCell<>() {\n                    @Override\n                    public void updateItem(IndexedDisplayable indexedDisplayable, boolean empty) {\n                        super.updateItem(indexedDisplayable, empty);\n\n                        setOnMouseEntered(_ -> {\n                            displayableThatSeesMouse = this.getItem();\n                        });\n                        setOnDragDetected(event -> {\n                            recalculateDisplayableIndexes();\n                            if (displayableThatSeesMouse != null) {\n                                Dragboard db = startDragAndDrop(TransferMode.ANY);\n                                ClipboardContent content = new ClipboardContent();\n                                if (displayableThatSeesMouse.displayable() instanceof SongDisplayable) {\n                                    content.put(SongDisplayable.SONG_DISPLAYABLE_FORMAT, new SongDisplayableList(displayableThatSeesMouse));\n                                } else {\n                                    content.putString(\"tempdisp\");\n                                    tempDisp = displayableThatSeesMouse;\n                                }\n\n                                db.setContent(content);\n                                event.consume();\n                                ScheduleListNode preview = new ScheduleListNode(displayableThatSeesMouse.displayable());\n\n                                new Scene(new Group(preview));\n                                WritableImage dragImage = preview.snapshot(new SnapshotParameters(), null);\n                                db.setDragView(dragImage);\n                            }\n                        });\n                        setOnDragDropped(event -> dragDropped(event, this));\n                        setOnDragDone(e -> {\n                            markerRect.setVisible(false);\n                            e.consume();\n                        });\n\n                        if (empty || indexedDisplayable == null) {\n                            setText(null);\n                            setGraphic(null);\n                            setOnDragEntered(event -> {\n                                if (event.getDragboard().getContent(SongDisplayable.SONG_DISPLAYABLE_FORMAT) != null\n                                        || event.getDragboard().getString() != null) {\n                                    markerRect.setTranslateX(0);\n                                    markerRect.setTranslateY(listView.getItems().size()*STATIC_FULL_HEIGHT);\n                                    markerRect.setVisible(true);\n                                }\n                            });\n                        } else {\n                            Displayable item = indexedDisplayable.displayable();\n                            ScheduleListNode scheduleListNode = new ScheduleListNode(item);\n                            setGraphic(scheduleListNode);\n                            setText(null);\n                            scheduleListNode.setLive(item.equals(QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().getDisplayable()));\n                            if (item instanceof SongDisplayable || item instanceof BiblePassage || item instanceof TimerDisplayable) {\n                                setContextMenu(new SchedulePopupMenu(item));\n                            }\n\n                            setOnDragEntered(event -> {\n                                if (event.getDragboard().getString() != null) {\n                                    if (event.getDragboard().getString().equals(\"tempdisp\")) {\n                                        markerRect.setTranslateX(getLayoutX() + getTranslateX());\n                                        markerRect.setTranslateY(getLayoutY() + getTranslateY());\n                                        markerRect.setVisible(true);\n                                    } else {\n                                        if (item instanceof SongDisplayable) {\n                                            setStyle(\"-fx-background-color: #99cccc;\");\n                                        } else {\n                                            markerRect.setTranslateX(getLayoutX() + getTranslateX());\n                                            markerRect.setTranslateY(getLayoutY() + getTranslateY());\n                                            markerRect.setVisible(true);\n                                        }\n                                    }\n                                } else if (event.getDragboard().getContent(SongDisplayable.SONG_DISPLAYABLE_FORMAT) != null) {\n                                    markerRect.setTranslateX(getLayoutX() + getTranslateX());\n                                    markerRect.setTranslateY(getLayoutY() + getTranslateY());\n                                    markerRect.setVisible(true);\n                                }\n                            });\n                            setOnDragExited(t -> {\n                                setStyle(\"\");\n                                markerRect.setVisible(false);\n                            });\n                            setOnDragOver(event -> {\n                                if (event.getDragboard().getString() != null || event.getDragboard().getContent(SongDisplayable.SONG_DISPLAYABLE_FORMAT) != null) {\n                                    event.acceptTransferModes(TransferMode.ANY);\n                                }\n                            });\n                        }\n                    }\n                };\n            }\n        };\n        listView.setCellFactory(DisplayableListCell.forListView(null, callback, d -> d.displayable() instanceof SongDisplayable || d.displayable() instanceof BiblePassage || d.displayable() instanceof TimerDisplayable));\n        listView.setOnDragOver(event -> {\n            if (event.getDragboard().getString() != null || event.getDragboard().getContent(SongDisplayable.SONG_DISPLAYABLE_FORMAT) != null) {\n                event.acceptTransferModes(TransferMode.ANY);\n            }\n            if (event.getDragboard().hasFiles()) {\n                event.getDragboard().getFiles().stream().filter((file) -> (Utils.fileIsImage(file) || Utils.fileIsVideo(file) || file.getPath().matches(\"(.*)(pdf|ppt|pptx)\") && !file.isDirectory())).forEach((file) -> {\n                    event.acceptTransferModes(TransferMode.ANY);\n                });\n            }\n        });\n        listView.setOnDragDropped(event -> dragDropped(event, null));\n        schedule = new Schedule();\n        setOnKeyTyped(t -> {\n            if (t.getCharacter().equals(\" \")) {\n                QueleaApp.get().getMainWindow().getMainPanel().getPreviewPanel().requestFocus();\n                QueleaApp.get().getMainWindow().getMainPanel().getPreviewPanel().selectFirstLyric();\n                QueleaApp.get().getMainWindow().getMainPanel().getPreviewPanel().goLive();\n            }\n        });\n        setOnKeyPressed(t -> {\n            if (t.getCode() == KeyCode.DELETE) {\n                new RemoveScheduleItemActionHandler().handle(null);\n            }\n        });\n    }\n\n    /**\n     * Deprecated: This method is here for compatibility and should be removed. Displayables may be duplicated\n     * in a schedule list, in which case this method won't return a reliable value.\n     */\n    @Deprecated\n    public int indexOf(Displayable displayable) {\n        if (displayable == null) return -1;\n        for (IndexedDisplayable indexedDisplayable : getItems()) {\n            if (indexedDisplayable.displayable().equals(displayable)) {\n                return indexedDisplayable.index();\n            }\n        }\n        return -1;\n    }\n\n    public void add(Displayable displayable) {\n        add(displayable, false);\n    }\n\n    public void add(Displayable displayable, boolean select) {\n        if (!Platform.isFxApplicationThread()) {\n            LOGGER.log(Level.WARNING, \"Not on the platform thread!\", new RuntimeException(\"DEBUG EX\"));\n        }\n        IndexedDisplayable idxDisplayable = new IndexedDisplayable(displayable, listView.itemsProperty().getValue().size());\n        listView.itemsProperty().get().add(idxDisplayable);\n        getSelectionModel().select(idxDisplayable);\n    }\n\n    private void dragDropped(DragEvent event, ListCell<IndexedDisplayable> listCell) {\n\n        if (listCell != null) {\n            listCell.setStyle(\"-fx-border-color: rgb(0, 0, 0);-fx-border-width: 0,0,0,0;\");\n        }\n        markerRect.setVisible(false);\n\n        Dragboard db = event.getDragboard();\n        if (db.hasFiles()) {\n            db.getFiles().forEach((file) -> {\n                if (Utils.fileIsImage(file)) {\n                    add(new ImageDisplayable(file));\n                } else if (Utils.fileIsVideo(file)) {\n                    add(new VideoDisplayable(file.getPath()));\n                } else if (file.getPath().matches(\"(.*)(ppt|pptx)\")) {\n                    List<File> presentation = new ArrayList<>();\n                    presentation.add(file);\n                    new AddPowerpointActionHandler().addPresentation(presentation);\n                } else if (file.getPath().contains(\".pdf\")) {\n                    List<File> pdf = new ArrayList<>();\n                    pdf.add(file);\n                    new AddPdfActionHandler().addPDF(pdf);\n                }\n            });\n        } else {\n            String dbLocation = db.getString();\n            boolean useTempDisp = false;\n            if (dbLocation != null) {\n                boolean isVideo = Utils.fileIsVideo(new File(dbLocation));\n                useTempDisp = dbLocation.equals(\"tempdisp\");\n                if (!Utils.isInDir(QueleaProperties.get().getImageDir(), new File(dbLocation)) && !useTempDisp) {\n                    try {\n                        Utils.copyFile(new File(dbLocation), new File(QueleaProperties.get().getImageDir(), new File(dbLocation).getName()));\n                    } catch (IOException ex) {\n                        LOGGER.log(Level.WARNING, \"Couldn't copy image file\", ex);\n                    }\n                }\n                boolean isSong = !(listCell == null || listCell.isEmpty());\n                if (isSong) {\n                    if (!(listCell.getItem().displayable() instanceof TextDisplayable)) {\n                        isSong = false;\n                    }\n                }\n                if (!isSong && !useTempDisp) {\n                    Displayable visualDisplayable;\n                    if (isVideo) {\n                        visualDisplayable = new VideoDisplayable(dbLocation);\n                    } else {\n                        visualDisplayable = new ImageDisplayable(new File(dbLocation));\n                    }\n                    useTempDisp = true;\n                    tempDisp = new IndexedDisplayable(visualDisplayable, -1);\n                } else {\n                    if (useTempDisp) {\n\n                        //potentially check if the displayable is an image and then add it to theme of song.\n                        //Was not added due to the thought that it could get confusing if someone added image to\n                        //schedule and then it all of a sudden disappeared if they were trying to rearrange the schedule.\n                    } else {\n                        IndexedDisplayable d = listCell.getItem();\n                        if (d.displayable() instanceof TextDisplayable textDisplayable) {\n                            ThemeDTO theme = textDisplayable.getTheme();\n                            SerializableDropShadow dropShadow = theme.getShadow();\n                            if (dropShadow == null || (dropShadow.getColor().equals(Color.WHITE) && dropShadow.getOffsetX() == 0 && dropShadow.getOffsetY() == 0)) {\n                                dropShadow = new SerializableDropShadow(Color.BLACK, 3, 3, 2, 0, true);\n                            }\n                            Background background;\n                            if (isVideo) {\n                                background = new VideoBackground(new File(dbLocation).getName(), 0, true);\n                            } else {\n                                background = new ImageBackground(new File(dbLocation).getName());\n                            }\n\n                            ThemeDTO newTheme = new ThemeDTO(theme.getSerializableFont(), theme.getFontPaint(), theme.getTranslateSerializableFont(), theme.getTranslateFontPaint(), background, dropShadow, theme.getSerializableFont().isBold(), theme.getSerializableFont().isItalic(), theme.getTranslateSerializableFont().isBold(), theme.getTranslateSerializableFont().isItalic(), theme.getTextPosition(), theme.getTextAlignment());\n                            for (TextSection section : textDisplayable.getSections()) {\n                                section.setTheme(newTheme);\n                            }\n                            textDisplayable.setTheme(newTheme);\n                            if (d.displayable() instanceof SongDisplayable sd) {\n                                if (QueleaProperties.get().getUseDefaultTranslation()) {\n                                    String defaultTranslation = QueleaProperties.get().getDefaultTranslationName();\n                                    if (defaultTranslation != null && !defaultTranslation.trim().isEmpty()) {\n                                        sd.setCurrentTranslationLyrics(defaultTranslation);\n                                    }\n                                }\n                                Utils.updateSongInBackground(sd, true, false);\n                            }\n                            if (QueleaProperties.get().getPreviewOnImageUpdate()) {\n                                QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getScheduleList().getListView().getSelectionModel().clearSelection();\n                                QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getScheduleList().getListView().getSelectionModel().select(d);\n                            }\n                            QueleaApp.get().getMainWindow().getMainPanel().getPreviewPanel().refresh();\n                            QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().refresh();\n                        }\n                    }\n                }\n            }\n            if (db.getContent(SongDisplayable.SONG_DISPLAYABLE_FORMAT) instanceof SongDisplayableList || useTempDisp) {\n                List<IndexedDisplayable> displayables;\n                if (db.getContent(SongDisplayable.SONG_DISPLAYABLE_FORMAT) instanceof SongDisplayableList) {\n                    List<IndexedDisplayable> songDisplayables = ((SongDisplayableList) db.getContent(SongDisplayable.SONG_DISPLAYABLE_FORMAT)).getSongDisplayables();\n                    displayables = songDisplayables;\n                    for (IndexedDisplayable indexedDisplayable : songDisplayables) {\n                        SongDisplayable song = (SongDisplayable) indexedDisplayable.displayable();\n                        if (!QueleaProperties.get().getDefaultSongDBUpdate()) {\n                            song.setID(-1);\n                            song.setNoDBUpdate();\n                        }\n                        if (QueleaProperties.get().getUseDefaultTranslation()) {\n                            String defaultTranslation = QueleaProperties.get().getDefaultTranslationName();\n                            if (defaultTranslation != null && !defaultTranslation.trim().isEmpty()) {\n                                song.setCurrentTranslationLyrics(defaultTranslation);\n                            }\n                        }\n                    }\n                } else {\n                    displayables = List.of(tempDisp);\n                    tempDisp = null;\n                }\n                for (IndexedDisplayable d : displayables) {\n                    int newIndex;\n                    newIndex = listCell == null || listCell.getItem() == null ? listView.getItems().size() : listCell.getItem().index();\n                    if (newIndex > listView.getItems().size()) {\n                        newIndex = listView.getItems().size();\n                    }\n                    IndexedDisplayable toAdd = new IndexedDisplayable(d.displayable(), newIndex);\n                    listView.itemsProperty().get().add(newIndex, toAdd);\n                    Optional<IndexedDisplayable> toRemove = listView.itemsProperty().get().stream().filter(x->x.index()==d.index()).findFirst();\n                    toRemove.ifPresent(old -> listView.itemsProperty().get().remove(old));\n                    listView.getSelectionModel().clearSelection();\n                    listView.getSelectionModel().select(toAdd);\n                    listView.requestFocus();\n                    Platform.runLater(() -> {\n                        QueleaApp.get().getMainWindow().getMainPanel().getPreviewPanel().setDisplayable(toAdd.displayable(), 0);\n                        QueleaApp.get().getMainWindow().getMainPanel().getPreviewPanel().refresh();\n                    });\n                }\n            }\n        }\n        recalculateDisplayableIndexes();\n        event.consume();\n    }\n\n    /**\n     * Get the current schedule in use on this list.\n     * <p/>\n     *\n     * @return the current schedule in use on this list.\n     */\n    public Schedule getSchedule() {\n        boolean equal = true;\n        if (listView.itemsProperty().get().size() == schedule.getSize()) {\n            for (int i = 0; i < listView.itemsProperty().get().size(); i++) {\n                Displayable displayable = listView.itemsProperty().get().get(i).displayable();\n                if (displayable != null && !displayable.equals(schedule.getDisplayable(i))) {\n                    equal = false;\n                }\n            }\n        } else {\n            equal = false;\n        }\n        if (equal) {\n            return schedule;\n        }\n        schedule.clear();\n        for (int i = 0; i < listView.itemsProperty().get().size(); i++) {\n            schedule.add(listView.itemsProperty().get().get(i).displayable());\n        }\n        return schedule;\n    }\n\n    /**\n     * Get the list view on this schedule list.\n     *\n     * @return the list view on this schedule list.\n     */\n    public ListView<IndexedDisplayable> getListView() {\n        return listView;\n    }\n\n    /**\n     * Erase everything in the current schedule and set the contents of this\n     * list to the current schedule.\n     * <p/>\n     *\n     * @param schedule the schedule.\n     */\n    public void setSchedule(Schedule schedule) {\n        clearSchedule();\n        for (int i = 0; i < schedule.getSize(); i++) {\n            Displayable displayable = schedule.getDisplayable(i);\n            if (displayable instanceof SongDisplayable) {\n                ((SongDisplayable) displayable).matchID();\n            }\n            listView.itemsProperty().get().add(new IndexedDisplayable(displayable, i));\n        }\n        this.schedule = schedule;\n    }\n\n    /**\n     * Refresh the display of the items in the schedule list.\n     *\n     * @param song the song of which the display should be refreshed in the\n     *             listview.\n     */\n    public void refreshSong(SongDisplayable song) {\n        ObservableList<IndexedDisplayable> itemp = listView.itemsProperty().get();\n        int selectedIndex = listView.selectionModelProperty().get().getSelectedIndex();\n\n        IndexedDisplayable idxDisplayable = null;\n        for (IndexedDisplayable displayable : itemp) {\n            if (displayable.displayable().equals(song)) {\n                idxDisplayable = displayable;\n                break;\n            }\n        }\n\n        if (idxDisplayable != null) {\n            itemp.set(idxDisplayable.index(), new IndexedDisplayable(new SongDisplayable(\"\", \"\"), idxDisplayable.index()));\n            itemp.set(idxDisplayable.index(), idxDisplayable);\n        }\n        listView.getSelectionModel().clearSelection();\n        listView.selectionModelProperty().get().select(selectedIndex);\n    }\n\n    /**\n     * Clear the current schedule without warning.\n     */\n    public void clearSchedule() {\n        listView.itemsProperty().get().clear();\n        schedule.setFile(null);\n    }\n\n    /**\n     * Get the selection model of the underlying list.\n     * <p>\n     *\n     * @return the selection model of the listview.\n     */\n    public MultipleSelectionModel<IndexedDisplayable> getSelectionModel() {\n        return listView.getSelectionModel();\n    }\n\n    /**\n     * Get the items property of the underlying list.\n     * <p>\n     *\n     * @return the items property of the underlying list.\n     */\n    public ObjectProperty<ObservableList<IndexedDisplayable>> itemsProperty() {\n        return listView.itemsProperty();\n    }\n\n    /**\n     * Return the items of the underlying list.\n     * <p>\n     *\n     * @return the items of the underlying list.\n     */\n    public ObservableList<IndexedDisplayable> getItems() {\n        return listView.getItems();\n    }\n\n    /**\n     * Determine whether the schedule list is empty.\n     * <p/>\n     *\n     * @return true if it's empty, false otherwise.\n     */\n    public boolean isEmpty() {\n        return listView.itemsProperty().get().isEmpty();\n    }\n\n    /**\n     * Remove the currently selected item in the list, or do nothing if there is\n     * no selected item.\n     */\n    public void removeCurrentItem() {\n        int selectedIndex = listView.selectionModelProperty().get().getSelectedIndex();\n        if (selectedIndex != -1) {\n            Displayable d = listView.selectionModelProperty().get().getSelectedItem().displayable();\n            Displayable live = QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().getDisplayable();\n            if ((d == live || listView.getItems().size() == 1) && QueleaProperties.get().getClearLiveOnRemove()) {\n                QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().removeDisplayable();\n                WordDrawer drawer;\n                if (QueleaApp.get().getProjectionWindow().getCanvas().isStageView()) {\n                    drawer = new StageDrawer();\n                } else {\n                    drawer = new LyricDrawer();\n                }\n                drawer.setCanvas(QueleaApp.get().getProjectionWindow().getCanvas());\n                drawer.setTheme(ThemeDTO.DEFAULT_THEME);\n            }\n            Displayable preview = QueleaApp.get().getMainWindow().getMainPanel().getPreviewPanel().getDisplayable();\n            if (d == preview) {\n                QueleaApp.get().getMainWindow().getMainPanel().getPreviewPanel().removeDisplayable();\n            }\n            if (d == null) {\n                LOGGER.log(Level.WARNING, \"Tried to remove null from schedule?\");\n            } else {\n                d.dispose();\n            }\n            listView.itemsProperty().get().remove(selectedIndex);\n            recalculateDisplayableIndexes();\n        }\n    }\n\n    /**\n     * Move the currently selected item in the list in the specified direction.\n     * <p/>\n     *\n     * @param direction the direction to move the selected item.\n     */\n    public void moveCurrentItem(Direction direction) {\n        int selectedIndex = listView.selectionModelProperty().get().getSelectedIndex();\n        if (selectedIndex == -1) { //Nothing selected\n            return;\n        }\n        if (direction == Direction.UP && selectedIndex > 0) {\n            Collections.swap(listView.itemsProperty().get(), selectedIndex, selectedIndex - 1);\n            listView.getSelectionModel().clearSelection();\n            listView.selectionModelProperty().get().select(selectedIndex - 1);\n        }\n        if (direction == Direction.DOWN && selectedIndex < listView.itemsProperty().get().size() - 1) {\n            Collections.swap(listView.itemsProperty().get(), selectedIndex, selectedIndex + 1);\n            listView.getSelectionModel().clearSelection();\n            listView.selectionModelProperty().get().select(selectedIndex + 1);\n        }\n        requestFocus();\n        recalculateDisplayableIndexes();\n    }\n\n    public void recalculateDisplayableIndexes() {\n        for (int i = 0; i < getItems().size(); i++) {\n            IndexedDisplayable item = getItems().get(i);\n            item.setIndex(i);\n        }\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/schedule/ScheduleListNode.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.schedule;\n\nimport javafx.animation.FadeTransition;\nimport javafx.geometry.Pos;\nimport javafx.scene.Node;\nimport javafx.scene.control.Button;\nimport javafx.scene.control.Label;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.layout.HBox;\nimport javafx.scene.layout.Priority;\nimport javafx.scene.layout.Region;\nimport javafx.util.Duration;\nimport org.quelea.data.displayable.Displayable;\nimport org.quelea.data.displayable.TextDisplayable;\nimport org.quelea.data.displayable.TimerDisplayable;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.actionhandlers.EditThemeScheduleActionHandler;\nimport org.quelea.windows.main.actionhandlers.EditTimerThemeActionHandler;\n\n/**\n * @author Michael\n */\npublic class ScheduleListNode extends HBox {\n\n    private FadeTransition fade;\n    private Button themeButton;\n    private ImageView liveIcon;\n\n    public ScheduleListNode(Displayable displayable) {\n        super(10);\n        setAlignment(Pos.CENTER_LEFT);\n        Node icon = displayable.getPreviewIcon();\n        liveIcon = new ImageView(new Image(\"file:icons/recordingssettingsicon.png\"));\n        liveIcon.setFitHeight(10);\n        liveIcon.setFitWidth(10);\n        liveIcon.setVisible(false);\n        getChildren().add(icon);\n        getChildren().add(new Label(displayable.getPreviewText()));\n        getChildren().add(liveIcon);\n\n        if (displayable instanceof TextDisplayable || displayable instanceof TimerDisplayable) {\n            themeButton = new Button(\"\", new ImageView(new Image(\"file:icons/theme.png\", 16, 16, false, true)));\n            if (displayable instanceof TextDisplayable) {\n                themeButton.setOnAction(new EditThemeScheduleActionHandler((TextDisplayable) displayable));\n            } else {\n                themeButton.setOnAction(new EditTimerThemeActionHandler((TimerDisplayable) displayable));\n            }\n            Utils.setToolbarButtonStyle(themeButton);\n            Region spacer = new Region();\n            HBox.setHgrow(spacer, Priority.ALWAYS);\n            getChildren().add(spacer);\n            getChildren().add(themeButton);\n            themeButton.setOpacity(0);\n            fade = new FadeTransition(Duration.millis(100), themeButton);\n            setOnMouseEntered((event) -> {\n                fade.stop();\n                fade.setToValue(1);\n                fade.play();\n            });\n            setOnMouseExited((event) -> {\n                fade.stop();\n                fade.setToValue(0);\n                fade.play();\n            });\n        }\n    }\n\n    public void setLive(boolean live) {\n        if (liveIcon != null) {\n            liveIcon.setVisible(live);\n        }\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/schedule/SchedulePanel.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.schedule;\n\nimport java.util.logging.Logger;\nimport javafx.application.Platform;\nimport javafx.beans.value.ChangeListener;\nimport javafx.beans.value.ObservableValue;\nimport javafx.collections.ListChangeListener;\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport javafx.geometry.Orientation;\nimport javafx.scene.Scene;\nimport javafx.scene.control.Button;\nimport javafx.scene.control.Label;\nimport javafx.scene.control.ToolBar;\nimport javafx.scene.control.Tooltip;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.layout.BorderPane;\nimport javafx.scene.layout.HBox;\nimport javafx.scene.layout.Priority;\nimport javafx.scene.layout.Region;\nimport javafx.stage.Stage;\nimport javafx.stage.StageStyle;\nimport org.quelea.data.ThemeDTO;\nimport org.quelea.data.displayable.Displayable;\nimport org.quelea.data.displayable.IndexedDisplayable;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.windows.main.actionhandlers.RemoveScheduleItemActionHandler;\n\n/**\n * The panel displaying the schedule / order of service. Items from here are\n * loaded into the preview panel where they are viewed and then projected live.\n * Items can be added here from the library.\n * <p/>\n *\n * @author Michael\n */\npublic class SchedulePanel extends BorderPane {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    private final ScheduleList scheduleList;\n    private final Button removeButton;\n    private final Button upButton;\n    private final Button downButton;\n    private final Button themeButton;\n    private final ScheduleThemeNode scheduleThemeNode;\n    private Stage themePopup;\n\n    /**\n     * Create and initialise the schedule panel.\n     */\n    public SchedulePanel() {\n        boolean darkTheme = QueleaProperties.get().getUseDarkTheme();\n        ImageView themeButtonIcon = new ImageView(new Image(\"file:icons/theme.png\"));\n        themeButtonIcon.setFitWidth(16);\n        themeButtonIcon.setFitHeight(16);\n        themeButton = new Button(\"\", themeButtonIcon);\n        themeButton.setTooltip(new Tooltip(LabelGrabber.INSTANCE.getLabel(\"theme.button.tooltip\")));\n        scheduleList = new ScheduleList();\n        scheduleList.itemsProperty().get().addListener(new ListChangeListener<IndexedDisplayable>() {\n            @Override\n            public void onChanged(ListChangeListener.Change<? extends IndexedDisplayable> change) {\n                scheduleThemeNode.updateTheme();\n            }\n        });\n\n        themePopup = new Stage();\n        themePopup.setTitle(LabelGrabber.INSTANCE.getLabel(\"theme.select.text\"));\n        Utils.addIconsToStage(themePopup);\n        themePopup.initStyle(StageStyle.UNDECORATED);\n        themePopup.focusedProperty().addListener(new ChangeListener<Boolean>() {\n            @Override\n            public void changed(ObservableValue<? extends Boolean> ov, Boolean t, Boolean t1) {\n                if (t && !t1) {\n                    if (Utils.isMac()) {\n                        Platform.runLater(new Runnable() {\n\n                            @Override\n                            public void run() {\n                                themePopup.hide();\n                            }\n                        });\n\n                    } else {\n                        themePopup.hide();\n                    }\n                }\n            }\n        });\n\n        scheduleThemeNode = new ScheduleThemeNode(this::updateSongTheme, this::updateBibleTheme, themePopup, themeButton);\n        scheduleThemeNode.setStyle(\"-fx-background-color:WHITE;-fx-border-color: rgb(49, 89, 23);-fx-border-radius: 5;\");\n        Scene scene = new Scene(scheduleThemeNode);\n        if (darkTheme) {\n            scene.getStylesheets().add(\"org/modena_dark.css\");\n        }\n        themePopup.setScene(scene);\n\n        themeButton.setOnAction(new EventHandler<ActionEvent>() {\n            @Override\n            public void handle(ActionEvent t) {\n                if (themePopup.isShowing()) {\n                    //fixes a JVM crash\n                    if (Utils.isMac()) {\n                        Platform.runLater(new Runnable() {\n\n                            @Override\n                            public void run() {\n                                themePopup.hide();\n                            }\n                        });\n                    } else {\n                        themePopup.hide();\n                    }\n\n                } else {\n                    themePopup.setX(themeButton.localToScene(0, 0).getX() + QueleaApp.get().getMainWindow().getX());\n                    themePopup.setY(themeButton.localToScene(0, 0).getY() + 45 + QueleaApp.get().getMainWindow().getY());\n                    themePopup.show();\n                }\n            }\n        });\n//        themeButton.setTooltip(new Tooltip(LabelGrabber.INSTANCE.getLabel(\"adjust.theme.tooltip\")));\n\n        //Needed to initialise theme preview. Without this calls to the theme thumbnail return a blank image\n        //before hte theme popup is opened for the first time. TODO: Find a better way of doing this.\n        themePopup.show();\n        Platform.runLater(() -> themePopup.hide());\n\n        ToolBar toolbar = new ToolBar();\n        toolbar.setOrientation(Orientation.VERTICAL);\n        ImageView removeIV = new ImageView(new Image(darkTheme ? \"file:icons/cross-light.png\" : \"file:icons/cross.png\"));\n        removeIV.setFitWidth(16);\n        removeIV.setFitHeight(16);\n        removeButton = new Button(\"\", removeIV);\n        Utils.setToolbarButtonStyle(removeButton);\n        removeButton.setTooltip(new Tooltip(LabelGrabber.INSTANCE.getLabel(\"remove.song.schedule.tooltip\")));\n        removeButton.setDisable(true);\n        removeButton.setOnAction(new RemoveScheduleItemActionHandler());\n\n        ImageView upIV = new ImageView(new Image(darkTheme ? \"file:icons/up-light.png\" : \"file:icons/up.png\"));\n        upIV.setFitWidth(16);\n        upIV.setFitHeight(16);\n        upButton = new Button(\"\", upIV);\n        Utils.setToolbarButtonStyle(upButton);\n        upButton.setTooltip(new Tooltip(LabelGrabber.INSTANCE.getLabel(\"move.up.schedule.tooltip\")));\n        upButton.setDisable(true);\n        upButton.setOnAction(new EventHandler<javafx.event.ActionEvent>() {\n            @Override\n            public void handle(javafx.event.ActionEvent t) {\n                scheduleList.moveCurrentItem(ScheduleList.Direction.UP);\n            }\n        });\n\n        ImageView downIV = new ImageView(new Image(darkTheme ? \"file:icons/down-light.png\" : \"file:icons/down.png\"));\n        downIV.setFitWidth(16);\n        downIV.setFitHeight(16);\n        downButton = new Button(\"\", downIV);\n        Utils.setToolbarButtonStyle(downButton);\n        downButton.setTooltip(new Tooltip(LabelGrabber.INSTANCE.getLabel(\"move.down.schedule.tooltip\")));\n        downButton.setDisable(true);\n        downButton.setOnAction(new EventHandler<javafx.event.ActionEvent>() {\n            @Override\n            public void handle(javafx.event.ActionEvent t) {\n                scheduleList.moveCurrentItem(ScheduleList.Direction.DOWN);\n            }\n        });\n\n        scheduleList.getSelectionModel().selectedIndexProperty().addListener(new ChangeListener<Number>() {\n            @Override\n            public void changed(ObservableValue<? extends Number> ov, Number t, Number t1) {\n                updateScheduleDisplay();\n            }\n        });\n        scheduleList.getListView().focusedProperty().addListener((observable, oldValue, newValue) -> {\n            if(newValue) updateScheduleDisplay();\n        });\n\n        ToolBar header = new ToolBar();\n        Label headerLabel = new Label(LabelGrabber.INSTANCE.getLabel(\"order.service.heading\"));\n        headerLabel.setStyle(\"-fx-font-weight: bold;\");\n        header.getItems().add(headerLabel);\n        Region spacer = new Region();\n        HBox.setHgrow(spacer, Priority.ALWAYS);\n        header.getItems().add(spacer);\n        header.getItems().add(themeButton);\n\n        toolbar.getItems().add(removeButton);\n        toolbar.getItems().add(upButton);\n        toolbar.getItems().add(downButton);\n\n        setTop(header);\n        setLeft(toolbar);\n        setCenter(scheduleList);\n    }\n\n    private void updateSongTheme(ThemeDTO theme) {\n        QueleaApp.get().getMainWindow().getGlobalThemeStore().setSongThemeOverride(theme);\n    }\n\n    private void updateBibleTheme(ThemeDTO theme) {\n        QueleaApp.get().getMainWindow().getGlobalThemeStore().setBibleThemeOverride(theme);\n    }\n\n    public void updateScheduleDisplay() {\n        if (scheduleList.getItems().isEmpty()) {\n            removeButton.setDisable(true);\n            upButton.setDisable(true);\n            downButton.setDisable(true);\n        } else {\n            removeButton.setDisable(false);\n            upButton.setDisable(false);\n            downButton.setDisable(false);\n            var selectedItem = scheduleList.getSelectionModel().getSelectedItem();\n            if(selectedItem!=null) {\n                QueleaApp.get().getMainWindow().getMainPanel().getPreviewPanel().setDisplayable(selectedItem.displayable(), 0);\n            }\n        }\n    }\n\n    /**\n     * Get the schedule list backing this panel.\n     * <p/>\n     *\n     * @return the schedule list.\n     */\n    public ScheduleList getScheduleList() {\n        return scheduleList;\n    }\n\n    public Button getThemeButton() {\n        return themeButton;\n    }\n\n    public ScheduleThemeNode getThemeNode() {\n        return scheduleThemeNode;\n    }\n\n    public Stage getThemePopup() {\n        return themePopup;\n    }\n\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/schedule/SchedulePopupMenu.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.schedule;\n\nimport javafx.scene.control.ContextMenu;\nimport javafx.scene.control.MenuItem;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.stage.WindowEvent;\nimport org.quelea.data.bible.BibleManager;\nimport org.quelea.data.displayable.BiblePassage;\nimport org.quelea.data.displayable.Displayable;\nimport org.quelea.data.displayable.IndexedDisplayable;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.data.displayable.TimerDisplayable;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.windows.main.actionhandlers.EditSongScheduleActionHandler;\nimport org.quelea.windows.main.actionhandlers.EditThemeScheduleActionHandler;\nimport org.quelea.windows.main.actionhandlers.EditTimerActionHandler;\nimport org.quelea.windows.main.actionhandlers.EditTimerThemeActionHandler;\nimport org.quelea.windows.main.actionhandlers.SelectTranslationsActionHandler;\nimport org.quelea.windows.main.actionhandlers.SwitchBibleVersionActionHandler;\n\n/**\n * The popup menu that displays when an item in the schedule is right-clicked.\n *\n * @author Michael\n */\npublic class SchedulePopupMenu extends ContextMenu {\n\n    private final MenuItem editSong = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"edit.song.text\"), new ImageView(new Image(\"file:icons/edit.png\", 16, 16, false, true)));\n    private final MenuItem editTheme = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"edit.theme.text\"), new ImageView(new Image(\"file:icons/edit.png\", 16, 16, false, true)));\n    private final MenuItem changeBibleVersion = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"change.bible.version.text\"), new ImageView(new Image(\"file:icons/bible.png\", 16, 16, false, true)));\n    private final MenuItem translationChoice = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"choose.translations.text\"));\n    private final MenuItem editTimer = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"edit.timer.text\"), new ImageView(new Image(\"file:icons/timer-dark.png\", 16, 16, false, true)));\n    private final MenuItem editTimerTheme = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"edit.theme.text\"), new ImageView(new Image(\"file:icons/theme.png\", 16, 16, false, true)));\n    \n\n    public SchedulePopupMenu(Displayable item) {\n        getItems().add(new MenuItem(\"placeholder\")); //TODO: Investigate why this is required\n        setOnShowing((WindowEvent event) -> {\n            ScheduleList sl = QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getScheduleList();\n            boolean singleSelect = sl.getSelectionModel().getSelectedItems().size() == 1;\n            boolean allSongs = true;\n            boolean allBibles = true;\n            for (IndexedDisplayable d : sl.getSelectionModel().getSelectedItems()) {\n                if (!(d.displayable() instanceof SongDisplayable)) {\n                    allSongs = false;\n                }\n                if (!(d.displayable() instanceof BiblePassage)) {\n                    allBibles = false;\n                }\n            }\n            if (!singleSelect && allSongs && !(item instanceof SongDisplayable)) {\n                singleSelect = true;\n            }\n            if (!singleSelect && allBibles && !(item instanceof BiblePassage)) {\n                singleSelect = true;\n            }\n            getItems().clear();\n\n            if (singleSelect) {\n                if (item instanceof BiblePassage) {\n                    editTheme.setOnAction(new EditThemeScheduleActionHandler((BiblePassage) item));\n                    getItems().addAll(editTheme);\n                    if (BibleManager.get().getBibles().length > 1) {\n                        getItems().addAll(changeBibleVersion);\n                    }\n                } else if (item instanceof SongDisplayable) {\n                    getItems().addAll(editSong, translationChoice);\n                } else if (item instanceof TimerDisplayable) {\n                    getItems().addAll(editTimer, editTimerTheme);\n                } else {\n                    getItems().addAll(editTheme);\n                }\n            } else {\n                if (allSongs) {\n                    getItems().addAll(editTheme);\n//                    getItems().addAll(editTheme, translationChoice); //TODO: Do we want to add multiple-translation option as well?\n                } else if (allBibles) {\n                    getItems().addAll(editTheme);\n                    if (BibleManager.get().getBibles().length > 1) {\n                        getItems().addAll(changeBibleVersion);\n                    }\n                } else {\n                    getItems().addAll(editTheme);\n                }\n            }\n            if (getItems().isEmpty()) {\n                event.consume();\n            }\n        });\n\n        editSong.setOnAction(new EditSongScheduleActionHandler());\n        translationChoice.setOnAction(new SelectTranslationsActionHandler());\n        editTimer.setOnAction(new EditTimerActionHandler());\n        editTimerTheme.setOnAction(new EditTimerThemeActionHandler());\n        changeBibleVersion.setOnAction(new SwitchBibleVersionActionHandler());\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/schedule/ScheduleThemeNode.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.schedule;\n\nimport java.io.File;\nimport java.io.IOException;\nimport java.io.PrintWriter;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport javafx.beans.value.ChangeListener;\nimport javafx.beans.value.ObservableValue;\nimport javafx.collections.ObservableList;\nimport javafx.geometry.Insets;\nimport javafx.geometry.Pos;\nimport javafx.scene.Node;\nimport javafx.scene.control.Button;\nimport javafx.scene.control.Label;\nimport javafx.scene.control.ScrollPane;\nimport javafx.scene.control.ToggleGroup;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.layout.BorderPane;\nimport javafx.scene.layout.FlowPane;\nimport javafx.scene.layout.HBox;\nimport javafx.scene.layout.VBox;\nimport javafx.stage.Modality;\nimport javafx.stage.Stage;\nimport org.quelea.data.ThemeDTO;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.utils.ThemeUtils;\nimport org.quelea.windows.main.MainWindow;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.windows.main.ThemePreviewPanel;\nimport org.quelea.windows.newsong.EditThemeDialog;\n\n/**\n *\n * @author Michael\n */\npublic class ScheduleThemeNode extends BorderPane {\n\n    public interface UpdateThemeCallback {\n\n        void updateTheme(ThemeDTO theme);\n    }\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    private VBox contentPanel;\n    private ThemeDTO songTempTheme;\n    private ThemeDTO bibleTempTheme;\n    private EditThemeDialog themeDialog;\n    private FlowPane themePreviews;\n    private UpdateThemeCallback songCallback = null;\n    private UpdateThemeCallback bibleCallback = null;\n    private Stage popup;\n\n    public ScheduleThemeNode(UpdateThemeCallback songCallback, UpdateThemeCallback bibleCallback, Stage popup, Button themeButton) {\n        this.songCallback = songCallback;\n        this.bibleCallback = bibleCallback;\n        this.popup = popup;\n        themeDialog = new EditThemeDialog();\n        themeDialog.initModality(Modality.APPLICATION_MODAL);\n        contentPanel = new VBox();\n        BorderPane.setMargin(contentPanel, new Insets(10));\n        themeButton.layoutXProperty().addListener(new ChangeListener<Number>() {\n            @Override\n            public void changed(ObservableValue<? extends Number> ov, Number t, Number t1) {\n                MainWindow mainWindow = QueleaApp.get().getMainWindow();\n                double width = mainWindow.getWidth() - t1.doubleValue() - 100;\n                if (width < 50) {\n                    width = 50;\n                }\n                if (width > 900) {\n                    width = 900;\n                }\n                contentPanel.setPrefWidth(width);\n                contentPanel.setMaxWidth(width);\n            }\n        });\n        setMaxHeight(300);\n        contentPanel.setSpacing(5);\n        contentPanel.setPadding(new Insets(3));\n        refresh();\n        ScrollPane scroller = new ScrollPane(contentPanel);\n        scroller.setHbarPolicy(ScrollPane.ScrollBarPolicy.NEVER);\n        setCenter(scroller);\n    }\n\n    /**\n     * Update the theme on the schedule to the current temporary theme.\n     */\n    public void updateTheme() {\n        setSongTheme(songTempTheme);\n        setBibleTheme(bibleTempTheme);\n    }\n\n    /**\n     * Refresh all the themes in the window - remove all the old ones, go\n     * through the folder and find the themes to display.\n     */\n    public synchronized final void refresh() {\n        ObservableList<ThemeDTO> themes;\n        try {\n            themes = ThemeUtils.getThemes();\n        } catch (Exception ex) {\n            LoggerUtils.getLogger().log(Level.SEVERE, \"Couldn't get themes when refreshing.\", ex);\n            return;\n        }\n        final ToggleGroup songGroup = new ToggleGroup();\n        final ToggleGroup bibleGroup = new ToggleGroup();\n        contentPanel.getChildren().clear();\n        final HBox northPanel = new HBox();\n        Label selectThemeLabel = new Label(LabelGrabber.INSTANCE.getLabel(\"theme.select.text\"));\n        selectThemeLabel.setStyle(\"-fx-font-weight: bold;\");\n        northPanel.getChildren().add(selectThemeLabel);\n        contentPanel.getChildren().add(northPanel);\n\n        ThemeDTO selectedSongTheme = null;\n        ThemeDTO selectedBibleTheme = null;\n        if (themePreviews != null) {\n            for (Node node : themePreviews.getChildren()) {\n                if (node instanceof ThemePreviewPanel) {\n                    ThemePreviewPanel panel = (ThemePreviewPanel) node;\n                    if (panel.getSongSelectButton().isSelected()) {\n                        selectedSongTheme = panel.getTheme();\n                        setSongTheme(selectedSongTheme);\n                    }\n                    if (panel.getBibleSelectButton().isSelected()) {\n                        selectedBibleTheme = panel.getTheme();\n                        setBibleTheme(selectedBibleTheme);\n                    }\n                }\n            }\n        }\n        if(selectedSongTheme==null) {\n            selectedSongTheme = themes.stream().filter((t) -> t.getFile().getAbsoluteFile().equals(QueleaProperties.get().getGlobalSongThemeFile())).findAny().orElse(null);\n        }\n        if(selectedBibleTheme==null) {\n            selectedBibleTheme = themes.stream().filter((t) -> t.getFile().getAbsoluteFile().equals(QueleaProperties.get().getGlobalBibleThemeFile())).findAny().orElse(null);\n        }\n        themes.add(null); //Used as \"default\" theme\n\n        themePreviews = new FlowPane();\n        themePreviews.setAlignment(Pos.CENTER);\n        themePreviews.setHgap(10);\n        themePreviews.setVgap(10);\n\n        for (final ThemeDTO theme : themes) {\n            ThemePreviewPanel panel = new ThemePreviewPanel(theme, popup, this);\n            panel.getSongSelectButton().setOnAction(t -> {\n                songTempTheme = theme;\n                File storeFile = null;\n                if(songTempTheme!=null) {\n                    storeFile = songTempTheme.getFile();\n                }\n                QueleaProperties.get().setGlobalSongThemeFile(storeFile);\n                setSongTheme(theme);\n                if (QueleaApp.get().getMainWindow().getMainPanel() != null) {\n                    QueleaApp.get().getMainWindow().getMainPanel().getPreviewPanel().refresh();\n                }\n            });\n            panel.getBibleSelectButton().setOnAction(t -> {\n                bibleTempTheme = theme;\n                File storeFile = null;\n                if(bibleTempTheme!=null) {\n                    storeFile = bibleTempTheme.getFile();\n                }\n                QueleaProperties.get().setGlobalBibleThemeFile(storeFile);\n                setBibleTheme(theme);\n                if (QueleaApp.get().getMainWindow().getMainPanel() != null) {\n                    QueleaApp.get().getMainWindow().getMainPanel().getPreviewPanel().refresh();\n                }\n            });\n            if (selectedSongTheme != null && selectedSongTheme.equals(theme)) {\n                panel.getSongSelectButton().fire();\n            }\n            if (selectedBibleTheme != null && selectedBibleTheme.equals(theme)) {\n                panel.getBibleSelectButton().fire();\n            }\n            panel.getSongSelectButton().setToggleGroup(songGroup);\n            panel.getBibleSelectButton().setToggleGroup(bibleGroup);\n            themePreviews.getChildren().add(panel);\n        }\n        if (QueleaApp.get().getMainWindow().getMainPanel() != null && songGroup.getSelectedToggle() == null) {\n            for (Node node : themePreviews.getChildren()) {\n                if (node instanceof ThemePreviewPanel) {\n                    ThemePreviewPanel panel = (ThemePreviewPanel) node;\n                    if (panel.getTheme() != null && selectedSongTheme != null\n                            && panel.getTheme().getThemeName().equals(selectedSongTheme.getThemeName())) {\n                        setSongTheme(selectedSongTheme);\n                        panel.getSongSelectButton().fire();\n                        QueleaApp.get().getMainWindow().getMainPanel().getPreviewPanel().refresh();\n                    }\n                    if (panel.getTheme() != null && selectedBibleTheme != null\n                            && panel.getTheme().getThemeName().equals(selectedBibleTheme.getThemeName())) {\n                        setBibleTheme(selectedBibleTheme);\n                        panel.getBibleSelectButton().fire();\n                        QueleaApp.get().getMainWindow().getMainPanel().getPreviewPanel().refresh();\n                    }\n                }\n            }\n        }\n        HBox buttonPanel = new HBox();\n        Button newThemeButton = new Button(LabelGrabber.INSTANCE.getLabel(\"new.theme.text\"), new ImageView(new Image(\"file:icons/add.png\")));\n        newThemeButton.setOnAction(t -> {\n            themeDialog.setTheme(null);\n            themeDialog.showAndWait();\n            ThemeDTO ret = themeDialog.getTheme();\n            if (ret != null) {\n                try (PrintWriter pw = new PrintWriter(ret.getFile())) {\n                    pw.println(ret.getTheme());\n                } catch (IOException ex) {\n                    LOGGER.log(Level.WARNING, \"Couldn't write new theme\", ex);\n                }\n                refresh();\n            }\n            popup.show();\n        });\n        buttonPanel.getChildren().add(newThemeButton);\n        contentPanel.getChildren().add(themePreviews);\n        contentPanel.getChildren().add(buttonPanel);\n    }\n\n    public void setSongTheme(ThemeDTO songTempTheme) {\n        songCallback.updateTheme(songTempTheme);\n    }\n    \n    public void setBibleTheme(ThemeDTO bibleTempTheme) {\n        bibleCallback.updateTheme(bibleTempTheme);\n    }\n    \n    public void selectSongTheme(ThemeDTO theme) {\n        selectTheme(theme, true);\n    }\n    \n    public void selectBibleTheme(ThemeDTO theme) {\n        selectTheme(theme, false);\n    }\n\n    /**\n     * Select a theme to be used.\n     *\n     * @param theme that is supposed to be used\n     */\n    private void selectTheme(ThemeDTO theme, boolean songTheme) {\n        int i = 0;\n        for (Node node : themePreviews.getChildren()) {\n            i++;\n            if (node instanceof ThemePreviewPanel) {\n                ThemePreviewPanel panel = (ThemePreviewPanel) node;\n                if (i == themePreviews.getChildren().size() || panel.getTheme().getThemeName().equals(theme.getThemeName())) {\n                    if(songTheme) {\n                        panel.getSongSelectButton().fire();\n                    }\n                    else {\n                        panel.getBibleSelectButton().fire();\n                    }\n                    break;\n                }\n            }\n        }\n    }\n\n    public FlowPane getThemePreviews() {\n        return themePreviews;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/toolbars/MainToolbar.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.toolbars;\n\nimport java.util.Date;\n\nimport javafx.application.Platform;\nimport javafx.event.ActionEvent;\nimport javafx.scene.control.*;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.layout.Region;\nimport javafx.scene.layout.StackPane;\nimport javafx.scene.text.Text;\n\nimport javax.swing.Timer;\n\nimport org.javafx.dialog.Dialog;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.windows.main.actionhandlers.AddDVDActionHandler;\nimport org.quelea.windows.main.actionhandlers.AddImageActionHandler;\nimport org.quelea.windows.main.actionhandlers.AddPdfActionHandler;\nimport org.quelea.windows.main.actionhandlers.AddPowerpointActionHandler;\nimport org.quelea.windows.main.actionhandlers.AddVideoActionHandler;\nimport org.quelea.windows.main.actionhandlers.AddTimerActionHandler;\nimport org.quelea.windows.main.actionhandlers.AddWebActionHandler;\nimport org.quelea.windows.main.actionhandlers.RecordButtonHandler;\nimport org.quelea.windows.main.actionhandlers.NewScheduleActionHandler;\nimport org.quelea.windows.main.actionhandlers.NewSongActionHandler;\nimport org.quelea.windows.main.actionhandlers.OpenScheduleActionHandler;\nimport org.quelea.windows.main.actionhandlers.PrintScheduleActionHandler;\nimport org.quelea.windows.main.actionhandlers.QuickInsertActionHandler;\nimport org.quelea.windows.main.actionhandlers.SaveScheduleActionHandler;\nimport org.quelea.windows.main.actionhandlers.ShowNoticesActionHandler;\n\n/**\n * Quelea's main toolbar.\n * <p/>\n *\n * @author Michael\n */\npublic class MainToolbar extends ToolBar {\n\n    private final Button newScheduleButton;\n    private final Button openScheduleButton;\n    private final Button saveScheduleButton;\n    private final Button printScheduleButton;\n    private final Button newSongButton;\n    private final Button quickInsertButton;\n    private final Button manageNoticesButton;\n    private final MenuButton add;\n    private final ImageView loadingView;\n    private final StackPane dvdImageStack;\n    private final ToggleButton recordAudioButton;\n    private final ProgressBar pb = new ProgressBar(0);\n    private Dialog setRecordinPathWarning;\n    private RecordButtonHandler recordingsHandler;\n    private TextField recordingPathTextField;\n    private boolean recording;\n    private long openTime;\n    private long recTime;\n    private Timer recCount;\n\n    /**\n     * Create the toolbar and any associated shortcuts.\n     */\n    public MainToolbar() {\n        if (Utils.isMac()) {\n            newScheduleButton = getButtonFromImage(\"file:icons/filenewbig.png\");\n        } else {\n            newScheduleButton = getButtonFromImage(\"file:icons/filenew.png\");\n        }\n        Utils.setToolbarButtonStyle(newScheduleButton);\n        newScheduleButton.setTooltip(new Tooltip(LabelGrabber.INSTANCE.getLabel(\"new.schedule.tooltip\")));\n        newScheduleButton.setOnAction(new NewScheduleActionHandler());\n        getItems().add(newScheduleButton);\n\n        if (Utils.isMac()) {\n            openScheduleButton = getButtonFromImage(\"file:icons/fileopenbig.png\");\n        } else {\n            openScheduleButton = getButtonFromImage(\"file:icons/fileopen.png\");\n        }\n        Utils.setToolbarButtonStyle(openScheduleButton);\n        openScheduleButton.setTooltip(new Tooltip(LabelGrabber.INSTANCE.getLabel(\"open.schedule.tooltip\")));\n        openScheduleButton.setOnAction(new OpenScheduleActionHandler());\n        getItems().add(openScheduleButton);\n\n        if (Utils.isMac()) {\n            saveScheduleButton = getButtonFromImage(\"file:icons/filesavebig.png\");\n        } else {\n            saveScheduleButton = getButtonFromImage(\"file:icons/filesave.png\");\n        }\n        Utils.setToolbarButtonStyle(saveScheduleButton);\n        saveScheduleButton.setTooltip(new Tooltip(LabelGrabber.INSTANCE.getLabel(\"save.schedule.tooltip\")));\n        saveScheduleButton.setOnAction(new SaveScheduleActionHandler(false));\n        getItems().add(saveScheduleButton);\n\n        if (Utils.isMac()) {\n            printScheduleButton = getButtonFromImage(\"file:icons/fileprintbig.png\");\n        } else {\n            printScheduleButton = getButtonFromImage(\"file:icons/fileprint.png\");\n        }\n        Utils.setToolbarButtonStyle(printScheduleButton);\n        printScheduleButton.setTooltip(new Tooltip(LabelGrabber.INSTANCE.getLabel(\"print.schedule.tooltip\")));\n        printScheduleButton.setOnAction(new PrintScheduleActionHandler());\n        getItems().add(printScheduleButton);\n\n        getItems().add(new Separator());\n\n        if (Utils.isMac()) {\n            newSongButton = getButtonFromImage(\"file:icons/newsongbig.png\");\n        } else {\n            newSongButton = getButtonFromImage(\"file:icons/newsong.png\");\n        }\n        Utils.setToolbarButtonStyle(newSongButton);\n        newSongButton.setTooltip(new Tooltip(LabelGrabber.INSTANCE.getLabel(\"new.song.tooltip\")));\n        newSongButton.setOnAction(new NewSongActionHandler());\n        getItems().add(newSongButton);\n\n        getItems().add(new Separator());\n\n        if (Utils.isMac()) {\n            quickInsertButton = getButtonFromImage(\"file:icons/lightningbig.png\");\n        } else {\n            quickInsertButton = getButtonFromImage(\"file:icons/lightning.png\");\n        }\n        Utils.setToolbarButtonStyle(quickInsertButton);\n        quickInsertButton.setTooltip(new Tooltip(LabelGrabber.INSTANCE.getLabel(\"quick.insert.text\")));\n        quickInsertButton.setOnAction(new QuickInsertActionHandler());\n        getItems().add(quickInsertButton);\n\n        add = new MenuButton(\"\");\n\n        ImageView iv = new ImageView(new Image(QueleaProperties.get().getUseDarkTheme() ? \"file:icons/add_item-light.png\" : \"file:icons/add_item.png\"));\n        iv.setSmooth(true);\n        iv.setFitWidth(20);\n        iv.setFitHeight(20);\n        add.setGraphic(iv);\n\n        add.setStyle(Utils.TOOLBAR_BUTTON_STYLE);\n        getItems().add(add);\n        add.setOnMouseEntered(evt -> {\n            QueleaApp.get().getMainWindow().requestFocus();\n            add.show();\n            openTime = new Date().getTime();\n        });\n\n        // Avoid menu being closed if users click to open it\n        add.setOnMouseClicked(e -> {\n            if (new Date().getTime() - openTime < 1000) {\n                add.show();\n            }\n        });\n\n        MenuItem addPresentationButton;\n        if (Utils.isMac()) {\n            addPresentationButton = getMenuItemFromImage(\"file:icons/powerpointbig.png\");\n        } else {\n            addPresentationButton = getMenuItemFromImage(\"file:icons/powerpoint.png\");\n        }\n        addPresentationButton.setText(LabelGrabber.INSTANCE.getLabel(\"add.presentation.tooltip\"));\n        addPresentationButton.setOnAction(new AddPowerpointActionHandler());\n        add.getItems().add(addPresentationButton);\n\n        MenuItem addMultimediaButton;\n        if (Utils.isMac()) {\n            addMultimediaButton = getMenuItemFromImage(\"file:icons/multimedia.png\");\n        } else {\n            addMultimediaButton = getMenuItemFromImage(\"file:icons/multimedia.png\");\n        }\n        addMultimediaButton.setText(LabelGrabber.INSTANCE.getLabel(\"add.multimedia.tooltip\"));\n        addMultimediaButton.setOnAction(new AddVideoActionHandler());\n        add.getItems().add(addMultimediaButton);\n\n        MenuItem addTimerButton;\n        if (Utils.isMac()) {\n            addTimerButton = getMenuItemFromImage(\"file:icons/timer-dark.png\");\n        } else {\n            addTimerButton = getMenuItemFromImage(\"file:icons/timer-dark.png\", 24, 24, false, true);\n        }\n        addTimerButton.setText(LabelGrabber.INSTANCE.getLabel(\"add.timer.tooltip\"));\n        addTimerButton.setOnAction(new AddTimerActionHandler());\n        add.getItems().add(addTimerButton);\n\n        if (Utils.isMac()) {\n            loadingView = new ImageView(new Image(\"file:icons/loading.gif\"));\n        } else {\n            loadingView = new ImageView(new Image(\"file:icons/loading.gif\", 24, 24, false, true));\n        }\n        loadingView.setFitHeight(24);\n        loadingView.setFitWidth(24);\n        dvdImageStack = new StackPane();\n        ImageView dvdIV;\n        if (Utils.isMac()) {\n            dvdIV = new ImageView(new Image(\"file:icons/dvd.png\"));\n        } else {\n            dvdIV = new ImageView(new Image(QueleaProperties.get().getUseDarkTheme() ? \"file:icons/dvd-light.png\" : \"file:icons/dvd.png\", 24, 24, false, true));\n        }\n        dvdIV.setFitWidth(24);\n        dvdIV.setFitHeight(24);\n        dvdImageStack.getChildren().add(dvdIV);\n\n        MenuItem addDVDButton = new MenuItem(LabelGrabber.INSTANCE.getLabel(\"add.dvd.button\"), dvdImageStack);\n        addDVDButton.setOnAction(new AddDVDActionHandler());\n        if (!Utils.isMac()) {\n            add.getItems().add(addDVDButton);\n        }\n\n        MenuItem addPdfButton;\n        if (Utils.isMac()) {\n            addPdfButton = getMenuItemFromImage(\"file:icons/add_pdfbig.png\");\n        } else {\n            addPdfButton = getMenuItemFromImage(\"file:icons/add_pdf.png\");\n        }\n        addPdfButton.setText(LabelGrabber.INSTANCE.getLabel(\"add.pdf.tooltip\"));\n        addPdfButton.setOnAction(new AddPdfActionHandler());\n        add.getItems().add(addPdfButton);\n\n        MenuItem addWebButton;\n        if (Utils.isMac()) {\n            addWebButton = getMenuItemFromImage(\"file:icons/web.png\");\n        } else {\n            addWebButton = getMenuItemFromImage(\"file:icons/web-small.png\");\n        }\n        addWebButton.setText(LabelGrabber.INSTANCE.getLabel(\"add.website\"));\n        addWebButton.setOnAction(new AddWebActionHandler());\n        add.getItems().add(addWebButton);\n\n        MenuItem addImageGroupButton;\n        if (Utils.isMac()) {\n            addImageGroupButton = getMenuItemFromImage(\"file:icons/image.png\");\n        } else {\n            addImageGroupButton = getMenuItemFromImage(\"file:icons/image.png\", 24, 24, false, true);\n        }\n        addImageGroupButton.setText(LabelGrabber.INSTANCE.getLabel(\"add.images.panel\"));\n        addImageGroupButton.setOnAction(new AddImageActionHandler());\n        add.getItems().add(addImageGroupButton);\n\n        getItems().add(new Separator());\n\n        if (Utils.isMac()) {\n            manageNoticesButton = getButtonFromImage(\"file:icons/infobig.png\");\n        } else {\n            manageNoticesButton = getButtonFromImage(\"file:icons/info.png\");\n        }\n        Utils.setToolbarButtonStyle(manageNoticesButton);\n        manageNoticesButton.setTooltip(new Tooltip(LabelGrabber.INSTANCE.getLabel(\"manage.notices.tooltip\")));\n        manageNoticesButton.setOnAction(new ShowNoticesActionHandler());\n        getItems().add(manageNoticesButton);\n\n        // Auto-hide add menu\n        quickInsertButton.setOnMouseEntered(evt -> {\n            add.hide();\n        });\n        manageNoticesButton.setOnMouseEntered(evt -> {\n            add.hide();\n        });\n        QueleaApp.get().getMainWindow().getMainPanel().setOnMouseEntered(evt -> {\n            add.hide();\n        });\n        QueleaApp.get().getMainWindow().getMainMenuBar().setOnMouseEntered(evt -> {\n            add.hide();\n        });\n\n        recordingsHandler = new RecordButtonHandler();\n\n        recordingPathTextField = new TextField();\n        recordingPathTextField.setMinWidth(Region.USE_PREF_SIZE);\n        recordingPathTextField.setMaxWidth(Region.USE_PREF_SIZE);\n\n        // Set dynamic TextField width\n        recordingPathTextField.textProperty().addListener((ov, prevText, currText) -> {\n            Platform.runLater(() -> {\n                Text text = new Text(currText);\n                text.getStyleClass().add(\"text\");\n                text.setFont(recordingPathTextField.getFont());\n                double width = text.getLayoutBounds().getWidth()\n                        + recordingPathTextField.getPadding().getLeft() + recordingPathTextField.getPadding().getRight()\n                        + 2d;\n                recordingPathTextField.setPrefWidth(width);\n                recordingPathTextField.positionCaret(recordingPathTextField.getCaretPosition());\n            });\n        });\n\n        recordAudioButton = getToggleButtonFromImage(\"file:icons/record.png\");\n        Utils.setToolbarButtonStyle(recordAudioButton);\n        recording = false;\n        recordAudioButton.setOnMouseClicked(e -> {\n            if (!QueleaProperties.get().getRecordingsPath().equals(\"\")) {\n                if (recording) {\n                    stopRecording();\n                } else {\n                    startRecording();\n                }\n            } else {\n                recordAudioButton.setSelected(false);\n                Dialog.Builder setRecordingWarningBuilder = new Dialog.Builder()\n                        .create()\n                        .setTitle(LabelGrabber.INSTANCE.getLabel(\"recording.warning.title\"))\n                        .setMessage(LabelGrabber.INSTANCE.getLabel(\"recording.warning.message\"))\n                        .addLabelledButton(LabelGrabber.INSTANCE.getLabel(\"ok.button\"), (ActionEvent t) -> {\n                            setRecordinPathWarning.hide();\n                            setRecordinPathWarning = null;\n                        });\n                setRecordinPathWarning = setRecordingWarningBuilder.setWarningIcon().build();\n                setRecordinPathWarning.showAndWait();\n            }\n        });\n        recordAudioButton.setTooltip(new Tooltip(LabelGrabber.INSTANCE.getLabel(\"record.audio.tooltip\")));\n        getItems().add(recordAudioButton);\n\n    }\n\n    public void setToggleButtonText(String text) {\n        recordAudioButton.setText(text);\n    }\n\n    private Button getButtonFromImage(String uri) {\n        return new Button(\"\", getImageViewForButton(uri));\n    }\n\n    private ToggleButton getToggleButtonFromImage(String uri) {\n        return new ToggleButton(\"\", getImageViewForButton(uri));\n    }\n\n    private Button getButtonFromImage(String uri, int width, int height, boolean preserveRatio, boolean smooth) {\n        ImageView iv = new ImageView(new Image(uri, width, height, preserveRatio, smooth));\n        iv.setSmooth(true);\n        iv.setFitWidth(24);\n        iv.setFitHeight(24);\n        return new Button(\"\", iv);\n    }\n\n    private MenuItem getMenuItemFromImage(String uri) {\n        return new MenuItem(\"\", getImageViewForButton(uri));\n    }\n\n    private MenuItem getMenuItemFromImage(String uri, int width, int height, boolean preserveRatio, boolean smooth) {\n        ImageView iv = new ImageView(new Image(QueleaProperties.get().getUseDarkTheme() ? uri.replace(\".png\", \"-light.png\") : uri, width, height, preserveRatio, smooth));\n        iv.setSmooth(true);\n        iv.setFitWidth(24);\n        iv.setFitHeight(24);\n        return new MenuItem(\"\", iv);\n    }\n\n    private ImageView getImageViewForButton(String uri) {\n        ImageView iv = new ImageView(new Image(QueleaProperties.get().getUseDarkTheme() ? uri.replace(\".png\", \"-light.png\") : uri));\n        iv.setSmooth(true);\n        iv.setFitWidth(24);\n        iv.setFitHeight(24);\n        return iv;\n    }\n\n    /**\n     * Set if the DVD is loading.\n     * <p>\n     *\n     * @param loading true if it's loading, false otherwise.\n     */\n    public void setDVDLoading(boolean loading) {\n        if (loading && !dvdImageStack.getChildren().contains(loadingView)) {\n            dvdImageStack.getChildren().add(loadingView);\n        } else if (!loading) {\n            dvdImageStack.getChildren().remove(loadingView);\n        }\n    }\n\n    public void startRecording() {\n        recordAudioButton.setSelected(true);\n        recording = true;\n//        getItems().add(pb);\n        getItems().add(recordingPathTextField);\n        recordAudioButton.setText(\"Recording...\");\n        recordAudioButton.setSelected(true);\n        recordingsHandler = new RecordButtonHandler();\n        recordingsHandler.passVariables(\"rec\", pb, recordingPathTextField, recordAudioButton);\n        final int interval = 1000; // 1000 ms\n        recCount = new Timer(interval, (java.awt.event.ActionEvent e) -> {\n            recTime += interval;\n            setTime(recTime, recordAudioButton);\n        });\n        recCount.start();\n    }\n\n    public void stopRecording() {\n        recordingsHandler.passVariables(\"stop\", pb, recordingPathTextField, recordAudioButton);\n        recordAudioButton.setSelected(false);\n        recording = false;\n        recCount.stop();\n//        getItems().remove(pb);\n        getItems().remove(recordingPathTextField);\n        recordAudioButton.setText(\"\");\n        recordAudioButton.setSelected(false);\n        recTime = 0;\n    }\n\n    public RecordButtonHandler getRecordButtonHandler() {\n        return recordingsHandler;\n    }\n\n    /**\n     * Method to set elapsed time on ToggleButton\n     *\n     * @param elapsedTimeMillis Time elapsed recording last was started\n     * @param tb                ToggleButton to set time\n     */\n    private void setTime(long elapsedTimeMillis, ToggleButton tb) {\n        float elapsedTimeSec = elapsedTimeMillis / 1000F;\n        int hours = (int) elapsedTimeSec / 3600;\n        int minutes = (int) (elapsedTimeSec % 3600) / 60;\n        int seconds = (int) elapsedTimeSec % 60;\n        String time = String.format(\"%02d:%02d:%02d\", hours, minutes, seconds);\n        Platform.runLater(() -> {\n            tb.setText(time);\n        });\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/widgets/AddSongPromptOverlay.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n * Copyright (C) 2012 Michael Berry\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.widgets;\n\nimport javafx.animation.FadeTransition;\nimport javafx.application.Platform;\nimport javafx.beans.value.ChangeListener;\nimport javafx.beans.value.ObservableValue;\nimport javafx.geometry.Insets;\nimport javafx.geometry.Pos;\nimport javafx.scene.control.Label;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.layout.StackPane;\nimport javafx.scene.layout.VBox;\nimport javafx.scene.paint.Color;\nimport javafx.util.Duration;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.windows.main.QueleaApp;\n\n/**\n * An overlay that should be put on the song database when no songs are present.\n * It prompts the user to press the add song button to add a song - this is\n * useful from a HCI perspective because otherwise the button is not greatly\n * noticeable.\n * <p/>\n * @author Michael\n */\npublic class AddSongPromptOverlay extends StackPane {\n\n    private FadeTransition trans;\n    public final Label text;\n\n    /**\n     * Create the overlay.\n     */\n    public AddSongPromptOverlay() {\n        setAlignment(Pos.CENTER);\n        VBox content = new VBox();\n        content.setAlignment(Pos.TOP_LEFT);\n        StackPane.setMargin(content, new Insets(10,0,0,15));\n        ImageView iv = new ImageView(new Image(\"file:icons/whitearrow.png\"));\n        content.getChildren().add(iv);\n        text = new Label(LabelGrabber.INSTANCE.getLabel(\"add.song.hint.text\"));\n        Platform.runLater(() -> QueleaApp.get().getMainWindow().getMainPanel().getLibraryPanel().getLibrarySongPanel().getSearchBox().textProperty().addListener(new ChangeListener<String>() {\n\n            @Override\n            public void changed(ObservableValue<? extends String> ov, String t, String t1) {\n                if(t1.isEmpty()) {\n                    text.setText(LabelGrabber.INSTANCE.getLabel(\"add.song.hint.text\"));\n                }\n                else {\n                    text.setText(LabelGrabber.INSTANCE.getLabel(\"add.song.hint.search.text\"));\n                }\n            }\n        }));\n        text.setWrapText(true);\n        text.setTextFill(Color.WHITESMOKE);\n        text.setStyle(\"-fx-font-size:16pt; -fx-font-family:Calibri;\");\n        content.getChildren().add(text);\n        getChildren().add(content);\n        setOpacity(0);\n        setStyle(\"-fx-background-color: #555555;\");\n        setVisible(false);\n    }\n\n    /**\n     * Show (fade in) the overlay.\n     */\n    public synchronized void show() {\n        setVisible(true);\n        if(trans != null) {\n            trans.stop();\n        }\n        trans = new FadeTransition(Duration.seconds(0.2), this);\n        trans.setFromValue(getOpacity());\n        trans.setToValue(0.6);\n        trans.play();\n    }\n\n    /**\n     * Hide (fade out) the overlay.\n     */\n    public synchronized void hide() {\n        if(trans != null) {\n            trans.stop();\n        }\n        trans = new FadeTransition(Duration.seconds(0.2), this);\n        trans.setFromValue(getOpacity());\n        trans.setToValue(0);\n        trans.play();\n        trans.setOnFinished(t -> setVisible(false));\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/widgets/BooleanCell.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.widgets;\n\nimport javafx.beans.value.ChangeListener;\nimport javafx.beans.value.ObservableValue;\nimport javafx.scene.control.CheckBox;\nimport javafx.scene.control.ContentDisplay;\nimport javafx.scene.control.TableCell;\n\n/**\n *\n * @author Michael\n */\npublic class BooleanCell<E> extends TableCell<E, Boolean> {\n\n    private CheckBox checkBox;\n\n    public BooleanCell() {\n\n        checkBox = new CheckBox();\n        checkBox.selectedProperty().addListener((observable, oldValue, newValue) -> {\n            if(isEditing()) {\n                commitEdit(newValue == null ? false : newValue);\n            }\n        });\n        this.setGraphic(checkBox);\n        this.setContentDisplay(ContentDisplay.GRAPHIC_ONLY);\n        this.setEditable(true);\n\n\n    }\n\n    @Override\n    public void startEdit() {\n        super.startEdit();\n        if(isEmpty()) {\n            return;\n        }\n        checkBox.setDisable(false);\n        checkBox.requestFocus();\n\n    }\n\n    @Override\n    public void cancelEdit() {\n        super.cancelEdit();\n        checkBox.setDisable(true);\n    }\n\n    @Override\n    public void commitEdit(Boolean value) {\n        super.commitEdit(value);\n        checkBox.setDisable(true);\n    }\n\n    @Override\n    public void updateItem(Boolean item, boolean empty) {\n        super.updateItem(item, empty);\n        if(empty) {\n            setText(null);\n            setGraphic(null);\n        }\n        else if(!isEmpty()) {\n            checkBox.setSelected(item);\n        }\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/widgets/ButtonChecker.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.widgets;\n\nimport javafx.scene.control.MenuItem;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.windows.library.LibrarySongList;\nimport org.quelea.windows.main.MainPanel;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.windows.main.schedule.ScheduleList;\n\n/**\n * Responsible for checking, enabling, disabling etc. buttons.\n *\n * @author Michael\n */\npublic class ButtonChecker {\n\n    public static final ButtonChecker INSTANCE = new ButtonChecker();\n\n    /**\n     * Only private.\n     */\n    private ButtonChecker() {\n    }\n    \n    /**\n     * Check whether the edit or remove buttons should be set to enabled or\n     * disabled.\n     *\n     * @param editSongButton the edit button to check.\n     * @param removeSongButton the remove button to check.\n     */\n    public void checkEditRemoveButtons(MenuItem editSongButton, MenuItem removeSongButton) {\n        final MainPanel mainPanel = QueleaApp.get().getMainWindow().getMainPanel();\n        final ScheduleList scheduleList = mainPanel.getSchedulePanel().getScheduleList();\n        if(!scheduleList.focusedProperty().get()) {\n            editSongButton.setDisable(true);\n            removeSongButton.setDisable(true);\n            return;\n        }\n        if(scheduleList.getSelectionModel().getSelectedIndex() == -1) {\n            editSongButton.setDisable(true);\n            removeSongButton.setDisable(true);\n        }\n        else {\n            if(scheduleList.getSelectionModel().getSelectedItem().displayable() instanceof SongDisplayable) {\n                editSongButton.setDisable(false);\n            }\n            else {\n                editSongButton.setDisable(true);\n            }\n            removeSongButton.setDisable(false);\n        }\n    }\n\n    /**\n     * Check whether the add to schedule button should be set enabled or\n     * disabled.\n     *\n     * @param addSongButton the button to check.\n     */\n    public void checkAddButton(MenuItem addSongButton) {\n        final MainPanel mainPanel = QueleaApp.get().getMainWindow().getMainPanel();\n        final LibrarySongList songList = mainPanel.getLibraryPanel().getLibrarySongPanel().getSongList();\n        if(!songList.focusedProperty().get()) {\n            addSongButton.setDisable(true);\n            return;\n        }\n        if(songList.getListView().getSelectionModel().getSelectedIndex() == -1) {\n            addSongButton.setDisable(true);\n        }\n        else {\n            addSongButton.setDisable(false);\n        }\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/widgets/CardPane.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.widgets;\n\nimport java.util.Collection;\nimport java.util.HashMap;\nimport java.util.Iterator;\nimport javafx.scene.Node;\nimport javafx.scene.layout.StackPane;\n\n/**\n * Emulates (sort of) a swing card layout - JavaFX doesn't have one but we can\n * trivially create one out of a StackPane.\n * <p/>\n * @author Michael\n */\npublic class CardPane<T extends Node> extends StackPane implements Iterable<T> {\n\n    private HashMap<String, T> items = new HashMap<>();\n    private T currentPane = null;\n\n    /**\n     * Add a node to this card pane.\n     * <p/>\n     * @param node the node to add.\n     * @param label the label used for selecting this node.\n     */\n    public void add(T node, String label) {\n        items.put(label, node);\n        node.setVisible(false);\n        getChildren().add(node);\n    }\n\n    /**\n     * Remove a node on this card pane.\n     * <p/>\n     * @param label the label of the node to remove.\n     */\n    public void remove(String label) {\n        getChildren().remove(items.get(label));\n        items.remove(label);\n    }\n\n    /**\n     * Get all the panels currently on the card pane.\n     * <p/>\n     * @return\n     */\n    public Collection<T> getPanels() {\n        return items.values();\n    }\n\n    /**\n     * Show the node with the given label.\n     * <p/>\n     * @param label the label whose node to show.\n     * @throws IllegalArgumentException if the label isn't valid.\n     */\n    public void show(String label) {\n        for(T node : items.values()) {\n            node.setVisible(false);\n        }\n        currentPane = items.get(label);\n        if(currentPane == null) {\n            throw new IllegalArgumentException(\"Label \" + label + \" doesn't exist in this card pane!\");\n        }\n        else {\n            currentPane.setVisible(true);\n        }\n    }\n\n    /**\n     * Get the current panel being shown.\n     * <p/>\n     * @return the currently shown panel, or null if none is being shown.\n     */\n    public Node getCurrentPane() {\n        return currentPane;\n    }\n\n    @Override\n    public Iterator<T> iterator() {\n        return getPanels().iterator();\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/widgets/Clock.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n *\n * This program is free software: you can redistribute it and/or modify it under\n * the terms of the GNU General Public License as published by the Free Software\n * Foundation, either version 3 of the License, or (at your option) any later\n * version.\n *\n * This program is distributed in the hope that it will be useful, but WITHOUT\n * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\n * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License along with\n * this program. If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.widgets;\n\nimport java.util.Calendar;\nimport javafx.animation.Animation;\nimport javafx.animation.KeyFrame;\nimport javafx.animation.Timeline;\nimport javafx.event.ActionEvent;\nimport javafx.scene.text.Font;\nimport javafx.scene.text.FontPosture;\nimport javafx.scene.text.FontWeight;\nimport javafx.scene.text.Text;\nimport javafx.util.Duration;\nimport org.quelea.services.utils.QueleaProperties;\n\n/**\n * A simple JavaFX clock.\n * <p>\n * @author Michael\n */\npublic class Clock extends Text {\n\n    public Clock() {\n        setFontSize(50);\n        setFill(QueleaProperties.get().getStageLyricsColor());\n        bindToTime();\n        setOpacity(0.8);\n    }\n\n    public void setFontSize(double fontSize) {\n        setFont(Font.font(\"Noto Sans\", FontWeight.BOLD, FontPosture.REGULAR, fontSize));\n        setFill(QueleaProperties.get().getStageChordColor());\n    }\n\n    private void bindToTime() {\n        Timeline timeline = new Timeline(\n                new KeyFrame(Duration.seconds(0), (ActionEvent actionEvent) -> {\n                    Calendar time = Calendar.getInstance();\n                    String hourString;\n                    boolean s24h = QueleaProperties.get().getUse24HourClock();\n\n                    // Get user visibility setting. There is only one clock at the moment but if there are\n                    // ever more clocks we will need to tell the constructor which clock we are looking at\n                    // to get the correct property\n                    boolean sShowClock = QueleaProperties.get().getStageShowClock();\n\n                    // Only bother updating the text is we are actually showing the clock\n                    if( sShowClock ) {\n                        if (s24h) {\n                            hourString = pad(2, \"0\", time.get(Calendar.HOUR_OF_DAY) + \"\");\n                        } else {\n                            hourString = pad(2, \"0\", time.get(Calendar.HOUR) + \"\");\n                        }\n                        String minuteString = pad(2, \"0\", time.get(Calendar.MINUTE) + \"\");\n                        String text1 = hourString + \":\" + minuteString;\n                        if (!s24h) {\n                            text1 += (time.get(Calendar.AM_PM) == Calendar.AM) ? \" AM\" : \" PM\";\n                        }\n                        setText(text1);\n                    }\n\n                    // Set visibility after updating the text as otherwise we might get a slight glitch when turning\n                    // the clock from hidden to visible!\n                    setVisible( sShowClock );\n                }),\n                new KeyFrame(Duration.seconds(1))\n        );\n        timeline.setCycleCount(Animation.INDEFINITE);\n        timeline.play();\n    }\n\n    /**\n     * Creates a string left padded to the specified width with the supplied\n     * padding character.\n     * <p>\n     * @param fieldWidth the length of the resultant padded string.\n     * @param padChar a character to use for padding the string.\n     * @param s the string to be padded.\n     * @return the padded string.\n     */\n    private static String pad(int fieldWidth, String padChar, String s) {\n        StringBuilder sb = new StringBuilder();\n        var paddingAmount = Math.max(0,fieldWidth-s.length());\n\n        sb.append(padChar.repeat(paddingAmount));\n        sb.append(s);\n\n        return sb.toString();\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/widgets/DisplayPositionSelector.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.widgets;\n\nimport java.util.ArrayList;\nimport java.util.List;\nimport javafx.animation.FadeTransition;\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport javafx.geometry.Pos;\nimport javafx.scene.control.ToggleButton;\nimport javafx.scene.control.ToggleGroup;\nimport javafx.scene.input.MouseEvent;\nimport javafx.scene.layout.BorderPane;\nimport javafx.scene.layout.GridPane;\nimport javafx.util.Duration;\nimport org.quelea.data.ThemeDTO;\nimport org.quelea.windows.newsong.ThemePanel;\n\n/**\n *\n * @author Michael\n */\npublic class DisplayPositionSelector extends BorderPane {\n\n    private List<ToggleButton> buttons;\n\n    public DisplayPositionSelector(final ThemePanel panel) {\n        buttons = new ArrayList<>();\n        ToggleGroup group = new ToggleGroup();\n        GridPane selectorPane = new GridPane();\n        selectorPane.prefWidthProperty().bind(widthProperty());\n        selectorPane.prefHeightProperty().bind(heightProperty().subtract(50));\n        for (int i = 0; i < 9; i++) {\n            ToggleButton but = new ToggleButton();\n            but.prefWidthProperty().bind(widthProperty().divide(3));\n            but.prefHeightProperty().bind(heightProperty().divide(3));\n            but.setToggleGroup(group);\n            but.setOnAction(t -> {\n                if (panel != null) {\n                    panel.updateTheme(true);\n                }\n            });\n            selectorPane.add(but, i % 3, i / 3);\n            buttons.add(but);\n        }\n        setCenter(selectorPane);\n        setOnMouseEntered(t -> {\n            FadeTransition trans = new FadeTransition(Duration.seconds(0.2), DisplayPositionSelector.this);\n            trans.setToValue(0.7);\n            trans.play();\n        });\n        setOnMouseExited(t -> {\n            FadeTransition trans = new FadeTransition(Duration.seconds(0.2), DisplayPositionSelector.this);\n            trans.setToValue(0);\n            trans.play();\n        });\n        setOpacity(0);\n    }\n\n    public void setTheme(ThemeDTO theme) {\n        if (theme.getTextPosition() == -1) {\n            for (ToggleButton button : buttons) {\n                button.setSelected(false);\n            }\n        } else {\n            buttons.get(theme.getTextPosition()).setSelected(true);\n        }\n    }\n\n    public int getSelectedButtonIndex() {\n        for (ToggleButton button : buttons) {\n            if (button.isSelected()) {\n                return buttons.indexOf(button);\n            }\n        }\n        return -1;\n    }\n\n    public static Pos getPosFromIndex(int index) {\n        switch (index) {\n            case -1:\n                return Pos.CENTER;\n            case 0:\n                return Pos.TOP_LEFT;\n            case 1:\n                return Pos.TOP_CENTER;\n            case 2:\n                return Pos.TOP_RIGHT;\n            case 3:\n                return Pos.CENTER_LEFT;\n            case 4:\n                return Pos.CENTER;\n            case 5:\n                return Pos.CENTER_RIGHT;\n            case 6:\n                return Pos.BOTTOM_LEFT;\n            case 7:\n                return Pos.BOTTOM_CENTER;\n            case 8:\n                return Pos.BOTTOM_RIGHT;\n            default:\n                return Pos.CENTER;\n        }\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/widgets/DisplayPreview.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.widgets;\n\nimport javafx.beans.value.ChangeListener;\nimport javafx.beans.value.ObservableValue;\nimport javafx.geometry.Insets;\nimport javafx.scene.effect.DropShadow;\nimport javafx.scene.layout.StackPane;\nimport javafx.scene.paint.Color;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.windows.main.DisplayCanvas;\nimport org.quelea.windows.main.QueleaApp;\n\n/**\n * A display preview - shows a display canvas but preserves the aspect ratio of\n * the current main display. If the aspect ratio cannot be calculated, default\n * to the ratio given be DEFAULT_RATIO.\n * <p>\n *\n * @author Michael\n */\npublic class DisplayPreview extends StackPane {\n\n    private static final double DEFAULT_RATIO = 4.0 / 3;\n    private final DisplayCanvas canvas;\n\n    /**\n     * Create a new display preview.\n     *\n     * @param canvas the display canvas to use in this preview.\n     */\n    public DisplayPreview(DisplayCanvas canvas) {\n        this.canvas = canvas;\n        DropShadow dropShadow = new DropShadow();\n        dropShadow.setRadius(10);\n        dropShadow.setOffsetX(6);\n        dropShadow.setOffsetY(6);\n        dropShadow.setColor(Color.GRAY);\n        canvas.setEffect(dropShadow);\n        if (!QueleaProperties.get().getUseDarkTheme()) {\n            setStyle(\"-fx-background-color:#dddddd;\");\n        }\n        getChildren().add(canvas);\n        updateSize();\n        ChangeListener<Number> cl = (ov, t, t1) -> updateSize();\n        widthProperty().addListener(cl);\n        heightProperty().addListener(cl);\n        QueleaApp.get().getProjectionWindow().widthProperty().addListener(cl);\n        QueleaApp.get().getProjectionWindow().heightProperty().addListener(cl);\n\n    }\n\n    /**\n     * Calculate and update the new size of the display canvas. This maintains the same\n     * aspect ratio as the projection window.\n     */\n    private void updateSize() {\n        // For working out the current ratio, subtract 20 from width and height because\n        // this is the minimum margin amount (10 on each side), otherwise the ratio being\n        // calculate is of the whole split pane section not the actual preview/live display\n        double width = getWidth() - 20;\n        double height = getHeight() - 20;\n        double currentRatio = width / height;\n        double ratio = getRatio();\n        if (currentRatio < ratio) { //height too big\n            double hDiff = (height - (width / ratio)) / 2;\n            hDiff += 10;  // Add back the minimum margin on each side\n            setMargin(canvas, new Insets(hDiff, 10, hDiff, 10));\n        } else { //width too big\n            double vDiff = (width - (ratio * height)) / 2;\n            vDiff += 10;  // Add back the minimum margin on each side\n            setMargin(canvas, new Insets(10, vDiff, 10, vDiff));\n        }\n    }\n\n    private double getRatio() {\n        if (QueleaApp.get().getProjectionWindow() == null) {\n            return DEFAULT_RATIO;\n        }\n        double width = QueleaApp.get().getProjectionWindow().getWidth();\n        double height = QueleaApp.get().getProjectionWindow().getHeight();\n        if (height == 0) {\n            return DEFAULT_RATIO;\n        }\n        return width / height;\n    }\n\n    public DisplayCanvas getCanvas() {\n        return canvas;\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/widgets/IntegerTextField.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.widgets;\n\nimport javafx.scene.control.TextField;\nimport javafx.scene.input.KeyEvent;\n\n/**\n * @author Shivaji.Barge\n * <p/>\n */\npublic class IntegerTextField extends TextField {\n\n    private String numericLastKey;\n\n    public IntegerTextField() {\n        super();\n\n        this.addEventFilter(KeyEvent.KEY_TYPED, event -> {\n            char[] ar = event.getCharacter().toCharArray();\n            char ch = ar[event.getCharacter().toCharArray().length - 1];\n            /*populating lastkey if it is numeric*/\n            if ((ch >= '0' && ch <= '9')) {\n                numericLastKey = String.valueOf(ch);\n            }\n\n            if (isValid()) {\n                /* Disable other charater than numeric character. */\n                if (!(ch >= '0' && ch <= '9')) {\n                    event.consume();\n                }\n            } else {\n                event.consume();\n            }\n        });\n\n        /*Disabling 'invalid sting' past functionality if not numeric */\n        this.textProperty().addListener((arg0, oldValue, newValue) -> {\n            if (!isNumeric(newValue)) {\n                clear();\n            } else if (!isValid()) {\n                clear();\n            }\n        });\n\n        /**\n         * check for numeric value.\n         * <p/>\n         * @param text\n         * @return boolean\n         */\n\n    }\n    private boolean isNumeric(String text) {\n        return text.matches(\"-?\\\\d+(.\\\\d+)?\");\n    }\n\n    /**\n     * Check for valid text or not.\n     * <p/>\n     * @return boolean if not valid then return false else true.\n     */\n    private boolean isValid() {\n        if(getText().length() == 0) {\n            return true;\n        }\n        try {\n            String testText = getText();\n            testText = (numericLastKey != null && !\"\".equals(numericLastKey)) ? testText + numericLastKey : testText;\n            numericLastKey = \"\";\n            Integer.parseInt(testText);\n        }\n        catch(NumberFormatException ex) {\n            return false;\n        }\n        return true;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/widgets/LoadingPane.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * Copyright (C) 2012 Michael Berry\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.widgets;\n\nimport javafx.animation.FadeTransition;\nimport javafx.animation.Transition;\nimport javafx.geometry.Pos;\nimport javafx.scene.control.ProgressBar;\nimport javafx.scene.layout.StackPane;\nimport javafx.scene.layout.VBox;\nimport javafx.scene.text.Text;\nimport javafx.util.Duration;\nimport org.quelea.services.languages.LabelGrabber;\n\n/**\n * A pane that can be overlaid on a component when it's loading something.\n * <p/>\n * @author Michael\n */\npublic class LoadingPane extends StackPane {\n\n    private FadeTransition trans;\n    private ProgressBar bar;\n\n    /**\n     * Create the loading pane.\n     */\n    public LoadingPane() {\n        setAlignment(Pos.CENTER);\n        VBox content = new VBox();\n        content.setAlignment(Pos.CENTER);\n        Text text = new Text(LabelGrabber.INSTANCE.getLabel(\"loading.text\") + \"...\");\n        text.setStyle(\" -fx-font: bold italic 20pt \\\"Arial\\\";\");\n        FadeTransition textTransition = new FadeTransition(Duration.seconds(1.5), text);\n        textTransition.setAutoReverse(true);\n        textTransition.setFromValue(0);\n        textTransition.setToValue(1);\n        textTransition.setCycleCount(Transition.INDEFINITE);\n        textTransition.play();\n        content.getChildren().add(text);\n        bar = new ProgressBar();\n        content.getChildren().add(bar);\n        getChildren().add(content);\n        setOpacity(0);\n        setStyle(\"-fx-background-color: #555555;\");\n        setVisible(false);\n    }\n    \n    public void setProgress(double progress) {\n        bar.setProgress(progress);\n    }\n\n    /**\n     * Show (fade in) the loading pane.\n     */\n    public synchronized void show() {\n        setVisible(true);\n        setProgress(-1);\n        if(trans != null) {\n            trans.stop();\n        }\n        trans = new FadeTransition(Duration.seconds(0.2), this);\n        trans.setFromValue(getOpacity());\n        trans.setToValue(0.6);\n        trans.play();\n    }\n\n    /**\n     * Hide (fade out) the loading pane.\n     */\n    public synchronized void hide() {\n        setVisible(false);\n        if(trans != null) {\n            trans.stop();\n        }\n        trans = new FadeTransition(Duration.seconds(0.2), this);\n        trans.setFromValue(getOpacity());\n        trans.setToValue(0);\n        trans.play();\n        trans.setOnFinished(actionEvent -> setVisible(false));\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/widgets/LogoImage.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.widgets;\n\nimport javafx.scene.image.ImageView;\nimport javafx.scene.layout.StackPane;\nimport org.quelea.services.utils.ImageManager;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.video.VidLogoDisplay;\n\nimport java.net.URI;\n\n/**\n * The logo image - on a separate stack pane with its background colour set so\n * we don't see any content behind the panel when its aspect ratio doesn't line\n * up exactly with the display canvas size!\n * <p>\n *\n * @author Michael\n */\npublic class LogoImage extends StackPane {\n\n    private final ImageView logoImage;\n    private boolean stageView;\n\n    /**\n     * Create a new logo image\n     * <p>\n     * @param stageView true if the logo image is being constructed on a stage\n     * view, else false.\n     */\n    public LogoImage(boolean stageView) {\n        this.stageView = stageView;\n        logoImage = new ImageView();\n        setStyle(\"-fx-background-color:#000000;\");\n        refresh();\n        getChildren().add(logoImage);\n    }\n\n    /**\n     * Update this logo image with the correct one from the properties file\n     */\n    public final void refresh() {\n        if(stageView) {\n            logoImage.setImage(Utils.getImageFromColour(QueleaProperties.get().getStageBackgroundColor()));\n        }\n        else {\n            String uri = QueleaProperties.get().getLogoImageURI();\n            if(isVid(uri)) {\n                VidLogoDisplay.INSTANCE.setURI(URI.create(uri));\n                logoImage.imageProperty().bind(VidLogoDisplay.INSTANCE.imageProperty());\n            }\n            else {\n                logoImage.imageProperty().unbind();\n                logoImage.setImage(ImageManager.INSTANCE.getImage(uri));\n                logoImage.setPreserveRatio(true);\n            }\n        }\n        logoImage.fitWidthProperty().bind(widthProperty());\n        logoImage.fitHeightProperty().bind(heightProperty());\n    }\n\n    private boolean isVid(String uri) {\n        return Utils.getVideoExtensions().stream().anyMatch(uri::endsWith);\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/widgets/NumberSpinner.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.widgets;\n\nimport java.text.NumberFormat;\nimport javafx.beans.binding.NumberBinding;\nimport javafx.beans.property.ObjectProperty;\nimport javafx.beans.property.SimpleObjectProperty;\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport javafx.geometry.Pos;\nimport javafx.scene.control.Button;\nimport javafx.scene.input.KeyCode;\nimport javafx.scene.input.KeyEvent;\nimport javafx.scene.layout.HBox;\nimport javafx.scene.layout.StackPane;\nimport javafx.scene.layout.VBox;\nimport javafx.scene.shape.LineTo;\nimport javafx.scene.shape.MoveTo;\nimport javafx.scene.shape.Path;\n\n/**\n * JavaFX Control that behaves like a {@link javax.swing.JSpinner} known in Swing. The\n * number in the textfield can be incremented or decremented by a configurable\n * stepWidth using the arrow buttons in the control or the up and down arrow\n * keys.\n * <p/>\n * @author Thomas Bolz\n */\npublic class NumberSpinner extends HBox {\n\n    public static final String ARROW = \"NumberSpinnerArrow\";\n    public static final String NUMBER_FIELD = \"NumberField\";\n    public static final String NUMBER_SPINNER = \"NumberSpinner\";\n    public static final String SPINNER_BUTTON_UP = \"SpinnerButtonUp\";\n    public static final String SPINNER_BUTTON_DOWN = \"SpinnerButtonDown\";\n    private final String BUTTONS_BOX = \"ButtonsBox\";\n    private NumberTextField numberField;\n    private ObjectProperty<Integer> stepWitdhProperty = new SimpleObjectProperty<>();\n    private final double ARROW_SIZE = 4;\n    private final Button incrementButton;\n    private final Button decrementButton;\n    private final NumberBinding buttonHeight;\n    private final NumberBinding spacing;\n\n    public NumberSpinner() {\n        this(0, 1);\n    }\n\n    public NumberSpinner(Integer value, Integer stepWidth) {\n        this(value, stepWidth, NumberFormat.getInstance());\n    }\n\n    public NumberSpinner(Integer value, Integer stepWidth, NumberFormat nf) {\n        super();\n        this.setId(NUMBER_SPINNER);\n        this.stepWitdhProperty.set(stepWidth);\n\n        // TextField\n        numberField = new NumberTextField(value, nf);\n        numberField.setId(NUMBER_FIELD);\n\n        // Enable arrow keys for dec/inc\n        numberField.addEventFilter(KeyEvent.KEY_PRESSED, new EventHandler<KeyEvent>() {\n            @Override\n            public void handle(KeyEvent keyEvent) {\n                if(keyEvent.getCode() == KeyCode.DOWN) {\n                    decrement();\n                    keyEvent.consume();\n                }\n                if(keyEvent.getCode() == KeyCode.UP) {\n                    increment();\n                    keyEvent.consume();\n                }\n            }\n        });\n\n        // Painting the up and down arrows\n        Path arrowUp = new Path();\n        arrowUp.setId(ARROW);\n        arrowUp.getElements().addAll(new MoveTo(-ARROW_SIZE, 0), new LineTo(ARROW_SIZE, 0),\n                new LineTo(0, -ARROW_SIZE), new LineTo(-ARROW_SIZE, 0));\n        // mouse clicks should be forwarded to the underlying button\n        arrowUp.setMouseTransparent(true);\n\n        Path arrowDown = new Path();\n        arrowDown.setId(ARROW);\n        arrowDown.getElements().addAll(new MoveTo(-ARROW_SIZE, 0), new LineTo(ARROW_SIZE, 0),\n                new LineTo(0, ARROW_SIZE), new LineTo(-ARROW_SIZE, 0));\n        arrowDown.setMouseTransparent(true);\n\n        // the spinner buttons scale with the textfield size\n        // TODO: the following approach leads to the desired result, but it is \n        // not fully understood why and obviously it is not quite elegant\n        buttonHeight = numberField.heightProperty().subtract(3).divide(2);\n        // give unused space in the buttons VBox to the incrementBUtton\n        spacing = numberField.heightProperty().subtract(2).subtract(buttonHeight.multiply(2));\n\n        // inc/dec buttons\n        VBox buttons = new VBox();\n        buttons.setId(BUTTONS_BOX);\n        incrementButton = new Button();\n        incrementButton.setId(SPINNER_BUTTON_UP);\n//        incrementButton.prefWidthProperty().bind(numberField.heightProperty());\n//        incrementButton.minWidthProperty().bind(numberField.heightProperty());\n        incrementButton.maxHeightProperty().bind(buttonHeight.add(spacing));\n        incrementButton.prefHeightProperty().bind(buttonHeight.add(spacing));\n        incrementButton.minHeightProperty().bind(buttonHeight.add(spacing));\n        incrementButton.setFocusTraversable(false);\n        incrementButton.setOnAction(new EventHandler<ActionEvent>() {\n            @Override\n            public void handle(ActionEvent ae) {\n                increment();\n                ae.consume();\n            }\n        });\n\n        // Paint arrow path on button using a StackPane\n        StackPane incPane = new StackPane();\n        incPane.getChildren().addAll(incrementButton, arrowUp);\n        incPane.setAlignment(Pos.CENTER);\n\n        decrementButton = new Button();\n        decrementButton.setId(SPINNER_BUTTON_DOWN);\n//        decrementButton.prefWidthProperty().bind(numberField.heightProperty());\n//        decrementButton.minWidthProperty().bind(numberField.heightProperty());\n        decrementButton.maxHeightProperty().bind(buttonHeight);\n        decrementButton.prefHeightProperty().bind(buttonHeight);\n        decrementButton.minHeightProperty().bind(buttonHeight);\n\n        decrementButton.setFocusTraversable(false);\n        decrementButton.setOnAction(new EventHandler<ActionEvent>() {\n            @Override\n            public void handle(ActionEvent ae) {\n                decrement();\n                ae.consume();\n            }\n        });\n\n        StackPane decPane = new StackPane();\n        decPane.getChildren().addAll(decrementButton, arrowDown);\n        decPane.setAlignment(Pos.CENTER);\n\n        buttons.getChildren().addAll(incPane, decPane);\n        getChildren().addAll(numberField, buttons);\n        setPrefWidth(60);\n    }\n\n    /**\n     * increment number value by stepWidth\n     */\n    private void increment() {\n        Integer value = numberField.getNumber();\n        value += stepWitdhProperty.get();\n        numberField.setNumber(value);\n    }\n\n    /**\n     * decrement number value by stepWidth\n     */\n    private void decrement() {\n        Integer value = numberField.getNumber();\n        value -= stepWitdhProperty.get();\n        if(value < 0) {\n            value = 0;\n        }\n        numberField.setNumber(value);\n    }\n\n    public final void setNumber(Integer value) {\n        numberField.setNumber(value);\n    }\n\n    public ObjectProperty<Integer> numberProperty() {\n        return numberField.numberProperty();\n    }\n\n    public final Integer getNumber() {\n        return numberField.getNumber();\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/widgets/NumberTextField.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.widgets;\n\nimport java.text.NumberFormat;\nimport java.text.ParseException;\nimport javafx.beans.property.ObjectProperty;\nimport javafx.beans.property.SimpleObjectProperty;\nimport javafx.beans.value.ChangeListener;\nimport javafx.beans.value.ObservableValue;\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport javafx.scene.control.TextField;\n\n/**\n * Textfield implementation that accepts formatted number and stores them in a\n * BigDecimal property The user input is formatted when the focus is lost or the\n * user hits RETURN.\n * <p/>\n * @author Thomas Bolz\n */\npublic class NumberTextField extends TextField {\n\n    private final NumberFormat nf;\n    private ObjectProperty<Integer> number = new SimpleObjectProperty<>();\n\n    public final Integer getNumber() {\n        return number.get();\n    }\n\n    public final void setNumber(Integer value) {\n        number.set(value);\n    }\n\n    public ObjectProperty<Integer> numberProperty() {\n        return number;\n    }\n\n    public NumberTextField() {\n        this(0);\n    }\n\n    public NumberTextField(Integer value) {\n        this(value, NumberFormat.getInstance());\n        initHandlers();\n    }\n\n    public NumberTextField(Integer value, NumberFormat nf) {\n        this.nf = nf;\n        initHandlers();\n        setNumber(value);\n        setPrefWidth(45);\n    }\n\n    private void initHandlers() {\n\n        // try to parse when focus is lost or RETURN is hit\n        setOnAction(new EventHandler<ActionEvent>() {\n            @Override\n            public void handle(ActionEvent arg0) {\n                parseAndFormatInput();\n            }\n        });\n\n        focusedProperty().addListener(new ChangeListener<Boolean>() {\n            @Override\n            public void changed(ObservableValue<? extends Boolean> observable, Boolean oldValue, Boolean newValue) {\n                if(!newValue) {\n                    parseAndFormatInput();\n                }\n            }\n        });\n\n        // Set text in field if Integer property is changed from outside.\n        numberProperty().addListener(new ChangeListener<Integer>() {\n            @Override\n            public void changed(ObservableValue<? extends Integer> obserable, Integer oldValue, Integer newValue) {\n                setText(nf.format(newValue));\n            }\n        });\n    }\n\n    /**\n     * Tries to parse the user input to a number according to the provided\n     * NumberFormat\n     */\n    private void parseAndFormatInput() {\n        try {\n            String input = getText();\n            if(input == null || input.length() == 0) {\n                return;\n            }\n            Number parsedNumber = nf.parse(input);\n            Integer newValue = Integer.valueOf(parsedNumber.toString());\n            setNumber(newValue);\n            selectAll();\n        }\n        catch(ParseException ex) {\n            // If parsing fails keep old number\n            setText(nf.format(number.get()));\n        }\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/widgets/TestImage.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.widgets;\n\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.layout.StackPane;\n\n/**\n * The test image pane - on a separate stack pane with its background colour set\n * so we don't see any content behind the panel when its aspect ratio doesn't\n * line up exactly with the display canvas size!\n * <p>\n *\n * @author Michael\n */\npublic class TestImage extends StackPane {\n\n    private final ImageView testImageView;\n\n    /**\n     * Create a new test image\n     */\n    public TestImage() {\n        testImageView = new ImageView();\n        testImageView.setSmooth(true);\n        setStyle(\"-fx-background-color:#000000;\");\n        getChildren().add(testImageView);\n    }\n\n    /**\n     * Set the image used on this pane.\n     * @param testImage the image.\n     */\n    public void setImage(Image testImage) {\n        testImageView.setImage(testImage);\n    }\n\n    public ImageView getImageView() {\n        return testImageView;\n    }\n    \n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/widgets/TestPaneDialog.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.widgets;\n\nimport java.util.ArrayList;\nimport java.util.List;\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport javafx.geometry.Insets;\nimport javafx.scene.Scene;\nimport javafx.scene.control.Button;\nimport javafx.scene.control.Label;\nimport javafx.scene.effect.DropShadow;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.input.MouseEvent;\nimport javafx.scene.layout.BorderPane;\nimport javafx.scene.layout.GridPane;\nimport javafx.scene.layout.StackPane;\nimport javafx.scene.paint.Color;\nimport javafx.stage.Modality;\nimport javafx.stage.Stage;\nimport javafx.stage.WindowEvent;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.ImageManager;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.QueleaApp;\n\n/**\n * A dialog showing the available test patterns that can be projected on the\n * displays.\n * <p>\n * @author Michael\n */\npublic class TestPaneDialog extends Stage {\n\n    List<ImageView> ivs = new ArrayList<>();\n\n    /**\n     * Create a new test pane dialog.\n     */\n    public TestPaneDialog() {\n        initModality(Modality.APPLICATION_MODAL);\n        setTitle(LabelGrabber.INSTANCE.getLabel(\"test.patterns.text\"));\n        Utils.addIconsToStage(this);\n        setOnShowing(new EventHandler<WindowEvent>() {\n\n            @Override\n            public void handle(WindowEvent t) {\n                for(ImageView iv : ivs) {\n                    iv.setEffect(null);\n                }\n            }\n        });\n        setOnHiding(new EventHandler<WindowEvent>() {\n\n            @Override\n            public void handle(WindowEvent t) {\n                clearTestImage();\n            }\n        });\n\n        BorderPane root = new BorderPane();\n        if (!QueleaProperties.get().getUseDarkTheme()) {\n            root.setStyle(\"-fx-background-color:#dddddd;\");\n        }\n        Label explanation = new Label(LabelGrabber.INSTANCE.getLabel(\"test.patterns.explanation\"));\n        explanation.setWrapText(true);\n        BorderPane.setMargin(explanation, new Insets(20));\n        root.setTop(explanation);\n\n        GridPane centrePane = new GridPane();\n        centrePane.setPadding(new Insets(20));\n        centrePane.setHgap(30);\n        centrePane.setVgap(30);\n\n        centrePane.add(getTestView(\"file:icons/SMPTE Bars.png\", false), 0, 0);\n        centrePane.add(getTestView(\"file:icons/position calibrate.png\", false), 0, 1);\n        centrePane.add(getTestView(\"file:icons/square wedges.png\", true), 1, 0);\n        centrePane.add(getTestView(\"file:icons/colorbands.png\", false), 1, 1);\n        root.setCenter(centrePane);\n\n        StackPane bottomPane = new StackPane();\n        Button closeButton = new Button(LabelGrabber.INSTANCE.getLabel(\"help.about.close\"), new ImageView(new Image(\"file:icons/tick.png\")));\n        closeButton.setOnAction(new EventHandler<ActionEvent>() {\n\n            @Override\n            public void handle(ActionEvent t) {\n                hide();\n            }\n        });\n        StackPane.setMargin(closeButton, new Insets(10));\n        bottomPane.getChildren().add(closeButton);\n        root.setBottom(bottomPane);\n\n        Scene scene = new Scene(root);\n        if (QueleaProperties.get().getUseDarkTheme()) {\n            scene.getStylesheets().add(\"org/modena_dark.css\");\n        }\n        setScene(scene);\n    }\n\n    private void clearTestImage() {\n        setTestImage(null, false);\n    }\n\n    private void setTestImage(String uri, boolean preserveAspect) {\n        Image img;\n        if(uri==null) {\n            img = null;\n        }\n        else {\n            img = ImageManager.INSTANCE.getImage(uri);\n        }\n        QueleaApp.get().getProjectionWindow().setTestImage(img, preserveAspect);\n        QueleaApp.get().getStageWindow().setTestImage(img, preserveAspect);\n    }\n\n    private ImageView getTestView(final String uri, final boolean preserveAspect) {\n        final ImageView iv = new ImageView(ImageManager.INSTANCE.getImage(uri, 385, 216, false));\n        iv.setOnMouseClicked(new EventHandler<MouseEvent>() {\n\n            @Override\n            public void handle(MouseEvent t) {\n                for(ImageView iv : ivs) {\n                    iv.setEffect(null);\n                }\n                iv.setEffect(new DropShadow(20, Color.YELLOWGREEN));\n                setTestImage(uri, preserveAspect);\n            }\n        });\n        iv.setSmooth(true);\n        iv.setPreserveRatio(false);\n        iv.setFitWidth(385);\n        iv.setFitHeight(216);\n        ivs.add(iv);\n        return iv;\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/main/widgets/Timer.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n *\n * This program is free software: you can redistribute it and/or modify it under\n * the terms of the GNU General Public License as published by the Free Software\n * Foundation, either version 3 of the License, or (at your option) any later\n * version.\n *\n * This program is distributed in the hope that it will be useful, but WITHOUT\n * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\n * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License along with\n * this program. If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.main.widgets;\n\nimport javafx.animation.Animation;\nimport javafx.animation.KeyFrame;\nimport javafx.animation.Timeline;\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport javafx.geometry.Pos;\nimport javafx.scene.text.Font;\nimport javafx.scene.text.FontPosture;\nimport javafx.scene.text.FontWeight;\nimport javafx.scene.text.Text;\nimport javafx.scene.text.TextAlignment;\nimport javafx.util.Duration;\nimport org.quelea.data.ThemeDTO;\n\n/**\n * A simple JavaFX countdown timer.\n * <p>\n * @author Ben\n */\npublic class Timer extends Text {\n\n    private final int minutes;\n    private final int seconds;\n    private boolean paused;\n    private boolean reset;\n    private Timeline timeline;\n    private String pretext = \"\";\n    private String posttext = \"\";\n    private Pos textPosition;\n    private ThemeDTO theme;\n\n    public Timer(int seconds, String pretext, String posttext) {\n        this.minutes = seconds/60;\n        this.seconds = seconds % 60;\n        this.pretext = pretext;\n        this.posttext = posttext;\n        setText(pretext + (minutes > 9 ? \"\" : \"0\") + minutes + \":\" + (seconds > 9 ? \"\" : \"0\") + seconds + posttext);\n        bindToTime();\n        setOpacity(1);\n        paused = true;\n    }\n\n    private void bindToTime() {\n        int starttime = minutes * 60 + seconds;\n        setText(pretext + (minutes > 9 ? \"\" : \"0\") + minutes + \":\" + (seconds > 9 ? \"\" : \"0\") + seconds + posttext);\n        timeline = new Timeline(\n                new KeyFrame(Duration.seconds(1),\n                        new EventHandler<ActionEvent>() {\n                            private int count = 0;\n\n                            @Override\n                            public void handle(ActionEvent actionEvent) {\n                                if (!paused) {\n                                    count++;\n                                }\n                                if (reset) {\n                                    count = 0;\n                                    reset = false;\n                                }\n                                int remaining = starttime - count;\n                                if (remaining >= 0) {\n                                    setText(pretext + ((remaining / 60) > 9 ? \"\" : \"0\") + (int) Math.floor(remaining / 60) + \":\" + ((remaining % 60) > 9 ? \"\" : \"0\") + remaining % 60 + posttext);\n                                }\n                            }\n                        }\n                )\n        );\n        timeline.setCycleCount(Animation.INDEFINITE);\n        timeline.play();\n    }\n\n    public void pause() {\n        paused = true;\n    }\n\n    public void play() {\n        if (timeline.getStatus() != Timeline.Status.RUNNING) {\n            setText(pretext + (minutes > 9 ? \"\" : \"0\") + minutes + \":\" + (seconds > 9 ? \"\" : \"0\") + seconds + posttext);\n            timeline.play();\n        }\n        paused = false;\n    }\n\n    public void reset() {\n        reset = true;\n    }\n    \n    public void stop() {\n        reset = true;\n        timeline.stop();\n        setText(\"\");\n    }\n\n    @Override\n    public String toString() {\n        return pretext + (minutes > 9 ? \"\" : \"0\") + minutes + \":\" + (seconds > 9 ? \"\" : \"0\") + seconds + posttext;\n    }\n\n    public void setTheme(ThemeDTO theme) {\n        this.theme = theme;\n        this.setEffect(theme.getShadow().getDropShadow());\n        this.setFont(theme.getFont());\n        this.setFill(theme.getFontPaint());\n        this.textPosition = DisplayPositionSelector.getPosFromIndex(theme.getTextPosition());\n        this.setTextAlignment(alignmentFromIndex(theme.getTextAlignment()));\n    }\n\n    public Pos getTextPosition() {\n        return textPosition;\n    }\n\n    public void setFontSize(double pickFontSize) {\n        setFont(Font.font(theme.getFont().getFamily(),\n                theme.isBold() ? FontWeight.BOLD : FontWeight.NORMAL,\n                theme.isItalic() ? FontPosture.ITALIC : FontPosture.REGULAR,\n                pickFontSize));\n\n    }\n\n    private TextAlignment alignmentFromIndex(int index) {\n        switch (index) {\n            case -1:\n                return TextAlignment.LEFT;\n            case 0:\n                return TextAlignment.CENTER;\n            case 1:\n                return TextAlignment.RIGHT;\n        }\n        return TextAlignment.CENTER;\n    }\n\n    public void synchronise(Timer timer) {\n        timer.reset();\n        this.reset();\n        timer.play();\n        this.play();\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/multimedia/MultimediaControls.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n * Copyright (C) 2012 Michael Berry\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.multimedia;\n\nimport java.io.File;\nimport java.util.EnumSet;\nimport java.util.Set;\nimport java.util.concurrent.Executors;\nimport java.util.concurrent.ScheduledExecutorService;\nimport java.util.concurrent.TimeUnit;\nimport java.util.function.Consumer;\n\nimport javafx.application.Platform;\nimport javafx.beans.value.ChangeListener;\nimport javafx.beans.value.ObservableValue;\nimport javafx.event.EventHandler;\nimport javafx.geometry.Orientation;\nimport javafx.geometry.Pos;\nimport javafx.scene.control.Label;\nimport javafx.scene.control.Slider;\nimport javafx.scene.control.Tooltip;\nimport javafx.scene.effect.DropShadow;\nimport javafx.scene.effect.Glow;\nimport javafx.scene.effect.Reflection;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.input.MouseEvent;\nimport javafx.scene.layout.Background;\nimport javafx.scene.layout.StackPane;\nimport javafx.scene.paint.Color;\nimport javafx.scene.paint.CycleMethod;\nimport javafx.scene.paint.LinearGradient;\nimport javafx.scene.paint.Stop;\nimport javafx.scene.shape.Rectangle;\nimport org.freedesktop.gstreamer.Format;\nimport org.freedesktop.gstreamer.elements.PlayBin;\nimport org.freedesktop.gstreamer.event.SeekFlags;\nimport org.freedesktop.gstreamer.fx.FXImageSink;\nimport org.quelea.data.GlobalThemeStore;\nimport org.quelea.data.ThemeDTO;\nimport org.quelea.data.displayable.TextDisplayable;\nimport org.quelea.data.displayable.TextSection;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.DisplayCanvas;\nimport org.quelea.windows.main.LivePanel;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.windows.main.WordDrawer;\n\n/**\n * The multimedia controls containing a play / pause button, stop button, and a\n * position slider on a gradient background.\n * <p/>\n *\n * @author Michael\n */\npublic class MultimediaControls extends StackPane {\n\n    private static final int SLIDER_UPDATE_RATE = 100;\n    private static final Image PLAY_IMAGE = new Image(\"file:icons/play.png\");\n    private static final Image PAUSE_IMAGE = new Image(\"file:icons/pause.png\");\n    private static final Image STOP_IMAGE = new Image(\"file:icons/stop.png\");\n    private static final Image LOOP_IMAGE_ON = new Image(\"file:icons/loop_on.png\");\n    private static final Image LOOP_IMAGE_OFF = new Image(\"file:icons/loop_off.png\");\n    private static final Image PLAY_IMAGE_DISABLE = new Image(\"file:icons/playdisable.png\");\n    private static final Image PAUSE_IMAGE_DISABLE = new Image(\"file:icons/pausedisable.png\");\n    private static final Image STOP_IMAGE_DISABLE = new Image(\"file:icons/stopdisable.png\");\n    private static final Image VOLUME = new Image(\"file:icons/volume.png\");\n    private boolean playpause;\n    private ImageView playButton;\n    private ImageView stopButton;\n    private ImageView loopButton;\n    private Slider posSlider;\n    private boolean disablePosSliderListener;\n    private boolean disableControls;\n    private Label elapsedTime;\n    private Label totalTime;\n    private Slider volSlider;\n    private int vol = 100;\n    private final ImageView muteButton;\n    private boolean looping;\n\n    private Runnable onPlay;\n    private Runnable onPause;\n    private Runnable onStop;\n    private Consumer<Double> onSeek;\n    private Consumer<Boolean> onLoopChanged;\n\n    private Consumer<Double> onVolumeChanged;\n\n    public MultimediaControls() {\n        Rectangle rect = new Rectangle(230, 100);\n        Stop[] stops = new Stop[]{new Stop(0, Color.BLACK), new Stop(1, Color.GREY)};\n        LinearGradient lg1 = new LinearGradient(0, 0, 1, 0, true, CycleMethod.NO_CYCLE, stops);\n        rect.setOpacity(0.8);\n        rect.setFill(lg1);\n        rect.setArcHeight(20);\n        rect.setArcWidth(20);\n        DropShadow ds = new DropShadow();\n        ds.setOffsetY(5.0);\n        ds.setOffsetX(5.0);\n        ds.setColor(Color.GRAY);\n        ds.setInput(new Reflection(5, 0.4, 0.3, 0));\n        rect.setEffect(ds);\n        getChildren().add(rect);\n\n        onPlay = () -> {\n        };\n        onVolumeChanged = v -> {\n        };\n        playButton = new ImageView(PLAY_IMAGE);\n        setButtonParams(playButton);\n        playButton.setTranslateX(-30);\n        getChildren().add(playButton);\n        playButton.setOnMouseClicked(t -> {\n            if (!disableControls) {\n                play();\n            }\n            volSlider.setVisible(false);\n        });\n\n        onPause = () -> {\n        };\n        onStop = () -> {\n        };\n        stopButton = new ImageView(STOP_IMAGE);\n        stopButton.setOnMouseClicked(t -> {\n            if (!disableControls) {\n                reset();\n            }\n            volSlider.setVisible(false);\n        });\n        setButtonParams(stopButton);\n        stopButton.setTranslateX(30);\n        getChildren().add(stopButton);\n\n        onSeek = d -> {\n        };\n        posSlider = new Slider(0, 1, 0);\n        posSlider.setDisable(true);\n        posSlider.valueProperty().addListener(o -> {\n            if (disablePosSliderListener) {\n                return;\n            }\n            if (posSlider.isValueChanging()) {\n                onSeek.accept(posSlider.getValue());\n            }\n        });\n        posSlider.setTranslateY(30);\n        posSlider.setPrefWidth(rect.getWidth() - 20);\n        posSlider.setMaxWidth(rect.getWidth() - 20);\n        getChildren().add(posSlider);\n\n        loopButton = new ImageView(LOOP_IMAGE_OFF);\n        Tooltip.install(loopButton, new Tooltip(LabelGrabber.INSTANCE.getLabel(\"video.loop.tooltip\")));\n        loopButton.setOnMouseClicked(e -> {\n            if (!disableControls) {\n                if (loopButton.getImage().equals(LOOP_IMAGE_OFF)) {\n                    loopButton.setImage(LOOP_IMAGE_ON);\n                    onLoopChanged.accept(true);\n                } else {\n                    loopButton.setImage(LOOP_IMAGE_OFF);\n                    onLoopChanged.accept(false);\n                }\n            }\n        });\n        setButtonParams(loopButton);\n        loopButton.setTranslateY(-35);\n        loopButton.setTranslateX(posSlider.getMaxWidth() - 110);\n        loopButton.setFitWidth(20);\n        getChildren().add(loopButton);\n\n        muteButton = new ImageView(VOLUME);\n        muteButton.setFitWidth(20);\n        muteButton.setPreserveRatio(true);\n\n        volSlider = new Slider(0, 1, 1);\n        volSlider.setMaxHeight(70);\n        volSlider.setVisible(false);\n        volSlider.setOrientation(Orientation.VERTICAL);\n        volSlider.valueProperty().addListener((ObservableValue<? extends Number> ov, Number t, Number t1) -> {\n            Double vol1 = volSlider.getValue();\n            vol = vol1.intValue();\n            onVolumeChanged.accept(vol1);\n        });\n        muteButton.setTranslateY(30);\n        muteButton.setTranslateX(posSlider.getMaxWidth() - 80);\n        getChildren().add(muteButton);\n        muteButton.setOnMouseClicked((MouseEvent t) -> {\n            if (!disableControls) {\n                Platform.runLater(() -> {\n                    volSlider.setVisible(!volSlider.isVisible());\n//                        volSlider.setValue(VLCWindow.INSTANCE.getVolume());\n                    volSlider.requestFocus();\n                });\n            }\n        });\n\n        volSlider.setTranslateX(muteButton.localToScene(0, 0).getX());\n        volSlider.setTranslateY(muteButton.localToScene(0, 0).getY() - 45);\n        getChildren().add(volSlider);\n\n        volSlider.focusedProperty().addListener((ObservableValue<? extends Boolean> observable, Boolean oldValue, Boolean newValue) -> {\n            if (!newValue) {\n                volSlider.setVisible(false);\n            }\n        });\n\n        elapsedTime = new Label();\n        elapsedTime.setPrefWidth(rect.getWidth() - 20);\n        elapsedTime.setMaxWidth(rect.getWidth() - 20);\n        elapsedTime.setBackground(Background.EMPTY);\n        elapsedTime.setTranslateY(40);\n        elapsedTime.setTextFill(Color.WHITE);\n        getChildren().add(elapsedTime);\n\n        totalTime = new Label();\n        totalTime.setPrefWidth(rect.getWidth() - 20);\n        totalTime.setMaxWidth(rect.getWidth() - 20);\n        totalTime.setBackground(Background.EMPTY);\n        totalTime.setTranslateY(40);\n        totalTime.setAlignment(Pos.BASELINE_RIGHT);\n        totalTime.setTextFill(Color.WHITE);\n        getChildren().add(totalTime);\n\n//        ScheduledExecutorService service = Executors.newSingleThreadScheduledExecutor();\n//        service.scheduleAtFixedRate(new Runnable() {\n//            @Override\n//            public void run() {\n//                if (!disableControls && VLCWindow.INSTANCE.isPlaying() && !posSlider.isValueChanging()) {\n//                    Platform.runLater(new Runnable() {\n//\n//                        @Override\n//                        public void run() {\n//                            posSlider.setValue(VLCWindow.INSTANCE.getProgressPercent());\n//                            if (VLCWindow.INSTANCE.getTotal() != 0) {\n//                                elapsedTime.setText(getTime(VLCWindow.INSTANCE.getTime()));\n//                                totalTime.setText(getTime(VLCWindow.INSTANCE.getTotal()));\n//                            }\n//                        }\n//                    });\n//                }\n//            }\n//        }, 0, SLIDER_UPDATE_RATE, TimeUnit.MILLISECONDS);\n\n//        ScheduledExecutorService update = Executors.newSingleThreadScheduledExecutor();\n//        update.scheduleAtFixedRate(new Runnable() {\n//            @Override\n//            public void run() {\n//                if (!disableControls && VLCWindow.INSTANCE.isPlaying() && !volSlider.isValueChanging()) {\n//                    Platform.runLater(new Runnable() {\n//                        @Override\n//                        public void run() {\n//                            volSlider.setValue(VLCWindow.INSTANCE.getVolume());\n//                        }\n//                    });\n//                }\n//            }\n//        }, 0, 2000, TimeUnit.MILLISECONDS);\n//        VLCWindow.INSTANCE.setOnFinished(new Runnable() {\n//            @Override\n//            public void run() {\n//                if (getScene() != null && !disableControls && !looping) {\n//                    reset();\n//                }\n//            }\n//        });\n    }\n\n    public void loadMultimedia(String path) {\n        reset();\n        if (!path.trim().startsWith(\"http\") && !path.trim().startsWith(\"dvdsimple\") && !path.trim().startsWith(\"bluray\")) {\n            path = Utils.getVLCStringFromFile(new File(path));\n        }\n    }\n\n    public void setDisableControls(boolean disable) {\n        this.disableControls = disable;\n        if (disable) {\n            if (!playpause) {\n                playButton.setImage(PLAY_IMAGE_DISABLE);\n            } else {\n                playButton.setImage(PAUSE_IMAGE_DISABLE);\n            }\n            stopButton.setImage(STOP_IMAGE_DISABLE);\n        } else {\n            if (!playpause) {\n                playButton.setImage(PLAY_IMAGE);\n            } else {\n                playButton.setImage(PAUSE_IMAGE);\n            }\n            stopButton.setImage(STOP_IMAGE);\n        }\n    }\n\n    public void setOnPlay(Runnable onPlay) {\n        this.onPlay = onPlay;\n    }\n\n    public void setOnPause(Runnable onPause) {\n        this.onPause = onPause;\n    }\n\n    public void setOnStop(Runnable onStop) {\n        this.onStop = onStop;\n    }\n\n    public void setOnSeek(Consumer<Double> onSeek) {\n        this.onSeek = onSeek;\n    }\n\n    public void setOnLoopChanged(Consumer<Boolean> onLoopChanged) {\n        this.onLoopChanged = onLoopChanged;\n    }\n\n    public void setOnVolumeChanged(Consumer<Double> onVolumeChanged) {\n        this.onVolumeChanged = onVolumeChanged;\n    }\n\n    public void setPosition(double pos) {\n        if (!posSlider.isValueChanging()) {\n            posSlider.setValue(pos);\n        }\n    }\n\n    public void play() {\n        playpause = !playpause;\n        if (playpause) {\n            playButton.setImage(PAUSE_IMAGE);\n\n//            VLCWindow.INSTANCE.setRepeat(looping);\n//            VLCWindow.INSTANCE.play();\n\n            posSlider.setDisable(false);\n            muteButton.setDisable(false);\n            LivePanel lp = QueleaApp.get().getMainWindow().getMainPanel().getLivePanel();\n            if (lp.getBlacked()) {\n                lp.clickBlacked();\n            }\n            if (lp.getLogoed()) {\n                lp.clickLogoed();\n            }\n            onPlay.run();\n        } else {\n            playButton.setImage(PLAY_IMAGE);\n            onPause.run();\n        }\n    }\n\n    public void reset() {\n        if (disableControls) {\n            playButton.setImage(PLAY_IMAGE_DISABLE);\n        } else {\n            playButton.setImage(PLAY_IMAGE);\n        }\n        playpause = false;\n        disablePosSliderListener = true;\n        posSlider.setValue(0);\n        posSlider.setDisable(true);\n        disablePosSliderListener = false;\n        muteButton.setDisable(true);\n        Platform.runLater(() -> {\n            elapsedTime.setText(\"\");\n            totalTime.setText(\"\");\n        });\n        onStop.run();\n    }\n\n    private void setButtonParams(final ImageView button) {\n        button.setOnMouseEntered(t -> {\n            if (!disableControls) {\n                button.setEffect(new Glow(0.5));\n            }\n        });\n        button.setOnMouseExited(new EventHandler<>() {\n            @Override\n            public void handle(MouseEvent t) {\n                button.setEffect(null);\n            }\n        });\n        button.setFitWidth(50);\n        button.setPreserveRatio(true);\n        button.setTranslateY(-10);\n    }\n\n    /**\n     * Method to get the elapsed time of the video\n     *\n     * @param elapsedTimeMillis Time elapsed\n     */\n    private String getTime(long elapsedTimeMillis) {\n        float elapsedTimeSec = elapsedTimeMillis / 1000F;\n        int hours = (int) elapsedTimeSec / 3600;\n        int minutes = (int) (elapsedTimeSec % 3600) / 60;\n        int seconds = (int) elapsedTimeSec % 60;\n        String time = String.format(\"%02d:%02d:%02d\", hours, minutes, seconds);\n        return time;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/multimedia/MultimediaDrawer.java",
    "content": "package org.quelea.windows.multimedia;\n\nimport javafx.scene.image.ImageView;\nimport org.freedesktop.gstreamer.fx.FXImageSink;\nimport org.quelea.data.displayable.Displayable;\nimport org.quelea.data.displayable.MultimediaDisplayable;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.DisplayableDrawer;\nimport org.quelea.windows.video.VidDisplay;\n\nimport java.io.File;\nimport java.net.URI;\nimport java.util.Objects;\n\n/**\n * @author tomaszpio@gmail.com, Michael\n */\npublic class MultimediaDrawer extends DisplayableDrawer {\n\n    private final MultimediaControls controlPanel;\n    private final VidDisplay vidDisplay;\n\n    public MultimediaDrawer(MultimediaControls controlPanel) {\n        this.controlPanel = controlPanel;\n        vidDisplay = new VidDisplay();\n    }\n\n    @Override\n    public void draw(Displayable displayable) {\n        MultimediaDisplayable multimediaDisplayable = (MultimediaDisplayable) displayable;\n        URI uri = new File(multimediaDisplayable.getLocation()).toURI();\n\n        ImageView imageView = getCanvas().getNewImageView();\n        imageView.imageProperty().bind(vidDisplay.imageProperty());\n        imageView.setPreserveRatio(true);\n        getCanvas().getChildren().add(0, imageView);\n\n        ImageView background = getCanvas().getNewImageView();\n        background.setImage(Utils.getImageFromColour(QueleaProperties.get().getStageBackgroundColor()));\n        getCanvas().getChildren().add(0, background);\n\n        if(!Objects.equals(vidDisplay.getUri(), uri)) {\n            controlPanel.reset();\n            vidDisplay.setURI(uri);\n            controlPanel.loadMultimedia(((MultimediaDisplayable) displayable).getLocation());\n            controlPanel.setOnPlay(vidDisplay::play);\n            controlPanel.setOnPause(vidDisplay::pause);\n            controlPanel.setOnStop(vidDisplay::stop);\n            controlPanel.setOnSeek(vidDisplay::seek);\n            controlPanel.setOnLoopChanged(vidDisplay::setLoop);\n            controlPanel.setOnVolumeChanged(vidDisplay::setVolume);\n\n            vidDisplay.setOnPosChanged(controlPanel::setPosition);\n            vidDisplay.setOnFinished(controlPanel::reset);\n        }\n\n    }\n\n    public void setPlayVideo() {\n        getCanvas().clearNonPermanentChildren();\n    }\n\n    @Override\n    public void clear() {\n    }\n\n    @Override\n    public void requestFocus() {\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/multimedia/MultimediaPanel.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.multimedia;\n\nimport javafx.geometry.Insets;\nimport javafx.geometry.Pos;\nimport javafx.scene.input.KeyCode;\nimport javafx.scene.input.KeyEvent;\nimport javafx.scene.layout.BorderPane;\nimport javafx.scene.layout.VBox;\nimport javafx.scene.paint.Color;\nimport javafx.scene.text.Font;\nimport javafx.scene.text.Text;\nimport org.quelea.data.displayable.MultimediaDisplayable;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.windows.main.AbstractPanel;\nimport org.quelea.windows.main.DisplayCanvas;\nimport org.quelea.windows.main.DisplayableDrawer;\nimport org.quelea.windows.main.MainPanel;\nimport org.quelea.windows.main.QueleaApp;\n\n/**\n * A panel used in the live / preview panels for playing audio.\n * <p/>\n * @author tomaszpio@gmail.com\n */\npublic class MultimediaPanel extends AbstractPanel {\n\n    private final MultimediaDrawer drawer;\n    private final MultimediaControls controlPanel;\n    private final Text previewText;\n    private MultimediaDisplayable displayable;\n    private boolean live = false;\n\n    /**\n     * Create a new image panel.\n     */\n    public MultimediaPanel() {\n        this.controlPanel = new MultimediaControls();\n        controlPanel.setDisableControls(false);\n        drawer = new MultimediaDrawer(controlPanel);\n        DisplayCanvas vidPreview = new DisplayCanvas(false, this::updateCanvas, DisplayCanvas.Priority.LOW);\n        registerDisplayCanvas(vidPreview);\n        BorderPane.setMargin(controlPanel, new Insets(30));\n        setCenter(controlPanel);\n        VBox centerBit = new VBox(5);\n        centerBit.setAlignment(Pos.CENTER);\n        previewText = new Text();\n        previewText.setFont(Font.font(\"Verdana\", 20));\n        previewText.setFill(Color.WHITE);\n        BorderPane.setMargin(centerBit, new Insets(10));\n        centerBit.getChildren().add(previewText);\n        vidPreview.prefHeightProperty().bind(heightProperty().subtract(200));\n        vidPreview.prefWidthProperty().bind(widthProperty().subtract(20));\n        centerBit.getChildren().add(vidPreview);\n        setBottom(centerBit);\n        setMinWidth(50);\n        setMinHeight(50);\n        setStyle(\"-fx-background-color:grey;\");\n        \n        addEventFilter(KeyEvent.KEY_PRESSED, (KeyEvent t) -> {\n            if (t.getCode().equals(KeyCode.PAGE_DOWN) || t.getCode().equals(KeyCode.DOWN)) {\n                t.consume();\n                QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().advance();\n            } else if (t.getCode().equals(KeyCode.PAGE_UP) || t.getCode().equals(KeyCode.UP)) {\n                t.consume();\n                QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().previous();\n            }\n        });\n    }\n\n    @Override\n    public void updateCanvas() {\n        MultimediaDisplayable displayable = (MultimediaDisplayable) getCurrentDisplayable();\n        previewText.setText(displayable.getName());\n        for (DisplayCanvas canvas : getCanvases()) {\n            drawer.setCanvas(canvas);\n            drawer.setPlayVideo();\n            drawer.draw(displayable);\n        }\n    }\n\n    public void play() {\n        controlPanel.play();\n    }\n\n    @Override\n    public int getCurrentIndex() {\n        return 0;\n    }\n\n    @Override\n    public DisplayableDrawer getDrawer(DisplayCanvas canvas) {\n        drawer.setCanvas(canvas);\n        return drawer;\n    }\n\n    /**\n     * Advances the current slide.\n     * <p/>\n     */\n    public void advance() {\n        MainPanel qmp = QueleaApp.get().getMainWindow().getMainPanel();\n        boolean lastItemTest = qmp.getLivePanel().getDisplayable() == qmp.getSchedulePanel().getScheduleList().getItems().get(qmp.getSchedulePanel().getScheduleList().getItems().size() - 1).displayable();\n        if (QueleaProperties.get().getAdvanceOnLive() && QueleaProperties.get().getSongOverflow() && !lastItemTest) {\n            qmp.getPreviewPanel().goLive();\n        }\n    }\n\n    /**\n     * Moves to the previous slide.\n     * <p/>\n     */\n    public void previous() {\n        MainPanel qmp = QueleaApp.get().getMainWindow().getMainPanel();\n        boolean firstItemTest = qmp.getSchedulePanel().getScheduleList().getItems().get(0).displayable() == qmp.getLivePanel().getDisplayable();\n        if (QueleaProperties.get().getAdvanceOnLive() && QueleaProperties.get().getSongOverflow() && !firstItemTest) {\n            //Assuming preview panel is one ahead, and should be one behind\n            int index = qmp.getSchedulePanel().getScheduleList().getSelectionModel().getSelectedIndex();\n            if (qmp.getLivePanel().getDisplayable() == qmp.getSchedulePanel().getScheduleList().getItems().get(qmp.getSchedulePanel().getScheduleList().getItems().size() - 1).displayable()) {\n                index -= 1;\n            } else {\n                index -= 2;\n            }\n            if (index >= 0) {\n                qmp.getSchedulePanel().getScheduleList().getSelectionModel().clearAndSelect(index);\n                qmp.getPreviewPanel().selectLastLyric();\n                qmp.getPreviewPanel().goLive();\n            }\n        }\n    }\n    \n    \n    /**\n     * Set the displayable to be on this presentation panel.\n     * <p/>\n     * @param displayable the presentation displayable to display.\n     * @param index the index to display.\n     */\n    public void showDisplayable(final MultimediaDisplayable displayable, final int index) {\n        if (this.displayable == displayable) {\n            return;\n        }\n        this.displayable = displayable;\n        if (displayable == null) {\n            return;\n        }\n        \n        super.showDisplayable(displayable);\n    }\n    \n    public void stopCurrent() {\n        if (live && displayable != null) {\n            displayable = null;\n        }\n    }\n    \n    /**\n     * Let this panel know it is live and should update accordingly.\n     */\n    public void setLive() {\n        live = true;\n    }\n    \n    /**\n     * Clear the panel and all canvases associated with it.\n     */\n    @Override\n    public void removeCurrentDisplayable() {\n        controlPanel.reset();\n        super.removeCurrentDisplayable();\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/multimedia/RecordingEncoder.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\n\npackage org.quelea.windows.multimedia;\n\nimport java.io.IOException;\nimport java.nio.file.DirectoryNotEmptyException;\nimport java.nio.file.Files;\nimport java.nio.file.NoSuchFileException;\nimport java.nio.file.Path;\nimport java.nio.file.Paths;\nimport javafx.application.Platform;\nimport javax.swing.JFrame;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.windows.main.StatusPanel;\n\n/**\n * Class for setting up a new instance of VLC in the background\n * and converting a file.\n * \n * @author Arvid\n */\npublic class RecordingEncoder {\n\n    private final JFrame ourFrame = new JFrame();\n    private String mediaPath = \"\";\n    private final String[] options;\n    private StatusPanel statusPanel;\n    private boolean converting;\n\n    public RecordingEncoder(String mediaUrl, String[] options) {\n        this.options = options;\n        this.mediaPath = mediaUrl;\n        ourFrame.setSize(1, 1);\n        ourFrame.setVisible(true);\n        ourFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);\n    }\n\n    public void run() {\n        // Start converting\n        // Hide the VLC window\n        ourFrame.setVisible(false);\n        ourFrame.dispose();\n        // Start loading panel\n        Platform.runLater(() -> {\n            statusPanel = QueleaApp.get().getStatusGroup().addPanel(LabelGrabber.INSTANCE.getLabel(\"converting.to.mp3\"));\n        });\n        converting = true;\n    }\n\n    /**\n     * @return the converting\n     */\n    public boolean isConverting() {\n        return converting;\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/newsong/BasicSongPanel.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify it under\n * the terms of the GNU General Public License as published by the Free Software\n * Foundation, either version 3 of the License, or (at your option) any later\n * version.\n *\n * This program is distributed in the hope that it will be useful, but WITHOUT\n * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\n * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License along with\n * this program. If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.newsong;\n\nimport java.util.logging.Logger;\n\nimport javafx.application.Platform;\nimport javafx.beans.value.ChangeListener;\nimport javafx.beans.value.ObservableValue;\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport javafx.scene.control.Button;\nimport javafx.scene.control.ComboBox;\nimport javafx.scene.control.Label;\nimport javafx.scene.control.MenuItem;\nimport javafx.scene.control.Separator;\nimport javafx.scene.control.SplitMenuButton;\nimport javafx.scene.control.TextField;\nimport javafx.scene.control.ToolBar;\nimport javafx.scene.control.Tooltip;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.input.MouseEvent;\nimport javafx.scene.layout.BorderPane;\nimport javafx.scene.layout.GridPane;\nimport javafx.scene.layout.HBox;\nimport javafx.scene.layout.Priority;\nimport javafx.scene.layout.Region;\nimport javafx.scene.layout.VBox;\nimport org.javafx.dialog.Dialog;\nimport org.quelea.data.chord.ChordLineTransposer;\nimport org.quelea.data.chord.ChordTransposer;\nimport org.quelea.data.chord.TransposeDialog;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.languages.spelling.Dictionary;\nimport org.quelea.services.languages.spelling.DictionaryManager;\nimport org.quelea.services.languages.spelling.SpellTextArea;\nimport org.quelea.services.utils.LineTypeChecker;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.lyrics.InputMethodRequestsObject;\nimport org.quelea.windows.lyrics.LyricsTextArea;\nimport org.quelea.windows.main.QueleaApp;\n\n/**\n * The panel that manages the basic input of song information - the title,\n * author, lyrics and sequence.\n * <p/>\n *\n * @author Michael\n */\npublic class BasicSongPanel extends BorderPane {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    private final SpellTextArea lyricsArea;\n    private final TextField titleField;\n    private final TextField authorField;\n    private final Button transposeButton;\n    private final Button nonBreakingLineButton;\n    private final Button chorusButton;\n    private final Button bridgeButton;\n    private final Button preChorusButton;\n    private final Button tagButton;\n    private final SplitMenuButton verseButton;\n    private final ComboBox<Dictionary> dictSelector;\n    private final TransposeDialog transposeDialog;\n    private String saveHash = \"\";\n    private final TextField sequenceField;\n    private final Button sequenceButton;\n    private boolean darkTheme = false;\n\n    /**\n     * Create and initialise the song panel.\n     */\n    public BasicSongPanel() {\n        darkTheme = QueleaProperties.get().getUseDarkTheme();\n        final VBox centrePanel = new VBox();\n        transposeDialog = new TransposeDialog();\n        GridPane topPanel = new GridPane();\n\n        titleField = new TextField();\n        GridPane.setHgrow(titleField, Priority.ALWAYS);\n        Label titleLabel = new Label(LabelGrabber.INSTANCE.getLabel(\"title.label\"));\n        GridPane.setConstraints(titleLabel, 1, 1);\n        topPanel.getChildren().add(titleLabel);\n        titleLabel.setLabelFor(titleField);\n        GridPane.setConstraints(titleField, 2, 1);\n        topPanel.getChildren().add(titleField);\n\n        authorField = new TextField();\n        GridPane.setHgrow(authorField, Priority.ALWAYS);\n        Label authorLabel = new Label(LabelGrabber.INSTANCE.getLabel(\"author.label\"));\n        GridPane.setConstraints(authorLabel, 1, 2);\n        topPanel.getChildren().add(authorLabel);\n        authorLabel.setLabelFor(authorField);\n        GridPane.setConstraints(authorField, 2, 2);\n        topPanel.getChildren().add(authorField);\n\n        centrePanel.getChildren().add(topPanel);\n        lyricsArea = new SpellTextArea();\n        lyricsArea.setMaxHeight(Double.MAX_VALUE);\n        lyricsArea.getArea().getTextArea().setInputMethodRequests(new InputMethodRequestsObject(lyricsArea.getArea().getTextArea()));\n        lyricsArea.getArea().getTextArea().setOnInputMethodTextChanged(e -> {\n            if (!e.getCommitted().equals(\"\")) {\n                lyricsArea.getArea().getTextArea().insertText(lyricsArea.getArea().getTextArea().getCaretPosition(), e.getCommitted());\n            }\n        });\n\n        sequenceField = new TextField();\n        sequenceButton = getSequenceButton();\n\n        final VBox mainPanel = new VBox();\n        ToolBar lyricsToolbar = new ToolBar();\n        transposeButton = getTransposeButton();\n        nonBreakingLineButton = getNonBreakingLineButton();\n        lyricsToolbar.getItems().add(transposeButton);\n        lyricsToolbar.getItems().add(nonBreakingLineButton);\n\n        chorusButton = getTitleButton(\"chorus.png\", \"chorus.tooltip\", \"Chorus\");\n        preChorusButton = getTitleButton(\"pre_chorus.png\", \"prechorus.tooltip\", \"Pre-chorus\");\n        bridgeButton = getTitleButton(\"bridge.png\", \"bridge.tooltip\", \"Bridge\");\n        tagButton = getTitleButton(\"tag_coda.png\", \"tag.tooltip\", \"Tag\");\n        verseButton = getVerseButton();\n        lyricsToolbar.getItems().add(new Separator());\n        lyricsToolbar.getItems().add(chorusButton);\n        lyricsToolbar.getItems().add(preChorusButton);\n        lyricsToolbar.getItems().add(bridgeButton);\n        lyricsToolbar.getItems().add(tagButton);\n        lyricsToolbar.getItems().add(verseButton);\n\n        Region spacer = new Region();\n        HBox.setHgrow(spacer, Priority.ALWAYS);\n        lyricsToolbar.getItems().add(spacer);\n        if (QueleaProperties.get().isDictionaryEnabled()) {\n            dictSelector = new ComboBox<>();\n            Tooltip.install(dictSelector, new Tooltip(LabelGrabber.INSTANCE.getLabel(\"dictionary.language.text\")));\n            for (Dictionary dict : DictionaryManager.INSTANCE.getDictionaries()) {\n                dictSelector.getItems().add(dict);\n            }\n            dictSelector.selectionModelProperty().get().selectedItemProperty().addListener((ov, t, t1) -> lyricsArea.setDictionary(dictSelector.getValue()));\n\n            dictSelector.getSelectionModel().select(QueleaProperties.get().getDictionary());\n            lyricsToolbar.getItems().add(dictSelector);\n            lyricsToolbar.getItems().add(getDictButton());\n        } else {\n            dictSelector = null;\n        }\n        VBox.setVgrow(mainPanel, Priority.ALWAYS);\n        mainPanel.getChildren().add(lyricsToolbar);\n        VBox.setVgrow(lyricsArea, Priority.ALWAYS);\n        mainPanel.getChildren().add(lyricsArea);\n\n        GridPane formPanel = new GridPane();\n        formPanel.setHgap(5);\n        GridPane.setHgrow(sequenceField, Priority.ALWAYS);\n        Label label = new Label(LabelGrabber.INSTANCE.getLabel(\"song.sequence\"));\n        label.setLabelFor(sequenceField);\n        GridPane.setConstraints(label, 1, 1);\n        GridPane.setConstraints(sequenceField, 2, 1);\n        GridPane.setConstraints(sequenceButton, 3, 1);\n        formPanel.getChildren().add(label);\n        formPanel.getChildren().add(sequenceField);\n        formPanel.getChildren().add(sequenceButton);\n\n        mainPanel.getChildren().add(formPanel);\n\n        centrePanel.getChildren().add(mainPanel);\n        setCenter(centrePanel);\n    }\n\n    public void resetSaveHash() {\n        saveHash = getSaveHash();\n    }\n\n    public boolean hashChanged() {\n        return !getSaveHash().equals(saveHash);\n    }\n\n    private String getSaveHash() {\n        return \"\" + lyricsArea.getText().hashCode() + titleField.getText().hashCode() + authorField.getText().hashCode() + sequenceField.getText().hashCode();\n    }\n\n    private Button getNonBreakingLineButton() {\n        Button ret = new Button(\"\", new ImageView(new Image(\"file:icons/nonbreakline.png\", 24, 24, false, true)));\n        Utils.setToolbarButtonStyle(ret);\n        ret.setTooltip(new Tooltip(LabelGrabber.INSTANCE.getLabel(\"nonbreak.tooltip\")));\n        ret.setOnAction((event) -> {\n            int caretPos = lyricsArea.getArea().getTextArea().getCaretPosition();\n            String[] parts = lyricsArea.getTextAndChords().split(\"\\n\");\n            int lineIndex = lineFromPos(lyricsArea.getTextAndChords(), caretPos);\n            String line = parts[lineIndex];\n            if (line.trim().isEmpty()) {\n                Platform.runLater(() -> {\n                    lyricsArea.getArea().getTextArea().replaceText(caretPos, caretPos, \"<>\");\n                    lyricsArea.getArea().refreshStyle();\n                });\n            } else {\n                int nextLinePos = nextLinePos(lyricsArea.getTextAndChords(), caretPos);\n                if (nextLinePos >= lyricsArea.getTextAndChords().length()) {\n                    Platform.runLater(() -> {\n                        lyricsArea.getArea().getTextArea().replaceText(nextLinePos, nextLinePos, \"\\n<>\\n\");\n                        lyricsArea.getArea().refreshStyle();\n                    });\n                } else {\n                    Platform.runLater(() -> {\n                        lyricsArea.getArea().getTextArea().replaceText(nextLinePos, nextLinePos, \"<>\\n\");\n                        lyricsArea.getArea().refreshStyle();\n                    });\n                }\n            }\n        });\n        return ret;\n    }\n\n    /**\n     * Get a title button\n     *\n     * @param fileName  Image file name\n     * @param label     Tooltip label\n     * @param titleName Title name to be inserted\n     * @return the title button\n     */\n    private Button getTitleButton(String fileName, String label, String titleName) {\n        if (darkTheme)\n            fileName = fileName.replace(\".png\", \"-light.png\");\n        Button ret = new Button(\"\", new ImageView(new Image(\"file:icons/\" + fileName, 24, 24, false, true)));\n        Utils.setToolbarButtonStyle(ret);\n        ret.setTooltip(new Tooltip(LabelGrabber.INSTANCE.getLabel(label)));\n        ret.setOnAction((event) -> insertTitle(titleName, \"\"));\n        getLyricsField().requestFocus();\n        return ret;\n    }\n\n    /**\n     * Get the sequence dialog button.\n     *\n     * @return the sequence button\n     */\n    private Button getSequenceButton() {\n        Button ret = new Button(\"\", new ImageView(new Image(\"file:icons/edit32.png\", 24, 24, false, true)));\n        ret.setTooltip(new Tooltip(LabelGrabber.INSTANCE.getLabel(\"open.sequence.editor.tooltip\")));\n        ret.setOnAction((event) -> {\n            SequenceSelectionDialog sequenceSelectionDialog = new SequenceSelectionDialog();\n            sequenceSelectionDialog.showAndWait();\n            if (sequenceSelectionDialog.isFinished()) {\n                StringBuilder sb = new StringBuilder();\n                for (String s : sequenceSelectionDialog.getChosenSequence()) {\n                    sb.append(s).append(\" \");\n                }\n                getSequenceField().setText(sb.toString().trim());\n            }\n        });\n        return ret;\n    }\n\n    private int nextLinePos(String s, int pos) {\n        if (pos == 0 || s.charAt(pos - 1) == '\\n') {\n            return pos;\n        }\n        while (s.charAt(pos) != '\\n' && pos <= s.length()) {\n            pos++;\n        }\n        return pos + 1;\n    }\n\n    private int lineFromPos(String s, int pos) {\n        int ret = 0;\n        for (int i = 0; i <= pos - 1; i++) {\n            if (s.charAt(i) == '\\n') {\n                ret++;\n            }\n        }\n        return ret;\n    }\n\n    /**\n     * Get the button used for transposing the chords.\n     * <p/>\n     *\n     * @return the button used for transposing the chords.\n     */\n    private Button getTransposeButton() {\n        Button ret = new Button(\"\", new ImageView(new Image(\"file:icons/transpose.png\", 24, 24, false, true)));\n        ret.setTooltip(new Tooltip(LabelGrabber.INSTANCE.getLabel(\"transpose.tooltip\")));\n        ret.setOnAction(t -> {\n            String originalKey = getKey(0);\n            if (originalKey == null) {\n                Dialog.showInfo(LabelGrabber.INSTANCE.getLabel(\"no.chords.title\"), LabelGrabber.INSTANCE.getLabel(\"no.chords.message\"));\n                return;\n            }\n            transposeDialog.setKey(originalKey);\n            transposeDialog.showAndWait();\n            int semitones = transposeDialog.getSemitones();\n\n            transposeSong(semitones);\n        });\n        Utils.setToolbarButtonStyle(ret);\n        return ret;\n    }\n\n    /**\n     * Get the given key of the song (or as best we can work out if it's not\n     * specified) transposed by the given number of semitones.\n     * <p/>\n     *\n     * @param semitones the number of semitones to transpose the key.\n     * @return the key, transposed.\n     */\n    private String getKey(int semitones) {\n        TextField keyField = QueleaApp.get().getMainWindow().getSongEntryWindow().getDetailedSongPanel().getKeyField();\n        String key = keyField.getText();\n        if (key == null || key.isEmpty()) {\n            for (String line : getLyricsField().getTextArea().getText().split(\"\\n\")) {\n                if (new LineTypeChecker(line).getLineType() == LineTypeChecker.Type.CHORDS) {\n                    String first;\n                    int i = 0;\n                    do {\n                        first = line.split(\"\\\\s+\")[i++];\n                    } while (first.isEmpty());\n                    key = new ChordTransposer(first).transpose(semitones, null);\n                    if (key.length() > 2) {\n                        key = key.substring(0, 2);\n                    }\n                    if (key.length() == 2) {\n                        if (key.charAt(1) == 'B') {\n                            key = Character.toString(key.charAt(0)) + \"b\";\n                        } else if (key.charAt(1) != 'b' && key.charAt(1) != '#') {\n                            key = Character.toString(key.charAt(0));\n                        }\n                    }\n                    break;\n                }\n            }\n        }\n\n        if (key == null || key.isEmpty()) {\n            key = null;\n        }\n        return key;\n    }\n\n    /**\n     * Get the spell checker button.\n     * <p/>\n     *\n     * @return the spell checker button.\n     */\n    private Button getDictButton() {\n        Button button = new Button(\"\", new ImageView(new Image(\"file:icons/dictionary.png\", 24, 24, false, true)));\n        button.setTooltip(new Tooltip(LabelGrabber.INSTANCE.getLabel(\"run.spellcheck.label\") + \" (F7)\"));\n        button.setOnAction(t -> lyricsArea.runSpellCheck());\n        button.disableProperty().bind(lyricsArea.spellingOkProperty());\n        Utils.setToolbarButtonStyle(button);\n        return button;\n    }\n\n    /**\n     * Reset this panel so new song data can be entered.\n     */\n    public void resetNewSong() {\n        getTitleField().clear();\n        getAuthorField().clear();\n        sequenceField.setText(\"\");\n        getLyricsField().getTextArea().replaceText(\"\");\n        getTitleField().requestFocus();\n        lyricsArea.clearUndo();\n    }\n\n    /**\n     * Reset this panel so an existing song can be edited.\n     * <p/>\n     *\n     * @param song the song to edit.\n     */\n    public void resetEditSong(SongDisplayable song) {\n        getTitleField().setText(song.getTitle());\n        getAuthorField().setText(song.getAuthor());\n        getLyricsField().getTextArea().clear();\n        getLyricsField().refreshStyle();\n        getLyricsField().getTextArea().insertText(0, song.getLyrics(true, true, false));\n        getLyricsField().refreshStyle();\n        getLyricsField().requestFocus();\n        lyricsArea.clearUndo();\n        sequenceField.setText(song.getSequence());\n    }\n\n    /**\n     * Get the lyrics field.\n     * <p/>\n     *\n     * @return the lyrics field.\n     */\n    public LyricsTextArea getLyricsField() {\n        return lyricsArea.getArea();\n    }\n\n    /**\n     * Get the title field.\n     * <p/>\n     *\n     * @return the title field.\n     */\n    public TextField getTitleField() {\n        return titleField;\n    }\n\n    /**\n     * Get the author field.\n     * <p/>\n     *\n     * @return the author field.\n     */\n    public TextField getAuthorField() {\n        return authorField;\n    }\n\n    /**\n     * Get the sequence field.\n     * <p/>\n     * @return the sequence field.\n     */\n    public TextField getSequenceField() {\n        return sequenceField;\n    }\n\n    /**\n     * Get the verse title button\n     *\n     * @return verse button\n     */\n    private SplitMenuButton getVerseButton() {\n        SplitMenuButton m = new SplitMenuButton();\n        m.setGraphic(new ImageView(new Image(darkTheme ? \"file:icons/verse-light.png\" : \"file:icons/verse.png\", 24, 24, false, true)));\n        m.setTooltip(new Tooltip(LabelGrabber.INSTANCE.getLabel(\"verse.tooltip\")));\n        m.setOnMouseClicked((MouseEvent event) -> insertTitle(\"Verse\", \"\"));\n        for (int i = 1; i < 10; i++) {\n            MenuItem mi = new MenuItem(\"\", new ImageView(new Image(darkTheme ? \"file:icons/verse\" + i + \"-light.png\" : \"file:icons/verse\" + i + \".png\", 24, 24, false, true)));\n            final int finalI = i;\n            mi.setOnAction((ActionEvent event) -> insertTitle(\"Verse\", Integer.toString(finalI)));\n            m.getItems().add(mi);\n        }\n        getLyricsField().requestFocus();\n        return m;\n    }\n\n    /**\n     * Insert a title in the lyrics\n     *\n     * @param title  The name of the section title, e.g. \"Chorus\"\n     * @param number The number of the title as a string, e.g. (Verse) \"2\", and\n     *               use \"\" if no number is wanted\n     */\n    private void insertTitle(String title, String number) {\n        int caretPos = lyricsArea.getArea().getTextArea().getCaretPosition();\n        String[] parts = lyricsArea.getTextAndChords().split(\"\\n\");\n        if (parts.length == 0) {\n            Platform.runLater(() -> {\n                lyricsArea.getArea().getTextArea().replaceText(0, 0, title + \" \" + number + \"\\n\");\n                lyricsArea.getArea().refreshStyle();\n            });\n        } else {\n            if (caretPos == lyricsArea.getTextAndChords().length() + 1) {\n                Platform.runLater(() -> {\n                    lyricsArea.getArea().getTextArea().replaceText(caretPos, caretPos, title + \" \" + number + \"\\n\");\n                    lyricsArea.getArea().refreshStyle();\n                });\n            } else {\n                int lineIndex = lineFromPos(lyricsArea.getTextAndChords(), caretPos);\n                String line = parts[lineIndex];\n                if (line.trim().isEmpty()) {\n                    Platform.runLater(() -> {\n                        lyricsArea.getArea().getTextArea().replaceText(caretPos, caretPos, \"\\n\" + title + \" \" + number);\n                        lyricsArea.getArea().refreshStyle();\n                    });\n                } else {\n                    int nextLinePos = nextLinePos(lyricsArea.getTextAndChords(), caretPos);\n                    if (nextLinePos >= lyricsArea.getTextAndChords().length()) {\n                        Platform.runLater(() -> {\n                            lyricsArea.getArea().getTextArea().replaceText(nextLinePos, nextLinePos, \"\\n\\n\" + title + \" \" + number + \"\\n\");\n                            lyricsArea.getArea().refreshStyle();\n                        });\n                    } else {\n                        Platform.runLater(() -> {\n                            lyricsArea.getArea().getTextArea().replaceText(nextLinePos, nextLinePos, title + \" \" + number + \"\\n\");\n                            lyricsArea.getArea().refreshStyle();\n                        });\n                    }\n                }\n            }\n        }\n    }\n\n    public void transposeSong(int semitones) {\n        TextField keyField = QueleaApp.get().getMainWindow().getSongEntryWindow().getDetailedSongPanel().getKeyField();\n        if (!keyField.getText().isEmpty()) {\n            keyField.setText(new ChordTransposer(keyField.getText()).transpose(semitones, null));\n        }\n\n        String key = getKey(semitones);\n\n        StringBuilder newText = new StringBuilder(getLyricsField().getTextArea().getText().length());\n        for (String line : getLyricsField().getTextArea().getText().split(\"\\n\")) {\n            if (new LineTypeChecker(line).getLineType() == LineTypeChecker.Type.CHORDS) {\n                newText.append(new ChordLineTransposer(line).transpose(semitones, key));\n            } else {\n                newText.append(line);\n            }\n            newText.append('\\n');\n        }\n        int pos = getLyricsField().getTextArea().getCaretPosition();\n        getLyricsField().getTextArea().replaceText(newText.toString());\n        getLyricsField().getTextArea().moveTo(pos);\n    }\n\n}"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/newsong/DetailedSongPanel.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.newsong;\n\nimport javafx.scene.Node;\nimport javafx.scene.control.Label;\nimport javafx.scene.control.TextArea;\nimport javafx.scene.control.TextField;\nimport javafx.scene.layout.BorderPane;\nimport javafx.scene.layout.GridPane;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.windows.main.widgets.IntegerTextField;\n\n/**\n * A panel where more detailed information about a song is entered.\n * <p>\n * @author Michael\n */\npublic class DetailedSongPanel extends BorderPane {\n\n    private final TextField ccli;\n    private final TextField year;\n    private final TextField publisher;\n    private final TextField copyright;\n    private final TextField key;\n    private final TextField capo;\n    private final TextArea info;\n    private String saveHash = \"\";\n\n    /**\n     * Create a new detailed song panel.\n     */\n    public DetailedSongPanel() {\n        GridPane formPanel = new GridPane();\n        formPanel.setHgap(10);\n        ccli = new IntegerTextField();\n        publisher = new TextField();\n        year = new IntegerTextField();\n        copyright = new TextField();\n        key = new TextField();\n        capo = new IntegerTextField();\n        info = new TextArea();\n        info.setWrapText(true);\n\n        addBlock(formPanel, LabelGrabber.INSTANCE.getLabel(\"ccli.number.label\"), ccli, 1);\n        addBlock(formPanel, LabelGrabber.INSTANCE.getLabel(\"copyright.label\"), copyright, 2);\n        addBlock(formPanel, LabelGrabber.INSTANCE.getLabel(\"year.label\"), year, 3);\n        addBlock(formPanel, LabelGrabber.INSTANCE.getLabel(\"publisher.label\"), publisher, 4);\n        addBlock(formPanel, LabelGrabber.INSTANCE.getLabel(\"key.label\"), key, 5);\n        addBlock(formPanel, LabelGrabber.INSTANCE.getLabel(\"capo.label\"), capo, 6);\n        addBlock(formPanel, LabelGrabber.INSTANCE.getLabel(\"notes.label\"), info, 7);\n\n        setTop(formPanel);\n\n    }\n\n    /**\n     * Add a label / input block to a panel.\n     * <p>\n     * @param panel the panel to add to.\n     * @param labelText the label text to add to this block.\n     * @param comp the component to add to this block.\n     */\n    private void addBlock(GridPane panel, String labelText, Node comp, int i) {\n        Label label = new Label(labelText);\n        label.setLabelFor(comp);\n        GridPane.setConstraints(label, 1, i);\n        GridPane.setConstraints(comp, 2, i);\n        panel.getChildren().add(label);\n        panel.getChildren().add(comp);\n    }\n\n    /**\n     * Reset this panel to blank so it can contain a new song.\n     */\n    public void resetNewSong() {\n        ccli.setText(\"\");\n        year.setText(\"\");\n        publisher.setText(\"\");\n        copyright.setText(\"\");\n        key.setText(\"\");\n        capo.setText(\"\");\n        info.setText(\"\");\n    }\n\n    /**\n     * Set this panel to edit a song.\n     * <p>\n     * @param song the song to edit.\n     */\n    public void resetEditSong(SongDisplayable song) {\n        ccli.setText(song.getCcli());\n        copyright.setText(song.getCopyright());\n        publisher.setText(song.getPublisher());\n        year.setText(song.getYear());\n        key.setText(song.getKey());\n        capo.setText(song.getCapo());\n        info.setText(song.getInfo());\n    }\n\n    public boolean hashChanged() {\n        return !getSaveHash().equals(saveHash);\n    }\n\n    public void resetSaveHash() {\n        saveHash = getSaveHash();\n    }\n\n    private String getSaveHash() {\n        return \"\" + ccli.getText().hashCode() + copyright.getText().hashCode() + publisher.getText().hashCode() + year.getText().hashCode() + key.getText().hashCode() + capo.getText().hashCode() + info.getText().hashCode();\n    }\n\n    /**\n     * Get the CCLI field.\n     * <p>\n     * @return the CCLI field.\n     */\n    public TextField getCcliField() {\n        return ccli;\n    }\n\n    /**\n     * Get the copyright field.\n     * <p>\n     * @return the copyright field.\n     */\n    public TextField getCopyrightField() {\n        return copyright;\n    }\n\n    /**\n     * Get the publisher field.\n     * <p>\n     * @return the publisher field.\n     */\n    public TextField getPublisherField() {\n        return publisher;\n    }\n\n    /**\n     * Get the year field.\n     * <p>\n     * @return the year field.\n     */\n    public TextField getYearField() {\n        return year;\n    }\n\n    /**\n     * Get the info field.\n     * <p>\n     * @return the info field.\n     */\n    public TextArea getInfoField() {\n        return info;\n    }\n\n    /**\n     * Get the key field.\n     * <p>\n     * @return the key field.\n     */\n    public TextField getKeyField() {\n        return key;\n    }\n\n    /**\n     * Get the capo field.\n     * <p>\n     * @return the capo field.\n     */\n    public TextField getCapoField() {\n        return capo;\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/newsong/EditThemeDialog.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.newsong;\n\nimport java.io.File;\nimport javafx.geometry.Insets;\nimport javafx.geometry.Pos;\nimport javafx.scene.Scene;\nimport javafx.scene.control.Button;\nimport javafx.scene.control.ComboBox;\nimport javafx.scene.control.Label;\nimport javafx.scene.control.TextField;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.layout.BorderPane;\nimport javafx.scene.layout.HBox;\nimport javafx.scene.layout.VBox;\nimport javafx.stage.Modality;\nimport javafx.stage.Stage;\nimport org.quelea.data.ThemeDTO;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.utils.ThemeUtils;\n\n/**\n * A modal dialog where a theme can be edited.\n *\n * @author Michael\n */\npublic class EditThemeDialog extends Stage {\n\n    private ThemePanel panel;\n    private ThemeDTO theme;\n    private File themeFile;\n    private Button confirmButton;\n    private Button cancelButton;\n    private TextField nameField;\n    private ComboBox<ThemeDTO> themeCombo;\n\n    /**\n     * Create a new edit theme dialog.\n     */\n    public EditThemeDialog() {\n        initModality(Modality.WINDOW_MODAL);\n        Utils.addIconsToStage(this);\n        setTitle(LabelGrabber.INSTANCE.getLabel(\"edit.theme.heading\"));\n        setResizable(false);\n\n        BorderPane mainPane = new BorderPane();\n        if (!QueleaProperties.get().getUseDarkTheme()) {\n            mainPane.setStyle(\"-fx-background-color:#dddddd;\");\n        }\n\n        VBox northBox = new VBox();\n        HBox themeSelectPanel = new HBox();\n        themeSelectPanel.setPadding(new Insets(5));\n        Label themeSelectLabel = new Label(LabelGrabber.INSTANCE.getLabel(\"theme.select.label\") + \": \");\n        themeCombo = new ComboBox<>();\n        themeCombo.setOnAction(event -> setTheme(themeCombo.getSelectionModel().getSelectedItem()));\n        themeCombo.setItems(ThemeUtils.getThemes());\n        ThemeDTO newTheme = ThemeDTO.getDTO(ThemeDTO.DEFAULT_THEME.getTheme());\n        newTheme.setThemeName(\"New...\");\n        themeCombo.getItems().add(newTheme);\n        themeSelectPanel.getChildren().addAll(themeSelectLabel, themeCombo);\n\n        HBox themeNamePanel = new HBox(5);\n        northBox.getChildren().addAll(themeSelectPanel, themeNamePanel);\n\n        themeNamePanel.setPadding(new Insets(5));\n        mainPane.setTop(northBox);\n        nameField = new TextField();\n        nameField.setPromptText(LabelGrabber.INSTANCE.getLabel(\"theme.name.label\"));\n        themeNamePanel.getChildren().add(nameField);\n        panel = new ThemePanel();\n        panel.setPrefSize(500, 500);\n        mainPane.setCenter(panel);\n        confirmButton = new Button(LabelGrabber.INSTANCE.getLabel(\"ok.button\"), new ImageView(new Image(\"file:icons/tick.png\")));\n        confirmButton.setOnAction(t -> {\n            String themeName;\n            if (nameField.getText().trim().isEmpty()) {\n                themeName = LabelGrabber.INSTANCE.getLabel(\"untitled.theme.text\");\n            } else {\n                themeName = nameField.getText();\n            }\n            theme = panel.getTheme();\n            theme.setFile(themeFile);\n            theme.setThemeName(themeName);\n            hide();\n        });\n        cancelButton = new Button(LabelGrabber.INSTANCE.getLabel(\"cancel.button\"), new ImageView(new Image(\"file:icons/cross.png\")));\n        cancelButton.setOnAction(t -> {\n            theme = null;\n            hide();\n        });\n\n        HBox southPanel = new HBox(10);\n        southPanel.setPadding(new Insets(10));\n        southPanel.setAlignment(Pos.CENTER);\n        southPanel.getChildren().add(confirmButton);\n        southPanel.getChildren().add(cancelButton);\n        mainPane.setBottom(southPanel);\n\n        Scene scene = new Scene(mainPane);\n        if (QueleaProperties.get().getUseDarkTheme()) {\n            scene.getStylesheets().add(\"org/modena_dark.css\");\n        }\n        setScene(scene);\n    }\n\n    /**\n     * Get the theme from this dialog.\n     *\n     * @return the theme.\n     */\n    public ThemeDTO getTheme() {\n        return theme;\n    }\n\n    /**\n     * Set the theme on this dialog.\n     *\n     * @param theme the theme.\n     */\n    public void setTheme(ThemeDTO theme) {\n        if (theme == null) {\n            theme = new ThemeDTO(ThemeDTO.DEFAULT_FONT, ThemeDTO.DEFAULT_FONT_COLOR, ThemeDTO.DEFAULT_FONT, ThemeDTO.DEFAULT_TRANSLATE_FONT_COLOR,\n                    ThemeDTO.DEFAULT_BACKGROUND, ThemeDTO.DEFAULT_SHADOW, false, false, false, true, -1, 0);\n            theme.setThemeName(\"\");\n        }\n        if (theme.getFile() == null) {\n            File file;\n            int filenum = 1;\n            do {\n                file = new File(new File(QueleaProperties.get().getQueleaUserHome(), \"themes\"), \"theme\" + filenum + \".th\");\n                filenum++;\n            } while (file.exists());\n            theme.setFile(file);\n        }\n        if (!theme.equals(themeCombo.getValue())) {\n            themeCombo.setValue(theme);\n        }\n        themeFile = theme.getFile();\n        nameField.setText(theme.getThemeName());\n        panel.setTheme(theme);\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/newsong/FontOptionsDialog.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * Copyright (C) 2014 Michael Berry\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.newsong;\n\nimport java.util.Collections;\nimport javafx.beans.binding.Bindings;\nimport javafx.beans.value.ChangeListener;\nimport javafx.beans.value.ObservableValue;\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport javafx.geometry.Insets;\nimport javafx.geometry.Pos;\nimport javafx.scene.Scene;\nimport javafx.scene.control.Button;\nimport javafx.scene.control.CheckBox;\nimport javafx.scene.control.ColorPicker;\nimport javafx.scene.control.ComboBox;\nimport javafx.scene.control.Label;\nimport javafx.scene.control.Slider;\nimport javafx.scene.control.TextField;\nimport javafx.scene.control.ToggleButton;\nimport javafx.scene.control.Tooltip;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.layout.BorderPane;\nimport javafx.scene.layout.GridPane;\nimport javafx.scene.layout.HBox;\nimport javafx.scene.layout.Priority;\nimport javafx.scene.layout.StackPane;\nimport javafx.scene.layout.VBox;\nimport javafx.scene.paint.Color;\nimport javafx.scene.text.Font;\nimport javafx.scene.text.FontPosture;\nimport javafx.scene.text.FontWeight;\nimport javafx.stage.Modality;\nimport javafx.stage.Stage;\nimport javafx.util.converter.NumberStringConverter;\nimport org.quelea.data.ThemeDTO;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.SerializableDropShadow;\nimport org.quelea.services.utils.SerializableFont;\nimport org.quelea.services.utils.Utils;\n\n/**\n * A dialog for configuring further font options that aren't directly shown on\n * the theme toolbar.\n *\n * @author Michael\n */\npublic class FontOptionsDialog extends Stage {\n\n    private static FontSelectionDialog fontSelectionDialog;\n    private final ComboBox<String> fontSelection;\n    private final Button fontExpandButton;\n    private final ColorPicker fontColor;\n    private final ColorPicker shadowColor;\n    private final ToggleButton boldButton;\n    private final ToggleButton italicButton;\n    private final CheckBox useShadowCheckbox;\n    private final Slider shadowOffsetSlider;\n    private final NumberTextField shadowOffsetText;\n    private final Slider shadowRadiusSlider;\n    private final NumberTextField shadowRadiusText;\n    private final Slider shadowSpreadSlider;\n    private final NumberTextField shadowSpreadText;\n    private final Button okButton;\n\n    /**\n     * Create the font options dialog.\n     *\n     * @param themePanel the ThemePanel to update as the values in this dialog\n     * change.\n     */\n    public FontOptionsDialog(final ThemePanel themePanel) {\n        initModality(Modality.APPLICATION_MODAL);\n        setTitle(LabelGrabber.INSTANCE.getLabel(\"font.options.title\"));\n        Utils.addIconsToStage(this);\n\n        if (fontSelectionDialog == null) {\n            fontSelectionDialog = new FontSelectionDialog();\n        }\n        fontSelection = new ComboBox<>();\n        fontSelection.setMaxWidth(Integer.MAX_VALUE);\n        fontSelection.getItems().addAll(fontSelectionDialog.getChosenFonts());\n        Collections.sort(fontSelection.getItems());\n        HBox.setHgrow(fontSelection, Priority.ALWAYS);\n\n        fontExpandButton = new Button(\"...\");\n        fontExpandButton.setTooltip(new Tooltip(LabelGrabber.INSTANCE.getLabel(\"more.fonts.label\") + \"...\"));\n        Utils.setToolbarButtonStyle(fontExpandButton);\n        fontExpandButton.setOnAction(t -> {\n            fontSelectionDialog.showAndWait();\n            String selected = fontSelection.getSelectionModel().getSelectedItem();\n            fontSelection.getItems().clear();\n            fontSelection.getItems().addAll(fontSelectionDialog.getChosenFonts());\n            Collections.sort(fontSelection.getItems());\n            fontSelection.getSelectionModel().select(selected);\n        });\n\n        fontColor = new ColorPicker(Color.WHITE);\n        fontColor.setStyle(\"-fx-color-label-visible: false ;\");\n\n        shadowColor = new ColorPicker(Color.GRAY);\n        shadowColor.setStyle(\"-fx-color-label-visible: false ;\");\n\n        shadowOffsetSlider = new Slider(0, 60, 0);\n        shadowOffsetSlider.setShowTickMarks(false);\n\n        shadowRadiusSlider = new Slider(0, 1000, 0);\n        shadowRadiusSlider.setShowTickMarks(false);\n\n        shadowSpreadSlider = new Slider(0, 1, 0);\n        shadowSpreadSlider.setShowTickMarks(false);\n\n        boldButton = new ToggleButton(\"\", new ImageView(new Image(\"file:icons/bold.png\", 15, 15, false, true)));\n        Utils.setToolbarButtonStyle(boldButton);\n        italicButton = new ToggleButton(\"\", new ImageView(new Image(\"file:icons/italic.png\", 15, 15, false, true)));\n        Utils.setToolbarButtonStyle(italicButton);\n\n        BorderPane root = new BorderPane();\n        VBox controlRoot = new VBox(10);\n        controlRoot.getChildren().add(new Label(LabelGrabber.INSTANCE.getLabel(\"translation.font.text\") + \":\"));\n        HBox fontBox = new HBox(10);\n        fontBox.getChildren().add(fontSelection);\n        fontBox.getChildren().add(fontExpandButton);\n        controlRoot.getChildren().add(fontBox);\n        HBox fontButtonBox = new HBox(10);\n        fontButtonBox.getChildren().add(boldButton);\n        fontButtonBox.getChildren().add(italicButton);\n        fontButtonBox.getChildren().add(fontColor);\n        controlRoot.getChildren().add(fontButtonBox);\n        controlRoot.getChildren().add(new Label(LabelGrabber.INSTANCE.getLabel(\"shadow.text\") + \":\"));\n        GridPane shadowPane = new GridPane();\n        shadowPane.setHgap(10);\n        shadowPane.setVgap(10);\n\n        Label useShadowLabel = new Label(LabelGrabber.INSTANCE.getLabel(\"use.shadow.label\"));\n        GridPane.setConstraints(useShadowLabel, 1, 1);\n        shadowPane.getChildren().add(useShadowLabel);\n        useShadowCheckbox = new CheckBox();\n        useShadowCheckbox.selectedProperty().addListener((ov, t, t1) -> themePanel.updateTheme(false));\n        GridPane.setConstraints(useShadowCheckbox, 2, 1);\n        shadowPane.getChildren().add(useShadowCheckbox);\n        useShadowLabel.setLabelFor(useShadowCheckbox);\n        useShadowCheckbox.setSelected(true);\n\n        Label shadowColorLabel = new Label(LabelGrabber.INSTANCE.getLabel(\"shadow.color.label\"));\n        GridPane.setConstraints(shadowColorLabel, 1, 2);\n        shadowPane.getChildren().add(shadowColorLabel);\n        shadowColor.valueProperty().addListener((ov, t, t1) -> themePanel.updateTheme(false));\n        shadowColorLabel.setLabelFor(shadowColor);\n        GridPane.setConstraints(shadowColor, 2, 2);\n        shadowPane.getChildren().add(shadowColor);\n\n        Label shadowOffsetLabel = new Label(LabelGrabber.INSTANCE.getLabel(\"shadow.offset.label\"));\n        GridPane.setConstraints(shadowOffsetLabel, 1, 3);\n        shadowPane.getChildren().add(shadowOffsetLabel);\n        shadowOffsetSlider.valueProperty().addListener((ov, t, t1) -> themePanel.updateTheme(false));\n        shadowOffsetText = new NumberTextField();\n        shadowOffsetText.setMaxWidth(50);\n        Bindings.bindBidirectional(shadowOffsetText.textProperty(), shadowOffsetSlider.valueProperty(), new NumberStringConverter());\n        HBox shadowOffsetBox = new HBox(5);\n        shadowOffsetBox.getChildren().add(shadowOffsetSlider);\n        shadowOffsetBox.getChildren().add(shadowOffsetText);\n\n        shadowOffsetLabel.setLabelFor(shadowOffsetBox);\n        GridPane.setConstraints(shadowOffsetBox, 2, 3);\n        shadowPane.getChildren().add(shadowOffsetBox);\n\n        Label shadowRadiusLabel = new Label(LabelGrabber.INSTANCE.getLabel(\"shadow.radius.label\"));\n        GridPane.setConstraints(shadowRadiusLabel, 1, 4);\n        shadowPane.getChildren().add(shadowRadiusLabel);\n        shadowRadiusSlider.valueProperty().addListener((ov, t, t1) -> themePanel.updateTheme(false));\n        shadowRadiusText = new NumberTextField();\n        shadowRadiusText.setMaxWidth(50);\n        Bindings.bindBidirectional(shadowRadiusText.textProperty(), shadowRadiusSlider.valueProperty(), new NumberStringConverter());\n        HBox shadowRadiusBox = new HBox(5);\n        shadowRadiusBox.getChildren().add(shadowRadiusSlider);\n        shadowRadiusBox.getChildren().add(shadowRadiusText);\n        \n        shadowRadiusLabel.setLabelFor(shadowRadiusBox);\n        GridPane.setConstraints(shadowRadiusBox, 2, 4);\n        shadowPane.getChildren().add(shadowRadiusBox);\n\n        Label shadowSpreadLabel = new Label(LabelGrabber.INSTANCE.getLabel(\"shadow.spread.label\"));\n        GridPane.setConstraints(shadowSpreadLabel, 1, 5);\n        shadowPane.getChildren().add(shadowSpreadLabel);\n        shadowSpreadSlider.valueProperty().addListener((ov, t, t1) -> themePanel.updateTheme(false));\n        shadowSpreadText = new NumberTextField();\n        shadowSpreadText.setMaxWidth(50);\n        Bindings.bindBidirectional(shadowSpreadText.textProperty(), shadowSpreadSlider.valueProperty(), new NumberStringConverter());\n        HBox shadowSpreadBox = new HBox(5);\n        shadowSpreadBox.getChildren().add(shadowSpreadSlider);\n        shadowSpreadBox.getChildren().add(shadowSpreadText);\n        \n        shadowSpreadLabel.setLabelFor(shadowSpreadBox);\n        GridPane.setConstraints(shadowSpreadBox, 2, 5);\n        shadowPane.getChildren().add(shadowSpreadBox);\n\n        controlRoot.getChildren().add(shadowPane);\n\n        BorderPane.setMargin(controlRoot, new Insets(10));\n        StackPane buttonPane = new StackPane();\n        buttonPane.setAlignment(Pos.CENTER);\n        okButton = new Button(LabelGrabber.INSTANCE.getLabel(\"ok.button\"), new ImageView(new Image(\"file:icons/tick.png\")));\n        okButton.setOnAction((ActionEvent t) -> hide());\n        okButton.setAlignment(Pos.CENTER);\n        StackPane.setMargin(okButton, new Insets(10));\n        buttonPane.getChildren().add(okButton);\n        root.setCenter(controlRoot);\n        root.setBottom(buttonPane);\n        Scene scene = new Scene(root, 330, 350);\n        if (QueleaProperties.get().getUseDarkTheme()) {\n            scene.getStylesheets().add(\"org/modena_dark.css\");\n        }\n        setScene(scene);\n    }\n\n    /**\n     * Get the theme to display on this font options dialog.\n     *\n     * @param theme the theme to display.\n     */\n    public void setTheme(ThemeDTO theme) {\n        fontSelection.getSelectionModel().select(theme.getTranslateFont().getFamily());\n        fontColor.setValue(theme.getTranslateFontPaint());\n        fontColor.fireEvent(new ActionEvent());\n        boldButton.setSelected(theme.isTranslateBold());\n        italicButton.setSelected(theme.isTranslateItalic());\n        shadowColor.setValue(theme.getShadow().getColor());\n        shadowColor.fireEvent(new ActionEvent());\n        shadowOffsetSlider.setValue(theme.getShadow().getOffsetX());\n        useShadowCheckbox.setSelected(theme.getShadow().getUse());\n        shadowRadiusSlider.setValue(theme.getShadow().getRadius());\n        shadowSpreadSlider.setValue(theme.getShadow().getSpread());\n    }\n\n    /**\n     * Get the shadow options represented on this dialog.\n     *\n     * @return the shadow options.\n     */\n    public SerializableDropShadow getShadow() {\n        return new SerializableDropShadow(shadowColor.getValue(), shadowOffsetSlider.getValue(), shadowOffsetSlider.getValue(), shadowRadiusSlider.getValue(), shadowSpreadSlider.getValue(), useShadowCheckbox.isSelected());\n    }\n\n    /**\n     * Get the font represented on this dialog.\n     *\n     * @return the font.\n     */\n    public SerializableFont getTranslateFont() {\n        return new SerializableFont(Font.font(fontSelection.getSelectionModel().getSelectedItem(),\n                boldButton.isSelected() ? FontWeight.BOLD : FontWeight.NORMAL,\n                italicButton.isSelected() ? FontPosture.ITALIC : FontPosture.REGULAR,\n                QueleaProperties.get().getMaxFontSize()));\n    }\n\n    /**\n     * Get the font colour represented on this dialog.\n     *\n     * @return the font colour.\n     */\n    public Color getTranslateColour() {\n        return fontColor.getValue();\n    }\n\n    /**\n     * Determine whether the font is bold.\n     *\n     * @return true if bold, false otherwise.\n     */\n    public boolean isTranslateBold() {\n        return boldButton.isSelected();\n    }\n\n    /**\n     * Determine whether the font is italic.\n     *\n     * @return true if italic, false otherwise.\n     */\n    public boolean isTranslateItalic() {\n        return italicButton.isSelected();\n    }\n\n}\n\nclass NumberTextField extends TextField {\n\n    @Override\n    public void replaceText(int start, int end, String text) {\n        if (validate(text)) {\n            super.replaceText(start, end, text);\n        }\n    }\n\n    @Override\n    public void replaceSelection(String text) {\n        if (validate(text)) {\n            super.replaceSelection(text);\n        }\n    }\n\n    private boolean validate(String text) {\n        return (\"\".equals(text) || text.matches(\"[0-9]\"));\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/newsong/FontSelectionDialog.java",
    "content": "package org.quelea.windows.newsong;\n\nimport java.util.ArrayList;\nimport java.util.Collections;\nimport java.util.List;\n\n\nimport javafx.geometry.Insets;\nimport javafx.scene.Scene;\nimport javafx.scene.control.Button;\nimport javafx.scene.control.Label;\nimport javafx.scene.control.ListCell;\nimport javafx.scene.control.ListView;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.input.ClipboardContent;\nimport javafx.scene.input.Dragboard;\nimport javafx.scene.input.TransferMode;\nimport javafx.scene.layout.BorderPane;\nimport javafx.scene.layout.HBox;\nimport javafx.scene.layout.StackPane;\nimport javafx.scene.layout.VBox;\nimport javafx.scene.text.Text;\nimport javafx.stage.Modality;\nimport javafx.stage.Stage;\nimport javafx.util.Callback;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\n\n/**\n * The dialog that allows the user to select a subset of fonts to display in the\n * theme panel.\n * <p>\n *\n * @author Michael\n */\npublic class FontSelectionDialog extends Stage {\n\n    private ListView<String> allFontSelection;\n    private ListView<String> chosenFontSelection;\n    private boolean dragFromLeft;\n\n    /**\n     * Create the font selection dialog.\n     */\n    public FontSelectionDialog() {\n        initModality(Modality.APPLICATION_MODAL);\n        setResizable(false);\n        setTitle(LabelGrabber.INSTANCE.getLabel(\"font.selection.dialog.title\"));\n        Utils.addIconsToStage(this);\n        setOnHiding(t -> QueleaProperties.get().setChosenFonts(chosenFontSelection.getItems()));\n        BorderPane mainPane = new BorderPane();\n        Scene scene = new Scene(mainPane);\n        if (QueleaProperties.get().getUseDarkTheme()) {\n            scene.getStylesheets().add(\"org/modena_dark.css\");\n        }\n        setScene(scene);\n\n        Label label = new Label(LabelGrabber.INSTANCE.getLabel(\"chosen.fonts.explanation\"));\n        label.setWrapText(true);\n        StackPane topPane = new StackPane();\n        topPane.setPadding(new Insets(15));\n        topPane.getChildren().add(label);\n        mainPane.setTop(topPane);\n\n        HBox centrePane = new HBox(5);\n        centrePane.setPadding(new Insets(10));\n        mainPane.setCenter(centrePane);\n        allFontSelection = new ListView<>();\n        allFontSelection.setMaxHeight(Integer.MAX_VALUE);\n        VBox allFontBox = new VBox(5);\n        allFontBox.setPadding(new Insets(5));\n        Text text = new Text(LabelGrabber.INSTANCE.getLabel(\"ignored.fonts.label\") + \": \");\n        text.getStyleClass().add(\"text\");\n        allFontBox.getChildren().add(text);\n        allFontBox.getChildren().add(allFontSelection);\n        centrePane.getChildren().add(allFontBox);\n\n        chosenFontSelection = new ListView<>();\n        chosenFontSelection.setMaxHeight(Integer.MAX_VALUE);\n        VBox chosenFontBox = new VBox(5);\n        chosenFontBox.setPadding(new Insets(5));\n        Text choseFontLabel = new Text(LabelGrabber.INSTANCE.getLabel(\"chosen.fonts.label\") + \": \");\n        choseFontLabel.getStyleClass().add(\"text\");\n        chosenFontBox.getChildren().add(choseFontLabel);\n        chosenFontBox.getChildren().add(chosenFontSelection);\n        centrePane.getChildren().add(chosenFontBox);\n\n        Button doneButton = new Button(LabelGrabber.INSTANCE.getLabel(\"done.text\"), new ImageView(new Image(\"file:icons/tick.png\")));\n        doneButton.setOnAction(t -> FontSelectionDialog.this.hide());\n        StackPane donePane = new StackPane();\n        donePane.setPadding(new Insets(0, 0, 10, 0));\n        donePane.getChildren().add(doneButton);\n        mainPane.setBottom(donePane);\n\n        String[] allFonts = Utils.getAllFonts();\n        List<String> chosenFontsList = QueleaProperties.get().getChosenFonts();\n        List<String> allFontsList = new ArrayList<>();\n        for (String fontName : allFonts) {\n            if (!chosenFontsList.contains(fontName)) {\n                allFontsList.add(fontName);\n            }\n        }\n        allFontSelection.getItems().addAll(allFontsList);\n        chosenFontSelection.getItems().addAll(chosenFontsList);\n        Collections.sort(allFontSelection.getItems());\n        Collections.sort(chosenFontSelection.getItems());\n\n        final Callback<ListView<String>, ListCell<String>> allFontsCallback = new Callback<ListView<String>, ListCell<String>>() {\n            @Override\n            public ListCell<String> call(ListView<String> p) {\n\n                final ListCell<String> listCell = new ListCell<String>() {\n                    @Override\n                    public void updateItem(String item, boolean empty) {\n                        super.updateItem(item, empty);\n                        setGraphic(null);\n                        if (empty) {\n                            setText(null);\n                        } else {\n                            setText(item);\n                        }\n                    }\n                };\n                listCell.setOnDragDetected(event -> {\n                    dragFromLeft = true;\n                    Dragboard db = listCell.startDragAndDrop(TransferMode.ANY);\n                    ClipboardContent content = new ClipboardContent();\n                    content.putString(listCell.getItem());\n                    db.setContent(content);\n                    event.consume();\n                });\n                return listCell;\n            }\n        };\n        final Callback<ListView<String>, ListCell<String>> chosenFontsCallback = new Callback<ListView<String>, ListCell<String>>() {\n            @Override\n            public ListCell<String> call(ListView<String> p) {\n\n                final ListCell<String> listCell = new ListCell<String>() {\n                    @Override\n                    public void updateItem(String item, boolean empty) {\n                        super.updateItem(item, empty);\n                        setGraphic(null);\n                        if (empty) {\n                            setText(null);\n                        } else {\n                            setText(item);\n                        }\n                    }\n                };\n                listCell.setOnDragDetected(event -> {\n                    dragFromLeft = false;\n                    Dragboard db = listCell.startDragAndDrop(TransferMode.ANY);\n                    ClipboardContent content = new ClipboardContent();\n                    content.putString(listCell.getItem());\n                    db.setContent(content);\n                    event.consume();\n                });\n                return listCell;\n            }\n        };\n        allFontSelection.setCellFactory(allFontsCallback);\n        chosenFontSelection.setCellFactory(chosenFontsCallback);\n        allFontSelection.setOnDragOver(event -> {\n            if (event.getDragboard().getString() != null) {\n                event.acceptTransferModes(TransferMode.ANY);\n            }\n        });\n        allFontSelection.setOnDragDropped(t -> {\n            if (!dragFromLeft) {\n                String font = t.getDragboard().getString();\n                if (font != null) {\n                    chosenFontSelection.getItems().remove(font);\n                    allFontSelection.getItems().add(font);\n                    Collections.sort(allFontSelection.getItems());\n                }\n            }\n        });\n        chosenFontSelection.setOnDragOver(event -> {\n            if (event.getDragboard().getString() != null) {\n                event.acceptTransferModes(TransferMode.ANY);\n            }\n        });\n        chosenFontSelection.setOnDragDropped(t -> {\n            if (dragFromLeft) {\n                String font = t.getDragboard().getString();\n                if (font != null) {\n                    chosenFontSelection.getItems().add(font);\n                    Collections.sort(chosenFontSelection.getItems());\n                    allFontSelection.getItems().remove(font);\n                }\n            }\n        });\n\n        setWidth(500);\n    }\n\n    /**\n     * Get a list of the user chosen fonts.\n     *\n     * @return the user chosen fonts.\n     */\n    public List<String> getChosenFonts() {\n        return chosenFontSelection.getItems();\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/newsong/HighlightIndex.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.newsong;\n\nimport java.awt.Color;\n\n/**\n * Add some information about where something should be highlighted.\n * @author Michael\n */\npublic class HighlightIndex {\n\n    private final int startIndex;\n    private final int endIndex;\n    private final Color highlightColor;\n\n    /**\n     * Create a new highlight index.\n     * @param startIndex     the index where highlighting should start.\n     * @param endIndex       the index where highlighting should end.\n     * @param highlightColor the colour of the highlight.\n     */\n    public HighlightIndex(int startIndex, int endIndex, Color highlightColor) {\n        this.startIndex = startIndex;\n        this.endIndex = endIndex;\n        this.highlightColor = highlightColor;\n    }\n\n    /**\n     * Get the start index of the highlight (inclusive.)\n     * @return the start index of the highlight.\n     */\n    public int getStartIndex() {\n        return startIndex;\n    }\n\n    /**\n     * Get the end index of the highlight (exclusive.)\n     * @return the end index of the highlight.\n     */\n    public int getEndIndex() {\n        return endIndex;\n    }\n\n    /**\n     * Get the highlight colour.\n     * @return the highlight colour.\n     */\n    public Color getHighlightColor() {\n        return highlightColor;\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/newsong/ImageButton.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.newsong;\n\nimport java.io.File;\nimport java.io.IOException;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport javafx.event.EventHandler;\nimport javafx.scene.control.Button;\nimport javafx.scene.control.TextField;\nimport javafx.stage.FileChooser;\nimport org.apache.commons.io.FileUtils;\nimport org.quelea.data.ImageBackground;\nimport org.quelea.data.ThemeDTO;\nimport org.quelea.services.utils.FileFilters;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.SerializableFont;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.lyrics.LyricDrawer;\nimport org.quelea.windows.main.DisplayCanvas;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.windows.main.WordDrawer;\nimport org.quelea.windows.stage.StageDrawer;\n\n/**\n * The image button where the user selects a image.\n * <p>\n * @author Michael\n */\npublic class ImageButton extends Button {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    private String imageLocation;\n    private final FileChooser fileChooser;\n\n    /**\n     * Create and initialise the image button.\n     * <p>\n     * @param imageLocationField the image location field that goes with this\n     * button.\n     * @param canvas the preview canvas to update.\n     */\n    public ImageButton(final TextField imageLocationField, final DisplayCanvas canvas) {\n        super(\"..\");\n//        super(LabelGrabber.INSTANCE.getLabel(\"select.image.button\"));\n        final File imageDir = QueleaProperties.get().getImageDir();\n        fileChooser = new FileChooser();\n        if (QueleaProperties.get().getLastDirectory() != null) {\n            fileChooser.setInitialDirectory(QueleaProperties.get().getLastDirectory());\n        }\n        fileChooser.setInitialDirectory(imageDir);\n        fileChooser.getExtensionFilters().add(FileFilters.IMAGES);\n        setOnAction(t -> {\n            File selectedFile = fileChooser.showOpenDialog(QueleaApp.get().getMainWindow());\n            if (selectedFile != null) {\n                QueleaProperties.get().setLastDirectory(selectedFile.getParentFile());\n                File newFile = new File(imageDir, selectedFile.getName());\n                try {\n                    if (!Utils.isInDir(imageDir, selectedFile)) {\n                        FileUtils.copyFile(selectedFile, newFile);\n                    }\n                } catch (IOException ex) {\n                    LOGGER.log(Level.WARNING, \"\", ex);\n                }\n\n                imageLocation = imageDir.toURI().relativize(newFile.toURI()).getPath();\n                imageLocationField.setText(imageLocation);\n                WordDrawer drawer;\n                if (canvas.isStageView()) {\n                    drawer = new StageDrawer();\n                } else {\n                    drawer = new LyricDrawer();\n                }\n                drawer.setCanvas(canvas);\n                ThemeDTO theme = new ThemeDTO(new SerializableFont(drawer.getTheme().getFont()),\n                        drawer.getTheme().getFontPaint(), new SerializableFont(drawer.getTheme().getTranslateFont()),\n                        drawer.getTheme().getTranslateFontPaint(), new ImageBackground(imageLocation),\n                        drawer.getTheme().getShadow(), drawer.getTheme().isBold(),\n                        drawer.getTheme().isItalic(), drawer.getTheme().isTranslateBold(),\n                        drawer.getTheme().isTranslateItalic(), drawer.getTheme().getTextPosition(),\n                        drawer.getTheme().getTextAlignment());\n\n                drawer.setTheme(theme);\n            }\n        });\n    }\n\n    /**\n     * Get the location of the selected image.\n     * <p>\n     * @return the selected image location.\n     */\n    public String getImageLocation() {\n        return imageLocation;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/newsong/SequenceSelectionDialog.java",
    "content": "package org.quelea.windows.newsong;\n\nimport java.util.ArrayList;\nimport java.util.Arrays;\nimport java.util.Collections;\nimport java.util.List;\n\nimport javafx.beans.property.IntegerProperty;\nimport javafx.beans.property.SimpleIntegerProperty;\nimport javafx.beans.value.ObservableValue;\nimport javafx.event.ActionEvent;\nimport javafx.geometry.Insets;\nimport javafx.scene.Scene;\nimport javafx.scene.control.Button;\nimport javafx.scene.control.Label;\nimport javafx.scene.control.ListCell;\nimport javafx.scene.control.ListView;\nimport javafx.scene.control.Tooltip;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.input.ClipboardContent;\nimport javafx.scene.input.DragEvent;\nimport javafx.scene.input.Dragboard;\nimport javafx.scene.input.MouseButton;\nimport javafx.scene.input.MouseEvent;\nimport javafx.scene.input.TransferMode;\nimport javafx.scene.input.KeyCode;\nimport javafx.scene.layout.BorderPane;\nimport javafx.scene.layout.HBox;\nimport javafx.scene.layout.StackPane;\nimport javafx.scene.layout.VBox;\nimport javafx.scene.text.Text;\nimport javafx.stage.Modality;\nimport javafx.stage.Stage;\nimport javafx.util.Callback;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.LineTypeChecker;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.QueleaApp;\n\n/**\n * The dialog that allows the user to select a song sequence.\n * <p>\n *\n * @author Arvid\n */\npublic final class SequenceSelectionDialog extends Stage {\n\n    private ListView<String> chosenSequence;\n    private final Button removeButton;\n    private final Button upButton;\n    private final Button downButton;\n    private boolean fromLeft;\n    private boolean finished;\n\n    /**\n     * A direction; either up or down. Used for rearranging the order of items\n     * in the sequence order.\n     */\n    public enum Direction {\n        UP, DOWN\n    }\n\n    /**\n     * Create the sequence selection dialog.\n     */\n    SequenceSelectionDialog() {\n        initModality(Modality.APPLICATION_MODAL);\n        setResizable(false);\n        setTitle(LabelGrabber.INSTANCE.getLabel(\"sequence.selection.dialog.title\"));\n        Utils.addIconsToStage(this);\n        BorderPane mainPane = new BorderPane();\n        setScene(new Scene(mainPane));\n\n        finished = false;\n        Label label = new Label(LabelGrabber.INSTANCE.getLabel(\"chosen.sequence.explanation\") +\n                \"\\n\\n\" + LabelGrabber.INSTANCE.getLabel(\"song.sequence.tip\"));\n        label.setWrapText(true);\n        StackPane topPane = new StackPane();\n        topPane.setPadding(new Insets(15));\n        topPane.getChildren().add(label);\n        mainPane.setTop(topPane);\n\n        HBox centrePane = new HBox(5);\n        centrePane.setPadding(new Insets(10));\n        mainPane.setCenter(centrePane);\n        ListView<String> allSections = new ListView<>();\n        allSections.setMaxHeight(Integer.MAX_VALUE);\n        VBox allSectionsBox = new VBox(5);\n        allSectionsBox.setPadding(new Insets(5));\n        allSectionsBox.getChildren().add(new Text(LabelGrabber.INSTANCE.getLabel(\"available.sections.label\") + \": \"));\n        allSectionsBox.getChildren().add(allSections);\n        centrePane.getChildren().add(allSectionsBox);\n\n        VBox toolbar = new VBox();\n        toolbar.setPadding(new Insets(5));\n        toolbar.getChildren().add(new Label());\n        ImageView removeIV = new ImageView(new Image(\"file:icons/cross.png\"));\n        removeIV.setFitWidth(16);\n        removeIV.setFitHeight(16);\n        removeButton = new Button(\"\", removeIV);\n        Utils.setToolbarButtonStyle(removeButton);\n        removeButton.setTooltip(new Tooltip(LabelGrabber.INSTANCE.getLabel(\"remove.sequence.tooltip\")));\n        removeButton.setDisable(true);\n        removeButton.setOnAction(e -> {\n            chosenSequence.getItems().remove(chosenSequence.selectionModelProperty().get().getSelectedIndex());\n        });\n\n        ImageView upIV = new ImageView(new Image(\"file:icons/up.png\"));\n        upIV.setFitWidth(16);\n        upIV.setFitHeight(16);\n        upButton = new Button(\"\", upIV);\n        Utils.setToolbarButtonStyle(upButton);\n        upButton.setTooltip(new Tooltip(LabelGrabber.INSTANCE.getLabel(\"move.up.sequence.tooltip\")));\n        upButton.setDisable(true);\n        upButton.setOnAction(t -> moveCurrentItem(Direction.UP));\n\n        ImageView downIV = new ImageView(new Image(\"file:icons/down.png\"));\n        downIV.setFitWidth(16);\n        downIV.setFitHeight(16);\n        downButton = new Button(\"\", downIV);\n        Utils.setToolbarButtonStyle(downButton);\n        downButton.setTooltip(new Tooltip(LabelGrabber.INSTANCE.getLabel(\"move.down.sequence.tooltip\")));\n        downButton.setDisable(true);\n        downButton.setOnAction(t -> moveCurrentItem(Direction.DOWN));\n\n        toolbar.getChildren().add(removeButton);\n        toolbar.getChildren().add(upButton);\n        toolbar.getChildren().add(downButton);\n\n        centrePane.getChildren().add(toolbar);\n\n        chosenSequence = new ListView<>();\n        chosenSequence.setMaxHeight(Integer.MAX_VALUE);\n        VBox chosenSequenceBox = new VBox(5);\n        chosenSequenceBox.setPadding(new Insets(5));\n        chosenSequenceBox.getChildren().add(new Text(LabelGrabber.INSTANCE.getLabel(\"chosen.sequence.label\") + \": \"));\n        chosenSequenceBox.getChildren().add(chosenSequence);\n        centrePane.getChildren().add(chosenSequenceBox);\n        chosenSequenceBox.setOnKeyPressed(e -> {\n            if (e.getCode() == KeyCode.DELETE) {\n                chosenSequence.getItems().remove(chosenSequence.selectionModelProperty().get().getSelectedIndex());\n            }\n        });\n\n        Button doneButton = new Button(LabelGrabber.INSTANCE.getLabel(\"done.text\"), new ImageView(new Image(\"file:icons/tick.png\")));\n        doneButton.setOnAction((ActionEvent t) -> {\n            finished = true;\n            SequenceSelectionDialog.this.hide();\n        });\n        StackPane donePane = new StackPane();\n        donePane.setPadding(new Insets(0, 0, 10, 0));\n        donePane.getChildren().add(doneButton);\n        mainPane.setBottom(donePane);\n\n        List<String> chosenSequenceList = getSequence();\n        List<String> allSectionsList = getAllSections();\n        allSections.getItems().addAll(allSectionsList);\n        chosenSequence.getItems().addAll(chosenSequenceList);\n\n        final IntegerProperty dragFromIndex = new SimpleIntegerProperty(-1);\n\n        setupCellsInAllSectionsList(allSections, dragFromIndex);\n\n        setupCellsInSelectedSectionsList(chosenSequence, dragFromIndex);\n\n        setWidth(500);\n    }\n\n    private void setupCellsInSelectedSectionsList(ListView<String> chosenSequence, IntegerProperty dragFromIndex) {\n        chosenSequence.setCellFactory(new Callback<ListView<String>, ListCell<String>>() {\n\n            int endItem = -1;\n\n            @Override\n            public ListCell<String> call(ListView<String> lv) {\n                final ListCell<String> cell = new ListCell<String>() {\n                    @Override\n                    public void updateItem(String item, boolean empty) {\n                        super.updateItem(item, empty);\n                        if (empty) {\n                            setText(null);\n                        } else {\n                            setText(item);\n                        }\n                    }\n                };\n\n                cell.setOnDragDetected((MouseEvent event) -> {\n                    fromLeft = false;\n                    if (!cell.isEmpty()) {\n                        dragFromIndex.set(cell.getIndex());\n                        Dragboard db = cell.startDragAndDrop(TransferMode.MOVE);\n                        ClipboardContent cc = new ClipboardContent();\n                        cc.putString(cell.getItem());\n                        db.setContent(cc);\n                        db.setDragView(cell.snapshot(null, null));\n                    }\n                });\n\n                cell.setOnDragOver((DragEvent event) -> {\n                    if (dragFromIndex.get() >= 0 && (dragFromIndex.get() != cell.getIndex() || fromLeft)) {\n                        event.acceptTransferModes(TransferMode.COPY_OR_MOVE);\n                    }\n                });\n\n                cell.setOnDragEntered((DragEvent event) -> {\n                    if (dragFromIndex.get() >= 0 && (dragFromIndex.get() != cell.getIndex() || fromLeft)) {\n                        cell.setStyle(\"-fx-background-color: gold;\");\n                        endItem = cell.getIndex();\n                    } else {\n                        endItem = -1;\n                    }\n                });\n\n                cell.setOnDragExited((DragEvent event) -> {\n                    cell.setStyle(\"\");\n                });\n\n                cell.setOnDragDropped((DragEvent event) -> {\n                    if (event.getTransferMode().equals(TransferMode.MOVE)) {\n                        int dragItemsStartIndex;\n                        int dragItemsEndIndex;\n                        int direction;\n                        if (cell.isEmpty()) {\n                            dragItemsStartIndex = dragFromIndex.get();\n                            dragItemsEndIndex = chosenSequence.getItems().size();\n                            direction = -1;\n                        } else {\n                            if (cell.getIndex() < dragFromIndex.get()) {\n                                dragItemsStartIndex = cell.getIndex();\n                                dragItemsEndIndex = dragFromIndex.get() + 1;\n                                direction = 1;\n                            } else {\n                                dragItemsStartIndex = dragFromIndex.get();\n                                dragItemsEndIndex = cell.getIndex() + 1;\n                                direction = -1;\n                            }\n                        }\n\n                        List<String> rotatingItems = chosenSequence.getItems().subList(dragItemsStartIndex, dragItemsEndIndex);\n                        List<String> rotatingItemsCopy = new ArrayList<>(rotatingItems);\n                        Collections.rotate(rotatingItemsCopy, direction);\n                        rotatingItems.clear();\n                        rotatingItems.addAll(rotatingItemsCopy);\n                        dragFromIndex.set(-1);\n                    } else {\n                        String section = event.getDragboard().getString();\n                        if (section != null) {\n                            addItemToSequence(endItem, section);\n                        }\n                    }\n                });\n\n                cell.setOnDragDone((DragEvent event) -> {\n                    dragFromIndex.set(-1);\n                    if (endItem > -1) {\n                        chosenSequence.getSelectionModel().select(endItem);\n                    }\n                });\n                return cell;\n            }\n\n        });\n\n        chosenSequence.focusedProperty().addListener((ObservableValue<? extends Boolean> observable, Boolean oldValue, Boolean newValue) -> {\n            if (newValue) {\n                downButton.setDisable(false);\n                upButton.setDisable(false);\n                removeButton.setDisable(false);\n            } else {\n                downButton.setDisable(true);\n                upButton.setDisable(true);\n                removeButton.setDisable(true);\n            }\n        });\n\n        chosenSequence.setOnDragOver((DragEvent event) -> {\n            if (dragFromIndex.get() >= 0 && chosenSequence.getItems().isEmpty()) {\n                event.acceptTransferModes(TransferMode.COPY);\n            }\n        });\n\n        chosenSequence.setOnDragDropped(e -> {\n            String section = e.getDragboard().getString();\n            if (section != null && chosenSequence.getItems().isEmpty()) {\n                addItemToSequence(-1, section);\n            }\n        });\n    }\n\n    private void setupCellsInAllSectionsList(ListView<String> allSections, IntegerProperty dragFromIndex) {\n        allSections.setCellFactory(new Callback<ListView<String>, ListCell<String>>() {\n\n            @Override\n            public ListCell<String> call(ListView<String> lv) {\n                final ListCell<String> cell = new ListCell<String>() {\n                    @Override\n                    public void updateItem(String item, boolean empty) {\n                        super.updateItem(item, empty);\n                        if (empty) {\n                            setText(null);\n                        } else {\n                            setText(item);\n                        }\n                    }\n                };\n\n                cell.setOnDragDetected((MouseEvent event) -> {\n                    fromLeft = true;\n                    if (!cell.isEmpty()) {\n                        dragFromIndex.set(cell.getIndex());\n                        Dragboard db = cell.startDragAndDrop(TransferMode.COPY);\n                        ClipboardContent cc = new ClipboardContent();\n                        cc.putString(cell.getItem());\n                        db.setContent(cc);\n                        db.setDragView(cell.snapshot(null, null));\n                    }\n                });\n\n                cell.setOnDragDone((DragEvent event) -> {\n                    dragFromIndex.set(-1);\n                    chosenSequence.getSelectionModel().select(event.getDragboard().getString());\n                });\n\n                cell.setOnMouseClicked(e -> {\n                    if (e.getButton().equals(MouseButton.PRIMARY) && e.getClickCount() == 2) {\n                        addItemToSequence(chosenSequence.getItems().size(), cell.getText());\n                    }\n                });\n                return cell;\n            }\n        });\n    }\n\n    private void addItemToSequence(int pos, String section) {\n        StringBuilder name = new StringBuilder();\n        if (section.trim().contains(\" \")) {\n            for (String s : section.split(\" \")) {\n                name.append(s.charAt(0));\n            }\n        } else {\n            name.append(section.charAt(0));\n        }\n        if (chosenSequence.getItems().size() != 0 && chosenSequence.getItems().get(0).isEmpty()) {\n            chosenSequence.getItems().remove(0);\n        }\n        if (pos < 0 || pos > chosenSequence.getItems().size()) {\n            chosenSequence.getItems().add(name.toString().trim());\n        } else {\n            chosenSequence.getItems().add(pos, name.toString().trim());\n        }\n    }\n\n    /**\n     * Get a list of the user chosen sequence.\n     *\n     * @return the user chosen sequence.\n     */\n    public List<String> getChosenSequence() {\n        return chosenSequence.getItems();\n    }\n\n    private List<String> getSequence() {\n        String sequence = QueleaApp.get().getMainWindow().getSongEntryWindow().getBasicSongPanel().getSequenceField().getText();\n        List<String> list = new ArrayList<>();\n        list.addAll(Arrays.asList(sequence.split(\" \")));\n        return list;\n    }\n\n    private List<String> getAllSections() {\n        String lyrics = QueleaApp.get().getMainWindow().getSongEntryWindow().getBasicSongPanel().getLyricsField().getTextArea().getText();\n        List<String> list = new ArrayList<>();\n        for (String s : lyrics.split(\"\\n\")) {\n            if (new LineTypeChecker(s).getLineType() == LineTypeChecker.Type.TITLE && !list.contains(s)) {\n                list.add(s);\n            }\n        }\n        return list;\n    }\n\n    /**\n     * Move the currently selected item in the list in the specified direction.\n     * <p/>\n     *\n     * @param direction the direction to move the selected item.\n     */\n    private void moveCurrentItem(Direction direction) {\n        int selectedIndex = chosenSequence.selectionModelProperty().get().getSelectedIndex();\n        if (selectedIndex == -1) { //Nothing selected\n            return;\n        }\n        if (direction == Direction.UP && selectedIndex > 0) {\n            Collections.swap(chosenSequence.itemsProperty().get(), selectedIndex, selectedIndex - 1);\n            chosenSequence.getSelectionModel().clearSelection();\n            chosenSequence.selectionModelProperty().get().select(selectedIndex - 1);\n        }\n        if (direction == Direction.DOWN && selectedIndex < chosenSequence.itemsProperty().get().size() - 1) {\n            Collections.swap(chosenSequence.itemsProperty().get(), selectedIndex, selectedIndex + 1);\n            chosenSequence.getSelectionModel().clearSelection();\n            chosenSequence.selectionModelProperty().get().select(selectedIndex + 1);\n        }\n        requestFocus();\n    }\n\n    /**\n     * Check if done was pressed or action was aborted.\n     *\n     * @return true if done was pressed to close the window, false otherwise.\n     */\n    public boolean isFinished() {\n        return finished;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/newsong/SongEntryWindow.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.newsong;\n\nimport javafx.beans.value.ChangeListener;\nimport javafx.beans.value.ObservableValue;\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport javafx.geometry.Insets;\nimport javafx.geometry.Pos;\nimport javafx.scene.Scene;\nimport javafx.scene.control.Button;\nimport javafx.scene.control.CheckBox;\nimport javafx.scene.control.Tab;\nimport javafx.scene.control.TabPane;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.layout.BorderPane;\nimport javafx.scene.layout.HBox;\nimport javafx.scene.layout.VBox;\nimport javafx.stage.Modality;\nimport javafx.stage.Stage;\nimport javafx.stage.WindowEvent;\n\nimport org.javafx.dialog.Dialog;\nimport org.quelea.data.ThemeDTO;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.data.displayable.TextSection;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.lyrics.TranslatePanel;\nimport org.quelea.windows.main.QueleaApp;\n\n/**\n * A new song window that users use for inserting the text content of a new\n * song.\n * <p/>\n *\n * @author Michael\n */\npublic class SongEntryWindow extends Stage {\n\n    private BasicSongPanel basicSongPanel;\n    private DetailedSongPanel detailedSongPanel;\n    private ThemePanel themePanel;\n    private TranslatePanel translatePanel;\n    private boolean updateDBOnHide;\n    private boolean shouldSave;\n    private boolean cancel;\n    private final TabPane tabPane;\n    private final Button confirmButton;\n    private final Button cancelButton;\n    private final CheckBox addToSchedCBox;\n    private SongDisplayable song;\n    private boolean disableTextAreaListeners;\n\n    /**\n     * Create and initialise the new song window.\n     */\n    public SongEntryWindow() {\n        initModality(Modality.APPLICATION_MODAL);\n        updateDBOnHide = true;\n        Utils.addIconsToStage(this);\n\n        confirmButton = new Button(LabelGrabber.INSTANCE.getLabel(\"add.song.button\"), new ImageView(new Image(\"file:icons/tick.png\")));\n\n        BorderPane mainPane = new BorderPane();\n        tabPane = new TabPane();\n\n        setupBasicSongPanel();\n        Tab basicTab = new Tab(LabelGrabber.INSTANCE.getLabel(\"basic.information.heading\"));\n        basicTab.setContent(basicSongPanel);\n        basicTab.setClosable(false);\n        tabPane.getTabs().add(basicTab);\n\n        setupDetailedSongPanel();\n        Tab detailedTab = new Tab(LabelGrabber.INSTANCE.getLabel(\"detailed.info.heading\"));\n        detailedTab.setContent(detailedSongPanel);\n        detailedTab.setClosable(false);\n        tabPane.getTabs().add(detailedTab);\n\n        setupTranslatePanel();\n        Tab translateTab = new Tab(LabelGrabber.INSTANCE.getLabel(\"translate.heading\"));\n        translateTab.setContent(translatePanel);\n        translateTab.setClosable(false);\n        tabPane.getTabs().add(translateTab);\n\n        basicSongPanel.getLyricsField().getTextArea().textProperty().addListener((observable, oldValue, newValue) -> {\n            if (!disableTextAreaListeners) {\n                disableTextAreaListeners = true;\n                translatePanel.getDefaultLyricsArea().getTextArea().replaceText(newValue);\n                disableTextAreaListeners = false;\n            }\n        });\n        translatePanel.getDefaultLyricsArea().getTextArea().textProperty().addListener((observable, oldValue, newValue) -> {\n            if (!disableTextAreaListeners) {\n                disableTextAreaListeners = true;\n                basicSongPanel.getLyricsField().getTextArea().replaceText(newValue);\n                disableTextAreaListeners = false;\n            }\n        });\n\n        setupThemePanel();\n        Tab themeTab = new Tab(LabelGrabber.INSTANCE.getLabel(\"theme.heading\"));\n        themeTab.setContent(themePanel);\n        themeTab.setClosable(false);\n        tabPane.getTabs().add(themeTab);\n\n        mainPane.setCenter(tabPane);\n\n        confirmButton.setOnAction(t -> {\n            cancel = false;\n            saveSong();\n        });\n        cancelButton = new Button(LabelGrabber.INSTANCE.getLabel(\"cancel.button\"), new ImageView(new Image(\"file:icons/cross.png\")));\n        cancelButton.setOnAction(t -> {\n            checkSave();\n        });\n        addToSchedCBox = new CheckBox(LabelGrabber.INSTANCE.getLabel(\"add.to.schedule.text\"));\n        HBox checkBoxPanel = new HBox();\n        HBox.setMargin(addToSchedCBox, new Insets(0, 0, 0, 10));\n        checkBoxPanel.getChildren().add(addToSchedCBox);\n        VBox bottomPanel = new VBox();\n        bottomPanel.setSpacing(5);\n        HBox buttonPanel = new HBox();\n        buttonPanel.setSpacing(10);\n        buttonPanel.setAlignment(Pos.CENTER);\n        buttonPanel.getChildren().add(confirmButton);\n        buttonPanel.getChildren().add(cancelButton);\n        bottomPanel.getChildren().add(checkBoxPanel);\n        bottomPanel.getChildren().add(buttonPanel);\n        BorderPane.setMargin(bottomPanel, new Insets(10, 0, 5, 0));\n        mainPane.setBottom(bottomPanel);\n\n        setOnShowing(t -> {\n            cancel = true;\n        });\n        setOnCloseRequest(t -> {\n            checkSave();\n        });\n\n        Scene scene = new Scene(mainPane);\n        if (QueleaProperties.get().getUseDarkTheme()) {\n            scene.getStylesheets().add(\"org/modena_dark.css\");\n        }\n        setScene(scene);\n    }\n\n    /**\n     * Determine if the entry window was cancelled.\n     * <p>\n     *\n     * @return true if it was cancelled, false otherwise.\n     */\n    public boolean wasCancelled() {\n        return cancel;\n    }\n\n    private boolean isChangeMade() {\n        return basicSongPanel.hashChanged() || detailedSongPanel.hashChanged() || themePanel.hashChanged();\n    }\n\n    private void resetChange() {\n        basicSongPanel.resetSaveHash();\n        detailedSongPanel.resetSaveHash();\n        themePanel.resetSaveHash();\n    }\n\n    private void checkSave() {\n        if (shouldSave && isChangeMade() && attributesOk()) {\n            Dialog.buildConfirmation(LabelGrabber.INSTANCE.getLabel(\"confirm.entry.exit.title\"),\n                    LabelGrabber.INSTANCE.getLabel(\"confirm.entry.exit.text\"), SongEntryWindow.this)\n                    .addLabelledButton(LabelGrabber.INSTANCE.getLabel(\"save.text\"), new EventHandler<ActionEvent>() {\n                        @Override\n                        public void handle(ActionEvent t) {\n                            saveSong();\n                        }\n                    }).addLabelledButton(LabelGrabber.INSTANCE.getLabel(\"dont.save.text\"), null)\n                    .build().showAndWait();\n        }\n        hide();\n    }\n\n    public void saveSong() {\n        resetChange();\n        hide();\n        SongDisplayable localSong = getSong();\n        boolean quickInsert = song != null && song.isQuickInsert();\n        if (shouldSave) {\n            if (updateDBOnHide && !quickInsert) {\n                Utils.updateSongInBackground(localSong, true, false);\n            }\n            if (addToSchedCBox.isSelected()) {\n                QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getScheduleList().add(localSong);\n            }\n            QueleaApp.get().getMainWindow().getMainPanel().getPreviewPanel().refresh();\n//            QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().refresh(); //Don't do this - restarts live video unnecessarily\n        }\n    }\n\n    /**\n     * Called by the constructor to initialise the theme panel.\n     */\n    private void setupThemePanel() {\n        themePanel = new ThemePanel(basicSongPanel.getLyricsField().getTextArea(), confirmButton, true);\n    }\n\n    /**\n     * Called by the constructor to initialise the detailed song panel.\n     */\n    private void setupDetailedSongPanel() {\n        detailedSongPanel = new DetailedSongPanel();\n    }\n\n    /**\n     * Called by the constructor to initialise the basic song panel.\n     */\n    private void setupBasicSongPanel() {\n        basicSongPanel = new BasicSongPanel();\n        basicSongPanel.getLyricsField().getTextArea().textProperty().addListener(new ChangeListener<String>() {\n            @Override\n            public void changed(ObservableValue<? extends String> ov, String t, String t1) {\n                checkConfirmButton();\n            }\n        });\n\n        basicSongPanel.getTitleField().textProperty().addListener(new ChangeListener<String>() {\n            @Override\n            public void changed(ObservableValue<? extends String> ov, String t, String t1) {\n                checkConfirmButton();\n            }\n        });\n    }\n\n    private void setupTranslatePanel() {\n        translatePanel = new TranslatePanel();\n    }\n\n    /**\n     * Get the panel where the user enters the basic song information.\n     * <p/>\n     *\n     * @return the basic song panel.\n     */\n    public BasicSongPanel getBasicSongPanel() {\n        return basicSongPanel;\n    }\n\n    /**\n     * Get the translation panel.\n     *\n     * @return the translation panel.\n     */\n    public TranslatePanel getTranslatePanel() {\n        return translatePanel;\n    }\n\n    /**\n     * Get the panel where the user enters the more detailed song information.\n     * <p/>\n     *\n     * @return the detailed song panel.\n     */\n    public DetailedSongPanel getDetailedSongPanel() {\n        return detailedSongPanel;\n    }\n\n    /**\n     * Get the theme currently displayed on this window.\n     * <p/>\n     *\n     * @return the current theme.\n     */\n    public ThemeDTO getTheme() {\n        return themePanel.getTheme();\n    }\n\n    /**\n     * Set this window up ready to enter a new song.\n     */\n    public void resetNewSong() {\n        setTitle(LabelGrabber.INSTANCE.getLabel(\"new.song.title\"));\n        shouldSave = true;\n        song = null;\n        confirmButton.setText(LabelGrabber.INSTANCE.getLabel(\"new.song.button\"));\n        basicSongPanel.resetNewSong();\n        detailedSongPanel.resetNewSong();\n        translatePanel.clearSong();\n        themePanel.setTheme(ThemeDTO.DEFAULT_THEME);\n        tabPane.getSelectionModel().select(0);\n        addToSchedCBox.setSelected(false);\n        addToSchedCBox.setDisable(false);\n        updateDBOnHide = true;\n        confirmButton.setDisable(true);\n        resetChange();\n    }\n\n    /**\n     * Set this window up ready to enter a new song.\n     */\n    public void resetQuickInsert() {\n        setTitle(LabelGrabber.INSTANCE.getLabel(\"quick.insert.text\"));\n        shouldSave = false;\n        song = null;\n        confirmButton.setText(LabelGrabber.INSTANCE.getLabel(\"library.add.to.schedule.text\"));\n        confirmButton.setDisable(true);\n        basicSongPanel.resetNewSong();\n        detailedSongPanel.resetNewSong();\n        themePanel.setTheme(ThemeDTO.DEFAULT_THEME);\n        tabPane.getSelectionModel().select(0);\n        addToSchedCBox.setSelected(false);\n        addToSchedCBox.setDisable(true);\n        updateDBOnHide = false;\n        resetChange();\n    }\n\n    /**\n     * Set this window up ready to edit an existing song.\n     * <p/>\n     *\n     * @param song the song to edit.\n     */\n    public void resetEditSong(SongDisplayable song) {\n        setTitle(LabelGrabber.INSTANCE.getLabel(\"edit.song.title\"));\n        this.song = song;\n        shouldSave = true;\n        confirmButton.setText(LabelGrabber.INSTANCE.getLabel(\"edit.song.button\"));\n        confirmButton.setDisable(false);\n        basicSongPanel.resetEditSong(song);\n        detailedSongPanel.resetEditSong(song);\n        translatePanel.setSong(song);\n        if (song.getSections().length > 0) {\n            themePanel.setTheme(song.getSections()[0].getTheme());\n        }\n        tabPane.getSelectionModel().select(0);\n        addToSchedCBox.setSelected(false);\n        if (QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getScheduleList().itemsProperty().get().contains(song)) {\n            addToSchedCBox.setDisable(true);\n        } else {\n            addToSchedCBox.setDisable(false);\n        }\n        updateDBOnHide = true;\n        resetChange();\n    }\n\n    /**\n     * Get the song that's been edited or created by the window.\n     * <p/>\n     *\n     * @return the song.\n     */\n    public SongDisplayable getSong() {\n        if (song == null) {\n            song = new SongDisplayable(getBasicSongPanel().getTitleField().getText(), getBasicSongPanel().getAuthorField().getText());\n        }\n        song.setSequence(getBasicSongPanel().getSequenceField().getText().toUpperCase());\n        song.setLyrics(getBasicSongPanel().getLyricsField().getTextArea().getText());\n        song.setTitle(getBasicSongPanel().getTitleField().getText());\n        song.setAuthor(getBasicSongPanel().getAuthorField().getText());\n        song.setTranslations(getTranslatePanel().getTranslations());\n        song.setCcli(getDetailedSongPanel().getCcliField().getText());\n        song.setCopyright(getDetailedSongPanel().getCopyrightField().getText());\n        song.setPublisher(getDetailedSongPanel().getPublisherField().getText());\n        song.setYear(getDetailedSongPanel().getYearField().getText());\n        song.setKey(getDetailedSongPanel().getKeyField().getText());\n        song.setCapo(getDetailedSongPanel().getCapoField().getText());\n        song.setInfo(getDetailedSongPanel().getInfoField().getText());\n        for (TextSection section : song.getSections()) {\n            section.setTheme(themePanel.getTheme());\n        }\n        song.setTheme(themePanel.getTheme());\n        return song;\n    }\n\n    /**\n     * Check whether the confirm button should be enabled or disabled and set it\n     * accordingly.\n     */\n    private void checkConfirmButton() {\n        confirmButton.setDisable(!attributesOk());\n    }\n\n    /**\n     * Determine if this song entry window contains a song that could be saved.\n     * <p/>\n     *\n     * @return true if the song is viable (has a title and lyrics), false\n     * otherwise.\n     */\n    private boolean attributesOk() {\n        return !getBasicSongPanel().getTitleField().getText().trim().isEmpty(); //Allow empty lyrics for now\n//        return !(getBasicSongPanel().getLyricsField().getText().trim().isEmpty()\n//                || getBasicSongPanel().getTitleField().getText().trim().isEmpty());\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/newsong/ThemePanel.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.newsong;\n\nimport javafx.application.Platform;\nimport javafx.beans.value.ChangeListener;\nimport javafx.geometry.Insets;\nimport javafx.scene.control.Button;\nimport javafx.scene.control.ComboBox;\nimport javafx.scene.control.Label;\nimport javafx.scene.layout.BorderPane;\nimport javafx.scene.layout.HBox;\nimport javafx.scene.layout.StackPane;\nimport javafx.scene.layout.VBox;\nimport org.fxmisc.richtext.InlineCssTextArea;\nimport org.quelea.data.ThemeDTO;\nimport org.quelea.data.displayable.SongDisplayable;\nimport org.quelea.data.displayable.TextSection;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.utils.ThemeUtils;\nimport org.quelea.windows.lyrics.LyricDrawer;\nimport org.quelea.windows.main.DisplayCanvas;\nimport org.quelea.windows.main.DisplayCanvas.Priority;\nimport org.quelea.windows.main.WordDrawer;\nimport org.quelea.windows.main.widgets.DisplayPositionSelector;\nimport org.quelea.windows.main.widgets.DisplayPreview;\nimport org.quelea.windows.stage.StageDrawer;\n\n/**\n * The panel where the user chooses what visual theme a song should have.\n * <p/>\n * @author Michael\n */\npublic class ThemePanel extends BorderPane {\n\n    public static final String[] SAMPLE_LYRICS = {\"Amazing Grace how sweet the sound\", \"That saved a wretch like me\", \"I once was lost but now am found\", \"Was blind, but now I see.\"};\n    private String[] text;\n    private final DisplayPreview preview;\n    private final ThemeToolbar themeToolbar;\n    private DisplayPositionSelector positionSelector;\n    private String saveHash = \"\";\n    private final Button confirmButton;\n    private ComboBox<ThemeDTO> themeCombo;\n\n    /**\n     * Create and initialise the theme panel\n     */\n    public ThemePanel() {\n        this(null, null);\n    }\n\n    public ThemePanel(InlineCssTextArea wordsArea, Button confirmButton) {\n        this(wordsArea, confirmButton, false);\n    }\n\n    /**\n     * Create and initialise the theme panel.\n     * <p>\n     * @param wordsArea the text area to use for words. If null, sample lyrics\n     * will be used.\n     */\n    public ThemePanel(InlineCssTextArea wordsArea, Button confirmButton, boolean showThemeCopyPanel) {\n        this.confirmButton = confirmButton;\n        positionSelector = new DisplayPositionSelector(this);\n        positionSelector.prefWidthProperty().bind(widthProperty());\n        positionSelector.prefHeightProperty().bind(heightProperty());\n        DisplayCanvas canvas = new DisplayCanvas(false, () -> updateTheme(true), Priority.LOW);\n        preview = new DisplayPreview(canvas);\n        VBox centrePane = new VBox();\n        Label label = new Label(\"      \" + LabelGrabber.INSTANCE.getLabel(\"hover.for.position.label\") + \":\");\n        if (!QueleaProperties.get().getUseDarkTheme()) {\n            label.setStyle(\"-fx-text-fill:#666666;\");\n            centrePane.setStyle(\"-fx-background-color:#dddddd;\");\n        }\n        centrePane.getChildren().add(label);\n        StackPane themePreviewPane = new StackPane();\n        themePreviewPane.getStyleClass().add(\"text-area\");\n        themePreviewPane.getChildren().add(preview);\n        themePreviewPane.getChildren().add(positionSelector);\n        centrePane.getChildren().add(themePreviewPane);\n        setCenter(centrePane);\n        final WordDrawer drawer;\n        if (canvas.isStageView()) {\n            drawer = new StageDrawer();\n        } else {\n            drawer = new LyricDrawer();\n        }\n        drawer.setCanvas(canvas);\n        text = SAMPLE_LYRICS;\n        if (wordsArea != null) {\n            ChangeListener<String> cl = (ov, t, newText) -> {\n                SongDisplayable dummy = new SongDisplayable(\"\", \"\");\n                dummy.setLyrics(newText);\n                TextSection[] sections = dummy.getSections();\n                if (sections.length > 0 && sections[0].getText(false, false).length > 0) {\n                    text = sections[0].getText(false, false);\n                } else {\n                    text = SAMPLE_LYRICS;\n                }\n                if (isEmpty(text)) {\n                    text = SAMPLE_LYRICS;\n                }\n                updateTheme(false);\n            };\n            wordsArea.textProperty().addListener(cl);\n            cl.changed(null, null, wordsArea.getText());\n        }\n\n        VBox northBox = new VBox();\n        HBox themeSelectPanel = new HBox();\n        themeSelectPanel.setPadding(new Insets(5));\n        Label themeSelectLabel = new Label(LabelGrabber.INSTANCE.getLabel(\"theme.copy.label\") + \": \");\n        themeSelectLabel.setPadding(new Insets(3,0,0,0));\n        themeCombo = new ComboBox<>();\n        themeCombo.setItems(ThemeUtils.getThemes());\n\n        Button copyButton = new Button(LabelGrabber.INSTANCE.getLabel(\"copy\"));\n        copyButton.setOnAction(event -> {\n            setTheme(themeCombo.getValue());\n        });\n        themeSelectPanel.setSpacing(5);\n        themeSelectPanel.getChildren().addAll(themeSelectLabel, themeCombo, copyButton);\n\n        themeToolbar = new ThemeToolbar(this);\n        if(showThemeCopyPanel) {\n            northBox.getChildren().add(themeSelectPanel);\n        }\n        northBox.getChildren().add(themeToolbar);\n\n        setTop(northBox);\n        updateTheme(false);\n        setMaxSize(800, 600);\n    }\n\n    private boolean isEmpty(String[] text) {\n        for (String str : text) {\n            if (!str.trim().isEmpty()) {\n                return false;\n            }\n        }\n        return true;\n    }\n\n    /**\n     * Determine if the save hash has changed since resetSaveHash() was last\n     * called.\n     * <p>\n     * @return true if the hash has changed, false otherwise.\n     */\n    public boolean hashChanged() {\n        return !getSaveHash().equals(saveHash);\n    }\n\n    /**\n     * Reset the save hash to the current state of the panel.\n     */\n    public void resetSaveHash() {\n        saveHash = getSaveHash();\n    }\n\n    /**\n     * Get the current save hash.\n     *\n     * @return the current save hash.\n     */\n    private String getSaveHash() {\n        return Integer.toString(getTheme().hashCode());\n    }\n\n    /**\n     * Get the confirm button used on this theme panel.\n     * <p>\n     * @return the confirm button.\n     */\n    public Button getConfirmButton() {\n        return confirmButton;\n    }\n\n    /**\n     * Update the canvas with the current theme.\n     * <p>\n     * @param warning true if a warning should be shown if the colours\n     * represented by the current theme are too similar.\n     */\n    public void updateTheme(boolean warning) {\n        final ThemeDTO theme = getTheme();\n        Platform.runLater(() -> {\n            WordDrawer drawer;\n            if (preview.getCanvas().isStageView()) {\n                drawer = new StageDrawer();\n            } else {\n                drawer = new LyricDrawer();\n            }\n            drawer.setCanvas(preview.getCanvas());\n            drawer.setTheme(theme);\n            drawer.setText(text, null, null, false, -1);\n\n        });\n    }\n\n    /**\n     * Set the current theme to represent in this panel.\n     * <p/>\n     * @param theme the theme to represent.\n     */\n    public void setTheme(ThemeDTO theme) {\n        themeToolbar.setTheme(theme);\n        positionSelector.setTheme(theme);\n        updateTheme(false);\n    }\n\n    /**\n     * Get the canvas on this theme panel.\n     * <p/>\n     * @return the canvas on this theme panel.\n     */\n    public DisplayCanvas getCanvas() {\n        return preview.getCanvas();\n    }\n\n    /**\n     * Get the theme currently represented by the state of this panel.\n     * <p/>\n     * @return the current theme.\n     */\n    public ThemeDTO getTheme() {\n        if (themeToolbar == null) {\n            return ThemeDTO.DEFAULT_THEME;\n        }\n        ThemeDTO ret = themeToolbar.getTheme();\n        ret.setTextPosition(positionSelector.getSelectedButtonIndex());\n        return ret;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/newsong/ThemeToolbar.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n * Copyright (C) 2012 Michael Berry\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.newsong;\n\nimport java.util.Collections;\nimport java.util.logging.Logger;\n\nimport javafx.beans.value.ChangeListener;\nimport javafx.beans.value.ObservableValue;\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport javafx.geometry.Insets;\nimport javafx.geometry.Pos;\nimport javafx.scene.Node;\nimport javafx.scene.control.Button;\nimport javafx.scene.control.CheckBox;\nimport javafx.scene.control.ColorPicker;\nimport javafx.scene.control.ComboBox;\nimport javafx.scene.control.Label;\nimport javafx.scene.control.Slider;\nimport javafx.scene.control.TextField;\nimport javafx.scene.control.ToggleButton;\nimport javafx.scene.control.ToggleGroup;\nimport javafx.scene.control.Tooltip;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.layout.HBox;\nimport javafx.scene.layout.Priority;\nimport javafx.scene.layout.Region;\nimport javafx.scene.layout.StackPane;\nimport javafx.scene.layout.VBox;\nimport javafx.scene.paint.Color;\nimport javafx.scene.text.Font;\nimport javafx.scene.text.FontPosture;\nimport javafx.scene.text.FontWeight;\nimport javafx.scene.text.Text;\nimport org.quelea.data.Background;\nimport org.quelea.data.ColourBackground;\nimport org.quelea.data.ImageBackground;\nimport org.quelea.data.ThemeDTO;\nimport org.quelea.data.VideoBackground;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.SerializableDropShadow;\nimport org.quelea.services.utils.SerializableFont;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.widgets.CardPane;\n\n/**\n * The toolbar that sits atop of the theme dialog, and gives the user control\n * over the theme currently in use.\n * <p>\n *\n * @author Michael\n */\npublic class ThemeToolbar extends HBox {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    private final ComboBox<String> fontSelection;\n    private final Button fontExpandButton;\n    private final Button moreOptionsButton;\n    private final FontOptionsDialog moreFontOptionsDialog;\n    private final ToggleButton boldButton;\n    private final ToggleButton italicButton;\n    private final ToggleButton leftAlignButton;\n    private final ToggleButton centreAlignButton;\n    private final ToggleButton rightAlignButton;\n    private final ColorPicker fontColor;\n    private final ComboBox<String> backTypeSelection;\n    private final TextField backgroundImageLocation;\n    private final TextField backgroundVidLocation;\n    private final ColorPicker backgroundColorPicker;\n    private final Slider vidHueSlider;\n    private final CheckBox vidStretchCheckbox;\n    private final ThemePanel themePanel;\n    private static FontSelectionDialog fontSelectionDialog;\n\n    /**\n     * Create a new theme toolbar.\n     * <p>\n     *\n     * @param themePanel the theme panel that this toolbar sits on.\n     */\n    public ThemeToolbar(final ThemePanel themePanel) {\n        Utils.checkFXThread();\n        this.themePanel = themePanel;\n        moreFontOptionsDialog = new FontOptionsDialog(themePanel);\n        setPadding(new Insets(5));\n        boolean darkTheme = QueleaProperties.get().getUseDarkTheme();\n        if (!darkTheme) {\n            setStyle(\"-fx-background-color:#dddddd;\");\n        }\n        VBox topLevelFontBox = new VBox(10);\n        topLevelFontBox.setStyle(\"-fx-border-color: bbbbbb;\");\n        topLevelFontBox.setPadding(new Insets(10));\n        getChildren().add(topLevelFontBox);\n\n        HBox fontTop = new HBox(3);\n        if (fontSelectionDialog == null) {\n            fontSelectionDialog = new FontSelectionDialog();\n        }\n        fontSelection = new ComboBox<>();\n        fontSelection.setMaxWidth(Integer.MAX_VALUE);\n        fontSelection.getItems().addAll(fontSelectionDialog.getChosenFonts());\n        Collections.sort(fontSelection.getItems());\n        HBox.setHgrow(fontSelection, Priority.ALWAYS);\n        fontSelection.getSelectionModel().selectedItemProperty().addListener(new ChangeListener<String>() {\n            @Override\n            public void changed(ObservableValue<? extends String> ov, String t, String t1) {\n                themePanel.updateTheme(false);\n            }\n        });\n        fontExpandButton = new Button(\"...\");\n        fontExpandButton.setTooltip(new Tooltip(LabelGrabber.INSTANCE.getLabel(\"more.fonts.label\") + \"...\"));\n        Utils.setToolbarButtonStyle(fontExpandButton);\n        fontExpandButton.setOnAction(new EventHandler<ActionEvent>() {\n\n            @Override\n            public void handle(ActionEvent t) {\n                fontSelectionDialog.showAndWait();\n                String selected = fontSelection.getSelectionModel().getSelectedItem();\n                fontSelection.getItems().clear();\n                fontSelection.getItems().addAll(fontSelectionDialog.getChosenFonts());\n                Collections.sort(fontSelection.getItems());\n                fontSelection.getSelectionModel().select(selected);\n            }\n        });\n        fontTop.getChildren().add(fontSelection);\n        fontTop.getChildren().add(fontExpandButton);\n        topLevelFontBox.getChildren().add(fontTop);\n\n        HBox fontMid = new HBox();\n        boldButton = new ToggleButton(\"\", new ImageView(new Image(darkTheme ? \"file:icons/bold-light.png\" : \"file:icons/bold.png\", 15, 15, false, true)));\n        Utils.setToolbarButtonStyle(boldButton);\n        boldButton.setOnAction(new EventHandler<javafx.event.ActionEvent>() {\n            @Override\n            public void handle(javafx.event.ActionEvent t) {\n                themePanel.updateTheme(false);\n            }\n        });\n        italicButton = new ToggleButton(\"\", new ImageView(new Image(darkTheme ? \"file:icons/italic-light.png\" : \"file:icons/italic.png\", 15, 15, false, true)));\n        Utils.setToolbarButtonStyle(italicButton);\n        italicButton.setOnAction(new EventHandler<javafx.event.ActionEvent>() {\n            @Override\n            public void handle(javafx.event.ActionEvent t) {\n                themePanel.updateTheme(false);\n            }\n        });\n        ToggleGroup alignGroup = new ToggleGroup();\n        leftAlignButton = new ToggleButton(\"\", new ImageView(new Image(darkTheme ? \"file:icons/leftalign-light.png\" : \"file:icons/leftalign.png\", 15, 15, false, true)));\n        Utils.setToolbarButtonStyle(leftAlignButton);\n        leftAlignButton.setToggleGroup(alignGroup);\n        leftAlignButton.setOnAction(new EventHandler<javafx.event.ActionEvent>() {\n            @Override\n            public void handle(javafx.event.ActionEvent t) {\n                themePanel.updateTheme(false);\n            }\n        });\n        centreAlignButton = new ToggleButton(\"\", new ImageView(new Image(darkTheme ? \"file:icons/centrealign-light.png\" : \"file:icons/centrealign.png\", 15, 15, false, true)));\n        Utils.setToolbarButtonStyle(centreAlignButton);\n        centreAlignButton.setToggleGroup(alignGroup);\n        centreAlignButton.setOnAction(new EventHandler<javafx.event.ActionEvent>() {\n            @Override\n            public void handle(javafx.event.ActionEvent t) {\n                themePanel.updateTheme(false);\n            }\n        });\n        rightAlignButton = new ToggleButton(\"\", new ImageView(new Image(darkTheme ? \"file:icons/rightalign-light.png\" : \"file:icons/rightalign.png\", 15, 15, false, true)));\n        Utils.setToolbarButtonStyle(rightAlignButton);\n        rightAlignButton.setToggleGroup(alignGroup);\n        rightAlignButton.setOnAction(new EventHandler<javafx.event.ActionEvent>() {\n            @Override\n            public void handle(javafx.event.ActionEvent t) {\n                themePanel.updateTheme(false);\n            }\n        });\n        centreAlignButton.setSelected(true);\n        fontColor = new ColorPicker(Color.WHITE);\n        fontColor.setStyle(\"-fx-color-label-visible: false ;\");\n        fontColor.setOnAction(new EventHandler<ActionEvent>() {\n            @Override\n            public void handle(ActionEvent t) {\n                themePanel.updateTheme(false);\n            }\n        });\n        fontMid.getChildren().add(boldButton);\n        fontMid.getChildren().add(italicButton);\n        fontMid.getChildren().add(leftAlignButton);\n        fontMid.getChildren().add(centreAlignButton);\n        fontMid.getChildren().add(rightAlignButton);\n        fontMid.getChildren().add(fontColor);\n        topLevelFontBox.getChildren().add(fontMid);\n\n        StackPane fontBottom = new StackPane();\n        Text fontText = new Text(LabelGrabber.INSTANCE.getLabel(\"font.theme.label\"));\n        fontText.setFill(Color.GRAY);\n        fontBottom.getChildren().add(fontText);\n        moreOptionsButton = new Button(\"...\");\n        Utils.setToolbarButtonStyle(moreOptionsButton);\n        moreOptionsButton.setTooltip(new Tooltip(LabelGrabber.INSTANCE.getLabel(\"more.font.options.label\") + \"...\"));\n        moreOptionsButton.setOnAction(new EventHandler<ActionEvent>() {\n\n            @Override\n            public void handle(ActionEvent t) {\n                moreFontOptionsDialog.showAndWait();\n                themePanel.updateTheme(false);\n            }\n        });\n        StackPane.setAlignment(moreOptionsButton, Pos.BOTTOM_RIGHT);\n        fontBottom.getChildren().add(moreOptionsButton);\n        topLevelFontBox.getChildren().add(fontBottom);\n\n        //-------\n        Region spacer = new Region();\n        spacer.setMaxWidth(20);\n        HBox.setHgrow(spacer, Priority.ALWAYS);\n        getChildren().add(spacer);\n        //-------\n\n        VBox topLevelBackBox = new VBox(10);\n        topLevelBackBox.setStyle(\"-fx-border-color: bbbbbb;\");\n        topLevelBackBox.setPadding(new Insets(10));\n        getChildren().add(topLevelBackBox);\n\n        HBox backTop = new HBox(15);\n        backTypeSelection = new ComboBox<>();\n        backTypeSelection.valueProperty().addListener(new ChangeListener<String>() {\n            @Override\n            public void changed(ObservableValue<? extends String> ov, String t, String t1) {\n                themePanel.updateTheme(false);\n                checkConfirmButton();\n            }\n        });\n        backTypeSelection.getItems().add(LabelGrabber.INSTANCE.getLabel(\"color.theme.label\"));\n        backTypeSelection.getItems().add(LabelGrabber.INSTANCE.getLabel(\"image.theme.label\"));\n        backTypeSelection.getItems().add(LabelGrabber.INSTANCE.getLabel(\"video.theme.label\"));\n        backTop.getChildren().add(backTypeSelection);\n\n        vidStretchCheckbox = new CheckBox(LabelGrabber.INSTANCE.getLabel(\"stretch.video.label\"));\n        vidStretchCheckbox.setStyle(\"-fx-text-fill:#666666\");\n        HBox.setMargin(vidStretchCheckbox, new Insets(2, 0, 0, 0));\n        vidStretchCheckbox.setAlignment(Pos.CENTER_RIGHT);\n        vidStretchCheckbox.setVisible(false);\n        Region stretchSpacer = new Region();\n        stretchSpacer.setMaxWidth(Double.MAX_VALUE);\n        HBox.setHgrow(stretchSpacer, Priority.ALWAYS);\n        backTop.getChildren().add(stretchSpacer);\n        backTop.getChildren().add(vidStretchCheckbox);\n        topLevelBackBox.getChildren().add(backTop);\n\n        final CardPane<Node> backgroundCentre = new CardPane<>();\n        final HBox colourPanel = new HBox();\n        backgroundColorPicker = new ColorPicker(Color.BLACK);\n        backgroundColorPicker.valueProperty().addListener(new ChangeListener<Color>() {\n            @Override\n            public void changed(ObservableValue<? extends Color> ov, Color t, Color t1) {\n                themePanel.updateTheme(true);\n            }\n        });\n        colourPanel.getChildren().add(backgroundColorPicker);\n        backgroundCentre.add(colourPanel, \"colour\");\n        final HBox imagePanel = new HBox();\n        backgroundImageLocation = new TextField();\n        backgroundImageLocation.setEditable(false);\n        backgroundImageLocation.textProperty().addListener(new ChangeListener<String>() {\n            @Override\n            public void changed(ObservableValue<? extends String> ov, String t, String t1) {\n                themePanel.updateTheme(false);\n                checkConfirmButton();\n            }\n        });\n        Button backgroundImageSelectButton = new ImageButton(backgroundImageLocation, themePanel.getCanvas());\n        imagePanel.getChildren().add(backgroundImageLocation);\n        imagePanel.getChildren().add(backgroundImageSelectButton);\n        backgroundCentre.add(imagePanel, \"image\");\n        final VBox vidPanel = new VBox(5);\n        final HBox vidLocationPanel = new HBox(5);\n        backgroundVidLocation = new TextField();\n        backgroundVidLocation.setMaxWidth(130);\n        backgroundVidLocation.setEditable(false);\n        backgroundVidLocation.textProperty().addListener(new ChangeListener<String>() {\n            @Override\n            public void changed(ObservableValue<? extends String> ov, String t, String t1) {\n                themePanel.updateTheme(false);\n                checkConfirmButton();\n            }\n        });\n        Button backgroundVidSelectButton = new VideoButton(backgroundVidLocation, themePanel.getCanvas());\n        vidLocationPanel.getChildren().add(backgroundVidLocation);\n        vidLocationPanel.getChildren().add(backgroundVidSelectButton);\n        vidPanel.getChildren().add(vidLocationPanel);\n        Region spacer2 = new Region();\n        spacer2.setPrefWidth(5);\n        vidLocationPanel.getChildren().add(spacer2);\n        Label vidHueLabel = new Label(LabelGrabber.INSTANCE.getLabel(\"video.hue.label\"));\n        vidHueLabel.setStyle(\"-fx-text-fill:#666666\");\n        vidHueLabel.setMaxHeight(Double.MAX_VALUE);\n        vidHueLabel.setAlignment(Pos.CENTER);\n        vidLocationPanel.getChildren().add(vidHueLabel);\n        vidHueSlider = new Slider(0, 1, 0);\n        vidHueSlider.setMajorTickUnit(0.001);\n        vidHueSlider.valueProperty().addListener(new ChangeListener<Number>() {\n\n            @Override\n            public void changed(ObservableValue<? extends Number> ov, Number t, Number t1) {\n                themePanel.updateTheme(false);\n            }\n        });\n        vidHueSlider.setPrefWidth(70);\n        StackPane sliderStack = new StackPane();\n        sliderStack.setAlignment(Pos.CENTER);\n        sliderStack.getChildren().add(vidHueSlider);\n        vidHueLabel.setLabelFor(vidHueSlider);\n        vidLocationPanel.getChildren().add(sliderStack);\n        backgroundCentre.add(vidPanel, \"video\");\n\n        backTypeSelection.getSelectionModel().selectedItemProperty().addListener(new ChangeListener<String>() {\n\n            @Override\n            public void changed(ObservableValue<? extends String> observable, String oldValue, String newValue) {\n                if (backTypeSelection.getSelectionModel().getSelectedItem().equalsIgnoreCase(LabelGrabber.INSTANCE.getLabel(\"color.theme.label\"))) {\n                    backgroundCentre.show(\"colour\");\n                    vidStretchCheckbox.setVisible(false);\n                } else if (backTypeSelection.getSelectionModel().getSelectedItem().equalsIgnoreCase(LabelGrabber.INSTANCE.getLabel(\"image.theme.label\"))) {\n                    backgroundCentre.show(\"image\");\n                    vidStretchCheckbox.setVisible(false);\n                } else if (backTypeSelection.getSelectionModel().getSelectedItem().equalsIgnoreCase(LabelGrabber.INSTANCE.getLabel(\"video.theme.label\"))) {\n                    backgroundCentre.show(\"video\");\n                    vidStretchCheckbox.setVisible(true);\n                } else {\n                    throw new AssertionError(\"Bug - \" + backTypeSelection.getSelectionModel().getSelectedItem() + \" is an unknown selection value\");\n                }\n            }\n        });\n        topLevelBackBox.getChildren().add(backgroundCentre);\n\n        StackPane backBottom = new StackPane();\n        Text backText = new Text(LabelGrabber.INSTANCE.getLabel(\"background.text\"));\n        backText.setFill(Color.GRAY);\n        backBottom.getChildren().add(backText);\n        topLevelBackBox.getChildren().add(backBottom);\n    }\n\n    /**\n     * Enable / disable the confirm button on the dialog based on the state of\n     * the background field.\n     */\n    private void checkConfirmButton() {\n        if (themePanel.getConfirmButton() != null) {\n            if (backTypeSelection.getSelectionModel().getSelectedItem().equalsIgnoreCase(LabelGrabber.INSTANCE.getLabel(\"color.theme.label\"))) {\n                themePanel.getConfirmButton().setDisable(false);\n            } else if (backTypeSelection.getSelectionModel().getSelectedItem().equalsIgnoreCase(LabelGrabber.INSTANCE.getLabel(\"image.theme.label\"))) {\n                themePanel.getConfirmButton().setDisable(backgroundImageLocation.getText().trim().isEmpty());\n            } else if (backTypeSelection.getSelectionModel().getSelectedItem().equalsIgnoreCase(LabelGrabber.INSTANCE.getLabel(\"video.theme.label\"))) {\n                themePanel.getConfirmButton().setDisable(backgroundVidLocation.getText().trim().isEmpty());\n            }\n        }\n    }\n\n    /**\n     * Set the theme represented by this toolbar.\n     * <p>\n     *\n     * @param theme the theme to represent.\n     */\n    public void setTheme(ThemeDTO theme) {\n        Utils.checkFXThread();\n        if (theme == null) {\n            theme = ThemeDTO.DEFAULT_THEME;\n        }\n        Font font = theme.getFont();\n        fontSelection.getSelectionModel().select(font.getFamily());\n        fontColor.setValue(theme.getFontPaint());\n        fontColor.fireEvent(new ActionEvent());\n        boldButton.setSelected(theme.isBold());\n        italicButton.setSelected(theme.isItalic());\n        int align = theme.getTextAlignment();\n        if (align == -1) {\n            leftAlignButton.setSelected(true);\n        } else if (align == 1) {\n            rightAlignButton.setSelected(true);\n        } else {\n            centreAlignButton.setSelected(true);\n        }\n        moreFontOptionsDialog.setTheme(theme);\n        Background background = theme.getBackground();\n        background.setThemeForm(backgroundColorPicker, backTypeSelection, backgroundImageLocation, backgroundVidLocation, vidHueSlider, vidStretchCheckbox);\n    }\n\n    private int getAlignmentVal() {\n        int alignment = 0;\n        if (leftAlignButton.isSelected()) {\n            alignment = -1;\n        } else if (rightAlignButton.isSelected()) {\n            alignment = 1;\n        }\n        return alignment;\n    }\n\n    /**\n     * Get the theme represented by this toolbar.\n     * <p>\n     *\n     * @return the theme.\n     */\n    public ThemeDTO getTheme() {\n        Utils.checkFXThread();\n        Font font = Font.font(fontSelection.getSelectionModel().getSelectedItem(),\n                boldButton.isSelected() ? FontWeight.BOLD : FontWeight.NORMAL,\n                italicButton.isSelected() ? FontPosture.ITALIC : FontPosture.REGULAR,\n                QueleaProperties.get().getMaxFontSize());\n\n        //Overly spammy\n        //LOGGER.log(Level.INFO, \"Selected font theme \\\"{0}\\\", font family is \\\"{1}\\\"\", new Object[]{fontSelection.getSelectionModel().getSelectedItem(), font.getFamily()});\n\n        Background background = new ColourBackground(Color.BLACK);\n        if (backTypeSelection.getSelectionModel().getSelectedItem() == null) {\n            return ThemeDTO.DEFAULT_THEME;\n        }\n        if (backTypeSelection.getSelectionModel().getSelectedItem().equals(LabelGrabber.INSTANCE.getLabel(\"color.theme.label\"))) {\n            background = new ColourBackground(backgroundColorPicker.getValue());\n        } else if (backTypeSelection.getSelectionModel().getSelectedItem().equals(LabelGrabber.INSTANCE.getLabel(\"image.theme.label\"))) {\n            String text = backgroundImageLocation.getText();\n            if (!text.isEmpty()) {\n                background = new ImageBackground(text);\n            }\n        } else if (backTypeSelection.getSelectionModel().getSelectedItem().equals(LabelGrabber.INSTANCE.getLabel(\"video.theme.label\"))) {\n            String text = backgroundVidLocation.getText();\n            if (!text.isEmpty()) {\n                background = new VideoBackground(text, vidHueSlider.getValue(), vidStretchCheckbox.isSelected());\n            }\n        } else {\n            throw new AssertionError(\"Bug - \" + backTypeSelection.getSelectionModel().getSelectedItem() + \" is an unknown selection value\");\n        }\n        final SerializableDropShadow shadow = moreFontOptionsDialog.getShadow();\n        ThemeDTO resultTheme = new ThemeDTO(new SerializableFont(font), fontColor.getValue(), moreFontOptionsDialog.getTranslateFont(), moreFontOptionsDialog.getTranslateColour(),\n                background, shadow, boldButton.isSelected(), italicButton.isSelected(), moreFontOptionsDialog.isTranslateBold(), moreFontOptionsDialog.isTranslateItalic(), -1, getAlignmentVal());\n        return resultTheme;\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/newsong/VideoButton.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.newsong;\n\nimport java.io.File;\nimport java.io.FileInputStream;\nimport java.io.FileOutputStream;\nimport java.nio.Buffer;\nimport java.nio.ByteBuffer;\nimport java.nio.channels.FileChannel;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport javafx.application.Platform;\nimport javafx.scene.control.Button;\nimport javafx.scene.control.TextField;\nimport javafx.stage.FileChooser;\nimport org.quelea.data.ThemeDTO;\nimport org.quelea.data.VideoBackground;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.Cancellable;\nimport org.quelea.services.utils.FileFilters;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.SerializableFont;\nimport org.quelea.windows.lyrics.LyricDrawer;\nimport org.quelea.windows.main.ModalCancellableStage;\nimport org.quelea.windows.main.DisplayCanvas;\nimport org.quelea.windows.main.QueleaApp;\n\n/**\n * The video button where the user selects a video.\n * <p/>\n * @author Michael\n */\npublic class VideoButton extends Button implements Cancellable {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    private String vidLocation;\n    private final FileChooser fileChooser;\n    private final ModalCancellableStage copyStage = new ModalCancellableStage(LabelGrabber.INSTANCE.getLabel(\"copying.video.please.wait.text\"));\n    private Thread copyThread;\n\n    /**\n     * Create and initialise the video button.\n     * <p/>\n     * @param videoLocationField the video location field that goes with this\n     * button.\n     * @param canvas the preview canvas to update.\n     */\n    public VideoButton(final TextField videoLocationField, final DisplayCanvas canvas) {\n        super(\"..\");\n        fileChooser = new FileChooser();\n        if (QueleaProperties.get().getLastDirectory() != null) {\n            fileChooser.setInitialDirectory(QueleaProperties.get().getLastDirectory());\n        }\n        final File vidDir = QueleaProperties.get().getVidDir();\n        fileChooser.setInitialDirectory(vidDir);\n        fileChooser.getExtensionFilters().add(FileFilters.VIDEOS);\n        setOnAction(t -> {\n            File selectedFile = fileChooser.showOpenDialog(QueleaApp.get().getMainWindow());\n            if (selectedFile != null) {\n                QueleaProperties.get().setLastDirectory(selectedFile.getParentFile());\n                copyStage.showAndAssociate(VideoButton.this);\n                copyThread = new Thread() {\n                    public void run() {\n                        boolean interrupt = false;\n                        File newFile = new File(vidDir, selectedFile.getName());\n                        try {\n                            if (!selectedFile.getCanonicalPath().startsWith(vidDir.getCanonicalPath())) {\n                                VideoButton.copyFile(selectedFile.getAbsolutePath(), newFile.getAbsolutePath());\n                            }\n                        } catch (Exception ex) {\n                            LOGGER.log(Level.INFO, \"Interrupted copying vid file\", ex);\n                            newFile.delete();\n                            interrupt = true;\n                        }\n                        \n                        if (!interrupt) {\n                            Platform.runLater(() -> {\n                                copyStage.hide();\n                                vidLocation = vidDir.toURI().relativize(newFile.toURI()).getPath();\n                                videoLocationField.setText(vidLocation);\n                                LyricDrawer drawer = new LyricDrawer();\n                                drawer.setCanvas(canvas);\n                                ThemeDTO theme = new ThemeDTO(new SerializableFont(drawer.getTheme().getFont()),\n                                        drawer.getTheme().getFontPaint(),\n                                        new SerializableFont(drawer.getTheme().getTranslateFont()),\n                                        drawer.getTheme().getTranslateFontPaint(),\n                                        new VideoBackground(vidLocation, 0, false),\n                                        drawer.getTheme().getShadow(),\n                                        drawer.getTheme().isBold(),\n                                        drawer.getTheme().isItalic(),\n                                        drawer.getTheme().isTranslateBold(),\n                                        drawer.getTheme().isTranslateItalic(),\n                                        drawer.getTheme().getTextPosition(),\n                                        drawer.getTheme().getTextAlignment());\n                                drawer.setTheme(theme);\n                            });\n                        }\n                    }\n                };\n                copyThread.start();\n            }\n        });\n    }\n\n    public Thread getCopyThread() {\n        return copyThread;\n    }\n    \n    /**\n     * Cancel the copying.\n     */\n    @Override\n    public void cancelOp() {\n        getCopyThread().interrupt();\n    }\n\n    private static void copyFile(String in, String out) throws Exception {\n        try (FileChannel fin = new FileInputStream(in).getChannel();\n                FileChannel fout = new FileOutputStream(out).getChannel()) {\n\n            ByteBuffer buff = ByteBuffer.allocate(4096);\n            while (fin.read(buff) != -1 || buff.position() > 0) {\n                ((Buffer) buff).flip();\n                fout.write(buff);\n                buff.compact();\n            }\n        }\n    }\n\n    /**\n     * Get the location of the selected video.\n     * <p/>\n     * @return the selected video location.\n     */\n    public String getVideoLocation() {\n        return vidLocation;\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/options/DisplayGroup.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.options;\n\nimport com.dlsc.formsfx.model.structure.Field;\nimport com.dlsc.formsfx.model.structure.IntegerField;\nimport com.dlsc.preferencesfx.formsfx.view.controls.SimpleComboBoxControl;\nimport com.dlsc.preferencesfx.formsfx.view.controls.SimpleIntegerControl;\nimport com.dlsc.preferencesfx.model.Group;\nimport com.dlsc.preferencesfx.model.Setting;\nimport javafx.beans.property.*;\nimport javafx.beans.value.ObservableValue;\nimport javafx.collections.FXCollections;\nimport javafx.collections.ListChangeListener;\nimport javafx.collections.ObservableList;\nimport javafx.geometry.Bounds;\nimport javafx.stage.Screen;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.QueleaProperties;\n\nimport java.util.HashMap;\n\nimport static org.quelea.services.utils.QueleaPropertyKeys.*;\n\npublic class DisplayGroup {\n    private boolean displayChange = false;\n    private Group group;\n\n    DisplayGroup(String groupName, boolean custom, HashMap<Field, ObservableValue> bindings) {\n        BooleanProperty useCustomPosition = new SimpleBooleanProperty(false);\n        if (groupName.equals(LabelGrabber.INSTANCE.getLabel(\"projector.screen.label\"))) {\n            useCustomPosition = new SimpleBooleanProperty(QueleaProperties.get().isProjectorModeCoords());\n        } else if (groupName.equals(LabelGrabber.INSTANCE.getLabel(\"stage.screen.label\"))) {\n            useCustomPosition = new SimpleBooleanProperty(QueleaProperties.get().isStageModeCoords());\n        }\n        useCustomPosition.addListener(e -> {\n            displayChange = true;\n        });\n\n        ObservableList<String> availableScreens = getAvailableScreens(custom);\n        ListProperty<String> screenListProperty = new SimpleListProperty<>(availableScreens);\n        ObjectProperty<String> screenSelectProperty = new SimpleObjectProperty<>(availableScreens.get(0));\n        Field customControl = Field.ofSingleSelectionType(screenListProperty, screenSelectProperty).render(\n                new SimpleComboBoxControl<>());\n\n        availableScreens.addListener((ListChangeListener<? super String>) e -> {\n            displayChange = true;\n        });\n\n        screenSelectProperty.addListener(e -> {\n            displayChange = true;\n        });\n\n        if (!custom) {\n            int screen = QueleaProperties.get().getControlScreen();\n            screenSelectProperty.setValue(screen > -1 && availableScreens.size() > screen\n                    ? availableScreens.get(screen) : availableScreens.get(0));\n            group = Group.of(groupName,\n                    Setting.of(groupName, customControl, screenSelectProperty).customKey(controlScreenKey)\n            );\n        } else {\n            int screen;\n            Bounds bounds;\n            if (groupName.equals(LabelGrabber.INSTANCE.getLabel(\"projector.screen.label\"))) {\n                screen = QueleaProperties.get().getProjectorScreen();\n                bounds = QueleaProperties.get().getProjectorCoords();\n            } else {\n                screen = QueleaProperties.get().getStageScreen();\n                bounds = QueleaProperties.get().getStageCoords();\n            }\n\n            IntegerProperty widthProperty = new SimpleIntegerProperty((int) bounds.getWidth());\n            IntegerProperty heightProperty = new SimpleIntegerProperty((int) bounds.getHeight());\n            IntegerProperty xProperty = new SimpleIntegerProperty((int) bounds.getMinX());\n            IntegerProperty yProperty = new SimpleIntegerProperty((int) bounds.getMinY());\n            IntegerField sizeWith = Field.ofIntegerType(widthProperty).render(\n                    new SimpleIntegerControl());\n            IntegerField sizeHeight = Field.ofIntegerType(heightProperty).render(\n                    new SimpleIntegerControl());\n            IntegerField posX = Field.ofIntegerType(xProperty).render(\n                    new SimpleIntegerControl());\n            IntegerField posY = Field.ofIntegerType(yProperty).render(\n                    new SimpleIntegerControl());\n\n            widthProperty.addListener(e -> {\n                displayChange = true;\n            });\n\n            heightProperty.addListener(e -> {\n                displayChange = true;\n            });\n\n            xProperty.addListener(e -> {\n                displayChange = true;\n            });\n\n            yProperty.addListener(e -> {\n                displayChange = true;\n            });\n\n            screen++; // Compensate for \"none\" value in available screens\n\n            screenSelectProperty.setValue(screen > 0 && screen < availableScreens.size() ? availableScreens.get(screen) : availableScreens.get(0));\n            boolean projectorGroup = groupName.equals(LabelGrabber.INSTANCE.getLabel(\"projector.screen.label\"));\n\n            group = Group.of(groupName,\n                    Setting.of(groupName, customControl, screenSelectProperty)\n                            .customKey(projectorGroup ? projectorScreenKey : stageScreenKey),\n                    Setting.of(LabelGrabber.INSTANCE.getLabel(\"custom.position.text\"), useCustomPosition)\n                            .customKey(projectorGroup ? projectorModeKey : stageModeKey),\n                    Setting.of(\"W\", sizeWith, widthProperty)\n                            .customKey(projectorGroup ? projectorWCoordKey : stageWCoordKey),\n                    Setting.of(\"H\", sizeHeight, heightProperty)\n                            .customKey(projectorGroup ? projectorHCoordKey : stageHCoordKey),\n                    Setting.of(\"X\", posX, xProperty)\n                            .customKey(projectorGroup ? projectorXCoordKey : stageXCoordKey),\n                    Setting.of(\"Y\", posY, yProperty)\n                            .customKey(projectorGroup ? projectorYCoordKey : stageYCoordKey)\n            );\n\n            bindings.put(sizeWith, useCustomPosition.not());\n            bindings.put(sizeHeight, useCustomPosition.not());\n            bindings.put(posX, useCustomPosition.not());\n            bindings.put(posY, useCustomPosition.not());\n            bindings.put(customControl, useCustomPosition);\n        }\n    }\n\n\n    /**\n     * Get a list model describing the available graphical devices.\n     *\n     * @return a list model describing the available graphical devices.\n     */\n    private ObservableList<String> getAvailableScreens(boolean none) {\n        ObservableList<Screen> monitors = Screen.getScreens();\n\n        ObservableList<String> descriptions = FXCollections.observableArrayList();\n        if (none) {\n            descriptions.add(LabelGrabber.INSTANCE.getLabel(\"none.text\"));\n        }\n        for (int i = 0; i < monitors.size(); i++) {\n            descriptions.add(LabelGrabber.INSTANCE.getLabel(\"output.text\") + \" \" + (i + 1));\n        }\n        return descriptions;\n    }\n\n    public boolean isDisplayChange() {\n        return displayChange;\n    }\n\n    public void setDisplayChange(boolean displayChange) {\n        this.displayChange = displayChange;\n    }\n\n    public Group getGroup() {\n        return group;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/options/OptionsBiblePanel.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.options;\n\nimport java.util.ArrayList;\nimport java.util.HashMap;\n\nimport com.dlsc.formsfx.model.structure.Field;\nimport com.dlsc.formsfx.model.structure.SingleSelectionField;\nimport com.dlsc.preferencesfx.model.Category;\nimport com.dlsc.preferencesfx.model.Setting;\nimport javafx.beans.property.*;\nimport javafx.beans.value.ObservableValue;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport org.quelea.data.bible.Bible;\nimport org.quelea.data.bible.BibleManager;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.windows.options.customprefs.DefaultBibleSelector;\n\nimport static org.quelea.services.utils.QueleaPropertyKeys.*;\n\n/**\n * The panel that shows the bible options\n * <p/>\n *\n * @author Arvid\n */\npublic class OptionsBiblePanel {\n    private HashMap<Field, ObservableValue> bindings;\n    private Setting defaultBibleSetting;\n    private Setting showVerseNumSetting;\n    private SimpleBooleanProperty showVerseNumProperty;\n    private Setting splitVersesSetting;\n    private SimpleBooleanProperty splitVersesProperty;\n    private Setting useMaxVersesSetting;\n    private SimpleBooleanProperty useMaxVersesProperty;\n    private Setting maxVersesSetting;\n    private SimpleIntegerProperty maxVersesProperty;\n\n    /**\n     * Create the options bible panel.\n     *\n     * @param bindings HashMap of bindings to setup after the dialog has been created\n     */\n    OptionsBiblePanel(HashMap<Field, ObservableValue> bindings) {\n        this.bindings = bindings;\n        showVerseNumProperty = new SimpleBooleanProperty(QueleaProperties.get().getShowVerseNumbers());\n        splitVersesProperty = new SimpleBooleanProperty(QueleaProperties.get().getBibleSplitVerses());\n        useMaxVersesProperty = new SimpleBooleanProperty(QueleaProperties.get().getBibleUsingMaxChars());\n        maxVersesProperty = new SimpleIntegerProperty(QueleaProperties.get().getMaxBibleVerses());\n\n        ArrayList<String> bibles = new ArrayList<>();\n        for (Bible b : BibleManager.get().getBibles()) {\n            bibles.add(b.getName());\n        }\n\n        ObjectProperty<String> bibleSelection = new SimpleObjectProperty<>(QueleaProperties.get().getDefaultBible());\n        SingleSelectionField<String> bibleField = Field.ofSingleSelectionType(bibles).render(new DefaultBibleSelector());\n        defaultBibleSetting = Setting.of(LabelGrabber.INSTANCE.getLabel(\"default.bible.label\"), bibleField, bibleSelection).customKey(defaultBibleKey);\n        bibleField.selectionProperty().bindBidirectional(bibleSelection);\n\n        showVerseNumSetting = Setting.of(LabelGrabber.INSTANCE.getLabel(\"show.verse.numbers\"),\n                showVerseNumProperty).customKey(showVerseNumbersKey);\n\n        splitVersesSetting = Setting.of(LabelGrabber.INSTANCE.getLabel(\"split.bible.verses\"),\n                splitVersesProperty).customKey(splitBibleVersesKey);\n\n        useMaxVersesSetting = Setting.of(LabelGrabber.INSTANCE.getLabel(\"max.items.per.slide\").replace(\"%\", LabelGrabber.INSTANCE.getLabel(\"verses\")),\n                useMaxVersesProperty).customKey(useMaxBibleCharsKey);\n\n        maxVersesSetting = Setting.of(\"\",\n                maxVersesProperty).customKey(maxBibleVersesKey);\n    }\n\n    public Category getBiblesTab() {\n        bindings.put((Field) maxVersesSetting.getElement(), useMaxVersesProperty.not());\n\n        return Category.of(LabelGrabber.INSTANCE.getLabel(\"bible.options.heading\"), new ImageView(new Image(\"file:icons/biblesettingsicon.png\")),\n                defaultBibleSetting,\n                showVerseNumSetting,\n                splitVersesSetting,\n                useMaxVersesSetting,\n                maxVersesSetting\n        );\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/options/OptionsDisplaySetupPanel.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify it under\n * the terms of the GNU General Public License as published by the Free Software\n * Foundation, either version 3 of the License, or (at your option) any later\n * version.\n *\n * This program is distributed in the hope that it will be useful, but WITHOUT\n * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\n * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License along with\n * this program. If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.options;\n\nimport com.dlsc.formsfx.model.structure.Field;\nimport com.dlsc.preferencesfx.model.Category;\nimport javafx.beans.value.ObservableValue;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.windows.main.GraphicsDeviceWatcher;\nimport org.quelea.windows.main.QueleaApp;\n\nimport java.util.HashMap;\n\n/**\n * A panel that the user uses to set up the displays that match to the outputs.\n * <p/>\n *\n * @author Arvid\n */\npublic class OptionsDisplaySetupPanel {\n    private HashMap<Field, ObservableValue> bindings;\n    private DisplayGroup controlScreen;\n    private DisplayGroup projectorScreen;\n    private DisplayGroup stageScreen;\n\n    /**\n     * Create a new display setup panel.\n     *\n     * @param bindings HashMap of bindings to setup after the dialog has been created\n     */\n    OptionsDisplaySetupPanel(HashMap<Field, ObservableValue> bindings) {\n        this.bindings = bindings;\n        controlScreen = new DisplayGroup(LabelGrabber.INSTANCE.getLabel(\"control.screen.label\"), false, bindings);\n        projectorScreen = new DisplayGroup(LabelGrabber.INSTANCE.getLabel(\"projector.screen.label\"), true, bindings);\n        stageScreen = new DisplayGroup(LabelGrabber.INSTANCE.getLabel(\"stage.screen.label\"), true, bindings);\n\n        GraphicsDeviceWatcher.INSTANCE.addGraphicsDeviceListener(devices -> {\n            QueleaApp.get().getMainWindow().getPreferencesDialog().updatePos();\n        });\n    }\n\n    Category getDisplaySetupTab() {\n        return Category.of(LabelGrabber.INSTANCE.getLabel(\"display.options.heading\"), new ImageView(new Image(\"file:icons/monitorsettingsicon.png\")),\n                controlScreen.getGroup(),\n                projectorScreen.getGroup(),\n                stageScreen.getGroup()\n        );\n    }\n\n\n    boolean isDisplayChange() {\n        return controlScreen.isDisplayChange() ||\n                projectorScreen.isDisplayChange() ||\n                stageScreen.isDisplayChange();\n    }\n\n    public void setDisplayChange(boolean displayChange) {\n        controlScreen.setDisplayChange(displayChange);\n        projectorScreen.setDisplayChange(displayChange);\n        stageScreen.setDisplayChange(displayChange);\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/options/OptionsGeneralPanel.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITYs or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.options;\n\nimport com.dlsc.formsfx.model.structure.DoubleField;\nimport com.dlsc.formsfx.model.structure.Field;\nimport com.dlsc.formsfx.model.structure.StringField;\nimport com.dlsc.preferencesfx.formsfx.view.controls.SimpleTextControl;\nimport com.dlsc.preferencesfx.model.Category;\nimport com.dlsc.preferencesfx.model.Group;\nimport com.dlsc.preferencesfx.model.Setting;\nimport javafx.beans.property.*;\nimport javafx.beans.value.ObservableValue;\nimport javafx.collections.FXCollections;\nimport javafx.collections.ObservableList;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.languages.LanguageFile;\nimport org.quelea.services.languages.LanguageFileManager;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.windows.options.customprefs.PercentSliderControl;\n\nimport java.util.Arrays;\nimport java.util.HashMap;\n\nimport static org.quelea.services.utils.QueleaPropertyKeys.*;\nimport static org.quelea.windows.options.PreferencesDialog.getPositionSelector;\nimport static org.quelea.windows.options.PreferencesDialog.getShowOnSlidesSelector;\n\n/**\n * A panel where the general options in the program are set.\n * <p/>\n *\n * @author Arvid\n */\npublic class OptionsGeneralPanel {\n    private BooleanProperty showSmallSongProperty;\n    private DoubleProperty smallSongSizeSpinnerProperty;\n    private DoubleField smallSongSizeControllerField;\n    private BooleanProperty showSmallBibleProperty;\n    private DoubleProperty smallBibleSizeSpinnerProperty;\n    private DoubleField smallBibleSizeControllerField;\n    private IntegerProperty thumbnailSizeProperty;\n    private IntegerProperty maxFontSizeProperty;\n    private IntegerProperty additionalSpacingProperty;\n    private IntegerProperty maxCharsProperty;\n    private ObservableList<LanguageFile> languageItemsList;\n    private ObjectProperty<LanguageFile> languageSelectionProperty;\n    private ObjectProperty<String> applicationThemeProperty;\n    private ObservableList<String> applicationThemeList;\n    private ObjectProperty<String> dbSongPreviewProperty;\n    private ObservableList<String> dbSongPreviewList;\n    private HashMap<Field, ObservableValue> bindings;\n    private StringProperty churchCcliNumProperty;\n    private BooleanProperty useDefaultTranslationProperty;\n    private StringProperty defaultTranslationNameProperty;\n    private StringField defaultTranslationNameField;\n\n    /**\n     * Create the options general panel.\n     *\n     * @param bindings HashMap of bindings to setup after the dialog has been created\n     */\n    OptionsGeneralPanel(HashMap<Field, ObservableValue> bindings) {\n        this.bindings = bindings;\n        showSmallSongProperty = new SimpleBooleanProperty(QueleaProperties.get().getSmallSongTextShow());\n        smallSongSizeSpinnerProperty = new SimpleDoubleProperty(QueleaProperties.get().getSmallSongTextSize());\n        smallSongSizeControllerField = Field.ofDoubleType(smallSongSizeSpinnerProperty).render(\n                new PercentSliderControl(0.01, 0.5, 10));\n\n        showSmallBibleProperty = new SimpleBooleanProperty(QueleaProperties.get().getSmallBibleTextShow());\n        smallBibleSizeSpinnerProperty = new SimpleDoubleProperty(QueleaProperties.get().getSmallBibleTextSize());\n        smallBibleSizeControllerField = Field.ofDoubleType(smallBibleSizeSpinnerProperty).render(\n                new PercentSliderControl(0.01, 0.5, 10));\n\n        thumbnailSizeProperty = new SimpleIntegerProperty(QueleaProperties.get().getThumbnailSize());\n        maxFontSizeProperty = new SimpleIntegerProperty((int) QueleaProperties.get().getMaxFontSize());\n        additionalSpacingProperty = new SimpleIntegerProperty((int) QueleaProperties.get().getAdditionalLineSpacing());\n        maxCharsProperty = new SimpleIntegerProperty(QueleaProperties.get().getMaxChars());\n\n        languageItemsList = FXCollections.observableArrayList(LanguageFileManager.INSTANCE.languageFiles());\n        languageSelectionProperty = new SimpleObjectProperty<>(LanguageFileManager.INSTANCE.getCurrentFile());\n\n        applicationThemeList = FXCollections.observableArrayList(Arrays.asList(\n                LabelGrabber.INSTANCE.getLabel(\"default.theme.label\"), LabelGrabber.INSTANCE.getLabel(\"dark.theme.label\"))\n        );\n        applicationThemeProperty = new SimpleObjectProperty<>(LabelGrabber.INSTANCE.getLabel(\"default.theme.label\"));\n\n        dbSongPreviewList = FXCollections.observableArrayList(Arrays.asList(\n                LabelGrabber.INSTANCE.getLabel(\"db.song.preview.label.control\"), LabelGrabber.INSTANCE.getLabel(\"db.song.preview.label.databasepreview\"),\n                LabelGrabber.INSTANCE.getLabel(\"db.song.preview.label.previewpane\"))\n        );\n        dbSongPreviewProperty = new SimpleObjectProperty<>(LabelGrabber.INSTANCE.getLabel(\"db.song.preview.label.control\"));\n\n        churchCcliNumProperty = new SimpleStringProperty(QueleaProperties.get().getChurchCcliNum());\n\n        useDefaultTranslationProperty = new SimpleBooleanProperty(QueleaProperties.get().getUseDefaultTranslation());\n        defaultTranslationNameProperty = new SimpleStringProperty(QueleaProperties.get().getDefaultTranslationName());\n        defaultTranslationNameField = Field.ofStringType(defaultTranslationNameProperty).render(new SimpleTextControl());\n    }\n\n    public Category getGeneralTab() {\n        bindings.put(smallSongSizeControllerField, showSmallSongProperty.not());\n        bindings.put(smallBibleSizeControllerField, showSmallBibleProperty.not());\n        bindings.put(defaultTranslationNameField, useDefaultTranslationProperty.not());\n\n        return Category.of(LabelGrabber.INSTANCE.getLabel(\"general.options.heading\"), new ImageView(new Image(\"file:icons/generalsettingsicon.png\")))\n                .subCategories(\n                        Category.of(LabelGrabber.INSTANCE.getLabel(\"interface.options.options\"),\n                                Group.of(LabelGrabber.INSTANCE.getLabel(\"general.interface.options\"),\n                                        Setting.of(LabelGrabber.INSTANCE.getLabel(\"interface.language.label\"), languageItemsList, languageSelectionProperty).customKey(languageFileKey),\n                                        Setting.of(LabelGrabber.INSTANCE.getLabel(\"interface.theme.label\"), applicationThemeList, applicationThemeProperty).customKey(darkThemeKey),\n                                        Setting.of(LabelGrabber.INSTANCE.getLabel(\"db.song.preview.label\"), dbSongPreviewList, dbSongPreviewProperty).customKey(dbSongPreviewKey),\n                                        Setting.of(LabelGrabber.INSTANCE.getLabel(\"show.video.library.panel\"), new SimpleBooleanProperty(QueleaProperties.get().getDisplayVideoTab())).customKey(videoTabKey),\n                                        Setting.of(LabelGrabber.INSTANCE.getLabel(\"show.extra.live.panel.toolbar.options.label\"), new SimpleBooleanProperty(QueleaProperties.get().getShowExtraLivePanelToolbarOptions())).customKey(showExtraLivePanelToolbarOptionsKey),\n                                        Setting.of(LabelGrabber.INSTANCE.getLabel(\"thumbnail.size.label\"), thumbnailSizeProperty, 100, 1000).customKey(thumbnailSizeKey),\n                                        Setting.of(LabelGrabber.INSTANCE.getLabel(\"link.preview.and.live.dividers.label\"), new SimpleBooleanProperty(QueleaProperties.get().getLinkPreviewAndLiveDividers())).customKey(linkPreviewAndLiveDividers)\n                                ),\n                                Group.of(LabelGrabber.INSTANCE.getLabel(\"small.song.text.options\"),\n                                        Setting.of(LabelGrabber.INSTANCE.getLabel(\"show.small.song.text.label\"), showSmallSongProperty).customKey(showSmallSongTextKey),\n                                        getShowOnSlidesSelector(LabelGrabber.INSTANCE.getLabel(\"show.small.song.on.slides.label\"), QueleaProperties.get().getSmallSongTextShowOnSlides(), showSmallSongProperty, bindings).customKey(smallSongTextShowOnSlidesKey),\n                                        getPositionSelector(LabelGrabber.INSTANCE.getLabel(\"small.song.position.label\"), false, QueleaProperties.get().getSmallSongTextPositionV(), showSmallSongProperty, bindings).customKey(smallSongTextVPositionKey),\n                                        getPositionSelector(LabelGrabber.INSTANCE.getLabel(\"small.song.position.label\"), true, QueleaProperties.get().getSmallSongTextPositionH(), showSmallSongProperty, bindings).customKey(smallSongTextHPositionKey),\n                                        Setting.of(LabelGrabber.INSTANCE.getLabel(\"small.song.size.label\"), smallSongSizeControllerField, smallSongSizeSpinnerProperty).customKey(smallSongTextSizeKey)\n                                ),\n                                Group.of(LabelGrabber.INSTANCE.getLabel(\"small.bible.text.options\"),\n                                        Setting.of(LabelGrabber.INSTANCE.getLabel(\"show.small.bible.text.label\"), showSmallBibleProperty).customKey(showSmallBibleTextKey),\n                                        getPositionSelector(LabelGrabber.INSTANCE.getLabel(\"small.bible.position.label\"), false, QueleaProperties.get().getSmallBibleTextPositionV(), showSmallBibleProperty, bindings).customKey(smallBibleTextVPositionKey),\n                                        getPositionSelector(LabelGrabber.INSTANCE.getLabel(\"small.bible.position.label\"), true, QueleaProperties.get().getSmallBibleTextPositionH(), showSmallBibleProperty, bindings).customKey(smallBibleTextHPositionKey),\n                                        Setting.of(LabelGrabber.INSTANCE.getLabel(\"small.bible.size.label\"), smallBibleSizeControllerField, smallBibleSizeSpinnerProperty).customKey(smallBibleTextSizeKey)\n                                )\n                        ),\n                        Category.of(LabelGrabber.INSTANCE.getLabel(\"user.options.options\"),\n                                Group.of(LabelGrabber.INSTANCE.getLabel(\"general.user.options\"),\n                                        Setting.of(LabelGrabber.INSTANCE.getLabel(\"check.for.update.label\"), new SimpleBooleanProperty(QueleaProperties.get().checkUpdate())).customKey(checkUpdateKey),\n                                        Setting.of(LabelGrabber.INSTANCE.getLabel(\"1.monitor.warn.label\"), new SimpleBooleanProperty(QueleaProperties.get().showSingleMonitorWarning())).customKey(singleMonitorWarningKey),\n                                        Setting.of(LabelGrabber.INSTANCE.getLabel(\"auto.translate.label\"), new SimpleBooleanProperty(QueleaProperties.get().getAutoTranslate())).customKey(autoTranslateKey),\n                                        Setting.of(LabelGrabber.INSTANCE.getLabel(\"ccli.number.label\"), churchCcliNumProperty).customKey(churchCcliNumKey)\n                                ),\n                                Group.of(LabelGrabber.INSTANCE.getLabel(\"theme.options\"),\n                                        Setting.of(LabelGrabber.INSTANCE.getLabel(\"allow.item.theme.override.global\"), new SimpleBooleanProperty(QueleaProperties.get().getItemThemeOverride())).customKey(itemThemeOverrideKey),\n                                        Setting.of(LabelGrabber.INSTANCE.getLabel(\"preview.on.image.change.label\"), new SimpleBooleanProperty(QueleaProperties.get().getPreviewOnImageUpdate())).customKey(previewOnImageChangeKey)\n                                ),\n                                Group.of(LabelGrabber.INSTANCE.getLabel(\"schedule.options\"),\n                                        Setting.of(LabelGrabber.INSTANCE.getLabel(\"one.line.mode.label\"), new SimpleBooleanProperty(QueleaProperties.get().getOneLineMode())).customKey(oneLineModeKey),\n                                        Setting.of(LabelGrabber.INSTANCE.getLabel(\"autoplay.vid.label\"), new SimpleBooleanProperty(QueleaProperties.get().getAutoPlayVideo())).customKey(autoplayVidKey),\n                                        Setting.of(LabelGrabber.INSTANCE.getLabel(\"advance.on.live.label\"), new SimpleBooleanProperty(QueleaProperties.get().getAdvanceOnLive())).customKey(advanceOnLiveKey),\n                                        Setting.of(LabelGrabber.INSTANCE.getLabel(\"overflow.song.label\"), new SimpleBooleanProperty(QueleaProperties.get().getSongOverflow())).customKey(songOverflowKey),\n                                        Setting.of(LabelGrabber.INSTANCE.getLabel(\"copy.song.db.default\"), new SimpleBooleanProperty(false)).customKey(defaultSongDbUpdateKey),\n                                        Setting.of(LabelGrabber.INSTANCE.getLabel(\"clear.live.on.remove.schedule\"), new SimpleBooleanProperty(QueleaProperties.get().getClearLiveOnRemove())).customKey(clearLiveOnRemoveKey),\n                                        Setting.of(LabelGrabber.INSTANCE.getLabel(\"embed.media.in.schedule\"), new SimpleBooleanProperty(QueleaProperties.get().getEmbedMediaInScheduleFile())).customKey(scheduleEmbedMediaKey),\n                                        Setting.of(LabelGrabber.INSTANCE.getLabel(\"slide.transition.label\"), new SimpleBooleanProperty(QueleaProperties.get().getUseSlideTransition())).customKey(useSlideTransitionKey)\n                                )\n\n                        ),\n                        Category.of(LabelGrabber.INSTANCE.getLabel(\"text.options.options\"),\n                                Group.of(LabelGrabber.INSTANCE.getLabel(\"general.text.options\"),\n                                        Setting.of(LabelGrabber.INSTANCE.getLabel(\"capitalise.start.line.label\"), new SimpleBooleanProperty(QueleaProperties.get().checkCapitalFirst())).customKey(capitalFirstKey),\n                                        Setting.of(LabelGrabber.INSTANCE.getLabel(\"uniform.font.size.label\"), new SimpleBooleanProperty(QueleaProperties.get().getUseUniformFontSize())).customKey(uniformFontSizeKey),\n                                        Setting.of(LabelGrabber.INSTANCE.getLabel(\"max.font.size.label\"), maxFontSizeProperty, 12, 300).customKey(maxFontSizeKey),\n                                        Setting.of(LabelGrabber.INSTANCE.getLabel(\"additional.line.spacing.label\"), additionalSpacingProperty, 0, 50).customKey(additionalLineSpacingKey),\n                                        Setting.of(LabelGrabber.INSTANCE.getLabel(\"max.chars.line.label\"), maxCharsProperty, 10, 160).customKey(maxCharsKey)\n                                ),\n                                Group.of(LabelGrabber.INSTANCE.getLabel(\"translation.text.options\"),\n                                        Setting.of(LabelGrabber.INSTANCE.getLabel(\"use.default.translation.label\"), useDefaultTranslationProperty).customKey(useDefaultTranslation),\n                                        Setting.of(LabelGrabber.INSTANCE.getLabel(\"translation.name.label\"), defaultTranslationNameField, defaultTranslationNameProperty).customKey(defaultTranslationName)\n                                )\n                        )\n                ).expand();\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/options/OptionsImportExportPanel.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.options;\n\nimport java.util.HashMap;\n\nimport com.dlsc.formsfx.model.structure.Field;\nimport com.dlsc.preferencesfx.model.Category;\nimport com.dlsc.preferencesfx.model.Group;\nimport com.dlsc.preferencesfx.model.Setting;\nimport javafx.beans.property.IntegerProperty;\nimport javafx.beans.property.SimpleIntegerProperty;\nimport javafx.beans.property.SimpleStringProperty;\nimport javafx.beans.property.StringProperty;\nimport javafx.beans.value.ObservableValue;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.QueleaProperties;\n\nimport static org.quelea.services.utils.QueleaPropertyKeys.*;\n\n/**\n * The panel that shows the recording options\n * <p/>\n *\n * @author Arvid\n */\npublic class OptionsImportExportPanel {\n    private HashMap<Field, ObservableValue> bindings;\n    private StringProperty elevantoClientIdProperty;\n    private IntegerProperty planningCenterPrevDaysProperty;\n\n    /**\n     * Create the options bible panel.\n     *\n     * @param bindings HashMap of bindings to setup after the dialog has been created\n     */\n    OptionsImportExportPanel(HashMap<Field, ObservableValue> bindings) {\n        this.bindings = bindings;\n        elevantoClientIdProperty = new SimpleStringProperty(QueleaProperties.get().getElevantoClientId());\n        planningCenterPrevDaysProperty = new SimpleIntegerProperty(QueleaProperties.get().getPlanningCentrePrevDays());\n    }\n\n    public Category getImportExportTab() {\n        return Category.of(LabelGrabber.INSTANCE.getLabel(\"importexport.options.heading\"), new ImageView(new Image(\"file:icons/arrows.png\")),\n                Group.of(LabelGrabber.INSTANCE.getLabel(\"elevanto.import.heading\"),\n                        Setting.of(LabelGrabber.INSTANCE.getLabel(\"client.id\"), elevantoClientIdProperty).customKey(elevantoClientIdKey)),\n                Group.of(LabelGrabber.INSTANCE.getLabel(\"pco.import.heading\"),\n                        Setting.of(LabelGrabber.INSTANCE.getLabel(\"pco.days.previous.setting\"), planningCenterPrevDaysProperty, 0, 730).customKey(planningCentrePrevDaysKey))\n        );\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/options/OptionsNoticePanel.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.options;\n\nimport java.util.HashMap;\n\nimport com.dlsc.formsfx.model.structure.Field;\nimport com.dlsc.preferencesfx.model.Category;\nimport com.dlsc.preferencesfx.model.Setting;\nimport javafx.beans.property.DoubleProperty;\nimport javafx.beans.property.SimpleDoubleProperty;\nimport javafx.beans.value.ObservableValue;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.QueleaProperties;\n\nimport static org.quelea.services.utils.QueleaPropertyKeys.*;\nimport static org.quelea.services.utils.QueleaPropertyKeys.noticeFontSizeKey;\nimport static org.quelea.windows.options.PreferencesDialog.getColorPicker;\nimport static org.quelea.windows.options.PreferencesDialog.getPositionSelector;\n\n/**\n * The panel that shows the notice options\n * <p/>\n *\n * @author Arvid\n */\npublic class OptionsNoticePanel {\n    private HashMap<Field, ObservableValue> bindings;\n    private DoubleProperty noticeSpeed;\n    private DoubleProperty noticeSize;\n\n    /**\n     * Create the options bible panel.\n     *\n     * @param bindings HashMap of bindings to setup after the dialog has been created\n     */\n    OptionsNoticePanel(HashMap<Field, ObservableValue> bindings) {\n        this.bindings = bindings;\n        noticeSpeed = new SimpleDoubleProperty(QueleaProperties.get().getNoticeSpeed());\n        noticeSize = new SimpleDoubleProperty(QueleaProperties.get().getNoticeFontSize());\n    }\n\n    public Category getNoticesTab() {\n        return Category.of(LabelGrabber.INSTANCE.getLabel(\"notice.options.heading\"), new ImageView(new Image(\"file:icons/noticessettingsicon.png\")),\n                getPositionSelector(LabelGrabber.INSTANCE.getLabel(\"notice.position.text\"), false, QueleaProperties.get().getNoticePosition().getText(), null, bindings).customKey(noticePositionKey),\n                getColorPicker(LabelGrabber.INSTANCE.getLabel(\"notice.background.colour.text\"), QueleaProperties.get().getNoticeBackgroundColour()).customKey(noticeBackgroundColourKey),\n                Setting.of(LabelGrabber.INSTANCE.getLabel(\"notice.speed.text\"), noticeSpeed, 2, 20, 1).customKey(noticeSpeedKey),\n                Setting.of(LabelGrabber.INSTANCE.getLabel(\"notice.font.size\"), noticeSize, 20, 100, 1).customKey(noticeFontSizeKey)\n        );\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/options/OptionsPresentationPanel.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.options;\n\nimport java.util.HashMap;\n\nimport com.dlsc.formsfx.model.structure.Field;\nimport com.dlsc.formsfx.model.structure.StringField;\nimport com.dlsc.preferencesfx.model.Category;\nimport com.dlsc.preferencesfx.model.Setting;\nimport javafx.beans.property.BooleanProperty;\nimport javafx.beans.property.SimpleBooleanProperty;\nimport javafx.beans.property.SimpleStringProperty;\nimport javafx.beans.property.StringProperty;\nimport javafx.beans.value.ObservableValue;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.options.customprefs.DirectorySelectorPreference;\n\nimport static org.quelea.services.utils.QueleaPropertyKeys.*;\nimport static org.quelea.services.utils.QueleaPropertyKeys.ooPathKey;\n\n/**\n * The panel that shows the presentation options\n * <p/>\n *\n * @author Arvid\n */\npublic class OptionsPresentationPanel {\n    private HashMap<Field, ObservableValue> bindings;\n    private BooleanProperty useOOProperty;\n    private StringProperty directoryChooserOOProperty;\n    private BooleanProperty usePPProperty;\n    private StringProperty directoryChooserPPProperty;\n\n    /**\n     * Create the options presentation panel.\n     *\n     * @param bindings HashMap of bindings to setup after the dialog has been created\n     */\n    OptionsPresentationPanel(HashMap<Field, ObservableValue> bindings) {\n        this.bindings = bindings;\n        useOOProperty = new SimpleBooleanProperty(QueleaProperties.get().getUseOO());\n        directoryChooserOOProperty = new SimpleStringProperty(QueleaProperties.get().getOOPath());\n\n        usePPProperty = new SimpleBooleanProperty(QueleaProperties.get().getUsePP());\n        directoryChooserPPProperty = new SimpleStringProperty(QueleaProperties.get().getPPPath());\n    }\n\n    public Category getPresentationsTab() {\n        StringField directoryFieldOOField = Field.ofStringType(directoryChooserOOProperty).render(\n                new DirectorySelectorPreference(LabelGrabber.INSTANCE.getLabel(\"browse\"), null));\n        bindings.put(directoryFieldOOField, useOOProperty.not());\n\n        if (!Utils.isLinux()) {\n            StringField directoryFieldPPField = Field.ofStringType(directoryChooserPPProperty).render(\n                    new DirectorySelectorPreference(LabelGrabber.INSTANCE.getLabel(\"browse\"), null));\n            bindings.put(directoryFieldPPField, usePPProperty.not());\n\n            return Category.of(LabelGrabber.INSTANCE.getLabel(\"presentation.options.heading\"), new ImageView(new Image(\"file:icons/presentationssettingsicon.png\")),\n                    Setting.of(LabelGrabber.INSTANCE.getLabel(\"use.oo.label\"), useOOProperty).customKey(useOoKey),\n                    Setting.of(LabelGrabber.INSTANCE.getLabel(\"oo.path\"), directoryFieldOOField, directoryChooserOOProperty).customKey(ooPathKey),\n                    Setting.of(LabelGrabber.INSTANCE.getLabel(\"use.pp.label\"), usePPProperty).customKey(usePpKey),\n                    Setting.of(LabelGrabber.INSTANCE.getLabel(\"pp.path\"), directoryFieldPPField, directoryChooserPPProperty).customKey(ppPathKey)\n            );\n        } else\n            return Category.of(LabelGrabber.INSTANCE.getLabel(\"presentation.options.heading\"), new ImageView(new Image(\"file:icons/presentationssettingsicon.png\")),\n                    Setting.of(LabelGrabber.INSTANCE.getLabel(\"use.oo.label\"), useOOProperty).customKey(useOoKey),\n                    Setting.of(LabelGrabber.INSTANCE.getLabel(\"oo.path\"), directoryFieldOOField, directoryChooserOOProperty).customKey(ooPathKey)\n            );\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/options/OptionsRecordingPanel.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.options;\n\nimport java.util.HashMap;\n\nimport com.dlsc.formsfx.model.structure.Field;\nimport com.dlsc.formsfx.model.structure.StringField;\nimport com.dlsc.preferencesfx.model.Category;\nimport com.dlsc.preferencesfx.model.Setting;\nimport javafx.beans.property.BooleanProperty;\nimport javafx.beans.property.SimpleBooleanProperty;\nimport javafx.beans.property.SimpleStringProperty;\nimport javafx.beans.property.StringProperty;\nimport javafx.beans.value.ObservableValue;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.windows.options.customprefs.DirectorySelectorPreference;\n\nimport static org.quelea.services.utils.QueleaPropertyKeys.convertMp3Key;\nimport static org.quelea.services.utils.QueleaPropertyKeys.recPathKey;\n\n/**\n * The panel that shows the recording options\n * <p/>\n *\n * @author Arvid\n */\npublic class OptionsRecordingPanel {\n    private HashMap<Field, ObservableValue> bindings;\n    private StringProperty recordingsDirectoryChooserProperty;\n    private StringField recordingsDirectoryField;\n    private BooleanProperty useConvertProperty;\n    private Setting useConvertSetting;\n    private boolean hasVLC;\n\n    /**\n     * Create the options bible panel.\n     *\n     * @param bindings HashMap of bindings to setup after the dialog has been created\n     * @param hasVLC   true if VLC is installed\n     */\n    OptionsRecordingPanel(HashMap<Field, ObservableValue> bindings, boolean hasVLC) {\n        this.bindings = bindings;\n        this.hasVLC = hasVLC;\n        recordingsDirectoryChooserProperty = new SimpleStringProperty(QueleaProperties.get().getRecordingsPath());\n        recordingsDirectoryField = Field.ofStringType(recordingsDirectoryChooserProperty).render(\n                new DirectorySelectorPreference(LabelGrabber.INSTANCE.getLabel(\"browse\"), null));\n\n        useConvertProperty = new SimpleBooleanProperty(QueleaProperties.get().getConvertRecordings());\n        useConvertSetting = Setting.of(LabelGrabber.INSTANCE.getLabel(\"convert.mp3\"), useConvertProperty).customKey(convertMp3Key);\n    }\n\n    public Category getRecordingsTab() {\n        bindings.put((Field) useConvertSetting.getElement(), new SimpleBooleanProperty(!hasVLC));\n\n        return Category.of(LabelGrabber.INSTANCE.getLabel(\"recordings.options.heading\"), new ImageView(new Image(\"file:icons/recordingssettingsicon.png\")),\n                Setting.of(LabelGrabber.INSTANCE.getLabel(\"recordings.path\"), recordingsDirectoryField, recordingsDirectoryChooserProperty).customKey(recPathKey),\n                useConvertSetting\n        );\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/options/OptionsServerSettingsPanel.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n * Copyright (C) 2012 Michael Berry\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.options;\n\nimport com.dlsc.formsfx.model.structure.Field;\nimport com.dlsc.formsfx.model.structure.StringField;\nimport com.dlsc.formsfx.model.validators.IntegerRangeValidator;\nimport com.dlsc.formsfx.model.validators.ValidationResult;\nimport com.dlsc.preferencesfx.model.Category;\nimport com.dlsc.preferencesfx.model.Group;\nimport com.dlsc.preferencesfx.model.Setting;\n\nimport java.util.HashMap;\n\nimport javafx.beans.property.BooleanProperty;\nimport javafx.beans.property.SimpleBooleanProperty;\nimport javafx.beans.property.SimpleStringProperty;\nimport javafx.beans.property.StringProperty;\nimport javafx.beans.value.ObservableValue;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\n\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.windows.options.customprefs.MobileServerPreference;\n\nimport static org.quelea.services.utils.QueleaPropertyKeys.*;\n\n/**\n * The panel that shows the mobile lyrics and remote control options.\n * <p>\n *\n * @author Arvid\n */\npublic class OptionsServerSettingsPanel {\n    private HashMap<Field, ObservableValue> bindings;\n    private MobileServerPreference lyricsPreference;\n    private MobileServerPreference remotePreference;\n    private BooleanProperty useMobileLyricsProperty;\n    private StringProperty lyricsPortNumberProperty;\n    private StringField mobileLyricsField;\n    private BooleanProperty useMobileRemoteProperty;\n    private StringProperty remotePortNumberProperty;\n    private StringField remoteField;\n    private StringProperty passwordProperty;\n\n    /**\n     * Create the server settings panel.\n     *\n     * @param bindings HashMap of bindings to setup after the dialog has been created\n     */\n    OptionsServerSettingsPanel(HashMap<Field, ObservableValue> bindings) {\n        this.bindings = bindings;\n        lyricsPreference = new MobileServerPreference(true);\n        remotePreference = new MobileServerPreference(false);\n\n        useMobileLyricsProperty = new SimpleBooleanProperty(QueleaProperties.get().getUseMobLyrics());\n        lyricsPortNumberProperty = new SimpleStringProperty(String.valueOf(QueleaProperties.get().getMobLyricsPort()));\n        mobileLyricsField = Field.ofStringType(lyricsPortNumberProperty).render(lyricsPreference);\n        mobileLyricsField.validate(this::validatePortNumber);\n        bindings.put(mobileLyricsField, useMobileLyricsProperty.not());\n\n        useMobileRemoteProperty = new SimpleBooleanProperty(QueleaProperties.get().getUseRemoteControl());\n        remotePortNumberProperty = new SimpleStringProperty(String.valueOf(QueleaProperties.get().getRemoteControlPort()));\n        remoteField = Field.ofStringType(remotePortNumberProperty).render(remotePreference);\n        remoteField.validate(this::validatePortNumber);\n        bindings.put(remoteField, useMobileRemoteProperty.not());\n\n        passwordProperty = new SimpleStringProperty(QueleaProperties.get().getRemoteControlPassword());\n    }\n\n    private ValidationResult validatePortNumber(String s) {\n        int portNum = 0;\n        try {\n            portNum = Integer.parseInt(s);\n        } catch (NumberFormatException ignored) {}\n        return IntegerRangeValidator.between(1029, 49151, LabelGrabber.INSTANCE.getLabel(\"enter.valid.port\")).validate(portNum);\n    }\n\n    public Category getServerTab() {\n        return Category.of(LabelGrabber.INSTANCE.getLabel(\"server.settings.heading\"),\n                new ImageView(new Image(\"file:icons/serversettingsicon.png\")),\n                Group.of(LabelGrabber.INSTANCE.getLabel(\"mobile.lyrics.heading\"),\n                        Setting.of(LabelGrabber.INSTANCE.getLabel(\"use.mobile.lyrics.label\"), useMobileLyricsProperty)\n                                .customKey(useMobLyricsKey),\n                        Setting.of(LabelGrabber.INSTANCE.getLabel(\"port.number.label\"), mobileLyricsField, lyricsPortNumberProperty)\n                                .customKey(mobLyricsPortKey)\n                ),\n                Group.of(LabelGrabber.INSTANCE.getLabel(\"mobile.remote.heading\"),\n                        Setting.of(LabelGrabber.INSTANCE.getLabel(\"use.remote.control.label\"), useMobileRemoteProperty)\n                                .customKey(useRemoteControlKey),\n                        Setting.of(LabelGrabber.INSTANCE.getLabel(\"port.number.label\"), remoteField, remotePortNumberProperty)\n                                .customKey(remoteControlPortKey),\n                        Setting.of(LabelGrabber.INSTANCE.getLabel(\"remote.control.password\"), passwordProperty)\n                                .customKey(remoteControlPasswordKey)\n                )\n        );\n    }\n\n    public MobileServerPreference getLyricsPreference() {\n        return lyricsPreference;\n    }\n\n    public MobileServerPreference getRemotePreference() {\n        return remotePreference;\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/options/OptionsStageViewPanel.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.options;\n\nimport com.dlsc.formsfx.model.structure.Field;\nimport com.dlsc.preferencesfx.model.Category;\nimport com.dlsc.preferencesfx.model.Setting;\nimport javafx.beans.property.ObjectProperty;\nimport javafx.beans.property.SimpleBooleanProperty;\nimport javafx.beans.property.SimpleObjectProperty;\nimport javafx.beans.value.ObservableValue;\nimport javafx.collections.FXCollections;\nimport javafx.collections.ObservableList;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport org.quelea.data.displayable.TextAlignment;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\n\nimport java.util.ArrayList;\nimport java.util.HashMap;\n\nimport static org.quelea.services.utils.QueleaPropertyKeys.*;\nimport static org.quelea.services.utils.QueleaPropertyKeys.use24hClockKey;\nimport static org.quelea.windows.options.PreferencesDialog.getColorPicker;\n\n/**\n * The panel that shows the stage view options.\n *\n * @author Arvid\n */\npublic class OptionsStageViewPanel {\n    private HashMap<Field, ObservableValue> bindings;\n    private ObservableList<String> lineAlignmentList;\n    private ObjectProperty<String> alignmentSelectionProperty;\n\n    private ObservableList<String> fontsList;\n    private ObjectProperty<String> fontSelectionProperty;\n\n    /**\n     * Create the stage view options panel.\n     * @param bindings HashMap of bindings to setup after the dialog has been created\n     */\n    OptionsStageViewPanel(HashMap<Field, ObservableValue> bindings) {\n        this.bindings = bindings;\n        ArrayList<String> textAlignment = new ArrayList<>();\n        for (TextAlignment alignment : TextAlignment.values()) {\n            textAlignment.add(alignment.toFriendlyString());\n        }\n        lineAlignmentList = FXCollections.observableArrayList(textAlignment);\n        alignmentSelectionProperty = new SimpleObjectProperty<>(QueleaProperties.get().getStageTextAlignment());\n\n        fontsList = FXCollections.observableArrayList(Utils.getAllFonts());\n        fontSelectionProperty = new SimpleObjectProperty<>(QueleaProperties.get().getStageTextFont());\n    }\n\n    public Category getStageViewTab() {\n        return Category.of(LabelGrabber.INSTANCE.getLabel(\"stage.options.heading\"), new ImageView(new Image(\"file:icons/stageviewsettingsicon.png\")),\n                Setting.of(LabelGrabber.INSTANCE.getLabel(\"stage.show.chords\"), new SimpleBooleanProperty(QueleaProperties.get().getShowChords())).customKey(stageShowChordsKey),\n                Setting.of(LabelGrabber.INSTANCE.getLabel(\"stage.line.alignment\"), lineAlignmentList, alignmentSelectionProperty).customKey(stageTextAlignmentKey),\n                Setting.of(LabelGrabber.INSTANCE.getLabel(\"stage.font.selection\"), fontsList, fontSelectionProperty).customKey(stageFontKey),\n                getColorPicker(LabelGrabber.INSTANCE.getLabel(\"stage.background.colour\"), QueleaProperties.get().getStageBackgroundColor()).customKey(stageBackgroundColorKey),\n                getColorPicker(LabelGrabber.INSTANCE.getLabel(\"stage.lyrics.colour\"), QueleaProperties.get().getStageLyricsColor()).customKey(stageLyricsColorKey),\n                getColorPicker(LabelGrabber.INSTANCE.getLabel(\"stage.chord.colour\"), QueleaProperties.get().getStageChordColor()).customKey(stageChordColorKey),\n                Setting.of(LabelGrabber.INSTANCE.getLabel(\"clear.stage.view\"), new SimpleBooleanProperty(QueleaProperties.get().getClearStageWithMain())).customKey(clearStageviewWithMainKey),\n                Setting.of(LabelGrabber.INSTANCE.getLabel(\"black.stage.view\"), new SimpleBooleanProperty(QueleaProperties.get().getBlackStageWithMain())).customKey(blackStageviewWithMainKey),\n                Setting.of(LabelGrabber.INSTANCE.getLabel(\"stage.show.clock\"), new SimpleBooleanProperty(QueleaProperties.get().getStageShowClock())).customKey(stageShowClockKey),\n                Setting.of(LabelGrabber.INSTANCE.getLabel(\"use.24h.clock\"), new SimpleBooleanProperty(QueleaProperties.get().getUse24HourClock())).customKey(use24hClockKey)\n        );\n    }\n\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/options/PreferenceStorageHandler.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITYs or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.options;\n\nimport com.dlsc.preferencesfx.model.Setting;\nimport com.dlsc.preferencesfx.util.StorageHandler;\nimport com.google.gson.Gson;\nimport javafx.collections.ObservableList;\nimport org.javafx.dialog.Dialog;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.languages.LanguageFile;\nimport org.quelea.services.languages.LanguageFileManager;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.QueleaPropertyKeys;\nimport org.quelea.windows.main.QueleaApp;\n\nimport java.util.prefs.BackingStoreException;\nimport java.util.prefs.Preferences;\n\nimport static com.dlsc.preferencesfx.util.Constants.*;\n\n/**\n * Handles everything related to storing values of {@link Setting} using {@link Preferences}.\n *\n * @author Arvid\n */\npublic class PreferenceStorageHandler implements StorageHandler {\n\n    private Preferences preferences;\n    private Gson gson;\n\n    public PreferenceStorageHandler(Class<?> saveClass) {\n        preferences = Preferences.userNodeForPackage(saveClass);\n        gson = new Gson();\n    }\n\n    /**\n     * Stores the last selected category in TreeSearchView.\n     *\n     * @param breadcrumb the category path as a breadcrumb string\n     */\n    public void saveSelectedCategory(String breadcrumb) {\n        preferences.put(SELECTED_CATEGORY, breadcrumb);\n    }\n\n    /**\n     * Gets the last selected category in TreeSearchView.\n     *\n     * @return the breadcrumb string of the selected category. null if none is found\n     */\n    public String loadSelectedCategory() {\n        return preferences.get(SELECTED_CATEGORY, null);\n    }\n\n    /**\n     * Stores the given divider position of the MasterDetailPane.\n     *\n     * @param dividerPosition the divider position to be stored\n     */\n    public void saveDividerPosition(double dividerPosition) {\n        preferences.putDouble(DIVIDER_POSITION, dividerPosition);\n    }\n\n    /**\n     * Gets the stored divider position of the MasterDetailPane.\n     *\n     * @return the double value of the divider position. 0.2 if none is found\n     */\n    public double loadDividerPosition() {\n        return preferences.getDouble(DIVIDER_POSITION, DEFAULT_DIVIDER_POSITION);\n    }\n\n    /**\n     * Stores the window width of the PreferencesFxDialog.\n     *\n     * @param windowWidth the width of the window to be stored\n     */\n    public void saveWindowWidth(double windowWidth) {\n        preferences.putDouble(WINDOW_WIDTH, windowWidth);\n    }\n\n    /**\n     * Searches for the window width of the PreferencesFxDialog.\n     *\n     * @return the double value of the window width. 1000 if none is found\n     */\n    public double loadWindowWidth() {\n        return preferences.getDouble(WINDOW_WIDTH, DEFAULT_PREFERENCES_WIDTH);\n    }\n\n    /**\n     * Stores the window height of the PreferencesFxDialog.\n     *\n     * @param windowHeight the height of the window to be stored\n     */\n    public void saveWindowHeight(double windowHeight) {\n        preferences.putDouble(WINDOW_HEIGHT, windowHeight);\n    }\n\n    /**\n     * Searches for the window height of the PreferencesFxDialog.\n     *\n     * @return the double value of the window height. 700 if none is found\n     */\n    public double loadWindowHeight() {\n        return preferences.getDouble(WINDOW_HEIGHT, DEFAULT_PREFERENCES_HEIGHT);\n    }\n\n    /**\n     * Stores the position of the PreferencesFxDialog in horizontal orientation.\n     *\n     * @param windowPosX the double value of the window position in horizontal orientation\n     */\n    public void saveWindowPosX(double windowPosX) {\n        preferences.putDouble(WINDOW_POS_X, windowPosX);\n    }\n\n    /**\n     * Searches for the horizontal window position.\n     *\n     * @return the double value of the horizontal window position\n     */\n    public double loadWindowPosX() {\n        return preferences.getDouble(WINDOW_POS_X, DEFAULT_PREFERENCES_POS_X);\n    }\n\n    /**\n     * Stores the position of the PreferencesFxDialog in vertical orientation.\n     *\n     * @param windowPosY the double value of the window position in vertical orientation\n     */\n    public void saveWindowPosY(double windowPosY) {\n        preferences.putDouble(WINDOW_POS_Y, windowPosY);\n    }\n\n    /**\n     * Searches for the vertical window position.\n     *\n     * @return the double value of the vertical window position\n     */\n    public double loadWindowPosY() {\n        return preferences.getDouble(WINDOW_POS_Y, DEFAULT_PREFERENCES_POS_Y);\n    }\n\n    /**\n     * Serializes a given Object and saves it to the preferences using the given key.\n     *\n     * @param breadcrumb the key which is used to save the serialized Object\n     * @param object     the Object which will be saved\n     */\n    // asciidoctor Documentation - tag::storageHandlerSave[]\n    public void saveObject(String breadcrumb, Object object) {\n        if (object == null) {\n            object = \"\";\n        }\n        switch (breadcrumb) {\n            case QueleaPropertyKeys.languageFileKey:\n                if (object instanceof LanguageFile && !object.equals(new LanguageFile(QueleaProperties.get().getLanguageFile()))) {\n                    QueleaProperties.get().setLanguageFile(((LanguageFile) object).getFile().getName());\n                    Dialog.showInfo(LabelGrabber.INSTANCE.getLabel(\"language.changed\"), LabelGrabber.INSTANCE.getLabel(\"language.changed.message\"), QueleaApp.get().getMainWindow());\n                }\n                break;\n            case QueleaPropertyKeys.darkThemeKey:\n                if ((QueleaProperties.get().getUseDarkTheme() && object.toString().equals(LabelGrabber.INSTANCE.getLabel(\"default.theme.label\"))) ||\n                        (!QueleaProperties.get().getUseDarkTheme() && object.toString().equals(LabelGrabber.INSTANCE.getLabel(\"dark.theme.label\")))) {\n                    Dialog.showInfo(LabelGrabber.INSTANCE.getLabel(\"theme.changed\"), LabelGrabber.INSTANCE.getLabel(\"theme.changed.message\"), QueleaApp.get().getMainWindow());\n                }\n                QueleaProperties.get().setUseDarkTheme(object.toString().equals(LabelGrabber.INSTANCE.getLabel(\"dark.theme.label\")));\n                break;\n            case QueleaPropertyKeys.projectorModeKey:\n                if (Boolean.parseBoolean(object.toString())) {\n                    QueleaProperties.get().setProjectorModeCoords();\n                } else {\n                    QueleaProperties.get().setProjectorModeScreen();\n                }\n                break;\n            case QueleaPropertyKeys.stageModeKey:\n                if (Boolean.parseBoolean(object.toString())) {\n                    QueleaProperties.get().setStageModeCoords();\n                } else {\n                    QueleaProperties.get().setStageModeScreen();\n                }\n                break;\n            case QueleaPropertyKeys.projectorHCoordKey:\n                QueleaProperties.get().setHeightProjectorCoord(object.toString());\n                break;\n            case QueleaPropertyKeys.projectorWCoordKey:\n                QueleaProperties.get().setWidthProjectorCoord(object.toString());\n                break;\n            case QueleaPropertyKeys.projectorXCoordKey:\n                QueleaProperties.get().setXProjectorCoord(object.toString());\n                break;\n            case QueleaPropertyKeys.projectorYCoordKey:\n                QueleaProperties.get().setYProjectorCoord(object.toString());\n                break;\n            case QueleaPropertyKeys.stageHCoordKey:\n                QueleaProperties.get().setHeightStageCoord(object.toString());\n                break;\n            case QueleaPropertyKeys.stageWCoordKey:\n                QueleaProperties.get().setWidthStageCoord(object.toString());\n                break;\n            case QueleaPropertyKeys.stageXCoordKey:\n                QueleaProperties.get().setXStageCoord(object.toString());\n                break;\n            case QueleaPropertyKeys.stageYCoordKey:\n                QueleaProperties.get().setYStageCoord(object.toString());\n                break;\n            case QueleaPropertyKeys.stageScreenKey:\n                if (object.toString().equals(LabelGrabber.INSTANCE.getLabel(\"none.text\"))) {\n                    QueleaProperties.get().setStageScreen(-1);\n                } else {\n                    int newPos = Integer.parseInt(\n                            object.toString().replace(LabelGrabber.INSTANCE.getLabel(\"output.text\"), \"\").trim()) - 1;\n                    QueleaProperties.get().setStageScreen(newPos);\n                }\n                break;\n            case QueleaPropertyKeys.projectorScreenKey:\n                if (object.toString().equals(LabelGrabber.INSTANCE.getLabel(\"none.text\"))) {\n                    QueleaProperties.get().setProjectorScreen(-1);\n                } else {\n                    int newPos = Integer.parseInt(\n                            object.toString().replace(LabelGrabber.INSTANCE.getLabel(\"output.text\"), \"\").trim()) - 1;\n                    QueleaProperties.get().setProjectorScreen(newPos);\n                }\n                break;\n            case QueleaPropertyKeys.controlScreenKey:\n                int newPos = Integer.parseInt(\n                        object.toString().replace(LabelGrabber.INSTANCE.getLabel(\"output.text\"), \"\").trim()) - 1;\n                QueleaProperties.get().setControlScreen(newPos);\n                break;\n            case QueleaPropertyKeys.noticePositionKey:\n            case QueleaPropertyKeys.smallBibleTextHPositionKey:\n            case QueleaPropertyKeys.smallBibleTextVPositionKey:\n            case QueleaPropertyKeys.smallSongTextHPositionKey:\n            case QueleaPropertyKeys.smallSongTextVPositionKey:\n            case QueleaPropertyKeys.smallSongTextShowOnSlidesKey:\n            case QueleaPropertyKeys.stageTextAlignmentKey:\n                String pos = LabelGrabber.INSTANCE.getEngKey(object.toString());\n                if (pos != null) {\n                    pos = pos.toLowerCase();\n                    if (breadcrumb.contains(\"alignment\"))\n                        pos = pos.toUpperCase();\n                    QueleaProperties.get().setProperty(breadcrumb, pos);\n                }\n                break;\n            case QueleaPropertyKeys.mobLyricsPortKey:\n            case QueleaPropertyKeys.remoteControlPortKey:\n            case QueleaPropertyKeys.remoteControlPasswordKey:\n            case QueleaPropertyKeys.useRemoteControlKey:\n            case QueleaPropertyKeys.useMobLyricsKey:\n                if (QueleaProperties.get().getProperty(breadcrumb) != null && !QueleaProperties.get().getProperty(breadcrumb).equals(object.toString())) {\n                    Dialog.showInfo(LabelGrabber.INSTANCE.getLabel(\"server.changed.label\"), LabelGrabber.INSTANCE.getLabel(\"server.changed.message\"), QueleaApp.get().getMainWindow());\n                }\n                if (breadcrumb.equals(QueleaPropertyKeys.remoteControlPasswordKey) && object.toString().trim().isEmpty()) {\n                    Dialog.showInfo(LabelGrabber.INSTANCE.getLabel(\"password.empty.label\"), LabelGrabber.INSTANCE.getLabel(\"password.empty.message\"), QueleaApp.get().getMainWindow());\n                    QueleaProperties.get().setProperty(breadcrumb, \"quelea\");\n                } else {\n                    QueleaProperties.get().setProperty(breadcrumb, object.toString());\n                }\n                break;\n            case QueleaPropertyKeys.usePpKey:\n                if (QueleaProperties.get().getUsePP() != Boolean.parseBoolean(object.toString())) {\n                    Dialog.showInfo(LabelGrabber.INSTANCE.getLabel(\"presentation.changed.label\"), LabelGrabber.INSTANCE.getLabel(\"presentation.changed.message\"), QueleaApp.get().getMainWindow());\n                }\n                QueleaProperties.get().setProperty(breadcrumb, object.toString());\n                break;\n            case QueleaPropertyKeys.dbSongPreviewKey:\n                if (object.toString().equals(LabelGrabber.INSTANCE.getLabel(\"db.song.preview.label.databasepreview\"))) {\n                    QueleaProperties.get().setShowDBSongPreview(true);\n                    QueleaProperties.get().setImmediateSongDBPreview(false);\n                } else if (object.toString().equals(LabelGrabber.INSTANCE.getLabel(\"db.song.preview.label.previewpane\"))) {\n                    QueleaProperties.get().setShowDBSongPreview(false);\n                    QueleaProperties.get().setImmediateSongDBPreview(true);\n                } else {\n                    QueleaProperties.get().setShowDBSongPreview(false);\n                    QueleaProperties.get().setImmediateSongDBPreview(false);\n                }\n                break;\n            case QueleaPropertyKeys.smallBibleTextSizeKey:\n            case QueleaPropertyKeys.smallSongTextSizeKey:\n                QueleaProperties.get().setProperty(breadcrumb, String.valueOf(Double.parseDouble(object.toString())));\n                break;\n            case QueleaPropertyKeys.defaultSongDbUpdateKey:\n                QueleaProperties.get().setDefaultSongDBUpdate(!Boolean.parseBoolean(object.toString()));\n                break;\n            default:\n                QueleaProperties.get().setProperty(breadcrumb, object.toString());\n        }\n    }\n\n    // asciidoctor Documentation - end::storageHandlerSave[]\n\n    /**\n     * Searches in the preferences after a serialized Object using the given key,\n     * deserializes and returns it. Returns a default Object if nothing is found.\n     *\n     * @param breadcrumb    the key which is used to search the serialized Object\n     * @param defaultObject the Object which will be returned if nothing is found\n     * @return the deserialized Object or the default Object if nothing is found\n     */\n    // asciidoctor Documentation - tag::storageHandlerLoad[]\n    public Object loadObject(String breadcrumb, Object defaultObject) {\n        if (breadcrumb.equals(QueleaPropertyKeys.languageFileKey)) {\n            return LanguageFileManager.INSTANCE.getCurrentFile();\n        }\n        String property = QueleaProperties.get().getProperty(breadcrumb);\n        if (property == null) {\n            return defaultObject;\n        } else {\n            switch (breadcrumb) {\n                case QueleaPropertyKeys.mobLyricsPortKey:\n                case QueleaPropertyKeys.remoteControlPortKey:\n                    return property;\n                case QueleaPropertyKeys.darkThemeKey:\n                    return LabelGrabber.INSTANCE.getLabel(QueleaProperties.get().getUseDarkTheme() ? \"dark.theme.label\" : \"default.theme.label\");\n                case QueleaPropertyKeys.projectorModeKey:\n                case QueleaPropertyKeys.stageModeKey:\n                    return property.equals(\"coords\");\n                case QueleaPropertyKeys.projectorHCoordKey:\n                    return QueleaProperties.get().getProjectorCoords().getHeight();\n                case QueleaPropertyKeys.projectorWCoordKey:\n                    return QueleaProperties.get().getProjectorCoords().getWidth();\n                case QueleaPropertyKeys.projectorXCoordKey:\n                    return QueleaProperties.get().getProjectorCoords().getMinX();\n                case QueleaPropertyKeys.projectorYCoordKey:\n                    return QueleaProperties.get().getProjectorCoords().getMinY();\n                case QueleaPropertyKeys.stageHCoordKey:\n                    return QueleaProperties.get().getStageCoords().getHeight();\n                case QueleaPropertyKeys.stageWCoordKey:\n                    return QueleaProperties.get().getStageCoords().getWidth();\n                case QueleaPropertyKeys.stageXCoordKey:\n                    return QueleaProperties.get().getStageCoords().getMinX();\n                case QueleaPropertyKeys.stageYCoordKey:\n                    return QueleaProperties.get().getStageCoords().getMinY();\n                case QueleaPropertyKeys.stageScreenKey:\n                    int screenNum = QueleaProperties.get().getStageScreen();\n                    if (screenNum == -1) {\n                        return LabelGrabber.INSTANCE.getLabel(\"none.text\");\n                    } else {\n                        return LabelGrabber.INSTANCE.getLabel(\"output.text\") + \" \" + (screenNum + 1);\n                    }\n                case QueleaPropertyKeys.projectorScreenKey:\n                    screenNum = QueleaProperties.get().getProjectorScreen();\n                    if (screenNum == -1) {\n                        return LabelGrabber.INSTANCE.getLabel(\"none.text\");\n                    } else {\n                        return LabelGrabber.INSTANCE.getLabel(\"output.text\") + \" \" + (screenNum + 1);\n                    }\n                case QueleaPropertyKeys.controlScreenKey:\n                    screenNum = QueleaProperties.get().getControlScreen();\n                    return LabelGrabber.INSTANCE.getLabel(\"output.text\") + \" \" + (screenNum + 1);\n                case QueleaPropertyKeys.dbSongPreviewKey:\n                    if (QueleaProperties.get().getShowDBSongPreview()) {\n                        return LabelGrabber.INSTANCE.getLabel(\"db.song.preview.label.databasepreview\");\n                    } else if (QueleaProperties.get().getImmediateSongDBPreview()) {\n                        return LabelGrabber.INSTANCE.getLabel(\"db.song.preview.label.previewpane\");\n                    } else {\n                        return LabelGrabber.INSTANCE.getLabel(\"db.song.preview.label.control\");\n                    }\n                case QueleaPropertyKeys.defaultSongDbUpdateKey:\n                    return !QueleaProperties.get().getDefaultSongDBUpdate();\n                case QueleaPropertyKeys.elevantoClientIdKey:\n                    return QueleaProperties.get().getElevantoClientId();\n                case QueleaPropertyKeys.churchCcliNumKey:\n                    return QueleaProperties.get().getChurchCcliNum();\n                default:\n                    try {\n                        Object object = gson.fromJson(property, Object.class);\n                        if (breadcrumb.contains(\"position\") || breadcrumb.contains(\"alignment\") || breadcrumb.contains(\"show.on.slides\")) {\n                            return LabelGrabber.INSTANCE.getLabel(object.toString().toLowerCase());\n                        } else if(breadcrumb.equals(\"remote.control.password\")) {\n                            return object.toString();\n                        } else {\n                            return object;\n                        }\n                    } catch (com.google.gson.JsonSyntaxException e) {\n                        return property;\n                    }\n            }\n        }\n    }\n\n    // asciidoctor Documentation - end::storageHandlerLoad[]\n\n    /**\n     * Searches in the preferences after a serialized ArrayList using the given key,\n     * deserializes and returns it as ObservableArrayList.\n     * When an ObservableList is deserialzed, Gson returns an ArrayList\n     * and needs to be wrapped into an ObservableArrayList. This is only needed for loading.\n     *\n     * @param breadcrumb            the key which is used to search the serialized ArrayList\n     * @param defaultObservableList the default ObservableList\n     *                              which will be returned if nothing is found\n     * @return the deserialized ObservableList or the default ObservableList if nothing is found\n     */\n    public ObservableList loadObservableList(\n            String breadcrumb,\n            ObservableList defaultObservableList\n    ) {\n//        String serializedDefault = gson.toJson(defaultObservableList);\n//        String json = preferences.get(hash(breadcrumb), serializedDefault);\n//        return FXCollections.observableArrayList(gson.fromJson(json, ArrayList.class));\n        return defaultObservableList;\n    }\n\n    /**\n     * Clears the preferences.\n     *\n     * @return true if successful, false if there was an exception.\n     */\n    public boolean clearPreferences() {\n        try {\n            preferences.clear();\n        } catch (BackingStoreException e) {\n            return false;\n        }\n        return true;\n    }\n\n    public Preferences getPreferences() {\n        return preferences;\n    }\n\n    @Override\n    public <T> T loadObject(String breadcrumb, Class<T> type, T defaultObject) {\n        throw new UnsupportedOperationException();\n    }\n\n    @Override\n    public <T> ObservableList<T> loadObservableList(String breadcrumb, Class<T> type, ObservableList<T> defaultObservableList) {\n        throw new UnsupportedOperationException();\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/options/PreferencesDialog.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITYs or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.options;\n\nimport com.dlsc.formsfx.model.structure.Field;\nimport com.dlsc.formsfx.model.structure.StringField;\nimport com.dlsc.preferencesfx.PreferencesFx;\nimport com.dlsc.preferencesfx.formsfx.view.controls.SimpleControl;\nimport com.dlsc.preferencesfx.model.Setting;\nimport javafx.application.Platform;\nimport javafx.beans.property.BooleanProperty;\nimport javafx.beans.property.SimpleObjectProperty;\nimport javafx.beans.property.SimpleStringProperty;\nimport javafx.beans.property.StringProperty;\nimport javafx.beans.value.ObservableValue;\nimport javafx.collections.FXCollections;\nimport javafx.collections.ObservableList;\nimport javafx.event.ActionEvent;\nimport javafx.geometry.Bounds;\nimport javafx.geometry.Insets;\nimport javafx.geometry.Pos;\nimport javafx.scene.Scene;\nimport javafx.scene.control.Button;\nimport javafx.scene.control.SplitPane;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.layout.BorderPane;\nimport javafx.scene.paint.Color;\nimport javafx.stage.Modality;\nimport javafx.stage.Screen;\nimport javafx.stage.Stage;\nimport javafx.stage.WindowEvent;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.DisplayStage;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.windows.options.customprefs.ColorPickerPreference;\n\nimport java.util.HashMap;\n\npublic class PreferencesDialog extends Stage {\n    private PreferencesFx preferencesFx;\n    private final BorderPane mainPane;\n    private final Button okButton;\n    private final OptionsGeneralPanel generalPanel;\n    private final OptionsDisplaySetupPanel displayPanel;\n    private final OptionsNoticePanel noticePanel;\n    private final OptionsPresentationPanel presentationPanel;\n    private final OptionsBiblePanel biblePanel;\n    private final OptionsStageViewPanel stageViewPanel;\n    private final OptionsServerSettingsPanel optionsServerSettingsPanel;\n    private final OptionsRecordingPanel recordingPanel;\n    private final OptionsImportExportPanel importExportPanel;\n    private HashMap<Field, ObservableValue> bindings = new HashMap<>();\n    private boolean previousLinkPreviewLiveDividers;\n\n    /**\n     * Create a new preference dialog.\n     *\n     * @author Arvid\n     */\n    public PreferencesDialog(Class parent, boolean hasVLC) {\n        setTitle(LabelGrabber.INSTANCE.getLabel(\"options.title\"));\n        initModality(Modality.APPLICATION_MODAL);\n        initOwner(QueleaApp.get().getMainWindow());\n        getIcons().add(new Image(\"file:icons/options.png\", 16, 16, false, true));\n        mainPane = new BorderPane();\n\n        generalPanel = new OptionsGeneralPanel(bindings);\n        displayPanel = new OptionsDisplaySetupPanel(bindings);\n        stageViewPanel = new OptionsStageViewPanel(bindings);\n        noticePanel = new OptionsNoticePanel(bindings);\n        presentationPanel = new OptionsPresentationPanel(bindings);\n        biblePanel = new OptionsBiblePanel(bindings);\n        optionsServerSettingsPanel = new OptionsServerSettingsPanel(bindings);\n        recordingPanel = new OptionsRecordingPanel(bindings, hasVLC);\n        importExportPanel = new OptionsImportExportPanel(bindings);\n\n        preferencesFx =\n                PreferencesFx.of(new PreferenceStorageHandler(parent),\n                        generalPanel.getGeneralTab(),\n                        displayPanel.getDisplaySetupTab(),\n                        stageViewPanel.getStageViewTab(),\n                        noticePanel.getNoticesTab(),\n                        presentationPanel.getPresentationsTab(),\n                        biblePanel.getBiblesTab(),\n                        optionsServerSettingsPanel.getServerTab(),\n                        recordingPanel.getRecordingsTab(),\n                        importExportPanel.getImportExportTab()\n                );\n\n        okButton = new Button(LabelGrabber.INSTANCE.getLabel(\"ok.button\"), new ImageView(new Image(\"file:icons/tick.png\")));\n        BorderPane.setMargin(okButton, new Insets(5));\n        okButton.setOnAction((ActionEvent t) -> {\n            preferencesFx.saveSettings();\n            if (displayPanel.isDisplayChange()) {\n                updatePos();\n            }\n            displayPanel.setDisplayChange(false);\n            QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getThemeNode().refresh();\n\n            // If the option has changed for linking the preview and live dividers, update the current UI to respect\n            // the options now\n            if( previousLinkPreviewLiveDividers != QueleaProperties.get().getLinkPreviewAndLiveDividers() ) {\n                // Get both the preview and live split panes\n                SplitPane previewSplit = QueleaApp.get().getMainWindow().getMainPanel().getPreviewPanel().getLyricsPanel().getSplitPane();\n                SplitPane liveSplit = QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().getLyricsPanel().getSplitPane();\n\n                if( QueleaProperties.get().getLinkPreviewAndLiveDividers() ) {\n                    // If the option is now to have them linked, need to move the preview divider to line up with the\n                    // live one, before linking them together\n                    previewSplit.setDividerPositions(liveSplit.getDividerPositions()[0]);\n                    previewSplit.getDividers().get(0).positionProperty().\n                            bindBidirectional(liveSplit.getDividers().get(0).positionProperty());\n                } else {\n                    // Option is now to have them unlinked, so do that\n                    previewSplit.getDividers().get(0).positionProperty().\n                            unbindBidirectional(liveSplit.getDividers().get(0).positionProperty());\n                }\n            }\n\n            hide();\n        });\n        BorderPane.setAlignment(okButton, Pos.CENTER);\n\n        mainPane.setBottom(okButton);\n        mainPane.setMinWidth(1005);\n        mainPane.setMinHeight(600);\n        mainPane.setCenter(preferencesFx.getView().getCenter());\n\n        Scene scene = new Scene(mainPane);\n        if (QueleaProperties.get().getUseDarkTheme()) {\n            scene.getStylesheets().add(\"org/modena_dark.css\");\n        }\n        setScene(scene);\n\n        getScene().getWindow().addEventFilter(WindowEvent.WINDOW_SHOWN, e -> callBeforeShowing());\n        getScene().getWindow().addEventFilter(WindowEvent.WINDOW_CLOSE_REQUEST, e -> callBeforeHiding());\n\n        bindings.forEach(this::bind);\n    }\n\n    private void callBeforeShowing() {\n        getDisplaySetupPanel().setDisplayChange(false);\n\n        // Before showing the preferences dialog we save the current state of the link preview and live dividers so\n        // that we can tell if it has been changed and whether we need to action anything\n        previousLinkPreviewLiveDividers = QueleaProperties.get().getLinkPreviewAndLiveDividers();\n    }\n\n    private void bind(Field field, ObservableValue<? extends Boolean> booleanProperty) {\n        ((SimpleControl) field.getRenderer()).getNode().disableProperty().bind(booleanProperty);\n    }\n\n    public static Setting getColorPicker(String label, Color color) {\n        StringProperty property = new SimpleStringProperty(QueleaProperties.get().getStr(color));\n        StringField field = Field.ofStringType(property).render(\n                new ColorPickerPreference(color));\n        return Setting.of(label, field, property);\n    }\n\n    public static Setting getPositionSelector(String label, boolean horizontal, String selectedValue, BooleanProperty booleanBind, HashMap<Field, ObservableValue> bindings) {\n        Setting setting;\n        if (horizontal)\n            setting = Setting.of(label, FXCollections.observableArrayList(\n                    LabelGrabber.INSTANCE.getLabel(\"left\"),\n                    LabelGrabber.INSTANCE.getLabel(\"right\")),\n                    new SimpleObjectProperty<>(LabelGrabber.INSTANCE.getLabel(selectedValue.toLowerCase())));\n        else\n            setting = Setting.of(label, FXCollections.observableArrayList(\n                    LabelGrabber.INSTANCE.getLabel(\"top.text.position\"),\n                    LabelGrabber.INSTANCE.getLabel(\"bottom.text.position\")),\n                    new SimpleObjectProperty<>(LabelGrabber.INSTANCE.getLabel(selectedValue.toLowerCase())));\n        if (booleanBind != null)\n            bindings.put((Field) setting.getElement(), booleanBind.not());\n        return setting;\n    }\n\n    public static Setting getShowOnSlidesSelector(String label, String selectedValue, BooleanProperty booleanBind, HashMap<Field, ObservableValue> bindings) {\n        Setting setting = Setting.of(label, FXCollections.observableArrayList(\n                LabelGrabber.INSTANCE.getLabel(\"all\"),\n                LabelGrabber.INSTANCE.getLabel(\"first\"),\n                LabelGrabber.INSTANCE.getLabel(\"last\")),\n                new SimpleObjectProperty<>(LabelGrabber.INSTANCE.getLabel(selectedValue.toLowerCase())));\n        if (booleanBind != null)\n            bindings.put((Field) setting.getElement(), booleanBind.not());\n        return setting;\n    }\n\n    public void updatePos() {\n        DisplayStage appWindow = QueleaApp.get().getProjectionWindow();\n        DisplayStage stageWindow = QueleaApp.get().getStageWindow();\n        if (appWindow == null) {\n            appWindow = new DisplayStage(QueleaProperties.get().getProjectorCoords(), false);\n        }\n        final DisplayStage fiLyricWindow = appWindow; //Fudge for AIC\n        final ObservableList<Screen> monitors = Screen.getScreens();\n        Platform.runLater(() -> {\n            int projectorScreen = QueleaProperties.get().getProjectorScreen();\n            Bounds bounds;\n            if (QueleaProperties.get().isProjectorModeCoords()) {\n                bounds = QueleaProperties.get().getProjectorCoords();\n            } else {\n                bounds = Utils.getBoundsFromRect2D(\n                        monitors.get(projectorScreen < 0 || projectorScreen >= monitors.size() ? 0 : projectorScreen)\n                                .getBounds());\n            }\n            fiLyricWindow.setAreaImmediate(bounds);\n            if (!QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().getHide().isSelected()) {\n                fiLyricWindow.show();\n            }\n\n            // non-custom positioned windows are fullscreen\n            if (!QueleaProperties.get().isProjectorModeCoords()) {\n                if (QueleaProperties.get().getProjectorScreen() == -1) {\n                    fiLyricWindow.hide();\n                } else {\n                    fiLyricWindow.setFullScreenAlwaysOnTop(true);\n                }\n            } else {\n                fiLyricWindow.setFullScreenAlwaysOnTop(false);\n            }\n        });\n        if (stageWindow == null) {\n            stageWindow = new DisplayStage(QueleaProperties.get().getStageCoords(), true);\n        }\n        final DisplayStage fiStageWindow = stageWindow; //Fudge for AIC\n        Platform.runLater(() -> {\n            int stageScreen = QueleaProperties.get().getStageScreen();\n            Bounds bounds;\n            if (QueleaProperties.get().isStageModeCoords()) {\n                bounds = QueleaProperties.get().getStageCoords();\n            } else {\n                bounds = Utils.getBoundsFromRect2D(\n                        monitors.get(stageScreen < 0 || stageScreen >= monitors.size() ? 0 : stageScreen)\n                                .getBounds());\n            }\n            fiStageWindow.setAreaImmediate(bounds);\n\n            if (!QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().getHide().isSelected()) {\n                fiStageWindow.show();\n            }\n            if (QueleaProperties.get().getStageScreen() == -1 && !QueleaProperties.get().isStageModeCoords())\n                fiStageWindow.hide();\n        });\n    }\n\n    private void callBeforeHiding() {\n        preferencesFx.discardChanges();\n    }\n\n    public OptionsServerSettingsPanel getOptionsServerSettingsPanel() {\n        return optionsServerSettingsPanel;\n    }\n\n    public OptionsDisplaySetupPanel getDisplaySetupPanel() {\n        return displayPanel;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/options/customprefs/ColorPickerPreference.java",
    "content": "package org.quelea.windows.options.customprefs;\n\nimport com.dlsc.formsfx.model.structure.StringField;\nimport com.dlsc.preferencesfx.formsfx.view.controls.SimpleControl;\nimport javafx.geometry.Pos;\nimport javafx.scene.control.ColorPicker;\nimport javafx.scene.layout.StackPane;\nimport javafx.scene.paint.Color;\n\npublic class ColorPickerPreference extends SimpleControl<StringField, StackPane> {\n\n    /**\n     * - The colorPicker is the container that displays the node to select a color value.\n     */\n    private ColorPicker colorPicker;\n    private Color initialValue;\n\n    public ColorPickerPreference(Color initialValue) {\n        this.initialValue = initialValue;\n    }\n\n    /**\n     * {@inheritDoc}\n     */\n    @Override\n    public void initializeParts() {\n        super.initializeParts();\n\n        node = new StackPane();\n        node.getStyleClass().add(\"simple-text-control\");\n\n        colorPicker = new ColorPicker(initialValue);\n        colorPicker.setMaxWidth(Double.MAX_VALUE);\n        colorPicker.setOnAction(event -> {\n            if (!field.valueProperty().getValue().equals(getColorString(colorPicker.getValue())))\n                field.valueProperty().setValue(getColorString(colorPicker.getValue()));\n        });\n\n        field.valueProperty().setValue(getColorString(colorPicker.getValue()));\n    }\n\n    private String getColorString(Color color) {\n        return color.getRed() + \",\" + color.getGreen() + \",\" + color.getBlue();\n    }\n\n    /**\n     * {@inheritDoc}\n     */\n    @Override\n    public void layoutParts() {\n        node.getChildren().addAll(colorPicker);\n        node.setAlignment(Pos.CENTER_LEFT);\n    }\n\n    /**\n     * {@inheritDoc}\n     */\n    @Override\n    public void setupBindings() {\n        super.setupBindings();\n        field.valueProperty().addListener((observable, oldValue, newValue) -> {\n            if (!newValue.isEmpty()) {\n                String[] rgb = newValue.split(\",\");\n                Color newColor = Color.rgb((int) (Double.parseDouble(rgb[0]) * 255), (int) (Double.parseDouble(rgb[1]) * 255), (int) (Double.parseDouble(rgb[2]) * 255));\n                if (!colorPicker.getValue().equals(newColor)) {\n                    colorPicker.setValue(newColor);\n                }\n            }\n        });\n    }\n\n    /**\n     * {@inheritDoc}\n     */\n    @Override\n    public void setupValueChangedListeners() {\n        super.setupValueChangedListeners();\n\n        colorPicker.focusedProperty().addListener(\n                (observable, oldValue, newValue) -> toggleTooltip(colorPicker)\n        );\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/options/customprefs/DefaultBibleSelector.java",
    "content": "package org.quelea.windows.options.customprefs;\n\nimport com.dlsc.formsfx.model.structure.SingleSelectionField;\nimport com.dlsc.preferencesfx.formsfx.view.controls.SimpleControl;\nimport javafx.geometry.Pos;\nimport javafx.scene.control.Button;\nimport javafx.scene.control.ComboBox;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.layout.HBox;\nimport javafx.scene.layout.Priority;\nimport javafx.scene.layout.StackPane;\nimport javafx.stage.FileChooser;\nimport org.javafx.dialog.Dialog;\nimport org.quelea.data.bible.Bible;\nimport org.quelea.data.bible.BibleManager;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.FileFilters;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.QueleaApp;\n\nimport java.io.File;\nimport java.io.IOException;\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\nimport java.util.concurrent.atomic.AtomicBoolean;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\n\npublic class DefaultBibleSelector extends SimpleControl<SingleSelectionField<String>, StackPane> {\n\n    /**\n     * - The fieldLabel is the container that displays the label property of\n     * the field.\n     * - The comboBox is the container that displays the values in the\n     * ComboBox.\n     * - The readOnlyLabel is used to show the current selection in read only.\n     * - The node is a StackPane to hold the field and read only label.\n     */\n    private ComboBox<String> comboBox;\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n\n    /**\n     * {@inheritDoc}\n     */\n    @Override\n    public void initializeParts() {\n        super.initializeParts();\n\n\n        node = new StackPane();\n        node.setMaxWidth(Double.MAX_VALUE);\n        node.getStyleClass().add(\"simple-select-control\");\n\n        comboBox = new ComboBox<String>(field.getItems());\n\n        comboBox.getSelectionModel().select(field.getItems().indexOf(field.getSelection()));\n    }\n\n    /**\n     * {@inheritDoc}\n     */\n    @Override\n    public void layoutParts() {\n\n        comboBox.setVisibleRowCount(4);\n        comboBox.setMaxWidth(Double.MAX_VALUE);\n        comboBox.setMinWidth(100);\n\n        node.setAlignment(Pos.CENTER_LEFT);\n        HBox hBox = new HBox();\n        hBox.getChildren().addAll(comboBox, createAddBibleButton(), createDeleteBibleButton());\n        HBox.setHgrow(comboBox, Priority.ALWAYS);\n        node.getChildren().addAll(hBox);\n    }\n\n    /**\n     * {@inheritDoc}\n     */\n    @Override\n    public void setupBindings() {\n        super.setupBindings();\n\n        comboBox.visibleProperty().bind(field.editableProperty());\n    }\n\n    /**\n     * {@inheritDoc}\n     */\n    @Override\n    public void setupValueChangedListeners() {\n        super.setupValueChangedListeners();\n\n        field.itemsProperty().addListener(\n                (observable, oldValue, newValue) -> comboBox.setItems(field.getItems())\n        );\n\n        field.selectionProperty().addListener((observable, oldValue, newValue) -> {\n            if (field.getSelection() != null) {\n                comboBox.getSelectionModel().select(field.getItems().indexOf(field.getSelection()));\n            } else {\n                comboBox.getSelectionModel().clearSelection();\n            }\n        });\n\n        field.errorMessagesProperty().addListener(\n                (observable, oldValue, newValue) -> toggleTooltip(comboBox)\n        );\n        field.tooltipProperty().addListener(\n                (observable, oldValue, newValue) -> toggleTooltip(comboBox)\n        );\n        comboBox.focusedProperty().addListener(\n                (observable, oldValue, newValue) -> toggleTooltip(comboBox)\n        );\n    }\n\n    /**\n     * {@inheritDoc}\n     */\n    @Override\n    public void setupEventHandlers() {\n        comboBox.valueProperty().addListener((observable, oldValue, newValue) ->\n                field.select(comboBox.getSelectionModel().getSelectedIndex())\n        );\n    }\n\n    private Button createAddBibleButton() {\n        final Button addBibleButton = new Button(LabelGrabber.INSTANCE.getLabel(\"add.bible.label\"),\n                new ImageView(new Image(\"file:icons/add.png\")));\n        addBibleButton.setOnAction(t -> {\n\n            FileChooser chooser = new FileChooser();\n            if (QueleaProperties.get().getLastDirectory() != null) {\n                chooser.setInitialDirectory(QueleaProperties.get().getLastDirectory());\n            }\n            chooser.getExtensionFilters().add(FileFilters.XML_BIBLE);\n            File file = chooser.showOpenDialog(QueleaApp.get().getMainWindow());\n            if (file != null) {\n                QueleaProperties.get().setLastDirectory(file.getParentFile());\n                if(Bible.parseBible(file)==null) {\n                    LOGGER.log(Level.WARNING, \"Tried to add corrupt bible: \", file.getAbsolutePath());\n                    Dialog.showError(LabelGrabber.INSTANCE.getLabel(\"bible.load.error.title\"),\n                            LabelGrabber.INSTANCE.getLabel(\"bible.load.error.question\"));\n                }\n                else {\n                    try {\n                        Utils.copyFile(file, new File(QueleaProperties.get().getBibleDir(), file.getName()));\n                        BibleManager.get().refreshAndLoad();\n                    } catch (IOException ex) {\n                        LOGGER.log(Level.WARNING, \"Error copying bible file\", ex);\n                        Dialog.showError(LabelGrabber.INSTANCE.getLabel(\"bible.copy.error.heading\"),\n                                LabelGrabber.INSTANCE.getLabel(\"bible.copy.error.text\"));\n                    }\n                }\n            }\n\n        });\n        return addBibleButton;\n    }\n\n    private Button createDeleteBibleButton() {\n        final Button deleteBibleButton = new Button(LabelGrabber.INSTANCE.getLabel(\"delete.bible.label\"),\n                new ImageView(new Image(\"file:icons/cross.png\")));\n        deleteBibleButton.setOnAction(t -> {\n\n            Bible bible = BibleManager.get().getBibleFromName(comboBox.getSelectionModel().getSelectedItem());\n            if (bible != null && bible.getFilePath() != null) {\n\n                final AtomicBoolean yes = new AtomicBoolean();\n                Dialog.buildConfirmation(LabelGrabber.INSTANCE.getLabel(\"delete.bible.label\"),\n                        LabelGrabber.INSTANCE.getLabel(\"delete.bible.confirmation\").replace(\"$1\", bible.getBibleName())).\n                        addYesButton(ae -> {\n                            yes.set(true);\n                        }).addNoButton(ae -> {\n                }).build().showAndWait();\n\n                if (yes.get()) {\n                    try {\n                        Files.delete(Paths.get(bible.getFilePath()));\n                        BibleManager.get().refreshAndLoad();\n                    } catch (IOException ex) {\n                        LOGGER.log(Level.WARNING, \"Error deleting bible file\", ex);\n                        Dialog.showError(LabelGrabber.INSTANCE.getLabel(\"bible.delete.error.heading\"),\n                                LabelGrabber.INSTANCE.getLabel(\"bible.delete.error.text\"));\n                    }\n                }\n            }\n        });\n        return deleteBibleButton;\n    }\n}"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/options/customprefs/DirectorySelectorPreference.java",
    "content": "package org.quelea.windows.options.customprefs;\n\nimport com.dlsc.formsfx.model.structure.StringField;\nimport com.dlsc.preferencesfx.formsfx.view.controls.SimpleControl;\nimport javafx.beans.binding.Bindings;\nimport javafx.geometry.Pos;\nimport javafx.scene.control.Button;\nimport javafx.scene.control.TextField;\nimport javafx.scene.layout.HBox;\nimport javafx.scene.layout.Priority;\nimport javafx.scene.layout.StackPane;\nimport javafx.stage.DirectoryChooser;\n\nimport java.io.File;\n\npublic class DirectorySelectorPreference extends SimpleControl<StringField, StackPane> {\n\n    /**\n     * - The fieldLabel is the container that displays the label property of\n     * the field.\n     * - The editableField allows users to modify the field's value.\n     */\n    private TextField editableField;\n    private Button directoryChooserButton = new Button();\n    private HBox hBox = new HBox();\n    private String buttonText;\n    private File initialDirectory;\n\n    public DirectorySelectorPreference(String buttonText, File initialDirectory) {\n        this.buttonText = buttonText;\n        this.initialDirectory = initialDirectory;\n    }\n\n    /**\n     * {@inheritDoc}\n     */\n    @Override\n    public void initializeParts() {\n        super.initializeParts();\n\n        node = new StackPane();\n        node.getStyleClass().add(\"simple-text-control\");\n\n        editableField = new TextField(field.getValue());\n\n        DirectoryChooser directoryChooser = new DirectoryChooser();\n\n        if (initialDirectory != null) {\n            directoryChooser.setInitialDirectory(initialDirectory);\n        }\n\n        directoryChooserButton.setOnAction(event -> {\n            File dir = directoryChooser.showDialog(getNode().getScene().getWindow());\n            if (dir != null) {\n                editableField.setText(dir.getAbsolutePath());\n            }\n        });\n\n        directoryChooserButton.setText(buttonText);\n\n        editableField.setPromptText(field.placeholderProperty().getValue());\n\n        hBox.getChildren().addAll(editableField, directoryChooserButton);\n    }\n\n    /**\n     * {@inheritDoc}\n     */\n    @Override\n    public void layoutParts() {\n        HBox.setHgrow(editableField, Priority.ALWAYS);\n        node.setAlignment(Pos.CENTER_LEFT);\n        node.getChildren().addAll(hBox);\n    }\n\n    /**\n     * {@inheritDoc}\n     */\n    @Override\n    public void setupBindings() {\n        super.setupBindings();\n\n        editableField.visibleProperty().bind(Bindings.and(field.editableProperty(),\n                field.multilineProperty().not()));\n\n        editableField.textProperty().bindBidirectional(field.userInputProperty());\n        editableField.promptTextProperty().bind(field.placeholderProperty());\n        editableField.managedProperty().bind(editableField.visibleProperty());\n    }\n\n    /**\n     * {@inheritDoc}\n     */\n    @Override\n    public void setupValueChangedListeners() {\n        super.setupValueChangedListeners();\n\n\n        editableField.focusedProperty().addListener(\n                (observable, oldValue, newValue) -> toggleTooltip(editableField)\n        );\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/options/customprefs/MobileServerPreference.java",
    "content": "package org.quelea.windows.options.customprefs;\n\nimport com.dlsc.formsfx.model.structure.StringField;\nimport com.dlsc.preferencesfx.formsfx.view.controls.SimpleControl;\nimport com.google.zxing.BarcodeFormat;\nimport com.google.zxing.WriterException;\nimport com.google.zxing.client.j2se.MatrixToImageWriter;\nimport com.google.zxing.common.BitMatrix;\nimport com.google.zxing.qrcode.QRCodeWriter;\nimport javafx.beans.binding.Bindings;\nimport javafx.embed.swing.SwingFXUtils;\nimport javafx.geometry.Pos;\nimport javafx.scene.Cursor;\nimport javafx.scene.control.Button;\nimport javafx.scene.control.TextField;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.image.WritableImage;\nimport javafx.scene.input.MouseEvent;\nimport javafx.scene.layout.*;\nimport javafx.scene.paint.Color;\nimport javafx.scene.text.Text;\nimport javafx.stage.FileChooser;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.FileFilters;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.windows.main.QueleaApp;\n\nimport javax.imageio.ImageIO;\nimport java.awt.*;\nimport java.awt.image.BufferedImage;\nimport java.io.File;\nimport java.io.IOException;\nimport java.net.*;\nimport java.util.Enumeration;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport org.quelea.utils.DesktopApi;\n\npublic class MobileServerPreference extends SimpleControl<StringField, StackPane> {\n\n    /**\n     * - The fieldLabel is the container that displays the label property of\n     * the field.\n     * - The editableField allows users to modify the field's value.\n     * - The readOnlyLabel displays the field's value if it is not editable.\n     */\n    private TextField editableField;\n    private BufferedImage qrImage;\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    private boolean isLyrics;\n    private String urlMLCache;\n    private String urlRCCache;\n\n    public MobileServerPreference(boolean isLyrics) {\n        this.isLyrics = isLyrics;\n    }\n\n    /**\n     * {@inheritDoc}\n     */\n    @Override\n    public void initializeParts() {\n        super.initializeParts();\n\n        node = new StackPane();\n        node.getStyleClass().add(\"simple-text-control\");\n\n        editableField = new TextField(field.getValue());\n\n        editableField.setPromptText(field.placeholderProperty().getValue());\n    }\n\n    /**\n     * {@inheritDoc}\n     */\n    @Override\n    public void layoutParts() {\n        StackPane qrStack = new StackPane();\n        qrStack.setAlignment(Pos.CENTER_LEFT);\n\n        if (isLyrics && !getMLURL().contains(LabelGrabber.INSTANCE.getLabel(\"not.started.label\"))) {\n            ImageView qrView = new ImageView(getQRImage());\n            StackPane.setAlignment(qrView, Pos.CENTER_LEFT);\n            qrView.setFitHeight(100);\n            qrView.setFitWidth(100);\n            qrStack.getChildren().add(qrView);\n            Button saveButton = new Button(LabelGrabber.INSTANCE.getLabel(\"save.qr.code.text\"));\n            StackPane.setAlignment(saveButton, Pos.CENTER_LEFT);\n            saveButton.setOnAction((event) -> {\n                FileChooser fileChooser = new FileChooser();\n                if (QueleaProperties.get().getLastDirectory() != null) {\n                    fileChooser.setInitialDirectory(QueleaProperties.get().getLastDirectory());\n                }\n                fileChooser.getExtensionFilters().add(FileFilters.PNG);\n                fileChooser.setTitle(LabelGrabber.INSTANCE.getLabel(\"save.qr.code.text\"));\n                File file = fileChooser.showSaveDialog(QueleaApp.get().getMainWindow());\n                if (file != null) {\n                    QueleaProperties.get().setLastDirectory(file.getParentFile());\n                    try {\n                        ImageIO.write(qrImage, \"png\", file);\n                    } catch (IOException ex) {\n                        LOGGER.log(Level.WARNING, \"Error saving QR file\", ex);\n                    }\n                }\n            });\n            saveButton.setOpacity(0);\n            qrStack.setOnMouseEntered((event) -> {\n                saveButton.setOpacity(0.8);\n            });\n            qrStack.setOnMouseExited((event) -> {\n                saveButton.setOpacity(0);\n            });\n            qrStack.getChildren().add(saveButton);\n        }\n\n        String url = isLyrics ? getMLURL() : getRCURL();\n        Text mobUrlLabel = new Text(url);\n        if (Desktop.isDesktopSupported() && url.startsWith(\"http\")) {\n            mobUrlLabel.setCursor(Cursor.HAND);\n            mobUrlLabel.setFill(Color.BLUE);\n            mobUrlLabel.setStyle(\"-fx-underline: true;\");\n            mobUrlLabel.setOnMouseClicked((MouseEvent t) -> {\n                DesktopApi.browse(url);\n            });\n        }\n\n        HBox hBox = new HBox();\n        hBox.setSpacing(10);\n        VBox vBox = new VBox();\n        vBox.setAlignment(Pos.CENTER_LEFT);\n        vBox.setSpacing(10);\n        vBox.getChildren().addAll(editableField, mobUrlLabel);\n        hBox.getChildren().addAll(vBox, qrStack);\n        HBox.setHgrow(vBox, Priority.ALWAYS);\n        hBox.setAlignment(Pos.CENTER_LEFT);\n\n        node.getChildren().addAll(hBox);\n\n        node.setAlignment(Pos.CENTER_LEFT);\n    }\n\n    private Image getQRImage() {\n        if (qrImage == null) {\n            QRCodeWriter qrCodeWriter = new QRCodeWriter();\n            int qrWidth = 500;\n            int qrHeight = 500;\n            BitMatrix byteMatrix = null;\n            try {\n                byteMatrix = qrCodeWriter.encode(getMLURL(), BarcodeFormat.QR_CODE, qrWidth, qrHeight);\n            } catch (WriterException ex) {\n                LOGGER.log(Level.WARNING, \"Error writing QR code\", ex);\n            }\n            qrImage = MatrixToImageWriter.toBufferedImage(byteMatrix);\n        }\n        WritableImage fxImg = new WritableImage(500, 500);\n        SwingFXUtils.toFXImage(qrImage, fxImg);\n        return fxImg;\n    }\n\n    public String getMLURL() {\n        if (urlMLCache == null) {\n            if (QueleaProperties.get().getUseMobLyrics() && QueleaApp.get().getMobileLyricsServer() != null) {\n                String ip = getIP();\n                if (ip != null) {\n                    StringBuilder ret = new StringBuilder(\"http://\");\n                    ret.append(ip);\n                    int port = QueleaProperties.get().getMobLyricsPort();\n                    if (port != 80) {\n                        ret.append(\":\");\n                        ret.append(port);\n                    }\n                    urlMLCache = ret.toString();\n                } else {\n                    urlMLCache = \"[\" + LabelGrabber.INSTANCE.getLabel(\"not.started.label\") + \"]\";\n                }\n            } else {\n                urlMLCache = \"[\" + LabelGrabber.INSTANCE.getLabel(\"not.started.label\") + \"]\";\n            }\n        }\n        return urlMLCache;\n    }\n\n    public String getRCURL() {\n        if (urlRCCache == null) {\n            if (QueleaProperties.get().getUseRemoteControl() && QueleaApp.get().getRemoteControlServer() != null) {\n                String ip = getIP();\n                if (ip != null) {\n                    StringBuilder ret = new StringBuilder(\"http://\");\n                    ret.append(ip);\n                    int port = QueleaProperties.get().getRemoteControlPort();\n                    if (port != 80) {\n                        ret.append(\":\");\n                        ret.append(port);\n                    }\n                    urlRCCache = ret.toString();\n                } else {\n                    urlRCCache = \"[\" + LabelGrabber.INSTANCE.getLabel(\"not.started.label\") + \"]\";\n                }\n            } else {\n                urlRCCache = \"[\" + LabelGrabber.INSTANCE.getLabel(\"not.started.label\") + \"]\";\n            }\n        }\n        return urlRCCache;\n    }\n\n    private static String getIP() {\n        String v6address = null;\n        Enumeration<NetworkInterface> interfaces = null;\n        try {\n            interfaces = NetworkInterface.getNetworkInterfaces();\n        } catch (SocketException ex) {\n            LOGGER.log(Level.WARNING, \"Socket exception getting ip\", ex);\n            try {\n                if (InetAddress.getLocalHost() instanceof Inet6Address) {\n                    LOGGER.log(Level.WARNING, \"Socket exception, but using v6 address as fallback: {0}\", InetAddress.getLocalHost().getHostAddress());\n                    v6address = InetAddress.getLocalHost().getHostAddress();\n                } else {\n                    LOGGER.log(Level.WARNING, \"Socket exception, but found v4 address: {0}\", InetAddress.getLocalHost().getHostAddress());\n                    return InetAddress.getLocalHost().getHostAddress();\n                }\n            } catch (UnknownHostException ex2) {\n                return null;\n            }\n        }\n        while (interfaces != null && interfaces.hasMoreElements()) {\n            NetworkInterface current = interfaces.nextElement();\n            try {\n                if (!current.isUp() || current.isLoopback() || current.isVirtual() || current.getDisplayName().toLowerCase().contains(\"virtual\")) {\n                    continue;\n                }\n            } catch (SocketException ex) {\n                continue;\n            }\n            Enumeration<InetAddress> addresses = current.getInetAddresses();\n            while (addresses.hasMoreElements()) {\n                InetAddress current_addr = addresses.nextElement();\n                if (current_addr.isLoopbackAddress()) {\n                    LOGGER.log(Level.INFO, \"Ignoring loopback address\");\n                    continue;\n                }\n                if (current_addr instanceof Inet6Address && v6address == null) {\n                    LOGGER.log(Level.INFO, \"Storing v6 address, no v4 found yet: {0}\", v6address);\n                    v6address = current_addr.getHostAddress();\n                } else if (current_addr instanceof Inet4Address) {\n                    LOGGER.log(Level.INFO, \"Found v4: {0}\", current_addr.getHostAddress());\n                    return current_addr.getHostAddress();\n                }\n            }\n        }\n        //Fallback\n        try {\n            String fallback = InetAddress.getLocalHost().getHostAddress();\n            LOGGER.log(Level.INFO, \"Using fallback: {0}\", fallback);\n            return fallback;\n        } catch (UnknownHostException ex) {\n            LOGGER.log(Level.WARNING, \"Unknwon host ip\", ex);\n        }\n        //Worst fallback, return ipv6 address\n        LOGGER.log(Level.INFO, \"Falling back to v6 address: {0}\", v6address);\n        return v6address;\n    }\n\n\n    /**\n     * {@inheritDoc}\n     */\n    @Override\n    public void setupBindings() {\n        super.setupBindings();\n\n        editableField.visibleProperty().bind(Bindings.and(field.editableProperty(),\n                field.multilineProperty().not()));\n        editableField.textProperty().bindBidirectional(field.userInputProperty());\n        editableField.promptTextProperty().bind(field.placeholderProperty());\n        editableField.managedProperty().bind(editableField.visibleProperty());\n    }\n\n    /**\n     * {@inheritDoc}\n     */\n    @Override\n    public void setupValueChangedListeners() {\n        super.setupValueChangedListeners();\n\n        field.multilineProperty().addListener((observable, oldValue, newValue) -> {\n            node.setPrefHeight(newValue ? 80 : 0);\n        });\n\n        field.errorMessagesProperty().addListener((observable, oldValue, newValue) ->\n                toggleTooltip(editableField)\n        );\n\n        editableField.focusedProperty().addListener(\n                (observable, oldValue, newValue) -> toggleTooltip(editableField)\n        );\n    }\n\n}\n\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/options/customprefs/PercentSliderControl.java",
    "content": "package org.quelea.windows.options.customprefs;\n\nimport com.dlsc.formsfx.model.structure.DoubleField;\n\nimport java.math.BigDecimal;\nimport java.math.RoundingMode;\n\nimport com.dlsc.preferencesfx.formsfx.view.controls.SimpleControl;\nimport javafx.geometry.Insets;\nimport javafx.geometry.Pos;\nimport javafx.scene.control.Label;\nimport javafx.scene.control.Slider;\nimport javafx.scene.layout.HBox;\nimport javafx.scene.layout.Priority;\n\n/**\n * Provides an implementation of a percent slider control for an {@link DoubleField}.\n *\n * @author François Martin\n * @author Marco Sanfratello\n * @author Arvid Nyström\n */\npublic class PercentSliderControl extends SimpleControl<DoubleField, HBox> {\n    public static final int VALUE_LABEL_PADDING = 25;\n    /**\n     * - fieldLabel is the container that displays the label property of the\n     * field.\n     * - slider is the control to change the value.\n     * - node holds the control so that it can be styled properly.\n     */\n    private Slider slider;\n    private Label valueLabel;\n    private double min;\n    private double max;\n    private int precision;\n\n    /**\n     * Creates a slider for double values with a minimum and maximum value, with a set precision.\n     *\n     * @param min       minimum slider value\n     * @param max       maximum slider value\n     * @param precision number of digits after the decimal point\n     */\n    public PercentSliderControl(double min, double max, int precision) {\n        super();\n        this.min = min;\n        this.max = max;\n        this.precision = precision;\n    }\n\n    /**\n     * Rounds a value to a given precision, using {@link RoundingMode#HALF_UP}.\n     *\n     * @param value     value to be rounded\n     * @param precision number of digits after the decimal point\n     * @return\n     */\n    private double round(double value, int precision) {\n        return BigDecimal.valueOf(value)\n                .setScale(precision, RoundingMode.HALF_UP)\n                .doubleValue();\n    }\n\n    /**\n     * {@inheritDoc}\n     */\n    @Override\n    public void initializeParts() {\n        super.initializeParts();\n\n        fieldLabel = new Label(field.labelProperty().getValue());\n\n        valueLabel = new Label((int) (100 * field.getValue()) + \"%\");\n\n        slider = new Slider();\n        slider.setMin(min);\n        slider.setMax(max);\n        slider.setShowTickLabels(false);\n        slider.setShowTickMarks(false);\n        slider.setValue(field.getValue());\n\n        node = new HBox();\n        node.getStyleClass().add(\"double-slider-control\");\n    }\n\n    /**\n     * {@inheritDoc}\n     */\n    @Override\n    public void layoutParts() {\n        node.getChildren().addAll(slider, valueLabel);\n        HBox.setHgrow(slider, Priority.ALWAYS);\n        valueLabel.setAlignment(Pos.CENTER);\n        valueLabel.setMinWidth(VALUE_LABEL_PADDING);\n        node.setSpacing(VALUE_LABEL_PADDING);\n        HBox.setMargin(valueLabel, new Insets(0, VALUE_LABEL_PADDING, 0, 0));\n    }\n\n    /**\n     * {@inheritDoc}\n     */\n    @Override\n    public void setupBindings() {\n        super.setupBindings();\n    }\n\n    /**\n     * {@inheritDoc}\n     */\n    @Override\n    public void setupValueChangedListeners() {\n        super.setupValueChangedListeners();\n        field.userInputProperty().addListener((observable, oldValue, newValue) -> {\n            double sliderValue = round(Double.parseDouble(field.getUserInput()), precision);\n            slider.setValue(sliderValue);\n            valueLabel.setText((int) (100 * field.getValue()) + \"%\");\n        });\n\n        field.errorMessagesProperty().addListener(\n                (observable, oldValue, newValue) -> toggleTooltip(slider));\n        field.tooltipProperty().addListener(\n                (observable, oldValue, newValue) -> toggleTooltip(slider));\n\n        slider.focusedProperty().addListener(\n                (observable, oldValue, newValue) -> toggleTooltip(slider));\n    }\n\n    /**\n     * {@inheritDoc}\n     */\n    @Override\n    public void setupEventHandlers() {\n        slider.valueProperty().addListener((observable, oldValue, newValue) -> {\n            field.userInputProperty().setValue(String.valueOf(round(newValue.doubleValue(), precision)));\n        });\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/pdf/PdfDrawer.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.pdf;\n\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.layout.StackPane;\nimport org.quelea.data.displayable.Displayable;\nimport org.quelea.data.displayable.ImageDisplayable;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.DisplayableDrawer;\nimport org.quelea.windows.main.QueleaApp;\n\n/**\n *\n * @author Arvid\n */\npublic class PdfDrawer extends DisplayableDrawer {\n    private ImageView imageView;\n    private Image image;\n\n    @Override\n    public void draw(Displayable displayable) {\n        clear();\n        imageView = getCanvas().getNewImageView();\n        imageView.setFitWidth(getCanvas().getWidth());\n        if (getCanvas().isStageView()) {\n            image = Utils.getImageFromColour(QueleaProperties.get().getStageBackgroundColor());\n        }\n        else {\n            image = ((ImageDisplayable) displayable).getImage();\n            imageView.setPreserveRatio(true);\n        }\n        imageView.setImage(image);\n        StackPane imageBox = new StackPane();\n        imageBox.getChildren().add(imageView);\n        if(getCanvas() != QueleaApp.get().getProjectionWindow().getCanvas()\n                && getCanvas() != QueleaApp.get().getStageWindow().getCanvas()) {\n            imageBox.setStyle(\"-fx-background-color:#dddddd;\");\n        }\n        imageBox.setVisible(false);\n        getCanvas().getChildren().add(imageBox);\n        getCanvas().pushLogoNoticeToFront();\n        imageBox.setVisible(true);\n        getCanvas().setOpacity(1);\n    }\n\n    @Override\n    public void clear() {\n        if(getCanvas().getChildren() != null) {\n            getCanvas().clearNonPermanentChildren();\n        }\n    }\n\n    @Override\n    public void requestFocus() {\n        imageView.requestFocus();\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/pdf/PdfPanel.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.pdf;\n\nimport javafx.animation.Animation;\nimport javafx.animation.KeyFrame;\nimport javafx.animation.Timeline;\nimport javafx.application.Platform;\nimport javafx.beans.value.ChangeListener;\nimport javafx.beans.value.ObservableValue;\nimport javafx.event.ActionEvent;\nimport javafx.event.EventHandler;\nimport javafx.scene.image.Image;\nimport javafx.scene.input.KeyCode;\nimport javafx.scene.input.KeyEvent;\nimport javafx.scene.layout.BorderPane;\nimport javafx.util.Duration;\nimport org.quelea.data.displayable.ImageDisplayable;\nimport org.quelea.data.displayable.PdfDisplayable;\nimport org.quelea.data.pdf.PdfSlide;\nimport org.quelea.windows.image.ImageDrawer;\nimport org.quelea.windows.main.AbstractPanel;\nimport org.quelea.windows.main.DisplayCanvas;\nimport org.quelea.windows.main.DisplayableDrawer;\nimport org.quelea.windows.main.LivePanel;\nimport org.quelea.windows.main.LivePreviewPanel;\nimport org.quelea.windows.main.QueleaApp;\n\n/**\n * The panel for displaying PDF slides in the live / preview panels.\n * <p/>\n *\n * @author Arvid, based on PresentationPanel\n */\npublic class PdfPanel extends AbstractPanel {\n\n    private PdfPreview pdfPreview;\n    private PdfDisplayable displayable;\n    private boolean live;\n    private DisplayableDrawer drawer = new ImageDrawer();\n    private PdfSlide currentSlide = null;\n    private LivePreviewPanel containerPanel;\n    private Timeline loopTimeline;\n\n    /**\n     * Create a new presentation panel.\n     * <p/>\n     *\n     * @param containerPanel the panel to create.\n     */\n    public PdfPanel(final LivePreviewPanel containerPanel) {\n        this.containerPanel = containerPanel;\n        BorderPane mainPanel = new BorderPane();\n        pdfPreview = new PdfPreview();\n        pdfPreview.addSlideChangedListener(new SlideChangedListener() {\n            @Override\n            public void slideChanged(PdfSlide newSlide) {\n                if (live) {\n                    LivePanel lp = QueleaApp.get().getMainWindow().getMainPanel().getLivePanel();\n                    if (newSlide != null && displayable != null) {\n                        currentSlide = newSlide;\n                        updateCanvas();\n                    }\n                }\n            }\n        });\n        pdfPreview.select(0);\n\n        pdfPreview.addEventHandler(KeyEvent.KEY_PRESSED, new EventHandler<KeyEvent>() {\n            @Override\n            public void handle(KeyEvent t) {\n                if (t.getCode().equals(KeyCode.PAGE_DOWN) || t.getCode().equals(KeyCode.DOWN)) {\n                    t.consume();\n                    QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().advance();\n                } else if (t.getCode().equals(KeyCode.PAGE_UP) || t.getCode().equals(KeyCode.UP)) {\n                    t.consume();\n                    QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().previous();\n                }\n            }\n        });\n        mainPanel.setCenter(pdfPreview);\n        setCenter(mainPanel);\n    }\n\n    @Override\n    public void requestFocus() {\n        pdfPreview.requestFocus();\n    }\n\n    public void buildLoopTimeline() {\n        loopTimeline = new Timeline(\n                new KeyFrame(Duration.seconds(0),\n                        new EventHandler<ActionEvent>() {\n                            @Override\n                            public void handle(ActionEvent actionEvent) {\n                                if (containerPanel instanceof LivePanel) {\n                                    LivePanel livePanel = ((LivePanel) containerPanel);\n                                    if (livePanel.isLoopSelected()) {\n                                        pdfPreview.advanceSlide(true);\n                                    }\n                                }\n                            }\n                        }\n                ),\n                new KeyFrame(Duration.seconds(10))\n        );\n        loopTimeline.setCycleCount(Animation.INDEFINITE);\n        loopTimeline.play();\n        QueleaApp.get().doOnLoad(new Runnable() {\n\n            @Override\n            public void run() {\n                QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().getLoopDurationTextField().textProperty().addListener(new ChangeListener<String>() {\n\n                    @Override\n                    public void changed(ObservableValue<? extends String> ov, String t, String t1) {\n                        int newTime;\n                        try {\n                            newTime = Integer.parseInt(t1);\n                        } catch (NumberFormatException ex) {\n                            return;\n                        }\n                        loopTimeline.stop();\n                        loopTimeline = new Timeline(\n                                new KeyFrame(Duration.seconds(0),\n                                        new EventHandler<ActionEvent>() {\n                                            @Override\n                                            public void handle(ActionEvent actionEvent) {\n                                                if (containerPanel instanceof LivePanel) {\n                                                    LivePanel livePanel = ((LivePanel) containerPanel);\n                                                    if (livePanel.isLoopSelected()) {\n                                                        pdfPreview.advanceSlide(true);\n                                                    }\n                                                }\n                                            }\n                                        }\n                                ),\n                                new KeyFrame(Duration.seconds(newTime))\n                        );\n                        loopTimeline.setCycleCount(Animation.INDEFINITE);\n                        loopTimeline.play();\n                    }\n                });\n            }\n        });\n    }\n\n    private void drawSlide(PdfSlide newSlide, DisplayCanvas canvas) {\n        Image displayImage = newSlide.getImage();\n        ImageDisplayable imageDisplayable = new ImageDisplayable(displayImage);\n        drawer.setCanvas(canvas);\n        drawer.draw(imageDisplayable);\n    }\n\n    public void stopCurrent() {\n    }\n\n    /**\n     * Let this panel know it is live and should update accordingly.\n     */\n    public void setLive() {\n        live = true;\n    }\n\n    /**\n     * Set the displayable to be on this presentation panel.\n     * <p/>\n     *\n     * @param displayable the presentation displayable to display.\n     * @param index       the index to display.\n     */\n    public void showDisplayable(final PdfDisplayable displayable, final int index) {\n        if (this.displayable == displayable) {\n            return;\n        }\n        this.displayable = displayable;\n        if (displayable == null) {\n            pdfPreview.clear();\n            return;\n        }\n        PdfSlide[] slides = displayable.getPresentation().getSlides();\n        pdfPreview.setSlides(slides);\n        Platform.runLater(new Runnable() {\n            @Override\n            public void run() {\n                pdfPreview.select(Math.max(index, 1), true);\n            }\n        });\n\n        /*\n         * TODO\n         * For some reason the following scroll to line causes a bug whereby\n         * the contents are only registered the second time of viewing? So\n         * leave commented out until we can get to the bottom of it.\n         */\n//        presentationList.scrollTo(getIndex());\n        updateCanvas();\n    }\n\n    /**\n     * Get the currently selected index on this panel.\n     * <p/>\n     *\n     * @return the currently selected index on this panel.\n     */\n    public int getIndex() {\n        return pdfPreview.getSelectedIndex();\n    }\n\n    /**\n     * Get the length of the item on this panel.\n     * <p/>\n     *\n     * @return the length of the item on this panel.\n     */\n    public int getSlideCount() {\n        return pdfPreview.getSlideCount();\n    }\n\n    /**\n     * Clear this panel (well, actually don't do anything because we can't clear\n     * a presentation.)\n     */\n    @Override\n    public void removeCurrentDisplayable() {\n        //Doesn't apply\n    }\n\n    @Override\n    public int getCurrentIndex() {\n        return pdfPreview.getSelectedIndex();\n    }\n\n    @Override\n    public void updateCanvas() {\n        for (DisplayCanvas canvas : getCanvases()) {\n            if (currentSlide != null) {\n                drawSlide(currentSlide, canvas);\n            }\n        }\n    }\n\n    @Override\n    public DisplayableDrawer getDrawer(DisplayCanvas canvas) {\n        return drawer;\n    }\n\n    public void advance() {\n        pdfPreview.advanceSlide(false);\n    }\n\n    public void previous() {\n        pdfPreview.previousSlide();\n    }\n\n    public void selectLast() {\n        pdfPreview.selectLast();\n    }\n\n    public void selectFirst() {\n        pdfPreview.select(1, true);\n    }\n\n    public PdfPreview getPresentationPreview() {\n        return pdfPreview;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/pdf/PdfPreview.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.pdf;\n\nimport java.util.ArrayList;\nimport java.util.List;\nimport javafx.beans.value.ChangeListener;\nimport javafx.beans.value.ObservableValue;\nimport javafx.event.EventHandler;\nimport javafx.geometry.BoundingBox;\nimport javafx.geometry.Bounds;\nimport javafx.geometry.Pos;\nimport javafx.scene.control.ScrollPane;\nimport javafx.scene.input.KeyCode;\nimport javafx.scene.input.KeyEvent;\nimport javafx.scene.input.MouseEvent;\nimport javafx.scene.layout.FlowPane;\nimport org.quelea.data.pdf.PdfSlide;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.windows.main.MainPanel;\nimport org.quelea.windows.main.QueleaApp;\n\n/**\n * A JList for specifically displaying PDF slides.\n * <p/>\n * @author Arvid, based on PresentationPreview\n */\npublic class PdfPreview extends ScrollPane {\n\n    private FlowPane flow;\n    private List<SlideThumbnail> thumbnails = new ArrayList<>();\n    private PdfSlide[] slides;\n    private PdfSlide selectedSlide;\n    private int selectedIndex = -1;\n    private List<SlideChangedListener> listeners = new ArrayList<>();\n\n    /**\n     * Create a new presentation list.\n     */\n    public PdfPreview() {\n        setStyle(\"-fx-focus-color: transparent;-fx-background-color:linear-gradient(to bottom right, #c0c0c0, #e8e8e8);\");\n        flow = new FlowPane(20, 20);\n        flow.setAlignment(Pos.CENTER);\n        viewportBoundsProperty().addListener(new ChangeListener<Bounds>() {\n            @Override\n            public void changed(ObservableValue<? extends Bounds> bounds, Bounds oldBounds, Bounds newBounds) {\n                flow.setPrefWidth(newBounds.getWidth());\n            }\n        });\n        setContent(flow);\n        setOnMousePressed(new EventHandler<MouseEvent>() {\n            @Override\n            public void handle(MouseEvent t) {\n                int selected = -1;\n                for (int i = 0; i < thumbnails.size(); i++) {\n                    SlideThumbnail thumbnail = thumbnails.get(i);\n                    Bounds bounds = new BoundingBox(thumbnail.getLayoutX(), thumbnail.getLayoutY() + getScrollOffset(), thumbnail.getWidth(), thumbnail.getHeight());\n                    if (bounds.contains(t.getX(), t.getY())) {\n                        selected = i;\n                    }\n                }\n                if (selected != -1) {\n                    select(selected + 1, true);\n                }\n            }\n        });\n        setOnKeyPressed(new EventHandler<KeyEvent>() {\n            @Override\n            public void handle(KeyEvent t) {\n                if (t.getCode() == KeyCode.RIGHT) {\n                    t.consume();\n                    if (selectedIndex > 0 && selectedIndex <= slides.length - 1) {\n                        select(selectedIndex + 1);\n                    }\n                }\n                if (t.getCode() == KeyCode.LEFT) {\n                    t.consume();\n                    if (selectedIndex >= 2) {\n                        select(selectedIndex - 1);\n                    }\n                }\n            }\n        });\n        focusedProperty().addListener(new ChangeListener<Boolean>() {\n\n            @Override\n            public void changed(ObservableValue<? extends Boolean> ov, Boolean t, Boolean focused) {\n                for (SlideThumbnail slide : thumbnails) {\n                    slide.setActive(focused);\n                }\n            }\n        });\n    }\n\n    @Override\n    public void requestFocus() {\n        super.requestFocus();\n    }\n\n    public void addSlideChangedListener(SlideChangedListener listener) {\n        listeners.add(listener);\n    }\n\n    private void fireSlideChangedListeners() {\n        for (SlideChangedListener listener : listeners) {\n            listener.slideChanged(selectedSlide);\n        }\n    }\n\n    /**\n     * Clear all current slides and set the slides in the list.\n     * <p/>\n     * @param slides the slides to put in the list.\n     */\n    public void setSlides(PdfSlide[] slides) {\n        if (this.slides == slides) {\n            return;\n        }\n        this.slides = slides;\n        flow.getChildren().clear();\n        thumbnails.clear();\n        for (int i = 0; i < slides.length; i++) {\n            SlideThumbnail thumbnail = new SlideThumbnail(slides[i], i + 1);\n            if (i == 0) {\n                thumbnail.setSelected(true);\n            }\n            thumbnails.add(thumbnail);\n            flow.getChildren().add(thumbnail);\n            thumbnail.setActive(focusedProperty().get());\n        }\n    }\n\n    public int getSelectedIndex() {\n        return selectedIndex;\n    }\n    \n    public int getSlideCount() {\n        return slides.length;\n    }\n\n    public PdfSlide getSelectedSlide() {\n        return selectedSlide;\n    }\n\n    /**\n     * Advances the current slide.\n     * <p/>\n     * @param loopback true if the presentation should loop to the beginning if\n     * at the last slide.\n     */\n    public void advanceSlide(boolean loopback) {\n        if (loopback) {\n            if (selectedIndex > 0) {\n                select(((selectedIndex) % slides.length) + 1);\n            }\n        } else if (!loopback && selectedIndex > 0 && selectedIndex <= slides.length - 1) {\n            select(selectedIndex + 1);\n        } else if (selectedIndex == slides.length && QueleaProperties.get().getSongOverflow()) {\n            MainPanel qmp = QueleaApp.get().getMainWindow().getMainPanel();\n            boolean lastItemTest = qmp.getLivePanel().getDisplayable() == qmp.getSchedulePanel().getScheduleList().getItems().get(qmp.getSchedulePanel().getScheduleList().getItems().size() - 1).displayable();\n            if (QueleaProperties.get().getAdvanceOnLive() && QueleaProperties.get().getSongOverflow() && !lastItemTest) {\n                qmp.getPreviewPanel().goLive();\n            }\n        }\n    }\n\n    /**\n     * Moves to the previous slide.\n     * <p/>\n     */\n    public void previousSlide() {\n        if (selectedIndex >= 2) {\n            select(selectedIndex - 1);\n        } else {\n            MainPanel qmp = QueleaApp.get().getMainWindow().getMainPanel();\n            boolean firstItemTest = qmp.getSchedulePanel().getScheduleList().getItems().get(0).displayable() == qmp.getLivePanel().getDisplayable();\n            if (QueleaProperties.get().getAdvanceOnLive() && QueleaProperties.get().getSongOverflow() && !firstItemTest) {\n                //Assuming preview panel is one ahead, and should be one behind\n                int index = qmp.getSchedulePanel().getScheduleList().getSelectionModel().getSelectedIndex();\n                if (qmp.getLivePanel().getDisplayable() == qmp.getSchedulePanel().getScheduleList().getItems().get(qmp.getSchedulePanel().getScheduleList().getItems().size() - 1).displayable()) {\n                    index -= 1;\n                } else {\n                    index -= 2;\n                }\n                if (index >= 0) {\n                    qmp.getSchedulePanel().getScheduleList().getSelectionModel().clearAndSelect(index);\n                    qmp.getPreviewPanel().selectLastLyric();\n                    qmp.getPreviewPanel().goLive();\n                }\n            }\n        }\n    }\n\n    public int size() {\n        return thumbnails.size();\n    }\n\n    public void select(int index) {\n        select(index, true);\n    }\n\n    public void select(int index, boolean fireUpdate) {\n        if (selectedIndex == index) {\n            return;\n        }\n        for (int i = 0; i < thumbnails.size(); i++) {\n            SlideThumbnail thumbnail = thumbnails.get(i);\n            boolean selected = thumbnail.getNum() == index;\n            thumbnail.setSelected(selected);\n            if (selected) {\n                selectedIndex = index;\n                if (selectedIndex >= 1) {\n                    selectedSlide = slides[i];\n                } else {\n                    selectedSlide = null;\n                }\n            }\n            ensureVisible(selectedIndex);\n        }\n        if (fireUpdate) {\n            fireSlideChangedListeners();\n        }\n    }\n\n    private void ensureVisible(int index) {\n        if (index < 1) {\n            return;\n        }\n        Bounds slideBounds = thumbnails.get(index - 1).getBoundsInParent();\n        Bounds scrollBounds = new BoundingBox(0, getScrollFraction() * (flow.getHeight() - getHeight()), getWidth(), getHeight());\n        if (!scrollBounds.contains(slideBounds)) {\n            while (slideBounds.getMinY() < scrollBounds.getMinY() && getVvalue() > getVmin()) {\n                slideBounds = thumbnails.get(index - 1).getBoundsInParent();\n                scrollBounds = new BoundingBox(0, getScrollFraction() * (flow.getHeight() - getHeight()), getWidth(), getHeight());\n                setVvalue(getVvalue() - 0.01);\n            }\n            while (slideBounds.getMaxY() > scrollBounds.getMaxY() && getVvalue() < getVmax()) {\n                slideBounds = thumbnails.get(index - 1).getBoundsInParent();\n                scrollBounds = new BoundingBox(0, getScrollFraction() * (flow.getHeight() - getHeight()), getWidth(), getHeight());\n                setVvalue(getVvalue() + 0.01);\n            }\n        }\n    }\n\n    private double getScrollOffset() {\n        return getScrollFraction() * (getHeight() - flow.getHeight());\n    }\n\n    private double getScrollFraction() {\n        double vMin = getVmin();\n        double vMax = getVmax();\n        double vFrac = (getVvalue() - vMin) * (vMax - vMin);\n        return vFrac;\n    }\n\n    public void clear() {\n        thumbnails.clear();\n        flow.getChildren().clear();\n        this.slides = null;\n        selectedIndex = -1;\n        selectedSlide = null;\n    }\n\n    public void selectLast() {\n        selectedIndex = slides.length;\n        select(selectedIndex);\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/pdf/SlideChangedListener.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * Copyright (C) 2012 Michael Berry\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.pdf;\n\nimport org.quelea.data.pdf.PdfSlide;\n\n\n/**\n *\n * @author Arvid\n */\npublic interface SlideChangedListener {\n    \n    void slideChanged(PdfSlide newSlide);\n    \n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/pdf/SlideThumbnail.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * Copyright (C) 2012 Michael Berry\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.pdf;\n\nimport javafx.scene.control.Label;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.layout.BorderPane;\nimport org.quelea.data.pdf.PdfSlide;\nimport org.quelea.services.utils.QueleaProperties;\n\n/**\n *\n * @author Arvid, based on presentation.SlideThumbnail\n */\npublic class SlideThumbnail extends BorderPane {\n\n    private static final String BORDER_STYLE_SELECTED_ACTIVE = \"-fx-padding: 0.2em;-fx-border-color: #0093ff;-fx-border-radius: 5;-fx-border-width: 0.1em;\";\n    private static final String BORDER_STYLE_SELECTED_INACTIVE = \"-fx-padding: 0.2em;-fx-border-color: #999999;-fx-border-radius: 5;-fx-border-width: 0.1em;\";\n    private static final String BORDER_STYLE_DESELECTED = \"-fx-padding: 0.2em;-fx-border-color: rgb(0,0,0,0);-fx-border-radius: 5;-fx-border-width: 0.1em;\";\n    private int num;\n    private PdfSlide slide;\n    private ImageView image;\n    private boolean selected;\n    private boolean active;\n\n    public SlideThumbnail(PdfSlide slide, int num) {\n        this.num = num;\n        this.slide = slide;\n        image = new ImageView(slide.getThumbnail());\n        image.setFitWidth(QueleaProperties.get().getThumbnailSize());\n        image.setPreserveRatio(true);\n        image.setSmooth(true);\n        image.setCache(true);\n        setTop(image);\n        setCenter(new Label(Integer.toString(num)));\n    }\n\n    public void setSelected(boolean selected) {\n        this.selected=selected;\n        recalcBorder();\n    }\n\n    public void setActive(boolean active) {\n        this.active=active;\n        image.setFitWidth(QueleaProperties.get().getThumbnailSize());\n        recalcBorder();\n    }\n    \n    private void recalcBorder() {\n        if(selected) {\n            if(active) {\n                setStyle(BORDER_STYLE_SELECTED_ACTIVE);\n            }\n            else {\n                setStyle(BORDER_STYLE_SELECTED_INACTIVE);\n            }\n        }\n        else {\n            setStyle(BORDER_STYLE_DESELECTED);\n        }\n    }\n\n    public int getNum() {\n        return num;\n    }\n\n    public PdfSlide getSlide() {\n        return slide;\n    }\n}\n\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/presentation/ComThread.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * Copyright (C) 2012 Michael Berry\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.presentation;\n\nimport java.util.concurrent.Callable;\nimport java.util.concurrent.ExecutionException;\nimport java.util.concurrent.ExecutorService;\nimport java.util.concurrent.Executors;\nimport java.util.concurrent.Future;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport org.quelea.services.utils.LoggerUtils;\n\n/**\n *\n * @author Michael\n */\npublic class ComThread {\n    \n    private static final Logger LOGGER = LoggerUtils.getLogger();\n    private static final ExecutorService comService = Executors.newSingleThreadExecutor();\n    \n    public static <T> T runAndWait(Callable<T> callable) {\n        Future<T> future = comService.submit(callable);\n        try {\n            return future.get();\n        }\n        catch(InterruptedException ex) {\n            LOGGER.log(Level.WARNING, \"Interrupted\", ex);\n            return null;\n        }\n        catch(ExecutionException ex) {\n            LOGGER.log(Level.WARNING, \"COM Error\", ex);\n            return null;\n        }\n    }\n    \n    public static void runAndWait(Runnable runnable) {\n        Future<?> future=comService.submit(runnable);\n        try {\n            future.get();\n        }\n        catch(InterruptedException ex) {\n            LOGGER.log(Level.WARNING, \"Interrupted\", ex);\n        }\n        catch(ExecutionException ex) {\n            LOGGER.log(Level.WARNING, \"COM Error\", ex);\n        }\n    }\n    \n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/presentation/PowerPointHandler.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * Copyright (C) 2012 Michael Berry\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.presentation;\n\nimport java.io.BufferedReader;\nimport java.io.File;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\nimport java.util.logging.Level;\nimport org.quelea.services.utils.LoggerUtils;\nimport com.sun.jna.platform.win32.User32;\nimport com.sun.jna.platform.win32.WinDef.HWND;\nimport java.awt.AWTException;\nimport java.awt.Robot;\nimport java.awt.Toolkit;\nimport java.awt.event.KeyEvent;\nimport java.util.LinkedList;\nimport java.util.logging.Logger;\nimport javafx.application.Platform;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.QueleaApp;\n\n/**\n * Class to send OS-native signals to control a PowerPoint presentation\n *\n * @author Arvid\n */\npublic class PowerPointHandler {\n\n    private static String title;\n    private static boolean loop;\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n\n    /**\n     * Open a presentation with PowerPoint or PowerPoint Viewer\n     *\n     * @param path The absolute path to the presentation, needs to be surounded\n     * with \"\"\n     * @return Message whether the command was successful\n     */\n    public static String openPresentation(String path) {\n        if (path.contains(\"\\\\\")) {\n            title = path.substring(path.lastIndexOf(\"\\\\\") + 1, path.lastIndexOf(\".\"));\n        } else if (path.contains(\"/\")) {\n            title = path.substring(path.lastIndexOf(\"/\") + 1, path.lastIndexOf(\".\"));\n        }\n        String ppPath = QueleaProperties.get().getPPPath();\n        if (QueleaProperties.get().getUsePP()) {\n            if (Utils.isMac()) {\n                String ret;\n                if (path.contains(\" \")) {\n                    path = path.replaceFirst(\"/\", \"\").replaceAll(\"/\", \":\");\n                    ret = loadAppleScript(getAppleScript(\"open2\").replace(\"filepath\", path));\n                } else {\n                    ret = loadAppleScript(getAppleScript(\"open\").replace(\"filepath\", path));\n                }\n                return ret;\n            } else if (Utils.isWindows() && new File(ppPath).exists()) {\n                String ret;\n                if (QueleaProperties.get().getPPPath().contains(\"PPTVIEW\")) {\n                    ret = pptViewOpen(ppPath, path);\n                } else {\n                    ret = sendVBSSignal(getVBScriptPath(\"openPresentation.vbs\") + \" \" + path);\n                    returnFocusToQuelea();\n                    focusPowerPoint();\n                }\n                return ret;\n            }\n        } else {\n            return \"PowerPoint was not found\";\n        }\n        return \"\";\n    }\n\n    /**\n     * Close any open PowerPoint window (NOTE: might produce undesired behaviour\n     * if other presentations are opened)\n     *\n     * @return Message whether the command was successful\n     */\n    public static String closePresentation() {\n        String ret = \"\";\n        if (Utils.isMac()) {\n            ret = loadAppleScript(getAppleScript(\"close\"));\n        } else if (Utils.isWindows()) {\n            if (QueleaProperties.get().getPPPath().contains(\"PPTVIEW\")) {\n                pptViewClose();\n            } else {\n                ret = sendVBSSignal(getVBScriptPath(\"closePresentation.vbs\"));\n            }\n        }\n        return ret;\n    }\n\n    /**\n     * Go to next slide/part of slide of the active presentation\n     *\n     * @return Message whether the command was successful\n     */\n    public static String gotoNext() {\n        String ret = \"\";\n        if (Utils.isMac()) {\n            ret = loadAppleScript(getAppleScript(\"next\"));\n        } else if (Utils.isWindows()) {\n            if (QueleaProperties.get().getPPPath().contains(\"PPTVIEW\")) {\n                ret = pptViewNext();\n            } else {\n                ret = sendVBSSignal(getVBScriptPath(\"gotoNext.vbs\"));\n            }\n        }\n        return ret;\n    }\n\n    /**\n     * Go to previous slide/part of slide of the active presentation\n     *\n     * @return Message whether the command was successful\n     */\n    public static String gotoPrevious() {\n        String ret = \"\";\n        if (Utils.isMac()) {\n            ret = loadAppleScript(getAppleScript(\"previous\"));\n        } else if (Utils.isWindows()) {\n            if (QueleaProperties.get().getPPPath().contains(\"PPTVIEW\")) {\n                ret = pptViewPrevious();\n            } else {\n                ret = sendVBSSignal(getVBScriptPath(\"gotoPrevious.vbs\"));\n            }\n        }\n        return ret;\n    }\n\n    /**\n     * Go to a certain slide in the active presentation\n     *\n     * @param slideNumber The desired slide number to display\n     * @return Message whether the command was successful\n     */\n    public static String gotoSlide(int slideNumber) {\n        String ret = \"\";\n        if (Utils.isMac()) {\n            ret = loadAppleScript(getAppleScript(\"gotoSlide\").replace(\"{0}\", String.valueOf(slideNumber))); // Is done with key event signals as it doesn't seem to be possible to do with AppleScript\n//            returnFocusToQuelea();\n        } else if (Utils.isWindows()) {\n            if (QueleaProperties.get().getPPPath().contains(\"PPTVIEW\")) {\n                pptViewGoToSlide(slideNumber);\n            } else {\n                if (screenStatus().equals(\"\")) {\n                    ret = sendVBSSignal(getVBScriptPath(\"startPresentation.vbs\") + \" \" + slideNumber);\n                } else {\n                    ret = sendVBSSignal(getVBScriptPath(\"gotoSlide.vbs\") + \" \" + slideNumber);\n                }\n            }\n        }\n        return ret;\n    }\n\n    /**\n     * Get the active slide in the active presentation\n     *\n     * @return The number of the active slide as a string\n     */\n    public static String getCurrentSlide() {\n        String ret = \"\";\n        if (Utils.isMac()) {\n            ret = loadAppleScript(getAppleScript(\"getSlide\")).trim();\n        } else if (Utils.isWindows()) {\n            if (QueleaProperties.get().getPPPath().contains(\"PPTVIEW\")) {\n                // Cannot be done with PowerPoint Viewer as far as I know\n            } else {\n                ret = sendVBSSignal(getVBScriptPath(\"getCurrentSlide.vbs\"));\n            }\n        }\n        return ret;\n    }\n\n    /**\n     * Get the total number of slides in the active presentation\n     *\n     * @return The total number of slides as a string\n     */\n    public static String getTotalSlides() {\n        String ret = \"\";\n        if (Utils.isMac()) {\n            ret = loadAppleScript(getAppleScript(\"getTotal\")).trim();\n        } else if (Utils.isWindows()) {\n            if (QueleaProperties.get().getPPPath().contains(\"PPTVIEW\")) {\n                // Cannot be done with PowerPoint Viewer as far as I know\n            } else {\n                ret = sendVBSSignal(getVBScriptPath(\"getTotalSlides.vbs\"));\n            }\n        }\n        return ret;\n    }\n\n    /**\n     * Allow looping of the active presentation. This won't work with PowerPoint\n     * Viewer, so that must be manually activated.\n     *\n     * @return Message whether the command was successful\n     */\n    public static String loopPresentation() {\n        String ret = \"\";\n        if (Utils.isMac()) {\n            ret = loadAppleScript(getAppleScript(\"loopOn\")); // TODO: Not yet tested\n        } else if (Utils.isWindows()) {\n            if (QueleaProperties.get().getPPPath().contains(\"PPTVIEW\")) {\n                // No method yet\n            } else {\n                return sendVBSSignal(getVBScriptPath(\"startLoop.vbs\"));\n            }\n        }\n        return ret;\n    }\n\n    /**\n     * Stop looping the active presentation\n     *\n     * @return Message whether the command was successful\n     */\n    public static String stopLoop() {\n        String ret = \"\";\n        if (Utils.isMac()) {\n            ret = loadAppleScript(getAppleScript(\"loopOff\")); // TODO: Not yet tested\n        } else if (Utils.isWindows()) {\n            if (QueleaProperties.get().getPPPath().contains(\"PPTVIEW\")) {\n                // No method yet\n            } else {\n                return sendVBSSignal(getVBScriptPath(\"stopLoop.vbs\"));\n            }\n        }\n        return ret;\n    }\n\n    /**\n     * Toggle black screen on the active presentation\n     *\n     * @return Message whether the command was successful\n     */\n    public static String screenBlack() {\n        String ret = \"\";\n        if (Utils.isMac()) {\n            ret = loadAppleScript(getAppleScript(\"black\")); // Is done with key event signals as it doesn't seem to be possible to set slide state with AppleScript\n//            returnFocusToQuelea();\n        } else if (Utils.isWindows()) {\n            if (QueleaProperties.get().getPPPath().contains(\"PPTVIEW\")) {\n                return pptViewBlack();\n            } else {\n                return sendVBSSignal(getVBScriptPath(\"screenBlack.vbs\"));\n            }\n        }\n        return ret;\n    }\n\n    /**\n     * Get screen status of the active presentation\n     *\n     * @return Message whether the command was successful\n     */\n    public static String screenStatus() {\n        String ret = \"\";\n        if (Utils.isMac()) {\n            ret = loadAppleScript(getAppleScript(\"status\")).trim();\n        } else if (Utils.isWindows()) {\n            if (QueleaProperties.get().getPPPath().contains(\"PPTVIEW\")) {\n                // This cannot be done with PowerPoint Viewer\n            } else {\n                ret = sendVBSSignal(getVBScriptPath(\"screenStatus.vbs\"));\n            }\n        }\n        return ret;\n    }\n\n    /**\n     * Create a PDF file of active presentation\n     *\n     * @param path the presentation that should be used\n     * @return Message whether the command was successful\n     */\n    public static String createPDF(String path) {\n        path = \"\\\"\" + path + \"\\\"\";\n        if (path.contains(\"\\\\\")) {\n            title = path.substring(path.lastIndexOf(\"\\\\\") + 1, path.lastIndexOf(\".\"));\n        } else if (path.contains(\"/\")) {\n            title = path.substring(path.lastIndexOf(\"/\") + 1, path.lastIndexOf(\".\"));\n        }\n        String ret = \"\";\n        if (Utils.isMac()) {\n            // TODO: Not supported yet\n        } else if (Utils.isWindows()) {\n            if (QueleaProperties.get().getPPPath().contains(\"PPTVIEW\")) {\n                // This cannot be done with PowerPoint Viewer\n            } else {\n                File mainFolder = new File(\"icons/slides/\" + title);\n                if (!mainFolder.exists()) {\n                    mainFolder.mkdir();\n                }\n                ret = sendVBSSignal(getVBScriptPath(\"exportToPDF.vbs\") + \" \" + path + \" \\\"\" + mainFolder.getAbsolutePath() + \"\\\\\" + title + \".pdf\\\"\");\n            }\n        }\n        return ret;\n    }\n\n    /**\n     * Move focus to the Quelea main window.\n     */\n    public static void focusQuelea() {\n        QueleaApp.get().getMainWindow().toFront();\n    }\n\n    /**\n     * Move focus to the PowerPoint window.\n     *\n     * @return Message whether the command was successful\n     */\n    public static String focusPowerPoint() {\n        String ret = \"\";\n        if (Utils.isWindows()) {\n            if (QueleaProperties.get().getPPPath().contains(\"PPTVIEW\")) {\n                ret = focusPPTView();\n            } else {\n                ret = sendVBSSignal(getVBScriptPath(\"focus.vbs\"));\n            }\n        } else {\n            ret = loadAppleScript(getAppleScript(\"focus\"));\n        }\n        return ret;\n    }\n\n    /*--------------------- Windows VBScript methods -----------------------*/\n    /**\n     * Method to handle all VBScript calls\n     *\n     * @param string Script to be called\n     * @return Message whether the command was successful or desired value\n     */\n    private static String sendVBSSignal(String string) {\n        String result = \"\";\n        Platform.runLater(() -> {\n        });\n        try {\n            String scr = \"cscript \" + string;\n            LOGGER.log(Level.FINE, \"Running VBS: {0}\", scr);\n            Process p = Runtime.getRuntime().exec(scr.split(\" \"));\n            try (BufferedReader input = new BufferedReader(new InputStreamReader(p.getInputStream()))) {\n                String line;\n                while ((line = input.readLine()) != null) {\n                    if (!line.contains(\"(C)\") && !line.contains(\"(R)\")) {\n                        result += line;\n                        if (line.contains(\"vbscript\")) {\n                            LOGGER.log(Level.INFO, \"VBScript not found: {0}\", line);\n                        }\n                    }\n                }\n            }\n        } catch (IOException e) {\n            LOGGER.log(Level.INFO, \"Could not start VBScript \" + string, e);\n        }\n        return result.trim();\n    }\n\n    /**\n     * Get the path of the VBScript files\n     *\n     * @param script the name of the file\n     * @return full path to the script\n     */\n    private static String getVBScriptPath(String script) {\n        String path;\n        if (script.contains(\" \")) {\n            script = script.replace(\" \", \"\\\" \");\n            path = \"\\\"\" + new File(\"vbs/\" + script).getAbsolutePath();\n        } else {\n            path = \"\\\"\" + new File(\"vbs/\" + script).getAbsolutePath() + \"\\\"\";\n        }\n\n        return path;\n    }\n\n    /*--------------------- Windows PowerPoint Viewer methods -----------------------*/\n    /**\n     * Open a presentation with PowerPoint Viewer in Windows.\n     *\n     * @param ppPath The path to the PowerPoint Viwer file\n     * @param path The path to the presentation\n     * @return Message whether the command was successful\n     */\n    private static String pptViewOpen(String ppPath, String path) {\n        String ret = \"\";\n        try {\n            // Always close old presentations before opening new ones\n            pptViewClose();\n            Thread.sleep(500);\n            Runtime rt = Runtime.getRuntime();\n            rt.exec((\"\\\"\" + ppPath + \"\\\" /F\" + path).split(\" \"));\n            Thread.sleep(500);\n            for (int i = 0; i < QueleaProperties.get().getProjectorScreen(); i++) {\n                movePPTViewToSecondScreen();\n            }\n        } catch (IOException e) {\n            ret = \"Could not open PowerPoint Viewer \";\n            LOGGER.log(Level.INFO, ret, e);\n        } catch (InterruptedException ex) {\n            ret = \"Interrupted when trying to start PowerPoint Viewer \";\n            LOGGER.log(Level.INFO, ret, ex);\n        }\n        return ret;\n    }\n\n    /**\n     * Close PowerPoint Viewer in Windows\n     */\n    private static void pptViewClose() {\n        Runtime rt = Runtime.getRuntime();\n        try {\n            rt.exec((\"taskkill /F /IM PPTVIEW.exe\").split(\" \"));\n        } catch (IOException ex) {\n            LOGGER.log(Level.INFO, \"Could not close PowerPoint Viewer \", ex);\n        }\n    }\n\n    /**\n     * Send next signal through key event\n     */\n    private static String pptViewNext() {\n        System.out.println(\"Next\");\n        return sendPPTViewSignals(KeyEvent.VK_RIGHT);\n    }\n\n    /**\n     * Send previous signal through key event\n     */\n    private static String pptViewPrevious() {\n        return sendPPTViewSignals(KeyEvent.VK_LEFT);\n    }\n\n    /**\n     * Send black signal through key event\n     */\n    private static String pptViewBlack() {\n        return sendPPTViewSignals(KeyEvent.VK_B);\n    }\n\n    /**\n     * Go to a certain slide through key events\n     */\n    private static void pptViewGoToSlide(int num) {\n        LinkedList<Integer> stack = new LinkedList<>();\n        while (num > 0) {\n            stack.push(num % 10);\n            num = num / 10;\n        }\n\n        // Set focus to PowerPoint presentation and send key signal number + return\n        HWND hwnd = User32.INSTANCE.FindWindow(null,\n                title); // window title\n        if (hwnd == null) {\n            LOGGER.log(Level.INFO, \"PowerPoint Viewer is not running\");\n        } else {\n            User32.INSTANCE.ShowWindow(hwnd, 9); // SW_RESTORE\n            User32.INSTANCE.SetForegroundWindow(hwnd); // bring to front\n            Robot robot;\n            try {\n                robot = new Robot();\n                while (!stack.isEmpty()) {\n                    int slide = stack.pop() + 96;\n                    robot.keyPress(slide);\n                    robot.keyRelease(slide);\n                }\n                robot.keyPress(KeyEvent.VK_ENTER);\n                robot.keyRelease(KeyEvent.VK_ENTER);\n            } catch (AWTException e) {\n                LOGGER.log(Level.INFO, \"Failed going to slide {0} in PowerPoint Viewer\", num);\n            }\n        }\n    }\n\n    /**\n     * Loop variable for experimental PowerPoint Viewer loop feature\n     *\n     * @return the loop\n     */\n    public static boolean isLoop() {\n        return loop;\n    }\n\n    /**\n     * Loop variable for experimental PowerPoint Viewer loop feature\n     *\n     * @param aLoop the loop to set\n     */\n    public static void setLoop(boolean aLoop) {\n        loop = aLoop;\n    }\n\n    /**\n     * Manually move the PowerPoint Viewer window through key events. It will\n     * show the presentation on the first screen by default for some reason.\n     * Note: This only moves the window to the right, so screens extended to the\n     * left are not supported.\n     */\n    private static void movePPTViewToSecondScreen() {\n        // Set focus to PowerPoint Viewer and send key signal \"win+shift+right\"\n        HWND hwnd = null;\n        int tries = 0;\n        do {\n            hwnd = User32.INSTANCE.FindWindow(null,\n                    title); // window title\n            tries++;\n            try {\n                Thread.sleep(500);\n            } catch (InterruptedException ex) {\n                LOGGER.log(Level.INFO, \"Interrupted when trying to find PowerPoint Viewer\");\n            }\n        } while (tries != 10 && hwnd == null);\n        if (hwnd == null) {\n            LOGGER.log(Level.INFO, \"PowerPoint Viewer is not running\");\n        } else {\n            User32.INSTANCE.ShowWindow(hwnd, 9); // SW_RESTORE\n            User32.INSTANCE.SetForegroundWindow(hwnd); // bring to front\n            Robot robot;\n            try {\n                robot = new Robot();\n                Toolkit.getDefaultToolkit().setLockingKeyState(KeyEvent.VK_NUM_LOCK, false);\n                robot.keyPress(KeyEvent.VK_SHIFT);\n                robot.keyPress(KeyEvent.VK_WINDOWS);\n                robot.keyPress(KeyEvent.VK_RIGHT);\n                robot.keyRelease(KeyEvent.VK_RIGHT);\n                robot.keyRelease(KeyEvent.VK_WINDOWS);\n                robot.keyRelease(KeyEvent.VK_SHIFT);\n            } catch (AWTException e) {\n                LOGGER.log(Level.INFO, \"Failed moving PowerPoint Viewer to projection monitor\");\n            }\n            returnFocusToQuelea();\n        }\n    }\n\n    /**\n     * Method for sending key events to PowerPoint Viewer in Windows.\n     *\n     * @param keyEvent the decired signal to send to PowerPoint Viewer\n     */\n    private static String sendPPTViewSignals(int keyEvent) {\n        // Set focus to PowerPoint presentation and send key signals\n        String ret;\n        if (focusPowerPoint().contains(\"Successfully\")) {\n            Robot robot;\n            try {\n                robot = new Robot();\n                robot.keyPress(keyEvent);\n                robot.keyRelease(keyEvent);\n            } catch (AWTException e) {\n                LOGGER.log(Level.INFO, \"Failed sendng key event to PowerPoint Viewer\");\n            }\n            ret = \"Signal sending was successful\";\n        } else {\n            ret = \"PowerPoint Viewer is not running\";\n        }\n        return ret;\n    }\n\n    /**\n     * Manually focus the PowerPoint Viewer window. Shift focus to PowerPoint\n     * Viewer to move that window to the top or resume playback.\n     */\n    private static String focusPPTView() {\n        // Set focus to PowerPoint Viewer\n        HWND hwnd = User32.INSTANCE.FindWindow(null,\n                title); // window title\n        String ret = \"\";\n        if (hwnd == null) {\n            ret = \"PowerPoint Viewer is not running\";\n            LOGGER.log(Level.INFO, ret);\n\n        } else {\n            User32.INSTANCE.ShowWindow(hwnd, 9); // SW_RESTORE\n            User32.INSTANCE.SetForegroundWindow(hwnd); // bring to front\n            ret = \"Successfully focued PPTView\";\n        }\n        return ret;\n    }\n\n    /*--------------------- Mac AppleScript methods -----------------------*/\n    /**\n     * Get the result from the AppleScript.\n     *\n     * @param result the AppleScript Process\n     * @return the return string from the AppleScript\n     */\n    private static String getMacResult(Process result) {\n        try {\n            result.waitFor();\n\n            String line;\n            StringBuilder output = new StringBuilder();\n\n            if (result.exitValue() != 0) {\n\n                BufferedReader err = new BufferedReader(new InputStreamReader(result.getErrorStream()));\n                while ((line = err.readLine()) != null) {\n                    output.append(line).append(\"\\n\");\n                }\n\n                return (\"PowerPoint is not running: \" + output.toString().trim());\n\n            } else {\n                String s;\n                StringBuilder sb = new StringBuilder();\n                BufferedReader res = new BufferedReader(new InputStreamReader(result.getInputStream()));\n                while ((s = res.readLine()) != null) {\n                    sb.append(s).append(\"\\n\");\n                }\n                return sb.toString();\n            }\n\n        } catch (InterruptedException | IOException ex) {\n            LOGGER.log(Level.INFO, \"Failed getting result from AppleScript\");\n        }\n        return \"\";\n    }\n\n    /**\n     * The AppleScript methods for PowerPoint\n     *\n     * @param string The method to load\n     * @return the AppleScript\n     */\n    private static String getAppleScript(String string) {\n        switch (string) {\n            case \"open\":\n                return \"tell application \\\"Microsoft PowerPoint\\\"\\n\"\n                        + \"     open filepath\\n\"\n                        + \"\trepeat until document window 1 exists\\n\"\n                        + \"\t\tdelay 0.2\\n\"\n                        + \"\tend repeat\\n\"\n                        + \"\t\\n\"\n                        + \"\tset theSlideShowSet to slide show settings of active presentation\\n\"\n                        + \"     try\\n\"\n                        + \"         set show type of theSlideShowSet to slide show type presenter\\n\"\n                        + \"     on error errorMessage number errorNumber\\n\"\n                        + \"         return errorMessage\\n\"\n                        + \"     end try\\n\"\n                        + \"\trun slide show theSlideShowSet\\n\"\n                        + \"end tell\";\n            case \"close\":\n                return \"if application \\\"Microsoft PowerPoint\\\" is running then\\n\"\n                        + \"     tell application \\\"Microsoft PowerPoint\\\"\\n\"\n                        + \"        close active presentation saving no\\n\"\n                        + \"     end tell\\n\"\n                        + \"else\\n\"\n                        + \"    return \\\"Not running\\\"\\n\"\n                        + \"end if\";\n            case \"gotoSlide\":\n                return \"if application \\\"Microsoft PowerPoint\\\" is running then\\n\"\n                        + \"  tell application \\\"Microsoft PowerPoint\\\"\\n\"\n                        + \"\tactivate\\n\"\n                        + \"\tdelay 0.25\\n\"\n                        + \"\ttell application \\\"System Events\\\" to keystroke \\\"{0}\\\"\\n\"\n                        + \"\ttell application \\\"System Events\\\" to key code 36\\n\"\n                        + \"end tell\\n\"\n                        + \"else\\n\"\n                        + \"    return \\\"Not running\\\"\\n\"\n                        + \"end if\";\n            case \"next\":\n                return \"if application \\\"Microsoft PowerPoint\\\" is running then\\n\"\n                        + \"     tell application \\\"Microsoft PowerPoint\\\"\\n\"\n                        + \"\tgo to next slide slideshow view of slide show window 1\\n\"\n                        + \"end tell\\n\"\n                        + \"else\\n\"\n                        + \"    return \\\"Not running\\\"\\n\"\n                        + \"end if\";\n            case \"previous\":\n                return \"if application \\\"Microsoft PowerPoint\\\" is running then\\n\"\n                        + \"     tell application \\\"Microsoft PowerPoint\\\"\\n\"\n                        + \"\tgo to previous slide slideshow view of slide show window 1\\n\"\n                        + \"end tell\\n\"\n                        + \"else\\n\"\n                        + \"    return \\\"Not running\\\"\\n\"\n                        + \"end if\";\n            case \"getSlide\":\n                return \"if application \\\"Microsoft PowerPoint\\\" is running then\\n\"\n                        + \"     tell application \\\"Microsoft PowerPoint\\\"\\n\"\n                        + \"     return slide index of slide of slide show view of slide show window 1\\n\"\n                        + \"end tell\\n\"\n                        + \"else\\n\"\n                        + \"    return \\\"Not running\\\"\\n\"\n                        + \"end if\";\n            case \"black\":\n                return \"if application \\\"Microsoft PowerPoint\\\" is running then\\n\"\n                        + \"     tell application \\\"Microsoft PowerPoint\\\"\\n\"\n                        + \"     activate\\n\"\n                        + \"\tdelay 0.25\\n\"\n                        + \"\ttell application \\\"System Events\\\" to keystroke \\\"b\\\"\\n\"\n                        + \"end tell\\n\"\n                        + \"else\\n\"\n                        + \"    return \\\"Not running\\\"\\n\"\n                        + \"end if\";\n            case \"getTotal\":\n                return \"if application \\\"Microsoft PowerPoint\\\" is running then\\n\"\n                        + \"     tell application \\\"Microsoft PowerPoint\\\"\\n\"\n                        + \"\tset maxSlide to (get count of slides of presentation of document window 1)\\n\"\n                        + \"     return maxSlide\\n\"\n                        + \"end tell\\n\"\n                        + \"else\\n\"\n                        + \"    return \\\"Not running\\\"\\n\"\n                        + \"end if\";\n            case \"status\":\n                return \"if application \\\"Microsoft PowerPoint\\\" is running then\\n\"\n                        + \"     tell application \\\"Microsoft PowerPoint\\\"\\n\"\n                        + \"\tif (slide state of slide show view of slide show window of active presentation is slide show state black screen) then\\n\"\n                        + \"\t\treturn \\\"3\\\"\\n\"\n                        + \"\telse\\n\"\n                        + \"\t\treturn \\\"1\\\"\\n\"\n                        + \"\tend if\\n\"\n                        + \"end tell\\n\"\n                        + \"else\\n\"\n                        + \"    return \\\"Not running\\\"\\n\"\n                        + \"end if\";\n            case \"open2\":\n                return \"tell application \\\"Finder\\\"\\n\"\n                        + \"\topen alias filepath\\n\"\n                        + \"end tell\\n\"\n                        + \"delay 2\\n\"\n                        + \"if application \\\"Microsoft PowerPoint\\\" is running then\\n\"\n                        + \"tell application \\\"Microsoft PowerPoint\\\"\\n\"\n                        + \"     open filepath\\n\"\n                        + \"\trepeat until document window 1 exists\\n\"\n                        + \"\t\tdelay 0.2\\n\"\n                        + \"\tend repeat\\n\"\n                        + \"\t\\n\"\n                        + \"\tset theSlideShowSet to slide show settings of active presentation\\n\"\n                        + \"     try\\n\"\n                        + \"         set loop until stopped of theSlideShowSet to true\\n\"\n                        + \"         set show type of theSlideShowSet to slide show type presenter\\n\"\n                        + \"     on error errorMessage number errorNumber\\n\"\n                        + \"         return errorMessage\\n\"\n                        + \"     end try\\n\"\n                        + \"\trun slide show theSlideShowSet\\n\"\n                        + \"end tell\\n\"\n                        + \"else\\n\"\n                        + \"\tdelay 2\\n\"\n                        + \"tell application \\\"Microsoft PowerPoint\\\"\\n\"\n                        + \"     open filepath\\n\"\n                        + \"\trepeat until document window 1 exists\\n\"\n                        + \"\t\tdelay 0.2\\n\"\n                        + \"\tend\\n\"\n                        + \"\t\\n\"\n                        + \"\tset theSlideShowSet to slide show settings of active presentation\\n\"\n                        + \"     try\\n\"\n                        + \"         set loop until stopped of theSlideShowSet to true\\n\"\n                        + \"         set show type of theSlideShowSet to slide show type presenter\\n\"\n                        + \"     on error errorMessage number errorNumber\\n\"\n                        + \"         return errorMessage\\n\"\n                        + \"     end try\\n\"\n                        + \"\trun slide show theSlideShowSet\\n\"\n                        + \"end tell\\n\"\n                        + \"end if\";\n            case \"focus\":\n                return \"if application \\\"Microsoft PowerPoint\\\" is running then\\n\"\n                        + \"  tell application \\\"Microsoft PowerPoint\\\"\\n\"\n                        + \"\tactivate\\n\"\n                        + \"end tell\\n\"\n                        + \"else\\n\"\n                        + \"    return \\\"Not running\\\"\\n\"\n                        + \"end if\";\n            case \"loopOn\":\n                return \"if application \\\"Microsoft PowerPoint\\\" is running then\\n\"\n                        + \"  tell application \\\"Microsoft PowerPoint\\\"\\n\"\n                        + \"\tset curSlide to (slide number of slide of slide show view of slide show window of active presentation)\\n\"\n                        + \"\texit slide show of slide show view of slide show window 1\\n\"\n                        + \"\ttry\\n\"\n                        + \"\t\tset theSlideShowSet to active presentation's slide show settings\\n\"\n                        + \"\t\tset theSlideShowSet's starting slide to curSlide\\n\"\n                        + \"\t\tset loop until stopped of theSlideShowSet to true\\n\"\n                        + \"\ton error errorMessage number errorNumber\\n\"\n                        + \"\t\treturn errorMessage\\n\"\n                        + \"\tend try\\n\"\n                        + \"\trun slide show theSlideShowSet\\n\"\n                        + \"end tell\";\n            case \"loopOff\":\n                return \"if application \\\"Microsoft PowerPoint\\\" is running then\\n\"\n                        + \"  tell application \\\"Microsoft PowerPoint\\\"\\n\"\n                        + \"\tset curSlide to (slide number of slide of slide show view of slide show window of active presentation)\\n\"\n                        + \"\texit slide show of slide show view of slide show window 1\\n\"\n                        + \"\ttry\\n\"\n                        + \"\t\tset theSlideShowSet to active presentation's slide show settings\\n\"\n                        + \"\t\tset theSlideShowSet's starting slide to curSlide\\n\"\n                        + \"\t\tset loop until stopped of theSlideShowSet to false\\n\"\n                        + \"\ton error errorMessage number errorNumber\\n\"\n                        + \"\t\treturn errorMessage\\n\"\n                        + \"\tend try\\n\"\n                        + \"\trun slide show theSlideShowSet\\n\"\n                        + \"end tell\";\n            default:\n                return null;\n        }\n    }\n\n    /**\n     * Send AppleScript signal.\n     *\n     * @param script signal to send.\n     * @return result\n     */\n    private static String loadAppleScript(String script) {\n        Runtime runtime = Runtime.getRuntime();\n        String[] args = {\"osascript\", \"-e\", script};\n        try {\n            Process process = runtime.exec(args);\n            return getMacResult(process);\n        } catch (IOException ex) {\n            LOGGER.log(Level.INFO, \"Running AppleScript {0}\", script);\n        }\n        return \"\";\n    }\n\n    /*--------------------- General methods -----------------------*/\n    /**\n     * Moves the focus back to the Quelea window.\n     *\n     * Note: PowerPoint (both regual and Viewer) stops any ongoing playback or\n     * animation when focus is lost, so perhaps this feature should be\n     * evaualted.\n     */\n    private static void returnFocusToQuelea() {\n        if (Utils.isMac()) {\n            File installPath = new File(\"/Applications/Quelea/Quelea.jar\");\n            if (installPath.exists()) {\n                Runtime runtime = Runtime.getRuntime();\n                String[] args = {\"open\", installPath.getPath()};\n                try {\n                    Process process = runtime.exec(args);\n                } catch (IOException ex) {\n                    LOGGER.log(Level.INFO, \"Could not return focus to Quelea main window\");\n                }\n            }\n        } else if (Utils.isWindows()) {\n            try {\n                Thread.sleep(500);\n            } catch (InterruptedException ex) {\n                LOGGER.log(Level.INFO, \"Interrupted when trying to move focus back to Quelea\");\n            }\n            HWND quelea = User32.INSTANCE.FindWindow(null,\n                    \"Quelea \" + QueleaProperties.VERSION.getVersionString()); // Move back to main window\n            if (quelea == null) {\n                LOGGER.log(Level.INFO, \"Could not find Quelea main window\");\n            } else {\n                User32.INSTANCE.SetForegroundWindow(quelea); // bring to front\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/presentation/PresentationControls.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n * Copyright (C) 2012 Michael Berry\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.presentation;\n\nimport javafx.scene.control.Button;\nimport javafx.scene.effect.Glow;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.input.MouseEvent;\nimport javafx.scene.layout.StackPane;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.windows.main.LivePanel;\nimport org.quelea.windows.main.QueleaApp;\n\n/**\n * The presentation controls containing a next and a previous button.\n * <p/>\n *\n * @author Arvid\n */\npublic class PresentationControls extends StackPane {\n\n    public PresentationControls() {\n        boolean darkTheme = QueleaProperties.get().getUseDarkTheme();\n        final Image PREVIOUS_IMAGE = new Image(darkTheme ? \"file:icons/previous-light.png\" : \"file:icons/previous.png\");\n        final Image NEXT_IMAGE = new Image(darkTheme ? \"file:icons/next-light.png\" : \"file:icons/next.png\");\n        Button previousButton = new Button(\"\", setImageView(PREVIOUS_IMAGE));\n        setButtonParams(previousButton);\n        previousButton.setTranslateX(-120);\n        getChildren().add(previousButton);\n        previousButton.setOnMouseClicked((MouseEvent t) -> {\n            PowerPointHandler.gotoPrevious();\n            String result = PowerPointHandler.getCurrentSlide();\n            if (!result.contains(\"not running\") && !result.equals(\"\")) {\n                int i = Integer.parseInt(result);\n                QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().getPresentationPanel().getPresentationPreview().select(i, true);\n            }\n            LivePanel lp = QueleaApp.get().getMainWindow().getMainPanel().getLivePanel();\n            if (lp.getBlacked() && !PowerPointHandler.screenStatus().equals(\"3\")) {\n                lp.setBlacked(false);\n            }\n        });\n\n        Button nextButton = new Button(\"\", setImageView(NEXT_IMAGE));\n        nextButton.setOnMouseClicked((MouseEvent t) -> {\n            PowerPointHandler.gotoNext();\n            String result = PowerPointHandler.getCurrentSlide();\n            if (!result.contains(\"not running\") && !result.equals(\"\")) {\n                int i = Integer.parseInt(result);\n                QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().getPresentationPanel().getPresentationPreview().select(i, true);\n            }\n            LivePanel lp = QueleaApp.get().getMainWindow().getMainPanel().getLivePanel();\n            if (lp.getBlacked() && !PowerPointHandler.screenStatus().equals(\"3\")) {\n                lp.setBlacked(false);\n            }\n        });\n\n        setButtonParams(nextButton);\n        nextButton.setTranslateX(120);\n        getChildren().add(nextButton);\n    }\n\n    private void setButtonParams(final Button button) {\n        button.setOnMouseEntered((MouseEvent t) -> {\n            button.setEffect(new Glow(0.5));\n        });\n        button.setOnMouseExited((MouseEvent t) -> {\n            button.setEffect(null);\n        });\n        button.setPrefWidth(200);\n    }\n\n    private ImageView setImageView(Image image) {\n        ImageView iv2 = new ImageView();\n        iv2.setImage(image);\n        iv2.setPreserveRatio(true);\n        iv2.setSmooth(true);\n        iv2.setCache(true);\n        return iv2;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/presentation/PresentationDrawer.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.presentation;\n\nimport javafx.scene.image.ImageView;\nimport org.quelea.data.displayable.Displayable;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.DisplayableDrawer;\n\n/**\n *\n * @author Arvid\n */\npublic class PresentationDrawer extends DisplayableDrawer {\n\n\n    public PresentationDrawer(PresentationControls controlPanel) {\n    }\n\n    @Override\n    public void draw(Displayable displayable) {\n        if(getCanvas().isStageView()) {\n            ImageView imageView = getCanvas().getNewImageView();\n            imageView.setImage(Utils.getImageFromColour(QueleaProperties.get().getStageBackgroundColor()));\n            getCanvas().getChildren().add(0, imageView);\n        }\n        else {\n        }\n    }\n\n    public void setPlayVideo(boolean playVideo) {\n    }\n\n    @Override\n    public void clear() {\n    }\n\n    @Override\n    public void requestFocus() {\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/presentation/PresentationPanel.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.presentation;\n\nimport javafx.animation.Animation;\nimport javafx.animation.KeyFrame;\nimport javafx.animation.Timeline;\nimport javafx.application.Platform;\nimport javafx.beans.value.ChangeListener;\nimport javafx.beans.value.ObservableValue;\nimport javafx.geometry.Insets;\nimport javafx.scene.image.Image;\nimport javafx.scene.input.KeyCode;\nimport javafx.scene.input.KeyEvent;\nimport javafx.scene.layout.BorderPane;\nimport javafx.util.Duration;\nimport org.javafx.dialog.Dialog;\nimport org.quelea.data.displayable.ImageDisplayable;\nimport org.quelea.data.displayable.PresentationDisplayable;\nimport org.quelea.data.powerpoint.OOPresentation;\nimport org.quelea.data.powerpoint.PresentationSlide;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.windows.image.ImageDrawer;\nimport org.quelea.windows.main.*;\n\n/**\n * The panel for displaying presentation slides in the live / preview panels.\n * <p/>\n * @author Michael\n */\npublic class PresentationPanel extends AbstractPanel {\n\n    private PresentationPreview presentationPreview;\n    private PresentationDisplayable displayable;\n    private boolean live;\n    private DisplayableDrawer drawer = new ImageDrawer();\n    private PresentationSlide currentSlide = null;\n    private LivePreviewPanel containerPanel;\n    private PresentationControls controlPanel;\n    private Timeline loopTimeline;\n    private final boolean usePowerPoint;\n\n    /**\n     * Create a new presentation panel.\n     * <p/>\n     * @param containerPanel the panel to create.\n     */\n    public PresentationPanel(final LivePreviewPanel containerPanel) {\n        usePowerPoint = QueleaProperties.get().getUsePP();\n        if (usePowerPoint) {\n            this.controlPanel = new PresentationControls();\n            drawer = new PresentationDrawer(controlPanel);\n            BorderPane.setMargin(controlPanel, new Insets(30));\n            setBottom(controlPanel);\n            setMinWidth(50);\n            setMinHeight(50);\n        }\n        this.containerPanel = containerPanel;\n        BorderPane mainPanel = new BorderPane();\n        presentationPreview = new PresentationPreview();\n        presentationPreview.addSlideChangedListener(newSlide -> {\n            if (live) {\n                LivePanel lp = QueleaApp.get().getMainWindow().getMainPanel().getLivePanel();\n                if (lp.getDisplayable() instanceof PresentationDisplayable) {\n                    if (!PowerPointHandler.getCurrentSlide().equals(String.valueOf(presentationPreview.getSelectedIndex()))) {\n                        PowerPointHandler.gotoSlide(presentationPreview.getSelectedIndex());\n                    }\n                }\n                if (newSlide != null && displayable != null) {\n                    if (displayable.getOOPresentation() == null) {\n                        currentSlide = newSlide;\n                        updateCanvas();\n                    } else {\n                        OOPresentation pres = displayable.getOOPresentation();\n                        pres.setSlideListener((final int newSlideIndex) -> {\n                            presentationPreview.select(newSlideIndex + 1);\n                        });\n                        currentSlide = newSlide;\n                        startOOPres();\n                        QueleaApp.get().getMainWindow().toFront();\n                        pres.gotoSlide(presentationPreview.getSelectedIndex() - 1);\n                    }\n                }\n                if (QueleaProperties.get().getUsePP() && lp.getBlacked() && !PowerPointHandler.screenStatus().equals(\"3\")) {\n                    lp.setBlacked(false);\n                }\n            }\n        });\n        presentationPreview.select(0);\n\n        presentationPreview.addEventHandler(KeyEvent.KEY_PRESSED, t -> {\n            if (t.getCode().equals(KeyCode.PAGE_DOWN) || t.getCode().equals(KeyCode.DOWN) || t.getCode().equals(KeyCode.RIGHT)) {\n                t.consume();\n                QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().advance();\n            } else if (t.getCode().equals(KeyCode.PAGE_UP) || t.getCode().equals(KeyCode.UP) || t.getCode().equals(KeyCode.LEFT)) {\n                t.consume();\n                QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().previous();\n            }\n        });\n        mainPanel.setCenter(presentationPreview);\n        setCenter(mainPanel);\n    }\n\n    @Override\n    public void requestFocus() {\n        presentationPreview.requestFocus();\n    }\n\n    public void buildLoopTimeline() {\n        loopTimeline = new Timeline(\n                new KeyFrame(Duration.seconds(0),\n                        actionEvent -> {\n                            if (containerPanel instanceof LivePanel) {\n                                LivePanel livePanel = ((LivePanel) containerPanel);\n                                if (livePanel.isLoopSelected()) {\n                                    if (QueleaProperties.get().getUsePP() && livePanel.getDisplayable() instanceof PresentationDisplayable) {\n                                        String result = PowerPointHandler.gotoNext();\n                                        if (result.contains(\"not running\")) {\n                                            Dialog.showInfo(LabelGrabber.INSTANCE.getLabel(\"set.loop.manually.title\"), LabelGrabber.INSTANCE.getLabel(\"set.loop.manually.message\"));\n                                            livePanel.stopLoop();\n                                        }\n                                    } else if (livePanel.getDisplayable() instanceof PresentationDisplayable) {\n                                        presentationPreview.advanceSlide(true);\n                                    } else {\n                                        if (livePanel.getIndex() != livePanel.getLength()) {\n                                            livePanel.advance();\n                                        } else {\n                                            livePanel.selectFirstLyric();\n                                        }\n                                    }\n                                    LivePanel lp = QueleaApp.get().getMainWindow().getMainPanel().getLivePanel();\n                                    if (lp.getDisplayable() instanceof PresentationDisplayable) {\n                                        String result = PowerPointHandler.getCurrentSlide();\n                                        if (!result.contains(\"not running\") && !result.isEmpty()) {\n                                            int i = Integer.parseInt(result);\n                                            presentationPreview.select(i, false);\n                                        }\n                                    }\n                                    if (lp.getDisplayable() instanceof PresentationDisplayable && QueleaProperties.get().getUsePP() && !QueleaProperties.get().getPPPath().contains(\"PPTVIEW\") && lp.getBlacked() && !PowerPointHandler.screenStatus().equals(\"3\")) {\n                                        lp.setBlacked(false);\n                                    }\n                                }\n                            }\n                        }\n                ),\n                new KeyFrame(Duration.seconds(10))\n        );\n        loopTimeline.setCycleCount(Animation.INDEFINITE);\n\n        loopTimeline.play();\n\n        QueleaApp.get()\n                .doOnLoad(() -> QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().getLoopDurationTextField().textProperty().addListener(new ChangeListener<String>() {\n\n                    @Override\n                    public void changed(ObservableValue<? extends String> ov, String t, String t1) {\n                        int newTime;\n                        try {\n                            newTime = Integer.parseInt(t1);\n                        } catch (NumberFormatException ex) {\n                            return;\n                        }\n                        loopTimeline.stop();\n                        loopTimeline = new Timeline(\n                                new KeyFrame(Duration.seconds(0),\n                                        actionEvent -> {\n                                            if (containerPanel instanceof LivePanel) {\n                                                LivePanel livePanel = ((LivePanel) containerPanel);\n                                                if (livePanel.isLoopSelected()) {\n                                                    if (QueleaProperties.get().getUsePP() && livePanel.getDisplayable() instanceof PresentationDisplayable) {\n                                                        String result = PowerPointHandler.gotoNext();\n                                                        if (result.contains(\"not running\")) {\n                                                            Dialog.showInfo(LabelGrabber.INSTANCE.getLabel(\"set.loop.manually.title\"), LabelGrabber.INSTANCE.getLabel(\"set.loop.manually.message\"));\n                                                            livePanel.stopLoop();\n                                                        }\n                                                    } else if (livePanel.getDisplayable() instanceof PresentationDisplayable) {\n                                                        presentationPreview.advanceSlide(true);\n                                                    } else {\n                                                        if (livePanel.getIndex() != livePanel.getLength()) {\n                                                            livePanel.advance();\n                                                        } else {\n                                                            livePanel.selectFirstLyric();\n                                                        }\n                                                    }\n                                                    LivePanel lp = QueleaApp.get().getMainWindow().getMainPanel().getLivePanel();\n                                                    if (lp.getDisplayable() instanceof PresentationDisplayable) {\n                                                        String result = PowerPointHandler.getCurrentSlide();\n                                                        if (!result.contains(\"not running\") && !result.isEmpty()) {\n                                                            int i = Integer.parseInt(result);\n                                                            presentationPreview.select(i, false);\n                                                        }\n                                                    }\n                                                    if (lp.getDisplayable() instanceof PresentationDisplayable && QueleaProperties.get().getUsePP() && !QueleaProperties.get().getPPPath().contains(\"PPTVIEW\") && lp.getBlacked() && !PowerPointHandler.screenStatus().equals(\"3\")) {\n                                                        lp.setBlacked(false);\n                                                    }\n                                                }\n                                            }\n                                        }\n                                ),\n                                new KeyFrame(Duration.seconds(newTime))\n                        );\n                        loopTimeline.setCycleCount(Animation.INDEFINITE);\n                        loopTimeline.play();\n                    }\n                })\n                );\n    }\n\n    private void drawSlide(PresentationSlide newSlide, DisplayCanvas canvas) {\n        Image displayImage = newSlide.getImage();\n        ImageDisplayable imageDisplayable = new ImageDisplayable(displayImage);\n        drawer.setCanvas(canvas);\n        drawer.draw(imageDisplayable);\n    }\n\n    public void stopCurrent() {\n        if (live && displayable != null) {\n            if (displayable.getOOPresentation() != null) {\n                displayable.getOOPresentation().stop();\n                displayable = null;\n            }\n        }\n    }\n\n    /**\n     * If not started already, start the OO presentation.\n     */\n    private void startOOPres() {\n        OOPresentation pres = displayable.getOOPresentation();\n        if (pres != null && !pres.isRunning()) {\n            pres.start(QueleaProperties.get().getProjectorScreen());\n        }\n    }\n\n    /**\n     * Let this panel know it is live and should update accordingly.\n     */\n    public void setLive() {\n        live = true;\n    }\n\n    /**\n     * Set the displayable to be on this presentation panel.\n     * <p/>\n     * @param displayable the presentation displayable to display.\n     * @param index the index to display.\n     */\n    public void showDisplayable(final PresentationDisplayable displayable, final int index) {\n        if (this.displayable == displayable) {\n            return;\n        }\n        this.displayable = displayable;\n        if (displayable == null) {\n            presentationPreview.clear();\n            return;\n        }\n        PresentationSlide[] slides = displayable.getPresentation().getSlides();\n        presentationPreview.setSlides(slides);\n        Platform.runLater(() -> presentationPreview.select(Math.max(index,1), true));\n\n        /*\n         * TODO\n         * For some reason the following scroll to line causes a bug whereby\n         * the contents are only registered the second time of viewing? So\n         * leave commented out until we can get to the bottom of it.\n         */\n//        presentationList.scrollTo(getIndex());\n        updateCanvas();\n    }\n\n    /**\n     * Get the currently selected index on this panel.\n     * <p/>\n     * @return the currently selected index on this panel.\n     */\n    public int getIndex() {\n        return presentationPreview.getSelectedIndex();\n    }\n\n    /**\n     * Get the length of the item on this panel.\n     * <p/>\n     * @return the length of the item on this panel.\n     */\n    public int getSlideCount() {\n        return presentationPreview.getSlideCount();\n    }\n\n    /**\n     * Clear this panel (well, actually don't do anything because we can't clear\n     * a presentation.)\n     */\n    @Override\n    public void removeCurrentDisplayable() {\n        //Doesn't apply\n    }\n\n    @Override\n    public int getCurrentIndex() {\n        return presentationPreview.getSelectedIndex();\n    }\n\n    @Override\n    public void updateCanvas() {\n        for (DisplayCanvas canvas : getCanvases()) {\n            if (currentSlide != null) {\n                drawSlide(currentSlide, canvas);\n            }\n        }\n    }\n\n    @Override\n    public DisplayableDrawer getDrawer(DisplayCanvas canvas) {\n        return drawer;\n    }\n\n    public void advance() {\n        if (QueleaProperties.get().getUsePP()) {\n            PowerPointHandler.gotoNext();\n            String result = PowerPointHandler.getCurrentSlide();\n            if (!result.contains(\"not running\") && !result.isEmpty()) {\n                int i = Integer.parseInt(result);\n                QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().getPresentationPanel().getPresentationPreview().select(i, true);\n            }\n        } else if (displayable.getOOPresentation() != null) {\n            displayable.getOOPresentation().goForward();\n        } else {\n            presentationPreview.advanceSlide(false);\n        }\n    }\n\n    public void previous() {\n        if (QueleaProperties.get().getUsePP()) {\n            PowerPointHandler.gotoPrevious();\n            String result = PowerPointHandler.getCurrentSlide();\n            if (!result.contains(\"not running\") && !result.isEmpty()) {\n                int i = Integer.parseInt(result);\n                QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().getPresentationPanel().getPresentationPreview().select(i, true);\n            }\n        } else if (displayable.getOOPresentation() != null) {\n            displayable.getOOPresentation().goBack();\n        }else {\n            presentationPreview.previousSlide();\n        }\n    }\n\n    public void selectLast() {\n        presentationPreview.selectLast();\n    }\n\n    public PresentationPreview getPresentationPreview() {\n        return presentationPreview;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/presentation/PresentationPreview.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.presentation;\n\nimport java.util.ArrayList;\nimport java.util.List;\nimport javafx.beans.value.ChangeListener;\nimport javafx.beans.value.ObservableValue;\nimport javafx.event.EventHandler;\nimport javafx.geometry.BoundingBox;\nimport javafx.geometry.Bounds;\nimport javafx.geometry.Pos;\nimport javafx.scene.control.ScrollPane;\nimport javafx.scene.input.MouseEvent;\nimport javafx.scene.layout.FlowPane;\nimport org.quelea.data.powerpoint.PresentationSlide;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.windows.main.MainPanel;\nimport org.quelea.windows.main.QueleaApp;\n\n/**\n * A JList for specifically displaying presentation slides.\n * <p/>\n * @author Michael\n */\npublic class PresentationPreview extends ScrollPane {\n\n    private FlowPane flow;\n    private List<SlideThumbnail> thumbnails = new ArrayList<>();\n    private PresentationSlide[] slides;\n    private PresentationSlide selectedSlide;\n    private int selectedIndex = -1;\n    private List<SlideChangedListener> listeners = new ArrayList<>();\n\n    /**\n     * Create a new presentation list.\n     */\n    public PresentationPreview() {\n        setStyle(\"-fx-focus-color: transparent;-fx-background-color:linear-gradient(to bottom right, #c0c0c0, #e8e8e8);\");\n        flow = new FlowPane(20, 20);\n        flow.setAlignment(Pos.CENTER);\n        viewportBoundsProperty().addListener(new ChangeListener<Bounds>() {\n            @Override\n            public void changed(ObservableValue<? extends Bounds> bounds, Bounds oldBounds, Bounds newBounds) {\n                flow.setPrefWidth(newBounds.getWidth());\n            }\n        });\n        setContent(flow);\n        setOnMousePressed(new EventHandler<MouseEvent>() {\n            @Override\n            public void handle(MouseEvent t) {\n                int selected = -1;\n                for (int i = 0; i < thumbnails.size(); i++) {\n                    SlideThumbnail thumbnail = thumbnails.get(i);\n                    Bounds bounds = new BoundingBox(thumbnail.getLayoutX(), thumbnail.getLayoutY() + getScrollOffset(), thumbnail.getWidth(), thumbnail.getHeight());\n                    if (bounds.contains(t.getX(), t.getY())) {\n                        selected = i;\n                    }\n                }\n                if (selected != -1) {\n                    select(selected + 1, true);\n                }\n            }\n        });\n//        setOnKeyPressed(new EventHandler<KeyEvent>() {\n//            @Override\n//            public void handle(KeyEvent t) {\n//                if (t.getCode() == KeyCode.RIGHT) {\n//                    t.consume();\n//                    if (selectedIndex > 0 && selectedIndex <= slides.length - 1) {\n//                        select(selectedIndex + 1);\n//                    }\n//                }\n//                if (t.getCode() == KeyCode.LEFT) {\n//                    t.consume();\n//                    if (selectedIndex >= 2) {\n//                        select(selectedIndex - 1);\n//                    }\n//                }\n//            }\n//        });\n        focusedProperty().addListener(new ChangeListener<Boolean>() {\n\n            @Override\n            public void changed(ObservableValue<? extends Boolean> ov, Boolean t, Boolean focused) {\n                for (SlideThumbnail slide : thumbnails) {\n                    slide.setActive(focused);\n                }\n            }\n        });\n    }\n\n    @Override\n    public void requestFocus() {\n        super.requestFocus();\n    }\n\n    public void addSlideChangedListener(SlideChangedListener listener) {\n        listeners.add(listener);\n    }\n\n    private void fireSlideChangedListeners() {\n        for (SlideChangedListener listener : listeners) {\n            listener.slideChanged(selectedSlide);\n        }\n    }\n\n    /**\n     * Clear all current slides and set the slides in the list.\n     * <p/>\n     * @param slides the slides to put in the list.\n     */\n    public void setSlides(PresentationSlide[] slides) {\n        if (this.slides == slides) {\n            return;\n        }\n        this.slides = slides;\n        flow.getChildren().clear();\n        thumbnails.clear();\n        for (int i = 0; i < slides.length; i++) {\n            SlideThumbnail thumbnail = new SlideThumbnail(slides[i], i + 1);\n            if (i == 0) {\n                thumbnail.setSelected(true);\n            }\n            thumbnails.add(thumbnail);\n            flow.getChildren().add(thumbnail);\n            thumbnail.setActive(focusedProperty().get());\n        }\n    }\n    \n    public int getSelectedIndex() {\n        return selectedIndex;\n    }\n\n    public int getSlideCount() {\n        return slides.length;\n    }\n\n    public PresentationSlide getSelectedSlide() {\n        return selectedSlide;\n    }\n\n    /**\n     * Advances the current slide.\n     * <p/>\n     * @param loopback true if the presentation should loop to the beginning if\n     * at the last slide.\n     */\n    public void advanceSlide(boolean loopback) {\n        if (loopback) {\n            if (selectedIndex > 0) {\n                select(((selectedIndex) % slides.length) + 1);\n            }\n        } else if (!loopback && selectedIndex > 0 && selectedIndex <= slides.length - 1) {\n            select(selectedIndex + 1);\n        } else if (selectedIndex == slides.length && QueleaProperties.get().getSongOverflow()) {\n            MainPanel qmp = QueleaApp.get().getMainWindow().getMainPanel();\n            boolean lastItemTest = qmp.getLivePanel().getDisplayable() == qmp.getSchedulePanel().getScheduleList().getItems().get(qmp.getSchedulePanel().getScheduleList().getItems().size() - 1).displayable();\n            if (QueleaProperties.get().getAdvanceOnLive() && QueleaProperties.get().getSongOverflow() && !lastItemTest) {\n                qmp.getPreviewPanel().goLive();\n            }\n        }\n    }\n\n    /**\n     * Moves to the previous slide.\n     * <p/>\n     */\n    public void previousSlide() {\n        if (selectedIndex >= 2) {\n            select(selectedIndex - 1);\n        } else {\n            MainPanel qmp = QueleaApp.get().getMainWindow().getMainPanel();\n            boolean firstItemTest = qmp.getSchedulePanel().getScheduleList().getItems().get(0).displayable() == qmp.getLivePanel().getDisplayable();\n            if (QueleaProperties.get().getAdvanceOnLive() && QueleaProperties.get().getSongOverflow() && !firstItemTest) {\n                //Assuming preview panel is one ahead, and should be one behind\n                int index = qmp.getSchedulePanel().getScheduleList().getSelectionModel().getSelectedIndex();\n                if (qmp.getLivePanel().getDisplayable() == qmp.getSchedulePanel().getScheduleList().getItems().get(qmp.getSchedulePanel().getScheduleList().getItems().size() - 1).displayable()) {\n                    index -= 1;\n                } else {\n                    index -= 2;\n                }\n                if (index >= 0) {\n                    qmp.getSchedulePanel().getScheduleList().getSelectionModel().clearAndSelect(index);\n                    qmp.getPreviewPanel().selectLastLyric();\n                    qmp.getPreviewPanel().goLive();\n                }\n            }\n        }\n    }\n\n    public int size() {\n        return thumbnails.size();\n    }\n\n    public void select(int index) {\n        select(index, true);\n    }\n\n    public void select(int index, boolean fireUpdate) {\n        if (selectedIndex == index) {\n            return;\n        }\n        for (int i = 0; i < thumbnails.size(); i++) {\n            SlideThumbnail thumbnail = thumbnails.get(i);\n            boolean selected = thumbnail.getNum() == index;\n            thumbnail.setSelected(selected);\n            if (selected) {\n                selectedIndex = index;\n                if (selectedIndex >= 1) {\n                    selectedSlide = slides[i];\n                } else {\n                    selectedSlide = null;\n                }\n            }\n            ensureVisible(selectedIndex);\n        }\n        if (fireUpdate) {\n            fireSlideChangedListeners();\n        }\n    }\n\n    private void ensureVisible(int index) {\n        if (index < 1) {\n            return;\n        }\n        Bounds slideBounds = thumbnails.get(index - 1).getBoundsInParent();\n        Bounds scrollBounds = new BoundingBox(0, getScrollFraction() * (flow.getHeight() - getHeight()), getWidth(), getHeight());\n        if (!scrollBounds.contains(slideBounds)) {\n            while (slideBounds.getMinY() < scrollBounds.getMinY() && getVvalue() > getVmin()) {\n                slideBounds = thumbnails.get(index - 1).getBoundsInParent();\n                scrollBounds = new BoundingBox(0, getScrollFraction() * (flow.getHeight() - getHeight()), getWidth(), getHeight());\n                setVvalue(getVvalue() - 0.01);\n            }\n            while (slideBounds.getMaxY() > scrollBounds.getMaxY() && getVvalue() < getVmax()) {\n                slideBounds = thumbnails.get(index - 1).getBoundsInParent();\n                scrollBounds = new BoundingBox(0, getScrollFraction() * (flow.getHeight() - getHeight()), getWidth(), getHeight());\n                setVvalue(getVvalue() + 0.01);\n            }\n        }\n    }\n\n    private double getScrollOffset() {\n        return getScrollFraction() * (getHeight() - flow.getHeight());\n    }\n\n    private double getScrollFraction() {\n        double vMin = getVmin();\n        double vMax = getVmax();\n        double vFrac = (getVvalue() - vMin) * (vMax - vMin);\n        return vFrac;\n    }\n\n    public void clear() {\n        thumbnails.clear();\n        flow.getChildren().clear();\n        this.slides = null;\n        selectedIndex = -1;\n        selectedSlide = null;\n    }\n\n    public void selectLast() {\n        selectedIndex = slides.length;\n        select(selectedIndex);\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/presentation/SlideChangedListener.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * Copyright (C) 2012 Michael Berry\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.presentation;\n\nimport org.quelea.data.powerpoint.PresentationSlide;\n\n/**\n *\n * @author Michael\n */\npublic interface SlideChangedListener {\n    \n    void slideChanged(PresentationSlide newSlide);\n    \n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/presentation/SlideThumbnail.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * Copyright (C) 2012 Michael Berry\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.presentation;\n\nimport javafx.scene.control.Label;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.layout.BorderPane;\nimport org.quelea.data.powerpoint.PresentationSlide;\nimport org.quelea.services.utils.QueleaProperties;\n\n/**\n *\n * @author Michael\n */\npublic class SlideThumbnail extends BorderPane {\n\n    private static final String BORDER_STYLE_SELECTED_ACTIVE = \"-fx-padding: 0.2em;-fx-border-color: #0093ff;-fx-border-radius: 5;-fx-border-width: 0.1em;\";\n    private static final String BORDER_STYLE_SELECTED_INACTIVE = \"-fx-padding: 0.2em;-fx-border-color: #999999;-fx-border-radius: 5;-fx-border-width: 0.1em;\";\n    private static final String BORDER_STYLE_DESELECTED = \"-fx-padding: 0.2em;-fx-border-color: rgb(0,0,0,0);-fx-border-radius: 5;-fx-border-width: 0.1em;\";\n    private int num;\n    private PresentationSlide slide;\n    private ImageView image;\n    private boolean selected;\n    private boolean active;\n\n    public SlideThumbnail(PresentationSlide slide, int num) {\n        this.num = num;\n        this.slide = slide;\n        image = new ImageView(slide.getImage());\n        image.setFitWidth(QueleaProperties.get().getThumbnailSize());\n        image.setPreserveRatio(true);\n        image.setSmooth(true);\n        image.setCache(true);\n        setTop(image);\n        setCenter(new Label(Integer.toString(num)));\n    }\n\n    public void setSelected(boolean selected) {\n        this.selected=selected;\n        recalcBorder();\n    }\n\n    public void setActive(boolean active) {\n        this.active=active;\n        image.setFitWidth(QueleaProperties.get().getThumbnailSize());\n        recalcBorder();\n    }\n    \n    private void recalcBorder() {\n        if(selected) {\n            if(active) {\n                setStyle(BORDER_STYLE_SELECTED_ACTIVE);\n            }\n            else {\n                setStyle(BORDER_STYLE_SELECTED_INACTIVE);\n            }\n        }\n        else {\n            setStyle(BORDER_STYLE_DESELECTED);\n        }\n    }\n\n    public int getNum() {\n        return num;\n    }\n\n    public PresentationSlide getSlide() {\n        return slide;\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/splash/Pips.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * Copyright (C) 2012 Michael Berry\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.splash;\n\nimport javafx.scene.Group;\nimport javafx.scene.paint.Paint;\nimport javafx.scene.text.Font;\nimport javafx.scene.text.Text;\nimport org.quelea.utils.FXFontMetrics;\n\n/**\n * A group of text that's just \"...\" - makes it more extensible if we wish to\n * animate these at any point in the future.\n * <p/>\n * @author Michael\n */\npublic class Pips extends Group {\n\n    public Pips(Font font, Paint paint) {\n        double width = new FXFontMetrics(font).computeStringWidth(\".\");\n        for(int i = 0; i < 3; i++) {\n            Text pip = new Text(\".\");\n            pip.setFill(paint);\n            pip.setFont(font);\n            pip.setLayoutX(i * width);\n            getChildren().add(pip);\n        }\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/splash/SplashStage.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.splash;\n\nimport java.io.File;\nimport javafx.collections.ObservableList;\nimport javafx.geometry.Rectangle2D;\nimport javafx.scene.Group;\nimport javafx.scene.Scene;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.text.Font;\nimport javafx.scene.text.Text;\nimport javafx.stage.Modality;\nimport javafx.stage.Screen;\nimport javafx.stage.Stage;\nimport javafx.stage.StageStyle;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\n\n/**\n * The splash screen to display when the program starts.\n * <p/>\n * @author Michael\n */\npublic class SplashStage extends Stage {\n\n    public static final Font VERSION_FONT = new Font(\"Arial\", 14);\n\n    /**\n     * Create a new splash window.\n     */\n    public SplashStage() {\n        initModality(Modality.APPLICATION_MODAL);\n        initStyle(StageStyle.UNDECORATED);\n        Utils.addIconsToStage(this);\n        setTitle(\"Quelea \" + LabelGrabber.INSTANCE.getLabel(\"loading.text\") + \"...\");\n        Image splashImage = new Image(new File(QueleaProperties.VERSION.getUnstableName().getSplashPath()).getAbsoluteFile().toURI().toString());\n        ImageView imageView = new ImageView(splashImage);\n        Text version = new Text(QueleaProperties.VERSION.getVersionString());\n        version.setFont(VERSION_FONT);\n        version.setX(321);\n        version.setY(208);\n        Group mainPane = new Group();\n        mainPane.getChildren().add(imageView);\n        mainPane.getChildren().add(version);\n        Scene scene = new Scene(mainPane);\n        if (QueleaProperties.get().getUseDarkTheme()) {\n            scene.getStylesheets().add(\"org/modena_dark.css\");\n        }\n        setScene(scene);\n\n        ObservableList<Screen> monitors = Screen.getScreens();\n        Screen screen;\n        int controlScreenProp = QueleaProperties.get().getControlScreen();\n        if (controlScreenProp < monitors.size() && controlScreenProp >= 0) {\n            screen = monitors.get(controlScreenProp);\n        } else {\n            screen = Screen.getPrimary();\n        }\n\n        Rectangle2D bounds = screen.getVisualBounds();\n        setX(bounds.getMinX() + ((bounds.getWidth() / 2) - splashImage.getWidth() / 2));\n        setY(bounds.getMinY() + ((bounds.getHeight() / 2) - splashImage.getHeight() / 2));\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/stage/StageDrawer.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.stage;\n\nimport java.util.ArrayList;\nimport java.util.Arrays;\nimport java.util.HashMap;\nimport java.util.List;\nimport java.util.logging.Level;\nimport javafx.animation.FadeTransition;\nimport javafx.animation.ParallelTransition;\nimport javafx.geometry.Insets;\nimport javafx.geometry.Pos;\nimport javafx.scene.Group;\nimport javafx.scene.Node;\nimport javafx.scene.effect.ColorAdjust;\nimport javafx.scene.effect.DropShadow;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.layout.StackPane;\nimport javafx.scene.paint.Color;\nimport javafx.scene.text.Font;\nimport javafx.scene.text.FontPosture;\nimport javafx.scene.text.FontWeight;\nimport javafx.util.Duration;\nimport org.quelea.data.ThemeDTO;\nimport org.quelea.data.VideoBackground;\nimport org.quelea.data.displayable.BiblePassage;\nimport org.quelea.data.displayable.TextDisplayable;\nimport org.quelea.data.displayable.TextSection;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.LineTypeChecker;\nimport org.quelea.services.utils.LyricLine;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.utils.Chord;\nimport org.quelea.windows.lyrics.FormattedText;\nimport org.quelea.windows.main.WordDrawer;\nimport org.quelea.utils.FXFontMetrics;\nimport org.quelea.utils.WrapTextResult;\n\n/**\n * Draw items onto a stage canvas\n *\n * @author Ben\n */\npublic class StageDrawer extends WordDrawer {\n\n    private String[] text;\n    private Group textGroup;\n    private Group smallTextGroup;\n    private ThemeDTO theme;\n    private TextDisplayable curDisplayable;\n    private boolean capitaliseFirst;\n    private String[] smallText;\n\n    public StageDrawer() {\n        text = new String[]{};\n        theme = ThemeDTO.DEFAULT_THEME;\n        textGroup = new Group();\n        smallTextGroup = new Group();\n        lastClearedState = new HashMap<>();\n    }\n\n    @Override\n    protected void drawText(double defaultFontSize, boolean dumbWrap) {\n        Utils.checkFXThread();\n        if (getCanvas().getCanvasBackground() != null) {\n            if (!getCanvas().getChildren().contains(getCanvas().getCanvasBackground())\n                    && !getCanvas().getChildren().contains(textGroup) && !getCanvas().getChildren().contains(smallTextGroup)) {\n                getCanvas().getChildren().add(0, getCanvas().getCanvasBackground());\n                getCanvas().getChildren().add(textGroup);\n                getCanvas().getChildren().add(smallTextGroup);\n            }\n        }\n        Font font = Font.font(QueleaProperties.get().getStageTextFont(), QueleaProperties.get().getMaxFontSize());\n        if (font == null) {\n            font = ThemeDTO.DEFAULT_FONT.getFont();\n        }\n        DropShadow shadow = new DropShadow();\n        if (theme.getShadow() != null) {\n            shadow = theme.getShadow().getDropShadow();\n        }\n        if (shadow == null) {\n            shadow = ThemeDTO.DEFAULT_SHADOW.getDropShadow();\n        }\n\n        List<LyricLine> newText;\n        if (dumbWrap) {\n            if (text.length == 0) {\n                newText = new ArrayList<>();\n            } else {\n                WrapTextResult result = normalWrapText(font, text[0], getCanvas().getWidth() * QueleaProperties.get().getLyricWidthBounds(), getCanvas().getHeight() * QueleaProperties.get().getLyricHeightBounds());\n                newText = result.getNewText();\n            }\n        } else {\n            newText = sanctifyText(text);\n        }\n        double fontSize;\n        if (defaultFontSize > 0) {\n            fontSize = defaultFontSize;\n        } else {\n            fontSize = pickFontSize(font, newText, getCanvas().getWidth() * 0.92, getCanvas().getHeight() * 0.9);\n        }\n        font = Font.font(font.getFamily(), FontWeight.NORMAL,\n                FontPosture.REGULAR, fontSize);\n\n        double smallFontSize;\n        Font smallTextFont = Font.font(\"Arial\", FontWeight.BOLD, FontPosture.REGULAR, 500);\n        smallFontSize = pickSmallFontSize(smallTextFont, smallText, getCanvas().getWidth() * 0.5, (getCanvas().getHeight() * 0.07) - 5); //-5 for insets\n        smallTextFont = Font.font(\"Arial\", FontWeight.BOLD, FontPosture.REGULAR, smallFontSize);\n\n        FXFontMetrics metrics = new FXFontMetrics(font);\n        FXFontMetrics smallTextMetrics = new FXFontMetrics(smallTextFont);\n        final Group newTextGroup = new Group();\n        shadow.setOffsetX(metrics.getLineHeight() * shadow.getOffsetX() * 0.003);\n        shadow.setOffsetY(metrics.getLineHeight() * shadow.getOffsetY() * 0.003);\n        shadow.setRadius(shadow.getRadius() * metrics.getLineHeight() * 0.0015);\n        newTextGroup.setEffect(shadow);\n        StackPane.setAlignment(newTextGroup, Pos.CENTER);\n        smallTextGroup = new Group();\n        StackPane.setAlignment(smallTextGroup, Pos.BOTTOM_LEFT);\n\n        getCanvas().getChildren().removeIf(node -> node instanceof Group);\n\n        getCanvas().getChildren().add(newTextGroup);\n        getCanvas().pushLogoNoticeToFront();\n\n        int y = 0;\n        ParallelTransition paintTransition = new ParallelTransition();\n        for (int i = 0; i < newText.size(); i++) {\n            LyricLine line = newText.get(i);\n\n            if (new LineTypeChecker(line.getLine()).getLineType() == LineTypeChecker.Type.CHORDS && i < newText.size() - 1) {\n                List<Chord> chords = Chord.getChordsFromLine(line.getLine());\n                String nextLine = widenInitialSpaces(newText.get(i + 1).getLine());\n\n                FormattedText nextLineFt = new FormattedText(nextLine);\n                nextLineFt.setFont(font);\n                setPositionX(nextLineFt, metrics, nextLine);\n\n                while (nextLine.length() < line.getLine().length()) {\n                    nextLine += \" \";\n                }\n\n                for (Chord chord : chords) {\n                    FormattedText t = new FormattedText(chord.getChord());\n                    t.setFont(font);\n                    t.setLayoutX(nextLineFt.getLayoutX() + metrics.computeStringWidth(nextLine.substring(0, chord.getIdx())));\n                    t.setLayoutY(y);\n                    t.setFill(QueleaProperties.get().getStageChordColor());\n                    newTextGroup.getChildren().add(t);\n                }\n\n            } else {\n                FormattedText t = new FormattedText(widenInitialSpaces(line.getLine()));\n                t.setFont(font);\n                setPositionX(t, metrics, widenInitialSpaces(line.getLine()));\n                t.setLayoutY(y);\n\n                Color lineColor;\n                if (new LineTypeChecker(line.getLine()).getLineType() == LineTypeChecker.Type.CHORDS) {\n                    lineColor = QueleaProperties.get().getStageChordColor();\n                } else {\n                    lineColor = QueleaProperties.get().getStageLyricsColor();\n                }\n                if (lineColor == null) {\n                    LOGGER.log(Level.WARNING, \"Warning: Font Color not initialised correctly. Using default font colour.\");\n                    lineColor = ThemeDTO.DEFAULT_FONT_COLOR;\n                }\n                t.setFill(lineColor);\n                newTextGroup.getChildren().add(t);\n            }\n\n            y += metrics.getLineHeight() + getLineSpacing();\n        }\n\n        int sy = 0;\n        for (String stext : smallText) {\n            stext = stext.trim();\n            FormattedText ft = new FormattedText(stext);\n            ft.setFont(smallTextFont);\n            ft.setFill(theme.getFontPaint());\n            ft.setLayoutY(sy);\n            smallTextGroup.getChildren().add(ft);\n            sy += smallTextMetrics.getLineHeight() + 2;\n        }\n        if (!paintTransition.getChildren().isEmpty()) {\n            paintTransition.play();\n        }\n        textGroup = newTextGroup;\n        StackPane.setMargin(textGroup, new Insets(10));\n        StackPane.setAlignment(textGroup, Pos.CENTER);\n\n        StackPane.setMargin(smallTextGroup, new Insets(5));\n\n        if (getCanvas().isCleared() && !getLastClearedState()) {\n            setLastClearedState(true);\n            FadeTransition t = new FadeTransition(Duration.millis(QueleaProperties.get().getClearFadeDuration()), textGroup);\n            FadeTransition t2 = new FadeTransition(Duration.millis(QueleaProperties.get().getClearFadeDuration()), smallTextGroup);\n            t.setToValue(0);\n            t.play();\n            t2.setToValue(0);\n            t2.play();\n        } else if (getCanvas().isCleared()) {\n            textGroup.setOpacity(0);\n            smallTextGroup.setOpacity(0);\n        } else if (!getCanvas().isCleared() && getLastClearedState()) {\n            setLastClearedState(false);\n            FadeTransition t = new FadeTransition(Duration.millis(QueleaProperties.get().getClearFadeDuration()), textGroup);\n            FadeTransition t2 = new FadeTransition(Duration.millis(QueleaProperties.get().getClearFadeDuration()), smallTextGroup);\n            t.setFromValue(0);\n            t.setToValue(1);\n            t.play();\n            t2.setFromValue(0);\n            t2.setToValue(1);\n            t2.play();\n        }\n    }\n\n    private void setPositionX(FormattedText t, FXFontMetrics metrics, String line) {\n        Utils.checkFXThread();\n        String strippedLine = line.replaceAll(\"\\\\<\\\\/?sup\\\\>\", \"\");\n        double width = metrics.computeStringWidth(strippedLine);\n        double centreOffset = (getCanvas().getWidth() - width) / 2;\n        if (QueleaProperties.get().getStageTextAlignment().equalsIgnoreCase(LabelGrabber.INSTANCE.getLabel(\"left\"))) {\n            t.setLayoutX(getCanvas().getWidth());\n        } else {\n            t.setLayoutX(centreOffset);\n        }\n    }\n\n    /**\n     * Set the theme of this getCanvas().\n     * <p/>\n     * @param theme the theme to place on the getCanvas().\n     */\n    @Override\n    public void setTheme(ThemeDTO theme) {\n        if (theme == null) {\n            theme = ThemeDTO.DEFAULT_THEME;\n        }\n        this.theme = theme;\n        Image image;\n        ColorAdjust colourAdjust = null;\n        image = Utils.getImageFromColour(QueleaProperties.get().getStageBackgroundColor());\n\n        Node newBackground;\n        final ImageView newImageView = getCanvas().getNewImageView();\n        newImageView.setFitHeight(getCanvas().getHeight());\n        newImageView.setFitWidth(getCanvas().getWidth());\n        newImageView.setImage(image);\n        if (colourAdjust != null) {\n            newImageView.setEffect(colourAdjust);\n        }\n        getCanvas().getChildren().add(newImageView);\n        newBackground = newImageView;\n        getCanvas().getChildren().remove(getCanvas().getCanvasBackground());\n        getCanvas().setOpacity(1);\n        getCanvas().setCanvasBackground(newBackground);\n    }\n\n    /**\n     * Get the theme currently in use on the getCanvas().\n     * <p/>\n     * @return the current theme\n     */\n    @Override\n    public ThemeDTO getTheme() {\n        return theme;\n    }\n\n    @Override\n    public void requestFocus() {\n    }\n\n    /**\n     * Set whether the first of each line should be capitalised.\n     * <p/>\n     * @param val true if the first character should be, false otherwise.\n     */\n    @Override\n    public void setCapitaliseFirst(boolean val) {\n        this.capitaliseFirst = val;\n    }\n\n    /**\n     * Wrap the text in a \"dumb\" way, not worrying about dividing up lines\n     * nicely. This works better for bible passages.\n     * <p>\n     * @param lines the lines to divide up.\n     * @return the divided lines.\n     */\n    private List<LyricLine> dumbWrapText(String[] lines) {\n        List<LyricLine> ret = new ArrayList<>();\n        int maxLength = QueleaProperties.get().getMaxBibleChars();\n        StringBuilder currentBuilder = new StringBuilder(maxLength);\n        for (String line : lines) {\n            for (String word : line.split(\" \")) {\n                currentBuilder.append(' ');\n                if (currentBuilder.length() + word.length() < maxLength) {\n                    currentBuilder.append(word);\n                } else {\n                    ret.add(new LyricLine(currentBuilder.toString()));\n                    currentBuilder = new StringBuilder(word);\n                }\n            }\n        }\n        if (currentBuilder.length() > 0) {\n            ret.add(new LyricLine(currentBuilder.toString()));\n        }\n        return ret;\n    }\n\n    /**\n     * Take the raw text and format it into a number of lines nicely, where the\n     * lines aren't more than the maximum length.\n     * <p/>\n     * @return processed, sanctified text that can be displayed nicely.\n     */\n    private List<LyricLine> sanctifyText(String[] linesArr) {\n        List<LyricLine> finalLines = new ArrayList<>();\n        for (int i = 0; i < linesArr.length; i++) {\n            finalLines.add(new LyricLine(linesArr[i]));\n        }\n\n        List<LyricLine> ret = new ArrayList<>();\n        int maxLength = QueleaProperties.get().getMaxChars();\n        for (LyricLine line : finalLines) {\n            ret.add(line);\n        }\n        return ret;\n    }\n\n    /**\n     * Determine the largest font size we can safely use for every section of a\n     * text displayable.\n     * <p>\n     * @param displayable the displayable to check.\n     * @return the font size to use\n     */\n    private double getUniformFontSize(TextDisplayable displayable) {\n        if (!QueleaProperties.get().getUseUniformFontSize()) {\n            return -1;\n        }\n\n        int width = (int) (getCanvas().getWidth() * QueleaProperties.get().getLyricWidthBounds());\n        int height = (int) (getCanvas().getHeight() * QueleaProperties.get().getLyricHeightBounds());\n\n        Font font = theme.getFont();\n        font = Font.font(font.getName(),\n                theme.isBold() ? FontWeight.BOLD : FontWeight.NORMAL,\n                theme.isItalic() ? FontPosture.ITALIC : FontPosture.REGULAR,\n                QueleaProperties.get().getMaxFontSize());\n        double fontSize = Double.POSITIVE_INFINITY;\n        for (TextSection section : displayable.getSections()) {\n            String[] textArr;\n            if (QueleaProperties.get().getShowChords()) {\n                textArr = section.getText(true, false);\n            } else {\n                textArr = section.getText(false, false);\n            }\n            double newSize;\n            List<LyricLine> newText;\n            if (displayable instanceof BiblePassage) {\n                WrapTextResult result = normalWrapText(font, textArr[0], width, height);\n                newSize = result.getFontSize();\n            } else {\n                newText = sanctifyText(textArr);\n                newSize = pickFontSize(font, newText, width, height);\n            }\n            if (newSize < fontSize) {\n                fontSize = newSize;\n            }\n        }\n        if (fontSize == Double.POSITIVE_INFINITY) {\n            fontSize = -1;\n        }\n        return fontSize;\n    }\n\n    @Override\n    public void setText(TextDisplayable displayable, int index) {\n        boolean fade = curDisplayable != displayable;\n        double uniformFontSize = getUniformFontSize(displayable);\n        curDisplayable = displayable;\n        String[] bigText;\n        if (QueleaProperties.get().getShowChords()) {\n            bigText = displayable.getSections()[index].getText(true, false);\n        } else {\n            bigText = displayable.getSections()[index].getText(false, false);\n        }\n        setText(bigText, null, displayable.getSections()[index].getSmallText(), fade, uniformFontSize);\n    }\n\n    /**\n     * Set the text to appear on the getCanvas(). The lines will be\n     * automatically wrapped and if the text is too large to fit on the screen\n     * in the current font, the size will be decreased until all the text fits.\n     * <p/>\n     * @param text an array of the lines to display on the canvas, one entry in\n     * the array is one line.\n     * @param translations the translation to use for the current section, or\n     * null if none should be used.\n     * @param smallText an array of the small lines to be displayed on the\n     * getCanvas().\n     * @param fade true if the text should fade, false otherwise.\n     * @param fontSize the font size to use to draw this text.\n     */\n    @Override\n    public void setText(String[] text, String[] translations, String[] smallText, boolean fade, double fontSize) {\n        if (text == null) {\n            text = new String[0];\n        }\n        if (smallText == null) {\n            smallText = new String[0];\n        }\n        if (translations == null) {\n            translations = new String[0];\n        }\n        this.text = Arrays.copyOf(text, text.length);\n        this.smallText = smallText;\n        draw(curDisplayable, fontSize);\n    }\n\n    /**\n     * Get the text currently set to appear on the getCanvas(). The text may or\n     * may not be shown depending on whether the canvas is blacked or cleared.\n     * <p/>\n     * @return the current text.\n     */\n    public String[] getText() {\n        return Arrays.copyOf(text, text.length);\n    }\n\n    @Override\n    public void clear() {\n        if (getCanvas().getChildren() != null) {\n            getCanvas().clearNonPermanentChildren();\n        }\n        setTheme(ThemeDTO.DEFAULT_THEME);\n        eraseText();\n    }\n\n    private static String widenInitialSpaces(String str) {\n        StringBuilder ret = new StringBuilder(str.length());\n        boolean initialSpace = true;\n        for (int i = 0; i < str.length() ; i++) {\n            if(initialSpace && str.charAt(i)!=' '){\n                initialSpace = false;\n            }\n            if(initialSpace) {\n                ret.append('\\u2000');\n            }\n            else {\n                ret.append(str.charAt(i));\n            }\n        }\n        return ret.toString();\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/timer/CreateTimerPanel.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.timer;\n\nimport java.io.File;\nimport java.io.IOException;\nimport java.text.ParseException;\nimport java.text.SimpleDateFormat;\nimport java.util.Calendar;\nimport java.util.logging.Level;\nimport javafx.beans.value.ObservableValue;\nimport javafx.event.ActionEvent;\nimport javafx.geometry.HPos;\nimport javafx.geometry.Insets;\nimport javafx.geometry.Pos;\nimport javafx.scene.Scene;\nimport javafx.scene.control.Button;\nimport javafx.scene.control.CheckBox;\nimport javafx.scene.control.Label;\nimport javafx.scene.control.TextArea;\nimport javafx.scene.control.TextField;\nimport javafx.scene.control.Tooltip;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.layout.BorderPane;\nimport javafx.scene.layout.GridPane;\nimport javafx.stage.FileChooser;\nimport javafx.stage.Modality;\nimport javafx.stage.Stage;\nimport org.fxmisc.richtext.InlineCssTextArea;\nimport org.quelea.data.ThemeDTO;\nimport org.quelea.data.displayable.IndexedDisplayable;\nimport org.quelea.data.displayable.TimerDisplayable;\nimport org.quelea.services.languages.LabelGrabber;\nimport org.quelea.services.utils.FileFilters;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.windows.main.QueleaApp;\nimport org.quelea.windows.main.schedule.ScheduleList;\nimport org.quelea.windows.newsong.ThemePanel;\n\n/**\n * Creates the creation panel for a timer displayable\n * <p/>\n *\n * @author Ben\n */\npublic class CreateTimerPanel extends Stage {\n\n    private ThemeDTO timerTheme = ThemeDTO.DEFAULT_THEME;\n    private final CheckBox saveBox;\n    private final Button tpConfirm;\n    private final TextField durationTextField;\n    private final TextArea textTextArea;\n    private final TextField nameTextField;\n    private final Button confirmButton;\n    private final GridPane grid;\n    private final ThemePanel tp;\n\n    public CreateTimerPanel(TimerDisplayable td) {\n        confirmButton = new Button(LabelGrabber.INSTANCE.getLabel(\"ok.button\"), new ImageView(new Image(\"file:icons/tick.png\")));\n\n        setTitle(LabelGrabber.INSTANCE.getLabel(\"add.timer.title\"));\n        initModality(Modality.APPLICATION_MODAL);\n        initOwner(QueleaApp.get().getMainWindow());\n        resizableProperty().setValue(false);\n\n        grid = new GridPane();\n        grid.setPadding(new Insets(5));\n        int rows = 0;\n\n        Label nameLabel = new Label(LabelGrabber.INSTANCE.getLabel(\"timer.name.label\"));\n        GridPane.setConstraints(nameLabel, 0, rows);\n        grid.getChildren().add(nameLabel);\n        nameTextField = new TextField();\n        nameTextField.textProperty().addListener((ObservableValue<? extends String> observable, String oldValue, String newValue) -> {\n            if (newValue.equals(\"\")) {\n                confirmButton.setDisable(true);\n            } else {\n                confirmButton.setDisable(false);\n            }\n        });\n        nameLabel.setLabelFor(nameTextField);\n        GridPane.setConstraints(nameTextField, 1, rows);\n        grid.getChildren().add(nameTextField);\n        rows++;\n\n        Label durationLabel = new Label(LabelGrabber.INSTANCE.getLabel(\"timer.duration.label\"));\n        GridPane.setConstraints(durationLabel, 0, rows);\n        grid.getChildren().add(durationLabel);\n        durationTextField = new TextField();\n        durationTextField.setTooltip(new Tooltip(LabelGrabber.INSTANCE.getLabel(\"duration.tooltip.label\")));\n        durationTextField.setPromptText(\"5:00\");\n        if (QueleaProperties.get().getUseDarkTheme()) {\n            durationTextField.setStyle(\"-fx-prompt-text-fill: #404040\");\n        }\n        durationTextField.textProperty().addListener((ObservableValue<? extends String> observable, String oldValue, String newValue) -> {\n            if (parsable(newValue)) {\n                if (!QueleaProperties.get().getUseDarkTheme()) {\n                    durationTextField.setStyle(\"-fx-text-fill: black;\");\n                } else {\n                    durationTextField.setStyle(\"-fx-text-fill: white;\");\n                }\n                confirmButton.setDisable(false);\n            } else {\n                durationTextField.setStyle(\"-fx-text-fill: red;\");\n                confirmButton.setDisable(true);\n            }\n        });\n        durationLabel.setLabelFor(durationTextField);\n        GridPane.setConstraints(durationTextField, 1, rows);\n        grid.getChildren().add(durationTextField);\n        rows++;\n\n        Label textLabel = new Label(LabelGrabber.INSTANCE.getLabel(\"timer.text.label\"));\n        GridPane.setConstraints(textLabel, 0, rows);\n        grid.getChildren().add(textLabel);\n        textTextArea = new TextArea();\n        textTextArea.setPrefRowCount(4);\n        textTextArea.setPrefColumnCount(30);\n        textTextArea.setPromptText(LabelGrabber.INSTANCE.getLabel(\"timer.text.prompt\"));\n        if (QueleaProperties.get().getUseDarkTheme()) {\n            textTextArea.setStyle(\"-fx-prompt-text-fill: #404040\");\n        }\n        textLabel.setLabelFor(textTextArea);\n        GridPane.setConstraints(textTextArea, 1, rows);\n        grid.getChildren().add(textTextArea);\n        rows++;\n\n        Label themeLabel = new Label(LabelGrabber.INSTANCE.getLabel(\"timer.theme.label\"));\n        GridPane.setConstraints(themeLabel, 0, rows);\n        grid.getChildren().add(themeLabel);\n        Button themeButton = new Button(LabelGrabber.INSTANCE.getLabel(\"timer.theme.button\"), new ImageView(new Image(\"file:icons/theme.png\", 16, 16, false, true)));\n        tpConfirm = new Button(LabelGrabber.INSTANCE.getLabel(\"ok.button\"), new ImageView(new Image(\"file:icons/tick.png\")));\n        tpConfirm.setAlignment(Pos.CENTER);\n        InlineCssTextArea wordsArea = new InlineCssTextArea();\n        wordsArea.replaceText(durationTextField.getText());\n        tp = new ThemePanel(wordsArea, tpConfirm, true);\n        tp.setPrefSize(500, 500);\n        if (td == null) {\n            tp.setTheme(timerTheme);\n        } else {\n            tp.setTheme(td.getTheme());\n        }\n        Stage tpStage = new Stage();\n        BorderPane bp = new BorderPane();\n        bp.setCenter(tp);\n        bp.setBottom(tpConfirm);\n        BorderPane.setAlignment(tpConfirm, Pos.CENTER);\n        Scene sc = new Scene(bp);\n        if (QueleaProperties.get().getUseDarkTheme()) {\n            sc.getStylesheets().add(\"org/modena_dark.css\");\n        }\n        tpStage.setScene(sc);\n        themeButton.setOnAction((ActionEvent Event) -> {\n            tpStage.showAndWait();\n        });\n        tpConfirm.setOnAction((ActionEvent Event) -> {\n            setTimerTheme(tp.getTheme());\n            tpStage.hide();\n        });\n        themeLabel.setLabelFor(themeButton);\n        GridPane.setConstraints(themeButton, 1, rows);\n        grid.getChildren().add(themeButton);\n        rows++;\n\n        Label saveLabel = new Label(LabelGrabber.INSTANCE.getLabel(\"timer.save.label\"));\n        GridPane.setConstraints(saveLabel, 0, rows);\n        grid.getChildren().add(saveLabel);\n        saveBox = new CheckBox();\n        saveLabel.setLabelFor(saveBox);\n        GridPane.setConstraints(saveBox, 1, rows);\n        grid.getChildren().add(saveBox);\n        rows++;\n\n        GridPane.setConstraints(confirmButton, 0, rows, 2, 1);\n        GridPane.setHalignment(confirmButton, HPos.CENTER);\n        grid.getChildren().add(confirmButton);\n\n        confirmButton.setOnAction((ActionEvent event) -> {\n            if (!durationTextField.getText().isEmpty() && parsable(durationTextField.getText())) {\n\n                String pretext = \"\", posttext = \"\";\n                if (!textTextArea.getText().isEmpty() && textTextArea.getText().contains(\"#\")) {\n                    String[] s = textTextArea.getText().split(\"#\");\n                    pretext = (s.length > 0) ? s[0] : \"\";\n                    posttext = (s.length > 1) ? s[1] : \"\";\n                }\n\n                TimerDisplayable displayable;\n                if (durationTextField.getText().contains(\"am\") || durationTextField.getText().contains(\"pm\")) {\n                    displayable = new TimerDisplayable(nameTextField.getText(), timerTheme.getBackground(), parseTime(durationTextField.getText()), pretext, posttext, tp.getTheme());\n                } else {\n                    displayable = new TimerDisplayable(nameTextField.getText(), timerTheme.getBackground(), parse(durationTextField.getText()), pretext, posttext, tp.getTheme());\n                }\n\n                if (saveBox.isSelected()) {\n                    String fileName = QueleaProperties.get().getTimerDir().getAbsolutePath() + \"/\" + nameTextField.getText().replace(\" \", \"_\") + \".cdt\";\n                    File f = new File(fileName);\n                    if (f.exists()) {\n                        FileChooser fc = new FileChooser();\n                        fc.setInitialDirectory(QueleaProperties.get().getTimerDir());\n                        fc.getExtensionFilters().add(FileFilters.TIMERS);\n                        f = fc.showSaveDialog(null);\n                        if (f != null) {\n                            if (!f.getName().endsWith(\".cdt\")) {\n                                f = new File(f.getAbsolutePath() + \".cdt\");\n                            }\n                        }\n                    }\n                    try {\n                        TimerIO.timerToFile(displayable, f);\n                        QueleaApp.get().getMainWindow().getMainPanel().getLibraryPanel().forceTimer();\n                    } catch (IOException ex) {\n                        LoggerUtils.getLogger().log(Level.WARNING, \"Could not save timer to file\");\n                    }\n                }\n                ScheduleList sl = QueleaApp.get().getMainWindow().getMainPanel().getSchedulePanel().getScheduleList();\n                int idx = sl.indexOf(td);\n                if (td != null && idx > -1) {\n                    IndexedDisplayable indexedDisplayable = new IndexedDisplayable(displayable, idx);\n                    sl.getItems().set(idx, indexedDisplayable);\n                    sl.getSelectionModel().select(indexedDisplayable);\n                } else {\n                    sl.add(displayable);\n                }\n                hide();\n            }\n        });\n        if (td != null) {\n            createEdit(td);\n        }\n        Scene scene = new Scene(grid);\n        if (QueleaProperties.get().getUseDarkTheme()) {\n            scene.getStylesheets().add(\"org/modena_dark.css\");\n        }\n        setScene(scene);\n    }\n\n    private boolean parsable(String newValue) {\n        return (parse(newValue) != -1) || (parseTime(newValue) != null);   \n    }\n\n    private int parse(String newValue) {\n        newValue = newValue.replace(\" \", \"\");\n        String[] ss;\n        if (newValue.contains(\":\")) {\n            ss = newValue.split(\":\");\n        } else if (newValue.contains(\".\")) {\n            ss = newValue.split(\".\");\n        } else if (newValue.contains(\";\")) {\n            ss = newValue.split(\";\");\n        } else if (newValue.contains(\",\")) {\n            ss = newValue.split(\",\");\n        } else {\n            ss = newValue.split(\"m\");\n            try {\n                ss[1] = ss[1].replace(\"s\", \"\");\n            } catch (Exception e) {\n                return -1;\n            }\n        }\n        try {\n            int minutes = Integer.parseInt(ss[0]);\n            if (minutes > 60 || minutes < 0) {\n                return -1;\n            }\n            int seconds = Integer.parseInt(ss[1]);\n            if (seconds >= 60 || seconds < 0) {\n                return -1;\n            }\n            if (minutes * 60 + seconds > 3600) {\n                return -1;\n            } else {\n                return minutes * 60 + seconds;\n            }\n\n        } catch (Exception e) {\n            return -1;\n        }\n    }\n\n    private Calendar parseTime(String text) {\n        try {\n            SimpleDateFormat ft = new SimpleDateFormat(\"hh:mmaa\");\n            Calendar now = Calendar.getInstance();\n            Calendar time = Calendar.getInstance();\n            time.setTime(ft.parse(text.toLowerCase().replace(\" \", \"\")));\n            time.set(now.get(Calendar.YEAR), now.get(Calendar.MONTH), now.get(Calendar.DATE));\n            return time;\n        } catch (ParseException e) {\n            //Nothing\n        }\n        return null;\n    }\n\n    private void setTimerTheme(ThemeDTO theme) {\n        timerTheme = theme;\n    }\n\n    private void createEdit(TimerDisplayable td) {\n        int seconds = td.getSeconds();\n        if (seconds < 0) {\n            durationTextField.setText(td.getTimeToFinish().get(Calendar.HOUR) + \":\" + (td.getTimeToFinish().get(Calendar.MINUTE) > 9 ? \"\" : \"0\") + td.getTimeToFinish().get(Calendar.MINUTE) + (td.getTimeToFinish().get(Calendar.AM_PM) == Calendar.AM ? \"am\" : \"pm\"));\n        } else {\n            durationTextField.setText(td.secondsToTime(td.getSeconds()));\n        }\n        textTextArea.setText(td.getPretext() + \"#\" + td.getPosttext());\n        nameTextField.setText(td.getName());\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/timer/TimerControls.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n * Copyright (C) 2012 Michael Berry\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.timer;\n\nimport javafx.scene.effect.DropShadow;\nimport javafx.scene.effect.Glow;\nimport javafx.scene.effect.Reflection;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.input.MouseEvent;\nimport javafx.scene.layout.StackPane;\nimport javafx.scene.paint.Color;\nimport javafx.scene.paint.CycleMethod;\nimport javafx.scene.paint.LinearGradient;\nimport javafx.scene.paint.Stop;\nimport javafx.scene.shape.Rectangle;\nimport org.quelea.windows.main.widgets.Timer;\n\nimport java.util.ArrayList;\nimport java.util.HashSet;\nimport java.util.List;\nimport java.util.Set;\n\n/**\n * The timer controls containing a play / pause button, stop button\n * <p/>\n *\n * @author Michael and Ben\n */\npublic class TimerControls extends StackPane {\n\n    private static final Image PLAY_IMAGE = new Image(\"file:icons/play.png\");\n    private static final Image PAUSE_IMAGE = new Image(\"file:icons/pause.png\");\n    private static final Image STOP_IMAGE = new Image(\"file:icons/stop.png\");\n    private static final Image PLAY_IMAGE_DISABLE = new Image(\"file:icons/playdisable.png\");\n    private static final Image PAUSE_IMAGE_DISABLE = new Image(\"file:icons/pausedisable.png\");\n    private static final Image STOP_IMAGE_DISABLE = new Image(\"file:icons/stopdisable.png\");\n    private boolean playpause;\n    private final ImageView playButton;\n    private final ImageView stopButton;\n    private boolean disableControls;\n    private Set<Timer> timers;\n    private boolean sync = false;\n\n    public TimerControls() {\n        timers = new HashSet<>();\n        Rectangle rect = new Rectangle(230, 80);\n        Stop[] stops = new Stop[]{new Stop(0, Color.BLACK), new Stop(1, Color.GREY)};\n        LinearGradient lg1 = new LinearGradient(0, 0, 1, 0, true, CycleMethod.NO_CYCLE, stops);\n        rect.setOpacity(0.8);\n        rect.setFill(lg1);\n        rect.setArcHeight(20);\n        rect.setArcWidth(20);\n        DropShadow ds = new DropShadow();\n        ds.setOffsetY(5.0);\n        ds.setOffsetX(5.0);\n        ds.setColor(Color.GRAY);\n        ds.setInput(new Reflection(5, 0.4, 0.3, 0));\n        rect.setEffect(ds);\n        getChildren().add(rect);\n\n        playButton = new ImageView(PLAY_IMAGE);\n        setButtonParams(playButton);\n        playButton.setTranslateX(-30);\n        getChildren().add(playButton);\n        playButton.setOnMouseClicked((MouseEvent t) -> {\n            if (!disableControls) {\n                play(playButton.getImage().equals(PAUSE_IMAGE));\n            }\n        });\n\n        stopButton = new ImageView(STOP_IMAGE);\n        stopButton.setOnMouseClicked((MouseEvent t) -> {\n            if (!disableControls) {\n                reset();\n            }\n        });\n        setButtonParams(stopButton);\n        stopButton.setTranslateX(30);\n        getChildren().add(stopButton);\n    }\n\n    public void loadMultimedia(String path, boolean stretch) {\n        this.sync = true;\n    }\n\n    public void setDisableControls(boolean disable) {\n        this.disableControls = disable;\n        if (disable) {\n            if (!playpause) {\n                playButton.setImage(PLAY_IMAGE_DISABLE);\n            } else {\n                playButton.setImage(PAUSE_IMAGE_DISABLE);\n            }\n            stopButton.setImage(STOP_IMAGE_DISABLE);\n        } else {\n            if (!playpause) {\n                playButton.setImage(PLAY_IMAGE);\n            } else {\n                playButton.setImage(PAUSE_IMAGE);\n            }\n            stopButton.setImage(STOP_IMAGE);\n        }\n    }\n\n    public void play(boolean pause) {\n        playpause = !playpause;\n        if (pause) {\n            if (!disableControls) {\n                playButton.setImage(PLAY_IMAGE);\n            } else {\n                playButton.setImage(PLAY_IMAGE_DISABLE);\n            }\n            timers.forEach(Timer::pause);\n        } else {\n            if (!disableControls) {\n                playButton.setImage(PAUSE_IMAGE);\n            } else {\n                playButton.setImage(PAUSE_IMAGE_DISABLE);\n            }\n            timers.forEach(Timer::play);\n        }\n    }\n\n    public void reset() {\n\n        if (disableControls) {\n            playButton.setImage(PLAY_IMAGE_DISABLE);\n        } else {\n            playButton.setImage(PLAY_IMAGE);\n            timers.forEach(Timer::stop);\n\n        }\n        playpause = false;\n    }\n\n    private void setButtonParams(final ImageView button) {\n        button.setOnMouseEntered((MouseEvent t) -> {\n            if (!disableControls) {\n                button.setEffect(new Glow(0.5));\n            }\n        });\n        button.setOnMouseExited((MouseEvent t) -> {\n            button.setEffect(null);\n        });\n        button.setFitWidth(50);\n        button.setPreserveRatio(true);\n        button.setTranslateY(-10);\n    }\n\n    public void addTimer(Timer timer) {\n        timers.add(timer);\n    }\n\n    public void togglePause() {\n        play(playButton.getImage().equals(PAUSE_IMAGE));\n    }\n\n    public boolean status() {\n        return playButton.getImage().equals(PAUSE_IMAGE);\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/timer/TimerDrawer.java",
    "content": "package org.quelea.windows.timer;\n\nimport java.io.File;\nimport java.util.Calendar;\n\nimport javafx.scene.image.ImageView;\nimport javafx.scene.layout.StackPane;\nimport javafx.scene.paint.Color;\nimport javafx.scene.text.Font;\nimport org.quelea.data.Background;\nimport org.quelea.data.ImageBackground;\nimport org.quelea.data.ColourBackground;\nimport org.quelea.data.ThemeDTO;\nimport org.quelea.data.VideoBackground;\nimport org.quelea.data.displayable.Displayable;\nimport org.quelea.data.displayable.TimerDisplayable;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.DisplayCanvas;\nimport org.quelea.windows.main.DisplayableDrawer;\nimport org.quelea.windows.main.widgets.Timer;\nimport org.quelea.utils.FXFontMetrics;\nimport org.quelea.windows.video.VidDisplay;\n\n/**\n * @author tomaszpio@gmail.com, Michael, Ben\n */\npublic class TimerDrawer extends DisplayableDrawer {\n\n    private final TimerControls controlPanel;\n    private Timer timer;\n    private Timer stageTimer;\n    private DisplayCanvas mainCanvas;\n    private DisplayCanvas stageCanvas;\n    private StackPane stack;\n    private VidDisplay vidDisplay;\n\n    public TimerDrawer(TimerControls controlPanel) {\n        this.controlPanel = controlPanel;\n        this.vidDisplay = new VidDisplay();\n    }\n\n    @Override\n    public void draw(Displayable displayable) {\n        TimerDisplayable td = (TimerDisplayable) displayable;\n        td.setDrawer(this);\n        int seconds = td.getSeconds();\n        if (seconds == -1) {\n            Calendar now = Calendar.getInstance();\n            seconds = (int) ((now.getTimeInMillis() - td.getTimeToFinish().getTimeInMillis()) / -1000);\n            if (seconds < 0) {\n                seconds = 0;\n            }\n        }\n\n        if (getCanvas().isStageView()) {\n            stageCanvas = getCanvas();\n            stageTimer = new Timer(seconds, td.getPretext(), td.getPosttext());\n            stageTimer.setTheme(td.getTheme());\n            controlPanel.addTimer(stageTimer);\n            stageTimer.setFill(QueleaProperties.get().getStageLyricsColor());\n            stageTimer.setEffect(null);\n            ImageView imageView = stageCanvas.getNewImageView();\n            imageView.setImage(Utils.getImageFromColour(QueleaProperties.get().getStageBackgroundColor()));\n            stageCanvas.getChildren().add(0, imageView);\n            stageCanvas.getChildren().add(stageTimer);\n            stageTimer.setFontSize(pickFontSize(td.getTheme().getFont(), stageTimer, stageCanvas));\n            stageTimer.toFront();\n        } else {\n            mainCanvas = getCanvas();\n            timer = new Timer(seconds, td.getPretext(), td.getPosttext());\n            timer.setTheme(td.getTheme());\n            controlPanel.addTimer(timer);\n            stack = new StackPane();\n            StackPane.setAlignment(timer, timer.getTextPosition());\n\n            if (td.getTheme().getBackground() instanceof VideoBackground) {\n                String url = ((VideoBackground) td.getTheme().getBackground()).getVLCVidString();\n                controlPanel.loadMultimedia(((VideoBackground) td.getTheme().getBackground()).getVLCVidString(),\n                        ((VideoBackground) td.getTheme().getBackground()).getStretch());\n                controlPanel.reset();\n\n                ImageView imageView = mainCanvas.getNewImageView();\n                imageView.imageProperty().bind(vidDisplay.imageProperty());\n                imageView.setPreserveRatio(true);\n                vidDisplay.setURI(new File(url).toURI());\n                vidDisplay.setLoop(true);\n                vidDisplay.play();\n                mainCanvas.getChildren().add(0, imageView);\n            } else if (td.getTheme().getBackground() instanceof ImageBackground) {\n                ImageView imageView = mainCanvas.getNewImageView();\n                imageView.setImage(((ImageBackground) td.getTheme().getBackground()).getImage());\n                mainCanvas.getChildren().add(0, imageView);\n            } else if (td.getTheme().getBackground() instanceof ColourBackground) {\n                ImageView imageView = mainCanvas.getNewImageView();\n                imageView.setImage(Utils.getImageFromColour(((ColourBackground) td.getTheme().getBackground()).getColour()));\n                mainCanvas.getChildren().add(0, imageView);\n            } else {\n                // New background type?\n            }\n            stack.getChildren().add(timer);\n            mainCanvas.getChildren().add(stack);\n            timer.setFontSize(pickFontSize(td.getTheme().getFont(), timer, mainCanvas));\n            timer.toFront();\n        }\n    }\n\n    @Override\n    public void clear() {\n    }\n\n    @Override\n    public void requestFocus() {\n    }\n\n    private double pickFontSize(Font font, Timer timer, DisplayCanvas canvas) {\n        FXFontMetrics metrics = new FXFontMetrics(font);\n        String text = timer.toString();\n        String[] splitText = text.split(\"\\n\");\n        double lineSpacing = QueleaProperties.get().getAdditionalLineSpacing() * canvas.getHeight() / 1000.0;\n\n        double totalHeight = (metrics.getLineHeight() + lineSpacing * splitText.length);\n        while (totalHeight > canvas.getHeight() * 0.8) {\n            font = new Font(font.getName(), font.getSize() - 0.5);\n            if (font.getSize() < 1) {\n                return 1;\n            }\n            metrics = new FXFontMetrics(font);\n            totalHeight = (metrics.getLineHeight() + lineSpacing * splitText.length);\n        }\n\n        String longestLine = longestLine(font, splitText);\n        double totalWidth = metrics.computeStringWidth(longestLine);\n        while (totalWidth > canvas.getWidth() * 0.8) {\n            font = new Font(font.getName(), font.getSize() - 0.5);\n            if (font.getSize() < 1) {\n                return 1;\n            }\n            metrics = new FXFontMetrics(font);\n            totalWidth = metrics.computeStringWidth(longestLine);\n        }\n\n        return font.getSize();\n    }\n\n    private String longestLine(Font font, String[] text) {\n        FXFontMetrics metrics = new FXFontMetrics(font);\n        double longestWidth = -1;\n        String longestStr = null;\n        for (String line : text) {\n            double width = metrics.computeStringWidth(line);\n            if (width > longestWidth) {\n                longestWidth = width;\n                longestStr = line;\n            }\n        }\n        return longestStr;\n    }\n\n    public void setTheme(ThemeDTO theme) {\n        boolean sync = false;\n        if (stageTimer != null) {\n            stageTimer.setTheme(theme);\n            stageTimer.setFill(QueleaProperties.get().getStageLyricsColor());\n            stageTimer.setEffect(null);\n            stageTimer.setFontSize(pickFontSize(theme.getFont(), stageTimer, stageCanvas));\n            stageTimer.toFront();\n        }\n        if (timer != null) {\n            timer.setTheme(theme);\n            timer.setFontSize(pickFontSize(theme.getFont(), timer, mainCanvas));\n            mainCanvas.clearNonPermanentChildren();\n            Background back = theme.getBackground();\n            if (back instanceof VideoBackground) {\n                controlPanel.loadMultimedia(((VideoBackground) back).getVLCVidString(),\n                        ((VideoBackground) back).getStretch());\n                controlPanel.addTimer(timer);\n                if (stageTimer != null) {\n                    sync = true;\n                }\n            } else if (back instanceof ImageBackground) {\n                ImageView imageView = mainCanvas.getNewImageView();\n                imageView.setImage(((ImageBackground) back).getImage());\n                mainCanvas.getChildren().add(0, imageView);\n            } else if (back instanceof ColourBackground) {\n                ImageView imageView = mainCanvas.getNewImageView();\n                imageView.setImage(Utils.getImageFromColour(((ColourBackground) back).getColour()));\n                mainCanvas.getChildren().add(0, imageView);\n            } else {\n                // New background type?\n            }\n            timer.toFront();\n        }\n        if (sync) {\n            timer.synchronise(stageTimer);\n        }\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/timer/TimerIO.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.timer;\n\nimport java.io.BufferedReader;\nimport java.io.BufferedWriter;\nimport java.io.ByteArrayInputStream;\nimport java.io.File;\nimport java.io.FileInputStream;\nimport java.io.FileOutputStream;\nimport java.io.IOException;\nimport java.io.InputStream;\nimport java.io.InputStreamReader;\nimport java.io.OutputStreamWriter;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\nimport javax.xml.parsers.DocumentBuilder;\nimport javax.xml.parsers.DocumentBuilderFactory;\nimport javax.xml.parsers.ParserConfigurationException;\nimport org.quelea.data.displayable.TimerDisplayable;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.w3c.dom.Document;\nimport org.w3c.dom.Node;\nimport org.xml.sax.SAXException;\n\n/**\n * Input and output a timer to a file\n * <p/>\n * @author Ben\n */\npublic class TimerIO {\n    \n    private static final Logger LOGGER = LoggerUtils.getLogger();\n\n    /**\n     * Method to save the countdown timer as a file\n     * <p/>\n     * @param t the timer displayable to save\n     * @param f the file to save the timer to\n     */\n    public static void timerToFile(TimerDisplayable t, File f) throws IOException {\n        if (!f.exists()) {\n            f.createNewFile();\n        }\n        try (BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(f), \"UTF-8\"))) {\n            bw.write(t.getXML());\n        }\n    }\n\n    /**\n     * Method to load the countdown timer from a file\n     * <p/>\n     * @param f the file to load the timer from\n     * @return the timer if the operation was successful, null otherwise.\n     */\n    public static TimerDisplayable timerFromFile(File f) {\n        if (f.isFile()) {\n            try {\n                StringBuilder contentsBuilder;\n                try (BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream(f)))) {\n                    contentsBuilder = new StringBuilder();\n                    String line;\n                    while ((line = br.readLine()) != null) {\n                        contentsBuilder.append(line).append('\\n');\n                    }\n                }\n                String contents = contentsBuilder.toString();\n                contents = contents.replace(new String(new byte[]{11}), \"\\n\");\n                contents = contents.replace(new String(new byte[]{-3}), \" \");\n                InputStream strInputStream = new ByteArrayInputStream(contents.getBytes(\"UTF-8\"));\n\n                DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();\n                DocumentBuilder builder = factory.newDocumentBuilder();\n                Document doc = builder.parse(strInputStream); //Read from our \"bodged\" stream.\n                Node node = doc.getFirstChild();\n                return TimerDisplayable.parseXML(node);\n            } catch (IOException | ParserConfigurationException | SAXException e) {\n                LOGGER.log(Level.WARNING, \"Error grabbing timer from file\", e);\n                return null;\n            }\n\n        } else {\n            LOGGER.log(Level.WARNING, \"Can't get timer from folder: {0}\", f.getAbsolutePath());\n            return null;\n        }\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/timer/TimerPanel.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.timer;\n\nimport javafx.geometry.Insets;\nimport javafx.geometry.Pos;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.input.KeyCode;\nimport javafx.scene.input.KeyEvent;\nimport javafx.scene.layout.BorderPane;\nimport javafx.scene.layout.VBox;\nimport javafx.scene.paint.Color;\nimport javafx.scene.text.Font;\nimport javafx.scene.text.Text;\nimport org.quelea.data.displayable.MultimediaDisplayable;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.windows.main.AbstractPanel;\nimport org.quelea.windows.main.DisplayCanvas;\nimport org.quelea.windows.main.DisplayableDrawer;\nimport org.quelea.windows.main.MainPanel;\nimport org.quelea.windows.main.QueleaApp;\n\n/**\n * A panel used in the live / preview panels for playing audio.\n * <p/>\n *\n * @author tomaszpio@gmail.com, Ben\n */\npublic class TimerPanel extends AbstractPanel {\n\n    private final TimerDrawer drawer;\n    private final TimerControls controlPanel;\n    private final Text previewText;\n    private final DisplayCanvas timerPreview;\n\n    /**\n     * Create a new image panel.\n     */\n    public TimerPanel() {\n        this.controlPanel = new TimerControls();\n        controlPanel.setDisableControls(false);\n        drawer = new TimerDrawer(controlPanel);\n        BorderPane.setMargin(controlPanel, new Insets(30));\n        setTop(controlPanel);\n        VBox centerBit = new VBox(5);\n        centerBit.setAlignment(Pos.CENTER);\n        previewText = new Text();\n        previewText.setFont(Font.font(\"Verdana\", 20));\n        previewText.setFill(Color.WHITE);\n        BorderPane.setMargin(centerBit, new Insets(10));\n        centerBit.getChildren().add(previewText);\n        timerPreview = new DisplayCanvas(false, this::updateCanvas, DisplayCanvas.Priority.LOW);\n        registerDisplayCanvas(timerPreview);\n        centerBit.getChildren().add(timerPreview);\n        timerPreview.prefHeightProperty().bind(heightProperty().subtract(200));\n        timerPreview.prefWidthProperty().bind(widthProperty().subtract(20));\n        setCenter(centerBit);\n        setMinWidth(50);\n        setMinHeight(50);\n        setStyle(\"-fx-background-color:grey;\");\n\n        addEventFilter(KeyEvent.KEY_PRESSED, (KeyEvent t) -> {\n            if (t.getCode().equals(KeyCode.PAGE_DOWN) || t.getCode().equals(KeyCode.DOWN)) {\n                t.consume();\n                QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().advance();\n            } else if (t.getCode().equals(KeyCode.PAGE_UP) || t.getCode().equals(KeyCode.UP)) {\n                t.consume();\n                QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().previous();\n            }\n        });\n\n\n    }\n\n    @Override\n    public void updateCanvas() {\n        MultimediaDisplayable displayable = (MultimediaDisplayable) getCurrentDisplayable();\n        previewText.setText(displayable.getName());\n        for (DisplayCanvas canvas : getCanvases()) {\n            drawer.setCanvas(canvas);\n            drawer.draw(displayable);\n        }\n    }\n\n    public void play() {\n        controlPanel.play(false);\n    }\n\n    public void togglePause() {\n        controlPanel.togglePause();\n    }\n\n    public boolean status() {\n        return controlPanel.status();\n    }\n\n    @Override\n    public int getCurrentIndex() {\n        return 0;\n    }\n\n    @Override\n    public DisplayableDrawer getDrawer(DisplayCanvas canvas) {\n        drawer.setCanvas(canvas);\n        return drawer;\n    }\n\n    /**\n     * Advances the current slide.\n     * <p/>\n     */\n    public void advance() {\n        MainPanel qmp = QueleaApp.get().getMainWindow().getMainPanel();\n        boolean lastItemTest = qmp.getLivePanel().getDisplayable() == qmp.getSchedulePanel().getScheduleList().getItems().get(qmp.getSchedulePanel().getScheduleList().getItems().size() - 1).displayable();\n        if (QueleaProperties.get().getAdvanceOnLive() && QueleaProperties.get().getSongOverflow() && !lastItemTest) {\n            qmp.getPreviewPanel().goLive();\n        }\n    }\n\n    /**\n     * Moves to the previous slide.\n     * <p/>\n     */\n    public void previous() {\n        MainPanel qmp = QueleaApp.get().getMainWindow().getMainPanel();\n        boolean firstItemTest = qmp.getSchedulePanel().getScheduleList().getItems().get(0).displayable() == qmp.getLivePanel().getDisplayable();\n        if (QueleaProperties.get().getAdvanceOnLive() && QueleaProperties.get().getSongOverflow() && !firstItemTest) {\n            //Assuming preview panel is one ahead, and should be one behind\n            int index = qmp.getSchedulePanel().getScheduleList().getSelectionModel().getSelectedIndex();\n            if (qmp.getLivePanel().getDisplayable() == qmp.getSchedulePanel().getScheduleList().getItems().get(qmp.getSchedulePanel().getScheduleList().getItems().size() - 1).displayable()) {\n                index -= 1;\n            } else {\n                index -= 2;\n            }\n            if (index >= 0) {\n                qmp.getSchedulePanel().getScheduleList().getSelectionModel().clearAndSelect(index);\n                qmp.getPreviewPanel().selectLastLyric();\n                qmp.getPreviewPanel().goLive();\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/video/FXImageSink.java",
    "content": "/*\n * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.\n *\n * Copyright 2019 Neil C Smith.\n *\n * This code is free software; you can redistribute it and/or modify it\n * under the terms of the GNU Lesser General Public License version 3 only, as\n * published by the Free Software Foundation.\n *\n * This code is distributed in the hope that it will be useful, but WITHOUT\n * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\n * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License\n * version 3 for more details.\n *\n * You should have received a copy of the GNU Lesser General Public License version 3\n * along with this work; if not, see http://www.gnu.org/licenses/\n *\n */\npackage org.quelea.windows.video;\n\nimport com.sun.jna.Pointer;\nimport javafx.application.Platform;\nimport javafx.beans.property.ReadOnlyObjectProperty;\nimport javafx.beans.property.ReadOnlyObjectWrapper;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.PixelBuffer;\nimport javafx.scene.image.PixelFormat;\nimport javafx.scene.image.WritableImage;\nimport org.freedesktop.gstreamer.Buffer;\nimport org.freedesktop.gstreamer.Caps;\nimport org.freedesktop.gstreamer.FlowReturn;\nimport org.freedesktop.gstreamer.Sample;\nimport org.freedesktop.gstreamer.Structure;\nimport org.freedesktop.gstreamer.elements.AppSink;\n\nimport java.lang.reflect.Field;\nimport java.nio.ByteBuffer;\nimport java.nio.ByteOrder;\nimport java.nio.IntBuffer;\nimport java.util.Queue;\nimport java.util.concurrent.ArrayBlockingQueue;\n\n/**\n * A wrapper connecting a GStreamer AppSink and a JavaFX Image, making use of\n * {@link PixelBuffer} to directly access the native GStreamer pixel data.\n * <p>\n * Use {@link #imageProperty()} to access the JavaFX image. The Image should\n * only be used on the JavaFX application thread, and is only valid while it is\n * the current property value. Using the Image when it is no longer the current\n * property value may cause errors or crashes.\n */\npublic class FXImageSink {\n\n    private final static String DEFAULT_CAPS;\n    private final static int OLD_SAMPLE_BUFFER_SIZE = 2;\n\n    private static final Field mapInfoBufferField;\n    private static final Field pointerPeerField;\n    private static final Field bufferAddress;\n    private static final Field bufferCapacity;\n\n    static {\n        if (ByteOrder.nativeOrder() == ByteOrder.LITTLE_ENDIAN) {\n            DEFAULT_CAPS = \"video/x-raw, format=BGRx\";\n        } else {\n            DEFAULT_CAPS = \"video/x-raw, format=xRGB\";\n        }\n\n        try {\n            mapInfoBufferField = Buffer.class.getDeclaredField(\"mapInfo\");\n            mapInfoBufferField.setAccessible(true);\n            pointerPeerField = Pointer.class.getDeclaredField(\"peer\");\n            pointerPeerField.setAccessible(true);\n            bufferAddress = java.nio.Buffer.class.getDeclaredField(\"address\");\n            bufferAddress.setAccessible(true);\n            bufferCapacity = java.nio.Buffer.class.getDeclaredField(\"capacity\");\n            bufferCapacity.setAccessible(true);\n        } catch (NoSuchFieldException e) {\n            throw new RuntimeException(e);\n        }\n    }\n\n    private final AppSink sink;\n    private final ReadOnlyObjectWrapper<WritableImage> image;\n    private IntBuffer imageBuffer;\n    private PixelBuffer<IntBuffer> pixelBuffer;\n    private Sample activeSample;\n    private Buffer activeBuffer;\n    private final Queue<Sample> oldSamples;\n\n    /**\n     * Create an FXImageSink. A new AppSink element will be created that can be\n     * accessed using {@link #getSinkElement()}.\n     */\n    public FXImageSink() {\n        this(new AppSink(\"FXImageSink\"));\n    }\n\n    /**\n     * Create an FXImageSink wrapping the provided AppSink element.\n     *\n     * @param sink AppSink element\n     */\n    public FXImageSink(AppSink sink) {\n        this.sink = sink;\n        oldSamples = new ArrayBlockingQueue<>(OLD_SAMPLE_BUFFER_SIZE + 1);\n        sink.set(\"emit-signals\", true);\n        sink.connect((AppSink.NEW_SAMPLE) elem -> {\n            Sample s = elem.pullSample();\n            if (s == null) throw new IllegalStateException();\n            Platform.runLater(() -> updateImage(s));\n            return FlowReturn.OK;\n        });\n        sink.connect((AppSink.NEW_PREROLL) appsink -> {\n            Sample s = appsink.pullPreroll();\n            if (s == null) throw new IllegalStateException();\n            Platform.runLater(() -> updateImage(s));\n            return FlowReturn.OK;\n        });\n        sink.setCaps(Caps.fromString(DEFAULT_CAPS));\n\n        imageBuffer = ByteBuffer.allocateDirect(4).asIntBuffer();\n        pixelBuffer = new PixelBuffer<>(1, 1, imageBuffer, PixelFormat.getIntArgbPreInstance());\n        image = new ReadOnlyObjectWrapper<>(new WritableImage(pixelBuffer));\n    }\n\n    /**\n     * Property wrapping the current video frame as a JavaFX {@link Image}. The\n     * Image should only be accessed on the JavaFX application thread. Use of\n     * the Image when it is no longer the current value of this property may\n     * cause errors or crashes.\n     *\n     * @return image property for current video frame\n     */\n    public ReadOnlyObjectProperty<? extends Image> imageProperty() {\n        return image.getReadOnlyProperty();\n    }\n\n    /**\n     * Get access to the AppSink element this class wraps.\n     *\n     * @return AppSink element\n     */\n    public AppSink getSinkElement() {\n        return sink;\n    }\n\n    long lastTs = 0;\n    int frames = 0;\n\n    private void updateImage(Sample newSample) {\n        long ts = System.currentTimeMillis();\n        if(ts-lastTs>1000) {\n//            System.out.println(frames);\n            frames = 1;\n            lastTs= ts;\n        }\n        else {\n            frames++;\n        }\n        if (!Platform.isFxApplicationThread()) {\n            throw new IllegalStateException(\"Not on FX application thread\");\n        }\n        if (newSample == null) {\n            throw new RuntimeException();\n        }\n        Sample oldSample = activeSample;\n        Buffer oldBuffer = activeBuffer;\n\n        activeSample = newSample;\n        Structure capsStruct = newSample.getCaps().getStructure(0);\n        int width = capsStruct.getInteger(\"width\");\n        int height = capsStruct.getInteger(\"height\");\n        activeBuffer = newSample.getBuffer();\n\n        if (image.get().getWidth() != width || image.get().getHeight() != height) {\n            imageBuffer = ByteBuffer.allocateDirect(width*height*4).asIntBuffer();\n            pixelBuffer = new PixelBuffer<>(width, height, imageBuffer, PixelFormat.getIntArgbPreInstance());\n            image.set(new WritableImage(pixelBuffer));\n        }\n\n        IntBuffer gBuffer = activeBuffer.map(false).asIntBuffer();\n\n        try {\n//            GstBufferAPI.MapInfoStruct mapInfo = (GstBufferAPI.MapInfoStruct) mapInfoBufferField.get(activeBuffer);\n//            long baseAddress = (long)pointerPeerField.get(mapInfo.data);\n//            long size = mapInfo.size.longValue();\n\n            long baseAddress = bufferAddress.getLong(gBuffer);\n            long size = bufferCapacity.getInt(gBuffer);\n\n//            System.out.println(baseAddress + \"  \"+ size);\n\n//            imageBuffer.rewind();\n\n            bufferAddress.setLong(imageBuffer, baseAddress);\n            bufferCapacity.setInt(imageBuffer, (int)size);\n            imageBuffer.position(0);\n            imageBuffer.limit((int)size);\n//            System.out.println(imageBuffer.get(4140000));\n//            System.out.println(gBuffer.get(4140000));\n//            System.out.println(gBuffer.getClass());\n//            System.out.println(imageBuffer.getClass());\n//            imageBuffer.put(gBuffer);\n\n//            imageBuffer.flip();\n\n            pixelBuffer.updateBuffer(b -> null);\n\n\n        } catch (IllegalAccessException ex) {\n            ex.printStackTrace();\n        }\n\n//        image.get().getPixelWriter().setPixels(0, 0, width, height, PixelFormat.getByteBgraPreInstance(), activeBuffer.map(false), width * 4);\n\n        if (oldSample != null) oldSamples.add(oldSample);\n        if (oldBuffer != null) {\n            oldBuffer.unmap();\n        }\n        while (oldSamples.size() > OLD_SAMPLE_BUFFER_SIZE) {\n            oldSamples.remove().dispose();\n        }\n\n//        long dur = System.nanoTime() - val;\n//        System.out.println(\"REFRESH TIME: \" + dur / 1000);\n\n    }\n\n    /**\n     * Clear any image and dispose of underlying native buffers. Can be called\n     * from any thread, but clearing will happen asynchronously if not called on\n     * JavaFX application thread.\n     */\n    public void clear() {\n        if (Platform.isFxApplicationThread()) {\n            clearImage();\n        } else {\n            Platform.runLater(this::clearImage);\n        }\n    }\n\n    private void clearImage() {\n        if (!Platform.isFxApplicationThread()) {\n            throw new IllegalStateException(\"Not on FX application thread\");\n        }\n        image.set(new WritableImage(1, 1));\n        if (activeBuffer != null) {\n            activeBuffer.unmap();\n            activeBuffer = null;\n        }\n        if (activeSample != null) {\n            activeSample.dispose();\n            activeSample = null;\n        }\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/video/TimeDisplay.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.video;\n\nimport javafx.scene.control.Label;\n\n/**\n * Responsible for showing the current and total time on a video. Converts \n * seconds into a nice HH:MM:SS format.\n *\n * @author Michael\n */\npublic class TimeDisplay extends Label {\n\n    private int currentSeconds;\n    private int totalSeconds;\n    \n    /**\n     * Create a new time display.\n     */\n    public TimeDisplay() {\n        update();\n    }\n\n    /**\n     * Set the amount of current seconds to display.\n     * @param currentSeconds the current seconds.\n     */\n    public void setCurrentSeconds(int currentSeconds) {\n        this.currentSeconds = currentSeconds;\n        update();\n    }\n\n    /**\n     * Set the amount of total seconds to display.\n     * @param totalSeconds the total seconds.\n     */\n    public void setTotalSeconds(int totalSeconds) {\n        this.totalSeconds = totalSeconds;\n        update();\n    }\n\n    /**\n     * Re-draw the label.\n     */\n    private void update() {\n        setText(formatIntoHHMMSS(currentSeconds) + \" / \" + formatIntoHHMMSS(totalSeconds));\n    }\n\n    /**\n     * Format the seconds to a nice string.\n     * @param secsIn number of seconds.\n     * @return a string consisting of HH:MM:SS\n     */\n    private static String formatIntoHHMMSS(int secsIn) {\n\n        int hours = secsIn / 3600,\n                remainder = secsIn % 3600,\n                minutes = remainder / 60,\n                seconds = remainder % 60;\n\n        return ((hours < 10 ? \"0\" : \"\") + hours\n                + \":\" + (minutes < 10 ? \"0\" : \"\") + minutes\n                + \":\" + (seconds < 10 ? \"0\" : \"\") + seconds);\n\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/video/VidDisplay.java",
    "content": "package org.quelea.windows.video;\n\nimport javafx.animation.Animation;\nimport javafx.animation.KeyFrame;\nimport javafx.animation.Timeline;\nimport javafx.beans.property.ReadOnlyObjectProperty;\nimport javafx.beans.property.ReadOnlyObjectWrapper;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.WritableImage;\nimport javafx.scene.paint.Color;\nimport javafx.util.Duration;\nimport org.freedesktop.gstreamer.Bus;\nimport org.freedesktop.gstreamer.Format;\nimport org.freedesktop.gstreamer.elements.PlayBin;\nimport org.freedesktop.gstreamer.event.SeekFlags;\nimport org.quelea.services.utils.GStreamerInitState;\n\nimport java.net.URI;\nimport java.util.EnumSet;\nimport java.util.Objects;\nimport java.util.function.Consumer;\n\npublic class VidDisplay {\n\n    private static int idCounter = 0;\n\n    private PlayBin playBin;\n    private FXImageSink fxImageSink;\n    private final int id;\n    private boolean loop;\n    private URI uri;\n    private Consumer<Double> posChanged;\n    private Runnable onFinished;\n    private static final Image BLANK_IMG;\n\n    static {\n        BLANK_IMG = new WritableImage(1, 1);\n        ((WritableImage) BLANK_IMG).getPixelWriter().setColor(0, 0, Color.BLACK);\n    }\n\n    public VidDisplay() {\n        id = idCounter++;\n        posChanged = d -> {\n        };\n        onFinished = () -> {\n        };\n        if(GStreamerInitState.INIT_SUCCESS) {\n            fxImageSink = new FXImageSink();\n            playBin = new PlayBin(\"playbin \" + id);\n            playBin.setVideoSink(fxImageSink.getSinkElement());\n            playBin.getBus().connect((Bus.EOS) source -> {\n                if (loop) {\n                    playBin.seekSimple(Format.TIME, EnumSet.of(SeekFlags.FLUSH), 0);\n                } else {\n                    onFinished.run();\n                }\n            });\n            Timeline timer = new Timeline(new KeyFrame(Duration.millis(100), e -> {\n                long dur = playBin.queryDuration(Format.TIME);\n                long pos = playBin.queryPosition(Format.TIME);\n                if (dur > 0) {\n                    double relPos = (double) pos / dur;\n                    posChanged.accept(relPos);\n                }\n            }));\n            timer.setCycleCount(Animation.INDEFINITE);\n            timer.play();\n        }\n    }\n\n    public ReadOnlyObjectProperty<? extends Image> imageProperty() {\n        if (fxImageSink == null) {\n            return new ReadOnlyObjectWrapper<>(BLANK_IMG);\n        }\n        return fxImageSink.imageProperty();\n    }\n\n    public void play() {\n        if (playBin != null) {\n            playBin.play();\n        }\n    }\n\n    public void pause() {\n        if (playBin != null) {\n            playBin.pause();\n        }\n    }\n\n    public void stop() {\n        if (playBin != null) {\n            playBin.stop();\n            fxImageSink.clear();\n        }\n    }\n\n    public void setURI(URI uri) {\n        if (!Objects.equals(this.uri, uri)) {\n            this.uri = uri;\n            if (playBin != null) {\n                playBin.setURI(uri);\n            }\n        }\n    }\n\n    public void setVolume(double volume) {\n        if (playBin != null) {\n            playBin.setVolume(volume);\n        }\n    }\n\n    public URI getUri() {\n        return uri;\n    }\n\n    public boolean isLoop() {\n        return loop;\n    }\n\n    public int getId() {\n        return id;\n    }\n\n    public void setLoop(boolean loop) {\n        this.loop = loop;\n    }\n\n    public void setOnPosChanged(Consumer<Double> callback) {\n        this.posChanged = callback;\n    }\n\n    public void setOnFinished(Runnable onFinished) {\n        this.onFinished = onFinished;\n    }\n\n    public void seek(double seekPos) {\n        long dur = playBin.queryDuration(Format.TIME);\n        if (dur > 0) {\n            playBin.seekSimple(Format.TIME, EnumSet.of(SeekFlags.FLUSH), (long) (seekPos * dur));\n        }\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/video/VidLogoDisplay.java",
    "content": "package org.quelea.windows.video;\n\nimport javafx.beans.property.ReadOnlyObjectProperty;\nimport javafx.beans.property.ReadOnlyObjectWrapper;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.WritableImage;\nimport javafx.scene.paint.Color;\nimport org.freedesktop.gstreamer.Bus;\nimport org.freedesktop.gstreamer.Format;\nimport org.freedesktop.gstreamer.elements.PlayBin;\nimport org.freedesktop.gstreamer.event.SeekFlags;\nimport org.quelea.services.utils.GStreamerInitState;\n\nimport java.net.URI;\nimport java.util.EnumSet;\nimport java.util.Objects;\n\npublic class VidLogoDisplay {\n\n    public static final VidLogoDisplay INSTANCE = new VidLogoDisplay();\n\n\n    private PlayBin playBin;\n    private FXImageSink fxImageSink;\n    private URI uri;\n    private static final Image BLANK_IMG;\n\n    static {\n        BLANK_IMG = new WritableImage(1, 1);\n        ((WritableImage) BLANK_IMG).getPixelWriter().setColor(0, 0, Color.BLACK);\n    }\n\n    private VidLogoDisplay() {\n        if (GStreamerInitState.INIT_SUCCESS) {\n            fxImageSink = new FXImageSink();\n            playBin = new PlayBin(\"playbin logo\");\n            playBin.setVideoSink(fxImageSink.getSinkElement());\n            playBin.getBus().connect((Bus.EOS) source -> {\n                playBin.seekSimple(Format.TIME, EnumSet.of(SeekFlags.FLUSH), 0);\n            });\n            playBin.setVolume(0);\n        }\n    }\n\n    public ReadOnlyObjectProperty<? extends Image> imageProperty() {\n        if (fxImageSink == null) {\n            return new ReadOnlyObjectWrapper<>(BLANK_IMG);\n        }\n        return fxImageSink.imageProperty();\n    }\n\n\n    public void setURI(URI uri) {\n        if (!Objects.equals(this.uri, uri)) {\n            this.uri = uri;\n            if (playBin != null) {\n                playBin.stop();\n                fxImageSink.clear();\n                playBin.setURI(uri);\n                playBin.play();\n            }\n        }\n    }\n\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/video/VidPreviewDisplay.java",
    "content": "package org.quelea.windows.video;\n\nimport javafx.scene.image.Image;\nimport javafx.scene.image.PixelBuffer;\nimport javafx.scene.image.PixelFormat;\nimport javafx.scene.image.WritableImage;\nimport org.freedesktop.gstreamer.Buffer;\nimport org.freedesktop.gstreamer.Caps;\nimport org.freedesktop.gstreamer.Gst;\nimport org.freedesktop.gstreamer.Sample;\nimport org.freedesktop.gstreamer.Structure;\nimport org.freedesktop.gstreamer.elements.PlayBin;\nimport org.quelea.services.utils.GStreamerInitState;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.windows.library.VideoListPanel;\n\nimport java.net.URI;\nimport java.nio.ByteBuffer;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\n\npublic class VidPreviewDisplay {\n\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n\n    private PlayBin playBin;\n\n    public VidPreviewDisplay() {\n        if (GStreamerInitState.INIT_SUCCESS) {\n            playBin = new PlayBin(\"playbin preview\");\n            playBin.setVideoSink(Gst.parseLaunch(\"fakesink\"));\n        }\n    }\n\n    public synchronized Image getPreviewImg(URI uri) {\n        if (uri == null || playBin == null) {\n            return VideoListPanel.BLANK;\n        }\n\n        LOGGER.log(Level.INFO, \"PROCESSING URI \" + uri);\n        playBin.setURI(uri);\n        playBin.getState();\n        playBin.pause();\n        playBin.getState();\n        playBin.getState();\n        Sample s = playBin.emit(Sample.class, \"convert-sample\", Caps.fromString(\"video/x-raw,format=BGRA\"));\n        if (s == null) {\n            playBin.stop();\n            playBin.getState();\n            return VideoListPanel.UNSUPPORTED;\n        } else {\n            Structure capsStruct = s.getCaps().getStructure(0);\n            int width = capsStruct.getInteger(\"width\");\n            int height = capsStruct.getInteger(\"height\");\n            Buffer activeBuffer = s.getBuffer();\n            PixelBuffer<ByteBuffer> pixelBuffer = new PixelBuffer<>(width, height,\n                    activeBuffer.map(false), PixelFormat.getByteBgraPreInstance());\n            WritableImage img = new WritableImage(pixelBuffer);\n            playBin.stop();\n            playBin.getState();\n            return img;\n        }\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/video/VideoStatusPanel.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.video;\n\nimport javafx.scene.layout.BorderPane;\n\n/**\n * A panel that goes along the bottom of the control panel and shows the video\n * time and volume.\n * @author Michael\n */\npublic class VideoStatusPanel extends BorderPane {\n    \n    private final TimeDisplay timeDisplay;\n    private final VolumeSlider volumeSlider;\n    \n    /**\n     * Create a new video status panel.\n     */\n    public VideoStatusPanel() {\n        timeDisplay = new TimeDisplay();\n        setLeft(timeDisplay);\n        volumeSlider = new VolumeSlider();\n        setCenter(volumeSlider);\n    }\n\n    /**\n     * Get the time display on the status panel.\n     * @return the time display.\n     */\n    public TimeDisplay getTimeDisplay() {\n        return timeDisplay;\n    }\n\n    /**\n     * Get the volume slider on the status panel.\n     * @return the volume slider.\n     */\n    public VolumeSlider getVolumeSlider() {\n        return volumeSlider;\n    }\n    \n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/video/VolumeSlider.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n * \n * \n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.video;\n\nimport java.util.ArrayList;\nimport java.util.List;\nimport javafx.scene.control.Label;\nimport javafx.scene.control.Slider;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.layout.BorderPane;\n\n/**\n * A volume slider. Consists of a slider and up / down icons.\n * @author Michael\n */\npublic class VolumeSlider extends BorderPane {\n    \n    private final Slider volumeSlider;\n    private final List<Runnable> runners;\n    \n    /**\n     * Create the volume slider.\n     */\n    public VolumeSlider() {\n        volumeSlider = new Slider(0,100,100);\n        runners = new ArrayList<>();\n        volumeSlider.valueProperty().addListener((ov, n1, n2) -> {\n            for(Runnable runner : runners) {\n                runner.run();\n            }\n        });\n        \n        setLeft(new Label(\"\",new ImageView(new Image(\"file:icons/volumedown.png\", 16, 16, false, true))));\n        setCenter(volumeSlider);\n        setRight(new Label(\"\",new ImageView(new Image(\"file:icons/volumeup.png\", 16, 16, false, true))));\n    }\n    \n    /**\n     * Get the current value of the slider.\n     * @return the slider's value, between 0-100.\n     */\n    public double getValue() {\n        return (int)volumeSlider.valueProperty().get();\n    }\n    \n    /**\n     * Add a runner to be executed when the value of the slider changes.\n     * @param runner the runnable to run when the slider's value changes.\n     */\n    public void addRunner(Runnable runner) {\n        runners.add(runner);\n    }\n    \n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/web/WebDrawer.java",
    "content": "/* \n * This file is part of Quelea, free projection software for churches.\n * \n * \n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n * \n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.web;\n\nimport java.awt.image.BufferedImage;\nimport javafx.embed.swing.SwingFXUtils;\nimport javafx.scene.SnapshotParameters;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.image.WritableImage;\nimport javafx.scene.web.WebEngine;\nimport javafx.scene.web.WebView;\nimport org.quelea.data.displayable.Displayable;\nimport org.quelea.data.displayable.WebDisplayable;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.services.utils.Utils;\nimport org.quelea.windows.main.DisplayableDrawer;\nimport org.quelea.windows.main.QueleaApp;\n\n/**\n * Responsible for drawing an webpage onto the DisplayCanvas.\n * <p/>\n * @author Arvid\n */\npublic class WebDrawer extends DisplayableDrawer {\n\n    private WebView webView;\n    private WebEngine webEngine;\n    private WebDisplayable d;\n\n    @Override\n    public void draw(Displayable displayable) {\n        clear();\n        if(displayable==null) {\n            return;\n        }\n        d = (WebDisplayable) displayable;\n        webView = d.getWebView();\n        webEngine = d.getWebEngine();\n        if (!getCanvas().isStageView()) {\n            if (webEngine.getTitle() == null) {\n                webEngine.load(WebDisplayable.sanitiseUrl( d.getUrl()));\n            }\n            addWebView(webView);\n        } else {\n            ImageView imageView = getCanvas().getNewImageView();\n            imageView.setFitWidth(getCanvas().getWidth());\n            Image image = Utils.getImageFromColour(QueleaProperties.get().getStageBackgroundColor());\n            imageView.setImage(image);\n            getCanvas().getChildren().add(imageView);\n        }\n\n    }\n\n    @Override\n    public void clear() {\n        if (getCanvas().getChildren() != null) {\n            getCanvas().clearNonPermanentChildren();\n        }\n    }\n\n    @Override\n    public void requestFocus() {\n        webView.requestFocus();\n    }\n\n    public Image getPreview(int x, int y) {\n        WritableImage previewImage = new WritableImage(x, y);\n        QueleaApp.get().getProjectionWindow().getCanvas().snapshot(new SnapshotParameters(), previewImage);\n        BufferedImage bi = SwingFXUtils.fromFXImage((WritableImage) previewImage, null);\n        SwingFXUtils.toFXImage(bi, previewImage);\n        return previewImage;\n    }\n\n    public void back() {\n        d.back();\n    }\n\n    public void forward() {\n        d.forward();\n    }\n\n    public void reload() {\n        d.reload();\n    }\n\n    public void setUrl(String url) {\n        d.setUrl(url);\n    }\n\n    public String getURL() {\n        if (webEngine != null) {\n            return webEngine.getLocation();\n        } else {\n            return \"\";\n        }\n    }\n\n    public boolean isLoading() {\n        return webEngine.getLoadWorker().isRunning();\n    }\n\n    public void addWebView(WebView wv) {\n        if (!getCanvas().isStageView()) {\n            getCanvas().getChildren().add(wv);\n        }\n    }\n\n    public String getErrorMessage() {\n        try {\n            return webEngine.getLoadWorker().getException().getMessage();\n        } catch (NullPointerException e) {\n\n        }\n        return \"\";\n    }\n}\n"
  },
  {
    "path": "Quelea/src/main/java/org/quelea/windows/web/WebPanel.java",
    "content": "/*\n * This file is part of Quelea, free projection software for churches.\n *\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program.  If not, see <http://www.gnu.org/licenses/>.\n */\npackage org.quelea.windows.web;\n\nimport java.awt.AWTException;\nimport java.awt.Robot;\nimport java.awt.event.InputEvent;\nimport java.util.logging.Level;\nimport java.util.logging.Logger;\n\nimport javafx.geometry.Insets;\nimport javafx.geometry.Orientation;\nimport javafx.geometry.Point2D;\nimport javafx.geometry.Pos;\nimport javafx.scene.control.Button;\nimport javafx.scene.control.Separator;\nimport javafx.scene.control.TextField;\nimport javafx.scene.control.Tooltip;\nimport javafx.scene.image.Image;\nimport javafx.scene.image.ImageView;\nimport javafx.scene.input.KeyCode;\nimport javafx.scene.input.KeyEvent;\nimport javafx.scene.layout.BorderPane;\nimport javafx.scene.layout.HBox;\nimport javafx.scene.layout.StackPane;\nimport javafx.scene.layout.VBox;\nimport javafx.scene.web.WebView;\nimport org.quelea.data.displayable.WebDisplayable;\nimport org.quelea.services.utils.LoggerUtils;\nimport org.quelea.services.utils.QueleaProperties;\nimport org.quelea.windows.main.AbstractPanel;\nimport org.quelea.windows.main.DisplayCanvas;\nimport org.quelea.windows.main.DisplayableDrawer;\nimport org.quelea.windows.main.MainPanel;\nimport org.quelea.windows.main.QueleaApp;\n\n/**\n * A panel used in the live / preview panels for displaying webpages.\n * <p>\n * Doesn't work with Flash or Google Presentation but works well with HTML5.\n * <p>\n * <p/>\n *\n * @author Arvid\n */\npublic class WebPanel extends AbstractPanel {\n\n    private WebDrawer drawer;\n    private WebDisplayable wd;\n    private final ImageView imagePreview;\n    private final ImageView loading;\n    private final StackPane imagePane;\n    private Button back;\n    private Button forward;\n    private Button reload;\n    private Button go;\n    private Button plus;\n    private Button minus;\n    private TextField url;\n    private Separator separator;\n    private static final Logger LOGGER = LoggerUtils.getLogger();\n\n    /**\n     * Create a new web panel.\n     */\n    public WebPanel() {\n        imagePane = new StackPane();\n        imagePreview = new ImageView();\n        loading = new ImageView(new Image(\"file:icons/loading.gif\"));\n        drawer = new WebDrawer();\n        VBox centerBit = new VBox(5);\n        centerBit.setAlignment(Pos.CENTER);\n        BorderPane.setMargin(centerBit, new Insets(10));\n        loading.setPreserveRatio(true);\n        loading.setFitHeight(50);\n        imagePane.getChildren().add(loading);\n        imagePreview.fitHeightProperty().bind(heightProperty().subtract(200));\n        imagePreview.fitWidthProperty().bind(widthProperty().subtract(20));\n        imagePane.getChildren().add(imagePreview);\n        centerBit.getChildren().add(imagePane);\n        setCenter(centerBit);\n        setMinWidth(200);\n        setStyle(\"-fx-background-color:grey;\");\n        HBox navigationBar = new HBox(5);\n        navigationBar.setAlignment(Pos.CENTER);\n        setupNavigationBarContent();\n        separator = new Separator(Orientation.VERTICAL);\n        separator.setVisible(false);\n        navigationBar.getChildren().add(back);\n        navigationBar.getChildren().add(forward);\n        navigationBar.getChildren().add(reload);\n        navigationBar.getChildren().add(separator);\n        navigationBar.getChildren().add(url);\n        navigationBar.getChildren().add(go);\n        separator = new Separator(Orientation.VERTICAL);\n        separator.setVisible(false);\n        navigationBar.getChildren().add(separator);\n        navigationBar.getChildren().add(plus);\n        navigationBar.getChildren().add(minus);\n        setBottom(navigationBar);\n        imagePreview.setPreserveRatio(true);\n\n        imagePreview.setOnMouseClicked(e -> {\n            if (wd != null) {\n                final Point2D sceneCoord = new Point2D(QueleaApp.get().getProjectionWindow().getX(), QueleaApp.get().getProjectionWindow().getY());\n                click(sceneCoord.getX() + (e.getX() * (QueleaApp.get().getProjectionWindow().getWidth() / imagePreview.getBoundsInParent().getWidth())), sceneCoord.getY() + (e.getY() * (QueleaApp.get().getProjectionWindow().getHeight() / imagePreview.getBoundsInParent().getHeight())));\n            }\n        });\n        imagePreview.setOnScroll(e -> {\n            if (wd != null) {\n                try {\n                    Robot r = new Robot();\n                    QueleaApp.get().getProjectionWindow().requestFocus();\n                    if (e.getDeltaY() < 0) {\n                        r.keyPress(java.awt.event.KeyEvent.VK_DOWN);\n                        r.keyRelease(java.awt.event.KeyEvent.VK_DOWN);\n                    } else if (e.getDeltaY() > 0) {\n                        r.keyPress(java.awt.event.KeyEvent.VK_UP);\n                        r.keyRelease(java.awt.event.KeyEvent.VK_UP);\n                    } else if (e.getDeltaX() < 0) {\n                        r.keyPress(java.awt.event.KeyEvent.VK_RIGHT);\n                        r.keyRelease(java.awt.event.KeyEvent.VK_RIGHT);\n                    } else if (e.getDeltaX() > 0) {\n                        r.keyPress(java.awt.event.KeyEvent.VK_LEFT);\n                        r.keyRelease(java.awt.event.KeyEvent.VK_LEFT);\n                    }\n                } catch (AWTException ex) {\n                    LOGGER.log(Level.WARNING, \"Error with robot\", ex);\n                }\n            }\n        });\n        imagePreview.setImage(new Image(\"file:icons/web preview.png\"));\n        addEventFilter(KeyEvent.KEY_PRESSED, (KeyEvent t) -> {\n            if (t.getCode().equals(KeyCode.PAGE_DOWN) || t.getCode().equals(KeyCode.DOWN)) {\n                t.consume();\n                QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().advance();\n            } else if (t.getCode().equals(KeyCode.PAGE_UP) || t.getCode().equals(KeyCode.UP)) {\n                t.consume();\n                QueleaApp.get().getMainWindow().getMainPanel().getLivePanel().previous();\n            }\n        });\n\n    }\n\n    @Override\n    public DisplayableDrawer getDrawer(DisplayCanvas canvas) {\n        drawer.setCanvas(canvas);\n        return drawer;\n    }\n\n    /**\n     * Clear the panel and all canvases associated with it.\n     */\n    @Override\n    public void removeCurrentDisplayable() {\n        super.removeCurrentDisplayable();\n    }\n\n    /**\n     * Show a given web displayable on the panel.\n     * <p/>\n     *\n     * @param displayable the web displayable.\n     */\n    public void showDisplayable(WebDisplayable displayable) {\n        wd = displayable;\n        setCurrentDisplayable(displayable);\n        updateCanvas();\n    }\n\n    @Override\n    public int getCurrentIndex() {\n        return 0;\n    }\n\n    /**\n     * Check this Advances the current slide.\n     * <p/>\n     */\n    public void advance() {\n        MainPanel qmp = QueleaApp.get().getMainWindow().getMainPanel();\n        boolean lastItemTest = qmp.getLivePanel().getDisplayable() == qmp.getSchedulePanel().getScheduleList().getItems().get(qmp.getSchedulePanel().getScheduleList().getItems().size() - 1).displayable();\n        if (QueleaProperties.get().getAdvanceOnLive() && QueleaProperties.get().getSongOverflow() && !lastItemTest) {\n            qmp.getPreviewPanel().goLive();\n        }\n    }\n\n    /**\n     * Check this Moves to the previous slide.\n     * <p/>\n     */\n    public void previous() {\n        MainPanel qmp = QueleaApp.get().getMainWindow().getMainPanel();\n        boolean firstItemTest = qmp.getSchedulePanel().getScheduleList().getItems().get(0).displayable() == qmp.getLivePanel().getDisplayable();\n        if (QueleaProperties.get().getAdvanceOnLive() && QueleaProperties.get().getSongOverflow() && !firstItemTest) {\n            //Assuming preview panel is one ahead, and should be one behind\n            int index = qmp.getSchedulePanel().getScheduleList().getSelectionModel().getSelectedIndex();\n            if (qmp.getLivePanel().getDisplayable() == qmp.getSchedulePanel().getScheduleList().getItems().get(qmp.getSchedulePanel().getScheduleList().getItems().size() - 1).displayable()) {\n                index -= 1;\n            } else {\n                index -= 2;\n            }\n            if (index >= 0) {\n                qmp.getSchedulePanel().getScheduleList().getSelectionModel().clearAndSelect(index);\n                qmp.getPreviewPanel().selectLastLyric();\n                qmp.getPreviewPanel().goLive();\n            }\n        }\n    }\n\n    /**\n     * Send mouse click signal to web page.\n     *\n     * @param x x position to click\n     * @param y y position to click\n     */\n    private static void click(double x, double y) {\n        QueleaApp.get().getProjectionWindow().requestFocus();\n        java.awt.Point originalLocation = java.awt.MouseInfo.getPointerInfo().getLocation();\n        try {\n            java.awt.Robot robot = new java.awt.Robot();\n            robot.mouseMove((int) x, (int) y);\n            robot.mousePress(InputEvent.BUTTON1_DOWN_MASK);\n            robot.mouseRelease(InputEvent.BUTTON1_DOWN_MASK);\n            robot.mouseMove((int) originalLocation.getX(), (int) originalLocation.getY());\n        } catch (Exception e) {\n            LOGGER.log(Level.WARNING, \"Failed clicking the web view\", e);\n        }\n    }\n\n    /**\n     * Get ImageView to display a preview in panel.\n     *\n     * @return an ImageView\n     */\n    public ImageView getImagePreview() {\n        return imagePreview;\n    }\n\n    /**\n     * Add/Remove loading GIF.\n     */\n    public void setLoading() {\n        if (drawer.isLoading() && !imagePane.getChildren().contains(this.loading)) {\n            imagePane.getChildren().add(this.loading);\n        } else if (!drawer.isLoading()) {\n            imagePane.getChildren().remove(this.loading);\n        }\n    }\n\n    public void addWebView(WebDisplayable displayable) {\n        removeWebView();\n        imagePane.getChildren().add(displayable.getWebView());\n    }\n\n    public WebView removeWebView() {\n        imagePane.getChildren().clear();\n        imagePane.getChildren().add(imagePreview);\n        if (wd == null) {\n            return null;\n        }\n        return wd.getWebView();\n    }\n\n    public void blockButtons(boolean block) {\n        back.setDisable(block);\n        forward.setDisable(block);\n        go.setDisable(block);\n        reload.setDisable(block);\n        url.setDisable(block);\n        plus.setDisable(block);\n        minus.setDisable(block);\n    }\n\n    public void setText() {\n        if (wd != null) {\n            url.setText(wd.getUrl());\n        }\n    }\n\n    private void setupNavigationBarContent() {\n        back = new Button(\"\", getButtonImageView(\"file:icons/arrow-back.png\"));\n        back.setOnMouseClicked(e -> {\n            if (wd != null) {\n                wd.back();\n            }\n        });\n        forward = new Button(\"\", getButtonImageView(\"file:icons/arrow-forward.png\"));\n        forward.setOnMouseClicked(e -> {\n            if (wd != null) {\n                wd.forward();\n            }\n        });\n        reload = new Button(\"\", getButtonImageView(\"file:icons/reload.png\"));\n        reload.setOnMouseClicked(e -> {\n            if (wd != null) {\n                wd.reload();\n            }\n        });\n        url = new TextField();\n        url.setPrefHeight(32);\n        url.setMaxHeight(32);\n        url.setStyle(\"\"\n                + \"-fx-font-size: 14px;\"\n                + \"-fx-font-weight: bold;\"\n                + \"-fx-font-family: fantasy;\");\n        url.setTooltip(new Tooltip(\"Change URL\"));\n        url.setOnKeyReleased(e -> {\n            if (e.getCode().equals(KeyCode.ENTER)) {\n                if (wd != null) {\n                    wd.setUrl(url.getText());\n                }\n            }\n        });\n        go = new Button(\"\", getButtonImageView(\"file:icons/send.png\"));\n        go.setOnMouseClicked(e -> {\n            if (wd != null) {\n                wd.setUrl(url.getText());\n            }\n        });\n        plus = new Button(\"\", getButtonImageView(\"file:icons/zoom-in.png\"));\n        plus.setOnMouseClicked(e -> {\n            if (wd != null) {\n                wd.zoom(true);\n            }\n        });\n        minus = new Button(\"\", getButtonImageView(\"file:icons/zoom-out.png\"));\n        minus.setOnMouseClicked(e -> {\n            if (wd != null) {\n                wd.zoom(false);\n            }\n        });\n    }\n\n    private ImageView getButtonImageView(String path) {\n        return new ImageView(new Image(QueleaProperties.get().getUseDarkTheme() ? path.replace(\".png\", \"-light.png\") : path));\n    }\n\n}\n"
  },
  {
    "path": "Quelea/src/main/resources/org/modena_dark.css",
    "content": "/*\n * This is an adjustment of the original modena.css for a consistent dark theme.\n * Original modena.css here: https://gist.github.com/maxd/63691840fc372f22f470.\n */\n\n/* Redefine base colors */\n.root {\n    -fx-base: rgb(50, 50, 50);\n    -fx-background: rgb(50, 50, 50);\n\n    /* make controls (buttons, thumb, etc.) slightly lighter */\n    -fx-color: derive(-fx-base, 10%);\n\n    /* text fields and table rows background */\n    -fx-control-inner-background: rgb(20, 20, 20);\n    /* version of -fx-control-inner-background for alternative rows */\n    -fx-control-inner-background-alt: derive(-fx-control-inner-background, 2.5%);\n\n    /* text colors depending on background's brightness */\n    -fx-light-text-color: rgb(220, 220, 220);\n    -fx-mid-text-color: rgb(100, 100, 100);\n    -fx-dark-text-color: rgb(20, 20, 20);\n    -fx-text-fill: white;\n\n    /* A bright blue for highlighting/accenting objects.  For example: selected\n     * text; selected items in menus, lists, trees, and tables; progress bars */\n    -fx-accent: rgb(0, 80, 100);\n\n    /* color of non-focused yet selected elements */\n    -fx-selection-bar-non-focused: rgb(50, 50, 50);\n}\n\n.text {\n    -fx-fill: white;\n}\n\n.text-area {\n   -fx-background-color: rgb(80, 80, 80);\n}\n\n/* Fix scroll bar buttons arrows colors */\n.scroll-bar > .increment-button > .increment-arrow,\n.scroll-bar > .decrement-button > .decrement-arrow {\n    -fx-background-color: -fx-mark-highlight-color, rgb(220, 220, 220);\n}\n\n.scroll-bar > .increment-button:hover > .increment-arrow,\n.scroll-bar > .decrement-button:hover > .decrement-arrow {\n    -fx-background-color: -fx-mark-highlight-color, rgb(240, 240, 240);\n}\n\n.scroll-bar > .increment-button:pressed > .increment-arrow,\n.scroll-bar > .decrement-button:pressed > .decrement-arrow {\n    -fx-background-color: -fx-mark-highlight-color, rgb(255, 255, 255);\n}"
  },
  {
    "path": "Quelea/src/main/resources/org/quelea/services/importexport/PlanningCenterOnlineImportDialog.fxml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n\n<?import javafx.geometry.Insets?>\n<?import javafx.scene.control.Button?>\n<?import javafx.scene.control.SplitPane?>\n<?import javafx.scene.control.TreeView?>\n<?import javafx.scene.image.Image?>\n<?import javafx.scene.image.ImageView?>\n<?import javafx.scene.layout.AnchorPane?>\n<?import javafx.scene.layout.HBox?>\n<?import javafx.scene.layout.Pane?>\n\n<AnchorPane maxHeight=\"-Infinity\" maxWidth=\"-Infinity\" minHeight=\"-Infinity\" minWidth=\"-Infinity\" prefHeight=\"400.0\" prefWidth=\"700.0\" xmlns=\"http://javafx.com/javafx/8.0.65\" xmlns:fx=\"http://javafx.com/fxml/1\">\n   <children>\n      <SplitPane dividerPositions=\"0.3\" AnchorPane.bottomAnchor=\"30.0\" AnchorPane.leftAnchor=\"0.0\" AnchorPane.rightAnchor=\"0.0\" AnchorPane.topAnchor=\"0.0\">\n        <items>\n          <AnchorPane>\n               <children>\n                  <TreeView fx:id=\"serviceView\" prefHeight=\"150.0\" prefWidth=\"300.0\" AnchorPane.bottomAnchor=\"0.0\" AnchorPane.leftAnchor=\"0.0\" AnchorPane.rightAnchor=\"0.0\" AnchorPane.topAnchor=\"0.0\" />\n               </children>\n            </AnchorPane>\n          <AnchorPane fx:id=\"planPane\" />\n        </items>\n      </SplitPane>\n      <HBox AnchorPane.bottomAnchor=\"0.0\" AnchorPane.leftAnchor=\"0.0\" AnchorPane.rightAnchor=\"0.0\">\n         <children>\n            <Pane HBox.hgrow=\"ALWAYS\" />\n            <Button fx:id=\"okButton\" alignment=\"TOP_RIGHT\" mnemonicParsing=\"false\" onAction=\"#onAcceptAction\" text=\"%ok.button\">\n               <graphic>\n                  <ImageView fitHeight=\"16.0\" fitWidth=\"16.0\" pickOnBounds=\"true\" preserveRatio=\"true\">\n                     <image>\n                        <Image url=\"@file:icons/tick.png\" />\n                     </image>\n                  </ImageView>\n               </graphic></Button>\n         </children>\n      </HBox>\n   </children>\n   <padding>\n      <Insets bottom=\"10.0\" left=\"10.0\" right=\"10.0\" top=\"10.0\" />\n   </padding>\n</AnchorPane>\n"
  },
  {
    "path": "Quelea/src/main/resources/org/quelea/services/importexport/PlanningCenterOnlinePlanDialog.fxml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n\n<?import javafx.geometry.Insets?>\n<?import javafx.scene.control.Button?>\n<?import javafx.scene.control.ProgressBar?>\n<?import javafx.scene.control.TreeView?>\n<?import javafx.scene.layout.BorderPane?>\n<?import javafx.scene.layout.HBox?>\n<?import javafx.scene.layout.VBox?>\n\n<HBox maxHeight=\"1.7976931348623157E308\" maxWidth=\"1.7976931348623157E308\" prefHeight=\"350.0\" prefWidth=\"500.0\" xmlns=\"http://javafx.com/javafx/8.0.65\" xmlns:fx=\"http://javafx.com/fxml/1\">\n   <children>\n      <TreeView fx:id=\"planView\" maxHeight=\"1.7976931348623157E308\" maxWidth=\"1.7976931348623157E308\" HBox.hgrow=\"ALWAYS\" />\n      <BorderPane maxHeight=\"1.7976931348623157E308\" maxWidth=\"1.7976931348623157E308\">\n         <top>\n            <VBox fx:id=\"buttonBox\" spacing=\"5.0\" BorderPane.alignment=\"CENTER\">\n               <children>\n                  <Button mnemonicParsing=\"false\" onAction=\"#onImportAllAction\" prefWidth=\"150.0\" text=\"%import.all.button\" />\n                  <Button mnemonicParsing=\"false\" onAction=\"#onImportSelectedAction\" prefWidth=\"150.0\" text=\"%import.selection.button\" />\n                  <Button mnemonicParsing=\"false\" onAction=\"#onRefreshAction\" prefWidth=\"150.0\" text=\"%refresh.button\" />\n               </children>\n               <padding>\n                  <Insets bottom=\"5.0\" left=\"5.0\" right=\"5.0\" top=\"5.0\" />\n               </padding>\n            </VBox>\n         </top>\n         <bottom>\n            <VBox fx:id=\"progressBox\" spacing=\"5.0\" BorderPane.alignment=\"CENTER\">\n               <children>\n                  <ProgressBar fx:id=\"totalProgress\" prefWidth=\"150.0\" progress=\"0.0\" />\n                  <ProgressBar fx:id=\"itemProgress\" prefWidth=\"150.0\" progress=\"0.0\" />\n               </children>\n               <padding>\n                  <Insets bottom=\"5.0\" left=\"5.0\" right=\"5.0\" top=\"5.0\" />\n               </padding>\n            </VBox>\n         </bottom>\n      </BorderPane>\n   </children>\n</HBox>\n"
  },
  {
    "path": "Quelea/src/test/java/org/quelea/services/utils/QueleaPropertiesTest.java",
    "content": "package org.quelea.services.utils;\n\nimport org.junit.jupiter.api.Assertions;\nimport org.junit.jupiter.api.Test;\nimport org.junit.jupiter.api.DisplayName;\n\nimport java.io.File;\nimport java.io.FileNotFoundException;\nimport java.util.ArrayList;\nimport java.util.Scanner;\nimport java.util.Collections;\n\n@DisplayName(\"QueleaPropertiesTest\")\npublic class QueleaPropertiesTest {\n\n    @Test\n    @DisplayName(\"Test If Properties File Is Sorted\")\n    // check whether properties file is sorted\n    public void testIfPropertiesFileIsSorted() throws FileNotFoundException {\n        // init properties\n        QueleaProperties.init(\"\");\n        // trigger a properties write\n        QueleaProperties.get().setCheckUpdate(true);\n        // read the properties file\n        Scanner scanner = new Scanner(new File(QueleaProperties.get().getQueleaUserHome(), \"quelea.properties\"));\n        ArrayList<String> propertyKeys = new ArrayList<>();\n        // read all property keys\n        while(scanner.hasNextLine()){\n            String line = scanner.nextLine();\n            if(line.charAt(0) != '#') {\n                propertyKeys.add(line.split(\"=\")[0]);\n            }\n        }\n        // make a copy of key properties\n        ArrayList<String> propertyKeysSorted = new ArrayList<>(propertyKeys);\n        // sort the copy\n        Collections.sort(propertyKeysSorted);\n        // If both are equal then keys were already in sorted order\n        Assertions.assertEquals(propertyKeys, propertyKeysSorted);\n    }\n}\n"
  },
  {
    "path": "Quelea/themes/theme1.th",
    "content": "fontname:Noto Sans$translatefontname:System$fontcolour:0xffffffff$translatefontcolour:0xffff80ff$themename:White on Black$isFontBold:false$isFontItalic:false$isTranslateFontBold:false$isTranslateFontItalic:true$backgroundcolour:0x000000ff$shadowcolor:0x999999ff$shadowX:3$shadowY:3$textposition:-1$textalignment:0\r\n"
  },
  {
    "path": "Quelea/themes/theme2.th",
    "content": "fontname:Noto Sans$translatefontname:Noto Sans$fontcolour:0xffff00ff$translatefontcolour:0x999900ff$themename:Yellow on Blue$isFontBold:false$isFontItalic:false$isTranslateFontBold:false$isTranslateFontItalic:true$backgroundcolour:0x0000ffff$shadowcolor:0xffffffff$shadowX:0$shadowY:0$textposition:-1$textalignment:0\r\n"
  },
  {
    "path": "Quelea/vbs/closePresentation.vbs",
    "content": "' Script to close a PowerPoint.\n' Returns warning if PowerPoint is not running.\n' @author Arvid\n\nOption Explicit\nOn Error Resume Next\ndim pptAppl\nset pptAppl = GetObject(, \"Powerpoint.Application\")\nIf Err.Number <> 0 Then\n    WScript.Echo \"PowerPoint is not running\"\n    Err.Clear             ' Clear the Error\nelse\n' Avoid getting asked to save changes\n\tpptAppl.Saved = True\n' Close all windows of PowerPoint\n\tpptAppl.Quit\nSet pptAppl = Nothing\nEnd If\nOn Error Goto 0           ' Don't resume on Error\n\n"
  },
  {
    "path": "Quelea/vbs/exportToPDF.vbs",
    "content": "Option Explicit\n\nSub WriteLine ( strLine )\n    WScript.Stdout.WriteLine strLine\nEnd Sub\n\n' http://msdn.microsoft.com/en-us/library/office/aa432714(v=office.12).aspx\nConst msoFalse = 0   ' False.\nConst msoTrue = -1   ' True.\n\n' http://msdn.microsoft.com/en-us/library/office/bb265636(v=office.12).aspx\nConst ppFixedFormatIntentScreen = 1 ' Intent is to view exported file on screen.\nConst ppFixedFormatIntentPrint = 2  ' Intent is to print exported file.\n\n' http://msdn.microsoft.com/en-us/library/office/ff746754.aspx\nConst ppFixedFormatTypeXPS = 1  ' XPS format\nConst ppFixedFormatTypePDF = 2  ' PDF format\n\n' http://msdn.microsoft.com/en-us/library/office/ff744564.aspx\nConst ppPrintHandoutVerticalFirst = 1   ' Slides are ordered vertically, with the first slide in the upper-left corner and the second slide below it.\nConst ppPrintHandoutHorizontalFirst = 2 ' Slides are ordered horizontally, with the first slide in the upper-left corner and the second slide to the right of it.\n\n' http://msdn.microsoft.com/en-us/library/office/ff744185.aspx\nConst ppPrintOutputSlides = 1               ' Slides\nConst ppPrintOutputTwoSlideHandouts = 2     ' Two Slide Handouts\nConst ppPrintOutputThreeSlideHandouts = 3   ' Three Slide Handouts\nConst ppPrintOutputSixSlideHandouts = 4     ' Six Slide Handouts\nConst ppPrintOutputNotesPages = 5           ' Notes Pages\nConst ppPrintOutputOutline = 6              ' Outline\nConst ppPrintOutputBuildSlides = 7          ' Build Slides\nConst ppPrintOutputFourSlideHandouts = 8    ' Four Slide Handouts\nConst ppPrintOutputNineSlideHandouts = 9    ' Nine Slide Handouts\nConst ppPrintOutputOneSlideHandouts = 10    ' Single Slide Handouts\n\n' http://msdn.microsoft.com/en-us/library/office/ff745585.aspx\nConst ppPrintAll = 1            ' Print all slides in the presentation.\nConst ppPrintSelection = 2      ' Print a selection of slides.\nConst ppPrintCurrent = 3        ' Print the current slide from the presentation.\nConst ppPrintSlideRange = 4     ' Print a range of slides.\nConst ppPrintNamedSlideShow = 5 ' Print a named slideshow.\n\n' http://msdn.microsoft.com/en-us/library/office/ff744228.aspx\nConst ppShowAll = 1             ' Show all.\nConst ppShowNamedSlideShow = 3  ' Show named slideshow.\nConst ppShowSlideRange = 2      ' Show slide range.\n\n'\n' This is the actual script\n'\n\nDim inputFile\nDim outputFile\nDim objPPT\nDim objPresentation\nDim objPrintOptions\nDim objFso\n\nIf WScript.Arguments.Count <> 2 Then\n    WriteLine \"You need to specify input and output files.\"\n    WScript.Quit\nEnd If\n\ninputFile = WScript.Arguments(0)\noutputFile = WScript.Arguments(1)\n\nSet objFso = CreateObject(\"Scripting.FileSystemObject\")\n\nIf Not objFso.FileExists( inputFile ) Then\n    WriteLine \"Unable to find your input file \" & inputFile\n    WScript.Quit\nEnd If\n\nIf objFso.FileExists( outputFile ) Then\n    WriteLine \"Your output file (' & outputFile & ') already exists!\"\n    WScript.Quit\nEnd If\n\nSet objPPT = CreateObject( \"PowerPoint.Application\" )\n\nobjPPT.Visible = True\nobjPPT.Presentations.Open inputFile\n\nSet objPresentation = objPPT.ActivePresentation\nSet objPrintOptions = objPresentation.PrintOptions\n\nobjPrintOptions.Ranges.Add 1,objPresentation.Slides.Count\nobjPrintOptions.RangeType = ppShowAll\n\n' Reference for this at http://msdn.microsoft.com/en-us/library/office/ff746080.aspx\nobjPresentation.ExportAsFixedFormat outputFile, ppFixedFormatTypePDF, ppFixedFormatIntentScreen, msoTrue, ppPrintHandoutHorizontalFirst, ppPrintOutputSlides, msoFalse, objPrintOptions.Ranges(1), ppPrintAll, \"Slideshow Name\", False, False, False, False, False\n\nWriteLine \"Finished!\"\n\nobjPresentation.Close\nObjPPT.Quit"
  },
  {
    "path": "Quelea/vbs/focus.vbs",
    "content": "' Move the PowerPoint to front.\n' Returns warning if PowerPoint is not running or message if it was successful.\n' @author Arvid\n\nOption Explicit\nOn Error Resume Next\ndim pptAppl\nset pptAppl = GetObject(, \"Powerpoint.Application\")\nIf Err.Number <> 0 Then\n    WScript.Echo \"PowerPoint is not running\"\n    Err.Clear             ' Clear the Error\nelse\n\tpptAppl.ActivePresentation.Windows(1).Activate\n        pptAppl.SlideShowWindows(1).Activate\n\tWScript.Echo \"Successfully moved focus to PowerPoint\"\nEnd If\nOn Error Goto 0           ' Don't resume on Error"
  },
  {
    "path": "Quelea/vbs/getCurrentSlide.vbs",
    "content": "' Script to return the active slide of the current presentation.\n' Returns warning if PowerPoint is not running.\n' @author Arvid\n\nOption Explicit\nOn Error Resume Next\ndim pptAppl\nset pptAppl = GetObject(, \"Powerpoint.Application\")\nIf Err.Number <> 0 Then\n    WScript.Echo \"PowerPoint is not running\"\n    Err.Clear             ' Clear the Error\nelse\n\tWScript.Echo pptAppl.ActivePresentation.SlideShowWindow.View.Slide.SlideIndex \nEnd If\nOn Error Goto 0           ' Don't resume on Error\n\n"
  },
  {
    "path": "Quelea/vbs/getTotalSlides.vbs",
    "content": "' Script to return the total amount of slides of the current presentation.\n' Returns warning if PowerPoint is not running.\n' @author Arvid\n\nOption Explicit\nOn Error Resume Next\ndim pptAppl\nset pptAppl = GetObject(, \"Powerpoint.Application\")\nIf Err.Number <> 0 Then\n    WScript.Echo \"PowerPoint is not running\"\n    Err.Clear             ' Clear the Error\nelse\n\tWScript.Echo pptAppl.ActivePresentation.Slides.Count \nEnd If\nOn Error Goto 0           ' Don't resume on Error"
  },
  {
    "path": "Quelea/vbs/gotoNext.vbs",
    "content": "' Script to move to the next slide of the current presentation.\n' Returns warning if PowerPoint is not running or message if it was successful.\n' @author Arvid\n\nOption Explicit\nOn Error Resume Next\ndim pptAppl\nset pptAppl = GetObject(, \"Powerpoint.Application\")\nIf Err.Number <> 0 Then\n    WScript.Echo \"PowerPoint is not running\"\n    Err.Clear             ' Clear the Error\nelse\n\tpptAppl.SlideShowWindows(1).View.Next\n\tWScript.Echo \"Successfully moved to next slide\"\nEnd If\nOn Error Goto 0           ' Don't resume on Error"
  },
  {
    "path": "Quelea/vbs/gotoPrevious.vbs",
    "content": "' Script to move to the previous slide of the current presentation.\n' Returns warning if PowerPoint is not running or message if it was successful.\n' @author Arvid\n\nOption Explicit\nOn Error Resume Next\ndim pptAppl\nset pptAppl = GetObject(, \"Powerpoint.Application\")\nIf Err.Number <> 0 Then\n    WScript.Echo \"PowerPoint is not running\"\n    Err.Clear             ' Clear the Error\nelse \n\tpptAppl.SlideShowWindows(1).View.Previous\n\tWScript.Echo \"Successfully moved to previous slide\"\nEnd If\nOn Error Goto 0           ' Don't resume on Error"
  },
  {
    "path": "Quelea/vbs/gotoSlide.vbs",
    "content": "' Script to move to the desired slide of the current presentation.\n' Returns warning if PowerPoint is not running or message if it was successful.\n' @author Arvid\n\nOption Explicit\n\n' Get input from Java/command line\nDim oArgs\nSet oArgs = WScript.Arguments\n\nOn Error Resume Next\ndim pptAppl\nset pptAppl = GetObject(, \"Powerpoint.Application\")\nIf Err.Number <> 0 Then\n    WScript.Echo \"PowerPoint is not running\"\n    Err.Clear             ' Clear the Error\nelse\n\tpptAppl.SlideShowWindows(1).View.GotoSlide oArgs(0)\n\tWScript.Echo \"Successfully moved to slide \" + oArgs(0)\nEnd If\nOn Error Goto 0           ' Don't resume on Error"
  },
  {
    "path": "Quelea/vbs/openPresentation.vbs",
    "content": "' Script to open a new PowerPoint presentation.\n' Returns warning if PowerPoint is not running or message if it was successful.\n' @author Arvid, based on code by Kelvin Sung\n\nOption Explicit\n\n' Get input from Java/command line\nDim oArgs\nSet oArgs = WScript.Arguments\n\n' Object variable\ndim objShell\nSet objShell = CreateObject(\"WScript.Shell\")\n\nOn Error Resume Next\ndim pptAppl\nset pptAppl = GetObject(, \"Powerpoint.Application\")\nIf Err.Number <> 0 Then\n\t' Create new PowerPoint instanse\n\tset pptAppl = CreateObject(\"Powerpoint.Application\")\n\n\n\tif (openPPTDocument()) then\n\t\t' Minimize the main window\n\t\tpptAppl.WindowState = 2\n\n\t\t' Move focus to window whose title begins with PowerPoint\n\t\tobjShell.AppActivate \"PowerPoint\"\n   \n\telse\n\t\tMsgBox(\"No PowerPoint document found\")\n\t\tpptAppl.Quit\n\tend if\nelse\n\tWScript.Echo \"PowerPoint is already running.\"\n    Err.Clear             ' Clear the Error\nEnd If\nOn Error Goto 0           ' Don't resume on Error\n\n'-----------------------------------------------------------------------------\n' FUNCTION: openPPTDocument()\n'\n' Input:   none (uses the global dlgOpen to let user open a .ppt document)\n' Returns: none (changes the global pptAppl variable to have an opened document)\n' Error:   Checks to make sure input is a number\n'\n'   Remark: \nFUNCTION openPPTDocument()\n\tdim objPresentation\n\tdim objSlideShow\n\t\n\topenPPTDocument = FALSE\n    pptAppl.Visible = TRUE                    ' first set ppt to visible\n    Set objPresentation = pptAppl.Presentations.Open(oArgs(0))   ' now open the file \n\t'objPresentation.SlideShowSettings.ShowType = 3\t' start slide show\n\tobjPresentation.SlideShowSettings.Run ' apply changes\n\t\n\t\n    openPPTDocument = TRUE\nend FUNCTION\n"
  },
  {
    "path": "Quelea/vbs/screenBlack.vbs",
    "content": "' Script to toggle black screen of the current presentation.\n' Returns warning if PowerPoint is not running.\n' @author Arvid\n\nOption Explicit\nOn Error Resume Next\ndim pptAppl\nset pptAppl = GetObject(, \"Powerpoint.Application\")\nIf Err.Number <> 0 Then\n    WScript.Echo \"PowerPoint is not running\"\n    Err.Clear             ' Clear the Error\nelse\n\tIf pptAppl.SlideShowWindows(1).View.State <> 3 then\n\t\tpptAppl.SlideShowWindows(1).View.State = 3\n\telseif pptAppl.SlideShowWindows(1).View.State = 3 then\n\t\tpptAppl.SlideShowWindows(1).View.State = 1\n\tEnd If\nWScript.Echo pptAppl.SlideShowWindows(1).View.State ' Returns 2 for normal and 3 for black\nEnd If\nOn Error Goto 0           ' Don't resume on Error\n\n"
  },
  {
    "path": "Quelea/vbs/screenStatus.vbs",
    "content": "' Script to toggle black screen of the current presentation.\n' Returns warning if PowerPoint is not running.\n' @author Arvid\n\nOption Explicit\nOn Error Resume Next\ndim pptAppl\nset pptAppl = GetObject(, \"Powerpoint.Application\")\nIf Err.Number <> 0 Then\n    WScript.Echo \"PowerPoint is not running\"\n    Err.Clear             ' Clear the Error\nelse\n        dim state\n        state = pptAppl.ActivePresentation.View.State\n\tWScript.Echo state 'Returns 2 for normal and 3 for black, blank if not started\nEnd If\nOn Error Goto 0           ' Don't resume on Error\n\n"
  },
  {
    "path": "Quelea/vbs/startLoop.vbs",
    "content": "' Script to activate looping of the current presentation.\n' Returns warning if PowerPoint is not running or message if it was successful.\n' @author Arvid\n\nOption Explicit\nOn Error Resume Next\ndim pptAppl\nset pptAppl = GetObject(, \"Powerpoint.Application\")\nIf Err.Number <> 0 Then\n    WScript.Echo \"PowerPoint is not running\"\n    Err.Clear             ' Clear the Error\nelse\n        dim index\n        index = pptAppl.ActivePresentation.SlideShowWindow.View.Slide.SlideIndex\n        pptAppl.ActivePresentation.SlideShowWindow.View.Exit\n\tpptAppl.ActivePresentation.SlideShowSettings.LoopUntilStopped = TRUE\n        pptAppl.ActivePresentation.SlideShowSettings.Run\n        pptAppl.SlideShowWindows(1).View.GotoSlide index\n\tWScript.Echo \"Successfully activated looping\"\nEnd If\nOn Error Goto 0           ' Don't resume on Error"
  },
  {
    "path": "Quelea/vbs/startPresentation.vbs",
    "content": "' Script to start the presentation at a desired slide.\n' Returns warning if PowerPoint is not running or message if it was successful.\n' @author Arvid\n\nOption Explicit\n\n' Get input from Java/command line\nDim oArgs\nSet oArgs = WScript.Arguments\n\nOn Error Resume Next\ndim pptAppl\nset pptAppl = GetObject(, \"Powerpoint.Application\")\nIf Err.Number <> 0 Then\n    WScript.Echo \"PowerPoint is not running\"\n    Err.Clear             ' Clear the Error\nelse\n        pptAppl.ActivePresentation.SlideShowSettings.Run ' apply changes\n        pptAppl.WindowState = 2\n\tpptAppl.SlideShowWindows(1).View.GotoSlide oArgs(0)\n\tWScript.Echo \"Successfully moved to slide \" + oArgs(0)\nEnd If\nOn Error Goto 0           ' Don't resume on Error"
  },
  {
    "path": "Quelea/vbs/stopLoop.vbs",
    "content": "' Script to stop looping the current presentation.\n' Returns warning if PowerPoint is not running or message if it was successful.\n' @author Arvid\n\nOption Explicit\nOn Error Resume Next\ndim pptAppl\nset pptAppl = GetObject(, \"Powerpoint.Application\")\nIf Err.Number <> 0 Then\n    WScript.Echo \"PowerPoint is not running\"\n    Err.Clear             ' Clear the Error\nelse\n        dim index\n        index = pptAppl.ActivePresentation.SlideShowWindow.View.Slide.SlideIndex\n        pptAppl.ActivePresentation.SlideShowWindow.View.Exit\n\tpptAppl.ActivePresentation.SlideShowSettings.LoopUntilStopped = FALSE\n        pptAppl.ActivePresentation.SlideShowSettings.Run\n        pptAppl.SlideShowWindows(1).View.GotoSlide index\n\tWScript.Echo \"Successfully stopped looping\"\nEnd If\nOn Error Goto 0           ' Don't resume on Error"
  },
  {
    "path": "README.md",
    "content": "# Quelea\n\n**Are you here to download the latest version? Great! You want one of these:**\n\n[**2024.0 - Windows x64**](https://github.com/quelea-projection/Quelea/releases/download/v2024.0/quelea-2024.0.1-x64-windows-install.exe)\n\n[**2024.0 - Cross platform (requires Java)**](https://github.com/quelea-projection/Quelea/releases/download/v2024.0/quelea-2024.0-crossplatform-install.jar)\n\n[**2024.0 - Mac**](https://github.com/quelea-projection/Quelea/releases/download/v2024.0/quelea-2024.0-mac.zip)\n\n[**2024.0 - Linux**](https://snapcraft.io/quelea)<br>\n\n[![Get it from the Snap Store](https://snapcraft.io/static/images/badges/en/snap-store-black.svg)](https://snapcraft.io/quelea)\n\n[![Get it from Flathub](https://flathub.org/api/badge?svg&locale=en)](https://flathub.org/en/apps/org.quelea.Quelea)\n\n**Problems or suggestions? [Head over to our forum and feel free to ask away](https://quelea.discourse.group/). We don't bite!**\n\n![screenshot](screenshot.png)\n\n## CI releases\nYou can see the latest CI release [here](https://github.com/quelea-projection/Quelea/releases/tag/CI-RELEASE). Windows, Mac and Crossplatform installers are provided.\n\nIf you're using Linux, then no separate download is needed. Just [install snapd](https://snapcraft.io/docs/installing-snapd) and run `sudo snap install --edge quelea` to install the latest CI version.\n\nCI releases are automatically built from the latest code in this repository, and thus are not fully tested. **They should not be used in production settings.**\n\n## Documentation\n\nIf you're interested in learning more about how to use Quelea, the documentation can be found [here](https://quelea-projection.github.io/docs/).\n\n## I've found a bug!\nPlease report it so we can fix it! Feel free to [create an issue](https://github.com/quelea-projection/Quelea/issues), and provide as much information as you can on how to reproduce the problem (step by step instructions for recreating the issue after starting Quelea are very useful.) After recreating the problem, you should also attach your [debug log](https://quelea-projection.github.io/docs/Debug_log) - this may give us a few technical clues as to what's going on.\n\nPlease note that if we can't recreate a bug, then we can't fix it, so providing as much information as you can here is very important.\n\n## I'd like to contribute\nGreat! Please see our specific [contributing guidelines](CONTRIBUTING.md) for more information.\n\n## Signing policy\nFree code signing on Windows provided by SignPath.io. Please see [SIGNING_POLICY.md](SIGNING_POLICY.md) for more information.\n"
  },
  {
    "path": "SECURITY.md",
    "content": "# Security Policy\n\n## Supported Versions\n\nOnly the latest stable Quelea release is monitored and supported for security\nupdates. Older releases / CI releases are not explicitly monitored.\n\n## Reporting a Vulnerability\n\nIf you notice a vulnerability either in Quelea or the surrounding infrastructure\n(repository, website, wiki, etc.) then please create a Github issue with `SECURITY`\ncontained within the issue name. This will alert a member of the development team\nwho will look into it as quickly as possible.\n\n## Disclaimer\n\nRemember that Quelea is provided free and open-source, as-is. While we try to make\nQuelea as secure as possible and deal with any security issues as soon as possible,\nwe *cannot* guarantee to do so. We provide no warranty and accept no liability - this\nincludes any security issues, and any damage that may arise from them.\n"
  },
  {
    "path": "SIGNING_POLICY.md",
    "content": "Free code signing provided by SignPath.io, certificate by SignPath Foundation.\n\nProject lead: Michael Berry (berry120)\n[Contributors](https://github.com/quelea-projection/Quelea/graphs/contributors)\n\nThis program will not transfer any information to other networked systems unless specifically requested by the user or the person installing or operating it.\n"
  },
  {
    "path": "docs/SETUP.md",
    "content": "# Setup Guide\n\n## Dependencies\n\nQuelea is built on [Java 1.11](https://docs.aws.amazon.com/corretto/latest/corretto-11-ug/downloads-list.html) and [Gradle](https://gradle.org/); you will need those tools installed locally to compile the application.\n\n## Step-by-step (IDEA)\n\nIf you're not familiar with working on Java desktop applications, you can follow these steps to get started contributing to Quelea using [IntelliJ IDEA](https://www.jetbrains.com/idea/). IntelliJ IDEA is not required to work on Quelea; these are just steps for getting started if you're not already familiar with Java IDEs.\n\nThe instructions below use IntelliJ version 2022.2.2.\n\n1. Download and install [IntelliJ IDEA](https://www.jetbrains.com/idea/download) Community version for free. Gradle is bundled with it. A Java JDK 11 might be downloaded from within IntelliJ as well - see step 11.\n2. Fork the Quelea repository and git clone it locally.\n3. Open IntelliJ IDEA.\n\n![](images/IntellijWelcome.png)\n\n4. Choose _Get from VCS_ from the top right of the welcome window.\n\n  ![](images/IntellijGetFromVcs.png)\n\n5. In the _URL_ box paste the URL to your Quelea Github fork\n6. In the _Directory_ box either type the path you want to store the files (`/home/user/development/Quelea` in the screenshot) or click the folder icon on the right to use the file browser\n7. Click _Clone_ and IntelliJ will copy down the relevant files.  This will take a few minutes\n8. Once IntelliJ has copied the files it will open and present you with the readme file.\n9. In the bottom right you should see a pop-up message stating that Gradle script files have been found.  Click _Load_ to import these.\n\n  ![](images/IntellijLoadGradleBuildScript.png)\n\n10. IntelliJ will ask if you want to trust this Gradle project.  If you do, click  _Trust Project_.  Note the import will not continue if you choose to stay in safe mode.\n\n  ![](images/IntellijTrustGradleProject.png)\n\n11. Open Project Structure settings (File -> Project Structure... -> Project) and make sure that you have a Java JDK 11 selected as SDK and that language level is set to 11.\n\n  ![](images/IntelliJSelectedJDK11.png)\n\nIf you have no java JDK 11 installed yet, you can download one (e.g. amazon corretto 11) in the same window\n\n  ![](images/IntelliJDownloadJDK11.png)\n\n12. Open IntelliJ's _Gradle JVM_ settings (File > Settings > Build, Execution, Deployment > Gradle) and ensure that _Gradle JVM_ has the downloaded Java JDK 11 selected.  _OK_ this window.\n\n  ![](images/IntelliJGradleJVM.PNG)\n\n13. Search for IntelliJ's Gradle tab and unfold Quelea -> Tasks -> application. Right-click on 'run' and select Debug 'Quelea [run]'\n\n  ![](images/IntelliJGradleTab.PNG)\n\nIf everything went smoothly, you should see Quelea launch. You're now ready to make and test changes!\n\n### Getting your GitHub fork URL\nWhile looking at your GitHub fork there is a green _Code_ button.  Click this and you will be offered several options to checkout your fork (SSH is shown).\n\n![](images/GithubCodeButton.png)\n\nClick the copy icon to the right of the text box.  This is what you'll paste into IntelliJ.\n\n## Step-by-Step (vscode)\nAlternatively you can use [Visual Studio Code](https://code.visualstudio.com/) to develop Quelea. Further instructions worked for vscode 1.74. Adapt for your situation and skip steps you've already done. Use common sense.\n\n1. Open [Github](https://www.github.com) and log in to your Github account. Fork the [Quelea repository](https://github.com/quelea-projection/Quelea) and note the new repository URL - `https://github.com/yourusername/Quelea.git`.\n2. Download, install and start [vscode](https://code.visualstudio.com/download).\n3. In 'Extensions' (Ctrl+Shift+X) search and install 'Extension Pack for Java'. This will install several packages to work with Java programming language.\n\n![](images/VSCodeInstallJavaPack.png)\n\n4. Soon the page 'Get started with Java Development' opens, click 'Install JDK'. Tab 'Others' has a link to Amazon Corretto. Open that link and download Amazon Corretto 11 for your platform.\n\n![](images/VSCodeInstallJDK.png)\n\n5. Install Amazon Corretto 11 to your system. Note the target folder for next step.\n6. In vscode open 'Settings' (Ctrl+,) and search 'java.configuration.runtimes' then select 'Edit in settings.json'. Add your new JDK settings:\n```\n  {\n    \"name\": \"JavaSE-11\",\n    \"path\": \"C:\\\\Program Files\\\\Amazon Corretto\\\\jdk11.0.17_8\"\n  }\n```\nOn Windows the backslashes in 'path' must be doubled.\n\n![](images/VSCodeConfigureJDK.png)\n\n7. In 'Extensions' (Ctrl+Shift+X) search and install 'Gradle for Java'.\n\n![](images/VSCodeInstallGradle.png)\n\n8. In 'Extensions' (Ctrl+Shift+X) search and install 'GitLens' - will help with Git management later.\n\n![](images/VSCodeInstallGitlens.png)\n\n9. In 'Source Control' (Ctrl+Shift+G) select 'Clone Repository'.\n10. Enter your repository URL from step 1 - `https://github.com/yourusername/Quelea.git`.\n\n![](images/VSCodeCloneRepo.png)\n\n11. Select a folder for local copy of Quelea source code. Wait for the sync. It may take some time here. VSCode can ask for your Github credentials. It will use these later when you push your commits back to Github.\n12. 'Open Folder' (Ctrl+K Ctrl+O) with the local source code (vscode may offer to 'View Projects' or 'Open Folder' just after git-clonning).\n\n![](images/VSCodeCloneDone.png)\n\n13. Select 'Yes, I trust the authors' to start gradle processing the new repo.\n\n![](images/VSCodeTrustRepo.png)\n\n14. Wait some minutes before gradle downloads all required packages.\n\n15. As soon as gradle finishes, 'Open Folder' (Ctrl+K Ctrl+O) and select subfolder 'Quelea' in the new repository (not the main Quelea folder).\n16. Now you are ready to make changes to source files, preferably create a new git branch for every bug you fix or a new feature you develop. Git and vscode have good documentation on that.\n17. Debugging is possible - 'Run and Debug' (Ctrl+Shift+D), select the Class you want to start (MainStub starts Quelea app, the others are auxiliary utilities you will probably not ever touch). Set your breakpoints, hit F5 and soon Quelea starts in debug mode.\n\n![](images/VSCodeDebugger1.png)\n\n![](images/VSCodeDebugger2.png)\n"
  },
  {
    "path": "flatpak/org.quelea.Quelea.desktop",
    "content": "[Desktop Entry]\nTerminal=false\nCategories=AudioVideo;\nKeywords=church;projection;media;multimedia;video;song;hymn;lyrics\nType=Application\nName=Quelea\nIcon=org.quelea.Quelea\nComment=Projection software for churches\nExec=quelea\n"
  },
  {
    "path": "flatpak/org.quelea.Quelea.metainfo.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!-- Copyright 2025 Ebbe Zeinstra -->\n<component type=\"desktop-application\">\n\n  <id>org.quelea.Quelea</id>\n\n  <metadata_license>CC0-1.0</metadata_license>\n  <project_license>GPL-3.0</project_license>\n\n  <name>Quelea</name>\n  <summary>Open source projection software for churches</summary>\n\n  <developer id=\"org.quelea\">\n    <name>Michael Berry</name>\n  </developer>\n\n  <description>\n    <p>Quelea is an open source projection application specifically tailored for churches.</p>\n    \n    <p>With one dashboard you have an overview for the entire church service and can control\n    which songs, bible texts, images and more multimedia you want to project on the big screen.</p>\n  </description>\n\n  <launchable type=\"desktop-id\">org.quelea.Quelea.desktop</launchable>\n\n  <branding>\n    <color type=\"primary\" scheme_preference=\"light\">#05BAFC</color>\n    <color type=\"primary\" scheme_preference=\"dark\">#3C6788</color>\n  </branding>\n\n  <content_rating type=\"oars-1.1\" />\n\n  <url type=\"bugtracker\">https://github.com/quelea-projection/Quelea/issues</url>\n  <url type=\"homepage\">https://quelea.org/</url>\n  <url type=\"contact\">https://quelea.discourse.group</url>\n  <url type=\"faq\">https://quelea-projection.github.io/docs/FAQ_(Frequently_Asked_Questions)</url>\n  <url type=\"translate\">https://quelea-projection.github.io/lang/</url>\n  <url type=\"contribute\">https://github.com/quelea-projection/Quelea/blob/master/CONTRIBUTING.md</url>\n  <url type=\"vcs-browser\">https://github.com/quelea-projection/Quelea</url>\n\n  <screenshots>\n    <screenshot type=\"default\">\n      <image>https://raw.githubusercontent.com/quelea-projection/Quelea/e00d97b97ec8f8ddc3edd5f90bc7f24716601656/screenshot.png</image>\n      <caption>Main Quelea dashboard view</caption>\n    </screenshot>\n    <screenshot>\n      <image>https://raw.githubusercontent.com/quelea-projection/Quelea/cf8c1f39ad27a45431feb5a6a36fb7c71837b1c5/flatpak/screenshots/video_background_song.png</image>\n      <caption>Video background</caption>\n    </screenshot>\n    <screenshot>\n      <image>https://raw.githubusercontent.com/quelea-projection/Quelea/cf8c1f39ad27a45431feb5a6a36fb7c71837b1c5/flatpak/screenshots/theme_editing.png</image>\n      <caption>Theme editing</caption>\n    </screenshot>\n    <screenshot>\n      <image>https://raw.githubusercontent.com/quelea-projection/Quelea/cf8c1f39ad27a45431feb5a6a36fb7c71837b1c5/flatpak/screenshots/theme_selection.png</image>\n      <caption>Theme selection</caption>\n    </screenshot>\n    <screenshot>\n      <image>https://raw.githubusercontent.com/quelea-projection/Quelea/cf8c1f39ad27a45431feb5a6a36fb7c71837b1c5/flatpak/screenshots/test_patterns.png</image>\n      <caption>Projection Test patterns</caption>\n    </screenshot>\n    <screenshot>\n      <image>https://raw.githubusercontent.com/quelea-projection/Quelea/cf8c1f39ad27a45431feb5a6a36fb7c71837b1c5/flatpak/screenshots/options_interface.png</image>\n      <caption>Options</caption>\n    </screenshot>\n    <screenshot>\n      <image>https://raw.githubusercontent.com/quelea-projection/Quelea/cf8c1f39ad27a45431feb5a6a36fb7c71837b1c5/flatpak/screenshots/options_displays.png</image>\n      <caption>Display options</caption>\n    </screenshot>\n    <screenshot>\n      <image>https://raw.githubusercontent.com/quelea-projection/Quelea/cf8c1f39ad27a45431feb5a6a36fb7c71837b1c5/flatpak/screenshots/dark_mode.png</image>\n      <caption>Dark mode</caption>\n    </screenshot>\n\n    <screenshot>\n      <image>https://raw.githubusercontent.com/quelea-projection/Quelea/cf8c1f39ad27a45431feb5a6a36fb7c71837b1c5/flatpak/screenshots/notices.png</image>\n      <caption>Notices</caption>\n    </screenshot>\n  </screenshots>\n\n  <recommends>\n    <control>keyboard</control>\n    <control>pointing</control>\n    <display_length compare=\"ge\">768</display_length>\n  </recommends>\n\n  <releases>\n    <release version=\"2024.1\" date=\"2024-05-11\">\n      <url type=\"details\">https://github.com/quelea-projection/Quelea/blob/master/Quelea/changelogs/changelog-2024.1.txt</url>\n      <description>\n        <p>Quelea (2024.1) stable</p>\n          <ul>\n            <li>Various minor bugfixes</li>\n            <li>Upgrade to Java21 and OpenJFX 21</li>\n            <li>Default translations now used when adding song via server</li>\n            <li>Support for bible book names in chapters in Zefania XML import</li>\n          </ul>\n      </description>\n    </release>\n    <release version=\"2024.0\" date=\"2024-01-06\">\n      <url type=\"details\">https://github.com/quelea-projection/Quelea/blob/master/Quelea/changelogs/changelog-2024.0.txt</url>\n      <description>\n        <p>Quelea (2024.0) stable</p>\n          <ul>\n            <li>Migrate to GStreamer for video playback</li>\n            <li>Videos can now be played in preview windows</li>\n            <li>Video backgrounds now animate in preview windows</li>\n            <li>Include all item types in printed order of service schedule</li>\n            <li>Allow renaming of image group</li>\n            <li>Videos can now be dragged onto a schedule like images</li>\n            <li>Song information can now be shown on first, last or all slides</li>\n            <li>Prevent blacked stage view option</li>\n            <li>Regression: VLCARG files will no longer work (afraid this is a necessary casualty of moving to GStreamer)</li>\n            <li>Logo display now supports video files</li>\n            <li>Unsupported videos now have clear unsupported preview image</li>\n            <li>Allow multiple selection in song database</li>\n            <li>Critical fix: Using the French language no longer crashes Quelea when opening the options dialog</li>\n            <li>Various minor bugfixes</li>\n          </ul>\n      </description>\n    </release>\n    <release version=\"2022.0\" date=\"2022-04-29\" />\n    <release version=\"2021.0\" date=\"2021-10-09\" />\n    <release version=\"2020.0\" date=\"2020-08-19\" />\n    <release version=\"2019.1\" date=\"2019-07-09\" />\n    <release version=\"2019.0\" date=\"2019-03-11\" />\n    <release version=\"2018.1\" date=\"2018-06-07\" />\n    <release version=\"2018.0\" date=\"2018-05-31\" />\n  </releases>\n</component>\n"
  },
  {
    "path": "flatpak/org.quelea.Quelea.yml",
    "content": "id: org.quelea.Quelea\n\nruntime: org.freedesktop.Platform\nruntime-version: '24.08'\n\nsdk: org.freedesktop.Sdk\n\ncommand: quelea\n\nfinish-args:\n  # X11\n  - --socket=x11\n  - --share=ipc\n  # GPU acceleration if needed\n  - --device=dri\n  # Audio\n  - --socket=pulseaudio\n  # Needs to talk to the network:\n  - --share=network\n  # Needs to save files locally\n  - --filesystem=home\n  # Environment variables for running Java apps\n  - --env=PATH=/app/jre/bin:/app/bin:/usr/bin\n  - --env=JAVA_HOME=/app/jre\n\nmodules:\n  - name: openjdk-jre25\n    buildsystem: simple\n    build-commands:\n      - cp -a . /app/jre\n    sources:\n      - type: archive\n        url: https://cdn.azul.com/zulu/bin/zulu25.28.85-ca-fx-jre25.0.0-linux_x64.tar.gz\n        sha256: 1d00a4fd4815ce29b1d61863ae0905630242275afcbc7a4f0ba35bb0ba6da294\n        strip-components: 1\n        only-arches:\n          - x86_64\n\n      - type: archive\n        url: https://cdn.azul.com/zulu/bin/zulu25.28.85-ca-fx-jre25.0.0-linux_aarch64.tar.gz\n        sha256: 24409f182876f368459488ee2e9ae6d3536a374de981c2817a19874d4420d605\n        strip-components: 1\n        only-arches:\n          - aarch64\n\n  - name: quelea\n    buildsystem: simple\n    build-commands:\n      - install -Dm755 -t /app/bin quelea\n      - install -Dm644 org.quelea.Quelea.desktop /app/share/applications/org.quelea.Quelea.desktop\n      - install -Dm644 icons/logo512.png /app/share/icons/hicolor/512x512/apps/org.quelea.Quelea.png\n      - install -Dm644 org.quelea.Quelea.metainfo.xml /app/share/metainfo/org.quelea.Quelea.metainfo.xml\n      - cp -a ./ /app/\n    sources:\n      - type: archive\n        path: ../Quelea/dist/standalone/quelea-CI-UNSTABLE-java-app.tar.gz\n        strip-components: 1\n\n      - type: file\n        path: org.quelea.Quelea.desktop\n\n      - type: file\n        path: org.quelea.Quelea.metainfo.xml\n        \n      - type: script\n        dest-filename: quelea\n        commands:\n          - cd /app\n          - java\n            --add-opens java.base/java.nio=ALL-UNNAMED \n            --add-opens java.base/java.lang=ALL-UNNAMED\n            --add-exports=javafx.graphics/com.sun.javafx.scene.traversal=ALL-UNNAMED \n            --add-exports=javafx.graphics/com.sun.javafx.scene=ALL-UNNAMED \n            --add-exports=javafx.graphics/com.sun.javafx.css=ALL-UNNAMED \n            --add-exports=javafx.base/com.sun.javafx.runtime=ALL-UNNAMED \n            --add-exports=javafx.base/com.sun.javafx.event=ALL-UNNAMED \n            --add-opens javafx.controls/javafx.scene.control=ALL-UNNAMED \n            -Djdk.gtk.verbose=true \n            -DVLCJ_INITX=no \n            -Dfile.encoding=UTF-8 \n            -Dprism.dirtyopts=false\n            -jar Quelea.jar\n"
  },
  {
    "path": "snap/gui/quelea.desktop",
    "content": "[Desktop Entry]\nTerminal=false\nCategories=AudioVideo;\nKeywords=church;projection;media;multimedia;video;song;hymn;lyrics\nType=Application\nName=Quelea\nIcon=${SNAP}/app/icons/logo64.png\nComment=Projection software for churches\nExec=quelea\n"
  },
  {
    "path": "snap/snapcraft.yaml",
    "content": "name: quelea\nversion: '2026.0'\nbase: core20\nsummary: Church projection software\ndescription: |\n  Quelea is a free and open source software application that projects\n  multimedia content in your church service.\nconfinement: strict\nissues: https://github.com/quelea-projection/Quelea/issues\nlicense: GPL-3.0\n\nenvironment:\n    JAVA_HOME: $SNAP/app/jvm\n    PATH: $SNAP/app/jvm/bin:$PATH\n    \narchitectures:\n  - build-on: [amd64]\n\napps:\n  quelea:\n    command: app/launch.sh\n    command-chain: [bin/desktop-launch]\n    plugs: [home, mount-observe, network-control, network, network-bind, x11, wayland, unity7, opengl, optical-drive, alsa, pulseaudio, desktop, desktop-legacy, removable-media, gsettings, account-control]\n\nparts:\n  desktop-gtk3:\n    source: https://github.com/ubuntu/snapcraft-desktop-helpers.git\n    source-type: git\n    source-subdir: gtk\n    plugin: make\n    make-parameters: [ \"FLAVOR=gtk3\" ]\n    build-packages:\n      - libgtk-3-dev\n    stage-packages:\n      - libxkbcommon0  # XKB_CONFIG_ROOT\n      - ttf-ubuntu-font-family\n      - dmz-cursor-theme\n      - light-themes\n      - adwaita-icon-theme\n      - gnome-themes-standard\n      - shared-mime-info\n      - libgtk-3-0\n      - libgdk-pixbuf2.0-0\n      - libglib2.0-bin\n      - libgtk-3-bin\n      - unity-gtk3-module\n      - libappindicator3-1\n      - locales-all\n      - xdg-user-dirs\n      - ibus-gtk3\n      - libibus-1.0-5\n  quelea:\n    plugin: nil\n    source: Quelea\n    build-packages: [unzip, wget]\n    stage-packages: [libgdk-pixbuf2.0-bin, libxext6, libxrender1, libxtst6, libxi6, gstreamer1.0-plugins-base, gstreamer1.0-plugins-good, gstreamer1.0-plugins-bad, gstreamer1.0-plugins-ugly, gstreamer1.0-libav, gstreamer1.0-tools, gstreamer1.0-x, gstreamer1.0-alsa, gstreamer1.0-gl, gstreamer1.0-gtk3, gstreamer1.0-qt5, gstreamer1.0-pulseaudio, zlib1g, zlib1g-dev]\n    override-build: |\n      wget -O jdk.tar.gz https://cdn.azul.com/zulu/bin/zulu25.28.85-ca-fx-jdk25.0.0-linux_x64.tar.gz\n      mkdir jdk\n      tar -xf jdk.tar.gz -C jdk --strip-components 1\n\n      wget -O gradle.zip https://services.gradle.org/distributions/gradle-9.2.1-bin.zip\n      unzip gradle.zip\n\n      PATH=$PATH:$(pwd)/jdk/bin:$(pwd)/gradle-9.2.1/bin\n      JAVA_HOME=$(pwd)/jdk\n\n      gradle -Djava.net.useSystemProxies=true -Dnightly=true -Dversionsuffix=CI-UNSTABLE clean labelcheck jar copyToDist\n\n      wget -O jre.tar.gz https://cdn.azul.com/zulu/bin/zulu25.28.85-ca-fx-jre25.0.0-linux_x64.tar.gz\n      mkdir jre \n      tar -xf jre.tar.gz -C jre --strip-components 1\n\n      mkdir -p $SNAPCRAFT_STAGE/app/jvm\n      cp -a dist/. $SNAPCRAFT_STAGE/app\n      cp -a jre/. $SNAPCRAFT_STAGE/app/jvm\n    override-prime: |\n      snapcraftctl prime\n      mkdir app\n      cp -a $SNAPCRAFT_STAGE/app/. app/.\n      chmod +x $SNAPCRAFT_PRIME/app/launch.sh\n      glib-compile-schemas usr/share/glib-2.0/schemas/\n"
  }
]